From 011db003ce43bf5dca41e5512ba07a42c77cb9ae Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 25 Jan 2022 23:46:53 +0100 Subject: gnu: nyacc: Update to 1.06.5. * gnu/packages/mes.scm (nyacc): Update to 1.06.5. [source]: Simplify snippet. --- gnu/packages/mes.scm | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/gnu/packages/mes.scm b/gnu/packages/mes.scm index 07e63384ff..87c933d9ea 100644 --- a/gnu/packages/mes.scm +++ b/gnu/packages/mes.scm @@ -98,22 +98,20 @@ extensive examples, including parsers for the Javascript and C99 languages.") (define-public nyacc (package (inherit nyacc-0.99) - (version "1.05.1") + (version "1.06.5") (source (origin (method url-fetch) (uri (string-append "mirror://savannah/nyacc/nyacc-" version ".tar.gz")) (sha256 (base32 - "1ck3gyzln5dhamp317nv3waych12mczj05dm4wdblij6ab0l4863")) + "1fbzz9bm4mkz4j40l2z02zjlbqj82dmv2ayz83zl3j8gj6z3lpdg")) (modules '((guix build utils))) (snippet - '(begin - (substitute* "configure" - (("GUILE_GLOBAL_SITE=\\$prefix.*") - "GUILE_GLOBAL_SITE=\ -$prefix/share/guile/site/$GUILE_EFFECTIVE_VERSION\n")) - #t)))) + '(substitute* "configure" + (("GUILE_GLOBAL_SITE=\\$prefix.*") + "GUILE_GLOBAL_SITE=\ +$prefix/share/guile/site/$GUILE_EFFECTIVE_VERSION\n"))))) (inputs (list guile-3.0)) (description "@acronym{NYACC, Not Yet Another Compiler Compiler} is set of Guile modules -- cgit v1.3 From 3563558172e2f2711334bdf5ad5ce35c1452923a Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 26 Jan 2022 08:37:14 +0100 Subject: gnu: nyacc: Fix bug 60474. * gnu/packages/mes.scm (nyacc)[arguments]: Add build phase 'fix-60474. --- gnu/packages/mes.scm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/gnu/packages/mes.scm b/gnu/packages/mes.scm index 87c933d9ea..5115374514 100644 --- a/gnu/packages/mes.scm +++ b/gnu/packages/mes.scm @@ -112,6 +112,15 @@ extensive examples, including parsers for the Javascript and C99 languages.") (("GUILE_GLOBAL_SITE=\\$prefix.*") "GUILE_GLOBAL_SITE=\ $prefix/share/guile/site/$GUILE_EFFECTIVE_VERSION\n"))))) + (arguments + '(#:phases + (modify-phases %standard-phases + ;; See https://savannah.nongnu.org/bugs/index.php?60474 + (add-after 'unpack 'fix-60474 + (lambda _ + (substitute* "module/nyacc/lang/c99/parser.scm" + (("\\(memq \\(car stmt\\) '\\(include include-next\\)\\)") + "(memq (car stmt) '(include include-next define))"))))))) (inputs (list guile-3.0)) (description "@acronym{NYACC, Not Yet Another Compiler Compiler} is set of Guile modules -- cgit v1.3 From bbc2fb0d52128c85c92251ed36d8063b3dcf3c3a Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Mon, 24 Jan 2022 11:53:55 +0100 Subject: etc: Remove redundant SELinux permissions block. * etc/guix-daemon.cil.in (guix_daemon): Consolidate two blocks adding sock_file permissions on guix_daemon_conf_t. --- etc/guix-daemon.cil.in | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/etc/guix-daemon.cil.in b/etc/guix-daemon.cil.in index 2ba02d1655..f4767ff666 100644 --- a/etc/guix-daemon.cil.in +++ b/etc/guix-daemon.cil.in @@ -302,9 +302,6 @@ (allow guix_daemon_t guix_daemon_conf_t (lnk_file (create getattr rename unlink read))) - (allow guix_daemon_t - guix_daemon_conf_t - (sock_file (write))) (allow guix_daemon_t net_conf_t (file (getattr open read))) (allow guix_daemon_t net_conf_t @@ -358,7 +355,7 @@ (unix_stream_socket (listen))) (allow guix_daemon_t guix_daemon_conf_t - (sock_file (create unlink))) + (sock_file (create unlink write))) (allow guix_daemon_t self (unix_stream_socket (create -- cgit v1.3 From 88e4c8740a8ae3d8e255913d0a0c690c325d2a27 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Tue, 25 Jan 2022 15:49:09 +0100 Subject: services: zabbix-agent: Respect user and group configuration. * gnu/services/monitoring.scm (zabbix-agent-account): Look up user and group from CONFIG instead of hard-coded values. --- gnu/services/monitoring.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/services/monitoring.scm b/gnu/services/monitoring.scm index f15450eed5..5337161462 100644 --- a/gnu/services/monitoring.scm +++ b/gnu/services/monitoring.scm @@ -431,8 +431,8 @@ configuration file.")) (define (zabbix-agent-account config) "Return the user accounts and user groups for CONFIG." - (let ((zabbix-user "zabbix") - (zabbix-group "zabbix")) + (let ((zabbix-user (zabbix-agent-configuration-user config)) + (zabbix-group (zabbix-agent-configuration-group config))) (list (user-group (name zabbix-group) (system? #t)) (user-account (name zabbix-user) -- cgit v1.3 From 008a0f87c3f5278ab256630e5dbe772a2771a6ab Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Wed, 26 Jan 2022 09:26:55 +0100 Subject: gnu: zabbix-server: Adjust style. * gnu/packages/monitoring.scm (zabbix-server)[arguments]: Rewrite as gexp, use #:phases matching, and remove trailing #t's. --- gnu/packages/monitoring.scm | 43 ++++++++++++++++++++----------------------- 1 file changed, 20 insertions(+), 23 deletions(-) diff --git a/gnu/packages/monitoring.scm b/gnu/packages/monitoring.scm index e9d2934ca1..14e9ffc459 100644 --- a/gnu/packages/monitoring.scm +++ b/gnu/packages/monitoring.scm @@ -7,7 +7,7 @@ ;;; Copyright © 2018, 2019, 2020 Oleg Pykhalov ;;; Copyright © 2020 Alex ter Weele ;;; Copyright © 2020 Lars-Dominik Braun -;;; Copyright © 2021 Marius Bakke +;;; Copyright © 2021, 2022 Marius Bakke ;;; Copyright © 2021 Stefan Reichör ;;; Copyright © 2021 Raphaël Mélotte ;;; @@ -196,10 +196,10 @@ solution (client-side agent)") (name "zabbix-server") (outputs '("out" "front-end" "schema")) (arguments - (substitute-keyword-arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'install 'install-front-end + (substitute-keyword-arguments (package-arguments zabbix-agentd) + ((#:phases phases '%standard-phases) + #~(modify-phases #$phases + (add-after 'install 'install-front-end (lambda* (#:key outputs #:allow-other-keys) (let* ((php (string-append (assoc-ref outputs "front-end") "/share/zabbix/php")) @@ -207,11 +207,10 @@ solution (client-side agent)") (etc (string-append php "/etc"))) (mkdir-p php) (copy-recursively "ui" php) - ;; Make front-end write config to ‘/etc/zabbix’ directory. + ;; Make front-end read config from ‘/etc/zabbix’ directory. (rename-file front-end-conf (string-append front-end-conf "-example")) - (symlink "/etc/zabbix" front-end-conf)) - #t)) + (symlink "/etc/zabbix" front-end-conf)))) (add-after 'install 'install-schema (lambda* (#:key outputs #:allow-other-keys) (let ((database-directory @@ -220,21 +219,19 @@ solution (client-side agent)") (for-each delete-file (find-files "database" "Makefile\\.in|\\.am$")) (mkdir-p database-directory) - (copy-recursively "database" database-directory)) - #t))) - ,@(package-arguments zabbix-agentd)) - ((#:configure-flags flags) - `(cons* "--enable-server" - "--with-postgresql" - (string-append "--with-libevent=" - (assoc-ref %build-inputs "libevent")) - "--with-net-snmp" - (string-append "--with-gnutls=" - (assoc-ref %build-inputs "gnutls")) - "--with-libcurl" - (string-append "--with-zlib=" - (assoc-ref %build-inputs "zlib")) - ,flags)))) + (copy-recursively "database" database-directory)))))) + ((#:configure-flags flags ''()) + #~(append (list "--enable-server" + "--with-postgresql" + (string-append "--with-libevent=" + (assoc-ref %build-inputs "libevent")) + "--with-net-snmp" + (string-append "--with-gnutls=" + (assoc-ref %build-inputs "gnutls")) + "--with-libcurl" + (string-append "--with-zlib=" + (assoc-ref %build-inputs "zlib"))) + #$flags)))) (inputs (modify-inputs (package-inputs zabbix-agentd) (prepend curl -- cgit v1.3 From ed04a61e0bb003bdcaa4240ca7816b8e471a8785 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Wed, 26 Jan 2022 09:27:19 +0100 Subject: gnu: zabbix-server: Don't install agent. * gnu/packages/monitoring.scm (zabbix-server)[arguments]: Delete "--enable-agent" from #:configure-flags. --- gnu/packages/monitoring.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/monitoring.scm b/gnu/packages/monitoring.scm index 14e9ffc459..d1aa2cba7c 100644 --- a/gnu/packages/monitoring.scm +++ b/gnu/packages/monitoring.scm @@ -231,7 +231,7 @@ solution (client-side agent)") "--with-libcurl" (string-append "--with-zlib=" (assoc-ref %build-inputs "zlib"))) - #$flags)))) + (delete "--enable-agent" #$flags))))) (inputs (modify-inputs (package-inputs zabbix-agentd) (prepend curl -- cgit v1.3 From 440ad14128f27d511f3b8ec4cce964b94304e4dc Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Wed, 26 Jan 2022 09:27:59 +0100 Subject: gnu: zabbix-server: Remove duplicate input. * gnu/packages/monitoring.scm (zabbix-server)[inputs]: Remove CURL. --- gnu/packages/monitoring.scm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gnu/packages/monitoring.scm b/gnu/packages/monitoring.scm index d1aa2cba7c..008fccf893 100644 --- a/gnu/packages/monitoring.scm +++ b/gnu/packages/monitoring.scm @@ -237,10 +237,9 @@ solution (client-side agent)") (prepend curl libevent gnutls - postgresql - zlib net-snmp - curl))) + postgresql + zlib))) (synopsis "Distributed monitoring solution (server-side)") (description "This package provides a distributed monitoring solution (server-side)"))) -- cgit v1.3 From 078f5bfae7ee174177791defcfd350117a503a6d Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Wed, 26 Jan 2022 09:28:46 +0100 Subject: services: zabbix-server: Do not write database password to the store. * gnu/services/monitoring.scm (zabbix-front-end-config): Read the secret file from zabbix.conf.php at runtime instead of embedding the contents. --- gnu/services/monitoring.scm | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/gnu/services/monitoring.scm b/gnu/services/monitoring.scm index 5337161462..1b49dbd3cb 100644 --- a/gnu/services/monitoring.scm +++ b/gnu/services/monitoring.scm @@ -577,7 +577,7 @@ $DB['SERVER'] = '" db-host "'; $DB['PORT'] = '" (number->string db-port) "'; $DB['DATABASE'] = '" db-name "'; $DB['USER'] = '" db-user "'; -$DB['PASSWORD'] = '" (let ((file (location-file %location)) +$DB['PASSWORD'] = " (let ((file (location-file %location)) (line (location-line %location)) (column (location-column %location))) (if (string-null? db-password) @@ -592,15 +592,14 @@ $DB['PASSWORD'] = '" (let ((file (location-file %location)) (condition (&error-location (location %location))))) - (string-trim-both - (with-input-from-file db-secret-file - read-string))) + (string-append "trim(file_get_contents('" + db-secret-file "'));\n")) (begin (display-hint (format #f (G_ "~a:~a:~a: ~a: Consider using @code{db-secret-file} instead of @code{db-password} for better security.") file line column 'zabbix-front-end-configuration)) - db-password))) "'; - + db-password))) +" // Schema name. Used for IBM DB2 and PostgreSQL. $DB['SCHEMA'] = ''; -- cgit v1.3 From f15ca337bec89f238b9b9ced08c2e02c35629a33 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 26 Jan 2022 10:14:51 +0100 Subject: gnu: nyacc: Install all modules. * gnu/packages/mes.scm (nyacc)[arguments]: Add build phase 'install-system-module. [propagated-inputs]: Add guile-bytestructures. --- gnu/packages/mes.scm | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/gnu/packages/mes.scm b/gnu/packages/mes.scm index 5115374514..8ced184a5f 100644 --- a/gnu/packages/mes.scm +++ b/gnu/packages/mes.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2017, 2018, 2019, 2020, 2021 Jan (janneke) Nieuwenhuizen ;;; Copyright © 2017, 2018 Efraim Flashner ;;; Copyright © 2018 Tobias Geerinckx-Rice -;;; Copyright © 2020, 2021 Ricardo Wurmus +;;; Copyright © 2020, 2021, 2022 Ricardo Wurmus ;;; Copyright © 2021 Xinglu Chen ;;; Copyright © 2021 Arun Isaac ;;; @@ -120,8 +120,13 @@ $prefix/share/guile/site/$GUILE_EFFECTIVE_VERSION\n"))))) (lambda _ (substitute* "module/nyacc/lang/c99/parser.scm" (("\\(memq \\(car stmt\\) '\\(include include-next\\)\\)") - "(memq (car stmt) '(include include-next define))"))))))) + "(memq (car stmt) '(include include-next define))")))) + (add-after 'unpack 'install-system-module + (lambda _ + (substitute* "module/Makefile.in" + (("@NYACC_FH_BINS@") "$(NYACC_FH_BINS)"))))))) (inputs (list guile-3.0)) + (propagated-inputs (list guile-bytestructures)) (description "@acronym{NYACC, Not Yet Another Compiler Compiler} is set of Guile modules for generating parsers and lexical analyzers. It provides sample parsers, -- cgit v1.3 From 1402c6abe150ced4cbb4fa0721fe7c8796fe2c38 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Wed, 26 Jan 2022 11:46:31 +0200 Subject: gnu: openssl: Update to 1.1.1m [security fixes]. * gnu/packages/tls.scm (openssl/fixed): New variable. (openssl)[replacement]: New field. --- gnu/packages/tls.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm index b0950ec2e5..d5b42c58a0 100644 --- a/gnu/packages/tls.scm +++ b/gnu/packages/tls.scm @@ -383,6 +383,7 @@ OpenSSL for TARGET." (package (name "openssl") (version "1.1.1l") + (replacement openssl/fixed) (source (origin (method url-fetch) (uri (list (string-append "https://www.openssl.org/source/openssl-" @@ -508,6 +509,25 @@ OpenSSL for TARGET." (license license:openssl) (home-page "https://www.openssl.org/"))) +(define openssl/fixed + (package + (inherit openssl) + (name "openssl") + (version "1.1.1m") + (source (origin + (method url-fetch) + (uri (list (string-append "https://www.openssl.org/source/openssl-" + version ".tar.gz") + (string-append "ftp://ftp.openssl.org/source/" + "openssl-" version ".tar.gz") + (string-append "ftp://ftp.openssl.org/source/old/" + (string-trim-right version char-set:letter) + "/openssl-" version ".tar.gz"))) + (patches (search-patches "openssl-1.1-c-rehash-in.patch")) + (sha256 + (base32 + "15kcvdi69jka67sk1l3a50c26cb7xv9xiwdrgky4bji3ifz9k4gq")))))) + ;; We will not add any new uses of this package. If you add new code that uses ;; this package, your change will be reverted! ;; -- cgit v1.3 From 9183b8142b43082fee55a2730399243dea47ad0a Mon Sep 17 00:00:00 2001 From: Zhu Zihao Date: Sat, 1 Jan 2022 14:48:07 +0800 Subject: gnu: Add sqlitebrowser. * gnu/packages/databases.scm (sqlitebrowser): New variable. Signed-off-by: Efraim Flashner --- gnu/packages/databases.scm | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 128b349cae..22224178ed 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -55,6 +55,7 @@ ;;; Copyright © 2021 Simon Tournier ;;; Copyright © 2021 jgart ;;; Copyright © 2021 Foo Chuan Wei +;;; Copyright © 2022 Zhu Zihao ;;; ;;; This file is part of GNU Guix. ;;; @@ -132,6 +133,7 @@ #:use-module (gnu packages python-science) #:use-module (gnu packages python-web) #:use-module (gnu packages python-xyz) + #:use-module (gnu packages qt) #:use-module (gnu packages rdf) #:use-module (gnu packages readline) #:use-module (gnu packages regex) @@ -164,6 +166,7 @@ #:use-module (guix build-system meson) #:use-module (guix build-system perl) #:use-module (guix build-system python) + #:use-module (guix build-system qt) #:use-module (guix build-system ruby) #:use-module (guix build-system cmake) #:use-module (guix build-system scons) @@ -4319,3 +4322,36 @@ a handy text editor with language recognition, and visualize SELECT results in a Gtk.Grid Widget.") (home-page "https://github.com/Alecaddd/sequeler") (license license:gpl2+))) + +(define-public sqlitebrowser + (package + (name "sqlitebrowser") + (version "3.12.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sqlitebrowser/sqlitebrowser") + (commit (string-append "v" version)))) + (sha256 + (base32 "1ljqzcx388mmni8lv9jz5r58alhsjrrqi4nzjnbfki94rn4ray6z")) + (file-name (git-file-name name version)))) + (build-system qt-build-system) + (arguments + (list #:tests? #f ; no tests + #:configure-flags + ;; TODO: Unbundle QHexEdit, QScintilla. + #~(list "-DFORCE_INTERNAL_QCUSTOMPLOT=OFF"))) + (inputs + (list qcustomplot + qtbase-5 + sqlite)) + (native-inputs (list qttools)) + (home-page "https://sqlitebrowser.org/") + (synopsis "Database browser for SQLite") + (description "Sqlitebrowser is a high quaility, visual, open source tool to +create design, and edit database file compatible with SQLite.") + (license + ;; dual license + (list license:gpl3+ + license:mpl2.0)))) -- cgit v1.3 From 1898b8386b6a5f235b716c6fb7c34775bda88861 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Wed, 26 Jan 2022 13:28:39 +0200 Subject: gnu: sqlitebrowser: Unbundle qscintilla. * gnu/packages/databases.scm (sqlitebrowser)[source]: Add snippet. [arguments]: Add configure-flag to find qscintilla include directory. [inputs]: Add qscintilla. --- gnu/packages/databases.scm | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 22224178ed..1bdee6092b 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -4333,17 +4333,26 @@ a Gtk.Grid Widget.") (uri (git-reference (url "https://github.com/sqlitebrowser/sqlitebrowser") (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 (base32 "1ljqzcx388mmni8lv9jz5r58alhsjrrqi4nzjnbfki94rn4ray6z")) - (file-name (git-file-name name version)))) + (modules '((guix build utils))) + (snippet + '(begin + (delete-file-recursively "libs/qcustomplot-source/") + (delete-file-recursively "libs/qscintilla"))))) (build-system qt-build-system) (arguments (list #:tests? #f ; no tests #:configure-flags - ;; TODO: Unbundle QHexEdit, QScintilla. - #~(list "-DFORCE_INTERNAL_QCUSTOMPLOT=OFF"))) + ;; TODO: Unbundle QHexEdit. + #~(list (string-append "-DQSCINTILLA_INCLUDE_DIR=" + #$(this-package-input "qscintilla") + "/include/Qsci") + "-DFORCE_INTERNAL_QCUSTOMPLOT=OFF"))) (inputs (list qcustomplot + qscintilla qtbase-5 sqlite)) (native-inputs (list qttools)) -- cgit v1.3 From 3d8ee86ace82f37ebbfea0e303468284538ba52f Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Wed, 26 Jan 2022 13:32:40 +0200 Subject: gnu: sqlitebrowser: Enable tests. * gnu/packages/databases.scm (sqlitebrowser)[arguments]: Don't skip tests. Add configure-flag to enable tests. --- gnu/packages/databases.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 1bdee6092b..064d8c77e0 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -4343,13 +4343,13 @@ a Gtk.Grid Widget.") (delete-file-recursively "libs/qscintilla"))))) (build-system qt-build-system) (arguments - (list #:tests? #f ; no tests - #:configure-flags + (list #:configure-flags ;; TODO: Unbundle QHexEdit. #~(list (string-append "-DQSCINTILLA_INCLUDE_DIR=" #$(this-package-input "qscintilla") "/include/Qsci") - "-DFORCE_INTERNAL_QCUSTOMPLOT=OFF"))) + "-DFORCE_INTERNAL_QCUSTOMPLOT=OFF" + "-DENABLE_TESTING=ON"))) (inputs (list qcustomplot qscintilla -- cgit v1.3 From c5908b5c8093265e720e825f39ed3e5f69ade723 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 18 Jan 2022 15:33:39 +0200 Subject: gnu: Add go-github-com-bradfitz-gomemcache. * gnu/packages/databases.scm (go-github-com-bradfitz-gomemcache): New variable. --- gnu/packages/databases.scm | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 064d8c77e0..ab9180bbc4 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -10,7 +10,7 @@ ;;; Copyright © 2015 Eric Dvorsak ;;; Copyright © 2016 Hartmut Goebel ;;; Copyright © 2016 Christine Lemmer-Webber -;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner +;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 Efraim Flashner ;;; Copyright © 2016, 2017 Nikita ;;; Copyright © 2016, 2017, 2018 Roel Janssen ;;; Copyright © 2016 David Craven @@ -632,6 +632,36 @@ around TangentOrg’s libmemcached library, and can be used as a drop-in replacement for the code@{python-memcached} library.") (license license:bsd-3))) +(define-public go-github-com-bradfitz-gomemcache + (package + (name "go-github-com-bradfitz-gomemcache") + (version "0.0.0-20190913173617-a41fca850d0b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bradfitz/gomemcache") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18qpds6xr73jy80pj7l3pc1l1ndcy3va2dl8fzk17bgwg49sxwfz")) + (modules '((guix build utils))) + (snippet + '(begin + ;; Fixes the 'untyped-int -> string of one rune' issue. + ;; https://github.com/golang/go/issues/32479 + (substitute* "memcache/memcache_test.go" + (("string\\(0x7f") "string(rune(0x7f)")))))) + (build-system go-build-system) + (arguments + '(#:unpack-path "github.com/bradfitz/gomemcache" + #:import-path "github.com/bradfitz/gomemcache/memcache")) + (home-page "https://github.com/bradfitz/gomemcache") + (synopsis "Memcache client library in Go") + (description + "This is a memcache client library for the Go programming language.") + (license license:asl2.0))) + (define-public litecli (package (name "litecli") -- cgit v1.3 From 0045abb5bb369d302e1f9eed26dc556936bae9c5 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 18 Jan 2022 15:43:44 +0200 Subject: gnu: Add go-github-com-couchbase-gomemcached. * gnu/packages/databases.scm (go-github-com-couchbase-gomemcached): New variable. --- gnu/packages/databases.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index ab9180bbc4..49840c23fd 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -662,6 +662,29 @@ replacement for the code@{python-memcached} library.") "This is a memcache client library for the Go programming language.") (license license:asl2.0))) +(define-public go-github-com-couchbase-gomemcached + (package + (name "go-github-com-couchbase-gomemcached") + (version "0.1.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/couchbase/gomemcached") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10w74gc05x5naspls39sv2r92krrg31mk266w3lyqqwc0s3fxysl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/couchbase/gomemcached")) + (native-inputs + (list go-github-com-stretchr-testify)) + (home-page "https://github.com/couchbase/gomemcached") + (synopsis "Memcached binary protocol toolkit for go") + (description + "This package provides memcache client and server functionality.") + (license license:expat))) + (define-public litecli (package (name "litecli") -- cgit v1.3 From 87c4a15da02abb9feb7d4d8cef80ff2bf20454f1 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 18 Jan 2022 15:51:44 +0200 Subject: gnu: Add go-github-com-cupcake-rdb. * gnu/packages/databases.scm (go-github-com-cupcake-rdb): New variable. --- gnu/packages/databases.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 49840c23fd..9bc15e71b2 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -2377,6 +2377,29 @@ one-to-one, while still providing an idiomatic interface.") (home-page "https://github.com/redis/redis-rb") (license license:expat))) +(define-public go-github-com-cupcake-rdb + (package + (name "go-github-com-cupcake-rdb") + (version "0.0.0-20161107195141-43ba34106c76") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tent/rdb") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1l4bsn5yj8r875crz1rsk6dlvhv0bd8mgazsch5vl4c19v0fs2ib")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/cupcake/rdb")) + (native-inputs + (list go-gopkg-in-check-v1)) + (home-page "https://github.com/tent/rdb") + (synopsis "Redis RDB parser for Go") + (description + "Package rdb implements parsing and encoding of the Redis RDB file format.") + (license license:expat))) + (define-public kyotocabinet (package (name "kyotocabinet") -- cgit v1.3 From 9cca298265b4c568892382d3e4740cdc7376c9f2 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 18 Jan 2022 16:31:36 +0200 Subject: gnu: Add go-github-com-gomodule-redigo. * gnu/packages/databases.scm (go-github-com-gomodule-redigo): New variable. --- gnu/packages/databases.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 9bc15e71b2..2588cfa7be 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -2400,6 +2400,32 @@ one-to-one, while still providing an idiomatic interface.") "Package rdb implements parsing and encoding of the Redis RDB file format.") (license license:expat))) +(define-public go-github-com-gomodule-redigo + (package + (name "go-github-com-gomodule-redigo") + (version "1.8.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gomodule/redigo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wplaaxg7f6c6c08gdp33l48hygn8gq1rhlnjzr1c9qcggsm07k1")))) + (build-system go-build-system) + (arguments + '(#:unpack-path "github.com/gomodule/redigo" + #:import-path "github.com/gomodule/redigo/redis")) + (native-inputs + (list go-github-com-stretchr-testify + redis)) + (home-page "https://github.com/gomodule/redigo") + (synopsis "Go client for Redis") + (description + "Redigo is a Go client for the Redis database.") + (license license:asl2.0))) + (define-public kyotocabinet (package (name "kyotocabinet") -- cgit v1.3 From 5bac1466292e0f8d845665e72834ec67eda88951 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 18 Jan 2022 16:35:37 +0200 Subject: gnu: Add go-gopkg-in-mgo-v2. * gnu/packages/databases.scm (go-gopkg-in-mgo-v2): New variable. --- gnu/packages/databases.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 2588cfa7be..aa1711c911 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -3022,6 +3022,30 @@ etc., and an SQL engine for performing simple SQL queries.") (license (list license:lgpl2.0 license:gpl2+)))) +(define-public go-gopkg-in-mgo-v2 + (package + (name "go-gopkg-in-mgo-v2") + (version "2.0.0-20190816093944-a6b53ec6cb22") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/mgo.v2") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lgvwxsbmdrf4938qkxl56wbwgbphk2qqnmpf73qdmlv4qsg14na")))) + (build-system go-build-system) + (arguments + '(#:tests? #f ; Tests try to use a running mongodb server. + #:import-path "gopkg.in/mgo.v2")) + (native-inputs + (list go-gopkg-in-check-v1)) + (home-page "https://gopkg.in/mgo.v2") + (synopsis "MongoDB driver for Go") + (description "This package provides a MongoDB driver for Go.") + (license license:bsd-2))) + (define-public python-lmdb (package (name "python-lmdb") -- cgit v1.3 From 76656a23bf69216cf3ca4af8f09dd9ba82c75ffb Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 18 Jan 2022 16:42:21 +0200 Subject: gnu: Add go-go-etcd-io-bbolt. * gnu/packages/databases.scm (go-go-etcd-io-bbolt): New variable. --- gnu/packages/databases.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index aa1711c911..cfa1743d75 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -2715,6 +2715,34 @@ on another machine, accessed via TCP/IP.") (home-page "http://pqxx.org/") (license license:bsd-3))) +(define-public go-go-etcd-io-bbolt + (package + (name "go-go-etcd-io-bbolt") + (version "1.3.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/etcd-io/bbolt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pj5245d417za41j6p09fmkbv05797vykr1bi9a6rnwddh1dbs8d")))) + (build-system go-build-system) + (arguments + `(#:import-path "go.etcd.io/bbolt" + ;; Extending the test timeout to 30 minutes still times out on aarch64. + #:tests? ,(not target-arm?))) + (propagated-inputs + (list go-golang-org-x-sys)) + (home-page "https://go.etcd.io/bbolt") + (synopsis "Embedded key/value database for Go") + (description "Bolt is a pure Go key/value store inspired by Howard Chu's +LMDB project. The goal of the project is to provide a simple, fast, and +reliable database for projects that don't require a full database server such as +Postgres or MySQL.") + (license license:expat))) + (define-public python-peewee (package (name "python-peewee") -- cgit v1.3 From d27a76929d620621d08977044b2429a390dca922 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 26 Jan 2022 17:44:32 +0100 Subject: gnu: emacs-ebdb: Update to 0.8.9. * gnu/packages/emacs-xyz.scm (emacs-ebdb): Update to 0.8.9. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 9d9adbb1e5..b49108b590 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -26313,14 +26313,14 @@ federated microblogging social network.") (define-public emacs-ebdb (package (name "emacs-ebdb") - (version "0.8.8") + (version "0.8.9") (source (origin (method url-fetch) (uri (string-append "https://elpa.gnu.org/packages/" "ebdb-" version ".tar")) (sha256 - (base32 "035xakji5vypdpc06qp9yhg8ny7qn80h8kax6cl80p0lljplzrnn")))) + (base32 "0bdwp0iacswd1cl6dbs5m98255iik2nqmzd85k87s3krcafahyr7")))) (build-system emacs-build-system) (home-page "https://github.com/girzel/ebdb") (synopsis "EIEIO port of BBDB, Emacs's contact-management package") -- cgit v1.3 From b77b788421d189dc560185a3887b609c01163e9f Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 26 Jan 2022 17:47:37 +0100 Subject: gnu: emacs-emms: Update to 9. * gnu/packages/emacs-xyz.scm (emacs-emms): Update to 9. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index b49108b590..68c10a2307 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -2138,14 +2138,14 @@ incrementally confined in Isearch manner.") (define emacs-emms-print-metadata (package (name "emacs-emms-print-metadata") - (version "8") + (version "9") (source (origin (method url-fetch) (uri (string-append "https://elpa.gnu.org/packages/" "emms-" version ".tar")) (sha256 - (base32 "1iffh6n8q9xag25m9bgnpywa27bkdvvz2gr500hdgwwddgdm4pq8")))) + (base32 "12p9nigzyrlpkfvg7v76jmcfs08z84gggnx7h4frdaim3kx5y6xf")))) (build-system gnu-build-system) (arguments `(#:make-flags '("emms-print-metadata") -- cgit v1.3 From a74d0cc209c076150968dfe7b3b9975faad44701 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Sat, 8 Jan 2022 17:29:12 +0100 Subject: utils: 'edit-expression' reads and conses less when not modifying. * guix/utils.scm (edit-expression): Delay call to 'get-bytevector-all' until after (string=? str* str). --- guix/utils.scm | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/guix/utils.scm b/guix/utils.scm index cba6464523..a0ca9b9070 100644 --- a/guix/utils.scm +++ b/guix/utils.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès +;;; Copyright © 2012-2022 Ludovic Courtès ;;; Copyright © 2013, 2014, 2015 Mark H Weaver ;;; Copyright © 2014 Eric Bavier ;;; Copyright © 2014 Ian Denhardt @@ -454,27 +454,27 @@ This procedure returns #t on success." (str (iconv:bytevector->string (get-bytevector-n in (- end start)) (port-encoding in))) - (post-bv (get-bytevector-all in)) (str* (proc str))) ;; Modify FILE only if there are changes. (unless (string=? str* str) ;; Verify the edited expression is still a scheme expression. (call-with-input-string str* read) - ;; Update the file with edited expression. - (with-atomic-file-output file - (lambda (out) - (put-bytevector out pre-bv) - (display str* out) - ;; post-bv maybe the end-of-file object. - (when (not (eof-object? post-bv)) - (put-bytevector out post-bv)) - #t)) - - ;; Due to 'with-atomic-file-output', IN and FILE no longer share - ;; the same inode, but we can reassign the source map up to LINE - ;; to the new file. - (move-source-location-map! (stat in) (stat file) - (+ 1 line))))))))) + + (let ((post-bv (get-bytevector-all in))) + ;; Update the file with edited expression. + (with-atomic-file-output file + (lambda (out) + (put-bytevector out pre-bv) + (display str* out) + (unless (eof-object? post-bv) + ;; Copy everything that came after STR. + (put-bytevector out post-bv)))) + + ;; Due to 'with-atomic-file-output', IN and FILE no longer + ;; share the same inode, but we can reassign the source map up + ;; to LINE to the new file. + (move-source-location-map! (stat in) (stat file) + (+ 1 line)))))))))) ;;; -- cgit v1.3 From 8b7bd459dc7f86cf2a9569c35efb4a5d845d63ed Mon Sep 17 00:00:00 2001 From: jgart Date: Wed, 26 Jan 2022 01:20:11 -0500 Subject: gnu: utf-8-lineseparator: Update to 7. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/textutils.scm (utf-8-lineseparator): Update to 7. Adjust 'commit' field accordingly. Signed-off-by: Ludovic Courtès --- gnu/packages/textutils.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index 12e3d3b3c8..f10ca300ab 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm @@ -1377,16 +1377,16 @@ around it also has a list of style guides implemented with Vale in (define-public utf-8-lineseparator (package (name "utf-8-lineseparator") - (version "cj3") + (version "7") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/pflanze/utf-8-lineseparator") - (commit version))) + (commit (string-append "cj" version)))) (file-name (git-file-name name version)) (sha256 (base32 - "1xnbcanqn5jr965gw9195ij6hz04clfm77m5776dysn9nykn20w1")))) + "0lqwfrwq28246lja2gawf5jllh4smddswkpd5lscvc2ynylcmmzx")))) (build-system gnu-build-system) (arguments `(#:make-flags -- cgit v1.3 From bac9f8302c65802a576f733cc48829edb33019d8 Mon Sep 17 00:00:00 2001 From: Vivien Kraus Date: Thu, 20 Jan 2022 20:11:56 +0100 Subject: import: pypi: Convert hyphens to underscores in PyPI URLs if needed. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * guix/import/pypi.scm (find-project-url): New function. (make-pypi-sexp): Use find-project-url. * tests/pypi.scm (foo-json): New procedure. (test-json-1, test-json-2): Define in terms of it. ("find-project-url, with numpy", "find-project-url, uWSGI"): ("find-project-url, flake8-array-spacing") ("find-project-url, foo/goo"): New tests. Co-authored-by: Ludovic Courtès --- guix/import/pypi.scm | 31 +++++++++----- tests/pypi.scm | 111 +++++++++++++++++++++++++++------------------------ 2 files changed, 80 insertions(+), 62 deletions(-) diff --git a/guix/import/pypi.scm b/guix/import/pypi.scm index b4284f5c33..b80f43ac15 100644 --- a/guix/import/pypi.scm +++ b/guix/import/pypi.scm @@ -11,6 +11,7 @@ ;;; Copyright © 2020 Martin Becze ;;; Copyright © 2021 Xinglu Chen ;;; Copyright © 2021 Marius Bakke +;;; Copyright © 2022 Vivien Kraus ;;; ;;; This file is part of GNU Guix. ;;; @@ -41,6 +42,7 @@ #:use-module (guix memoization) #:use-module (guix diagnostics) #:use-module (guix i18n) + #:use-module ((guix ui) #:select (display-hint)) #:use-module ((guix build utils) #:select ((package-name->name+version . hyphen-package-name->name+version) @@ -59,6 +61,7 @@ specification->requirement-name guix-package->pypi-name pypi-recursive-import + find-project-url pypi->guix-package %pypi-updater)) @@ -418,6 +421,24 @@ return the unaltered list of upstream dependency names." (values (map process-requirements dependencies) (concatenate dependencies)))) +(define (find-project-url name pypi-url) + "Try different project name substitution until the result is found in +pypi-uri. Downcase is required for \"uWSGI\", and +underscores are required for flake8-array-spacing." + (or (find (cut string-contains pypi-url <>) + (list name + (string-downcase name) + (string-replace-substring name "-" "_"))) + (begin + (warning + (G_ "project name ~a does not appear verbatim in the PyPI URI~%") + name) + (display-hint + (format #f (G_ "The PyPI URI is: @url{~a}. You should review the +pypi-uri declaration in the generated package. You may need to replace ~s with +a substring of the PyPI URI that identifies the package.") pypi-url name)) +name))) + (define (make-pypi-sexp name version source-url wheel-url home-page synopsis description license) "Return the `package' s-expression for a python package with the given NAME, @@ -446,15 +467,7 @@ VERSION, SOURCE-URL, HOME-PAGE, SYNOPSIS, DESCRIPTION, and LICENSE." (origin (method url-fetch) (uri (pypi-uri - ;; PyPI URL are case sensitive, but sometimes - ;; a project named using mixed case has a URL - ;; using lower case, so we must work around this - ;; inconsistency. For actual examples, compare - ;; the URLs of the "Deprecated" and "uWSGI" PyPI - ;; packages. - ,(if (string-contains source-url name) - name - (string-downcase name)) + ,(find-project-url name source-url) version ;; Some packages have been released as `.zip` ;; instead of the more common `.tar.gz`. For diff --git a/tests/pypi.scm b/tests/pypi.scm index 1ea5f02643..47a276ae58 100644 --- a/tests/pypi.scm +++ b/tests/pypi.scm @@ -3,6 +3,7 @@ ;;; Copyright © 2016 Ricardo Wurmus ;;; Copyright © 2019 Maxim Cournoyer ;;; Copyright © 2021 Xinglu Chen +;;; Copyright © 2022 Vivien Kraus ;;; ;;; This file is part of GNU Guix. ;;; @@ -23,68 +24,48 @@ #:use-module (guix import pypi) #:use-module (guix base32) #:use-module (guix memoization) + #:use-module (guix utils) #:use-module (gcrypt hash) #:use-module (guix tests) #:use-module (guix build-system python) #:use-module ((guix build utils) #:select (delete-file-recursively which mkdir-p)) + #:use-module ((guix diagnostics) #:select (guix-warning-port)) + #:use-module (json) + #:use-module (srfi srfi-26) #:use-module (srfi srfi-64) - #:use-module (ice-9 match)) + #:use-module (ice-9 match) + #:use-module (ice-9 optargs)) + +(define* (foo-json #:key (name "foo") (name-in-url #f)) + "Create a JSON description of an example pypi package, named @var{name}, +optionally using a different @var{name in its URL}." + (scm->json-string + `((info + . ((version . "1.0.0") + (name . ,name) + (license . "GNU LGPL") + (summary . "summary") + (home_page . "http://example.com") + (classifiers . #()) + (download_url . ""))) + (urls . #()) + (releases + . ((1.0.0 + . #(((url . ,(format #f "https://example.com/~a-1.0.0.egg" + (or name-in-url name))) + (packagetype . "bdist_egg")) + ((url . ,(format #f "https://example.com/~a-1.0.0.tar.gz" + (or name-in-url name))) + (packagetype . "sdist")) + ((url . ,(format #f "https://example.com/~a-1.0.0-py2.py3-none-any.whl" + (or name-in-url name))) + (packagetype . "bdist_wheel"))))))))) (define test-json-1 - "{ - \"info\": { - \"version\": \"1.0.0\", - \"name\": \"foo\", - \"license\": \"GNU LGPL\", - \"summary\": \"summary\", - \"home_page\": \"http://example.com\", - \"classifiers\": [], - \"download_url\": \"\" - }, - \"urls\": [], - \"releases\": { - \"1.0.0\": [ - { - \"url\": \"https://example.com/foo-1.0.0.egg\", - \"packagetype\": \"bdist_egg\" - }, { - \"url\": \"https://example.com/foo-1.0.0.tar.gz\", - \"packagetype\": \"sdist\" - }, { - \"url\": \"https://example.com/foo-1.0.0-py2.py3-none-any.whl\", - \"packagetype\": \"bdist_wheel\" - } - ] - } -}") + (foo-json)) (define test-json-2 - "{ - \"info\": { - \"version\": \"1.0.0\", - \"name\": \"foo-99\", - \"license\": \"GNU LGPL\", - \"summary\": \"summary\", - \"home_page\": \"http://example.com\", - \"classifiers\": [], - \"download_url\": \"\" - }, - \"urls\": [], - \"releases\": { - \"1.0.0\": [ - { - \"url\": \"https://example.com/foo-99-1.0.0.egg\", - \"packagetype\": \"bdist_egg\" - }, { - \"url\": \"https://example.com/foo-99-1.0.0.tar.gz\", - \"packagetype\": \"sdist\" - }, { - \"url\": \"https://example.com/foo-99-1.0.0-py2.py3-none-any.whl\", - \"packagetype\": \"bdist_wheel\" - } - ] - } -}") + (foo-json #:name "foo-99")) (define test-source-hash "") @@ -211,6 +192,30 @@ Requires-Dist: pytest (>=3.1.0); extra == 'testing' call-with-input-string) (parse-wheel-metadata test-metadata-with-extras-jedi))) +(test-equal "find-project-url, with numpy" + "numpy" + (find-project-url + "numpy" + "https://files.pythonhosted.org/packages/0a/c8/a62767a6b374a0dfb02d2a0456e5f56a372cdd1689dbc6ffb6bf1ddedbc0/numpy-1.22.1.zip")) + +(test-equal "find-project-url, uWSGI" + "uwsgi" + (find-project-url + "uWSGI" + "https://files.pythonhosted.org/packages/24/fd/93851e4a076719199868d4c918cc93a52742e68370188c1c570a6e42a54f/uwsgi-2.0.20.tar.gz")) + +(test-equal "find-project-url, flake8-array-spacing" + "flake8_array_spacing" + (find-project-url + "flake8-array-spacing" + "https://files.pythonhosted.org/packages/a4/21/ff29b901128b681b7de7a2787b3aeb3e1f3cba4a8c0cffa9712cbff016bc/flake8_array_spacing-0.2.0.tar.gz")) + +(test-equal "find-project-url, foo/goo" + "foo" + (find-project-url + "foo" + "https://files.pythonhosted.org/packages/f0/f00/goo-0.0.0.tar.gz")) + (test-assert "pypi->guix-package, no wheel" ;; Replace network resources with sample data. (mock ((guix import utils) url-fetch -- cgit v1.3 From 532153d49cec44c1e010938fd288dd6c44509487 Mon Sep 17 00:00:00 2001 From: Brandon Lucas Date: Sun, 23 Jan 2022 12:14:30 +0000 Subject: gnu: Add fnlfmt. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/lua.scm (fnlfmt): New variable. Signed-off-by: Ludovic Courtès --- gnu/packages/lua.scm | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) diff --git a/gnu/packages/lua.scm b/gnu/packages/lua.scm index c828ded1a5..e6103ba324 100644 --- a/gnu/packages/lua.scm +++ b/gnu/packages/lua.scm @@ -15,6 +15,7 @@ ;;; Copyright © 2020 Paul A. Patience ;;; Copyright © 2021 Vinícius dos Santos Oliveira ;;; Copyright © 2021 Greg Hogan +;;; Copyright © 2022 Brandon Lucas ;;; ;;; This file is part of GNU Guix. ;;; @@ -36,12 +37,14 @@ #:use-module (guix packages) #:use-module (guix download) #:use-module (guix git-download) + #:use-module (guix gexp) #:use-module (guix utils) #:use-module (guix build-system gnu) #:use-module (guix build-system cmake) #:use-module (guix build-system meson) #:use-module (guix build-system trivial) #:use-module (gnu packages) + #:use-module (gnu packages bash) #:use-module (gnu packages boost) #:use-module (gnu packages build-tools) #:use-module (gnu packages glib) @@ -1211,3 +1214,66 @@ enabled.") simplicity, and reach of Lua with the flexibility of a Lisp syntax and macro system.") (license license:expat))) + +(define-public fnlfmt + (package + (name "fnlfmt") + (version "0.2.2") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://git.sr.ht/~technomancy/fnlfmt") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1rv0amqhy5ypi3pvxfaadn3k1cy4mjlc49wdzl2psz3i11w9gr36")) + (modules '((guix build utils))) + (snippet + #~(begin + ;; Use input fennel instead of bundled fennel. + (delete-file "fennel") + (delete-file "fennel.lua") + (substitute* "Makefile" + (("./fennel") "fennel")))))) + (build-system gnu-build-system) + (arguments + `(#:modules ((guix build gnu-build-system) + (guix build utils) + (ice-9 match)) + #:test-target "test" + #:phases + (modify-phases %standard-phases + (delete 'configure) + (add-before 'build 'patch-makefile + (lambda* (#:key native-inputs inputs #:allow-other-keys) + (substitute* "Makefile" + ;; Patch lua shebang that gets inserted to fnlfmt. + (("/usr/bin/env lua") + (search-input-file (or native-inputs inputs) "/bin/lua"))))) + (replace 'install + ;; There is no install target; manually install the output file. + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (bin (string-append out "/bin"))) + (for-each (lambda (file) + (install-file file bin)) + (find-files "." "fnlfmt"))))) + (add-after 'install 'wrap + (lambda* (#:key inputs native-inputs outputs #:allow-other-keys) + (let* ((all-inputs (or native-inputs inputs)) + (fnlfmt (assoc-ref outputs "out")) + (lua-version ,(version-major+minor (package-version lua))) + (fennel (assoc-ref all-inputs "fennel"))) + (wrap-program (string-append fnlfmt "/bin/fnlfmt") + `("LUA_PATH" ";" suffix + (,(format #f "~a/share/lua/~a/?.lua" fennel lua-version)))) + #t)))))) + (inputs (list bash-minimal)) + (native-inputs (list lua fennel)) + (home-page "https://git.sr.ht/~technomancy/fnlfmt") + (synopsis "Automatic formatting of Fennel code") + (description + "Fnlfmt is a tool for automatically formatting Fennel code in a consistent +way, following established lisp conventions.") + (license license:lgpl3+))) -- cgit v1.3 From 73d775f518e8bf9c658cb0a161b22209c71e75aa Mon Sep 17 00:00:00 2001 From: Brandon Lucas Date: Sun, 23 Jan 2022 12:14:46 +0000 Subject: gnu: fennel: Update to 03c1c95. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/lua.scm (fennel): Update to 03c1c95. Signed-off-by: Ludovic Courtès --- gnu/packages/lua.scm | 70 ++++++++++++++++++++++++++++------------------------ 1 file changed, 38 insertions(+), 32 deletions(-) diff --git a/gnu/packages/lua.scm b/gnu/packages/lua.scm index e6103ba324..ee4b7727e0 100644 --- a/gnu/packages/lua.scm +++ b/gnu/packages/lua.scm @@ -1178,42 +1178,48 @@ enabled.") (license license:boost1.0))) (define-public fennel - (package - (name "fennel") - (version "1.0.0") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://git.sr.ht/~technomancy/fennel") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0d4rpf0f2aqxlca3kxrbhjjhf1knhiz8ccwlx8xid05mc16la70y")))) - (build-system gnu-build-system) - (arguments - '(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))) - #:tests? #t ; even on cross-build - #:test-target "test" - #:phases - (modify-phases %standard-phases - (delete 'configure) - (add-after 'build 'patch-fennel + ;; The 1.0.0 release had a bug where fennel installed under 5.4 no matter + ;; what lua was used to compile it. There has since been an update that + ;; corrects this issue, so we can rely on the version of the lua input to + ;; determine where the fennel.lua file got installed to. + (let ((commit "03c1c95f2a79e45a9baf607f96a74c693b8b70f4") + (revision "0")) + (package + (name "fennel") + (version (git-version "1.0.0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://git.sr.ht/~technomancy/fennel") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1znp38h5q819gvcyl248zwvjsljfxdxdk8n82fnj6lyibiiqzgvx")))) + (build-system gnu-build-system) + (arguments + '(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))) + #:tests? #t ; even on cross-build + #:test-target "test" + #:phases + (modify-phases %standard-phases + (delete 'configure) + (add-after 'build 'patch-fennel (lambda* (#:key inputs #:allow-other-keys) - (substitute* "fennel" - (("/usr/bin/env .*lua") - (search-input-file inputs "/bin/lua"))))) - (delete 'check) - (add-after 'install 'check + (substitute* "fennel" + (("/usr/bin/env .*lua") + (search-input-file inputs "/bin/lua"))))) + (delete 'check) + (add-after 'install 'check (assoc-ref %standard-phases 'check))))) - (inputs (list lua)) - (home-page "https://fennel-lang.org/") - (synopsis "Lisp that compiles to Lua") - (description - "Fennel is a programming language that brings together the speed, + (inputs (list lua)) + (home-page "https://fennel-lang.org/") + (synopsis "Lisp that compiles to Lua") + (description + "Fennel is a programming language that brings together the speed, simplicity, and reach of Lua with the flexibility of a Lisp syntax and macro system.") - (license license:expat))) + (license license:expat)))) (define-public fnlfmt (package -- cgit v1.3 From 3993d33d1c0129b1ca6f0fd122fe2bbe48e4f093 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Wed, 26 Jan 2022 12:52:59 +0100 Subject: gnu: polkit: Fix CVE-2021-4034. * gnu/packages/patches/polkit-CVE-2021-4034.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/polkit.scm (polkit-mozjs)[replacement]: New field. * gnu/packages/polkit.scm (polkit-mozjs/fixed): New variable. --- gnu/local.mk | 1 + gnu/packages/patches/polkit-CVE-2021-4034.patch | 82 +++++++++++++++++++++++++ gnu/packages/polkit.scm | 13 +++- 3 files changed, 95 insertions(+), 1 deletion(-) create mode 100644 gnu/packages/patches/polkit-CVE-2021-4034.patch diff --git a/gnu/local.mk b/gnu/local.mk index dceaa53145..eb07842775 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1645,6 +1645,7 @@ dist_patch_DATA = \ %D%/packages/patches/plib-CVE-2011-4620.patch \ %D%/packages/patches/plib-CVE-2012-4552.patch \ %D%/packages/patches/plotutils-spline-test.patch \ + %D%/packages/patches/polkit-CVE-2021-4034.patch \ %D%/packages/patches/polkit-configure-elogind.patch \ %D%/packages/patches/polkit-use-duktape.patch \ %D%/packages/patches/portaudio-audacity-compat.patch \ diff --git a/gnu/packages/patches/polkit-CVE-2021-4034.patch b/gnu/packages/patches/polkit-CVE-2021-4034.patch new file mode 100644 index 0000000000..ca766cb3be --- /dev/null +++ b/gnu/packages/patches/polkit-CVE-2021-4034.patch @@ -0,0 +1,82 @@ +Fixes CVE-2021-4034, local privilege escalation with 'pkexec': + + https://www.openwall.com/lists/oss-security/2022/01/25/11 + +Patch from . + +From a2bf5c9c83b6ae46cbd5c779d3055bff81ded683 Mon Sep 17 00:00:00 2001 +From: Jan Rybar +Date: Tue, 25 Jan 2022 17:21:46 +0000 +Subject: [PATCH] pkexec: local privilege escalation (CVE-2021-4034) + +--- + src/programs/pkcheck.c | 5 +++++ + src/programs/pkexec.c | 23 ++++++++++++++++++++--- + 2 files changed, 25 insertions(+), 3 deletions(-) + +diff --git a/src/programs/pkcheck.c b/src/programs/pkcheck.c +index f1bb4e1..768525c 100644 +--- a/src/programs/pkcheck.c ++++ b/src/programs/pkcheck.c +@@ -363,6 +363,11 @@ main (int argc, char *argv[]) + local_agent_handle = NULL; + ret = 126; + ++ if (argc < 1) ++ { ++ exit(126); ++ } ++ + /* Disable remote file access from GIO. */ + setenv ("GIO_USE_VFS", "local", 1); + +diff --git a/src/programs/pkexec.c b/src/programs/pkexec.c +index 7698c5c..84e5ef6 100644 +--- a/src/programs/pkexec.c ++++ b/src/programs/pkexec.c +@@ -488,6 +488,15 @@ main (int argc, char *argv[]) + pid_t pid_of_caller; + gpointer local_agent_handle; + ++ ++ /* ++ * If 'pkexec' is called THIS wrong, someone's probably evil-doing. Don't be nice, just bail out. ++ */ ++ if (argc<1) ++ { ++ exit(127); ++ } ++ + ret = 127; + authority = NULL; + subject = NULL; +@@ -614,10 +623,10 @@ main (int argc, char *argv[]) + + path = g_strdup (pwstruct.pw_shell); + if (!path) +- { ++ { + g_printerr ("No shell configured or error retrieving pw_shell\n"); + goto out; +- } ++ } + /* If you change this, be sure to change the if (!command_line) + case below too */ + command_line = g_strdup (path); +@@ -636,7 +645,15 @@ main (int argc, char *argv[]) + goto out; + } + g_free (path); +- argv[n] = path = s; ++ path = s; ++ ++ /* argc<2 and pkexec runs just shell, argv is guaranteed to be null-terminated. ++ * /-less shell shouldn't happen, but let's be defensive and don't write to null-termination ++ */ ++ if (argv[n] != NULL) ++ { ++ argv[n] = path; ++ } + } + if (access (path, F_OK) != 0) + { diff --git a/gnu/packages/polkit.scm b/gnu/packages/polkit.scm index e4f4b1276f..1ae94be751 100644 --- a/gnu/packages/polkit.scm +++ b/gnu/packages/polkit.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014 Andreas Enge ;;; Copyright © 2015 Andy Wingo -;;; Copyright © 2015, 2021 Ludovic Courtès +;;; Copyright © 2015, 2021-2022 Ludovic Courtès ;;; Copyright © 2015 Mark H Weaver ;;; Copyright © 2016 Efraim Flashner ;;; Copyright © 2017 Huang Ying @@ -54,6 +54,7 @@ (package (name "polkit") (version "0.120") + (replacement polkit-mozjs/fixed) (source (origin (method url-fetch) (uri (string-append @@ -146,6 +147,16 @@ making process with respect to granting access to privileged operations for unprivileged applications.") (license lgpl2.0+))) +(define-public polkit-mozjs/fixed + (package + (inherit polkit-mozjs) + (version "0.121") + (source (origin + (inherit (package-source polkit-mozjs)) + (patches (cons (search-patch "polkit-CVE-2021-4034.patch") + (origin-patches + (package-source polkit-mozjs)))))))) + ;;; Variant of polkit built with Duktape, a lighter JavaScript engine compared ;;; to mozjs. (define-public polkit-duktape -- cgit v1.3 From 7afed75764348e60bca90be3cc13e8deeadc6947 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 26 Jan 2022 18:12:03 +0100 Subject: gnu: giac: Update to 1.7.0-47. * gnu/packages/algebra.scm (giac): Update to 1.7.0-47. --- gnu/packages/algebra.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index ff6e5189fd..a29451f8a2 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Andreas Enge ;;; Copyright © 2013, 2015, 2017, 2018, 2021 Ludovic Courtès -;;; Copyright © 2016–2022 Nicolas Goaziou +;;; Copyright © 2016-2022 Nicolas Goaziou ;;; Copyright © 2014, 2018 Mark H Weaver ;;; Copyright © 2016, 2018, 2019, 2021 Ricardo Wurmus ;;; Copyright © 2017, 2020, 2021 Efraim Flashner @@ -328,7 +328,7 @@ precision.") (define-public giac (package (name "giac") - (version "1.7.0-45") + (version "1.7.0-47") (source (origin (method url-fetch) @@ -340,7 +340,7 @@ precision.") "~parisse/debian/dists/stable/main/source/" "giac_" version ".tar.gz")) (sha256 - (base32 "19hxbx27n5zby96d4pzhxxqn7mzk29g8sxn08fi638l17lr9x2q2")))) + (base32 "1cbc0vm79q9z3ajn4m5sjg9931ah1wq3icj0m16jsxp52km1h7jx")))) (build-system gnu-build-system) (arguments `(#:modules ((ice-9 ftw) -- cgit v1.3 From 16ce73d87f664b2a539c2264671fddc2077f6ecc Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Wed, 26 Jan 2022 00:19:34 -0500 Subject: gnu: util-linux: Fix CVE-2021-3995 and CVE-2021-3996. * gnu/packages/patches/util-linux-CVE-2021-3995.patch, gnu/packages/patches/util-linux-CVE-2021-3996.patch: New files. * gnu/local.mk (dist_patch_DATA): Add them. * gnu/packages/linux.scm (util-linux)[replacement]: New field. (util-linux/fixed): New variable. --- gnu/local.mk | 2 + gnu/packages/linux.scm | 16 ++ .../patches/util-linux-CVE-2021-3995.patch | 146 +++++++++++++ .../patches/util-linux-CVE-2021-3996.patch | 233 +++++++++++++++++++++ 4 files changed, 397 insertions(+) create mode 100644 gnu/packages/patches/util-linux-CVE-2021-3995.patch create mode 100644 gnu/packages/patches/util-linux-CVE-2021-3996.patch diff --git a/gnu/local.mk b/gnu/local.mk index eb07842775..76354b5ea1 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1926,6 +1926,8 @@ dist_patch_DATA = \ %D%/packages/patches/upx-CVE-2021-20285.patch \ %D%/packages/patches/ustr-fix-build-with-gcc-5.patch \ %D%/packages/patches/util-linux-tests.patch \ + %D%/packages/patches/util-linux-CVE-2021-3995.patch \ + %D%/packages/patches/util-linux-CVE-2021-3996.patch \ %D%/packages/patches/upower-builddir.patch \ %D%/packages/patches/valgrind-enable-arm.patch \ %D%/packages/patches/vboot-utils-fix-format-load-address.patch \ diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index c044f2543d..e4f3c917ee 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1820,6 +1820,7 @@ providing the system administrator with some help in common tasks.") (define-public util-linux (package (name "util-linux") + (replacement util-linux/fixed) (version "2.37.2") (source (origin (method url-fetch) @@ -1971,6 +1972,21 @@ block devices, UUIDs, TTYs, and many other tools.") `(("udev" ,eudev) ,@(package-inputs util-linux))))) +;; This is mostly equivalent to the upstream release version v2.37.3, except +;; that the upstream tarball was generated improperly, which breaks the build. +;; There will not be a v2.37.3-fixed release or anything like that to fix it: +;; https://github.com/util-linux/util-linux/issues/1577 +(define-public util-linux/fixed + (hidden-package + (package + (inherit util-linux) + (source (origin + (inherit (package-source util-linux)) + (patches (append (search-patches "util-linux-CVE-2021-3995.patch" + "util-linux-CVE-2021-3996.patch") + (origin-patches (package-source util-linux))))))))) + + (define-public ddate (package (name "ddate") diff --git a/gnu/packages/patches/util-linux-CVE-2021-3995.patch b/gnu/packages/patches/util-linux-CVE-2021-3995.patch new file mode 100644 index 0000000000..7faea83801 --- /dev/null +++ b/gnu/packages/patches/util-linux-CVE-2021-3995.patch @@ -0,0 +1,146 @@ +Fix CVE-2021-3995: + +https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3995 +https://seclists.org/oss-sec/2022/q1/66 + +Patch copied from upstream source repository: + +https://github.com/util-linux/util-linux/commit/f3db9bd609494099f0c1b95231c5dfe383346929 + +From f3db9bd609494099f0c1b95231c5dfe383346929 Mon Sep 17 00:00:00 2001 +From: Karel Zak +Date: Wed, 24 Nov 2021 13:53:25 +0100 +Subject: [PATCH] libmount: fix UID check for FUSE umount [CVE-2021-3995] + +Improper UID check allows an unprivileged user to unmount FUSE +filesystems of users with similar UID. + +Signed-off-by: Karel Zak +--- + include/strutils.h | 2 +- + libmount/src/context_umount.c | 14 +++--------- + libmount/src/mountP.h | 1 + + libmount/src/optstr.c | 42 +++++++++++++++++++++++++++++++++++ + 4 files changed, 47 insertions(+), 12 deletions(-) + +diff --git a/include/strutils.h b/include/strutils.h +index 6e95707ea..a84d29594 100644 +--- a/include/strutils.h ++++ b/include/strutils.h +@@ -106,8 +106,8 @@ static inline char *mem2strcpy(char *dest, const void *src, size_t n, size_t nma + if (n + 1 > nmax) + n = nmax - 1; + ++ memset(dest, '\0', nmax); + memcpy(dest, src, n); +- dest[nmax-1] = '\0'; + return dest; + } + +diff --git a/libmount/src/context_umount.c b/libmount/src/context_umount.c +index 173637a15..8773c65ff 100644 +--- a/libmount/src/context_umount.c ++++ b/libmount/src/context_umount.c +@@ -453,10 +453,7 @@ static int is_fuse_usermount(struct libmnt_context *cxt, int *errsv) + struct libmnt_ns *ns_old; + const char *type = mnt_fs_get_fstype(cxt->fs); + const char *optstr; +- char *user_id = NULL; +- size_t sz; +- uid_t uid; +- char uidstr[sizeof(stringify_value(ULONG_MAX))]; ++ uid_t uid, entry_uid; + + *errsv = 0; + +@@ -473,11 +470,7 @@ static int is_fuse_usermount(struct libmnt_context *cxt, int *errsv) + optstr = mnt_fs_get_fs_options(cxt->fs); + if (!optstr) + return 0; +- +- if (mnt_optstr_get_option(optstr, "user_id", &user_id, &sz) != 0) +- return 0; +- +- if (sz == 0 || user_id == NULL) ++ if (mnt_optstr_get_uid(optstr, "user_id", &entry_uid) != 0) + return 0; + + /* get current user */ +@@ -494,8 +487,7 @@ static int is_fuse_usermount(struct libmnt_context *cxt, int *errsv) + return 0; + } + +- snprintf(uidstr, sizeof(uidstr), "%lu", (unsigned long) uid); +- return strncmp(user_id, uidstr, sz) == 0; ++ return uid == entry_uid; + } + + /* +diff --git a/libmount/src/mountP.h b/libmount/src/mountP.h +index d43a83541..22442ec55 100644 +--- a/libmount/src/mountP.h ++++ b/libmount/src/mountP.h +@@ -399,6 +399,7 @@ extern const struct libmnt_optmap *mnt_optmap_get_entry( + const struct libmnt_optmap **mapent); + + /* optstr.c */ ++extern int mnt_optstr_get_uid(const char *optstr, const char *name, uid_t *uid); + extern int mnt_optstr_remove_option_at(char **optstr, char *begin, char *end); + extern int mnt_optstr_fix_gid(char **optstr, char *value, size_t valsz, char **next); + extern int mnt_optstr_fix_uid(char **optstr, char *value, size_t valsz, char **next); +diff --git a/libmount/src/optstr.c b/libmount/src/optstr.c +index 921b9318e..16800f571 100644 +--- a/libmount/src/optstr.c ++++ b/libmount/src/optstr.c +@@ -1076,6 +1076,48 @@ int mnt_optstr_fix_user(char **optstr) + return rc; + } + ++/* ++ * Converts value from @optstr addressed by @name to uid. ++ * ++ * Returns: 0 on success, 1 if not found, <0 on error ++ */ ++int mnt_optstr_get_uid(const char *optstr, const char *name, uid_t *uid) ++{ ++ char *value = NULL; ++ size_t valsz = 0; ++ char buf[sizeof(stringify_value(UINT64_MAX))]; ++ int rc; ++ uint64_t num; ++ ++ assert(optstr); ++ assert(name); ++ assert(uid); ++ ++ rc = mnt_optstr_get_option(optstr, name, &value, &valsz); ++ if (rc != 0) ++ goto fail; ++ ++ if (valsz > sizeof(buf) - 1) { ++ rc = -ERANGE; ++ goto fail; ++ } ++ mem2strcpy(buf, value, valsz, sizeof(buf)); ++ ++ rc = ul_strtou64(buf, &num, 10); ++ if (rc != 0) ++ goto fail; ++ if (num > ULONG_MAX || (uid_t) num != num) { ++ rc = -ERANGE; ++ goto fail; ++ } ++ *uid = (uid_t) num; ++ ++ return 0; ++fail: ++ DBG(UTILS, ul_debug("failed to convert '%s'= to number [rc=%d]", name, rc)); ++ return rc; ++} ++ + /** + * mnt_match_options: + * @optstr: options string +-- +2.34.0 + diff --git a/gnu/packages/patches/util-linux-CVE-2021-3996.patch b/gnu/packages/patches/util-linux-CVE-2021-3996.patch new file mode 100644 index 0000000000..59edf5c7cf --- /dev/null +++ b/gnu/packages/patches/util-linux-CVE-2021-3996.patch @@ -0,0 +1,233 @@ +Fix CVE-2021-3996: + +https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3996 +https://seclists.org/oss-sec/2022/q1/66 + +Patch copied from upstream source repository: + +https://github.com/util-linux/util-linux/commit/018a10907fa9885093f6d87401556932c2d8bd2b + +From 018a10907fa9885093f6d87401556932c2d8bd2b Mon Sep 17 00:00:00 2001 +From: Karel Zak +Date: Tue, 4 Jan 2022 10:54:20 +0100 +Subject: [PATCH] libmount: fix (deleted) suffix issue [CVE-2021-3996] + +This issue is related to parsing the /proc/self/mountinfo file allows an +unprivileged user to unmount other user's filesystems that are either +world-writable themselves or mounted in a world-writable directory. + +The support for "(deleted)" is no more necessary as the Linux kernel does +not use it in /proc/self/mountinfo and /proc/self/mount files anymore. + +Signed-off-by: Karel Zak +--- + libmount/src/tab_parse.c | 5 ----- + tests/expected/findmnt/filter-options | 1 - + tests/expected/findmnt/filter-options-nameval-neg | 3 +-- + tests/expected/findmnt/filter-types-neg | 1 - + tests/expected/findmnt/outputs-default | 3 +-- + tests/expected/findmnt/outputs-force-tree | 3 +-- + tests/expected/findmnt/outputs-kernel | 3 +-- + tests/expected/libmount/tabdiff-mount | 1 - + tests/expected/libmount/tabdiff-move | 1 - + tests/expected/libmount/tabdiff-remount | 1 - + tests/expected/libmount/tabdiff-umount | 1 - + tests/expected/libmount/tabfiles-parse-mountinfo | 11 ----------- + tests/expected/libmount/tabfiles-py-parse-mountinfo | 11 ----------- + tests/ts/findmnt/files/mountinfo | 1 - + tests/ts/findmnt/files/mountinfo-nonroot | 1 - + tests/ts/libmount/files/mountinfo | 1 - + 16 files changed, 4 insertions(+), 44 deletions(-) + +diff --git a/libmount/src/tab_parse.c b/libmount/src/tab_parse.c +index 917779ab6..4407f9c9c 100644 +--- a/libmount/src/tab_parse.c ++++ b/libmount/src/tab_parse.c +@@ -227,11 +227,6 @@ static int mnt_parse_mountinfo_line(struct libmnt_fs *fs, const char *s) + goto fail; + } + +- /* remove "\040(deleted)" suffix */ +- p = (char *) endswith(fs->target, PATH_DELETED_SUFFIX); +- if (p && *p) +- *p = '\0'; +- + s = skip_separator(s); + + /* (6) vfs options (fs-independent) */ +diff --git a/tests/expected/findmnt/filter-options b/tests/expected/findmnt/filter-options +index 2606bce76..97b0ead0a 100644 +--- a/tests/expected/findmnt/filter-options ++++ b/tests/expected/findmnt/filter-options +@@ -28,5 +28,4 @@ TARGET SOURCE FSTYPE OPTIONS + /home/kzak/.gvfs gvfs-fuse-daemon fuse.gvfs-fuse-daemon rw,nosuid,nodev,relatime,user_id=500,group_id=500 + /var/lib/nfs/rpc_pipefs sunrpc rpc_pipefs rw,relatime + /mnt/sounds //foo.home/bar/ cifs rw,relatime,unc=\\foo.home\bar,username=kzak,domain=SRGROUP,uid=0,noforceuid,gid=0,noforcegid,addr=192.168.111.1,posixpaths,serverino,acl,rsize=16384,wsize=57344 +-/mnt/foo /fooooo bar rw,relatime + rc=0 +diff --git a/tests/expected/findmnt/filter-options-nameval-neg b/tests/expected/findmnt/filter-options-nameval-neg +index 5471d65af..f0467ef75 100644 +--- a/tests/expected/findmnt/filter-options-nameval-neg ++++ b/tests/expected/findmnt/filter-options-nameval-neg +@@ -29,6 +29,5 @@ TARGET SOURCE FSTYPE OPTIO + |-/home/kzak /dev/mapper/kzak-home ext4 rw,noatime,barrier=1,data=ordered + | `-/home/kzak/.gvfs gvfs-fuse-daemon fuse.gvfs-fuse-daemon rw,nosuid,nodev,relatime,user_id=500,group_id=500 + |-/var/lib/nfs/rpc_pipefs sunrpc rpc_pipefs rw,relatime +-|-/mnt/sounds //foo.home/bar/ cifs rw,relatime,unc=\\foo.home\bar,username=kzak,domain=SRGROUP,uid=0,noforceuid,gid=0,noforcegid,addr=192.168.111.1,posixpaths,serverino,acl,rsize=16384,wsize=57344 +-`-/mnt/foo /fooooo bar rw,relatime ++`-/mnt/sounds //foo.home/bar/ cifs rw,relatime,unc=\\foo.home\bar,username=kzak,domain=SRGROUP,uid=0,noforceuid,gid=0,noforcegid,addr=192.168.111.1,posixpaths,serverino,acl,rsize=16384,wsize=57344 + rc=0 +diff --git a/tests/expected/findmnt/filter-types-neg b/tests/expected/findmnt/filter-types-neg +index 2606bce76..97b0ead0a 100644 +--- a/tests/expected/findmnt/filter-types-neg ++++ b/tests/expected/findmnt/filter-types-neg +@@ -28,5 +28,4 @@ TARGET SOURCE FSTYPE OPTIONS + /home/kzak/.gvfs gvfs-fuse-daemon fuse.gvfs-fuse-daemon rw,nosuid,nodev,relatime,user_id=500,group_id=500 + /var/lib/nfs/rpc_pipefs sunrpc rpc_pipefs rw,relatime + /mnt/sounds //foo.home/bar/ cifs rw,relatime,unc=\\foo.home\bar,username=kzak,domain=SRGROUP,uid=0,noforceuid,gid=0,noforcegid,addr=192.168.111.1,posixpaths,serverino,acl,rsize=16384,wsize=57344 +-/mnt/foo /fooooo bar rw,relatime + rc=0 +diff --git a/tests/expected/findmnt/outputs-default b/tests/expected/findmnt/outputs-default +index 59495797b..01599355e 100644 +--- a/tests/expected/findmnt/outputs-default ++++ b/tests/expected/findmnt/outputs-default +@@ -30,6 +30,5 @@ TARGET SOURCE FSTYPE OPTIO + |-/home/kzak /dev/mapper/kzak-home ext4 rw,noatime,barrier=1,data=ordered + | `-/home/kzak/.gvfs gvfs-fuse-daemon fuse.gvfs-fuse-daemon rw,nosuid,nodev,relatime,user_id=500,group_id=500 + |-/var/lib/nfs/rpc_pipefs sunrpc rpc_pipefs rw,relatime +-|-/mnt/sounds //foo.home/bar/ cifs rw,relatime,unc=\\foo.home\bar,username=kzak,domain=SRGROUP,uid=0,noforceuid,gid=0,noforcegid,addr=192.168.111.1,posixpaths,serverino,acl,rsize=16384,wsize=57344 +-`-/mnt/foo /fooooo bar rw,relatime ++`-/mnt/sounds //foo.home/bar/ cifs rw,relatime,unc=\\foo.home\bar,username=kzak,domain=SRGROUP,uid=0,noforceuid,gid=0,noforcegid,addr=192.168.111.1,posixpaths,serverino,acl,rsize=16384,wsize=57344 + rc=0 +diff --git a/tests/expected/findmnt/outputs-force-tree b/tests/expected/findmnt/outputs-force-tree +index 59495797b..01599355e 100644 +--- a/tests/expected/findmnt/outputs-force-tree ++++ b/tests/expected/findmnt/outputs-force-tree +@@ -30,6 +30,5 @@ TARGET SOURCE FSTYPE OPTIO + |-/home/kzak /dev/mapper/kzak-home ext4 rw,noatime,barrier=1,data=ordered + | `-/home/kzak/.gvfs gvfs-fuse-daemon fuse.gvfs-fuse-daemon rw,nosuid,nodev,relatime,user_id=500,group_id=500 + |-/var/lib/nfs/rpc_pipefs sunrpc rpc_pipefs rw,relatime +-|-/mnt/sounds //foo.home/bar/ cifs rw,relatime,unc=\\foo.home\bar,username=kzak,domain=SRGROUP,uid=0,noforceuid,gid=0,noforcegid,addr=192.168.111.1,posixpaths,serverino,acl,rsize=16384,wsize=57344 +-`-/mnt/foo /fooooo bar rw,relatime ++`-/mnt/sounds //foo.home/bar/ cifs rw,relatime,unc=\\foo.home\bar,username=kzak,domain=SRGROUP,uid=0,noforceuid,gid=0,noforcegid,addr=192.168.111.1,posixpaths,serverino,acl,rsize=16384,wsize=57344 + rc=0 +diff --git a/tests/expected/findmnt/outputs-kernel b/tests/expected/findmnt/outputs-kernel +index 59495797b..01599355e 100644 +--- a/tests/expected/findmnt/outputs-kernel ++++ b/tests/expected/findmnt/outputs-kernel +@@ -30,6 +30,5 @@ TARGET SOURCE FSTYPE OPTIO + |-/home/kzak /dev/mapper/kzak-home ext4 rw,noatime,barrier=1,data=ordered + | `-/home/kzak/.gvfs gvfs-fuse-daemon fuse.gvfs-fuse-daemon rw,nosuid,nodev,relatime,user_id=500,group_id=500 + |-/var/lib/nfs/rpc_pipefs sunrpc rpc_pipefs rw,relatime +-|-/mnt/sounds //foo.home/bar/ cifs rw,relatime,unc=\\foo.home\bar,username=kzak,domain=SRGROUP,uid=0,noforceuid,gid=0,noforcegid,addr=192.168.111.1,posixpaths,serverino,acl,rsize=16384,wsize=57344 +-`-/mnt/foo /fooooo bar rw,relatime ++`-/mnt/sounds //foo.home/bar/ cifs rw,relatime,unc=\\foo.home\bar,username=kzak,domain=SRGROUP,uid=0,noforceuid,gid=0,noforcegid,addr=192.168.111.1,posixpaths,serverino,acl,rsize=16384,wsize=57344 + rc=0 +diff --git a/tests/expected/libmount/tabdiff-mount b/tests/expected/libmount/tabdiff-mount +index 420aeacd5..3c18f8dc4 100644 +--- a/tests/expected/libmount/tabdiff-mount ++++ b/tests/expected/libmount/tabdiff-mount +@@ -1,3 +1,2 @@ + /dev/mapper/kzak-home on /home/kzak: MOUNTED +-/fooooo on /mnt/foo: MOUNTED + tmpfs on /mnt/test/foo bar: MOUNTED +diff --git a/tests/expected/libmount/tabdiff-move b/tests/expected/libmount/tabdiff-move +index 24f9bc791..95820d93e 100644 +--- a/tests/expected/libmount/tabdiff-move ++++ b/tests/expected/libmount/tabdiff-move +@@ -1,3 +1,2 @@ + //foo.home/bar/ on /mnt/music: MOVED to /mnt/music +-/fooooo on /mnt/foo: UMOUNTED + tmpfs on /mnt/test/foo bar: UMOUNTED +diff --git a/tests/expected/libmount/tabdiff-remount b/tests/expected/libmount/tabdiff-remount +index 82ebeab39..876bfd953 100644 +--- a/tests/expected/libmount/tabdiff-remount ++++ b/tests/expected/libmount/tabdiff-remount +@@ -1,4 +1,3 @@ + /dev/mapper/kzak-home on /home/kzak: REMOUNTED from 'rw,noatime,barrier=1,data=ordered' to 'ro,noatime,barrier=1,data=ordered' + //foo.home/bar/ on /mnt/sounds: REMOUNTED from 'rw,relatime,unc=\\foo.home\bar,username=kzak,domain=SRGROUP,uid=0,noforceuid,gid=0,noforcegid,addr=192.168.111.1,posixpaths,serverino,acl,rsize=16384,wsize=57344' to 'ro,relatime,unc=\\foo.home\bar,username=kzak,domain=SRGROUP,uid=0,noforceuid,gid=0,noforcegid,addr=192.168.111.1,posixpaths,serverino,acl,rsize=16384,wsize=57344' +-/fooooo on /mnt/foo: UMOUNTED + tmpfs on /mnt/test/foo bar: UMOUNTED +diff --git a/tests/expected/libmount/tabdiff-umount b/tests/expected/libmount/tabdiff-umount +index a3e0fe48a..c7be725b9 100644 +--- a/tests/expected/libmount/tabdiff-umount ++++ b/tests/expected/libmount/tabdiff-umount +@@ -1,3 +1,2 @@ + /dev/mapper/kzak-home on /home/kzak: UMOUNTED +-/fooooo on /mnt/foo: UMOUNTED + tmpfs on /mnt/test/foo bar: UMOUNTED +diff --git a/tests/expected/libmount/tabfiles-parse-mountinfo b/tests/expected/libmount/tabfiles-parse-mountinfo +index 47eb77006..d5ba5248e 100644 +--- a/tests/expected/libmount/tabfiles-parse-mountinfo ++++ b/tests/expected/libmount/tabfiles-parse-mountinfo +@@ -351,17 +351,6 @@ id: 47 + parent: 20 + devno: 0:38 + ------ fs: +-source: /fooooo +-target: /mnt/foo +-fstype: bar +-optstr: rw,relatime +-VFS-optstr: rw,relatime +-FS-opstr: rw +-root: / +-id: 48 +-parent: 20 +-devno: 0:39 +------- fs: + source: tmpfs + target: /mnt/test/foo bar + fstype: tmpfs +diff --git a/tests/expected/libmount/tabfiles-py-parse-mountinfo b/tests/expected/libmount/tabfiles-py-parse-mountinfo +index 47eb77006..d5ba5248e 100644 +--- a/tests/expected/libmount/tabfiles-py-parse-mountinfo ++++ b/tests/expected/libmount/tabfiles-py-parse-mountinfo +@@ -351,17 +351,6 @@ id: 47 + parent: 20 + devno: 0:38 + ------ fs: +-source: /fooooo +-target: /mnt/foo +-fstype: bar +-optstr: rw,relatime +-VFS-optstr: rw,relatime +-FS-opstr: rw +-root: / +-id: 48 +-parent: 20 +-devno: 0:39 +------- fs: + source: tmpfs + target: /mnt/test/foo bar + fstype: tmpfs +diff --git a/tests/ts/findmnt/files/mountinfo b/tests/ts/findmnt/files/mountinfo +index 475ea1a33..ff1e664a8 100644 +--- a/tests/ts/findmnt/files/mountinfo ++++ b/tests/ts/findmnt/files/mountinfo +@@ -30,4 +30,3 @@ + 44 41 0:36 / /home/kzak/.gvfs rw,nosuid,nodev,relatime - fuse.gvfs-fuse-daemon gvfs-fuse-daemon rw,user_id=500,group_id=500 + 45 20 0:37 / /var/lib/nfs/rpc_pipefs rw,relatime - rpc_pipefs sunrpc rw + 47 20 0:38 / /mnt/sounds rw,relatime - cifs //foo.home/bar/ rw,unc=\\foo.home\bar,username=kzak,domain=SRGROUP,uid=0,noforceuid,gid=0,noforcegid,addr=192.168.111.1,posixpaths,serverino,acl,rsize=16384,wsize=57344 +-48 20 0:39 / /mnt/foo\040(deleted) rw,relatime - bar /fooooo rw +diff --git a/tests/ts/findmnt/files/mountinfo-nonroot b/tests/ts/findmnt/files/mountinfo-nonroot +index e15b46701..87b421d2e 100644 +--- a/tests/ts/findmnt/files/mountinfo-nonroot ++++ b/tests/ts/findmnt/files/mountinfo-nonroot +@@ -29,4 +29,3 @@ + 44 41 0:36 / /home/kzak/.gvfs rw,nosuid,nodev,relatime - fuse.gvfs-fuse-daemon gvfs-fuse-daemon rw,user_id=500,group_id=500 + 45 20 0:37 / /var/lib/nfs/rpc_pipefs rw,relatime - rpc_pipefs sunrpc rw + 47 20 0:38 / /mnt/sounds rw,relatime - cifs //foo.home/bar/ rw,unc=\\foo.home\bar,username=kzak,domain=SRGROUP,uid=0,noforceuid,gid=0,noforcegid,addr=192.168.111.1,posixpaths,serverino,acl,rsize=16384,wsize=57344 +-48 20 0:39 / /mnt/foo\040(deleted) rw,relatime - bar /fooooo rw +diff --git a/tests/ts/libmount/files/mountinfo b/tests/ts/libmount/files/mountinfo +index c06307183..2b0174048 100644 +--- a/tests/ts/libmount/files/mountinfo ++++ b/tests/ts/libmount/files/mountinfo +@@ -30,5 +30,4 @@ + 44 41 0:36 / /home/kzak/.gvfs rw,nosuid,nodev,relatime - fuse.gvfs-fuse-daemon gvfs-fuse-daemon rw,user_id=500,group_id=500 + 45 20 0:37 / /var/lib/nfs/rpc_pipefs rw,relatime - rpc_pipefs sunrpc rw + 47 20 0:38 / /mnt/sounds rw,relatime - cifs //foo.home/bar/ rw,unc=\\foo.home\bar,username=kzak,domain=SRGROUP,uid=0,noforceuid,gid=0,noforcegid,addr=192.168.111.1,posixpaths,serverino,acl,rsize=16384,wsize=57344 +-48 20 0:39 / /mnt/foo\040(deleted) rw,relatime - bar /fooooo rw + 49 20 0:56 / /mnt/test/foo bar rw,relatime shared:323 - tmpfs tmpfs rw +-- +2.34.0 + -- cgit v1.3 From 44c2211c6464b96c253ccb5e875043c63a51a6c1 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Sun, 2 Jan 2022 23:25:18 -0500 Subject: gnu: Add linux-libre 5.16.2. * gnu/packages/aux-files/linux-libre/5.16-arm.conf, gnu/packages/aux-files/linux-libre/5.16-arm64.conf, gnu/packages/aux-files/linux-libre/5.16-i686.conf, gnu/packages/aux-files/linux-libre/5.16-x86_64.conf : New files. * Makefile.am (AUX_FILES): Add them. * gnu/packages/linux.scm (linux-libre-5.16-version, linux-libre-5.16-gnu-revision, deblob-scripts-5.16, linux-libre-5.16-pristine-source, linux-libre-5.16-source, linux-libre-headers-5.16, linux-libre-5.16): New variables. --- Makefile.am | 4 + gnu/packages/aux-files/linux-libre/5.16-arm.conf | 10215 +++++++++++++++++ gnu/packages/aux-files/linux-libre/5.16-arm64.conf | 10660 ++++++++++++++++++ gnu/packages/aux-files/linux-libre/5.16-i686.conf | 11097 ++++++++++++++++++ .../aux-files/linux-libre/5.16-x86_64.conf | 11183 +++++++++++++++++++ gnu/packages/linux.scm | 34 +- 6 files changed, 43191 insertions(+), 2 deletions(-) create mode 100644 gnu/packages/aux-files/linux-libre/5.16-arm.conf create mode 100644 gnu/packages/aux-files/linux-libre/5.16-arm64.conf create mode 100644 gnu/packages/aux-files/linux-libre/5.16-i686.conf create mode 100644 gnu/packages/aux-files/linux-libre/5.16-x86_64.conf diff --git a/Makefile.am b/Makefile.am index a10aeb817b..7463606d20 100644 --- a/Makefile.am +++ b/Makefile.am @@ -379,6 +379,10 @@ AUX_FILES = \ gnu/packages/aux-files/chromium/master-preferences.json \ gnu/packages/aux-files/emacs/guix-emacs.el \ gnu/packages/aux-files/guix.vim \ + gnu/packages/aux-files/linux-libre/5.16-arm.conf \ + gnu/packages/aux-files/linux-libre/5.16-arm64.conf \ + gnu/packages/aux-files/linux-libre/5.16-i686.conf \ + gnu/packages/aux-files/linux-libre/5.16-x86_64.conf \ gnu/packages/aux-files/linux-libre/5.15-arm.conf \ gnu/packages/aux-files/linux-libre/5.15-arm64.conf \ gnu/packages/aux-files/linux-libre/5.15-i686.conf \ diff --git a/gnu/packages/aux-files/linux-libre/5.16-arm.conf b/gnu/packages/aux-files/linux-libre/5.16-arm.conf new file mode 100644 index 0000000000..e2436961f2 --- /dev/null +++ b/gnu/packages/aux-files/linux-libre/5.16-arm.conf @@ -0,0 +1,10215 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/arm 5.16.0 Kernel Configuration +# +CONFIG_CC_VERSION_TEXT="gcc (GCC) 11.2.0" +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=110200 +CONFIG_CLANG_VERSION=0 +CONFIG_AS_IS_GNU=y +CONFIG_AS_VERSION=23700 +CONFIG_LD_IS_BFD=y +CONFIG_LD_VERSION=23700 +CONFIG_LLD_VERSION=0 +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_GOTO_OUTPUT=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_TABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +# CONFIG_WERROR is not set +CONFIG_LOCALVERSION="" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_BUILD_SALT="" +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +# CONFIG_KERNEL_GZIP is not set +# CONFIG_KERNEL_LZMA is not set +CONFIG_KERNEL_XZ=y +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +CONFIG_DEFAULT_INIT="" +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_SWAP=y +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +CONFIG_WATCH_QUEUE=y +CONFIG_CROSS_MEMORY_ATTACH=y +# CONFIG_USELIB is not set +CONFIG_AUDIT=y +CONFIG_HAVE_ARCH_AUDITSYSCALL=y +CONFIG_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_SHOW_LEVEL=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_GENERIC_IRQ_INJECTION=y +CONFIG_HARDIRQS_SW_RESEND=y +CONFIG_GENERIC_IRQ_CHIP=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_IRQ_FASTEOI_HIERARCHY_HANDLERS=y +CONFIG_GENERIC_IRQ_IPI=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +# end of IRQ subsystem + +CONFIG_GENERIC_IRQ_MULTI_HANDLER=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_ARCH_HAS_TICK_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +CONFIG_NO_HZ_IDLE=y +# CONFIG_NO_HZ_FULL is not set +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y +# end of Timers subsystem + +CONFIG_BPF=y +CONFIG_HAVE_EBPF_JIT=y + +# +# BPF subsystem +# +CONFIG_BPF_SYSCALL=y +CONFIG_BPF_JIT=y +# CONFIG_BPF_JIT_ALWAYS_ON is not set +# CONFIG_BPF_UNPRIV_DEFAULT_OFF is not set +# CONFIG_BPF_PRELOAD is not set +CONFIG_BPF_LSM=y +# end of BPF subsystem + +CONFIG_PREEMPT_VOLUNTARY_BUILD=y +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_PREEMPT is not set + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +# CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_SCHED_THERMAL_PRESSURE=y +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_TASKSTATS=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_XACCT=y +CONFIG_TASK_IO_ACCOUNTING=y +CONFIG_PSI=y +# CONFIG_PSI_DEFAULT_DISABLED is not set +# end of CPU/Task time and stats accounting + +CONFIG_CPU_ISOLATION=y + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +CONFIG_TASKS_RCU_GENERIC=y +CONFIG_TASKS_RUDE_RCU=y +CONFIG_TASKS_TRACE_RCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +# end of RCU Subsystem + +CONFIG_BUILD_BIN2C=y +# CONFIG_IKCONFIG is not set +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +# CONFIG_PRINTK_INDEX is not set +CONFIG_GENERIC_SCHED_CLOCK=y + +# +# Scheduler features +# +# CONFIG_UCLAMP_TASK is not set +# end of Scheduler features + +CONFIG_CC_IMPLICIT_FALLTHROUGH="-Wimplicit-fallthrough=5" +CONFIG_CGROUPS=y +CONFIG_PAGE_COUNTER=y +CONFIG_MEMCG=y +CONFIG_MEMCG_SWAP=y +CONFIG_MEMCG_KMEM=y +CONFIG_BLK_CGROUP=y +CONFIG_CGROUP_WRITEBACK=y +CONFIG_CGROUP_SCHED=y +CONFIG_FAIR_GROUP_SCHED=y +CONFIG_CFS_BANDWIDTH=y +# CONFIG_RT_GROUP_SCHED is not set +CONFIG_CGROUP_PIDS=y +# CONFIG_CGROUP_RDMA is not set +CONFIG_CGROUP_FREEZER=y +CONFIG_CPUSETS=y +CONFIG_PROC_PID_CPUSET=y +CONFIG_CGROUP_DEVICE=y +CONFIG_CGROUP_CPUACCT=y +CONFIG_CGROUP_PERF=y +# CONFIG_CGROUP_BPF is not set +CONFIG_CGROUP_MISC=y +# CONFIG_CGROUP_DEBUG is not set +CONFIG_SOCK_CGROUP_DATA=y +CONFIG_NAMESPACES=y +CONFIG_UTS_NS=y +CONFIG_IPC_NS=y +CONFIG_USER_NS=y +CONFIG_PID_NS=y +CONFIG_NET_NS=y +CONFIG_CHECKPOINT_RESTORE=y +CONFIG_SCHED_AUTOGROUP=y +# CONFIG_SYSFS_DEPRECATED is not set +CONFIG_RELAY=y +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="" +CONFIG_RD_GZIP=y +CONFIG_RD_BZIP2=y +CONFIG_RD_LZMA=y +CONFIG_RD_XZ=y +CONFIG_RD_LZO=y +CONFIG_RD_LZ4=y +CONFIG_RD_ZSTD=y +CONFIG_BOOT_CONFIG=y +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_LD_ORPHAN_WARN=y +CONFIG_SYSCTL=y +CONFIG_HAVE_UID16=y +CONFIG_EXPERT=y +CONFIG_UID16=y +CONFIG_MULTIUSER=y +# CONFIG_SGETMASK_SYSCALL is not set +# CONFIG_SYSFS_SYSCALL is not set +CONFIG_FHANDLE=y +CONFIG_POSIX_TIMERS=y +CONFIG_PRINTK=y +CONFIG_BUG=y +CONFIG_ELF_CORE=y +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_HAVE_FUTEX_CMPXCHG=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_IO_URING=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_MEMBARRIER=y +CONFIG_KALLSYMS=y +# CONFIG_KALLSYMS_ALL is not set +CONFIG_KALLSYMS_BASE_RELATIVE=y +CONFIG_USERFAULTFD=y +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +CONFIG_KCMP=y +CONFIG_RSEQ=y +# CONFIG_DEBUG_RSEQ is not set +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y +CONFIG_PERF_USE_VMALLOC=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters + +CONFIG_VM_EVENT_COUNTERS=y +# CONFIG_COMPAT_BRK is not set +CONFIG_SLAB=y +# CONFIG_SLUB is not set +# CONFIG_SLOB is not set +CONFIG_SLAB_MERGE_DEFAULT=y +CONFIG_SLAB_FREELIST_RANDOM=y +CONFIG_SLAB_FREELIST_HARDENED=y +CONFIG_SHUFFLE_PAGE_ALLOCATOR=y +CONFIG_SYSTEM_DATA_VERIFICATION=y +CONFIG_PROFILING=y +CONFIG_TRACEPOINTS=y +# end of General setup + +CONFIG_ARM=y +CONFIG_ARM_HAS_SG_CHAIN=y +CONFIG_ARM_DMA_USE_IOMMU=y +CONFIG_ARM_DMA_IOMMU_ALIGNMENT=8 +CONFIG_SYS_SUPPORTS_APM_EMULATION=y +CONFIG_HAVE_PROC_CPU=y +CONFIG_NO_IOPORT_MAP=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_ARCH_HAS_BANDGAP=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIQ=y +CONFIG_ARM_PATCH_PHYS_VIRT=y +CONFIG_GENERIC_BUG=y +CONFIG_PGTABLE_LEVELS=2 + +# +# System Type +# +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_BITS_MAX=16 +CONFIG_ARCH_MULTIPLATFORM=y +# CONFIG_ARCH_EP93XX is not set +# CONFIG_ARCH_FOOTBRIDGE is not set +# CONFIG_ARCH_IOP32X is not set +# CONFIG_ARCH_IXP4XX is not set +# CONFIG_ARCH_DOVE is not set +# CONFIG_ARCH_PXA is not set +# CONFIG_ARCH_SA1100 is not set +# CONFIG_ARCH_S3C24XX is not set +# CONFIG_ARCH_OMAP1 is not set + +# +# Multiple platform selection +# + +# +# CPU Core family selection +# +# CONFIG_ARCH_MULTI_V6 is not set +CONFIG_ARCH_MULTI_V7=y +CONFIG_ARCH_MULTI_V6_V7=y +# end of Multiple platform selection + +CONFIG_ARCH_VIRT=y +# CONFIG_ARCH_ACTIONS is not set +# CONFIG_ARCH_ALPINE is not set +# CONFIG_ARCH_ARTPEC is not set +# CONFIG_ARCH_ASPEED is not set +# CONFIG_ARCH_AT91 is not set +CONFIG_ARCH_BCM=y + +# +# IPROC architected SoCs +# +# CONFIG_ARCH_BCM_CYGNUS is not set +# CONFIG_ARCH_BCM_HR2 is not set +# CONFIG_ARCH_BCM_NSP is not set +# CONFIG_ARCH_BCM_5301X is not set + +# +# KONA architected SoCs +# +# CONFIG_ARCH_BCM_281XX is not set +# CONFIG_ARCH_BCM_21664 is not set +# CONFIG_ARCH_BCM_23550 is not set + +# +# Other Architectures +# +CONFIG_ARCH_BCM2835=y +# CONFIG_ARCH_BCM_53573 is not set +# CONFIG_ARCH_BCM_63XX is not set +# CONFIG_ARCH_BRCMSTB is not set +# CONFIG_ARCH_BERLIN is not set +# CONFIG_ARCH_DIGICOLOR is not set +CONFIG_ARCH_EXYNOS=y +CONFIG_S5P_DEV_MFC=y +# CONFIG_ARCH_EXYNOS3 is not set +CONFIG_ARCH_EXYNOS4=y +CONFIG_ARCH_EXYNOS5=y + +# +# Exynos SoCs +# +CONFIG_CPU_EXYNOS4210=y +CONFIG_SOC_EXYNOS4412=y +CONFIG_SOC_EXYNOS5250=y +CONFIG_SOC_EXYNOS5260=y +CONFIG_SOC_EXYNOS5410=y +CONFIG_SOC_EXYNOS5420=y +CONFIG_SOC_EXYNOS5800=y +CONFIG_EXYNOS_MCPM=y +CONFIG_EXYNOS_CPU_SUSPEND=y +CONFIG_ARCH_HIGHBANK=y +# CONFIG_ARCH_HISI is not set +CONFIG_ARCH_MXC=y +CONFIG_MXC_TZIC=y +CONFIG_HAVE_IMX_ANATOP=y +CONFIG_HAVE_IMX_GPC=y +CONFIG_HAVE_IMX_MMDC=y +CONFIG_HAVE_IMX_SRC=y + +# +# Cortex-A platforms +# +CONFIG_SOC_IMX5=y +# CONFIG_SOC_IMX50 is not set +CONFIG_SOC_IMX51=y +CONFIG_SOC_IMX53=y +CONFIG_SOC_IMX6=y +CONFIG_SOC_IMX6Q=y +# CONFIG_SOC_IMX6SL is not set +# CONFIG_SOC_IMX6SLL is not set +# CONFIG_SOC_IMX6SX is not set +# CONFIG_SOC_IMX6UL is not set +# CONFIG_SOC_LS1021A is not set + +# +# Cortex-A/Cortex-M asymmetric multiprocessing platforms +# +# CONFIG_SOC_IMX7D is not set +# CONFIG_SOC_IMX7ULP is not set +# CONFIG_SOC_VF610 is not set +# CONFIG_ARCH_KEYSTONE is not set +# CONFIG_ARCH_MEDIATEK is not set +# CONFIG_ARCH_MESON is not set +# CONFIG_ARCH_MILBEAUT is not set +# CONFIG_ARCH_MMP is not set +CONFIG_ARCH_MSTARV7=y +CONFIG_MACH_INFINITY=y +CONFIG_MACH_MERCURY=y +CONFIG_ARCH_MVEBU=y +CONFIG_MACH_MVEBU_ANY=y +CONFIG_MACH_MVEBU_V7=y +CONFIG_MACH_ARMADA_370=y +CONFIG_MACH_ARMADA_375=y +CONFIG_MACH_ARMADA_38X=y +CONFIG_MACH_ARMADA_39X=y +CONFIG_MACH_ARMADA_XP=y +# CONFIG_MACH_DOVE is not set +# CONFIG_ARCH_NPCM is not set +CONFIG_ARCH_OMAP=y + +# +# TI OMAP Common Features +# + +# +# OMAP Feature Selections +# +CONFIG_POWER_AVS_OMAP=y +CONFIG_POWER_AVS_OMAP_CLASS3=y +CONFIG_OMAP_RESET_CLOCKS=y +CONFIG_OMAP_32K_TIMER=y +# CONFIG_OMAP3_L2_AUX_SECURE_SAVE_RESTORE is not set +# end of TI OMAP Common Features + +CONFIG_MACH_OMAP_GENERIC=y + +# +# TI OMAP/AM/DM/DRA Family +# +CONFIG_OMAP_HWMOD=y +CONFIG_ARCH_OMAP3=y +CONFIG_ARCH_OMAP4=y +CONFIG_SOC_OMAP5=y +CONFIG_SOC_AM33XX=y +# CONFIG_SOC_AM43XX is not set +CONFIG_SOC_DRA7XX=y +CONFIG_ARCH_OMAP2PLUS=y +CONFIG_OMAP_INTERCONNECT_BARRIER=y + +# +# TI OMAP2/3/4 Specific Features +# +CONFIG_ARCH_OMAP2PLUS_TYPICAL=y +CONFIG_SOC_HAS_OMAP2_SDRC=y +CONFIG_SOC_HAS_REALTIME_COUNTER=y +CONFIG_SOC_OMAP3430=y +CONFIG_SOC_TI81XX=y + +# +# OMAP Legacy Platform Data Board Type +# +# CONFIG_OMAP3_SDRC_AC_TIMING is not set +# end of TI OMAP2/3/4 Specific Features + +# CONFIG_OMAP5_ERRATA_801819 is not set +# end of TI OMAP/AM/DM/DRA Family + +# CONFIG_ARCH_QCOM is not set +# CONFIG_ARCH_RDA is not set +CONFIG_ARCH_REALTEK=y +# CONFIG_ARCH_REALVIEW is not set +CONFIG_ARCH_ROCKCHIP=y +# CONFIG_ARCH_S5PV210 is not set +# CONFIG_ARCH_RENESAS is not set +CONFIG_ARCH_INTEL_SOCFPGA=y +# CONFIG_SOCFPGA_SUSPEND is not set +# CONFIG_PLAT_SPEAR is not set +# CONFIG_ARCH_STI is not set +# CONFIG_ARCH_STM32 is not set +CONFIG_ARCH_SUNXI=y +CONFIG_MACH_SUN4I=y +CONFIG_MACH_SUN5I=y +CONFIG_MACH_SUN6I=y +CONFIG_MACH_SUN7I=y +CONFIG_MACH_SUN8I=y +CONFIG_MACH_SUN9I=y +CONFIG_ARCH_SUNXI_MC_SMP=y +CONFIG_ARCH_TEGRA=y +# CONFIG_ARCH_UNIPHIER is not set +# CONFIG_ARCH_U8500 is not set +CONFIG_ARCH_VEXPRESS=y +CONFIG_ARCH_VEXPRESS_CORTEX_A5_A9_ERRATA=y +# CONFIG_ARCH_VEXPRESS_DCSCB is not set +# CONFIG_ARCH_VEXPRESS_SPC is not set +# CONFIG_ARCH_VEXPRESS_TC2_PM is not set +CONFIG_ARCH_VT8500=y +CONFIG_ARCH_WM8850=y +# CONFIG_ARCH_ZYNQ is not set +CONFIG_PLAT_ORION=y +CONFIG_PLAT_VERSATILE=y + +# +# Processor Type +# +CONFIG_CPU_PJ4B=y +CONFIG_CPU_V7=y +CONFIG_CPU_THUMB_CAPABLE=y +CONFIG_CPU_32v6K=y +CONFIG_CPU_32v7=y +CONFIG_CPU_ABRT_EV7=y +CONFIG_CPU_PABRT_V7=y +CONFIG_CPU_CACHE_V7=y +CONFIG_CPU_CACHE_VIPT=y +CONFIG_CPU_COPY_V6=y +CONFIG_CPU_TLB_V7=y +CONFIG_CPU_HAS_ASID=y +CONFIG_CPU_CP15=y +CONFIG_CPU_CP15_MMU=y + +# +# Processor Features +# +# CONFIG_ARM_LPAE is not set +CONFIG_ARM_THUMB=y +CONFIG_ARM_THUMBEE=y +CONFIG_ARM_VIRT_EXT=y +CONFIG_SWP_EMULATE=y +# CONFIG_CPU_BIG_ENDIAN is not set +# CONFIG_CPU_ICACHE_DISABLE is not set +# CONFIG_CPU_ICACHE_MISMATCH_WORKAROUND is not set +# CONFIG_CPU_BPREDICT_DISABLE is not set +CONFIG_CPU_SPECTRE=y +CONFIG_HARDEN_BRANCH_PREDICTOR=y +CONFIG_KUSER_HELPERS=y +CONFIG_VDSO=y +CONFIG_OUTER_CACHE=y +CONFIG_OUTER_CACHE_SYNC=y +CONFIG_CACHE_FEROCEON_L2=y +# CONFIG_CACHE_FEROCEON_L2_WRITETHROUGH is not set +CONFIG_MIGHT_HAVE_CACHE_L2X0=y +CONFIG_CACHE_L2X0=y +# CONFIG_CACHE_L2X0_PMU is not set +CONFIG_PL310_ERRATA_588369=y +CONFIG_PL310_ERRATA_727915=y +CONFIG_PL310_ERRATA_753970=y +CONFIG_PL310_ERRATA_769419=y +CONFIG_ARM_L1_CACHE_SHIFT_6=y +CONFIG_ARM_L1_CACHE_SHIFT=6 +CONFIG_ARM_DMA_MEM_BUFFERABLE=y +CONFIG_ARM_HEAVY_MB=y +CONFIG_ARCH_SUPPORTS_BIG_ENDIAN=y +CONFIG_DEBUG_ALIGN_RODATA=y +CONFIG_IWMMXT=y +CONFIG_PJ4B_ERRATA_4742=y +CONFIG_ARM_ERRATA_430973=y +CONFIG_ARM_ERRATA_643719=y +CONFIG_ARM_ERRATA_720789=y +CONFIG_ARM_ERRATA_754322=y +CONFIG_ARM_ERRATA_754327=y +CONFIG_ARM_ERRATA_764369=y +CONFIG_ARM_ERRATA_775420=y +CONFIG_ARM_ERRATA_798181=y +CONFIG_ARM_ERRATA_773022=y +# CONFIG_ARM_ERRATA_818325_852422 is not set +# CONFIG_ARM_ERRATA_821420 is not set +# CONFIG_ARM_ERRATA_825619 is not set +CONFIG_ARM_ERRATA_857271=y +# CONFIG_ARM_ERRATA_852421 is not set +# CONFIG_ARM_ERRATA_852423 is not set +CONFIG_ARM_ERRATA_857272=y +# end of System Type + +# +# Bus support +# +CONFIG_ARM_ERRATA_814220=y +# end of Bus support + +# +# Kernel Features +# +CONFIG_HAVE_SMP=y +CONFIG_SMP=y +CONFIG_SMP_ON_UP=y +CONFIG_CURRENT_POINTER_IN_TPIDRURO=y +CONFIG_ARM_CPU_TOPOLOGY=y +# CONFIG_SCHED_MC is not set +# CONFIG_SCHED_SMT is not set +CONFIG_HAVE_ARM_SCU=y +CONFIG_HAVE_ARM_ARCH_TIMER=y +CONFIG_HAVE_ARM_TWD=y +CONFIG_MCPM=y +# CONFIG_BIG_LITTLE is not set +CONFIG_VMSPLIT_3G=y +# CONFIG_VMSPLIT_3G_OPT is not set +# CONFIG_VMSPLIT_2G is not set +# CONFIG_VMSPLIT_1G is not set +CONFIG_PAGE_OFFSET=0xC0000000 +CONFIG_NR_CPUS=8 +CONFIG_HOTPLUG_CPU=y +CONFIG_ARM_PSCI=y +CONFIG_ARCH_NR_GPIO=2048 +CONFIG_HZ_FIXED=0 +# CONFIG_HZ_100 is not set +# CONFIG_HZ_200 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_500 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 +CONFIG_SCHED_HRTICK=y +# CONFIG_THUMB2_KERNEL is not set +CONFIG_ARM_PATCH_IDIV=y +CONFIG_AEABI=y +# CONFIG_OABI_COMPAT is not set +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_FLATMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_HIGHMEM=y +CONFIG_HIGHPTE=y +CONFIG_CPU_SW_DOMAIN_PAN=y +CONFIG_HW_PERF_EVENTS=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +# CONFIG_ARM_MODULE_PLTS is not set +CONFIG_FORCE_MAX_ZONEORDER=12 +CONFIG_ALIGNMENT_TRAP=y +# CONFIG_UACCESS_WITH_MEMCPY is not set +CONFIG_PARAVIRT=y +# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set +CONFIG_XEN_DOM0=y +CONFIG_XEN=y +CONFIG_STACKPROTECTOR_PER_TASK=y +# end of Kernel Features + +# +# Boot options +# +CONFIG_USE_OF=y +CONFIG_ATAGS=y +# CONFIG_DEPRECATED_PARAM_STRUCT is not set +CONFIG_ZBOOT_ROM_TEXT=0x0 +CONFIG_ZBOOT_ROM_BSS=0x0 +CONFIG_ARM_APPENDED_DTB=y +CONFIG_ARM_ATAG_DTB_COMPAT=y +CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_FROM_BOOTLOADER=y +# CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_EXTEND is not set +CONFIG_CMDLINE="" +CONFIG_KEXEC=y +CONFIG_ATAGS_PROC=y +# CONFIG_CRASH_DUMP is not set +CONFIG_AUTO_ZRELADDR=y +CONFIG_EFI_STUB=y +CONFIG_EFI=y +CONFIG_DMI=y +# end of Boot options + +# +# CPU Power Management +# + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +CONFIG_CPU_FREQ_GOV_ATTR_SET=y +CONFIG_CPU_FREQ_GOV_COMMON=y +CONFIG_CPU_FREQ_STAT=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL=y +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +CONFIG_CPU_FREQ_GOV_POWERSAVE=m +CONFIG_CPU_FREQ_GOV_USERSPACE=m +CONFIG_CPU_FREQ_GOV_ONDEMAND=m +CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m +CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y + +# +# CPU frequency scaling drivers +# +CONFIG_CPUFREQ_DT=m +CONFIG_CPUFREQ_DT_PLATDEV=y +CONFIG_ARM_ALLWINNER_SUN50I_CPUFREQ_NVMEM=m +CONFIG_ARM_ARMADA_37XX_CPUFREQ=m +CONFIG_ARM_ARMADA_8K_CPUFREQ=m +CONFIG_ARM_HIGHBANK_CPUFREQ=m +CONFIG_ARM_IMX6Q_CPUFREQ=m +CONFIG_ARM_IMX_CPUFREQ_DT=m +CONFIG_ARM_OMAP2PLUS_CPUFREQ=y +CONFIG_ARM_RASPBERRYPI_CPUFREQ=m +CONFIG_ARM_SCMI_CPUFREQ=m +CONFIG_ARM_TEGRA20_CPUFREQ=m +CONFIG_ARM_TEGRA124_CPUFREQ=y +# CONFIG_ARM_TI_CPUFREQ is not set +# end of CPU Frequency scaling + +# +# CPU Idle +# +# CONFIG_CPU_IDLE is not set +CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED=y +# end of CPU Idle +# end of CPU Power Management + +# +# Floating point emulation +# + +# +# At least one emulation must be selected +# +CONFIG_VFP=y +CONFIG_VFPv3=y +CONFIG_NEON=y +# CONFIG_KERNEL_MODE_NEON is not set +# end of Floating point emulation + +# +# Power management options +# +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +CONFIG_HIBERNATE_CALLBACKS=y +CONFIG_HIBERNATION=y +CONFIG_HIBERNATION_SNAPSHOT_DEV=y +CONFIG_PM_STD_PARTITION="" +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +# CONFIG_PM_AUTOSLEEP is not set +# CONFIG_PM_WAKELOCKS is not set +CONFIG_PM=y +CONFIG_PM_DEBUG=y +CONFIG_PM_ADVANCED_DEBUG=y +# CONFIG_PM_TEST_SUSPEND is not set +CONFIG_PM_SLEEP_DEBUG=y +CONFIG_APM_EMULATION=y +CONFIG_PM_CLK=y +CONFIG_PM_GENERIC_DOMAINS=y +# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set +CONFIG_PM_GENERIC_DOMAINS_SLEEP=y +CONFIG_PM_GENERIC_DOMAINS_OF=y +CONFIG_CPU_PM=y +CONFIG_ENERGY_MODEL=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARM_CPU_SUSPEND=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +# end of Power management options + +CONFIG_ARM_CRYPTO=y +CONFIG_CRYPTO_SHA1_ARM=m +CONFIG_CRYPTO_SHA256_ARM=m +CONFIG_CRYPTO_SHA512_ARM=m +CONFIG_CRYPTO_BLAKE2S_ARM=m +CONFIG_CRYPTO_AES_ARM=m +CONFIG_CRYPTO_CHACHA20_NEON=m +CONFIG_CRYPTO_POLY1305_ARM=m + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_KPROBES=y +CONFIG_JUMP_LABEL=y +# CONFIG_STATIC_KEYS_SELFTEST is not set +CONFIG_OPTPROBES=y +CONFIG_UPROBES=y +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_KRETPROBES=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE=y +CONFIG_HAVE_NMI=y +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_GENERIC_IDLE_POLL_SETUP=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_KEEPINITRD=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_ARCH_32BIT_OFF_T=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y +CONFIG_HAVE_ARCH_SECCOMP=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_SECCOMP=y +CONFIG_SECCOMP_FILTER=y +# CONFIG_SECCOMP_CACHE_DEBUG is not set +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_LTO_NONE=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_REL=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=8 +CONFIG_PAGE_SIZE_LESS_THAN_64KB=y +CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y +CONFIG_CLONE_BACKWARDS=y +CONFIG_OLD_SIGSUSPEND3=y +CONFIG_OLD_SIGACTION=y +CONFIG_COMPAT_32BIT_TIME=y +CONFIG_ARCH_OPTIONAL_KERNEL_RWX=y +CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT=y +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_STRICT_MODULE_RWX=y +CONFIG_ARCH_HAS_PHYS_TO_DMA=y +# CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y +CONFIG_HAVE_ARCH_PFN_VALID=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_HAVE_GCC_PLUGINS=y +CONFIG_GCC_PLUGINS=y +CONFIG_GCC_PLUGIN_LATENT_ENTROPY=y +# CONFIG_GCC_PLUGIN_RANDSTRUCT is not set +CONFIG_GCC_PLUGIN_ARM_SSP_PER_TASK=y +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +CONFIG_MODULES=y +CONFIG_MODULE_FORCE_LOAD=y +CONFIG_MODULE_UNLOAD=y +CONFIG_MODULE_FORCE_UNLOAD=y +CONFIG_MODVERSIONS=y +# CONFIG_MODULE_SRCVERSION_ALL is not set +# CONFIG_MODULE_SIG is not set +# CONFIG_MODULE_COMPRESS_NONE is not set +CONFIG_MODULE_COMPRESS_GZIP=y +# CONFIG_MODULE_COMPRESS_XZ is not set +# CONFIG_MODULE_COMPRESS_ZSTD is not set +# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set +CONFIG_MODPROBE_PATH="/run/current-system/profile/bin/modprobe" +# CONFIG_TRIM_UNUSED_KSYMS is not set +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_BLOCK=y +CONFIG_BLK_RQ_ALLOC_TIME=y +CONFIG_BLK_CGROUP_RWSTAT=y +CONFIG_BLK_DEV_BSG_COMMON=y +CONFIG_BLK_DEV_BSGLIB=y +CONFIG_BLK_DEV_INTEGRITY=y +CONFIG_BLK_DEV_INTEGRITY_T10=y +# CONFIG_BLK_DEV_ZONED is not set +CONFIG_BLK_DEV_THROTTLING=y +# CONFIG_BLK_DEV_THROTTLING_LOW is not set +CONFIG_BLK_WBT=y +CONFIG_BLK_WBT_MQ=y +# CONFIG_BLK_CGROUP_IOLATENCY is not set +CONFIG_BLK_CGROUP_IOCOST=y +CONFIG_BLK_CGROUP_IOPRIO=y +CONFIG_BLK_DEBUG_FS=y +# CONFIG_BLK_SED_OPAL is not set +CONFIG_BLK_INLINE_ENCRYPTION=y +CONFIG_BLK_INLINE_ENCRYPTION_FALLBACK=y + +# +# Partition Types +# +CONFIG_PARTITION_ADVANCED=y +# CONFIG_ACORN_PARTITION is not set +# CONFIG_AIX_PARTITION is not set +# CONFIG_OSF_PARTITION is not set +# CONFIG_AMIGA_PARTITION is not set +# CONFIG_ATARI_PARTITION is not set +# CONFIG_MAC_PARTITION is not set +CONFIG_MSDOS_PARTITION=y +# CONFIG_BSD_DISKLABEL is not set +# CONFIG_MINIX_SUBPARTITION is not set +# CONFIG_SOLARIS_X86_PARTITION is not set +# CONFIG_UNIXWARE_DISKLABEL is not set +# CONFIG_LDM_PARTITION is not set +# CONFIG_SGI_PARTITION is not set +# CONFIG_ULTRIX_PARTITION is not set +# CONFIG_SUN_PARTITION is not set +CONFIG_KARMA_PARTITION=y +CONFIG_EFI_PARTITION=y +# CONFIG_SYSV68_PARTITION is not set +# CONFIG_CMDLINE_PARTITION is not set +# end of Partition Types + +CONFIG_BLK_MQ_PCI=y +CONFIG_BLK_MQ_VIRTIO=y +CONFIG_BLK_MQ_RDMA=y +CONFIG_BLK_PM=y +CONFIG_BLOCK_HOLDER_DEPRECATED=y + +# +# IO Schedulers +# +CONFIG_MQ_IOSCHED_DEADLINE=y +CONFIG_MQ_IOSCHED_KYBER=m +CONFIG_IOSCHED_BFQ=m +CONFIG_BFQ_GROUP_IOSCHED=y +# CONFIG_BFQ_CGROUP_DEBUG is not set +# end of IO Schedulers + +CONFIG_PADATA=y +CONFIG_ASN1=y +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y +CONFIG_FREEZER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +# CONFIG_BINFMT_ELF_FDPIC is not set +CONFIG_ELFCORE=y +CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y +CONFIG_BINFMT_SCRIPT=y +CONFIG_ARCH_HAS_BINFMT_FLAT=y +# CONFIG_BINFMT_FLAT is not set +CONFIG_BINFMT_FLAT_ARGVP_ENVP_ON_STACK=y +CONFIG_BINFMT_MISC=m +CONFIG_COREDUMP=y +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_FLATMEM_MANUAL=y +# CONFIG_SPARSEMEM_MANUAL is not set +CONFIG_FLATMEM=y +CONFIG_ARCH_KEEP_MEMBLOCK=y +CONFIG_MEMORY_ISOLATION=y +CONFIG_EXCLUSIVE_SYSTEM_RAM=y +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_MEMORY_BALLOON=y +CONFIG_BALLOON_COMPACTION=y +CONFIG_COMPACTION=y +CONFIG_PAGE_REPORTING=y +CONFIG_MIGRATION=y +CONFIG_CONTIG_ALLOC=y +CONFIG_BOUNCE=y +CONFIG_MMU_NOTIFIER=y +CONFIG_KSM=y +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +# CONFIG_CLEANCACHE is not set +CONFIG_FRONTSWAP=y +CONFIG_CMA=y +# CONFIG_CMA_DEBUG is not set +# CONFIG_CMA_DEBUGFS is not set +CONFIG_CMA_SYSFS=y +CONFIG_CMA_AREAS=7 +CONFIG_ZSWAP=y +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_DEFLATE is not set +CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZO=y +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_842 is not set +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4 is not set +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4HC is not set +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_ZSTD is not set +CONFIG_ZSWAP_COMPRESSOR_DEFAULT="lzo" +CONFIG_ZSWAP_ZPOOL_DEFAULT_ZBUD=y +# CONFIG_ZSWAP_ZPOOL_DEFAULT_Z3FOLD is not set +# CONFIG_ZSWAP_ZPOOL_DEFAULT_ZSMALLOC is not set +CONFIG_ZSWAP_ZPOOL_DEFAULT="zbud" +# CONFIG_ZSWAP_DEFAULT_ON is not set +CONFIG_ZPOOL=y +CONFIG_ZBUD=y +# CONFIG_Z3FOLD is not set +CONFIG_ZSMALLOC=m +# CONFIG_ZSMALLOC_STAT is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +CONFIG_PAGE_IDLE_FLAG=y +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ZONE_DMA=y +CONFIG_HMM_MIRROR=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_TEST is not set +CONFIG_KMAP_LOCAL=y +CONFIG_KMAP_LOCAL_NON_LINEAR_PTE_ARRAY=y + +# +# Data Access Monitoring +# +CONFIG_DAMON=y +CONFIG_DAMON_VADDR=y +CONFIG_DAMON_PADDR=y +# CONFIG_DAMON_DBGFS is not set +CONFIG_DAMON_RECLAIM=y +# end of Data Access Monitoring +# end of Memory Management options + +CONFIG_NET=y +CONFIG_NET_INGRESS=y +CONFIG_NET_EGRESS=y +CONFIG_NET_REDIRECT=y +CONFIG_SKB_EXTENSIONS=y + +# +# Networking options +# +CONFIG_PACKET=y +CONFIG_PACKET_DIAG=m +CONFIG_UNIX=y +CONFIG_UNIX_SCM=y +CONFIG_AF_UNIX_OOB=y +CONFIG_UNIX_DIAG=m +# CONFIG_TLS is not set +CONFIG_XFRM=y +CONFIG_XFRM_ALGO=m +CONFIG_XFRM_USER=m +CONFIG_XFRM_INTERFACE=m +CONFIG_XFRM_SUB_POLICY=y +CONFIG_XFRM_MIGRATE=y +# CONFIG_XFRM_STATISTICS is not set +CONFIG_XFRM_AH=m +CONFIG_XFRM_ESP=m +CONFIG_XFRM_IPCOMP=m +CONFIG_NET_KEY=m +CONFIG_NET_KEY_MIGRATE=y +# CONFIG_SMC is not set +CONFIG_XDP_SOCKETS=y +CONFIG_XDP_SOCKETS_DIAG=m +CONFIG_INET=y +CONFIG_IP_MULTICAST=y +CONFIG_IP_ADVANCED_ROUTER=y +CONFIG_IP_FIB_TRIE_STATS=y +CONFIG_IP_MULTIPLE_TABLES=y +CONFIG_IP_ROUTE_MULTIPATH=y +CONFIG_IP_ROUTE_VERBOSE=y +CONFIG_IP_ROUTE_CLASSID=y +# CONFIG_IP_PNP is not set +CONFIG_NET_IPIP=m +CONFIG_NET_IPGRE_DEMUX=m +CONFIG_NET_IP_TUNNEL=m +CONFIG_NET_IPGRE=m +CONFIG_NET_IPGRE_BROADCAST=y +CONFIG_IP_MROUTE_COMMON=y +CONFIG_IP_MROUTE=y +CONFIG_IP_MROUTE_MULTIPLE_TABLES=y +CONFIG_IP_PIMSM_V1=y +CONFIG_IP_PIMSM_V2=y +CONFIG_SYN_COOKIES=y +CONFIG_NET_IPVTI=m +CONFIG_NET_UDP_TUNNEL=m +CONFIG_NET_FOU=m +CONFIG_NET_FOU_IP_TUNNELS=y +CONFIG_INET_AH=m +CONFIG_INET_ESP=m +# CONFIG_INET_ESP_OFFLOAD is not set +# CONFIG_INET_ESPINTCP is not set +CONFIG_INET_IPCOMP=m +CONFIG_INET_XFRM_TUNNEL=m +CONFIG_INET_TUNNEL=m +CONFIG_INET_DIAG=m +CONFIG_INET_TCP_DIAG=m +CONFIG_INET_UDP_DIAG=m +# CONFIG_INET_RAW_DIAG is not set +CONFIG_INET_DIAG_DESTROY=y +CONFIG_TCP_CONG_ADVANCED=y +CONFIG_TCP_CONG_BIC=m +CONFIG_TCP_CONG_CUBIC=y +CONFIG_TCP_CONG_WESTWOOD=m +CONFIG_TCP_CONG_HTCP=m +CONFIG_TCP_CONG_HSTCP=m +CONFIG_TCP_CONG_HYBLA=m +CONFIG_TCP_CONG_VEGAS=m +CONFIG_TCP_CONG_NV=m +CONFIG_TCP_CONG_SCALABLE=m +CONFIG_TCP_CONG_LP=m +CONFIG_TCP_CONG_VENO=m +CONFIG_TCP_CONG_YEAH=m +CONFIG_TCP_CONG_ILLINOIS=m +CONFIG_TCP_CONG_DCTCP=m +CONFIG_TCP_CONG_CDG=m +CONFIG_TCP_CONG_BBR=m +CONFIG_DEFAULT_CUBIC=y +# CONFIG_DEFAULT_RENO is not set +CONFIG_DEFAULT_TCP_CONG="cubic" +CONFIG_TCP_MD5SIG=y +CONFIG_IPV6=y +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_ROUTE_INFO=y +CONFIG_IPV6_OPTIMISTIC_DAD=y +CONFIG_INET6_AH=m +CONFIG_INET6_ESP=m +# CONFIG_INET6_ESP_OFFLOAD is not set +# CONFIG_INET6_ESPINTCP is not set +CONFIG_INET6_IPCOMP=m +CONFIG_IPV6_MIP6=y +CONFIG_IPV6_ILA=m +CONFIG_INET6_XFRM_TUNNEL=m +CONFIG_INET6_TUNNEL=m +CONFIG_IPV6_VTI=m +CONFIG_IPV6_SIT=m +CONFIG_IPV6_SIT_6RD=y +CONFIG_IPV6_NDISC_NODETYPE=y +CONFIG_IPV6_TUNNEL=m +CONFIG_IPV6_GRE=m +CONFIG_IPV6_FOU=m +CONFIG_IPV6_FOU_TUNNEL=m +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IPV6_SUBTREES=y +CONFIG_IPV6_MROUTE=y +CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y +CONFIG_IPV6_PIMSM_V2=y +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_IPV6_RPL_LWTUNNEL is not set +# CONFIG_IPV6_IOAM6_LWTUNNEL is not set +# CONFIG_NETLABEL is not set +CONFIG_MPTCP=y +CONFIG_INET_MPTCP_DIAG=m +CONFIG_MPTCP_IPV6=y +CONFIG_NETWORK_SECMARK=y +CONFIG_NET_PTP_CLASSIFY=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +CONFIG_NETFILTER=y +CONFIG_NETFILTER_ADVANCED=y +CONFIG_BRIDGE_NETFILTER=m + +# +# Core Netfilter Configuration +# +CONFIG_NETFILTER_INGRESS=y +CONFIG_NETFILTER_EGRESS=y +CONFIG_NETFILTER_SKIP_EGRESS=y +CONFIG_NETFILTER_NETLINK=m +CONFIG_NETFILTER_FAMILY_BRIDGE=y +CONFIG_NETFILTER_FAMILY_ARP=y +CONFIG_NETFILTER_NETLINK_HOOK=m +CONFIG_NETFILTER_NETLINK_ACCT=m +CONFIG_NETFILTER_NETLINK_QUEUE=m +CONFIG_NETFILTER_NETLINK_LOG=m +CONFIG_NETFILTER_NETLINK_OSF=m +CONFIG_NF_CONNTRACK=m +CONFIG_NF_LOG_SYSLOG=m +CONFIG_NETFILTER_CONNCOUNT=m +CONFIG_NF_CONNTRACK_MARK=y +CONFIG_NF_CONNTRACK_SECMARK=y +CONFIG_NF_CONNTRACK_ZONES=y +CONFIG_NF_CONNTRACK_PROCFS=y +CONFIG_NF_CONNTRACK_EVENTS=y +CONFIG_NF_CONNTRACK_TIMEOUT=y +CONFIG_NF_CONNTRACK_TIMESTAMP=y +CONFIG_NF_CONNTRACK_LABELS=y +CONFIG_NF_CT_PROTO_DCCP=y +CONFIG_NF_CT_PROTO_GRE=y +CONFIG_NF_CT_PROTO_SCTP=y +CONFIG_NF_CT_PROTO_UDPLITE=y +CONFIG_NF_CONNTRACK_AMANDA=m +CONFIG_NF_CONNTRACK_FTP=m +CONFIG_NF_CONNTRACK_H323=m +CONFIG_NF_CONNTRACK_IRC=m +CONFIG_NF_CONNTRACK_BROADCAST=m +CONFIG_NF_CONNTRACK_NETBIOS_NS=m +CONFIG_NF_CONNTRACK_SNMP=m +CONFIG_NF_CONNTRACK_PPTP=m +CONFIG_NF_CONNTRACK_SANE=m +CONFIG_NF_CONNTRACK_SIP=m +CONFIG_NF_CONNTRACK_TFTP=m +CONFIG_NF_CT_NETLINK=m +CONFIG_NF_CT_NETLINK_TIMEOUT=m +CONFIG_NF_CT_NETLINK_HELPER=m +CONFIG_NETFILTER_NETLINK_GLUE_CT=y +CONFIG_NF_NAT=m +CONFIG_NF_NAT_AMANDA=m +CONFIG_NF_NAT_FTP=m +CONFIG_NF_NAT_IRC=m +CONFIG_NF_NAT_SIP=m +CONFIG_NF_NAT_TFTP=m +CONFIG_NF_NAT_REDIRECT=y +CONFIG_NF_NAT_MASQUERADE=y +CONFIG_NETFILTER_SYNPROXY=m +CONFIG_NF_TABLES=m +CONFIG_NF_TABLES_INET=y +CONFIG_NF_TABLES_NETDEV=y +CONFIG_NFT_NUMGEN=m +CONFIG_NFT_CT=m +CONFIG_NFT_FLOW_OFFLOAD=m +CONFIG_NFT_COUNTER=m +CONFIG_NFT_CONNLIMIT=m +CONFIG_NFT_LOG=m +CONFIG_NFT_LIMIT=m +CONFIG_NFT_MASQ=m +CONFIG_NFT_REDIR=m +CONFIG_NFT_NAT=m +CONFIG_NFT_TUNNEL=m +CONFIG_NFT_OBJREF=m +CONFIG_NFT_QUEUE=m +CONFIG_NFT_QUOTA=m +CONFIG_NFT_REJECT=m +CONFIG_NFT_REJECT_INET=m +CONFIG_NFT_COMPAT=m +CONFIG_NFT_HASH=m +CONFIG_NFT_FIB=m +CONFIG_NFT_FIB_INET=m +CONFIG_NFT_XFRM=m +CONFIG_NFT_SOCKET=m +CONFIG_NFT_OSF=m +CONFIG_NFT_TPROXY=m +CONFIG_NFT_SYNPROXY=m +CONFIG_NF_DUP_NETDEV=m +CONFIG_NFT_DUP_NETDEV=m +CONFIG_NFT_FWD_NETDEV=m +CONFIG_NFT_FIB_NETDEV=m +CONFIG_NFT_REJECT_NETDEV=m +CONFIG_NF_FLOW_TABLE_INET=m +CONFIG_NF_FLOW_TABLE=m +CONFIG_NETFILTER_XTABLES=m + +# +# Xtables combined modules +# +CONFIG_NETFILTER_XT_MARK=m +CONFIG_NETFILTER_XT_CONNMARK=m +CONFIG_NETFILTER_XT_SET=m + +# +# Xtables targets +# +CONFIG_NETFILTER_XT_TARGET_AUDIT=m +CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m +CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m +CONFIG_NETFILTER_XT_TARGET_CONNMARK=m +CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m +CONFIG_NETFILTER_XT_TARGET_CT=m +CONFIG_NETFILTER_XT_TARGET_DSCP=m +CONFIG_NETFILTER_XT_TARGET_HL=m +CONFIG_NETFILTER_XT_TARGET_HMARK=m +CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m +CONFIG_NETFILTER_XT_TARGET_LED=m +CONFIG_NETFILTER_XT_TARGET_LOG=m +CONFIG_NETFILTER_XT_TARGET_MARK=m +CONFIG_NETFILTER_XT_NAT=m +CONFIG_NETFILTER_XT_TARGET_NETMAP=m +CONFIG_NETFILTER_XT_TARGET_NFLOG=m +CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m +# CONFIG_NETFILTER_XT_TARGET_NOTRACK is not set +CONFIG_NETFILTER_XT_TARGET_RATEEST=m +CONFIG_NETFILTER_XT_TARGET_REDIRECT=m +CONFIG_NETFILTER_XT_TARGET_MASQUERADE=m +CONFIG_NETFILTER_XT_TARGET_TEE=m +CONFIG_NETFILTER_XT_TARGET_TPROXY=m +CONFIG_NETFILTER_XT_TARGET_TRACE=m +CONFIG_NETFILTER_XT_TARGET_SECMARK=m +CONFIG_NETFILTER_XT_TARGET_TCPMSS=m +CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m + +# +# Xtables matches +# +CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m +CONFIG_NETFILTER_XT_MATCH_BPF=m +CONFIG_NETFILTER_XT_MATCH_CGROUP=m +CONFIG_NETFILTER_XT_MATCH_CLUSTER=m +CONFIG_NETFILTER_XT_MATCH_COMMENT=m +CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m +CONFIG_NETFILTER_XT_MATCH_CONNLABEL=m +CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m +CONFIG_NETFILTER_XT_MATCH_CONNMARK=m +CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m +CONFIG_NETFILTER_XT_MATCH_CPU=m +CONFIG_NETFILTER_XT_MATCH_DCCP=m +CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m +CONFIG_NETFILTER_XT_MATCH_DSCP=m +CONFIG_NETFILTER_XT_MATCH_ECN=m +CONFIG_NETFILTER_XT_MATCH_ESP=m +CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m +CONFIG_NETFILTER_XT_MATCH_HELPER=m +CONFIG_NETFILTER_XT_MATCH_HL=m +CONFIG_NETFILTER_XT_MATCH_IPCOMP=m +CONFIG_NETFILTER_XT_MATCH_IPRANGE=m +CONFIG_NETFILTER_XT_MATCH_IPVS=m +CONFIG_NETFILTER_XT_MATCH_L2TP=m +CONFIG_NETFILTER_XT_MATCH_LENGTH=m +CONFIG_NETFILTER_XT_MATCH_LIMIT=m +CONFIG_NETFILTER_XT_MATCH_MAC=m +CONFIG_NETFILTER_XT_MATCH_MARK=m +CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m +CONFIG_NETFILTER_XT_MATCH_NFACCT=m +CONFIG_NETFILTER_XT_MATCH_OSF=m +CONFIG_NETFILTER_XT_MATCH_OWNER=m +CONFIG_NETFILTER_XT_MATCH_POLICY=m +CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m +CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m +CONFIG_NETFILTER_XT_MATCH_QUOTA=m +CONFIG_NETFILTER_XT_MATCH_RATEEST=m +CONFIG_NETFILTER_XT_MATCH_REALM=m +CONFIG_NETFILTER_XT_MATCH_RECENT=m +CONFIG_NETFILTER_XT_MATCH_SCTP=m +CONFIG_NETFILTER_XT_MATCH_SOCKET=m +CONFIG_NETFILTER_XT_MATCH_STATE=m +CONFIG_NETFILTER_XT_MATCH_STATISTIC=m +CONFIG_NETFILTER_XT_MATCH_STRING=m +CONFIG_NETFILTER_XT_MATCH_TCPMSS=m +CONFIG_NETFILTER_XT_MATCH_TIME=m +CONFIG_NETFILTER_XT_MATCH_U32=m +# end of Core Netfilter Configuration + +CONFIG_IP_SET=m +CONFIG_IP_SET_MAX=256 +CONFIG_IP_SET_BITMAP_IP=m +CONFIG_IP_SET_BITMAP_IPMAC=m +CONFIG_IP_SET_BITMAP_PORT=m +CONFIG_IP_SET_HASH_IP=m +CONFIG_IP_SET_HASH_IPMARK=m +CONFIG_IP_SET_HASH_IPPORT=m +CONFIG_IP_SET_HASH_IPPORTIP=m +CONFIG_IP_SET_HASH_IPPORTNET=m +# CONFIG_IP_SET_HASH_IPMAC is not set +CONFIG_IP_SET_HASH_MAC=m +CONFIG_IP_SET_HASH_NETPORTNET=m +CONFIG_IP_SET_HASH_NET=m +CONFIG_IP_SET_HASH_NETNET=m +CONFIG_IP_SET_HASH_NETPORT=m +CONFIG_IP_SET_HASH_NETIFACE=m +CONFIG_IP_SET_LIST_SET=m +CONFIG_IP_VS=m +CONFIG_IP_VS_IPV6=y +# CONFIG_IP_VS_DEBUG is not set +CONFIG_IP_VS_TAB_BITS=12 + +# +# IPVS transport protocol load balancing support +# +CONFIG_IP_VS_PROTO_TCP=y +CONFIG_IP_VS_PROTO_UDP=y +CONFIG_IP_VS_PROTO_AH_ESP=y +CONFIG_IP_VS_PROTO_ESP=y +CONFIG_IP_VS_PROTO_AH=y +CONFIG_IP_VS_PROTO_SCTP=y + +# +# IPVS scheduler +# +CONFIG_IP_VS_RR=m +CONFIG_IP_VS_WRR=m +CONFIG_IP_VS_LC=m +CONFIG_IP_VS_WLC=m +CONFIG_IP_VS_FO=m +CONFIG_IP_VS_OVF=m +CONFIG_IP_VS_LBLC=m +CONFIG_IP_VS_LBLCR=m +CONFIG_IP_VS_DH=m +CONFIG_IP_VS_SH=m +CONFIG_IP_VS_MH=m +CONFIG_IP_VS_SED=m +CONFIG_IP_VS_NQ=m +CONFIG_IP_VS_TWOS=m + +# +# IPVS SH scheduler +# +CONFIG_IP_VS_SH_TAB_BITS=8 + +# +# IPVS MH scheduler +# +CONFIG_IP_VS_MH_TAB_INDEX=12 + +# +# IPVS application helper +# +CONFIG_IP_VS_FTP=m +CONFIG_IP_VS_NFCT=y +CONFIG_IP_VS_PE_SIP=m + +# +# IP: Netfilter Configuration +# +CONFIG_NF_DEFRAG_IPV4=m +CONFIG_NF_SOCKET_IPV4=m +CONFIG_NF_TPROXY_IPV4=m +CONFIG_NF_TABLES_IPV4=y +CONFIG_NFT_REJECT_IPV4=m +CONFIG_NFT_DUP_IPV4=m +CONFIG_NFT_FIB_IPV4=m +CONFIG_NF_TABLES_ARP=y +CONFIG_NF_FLOW_TABLE_IPV4=m +CONFIG_NF_DUP_IPV4=m +CONFIG_NF_LOG_ARP=m +CONFIG_NF_LOG_IPV4=m +CONFIG_NF_REJECT_IPV4=m +CONFIG_NF_NAT_SNMP_BASIC=m +CONFIG_NF_NAT_PPTP=m +CONFIG_NF_NAT_H323=m +CONFIG_IP_NF_IPTABLES=m +CONFIG_IP_NF_MATCH_AH=m +CONFIG_IP_NF_MATCH_ECN=m +CONFIG_IP_NF_MATCH_RPFILTER=m +CONFIG_IP_NF_MATCH_TTL=m +CONFIG_IP_NF_FILTER=m +CONFIG_IP_NF_TARGET_REJECT=m +CONFIG_IP_NF_TARGET_SYNPROXY=m +CONFIG_IP_NF_NAT=m +CONFIG_IP_NF_TARGET_MASQUERADE=m +CONFIG_IP_NF_TARGET_NETMAP=m +CONFIG_IP_NF_TARGET_REDIRECT=m +CONFIG_IP_NF_MANGLE=m +CONFIG_IP_NF_TARGET_CLUSTERIP=m +CONFIG_IP_NF_TARGET_ECN=m +CONFIG_IP_NF_TARGET_TTL=m +CONFIG_IP_NF_RAW=m +CONFIG_IP_NF_SECURITY=m +CONFIG_IP_NF_ARPTABLES=m +CONFIG_IP_NF_ARPFILTER=m +CONFIG_IP_NF_ARP_MANGLE=m +# end of IP: Netfilter Configuration + +# +# IPv6: Netfilter Configuration +# +CONFIG_NF_SOCKET_IPV6=m +CONFIG_NF_TPROXY_IPV6=m +CONFIG_NF_TABLES_IPV6=y +CONFIG_NFT_REJECT_IPV6=m +CONFIG_NFT_DUP_IPV6=m +CONFIG_NFT_FIB_IPV6=m +CONFIG_NF_FLOW_TABLE_IPV6=m +CONFIG_NF_DUP_IPV6=m +CONFIG_NF_REJECT_IPV6=m +CONFIG_NF_LOG_IPV6=m +CONFIG_IP6_NF_IPTABLES=m +CONFIG_IP6_NF_MATCH_AH=m +CONFIG_IP6_NF_MATCH_EUI64=m +CONFIG_IP6_NF_MATCH_FRAG=m +CONFIG_IP6_NF_MATCH_OPTS=m +CONFIG_IP6_NF_MATCH_HL=m +CONFIG_IP6_NF_MATCH_IPV6HEADER=m +CONFIG_IP6_NF_MATCH_MH=m +CONFIG_IP6_NF_MATCH_RPFILTER=m +CONFIG_IP6_NF_MATCH_RT=m +CONFIG_IP6_NF_MATCH_SRH=m +CONFIG_IP6_NF_TARGET_HL=m +CONFIG_IP6_NF_FILTER=m +CONFIG_IP6_NF_TARGET_REJECT=m +CONFIG_IP6_NF_TARGET_SYNPROXY=m +CONFIG_IP6_NF_MANGLE=m +CONFIG_IP6_NF_RAW=m +CONFIG_IP6_NF_SECURITY=m +CONFIG_IP6_NF_NAT=m +CONFIG_IP6_NF_TARGET_MASQUERADE=m +CONFIG_IP6_NF_TARGET_NPT=m +# end of IPv6: Netfilter Configuration + +CONFIG_NF_DEFRAG_IPV6=m +CONFIG_NF_TABLES_BRIDGE=m +CONFIG_NFT_BRIDGE_META=m +CONFIG_NFT_BRIDGE_REJECT=m +CONFIG_NF_CONNTRACK_BRIDGE=m +CONFIG_BRIDGE_NF_EBTABLES=m +CONFIG_BRIDGE_EBT_BROUTE=m +CONFIG_BRIDGE_EBT_T_FILTER=m +CONFIG_BRIDGE_EBT_T_NAT=m +CONFIG_BRIDGE_EBT_802_3=m +CONFIG_BRIDGE_EBT_AMONG=m +CONFIG_BRIDGE_EBT_ARP=m +CONFIG_BRIDGE_EBT_IP=m +CONFIG_BRIDGE_EBT_IP6=m +CONFIG_BRIDGE_EBT_LIMIT=m +CONFIG_BRIDGE_EBT_MARK=m +CONFIG_BRIDGE_EBT_PKTTYPE=m +CONFIG_BRIDGE_EBT_STP=m +CONFIG_BRIDGE_EBT_VLAN=m +CONFIG_BRIDGE_EBT_ARPREPLY=m +CONFIG_BRIDGE_EBT_DNAT=m +CONFIG_BRIDGE_EBT_MARK_T=m +CONFIG_BRIDGE_EBT_REDIRECT=m +CONFIG_BRIDGE_EBT_SNAT=m +CONFIG_BRIDGE_EBT_LOG=m +CONFIG_BRIDGE_EBT_NFLOG=m +# CONFIG_BPFILTER is not set +CONFIG_IP_DCCP=m +CONFIG_INET_DCCP_DIAG=m + +# +# DCCP CCIDs Configuration +# +# CONFIG_IP_DCCP_CCID2_DEBUG is not set +CONFIG_IP_DCCP_CCID3=y +# CONFIG_IP_DCCP_CCID3_DEBUG is not set +CONFIG_IP_DCCP_TFRC_LIB=y +# end of DCCP CCIDs Configuration + +# +# DCCP Kernel Hacking +# +# CONFIG_IP_DCCP_DEBUG is not set +# end of DCCP Kernel Hacking + +CONFIG_IP_SCTP=m +# CONFIG_SCTP_DBG_OBJCNT is not set +CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5=y +# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1 is not set +# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set +CONFIG_SCTP_COOKIE_HMAC_MD5=y +CONFIG_SCTP_COOKIE_HMAC_SHA1=y +CONFIG_INET_SCTP_DIAG=m +CONFIG_RDS=m +CONFIG_RDS_RDMA=m +CONFIG_RDS_TCP=m +# CONFIG_RDS_DEBUG is not set +CONFIG_TIPC=m +CONFIG_TIPC_MEDIA_IB=y +CONFIG_TIPC_MEDIA_UDP=y +CONFIG_TIPC_CRYPTO=y +CONFIG_TIPC_DIAG=m +CONFIG_ATM=m +CONFIG_ATM_CLIP=m +# CONFIG_ATM_CLIP_NO_ICMP is not set +CONFIG_ATM_LANE=m +CONFIG_ATM_MPOA=m +CONFIG_ATM_BR2684=m +# CONFIG_ATM_BR2684_IPFILTER is not set +CONFIG_L2TP=m +CONFIG_L2TP_DEBUGFS=m +CONFIG_L2TP_V3=y +CONFIG_L2TP_IP=m +CONFIG_L2TP_ETH=m +CONFIG_STP=m +CONFIG_GARP=m +CONFIG_MRP=m +CONFIG_BRIDGE=m +CONFIG_BRIDGE_IGMP_SNOOPING=y +CONFIG_BRIDGE_VLAN_FILTERING=y +CONFIG_BRIDGE_MRP=y +CONFIG_BRIDGE_CFM=y +CONFIG_NET_DSA=m +CONFIG_NET_DSA_TAG_AR9331=m +CONFIG_NET_DSA_TAG_BRCM_COMMON=m +CONFIG_NET_DSA_TAG_BRCM=m +CONFIG_NET_DSA_TAG_BRCM_LEGACY=m +CONFIG_NET_DSA_TAG_BRCM_PREPEND=m +CONFIG_NET_DSA_TAG_HELLCREEK=m +CONFIG_NET_DSA_TAG_GSWIP=m +CONFIG_NET_DSA_TAG_DSA_COMMON=m +CONFIG_NET_DSA_TAG_DSA=m +CONFIG_NET_DSA_TAG_EDSA=m +CONFIG_NET_DSA_TAG_MTK=m +CONFIG_NET_DSA_TAG_KSZ=m +CONFIG_NET_DSA_TAG_OCELOT=m +CONFIG_NET_DSA_TAG_OCELOT_8021Q=m +CONFIG_NET_DSA_TAG_QCA=m +CONFIG_NET_DSA_TAG_RTL4_A=m +CONFIG_NET_DSA_TAG_RTL8_4=m +CONFIG_NET_DSA_TAG_LAN9303=m +CONFIG_NET_DSA_TAG_SJA1105=m +CONFIG_NET_DSA_TAG_TRAILER=m +CONFIG_NET_DSA_TAG_XRS700X=m +CONFIG_VLAN_8021Q=m +CONFIG_VLAN_8021Q_GVRP=y +CONFIG_VLAN_8021Q_MVRP=y +# CONFIG_DECNET is not set +CONFIG_LLC=m +CONFIG_LLC2=m +CONFIG_ATALK=m +CONFIG_DEV_APPLETALK=m +CONFIG_IPDDP=m +CONFIG_IPDDP_ENCAP=y +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +CONFIG_PHONET=m +CONFIG_6LOWPAN=m +# CONFIG_6LOWPAN_DEBUGFS is not set +CONFIG_6LOWPAN_NHC=m +CONFIG_6LOWPAN_NHC_DEST=m +CONFIG_6LOWPAN_NHC_FRAGMENT=m +CONFIG_6LOWPAN_NHC_HOP=m +CONFIG_6LOWPAN_NHC_IPV6=m +CONFIG_6LOWPAN_NHC_MOBILITY=m +CONFIG_6LOWPAN_NHC_ROUTING=m +CONFIG_6LOWPAN_NHC_UDP=m +CONFIG_6LOWPAN_GHC_EXT_HDR_HOP=m +CONFIG_6LOWPAN_GHC_UDP=m +CONFIG_6LOWPAN_GHC_ICMPV6=m +CONFIG_6LOWPAN_GHC_EXT_HDR_DEST=m +CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG=m +CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE=m +CONFIG_IEEE802154=m +# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set +CONFIG_IEEE802154_SOCKET=m +CONFIG_IEEE802154_6LOWPAN=m +CONFIG_MAC802154=m +CONFIG_NET_SCHED=y + +# +# Queueing/Scheduling +# +CONFIG_NET_SCH_CBQ=m +CONFIG_NET_SCH_HTB=m +CONFIG_NET_SCH_HFSC=m +CONFIG_NET_SCH_ATM=m +CONFIG_NET_SCH_PRIO=m +CONFIG_NET_SCH_MULTIQ=m +CONFIG_NET_SCH_RED=m +CONFIG_NET_SCH_SFB=m +CONFIG_NET_SCH_SFQ=m +CONFIG_NET_SCH_TEQL=m +CONFIG_NET_SCH_TBF=m +CONFIG_NET_SCH_CBS=m +CONFIG_NET_SCH_ETF=m +CONFIG_NET_SCH_TAPRIO=m +CONFIG_NET_SCH_GRED=m +CONFIG_NET_SCH_DSMARK=m +CONFIG_NET_SCH_NETEM=m +CONFIG_NET_SCH_DRR=m +CONFIG_NET_SCH_MQPRIO=m +CONFIG_NET_SCH_SKBPRIO=m +CONFIG_NET_SCH_CHOKE=m +CONFIG_NET_SCH_QFQ=m +CONFIG_NET_SCH_CODEL=m +CONFIG_NET_SCH_FQ_CODEL=m +CONFIG_NET_SCH_CAKE=m +CONFIG_NET_SCH_FQ=m +CONFIG_NET_SCH_HHF=m +CONFIG_NET_SCH_PIE=m +CONFIG_NET_SCH_FQ_PIE=m +CONFIG_NET_SCH_INGRESS=m +CONFIG_NET_SCH_PLUG=m +CONFIG_NET_SCH_ETS=m +# CONFIG_NET_SCH_DEFAULT is not set + +# +# Classification +# +CONFIG_NET_CLS=y +CONFIG_NET_CLS_BASIC=m +CONFIG_NET_CLS_TCINDEX=m +CONFIG_NET_CLS_ROUTE4=m +CONFIG_NET_CLS_FW=m +CONFIG_NET_CLS_U32=m +CONFIG_CLS_U32_PERF=y +CONFIG_CLS_U32_MARK=y +CONFIG_NET_CLS_RSVP=m +CONFIG_NET_CLS_RSVP6=m +CONFIG_NET_CLS_FLOW=m +CONFIG_NET_CLS_CGROUP=m +CONFIG_NET_CLS_BPF=m +CONFIG_NET_CLS_FLOWER=m +CONFIG_NET_CLS_MATCHALL=m +CONFIG_NET_EMATCH=y +CONFIG_NET_EMATCH_STACK=32 +CONFIG_NET_EMATCH_CMP=m +CONFIG_NET_EMATCH_NBYTE=m +CONFIG_NET_EMATCH_U32=m +CONFIG_NET_EMATCH_META=m +CONFIG_NET_EMATCH_TEXT=m +CONFIG_NET_EMATCH_CANID=m +CONFIG_NET_EMATCH_IPSET=m +CONFIG_NET_EMATCH_IPT=m +CONFIG_NET_CLS_ACT=y +CONFIG_NET_ACT_POLICE=m +CONFIG_NET_ACT_GACT=m +CONFIG_GACT_PROB=y +CONFIG_NET_ACT_MIRRED=m +# CONFIG_NET_ACT_SAMPLE is not set +CONFIG_NET_ACT_IPT=m +CONFIG_NET_ACT_NAT=m +CONFIG_NET_ACT_PEDIT=m +CONFIG_NET_ACT_SIMP=m +CONFIG_NET_ACT_SKBEDIT=m +CONFIG_NET_ACT_CSUM=m +CONFIG_NET_ACT_MPLS=m +CONFIG_NET_ACT_VLAN=m +CONFIG_NET_ACT_BPF=m +CONFIG_NET_ACT_CONNMARK=m +CONFIG_NET_ACT_CTINFO=m +CONFIG_NET_ACT_SKBMOD=m +CONFIG_NET_ACT_IFE=m +CONFIG_NET_ACT_TUNNEL_KEY=m +CONFIG_NET_ACT_CT=m +CONFIG_NET_ACT_GATE=m +CONFIG_NET_IFE_SKBMARK=m +CONFIG_NET_IFE_SKBPRIO=m +CONFIG_NET_IFE_SKBTCINDEX=m +# CONFIG_NET_TC_SKB_EXT is not set +CONFIG_NET_SCH_FIFO=y +CONFIG_DCB=y +CONFIG_DNS_RESOLVER=m +CONFIG_BATMAN_ADV=m +# CONFIG_BATMAN_ADV_BATMAN_V is not set +CONFIG_BATMAN_ADV_BLA=y +CONFIG_BATMAN_ADV_DAT=y +CONFIG_BATMAN_ADV_NC=y +CONFIG_BATMAN_ADV_MCAST=y +# CONFIG_BATMAN_ADV_DEBUG is not set +# CONFIG_BATMAN_ADV_TRACING is not set +CONFIG_OPENVSWITCH=m +CONFIG_OPENVSWITCH_GRE=m +CONFIG_OPENVSWITCH_VXLAN=m +CONFIG_OPENVSWITCH_GENEVE=m +CONFIG_VSOCKETS=m +CONFIG_VSOCKETS_DIAG=m +CONFIG_VSOCKETS_LOOPBACK=m +CONFIG_VIRTIO_VSOCKETS=m +CONFIG_VIRTIO_VSOCKETS_COMMON=m +CONFIG_NETLINK_DIAG=m +CONFIG_MPLS=y +CONFIG_NET_MPLS_GSO=y +CONFIG_MPLS_ROUTING=m +CONFIG_MPLS_IPTUNNEL=m +CONFIG_NET_NSH=m +# CONFIG_HSR is not set +CONFIG_NET_SWITCHDEV=y +CONFIG_NET_L3_MASTER_DEV=y +CONFIG_QRTR=m +CONFIG_QRTR_TUN=m +CONFIG_QRTR_MHI=m +# CONFIG_NET_NCSI is not set +CONFIG_PCPU_DEV_REFCNT=y +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_SOCK_RX_QUEUE_MAPPING=y +CONFIG_XPS=y +CONFIG_CGROUP_NET_PRIO=y +CONFIG_CGROUP_NET_CLASSID=y +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +CONFIG_NET_PKTGEN=m +CONFIG_NET_DROP_MONITOR=y +# end of Network testing +# end of Networking options + +# CONFIG_HAMRADIO is not set +CONFIG_CAN=m +CONFIG_CAN_RAW=m +CONFIG_CAN_BCM=m +CONFIG_CAN_GW=m +CONFIG_CAN_J1939=m +CONFIG_CAN_ISOTP=m + +# +# CAN Device Drivers +# +CONFIG_CAN_VCAN=m +# CONFIG_CAN_VXCAN is not set +CONFIG_CAN_SLCAN=m +CONFIG_CAN_DEV=m +CONFIG_CAN_CALC_BITTIMING=y +# CONFIG_CAN_FLEXCAN is not set +# CONFIG_CAN_GRCAN is not set +CONFIG_CAN_KVASER_PCIEFD=m +CONFIG_CAN_SUN4I=m +# CONFIG_CAN_TI_HECC is not set +# CONFIG_CAN_C_CAN is not set +# CONFIG_CAN_CC770 is not set +# CONFIG_CAN_IFI_CANFD is not set +# CONFIG_CAN_M_CAN is not set +# CONFIG_CAN_PEAK_PCIEFD is not set +CONFIG_CAN_SJA1000=m +CONFIG_CAN_EMS_PCI=m +CONFIG_CAN_F81601=m +CONFIG_CAN_KVASER_PCI=m +CONFIG_CAN_PEAK_PCI=m +CONFIG_CAN_PEAK_PCIEC=y +CONFIG_CAN_PLX_PCI=m +CONFIG_CAN_SJA1000_ISA=m +# CONFIG_CAN_SJA1000_PLATFORM is not set +CONFIG_CAN_SOFTING=m + +# +# CAN SPI interfaces +# +# CONFIG_CAN_HI311X is not set +# CONFIG_CAN_MCP251X is not set +CONFIG_CAN_MCP251XFD=m +# CONFIG_CAN_MCP251XFD_SANITY is not set +# end of CAN SPI interfaces + +# +# CAN USB interfaces +# +CONFIG_CAN_8DEV_USB=m +CONFIG_CAN_EMS_USB=m +CONFIG_CAN_ESD_USB2=m +CONFIG_CAN_ETAS_ES58X=m +CONFIG_CAN_GS_USB=m +CONFIG_CAN_KVASER_USB=m +# CONFIG_CAN_MCBA_USB is not set +CONFIG_CAN_PEAK_USB=m +CONFIG_CAN_UCAN=m +# end of CAN USB interfaces + +# CONFIG_CAN_DEBUG_DEVICES is not set +# end of CAN Device Drivers + +CONFIG_BT=m +CONFIG_BT_BREDR=y +CONFIG_BT_RFCOMM=m +CONFIG_BT_RFCOMM_TTY=y +CONFIG_BT_BNEP=m +CONFIG_BT_BNEP_MC_FILTER=y +CONFIG_BT_BNEP_PROTO_FILTER=y +CONFIG_BT_HIDP=m +CONFIG_BT_HS=y +CONFIG_BT_LE=y +CONFIG_BT_6LOWPAN=m +# CONFIG_BT_LEDS is not set +CONFIG_BT_MSFTEXT=y +CONFIG_BT_AOSPEXT=y +CONFIG_BT_DEBUGFS=y +# CONFIG_BT_SELFTEST is not set + +# +# Bluetooth device drivers +# +CONFIG_BT_INTEL=m +CONFIG_BT_BCM=m +CONFIG_BT_RTL=m +CONFIG_BT_HCIBTUSB=m +# CONFIG_BT_HCIBTUSB_AUTOSUSPEND is not set +CONFIG_BT_HCIBTUSB_BCM=y +CONFIG_BT_HCIBTUSB_MTK=y +CONFIG_BT_HCIBTUSB_RTL=y +CONFIG_BT_HCIBTSDIO=m +# CONFIG_BT_HCIUART is not set +# CONFIG_BT_HCIBCM203X is not set +# CONFIG_BT_HCIBPA10X is not set +# CONFIG_BT_HCIBFUSB is not set +# CONFIG_BT_HCIVHCI is not set +CONFIG_BT_MRVL=m +CONFIG_BT_MRVL_SDIO=m +CONFIG_BT_ATH3K=m +CONFIG_BT_MTKSDIO=m +CONFIG_BT_HCIRSI=m +CONFIG_BT_VIRTIO=m +# end of Bluetooth device drivers + +CONFIG_AF_RXRPC=m +CONFIG_AF_RXRPC_IPV6=y +# CONFIG_AF_RXRPC_INJECT_LOSS is not set +# CONFIG_AF_RXRPC_DEBUG is not set +CONFIG_RXKAD=y +# CONFIG_AF_KCM is not set +CONFIG_MCTP=y +CONFIG_FIB_RULES=y +CONFIG_WIRELESS=y +CONFIG_WIRELESS_EXT=y +CONFIG_WEXT_CORE=y +CONFIG_WEXT_PROC=y +CONFIG_WEXT_SPY=y +CONFIG_WEXT_PRIV=y +CONFIG_CFG80211=m +# CONFIG_NL80211_TESTMODE is not set +# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set +# CONFIG_CFG80211_CERTIFICATION_ONUS is not set +CONFIG_CFG80211_REQUIRE_SIGNED_REGDB=y +CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS=y +CONFIG_CFG80211_DEFAULT_PS=y +# CONFIG_CFG80211_DEBUGFS is not set +CONFIG_CFG80211_CRDA_SUPPORT=y +CONFIG_CFG80211_WEXT=y +CONFIG_CFG80211_WEXT_EXPORT=y +CONFIG_LIB80211=m +CONFIG_LIB80211_CRYPT_WEP=m +CONFIG_LIB80211_CRYPT_CCMP=m +CONFIG_LIB80211_CRYPT_TKIP=m +# CONFIG_LIB80211_DEBUG is not set +CONFIG_MAC80211=m +CONFIG_MAC80211_HAS_RC=y +CONFIG_MAC80211_RC_MINSTREL=y +CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y +CONFIG_MAC80211_RC_DEFAULT="minstrel_ht" +CONFIG_MAC80211_MESH=y +CONFIG_MAC80211_LEDS=y +# CONFIG_MAC80211_DEBUGFS is not set +# CONFIG_MAC80211_MESSAGE_TRACING is not set +# CONFIG_MAC80211_DEBUG_MENU is not set +CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 +CONFIG_RFKILL=m +CONFIG_RFKILL_LEDS=y +CONFIG_RFKILL_INPUT=y +# CONFIG_RFKILL_GPIO is not set +CONFIG_NET_9P=m +CONFIG_NET_9P_VIRTIO=m +# CONFIG_NET_9P_XEN is not set +CONFIG_NET_9P_RDMA=m +# CONFIG_NET_9P_DEBUG is not set +# CONFIG_CAIF is not set +CONFIG_CEPH_LIB=m +# CONFIG_CEPH_LIB_PRETTYDEBUG is not set +# CONFIG_CEPH_LIB_USE_DNS_RESOLVER is not set +CONFIG_NFC=m +CONFIG_NFC_DIGITAL=m +# CONFIG_NFC_NCI is not set +# CONFIG_NFC_HCI is not set + +# +# Near Field Communication (NFC) devices +# +# CONFIG_NFC_TRF7970A is not set +CONFIG_NFC_SIM=m +CONFIG_NFC_PORT100=m +CONFIG_NFC_PN533=m +CONFIG_NFC_PN533_USB=m +# CONFIG_NFC_PN533_I2C is not set +# CONFIG_NFC_ST95HF is not set +# end of Near Field Communication (NFC) devices + +# CONFIG_PSAMPLE is not set +CONFIG_NET_IFE=m +CONFIG_LWTUNNEL=y +CONFIG_LWTUNNEL_BPF=y +CONFIG_DST_CACHE=y +CONFIG_GRO_CELLS=y +CONFIG_NET_SELFTESTS=y +CONFIG_NET_SOCK_MSG=y +CONFIG_NET_DEVLINK=y +CONFIG_PAGE_POOL=y +CONFIG_FAILOVER=m +CONFIG_ETHTOOL_NETLINK=y + +# +# Device Drivers +# +CONFIG_ARM_AMBA=y +CONFIG_TEGRA_AHB=y +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCI_DOMAINS_GENERIC=y +CONFIG_PCI_SYSCALL=y +CONFIG_PCIEPORTBUS=y +CONFIG_PCIEAER=y +CONFIG_PCIEAER_INJECT=m +# CONFIG_PCIE_ECRC is not set +CONFIG_PCIEASPM=y +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +CONFIG_PCIE_PME=y +CONFIG_PCIE_DPC=y +CONFIG_PCIE_PTM=y +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_QUIRKS=y +# CONFIG_PCI_DEBUG is not set +CONFIG_PCI_STUB=m +CONFIG_PCI_ECAM=y +CONFIG_PCI_BRIDGE_EMUL=y +# CONFIG_PCI_IOV is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_PASID is not set +CONFIG_PCI_LABEL=y +# CONFIG_PCIE_BUS_TUNE_OFF is not set +CONFIG_PCIE_BUS_DEFAULT=y +# CONFIG_PCIE_BUS_SAFE is not set +# CONFIG_PCIE_BUS_PERFORMANCE is not set +# CONFIG_PCIE_BUS_PEER2PEER is not set +# CONFIG_HOTPLUG_PCI is not set + +# +# PCI controller drivers +# +CONFIG_PCI_MVEBU=y +# CONFIG_PCI_FTPCI100 is not set +CONFIG_PCI_TEGRA=y +CONFIG_PCI_HOST_COMMON=y +CONFIG_PCI_HOST_GENERIC=y +# CONFIG_PCIE_XILINX is not set +# CONFIG_PCI_V3_SEMI is not set +# CONFIG_PCIE_ALTERA is not set +CONFIG_PCIE_ROCKCHIP=y +CONFIG_PCIE_ROCKCHIP_HOST=m +CONFIG_PCIE_BRCMSTB=m +# CONFIG_PCIE_MICROCHIP_HOST is not set + +# +# DesignWare PCI Core Support +# +CONFIG_PCIE_DW=y +CONFIG_PCIE_DW_HOST=y +CONFIG_PCI_DRA7XX=m +CONFIG_PCI_DRA7XX_HOST=m +# CONFIG_PCIE_DW_PLAT_HOST is not set +CONFIG_PCI_EXYNOS=m +CONFIG_PCI_IMX6=y +# CONFIG_PCI_LAYERSCAPE is not set +# CONFIG_PCIE_ARMADA_8K is not set +CONFIG_PCIE_ROCKCHIP_DW_HOST=y +# CONFIG_PCI_MESON is not set +# end of DesignWare PCI Core Support + +# +# Mobiveil PCIe Core Support +# +# end of Mobiveil PCIe Core Support + +# +# Cadence PCIe controllers support +# +CONFIG_PCIE_CADENCE=y +CONFIG_PCIE_CADENCE_HOST=y +CONFIG_PCIE_CADENCE_PLAT=y +CONFIG_PCIE_CADENCE_PLAT_HOST=y +# CONFIG_PCI_J721E_HOST is not set +# end of Cadence PCIe controllers support +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# end of PCI switch controller drivers + +CONFIG_CXL_BUS=m +CONFIG_CXL_MEM=m +# CONFIG_CXL_MEM_RAW_COMMANDS is not set +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set + +# +# Generic Driver Options +# +CONFIG_AUXILIARY_BUS=y +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_FW_LOADER_PAGED_BUF=y +CONFIG_EXTRA_FIRMWARE="" +CONFIG_FW_LOADER_USER_HELPER=y +# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set +CONFIG_FW_LOADER_COMPRESS=y +CONFIG_FW_CACHE=y +# end of Firmware loader + +CONFIG_WANT_DEV_COREDUMP=y +CONFIG_ALLOW_DEV_COREDUMP=y +CONFIG_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set +CONFIG_SYS_HYPERVISOR=y +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_SOC_BUS=y +CONFIG_REGMAP=y +CONFIG_REGMAP_AC97=m +CONFIG_REGMAP_I2C=y +CONFIG_REGMAP_SPI=y +CONFIG_REGMAP_W1=m +CONFIG_REGMAP_MMIO=y +CONFIG_REGMAP_IRQ=y +CONFIG_REGMAP_SCCB=m +CONFIG_DMA_SHARED_BUFFER=y +# CONFIG_DMA_FENCE_TRACE is not set +CONFIG_GENERIC_ARCH_TOPOLOGY=y +# end of Generic Driver Options + +# +# Bus devices +# +CONFIG_ARM_CCI=y +CONFIG_ARM_CCI400_COMMON=y +CONFIG_ARM_CCI400_PORT_CTRL=y +# CONFIG_BRCMSTB_GISB_ARB is not set +# CONFIG_MOXTET is not set +# CONFIG_IMX_WEIM is not set +CONFIG_MVEBU_MBUS=y +CONFIG_OMAP_INTERCONNECT=y +CONFIG_OMAP_OCP2SCP=m +CONFIG_SUN50I_DE2_BUS=y +CONFIG_SUNXI_RSB=y +# CONFIG_TEGRA_GMI is not set +CONFIG_TI_PWMSS=y +CONFIG_TI_SYSC=y +CONFIG_VEXPRESS_CONFIG=y +CONFIG_MHI_BUS=m +# CONFIG_MHI_BUS_DEBUG is not set +CONFIG_MHI_BUS_PCI_GENERIC=m +# end of Bus devices + +CONFIG_CONNECTOR=y +CONFIG_PROC_EVENTS=y + +# +# Firmware Drivers +# + +# +# ARM System Control and Management Interface Protocol +# +CONFIG_ARM_SCMI_PROTOCOL=y +CONFIG_ARM_SCMI_HAVE_TRANSPORT=y +CONFIG_ARM_SCMI_HAVE_SHMEM=y +CONFIG_ARM_SCMI_TRANSPORT_MAILBOX=y +CONFIG_ARM_SCMI_TRANSPORT_SMC=y +CONFIG_ARM_SCMI_POWER_DOMAIN=m +# end of ARM System Control and Management Interface Protocol + +# CONFIG_ARM_SCPI_PROTOCOL is not set +# CONFIG_FIRMWARE_MEMMAP is not set +CONFIG_DMIID=y +CONFIG_DMI_SYSFS=y +CONFIG_RASPBERRYPI_FIRMWARE=y +CONFIG_QCOM_SCM=m +# CONFIG_QCOM_SCM_DOWNLOAD_MODE_DEFAULT is not set +CONFIG_SYSFB=y +# CONFIG_SYSFB_SIMPLEFB is not set +CONFIG_TRUSTED_FOUNDATIONS=y +# CONFIG_TURRIS_MOX_RWTM is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +CONFIG_EFI_ESRT=y +CONFIG_EFI_PARAMS_FROM_FDT=y +CONFIG_EFI_RUNTIME_WRAPPERS=y +CONFIG_EFI_GENERIC_STUB=y +CONFIG_EFI_ARMSTUB_DTB_LOADER=y +CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y +# CONFIG_EFI_BOOTLOADER_CONTROL is not set +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +CONFIG_RESET_ATTACK_MITIGATION=y +# CONFIG_EFI_DISABLE_PCI_DMA is not set +# end of EFI (Extensible Firmware Interface) Support + +# CONFIG_IMX_DSP is not set +# CONFIG_IMX_SCU is not set +CONFIG_ARM_PSCI_FW=y +CONFIG_HAVE_ARM_SMCCC=y +CONFIG_HAVE_ARM_SMCCC_DISCOVERY=y +CONFIG_ARM_SMCCC_SOC_ID=y + +# +# Tegra firmware driver +# +# CONFIG_TEGRA_IVC is not set +# end of Tegra firmware driver +# end of Firmware Drivers + +CONFIG_GNSS=m +CONFIG_MTD=y +# CONFIG_MTD_TESTS is not set + +# +# Partition parsers +# +CONFIG_MTD_AR7_PARTS=m +# CONFIG_MTD_CMDLINE_PARTS is not set +CONFIG_MTD_OF_PARTS=m +# CONFIG_MTD_AFS_PARTS is not set +# CONFIG_MTD_REDBOOT_PARTS is not set +# end of Partition parsers + +# +# User Modules And Translation Layers +# +CONFIG_MTD_BLKDEVS=m +CONFIG_MTD_BLOCK=m +CONFIG_MTD_BLOCK_RO=m + +# +# Note that in some cases UBI block is preferred. See MTD_UBI_BLOCK. +# +# CONFIG_FTL is not set +# CONFIG_NFTL is not set +# CONFIG_INFTL is not set +CONFIG_RFD_FTL=m +CONFIG_SSFDC=m +# CONFIG_SM_FTL is not set +CONFIG_MTD_OOPS=m +CONFIG_MTD_SWAP=m +# CONFIG_MTD_PARTITIONED_MASTER is not set + +# +# RAM/ROM/Flash chip drivers +# +CONFIG_MTD_CFI=m +# CONFIG_MTD_JEDECPROBE is not set +CONFIG_MTD_GEN_PROBE=m +# CONFIG_MTD_CFI_ADV_OPTIONS is not set +CONFIG_MTD_MAP_BANK_WIDTH_1=y +CONFIG_MTD_MAP_BANK_WIDTH_2=y +CONFIG_MTD_MAP_BANK_WIDTH_4=y +CONFIG_MTD_CFI_I1=y +CONFIG_MTD_CFI_I2=y +CONFIG_MTD_CFI_INTELEXT=m +CONFIG_MTD_CFI_AMDSTD=m +CONFIG_MTD_CFI_STAA=m +CONFIG_MTD_CFI_UTIL=m +CONFIG_MTD_RAM=m +# CONFIG_MTD_ROM is not set +# CONFIG_MTD_ABSENT is not set +# end of RAM/ROM/Flash chip drivers + +# +# Mapping drivers for chip access +# +CONFIG_MTD_COMPLEX_MAPPINGS=y +CONFIG_MTD_PHYSMAP=m +# CONFIG_MTD_PHYSMAP_COMPAT is not set +# CONFIG_MTD_PHYSMAP_OF is not set +CONFIG_MTD_PHYSMAP_GPIO_ADDR=y +CONFIG_MTD_PCI=m +CONFIG_MTD_INTEL_VR_NOR=m +CONFIG_MTD_PLATRAM=m +# end of Mapping drivers for chip access + +# +# Self-contained MTD device drivers +# +# CONFIG_MTD_PMC551 is not set +CONFIG_MTD_DATAFLASH=m +# CONFIG_MTD_DATAFLASH_WRITE_VERIFY is not set +# CONFIG_MTD_DATAFLASH_OTP is not set +# CONFIG_MTD_MCHP23K256 is not set +# CONFIG_MTD_MCHP48L640 is not set +CONFIG_MTD_SST25L=m +# CONFIG_MTD_SLRAM is not set +# CONFIG_MTD_PHRAM is not set +# CONFIG_MTD_MTDRAM is not set +# CONFIG_MTD_BLOCK2MTD is not set + +# +# Disk-On-Chip Device Drivers +# +# CONFIG_MTD_DOCG3 is not set +# end of Self-contained MTD device drivers + +# +# NAND +# +CONFIG_MTD_NAND_CORE=y +CONFIG_MTD_ONENAND=y +CONFIG_MTD_ONENAND_VERIFY_WRITE=y +# CONFIG_MTD_ONENAND_GENERIC is not set +CONFIG_MTD_ONENAND_OMAP2=m +# CONFIG_MTD_ONENAND_OTP is not set +CONFIG_MTD_ONENAND_2X_PROGRAM=y +CONFIG_MTD_RAW_NAND=m + +# +# Raw/parallel NAND flash controllers +# +# CONFIG_MTD_NAND_DENALI_PCI is not set +# CONFIG_MTD_NAND_DENALI_DT is not set +CONFIG_MTD_NAND_OMAP2=m +# CONFIG_MTD_NAND_OMAP_BCH is not set +CONFIG_MTD_NAND_CAFE=m +CONFIG_MTD_NAND_ORION=m +CONFIG_MTD_NAND_MARVELL=m +# CONFIG_MTD_NAND_BRCMNAND is not set +CONFIG_MTD_NAND_GPMI_NAND=m +CONFIG_MTD_NAND_MXC=m +CONFIG_MTD_NAND_SUNXI=m +CONFIG_MTD_NAND_MXIC=m +CONFIG_MTD_NAND_TEGRA=m +# CONFIG_MTD_NAND_GPIO is not set +# CONFIG_MTD_NAND_PLATFORM is not set +CONFIG_MTD_NAND_CADENCE=m +CONFIG_MTD_NAND_ARASAN=m +# CONFIG_MTD_NAND_INTEL_LGM is not set +CONFIG_MTD_NAND_ROCKCHIP=m +CONFIG_MTD_NAND_PL35X=m + +# +# Misc +# +CONFIG_MTD_SM_COMMON=m +CONFIG_MTD_NAND_NANDSIM=m +CONFIG_MTD_NAND_RICOH=m +# CONFIG_MTD_NAND_DISKONCHIP is not set +CONFIG_MTD_SPI_NAND=m + +# +# ECC engine support +# +CONFIG_MTD_NAND_ECC=y +CONFIG_MTD_NAND_ECC_SW_HAMMING=y +# CONFIG_MTD_NAND_ECC_SW_HAMMING_SMC is not set +# CONFIG_MTD_NAND_ECC_SW_BCH is not set +# end of ECC engine support +# end of NAND + +# +# LPDDR & LPDDR2 PCM memory drivers +# +CONFIG_MTD_LPDDR=m +CONFIG_MTD_QINFO_PROBE=m +# CONFIG_MTD_LPDDR2_NVM is not set +# end of LPDDR & LPDDR2 PCM memory drivers + +CONFIG_MTD_SPI_NOR=m +CONFIG_MTD_SPI_NOR_USE_4K_SECTORS=y +# CONFIG_MTD_SPI_NOR_SWP_DISABLE is not set +CONFIG_MTD_SPI_NOR_SWP_DISABLE_ON_VOLATILE=y +# CONFIG_MTD_SPI_NOR_SWP_KEEP is not set +CONFIG_MTD_UBI=m +CONFIG_MTD_UBI_WL_THRESHOLD=4096 +CONFIG_MTD_UBI_BEB_LIMIT=20 +# CONFIG_MTD_UBI_FASTMAP is not set +# CONFIG_MTD_UBI_GLUEBI is not set +CONFIG_MTD_UBI_BLOCK=y +CONFIG_MTD_HYPERBUS=m +CONFIG_DTC=y +CONFIG_OF=y +# CONFIG_OF_UNITTEST is not set +CONFIG_OF_FLATTREE=y +CONFIG_OF_EARLY_FLATTREE=y +CONFIG_OF_KOBJ=y +CONFIG_OF_DYNAMIC=y +CONFIG_OF_ADDRESS=y +CONFIG_OF_IRQ=y +CONFIG_OF_RESERVED_MEM=y +CONFIG_OF_RESOLVE=y +CONFIG_OF_OVERLAY=y +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +CONFIG_PARPORT=m +# CONFIG_PARPORT_PC is not set +# CONFIG_PARPORT_AX88796 is not set +CONFIG_PARPORT_1284=y +CONFIG_PARPORT_NOT_PC=y +CONFIG_BLK_DEV=y +CONFIG_BLK_DEV_NULL_BLK=m +CONFIG_CDROM=m +CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m +CONFIG_ZRAM=m +CONFIG_ZRAM_DEF_COMP_LZORLE=y +# CONFIG_ZRAM_DEF_COMP_ZSTD is not set +# CONFIG_ZRAM_DEF_COMP_LZ4 is not set +# CONFIG_ZRAM_DEF_COMP_LZO is not set +# CONFIG_ZRAM_DEF_COMP_LZ4HC is not set +CONFIG_ZRAM_DEF_COMP="lzo-rle" +# CONFIG_ZRAM_WRITEBACK is not set +# CONFIG_ZRAM_MEMORY_TRACKING is not set +CONFIG_BLK_DEV_LOOP=m +CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 +CONFIG_BLK_DEV_DRBD=m +# CONFIG_DRBD_FAULT_INJECTION is not set +CONFIG_BLK_DEV_NBD=m +# CONFIG_BLK_DEV_SX8 is not set +CONFIG_BLK_DEV_RAM=m +CONFIG_BLK_DEV_RAM_COUNT=16 +CONFIG_BLK_DEV_RAM_SIZE=16384 +# CONFIG_CDROM_PKTCDVD is not set +CONFIG_ATA_OVER_ETH=m +CONFIG_XEN_BLKDEV_FRONTEND=m +CONFIG_XEN_BLKDEV_BACKEND=m +CONFIG_VIRTIO_BLK=m +CONFIG_BLK_DEV_RBD=m +# CONFIG_BLK_DEV_RSXX is not set +CONFIG_BLK_DEV_RNBD=y +CONFIG_BLK_DEV_RNBD_CLIENT=m +CONFIG_BLK_DEV_RNBD_SERVER=m + +# +# NVME Support +# +CONFIG_NVME_CORE=y +CONFIG_BLK_DEV_NVME=y +# CONFIG_NVME_MULTIPATH is not set +CONFIG_NVME_HWMON=y +CONFIG_NVME_FABRICS=m +CONFIG_NVME_RDMA=m +# CONFIG_NVME_FC is not set +# CONFIG_NVME_TCP is not set +CONFIG_NVME_TARGET=m +# CONFIG_NVME_TARGET_PASSTHRU is not set +# CONFIG_NVME_TARGET_LOOP is not set +CONFIG_NVME_TARGET_RDMA=m +# CONFIG_NVME_TARGET_FC is not set +# CONFIG_NVME_TARGET_TCP is not set +# end of NVME Support + +# +# Misc devices +# +CONFIG_SENSORS_LIS3LV02D=m +CONFIG_AD525X_DPOT=m +CONFIG_AD525X_DPOT_I2C=m +CONFIG_AD525X_DPOT_SPI=m +# CONFIG_DUMMY_IRQ is not set +# CONFIG_PHANTOM is not set +CONFIG_TIFM_CORE=m +CONFIG_TIFM_7XX1=m +CONFIG_ICS932S401=m +CONFIG_ENCLOSURE_SERVICES=m +CONFIG_GEHC_ACHC=m +# CONFIG_HP_ILO is not set +CONFIG_APDS9802ALS=m +CONFIG_ISL29003=m +CONFIG_ISL29020=m +CONFIG_SENSORS_TSL2550=m +CONFIG_SENSORS_BH1770=m +CONFIG_SENSORS_APDS990X=m +CONFIG_HMC6352=m +CONFIG_DS1682=m +# CONFIG_LATTICE_ECP3_CONFIG is not set +CONFIG_SRAM=y +CONFIG_SRAM_EXEC=y +CONFIG_DW_XDATA_PCIE=m +# CONFIG_PCI_ENDPOINT_TEST is not set +CONFIG_XILINX_SDFEC=m +CONFIG_MISC_RTSX=m +CONFIG_HISI_HIKEY_USB=m +CONFIG_C2PORT=m + +# +# EEPROM support +# +CONFIG_EEPROM_AT24=m +CONFIG_EEPROM_AT25=m +CONFIG_EEPROM_LEGACY=m +CONFIG_EEPROM_MAX6875=m +CONFIG_EEPROM_93CX6=m +# CONFIG_EEPROM_93XX46 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_EEPROM_EE1004 is not set +# end of EEPROM support + +CONFIG_CB710_CORE=m +# CONFIG_CB710_DEBUG is not set +CONFIG_CB710_DEBUG_ASSUMPTIONS=y + +# +# Texas Instruments shared transport line discipline +# +CONFIG_TI_ST=m +# end of Texas Instruments shared transport line discipline + +# CONFIG_SENSORS_LIS3_SPI is not set +CONFIG_SENSORS_LIS3_I2C=m +CONFIG_ALTERA_STAPL=m +# CONFIG_ECHO is not set +CONFIG_BCM_VK=m +CONFIG_BCM_VK_TTY=y +CONFIG_MISC_ALCOR_PCI=m +CONFIG_MISC_RTSX_PCI=m +CONFIG_MISC_RTSX_USB=m +# CONFIG_HABANA_AI is not set +CONFIG_UACCE=m +# CONFIG_PVPANIC is not set +# end of Misc devices + +# +# SCSI device support +# +CONFIG_SCSI_MOD=m +CONFIG_RAID_ATTRS=m +CONFIG_SCSI_COMMON=m +CONFIG_SCSI=m +CONFIG_SCSI_DMA=y +CONFIG_SCSI_NETLINK=y +# CONFIG_SCSI_PROC_FS is not set + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=m +CONFIG_CHR_DEV_ST=m +CONFIG_BLK_DEV_SR=m +CONFIG_CHR_DEV_SG=m +CONFIG_BLK_DEV_BSG=y +CONFIG_CHR_DEV_SCH=m +CONFIG_SCSI_ENCLOSURE=m +CONFIG_SCSI_CONSTANTS=y +CONFIG_SCSI_LOGGING=y +CONFIG_SCSI_SCAN_ASYNC=y + +# +# SCSI Transports +# +CONFIG_SCSI_SPI_ATTRS=m +CONFIG_SCSI_FC_ATTRS=m +CONFIG_SCSI_ISCSI_ATTRS=m +CONFIG_SCSI_SAS_ATTRS=m +CONFIG_SCSI_SAS_LIBSAS=m +CONFIG_SCSI_SAS_ATA=y +CONFIG_SCSI_SAS_HOST_SMP=y +CONFIG_SCSI_SRP_ATTRS=m +# end of SCSI Transports + +CONFIG_SCSI_LOWLEVEL=y +CONFIG_ISCSI_TCP=m +CONFIG_ISCSI_BOOT_SYSFS=m +CONFIG_SCSI_CXGB3_ISCSI=m +CONFIG_SCSI_CXGB4_ISCSI=m +CONFIG_SCSI_BNX2_ISCSI=m +CONFIG_SCSI_BNX2X_FCOE=m +CONFIG_BE2ISCSI=m +# CONFIG_BLK_DEV_3W_XXXX_RAID is not set +CONFIG_SCSI_HPSA=m +# CONFIG_SCSI_3W_9XXX is not set +CONFIG_SCSI_3W_SAS=m +CONFIG_SCSI_ACARD=m +# CONFIG_SCSI_AACRAID is not set +# CONFIG_SCSI_AIC7XXX is not set +# CONFIG_SCSI_AIC79XX is not set +# CONFIG_SCSI_AIC94XX is not set +CONFIG_SCSI_MVSAS=m +# CONFIG_SCSI_MVSAS_DEBUG is not set +# CONFIG_SCSI_MVSAS_TASKLET is not set +CONFIG_SCSI_MVUMI=m +CONFIG_SCSI_ADVANSYS=m +# CONFIG_SCSI_ARCMSR is not set +CONFIG_SCSI_ESAS2R=m +# CONFIG_MEGARAID_NEWGEN is not set +# CONFIG_MEGARAID_LEGACY is not set +# CONFIG_MEGARAID_SAS is not set +CONFIG_SCSI_MPT3SAS=m +CONFIG_SCSI_MPT2SAS_MAX_SGE=128 +CONFIG_SCSI_MPT3SAS_MAX_SGE=128 +CONFIG_SCSI_MPT2SAS=m +CONFIG_SCSI_MPI3MR=m +CONFIG_SCSI_SMARTPQI=m +CONFIG_SCSI_UFSHCD=m +CONFIG_SCSI_UFSHCD_PCI=m +# CONFIG_SCSI_UFS_DWC_TC_PCI is not set +# CONFIG_SCSI_UFSHCD_PLATFORM is not set +# CONFIG_SCSI_UFS_BSG is not set +CONFIG_SCSI_UFS_CRYPTO=y +CONFIG_SCSI_UFS_HPB=y +CONFIG_SCSI_UFS_HWMON=y +# CONFIG_SCSI_HPTIOP is not set +# CONFIG_SCSI_MYRB is not set +# CONFIG_SCSI_MYRS is not set +CONFIG_XEN_SCSI_FRONTEND=m +CONFIG_LIBFC=m +CONFIG_LIBFCOE=m +CONFIG_FCOE=m +CONFIG_SCSI_SNIC=m +# CONFIG_SCSI_SNIC_DEBUG_FS is not set +CONFIG_SCSI_DMX3191D=m +CONFIG_SCSI_FDOMAIN=m +CONFIG_SCSI_FDOMAIN_PCI=m +# CONFIG_SCSI_IPS is not set +# CONFIG_SCSI_INITIO is not set +# CONFIG_SCSI_INIA100 is not set +CONFIG_SCSI_STEX=m +# CONFIG_SCSI_SYM53C8XX_2 is not set +# CONFIG_SCSI_IPR is not set +# CONFIG_SCSI_QLOGIC_1280 is not set +# CONFIG_SCSI_QLA_FC is not set +# CONFIG_SCSI_QLA_ISCSI is not set +# CONFIG_QEDI is not set +# CONFIG_QEDF is not set +CONFIG_SCSI_LPFC=m +# CONFIG_SCSI_LPFC_DEBUG_FS is not set +# CONFIG_SCSI_EFCT is not set +# CONFIG_SCSI_DC395x is not set +CONFIG_SCSI_AM53C974=m +# CONFIG_SCSI_NSP32 is not set +CONFIG_SCSI_WD719X=m +# CONFIG_SCSI_DEBUG is not set +CONFIG_SCSI_PMCRAID=m +CONFIG_SCSI_PM8001=m +CONFIG_SCSI_BFA_FC=m +CONFIG_SCSI_VIRTIO=m +CONFIG_SCSI_CHELSIO_FCOE=m +CONFIG_SCSI_DH=y +CONFIG_SCSI_DH_RDAC=m +CONFIG_SCSI_DH_HP_SW=m +CONFIG_SCSI_DH_EMC=m +CONFIG_SCSI_DH_ALUA=m +# end of SCSI device support + +CONFIG_HAVE_PATA_PLATFORM=y +CONFIG_ATA=m +CONFIG_SATA_HOST=y +CONFIG_PATA_TIMINGS=y +CONFIG_ATA_VERBOSE_ERROR=y +CONFIG_ATA_FORCE=y +CONFIG_SATA_PMP=y + +# +# Controllers with non-SFF native interface +# +CONFIG_SATA_AHCI=m +CONFIG_SATA_MOBILE_LPM_POLICY=0 +CONFIG_SATA_AHCI_PLATFORM=m +# CONFIG_AHCI_DM816 is not set +CONFIG_AHCI_IMX=m +# CONFIG_AHCI_CEVA is not set +CONFIG_AHCI_MVEBU=m +CONFIG_AHCI_SUNXI=m +CONFIG_AHCI_TEGRA=m +# CONFIG_AHCI_QORIQ is not set +# CONFIG_SATA_INIC162X is not set +CONFIG_SATA_ACARD_AHCI=m +CONFIG_SATA_SIL24=m +CONFIG_ATA_SFF=y + +# +# SFF controllers with custom DMA interface +# +CONFIG_PDC_ADMA=m +CONFIG_SATA_QSTOR=m +CONFIG_SATA_SX4=m +CONFIG_ATA_BMDMA=y + +# +# SATA SFF controllers with BMDMA +# +CONFIG_ATA_PIIX=m +# CONFIG_SATA_DWC is not set +CONFIG_SATA_HIGHBANK=m +CONFIG_SATA_MV=m +CONFIG_SATA_NV=m +CONFIG_SATA_PROMISE=m +CONFIG_SATA_SIL=m +CONFIG_SATA_SIS=m +CONFIG_SATA_SVW=m +CONFIG_SATA_ULI=m +CONFIG_SATA_VIA=m +CONFIG_SATA_VITESSE=m + +# +# PATA SFF controllers with BMDMA +# +# CONFIG_PATA_ALI is not set +# CONFIG_PATA_AMD is not set +CONFIG_PATA_ARTOP=m +# CONFIG_PATA_ATIIXP is not set +CONFIG_PATA_ATP867X=m +CONFIG_PATA_CMD64X=m +# CONFIG_PATA_CYPRESS is not set +# CONFIG_PATA_EFAR is not set +# CONFIG_PATA_HPT366 is not set +# CONFIG_PATA_HPT37X is not set +# CONFIG_PATA_HPT3X2N is not set +# CONFIG_PATA_HPT3X3 is not set +CONFIG_PATA_IMX=m +CONFIG_PATA_IT8213=m +CONFIG_PATA_IT821X=m +CONFIG_PATA_JMICRON=m +CONFIG_PATA_MARVELL=m +# CONFIG_PATA_NETCELL is not set +CONFIG_PATA_NINJA32=m +# CONFIG_PATA_NS87415 is not set +# CONFIG_PATA_OLDPIIX is not set +# CONFIG_PATA_OPTIDMA is not set +# CONFIG_PATA_PDC2027X is not set +# CONFIG_PATA_PDC_OLD is not set +# CONFIG_PATA_RADISYS is not set +CONFIG_PATA_RDC=m +CONFIG_PATA_SCH=m +# CONFIG_PATA_SERVERWORKS is not set +# CONFIG_PATA_SIL680 is not set +CONFIG_PATA_SIS=m +CONFIG_PATA_TOSHIBA=m +# CONFIG_PATA_TRIFLEX is not set +# CONFIG_PATA_VIA is not set +# CONFIG_PATA_WINBOND is not set + +# +# PIO-only SFF controllers +# +# CONFIG_PATA_CMD640_PCI is not set +# CONFIG_PATA_MPIIX is not set +# CONFIG_PATA_NS87410 is not set +# CONFIG_PATA_OPTI is not set +CONFIG_PATA_PLATFORM=m +CONFIG_PATA_OF_PLATFORM=m +# CONFIG_PATA_RZ1000 is not set + +# +# Generic fallback / legacy drivers +# +CONFIG_ATA_GENERIC=m +# CONFIG_PATA_LEGACY is not set +CONFIG_MD=y +CONFIG_BLK_DEV_MD=m +CONFIG_MD_LINEAR=m +CONFIG_MD_RAID0=m +CONFIG_MD_RAID1=m +CONFIG_MD_RAID10=m +CONFIG_MD_RAID456=m +CONFIG_MD_MULTIPATH=m +CONFIG_MD_FAULTY=m +# CONFIG_MD_CLUSTER is not set +CONFIG_BCACHE=m +# CONFIG_BCACHE_DEBUG is not set +# CONFIG_BCACHE_CLOSURES_DEBUG is not set +# CONFIG_BCACHE_ASYNC_REGISTRATION is not set +CONFIG_BLK_DEV_DM_BUILTIN=y +CONFIG_BLK_DEV_DM=m +# CONFIG_DM_DEBUG is not set +CONFIG_DM_BUFIO=m +# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set +CONFIG_DM_BIO_PRISON=m +CONFIG_DM_PERSISTENT_DATA=m +CONFIG_DM_UNSTRIPED=m +CONFIG_DM_CRYPT=m +CONFIG_DM_SNAPSHOT=m +CONFIG_DM_THIN_PROVISIONING=m +CONFIG_DM_CACHE=m +CONFIG_DM_CACHE_SMQ=m +# CONFIG_DM_WRITECACHE is not set +CONFIG_DM_ERA=m +CONFIG_DM_CLONE=m +CONFIG_DM_MIRROR=m +CONFIG_DM_LOG_USERSPACE=m +CONFIG_DM_RAID=m +CONFIG_DM_ZERO=m +CONFIG_DM_MULTIPATH=m +CONFIG_DM_MULTIPATH_QL=m +CONFIG_DM_MULTIPATH_ST=m +CONFIG_DM_MULTIPATH_HST=m +CONFIG_DM_MULTIPATH_IOA=m +CONFIG_DM_DELAY=m +CONFIG_DM_DUST=m +CONFIG_DM_UEVENT=y +CONFIG_DM_FLAKEY=m +CONFIG_DM_VERITY=m +CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG=y +# CONFIG_DM_VERITY_FEC is not set +CONFIG_DM_SWITCH=m +CONFIG_DM_LOG_WRITES=m +# CONFIG_DM_INTEGRITY is not set +CONFIG_DM_AUDIT=y +CONFIG_TARGET_CORE=m +CONFIG_TCM_IBLOCK=m +CONFIG_TCM_FILEIO=m +CONFIG_TCM_PSCSI=m +CONFIG_TCM_USER2=m +CONFIG_LOOPBACK_TARGET=m +CONFIG_TCM_FC=m +CONFIG_ISCSI_TARGET=m +CONFIG_ISCSI_TARGET_CXGB4=m +CONFIG_SBP_TARGET=m +CONFIG_FUSION=y +CONFIG_FUSION_SPI=m +CONFIG_FUSION_FC=m +CONFIG_FUSION_SAS=m +CONFIG_FUSION_MAX_SGE=128 +CONFIG_FUSION_CTL=m +# CONFIG_FUSION_LOGGING is not set + +# +# IEEE 1394 (FireWire) support +# +CONFIG_FIREWIRE=m +CONFIG_FIREWIRE_OHCI=m +CONFIG_FIREWIRE_SBP2=m +CONFIG_FIREWIRE_NET=m +CONFIG_FIREWIRE_NOSY=m +# end of IEEE 1394 (FireWire) support + +CONFIG_NETDEVICES=y +CONFIG_MII=m +CONFIG_NET_CORE=y +CONFIG_BONDING=m +CONFIG_DUMMY=m +CONFIG_WIREGUARD=m +# CONFIG_WIREGUARD_DEBUG is not set +CONFIG_EQUALIZER=m +# CONFIG_NET_FC is not set +CONFIG_IFB=m +CONFIG_NET_TEAM=m +CONFIG_NET_TEAM_MODE_BROADCAST=m +CONFIG_NET_TEAM_MODE_ROUNDROBIN=m +CONFIG_NET_TEAM_MODE_RANDOM=m +CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m +CONFIG_NET_TEAM_MODE_LOADBALANCE=m +CONFIG_MACVLAN=m +CONFIG_MACVTAP=m +CONFIG_IPVLAN_L3S=y +CONFIG_IPVLAN=m +# CONFIG_IPVTAP is not set +CONFIG_VXLAN=m +CONFIG_GENEVE=m +CONFIG_BAREUDP=m +CONFIG_GTP=m +CONFIG_AMT=m +CONFIG_MACSEC=m +CONFIG_NETCONSOLE=m +CONFIG_NETCONSOLE_DYNAMIC=y +CONFIG_NETPOLL=y +CONFIG_NET_POLL_CONTROLLER=y +CONFIG_TUN=m +CONFIG_TAP=m +# CONFIG_TUN_VNET_CROSS_LE is not set +CONFIG_VETH=m +CONFIG_VIRTIO_NET=m +CONFIG_NLMON=m +CONFIG_NET_VRF=m +CONFIG_VSOCKMON=m +CONFIG_MHI_NET=m +# CONFIG_ARCNET is not set +CONFIG_ATM_DRIVERS=y +CONFIG_ATM_DUMMY=m +# CONFIG_ATM_TCP is not set +# CONFIG_ATM_LANAI is not set +# CONFIG_ATM_ENI is not set +CONFIG_ATM_NICSTAR=m +CONFIG_ATM_NICSTAR_USE_SUNI=y +CONFIG_ATM_NICSTAR_USE_IDT77105=y +# CONFIG_ATM_IDT77252 is not set +CONFIG_ATM_IA=m +# CONFIG_ATM_IA_DEBUG is not set +CONFIG_ATM_FORE200E=m +# CONFIG_ATM_FORE200E_USE_TASKLET is not set +CONFIG_ATM_FORE200E_TX_RETRY=16 +CONFIG_ATM_FORE200E_DEBUG=0 +# CONFIG_ATM_HE is not set +CONFIG_ATM_SOLOS=m + +# +# Distributed Switch Architecture drivers +# +CONFIG_B53=m +# CONFIG_B53_SPI_DRIVER is not set +CONFIG_B53_MDIO_DRIVER=m +# CONFIG_B53_MMAP_DRIVER is not set +# CONFIG_B53_SRAB_DRIVER is not set +# CONFIG_B53_SERDES is not set +CONFIG_NET_DSA_BCM_SF2=m +# CONFIG_NET_DSA_LOOP is not set +CONFIG_NET_DSA_HIRSCHMANN_HELLCREEK=m +# CONFIG_NET_DSA_LANTIQ_GSWIP is not set +# CONFIG_NET_DSA_MT7530 is not set +CONFIG_NET_DSA_MV88E6060=m +# CONFIG_NET_DSA_MICROCHIP_KSZ9477 is not set +# CONFIG_NET_DSA_MICROCHIP_KSZ8795 is not set +CONFIG_NET_DSA_MV88E6XXX=m +# CONFIG_NET_DSA_MV88E6XXX_PTP is not set +CONFIG_NET_DSA_MSCC_FELIX=m +CONFIG_NET_DSA_MSCC_SEVILLE=m +CONFIG_NET_DSA_AR9331=m +CONFIG_NET_DSA_SJA1105=m +CONFIG_NET_DSA_SJA1105_PTP=y +# CONFIG_NET_DSA_SJA1105_TAS is not set +CONFIG_NET_DSA_XRS700X=m +CONFIG_NET_DSA_XRS700X_I2C=m +CONFIG_NET_DSA_XRS700X_MDIO=m +# CONFIG_NET_DSA_QCA8K is not set +CONFIG_NET_DSA_REALTEK_SMI=m +# CONFIG_NET_DSA_SMSC_LAN9303_I2C is not set +# CONFIG_NET_DSA_SMSC_LAN9303_MDIO is not set +CONFIG_NET_DSA_VITESSE_VSC73XX=m +CONFIG_NET_DSA_VITESSE_VSC73XX_SPI=m +CONFIG_NET_DSA_VITESSE_VSC73XX_PLATFORM=m +# end of Distributed Switch Architecture drivers + +CONFIG_ETHERNET=y +CONFIG_MDIO=m +CONFIG_NET_VENDOR_3COM=y +CONFIG_TYPHOON=m +CONFIG_NET_VENDOR_ADAPTEC=y +CONFIG_ADAPTEC_STARFIRE=m +CONFIG_NET_VENDOR_AGERE=y +CONFIG_ET131X=m +CONFIG_NET_VENDOR_ALACRITECH=y +# CONFIG_SLICOSS is not set +CONFIG_NET_VENDOR_ALLWINNER=y +CONFIG_SUN4I_EMAC=m +CONFIG_NET_VENDOR_ALTEON=y +CONFIG_ACENIC=m +# CONFIG_ACENIC_OMIT_TIGON_I is not set +# CONFIG_ALTERA_TSE is not set +CONFIG_NET_VENDOR_AMAZON=y +CONFIG_ENA_ETHERNET=m +CONFIG_NET_VENDOR_AMD=y +# CONFIG_AMD8111_ETH is not set +CONFIG_PCNET32=m +CONFIG_NET_VENDOR_AQUANTIA=y +CONFIG_AQTION=m +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ASIX is not set +CONFIG_NET_VENDOR_ATHEROS=y +CONFIG_ATL2=m +CONFIG_ATL1=m +CONFIG_ATL1E=m +CONFIG_ATL1C=m +CONFIG_ALX=m +CONFIG_NET_VENDOR_BROADCOM=y +# CONFIG_B44 is not set +# CONFIG_BCMGENET is not set +CONFIG_BNX2=m +CONFIG_CNIC=m +CONFIG_TIGON3=m +CONFIG_TIGON3_HWMON=y +CONFIG_BNX2X=m +# CONFIG_SYSTEMPORT is not set +CONFIG_BNXT=m +CONFIG_BNXT_FLOWER_OFFLOAD=y +# CONFIG_BNXT_DCB is not set +CONFIG_BNXT_HWMON=y +CONFIG_NET_VENDOR_BROCADE=y +CONFIG_BNA=m +CONFIG_NET_VENDOR_CADENCE=y +# CONFIG_MACB is not set +CONFIG_NET_CALXEDA_XGMAC=m +CONFIG_NET_VENDOR_CAVIUM=y +CONFIG_NET_VENDOR_CHELSIO=y +CONFIG_CHELSIO_T1=m +CONFIG_CHELSIO_T1_1G=y +CONFIG_CHELSIO_T3=m +CONFIG_CHELSIO_T4=m +CONFIG_CHELSIO_T4_DCB=y +CONFIG_CHELSIO_T4_FCOE=y +CONFIG_CHELSIO_T4VF=m +CONFIG_CHELSIO_LIB=m +CONFIG_CHELSIO_INLINE_CRYPTO=y +CONFIG_NET_VENDOR_CIRRUS=y +CONFIG_CS89x0=m +CONFIG_CS89x0_PLATFORM=m +CONFIG_NET_VENDOR_CISCO=y +CONFIG_ENIC=m +CONFIG_NET_VENDOR_CORTINA=y +CONFIG_GEMINI_ETHERNET=m +# CONFIG_DM9000 is not set +# CONFIG_DNET is not set +CONFIG_NET_VENDOR_DEC=y +CONFIG_NET_TULIP=y +CONFIG_DE2104X=m +CONFIG_DE2104X_DSL=0 +CONFIG_TULIP=m +# CONFIG_TULIP_MWI is not set +# CONFIG_TULIP_MMIO is not set +CONFIG_TULIP_NAPI=y +CONFIG_TULIP_NAPI_HW_MITIGATION=y +CONFIG_WINBOND_840=m +CONFIG_DM9102=m +CONFIG_ULI526X=m +CONFIG_NET_VENDOR_DLINK=y +CONFIG_DL2K=m +CONFIG_SUNDANCE=m +# CONFIG_SUNDANCE_MMIO is not set +CONFIG_NET_VENDOR_EMULEX=y +CONFIG_BE2NET=m +CONFIG_BE2NET_HWMON=y +CONFIG_BE2NET_BE2=y +CONFIG_BE2NET_BE3=y +CONFIG_BE2NET_LANCER=y +CONFIG_BE2NET_SKYHAWK=y +CONFIG_NET_VENDOR_EZCHIP=y +# CONFIG_EZCHIP_NPS_MANAGEMENT_ENET is not set +CONFIG_NET_VENDOR_FARADAY=y +# CONFIG_FTMAC100 is not set +# CONFIG_FTGMAC100 is not set +CONFIG_NET_VENDOR_FREESCALE=y +CONFIG_FEC=y +# CONFIG_FSL_PQ_MDIO is not set +# CONFIG_FSL_XGMAC_MDIO is not set +# CONFIG_GIANFAR is not set +# CONFIG_FSL_DPAA2_SWITCH is not set +CONFIG_FSL_ENETC=m +CONFIG_FSL_ENETC_VF=m +CONFIG_FSL_ENETC_IERB=m +CONFIG_FSL_ENETC_MDIO=m +CONFIG_FSL_ENETC_PTP_CLOCK=m +CONFIG_FSL_ENETC_QOS=y +CONFIG_NET_VENDOR_GOOGLE=y +CONFIG_NET_VENDOR_HISILICON=y +# CONFIG_HIX5HD2_GMAC is not set +# CONFIG_HISI_FEMAC is not set +# CONFIG_HIP04_ETH is not set +# CONFIG_HNS_DSAF is not set +# CONFIG_HNS_ENET is not set +# CONFIG_HNS3 is not set +CONFIG_NET_VENDOR_HUAWEI=y +CONFIG_NET_VENDOR_I825XX=y +CONFIG_NET_VENDOR_INTEL=y +CONFIG_E100=m +CONFIG_E1000=m +CONFIG_E1000E=m +CONFIG_IGB=m +CONFIG_IGB_HWMON=y +CONFIG_IGBVF=m +CONFIG_IXGB=m +CONFIG_IXGBE=m +CONFIG_IXGBE_HWMON=y +CONFIG_IXGBE_DCB=y +CONFIG_IXGBEVF=m +CONFIG_I40E=m +CONFIG_I40E_DCB=y +CONFIG_IAVF=m +CONFIG_I40EVF=m +# CONFIG_ICE is not set +# CONFIG_FM10K is not set +# CONFIG_IGC is not set +CONFIG_NET_VENDOR_MICROSOFT=y +CONFIG_JME=m +CONFIG_NET_VENDOR_LITEX=y +CONFIG_LITEX_LITEETH=m +CONFIG_NET_VENDOR_MARVELL=y +# CONFIG_MV643XX_ETH is not set +CONFIG_MVMDIO=m +# CONFIG_MVNETA_BM_ENABLE is not set +CONFIG_MVNETA=m +CONFIG_MVPP2=m +# CONFIG_MVPP2_PTP is not set +CONFIG_SKGE=m +# CONFIG_SKGE_DEBUG is not set +CONFIG_SKGE_GENESIS=y +CONFIG_SKY2=m +# CONFIG_SKY2_DEBUG is not set +CONFIG_PRESTERA=m +CONFIG_PRESTERA_PCI=m +CONFIG_NET_VENDOR_MELLANOX=y +CONFIG_MLX4_EN=m +CONFIG_MLX4_EN_DCB=y +CONFIG_MLX4_CORE=m +CONFIG_MLX4_DEBUG=y +CONFIG_MLX4_CORE_GEN2=y +CONFIG_MLX5_CORE=m +# CONFIG_MLX5_FPGA is not set +CONFIG_MLX5_CORE_EN=y +CONFIG_MLX5_EN_ARFS=y +CONFIG_MLX5_EN_RXNFC=y +CONFIG_MLX5_MPFS=y +CONFIG_MLX5_ESWITCH=y +CONFIG_MLX5_BRIDGE=y +CONFIG_MLX5_CLS_ACT=y +CONFIG_MLX5_TC_SAMPLE=y +CONFIG_MLX5_CORE_EN_DCB=y +# CONFIG_MLX5_CORE_IPOIB is not set +CONFIG_MLX5_SW_STEERING=y +CONFIG_MLX5_SF=y +CONFIG_MLX5_SF_MANAGER=y +# CONFIG_MLXSW_CORE is not set +# CONFIG_MLXFW is not set +CONFIG_NET_VENDOR_MICREL=y +# CONFIG_KS8842 is not set +# CONFIG_KS8851 is not set +# CONFIG_KS8851_MLL is not set +CONFIG_KSZ884X_PCI=m +CONFIG_NET_VENDOR_MICROCHIP=y +CONFIG_ENC28J60=m +# CONFIG_ENC28J60_WRITEVERIFY is not set +# CONFIG_ENCX24J600 is not set +# CONFIG_LAN743X is not set +CONFIG_NET_VENDOR_MICROSEMI=y +CONFIG_MSCC_OCELOT_SWITCH_LIB=m +CONFIG_MSCC_OCELOT_SWITCH=m +CONFIG_NET_VENDOR_MYRI=y +CONFIG_MYRI10GE=m +CONFIG_FEALNX=m +CONFIG_NET_VENDOR_NATSEMI=y +CONFIG_NATSEMI=m +CONFIG_NS83820=m +CONFIG_NET_VENDOR_NETERION=y +CONFIG_S2IO=m +CONFIG_VXGE=m +# CONFIG_VXGE_DEBUG_TRACE_ALL is not set +CONFIG_NET_VENDOR_NETRONOME=y +CONFIG_NFP=m +# CONFIG_NFP_APP_FLOWER is not set +CONFIG_NFP_APP_ABM_NIC=y +# CONFIG_NFP_DEBUG is not set +CONFIG_NET_VENDOR_NI=y +# CONFIG_NI_XGE_MANAGEMENT_ENET is not set +CONFIG_NET_VENDOR_8390=y +# CONFIG_AX88796 is not set +CONFIG_NE2K_PCI=m +CONFIG_NET_VENDOR_NVIDIA=y +# CONFIG_FORCEDETH is not set +CONFIG_NET_VENDOR_OKI=y +# CONFIG_ETHOC is not set +CONFIG_NET_VENDOR_PACKET_ENGINES=y +CONFIG_HAMACHI=m +CONFIG_YELLOWFIN=m +CONFIG_NET_VENDOR_PENSANDO=y +CONFIG_NET_VENDOR_QLOGIC=y +CONFIG_QLA3XXX=m +CONFIG_QLCNIC=m +CONFIG_QLCNIC_DCB=y +CONFIG_QLCNIC_HWMON=y +CONFIG_NETXEN_NIC=m +CONFIG_QED=m +CONFIG_QEDE=m +CONFIG_NET_VENDOR_QUALCOMM=y +# CONFIG_QCA7000_SPI is not set +# CONFIG_QCOM_EMAC is not set +CONFIG_RMNET=m +CONFIG_NET_VENDOR_RDC=y +CONFIG_R6040=m +CONFIG_NET_VENDOR_REALTEK=y +CONFIG_8139CP=m +CONFIG_8139TOO=m +# CONFIG_8139TOO_PIO is not set +CONFIG_8139TOO_TUNE_TWISTER=y +CONFIG_8139TOO_8129=y +# CONFIG_8139_OLD_RX_RESET is not set +CONFIG_R8169=m +CONFIG_NET_VENDOR_RENESAS=y +CONFIG_NET_VENDOR_ROCKER=y +# CONFIG_ROCKER is not set +CONFIG_NET_VENDOR_SAMSUNG=y +# CONFIG_SXGBE_ETH is not set +# CONFIG_NET_VENDOR_SEEQ is not set +CONFIG_NET_VENDOR_SOLARFLARE=y +CONFIG_SFC=m +CONFIG_SFC_MTD=y +CONFIG_SFC_MCDI_MON=y +CONFIG_SFC_MCDI_LOGGING=y +CONFIG_SFC_FALCON=m +CONFIG_SFC_FALCON_MTD=y +CONFIG_NET_VENDOR_SILAN=y +CONFIG_SC92031=m +CONFIG_NET_VENDOR_SIS=y +# CONFIG_SIS900 is not set +CONFIG_SIS190=m +CONFIG_NET_VENDOR_SMSC=y +CONFIG_SMC91X=m +CONFIG_EPIC100=m +CONFIG_SMC911X=m +CONFIG_SMSC911X=m +CONFIG_SMSC9420=m +CONFIG_NET_VENDOR_SOCIONEXT=y +CONFIG_NET_VENDOR_STMICRO=y +CONFIG_STMMAC_ETH=m +# CONFIG_STMMAC_SELFTESTS is not set +CONFIG_STMMAC_PLATFORM=m +# CONFIG_DWMAC_DWC_QOS_ETH is not set +CONFIG_DWMAC_GENERIC=m +CONFIG_DWMAC_ROCKCHIP=m +CONFIG_DWMAC_SOCFPGA=m +CONFIG_DWMAC_SUNXI=m +CONFIG_DWMAC_SUN8I=m +CONFIG_DWMAC_IMX8=m +# CONFIG_DWMAC_INTEL_PLAT is not set +# CONFIG_DWMAC_LOONGSON is not set +# CONFIG_STMMAC_PCI is not set +CONFIG_NET_VENDOR_SUN=y +# CONFIG_HAPPYMEAL is not set +# CONFIG_SUNGEM is not set +CONFIG_CASSINI=m +CONFIG_NIU=m +CONFIG_NET_VENDOR_SYNOPSYS=y +# CONFIG_DWC_XLGMAC is not set +CONFIG_NET_VENDOR_TEHUTI=y +CONFIG_TEHUTI=m +CONFIG_NET_VENDOR_TI=y +CONFIG_TI_DAVINCI_EMAC=m +CONFIG_TI_DAVINCI_MDIO=m +CONFIG_TI_CPSW_PHY_SEL=y +CONFIG_TI_CPSW=m +CONFIG_TI_CPSW_SWITCHDEV=m +# CONFIG_TI_CPTS is not set +CONFIG_TLAN=m +CONFIG_NET_VENDOR_VIA=y +# CONFIG_VIA_RHINE is not set +CONFIG_VIA_VELOCITY=m +CONFIG_NET_VENDOR_WIZNET=y +# CONFIG_WIZNET_W5100 is not set +# CONFIG_WIZNET_W5300 is not set +CONFIG_NET_VENDOR_XILINX=y +CONFIG_XILINX_EMACLITE=m +CONFIG_XILINX_AXI_EMAC=m +CONFIG_XILINX_LL_TEMAC=m +CONFIG_FDDI=y +CONFIG_DEFXX=m +CONFIG_SKFP=m +# CONFIG_HIPPI is not set +CONFIG_PHYLINK=m +CONFIG_PHYLIB=y +CONFIG_SWPHY=y +# CONFIG_LED_TRIGGER_PHY is not set +CONFIG_FIXED_PHY=y +CONFIG_SFP=m + +# +# MII PHY device drivers +# +CONFIG_AMD_PHY=m +CONFIG_ADIN_PHY=m +CONFIG_AQUANTIA_PHY=m +CONFIG_AX88796B_PHY=m +CONFIG_BROADCOM_PHY=m +CONFIG_BCM54140_PHY=m +CONFIG_BCM7XXX_PHY=m +CONFIG_BCM84881_PHY=m +CONFIG_BCM87XX_PHY=m +CONFIG_BCM_NET_PHYLIB=m +CONFIG_CICADA_PHY=m +# CONFIG_CORTINA_PHY is not set +CONFIG_DAVICOM_PHY=m +CONFIG_ICPLUS_PHY=m +CONFIG_LXT_PHY=m +# CONFIG_INTEL_XWAY_PHY is not set +CONFIG_LSI_ET1011C_PHY=m +CONFIG_MARVELL_PHY=m +# CONFIG_MARVELL_10G_PHY is not set +CONFIG_MARVELL_88X2222_PHY=m +CONFIG_MAXLINEAR_GPHY=m +CONFIG_MEDIATEK_GE_PHY=m +CONFIG_MICREL_PHY=m +CONFIG_MICROCHIP_PHY=m +CONFIG_MICROCHIP_T1_PHY=m +CONFIG_MICROSEMI_PHY=m +CONFIG_MOTORCOMM_PHY=m +CONFIG_NATIONAL_PHY=m +CONFIG_NXP_C45_TJA11XX_PHY=m +CONFIG_NXP_TJA11XX_PHY=m +CONFIG_AT803X_PHY=m +CONFIG_QSEMI_PHY=m +CONFIG_REALTEK_PHY=m +CONFIG_RENESAS_PHY=m +CONFIG_ROCKCHIP_PHY=m +CONFIG_SMSC_PHY=m +CONFIG_STE10XP=m +CONFIG_TERANETICS_PHY=m +CONFIG_DP83822_PHY=m +CONFIG_DP83TC811_PHY=m +CONFIG_DP83848_PHY=m +CONFIG_DP83867_PHY=m +CONFIG_DP83869_PHY=m +CONFIG_VITESSE_PHY=m +# CONFIG_XILINX_GMII2RGMII is not set +# CONFIG_MICREL_KS8995MA is not set + +# +# MCTP Device Drivers +# +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +CONFIG_FWNODE_MDIO=y +CONFIG_OF_MDIO=y +CONFIG_MDIO_DEVRES=y +CONFIG_MDIO_SUN4I=y +# CONFIG_MDIO_BITBANG is not set +CONFIG_MDIO_BCM_UNIMAC=m +# CONFIG_MDIO_HISI_FEMAC is not set +CONFIG_MDIO_I2C=m +CONFIG_MDIO_MVUSB=m +# CONFIG_MDIO_MSCC_MIIM is not set +# CONFIG_MDIO_IPQ4019 is not set +CONFIG_MDIO_IPQ8064=m + +# +# MDIO Multiplexers +# +CONFIG_MDIO_BUS_MUX=m +# CONFIG_MDIO_BUS_MUX_GPIO is not set +# CONFIG_MDIO_BUS_MUX_MULTIPLEXER is not set +# CONFIG_MDIO_BUS_MUX_MMIOREG is not set + +# +# PCS device drivers +# +CONFIG_PCS_XPCS=m +CONFIG_PCS_LYNX=m +# end of PCS device drivers + +# CONFIG_PLIP is not set +CONFIG_PPP=m +CONFIG_PPP_BSDCOMP=m +CONFIG_PPP_DEFLATE=m +CONFIG_PPP_FILTER=y +CONFIG_PPP_MPPE=m +CONFIG_PPP_MULTILINK=y +CONFIG_PPPOATM=m +CONFIG_PPPOE=m +CONFIG_PPTP=m +CONFIG_PPPOL2TP=m +CONFIG_PPP_ASYNC=m +CONFIG_PPP_SYNC_TTY=m +CONFIG_SLIP=m +CONFIG_SLHC=m +CONFIG_SLIP_COMPRESSED=y +CONFIG_SLIP_SMART=y +CONFIG_SLIP_MODE_SLIP6=y + +# +# Host-side USB support is needed for USB Network Adapter support +# +CONFIG_USB_NET_DRIVERS=m +CONFIG_USB_CATC=m +CONFIG_USB_KAWETH=m +CONFIG_USB_PEGASUS=m +CONFIG_USB_RTL8150=m +CONFIG_USB_RTL8152=m +CONFIG_USB_LAN78XX=m +CONFIG_USB_USBNET=m +CONFIG_USB_NET_AX8817X=m +CONFIG_USB_NET_AX88179_178A=m +CONFIG_USB_NET_CDCETHER=m +CONFIG_USB_NET_CDC_EEM=m +CONFIG_USB_NET_CDC_NCM=m +CONFIG_USB_NET_HUAWEI_CDC_NCM=m +CONFIG_USB_NET_CDC_MBIM=m +CONFIG_USB_NET_DM9601=m +CONFIG_USB_NET_SR9700=m +CONFIG_USB_NET_SR9800=m +CONFIG_USB_NET_SMSC75XX=m +CONFIG_USB_NET_SMSC95XX=m +CONFIG_USB_NET_GL620A=m +CONFIG_USB_NET_NET1080=m +CONFIG_USB_NET_PLUSB=m +CONFIG_USB_NET_MCS7830=m +CONFIG_USB_NET_RNDIS_HOST=m +CONFIG_USB_NET_CDC_SUBSET_ENABLE=m +CONFIG_USB_NET_CDC_SUBSET=m +CONFIG_USB_ALI_M5632=y +CONFIG_USB_AN2720=y +CONFIG_USB_BELKIN=y +CONFIG_USB_ARMLINUX=y +CONFIG_USB_EPSON2888=y +CONFIG_USB_KC2190=y +CONFIG_USB_NET_ZAURUS=m +CONFIG_USB_NET_CX82310_ETH=m +CONFIG_USB_NET_KALMIA=m +CONFIG_USB_NET_QMI_WWAN=m +CONFIG_USB_HSO=m +CONFIG_USB_NET_INT51X1=m +CONFIG_USB_CDC_PHONET=m +CONFIG_USB_IPHETH=m +CONFIG_USB_SIERRA_NET=m +CONFIG_USB_VL600=m +CONFIG_USB_NET_CH9200=m +CONFIG_USB_NET_AQC111=m +CONFIG_USB_RTL8153_ECM=m +CONFIG_WLAN=y +CONFIG_WLAN_VENDOR_ADMTEK=y +CONFIG_ADM8211=m +CONFIG_ATH_COMMON=m +CONFIG_WLAN_VENDOR_ATH=y +# CONFIG_ATH_DEBUG is not set +CONFIG_ATH5K=m +# CONFIG_ATH5K_DEBUG is not set +# CONFIG_ATH5K_TRACER is not set +CONFIG_ATH5K_PCI=y +CONFIG_ATH9K_HW=m +CONFIG_ATH9K_COMMON=m +CONFIG_ATH9K_BTCOEX_SUPPORT=y +CONFIG_ATH9K=m +CONFIG_ATH9K_PCI=y +# CONFIG_ATH9K_AHB is not set +# CONFIG_ATH9K_DEBUGFS is not set +# CONFIG_ATH9K_DYNACK is not set +# CONFIG_ATH9K_WOW is not set +CONFIG_ATH9K_RFKILL=y +# CONFIG_ATH9K_CHANNEL_CONTEXT is not set +CONFIG_ATH9K_PCOEM=y +CONFIG_ATH9K_PCI_NO_EEPROM=m +CONFIG_ATH9K_HTC=m +# CONFIG_ATH9K_HTC_DEBUGFS is not set +# CONFIG_ATH9K_HWRNG is not set +CONFIG_CARL9170=m +CONFIG_CARL9170_LEDS=y +CONFIG_CARL9170_WPC=y +# CONFIG_CARL9170_HWRNG is not set +CONFIG_ATH6KL=m +CONFIG_ATH6KL_SDIO=m +CONFIG_ATH6KL_USB=m +# CONFIG_ATH6KL_DEBUG is not set +# CONFIG_ATH6KL_TRACING is not set +CONFIG_AR5523=m +CONFIG_WIL6210=m +CONFIG_WIL6210_ISR_COR=y +CONFIG_WIL6210_TRACING=y +CONFIG_WIL6210_DEBUGFS=y +CONFIG_ATH10K=m +CONFIG_ATH10K_CE=y +CONFIG_ATH10K_PCI=m +# CONFIG_ATH10K_AHB is not set +# CONFIG_ATH10K_SDIO is not set +CONFIG_ATH10K_USB=m +# CONFIG_ATH10K_DEBUG is not set +# CONFIG_ATH10K_DEBUGFS is not set +# CONFIG_ATH10K_TRACING is not set +# CONFIG_WCN36XX is not set +CONFIG_ATH11K=m +CONFIG_ATH11K_PCI=m +# CONFIG_ATH11K_DEBUG is not set +# CONFIG_ATH11K_TRACING is not set +CONFIG_WLAN_VENDOR_ATMEL=y +# CONFIG_ATMEL is not set +CONFIG_AT76C50X_USB=m +CONFIG_WLAN_VENDOR_BROADCOM=y +CONFIG_B43=m +CONFIG_B43_BCMA=y +CONFIG_B43_SSB=y +CONFIG_B43_BUSES_BCMA_AND_SSB=y +# CONFIG_B43_BUSES_BCMA is not set +# CONFIG_B43_BUSES_SSB is not set +CONFIG_B43_PCI_AUTOSELECT=y +CONFIG_B43_PCICORE_AUTOSELECT=y +CONFIG_B43_SDIO=y +CONFIG_B43_BCMA_PIO=y +CONFIG_B43_PIO=y +CONFIG_B43_PHY_G=y +CONFIG_B43_PHY_N=y +CONFIG_B43_PHY_LP=y +CONFIG_B43_PHY_HT=y +CONFIG_B43_LEDS=y +CONFIG_B43_HWRNG=y +# CONFIG_B43_DEBUG is not set +CONFIG_B43LEGACY=m +CONFIG_B43LEGACY_PCI_AUTOSELECT=y +CONFIG_B43LEGACY_PCICORE_AUTOSELECT=y +CONFIG_B43LEGACY_LEDS=y +CONFIG_B43LEGACY_HWRNG=y +CONFIG_B43LEGACY_DEBUG=y +CONFIG_B43LEGACY_DMA=y +CONFIG_B43LEGACY_PIO=y +CONFIG_B43LEGACY_DMA_AND_PIO_MODE=y +# CONFIG_B43LEGACY_DMA_MODE is not set +# CONFIG_B43LEGACY_PIO_MODE is not set +CONFIG_BRCMUTIL=m +CONFIG_BRCMSMAC=m +CONFIG_BRCMFMAC=m +CONFIG_BRCMFMAC_PROTO_BCDC=y +CONFIG_BRCMFMAC_PROTO_MSGBUF=y +CONFIG_BRCMFMAC_SDIO=y +CONFIG_BRCMFMAC_USB=y +CONFIG_BRCMFMAC_PCIE=y +# CONFIG_BRCM_TRACING is not set +# CONFIG_BRCMDBG is not set +CONFIG_WLAN_VENDOR_CISCO=y +CONFIG_WLAN_VENDOR_INTEL=y +# CONFIG_IPW2100 is not set +CONFIG_IPW2200=m +CONFIG_IPW2200_MONITOR=y +CONFIG_IPW2200_RADIOTAP=y +CONFIG_IPW2200_PROMISCUOUS=y +CONFIG_IPW2200_QOS=y +# CONFIG_IPW2200_DEBUG is not set +CONFIG_LIBIPW=m +# CONFIG_LIBIPW_DEBUG is not set +CONFIG_IWLEGACY=m +CONFIG_IWL4965=m +CONFIG_IWL3945=m + +# +# iwl3945 / iwl4965 Debugging Options +# +# CONFIG_IWLEGACY_DEBUG is not set +# end of iwl3945 / iwl4965 Debugging Options + +CONFIG_IWLWIFI=m +CONFIG_IWLWIFI_LEDS=y +CONFIG_IWLDVM=m +CONFIG_IWLMVM=m +CONFIG_IWLWIFI_OPMODE_MODULAR=y +# CONFIG_IWLWIFI_BCAST_FILTERING is not set + +# +# Debugging Options +# +# CONFIG_IWLWIFI_DEBUG is not set +# CONFIG_IWLWIFI_DEVICE_TRACING is not set +# end of Debugging Options + +CONFIG_WLAN_VENDOR_INTERSIL=y +CONFIG_HOSTAP=m +CONFIG_HOSTAP_FIRMWARE=y +# CONFIG_HOSTAP_FIRMWARE_NVRAM is not set +CONFIG_HOSTAP_PLX=m +CONFIG_HOSTAP_PCI=m +# CONFIG_HERMES is not set +CONFIG_P54_COMMON=m +CONFIG_P54_USB=m +CONFIG_P54_PCI=m +# CONFIG_P54_SPI is not set +CONFIG_P54_LEDS=y +CONFIG_WLAN_VENDOR_MARVELL=y +CONFIG_LIBERTAS=m +CONFIG_LIBERTAS_USB=m +CONFIG_LIBERTAS_SDIO=m +# CONFIG_LIBERTAS_SPI is not set +# CONFIG_LIBERTAS_DEBUG is not set +CONFIG_LIBERTAS_MESH=y +CONFIG_LIBERTAS_THINFIRM=m +# CONFIG_LIBERTAS_THINFIRM_DEBUG is not set +CONFIG_LIBERTAS_THINFIRM_USB=m +# CONFIG_MWIFIEX is not set +CONFIG_MWL8K=m +CONFIG_WLAN_VENDOR_MEDIATEK=y +CONFIG_MT7601U=m +# CONFIG_MT76x0U is not set +# CONFIG_MT76x0E is not set +# CONFIG_MT76x2E is not set +# CONFIG_MT76x2U is not set +# CONFIG_MT7603E is not set +# CONFIG_MT7615E is not set +# CONFIG_MT7663U is not set +# CONFIG_MT7663S is not set +# CONFIG_MT7915E is not set +# CONFIG_MT7921E is not set +# CONFIG_MT7921S is not set +CONFIG_WLAN_VENDOR_MICROCHIP=y +# CONFIG_WILC1000_SDIO is not set +# CONFIG_WILC1000_SPI is not set +CONFIG_WLAN_VENDOR_RALINK=y +CONFIG_RT2X00=m +CONFIG_RT2400PCI=m +CONFIG_RT2500PCI=m +CONFIG_RT61PCI=m +CONFIG_RT2800PCI=m +CONFIG_RT2800PCI_RT33XX=y +CONFIG_RT2800PCI_RT35XX=y +CONFIG_RT2800PCI_RT53XX=y +CONFIG_RT2800PCI_RT3290=y +CONFIG_RT2500USB=m +CONFIG_RT73USB=m +CONFIG_RT2800USB=m +CONFIG_RT2800USB_RT33XX=y +CONFIG_RT2800USB_RT35XX=y +CONFIG_RT2800USB_RT3573=y +CONFIG_RT2800USB_RT53XX=y +CONFIG_RT2800USB_RT55XX=y +# CONFIG_RT2800USB_UNKNOWN is not set +CONFIG_RT2800_LIB=m +CONFIG_RT2800_LIB_MMIO=m +CONFIG_RT2X00_LIB_MMIO=m +CONFIG_RT2X00_LIB_PCI=m +CONFIG_RT2X00_LIB_USB=m +CONFIG_RT2X00_LIB=m +CONFIG_RT2X00_LIB_FIRMWARE=y +CONFIG_RT2X00_LIB_CRYPTO=y +CONFIG_RT2X00_LIB_LEDS=y +# CONFIG_RT2X00_DEBUG is not set +CONFIG_WLAN_VENDOR_REALTEK=y +CONFIG_RTL8180=m +CONFIG_RTL8187=m +CONFIG_RTL8187_LEDS=y +CONFIG_RTL_CARDS=m +CONFIG_RTL8192CE=m +CONFIG_RTL8192SE=m +CONFIG_RTL8192DE=m +CONFIG_RTL8723AE=m +CONFIG_RTL8723BE=m +CONFIG_RTL8188EE=m +CONFIG_RTL8192EE=m +CONFIG_RTL8821AE=m +CONFIG_RTL8192CU=m +CONFIG_RTLWIFI=m +CONFIG_RTLWIFI_PCI=m +CONFIG_RTLWIFI_USB=m +# CONFIG_RTLWIFI_DEBUG is not set +CONFIG_RTL8192C_COMMON=m +CONFIG_RTL8723_COMMON=m +CONFIG_RTLBTCOEXIST=m +CONFIG_RTL8XXXU=m +# CONFIG_RTL8XXXU_UNTESTED is not set +# CONFIG_RTW88 is not set +CONFIG_RTW89=m +CONFIG_RTW89_CORE=m +CONFIG_RTW89_PCI=m +CONFIG_RTW89_8852AE=m +# CONFIG_RTW89_DEBUGMSG is not set +# CONFIG_RTW89_DEBUGFS is not set +CONFIG_WLAN_VENDOR_RSI=y +CONFIG_RSI_91X=m +CONFIG_RSI_DEBUGFS=y +# CONFIG_RSI_SDIO is not set +CONFIG_RSI_USB=m +CONFIG_RSI_COEX=y +CONFIG_WLAN_VENDOR_ST=y +# CONFIG_CW1200 is not set +CONFIG_WLAN_VENDOR_TI=y +CONFIG_WL1251=m +CONFIG_WL1251_SPI=m +CONFIG_WL1251_SDIO=m +CONFIG_WL12XX=m +CONFIG_WL18XX=m +CONFIG_WLCORE=m +CONFIG_WLCORE_SPI=m +CONFIG_WLCORE_SDIO=m +CONFIG_WILINK_PLATFORM_DATA=y +CONFIG_WLAN_VENDOR_ZYDAS=y +# CONFIG_USB_ZD1201 is not set +CONFIG_ZD1211RW=m +# CONFIG_ZD1211RW_DEBUG is not set +CONFIG_WLAN_VENDOR_QUANTENNA=y +# CONFIG_QTNFMAC_PCIE is not set +CONFIG_MAC80211_HWSIM=m +CONFIG_USB_NET_RNDIS_WLAN=m +CONFIG_VIRT_WIFI=m +# CONFIG_WAN is not set +CONFIG_IEEE802154_DRIVERS=m +CONFIG_IEEE802154_FAKELB=m +CONFIG_IEEE802154_AT86RF230=m +# CONFIG_IEEE802154_AT86RF230_DEBUGFS is not set +CONFIG_IEEE802154_MRF24J40=m +CONFIG_IEEE802154_CC2520=m +CONFIG_IEEE802154_ATUSB=m +CONFIG_IEEE802154_ADF7242=m +# CONFIG_IEEE802154_CA8210 is not set +# CONFIG_IEEE802154_MCR20A is not set +# CONFIG_IEEE802154_HWSIM is not set + +# +# Wireless WAN +# +CONFIG_WWAN=y +# CONFIG_WWAN_HWSIM is not set +CONFIG_MHI_WWAN_CTRL=m +CONFIG_MHI_WWAN_MBIM=m +# end of Wireless WAN + +CONFIG_XEN_NETDEV_FRONTEND=m +CONFIG_XEN_NETDEV_BACKEND=m +# CONFIG_VMXNET3 is not set +CONFIG_USB4_NET=m +CONFIG_NETDEVSIM=m +CONFIG_NET_FAILOVER=m +# CONFIG_ISDN is not set + +# +# Input device support +# +CONFIG_INPUT=y +CONFIG_INPUT_LEDS=y +CONFIG_INPUT_FF_MEMLESS=m +CONFIG_INPUT_SPARSEKMAP=m +CONFIG_INPUT_MATRIXKMAP=m + +# +# Userland interfaces +# +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_MOUSEDEV_PSAUX=y +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 +CONFIG_INPUT_JOYDEV=m +CONFIG_INPUT_EVDEV=m +# CONFIG_INPUT_EVBUG is not set +# CONFIG_INPUT_APMPOWER is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +# CONFIG_KEYBOARD_ADC is not set +CONFIG_KEYBOARD_ADP5588=m +# CONFIG_KEYBOARD_ADP5589 is not set +CONFIG_KEYBOARD_ATKBD=y +CONFIG_KEYBOARD_QT1050=m +# CONFIG_KEYBOARD_QT1070 is not set +CONFIG_KEYBOARD_QT2160=m +# CONFIG_KEYBOARD_DLINK_DIR685 is not set +# CONFIG_KEYBOARD_LKKBD is not set +CONFIG_KEYBOARD_GPIO=y +# CONFIG_KEYBOARD_GPIO_POLLED is not set +# CONFIG_KEYBOARD_TCA6416 is not set +# CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_MATRIX is not set +CONFIG_KEYBOARD_LM8323=m +# CONFIG_KEYBOARD_LM8333 is not set +CONFIG_KEYBOARD_MAX7359=m +# CONFIG_KEYBOARD_MCS is not set +# CONFIG_KEYBOARD_MPR121 is not set +CONFIG_KEYBOARD_SNVS_PWRKEY=m +CONFIG_KEYBOARD_IMX=m +# CONFIG_KEYBOARD_NEWTON is not set +CONFIG_KEYBOARD_TEGRA=m +CONFIG_KEYBOARD_OPENCORES=m +# CONFIG_KEYBOARD_SAMSUNG is not set +CONFIG_KEYBOARD_STOWAWAY=m +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_STMPE is not set +CONFIG_KEYBOARD_SUN4I_LRADC=m +CONFIG_KEYBOARD_IQS62X=m +CONFIG_KEYBOARD_OMAP4=m +# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set +CONFIG_KEYBOARD_TWL4030=m +# CONFIG_KEYBOARD_XTKBD is not set +CONFIG_KEYBOARD_CROS_EC=m +# CONFIG_KEYBOARD_CAP11XX is not set +# CONFIG_KEYBOARD_BCM is not set +# CONFIG_KEYBOARD_CYPRESS_SF is not set +CONFIG_INPUT_MOUSE=y +CONFIG_MOUSE_PS2=m +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_BYD=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y +CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +CONFIG_MOUSE_PS2_ELANTECH=y +CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y +CONFIG_MOUSE_PS2_SENTELIC=y +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MOUSE_PS2_FOCALTECH=y +CONFIG_MOUSE_PS2_SMBUS=y +# CONFIG_MOUSE_SERIAL is not set +CONFIG_MOUSE_APPLETOUCH=m +# CONFIG_MOUSE_BCM5974 is not set +# CONFIG_MOUSE_CYAPA is not set +CONFIG_MOUSE_ELAN_I2C=m +CONFIG_MOUSE_ELAN_I2C_I2C=y +# CONFIG_MOUSE_ELAN_I2C_SMBUS is not set +# CONFIG_MOUSE_VSXXXAA is not set +# CONFIG_MOUSE_GPIO is not set +CONFIG_MOUSE_SYNAPTICS_I2C=m +CONFIG_MOUSE_SYNAPTICS_USB=m +# CONFIG_INPUT_JOYSTICK is not set +CONFIG_INPUT_TABLET=y +CONFIG_TABLET_USB_ACECAD=m +CONFIG_TABLET_USB_AIPTEK=m +CONFIG_TABLET_USB_HANWANG=m +CONFIG_TABLET_USB_KBTAB=m +CONFIG_TABLET_USB_PEGASUS=m +CONFIG_TABLET_SERIAL_WACOM4=m +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_TOUCHSCREEN_ADS7846=m +CONFIG_TOUCHSCREEN_AD7877=m +CONFIG_TOUCHSCREEN_AD7879=m +CONFIG_TOUCHSCREEN_AD7879_I2C=m +# CONFIG_TOUCHSCREEN_AD7879_SPI is not set +CONFIG_TOUCHSCREEN_ADC=m +# CONFIG_TOUCHSCREEN_AR1021_I2C is not set +CONFIG_TOUCHSCREEN_ATMEL_MXT=m +# CONFIG_TOUCHSCREEN_ATMEL_MXT_T37 is not set +# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set +# CONFIG_TOUCHSCREEN_BU21013 is not set +# CONFIG_TOUCHSCREEN_BU21029 is not set +# CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 is not set +# CONFIG_TOUCHSCREEN_CY8CTMA140 is not set +# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set +# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set +# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set +# CONFIG_TOUCHSCREEN_DA9052 is not set +CONFIG_TOUCHSCREEN_DYNAPRO=m +CONFIG_TOUCHSCREEN_HAMPSHIRE=m +# CONFIG_TOUCHSCREEN_EETI is not set +# CONFIG_TOUCHSCREEN_EGALAX is not set +# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set +CONFIG_TOUCHSCREEN_EXC3000=m +CONFIG_TOUCHSCREEN_FUJITSU=m +CONFIG_TOUCHSCREEN_GOODIX=m +CONFIG_TOUCHSCREEN_HIDEEP=m +CONFIG_TOUCHSCREEN_HYCON_HY46XX=m +# CONFIG_TOUCHSCREEN_ILI210X is not set +CONFIG_TOUCHSCREEN_ILITEK=m +CONFIG_TOUCHSCREEN_S6SY761=m +CONFIG_TOUCHSCREEN_GUNZE=m +# CONFIG_TOUCHSCREEN_EKTF2127 is not set +# CONFIG_TOUCHSCREEN_ELAN is not set +CONFIG_TOUCHSCREEN_ELO=m +CONFIG_TOUCHSCREEN_WACOM_W8001=m +# CONFIG_TOUCHSCREEN_WACOM_I2C is not set +# CONFIG_TOUCHSCREEN_MAX11801 is not set +CONFIG_TOUCHSCREEN_MCS5000=m +# CONFIG_TOUCHSCREEN_MMS114 is not set +# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set +# CONFIG_TOUCHSCREEN_MSG2638 is not set +CONFIG_TOUCHSCREEN_MTOUCH=m +# CONFIG_TOUCHSCREEN_IMX6UL_TSC is not set +CONFIG_TOUCHSCREEN_INEXIO=m +CONFIG_TOUCHSCREEN_MK712=m +CONFIG_TOUCHSCREEN_PENMOUNT=m +# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set +CONFIG_TOUCHSCREEN_RASPBERRYPI_FW=m +CONFIG_TOUCHSCREEN_TOUCHRIGHT=m +CONFIG_TOUCHSCREEN_TOUCHWIN=m +CONFIG_TOUCHSCREEN_TI_AM335X_TSC=m +# CONFIG_TOUCHSCREEN_PIXCIR is not set +# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set +CONFIG_TOUCHSCREEN_WM97XX=m +CONFIG_TOUCHSCREEN_WM9705=y +CONFIG_TOUCHSCREEN_WM9712=y +CONFIG_TOUCHSCREEN_WM9713=y +CONFIG_TOUCHSCREEN_USB_COMPOSITE=m +CONFIG_TOUCHSCREEN_MC13783=m +CONFIG_TOUCHSCREEN_USB_EGALAX=y +CONFIG_TOUCHSCREEN_USB_PANJIT=y +CONFIG_TOUCHSCREEN_USB_3M=y +CONFIG_TOUCHSCREEN_USB_ITM=y +CONFIG_TOUCHSCREEN_USB_ETURBO=y +CONFIG_TOUCHSCREEN_USB_GUNZE=y +CONFIG_TOUCHSCREEN_USB_DMC_TSC10=y +CONFIG_TOUCHSCREEN_USB_IRTOUCH=y +CONFIG_TOUCHSCREEN_USB_IDEALTEK=y +CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH=y +CONFIG_TOUCHSCREEN_USB_GOTOP=y +CONFIG_TOUCHSCREEN_USB_JASTEC=y +CONFIG_TOUCHSCREEN_USB_ELO=y +CONFIG_TOUCHSCREEN_USB_E2I=y +CONFIG_TOUCHSCREEN_USB_ZYTRONIC=y +CONFIG_TOUCHSCREEN_USB_ETT_TC45USB=y +CONFIG_TOUCHSCREEN_USB_NEXIO=y +CONFIG_TOUCHSCREEN_USB_EASYTOUCH=y +CONFIG_TOUCHSCREEN_TOUCHIT213=m +# CONFIG_TOUCHSCREEN_TS4800 is not set +# CONFIG_TOUCHSCREEN_TSC_SERIO is not set +CONFIG_TOUCHSCREEN_TSC200X_CORE=m +# CONFIG_TOUCHSCREEN_TSC2004 is not set +CONFIG_TOUCHSCREEN_TSC2005=m +CONFIG_TOUCHSCREEN_TSC2007=m +# CONFIG_TOUCHSCREEN_TSC2007_IIO is not set +# CONFIG_TOUCHSCREEN_RM_TS is not set +# CONFIG_TOUCHSCREEN_SILEAD is not set +# CONFIG_TOUCHSCREEN_SIS_I2C is not set +# CONFIG_TOUCHSCREEN_ST1232 is not set +# CONFIG_TOUCHSCREEN_STMFTS is not set +CONFIG_TOUCHSCREEN_STMPE=m +CONFIG_TOUCHSCREEN_SUN4I=m +CONFIG_TOUCHSCREEN_SUR40=m +# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set +# CONFIG_TOUCHSCREEN_SX8654 is not set +CONFIG_TOUCHSCREEN_TPS6507X=m +# CONFIG_TOUCHSCREEN_ZET6223 is not set +# CONFIG_TOUCHSCREEN_ZFORCE is not set +# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set +# CONFIG_TOUCHSCREEN_IQS5XX is not set +CONFIG_TOUCHSCREEN_ZINITIX=m +CONFIG_INPUT_MISC=y +# CONFIG_INPUT_AD714X is not set +# CONFIG_INPUT_ATMEL_CAPTOUCH is not set +# CONFIG_INPUT_BMA150 is not set +# CONFIG_INPUT_E3X0_BUTTON is not set +# CONFIG_INPUT_MC13783_PWRBUTTON is not set +CONFIG_INPUT_MMA8450=m +# CONFIG_INPUT_GPIO_BEEPER is not set +# CONFIG_INPUT_GPIO_DECODER is not set +# CONFIG_INPUT_GPIO_VIBRA is not set +CONFIG_INPUT_ATI_REMOTE2=m +CONFIG_INPUT_KEYSPAN_REMOTE=m +# CONFIG_INPUT_KXTJ9 is not set +CONFIG_INPUT_POWERMATE=m +CONFIG_INPUT_YEALINK=m +CONFIG_INPUT_CM109=m +# CONFIG_INPUT_REGULATOR_HAPTIC is not set +CONFIG_INPUT_AXP20X_PEK=m +CONFIG_INPUT_TWL4030_PWRBUTTON=m +CONFIG_INPUT_TWL4030_VIBRA=m +CONFIG_INPUT_TWL6040_VIBRA=m +CONFIG_INPUT_UINPUT=m +# CONFIG_INPUT_PALMAS_PWRBUTTON is not set +# CONFIG_INPUT_PCF8574 is not set +# CONFIG_INPUT_PWM_BEEPER is not set +# CONFIG_INPUT_PWM_VIBRA is not set +CONFIG_INPUT_RK805_PWRKEY=m +# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set +# CONFIG_INPUT_DA7280_HAPTICS is not set +# CONFIG_INPUT_DA9052_ONKEY is not set +# CONFIG_INPUT_ADXL34X is not set +# CONFIG_INPUT_IMS_PCU is not set +# CONFIG_INPUT_IQS269A is not set +# CONFIG_INPUT_IQS626A is not set +# CONFIG_INPUT_CMA3000 is not set +CONFIG_INPUT_XEN_KBDDEV_FRONTEND=y +# CONFIG_INPUT_DRV260X_HAPTICS is not set +# CONFIG_INPUT_DRV2665_HAPTICS is not set +# CONFIG_INPUT_DRV2667_HAPTICS is not set +CONFIG_RMI4_CORE=m +# CONFIG_RMI4_I2C is not set +# CONFIG_RMI4_SPI is not set +# CONFIG_RMI4_SMB is not set +CONFIG_RMI4_F03=y +CONFIG_RMI4_F03_SERIO=m +CONFIG_RMI4_2D_SENSOR=y +CONFIG_RMI4_F11=y +CONFIG_RMI4_F12=y +CONFIG_RMI4_F30=y +# CONFIG_RMI4_F34 is not set +CONFIG_RMI4_F3A=y +# CONFIG_RMI4_F54 is not set +# CONFIG_RMI4_F55 is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_SERIO_SERPORT=y +# CONFIG_SERIO_PARKBD is not set +CONFIG_SERIO_AMBAKMI=m +# CONFIG_SERIO_PCIPS2 is not set +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +CONFIG_SERIO_ALTERA_PS2=m +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_SERIO_APBPS2 is not set +CONFIG_SERIO_SUN4I_PS2=m +CONFIG_SERIO_GPIO_PS2=m +# CONFIG_USERIO is not set +# CONFIG_GAMEPORT is not set +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +CONFIG_VT_HW_CONSOLE_BINDING=y +CONFIG_UNIX98_PTYS=y +# CONFIG_LEGACY_PTYS is not set +CONFIG_LDISC_AUTOLOAD=y + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y +CONFIG_SERIAL_8250_16550A_VARIANTS=y +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_DMA=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_EXAR=y +CONFIG_SERIAL_8250_NR_UARTS=4 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +# CONFIG_SERIAL_8250_EXTENDED is not set +# CONFIG_SERIAL_8250_ASPEED_VUART is not set +CONFIG_SERIAL_8250_DWLIB=y +CONFIG_SERIAL_8250_FSL=y +CONFIG_SERIAL_8250_DW=y +# CONFIG_SERIAL_8250_RT288X is not set +# CONFIG_SERIAL_8250_OMAP is not set +CONFIG_SERIAL_8250_TEGRA=y +CONFIG_SERIAL_OF_PLATFORM=y + +# +# Non-8250 serial port support +# +CONFIG_SERIAL_AMBA_PL010=y +CONFIG_SERIAL_AMBA_PL010_CONSOLE=y +CONFIG_SERIAL_AMBA_PL011=y +CONFIG_SERIAL_AMBA_PL011_CONSOLE=y +# CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST is not set +CONFIG_SERIAL_SAMSUNG=y +CONFIG_SERIAL_SAMSUNG_UARTS_4=y +CONFIG_SERIAL_SAMSUNG_UARTS=4 +CONFIG_SERIAL_SAMSUNG_CONSOLE=y +CONFIG_SERIAL_TEGRA=y +# CONFIG_SERIAL_MAX3100 is not set +# CONFIG_SERIAL_MAX310X is not set +CONFIG_SERIAL_IMX=y +CONFIG_SERIAL_IMX_CONSOLE=y +CONFIG_SERIAL_IMX_EARLYCON=y +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +CONFIG_SERIAL_VT8500=y +CONFIG_SERIAL_VT8500_CONSOLE=y +CONFIG_SERIAL_OMAP=y +CONFIG_SERIAL_OMAP_CONSOLE=y +# CONFIG_SERIAL_SIFIVE is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_BCM63XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_XILINX_PS_UART is not set +CONFIG_SERIAL_ARC=y +CONFIG_SERIAL_ARC_CONSOLE=y +CONFIG_SERIAL_ARC_NR_PORTS=1 +CONFIG_SERIAL_RP2=m +CONFIG_SERIAL_RP2_NR_UARTS=32 +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_FSL_LINFLEXUART is not set +# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set +# CONFIG_SERIAL_ST_ASC is not set +# CONFIG_SERIAL_SPRD is not set +# CONFIG_SERIAL_MVEBU_UART is not set +# end of Serial drivers + +CONFIG_SERIAL_MCTRL_GPIO=y +# CONFIG_SERIAL_NONSTANDARD is not set +CONFIG_N_GSM=m +CONFIG_NOZOMI=m +CONFIG_NULL_TTY=m +CONFIG_HVC_DRIVER=y +CONFIG_HVC_IRQ=y +CONFIG_HVC_XEN=y +CONFIG_HVC_XEN_FRONTEND=y +# CONFIG_HVC_DCC is not set +# CONFIG_SERIAL_DEV_BUS is not set +CONFIG_TTY_PRINTK=m +CONFIG_TTY_PRINTK_LEVEL=6 +# CONFIG_PRINTER is not set +# CONFIG_PPDEV is not set +CONFIG_VIRTIO_CONSOLE=m +# CONFIG_IPMI_HANDLER is not set +CONFIG_IPMB_DEVICE_INTERFACE=m +CONFIG_HW_RANDOM=m +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +CONFIG_HW_RANDOM_BA431=m +CONFIG_HW_RANDOM_BCM2835=m +CONFIG_HW_RANDOM_IPROC_RNG200=m +CONFIG_HW_RANDOM_OMAP=m +CONFIG_HW_RANDOM_OMAP3_ROM=m +CONFIG_HW_RANDOM_VIRTIO=m +CONFIG_HW_RANDOM_EXYNOS=m +CONFIG_HW_RANDOM_CCTRNG=m +CONFIG_HW_RANDOM_XIPHERA=m +CONFIG_HW_RANDOM_ARM_SMCCC_TRNG=m +# CONFIG_APPLICOM is not set +CONFIG_DEVMEM=y +CONFIG_DEVPORT=y +CONFIG_TCG_TPM=y +# CONFIG_TCG_TIS is not set +# CONFIG_TCG_TIS_SPI is not set +CONFIG_TCG_TIS_I2C_CR50=m +# CONFIG_TCG_TIS_I2C_ATMEL is not set +# CONFIG_TCG_TIS_I2C_INFINEON is not set +# CONFIG_TCG_TIS_I2C_NUVOTON is not set +# CONFIG_TCG_XEN is not set +# CONFIG_TCG_VTPM_PROXY is not set +# CONFIG_TCG_TIS_ST33ZP24_I2C is not set +# CONFIG_TCG_TIS_ST33ZP24_SPI is not set +CONFIG_XILLYBUS_CLASS=m +# CONFIG_XILLYBUS is not set +CONFIG_XILLYUSB=m +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set +# end of Character devices + +# +# I2C support +# +CONFIG_I2C=y +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_COMPAT=y +CONFIG_I2C_CHARDEV=m +CONFIG_I2C_MUX=y + +# +# Multiplexer I2C Chip support +# +CONFIG_I2C_ARB_GPIO_CHALLENGE=m +# CONFIG_I2C_MUX_GPIO is not set +# CONFIG_I2C_MUX_GPMUX is not set +# CONFIG_I2C_MUX_LTC4306 is not set +# CONFIG_I2C_MUX_PCA9541 is not set +CONFIG_I2C_MUX_PCA954x=m +# CONFIG_I2C_MUX_PINCTRL is not set +# CONFIG_I2C_MUX_REG is not set +# CONFIG_I2C_DEMUX_PINCTRL is not set +# CONFIG_I2C_MUX_MLXCPLD is not set +# end of Multiplexer I2C Chip support + +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_SMBUS=m +CONFIG_I2C_ALGOBIT=y +CONFIG_I2C_ALGOPCA=m + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_I801 is not set +CONFIG_I2C_ISCH=m +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_NVIDIA_GPU is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +CONFIG_I2C_ALTERA=m +CONFIG_I2C_BCM2835=m +CONFIG_I2C_BRCMSTB=m +# CONFIG_I2C_CBUS_GPIO is not set +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +CONFIG_I2C_EXYNOS5=m +CONFIG_I2C_GPIO=y +# CONFIG_I2C_GPIO_FAULT_INJECTOR is not set +CONFIG_I2C_IMX=m +# CONFIG_I2C_IMX_LPI2C is not set +CONFIG_I2C_MV64XXX=m +# CONFIG_I2C_NOMADIK is not set +CONFIG_I2C_OCORES=m +CONFIG_I2C_OMAP=y +CONFIG_I2C_PCA_PLATFORM=m +# CONFIG_I2C_PXA is not set +CONFIG_I2C_RK3X=m +CONFIG_HAVE_S3C2410_I2C=y +CONFIG_I2C_S3C2410=y +CONFIG_I2C_SIMTEC=m +CONFIG_I2C_SUN6I_P2WI=m +CONFIG_I2C_TEGRA=y +CONFIG_I2C_VERSATILE=m +# CONFIG_I2C_WMT is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +CONFIG_I2C_DIOLAN_U2C=m +CONFIG_I2C_CP2615=m +# CONFIG_I2C_PARPORT is not set +CONFIG_I2C_ROBOTFUZZ_OSIF=m +CONFIG_I2C_TAOS_EVM=m +CONFIG_I2C_TINY_USB=m +CONFIG_I2C_VIPERBOARD=m + +# +# Other I2C/SMBus bus drivers +# +CONFIG_I2C_CROS_EC_TUNNEL=m +CONFIG_I2C_VIRTIO=m +# end of I2C Hardware Bus support + +# CONFIG_I2C_STUB is not set +CONFIG_I2C_SLAVE=y +CONFIG_I2C_SLAVE_EEPROM=m +# CONFIG_I2C_SLAVE_TESTUNIT is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# end of I2C support + +# CONFIG_I3C is not set +CONFIG_SPI=y +# CONFIG_SPI_DEBUG is not set +CONFIG_SPI_MASTER=y +CONFIG_SPI_MEM=y + +# +# SPI Master Controller Drivers +# +# CONFIG_SPI_ALTERA is not set +# CONFIG_SPI_ARMADA_3700 is not set +# CONFIG_SPI_AXI_SPI_ENGINE is not set +CONFIG_SPI_BCM2835=m +CONFIG_SPI_BCM2835AUX=m +# CONFIG_SPI_BCM_QSPI is not set +CONFIG_SPI_BITBANG=y +CONFIG_SPI_BUTTERFLY=m +# CONFIG_SPI_CADENCE is not set +# CONFIG_SPI_CADENCE_QUADSPI is not set +# CONFIG_SPI_CADENCE_XSPI is not set +# CONFIG_SPI_DESIGNWARE is not set +# CONFIG_SPI_FSL_LPSPI is not set +# CONFIG_SPI_FSL_QUADSPI is not set +# CONFIG_SPI_NXP_FLEXSPI is not set +CONFIG_SPI_GPIO=y +CONFIG_SPI_IMX=m +CONFIG_SPI_LM70_LLP=m +# CONFIG_SPI_FSL_SPI is not set +# CONFIG_SPI_OC_TINY is not set +CONFIG_SPI_OMAP24XX=m +CONFIG_SPI_TI_QSPI=m +CONFIG_SPI_ORION=m +CONFIG_SPI_PL022=m +# CONFIG_SPI_PXA2XX is not set +CONFIG_SPI_ROCKCHIP=m +CONFIG_SPI_ROCKCHIP_SFC=m +# CONFIG_SPI_S3C64XX is not set +# CONFIG_SPI_SC18IS602 is not set +# CONFIG_SPI_SIFIVE is not set +CONFIG_SPI_SUN4I=m +CONFIG_SPI_SUN6I=m +CONFIG_SPI_MXIC=m +# CONFIG_SPI_TEGRA210_QUAD is not set +CONFIG_SPI_TEGRA114=m +CONFIG_SPI_TEGRA20_SFLASH=m +# CONFIG_SPI_TEGRA20_SLINK is not set +# CONFIG_SPI_XCOMM is not set +# CONFIG_SPI_XILINX is not set +# CONFIG_SPI_ZYNQMP_GQSPI is not set +# CONFIG_SPI_AMD is not set + +# +# SPI Multiplexer support +# +CONFIG_SPI_MUX=m + +# +# SPI Protocol Masters +# +CONFIG_SPI_SPIDEV=y +# CONFIG_SPI_LOOPBACK_TEST is not set +# CONFIG_SPI_TLE62X0 is not set +# CONFIG_SPI_SLAVE is not set +CONFIG_SPI_DYNAMIC=y +# CONFIG_SPMI is not set +CONFIG_HSI=m +CONFIG_HSI_BOARDINFO=y + +# +# HSI controllers +# +CONFIG_OMAP_SSI=m + +# +# HSI clients +# +CONFIG_NOKIA_MODEM=m +CONFIG_CMT_SPEECH=m +CONFIG_SSI_PROTOCOL=m +# CONFIG_HSI_CHAR is not set +CONFIG_PPS=y +# CONFIG_PPS_DEBUG is not set + +# +# PPS clients support +# +# CONFIG_PPS_CLIENT_KTIMER is not set +CONFIG_PPS_CLIENT_LDISC=m +CONFIG_PPS_CLIENT_PARPORT=m +# CONFIG_PPS_CLIENT_GPIO is not set + +# +# PPS generators support +# + +# +# PTP clock support +# +CONFIG_PTP_1588_CLOCK=y +CONFIG_PTP_1588_CLOCK_OPTIONAL=y +CONFIG_PTP_1588_CLOCK_QORIQ=m + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +CONFIG_PTP_1588_CLOCK_KVM=m +CONFIG_PTP_1588_CLOCK_IDT82P33=m +CONFIG_PTP_1588_CLOCK_IDTCM=m +CONFIG_PTP_1588_CLOCK_OCP=m +# end of PTP clock support + +CONFIG_PINCTRL=y +CONFIG_GENERIC_PINCTRL_GROUPS=y +CONFIG_PINMUX=y +CONFIG_GENERIC_PINMUX_FUNCTIONS=y +CONFIG_PINCONF=y +CONFIG_GENERIC_PINCONF=y +# CONFIG_DEBUG_PINCTRL is not set +CONFIG_PINCTRL_AS3722=y +CONFIG_PINCTRL_AXP209=m +CONFIG_PINCTRL_MCP23S08_I2C=m +CONFIG_PINCTRL_MCP23S08_SPI=m +CONFIG_PINCTRL_MCP23S08=m +CONFIG_PINCTRL_ROCKCHIP=y +CONFIG_PINCTRL_SINGLE=y +# CONFIG_PINCTRL_SX150X is not set +# CONFIG_PINCTRL_STMFX is not set +CONFIG_PINCTRL_PALMAS=y +CONFIG_PINCTRL_RK805=m +# CONFIG_PINCTRL_OCELOT is not set +# CONFIG_PINCTRL_MICROCHIP_SGPIO is not set +CONFIG_PINCTRL_BCM2835=y +CONFIG_PINCTRL_IMX=y +CONFIG_PINCTRL_IMX51=y +CONFIG_PINCTRL_IMX53=y +CONFIG_PINCTRL_IMX6Q=y +CONFIG_PINCTRL_IMX8MM=y +CONFIG_PINCTRL_IMX8MN=y +CONFIG_PINCTRL_IMX8MP=y +CONFIG_PINCTRL_IMX8MQ=y +# CONFIG_PINCTRL_IMX8ULP is not set +CONFIG_PINCTRL_MVEBU=y +CONFIG_PINCTRL_ARMADA_370=y +CONFIG_PINCTRL_ARMADA_375=y +CONFIG_PINCTRL_ARMADA_38X=y +CONFIG_PINCTRL_ARMADA_39X=y +CONFIG_PINCTRL_ARMADA_XP=y + +# +# Renesas pinctrl drivers +# +# end of Renesas pinctrl drivers + +CONFIG_PINCTRL_SAMSUNG=y +CONFIG_PINCTRL_EXYNOS=y +CONFIG_PINCTRL_EXYNOS_ARM=y +CONFIG_PINCTRL_SUNXI=y +CONFIG_PINCTRL_SUN4I_A10=y +CONFIG_PINCTRL_SUN5I=y +CONFIG_PINCTRL_SUN6I_A31=y +CONFIG_PINCTRL_SUN6I_A31_R=y +CONFIG_PINCTRL_SUN8I_A23=y +CONFIG_PINCTRL_SUN8I_A33=y +CONFIG_PINCTRL_SUN8I_A83T=y +CONFIG_PINCTRL_SUN8I_A83T_R=y +CONFIG_PINCTRL_SUN8I_A23_R=y +CONFIG_PINCTRL_SUN8I_H3=y +CONFIG_PINCTRL_SUN8I_H3_R=y +CONFIG_PINCTRL_SUN8I_V3S=y +CONFIG_PINCTRL_SUN9I_A80=y +CONFIG_PINCTRL_SUN9I_A80_R=y +# CONFIG_PINCTRL_SUN50I_A64 is not set +# CONFIG_PINCTRL_SUN50I_A64_R is not set +# CONFIG_PINCTRL_SUN50I_A100 is not set +# CONFIG_PINCTRL_SUN50I_A100_R is not set +# CONFIG_PINCTRL_SUN50I_H5 is not set +# CONFIG_PINCTRL_SUN50I_H6 is not set +# CONFIG_PINCTRL_SUN50I_H6_R is not set +# CONFIG_PINCTRL_SUN50I_H616 is not set +# CONFIG_PINCTRL_SUN50I_H616_R is not set +CONFIG_PINCTRL_TEGRA=y +CONFIG_PINCTRL_TEGRA124=y +CONFIG_PINCTRL_TEGRA_XUSB=y +CONFIG_PINCTRL_TI_IODELAY=y +CONFIG_PINCTRL_WMT=y +CONFIG_PINCTRL_WM8850=y +CONFIG_PINCTRL_MADERA=m +CONFIG_ARCH_HAVE_CUSTOM_GPIO_H=y +CONFIG_GPIOLIB=y +CONFIG_GPIOLIB_FASTPATH_LIMIT=512 +CONFIG_OF_GPIO=y +CONFIG_GPIOLIB_IRQCHIP=y +# CONFIG_DEBUG_GPIO is not set +CONFIG_GPIO_SYSFS=y +CONFIG_GPIO_CDEV=y +CONFIG_GPIO_CDEV_V1=y +CONFIG_GPIO_GENERIC=y + +# +# Memory mapped GPIO drivers +# +# CONFIG_GPIO_74XX_MMIO is not set +# CONFIG_GPIO_ALTERA is not set +CONFIG_GPIO_RASPBERRYPI_EXP=m +CONFIG_GPIO_CADENCE=m +# CONFIG_GPIO_DWAPB is not set +# CONFIG_GPIO_EXAR is not set +# CONFIG_GPIO_FTGPIO010 is not set +CONFIG_GPIO_GENERIC_PLATFORM=y +# CONFIG_GPIO_GRGPIO is not set +# CONFIG_GPIO_HLWD is not set +CONFIG_GPIO_LOGICVC=m +CONFIG_GPIO_MB86S7X=m +# CONFIG_GPIO_MPC8XXX is not set +CONFIG_GPIO_MVEBU=y +CONFIG_GPIO_MXC=y +CONFIG_GPIO_OMAP=y +CONFIG_GPIO_PL061=y +CONFIG_GPIO_ROCKCHIP=m +# CONFIG_GPIO_SAMA5D2_PIOBU is not set +CONFIG_GPIO_SIFIVE=y +# CONFIG_GPIO_SYSCON is not set +CONFIG_GPIO_TEGRA=y +# CONFIG_GPIO_TS4800 is not set +CONFIG_GPIO_XILINX=m +# CONFIG_GPIO_ZEVIO is not set +# CONFIG_GPIO_AMD_FCH is not set +CONFIG_GPIO_MSC313=y +# end of Memory mapped GPIO drivers + +# +# I2C GPIO expanders +# +# CONFIG_GPIO_ADP5588 is not set +# CONFIG_GPIO_ADNP is not set +# CONFIG_GPIO_GW_PLD is not set +# CONFIG_GPIO_MAX7300 is not set +# CONFIG_GPIO_MAX732X is not set +CONFIG_GPIO_PCA953X=m +CONFIG_GPIO_PCA953X_IRQ=y +CONFIG_GPIO_PCA9570=m +CONFIG_GPIO_PCF857X=m +# CONFIG_GPIO_TPIC2810 is not set +# CONFIG_GPIO_TS4900 is not set +# end of I2C GPIO expanders + +# +# MFD GPIO expanders +# +CONFIG_GPIO_BD70528=m +CONFIG_GPIO_BD71815=m +CONFIG_GPIO_BD71828=m +CONFIG_GPIO_BD9571MWV=m +CONFIG_GPIO_DA9052=m +# CONFIG_HTC_EGPIO is not set +CONFIG_GPIO_MADERA=m +CONFIG_GPIO_PALMAS=y +# CONFIG_GPIO_STMPE is not set +CONFIG_GPIO_TWL4030=y +CONFIG_GPIO_TWL6040=y +# end of MFD GPIO expanders + +# +# PCI GPIO expanders +# +# CONFIG_GPIO_PCI_IDIO_16 is not set +# CONFIG_GPIO_PCIE_IDIO_24 is not set +# CONFIG_GPIO_RDC321X is not set +# end of PCI GPIO expanders + +# +# SPI GPIO expanders +# +# CONFIG_GPIO_74X164 is not set +CONFIG_GPIO_MAX3191X=m +# CONFIG_GPIO_MAX7301 is not set +# CONFIG_GPIO_MC33880 is not set +# CONFIG_GPIO_PISOSR is not set +# CONFIG_GPIO_XRA1403 is not set +# end of SPI GPIO expanders + +# +# USB GPIO expanders +# +CONFIG_GPIO_VIPERBOARD=m +# end of USB GPIO expanders + +# +# Virtual GPIO drivers +# +CONFIG_GPIO_AGGREGATOR=m +# CONFIG_GPIO_MOCKUP is not set +CONFIG_GPIO_VIRTIO=m +# end of Virtual GPIO drivers + +CONFIG_W1=m +CONFIG_W1_CON=y + +# +# 1-wire Bus Masters +# +# CONFIG_W1_MASTER_MATROX is not set +CONFIG_W1_MASTER_DS2490=m +CONFIG_W1_MASTER_DS2482=m +# CONFIG_W1_MASTER_MXC is not set +# CONFIG_W1_MASTER_DS1WM is not set +CONFIG_W1_MASTER_GPIO=m +CONFIG_HDQ_MASTER_OMAP=m +# CONFIG_W1_MASTER_SGI is not set +# end of 1-wire Bus Masters + +# +# 1-wire Slaves +# +CONFIG_W1_SLAVE_THERM=m +CONFIG_W1_SLAVE_SMEM=m +# CONFIG_W1_SLAVE_DS2405 is not set +# CONFIG_W1_SLAVE_DS2408 is not set +# CONFIG_W1_SLAVE_DS2413 is not set +# CONFIG_W1_SLAVE_DS2406 is not set +# CONFIG_W1_SLAVE_DS2423 is not set +CONFIG_W1_SLAVE_DS2805=m +CONFIG_W1_SLAVE_DS2430=m +CONFIG_W1_SLAVE_DS2431=m +CONFIG_W1_SLAVE_DS2433=m +# CONFIG_W1_SLAVE_DS2433_CRC is not set +# CONFIG_W1_SLAVE_DS2438 is not set +# CONFIG_W1_SLAVE_DS250X is not set +# CONFIG_W1_SLAVE_DS2780 is not set +# CONFIG_W1_SLAVE_DS2781 is not set +# CONFIG_W1_SLAVE_DS28E04 is not set +CONFIG_W1_SLAVE_DS28E17=m +# end of 1-wire Slaves + +CONFIG_POWER_RESET=y +CONFIG_POWER_RESET_AS3722=y +# CONFIG_POWER_RESET_BRCMKONA is not set +# CONFIG_POWER_RESET_BRCMSTB is not set +CONFIG_POWER_RESET_GPIO=y +CONFIG_POWER_RESET_GPIO_RESTART=y +# CONFIG_POWER_RESET_LINKSTATION is not set +# CONFIG_POWER_RESET_LTC2952 is not set +# CONFIG_POWER_RESET_QNAP is not set +CONFIG_POWER_RESET_REGULATOR=y +CONFIG_POWER_RESET_RESTART=y +# CONFIG_POWER_RESET_VERSATILE is not set +CONFIG_POWER_RESET_VEXPRESS=y +CONFIG_POWER_RESET_SYSCON=y +CONFIG_POWER_RESET_SYSCON_POWEROFF=y +CONFIG_REBOOT_MODE=m +# CONFIG_SYSCON_REBOOT_MODE is not set +CONFIG_NVMEM_REBOOT_MODE=m +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_POWER_SUPPLY_HWMON=y +# CONFIG_PDA_POWER is not set +# CONFIG_APM_POWER is not set +# CONFIG_GENERIC_ADC_BATTERY is not set +# CONFIG_TEST_POWER is not set +CONFIG_CHARGER_ADP5061=m +CONFIG_BATTERY_CW2015=m +# CONFIG_BATTERY_DS2760 is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_DS2782 is not set +CONFIG_BATTERY_SBS=m +# CONFIG_CHARGER_SBS is not set +CONFIG_MANAGER_SBS=m +CONFIG_BATTERY_BQ27XXX=m +CONFIG_BATTERY_BQ27XXX_I2C=m +CONFIG_BATTERY_BQ27XXX_HDQ=m +# CONFIG_BATTERY_BQ27XXX_DT_UPDATES_NVM is not set +# CONFIG_BATTERY_DA9052 is not set +CONFIG_CHARGER_AXP20X=m +CONFIG_BATTERY_AXP20X=m +CONFIG_AXP20X_POWER=m +# CONFIG_BATTERY_MAX17040 is not set +# CONFIG_BATTERY_MAX17042 is not set +CONFIG_BATTERY_MAX1721X=m +CONFIG_BATTERY_TWL4030_MADC=m +CONFIG_BATTERY_RX51=m +CONFIG_CHARGER_ISP1704=m +# CONFIG_CHARGER_MAX8903 is not set +CONFIG_CHARGER_TWL4030=m +# CONFIG_CHARGER_LP8727 is not set +CONFIG_CHARGER_GPIO=m +# CONFIG_CHARGER_MANAGER is not set +# CONFIG_CHARGER_LT3651 is not set +# CONFIG_CHARGER_LTC4162L is not set +# CONFIG_CHARGER_DETECTOR_MAX14656 is not set +CONFIG_CHARGER_MT6360=m +CONFIG_CHARGER_BQ2415X=m +# CONFIG_CHARGER_BQ24190 is not set +# CONFIG_CHARGER_BQ24257 is not set +# CONFIG_CHARGER_BQ24735 is not set +# CONFIG_CHARGER_BQ2515X is not set +# CONFIG_CHARGER_BQ25890 is not set +# CONFIG_CHARGER_BQ25980 is not set +# CONFIG_CHARGER_BQ256XX is not set +# CONFIG_CHARGER_SMB347 is not set +# CONFIG_BATTERY_GAUGE_LTC2941 is not set +# CONFIG_BATTERY_GOLDFISH is not set +CONFIG_BATTERY_RT5033=m +# CONFIG_CHARGER_RT9455 is not set +CONFIG_CHARGER_CROS_USBPD=m +CONFIG_CHARGER_CROS_PCHG=m +# CONFIG_CHARGER_UCS1002 is not set +CONFIG_CHARGER_BD99954=m +CONFIG_HWMON=y +CONFIG_HWMON_VID=m +# CONFIG_HWMON_DEBUG_CHIP is not set + +# +# Native drivers +# +# CONFIG_SENSORS_AD7314 is not set +CONFIG_SENSORS_AD7414=m +CONFIG_SENSORS_AD7418=m +# CONFIG_SENSORS_ADM1021 is not set +# CONFIG_SENSORS_ADM1025 is not set +# CONFIG_SENSORS_ADM1026 is not set +CONFIG_SENSORS_ADM1029=m +# CONFIG_SENSORS_ADM1031 is not set +CONFIG_SENSORS_ADM1177=m +CONFIG_SENSORS_ADM9240=m +# CONFIG_SENSORS_ADT7310 is not set +# CONFIG_SENSORS_ADT7410 is not set +CONFIG_SENSORS_ADT7411=m +CONFIG_SENSORS_ADT7462=m +CONFIG_SENSORS_ADT7470=m +CONFIG_SENSORS_ADT7475=m +CONFIG_SENSORS_AHT10=m +CONFIG_SENSORS_AQUACOMPUTER_D5NEXT=m +# CONFIG_SENSORS_AS370 is not set +CONFIG_SENSORS_ASC7621=m +CONFIG_SENSORS_AXI_FAN_CONTROL=m +CONFIG_SENSORS_ARM_SCMI=m +# CONFIG_SENSORS_ASPEED is not set +CONFIG_SENSORS_ATXP1=m +CONFIG_SENSORS_CORSAIR_CPRO=m +CONFIG_SENSORS_CORSAIR_PSU=m +CONFIG_SENSORS_DRIVETEMP=m +CONFIG_SENSORS_DS620=m +# CONFIG_SENSORS_DS1621 is not set +# CONFIG_SENSORS_DA9052_ADC is not set +CONFIG_SENSORS_I5K_AMB=m +# CONFIG_SENSORS_F71805F is not set +CONFIG_SENSORS_F71882FG=m +CONFIG_SENSORS_F75375S=m +CONFIG_SENSORS_MC13783_ADC=m +CONFIG_SENSORS_FTSTEUTATES=m +# CONFIG_SENSORS_GL518SM is not set +# CONFIG_SENSORS_GL520SM is not set +CONFIG_SENSORS_G760A=m +CONFIG_SENSORS_G762=m +CONFIG_SENSORS_GPIO_FAN=m +# CONFIG_SENSORS_HIH6130 is not set +# CONFIG_SENSORS_IIO_HWMON is not set +# CONFIG_SENSORS_IT87 is not set +CONFIG_SENSORS_JC42=m +# CONFIG_SENSORS_POWR1220 is not set +CONFIG_SENSORS_LINEAGE=m +# CONFIG_SENSORS_LTC2945 is not set +CONFIG_SENSORS_LTC2947=m +CONFIG_SENSORS_LTC2947_I2C=m +CONFIG_SENSORS_LTC2947_SPI=m +# CONFIG_SENSORS_LTC2990 is not set +# CONFIG_SENSORS_LTC2992 is not set +CONFIG_SENSORS_LTC4151=m +CONFIG_SENSORS_LTC4215=m +# CONFIG_SENSORS_LTC4222 is not set +CONFIG_SENSORS_LTC4245=m +# CONFIG_SENSORS_LTC4260 is not set +CONFIG_SENSORS_LTC4261=m +CONFIG_SENSORS_MAX1111=m +CONFIG_SENSORS_MAX127=m +CONFIG_SENSORS_MAX16065=m +# CONFIG_SENSORS_MAX1619 is not set +CONFIG_SENSORS_MAX1668=m +# CONFIG_SENSORS_MAX197 is not set +# CONFIG_SENSORS_MAX31722 is not set +CONFIG_SENSORS_MAX31730=m +# CONFIG_SENSORS_MAX6620 is not set +CONFIG_SENSORS_MAX6621=m +CONFIG_SENSORS_MAX6639=m +CONFIG_SENSORS_MAX6642=m +CONFIG_SENSORS_MAX6650=m +# CONFIG_SENSORS_MAX6697 is not set +# CONFIG_SENSORS_MAX31790 is not set +# CONFIG_SENSORS_MCP3021 is not set +# CONFIG_SENSORS_TC654 is not set +# CONFIG_SENSORS_TPS23861 is not set +# CONFIG_SENSORS_MR75203 is not set +CONFIG_SENSORS_ADCXX=m +# CONFIG_SENSORS_LM63 is not set +CONFIG_SENSORS_LM70=m +CONFIG_SENSORS_LM73=m +# CONFIG_SENSORS_LM75 is not set +# CONFIG_SENSORS_LM77 is not set +# CONFIG_SENSORS_LM78 is not set +# CONFIG_SENSORS_LM80 is not set +# CONFIG_SENSORS_LM83 is not set +# CONFIG_SENSORS_LM85 is not set +# CONFIG_SENSORS_LM87 is not set +# CONFIG_SENSORS_LM90 is not set +# CONFIG_SENSORS_LM92 is not set +CONFIG_SENSORS_LM93=m +# CONFIG_SENSORS_LM95234 is not set +CONFIG_SENSORS_LM95241=m +CONFIG_SENSORS_LM95245=m +# CONFIG_SENSORS_PC87360 is not set +CONFIG_SENSORS_PC87427=m +CONFIG_SENSORS_NTC_THERMISTOR=m +CONFIG_SENSORS_NCT6683=m +CONFIG_SENSORS_NCT6775=m +# CONFIG_SENSORS_NCT7802 is not set +# CONFIG_SENSORS_NCT7904 is not set +# CONFIG_SENSORS_NPCM7XX is not set +# CONFIG_SENSORS_NZXT_KRAKEN2 is not set +# CONFIG_SENSORS_OCC_P8_I2C is not set +# CONFIG_SENSORS_PCF8591 is not set +# CONFIG_PMBUS is not set +CONFIG_SENSORS_PWM_FAN=m +CONFIG_SENSORS_RASPBERRYPI_HWMON=m +CONFIG_SENSORS_SBTSI=m +CONFIG_SENSORS_SBRMI=m +# CONFIG_SENSORS_SHT15 is not set +CONFIG_SENSORS_SHT21=m +# CONFIG_SENSORS_SHT3x is not set +# CONFIG_SENSORS_SHT4x is not set +# CONFIG_SENSORS_SHTC1 is not set +# CONFIG_SENSORS_SIS5595 is not set +CONFIG_SENSORS_DME1737=m +CONFIG_SENSORS_EMC1403=m +CONFIG_SENSORS_EMC2103=m +CONFIG_SENSORS_EMC6W201=m +# CONFIG_SENSORS_SMSC47M1 is not set +CONFIG_SENSORS_SMSC47M192=m +# CONFIG_SENSORS_SMSC47B397 is not set +CONFIG_SENSORS_SCH56XX_COMMON=m +CONFIG_SENSORS_SCH5627=m +# CONFIG_SENSORS_SCH5636 is not set +# CONFIG_SENSORS_STTS751 is not set +CONFIG_SENSORS_SMM665=m +# CONFIG_SENSORS_ADC128D818 is not set +CONFIG_SENSORS_ADS7828=m +CONFIG_SENSORS_ADS7871=m +CONFIG_SENSORS_AMC6821=m +# CONFIG_SENSORS_INA209 is not set +# CONFIG_SENSORS_INA2XX is not set +# CONFIG_SENSORS_INA3221 is not set +# CONFIG_SENSORS_TC74 is not set +CONFIG_SENSORS_THMC50=m +CONFIG_SENSORS_TMP102=m +# CONFIG_SENSORS_TMP103 is not set +# CONFIG_SENSORS_TMP108 is not set +CONFIG_SENSORS_TMP401=m +CONFIG_SENSORS_TMP421=m +CONFIG_SENSORS_TMP513=m +# CONFIG_SENSORS_VEXPRESS is not set +# CONFIG_SENSORS_VIA686A is not set +CONFIG_SENSORS_VT1211=m +CONFIG_SENSORS_VT8231=m +CONFIG_SENSORS_W83773G=m +# CONFIG_SENSORS_W83781D is not set +CONFIG_SENSORS_W83791D=m +CONFIG_SENSORS_W83792D=m +CONFIG_SENSORS_W83793=m +CONFIG_SENSORS_W83795=m +# CONFIG_SENSORS_W83795_FANCTRL is not set +# CONFIG_SENSORS_W83L785TS is not set +CONFIG_SENSORS_W83L786NG=m +# CONFIG_SENSORS_W83627HF is not set +CONFIG_SENSORS_W83627EHF=m +CONFIG_THERMAL=y +CONFIG_THERMAL_NETLINK=y +# CONFIG_THERMAL_STATISTICS is not set +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_OF=y +# CONFIG_THERMAL_WRITABLE_TRIPS is not set +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +CONFIG_THERMAL_GOV_FAIR_SHARE=y +CONFIG_THERMAL_GOV_STEP_WISE=y +# CONFIG_THERMAL_GOV_BANG_BANG is not set +# CONFIG_THERMAL_GOV_USER_SPACE is not set +# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set +CONFIG_CPU_THERMAL=y +CONFIG_CPU_FREQ_THERMAL=y +# CONFIG_DEVFREQ_THERMAL is not set +# CONFIG_THERMAL_EMULATION is not set +# CONFIG_THERMAL_MMIO is not set +# CONFIG_IMX_THERMAL is not set +CONFIG_IMX8MM_THERMAL=m +CONFIG_SUN8I_THERMAL=m +CONFIG_ROCKCHIP_THERMAL=m +CONFIG_ARMADA_THERMAL=y + +# +# Broadcom thermal drivers +# +CONFIG_BCM2711_THERMAL=m +CONFIG_BCM2835_THERMAL=m +# end of Broadcom thermal drivers + +# +# Texas Instruments thermal drivers +# +CONFIG_TI_SOC_THERMAL=m +CONFIG_TI_THERMAL=y +# CONFIG_OMAP3_THERMAL is not set +CONFIG_OMAP4_THERMAL=y +CONFIG_OMAP5_THERMAL=y +CONFIG_DRA752_THERMAL=y +# end of Texas Instruments thermal drivers + +# +# Samsung thermal drivers +# +CONFIG_EXYNOS_THERMAL=y +# end of Samsung thermal drivers + +# +# NVIDIA Tegra thermal drivers +# +CONFIG_TEGRA_SOCTHERM=y +# end of NVIDIA Tegra thermal drivers + +# CONFIG_GENERIC_ADC_THERMAL is not set +CONFIG_KHADAS_MCU_FAN_THERMAL=m +CONFIG_WATCHDOG=y +CONFIG_WATCHDOG_CORE=y +# CONFIG_WATCHDOG_NOWAYOUT is not set +CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y +CONFIG_WATCHDOG_OPEN_TIMEOUT=0 +CONFIG_WATCHDOG_SYSFS=y +CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT=y + +# +# Watchdog Pretimeout Governors +# +# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set + +# +# Watchdog Device Drivers +# +CONFIG_SOFT_WATCHDOG=m +CONFIG_BD957XMUF_WATCHDOG=m +CONFIG_DA9052_WATCHDOG=m +# CONFIG_GPIO_WATCHDOG is not set +# CONFIG_XILINX_WATCHDOG is not set +# CONFIG_ZIIRAVE_WATCHDOG is not set +CONFIG_ARM_SP805_WATCHDOG=m +# CONFIG_ARMADA_37XX_WATCHDOG is not set +# CONFIG_CADENCE_WATCHDOG is not set +CONFIG_FTWDT010_WATCHDOG=m +CONFIG_S3C2410_WATCHDOG=m +CONFIG_DW_WATCHDOG=m +CONFIG_OMAP_WATCHDOG=m +CONFIG_ORION_WATCHDOG=m +CONFIG_SUNXI_WATCHDOG=m +CONFIG_TWL4030_WATCHDOG=m +# CONFIG_TS4800_WATCHDOG is not set +# CONFIG_MAX63XX_WATCHDOG is not set +CONFIG_IMX2_WDT=m +CONFIG_IMX7ULP_WDT=m +CONFIG_TEGRA_WATCHDOG=m +CONFIG_ARM_SMC_WATCHDOG=m +CONFIG_RTD119X_WATCHDOG=y +CONFIG_MSC313E_WATCHDOG=m +# CONFIG_ALIM7101_WDT is not set +# CONFIG_I6300ESB_WDT is not set +CONFIG_BCM2835_WDT=m +# CONFIG_MEN_A21_WDT is not set +CONFIG_XEN_WDT=m + +# +# PCI-based Watchdog Cards +# +# CONFIG_PCIPCWATCHDOG is not set +# CONFIG_WDTPCI is not set + +# +# USB-based Watchdog Cards +# +# CONFIG_USBPCWATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +CONFIG_SSB=m +CONFIG_SSB_SPROM=y +CONFIG_SSB_BLOCKIO=y +CONFIG_SSB_PCIHOST_POSSIBLE=y +CONFIG_SSB_PCIHOST=y +CONFIG_SSB_B43_PCI_BRIDGE=y +CONFIG_SSB_SDIOHOST_POSSIBLE=y +CONFIG_SSB_SDIOHOST=y +CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y +CONFIG_SSB_DRIVER_PCICORE=y +# CONFIG_SSB_DRIVER_GPIO is not set +CONFIG_BCMA_POSSIBLE=y +CONFIG_BCMA=m +CONFIG_BCMA_BLOCKIO=y +CONFIG_BCMA_HOST_PCI_POSSIBLE=y +CONFIG_BCMA_HOST_PCI=y +# CONFIG_BCMA_HOST_SOC is not set +CONFIG_BCMA_DRIVER_PCI=y +# CONFIG_BCMA_DRIVER_GMAC_CMN is not set +# CONFIG_BCMA_DRIVER_GPIO is not set +# CONFIG_BCMA_DEBUG is not set + +# +# Multifunction device drivers +# +CONFIG_MFD_CORE=y +# CONFIG_MFD_ALTERA_A10SR is not set +# CONFIG_MFD_ALTERA_SYSMGR is not set +# CONFIG_MFD_ACT8945A is not set +# CONFIG_MFD_SUN4I_GPADC is not set +# CONFIG_MFD_AS3711 is not set +CONFIG_MFD_AS3722=y +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_AAT2870_CORE is not set +# CONFIG_MFD_ATMEL_FLEXCOM is not set +# CONFIG_MFD_ATMEL_HLCDC is not set +# CONFIG_MFD_BCM590XX is not set +CONFIG_MFD_BD9571MWV=m +# CONFIG_MFD_AC100 is not set +CONFIG_MFD_AXP20X=y +CONFIG_MFD_AXP20X_I2C=y +# CONFIG_MFD_AXP20X_RSB is not set +CONFIG_MFD_CROS_EC_DEV=m +CONFIG_MFD_MADERA=m +CONFIG_MFD_MADERA_I2C=m +CONFIG_MFD_MADERA_SPI=m +# CONFIG_MFD_CS47L15 is not set +# CONFIG_MFD_CS47L35 is not set +# CONFIG_MFD_CS47L85 is not set +# CONFIG_MFD_CS47L90 is not set +# CONFIG_MFD_CS47L92 is not set +# CONFIG_MFD_ASIC3 is not set +# CONFIG_PMIC_DA903X is not set +CONFIG_PMIC_DA9052=y +CONFIG_MFD_DA9052_SPI=y +CONFIG_MFD_DA9052_I2C=y +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_DLN2 is not set +# CONFIG_MFD_EXYNOS_LPASS is not set +# CONFIG_MFD_GATEWORKS_GSC is not set +CONFIG_MFD_MC13XXX=m +CONFIG_MFD_MC13XXX_SPI=m +CONFIG_MFD_MC13XXX_I2C=m +CONFIG_MFD_MP2629=m +# CONFIG_MFD_HI6421_PMIC is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_HTC_I2CPLD is not set +# CONFIG_LPC_ICH is not set +CONFIG_LPC_SCH=m +CONFIG_MFD_IQS62X=m +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77620 is not set +# CONFIG_MFD_MAX77650 is not set +CONFIG_MFD_MAX77686=y +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +CONFIG_MFD_MT6360=m +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_EZX_PCAP is not set +# CONFIG_MFD_CPCAP is not set +CONFIG_MFD_VIPERBOARD=m +# CONFIG_MFD_NTXEC is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_UCB1400_CORE is not set +# CONFIG_MFD_PM8XXX is not set +# CONFIG_MFD_RDC321X is not set +CONFIG_MFD_RT4831=m +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RC5T583 is not set +CONFIG_MFD_RK808=y +# CONFIG_MFD_RN5T618 is not set +CONFIG_MFD_SEC_CORE=y +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +CONFIG_MFD_STMPE=y + +# +# STMicroelectronics STMPE Interface Drivers +# +CONFIG_STMPE_I2C=y +# CONFIG_STMPE_SPI is not set +# end of STMicroelectronics STMPE Interface Drivers + +CONFIG_MFD_SUN6I_PRCM=y +CONFIG_MFD_SYSCON=y +CONFIG_MFD_TI_AM335X_TSCADC=m +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +CONFIG_MFD_OMAP_USB_HOST=y +CONFIG_MFD_PALMAS=y +# CONFIG_TPS6105X is not set +# CONFIG_TPS65010 is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TPS65217 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TI_LP87565 is not set +# CONFIG_MFD_TPS65218 is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65910 is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS65912_SPI is not set +CONFIG_TWL4030_CORE=y +CONFIG_TWL4030_POWER=y +CONFIG_MFD_TWL4030_AUDIO=y +CONFIG_TWL6040_CORE=y +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TC3589X is not set +# CONFIG_MFD_T7L66XB is not set +# CONFIG_MFD_TC6387XB is not set +# CONFIG_MFD_TC6393XB is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_LOCHNAGAR is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_ARIZONA_SPI is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM831X_SPI is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +CONFIG_MFD_ROHM_BD718XX=m +CONFIG_MFD_ROHM_BD70528=m +CONFIG_MFD_ROHM_BD71828=m +CONFIG_MFD_ROHM_BD957XMUF=m +# CONFIG_MFD_STPMIC1 is not set +# CONFIG_MFD_STMFX is not set +# CONFIG_MFD_ATC260X_I2C is not set +CONFIG_MFD_KHADAS_MCU=m +CONFIG_MFD_QCOM_PM8008=m +CONFIG_MFD_VEXPRESS_SYSREG=y +# CONFIG_MFD_INTEL_M10_BMC is not set +CONFIG_MFD_RSMU_I2C=m +CONFIG_MFD_RSMU_SPI=m +# end of Multifunction device drivers + +CONFIG_REGULATOR=y +# CONFIG_REGULATOR_DEBUG is not set +CONFIG_REGULATOR_FIXED_VOLTAGE=y +# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set +# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set +# CONFIG_REGULATOR_88PG86X is not set +CONFIG_REGULATOR_ACT8865=m +# CONFIG_REGULATOR_AD5398 is not set +CONFIG_REGULATOR_ANATOP=m +CONFIG_REGULATOR_ARIZONA_LDO1=m +CONFIG_REGULATOR_ARIZONA_MICSUPP=m +CONFIG_REGULATOR_ARM_SCMI=m +CONFIG_REGULATOR_AS3722=y +CONFIG_REGULATOR_AXP20X=m +CONFIG_REGULATOR_BD71815=m +CONFIG_REGULATOR_BD71828=m +CONFIG_REGULATOR_BD718XX=m +CONFIG_REGULATOR_BD9571MWV=m +CONFIG_REGULATOR_BD957XMUF=m +CONFIG_REGULATOR_CROS_EC=m +CONFIG_REGULATOR_DA9052=m +CONFIG_REGULATOR_DA9121=m +# CONFIG_REGULATOR_DA9210 is not set +# CONFIG_REGULATOR_DA9211 is not set +CONFIG_REGULATOR_FAN53555=m +CONFIG_REGULATOR_FAN53880=m +CONFIG_REGULATOR_GPIO=m +# CONFIG_REGULATOR_ISL9305 is not set +# CONFIG_REGULATOR_ISL6271A is not set +# CONFIG_REGULATOR_LP3971 is not set +# CONFIG_REGULATOR_LP3972 is not set +# CONFIG_REGULATOR_LP872X is not set +# CONFIG_REGULATOR_LP8755 is not set +# CONFIG_REGULATOR_LTC3589 is not set +# CONFIG_REGULATOR_LTC3676 is not set +# CONFIG_REGULATOR_MAX1586 is not set +# CONFIG_REGULATOR_MAX8649 is not set +# CONFIG_REGULATOR_MAX8660 is not set +CONFIG_REGULATOR_MAX8893=m +# CONFIG_REGULATOR_MAX8952 is not set +# CONFIG_REGULATOR_MAX8973 is not set +CONFIG_REGULATOR_MAX77686=m +# CONFIG_REGULATOR_MAX77802 is not set +# CONFIG_REGULATOR_MAX77826 is not set +CONFIG_REGULATOR_MC13XXX_CORE=m +CONFIG_REGULATOR_MC13783=m +CONFIG_REGULATOR_MC13892=m +# CONFIG_REGULATOR_MCP16502 is not set +CONFIG_REGULATOR_MP5416=m +CONFIG_REGULATOR_MP8859=m +CONFIG_REGULATOR_MP886X=m +CONFIG_REGULATOR_MPQ7920=m +# CONFIG_REGULATOR_MT6311 is not set +CONFIG_REGULATOR_MT6360=m +CONFIG_REGULATOR_PALMAS=y +CONFIG_REGULATOR_PBIAS=m +CONFIG_REGULATOR_PCA9450=m +CONFIG_REGULATOR_PF8X00=m +CONFIG_REGULATOR_PFUZE100=m +# CONFIG_REGULATOR_PV88060 is not set +# CONFIG_REGULATOR_PV88080 is not set +# CONFIG_REGULATOR_PV88090 is not set +# CONFIG_REGULATOR_PWM is not set +CONFIG_REGULATOR_RASPBERRYPI_TOUCHSCREEN_ATTINY=m +CONFIG_REGULATOR_RK808=m +CONFIG_REGULATOR_ROHM=m +CONFIG_REGULATOR_RT4801=m +CONFIG_REGULATOR_RT4831=m +CONFIG_REGULATOR_RT6160=m +CONFIG_REGULATOR_RT6245=m +CONFIG_REGULATOR_RTQ2134=m +CONFIG_REGULATOR_RTMV20=m +CONFIG_REGULATOR_RTQ6752=m +CONFIG_REGULATOR_S2MPA01=m +CONFIG_REGULATOR_S2MPS11=m +CONFIG_REGULATOR_S5M8767=m +CONFIG_REGULATOR_SLG51000=m +CONFIG_REGULATOR_TI_ABB=m +CONFIG_REGULATOR_SY8106A=m +CONFIG_REGULATOR_SY8824X=m +CONFIG_REGULATOR_SY8827N=m +# CONFIG_REGULATOR_TPS51632 is not set +# CONFIG_REGULATOR_TPS62360 is not set +# CONFIG_REGULATOR_TPS65023 is not set +# CONFIG_REGULATOR_TPS6507X is not set +# CONFIG_REGULATOR_TPS65132 is not set +# CONFIG_REGULATOR_TPS6524X is not set +CONFIG_REGULATOR_TWL4030=y +# CONFIG_REGULATOR_VCTRL is not set +CONFIG_REGULATOR_VEXPRESS=m +CONFIG_RC_CORE=y +CONFIG_RC_MAP=m +CONFIG_LIRC=y +# CONFIG_BPF_LIRC_MODE2 is not set +CONFIG_RC_DECODERS=y +CONFIG_IR_NEC_DECODER=m +CONFIG_IR_RC5_DECODER=m +CONFIG_IR_RC6_DECODER=m +CONFIG_IR_JVC_DECODER=m +CONFIG_IR_SONY_DECODER=m +CONFIG_IR_SANYO_DECODER=m +CONFIG_IR_SHARP_DECODER=m +CONFIG_IR_MCE_KBD_DECODER=m +CONFIG_IR_XMP_DECODER=m +CONFIG_IR_IMON_DECODER=m +CONFIG_IR_RCMM_DECODER=m +CONFIG_RC_DEVICES=y +CONFIG_RC_ATI_REMOTE=m +# CONFIG_IR_HIX5HD2 is not set +CONFIG_IR_IMON=m +CONFIG_IR_IMON_RAW=m +CONFIG_IR_MCEUSB=m +CONFIG_IR_REDRAT3=m +# CONFIG_IR_SPI is not set +CONFIG_IR_STREAMZAP=m +CONFIG_IR_IGORPLUGUSB=m +CONFIG_IR_IGUANA=m +CONFIG_IR_TTUSBIR=m +# CONFIG_IR_RX51 is not set +CONFIG_RC_LOOPBACK=m +CONFIG_IR_GPIO_CIR=m +CONFIG_IR_GPIO_TX=m +CONFIG_IR_PWM_TX=m +CONFIG_IR_SUNXI=m +# CONFIG_IR_SERIAL is not set +CONFIG_RC_XBOX_DVD=m +CONFIG_IR_TOY=m +CONFIG_CEC_CORE=m +CONFIG_CEC_NOTIFIER=y + +# +# CEC support +# +CONFIG_MEDIA_CEC_RC=y +CONFIG_MEDIA_CEC_SUPPORT=y +CONFIG_CEC_CH7322=m +CONFIG_CEC_CROS_EC=m +CONFIG_CEC_SAMSUNG_S5P=m +CONFIG_CEC_TEGRA=m +CONFIG_USB_PULSE8_CEC=m +CONFIG_USB_RAINSHADOW_CEC=m +# end of CEC support + +CONFIG_MEDIA_SUPPORT=y +# CONFIG_MEDIA_SUPPORT_FILTER is not set +CONFIG_MEDIA_SUBDRV_AUTOSELECT=y + +# +# Media device types +# +CONFIG_MEDIA_CAMERA_SUPPORT=y +CONFIG_MEDIA_ANALOG_TV_SUPPORT=y +CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y +CONFIG_MEDIA_RADIO_SUPPORT=y +CONFIG_MEDIA_SDR_SUPPORT=y +CONFIG_MEDIA_PLATFORM_SUPPORT=y +CONFIG_MEDIA_TEST_SUPPORT=y +# end of Media device types + +# +# Media core support +# +CONFIG_VIDEO_DEV=y +CONFIG_MEDIA_CONTROLLER=y +CONFIG_DVB_CORE=y +# end of Media core support + +# +# Video4Linux options +# +CONFIG_VIDEO_V4L2=y +CONFIG_VIDEO_V4L2_I2C=y +CONFIG_VIDEO_V4L2_SUBDEV_API=y +# CONFIG_VIDEO_ADV_DEBUG is not set +# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set +CONFIG_VIDEO_TUNER=m +CONFIG_V4L2_MEM2MEM_DEV=m +CONFIG_V4L2_FWNODE=m +CONFIG_V4L2_ASYNC=m +CONFIG_VIDEOBUF_GEN=m +CONFIG_VIDEOBUF_DMA_SG=m +CONFIG_VIDEOBUF_VMALLOC=m +# end of Video4Linux options + +# +# Media controller options +# +CONFIG_MEDIA_CONTROLLER_DVB=y +CONFIG_MEDIA_CONTROLLER_REQUEST_API=y +# end of Media controller options + +# +# Digital TV options +# +# CONFIG_DVB_MMAP is not set +CONFIG_DVB_NET=y +CONFIG_DVB_MAX_ADAPTERS=8 +CONFIG_DVB_DYNAMIC_MINORS=y +# CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set +# CONFIG_DVB_ULE_DEBUG is not set +# end of Digital TV options + +# +# Media drivers +# +CONFIG_MEDIA_USB_SUPPORT=y + +# +# Webcam devices +# +CONFIG_USB_VIDEO_CLASS=m +CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y +CONFIG_USB_GSPCA=m +CONFIG_USB_M5602=m +CONFIG_USB_STV06XX=m +CONFIG_USB_GL860=m +CONFIG_USB_GSPCA_BENQ=m +CONFIG_USB_GSPCA_CONEX=m +CONFIG_USB_GSPCA_CPIA1=m +CONFIG_USB_GSPCA_DTCS033=m +CONFIG_USB_GSPCA_ETOMS=m +CONFIG_USB_GSPCA_FINEPIX=m +CONFIG_USB_GSPCA_JEILINJ=m +CONFIG_USB_GSPCA_JL2005BCD=m +CONFIG_USB_GSPCA_KINECT=m +CONFIG_USB_GSPCA_KONICA=m +CONFIG_USB_GSPCA_MARS=m +CONFIG_USB_GSPCA_MR97310A=m +CONFIG_USB_GSPCA_NW80X=m +CONFIG_USB_GSPCA_OV519=m +CONFIG_USB_GSPCA_OV534=m +CONFIG_USB_GSPCA_OV534_9=m +CONFIG_USB_GSPCA_PAC207=m +CONFIG_USB_GSPCA_PAC7302=m +CONFIG_USB_GSPCA_PAC7311=m +CONFIG_USB_GSPCA_SE401=m +CONFIG_USB_GSPCA_SN9C2028=m +CONFIG_USB_GSPCA_SN9C20X=m +CONFIG_USB_GSPCA_SONIXB=m +CONFIG_USB_GSPCA_SONIXJ=m +CONFIG_USB_GSPCA_SPCA500=m +CONFIG_USB_GSPCA_SPCA501=m +CONFIG_USB_GSPCA_SPCA505=m +CONFIG_USB_GSPCA_SPCA506=m +CONFIG_USB_GSPCA_SPCA508=m +CONFIG_USB_GSPCA_SPCA561=m +CONFIG_USB_GSPCA_SPCA1528=m +CONFIG_USB_GSPCA_SQ905=m +CONFIG_USB_GSPCA_SQ905C=m +CONFIG_USB_GSPCA_SQ930X=m +CONFIG_USB_GSPCA_STK014=m +CONFIG_USB_GSPCA_STK1135=m +CONFIG_USB_GSPCA_STV0680=m +CONFIG_USB_GSPCA_SUNPLUS=m +CONFIG_USB_GSPCA_T613=m +CONFIG_USB_GSPCA_TOPRO=m +CONFIG_USB_GSPCA_TOUPTEK=m +CONFIG_USB_GSPCA_TV8532=m +CONFIG_USB_GSPCA_VC032X=m +CONFIG_USB_GSPCA_VICAM=m +CONFIG_USB_GSPCA_XIRLINK_CIT=m +CONFIG_USB_GSPCA_ZC3XX=m +CONFIG_USB_PWC=m +# CONFIG_USB_PWC_DEBUG is not set +CONFIG_USB_PWC_INPUT_EVDEV=y +CONFIG_VIDEO_CPIA2=m +CONFIG_USB_ZR364XX=m +CONFIG_USB_STKWEBCAM=m +CONFIG_USB_S2255=m +CONFIG_VIDEO_USBTV=m + +# +# Analog TV USB devices +# +CONFIG_VIDEO_PVRUSB2=m +CONFIG_VIDEO_PVRUSB2_SYSFS=y +CONFIG_VIDEO_PVRUSB2_DVB=y +# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set +CONFIG_VIDEO_HDPVR=m +CONFIG_VIDEO_STK1160_COMMON=m +CONFIG_VIDEO_STK1160=m +CONFIG_VIDEO_GO7007=m +CONFIG_VIDEO_GO7007_USB=m +CONFIG_VIDEO_GO7007_LOADER=m +CONFIG_VIDEO_GO7007_USB_S2250_BOARD=m + +# +# Analog/digital TV USB devices +# +CONFIG_VIDEO_AU0828=m +CONFIG_VIDEO_AU0828_V4L2=y +CONFIG_VIDEO_AU0828_RC=y +CONFIG_VIDEO_CX231XX=m +CONFIG_VIDEO_CX231XX_RC=y +CONFIG_VIDEO_CX231XX_ALSA=m +CONFIG_VIDEO_CX231XX_DVB=m +# CONFIG_VIDEO_TM6000 is not set + +# +# Digital TV USB devices +# +CONFIG_DVB_USB=m +# CONFIG_DVB_USB_DEBUG is not set +CONFIG_DVB_USB_DIB3000MC=m +CONFIG_DVB_USB_A800=m +CONFIG_DVB_USB_DIBUSB_MB=m +CONFIG_DVB_USB_DIBUSB_MB_FAULTY=y +CONFIG_DVB_USB_DIBUSB_MC=m +CONFIG_DVB_USB_DIB0700=m +CONFIG_DVB_USB_UMT_010=m +CONFIG_DVB_USB_CXUSB=m +CONFIG_DVB_USB_CXUSB_ANALOG=y +CONFIG_DVB_USB_M920X=m +CONFIG_DVB_USB_DIGITV=m +CONFIG_DVB_USB_VP7045=m +CONFIG_DVB_USB_VP702X=m +CONFIG_DVB_USB_GP8PSK=m +CONFIG_DVB_USB_NOVA_T_USB2=m +CONFIG_DVB_USB_TTUSB2=m +CONFIG_DVB_USB_DTT200U=m +CONFIG_DVB_USB_OPERA1=m +CONFIG_DVB_USB_AF9005=m +CONFIG_DVB_USB_AF9005_REMOTE=m +CONFIG_DVB_USB_PCTV452E=m +CONFIG_DVB_USB_DW2102=m +CONFIG_DVB_USB_CINERGY_T2=m +CONFIG_DVB_USB_DTV5100=m +CONFIG_DVB_USB_AZ6027=m +CONFIG_DVB_USB_TECHNISAT_USB2=m +CONFIG_DVB_USB_V2=m +CONFIG_DVB_USB_AF9015=m +CONFIG_DVB_USB_AF9035=m +CONFIG_DVB_USB_ANYSEE=m +CONFIG_DVB_USB_AU6610=m +CONFIG_DVB_USB_AZ6007=m +CONFIG_DVB_USB_CE6230=m +CONFIG_DVB_USB_EC168=m +CONFIG_DVB_USB_GL861=m +CONFIG_DVB_USB_LME2510=m +CONFIG_DVB_USB_MXL111SF=m +CONFIG_DVB_USB_RTL28XXU=m +CONFIG_DVB_USB_DVBSKY=m +# CONFIG_DVB_USB_ZD1301 is not set +CONFIG_DVB_TTUSB_BUDGET=m +CONFIG_DVB_TTUSB_DEC=m +CONFIG_SMS_USB_DRV=m +CONFIG_DVB_B2C2_FLEXCOP_USB=m +# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not set +CONFIG_DVB_AS102=m + +# +# Webcam, TV (analog/digital) USB devices +# +CONFIG_VIDEO_EM28XX=m +CONFIG_VIDEO_EM28XX_V4L2=m +CONFIG_VIDEO_EM28XX_ALSA=m +CONFIG_VIDEO_EM28XX_DVB=m +CONFIG_VIDEO_EM28XX_RC=m + +# +# Software defined radio USB devices +# +CONFIG_USB_AIRSPY=m +CONFIG_USB_HACKRF=m +CONFIG_USB_MSI2500=m +CONFIG_MEDIA_PCI_SUPPORT=y + +# +# Media capture support +# +CONFIG_VIDEO_SOLO6X10=m +CONFIG_VIDEO_TW5864=m +CONFIG_VIDEO_TW68=m +CONFIG_VIDEO_TW686X=m + +# +# Media capture/analog TV support +# +CONFIG_VIDEO_IVTV=m +CONFIG_VIDEO_IVTV_ALSA=m +CONFIG_VIDEO_FB_IVTV=m +CONFIG_VIDEO_HEXIUM_GEMINI=m +CONFIG_VIDEO_HEXIUM_ORION=m +CONFIG_VIDEO_MXB=m +CONFIG_VIDEO_DT3155=m + +# +# Media capture/analog/hybrid TV support +# +CONFIG_VIDEO_CX18=m +CONFIG_VIDEO_CX18_ALSA=m +CONFIG_VIDEO_CX23885=m +CONFIG_MEDIA_ALTERA_CI=m +# CONFIG_VIDEO_CX25821 is not set +CONFIG_VIDEO_CX88=m +CONFIG_VIDEO_CX88_ALSA=m +CONFIG_VIDEO_CX88_BLACKBIRD=m +CONFIG_VIDEO_CX88_DVB=m +CONFIG_VIDEO_CX88_ENABLE_VP3054=y +CONFIG_VIDEO_CX88_VP3054=m +CONFIG_VIDEO_CX88_MPEG=m +CONFIG_VIDEO_BT848=m +CONFIG_DVB_BT8XX=m +CONFIG_VIDEO_SAA7134=m +CONFIG_VIDEO_SAA7134_ALSA=m +CONFIG_VIDEO_SAA7134_RC=y +CONFIG_VIDEO_SAA7134_DVB=m +# CONFIG_VIDEO_SAA7134_GO7007 is not set +CONFIG_VIDEO_SAA7164=m +CONFIG_VIDEO_COBALT=m + +# +# Media digital TV PCI Adapters +# +CONFIG_DVB_BUDGET_CORE=m +CONFIG_DVB_BUDGET=m +CONFIG_DVB_BUDGET_CI=m +CONFIG_DVB_BUDGET_AV=m +CONFIG_DVB_B2C2_FLEXCOP_PCI=m +# CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG is not set +CONFIG_DVB_PLUTO2=m +CONFIG_DVB_DM1105=m +CONFIG_DVB_PT1=m +CONFIG_DVB_PT3=m +CONFIG_MANTIS_CORE=m +CONFIG_DVB_MANTIS=m +CONFIG_DVB_HOPPER=m +CONFIG_DVB_NGENE=m +CONFIG_DVB_DDBRIDGE=m +# CONFIG_DVB_DDBRIDGE_MSIENABLE is not set +CONFIG_DVB_SMIPCIE=m +CONFIG_DVB_NETUP_UNIDVB=m +CONFIG_RADIO_ADAPTERS=y +CONFIG_RADIO_TEA575X=m +CONFIG_RADIO_SI470X=y +CONFIG_USB_SI470X=m +# CONFIG_I2C_SI470X is not set +CONFIG_RADIO_SI4713=m +# CONFIG_USB_SI4713 is not set +# CONFIG_PLATFORM_SI4713 is not set +CONFIG_I2C_SI4713=m +CONFIG_USB_MR800=m +# CONFIG_USB_DSBR is not set +# CONFIG_RADIO_MAXIRADIO is not set +CONFIG_RADIO_SHARK=m +CONFIG_RADIO_SHARK2=m +CONFIG_USB_KEENE=m +CONFIG_USB_RAREMONO=m +CONFIG_USB_MA901=m +# CONFIG_RADIO_TEA5764 is not set +# CONFIG_RADIO_SAA7706H is not set +# CONFIG_RADIO_TEF6862 is not set +# CONFIG_RADIO_WL1273 is not set +CONFIG_RADIO_WL128X=m +CONFIG_MEDIA_COMMON_OPTIONS=y + +# +# common driver options +# +CONFIG_VIDEO_CX2341X=m +CONFIG_VIDEO_TVEEPROM=m +CONFIG_TTPCI_EEPROM=m +CONFIG_CYPRESS_FIRMWARE=m +CONFIG_VIDEOBUF2_CORE=m +CONFIG_VIDEOBUF2_V4L2=m +CONFIG_VIDEOBUF2_MEMOPS=m +CONFIG_VIDEOBUF2_DMA_CONTIG=m +CONFIG_VIDEOBUF2_VMALLOC=m +CONFIG_VIDEOBUF2_DMA_SG=m +CONFIG_VIDEOBUF2_DVB=m +CONFIG_DVB_B2C2_FLEXCOP=m +CONFIG_VIDEO_SAA7146=m +CONFIG_VIDEO_SAA7146_VV=m +CONFIG_SMS_SIANO_MDTV=m +CONFIG_SMS_SIANO_RC=y +# CONFIG_SMS_SIANO_DEBUGFS is not set +CONFIG_VIDEO_V4L2_TPG=m +CONFIG_V4L_PLATFORM_DRIVERS=y +CONFIG_VIDEO_CAFE_CCIC=m +CONFIG_VIDEO_CADENCE=y +CONFIG_VIDEO_CADENCE_CSI2RX=m +CONFIG_VIDEO_CADENCE_CSI2TX=m +CONFIG_VIDEO_ASPEED=m +# CONFIG_VIDEO_MUX is not set +CONFIG_VIDEO_OMAP3=m +# CONFIG_VIDEO_OMAP3_DEBUG is not set +# CONFIG_VIDEO_ROCKCHIP_ISP1 is not set +# CONFIG_VIDEO_SAMSUNG_EXYNOS4_IS is not set +# CONFIG_VIDEO_XILINX is not set +CONFIG_VIDEO_SUN4I_CSI=m +CONFIG_VIDEO_SUN6I_CSI=m +# CONFIG_VIDEO_TI_CAL is not set +CONFIG_V4L_MEM2MEM_DRIVERS=y +# CONFIG_VIDEO_CODA is not set +CONFIG_VIDEO_IMX_PXP=m +# CONFIG_VIDEO_IMX8_JPEG is not set +# CONFIG_VIDEO_MEM2MEM_DEINTERLACE is not set +# CONFIG_VIDEO_SAMSUNG_S5P_G2D is not set +# CONFIG_VIDEO_SAMSUNG_S5P_JPEG is not set +# CONFIG_VIDEO_SAMSUNG_S5P_MFC is not set +# CONFIG_VIDEO_SAMSUNG_EXYNOS_GSC is not set +CONFIG_VIDEO_ROCKCHIP_RGA=m +CONFIG_VIDEO_TI_VPE=m +# CONFIG_VIDEO_TI_VPE_DEBUG is not set +CONFIG_VIDEO_SUN8I_DEINTERLACE=m +CONFIG_VIDEO_SUN8I_ROTATE=m +CONFIG_VIDEO_TI_VPDMA=m +CONFIG_VIDEO_TI_SC=m +CONFIG_VIDEO_TI_CSC=m +# CONFIG_DVB_PLATFORM_DRIVERS is not set +# CONFIG_SDR_PLATFORM_DRIVERS is not set + +# +# MMC/SDIO DVB adapters +# +CONFIG_SMS_SDIO_DRV=m +CONFIG_V4L_TEST_DRIVERS=y +# CONFIG_VIDEO_VIMC is not set +CONFIG_VIDEO_VIVID=m +CONFIG_VIDEO_VIVID_CEC=y +CONFIG_VIDEO_VIVID_MAX_DEVS=64 +# CONFIG_VIDEO_VIM2M is not set +# CONFIG_VIDEO_VICODEC is not set +# CONFIG_DVB_TEST_DRIVERS is not set + +# +# FireWire (IEEE 1394) Adapters +# +CONFIG_DVB_FIREDTV=m +CONFIG_DVB_FIREDTV_INPUT=y +# end of Media drivers + +# +# Media ancillary drivers +# +CONFIG_MEDIA_ATTACH=y + +# +# IR I2C driver auto-selected by 'Autoselect ancillary drivers' +# +CONFIG_VIDEO_IR_I2C=y + +# +# Audio decoders, processors and mixers +# +CONFIG_VIDEO_TVAUDIO=m +CONFIG_VIDEO_TDA7432=m +CONFIG_VIDEO_TDA9840=m +CONFIG_VIDEO_TDA1997X=m +CONFIG_VIDEO_TEA6415C=m +CONFIG_VIDEO_TEA6420=m +CONFIG_VIDEO_MSP3400=m +CONFIG_VIDEO_CS3308=m +CONFIG_VIDEO_CS5345=m +CONFIG_VIDEO_CS53L32A=m +CONFIG_VIDEO_TLV320AIC23B=m +CONFIG_VIDEO_UDA1342=m +CONFIG_VIDEO_WM8775=m +CONFIG_VIDEO_WM8739=m +CONFIG_VIDEO_VP27SMPX=m +CONFIG_VIDEO_SONY_BTF_MPX=m +# end of Audio decoders, processors and mixers + +# +# RDS decoders +# +CONFIG_VIDEO_SAA6588=m +# end of RDS decoders + +# +# Video decoders +# +CONFIG_VIDEO_ADV7180=m +CONFIG_VIDEO_ADV7183=m +CONFIG_VIDEO_ADV748X=m +CONFIG_VIDEO_ADV7604=m +CONFIG_VIDEO_ADV7604_CEC=y +CONFIG_VIDEO_ADV7842=m +CONFIG_VIDEO_ADV7842_CEC=y +CONFIG_VIDEO_BT819=m +CONFIG_VIDEO_BT856=m +CONFIG_VIDEO_BT866=m +CONFIG_VIDEO_KS0127=m +CONFIG_VIDEO_ML86V7667=m +CONFIG_VIDEO_SAA7110=m +CONFIG_VIDEO_SAA711X=m +CONFIG_VIDEO_TC358743=m +CONFIG_VIDEO_TC358743_CEC=y +CONFIG_VIDEO_TVP514X=m +CONFIG_VIDEO_TVP5150=m +CONFIG_VIDEO_TVP7002=m +CONFIG_VIDEO_TW2804=m +CONFIG_VIDEO_TW9903=m +CONFIG_VIDEO_TW9906=m +CONFIG_VIDEO_TW9910=m +CONFIG_VIDEO_VPX3220=m +CONFIG_VIDEO_MAX9286=m + +# +# Video and audio decoders +# +CONFIG_VIDEO_SAA717X=m +CONFIG_VIDEO_CX25840=m +# end of Video decoders + +# +# Video encoders +# +CONFIG_VIDEO_SAA7127=m +CONFIG_VIDEO_SAA7185=m +CONFIG_VIDEO_ADV7170=m +CONFIG_VIDEO_ADV7175=m +CONFIG_VIDEO_ADV7343=m +CONFIG_VIDEO_ADV7393=m +CONFIG_VIDEO_ADV7511=m +CONFIG_VIDEO_ADV7511_CEC=y +CONFIG_VIDEO_AD9389B=m +CONFIG_VIDEO_AK881X=m +CONFIG_VIDEO_THS8200=m +# end of Video encoders + +# +# Video improvement chips +# +CONFIG_VIDEO_UPD64031A=m +CONFIG_VIDEO_UPD64083=m +# end of Video improvement chips + +# +# Audio/Video compression chips +# +CONFIG_VIDEO_SAA6752HS=m +# end of Audio/Video compression chips + +# +# SDR tuner chips +# +CONFIG_SDR_MAX2175=m +# end of SDR tuner chips + +# +# Miscellaneous helper chips +# +CONFIG_VIDEO_THS7303=m +CONFIG_VIDEO_M52790=m +CONFIG_VIDEO_I2C=m +CONFIG_VIDEO_ST_MIPID02=m +# end of Miscellaneous helper chips + +# +# Camera sensor devices +# +CONFIG_VIDEO_APTINA_PLL=m +CONFIG_VIDEO_CCS_PLL=m +CONFIG_VIDEO_HI556=m +CONFIG_VIDEO_HI846=m +CONFIG_VIDEO_IMX208=m +CONFIG_VIDEO_IMX214=m +CONFIG_VIDEO_IMX219=m +CONFIG_VIDEO_IMX258=m +CONFIG_VIDEO_IMX274=m +CONFIG_VIDEO_IMX290=m +CONFIG_VIDEO_IMX319=m +CONFIG_VIDEO_IMX334=m +CONFIG_VIDEO_IMX335=m +CONFIG_VIDEO_IMX355=m +CONFIG_VIDEO_IMX412=m +CONFIG_VIDEO_OV02A10=m +CONFIG_VIDEO_OV2640=m +CONFIG_VIDEO_OV2659=m +CONFIG_VIDEO_OV2680=m +CONFIG_VIDEO_OV2685=m +CONFIG_VIDEO_OV5640=m +CONFIG_VIDEO_OV5645=m +CONFIG_VIDEO_OV5647=m +CONFIG_VIDEO_OV5648=m +CONFIG_VIDEO_OV6650=m +CONFIG_VIDEO_OV5670=m +CONFIG_VIDEO_OV5675=m +CONFIG_VIDEO_OV5695=m +CONFIG_VIDEO_OV7251=m +CONFIG_VIDEO_OV772X=m +CONFIG_VIDEO_OV7640=m +CONFIG_VIDEO_OV7670=m +CONFIG_VIDEO_OV7740=m +CONFIG_VIDEO_OV8856=m +CONFIG_VIDEO_OV8865=m +CONFIG_VIDEO_OV9282=m +CONFIG_VIDEO_OV9640=m +CONFIG_VIDEO_OV9650=m +CONFIG_VIDEO_OV13858=m +CONFIG_VIDEO_OV13B10=m +CONFIG_VIDEO_VS6624=m +CONFIG_VIDEO_MT9M001=m +CONFIG_VIDEO_MT9M032=m +CONFIG_VIDEO_MT9M111=m +CONFIG_VIDEO_MT9P031=m +CONFIG_VIDEO_MT9T001=m +CONFIG_VIDEO_MT9T112=m +CONFIG_VIDEO_MT9V011=m +CONFIG_VIDEO_MT9V032=m +CONFIG_VIDEO_MT9V111=m +CONFIG_VIDEO_SR030PC30=m +CONFIG_VIDEO_NOON010PC30=m +CONFIG_VIDEO_M5MOLS=m +CONFIG_VIDEO_MAX9271_LIB=m +CONFIG_VIDEO_RDACM20=m +CONFIG_VIDEO_RDACM21=m +CONFIG_VIDEO_RJ54N1=m +CONFIG_VIDEO_S5K6AA=m +CONFIG_VIDEO_S5K6A3=m +CONFIG_VIDEO_S5K4ECGX=m +CONFIG_VIDEO_S5K5BAF=m +CONFIG_VIDEO_CCS=m +CONFIG_VIDEO_ET8EK8=m +CONFIG_VIDEO_S5C73M3=m +# end of Camera sensor devices + +# +# Lens drivers +# +CONFIG_VIDEO_AD5820=m +CONFIG_VIDEO_AK7375=m +CONFIG_VIDEO_DW9714=m +CONFIG_VIDEO_DW9768=m +CONFIG_VIDEO_DW9807_VCM=m +# end of Lens drivers + +# +# Flash devices +# +CONFIG_VIDEO_ADP1653=m +CONFIG_VIDEO_LM3560=m +CONFIG_VIDEO_LM3646=m +# end of Flash devices + +# +# SPI helper chips +# +CONFIG_VIDEO_GS1662=m +# end of SPI helper chips + +# +# Media SPI Adapters +# +# CONFIG_CXD2880_SPI_DRV is not set +# end of Media SPI Adapters + +CONFIG_MEDIA_TUNER=y + +# +# Customize TV tuners +# +CONFIG_MEDIA_TUNER_SIMPLE=y +CONFIG_MEDIA_TUNER_TDA18250=m +CONFIG_MEDIA_TUNER_TDA8290=y +CONFIG_MEDIA_TUNER_TDA827X=y +CONFIG_MEDIA_TUNER_TDA18271=y +CONFIG_MEDIA_TUNER_TDA9887=y +CONFIG_MEDIA_TUNER_TEA5761=y +CONFIG_MEDIA_TUNER_TEA5767=y +CONFIG_MEDIA_TUNER_MSI001=m +CONFIG_MEDIA_TUNER_MT20XX=y +CONFIG_MEDIA_TUNER_MT2060=m +CONFIG_MEDIA_TUNER_MT2063=m +CONFIG_MEDIA_TUNER_MT2266=m +CONFIG_MEDIA_TUNER_MT2131=m +CONFIG_MEDIA_TUNER_QT1010=m +CONFIG_MEDIA_TUNER_XC2028=y +CONFIG_MEDIA_TUNER_XC5000=y +CONFIG_MEDIA_TUNER_XC4000=y +CONFIG_MEDIA_TUNER_MXL5005S=m +CONFIG_MEDIA_TUNER_MXL5007T=m +CONFIG_MEDIA_TUNER_MC44S803=y +CONFIG_MEDIA_TUNER_MAX2165=m +CONFIG_MEDIA_TUNER_TDA18218=m +CONFIG_MEDIA_TUNER_FC0011=m +CONFIG_MEDIA_TUNER_FC0012=m +CONFIG_MEDIA_TUNER_FC0013=m +CONFIG_MEDIA_TUNER_TDA18212=m +CONFIG_MEDIA_TUNER_E4000=m +CONFIG_MEDIA_TUNER_FC2580=m +CONFIG_MEDIA_TUNER_M88RS6000T=m +CONFIG_MEDIA_TUNER_TUA9001=m +CONFIG_MEDIA_TUNER_SI2157=m +CONFIG_MEDIA_TUNER_IT913X=m +CONFIG_MEDIA_TUNER_R820T=m +CONFIG_MEDIA_TUNER_MXL301RF=m +CONFIG_MEDIA_TUNER_QM1D1C0042=m +CONFIG_MEDIA_TUNER_QM1D1B0004=m +# end of Customize TV tuners + +# +# Customise DVB Frontends +# + +# +# Multistandard (satellite) frontends +# +CONFIG_DVB_STB0899=m +CONFIG_DVB_STB6100=m +CONFIG_DVB_STV090x=m +CONFIG_DVB_STV0910=m +CONFIG_DVB_STV6110x=m +CONFIG_DVB_STV6111=m +CONFIG_DVB_MXL5XX=m +CONFIG_DVB_M88DS3103=m + +# +# Multistandard (cable + terrestrial) frontends +# +CONFIG_DVB_DRXK=m +CONFIG_DVB_TDA18271C2DD=m +CONFIG_DVB_SI2165=m +CONFIG_DVB_MN88472=m +CONFIG_DVB_MN88473=m + +# +# DVB-S (satellite) frontends +# +CONFIG_DVB_CX24110=m +CONFIG_DVB_CX24123=m +CONFIG_DVB_MT312=m +CONFIG_DVB_ZL10036=m +CONFIG_DVB_ZL10039=m +CONFIG_DVB_S5H1420=m +CONFIG_DVB_STV0288=m +CONFIG_DVB_STB6000=m +CONFIG_DVB_STV0299=m +CONFIG_DVB_STV6110=m +CONFIG_DVB_STV0900=m +CONFIG_DVB_TDA8083=m +CONFIG_DVB_TDA10086=m +CONFIG_DVB_TDA8261=m +CONFIG_DVB_VES1X93=m +CONFIG_DVB_TUNER_ITD1000=m +CONFIG_DVB_TUNER_CX24113=m +CONFIG_DVB_TDA826X=m +CONFIG_DVB_TUA6100=m +CONFIG_DVB_CX24116=m +CONFIG_DVB_CX24117=m +CONFIG_DVB_CX24120=m +CONFIG_DVB_SI21XX=m +CONFIG_DVB_TS2020=m +CONFIG_DVB_DS3000=m +CONFIG_DVB_MB86A16=m +CONFIG_DVB_TDA10071=m + +# +# DVB-T (terrestrial) frontends +# +CONFIG_DVB_SP887X=m +CONFIG_DVB_CX22700=m +CONFIG_DVB_CX22702=m +CONFIG_DVB_S5H1432=m +CONFIG_DVB_DRXD=m +CONFIG_DVB_L64781=m +CONFIG_DVB_TDA1004X=m +CONFIG_DVB_NXT6000=m +CONFIG_DVB_MT352=m +CONFIG_DVB_ZL10353=m +CONFIG_DVB_DIB3000MB=m +CONFIG_DVB_DIB3000MC=m +CONFIG_DVB_DIB7000M=m +CONFIG_DVB_DIB7000P=m +CONFIG_DVB_DIB9000=m +CONFIG_DVB_TDA10048=m +CONFIG_DVB_AF9013=m +CONFIG_DVB_EC100=m +CONFIG_DVB_STV0367=m +CONFIG_DVB_CXD2820R=m +CONFIG_DVB_CXD2841ER=m +CONFIG_DVB_RTL2830=m +CONFIG_DVB_RTL2832=m +CONFIG_DVB_RTL2832_SDR=m +CONFIG_DVB_SI2168=m +CONFIG_DVB_AS102_FE=m +CONFIG_DVB_ZD1301_DEMOD=m +CONFIG_DVB_GP8PSK_FE=m +CONFIG_DVB_CXD2880=m + +# +# DVB-C (cable) frontends +# +CONFIG_DVB_VES1820=m +CONFIG_DVB_TDA10021=m +CONFIG_DVB_TDA10023=m +CONFIG_DVB_STV0297=m + +# +# ATSC (North American/Korean Terrestrial/Cable DTV) frontends +# +CONFIG_DVB_NXT200X=m +CONFIG_DVB_OR51211=m +CONFIG_DVB_OR51132=m +CONFIG_DVB_BCM3510=m +CONFIG_DVB_LGDT330X=m +CONFIG_DVB_LGDT3305=m +CONFIG_DVB_LGDT3306A=m +CONFIG_DVB_LG2160=m +CONFIG_DVB_S5H1409=m +CONFIG_DVB_AU8522=m +CONFIG_DVB_AU8522_DTV=m +CONFIG_DVB_AU8522_V4L=m +CONFIG_DVB_S5H1411=m +CONFIG_DVB_MXL692=m + +# +# ISDB-T (terrestrial) frontends +# +CONFIG_DVB_S921=m +CONFIG_DVB_DIB8000=m +CONFIG_DVB_MB86A20S=m + +# +# ISDB-S (satellite) & ISDB-T (terrestrial) frontends +# +CONFIG_DVB_TC90522=m +CONFIG_DVB_MN88443X=m + +# +# Digital terrestrial only tuners/PLL +# +CONFIG_DVB_PLL=m +CONFIG_DVB_TUNER_DIB0070=m +CONFIG_DVB_TUNER_DIB0090=m + +# +# SEC control devices for DVB-S +# +CONFIG_DVB_DRX39XYJ=m +CONFIG_DVB_LNBH25=m +CONFIG_DVB_LNBH29=m +CONFIG_DVB_LNBP21=m +CONFIG_DVB_LNBP22=m +CONFIG_DVB_ISL6405=m +CONFIG_DVB_ISL6421=m +CONFIG_DVB_ISL6423=m +CONFIG_DVB_A8293=m +CONFIG_DVB_LGS8GL5=m +CONFIG_DVB_LGS8GXX=m +CONFIG_DVB_ATBM8830=m +CONFIG_DVB_TDA665x=m +CONFIG_DVB_IX2505V=m +CONFIG_DVB_M88RS2000=m +CONFIG_DVB_AF9033=m +CONFIG_DVB_HORUS3A=m +CONFIG_DVB_ASCOT2E=m +CONFIG_DVB_HELENE=m + +# +# Common Interface (EN50221) controller drivers +# +CONFIG_DVB_CXD2099=m +CONFIG_DVB_SP2=m +# end of Customise DVB Frontends + +# +# Tools to develop new frontends +# +CONFIG_DVB_DUMMY_FE=m +# end of Media ancillary drivers + +# +# Graphics support +# +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=16 +# CONFIG_TEGRA_HOST1X is not set +CONFIG_IMX_IPUV3_CORE=m +CONFIG_DRM=m +CONFIG_DRM_MIPI_DBI=m +CONFIG_DRM_MIPI_DSI=y +CONFIG_DRM_DP_AUX_BUS=m +# CONFIG_DRM_DP_AUX_CHARDEV is not set +# CONFIG_DRM_DEBUG_SELFTEST is not set +CONFIG_DRM_KMS_HELPER=m +# CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS is not set +# CONFIG_DRM_DEBUG_MODESET_LOCK is not set +CONFIG_DRM_FBDEV_EMULATION=y +CONFIG_DRM_FBDEV_OVERALLOC=100 +# CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM is not set +CONFIG_DRM_LOAD_EDID_FIRMWARE=y +# CONFIG_DRM_DP_CEC is not set +CONFIG_DRM_TTM=m +CONFIG_DRM_VRAM_HELPER=m +CONFIG_DRM_TTM_HELPER=m +CONFIG_DRM_GEM_CMA_HELPER=y +CONFIG_DRM_KMS_CMA_HELPER=y +CONFIG_DRM_GEM_SHMEM_HELPER=y +CONFIG_DRM_SCHED=m + +# +# I2C encoder or helper chips +# +# CONFIG_DRM_I2C_CH7006 is not set +# CONFIG_DRM_I2C_SIL164 is not set +CONFIG_DRM_I2C_NXP_TDA998X=m +CONFIG_DRM_I2C_NXP_TDA9950=m +# end of I2C encoder or helper chips + +# +# ARM devices +# +# CONFIG_DRM_HDLCD is not set +# CONFIG_DRM_MALI_DISPLAY is not set +# CONFIG_DRM_KOMEDA is not set +# end of ARM devices + +# CONFIG_DRM_RADEON is not set +# CONFIG_DRM_AMDGPU is not set +# CONFIG_DRM_NOUVEAU is not set +CONFIG_DRM_VGEM=m +# CONFIG_DRM_VKMS is not set +CONFIG_DRM_EXYNOS=m + +# +# CRTCs +# +CONFIG_DRM_EXYNOS_FIMD=y +# CONFIG_DRM_EXYNOS5433_DECON is not set +# CONFIG_DRM_EXYNOS7_DECON is not set +CONFIG_DRM_EXYNOS_MIXER=y +# CONFIG_DRM_EXYNOS_VIDI is not set + +# +# Encoders and Bridges +# +# CONFIG_DRM_EXYNOS_DPI is not set +CONFIG_DRM_EXYNOS_DSI=y +CONFIG_DRM_EXYNOS_DP=y +CONFIG_DRM_EXYNOS_HDMI=y + +# +# Sub-drivers +# +# CONFIG_DRM_EXYNOS_G2D is not set +# CONFIG_DRM_EXYNOS_FIMC is not set +# CONFIG_DRM_EXYNOS_ROTATOR is not set +# CONFIG_DRM_EXYNOS_SCALER is not set +# CONFIG_DRM_EXYNOS_GSC is not set +CONFIG_DRM_ROCKCHIP=m +CONFIG_ROCKCHIP_ANALOGIX_DP=y +# CONFIG_ROCKCHIP_CDN_DP is not set +CONFIG_ROCKCHIP_DW_HDMI=y +CONFIG_ROCKCHIP_DW_MIPI_DSI=y +# CONFIG_ROCKCHIP_INNO_HDMI is not set +# CONFIG_ROCKCHIP_LVDS is not set +# CONFIG_ROCKCHIP_RGB is not set +CONFIG_ROCKCHIP_RK3066_HDMI=y +CONFIG_DRM_UDL=m +# CONFIG_DRM_AST is not set +# CONFIG_DRM_MGAG200 is not set +# CONFIG_DRM_ARMADA is not set +# CONFIG_DRM_RCAR_DW_HDMI is not set +# CONFIG_DRM_RCAR_LVDS is not set +# CONFIG_DRM_SUN4I is not set +CONFIG_DRM_OMAP=m +# CONFIG_OMAP2_DSS_DEBUG is not set +# CONFIG_OMAP2_DSS_DEBUGFS is not set +CONFIG_OMAP2_DSS_DPI=y +CONFIG_OMAP2_DSS_VENC=y +CONFIG_OMAP2_DSS_HDMI_COMMON=y +CONFIG_OMAP4_DSS_HDMI=y +CONFIG_OMAP4_DSS_HDMI_CEC=y +CONFIG_OMAP5_DSS_HDMI=y +CONFIG_OMAP2_DSS_SDI=y +CONFIG_OMAP2_DSS_DSI=y +CONFIG_OMAP2_DSS_MIN_FCK_PER_PCK=0 +CONFIG_OMAP2_DSS_SLEEP_AFTER_VENC_RESET=y +CONFIG_DRM_TILCDC=m +CONFIG_DRM_QXL=m +CONFIG_DRM_VIRTIO_GPU=m +CONFIG_DRM_MSM=m +CONFIG_DRM_MSM_GPU_STATE=y +# CONFIG_DRM_MSM_REGISTER_LOGGING is not set +# CONFIG_DRM_MSM_GPU_SUDO is not set +CONFIG_DRM_MSM_HDMI_HDCP=y +CONFIG_DRM_MSM_DP=y +CONFIG_DRM_MSM_DSI=y +CONFIG_DRM_MSM_DSI_28NM_PHY=y +CONFIG_DRM_MSM_DSI_20NM_PHY=y +CONFIG_DRM_MSM_DSI_28NM_8960_PHY=y +CONFIG_DRM_MSM_DSI_14NM_PHY=y +CONFIG_DRM_MSM_DSI_10NM_PHY=y +CONFIG_DRM_MSM_DSI_7NM_PHY=y +# CONFIG_DRM_FSL_DCU is not set +# CONFIG_DRM_TEGRA is not set +# CONFIG_DRM_STM is not set +CONFIG_DRM_PANEL=y + +# +# Display Panels +# +# CONFIG_DRM_PANEL_ABT_Y030XX067A is not set +CONFIG_DRM_PANEL_ARM_VERSATILE=m +CONFIG_DRM_PANEL_ASUS_Z00T_TM5P5_NT35596=m +CONFIG_DRM_PANEL_BOE_HIMAX8279D=m +CONFIG_DRM_PANEL_BOE_TV101WUM_NL6=m +CONFIG_DRM_PANEL_DSI_CM=m +# CONFIG_DRM_PANEL_LVDS is not set +CONFIG_DRM_PANEL_SIMPLE=m +CONFIG_DRM_PANEL_EDP=m +CONFIG_DRM_PANEL_ELIDA_KD35T133=m +CONFIG_DRM_PANEL_FEIXIN_K101_IM2BA02=m +# CONFIG_DRM_PANEL_FEIYANG_FY07024DI26A30D is not set +CONFIG_DRM_PANEL_ILITEK_IL9322=m +CONFIG_DRM_PANEL_ILITEK_ILI9341=m +CONFIG_DRM_PANEL_ILITEK_ILI9881C=m +CONFIG_DRM_PANEL_INNOLUX_EJ030NA=m +# CONFIG_DRM_PANEL_INNOLUX_P079ZCA is not set +# CONFIG_DRM_PANEL_JDI_LT070ME05000 is not set +# CONFIG_DRM_PANEL_KHADAS_TS050 is not set +# CONFIG_DRM_PANEL_KINGDISPLAY_KD097D04 is not set +# CONFIG_DRM_PANEL_LEADTEK_LTK050H3146W is not set +CONFIG_DRM_PANEL_LEADTEK_LTK500HD1829=m +# CONFIG_DRM_PANEL_SAMSUNG_LD9040 is not set +# CONFIG_DRM_PANEL_LG_LB035Q02 is not set +# CONFIG_DRM_PANEL_LG_LG4573 is not set +# CONFIG_DRM_PANEL_NEC_NL8048HL11 is not set +CONFIG_DRM_PANEL_NOVATEK_NT35510=m +# CONFIG_DRM_PANEL_NOVATEK_NT36672A is not set +# CONFIG_DRM_PANEL_NOVATEK_NT39016 is not set +CONFIG_DRM_PANEL_MANTIX_MLAF057WE51=m +# CONFIG_DRM_PANEL_OLIMEX_LCD_OLINUXINO is not set +# CONFIG_DRM_PANEL_ORISETECH_OTM8009A is not set +CONFIG_DRM_PANEL_OSD_OSD101T2587_53TS=m +# CONFIG_DRM_PANEL_PANASONIC_VVX10F034N00 is not set +CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN=m +# CONFIG_DRM_PANEL_RAYDIUM_RM67191 is not set +# CONFIG_DRM_PANEL_RAYDIUM_RM68200 is not set +# CONFIG_DRM_PANEL_RONBO_RB070D30 is not set +CONFIG_DRM_PANEL_SAMSUNG_ATNA33XC20=m +CONFIG_DRM_PANEL_SAMSUNG_DB7430=m +# CONFIG_DRM_PANEL_SAMSUNG_S6D16D0 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6D27A1 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6E3HA2 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6E63J0X03 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6E63M0 is not set +CONFIG_DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01=m +# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set +# CONFIG_DRM_PANEL_SAMSUNG_SOFEF00 is not set +# CONFIG_DRM_PANEL_SEIKO_43WVF1G is not set +# CONFIG_DRM_PANEL_SHARP_LQ101R1SX01 is not set +# CONFIG_DRM_PANEL_SHARP_LS037V7DW01 is not set +# CONFIG_DRM_PANEL_SHARP_LS043T1LE01 is not set +# CONFIG_DRM_PANEL_SHARP_LS060T1SX01 is not set +# CONFIG_DRM_PANEL_SITRONIX_ST7701 is not set +# CONFIG_DRM_PANEL_SITRONIX_ST7703 is not set +# CONFIG_DRM_PANEL_SITRONIX_ST7789V is not set +CONFIG_DRM_PANEL_SONY_ACX424AKP=m +# CONFIG_DRM_PANEL_SONY_ACX565AKM is not set +# CONFIG_DRM_PANEL_TDO_TL070WSH30 is not set +# CONFIG_DRM_PANEL_TPO_TD028TTEC1 is not set +# CONFIG_DRM_PANEL_TPO_TD043MTEA1 is not set +# CONFIG_DRM_PANEL_TPO_TPG110 is not set +# CONFIG_DRM_PANEL_TRULY_NT35597_WQXGA is not set +# CONFIG_DRM_PANEL_VISIONOX_RM69299 is not set +CONFIG_DRM_PANEL_WIDECHIPS_WS2401=m +CONFIG_DRM_PANEL_XINPENG_XPP055C272=m +# end of Display Panels + +CONFIG_DRM_BRIDGE=y +CONFIG_DRM_PANEL_BRIDGE=y + +# +# Display Interface Bridges +# +CONFIG_DRM_CDNS_DSI=m +CONFIG_DRM_CHIPONE_ICN6211=m +CONFIG_DRM_CHRONTEL_CH7033=m +CONFIG_DRM_CROS_EC_ANX7688=m +CONFIG_DRM_DISPLAY_CONNECTOR=m +CONFIG_DRM_LONTIUM_LT8912B=m +CONFIG_DRM_LONTIUM_LT9611=m +CONFIG_DRM_LONTIUM_LT9611UXC=m +CONFIG_DRM_ITE_IT66121=m +CONFIG_DRM_LVDS_CODEC=m +# CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set +CONFIG_DRM_NWL_MIPI_DSI=m +# CONFIG_DRM_NXP_PTN3460 is not set +# CONFIG_DRM_PARADE_PS8622 is not set +CONFIG_DRM_PARADE_PS8640=m +# CONFIG_DRM_SIL_SII8620 is not set +# CONFIG_DRM_SII902X is not set +# CONFIG_DRM_SII9234 is not set +CONFIG_DRM_SIMPLE_BRIDGE=m +# CONFIG_DRM_THINE_THC63LVD1024 is not set +CONFIG_DRM_TOSHIBA_TC358762=m +# CONFIG_DRM_TOSHIBA_TC358764 is not set +# CONFIG_DRM_TOSHIBA_TC358767 is not set +CONFIG_DRM_TOSHIBA_TC358768=m +CONFIG_DRM_TOSHIBA_TC358775=m +# CONFIG_DRM_TI_TFP410 is not set +CONFIG_DRM_TI_SN65DSI83=m +# CONFIG_DRM_TI_SN65DSI86 is not set +CONFIG_DRM_TI_TPD12S015=m +CONFIG_DRM_ANALOGIX_ANX6345=m +# CONFIG_DRM_ANALOGIX_ANX78XX is not set +CONFIG_DRM_ANALOGIX_DP=m +# CONFIG_DRM_ANALOGIX_ANX7625 is not set +# CONFIG_DRM_I2C_ADV7511 is not set +CONFIG_DRM_CDNS_MHDP8546=m +CONFIG_DRM_DW_HDMI=m +# CONFIG_DRM_DW_HDMI_AHB_AUDIO is not set +# CONFIG_DRM_DW_HDMI_I2S_AUDIO is not set +CONFIG_DRM_DW_HDMI_CEC=m +CONFIG_DRM_DW_MIPI_DSI=m +# end of Display Interface Bridges + +# CONFIG_DRM_STI is not set +CONFIG_DRM_IMX=m +# CONFIG_DRM_IMX_PARALLEL_DISPLAY is not set +# CONFIG_DRM_IMX_TVE is not set +CONFIG_DRM_IMX_LDB=m +CONFIG_DRM_IMX_HDMI=m +CONFIG_DRM_V3D=m +CONFIG_DRM_VC4=m +# CONFIG_DRM_VC4_HDMI_CEC is not set +CONFIG_DRM_ETNAVIV=m +CONFIG_DRM_ETNAVIV_THERMAL=y +# CONFIG_DRM_MXSFB is not set +# CONFIG_DRM_ARCPGU is not set +CONFIG_DRM_BOCHS=m +CONFIG_DRM_CIRRUS_QEMU=m +CONFIG_DRM_GM12U320=m +CONFIG_DRM_SIMPLEDRM=m +# CONFIG_TINYDRM_HX8357D is not set +# CONFIG_TINYDRM_ILI9225 is not set +# CONFIG_TINYDRM_ILI9341 is not set +CONFIG_TINYDRM_ILI9486=m +# CONFIG_TINYDRM_MI0283QT is not set +# CONFIG_TINYDRM_REPAPER is not set +# CONFIG_TINYDRM_ST7586 is not set +# CONFIG_TINYDRM_ST7735R is not set +# CONFIG_DRM_PL111 is not set +# CONFIG_DRM_TVE200 is not set +# CONFIG_DRM_XEN_FRONTEND is not set +CONFIG_DRM_LIMA=m +CONFIG_DRM_PANFROST=m +CONFIG_DRM_MCDE=m +CONFIG_DRM_TIDSS=m +CONFIG_DRM_GUD=m +CONFIG_DRM_LEGACY=y +# CONFIG_DRM_TDFX is not set +# CONFIG_DRM_R128 is not set +# CONFIG_DRM_MGA is not set +CONFIG_DRM_VIA=m +CONFIG_DRM_SAVAGE=m +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y + +# +# Frame buffer Devices +# +CONFIG_FB_CMDLINE=y +CONFIG_FB_NOTIFY=y +CONFIG_FB=y +CONFIG_FIRMWARE_EDID=y +CONFIG_FB_DDC=m +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FB_SYS_FILLRECT=y +CONFIG_FB_SYS_COPYAREA=y +CONFIG_FB_SYS_IMAGEBLIT=y +# CONFIG_FB_FOREIGN_ENDIAN is not set +CONFIG_FB_SYS_FOPS=y +CONFIG_FB_DEFERRED_IO=y +CONFIG_FB_SVGALIB=m +CONFIG_FB_BACKLIGHT=m +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_TILEBLITTING=y + +# +# Frame buffer hardware drivers +# +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_PM2 is not set +CONFIG_FB_ARMCLCD=y +# CONFIG_FB_IMX is not set +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_IMSTT is not set +# CONFIG_FB_UVESA is not set +CONFIG_FB_EFI=y +# CONFIG_FB_OPENCORES is not set +# CONFIG_FB_S1D13XXX is not set +CONFIG_FB_NVIDIA=m +# CONFIG_FB_NVIDIA_I2C is not set +# CONFIG_FB_NVIDIA_DEBUG is not set +CONFIG_FB_NVIDIA_BACKLIGHT=y +CONFIG_FB_RIVA=m +# CONFIG_FB_RIVA_I2C is not set +# CONFIG_FB_RIVA_DEBUG is not set +CONFIG_FB_RIVA_BACKLIGHT=y +# CONFIG_FB_I740 is not set +# CONFIG_FB_MATROX is not set +# CONFIG_FB_RADEON is not set +# CONFIG_FB_ATY128 is not set +# CONFIG_FB_ATY is not set +CONFIG_FB_S3=m +CONFIG_FB_S3_DDC=y +# CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SIS is not set +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_KYRO is not set +CONFIG_FB_3DFX=m +# CONFIG_FB_3DFX_ACCEL is not set +CONFIG_FB_3DFX_I2C=y +# CONFIG_FB_VOODOO1 is not set +CONFIG_FB_VT8623=m +# CONFIG_FB_TRIDENT is not set +CONFIG_FB_ARK=m +CONFIG_FB_PM3=m +# CONFIG_FB_CARMINE is not set +CONFIG_FB_VT8500=y +CONFIG_FB_WM8505=y +# CONFIG_FB_WMT_GE_ROPS is not set +CONFIG_FB_SMSCUFX=m +CONFIG_FB_UDL=m +# CONFIG_FB_IBM_GXT4500 is not set +# CONFIG_FB_DA8XX is not set +# CONFIG_FB_VIRTUAL is not set +CONFIG_XEN_FBDEV_FRONTEND=y +# CONFIG_FB_METRONOME is not set +CONFIG_FB_MB862XX=m +CONFIG_FB_MB862XX_PCI_GDC=y +CONFIG_FB_MB862XX_I2C=y +CONFIG_FB_MX3=y +CONFIG_FB_SIMPLE=m +# CONFIG_FB_SSD1307 is not set +# CONFIG_FB_SM712 is not set +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +# CONFIG_LCD_CLASS_DEVICE is not set +CONFIG_BACKLIGHT_CLASS_DEVICE=y +CONFIG_BACKLIGHT_KTD253=m +CONFIG_BACKLIGHT_PWM=m +# CONFIG_BACKLIGHT_DA9052 is not set +CONFIG_BACKLIGHT_QCOM_WLED=m +CONFIG_BACKLIGHT_RT4831=m +# CONFIG_BACKLIGHT_ADP8860 is not set +# CONFIG_BACKLIGHT_ADP8870 is not set +# CONFIG_BACKLIGHT_LM3630A is not set +# CONFIG_BACKLIGHT_LM3639 is not set +# CONFIG_BACKLIGHT_LP855X is not set +CONFIG_BACKLIGHT_PANDORA=m +CONFIG_BACKLIGHT_GPIO=m +# CONFIG_BACKLIGHT_LV5207LP is not set +# CONFIG_BACKLIGHT_BD6107 is not set +# CONFIG_BACKLIGHT_ARCXCNN is not set +CONFIG_BACKLIGHT_LED=m +# end of Backlight & LCD device support + +CONFIG_VGASTATE=m +CONFIG_VIDEOMODE_HELPERS=y +CONFIG_HDMI=y + +# +# Console display driver support +# +CONFIG_DUMMY_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y +# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set +# end of Console display driver support + +# CONFIG_LOGO is not set +# end of Graphics support + +CONFIG_SOUND=m +CONFIG_SOUND_OSS_CORE=y +# CONFIG_SOUND_OSS_CORE_PRECLAIM is not set +CONFIG_SND=m +CONFIG_SND_TIMER=m +CONFIG_SND_PCM=m +CONFIG_SND_PCM_ELD=y +CONFIG_SND_PCM_IEC958=y +CONFIG_SND_DMAENGINE_PCM=m +CONFIG_SND_HWDEP=m +CONFIG_SND_SEQ_DEVICE=m +CONFIG_SND_RAWMIDI=m +CONFIG_SND_JACK=y +CONFIG_SND_JACK_INPUT_DEV=y +CONFIG_SND_OSSEMUL=y +CONFIG_SND_MIXER_OSS=m +CONFIG_SND_PCM_OSS=m +CONFIG_SND_PCM_OSS_PLUGINS=y +CONFIG_SND_PCM_TIMER=y +CONFIG_SND_HRTIMER=m +CONFIG_SND_DYNAMIC_MINORS=y +CONFIG_SND_MAX_CARDS=32 +CONFIG_SND_SUPPORT_OLD_API=y +CONFIG_SND_PROC_FS=y +CONFIG_SND_VERBOSE_PROCFS=y +# CONFIG_SND_VERBOSE_PRINTK is not set +# CONFIG_SND_DEBUG is not set +CONFIG_SND_VMASTER=y +CONFIG_SND_CTL_LED=m +CONFIG_SND_SEQUENCER=m +CONFIG_SND_SEQ_DUMMY=m +# CONFIG_SND_SEQUENCER_OSS is not set +CONFIG_SND_SEQ_HRTIMER_DEFAULT=y +CONFIG_SND_SEQ_MIDI_EVENT=m +CONFIG_SND_SEQ_MIDI=m +CONFIG_SND_SEQ_MIDI_EMUL=m +CONFIG_SND_SEQ_VIRMIDI=m +CONFIG_SND_MPU401_UART=m +CONFIG_SND_OPL3_LIB=m +CONFIG_SND_OPL3_LIB_SEQ=m +CONFIG_SND_AC97_CODEC=m +CONFIG_SND_DRIVERS=y +# CONFIG_SND_DUMMY is not set +CONFIG_SND_ALOOP=m +# CONFIG_SND_VIRMIDI is not set +# CONFIG_SND_MTPAV is not set +CONFIG_SND_MTS64=m +# CONFIG_SND_SERIAL_U16550 is not set +# CONFIG_SND_MPU401 is not set +CONFIG_SND_PORTMAN2X4=m +CONFIG_SND_AC97_POWER_SAVE=y +CONFIG_SND_AC97_POWER_SAVE_DEFAULT=0 +CONFIG_SND_PCI=y +CONFIG_SND_AD1889=m +CONFIG_SND_ALS300=m +CONFIG_SND_ALI5451=m +# CONFIG_SND_ATIIXP is not set +# CONFIG_SND_ATIIXP_MODEM is not set +# CONFIG_SND_AU8810 is not set +# CONFIG_SND_AU8820 is not set +# CONFIG_SND_AU8830 is not set +# CONFIG_SND_AW2 is not set +CONFIG_SND_AZT3328=m +# CONFIG_SND_BT87X is not set +# CONFIG_SND_CA0106 is not set +# CONFIG_SND_CMIPCI is not set +CONFIG_SND_OXYGEN_LIB=m +CONFIG_SND_OXYGEN=m +# CONFIG_SND_CS4281 is not set +# CONFIG_SND_CS46XX is not set +CONFIG_SND_CTXFI=m +CONFIG_SND_DARLA20=m +CONFIG_SND_GINA20=m +CONFIG_SND_LAYLA20=m +CONFIG_SND_DARLA24=m +CONFIG_SND_GINA24=m +CONFIG_SND_LAYLA24=m +CONFIG_SND_MONA=m +CONFIG_SND_MIA=m +CONFIG_SND_ECHO3G=m +CONFIG_SND_INDIGO=m +CONFIG_SND_INDIGOIO=m +CONFIG_SND_INDIGODJ=m +CONFIG_SND_INDIGOIOX=m +CONFIG_SND_INDIGODJX=m +CONFIG_SND_EMU10K1=m +CONFIG_SND_EMU10K1_SEQ=m +CONFIG_SND_EMU10K1X=m +# CONFIG_SND_ENS1370 is not set +# CONFIG_SND_ENS1371 is not set +CONFIG_SND_ES1938=m +CONFIG_SND_ES1968=m +CONFIG_SND_ES1968_INPUT=y +CONFIG_SND_ES1968_RADIO=y +# CONFIG_SND_FM801 is not set +# CONFIG_SND_HDSP is not set +CONFIG_SND_HDSPM=m +CONFIG_SND_ICE1712=m +# CONFIG_SND_ICE1724 is not set +# CONFIG_SND_INTEL8X0 is not set +# CONFIG_SND_INTEL8X0M is not set +# CONFIG_SND_KORG1212 is not set +CONFIG_SND_LOLA=m +CONFIG_SND_MAESTRO3=m +CONFIG_SND_MAESTRO3_INPUT=y +# CONFIG_SND_MIXART is not set +# CONFIG_SND_NM256 is not set +CONFIG_SND_PCXHR=m +CONFIG_SND_RIPTIDE=m +# CONFIG_SND_RME32 is not set +# CONFIG_SND_RME96 is not set +# CONFIG_SND_RME9652 is not set +CONFIG_SND_SONICVIBES=m +CONFIG_SND_TRIDENT=m +# CONFIG_SND_VIA82XX is not set +# CONFIG_SND_VIA82XX_MODEM is not set +CONFIG_SND_VIRTUOSO=m +# CONFIG_SND_VX222 is not set +# CONFIG_SND_YMFPCI is not set + +# +# HD-Audio +# +CONFIG_SND_HDA=m +CONFIG_SND_HDA_GENERIC_LEDS=y +# CONFIG_SND_HDA_INTEL is not set +CONFIG_SND_HDA_TEGRA=m +CONFIG_SND_HDA_HWDEP=y +CONFIG_SND_HDA_RECONFIG=y +CONFIG_SND_HDA_INPUT_BEEP=y +CONFIG_SND_HDA_INPUT_BEEP_MODE=1 +CONFIG_SND_HDA_PATCH_LOADER=y +CONFIG_SND_HDA_CODEC_REALTEK=m +CONFIG_SND_HDA_CODEC_ANALOG=m +CONFIG_SND_HDA_CODEC_SIGMATEL=m +CONFIG_SND_HDA_CODEC_VIA=m +CONFIG_SND_HDA_CODEC_HDMI=m +CONFIG_SND_HDA_CODEC_CIRRUS=m +CONFIG_SND_HDA_CODEC_CS8409=m +CONFIG_SND_HDA_CODEC_CONEXANT=m +CONFIG_SND_HDA_CODEC_CA0110=m +CONFIG_SND_HDA_CODEC_CA0132=m +CONFIG_SND_HDA_CODEC_CA0132_DSP=y +CONFIG_SND_HDA_CODEC_CMEDIA=m +CONFIG_SND_HDA_CODEC_SI3054=m +CONFIG_SND_HDA_GENERIC=m +CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0 +# end of HD-Audio + +CONFIG_SND_HDA_CORE=m +CONFIG_SND_HDA_DSP_LOADER=y +CONFIG_SND_HDA_ALIGNED_MMIO=y +CONFIG_SND_HDA_PREALLOC_SIZE=2048 +CONFIG_SND_ARM=y +# CONFIG_SND_ARMAACI is not set +CONFIG_SND_SPI=y +CONFIG_SND_USB=y +CONFIG_SND_USB_AUDIO=m +CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER=y +CONFIG_SND_USB_UA101=m +CONFIG_SND_USB_CAIAQ=m +CONFIG_SND_USB_CAIAQ_INPUT=y +CONFIG_SND_USB_6FIRE=m +CONFIG_SND_USB_HIFACE=m +CONFIG_SND_BCD2000=m +CONFIG_SND_USB_LINE6=m +CONFIG_SND_USB_POD=m +CONFIG_SND_USB_PODHD=m +CONFIG_SND_USB_TONEPORT=m +CONFIG_SND_USB_VARIAX=m +CONFIG_SND_FIREWIRE=y +CONFIG_SND_FIREWIRE_LIB=m +CONFIG_SND_DICE=m +CONFIG_SND_OXFW=m +CONFIG_SND_ISIGHT=m +CONFIG_SND_FIREWORKS=m +CONFIG_SND_BEBOB=m +CONFIG_SND_FIREWIRE_DIGI00X=m +CONFIG_SND_FIREWIRE_TASCAM=m +# CONFIG_SND_FIREWIRE_MOTU is not set +# CONFIG_SND_FIREFACE is not set +CONFIG_SND_SOC=m +CONFIG_SND_SOC_AC97_BUS=y +CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=y +CONFIG_SND_SOC_ADI=m +CONFIG_SND_SOC_ADI_AXI_I2S=m +CONFIG_SND_SOC_ADI_AXI_SPDIF=m +# CONFIG_SND_SOC_AMD_ACP is not set +# CONFIG_SND_ATMEL_SOC is not set +CONFIG_SND_BCM2835_SOC_I2S=m +CONFIG_SND_BCM63XX_I2S_WHISTLER=m +# CONFIG_SND_DESIGNWARE_I2S is not set + +# +# SoC Audio for Freescale CPUs +# + +# +# Common SoC Audio options for Freescale CPUs: +# +CONFIG_SND_SOC_FSL_ASRC=m +CONFIG_SND_SOC_FSL_SAI=m +CONFIG_SND_SOC_FSL_MQS=m +CONFIG_SND_SOC_FSL_AUDMIX=m +CONFIG_SND_SOC_FSL_SSI=m +CONFIG_SND_SOC_FSL_SPDIF=m +# CONFIG_SND_SOC_FSL_ESAI is not set +CONFIG_SND_SOC_FSL_MICFIL=m +CONFIG_SND_SOC_FSL_EASRC=m +CONFIG_SND_SOC_FSL_XCVR=m +CONFIG_SND_SOC_FSL_AUD2HTX=m +CONFIG_SND_SOC_IMX_PCM_DMA=m +CONFIG_SND_SOC_IMX_AUDMUX=m +CONFIG_SND_IMX_SOC=m +CONFIG_SND_SOC_IMX_PCM_FIQ=m + +# +# SoC Audio support for Freescale i.MX boards: +# +CONFIG_SND_SOC_EUKREA_TLV320=m +CONFIG_SND_SOC_IMX_ES8328=m +CONFIG_SND_SOC_IMX_SGTL5000=m +CONFIG_SND_SOC_IMX_SPDIF=m +# CONFIG_SND_SOC_FSL_ASOC_CARD is not set +CONFIG_SND_SOC_IMX_AUDMIX=m +CONFIG_SND_SOC_IMX_HDMI=m +CONFIG_SND_SOC_IMX_CARD=m +# end of SoC Audio for Freescale CPUs + +# CONFIG_SND_I2S_HI6210_I2S is not set +# CONFIG_SND_KIRKWOOD_SOC is not set +# CONFIG_SND_SOC_IMG is not set +# CONFIG_SND_SOC_MTK_BTCVSD is not set +CONFIG_SND_SOC_ROCKCHIP=m +CONFIG_SND_SOC_ROCKCHIP_I2S=m +CONFIG_SND_SOC_ROCKCHIP_I2S_TDM=m +# CONFIG_SND_SOC_ROCKCHIP_PDM is not set +CONFIG_SND_SOC_ROCKCHIP_SPDIF=m +CONFIG_SND_SOC_ROCKCHIP_MAX98090=m +CONFIG_SND_SOC_ROCKCHIP_RT5645=m +# CONFIG_SND_SOC_RK3288_HDMI_ANALOG is not set +# CONFIG_SND_SOC_RK3399_GRU_SOUND is not set +# CONFIG_SND_SOC_SAMSUNG is not set +# CONFIG_SND_SOC_SOF_TOPLEVEL is not set + +# +# STMicroelectronics STM32 SOC audio support +# +# end of STMicroelectronics STM32 SOC audio support + +# +# Allwinner SoC Audio support +# +CONFIG_SND_SUN4I_CODEC=m +# CONFIG_SND_SUN8I_CODEC is not set +# CONFIG_SND_SUN8I_CODEC_ANALOG is not set +# CONFIG_SND_SUN4I_I2S is not set +CONFIG_SND_SUN4I_SPDIF=m +# end of Allwinner SoC Audio support + +CONFIG_SND_SOC_TEGRA=m +CONFIG_SND_SOC_TEGRA20_AC97=m +CONFIG_SND_SOC_TEGRA20_DAS=m +CONFIG_SND_SOC_TEGRA20_I2S=m +CONFIG_SND_SOC_TEGRA20_SPDIF=m +CONFIG_SND_SOC_TEGRA30_AHUB=m +CONFIG_SND_SOC_TEGRA30_I2S=m +# CONFIG_SND_SOC_TEGRA210_AHUB is not set +# CONFIG_SND_SOC_TEGRA210_DMIC is not set +# CONFIG_SND_SOC_TEGRA210_I2S is not set +# CONFIG_SND_SOC_TEGRA186_DSPK is not set +# CONFIG_SND_SOC_TEGRA210_ADMAIF is not set +# CONFIG_SND_SOC_TEGRA210_MVC is not set +# CONFIG_SND_SOC_TEGRA210_SFC is not set +# CONFIG_SND_SOC_TEGRA210_AMX is not set +# CONFIG_SND_SOC_TEGRA210_ADX is not set +# CONFIG_SND_SOC_TEGRA210_MIXER is not set +CONFIG_SND_SOC_TEGRA_MACHINE_DRV=m +CONFIG_SND_SOC_TEGRA_RT5640=m +CONFIG_SND_SOC_TEGRA_WM8753=m +CONFIG_SND_SOC_TEGRA_WM8903=m +CONFIG_SND_SOC_TEGRA_WM9712=m +CONFIG_SND_SOC_TEGRA_TRIMSLICE=m +CONFIG_SND_SOC_TEGRA_ALC5632=m +CONFIG_SND_SOC_TEGRA_MAX98090=m +CONFIG_SND_SOC_TEGRA_RT5677=m +# CONFIG_SND_SOC_TEGRA_SGTL5000 is not set + +# +# Audio support for Texas Instruments SoCs +# +CONFIG_SND_SOC_TI_EDMA_PCM=m +CONFIG_SND_SOC_TI_SDMA_PCM=m +CONFIG_SND_SOC_TI_UDMA_PCM=m + +# +# Texas Instruments DAI support for: +# +CONFIG_SND_SOC_DAVINCI_MCASP=m +CONFIG_SND_SOC_OMAP_DMIC=m +CONFIG_SND_SOC_OMAP_MCBSP=m +CONFIG_SND_SOC_OMAP_MCPDM=m + +# +# Audio support for boards with Texas Instruments SoCs +# +CONFIG_SND_SOC_NOKIA_RX51=m +CONFIG_SND_SOC_OMAP3_PANDORA=m +CONFIG_SND_SOC_OMAP3_TWL4030=m +CONFIG_SND_SOC_OMAP_ABE_TWL6040=m +CONFIG_SND_SOC_OMAP_HDMI=m +# end of Audio support for Texas Instruments SoCs + +# CONFIG_SND_SOC_XILINX_I2S is not set +# CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER is not set +# CONFIG_SND_SOC_XILINX_SPDIF is not set +# CONFIG_SND_SOC_XTFPGA_I2S is not set +CONFIG_SND_SOC_I2C_AND_SPI=m + +# +# CODEC drivers +# +# CONFIG_SND_SOC_AC97_CODEC is not set +# CONFIG_SND_SOC_ADAU1372_I2C is not set +# CONFIG_SND_SOC_ADAU1372_SPI is not set +# CONFIG_SND_SOC_ADAU1701 is not set +# CONFIG_SND_SOC_ADAU1761_I2C is not set +# CONFIG_SND_SOC_ADAU1761_SPI is not set +# CONFIG_SND_SOC_ADAU7002 is not set +CONFIG_SND_SOC_ADAU7118=m +CONFIG_SND_SOC_ADAU7118_HW=m +CONFIG_SND_SOC_ADAU7118_I2C=m +# CONFIG_SND_SOC_AK4104 is not set +# CONFIG_SND_SOC_AK4118 is not set +CONFIG_SND_SOC_AK4458=m +# CONFIG_SND_SOC_AK4554 is not set +# CONFIG_SND_SOC_AK4613 is not set +# CONFIG_SND_SOC_AK4642 is not set +# CONFIG_SND_SOC_AK5386 is not set +CONFIG_SND_SOC_AK5558=m +# CONFIG_SND_SOC_ALC5623 is not set +CONFIG_SND_SOC_ALC5632=m +# CONFIG_SND_SOC_BD28623 is not set +# CONFIG_SND_SOC_BT_SCO is not set +CONFIG_SND_SOC_CROS_EC_CODEC=m +# CONFIG_SND_SOC_CS35L32 is not set +# CONFIG_SND_SOC_CS35L33 is not set +# CONFIG_SND_SOC_CS35L34 is not set +# CONFIG_SND_SOC_CS35L35 is not set +# CONFIG_SND_SOC_CS35L36 is not set +# CONFIG_SND_SOC_CS35L41_SPI is not set +# CONFIG_SND_SOC_CS35L41_I2C is not set +# CONFIG_SND_SOC_CS42L42 is not set +# CONFIG_SND_SOC_CS42L51_I2C is not set +# CONFIG_SND_SOC_CS42L52 is not set +# CONFIG_SND_SOC_CS42L56 is not set +# CONFIG_SND_SOC_CS42L73 is not set +# CONFIG_SND_SOC_CS4234 is not set +# CONFIG_SND_SOC_CS4265 is not set +# CONFIG_SND_SOC_CS4270 is not set +# CONFIG_SND_SOC_CS4271_I2C is not set +# CONFIG_SND_SOC_CS4271_SPI is not set +# CONFIG_SND_SOC_CS42XX8_I2C is not set +# CONFIG_SND_SOC_CS43130 is not set +# CONFIG_SND_SOC_CS4341 is not set +# CONFIG_SND_SOC_CS4349 is not set +# CONFIG_SND_SOC_CS53L30 is not set +# CONFIG_SND_SOC_CX2072X is not set +CONFIG_SND_SOC_DA7213=m +CONFIG_SND_SOC_DMIC=m +CONFIG_SND_SOC_HDMI_CODEC=m +# CONFIG_SND_SOC_ES7134 is not set +# CONFIG_SND_SOC_ES7241 is not set +# CONFIG_SND_SOC_ES8316 is not set +CONFIG_SND_SOC_ES8328=m +CONFIG_SND_SOC_ES8328_I2C=m +CONFIG_SND_SOC_ES8328_SPI=m +# CONFIG_SND_SOC_GTM601 is not set +CONFIG_SND_SOC_ICS43432=m +# CONFIG_SND_SOC_INNO_RK3036 is not set +# CONFIG_SND_SOC_MAX98088 is not set +CONFIG_SND_SOC_MAX98090=m +# CONFIG_SND_SOC_MAX98357A is not set +# CONFIG_SND_SOC_MAX98504 is not set +# CONFIG_SND_SOC_MAX9867 is not set +# CONFIG_SND_SOC_MAX98927 is not set +# CONFIG_SND_SOC_MAX98520 is not set +CONFIG_SND_SOC_MAX98373=m +CONFIG_SND_SOC_MAX98373_I2C=m +# CONFIG_SND_SOC_MAX98390 is not set +# CONFIG_SND_SOC_MAX9860 is not set +# CONFIG_SND_SOC_MSM8916_WCD_DIGITAL is not set +# CONFIG_SND_SOC_PCM1681 is not set +# CONFIG_SND_SOC_PCM1789_I2C is not set +# CONFIG_SND_SOC_PCM179X_I2C is not set +# CONFIG_SND_SOC_PCM179X_SPI is not set +# CONFIG_SND_SOC_PCM186X_I2C is not set +# CONFIG_SND_SOC_PCM186X_SPI is not set +# CONFIG_SND_SOC_PCM3060_I2C is not set +# CONFIG_SND_SOC_PCM3060_SPI is not set +# CONFIG_SND_SOC_PCM3168A_I2C is not set +# CONFIG_SND_SOC_PCM3168A_SPI is not set +# CONFIG_SND_SOC_PCM5102A is not set +# CONFIG_SND_SOC_PCM512x_I2C is not set +# CONFIG_SND_SOC_PCM512x_SPI is not set +CONFIG_SND_SOC_RK3328=m +CONFIG_SND_SOC_RK817=m +CONFIG_SND_SOC_RL6231=m +# CONFIG_SND_SOC_RT5616 is not set +# CONFIG_SND_SOC_RT5631 is not set +CONFIG_SND_SOC_RT5640=m +CONFIG_SND_SOC_RT5645=m +# CONFIG_SND_SOC_RT5659 is not set +CONFIG_SND_SOC_RT5677=m +CONFIG_SND_SOC_RT5677_SPI=m +# CONFIG_SND_SOC_RT9120 is not set +CONFIG_SND_SOC_SGTL5000=m +# CONFIG_SND_SOC_SIMPLE_AMPLIFIER is not set +# CONFIG_SND_SOC_SIMPLE_MUX is not set +# CONFIG_SND_SOC_SPDIF is not set +# CONFIG_SND_SOC_SSM2305 is not set +# CONFIG_SND_SOC_SSM2518 is not set +# CONFIG_SND_SOC_SSM2602_SPI is not set +# CONFIG_SND_SOC_SSM2602_I2C is not set +# CONFIG_SND_SOC_SSM4567 is not set +# CONFIG_SND_SOC_STA32X is not set +# CONFIG_SND_SOC_STA350 is not set +# CONFIG_SND_SOC_STI_SAS is not set +# CONFIG_SND_SOC_TAS2552 is not set +# CONFIG_SND_SOC_TAS2562 is not set +# CONFIG_SND_SOC_TAS2764 is not set +# CONFIG_SND_SOC_TAS2770 is not set +# CONFIG_SND_SOC_TAS5086 is not set +# CONFIG_SND_SOC_TAS571X is not set +# CONFIG_SND_SOC_TAS5720 is not set +# CONFIG_SND_SOC_TAS6424 is not set +# CONFIG_SND_SOC_TDA7419 is not set +# CONFIG_SND_SOC_TFA9879 is not set +# CONFIG_SND_SOC_TFA989X is not set +CONFIG_SND_SOC_TLV320AIC23=m +CONFIG_SND_SOC_TLV320AIC23_I2C=m +# CONFIG_SND_SOC_TLV320AIC23_SPI is not set +# CONFIG_SND_SOC_TLV320AIC31XX is not set +# CONFIG_SND_SOC_TLV320AIC32X4_I2C is not set +# CONFIG_SND_SOC_TLV320AIC32X4_SPI is not set +CONFIG_SND_SOC_TLV320AIC3X=m +# CONFIG_SND_SOC_TLV320AIC3X_I2C is not set +# CONFIG_SND_SOC_TLV320AIC3X_SPI is not set +# CONFIG_SND_SOC_TLV320ADCX140 is not set +CONFIG_SND_SOC_TS3A227E=m +# CONFIG_SND_SOC_TSCS42XX is not set +# CONFIG_SND_SOC_TSCS454 is not set +CONFIG_SND_SOC_TWL4030=m +CONFIG_SND_SOC_TWL6040=m +# CONFIG_SND_SOC_UDA1334 is not set +# CONFIG_SND_SOC_WM8510 is not set +# CONFIG_SND_SOC_WM8523 is not set +# CONFIG_SND_SOC_WM8524 is not set +# CONFIG_SND_SOC_WM8580 is not set +# CONFIG_SND_SOC_WM8711 is not set +# CONFIG_SND_SOC_WM8728 is not set +# CONFIG_SND_SOC_WM8731 is not set +# CONFIG_SND_SOC_WM8737 is not set +# CONFIG_SND_SOC_WM8741 is not set +# CONFIG_SND_SOC_WM8750 is not set +CONFIG_SND_SOC_WM8753=m +# CONFIG_SND_SOC_WM8770 is not set +# CONFIG_SND_SOC_WM8776 is not set +# CONFIG_SND_SOC_WM8782 is not set +# CONFIG_SND_SOC_WM8804_I2C is not set +# CONFIG_SND_SOC_WM8804_SPI is not set +CONFIG_SND_SOC_WM8903=m +CONFIG_SND_SOC_WM8904=m +# CONFIG_SND_SOC_WM8960 is not set +# CONFIG_SND_SOC_WM8962 is not set +# CONFIG_SND_SOC_WM8974 is not set +# CONFIG_SND_SOC_WM8978 is not set +# CONFIG_SND_SOC_WM8985 is not set +CONFIG_SND_SOC_WM9712=m +# CONFIG_SND_SOC_ZL38060 is not set +# CONFIG_SND_SOC_MAX9759 is not set +# CONFIG_SND_SOC_MT6351 is not set +# CONFIG_SND_SOC_MT6358 is not set +# CONFIG_SND_SOC_MT6660 is not set +# CONFIG_SND_SOC_NAU8315 is not set +# CONFIG_SND_SOC_NAU8540 is not set +# CONFIG_SND_SOC_NAU8810 is not set +# CONFIG_SND_SOC_NAU8821 is not set +# CONFIG_SND_SOC_NAU8822 is not set +# CONFIG_SND_SOC_NAU8824 is not set +CONFIG_SND_SOC_TPA6130A2=m +# CONFIG_SND_SOC_LPASS_WSA_MACRO is not set +# CONFIG_SND_SOC_LPASS_VA_MACRO is not set +# CONFIG_SND_SOC_LPASS_RX_MACRO is not set +# CONFIG_SND_SOC_LPASS_TX_MACRO is not set +# end of CODEC drivers + +CONFIG_SND_SIMPLE_CARD_UTILS=m +CONFIG_SND_SIMPLE_CARD=m +# CONFIG_SND_AUDIO_GRAPH_CARD is not set +# CONFIG_SND_AUDIO_GRAPH_CARD2 is not set +# CONFIG_SND_TEST_COMPONENT is not set +CONFIG_SND_SYNTH_EMUX=m +# CONFIG_SND_XEN_FRONTEND is not set +# CONFIG_SND_VIRTIO is not set +CONFIG_AC97_BUS=m + +# +# HID support +# +CONFIG_HID=m +CONFIG_HID_BATTERY_STRENGTH=y +CONFIG_HIDRAW=y +CONFIG_UHID=m +CONFIG_HID_GENERIC=m + +# +# Special HID drivers +# +CONFIG_HID_A4TECH=m +# CONFIG_HID_ACCUTOUCH is not set +CONFIG_HID_ACRUX=m +CONFIG_HID_ACRUX_FF=y +CONFIG_HID_APPLE=m +# CONFIG_HID_APPLEIR is not set +CONFIG_HID_ASUS=m +CONFIG_HID_AUREAL=m +CONFIG_HID_BELKIN=m +CONFIG_HID_BETOP_FF=m +# CONFIG_HID_BIGBEN_FF is not set +CONFIG_HID_CHERRY=m +CONFIG_HID_CHICONY=m +CONFIG_HID_CORSAIR=m +CONFIG_HID_COUGAR=m +CONFIG_HID_MACALLY=m +CONFIG_HID_PRODIKEYS=m +CONFIG_HID_CMEDIA=m +CONFIG_HID_CP2112=m +CONFIG_HID_CREATIVE_SB0540=m +CONFIG_HID_CYPRESS=m +CONFIG_HID_DRAGONRISE=m +CONFIG_DRAGONRISE_FF=y +CONFIG_HID_EMS_FF=m +# CONFIG_HID_ELAN is not set +CONFIG_HID_ELECOM=m +CONFIG_HID_ELO=m +CONFIG_HID_EZKEY=m +CONFIG_HID_FT260=m +CONFIG_HID_GEMBIRD=m +# CONFIG_HID_GFRM is not set +CONFIG_HID_GLORIOUS=m +CONFIG_HID_HOLTEK=m +CONFIG_HOLTEK_FF=y +# CONFIG_HID_GOOGLE_HAMMER is not set +# CONFIG_HID_VIVALDI is not set +# CONFIG_HID_GT683R is not set +CONFIG_HID_KEYTOUCH=m +CONFIG_HID_KYE=m +CONFIG_HID_UCLOGIC=m +CONFIG_HID_WALTOP=m +# CONFIG_HID_VIEWSONIC is not set +# CONFIG_HID_XIAOMI is not set +CONFIG_HID_GYRATION=m +CONFIG_HID_ICADE=m +# CONFIG_HID_ITE is not set +CONFIG_HID_JABRA=m +CONFIG_HID_TWINHAN=m +CONFIG_HID_KENSINGTON=m +CONFIG_HID_LCPOWER=m +CONFIG_HID_LED=m +CONFIG_HID_LENOVO=m +CONFIG_HID_LOGITECH=m +CONFIG_HID_LOGITECH_DJ=m +CONFIG_HID_LOGITECH_HIDPP=m +CONFIG_LOGITECH_FF=y +CONFIG_LOGIRUMBLEPAD2_FF=y +CONFIG_LOGIG940_FF=y +CONFIG_LOGIWHEELS_FF=y +CONFIG_HID_MAGICMOUSE=m +# CONFIG_HID_MALTRON is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_REDRAGON is not set +CONFIG_HID_MICROSOFT=m +CONFIG_HID_MONTEREY=m +CONFIG_HID_MULTITOUCH=m +# CONFIG_HID_NINTENDO is not set +# CONFIG_HID_NTI is not set +CONFIG_HID_NTRIG=m +CONFIG_HID_ORTEK=m +CONFIG_HID_PANTHERLORD=m +CONFIG_PANTHERLORD_FF=y +CONFIG_HID_PENMOUNT=m +CONFIG_HID_PETALYNX=m +CONFIG_HID_PICOLCD=m +CONFIG_HID_PICOLCD_FB=y +CONFIG_HID_PICOLCD_BACKLIGHT=y +CONFIG_HID_PICOLCD_LEDS=y +CONFIG_HID_PICOLCD_CIR=y +CONFIG_HID_PLANTRONICS=m +CONFIG_HID_PLAYSTATION=m +CONFIG_PLAYSTATION_FF=y +CONFIG_HID_PRIMAX=m +# CONFIG_HID_RETRODE is not set +CONFIG_HID_ROCCAT=m +CONFIG_HID_SAITEK=m +CONFIG_HID_SAMSUNG=m +CONFIG_HID_SEMITEK=m +CONFIG_HID_SONY=m +CONFIG_SONY_FF=y +CONFIG_HID_SPEEDLINK=m +# CONFIG_HID_STEAM is not set +CONFIG_HID_STEELSERIES=m +CONFIG_HID_SUNPLUS=m +CONFIG_HID_RMI=m +CONFIG_HID_GREENASIA=m +CONFIG_GREENASIA_FF=y +CONFIG_HID_SMARTJOYPLUS=m +CONFIG_SMARTJOYPLUS_FF=y +CONFIG_HID_TIVO=m +CONFIG_HID_TOPSEED=m +CONFIG_HID_THINGM=m +CONFIG_HID_THRUSTMASTER=m +CONFIG_THRUSTMASTER_FF=y +# CONFIG_HID_UDRAW_PS3 is not set +CONFIG_HID_U2FZERO=m +CONFIG_HID_WACOM=m +CONFIG_HID_WIIMOTE=m +CONFIG_HID_XINMO=m +CONFIG_HID_ZEROPLUS=m +CONFIG_ZEROPLUS_FF=y +CONFIG_HID_ZYDACRON=m +CONFIG_HID_SENSOR_HUB=m +CONFIG_HID_SENSOR_CUSTOM_SENSOR=m +CONFIG_HID_ALPS=m +CONFIG_HID_MCP2221=m +# end of Special HID drivers + +# +# USB HID support +# +CONFIG_USB_HID=m +CONFIG_HID_PID=y +CONFIG_USB_HIDDEV=y + +# +# USB HID Boot Protocol drivers +# +# CONFIG_USB_KBD is not set +# CONFIG_USB_MOUSE is not set +# end of USB HID Boot Protocol drivers +# end of USB HID support + +# +# I2C HID support +# +# CONFIG_I2C_HID_OF is not set +# CONFIG_I2C_HID_OF_GOODIX is not set +# end of I2C HID support +# end of HID support + +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=m +CONFIG_USB_LED_TRIG=y +CONFIG_USB_ULPI_BUS=m +CONFIG_USB_CONN_GPIO=m +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=m +CONFIG_USB_PCI=y +CONFIG_USB_ANNOUNCE_NEW_DEVICES=y + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_FEW_INIT_RETRIES is not set +CONFIG_USB_DYNAMIC_MINORS=y +# CONFIG_USB_OTG is not set +# CONFIG_USB_OTG_PRODUCTLIST is not set +# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set +CONFIG_USB_LEDS_TRIGGER_USBPORT=m +CONFIG_USB_AUTOSUSPEND_DELAY=2 +CONFIG_USB_MON=m + +# +# USB Host Controller Drivers +# +# CONFIG_USB_C67X00_HCD is not set +CONFIG_USB_XHCI_HCD=m +# CONFIG_USB_XHCI_DBGCAP is not set +CONFIG_USB_XHCI_PCI=m +# CONFIG_USB_XHCI_PCI_RENESAS is not set +CONFIG_USB_XHCI_PLATFORM=m +CONFIG_USB_XHCI_MVEBU=m +CONFIG_USB_XHCI_TEGRA=m +CONFIG_USB_EHCI_HCD=m +CONFIG_USB_EHCI_ROOT_HUB_TT=y +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHCI_PCI=m +CONFIG_USB_EHCI_FSL=m +CONFIG_USB_EHCI_HCD_OMAP=m +CONFIG_USB_EHCI_HCD_ORION=m +CONFIG_USB_EHCI_TEGRA=m +CONFIG_USB_EHCI_EXYNOS=m +CONFIG_USB_EHCI_HCD_PLATFORM=m +# CONFIG_USB_OXU210HP_HCD is not set +# CONFIG_USB_ISP116X_HCD is not set +# CONFIG_USB_FOTG210_HCD is not set +# CONFIG_USB_MAX3421_HCD is not set +CONFIG_USB_OHCI_HCD=m +CONFIG_USB_OHCI_HCD_OMAP3=m +CONFIG_USB_OHCI_HCD_PCI=m +# CONFIG_USB_OHCI_HCD_SSB is not set +CONFIG_USB_OHCI_EXYNOS=m +CONFIG_USB_OHCI_HCD_PLATFORM=m +# CONFIG_USB_UHCI_HCD is not set +CONFIG_USB_UHCI_SUPPORT_NON_PCI_HC=y +CONFIG_USB_UHCI_PLATFORM=y +CONFIG_USB_U132_HCD=m +# CONFIG_USB_SL811_HCD is not set +# CONFIG_USB_R8A66597_HCD is not set +# CONFIG_USB_HCD_BCMA is not set +# CONFIG_USB_HCD_SSB is not set +# CONFIG_USB_HCD_TEST_MODE is not set + +# +# USB Device Class drivers +# +CONFIG_USB_ACM=m +CONFIG_USB_PRINTER=m +CONFIG_USB_WDM=m +CONFIG_USB_TMC=m + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# +CONFIG_USB_STORAGE=m +# CONFIG_USB_STORAGE_DEBUG is not set +CONFIG_USB_STORAGE_REALTEK=m +CONFIG_REALTEK_AUTOPM=y +CONFIG_USB_STORAGE_DATAFAB=m +CONFIG_USB_STORAGE_FREECOM=m +CONFIG_USB_STORAGE_ISD200=m +CONFIG_USB_STORAGE_USBAT=m +CONFIG_USB_STORAGE_SDDR09=m +CONFIG_USB_STORAGE_SDDR55=m +CONFIG_USB_STORAGE_JUMPSHOT=m +CONFIG_USB_STORAGE_ALAUDA=m +CONFIG_USB_STORAGE_ONETOUCH=m +CONFIG_USB_STORAGE_KARMA=m +CONFIG_USB_STORAGE_CYPRESS_ATACB=m +CONFIG_USB_STORAGE_ENE_UB6250=m +CONFIG_USB_UAS=m + +# +# USB Imaging devices +# +CONFIG_USB_MDC800=m +CONFIG_USB_MICROTEK=m +# CONFIG_USBIP_CORE is not set +CONFIG_USB_CDNS_SUPPORT=m +CONFIG_USB_CDNS3=m +# CONFIG_USB_CDNS3_GADGET is not set +# CONFIG_USB_CDNS3_HOST is not set +CONFIG_USB_CDNS3_IMX=m +CONFIG_USB_MUSB_HDRC=m +# CONFIG_USB_MUSB_HOST is not set +# CONFIG_USB_MUSB_GADGET is not set +CONFIG_USB_MUSB_DUAL_ROLE=y + +# +# Platform Glue Layer +# +CONFIG_USB_MUSB_SUNXI=m +CONFIG_USB_MUSB_TUSB6010=m +CONFIG_USB_MUSB_OMAP2PLUS=m +CONFIG_USB_MUSB_AM35X=m +CONFIG_USB_MUSB_DSPS=m + +# +# MUSB DMA mode +# +# CONFIG_MUSB_PIO_ONLY is not set +CONFIG_USB_INVENTRA_DMA=y +CONFIG_USB_TI_CPPI41_DMA=y +CONFIG_USB_TUSB_OMAP_DMA=y +CONFIG_USB_DWC3=m +# CONFIG_USB_DWC3_ULPI is not set +# CONFIG_USB_DWC3_HOST is not set +# CONFIG_USB_DWC3_GADGET is not set +CONFIG_USB_DWC3_DUAL_ROLE=y + +# +# Platform Glue Driver Support +# +CONFIG_USB_DWC3_OMAP=m +CONFIG_USB_DWC3_EXYNOS=m +CONFIG_USB_DWC3_HAPS=m +CONFIG_USB_DWC3_OF_SIMPLE=m +CONFIG_USB_DWC2=m +# CONFIG_USB_DWC2_HOST is not set + +# +# Gadget/Dual-role mode requires USB Gadget support to be enabled +# +# CONFIG_USB_DWC2_PERIPHERAL is not set +CONFIG_USB_DWC2_DUAL_ROLE=y +# CONFIG_USB_DWC2_PCI is not set +# CONFIG_USB_DWC2_DEBUG is not set +# CONFIG_USB_DWC2_TRACK_MISSED_SOFS is not set +CONFIG_USB_CHIPIDEA=m +CONFIG_USB_CHIPIDEA_UDC=y +CONFIG_USB_CHIPIDEA_HOST=y +CONFIG_USB_CHIPIDEA_PCI=m +CONFIG_USB_CHIPIDEA_MSM=m +CONFIG_USB_CHIPIDEA_IMX=m +CONFIG_USB_CHIPIDEA_GENERIC=m +CONFIG_USB_CHIPIDEA_TEGRA=m +# CONFIG_USB_ISP1760 is not set + +# +# USB port drivers +# +# CONFIG_USB_USS720 is not set +CONFIG_USB_SERIAL=m +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_SIMPLE=m +CONFIG_USB_SERIAL_AIRCABLE=m +CONFIG_USB_SERIAL_ARK3116=m +CONFIG_USB_SERIAL_BELKIN=m +CONFIG_USB_SERIAL_CH341=m +CONFIG_USB_SERIAL_WHITEHEAT=m +CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m +CONFIG_USB_SERIAL_CP210X=m +CONFIG_USB_SERIAL_CYPRESS_M8=m +CONFIG_USB_SERIAL_EMPEG=m +CONFIG_USB_SERIAL_FTDI_SIO=m +CONFIG_USB_SERIAL_VISOR=m +CONFIG_USB_SERIAL_IPAQ=m +CONFIG_USB_SERIAL_IR=m +CONFIG_USB_SERIAL_EDGEPORT=m +CONFIG_USB_SERIAL_EDGEPORT_TI=m +CONFIG_USB_SERIAL_F81232=m +# CONFIG_USB_SERIAL_F8153X is not set +CONFIG_USB_SERIAL_GARMIN=m +CONFIG_USB_SERIAL_IPW=m +CONFIG_USB_SERIAL_IUU=m +CONFIG_USB_SERIAL_KEYSPAN_PDA=m +CONFIG_USB_SERIAL_KEYSPAN=m +CONFIG_USB_SERIAL_KLSI=m +CONFIG_USB_SERIAL_KOBIL_SCT=m +CONFIG_USB_SERIAL_MCT_U232=m +CONFIG_USB_SERIAL_METRO=m +CONFIG_USB_SERIAL_MOS7720=m +CONFIG_USB_SERIAL_MOS7715_PARPORT=y +CONFIG_USB_SERIAL_MOS7840=m +CONFIG_USB_SERIAL_MXUPORT=m +CONFIG_USB_SERIAL_NAVMAN=m +CONFIG_USB_SERIAL_PL2303=m +CONFIG_USB_SERIAL_OTI6858=m +CONFIG_USB_SERIAL_QCAUX=m +CONFIG_USB_SERIAL_QUALCOMM=m +CONFIG_USB_SERIAL_SPCP8X5=m +CONFIG_USB_SERIAL_SAFE=m +# CONFIG_USB_SERIAL_SAFE_PADDED is not set +CONFIG_USB_SERIAL_SIERRAWIRELESS=m +CONFIG_USB_SERIAL_SYMBOL=m +CONFIG_USB_SERIAL_TI=m +CONFIG_USB_SERIAL_CYBERJACK=m +CONFIG_USB_SERIAL_WWAN=m +CONFIG_USB_SERIAL_OPTION=m +CONFIG_USB_SERIAL_OMNINET=m +CONFIG_USB_SERIAL_OPTICON=m +CONFIG_USB_SERIAL_XSENS_MT=m +CONFIG_USB_SERIAL_WISHBONE=m +CONFIG_USB_SERIAL_SSU100=m +CONFIG_USB_SERIAL_QT2=m +# CONFIG_USB_SERIAL_UPD78F0730 is not set +# CONFIG_USB_SERIAL_XR is not set +CONFIG_USB_SERIAL_DEBUG=m + +# +# USB Miscellaneous drivers +# +CONFIG_USB_EMI62=m +CONFIG_USB_EMI26=m +CONFIG_USB_ADUTUX=m +CONFIG_USB_SEVSEG=m +CONFIG_USB_LEGOTOWER=m +CONFIG_USB_LCD=m +CONFIG_USB_CYPRESS_CY7C63=m +CONFIG_USB_CYTHERM=m +CONFIG_USB_IDMOUSE=m +CONFIG_USB_FTDI_ELAN=m +CONFIG_USB_APPLEDISPLAY=m +CONFIG_APPLE_MFI_FASTCHARGE=m +CONFIG_USB_SISUSBVGA=m +CONFIG_USB_LD=m +CONFIG_USB_TRANCEVIBRATOR=m +CONFIG_USB_IOWARRIOR=m +CONFIG_USB_TEST=m +CONFIG_USB_EHSET_TEST_FIXTURE=m +CONFIG_USB_ISIGHTFW=m +CONFIG_USB_YUREX=m +CONFIG_USB_EZUSB_FX2=m +# CONFIG_USB_HUB_USB251XB is not set +CONFIG_USB_HSIC_USB3503=m +# CONFIG_USB_HSIC_USB4604 is not set +# CONFIG_USB_LINK_LAYER_TEST is not set +CONFIG_USB_CHAOSKEY=m +# CONFIG_USB_ATM is not set + +# +# USB Physical Layer drivers +# +CONFIG_USB_PHY=y +CONFIG_NOP_USB_XCEIV=m +CONFIG_AM335X_CONTROL_USB=m +CONFIG_AM335X_PHY_USB=m +CONFIG_TWL6030_USB=m +# CONFIG_USB_GPIO_VBUS is not set +# CONFIG_USB_ISP1301 is not set +CONFIG_USB_MXS_PHY=m +CONFIG_USB_TEGRA_PHY=m +CONFIG_USB_ULPI=y +CONFIG_USB_ULPI_VIEWPORT=y +# end of USB Physical Layer drivers + +CONFIG_USB_GADGET=m +# CONFIG_USB_GADGET_DEBUG is not set +# CONFIG_USB_GADGET_DEBUG_FILES is not set +# CONFIG_USB_GADGET_DEBUG_FS is not set +CONFIG_USB_GADGET_VBUS_DRAW=2 +CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 +# CONFIG_U_SERIAL_CONSOLE is not set + +# +# USB Peripheral Controller +# +# CONFIG_USB_FUSB300 is not set +# CONFIG_USB_FOTG210_UDC is not set +# CONFIG_USB_GR_UDC is not set +# CONFIG_USB_R8A66597 is not set +# CONFIG_USB_PXA27X is not set +# CONFIG_USB_MV_UDC is not set +# CONFIG_USB_MV_U3D is not set +# CONFIG_USB_SNP_UDC_PLAT is not set +# CONFIG_USB_M66592 is not set +# CONFIG_USB_BDC_UDC is not set +# CONFIG_USB_AMD5536UDC is not set +# CONFIG_USB_NET2272 is not set +CONFIG_USB_NET2280=m +# CONFIG_USB_GOKU is not set +# CONFIG_USB_EG20T is not set +# CONFIG_USB_GADGET_XILINX is not set +CONFIG_USB_MAX3420_UDC=m +CONFIG_USB_TEGRA_XUDC=m +# CONFIG_USB_DUMMY_HCD is not set +# end of USB Peripheral Controller + +CONFIG_USB_LIBCOMPOSITE=m +CONFIG_USB_F_ACM=m +CONFIG_USB_F_SS_LB=m +CONFIG_USB_U_SERIAL=m +CONFIG_USB_U_ETHER=m +CONFIG_USB_U_AUDIO=m +CONFIG_USB_F_SERIAL=m +CONFIG_USB_F_OBEX=m +CONFIG_USB_F_NCM=m +CONFIG_USB_F_ECM=m +CONFIG_USB_F_PHONET=m +CONFIG_USB_F_EEM=m +CONFIG_USB_F_SUBSET=m +CONFIG_USB_F_RNDIS=m +CONFIG_USB_F_MASS_STORAGE=m +CONFIG_USB_F_FS=m +CONFIG_USB_F_UAC1=m +CONFIG_USB_F_UAC2=m +CONFIG_USB_F_UVC=m +CONFIG_USB_F_MIDI=m +CONFIG_USB_F_HID=m +CONFIG_USB_F_PRINTER=m +CONFIG_USB_CONFIGFS=m +CONFIG_USB_CONFIGFS_SERIAL=y +CONFIG_USB_CONFIGFS_ACM=y +CONFIG_USB_CONFIGFS_OBEX=y +CONFIG_USB_CONFIGFS_NCM=y +CONFIG_USB_CONFIGFS_ECM=y +CONFIG_USB_CONFIGFS_ECM_SUBSET=y +CONFIG_USB_CONFIGFS_RNDIS=y +CONFIG_USB_CONFIGFS_EEM=y +CONFIG_USB_CONFIGFS_PHONET=y +CONFIG_USB_CONFIGFS_MASS_STORAGE=y +CONFIG_USB_CONFIGFS_F_LB_SS=y +CONFIG_USB_CONFIGFS_F_FS=y +CONFIG_USB_CONFIGFS_F_UAC1=y +# CONFIG_USB_CONFIGFS_F_UAC1_LEGACY is not set +CONFIG_USB_CONFIGFS_F_UAC2=y +CONFIG_USB_CONFIGFS_F_MIDI=y +CONFIG_USB_CONFIGFS_F_HID=y +CONFIG_USB_CONFIGFS_F_UVC=y +CONFIG_USB_CONFIGFS_F_PRINTER=y +# CONFIG_USB_CONFIGFS_F_TCM is not set + +# +# USB Gadget precomposed configurations +# +# CONFIG_USB_ZERO is not set +# CONFIG_USB_AUDIO is not set +CONFIG_USB_ETH=m +CONFIG_USB_ETH_RNDIS=y +# CONFIG_USB_ETH_EEM is not set +# CONFIG_USB_G_NCM is not set +CONFIG_USB_GADGETFS=m +CONFIG_USB_FUNCTIONFS=m +CONFIG_USB_FUNCTIONFS_ETH=y +CONFIG_USB_FUNCTIONFS_RNDIS=y +CONFIG_USB_FUNCTIONFS_GENERIC=y +# CONFIG_USB_MASS_STORAGE is not set +# CONFIG_USB_GADGET_TARGET is not set +CONFIG_USB_G_SERIAL=m +# CONFIG_USB_MIDI_GADGET is not set +# CONFIG_USB_G_PRINTER is not set +# CONFIG_USB_CDC_COMPOSITE is not set +CONFIG_USB_G_NOKIA=m +# CONFIG_USB_G_ACM_MS is not set +# CONFIG_USB_G_MULTI is not set +# CONFIG_USB_G_HID is not set +# CONFIG_USB_G_DBGP is not set +# CONFIG_USB_G_WEBCAM is not set +CONFIG_USB_RAW_GADGET=m +# end of USB Gadget precomposed configurations + +# CONFIG_TYPEC is not set +CONFIG_USB_ROLE_SWITCH=m +CONFIG_MMC=y +CONFIG_PWRSEQ_EMMC=y +# CONFIG_PWRSEQ_SD8787 is not set +CONFIG_PWRSEQ_SIMPLE=y +CONFIG_MMC_BLOCK=y +CONFIG_MMC_BLOCK_MINORS=256 +CONFIG_SDIO_UART=m +# CONFIG_MMC_TEST is not set +CONFIG_MMC_CRYPTO=y + +# +# MMC/SD/SDIO Host Controller Drivers +# +# CONFIG_MMC_DEBUG is not set +CONFIG_MMC_ARMMMCI=m +CONFIG_MMC_STM32_SDMMC=y +CONFIG_MMC_SDHCI=m +CONFIG_MMC_SDHCI_IO_ACCESSORS=y +CONFIG_MMC_SDHCI_PCI=m +CONFIG_MMC_RICOH_MMC=y +CONFIG_MMC_SDHCI_PLTFM=m +# CONFIG_MMC_SDHCI_OF_ARASAN is not set +# CONFIG_MMC_SDHCI_OF_ASPEED is not set +# CONFIG_MMC_SDHCI_OF_AT91 is not set +# CONFIG_MMC_SDHCI_OF_ESDHC is not set +# CONFIG_MMC_SDHCI_OF_DWCMSHC is not set +# CONFIG_MMC_SDHCI_CADENCE is not set +CONFIG_MMC_SDHCI_ESDHC_IMX=m +CONFIG_MMC_SDHCI_TEGRA=m +CONFIG_MMC_SDHCI_S3C=m +CONFIG_MMC_SDHCI_PXAV3=m +# CONFIG_MMC_SDHCI_S3C_DMA is not set +# CONFIG_MMC_SDHCI_F_SDH30 is not set +# CONFIG_MMC_SDHCI_MILBEAUT is not set +CONFIG_MMC_SDHCI_IPROC=m +CONFIG_MMC_OMAP=m +CONFIG_MMC_OMAP_HS=m +CONFIG_MMC_ALCOR=m +# CONFIG_MMC_MXC is not set +CONFIG_MMC_TIFM_SD=m +CONFIG_MMC_MVSDIO=m +CONFIG_MMC_SPI=m +CONFIG_MMC_CB710=m +CONFIG_MMC_VIA_SDMMC=m +CONFIG_MMC_DW=m +CONFIG_MMC_DW_PLTFM=m +# CONFIG_MMC_DW_BLUEFIELD is not set +CONFIG_MMC_DW_EXYNOS=m +# CONFIG_MMC_DW_HI3798CV200 is not set +# CONFIG_MMC_DW_K3 is not set +# CONFIG_MMC_DW_PCI is not set +CONFIG_MMC_DW_ROCKCHIP=m +CONFIG_MMC_VUB300=m +CONFIG_MMC_USHC=m +CONFIG_MMC_WMT=m +# CONFIG_MMC_USDHI6ROL0 is not set +CONFIG_MMC_REALTEK_PCI=m +CONFIG_MMC_REALTEK_USB=m +CONFIG_MMC_SUNXI=m +CONFIG_MMC_CQHCI=m +CONFIG_MMC_HSQ=m +CONFIG_MMC_TOSHIBA_PCI=m +CONFIG_MMC_BCM2835=m +# CONFIG_MMC_MTK is not set +# CONFIG_MMC_SDHCI_XENON is not set +# CONFIG_MMC_SDHCI_OMAP is not set +CONFIG_MMC_SDHCI_AM654=m +CONFIG_MEMSTICK=m +# CONFIG_MEMSTICK_DEBUG is not set + +# +# MemoryStick drivers +# +# CONFIG_MEMSTICK_UNSAFE_RESUME is not set +CONFIG_MSPRO_BLOCK=m +# CONFIG_MS_BLOCK is not set + +# +# MemoryStick Host Controller Drivers +# +CONFIG_MEMSTICK_TIFM_MS=m +CONFIG_MEMSTICK_JMICRON_38X=m +CONFIG_MEMSTICK_R592=m +CONFIG_MEMSTICK_REALTEK_PCI=m +CONFIG_MEMSTICK_REALTEK_USB=m +CONFIG_NEW_LEDS=y +CONFIG_LEDS_CLASS=y +# CONFIG_LEDS_CLASS_FLASH is not set +CONFIG_LEDS_CLASS_MULTICOLOR=m +# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set + +# +# LED drivers +# +# CONFIG_LEDS_AN30259A is not set +# CONFIG_LEDS_AW2013 is not set +# CONFIG_LEDS_BCM6328 is not set +# CONFIG_LEDS_BCM6358 is not set +# CONFIG_LEDS_CR0014114 is not set +# CONFIG_LEDS_EL15203000 is not set +# CONFIG_LEDS_TURRIS_OMNIA is not set +# CONFIG_LEDS_LM3530 is not set +# CONFIG_LEDS_LM3532 is not set +# CONFIG_LEDS_LM3642 is not set +# CONFIG_LEDS_LM3692X is not set +# CONFIG_LEDS_PCA9532 is not set +CONFIG_LEDS_GPIO=m +CONFIG_LEDS_LP3944=m +# CONFIG_LEDS_LP3952 is not set +CONFIG_LEDS_LP50XX=m +CONFIG_LEDS_LP55XX_COMMON=m +# CONFIG_LEDS_LP5521 is not set +CONFIG_LEDS_LP5523=m +# CONFIG_LEDS_LP5562 is not set +# CONFIG_LEDS_LP8501 is not set +# CONFIG_LEDS_LP8860 is not set +CONFIG_LEDS_PCA955X=m +# CONFIG_LEDS_PCA955X_GPIO is not set +# CONFIG_LEDS_PCA963X is not set +CONFIG_LEDS_DA9052=m +CONFIG_LEDS_DAC124S085=m +CONFIG_LEDS_PWM=m +CONFIG_LEDS_REGULATOR=m +CONFIG_LEDS_BD2802=m +CONFIG_LEDS_LT3593=m +CONFIG_LEDS_MC13783=m +CONFIG_LEDS_NS2=y +CONFIG_LEDS_TCA6507=m +# CONFIG_LEDS_TLC591XX is not set +# CONFIG_LEDS_LM355x is not set +# CONFIG_LEDS_IS31FL319X is not set +# CONFIG_LEDS_IS31FL32XX is not set + +# +# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) +# +# CONFIG_LEDS_BLINKM is not set +# CONFIG_LEDS_SYSCON is not set +# CONFIG_LEDS_MLXREG is not set +# CONFIG_LEDS_USER is not set +CONFIG_LEDS_SPI_BYTE=m +CONFIG_LEDS_TI_LMU_COMMON=m +CONFIG_LEDS_LM3697=m + +# +# Flash and Torch LED drivers +# + +# +# LED Triggers +# +CONFIG_LEDS_TRIGGERS=y +CONFIG_LEDS_TRIGGER_TIMER=m +CONFIG_LEDS_TRIGGER_ONESHOT=m +CONFIG_LEDS_TRIGGER_DISK=y +CONFIG_LEDS_TRIGGER_MTD=y +CONFIG_LEDS_TRIGGER_HEARTBEAT=m +CONFIG_LEDS_TRIGGER_BACKLIGHT=m +CONFIG_LEDS_TRIGGER_CPU=y +CONFIG_LEDS_TRIGGER_ACTIVITY=m +CONFIG_LEDS_TRIGGER_GPIO=m +CONFIG_LEDS_TRIGGER_DEFAULT_ON=m + +# +# iptables trigger is under Netfilter config (LED target) +# +CONFIG_LEDS_TRIGGER_TRANSIENT=m +CONFIG_LEDS_TRIGGER_CAMERA=m +CONFIG_LEDS_TRIGGER_PANIC=y +# CONFIG_LEDS_TRIGGER_NETDEV is not set +# CONFIG_LEDS_TRIGGER_PATTERN is not set +CONFIG_LEDS_TRIGGER_AUDIO=m +CONFIG_LEDS_TRIGGER_TTY=m +CONFIG_ACCESSIBILITY=y +CONFIG_A11Y_BRAILLE_CONSOLE=y + +# +# Speakup console speech +# +CONFIG_SPEAKUP=m +CONFIG_SPEAKUP_SYNTH_ACNTSA=m +CONFIG_SPEAKUP_SYNTH_APOLLO=m +CONFIG_SPEAKUP_SYNTH_AUDPTR=m +CONFIG_SPEAKUP_SYNTH_BNS=m +CONFIG_SPEAKUP_SYNTH_DECTLK=m +CONFIG_SPEAKUP_SYNTH_DECEXT=m +CONFIG_SPEAKUP_SYNTH_LTLK=m +CONFIG_SPEAKUP_SYNTH_SOFT=m +CONFIG_SPEAKUP_SYNTH_SPKOUT=m +CONFIG_SPEAKUP_SYNTH_TXPRT=m +CONFIG_SPEAKUP_SYNTH_DUMMY=m +# end of Speakup console speech + +CONFIG_INFINIBAND=m +CONFIG_INFINIBAND_USER_MAD=m +CONFIG_INFINIBAND_USER_ACCESS=m +CONFIG_INFINIBAND_USER_MEM=y +CONFIG_INFINIBAND_ON_DEMAND_PAGING=y +CONFIG_INFINIBAND_ADDR_TRANS=y +CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS=y +CONFIG_INFINIBAND_MTHCA=m +CONFIG_INFINIBAND_MTHCA_DEBUG=y +CONFIG_INFINIBAND_CXGB4=m +CONFIG_MLX4_INFINIBAND=m +CONFIG_MLX5_INFINIBAND=m +CONFIG_INFINIBAND_OCRDMA=m +CONFIG_INFINIBAND_IPOIB=m +CONFIG_INFINIBAND_IPOIB_CM=y +CONFIG_INFINIBAND_IPOIB_DEBUG=y +# CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set +CONFIG_INFINIBAND_SRP=m +CONFIG_INFINIBAND_SRPT=m +CONFIG_INFINIBAND_ISER=m +CONFIG_INFINIBAND_ISERT=m +CONFIG_INFINIBAND_RTRS=m +CONFIG_INFINIBAND_RTRS_CLIENT=m +CONFIG_INFINIBAND_RTRS_SERVER=m +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +# CONFIG_EDAC is not set +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +CONFIG_RTC_CLASS=y +CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_SYSTOHC_DEVICE="rtc0" +# CONFIG_RTC_DEBUG is not set +CONFIG_RTC_NVMEM=y + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +# CONFIG_RTC_DRV_TEST is not set + +# +# I2C RTC drivers +# +# CONFIG_RTC_DRV_ABB5ZES3 is not set +# CONFIG_RTC_DRV_ABEOZ9 is not set +# CONFIG_RTC_DRV_ABX80X is not set +CONFIG_RTC_DRV_AS3722=y +CONFIG_RTC_DRV_DS1307=y +# CONFIG_RTC_DRV_DS1307_CENTURY is not set +# CONFIG_RTC_DRV_DS1374 is not set +# CONFIG_RTC_DRV_DS1672 is not set +# CONFIG_RTC_DRV_HYM8563 is not set +# CONFIG_RTC_DRV_MAX6900 is not set +CONFIG_RTC_DRV_MAX77686=y +CONFIG_RTC_DRV_RK808=y +# CONFIG_RTC_DRV_RS5C372 is not set +# CONFIG_RTC_DRV_ISL1208 is not set +# CONFIG_RTC_DRV_ISL12022 is not set +# CONFIG_RTC_DRV_ISL12026 is not set +# CONFIG_RTC_DRV_X1205 is not set +CONFIG_RTC_DRV_PCF8523=y +# CONFIG_RTC_DRV_PCF85063 is not set +# CONFIG_RTC_DRV_PCF85363 is not set +CONFIG_RTC_DRV_PCF8563=y +# CONFIG_RTC_DRV_PCF8583 is not set +# CONFIG_RTC_DRV_M41T80 is not set +CONFIG_RTC_DRV_BD70528=m +# CONFIG_RTC_DRV_BQ32K is not set +CONFIG_RTC_DRV_TWL4030=y +CONFIG_RTC_DRV_PALMAS=y +# CONFIG_RTC_DRV_S35390A is not set +# CONFIG_RTC_DRV_FM3130 is not set +# CONFIG_RTC_DRV_RX8010 is not set +# CONFIG_RTC_DRV_RX8581 is not set +# CONFIG_RTC_DRV_RX8025 is not set +# CONFIG_RTC_DRV_EM3027 is not set +# CONFIG_RTC_DRV_RV3028 is not set +# CONFIG_RTC_DRV_RV3032 is not set +# CONFIG_RTC_DRV_RV8803 is not set +CONFIG_RTC_DRV_S5M=y +# CONFIG_RTC_DRV_SD3078 is not set + +# +# SPI RTC drivers +# +# CONFIG_RTC_DRV_M41T93 is not set +# CONFIG_RTC_DRV_M41T94 is not set +# CONFIG_RTC_DRV_DS1302 is not set +# CONFIG_RTC_DRV_DS1305 is not set +# CONFIG_RTC_DRV_DS1343 is not set +# CONFIG_RTC_DRV_DS1347 is not set +# CONFIG_RTC_DRV_DS1390 is not set +# CONFIG_RTC_DRV_MAX6916 is not set +# CONFIG_RTC_DRV_R9701 is not set +# CONFIG_RTC_DRV_RX4581 is not set +# CONFIG_RTC_DRV_RS5C348 is not set +# CONFIG_RTC_DRV_MAX6902 is not set +# CONFIG_RTC_DRV_PCF2123 is not set +# CONFIG_RTC_DRV_MCP795 is not set +CONFIG_RTC_I2C_AND_SPI=y + +# +# SPI and I2C RTC drivers +# +# CONFIG_RTC_DRV_DS3232 is not set +# CONFIG_RTC_DRV_PCF2127 is not set +# CONFIG_RTC_DRV_RV3029C2 is not set +# CONFIG_RTC_DRV_RX6110 is not set + +# +# Platform RTC drivers +# +CONFIG_RTC_DRV_CMOS=m +# CONFIG_RTC_DRV_DS1286 is not set +# CONFIG_RTC_DRV_DS1511 is not set +# CONFIG_RTC_DRV_DS1553 is not set +# CONFIG_RTC_DRV_DS1685_FAMILY is not set +# CONFIG_RTC_DRV_DS1742 is not set +# CONFIG_RTC_DRV_DS2404 is not set +CONFIG_RTC_DRV_DA9052=y +CONFIG_RTC_DRV_EFI=y +# CONFIG_RTC_DRV_STK17TA8 is not set +# CONFIG_RTC_DRV_M48T86 is not set +# CONFIG_RTC_DRV_M48T35 is not set +# CONFIG_RTC_DRV_M48T59 is not set +# CONFIG_RTC_DRV_MSM6242 is not set +# CONFIG_RTC_DRV_BQ4802 is not set +# CONFIG_RTC_DRV_RP5C01 is not set +# CONFIG_RTC_DRV_V3020 is not set +# CONFIG_RTC_DRV_ZYNQMP is not set +CONFIG_RTC_DRV_CROS_EC=m + +# +# on-CPU RTC drivers +# +CONFIG_RTC_DRV_IMXDI=y +CONFIG_RTC_DRV_OMAP=y +# CONFIG_RTC_DRV_S3C is not set +CONFIG_RTC_DRV_PL030=y +CONFIG_RTC_DRV_PL031=y +CONFIG_RTC_DRV_VT8500=y +CONFIG_RTC_DRV_SUN6I=y +CONFIG_RTC_DRV_SUNXI=y +CONFIG_RTC_DRV_MV=y +CONFIG_RTC_DRV_ARMADA38X=y +# CONFIG_RTC_DRV_CADENCE is not set +# CONFIG_RTC_DRV_FTRTC010 is not set +CONFIG_RTC_DRV_MC13XXX=m +CONFIG_RTC_DRV_TEGRA=y +CONFIG_RTC_DRV_MXC=y +CONFIG_RTC_DRV_MXC_V2=m +CONFIG_RTC_DRV_SNVS=y +# CONFIG_RTC_DRV_R7301 is not set +CONFIG_RTC_DRV_RTD119X=y + +# +# HID Sensor RTC drivers +# +# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set +# CONFIG_RTC_DRV_GOLDFISH is not set +# CONFIG_RTC_DRV_MSC313 is not set +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set + +# +# DMA Devices +# +CONFIG_ASYNC_TX_ENABLE_CHANNEL_SWITCH=y +CONFIG_DMA_ENGINE=y +CONFIG_DMA_VIRTUAL_CHANNELS=y +CONFIG_DMA_OF=y +CONFIG_ALTERA_MSGDMA=m +CONFIG_AMBA_PL08X=y +# CONFIG_AXI_DMAC is not set +CONFIG_DMA_BCM2835=y +CONFIG_DMA_SUN4I=y +CONFIG_DMA_SUN6I=m +# CONFIG_DW_AXI_DMAC is not set +# CONFIG_FSL_EDMA is not set +# CONFIG_FSL_QDMA is not set +CONFIG_IMX_DMA=y +CONFIG_IMX_SDMA=y +# CONFIG_INTEL_IDMA64 is not set +CONFIG_MV_XOR=y +CONFIG_MXS_DMA=y +CONFIG_MX3_IPU=y +CONFIG_MX3_IPU_IRQS=4 +# CONFIG_NBPFAXI_DMA is not set +CONFIG_PL330_DMA=y +CONFIG_PLX_DMA=m +CONFIG_TEGRA20_APB_DMA=y +CONFIG_XILINX_ZYNQMP_DPDMA=m +# CONFIG_QCOM_HIDMA_MGMT is not set +# CONFIG_QCOM_HIDMA is not set +# CONFIG_DW_DMAC is not set +# CONFIG_DW_DMAC_PCI is not set +CONFIG_DW_EDMA=m +CONFIG_DW_EDMA_PCIE=m +CONFIG_SF_PDMA=m +CONFIG_TI_CPPI41=m +CONFIG_TI_EDMA=y +CONFIG_DMA_OMAP=y +CONFIG_TI_DMA_CROSSBAR=y + +# +# DMA Clients +# +CONFIG_ASYNC_TX_DMA=y +# CONFIG_DMATEST is not set +CONFIG_DMA_ENGINE_RAID=y + +# +# DMABUF options +# +CONFIG_SYNC_FILE=y +# CONFIG_SW_SYNC is not set +# CONFIG_UDMABUF is not set +# CONFIG_DMABUF_MOVE_NOTIFY is not set +# CONFIG_DMABUF_DEBUG is not set +# CONFIG_DMABUF_SELFTESTS is not set +# CONFIG_DMABUF_HEAPS is not set +# CONFIG_DMABUF_SYSFS_STATS is not set +# end of DMABUF options + +# CONFIG_AUXDISPLAY is not set +# CONFIG_PANEL is not set +CONFIG_UIO=m +CONFIG_UIO_CIF=m +# CONFIG_UIO_PDRV_GENIRQ is not set +# CONFIG_UIO_DMEM_GENIRQ is not set +CONFIG_UIO_AEC=m +CONFIG_UIO_SERCOS3=m +CONFIG_UIO_PCI_GENERIC=m +CONFIG_UIO_NETX=m +# CONFIG_UIO_PRUSS is not set +CONFIG_UIO_MF624=m +# CONFIG_VFIO is not set +CONFIG_IRQ_BYPASS_MANAGER=m +CONFIG_VIRT_DRIVERS=y +CONFIG_VIRTIO=m +CONFIG_VIRTIO_PCI_LIB=m +CONFIG_VIRTIO_PCI_LIB_LEGACY=m +CONFIG_VIRTIO_MENU=y +CONFIG_VIRTIO_PCI=m +CONFIG_VIRTIO_PCI_LEGACY=y +CONFIG_VIRTIO_VDPA=m +CONFIG_VIRTIO_BALLOON=m +CONFIG_VIRTIO_INPUT=m +CONFIG_VIRTIO_MMIO=m +# CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES is not set +CONFIG_VIRTIO_DMA_SHARED_BUFFER=m +CONFIG_VDPA=m +# CONFIG_VDPA_SIM is not set +CONFIG_VDPA_USER=m +CONFIG_IFCVF=m +CONFIG_MLX5_VDPA=y +CONFIG_MLX5_VDPA_NET=m +# CONFIG_VP_VDPA is not set +CONFIG_VHOST_IOTLB=m +CONFIG_VHOST_RING=m +CONFIG_VHOST=m +CONFIG_VHOST_MENU=y +CONFIG_VHOST_NET=m +CONFIG_VHOST_SCSI=m +CONFIG_VHOST_VSOCK=m +CONFIG_VHOST_VDPA=m +# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set + +# +# Microsoft Hyper-V guest support +# +# end of Microsoft Hyper-V guest support + +# +# Xen driver support +# +CONFIG_XEN_BALLOON=y +CONFIG_XEN_SCRUB_PAGES_DEFAULT=y +CONFIG_XEN_DEV_EVTCHN=m +CONFIG_XEN_BACKEND=y +CONFIG_XENFS=m +CONFIG_XEN_COMPAT_XENFS=y +CONFIG_XEN_SYS_HYPERVISOR=y +CONFIG_XEN_XENBUS_FRONTEND=y +CONFIG_XEN_GNTDEV=m +CONFIG_XEN_GRANT_DEV_ALLOC=m +# CONFIG_XEN_GRANT_DMA_ALLOC is not set +CONFIG_SWIOTLB_XEN=y +CONFIG_XEN_PCI_STUB=y +CONFIG_XEN_PCIDEV_STUB=m +CONFIG_XEN_PVCALLS_FRONTEND=m +# CONFIG_XEN_PVCALLS_BACKEND is not set +CONFIG_XEN_SCSI_BACKEND=m +CONFIG_XEN_PRIVCMD=m +CONFIG_XEN_EFI=y +CONFIG_XEN_AUTO_XLATE=y +# end of Xen driver support + +# CONFIG_GREYBUS is not set +# CONFIG_COMEDI is not set +CONFIG_STAGING=y +# CONFIG_PRISM2_USB is not set +# CONFIG_RTL8192U is not set +# CONFIG_RTLLIB is not set +# CONFIG_RTL8723BS is not set +CONFIG_R8712U=m +CONFIG_R8188EU=m +# CONFIG_RTS5208 is not set +# CONFIG_VT6655 is not set +# CONFIG_VT6656 is not set + +# +# IIO staging drivers +# + +# +# Accelerometers +# +# CONFIG_ADIS16203 is not set +# CONFIG_ADIS16240 is not set +# end of Accelerometers + +# +# Analog to digital converters +# +# CONFIG_AD7816 is not set +# CONFIG_AD7280 is not set +# end of Analog to digital converters + +# +# Analog digital bi-direction converters +# +# CONFIG_ADT7316 is not set +# end of Analog digital bi-direction converters + +# +# Capacitance to digital converters +# +# CONFIG_AD7746 is not set +# end of Capacitance to digital converters + +# +# Direct Digital Synthesis +# +# CONFIG_AD9832 is not set +# CONFIG_AD9834 is not set +# end of Direct Digital Synthesis + +# +# Network Analyzer, Impedance Converters +# +# CONFIG_AD5933 is not set +# end of Network Analyzer, Impedance Converters + +# +# Active energy metering IC +# +# CONFIG_ADE7854 is not set +# end of Active energy metering IC + +# +# Resolver to digital converters +# +# CONFIG_AD2S1210 is not set +# end of Resolver to digital converters +# end of IIO staging drivers + +# CONFIG_FB_SM750 is not set +# CONFIG_MFD_NVEC is not set +# CONFIG_STAGING_MEDIA is not set + +# +# Android +# +# end of Android + +# CONFIG_STAGING_BOARD is not set +# CONFIG_LTE_GDM724X is not set +# CONFIG_FIREWIRE_SERIAL is not set +# CONFIG_GS_FPGABOOT is not set +# CONFIG_UNISYSSPAR is not set +CONFIG_COMMON_CLK_XLNX_CLKWZRD=m +# CONFIG_FB_TFT is not set +# CONFIG_KS7010 is not set +CONFIG_BCM_VIDEOCORE=y +# CONFIG_BCM2835_VCHIQ is not set +# CONFIG_SND_BCM2835 is not set +# CONFIG_VIDEO_BCM2835 is not set +CONFIG_PI433=m +# CONFIG_XIL_AXIS_FIFO is not set +# CONFIG_FIELDBUS_DEV is not set +CONFIG_QLGE=m +CONFIG_WFX=m +# CONFIG_GOLDFISH is not set +CONFIG_CHROME_PLATFORMS=y +CONFIG_CROS_EC=m +CONFIG_CROS_EC_I2C=m +CONFIG_CROS_EC_SPI=m +CONFIG_CROS_EC_PROTO=y +CONFIG_CROS_EC_CHARDEV=m +# CONFIG_CROS_EC_LIGHTBAR is not set +CONFIG_CROS_EC_VBC=m +CONFIG_CROS_EC_DEBUGFS=m +CONFIG_CROS_EC_SENSORHUB=m +CONFIG_CROS_EC_SYSFS=m +CONFIG_CROS_USBPD_LOGGER=m +CONFIG_CROS_USBPD_NOTIFY=m +# CONFIG_MELLANOX_PLATFORM is not set +CONFIG_HAVE_CLK=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Clock driver for ARM Reference designs +# +CONFIG_CLK_ICST=y +CONFIG_CLK_SP810=y +CONFIG_CLK_VEXPRESS_OSC=y +# end of Clock driver for ARM Reference designs + +CONFIG_LMK04832=m +CONFIG_COMMON_CLK_MAX77686=m +CONFIG_COMMON_CLK_MAX9485=m +CONFIG_COMMON_CLK_RK808=m +CONFIG_COMMON_CLK_SCMI=m +CONFIG_COMMON_CLK_SI5341=m +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_SI514 is not set +# CONFIG_COMMON_CLK_SI544 is not set +# CONFIG_COMMON_CLK_SI570 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CDCE925 is not set +# CONFIG_COMMON_CLK_CS2000_CP is not set +CONFIG_COMMON_CLK_S2MPS11=m +CONFIG_CLK_TWL6040=m +CONFIG_COMMON_CLK_AXI_CLKGEN=m +CONFIG_COMMON_CLK_PALMAS=m +# CONFIG_COMMON_CLK_PWM is not set +# CONFIG_COMMON_CLK_VC5 is not set +# CONFIG_COMMON_CLK_BD718XX is not set +# CONFIG_COMMON_CLK_FIXED_MMIO is not set +CONFIG_CLK_BCM2711_DVP=y +# CONFIG_CLK_BCM2835 is not set +CONFIG_CLK_RASPBERRYPI=m +CONFIG_MXC_CLK=y +CONFIG_CLK_IMX5=y +CONFIG_CLK_IMX6Q=y +# CONFIG_CLK_IMX8MM is not set +# CONFIG_CLK_IMX8MN is not set +# CONFIG_CLK_IMX8MP is not set +# CONFIG_CLK_IMX8MQ is not set +# CONFIG_CLK_IMX8ULP is not set +CONFIG_MSTAR_MSC313_MPLL=y +CONFIG_MVEBU_CLK_COMMON=y +CONFIG_MVEBU_CLK_CPU=y +CONFIG_MVEBU_CLK_COREDIV=y +CONFIG_ARMADA_AP_CP_HELPER=y +CONFIG_ARMADA_370_CLK=y +CONFIG_ARMADA_375_CLK=y +CONFIG_ARMADA_38X_CLK=y +CONFIG_ARMADA_39X_CLK=y +CONFIG_ARMADA_XP_CLK=y +CONFIG_ARMADA_AP_CPU_CLK=y +CONFIG_COMMON_CLK_ROCKCHIP=y +CONFIG_CLK_RV110X=y +CONFIG_CLK_RK3036=y +CONFIG_CLK_RK312X=y +CONFIG_CLK_RK3188=y +CONFIG_CLK_RK322X=y +CONFIG_CLK_RK3288=y +CONFIG_COMMON_CLK_SAMSUNG=y +CONFIG_EXYNOS_4_COMMON_CLK=y +CONFIG_EXYNOS_5250_COMMON_CLK=y +CONFIG_EXYNOS_5260_COMMON_CLK=y +CONFIG_EXYNOS_5410_COMMON_CLK=y +CONFIG_EXYNOS_5420_COMMON_CLK=y +CONFIG_EXYNOS_AUDSS_CLK_CON=y +CONFIG_EXYNOS_CLKOUT=y +CONFIG_CLK_INTEL_SOCFPGA=y +CONFIG_CLK_INTEL_SOCFPGA32=y +CONFIG_CLK_SUNXI=y +CONFIG_CLK_SUNXI_CLOCKS=y +CONFIG_CLK_SUNXI_PRCM_SUN6I=y +CONFIG_CLK_SUNXI_PRCM_SUN8I=y +CONFIG_CLK_SUNXI_PRCM_SUN9I=y +CONFIG_SUNXI_CCU=y +CONFIG_SUN4I_A10_CCU=y +CONFIG_SUN5I_CCU=y +CONFIG_SUN6I_A31_CCU=y +CONFIG_SUN8I_A23_CCU=y +CONFIG_SUN8I_A33_CCU=y +CONFIG_SUN8I_A83T_CCU=y +CONFIG_SUN8I_H3_CCU=y +CONFIG_SUN8I_V3S_CCU=y +# CONFIG_SUN8I_DE2_CCU is not set +CONFIG_SUN8I_R40_CCU=y +CONFIG_SUN9I_A80_CCU=y +CONFIG_SUN8I_R_CCU=y +CONFIG_TEGRA_CLK_DFLL=y +CONFIG_TEGRA124_CLK_EMC=y +CONFIG_COMMON_CLK_TI_ADPLL=y +# CONFIG_XILINX_VCU is not set +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_TIMER_OF=y +CONFIG_TIMER_PROBE=y +CONFIG_OMAP_DM_TIMER=y +CONFIG_CLKSRC_MMIO=y +CONFIG_BCM2835_TIMER=y +CONFIG_DW_APB_TIMER=y +CONFIG_DW_APB_TIMER_OF=y +CONFIG_ROCKCHIP_TIMER=y +CONFIG_ARMADA_370_XP_TIMER=y +CONFIG_SUN4I_TIMER=y +CONFIG_SUN5I_HSTIMER=y +CONFIG_TEGRA_TIMER=y +CONFIG_VT8500_TIMER=y +CONFIG_CLKSRC_TI_32K=y +CONFIG_ARM_ARCH_TIMER=y +CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y +CONFIG_ARM_GLOBAL_TIMER=y +CONFIG_ARM_GT_INITIAL_PRESCALER_VAL=1 +CONFIG_ARM_TIMER_SP804=y +CONFIG_CLKSRC_ARM_GLOBAL_TIMER_SCHED_CLOCK=y +CONFIG_CLKSRC_EXYNOS_MCT=y +CONFIG_CLKSRC_SAMSUNG_PWM=y +CONFIG_CLKSRC_VERSATILE=y +CONFIG_CLKSRC_IMX_GPT=y +# CONFIG_MICROCHIP_PIT64B is not set +# end of Clock Source drivers + +CONFIG_MAILBOX=y +# CONFIG_ARM_MHU is not set +# CONFIG_ARM_MHU_V2 is not set +CONFIG_IMX_MBOX=m +# CONFIG_PLATFORM_MHU is not set +CONFIG_PL320_MBOX=y +# CONFIG_ARMADA_37XX_RWTM_MBOX is not set +CONFIG_OMAP2PLUS_MBOX=y +CONFIG_OMAP_MBOX_KFIFO_SIZE=256 +# CONFIG_ROCKCHIP_MBOX is not set +# CONFIG_ALTERA_MBOX is not set +CONFIG_BCM2835_MBOX=y +# CONFIG_MAILBOX_TEST is not set +# CONFIG_TEGRA_HSP_MBOX is not set +CONFIG_SUN6I_MSGBOX=m +CONFIG_IOMMU_IOVA=m +CONFIG_IOMMU_API=y +CONFIG_IOMMU_SUPPORT=y + +# +# Generic IOMMU Pagetable Support +# +CONFIG_IOMMU_IO_PGTABLE=y +CONFIG_IOMMU_IO_PGTABLE_LPAE=y +# CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set +# CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set +# end of Generic IOMMU Pagetable Support + +# CONFIG_IOMMU_DEBUGFS is not set +# CONFIG_IOMMU_DEFAULT_DMA_STRICT is not set +CONFIG_IOMMU_DEFAULT_DMA_LAZY=y +# CONFIG_IOMMU_DEFAULT_PASSTHROUGH is not set +CONFIG_OF_IOMMU=y +CONFIG_OMAP_IOMMU=y +# CONFIG_OMAP_IOMMU_DEBUG is not set +CONFIG_ROCKCHIP_IOMMU=y +# CONFIG_SUN50I_IOMMU is not set +CONFIG_TEGRA_IOMMU_SMMU=y +# CONFIG_EXYNOS_IOMMU is not set +# CONFIG_ARM_SMMU is not set + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +# CONFIG_RPMSG_QCOM_GLINK_RPM is not set +# CONFIG_RPMSG_VIRTIO is not set +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# end of Amlogic SoC drivers + +# +# Broadcom SoC drivers +# +CONFIG_BCM2835_POWER=y +CONFIG_RASPBERRYPI_POWER=y +# CONFIG_SOC_BRCMSTB is not set +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# CONFIG_QUICC_ENGINE is not set +CONFIG_FSL_RCPM=y +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +CONFIG_IMX_GPCV2_PM_DOMAINS=y +CONFIG_SOC_IMX8M=y +# end of i.MX SoC drivers + +# +# Enable LiteX SoC Builder specific drivers +# +# CONFIG_LITEX_SOC_CONTROLLER is not set +# end of Enable LiteX SoC Builder specific drivers + +# +# Qualcomm SoC drivers +# +CONFIG_QCOM_QMI_HELPERS=m +# end of Qualcomm SoC drivers + +CONFIG_ROCKCHIP_GRF=y +CONFIG_ROCKCHIP_IODOMAIN=m +CONFIG_ROCKCHIP_PM_DOMAINS=y +CONFIG_SOC_SAMSUNG=y +CONFIG_EXYNOS_ASV_ARM=y +CONFIG_EXYNOS_CHIPID=y +CONFIG_EXYNOS_PMU=y +CONFIG_EXYNOS_PMU_ARM_DRIVERS=y +CONFIG_EXYNOS_PM_DOMAINS=y +CONFIG_EXYNOS_REGULATOR_COUPLER=y +CONFIG_SUNXI_MBUS=y +CONFIG_SUNXI_SRAM=y +# CONFIG_ARCH_TEGRA_2x_SOC is not set +# CONFIG_ARCH_TEGRA_3x_SOC is not set +# CONFIG_ARCH_TEGRA_114_SOC is not set +CONFIG_ARCH_TEGRA_124_SOC=y +CONFIG_SOC_TEGRA_FUSE=y +CONFIG_SOC_TEGRA_FLOWCTRL=y +CONFIG_SOC_TEGRA_PMC=y +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +CONFIG_PM_DEVFREQ=y + +# +# DEVFREQ Governors +# +CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=m +# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set +# CONFIG_DEVFREQ_GOV_POWERSAVE is not set +CONFIG_DEVFREQ_GOV_USERSPACE=m +# CONFIG_DEVFREQ_GOV_PASSIVE is not set + +# +# DEVFREQ Drivers +# +# CONFIG_ARM_EXYNOS_BUS_DEVFREQ is not set +CONFIG_ARM_IMX_BUS_DEVFREQ=m +CONFIG_ARM_IMX8M_DDRC_DEVFREQ=m +CONFIG_ARM_TEGRA_DEVFREQ=m +# CONFIG_ARM_RK3399_DMC_DEVFREQ is not set +# CONFIG_PM_DEVFREQ_EVENT is not set +CONFIG_EXTCON=y + +# +# Extcon Device Drivers +# +# CONFIG_EXTCON_ADC_JACK is not set +CONFIG_EXTCON_FSA9480=m +# CONFIG_EXTCON_GPIO is not set +# CONFIG_EXTCON_MAX3355 is not set +CONFIG_EXTCON_PALMAS=m +CONFIG_EXTCON_PTN5150=m +# CONFIG_EXTCON_RT8973A is not set +# CONFIG_EXTCON_SM5502 is not set +CONFIG_EXTCON_USB_GPIO=m +CONFIG_EXTCON_USBC_CROS_EC=m +CONFIG_EXTCON_USBC_TUSB320=m +CONFIG_MEMORY=y +CONFIG_DDR=y +# CONFIG_ARM_PL172_MPMC is not set +CONFIG_TI_EMIF=m +CONFIG_OMAP_GPMC=y +# CONFIG_OMAP_GPMC_DEBUG is not set +CONFIG_TI_EMIF_SRAM=m +CONFIG_MVEBU_DEVBUS=y +CONFIG_PL353_SMC=y +CONFIG_SAMSUNG_MC=y +CONFIG_EXYNOS_SROM=y +CONFIG_TEGRA_MC=y +CONFIG_TEGRA124_EMC=y +CONFIG_IIO=m +CONFIG_IIO_BUFFER=y +CONFIG_IIO_BUFFER_CB=m +CONFIG_IIO_BUFFER_DMA=m +CONFIG_IIO_BUFFER_DMAENGINE=m +# CONFIG_IIO_BUFFER_HW_CONSUMER is not set +CONFIG_IIO_KFIFO_BUF=m +CONFIG_IIO_TRIGGERED_BUFFER=m +# CONFIG_IIO_CONFIGFS is not set +CONFIG_IIO_TRIGGER=y +CONFIG_IIO_CONSUMERS_PER_TRIGGER=2 +# CONFIG_IIO_SW_DEVICE is not set +# CONFIG_IIO_SW_TRIGGER is not set +# CONFIG_IIO_TRIGGERED_EVENT is not set + +# +# Accelerometers +# +# CONFIG_ADIS16201 is not set +# CONFIG_ADIS16209 is not set +# CONFIG_ADXL313_I2C is not set +# CONFIG_ADXL313_SPI is not set +# CONFIG_ADXL345_I2C is not set +# CONFIG_ADXL345_SPI is not set +# CONFIG_ADXL355_I2C is not set +# CONFIG_ADXL355_SPI is not set +# CONFIG_ADXL372_SPI is not set +# CONFIG_ADXL372_I2C is not set +# CONFIG_BMA180 is not set +# CONFIG_BMA220 is not set +CONFIG_BMA400=m +CONFIG_BMA400_I2C=m +CONFIG_BMA400_SPI=m +# CONFIG_BMC150_ACCEL is not set +# CONFIG_BMI088_ACCEL is not set +# CONFIG_DA280 is not set +# CONFIG_DA311 is not set +# CONFIG_DMARD06 is not set +# CONFIG_DMARD09 is not set +# CONFIG_DMARD10 is not set +# CONFIG_FXLS8962AF_I2C is not set +# CONFIG_FXLS8962AF_SPI is not set +CONFIG_HID_SENSOR_ACCEL_3D=m +CONFIG_IIO_ST_ACCEL_3AXIS=m +CONFIG_IIO_ST_ACCEL_I2C_3AXIS=m +CONFIG_IIO_ST_ACCEL_SPI_3AXIS=m +# CONFIG_KXSD9 is not set +# CONFIG_KXCJK1013 is not set +# CONFIG_MC3230 is not set +# CONFIG_MMA7455_I2C is not set +# CONFIG_MMA7455_SPI is not set +# CONFIG_MMA7660 is not set +CONFIG_MMA8452=m +# CONFIG_MMA9551 is not set +# CONFIG_MMA9553 is not set +# CONFIG_MXC4005 is not set +# CONFIG_MXC6255 is not set +# CONFIG_SCA3000 is not set +# CONFIG_SCA3300 is not set +# CONFIG_STK8312 is not set +# CONFIG_STK8BA50 is not set +# end of Accelerometers + +# +# Analog to digital converters +# +CONFIG_AD7091R5=m +# CONFIG_AD7124 is not set +# CONFIG_AD7192 is not set +# CONFIG_AD7266 is not set +# CONFIG_AD7291 is not set +# CONFIG_AD7292 is not set +# CONFIG_AD7298 is not set +# CONFIG_AD7476 is not set +# CONFIG_AD7606_IFACE_PARALLEL is not set +# CONFIG_AD7606_IFACE_SPI is not set +# CONFIG_AD7766 is not set +# CONFIG_AD7768_1 is not set +# CONFIG_AD7780 is not set +# CONFIG_AD7791 is not set +# CONFIG_AD7793 is not set +# CONFIG_AD7887 is not set +# CONFIG_AD7923 is not set +# CONFIG_AD7949 is not set +# CONFIG_AD799X is not set +# CONFIG_ADI_AXI_ADC is not set +CONFIG_AXP20X_ADC=m +CONFIG_AXP288_ADC=m +# CONFIG_CC10001_ADC is not set +# CONFIG_ENVELOPE_DETECTOR is not set +CONFIG_EXYNOS_ADC=m +# CONFIG_HI8435 is not set +# CONFIG_HX711 is not set +# CONFIG_INA2XX_ADC is not set +# CONFIG_IMX7D_ADC is not set +# CONFIG_IMX8QXP_ADC is not set +CONFIG_LTC2471=m +# CONFIG_LTC2485 is not set +# CONFIG_LTC2496 is not set +# CONFIG_LTC2497 is not set +# CONFIG_MAX1027 is not set +# CONFIG_MAX11100 is not set +# CONFIG_MAX1118 is not set +# CONFIG_MAX1241 is not set +# CONFIG_MAX1363 is not set +# CONFIG_MAX9611 is not set +# CONFIG_MCP320X is not set +# CONFIG_MCP3422 is not set +# CONFIG_MCP3911 is not set +# CONFIG_MEDIATEK_MT6360_ADC is not set +# CONFIG_MP2629_ADC is not set +# CONFIG_NAU7802 is not set +# CONFIG_PALMAS_GPADC is not set +CONFIG_ROCKCHIP_SARADC=m +CONFIG_SD_ADC_MODULATOR=m +# CONFIG_STMPE_ADC is not set +# CONFIG_SUN4I_GPADC is not set +# CONFIG_TI_ADC081C is not set +# CONFIG_TI_ADC0832 is not set +# CONFIG_TI_ADC084S021 is not set +# CONFIG_TI_ADC12138 is not set +# CONFIG_TI_ADC108S102 is not set +# CONFIG_TI_ADC128S052 is not set +# CONFIG_TI_ADC161S626 is not set +# CONFIG_TI_ADS1015 is not set +# CONFIG_TI_ADS7950 is not set +# CONFIG_TI_ADS8344 is not set +# CONFIG_TI_ADS8688 is not set +# CONFIG_TI_ADS124S08 is not set +# CONFIG_TI_ADS131E08 is not set +CONFIG_TI_AM335X_ADC=m +# CONFIG_TI_TLC4541 is not set +# CONFIG_TI_TSC2046 is not set +CONFIG_TWL4030_MADC=m +# CONFIG_TWL6030_GPADC is not set +# CONFIG_VF610_ADC is not set +CONFIG_VIPERBOARD_ADC=m +CONFIG_XILINX_XADC=m +# end of Analog to digital converters + +# +# Analog Front Ends +# +# CONFIG_IIO_RESCALE is not set +# end of Analog Front Ends + +# +# Amplifiers +# +# CONFIG_AD8366 is not set +# CONFIG_HMC425 is not set +# end of Amplifiers + +# +# Capacitance to digital converters +# +# CONFIG_AD7150 is not set +# end of Capacitance to digital converters + +# +# Chemical Sensors +# +# CONFIG_ATLAS_PH_SENSOR is not set +# CONFIG_ATLAS_EZO_SENSOR is not set +# CONFIG_BME680 is not set +CONFIG_CCS811=m +# CONFIG_IAQCORE is not set +CONFIG_SCD30_CORE=m +CONFIG_SCD30_I2C=m +CONFIG_SCD4X=m +# CONFIG_SENSIRION_SGP30 is not set +CONFIG_SENSIRION_SGP40=m +# CONFIG_SPS30_I2C is not set +CONFIG_SENSEAIR_SUNRISE_CO2=m +# CONFIG_VZ89X is not set +# end of Chemical Sensors + +# CONFIG_IIO_CROS_EC_SENSORS_CORE is not set + +# +# Hid Sensor IIO Common +# +CONFIG_HID_SENSOR_IIO_COMMON=m +CONFIG_HID_SENSOR_IIO_TRIGGER=m +# end of Hid Sensor IIO Common + +# +# IIO SCMI Sensors +# +CONFIG_IIO_SCMI=m +# end of IIO SCMI Sensors + +# +# SSP Sensor Common +# +# CONFIG_IIO_SSP_SENSORHUB is not set +# end of SSP Sensor Common + +CONFIG_IIO_ST_SENSORS_I2C=m +CONFIG_IIO_ST_SENSORS_SPI=m +CONFIG_IIO_ST_SENSORS_CORE=m + +# +# Digital to analog converters +# +# CONFIG_AD5064 is not set +# CONFIG_AD5360 is not set +# CONFIG_AD5380 is not set +# CONFIG_AD5421 is not set +# CONFIG_AD5446 is not set +# CONFIG_AD5449 is not set +# CONFIG_AD5592R is not set +# CONFIG_AD5593R is not set +# CONFIG_AD5504 is not set +# CONFIG_AD5624R_SPI is not set +# CONFIG_AD5686_SPI is not set +# CONFIG_AD5696_I2C is not set +# CONFIG_AD5755 is not set +# CONFIG_AD5758 is not set +# CONFIG_AD5761 is not set +# CONFIG_AD5764 is not set +# CONFIG_AD5766 is not set +# CONFIG_AD5770R is not set +# CONFIG_AD5791 is not set +# CONFIG_AD7303 is not set +# CONFIG_AD8801 is not set +# CONFIG_DPOT_DAC is not set +# CONFIG_DS4424 is not set +# CONFIG_LTC1660 is not set +# CONFIG_LTC2632 is not set +# CONFIG_M62332 is not set +# CONFIG_MAX517 is not set +# CONFIG_MAX5821 is not set +# CONFIG_MCP4725 is not set +# CONFIG_MCP4922 is not set +# CONFIG_TI_DAC082S085 is not set +# CONFIG_TI_DAC5571 is not set +# CONFIG_TI_DAC7311 is not set +# CONFIG_TI_DAC7612 is not set +# CONFIG_VF610_DAC is not set +# end of Digital to analog converters + +# +# IIO dummy driver +# +# end of IIO dummy driver + +# +# Frequency Synthesizers DDS/PLL +# + +# +# Clock Generator/Distribution +# +# CONFIG_AD9523 is not set +# end of Clock Generator/Distribution + +# +# Phase-Locked Loop (PLL) frequency synthesizers +# +# CONFIG_ADF4350 is not set +CONFIG_ADF4371=m +# CONFIG_ADRF6780 is not set +# end of Phase-Locked Loop (PLL) frequency synthesizers +# end of Frequency Synthesizers DDS/PLL + +# +# Digital gyroscope sensors +# +# CONFIG_ADIS16080 is not set +# CONFIG_ADIS16130 is not set +# CONFIG_ADIS16136 is not set +# CONFIG_ADIS16260 is not set +# CONFIG_ADXRS290 is not set +# CONFIG_ADXRS450 is not set +# CONFIG_BMG160 is not set +# CONFIG_FXAS21002C is not set +CONFIG_HID_SENSOR_GYRO_3D=m +# CONFIG_MPU3050_I2C is not set +# CONFIG_IIO_ST_GYRO_3AXIS is not set +# CONFIG_ITG3200 is not set +# end of Digital gyroscope sensors + +# +# Health Sensors +# + +# +# Heart Rate Monitors +# +# CONFIG_AFE4403 is not set +# CONFIG_AFE4404 is not set +# CONFIG_MAX30100 is not set +# CONFIG_MAX30102 is not set +# end of Heart Rate Monitors +# end of Health Sensors + +# +# Humidity sensors +# +# CONFIG_AM2315 is not set +# CONFIG_DHT11 is not set +# CONFIG_HDC100X is not set +# CONFIG_HDC2010 is not set +# CONFIG_HID_SENSOR_HUMIDITY is not set +# CONFIG_HTS221 is not set +# CONFIG_HTU21 is not set +# CONFIG_SI7005 is not set +# CONFIG_SI7020 is not set +# end of Humidity sensors + +# +# Inertial measurement units +# +# CONFIG_ADIS16400 is not set +# CONFIG_ADIS16460 is not set +# CONFIG_ADIS16475 is not set +# CONFIG_ADIS16480 is not set +# CONFIG_BMI160_I2C is not set +# CONFIG_BMI160_SPI is not set +# CONFIG_FXOS8700_I2C is not set +# CONFIG_FXOS8700_SPI is not set +# CONFIG_KMX61 is not set +CONFIG_INV_ICM42600=m +CONFIG_INV_ICM42600_I2C=m +CONFIG_INV_ICM42600_SPI=m +# CONFIG_INV_MPU6050_I2C is not set +# CONFIG_INV_MPU6050_SPI is not set +# CONFIG_IIO_ST_LSM6DSX is not set +# CONFIG_IIO_ST_LSM9DS0 is not set +# end of Inertial measurement units + +# +# Light sensors +# +# CONFIG_ADJD_S311 is not set +# CONFIG_ADUX1020 is not set +# CONFIG_AL3010 is not set +# CONFIG_AL3320A is not set +# CONFIG_APDS9300 is not set +# CONFIG_APDS9960 is not set +# CONFIG_AS73211 is not set +# CONFIG_BH1750 is not set +CONFIG_BH1780=m +# CONFIG_CM32181 is not set +# CONFIG_CM3232 is not set +# CONFIG_CM3323 is not set +# CONFIG_CM3605 is not set +# CONFIG_CM36651 is not set +# CONFIG_GP2AP002 is not set +# CONFIG_GP2AP020A00F is not set +# CONFIG_IQS621_ALS is not set +# CONFIG_SENSORS_ISL29018 is not set +# CONFIG_SENSORS_ISL29028 is not set +# CONFIG_ISL29125 is not set +CONFIG_HID_SENSOR_ALS=m +CONFIG_HID_SENSOR_PROX=m +# CONFIG_JSA1212 is not set +# CONFIG_RPR0521 is not set +# CONFIG_LTR501 is not set +# CONFIG_LV0104CS is not set +# CONFIG_MAX44000 is not set +# CONFIG_MAX44009 is not set +# CONFIG_NOA1305 is not set +# CONFIG_OPT3001 is not set +# CONFIG_PA12203001 is not set +# CONFIG_SI1133 is not set +# CONFIG_SI1145 is not set +# CONFIG_STK3310 is not set +# CONFIG_ST_UVIS25 is not set +# CONFIG_TCS3414 is not set +# CONFIG_TCS3472 is not set +CONFIG_SENSORS_TSL2563=m +# CONFIG_TSL2583 is not set +# CONFIG_TSL2591 is not set +# CONFIG_TSL2772 is not set +# CONFIG_TSL4531 is not set +# CONFIG_US5182D is not set +# CONFIG_VCNL4000 is not set +# CONFIG_VCNL4035 is not set +# CONFIG_VEML6030 is not set +# CONFIG_VEML6070 is not set +# CONFIG_VL6180 is not set +# CONFIG_ZOPT2201 is not set +# end of Light sensors + +# +# Magnetometer sensors +# +# CONFIG_AK8974 is not set +# CONFIG_AK8975 is not set +# CONFIG_AK09911 is not set +# CONFIG_BMC150_MAGN_I2C is not set +# CONFIG_BMC150_MAGN_SPI is not set +# CONFIG_MAG3110 is not set +CONFIG_HID_SENSOR_MAGNETOMETER_3D=m +# CONFIG_MMC35240 is not set +# CONFIG_IIO_ST_MAGN_3AXIS is not set +# CONFIG_SENSORS_HMC5843_I2C is not set +# CONFIG_SENSORS_HMC5843_SPI is not set +# CONFIG_SENSORS_RM3100_I2C is not set +# CONFIG_SENSORS_RM3100_SPI is not set +# CONFIG_YAMAHA_YAS530 is not set +# end of Magnetometer sensors + +# +# Multiplexers +# +# CONFIG_IIO_MUX is not set +# end of Multiplexers + +# +# Inclinometer sensors +# +CONFIG_HID_SENSOR_INCLINOMETER_3D=m +CONFIG_HID_SENSOR_DEVICE_ROTATION=m +# end of Inclinometer sensors + +# +# Triggers - standalone +# +# CONFIG_IIO_INTERRUPT_TRIGGER is not set +# CONFIG_IIO_SYSFS_TRIGGER is not set +# end of Triggers - standalone + +# +# Linear and angular position sensors +# +# CONFIG_IQS624_POS is not set +# CONFIG_HID_SENSOR_CUSTOM_INTEL_HINGE is not set +# end of Linear and angular position sensors + +# +# Digital potentiometers +# +CONFIG_AD5110=m +# CONFIG_AD5272 is not set +# CONFIG_DS1803 is not set +# CONFIG_MAX5432 is not set +# CONFIG_MAX5481 is not set +# CONFIG_MAX5487 is not set +# CONFIG_MCP4018 is not set +# CONFIG_MCP4131 is not set +# CONFIG_MCP4531 is not set +# CONFIG_MCP41010 is not set +# CONFIG_TPL0102 is not set +# end of Digital potentiometers + +# +# Digital potentiostats +# +# CONFIG_LMP91000 is not set +# end of Digital potentiostats + +# +# Pressure sensors +# +# CONFIG_ABP060MG is not set +# CONFIG_BMP280 is not set +# CONFIG_DLHL60D is not set +CONFIG_DPS310=m +CONFIG_HID_SENSOR_PRESS=m +# CONFIG_HP03 is not set +# CONFIG_ICP10100 is not set +# CONFIG_MPL115_I2C is not set +# CONFIG_MPL115_SPI is not set +# CONFIG_MPL3115 is not set +# CONFIG_MS5611 is not set +# CONFIG_MS5637 is not set +# CONFIG_IIO_ST_PRESS is not set +# CONFIG_T5403 is not set +# CONFIG_HP206C is not set +# CONFIG_ZPA2326 is not set +# end of Pressure sensors + +# +# Lightning sensors +# +# CONFIG_AS3935 is not set +# end of Lightning sensors + +# +# Proximity and distance sensors +# +CONFIG_CROS_EC_MKBP_PROXIMITY=m +# CONFIG_ISL29501 is not set +# CONFIG_LIDAR_LITE_V2 is not set +# CONFIG_MB1232 is not set +# CONFIG_PING is not set +# CONFIG_RFD77402 is not set +# CONFIG_SRF04 is not set +# CONFIG_SX9310 is not set +# CONFIG_SX9500 is not set +# CONFIG_SRF08 is not set +# CONFIG_VCNL3020 is not set +# CONFIG_VL53L0X_I2C is not set +# end of Proximity and distance sensors + +# +# Resolver to digital converters +# +# CONFIG_AD2S90 is not set +# CONFIG_AD2S1200 is not set +# end of Resolver to digital converters + +# +# Temperature sensors +# +# CONFIG_IQS620AT_TEMP is not set +# CONFIG_LTC2983 is not set +# CONFIG_MAXIM_THERMOCOUPLE is not set +# CONFIG_HID_SENSOR_TEMP is not set +# CONFIG_MLX90614 is not set +# CONFIG_MLX90632 is not set +# CONFIG_TMP006 is not set +# CONFIG_TMP007 is not set +# CONFIG_TMP117 is not set +# CONFIG_TSYS01 is not set +# CONFIG_TSYS02D is not set +# CONFIG_MAX31856 is not set +# CONFIG_MAX31865 is not set +# end of Temperature sensors + +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +CONFIG_PWM=y +CONFIG_PWM_SYSFS=y +# CONFIG_PWM_DEBUG is not set +CONFIG_PWM_ATMEL_TCB=m +CONFIG_PWM_BCM2835=m +# CONFIG_PWM_CROS_EC is not set +CONFIG_PWM_DWC=m +# CONFIG_PWM_FSL_FTM is not set +# CONFIG_PWM_IMX1 is not set +# CONFIG_PWM_IMX27 is not set +CONFIG_PWM_IMX_TPM=m +# CONFIG_PWM_IQS620A is not set +CONFIG_PWM_OMAP_DMTIMER=m +# CONFIG_PWM_PCA9685 is not set +# CONFIG_PWM_RASPBERRYPI_POE is not set +CONFIG_PWM_ROCKCHIP=m +CONFIG_PWM_SAMSUNG=m +# CONFIG_PWM_STMPE is not set +CONFIG_PWM_SUN4I=m +CONFIG_PWM_TEGRA=m +CONFIG_PWM_TIECAP=m +CONFIG_PWM_TIEHRPWM=m +CONFIG_PWM_TWL=m +CONFIG_PWM_TWL_LED=m +CONFIG_PWM_VT8500=m + +# +# IRQ chip support +# +CONFIG_IRQCHIP=y +CONFIG_ARM_GIC=y +CONFIG_ARM_GIC_MAX_NR=1 +CONFIG_ARM_GIC_V2M=y +CONFIG_GIC_NON_BANKED=y +CONFIG_ARM_GIC_V3=y +CONFIG_ARM_GIC_V3_ITS=y +CONFIG_ARM_GIC_V3_ITS_PCI=y +CONFIG_ARMADA_370_XP_IRQ=y +# CONFIG_AL_FIC is not set +CONFIG_BRCMSTB_L2_IRQ=y +CONFIG_MADERA_IRQ=m +CONFIG_OMAP_IRQCHIP=y +# CONFIG_TS4800_IRQ is not set +CONFIG_IRQ_CROSSBAR=y +CONFIG_PARTITION_PERCPU=y +CONFIG_IMX_IRQSTEER=y +CONFIG_IMX_INTMUX=y +CONFIG_EXYNOS_IRQ_COMBINER=y +CONFIG_MST_IRQ=y +# end of IRQ chip support + +# CONFIG_IPACK_BUS is not set +CONFIG_ARCH_HAS_RESET_CONTROLLER=y +CONFIG_RESET_CONTROLLER=y +# CONFIG_RESET_RASPBERRYPI is not set +CONFIG_RESET_SCMI=y +CONFIG_RESET_SIMPLE=y +CONFIG_RESET_SOCFPGA=y +CONFIG_RESET_SUNXI=y +# CONFIG_RESET_TI_SYSCON is not set + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +CONFIG_GENERIC_PHY_MIPI_DPHY=y +CONFIG_PHY_CAN_TRANSCEIVER=m +CONFIG_PHY_SUN4I_USB=m +CONFIG_PHY_SUN6I_MIPI_DPHY=m +CONFIG_PHY_SUN9I_USB=m +CONFIG_PHY_SUN50I_USB3=m + +# +# PHY drivers for Broadcom platforms +# +# CONFIG_BCM_KONA_USB2_PHY is not set +# end of PHY drivers for Broadcom platforms + +CONFIG_PHY_CADENCE_TORRENT=m +# CONFIG_PHY_CADENCE_DPHY is not set +# CONFIG_PHY_CADENCE_SIERRA is not set +# CONFIG_PHY_CADENCE_SALVO is not set +# CONFIG_PHY_FSL_IMX8MQ_USB is not set +CONFIG_PHY_MIXEL_MIPI_DPHY=m +CONFIG_ARMADA375_USBCLUSTER_PHY=y +CONFIG_PHY_MVEBU_A3700_COMPHY=m +CONFIG_PHY_MVEBU_A3700_UTMI=m +CONFIG_PHY_MVEBU_A38X_COMPHY=m +CONFIG_PHY_MVEBU_CP110_COMPHY=m +CONFIG_PHY_MVEBU_CP110_UTMI=m +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_PHY_CPCAP_USB is not set +# CONFIG_PHY_MAPPHONE_MDM6600 is not set +# CONFIG_PHY_OCELOT_SERDES is not set +CONFIG_PHY_QCOM_USB_HS=m +CONFIG_PHY_QCOM_USB_HSIC=m +CONFIG_PHY_ROCKCHIP_DP=m +# CONFIG_PHY_ROCKCHIP_DPHY_RX0 is not set +CONFIG_PHY_ROCKCHIP_EMMC=m +# CONFIG_PHY_ROCKCHIP_INNO_HDMI is not set +# CONFIG_PHY_ROCKCHIP_INNO_USB2 is not set +CONFIG_PHY_ROCKCHIP_INNO_CSIDPHY=m +# CONFIG_PHY_ROCKCHIP_INNO_DSIDPHY is not set +# CONFIG_PHY_ROCKCHIP_PCIE is not set +# CONFIG_PHY_ROCKCHIP_TYPEC is not set +CONFIG_PHY_ROCKCHIP_USB=m +CONFIG_PHY_EXYNOS_DP_VIDEO=m +CONFIG_PHY_EXYNOS_MIPI_VIDEO=m +# CONFIG_PHY_EXYNOS_PCIE is not set +CONFIG_PHY_SAMSUNG_UFS=m +CONFIG_PHY_SAMSUNG_USB2=m +CONFIG_PHY_EXYNOS4210_USB2=y +CONFIG_PHY_EXYNOS4X12_USB2=y +CONFIG_PHY_EXYNOS5250_USB2=y +CONFIG_PHY_EXYNOS5_USBDRD=m +CONFIG_PHY_EXYNOS5250_SATA=m +CONFIG_PHY_TEGRA_XUSB=m +# CONFIG_PHY_DM816X_USB is not set +CONFIG_OMAP_CONTROL_PHY=m +CONFIG_OMAP_USB2=m +CONFIG_TI_PIPE3=m +CONFIG_PHY_TUSB1210=m +CONFIG_TWL4030_USB=m +CONFIG_PHY_TI_GMII_SEL=m +# end of PHY Subsystem + +# CONFIG_POWERCAP is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# CONFIG_ARM_CCI_PMU is not set +# CONFIG_ARM_CCN is not set +CONFIG_ARM_PMU=y +CONFIG_FSL_IMX8_DDR_PMU=m +# end of Performance monitor support + +CONFIG_RAS=y +CONFIG_USB4=m +# CONFIG_USB4_DEBUGFS_WRITE is not set +# CONFIG_USB4_DMA_TEST is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +CONFIG_DAX=m +CONFIG_NVMEM=y +CONFIG_NVMEM_SYSFS=y +# CONFIG_NVMEM_IMX_IIM is not set +CONFIG_NVMEM_IMX_OCOTP=m +CONFIG_ROCKCHIP_EFUSE=m +CONFIG_ROCKCHIP_OTP=m +CONFIG_NVMEM_SUNXI_SID=m +CONFIG_NVMEM_SNVS_LPGPR=m +CONFIG_NVMEM_RMEM=m + +# +# HW tracing support +# +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# end of HW tracing support + +# CONFIG_FPGA is not set +# CONFIG_FSI is not set +# CONFIG_TEE is not set +CONFIG_MULTIPLEXER=m + +# +# Multiplexer drivers +# +# CONFIG_MUX_ADG792A is not set +# CONFIG_MUX_ADGS1408 is not set +# CONFIG_MUX_GPIO is not set +# CONFIG_MUX_MMIO is not set +# end of Multiplexer drivers + +CONFIG_PM_OPP=y +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +CONFIG_INTERCONNECT=y +CONFIG_INTERCONNECT_IMX=m +# CONFIG_INTERCONNECT_IMX8MM is not set +# CONFIG_INTERCONNECT_IMX8MN is not set +# CONFIG_INTERCONNECT_IMX8MQ is not set +CONFIG_INTERCONNECT_SAMSUNG=y +CONFIG_INTERCONNECT_EXYNOS=m +CONFIG_COUNTER=m +CONFIG_INTERRUPT_CNT=m +CONFIG_TI_EQEP=m +CONFIG_FTM_QUADDEC=m +CONFIG_MICROCHIP_TCB_CAPTURE=m +# CONFIG_INTEL_QEP is not set +# CONFIG_MOST is not set +# end of Device Drivers + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +CONFIG_VALIDATE_FS_PARSER=y +CONFIG_FS_IOMAP=y +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +CONFIG_EXT4_FS=y +CONFIG_EXT4_USE_FOR_EXT2=y +CONFIG_EXT4_FS_POSIX_ACL=y +CONFIG_EXT4_FS_SECURITY=y +# CONFIG_EXT4_DEBUG is not set +CONFIG_JBD2=y +# CONFIG_JBD2_DEBUG is not set +CONFIG_FS_MBCACHE=y +CONFIG_REISERFS_FS=m +# CONFIG_REISERFS_CHECK is not set +# CONFIG_REISERFS_PROC_INFO is not set +CONFIG_REISERFS_FS_XATTR=y +CONFIG_REISERFS_FS_POSIX_ACL=y +CONFIG_REISERFS_FS_SECURITY=y +CONFIG_JFS_FS=m +CONFIG_JFS_POSIX_ACL=y +CONFIG_JFS_SECURITY=y +# CONFIG_JFS_DEBUG is not set +# CONFIG_JFS_STATISTICS is not set +CONFIG_XFS_FS=m +CONFIG_XFS_SUPPORT_V4=y +CONFIG_XFS_QUOTA=y +CONFIG_XFS_POSIX_ACL=y +CONFIG_XFS_RT=y +# CONFIG_XFS_ONLINE_SCRUB is not set +# CONFIG_XFS_WARN is not set +# CONFIG_XFS_DEBUG is not set +CONFIG_GFS2_FS=m +CONFIG_GFS2_FS_LOCKING_DLM=y +CONFIG_OCFS2_FS=m +CONFIG_OCFS2_FS_O2CB=m +CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m +CONFIG_OCFS2_FS_STATS=y +CONFIG_OCFS2_DEBUG_MASKLOG=y +# CONFIG_OCFS2_DEBUG_FS is not set +CONFIG_BTRFS_FS=m +CONFIG_BTRFS_FS_POSIX_ACL=y +# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set +# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set +# CONFIG_BTRFS_DEBUG is not set +# CONFIG_BTRFS_ASSERT is not set +# CONFIG_BTRFS_FS_REF_VERIFY is not set +CONFIG_NILFS2_FS=m +CONFIG_F2FS_FS=m +CONFIG_F2FS_STAT_FS=y +CONFIG_F2FS_FS_XATTR=y +CONFIG_F2FS_FS_POSIX_ACL=y +CONFIG_F2FS_FS_SECURITY=y +# CONFIG_F2FS_CHECK_FS is not set +# CONFIG_F2FS_FAULT_INJECTION is not set +# CONFIG_F2FS_FS_COMPRESSION is not set +# CONFIG_F2FS_IOSTAT is not set +CONFIG_FS_POSIX_ACL=y +CONFIG_EXPORTFS=y +CONFIG_EXPORTFS_BLOCK_OPS=y +CONFIG_FILE_LOCKING=y +# CONFIG_FS_ENCRYPTION is not set +CONFIG_FS_VERITY=y +# CONFIG_FS_VERITY_DEBUG is not set +# CONFIG_FS_VERITY_BUILTIN_SIGNATURES is not set +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y +CONFIG_QUOTA=y +CONFIG_QUOTA_NETLINK_INTERFACE=y +CONFIG_PRINT_QUOTA_WARNING=y +# CONFIG_QUOTA_DEBUG is not set +CONFIG_QUOTA_TREE=m +CONFIG_QFMT_V1=m +CONFIG_QFMT_V2=m +CONFIG_QUOTACTL=y +CONFIG_AUTOFS4_FS=m +CONFIG_AUTOFS_FS=m +CONFIG_FUSE_FS=m +CONFIG_CUSE=m +CONFIG_VIRTIO_FS=m +CONFIG_OVERLAY_FS=m +# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set +# CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW is not set +# CONFIG_OVERLAY_FS_INDEX is not set +# CONFIG_OVERLAY_FS_METACOPY is not set + +# +# Caches +# +CONFIG_NETFS_SUPPORT=m +CONFIG_NETFS_STATS=y +CONFIG_FSCACHE=m +CONFIG_FSCACHE_STATS=y +# CONFIG_FSCACHE_DEBUG is not set +CONFIG_CACHEFILES=m +# CONFIG_CACHEFILES_DEBUG is not set +# end of Caches + +# +# CD-ROM/DVD Filesystems +# +CONFIG_ISO9660_FS=m +CONFIG_JOLIET=y +CONFIG_ZISOFS=y +CONFIG_UDF_FS=m +# end of CD-ROM/DVD Filesystems + +# +# DOS/FAT/EXFAT/NT Filesystems +# +CONFIG_FAT_FS=y +CONFIG_MSDOS_FS=m +CONFIG_VFAT_FS=y +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +# CONFIG_FAT_DEFAULT_UTF8 is not set +CONFIG_EXFAT_FS=m +CONFIG_EXFAT_DEFAULT_IOCHARSET="utf8" +CONFIG_NTFS_FS=m +# CONFIG_NTFS_DEBUG is not set +# CONFIG_NTFS_RW is not set +CONFIG_NTFS3_FS=m +CONFIG_NTFS3_LZX_XPRESS=y +# CONFIG_NTFS3_FS_POSIX_ACL is not set +# end of DOS/FAT/EXFAT/NT Filesystems + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_PROC_CHILDREN=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +CONFIG_MEMFD_CREATE=y +CONFIG_CONFIGFS_FS=m +CONFIG_EFIVAR_FS=m +# end of Pseudo filesystems + +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +CONFIG_ADFS_FS=m +# CONFIG_ADFS_FS_RW is not set +CONFIG_AFFS_FS=m +CONFIG_ECRYPT_FS=m +CONFIG_ECRYPT_FS_MESSAGING=y +CONFIG_HFS_FS=m +CONFIG_HFSPLUS_FS=m +CONFIG_BEFS_FS=m +# CONFIG_BEFS_DEBUG is not set +CONFIG_BFS_FS=m +CONFIG_EFS_FS=m +CONFIG_JFFS2_FS=m +CONFIG_JFFS2_FS_DEBUG=0 +CONFIG_JFFS2_FS_WRITEBUFFER=y +# CONFIG_JFFS2_FS_WBUF_VERIFY is not set +CONFIG_JFFS2_SUMMARY=y +CONFIG_JFFS2_FS_XATTR=y +CONFIG_JFFS2_FS_POSIX_ACL=y +CONFIG_JFFS2_FS_SECURITY=y +CONFIG_JFFS2_COMPRESSION_OPTIONS=y +CONFIG_JFFS2_ZLIB=y +CONFIG_JFFS2_LZO=y +CONFIG_JFFS2_RTIME=y +# CONFIG_JFFS2_RUBIN is not set +# CONFIG_JFFS2_CMODE_NONE is not set +CONFIG_JFFS2_CMODE_PRIORITY=y +# CONFIG_JFFS2_CMODE_SIZE is not set +# CONFIG_JFFS2_CMODE_FAVOURLZO is not set +CONFIG_UBIFS_FS=m +CONFIG_UBIFS_FS_ADVANCED_COMPR=y +CONFIG_UBIFS_FS_LZO=y +CONFIG_UBIFS_FS_ZLIB=y +CONFIG_UBIFS_FS_ZSTD=y +# CONFIG_UBIFS_ATIME_SUPPORT is not set +CONFIG_UBIFS_FS_XATTR=y +CONFIG_UBIFS_FS_SECURITY=y +CONFIG_UBIFS_FS_AUTHENTICATION=y +# CONFIG_CRAMFS is not set +CONFIG_SQUASHFS=m +CONFIG_SQUASHFS_FILE_CACHE=y +# CONFIG_SQUASHFS_FILE_DIRECT is not set +CONFIG_SQUASHFS_DECOMP_SINGLE=y +# CONFIG_SQUASHFS_DECOMP_MULTI is not set +# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set +CONFIG_SQUASHFS_XATTR=y +CONFIG_SQUASHFS_ZLIB=y +# CONFIG_SQUASHFS_LZ4 is not set +CONFIG_SQUASHFS_LZO=y +CONFIG_SQUASHFS_XZ=y +# CONFIG_SQUASHFS_ZSTD is not set +# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set +# CONFIG_SQUASHFS_EMBEDDED is not set +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 +CONFIG_VXFS_FS=m +CONFIG_MINIX_FS=m +CONFIG_OMFS_FS=m +CONFIG_HPFS_FS=m +CONFIG_QNX4FS_FS=m +CONFIG_QNX6FS_FS=m +# CONFIG_QNX6FS_DEBUG is not set +CONFIG_ROMFS_FS=m +# CONFIG_ROMFS_BACKED_BY_BLOCK is not set +# CONFIG_ROMFS_BACKED_BY_MTD is not set +CONFIG_ROMFS_BACKED_BY_BOTH=y +CONFIG_ROMFS_ON_BLOCK=y +CONFIG_ROMFS_ON_MTD=y +# CONFIG_PSTORE is not set +CONFIG_SYSV_FS=m +CONFIG_UFS_FS=m +# CONFIG_UFS_FS_WRITE is not set +# CONFIG_UFS_DEBUG is not set +CONFIG_EROFS_FS=m +# CONFIG_EROFS_FS_DEBUG is not set +CONFIG_EROFS_FS_XATTR=y +CONFIG_EROFS_FS_POSIX_ACL=y +CONFIG_EROFS_FS_SECURITY=y +# CONFIG_EROFS_FS_ZIP is not set +CONFIG_NETWORK_FILESYSTEMS=y +CONFIG_NFS_FS=m +CONFIG_NFS_V2=m +CONFIG_NFS_V3=m +CONFIG_NFS_V3_ACL=y +CONFIG_NFS_V4=m +CONFIG_NFS_SWAP=y +CONFIG_NFS_V4_1=y +CONFIG_NFS_V4_2=y +CONFIG_PNFS_FILE_LAYOUT=m +CONFIG_PNFS_BLOCK=m +CONFIG_PNFS_FLEXFILE_LAYOUT=m +CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org" +# CONFIG_NFS_V4_1_MIGRATION is not set +CONFIG_NFS_V4_SECURITY_LABEL=y +CONFIG_NFS_FSCACHE=y +# CONFIG_NFS_USE_LEGACY_DNS is not set +CONFIG_NFS_USE_KERNEL_DNS=y +CONFIG_NFS_DEBUG=y +# CONFIG_NFS_DISABLE_UDP_SUPPORT is not set +# CONFIG_NFS_V4_2_READ_PLUS is not set +CONFIG_NFSD=m +CONFIG_NFSD_V2_ACL=y +CONFIG_NFSD_V3=y +CONFIG_NFSD_V3_ACL=y +CONFIG_NFSD_V4=y +CONFIG_NFSD_PNFS=y +CONFIG_NFSD_BLOCKLAYOUT=y +# CONFIG_NFSD_SCSILAYOUT is not set +# CONFIG_NFSD_FLEXFILELAYOUT is not set +# CONFIG_NFSD_V4_2_INTER_SSC is not set +CONFIG_NFSD_V4_SECURITY_LABEL=y +CONFIG_GRACE_PERIOD=m +CONFIG_LOCKD=m +CONFIG_LOCKD_V4=y +CONFIG_NFS_ACL_SUPPORT=m +CONFIG_NFS_COMMON=y +CONFIG_NFS_V4_2_SSC_HELPER=y +CONFIG_SUNRPC=m +CONFIG_SUNRPC_GSS=m +CONFIG_SUNRPC_BACKCHANNEL=y +CONFIG_SUNRPC_SWAP=y +CONFIG_RPCSEC_GSS_KRB5=m +CONFIG_SUNRPC_DISABLE_INSECURE_ENCTYPES=y +CONFIG_SUNRPC_DEBUG=y +CONFIG_SUNRPC_XPRT_RDMA=m +CONFIG_CEPH_FS=m +CONFIG_CEPH_FSCACHE=y +CONFIG_CEPH_FS_POSIX_ACL=y +CONFIG_CEPH_FS_SECURITY_LABEL=y +CONFIG_CIFS=m +# CONFIG_CIFS_STATS2 is not set +CONFIG_CIFS_ALLOW_INSECURE_LEGACY=y +CONFIG_CIFS_UPCALL=y +CONFIG_CIFS_XATTR=y +CONFIG_CIFS_POSIX=y +CONFIG_CIFS_DEBUG=y +# CONFIG_CIFS_DEBUG2 is not set +# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set +CONFIG_CIFS_DFS_UPCALL=y +CONFIG_CIFS_SWN_UPCALL=y +# CONFIG_CIFS_SMB_DIRECT is not set +CONFIG_CIFS_FSCACHE=y +# CONFIG_SMB_SERVER is not set +CONFIG_SMBFS_COMMON=m +CONFIG_CODA_FS=m +CONFIG_AFS_FS=m +# CONFIG_AFS_DEBUG is not set +CONFIG_AFS_FSCACHE=y +# CONFIG_AFS_DEBUG_CURSOR is not set +CONFIG_9P_FS=m +CONFIG_9P_FSCACHE=y +CONFIG_9P_FS_POSIX_ACL=y +CONFIG_9P_FS_SECURITY=y +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="utf8" +CONFIG_NLS_CODEPAGE_437=y +CONFIG_NLS_CODEPAGE_737=m +CONFIG_NLS_CODEPAGE_775=m +CONFIG_NLS_CODEPAGE_850=m +CONFIG_NLS_CODEPAGE_852=m +CONFIG_NLS_CODEPAGE_855=m +CONFIG_NLS_CODEPAGE_857=m +CONFIG_NLS_CODEPAGE_860=m +CONFIG_NLS_CODEPAGE_861=m +CONFIG_NLS_CODEPAGE_862=m +CONFIG_NLS_CODEPAGE_863=m +CONFIG_NLS_CODEPAGE_864=m +CONFIG_NLS_CODEPAGE_865=m +CONFIG_NLS_CODEPAGE_866=m +CONFIG_NLS_CODEPAGE_869=m +CONFIG_NLS_CODEPAGE_936=m +CONFIG_NLS_CODEPAGE_950=m +CONFIG_NLS_CODEPAGE_932=m +CONFIG_NLS_CODEPAGE_949=m +CONFIG_NLS_CODEPAGE_874=m +CONFIG_NLS_ISO8859_8=m +CONFIG_NLS_CODEPAGE_1250=m +CONFIG_NLS_CODEPAGE_1251=m +CONFIG_NLS_ASCII=m +CONFIG_NLS_ISO8859_1=m +CONFIG_NLS_ISO8859_2=m +CONFIG_NLS_ISO8859_3=m +CONFIG_NLS_ISO8859_4=m +CONFIG_NLS_ISO8859_5=m +CONFIG_NLS_ISO8859_6=m +CONFIG_NLS_ISO8859_7=m +CONFIG_NLS_ISO8859_9=m +CONFIG_NLS_ISO8859_13=m +CONFIG_NLS_ISO8859_14=m +CONFIG_NLS_ISO8859_15=m +CONFIG_NLS_KOI8_R=m +CONFIG_NLS_KOI8_U=m +CONFIG_NLS_MAC_ROMAN=m +CONFIG_NLS_MAC_CELTIC=m +CONFIG_NLS_MAC_CENTEURO=m +CONFIG_NLS_MAC_CROATIAN=m +CONFIG_NLS_MAC_CYRILLIC=m +CONFIG_NLS_MAC_GAELIC=m +CONFIG_NLS_MAC_GREEK=m +CONFIG_NLS_MAC_ICELAND=m +CONFIG_NLS_MAC_INUIT=m +CONFIG_NLS_MAC_ROMANIAN=m +CONFIG_NLS_MAC_TURKISH=m +CONFIG_NLS_UTF8=m +CONFIG_DLM=m +CONFIG_DLM_DEBUG=y +# CONFIG_UNICODE is not set +CONFIG_IO_WQ=y +# end of File systems + +# +# Security options +# +CONFIG_KEYS=y +CONFIG_KEYS_REQUEST_CACHE=y +# CONFIG_PERSISTENT_KEYRINGS is not set +# CONFIG_TRUSTED_KEYS is not set +# CONFIG_ENCRYPTED_KEYS is not set +# CONFIG_KEY_DH_OPERATIONS is not set +CONFIG_KEY_NOTIFICATIONS=y +CONFIG_SECURITY_DMESG_RESTRICT=y +CONFIG_SECURITY=y +CONFIG_SECURITYFS=y +CONFIG_SECURITY_NETWORK=y +# CONFIG_SECURITY_INFINIBAND is not set +CONFIG_SECURITY_NETWORK_XFRM=y +CONFIG_SECURITY_PATH=y +CONFIG_LSM_MMAP_MIN_ADDR=32768 +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +CONFIG_HARDENED_USERCOPY=y +# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set +CONFIG_FORTIFY_SOURCE=y +# CONFIG_STATIC_USERMODEHELPER is not set +CONFIG_SECURITY_SELINUX=y +# CONFIG_SECURITY_SELINUX_BOOTPARAM is not set +# CONFIG_SECURITY_SELINUX_DISABLE is not set +CONFIG_SECURITY_SELINUX_DEVELOP=y +CONFIG_SECURITY_SELINUX_AVC_STATS=y +CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=0 +CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS=9 +CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE=256 +# CONFIG_SECURITY_SMACK is not set +CONFIG_SECURITY_TOMOYO=y +CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY=2048 +CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG=1024 +# CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER is not set +CONFIG_SECURITY_TOMOYO_POLICY_LOADER="/sbin/tomoyo-init" +CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER="/sbin/init" +# CONFIG_SECURITY_TOMOYO_INSECURE_BUILTIN_SETTING is not set +CONFIG_SECURITY_APPARMOR=y +CONFIG_SECURITY_APPARMOR_HASH=y +CONFIG_SECURITY_APPARMOR_HASH_DEFAULT=y +# CONFIG_SECURITY_APPARMOR_DEBUG is not set +# CONFIG_SECURITY_LOADPIN is not set +CONFIG_SECURITY_YAMA=y +# CONFIG_SECURITY_SAFESETID is not set +# CONFIG_SECURITY_LOCKDOWN_LSM is not set +CONFIG_SECURITY_LANDLOCK=y +CONFIG_INTEGRITY=y +CONFIG_INTEGRITY_SIGNATURE=y +CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y +CONFIG_INTEGRITY_TRUSTED_KEYRING=y +CONFIG_INTEGRITY_AUDIT=y +CONFIG_IMA=y +CONFIG_IMA_MEASURE_PCR_IDX=10 +CONFIG_IMA_LSM_RULES=y +# CONFIG_IMA_TEMPLATE is not set +CONFIG_IMA_NG_TEMPLATE=y +# CONFIG_IMA_SIG_TEMPLATE is not set +CONFIG_IMA_DEFAULT_TEMPLATE="ima-ng" +# CONFIG_IMA_DEFAULT_HASH_SHA1 is not set +CONFIG_IMA_DEFAULT_HASH_SHA256=y +CONFIG_IMA_DEFAULT_HASH="sha256" +# CONFIG_IMA_WRITE_POLICY is not set +# CONFIG_IMA_READ_POLICY is not set +CONFIG_IMA_APPRAISE=y +# CONFIG_IMA_ARCH_POLICY is not set +# CONFIG_IMA_APPRAISE_BUILD_POLICY is not set +CONFIG_IMA_APPRAISE_BOOTPARAM=y +# CONFIG_IMA_APPRAISE_MODSIG is not set +CONFIG_IMA_TRUSTED_KEYRING=y +# CONFIG_IMA_BLACKLIST_KEYRING is not set +# CONFIG_IMA_LOAD_X509 is not set +CONFIG_IMA_MEASURE_ASYMMETRIC_KEYS=y +CONFIG_IMA_QUEUE_EARLY_BOOT_KEYS=y +CONFIG_IMA_DISABLE_HTABLE=y +# CONFIG_EVM is not set +# CONFIG_DEFAULT_SECURITY_SELINUX is not set +# CONFIG_DEFAULT_SECURITY_TOMOYO is not set +CONFIG_DEFAULT_SECURITY_APPARMOR=y +# CONFIG_DEFAULT_SECURITY_DAC is not set +CONFIG_LSM="yama,loadpin,safesetid,integrity,apparmor,selinux,smack,tomoyo" + +# +# Kernel hardening options +# +CONFIG_GCC_PLUGIN_STRUCTLEAK=y + +# +# Memory initialization +# +# CONFIG_INIT_STACK_NONE is not set +# CONFIG_GCC_PLUGIN_STRUCTLEAK_USER is not set +# CONFIG_GCC_PLUGIN_STRUCTLEAK_BYREF is not set +CONFIG_GCC_PLUGIN_STRUCTLEAK_BYREF_ALL=y +# CONFIG_GCC_PLUGIN_STRUCTLEAK_VERBOSE is not set +CONFIG_INIT_ON_ALLOC_DEFAULT_ON=y +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +CONFIG_CC_HAS_ZERO_CALL_USED_REGS=y +CONFIG_ZERO_CALL_USED_REGS=y +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_XOR_BLOCKS=m +CONFIG_ASYNC_CORE=m +CONFIG_ASYNC_MEMCPY=m +CONFIG_ASYNC_XOR=m +CONFIG_ASYNC_PQ=m +CONFIG_ASYNC_RAID6_RECOV=m +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=m +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_SKCIPHER=y +CONFIG_CRYPTO_SKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG=m +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_RNG_DEFAULT=m +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_AKCIPHER=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_KPP=m +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +CONFIG_CRYPTO_USER=m +# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set +# CONFIG_CRYPTO_MANAGER_EXTRA_TESTS is not set +CONFIG_CRYPTO_GF128MUL=m +CONFIG_CRYPTO_NULL=m +CONFIG_CRYPTO_NULL2=y +CONFIG_CRYPTO_PCRYPT=m +# CONFIG_CRYPTO_CRYPTD is not set +CONFIG_CRYPTO_AUTHENC=m +CONFIG_CRYPTO_TEST=m +CONFIG_CRYPTO_ENGINE=m + +# +# Public-key cryptography +# +CONFIG_CRYPTO_RSA=y +# CONFIG_CRYPTO_DH is not set +CONFIG_CRYPTO_ECC=m +CONFIG_CRYPTO_ECDH=m +CONFIG_CRYPTO_ECDSA=m +CONFIG_CRYPTO_ECRDSA=m +CONFIG_CRYPTO_SM2=m +CONFIG_CRYPTO_CURVE25519=m + +# +# Authenticated Encryption with Associated Data +# +CONFIG_CRYPTO_CCM=m +CONFIG_CRYPTO_GCM=m +CONFIG_CRYPTO_CHACHA20POLY1305=m +CONFIG_CRYPTO_AEGIS128=m +CONFIG_CRYPTO_SEQIV=m +CONFIG_CRYPTO_ECHAINIV=m + +# +# Block modes +# +CONFIG_CRYPTO_CBC=m +CONFIG_CRYPTO_CFB=m +CONFIG_CRYPTO_CTR=m +CONFIG_CRYPTO_CTS=m +CONFIG_CRYPTO_ECB=m +CONFIG_CRYPTO_LRW=m +CONFIG_CRYPTO_OFB=m +CONFIG_CRYPTO_PCBC=m +CONFIG_CRYPTO_XTS=m +# CONFIG_CRYPTO_KEYWRAP is not set +CONFIG_CRYPTO_NHPOLY1305=m +CONFIG_CRYPTO_ADIANTUM=m +CONFIG_CRYPTO_ESSIV=m + +# +# Hash modes +# +CONFIG_CRYPTO_CMAC=m +CONFIG_CRYPTO_HMAC=y +CONFIG_CRYPTO_XCBC=m +CONFIG_CRYPTO_VMAC=m + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=y +CONFIG_CRYPTO_CRC32=m +CONFIG_CRYPTO_XXHASH=m +CONFIG_CRYPTO_BLAKE2B=m +CONFIG_CRYPTO_BLAKE2S=m +CONFIG_CRYPTO_CRCT10DIF=y +CONFIG_CRYPTO_GHASH=m +CONFIG_CRYPTO_POLY1305=m +CONFIG_CRYPTO_MD4=m +CONFIG_CRYPTO_MD5=y +CONFIG_CRYPTO_MICHAEL_MIC=m +CONFIG_CRYPTO_RMD160=m +CONFIG_CRYPTO_SHA1=y +CONFIG_CRYPTO_SHA256=y +CONFIG_CRYPTO_SHA512=m +# CONFIG_CRYPTO_SHA3 is not set +CONFIG_CRYPTO_SM3=m +CONFIG_CRYPTO_STREEBOG=m +CONFIG_CRYPTO_WP512=m + +# +# Ciphers +# +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_TI is not set +CONFIG_CRYPTO_ANUBIS=m +CONFIG_CRYPTO_ARC4=m +CONFIG_CRYPTO_BLOWFISH=m +CONFIG_CRYPTO_BLOWFISH_COMMON=m +CONFIG_CRYPTO_CAMELLIA=m +CONFIG_CRYPTO_CAST_COMMON=m +CONFIG_CRYPTO_CAST5=m +CONFIG_CRYPTO_CAST6=m +CONFIG_CRYPTO_DES=m +CONFIG_CRYPTO_FCRYPT=m +CONFIG_CRYPTO_KHAZAD=m +CONFIG_CRYPTO_CHACHA20=m +CONFIG_CRYPTO_SEED=m +CONFIG_CRYPTO_SERPENT=m +CONFIG_CRYPTO_SM4=m +CONFIG_CRYPTO_TEA=m +CONFIG_CRYPTO_TWOFISH=m +CONFIG_CRYPTO_TWOFISH_COMMON=m + +# +# Compression +# +CONFIG_CRYPTO_DEFLATE=m +CONFIG_CRYPTO_LZO=y +# CONFIG_CRYPTO_842 is not set +CONFIG_CRYPTO_LZ4=m +CONFIG_CRYPTO_LZ4HC=m +CONFIG_CRYPTO_ZSTD=m + +# +# Random Number Generation +# +CONFIG_CRYPTO_ANSI_CPRNG=m +CONFIG_CRYPTO_DRBG_MENU=m +CONFIG_CRYPTO_DRBG_HMAC=y +# CONFIG_CRYPTO_DRBG_HASH is not set +# CONFIG_CRYPTO_DRBG_CTR is not set +CONFIG_CRYPTO_DRBG=m +CONFIG_CRYPTO_JITTERENTROPY=m +CONFIG_CRYPTO_USER_API=m +CONFIG_CRYPTO_USER_API_HASH=m +CONFIG_CRYPTO_USER_API_SKCIPHER=m +CONFIG_CRYPTO_USER_API_RNG=m +# CONFIG_CRYPTO_USER_API_RNG_CAVP is not set +CONFIG_CRYPTO_USER_API_AEAD=m +CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE=y +# CONFIG_CRYPTO_STATS is not set +CONFIG_CRYPTO_HASH_INFO=y + +# +# Crypto library routines +# +CONFIG_CRYPTO_LIB_AES=y +CONFIG_CRYPTO_LIB_ARC4=m +CONFIG_CRYPTO_ARCH_HAVE_LIB_BLAKE2S=m +CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=m +CONFIG_CRYPTO_LIB_BLAKE2S=m +CONFIG_CRYPTO_ARCH_HAVE_LIB_CHACHA=m +CONFIG_CRYPTO_LIB_CHACHA_GENERIC=m +CONFIG_CRYPTO_LIB_CHACHA=m +CONFIG_CRYPTO_LIB_CURVE25519_GENERIC=m +CONFIG_CRYPTO_LIB_CURVE25519=m +CONFIG_CRYPTO_LIB_DES=m +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=9 +CONFIG_CRYPTO_ARCH_HAVE_LIB_POLY1305=m +CONFIG_CRYPTO_LIB_POLY1305_GENERIC=m +CONFIG_CRYPTO_LIB_POLY1305=m +CONFIG_CRYPTO_LIB_CHACHA20POLY1305=m +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_LIB_SM4=m +CONFIG_CRYPTO_HW=y +CONFIG_CRYPTO_DEV_ALLWINNER=y +CONFIG_CRYPTO_DEV_SUN4I_SS=m +CONFIG_CRYPTO_DEV_SUN4I_SS_PRNG=y +# CONFIG_CRYPTO_DEV_SUN4I_SS_DEBUG is not set +CONFIG_CRYPTO_DEV_SUN8I_CE=m +# CONFIG_CRYPTO_DEV_SUN8I_CE_DEBUG is not set +CONFIG_CRYPTO_DEV_SUN8I_CE_HASH=y +CONFIG_CRYPTO_DEV_SUN8I_CE_PRNG=y +CONFIG_CRYPTO_DEV_SUN8I_CE_TRNG=y +CONFIG_CRYPTO_DEV_SUN8I_SS=m +# CONFIG_CRYPTO_DEV_SUN8I_SS_DEBUG is not set +CONFIG_CRYPTO_DEV_SUN8I_SS_PRNG=y +CONFIG_CRYPTO_DEV_SUN8I_SS_HASH=y +# CONFIG_CRYPTO_DEV_FSL_CAAM is not set +# CONFIG_CRYPTO_DEV_OMAP is not set +# CONFIG_CRYPTO_DEV_SAHARA is not set +# CONFIG_CRYPTO_DEV_EXYNOS_RNG is not set +# CONFIG_CRYPTO_DEV_S5P is not set +CONFIG_CRYPTO_DEV_ATMEL_I2C=m +CONFIG_CRYPTO_DEV_ATMEL_ECC=m +CONFIG_CRYPTO_DEV_ATMEL_SHA204A=m +# CONFIG_CRYPTO_DEV_MXS_DCP is not set +CONFIG_CRYPTO_DEV_MARVELL=m +CONFIG_CRYPTO_DEV_MARVELL_CESA=m +# CONFIG_CRYPTO_DEV_ROCKCHIP is not set +CONFIG_CRYPTO_DEV_CHELSIO=m +CONFIG_CRYPTO_DEV_VIRTIO=m +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set +# CONFIG_CRYPTO_DEV_CCREE is not set +CONFIG_CRYPTO_DEV_AMLOGIC_GXL=m +# CONFIG_CRYPTO_DEV_AMLOGIC_GXL_DEBUG is not set +CONFIG_ASYMMETRIC_KEY_TYPE=y +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y +CONFIG_X509_CERTIFICATE_PARSER=y +CONFIG_PKCS8_PRIVATE_KEY_PARSER=m +CONFIG_PKCS7_MESSAGE_PARSER=y +# CONFIG_PKCS7_TEST_KEY is not set +# CONFIG_SIGNED_PE_FILE_VERIFICATION is not set + +# +# Certificates for signature checking +# +CONFIG_SYSTEM_TRUSTED_KEYRING=y +CONFIG_SYSTEM_TRUSTED_KEYS="" +# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set +# CONFIG_SECONDARY_TRUSTED_KEYRING is not set +# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set +# end of Certificates for signature checking + +CONFIG_BINARY_PRINTF=y + +# +# Library routines +# +CONFIG_RAID6_PQ=m +CONFIG_RAID6_PQ_BENCHMARK=y +CONFIG_LINEAR_RANGES=y +CONFIG_PACKING=y +CONFIG_BITREVERSE=y +CONFIG_HAVE_ARCH_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_CORDIC=m +CONFIG_PRIME_NUMBERS=m +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_STMP_DEVICE=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_CRC_CCITT=m +CONFIG_CRC16=y +CONFIG_CRC_T10DIF=y +CONFIG_CRC_ITU_T=m +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +CONFIG_CRC64=m +# CONFIG_CRC4 is not set +CONFIG_CRC7=m +CONFIG_LIBCRC32C=m +CONFIG_CRC8=m +CONFIG_XXHASH=y +CONFIG_AUDIT_GENERIC=y +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_LZ4_COMPRESS=m +CONFIG_LZ4HC_COMPRESS=m +CONFIG_LZ4_DECOMPRESS=y +CONFIG_ZSTD_COMPRESS=m +CONFIG_ZSTD_DECOMPRESS=y +CONFIG_XZ_DEC=y +# CONFIG_XZ_DEC_X86 is not set +# CONFIG_XZ_DEC_POWERPC is not set +# CONFIG_XZ_DEC_IA64 is not set +CONFIG_XZ_DEC_ARM=y +CONFIG_XZ_DEC_ARMTHUMB=y +# CONFIG_XZ_DEC_SPARC is not set +CONFIG_XZ_DEC_MICROLZMA=y +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_GZIP=y +CONFIG_DECOMPRESS_BZIP2=y +CONFIG_DECOMPRESS_LZMA=y +CONFIG_DECOMPRESS_XZ=y +CONFIG_DECOMPRESS_LZO=y +CONFIG_DECOMPRESS_LZ4=y +CONFIG_DECOMPRESS_ZSTD=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_REED_SOLOMON=m +CONFIG_REED_SOLOMON_DEC16=y +CONFIG_BCH=m +CONFIG_TEXTSEARCH=y +CONFIG_TEXTSEARCH_KMP=m +CONFIG_TEXTSEARCH_BM=m +CONFIG_TEXTSEARCH_FSM=m +CONFIG_INTERVAL_TREE=y +CONFIG_ASSOCIATIVE_ARRAY=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_DMA=y +CONFIG_DMA_OPS=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_DMA_DECLARE_COHERENT=y +CONFIG_ARCH_HAS_SETUP_DMA_OPS=y +CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS=y +CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y +CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU=y +CONFIG_SWIOTLB=y +CONFIG_DMA_RESTRICTED_POOL=y +CONFIG_DMA_NONCOHERENT_MMAP=y +CONFIG_DMA_REMAP=y +CONFIG_DMA_CMA=y +CONFIG_DMA_PERNUMA_CMA=y + +# +# Default contiguous memory area size: +# +CONFIG_CMA_SIZE_MBYTES=16 +CONFIG_CMA_SIZE_SEL_MBYTES=y +# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set +# CONFIG_CMA_SIZE_SEL_MIN is not set +# CONFIG_CMA_SIZE_SEL_MAX is not set +CONFIG_CMA_ALIGNMENT=8 +# CONFIG_DMA_API_DEBUG is not set +# CONFIG_DMA_MAP_BENCHMARK is not set +CONFIG_SGL_ALLOC=y +CONFIG_CHECK_SIGNATURE=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +CONFIG_NLATTR=y +CONFIG_LRU_CACHE=m +CONFIG_CLZ_TAB=y +CONFIG_IRQ_POLL=y +CONFIG_MPILIB=y +CONFIG_SIGNATURE=y +CONFIG_DIMLIB=y +CONFIG_LIBFDT=y +CONFIG_OID_REGISTRY=y +CONFIG_UCS2_STRING=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_GENERIC_VDSO_32=y +CONFIG_FONT_SUPPORT=y +CONFIG_FONTS=y +CONFIG_FONT_8x8=y +CONFIG_FONT_8x16=y +# CONFIG_FONT_6x11 is not set +# CONFIG_FONT_7x14 is not set +# CONFIG_FONT_PEARL_8x8 is not set +# CONFIG_FONT_ACORN_8x8 is not set +# CONFIG_FONT_MINI_4x6 is not set +CONFIG_FONT_6x10=y +# CONFIG_FONT_10x18 is not set +# CONFIG_FONT_SUN8x16 is not set +# CONFIG_FONT_SUN12x22 is not set +CONFIG_FONT_TER16x32=y +CONFIG_FONT_6x8=y +CONFIG_SG_SPLIT=y +CONFIG_SG_POOL=y +CONFIG_SBITMAP=y +# end of Library routines + +CONFIG_GENERIC_LIB_DEVMEM_IS_ALLOWED=y + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +CONFIG_PRINTK_TIME=y +# CONFIG_PRINTK_CALLER is not set +CONFIG_STACKTRACE_BUILD_ID=y +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +CONFIG_BOOT_PRINTK_DELAY=y +CONFIG_DYNAMIC_DEBUG=y +CONFIG_DYNAMIC_DEBUG_CORE=y +CONFIG_SYMBOLIC_ERRNAME=y +CONFIG_DEBUG_BUGVERBOSE=y +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +CONFIG_DEBUG_INFO=y +# CONFIG_DEBUG_INFO_REDUCED is not set +# CONFIG_DEBUG_INFO_COMPRESSED is not set +# CONFIG_DEBUG_INFO_SPLIT is not set +CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT=y +# CONFIG_DEBUG_INFO_DWARF4 is not set +# CONFIG_DEBUG_INFO_DWARF5 is not set +# CONFIG_DEBUG_INFO_BTF is not set +# CONFIG_GDB_SCRIPTS is not set +CONFIG_FRAME_WARN=1024 +CONFIG_STRIP_ASM_SYMS=y +# CONFIG_READABLE_ASM is not set +# CONFIG_HEADERS_INSTALL is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set +CONFIG_ARCH_WANT_FRAME_POINTERS=y +CONFIG_FRAME_POINTER=y +# CONFIG_VMLINUX_MAP is not set +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +# +# Generic Kernel Debugging Instruments +# +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 +CONFIG_MAGIC_SYSRQ_SERIAL=y +CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" +CONFIG_DEBUG_FS=y +CONFIG_DEBUG_FS_ALLOW_ALL=y +# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set +# CONFIG_DEBUG_FS_ALLOW_NONE is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +# CONFIG_UBSAN is not set +CONFIG_HAVE_KCSAN_COMPILER=y +# end of Generic Kernel Debugging Instruments + +CONFIG_DEBUG_KERNEL=y +CONFIG_DEBUG_MISC=y + +# +# Memory Debugging +# +CONFIG_PAGE_EXTENSION=y +# CONFIG_PAGE_OWNER is not set +CONFIG_PAGE_POISONING=y +# CONFIG_DEBUG_PAGE_REF is not set +# CONFIG_DEBUG_RODATA_TEST is not set +CONFIG_DEBUG_WX=y +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_DEBUG_SLAB is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +CONFIG_SCHED_STACK_END_CHECK=y +# CONFIG_DEBUG_VM is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +CONFIG_DEBUG_MEMORY_INIT=y +# CONFIG_DEBUG_PER_CPU_MAPS is not set +# CONFIG_DEBUG_KMAP_LOCAL is not set +# CONFIG_DEBUG_HIGHMEM is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_CC_HAS_KASAN_GENERIC=y +CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y +# CONFIG_KASAN is not set +# end of Memory Debugging + +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Oops, Lockups and Hangs +# +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +CONFIG_LOCKUP_DETECTOR=y +CONFIG_SOFTLOCKUP_DETECTOR=y +# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 +CONFIG_DETECT_HUNG_TASK=y +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set +CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 +# CONFIG_WQ_WATCHDOG is not set +# CONFIG_TEST_LOCKUP is not set +# end of Debug Oops, Lockups and Hangs + +# +# Scheduler Debugging +# +CONFIG_SCHED_DEBUG=y +CONFIG_SCHED_INFO=y +CONFIG_SCHEDSTATS=y +# end of Scheduler Debugging + +# CONFIG_DEBUG_TIMEKEEPING is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# CONFIG_SCF_TORTURE_TEST is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +# CONFIG_DEBUG_IRQFLAGS is not set +CONFIG_STACKTRACE=y +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set + +# +# Debug kernel data structures +# +CONFIG_DEBUG_LIST=y +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +CONFIG_BUG_ON_DATA_CORRUPTION=y +# end of Debug kernel data structures + +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_RCU_SCALE_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +# CONFIG_RCU_REF_SCALE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_LATENCYTOP is not set +CONFIG_NOP_TRACER=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACER_MAX_TRACE=y +CONFIG_TRACE_CLOCK=y +CONFIG_RING_BUFFER=y +CONFIG_EVENT_TRACING=y +CONFIG_CONTEXT_SWITCH_TRACER=y +CONFIG_TRACING=y +CONFIG_GENERIC_TRACER=y +CONFIG_TRACING_SUPPORT=y +CONFIG_FTRACE=y +# CONFIG_BOOTTIME_TRACING is not set +CONFIG_FUNCTION_TRACER=y +CONFIG_FUNCTION_GRAPH_TRACER=y +CONFIG_DYNAMIC_FTRACE=y +CONFIG_DYNAMIC_FTRACE_WITH_REGS=y +# CONFIG_FUNCTION_PROFILER is not set +CONFIG_STACK_TRACER=y +# CONFIG_IRQSOFF_TRACER is not set +# CONFIG_SCHED_TRACER is not set +# CONFIG_HWLAT_TRACER is not set +# CONFIG_OSNOISE_TRACER is not set +# CONFIG_TIMERLAT_TRACER is not set +CONFIG_FTRACE_SYSCALLS=y +CONFIG_TRACER_SNAPSHOT=y +# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set +CONFIG_BRANCH_PROFILE_NONE=y +# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set +CONFIG_BLK_DEV_IO_TRACE=y +CONFIG_KPROBE_EVENTS=y +# CONFIG_KPROBE_EVENTS_ON_NOTRACE is not set +CONFIG_UPROBE_EVENTS=y +CONFIG_BPF_EVENTS=y +CONFIG_DYNAMIC_EVENTS=y +CONFIG_PROBE_EVENTS=y +CONFIG_FTRACE_MCOUNT_RECORD=y +CONFIG_FTRACE_MCOUNT_USE_CC=y +CONFIG_SYNTH_EVENTS=y +# CONFIG_HIST_TRIGGERS is not set +# CONFIG_TRACE_EVENT_INJECT is not set +# CONFIG_TRACEPOINT_BENCHMARK is not set +# CONFIG_RING_BUFFER_BENCHMARK is not set +# CONFIG_TRACE_EVAL_MAP_FILE is not set +# CONFIG_FTRACE_RECORD_RECURSION is not set +# CONFIG_FTRACE_STARTUP_TEST is not set +# CONFIG_RING_BUFFER_STARTUP_TEST is not set +# CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS is not set +# CONFIG_PREEMPTIRQ_DELAY_TEST is not set +# CONFIG_SYNTH_EVENT_GEN_TEST is not set +# CONFIG_KPROBE_EVENT_GEN_TEST is not set +# CONFIG_SAMPLES is not set +CONFIG_STRICT_DEVMEM=y +CONFIG_IO_STRICT_DEVMEM=y + +# +# arm Debugging +# +CONFIG_ARM_PTDUMP_CORE=y +# CONFIG_ARM_PTDUMP_DEBUGFS is not set +CONFIG_UNWINDER_FRAME_POINTER=y +# CONFIG_DEBUG_USER is not set +# CONFIG_DEBUG_LL is not set +CONFIG_DEBUG_LL_INCLUDE="mach/debug-macro.S" +CONFIG_UNCOMPRESS_INCLUDE="debug/uncompress.h" +# CONFIG_ARM_KPROBES_TEST is not set +# CONFIG_PID_IN_CONTEXTIDR is not set +# CONFIG_CORESIGHT is not set +# end of arm Debugging + +# +# Kernel Testing and Coverage +# +# CONFIG_KUNIT is not set +CONFIG_NOTIFIER_ERROR_INJECTION=m +CONFIG_PM_NOTIFIER_ERROR_INJECT=m +# CONFIG_OF_RECONFIG_NOTIFIER_ERROR_INJECT is not set +# CONFIG_NETDEV_NOTIFIER_ERROR_INJECT is not set +# CONFIG_FAULT_INJECTION is not set +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +CONFIG_RUNTIME_TESTING_MENU=y +# CONFIG_LKDTM is not set +# CONFIG_TEST_MIN_HEAP is not set +# CONFIG_TEST_DIV64 is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_REED_SOLOMON_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +# CONFIG_PERCPU_TEST is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_ASYNC_RAID6_TEST is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_STRING_SELFTEST is not set +# CONFIG_TEST_STRING_HELPERS is not set +CONFIG_TEST_STRSCPY=m +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_PRINTF is not set +CONFIG_TEST_SCANF=m +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_UUID is not set +CONFIG_TEST_XARRAY=m +# CONFIG_TEST_OVERFLOW is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_HASH is not set +# CONFIG_TEST_IDA is not set +# CONFIG_TEST_LKM is not set +CONFIG_TEST_BITOPS=m +CONFIG_TEST_VMALLOC=m +CONFIG_TEST_USER_COPY=m +CONFIG_TEST_BPF=m +CONFIG_TEST_BLACKHOLE_DEV=m +CONFIG_FIND_BIT_BENCHMARK=m +CONFIG_TEST_FIRMWARE=m +# CONFIG_TEST_SYSCTL is not set +# CONFIG_TEST_UDELAY is not set +CONFIG_TEST_STATIC_KEYS=m +# CONFIG_TEST_KMOD is not set +# CONFIG_TEST_MEMCAT_P is not set +# CONFIG_TEST_STACKINIT is not set +# CONFIG_TEST_MEMINIT is not set +# CONFIG_TEST_FREE_PAGES is not set +CONFIG_ARCH_USE_MEMTEST=y +# CONFIG_MEMTEST is not set +# end of Kernel Testing and Coverage +# end of Kernel hacking diff --git a/gnu/packages/aux-files/linux-libre/5.16-arm64.conf b/gnu/packages/aux-files/linux-libre/5.16-arm64.conf new file mode 100644 index 0000000000..dcc3db788e --- /dev/null +++ b/gnu/packages/aux-files/linux-libre/5.16-arm64.conf @@ -0,0 +1,10660 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/arm64 5.16.0 Kernel Configuration +# +CONFIG_CC_VERSION_TEXT="gcc (GCC) 11.2.0" +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=110200 +CONFIG_CLANG_VERSION=0 +CONFIG_AS_IS_GNU=y +CONFIG_AS_VERSION=23700 +CONFIG_LD_IS_BFD=y +CONFIG_LD_VERSION=23700 +CONFIG_LLD_VERSION=0 +CONFIG_CC_CAN_LINK=y +CONFIG_CC_CAN_LINK_STATIC=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_GOTO_OUTPUT=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_TABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +# CONFIG_WERROR is not set +CONFIG_LOCALVERSION="" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_BUILD_SALT="" +CONFIG_DEFAULT_INIT="" +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_SWAP=y +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +CONFIG_WATCH_QUEUE=y +CONFIG_CROSS_MEMORY_ATTACH=y +# CONFIG_USELIB is not set +CONFIG_AUDIT=y +CONFIG_HAVE_ARCH_AUDITSYSCALL=y +CONFIG_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_SHOW_LEVEL=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_GENERIC_IRQ_INJECTION=y +CONFIG_HARDIRQS_SW_RESEND=y +CONFIG_GENERIC_IRQ_CHIP=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_IRQ_FASTEOI_HIERARCHY_HANDLERS=y +CONFIG_GENERIC_IRQ_IPI=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +CONFIG_IRQ_MSI_IOMMU=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +# end of IRQ subsystem + +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_ARCH_HAS_TICK_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y +CONFIG_POSIX_CPU_TIMERS_TASK_WORK=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +CONFIG_NO_HZ_IDLE=y +# CONFIG_NO_HZ_FULL is not set +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y +# end of Timers subsystem + +CONFIG_BPF=y +CONFIG_HAVE_EBPF_JIT=y +CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y + +# +# BPF subsystem +# +CONFIG_BPF_SYSCALL=y +CONFIG_BPF_JIT=y +# CONFIG_BPF_JIT_ALWAYS_ON is not set +CONFIG_BPF_JIT_DEFAULT_ON=y +# CONFIG_BPF_UNPRIV_DEFAULT_OFF is not set +# CONFIG_BPF_PRELOAD is not set +CONFIG_BPF_LSM=y +# end of BPF subsystem + +CONFIG_PREEMPT_VOLUNTARY_BUILD=y +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_PREEMPT is not set + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +# CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_SCHED_THERMAL_PRESSURE=y +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_TASKSTATS=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_XACCT=y +CONFIG_TASK_IO_ACCOUNTING=y +CONFIG_PSI=y +# CONFIG_PSI_DEFAULT_DISABLED is not set +# end of CPU/Task time and stats accounting + +CONFIG_CPU_ISOLATION=y + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +CONFIG_TASKS_RCU_GENERIC=y +CONFIG_TASKS_RUDE_RCU=y +CONFIG_TASKS_TRACE_RCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +# end of RCU Subsystem + +CONFIG_BUILD_BIN2C=y +# CONFIG_IKCONFIG is not set +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +# CONFIG_PRINTK_INDEX is not set +CONFIG_GENERIC_SCHED_CLOCK=y + +# +# Scheduler features +# +# CONFIG_UCLAMP_TASK is not set +# end of Scheduler features + +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_CC_HAS_INT128=y +CONFIG_CC_IMPLICIT_FALLTHROUGH="-Wimplicit-fallthrough=5" +CONFIG_ARCH_SUPPORTS_INT128=y +CONFIG_NUMA_BALANCING=y +CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y +CONFIG_CGROUPS=y +CONFIG_PAGE_COUNTER=y +CONFIG_MEMCG=y +CONFIG_MEMCG_SWAP=y +CONFIG_MEMCG_KMEM=y +CONFIG_BLK_CGROUP=y +CONFIG_CGROUP_WRITEBACK=y +CONFIG_CGROUP_SCHED=y +CONFIG_FAIR_GROUP_SCHED=y +CONFIG_CFS_BANDWIDTH=y +# CONFIG_RT_GROUP_SCHED is not set +CONFIG_CGROUP_PIDS=y +# CONFIG_CGROUP_RDMA is not set +CONFIG_CGROUP_FREEZER=y +# CONFIG_CGROUP_HUGETLB is not set +CONFIG_CPUSETS=y +CONFIG_PROC_PID_CPUSET=y +CONFIG_CGROUP_DEVICE=y +CONFIG_CGROUP_CPUACCT=y +CONFIG_CGROUP_PERF=y +CONFIG_CGROUP_BPF=y +CONFIG_CGROUP_MISC=y +# CONFIG_CGROUP_DEBUG is not set +CONFIG_SOCK_CGROUP_DATA=y +CONFIG_NAMESPACES=y +CONFIG_UTS_NS=y +CONFIG_TIME_NS=y +CONFIG_IPC_NS=y +CONFIG_USER_NS=y +CONFIG_PID_NS=y +CONFIG_NET_NS=y +CONFIG_CHECKPOINT_RESTORE=y +CONFIG_SCHED_AUTOGROUP=y +# CONFIG_SYSFS_DEPRECATED is not set +CONFIG_RELAY=y +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="" +CONFIG_RD_GZIP=y +CONFIG_RD_BZIP2=y +CONFIG_RD_LZMA=y +CONFIG_RD_XZ=y +CONFIG_RD_LZO=y +CONFIG_RD_LZ4=y +CONFIG_RD_ZSTD=y +CONFIG_BOOT_CONFIG=y +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_LD_ORPHAN_WARN=y +CONFIG_SYSCTL=y +CONFIG_HAVE_UID16=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_EXPERT=y +CONFIG_UID16=y +CONFIG_MULTIUSER=y +# CONFIG_SGETMASK_SYSCALL is not set +# CONFIG_SYSFS_SYSCALL is not set +CONFIG_FHANDLE=y +CONFIG_POSIX_TIMERS=y +CONFIG_PRINTK=y +CONFIG_BUG=y +CONFIG_ELF_CORE=y +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_HAVE_FUTEX_CMPXCHG=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_IO_URING=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_HAVE_ARCH_USERFAULTFD_MINOR=y +CONFIG_MEMBARRIER=y +CONFIG_KALLSYMS=y +# CONFIG_KALLSYMS_ALL is not set +CONFIG_KALLSYMS_BASE_RELATIVE=y +CONFIG_USERFAULTFD=y +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +CONFIG_KCMP=y +CONFIG_RSEQ=y +# CONFIG_DEBUG_RSEQ is not set +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters + +CONFIG_VM_EVENT_COUNTERS=y +CONFIG_SLUB_DEBUG=y +# CONFIG_COMPAT_BRK is not set +# CONFIG_SLAB is not set +CONFIG_SLUB=y +# CONFIG_SLOB is not set +CONFIG_SLAB_MERGE_DEFAULT=y +CONFIG_SLAB_FREELIST_RANDOM=y +CONFIG_SLAB_FREELIST_HARDENED=y +CONFIG_SHUFFLE_PAGE_ALLOCATOR=y +CONFIG_SLUB_CPU_PARTIAL=y +CONFIG_SYSTEM_DATA_VERIFICATION=y +CONFIG_PROFILING=y +CONFIG_TRACEPOINTS=y +# end of General setup + +CONFIG_ARM64=y +CONFIG_64BIT=y +CONFIG_MMU=y +CONFIG_ARM64_PAGE_SHIFT=12 +CONFIG_ARM64_CONT_PTE_SHIFT=4 +CONFIG_ARM64_CONT_PMD_SHIFT=4 +CONFIG_ARCH_MMAP_RND_BITS_MIN=18 +CONFIG_ARCH_MMAP_RND_BITS_MAX=33 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=11 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_GENERIC_CSUM=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y +CONFIG_SMP=y +CONFIG_KERNEL_MODE_NEON=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_ARCH_PROC_KCORE_TEXT=y +CONFIG_BROKEN_GAS_INST=y + +# +# Platform selection +# +# CONFIG_ARCH_ACTIONS is not set +CONFIG_ARCH_SUNXI=y +# CONFIG_ARCH_ALPINE is not set +CONFIG_ARCH_APPLE=y +CONFIG_ARCH_BCM2835=y +CONFIG_ARCH_BCM4908=y +# CONFIG_ARCH_BCM_IPROC is not set +# CONFIG_ARCH_BERLIN is not set +CONFIG_ARCH_BITMAIN=y +# CONFIG_ARCH_BRCMSTB is not set +# CONFIG_ARCH_EXYNOS is not set +# CONFIG_ARCH_SPARX5 is not set +# CONFIG_ARCH_K3 is not set +# CONFIG_ARCH_LAYERSCAPE is not set +# CONFIG_ARCH_LG1K is not set +CONFIG_ARCH_HISI=y +CONFIG_ARCH_KEEMBAY=y +# CONFIG_ARCH_MEDIATEK is not set +CONFIG_ARCH_MESON=y +CONFIG_ARCH_MVEBU=y +CONFIG_ARCH_MXC=y +CONFIG_ARCH_QCOM=y +# CONFIG_ARCH_REALTEK is not set +# CONFIG_ARCH_RENESAS is not set +CONFIG_ARCH_ROCKCHIP=y +# CONFIG_ARCH_S32 is not set +CONFIG_ARCH_SEATTLE=y +CONFIG_ARCH_INTEL_SOCFPGA=y +CONFIG_ARCH_SYNQUACER=y +CONFIG_ARCH_TEGRA=y +# CONFIG_ARCH_SPRD is not set +CONFIG_ARCH_THUNDER=y +CONFIG_ARCH_THUNDER2=y +# CONFIG_ARCH_UNIPHIER is not set +CONFIG_ARCH_VEXPRESS=y +CONFIG_ARCH_VISCONTI=y +CONFIG_ARCH_XGENE=y +# CONFIG_ARCH_ZYNQMP is not set +# end of Platform selection + +# +# Kernel Features +# + +# +# ARM errata workarounds via the alternatives framework +# +CONFIG_ARM64_WORKAROUND_CLEAN_CACHE=y +CONFIG_ARM64_ERRATUM_826319=y +CONFIG_ARM64_ERRATUM_827319=y +CONFIG_ARM64_ERRATUM_824069=y +CONFIG_ARM64_ERRATUM_819472=y +CONFIG_ARM64_ERRATUM_832075=y +CONFIG_ARM64_ERRATUM_834220=y +CONFIG_ARM64_ERRATUM_845719=y +CONFIG_ARM64_ERRATUM_843419=y +CONFIG_ARM64_ERRATUM_1024718=y +CONFIG_ARM64_ERRATUM_1418040=y +CONFIG_ARM64_WORKAROUND_SPECULATIVE_AT=y +CONFIG_ARM64_ERRATUM_1165522=y +CONFIG_ARM64_ERRATUM_1319367=y +CONFIG_ARM64_ERRATUM_1530923=y +CONFIG_ARM64_WORKAROUND_REPEAT_TLBI=y +CONFIG_ARM64_ERRATUM_1286807=y +CONFIG_ARM64_ERRATUM_1463225=y +CONFIG_ARM64_ERRATUM_1542419=y +CONFIG_ARM64_ERRATUM_1508412=y +CONFIG_ARM64_WORKAROUND_TSB_FLUSH_FAILURE=y +CONFIG_ARM64_ERRATUM_2054223=y +CONFIG_ARM64_ERRATUM_2067961=y +CONFIG_CAVIUM_ERRATUM_22375=y +CONFIG_CAVIUM_ERRATUM_23144=y +CONFIG_CAVIUM_ERRATUM_23154=y +CONFIG_CAVIUM_ERRATUM_27456=y +CONFIG_CAVIUM_ERRATUM_30115=y +CONFIG_CAVIUM_TX2_ERRATUM_219=y +CONFIG_FUJITSU_ERRATUM_010001=y +CONFIG_HISILICON_ERRATUM_161600802=y +CONFIG_QCOM_FALKOR_ERRATUM_1003=y +CONFIG_QCOM_FALKOR_ERRATUM_1009=y +CONFIG_QCOM_QDF2400_ERRATUM_0065=y +CONFIG_QCOM_FALKOR_ERRATUM_E1041=y +CONFIG_NVIDIA_CARMEL_CNP_ERRATUM=y +CONFIG_SOCIONEXT_SYNQUACER_PREITS=y +# end of ARM errata workarounds via the alternatives framework + +CONFIG_ARM64_4K_PAGES=y +# CONFIG_ARM64_16K_PAGES is not set +# CONFIG_ARM64_64K_PAGES is not set +# CONFIG_ARM64_VA_BITS_39 is not set +CONFIG_ARM64_VA_BITS_48=y +CONFIG_ARM64_VA_BITS=48 +CONFIG_ARM64_PA_BITS_48=y +CONFIG_ARM64_PA_BITS=48 +# CONFIG_CPU_BIG_ENDIAN is not set +CONFIG_CPU_LITTLE_ENDIAN=y +CONFIG_SCHED_MC=y +CONFIG_SCHED_CLUSTER=y +# CONFIG_SCHED_SMT is not set +CONFIG_NR_CPUS=256 +CONFIG_HOTPLUG_CPU=y +CONFIG_NUMA=y +CONFIG_NODES_SHIFT=2 +CONFIG_USE_PERCPU_NUMA_NODE_ID=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 +CONFIG_SCHED_HRTICK=y +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_HW_PERF_EVENTS=y +CONFIG_ARCH_HAS_FILTER_PGPROT=y +CONFIG_PARAVIRT=y +# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +# CONFIG_KEXEC_SIG is not set +CONFIG_CRASH_DUMP=y +CONFIG_TRANS_TABLE=y +CONFIG_XEN_DOM0=y +CONFIG_XEN=y +CONFIG_FORCE_MAX_ZONEORDER=11 +CONFIG_UNMAP_KERNEL_AT_EL0=y +CONFIG_RODATA_FULL_DEFAULT_ENABLED=y +# CONFIG_ARM64_SW_TTBR0_PAN is not set +CONFIG_ARM64_TAGGED_ADDR_ABI=y +CONFIG_COMPAT=y +CONFIG_KUSER_HELPERS=y +CONFIG_ARMV8_DEPRECATED=y +CONFIG_SWP_EMULATION=y +CONFIG_CP15_BARRIER_EMULATION=y +CONFIG_SETEND_EMULATION=y + +# +# ARMv8.1 architectural features +# +CONFIG_ARM64_HW_AFDBM=y +CONFIG_ARM64_PAN=y +CONFIG_ARM64_USE_LSE_ATOMICS=y +# end of ARMv8.1 architectural features + +# +# ARMv8.2 architectural features +# +CONFIG_ARM64_PMEM=y +CONFIG_ARM64_RAS_EXTN=y +CONFIG_ARM64_CNP=y +# end of ARMv8.2 architectural features + +# +# ARMv8.3 architectural features +# +CONFIG_ARM64_PTR_AUTH=y +CONFIG_AS_HAS_CFI_NEGATE_RA_STATE=y +# end of ARMv8.3 architectural features + +# +# ARMv8.4 architectural features +# +CONFIG_ARM64_AMU_EXTN=y +# end of ARMv8.4 architectural features + +# +# ARMv8.5 architectural features +# +CONFIG_ARM64_BTI=y +CONFIG_ARM64_E0PD=y +CONFIG_ARCH_RANDOM=y +# end of ARMv8.5 architectural features + +# +# ARMv8.7 architectural features +# +CONFIG_ARM64_EPAN=y +# end of ARMv8.7 architectural features + +CONFIG_ARM64_SVE=y +CONFIG_ARM64_MODULE_PLTS=y +# CONFIG_ARM64_PSEUDO_NMI is not set +CONFIG_RELOCATABLE=y +CONFIG_RANDOMIZE_BASE=y +CONFIG_RANDOMIZE_MODULE_REGION_FULL=y +# end of Kernel Features + +# +# Boot options +# +CONFIG_ARM64_ACPI_PARKING_PROTOCOL=y +CONFIG_CMDLINE="" +CONFIG_EFI_STUB=y +CONFIG_EFI=y +CONFIG_DMI=y +# end of Boot options + +CONFIG_SYSVIPC_COMPAT=y + +# +# Power management options +# +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +CONFIG_HIBERNATE_CALLBACKS=y +CONFIG_HIBERNATION=y +CONFIG_HIBERNATION_SNAPSHOT_DEV=y +CONFIG_PM_STD_PARTITION="" +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +# CONFIG_PM_AUTOSLEEP is not set +# CONFIG_PM_WAKELOCKS is not set +CONFIG_PM=y +CONFIG_PM_DEBUG=y +CONFIG_PM_ADVANCED_DEBUG=y +# CONFIG_PM_TEST_SUSPEND is not set +CONFIG_PM_SLEEP_DEBUG=y +# CONFIG_DPM_WATCHDOG is not set +CONFIG_PM_CLK=y +CONFIG_PM_GENERIC_DOMAINS=y +# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set +CONFIG_PM_GENERIC_DOMAINS_SLEEP=y +CONFIG_PM_GENERIC_DOMAINS_OF=y +CONFIG_CPU_PM=y +CONFIG_ENERGY_MODEL=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_HIBERNATION_HEADER=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +# end of Power management options + +# +# CPU Power Management +# + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_MULTIPLE_DRIVERS=y +CONFIG_CPU_IDLE_GOV_LADDER=y +CONFIG_CPU_IDLE_GOV_MENU=y +CONFIG_CPU_IDLE_GOV_TEO=y +CONFIG_DT_IDLE_STATES=y + +# +# ARM CPU Idle Drivers +# +CONFIG_ARM_CPUIDLE=y +# CONFIG_ARM_PSCI_CPUIDLE is not set +# end of ARM CPU Idle Drivers +# end of CPU Idle + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +CONFIG_CPU_FREQ_GOV_ATTR_SET=y +CONFIG_CPU_FREQ_GOV_COMMON=y +CONFIG_CPU_FREQ_STAT=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL=y +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +CONFIG_CPU_FREQ_GOV_POWERSAVE=m +CONFIG_CPU_FREQ_GOV_USERSPACE=m +CONFIG_CPU_FREQ_GOV_ONDEMAND=m +CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m +CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y + +# +# CPU frequency scaling drivers +# +CONFIG_CPUFREQ_DT=m +CONFIG_CPUFREQ_DT_PLATDEV=y +CONFIG_ACPI_CPPC_CPUFREQ=m +CONFIG_ACPI_CPPC_CPUFREQ_FIE=y +CONFIG_ARM_ALLWINNER_SUN50I_CPUFREQ_NVMEM=m +# CONFIG_ARM_ARMADA_37XX_CPUFREQ is not set +# CONFIG_ARM_ARMADA_8K_CPUFREQ is not set +CONFIG_ARM_IMX_CPUFREQ_DT=m +# CONFIG_ARM_QCOM_CPUFREQ_HW is not set +CONFIG_ARM_RASPBERRYPI_CPUFREQ=m +CONFIG_ARM_SCMI_CPUFREQ=m +CONFIG_ARM_TEGRA20_CPUFREQ=m +CONFIG_ARM_TEGRA124_CPUFREQ=y +# CONFIG_ARM_TEGRA186_CPUFREQ is not set +CONFIG_ARM_TEGRA194_CPUFREQ=m +# end of CPU Frequency scaling +# end of CPU Power Management + +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ACPI=y +CONFIG_ACPI_GENERIC_GSI=y +CONFIG_ACPI_CCA_REQUIRED=y +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_SPCR_TABLE=y +# CONFIG_ACPI_EC_DEBUGFS is not set +CONFIG_ACPI_AC=m +CONFIG_ACPI_BATTERY=m +CONFIG_ACPI_BUTTON=y +CONFIG_ACPI_FAN=y +CONFIG_ACPI_TAD=m +# CONFIG_ACPI_DOCK is not set +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_MCFG=y +CONFIG_ACPI_CPPC_LIB=y +CONFIG_ACPI_PROCESSOR=y +# CONFIG_ACPI_IPMI is not set +CONFIG_ACPI_HOTPLUG_CPU=y +CONFIG_ACPI_THERMAL=y +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_PCI_SLOT is not set +CONFIG_ACPI_CONTAINER=y +# CONFIG_ACPI_HED is not set +# CONFIG_ACPI_CUSTOM_METHOD is not set +# CONFIG_ACPI_BGRT is not set +CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y +CONFIG_ACPI_NFIT=y +# CONFIG_NFIT_SECURITY_DEBUG is not set +CONFIG_ACPI_NUMA=y +CONFIG_ACPI_HMAT=y +CONFIG_HAVE_ACPI_APEI=y +# CONFIG_ACPI_APEI is not set +# CONFIG_ACPI_CONFIGFS is not set +CONFIG_ACPI_IORT=y +CONFIG_ACPI_GTDT=y +CONFIG_ACPI_PPTT=y +# CONFIG_PMIC_OPREGION is not set +CONFIG_ACPI_VIOT=y +CONFIG_IRQ_BYPASS_MANAGER=y +CONFIG_HAVE_KVM=y +CONFIG_HAVE_KVM_IRQCHIP=y +CONFIG_HAVE_KVM_IRQFD=y +CONFIG_HAVE_KVM_IRQ_ROUTING=y +CONFIG_HAVE_KVM_EVENTFD=y +CONFIG_KVM_MMIO=y +CONFIG_HAVE_KVM_MSI=y +CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y +CONFIG_KVM_VFIO=y +CONFIG_HAVE_KVM_ARCH_TLB_FLUSH_ALL=y +CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y +CONFIG_HAVE_KVM_IRQ_BYPASS=y +CONFIG_HAVE_KVM_VCPU_RUN_PID_CHANGE=y +CONFIG_KVM_XFER_TO_GUEST_WORK=y +CONFIG_VIRTUALIZATION=y +CONFIG_KVM=y +# CONFIG_NVHE_EL2_DEBUG is not set +CONFIG_ARM64_CRYPTO=y +CONFIG_CRYPTO_SHA256_ARM64=m +# CONFIG_CRYPTO_SHA512_ARM64 is not set +CONFIG_CRYPTO_SHA1_ARM64_CE=m +CONFIG_CRYPTO_SHA2_ARM64_CE=m +# CONFIG_CRYPTO_SHA512_ARM64_CE is not set +# CONFIG_CRYPTO_SHA3_ARM64 is not set +# CONFIG_CRYPTO_SM3_ARM64_CE is not set +# CONFIG_CRYPTO_SM4_ARM64_CE is not set +CONFIG_CRYPTO_GHASH_ARM64_CE=m +# CONFIG_CRYPTO_CRCT10DIF_ARM64_CE is not set +CONFIG_CRYPTO_AES_ARM64=m +CONFIG_CRYPTO_AES_ARM64_CE=m +CONFIG_CRYPTO_AES_ARM64_CE_CCM=m +CONFIG_CRYPTO_AES_ARM64_CE_BLK=m +# CONFIG_CRYPTO_AES_ARM64_NEON_BLK is not set +CONFIG_CRYPTO_CHACHA20_NEON=m +CONFIG_CRYPTO_POLY1305_NEON=m +CONFIG_CRYPTO_NHPOLY1305_NEON=m +# CONFIG_CRYPTO_AES_ARM64_BS is not set + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_KPROBES=y +CONFIG_JUMP_LABEL=y +# CONFIG_STATIC_KEYS_SELFTEST is not set +CONFIG_UPROBES=y +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_KRETPROBES=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_GENERIC_IDLE_POLL_SETUP=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_KEEPINITRD=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_ARCH_WANTS_NO_INSTR=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_MMU_GATHER_TABLE_FREE=y +CONFIG_MMU_GATHER_RCU_TABLE_FREE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y +CONFIG_HAVE_ARCH_SECCOMP=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_SECCOMP=y +CONFIG_SECCOMP_FILTER=y +# CONFIG_SECCOMP_CACHE_DEBUG is not set +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y +CONFIG_LTO_NONE=y +CONFIG_ARCH_SUPPORTS_CFI_CLANG=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOVE_PUD=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_ARCH_MMAP_RND_BITS=18 +CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y +CONFIG_ARCH_MMAP_RND_COMPAT_BITS=11 +CONFIG_PAGE_SIZE_LESS_THAN_64KB=y +CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y +CONFIG_CLONE_BACKWARDS=y +CONFIG_OLD_SIGSUSPEND3=y +CONFIG_COMPAT_OLD_SIGACTION=y +CONFIG_COMPAT_32BIT_TIME=y +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y +CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT=y +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_STRICT_MODULE_RWX=y +CONFIG_HAVE_ARCH_COMPILER_H=y +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y +# CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_ARCH_HAS_RELR=y +CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_HAVE_GCC_PLUGINS=y +CONFIG_GCC_PLUGINS=y +CONFIG_GCC_PLUGIN_LATENT_ENTROPY=y +# CONFIG_GCC_PLUGIN_RANDSTRUCT is not set +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +CONFIG_MODULES=y +CONFIG_MODULE_FORCE_LOAD=y +CONFIG_MODULE_UNLOAD=y +CONFIG_MODULE_FORCE_UNLOAD=y +CONFIG_MODVERSIONS=y +CONFIG_ASM_MODVERSIONS=y +# CONFIG_MODULE_SRCVERSION_ALL is not set +# CONFIG_MODULE_SIG is not set +# CONFIG_MODULE_COMPRESS_NONE is not set +CONFIG_MODULE_COMPRESS_GZIP=y +# CONFIG_MODULE_COMPRESS_XZ is not set +# CONFIG_MODULE_COMPRESS_ZSTD is not set +# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set +CONFIG_MODPROBE_PATH="/run/current-system/profile/bin/modprobe" +# CONFIG_TRIM_UNUSED_KSYMS is not set +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_BLOCK=y +CONFIG_BLK_RQ_ALLOC_TIME=y +CONFIG_BLK_CGROUP_RWSTAT=y +CONFIG_BLK_DEV_BSG_COMMON=y +CONFIG_BLK_DEV_BSGLIB=y +CONFIG_BLK_DEV_INTEGRITY=y +CONFIG_BLK_DEV_INTEGRITY_T10=m +# CONFIG_BLK_DEV_ZONED is not set +CONFIG_BLK_DEV_THROTTLING=y +# CONFIG_BLK_DEV_THROTTLING_LOW is not set +CONFIG_BLK_WBT=y +CONFIG_BLK_WBT_MQ=y +# CONFIG_BLK_CGROUP_IOLATENCY is not set +CONFIG_BLK_CGROUP_FC_APPID=y +CONFIG_BLK_CGROUP_IOCOST=y +CONFIG_BLK_CGROUP_IOPRIO=y +CONFIG_BLK_DEBUG_FS=y +CONFIG_BLK_SED_OPAL=y +CONFIG_BLK_INLINE_ENCRYPTION=y +CONFIG_BLK_INLINE_ENCRYPTION_FALLBACK=y + +# +# Partition Types +# +CONFIG_PARTITION_ADVANCED=y +# CONFIG_ACORN_PARTITION is not set +# CONFIG_AIX_PARTITION is not set +# CONFIG_OSF_PARTITION is not set +# CONFIG_AMIGA_PARTITION is not set +# CONFIG_ATARI_PARTITION is not set +# CONFIG_MAC_PARTITION is not set +CONFIG_MSDOS_PARTITION=y +# CONFIG_BSD_DISKLABEL is not set +# CONFIG_MINIX_SUBPARTITION is not set +# CONFIG_SOLARIS_X86_PARTITION is not set +# CONFIG_UNIXWARE_DISKLABEL is not set +# CONFIG_LDM_PARTITION is not set +# CONFIG_SGI_PARTITION is not set +# CONFIG_ULTRIX_PARTITION is not set +# CONFIG_SUN_PARTITION is not set +CONFIG_KARMA_PARTITION=y +CONFIG_EFI_PARTITION=y +# CONFIG_SYSV68_PARTITION is not set +# CONFIG_CMDLINE_PARTITION is not set +# end of Partition Types + +CONFIG_BLOCK_COMPAT=y +CONFIG_BLK_MQ_PCI=y +CONFIG_BLK_MQ_VIRTIO=y +CONFIG_BLK_MQ_RDMA=y +CONFIG_BLK_PM=y +CONFIG_BLOCK_HOLDER_DEPRECATED=y + +# +# IO Schedulers +# +CONFIG_MQ_IOSCHED_DEADLINE=y +CONFIG_MQ_IOSCHED_KYBER=m +CONFIG_IOSCHED_BFQ=m +CONFIG_BFQ_GROUP_IOSCHED=y +# CONFIG_BFQ_CGROUP_DEBUG is not set +# end of IO Schedulers + +CONFIG_PREEMPT_NOTIFIERS=y +CONFIG_PADATA=y +CONFIG_ASN1=y +CONFIG_ARCH_INLINE_SPIN_TRYLOCK=y +CONFIG_ARCH_INLINE_SPIN_TRYLOCK_BH=y +CONFIG_ARCH_INLINE_SPIN_LOCK=y +CONFIG_ARCH_INLINE_SPIN_LOCK_BH=y +CONFIG_ARCH_INLINE_SPIN_LOCK_IRQ=y +CONFIG_ARCH_INLINE_SPIN_LOCK_IRQSAVE=y +CONFIG_ARCH_INLINE_SPIN_UNLOCK=y +CONFIG_ARCH_INLINE_SPIN_UNLOCK_BH=y +CONFIG_ARCH_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_ARCH_INLINE_SPIN_UNLOCK_IRQRESTORE=y +CONFIG_ARCH_INLINE_READ_LOCK=y +CONFIG_ARCH_INLINE_READ_LOCK_BH=y +CONFIG_ARCH_INLINE_READ_LOCK_IRQ=y +CONFIG_ARCH_INLINE_READ_LOCK_IRQSAVE=y +CONFIG_ARCH_INLINE_READ_UNLOCK=y +CONFIG_ARCH_INLINE_READ_UNLOCK_BH=y +CONFIG_ARCH_INLINE_READ_UNLOCK_IRQ=y +CONFIG_ARCH_INLINE_READ_UNLOCK_IRQRESTORE=y +CONFIG_ARCH_INLINE_WRITE_LOCK=y +CONFIG_ARCH_INLINE_WRITE_LOCK_BH=y +CONFIG_ARCH_INLINE_WRITE_LOCK_IRQ=y +CONFIG_ARCH_INLINE_WRITE_LOCK_IRQSAVE=y +CONFIG_ARCH_INLINE_WRITE_UNLOCK=y +CONFIG_ARCH_INLINE_WRITE_UNLOCK_BH=y +CONFIG_ARCH_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_INLINE_WRITE_UNLOCK_IRQRESTORE=y +CONFIG_INLINE_SPIN_TRYLOCK=y +CONFIG_INLINE_SPIN_TRYLOCK_BH=y +CONFIG_INLINE_SPIN_LOCK=y +CONFIG_INLINE_SPIN_LOCK_BH=y +CONFIG_INLINE_SPIN_LOCK_IRQ=y +CONFIG_INLINE_SPIN_LOCK_IRQSAVE=y +CONFIG_INLINE_SPIN_UNLOCK_BH=y +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE=y +CONFIG_INLINE_READ_LOCK=y +CONFIG_INLINE_READ_LOCK_BH=y +CONFIG_INLINE_READ_LOCK_IRQ=y +CONFIG_INLINE_READ_LOCK_IRQSAVE=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_BH=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK_IRQRESTORE=y +CONFIG_INLINE_WRITE_LOCK=y +CONFIG_INLINE_WRITE_LOCK_BH=y +CONFIG_INLINE_WRITE_LOCK_IRQ=y +CONFIG_INLINE_WRITE_LOCK_IRQSAVE=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_BH=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y +CONFIG_FREEZER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_COMPAT_BINFMT_ELF=y +CONFIG_ARCH_BINFMT_ELF_STATE=y +CONFIG_ARCH_HAVE_ELF_PROT=y +CONFIG_ARCH_USE_GNU_PROPERTY=y +CONFIG_ELFCORE=y +CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y +CONFIG_BINFMT_SCRIPT=y +CONFIG_BINFMT_MISC=m +CONFIG_COREDUMP=y +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SPARSEMEM=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_FAST_GUP=y +CONFIG_ARCH_KEEP_MEMBLOCK=y +CONFIG_MEMORY_ISOLATION=y +CONFIG_EXCLUSIVE_SYSTEM_RAM=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +CONFIG_MEMORY_BALLOON=y +CONFIG_BALLOON_COMPACTION=y +CONFIG_COMPACTION=y +CONFIG_PAGE_REPORTING=y +CONFIG_MIGRATION=y +CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y +CONFIG_ARCH_ENABLE_THP_MIGRATION=y +CONFIG_CONTIG_ALLOC=y +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_MMU_NOTIFIER=y +CONFIG_KSM=y +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +CONFIG_MEMORY_FAILURE=y +CONFIG_HWPOISON_INJECT=m +CONFIG_TRANSPARENT_HUGEPAGE=y +CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y +# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set +# CONFIG_CLEANCACHE is not set +CONFIG_FRONTSWAP=y +CONFIG_CMA=y +# CONFIG_CMA_DEBUG is not set +# CONFIG_CMA_DEBUGFS is not set +CONFIG_CMA_SYSFS=y +CONFIG_CMA_AREAS=7 +CONFIG_ZSWAP=y +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_DEFLATE is not set +CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZO=y +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_842 is not set +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4 is not set +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4HC is not set +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_ZSTD is not set +CONFIG_ZSWAP_COMPRESSOR_DEFAULT="lzo" +CONFIG_ZSWAP_ZPOOL_DEFAULT_ZBUD=y +# CONFIG_ZSWAP_ZPOOL_DEFAULT_Z3FOLD is not set +# CONFIG_ZSWAP_ZPOOL_DEFAULT_ZSMALLOC is not set +CONFIG_ZSWAP_ZPOOL_DEFAULT="zbud" +# CONFIG_ZSWAP_DEFAULT_ON is not set +CONFIG_ZPOOL=y +CONFIG_ZBUD=y +# CONFIG_Z3FOLD is not set +CONFIG_ZSMALLOC=m +# CONFIG_ZSMALLOC_STAT is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +CONFIG_PAGE_IDLE_FLAG=y +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_PTE_DEVMAP=y +CONFIG_ARCH_HAS_ZONE_DMA_SET=y +CONFIG_ZONE_DMA=y +CONFIG_ZONE_DMA32=y +CONFIG_HMM_MIRROR=y +CONFIG_VMAP_PFN=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_TEST is not set +# CONFIG_READ_ONLY_THP_FOR_FS is not set +CONFIG_ARCH_HAS_PTE_SPECIAL=y +CONFIG_MAPPING_DIRTY_HELPERS=y +CONFIG_SECRETMEM=y + +# +# Data Access Monitoring +# +CONFIG_DAMON=y +CONFIG_DAMON_VADDR=y +CONFIG_DAMON_PADDR=y +# CONFIG_DAMON_DBGFS is not set +CONFIG_DAMON_RECLAIM=y +# end of Data Access Monitoring +# end of Memory Management options + +CONFIG_NET=y +CONFIG_COMPAT_NETLINK_MESSAGES=y +CONFIG_NET_INGRESS=y +CONFIG_NET_EGRESS=y +CONFIG_NET_REDIRECT=y +CONFIG_SKB_EXTENSIONS=y + +# +# Networking options +# +CONFIG_PACKET=y +CONFIG_PACKET_DIAG=m +CONFIG_UNIX=y +CONFIG_UNIX_SCM=y +CONFIG_AF_UNIX_OOB=y +CONFIG_UNIX_DIAG=m +# CONFIG_TLS is not set +CONFIG_XFRM=y +CONFIG_XFRM_OFFLOAD=y +CONFIG_XFRM_ALGO=m +CONFIG_XFRM_USER=m +CONFIG_XFRM_INTERFACE=m +CONFIG_XFRM_SUB_POLICY=y +CONFIG_XFRM_MIGRATE=y +# CONFIG_XFRM_STATISTICS is not set +CONFIG_XFRM_AH=m +CONFIG_XFRM_ESP=m +CONFIG_XFRM_IPCOMP=m +CONFIG_NET_KEY=m +CONFIG_NET_KEY_MIGRATE=y +# CONFIG_SMC is not set +CONFIG_XDP_SOCKETS=y +CONFIG_XDP_SOCKETS_DIAG=m +CONFIG_INET=y +CONFIG_IP_MULTICAST=y +CONFIG_IP_ADVANCED_ROUTER=y +CONFIG_IP_FIB_TRIE_STATS=y +CONFIG_IP_MULTIPLE_TABLES=y +CONFIG_IP_ROUTE_MULTIPATH=y +CONFIG_IP_ROUTE_VERBOSE=y +CONFIG_IP_ROUTE_CLASSID=y +# CONFIG_IP_PNP is not set +CONFIG_NET_IPIP=m +CONFIG_NET_IPGRE_DEMUX=m +CONFIG_NET_IP_TUNNEL=m +CONFIG_NET_IPGRE=m +CONFIG_NET_IPGRE_BROADCAST=y +CONFIG_IP_MROUTE_COMMON=y +CONFIG_IP_MROUTE=y +CONFIG_IP_MROUTE_MULTIPLE_TABLES=y +CONFIG_IP_PIMSM_V1=y +CONFIG_IP_PIMSM_V2=y +CONFIG_SYN_COOKIES=y +CONFIG_NET_IPVTI=m +CONFIG_NET_UDP_TUNNEL=m +CONFIG_NET_FOU=m +CONFIG_NET_FOU_IP_TUNNELS=y +CONFIG_INET_AH=m +CONFIG_INET_ESP=m +CONFIG_INET_ESP_OFFLOAD=m +# CONFIG_INET_ESPINTCP is not set +CONFIG_INET_IPCOMP=m +CONFIG_INET_XFRM_TUNNEL=m +CONFIG_INET_TUNNEL=m +CONFIG_INET_DIAG=m +CONFIG_INET_TCP_DIAG=m +CONFIG_INET_UDP_DIAG=m +# CONFIG_INET_RAW_DIAG is not set +CONFIG_INET_DIAG_DESTROY=y +CONFIG_TCP_CONG_ADVANCED=y +CONFIG_TCP_CONG_BIC=m +CONFIG_TCP_CONG_CUBIC=y +CONFIG_TCP_CONG_WESTWOOD=m +CONFIG_TCP_CONG_HTCP=m +CONFIG_TCP_CONG_HSTCP=m +CONFIG_TCP_CONG_HYBLA=m +CONFIG_TCP_CONG_VEGAS=m +CONFIG_TCP_CONG_NV=m +CONFIG_TCP_CONG_SCALABLE=m +CONFIG_TCP_CONG_LP=m +CONFIG_TCP_CONG_VENO=m +CONFIG_TCP_CONG_YEAH=m +CONFIG_TCP_CONG_ILLINOIS=m +CONFIG_TCP_CONG_DCTCP=m +CONFIG_TCP_CONG_CDG=m +CONFIG_TCP_CONG_BBR=m +CONFIG_DEFAULT_CUBIC=y +# CONFIG_DEFAULT_RENO is not set +CONFIG_DEFAULT_TCP_CONG="cubic" +CONFIG_TCP_MD5SIG=y +CONFIG_IPV6=y +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_ROUTE_INFO=y +CONFIG_IPV6_OPTIMISTIC_DAD=y +CONFIG_INET6_AH=m +CONFIG_INET6_ESP=m +CONFIG_INET6_ESP_OFFLOAD=m +# CONFIG_INET6_ESPINTCP is not set +CONFIG_INET6_IPCOMP=m +CONFIG_IPV6_MIP6=y +CONFIG_IPV6_ILA=m +CONFIG_INET6_XFRM_TUNNEL=m +CONFIG_INET6_TUNNEL=m +CONFIG_IPV6_VTI=m +CONFIG_IPV6_SIT=m +CONFIG_IPV6_SIT_6RD=y +CONFIG_IPV6_NDISC_NODETYPE=y +CONFIG_IPV6_TUNNEL=m +CONFIG_IPV6_GRE=m +CONFIG_IPV6_FOU=m +CONFIG_IPV6_FOU_TUNNEL=m +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IPV6_SUBTREES=y +CONFIG_IPV6_MROUTE=y +CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y +CONFIG_IPV6_PIMSM_V2=y +CONFIG_IPV6_SEG6_LWTUNNEL=y +CONFIG_IPV6_SEG6_HMAC=y +CONFIG_IPV6_SEG6_BPF=y +# CONFIG_IPV6_RPL_LWTUNNEL is not set +# CONFIG_IPV6_IOAM6_LWTUNNEL is not set +# CONFIG_NETLABEL is not set +CONFIG_MPTCP=y +CONFIG_INET_MPTCP_DIAG=m +CONFIG_MPTCP_IPV6=y +CONFIG_NETWORK_SECMARK=y +CONFIG_NET_PTP_CLASSIFY=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +CONFIG_NETFILTER=y +CONFIG_NETFILTER_ADVANCED=y +CONFIG_BRIDGE_NETFILTER=m + +# +# Core Netfilter Configuration +# +CONFIG_NETFILTER_INGRESS=y +CONFIG_NETFILTER_EGRESS=y +CONFIG_NETFILTER_SKIP_EGRESS=y +CONFIG_NETFILTER_NETLINK=m +CONFIG_NETFILTER_FAMILY_BRIDGE=y +CONFIG_NETFILTER_FAMILY_ARP=y +CONFIG_NETFILTER_NETLINK_HOOK=m +CONFIG_NETFILTER_NETLINK_ACCT=m +CONFIG_NETFILTER_NETLINK_QUEUE=m +CONFIG_NETFILTER_NETLINK_LOG=m +CONFIG_NETFILTER_NETLINK_OSF=m +CONFIG_NF_CONNTRACK=m +CONFIG_NF_LOG_SYSLOG=m +CONFIG_NETFILTER_CONNCOUNT=m +CONFIG_NF_CONNTRACK_MARK=y +CONFIG_NF_CONNTRACK_SECMARK=y +CONFIG_NF_CONNTRACK_ZONES=y +CONFIG_NF_CONNTRACK_PROCFS=y +CONFIG_NF_CONNTRACK_EVENTS=y +CONFIG_NF_CONNTRACK_TIMEOUT=y +CONFIG_NF_CONNTRACK_TIMESTAMP=y +CONFIG_NF_CONNTRACK_LABELS=y +CONFIG_NF_CT_PROTO_DCCP=y +CONFIG_NF_CT_PROTO_GRE=y +CONFIG_NF_CT_PROTO_SCTP=y +CONFIG_NF_CT_PROTO_UDPLITE=y +CONFIG_NF_CONNTRACK_AMANDA=m +CONFIG_NF_CONNTRACK_FTP=m +CONFIG_NF_CONNTRACK_H323=m +CONFIG_NF_CONNTRACK_IRC=m +CONFIG_NF_CONNTRACK_BROADCAST=m +CONFIG_NF_CONNTRACK_NETBIOS_NS=m +CONFIG_NF_CONNTRACK_SNMP=m +CONFIG_NF_CONNTRACK_PPTP=m +CONFIG_NF_CONNTRACK_SANE=m +CONFIG_NF_CONNTRACK_SIP=m +CONFIG_NF_CONNTRACK_TFTP=m +CONFIG_NF_CT_NETLINK=m +CONFIG_NF_CT_NETLINK_TIMEOUT=m +CONFIG_NF_CT_NETLINK_HELPER=m +CONFIG_NETFILTER_NETLINK_GLUE_CT=y +CONFIG_NF_NAT=m +CONFIG_NF_NAT_AMANDA=m +CONFIG_NF_NAT_FTP=m +CONFIG_NF_NAT_IRC=m +CONFIG_NF_NAT_SIP=m +CONFIG_NF_NAT_TFTP=m +CONFIG_NF_NAT_REDIRECT=y +CONFIG_NF_NAT_MASQUERADE=y +CONFIG_NETFILTER_SYNPROXY=m +CONFIG_NF_TABLES=m +CONFIG_NF_TABLES_INET=y +CONFIG_NF_TABLES_NETDEV=y +CONFIG_NFT_NUMGEN=m +CONFIG_NFT_CT=m +# CONFIG_NFT_FLOW_OFFLOAD is not set +CONFIG_NFT_COUNTER=m +CONFIG_NFT_CONNLIMIT=m +CONFIG_NFT_LOG=m +CONFIG_NFT_LIMIT=m +CONFIG_NFT_MASQ=m +CONFIG_NFT_REDIR=m +CONFIG_NFT_NAT=m +CONFIG_NFT_TUNNEL=m +CONFIG_NFT_OBJREF=m +CONFIG_NFT_QUEUE=m +CONFIG_NFT_QUOTA=m +CONFIG_NFT_REJECT=m +CONFIG_NFT_REJECT_INET=m +CONFIG_NFT_COMPAT=m +CONFIG_NFT_HASH=m +CONFIG_NFT_FIB=m +CONFIG_NFT_FIB_INET=m +CONFIG_NFT_XFRM=m +CONFIG_NFT_SOCKET=m +CONFIG_NFT_OSF=m +CONFIG_NFT_TPROXY=m +CONFIG_NFT_SYNPROXY=m +CONFIG_NF_DUP_NETDEV=m +CONFIG_NFT_DUP_NETDEV=m +CONFIG_NFT_FWD_NETDEV=m +CONFIG_NFT_FIB_NETDEV=m +CONFIG_NFT_REJECT_NETDEV=m +CONFIG_NF_FLOW_TABLE_INET=m +CONFIG_NF_FLOW_TABLE=m +CONFIG_NETFILTER_XTABLES=m +CONFIG_NETFILTER_XTABLES_COMPAT=y + +# +# Xtables combined modules +# +CONFIG_NETFILTER_XT_MARK=m +CONFIG_NETFILTER_XT_CONNMARK=m +CONFIG_NETFILTER_XT_SET=m + +# +# Xtables targets +# +CONFIG_NETFILTER_XT_TARGET_AUDIT=m +CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m +CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m +CONFIG_NETFILTER_XT_TARGET_CONNMARK=m +CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m +CONFIG_NETFILTER_XT_TARGET_CT=m +CONFIG_NETFILTER_XT_TARGET_DSCP=m +CONFIG_NETFILTER_XT_TARGET_HL=m +CONFIG_NETFILTER_XT_TARGET_HMARK=m +CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m +CONFIG_NETFILTER_XT_TARGET_LED=m +CONFIG_NETFILTER_XT_TARGET_LOG=m +CONFIG_NETFILTER_XT_TARGET_MARK=m +CONFIG_NETFILTER_XT_NAT=m +CONFIG_NETFILTER_XT_TARGET_NETMAP=m +CONFIG_NETFILTER_XT_TARGET_NFLOG=m +CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m +# CONFIG_NETFILTER_XT_TARGET_NOTRACK is not set +CONFIG_NETFILTER_XT_TARGET_RATEEST=m +CONFIG_NETFILTER_XT_TARGET_REDIRECT=m +CONFIG_NETFILTER_XT_TARGET_MASQUERADE=m +CONFIG_NETFILTER_XT_TARGET_TEE=m +CONFIG_NETFILTER_XT_TARGET_TPROXY=m +CONFIG_NETFILTER_XT_TARGET_TRACE=m +CONFIG_NETFILTER_XT_TARGET_SECMARK=m +CONFIG_NETFILTER_XT_TARGET_TCPMSS=m +CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m + +# +# Xtables matches +# +CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m +CONFIG_NETFILTER_XT_MATCH_BPF=m +CONFIG_NETFILTER_XT_MATCH_CGROUP=m +CONFIG_NETFILTER_XT_MATCH_CLUSTER=m +CONFIG_NETFILTER_XT_MATCH_COMMENT=m +CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m +CONFIG_NETFILTER_XT_MATCH_CONNLABEL=m +CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m +CONFIG_NETFILTER_XT_MATCH_CONNMARK=m +CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m +CONFIG_NETFILTER_XT_MATCH_CPU=m +CONFIG_NETFILTER_XT_MATCH_DCCP=m +CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m +CONFIG_NETFILTER_XT_MATCH_DSCP=m +CONFIG_NETFILTER_XT_MATCH_ECN=m +CONFIG_NETFILTER_XT_MATCH_ESP=m +CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m +CONFIG_NETFILTER_XT_MATCH_HELPER=m +CONFIG_NETFILTER_XT_MATCH_HL=m +CONFIG_NETFILTER_XT_MATCH_IPCOMP=m +CONFIG_NETFILTER_XT_MATCH_IPRANGE=m +CONFIG_NETFILTER_XT_MATCH_IPVS=m +CONFIG_NETFILTER_XT_MATCH_L2TP=m +CONFIG_NETFILTER_XT_MATCH_LENGTH=m +CONFIG_NETFILTER_XT_MATCH_LIMIT=m +CONFIG_NETFILTER_XT_MATCH_MAC=m +CONFIG_NETFILTER_XT_MATCH_MARK=m +CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m +CONFIG_NETFILTER_XT_MATCH_NFACCT=m +CONFIG_NETFILTER_XT_MATCH_OSF=m +CONFIG_NETFILTER_XT_MATCH_OWNER=m +CONFIG_NETFILTER_XT_MATCH_POLICY=m +CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m +CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m +CONFIG_NETFILTER_XT_MATCH_QUOTA=m +CONFIG_NETFILTER_XT_MATCH_RATEEST=m +CONFIG_NETFILTER_XT_MATCH_REALM=m +CONFIG_NETFILTER_XT_MATCH_RECENT=m +CONFIG_NETFILTER_XT_MATCH_SCTP=m +CONFIG_NETFILTER_XT_MATCH_SOCKET=m +CONFIG_NETFILTER_XT_MATCH_STATE=m +CONFIG_NETFILTER_XT_MATCH_STATISTIC=m +CONFIG_NETFILTER_XT_MATCH_STRING=m +CONFIG_NETFILTER_XT_MATCH_TCPMSS=m +CONFIG_NETFILTER_XT_MATCH_TIME=m +CONFIG_NETFILTER_XT_MATCH_U32=m +# end of Core Netfilter Configuration + +CONFIG_IP_SET=m +CONFIG_IP_SET_MAX=256 +CONFIG_IP_SET_BITMAP_IP=m +CONFIG_IP_SET_BITMAP_IPMAC=m +CONFIG_IP_SET_BITMAP_PORT=m +CONFIG_IP_SET_HASH_IP=m +CONFIG_IP_SET_HASH_IPMARK=m +CONFIG_IP_SET_HASH_IPPORT=m +CONFIG_IP_SET_HASH_IPPORTIP=m +CONFIG_IP_SET_HASH_IPPORTNET=m +CONFIG_IP_SET_HASH_IPMAC=m +CONFIG_IP_SET_HASH_MAC=m +CONFIG_IP_SET_HASH_NETPORTNET=m +CONFIG_IP_SET_HASH_NET=m +CONFIG_IP_SET_HASH_NETNET=m +CONFIG_IP_SET_HASH_NETPORT=m +CONFIG_IP_SET_HASH_NETIFACE=m +CONFIG_IP_SET_LIST_SET=m +CONFIG_IP_VS=m +CONFIG_IP_VS_IPV6=y +# CONFIG_IP_VS_DEBUG is not set +CONFIG_IP_VS_TAB_BITS=12 + +# +# IPVS transport protocol load balancing support +# +CONFIG_IP_VS_PROTO_TCP=y +CONFIG_IP_VS_PROTO_UDP=y +CONFIG_IP_VS_PROTO_AH_ESP=y +CONFIG_IP_VS_PROTO_ESP=y +CONFIG_IP_VS_PROTO_AH=y +CONFIG_IP_VS_PROTO_SCTP=y + +# +# IPVS scheduler +# +CONFIG_IP_VS_RR=m +CONFIG_IP_VS_WRR=m +CONFIG_IP_VS_LC=m +CONFIG_IP_VS_WLC=m +CONFIG_IP_VS_FO=m +CONFIG_IP_VS_OVF=m +CONFIG_IP_VS_LBLC=m +CONFIG_IP_VS_LBLCR=m +CONFIG_IP_VS_DH=m +CONFIG_IP_VS_SH=m +CONFIG_IP_VS_MH=m +CONFIG_IP_VS_SED=m +CONFIG_IP_VS_NQ=m +CONFIG_IP_VS_TWOS=m + +# +# IPVS SH scheduler +# +CONFIG_IP_VS_SH_TAB_BITS=8 + +# +# IPVS MH scheduler +# +CONFIG_IP_VS_MH_TAB_INDEX=12 + +# +# IPVS application helper +# +CONFIG_IP_VS_FTP=m +CONFIG_IP_VS_NFCT=y +CONFIG_IP_VS_PE_SIP=m + +# +# IP: Netfilter Configuration +# +CONFIG_NF_DEFRAG_IPV4=m +CONFIG_NF_SOCKET_IPV4=m +CONFIG_NF_TPROXY_IPV4=m +CONFIG_NF_TABLES_IPV4=y +CONFIG_NFT_REJECT_IPV4=m +CONFIG_NFT_DUP_IPV4=m +CONFIG_NFT_FIB_IPV4=m +CONFIG_NF_TABLES_ARP=y +CONFIG_NF_FLOW_TABLE_IPV4=m +CONFIG_NF_DUP_IPV4=m +CONFIG_NF_LOG_ARP=m +CONFIG_NF_LOG_IPV4=m +CONFIG_NF_REJECT_IPV4=m +CONFIG_NF_NAT_SNMP_BASIC=m +CONFIG_NF_NAT_PPTP=m +CONFIG_NF_NAT_H323=m +CONFIG_IP_NF_IPTABLES=m +CONFIG_IP_NF_MATCH_AH=m +CONFIG_IP_NF_MATCH_ECN=m +CONFIG_IP_NF_MATCH_RPFILTER=m +CONFIG_IP_NF_MATCH_TTL=m +CONFIG_IP_NF_FILTER=m +CONFIG_IP_NF_TARGET_REJECT=m +CONFIG_IP_NF_TARGET_SYNPROXY=m +CONFIG_IP_NF_NAT=m +CONFIG_IP_NF_TARGET_MASQUERADE=m +CONFIG_IP_NF_TARGET_NETMAP=m +CONFIG_IP_NF_TARGET_REDIRECT=m +CONFIG_IP_NF_MANGLE=m +CONFIG_IP_NF_TARGET_CLUSTERIP=m +CONFIG_IP_NF_TARGET_ECN=m +CONFIG_IP_NF_TARGET_TTL=m +CONFIG_IP_NF_RAW=m +CONFIG_IP_NF_SECURITY=m +CONFIG_IP_NF_ARPTABLES=m +CONFIG_IP_NF_ARPFILTER=m +CONFIG_IP_NF_ARP_MANGLE=m +# end of IP: Netfilter Configuration + +# +# IPv6: Netfilter Configuration +# +CONFIG_NF_SOCKET_IPV6=m +CONFIG_NF_TPROXY_IPV6=m +CONFIG_NF_TABLES_IPV6=y +CONFIG_NFT_REJECT_IPV6=m +CONFIG_NFT_DUP_IPV6=m +CONFIG_NFT_FIB_IPV6=m +CONFIG_NF_FLOW_TABLE_IPV6=m +CONFIG_NF_DUP_IPV6=m +CONFIG_NF_REJECT_IPV6=m +CONFIG_NF_LOG_IPV6=m +CONFIG_IP6_NF_IPTABLES=m +CONFIG_IP6_NF_MATCH_AH=m +CONFIG_IP6_NF_MATCH_EUI64=m +CONFIG_IP6_NF_MATCH_FRAG=m +CONFIG_IP6_NF_MATCH_OPTS=m +CONFIG_IP6_NF_MATCH_HL=m +CONFIG_IP6_NF_MATCH_IPV6HEADER=m +CONFIG_IP6_NF_MATCH_MH=m +CONFIG_IP6_NF_MATCH_RPFILTER=m +CONFIG_IP6_NF_MATCH_RT=m +CONFIG_IP6_NF_MATCH_SRH=m +CONFIG_IP6_NF_TARGET_HL=m +CONFIG_IP6_NF_FILTER=m +CONFIG_IP6_NF_TARGET_REJECT=m +CONFIG_IP6_NF_TARGET_SYNPROXY=m +CONFIG_IP6_NF_MANGLE=m +CONFIG_IP6_NF_RAW=m +CONFIG_IP6_NF_SECURITY=m +CONFIG_IP6_NF_NAT=m +CONFIG_IP6_NF_TARGET_MASQUERADE=m +CONFIG_IP6_NF_TARGET_NPT=m +# end of IPv6: Netfilter Configuration + +CONFIG_NF_DEFRAG_IPV6=m +CONFIG_NF_TABLES_BRIDGE=m +CONFIG_NFT_BRIDGE_META=m +CONFIG_NFT_BRIDGE_REJECT=m +CONFIG_NF_CONNTRACK_BRIDGE=m +CONFIG_BRIDGE_NF_EBTABLES=m +CONFIG_BRIDGE_EBT_BROUTE=m +CONFIG_BRIDGE_EBT_T_FILTER=m +CONFIG_BRIDGE_EBT_T_NAT=m +CONFIG_BRIDGE_EBT_802_3=m +CONFIG_BRIDGE_EBT_AMONG=m +CONFIG_BRIDGE_EBT_ARP=m +CONFIG_BRIDGE_EBT_IP=m +CONFIG_BRIDGE_EBT_IP6=m +CONFIG_BRIDGE_EBT_LIMIT=m +CONFIG_BRIDGE_EBT_MARK=m +CONFIG_BRIDGE_EBT_PKTTYPE=m +CONFIG_BRIDGE_EBT_STP=m +CONFIG_BRIDGE_EBT_VLAN=m +CONFIG_BRIDGE_EBT_ARPREPLY=m +CONFIG_BRIDGE_EBT_DNAT=m +CONFIG_BRIDGE_EBT_MARK_T=m +CONFIG_BRIDGE_EBT_REDIRECT=m +CONFIG_BRIDGE_EBT_SNAT=m +CONFIG_BRIDGE_EBT_LOG=m +CONFIG_BRIDGE_EBT_NFLOG=m +# CONFIG_BPFILTER is not set +CONFIG_IP_DCCP=m +CONFIG_INET_DCCP_DIAG=m + +# +# DCCP CCIDs Configuration +# +# CONFIG_IP_DCCP_CCID2_DEBUG is not set +CONFIG_IP_DCCP_CCID3=y +# CONFIG_IP_DCCP_CCID3_DEBUG is not set +CONFIG_IP_DCCP_TFRC_LIB=y +# end of DCCP CCIDs Configuration + +# +# DCCP Kernel Hacking +# +# CONFIG_IP_DCCP_DEBUG is not set +# end of DCCP Kernel Hacking + +CONFIG_IP_SCTP=m +# CONFIG_SCTP_DBG_OBJCNT is not set +CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5=y +# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1 is not set +# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set +CONFIG_SCTP_COOKIE_HMAC_MD5=y +CONFIG_SCTP_COOKIE_HMAC_SHA1=y +CONFIG_INET_SCTP_DIAG=m +CONFIG_RDS=m +CONFIG_RDS_RDMA=m +CONFIG_RDS_TCP=m +# CONFIG_RDS_DEBUG is not set +CONFIG_TIPC=m +CONFIG_TIPC_MEDIA_IB=y +CONFIG_TIPC_MEDIA_UDP=y +CONFIG_TIPC_CRYPTO=y +CONFIG_TIPC_DIAG=m +CONFIG_ATM=m +CONFIG_ATM_CLIP=m +# CONFIG_ATM_CLIP_NO_ICMP is not set +CONFIG_ATM_LANE=m +CONFIG_ATM_MPOA=m +CONFIG_ATM_BR2684=m +# CONFIG_ATM_BR2684_IPFILTER is not set +CONFIG_L2TP=m +CONFIG_L2TP_DEBUGFS=m +CONFIG_L2TP_V3=y +CONFIG_L2TP_IP=m +CONFIG_L2TP_ETH=m +CONFIG_STP=m +CONFIG_GARP=m +CONFIG_MRP=m +CONFIG_BRIDGE=m +CONFIG_BRIDGE_IGMP_SNOOPING=y +CONFIG_BRIDGE_VLAN_FILTERING=y +CONFIG_BRIDGE_MRP=y +CONFIG_BRIDGE_CFM=y +CONFIG_NET_DSA=m +CONFIG_NET_DSA_TAG_AR9331=m +CONFIG_NET_DSA_TAG_BRCM_COMMON=m +CONFIG_NET_DSA_TAG_BRCM=m +CONFIG_NET_DSA_TAG_BRCM_LEGACY=m +CONFIG_NET_DSA_TAG_BRCM_PREPEND=m +CONFIG_NET_DSA_TAG_HELLCREEK=m +CONFIG_NET_DSA_TAG_GSWIP=m +CONFIG_NET_DSA_TAG_DSA_COMMON=m +CONFIG_NET_DSA_TAG_DSA=m +CONFIG_NET_DSA_TAG_EDSA=m +CONFIG_NET_DSA_TAG_MTK=m +CONFIG_NET_DSA_TAG_KSZ=m +CONFIG_NET_DSA_TAG_OCELOT=m +CONFIG_NET_DSA_TAG_OCELOT_8021Q=m +CONFIG_NET_DSA_TAG_QCA=m +CONFIG_NET_DSA_TAG_RTL4_A=m +CONFIG_NET_DSA_TAG_RTL8_4=m +CONFIG_NET_DSA_TAG_LAN9303=m +CONFIG_NET_DSA_TAG_SJA1105=m +CONFIG_NET_DSA_TAG_TRAILER=m +CONFIG_NET_DSA_TAG_XRS700X=m +CONFIG_VLAN_8021Q=m +CONFIG_VLAN_8021Q_GVRP=y +CONFIG_VLAN_8021Q_MVRP=y +# CONFIG_DECNET is not set +CONFIG_LLC=m +CONFIG_LLC2=m +CONFIG_ATALK=m +CONFIG_DEV_APPLETALK=m +CONFIG_IPDDP=m +CONFIG_IPDDP_ENCAP=y +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +CONFIG_PHONET=m +CONFIG_6LOWPAN=m +# CONFIG_6LOWPAN_DEBUGFS is not set +CONFIG_6LOWPAN_NHC=m +CONFIG_6LOWPAN_NHC_DEST=m +CONFIG_6LOWPAN_NHC_FRAGMENT=m +CONFIG_6LOWPAN_NHC_HOP=m +CONFIG_6LOWPAN_NHC_IPV6=m +CONFIG_6LOWPAN_NHC_MOBILITY=m +CONFIG_6LOWPAN_NHC_ROUTING=m +CONFIG_6LOWPAN_NHC_UDP=m +CONFIG_6LOWPAN_GHC_EXT_HDR_HOP=m +CONFIG_6LOWPAN_GHC_UDP=m +CONFIG_6LOWPAN_GHC_ICMPV6=m +CONFIG_6LOWPAN_GHC_EXT_HDR_DEST=m +CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG=m +CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE=m +CONFIG_IEEE802154=m +# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set +CONFIG_IEEE802154_SOCKET=m +CONFIG_IEEE802154_6LOWPAN=m +CONFIG_MAC802154=m +CONFIG_NET_SCHED=y + +# +# Queueing/Scheduling +# +CONFIG_NET_SCH_CBQ=m +CONFIG_NET_SCH_HTB=m +CONFIG_NET_SCH_HFSC=m +CONFIG_NET_SCH_ATM=m +CONFIG_NET_SCH_PRIO=m +CONFIG_NET_SCH_MULTIQ=m +CONFIG_NET_SCH_RED=m +CONFIG_NET_SCH_SFB=m +CONFIG_NET_SCH_SFQ=m +CONFIG_NET_SCH_TEQL=m +CONFIG_NET_SCH_TBF=m +# CONFIG_NET_SCH_CBS is not set +CONFIG_NET_SCH_ETF=m +CONFIG_NET_SCH_TAPRIO=m +CONFIG_NET_SCH_GRED=m +CONFIG_NET_SCH_DSMARK=m +CONFIG_NET_SCH_NETEM=m +CONFIG_NET_SCH_DRR=m +CONFIG_NET_SCH_MQPRIO=m +CONFIG_NET_SCH_SKBPRIO=m +CONFIG_NET_SCH_CHOKE=m +CONFIG_NET_SCH_QFQ=m +CONFIG_NET_SCH_CODEL=m +CONFIG_NET_SCH_FQ_CODEL=m +CONFIG_NET_SCH_CAKE=m +CONFIG_NET_SCH_FQ=m +CONFIG_NET_SCH_HHF=m +CONFIG_NET_SCH_PIE=m +CONFIG_NET_SCH_FQ_PIE=m +CONFIG_NET_SCH_INGRESS=m +CONFIG_NET_SCH_PLUG=m +CONFIG_NET_SCH_ETS=m +# CONFIG_NET_SCH_DEFAULT is not set + +# +# Classification +# +CONFIG_NET_CLS=y +CONFIG_NET_CLS_BASIC=m +CONFIG_NET_CLS_TCINDEX=m +CONFIG_NET_CLS_ROUTE4=m +CONFIG_NET_CLS_FW=m +CONFIG_NET_CLS_U32=m +CONFIG_CLS_U32_PERF=y +CONFIG_CLS_U32_MARK=y +CONFIG_NET_CLS_RSVP=m +CONFIG_NET_CLS_RSVP6=m +CONFIG_NET_CLS_FLOW=m +CONFIG_NET_CLS_CGROUP=m +CONFIG_NET_CLS_BPF=m +CONFIG_NET_CLS_FLOWER=m +CONFIG_NET_CLS_MATCHALL=m +CONFIG_NET_EMATCH=y +CONFIG_NET_EMATCH_STACK=32 +CONFIG_NET_EMATCH_CMP=m +CONFIG_NET_EMATCH_NBYTE=m +CONFIG_NET_EMATCH_U32=m +CONFIG_NET_EMATCH_META=m +CONFIG_NET_EMATCH_TEXT=m +CONFIG_NET_EMATCH_CANID=m +CONFIG_NET_EMATCH_IPSET=m +CONFIG_NET_EMATCH_IPT=m +CONFIG_NET_CLS_ACT=y +CONFIG_NET_ACT_POLICE=m +CONFIG_NET_ACT_GACT=m +CONFIG_GACT_PROB=y +CONFIG_NET_ACT_MIRRED=m +CONFIG_NET_ACT_SAMPLE=m +CONFIG_NET_ACT_IPT=m +CONFIG_NET_ACT_NAT=m +CONFIG_NET_ACT_PEDIT=m +CONFIG_NET_ACT_SIMP=m +CONFIG_NET_ACT_SKBEDIT=m +CONFIG_NET_ACT_CSUM=m +CONFIG_NET_ACT_MPLS=m +CONFIG_NET_ACT_VLAN=m +CONFIG_NET_ACT_BPF=m +CONFIG_NET_ACT_CONNMARK=m +CONFIG_NET_ACT_CTINFO=m +CONFIG_NET_ACT_SKBMOD=m +CONFIG_NET_ACT_IFE=m +CONFIG_NET_ACT_TUNNEL_KEY=m +CONFIG_NET_ACT_CT=m +CONFIG_NET_ACT_GATE=m +CONFIG_NET_IFE_SKBMARK=m +CONFIG_NET_IFE_SKBPRIO=m +CONFIG_NET_IFE_SKBTCINDEX=m +# CONFIG_NET_TC_SKB_EXT is not set +CONFIG_NET_SCH_FIFO=y +CONFIG_DCB=y +CONFIG_DNS_RESOLVER=m +CONFIG_BATMAN_ADV=m +# CONFIG_BATMAN_ADV_BATMAN_V is not set +CONFIG_BATMAN_ADV_BLA=y +CONFIG_BATMAN_ADV_DAT=y +CONFIG_BATMAN_ADV_NC=y +CONFIG_BATMAN_ADV_MCAST=y +# CONFIG_BATMAN_ADV_DEBUG is not set +# CONFIG_BATMAN_ADV_TRACING is not set +CONFIG_OPENVSWITCH=m +CONFIG_OPENVSWITCH_GRE=m +CONFIG_OPENVSWITCH_VXLAN=m +CONFIG_OPENVSWITCH_GENEVE=m +CONFIG_VSOCKETS=m +CONFIG_VSOCKETS_DIAG=m +CONFIG_VSOCKETS_LOOPBACK=m +CONFIG_VIRTIO_VSOCKETS=m +CONFIG_VIRTIO_VSOCKETS_COMMON=m +CONFIG_HYPERV_VSOCKETS=m +CONFIG_NETLINK_DIAG=m +CONFIG_MPLS=y +CONFIG_NET_MPLS_GSO=y +CONFIG_MPLS_ROUTING=m +CONFIG_MPLS_IPTUNNEL=m +CONFIG_NET_NSH=m +# CONFIG_HSR is not set +CONFIG_NET_SWITCHDEV=y +CONFIG_NET_L3_MASTER_DEV=y +CONFIG_QRTR=m +CONFIG_QRTR_SMD=m +CONFIG_QRTR_TUN=m +CONFIG_QRTR_MHI=m +# CONFIG_NET_NCSI is not set +CONFIG_PCPU_DEV_REFCNT=y +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_SOCK_RX_QUEUE_MAPPING=y +CONFIG_XPS=y +CONFIG_CGROUP_NET_PRIO=y +CONFIG_CGROUP_NET_CLASSID=y +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +# CONFIG_BPF_STREAM_PARSER is not set +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +CONFIG_NET_PKTGEN=m +CONFIG_NET_DROP_MONITOR=y +# end of Network testing +# end of Networking options + +# CONFIG_HAMRADIO is not set +CONFIG_CAN=m +CONFIG_CAN_RAW=m +CONFIG_CAN_BCM=m +CONFIG_CAN_GW=m +CONFIG_CAN_J1939=m +CONFIG_CAN_ISOTP=m + +# +# CAN Device Drivers +# +CONFIG_CAN_VCAN=m +# CONFIG_CAN_VXCAN is not set +CONFIG_CAN_SLCAN=m +CONFIG_CAN_DEV=m +CONFIG_CAN_CALC_BITTIMING=y +CONFIG_CAN_FLEXCAN=m +# CONFIG_CAN_GRCAN is not set +CONFIG_CAN_KVASER_PCIEFD=m +# CONFIG_CAN_XILINXCAN is not set +# CONFIG_CAN_C_CAN is not set +# CONFIG_CAN_CC770 is not set +# CONFIG_CAN_IFI_CANFD is not set +# CONFIG_CAN_M_CAN is not set +# CONFIG_CAN_PEAK_PCIEFD is not set +CONFIG_CAN_SJA1000=m +CONFIG_CAN_EMS_PCI=m +CONFIG_CAN_F81601=m +CONFIG_CAN_KVASER_PCI=m +CONFIG_CAN_PEAK_PCI=m +CONFIG_CAN_PEAK_PCIEC=y +CONFIG_CAN_PLX_PCI=m +CONFIG_CAN_SJA1000_ISA=m +# CONFIG_CAN_SJA1000_PLATFORM is not set +CONFIG_CAN_SOFTING=m + +# +# CAN SPI interfaces +# +# CONFIG_CAN_HI311X is not set +# CONFIG_CAN_MCP251X is not set +CONFIG_CAN_MCP251XFD=m +# CONFIG_CAN_MCP251XFD_SANITY is not set +# end of CAN SPI interfaces + +# +# CAN USB interfaces +# +CONFIG_CAN_8DEV_USB=m +CONFIG_CAN_EMS_USB=m +CONFIG_CAN_ESD_USB2=m +CONFIG_CAN_ETAS_ES58X=m +CONFIG_CAN_GS_USB=m +CONFIG_CAN_KVASER_USB=m +# CONFIG_CAN_MCBA_USB is not set +CONFIG_CAN_PEAK_USB=m +CONFIG_CAN_UCAN=m +# end of CAN USB interfaces + +# CONFIG_CAN_DEBUG_DEVICES is not set +# end of CAN Device Drivers + +CONFIG_BT=m +CONFIG_BT_BREDR=y +CONFIG_BT_RFCOMM=m +CONFIG_BT_RFCOMM_TTY=y +CONFIG_BT_BNEP=m +CONFIG_BT_BNEP_MC_FILTER=y +CONFIG_BT_BNEP_PROTO_FILTER=y +CONFIG_BT_HIDP=m +CONFIG_BT_HS=y +CONFIG_BT_LE=y +CONFIG_BT_6LOWPAN=m +CONFIG_BT_LEDS=y +CONFIG_BT_MSFTEXT=y +CONFIG_BT_AOSPEXT=y +CONFIG_BT_DEBUGFS=y +# CONFIG_BT_SELFTEST is not set + +# +# Bluetooth device drivers +# +CONFIG_BT_INTEL=m +CONFIG_BT_BCM=m +CONFIG_BT_RTL=m +CONFIG_BT_QCA=m +CONFIG_BT_HCIBTUSB=m +# CONFIG_BT_HCIBTUSB_AUTOSUSPEND is not set +CONFIG_BT_HCIBTUSB_BCM=y +CONFIG_BT_HCIBTUSB_MTK=y +CONFIG_BT_HCIBTUSB_RTL=y +CONFIG_BT_HCIBTSDIO=m +CONFIG_BT_HCIUART=m +CONFIG_BT_HCIUART_SERDEV=y +CONFIG_BT_HCIUART_H4=y +# CONFIG_BT_HCIUART_NOKIA is not set +# CONFIG_BT_HCIUART_BCSP is not set +CONFIG_BT_HCIUART_ATH3K=y +CONFIG_BT_HCIUART_LL=y +CONFIG_BT_HCIUART_3WIRE=y +CONFIG_BT_HCIUART_INTEL=y +CONFIG_BT_HCIUART_RTL=y +CONFIG_BT_HCIUART_QCA=y +CONFIG_BT_HCIUART_AG6XX=y +CONFIG_BT_HCIUART_MRVL=y +# CONFIG_BT_HCIBCM203X is not set +# CONFIG_BT_HCIBPA10X is not set +# CONFIG_BT_HCIBFUSB is not set +# CONFIG_BT_HCIVHCI is not set +CONFIG_BT_MRVL=m +CONFIG_BT_MRVL_SDIO=m +CONFIG_BT_ATH3K=m +CONFIG_BT_MTKSDIO=m +CONFIG_BT_MTKUART=m +CONFIG_BT_QCOMSMD=m +CONFIG_BT_HCIRSI=m +CONFIG_BT_VIRTIO=m +# end of Bluetooth device drivers + +CONFIG_AF_RXRPC=m +CONFIG_AF_RXRPC_IPV6=y +# CONFIG_AF_RXRPC_INJECT_LOSS is not set +# CONFIG_AF_RXRPC_DEBUG is not set +CONFIG_RXKAD=y +# CONFIG_AF_KCM is not set +CONFIG_MCTP=y +CONFIG_FIB_RULES=y +CONFIG_WIRELESS=y +CONFIG_WIRELESS_EXT=y +CONFIG_WEXT_CORE=y +CONFIG_WEXT_PROC=y +CONFIG_WEXT_SPY=y +CONFIG_WEXT_PRIV=y +CONFIG_CFG80211=m +# CONFIG_NL80211_TESTMODE is not set +# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set +# CONFIG_CFG80211_CERTIFICATION_ONUS is not set +CONFIG_CFG80211_REQUIRE_SIGNED_REGDB=y +CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS=y +CONFIG_CFG80211_DEFAULT_PS=y +# CONFIG_CFG80211_DEBUGFS is not set +CONFIG_CFG80211_CRDA_SUPPORT=y +CONFIG_CFG80211_WEXT=y +CONFIG_CFG80211_WEXT_EXPORT=y +CONFIG_LIB80211=m +CONFIG_LIB80211_CRYPT_WEP=m +CONFIG_LIB80211_CRYPT_CCMP=m +CONFIG_LIB80211_CRYPT_TKIP=m +# CONFIG_LIB80211_DEBUG is not set +CONFIG_MAC80211=m +CONFIG_MAC80211_HAS_RC=y +CONFIG_MAC80211_RC_MINSTREL=y +CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y +CONFIG_MAC80211_RC_DEFAULT="minstrel_ht" +CONFIG_MAC80211_MESH=y +CONFIG_MAC80211_LEDS=y +# CONFIG_MAC80211_DEBUGFS is not set +# CONFIG_MAC80211_MESSAGE_TRACING is not set +# CONFIG_MAC80211_DEBUG_MENU is not set +CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 +CONFIG_RFKILL=m +CONFIG_RFKILL_LEDS=y +CONFIG_RFKILL_INPUT=y +# CONFIG_RFKILL_GPIO is not set +CONFIG_NET_9P=m +CONFIG_NET_9P_VIRTIO=m +# CONFIG_NET_9P_XEN is not set +CONFIG_NET_9P_RDMA=m +# CONFIG_NET_9P_DEBUG is not set +# CONFIG_CAIF is not set +CONFIG_CEPH_LIB=m +# CONFIG_CEPH_LIB_PRETTYDEBUG is not set +# CONFIG_CEPH_LIB_USE_DNS_RESOLVER is not set +CONFIG_NFC=m +CONFIG_NFC_DIGITAL=m +# CONFIG_NFC_NCI is not set +# CONFIG_NFC_HCI is not set + +# +# Near Field Communication (NFC) devices +# +# CONFIG_NFC_TRF7970A is not set +CONFIG_NFC_SIM=m +CONFIG_NFC_PORT100=m +CONFIG_NFC_PN533=m +CONFIG_NFC_PN533_USB=m +# CONFIG_NFC_PN533_I2C is not set +# CONFIG_NFC_PN532_UART is not set +# CONFIG_NFC_ST95HF is not set +# end of Near Field Communication (NFC) devices + +CONFIG_PSAMPLE=m +CONFIG_NET_IFE=m +CONFIG_LWTUNNEL=y +CONFIG_LWTUNNEL_BPF=y +CONFIG_DST_CACHE=y +CONFIG_GRO_CELLS=y +CONFIG_NET_SELFTESTS=m +CONFIG_NET_SOCK_MSG=y +CONFIG_NET_DEVLINK=y +CONFIG_PAGE_POOL=y +CONFIG_FAILOVER=m +CONFIG_ETHTOOL_NETLINK=y + +# +# Device Drivers +# +CONFIG_ARM_AMBA=y +CONFIG_TEGRA_AHB=y +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCI_DOMAINS_GENERIC=y +CONFIG_PCI_SYSCALL=y +CONFIG_PCIEPORTBUS=y +CONFIG_HOTPLUG_PCI_PCIE=y +CONFIG_PCIEAER=y +CONFIG_PCIEAER_INJECT=m +# CONFIG_PCIE_ECRC is not set +CONFIG_PCIEASPM=y +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +CONFIG_PCIE_PME=y +CONFIG_PCIE_DPC=y +CONFIG_PCIE_PTM=y +# CONFIG_PCIE_EDR is not set +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_QUIRKS=y +# CONFIG_PCI_DEBUG is not set +CONFIG_PCI_REALLOC_ENABLE_AUTO=y +CONFIG_PCI_STUB=m +# CONFIG_PCI_PF_STUB is not set +CONFIG_PCI_ATS=y +CONFIG_PCI_ECAM=y +CONFIG_PCI_BRIDGE_EMUL=y +CONFIG_PCI_IOV=y +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_PASID is not set +CONFIG_PCI_LABEL=y +# CONFIG_PCIE_BUS_TUNE_OFF is not set +CONFIG_PCIE_BUS_DEFAULT=y +# CONFIG_PCIE_BUS_SAFE is not set +# CONFIG_PCIE_BUS_PERFORMANCE is not set +# CONFIG_PCIE_BUS_PEER2PEER is not set +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_ACPI=y +CONFIG_HOTPLUG_PCI_ACPI_IBM=m +CONFIG_HOTPLUG_PCI_CPCI=y +CONFIG_HOTPLUG_PCI_SHPC=y + +# +# PCI controller drivers +# +CONFIG_PCI_AARDVARK=y +# CONFIG_PCI_FTPCI100 is not set +CONFIG_PCI_TEGRA=y +CONFIG_PCI_HOST_COMMON=y +CONFIG_PCI_HOST_GENERIC=y +# CONFIG_PCIE_XILINX is not set +CONFIG_PCI_XGENE=y +CONFIG_PCI_XGENE_MSI=y +# CONFIG_PCIE_ALTERA is not set +CONFIG_PCI_HOST_THUNDER_PEM=y +CONFIG_PCI_HOST_THUNDER_ECAM=y +CONFIG_PCIE_ROCKCHIP=y +CONFIG_PCIE_ROCKCHIP_HOST=m +CONFIG_PCIE_BRCMSTB=m +CONFIG_PCIE_MICROCHIP_HOST=y +CONFIG_PCIE_APPLE_MSI_DOORBELL_ADDR=0xfffff000 +CONFIG_PCIE_APPLE=m + +# +# DesignWare PCI Core Support +# +CONFIG_PCIE_DW=y +CONFIG_PCIE_DW_HOST=y +# CONFIG_PCIE_DW_PLAT_HOST is not set +CONFIG_PCI_IMX6=y +CONFIG_PCI_HISI=y +CONFIG_PCIE_QCOM=y +CONFIG_PCIE_ARMADA_8K=y +CONFIG_PCIE_ROCKCHIP_DW_HOST=y +CONFIG_PCIE_KEEMBAY=y +CONFIG_PCIE_KEEMBAY_HOST=y +CONFIG_PCIE_KIRIN=y +# CONFIG_PCIE_HISI_STB is not set +# CONFIG_PCI_MESON is not set +CONFIG_PCIE_TEGRA194=m +CONFIG_PCIE_TEGRA194_HOST=m +CONFIG_PCIE_VISCONTI_HOST=y +# CONFIG_PCIE_AL is not set +# end of DesignWare PCI Core Support + +# +# Mobiveil PCIe Core Support +# +# end of Mobiveil PCIe Core Support + +# +# Cadence PCIe controllers support +# +# CONFIG_PCIE_CADENCE_PLAT_HOST is not set +# CONFIG_PCI_J721E_HOST is not set +# end of Cadence PCIe controllers support +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# end of PCI switch controller drivers + +CONFIG_CXL_BUS=y +CONFIG_CXL_MEM=m +# CONFIG_CXL_MEM_RAW_COMMANDS is not set +CONFIG_CXL_ACPI=y +CONFIG_CXL_PMEM=m +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set + +# +# Generic Driver Options +# +CONFIG_AUXILIARY_BUS=y +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +# CONFIG_DEVTMPFS_MOUNT is not set +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_FW_LOADER_PAGED_BUF=y +CONFIG_EXTRA_FIRMWARE="" +CONFIG_FW_LOADER_USER_HELPER=y +# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set +CONFIG_FW_LOADER_COMPRESS=y +CONFIG_FW_CACHE=y +# end of Firmware loader + +CONFIG_WANT_DEV_COREDUMP=y +CONFIG_ALLOW_DEV_COREDUMP=y +CONFIG_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +CONFIG_HMEM_REPORTING=y +# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set +CONFIG_SYS_HYPERVISOR=y +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +CONFIG_SOC_BUS=y +CONFIG_REGMAP=y +CONFIG_REGMAP_I2C=y +CONFIG_REGMAP_SPI=m +CONFIG_REGMAP_SPMI=y +CONFIG_REGMAP_MMIO=y +CONFIG_REGMAP_IRQ=y +CONFIG_REGMAP_SCCB=m +CONFIG_DMA_SHARED_BUFFER=y +# CONFIG_DMA_FENCE_TRACE is not set +CONFIG_GENERIC_ARCH_TOPOLOGY=y +CONFIG_GENERIC_ARCH_NUMA=y +# end of Generic Driver Options + +# +# Bus devices +# +# CONFIG_BRCMSTB_GISB_ARB is not set +CONFIG_MOXTET=m +# CONFIG_HISILICON_LPC is not set +# CONFIG_IMX_WEIM is not set +CONFIG_QCOM_EBI2=y +CONFIG_SUN50I_DE2_BUS=y +CONFIG_SUNXI_RSB=y +CONFIG_TEGRA_ACONNECT=y +# CONFIG_TEGRA_GMI is not set +CONFIG_VEXPRESS_CONFIG=y +# CONFIG_FSL_MC_BUS is not set +CONFIG_MHI_BUS=m +# CONFIG_MHI_BUS_DEBUG is not set +CONFIG_MHI_BUS_PCI_GENERIC=m +# end of Bus devices + +CONFIG_CONNECTOR=y +CONFIG_PROC_EVENTS=y + +# +# Firmware Drivers +# + +# +# ARM System Control and Management Interface Protocol +# +CONFIG_ARM_SCMI_PROTOCOL=y +CONFIG_ARM_SCMI_HAVE_TRANSPORT=y +CONFIG_ARM_SCMI_HAVE_SHMEM=y +CONFIG_ARM_SCMI_TRANSPORT_MAILBOX=y +CONFIG_ARM_SCMI_TRANSPORT_SMC=y +CONFIG_ARM_SCMI_POWER_DOMAIN=m +# end of ARM System Control and Management Interface Protocol + +# CONFIG_ARM_SCPI_PROTOCOL is not set +# CONFIG_ARM_SDE_INTERFACE is not set +# CONFIG_FIRMWARE_MEMMAP is not set +CONFIG_DMIID=y +CONFIG_DMI_SYSFS=y +CONFIG_ISCSI_IBFT=m +CONFIG_RASPBERRYPI_FIRMWARE=y +# CONFIG_FW_CFG_SYSFS is not set +CONFIG_INTEL_STRATIX10_SERVICE=m +CONFIG_INTEL_STRATIX10_RSU=m +CONFIG_QCOM_SCM=y +# CONFIG_QCOM_SCM_DOWNLOAD_MODE_DEFAULT is not set +CONFIG_SYSFB=y +# CONFIG_SYSFB_SIMPLEFB is not set +# CONFIG_TURRIS_MOX_RWTM is not set +CONFIG_ARM_FFA_TRANSPORT=m +CONFIG_ARM_FFA_SMCCC=y +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +CONFIG_EFI_ESRT=y +CONFIG_EFI_VARS_PSTORE=m +# CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set +CONFIG_EFI_SOFT_RESERVE=y +CONFIG_EFI_PARAMS_FROM_FDT=y +CONFIG_EFI_RUNTIME_WRAPPERS=y +CONFIG_EFI_GENERIC_STUB=y +CONFIG_EFI_ARMSTUB_DTB_LOADER=y +CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y +# CONFIG_EFI_BOOTLOADER_CONTROL is not set +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +# CONFIG_RESET_ATTACK_MITIGATION is not set +# CONFIG_EFI_DISABLE_PCI_DMA is not set +# end of EFI (Extensible Firmware Interface) Support + +CONFIG_EFI_EARLYCON=y +CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y +# CONFIG_IMX_DSP is not set +CONFIG_IMX_SCU=y +CONFIG_IMX_SCU_PD=y +CONFIG_MESON_SM=y +CONFIG_ARM_PSCI_FW=y +# CONFIG_ARM_PSCI_CHECKER is not set +CONFIG_HAVE_ARM_SMCCC=y +CONFIG_HAVE_ARM_SMCCC_DISCOVERY=y +CONFIG_ARM_SMCCC_SOC_ID=y + +# +# Tegra firmware driver +# +CONFIG_TEGRA_IVC=y +CONFIG_TEGRA_BPMP=y +# end of Tegra firmware driver +# end of Firmware Drivers + +CONFIG_GNSS=m +CONFIG_GNSS_SERIAL=m +CONFIG_GNSS_MTK_SERIAL=m +CONFIG_GNSS_SIRF_SERIAL=m +CONFIG_GNSS_UBX_SERIAL=m +CONFIG_MTD=m +# CONFIG_MTD_TESTS is not set + +# +# Partition parsers +# +CONFIG_MTD_AR7_PARTS=m +# CONFIG_MTD_CMDLINE_PARTS is not set +CONFIG_MTD_OF_PARTS=m +CONFIG_MTD_OF_PARTS_BCM4908=y +CONFIG_MTD_OF_PARTS_LINKSYS_NS=y +# CONFIG_MTD_AFS_PARTS is not set +# CONFIG_MTD_REDBOOT_PARTS is not set +# end of Partition parsers + +# +# User Modules And Translation Layers +# +CONFIG_MTD_BLKDEVS=m +CONFIG_MTD_BLOCK=m +CONFIG_MTD_BLOCK_RO=m + +# +# Note that in some cases UBI block is preferred. See MTD_UBI_BLOCK. +# +# CONFIG_FTL is not set +# CONFIG_NFTL is not set +# CONFIG_INFTL is not set +CONFIG_RFD_FTL=m +CONFIG_SSFDC=m +# CONFIG_SM_FTL is not set +CONFIG_MTD_OOPS=m +CONFIG_MTD_SWAP=m +# CONFIG_MTD_PARTITIONED_MASTER is not set + +# +# RAM/ROM/Flash chip drivers +# +CONFIG_MTD_CFI=m +# CONFIG_MTD_JEDECPROBE is not set +CONFIG_MTD_GEN_PROBE=m +# CONFIG_MTD_CFI_ADV_OPTIONS is not set +CONFIG_MTD_MAP_BANK_WIDTH_1=y +CONFIG_MTD_MAP_BANK_WIDTH_2=y +CONFIG_MTD_MAP_BANK_WIDTH_4=y +CONFIG_MTD_CFI_I1=y +CONFIG_MTD_CFI_I2=y +CONFIG_MTD_CFI_INTELEXT=m +CONFIG_MTD_CFI_AMDSTD=m +CONFIG_MTD_CFI_STAA=m +CONFIG_MTD_CFI_UTIL=m +CONFIG_MTD_RAM=m +# CONFIG_MTD_ROM is not set +# CONFIG_MTD_ABSENT is not set +# end of RAM/ROM/Flash chip drivers + +# +# Mapping drivers for chip access +# +CONFIG_MTD_COMPLEX_MAPPINGS=y +# CONFIG_MTD_PHYSMAP is not set +CONFIG_MTD_PCI=m +CONFIG_MTD_INTEL_VR_NOR=m +CONFIG_MTD_PLATRAM=m +# end of Mapping drivers for chip access + +# +# Self-contained MTD device drivers +# +# CONFIG_MTD_PMC551 is not set +CONFIG_MTD_DATAFLASH=m +# CONFIG_MTD_DATAFLASH_WRITE_VERIFY is not set +# CONFIG_MTD_DATAFLASH_OTP is not set +# CONFIG_MTD_MCHP23K256 is not set +CONFIG_MTD_MCHP48L640=m +CONFIG_MTD_SST25L=m +# CONFIG_MTD_SLRAM is not set +# CONFIG_MTD_PHRAM is not set +# CONFIG_MTD_MTDRAM is not set +# CONFIG_MTD_BLOCK2MTD is not set + +# +# Disk-On-Chip Device Drivers +# +# CONFIG_MTD_DOCG3 is not set +# end of Self-contained MTD device drivers + +# +# NAND +# +CONFIG_MTD_NAND_CORE=m +CONFIG_MTD_ONENAND=m +CONFIG_MTD_ONENAND_VERIFY_WRITE=y +# CONFIG_MTD_ONENAND_GENERIC is not set +# CONFIG_MTD_ONENAND_OTP is not set +CONFIG_MTD_ONENAND_2X_PROGRAM=y +CONFIG_MTD_RAW_NAND=m + +# +# Raw/parallel NAND flash controllers +# +CONFIG_MTD_NAND_DENALI=m +# CONFIG_MTD_NAND_DENALI_PCI is not set +CONFIG_MTD_NAND_DENALI_DT=m +# CONFIG_MTD_NAND_CAFE is not set +CONFIG_MTD_NAND_MARVELL=m +CONFIG_MTD_NAND_BRCMNAND=m +CONFIG_MTD_NAND_MXC=m +CONFIG_MTD_NAND_SUNXI=m +CONFIG_MTD_NAND_HISI504=m +CONFIG_MTD_NAND_QCOM=m +CONFIG_MTD_NAND_MXIC=m +CONFIG_MTD_NAND_TEGRA=m +CONFIG_MTD_NAND_MESON=m +CONFIG_MTD_NAND_GPIO=m +CONFIG_MTD_NAND_PLATFORM=m +CONFIG_MTD_NAND_CADENCE=m +CONFIG_MTD_NAND_ARASAN=m +# CONFIG_MTD_NAND_INTEL_LGM is not set +CONFIG_MTD_NAND_ROCKCHIP=m + +# +# Misc +# +CONFIG_MTD_SM_COMMON=m +CONFIG_MTD_NAND_NANDSIM=m +CONFIG_MTD_NAND_RICOH=m +CONFIG_MTD_NAND_DISKONCHIP=m +# CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADVANCED is not set +CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS=0 +# CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE is not set +CONFIG_MTD_SPI_NAND=m + +# +# ECC engine support +# +CONFIG_MTD_NAND_ECC=y +CONFIG_MTD_NAND_ECC_SW_HAMMING=y +# CONFIG_MTD_NAND_ECC_SW_HAMMING_SMC is not set +# CONFIG_MTD_NAND_ECC_SW_BCH is not set +# end of ECC engine support +# end of NAND + +# +# LPDDR & LPDDR2 PCM memory drivers +# +CONFIG_MTD_LPDDR=m +CONFIG_MTD_QINFO_PROBE=m +# end of LPDDR & LPDDR2 PCM memory drivers + +CONFIG_MTD_SPI_NOR=m +CONFIG_MTD_SPI_NOR_USE_4K_SECTORS=y +# CONFIG_MTD_SPI_NOR_SWP_DISABLE is not set +CONFIG_MTD_SPI_NOR_SWP_DISABLE_ON_VOLATILE=y +# CONFIG_MTD_SPI_NOR_SWP_KEEP is not set +CONFIG_SPI_HISI_SFC=m +CONFIG_MTD_UBI=m +CONFIG_MTD_UBI_WL_THRESHOLD=4096 +CONFIG_MTD_UBI_BEB_LIMIT=20 +# CONFIG_MTD_UBI_FASTMAP is not set +# CONFIG_MTD_UBI_GLUEBI is not set +CONFIG_MTD_UBI_BLOCK=y +CONFIG_MTD_HYPERBUS=m +CONFIG_HBMC_AM654=m +CONFIG_DTC=y +CONFIG_OF=y +# CONFIG_OF_UNITTEST is not set +CONFIG_OF_FLATTREE=y +CONFIG_OF_EARLY_FLATTREE=y +CONFIG_OF_KOBJ=y +CONFIG_OF_ADDRESS=y +CONFIG_OF_IRQ=y +CONFIG_OF_RESERVED_MEM=y +# CONFIG_OF_OVERLAY is not set +CONFIG_OF_NUMA=y +CONFIG_PARPORT=m +# CONFIG_PARPORT_AX88796 is not set +CONFIG_PARPORT_1284=y +CONFIG_PARPORT_NOT_PC=y +CONFIG_PNP=y +# CONFIG_PNP_DEBUG_MESSAGES is not set + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +CONFIG_BLK_DEV_NULL_BLK=m +CONFIG_CDROM=m +CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m +CONFIG_ZRAM=m +CONFIG_ZRAM_DEF_COMP_LZORLE=y +# CONFIG_ZRAM_DEF_COMP_ZSTD is not set +# CONFIG_ZRAM_DEF_COMP_LZ4 is not set +# CONFIG_ZRAM_DEF_COMP_LZO is not set +# CONFIG_ZRAM_DEF_COMP_LZ4HC is not set +CONFIG_ZRAM_DEF_COMP="lzo-rle" +# CONFIG_ZRAM_WRITEBACK is not set +# CONFIG_ZRAM_MEMORY_TRACKING is not set +CONFIG_BLK_DEV_LOOP=m +CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 +CONFIG_BLK_DEV_DRBD=m +# CONFIG_DRBD_FAULT_INJECTION is not set +CONFIG_BLK_DEV_NBD=m +# CONFIG_BLK_DEV_SX8 is not set +CONFIG_BLK_DEV_RAM=m +CONFIG_BLK_DEV_RAM_COUNT=16 +CONFIG_BLK_DEV_RAM_SIZE=16384 +# CONFIG_CDROM_PKTCDVD is not set +CONFIG_ATA_OVER_ETH=m +CONFIG_XEN_BLKDEV_FRONTEND=m +CONFIG_XEN_BLKDEV_BACKEND=m +CONFIG_VIRTIO_BLK=m +CONFIG_BLK_DEV_RBD=m +# CONFIG_BLK_DEV_RSXX is not set +CONFIG_BLK_DEV_RNBD=y +CONFIG_BLK_DEV_RNBD_CLIENT=m +CONFIG_BLK_DEV_RNBD_SERVER=m + +# +# NVME Support +# +CONFIG_NVME_CORE=m +CONFIG_BLK_DEV_NVME=m +CONFIG_NVME_MULTIPATH=y +CONFIG_NVME_HWMON=y +CONFIG_NVME_FABRICS=m +CONFIG_NVME_RDMA=m +CONFIG_NVME_FC=m +CONFIG_NVME_TCP=m +CONFIG_NVME_TARGET=m +# CONFIG_NVME_TARGET_PASSTHRU is not set +# CONFIG_NVME_TARGET_LOOP is not set +CONFIG_NVME_TARGET_RDMA=m +CONFIG_NVME_TARGET_FC=m +# CONFIG_NVME_TARGET_FCLOOP is not set +CONFIG_NVME_TARGET_TCP=m +# end of NVME Support + +# +# Misc devices +# +CONFIG_SENSORS_LIS3LV02D=m +CONFIG_AD525X_DPOT=m +CONFIG_AD525X_DPOT_I2C=m +CONFIG_AD525X_DPOT_SPI=m +# CONFIG_DUMMY_IRQ is not set +# CONFIG_PHANTOM is not set +CONFIG_TIFM_CORE=m +CONFIG_TIFM_7XX1=m +CONFIG_ICS932S401=m +CONFIG_ENCLOSURE_SERVICES=m +CONFIG_HI6421V600_IRQ=m +# CONFIG_HP_ILO is not set +CONFIG_QCOM_COINCELL=m +# CONFIG_QCOM_FASTRPC is not set +CONFIG_APDS9802ALS=m +CONFIG_ISL29003=m +CONFIG_ISL29020=m +CONFIG_SENSORS_TSL2550=m +CONFIG_SENSORS_BH1770=m +CONFIG_SENSORS_APDS990X=m +CONFIG_HMC6352=m +CONFIG_DS1682=m +# CONFIG_LATTICE_ECP3_CONFIG is not set +CONFIG_SRAM=y +CONFIG_DW_XDATA_PCIE=m +# CONFIG_PCI_ENDPOINT_TEST is not set +CONFIG_XILINX_SDFEC=m +CONFIG_MISC_RTSX=m +CONFIG_HISI_HIKEY_USB=m +CONFIG_C2PORT=m + +# +# EEPROM support +# +CONFIG_EEPROM_AT24=m +CONFIG_EEPROM_AT25=m +CONFIG_EEPROM_LEGACY=m +CONFIG_EEPROM_MAX6875=m +CONFIG_EEPROM_93CX6=m +# CONFIG_EEPROM_93XX46 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_EEPROM_EE1004 is not set +# end of EEPROM support + +CONFIG_CB710_CORE=m +# CONFIG_CB710_DEBUG is not set +CONFIG_CB710_DEBUG_ASSUMPTIONS=y + +# +# Texas Instruments shared transport line discipline +# +CONFIG_TI_ST=m +# end of Texas Instruments shared transport line discipline + +CONFIG_SENSORS_LIS3_I2C=m +CONFIG_ALTERA_STAPL=m +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +CONFIG_BCM_VK=m +CONFIG_BCM_VK_TTY=y +CONFIG_MISC_ALCOR_PCI=m +CONFIG_MISC_RTSX_PCI=m +CONFIG_MISC_RTSX_USB=m +CONFIG_HABANA_AI=m +CONFIG_UACCE=m +CONFIG_PVPANIC=y +CONFIG_PVPANIC_MMIO=m +CONFIG_PVPANIC_PCI=m +# end of Misc devices + +# +# SCSI device support +# +CONFIG_SCSI_MOD=m +CONFIG_RAID_ATTRS=m +CONFIG_SCSI_COMMON=m +CONFIG_SCSI=m +CONFIG_SCSI_DMA=y +CONFIG_SCSI_NETLINK=y +# CONFIG_SCSI_PROC_FS is not set + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=m +CONFIG_CHR_DEV_ST=m +CONFIG_BLK_DEV_SR=m +CONFIG_CHR_DEV_SG=m +CONFIG_BLK_DEV_BSG=y +CONFIG_CHR_DEV_SCH=m +CONFIG_SCSI_ENCLOSURE=m +CONFIG_SCSI_CONSTANTS=y +CONFIG_SCSI_LOGGING=y +CONFIG_SCSI_SCAN_ASYNC=y + +# +# SCSI Transports +# +CONFIG_SCSI_SPI_ATTRS=m +CONFIG_SCSI_FC_ATTRS=m +CONFIG_SCSI_ISCSI_ATTRS=m +CONFIG_SCSI_SAS_ATTRS=m +CONFIG_SCSI_SAS_LIBSAS=m +CONFIG_SCSI_SAS_ATA=y +CONFIG_SCSI_SAS_HOST_SMP=y +CONFIG_SCSI_SRP_ATTRS=m +# end of SCSI Transports + +CONFIG_SCSI_LOWLEVEL=y +CONFIG_ISCSI_TCP=m +CONFIG_ISCSI_BOOT_SYSFS=m +CONFIG_SCSI_CXGB3_ISCSI=m +CONFIG_SCSI_CXGB4_ISCSI=m +CONFIG_SCSI_BNX2_ISCSI=m +CONFIG_SCSI_BNX2X_FCOE=m +CONFIG_BE2ISCSI=m +CONFIG_BLK_DEV_3W_XXXX_RAID=m +CONFIG_SCSI_HPSA=m +CONFIG_SCSI_3W_9XXX=m +CONFIG_SCSI_3W_SAS=m +CONFIG_SCSI_ACARD=m +CONFIG_SCSI_AACRAID=m +CONFIG_SCSI_AIC7XXX=m +CONFIG_AIC7XXX_CMDS_PER_DEVICE=32 +CONFIG_AIC7XXX_RESET_DELAY_MS=15000 +CONFIG_AIC7XXX_DEBUG_ENABLE=y +CONFIG_AIC7XXX_DEBUG_MASK=0 +CONFIG_AIC7XXX_REG_PRETTY_PRINT=y +CONFIG_SCSI_AIC79XX=m +CONFIG_AIC79XX_CMDS_PER_DEVICE=32 +CONFIG_AIC79XX_RESET_DELAY_MS=15000 +CONFIG_AIC79XX_DEBUG_ENABLE=y +CONFIG_AIC79XX_DEBUG_MASK=0 +CONFIG_AIC79XX_REG_PRETTY_PRINT=y +CONFIG_SCSI_AIC94XX=m +# CONFIG_AIC94XX_DEBUG is not set +CONFIG_SCSI_HISI_SAS=m +CONFIG_SCSI_HISI_SAS_PCI=m +# CONFIG_SCSI_HISI_SAS_DEBUGFS_DEFAULT_ENABLE is not set +CONFIG_SCSI_MVSAS=m +# CONFIG_SCSI_MVSAS_DEBUG is not set +# CONFIG_SCSI_MVSAS_TASKLET is not set +CONFIG_SCSI_MVUMI=m +CONFIG_SCSI_ADVANSYS=m +# CONFIG_SCSI_ARCMSR is not set +CONFIG_SCSI_ESAS2R=m +# CONFIG_MEGARAID_NEWGEN is not set +# CONFIG_MEGARAID_LEGACY is not set +CONFIG_MEGARAID_SAS=m +CONFIG_SCSI_MPT3SAS=m +CONFIG_SCSI_MPT2SAS_MAX_SGE=128 +CONFIG_SCSI_MPT3SAS_MAX_SGE=128 +CONFIG_SCSI_MPT2SAS=m +CONFIG_SCSI_MPI3MR=m +CONFIG_SCSI_SMARTPQI=m +CONFIG_SCSI_UFSHCD=m +CONFIG_SCSI_UFSHCD_PCI=m +# CONFIG_SCSI_UFS_DWC_TC_PCI is not set +# CONFIG_SCSI_UFSHCD_PLATFORM is not set +# CONFIG_SCSI_UFS_BSG is not set +CONFIG_SCSI_UFS_CRYPTO=y +CONFIG_SCSI_UFS_HPB=y +CONFIG_SCSI_UFS_HWMON=y +CONFIG_SCSI_HPTIOP=m +# CONFIG_SCSI_MYRB is not set +# CONFIG_SCSI_MYRS is not set +CONFIG_XEN_SCSI_FRONTEND=m +CONFIG_HYPERV_STORAGE=m +CONFIG_LIBFC=m +CONFIG_LIBFCOE=m +CONFIG_FCOE=m +CONFIG_SCSI_SNIC=m +# CONFIG_SCSI_SNIC_DEBUG_FS is not set +CONFIG_SCSI_DMX3191D=m +CONFIG_SCSI_FDOMAIN=m +CONFIG_SCSI_FDOMAIN_PCI=m +# CONFIG_SCSI_IPS is not set +# CONFIG_SCSI_INITIO is not set +# CONFIG_SCSI_INIA100 is not set +CONFIG_SCSI_STEX=m +CONFIG_SCSI_SYM53C8XX_2=m +CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1 +CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 +CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 +CONFIG_SCSI_SYM53C8XX_MMIO=y +# CONFIG_SCSI_IPR is not set +# CONFIG_SCSI_QLOGIC_1280 is not set +CONFIG_SCSI_QLA_FC=m +CONFIG_TCM_QLA2XXX=m +# CONFIG_TCM_QLA2XXX_DEBUG is not set +CONFIG_SCSI_QLA_ISCSI=m +# CONFIG_QEDI is not set +# CONFIG_QEDF is not set +CONFIG_SCSI_LPFC=m +# CONFIG_SCSI_LPFC_DEBUG_FS is not set +CONFIG_SCSI_EFCT=m +# CONFIG_SCSI_DC395x is not set +# CONFIG_SCSI_AM53C974 is not set +CONFIG_SCSI_WD719X=m +# CONFIG_SCSI_DEBUG is not set +CONFIG_SCSI_PMCRAID=m +CONFIG_SCSI_PM8001=m +CONFIG_SCSI_BFA_FC=m +CONFIG_SCSI_VIRTIO=m +CONFIG_SCSI_CHELSIO_FCOE=m +CONFIG_SCSI_DH=y +CONFIG_SCSI_DH_RDAC=m +CONFIG_SCSI_DH_HP_SW=m +CONFIG_SCSI_DH_EMC=m +CONFIG_SCSI_DH_ALUA=m +# end of SCSI device support + +CONFIG_HAVE_PATA_PLATFORM=y +CONFIG_ATA=m +CONFIG_SATA_HOST=y +CONFIG_PATA_TIMINGS=y +CONFIG_ATA_VERBOSE_ERROR=y +CONFIG_ATA_FORCE=y +CONFIG_ATA_ACPI=y +CONFIG_SATA_ZPODD=y +CONFIG_SATA_PMP=y + +# +# Controllers with non-SFF native interface +# +CONFIG_SATA_AHCI=m +CONFIG_SATA_MOBILE_LPM_POLICY=0 +CONFIG_SATA_AHCI_PLATFORM=m +CONFIG_AHCI_IMX=m +# CONFIG_AHCI_CEVA is not set +CONFIG_AHCI_MVEBU=m +# CONFIG_AHCI_SUNXI is not set +CONFIG_AHCI_TEGRA=m +CONFIG_AHCI_XGENE=m +# CONFIG_AHCI_QORIQ is not set +CONFIG_SATA_AHCI_SEATTLE=m +# CONFIG_SATA_INIC162X is not set +CONFIG_SATA_ACARD_AHCI=m +CONFIG_SATA_SIL24=m +CONFIG_ATA_SFF=y + +# +# SFF controllers with custom DMA interface +# +CONFIG_PDC_ADMA=m +CONFIG_SATA_QSTOR=m +CONFIG_SATA_SX4=m +CONFIG_ATA_BMDMA=y + +# +# SATA SFF controllers with BMDMA +# +CONFIG_ATA_PIIX=m +# CONFIG_SATA_DWC is not set +CONFIG_SATA_MV=m +CONFIG_SATA_NV=m +CONFIG_SATA_PROMISE=m +CONFIG_SATA_SIL=m +CONFIG_SATA_SIS=m +CONFIG_SATA_SVW=m +CONFIG_SATA_ULI=m +CONFIG_SATA_VIA=m +CONFIG_SATA_VITESSE=m + +# +# PATA SFF controllers with BMDMA +# +# CONFIG_PATA_ALI is not set +# CONFIG_PATA_AMD is not set +CONFIG_PATA_ARTOP=m +# CONFIG_PATA_ATIIXP is not set +CONFIG_PATA_ATP867X=m +CONFIG_PATA_CMD64X=m +# CONFIG_PATA_CYPRESS is not set +# CONFIG_PATA_EFAR is not set +# CONFIG_PATA_HPT366 is not set +# CONFIG_PATA_HPT37X is not set +# CONFIG_PATA_HPT3X2N is not set +# CONFIG_PATA_HPT3X3 is not set +# CONFIG_PATA_IMX is not set +CONFIG_PATA_IT8213=m +CONFIG_PATA_IT821X=m +CONFIG_PATA_JMICRON=m +CONFIG_PATA_MARVELL=m +# CONFIG_PATA_NETCELL is not set +CONFIG_PATA_NINJA32=m +# CONFIG_PATA_NS87415 is not set +# CONFIG_PATA_OLDPIIX is not set +# CONFIG_PATA_OPTIDMA is not set +# CONFIG_PATA_PDC2027X is not set +# CONFIG_PATA_PDC_OLD is not set +# CONFIG_PATA_RADISYS is not set +CONFIG_PATA_RDC=m +CONFIG_PATA_SCH=m +# CONFIG_PATA_SERVERWORKS is not set +# CONFIG_PATA_SIL680 is not set +CONFIG_PATA_SIS=m +CONFIG_PATA_TOSHIBA=m +# CONFIG_PATA_TRIFLEX is not set +# CONFIG_PATA_VIA is not set +# CONFIG_PATA_WINBOND is not set + +# +# PIO-only SFF controllers +# +# CONFIG_PATA_CMD640_PCI is not set +# CONFIG_PATA_MPIIX is not set +# CONFIG_PATA_NS87410 is not set +# CONFIG_PATA_OPTI is not set +# CONFIG_PATA_PLATFORM is not set +# CONFIG_PATA_RZ1000 is not set + +# +# Generic fallback / legacy drivers +# +# CONFIG_PATA_ACPI is not set +CONFIG_ATA_GENERIC=m +# CONFIG_PATA_LEGACY is not set +CONFIG_MD=y +CONFIG_BLK_DEV_MD=m +CONFIG_MD_LINEAR=m +CONFIG_MD_RAID0=m +CONFIG_MD_RAID1=m +CONFIG_MD_RAID10=m +CONFIG_MD_RAID456=m +CONFIG_MD_MULTIPATH=m +CONFIG_MD_FAULTY=m +# CONFIG_MD_CLUSTER is not set +CONFIG_BCACHE=m +# CONFIG_BCACHE_DEBUG is not set +# CONFIG_BCACHE_CLOSURES_DEBUG is not set +# CONFIG_BCACHE_ASYNC_REGISTRATION is not set +CONFIG_BLK_DEV_DM_BUILTIN=y +CONFIG_BLK_DEV_DM=m +# CONFIG_DM_DEBUG is not set +CONFIG_DM_BUFIO=m +# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set +CONFIG_DM_BIO_PRISON=m +CONFIG_DM_PERSISTENT_DATA=m +# CONFIG_DM_UNSTRIPED is not set +CONFIG_DM_CRYPT=m +CONFIG_DM_SNAPSHOT=m +CONFIG_DM_THIN_PROVISIONING=m +CONFIG_DM_CACHE=m +CONFIG_DM_CACHE_SMQ=m +CONFIG_DM_WRITECACHE=m +# CONFIG_DM_EBS is not set +CONFIG_DM_ERA=m +CONFIG_DM_CLONE=m +CONFIG_DM_MIRROR=m +CONFIG_DM_LOG_USERSPACE=m +CONFIG_DM_RAID=m +CONFIG_DM_ZERO=m +CONFIG_DM_MULTIPATH=m +CONFIG_DM_MULTIPATH_QL=m +CONFIG_DM_MULTIPATH_ST=m +CONFIG_DM_MULTIPATH_HST=m +CONFIG_DM_MULTIPATH_IOA=m +CONFIG_DM_DELAY=m +CONFIG_DM_DUST=m +CONFIG_DM_UEVENT=y +CONFIG_DM_FLAKEY=m +CONFIG_DM_VERITY=m +CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG=y +# CONFIG_DM_VERITY_FEC is not set +CONFIG_DM_SWITCH=m +CONFIG_DM_LOG_WRITES=m +# CONFIG_DM_INTEGRITY is not set +CONFIG_DM_AUDIT=y +CONFIG_TARGET_CORE=m +CONFIG_TCM_IBLOCK=m +CONFIG_TCM_FILEIO=m +CONFIG_TCM_PSCSI=m +CONFIG_TCM_USER2=m +CONFIG_LOOPBACK_TARGET=m +CONFIG_TCM_FC=m +CONFIG_ISCSI_TARGET=m +CONFIG_ISCSI_TARGET_CXGB4=m +CONFIG_SBP_TARGET=m +CONFIG_FUSION=y +CONFIG_FUSION_SPI=m +CONFIG_FUSION_FC=m +CONFIG_FUSION_SAS=m +CONFIG_FUSION_MAX_SGE=128 +CONFIG_FUSION_CTL=m +# CONFIG_FUSION_LOGGING is not set + +# +# IEEE 1394 (FireWire) support +# +CONFIG_FIREWIRE=m +CONFIG_FIREWIRE_OHCI=m +CONFIG_FIREWIRE_SBP2=m +CONFIG_FIREWIRE_NET=m +CONFIG_FIREWIRE_NOSY=m +# end of IEEE 1394 (FireWire) support + +CONFIG_NETDEVICES=y +CONFIG_MII=m +CONFIG_NET_CORE=y +CONFIG_BONDING=m +CONFIG_DUMMY=m +CONFIG_WIREGUARD=m +# CONFIG_WIREGUARD_DEBUG is not set +CONFIG_EQUALIZER=m +# CONFIG_NET_FC is not set +CONFIG_IFB=m +CONFIG_NET_TEAM=m +CONFIG_NET_TEAM_MODE_BROADCAST=m +CONFIG_NET_TEAM_MODE_ROUNDROBIN=m +CONFIG_NET_TEAM_MODE_RANDOM=m +CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m +CONFIG_NET_TEAM_MODE_LOADBALANCE=m +CONFIG_MACVLAN=m +CONFIG_MACVTAP=m +CONFIG_IPVLAN_L3S=y +CONFIG_IPVLAN=m +CONFIG_IPVTAP=m +CONFIG_VXLAN=m +CONFIG_GENEVE=m +CONFIG_BAREUDP=m +CONFIG_GTP=m +CONFIG_AMT=m +CONFIG_MACSEC=m +CONFIG_NETCONSOLE=m +CONFIG_NETCONSOLE_DYNAMIC=y +CONFIG_NETPOLL=y +CONFIG_NET_POLL_CONTROLLER=y +CONFIG_TUN=m +CONFIG_TAP=m +# CONFIG_TUN_VNET_CROSS_LE is not set +CONFIG_VETH=m +CONFIG_VIRTIO_NET=m +CONFIG_NLMON=m +CONFIG_NET_VRF=m +# CONFIG_VSOCKMON is not set +CONFIG_MHI_NET=m +# CONFIG_ARCNET is not set +CONFIG_ATM_DRIVERS=y +CONFIG_ATM_DUMMY=m +# CONFIG_ATM_TCP is not set +# CONFIG_ATM_LANAI is not set +# CONFIG_ATM_ENI is not set +CONFIG_ATM_NICSTAR=m +CONFIG_ATM_NICSTAR_USE_SUNI=y +CONFIG_ATM_NICSTAR_USE_IDT77105=y +# CONFIG_ATM_IDT77252 is not set +CONFIG_ATM_IA=m +# CONFIG_ATM_IA_DEBUG is not set +CONFIG_ATM_FORE200E=m +# CONFIG_ATM_FORE200E_USE_TASKLET is not set +CONFIG_ATM_FORE200E_TX_RETRY=16 +CONFIG_ATM_FORE200E_DEBUG=0 +# CONFIG_ATM_HE is not set +CONFIG_ATM_SOLOS=m + +# +# Distributed Switch Architecture drivers +# +# CONFIG_B53 is not set +# CONFIG_NET_DSA_BCM_SF2 is not set +# CONFIG_NET_DSA_LOOP is not set +CONFIG_NET_DSA_HIRSCHMANN_HELLCREEK=m +# CONFIG_NET_DSA_LANTIQ_GSWIP is not set +# CONFIG_NET_DSA_MT7530 is not set +CONFIG_NET_DSA_MV88E6060=m +# CONFIG_NET_DSA_MICROCHIP_KSZ9477 is not set +# CONFIG_NET_DSA_MICROCHIP_KSZ8795 is not set +CONFIG_NET_DSA_MV88E6XXX=m +# CONFIG_NET_DSA_MV88E6XXX_PTP is not set +CONFIG_NET_DSA_MSCC_FELIX=m +CONFIG_NET_DSA_MSCC_SEVILLE=m +CONFIG_NET_DSA_AR9331=m +CONFIG_NET_DSA_SJA1105=m +CONFIG_NET_DSA_SJA1105_PTP=y +# CONFIG_NET_DSA_SJA1105_TAS is not set +CONFIG_NET_DSA_XRS700X=m +CONFIG_NET_DSA_XRS700X_I2C=m +CONFIG_NET_DSA_XRS700X_MDIO=m +# CONFIG_NET_DSA_QCA8K is not set +CONFIG_NET_DSA_REALTEK_SMI=m +# CONFIG_NET_DSA_SMSC_LAN9303_I2C is not set +# CONFIG_NET_DSA_SMSC_LAN9303_MDIO is not set +CONFIG_NET_DSA_VITESSE_VSC73XX=m +CONFIG_NET_DSA_VITESSE_VSC73XX_SPI=m +CONFIG_NET_DSA_VITESSE_VSC73XX_PLATFORM=m +# end of Distributed Switch Architecture drivers + +CONFIG_ETHERNET=y +CONFIG_MDIO=m +CONFIG_NET_VENDOR_3COM=y +CONFIG_VORTEX=m +CONFIG_TYPHOON=m +CONFIG_NET_VENDOR_ADAPTEC=y +CONFIG_ADAPTEC_STARFIRE=m +CONFIG_NET_VENDOR_AGERE=y +CONFIG_ET131X=m +CONFIG_NET_VENDOR_ALACRITECH=y +# CONFIG_SLICOSS is not set +CONFIG_NET_VENDOR_ALLWINNER=y +# CONFIG_SUN4I_EMAC is not set +CONFIG_NET_VENDOR_ALTEON=y +CONFIG_ACENIC=m +# CONFIG_ACENIC_OMIT_TIGON_I is not set +# CONFIG_ALTERA_TSE is not set +CONFIG_NET_VENDOR_AMAZON=y +CONFIG_ENA_ETHERNET=m +CONFIG_NET_VENDOR_AMD=y +# CONFIG_AMD8111_ETH is not set +CONFIG_PCNET32=m +CONFIG_AMD_XGBE=m +# CONFIG_AMD_XGBE_DCB is not set +CONFIG_NET_XGENE=m +CONFIG_NET_XGENE_V2=m +CONFIG_NET_VENDOR_AQUANTIA=y +CONFIG_AQTION=m +# CONFIG_NET_VENDOR_ARC is not set +CONFIG_NET_VENDOR_ASIX=y +CONFIG_SPI_AX88796C=m +CONFIG_SPI_AX88796C_COMPRESSION=y +CONFIG_NET_VENDOR_ATHEROS=y +CONFIG_ATL2=m +CONFIG_ATL1=m +CONFIG_ATL1E=m +CONFIG_ATL1C=m +CONFIG_ALX=m +CONFIG_NET_VENDOR_BROADCOM=y +# CONFIG_B44 is not set +# CONFIG_BCM4908_ENET is not set +# CONFIG_BCMGENET is not set +CONFIG_BNX2=m +CONFIG_CNIC=m +CONFIG_TIGON3=m +CONFIG_TIGON3_HWMON=y +CONFIG_BNX2X=m +CONFIG_BNX2X_SRIOV=y +# CONFIG_SYSTEMPORT is not set +CONFIG_BNXT=m +CONFIG_BNXT_SRIOV=y +CONFIG_BNXT_FLOWER_OFFLOAD=y +# CONFIG_BNXT_DCB is not set +CONFIG_BNXT_HWMON=y +CONFIG_NET_VENDOR_BROCADE=y +CONFIG_BNA=m +CONFIG_NET_VENDOR_CADENCE=y +# CONFIG_MACB is not set +CONFIG_NET_VENDOR_CAVIUM=y +CONFIG_THUNDER_NIC_PF=m +CONFIG_THUNDER_NIC_VF=m +CONFIG_THUNDER_NIC_BGX=m +CONFIG_THUNDER_NIC_RGX=m +CONFIG_CAVIUM_PTP=y +CONFIG_LIQUIDIO=m +# CONFIG_LIQUIDIO_VF is not set +CONFIG_NET_VENDOR_CHELSIO=y +CONFIG_CHELSIO_T1=m +CONFIG_CHELSIO_T1_1G=y +CONFIG_CHELSIO_T3=m +CONFIG_CHELSIO_T4=m +CONFIG_CHELSIO_T4_DCB=y +CONFIG_CHELSIO_T4_FCOE=y +CONFIG_CHELSIO_T4VF=m +CONFIG_CHELSIO_LIB=m +CONFIG_CHELSIO_INLINE_CRYPTO=y +# CONFIG_CHELSIO_IPSEC_INLINE is not set +CONFIG_NET_VENDOR_CISCO=y +CONFIG_ENIC=m +CONFIG_NET_VENDOR_CORTINA=y +# CONFIG_GEMINI_ETHERNET is not set +# CONFIG_DNET is not set +CONFIG_NET_VENDOR_DEC=y +CONFIG_NET_TULIP=y +CONFIG_DE2104X=m +CONFIG_DE2104X_DSL=0 +CONFIG_TULIP=m +# CONFIG_TULIP_MWI is not set +# CONFIG_TULIP_MMIO is not set +CONFIG_TULIP_NAPI=y +CONFIG_TULIP_NAPI_HW_MITIGATION=y +CONFIG_WINBOND_840=m +CONFIG_DM9102=m +CONFIG_ULI526X=m +CONFIG_NET_VENDOR_DLINK=y +CONFIG_DL2K=m +CONFIG_SUNDANCE=m +# CONFIG_SUNDANCE_MMIO is not set +CONFIG_NET_VENDOR_EMULEX=y +CONFIG_BE2NET=m +CONFIG_BE2NET_HWMON=y +CONFIG_BE2NET_BE2=y +CONFIG_BE2NET_BE3=y +CONFIG_BE2NET_LANCER=y +CONFIG_BE2NET_SKYHAWK=y +CONFIG_NET_VENDOR_EZCHIP=y +# CONFIG_EZCHIP_NPS_MANAGEMENT_ENET is not set +CONFIG_NET_VENDOR_FREESCALE=y +CONFIG_FEC=m +CONFIG_FSL_PQ_MDIO=m +CONFIG_FSL_XGMAC_MDIO=m +CONFIG_GIANFAR=m +CONFIG_FSL_DPAA2_SWITCH=m +CONFIG_FSL_ENETC=m +CONFIG_FSL_ENETC_VF=m +CONFIG_FSL_ENETC_IERB=m +CONFIG_FSL_ENETC_MDIO=m +CONFIG_FSL_ENETC_PTP_CLOCK=m +CONFIG_FSL_ENETC_QOS=y +CONFIG_NET_VENDOR_GOOGLE=y +CONFIG_GVE=m +CONFIG_NET_VENDOR_HISILICON=y +CONFIG_HIX5HD2_GMAC=m +CONFIG_HISI_FEMAC=m +CONFIG_HIP04_ETH=m +CONFIG_HI13X1_GMAC=y +CONFIG_HNS_MDIO=m +CONFIG_HNS=m +CONFIG_HNS_DSAF=m +CONFIG_HNS_ENET=m +# CONFIG_HNS3 is not set +CONFIG_NET_VENDOR_HUAWEI=y +CONFIG_HINIC=m +CONFIG_NET_VENDOR_I825XX=y +CONFIG_NET_VENDOR_INTEL=y +CONFIG_E100=m +CONFIG_E1000=m +CONFIG_E1000E=m +CONFIG_IGB=m +CONFIG_IGB_HWMON=y +CONFIG_IGBVF=m +CONFIG_IXGB=m +CONFIG_IXGBE=m +CONFIG_IXGBE_HWMON=y +CONFIG_IXGBE_DCB=y +CONFIG_IXGBE_IPSEC=y +CONFIG_IXGBEVF=m +CONFIG_IXGBEVF_IPSEC=y +CONFIG_I40E=m +CONFIG_I40E_DCB=y +# CONFIG_I40EVF is not set +# CONFIG_ICE is not set +# CONFIG_FM10K is not set +# CONFIG_IGC is not set +CONFIG_NET_VENDOR_MICROSOFT=y +CONFIG_JME=m +CONFIG_NET_VENDOR_LITEX=y +CONFIG_LITEX_LITEETH=m +CONFIG_NET_VENDOR_MARVELL=y +CONFIG_MVMDIO=m +CONFIG_MVNETA=m +CONFIG_MVPP2=m +CONFIG_MVPP2_PTP=y +CONFIG_SKGE=m +# CONFIG_SKGE_DEBUG is not set +CONFIG_SKGE_GENESIS=y +CONFIG_SKY2=m +# CONFIG_SKY2_DEBUG is not set +CONFIG_OCTEONTX2_MBOX=m +# CONFIG_OCTEONTX2_AF is not set +CONFIG_OCTEONTX2_PF=m +CONFIG_OCTEONTX2_VF=m +CONFIG_PRESTERA=m +CONFIG_PRESTERA_PCI=m +CONFIG_NET_VENDOR_MELLANOX=y +CONFIG_MLX4_EN=m +CONFIG_MLX4_EN_DCB=y +CONFIG_MLX4_CORE=m +CONFIG_MLX4_DEBUG=y +CONFIG_MLX4_CORE_GEN2=y +CONFIG_MLX5_CORE=m +CONFIG_MLX5_ACCEL=y +# CONFIG_MLX5_FPGA is not set +CONFIG_MLX5_CORE_EN=y +CONFIG_MLX5_EN_ARFS=y +CONFIG_MLX5_EN_RXNFC=y +CONFIG_MLX5_MPFS=y +CONFIG_MLX5_ESWITCH=y +CONFIG_MLX5_BRIDGE=y +CONFIG_MLX5_CLS_ACT=y +CONFIG_MLX5_TC_SAMPLE=y +CONFIG_MLX5_CORE_EN_DCB=y +# CONFIG_MLX5_CORE_IPOIB is not set +CONFIG_MLX5_IPSEC=y +CONFIG_MLX5_EN_IPSEC=y +CONFIG_MLX5_SW_STEERING=y +CONFIG_MLX5_SF=y +CONFIG_MLX5_SF_MANAGER=y +# CONFIG_MLXSW_CORE is not set +# CONFIG_MLXFW is not set +CONFIG_MLXBF_GIGE=m +CONFIG_NET_VENDOR_MICREL=y +# CONFIG_KS8842 is not set +# CONFIG_KS8851 is not set +# CONFIG_KS8851_MLL is not set +CONFIG_KSZ884X_PCI=m +CONFIG_NET_VENDOR_MICROCHIP=y +# CONFIG_ENC28J60 is not set +# CONFIG_ENCX24J600 is not set +# CONFIG_LAN743X is not set +CONFIG_NET_VENDOR_MICROSEMI=y +CONFIG_MSCC_OCELOT_SWITCH_LIB=m +CONFIG_MSCC_OCELOT_SWITCH=m +CONFIG_NET_VENDOR_MYRI=y +CONFIG_MYRI10GE=m +CONFIG_FEALNX=m +CONFIG_NET_VENDOR_NATSEMI=y +CONFIG_NATSEMI=m +CONFIG_NS83820=m +CONFIG_NET_VENDOR_NETERION=y +CONFIG_S2IO=m +CONFIG_VXGE=m +# CONFIG_VXGE_DEBUG_TRACE_ALL is not set +CONFIG_NET_VENDOR_NETRONOME=y +CONFIG_NFP=m +CONFIG_NFP_APP_FLOWER=y +CONFIG_NFP_APP_ABM_NIC=y +# CONFIG_NFP_DEBUG is not set +CONFIG_NET_VENDOR_NI=y +# CONFIG_NI_XGE_MANAGEMENT_ENET is not set +CONFIG_NET_VENDOR_8390=y +CONFIG_NE2K_PCI=m +CONFIG_NET_VENDOR_NVIDIA=y +# CONFIG_FORCEDETH is not set +CONFIG_NET_VENDOR_OKI=y +# CONFIG_ETHOC is not set +CONFIG_NET_VENDOR_PACKET_ENGINES=y +CONFIG_HAMACHI=m +CONFIG_YELLOWFIN=m +CONFIG_NET_VENDOR_PENSANDO=y +CONFIG_IONIC=m +CONFIG_NET_VENDOR_QLOGIC=y +CONFIG_QLA3XXX=m +CONFIG_QLCNIC=m +CONFIG_QLCNIC_SRIOV=y +CONFIG_QLCNIC_DCB=y +CONFIG_QLCNIC_HWMON=y +CONFIG_NETXEN_NIC=m +CONFIG_QED=m +CONFIG_QED_LL2=y +CONFIG_QED_SRIOV=y +CONFIG_QEDE=m +CONFIG_QED_RDMA=y +CONFIG_QED_OOO=y +CONFIG_NET_VENDOR_QUALCOMM=y +# CONFIG_QCA7000_SPI is not set +# CONFIG_QCA7000_UART is not set +CONFIG_QCOM_EMAC=m +# CONFIG_RMNET is not set +CONFIG_NET_VENDOR_RDC=y +CONFIG_R6040=m +CONFIG_NET_VENDOR_REALTEK=y +CONFIG_8139CP=m +CONFIG_8139TOO=m +# CONFIG_8139TOO_PIO is not set +CONFIG_8139TOO_TUNE_TWISTER=y +CONFIG_8139TOO_8129=y +# CONFIG_8139_OLD_RX_RESET is not set +CONFIG_R8169=m +CONFIG_NET_VENDOR_RENESAS=y +CONFIG_NET_VENDOR_ROCKER=y +# CONFIG_ROCKER is not set +CONFIG_NET_VENDOR_SAMSUNG=y +# CONFIG_SXGBE_ETH is not set +# CONFIG_NET_VENDOR_SEEQ is not set +CONFIG_NET_VENDOR_SOLARFLARE=y +CONFIG_SFC=m +CONFIG_SFC_MTD=y +CONFIG_SFC_MCDI_MON=y +CONFIG_SFC_SRIOV=y +CONFIG_SFC_MCDI_LOGGING=y +CONFIG_SFC_FALCON=m +CONFIG_SFC_FALCON_MTD=y +CONFIG_NET_VENDOR_SILAN=y +CONFIG_SC92031=m +CONFIG_NET_VENDOR_SIS=y +# CONFIG_SIS900 is not set +CONFIG_SIS190=m +CONFIG_NET_VENDOR_SMSC=y +CONFIG_SMC91X=m +CONFIG_EPIC100=m +CONFIG_SMSC911X=m +CONFIG_SMSC9420=m +CONFIG_NET_VENDOR_SOCIONEXT=y +CONFIG_SNI_NETSEC=m +CONFIG_NET_VENDOR_STMICRO=y +CONFIG_STMMAC_ETH=m +# CONFIG_STMMAC_SELFTESTS is not set +CONFIG_STMMAC_PLATFORM=m +# CONFIG_DWMAC_DWC_QOS_ETH is not set +CONFIG_DWMAC_GENERIC=m +CONFIG_DWMAC_IPQ806X=m +CONFIG_DWMAC_MESON=m +CONFIG_DWMAC_QCOM_ETHQOS=m +CONFIG_DWMAC_ROCKCHIP=m +CONFIG_DWMAC_SOCFPGA=m +CONFIG_DWMAC_SUNXI=m +CONFIG_DWMAC_SUN8I=m +CONFIG_DWMAC_IMX8=m +# CONFIG_DWMAC_INTEL_PLAT is not set +CONFIG_DWMAC_VISCONTI=m +CONFIG_DWMAC_LOONGSON=m +# CONFIG_STMMAC_PCI is not set +CONFIG_NET_VENDOR_SUN=y +# CONFIG_HAPPYMEAL is not set +# CONFIG_SUNGEM is not set +CONFIG_CASSINI=m +CONFIG_NIU=m +CONFIG_NET_VENDOR_SYNOPSYS=y +# CONFIG_DWC_XLGMAC is not set +CONFIG_NET_VENDOR_TEHUTI=y +CONFIG_TEHUTI=m +CONFIG_NET_VENDOR_TI=y +# CONFIG_TI_CPSW_PHY_SEL is not set +CONFIG_TLAN=m +CONFIG_NET_VENDOR_VIA=y +# CONFIG_VIA_RHINE is not set +CONFIG_VIA_VELOCITY=m +CONFIG_NET_VENDOR_WIZNET=y +# CONFIG_WIZNET_W5100 is not set +# CONFIG_WIZNET_W5300 is not set +CONFIG_NET_VENDOR_XILINX=y +CONFIG_XILINX_EMACLITE=m +CONFIG_XILINX_AXI_EMAC=m +CONFIG_XILINX_LL_TEMAC=m +CONFIG_FDDI=y +CONFIG_DEFXX=m +CONFIG_SKFP=m +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_PHYLINK=m +CONFIG_PHYLIB=m +CONFIG_SWPHY=y +# CONFIG_LED_TRIGGER_PHY is not set +CONFIG_FIXED_PHY=m +# CONFIG_SFP is not set + +# +# MII PHY device drivers +# +CONFIG_AMD_PHY=m +CONFIG_MESON_GXL_PHY=m +CONFIG_ADIN_PHY=m +CONFIG_AQUANTIA_PHY=m +CONFIG_AX88796B_PHY=m +CONFIG_BROADCOM_PHY=m +CONFIG_BCM54140_PHY=m +# CONFIG_BCM7XXX_PHY is not set +CONFIG_BCM84881_PHY=m +CONFIG_BCM87XX_PHY=m +CONFIG_BCM_NET_PHYLIB=m +CONFIG_CICADA_PHY=m +# CONFIG_CORTINA_PHY is not set +CONFIG_DAVICOM_PHY=m +CONFIG_ICPLUS_PHY=m +CONFIG_LXT_PHY=m +# CONFIG_INTEL_XWAY_PHY is not set +CONFIG_LSI_ET1011C_PHY=m +CONFIG_MARVELL_PHY=m +CONFIG_MARVELL_10G_PHY=m +CONFIG_MARVELL_88X2222_PHY=m +CONFIG_MAXLINEAR_GPHY=m +CONFIG_MEDIATEK_GE_PHY=m +CONFIG_MICREL_PHY=m +CONFIG_MICROCHIP_PHY=m +CONFIG_MICROCHIP_T1_PHY=m +CONFIG_MICROSEMI_PHY=m +CONFIG_MOTORCOMM_PHY=m +CONFIG_NATIONAL_PHY=m +CONFIG_NXP_C45_TJA11XX_PHY=m +CONFIG_NXP_TJA11XX_PHY=m +CONFIG_AT803X_PHY=m +CONFIG_QSEMI_PHY=m +CONFIG_REALTEK_PHY=m +# CONFIG_RENESAS_PHY is not set +# CONFIG_ROCKCHIP_PHY is not set +CONFIG_SMSC_PHY=m +CONFIG_STE10XP=m +CONFIG_TERANETICS_PHY=m +# CONFIG_DP83822_PHY is not set +CONFIG_DP83TC811_PHY=m +CONFIG_DP83848_PHY=m +CONFIG_DP83867_PHY=m +CONFIG_DP83869_PHY=m +CONFIG_VITESSE_PHY=m +# CONFIG_XILINX_GMII2RGMII is not set +# CONFIG_MICREL_KS8995MA is not set + +# +# MCTP Device Drivers +# +CONFIG_MDIO_DEVICE=m +CONFIG_MDIO_BUS=m +CONFIG_FWNODE_MDIO=m +CONFIG_OF_MDIO=m +CONFIG_ACPI_MDIO=m +CONFIG_MDIO_DEVRES=m +# CONFIG_MDIO_SUN4I is not set +CONFIG_MDIO_XGENE=m +# CONFIG_MDIO_BITBANG is not set +# CONFIG_MDIO_BCM_UNIMAC is not set +CONFIG_MDIO_CAVIUM=m +CONFIG_MDIO_HISI_FEMAC=m +CONFIG_MDIO_MVUSB=m +CONFIG_MDIO_MSCC_MIIM=m +# CONFIG_MDIO_OCTEON is not set +# CONFIG_MDIO_IPQ4019 is not set +CONFIG_MDIO_IPQ8064=m +CONFIG_MDIO_THUNDER=m + +# +# MDIO Multiplexers +# +CONFIG_MDIO_BUS_MUX=m +CONFIG_MDIO_BUS_MUX_MESON_G12A=m +# CONFIG_MDIO_BUS_MUX_GPIO is not set +# CONFIG_MDIO_BUS_MUX_MULTIPLEXER is not set +CONFIG_MDIO_BUS_MUX_MMIOREG=m + +# +# PCS device drivers +# +CONFIG_PCS_XPCS=m +CONFIG_PCS_LYNX=m +# end of PCS device drivers + +# CONFIG_PLIP is not set +CONFIG_PPP=m +CONFIG_PPP_BSDCOMP=m +CONFIG_PPP_DEFLATE=m +CONFIG_PPP_FILTER=y +CONFIG_PPP_MPPE=m +CONFIG_PPP_MULTILINK=y +CONFIG_PPPOATM=m +CONFIG_PPPOE=m +CONFIG_PPTP=m +CONFIG_PPPOL2TP=m +CONFIG_PPP_ASYNC=m +CONFIG_PPP_SYNC_TTY=m +CONFIG_SLIP=m +CONFIG_SLHC=m +CONFIG_SLIP_COMPRESSED=y +CONFIG_SLIP_SMART=y +CONFIG_SLIP_MODE_SLIP6=y + +# +# Host-side USB support is needed for USB Network Adapter support +# +CONFIG_USB_NET_DRIVERS=m +CONFIG_USB_CATC=m +CONFIG_USB_KAWETH=m +CONFIG_USB_PEGASUS=m +CONFIG_USB_RTL8150=m +CONFIG_USB_RTL8152=m +CONFIG_USB_LAN78XX=m +CONFIG_USB_USBNET=m +CONFIG_USB_NET_AX8817X=m +CONFIG_USB_NET_AX88179_178A=m +CONFIG_USB_NET_CDCETHER=m +CONFIG_USB_NET_CDC_EEM=m +CONFIG_USB_NET_CDC_NCM=m +CONFIG_USB_NET_HUAWEI_CDC_NCM=m +CONFIG_USB_NET_CDC_MBIM=m +CONFIG_USB_NET_DM9601=m +CONFIG_USB_NET_SR9700=m +CONFIG_USB_NET_SR9800=m +CONFIG_USB_NET_SMSC75XX=m +CONFIG_USB_NET_SMSC95XX=m +CONFIG_USB_NET_GL620A=m +CONFIG_USB_NET_NET1080=m +CONFIG_USB_NET_PLUSB=m +CONFIG_USB_NET_MCS7830=m +CONFIG_USB_NET_RNDIS_HOST=m +CONFIG_USB_NET_CDC_SUBSET_ENABLE=m +CONFIG_USB_NET_CDC_SUBSET=m +CONFIG_USB_ALI_M5632=y +CONFIG_USB_AN2720=y +CONFIG_USB_BELKIN=y +CONFIG_USB_ARMLINUX=y +CONFIG_USB_EPSON2888=y +CONFIG_USB_KC2190=y +CONFIG_USB_NET_ZAURUS=m +CONFIG_USB_NET_CX82310_ETH=m +CONFIG_USB_NET_KALMIA=m +CONFIG_USB_NET_QMI_WWAN=m +CONFIG_USB_HSO=m +CONFIG_USB_NET_INT51X1=m +CONFIG_USB_CDC_PHONET=m +CONFIG_USB_IPHETH=m +CONFIG_USB_SIERRA_NET=m +CONFIG_USB_VL600=m +CONFIG_USB_NET_CH9200=m +CONFIG_USB_NET_AQC111=m +CONFIG_USB_RTL8153_ECM=m +CONFIG_WLAN=y +CONFIG_WLAN_VENDOR_ADMTEK=y +CONFIG_ADM8211=m +CONFIG_ATH_COMMON=m +CONFIG_WLAN_VENDOR_ATH=y +# CONFIG_ATH_DEBUG is not set +CONFIG_ATH5K=m +# CONFIG_ATH5K_DEBUG is not set +# CONFIG_ATH5K_TRACER is not set +CONFIG_ATH5K_PCI=y +CONFIG_ATH9K_HW=m +CONFIG_ATH9K_COMMON=m +CONFIG_ATH9K_BTCOEX_SUPPORT=y +CONFIG_ATH9K=m +CONFIG_ATH9K_PCI=y +# CONFIG_ATH9K_AHB is not set +# CONFIG_ATH9K_DEBUGFS is not set +# CONFIG_ATH9K_DYNACK is not set +# CONFIG_ATH9K_WOW is not set +CONFIG_ATH9K_RFKILL=y +# CONFIG_ATH9K_CHANNEL_CONTEXT is not set +CONFIG_ATH9K_PCOEM=y +CONFIG_ATH9K_PCI_NO_EEPROM=m +CONFIG_ATH9K_HTC=m +# CONFIG_ATH9K_HTC_DEBUGFS is not set +# CONFIG_ATH9K_HWRNG is not set +CONFIG_CARL9170=m +CONFIG_CARL9170_LEDS=y +CONFIG_CARL9170_WPC=y +# CONFIG_CARL9170_HWRNG is not set +CONFIG_ATH6KL=m +CONFIG_ATH6KL_SDIO=m +CONFIG_ATH6KL_USB=m +# CONFIG_ATH6KL_DEBUG is not set +# CONFIG_ATH6KL_TRACING is not set +CONFIG_AR5523=m +CONFIG_WIL6210=m +CONFIG_WIL6210_ISR_COR=y +CONFIG_WIL6210_TRACING=y +CONFIG_WIL6210_DEBUGFS=y +CONFIG_ATH10K=m +CONFIG_ATH10K_CE=y +CONFIG_ATH10K_PCI=m +# CONFIG_ATH10K_AHB is not set +# CONFIG_ATH10K_SDIO is not set +# CONFIG_ATH10K_USB is not set +# CONFIG_ATH10K_SNOC is not set +# CONFIG_ATH10K_DEBUG is not set +# CONFIG_ATH10K_DEBUGFS is not set +# CONFIG_ATH10K_TRACING is not set +CONFIG_WCN36XX=m +# CONFIG_WCN36XX_DEBUGFS is not set +CONFIG_ATH11K=m +CONFIG_ATH11K_PCI=m +# CONFIG_ATH11K_DEBUG is not set +# CONFIG_ATH11K_TRACING is not set +CONFIG_WLAN_VENDOR_ATMEL=y +# CONFIG_ATMEL is not set +CONFIG_AT76C50X_USB=m +CONFIG_WLAN_VENDOR_BROADCOM=y +CONFIG_B43=m +CONFIG_B43_BCMA=y +CONFIG_B43_SSB=y +CONFIG_B43_BUSES_BCMA_AND_SSB=y +# CONFIG_B43_BUSES_BCMA is not set +# CONFIG_B43_BUSES_SSB is not set +CONFIG_B43_PCI_AUTOSELECT=y +CONFIG_B43_PCICORE_AUTOSELECT=y +CONFIG_B43_SDIO=y +CONFIG_B43_BCMA_PIO=y +CONFIG_B43_PIO=y +CONFIG_B43_PHY_G=y +CONFIG_B43_PHY_N=y +CONFIG_B43_PHY_LP=y +CONFIG_B43_PHY_HT=y +CONFIG_B43_LEDS=y +CONFIG_B43_HWRNG=y +# CONFIG_B43_DEBUG is not set +CONFIG_B43LEGACY=m +CONFIG_B43LEGACY_PCI_AUTOSELECT=y +CONFIG_B43LEGACY_PCICORE_AUTOSELECT=y +CONFIG_B43LEGACY_LEDS=y +CONFIG_B43LEGACY_HWRNG=y +CONFIG_B43LEGACY_DEBUG=y +CONFIG_B43LEGACY_DMA=y +CONFIG_B43LEGACY_PIO=y +CONFIG_B43LEGACY_DMA_AND_PIO_MODE=y +# CONFIG_B43LEGACY_DMA_MODE is not set +# CONFIG_B43LEGACY_PIO_MODE is not set +CONFIG_BRCMUTIL=m +CONFIG_BRCMSMAC=m +CONFIG_BRCMFMAC=m +CONFIG_BRCMFMAC_PROTO_BCDC=y +CONFIG_BRCMFMAC_PROTO_MSGBUF=y +CONFIG_BRCMFMAC_SDIO=y +CONFIG_BRCMFMAC_USB=y +CONFIG_BRCMFMAC_PCIE=y +# CONFIG_BRCM_TRACING is not set +# CONFIG_BRCMDBG is not set +CONFIG_WLAN_VENDOR_CISCO=y +CONFIG_WLAN_VENDOR_INTEL=y +# CONFIG_IPW2100 is not set +CONFIG_IPW2200=m +CONFIG_IPW2200_MONITOR=y +CONFIG_IPW2200_RADIOTAP=y +CONFIG_IPW2200_PROMISCUOUS=y +CONFIG_IPW2200_QOS=y +# CONFIG_IPW2200_DEBUG is not set +CONFIG_LIBIPW=m +# CONFIG_LIBIPW_DEBUG is not set +CONFIG_IWLEGACY=m +CONFIG_IWL4965=m +CONFIG_IWL3945=m + +# +# iwl3945 / iwl4965 Debugging Options +# +# CONFIG_IWLEGACY_DEBUG is not set +# end of iwl3945 / iwl4965 Debugging Options + +CONFIG_IWLWIFI=m +CONFIG_IWLWIFI_LEDS=y +CONFIG_IWLDVM=m +CONFIG_IWLMVM=m +CONFIG_IWLWIFI_OPMODE_MODULAR=y +# CONFIG_IWLWIFI_BCAST_FILTERING is not set + +# +# Debugging Options +# +# CONFIG_IWLWIFI_DEBUG is not set +# CONFIG_IWLWIFI_DEVICE_TRACING is not set +# end of Debugging Options + +CONFIG_WLAN_VENDOR_INTERSIL=y +CONFIG_HOSTAP=m +CONFIG_HOSTAP_FIRMWARE=y +# CONFIG_HOSTAP_FIRMWARE_NVRAM is not set +CONFIG_HOSTAP_PLX=m +CONFIG_HOSTAP_PCI=m +# CONFIG_HERMES is not set +CONFIG_P54_COMMON=m +CONFIG_P54_USB=m +CONFIG_P54_PCI=m +# CONFIG_P54_SPI is not set +CONFIG_P54_LEDS=y +CONFIG_WLAN_VENDOR_MARVELL=y +CONFIG_LIBERTAS=m +CONFIG_LIBERTAS_USB=m +CONFIG_LIBERTAS_SDIO=m +# CONFIG_LIBERTAS_SPI is not set +# CONFIG_LIBERTAS_DEBUG is not set +CONFIG_LIBERTAS_MESH=y +CONFIG_LIBERTAS_THINFIRM=m +# CONFIG_LIBERTAS_THINFIRM_DEBUG is not set +CONFIG_LIBERTAS_THINFIRM_USB=m +# CONFIG_MWIFIEX is not set +CONFIG_MWL8K=m +CONFIG_WLAN_VENDOR_MEDIATEK=y +CONFIG_MT7601U=m +# CONFIG_MT76x0U is not set +# CONFIG_MT76x0E is not set +# CONFIG_MT76x2E is not set +# CONFIG_MT76x2U is not set +# CONFIG_MT7603E is not set +# CONFIG_MT7615E is not set +# CONFIG_MT7663U is not set +# CONFIG_MT7663S is not set +# CONFIG_MT7915E is not set +# CONFIG_MT7921E is not set +# CONFIG_MT7921S is not set +CONFIG_WLAN_VENDOR_MICROCHIP=y +# CONFIG_WILC1000_SDIO is not set +# CONFIG_WILC1000_SPI is not set +CONFIG_WLAN_VENDOR_RALINK=y +CONFIG_RT2X00=m +CONFIG_RT2400PCI=m +CONFIG_RT2500PCI=m +CONFIG_RT61PCI=m +CONFIG_RT2800PCI=m +CONFIG_RT2800PCI_RT33XX=y +CONFIG_RT2800PCI_RT35XX=y +CONFIG_RT2800PCI_RT53XX=y +CONFIG_RT2800PCI_RT3290=y +CONFIG_RT2500USB=m +CONFIG_RT73USB=m +CONFIG_RT2800USB=m +CONFIG_RT2800USB_RT33XX=y +CONFIG_RT2800USB_RT35XX=y +CONFIG_RT2800USB_RT3573=y +CONFIG_RT2800USB_RT53XX=y +CONFIG_RT2800USB_RT55XX=y +# CONFIG_RT2800USB_UNKNOWN is not set +CONFIG_RT2800_LIB=m +CONFIG_RT2800_LIB_MMIO=m +CONFIG_RT2X00_LIB_MMIO=m +CONFIG_RT2X00_LIB_PCI=m +CONFIG_RT2X00_LIB_USB=m +CONFIG_RT2X00_LIB=m +CONFIG_RT2X00_LIB_FIRMWARE=y +CONFIG_RT2X00_LIB_CRYPTO=y +CONFIG_RT2X00_LIB_LEDS=y +# CONFIG_RT2X00_DEBUG is not set +CONFIG_WLAN_VENDOR_REALTEK=y +CONFIG_RTL8180=m +CONFIG_RTL8187=m +CONFIG_RTL8187_LEDS=y +CONFIG_RTL_CARDS=m +CONFIG_RTL8192CE=m +CONFIG_RTL8192SE=m +CONFIG_RTL8192DE=m +CONFIG_RTL8723AE=m +CONFIG_RTL8723BE=m +CONFIG_RTL8188EE=m +CONFIG_RTL8192EE=m +CONFIG_RTL8821AE=m +CONFIG_RTL8192CU=m +CONFIG_RTLWIFI=m +CONFIG_RTLWIFI_PCI=m +CONFIG_RTLWIFI_USB=m +# CONFIG_RTLWIFI_DEBUG is not set +CONFIG_RTL8192C_COMMON=m +CONFIG_RTL8723_COMMON=m +CONFIG_RTLBTCOEXIST=m +CONFIG_RTL8XXXU=m +# CONFIG_RTL8XXXU_UNTESTED is not set +CONFIG_RTW88=m +CONFIG_RTW88_CORE=m +CONFIG_RTW88_PCI=m +CONFIG_RTW88_8822B=m +CONFIG_RTW88_8822C=m +CONFIG_RTW88_8723D=m +CONFIG_RTW88_8821C=m +CONFIG_RTW88_8822BE=m +CONFIG_RTW88_8822CE=m +CONFIG_RTW88_8723DE=m +CONFIG_RTW88_8821CE=m +# CONFIG_RTW88_DEBUG is not set +# CONFIG_RTW88_DEBUGFS is not set +CONFIG_RTW89=m +CONFIG_RTW89_CORE=m +CONFIG_RTW89_PCI=m +CONFIG_RTW89_8852AE=m +# CONFIG_RTW89_DEBUGMSG is not set +# CONFIG_RTW89_DEBUGFS is not set +CONFIG_WLAN_VENDOR_RSI=y +CONFIG_RSI_91X=m +CONFIG_RSI_DEBUGFS=y +# CONFIG_RSI_SDIO is not set +CONFIG_RSI_USB=m +CONFIG_RSI_COEX=y +CONFIG_WLAN_VENDOR_ST=y +# CONFIG_CW1200 is not set +CONFIG_WLAN_VENDOR_TI=y +CONFIG_WL1251=m +CONFIG_WL1251_SPI=m +CONFIG_WL1251_SDIO=m +CONFIG_WL12XX=m +CONFIG_WL18XX=m +CONFIG_WLCORE=m +CONFIG_WLCORE_SPI=m +CONFIG_WLCORE_SDIO=m +CONFIG_WILINK_PLATFORM_DATA=y +CONFIG_WLAN_VENDOR_ZYDAS=y +# CONFIG_USB_ZD1201 is not set +CONFIG_ZD1211RW=m +# CONFIG_ZD1211RW_DEBUG is not set +CONFIG_WLAN_VENDOR_QUANTENNA=y +CONFIG_QTNFMAC=m +CONFIG_QTNFMAC_PCIE=m +CONFIG_MAC80211_HWSIM=m +CONFIG_USB_NET_RNDIS_WLAN=m +CONFIG_VIRT_WIFI=m +# CONFIG_WAN is not set +CONFIG_IEEE802154_DRIVERS=m +CONFIG_IEEE802154_FAKELB=m +CONFIG_IEEE802154_AT86RF230=m +# CONFIG_IEEE802154_AT86RF230_DEBUGFS is not set +CONFIG_IEEE802154_MRF24J40=m +CONFIG_IEEE802154_CC2520=m +CONFIG_IEEE802154_ATUSB=m +CONFIG_IEEE802154_ADF7242=m +# CONFIG_IEEE802154_CA8210 is not set +CONFIG_IEEE802154_MCR20A=m +# CONFIG_IEEE802154_HWSIM is not set + +# +# Wireless WAN +# +CONFIG_WWAN=y +# CONFIG_WWAN_HWSIM is not set +CONFIG_MHI_WWAN_CTRL=m +CONFIG_MHI_WWAN_MBIM=m +CONFIG_RPMSG_WWAN_CTRL=m +# end of Wireless WAN + +CONFIG_XEN_NETDEV_FRONTEND=m +CONFIG_XEN_NETDEV_BACKEND=m +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +CONFIG_USB4_NET=m +CONFIG_HYPERV_NET=m +# CONFIG_NETDEVSIM is not set +CONFIG_NET_FAILOVER=m +# CONFIG_ISDN is not set + +# +# Input device support +# +CONFIG_INPUT=y +CONFIG_INPUT_LEDS=y +CONFIG_INPUT_FF_MEMLESS=m +CONFIG_INPUT_SPARSEKMAP=m +CONFIG_INPUT_MATRIXKMAP=m + +# +# Userland interfaces +# +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_MOUSEDEV_PSAUX=y +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 +CONFIG_INPUT_JOYDEV=m +CONFIG_INPUT_EVDEV=m +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +# CONFIG_KEYBOARD_ADC is not set +CONFIG_KEYBOARD_ADP5588=m +# CONFIG_KEYBOARD_ADP5589 is not set +CONFIG_KEYBOARD_ATKBD=y +CONFIG_KEYBOARD_QT1050=m +# CONFIG_KEYBOARD_QT1070 is not set +CONFIG_KEYBOARD_QT2160=m +# CONFIG_KEYBOARD_DLINK_DIR685 is not set +# CONFIG_KEYBOARD_LKKBD is not set +CONFIG_KEYBOARD_GPIO=m +# CONFIG_KEYBOARD_GPIO_POLLED is not set +# CONFIG_KEYBOARD_TCA6416 is not set +# CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_MATRIX is not set +CONFIG_KEYBOARD_LM8323=m +# CONFIG_KEYBOARD_LM8333 is not set +CONFIG_KEYBOARD_MAX7359=m +# CONFIG_KEYBOARD_MCS is not set +# CONFIG_KEYBOARD_MPR121 is not set +CONFIG_KEYBOARD_SNVS_PWRKEY=m +CONFIG_KEYBOARD_IMX=m +CONFIG_KEYBOARD_IMX_SC_KEY=m +# CONFIG_KEYBOARD_NEWTON is not set +CONFIG_KEYBOARD_TEGRA=m +CONFIG_KEYBOARD_OPENCORES=m +# CONFIG_KEYBOARD_SAMSUNG is not set +CONFIG_KEYBOARD_STOWAWAY=m +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_SUN4I_LRADC is not set +CONFIG_KEYBOARD_IQS62X=m +# CONFIG_KEYBOARD_OMAP4 is not set +# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set +# CONFIG_KEYBOARD_XTKBD is not set +# CONFIG_KEYBOARD_CROS_EC is not set +# CONFIG_KEYBOARD_CAP11XX is not set +# CONFIG_KEYBOARD_BCM is not set +CONFIG_KEYBOARD_CYPRESS_SF=m +CONFIG_INPUT_MOUSE=y +CONFIG_MOUSE_PS2=y +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_BYD=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y +CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +CONFIG_MOUSE_PS2_ELANTECH=y +CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y +CONFIG_MOUSE_PS2_SENTELIC=y +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MOUSE_PS2_FOCALTECH=y +CONFIG_MOUSE_PS2_SMBUS=y +# CONFIG_MOUSE_SERIAL is not set +# CONFIG_MOUSE_APPLETOUCH is not set +# CONFIG_MOUSE_BCM5974 is not set +# CONFIG_MOUSE_CYAPA is not set +# CONFIG_MOUSE_ELAN_I2C is not set +# CONFIG_MOUSE_VSXXXAA is not set +# CONFIG_MOUSE_GPIO is not set +CONFIG_MOUSE_SYNAPTICS_I2C=m +CONFIG_MOUSE_SYNAPTICS_USB=m +# CONFIG_INPUT_JOYSTICK is not set +CONFIG_INPUT_TABLET=y +CONFIG_TABLET_USB_ACECAD=m +CONFIG_TABLET_USB_AIPTEK=m +CONFIG_TABLET_USB_HANWANG=m +CONFIG_TABLET_USB_KBTAB=m +CONFIG_TABLET_USB_PEGASUS=m +CONFIG_TABLET_SERIAL_WACOM4=m +# CONFIG_INPUT_TOUCHSCREEN is not set +CONFIG_INPUT_MISC=y +# CONFIG_INPUT_AD714X is not set +CONFIG_INPUT_ATC260X_ONKEY=m +# CONFIG_INPUT_ATMEL_CAPTOUCH is not set +# CONFIG_INPUT_BMA150 is not set +# CONFIG_INPUT_E3X0_BUTTON is not set +CONFIG_INPUT_PM8941_PWRKEY=m +# CONFIG_INPUT_PM8XXX_VIBRATOR is not set +# CONFIG_INPUT_MMA8450 is not set +# CONFIG_INPUT_GPIO_BEEPER is not set +# CONFIG_INPUT_GPIO_DECODER is not set +# CONFIG_INPUT_GPIO_VIBRA is not set +CONFIG_INPUT_ATI_REMOTE2=m +CONFIG_INPUT_KEYSPAN_REMOTE=m +# CONFIG_INPUT_KXTJ9 is not set +CONFIG_INPUT_POWERMATE=m +CONFIG_INPUT_YEALINK=m +CONFIG_INPUT_CM109=m +# CONFIG_INPUT_REGULATOR_HAPTIC is not set +CONFIG_INPUT_AXP20X_PEK=m +CONFIG_INPUT_UINPUT=m +# CONFIG_INPUT_PCF8574 is not set +# CONFIG_INPUT_PWM_BEEPER is not set +# CONFIG_INPUT_PWM_VIBRA is not set +# CONFIG_INPUT_RK805_PWRKEY is not set +# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set +CONFIG_INPUT_DA7280_HAPTICS=m +# CONFIG_INPUT_ADXL34X is not set +# CONFIG_INPUT_IMS_PCU is not set +CONFIG_INPUT_IQS269A=m +CONFIG_INPUT_IQS626A=m +# CONFIG_INPUT_CMA3000 is not set +CONFIG_INPUT_XEN_KBDDEV_FRONTEND=y +# CONFIG_INPUT_SOC_BUTTON_ARRAY is not set +# CONFIG_INPUT_DRV260X_HAPTICS is not set +# CONFIG_INPUT_DRV2665_HAPTICS is not set +# CONFIG_INPUT_DRV2667_HAPTICS is not set +CONFIG_INPUT_HISI_POWERKEY=m +CONFIG_RMI4_CORE=m +# CONFIG_RMI4_I2C is not set +# CONFIG_RMI4_SPI is not set +# CONFIG_RMI4_SMB is not set +CONFIG_RMI4_F03=y +CONFIG_RMI4_F03_SERIO=m +CONFIG_RMI4_2D_SENSOR=y +CONFIG_RMI4_F11=y +CONFIG_RMI4_F12=y +CONFIG_RMI4_F30=y +# CONFIG_RMI4_F34 is not set +CONFIG_RMI4_F3A=y +# CONFIG_RMI4_F54 is not set +# CONFIG_RMI4_F55 is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_SERIO_SERPORT=y +# CONFIG_SERIO_PARKBD is not set +# CONFIG_SERIO_AMBAKMI is not set +# CONFIG_SERIO_PCIPS2 is not set +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +CONFIG_SERIO_ALTERA_PS2=m +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_SERIO_APBPS2 is not set +CONFIG_HYPERV_KEYBOARD=m +# CONFIG_SERIO_SUN4I_PS2 is not set +# CONFIG_SERIO_GPIO_PS2 is not set +# CONFIG_USERIO is not set +# CONFIG_GAMEPORT is not set +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +CONFIG_VT_HW_CONSOLE_BINDING=y +CONFIG_UNIX98_PTYS=y +# CONFIG_LEGACY_PTYS is not set +CONFIG_LDISC_AUTOLOAD=y + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y +CONFIG_SERIAL_8250_PNP=y +CONFIG_SERIAL_8250_16550A_VARIANTS=y +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_DMA=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_EXAR=y +CONFIG_SERIAL_8250_NR_UARTS=4 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +CONFIG_SERIAL_8250_EXTENDED=y +# CONFIG_SERIAL_8250_MANY_PORTS is not set +# CONFIG_SERIAL_8250_ASPEED_VUART is not set +CONFIG_SERIAL_8250_SHARE_IRQ=y +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +# CONFIG_SERIAL_8250_RSA is not set +CONFIG_SERIAL_8250_DWLIB=y +CONFIG_SERIAL_8250_BCM2835AUX=y +CONFIG_SERIAL_8250_FSL=y +CONFIG_SERIAL_8250_DW=y +# CONFIG_SERIAL_8250_RT288X is not set +CONFIG_SERIAL_8250_TEGRA=y +CONFIG_SERIAL_OF_PLATFORM=y + +# +# Non-8250 serial port support +# +CONFIG_SERIAL_AMBA_PL010=y +CONFIG_SERIAL_AMBA_PL010_CONSOLE=y +CONFIG_SERIAL_AMBA_PL011=y +CONFIG_SERIAL_AMBA_PL011_CONSOLE=y +# CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST is not set +CONFIG_SERIAL_MESON=y +CONFIG_SERIAL_MESON_CONSOLE=y +CONFIG_SERIAL_SAMSUNG=m +CONFIG_SERIAL_SAMSUNG_UARTS_4=y +CONFIG_SERIAL_SAMSUNG_UARTS=4 +CONFIG_SERIAL_TEGRA=y +CONFIG_SERIAL_TEGRA_TCU=m +# CONFIG_SERIAL_MAX3100 is not set +# CONFIG_SERIAL_MAX310X is not set +CONFIG_SERIAL_IMX=m +CONFIG_SERIAL_IMX_CONSOLE=m +CONFIG_SERIAL_IMX_EARLYCON=y +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +CONFIG_SERIAL_MSM=y +CONFIG_SERIAL_MSM_CONSOLE=y +CONFIG_SERIAL_QCOM_GENI=m +# CONFIG_SERIAL_QCOM_GENI_CONSOLE is not set +# CONFIG_SERIAL_SIFIVE is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_BCM63XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_XILINX_PS_UART is not set +# CONFIG_SERIAL_ARC is not set +CONFIG_SERIAL_RP2=m +CONFIG_SERIAL_RP2_NR_UARTS=32 +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_FSL_LINFLEXUART is not set +# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set +# CONFIG_SERIAL_SPRD is not set +CONFIG_SERIAL_MVEBU_UART=y +CONFIG_SERIAL_MVEBU_CONSOLE=y +# end of Serial drivers + +CONFIG_SERIAL_MCTRL_GPIO=y +# CONFIG_SERIAL_NONSTANDARD is not set +CONFIG_N_GSM=m +CONFIG_NOZOMI=m +CONFIG_NULL_TTY=m +CONFIG_HVC_DRIVER=y +CONFIG_HVC_IRQ=y +CONFIG_HVC_XEN=y +CONFIG_HVC_XEN_FRONTEND=y +# CONFIG_HVC_DCC is not set +CONFIG_RPMSG_TTY=m +CONFIG_SERIAL_DEV_BUS=m +CONFIG_TTY_PRINTK=m +CONFIG_TTY_PRINTK_LEVEL=6 +# CONFIG_PRINTER is not set +# CONFIG_PPDEV is not set +CONFIG_VIRTIO_CONSOLE=m +CONFIG_IPMI_HANDLER=m +CONFIG_IPMI_DMI_DECODE=y +CONFIG_IPMI_PLAT_DATA=y +# CONFIG_IPMI_PANIC_EVENT is not set +CONFIG_IPMI_DEVICE_INTERFACE=m +CONFIG_IPMI_SI=m +CONFIG_IPMI_SSIF=m +CONFIG_IPMI_IPMB=m +# CONFIG_IPMI_WATCHDOG is not set +# CONFIG_IPMI_POWEROFF is not set +CONFIG_IPMB_DEVICE_INTERFACE=m +CONFIG_HW_RANDOM=m +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +CONFIG_HW_RANDOM_BA431=m +CONFIG_HW_RANDOM_BCM2835=m +CONFIG_HW_RANDOM_IPROC_RNG200=m +# CONFIG_HW_RANDOM_OMAP is not set +CONFIG_HW_RANDOM_VIRTIO=m +CONFIG_HW_RANDOM_HISI=m +CONFIG_HW_RANDOM_XGENE=m +CONFIG_HW_RANDOM_MESON=m +CONFIG_HW_RANDOM_CAVIUM=m +CONFIG_HW_RANDOM_OPTEE=m +CONFIG_HW_RANDOM_CCTRNG=m +CONFIG_HW_RANDOM_XIPHERA=m +CONFIG_HW_RANDOM_ARM_SMCCC_TRNG=m +# CONFIG_APPLICOM is not set +CONFIG_DEVMEM=y +CONFIG_DEVPORT=y +# CONFIG_TCG_TPM is not set +CONFIG_XILLYBUS_CLASS=m +# CONFIG_XILLYBUS is not set +CONFIG_XILLYUSB=m +# CONFIG_RANDOM_TRUST_CPU is not set +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set +# end of Character devices + +# +# I2C support +# +CONFIG_I2C=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_COMPAT=y +CONFIG_I2C_CHARDEV=m +CONFIG_I2C_MUX=m + +# +# Multiplexer I2C Chip support +# +# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set +# CONFIG_I2C_MUX_GPIO is not set +# CONFIG_I2C_MUX_GPMUX is not set +# CONFIG_I2C_MUX_LTC4306 is not set +# CONFIG_I2C_MUX_PCA9541 is not set +# CONFIG_I2C_MUX_PCA954x is not set +# CONFIG_I2C_MUX_PINCTRL is not set +# CONFIG_I2C_MUX_REG is not set +# CONFIG_I2C_DEMUX_PINCTRL is not set +# CONFIG_I2C_MUX_MLXCPLD is not set +# end of Multiplexer I2C Chip support + +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_SMBUS=m +CONFIG_I2C_ALGOBIT=m +CONFIG_I2C_ALGOPCA=m + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_AMD_MP2 is not set +# CONFIG_I2C_HIX5HD2 is not set +# CONFIG_I2C_I801 is not set +CONFIG_I2C_ISCH=m +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_NVIDIA_GPU is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +CONFIG_I2C_ALTERA=m +CONFIG_I2C_BCM2835=m +CONFIG_I2C_BRCMSTB=m +# CONFIG_I2C_CADENCE is not set +# CONFIG_I2C_CBUS_GPIO is not set +CONFIG_I2C_DESIGNWARE_CORE=m +# CONFIG_I2C_DESIGNWARE_SLAVE is not set +CONFIG_I2C_DESIGNWARE_PLATFORM=m +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +# CONFIG_I2C_GPIO is not set +CONFIG_I2C_HISI=m +CONFIG_I2C_IMX=m +CONFIG_I2C_IMX_LPI2C=m +CONFIG_I2C_MESON=m +CONFIG_I2C_MV64XXX=m +# CONFIG_I2C_NOMADIK is not set +CONFIG_I2C_OCORES=m +CONFIG_I2C_APPLE=m +CONFIG_I2C_PCA_PLATFORM=m +CONFIG_I2C_PXA=m +# CONFIG_I2C_PXA_SLAVE is not set +# CONFIG_I2C_QCOM_CCI is not set +CONFIG_I2C_QCOM_GENI=m +CONFIG_I2C_QUP=m +CONFIG_I2C_RK3X=m +CONFIG_I2C_SIMTEC=m +CONFIG_I2C_SYNQUACER=m +CONFIG_I2C_TEGRA=m +CONFIG_I2C_TEGRA_BPMP=y +# CONFIG_I2C_VERSATILE is not set +CONFIG_I2C_THUNDERX=m +# CONFIG_I2C_XILINX is not set +CONFIG_I2C_XLP9XX=m + +# +# External I2C/SMBus adapter drivers +# +CONFIG_I2C_DIOLAN_U2C=m +CONFIG_I2C_CP2615=m +# CONFIG_I2C_PARPORT is not set +CONFIG_I2C_ROBOTFUZZ_OSIF=m +CONFIG_I2C_TAOS_EVM=m +CONFIG_I2C_TINY_USB=m +CONFIG_I2C_VIPERBOARD=m + +# +# Other I2C/SMBus bus drivers +# +CONFIG_I2C_CROS_EC_TUNNEL=m +CONFIG_I2C_XGENE_SLIMPRO=m +CONFIG_I2C_VIRTIO=m +# end of I2C Hardware Bus support + +# CONFIG_I2C_STUB is not set +CONFIG_I2C_SLAVE=y +CONFIG_I2C_SLAVE_EEPROM=m +# CONFIG_I2C_SLAVE_TESTUNIT is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# end of I2C support + +CONFIG_I3C=m +CONFIG_CDNS_I3C_MASTER=m +CONFIG_DW_I3C_MASTER=m +CONFIG_SVC_I3C_MASTER=m +# CONFIG_MIPI_I3C_HCI is not set +CONFIG_SPI=y +# CONFIG_SPI_DEBUG is not set +CONFIG_SPI_MASTER=y +CONFIG_SPI_MEM=y + +# +# SPI Master Controller Drivers +# +# CONFIG_SPI_ALTERA is not set +CONFIG_SPI_ARMADA_3700=m +# CONFIG_SPI_AXI_SPI_ENGINE is not set +CONFIG_SPI_BCM2835=m +CONFIG_SPI_BCM2835AUX=m +CONFIG_SPI_BITBANG=m +CONFIG_SPI_BUTTERFLY=m +# CONFIG_SPI_CADENCE is not set +# CONFIG_SPI_CADENCE_QUADSPI is not set +CONFIG_SPI_CADENCE_XSPI=m +# CONFIG_SPI_DESIGNWARE is not set +CONFIG_SPI_FSL_LPSPI=m +CONFIG_SPI_FSL_QUADSPI=m +CONFIG_SPI_HISI_KUNPENG=m +CONFIG_SPI_HISI_SFC_V3XX=m +CONFIG_SPI_NXP_FLEXSPI=m +# CONFIG_SPI_GPIO is not set +CONFIG_SPI_IMX=m +CONFIG_SPI_LM70_LLP=m +# CONFIG_SPI_FSL_SPI is not set +# CONFIG_SPI_MESON_SPICC is not set +CONFIG_SPI_MESON_SPIFC=m +# CONFIG_SPI_OC_TINY is not set +# CONFIG_SPI_ORION is not set +# CONFIG_SPI_PL022 is not set +# CONFIG_SPI_PXA2XX is not set +CONFIG_SPI_ROCKCHIP=m +CONFIG_SPI_ROCKCHIP_SFC=m +# CONFIG_SPI_QCOM_QSPI is not set +CONFIG_SPI_QUP=m +# CONFIG_SPI_QCOM_GENI is not set +# CONFIG_SPI_SC18IS602 is not set +# CONFIG_SPI_SIFIVE is not set +# CONFIG_SPI_SUN4I is not set +# CONFIG_SPI_SUN6I is not set +CONFIG_SPI_SYNQUACER=m +# CONFIG_SPI_MXIC is not set +CONFIG_SPI_TEGRA210_QUAD=m +CONFIG_SPI_TEGRA114=m +CONFIG_SPI_TEGRA20_SFLASH=m +CONFIG_SPI_TEGRA20_SLINK=m +CONFIG_SPI_THUNDERX=m +# CONFIG_SPI_XCOMM is not set +# CONFIG_SPI_XILINX is not set +CONFIG_SPI_XLP=m +# CONFIG_SPI_ZYNQMP_GQSPI is not set +CONFIG_SPI_AMD=m + +# +# SPI Multiplexer support +# +CONFIG_SPI_MUX=m + +# +# SPI Protocol Masters +# +# CONFIG_SPI_SPIDEV is not set +# CONFIG_SPI_LOOPBACK_TEST is not set +# CONFIG_SPI_TLE62X0 is not set +# CONFIG_SPI_SLAVE is not set +CONFIG_SPI_DYNAMIC=y +CONFIG_SPMI=y +CONFIG_SPMI_HISI3670=m +CONFIG_SPMI_MSM_PMIC_ARB=y +# CONFIG_HSI is not set +CONFIG_PPS=y +# CONFIG_PPS_DEBUG is not set + +# +# PPS clients support +# +# CONFIG_PPS_CLIENT_KTIMER is not set +CONFIG_PPS_CLIENT_LDISC=m +CONFIG_PPS_CLIENT_PARPORT=m +# CONFIG_PPS_CLIENT_GPIO is not set + +# +# PPS generators support +# + +# +# PTP clock support +# +CONFIG_PTP_1588_CLOCK=y +CONFIG_PTP_1588_CLOCK_OPTIONAL=y +CONFIG_PTP_1588_CLOCK_QORIQ=m + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +CONFIG_PTP_1588_CLOCK_KVM=m +CONFIG_PTP_1588_CLOCK_IDT82P33=m +CONFIG_PTP_1588_CLOCK_IDTCM=m +CONFIG_PTP_1588_CLOCK_OCP=m +# end of PTP clock support + +CONFIG_PINCTRL=y +CONFIG_GENERIC_PINCTRL_GROUPS=y +CONFIG_PINMUX=y +CONFIG_GENERIC_PINMUX_FUNCTIONS=y +CONFIG_PINCONF=y +CONFIG_GENERIC_PINCONF=y +# CONFIG_DEBUG_PINCTRL is not set +CONFIG_PINCTRL_APPLE_GPIO=m +CONFIG_PINCTRL_AXP209=m +CONFIG_PINCTRL_AMD=y +CONFIG_PINCTRL_BM1880=y +# CONFIG_PINCTRL_MCP23S08 is not set +CONFIG_PINCTRL_ROCKCHIP=y +CONFIG_PINCTRL_SINGLE=y +# CONFIG_PINCTRL_SX150X is not set +# CONFIG_PINCTRL_STMFX is not set +CONFIG_PINCTRL_MAX77620=y +# CONFIG_PINCTRL_RK805 is not set +# CONFIG_PINCTRL_OCELOT is not set +# CONFIG_PINCTRL_MICROCHIP_SGPIO is not set +CONFIG_PINCTRL_KEEMBAY=m +CONFIG_PINCTRL_BCM2835=y +CONFIG_PINCTRL_IMX=y +CONFIG_PINCTRL_IMX_SCU=y +CONFIG_PINCTRL_IMX8MM=y +CONFIG_PINCTRL_IMX8MN=y +CONFIG_PINCTRL_IMX8MP=y +CONFIG_PINCTRL_IMX8MQ=y +CONFIG_PINCTRL_IMX8QM=y +CONFIG_PINCTRL_IMX8QXP=y +CONFIG_PINCTRL_IMX8DXL=y +CONFIG_PINCTRL_IMX8ULP=y +CONFIG_PINCTRL_MVEBU=y +CONFIG_PINCTRL_ARMADA_AP806=y +CONFIG_PINCTRL_ARMADA_CP110=y +CONFIG_PINCTRL_ARMADA_37XX=y +CONFIG_PINCTRL_MSM=y +# CONFIG_PINCTRL_APQ8064 is not set +# CONFIG_PINCTRL_APQ8084 is not set +# CONFIG_PINCTRL_IPQ4019 is not set +# CONFIG_PINCTRL_IPQ8064 is not set +# CONFIG_PINCTRL_IPQ8074 is not set +# CONFIG_PINCTRL_IPQ6018 is not set +CONFIG_PINCTRL_MSM8226=m +# CONFIG_PINCTRL_MSM8660 is not set +# CONFIG_PINCTRL_MSM8960 is not set +# CONFIG_PINCTRL_MDM9607 is not set +# CONFIG_PINCTRL_MDM9615 is not set +# CONFIG_PINCTRL_MSM8X74 is not set +CONFIG_PINCTRL_MSM8916=y +# CONFIG_PINCTRL_MSM8953 is not set +# CONFIG_PINCTRL_MSM8976 is not set +# CONFIG_PINCTRL_MSM8994 is not set +CONFIG_PINCTRL_MSM8996=y +# CONFIG_PINCTRL_MSM8998 is not set +# CONFIG_PINCTRL_QCM2290 is not set +# CONFIG_PINCTRL_QCS404 is not set +# CONFIG_PINCTRL_QDF2XXX is not set +CONFIG_PINCTRL_QCOM_SPMI_PMIC=y +CONFIG_PINCTRL_QCOM_SSBI_PMIC=y +# CONFIG_PINCTRL_SC7180 is not set +# CONFIG_PINCTRL_SC7280 is not set +# CONFIG_PINCTRL_SC8180X is not set +# CONFIG_PINCTRL_SDM660 is not set +# CONFIG_PINCTRL_SDM845 is not set +# CONFIG_PINCTRL_SDX55 is not set +# CONFIG_PINCTRL_SM6115 is not set +# CONFIG_PINCTRL_SM6125 is not set +# CONFIG_PINCTRL_SM6350 is not set +CONFIG_PINCTRL_SM8150=m +CONFIG_PINCTRL_SM8250=m +# CONFIG_PINCTRL_SM8350 is not set +# CONFIG_PINCTRL_LPASS_LPI is not set + +# +# Renesas pinctrl drivers +# +# end of Renesas pinctrl drivers + +CONFIG_PINCTRL_SUNXI=y +# CONFIG_PINCTRL_SUN4I_A10 is not set +# CONFIG_PINCTRL_SUN5I is not set +# CONFIG_PINCTRL_SUN6I_A31 is not set +# CONFIG_PINCTRL_SUN6I_A31_R is not set +# CONFIG_PINCTRL_SUN8I_A23 is not set +# CONFIG_PINCTRL_SUN8I_A33 is not set +# CONFIG_PINCTRL_SUN8I_A83T is not set +# CONFIG_PINCTRL_SUN8I_A83T_R is not set +# CONFIG_PINCTRL_SUN8I_A23_R is not set +# CONFIG_PINCTRL_SUN8I_H3 is not set +CONFIG_PINCTRL_SUN8I_H3_R=y +# CONFIG_PINCTRL_SUN8I_V3S is not set +# CONFIG_PINCTRL_SUN9I_A80 is not set +# CONFIG_PINCTRL_SUN9I_A80_R is not set +CONFIG_PINCTRL_SUN50I_A64=y +CONFIG_PINCTRL_SUN50I_A64_R=y +CONFIG_PINCTRL_SUN50I_A100=y +CONFIG_PINCTRL_SUN50I_A100_R=y +CONFIG_PINCTRL_SUN50I_H5=y +CONFIG_PINCTRL_SUN50I_H6=y +CONFIG_PINCTRL_SUN50I_H6_R=y +CONFIG_PINCTRL_SUN50I_H616=y +CONFIG_PINCTRL_SUN50I_H616_R=y +CONFIG_PINCTRL_TEGRA=y +CONFIG_PINCTRL_TEGRA124=y +CONFIG_PINCTRL_TEGRA210=y +CONFIG_PINCTRL_TEGRA194=y +CONFIG_PINCTRL_TEGRA_XUSB=y +CONFIG_PINCTRL_MESON=y +CONFIG_PINCTRL_MESON_GXBB=y +CONFIG_PINCTRL_MESON_GXL=y +CONFIG_PINCTRL_MESON8_PMX=y +CONFIG_PINCTRL_MESON_AXG=y +CONFIG_PINCTRL_MESON_AXG_PMX=y +CONFIG_PINCTRL_MESON_G12A=y +CONFIG_PINCTRL_MESON_A1=y +CONFIG_PINCTRL_MADERA=m +CONFIG_PINCTRL_VISCONTI=y +CONFIG_PINCTRL_TMPV7700=y +CONFIG_GPIOLIB=y +CONFIG_GPIOLIB_FASTPATH_LIMIT=512 +CONFIG_OF_GPIO=y +CONFIG_GPIO_ACPI=y +CONFIG_GPIOLIB_IRQCHIP=y +# CONFIG_DEBUG_GPIO is not set +CONFIG_GPIO_SYSFS=y +CONFIG_GPIO_CDEV=y +CONFIG_GPIO_CDEV_V1=y +CONFIG_GPIO_GENERIC=y + +# +# Memory mapped GPIO drivers +# +# CONFIG_GPIO_74XX_MMIO is not set +# CONFIG_GPIO_ALTERA is not set +# CONFIG_GPIO_AMDPT is not set +CONFIG_GPIO_RASPBERRYPI_EXP=m +CONFIG_GPIO_CADENCE=m +# CONFIG_GPIO_DWAPB is not set +# CONFIG_GPIO_EXAR is not set +# CONFIG_GPIO_FTGPIO010 is not set +CONFIG_GPIO_GENERIC_PLATFORM=y +# CONFIG_GPIO_GRGPIO is not set +CONFIG_GPIO_HISI=m +# CONFIG_GPIO_HLWD is not set +CONFIG_GPIO_LOGICVC=m +CONFIG_GPIO_MB86S7X=m +CONFIG_GPIO_MVEBU=y +CONFIG_GPIO_MXC=y +CONFIG_GPIO_PL061=y +CONFIG_GPIO_ROCKCHIP=y +# CONFIG_GPIO_SAMA5D2_PIOBU is not set +CONFIG_GPIO_SIFIVE=y +# CONFIG_GPIO_SYSCON is not set +CONFIG_GPIO_TEGRA=y +CONFIG_GPIO_TEGRA186=y +# CONFIG_GPIO_THUNDERX is not set +CONFIG_GPIO_VISCONTI=m +CONFIG_GPIO_XGENE=y +CONFIG_GPIO_XGENE_SB=m +CONFIG_GPIO_XILINX=m +CONFIG_GPIO_XLP=y +# CONFIG_GPIO_AMD_FCH is not set +# end of Memory mapped GPIO drivers + +# +# I2C GPIO expanders +# +# CONFIG_GPIO_ADP5588 is not set +# CONFIG_GPIO_ADNP is not set +# CONFIG_GPIO_GW_PLD is not set +# CONFIG_GPIO_MAX7300 is not set +# CONFIG_GPIO_MAX732X is not set +CONFIG_GPIO_PCA953X=y +CONFIG_GPIO_PCA953X_IRQ=y +CONFIG_GPIO_PCA9570=m +# CONFIG_GPIO_PCF857X is not set +# CONFIG_GPIO_TPIC2810 is not set +# end of I2C GPIO expanders + +# +# MFD GPIO expanders +# +CONFIG_GPIO_BD70528=m +CONFIG_GPIO_BD71815=m +CONFIG_GPIO_BD71828=m +CONFIG_GPIO_MADERA=m +CONFIG_GPIO_MAX77620=y +CONFIG_GPIO_WM8994=m +# end of MFD GPIO expanders + +# +# PCI GPIO expanders +# +# CONFIG_GPIO_PCI_IDIO_16 is not set +# CONFIG_GPIO_PCIE_IDIO_24 is not set +# CONFIG_GPIO_RDC321X is not set +# end of PCI GPIO expanders + +# +# SPI GPIO expanders +# +# CONFIG_GPIO_74X164 is not set +# CONFIG_GPIO_MAX3191X is not set +# CONFIG_GPIO_MAX7301 is not set +# CONFIG_GPIO_MC33880 is not set +# CONFIG_GPIO_PISOSR is not set +# CONFIG_GPIO_XRA1403 is not set +CONFIG_GPIO_MOXTET=m +# end of SPI GPIO expanders + +# +# USB GPIO expanders +# +CONFIG_GPIO_VIPERBOARD=m +# end of USB GPIO expanders + +# +# Virtual GPIO drivers +# +CONFIG_GPIO_AGGREGATOR=m +# CONFIG_GPIO_MOCKUP is not set +CONFIG_GPIO_VIRTIO=m +# end of Virtual GPIO drivers + +CONFIG_W1=m +CONFIG_W1_CON=y + +# +# 1-wire Bus Masters +# +# CONFIG_W1_MASTER_MATROX is not set +CONFIG_W1_MASTER_DS2490=m +CONFIG_W1_MASTER_DS2482=m +CONFIG_W1_MASTER_MXC=m +# CONFIG_W1_MASTER_DS1WM is not set +CONFIG_W1_MASTER_GPIO=m +# CONFIG_W1_MASTER_SGI is not set +# end of 1-wire Bus Masters + +# +# 1-wire Slaves +# +CONFIG_W1_SLAVE_THERM=m +CONFIG_W1_SLAVE_SMEM=m +CONFIG_W1_SLAVE_DS2405=m +CONFIG_W1_SLAVE_DS2408=m +CONFIG_W1_SLAVE_DS2408_READBACK=y +CONFIG_W1_SLAVE_DS2413=m +CONFIG_W1_SLAVE_DS2406=m +CONFIG_W1_SLAVE_DS2423=m +CONFIG_W1_SLAVE_DS2805=m +CONFIG_W1_SLAVE_DS2430=m +CONFIG_W1_SLAVE_DS2431=m +CONFIG_W1_SLAVE_DS2433=m +# CONFIG_W1_SLAVE_DS2433_CRC is not set +CONFIG_W1_SLAVE_DS2438=m +# CONFIG_W1_SLAVE_DS250X is not set +CONFIG_W1_SLAVE_DS2780=m +CONFIG_W1_SLAVE_DS2781=m +CONFIG_W1_SLAVE_DS28E04=m +CONFIG_W1_SLAVE_DS28E17=m +# end of 1-wire Slaves + +CONFIG_POWER_RESET=y +CONFIG_POWER_RESET_ATC260X=m +# CONFIG_POWER_RESET_BRCMSTB is not set +# CONFIG_POWER_RESET_GPIO is not set +# CONFIG_POWER_RESET_GPIO_RESTART is not set +CONFIG_POWER_RESET_HISI=y +# CONFIG_POWER_RESET_LINKSTATION is not set +CONFIG_POWER_RESET_MSM=y +CONFIG_POWER_RESET_QCOM_PON=m +# CONFIG_POWER_RESET_LTC2952 is not set +CONFIG_POWER_RESET_REGULATOR=y +# CONFIG_POWER_RESET_RESTART is not set +CONFIG_POWER_RESET_VEXPRESS=y +CONFIG_POWER_RESET_XGENE=y +CONFIG_POWER_RESET_SYSCON=y +CONFIG_POWER_RESET_SYSCON_POWEROFF=y +CONFIG_REBOOT_MODE=m +# CONFIG_SYSCON_REBOOT_MODE is not set +CONFIG_NVMEM_REBOOT_MODE=m +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_POWER_SUPPLY_HWMON=y +# CONFIG_PDA_POWER is not set +# CONFIG_GENERIC_ADC_BATTERY is not set +# CONFIG_TEST_POWER is not set +CONFIG_CHARGER_ADP5061=m +CONFIG_BATTERY_CW2015=m +# CONFIG_BATTERY_DS2760 is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_DS2782 is not set +# CONFIG_BATTERY_SBS is not set +# CONFIG_CHARGER_SBS is not set +# CONFIG_MANAGER_SBS is not set +CONFIG_BATTERY_BQ27XXX=m +# CONFIG_BATTERY_BQ27XXX_I2C is not set +CONFIG_BATTERY_BQ27XXX_HDQ=m +CONFIG_CHARGER_AXP20X=m +CONFIG_BATTERY_AXP20X=m +CONFIG_AXP20X_POWER=m +# CONFIG_BATTERY_MAX17040 is not set +# CONFIG_BATTERY_MAX17042 is not set +# CONFIG_BATTERY_MAX1721X is not set +# CONFIG_CHARGER_ISP1704 is not set +# CONFIG_CHARGER_MAX8903 is not set +# CONFIG_CHARGER_LP8727 is not set +CONFIG_CHARGER_GPIO=m +# CONFIG_CHARGER_MANAGER is not set +# CONFIG_CHARGER_LT3651 is not set +# CONFIG_CHARGER_LTC4162L is not set +# CONFIG_CHARGER_DETECTOR_MAX14656 is not set +# CONFIG_CHARGER_MT6360 is not set +CONFIG_CHARGER_QCOM_SMBB=m +# CONFIG_CHARGER_BQ2415X is not set +# CONFIG_CHARGER_BQ24190 is not set +# CONFIG_CHARGER_BQ24257 is not set +# CONFIG_CHARGER_BQ24735 is not set +# CONFIG_CHARGER_BQ2515X is not set +# CONFIG_CHARGER_BQ25890 is not set +# CONFIG_CHARGER_BQ25980 is not set +# CONFIG_CHARGER_BQ256XX is not set +# CONFIG_CHARGER_SMB347 is not set +# CONFIG_BATTERY_GAUGE_LTC2941 is not set +CONFIG_BATTERY_GOLDFISH=m +CONFIG_BATTERY_RT5033=m +# CONFIG_CHARGER_RT9455 is not set +CONFIG_CHARGER_CROS_USBPD=m +CONFIG_CHARGER_CROS_PCHG=m +# CONFIG_CHARGER_UCS1002 is not set +CONFIG_CHARGER_BD99954=m +CONFIG_HWMON=y +CONFIG_HWMON_VID=m +# CONFIG_HWMON_DEBUG_CHIP is not set + +# +# Native drivers +# +# CONFIG_SENSORS_AD7314 is not set +CONFIG_SENSORS_AD7414=m +CONFIG_SENSORS_AD7418=m +# CONFIG_SENSORS_ADM1021 is not set +# CONFIG_SENSORS_ADM1025 is not set +# CONFIG_SENSORS_ADM1026 is not set +CONFIG_SENSORS_ADM1029=m +# CONFIG_SENSORS_ADM1031 is not set +CONFIG_SENSORS_ADM1177=m +CONFIG_SENSORS_ADM9240=m +# CONFIG_SENSORS_ADT7310 is not set +# CONFIG_SENSORS_ADT7410 is not set +CONFIG_SENSORS_ADT7411=m +CONFIG_SENSORS_ADT7462=m +CONFIG_SENSORS_ADT7470=m +CONFIG_SENSORS_ADT7475=m +CONFIG_SENSORS_AHT10=m +CONFIG_SENSORS_AQUACOMPUTER_D5NEXT=m +# CONFIG_SENSORS_AS370 is not set +CONFIG_SENSORS_ASC7621=m +CONFIG_SENSORS_AXI_FAN_CONTROL=m +CONFIG_SENSORS_ARM_SCMI=m +# CONFIG_SENSORS_ASPEED is not set +CONFIG_SENSORS_ATXP1=m +CONFIG_SENSORS_CORSAIR_CPRO=m +CONFIG_SENSORS_CORSAIR_PSU=m +CONFIG_SENSORS_DRIVETEMP=m +CONFIG_SENSORS_DS620=m +# CONFIG_SENSORS_DS1621 is not set +CONFIG_SENSORS_I5K_AMB=m +# CONFIG_SENSORS_F71805F is not set +CONFIG_SENSORS_F71882FG=m +CONFIG_SENSORS_F75375S=m +CONFIG_SENSORS_FTSTEUTATES=m +# CONFIG_SENSORS_GL518SM is not set +# CONFIG_SENSORS_GL520SM is not set +CONFIG_SENSORS_G760A=m +# CONFIG_SENSORS_G762 is not set +# CONFIG_SENSORS_GPIO_FAN is not set +# CONFIG_SENSORS_HIH6130 is not set +CONFIG_SENSORS_IBMAEM=m +CONFIG_SENSORS_IBMPEX=m +# CONFIG_SENSORS_IIO_HWMON is not set +# CONFIG_SENSORS_IT87 is not set +CONFIG_SENSORS_JC42=m +# CONFIG_SENSORS_POWR1220 is not set +CONFIG_SENSORS_LINEAGE=m +# CONFIG_SENSORS_LTC2945 is not set +CONFIG_SENSORS_LTC2947=m +CONFIG_SENSORS_LTC2947_I2C=m +CONFIG_SENSORS_LTC2947_SPI=m +# CONFIG_SENSORS_LTC2990 is not set +# CONFIG_SENSORS_LTC2992 is not set +CONFIG_SENSORS_LTC4151=m +CONFIG_SENSORS_LTC4215=m +# CONFIG_SENSORS_LTC4222 is not set +CONFIG_SENSORS_LTC4245=m +# CONFIG_SENSORS_LTC4260 is not set +CONFIG_SENSORS_LTC4261=m +CONFIG_SENSORS_MAX1111=m +CONFIG_SENSORS_MAX127=m +CONFIG_SENSORS_MAX16065=m +# CONFIG_SENSORS_MAX1619 is not set +CONFIG_SENSORS_MAX1668=m +# CONFIG_SENSORS_MAX197 is not set +# CONFIG_SENSORS_MAX31722 is not set +CONFIG_SENSORS_MAX31730=m +CONFIG_SENSORS_MAX6620=m +# CONFIG_SENSORS_MAX6621 is not set +CONFIG_SENSORS_MAX6639=m +CONFIG_SENSORS_MAX6642=m +CONFIG_SENSORS_MAX6650=m +# CONFIG_SENSORS_MAX6697 is not set +# CONFIG_SENSORS_MAX31790 is not set +# CONFIG_SENSORS_MCP3021 is not set +# CONFIG_SENSORS_TC654 is not set +CONFIG_SENSORS_TPS23861=m +# CONFIG_SENSORS_MR75203 is not set +CONFIG_SENSORS_ADCXX=m +# CONFIG_SENSORS_LM63 is not set +CONFIG_SENSORS_LM70=m +CONFIG_SENSORS_LM73=m +# CONFIG_SENSORS_LM75 is not set +# CONFIG_SENSORS_LM77 is not set +# CONFIG_SENSORS_LM78 is not set +# CONFIG_SENSORS_LM80 is not set +# CONFIG_SENSORS_LM83 is not set +# CONFIG_SENSORS_LM85 is not set +# CONFIG_SENSORS_LM87 is not set +# CONFIG_SENSORS_LM90 is not set +# CONFIG_SENSORS_LM92 is not set +CONFIG_SENSORS_LM93=m +# CONFIG_SENSORS_LM95234 is not set +CONFIG_SENSORS_LM95241=m +CONFIG_SENSORS_LM95245=m +# CONFIG_SENSORS_PC87360 is not set +CONFIG_SENSORS_PC87427=m +CONFIG_SENSORS_NTC_THERMISTOR=m +CONFIG_SENSORS_NCT6683=m +CONFIG_SENSORS_NCT6775=m +# CONFIG_SENSORS_NCT7802 is not set +# CONFIG_SENSORS_NCT7904 is not set +# CONFIG_SENSORS_NPCM7XX is not set +CONFIG_SENSORS_NZXT_KRAKEN2=m +# CONFIG_SENSORS_OCC_P8_I2C is not set +# CONFIG_SENSORS_PCF8591 is not set +# CONFIG_PMBUS is not set +# CONFIG_SENSORS_PWM_FAN is not set +CONFIG_SENSORS_RASPBERRYPI_HWMON=m +CONFIG_SENSORS_SBTSI=m +CONFIG_SENSORS_SBRMI=m +# CONFIG_SENSORS_SHT15 is not set +CONFIG_SENSORS_SHT21=m +# CONFIG_SENSORS_SHT3x is not set +CONFIG_SENSORS_SHT4x=m +# CONFIG_SENSORS_SHTC1 is not set +# CONFIG_SENSORS_SIS5595 is not set +CONFIG_SENSORS_DME1737=m +CONFIG_SENSORS_EMC1403=m +CONFIG_SENSORS_EMC2103=m +CONFIG_SENSORS_EMC6W201=m +# CONFIG_SENSORS_SMSC47M1 is not set +CONFIG_SENSORS_SMSC47M192=m +# CONFIG_SENSORS_SMSC47B397 is not set +CONFIG_SENSORS_SCH56XX_COMMON=m +CONFIG_SENSORS_SCH5627=m +# CONFIG_SENSORS_SCH5636 is not set +# CONFIG_SENSORS_STTS751 is not set +CONFIG_SENSORS_SMM665=m +# CONFIG_SENSORS_ADC128D818 is not set +CONFIG_SENSORS_ADS7828=m +CONFIG_SENSORS_ADS7871=m +CONFIG_SENSORS_AMC6821=m +# CONFIG_SENSORS_INA209 is not set +# CONFIG_SENSORS_INA2XX is not set +# CONFIG_SENSORS_INA3221 is not set +# CONFIG_SENSORS_TC74 is not set +CONFIG_SENSORS_THMC50=m +CONFIG_SENSORS_TMP102=m +# CONFIG_SENSORS_TMP103 is not set +# CONFIG_SENSORS_TMP108 is not set +CONFIG_SENSORS_TMP401=m +CONFIG_SENSORS_TMP421=m +CONFIG_SENSORS_TMP513=m +# CONFIG_SENSORS_VEXPRESS is not set +# CONFIG_SENSORS_VIA686A is not set +CONFIG_SENSORS_VT1211=m +CONFIG_SENSORS_VT8231=m +# CONFIG_SENSORS_W83773G is not set +# CONFIG_SENSORS_W83781D is not set +CONFIG_SENSORS_W83791D=m +CONFIG_SENSORS_W83792D=m +CONFIG_SENSORS_W83793=m +CONFIG_SENSORS_W83795=m +# CONFIG_SENSORS_W83795_FANCTRL is not set +# CONFIG_SENSORS_W83L785TS is not set +CONFIG_SENSORS_W83L786NG=m +# CONFIG_SENSORS_W83627HF is not set +CONFIG_SENSORS_W83627EHF=m +CONFIG_SENSORS_XGENE=m + +# +# ACPI drivers +# +# CONFIG_SENSORS_ACPI_POWER is not set +CONFIG_THERMAL=y +CONFIG_THERMAL_NETLINK=y +# CONFIG_THERMAL_STATISTICS is not set +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_OF=y +# CONFIG_THERMAL_WRITABLE_TRIPS is not set +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +CONFIG_THERMAL_GOV_FAIR_SHARE=y +CONFIG_THERMAL_GOV_STEP_WISE=y +# CONFIG_THERMAL_GOV_BANG_BANG is not set +# CONFIG_THERMAL_GOV_USER_SPACE is not set +# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set +CONFIG_CPU_THERMAL=y +CONFIG_CPU_FREQ_THERMAL=y +# CONFIG_DEVFREQ_THERMAL is not set +# CONFIG_THERMAL_EMULATION is not set +# CONFIG_THERMAL_MMIO is not set +CONFIG_HISI_THERMAL=m +CONFIG_IMX_THERMAL=m +CONFIG_IMX_SC_THERMAL=m +CONFIG_IMX8MM_THERMAL=m +# CONFIG_MAX77620_THERMAL is not set +# CONFIG_QORIQ_THERMAL is not set +CONFIG_SUN8I_THERMAL=m +CONFIG_ROCKCHIP_THERMAL=m +CONFIG_ARMADA_THERMAL=m +CONFIG_AMLOGIC_THERMAL=y + +# +# Broadcom thermal drivers +# +CONFIG_BCM2711_THERMAL=m +CONFIG_BCM2835_THERMAL=m +# end of Broadcom thermal drivers + +# +# NVIDIA Tegra thermal drivers +# +CONFIG_TEGRA_SOCTHERM=y +# CONFIG_TEGRA_BPMP_THERMAL is not set +# end of NVIDIA Tegra thermal drivers + +# CONFIG_GENERIC_ADC_THERMAL is not set + +# +# Qualcomm thermal drivers +# +CONFIG_QCOM_TSENS=m +CONFIG_QCOM_SPMI_ADC_TM5=m +CONFIG_QCOM_SPMI_TEMP_ALARM=m +CONFIG_QCOM_LMH=m +# end of Qualcomm thermal drivers + +CONFIG_KHADAS_MCU_FAN_THERMAL=m +CONFIG_WATCHDOG=y +CONFIG_WATCHDOG_CORE=y +# CONFIG_WATCHDOG_NOWAYOUT is not set +CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y +CONFIG_WATCHDOG_OPEN_TIMEOUT=0 +CONFIG_WATCHDOG_SYSFS=y +CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT=y + +# +# Watchdog Pretimeout Governors +# +# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set + +# +# Watchdog Device Drivers +# +CONFIG_SOFT_WATCHDOG=m +CONFIG_BD957XMUF_WATCHDOG=m +CONFIG_GPIO_WATCHDOG=m +# CONFIG_WDAT_WDT is not set +# CONFIG_XILINX_WATCHDOG is not set +# CONFIG_ZIIRAVE_WATCHDOG is not set +CONFIG_ARM_SP805_WATCHDOG=m +CONFIG_ARM_SBSA_WATCHDOG=m +# CONFIG_ARMADA_37XX_WATCHDOG is not set +# CONFIG_CADENCE_WATCHDOG is not set +CONFIG_DW_WATCHDOG=m +CONFIG_SUNXI_WATCHDOG=m +# CONFIG_MAX63XX_WATCHDOG is not set +# CONFIG_MAX77620_WATCHDOG is not set +CONFIG_IMX2_WDT=m +CONFIG_IMX_SC_WDT=m +CONFIG_IMX7ULP_WDT=m +CONFIG_TEGRA_WATCHDOG=m +CONFIG_QCOM_WDT=m +CONFIG_MESON_GXBB_WATCHDOG=m +CONFIG_MESON_WATCHDOG=m +CONFIG_ARM_SMC_WATCHDOG=m +CONFIG_PM8916_WATCHDOG=m +CONFIG_VISCONTI_WATCHDOG=m +# CONFIG_ALIM7101_WDT is not set +# CONFIG_I6300ESB_WDT is not set +CONFIG_BCM2835_WDT=m +# CONFIG_MEN_A21_WDT is not set +CONFIG_XEN_WDT=m + +# +# PCI-based Watchdog Cards +# +# CONFIG_PCIPCWATCHDOG is not set +# CONFIG_WDTPCI is not set + +# +# USB-based Watchdog Cards +# +# CONFIG_USBPCWATCHDOG is not set +# CONFIG_KEEMBAY_WATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +CONFIG_SSB=m +CONFIG_SSB_SPROM=y +CONFIG_SSB_BLOCKIO=y +CONFIG_SSB_PCIHOST_POSSIBLE=y +CONFIG_SSB_PCIHOST=y +CONFIG_SSB_B43_PCI_BRIDGE=y +CONFIG_SSB_SDIOHOST_POSSIBLE=y +CONFIG_SSB_SDIOHOST=y +CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y +CONFIG_SSB_DRIVER_PCICORE=y +# CONFIG_SSB_DRIVER_GPIO is not set +CONFIG_BCMA_POSSIBLE=y +CONFIG_BCMA=m +CONFIG_BCMA_BLOCKIO=y +CONFIG_BCMA_HOST_PCI_POSSIBLE=y +CONFIG_BCMA_HOST_PCI=y +# CONFIG_BCMA_HOST_SOC is not set +CONFIG_BCMA_DRIVER_PCI=y +# CONFIG_BCMA_DRIVER_GMAC_CMN is not set +# CONFIG_BCMA_DRIVER_GPIO is not set +# CONFIG_BCMA_DEBUG is not set + +# +# Multifunction device drivers +# +CONFIG_MFD_CORE=y +# CONFIG_MFD_ALTERA_A10SR is not set +CONFIG_MFD_ALTERA_SYSMGR=y +# CONFIG_MFD_ACT8945A is not set +# CONFIG_MFD_SUN4I_GPADC is not set +# CONFIG_MFD_AS3711 is not set +# CONFIG_MFD_AS3722 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_AAT2870_CORE is not set +# CONFIG_MFD_ATMEL_FLEXCOM is not set +# CONFIG_MFD_ATMEL_HLCDC is not set +# CONFIG_MFD_BCM590XX is not set +# CONFIG_MFD_BD9571MWV is not set +# CONFIG_MFD_AC100 is not set +CONFIG_MFD_AXP20X=m +# CONFIG_MFD_AXP20X_I2C is not set +CONFIG_MFD_AXP20X_RSB=m +CONFIG_MFD_CROS_EC_DEV=y +CONFIG_MFD_MADERA=m +CONFIG_MFD_MADERA_I2C=m +CONFIG_MFD_MADERA_SPI=m +# CONFIG_MFD_CS47L15 is not set +# CONFIG_MFD_CS47L35 is not set +# CONFIG_MFD_CS47L85 is not set +# CONFIG_MFD_CS47L90 is not set +# CONFIG_MFD_CS47L92 is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_SPI is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_DLN2 is not set +# CONFIG_MFD_GATEWORKS_GSC is not set +# CONFIG_MFD_MC13XXX_SPI is not set +# CONFIG_MFD_MC13XXX_I2C is not set +CONFIG_MFD_MP2629=m +# CONFIG_MFD_HI6421_PMIC is not set +CONFIG_MFD_HI6421_SPMI=m +CONFIG_MFD_HI655X_PMIC=m +# CONFIG_HTC_PASIC3 is not set +# CONFIG_HTC_I2CPLD is not set +# CONFIG_LPC_ICH is not set +CONFIG_LPC_SCH=m +CONFIG_MFD_IQS62X=m +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +CONFIG_MFD_MAX77620=y +# CONFIG_MFD_MAX77650 is not set +# CONFIG_MFD_MAX77686 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +CONFIG_MFD_MT6360=m +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_EZX_PCAP is not set +# CONFIG_MFD_CPCAP is not set +CONFIG_MFD_VIPERBOARD=m +CONFIG_MFD_NTXEC=m +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_UCB1400_CORE is not set +CONFIG_MFD_QCOM_RPM=m +CONFIG_MFD_SPMI_PMIC=m +# CONFIG_MFD_RDC321X is not set +CONFIG_MFD_RT4831=m +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RC5T583 is not set +CONFIG_MFD_RK808=m +# CONFIG_MFD_RN5T618 is not set +# CONFIG_MFD_SEC_CORE is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_STMPE is not set +CONFIG_MFD_SUN6I_PRCM=y +CONFIG_MFD_SYSCON=y +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS65010 is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TPS65217 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TI_LP87565 is not set +# CONFIG_MFD_TPS65218 is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65910 is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS65912_SPI is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TC3589X is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_LOCHNAGAR is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_ARIZONA_SPI is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM831X_SPI is not set +# CONFIG_MFD_WM8350_I2C is not set +CONFIG_MFD_WM8994=m +CONFIG_MFD_ROHM_BD718XX=m +CONFIG_MFD_ROHM_BD70528=m +CONFIG_MFD_ROHM_BD71828=m +CONFIG_MFD_ROHM_BD957XMUF=m +# CONFIG_MFD_STPMIC1 is not set +# CONFIG_MFD_STMFX is not set +CONFIG_MFD_ATC260X=m +CONFIG_MFD_ATC260X_I2C=m +CONFIG_MFD_KHADAS_MCU=m +CONFIG_MFD_QCOM_PM8008=m +CONFIG_MFD_VEXPRESS_SYSREG=y +# CONFIG_RAVE_SP_CORE is not set +# CONFIG_MFD_INTEL_M10_BMC is not set +CONFIG_MFD_RSMU_I2C=m +CONFIG_MFD_RSMU_SPI=m +# end of Multifunction device drivers + +CONFIG_REGULATOR=y +# CONFIG_REGULATOR_DEBUG is not set +CONFIG_REGULATOR_FIXED_VOLTAGE=m +# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set +# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set +# CONFIG_REGULATOR_88PG86X is not set +# CONFIG_REGULATOR_ACT8865 is not set +# CONFIG_REGULATOR_AD5398 is not set +# CONFIG_REGULATOR_ANATOP is not set +CONFIG_REGULATOR_ARIZONA_LDO1=m +CONFIG_REGULATOR_ARIZONA_MICSUPP=m +CONFIG_REGULATOR_ARM_SCMI=m +CONFIG_REGULATOR_ATC260X=m +CONFIG_REGULATOR_AXP20X=m +CONFIG_REGULATOR_BD71815=m +CONFIG_REGULATOR_BD71828=m +CONFIG_REGULATOR_BD718XX=m +CONFIG_REGULATOR_BD957XMUF=m +CONFIG_REGULATOR_CROS_EC=m +CONFIG_REGULATOR_DA9121=m +# CONFIG_REGULATOR_DA9210 is not set +# CONFIG_REGULATOR_DA9211 is not set +CONFIG_REGULATOR_FAN53555=m +CONFIG_REGULATOR_FAN53880=m +CONFIG_REGULATOR_GPIO=m +CONFIG_REGULATOR_HI655X=m +CONFIG_REGULATOR_HI6421V600=m +# CONFIG_REGULATOR_ISL9305 is not set +# CONFIG_REGULATOR_ISL6271A is not set +# CONFIG_REGULATOR_LP3971 is not set +# CONFIG_REGULATOR_LP3972 is not set +# CONFIG_REGULATOR_LP872X is not set +# CONFIG_REGULATOR_LP8755 is not set +# CONFIG_REGULATOR_LTC3589 is not set +# CONFIG_REGULATOR_LTC3676 is not set +# CONFIG_REGULATOR_MAX1586 is not set +CONFIG_REGULATOR_MAX77620=m +# CONFIG_REGULATOR_MAX8649 is not set +# CONFIG_REGULATOR_MAX8660 is not set +# CONFIG_REGULATOR_MAX8893 is not set +# CONFIG_REGULATOR_MAX8952 is not set +# CONFIG_REGULATOR_MAX8973 is not set +# CONFIG_REGULATOR_MAX77826 is not set +# CONFIG_REGULATOR_MCP16502 is not set +CONFIG_REGULATOR_MP5416=m +CONFIG_REGULATOR_MP8859=m +CONFIG_REGULATOR_MP886X=m +CONFIG_REGULATOR_MPQ7920=m +# CONFIG_REGULATOR_MT6311 is not set +# CONFIG_REGULATOR_MT6315 is not set +CONFIG_REGULATOR_MT6360=m +CONFIG_REGULATOR_PCA9450=m +CONFIG_REGULATOR_PF8X00=m +# CONFIG_REGULATOR_PFUZE100 is not set +# CONFIG_REGULATOR_PV88060 is not set +# CONFIG_REGULATOR_PV88080 is not set +# CONFIG_REGULATOR_PV88090 is not set +CONFIG_REGULATOR_PWM=m +CONFIG_REGULATOR_QCOM_RPM=m +CONFIG_REGULATOR_QCOM_SMD_RPM=m +CONFIG_REGULATOR_QCOM_SPMI=m +CONFIG_REGULATOR_QCOM_USB_VBUS=m +CONFIG_REGULATOR_RASPBERRYPI_TOUCHSCREEN_ATTINY=m +CONFIG_REGULATOR_RK808=m +CONFIG_REGULATOR_ROHM=m +CONFIG_REGULATOR_RT4801=m +CONFIG_REGULATOR_RT4831=m +CONFIG_REGULATOR_RT6160=m +CONFIG_REGULATOR_RT6245=m +CONFIG_REGULATOR_RTQ2134=m +CONFIG_REGULATOR_RTMV20=m +CONFIG_REGULATOR_RTQ6752=m +CONFIG_REGULATOR_SLG51000=m +CONFIG_REGULATOR_SY8106A=m +CONFIG_REGULATOR_SY8824X=m +CONFIG_REGULATOR_SY8827N=m +# CONFIG_REGULATOR_TPS51632 is not set +# CONFIG_REGULATOR_TPS62360 is not set +# CONFIG_REGULATOR_TPS65023 is not set +# CONFIG_REGULATOR_TPS6507X is not set +# CONFIG_REGULATOR_TPS65132 is not set +# CONFIG_REGULATOR_TPS6524X is not set +# CONFIG_REGULATOR_VCTRL is not set +# CONFIG_REGULATOR_VEXPRESS is not set +# CONFIG_REGULATOR_VQMMC_IPQ4019 is not set +CONFIG_REGULATOR_WM8994=m +CONFIG_REGULATOR_QCOM_LABIBB=m +CONFIG_RC_CORE=m +CONFIG_RC_MAP=m +CONFIG_LIRC=y +CONFIG_RC_DECODERS=y +CONFIG_IR_NEC_DECODER=m +CONFIG_IR_RC5_DECODER=m +CONFIG_IR_RC6_DECODER=m +CONFIG_IR_JVC_DECODER=m +CONFIG_IR_SONY_DECODER=m +CONFIG_IR_SANYO_DECODER=m +CONFIG_IR_SHARP_DECODER=m +CONFIG_IR_MCE_KBD_DECODER=m +CONFIG_IR_XMP_DECODER=m +CONFIG_IR_IMON_DECODER=m +CONFIG_IR_RCMM_DECODER=m +CONFIG_RC_DEVICES=y +CONFIG_RC_ATI_REMOTE=m +CONFIG_IR_ENE=m +# CONFIG_IR_HIX5HD2 is not set +CONFIG_IR_IMON=m +CONFIG_IR_IMON_RAW=m +CONFIG_IR_MCEUSB=m +# CONFIG_IR_ITE_CIR is not set +# CONFIG_IR_FINTEK is not set +# CONFIG_IR_MESON is not set +# CONFIG_IR_MESON_TX is not set +# CONFIG_IR_NUVOTON is not set +CONFIG_IR_REDRAT3=m +# CONFIG_IR_SPI is not set +CONFIG_IR_STREAMZAP=m +CONFIG_IR_IGORPLUGUSB=m +CONFIG_IR_IGUANA=m +CONFIG_IR_TTUSBIR=m +CONFIG_RC_LOOPBACK=m +# CONFIG_IR_GPIO_CIR is not set +# CONFIG_IR_GPIO_TX is not set +# CONFIG_IR_PWM_TX is not set +# CONFIG_IR_SUNXI is not set +# CONFIG_IR_SERIAL is not set +CONFIG_RC_XBOX_DVD=m +CONFIG_IR_TOY=m +CONFIG_CEC_CORE=m +CONFIG_CEC_NOTIFIER=y + +# +# CEC support +# +CONFIG_MEDIA_CEC_RC=y +CONFIG_MEDIA_CEC_SUPPORT=y +CONFIG_CEC_CH7322=m +CONFIG_CEC_CROS_EC=m +CONFIG_CEC_MESON_AO=m +CONFIG_CEC_MESON_G12A_AO=m +CONFIG_CEC_TEGRA=m +CONFIG_USB_PULSE8_CEC=m +CONFIG_USB_RAINSHADOW_CEC=m +# end of CEC support + +CONFIG_MEDIA_SUPPORT=m +# CONFIG_MEDIA_SUPPORT_FILTER is not set +CONFIG_MEDIA_SUBDRV_AUTOSELECT=y + +# +# Media device types +# +CONFIG_MEDIA_CAMERA_SUPPORT=y +CONFIG_MEDIA_ANALOG_TV_SUPPORT=y +CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y +CONFIG_MEDIA_RADIO_SUPPORT=y +CONFIG_MEDIA_SDR_SUPPORT=y +CONFIG_MEDIA_PLATFORM_SUPPORT=y +CONFIG_MEDIA_TEST_SUPPORT=y +# end of Media device types + +# +# Media core support +# +CONFIG_VIDEO_DEV=m +CONFIG_MEDIA_CONTROLLER=y +CONFIG_DVB_CORE=m +# end of Media core support + +# +# Video4Linux options +# +CONFIG_VIDEO_V4L2=m +CONFIG_VIDEO_V4L2_I2C=y +CONFIG_VIDEO_V4L2_SUBDEV_API=y +# CONFIG_VIDEO_ADV_DEBUG is not set +# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set +CONFIG_VIDEO_TUNER=m +CONFIG_V4L2_JPEG_HELPER=m +CONFIG_V4L2_MEM2MEM_DEV=m +CONFIG_V4L2_FWNODE=m +CONFIG_V4L2_ASYNC=m +CONFIG_VIDEOBUF_GEN=m +CONFIG_VIDEOBUF_DMA_SG=m +CONFIG_VIDEOBUF_VMALLOC=m +# end of Video4Linux options + +# +# Media controller options +# +CONFIG_MEDIA_CONTROLLER_DVB=y +CONFIG_MEDIA_CONTROLLER_REQUEST_API=y +# end of Media controller options + +# +# Digital TV options +# +# CONFIG_DVB_MMAP is not set +CONFIG_DVB_NET=y +CONFIG_DVB_MAX_ADAPTERS=16 +CONFIG_DVB_DYNAMIC_MINORS=y +# CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set +# CONFIG_DVB_ULE_DEBUG is not set +# end of Digital TV options + +# +# Media drivers +# +CONFIG_MEDIA_USB_SUPPORT=y + +# +# Webcam devices +# +CONFIG_USB_VIDEO_CLASS=m +CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y +CONFIG_USB_GSPCA=m +CONFIG_USB_M5602=m +CONFIG_USB_STV06XX=m +CONFIG_USB_GL860=m +CONFIG_USB_GSPCA_BENQ=m +CONFIG_USB_GSPCA_CONEX=m +CONFIG_USB_GSPCA_CPIA1=m +CONFIG_USB_GSPCA_DTCS033=m +CONFIG_USB_GSPCA_ETOMS=m +CONFIG_USB_GSPCA_FINEPIX=m +CONFIG_USB_GSPCA_JEILINJ=m +CONFIG_USB_GSPCA_JL2005BCD=m +CONFIG_USB_GSPCA_KINECT=m +CONFIG_USB_GSPCA_KONICA=m +CONFIG_USB_GSPCA_MARS=m +CONFIG_USB_GSPCA_MR97310A=m +CONFIG_USB_GSPCA_NW80X=m +CONFIG_USB_GSPCA_OV519=m +CONFIG_USB_GSPCA_OV534=m +CONFIG_USB_GSPCA_OV534_9=m +CONFIG_USB_GSPCA_PAC207=m +CONFIG_USB_GSPCA_PAC7302=m +CONFIG_USB_GSPCA_PAC7311=m +CONFIG_USB_GSPCA_SE401=m +CONFIG_USB_GSPCA_SN9C2028=m +CONFIG_USB_GSPCA_SN9C20X=m +CONFIG_USB_GSPCA_SONIXB=m +CONFIG_USB_GSPCA_SONIXJ=m +CONFIG_USB_GSPCA_SPCA500=m +CONFIG_USB_GSPCA_SPCA501=m +CONFIG_USB_GSPCA_SPCA505=m +CONFIG_USB_GSPCA_SPCA506=m +CONFIG_USB_GSPCA_SPCA508=m +CONFIG_USB_GSPCA_SPCA561=m +CONFIG_USB_GSPCA_SPCA1528=m +CONFIG_USB_GSPCA_SQ905=m +CONFIG_USB_GSPCA_SQ905C=m +CONFIG_USB_GSPCA_SQ930X=m +CONFIG_USB_GSPCA_STK014=m +CONFIG_USB_GSPCA_STK1135=m +CONFIG_USB_GSPCA_STV0680=m +CONFIG_USB_GSPCA_SUNPLUS=m +CONFIG_USB_GSPCA_T613=m +CONFIG_USB_GSPCA_TOPRO=m +CONFIG_USB_GSPCA_TOUPTEK=m +CONFIG_USB_GSPCA_TV8532=m +CONFIG_USB_GSPCA_VC032X=m +CONFIG_USB_GSPCA_VICAM=m +CONFIG_USB_GSPCA_XIRLINK_CIT=m +CONFIG_USB_GSPCA_ZC3XX=m +CONFIG_USB_PWC=m +# CONFIG_USB_PWC_DEBUG is not set +CONFIG_USB_PWC_INPUT_EVDEV=y +CONFIG_VIDEO_CPIA2=m +CONFIG_USB_ZR364XX=m +CONFIG_USB_STKWEBCAM=m +CONFIG_USB_S2255=m +CONFIG_VIDEO_USBTV=m + +# +# Analog TV USB devices +# +CONFIG_VIDEO_PVRUSB2=m +CONFIG_VIDEO_PVRUSB2_SYSFS=y +CONFIG_VIDEO_PVRUSB2_DVB=y +# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set +CONFIG_VIDEO_HDPVR=m +CONFIG_VIDEO_STK1160_COMMON=m +CONFIG_VIDEO_STK1160=m +CONFIG_VIDEO_GO7007=m +CONFIG_VIDEO_GO7007_USB=m +CONFIG_VIDEO_GO7007_LOADER=m +CONFIG_VIDEO_GO7007_USB_S2250_BOARD=m + +# +# Analog/digital TV USB devices +# +CONFIG_VIDEO_AU0828=m +CONFIG_VIDEO_AU0828_V4L2=y +CONFIG_VIDEO_AU0828_RC=y +CONFIG_VIDEO_CX231XX=m +CONFIG_VIDEO_CX231XX_RC=y +CONFIG_VIDEO_CX231XX_ALSA=m +CONFIG_VIDEO_CX231XX_DVB=m +# CONFIG_VIDEO_TM6000 is not set + +# +# Digital TV USB devices +# +CONFIG_DVB_USB=m +# CONFIG_DVB_USB_DEBUG is not set +CONFIG_DVB_USB_DIB3000MC=m +CONFIG_DVB_USB_A800=m +CONFIG_DVB_USB_DIBUSB_MB=m +CONFIG_DVB_USB_DIBUSB_MB_FAULTY=y +CONFIG_DVB_USB_DIBUSB_MC=m +CONFIG_DVB_USB_DIB0700=m +CONFIG_DVB_USB_UMT_010=m +CONFIG_DVB_USB_CXUSB=m +CONFIG_DVB_USB_CXUSB_ANALOG=y +CONFIG_DVB_USB_M920X=m +CONFIG_DVB_USB_DIGITV=m +CONFIG_DVB_USB_VP7045=m +CONFIG_DVB_USB_VP702X=m +CONFIG_DVB_USB_GP8PSK=m +CONFIG_DVB_USB_NOVA_T_USB2=m +CONFIG_DVB_USB_TTUSB2=m +CONFIG_DVB_USB_DTT200U=m +CONFIG_DVB_USB_OPERA1=m +CONFIG_DVB_USB_AF9005=m +CONFIG_DVB_USB_AF9005_REMOTE=m +CONFIG_DVB_USB_PCTV452E=m +CONFIG_DVB_USB_DW2102=m +CONFIG_DVB_USB_CINERGY_T2=m +CONFIG_DVB_USB_DTV5100=m +CONFIG_DVB_USB_AZ6027=m +CONFIG_DVB_USB_TECHNISAT_USB2=m +CONFIG_DVB_USB_V2=m +CONFIG_DVB_USB_AF9015=m +CONFIG_DVB_USB_AF9035=m +CONFIG_DVB_USB_ANYSEE=m +CONFIG_DVB_USB_AU6610=m +CONFIG_DVB_USB_AZ6007=m +CONFIG_DVB_USB_CE6230=m +CONFIG_DVB_USB_EC168=m +CONFIG_DVB_USB_GL861=m +CONFIG_DVB_USB_LME2510=m +CONFIG_DVB_USB_MXL111SF=m +CONFIG_DVB_USB_RTL28XXU=m +CONFIG_DVB_USB_DVBSKY=m +# CONFIG_DVB_USB_ZD1301 is not set +CONFIG_DVB_TTUSB_BUDGET=m +CONFIG_DVB_TTUSB_DEC=m +CONFIG_SMS_USB_DRV=m +CONFIG_DVB_B2C2_FLEXCOP_USB=m +# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not set +CONFIG_DVB_AS102=m + +# +# Webcam, TV (analog/digital) USB devices +# +CONFIG_VIDEO_EM28XX=m +CONFIG_VIDEO_EM28XX_V4L2=m +CONFIG_VIDEO_EM28XX_ALSA=m +CONFIG_VIDEO_EM28XX_DVB=m +CONFIG_VIDEO_EM28XX_RC=m + +# +# Software defined radio USB devices +# +CONFIG_USB_AIRSPY=m +CONFIG_USB_HACKRF=m +CONFIG_USB_MSI2500=m +CONFIG_MEDIA_PCI_SUPPORT=y + +# +# Media capture support +# +CONFIG_VIDEO_SOLO6X10=m +CONFIG_VIDEO_TW5864=m +CONFIG_VIDEO_TW68=m +CONFIG_VIDEO_TW686X=m + +# +# Media capture/analog TV support +# +CONFIG_VIDEO_IVTV=m +CONFIG_VIDEO_IVTV_ALSA=m +CONFIG_VIDEO_FB_IVTV=m +CONFIG_VIDEO_HEXIUM_GEMINI=m +CONFIG_VIDEO_HEXIUM_ORION=m +CONFIG_VIDEO_MXB=m +CONFIG_VIDEO_DT3155=m + +# +# Media capture/analog/hybrid TV support +# +CONFIG_VIDEO_CX18=m +CONFIG_VIDEO_CX18_ALSA=m +CONFIG_VIDEO_CX23885=m +CONFIG_MEDIA_ALTERA_CI=m +# CONFIG_VIDEO_CX25821 is not set +CONFIG_VIDEO_CX88=m +CONFIG_VIDEO_CX88_ALSA=m +CONFIG_VIDEO_CX88_BLACKBIRD=m +CONFIG_VIDEO_CX88_DVB=m +CONFIG_VIDEO_CX88_ENABLE_VP3054=y +CONFIG_VIDEO_CX88_VP3054=m +CONFIG_VIDEO_CX88_MPEG=m +CONFIG_VIDEO_BT848=m +CONFIG_DVB_BT8XX=m +CONFIG_VIDEO_SAA7134=m +CONFIG_VIDEO_SAA7134_ALSA=m +CONFIG_VIDEO_SAA7134_RC=y +CONFIG_VIDEO_SAA7134_DVB=m +# CONFIG_VIDEO_SAA7134_GO7007 is not set +CONFIG_VIDEO_SAA7164=m + +# +# Media digital TV PCI Adapters +# +CONFIG_DVB_BUDGET_CORE=m +CONFIG_DVB_BUDGET=m +CONFIG_DVB_BUDGET_CI=m +CONFIG_DVB_BUDGET_AV=m +CONFIG_DVB_B2C2_FLEXCOP_PCI=m +# CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG is not set +CONFIG_DVB_PLUTO2=m +CONFIG_DVB_DM1105=m +CONFIG_DVB_PT1=m +CONFIG_DVB_PT3=m +CONFIG_MANTIS_CORE=m +CONFIG_DVB_MANTIS=m +CONFIG_DVB_HOPPER=m +CONFIG_DVB_NGENE=m +CONFIG_DVB_DDBRIDGE=m +# CONFIG_DVB_DDBRIDGE_MSIENABLE is not set +CONFIG_DVB_SMIPCIE=m +CONFIG_DVB_NETUP_UNIDVB=m +CONFIG_RADIO_ADAPTERS=y +CONFIG_RADIO_TEA575X=m +CONFIG_RADIO_SI470X=m +CONFIG_USB_SI470X=m +# CONFIG_I2C_SI470X is not set +# CONFIG_RADIO_SI4713 is not set +CONFIG_USB_MR800=m +# CONFIG_USB_DSBR is not set +# CONFIG_RADIO_MAXIRADIO is not set +CONFIG_RADIO_SHARK=m +CONFIG_RADIO_SHARK2=m +CONFIG_USB_KEENE=m +CONFIG_USB_RAREMONO=m +CONFIG_USB_MA901=m +# CONFIG_RADIO_TEA5764 is not set +# CONFIG_RADIO_SAA7706H is not set +# CONFIG_RADIO_TEF6862 is not set +# CONFIG_RADIO_WL1273 is not set +# CONFIG_RADIO_WL128X is not set +CONFIG_MEDIA_COMMON_OPTIONS=y + +# +# common driver options +# +CONFIG_VIDEO_CX2341X=m +CONFIG_VIDEO_TVEEPROM=m +CONFIG_TTPCI_EEPROM=m +CONFIG_CYPRESS_FIRMWARE=m +CONFIG_VIDEOBUF2_CORE=m +CONFIG_VIDEOBUF2_V4L2=m +CONFIG_VIDEOBUF2_MEMOPS=m +CONFIG_VIDEOBUF2_DMA_CONTIG=m +CONFIG_VIDEOBUF2_VMALLOC=m +CONFIG_VIDEOBUF2_DMA_SG=m +CONFIG_VIDEOBUF2_DVB=m +CONFIG_DVB_B2C2_FLEXCOP=m +CONFIG_VIDEO_SAA7146=m +CONFIG_VIDEO_SAA7146_VV=m +CONFIG_SMS_SIANO_MDTV=m +CONFIG_SMS_SIANO_RC=y +# CONFIG_SMS_SIANO_DEBUGFS is not set +CONFIG_VIDEO_V4L2_TPG=m +CONFIG_V4L_PLATFORM_DRIVERS=y +CONFIG_VIDEO_CAFE_CCIC=m +CONFIG_VIDEO_CADENCE=y +CONFIG_VIDEO_CADENCE_CSI2RX=m +CONFIG_VIDEO_CADENCE_CSI2TX=m +# CONFIG_VIDEO_ASPEED is not set +CONFIG_VIDEO_MUX=m +CONFIG_VIDEO_QCOM_CAMSS=m +CONFIG_VIDEO_ROCKCHIP_ISP1=m +# CONFIG_VIDEO_XILINX is not set +# CONFIG_VIDEO_SUN4I_CSI is not set +# CONFIG_VIDEO_SUN6I_CSI is not set +CONFIG_V4L_MEM2MEM_DRIVERS=y +CONFIG_VIDEO_CODA=m +CONFIG_VIDEO_IMX_PXP=m +CONFIG_VIDEO_IMX8_JPEG=m +CONFIG_VIDEO_MEM2MEM_DEINTERLACE=m +CONFIG_VIDEO_MESON_GE2D=m +CONFIG_VIDEO_ROCKCHIP_RGA=m +CONFIG_VIDEO_SUN8I_DEINTERLACE=m +CONFIG_VIDEO_SUN8I_ROTATE=m +# CONFIG_DVB_PLATFORM_DRIVERS is not set +# CONFIG_SDR_PLATFORM_DRIVERS is not set + +# +# MMC/SDIO DVB adapters +# +CONFIG_SMS_SDIO_DRV=m +CONFIG_V4L_TEST_DRIVERS=y +# CONFIG_VIDEO_VIMC is not set +CONFIG_VIDEO_VIVID=m +CONFIG_VIDEO_VIVID_CEC=y +CONFIG_VIDEO_VIVID_MAX_DEVS=64 +# CONFIG_VIDEO_VIM2M is not set +# CONFIG_VIDEO_VICODEC is not set +# CONFIG_DVB_TEST_DRIVERS is not set + +# +# FireWire (IEEE 1394) Adapters +# +CONFIG_DVB_FIREDTV=m +CONFIG_DVB_FIREDTV_INPUT=y +# end of Media drivers + +# +# Media ancillary drivers +# +CONFIG_MEDIA_ATTACH=y + +# +# IR I2C driver auto-selected by 'Autoselect ancillary drivers' +# +CONFIG_VIDEO_IR_I2C=m + +# +# Audio decoders, processors and mixers +# +CONFIG_VIDEO_TVAUDIO=m +CONFIG_VIDEO_TDA7432=m +CONFIG_VIDEO_TDA9840=m +CONFIG_VIDEO_TDA1997X=m +CONFIG_VIDEO_TEA6415C=m +CONFIG_VIDEO_TEA6420=m +CONFIG_VIDEO_MSP3400=m +CONFIG_VIDEO_CS3308=m +CONFIG_VIDEO_CS5345=m +CONFIG_VIDEO_CS53L32A=m +CONFIG_VIDEO_TLV320AIC23B=m +CONFIG_VIDEO_UDA1342=m +CONFIG_VIDEO_WM8775=m +CONFIG_VIDEO_WM8739=m +CONFIG_VIDEO_VP27SMPX=m +CONFIG_VIDEO_SONY_BTF_MPX=m +# end of Audio decoders, processors and mixers + +# +# RDS decoders +# +CONFIG_VIDEO_SAA6588=m +# end of RDS decoders + +# +# Video decoders +# +CONFIG_VIDEO_ADV7180=m +CONFIG_VIDEO_ADV7183=m +CONFIG_VIDEO_ADV748X=m +CONFIG_VIDEO_ADV7604=m +CONFIG_VIDEO_ADV7604_CEC=y +CONFIG_VIDEO_ADV7842=m +CONFIG_VIDEO_ADV7842_CEC=y +CONFIG_VIDEO_BT819=m +CONFIG_VIDEO_BT856=m +CONFIG_VIDEO_BT866=m +CONFIG_VIDEO_KS0127=m +CONFIG_VIDEO_ML86V7667=m +CONFIG_VIDEO_SAA7110=m +CONFIG_VIDEO_SAA711X=m +CONFIG_VIDEO_TC358743=m +CONFIG_VIDEO_TC358743_CEC=y +CONFIG_VIDEO_TVP514X=m +CONFIG_VIDEO_TVP5150=m +CONFIG_VIDEO_TVP7002=m +CONFIG_VIDEO_TW2804=m +CONFIG_VIDEO_TW9903=m +CONFIG_VIDEO_TW9906=m +CONFIG_VIDEO_TW9910=m +CONFIG_VIDEO_VPX3220=m +CONFIG_VIDEO_MAX9286=m + +# +# Video and audio decoders +# +CONFIG_VIDEO_SAA717X=m +CONFIG_VIDEO_CX25840=m +# end of Video decoders + +# +# Video encoders +# +CONFIG_VIDEO_SAA7127=m +CONFIG_VIDEO_SAA7185=m +CONFIG_VIDEO_ADV7170=m +CONFIG_VIDEO_ADV7175=m +CONFIG_VIDEO_ADV7343=m +CONFIG_VIDEO_ADV7393=m +CONFIG_VIDEO_AD9389B=m +CONFIG_VIDEO_AK881X=m +CONFIG_VIDEO_THS8200=m +# end of Video encoders + +# +# Video improvement chips +# +CONFIG_VIDEO_UPD64031A=m +CONFIG_VIDEO_UPD64083=m +# end of Video improvement chips + +# +# Audio/Video compression chips +# +CONFIG_VIDEO_SAA6752HS=m +# end of Audio/Video compression chips + +# +# SDR tuner chips +# +CONFIG_SDR_MAX2175=m +# end of SDR tuner chips + +# +# Miscellaneous helper chips +# +CONFIG_VIDEO_THS7303=m +CONFIG_VIDEO_M52790=m +CONFIG_VIDEO_I2C=m +CONFIG_VIDEO_ST_MIPID02=m +# end of Miscellaneous helper chips + +# +# Camera sensor devices +# +CONFIG_VIDEO_APTINA_PLL=m +CONFIG_VIDEO_CCS_PLL=m +CONFIG_VIDEO_HI556=m +CONFIG_VIDEO_HI846=m +CONFIG_VIDEO_IMX208=m +CONFIG_VIDEO_IMX214=m +CONFIG_VIDEO_IMX219=m +CONFIG_VIDEO_IMX258=m +CONFIG_VIDEO_IMX274=m +CONFIG_VIDEO_IMX290=m +CONFIG_VIDEO_IMX319=m +CONFIG_VIDEO_IMX334=m +CONFIG_VIDEO_IMX335=m +CONFIG_VIDEO_IMX355=m +CONFIG_VIDEO_IMX412=m +CONFIG_VIDEO_OV02A10=m +CONFIG_VIDEO_OV2640=m +CONFIG_VIDEO_OV2659=m +CONFIG_VIDEO_OV2680=m +CONFIG_VIDEO_OV2685=m +CONFIG_VIDEO_OV2740=m +CONFIG_VIDEO_OV5640=m +CONFIG_VIDEO_OV5645=m +CONFIG_VIDEO_OV5647=m +CONFIG_VIDEO_OV5648=m +CONFIG_VIDEO_OV6650=m +CONFIG_VIDEO_OV5670=m +CONFIG_VIDEO_OV5675=m +CONFIG_VIDEO_OV5695=m +CONFIG_VIDEO_OV7251=m +CONFIG_VIDEO_OV772X=m +CONFIG_VIDEO_OV7640=m +CONFIG_VIDEO_OV7670=m +CONFIG_VIDEO_OV7740=m +CONFIG_VIDEO_OV8856=m +CONFIG_VIDEO_OV8865=m +CONFIG_VIDEO_OV9282=m +CONFIG_VIDEO_OV9640=m +CONFIG_VIDEO_OV9650=m +CONFIG_VIDEO_OV9734=m +CONFIG_VIDEO_OV13858=m +CONFIG_VIDEO_OV13B10=m +CONFIG_VIDEO_VS6624=m +CONFIG_VIDEO_MT9M001=m +CONFIG_VIDEO_MT9M032=m +CONFIG_VIDEO_MT9M111=m +CONFIG_VIDEO_MT9P031=m +CONFIG_VIDEO_MT9T001=m +CONFIG_VIDEO_MT9T112=m +CONFIG_VIDEO_MT9V011=m +CONFIG_VIDEO_MT9V032=m +CONFIG_VIDEO_MT9V111=m +CONFIG_VIDEO_SR030PC30=m +CONFIG_VIDEO_NOON010PC30=m +CONFIG_VIDEO_M5MOLS=m +CONFIG_VIDEO_MAX9271_LIB=m +CONFIG_VIDEO_RDACM20=m +CONFIG_VIDEO_RDACM21=m +CONFIG_VIDEO_RJ54N1=m +CONFIG_VIDEO_S5K6AA=m +CONFIG_VIDEO_S5K6A3=m +CONFIG_VIDEO_S5K4ECGX=m +CONFIG_VIDEO_S5K5BAF=m +CONFIG_VIDEO_CCS=m +CONFIG_VIDEO_ET8EK8=m +CONFIG_VIDEO_S5C73M3=m +# end of Camera sensor devices + +# +# Lens drivers +# +CONFIG_VIDEO_AD5820=m +CONFIG_VIDEO_AK7375=m +CONFIG_VIDEO_DW9714=m +CONFIG_VIDEO_DW9768=m +CONFIG_VIDEO_DW9807_VCM=m +# end of Lens drivers + +# +# Flash devices +# +CONFIG_VIDEO_ADP1653=m +CONFIG_VIDEO_LM3560=m +CONFIG_VIDEO_LM3646=m +# end of Flash devices + +# +# SPI helper chips +# +CONFIG_VIDEO_GS1662=m +# end of SPI helper chips + +# +# Media SPI Adapters +# +CONFIG_CXD2880_SPI_DRV=m +# end of Media SPI Adapters + +CONFIG_MEDIA_TUNER=m + +# +# Customize TV tuners +# +CONFIG_MEDIA_TUNER_SIMPLE=m +CONFIG_MEDIA_TUNER_TDA18250=m +CONFIG_MEDIA_TUNER_TDA8290=m +CONFIG_MEDIA_TUNER_TDA827X=m +CONFIG_MEDIA_TUNER_TDA18271=m +CONFIG_MEDIA_TUNER_TDA9887=m +CONFIG_MEDIA_TUNER_TEA5761=m +CONFIG_MEDIA_TUNER_TEA5767=m +CONFIG_MEDIA_TUNER_MSI001=m +CONFIG_MEDIA_TUNER_MT20XX=m +CONFIG_MEDIA_TUNER_MT2060=m +CONFIG_MEDIA_TUNER_MT2063=m +CONFIG_MEDIA_TUNER_MT2266=m +CONFIG_MEDIA_TUNER_MT2131=m +CONFIG_MEDIA_TUNER_QT1010=m +CONFIG_MEDIA_TUNER_XC2028=m +CONFIG_MEDIA_TUNER_XC5000=m +CONFIG_MEDIA_TUNER_XC4000=m +CONFIG_MEDIA_TUNER_MXL5005S=m +CONFIG_MEDIA_TUNER_MXL5007T=m +CONFIG_MEDIA_TUNER_MC44S803=m +CONFIG_MEDIA_TUNER_MAX2165=m +CONFIG_MEDIA_TUNER_TDA18218=m +CONFIG_MEDIA_TUNER_FC0011=m +CONFIG_MEDIA_TUNER_FC0012=m +CONFIG_MEDIA_TUNER_FC0013=m +CONFIG_MEDIA_TUNER_TDA18212=m +CONFIG_MEDIA_TUNER_E4000=m +CONFIG_MEDIA_TUNER_FC2580=m +CONFIG_MEDIA_TUNER_M88RS6000T=m +CONFIG_MEDIA_TUNER_TUA9001=m +CONFIG_MEDIA_TUNER_SI2157=m +CONFIG_MEDIA_TUNER_IT913X=m +CONFIG_MEDIA_TUNER_R820T=m +CONFIG_MEDIA_TUNER_MXL301RF=m +CONFIG_MEDIA_TUNER_QM1D1C0042=m +CONFIG_MEDIA_TUNER_QM1D1B0004=m +# end of Customize TV tuners + +# +# Customise DVB Frontends +# + +# +# Multistandard (satellite) frontends +# +CONFIG_DVB_STB0899=m +CONFIG_DVB_STB6100=m +CONFIG_DVB_STV090x=m +CONFIG_DVB_STV0910=m +CONFIG_DVB_STV6110x=m +CONFIG_DVB_STV6111=m +CONFIG_DVB_MXL5XX=m +CONFIG_DVB_M88DS3103=m + +# +# Multistandard (cable + terrestrial) frontends +# +CONFIG_DVB_DRXK=m +CONFIG_DVB_TDA18271C2DD=m +CONFIG_DVB_SI2165=m +CONFIG_DVB_MN88472=m +CONFIG_DVB_MN88473=m + +# +# DVB-S (satellite) frontends +# +CONFIG_DVB_CX24110=m +CONFIG_DVB_CX24123=m +CONFIG_DVB_MT312=m +CONFIG_DVB_ZL10036=m +CONFIG_DVB_ZL10039=m +CONFIG_DVB_S5H1420=m +CONFIG_DVB_STV0288=m +CONFIG_DVB_STB6000=m +CONFIG_DVB_STV0299=m +CONFIG_DVB_STV6110=m +CONFIG_DVB_STV0900=m +CONFIG_DVB_TDA8083=m +CONFIG_DVB_TDA10086=m +CONFIG_DVB_TDA8261=m +CONFIG_DVB_VES1X93=m +CONFIG_DVB_TUNER_ITD1000=m +CONFIG_DVB_TUNER_CX24113=m +CONFIG_DVB_TDA826X=m +CONFIG_DVB_TUA6100=m +CONFIG_DVB_CX24116=m +CONFIG_DVB_CX24117=m +CONFIG_DVB_CX24120=m +CONFIG_DVB_SI21XX=m +CONFIG_DVB_TS2020=m +CONFIG_DVB_DS3000=m +CONFIG_DVB_MB86A16=m +CONFIG_DVB_TDA10071=m + +# +# DVB-T (terrestrial) frontends +# +CONFIG_DVB_SP887X=m +CONFIG_DVB_CX22700=m +CONFIG_DVB_CX22702=m +CONFIG_DVB_S5H1432=m +CONFIG_DVB_DRXD=m +CONFIG_DVB_L64781=m +CONFIG_DVB_TDA1004X=m +CONFIG_DVB_NXT6000=m +CONFIG_DVB_MT352=m +CONFIG_DVB_ZL10353=m +CONFIG_DVB_DIB3000MB=m +CONFIG_DVB_DIB3000MC=m +CONFIG_DVB_DIB7000M=m +CONFIG_DVB_DIB7000P=m +CONFIG_DVB_DIB9000=m +CONFIG_DVB_TDA10048=m +CONFIG_DVB_AF9013=m +CONFIG_DVB_EC100=m +CONFIG_DVB_STV0367=m +CONFIG_DVB_CXD2820R=m +CONFIG_DVB_CXD2841ER=m +CONFIG_DVB_RTL2830=m +CONFIG_DVB_RTL2832=m +CONFIG_DVB_RTL2832_SDR=m +CONFIG_DVB_SI2168=m +CONFIG_DVB_AS102_FE=m +CONFIG_DVB_ZD1301_DEMOD=m +CONFIG_DVB_GP8PSK_FE=m +CONFIG_DVB_CXD2880=m + +# +# DVB-C (cable) frontends +# +CONFIG_DVB_VES1820=m +CONFIG_DVB_TDA10021=m +CONFIG_DVB_TDA10023=m +CONFIG_DVB_STV0297=m + +# +# ATSC (North American/Korean Terrestrial/Cable DTV) frontends +# +CONFIG_DVB_NXT200X=m +CONFIG_DVB_OR51211=m +CONFIG_DVB_OR51132=m +CONFIG_DVB_BCM3510=m +CONFIG_DVB_LGDT330X=m +CONFIG_DVB_LGDT3305=m +CONFIG_DVB_LGDT3306A=m +CONFIG_DVB_LG2160=m +CONFIG_DVB_S5H1409=m +CONFIG_DVB_AU8522=m +CONFIG_DVB_AU8522_DTV=m +CONFIG_DVB_AU8522_V4L=m +CONFIG_DVB_S5H1411=m +CONFIG_DVB_MXL692=m + +# +# ISDB-T (terrestrial) frontends +# +CONFIG_DVB_S921=m +CONFIG_DVB_DIB8000=m +CONFIG_DVB_MB86A20S=m + +# +# ISDB-S (satellite) & ISDB-T (terrestrial) frontends +# +CONFIG_DVB_TC90522=m +CONFIG_DVB_MN88443X=m + +# +# Digital terrestrial only tuners/PLL +# +CONFIG_DVB_PLL=m +CONFIG_DVB_TUNER_DIB0070=m +CONFIG_DVB_TUNER_DIB0090=m + +# +# SEC control devices for DVB-S +# +CONFIG_DVB_DRX39XYJ=m +CONFIG_DVB_LNBH25=m +CONFIG_DVB_LNBH29=m +CONFIG_DVB_LNBP21=m +CONFIG_DVB_LNBP22=m +CONFIG_DVB_ISL6405=m +CONFIG_DVB_ISL6421=m +CONFIG_DVB_ISL6423=m +CONFIG_DVB_A8293=m +CONFIG_DVB_LGS8GL5=m +CONFIG_DVB_LGS8GXX=m +CONFIG_DVB_ATBM8830=m +CONFIG_DVB_TDA665x=m +CONFIG_DVB_IX2505V=m +CONFIG_DVB_M88RS2000=m +CONFIG_DVB_AF9033=m +CONFIG_DVB_HORUS3A=m +CONFIG_DVB_ASCOT2E=m +CONFIG_DVB_HELENE=m + +# +# Common Interface (EN50221) controller drivers +# +CONFIG_DVB_CXD2099=m +CONFIG_DVB_SP2=m +# end of Customise DVB Frontends + +# +# Tools to develop new frontends +# +CONFIG_DVB_DUMMY_FE=m +# end of Media ancillary drivers + +# +# Graphics support +# +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=16 +CONFIG_TEGRA_HOST1X=m +CONFIG_TEGRA_HOST1X_FIREWALL=y +CONFIG_DRM=m +CONFIG_DRM_MIPI_DBI=m +CONFIG_DRM_MIPI_DSI=y +CONFIG_DRM_DP_AUX_BUS=m +CONFIG_DRM_DP_AUX_CHARDEV=y +# CONFIG_DRM_DEBUG_SELFTEST is not set +CONFIG_DRM_KMS_HELPER=m +# CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS is not set +# CONFIG_DRM_DEBUG_MODESET_LOCK is not set +CONFIG_DRM_FBDEV_EMULATION=y +CONFIG_DRM_FBDEV_OVERALLOC=100 +# CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM is not set +CONFIG_DRM_LOAD_EDID_FIRMWARE=y +# CONFIG_DRM_DP_CEC is not set +CONFIG_DRM_TTM=m +CONFIG_DRM_VRAM_HELPER=m +CONFIG_DRM_TTM_HELPER=m +CONFIG_DRM_GEM_CMA_HELPER=y +CONFIG_DRM_KMS_CMA_HELPER=y +CONFIG_DRM_GEM_SHMEM_HELPER=y +CONFIG_DRM_SCHED=m + +# +# I2C encoder or helper chips +# +# CONFIG_DRM_I2C_CH7006 is not set +# CONFIG_DRM_I2C_SIL164 is not set +# CONFIG_DRM_I2C_NXP_TDA998X is not set +# CONFIG_DRM_I2C_NXP_TDA9950 is not set +# end of I2C encoder or helper chips + +# +# ARM devices +# +CONFIG_DRM_HDLCD=m +# CONFIG_DRM_HDLCD_SHOW_UNDERRUN is not set +CONFIG_DRM_MALI_DISPLAY=m +CONFIG_DRM_KOMEDA=m +# end of ARM devices + +CONFIG_DRM_RADEON=m +# CONFIG_DRM_RADEON_USERPTR is not set +CONFIG_DRM_AMDGPU=m +CONFIG_DRM_AMDGPU_SI=y +CONFIG_DRM_AMDGPU_CIK=y +CONFIG_DRM_AMDGPU_USERPTR=y + +# +# ACP (Audio CoProcessor) Configuration +# +# CONFIG_DRM_AMD_ACP is not set +# end of ACP (Audio CoProcessor) Configuration + +# +# Display Engine Configuration +# +CONFIG_DRM_AMD_DC=y +# CONFIG_DRM_AMD_DC_HDCP is not set +CONFIG_DRM_AMD_DC_SI=y +# end of Display Engine Configuration + +# CONFIG_HSA_AMD is not set +CONFIG_DRM_NOUVEAU=m +# CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT is not set +CONFIG_NOUVEAU_PLATFORM_DRIVER=y +CONFIG_NOUVEAU_DEBUG=5 +CONFIG_NOUVEAU_DEBUG_DEFAULT=3 +# CONFIG_NOUVEAU_DEBUG_MMU is not set +# CONFIG_NOUVEAU_DEBUG_PUSH is not set +CONFIG_DRM_NOUVEAU_BACKLIGHT=y +# CONFIG_DRM_KMB_DISPLAY is not set +CONFIG_DRM_VGEM=m +# CONFIG_DRM_VKMS is not set +CONFIG_DRM_ROCKCHIP=m +CONFIG_ROCKCHIP_ANALOGIX_DP=y +CONFIG_ROCKCHIP_CDN_DP=y +CONFIG_ROCKCHIP_DW_HDMI=y +CONFIG_ROCKCHIP_DW_MIPI_DSI=y +CONFIG_ROCKCHIP_INNO_HDMI=y +CONFIG_ROCKCHIP_LVDS=y +CONFIG_ROCKCHIP_RGB=y +CONFIG_ROCKCHIP_RK3066_HDMI=y +CONFIG_DRM_VMWGFX=m +CONFIG_DRM_VMWGFX_FBCON=y +CONFIG_DRM_UDL=m +CONFIG_DRM_AST=m +# CONFIG_DRM_MGAG200 is not set +# CONFIG_DRM_RCAR_DW_HDMI is not set +# CONFIG_DRM_RCAR_LVDS is not set +# CONFIG_DRM_SUN4I is not set +CONFIG_DRM_QXL=m +CONFIG_DRM_VIRTIO_GPU=m +CONFIG_DRM_MSM=m +CONFIG_DRM_MSM_GPU_STATE=y +# CONFIG_DRM_MSM_REGISTER_LOGGING is not set +# CONFIG_DRM_MSM_GPU_SUDO is not set +CONFIG_DRM_MSM_HDMI_HDCP=y +CONFIG_DRM_MSM_DP=y +CONFIG_DRM_MSM_DSI=y +CONFIG_DRM_MSM_DSI_28NM_PHY=y +CONFIG_DRM_MSM_DSI_20NM_PHY=y +CONFIG_DRM_MSM_DSI_28NM_8960_PHY=y +CONFIG_DRM_MSM_DSI_14NM_PHY=y +CONFIG_DRM_MSM_DSI_10NM_PHY=y +CONFIG_DRM_MSM_DSI_7NM_PHY=y +CONFIG_DRM_TEGRA=m +# CONFIG_DRM_TEGRA_DEBUG is not set +CONFIG_DRM_TEGRA_STAGING=y +CONFIG_DRM_PANEL=y + +# +# Display Panels +# +# CONFIG_DRM_PANEL_ABT_Y030XX067A is not set +CONFIG_DRM_PANEL_ARM_VERSATILE=m +CONFIG_DRM_PANEL_ASUS_Z00T_TM5P5_NT35596=m +CONFIG_DRM_PANEL_BOE_HIMAX8279D=m +CONFIG_DRM_PANEL_BOE_TV101WUM_NL6=m +CONFIG_DRM_PANEL_DSI_CM=m +# CONFIG_DRM_PANEL_LVDS is not set +CONFIG_DRM_PANEL_SIMPLE=m +CONFIG_DRM_PANEL_EDP=m +CONFIG_DRM_PANEL_ELIDA_KD35T133=m +CONFIG_DRM_PANEL_FEIXIN_K101_IM2BA02=m +# CONFIG_DRM_PANEL_FEIYANG_FY07024DI26A30D is not set +# CONFIG_DRM_PANEL_ILITEK_IL9322 is not set +# CONFIG_DRM_PANEL_ILITEK_ILI9341 is not set +# CONFIG_DRM_PANEL_ILITEK_ILI9881C is not set +# CONFIG_DRM_PANEL_INNOLUX_EJ030NA is not set +# CONFIG_DRM_PANEL_INNOLUX_P079ZCA is not set +# CONFIG_DRM_PANEL_JDI_LT070ME05000 is not set +CONFIG_DRM_PANEL_KHADAS_TS050=m +# CONFIG_DRM_PANEL_KINGDISPLAY_KD097D04 is not set +# CONFIG_DRM_PANEL_LEADTEK_LTK050H3146W is not set +CONFIG_DRM_PANEL_LEADTEK_LTK500HD1829=m +# CONFIG_DRM_PANEL_SAMSUNG_LD9040 is not set +# CONFIG_DRM_PANEL_LG_LB035Q02 is not set +# CONFIG_DRM_PANEL_LG_LG4573 is not set +# CONFIG_DRM_PANEL_NEC_NL8048HL11 is not set +CONFIG_DRM_PANEL_NOVATEK_NT35510=m +# CONFIG_DRM_PANEL_NOVATEK_NT36672A is not set +# CONFIG_DRM_PANEL_NOVATEK_NT39016 is not set +CONFIG_DRM_PANEL_MANTIX_MLAF057WE51=m +# CONFIG_DRM_PANEL_OLIMEX_LCD_OLINUXINO is not set +# CONFIG_DRM_PANEL_ORISETECH_OTM8009A is not set +CONFIG_DRM_PANEL_OSD_OSD101T2587_53TS=m +# CONFIG_DRM_PANEL_PANASONIC_VVX10F034N00 is not set +# CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN is not set +# CONFIG_DRM_PANEL_RAYDIUM_RM67191 is not set +# CONFIG_DRM_PANEL_RAYDIUM_RM68200 is not set +# CONFIG_DRM_PANEL_RONBO_RB070D30 is not set +# CONFIG_DRM_PANEL_SAMSUNG_ATNA33XC20 is not set +# CONFIG_DRM_PANEL_SAMSUNG_DB7430 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6D16D0 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6D27A1 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6E3HA2 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6E63J0X03 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6E63M0 is not set +CONFIG_DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01=m +# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set +# CONFIG_DRM_PANEL_SAMSUNG_SOFEF00 is not set +# CONFIG_DRM_PANEL_SEIKO_43WVF1G is not set +# CONFIG_DRM_PANEL_SHARP_LQ101R1SX01 is not set +# CONFIG_DRM_PANEL_SHARP_LS037V7DW01 is not set +# CONFIG_DRM_PANEL_SHARP_LS043T1LE01 is not set +# CONFIG_DRM_PANEL_SHARP_LS060T1SX01 is not set +# CONFIG_DRM_PANEL_SITRONIX_ST7701 is not set +# CONFIG_DRM_PANEL_SITRONIX_ST7703 is not set +# CONFIG_DRM_PANEL_SITRONIX_ST7789V is not set +CONFIG_DRM_PANEL_SONY_ACX424AKP=m +# CONFIG_DRM_PANEL_SONY_ACX565AKM is not set +# CONFIG_DRM_PANEL_TDO_TL070WSH30 is not set +# CONFIG_DRM_PANEL_TPO_TD028TTEC1 is not set +# CONFIG_DRM_PANEL_TPO_TD043MTEA1 is not set +# CONFIG_DRM_PANEL_TPO_TPG110 is not set +# CONFIG_DRM_PANEL_TRULY_NT35597_WQXGA is not set +# CONFIG_DRM_PANEL_VISIONOX_RM69299 is not set +# CONFIG_DRM_PANEL_WIDECHIPS_WS2401 is not set +CONFIG_DRM_PANEL_XINPENG_XPP055C272=m +# end of Display Panels + +CONFIG_DRM_BRIDGE=y +CONFIG_DRM_PANEL_BRIDGE=y + +# +# Display Interface Bridges +# +CONFIG_DRM_CDNS_DSI=m +CONFIG_DRM_CHIPONE_ICN6211=m +CONFIG_DRM_CHRONTEL_CH7033=m +CONFIG_DRM_CROS_EC_ANX7688=m +CONFIG_DRM_DISPLAY_CONNECTOR=m +CONFIG_DRM_LONTIUM_LT8912B=m +CONFIG_DRM_LONTIUM_LT9611=m +CONFIG_DRM_LONTIUM_LT9611UXC=m +CONFIG_DRM_ITE_IT66121=m +CONFIG_DRM_LVDS_CODEC=m +# CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set +CONFIG_DRM_NWL_MIPI_DSI=m +# CONFIG_DRM_NXP_PTN3460 is not set +# CONFIG_DRM_PARADE_PS8622 is not set +CONFIG_DRM_PARADE_PS8640=m +# CONFIG_DRM_SIL_SII8620 is not set +# CONFIG_DRM_SII902X is not set +# CONFIG_DRM_SII9234 is not set +CONFIG_DRM_SIMPLE_BRIDGE=m +# CONFIG_DRM_THINE_THC63LVD1024 is not set +CONFIG_DRM_TOSHIBA_TC358762=m +# CONFIG_DRM_TOSHIBA_TC358764 is not set +# CONFIG_DRM_TOSHIBA_TC358767 is not set +# CONFIG_DRM_TOSHIBA_TC358768 is not set +CONFIG_DRM_TOSHIBA_TC358775=m +# CONFIG_DRM_TI_TFP410 is not set +CONFIG_DRM_TI_SN65DSI83=m +# CONFIG_DRM_TI_SN65DSI86 is not set +CONFIG_DRM_TI_TPD12S015=m +CONFIG_DRM_ANALOGIX_ANX6345=m +# CONFIG_DRM_ANALOGIX_ANX78XX is not set +CONFIG_DRM_ANALOGIX_DP=m +CONFIG_DRM_ANALOGIX_ANX7625=m +CONFIG_DRM_I2C_ADV7511=m +CONFIG_DRM_I2C_ADV7511_AUDIO=y +CONFIG_DRM_I2C_ADV7511_CEC=y +CONFIG_DRM_CDNS_MHDP8546=m +CONFIG_DRM_DW_HDMI=m +# CONFIG_DRM_DW_HDMI_AHB_AUDIO is not set +CONFIG_DRM_DW_HDMI_I2S_AUDIO=m +# CONFIG_DRM_DW_HDMI_CEC is not set +CONFIG_DRM_DW_MIPI_DSI=m +# end of Display Interface Bridges + +CONFIG_DRM_IMX_DCSS=m +CONFIG_DRM_VC4=m +# CONFIG_DRM_VC4_HDMI_CEC is not set +CONFIG_DRM_ETNAVIV=m +CONFIG_DRM_ETNAVIV_THERMAL=y +CONFIG_DRM_HISI_HIBMC=m +CONFIG_DRM_HISI_KIRIN=m +# CONFIG_DRM_MXSFB is not set +CONFIG_DRM_MESON=m +CONFIG_DRM_MESON_DW_HDMI=m +# CONFIG_DRM_ARCPGU is not set +CONFIG_DRM_BOCHS=m +CONFIG_DRM_CIRRUS_QEMU=m +CONFIG_DRM_GM12U320=m +CONFIG_DRM_SIMPLEDRM=m +# CONFIG_TINYDRM_HX8357D is not set +# CONFIG_TINYDRM_ILI9225 is not set +# CONFIG_TINYDRM_ILI9341 is not set +CONFIG_TINYDRM_ILI9486=m +# CONFIG_TINYDRM_MI0283QT is not set +# CONFIG_TINYDRM_REPAPER is not set +# CONFIG_TINYDRM_ST7586 is not set +# CONFIG_TINYDRM_ST7735R is not set +# CONFIG_DRM_PL111 is not set +CONFIG_DRM_XEN=y +CONFIG_DRM_XEN_FRONTEND=m +CONFIG_DRM_LIMA=m +CONFIG_DRM_PANFROST=m +CONFIG_DRM_TIDSS=m +CONFIG_DRM_GUD=m +CONFIG_DRM_HYPERV=m +CONFIG_DRM_LEGACY=y +# CONFIG_DRM_TDFX is not set +# CONFIG_DRM_R128 is not set +# CONFIG_DRM_MGA is not set +CONFIG_DRM_VIA=m +CONFIG_DRM_SAVAGE=m +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y + +# +# Frame buffer Devices +# +CONFIG_FB_CMDLINE=y +CONFIG_FB_NOTIFY=y +CONFIG_FB=y +CONFIG_FIRMWARE_EDID=y +CONFIG_FB_DDC=m +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FB_SYS_FILLRECT=y +CONFIG_FB_SYS_COPYAREA=y +CONFIG_FB_SYS_IMAGEBLIT=y +# CONFIG_FB_FOREIGN_ENDIAN is not set +CONFIG_FB_SYS_FOPS=y +CONFIG_FB_DEFERRED_IO=y +CONFIG_FB_SVGALIB=m +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_TILEBLITTING=y + +# +# Frame buffer hardware drivers +# +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_PM2 is not set +CONFIG_FB_ARMCLCD=y +CONFIG_FB_IMX=m +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_IMSTT is not set +# CONFIG_FB_UVESA is not set +CONFIG_FB_EFI=y +# CONFIG_FB_OPENCORES is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_RIVA is not set +# CONFIG_FB_I740 is not set +# CONFIG_FB_MATROX is not set +# CONFIG_FB_RADEON is not set +# CONFIG_FB_ATY128 is not set +# CONFIG_FB_ATY is not set +CONFIG_FB_S3=m +CONFIG_FB_S3_DDC=y +# CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SIS is not set +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_KYRO is not set +CONFIG_FB_3DFX=m +# CONFIG_FB_3DFX_ACCEL is not set +CONFIG_FB_3DFX_I2C=y +# CONFIG_FB_VOODOO1 is not set +CONFIG_FB_VT8623=m +# CONFIG_FB_TRIDENT is not set +CONFIG_FB_ARK=m +CONFIG_FB_PM3=m +# CONFIG_FB_CARMINE is not set +CONFIG_FB_SMSCUFX=m +CONFIG_FB_UDL=m +# CONFIG_FB_IBM_GXT4500 is not set +# CONFIG_FB_VIRTUAL is not set +CONFIG_XEN_FBDEV_FRONTEND=y +# CONFIG_FB_METRONOME is not set +CONFIG_FB_MB862XX=m +CONFIG_FB_MB862XX_PCI_GDC=y +CONFIG_FB_MB862XX_I2C=y +# CONFIG_FB_MX3 is not set +CONFIG_FB_HYPERV=m +CONFIG_FB_SIMPLE=m +# CONFIG_FB_SSD1307 is not set +# CONFIG_FB_SM712 is not set +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +CONFIG_LCD_CLASS_DEVICE=m +CONFIG_LCD_L4F00242T03=m +CONFIG_LCD_LMS283GF05=m +CONFIG_LCD_LTV350QV=m +CONFIG_LCD_ILI922X=m +CONFIG_LCD_ILI9320=m +CONFIG_LCD_TDO24M=m +CONFIG_LCD_VGG2432A4=m +CONFIG_LCD_PLATFORM=m +CONFIG_LCD_AMS369FG06=m +CONFIG_LCD_LMS501KF03=m +CONFIG_LCD_HX8357=m +CONFIG_LCD_OTM3225A=m +CONFIG_BACKLIGHT_CLASS_DEVICE=y +CONFIG_BACKLIGHT_KTD253=m +CONFIG_BACKLIGHT_PWM=m +CONFIG_BACKLIGHT_QCOM_WLED=m +CONFIG_BACKLIGHT_RT4831=m +# CONFIG_BACKLIGHT_ADP8860 is not set +# CONFIG_BACKLIGHT_ADP8870 is not set +# CONFIG_BACKLIGHT_LM3630A is not set +# CONFIG_BACKLIGHT_LM3639 is not set +CONFIG_BACKLIGHT_LP855X=m +# CONFIG_BACKLIGHT_GPIO is not set +# CONFIG_BACKLIGHT_LV5207LP is not set +# CONFIG_BACKLIGHT_BD6107 is not set +# CONFIG_BACKLIGHT_ARCXCNN is not set +CONFIG_BACKLIGHT_LED=m +# end of Backlight & LCD device support + +CONFIG_VGASTATE=m +CONFIG_VIDEOMODE_HELPERS=y +CONFIG_HDMI=y + +# +# Console display driver support +# +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +CONFIG_FRAMEBUFFER_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y +# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set +# end of Console display driver support + +# CONFIG_LOGO is not set +# end of Graphics support + +CONFIG_SOUND=m +CONFIG_SOUND_OSS_CORE=y +# CONFIG_SOUND_OSS_CORE_PRECLAIM is not set +CONFIG_SND=m +CONFIG_SND_TIMER=m +CONFIG_SND_PCM=m +CONFIG_SND_PCM_ELD=y +CONFIG_SND_PCM_IEC958=y +CONFIG_SND_DMAENGINE_PCM=m +CONFIG_SND_HWDEP=m +CONFIG_SND_SEQ_DEVICE=m +CONFIG_SND_RAWMIDI=m +CONFIG_SND_COMPRESS_OFFLOAD=m +CONFIG_SND_JACK=y +CONFIG_SND_JACK_INPUT_DEV=y +CONFIG_SND_OSSEMUL=y +CONFIG_SND_MIXER_OSS=m +CONFIG_SND_PCM_OSS=m +CONFIG_SND_PCM_OSS_PLUGINS=y +CONFIG_SND_PCM_TIMER=y +CONFIG_SND_HRTIMER=m +CONFIG_SND_DYNAMIC_MINORS=y +CONFIG_SND_MAX_CARDS=32 +CONFIG_SND_SUPPORT_OLD_API=y +CONFIG_SND_PROC_FS=y +CONFIG_SND_VERBOSE_PROCFS=y +# CONFIG_SND_VERBOSE_PRINTK is not set +# CONFIG_SND_DEBUG is not set +CONFIG_SND_VMASTER=y +CONFIG_SND_CTL_LED=m +CONFIG_SND_SEQUENCER=m +CONFIG_SND_SEQ_DUMMY=m +# CONFIG_SND_SEQUENCER_OSS is not set +CONFIG_SND_SEQ_HRTIMER_DEFAULT=y +CONFIG_SND_SEQ_MIDI_EVENT=m +CONFIG_SND_SEQ_MIDI=m +CONFIG_SND_SEQ_MIDI_EMUL=m +CONFIG_SND_SEQ_VIRMIDI=m +CONFIG_SND_MPU401_UART=m +CONFIG_SND_OPL3_LIB=m +CONFIG_SND_OPL3_LIB_SEQ=m +CONFIG_SND_AC97_CODEC=m +CONFIG_SND_DRIVERS=y +# CONFIG_SND_DUMMY is not set +CONFIG_SND_ALOOP=m +# CONFIG_SND_VIRMIDI is not set +# CONFIG_SND_MTPAV is not set +CONFIG_SND_MTS64=m +# CONFIG_SND_SERIAL_U16550 is not set +# CONFIG_SND_MPU401 is not set +CONFIG_SND_PORTMAN2X4=m +CONFIG_SND_AC97_POWER_SAVE=y +CONFIG_SND_AC97_POWER_SAVE_DEFAULT=0 +CONFIG_SND_PCI=y +CONFIG_SND_AD1889=m +CONFIG_SND_ALS300=m +CONFIG_SND_ALI5451=m +# CONFIG_SND_ATIIXP is not set +# CONFIG_SND_ATIIXP_MODEM is not set +# CONFIG_SND_AU8810 is not set +# CONFIG_SND_AU8820 is not set +# CONFIG_SND_AU8830 is not set +# CONFIG_SND_AW2 is not set +CONFIG_SND_AZT3328=m +# CONFIG_SND_BT87X is not set +# CONFIG_SND_CA0106 is not set +# CONFIG_SND_CMIPCI is not set +CONFIG_SND_OXYGEN_LIB=m +CONFIG_SND_OXYGEN=m +# CONFIG_SND_CS4281 is not set +# CONFIG_SND_CS46XX is not set +CONFIG_SND_CTXFI=m +CONFIG_SND_DARLA20=m +CONFIG_SND_GINA20=m +CONFIG_SND_LAYLA20=m +CONFIG_SND_DARLA24=m +CONFIG_SND_GINA24=m +CONFIG_SND_LAYLA24=m +CONFIG_SND_MONA=m +CONFIG_SND_MIA=m +CONFIG_SND_ECHO3G=m +CONFIG_SND_INDIGO=m +CONFIG_SND_INDIGOIO=m +CONFIG_SND_INDIGODJ=m +CONFIG_SND_INDIGOIOX=m +CONFIG_SND_INDIGODJX=m +CONFIG_SND_EMU10K1=m +CONFIG_SND_EMU10K1_SEQ=m +CONFIG_SND_EMU10K1X=m +# CONFIG_SND_ENS1370 is not set +# CONFIG_SND_ENS1371 is not set +CONFIG_SND_ES1938=m +CONFIG_SND_ES1968=m +CONFIG_SND_ES1968_INPUT=y +CONFIG_SND_ES1968_RADIO=y +# CONFIG_SND_FM801 is not set +# CONFIG_SND_HDSP is not set +CONFIG_SND_HDSPM=m +CONFIG_SND_ICE1712=m +# CONFIG_SND_ICE1724 is not set +# CONFIG_SND_INTEL8X0 is not set +# CONFIG_SND_INTEL8X0M is not set +# CONFIG_SND_KORG1212 is not set +CONFIG_SND_LOLA=m +CONFIG_SND_LX6464ES=m +CONFIG_SND_MAESTRO3=m +CONFIG_SND_MAESTRO3_INPUT=y +# CONFIG_SND_MIXART is not set +# CONFIG_SND_NM256 is not set +CONFIG_SND_PCXHR=m +CONFIG_SND_RIPTIDE=m +# CONFIG_SND_RME32 is not set +# CONFIG_SND_RME96 is not set +# CONFIG_SND_RME9652 is not set +CONFIG_SND_SONICVIBES=m +CONFIG_SND_TRIDENT=m +# CONFIG_SND_VIA82XX is not set +# CONFIG_SND_VIA82XX_MODEM is not set +CONFIG_SND_VIRTUOSO=m +# CONFIG_SND_VX222 is not set +# CONFIG_SND_YMFPCI is not set + +# +# HD-Audio +# +CONFIG_SND_HDA=m +CONFIG_SND_HDA_GENERIC_LEDS=y +CONFIG_SND_HDA_INTEL=m +CONFIG_SND_HDA_TEGRA=m +CONFIG_SND_HDA_HWDEP=y +CONFIG_SND_HDA_RECONFIG=y +CONFIG_SND_HDA_INPUT_BEEP=y +CONFIG_SND_HDA_INPUT_BEEP_MODE=1 +CONFIG_SND_HDA_PATCH_LOADER=y +CONFIG_SND_HDA_CODEC_REALTEK=m +CONFIG_SND_HDA_CODEC_ANALOG=m +CONFIG_SND_HDA_CODEC_SIGMATEL=m +CONFIG_SND_HDA_CODEC_VIA=m +CONFIG_SND_HDA_CODEC_HDMI=m +CONFIG_SND_HDA_CODEC_CIRRUS=m +CONFIG_SND_HDA_CODEC_CS8409=m +CONFIG_SND_HDA_CODEC_CONEXANT=m +CONFIG_SND_HDA_CODEC_CA0110=m +CONFIG_SND_HDA_CODEC_CA0132=m +CONFIG_SND_HDA_CODEC_CA0132_DSP=y +CONFIG_SND_HDA_CODEC_CMEDIA=m +CONFIG_SND_HDA_CODEC_SI3054=m +CONFIG_SND_HDA_GENERIC=m +CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0 +CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM=y +# end of HD-Audio + +CONFIG_SND_HDA_CORE=m +CONFIG_SND_HDA_DSP_LOADER=y +CONFIG_SND_HDA_ALIGNED_MMIO=y +CONFIG_SND_HDA_COMPONENT=y +CONFIG_SND_HDA_PREALLOC_SIZE=2048 +CONFIG_SND_INTEL_NHLT=y +CONFIG_SND_INTEL_DSP_CONFIG=m +CONFIG_SND_INTEL_SOUNDWIRE_ACPI=m +CONFIG_SND_SPI=y +CONFIG_SND_USB=y +CONFIG_SND_USB_AUDIO=m +CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER=y +CONFIG_SND_USB_UA101=m +CONFIG_SND_USB_CAIAQ=m +CONFIG_SND_USB_CAIAQ_INPUT=y +CONFIG_SND_USB_6FIRE=m +CONFIG_SND_USB_HIFACE=m +CONFIG_SND_BCD2000=m +CONFIG_SND_USB_LINE6=m +CONFIG_SND_USB_POD=m +CONFIG_SND_USB_PODHD=m +CONFIG_SND_USB_TONEPORT=m +CONFIG_SND_USB_VARIAX=m +CONFIG_SND_FIREWIRE=y +CONFIG_SND_FIREWIRE_LIB=m +CONFIG_SND_DICE=m +CONFIG_SND_OXFW=m +CONFIG_SND_ISIGHT=m +CONFIG_SND_FIREWORKS=m +CONFIG_SND_BEBOB=m +CONFIG_SND_FIREWIRE_DIGI00X=m +CONFIG_SND_FIREWIRE_TASCAM=m +# CONFIG_SND_FIREWIRE_MOTU is not set +# CONFIG_SND_FIREFACE is not set +CONFIG_SND_SOC=m +CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=y +CONFIG_SND_SOC_COMPRESS=y +CONFIG_SND_SOC_TOPOLOGY=y +CONFIG_SND_SOC_ADI=m +CONFIG_SND_SOC_ADI_AXI_I2S=m +CONFIG_SND_SOC_ADI_AXI_SPDIF=m +# CONFIG_SND_SOC_AMD_ACP is not set +# CONFIG_SND_ATMEL_SOC is not set +CONFIG_SND_BCM2835_SOC_I2S=m +CONFIG_SND_BCM63XX_I2S_WHISTLER=m +# CONFIG_SND_DESIGNWARE_I2S is not set + +# +# SoC Audio for Freescale CPUs +# + +# +# Common SoC Audio options for Freescale CPUs: +# +# CONFIG_SND_SOC_FSL_ASRC is not set +CONFIG_SND_SOC_FSL_SAI=m +CONFIG_SND_SOC_FSL_MQS=m +CONFIG_SND_SOC_FSL_AUDMIX=m +CONFIG_SND_SOC_FSL_SSI=m +CONFIG_SND_SOC_FSL_SPDIF=m +CONFIG_SND_SOC_FSL_ESAI=m +CONFIG_SND_SOC_FSL_MICFIL=m +CONFIG_SND_SOC_FSL_XCVR=m +CONFIG_SND_SOC_FSL_AUD2HTX=m +CONFIG_SND_SOC_FSL_RPMSG=m +CONFIG_SND_SOC_IMX_PCM_DMA=m +CONFIG_SND_SOC_IMX_AUDIO_RPMSG=m +CONFIG_SND_SOC_IMX_PCM_RPMSG=m +CONFIG_SND_SOC_IMX_AUDMUX=m +CONFIG_SND_IMX_SOC=m + +# +# SoC Audio support for Freescale i.MX boards: +# +CONFIG_SND_SOC_IMX_ES8328=m +CONFIG_SND_SOC_IMX_SGTL5000=m +CONFIG_SND_SOC_IMX_SPDIF=m +CONFIG_SND_SOC_FSL_ASOC_CARD=m +CONFIG_SND_SOC_IMX_AUDMIX=m +CONFIG_SND_SOC_IMX_HDMI=m +CONFIG_SND_SOC_IMX_RPMSG=m +CONFIG_SND_SOC_IMX_CARD=m +# end of SoC Audio for Freescale CPUs + +CONFIG_SND_I2S_HI6210_I2S=m +# CONFIG_SND_KIRKWOOD_SOC is not set +# CONFIG_SND_SOC_IMG is not set +CONFIG_SND_SOC_INTEL_KEEMBAY=m +# CONFIG_SND_SOC_MTK_BTCVSD is not set + +# +# ASoC support for Amlogic platforms +# +CONFIG_SND_MESON_AIU=m +# CONFIG_SND_MESON_AXG_FRDDR is not set +# CONFIG_SND_MESON_AXG_TODDR is not set +# CONFIG_SND_MESON_AXG_TDMIN is not set +# CONFIG_SND_MESON_AXG_TDMOUT is not set +# CONFIG_SND_MESON_AXG_SOUND_CARD is not set +# CONFIG_SND_MESON_AXG_SPDIFOUT is not set +# CONFIG_SND_MESON_AXG_SPDIFIN is not set +# CONFIG_SND_MESON_AXG_PDM is not set +CONFIG_SND_MESON_CODEC_GLUE=m +# CONFIG_SND_MESON_GX_SOUND_CARD is not set +# CONFIG_SND_MESON_G12A_TOACODEC is not set +# CONFIG_SND_MESON_G12A_TOHDMITX is not set +CONFIG_SND_SOC_MESON_T9015=m +# end of ASoC support for Amlogic platforms + +CONFIG_SND_SOC_QCOM=m +CONFIG_SND_SOC_LPASS_CPU=m +CONFIG_SND_SOC_LPASS_HDMI=m +CONFIG_SND_SOC_LPASS_PLATFORM=m +CONFIG_SND_SOC_LPASS_APQ8016=m +CONFIG_SND_SOC_LPASS_SC7180=m +# CONFIG_SND_SOC_STORM is not set +CONFIG_SND_SOC_APQ8016_SBC=m +CONFIG_SND_SOC_QCOM_COMMON=m +CONFIG_SND_SOC_QDSP6_COMMON=m +CONFIG_SND_SOC_QDSP6_CORE=m +CONFIG_SND_SOC_QDSP6_AFE=m +CONFIG_SND_SOC_QDSP6_AFE_DAI=m +CONFIG_SND_SOC_QDSP6_AFE_CLOCKS=m +CONFIG_SND_SOC_QDSP6_ADM=m +CONFIG_SND_SOC_QDSP6_ROUTING=m +CONFIG_SND_SOC_QDSP6_ASM=m +CONFIG_SND_SOC_QDSP6_ASM_DAI=m +CONFIG_SND_SOC_QDSP6_APM_DAI=m +CONFIG_SND_SOC_QDSP6_APM_LPASS_DAI=m +CONFIG_SND_SOC_QDSP6_APM=m +CONFIG_SND_SOC_QDSP6_PRM_LPASS_CLOCKS=m +CONFIG_SND_SOC_QDSP6_PRM=m +CONFIG_SND_SOC_QDSP6=m +CONFIG_SND_SOC_MSM8996=m +CONFIG_SND_SOC_SC7180=m +CONFIG_SND_SOC_ROCKCHIP=m +CONFIG_SND_SOC_ROCKCHIP_I2S=m +CONFIG_SND_SOC_ROCKCHIP_I2S_TDM=m +CONFIG_SND_SOC_ROCKCHIP_PDM=m +CONFIG_SND_SOC_ROCKCHIP_SPDIF=m +CONFIG_SND_SOC_ROCKCHIP_MAX98090=m +CONFIG_SND_SOC_ROCKCHIP_RT5645=m +CONFIG_SND_SOC_RK3288_HDMI_ANALOG=m +CONFIG_SND_SOC_RK3399_GRU_SOUND=m +# CONFIG_SND_SOC_SOF_TOPLEVEL is not set + +# +# STMicroelectronics STM32 SOC audio support +# +# end of STMicroelectronics STM32 SOC audio support + +# +# Allwinner SoC Audio support +# +# CONFIG_SND_SUN4I_CODEC is not set +# CONFIG_SND_SUN8I_CODEC is not set +# CONFIG_SND_SUN8I_CODEC_ANALOG is not set +# CONFIG_SND_SUN50I_CODEC_ANALOG is not set +# CONFIG_SND_SUN4I_I2S is not set +# CONFIG_SND_SUN4I_SPDIF is not set +# end of Allwinner SoC Audio support + +CONFIG_SND_SOC_TEGRA=m +# CONFIG_SND_SOC_TEGRA20_AC97 is not set +# CONFIG_SND_SOC_TEGRA20_DAS is not set +# CONFIG_SND_SOC_TEGRA20_I2S is not set +CONFIG_SND_SOC_TEGRA20_SPDIF=m +# CONFIG_SND_SOC_TEGRA30_AHUB is not set +# CONFIG_SND_SOC_TEGRA30_I2S is not set +# CONFIG_SND_SOC_TEGRA210_AHUB is not set +# CONFIG_SND_SOC_TEGRA210_DMIC is not set +# CONFIG_SND_SOC_TEGRA210_I2S is not set +# CONFIG_SND_SOC_TEGRA186_DSPK is not set +# CONFIG_SND_SOC_TEGRA210_ADMAIF is not set +# CONFIG_SND_SOC_TEGRA210_MVC is not set +# CONFIG_SND_SOC_TEGRA210_SFC is not set +# CONFIG_SND_SOC_TEGRA210_AMX is not set +# CONFIG_SND_SOC_TEGRA210_ADX is not set +# CONFIG_SND_SOC_TEGRA210_MIXER is not set +# CONFIG_SND_SOC_TEGRA_AUDIO_GRAPH_CARD is not set +CONFIG_SND_SOC_TEGRA_MACHINE_DRV=m +CONFIG_SND_SOC_TEGRA_RT5640=m +CONFIG_SND_SOC_TEGRA_WM8753=m +CONFIG_SND_SOC_TEGRA_WM8903=m +# CONFIG_SND_SOC_TEGRA_WM9712 is not set +CONFIG_SND_SOC_TEGRA_TRIMSLICE=m +CONFIG_SND_SOC_TEGRA_ALC5632=m +CONFIG_SND_SOC_TEGRA_MAX98090=m +CONFIG_SND_SOC_TEGRA_RT5677=m +# CONFIG_SND_SOC_TEGRA_SGTL5000 is not set +CONFIG_SND_SOC_XILINX_I2S=m +# CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER is not set +# CONFIG_SND_SOC_XILINX_SPDIF is not set +# CONFIG_SND_SOC_XTFPGA_I2S is not set +CONFIG_SND_SOC_I2C_AND_SPI=m + +# +# CODEC drivers +# +CONFIG_SND_SOC_WM_HUBS=m +# CONFIG_SND_SOC_AC97_CODEC is not set +CONFIG_SND_SOC_ADAU_UTILS=m +CONFIG_SND_SOC_ADAU1372=m +CONFIG_SND_SOC_ADAU1372_I2C=m +CONFIG_SND_SOC_ADAU1372_SPI=m +# CONFIG_SND_SOC_ADAU1701 is not set +# CONFIG_SND_SOC_ADAU1761_I2C is not set +# CONFIG_SND_SOC_ADAU1761_SPI is not set +CONFIG_SND_SOC_ADAU7002=m +CONFIG_SND_SOC_ADAU7118=m +CONFIG_SND_SOC_ADAU7118_HW=m +CONFIG_SND_SOC_ADAU7118_I2C=m +# CONFIG_SND_SOC_AK4104 is not set +# CONFIG_SND_SOC_AK4118 is not set +CONFIG_SND_SOC_AK4458=m +# CONFIG_SND_SOC_AK4554 is not set +# CONFIG_SND_SOC_AK4613 is not set +# CONFIG_SND_SOC_AK4642 is not set +# CONFIG_SND_SOC_AK5386 is not set +CONFIG_SND_SOC_AK5558=m +# CONFIG_SND_SOC_ALC5623 is not set +CONFIG_SND_SOC_ALC5632=m +# CONFIG_SND_SOC_BD28623 is not set +# CONFIG_SND_SOC_BT_SCO is not set +CONFIG_SND_SOC_CROS_EC_CODEC=m +# CONFIG_SND_SOC_CS35L32 is not set +# CONFIG_SND_SOC_CS35L33 is not set +# CONFIG_SND_SOC_CS35L34 is not set +# CONFIG_SND_SOC_CS35L35 is not set +# CONFIG_SND_SOC_CS35L36 is not set +# CONFIG_SND_SOC_CS35L41_SPI is not set +# CONFIG_SND_SOC_CS35L41_I2C is not set +# CONFIG_SND_SOC_CS42L42 is not set +# CONFIG_SND_SOC_CS42L51_I2C is not set +# CONFIG_SND_SOC_CS42L52 is not set +# CONFIG_SND_SOC_CS42L56 is not set +# CONFIG_SND_SOC_CS42L73 is not set +# CONFIG_SND_SOC_CS4234 is not set +# CONFIG_SND_SOC_CS4265 is not set +# CONFIG_SND_SOC_CS4270 is not set +# CONFIG_SND_SOC_CS4271_I2C is not set +# CONFIG_SND_SOC_CS4271_SPI is not set +# CONFIG_SND_SOC_CS42XX8_I2C is not set +# CONFIG_SND_SOC_CS43130 is not set +# CONFIG_SND_SOC_CS4341 is not set +# CONFIG_SND_SOC_CS4349 is not set +# CONFIG_SND_SOC_CS53L30 is not set +# CONFIG_SND_SOC_CX2072X is not set +# CONFIG_SND_SOC_DA7213 is not set +CONFIG_SND_SOC_DA7219=m +CONFIG_SND_SOC_DMIC=m +CONFIG_SND_SOC_HDMI_CODEC=m +# CONFIG_SND_SOC_ES7134 is not set +# CONFIG_SND_SOC_ES7241 is not set +# CONFIG_SND_SOC_ES8316 is not set +CONFIG_SND_SOC_ES8328=m +CONFIG_SND_SOC_ES8328_I2C=m +CONFIG_SND_SOC_ES8328_SPI=m +# CONFIG_SND_SOC_GTM601 is not set +CONFIG_SND_SOC_ICS43432=m +# CONFIG_SND_SOC_INNO_RK3036 is not set +# CONFIG_SND_SOC_MAX98088 is not set +CONFIG_SND_SOC_MAX98090=m +CONFIG_SND_SOC_MAX98357A=m +# CONFIG_SND_SOC_MAX98504 is not set +# CONFIG_SND_SOC_MAX9867 is not set +CONFIG_SND_SOC_MAX98927=m +CONFIG_SND_SOC_MAX98520=m +CONFIG_SND_SOC_MAX98373=m +CONFIG_SND_SOC_MAX98373_I2C=m +# CONFIG_SND_SOC_MAX98390 is not set +# CONFIG_SND_SOC_MAX9860 is not set +# CONFIG_SND_SOC_MSM8916_WCD_ANALOG is not set +# CONFIG_SND_SOC_MSM8916_WCD_DIGITAL is not set +# CONFIG_SND_SOC_PCM1681 is not set +# CONFIG_SND_SOC_PCM1789_I2C is not set +# CONFIG_SND_SOC_PCM179X_I2C is not set +# CONFIG_SND_SOC_PCM179X_SPI is not set +# CONFIG_SND_SOC_PCM186X_I2C is not set +# CONFIG_SND_SOC_PCM186X_SPI is not set +# CONFIG_SND_SOC_PCM3060_I2C is not set +# CONFIG_SND_SOC_PCM3060_SPI is not set +# CONFIG_SND_SOC_PCM3168A_I2C is not set +# CONFIG_SND_SOC_PCM3168A_SPI is not set +# CONFIG_SND_SOC_PCM5102A is not set +# CONFIG_SND_SOC_PCM512x_I2C is not set +# CONFIG_SND_SOC_PCM512x_SPI is not set +CONFIG_SND_SOC_RK3328=m +CONFIG_SND_SOC_RK817=m +CONFIG_SND_SOC_RL6231=m +CONFIG_SND_SOC_RT5514=m +CONFIG_SND_SOC_RT5514_SPI=m +# CONFIG_SND_SOC_RT5616 is not set +# CONFIG_SND_SOC_RT5631 is not set +CONFIG_SND_SOC_RT5640=m +CONFIG_SND_SOC_RT5645=m +# CONFIG_SND_SOC_RT5659 is not set +CONFIG_SND_SOC_RT5677=m +CONFIG_SND_SOC_RT5677_SPI=m +CONFIG_SND_SOC_RT5682=m +CONFIG_SND_SOC_RT5682_I2C=m +# CONFIG_SND_SOC_RT9120 is not set +CONFIG_SND_SOC_SGTL5000=m +CONFIG_SND_SOC_SIMPLE_AMPLIFIER=m +CONFIG_SND_SOC_SIMPLE_MUX=m +# CONFIG_SND_SOC_SPDIF is not set +# CONFIG_SND_SOC_SSM2305 is not set +CONFIG_SND_SOC_SSM2518=m +# CONFIG_SND_SOC_SSM2602_SPI is not set +# CONFIG_SND_SOC_SSM2602_I2C is not set +# CONFIG_SND_SOC_SSM4567 is not set +# CONFIG_SND_SOC_STA32X is not set +# CONFIG_SND_SOC_STA350 is not set +# CONFIG_SND_SOC_STI_SAS is not set +# CONFIG_SND_SOC_TAS2552 is not set +# CONFIG_SND_SOC_TAS2562 is not set +# CONFIG_SND_SOC_TAS2764 is not set +# CONFIG_SND_SOC_TAS2770 is not set +# CONFIG_SND_SOC_TAS5086 is not set +# CONFIG_SND_SOC_TAS571X is not set +# CONFIG_SND_SOC_TAS5720 is not set +# CONFIG_SND_SOC_TAS6424 is not set +# CONFIG_SND_SOC_TDA7419 is not set +# CONFIG_SND_SOC_TFA9879 is not set +CONFIG_SND_SOC_TFA989X=m +CONFIG_SND_SOC_TLV320AIC23=m +CONFIG_SND_SOC_TLV320AIC23_I2C=m +# CONFIG_SND_SOC_TLV320AIC23_SPI is not set +# CONFIG_SND_SOC_TLV320AIC31XX is not set +# CONFIG_SND_SOC_TLV320AIC32X4_I2C is not set +# CONFIG_SND_SOC_TLV320AIC32X4_SPI is not set +CONFIG_SND_SOC_TLV320AIC3X=m +CONFIG_SND_SOC_TLV320AIC3X_I2C=m +CONFIG_SND_SOC_TLV320AIC3X_SPI=m +# CONFIG_SND_SOC_TLV320ADCX140 is not set +CONFIG_SND_SOC_TS3A227E=m +# CONFIG_SND_SOC_TSCS42XX is not set +# CONFIG_SND_SOC_TSCS454 is not set +# CONFIG_SND_SOC_UDA1334 is not set +# CONFIG_SND_SOC_WM8510 is not set +# CONFIG_SND_SOC_WM8523 is not set +# CONFIG_SND_SOC_WM8524 is not set +# CONFIG_SND_SOC_WM8580 is not set +# CONFIG_SND_SOC_WM8711 is not set +# CONFIG_SND_SOC_WM8728 is not set +# CONFIG_SND_SOC_WM8731 is not set +# CONFIG_SND_SOC_WM8737 is not set +# CONFIG_SND_SOC_WM8741 is not set +# CONFIG_SND_SOC_WM8750 is not set +CONFIG_SND_SOC_WM8753=m +# CONFIG_SND_SOC_WM8770 is not set +# CONFIG_SND_SOC_WM8776 is not set +# CONFIG_SND_SOC_WM8782 is not set +# CONFIG_SND_SOC_WM8804_I2C is not set +# CONFIG_SND_SOC_WM8804_SPI is not set +CONFIG_SND_SOC_WM8903=m +CONFIG_SND_SOC_WM8904=m +# CONFIG_SND_SOC_WM8960 is not set +# CONFIG_SND_SOC_WM8962 is not set +# CONFIG_SND_SOC_WM8974 is not set +# CONFIG_SND_SOC_WM8978 is not set +# CONFIG_SND_SOC_WM8985 is not set +CONFIG_SND_SOC_WM8994=m +# CONFIG_SND_SOC_ZL38060 is not set +# CONFIG_SND_SOC_MAX9759 is not set +# CONFIG_SND_SOC_MT6351 is not set +# CONFIG_SND_SOC_MT6358 is not set +# CONFIG_SND_SOC_MT6660 is not set +# CONFIG_SND_SOC_NAU8315 is not set +# CONFIG_SND_SOC_NAU8540 is not set +# CONFIG_SND_SOC_NAU8810 is not set +# CONFIG_SND_SOC_NAU8821 is not set +# CONFIG_SND_SOC_NAU8822 is not set +# CONFIG_SND_SOC_NAU8824 is not set +# CONFIG_SND_SOC_TPA6130A2 is not set +# CONFIG_SND_SOC_LPASS_WSA_MACRO is not set +# CONFIG_SND_SOC_LPASS_VA_MACRO is not set +# CONFIG_SND_SOC_LPASS_RX_MACRO is not set +# CONFIG_SND_SOC_LPASS_TX_MACRO is not set +# end of CODEC drivers + +CONFIG_SND_SIMPLE_CARD_UTILS=m +CONFIG_SND_SIMPLE_CARD=m +CONFIG_SND_AUDIO_GRAPH_CARD=m +CONFIG_SND_AUDIO_GRAPH_CARD2=m +CONFIG_SND_AUDIO_GRAPH_CARD2_CUSTOM_SAMPLE=m +# CONFIG_SND_TEST_COMPONENT is not set +CONFIG_SND_SYNTH_EMUX=m +# CONFIG_SND_XEN_FRONTEND is not set +CONFIG_SND_VIRTIO=m +CONFIG_AC97_BUS=m + +# +# HID support +# +CONFIG_HID=m +CONFIG_HID_BATTERY_STRENGTH=y +CONFIG_HIDRAW=y +CONFIG_UHID=m +CONFIG_HID_GENERIC=m + +# +# Special HID drivers +# +CONFIG_HID_A4TECH=m +# CONFIG_HID_ACCUTOUCH is not set +CONFIG_HID_ACRUX=m +CONFIG_HID_ACRUX_FF=y +CONFIG_HID_APPLE=m +# CONFIG_HID_APPLEIR is not set +CONFIG_HID_ASUS=m +CONFIG_HID_AUREAL=m +CONFIG_HID_BELKIN=m +CONFIG_HID_BETOP_FF=m +# CONFIG_HID_BIGBEN_FF is not set +CONFIG_HID_CHERRY=m +CONFIG_HID_CHICONY=m +CONFIG_HID_CORSAIR=m +CONFIG_HID_COUGAR=m +CONFIG_HID_MACALLY=m +CONFIG_HID_PRODIKEYS=m +CONFIG_HID_CMEDIA=m +CONFIG_HID_CP2112=m +CONFIG_HID_CREATIVE_SB0540=m +CONFIG_HID_CYPRESS=m +CONFIG_HID_DRAGONRISE=m +CONFIG_DRAGONRISE_FF=y +CONFIG_HID_EMS_FF=m +# CONFIG_HID_ELAN is not set +CONFIG_HID_ELECOM=m +CONFIG_HID_ELO=m +CONFIG_HID_EZKEY=m +CONFIG_HID_FT260=m +CONFIG_HID_GEMBIRD=m +# CONFIG_HID_GFRM is not set +CONFIG_HID_GLORIOUS=m +CONFIG_HID_HOLTEK=m +CONFIG_HOLTEK_FF=y +# CONFIG_HID_GOOGLE_HAMMER is not set +CONFIG_HID_VIVALDI=m +# CONFIG_HID_GT683R is not set +CONFIG_HID_KEYTOUCH=m +CONFIG_HID_KYE=m +CONFIG_HID_UCLOGIC=m +CONFIG_HID_WALTOP=m +# CONFIG_HID_VIEWSONIC is not set +CONFIG_HID_XIAOMI=m +CONFIG_HID_GYRATION=m +CONFIG_HID_ICADE=m +# CONFIG_HID_ITE is not set +# CONFIG_HID_JABRA is not set +CONFIG_HID_TWINHAN=m +CONFIG_HID_KENSINGTON=m +CONFIG_HID_LCPOWER=m +CONFIG_HID_LED=m +CONFIG_HID_LENOVO=m +CONFIG_HID_LOGITECH=m +CONFIG_HID_LOGITECH_DJ=m +CONFIG_HID_LOGITECH_HIDPP=m +CONFIG_LOGITECH_FF=y +CONFIG_LOGIRUMBLEPAD2_FF=y +CONFIG_LOGIG940_FF=y +CONFIG_LOGIWHEELS_FF=y +CONFIG_HID_MAGICMOUSE=m +CONFIG_HID_MALTRON=m +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_REDRAGON is not set +CONFIG_HID_MICROSOFT=m +CONFIG_HID_MONTEREY=m +CONFIG_HID_MULTITOUCH=m +CONFIG_HID_NINTENDO=m +CONFIG_NINTENDO_FF=y +# CONFIG_HID_NTI is not set +CONFIG_HID_NTRIG=m +CONFIG_HID_ORTEK=m +CONFIG_HID_PANTHERLORD=m +CONFIG_PANTHERLORD_FF=y +CONFIG_HID_PENMOUNT=m +CONFIG_HID_PETALYNX=m +CONFIG_HID_PICOLCD=m +CONFIG_HID_PICOLCD_FB=y +CONFIG_HID_PICOLCD_BACKLIGHT=y +# CONFIG_HID_PICOLCD_LCD is not set +CONFIG_HID_PICOLCD_LEDS=y +CONFIG_HID_PICOLCD_CIR=y +CONFIG_HID_PLANTRONICS=m +CONFIG_HID_PLAYSTATION=m +CONFIG_PLAYSTATION_FF=y +CONFIG_HID_PRIMAX=m +# CONFIG_HID_RETRODE is not set +CONFIG_HID_ROCCAT=m +CONFIG_HID_SAITEK=m +CONFIG_HID_SAMSUNG=m +CONFIG_HID_SEMITEK=m +CONFIG_HID_SONY=m +CONFIG_SONY_FF=y +CONFIG_HID_SPEEDLINK=m +# CONFIG_HID_STEAM is not set +CONFIG_HID_STEELSERIES=m +CONFIG_HID_SUNPLUS=m +CONFIG_HID_RMI=m +CONFIG_HID_GREENASIA=m +CONFIG_GREENASIA_FF=y +CONFIG_HID_HYPERV_MOUSE=m +CONFIG_HID_SMARTJOYPLUS=m +CONFIG_SMARTJOYPLUS_FF=y +CONFIG_HID_TIVO=m +CONFIG_HID_TOPSEED=m +CONFIG_HID_THINGM=m +CONFIG_HID_THRUSTMASTER=m +CONFIG_THRUSTMASTER_FF=y +# CONFIG_HID_UDRAW_PS3 is not set +CONFIG_HID_U2FZERO=m +CONFIG_HID_WACOM=m +CONFIG_HID_WIIMOTE=m +CONFIG_HID_XINMO=m +CONFIG_HID_ZEROPLUS=m +CONFIG_ZEROPLUS_FF=y +CONFIG_HID_ZYDACRON=m +CONFIG_HID_SENSOR_HUB=m +CONFIG_HID_SENSOR_CUSTOM_SENSOR=m +CONFIG_HID_ALPS=m +CONFIG_HID_MCP2221=m +# end of Special HID drivers + +# +# USB HID support +# +CONFIG_USB_HID=m +CONFIG_HID_PID=y +CONFIG_USB_HIDDEV=y + +# +# USB HID Boot Protocol drivers +# +# CONFIG_USB_KBD is not set +# CONFIG_USB_MOUSE is not set +# end of USB HID Boot Protocol drivers +# end of USB HID support + +# +# I2C HID support +# +CONFIG_I2C_HID_ACPI=m +CONFIG_I2C_HID_OF=m +CONFIG_I2C_HID_OF_GOODIX=m +# end of I2C HID support + +CONFIG_I2C_HID_CORE=m + +# +# Surface System Aggregator Module HID support +# +CONFIG_SURFACE_KBD=m +# end of Surface System Aggregator Module HID support + +CONFIG_SURFACE_HID_CORE=m +# end of HID support + +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=m +CONFIG_USB_LED_TRIG=y +CONFIG_USB_ULPI_BUS=m +CONFIG_USB_CONN_GPIO=m +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=m +CONFIG_USB_PCI=y +CONFIG_USB_ANNOUNCE_NEW_DEVICES=y + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_FEW_INIT_RETRIES is not set +CONFIG_USB_DYNAMIC_MINORS=y +# CONFIG_USB_OTG is not set +# CONFIG_USB_OTG_PRODUCTLIST is not set +# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set +CONFIG_USB_LEDS_TRIGGER_USBPORT=m +CONFIG_USB_AUTOSUSPEND_DELAY=2 +CONFIG_USB_MON=m + +# +# USB Host Controller Drivers +# +# CONFIG_USB_C67X00_HCD is not set +CONFIG_USB_XHCI_HCD=m +# CONFIG_USB_XHCI_DBGCAP is not set +CONFIG_USB_XHCI_PCI=m +# CONFIG_USB_XHCI_PCI_RENESAS is not set +CONFIG_USB_XHCI_PLATFORM=m +CONFIG_USB_XHCI_HISTB=m +# CONFIG_USB_XHCI_MVEBU is not set +CONFIG_USB_XHCI_TEGRA=m +CONFIG_USB_EHCI_HCD=m +CONFIG_USB_EHCI_ROOT_HUB_TT=y +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHCI_PCI=m +CONFIG_USB_EHCI_FSL=m +CONFIG_USB_EHCI_HCD_ORION=m +CONFIG_USB_EHCI_TEGRA=m +CONFIG_USB_EHCI_HCD_PLATFORM=m +# CONFIG_USB_OXU210HP_HCD is not set +# CONFIG_USB_ISP116X_HCD is not set +# CONFIG_USB_FOTG210_HCD is not set +# CONFIG_USB_MAX3421_HCD is not set +CONFIG_USB_OHCI_HCD=m +CONFIG_USB_OHCI_HCD_PCI=m +# CONFIG_USB_OHCI_HCD_SSB is not set +CONFIG_USB_OHCI_HCD_PLATFORM=m +# CONFIG_USB_UHCI_HCD is not set +CONFIG_USB_U132_HCD=m +# CONFIG_USB_SL811_HCD is not set +# CONFIG_USB_R8A66597_HCD is not set +# CONFIG_USB_HCD_BCMA is not set +# CONFIG_USB_HCD_SSB is not set +# CONFIG_USB_HCD_TEST_MODE is not set + +# +# USB Device Class drivers +# +CONFIG_USB_ACM=m +CONFIG_USB_PRINTER=m +CONFIG_USB_WDM=m +CONFIG_USB_TMC=m + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# +CONFIG_USB_STORAGE=m +# CONFIG_USB_STORAGE_DEBUG is not set +CONFIG_USB_STORAGE_REALTEK=m +CONFIG_REALTEK_AUTOPM=y +CONFIG_USB_STORAGE_DATAFAB=m +CONFIG_USB_STORAGE_FREECOM=m +CONFIG_USB_STORAGE_ISD200=m +CONFIG_USB_STORAGE_USBAT=m +CONFIG_USB_STORAGE_SDDR09=m +CONFIG_USB_STORAGE_SDDR55=m +CONFIG_USB_STORAGE_JUMPSHOT=m +CONFIG_USB_STORAGE_ALAUDA=m +CONFIG_USB_STORAGE_ONETOUCH=m +CONFIG_USB_STORAGE_KARMA=m +CONFIG_USB_STORAGE_CYPRESS_ATACB=m +CONFIG_USB_STORAGE_ENE_UB6250=m +CONFIG_USB_UAS=m + +# +# USB Imaging devices +# +CONFIG_USB_MDC800=m +CONFIG_USB_MICROTEK=m +CONFIG_USBIP_CORE=m +CONFIG_USBIP_VHCI_HCD=m +CONFIG_USBIP_VHCI_HC_PORTS=15 +CONFIG_USBIP_VHCI_NR_HCS=8 +CONFIG_USBIP_HOST=m +CONFIG_USBIP_VUDC=m +# CONFIG_USBIP_DEBUG is not set +CONFIG_USB_CDNS_SUPPORT=m +CONFIG_USB_CDNS_HOST=y +CONFIG_USB_CDNS3=m +# CONFIG_USB_CDNS3_GADGET is not set +# CONFIG_USB_CDNS3_HOST is not set +CONFIG_USB_CDNS3_PCI_WRAP=m +CONFIG_USB_CDNS3_IMX=m +CONFIG_USB_CDNSP_PCI=m +CONFIG_USB_CDNSP_GADGET=y +CONFIG_USB_CDNSP_HOST=y +CONFIG_USB_MUSB_HDRC=m +# CONFIG_USB_MUSB_HOST is not set +# CONFIG_USB_MUSB_GADGET is not set +CONFIG_USB_MUSB_DUAL_ROLE=y + +# +# Platform Glue Layer +# +CONFIG_USB_MUSB_SUNXI=m + +# +# MUSB DMA mode +# +# CONFIG_MUSB_PIO_ONLY is not set +CONFIG_USB_DWC3=m +# CONFIG_USB_DWC3_ULPI is not set +# CONFIG_USB_DWC3_HOST is not set +# CONFIG_USB_DWC3_GADGET is not set +CONFIG_USB_DWC3_DUAL_ROLE=y + +# +# Platform Glue Driver Support +# +CONFIG_USB_DWC3_PCI=m +CONFIG_USB_DWC3_HAPS=m +CONFIG_USB_DWC3_MESON_G12A=m +CONFIG_USB_DWC3_OF_SIMPLE=m +CONFIG_USB_DWC3_QCOM=m +CONFIG_USB_DWC3_IMX8MP=m +CONFIG_USB_DWC2=m +# CONFIG_USB_DWC2_HOST is not set + +# +# Gadget/Dual-role mode requires USB Gadget support to be enabled +# +# CONFIG_USB_DWC2_PERIPHERAL is not set +CONFIG_USB_DWC2_DUAL_ROLE=y +# CONFIG_USB_DWC2_PCI is not set +# CONFIG_USB_DWC2_DEBUG is not set +# CONFIG_USB_DWC2_TRACK_MISSED_SOFS is not set +CONFIG_USB_CHIPIDEA=m +CONFIG_USB_CHIPIDEA_UDC=y +CONFIG_USB_CHIPIDEA_HOST=y +CONFIG_USB_CHIPIDEA_PCI=m +CONFIG_USB_CHIPIDEA_MSM=m +CONFIG_USB_CHIPIDEA_IMX=m +CONFIG_USB_CHIPIDEA_GENERIC=m +CONFIG_USB_CHIPIDEA_TEGRA=m +CONFIG_USB_ISP1760=m +CONFIG_USB_ISP1760_HCD=y +CONFIG_USB_ISP1761_UDC=y +# CONFIG_USB_ISP1760_HOST_ROLE is not set +# CONFIG_USB_ISP1760_GADGET_ROLE is not set +CONFIG_USB_ISP1760_DUAL_ROLE=y + +# +# USB port drivers +# +# CONFIG_USB_USS720 is not set +CONFIG_USB_SERIAL=m +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_SIMPLE=m +CONFIG_USB_SERIAL_AIRCABLE=m +CONFIG_USB_SERIAL_ARK3116=m +CONFIG_USB_SERIAL_BELKIN=m +CONFIG_USB_SERIAL_CH341=m +CONFIG_USB_SERIAL_WHITEHEAT=m +CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m +CONFIG_USB_SERIAL_CP210X=m +CONFIG_USB_SERIAL_CYPRESS_M8=m +CONFIG_USB_SERIAL_EMPEG=m +CONFIG_USB_SERIAL_FTDI_SIO=m +CONFIG_USB_SERIAL_VISOR=m +CONFIG_USB_SERIAL_IPAQ=m +CONFIG_USB_SERIAL_IR=m +CONFIG_USB_SERIAL_EDGEPORT=m +CONFIG_USB_SERIAL_EDGEPORT_TI=m +CONFIG_USB_SERIAL_F81232=m +# CONFIG_USB_SERIAL_F8153X is not set +CONFIG_USB_SERIAL_GARMIN=m +CONFIG_USB_SERIAL_IPW=m +CONFIG_USB_SERIAL_IUU=m +CONFIG_USB_SERIAL_KEYSPAN_PDA=m +CONFIG_USB_SERIAL_KEYSPAN=m +CONFIG_USB_SERIAL_KLSI=m +CONFIG_USB_SERIAL_KOBIL_SCT=m +CONFIG_USB_SERIAL_MCT_U232=m +CONFIG_USB_SERIAL_METRO=m +CONFIG_USB_SERIAL_MOS7720=m +CONFIG_USB_SERIAL_MOS7715_PARPORT=y +CONFIG_USB_SERIAL_MOS7840=m +CONFIG_USB_SERIAL_MXUPORT=m +CONFIG_USB_SERIAL_NAVMAN=m +CONFIG_USB_SERIAL_PL2303=m +CONFIG_USB_SERIAL_OTI6858=m +CONFIG_USB_SERIAL_QCAUX=m +CONFIG_USB_SERIAL_QUALCOMM=m +CONFIG_USB_SERIAL_SPCP8X5=m +CONFIG_USB_SERIAL_SAFE=m +# CONFIG_USB_SERIAL_SAFE_PADDED is not set +CONFIG_USB_SERIAL_SIERRAWIRELESS=m +CONFIG_USB_SERIAL_SYMBOL=m +CONFIG_USB_SERIAL_TI=m +CONFIG_USB_SERIAL_CYBERJACK=m +CONFIG_USB_SERIAL_WWAN=m +CONFIG_USB_SERIAL_OPTION=m +CONFIG_USB_SERIAL_OMNINET=m +CONFIG_USB_SERIAL_OPTICON=m +CONFIG_USB_SERIAL_XSENS_MT=m +CONFIG_USB_SERIAL_WISHBONE=m +CONFIG_USB_SERIAL_SSU100=m +CONFIG_USB_SERIAL_QT2=m +# CONFIG_USB_SERIAL_UPD78F0730 is not set +CONFIG_USB_SERIAL_XR=m +CONFIG_USB_SERIAL_DEBUG=m + +# +# USB Miscellaneous drivers +# +CONFIG_USB_EMI62=m +CONFIG_USB_EMI26=m +CONFIG_USB_ADUTUX=m +CONFIG_USB_SEVSEG=m +CONFIG_USB_LEGOTOWER=m +CONFIG_USB_LCD=m +CONFIG_USB_CYPRESS_CY7C63=m +CONFIG_USB_CYTHERM=m +CONFIG_USB_IDMOUSE=m +CONFIG_USB_FTDI_ELAN=m +CONFIG_USB_APPLEDISPLAY=m +CONFIG_APPLE_MFI_FASTCHARGE=m +CONFIG_USB_SISUSBVGA=m +CONFIG_USB_LD=m +CONFIG_USB_TRANCEVIBRATOR=m +CONFIG_USB_IOWARRIOR=m +CONFIG_USB_TEST=m +CONFIG_USB_EHSET_TEST_FIXTURE=m +CONFIG_USB_ISIGHTFW=m +CONFIG_USB_YUREX=m +CONFIG_USB_EZUSB_FX2=m +# CONFIG_USB_HUB_USB251XB is not set +CONFIG_USB_HSIC_USB3503=m +# CONFIG_USB_HSIC_USB4604 is not set +# CONFIG_USB_LINK_LAYER_TEST is not set +CONFIG_USB_CHAOSKEY=m +# CONFIG_USB_ATM is not set + +# +# USB Physical Layer drivers +# +CONFIG_USB_PHY=y +CONFIG_NOP_USB_XCEIV=m +# CONFIG_USB_GPIO_VBUS is not set +# CONFIG_USB_ISP1301 is not set +CONFIG_USB_MXS_PHY=m +CONFIG_USB_TEGRA_PHY=m +CONFIG_USB_ULPI=y +CONFIG_USB_ULPI_VIEWPORT=y +# end of USB Physical Layer drivers + +CONFIG_USB_GADGET=m +# CONFIG_USB_GADGET_DEBUG is not set +# CONFIG_USB_GADGET_DEBUG_FILES is not set +# CONFIG_USB_GADGET_DEBUG_FS is not set +CONFIG_USB_GADGET_VBUS_DRAW=2 +CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 +# CONFIG_U_SERIAL_CONSOLE is not set + +# +# USB Peripheral Controller +# +# CONFIG_USB_FOTG210_UDC is not set +# CONFIG_USB_GR_UDC is not set +# CONFIG_USB_R8A66597 is not set +# CONFIG_USB_PXA27X is not set +# CONFIG_USB_MV_UDC is not set +# CONFIG_USB_MV_U3D is not set +# CONFIG_USB_SNP_UDC_PLAT is not set +# CONFIG_USB_M66592 is not set +# CONFIG_USB_BDC_UDC is not set +# CONFIG_USB_AMD5536UDC is not set +# CONFIG_USB_NET2272 is not set +CONFIG_USB_NET2280=m +# CONFIG_USB_GOKU is not set +# CONFIG_USB_EG20T is not set +# CONFIG_USB_GADGET_XILINX is not set +CONFIG_USB_MAX3420_UDC=m +CONFIG_USB_TEGRA_XUDC=m +# CONFIG_USB_DUMMY_HCD is not set +# end of USB Peripheral Controller + +CONFIG_USB_LIBCOMPOSITE=m +CONFIG_USB_F_ACM=m +CONFIG_USB_F_SS_LB=m +CONFIG_USB_U_SERIAL=m +CONFIG_USB_U_ETHER=m +CONFIG_USB_U_AUDIO=m +CONFIG_USB_F_SERIAL=m +CONFIG_USB_F_OBEX=m +CONFIG_USB_F_NCM=m +CONFIG_USB_F_ECM=m +CONFIG_USB_F_PHONET=m +CONFIG_USB_F_EEM=m +CONFIG_USB_F_SUBSET=m +CONFIG_USB_F_RNDIS=m +CONFIG_USB_F_MASS_STORAGE=m +CONFIG_USB_F_FS=m +CONFIG_USB_F_UAC1=m +CONFIG_USB_F_UAC2=m +CONFIG_USB_F_UVC=m +CONFIG_USB_F_MIDI=m +CONFIG_USB_F_HID=m +CONFIG_USB_F_PRINTER=m +CONFIG_USB_CONFIGFS=m +CONFIG_USB_CONFIGFS_SERIAL=y +CONFIG_USB_CONFIGFS_ACM=y +CONFIG_USB_CONFIGFS_OBEX=y +CONFIG_USB_CONFIGFS_NCM=y +CONFIG_USB_CONFIGFS_ECM=y +CONFIG_USB_CONFIGFS_ECM_SUBSET=y +CONFIG_USB_CONFIGFS_RNDIS=y +CONFIG_USB_CONFIGFS_EEM=y +CONFIG_USB_CONFIGFS_PHONET=y +CONFIG_USB_CONFIGFS_MASS_STORAGE=y +CONFIG_USB_CONFIGFS_F_LB_SS=y +CONFIG_USB_CONFIGFS_F_FS=y +CONFIG_USB_CONFIGFS_F_UAC1=y +# CONFIG_USB_CONFIGFS_F_UAC1_LEGACY is not set +CONFIG_USB_CONFIGFS_F_UAC2=y +CONFIG_USB_CONFIGFS_F_MIDI=y +CONFIG_USB_CONFIGFS_F_HID=y +CONFIG_USB_CONFIGFS_F_UVC=y +CONFIG_USB_CONFIGFS_F_PRINTER=y +# CONFIG_USB_CONFIGFS_F_TCM is not set + +# +# USB Gadget precomposed configurations +# +# CONFIG_USB_ZERO is not set +# CONFIG_USB_AUDIO is not set +CONFIG_USB_ETH=m +CONFIG_USB_ETH_RNDIS=y +# CONFIG_USB_ETH_EEM is not set +# CONFIG_USB_G_NCM is not set +CONFIG_USB_GADGETFS=m +CONFIG_USB_FUNCTIONFS=m +CONFIG_USB_FUNCTIONFS_ETH=y +CONFIG_USB_FUNCTIONFS_RNDIS=y +CONFIG_USB_FUNCTIONFS_GENERIC=y +# CONFIG_USB_MASS_STORAGE is not set +# CONFIG_USB_GADGET_TARGET is not set +CONFIG_USB_G_SERIAL=m +# CONFIG_USB_MIDI_GADGET is not set +# CONFIG_USB_G_PRINTER is not set +# CONFIG_USB_CDC_COMPOSITE is not set +# CONFIG_USB_G_NOKIA is not set +# CONFIG_USB_G_ACM_MS is not set +# CONFIG_USB_G_MULTI is not set +# CONFIG_USB_G_HID is not set +# CONFIG_USB_G_DBGP is not set +# CONFIG_USB_G_WEBCAM is not set +CONFIG_USB_RAW_GADGET=m +# end of USB Gadget precomposed configurations + +CONFIG_TYPEC=m +CONFIG_TYPEC_TCPM=m +CONFIG_TYPEC_TCPCI=m +CONFIG_TYPEC_RT1711H=m +CONFIG_TYPEC_MT6360=m +CONFIG_TYPEC_TCPCI_MAXIM=m +CONFIG_TYPEC_FUSB302=m +CONFIG_TYPEC_UCSI=m +CONFIG_UCSI_CCG=m +CONFIG_UCSI_ACPI=m +CONFIG_TYPEC_TPS6598X=m +CONFIG_TYPEC_HD3SS3220=m +CONFIG_TYPEC_STUSB160X=m +CONFIG_TYPEC_QCOM_PMIC=m + +# +# USB Type-C Multiplexer/DeMultiplexer Switch support +# +CONFIG_TYPEC_MUX_PI3USB30532=m +# end of USB Type-C Multiplexer/DeMultiplexer Switch support + +# +# USB Type-C Alternate Mode drivers +# +CONFIG_TYPEC_DP_ALTMODE=m +CONFIG_TYPEC_NVIDIA_ALTMODE=m +# end of USB Type-C Alternate Mode drivers + +CONFIG_USB_ROLE_SWITCH=m +CONFIG_MMC=y +CONFIG_PWRSEQ_EMMC=y +# CONFIG_PWRSEQ_SD8787 is not set +CONFIG_PWRSEQ_SIMPLE=y +CONFIG_MMC_BLOCK=y +CONFIG_MMC_BLOCK_MINORS=256 +CONFIG_SDIO_UART=m +# CONFIG_MMC_TEST is not set +CONFIG_MMC_CRYPTO=y + +# +# MMC/SD/SDIO Host Controller Drivers +# +# CONFIG_MMC_DEBUG is not set +CONFIG_MMC_ARMMMCI=m +CONFIG_MMC_QCOM_DML=y +CONFIG_MMC_STM32_SDMMC=y +CONFIG_MMC_SDHCI=m +CONFIG_MMC_SDHCI_IO_ACCESSORS=y +CONFIG_MMC_SDHCI_PCI=m +CONFIG_MMC_RICOH_MMC=y +CONFIG_MMC_SDHCI_ACPI=m +CONFIG_MMC_SDHCI_PLTFM=m +CONFIG_MMC_SDHCI_OF_ARASAN=m +CONFIG_MMC_SDHCI_OF_ASPEED=m +# CONFIG_MMC_SDHCI_OF_AT91 is not set +CONFIG_MMC_SDHCI_OF_ESDHC=m +# CONFIG_MMC_SDHCI_OF_DWCMSHC is not set +# CONFIG_MMC_SDHCI_CADENCE is not set +CONFIG_MMC_SDHCI_ESDHC_IMX=m +CONFIG_MMC_SDHCI_TEGRA=m +# CONFIG_MMC_SDHCI_PXAV3 is not set +CONFIG_MMC_SDHCI_F_SDH30=m +# CONFIG_MMC_SDHCI_MILBEAUT is not set +CONFIG_MMC_SDHCI_IPROC=m +CONFIG_MMC_MESON_GX=m +# CONFIG_MMC_MESON_MX_SDIO is not set +CONFIG_MMC_ALCOR=m +CONFIG_MMC_SDHCI_MSM=m +CONFIG_MMC_MXC=m +CONFIG_MMC_TIFM_SD=m +CONFIG_MMC_SPI=m +CONFIG_MMC_CB710=m +CONFIG_MMC_VIA_SDMMC=m +CONFIG_MMC_DW=m +CONFIG_MMC_DW_PLTFM=m +# CONFIG_MMC_DW_BLUEFIELD is not set +# CONFIG_MMC_DW_EXYNOS is not set +# CONFIG_MMC_DW_HI3798CV200 is not set +CONFIG_MMC_DW_K3=m +# CONFIG_MMC_DW_PCI is not set +CONFIG_MMC_DW_ROCKCHIP=m +CONFIG_MMC_VUB300=m +CONFIG_MMC_USHC=m +# CONFIG_MMC_USDHI6ROL0 is not set +CONFIG_MMC_REALTEK_PCI=m +CONFIG_MMC_REALTEK_USB=m +CONFIG_MMC_SUNXI=m +CONFIG_MMC_CQHCI=m +CONFIG_MMC_HSQ=m +CONFIG_MMC_TOSHIBA_PCI=m +CONFIG_MMC_BCM2835=m +# CONFIG_MMC_MTK is not set +CONFIG_MMC_SDHCI_XENON=m +# CONFIG_MMC_SDHCI_OMAP is not set +CONFIG_MMC_SDHCI_AM654=m +CONFIG_MEMSTICK=m +# CONFIG_MEMSTICK_DEBUG is not set + +# +# MemoryStick drivers +# +# CONFIG_MEMSTICK_UNSAFE_RESUME is not set +CONFIG_MSPRO_BLOCK=m +# CONFIG_MS_BLOCK is not set + +# +# MemoryStick Host Controller Drivers +# +CONFIG_MEMSTICK_TIFM_MS=m +CONFIG_MEMSTICK_JMICRON_38X=m +CONFIG_MEMSTICK_R592=m +CONFIG_MEMSTICK_REALTEK_PCI=m +CONFIG_MEMSTICK_REALTEK_USB=m +CONFIG_NEW_LEDS=y +CONFIG_LEDS_CLASS=y +# CONFIG_LEDS_CLASS_FLASH is not set +CONFIG_LEDS_CLASS_MULTICOLOR=m +CONFIG_LEDS_BRIGHTNESS_HW_CHANGED=y + +# +# LED drivers +# +# CONFIG_LEDS_AN30259A is not set +# CONFIG_LEDS_AW2013 is not set +# CONFIG_LEDS_BCM6328 is not set +# CONFIG_LEDS_BCM6358 is not set +# CONFIG_LEDS_CR0014114 is not set +# CONFIG_LEDS_EL15203000 is not set +# CONFIG_LEDS_LM3530 is not set +# CONFIG_LEDS_LM3532 is not set +# CONFIG_LEDS_LM3642 is not set +# CONFIG_LEDS_LM3692X is not set +# CONFIG_LEDS_PCA9532 is not set +CONFIG_LEDS_GPIO=m +CONFIG_LEDS_LP3944=m +# CONFIG_LEDS_LP3952 is not set +# CONFIG_LEDS_LP50XX is not set +CONFIG_LEDS_LP55XX_COMMON=m +# CONFIG_LEDS_LP5521 is not set +# CONFIG_LEDS_LP5523 is not set +# CONFIG_LEDS_LP5562 is not set +# CONFIG_LEDS_LP8501 is not set +# CONFIG_LEDS_LP8860 is not set +CONFIG_LEDS_PCA955X=m +# CONFIG_LEDS_PCA955X_GPIO is not set +# CONFIG_LEDS_PCA963X is not set +CONFIG_LEDS_DAC124S085=m +CONFIG_LEDS_PWM=m +CONFIG_LEDS_REGULATOR=m +CONFIG_LEDS_BD2802=m +CONFIG_LEDS_LT3593=m +# CONFIG_LEDS_TCA6507 is not set +# CONFIG_LEDS_TLC591XX is not set +# CONFIG_LEDS_LM355x is not set +# CONFIG_LEDS_IS31FL319X is not set +# CONFIG_LEDS_IS31FL32XX is not set + +# +# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) +# +# CONFIG_LEDS_BLINKM is not set +# CONFIG_LEDS_SYSCON is not set +# CONFIG_LEDS_MLXREG is not set +# CONFIG_LEDS_USER is not set +CONFIG_LEDS_SPI_BYTE=m +CONFIG_LEDS_TI_LMU_COMMON=m +CONFIG_LEDS_LM3697=m + +# +# Flash and Torch LED drivers +# + +# +# LED Triggers +# +CONFIG_LEDS_TRIGGERS=y +CONFIG_LEDS_TRIGGER_TIMER=m +CONFIG_LEDS_TRIGGER_ONESHOT=m +CONFIG_LEDS_TRIGGER_DISK=y +CONFIG_LEDS_TRIGGER_MTD=y +CONFIG_LEDS_TRIGGER_HEARTBEAT=m +CONFIG_LEDS_TRIGGER_BACKLIGHT=m +CONFIG_LEDS_TRIGGER_CPU=y +# CONFIG_LEDS_TRIGGER_ACTIVITY is not set +CONFIG_LEDS_TRIGGER_GPIO=m +CONFIG_LEDS_TRIGGER_DEFAULT_ON=m + +# +# iptables trigger is under Netfilter config (LED target) +# +CONFIG_LEDS_TRIGGER_TRANSIENT=m +CONFIG_LEDS_TRIGGER_CAMERA=m +CONFIG_LEDS_TRIGGER_PANIC=y +# CONFIG_LEDS_TRIGGER_NETDEV is not set +# CONFIG_LEDS_TRIGGER_PATTERN is not set +CONFIG_LEDS_TRIGGER_AUDIO=m +CONFIG_LEDS_TRIGGER_TTY=m +CONFIG_ACCESSIBILITY=y +CONFIG_A11Y_BRAILLE_CONSOLE=y + +# +# Speakup console speech +# +CONFIG_SPEAKUP=m +CONFIG_SPEAKUP_SYNTH_ACNTSA=m +CONFIG_SPEAKUP_SYNTH_APOLLO=m +CONFIG_SPEAKUP_SYNTH_AUDPTR=m +CONFIG_SPEAKUP_SYNTH_BNS=m +CONFIG_SPEAKUP_SYNTH_DECTLK=m +CONFIG_SPEAKUP_SYNTH_DECEXT=m +CONFIG_SPEAKUP_SYNTH_LTLK=m +CONFIG_SPEAKUP_SYNTH_SOFT=m +CONFIG_SPEAKUP_SYNTH_SPKOUT=m +CONFIG_SPEAKUP_SYNTH_TXPRT=m +CONFIG_SPEAKUP_SYNTH_DUMMY=m +# end of Speakup console speech + +CONFIG_INFINIBAND=m +CONFIG_INFINIBAND_USER_MAD=m +CONFIG_INFINIBAND_USER_ACCESS=m +CONFIG_INFINIBAND_USER_MEM=y +CONFIG_INFINIBAND_ON_DEMAND_PAGING=y +CONFIG_INFINIBAND_ADDR_TRANS=y +CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS=y +CONFIG_INFINIBAND_VIRT_DMA=y +CONFIG_INFINIBAND_MTHCA=m +CONFIG_INFINIBAND_MTHCA_DEBUG=y +CONFIG_INFINIBAND_CXGB4=m +CONFIG_INFINIBAND_EFA=m +CONFIG_MLX4_INFINIBAND=m +CONFIG_MLX5_INFINIBAND=m +CONFIG_INFINIBAND_OCRDMA=m +# CONFIG_INFINIBAND_HNS is not set +# CONFIG_INFINIBAND_BNXT_RE is not set +CONFIG_INFINIBAND_QEDR=m +CONFIG_RDMA_RXE=m +CONFIG_RDMA_SIW=m +CONFIG_INFINIBAND_IPOIB=m +CONFIG_INFINIBAND_IPOIB_CM=y +CONFIG_INFINIBAND_IPOIB_DEBUG=y +# CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set +CONFIG_INFINIBAND_SRP=m +CONFIG_INFINIBAND_SRPT=m +CONFIG_INFINIBAND_ISER=m +CONFIG_INFINIBAND_ISERT=m +CONFIG_INFINIBAND_RTRS=m +CONFIG_INFINIBAND_RTRS_CLIENT=m +CONFIG_INFINIBAND_RTRS_SERVER=m +CONFIG_EDAC_SUPPORT=y +CONFIG_EDAC=y +CONFIG_EDAC_LEGACY_SYSFS=y +# CONFIG_EDAC_DEBUG is not set +CONFIG_EDAC_THUNDERX=m +CONFIG_EDAC_ALTERA=y +CONFIG_EDAC_ALTERA_SDRAM=y +CONFIG_EDAC_ALTERA_OCRAM=y +CONFIG_EDAC_ALTERA_ETHERNET=y +CONFIG_EDAC_ALTERA_NAND=y +CONFIG_EDAC_ALTERA_USB=y +CONFIG_EDAC_ALTERA_SDMMC=y +CONFIG_EDAC_XGENE=m +# CONFIG_EDAC_QCOM is not set +CONFIG_EDAC_DMC520=m +CONFIG_RTC_LIB=y +CONFIG_RTC_CLASS=y +CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_SYSTOHC_DEVICE="rtc0" +# CONFIG_RTC_DEBUG is not set +CONFIG_RTC_NVMEM=y + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +# CONFIG_RTC_DRV_TEST is not set + +# +# I2C RTC drivers +# +# CONFIG_RTC_DRV_ABB5ZES3 is not set +# CONFIG_RTC_DRV_ABEOZ9 is not set +# CONFIG_RTC_DRV_ABX80X is not set +CONFIG_RTC_DRV_DS1307=y +# CONFIG_RTC_DRV_DS1307_CENTURY is not set +# CONFIG_RTC_DRV_DS1374 is not set +# CONFIG_RTC_DRV_DS1672 is not set +# CONFIG_RTC_DRV_HYM8563 is not set +# CONFIG_RTC_DRV_MAX6900 is not set +CONFIG_RTC_DRV_MAX77686=y +CONFIG_RTC_DRV_RK808=m +# CONFIG_RTC_DRV_RS5C372 is not set +# CONFIG_RTC_DRV_ISL1208 is not set +# CONFIG_RTC_DRV_ISL12022 is not set +# CONFIG_RTC_DRV_ISL12026 is not set +# CONFIG_RTC_DRV_X1205 is not set +# CONFIG_RTC_DRV_PCF8523 is not set +# CONFIG_RTC_DRV_PCF85063 is not set +# CONFIG_RTC_DRV_PCF85363 is not set +# CONFIG_RTC_DRV_PCF8563 is not set +# CONFIG_RTC_DRV_PCF8583 is not set +# CONFIG_RTC_DRV_M41T80 is not set +CONFIG_RTC_DRV_BD70528=m +# CONFIG_RTC_DRV_BQ32K is not set +# CONFIG_RTC_DRV_S35390A is not set +# CONFIG_RTC_DRV_FM3130 is not set +# CONFIG_RTC_DRV_RX8010 is not set +# CONFIG_RTC_DRV_RX8581 is not set +# CONFIG_RTC_DRV_RX8025 is not set +# CONFIG_RTC_DRV_EM3027 is not set +# CONFIG_RTC_DRV_RV3028 is not set +# CONFIG_RTC_DRV_RV3032 is not set +# CONFIG_RTC_DRV_RV8803 is not set +# CONFIG_RTC_DRV_SD3078 is not set + +# +# SPI RTC drivers +# +# CONFIG_RTC_DRV_M41T93 is not set +# CONFIG_RTC_DRV_M41T94 is not set +# CONFIG_RTC_DRV_DS1302 is not set +# CONFIG_RTC_DRV_DS1305 is not set +# CONFIG_RTC_DRV_DS1343 is not set +# CONFIG_RTC_DRV_DS1347 is not set +# CONFIG_RTC_DRV_DS1390 is not set +# CONFIG_RTC_DRV_MAX6916 is not set +# CONFIG_RTC_DRV_R9701 is not set +# CONFIG_RTC_DRV_RX4581 is not set +# CONFIG_RTC_DRV_RS5C348 is not set +# CONFIG_RTC_DRV_MAX6902 is not set +# CONFIG_RTC_DRV_PCF2123 is not set +# CONFIG_RTC_DRV_MCP795 is not set +CONFIG_RTC_I2C_AND_SPI=y + +# +# SPI and I2C RTC drivers +# +# CONFIG_RTC_DRV_DS3232 is not set +# CONFIG_RTC_DRV_PCF2127 is not set +# CONFIG_RTC_DRV_RV3029C2 is not set +# CONFIG_RTC_DRV_RX6110 is not set + +# +# Platform RTC drivers +# +# CONFIG_RTC_DRV_DS1286 is not set +# CONFIG_RTC_DRV_DS1511 is not set +# CONFIG_RTC_DRV_DS1553 is not set +# CONFIG_RTC_DRV_DS1685_FAMILY is not set +# CONFIG_RTC_DRV_DS1742 is not set +# CONFIG_RTC_DRV_DS2404 is not set +CONFIG_RTC_DRV_EFI=y +# CONFIG_RTC_DRV_STK17TA8 is not set +# CONFIG_RTC_DRV_M48T86 is not set +# CONFIG_RTC_DRV_M48T35 is not set +# CONFIG_RTC_DRV_M48T59 is not set +# CONFIG_RTC_DRV_MSM6242 is not set +# CONFIG_RTC_DRV_BQ4802 is not set +# CONFIG_RTC_DRV_RP5C01 is not set +# CONFIG_RTC_DRV_V3020 is not set +# CONFIG_RTC_DRV_ZYNQMP is not set +# CONFIG_RTC_DRV_CROS_EC is not set +# CONFIG_RTC_DRV_NTXEC is not set + +# +# on-CPU RTC drivers +# +CONFIG_RTC_DRV_IMXDI=m +CONFIG_RTC_DRV_MESON_VRTC=m +# CONFIG_RTC_DRV_PL030 is not set +CONFIG_RTC_DRV_PL031=y +CONFIG_RTC_DRV_SUN6I=y +CONFIG_RTC_DRV_MV=m +CONFIG_RTC_DRV_ARMADA38X=m +CONFIG_RTC_DRV_CADENCE=m +# CONFIG_RTC_DRV_FTRTC010 is not set +CONFIG_RTC_DRV_PM8XXX=m +CONFIG_RTC_DRV_TEGRA=y +CONFIG_RTC_DRV_MXC=m +CONFIG_RTC_DRV_MXC_V2=m +# CONFIG_RTC_DRV_SNVS is not set +CONFIG_RTC_DRV_IMX_SC=m +CONFIG_RTC_DRV_XGENE=y +# CONFIG_RTC_DRV_R7301 is not set + +# +# HID Sensor RTC drivers +# +# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set +# CONFIG_RTC_DRV_GOLDFISH is not set +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set + +# +# DMA Devices +# +CONFIG_ASYNC_TX_ENABLE_CHANNEL_SWITCH=y +CONFIG_DMA_ENGINE=y +CONFIG_DMA_VIRTUAL_CHANNELS=y +CONFIG_DMA_ACPI=y +CONFIG_DMA_OF=y +# CONFIG_ALTERA_MSGDMA is not set +# CONFIG_AMBA_PL08X is not set +# CONFIG_AXI_DMAC is not set +# CONFIG_BCM_SBA_RAID is not set +CONFIG_DMA_BCM2835=y +CONFIG_DMA_SUN6I=m +# CONFIG_DW_AXI_DMAC is not set +# CONFIG_FSL_EDMA is not set +CONFIG_FSL_QDMA=m +CONFIG_HISI_DMA=m +CONFIG_IMX_DMA=m +CONFIG_IMX_SDMA=m +# CONFIG_INTEL_IDMA64 is not set +CONFIG_K3_DMA=m +CONFIG_MV_XOR=y +CONFIG_MV_XOR_V2=y +# CONFIG_MXS_DMA is not set +CONFIG_MX3_IPU=y +CONFIG_MX3_IPU_IRQS=4 +CONFIG_PL330_DMA=m +CONFIG_PLX_DMA=m +CONFIG_TEGRA20_APB_DMA=y +CONFIG_TEGRA210_ADMA=y +CONFIG_XGENE_DMA=m +# CONFIG_XILINX_DMA is not set +# CONFIG_XILINX_ZYNQMP_DMA is not set +CONFIG_XILINX_ZYNQMP_DPDMA=m +CONFIG_QCOM_BAM_DMA=m +CONFIG_QCOM_GPI_DMA=m +CONFIG_QCOM_HIDMA_MGMT=m +CONFIG_QCOM_HIDMA=m +# CONFIG_DW_DMAC is not set +# CONFIG_DW_DMAC_PCI is not set +CONFIG_DW_EDMA=m +CONFIG_DW_EDMA_PCIE=m +CONFIG_SF_PDMA=m + +# +# DMA Clients +# +CONFIG_ASYNC_TX_DMA=y +# CONFIG_DMATEST is not set +CONFIG_DMA_ENGINE_RAID=y + +# +# DMABUF options +# +CONFIG_SYNC_FILE=y +# CONFIG_SW_SYNC is not set +# CONFIG_UDMABUF is not set +# CONFIG_DMABUF_MOVE_NOTIFY is not set +# CONFIG_DMABUF_DEBUG is not set +# CONFIG_DMABUF_SELFTESTS is not set +# CONFIG_DMABUF_HEAPS is not set +# CONFIG_DMABUF_SYSFS_STATS is not set +# end of DMABUF options + +# CONFIG_AUXDISPLAY is not set +# CONFIG_PANEL is not set +CONFIG_UIO=m +CONFIG_UIO_CIF=m +# CONFIG_UIO_PDRV_GENIRQ is not set +# CONFIG_UIO_DMEM_GENIRQ is not set +CONFIG_UIO_AEC=m +CONFIG_UIO_SERCOS3=m +CONFIG_UIO_PCI_GENERIC=m +CONFIG_UIO_NETX=m +# CONFIG_UIO_PRUSS is not set +CONFIG_UIO_MF624=m +CONFIG_UIO_HV_GENERIC=m +CONFIG_VFIO=m +CONFIG_VFIO_IOMMU_TYPE1=m +CONFIG_VFIO_VIRQFD=m +CONFIG_VFIO_NOIOMMU=y +CONFIG_VFIO_PCI_CORE=m +CONFIG_VFIO_PCI_MMAP=y +CONFIG_VFIO_PCI_INTX=y +CONFIG_VFIO_PCI=m +# CONFIG_VFIO_PLATFORM is not set +# CONFIG_VFIO_MDEV is not set +CONFIG_VIRT_DRIVERS=y +CONFIG_NITRO_ENCLAVES=m +CONFIG_VIRTIO=m +CONFIG_VIRTIO_PCI_LIB=m +CONFIG_VIRTIO_PCI_LIB_LEGACY=m +CONFIG_VIRTIO_MENU=y +CONFIG_VIRTIO_PCI=m +CONFIG_VIRTIO_PCI_LEGACY=y +CONFIG_VIRTIO_VDPA=m +CONFIG_VIRTIO_PMEM=m +CONFIG_VIRTIO_BALLOON=m +CONFIG_VIRTIO_INPUT=m +CONFIG_VIRTIO_MMIO=m +# CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES is not set +CONFIG_VIRTIO_DMA_SHARED_BUFFER=m +CONFIG_VDPA=m +# CONFIG_VDPA_SIM is not set +CONFIG_VDPA_USER=m +CONFIG_IFCVF=m +CONFIG_MLX5_VDPA=y +CONFIG_MLX5_VDPA_NET=m +CONFIG_VP_VDPA=m +CONFIG_VHOST_IOTLB=m +CONFIG_VHOST_RING=m +CONFIG_VHOST=m +CONFIG_VHOST_MENU=y +CONFIG_VHOST_NET=m +CONFIG_VHOST_SCSI=m +CONFIG_VHOST_VSOCK=m +CONFIG_VHOST_VDPA=m +# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set + +# +# Microsoft Hyper-V guest support +# +CONFIG_HYPERV=m +CONFIG_HYPERV_UTILS=m +CONFIG_HYPERV_BALLOON=m +# end of Microsoft Hyper-V guest support + +# +# Xen driver support +# +CONFIG_XEN_BALLOON=y +CONFIG_XEN_SCRUB_PAGES_DEFAULT=y +CONFIG_XEN_DEV_EVTCHN=m +CONFIG_XEN_BACKEND=y +CONFIG_XENFS=m +CONFIG_XEN_COMPAT_XENFS=y +CONFIG_XEN_SYS_HYPERVISOR=y +CONFIG_XEN_XENBUS_FRONTEND=y +CONFIG_XEN_GNTDEV=m +CONFIG_XEN_GRANT_DEV_ALLOC=m +# CONFIG_XEN_GRANT_DMA_ALLOC is not set +CONFIG_SWIOTLB_XEN=y +CONFIG_XEN_PCI_STUB=y +CONFIG_XEN_PCIDEV_STUB=m +# CONFIG_XEN_PVCALLS_FRONTEND is not set +# CONFIG_XEN_PVCALLS_BACKEND is not set +CONFIG_XEN_SCSI_BACKEND=m +CONFIG_XEN_PRIVCMD=m +CONFIG_XEN_EFI=y +CONFIG_XEN_AUTO_XLATE=y +CONFIG_XEN_FRONT_PGDIR_SHBUF=m +# end of Xen driver support + +# CONFIG_GREYBUS is not set +# CONFIG_COMEDI is not set +CONFIG_STAGING=y +# CONFIG_PRISM2_USB is not set +# CONFIG_RTL8192U is not set +# CONFIG_RTLLIB is not set +CONFIG_RTL8723BS=m +CONFIG_R8712U=m +CONFIG_R8188EU=m +# CONFIG_RTS5208 is not set +# CONFIG_VT6655 is not set +# CONFIG_VT6656 is not set + +# +# IIO staging drivers +# + +# +# Accelerometers +# +# CONFIG_ADIS16203 is not set +# CONFIG_ADIS16240 is not set +# end of Accelerometers + +# +# Analog to digital converters +# +# CONFIG_AD7816 is not set +# CONFIG_AD7280 is not set +# end of Analog to digital converters + +# +# Analog digital bi-direction converters +# +# CONFIG_ADT7316 is not set +# end of Analog digital bi-direction converters + +# +# Capacitance to digital converters +# +# CONFIG_AD7746 is not set +# end of Capacitance to digital converters + +# +# Direct Digital Synthesis +# +# CONFIG_AD9832 is not set +# CONFIG_AD9834 is not set +# end of Direct Digital Synthesis + +# +# Network Analyzer, Impedance Converters +# +# CONFIG_AD5933 is not set +# end of Network Analyzer, Impedance Converters + +# +# Active energy metering IC +# +# CONFIG_ADE7854 is not set +# end of Active energy metering IC + +# +# Resolver to digital converters +# +# CONFIG_AD2S1210 is not set +# end of Resolver to digital converters +# end of IIO staging drivers + +# CONFIG_FB_SM750 is not set +# CONFIG_MFD_NVEC is not set +# CONFIG_STAGING_MEDIA is not set + +# +# Android +# +# end of Android + +# CONFIG_STAGING_BOARD is not set +# CONFIG_LTE_GDM724X is not set +# CONFIG_FIREWIRE_SERIAL is not set +# CONFIG_GS_FPGABOOT is not set +# CONFIG_UNISYSSPAR is not set +CONFIG_COMMON_CLK_XLNX_CLKWZRD=m +# CONFIG_FB_TFT is not set +# CONFIG_KS7010 is not set +CONFIG_BCM_VIDEOCORE=y +# CONFIG_BCM2835_VCHIQ is not set +# CONFIG_SND_BCM2835 is not set +# CONFIG_VIDEO_BCM2835 is not set +# CONFIG_PI433 is not set +# CONFIG_XIL_AXIS_FIFO is not set +# CONFIG_FIELDBUS_DEV is not set +CONFIG_QLGE=m +CONFIG_WFX=m +# CONFIG_GOLDFISH is not set +CONFIG_CHROME_PLATFORMS=y +CONFIG_CHROMEOS_TBMC=m +CONFIG_CROS_EC=y +CONFIG_CROS_EC_I2C=m +CONFIG_CROS_EC_RPMSG=m +CONFIG_CROS_EC_SPI=m +CONFIG_CROS_EC_PROTO=y +CONFIG_CROS_KBD_LED_BACKLIGHT=m +CONFIG_CROS_EC_CHARDEV=m +CONFIG_CROS_EC_LIGHTBAR=m +CONFIG_CROS_EC_VBC=m +CONFIG_CROS_EC_DEBUGFS=m +CONFIG_CROS_EC_SENSORHUB=m +CONFIG_CROS_EC_SYSFS=m +CONFIG_CROS_EC_TYPEC=m +CONFIG_CROS_USBPD_LOGGER=m +CONFIG_CROS_USBPD_NOTIFY=m +# CONFIG_MELLANOX_PLATFORM is not set +CONFIG_SURFACE_PLATFORMS=y +CONFIG_SURFACE_3_BUTTON=m +CONFIG_SURFACE_3_POWER_OPREGION=m +# CONFIG_SURFACE_ACPI_NOTIFY is not set +# CONFIG_SURFACE_AGGREGATOR_CDEV is not set +# CONFIG_SURFACE_AGGREGATOR_REGISTRY is not set +CONFIG_SURFACE_DTX=m +CONFIG_SURFACE_GPE=m +CONFIG_SURFACE_HOTPLUG=m +# CONFIG_SURFACE_PRO3_BUTTON is not set +CONFIG_SURFACE_AGGREGATOR=m +CONFIG_SURFACE_AGGREGATOR_BUS=y +# CONFIG_SURFACE_AGGREGATOR_ERROR_INJECTION is not set +CONFIG_HAVE_CLK=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Clock driver for ARM Reference designs +# +CONFIG_CLK_ICST=y +CONFIG_CLK_SP810=y +CONFIG_CLK_VEXPRESS_OSC=y +# end of Clock driver for ARM Reference designs + +CONFIG_LMK04832=m +# CONFIG_COMMON_CLK_MAX77686 is not set +CONFIG_COMMON_CLK_MAX9485=m +CONFIG_COMMON_CLK_RK808=m +CONFIG_COMMON_CLK_HI655X=m +CONFIG_COMMON_CLK_SCMI=m +CONFIG_COMMON_CLK_SI5341=m +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_SI514 is not set +# CONFIG_COMMON_CLK_SI544 is not set +# CONFIG_COMMON_CLK_SI570 is not set +CONFIG_COMMON_CLK_BM1880=y +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CDCE925 is not set +# CONFIG_COMMON_CLK_CS2000_CP is not set +CONFIG_COMMON_CLK_AXI_CLKGEN=m +CONFIG_COMMON_CLK_XGENE=y +# CONFIG_COMMON_CLK_PWM is not set +# CONFIG_COMMON_CLK_VC5 is not set +# CONFIG_COMMON_CLK_BD718XX is not set +# CONFIG_COMMON_CLK_FIXED_MMIO is not set +CONFIG_CLK_BCM2711_DVP=y +# CONFIG_CLK_BCM2835 is not set +CONFIG_CLK_RASPBERRYPI=m +CONFIG_COMMON_CLK_HI3516CV300=y +CONFIG_COMMON_CLK_HI3519=y +CONFIG_COMMON_CLK_HI3559A=y +CONFIG_COMMON_CLK_HI3660=y +CONFIG_COMMON_CLK_HI3670=y +CONFIG_COMMON_CLK_HI3798CV200=y +CONFIG_COMMON_CLK_HI6220=y +CONFIG_RESET_HISI=y +CONFIG_STUB_CLK_HI6220=y +# CONFIG_STUB_CLK_HI3660 is not set +CONFIG_MXC_CLK=y +CONFIG_MXC_CLK_SCU=y +CONFIG_CLK_IMX8MM=y +CONFIG_CLK_IMX8MN=y +CONFIG_CLK_IMX8MP=y +CONFIG_CLK_IMX8MQ=y +CONFIG_CLK_IMX8QXP=y +CONFIG_CLK_IMX8ULP=y + +# +# Clock support for Amlogic platforms +# +CONFIG_COMMON_CLK_MESON_REGMAP=y +CONFIG_COMMON_CLK_MESON_DUALDIV=y +CONFIG_COMMON_CLK_MESON_MPLL=y +CONFIG_COMMON_CLK_MESON_PHASE=m +CONFIG_COMMON_CLK_MESON_PLL=y +CONFIG_COMMON_CLK_MESON_SCLK_DIV=m +CONFIG_COMMON_CLK_MESON_VID_PLL_DIV=y +CONFIG_COMMON_CLK_MESON_AO_CLKC=y +CONFIG_COMMON_CLK_MESON_EE_CLKC=y +CONFIG_COMMON_CLK_MESON_CPU_DYNDIV=y +CONFIG_COMMON_CLK_GXBB=y +CONFIG_COMMON_CLK_AXG=y +CONFIG_COMMON_CLK_AXG_AUDIO=m +CONFIG_COMMON_CLK_G12A=y +# end of Clock support for Amlogic platforms + +CONFIG_ARMADA_AP_CP_HELPER=y +CONFIG_ARMADA_37XX_CLK=y +CONFIG_ARMADA_AP806_SYSCON=y +CONFIG_ARMADA_CP110_SYSCON=y +CONFIG_QCOM_GDSC=y +CONFIG_QCOM_RPMCC=y +CONFIG_COMMON_CLK_QCOM=y +CONFIG_QCOM_A53PLL=y +CONFIG_QCOM_A7PLL=m +CONFIG_QCOM_CLK_APCS_MSM8916=m +CONFIG_QCOM_CLK_APCC_MSM8996=m +CONFIG_QCOM_CLK_APCS_SDX55=m +CONFIG_QCOM_CLK_RPM=m +CONFIG_QCOM_CLK_SMD_RPM=m +# CONFIG_APQ_GCC_8084 is not set +# CONFIG_APQ_MMCC_8084 is not set +# CONFIG_IPQ_APSS_PLL is not set +# CONFIG_IPQ_APSS_6018 is not set +# CONFIG_IPQ_GCC_4019 is not set +# CONFIG_IPQ_GCC_6018 is not set +# CONFIG_IPQ_GCC_806X is not set +# CONFIG_IPQ_LCC_806X is not set +# CONFIG_IPQ_GCC_8074 is not set +# CONFIG_MSM_GCC_8660 is not set +CONFIG_MSM_GCC_8916=y +# CONFIG_MSM_GCC_8939 is not set +# CONFIG_MSM_GCC_8960 is not set +# CONFIG_MSM_LCC_8960 is not set +CONFIG_MDM_GCC_9607=m +# CONFIG_MDM_GCC_9615 is not set +# CONFIG_MDM_LCC_9615 is not set +# CONFIG_MSM_MMCC_8960 is not set +# CONFIG_MSM_GCC_8953 is not set +# CONFIG_MSM_GCC_8974 is not set +# CONFIG_MSM_MMCC_8974 is not set +# CONFIG_MSM_MMCC_8994 is not set +# CONFIG_MSM_GCC_8994 is not set +CONFIG_MSM_GCC_8996=y +CONFIG_MSM_MMCC_8996=y +# CONFIG_MSM_GCC_8998 is not set +# CONFIG_MSM_GPUCC_8998 is not set +# CONFIG_MSM_MMCC_8998 is not set +# CONFIG_QCM_GCC_2290 is not set +# CONFIG_QCS_GCC_404 is not set +# CONFIG_SC_CAMCC_7180 is not set +# CONFIG_SC_CAMCC_7280 is not set +# CONFIG_SC_DISPCC_7180 is not set +# CONFIG_SC_DISPCC_7280 is not set +CONFIG_SC_GCC_7180=m +CONFIG_SC_GCC_7280=m +CONFIG_SC_GCC_8180X=m +# CONFIG_SC_GPUCC_7180 is not set +# CONFIG_SC_GPUCC_7280 is not set +# CONFIG_SC_LPASSCC_7280 is not set +CONFIG_SC_LPASS_CORECC_7180=m +# CONFIG_SC_MSS_7180 is not set +# CONFIG_SC_VIDEOCC_7180 is not set +# CONFIG_SC_VIDEOCC_7280 is not set +# CONFIG_SDM_CAMCC_845 is not set +CONFIG_SDM_GCC_660=m +CONFIG_SDM_MMCC_660=m +CONFIG_SDM_GPUCC_660=m +# CONFIG_QCS_TURING_404 is not set +# CONFIG_QCS_Q6SSTOP_404 is not set +CONFIG_SDM_GCC_845=m +CONFIG_SDM_GPUCC_845=m +CONFIG_SDM_VIDEOCC_845=m +CONFIG_SDM_DISPCC_845=m +CONFIG_SDM_LPASSCC_845=m +CONFIG_SDX_GCC_55=m +CONFIG_SM_CAMCC_8250=m +CONFIG_SM_DISPCC_8250=m +# CONFIG_SM_GCC_6115 is not set +CONFIG_SM_GCC_6125=m +# CONFIG_SM_GCC_6350 is not set +# CONFIG_SM_GCC_8150 is not set +CONFIG_SM_GCC_8250=m +CONFIG_SM_GCC_8350=m +# CONFIG_SM_GPUCC_8150 is not set +# CONFIG_SM_GPUCC_8250 is not set +# CONFIG_SM_VIDEOCC_8150 is not set +# CONFIG_SM_VIDEOCC_8250 is not set +# CONFIG_SPMI_PMIC_CLKDIV is not set +# CONFIG_QCOM_HFPLL is not set +# CONFIG_KPSS_XCC is not set +# CONFIG_CLK_GFM_LPASS_SM8250 is not set +CONFIG_COMMON_CLK_ROCKCHIP=y +CONFIG_CLK_PX30=y +CONFIG_CLK_RK3308=y +CONFIG_CLK_RK3328=y +CONFIG_CLK_RK3368=y +CONFIG_CLK_RK3399=y +CONFIG_CLK_RK3568=y +CONFIG_CLK_INTEL_SOCFPGA=y +CONFIG_CLK_INTEL_SOCFPGA64=y +CONFIG_CLK_SUNXI=y +CONFIG_CLK_SUNXI_CLOCKS=y +CONFIG_CLK_SUNXI_PRCM_SUN6I=y +CONFIG_CLK_SUNXI_PRCM_SUN8I=y +CONFIG_CLK_SUNXI_PRCM_SUN9I=y +CONFIG_SUNXI_CCU=y +CONFIG_SUN50I_A64_CCU=y +CONFIG_SUN50I_A100_CCU=y +CONFIG_SUN50I_A100_R_CCU=y +CONFIG_SUN50I_H6_CCU=y +CONFIG_SUN50I_H616_CCU=y +CONFIG_SUN50I_H6_R_CCU=y +CONFIG_SUN8I_H3_CCU=y +CONFIG_SUN8I_DE2_CCU=y +CONFIG_SUN8I_R_CCU=y +CONFIG_CLK_TEGRA_BPMP=y +CONFIG_TEGRA_CLK_DFLL=y +# CONFIG_XILINX_VCU is not set +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_TIMER_OF=y +CONFIG_TIMER_ACPI=y +CONFIG_TIMER_PROBE=y +CONFIG_CLKSRC_MMIO=y +CONFIG_ROCKCHIP_TIMER=y +CONFIG_SUN4I_TIMER=y +CONFIG_TEGRA_TIMER=y +CONFIG_ARM_ARCH_TIMER=y +CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y +CONFIG_ARM_ARCH_TIMER_OOL_WORKAROUND=y +CONFIG_FSL_ERRATUM_A008585=y +CONFIG_HISILICON_ERRATUM_161010101=y +CONFIG_ARM64_ERRATUM_858921=y +CONFIG_SUN50I_ERRATUM_UNKNOWN1=y +CONFIG_ARM_TIMER_SP804=y +CONFIG_TIMER_IMX_SYS_CTR=y +# CONFIG_MICROCHIP_PIT64B is not set +# end of Clock Source drivers + +CONFIG_MAILBOX=y +CONFIG_APPLE_MAILBOX=m +# CONFIG_ARM_MHU is not set +# CONFIG_ARM_MHU_V2 is not set +CONFIG_IMX_MBOX=m +# CONFIG_PLATFORM_MHU is not set +# CONFIG_PL320_MBOX is not set +CONFIG_ARMADA_37XX_RWTM_MBOX=m +# CONFIG_ROCKCHIP_MBOX is not set +CONFIG_PCC=y +# CONFIG_ALTERA_MBOX is not set +CONFIG_BCM2835_MBOX=y +# CONFIG_HI3660_MBOX is not set +CONFIG_HI6220_MBOX=y +# CONFIG_MAILBOX_TEST is not set +CONFIG_QCOM_APCS_IPC=m +CONFIG_TEGRA_HSP_MBOX=y +CONFIG_XGENE_SLIMPRO_MBOX=m +CONFIG_SUN6I_MSGBOX=m +CONFIG_QCOM_IPCC=y +CONFIG_IOMMU_IOVA=y +CONFIG_IOASID=y +CONFIG_IOMMU_API=y +CONFIG_IOMMU_SUPPORT=y + +# +# Generic IOMMU Pagetable Support +# +CONFIG_IOMMU_IO_PGTABLE=y +CONFIG_IOMMU_IO_PGTABLE_LPAE=y +# CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set +# CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set +# end of Generic IOMMU Pagetable Support + +# CONFIG_IOMMU_DEBUGFS is not set +# CONFIG_IOMMU_DEFAULT_DMA_STRICT is not set +CONFIG_IOMMU_DEFAULT_DMA_LAZY=y +# CONFIG_IOMMU_DEFAULT_PASSTHROUGH is not set +CONFIG_OF_IOMMU=y +CONFIG_IOMMU_DMA=y +CONFIG_IOMMU_SVA_LIB=y +CONFIG_ROCKCHIP_IOMMU=y +CONFIG_SUN50I_IOMMU=y +CONFIG_TEGRA_IOMMU_SMMU=y +CONFIG_APPLE_DART=y +CONFIG_ARM_SMMU=y +# CONFIG_ARM_SMMU_LEGACY_DT_BINDINGS is not set +CONFIG_ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT=y +CONFIG_ARM_SMMU_QCOM=y +CONFIG_ARM_SMMU_V3=y +CONFIG_ARM_SMMU_V3_SVA=y +CONFIG_QCOM_IOMMU=y +CONFIG_VIRTIO_IOMMU=m + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +CONFIG_RPMSG=m +# CONFIG_RPMSG_CHAR is not set +CONFIG_RPMSG_NS=m +CONFIG_RPMSG_QCOM_GLINK=m +CONFIG_RPMSG_QCOM_GLINK_RPM=m +# CONFIG_RPMSG_VIRTIO is not set +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +CONFIG_MESON_CANVAS=m +CONFIG_MESON_CLK_MEASURE=y +CONFIG_MESON_GX_SOCINFO=y +CONFIG_MESON_GX_PM_DOMAINS=y +CONFIG_MESON_EE_PM_DOMAINS=y +CONFIG_MESON_SECURE_PM_DOMAINS=y +# end of Amlogic SoC drivers + +# +# Broadcom SoC drivers +# +CONFIG_BCM2835_POWER=y +CONFIG_RASPBERRYPI_POWER=y +CONFIG_SOC_BRCMSTB=y +CONFIG_BCM_PMB=y +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# CONFIG_QUICC_ENGINE is not set +CONFIG_FSL_GUTS=y +CONFIG_FSL_RCPM=y +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +CONFIG_IMX_GPCV2_PM_DOMAINS=y +CONFIG_SOC_IMX8M=y +# end of i.MX SoC drivers + +# +# Enable LiteX SoC Builder specific drivers +# +# CONFIG_LITEX_SOC_CONTROLLER is not set +# end of Enable LiteX SoC Builder specific drivers + +# +# Qualcomm SoC drivers +# +CONFIG_QCOM_AOSS_QMP=m +CONFIG_QCOM_COMMAND_DB=y +CONFIG_QCOM_CPR=m +CONFIG_QCOM_GENI_SE=m +CONFIG_QCOM_GSBI=m +CONFIG_QCOM_LLCC=m +CONFIG_QCOM_KRYO_L2_ACCESSORS=y +CONFIG_QCOM_MDT_LOADER=m +# CONFIG_QCOM_OCMEM is not set +CONFIG_QCOM_PDR_HELPERS=m +CONFIG_QCOM_QMI_HELPERS=m +# CONFIG_QCOM_RMTFS_MEM is not set +# CONFIG_QCOM_RPMH is not set +CONFIG_QCOM_RPMPD=m +CONFIG_QCOM_SMD_RPM=m +CONFIG_QCOM_SPM=m +CONFIG_QCOM_WCNSS_CTRL=m +CONFIG_QCOM_APR=m +# end of Qualcomm SoC drivers + +CONFIG_ROCKCHIP_GRF=y +CONFIG_ROCKCHIP_IODOMAIN=m +CONFIG_ROCKCHIP_PM_DOMAINS=y +CONFIG_SUNXI_MBUS=y +CONFIG_SUNXI_SRAM=y +CONFIG_ARCH_TEGRA_132_SOC=y +CONFIG_ARCH_TEGRA_210_SOC=y +# CONFIG_ARCH_TEGRA_186_SOC is not set +CONFIG_ARCH_TEGRA_194_SOC=y +CONFIG_ARCH_TEGRA_234_SOC=y +CONFIG_SOC_TEGRA_FUSE=y +CONFIG_SOC_TEGRA_FLOWCTRL=y +CONFIG_SOC_TEGRA_PMC=y +CONFIG_SOC_TEGRA_POWERGATE_BPMP=y +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +CONFIG_PM_DEVFREQ=y + +# +# DEVFREQ Governors +# +CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=m +# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set +# CONFIG_DEVFREQ_GOV_POWERSAVE is not set +CONFIG_DEVFREQ_GOV_USERSPACE=m +# CONFIG_DEVFREQ_GOV_PASSIVE is not set + +# +# DEVFREQ Drivers +# +CONFIG_ARM_IMX_BUS_DEVFREQ=m +CONFIG_ARM_IMX8M_DDRC_DEVFREQ=m +CONFIG_ARM_TEGRA_DEVFREQ=m +# CONFIG_ARM_RK3399_DMC_DEVFREQ is not set +# CONFIG_PM_DEVFREQ_EVENT is not set +CONFIG_EXTCON=y + +# +# Extcon Device Drivers +# +# CONFIG_EXTCON_ADC_JACK is not set +CONFIG_EXTCON_FSA9480=m +# CONFIG_EXTCON_GPIO is not set +# CONFIG_EXTCON_MAX3355 is not set +CONFIG_EXTCON_PTN5150=m +CONFIG_EXTCON_QCOM_SPMI_MISC=m +# CONFIG_EXTCON_RT8973A is not set +# CONFIG_EXTCON_SM5502 is not set +CONFIG_EXTCON_USB_GPIO=m +# CONFIG_EXTCON_USBC_CROS_EC is not set +CONFIG_EXTCON_USBC_TUSB320=m +CONFIG_MEMORY=y +# CONFIG_ARM_PL172_MPMC is not set +CONFIG_TEGRA_MC=y +CONFIG_TEGRA210_EMC_TABLE=y +CONFIG_TEGRA210_EMC=m +CONFIG_IIO=m +CONFIG_IIO_BUFFER=y +# CONFIG_IIO_BUFFER_CB is not set +CONFIG_IIO_BUFFER_DMA=m +CONFIG_IIO_BUFFER_DMAENGINE=m +# CONFIG_IIO_BUFFER_HW_CONSUMER is not set +CONFIG_IIO_KFIFO_BUF=m +CONFIG_IIO_TRIGGERED_BUFFER=m +# CONFIG_IIO_CONFIGFS is not set +CONFIG_IIO_TRIGGER=y +CONFIG_IIO_CONSUMERS_PER_TRIGGER=2 +# CONFIG_IIO_SW_DEVICE is not set +# CONFIG_IIO_SW_TRIGGER is not set +CONFIG_IIO_TRIGGERED_EVENT=m + +# +# Accelerometers +# +# CONFIG_ADIS16201 is not set +# CONFIG_ADIS16209 is not set +# CONFIG_ADXL313_I2C is not set +# CONFIG_ADXL313_SPI is not set +# CONFIG_ADXL345_I2C is not set +# CONFIG_ADXL345_SPI is not set +# CONFIG_ADXL355_I2C is not set +# CONFIG_ADXL355_SPI is not set +# CONFIG_ADXL372_SPI is not set +# CONFIG_ADXL372_I2C is not set +# CONFIG_BMA180 is not set +# CONFIG_BMA220 is not set +CONFIG_BMA400=m +CONFIG_BMA400_I2C=m +CONFIG_BMA400_SPI=m +# CONFIG_BMC150_ACCEL is not set +# CONFIG_BMI088_ACCEL is not set +# CONFIG_DA280 is not set +# CONFIG_DA311 is not set +# CONFIG_DMARD06 is not set +# CONFIG_DMARD09 is not set +# CONFIG_DMARD10 is not set +CONFIG_FXLS8962AF=m +CONFIG_FXLS8962AF_I2C=m +CONFIG_FXLS8962AF_SPI=m +CONFIG_HID_SENSOR_ACCEL_3D=m +# CONFIG_IIO_ST_ACCEL_3AXIS is not set +# CONFIG_KXSD9 is not set +# CONFIG_KXCJK1013 is not set +# CONFIG_MC3230 is not set +# CONFIG_MMA7455_I2C is not set +# CONFIG_MMA7455_SPI is not set +# CONFIG_MMA7660 is not set +# CONFIG_MMA8452 is not set +# CONFIG_MMA9551 is not set +# CONFIG_MMA9553 is not set +# CONFIG_MXC4005 is not set +# CONFIG_MXC6255 is not set +# CONFIG_SCA3000 is not set +# CONFIG_SCA3300 is not set +# CONFIG_STK8312 is not set +# CONFIG_STK8BA50 is not set +# end of Accelerometers + +# +# Analog to digital converters +# +CONFIG_AD_SIGMA_DELTA=m +CONFIG_AD7091R5=m +CONFIG_AD7124=m +# CONFIG_AD7192 is not set +# CONFIG_AD7266 is not set +# CONFIG_AD7291 is not set +# CONFIG_AD7292 is not set +# CONFIG_AD7298 is not set +# CONFIG_AD7476 is not set +# CONFIG_AD7606_IFACE_PARALLEL is not set +# CONFIG_AD7606_IFACE_SPI is not set +# CONFIG_AD7766 is not set +# CONFIG_AD7768_1 is not set +# CONFIG_AD7780 is not set +# CONFIG_AD7791 is not set +# CONFIG_AD7793 is not set +# CONFIG_AD7887 is not set +# CONFIG_AD7923 is not set +# CONFIG_AD7949 is not set +# CONFIG_AD799X is not set +# CONFIG_ADI_AXI_ADC is not set +CONFIG_AXP20X_ADC=m +CONFIG_AXP288_ADC=m +# CONFIG_CC10001_ADC is not set +# CONFIG_ENVELOPE_DETECTOR is not set +# CONFIG_HI8435 is not set +# CONFIG_HX711 is not set +# CONFIG_INA2XX_ADC is not set +CONFIG_IMX7D_ADC=m +CONFIG_IMX8QXP_ADC=m +# CONFIG_LTC2471 is not set +# CONFIG_LTC2485 is not set +# CONFIG_LTC2496 is not set +# CONFIG_LTC2497 is not set +# CONFIG_MAX1027 is not set +# CONFIG_MAX11100 is not set +# CONFIG_MAX1118 is not set +# CONFIG_MAX1241 is not set +# CONFIG_MAX1363 is not set +# CONFIG_MAX9611 is not set +# CONFIG_MCP320X is not set +# CONFIG_MCP3422 is not set +# CONFIG_MCP3911 is not set +# CONFIG_MEDIATEK_MT6360_ADC is not set +CONFIG_MESON_SARADC=m +# CONFIG_MP2629_ADC is not set +# CONFIG_NAU7802 is not set +CONFIG_QCOM_VADC_COMMON=m +CONFIG_QCOM_SPMI_IADC=m +CONFIG_QCOM_SPMI_VADC=m +# CONFIG_QCOM_SPMI_ADC5 is not set +# CONFIG_ROCKCHIP_SARADC is not set +# CONFIG_SD_ADC_MODULATOR is not set +# CONFIG_TI_ADC081C is not set +# CONFIG_TI_ADC0832 is not set +# CONFIG_TI_ADC084S021 is not set +# CONFIG_TI_ADC12138 is not set +# CONFIG_TI_ADC108S102 is not set +# CONFIG_TI_ADC128S052 is not set +# CONFIG_TI_ADC161S626 is not set +# CONFIG_TI_ADS1015 is not set +# CONFIG_TI_ADS7950 is not set +# CONFIG_TI_ADS8344 is not set +# CONFIG_TI_ADS8688 is not set +# CONFIG_TI_ADS124S08 is not set +# CONFIG_TI_ADS131E08 is not set +# CONFIG_TI_TLC4541 is not set +# CONFIG_TI_TSC2046 is not set +# CONFIG_VF610_ADC is not set +CONFIG_VIPERBOARD_ADC=m +CONFIG_XILINX_XADC=m +# end of Analog to digital converters + +# +# Analog Front Ends +# +# CONFIG_IIO_RESCALE is not set +# end of Analog Front Ends + +# +# Amplifiers +# +# CONFIG_AD8366 is not set +# CONFIG_HMC425 is not set +# end of Amplifiers + +# +# Capacitance to digital converters +# +# CONFIG_AD7150 is not set +# end of Capacitance to digital converters + +# +# Chemical Sensors +# +# CONFIG_ATLAS_PH_SENSOR is not set +# CONFIG_ATLAS_EZO_SENSOR is not set +# CONFIG_BME680 is not set +# CONFIG_CCS811 is not set +# CONFIG_IAQCORE is not set +# CONFIG_PMS7003 is not set +CONFIG_SCD30_CORE=m +CONFIG_SCD30_I2C=m +CONFIG_SCD30_SERIAL=m +CONFIG_SCD4X=m +# CONFIG_SENSIRION_SGP30 is not set +# CONFIG_SENSIRION_SGP40 is not set +# CONFIG_SPS30_I2C is not set +# CONFIG_SPS30_SERIAL is not set +CONFIG_SENSEAIR_SUNRISE_CO2=m +# CONFIG_VZ89X is not set +# end of Chemical Sensors + +# CONFIG_IIO_CROS_EC_SENSORS_CORE is not set + +# +# Hid Sensor IIO Common +# +CONFIG_HID_SENSOR_IIO_COMMON=m +CONFIG_HID_SENSOR_IIO_TRIGGER=m +# end of Hid Sensor IIO Common + +# +# IIO SCMI Sensors +# +CONFIG_IIO_SCMI=m +# end of IIO SCMI Sensors + +# +# SSP Sensor Common +# +# CONFIG_IIO_SSP_SENSORHUB is not set +# end of SSP Sensor Common + +# +# Digital to analog converters +# +# CONFIG_AD5064 is not set +# CONFIG_AD5360 is not set +# CONFIG_AD5380 is not set +# CONFIG_AD5421 is not set +CONFIG_AD5446=m +# CONFIG_AD5449 is not set +# CONFIG_AD5592R is not set +# CONFIG_AD5593R is not set +# CONFIG_AD5504 is not set +# CONFIG_AD5624R_SPI is not set +# CONFIG_AD5686_SPI is not set +# CONFIG_AD5696_I2C is not set +# CONFIG_AD5755 is not set +# CONFIG_AD5758 is not set +# CONFIG_AD5761 is not set +# CONFIG_AD5764 is not set +# CONFIG_AD5766 is not set +# CONFIG_AD5770R is not set +# CONFIG_AD5791 is not set +# CONFIG_AD7303 is not set +# CONFIG_AD8801 is not set +# CONFIG_DPOT_DAC is not set +# CONFIG_DS4424 is not set +# CONFIG_LTC1660 is not set +# CONFIG_LTC2632 is not set +# CONFIG_M62332 is not set +# CONFIG_MAX517 is not set +# CONFIG_MAX5821 is not set +# CONFIG_MCP4725 is not set +# CONFIG_MCP4922 is not set +# CONFIG_TI_DAC082S085 is not set +# CONFIG_TI_DAC5571 is not set +# CONFIG_TI_DAC7311 is not set +# CONFIG_TI_DAC7612 is not set +# CONFIG_VF610_DAC is not set +# end of Digital to analog converters + +# +# IIO dummy driver +# +# end of IIO dummy driver + +# +# Frequency Synthesizers DDS/PLL +# + +# +# Clock Generator/Distribution +# +# CONFIG_AD9523 is not set +# end of Clock Generator/Distribution + +# +# Phase-Locked Loop (PLL) frequency synthesizers +# +# CONFIG_ADF4350 is not set +CONFIG_ADF4371=m +# CONFIG_ADRF6780 is not set +# end of Phase-Locked Loop (PLL) frequency synthesizers +# end of Frequency Synthesizers DDS/PLL + +# +# Digital gyroscope sensors +# +# CONFIG_ADIS16080 is not set +# CONFIG_ADIS16130 is not set +# CONFIG_ADIS16136 is not set +# CONFIG_ADIS16260 is not set +CONFIG_ADXRS290=m +# CONFIG_ADXRS450 is not set +# CONFIG_BMG160 is not set +# CONFIG_FXAS21002C is not set +CONFIG_HID_SENSOR_GYRO_3D=m +# CONFIG_MPU3050_I2C is not set +# CONFIG_IIO_ST_GYRO_3AXIS is not set +# CONFIG_ITG3200 is not set +# end of Digital gyroscope sensors + +# +# Health Sensors +# + +# +# Heart Rate Monitors +# +# CONFIG_AFE4403 is not set +# CONFIG_AFE4404 is not set +# CONFIG_MAX30100 is not set +# CONFIG_MAX30102 is not set +# end of Heart Rate Monitors +# end of Health Sensors + +# +# Humidity sensors +# +# CONFIG_AM2315 is not set +CONFIG_DHT11=m +# CONFIG_HDC100X is not set +CONFIG_HDC2010=m +# CONFIG_HID_SENSOR_HUMIDITY is not set +# CONFIG_HTS221 is not set +# CONFIG_HTU21 is not set +# CONFIG_SI7005 is not set +# CONFIG_SI7020 is not set +# end of Humidity sensors + +# +# Inertial measurement units +# +# CONFIG_ADIS16400 is not set +# CONFIG_ADIS16460 is not set +# CONFIG_ADIS16475 is not set +# CONFIG_ADIS16480 is not set +# CONFIG_BMI160_I2C is not set +# CONFIG_BMI160_SPI is not set +# CONFIG_FXOS8700_I2C is not set +# CONFIG_FXOS8700_SPI is not set +# CONFIG_KMX61 is not set +CONFIG_INV_ICM42600=m +CONFIG_INV_ICM42600_I2C=m +CONFIG_INV_ICM42600_SPI=m +# CONFIG_INV_MPU6050_I2C is not set +# CONFIG_INV_MPU6050_SPI is not set +# CONFIG_IIO_ST_LSM6DSX is not set +# CONFIG_IIO_ST_LSM9DS0 is not set +# end of Inertial measurement units + +# +# Light sensors +# +CONFIG_ACPI_ALS=m +# CONFIG_ADJD_S311 is not set +# CONFIG_ADUX1020 is not set +# CONFIG_AL3010 is not set +# CONFIG_AL3320A is not set +# CONFIG_APDS9300 is not set +# CONFIG_APDS9960 is not set +CONFIG_AS73211=m +# CONFIG_BH1750 is not set +CONFIG_BH1780=m +# CONFIG_CM32181 is not set +# CONFIG_CM3232 is not set +# CONFIG_CM3323 is not set +# CONFIG_CM3605 is not set +# CONFIG_CM36651 is not set +# CONFIG_GP2AP002 is not set +# CONFIG_GP2AP020A00F is not set +# CONFIG_IQS621_ALS is not set +# CONFIG_SENSORS_ISL29018 is not set +# CONFIG_SENSORS_ISL29028 is not set +# CONFIG_ISL29125 is not set +CONFIG_HID_SENSOR_ALS=m +CONFIG_HID_SENSOR_PROX=m +# CONFIG_JSA1212 is not set +# CONFIG_RPR0521 is not set +# CONFIG_LTR501 is not set +# CONFIG_LV0104CS is not set +# CONFIG_MAX44000 is not set +# CONFIG_MAX44009 is not set +# CONFIG_NOA1305 is not set +# CONFIG_OPT3001 is not set +# CONFIG_PA12203001 is not set +# CONFIG_SI1133 is not set +# CONFIG_SI1145 is not set +# CONFIG_STK3310 is not set +# CONFIG_ST_UVIS25 is not set +# CONFIG_TCS3414 is not set +# CONFIG_TCS3472 is not set +# CONFIG_SENSORS_TSL2563 is not set +# CONFIG_TSL2583 is not set +CONFIG_TSL2591=m +# CONFIG_TSL2772 is not set +# CONFIG_TSL4531 is not set +# CONFIG_US5182D is not set +# CONFIG_VCNL4000 is not set +# CONFIG_VCNL4035 is not set +# CONFIG_VEML6030 is not set +# CONFIG_VEML6070 is not set +# CONFIG_VL6180 is not set +# CONFIG_ZOPT2201 is not set +# end of Light sensors + +# +# Magnetometer sensors +# +# CONFIG_AK8974 is not set +# CONFIG_AK8975 is not set +# CONFIG_AK09911 is not set +# CONFIG_BMC150_MAGN_I2C is not set +# CONFIG_BMC150_MAGN_SPI is not set +# CONFIG_MAG3110 is not set +CONFIG_HID_SENSOR_MAGNETOMETER_3D=m +# CONFIG_MMC35240 is not set +# CONFIG_IIO_ST_MAGN_3AXIS is not set +# CONFIG_SENSORS_HMC5843_I2C is not set +# CONFIG_SENSORS_HMC5843_SPI is not set +# CONFIG_SENSORS_RM3100_I2C is not set +# CONFIG_SENSORS_RM3100_SPI is not set +# CONFIG_YAMAHA_YAS530 is not set +# end of Magnetometer sensors + +# +# Multiplexers +# +# CONFIG_IIO_MUX is not set +# end of Multiplexers + +# +# Inclinometer sensors +# +CONFIG_HID_SENSOR_INCLINOMETER_3D=m +CONFIG_HID_SENSOR_DEVICE_ROTATION=m +# end of Inclinometer sensors + +# +# Triggers - standalone +# +# CONFIG_IIO_INTERRUPT_TRIGGER is not set +# CONFIG_IIO_SYSFS_TRIGGER is not set +# end of Triggers - standalone + +# +# Linear and angular position sensors +# +# CONFIG_IQS624_POS is not set +CONFIG_HID_SENSOR_CUSTOM_INTEL_HINGE=m +# end of Linear and angular position sensors + +# +# Digital potentiometers +# +CONFIG_AD5110=m +# CONFIG_AD5272 is not set +# CONFIG_DS1803 is not set +# CONFIG_MAX5432 is not set +# CONFIG_MAX5481 is not set +# CONFIG_MAX5487 is not set +# CONFIG_MCP4018 is not set +# CONFIG_MCP4131 is not set +# CONFIG_MCP4531 is not set +# CONFIG_MCP41010 is not set +# CONFIG_TPL0102 is not set +# end of Digital potentiometers + +# +# Digital potentiostats +# +# CONFIG_LMP91000 is not set +# end of Digital potentiostats + +# +# Pressure sensors +# +# CONFIG_ABP060MG is not set +# CONFIG_BMP280 is not set +# CONFIG_DLHL60D is not set +CONFIG_DPS310=m +CONFIG_HID_SENSOR_PRESS=m +# CONFIG_HP03 is not set +# CONFIG_ICP10100 is not set +# CONFIG_MPL115_I2C is not set +# CONFIG_MPL115_SPI is not set +# CONFIG_MPL3115 is not set +# CONFIG_MS5611 is not set +# CONFIG_MS5637 is not set +# CONFIG_IIO_ST_PRESS is not set +# CONFIG_T5403 is not set +# CONFIG_HP206C is not set +# CONFIG_ZPA2326 is not set +# end of Pressure sensors + +# +# Lightning sensors +# +# CONFIG_AS3935 is not set +# end of Lightning sensors + +# +# Proximity and distance sensors +# +CONFIG_CROS_EC_MKBP_PROXIMITY=m +# CONFIG_ISL29501 is not set +# CONFIG_LIDAR_LITE_V2 is not set +# CONFIG_MB1232 is not set +# CONFIG_PING is not set +# CONFIG_RFD77402 is not set +# CONFIG_SRF04 is not set +# CONFIG_SX9310 is not set +# CONFIG_SX9500 is not set +# CONFIG_SRF08 is not set +# CONFIG_VCNL3020 is not set +# CONFIG_VL53L0X_I2C is not set +# end of Proximity and distance sensors + +# +# Resolver to digital converters +# +# CONFIG_AD2S90 is not set +# CONFIG_AD2S1200 is not set +# end of Resolver to digital converters + +# +# Temperature sensors +# +# CONFIG_IQS620AT_TEMP is not set +# CONFIG_LTC2983 is not set +# CONFIG_MAXIM_THERMOCOUPLE is not set +# CONFIG_HID_SENSOR_TEMP is not set +# CONFIG_MLX90614 is not set +# CONFIG_MLX90632 is not set +# CONFIG_TMP006 is not set +# CONFIG_TMP007 is not set +# CONFIG_TMP117 is not set +# CONFIG_TSYS01 is not set +# CONFIG_TSYS02D is not set +# CONFIG_MAX31856 is not set +# CONFIG_MAX31865 is not set +# end of Temperature sensors + +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +CONFIG_PWM=y +CONFIG_PWM_SYSFS=y +# CONFIG_PWM_DEBUG is not set +CONFIG_PWM_ATMEL_TCB=m +CONFIG_PWM_BCM2835=m +# CONFIG_PWM_CROS_EC is not set +CONFIG_PWM_DWC=m +# CONFIG_PWM_FSL_FTM is not set +# CONFIG_PWM_HIBVT is not set +# CONFIG_PWM_IMX1 is not set +# CONFIG_PWM_IMX27 is not set +# CONFIG_PWM_IMX_TPM is not set +# CONFIG_PWM_IQS620A is not set +# CONFIG_PWM_KEEMBAY is not set +CONFIG_PWM_MESON=m +CONFIG_PWM_NTXEC=m +# CONFIG_PWM_PCA9685 is not set +CONFIG_PWM_RASPBERRYPI_POE=m +CONFIG_PWM_ROCKCHIP=m +CONFIG_PWM_SUN4I=m +CONFIG_PWM_TEGRA=m +CONFIG_PWM_VISCONTI=m + +# +# IRQ chip support +# +CONFIG_IRQCHIP=y +CONFIG_ARM_GIC=y +CONFIG_ARM_GIC_PM=y +CONFIG_ARM_GIC_MAX_NR=1 +CONFIG_ARM_GIC_V2M=y +CONFIG_ARM_GIC_V3=y +CONFIG_ARM_GIC_V3_ITS=y +CONFIG_ARM_GIC_V3_ITS_PCI=y +# CONFIG_AL_FIC is not set +CONFIG_BRCMSTB_L2_IRQ=y +CONFIG_HISILICON_IRQ_MBIGEN=y +CONFIG_MADERA_IRQ=m +CONFIG_IMX_GPCV2=y +CONFIG_MVEBU_GICP=y +CONFIG_MVEBU_ICU=y +CONFIG_MVEBU_ODMI=y +CONFIG_MVEBU_PIC=y +CONFIG_MVEBU_SEI=y +CONFIG_PARTITION_PERCPU=y +CONFIG_QCOM_IRQ_COMBINER=y +CONFIG_MESON_IRQ_GPIO=y +# CONFIG_QCOM_PDC is not set +CONFIG_IMX_IRQSTEER=y +CONFIG_IMX_INTMUX=y +CONFIG_APPLE_AIC=y +# end of IRQ chip support + +# CONFIG_IPACK_BUS is not set +CONFIG_ARCH_HAS_RESET_CONTROLLER=y +CONFIG_RESET_CONTROLLER=y +CONFIG_RESET_IMX7=y +CONFIG_RESET_MESON=y +# CONFIG_RESET_MESON_AUDIO_ARB is not set +# CONFIG_RESET_QCOM_AOSS is not set +# CONFIG_RESET_QCOM_PDC is not set +CONFIG_RESET_RASPBERRYPI=m +CONFIG_RESET_SCMI=y +CONFIG_RESET_SIMPLE=y +CONFIG_RESET_SUNXI=y +# CONFIG_RESET_TI_SYSCON is not set +CONFIG_COMMON_RESET_HI3660=y +CONFIG_COMMON_RESET_HI6220=y +CONFIG_RESET_TEGRA_BPMP=y + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +CONFIG_GENERIC_PHY_MIPI_DPHY=y +CONFIG_PHY_XGENE=m +CONFIG_PHY_CAN_TRANSCEIVER=m +CONFIG_PHY_SUN4I_USB=m +# CONFIG_PHY_SUN6I_MIPI_DPHY is not set +# CONFIG_PHY_SUN9I_USB is not set +CONFIG_PHY_SUN50I_USB3=m +CONFIG_PHY_MESON8B_USB2=m +CONFIG_PHY_MESON_GXL_USB2=y +CONFIG_PHY_MESON_G12A_USB2=y +CONFIG_PHY_MESON_G12A_USB3_PCIE=y +CONFIG_PHY_MESON_AXG_PCIE=y +CONFIG_PHY_MESON_AXG_MIPI_PCIE_ANALOG=y +CONFIG_PHY_MESON_AXG_MIPI_DPHY=m + +# +# PHY drivers for Broadcom platforms +# +# CONFIG_BCM_KONA_USB2_PHY is not set +CONFIG_PHY_BRCM_USB=m +# end of PHY drivers for Broadcom platforms + +CONFIG_PHY_CADENCE_TORRENT=m +# CONFIG_PHY_CADENCE_DPHY is not set +# CONFIG_PHY_CADENCE_SIERRA is not set +CONFIG_PHY_CADENCE_SALVO=m +CONFIG_PHY_FSL_IMX8MQ_USB=m +CONFIG_PHY_MIXEL_MIPI_DPHY=m +CONFIG_PHY_HI6220_USB=m +CONFIG_PHY_HI3660_USB=m +CONFIG_PHY_HI3670_USB=m +CONFIG_PHY_HI3670_PCIE=m +# CONFIG_PHY_HISTB_COMBPHY is not set +# CONFIG_PHY_HISI_INNO_USB2 is not set +CONFIG_PHY_MVEBU_A3700_COMPHY=m +CONFIG_PHY_MVEBU_A3700_UTMI=m +CONFIG_PHY_MVEBU_A38X_COMPHY=m +CONFIG_PHY_MVEBU_CP110_COMPHY=m +CONFIG_PHY_MVEBU_CP110_UTMI=m +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_PHY_CPCAP_USB is not set +# CONFIG_PHY_MAPPHONE_MDM6600 is not set +# CONFIG_PHY_OCELOT_SERDES is not set +CONFIG_PHY_QCOM_APQ8064_SATA=m +CONFIG_PHY_QCOM_IPQ4019_USB=m +CONFIG_PHY_QCOM_IPQ806X_SATA=m +CONFIG_PHY_QCOM_PCIE2=m +CONFIG_PHY_QCOM_QMP=m +CONFIG_PHY_QCOM_QUSB2=m +CONFIG_PHY_QCOM_USB_HS=m +CONFIG_PHY_QCOM_USB_SNPS_FEMTO_V2=m +CONFIG_PHY_QCOM_USB_HSIC=m +CONFIG_PHY_QCOM_USB_HS_28NM=m +CONFIG_PHY_QCOM_USB_SS=m +# CONFIG_PHY_QCOM_IPQ806X_USB is not set +CONFIG_PHY_ROCKCHIP_DP=m +CONFIG_PHY_ROCKCHIP_DPHY_RX0=m +CONFIG_PHY_ROCKCHIP_EMMC=m +CONFIG_PHY_ROCKCHIP_INNO_HDMI=m +CONFIG_PHY_ROCKCHIP_INNO_USB2=m +CONFIG_PHY_ROCKCHIP_INNO_CSIDPHY=m +# CONFIG_PHY_ROCKCHIP_INNO_DSIDPHY is not set +CONFIG_PHY_ROCKCHIP_PCIE=m +CONFIG_PHY_ROCKCHIP_TYPEC=m +CONFIG_PHY_ROCKCHIP_USB=m +# CONFIG_PHY_SAMSUNG_USB2 is not set +CONFIG_PHY_TEGRA_XUSB=m +CONFIG_PHY_TEGRA194_P2U=m +CONFIG_PHY_TUSB1210=m +# CONFIG_PHY_INTEL_KEEMBAY_EMMC is not set +# CONFIG_PHY_INTEL_KEEMBAY_USB is not set +# end of PHY Subsystem + +# CONFIG_POWERCAP is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# CONFIG_ARM_CCI_PMU is not set +# CONFIG_ARM_CCN is not set +# CONFIG_ARM_CMN is not set +CONFIG_ARM_PMU=y +CONFIG_ARM_PMU_ACPI=y +CONFIG_ARM_SMMU_V3_PMU=m +# CONFIG_ARM_DSU_PMU is not set +CONFIG_FSL_IMX8_DDR_PMU=m +# CONFIG_QCOM_L2_PMU is not set +# CONFIG_QCOM_L3_PMU is not set +CONFIG_THUNDERX2_PMU=m +# CONFIG_XGENE_PMU is not set +# CONFIG_ARM_SPE_PMU is not set +CONFIG_ARM_DMC620_PMU=m +# CONFIG_HISI_PMU is not set +# end of Performance monitor support + +CONFIG_RAS=y +CONFIG_USB4=m +# CONFIG_USB4_DEBUGFS_WRITE is not set +# CONFIG_USB4_DMA_TEST is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +CONFIG_LIBNVDIMM=y +CONFIG_BLK_DEV_PMEM=y +CONFIG_ND_BLK=y +CONFIG_ND_CLAIM=y +CONFIG_ND_BTT=y +CONFIG_BTT=y +CONFIG_OF_PMEM=y +CONFIG_DAX_DRIVER=y +CONFIG_DAX=y +CONFIG_DEV_DAX=m +CONFIG_DEV_DAX_HMEM=m +CONFIG_DEV_DAX_HMEM_DEVICES=y +CONFIG_NVMEM=y +CONFIG_NVMEM_SYSFS=y +CONFIG_NVMEM_IMX_IIM=m +CONFIG_NVMEM_IMX_OCOTP=m +CONFIG_NVMEM_IMX_OCOTP_SCU=m +CONFIG_QCOM_QFPROM=m +CONFIG_NVMEM_SPMI_SDAM=m +CONFIG_ROCKCHIP_EFUSE=m +CONFIG_ROCKCHIP_OTP=m +CONFIG_NVMEM_SUNXI_SID=m +# CONFIG_MESON_EFUSE is not set +# CONFIG_MESON_MX_EFUSE is not set +CONFIG_NVMEM_SNVS_LPGPR=m +CONFIG_NVMEM_RMEM=m + +# +# HW tracing support +# +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# end of HW tracing support + +# CONFIG_FPGA is not set +# CONFIG_FSI is not set +CONFIG_TEE=m + +# +# TEE drivers +# +CONFIG_OPTEE=m +CONFIG_OPTEE_SHM_NUM_PRIV_PAGES=1 +# end of TEE drivers + +CONFIG_MULTIPLEXER=m + +# +# Multiplexer drivers +# +CONFIG_MUX_ADG792A=m +CONFIG_MUX_ADGS1408=m +CONFIG_MUX_GPIO=m +CONFIG_MUX_MMIO=m +# end of Multiplexer drivers + +CONFIG_PM_OPP=y +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +CONFIG_INTERCONNECT=y +CONFIG_INTERCONNECT_IMX=m +CONFIG_INTERCONNECT_IMX8MM=m +CONFIG_INTERCONNECT_IMX8MN=m +CONFIG_INTERCONNECT_IMX8MQ=m +CONFIG_INTERCONNECT_QCOM=y +CONFIG_INTERCONNECT_QCOM_MSM8916=m +CONFIG_INTERCONNECT_QCOM_MSM8939=m +# CONFIG_INTERCONNECT_QCOM_MSM8974 is not set +CONFIG_INTERCONNECT_QCOM_OSM_L3=m +# CONFIG_INTERCONNECT_QCOM_QCS404 is not set +CONFIG_INTERCONNECT_QCOM_SDM660=m +CONFIG_INTERCONNECT_QCOM_SMD_RPM=m +# CONFIG_COUNTER is not set +# CONFIG_MOST is not set +# end of Device Drivers + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +CONFIG_VALIDATE_FS_PARSER=y +CONFIG_FS_IOMAP=y +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +CONFIG_EXT4_FS=y +CONFIG_EXT4_USE_FOR_EXT2=y +CONFIG_EXT4_FS_POSIX_ACL=y +CONFIG_EXT4_FS_SECURITY=y +# CONFIG_EXT4_DEBUG is not set +CONFIG_JBD2=y +# CONFIG_JBD2_DEBUG is not set +CONFIG_FS_MBCACHE=y +CONFIG_REISERFS_FS=m +# CONFIG_REISERFS_CHECK is not set +# CONFIG_REISERFS_PROC_INFO is not set +CONFIG_REISERFS_FS_XATTR=y +CONFIG_REISERFS_FS_POSIX_ACL=y +CONFIG_REISERFS_FS_SECURITY=y +CONFIG_JFS_FS=m +CONFIG_JFS_POSIX_ACL=y +CONFIG_JFS_SECURITY=y +# CONFIG_JFS_DEBUG is not set +# CONFIG_JFS_STATISTICS is not set +CONFIG_XFS_FS=m +CONFIG_XFS_SUPPORT_V4=y +CONFIG_XFS_QUOTA=y +CONFIG_XFS_POSIX_ACL=y +CONFIG_XFS_RT=y +# CONFIG_XFS_ONLINE_SCRUB is not set +# CONFIG_XFS_WARN is not set +# CONFIG_XFS_DEBUG is not set +CONFIG_GFS2_FS=m +CONFIG_GFS2_FS_LOCKING_DLM=y +CONFIG_OCFS2_FS=m +CONFIG_OCFS2_FS_O2CB=m +CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m +CONFIG_OCFS2_FS_STATS=y +CONFIG_OCFS2_DEBUG_MASKLOG=y +# CONFIG_OCFS2_DEBUG_FS is not set +CONFIG_BTRFS_FS=m +CONFIG_BTRFS_FS_POSIX_ACL=y +# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set +# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set +# CONFIG_BTRFS_DEBUG is not set +# CONFIG_BTRFS_ASSERT is not set +# CONFIG_BTRFS_FS_REF_VERIFY is not set +CONFIG_NILFS2_FS=m +CONFIG_F2FS_FS=m +CONFIG_F2FS_STAT_FS=y +CONFIG_F2FS_FS_XATTR=y +CONFIG_F2FS_FS_POSIX_ACL=y +CONFIG_F2FS_FS_SECURITY=y +# CONFIG_F2FS_CHECK_FS is not set +# CONFIG_F2FS_FAULT_INJECTION is not set +# CONFIG_F2FS_FS_COMPRESSION is not set +# CONFIG_F2FS_IOSTAT is not set +CONFIG_FS_DAX=y +CONFIG_FS_POSIX_ACL=y +CONFIG_EXPORTFS=y +CONFIG_EXPORTFS_BLOCK_OPS=y +CONFIG_FILE_LOCKING=y +# CONFIG_FS_ENCRYPTION is not set +CONFIG_FS_VERITY=y +# CONFIG_FS_VERITY_DEBUG is not set +# CONFIG_FS_VERITY_BUILTIN_SIGNATURES is not set +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y +CONFIG_QUOTA=y +CONFIG_QUOTA_NETLINK_INTERFACE=y +CONFIG_PRINT_QUOTA_WARNING=y +# CONFIG_QUOTA_DEBUG is not set +CONFIG_QUOTA_TREE=m +CONFIG_QFMT_V1=m +CONFIG_QFMT_V2=m +CONFIG_QUOTACTL=y +CONFIG_AUTOFS4_FS=m +CONFIG_AUTOFS_FS=m +CONFIG_FUSE_FS=m +CONFIG_CUSE=m +CONFIG_VIRTIO_FS=m +CONFIG_FUSE_DAX=y +CONFIG_OVERLAY_FS=m +# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set +CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW=y +# CONFIG_OVERLAY_FS_INDEX is not set +# CONFIG_OVERLAY_FS_XINO_AUTO is not set +# CONFIG_OVERLAY_FS_METACOPY is not set + +# +# Caches +# +CONFIG_NETFS_SUPPORT=m +CONFIG_NETFS_STATS=y +CONFIG_FSCACHE=m +CONFIG_FSCACHE_STATS=y +# CONFIG_FSCACHE_DEBUG is not set +CONFIG_CACHEFILES=m +# CONFIG_CACHEFILES_DEBUG is not set +# end of Caches + +# +# CD-ROM/DVD Filesystems +# +CONFIG_ISO9660_FS=m +CONFIG_JOLIET=y +CONFIG_ZISOFS=y +CONFIG_UDF_FS=m +# end of CD-ROM/DVD Filesystems + +# +# DOS/FAT/EXFAT/NT Filesystems +# +CONFIG_FAT_FS=m +CONFIG_MSDOS_FS=m +CONFIG_VFAT_FS=m +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="ascii" +CONFIG_FAT_DEFAULT_UTF8=y +CONFIG_EXFAT_FS=m +CONFIG_EXFAT_DEFAULT_IOCHARSET="utf8" +CONFIG_NTFS_FS=m +# CONFIG_NTFS_DEBUG is not set +# CONFIG_NTFS_RW is not set +CONFIG_NTFS3_FS=m +# CONFIG_NTFS3_64BIT_CLUSTER is not set +CONFIG_NTFS3_LZX_XPRESS=y +# CONFIG_NTFS3_FS_POSIX_ACL is not set +# end of DOS/FAT/EXFAT/NT Filesystems + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_VMCORE=y +# CONFIG_PROC_VMCORE_DEVICE_DUMP is not set +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_PROC_CHILDREN=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +# CONFIG_TMPFS_INODE64 is not set +CONFIG_ARCH_SUPPORTS_HUGETLBFS=y +CONFIG_HUGETLBFS=y +CONFIG_HUGETLB_PAGE=y +CONFIG_MEMFD_CREATE=y +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +CONFIG_CONFIGFS_FS=m +CONFIG_EFIVAR_FS=m +# end of Pseudo filesystems + +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +CONFIG_ADFS_FS=m +# CONFIG_ADFS_FS_RW is not set +CONFIG_AFFS_FS=m +CONFIG_ECRYPT_FS=m +CONFIG_ECRYPT_FS_MESSAGING=y +CONFIG_HFS_FS=m +CONFIG_HFSPLUS_FS=m +CONFIG_BEFS_FS=m +# CONFIG_BEFS_DEBUG is not set +CONFIG_BFS_FS=m +CONFIG_EFS_FS=m +CONFIG_JFFS2_FS=m +CONFIG_JFFS2_FS_DEBUG=0 +CONFIG_JFFS2_FS_WRITEBUFFER=y +# CONFIG_JFFS2_FS_WBUF_VERIFY is not set +CONFIG_JFFS2_SUMMARY=y +CONFIG_JFFS2_FS_XATTR=y +CONFIG_JFFS2_FS_POSIX_ACL=y +CONFIG_JFFS2_FS_SECURITY=y +CONFIG_JFFS2_COMPRESSION_OPTIONS=y +CONFIG_JFFS2_ZLIB=y +CONFIG_JFFS2_LZO=y +CONFIG_JFFS2_RTIME=y +# CONFIG_JFFS2_RUBIN is not set +# CONFIG_JFFS2_CMODE_NONE is not set +CONFIG_JFFS2_CMODE_PRIORITY=y +# CONFIG_JFFS2_CMODE_SIZE is not set +# CONFIG_JFFS2_CMODE_FAVOURLZO is not set +CONFIG_UBIFS_FS=m +CONFIG_UBIFS_FS_ADVANCED_COMPR=y +CONFIG_UBIFS_FS_LZO=y +CONFIG_UBIFS_FS_ZLIB=y +CONFIG_UBIFS_FS_ZSTD=y +# CONFIG_UBIFS_ATIME_SUPPORT is not set +CONFIG_UBIFS_FS_XATTR=y +CONFIG_UBIFS_FS_SECURITY=y +CONFIG_UBIFS_FS_AUTHENTICATION=y +# CONFIG_CRAMFS is not set +CONFIG_SQUASHFS=m +CONFIG_SQUASHFS_FILE_CACHE=y +# CONFIG_SQUASHFS_FILE_DIRECT is not set +CONFIG_SQUASHFS_DECOMP_SINGLE=y +# CONFIG_SQUASHFS_DECOMP_MULTI is not set +# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set +CONFIG_SQUASHFS_XATTR=y +CONFIG_SQUASHFS_ZLIB=y +CONFIG_SQUASHFS_LZ4=y +CONFIG_SQUASHFS_LZO=y +CONFIG_SQUASHFS_XZ=y +CONFIG_SQUASHFS_ZSTD=y +# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set +# CONFIG_SQUASHFS_EMBEDDED is not set +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 +CONFIG_VXFS_FS=m +CONFIG_MINIX_FS=m +CONFIG_OMFS_FS=m +CONFIG_HPFS_FS=m +CONFIG_QNX4FS_FS=m +CONFIG_QNX6FS_FS=m +# CONFIG_QNX6FS_DEBUG is not set +CONFIG_ROMFS_FS=m +# CONFIG_ROMFS_BACKED_BY_BLOCK is not set +# CONFIG_ROMFS_BACKED_BY_MTD is not set +CONFIG_ROMFS_BACKED_BY_BOTH=y +CONFIG_ROMFS_ON_BLOCK=y +CONFIG_ROMFS_ON_MTD=y +CONFIG_PSTORE=y +CONFIG_PSTORE_DEFAULT_KMSG_BYTES=10240 +CONFIG_PSTORE_DEFLATE_COMPRESS=m +# CONFIG_PSTORE_LZO_COMPRESS is not set +# CONFIG_PSTORE_LZ4_COMPRESS is not set +# CONFIG_PSTORE_LZ4HC_COMPRESS is not set +# CONFIG_PSTORE_842_COMPRESS is not set +# CONFIG_PSTORE_ZSTD_COMPRESS is not set +CONFIG_PSTORE_COMPRESS=y +CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y +CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" +# CONFIG_PSTORE_CONSOLE is not set +# CONFIG_PSTORE_PMSG is not set +# CONFIG_PSTORE_FTRACE is not set +CONFIG_PSTORE_RAM=m +# CONFIG_PSTORE_BLK is not set +CONFIG_SYSV_FS=m +CONFIG_UFS_FS=m +# CONFIG_UFS_FS_WRITE is not set +# CONFIG_UFS_DEBUG is not set +CONFIG_EROFS_FS=m +# CONFIG_EROFS_FS_DEBUG is not set +CONFIG_EROFS_FS_XATTR=y +CONFIG_EROFS_FS_POSIX_ACL=y +CONFIG_EROFS_FS_SECURITY=y +# CONFIG_EROFS_FS_ZIP is not set +CONFIG_NETWORK_FILESYSTEMS=y +CONFIG_NFS_FS=m +CONFIG_NFS_V2=m +CONFIG_NFS_V3=m +CONFIG_NFS_V3_ACL=y +CONFIG_NFS_V4=m +CONFIG_NFS_SWAP=y +CONFIG_NFS_V4_1=y +CONFIG_NFS_V4_2=y +CONFIG_PNFS_FILE_LAYOUT=m +CONFIG_PNFS_BLOCK=m +CONFIG_PNFS_FLEXFILE_LAYOUT=m +CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org" +# CONFIG_NFS_V4_1_MIGRATION is not set +CONFIG_NFS_V4_SECURITY_LABEL=y +CONFIG_NFS_FSCACHE=y +# CONFIG_NFS_USE_LEGACY_DNS is not set +CONFIG_NFS_USE_KERNEL_DNS=y +CONFIG_NFS_DEBUG=y +# CONFIG_NFS_DISABLE_UDP_SUPPORT is not set +# CONFIG_NFS_V4_2_READ_PLUS is not set +CONFIG_NFSD=m +CONFIG_NFSD_V2_ACL=y +CONFIG_NFSD_V3=y +CONFIG_NFSD_V3_ACL=y +CONFIG_NFSD_V4=y +CONFIG_NFSD_PNFS=y +CONFIG_NFSD_BLOCKLAYOUT=y +# CONFIG_NFSD_SCSILAYOUT is not set +# CONFIG_NFSD_FLEXFILELAYOUT is not set +# CONFIG_NFSD_V4_2_INTER_SSC is not set +CONFIG_NFSD_V4_SECURITY_LABEL=y +CONFIG_GRACE_PERIOD=m +CONFIG_LOCKD=m +CONFIG_LOCKD_V4=y +CONFIG_NFS_ACL_SUPPORT=m +CONFIG_NFS_COMMON=y +CONFIG_NFS_V4_2_SSC_HELPER=y +CONFIG_SUNRPC=m +CONFIG_SUNRPC_GSS=m +CONFIG_SUNRPC_BACKCHANNEL=y +CONFIG_SUNRPC_SWAP=y +CONFIG_RPCSEC_GSS_KRB5=m +CONFIG_SUNRPC_DISABLE_INSECURE_ENCTYPES=y +CONFIG_SUNRPC_DEBUG=y +CONFIG_SUNRPC_XPRT_RDMA=m +CONFIG_CEPH_FS=m +CONFIG_CEPH_FSCACHE=y +CONFIG_CEPH_FS_POSIX_ACL=y +CONFIG_CEPH_FS_SECURITY_LABEL=y +CONFIG_CIFS=m +# CONFIG_CIFS_STATS2 is not set +CONFIG_CIFS_ALLOW_INSECURE_LEGACY=y +CONFIG_CIFS_UPCALL=y +CONFIG_CIFS_XATTR=y +CONFIG_CIFS_POSIX=y +CONFIG_CIFS_DEBUG=y +# CONFIG_CIFS_DEBUG2 is not set +# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set +CONFIG_CIFS_DFS_UPCALL=y +CONFIG_CIFS_SWN_UPCALL=y +# CONFIG_CIFS_SMB_DIRECT is not set +CONFIG_CIFS_FSCACHE=y +# CONFIG_SMB_SERVER is not set +CONFIG_SMBFS_COMMON=m +CONFIG_CODA_FS=m +CONFIG_AFS_FS=m +# CONFIG_AFS_DEBUG is not set +CONFIG_AFS_FSCACHE=y +# CONFIG_AFS_DEBUG_CURSOR is not set +CONFIG_9P_FS=m +CONFIG_9P_FSCACHE=y +CONFIG_9P_FS_POSIX_ACL=y +CONFIG_9P_FS_SECURITY=y +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="utf8" +CONFIG_NLS_CODEPAGE_437=m +CONFIG_NLS_CODEPAGE_737=m +CONFIG_NLS_CODEPAGE_775=m +CONFIG_NLS_CODEPAGE_850=m +CONFIG_NLS_CODEPAGE_852=m +CONFIG_NLS_CODEPAGE_855=m +CONFIG_NLS_CODEPAGE_857=m +CONFIG_NLS_CODEPAGE_860=m +CONFIG_NLS_CODEPAGE_861=m +CONFIG_NLS_CODEPAGE_862=m +CONFIG_NLS_CODEPAGE_863=m +CONFIG_NLS_CODEPAGE_864=m +CONFIG_NLS_CODEPAGE_865=m +CONFIG_NLS_CODEPAGE_866=m +CONFIG_NLS_CODEPAGE_869=m +CONFIG_NLS_CODEPAGE_936=m +CONFIG_NLS_CODEPAGE_950=m +CONFIG_NLS_CODEPAGE_932=m +CONFIG_NLS_CODEPAGE_949=m +CONFIG_NLS_CODEPAGE_874=m +CONFIG_NLS_ISO8859_8=m +CONFIG_NLS_CODEPAGE_1250=m +CONFIG_NLS_CODEPAGE_1251=m +CONFIG_NLS_ASCII=m +CONFIG_NLS_ISO8859_1=m +CONFIG_NLS_ISO8859_2=m +CONFIG_NLS_ISO8859_3=m +CONFIG_NLS_ISO8859_4=m +CONFIG_NLS_ISO8859_5=m +CONFIG_NLS_ISO8859_6=m +CONFIG_NLS_ISO8859_7=m +CONFIG_NLS_ISO8859_9=m +CONFIG_NLS_ISO8859_13=m +CONFIG_NLS_ISO8859_14=m +CONFIG_NLS_ISO8859_15=m +CONFIG_NLS_KOI8_R=m +CONFIG_NLS_KOI8_U=m +CONFIG_NLS_MAC_ROMAN=m +CONFIG_NLS_MAC_CELTIC=m +CONFIG_NLS_MAC_CENTEURO=m +CONFIG_NLS_MAC_CROATIAN=m +CONFIG_NLS_MAC_CYRILLIC=m +CONFIG_NLS_MAC_GAELIC=m +CONFIG_NLS_MAC_GREEK=m +CONFIG_NLS_MAC_ICELAND=m +CONFIG_NLS_MAC_INUIT=m +CONFIG_NLS_MAC_ROMANIAN=m +CONFIG_NLS_MAC_TURKISH=m +CONFIG_NLS_UTF8=m +CONFIG_DLM=m +CONFIG_DLM_DEBUG=y +# CONFIG_UNICODE is not set +CONFIG_IO_WQ=y +# end of File systems + +# +# Security options +# +CONFIG_KEYS=y +CONFIG_KEYS_REQUEST_CACHE=y +# CONFIG_PERSISTENT_KEYRINGS is not set +# CONFIG_ENCRYPTED_KEYS is not set +# CONFIG_KEY_DH_OPERATIONS is not set +CONFIG_KEY_NOTIFICATIONS=y +CONFIG_SECURITY_DMESG_RESTRICT=y +CONFIG_SECURITY=y +CONFIG_SECURITYFS=y +CONFIG_SECURITY_NETWORK=y +# CONFIG_SECURITY_INFINIBAND is not set +CONFIG_SECURITY_NETWORK_XFRM=y +CONFIG_SECURITY_PATH=y +CONFIG_LSM_MMAP_MIN_ADDR=32768 +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +CONFIG_HARDENED_USERCOPY=y +# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +CONFIG_SECURITY_SELINUX=y +# CONFIG_SECURITY_SELINUX_BOOTPARAM is not set +# CONFIG_SECURITY_SELINUX_DISABLE is not set +CONFIG_SECURITY_SELINUX_DEVELOP=y +CONFIG_SECURITY_SELINUX_AVC_STATS=y +CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=0 +CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS=9 +CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE=256 +# CONFIG_SECURITY_SMACK is not set +CONFIG_SECURITY_TOMOYO=y +CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY=2048 +CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG=1024 +# CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER is not set +CONFIG_SECURITY_TOMOYO_POLICY_LOADER="/sbin/tomoyo-init" +CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER="/sbin/init" +# CONFIG_SECURITY_TOMOYO_INSECURE_BUILTIN_SETTING is not set +CONFIG_SECURITY_APPARMOR=y +CONFIG_SECURITY_APPARMOR_HASH=y +CONFIG_SECURITY_APPARMOR_HASH_DEFAULT=y +# CONFIG_SECURITY_APPARMOR_DEBUG is not set +# CONFIG_SECURITY_LOADPIN is not set +CONFIG_SECURITY_YAMA=y +# CONFIG_SECURITY_SAFESETID is not set +# CONFIG_SECURITY_LOCKDOWN_LSM is not set +CONFIG_SECURITY_LANDLOCK=y +CONFIG_INTEGRITY=y +CONFIG_INTEGRITY_SIGNATURE=y +CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y +CONFIG_INTEGRITY_TRUSTED_KEYRING=y +CONFIG_INTEGRITY_AUDIT=y +# CONFIG_IMA is not set +# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set +# CONFIG_EVM is not set +# CONFIG_DEFAULT_SECURITY_SELINUX is not set +# CONFIG_DEFAULT_SECURITY_TOMOYO is not set +CONFIG_DEFAULT_SECURITY_APPARMOR=y +# CONFIG_DEFAULT_SECURITY_DAC is not set +CONFIG_LSM="yama,loadpin,safesetid,integrity,apparmor,selinux,smack,tomoyo" + +# +# Kernel hardening options +# +CONFIG_GCC_PLUGIN_STRUCTLEAK=y + +# +# Memory initialization +# +# CONFIG_INIT_STACK_NONE is not set +# CONFIG_GCC_PLUGIN_STRUCTLEAK_USER is not set +# CONFIG_GCC_PLUGIN_STRUCTLEAK_BYREF is not set +CONFIG_GCC_PLUGIN_STRUCTLEAK_BYREF_ALL=y +# CONFIG_GCC_PLUGIN_STRUCTLEAK_VERBOSE is not set +CONFIG_GCC_PLUGIN_STACKLEAK=y +CONFIG_STACKLEAK_TRACK_MIN_SIZE=100 +# CONFIG_STACKLEAK_METRICS is not set +CONFIG_STACKLEAK_RUNTIME_DISABLE=y +CONFIG_INIT_ON_ALLOC_DEFAULT_ON=y +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +CONFIG_CC_HAS_ZERO_CALL_USED_REGS=y +CONFIG_ZERO_CALL_USED_REGS=y +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_XOR_BLOCKS=m +CONFIG_ASYNC_CORE=m +CONFIG_ASYNC_MEMCPY=m +CONFIG_ASYNC_XOR=m +CONFIG_ASYNC_PQ=m +CONFIG_ASYNC_RAID6_RECOV=m +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=m +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_SKCIPHER=y +CONFIG_CRYPTO_SKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG=m +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_RNG_DEFAULT=m +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_AKCIPHER=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_KPP=m +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +CONFIG_CRYPTO_USER=m +# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set +# CONFIG_CRYPTO_MANAGER_EXTRA_TESTS is not set +CONFIG_CRYPTO_GF128MUL=m +CONFIG_CRYPTO_NULL=m +CONFIG_CRYPTO_NULL2=y +CONFIG_CRYPTO_PCRYPT=m +CONFIG_CRYPTO_CRYPTD=m +CONFIG_CRYPTO_AUTHENC=m +CONFIG_CRYPTO_TEST=m +CONFIG_CRYPTO_ENGINE=m + +# +# Public-key cryptography +# +CONFIG_CRYPTO_RSA=y +CONFIG_CRYPTO_DH=m +CONFIG_CRYPTO_ECC=m +CONFIG_CRYPTO_ECDH=m +CONFIG_CRYPTO_ECDSA=m +CONFIG_CRYPTO_ECRDSA=m +CONFIG_CRYPTO_SM2=m +CONFIG_CRYPTO_CURVE25519=m + +# +# Authenticated Encryption with Associated Data +# +CONFIG_CRYPTO_CCM=m +CONFIG_CRYPTO_GCM=m +CONFIG_CRYPTO_CHACHA20POLY1305=m +CONFIG_CRYPTO_AEGIS128=m +CONFIG_CRYPTO_AEGIS128_SIMD=y +CONFIG_CRYPTO_SEQIV=m +CONFIG_CRYPTO_ECHAINIV=m + +# +# Block modes +# +CONFIG_CRYPTO_CBC=m +CONFIG_CRYPTO_CFB=m +CONFIG_CRYPTO_CTR=m +CONFIG_CRYPTO_CTS=m +CONFIG_CRYPTO_ECB=m +CONFIG_CRYPTO_LRW=m +CONFIG_CRYPTO_OFB=m +CONFIG_CRYPTO_PCBC=m +CONFIG_CRYPTO_XTS=m +# CONFIG_CRYPTO_KEYWRAP is not set +CONFIG_CRYPTO_NHPOLY1305=m +CONFIG_CRYPTO_ADIANTUM=m +CONFIG_CRYPTO_ESSIV=m + +# +# Hash modes +# +CONFIG_CRYPTO_CMAC=m +CONFIG_CRYPTO_HMAC=y +CONFIG_CRYPTO_XCBC=m +CONFIG_CRYPTO_VMAC=m + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=y +CONFIG_CRYPTO_CRC32=m +CONFIG_CRYPTO_XXHASH=m +CONFIG_CRYPTO_BLAKE2B=m +CONFIG_CRYPTO_BLAKE2S=m +CONFIG_CRYPTO_CRCT10DIF=y +CONFIG_CRYPTO_GHASH=m +CONFIG_CRYPTO_POLY1305=m +CONFIG_CRYPTO_MD4=m +CONFIG_CRYPTO_MD5=y +CONFIG_CRYPTO_MICHAEL_MIC=m +CONFIG_CRYPTO_RMD160=m +CONFIG_CRYPTO_SHA1=y +CONFIG_CRYPTO_SHA256=y +CONFIG_CRYPTO_SHA512=m +CONFIG_CRYPTO_SHA3=m +CONFIG_CRYPTO_SM3=m +CONFIG_CRYPTO_STREEBOG=m +CONFIG_CRYPTO_WP512=m + +# +# Ciphers +# +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_TI is not set +CONFIG_CRYPTO_ANUBIS=m +CONFIG_CRYPTO_ARC4=m +CONFIG_CRYPTO_BLOWFISH=m +CONFIG_CRYPTO_BLOWFISH_COMMON=m +CONFIG_CRYPTO_CAMELLIA=m +CONFIG_CRYPTO_CAST_COMMON=m +CONFIG_CRYPTO_CAST5=m +CONFIG_CRYPTO_CAST6=m +CONFIG_CRYPTO_DES=m +CONFIG_CRYPTO_FCRYPT=m +CONFIG_CRYPTO_KHAZAD=m +CONFIG_CRYPTO_CHACHA20=m +CONFIG_CRYPTO_SEED=m +CONFIG_CRYPTO_SERPENT=m +CONFIG_CRYPTO_SM4=m +CONFIG_CRYPTO_TEA=m +CONFIG_CRYPTO_TWOFISH=m +CONFIG_CRYPTO_TWOFISH_COMMON=m + +# +# Compression +# +CONFIG_CRYPTO_DEFLATE=m +CONFIG_CRYPTO_LZO=y +# CONFIG_CRYPTO_842 is not set +CONFIG_CRYPTO_LZ4=m +CONFIG_CRYPTO_LZ4HC=m +CONFIG_CRYPTO_ZSTD=m + +# +# Random Number Generation +# +CONFIG_CRYPTO_ANSI_CPRNG=m +CONFIG_CRYPTO_DRBG_MENU=m +CONFIG_CRYPTO_DRBG_HMAC=y +# CONFIG_CRYPTO_DRBG_HASH is not set +# CONFIG_CRYPTO_DRBG_CTR is not set +CONFIG_CRYPTO_DRBG=m +CONFIG_CRYPTO_JITTERENTROPY=m +CONFIG_CRYPTO_USER_API=m +CONFIG_CRYPTO_USER_API_HASH=m +CONFIG_CRYPTO_USER_API_SKCIPHER=m +CONFIG_CRYPTO_USER_API_RNG=m +# CONFIG_CRYPTO_USER_API_RNG_CAVP is not set +CONFIG_CRYPTO_USER_API_AEAD=m +CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE=y +# CONFIG_CRYPTO_STATS is not set +CONFIG_CRYPTO_HASH_INFO=y + +# +# Crypto library routines +# +CONFIG_CRYPTO_LIB_AES=y +CONFIG_CRYPTO_LIB_ARC4=m +CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=m +CONFIG_CRYPTO_LIB_BLAKE2S=m +CONFIG_CRYPTO_ARCH_HAVE_LIB_CHACHA=m +CONFIG_CRYPTO_LIB_CHACHA_GENERIC=m +CONFIG_CRYPTO_LIB_CHACHA=m +CONFIG_CRYPTO_LIB_CURVE25519_GENERIC=m +CONFIG_CRYPTO_LIB_CURVE25519=m +CONFIG_CRYPTO_LIB_DES=m +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=9 +CONFIG_CRYPTO_ARCH_HAVE_LIB_POLY1305=m +CONFIG_CRYPTO_LIB_POLY1305_GENERIC=m +CONFIG_CRYPTO_LIB_POLY1305=m +CONFIG_CRYPTO_LIB_CHACHA20POLY1305=m +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_LIB_SM4=m +CONFIG_CRYPTO_HW=y +CONFIG_CRYPTO_DEV_ALLWINNER=y +CONFIG_CRYPTO_DEV_SUN4I_SS=m +# CONFIG_CRYPTO_DEV_SUN4I_SS_PRNG is not set +# CONFIG_CRYPTO_DEV_SUN4I_SS_DEBUG is not set +CONFIG_CRYPTO_DEV_SUN8I_CE=m +# CONFIG_CRYPTO_DEV_SUN8I_CE_DEBUG is not set +# CONFIG_CRYPTO_DEV_SUN8I_CE_HASH is not set +# CONFIG_CRYPTO_DEV_SUN8I_CE_PRNG is not set +# CONFIG_CRYPTO_DEV_SUN8I_CE_TRNG is not set +CONFIG_CRYPTO_DEV_SUN8I_SS=m +# CONFIG_CRYPTO_DEV_SUN8I_SS_DEBUG is not set +# CONFIG_CRYPTO_DEV_SUN8I_SS_PRNG is not set +# CONFIG_CRYPTO_DEV_SUN8I_SS_HASH is not set +CONFIG_CRYPTO_DEV_FSL_CAAM_COMMON=m +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC=m +CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API_DESC=m +CONFIG_CRYPTO_DEV_FSL_CAAM=m +# CONFIG_CRYPTO_DEV_FSL_CAAM_DEBUG is not set +CONFIG_CRYPTO_DEV_FSL_CAAM_JR=m +CONFIG_CRYPTO_DEV_FSL_CAAM_RINGSIZE=9 +# CONFIG_CRYPTO_DEV_FSL_CAAM_INTC is not set +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_PKC_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_RNG_API=y +CONFIG_CRYPTO_DEV_SAHARA=m +CONFIG_CRYPTO_DEV_ATMEL_I2C=m +CONFIG_CRYPTO_DEV_ATMEL_ECC=m +CONFIG_CRYPTO_DEV_ATMEL_SHA204A=m +# CONFIG_CRYPTO_DEV_CCP is not set +# CONFIG_CRYPTO_DEV_MXS_DCP is not set +CONFIG_CRYPTO_DEV_CPT=m +CONFIG_CAVIUM_CPT=m +CONFIG_CRYPTO_DEV_NITROX=m +CONFIG_CRYPTO_DEV_NITROX_CNN55XX=m +CONFIG_CRYPTO_DEV_MARVELL=m +CONFIG_CRYPTO_DEV_MARVELL_CESA=m +# CONFIG_CRYPTO_DEV_OCTEONTX_CPT is not set +CONFIG_CRYPTO_DEV_OCTEONTX2_CPT=m +# CONFIG_CRYPTO_DEV_CAVIUM_ZIP is not set +CONFIG_CRYPTO_DEV_QCE=m +CONFIG_CRYPTO_DEV_QCE_SKCIPHER=y +CONFIG_CRYPTO_DEV_QCE_SHA=y +CONFIG_CRYPTO_DEV_QCE_AEAD=y +CONFIG_CRYPTO_DEV_QCE_ENABLE_ALL=y +# CONFIG_CRYPTO_DEV_QCE_ENABLE_SKCIPHER is not set +# CONFIG_CRYPTO_DEV_QCE_ENABLE_SHA is not set +# CONFIG_CRYPTO_DEV_QCE_ENABLE_AEAD is not set +CONFIG_CRYPTO_DEV_QCE_SW_MAX_LEN=512 +CONFIG_CRYPTO_DEV_QCOM_RNG=m +# CONFIG_CRYPTO_DEV_ROCKCHIP is not set +CONFIG_CRYPTO_DEV_CHELSIO=m +CONFIG_CRYPTO_DEV_VIRTIO=m +CONFIG_CRYPTO_DEV_SAFEXCEL=m +# CONFIG_CRYPTO_DEV_CCREE is not set +CONFIG_CRYPTO_DEV_HISI_SEC=m +CONFIG_CRYPTO_DEV_HISI_SEC2=m +CONFIG_CRYPTO_DEV_HISI_QM=m +CONFIG_CRYPTO_DEV_HISI_ZIP=m +CONFIG_CRYPTO_DEV_HISI_HPRE=m +CONFIG_CRYPTO_DEV_HISI_TRNG=m +CONFIG_CRYPTO_DEV_AMLOGIC_GXL=m +# CONFIG_CRYPTO_DEV_AMLOGIC_GXL_DEBUG is not set +# CONFIG_CRYPTO_DEV_KEEMBAY_OCS_AES_SM4 is not set +# CONFIG_CRYPTO_DEV_KEEMBAY_OCS_ECC is not set +# CONFIG_CRYPTO_DEV_KEEMBAY_OCS_HCU is not set +CONFIG_ASYMMETRIC_KEY_TYPE=y +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y +CONFIG_X509_CERTIFICATE_PARSER=y +CONFIG_PKCS8_PRIVATE_KEY_PARSER=m +CONFIG_PKCS7_MESSAGE_PARSER=y +# CONFIG_PKCS7_TEST_KEY is not set +# CONFIG_SIGNED_PE_FILE_VERIFICATION is not set + +# +# Certificates for signature checking +# +CONFIG_SYSTEM_TRUSTED_KEYRING=y +CONFIG_SYSTEM_TRUSTED_KEYS="" +# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set +# CONFIG_SECONDARY_TRUSTED_KEYRING is not set +# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set +# end of Certificates for signature checking + +CONFIG_BINARY_PRINTF=y + +# +# Library routines +# +CONFIG_RAID6_PQ=m +CONFIG_RAID6_PQ_BENCHMARK=y +CONFIG_LINEAR_RANGES=y +CONFIG_PACKING=y +CONFIG_BITREVERSE=y +CONFIG_HAVE_ARCH_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +CONFIG_CORDIC=m +CONFIG_PRIME_NUMBERS=m +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_STMP_DEVICE=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +CONFIG_ARCH_USE_SYM_ANNOTATIONS=y +# CONFIG_INDIRECT_PIO is not set +CONFIG_CRC_CCITT=m +CONFIG_CRC16=y +CONFIG_CRC_T10DIF=y +CONFIG_CRC_ITU_T=m +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +CONFIG_CRC64=m +# CONFIG_CRC4 is not set +CONFIG_CRC7=m +CONFIG_LIBCRC32C=m +CONFIG_CRC8=y +CONFIG_XXHASH=y +CONFIG_AUDIT_GENERIC=y +CONFIG_AUDIT_ARCH_COMPAT_GENERIC=y +CONFIG_AUDIT_COMPAT_GENERIC=y +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_LZ4_COMPRESS=m +CONFIG_LZ4HC_COMPRESS=m +CONFIG_LZ4_DECOMPRESS=y +CONFIG_ZSTD_COMPRESS=m +CONFIG_ZSTD_DECOMPRESS=y +CONFIG_XZ_DEC=y +# CONFIG_XZ_DEC_X86 is not set +# CONFIG_XZ_DEC_POWERPC is not set +# CONFIG_XZ_DEC_IA64 is not set +# CONFIG_XZ_DEC_ARM is not set +# CONFIG_XZ_DEC_ARMTHUMB is not set +# CONFIG_XZ_DEC_SPARC is not set +CONFIG_XZ_DEC_MICROLZMA=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_GZIP=y +CONFIG_DECOMPRESS_BZIP2=y +CONFIG_DECOMPRESS_LZMA=y +CONFIG_DECOMPRESS_XZ=y +CONFIG_DECOMPRESS_LZO=y +CONFIG_DECOMPRESS_LZ4=y +CONFIG_DECOMPRESS_ZSTD=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_REED_SOLOMON=m +CONFIG_REED_SOLOMON_ENC8=y +CONFIG_REED_SOLOMON_DEC8=y +CONFIG_REED_SOLOMON_DEC16=y +CONFIG_BCH=m +CONFIG_TEXTSEARCH=y +CONFIG_TEXTSEARCH_KMP=m +CONFIG_TEXTSEARCH_BM=m +CONFIG_TEXTSEARCH_FSM=m +CONFIG_BTREE=y +CONFIG_INTERVAL_TREE=y +CONFIG_XARRAY_MULTI=y +CONFIG_ASSOCIATIVE_ARRAY=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_DMA_OPS=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_DMA_DECLARE_COHERENT=y +CONFIG_ARCH_HAS_SETUP_DMA_OPS=y +CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS=y +CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y +CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU=y +CONFIG_ARCH_HAS_DMA_PREP_COHERENT=y +CONFIG_SWIOTLB=y +CONFIG_DMA_RESTRICTED_POOL=y +CONFIG_DMA_NONCOHERENT_MMAP=y +CONFIG_DMA_COHERENT_POOL=y +CONFIG_DMA_REMAP=y +CONFIG_DMA_DIRECT_REMAP=y +CONFIG_DMA_CMA=y +CONFIG_DMA_PERNUMA_CMA=y + +# +# Default contiguous memory area size: +# +CONFIG_CMA_SIZE_MBYTES=64 +CONFIG_CMA_SIZE_SEL_MBYTES=y +# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set +# CONFIG_CMA_SIZE_SEL_MIN is not set +# CONFIG_CMA_SIZE_SEL_MAX is not set +CONFIG_CMA_ALIGNMENT=8 +# CONFIG_DMA_API_DEBUG is not set +# CONFIG_DMA_MAP_BENCHMARK is not set +CONFIG_SGL_ALLOC=y +CONFIG_CHECK_SIGNATURE=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +CONFIG_NLATTR=y +CONFIG_LRU_CACHE=m +CONFIG_CLZ_TAB=y +CONFIG_IRQ_POLL=y +CONFIG_MPILIB=y +CONFIG_SIGNATURE=y +CONFIG_DIMLIB=y +CONFIG_LIBFDT=y +CONFIG_OID_REGISTRY=y +CONFIG_UCS2_STRING=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_GENERIC_VDSO_TIME_NS=y +CONFIG_FONT_SUPPORT=y +CONFIG_FONTS=y +CONFIG_FONT_8x8=y +CONFIG_FONT_8x16=y +# CONFIG_FONT_6x11 is not set +# CONFIG_FONT_7x14 is not set +# CONFIG_FONT_PEARL_8x8 is not set +# CONFIG_FONT_ACORN_8x8 is not set +# CONFIG_FONT_MINI_4x6 is not set +CONFIG_FONT_6x10=y +# CONFIG_FONT_10x18 is not set +# CONFIG_FONT_SUN8x16 is not set +# CONFIG_FONT_SUN12x22 is not set +CONFIG_FONT_TER16x32=y +CONFIG_FONT_6x8=y +CONFIG_SG_SPLIT=y +CONFIG_SG_POOL=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_MEMREGION=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_ARCH_STACKWALK=y +CONFIG_SBITMAP=y +# end of Library routines + +CONFIG_GENERIC_LIB_DEVMEM_IS_ALLOWED=y + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +CONFIG_PRINTK_TIME=y +# CONFIG_PRINTK_CALLER is not set +CONFIG_STACKTRACE_BUILD_ID=y +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +CONFIG_BOOT_PRINTK_DELAY=y +CONFIG_DYNAMIC_DEBUG=y +CONFIG_DYNAMIC_DEBUG_CORE=y +CONFIG_SYMBOLIC_ERRNAME=y +CONFIG_DEBUG_BUGVERBOSE=y +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +CONFIG_DEBUG_INFO=y +# CONFIG_DEBUG_INFO_REDUCED is not set +# CONFIG_DEBUG_INFO_COMPRESSED is not set +# CONFIG_DEBUG_INFO_SPLIT is not set +CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT=y +# CONFIG_DEBUG_INFO_DWARF4 is not set +# CONFIG_DEBUG_INFO_DWARF5 is not set +# CONFIG_DEBUG_INFO_BTF is not set +# CONFIG_GDB_SCRIPTS is not set +CONFIG_FRAME_WARN=2048 +CONFIG_STRIP_ASM_SYMS=y +# CONFIG_READABLE_ASM is not set +# CONFIG_HEADERS_INSTALL is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set +CONFIG_ARCH_WANT_FRAME_POINTERS=y +CONFIG_FRAME_POINTER=y +# CONFIG_VMLINUX_MAP is not set +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +# +# Generic Kernel Debugging Instruments +# +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 +CONFIG_MAGIC_SYSRQ_SERIAL=y +CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" +CONFIG_DEBUG_FS=y +CONFIG_DEBUG_FS_ALLOW_ALL=y +# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set +# CONFIG_DEBUG_FS_ALLOW_NONE is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +CONFIG_HAVE_KCSAN_COMPILER=y +# end of Generic Kernel Debugging Instruments + +CONFIG_DEBUG_KERNEL=y +CONFIG_DEBUG_MISC=y + +# +# Memory Debugging +# +CONFIG_PAGE_EXTENSION=y +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_OWNER is not set +CONFIG_PAGE_POISONING=y +# CONFIG_DEBUG_PAGE_REF is not set +# CONFIG_DEBUG_RODATA_TEST is not set +CONFIG_ARCH_HAS_DEBUG_WX=y +# CONFIG_DEBUG_WX is not set +CONFIG_GENERIC_PTDUMP=y +# CONFIG_PTDUMP_DEBUGFS is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_SLUB_DEBUG_ON is not set +# CONFIG_SLUB_STATS is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +CONFIG_SCHED_STACK_END_CHECK=y +CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y +# CONFIG_DEBUG_VM is not set +CONFIG_DEBUG_VM_PGTABLE=y +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +CONFIG_DEBUG_MEMORY_INIT=y +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_HAVE_ARCH_KASAN_SW_TAGS=y +CONFIG_HAVE_ARCH_KASAN_VMALLOC=y +CONFIG_CC_HAS_KASAN_GENERIC=y +CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y +# CONFIG_KASAN is not set +CONFIG_HAVE_ARCH_KFENCE=y +CONFIG_KFENCE=y +CONFIG_KFENCE_SAMPLE_INTERVAL=0 +CONFIG_KFENCE_NUM_OBJECTS=255 +CONFIG_KFENCE_STATIC_KEYS=y +CONFIG_KFENCE_STRESS_TEST_FAULTS=0 +# end of Memory Debugging + +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Oops, Lockups and Hangs +# +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +CONFIG_LOCKUP_DETECTOR=y +CONFIG_SOFTLOCKUP_DETECTOR=y +# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 +CONFIG_DETECT_HUNG_TASK=y +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set +CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 +# CONFIG_WQ_WATCHDOG is not set +# CONFIG_TEST_LOCKUP is not set +# end of Debug Oops, Lockups and Hangs + +# +# Scheduler Debugging +# +CONFIG_SCHED_DEBUG=y +CONFIG_SCHED_INFO=y +CONFIG_SCHEDSTATS=y +# end of Scheduler Debugging + +# CONFIG_DEBUG_TIMEKEEPING is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# CONFIG_SCF_TORTURE_TEST is not set +# CONFIG_CSD_LOCK_WAIT_DEBUG is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +# CONFIG_DEBUG_IRQFLAGS is not set +CONFIG_STACKTRACE=y +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set + +# +# Debug kernel data structures +# +CONFIG_DEBUG_LIST=y +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +CONFIG_BUG_ON_DATA_CORRUPTION=y +# end of Debug kernel data structures + +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_RCU_SCALE_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +# CONFIG_RCU_REF_SCALE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_LATENCYTOP is not set +CONFIG_NOP_TRACER=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACER_MAX_TRACE=y +CONFIG_TRACE_CLOCK=y +CONFIG_RING_BUFFER=y +CONFIG_EVENT_TRACING=y +CONFIG_CONTEXT_SWITCH_TRACER=y +CONFIG_TRACING=y +CONFIG_GENERIC_TRACER=y +CONFIG_TRACING_SUPPORT=y +CONFIG_FTRACE=y +# CONFIG_BOOTTIME_TRACING is not set +CONFIG_FUNCTION_TRACER=y +CONFIG_FUNCTION_GRAPH_TRACER=y +CONFIG_DYNAMIC_FTRACE=y +CONFIG_DYNAMIC_FTRACE_WITH_REGS=y +# CONFIG_FUNCTION_PROFILER is not set +CONFIG_STACK_TRACER=y +# CONFIG_IRQSOFF_TRACER is not set +# CONFIG_SCHED_TRACER is not set +# CONFIG_HWLAT_TRACER is not set +# CONFIG_OSNOISE_TRACER is not set +# CONFIG_TIMERLAT_TRACER is not set +CONFIG_FTRACE_SYSCALLS=y +CONFIG_TRACER_SNAPSHOT=y +# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set +CONFIG_BRANCH_PROFILE_NONE=y +# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set +# CONFIG_PROFILE_ALL_BRANCHES is not set +CONFIG_BLK_DEV_IO_TRACE=y +CONFIG_KPROBE_EVENTS=y +# CONFIG_KPROBE_EVENTS_ON_NOTRACE is not set +CONFIG_UPROBE_EVENTS=y +CONFIG_BPF_EVENTS=y +CONFIG_DYNAMIC_EVENTS=y +CONFIG_PROBE_EVENTS=y +# CONFIG_BPF_KPROBE_OVERRIDE is not set +CONFIG_FTRACE_MCOUNT_RECORD=y +CONFIG_FTRACE_MCOUNT_USE_PATCHABLE_FUNCTION_ENTRY=y +CONFIG_SYNTH_EVENTS=y +# CONFIG_HIST_TRIGGERS is not set +# CONFIG_TRACE_EVENT_INJECT is not set +# CONFIG_TRACEPOINT_BENCHMARK is not set +# CONFIG_RING_BUFFER_BENCHMARK is not set +# CONFIG_TRACE_EVAL_MAP_FILE is not set +# CONFIG_FTRACE_RECORD_RECURSION is not set +# CONFIG_FTRACE_STARTUP_TEST is not set +# CONFIG_RING_BUFFER_STARTUP_TEST is not set +# CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS is not set +# CONFIG_PREEMPTIRQ_DELAY_TEST is not set +# CONFIG_SYNTH_EVENT_GEN_TEST is not set +# CONFIG_KPROBE_EVENT_GEN_TEST is not set +# CONFIG_SAMPLES is not set +CONFIG_STRICT_DEVMEM=y +CONFIG_IO_STRICT_DEVMEM=y + +# +# arm64 Debugging +# +# CONFIG_PID_IN_CONTEXTIDR is not set +# CONFIG_DEBUG_EFI is not set +# CONFIG_ARM64_RELOC_TEST is not set +# CONFIG_CORESIGHT is not set +# end of arm64 Debugging + +# +# Kernel Testing and Coverage +# +# CONFIG_KUNIT is not set +CONFIG_NOTIFIER_ERROR_INJECTION=m +CONFIG_PM_NOTIFIER_ERROR_INJECT=m +# CONFIG_NETDEV_NOTIFIER_ERROR_INJECT is not set +CONFIG_FUNCTION_ERROR_INJECTION=y +# CONFIG_FAULT_INJECTION is not set +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +CONFIG_RUNTIME_TESTING_MENU=y +# CONFIG_LKDTM is not set +# CONFIG_TEST_MIN_HEAP is not set +# CONFIG_TEST_DIV64 is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_REED_SOLOMON_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +# CONFIG_PERCPU_TEST is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_ASYNC_RAID6_TEST is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_STRING_SELFTEST is not set +# CONFIG_TEST_STRING_HELPERS is not set +CONFIG_TEST_STRSCPY=m +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_PRINTF is not set +CONFIG_TEST_SCANF=m +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_UUID is not set +CONFIG_TEST_XARRAY=m +# CONFIG_TEST_OVERFLOW is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_HASH is not set +# CONFIG_TEST_IDA is not set +# CONFIG_TEST_LKM is not set +CONFIG_TEST_BITOPS=m +CONFIG_TEST_VMALLOC=m +CONFIG_TEST_USER_COPY=m +CONFIG_TEST_BPF=m +CONFIG_TEST_BLACKHOLE_DEV=m +# CONFIG_FIND_BIT_BENCHMARK is not set +CONFIG_TEST_FIRMWARE=m +# CONFIG_TEST_SYSCTL is not set +# CONFIG_TEST_UDELAY is not set +CONFIG_TEST_STATIC_KEYS=m +# CONFIG_TEST_KMOD is not set +# CONFIG_TEST_MEMCAT_P is not set +# CONFIG_TEST_STACKINIT is not set +# CONFIG_TEST_MEMINIT is not set +# CONFIG_TEST_FREE_PAGES is not set +CONFIG_ARCH_USE_MEMTEST=y +# CONFIG_MEMTEST is not set +# CONFIG_HYPERV_TESTING is not set +# end of Kernel Testing and Coverage +# end of Kernel hacking diff --git a/gnu/packages/aux-files/linux-libre/5.16-i686.conf b/gnu/packages/aux-files/linux-libre/5.16-i686.conf new file mode 100644 index 0000000000..edaca0b891 --- /dev/null +++ b/gnu/packages/aux-files/linux-libre/5.16-i686.conf @@ -0,0 +1,11097 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/i386 5.16.0 Kernel Configuration +# +CONFIG_CC_VERSION_TEXT="gcc (GCC) 11.2.0" +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=110200 +CONFIG_CLANG_VERSION=0 +CONFIG_AS_IS_GNU=y +CONFIG_AS_VERSION=23700 +CONFIG_LD_IS_BFD=y +CONFIG_LD_VERSION=23700 +CONFIG_LLD_VERSION=0 +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_GOTO_OUTPUT=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_TABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +# CONFIG_WERROR is not set +CONFIG_LOCALVERSION="" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_BUILD_SALT="" +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +CONFIG_HAVE_KERNEL_ZSTD=y +CONFIG_KERNEL_GZIP=y +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +# CONFIG_KERNEL_XZ is not set +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +# CONFIG_KERNEL_ZSTD is not set +CONFIG_DEFAULT_INIT="" +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_SWAP=y +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +CONFIG_WATCH_QUEUE=y +CONFIG_CROSS_MEMORY_ATTACH=y +CONFIG_USELIB=y +CONFIG_AUDIT=y +CONFIG_HAVE_ARCH_AUDITSYSCALL=y +CONFIG_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_HARDIRQS_SW_RESEND=y +CONFIG_GENERIC_IRQ_CHIP=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +CONFIG_IRQ_MSI_IOMMU=y +CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y +CONFIG_GENERIC_IRQ_RESERVATION_MODE=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +# end of IRQ subsystem + +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_INIT=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y +CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y +CONFIG_POSIX_CPU_TIMERS_TASK_WORK=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +CONFIG_NO_HZ_IDLE=y +CONFIG_NO_HZ=y +CONFIG_HIGH_RES_TIMERS=y +# end of Timers subsystem + +CONFIG_BPF=y +CONFIG_HAVE_EBPF_JIT=y + +# +# BPF subsystem +# +CONFIG_BPF_SYSCALL=y +# CONFIG_BPF_JIT is not set +# CONFIG_BPF_UNPRIV_DEFAULT_OFF is not set +# CONFIG_BPF_PRELOAD is not set +# end of BPF subsystem + +CONFIG_PREEMPT_BUILD=y +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_PREEMPT is not set +CONFIG_PREEMPT_COUNT=y +CONFIG_PREEMPTION=y +CONFIG_PREEMPT_DYNAMIC=y +CONFIG_SCHED_CORE=y + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_TASKSTATS=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_XACCT=y +CONFIG_TASK_IO_ACCOUNTING=y +CONFIG_PSI=y +# CONFIG_PSI_DEFAULT_DISABLED is not set +# end of CPU/Task time and stats accounting + +CONFIG_CPU_ISOLATION=y + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +CONFIG_PREEMPT_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +CONFIG_TASKS_RCU_GENERIC=y +CONFIG_TASKS_RCU=y +CONFIG_TASKS_RUDE_RCU=y +CONFIG_TASKS_TRACE_RCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +# end of RCU Subsystem + +CONFIG_BUILD_BIN2C=y +# CONFIG_IKCONFIG is not set +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=18 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +# CONFIG_PRINTK_INDEX is not set +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y + +# +# Scheduler features +# +# CONFIG_UCLAMP_TASK is not set +# end of Scheduler features + +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_CC_IMPLICIT_FALLTHROUGH="-Wimplicit-fallthrough=5" +CONFIG_CGROUPS=y +CONFIG_PAGE_COUNTER=y +CONFIG_MEMCG=y +CONFIG_MEMCG_SWAP=y +CONFIG_MEMCG_KMEM=y +CONFIG_BLK_CGROUP=y +CONFIG_CGROUP_WRITEBACK=y +CONFIG_CGROUP_SCHED=y +CONFIG_FAIR_GROUP_SCHED=y +CONFIG_CFS_BANDWIDTH=y +# CONFIG_RT_GROUP_SCHED is not set +CONFIG_CGROUP_PIDS=y +# CONFIG_CGROUP_RDMA is not set +CONFIG_CGROUP_FREEZER=y +CONFIG_CGROUP_HUGETLB=y +CONFIG_CPUSETS=y +CONFIG_PROC_PID_CPUSET=y +CONFIG_CGROUP_DEVICE=y +CONFIG_CGROUP_CPUACCT=y +CONFIG_CGROUP_PERF=y +CONFIG_CGROUP_BPF=y +CONFIG_CGROUP_MISC=y +# CONFIG_CGROUP_DEBUG is not set +CONFIG_SOCK_CGROUP_DATA=y +CONFIG_NAMESPACES=y +CONFIG_UTS_NS=y +CONFIG_TIME_NS=y +CONFIG_IPC_NS=y +CONFIG_USER_NS=y +CONFIG_PID_NS=y +CONFIG_NET_NS=y +CONFIG_CHECKPOINT_RESTORE=y +CONFIG_SCHED_AUTOGROUP=y +# CONFIG_SYSFS_DEPRECATED is not set +CONFIG_RELAY=y +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="" +CONFIG_RD_GZIP=y +CONFIG_RD_BZIP2=y +CONFIG_RD_LZMA=y +CONFIG_RD_XZ=y +CONFIG_RD_LZO=y +CONFIG_RD_LZ4=y +CONFIG_RD_ZSTD=y +CONFIG_BOOT_CONFIG=y +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_LD_ORPHAN_WARN=y +CONFIG_SYSCTL=y +CONFIG_HAVE_UID16=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_EXPERT=y +CONFIG_UID16=y +CONFIG_MULTIUSER=y +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +CONFIG_FHANDLE=y +CONFIG_POSIX_TIMERS=y +CONFIG_PRINTK=y +CONFIG_BUG=y +CONFIG_ELF_CORE=y +CONFIG_PCSPKR_PLATFORM=y +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_IO_URING=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_MEMBARRIER=y +CONFIG_KALLSYMS=y +CONFIG_KALLSYMS_ALL=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +CONFIG_USERFAULTFD=y +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +CONFIG_KCMP=y +CONFIG_RSEQ=y +# CONFIG_DEBUG_RSEQ is not set +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters + +CONFIG_VM_EVENT_COUNTERS=y +CONFIG_SLUB_DEBUG=y +# CONFIG_COMPAT_BRK is not set +# CONFIG_SLAB is not set +CONFIG_SLUB=y +# CONFIG_SLOB is not set +CONFIG_SLAB_MERGE_DEFAULT=y +CONFIG_SLAB_FREELIST_RANDOM=y +CONFIG_SLAB_FREELIST_HARDENED=y +CONFIG_SHUFFLE_PAGE_ALLOCATOR=y +CONFIG_SLUB_CPU_PARTIAL=y +CONFIG_SYSTEM_DATA_VERIFICATION=y +CONFIG_PROFILING=y +CONFIG_TRACEPOINTS=y +# end of General setup + +CONFIG_X86_32=y +CONFIG_FORCE_DYNAMIC_FTRACE=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf32-i386" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_BITS_MAX=16 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_GENERIC_ISA_DMA=y +CONFIG_GENERIC_BUG=y +CONFIG_ARCH_MAY_HAVE_PC_FDC=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_FILTER_PGPROT=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_NR_GPIO=512 +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_HAVE_INTEL_TXT=y +CONFIG_X86_32_SMP=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=3 +CONFIG_CC_HAS_SANE_STACKPROTECTOR=y + +# +# Processor type and features +# +CONFIG_SMP=y +CONFIG_X86_FEATURE_NAMES=y +CONFIG_X86_MPPARSE=y +# CONFIG_GOLDFISH is not set +CONFIG_RETPOLINE=y +# CONFIG_X86_CPU_RESCTRL is not set +# CONFIG_X86_BIGSMP is not set +CONFIG_X86_EXTENDED_PLATFORM=y +# CONFIG_X86_GOLDFISH is not set +# CONFIG_X86_INTEL_MID is not set +CONFIG_X86_INTEL_QUARK=y +CONFIG_X86_INTEL_LPSS=y +CONFIG_X86_AMD_PLATFORM_DEVICE=y +CONFIG_IOSF_MBI=y +CONFIG_IOSF_MBI_DEBUG=y +CONFIG_X86_RDC321X=y +CONFIG_X86_32_NON_STANDARD=y +CONFIG_STA2X11=y +CONFIG_X86_32_IRIS=m +CONFIG_SCHED_OMIT_FRAME_POINTER=y +CONFIG_HYPERVISOR_GUEST=y +CONFIG_PARAVIRT=y +# CONFIG_PARAVIRT_DEBUG is not set +CONFIG_PARAVIRT_SPINLOCKS=y +CONFIG_X86_HV_CALLBACK_VECTOR=y +CONFIG_XEN=y +CONFIG_XEN_PVHVM=y +CONFIG_XEN_PVHVM_SMP=y +CONFIG_XEN_PVHVM_GUEST=y +CONFIG_XEN_SAVE_RESTORE=y +# CONFIG_XEN_DEBUG_FS is not set +CONFIG_XEN_PVH=y +CONFIG_KVM_GUEST=y +CONFIG_ARCH_CPUIDLE_HALTPOLL=y +CONFIG_PVH=y +# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set +CONFIG_PARAVIRT_CLOCK=y +# CONFIG_M486SX is not set +# CONFIG_M486 is not set +# CONFIG_M586 is not set +# CONFIG_M586TSC is not set +# CONFIG_M586MMX is not set +CONFIG_M686=y +# CONFIG_MPENTIUMII is not set +# CONFIG_MPENTIUMIII is not set +# CONFIG_MPENTIUMM is not set +# CONFIG_MPENTIUM4 is not set +# CONFIG_MK6 is not set +# CONFIG_MK7 is not set +# CONFIG_MK8 is not set +# CONFIG_MCRUSOE is not set +# CONFIG_MEFFICEON is not set +# CONFIG_MWINCHIPC6 is not set +# CONFIG_MWINCHIP3D is not set +# CONFIG_MELAN is not set +# CONFIG_MGEODEGX1 is not set +# CONFIG_MGEODE_LX is not set +# CONFIG_MCYRIXIII is not set +# CONFIG_MVIAC3_2 is not set +# CONFIG_MVIAC7 is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_X86_GENERIC=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_INTEL_USERCOPY=y +CONFIG_X86_USE_PPRO_CHECKSUM=y +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=6 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_IA32_FEAT_CTL=y +CONFIG_X86_VMX_FEATURE_NAMES=y +CONFIG_PROCESSOR_SELECT=y +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_CYRIX_32=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_HYGON=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_CPU_SUP_TRANSMETA_32=y +CONFIG_CPU_SUP_UMC_32=y +CONFIG_CPU_SUP_ZHAOXIN=y +CONFIG_CPU_SUP_VORTEX_32=y +CONFIG_HPET_TIMER=y +CONFIG_HPET_EMULATE_RTC=y +CONFIG_DMI=y +CONFIG_NR_CPUS_RANGE_BEGIN=2 +CONFIG_NR_CPUS_RANGE_END=8 +CONFIG_NR_CPUS_DEFAULT=8 +CONFIG_NR_CPUS=8 +CONFIG_SCHED_CLUSTER=y +CONFIG_SCHED_SMT=y +CONFIG_SCHED_MC=y +CONFIG_SCHED_MC_PRIO=y +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y +CONFIG_X86_MCE=y +# CONFIG_X86_MCELOG_LEGACY is not set +CONFIG_X86_MCE_INTEL=y +CONFIG_X86_MCE_AMD=y +# CONFIG_X86_ANCIENT_MCE is not set +CONFIG_X86_MCE_THRESHOLD=y +# CONFIG_X86_MCE_INJECT is not set + +# +# Performance monitoring +# +CONFIG_PERF_EVENTS_INTEL_UNCORE=y +CONFIG_PERF_EVENTS_INTEL_RAPL=y +CONFIG_PERF_EVENTS_INTEL_CSTATE=y +CONFIG_PERF_EVENTS_AMD_POWER=m +CONFIG_PERF_EVENTS_AMD_UNCORE=m +# end of Performance monitoring + +# CONFIG_X86_LEGACY_VM86 is not set +CONFIG_X86_16BIT=y +CONFIG_X86_ESPFIX32=y +CONFIG_X86_IOPL_IOPERM=y +# CONFIG_TOSHIBA is not set +CONFIG_I8K=m +CONFIG_X86_REBOOTFIXUPS=y +CONFIG_MICROCODE=y +CONFIG_MICROCODE_INTEL=y +CONFIG_MICROCODE_AMD=y +CONFIG_MICROCODE_OLD_INTERFACE=y +CONFIG_X86_MSR=m +CONFIG_X86_CPUID=m +# CONFIG_NOHIGHMEM is not set +# CONFIG_HIGHMEM4G is not set +CONFIG_HIGHMEM64G=y +CONFIG_VMSPLIT_3G=y +# CONFIG_VMSPLIT_2G is not set +# CONFIG_VMSPLIT_1G is not set +CONFIG_PAGE_OFFSET=0xC0000000 +CONFIG_HIGHMEM=y +CONFIG_X86_PAE=y +# CONFIG_X86_CPA_STATISTICS is not set +CONFIG_ARCH_FLATMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ILLEGAL_POINTER_VALUE=0 +CONFIG_X86_PMEM_LEGACY_DEVICE=y +CONFIG_X86_PMEM_LEGACY=y +CONFIG_HIGHPTE=y +CONFIG_X86_CHECK_BIOS_CORRUPTION=y +CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=1 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +CONFIG_X86_SMAP=y +CONFIG_X86_UMIP=y +CONFIG_X86_INTEL_TSX_MODE_OFF=y +# CONFIG_X86_INTEL_TSX_MODE_ON is not set +# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set +CONFIG_EFI=y +CONFIG_EFI_STUB=y +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 +CONFIG_SCHED_HRTICK=y +CONFIG_KEXEC=y +CONFIG_CRASH_DUMP=y +CONFIG_KEXEC_JUMP=y +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +CONFIG_RANDOMIZE_BASE=y +CONFIG_X86_NEED_RELOCS=y +CONFIG_PHYSICAL_ALIGN=0x1000000 +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +# CONFIG_COMPAT_VDSO is not set +# CONFIG_CMDLINE_BOOL is not set +CONFIG_MODIFY_LDT_SYSCALL=y +# CONFIG_STRICT_SIGALTSTACK_SIZE is not set +# end of Processor type and features + +CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y + +# +# Power management and ACPI options +# +CONFIG_ARCH_HIBERNATION_HEADER=y +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +CONFIG_HIBERNATE_CALLBACKS=y +CONFIG_HIBERNATION=y +CONFIG_HIBERNATION_SNAPSHOT_DEV=y +CONFIG_PM_STD_PARTITION="" +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +# CONFIG_PM_AUTOSLEEP is not set +CONFIG_PM_WAKELOCKS=y +CONFIG_PM_WAKELOCKS_LIMIT=100 +CONFIG_PM_WAKELOCKS_GC=y +CONFIG_PM=y +CONFIG_PM_DEBUG=y +CONFIG_PM_ADVANCED_DEBUG=y +# CONFIG_PM_TEST_SUSPEND is not set +CONFIG_PM_SLEEP_DEBUG=y +# CONFIG_DPM_WATCHDOG is not set +CONFIG_PM_TRACE=y +CONFIG_PM_TRACE_RTC=y +CONFIG_PM_CLK=y +CONFIG_WQ_POWER_EFFICIENT_DEFAULT=y +# CONFIG_ENERGY_MODEL is not set +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_SPCR_TABLE=y +CONFIG_ACPI_SLEEP=y +CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y +CONFIG_ACPI_EC_DEBUGFS=m +CONFIG_ACPI_AC=m +CONFIG_ACPI_BATTERY=m +CONFIG_ACPI_BUTTON=y +CONFIG_ACPI_VIDEO=m +CONFIG_ACPI_FAN=y +CONFIG_ACPI_TAD=m +CONFIG_ACPI_DOCK=y +CONFIG_ACPI_CPU_FREQ_PSS=y +CONFIG_ACPI_PROCESSOR_CSTATE=y +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_IPMI=m +CONFIG_ACPI_HOTPLUG_CPU=y +CONFIG_ACPI_PROCESSOR_AGGREGATOR=m +CONFIG_ACPI_THERMAL=y +CONFIG_ACPI_PLATFORM_PROFILE=m +CONFIG_ACPI_CUSTOM_DSDT_FILE="" +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_DEBUG is not set +CONFIG_ACPI_PCI_SLOT=y +CONFIG_ACPI_CONTAINER=y +CONFIG_ACPI_HOTPLUG_IOAPIC=y +CONFIG_ACPI_SBS=m +CONFIG_ACPI_HED=y +# CONFIG_ACPI_CUSTOM_METHOD is not set +CONFIG_ACPI_BGRT=y +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +CONFIG_ACPI_APEI=y +CONFIG_ACPI_APEI_GHES=y +CONFIG_ACPI_APEI_PCIEAER=y +CONFIG_ACPI_APEI_EINJ=m +# CONFIG_ACPI_APEI_ERST_DEBUG is not set +CONFIG_ACPI_DPTF=y +CONFIG_DPTF_POWER=m +CONFIG_DPTF_PCH_FIVR=m +CONFIG_ACPI_WATCHDOG=y +CONFIG_ACPI_EXTLOG=m +CONFIG_ACPI_CONFIGFS=m +# CONFIG_PMIC_OPREGION is not set +CONFIG_TPS68470_PMIC_OPREGION=y +CONFIG_ACPI_VIOT=y +CONFIG_X86_PM_TIMER=y +CONFIG_X86_APM_BOOT=y +CONFIG_APM=m +# CONFIG_APM_IGNORE_USER_SUSPEND is not set +# CONFIG_APM_DO_ENABLE is not set +# CONFIG_APM_CPU_IDLE is not set +# CONFIG_APM_DISPLAY_BLANK is not set +# CONFIG_APM_ALLOW_INTS is not set + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +CONFIG_CPU_FREQ_GOV_ATTR_SET=y +CONFIG_CPU_FREQ_GOV_COMMON=y +CONFIG_CPU_FREQ_STAT=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL=y +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +CONFIG_CPU_FREQ_GOV_POWERSAVE=y +CONFIG_CPU_FREQ_GOV_USERSPACE=y +CONFIG_CPU_FREQ_GOV_ONDEMAND=y +CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y +CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y + +# +# CPU frequency scaling drivers +# +CONFIG_X86_INTEL_PSTATE=y +CONFIG_X86_PCC_CPUFREQ=y +CONFIG_X86_ACPI_CPUFREQ=y +CONFIG_X86_ACPI_CPUFREQ_CPB=y +CONFIG_X86_POWERNOW_K6=m +CONFIG_X86_POWERNOW_K7=m +CONFIG_X86_POWERNOW_K7_ACPI=y +CONFIG_X86_POWERNOW_K8=y +CONFIG_X86_AMD_FREQ_SENSITIVITY=m +CONFIG_X86_GX_SUSPMOD=m +CONFIG_X86_SPEEDSTEP_CENTRINO=y +CONFIG_X86_SPEEDSTEP_CENTRINO_TABLE=y +CONFIG_X86_SPEEDSTEP_ICH=y +CONFIG_X86_SPEEDSTEP_SMI=y +CONFIG_X86_P4_CLOCKMOD=m +CONFIG_X86_CPUFREQ_NFORCE2=y +CONFIG_X86_LONGRUN=m +CONFIG_X86_LONGHAUL=m +# CONFIG_X86_E_POWERSAVER is not set + +# +# shared options +# +CONFIG_X86_SPEEDSTEP_LIB=y +CONFIG_X86_SPEEDSTEP_RELAXED_CAP_CHECK=y +# end of CPU Frequency scaling + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_LADDER=y +CONFIG_CPU_IDLE_GOV_MENU=y +CONFIG_CPU_IDLE_GOV_TEO=y +CONFIG_CPU_IDLE_GOV_HALTPOLL=y +CONFIG_HALTPOLL_CPUIDLE=m +# end of CPU Idle + +CONFIG_INTEL_IDLE=y +# end of Power management and ACPI options + +# +# Bus options (PCI etc.) +# +# CONFIG_PCI_GOBIOS is not set +# CONFIG_PCI_GOMMCONFIG is not set +# CONFIG_PCI_GODIRECT is not set +CONFIG_PCI_GOANY=y +CONFIG_PCI_BIOS=y +CONFIG_PCI_DIRECT=y +CONFIG_PCI_MMCONFIG=y +CONFIG_PCI_XEN=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +# CONFIG_ISA_BUS is not set +CONFIG_ISA_DMA_API=y +CONFIG_ISA=y +CONFIG_SCx200=m +CONFIG_SCx200HR_TIMER=m +CONFIG_ALIX=y +CONFIG_NET5501=y +CONFIG_GEOS=y +CONFIG_AMD_NB=y +# end of Bus options (PCI etc.) + +# +# Binary Emulations +# +CONFIG_COMPAT_32=y +# end of Binary Emulations + +CONFIG_HAVE_ATOMIC_IOMAP=y +CONFIG_HAVE_KVM=y +CONFIG_HAVE_KVM_IRQCHIP=y +CONFIG_HAVE_KVM_IRQFD=y +CONFIG_HAVE_KVM_IRQ_ROUTING=y +CONFIG_HAVE_KVM_EVENTFD=y +CONFIG_KVM_MMIO=y +CONFIG_KVM_ASYNC_PF=y +CONFIG_HAVE_KVM_MSI=y +CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y +CONFIG_KVM_VFIO=y +CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y +CONFIG_HAVE_KVM_IRQ_BYPASS=y +CONFIG_HAVE_KVM_NO_POLL=y +CONFIG_KVM_XFER_TO_GUEST_WORK=y +CONFIG_HAVE_KVM_PM_NOTIFIER=y +CONFIG_VIRTUALIZATION=y +CONFIG_KVM=m +CONFIG_KVM_WERROR=y +CONFIG_KVM_INTEL=m +CONFIG_KVM_AMD=m +CONFIG_KVM_XEN=y +# CONFIG_KVM_MMU_AUDIT is not set +CONFIG_AS_AVX512=y +CONFIG_AS_SHA1_NI=y +CONFIG_AS_SHA256_NI=y +CONFIG_AS_TPAUSE=y + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_HOTPLUG_SMT=y +CONFIG_GENERIC_ENTRY=y +CONFIG_KPROBES=y +CONFIG_JUMP_LABEL=y +# CONFIG_STATIC_KEYS_SELFTEST is not set +# CONFIG_STATIC_CALL_SELFTEST is not set +CONFIG_OPTPROBES=y +CONFIG_KPROBES_ON_FTRACE=y +CONFIG_UPROBES=y +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_KRETPROBES=y +CONFIG_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_ARCH_WANTS_NO_INSTR=y +CONFIG_ARCH_32BIT_OFF_T=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_MMU_GATHER_TABLE_FREE=y +CONFIG_MMU_GATHER_RCU_TABLE_FREE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y +CONFIG_HAVE_ARCH_SECCOMP=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_SECCOMP=y +CONFIG_SECCOMP_FILTER=y +# CONFIG_SECCOMP_CACHE_DEBUG is not set +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y +CONFIG_LTO_NONE=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOVE_PUD=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_REL=y +CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=8 +CONFIG_PAGE_SIZE_LESS_THAN_64KB=y +CONFIG_ISA_BUS_API=y +CONFIG_CLONE_BACKWARDS=y +CONFIG_OLD_SIGSUSPEND3=y +CONFIG_OLD_SIGACTION=y +CONFIG_COMPAT_32BIT_TIME=y +CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y +CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT=y +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_STRICT_MODULE_RWX=y +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y +# CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_ARCH_HAS_MEM_ENCRYPT=y +CONFIG_HAVE_STATIC_CALL=y +CONFIG_HAVE_PREEMPT_DYNAMIC=y +CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_ARCH_SPLIT_ARG64=y +CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH=y +CONFIG_DYNAMIC_SIGFRAME=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_HAVE_GCC_PLUGINS=y +CONFIG_GCC_PLUGINS=y +CONFIG_GCC_PLUGIN_LATENT_ENTROPY=y +# CONFIG_GCC_PLUGIN_RANDSTRUCT is not set +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +CONFIG_MODULES=y +# CONFIG_MODULE_FORCE_LOAD is not set +CONFIG_MODULE_UNLOAD=y +# CONFIG_MODULE_FORCE_UNLOAD is not set +CONFIG_MODVERSIONS=y +CONFIG_ASM_MODVERSIONS=y +CONFIG_MODULE_SRCVERSION_ALL=y +# CONFIG_MODULE_SIG is not set +# CONFIG_MODULE_COMPRESS_NONE is not set +CONFIG_MODULE_COMPRESS_GZIP=y +# CONFIG_MODULE_COMPRESS_XZ is not set +# CONFIG_MODULE_COMPRESS_ZSTD is not set +# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set +CONFIG_MODPROBE_PATH="/run/current-system/profile/bin/modprobe" +# CONFIG_TRIM_UNUSED_KSYMS is not set +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_BLOCK=y +CONFIG_BLK_RQ_ALLOC_TIME=y +CONFIG_BLK_CGROUP_RWSTAT=y +CONFIG_BLK_DEV_BSG_COMMON=y +CONFIG_BLK_DEV_BSGLIB=y +CONFIG_BLK_DEV_INTEGRITY=y +CONFIG_BLK_DEV_INTEGRITY_T10=y +CONFIG_BLK_DEV_ZONED=y +CONFIG_BLK_DEV_THROTTLING=y +# CONFIG_BLK_DEV_THROTTLING_LOW is not set +CONFIG_BLK_WBT=y +CONFIG_BLK_WBT_MQ=y +# CONFIG_BLK_CGROUP_IOLATENCY is not set +CONFIG_BLK_CGROUP_FC_APPID=y +CONFIG_BLK_CGROUP_IOCOST=y +CONFIG_BLK_CGROUP_IOPRIO=y +CONFIG_BLK_DEBUG_FS=y +CONFIG_BLK_DEBUG_FS_ZONED=y +# CONFIG_BLK_SED_OPAL is not set +CONFIG_BLK_INLINE_ENCRYPTION=y +CONFIG_BLK_INLINE_ENCRYPTION_FALLBACK=y + +# +# Partition Types +# +CONFIG_PARTITION_ADVANCED=y +# CONFIG_ACORN_PARTITION is not set +CONFIG_AIX_PARTITION=y +CONFIG_OSF_PARTITION=y +CONFIG_AMIGA_PARTITION=y +CONFIG_ATARI_PARTITION=y +CONFIG_MAC_PARTITION=y +CONFIG_MSDOS_PARTITION=y +CONFIG_BSD_DISKLABEL=y +CONFIG_MINIX_SUBPARTITION=y +CONFIG_SOLARIS_X86_PARTITION=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_LDM_PARTITION=y +# CONFIG_LDM_DEBUG is not set +CONFIG_SGI_PARTITION=y +CONFIG_ULTRIX_PARTITION=y +CONFIG_SUN_PARTITION=y +CONFIG_KARMA_PARTITION=y +CONFIG_EFI_PARTITION=y +CONFIG_SYSV68_PARTITION=y +CONFIG_CMDLINE_PARTITION=y +# end of Partition Types + +CONFIG_BLK_MQ_PCI=y +CONFIG_BLK_MQ_VIRTIO=y +CONFIG_BLK_MQ_RDMA=y +CONFIG_BLK_PM=y +CONFIG_BLOCK_HOLDER_DEPRECATED=y + +# +# IO Schedulers +# +CONFIG_MQ_IOSCHED_DEADLINE=y +CONFIG_MQ_IOSCHED_KYBER=m +CONFIG_IOSCHED_BFQ=m +# CONFIG_BFQ_GROUP_IOSCHED is not set +# end of IO Schedulers + +CONFIG_PREEMPT_NOTIFIERS=y +CONFIG_PADATA=y +CONFIG_ASN1=y +CONFIG_UNINLINE_SPIN_UNLOCK=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y +CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y +CONFIG_FREEZER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_ELFCORE=y +CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y +CONFIG_BINFMT_SCRIPT=y +CONFIG_BINFMT_MISC=m +CONFIG_COREDUMP=y +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SELECT_MEMORY_MODEL=y +# CONFIG_FLATMEM_MANUAL is not set +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_SPARSEMEM_STATIC=y +CONFIG_HAVE_FAST_GUP=y +CONFIG_MEMORY_ISOLATION=y +CONFIG_EXCLUSIVE_SYSTEM_RAM=y +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +CONFIG_MEMORY_BALLOON=y +CONFIG_BALLOON_COMPACTION=y +CONFIG_COMPACTION=y +CONFIG_PAGE_REPORTING=y +CONFIG_MIGRATION=y +CONFIG_CONTIG_ALLOC=y +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_BOUNCE=y +CONFIG_VIRT_TO_BUS=y +CONFIG_MMU_NOTIFIER=y +CONFIG_KSM=y +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +CONFIG_TRANSPARENT_HUGEPAGE=y +CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y +# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set +CONFIG_CLEANCACHE=y +CONFIG_FRONTSWAP=y +CONFIG_CMA=y +# CONFIG_CMA_DEBUG is not set +# CONFIG_CMA_DEBUGFS is not set +CONFIG_CMA_SYSFS=y +CONFIG_CMA_AREAS=7 +CONFIG_ZSWAP=y +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_DEFLATE is not set +CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZO=y +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_842 is not set +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4 is not set +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4HC is not set +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_ZSTD is not set +CONFIG_ZSWAP_COMPRESSOR_DEFAULT="lzo" +CONFIG_ZSWAP_ZPOOL_DEFAULT_ZBUD=y +# CONFIG_ZSWAP_ZPOOL_DEFAULT_Z3FOLD is not set +# CONFIG_ZSWAP_ZPOOL_DEFAULT_ZSMALLOC is not set +CONFIG_ZSWAP_ZPOOL_DEFAULT="zbud" +# CONFIG_ZSWAP_DEFAULT_ON is not set +CONFIG_ZPOOL=y +CONFIG_ZBUD=y +CONFIG_Z3FOLD=m +CONFIG_ZSMALLOC=y +# CONFIG_ZSMALLOC_STAT is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +CONFIG_PAGE_IDLE_FLAG=y +CONFIG_IDLE_PAGE_TRACKING=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_ZONE_DMA_SET=y +# CONFIG_ZONE_DMA is not set +CONFIG_HMM_MIRROR=y +CONFIG_VMAP_PFN=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_TEST is not set +CONFIG_GUP_GET_PTE_LOW_HIGH=y +# CONFIG_READ_ONLY_THP_FOR_FS is not set +CONFIG_ARCH_HAS_PTE_SPECIAL=y +CONFIG_MAPPING_DIRTY_HELPERS=y +CONFIG_KMAP_LOCAL=y +CONFIG_SECRETMEM=y + +# +# Data Access Monitoring +# +CONFIG_DAMON=y +CONFIG_DAMON_VADDR=y +CONFIG_DAMON_PADDR=y +# CONFIG_DAMON_DBGFS is not set +CONFIG_DAMON_RECLAIM=y +# end of Data Access Monitoring +# end of Memory Management options + +CONFIG_NET=y +CONFIG_NET_INGRESS=y +CONFIG_NET_EGRESS=y +CONFIG_NET_REDIRECT=y +CONFIG_SKB_EXTENSIONS=y + +# +# Networking options +# +CONFIG_PACKET=y +CONFIG_PACKET_DIAG=m +CONFIG_UNIX=y +CONFIG_UNIX_SCM=y +CONFIG_AF_UNIX_OOB=y +CONFIG_UNIX_DIAG=m +CONFIG_TLS=m +# CONFIG_TLS_DEVICE is not set +# CONFIG_TLS_TOE is not set +CONFIG_XFRM=y +CONFIG_XFRM_OFFLOAD=y +CONFIG_XFRM_ALGO=m +CONFIG_XFRM_USER=m +CONFIG_XFRM_INTERFACE=m +# CONFIG_XFRM_SUB_POLICY is not set +# CONFIG_XFRM_MIGRATE is not set +CONFIG_XFRM_STATISTICS=y +CONFIG_XFRM_AH=m +CONFIG_XFRM_ESP=m +CONFIG_XFRM_IPCOMP=m +CONFIG_NET_KEY=m +# CONFIG_NET_KEY_MIGRATE is not set +# CONFIG_SMC is not set +CONFIG_XDP_SOCKETS=y +CONFIG_XDP_SOCKETS_DIAG=m +CONFIG_INET=y +CONFIG_IP_MULTICAST=y +CONFIG_IP_ADVANCED_ROUTER=y +CONFIG_IP_FIB_TRIE_STATS=y +CONFIG_IP_MULTIPLE_TABLES=y +CONFIG_IP_ROUTE_MULTIPATH=y +CONFIG_IP_ROUTE_VERBOSE=y +CONFIG_IP_ROUTE_CLASSID=y +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +# CONFIG_IP_PNP_BOOTP is not set +# CONFIG_IP_PNP_RARP is not set +CONFIG_NET_IPIP=m +CONFIG_NET_IPGRE_DEMUX=m +CONFIG_NET_IP_TUNNEL=m +CONFIG_NET_IPGRE=m +CONFIG_NET_IPGRE_BROADCAST=y +CONFIG_IP_MROUTE_COMMON=y +CONFIG_IP_MROUTE=y +# CONFIG_IP_MROUTE_MULTIPLE_TABLES is not set +CONFIG_IP_PIMSM_V1=y +CONFIG_IP_PIMSM_V2=y +CONFIG_SYN_COOKIES=y +CONFIG_NET_IPVTI=m +CONFIG_NET_UDP_TUNNEL=m +CONFIG_NET_FOU=m +CONFIG_NET_FOU_IP_TUNNELS=y +CONFIG_INET_AH=m +CONFIG_INET_ESP=m +CONFIG_INET_ESP_OFFLOAD=m +# CONFIG_INET_ESPINTCP is not set +CONFIG_INET_IPCOMP=m +CONFIG_INET_XFRM_TUNNEL=m +CONFIG_INET_TUNNEL=m +CONFIG_INET_DIAG=m +CONFIG_INET_TCP_DIAG=m +CONFIG_INET_UDP_DIAG=m +CONFIG_INET_RAW_DIAG=m +# CONFIG_INET_DIAG_DESTROY is not set +CONFIG_TCP_CONG_ADVANCED=y +CONFIG_TCP_CONG_BIC=m +CONFIG_TCP_CONG_CUBIC=y +CONFIG_TCP_CONG_WESTWOOD=m +CONFIG_TCP_CONG_HTCP=m +CONFIG_TCP_CONG_HSTCP=m +CONFIG_TCP_CONG_HYBLA=m +CONFIG_TCP_CONG_VEGAS=m +CONFIG_TCP_CONG_NV=m +CONFIG_TCP_CONG_SCALABLE=m +CONFIG_TCP_CONG_LP=m +CONFIG_TCP_CONG_VENO=m +CONFIG_TCP_CONG_YEAH=m +CONFIG_TCP_CONG_ILLINOIS=m +CONFIG_TCP_CONG_DCTCP=m +CONFIG_TCP_CONG_CDG=m +CONFIG_TCP_CONG_BBR=m +CONFIG_DEFAULT_CUBIC=y +# CONFIG_DEFAULT_RENO is not set +CONFIG_DEFAULT_TCP_CONG="cubic" +CONFIG_TCP_MD5SIG=y +CONFIG_IPV6=y +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_ROUTE_INFO=y +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +CONFIG_INET6_AH=m +CONFIG_INET6_ESP=m +CONFIG_INET6_ESP_OFFLOAD=m +# CONFIG_INET6_ESPINTCP is not set +CONFIG_INET6_IPCOMP=m +CONFIG_IPV6_MIP6=m +CONFIG_IPV6_ILA=m +CONFIG_INET6_XFRM_TUNNEL=m +CONFIG_INET6_TUNNEL=m +CONFIG_IPV6_VTI=m +CONFIG_IPV6_SIT=m +CONFIG_IPV6_SIT_6RD=y +CONFIG_IPV6_NDISC_NODETYPE=y +CONFIG_IPV6_TUNNEL=m +CONFIG_IPV6_GRE=m +CONFIG_IPV6_FOU=m +CONFIG_IPV6_FOU_TUNNEL=m +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IPV6_SUBTREES=y +CONFIG_IPV6_MROUTE=y +CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y +CONFIG_IPV6_PIMSM_V2=y +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_IPV6_RPL_LWTUNNEL is not set +# CONFIG_IPV6_IOAM6_LWTUNNEL is not set +CONFIG_NETLABEL=y +CONFIG_MPTCP=y +CONFIG_INET_MPTCP_DIAG=m +CONFIG_MPTCP_IPV6=y +CONFIG_NETWORK_SECMARK=y +CONFIG_NET_PTP_CLASSIFY=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +CONFIG_NETFILTER=y +CONFIG_NETFILTER_ADVANCED=y +CONFIG_BRIDGE_NETFILTER=m + +# +# Core Netfilter Configuration +# +CONFIG_NETFILTER_INGRESS=y +CONFIG_NETFILTER_EGRESS=y +CONFIG_NETFILTER_SKIP_EGRESS=y +CONFIG_NETFILTER_NETLINK=m +CONFIG_NETFILTER_FAMILY_BRIDGE=y +CONFIG_NETFILTER_FAMILY_ARP=y +CONFIG_NETFILTER_NETLINK_HOOK=m +CONFIG_NETFILTER_NETLINK_ACCT=m +CONFIG_NETFILTER_NETLINK_QUEUE=m +CONFIG_NETFILTER_NETLINK_LOG=m +CONFIG_NETFILTER_NETLINK_OSF=m +CONFIG_NF_CONNTRACK=m +CONFIG_NF_LOG_SYSLOG=m +CONFIG_NETFILTER_CONNCOUNT=m +CONFIG_NF_CONNTRACK_MARK=y +CONFIG_NF_CONNTRACK_SECMARK=y +CONFIG_NF_CONNTRACK_ZONES=y +# CONFIG_NF_CONNTRACK_PROCFS is not set +CONFIG_NF_CONNTRACK_EVENTS=y +CONFIG_NF_CONNTRACK_TIMEOUT=y +CONFIG_NF_CONNTRACK_TIMESTAMP=y +CONFIG_NF_CONNTRACK_LABELS=y +CONFIG_NF_CT_PROTO_DCCP=y +CONFIG_NF_CT_PROTO_GRE=y +CONFIG_NF_CT_PROTO_SCTP=y +CONFIG_NF_CT_PROTO_UDPLITE=y +CONFIG_NF_CONNTRACK_AMANDA=m +CONFIG_NF_CONNTRACK_FTP=m +CONFIG_NF_CONNTRACK_H323=m +CONFIG_NF_CONNTRACK_IRC=m +CONFIG_NF_CONNTRACK_BROADCAST=m +CONFIG_NF_CONNTRACK_NETBIOS_NS=m +CONFIG_NF_CONNTRACK_SNMP=m +CONFIG_NF_CONNTRACK_PPTP=m +CONFIG_NF_CONNTRACK_SANE=m +CONFIG_NF_CONNTRACK_SIP=m +CONFIG_NF_CONNTRACK_TFTP=m +CONFIG_NF_CT_NETLINK=m +CONFIG_NF_CT_NETLINK_TIMEOUT=m +CONFIG_NF_CT_NETLINK_HELPER=m +CONFIG_NETFILTER_NETLINK_GLUE_CT=y +CONFIG_NF_NAT=m +CONFIG_NF_NAT_AMANDA=m +CONFIG_NF_NAT_FTP=m +CONFIG_NF_NAT_IRC=m +CONFIG_NF_NAT_SIP=m +CONFIG_NF_NAT_TFTP=m +CONFIG_NF_NAT_REDIRECT=y +CONFIG_NF_NAT_MASQUERADE=y +CONFIG_NETFILTER_SYNPROXY=m +CONFIG_NF_TABLES=m +CONFIG_NF_TABLES_INET=y +CONFIG_NF_TABLES_NETDEV=y +CONFIG_NFT_NUMGEN=m +CONFIG_NFT_CT=m +CONFIG_NFT_FLOW_OFFLOAD=m +CONFIG_NFT_COUNTER=m +CONFIG_NFT_CONNLIMIT=m +CONFIG_NFT_LOG=m +CONFIG_NFT_LIMIT=m +CONFIG_NFT_MASQ=m +CONFIG_NFT_REDIR=m +CONFIG_NFT_NAT=m +CONFIG_NFT_TUNNEL=m +CONFIG_NFT_OBJREF=m +CONFIG_NFT_QUEUE=m +CONFIG_NFT_QUOTA=m +CONFIG_NFT_REJECT=m +CONFIG_NFT_REJECT_INET=m +CONFIG_NFT_COMPAT=m +CONFIG_NFT_HASH=m +CONFIG_NFT_FIB=m +CONFIG_NFT_FIB_INET=m +CONFIG_NFT_XFRM=m +CONFIG_NFT_SOCKET=m +CONFIG_NFT_OSF=m +CONFIG_NFT_TPROXY=m +CONFIG_NFT_SYNPROXY=m +CONFIG_NF_DUP_NETDEV=m +CONFIG_NFT_DUP_NETDEV=m +CONFIG_NFT_FWD_NETDEV=m +CONFIG_NFT_FIB_NETDEV=m +CONFIG_NFT_REJECT_NETDEV=m +CONFIG_NF_FLOW_TABLE_INET=m +CONFIG_NF_FLOW_TABLE=m +CONFIG_NETFILTER_XTABLES=m + +# +# Xtables combined modules +# +CONFIG_NETFILTER_XT_MARK=m +CONFIG_NETFILTER_XT_CONNMARK=m +CONFIG_NETFILTER_XT_SET=m + +# +# Xtables targets +# +CONFIG_NETFILTER_XT_TARGET_AUDIT=m +CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m +CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m +CONFIG_NETFILTER_XT_TARGET_CONNMARK=m +CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m +CONFIG_NETFILTER_XT_TARGET_CT=m +CONFIG_NETFILTER_XT_TARGET_DSCP=m +CONFIG_NETFILTER_XT_TARGET_HL=m +CONFIG_NETFILTER_XT_TARGET_HMARK=m +CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m +CONFIG_NETFILTER_XT_TARGET_LED=m +CONFIG_NETFILTER_XT_TARGET_LOG=m +CONFIG_NETFILTER_XT_TARGET_MARK=m +CONFIG_NETFILTER_XT_NAT=m +CONFIG_NETFILTER_XT_TARGET_NETMAP=m +CONFIG_NETFILTER_XT_TARGET_NFLOG=m +CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m +# CONFIG_NETFILTER_XT_TARGET_NOTRACK is not set +CONFIG_NETFILTER_XT_TARGET_RATEEST=m +CONFIG_NETFILTER_XT_TARGET_REDIRECT=m +CONFIG_NETFILTER_XT_TARGET_MASQUERADE=m +CONFIG_NETFILTER_XT_TARGET_TEE=m +CONFIG_NETFILTER_XT_TARGET_TPROXY=m +CONFIG_NETFILTER_XT_TARGET_TRACE=m +CONFIG_NETFILTER_XT_TARGET_SECMARK=m +CONFIG_NETFILTER_XT_TARGET_TCPMSS=m +CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m + +# +# Xtables matches +# +CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m +CONFIG_NETFILTER_XT_MATCH_BPF=m +CONFIG_NETFILTER_XT_MATCH_CGROUP=m +CONFIG_NETFILTER_XT_MATCH_CLUSTER=m +CONFIG_NETFILTER_XT_MATCH_COMMENT=m +CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m +CONFIG_NETFILTER_XT_MATCH_CONNLABEL=m +CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m +CONFIG_NETFILTER_XT_MATCH_CONNMARK=m +CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m +CONFIG_NETFILTER_XT_MATCH_CPU=m +CONFIG_NETFILTER_XT_MATCH_DCCP=m +CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m +CONFIG_NETFILTER_XT_MATCH_DSCP=m +CONFIG_NETFILTER_XT_MATCH_ECN=m +CONFIG_NETFILTER_XT_MATCH_ESP=m +CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m +CONFIG_NETFILTER_XT_MATCH_HELPER=m +CONFIG_NETFILTER_XT_MATCH_HL=m +CONFIG_NETFILTER_XT_MATCH_IPCOMP=m +CONFIG_NETFILTER_XT_MATCH_IPRANGE=m +CONFIG_NETFILTER_XT_MATCH_IPVS=m +CONFIG_NETFILTER_XT_MATCH_L2TP=m +CONFIG_NETFILTER_XT_MATCH_LENGTH=m +CONFIG_NETFILTER_XT_MATCH_LIMIT=m +CONFIG_NETFILTER_XT_MATCH_MAC=m +CONFIG_NETFILTER_XT_MATCH_MARK=m +CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m +CONFIG_NETFILTER_XT_MATCH_NFACCT=m +CONFIG_NETFILTER_XT_MATCH_OSF=m +CONFIG_NETFILTER_XT_MATCH_OWNER=m +CONFIG_NETFILTER_XT_MATCH_POLICY=m +CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m +CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m +CONFIG_NETFILTER_XT_MATCH_QUOTA=m +CONFIG_NETFILTER_XT_MATCH_RATEEST=m +CONFIG_NETFILTER_XT_MATCH_REALM=m +CONFIG_NETFILTER_XT_MATCH_RECENT=m +CONFIG_NETFILTER_XT_MATCH_SCTP=m +CONFIG_NETFILTER_XT_MATCH_SOCKET=m +CONFIG_NETFILTER_XT_MATCH_STATE=m +CONFIG_NETFILTER_XT_MATCH_STATISTIC=m +CONFIG_NETFILTER_XT_MATCH_STRING=m +CONFIG_NETFILTER_XT_MATCH_TCPMSS=m +CONFIG_NETFILTER_XT_MATCH_TIME=m +CONFIG_NETFILTER_XT_MATCH_U32=m +# end of Core Netfilter Configuration + +CONFIG_IP_SET=m +CONFIG_IP_SET_MAX=256 +CONFIG_IP_SET_BITMAP_IP=m +CONFIG_IP_SET_BITMAP_IPMAC=m +CONFIG_IP_SET_BITMAP_PORT=m +CONFIG_IP_SET_HASH_IP=m +CONFIG_IP_SET_HASH_IPMARK=m +CONFIG_IP_SET_HASH_IPPORT=m +CONFIG_IP_SET_HASH_IPPORTIP=m +CONFIG_IP_SET_HASH_IPPORTNET=m +CONFIG_IP_SET_HASH_IPMAC=m +CONFIG_IP_SET_HASH_MAC=m +CONFIG_IP_SET_HASH_NETPORTNET=m +CONFIG_IP_SET_HASH_NET=m +CONFIG_IP_SET_HASH_NETNET=m +CONFIG_IP_SET_HASH_NETPORT=m +CONFIG_IP_SET_HASH_NETIFACE=m +CONFIG_IP_SET_LIST_SET=m +CONFIG_IP_VS=m +CONFIG_IP_VS_IPV6=y +# CONFIG_IP_VS_DEBUG is not set +CONFIG_IP_VS_TAB_BITS=12 + +# +# IPVS transport protocol load balancing support +# +CONFIG_IP_VS_PROTO_TCP=y +CONFIG_IP_VS_PROTO_UDP=y +CONFIG_IP_VS_PROTO_AH_ESP=y +CONFIG_IP_VS_PROTO_ESP=y +CONFIG_IP_VS_PROTO_AH=y +CONFIG_IP_VS_PROTO_SCTP=y + +# +# IPVS scheduler +# +CONFIG_IP_VS_RR=m +CONFIG_IP_VS_WRR=m +CONFIG_IP_VS_LC=m +CONFIG_IP_VS_WLC=m +CONFIG_IP_VS_FO=m +CONFIG_IP_VS_OVF=m +CONFIG_IP_VS_LBLC=m +CONFIG_IP_VS_LBLCR=m +CONFIG_IP_VS_DH=m +CONFIG_IP_VS_SH=m +CONFIG_IP_VS_MH=m +CONFIG_IP_VS_SED=m +CONFIG_IP_VS_NQ=m +CONFIG_IP_VS_TWOS=m + +# +# IPVS SH scheduler +# +CONFIG_IP_VS_SH_TAB_BITS=8 + +# +# IPVS MH scheduler +# +CONFIG_IP_VS_MH_TAB_INDEX=12 + +# +# IPVS application helper +# +CONFIG_IP_VS_FTP=m +CONFIG_IP_VS_NFCT=y +CONFIG_IP_VS_PE_SIP=m + +# +# IP: Netfilter Configuration +# +CONFIG_NF_DEFRAG_IPV4=m +CONFIG_NF_SOCKET_IPV4=m +CONFIG_NF_TPROXY_IPV4=m +CONFIG_NF_TABLES_IPV4=y +CONFIG_NFT_REJECT_IPV4=m +CONFIG_NFT_DUP_IPV4=m +CONFIG_NFT_FIB_IPV4=m +CONFIG_NF_TABLES_ARP=y +CONFIG_NF_FLOW_TABLE_IPV4=m +CONFIG_NF_DUP_IPV4=m +CONFIG_NF_LOG_ARP=m +CONFIG_NF_LOG_IPV4=m +CONFIG_NF_REJECT_IPV4=m +CONFIG_NF_NAT_SNMP_BASIC=m +CONFIG_NF_NAT_PPTP=m +CONFIG_NF_NAT_H323=m +CONFIG_IP_NF_IPTABLES=m +CONFIG_IP_NF_MATCH_AH=m +CONFIG_IP_NF_MATCH_ECN=m +CONFIG_IP_NF_MATCH_RPFILTER=m +CONFIG_IP_NF_MATCH_TTL=m +CONFIG_IP_NF_FILTER=m +CONFIG_IP_NF_TARGET_REJECT=m +CONFIG_IP_NF_TARGET_SYNPROXY=m +CONFIG_IP_NF_NAT=m +CONFIG_IP_NF_TARGET_MASQUERADE=m +CONFIG_IP_NF_TARGET_NETMAP=m +CONFIG_IP_NF_TARGET_REDIRECT=m +CONFIG_IP_NF_MANGLE=m +CONFIG_IP_NF_TARGET_CLUSTERIP=m +CONFIG_IP_NF_TARGET_ECN=m +CONFIG_IP_NF_TARGET_TTL=m +CONFIG_IP_NF_RAW=m +CONFIG_IP_NF_SECURITY=m +CONFIG_IP_NF_ARPTABLES=m +CONFIG_IP_NF_ARPFILTER=m +CONFIG_IP_NF_ARP_MANGLE=m +# end of IP: Netfilter Configuration + +# +# IPv6: Netfilter Configuration +# +CONFIG_NF_SOCKET_IPV6=m +CONFIG_NF_TPROXY_IPV6=m +CONFIG_NF_TABLES_IPV6=y +CONFIG_NFT_REJECT_IPV6=m +CONFIG_NFT_DUP_IPV6=m +CONFIG_NFT_FIB_IPV6=m +CONFIG_NF_FLOW_TABLE_IPV6=m +CONFIG_NF_DUP_IPV6=m +CONFIG_NF_REJECT_IPV6=m +CONFIG_NF_LOG_IPV6=m +CONFIG_IP6_NF_IPTABLES=m +CONFIG_IP6_NF_MATCH_AH=m +CONFIG_IP6_NF_MATCH_EUI64=m +CONFIG_IP6_NF_MATCH_FRAG=m +CONFIG_IP6_NF_MATCH_OPTS=m +CONFIG_IP6_NF_MATCH_HL=m +CONFIG_IP6_NF_MATCH_IPV6HEADER=m +CONFIG_IP6_NF_MATCH_MH=m +CONFIG_IP6_NF_MATCH_RPFILTER=m +CONFIG_IP6_NF_MATCH_RT=m +CONFIG_IP6_NF_MATCH_SRH=m +CONFIG_IP6_NF_TARGET_HL=m +CONFIG_IP6_NF_FILTER=m +CONFIG_IP6_NF_TARGET_REJECT=m +CONFIG_IP6_NF_TARGET_SYNPROXY=m +CONFIG_IP6_NF_MANGLE=m +CONFIG_IP6_NF_RAW=m +CONFIG_IP6_NF_SECURITY=m +CONFIG_IP6_NF_NAT=m +CONFIG_IP6_NF_TARGET_MASQUERADE=m +CONFIG_IP6_NF_TARGET_NPT=m +# end of IPv6: Netfilter Configuration + +CONFIG_NF_DEFRAG_IPV6=m + +# +# DECnet: Netfilter Configuration +# +CONFIG_DECNET_NF_GRABULATOR=m +# end of DECnet: Netfilter Configuration + +CONFIG_NF_TABLES_BRIDGE=m +CONFIG_NFT_BRIDGE_META=m +CONFIG_NFT_BRIDGE_REJECT=m +CONFIG_NF_CONNTRACK_BRIDGE=m +CONFIG_BRIDGE_NF_EBTABLES=m +CONFIG_BRIDGE_EBT_BROUTE=m +CONFIG_BRIDGE_EBT_T_FILTER=m +CONFIG_BRIDGE_EBT_T_NAT=m +CONFIG_BRIDGE_EBT_802_3=m +CONFIG_BRIDGE_EBT_AMONG=m +CONFIG_BRIDGE_EBT_ARP=m +CONFIG_BRIDGE_EBT_IP=m +CONFIG_BRIDGE_EBT_IP6=m +CONFIG_BRIDGE_EBT_LIMIT=m +CONFIG_BRIDGE_EBT_MARK=m +CONFIG_BRIDGE_EBT_PKTTYPE=m +CONFIG_BRIDGE_EBT_STP=m +CONFIG_BRIDGE_EBT_VLAN=m +CONFIG_BRIDGE_EBT_ARPREPLY=m +CONFIG_BRIDGE_EBT_DNAT=m +CONFIG_BRIDGE_EBT_MARK_T=m +CONFIG_BRIDGE_EBT_REDIRECT=m +CONFIG_BRIDGE_EBT_SNAT=m +CONFIG_BRIDGE_EBT_LOG=m +CONFIG_BRIDGE_EBT_NFLOG=m +# CONFIG_BPFILTER is not set +CONFIG_IP_DCCP=m +CONFIG_INET_DCCP_DIAG=m + +# +# DCCP CCIDs Configuration +# +# CONFIG_IP_DCCP_CCID2_DEBUG is not set +# CONFIG_IP_DCCP_CCID3 is not set +# end of DCCP CCIDs Configuration + +# +# DCCP Kernel Hacking +# +# CONFIG_IP_DCCP_DEBUG is not set +# end of DCCP Kernel Hacking + +CONFIG_IP_SCTP=m +# CONFIG_SCTP_DBG_OBJCNT is not set +# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set +CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y +# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set +CONFIG_SCTP_COOKIE_HMAC_MD5=y +CONFIG_SCTP_COOKIE_HMAC_SHA1=y +CONFIG_INET_SCTP_DIAG=m +CONFIG_RDS=m +CONFIG_RDS_RDMA=m +CONFIG_RDS_TCP=m +# CONFIG_RDS_DEBUG is not set +CONFIG_TIPC=m +CONFIG_TIPC_MEDIA_IB=y +CONFIG_TIPC_MEDIA_UDP=y +CONFIG_TIPC_CRYPTO=y +CONFIG_TIPC_DIAG=m +CONFIG_ATM=m +CONFIG_ATM_CLIP=m +# CONFIG_ATM_CLIP_NO_ICMP is not set +CONFIG_ATM_LANE=m +CONFIG_ATM_MPOA=m +CONFIG_ATM_BR2684=m +# CONFIG_ATM_BR2684_IPFILTER is not set +CONFIG_L2TP=m +CONFIG_L2TP_DEBUGFS=m +CONFIG_L2TP_V3=y +CONFIG_L2TP_IP=m +CONFIG_L2TP_ETH=m +CONFIG_STP=m +CONFIG_GARP=m +CONFIG_MRP=m +CONFIG_BRIDGE=m +CONFIG_BRIDGE_IGMP_SNOOPING=y +CONFIG_BRIDGE_VLAN_FILTERING=y +CONFIG_BRIDGE_MRP=y +CONFIG_BRIDGE_CFM=y +CONFIG_NET_DSA=m +CONFIG_NET_DSA_TAG_AR9331=m +CONFIG_NET_DSA_TAG_BRCM_COMMON=m +CONFIG_NET_DSA_TAG_BRCM=m +CONFIG_NET_DSA_TAG_BRCM_LEGACY=m +CONFIG_NET_DSA_TAG_BRCM_PREPEND=m +CONFIG_NET_DSA_TAG_HELLCREEK=m +CONFIG_NET_DSA_TAG_GSWIP=m +CONFIG_NET_DSA_TAG_DSA_COMMON=m +CONFIG_NET_DSA_TAG_DSA=m +CONFIG_NET_DSA_TAG_EDSA=m +CONFIG_NET_DSA_TAG_MTK=m +CONFIG_NET_DSA_TAG_KSZ=m +CONFIG_NET_DSA_TAG_OCELOT=m +CONFIG_NET_DSA_TAG_OCELOT_8021Q=m +CONFIG_NET_DSA_TAG_QCA=m +CONFIG_NET_DSA_TAG_RTL4_A=m +CONFIG_NET_DSA_TAG_RTL8_4=m +CONFIG_NET_DSA_TAG_LAN9303=m +CONFIG_NET_DSA_TAG_SJA1105=m +CONFIG_NET_DSA_TAG_TRAILER=m +CONFIG_NET_DSA_TAG_XRS700X=m +CONFIG_VLAN_8021Q=m +CONFIG_VLAN_8021Q_GVRP=y +CONFIG_VLAN_8021Q_MVRP=y +CONFIG_DECNET=m +# CONFIG_DECNET_ROUTER is not set +CONFIG_LLC=m +CONFIG_LLC2=m +CONFIG_ATALK=m +CONFIG_DEV_APPLETALK=m +CONFIG_LTPC=m +CONFIG_COPS=m +CONFIG_COPS_DAYNA=y +CONFIG_COPS_TANGENT=y +CONFIG_IPDDP=m +CONFIG_IPDDP_ENCAP=y +CONFIG_X25=m +CONFIG_LAPB=m +CONFIG_PHONET=m +CONFIG_6LOWPAN=m +# CONFIG_6LOWPAN_DEBUGFS is not set +CONFIG_6LOWPAN_NHC=m +CONFIG_6LOWPAN_NHC_DEST=m +CONFIG_6LOWPAN_NHC_FRAGMENT=m +CONFIG_6LOWPAN_NHC_HOP=m +CONFIG_6LOWPAN_NHC_IPV6=m +CONFIG_6LOWPAN_NHC_MOBILITY=m +CONFIG_6LOWPAN_NHC_ROUTING=m +CONFIG_6LOWPAN_NHC_UDP=m +CONFIG_6LOWPAN_GHC_EXT_HDR_HOP=m +CONFIG_6LOWPAN_GHC_UDP=m +CONFIG_6LOWPAN_GHC_ICMPV6=m +CONFIG_6LOWPAN_GHC_EXT_HDR_DEST=m +CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG=m +CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE=m +CONFIG_IEEE802154=m +CONFIG_IEEE802154_NL802154_EXPERIMENTAL=y +CONFIG_IEEE802154_SOCKET=m +CONFIG_IEEE802154_6LOWPAN=m +CONFIG_MAC802154=m +CONFIG_NET_SCHED=y + +# +# Queueing/Scheduling +# +CONFIG_NET_SCH_CBQ=m +CONFIG_NET_SCH_HTB=m +CONFIG_NET_SCH_HFSC=m +CONFIG_NET_SCH_ATM=m +CONFIG_NET_SCH_PRIO=m +CONFIG_NET_SCH_MULTIQ=m +CONFIG_NET_SCH_RED=m +CONFIG_NET_SCH_SFB=m +CONFIG_NET_SCH_SFQ=m +CONFIG_NET_SCH_TEQL=m +CONFIG_NET_SCH_TBF=m +CONFIG_NET_SCH_CBS=m +CONFIG_NET_SCH_ETF=m +CONFIG_NET_SCH_TAPRIO=m +CONFIG_NET_SCH_GRED=m +CONFIG_NET_SCH_DSMARK=m +CONFIG_NET_SCH_NETEM=m +CONFIG_NET_SCH_DRR=m +CONFIG_NET_SCH_MQPRIO=m +CONFIG_NET_SCH_SKBPRIO=m +CONFIG_NET_SCH_CHOKE=m +CONFIG_NET_SCH_QFQ=m +CONFIG_NET_SCH_CODEL=m +CONFIG_NET_SCH_FQ_CODEL=m +CONFIG_NET_SCH_CAKE=m +CONFIG_NET_SCH_FQ=m +CONFIG_NET_SCH_HHF=m +CONFIG_NET_SCH_PIE=m +CONFIG_NET_SCH_FQ_PIE=m +CONFIG_NET_SCH_INGRESS=m +CONFIG_NET_SCH_PLUG=m +CONFIG_NET_SCH_ETS=m +# CONFIG_NET_SCH_DEFAULT is not set + +# +# Classification +# +CONFIG_NET_CLS=y +CONFIG_NET_CLS_BASIC=m +CONFIG_NET_CLS_TCINDEX=m +CONFIG_NET_CLS_ROUTE4=m +CONFIG_NET_CLS_FW=m +CONFIG_NET_CLS_U32=m +# CONFIG_CLS_U32_PERF is not set +CONFIG_CLS_U32_MARK=y +CONFIG_NET_CLS_RSVP=m +CONFIG_NET_CLS_RSVP6=m +CONFIG_NET_CLS_FLOW=m +CONFIG_NET_CLS_CGROUP=m +CONFIG_NET_CLS_BPF=m +CONFIG_NET_CLS_FLOWER=m +CONFIG_NET_CLS_MATCHALL=m +CONFIG_NET_EMATCH=y +CONFIG_NET_EMATCH_STACK=32 +CONFIG_NET_EMATCH_CMP=m +CONFIG_NET_EMATCH_NBYTE=m +CONFIG_NET_EMATCH_U32=m +CONFIG_NET_EMATCH_META=m +CONFIG_NET_EMATCH_TEXT=m +CONFIG_NET_EMATCH_CANID=m +CONFIG_NET_EMATCH_IPSET=m +CONFIG_NET_EMATCH_IPT=m +CONFIG_NET_CLS_ACT=y +CONFIG_NET_ACT_POLICE=m +CONFIG_NET_ACT_GACT=m +CONFIG_GACT_PROB=y +CONFIG_NET_ACT_MIRRED=m +CONFIG_NET_ACT_SAMPLE=m +CONFIG_NET_ACT_IPT=m +CONFIG_NET_ACT_NAT=m +CONFIG_NET_ACT_PEDIT=m +CONFIG_NET_ACT_SIMP=m +CONFIG_NET_ACT_SKBEDIT=m +CONFIG_NET_ACT_CSUM=m +CONFIG_NET_ACT_MPLS=m +CONFIG_NET_ACT_VLAN=m +CONFIG_NET_ACT_BPF=m +CONFIG_NET_ACT_CONNMARK=m +CONFIG_NET_ACT_CTINFO=m +CONFIG_NET_ACT_SKBMOD=m +CONFIG_NET_ACT_IFE=m +CONFIG_NET_ACT_TUNNEL_KEY=m +CONFIG_NET_ACT_CT=m +CONFIG_NET_ACT_GATE=m +CONFIG_NET_IFE_SKBMARK=m +CONFIG_NET_IFE_SKBPRIO=m +CONFIG_NET_IFE_SKBTCINDEX=m +# CONFIG_NET_TC_SKB_EXT is not set +CONFIG_NET_SCH_FIFO=y +CONFIG_DCB=y +CONFIG_DNS_RESOLVER=y +CONFIG_BATMAN_ADV=m +# CONFIG_BATMAN_ADV_BATMAN_V is not set +CONFIG_BATMAN_ADV_BLA=y +CONFIG_BATMAN_ADV_DAT=y +CONFIG_BATMAN_ADV_NC=y +CONFIG_BATMAN_ADV_MCAST=y +# CONFIG_BATMAN_ADV_DEBUG is not set +# CONFIG_BATMAN_ADV_TRACING is not set +CONFIG_OPENVSWITCH=m +CONFIG_OPENVSWITCH_GRE=m +CONFIG_OPENVSWITCH_VXLAN=m +CONFIG_OPENVSWITCH_GENEVE=m +CONFIG_VSOCKETS=m +CONFIG_VSOCKETS_DIAG=m +CONFIG_VSOCKETS_LOOPBACK=m +CONFIG_VMWARE_VMCI_VSOCKETS=m +CONFIG_VIRTIO_VSOCKETS=m +CONFIG_VIRTIO_VSOCKETS_COMMON=m +CONFIG_HYPERV_VSOCKETS=m +CONFIG_NETLINK_DIAG=m +CONFIG_MPLS=y +CONFIG_NET_MPLS_GSO=m +CONFIG_MPLS_ROUTING=m +CONFIG_MPLS_IPTUNNEL=m +CONFIG_NET_NSH=m +CONFIG_HSR=m +CONFIG_NET_SWITCHDEV=y +CONFIG_NET_L3_MASTER_DEV=y +CONFIG_QRTR=m +CONFIG_QRTR_SMD=m +CONFIG_QRTR_TUN=m +CONFIG_QRTR_MHI=m +CONFIG_NET_NCSI=y +# CONFIG_NCSI_OEM_CMD_GET_MAC is not set +# CONFIG_NCSI_OEM_CMD_KEEP_PHY is not set +CONFIG_PCPU_DEV_REFCNT=y +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_SOCK_RX_QUEUE_MAPPING=y +CONFIG_XPS=y +CONFIG_CGROUP_NET_PRIO=y +CONFIG_CGROUP_NET_CLASSID=y +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +# CONFIG_BPF_STREAM_PARSER is not set +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +CONFIG_NET_PKTGEN=m +# CONFIG_NET_DROP_MONITOR is not set +# end of Network testing +# end of Networking options + +CONFIG_HAMRADIO=y + +# +# Packet Radio protocols +# +CONFIG_AX25=m +CONFIG_AX25_DAMA_SLAVE=y +CONFIG_NETROM=m +CONFIG_ROSE=m + +# +# AX.25 network device drivers +# +CONFIG_MKISS=m +CONFIG_6PACK=m +CONFIG_BPQETHER=m +CONFIG_SCC=m +# CONFIG_SCC_DELAY is not set +# CONFIG_SCC_TRXECHO is not set +CONFIG_BAYCOM_SER_FDX=m +CONFIG_BAYCOM_SER_HDX=m +CONFIG_BAYCOM_PAR=m +CONFIG_BAYCOM_EPP=m +CONFIG_YAM=m +# end of AX.25 network device drivers + +CONFIG_CAN=m +CONFIG_CAN_RAW=m +CONFIG_CAN_BCM=m +CONFIG_CAN_GW=m +CONFIG_CAN_J1939=m +CONFIG_CAN_ISOTP=m + +# +# CAN Device Drivers +# +CONFIG_CAN_VCAN=m +CONFIG_CAN_VXCAN=m +CONFIG_CAN_SLCAN=m +CONFIG_CAN_DEV=m +CONFIG_CAN_CALC_BITTIMING=y +CONFIG_CAN_JANZ_ICAN3=m +CONFIG_CAN_KVASER_PCIEFD=m +CONFIG_PCH_CAN=m +CONFIG_CAN_C_CAN=m +CONFIG_CAN_C_CAN_PLATFORM=m +CONFIG_CAN_C_CAN_PCI=m +CONFIG_CAN_CC770=m +CONFIG_CAN_CC770_ISA=m +CONFIG_CAN_CC770_PLATFORM=m +CONFIG_CAN_IFI_CANFD=m +CONFIG_CAN_M_CAN=m +CONFIG_CAN_M_CAN_PCI=m +CONFIG_CAN_M_CAN_PLATFORM=m +CONFIG_CAN_M_CAN_TCAN4X5X=m +CONFIG_CAN_PEAK_PCIEFD=m +CONFIG_CAN_SJA1000=m +CONFIG_CAN_EMS_PCI=m +CONFIG_CAN_EMS_PCMCIA=m +CONFIG_CAN_F81601=m +CONFIG_CAN_KVASER_PCI=m +CONFIG_CAN_PEAK_PCI=m +CONFIG_CAN_PEAK_PCIEC=y +CONFIG_CAN_PEAK_PCMCIA=m +CONFIG_CAN_PLX_PCI=m +CONFIG_CAN_SJA1000_ISA=m +CONFIG_CAN_SJA1000_PLATFORM=m +CONFIG_CAN_TSCAN1=m +CONFIG_CAN_SOFTING=m +CONFIG_CAN_SOFTING_CS=m + +# +# CAN SPI interfaces +# +CONFIG_CAN_HI311X=m +CONFIG_CAN_MCP251X=m +CONFIG_CAN_MCP251XFD=m +# CONFIG_CAN_MCP251XFD_SANITY is not set +# end of CAN SPI interfaces + +# +# CAN USB interfaces +# +CONFIG_CAN_8DEV_USB=m +CONFIG_CAN_EMS_USB=m +CONFIG_CAN_ESD_USB2=m +CONFIG_CAN_ETAS_ES58X=m +CONFIG_CAN_GS_USB=m +CONFIG_CAN_KVASER_USB=m +CONFIG_CAN_MCBA_USB=m +CONFIG_CAN_PEAK_USB=m +CONFIG_CAN_UCAN=m +# end of CAN USB interfaces + +# CONFIG_CAN_DEBUG_DEVICES is not set +# end of CAN Device Drivers + +CONFIG_BT=m +CONFIG_BT_BREDR=y +CONFIG_BT_RFCOMM=m +CONFIG_BT_RFCOMM_TTY=y +CONFIG_BT_BNEP=m +CONFIG_BT_BNEP_MC_FILTER=y +CONFIG_BT_BNEP_PROTO_FILTER=y +CONFIG_BT_CMTP=m +CONFIG_BT_HIDP=m +CONFIG_BT_HS=y +CONFIG_BT_LE=y +CONFIG_BT_6LOWPAN=m +# CONFIG_BT_LEDS is not set +CONFIG_BT_MSFTEXT=y +CONFIG_BT_AOSPEXT=y +CONFIG_BT_DEBUGFS=y +# CONFIG_BT_SELFTEST is not set + +# +# Bluetooth device drivers +# +CONFIG_BT_INTEL=m +CONFIG_BT_BCM=m +CONFIG_BT_RTL=m +CONFIG_BT_QCA=m +CONFIG_BT_HCIBTUSB=m +# CONFIG_BT_HCIBTUSB_AUTOSUSPEND is not set +CONFIG_BT_HCIBTUSB_BCM=y +CONFIG_BT_HCIBTUSB_MTK=y +CONFIG_BT_HCIBTUSB_RTL=y +CONFIG_BT_HCIBTSDIO=m +CONFIG_BT_HCIUART=m +CONFIG_BT_HCIUART_SERDEV=y +CONFIG_BT_HCIUART_H4=y +CONFIG_BT_HCIUART_NOKIA=m +CONFIG_BT_HCIUART_BCSP=y +CONFIG_BT_HCIUART_ATH3K=y +CONFIG_BT_HCIUART_LL=y +CONFIG_BT_HCIUART_3WIRE=y +CONFIG_BT_HCIUART_INTEL=y +CONFIG_BT_HCIUART_BCM=y +CONFIG_BT_HCIUART_RTL=y +CONFIG_BT_HCIUART_QCA=y +CONFIG_BT_HCIUART_AG6XX=y +CONFIG_BT_HCIUART_MRVL=y +CONFIG_BT_HCIBCM203X=m +CONFIG_BT_HCIBPA10X=m +CONFIG_BT_HCIBFUSB=m +CONFIG_BT_HCIDTL1=m +CONFIG_BT_HCIBT3C=m +CONFIG_BT_HCIBLUECARD=m +CONFIG_BT_HCIVHCI=m +CONFIG_BT_MRVL=m +CONFIG_BT_MRVL_SDIO=m +CONFIG_BT_ATH3K=m +CONFIG_BT_MTKSDIO=m +CONFIG_BT_MTKUART=m +CONFIG_BT_HCIRSI=m +CONFIG_BT_VIRTIO=m +# end of Bluetooth device drivers + +CONFIG_AF_RXRPC=m +CONFIG_AF_RXRPC_IPV6=y +# CONFIG_AF_RXRPC_INJECT_LOSS is not set +# CONFIG_AF_RXRPC_DEBUG is not set +# CONFIG_RXKAD is not set +CONFIG_AF_KCM=m +CONFIG_STREAM_PARSER=y +CONFIG_MCTP=y +CONFIG_FIB_RULES=y +CONFIG_WIRELESS=y +CONFIG_WIRELESS_EXT=y +CONFIG_WEXT_CORE=y +CONFIG_WEXT_PROC=y +CONFIG_WEXT_SPY=y +CONFIG_WEXT_PRIV=y +CONFIG_CFG80211=m +# CONFIG_NL80211_TESTMODE is not set +# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set +# CONFIG_CFG80211_CERTIFICATION_ONUS is not set +CONFIG_CFG80211_REQUIRE_SIGNED_REGDB=y +CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS=y +CONFIG_CFG80211_DEFAULT_PS=y +CONFIG_CFG80211_DEBUGFS=y +CONFIG_CFG80211_CRDA_SUPPORT=y +CONFIG_CFG80211_WEXT=y +CONFIG_CFG80211_WEXT_EXPORT=y +CONFIG_LIB80211=m +CONFIG_LIB80211_CRYPT_WEP=m +CONFIG_LIB80211_CRYPT_CCMP=m +CONFIG_LIB80211_CRYPT_TKIP=m +# CONFIG_LIB80211_DEBUG is not set +CONFIG_MAC80211=m +CONFIG_MAC80211_HAS_RC=y +CONFIG_MAC80211_RC_MINSTREL=y +CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y +CONFIG_MAC80211_RC_DEFAULT="minstrel_ht" +CONFIG_MAC80211_MESH=y +CONFIG_MAC80211_LEDS=y +CONFIG_MAC80211_DEBUGFS=y +CONFIG_MAC80211_MESSAGE_TRACING=y +# CONFIG_MAC80211_DEBUG_MENU is not set +CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 +CONFIG_RFKILL=y +CONFIG_RFKILL_LEDS=y +CONFIG_RFKILL_INPUT=y +CONFIG_RFKILL_GPIO=m +CONFIG_NET_9P=m +CONFIG_NET_9P_VIRTIO=m +CONFIG_NET_9P_XEN=m +CONFIG_NET_9P_RDMA=m +# CONFIG_NET_9P_DEBUG is not set +CONFIG_CAIF=m +# CONFIG_CAIF_DEBUG is not set +CONFIG_CAIF_NETDEV=m +CONFIG_CAIF_USB=m +CONFIG_CEPH_LIB=m +# CONFIG_CEPH_LIB_PRETTYDEBUG is not set +CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y +CONFIG_NFC=m +CONFIG_NFC_DIGITAL=m +CONFIG_NFC_NCI=m +CONFIG_NFC_NCI_SPI=m +CONFIG_NFC_NCI_UART=m +CONFIG_NFC_HCI=m +CONFIG_NFC_SHDLC=y + +# +# Near Field Communication (NFC) devices +# +CONFIG_NFC_TRF7970A=m +CONFIG_NFC_SIM=m +CONFIG_NFC_PORT100=m +CONFIG_NFC_VIRTUAL_NCI=m +CONFIG_NFC_FDP=m +CONFIG_NFC_FDP_I2C=m +CONFIG_NFC_PN544=m +CONFIG_NFC_PN544_I2C=m +CONFIG_NFC_PN533=m +CONFIG_NFC_PN533_USB=m +CONFIG_NFC_PN533_I2C=m +CONFIG_NFC_PN532_UART=m +CONFIG_NFC_MICROREAD=m +CONFIG_NFC_MICROREAD_I2C=m +CONFIG_NFC_MRVL=m +CONFIG_NFC_MRVL_USB=m +CONFIG_NFC_MRVL_UART=m +CONFIG_NFC_MRVL_I2C=m +CONFIG_NFC_MRVL_SPI=m +CONFIG_NFC_ST21NFCA=m +CONFIG_NFC_ST21NFCA_I2C=m +CONFIG_NFC_ST_NCI=m +CONFIG_NFC_ST_NCI_I2C=m +CONFIG_NFC_ST_NCI_SPI=m +CONFIG_NFC_NXP_NCI=m +CONFIG_NFC_NXP_NCI_I2C=m +CONFIG_NFC_S3FWRN5=m +CONFIG_NFC_S3FWRN5_I2C=m +CONFIG_NFC_S3FWRN82_UART=m +CONFIG_NFC_ST95HF=m +# end of Near Field Communication (NFC) devices + +CONFIG_PSAMPLE=m +CONFIG_NET_IFE=m +CONFIG_LWTUNNEL=y +CONFIG_LWTUNNEL_BPF=y +CONFIG_DST_CACHE=y +CONFIG_GRO_CELLS=y +CONFIG_NET_SELFTESTS=y +CONFIG_NET_SOCK_MSG=y +CONFIG_NET_DEVLINK=y +CONFIG_PAGE_POOL=y +CONFIG_FAILOVER=y +CONFIG_ETHTOOL_NETLINK=y + +# +# Device Drivers +# +CONFIG_HAVE_EISA=y +# CONFIG_EISA is not set +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCIEPORTBUS=y +CONFIG_HOTPLUG_PCI_PCIE=y +CONFIG_PCIEAER=y +# CONFIG_PCIEAER_INJECT is not set +# CONFIG_PCIE_ECRC is not set +CONFIG_PCIEASPM=y +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +CONFIG_PCIE_PME=y +CONFIG_PCIE_DPC=y +CONFIG_PCIE_PTM=y +# CONFIG_PCIE_EDR is not set +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_QUIRKS=y +# CONFIG_PCI_DEBUG is not set +CONFIG_PCI_REALLOC_ENABLE_AUTO=y +CONFIG_PCI_STUB=m +# CONFIG_PCI_PF_STUB is not set +CONFIG_PCI_ATS=y +CONFIG_PCI_LOCKLESS_CONFIG=y +CONFIG_PCI_IOV=y +CONFIG_PCI_PRI=y +CONFIG_PCI_PASID=y +CONFIG_PCI_LABEL=y +# CONFIG_PCIE_BUS_TUNE_OFF is not set +CONFIG_PCIE_BUS_DEFAULT=y +# CONFIG_PCIE_BUS_SAFE is not set +# CONFIG_PCIE_BUS_PERFORMANCE is not set +# CONFIG_PCIE_BUS_PEER2PEER is not set +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_COMPAQ=m +CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM=y +CONFIG_HOTPLUG_PCI_IBM=m +CONFIG_HOTPLUG_PCI_ACPI=y +CONFIG_HOTPLUG_PCI_ACPI_IBM=m +CONFIG_HOTPLUG_PCI_CPCI=y +CONFIG_HOTPLUG_PCI_CPCI_ZT5550=m +CONFIG_HOTPLUG_PCI_CPCI_GENERIC=m +CONFIG_HOTPLUG_PCI_SHPC=y + +# +# PCI controller drivers +# + +# +# DesignWare PCI Core Support +# +# CONFIG_PCIE_DW_PLAT_HOST is not set +# CONFIG_PCI_MESON is not set +# end of DesignWare PCI Core Support + +# +# Mobiveil PCIe Core Support +# +# end of Mobiveil PCIe Core Support + +# +# Cadence PCIe controllers support +# +# end of Cadence PCIe controllers support +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +CONFIG_PCI_SW_SWITCHTEC=m +# end of PCI switch controller drivers + +CONFIG_CXL_BUS=m +CONFIG_CXL_MEM=m +# CONFIG_CXL_MEM_RAW_COMMANDS is not set +CONFIG_CXL_ACPI=m +CONFIG_CXL_PMEM=m +CONFIG_PCCARD=m +CONFIG_PCMCIA=m +CONFIG_PCMCIA_LOAD_CIS=y +CONFIG_CARDBUS=y + +# +# PC-card bridges +# +CONFIG_YENTA=m +CONFIG_YENTA_O2=y +CONFIG_YENTA_RICOH=y +CONFIG_YENTA_TI=y +CONFIG_YENTA_ENE_TUNE=y +CONFIG_YENTA_TOSHIBA=y +CONFIG_PD6729=m +CONFIG_I82092=m +CONFIG_I82365=m +CONFIG_TCIC=m +CONFIG_PCMCIA_PROBE=y +CONFIG_PCCARD_NONSTATIC=y +CONFIG_RAPIDIO=y +CONFIG_RAPIDIO_TSI721=m +CONFIG_RAPIDIO_DISC_TIMEOUT=30 +# CONFIG_RAPIDIO_ENABLE_RX_TX_PORTS is not set +CONFIG_RAPIDIO_DMA_ENGINE=y +# CONFIG_RAPIDIO_DEBUG is not set +CONFIG_RAPIDIO_ENUM_BASIC=m +CONFIG_RAPIDIO_CHMAN=m +CONFIG_RAPIDIO_MPORT_CDEV=m + +# +# RapidIO Switch drivers +# +CONFIG_RAPIDIO_TSI57X=m +CONFIG_RAPIDIO_CPS_XX=m +CONFIG_RAPIDIO_TSI568=m +CONFIG_RAPIDIO_CPS_GEN2=m +CONFIG_RAPIDIO_RXS_GEN3=m +# end of RapidIO Switch drivers + +# +# Generic Driver Options +# +CONFIG_AUXILIARY_BUS=y +CONFIG_UEVENT_HELPER=y +CONFIG_UEVENT_HELPER_PATH="" +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +# CONFIG_STANDALONE is not set +CONFIG_PREVENT_FIRMWARE_BUILD=y + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_FW_LOADER_PAGED_BUF=y +CONFIG_EXTRA_FIRMWARE="" +CONFIG_FW_LOADER_USER_HELPER=y +# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set +CONFIG_FW_LOADER_COMPRESS=y +CONFIG_FW_CACHE=y +# end of Firmware loader + +CONFIG_WANT_DEV_COREDUMP=y +CONFIG_ALLOW_DEV_COREDUMP=y +CONFIG_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set +CONFIG_SYS_HYPERVISOR=y +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +CONFIG_REGMAP=y +CONFIG_REGMAP_I2C=y +CONFIG_REGMAP_SPI=y +CONFIG_REGMAP_SPMI=m +CONFIG_REGMAP_W1=m +CONFIG_REGMAP_MMIO=y +CONFIG_REGMAP_IRQ=y +CONFIG_REGMAP_SCCB=m +CONFIG_REGMAP_I3C=m +CONFIG_REGMAP_SPI_AVMM=m +CONFIG_DMA_SHARED_BUFFER=y +# CONFIG_DMA_FENCE_TRACE is not set +# end of Generic Driver Options + +# +# Bus devices +# +CONFIG_MHI_BUS=m +# CONFIG_MHI_BUS_DEBUG is not set +CONFIG_MHI_BUS_PCI_GENERIC=m +# end of Bus devices + +CONFIG_CONNECTOR=y +CONFIG_PROC_EVENTS=y + +# +# Firmware Drivers +# + +# +# ARM System Control and Management Interface Protocol +# +# end of ARM System Control and Management Interface Protocol + +CONFIG_EDD=y +CONFIG_EDD_OFF=y +CONFIG_FIRMWARE_MEMMAP=y +CONFIG_DMIID=y +CONFIG_DMI_SYSFS=m +CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y +CONFIG_ISCSI_IBFT_FIND=y +CONFIG_ISCSI_IBFT=m +CONFIG_FW_CFG_SYSFS=m +# CONFIG_FW_CFG_SYSFS_CMDLINE is not set +CONFIG_SYSFB=y +CONFIG_SYSFB_SIMPLEFB=y +CONFIG_CS_DSP=m +CONFIG_GOOGLE_FIRMWARE=y +# CONFIG_GOOGLE_SMI is not set +CONFIG_GOOGLE_COREBOOT_TABLE=m +# CONFIG_GOOGLE_MEMCONSOLE_X86_LEGACY is not set +CONFIG_GOOGLE_FRAMEBUFFER_COREBOOT=m +# CONFIG_GOOGLE_MEMCONSOLE_COREBOOT is not set +# CONFIG_GOOGLE_VPD is not set + +# +# EFI (Extensible Firmware Interface) Support +# +CONFIG_EFI_VARS=y +CONFIG_EFI_ESRT=y +CONFIG_EFI_VARS_PSTORE=m +# CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set +CONFIG_EFI_RUNTIME_MAP=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_RUNTIME_WRAPPERS=y +CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y +CONFIG_EFI_BOOTLOADER_CONTROL=m +CONFIG_EFI_CAPSULE_LOADER=y +CONFIG_EFI_CAPSULE_QUIRK_QUARK_CSH=y +# CONFIG_EFI_TEST is not set +CONFIG_APPLE_PROPERTIES=y +CONFIG_RESET_ATTACK_MITIGATION=y +# CONFIG_EFI_RCI2_TABLE is not set +# CONFIG_EFI_DISABLE_PCI_DMA is not set +# end of EFI (Extensible Firmware Interface) Support + +CONFIG_UEFI_CPER=y +CONFIG_UEFI_CPER_X86=y +CONFIG_EFI_DEV_PATH_PARSER=y +CONFIG_EFI_EARLYCON=y +CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + +CONFIG_GNSS=m +CONFIG_GNSS_SERIAL=m +CONFIG_GNSS_MTK_SERIAL=m +CONFIG_GNSS_SIRF_SERIAL=m +CONFIG_GNSS_UBX_SERIAL=m +CONFIG_MTD=m +# CONFIG_MTD_TESTS is not set + +# +# Partition parsers +# +CONFIG_MTD_AR7_PARTS=m +CONFIG_MTD_CMDLINE_PARTS=m +CONFIG_MTD_REDBOOT_PARTS=m +CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 +# CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set +# CONFIG_MTD_REDBOOT_PARTS_READONLY is not set +# end of Partition parsers + +# +# User Modules And Translation Layers +# +CONFIG_MTD_BLKDEVS=m +CONFIG_MTD_BLOCK=m +CONFIG_MTD_BLOCK_RO=m + +# +# Note that in some cases UBI block is preferred. See MTD_UBI_BLOCK. +# +CONFIG_FTL=m +CONFIG_NFTL=m +CONFIG_NFTL_RW=y +CONFIG_INFTL=m +CONFIG_RFD_FTL=m +CONFIG_SSFDC=m +CONFIG_SM_FTL=m +CONFIG_MTD_OOPS=m +CONFIG_MTD_SWAP=m +# CONFIG_MTD_PARTITIONED_MASTER is not set + +# +# RAM/ROM/Flash chip drivers +# +CONFIG_MTD_CFI=m +CONFIG_MTD_JEDECPROBE=m +CONFIG_MTD_GEN_PROBE=m +# CONFIG_MTD_CFI_ADV_OPTIONS is not set +CONFIG_MTD_MAP_BANK_WIDTH_1=y +CONFIG_MTD_MAP_BANK_WIDTH_2=y +CONFIG_MTD_MAP_BANK_WIDTH_4=y +CONFIG_MTD_CFI_I1=y +CONFIG_MTD_CFI_I2=y +CONFIG_MTD_CFI_INTELEXT=m +CONFIG_MTD_CFI_AMDSTD=m +CONFIG_MTD_CFI_STAA=m +CONFIG_MTD_CFI_UTIL=m +CONFIG_MTD_RAM=m +CONFIG_MTD_ROM=m +CONFIG_MTD_ABSENT=m +# end of RAM/ROM/Flash chip drivers + +# +# Mapping drivers for chip access +# +CONFIG_MTD_COMPLEX_MAPPINGS=y +CONFIG_MTD_PHYSMAP=m +# CONFIG_MTD_PHYSMAP_COMPAT is not set +CONFIG_MTD_PHYSMAP_GPIO_ADDR=y +CONFIG_MTD_SBC_GXX=m +CONFIG_MTD_SCx200_DOCFLASH=m +CONFIG_MTD_AMD76XROM=m +CONFIG_MTD_ICHXROM=m +CONFIG_MTD_ESB2ROM=m +CONFIG_MTD_CK804XROM=m +CONFIG_MTD_SCB2_FLASH=m +CONFIG_MTD_NETtel=m +CONFIG_MTD_L440GX=m +CONFIG_MTD_PCI=m +CONFIG_MTD_PCMCIA=m +# CONFIG_MTD_PCMCIA_ANONYMOUS is not set +CONFIG_MTD_INTEL_VR_NOR=m +CONFIG_MTD_PLATRAM=m +# end of Mapping drivers for chip access + +# +# Self-contained MTD device drivers +# +CONFIG_MTD_PMC551=m +# CONFIG_MTD_PMC551_BUGFIX is not set +# CONFIG_MTD_PMC551_DEBUG is not set +CONFIG_MTD_DATAFLASH=m +# CONFIG_MTD_DATAFLASH_WRITE_VERIFY is not set +CONFIG_MTD_DATAFLASH_OTP=y +CONFIG_MTD_MCHP23K256=m +CONFIG_MTD_MCHP48L640=m +CONFIG_MTD_SST25L=m +CONFIG_MTD_SLRAM=m +CONFIG_MTD_PHRAM=m +CONFIG_MTD_MTDRAM=m +CONFIG_MTDRAM_TOTAL_SIZE=4096 +CONFIG_MTDRAM_ERASE_SIZE=128 +CONFIG_MTD_BLOCK2MTD=m + +# +# Disk-On-Chip Device Drivers +# +CONFIG_MTD_DOCG3=m +CONFIG_BCH_CONST_M=14 +CONFIG_BCH_CONST_T=4 +# end of Self-contained MTD device drivers + +# +# NAND +# +CONFIG_MTD_NAND_CORE=m +CONFIG_MTD_ONENAND=m +CONFIG_MTD_ONENAND_VERIFY_WRITE=y +CONFIG_MTD_ONENAND_GENERIC=m +# CONFIG_MTD_ONENAND_OTP is not set +CONFIG_MTD_ONENAND_2X_PROGRAM=y +CONFIG_MTD_RAW_NAND=m + +# +# Raw/parallel NAND flash controllers +# +CONFIG_MTD_NAND_DENALI=m +CONFIG_MTD_NAND_DENALI_PCI=m +CONFIG_MTD_NAND_CAFE=m +CONFIG_MTD_NAND_CS553X=m +CONFIG_MTD_NAND_MXIC=m +CONFIG_MTD_NAND_GPIO=m +CONFIG_MTD_NAND_PLATFORM=m +CONFIG_MTD_NAND_ARASAN=m + +# +# Misc +# +CONFIG_MTD_SM_COMMON=m +CONFIG_MTD_NAND_NANDSIM=m +CONFIG_MTD_NAND_RICOH=m +CONFIG_MTD_NAND_DISKONCHIP=m +# CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADVANCED is not set +CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS=0 +# CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE is not set +CONFIG_MTD_SPI_NAND=m + +# +# ECC engine support +# +CONFIG_MTD_NAND_ECC=y +CONFIG_MTD_NAND_ECC_SW_HAMMING=y +# CONFIG_MTD_NAND_ECC_SW_HAMMING_SMC is not set +# CONFIG_MTD_NAND_ECC_SW_BCH is not set +# end of ECC engine support +# end of NAND + +# +# LPDDR & LPDDR2 PCM memory drivers +# +CONFIG_MTD_LPDDR=m +CONFIG_MTD_QINFO_PROBE=m +# end of LPDDR & LPDDR2 PCM memory drivers + +CONFIG_MTD_SPI_NOR=m +CONFIG_MTD_SPI_NOR_USE_4K_SECTORS=y +# CONFIG_MTD_SPI_NOR_SWP_DISABLE is not set +CONFIG_MTD_SPI_NOR_SWP_DISABLE_ON_VOLATILE=y +# CONFIG_MTD_SPI_NOR_SWP_KEEP is not set +CONFIG_SPI_INTEL_SPI=m +CONFIG_SPI_INTEL_SPI_PCI=m +CONFIG_SPI_INTEL_SPI_PLATFORM=m +CONFIG_MTD_UBI=m +CONFIG_MTD_UBI_WL_THRESHOLD=4096 +CONFIG_MTD_UBI_BEB_LIMIT=20 +CONFIG_MTD_UBI_FASTMAP=y +CONFIG_MTD_UBI_GLUEBI=m +CONFIG_MTD_UBI_BLOCK=y +CONFIG_MTD_HYPERBUS=m +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +CONFIG_PARPORT=m +CONFIG_PARPORT_PC=m +CONFIG_PARPORT_SERIAL=m +CONFIG_PARPORT_PC_FIFO=y +# CONFIG_PARPORT_PC_SUPERIO is not set +CONFIG_PARPORT_PC_PCMCIA=m +CONFIG_PARPORT_AX88796=m +CONFIG_PARPORT_1284=y +CONFIG_PARPORT_NOT_PC=y +CONFIG_PNP=y +# CONFIG_PNP_DEBUG_MESSAGES is not set + +# +# Protocols +# +CONFIG_ISAPNP=y +CONFIG_PNPBIOS=y +CONFIG_PNPBIOS_PROC_FS=y +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +CONFIG_BLK_DEV_NULL_BLK=m +CONFIG_BLK_DEV_FD=m +CONFIG_CDROM=y +CONFIG_PARIDE=m + +# +# Parallel IDE high-level drivers +# +CONFIG_PARIDE_PD=m +CONFIG_PARIDE_PCD=m +CONFIG_PARIDE_PF=m +CONFIG_PARIDE_PT=m +CONFIG_PARIDE_PG=m + +# +# Parallel IDE protocol modules +# +CONFIG_PARIDE_ATEN=m +CONFIG_PARIDE_BPCK=m +CONFIG_PARIDE_BPCK6=m +CONFIG_PARIDE_COMM=m +CONFIG_PARIDE_DSTR=m +CONFIG_PARIDE_FIT2=m +CONFIG_PARIDE_FIT3=m +CONFIG_PARIDE_EPAT=m +CONFIG_PARIDE_EPATC8=y +CONFIG_PARIDE_EPIA=m +CONFIG_PARIDE_FRIQ=m +CONFIG_PARIDE_FRPW=m +CONFIG_PARIDE_KBIC=m +CONFIG_PARIDE_KTTI=m +CONFIG_PARIDE_ON20=m +CONFIG_PARIDE_ON26=m +CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m +CONFIG_ZRAM=m +CONFIG_ZRAM_DEF_COMP_LZORLE=y +# CONFIG_ZRAM_DEF_COMP_ZSTD is not set +# CONFIG_ZRAM_DEF_COMP_LZ4 is not set +# CONFIG_ZRAM_DEF_COMP_LZO is not set +# CONFIG_ZRAM_DEF_COMP_LZ4HC is not set +# CONFIG_ZRAM_DEF_COMP_842 is not set +CONFIG_ZRAM_DEF_COMP="lzo-rle" +# CONFIG_ZRAM_WRITEBACK is not set +# CONFIG_ZRAM_MEMORY_TRACKING is not set +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 +CONFIG_BLK_DEV_DRBD=m +# CONFIG_DRBD_FAULT_INJECTION is not set +CONFIG_BLK_DEV_NBD=m +CONFIG_BLK_DEV_SX8=m +CONFIG_BLK_DEV_RAM=y +CONFIG_BLK_DEV_RAM_COUNT=16 +CONFIG_BLK_DEV_RAM_SIZE=65536 +CONFIG_CDROM_PKTCDVD=m +CONFIG_CDROM_PKTCDVD_BUFFERS=8 +# CONFIG_CDROM_PKTCDVD_WCACHE is not set +CONFIG_ATA_OVER_ETH=m +CONFIG_XEN_BLKDEV_FRONTEND=y +CONFIG_XEN_BLKDEV_BACKEND=m +CONFIG_VIRTIO_BLK=y +CONFIG_BLK_DEV_RBD=m +CONFIG_BLK_DEV_RSXX=m +CONFIG_BLK_DEV_RNBD=y +CONFIG_BLK_DEV_RNBD_CLIENT=m +CONFIG_BLK_DEV_RNBD_SERVER=m + +# +# NVME Support +# +CONFIG_NVME_CORE=y +CONFIG_BLK_DEV_NVME=y +# CONFIG_NVME_MULTIPATH is not set +CONFIG_NVME_HWMON=y +CONFIG_NVME_FABRICS=m +CONFIG_NVME_RDMA=m +CONFIG_NVME_FC=m +CONFIG_NVME_TCP=m +CONFIG_NVME_TARGET=m +# CONFIG_NVME_TARGET_PASSTHRU is not set +CONFIG_NVME_TARGET_LOOP=m +CONFIG_NVME_TARGET_RDMA=m +CONFIG_NVME_TARGET_FC=m +CONFIG_NVME_TARGET_FCLOOP=m +CONFIG_NVME_TARGET_TCP=m +# end of NVME Support + +# +# Misc devices +# +CONFIG_SENSORS_LIS3LV02D=m +CONFIG_AD525X_DPOT=m +CONFIG_AD525X_DPOT_I2C=m +CONFIG_AD525X_DPOT_SPI=m +CONFIG_DUMMY_IRQ=m +CONFIG_IBM_ASM=m +CONFIG_PHANTOM=m +CONFIG_TIFM_CORE=m +CONFIG_TIFM_7XX1=m +CONFIG_ICS932S401=m +CONFIG_ENCLOSURE_SERVICES=m +# CONFIG_CS5535_MFGPT is not set +CONFIG_HP_ILO=m +CONFIG_APDS9802ALS=m +CONFIG_ISL29003=m +CONFIG_ISL29020=m +CONFIG_SENSORS_TSL2550=m +CONFIG_SENSORS_BH1770=m +CONFIG_SENSORS_APDS990X=m +CONFIG_HMC6352=m +CONFIG_DS1682=m +CONFIG_VMWARE_BALLOON=m +CONFIG_PCH_PHUB=m +CONFIG_LATTICE_ECP3_CONFIG=m +CONFIG_SRAM=y +CONFIG_DW_XDATA_PCIE=m +# CONFIG_PCI_ENDPOINT_TEST is not set +CONFIG_XILINX_SDFEC=m +CONFIG_MISC_RTSX=m +CONFIG_C2PORT=m +CONFIG_C2PORT_DURAMAR_2150=m + +# +# EEPROM support +# +CONFIG_EEPROM_AT24=m +CONFIG_EEPROM_AT25=m +CONFIG_EEPROM_LEGACY=m +CONFIG_EEPROM_MAX6875=m +CONFIG_EEPROM_93CX6=m +CONFIG_EEPROM_93XX46=m +CONFIG_EEPROM_IDT_89HPESX=m +CONFIG_EEPROM_EE1004=m +# end of EEPROM support + +CONFIG_CB710_CORE=m +# CONFIG_CB710_DEBUG is not set +CONFIG_CB710_DEBUG_ASSUMPTIONS=y + +# +# Texas Instruments shared transport line discipline +# +CONFIG_TI_ST=m +# end of Texas Instruments shared transport line discipline + +CONFIG_SENSORS_LIS3_I2C=m +CONFIG_ALTERA_STAPL=m +# CONFIG_INTEL_MEI is not set +# CONFIG_INTEL_MEI_ME is not set +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_INTEL_MEI_HDCP is not set +# CONFIG_INTEL_MEI_PXP is not set +CONFIG_VMWARE_VMCI=m +CONFIG_ECHO=m +CONFIG_BCM_VK=m +CONFIG_BCM_VK_TTY=y +CONFIG_MISC_ALCOR_PCI=m +CONFIG_MISC_RTSX_PCI=m +CONFIG_MISC_RTSX_USB=m +CONFIG_HABANA_AI=m +CONFIG_UACCE=m +CONFIG_PVPANIC=y +CONFIG_PVPANIC_MMIO=m +CONFIG_PVPANIC_PCI=m +# end of Misc devices + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +CONFIG_RAID_ATTRS=m +CONFIG_SCSI_COMMON=y +CONFIG_SCSI=y +CONFIG_SCSI_DMA=y +CONFIG_SCSI_NETLINK=y +CONFIG_SCSI_PROC_FS=y + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=y +CONFIG_CHR_DEV_ST=m +CONFIG_BLK_DEV_SR=y +CONFIG_CHR_DEV_SG=y +CONFIG_BLK_DEV_BSG=y +CONFIG_CHR_DEV_SCH=m +CONFIG_SCSI_ENCLOSURE=m +CONFIG_SCSI_CONSTANTS=y +CONFIG_SCSI_LOGGING=y +CONFIG_SCSI_SCAN_ASYNC=y + +# +# SCSI Transports +# +CONFIG_SCSI_SPI_ATTRS=m +CONFIG_SCSI_FC_ATTRS=m +CONFIG_SCSI_ISCSI_ATTRS=m +CONFIG_SCSI_SAS_ATTRS=m +CONFIG_SCSI_SAS_LIBSAS=m +CONFIG_SCSI_SAS_ATA=y +CONFIG_SCSI_SAS_HOST_SMP=y +CONFIG_SCSI_SRP_ATTRS=m +# end of SCSI Transports + +CONFIG_SCSI_LOWLEVEL=y +CONFIG_ISCSI_TCP=m +CONFIG_ISCSI_BOOT_SYSFS=m +CONFIG_SCSI_CXGB3_ISCSI=m +CONFIG_SCSI_CXGB4_ISCSI=m +CONFIG_SCSI_BNX2_ISCSI=m +CONFIG_SCSI_BNX2X_FCOE=m +CONFIG_BE2ISCSI=m +CONFIG_BLK_DEV_3W_XXXX_RAID=m +CONFIG_SCSI_HPSA=m +CONFIG_SCSI_3W_9XXX=m +CONFIG_SCSI_3W_SAS=m +CONFIG_SCSI_ACARD=m +CONFIG_SCSI_AHA152X=m +CONFIG_SCSI_AHA1542=m +CONFIG_SCSI_AACRAID=m +CONFIG_SCSI_AIC7XXX=m +CONFIG_AIC7XXX_CMDS_PER_DEVICE=8 +CONFIG_AIC7XXX_RESET_DELAY_MS=5000 +# CONFIG_AIC7XXX_DEBUG_ENABLE is not set +CONFIG_AIC7XXX_DEBUG_MASK=0 +CONFIG_AIC7XXX_REG_PRETTY_PRINT=y +CONFIG_SCSI_AIC79XX=m +CONFIG_AIC79XX_CMDS_PER_DEVICE=32 +CONFIG_AIC79XX_RESET_DELAY_MS=5000 +# CONFIG_AIC79XX_DEBUG_ENABLE is not set +CONFIG_AIC79XX_DEBUG_MASK=0 +CONFIG_AIC79XX_REG_PRETTY_PRINT=y +CONFIG_SCSI_AIC94XX=m +# CONFIG_AIC94XX_DEBUG is not set +CONFIG_SCSI_MVSAS=m +# CONFIG_SCSI_MVSAS_DEBUG is not set +# CONFIG_SCSI_MVSAS_TASKLET is not set +CONFIG_SCSI_MVUMI=m +CONFIG_SCSI_DPT_I2O=m +CONFIG_SCSI_ADVANSYS=m +CONFIG_SCSI_ARCMSR=m +CONFIG_SCSI_ESAS2R=m +CONFIG_MEGARAID_NEWGEN=y +CONFIG_MEGARAID_MM=m +CONFIG_MEGARAID_MAILBOX=m +CONFIG_MEGARAID_LEGACY=m +CONFIG_MEGARAID_SAS=m +CONFIG_SCSI_MPT3SAS=m +CONFIG_SCSI_MPT2SAS_MAX_SGE=128 +CONFIG_SCSI_MPT3SAS_MAX_SGE=128 +CONFIG_SCSI_MPT2SAS=m +CONFIG_SCSI_MPI3MR=m +CONFIG_SCSI_SMARTPQI=m +CONFIG_SCSI_UFSHCD=m +CONFIG_SCSI_UFSHCD_PCI=m +# CONFIG_SCSI_UFS_DWC_TC_PCI is not set +CONFIG_SCSI_UFSHCD_PLATFORM=m +CONFIG_SCSI_UFS_CDNS_PLATFORM=m +# CONFIG_SCSI_UFS_DWC_TC_PLATFORM is not set +# CONFIG_SCSI_UFS_BSG is not set +CONFIG_SCSI_UFS_CRYPTO=y +CONFIG_SCSI_UFS_HPB=y +CONFIG_SCSI_UFS_HWMON=y +CONFIG_SCSI_HPTIOP=m +CONFIG_SCSI_BUSLOGIC=m +CONFIG_SCSI_FLASHPOINT=y +CONFIG_SCSI_MYRB=m +CONFIG_SCSI_MYRS=m +CONFIG_VMWARE_PVSCSI=m +CONFIG_XEN_SCSI_FRONTEND=m +CONFIG_HYPERV_STORAGE=m +CONFIG_LIBFC=m +CONFIG_LIBFCOE=m +CONFIG_FCOE=m +CONFIG_FCOE_FNIC=m +CONFIG_SCSI_SNIC=m +# CONFIG_SCSI_SNIC_DEBUG_FS is not set +CONFIG_SCSI_DMX3191D=m +CONFIG_SCSI_FDOMAIN=m +CONFIG_SCSI_FDOMAIN_PCI=m +CONFIG_SCSI_FDOMAIN_ISA=m +CONFIG_SCSI_ISCI=m +CONFIG_SCSI_GENERIC_NCR5380=m +CONFIG_SCSI_IPS=m +CONFIG_SCSI_INITIO=m +CONFIG_SCSI_INIA100=m +CONFIG_SCSI_PPA=m +CONFIG_SCSI_IMM=m +# CONFIG_SCSI_IZIP_EPP16 is not set +# CONFIG_SCSI_IZIP_SLOW_CTR is not set +CONFIG_SCSI_STEX=m +CONFIG_SCSI_SYM53C8XX_2=m +CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1 +CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 +CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 +CONFIG_SCSI_SYM53C8XX_MMIO=y +CONFIG_SCSI_IPR=m +CONFIG_SCSI_IPR_TRACE=y +CONFIG_SCSI_IPR_DUMP=y +CONFIG_SCSI_QLOGIC_FAS=m +CONFIG_SCSI_QLOGIC_1280=m +CONFIG_SCSI_QLA_FC=m +CONFIG_TCM_QLA2XXX=m +# CONFIG_TCM_QLA2XXX_DEBUG is not set +CONFIG_SCSI_QLA_ISCSI=m +CONFIG_QEDI=m +CONFIG_QEDF=m +CONFIG_SCSI_LPFC=m +# CONFIG_SCSI_LPFC_DEBUG_FS is not set +CONFIG_SCSI_EFCT=m +CONFIG_SCSI_DC395x=m +CONFIG_SCSI_AM53C974=m +CONFIG_SCSI_NSP32=m +CONFIG_SCSI_WD719X=m +CONFIG_SCSI_DEBUG=m +CONFIG_SCSI_PMCRAID=m +CONFIG_SCSI_PM8001=m +CONFIG_SCSI_BFA_FC=m +CONFIG_SCSI_VIRTIO=m +CONFIG_SCSI_CHELSIO_FCOE=m +CONFIG_SCSI_LOWLEVEL_PCMCIA=y +CONFIG_PCMCIA_AHA152X=m +CONFIG_PCMCIA_FDOMAIN=m +CONFIG_PCMCIA_NINJA_SCSI=m +CONFIG_PCMCIA_QLOGIC=m +CONFIG_PCMCIA_SYM53C500=m +CONFIG_SCSI_DH=y +CONFIG_SCSI_DH_RDAC=m +CONFIG_SCSI_DH_HP_SW=m +CONFIG_SCSI_DH_EMC=m +CONFIG_SCSI_DH_ALUA=m +# end of SCSI device support + +CONFIG_ATA=y +CONFIG_SATA_HOST=y +CONFIG_PATA_TIMINGS=y +CONFIG_ATA_VERBOSE_ERROR=y +CONFIG_ATA_FORCE=y +CONFIG_ATA_ACPI=y +CONFIG_SATA_ZPODD=y +CONFIG_SATA_PMP=y + +# +# Controllers with non-SFF native interface +# +CONFIG_SATA_AHCI=m +CONFIG_SATA_MOBILE_LPM_POLICY=0 +CONFIG_SATA_AHCI_PLATFORM=m +CONFIG_SATA_INIC162X=m +CONFIG_SATA_ACARD_AHCI=m +CONFIG_SATA_SIL24=m +CONFIG_ATA_SFF=y + +# +# SFF controllers with custom DMA interface +# +CONFIG_PDC_ADMA=m +CONFIG_SATA_QSTOR=m +CONFIG_SATA_SX4=m +CONFIG_ATA_BMDMA=y + +# +# SATA SFF controllers with BMDMA +# +CONFIG_ATA_PIIX=y +CONFIG_SATA_DWC=m +# CONFIG_SATA_DWC_OLD_DMA is not set +# CONFIG_SATA_DWC_DEBUG is not set +CONFIG_SATA_MV=m +CONFIG_SATA_NV=m +CONFIG_SATA_PROMISE=m +CONFIG_SATA_SIL=m +CONFIG_SATA_SIS=m +CONFIG_SATA_SVW=m +CONFIG_SATA_ULI=m +CONFIG_SATA_VIA=m +CONFIG_SATA_VITESSE=m + +# +# PATA SFF controllers with BMDMA +# +CONFIG_PATA_ALI=m +CONFIG_PATA_AMD=m +CONFIG_PATA_ARTOP=m +CONFIG_PATA_ATIIXP=m +CONFIG_PATA_ATP867X=m +CONFIG_PATA_CMD64X=m +CONFIG_PATA_CS5520=m +CONFIG_PATA_CS5530=m +CONFIG_PATA_CS5535=m +CONFIG_PATA_CS5536=m +CONFIG_PATA_CYPRESS=m +CONFIG_PATA_EFAR=m +CONFIG_PATA_HPT366=m +CONFIG_PATA_HPT37X=m +CONFIG_PATA_HPT3X2N=m +CONFIG_PATA_HPT3X3=m +# CONFIG_PATA_HPT3X3_DMA is not set +CONFIG_PATA_IT8213=m +CONFIG_PATA_IT821X=m +CONFIG_PATA_JMICRON=m +CONFIG_PATA_MARVELL=m +CONFIG_PATA_NETCELL=m +CONFIG_PATA_NINJA32=m +CONFIG_PATA_NS87415=m +CONFIG_PATA_OLDPIIX=m +CONFIG_PATA_OPTIDMA=m +CONFIG_PATA_PDC2027X=m +CONFIG_PATA_PDC_OLD=m +CONFIG_PATA_RADISYS=m +CONFIG_PATA_RDC=m +CONFIG_PATA_SC1200=m +CONFIG_PATA_SCH=m +CONFIG_PATA_SERVERWORKS=m +CONFIG_PATA_SIL680=m +CONFIG_PATA_SIS=y +CONFIG_PATA_TOSHIBA=m +CONFIG_PATA_TRIFLEX=m +CONFIG_PATA_VIA=m +CONFIG_PATA_WINBOND=m + +# +# PIO-only SFF controllers +# +CONFIG_PATA_CMD640_PCI=m +CONFIG_PATA_ISAPNP=m +CONFIG_PATA_MPIIX=m +CONFIG_PATA_NS87410=m +CONFIG_PATA_OPTI=m +CONFIG_PATA_PCMCIA=m +CONFIG_PATA_PLATFORM=m +CONFIG_PATA_QDI=m +CONFIG_PATA_RZ1000=m +CONFIG_PATA_WINBOND_VLB=m + +# +# Generic fallback / legacy drivers +# +CONFIG_PATA_ACPI=m +CONFIG_ATA_GENERIC=y +CONFIG_PATA_LEGACY=m +CONFIG_MD=y +CONFIG_BLK_DEV_MD=y +CONFIG_MD_AUTODETECT=y +CONFIG_MD_LINEAR=m +CONFIG_MD_RAID0=m +CONFIG_MD_RAID1=m +CONFIG_MD_RAID10=m +CONFIG_MD_RAID456=m +CONFIG_MD_MULTIPATH=m +CONFIG_MD_FAULTY=m +CONFIG_MD_CLUSTER=m +CONFIG_BCACHE=m +# CONFIG_BCACHE_DEBUG is not set +# CONFIG_BCACHE_CLOSURES_DEBUG is not set +# CONFIG_BCACHE_ASYNC_REGISTRATION is not set +CONFIG_BLK_DEV_DM_BUILTIN=y +CONFIG_BLK_DEV_DM=y +# CONFIG_DM_DEBUG is not set +CONFIG_DM_BUFIO=m +# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set +CONFIG_DM_BIO_PRISON=m +CONFIG_DM_PERSISTENT_DATA=m +CONFIG_DM_UNSTRIPED=m +CONFIG_DM_CRYPT=m +CONFIG_DM_SNAPSHOT=m +CONFIG_DM_THIN_PROVISIONING=m +CONFIG_DM_CACHE=m +CONFIG_DM_CACHE_SMQ=m +CONFIG_DM_WRITECACHE=m +CONFIG_DM_ERA=m +CONFIG_DM_CLONE=m +CONFIG_DM_MIRROR=m +CONFIG_DM_LOG_USERSPACE=m +CONFIG_DM_RAID=m +CONFIG_DM_ZERO=m +CONFIG_DM_MULTIPATH=m +CONFIG_DM_MULTIPATH_QL=m +CONFIG_DM_MULTIPATH_ST=m +CONFIG_DM_MULTIPATH_HST=m +CONFIG_DM_MULTIPATH_IOA=m +CONFIG_DM_DELAY=m +CONFIG_DM_DUST=m +# CONFIG_DM_INIT is not set +CONFIG_DM_UEVENT=y +CONFIG_DM_FLAKEY=m +CONFIG_DM_VERITY=m +CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG=y +# CONFIG_DM_VERITY_FEC is not set +CONFIG_DM_SWITCH=m +CONFIG_DM_LOG_WRITES=m +CONFIG_DM_INTEGRITY=m +CONFIG_DM_ZONED=m +CONFIG_DM_AUDIT=y +CONFIG_TARGET_CORE=m +CONFIG_TCM_IBLOCK=m +CONFIG_TCM_FILEIO=m +CONFIG_TCM_PSCSI=m +CONFIG_TCM_USER2=m +CONFIG_LOOPBACK_TARGET=m +CONFIG_TCM_FC=m +CONFIG_ISCSI_TARGET=m +CONFIG_ISCSI_TARGET_CXGB4=m +CONFIG_SBP_TARGET=m +CONFIG_FUSION=y +CONFIG_FUSION_SPI=m +CONFIG_FUSION_FC=m +CONFIG_FUSION_SAS=m +CONFIG_FUSION_MAX_SGE=128 +CONFIG_FUSION_CTL=m +CONFIG_FUSION_LAN=m +CONFIG_FUSION_LOGGING=y + +# +# IEEE 1394 (FireWire) support +# +CONFIG_FIREWIRE=m +CONFIG_FIREWIRE_OHCI=m +CONFIG_FIREWIRE_SBP2=m +CONFIG_FIREWIRE_NET=m +CONFIG_FIREWIRE_NOSY=m +# end of IEEE 1394 (FireWire) support + +CONFIG_MACINTOSH_DRIVERS=y +CONFIG_MAC_EMUMOUSEBTN=m +CONFIG_NETDEVICES=y +CONFIG_MII=m +CONFIG_NET_CORE=y +CONFIG_BONDING=m +CONFIG_DUMMY=m +CONFIG_WIREGUARD=m +# CONFIG_WIREGUARD_DEBUG is not set +CONFIG_EQUALIZER=m +CONFIG_NET_FC=y +CONFIG_IFB=m +CONFIG_NET_TEAM=m +CONFIG_NET_TEAM_MODE_BROADCAST=m +CONFIG_NET_TEAM_MODE_ROUNDROBIN=m +CONFIG_NET_TEAM_MODE_RANDOM=m +CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m +CONFIG_NET_TEAM_MODE_LOADBALANCE=m +CONFIG_MACVLAN=m +CONFIG_MACVTAP=m +CONFIG_IPVLAN_L3S=y +CONFIG_IPVLAN=m +CONFIG_IPVTAP=m +CONFIG_VXLAN=m +CONFIG_GENEVE=m +CONFIG_BAREUDP=m +CONFIG_GTP=m +CONFIG_AMT=m +CONFIG_MACSEC=m +CONFIG_NETCONSOLE=m +CONFIG_NETCONSOLE_DYNAMIC=y +CONFIG_NETPOLL=y +CONFIG_NET_POLL_CONTROLLER=y +CONFIG_NTB_NETDEV=m +CONFIG_RIONET=m +CONFIG_RIONET_TX_SIZE=128 +CONFIG_RIONET_RX_SIZE=128 +CONFIG_TUN=y +CONFIG_TAP=m +# CONFIG_TUN_VNET_CROSS_LE is not set +CONFIG_VETH=m +CONFIG_VIRTIO_NET=y +CONFIG_NLMON=m +CONFIG_NET_VRF=m +CONFIG_VSOCKMON=m +CONFIG_MHI_NET=m +CONFIG_SUNGEM_PHY=m +CONFIG_ARCNET=m +CONFIG_ARCNET_1201=m +CONFIG_ARCNET_1051=m +CONFIG_ARCNET_RAW=m +CONFIG_ARCNET_CAP=m +CONFIG_ARCNET_COM90xx=m +CONFIG_ARCNET_COM90xxIO=m +CONFIG_ARCNET_RIM_I=m +CONFIG_ARCNET_COM20020=m +CONFIG_ARCNET_COM20020_ISA=m +CONFIG_ARCNET_COM20020_PCI=m +CONFIG_ARCNET_COM20020_CS=m +CONFIG_ATM_DRIVERS=y +CONFIG_ATM_DUMMY=m +CONFIG_ATM_TCP=m +CONFIG_ATM_LANAI=m +CONFIG_ATM_ENI=m +# CONFIG_ATM_ENI_DEBUG is not set +# CONFIG_ATM_ENI_TUNE_BURST is not set +CONFIG_ATM_FIRESTREAM=m +CONFIG_ATM_ZATM=m +# CONFIG_ATM_ZATM_DEBUG is not set +CONFIG_ATM_NICSTAR=m +# CONFIG_ATM_NICSTAR_USE_SUNI is not set +# CONFIG_ATM_NICSTAR_USE_IDT77105 is not set +CONFIG_ATM_IDT77252=m +# CONFIG_ATM_IDT77252_DEBUG is not set +# CONFIG_ATM_IDT77252_RCV_ALL is not set +CONFIG_ATM_IDT77252_USE_SUNI=y +CONFIG_ATM_AMBASSADOR=m +# CONFIG_ATM_AMBASSADOR_DEBUG is not set +CONFIG_ATM_HORIZON=m +# CONFIG_ATM_HORIZON_DEBUG is not set +CONFIG_ATM_IA=m +# CONFIG_ATM_IA_DEBUG is not set +CONFIG_ATM_FORE200E=m +# CONFIG_ATM_FORE200E_USE_TASKLET is not set +CONFIG_ATM_FORE200E_TX_RETRY=16 +CONFIG_ATM_FORE200E_DEBUG=0 +CONFIG_ATM_HE=m +CONFIG_ATM_HE_USE_SUNI=y +CONFIG_ATM_SOLOS=m +CONFIG_CAIF_DRIVERS=y +CONFIG_CAIF_TTY=m +CONFIG_CAIF_VIRTIO=m + +# +# Distributed Switch Architecture drivers +# +CONFIG_B53=m +CONFIG_B53_SPI_DRIVER=m +CONFIG_B53_MDIO_DRIVER=m +CONFIG_B53_MMAP_DRIVER=m +CONFIG_B53_SRAB_DRIVER=m +CONFIG_B53_SERDES=m +CONFIG_NET_DSA_BCM_SF2=m +# CONFIG_NET_DSA_LOOP is not set +CONFIG_NET_DSA_HIRSCHMANN_HELLCREEK=m +CONFIG_NET_DSA_LANTIQ_GSWIP=m +CONFIG_NET_DSA_MT7530=m +CONFIG_NET_DSA_MV88E6060=m +CONFIG_NET_DSA_MICROCHIP_KSZ_COMMON=m +CONFIG_NET_DSA_MICROCHIP_KSZ9477=m +CONFIG_NET_DSA_MICROCHIP_KSZ9477_I2C=m +CONFIG_NET_DSA_MICROCHIP_KSZ9477_SPI=m +CONFIG_NET_DSA_MICROCHIP_KSZ8795=m +CONFIG_NET_DSA_MICROCHIP_KSZ8795_SPI=m +CONFIG_NET_DSA_MICROCHIP_KSZ8863_SMI=m +CONFIG_NET_DSA_MV88E6XXX=m +# CONFIG_NET_DSA_MV88E6XXX_PTP is not set +CONFIG_NET_DSA_MSCC_SEVILLE=m +CONFIG_NET_DSA_AR9331=m +CONFIG_NET_DSA_SJA1105=m +CONFIG_NET_DSA_SJA1105_PTP=y +# CONFIG_NET_DSA_SJA1105_TAS is not set +CONFIG_NET_DSA_XRS700X=m +CONFIG_NET_DSA_XRS700X_I2C=m +CONFIG_NET_DSA_XRS700X_MDIO=m +CONFIG_NET_DSA_QCA8K=m +CONFIG_NET_DSA_REALTEK_SMI=m +CONFIG_NET_DSA_SMSC_LAN9303=m +CONFIG_NET_DSA_SMSC_LAN9303_I2C=m +CONFIG_NET_DSA_SMSC_LAN9303_MDIO=m +CONFIG_NET_DSA_VITESSE_VSC73XX=m +CONFIG_NET_DSA_VITESSE_VSC73XX_SPI=m +CONFIG_NET_DSA_VITESSE_VSC73XX_PLATFORM=m +# end of Distributed Switch Architecture drivers + +CONFIG_ETHERNET=y +CONFIG_MDIO=m +CONFIG_NET_VENDOR_3COM=y +CONFIG_EL3=m +CONFIG_3C515=m +CONFIG_PCMCIA_3C574=m +CONFIG_PCMCIA_3C589=m +CONFIG_VORTEX=m +CONFIG_TYPHOON=m +CONFIG_NET_VENDOR_ADAPTEC=y +CONFIG_ADAPTEC_STARFIRE=m +CONFIG_NET_VENDOR_AGERE=y +CONFIG_ET131X=m +CONFIG_NET_VENDOR_ALACRITECH=y +CONFIG_SLICOSS=m +CONFIG_NET_VENDOR_ALTEON=y +CONFIG_ACENIC=m +# CONFIG_ACENIC_OMIT_TIGON_I is not set +CONFIG_ALTERA_TSE=m +CONFIG_NET_VENDOR_AMAZON=y +CONFIG_ENA_ETHERNET=m +CONFIG_NET_VENDOR_AMD=y +CONFIG_AMD8111_ETH=m +CONFIG_LANCE=m +CONFIG_PCNET32=m +CONFIG_PCMCIA_NMCLAN=m +CONFIG_NI65=m +CONFIG_AMD_XGBE=m +# CONFIG_AMD_XGBE_DCB is not set +CONFIG_AMD_XGBE_HAVE_ECC=y +CONFIG_NET_VENDOR_AQUANTIA=y +CONFIG_AQTION=m +CONFIG_NET_VENDOR_ARC=y +CONFIG_NET_VENDOR_ASIX=y +CONFIG_SPI_AX88796C=m +CONFIG_SPI_AX88796C_COMPRESSION=y +CONFIG_NET_VENDOR_ATHEROS=y +CONFIG_ATL2=m +CONFIG_ATL1=m +CONFIG_ATL1E=m +CONFIG_ATL1C=m +CONFIG_ALX=m +CONFIG_NET_VENDOR_BROADCOM=y +CONFIG_B44=m +CONFIG_B44_PCI_AUTOSELECT=y +CONFIG_B44_PCICORE_AUTOSELECT=y +CONFIG_B44_PCI=y +CONFIG_BCMGENET=m +CONFIG_BNX2=m +CONFIG_CNIC=m +CONFIG_TIGON3=m +CONFIG_TIGON3_HWMON=y +CONFIG_BNX2X=m +CONFIG_BNX2X_SRIOV=y +# CONFIG_SYSTEMPORT is not set +CONFIG_BNXT=m +CONFIG_BNXT_SRIOV=y +CONFIG_BNXT_FLOWER_OFFLOAD=y +# CONFIG_BNXT_DCB is not set +CONFIG_BNXT_HWMON=y +CONFIG_NET_VENDOR_BROCADE=y +CONFIG_BNA=m +CONFIG_NET_VENDOR_CADENCE=y +CONFIG_MACB=m +CONFIG_MACB_USE_HWSTAMP=y +CONFIG_MACB_PCI=m +CONFIG_NET_VENDOR_CAVIUM=y +CONFIG_NET_VENDOR_CHELSIO=y +CONFIG_CHELSIO_T1=m +CONFIG_CHELSIO_T1_1G=y +CONFIG_CHELSIO_T3=m +CONFIG_CHELSIO_T4=m +CONFIG_CHELSIO_T4_DCB=y +CONFIG_CHELSIO_T4_FCOE=y +CONFIG_CHELSIO_T4VF=m +CONFIG_CHELSIO_LIB=m +CONFIG_CHELSIO_INLINE_CRYPTO=y +# CONFIG_CHELSIO_IPSEC_INLINE is not set +CONFIG_NET_VENDOR_CIRRUS=y +CONFIG_CS89x0=m +CONFIG_CS89x0_ISA=m +CONFIG_NET_VENDOR_CISCO=y +CONFIG_ENIC=m +# CONFIG_NET_VENDOR_CORTINA is not set +CONFIG_CX_ECAT=m +CONFIG_DNET=m +CONFIG_NET_VENDOR_DEC=y +CONFIG_NET_TULIP=y +CONFIG_DE2104X=m +CONFIG_DE2104X_DSL=0 +CONFIG_TULIP=m +# CONFIG_TULIP_MWI is not set +# CONFIG_TULIP_MMIO is not set +# CONFIG_TULIP_NAPI is not set +CONFIG_DE4X5=m +CONFIG_WINBOND_840=m +CONFIG_DM9102=m +CONFIG_ULI526X=m +CONFIG_PCMCIA_XIRCOM=m +CONFIG_NET_VENDOR_DLINK=y +CONFIG_DL2K=m +CONFIG_SUNDANCE=m +# CONFIG_SUNDANCE_MMIO is not set +CONFIG_NET_VENDOR_EMULEX=y +CONFIG_BE2NET=m +CONFIG_BE2NET_HWMON=y +CONFIG_BE2NET_BE2=y +CONFIG_BE2NET_BE3=y +CONFIG_BE2NET_LANCER=y +CONFIG_BE2NET_SKYHAWK=y +CONFIG_NET_VENDOR_EZCHIP=y +CONFIG_NET_VENDOR_FUJITSU=y +CONFIG_PCMCIA_FMVJ18X=m +CONFIG_NET_VENDOR_GOOGLE=y +CONFIG_GVE=m +CONFIG_NET_VENDOR_HUAWEI=y +CONFIG_HINIC=m +CONFIG_NET_VENDOR_I825XX=y +CONFIG_NET_VENDOR_INTEL=y +CONFIG_E100=m +CONFIG_E1000=m +CONFIG_E1000E=m +CONFIG_E1000E_HWTS=y +CONFIG_IGB=m +CONFIG_IGB_HWMON=y +CONFIG_IGBVF=m +CONFIG_IXGB=m +CONFIG_IXGBE=m +CONFIG_IXGBE_HWMON=y +CONFIG_IXGBE_DCB=y +CONFIG_IXGBE_IPSEC=y +CONFIG_IXGBEVF=m +CONFIG_IXGBEVF_IPSEC=y +CONFIG_I40E=m +CONFIG_I40E_DCB=y +CONFIG_IAVF=m +CONFIG_I40EVF=m +CONFIG_ICE=m +CONFIG_ICE_SWITCHDEV=y +CONFIG_FM10K=m +CONFIG_IGC=m +CONFIG_NET_VENDOR_MICROSOFT=y +CONFIG_JME=m +CONFIG_NET_VENDOR_LITEX=y +CONFIG_NET_VENDOR_MARVELL=y +CONFIG_MVMDIO=m +CONFIG_SKGE=m +# CONFIG_SKGE_DEBUG is not set +CONFIG_SKGE_GENESIS=y +CONFIG_SKY2=m +# CONFIG_SKY2_DEBUG is not set +CONFIG_PRESTERA=m +CONFIG_PRESTERA_PCI=m +CONFIG_NET_VENDOR_MELLANOX=y +CONFIG_MLX4_EN=m +CONFIG_MLX4_EN_DCB=y +CONFIG_MLX4_CORE=m +CONFIG_MLX4_DEBUG=y +CONFIG_MLX4_CORE_GEN2=y +CONFIG_MLX5_CORE=m +CONFIG_MLX5_ACCEL=y +# CONFIG_MLX5_FPGA is not set +CONFIG_MLX5_CORE_EN=y +CONFIG_MLX5_EN_ARFS=y +CONFIG_MLX5_EN_RXNFC=y +CONFIG_MLX5_MPFS=y +CONFIG_MLX5_ESWITCH=y +CONFIG_MLX5_BRIDGE=y +CONFIG_MLX5_CLS_ACT=y +CONFIG_MLX5_TC_SAMPLE=y +CONFIG_MLX5_CORE_EN_DCB=y +# CONFIG_MLX5_CORE_IPOIB is not set +CONFIG_MLX5_IPSEC=y +CONFIG_MLX5_EN_IPSEC=y +CONFIG_MLX5_SW_STEERING=y +CONFIG_MLX5_SF=y +CONFIG_MLX5_SF_MANAGER=y +CONFIG_MLXSW_CORE=m +CONFIG_MLXSW_CORE_HWMON=y +CONFIG_MLXSW_CORE_THERMAL=y +CONFIG_MLXSW_PCI=m +CONFIG_MLXSW_I2C=m +CONFIG_MLXSW_SPECTRUM=m +CONFIG_MLXSW_SPECTRUM_DCB=y +CONFIG_MLXSW_MINIMAL=m +CONFIG_MLXFW=m +CONFIG_NET_VENDOR_MICREL=y +CONFIG_KS8842=m +CONFIG_KS8851=m +CONFIG_KS8851_MLL=m +CONFIG_KSZ884X_PCI=m +CONFIG_NET_VENDOR_MICROCHIP=y +CONFIG_ENC28J60=m +# CONFIG_ENC28J60_WRITEVERIFY is not set +CONFIG_ENCX24J600=m +CONFIG_LAN743X=m +CONFIG_NET_VENDOR_MICROSEMI=y +CONFIG_MSCC_OCELOT_SWITCH_LIB=m +CONFIG_NET_VENDOR_MYRI=y +CONFIG_MYRI10GE=m +CONFIG_FEALNX=m +CONFIG_NET_VENDOR_NATSEMI=y +CONFIG_NATSEMI=m +CONFIG_NS83820=m +CONFIG_NET_VENDOR_NETERION=y +CONFIG_S2IO=m +CONFIG_VXGE=m +# CONFIG_VXGE_DEBUG_TRACE_ALL is not set +CONFIG_NET_VENDOR_NETRONOME=y +CONFIG_NFP=m +# CONFIG_NFP_APP_FLOWER is not set +CONFIG_NFP_APP_ABM_NIC=y +# CONFIG_NFP_DEBUG is not set +CONFIG_NET_VENDOR_NI=y +CONFIG_NI_XGE_MANAGEMENT_ENET=m +CONFIG_NET_VENDOR_8390=y +CONFIG_PCMCIA_AXNET=m +CONFIG_NE2000=m +CONFIG_NE2K_PCI=m +CONFIG_PCMCIA_PCNET=m +CONFIG_ULTRA=m +CONFIG_WD80x3=m +CONFIG_NET_VENDOR_NVIDIA=y +CONFIG_FORCEDETH=m +CONFIG_NET_VENDOR_OKI=y +CONFIG_PCH_GBE=m +CONFIG_ETHOC=m +CONFIG_NET_VENDOR_PACKET_ENGINES=y +CONFIG_HAMACHI=m +CONFIG_YELLOWFIN=m +CONFIG_NET_VENDOR_PENSANDO=y +CONFIG_NET_VENDOR_QLOGIC=y +CONFIG_QLA3XXX=m +CONFIG_QLCNIC=m +CONFIG_QLCNIC_SRIOV=y +CONFIG_QLCNIC_DCB=y +CONFIG_QLCNIC_HWMON=y +CONFIG_NETXEN_NIC=m +CONFIG_QED=m +CONFIG_QED_LL2=y +CONFIG_QED_SRIOV=y +CONFIG_QEDE=m +CONFIG_QED_ISCSI=y +CONFIG_QED_FCOE=y +CONFIG_QED_OOO=y +CONFIG_NET_VENDOR_QUALCOMM=y +CONFIG_QCOM_EMAC=m +CONFIG_RMNET=m +CONFIG_NET_VENDOR_RDC=y +CONFIG_R6040=m +CONFIG_NET_VENDOR_REALTEK=y +CONFIG_ATP=m +CONFIG_8139CP=m +CONFIG_8139TOO=m +CONFIG_8139TOO_PIO=y +# CONFIG_8139TOO_TUNE_TWISTER is not set +CONFIG_8139TOO_8129=y +# CONFIG_8139_OLD_RX_RESET is not set +CONFIG_R8169=m +CONFIG_NET_VENDOR_RENESAS=y +CONFIG_NET_VENDOR_ROCKER=y +CONFIG_ROCKER=m +CONFIG_NET_VENDOR_SAMSUNG=y +CONFIG_SXGBE_ETH=m +CONFIG_NET_VENDOR_SEEQ=y +CONFIG_NET_VENDOR_SOLARFLARE=y +CONFIG_SFC=m +CONFIG_SFC_MTD=y +CONFIG_SFC_MCDI_MON=y +CONFIG_SFC_SRIOV=y +CONFIG_SFC_MCDI_LOGGING=y +CONFIG_SFC_FALCON=m +CONFIG_SFC_FALCON_MTD=y +CONFIG_NET_VENDOR_SILAN=y +CONFIG_SC92031=m +CONFIG_NET_VENDOR_SIS=y +CONFIG_SIS900=m +CONFIG_SIS190=m +CONFIG_NET_VENDOR_SMSC=y +CONFIG_SMC9194=m +CONFIG_PCMCIA_SMC91C92=m +CONFIG_EPIC100=m +CONFIG_SMSC911X=m +CONFIG_SMSC9420=m +# CONFIG_NET_VENDOR_SOCIONEXT is not set +CONFIG_NET_VENDOR_STMICRO=y +CONFIG_STMMAC_ETH=m +# CONFIG_STMMAC_SELFTESTS is not set +CONFIG_STMMAC_PLATFORM=m +CONFIG_DWMAC_GENERIC=m +CONFIG_DWMAC_INTEL=m +CONFIG_DWMAC_LOONGSON=m +# CONFIG_STMMAC_PCI is not set +CONFIG_NET_VENDOR_SUN=y +CONFIG_HAPPYMEAL=m +CONFIG_SUNGEM=m +CONFIG_CASSINI=m +CONFIG_NIU=m +CONFIG_NET_VENDOR_SYNOPSYS=y +CONFIG_DWC_XLGMAC=m +CONFIG_DWC_XLGMAC_PCI=m +CONFIG_NET_VENDOR_TEHUTI=y +CONFIG_TEHUTI=m +CONFIG_NET_VENDOR_TI=y +# CONFIG_TI_CPSW_PHY_SEL is not set +CONFIG_TLAN=m +CONFIG_NET_VENDOR_VIA=y +CONFIG_VIA_RHINE=m +CONFIG_VIA_RHINE_MMIO=y +CONFIG_VIA_VELOCITY=m +CONFIG_NET_VENDOR_WIZNET=y +CONFIG_WIZNET_W5100=m +CONFIG_WIZNET_W5300=m +# CONFIG_WIZNET_BUS_DIRECT is not set +# CONFIG_WIZNET_BUS_INDIRECT is not set +CONFIG_WIZNET_BUS_ANY=y +# CONFIG_WIZNET_W5100_SPI is not set +CONFIG_NET_VENDOR_XILINX=y +CONFIG_XILINX_EMACLITE=m +CONFIG_XILINX_AXI_EMAC=m +CONFIG_XILINX_LL_TEMAC=m +CONFIG_NET_VENDOR_XIRCOM=y +CONFIG_PCMCIA_XIRC2PS=m +CONFIG_FDDI=y +CONFIG_DEFXX=m +CONFIG_SKFP=m +# CONFIG_HIPPI is not set +CONFIG_NET_SB1000=m +CONFIG_PHYLINK=m +CONFIG_PHYLIB=y +CONFIG_SWPHY=y +# CONFIG_LED_TRIGGER_PHY is not set +CONFIG_FIXED_PHY=y +CONFIG_SFP=m + +# +# MII PHY device drivers +# +CONFIG_AMD_PHY=m +CONFIG_ADIN_PHY=m +CONFIG_AQUANTIA_PHY=m +CONFIG_AX88796B_PHY=m +CONFIG_BROADCOM_PHY=m +CONFIG_BCM54140_PHY=m +CONFIG_BCM7XXX_PHY=m +CONFIG_BCM84881_PHY=m +CONFIG_BCM87XX_PHY=m +CONFIG_BCM_NET_PHYLIB=m +CONFIG_CICADA_PHY=m +CONFIG_CORTINA_PHY=m +CONFIG_DAVICOM_PHY=m +CONFIG_ICPLUS_PHY=m +CONFIG_LXT_PHY=m +CONFIG_INTEL_XWAY_PHY=m +CONFIG_LSI_ET1011C_PHY=m +CONFIG_MARVELL_PHY=m +CONFIG_MARVELL_10G_PHY=m +CONFIG_MARVELL_88X2222_PHY=m +CONFIG_MAXLINEAR_GPHY=m +CONFIG_MEDIATEK_GE_PHY=m +CONFIG_MICREL_PHY=m +CONFIG_MICROCHIP_PHY=m +CONFIG_MICROCHIP_T1_PHY=m +CONFIG_MICROSEMI_PHY=m +CONFIG_MOTORCOMM_PHY=m +CONFIG_NATIONAL_PHY=m +CONFIG_NXP_C45_TJA11XX_PHY=m +CONFIG_NXP_TJA11XX_PHY=m +CONFIG_AT803X_PHY=m +CONFIG_QSEMI_PHY=m +CONFIG_REALTEK_PHY=m +CONFIG_RENESAS_PHY=m +CONFIG_ROCKCHIP_PHY=m +CONFIG_SMSC_PHY=m +CONFIG_STE10XP=m +CONFIG_TERANETICS_PHY=m +CONFIG_DP83822_PHY=m +CONFIG_DP83TC811_PHY=m +CONFIG_DP83848_PHY=m +CONFIG_DP83867_PHY=m +CONFIG_DP83869_PHY=m +CONFIG_VITESSE_PHY=m +CONFIG_XILINX_GMII2RGMII=m +CONFIG_MICREL_KS8995MA=m + +# +# MCTP Device Drivers +# +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +CONFIG_FWNODE_MDIO=y +CONFIG_ACPI_MDIO=y +CONFIG_MDIO_DEVRES=y +CONFIG_MDIO_BITBANG=m +CONFIG_MDIO_BCM_UNIMAC=m +CONFIG_MDIO_GPIO=m +CONFIG_MDIO_I2C=m +CONFIG_MDIO_MVUSB=m +CONFIG_MDIO_MSCC_MIIM=m + +# +# MDIO Multiplexers +# + +# +# PCS device drivers +# +CONFIG_PCS_XPCS=m +CONFIG_PCS_LYNX=m +# end of PCS device drivers + +CONFIG_PLIP=m +CONFIG_PPP=y +CONFIG_PPP_BSDCOMP=m +CONFIG_PPP_DEFLATE=m +CONFIG_PPP_FILTER=y +CONFIG_PPP_MPPE=m +CONFIG_PPP_MULTILINK=y +CONFIG_PPPOATM=m +CONFIG_PPPOE=m +CONFIG_PPTP=m +CONFIG_PPPOL2TP=m +CONFIG_PPP_ASYNC=m +CONFIG_PPP_SYNC_TTY=m +CONFIG_SLIP=m +CONFIG_SLHC=y +CONFIG_SLIP_COMPRESSED=y +CONFIG_SLIP_SMART=y +CONFIG_SLIP_MODE_SLIP6=y +CONFIG_USB_NET_DRIVERS=m +CONFIG_USB_CATC=m +CONFIG_USB_KAWETH=m +CONFIG_USB_PEGASUS=m +CONFIG_USB_RTL8150=m +CONFIG_USB_RTL8152=m +CONFIG_USB_LAN78XX=m +CONFIG_USB_USBNET=m +CONFIG_USB_NET_AX8817X=m +CONFIG_USB_NET_AX88179_178A=m +CONFIG_USB_NET_CDCETHER=m +CONFIG_USB_NET_CDC_EEM=m +CONFIG_USB_NET_CDC_NCM=m +CONFIG_USB_NET_HUAWEI_CDC_NCM=m +CONFIG_USB_NET_CDC_MBIM=m +CONFIG_USB_NET_DM9601=m +CONFIG_USB_NET_SR9700=m +CONFIG_USB_NET_SR9800=m +CONFIG_USB_NET_SMSC75XX=m +CONFIG_USB_NET_SMSC95XX=m +CONFIG_USB_NET_GL620A=m +CONFIG_USB_NET_NET1080=m +CONFIG_USB_NET_PLUSB=m +CONFIG_USB_NET_MCS7830=m +CONFIG_USB_NET_RNDIS_HOST=m +CONFIG_USB_NET_CDC_SUBSET_ENABLE=m +CONFIG_USB_NET_CDC_SUBSET=m +CONFIG_USB_ALI_M5632=y +CONFIG_USB_AN2720=y +CONFIG_USB_BELKIN=y +CONFIG_USB_ARMLINUX=y +CONFIG_USB_EPSON2888=y +CONFIG_USB_KC2190=y +CONFIG_USB_NET_ZAURUS=m +CONFIG_USB_NET_CX82310_ETH=m +CONFIG_USB_NET_KALMIA=m +CONFIG_USB_NET_QMI_WWAN=m +CONFIG_USB_HSO=m +CONFIG_USB_NET_INT51X1=m +CONFIG_USB_CDC_PHONET=m +CONFIG_USB_IPHETH=m +CONFIG_USB_SIERRA_NET=m +CONFIG_USB_VL600=m +CONFIG_USB_NET_CH9200=m +CONFIG_USB_NET_AQC111=m +CONFIG_USB_RTL8153_ECM=m +CONFIG_WLAN=y +CONFIG_WLAN_VENDOR_ADMTEK=y +CONFIG_ADM8211=m +CONFIG_ATH_COMMON=m +CONFIG_WLAN_VENDOR_ATH=y +# CONFIG_ATH_DEBUG is not set +CONFIG_ATH5K=m +# CONFIG_ATH5K_DEBUG is not set +# CONFIG_ATH5K_TRACER is not set +CONFIG_ATH5K_PCI=y +CONFIG_ATH9K_HW=m +CONFIG_ATH9K_COMMON=m +CONFIG_ATH9K_COMMON_DEBUG=y +CONFIG_ATH9K_BTCOEX_SUPPORT=y +CONFIG_ATH9K=m +CONFIG_ATH9K_PCI=y +CONFIG_ATH9K_AHB=y +CONFIG_ATH9K_DEBUGFS=y +CONFIG_ATH9K_STATION_STATISTICS=y +# CONFIG_ATH9K_DYNACK is not set +CONFIG_ATH9K_WOW=y +CONFIG_ATH9K_RFKILL=y +CONFIG_ATH9K_CHANNEL_CONTEXT=y +CONFIG_ATH9K_PCOEM=y +CONFIG_ATH9K_PCI_NO_EEPROM=m +CONFIG_ATH9K_HTC=m +CONFIG_ATH9K_HTC_DEBUGFS=y +CONFIG_ATH9K_HWRNG=y +# CONFIG_ATH9K_COMMON_SPECTRAL is not set +CONFIG_CARL9170=m +CONFIG_CARL9170_LEDS=y +# CONFIG_CARL9170_DEBUGFS is not set +CONFIG_CARL9170_WPC=y +CONFIG_CARL9170_HWRNG=y +CONFIG_ATH6KL=m +CONFIG_ATH6KL_SDIO=m +CONFIG_ATH6KL_USB=m +# CONFIG_ATH6KL_DEBUG is not set +# CONFIG_ATH6KL_TRACING is not set +CONFIG_AR5523=m +CONFIG_WIL6210=m +CONFIG_WIL6210_ISR_COR=y +CONFIG_WIL6210_TRACING=y +CONFIG_WIL6210_DEBUGFS=y +CONFIG_ATH10K=m +CONFIG_ATH10K_CE=y +CONFIG_ATH10K_PCI=m +CONFIG_ATH10K_SDIO=m +CONFIG_ATH10K_USB=m +# CONFIG_ATH10K_DEBUG is not set +CONFIG_ATH10K_DEBUGFS=y +# CONFIG_ATH10K_SPECTRAL is not set +CONFIG_ATH10K_TRACING=y +CONFIG_WCN36XX=m +# CONFIG_WCN36XX_DEBUGFS is not set +CONFIG_ATH11K=m +CONFIG_ATH11K_PCI=m +# CONFIG_ATH11K_DEBUG is not set +# CONFIG_ATH11K_DEBUGFS is not set +# CONFIG_ATH11K_TRACING is not set +CONFIG_WLAN_VENDOR_ATMEL=y +CONFIG_ATMEL=m +CONFIG_PCI_ATMEL=m +CONFIG_PCMCIA_ATMEL=m +CONFIG_AT76C50X_USB=m +CONFIG_WLAN_VENDOR_BROADCOM=y +CONFIG_B43=m +CONFIG_B43_BCMA=y +CONFIG_B43_SSB=y +CONFIG_B43_BUSES_BCMA_AND_SSB=y +# CONFIG_B43_BUSES_BCMA is not set +# CONFIG_B43_BUSES_SSB is not set +CONFIG_B43_PCI_AUTOSELECT=y +CONFIG_B43_PCICORE_AUTOSELECT=y +# CONFIG_B43_SDIO is not set +CONFIG_B43_BCMA_PIO=y +CONFIG_B43_PIO=y +CONFIG_B43_PHY_G=y +CONFIG_B43_PHY_N=y +CONFIG_B43_PHY_LP=y +CONFIG_B43_PHY_HT=y +CONFIG_B43_LEDS=y +CONFIG_B43_HWRNG=y +# CONFIG_B43_DEBUG is not set +CONFIG_B43LEGACY=m +CONFIG_B43LEGACY_PCI_AUTOSELECT=y +CONFIG_B43LEGACY_PCICORE_AUTOSELECT=y +CONFIG_B43LEGACY_LEDS=y +CONFIG_B43LEGACY_HWRNG=y +# CONFIG_B43LEGACY_DEBUG is not set +CONFIG_B43LEGACY_DMA=y +CONFIG_B43LEGACY_PIO=y +CONFIG_B43LEGACY_DMA_AND_PIO_MODE=y +# CONFIG_B43LEGACY_DMA_MODE is not set +# CONFIG_B43LEGACY_PIO_MODE is not set +CONFIG_BRCMUTIL=m +CONFIG_BRCMSMAC=m +CONFIG_BRCMSMAC_LEDS=y +CONFIG_BRCMFMAC=m +CONFIG_BRCMFMAC_PROTO_BCDC=y +CONFIG_BRCMFMAC_PROTO_MSGBUF=y +CONFIG_BRCMFMAC_SDIO=y +CONFIG_BRCMFMAC_USB=y +CONFIG_BRCMFMAC_PCIE=y +CONFIG_BRCM_TRACING=y +# CONFIG_BRCMDBG is not set +CONFIG_WLAN_VENDOR_CISCO=y +CONFIG_AIRO=m +CONFIG_AIRO_CS=m +CONFIG_WLAN_VENDOR_INTEL=y +CONFIG_IPW2100=m +CONFIG_IPW2100_MONITOR=y +# CONFIG_IPW2100_DEBUG is not set +CONFIG_IPW2200=m +CONFIG_IPW2200_MONITOR=y +CONFIG_IPW2200_RADIOTAP=y +CONFIG_IPW2200_PROMISCUOUS=y +CONFIG_IPW2200_QOS=y +# CONFIG_IPW2200_DEBUG is not set +CONFIG_LIBIPW=m +# CONFIG_LIBIPW_DEBUG is not set +CONFIG_IWLEGACY=m +CONFIG_IWL4965=m +CONFIG_IWL3945=m + +# +# iwl3945 / iwl4965 Debugging Options +# +# CONFIG_IWLEGACY_DEBUG is not set +CONFIG_IWLEGACY_DEBUGFS=y +# end of iwl3945 / iwl4965 Debugging Options + +CONFIG_IWLWIFI=m +CONFIG_IWLWIFI_LEDS=y +CONFIG_IWLDVM=m +CONFIG_IWLMVM=m +CONFIG_IWLWIFI_OPMODE_MODULAR=y +# CONFIG_IWLWIFI_BCAST_FILTERING is not set + +# +# Debugging Options +# +# CONFIG_IWLWIFI_DEBUG is not set +CONFIG_IWLWIFI_DEBUGFS=y +CONFIG_IWLWIFI_DEVICE_TRACING=y +# end of Debugging Options + +CONFIG_WLAN_VENDOR_INTERSIL=y +CONFIG_HOSTAP=m +CONFIG_HOSTAP_FIRMWARE=y +CONFIG_HOSTAP_FIRMWARE_NVRAM=y +CONFIG_HOSTAP_PLX=m +CONFIG_HOSTAP_PCI=m +CONFIG_HOSTAP_CS=m +CONFIG_HERMES=m +# CONFIG_HERMES_PRISM is not set +CONFIG_HERMES_CACHE_FW_ON_INIT=y +CONFIG_PLX_HERMES=m +CONFIG_TMD_HERMES=m +CONFIG_NORTEL_HERMES=m +CONFIG_PCMCIA_HERMES=m +CONFIG_PCMCIA_SPECTRUM=m +CONFIG_ORINOCO_USB=m +CONFIG_P54_COMMON=m +CONFIG_P54_USB=m +CONFIG_P54_PCI=m +CONFIG_P54_SPI=m +# CONFIG_P54_SPI_DEFAULT_EEPROM is not set +CONFIG_P54_LEDS=y +CONFIG_WLAN_VENDOR_MARVELL=y +CONFIG_LIBERTAS=m +CONFIG_LIBERTAS_USB=m +CONFIG_LIBERTAS_CS=m +CONFIG_LIBERTAS_SDIO=m +CONFIG_LIBERTAS_SPI=m +# CONFIG_LIBERTAS_DEBUG is not set +CONFIG_LIBERTAS_MESH=y +CONFIG_LIBERTAS_THINFIRM=m +# CONFIG_LIBERTAS_THINFIRM_DEBUG is not set +CONFIG_LIBERTAS_THINFIRM_USB=m +CONFIG_MWIFIEX=m +CONFIG_MWIFIEX_SDIO=m +CONFIG_MWIFIEX_PCIE=m +CONFIG_MWIFIEX_USB=m +CONFIG_MWL8K=m +CONFIG_WLAN_VENDOR_MEDIATEK=y +CONFIG_MT7601U=m +# CONFIG_MT76x0U is not set +# CONFIG_MT76x0E is not set +# CONFIG_MT76x2E is not set +# CONFIG_MT76x2U is not set +# CONFIG_MT7603E is not set +# CONFIG_MT7615E is not set +# CONFIG_MT7663U is not set +# CONFIG_MT7663S is not set +# CONFIG_MT7915E is not set +# CONFIG_MT7921E is not set +# CONFIG_MT7921S is not set +CONFIG_WLAN_VENDOR_MICROCHIP=y +CONFIG_WILC1000=m +CONFIG_WILC1000_SDIO=m +CONFIG_WILC1000_SPI=m +# CONFIG_WILC1000_HW_OOB_INTR is not set +CONFIG_WLAN_VENDOR_RALINK=y +CONFIG_RT2X00=m +CONFIG_RT2400PCI=m +CONFIG_RT2500PCI=m +CONFIG_RT61PCI=m +CONFIG_RT2800PCI=m +CONFIG_RT2800PCI_RT33XX=y +CONFIG_RT2800PCI_RT35XX=y +CONFIG_RT2800PCI_RT53XX=y +CONFIG_RT2800PCI_RT3290=y +CONFIG_RT2500USB=m +CONFIG_RT73USB=m +CONFIG_RT2800USB=m +CONFIG_RT2800USB_RT33XX=y +CONFIG_RT2800USB_RT35XX=y +CONFIG_RT2800USB_RT3573=y +CONFIG_RT2800USB_RT53XX=y +CONFIG_RT2800USB_RT55XX=y +CONFIG_RT2800USB_UNKNOWN=y +CONFIG_RT2800_LIB=m +CONFIG_RT2800_LIB_MMIO=m +CONFIG_RT2X00_LIB_MMIO=m +CONFIG_RT2X00_LIB_PCI=m +CONFIG_RT2X00_LIB_USB=m +CONFIG_RT2X00_LIB=m +CONFIG_RT2X00_LIB_FIRMWARE=y +CONFIG_RT2X00_LIB_CRYPTO=y +CONFIG_RT2X00_LIB_LEDS=y +# CONFIG_RT2X00_LIB_DEBUGFS is not set +# CONFIG_RT2X00_DEBUG is not set +CONFIG_WLAN_VENDOR_REALTEK=y +CONFIG_RTL8180=m +CONFIG_RTL8187=m +CONFIG_RTL8187_LEDS=y +CONFIG_RTL_CARDS=m +CONFIG_RTL8192CE=m +CONFIG_RTL8192SE=m +CONFIG_RTL8192DE=m +CONFIG_RTL8723AE=m +CONFIG_RTL8723BE=m +CONFIG_RTL8188EE=m +CONFIG_RTL8192EE=m +CONFIG_RTL8821AE=m +CONFIG_RTL8192CU=m +CONFIG_RTLWIFI=m +CONFIG_RTLWIFI_PCI=m +CONFIG_RTLWIFI_USB=m +# CONFIG_RTLWIFI_DEBUG is not set +CONFIG_RTL8192C_COMMON=m +CONFIG_RTL8723_COMMON=m +CONFIG_RTLBTCOEXIST=m +CONFIG_RTL8XXXU=m +CONFIG_RTL8XXXU_UNTESTED=y +# CONFIG_RTW88 is not set +CONFIG_RTW89=m +CONFIG_RTW89_CORE=m +CONFIG_RTW89_PCI=m +CONFIG_RTW89_8852AE=m +# CONFIG_RTW89_DEBUGMSG is not set +# CONFIG_RTW89_DEBUGFS is not set +CONFIG_WLAN_VENDOR_RSI=y +CONFIG_RSI_91X=m +# CONFIG_RSI_DEBUGFS is not set +CONFIG_RSI_SDIO=m +CONFIG_RSI_USB=m +CONFIG_RSI_COEX=y +CONFIG_WLAN_VENDOR_ST=y +CONFIG_CW1200=m +CONFIG_CW1200_WLAN_SDIO=m +CONFIG_CW1200_WLAN_SPI=m +CONFIG_WLAN_VENDOR_TI=y +CONFIG_WL1251=m +CONFIG_WL1251_SPI=m +CONFIG_WL1251_SDIO=m +CONFIG_WL12XX=m +CONFIG_WL18XX=m +CONFIG_WLCORE=m +CONFIG_WLCORE_SDIO=m +CONFIG_WILINK_PLATFORM_DATA=y +CONFIG_WLAN_VENDOR_ZYDAS=y +CONFIG_USB_ZD1201=m +CONFIG_ZD1211RW=m +# CONFIG_ZD1211RW_DEBUG is not set +CONFIG_WLAN_VENDOR_QUANTENNA=y +CONFIG_QTNFMAC=m +CONFIG_QTNFMAC_PCIE=m +CONFIG_PCMCIA_RAYCS=m +CONFIG_PCMCIA_WL3501=m +CONFIG_MAC80211_HWSIM=m +CONFIG_USB_NET_RNDIS_WLAN=m +CONFIG_VIRT_WIFI=m +CONFIG_WAN=y +CONFIG_HOSTESS_SV11=m +CONFIG_COSA=m +CONFIG_LANMEDIA=m +CONFIG_SEALEVEL_4021=m +CONFIG_HDLC=m +CONFIG_HDLC_RAW=m +CONFIG_HDLC_RAW_ETH=m +CONFIG_HDLC_CISCO=m +CONFIG_HDLC_FR=m +CONFIG_HDLC_PPP=m +CONFIG_HDLC_X25=m +CONFIG_PCI200SYN=m +CONFIG_WANXL=m +CONFIG_PC300TOO=m +CONFIG_N2=m +CONFIG_C101=m +CONFIG_FARSYNC=m +CONFIG_LAPBETHER=m +CONFIG_IEEE802154_DRIVERS=m +CONFIG_IEEE802154_FAKELB=m +CONFIG_IEEE802154_AT86RF230=m +CONFIG_IEEE802154_AT86RF230_DEBUGFS=y +CONFIG_IEEE802154_MRF24J40=m +CONFIG_IEEE802154_CC2520=m +CONFIG_IEEE802154_ATUSB=m +CONFIG_IEEE802154_ADF7242=m +CONFIG_IEEE802154_CA8210=m +# CONFIG_IEEE802154_CA8210_DEBUGFS is not set +CONFIG_IEEE802154_MCR20A=m +# CONFIG_IEEE802154_HWSIM is not set + +# +# Wireless WAN +# +CONFIG_WWAN=y +# CONFIG_WWAN_HWSIM is not set +CONFIG_MHI_WWAN_CTRL=m +CONFIG_MHI_WWAN_MBIM=m +CONFIG_RPMSG_WWAN_CTRL=m +CONFIG_IOSM=m +# end of Wireless WAN + +CONFIG_XEN_NETDEV_FRONTEND=y +CONFIG_XEN_NETDEV_BACKEND=m +CONFIG_VMXNET3=m +CONFIG_FUJITSU_ES=m +CONFIG_USB4_NET=m +CONFIG_HYPERV_NET=m +CONFIG_NETDEVSIM=m +CONFIG_NET_FAILOVER=y +CONFIG_NETDEV_LEGACY_INIT=y +CONFIG_ISDN=y +CONFIG_ISDN_CAPI=y +CONFIG_CAPI_TRACE=y +CONFIG_ISDN_CAPI_MIDDLEWARE=y +CONFIG_MISDN=m +CONFIG_MISDN_DSP=m +CONFIG_MISDN_L1OIP=m + +# +# mISDN hardware drivers +# +CONFIG_MISDN_HFCPCI=m +CONFIG_MISDN_HFCMULTI=m +CONFIG_MISDN_HFCUSB=m +CONFIG_MISDN_AVMFRITZ=m +CONFIG_MISDN_SPEEDFAX=m +CONFIG_MISDN_INFINEON=m +CONFIG_MISDN_W6692=m +CONFIG_MISDN_NETJET=m +CONFIG_MISDN_HDLC=m +CONFIG_MISDN_IPAC=m +CONFIG_MISDN_ISAR=m + +# +# Input device support +# +CONFIG_INPUT=y +CONFIG_INPUT_LEDS=m +CONFIG_INPUT_FF_MEMLESS=m +CONFIG_INPUT_SPARSEKMAP=m +CONFIG_INPUT_MATRIXKMAP=m + +# +# Userland interfaces +# +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_MOUSEDEV_PSAUX=y +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 +CONFIG_INPUT_JOYDEV=m +CONFIG_INPUT_EVDEV=y +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +CONFIG_KEYBOARD_ADC=m +CONFIG_KEYBOARD_ADP5520=m +CONFIG_KEYBOARD_ADP5588=m +CONFIG_KEYBOARD_ADP5589=m +CONFIG_KEYBOARD_APPLESPI=m +CONFIG_KEYBOARD_ATKBD=y +CONFIG_KEYBOARD_QT1050=m +CONFIG_KEYBOARD_QT1070=m +CONFIG_KEYBOARD_QT2160=m +CONFIG_KEYBOARD_DLINK_DIR685=m +CONFIG_KEYBOARD_LKKBD=m +CONFIG_KEYBOARD_GPIO=m +CONFIG_KEYBOARD_GPIO_POLLED=m +CONFIG_KEYBOARD_TCA6416=m +CONFIG_KEYBOARD_TCA8418=m +CONFIG_KEYBOARD_MATRIX=m +CONFIG_KEYBOARD_LM8323=m +CONFIG_KEYBOARD_LM8333=m +CONFIG_KEYBOARD_MAX7359=m +CONFIG_KEYBOARD_MCS=m +CONFIG_KEYBOARD_MPR121=m +CONFIG_KEYBOARD_NEWTON=m +CONFIG_KEYBOARD_OPENCORES=m +CONFIG_KEYBOARD_SAMSUNG=m +CONFIG_KEYBOARD_STOWAWAY=m +CONFIG_KEYBOARD_SUNKBD=m +CONFIG_KEYBOARD_IQS62X=m +CONFIG_KEYBOARD_TM2_TOUCHKEY=m +CONFIG_KEYBOARD_TWL4030=m +CONFIG_KEYBOARD_XTKBD=m +CONFIG_KEYBOARD_CROS_EC=m +CONFIG_KEYBOARD_MTK_PMIC=m +CONFIG_KEYBOARD_CYPRESS_SF=m +CONFIG_INPUT_MOUSE=y +CONFIG_MOUSE_PS2=m +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_BYD=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y +CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_LIFEBOOK=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +CONFIG_MOUSE_PS2_ELANTECH=y +CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y +CONFIG_MOUSE_PS2_SENTELIC=y +CONFIG_MOUSE_PS2_TOUCHKIT=y +CONFIG_MOUSE_PS2_FOCALTECH=y +CONFIG_MOUSE_PS2_VMMOUSE=y +CONFIG_MOUSE_PS2_SMBUS=y +CONFIG_MOUSE_SERIAL=m +CONFIG_MOUSE_APPLETOUCH=m +CONFIG_MOUSE_BCM5974=m +CONFIG_MOUSE_CYAPA=m +CONFIG_MOUSE_ELAN_I2C=m +CONFIG_MOUSE_ELAN_I2C_I2C=y +CONFIG_MOUSE_ELAN_I2C_SMBUS=y +# CONFIG_MOUSE_INPORT is not set +CONFIG_MOUSE_LOGIBM=m +CONFIG_MOUSE_PC110PAD=m +CONFIG_MOUSE_VSXXXAA=m +CONFIG_MOUSE_GPIO=m +CONFIG_MOUSE_SYNAPTICS_I2C=m +CONFIG_MOUSE_SYNAPTICS_USB=m +CONFIG_INPUT_JOYSTICK=y +CONFIG_JOYSTICK_ANALOG=m +CONFIG_JOYSTICK_A3D=m +CONFIG_JOYSTICK_ADC=m +CONFIG_JOYSTICK_ADI=m +CONFIG_JOYSTICK_COBRA=m +CONFIG_JOYSTICK_GF2K=m +CONFIG_JOYSTICK_GRIP=m +CONFIG_JOYSTICK_GRIP_MP=m +CONFIG_JOYSTICK_GUILLEMOT=m +CONFIG_JOYSTICK_INTERACT=m +CONFIG_JOYSTICK_SIDEWINDER=m +CONFIG_JOYSTICK_TMDC=m +CONFIG_JOYSTICK_IFORCE=m +CONFIG_JOYSTICK_IFORCE_USB=m +CONFIG_JOYSTICK_IFORCE_232=m +CONFIG_JOYSTICK_WARRIOR=m +CONFIG_JOYSTICK_MAGELLAN=m +CONFIG_JOYSTICK_SPACEORB=m +CONFIG_JOYSTICK_SPACEBALL=m +CONFIG_JOYSTICK_STINGER=m +CONFIG_JOYSTICK_TWIDJOY=m +CONFIG_JOYSTICK_ZHENHUA=m +CONFIG_JOYSTICK_DB9=m +CONFIG_JOYSTICK_GAMECON=m +CONFIG_JOYSTICK_TURBOGRAFX=m +CONFIG_JOYSTICK_AS5011=m +CONFIG_JOYSTICK_JOYDUMP=m +CONFIG_JOYSTICK_XPAD=m +CONFIG_JOYSTICK_XPAD_FF=y +CONFIG_JOYSTICK_XPAD_LEDS=y +CONFIG_JOYSTICK_WALKERA0701=m +CONFIG_JOYSTICK_PSXPAD_SPI=m +# CONFIG_JOYSTICK_PSXPAD_SPI_FF is not set +CONFIG_JOYSTICK_PXRC=m +CONFIG_JOYSTICK_QWIIC=m +CONFIG_JOYSTICK_FSIA6B=m +CONFIG_INPUT_TABLET=y +CONFIG_TABLET_USB_ACECAD=m +CONFIG_TABLET_USB_AIPTEK=m +CONFIG_TABLET_USB_HANWANG=m +CONFIG_TABLET_USB_KBTAB=m +CONFIG_TABLET_USB_PEGASUS=m +CONFIG_TABLET_SERIAL_WACOM4=m +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_TOUCHSCREEN_88PM860X=m +CONFIG_TOUCHSCREEN_ADS7846=m +CONFIG_TOUCHSCREEN_AD7877=m +CONFIG_TOUCHSCREEN_AD7879=m +CONFIG_TOUCHSCREEN_AD7879_I2C=m +CONFIG_TOUCHSCREEN_AD7879_SPI=m +CONFIG_TOUCHSCREEN_ADC=m +CONFIG_TOUCHSCREEN_ATMEL_MXT=m +# CONFIG_TOUCHSCREEN_ATMEL_MXT_T37 is not set +CONFIG_TOUCHSCREEN_AUO_PIXCIR=m +CONFIG_TOUCHSCREEN_BU21013=m +CONFIG_TOUCHSCREEN_BU21029=m +CONFIG_TOUCHSCREEN_CHIPONE_ICN8505=m +CONFIG_TOUCHSCREEN_CY8CTMA140=m +CONFIG_TOUCHSCREEN_CY8CTMG110=m +CONFIG_TOUCHSCREEN_CYTTSP_CORE=m +CONFIG_TOUCHSCREEN_CYTTSP_I2C=m +CONFIG_TOUCHSCREEN_CYTTSP_SPI=m +CONFIG_TOUCHSCREEN_CYTTSP4_CORE=m +CONFIG_TOUCHSCREEN_CYTTSP4_I2C=m +CONFIG_TOUCHSCREEN_CYTTSP4_SPI=m +CONFIG_TOUCHSCREEN_DA9034=m +CONFIG_TOUCHSCREEN_DA9052=m +CONFIG_TOUCHSCREEN_DYNAPRO=m +CONFIG_TOUCHSCREEN_HAMPSHIRE=m +CONFIG_TOUCHSCREEN_EETI=m +CONFIG_TOUCHSCREEN_EGALAX_SERIAL=m +CONFIG_TOUCHSCREEN_EXC3000=m +CONFIG_TOUCHSCREEN_FUJITSU=m +CONFIG_TOUCHSCREEN_GOODIX=m +CONFIG_TOUCHSCREEN_HIDEEP=m +CONFIG_TOUCHSCREEN_HYCON_HY46XX=m +CONFIG_TOUCHSCREEN_ILI210X=m +CONFIG_TOUCHSCREEN_ILITEK=m +CONFIG_TOUCHSCREEN_S6SY761=m +CONFIG_TOUCHSCREEN_GUNZE=m +CONFIG_TOUCHSCREEN_EKTF2127=m +CONFIG_TOUCHSCREEN_ELAN=m +CONFIG_TOUCHSCREEN_ELO=m +CONFIG_TOUCHSCREEN_WACOM_W8001=m +CONFIG_TOUCHSCREEN_WACOM_I2C=m +CONFIG_TOUCHSCREEN_MAX11801=m +CONFIG_TOUCHSCREEN_MCS5000=m +CONFIG_TOUCHSCREEN_MMS114=m +CONFIG_TOUCHSCREEN_MELFAS_MIP4=m +CONFIG_TOUCHSCREEN_MSG2638=m +CONFIG_TOUCHSCREEN_MTOUCH=m +CONFIG_TOUCHSCREEN_INEXIO=m +CONFIG_TOUCHSCREEN_MK712=m +CONFIG_TOUCHSCREEN_HTCPEN=m +CONFIG_TOUCHSCREEN_PENMOUNT=m +CONFIG_TOUCHSCREEN_EDT_FT5X06=m +CONFIG_TOUCHSCREEN_TOUCHRIGHT=m +CONFIG_TOUCHSCREEN_TOUCHWIN=m +CONFIG_TOUCHSCREEN_TI_AM335X_TSC=m +CONFIG_TOUCHSCREEN_UCB1400=m +CONFIG_TOUCHSCREEN_PIXCIR=m +CONFIG_TOUCHSCREEN_WDT87XX_I2C=m +CONFIG_TOUCHSCREEN_WM831X=m +CONFIG_TOUCHSCREEN_WM97XX=m +CONFIG_TOUCHSCREEN_WM9705=y +CONFIG_TOUCHSCREEN_WM9712=y +CONFIG_TOUCHSCREEN_WM9713=y +CONFIG_TOUCHSCREEN_USB_COMPOSITE=m +CONFIG_TOUCHSCREEN_MC13783=m +CONFIG_TOUCHSCREEN_USB_EGALAX=y +CONFIG_TOUCHSCREEN_USB_PANJIT=y +CONFIG_TOUCHSCREEN_USB_3M=y +CONFIG_TOUCHSCREEN_USB_ITM=y +CONFIG_TOUCHSCREEN_USB_ETURBO=y +CONFIG_TOUCHSCREEN_USB_GUNZE=y +CONFIG_TOUCHSCREEN_USB_DMC_TSC10=y +CONFIG_TOUCHSCREEN_USB_IRTOUCH=y +CONFIG_TOUCHSCREEN_USB_IDEALTEK=y +CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH=y +CONFIG_TOUCHSCREEN_USB_GOTOP=y +CONFIG_TOUCHSCREEN_USB_JASTEC=y +CONFIG_TOUCHSCREEN_USB_ELO=y +CONFIG_TOUCHSCREEN_USB_E2I=y +CONFIG_TOUCHSCREEN_USB_ZYTRONIC=y +CONFIG_TOUCHSCREEN_USB_ETT_TC45USB=y +CONFIG_TOUCHSCREEN_USB_NEXIO=y +CONFIG_TOUCHSCREEN_USB_EASYTOUCH=y +CONFIG_TOUCHSCREEN_TOUCHIT213=m +CONFIG_TOUCHSCREEN_TSC_SERIO=m +CONFIG_TOUCHSCREEN_TSC200X_CORE=m +CONFIG_TOUCHSCREEN_TSC2004=m +CONFIG_TOUCHSCREEN_TSC2005=m +CONFIG_TOUCHSCREEN_TSC2007=m +# CONFIG_TOUCHSCREEN_TSC2007_IIO is not set +CONFIG_TOUCHSCREEN_PCAP=m +CONFIG_TOUCHSCREEN_RM_TS=m +CONFIG_TOUCHSCREEN_SILEAD=m +CONFIG_TOUCHSCREEN_SIS_I2C=m +CONFIG_TOUCHSCREEN_ST1232=m +CONFIG_TOUCHSCREEN_STMFTS=m +CONFIG_TOUCHSCREEN_SUR40=m +CONFIG_TOUCHSCREEN_SURFACE3_SPI=m +CONFIG_TOUCHSCREEN_SX8654=m +CONFIG_TOUCHSCREEN_TPS6507X=m +CONFIG_TOUCHSCREEN_ZET6223=m +CONFIG_TOUCHSCREEN_ZFORCE=m +CONFIG_TOUCHSCREEN_ROHM_BU21023=m +CONFIG_TOUCHSCREEN_IQS5XX=m +CONFIG_TOUCHSCREEN_ZINITIX=m +CONFIG_INPUT_MISC=y +CONFIG_INPUT_88PM860X_ONKEY=m +CONFIG_INPUT_88PM80X_ONKEY=m +CONFIG_INPUT_AD714X=m +CONFIG_INPUT_AD714X_I2C=m +CONFIG_INPUT_AD714X_SPI=m +CONFIG_INPUT_ARIZONA_HAPTICS=m +CONFIG_INPUT_ATC260X_ONKEY=m +CONFIG_INPUT_BMA150=m +CONFIG_INPUT_E3X0_BUTTON=m +CONFIG_INPUT_PCSPKR=m +CONFIG_INPUT_MAX77693_HAPTIC=m +CONFIG_INPUT_MAX8925_ONKEY=m +CONFIG_INPUT_MAX8997_HAPTIC=m +CONFIG_INPUT_MC13783_PWRBUTTON=m +CONFIG_INPUT_MMA8450=m +CONFIG_INPUT_APANEL=m +CONFIG_INPUT_GPIO_BEEPER=m +CONFIG_INPUT_GPIO_DECODER=m +CONFIG_INPUT_GPIO_VIBRA=m +CONFIG_INPUT_WISTRON_BTNS=m +CONFIG_INPUT_ATLAS_BTNS=m +CONFIG_INPUT_ATI_REMOTE2=m +CONFIG_INPUT_KEYSPAN_REMOTE=m +CONFIG_INPUT_KXTJ9=m +CONFIG_INPUT_POWERMATE=m +CONFIG_INPUT_YEALINK=m +CONFIG_INPUT_CM109=m +CONFIG_INPUT_REGULATOR_HAPTIC=m +CONFIG_INPUT_RETU_PWRBUTTON=m +CONFIG_INPUT_AXP20X_PEK=m +CONFIG_INPUT_TWL4030_PWRBUTTON=m +CONFIG_INPUT_TWL4030_VIBRA=m +CONFIG_INPUT_TWL6040_VIBRA=m +CONFIG_INPUT_UINPUT=y +CONFIG_INPUT_PALMAS_PWRBUTTON=m +CONFIG_INPUT_PCF50633_PMU=m +CONFIG_INPUT_PCF8574=m +CONFIG_INPUT_PWM_BEEPER=m +CONFIG_INPUT_PWM_VIBRA=m +CONFIG_INPUT_GPIO_ROTARY_ENCODER=m +CONFIG_INPUT_DA7280_HAPTICS=m +CONFIG_INPUT_DA9052_ONKEY=m +CONFIG_INPUT_DA9055_ONKEY=m +CONFIG_INPUT_DA9063_ONKEY=m +CONFIG_INPUT_WM831X_ON=m +CONFIG_INPUT_PCAP=m +CONFIG_INPUT_ADXL34X=m +CONFIG_INPUT_ADXL34X_I2C=m +CONFIG_INPUT_ADXL34X_SPI=m +CONFIG_INPUT_IMS_PCU=m +CONFIG_INPUT_IQS269A=m +CONFIG_INPUT_IQS626A=m +CONFIG_INPUT_CMA3000=m +CONFIG_INPUT_CMA3000_I2C=m +CONFIG_INPUT_XEN_KBDDEV_FRONTEND=m +CONFIG_INPUT_IDEAPAD_SLIDEBAR=m +CONFIG_INPUT_SOC_BUTTON_ARRAY=m +CONFIG_INPUT_DRV260X_HAPTICS=m +CONFIG_INPUT_DRV2665_HAPTICS=m +CONFIG_INPUT_DRV2667_HAPTICS=m +CONFIG_INPUT_RAVE_SP_PWRBUTTON=m +CONFIG_RMI4_CORE=m +CONFIG_RMI4_I2C=m +CONFIG_RMI4_SPI=m +CONFIG_RMI4_SMB=m +CONFIG_RMI4_F03=y +CONFIG_RMI4_F03_SERIO=m +CONFIG_RMI4_2D_SENSOR=y +CONFIG_RMI4_F11=y +CONFIG_RMI4_F12=y +CONFIG_RMI4_F30=y +# CONFIG_RMI4_F34 is not set +CONFIG_RMI4_F3A=y +# CONFIG_RMI4_F54 is not set +CONFIG_RMI4_F55=y + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=m +CONFIG_SERIO_CT82C710=m +CONFIG_SERIO_PARKBD=m +CONFIG_SERIO_PCIPS2=m +CONFIG_SERIO_LIBPS2=y +CONFIG_SERIO_RAW=m +CONFIG_SERIO_ALTERA_PS2=m +CONFIG_SERIO_PS2MULT=m +CONFIG_SERIO_ARC_PS2=m +CONFIG_HYPERV_KEYBOARD=m +CONFIG_SERIO_GPIO_PS2=m +CONFIG_USERIO=m +CONFIG_GAMEPORT=m +CONFIG_GAMEPORT_NS558=m +CONFIG_GAMEPORT_L4=m +CONFIG_GAMEPORT_EMU10K1=m +CONFIG_GAMEPORT_FM801=m +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +CONFIG_VT_HW_CONSOLE_BINDING=y +CONFIG_UNIX98_PTYS=y +CONFIG_LEGACY_PTYS=y +CONFIG_LEGACY_PTY_COUNT=0 +CONFIG_LDISC_AUTOLOAD=y + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +CONFIG_SERIAL_8250_PNP=y +# CONFIG_SERIAL_8250_16550A_VARIANTS is not set +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_DMA=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_EXAR=m +CONFIG_SERIAL_8250_CS=m +CONFIG_SERIAL_8250_MEN_MCB=m +CONFIG_SERIAL_8250_NR_UARTS=48 +CONFIG_SERIAL_8250_RUNTIME_UARTS=32 +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_FOURPORT=m +CONFIG_SERIAL_8250_ACCENT=m +CONFIG_SERIAL_8250_BOCA=m +CONFIG_SERIAL_8250_EXAR_ST16C554=m +CONFIG_SERIAL_8250_HUB6=m +CONFIG_SERIAL_8250_SHARE_IRQ=y +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +CONFIG_SERIAL_8250_RSA=y +CONFIG_SERIAL_8250_DWLIB=y +CONFIG_SERIAL_8250_DW=m +CONFIG_SERIAL_8250_RT288X=y +CONFIG_SERIAL_8250_LPSS=m +CONFIG_SERIAL_8250_MID=m + +# +# Non-8250 serial port support +# +CONFIG_SERIAL_KGDB_NMI=y +CONFIG_SERIAL_MAX3100=m +CONFIG_SERIAL_MAX310X=y +CONFIG_SERIAL_UARTLITE=m +CONFIG_SERIAL_UARTLITE_NR_UARTS=1 +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +CONFIG_CONSOLE_POLL=y +CONFIG_SERIAL_JSM=m +CONFIG_SERIAL_LANTIQ=m +CONFIG_SERIAL_SCCNXP=y +CONFIG_SERIAL_SCCNXP_CONSOLE=y +CONFIG_SERIAL_SC16IS7XX_CORE=m +CONFIG_SERIAL_SC16IS7XX=m +CONFIG_SERIAL_SC16IS7XX_I2C=y +CONFIG_SERIAL_SC16IS7XX_SPI=y +CONFIG_SERIAL_TIMBERDALE=m +# CONFIG_SERIAL_BCM63XX is not set +CONFIG_SERIAL_ALTERA_JTAGUART=m +CONFIG_SERIAL_ALTERA_UART=m +CONFIG_SERIAL_ALTERA_UART_MAXPORTS=4 +CONFIG_SERIAL_ALTERA_UART_BAUDRATE=115200 +CONFIG_SERIAL_PCH_UART=m +CONFIG_SERIAL_ARC=m +CONFIG_SERIAL_ARC_NR_PORTS=1 +CONFIG_SERIAL_RP2=m +CONFIG_SERIAL_RP2_NR_UARTS=32 +CONFIG_SERIAL_FSL_LPUART=m +CONFIG_SERIAL_FSL_LINFLEXUART=m +CONFIG_SERIAL_MEN_Z135=m +# CONFIG_SERIAL_SPRD is not set +# end of Serial drivers + +CONFIG_SERIAL_MCTRL_GPIO=y +CONFIG_SERIAL_NONSTANDARD=y +CONFIG_MOXA_INTELLIO=m +CONFIG_MOXA_SMARTIO=m +CONFIG_SYNCLINK_GT=m +CONFIG_N_HDLC=m +CONFIG_N_GSM=m +CONFIG_NOZOMI=m +CONFIG_NULL_TTY=m +CONFIG_HVC_DRIVER=y +CONFIG_HVC_IRQ=y +CONFIG_HVC_XEN=y +CONFIG_HVC_XEN_FRONTEND=y +CONFIG_RPMSG_TTY=m +CONFIG_SERIAL_DEV_BUS=y +CONFIG_SERIAL_DEV_CTRL_TTYPORT=y +CONFIG_TTY_PRINTK=y +CONFIG_TTY_PRINTK_LEVEL=6 +CONFIG_PRINTER=m +# CONFIG_LP_CONSOLE is not set +CONFIG_PPDEV=m +CONFIG_VIRTIO_CONSOLE=m +CONFIG_IPMI_HANDLER=m +CONFIG_IPMI_DMI_DECODE=y +CONFIG_IPMI_PLAT_DATA=y +# CONFIG_IPMI_PANIC_EVENT is not set +CONFIG_IPMI_DEVICE_INTERFACE=m +CONFIG_IPMI_SI=m +CONFIG_IPMI_SSIF=m +CONFIG_IPMI_IPMB=m +CONFIG_IPMI_WATCHDOG=m +CONFIG_IPMI_POWEROFF=m +CONFIG_IPMB_DEVICE_INTERFACE=m +CONFIG_HW_RANDOM=y +CONFIG_HW_RANDOM_TIMERIOMEM=m +CONFIG_HW_RANDOM_INTEL=m +CONFIG_HW_RANDOM_AMD=m +CONFIG_HW_RANDOM_BA431=m +CONFIG_HW_RANDOM_GEODE=m +CONFIG_HW_RANDOM_VIA=m +CONFIG_HW_RANDOM_VIRTIO=m +CONFIG_HW_RANDOM_XIPHERA=m +CONFIG_DTLK=m +CONFIG_APPLICOM=m +CONFIG_SONYPI=m + +# +# PCMCIA character devices +# +CONFIG_SYNCLINK_CS=m +CONFIG_CARDMAN_4000=m +CONFIG_CARDMAN_4040=m +CONFIG_SCR24X=m +CONFIG_IPWIRELESS=m +# end of PCMCIA character devices + +CONFIG_MWAVE=m +CONFIG_SCx200_GPIO=m +CONFIG_PC8736x_GPIO=m +CONFIG_NSC_GPIO=m +CONFIG_DEVMEM=y +CONFIG_NVRAM=m +CONFIG_DEVPORT=y +CONFIG_HPET=y +CONFIG_HPET_MMAP=y +CONFIG_HPET_MMAP_DEFAULT=y +CONFIG_HANGCHECK_TIMER=m +CONFIG_TCG_TPM=y +CONFIG_HW_RANDOM_TPM=y +CONFIG_TCG_TIS_CORE=y +CONFIG_TCG_TIS=y +CONFIG_TCG_TIS_SPI=m +# CONFIG_TCG_TIS_SPI_CR50 is not set +# CONFIG_TCG_TIS_I2C_CR50 is not set +CONFIG_TCG_TIS_I2C_ATMEL=m +CONFIG_TCG_TIS_I2C_INFINEON=m +CONFIG_TCG_TIS_I2C_NUVOTON=m +CONFIG_TCG_NSC=m +CONFIG_TCG_ATMEL=m +CONFIG_TCG_INFINEON=m +CONFIG_TCG_XEN=m +CONFIG_TCG_CRB=y +CONFIG_TCG_VTPM_PROXY=m +CONFIG_TCG_TIS_ST33ZP24=m +CONFIG_TCG_TIS_ST33ZP24_I2C=m +CONFIG_TCG_TIS_ST33ZP24_SPI=m +CONFIG_TELCLOCK=m +CONFIG_XILLYBUS_CLASS=m +CONFIG_XILLYBUS=m +CONFIG_XILLYBUS_PCIE=m +CONFIG_XILLYUSB=m +# CONFIG_RANDOM_TRUST_CPU is not set +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set +# end of Character devices + +# +# I2C support +# +CONFIG_I2C=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_COMPAT=y +CONFIG_I2C_CHARDEV=y +CONFIG_I2C_MUX=m + +# +# Multiplexer I2C Chip support +# +CONFIG_I2C_MUX_GPIO=m +CONFIG_I2C_MUX_LTC4306=m +CONFIG_I2C_MUX_PCA9541=m +CONFIG_I2C_MUX_PCA954x=m +CONFIG_I2C_MUX_REG=m +CONFIG_I2C_MUX_MLXCPLD=m +# end of Multiplexer I2C Chip support + +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_SMBUS=m +CONFIG_I2C_ALGOBIT=m +CONFIG_I2C_ALGOPCA=m + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +CONFIG_I2C_ALI1535=m +CONFIG_I2C_ALI1563=m +CONFIG_I2C_ALI15X3=m +CONFIG_I2C_AMD756=m +CONFIG_I2C_AMD756_S4882=m +CONFIG_I2C_AMD8111=m +CONFIG_I2C_AMD_MP2=m +CONFIG_I2C_I801=m +CONFIG_I2C_ISCH=m +CONFIG_I2C_ISMT=m +CONFIG_I2C_PIIX4=m +CONFIG_I2C_CHT_WC=m +CONFIG_I2C_NFORCE2=m +CONFIG_I2C_NFORCE2_S4985=m +CONFIG_I2C_NVIDIA_GPU=m +CONFIG_I2C_SIS5595=m +CONFIG_I2C_SIS630=m +CONFIG_I2C_SIS96X=m +CONFIG_I2C_VIA=m +CONFIG_I2C_VIAPRO=m + +# +# ACPI drivers +# +CONFIG_I2C_SCMI=m + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +CONFIG_I2C_CBUS_GPIO=m +CONFIG_I2C_DESIGNWARE_CORE=y +# CONFIG_I2C_DESIGNWARE_SLAVE is not set +CONFIG_I2C_DESIGNWARE_PLATFORM=y +CONFIG_I2C_DESIGNWARE_BAYTRAIL=y +CONFIG_I2C_DESIGNWARE_PCI=m +CONFIG_I2C_EG20T=m +CONFIG_I2C_EMEV2=m +CONFIG_I2C_GPIO=m +# CONFIG_I2C_GPIO_FAULT_INJECTOR is not set +CONFIG_I2C_KEMPLD=m +CONFIG_I2C_OCORES=m +CONFIG_I2C_PCA_PLATFORM=m +CONFIG_I2C_SIMTEC=m +CONFIG_I2C_XILINX=m + +# +# External I2C/SMBus adapter drivers +# +CONFIG_I2C_DIOLAN_U2C=m +CONFIG_I2C_DLN2=m +CONFIG_I2C_CP2615=m +CONFIG_I2C_PARPORT=m +CONFIG_I2C_ROBOTFUZZ_OSIF=m +CONFIG_I2C_TAOS_EVM=m +CONFIG_I2C_TINY_USB=m +CONFIG_I2C_VIPERBOARD=m + +# +# Other I2C/SMBus bus drivers +# +CONFIG_I2C_PCA_ISA=m +CONFIG_I2C_CROS_EC_TUNNEL=m +CONFIG_SCx200_ACB=m +CONFIG_I2C_VIRTIO=m +# end of I2C Hardware Bus support + +CONFIG_I2C_STUB=m +CONFIG_I2C_SLAVE=y +CONFIG_I2C_SLAVE_EEPROM=m +# CONFIG_I2C_SLAVE_TESTUNIT is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# end of I2C support + +CONFIG_I3C=m +CONFIG_CDNS_I3C_MASTER=m +CONFIG_DW_I3C_MASTER=m +CONFIG_SVC_I3C_MASTER=m +# CONFIG_MIPI_I3C_HCI is not set +CONFIG_SPI=y +# CONFIG_SPI_DEBUG is not set +CONFIG_SPI_MASTER=y +CONFIG_SPI_MEM=y + +# +# SPI Master Controller Drivers +# +CONFIG_SPI_ALTERA=m +CONFIG_SPI_ALTERA_CORE=m +CONFIG_SPI_ALTERA_DFL=m +CONFIG_SPI_AXI_SPI_ENGINE=m +CONFIG_SPI_BITBANG=m +CONFIG_SPI_BUTTERFLY=m +CONFIG_SPI_CADENCE=m +CONFIG_SPI_DESIGNWARE=m +# CONFIG_SPI_DW_DMA is not set +CONFIG_SPI_DW_PCI=m +CONFIG_SPI_DW_MMIO=m +CONFIG_SPI_DLN2=m +CONFIG_SPI_NXP_FLEXSPI=m +CONFIG_SPI_GPIO=m +CONFIG_SPI_LM70_LLP=m +CONFIG_SPI_LANTIQ_SSC=m +CONFIG_SPI_OC_TINY=m +CONFIG_SPI_PXA2XX=m +CONFIG_SPI_PXA2XX_PCI=m +CONFIG_SPI_ROCKCHIP=m +CONFIG_SPI_SC18IS602=m +CONFIG_SPI_SIFIVE=m +CONFIG_SPI_MXIC=m +CONFIG_SPI_TOPCLIFF_PCH=m +CONFIG_SPI_XCOMM=m +# CONFIG_SPI_XILINX is not set +CONFIG_SPI_ZYNQMP_GQSPI=m +CONFIG_SPI_AMD=m + +# +# SPI Multiplexer support +# +CONFIG_SPI_MUX=m + +# +# SPI Protocol Masters +# +CONFIG_SPI_SPIDEV=m +# CONFIG_SPI_LOOPBACK_TEST is not set +CONFIG_SPI_TLE62X0=m +# CONFIG_SPI_SLAVE is not set +CONFIG_SPI_DYNAMIC=y +CONFIG_SPMI=m +# CONFIG_SPMI_HISI3670 is not set +CONFIG_HSI=m +CONFIG_HSI_BOARDINFO=y + +# +# HSI controllers +# + +# +# HSI clients +# +CONFIG_HSI_CHAR=m +CONFIG_PPS=m +# CONFIG_PPS_DEBUG is not set + +# +# PPS clients support +# +# CONFIG_PPS_CLIENT_KTIMER is not set +CONFIG_PPS_CLIENT_LDISC=m +CONFIG_PPS_CLIENT_PARPORT=m +CONFIG_PPS_CLIENT_GPIO=m + +# +# PPS generators support +# + +# +# PTP clock support +# +CONFIG_PTP_1588_CLOCK=m +CONFIG_PTP_1588_CLOCK_OPTIONAL=m + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +CONFIG_PTP_1588_CLOCK_PCH=m +CONFIG_PTP_1588_CLOCK_KVM=m +CONFIG_PTP_1588_CLOCK_IDT82P33=m +CONFIG_PTP_1588_CLOCK_IDTCM=m +# CONFIG_PTP_1588_CLOCK_VMW is not set +CONFIG_PTP_1588_CLOCK_OCP=m +# end of PTP clock support + +CONFIG_PINCTRL=y +CONFIG_PINMUX=y +CONFIG_PINCONF=y +CONFIG_GENERIC_PINCONF=y +# CONFIG_DEBUG_PINCTRL is not set +CONFIG_PINCTRL_AMD=y +# CONFIG_PINCTRL_DA9062 is not set +CONFIG_PINCTRL_MCP23S08_I2C=m +CONFIG_PINCTRL_MCP23S08_SPI=m +CONFIG_PINCTRL_MCP23S08=m +CONFIG_PINCTRL_SX150X=y + +# +# Intel pinctrl drivers +# +CONFIG_PINCTRL_BAYTRAIL=y +CONFIG_PINCTRL_CHERRYVIEW=y +CONFIG_PINCTRL_LYNXPOINT=m +CONFIG_PINCTRL_INTEL=y +CONFIG_PINCTRL_ALDERLAKE=m +CONFIG_PINCTRL_BROXTON=m +CONFIG_PINCTRL_CANNONLAKE=m +CONFIG_PINCTRL_CEDARFORK=m +CONFIG_PINCTRL_DENVERTON=m +CONFIG_PINCTRL_ELKHARTLAKE=m +CONFIG_PINCTRL_EMMITSBURG=m +CONFIG_PINCTRL_GEMINILAKE=m +CONFIG_PINCTRL_ICELAKE=m +CONFIG_PINCTRL_JASPERLAKE=m +CONFIG_PINCTRL_LAKEFIELD=m +CONFIG_PINCTRL_LEWISBURG=m +CONFIG_PINCTRL_SUNRISEPOINT=m +CONFIG_PINCTRL_TIGERLAKE=m +# end of Intel pinctrl drivers + +# +# Renesas pinctrl drivers +# +# end of Renesas pinctrl drivers + +CONFIG_PINCTRL_MADERA=m +CONFIG_GPIOLIB=y +CONFIG_GPIOLIB_FASTPATH_LIMIT=512 +CONFIG_GPIO_ACPI=y +CONFIG_GPIOLIB_IRQCHIP=y +# CONFIG_DEBUG_GPIO is not set +CONFIG_GPIO_SYSFS=y +CONFIG_GPIO_CDEV=y +CONFIG_GPIO_CDEV_V1=y +CONFIG_GPIO_GENERIC=m +CONFIG_GPIO_MAX730X=m + +# +# Memory mapped GPIO drivers +# +CONFIG_GPIO_AMDPT=m +CONFIG_GPIO_DWAPB=m +CONFIG_GPIO_EXAR=m +CONFIG_GPIO_GENERIC_PLATFORM=m +CONFIG_GPIO_ICH=m +CONFIG_GPIO_MB86S7X=m +CONFIG_GPIO_MENZ127=m +CONFIG_GPIO_STA2X11=y +CONFIG_GPIO_VX855=m +CONFIG_GPIO_AMD_FCH=m +# end of Memory mapped GPIO drivers + +# +# Port-mapped I/O GPIO drivers +# +CONFIG_GPIO_F7188X=m +CONFIG_GPIO_IT87=m +CONFIG_GPIO_SCH=m +CONFIG_GPIO_SCH311X=m +CONFIG_GPIO_WINBOND=m +CONFIG_GPIO_WS16C48=m +# end of Port-mapped I/O GPIO drivers + +# +# I2C GPIO expanders +# +CONFIG_GPIO_ADP5588=m +CONFIG_GPIO_MAX7300=m +CONFIG_GPIO_MAX732X=m +CONFIG_GPIO_PCA953X=m +CONFIG_GPIO_PCA953X_IRQ=y +CONFIG_GPIO_PCA9570=m +CONFIG_GPIO_PCF857X=m +CONFIG_GPIO_TPIC2810=m +# end of I2C GPIO expanders + +# +# MFD GPIO expanders +# +CONFIG_GPIO_ADP5520=m +CONFIG_GPIO_ARIZONA=m +CONFIG_GPIO_BD9571MWV=m +CONFIG_GPIO_CRYSTAL_COVE=m +CONFIG_GPIO_CS5535=m +CONFIG_GPIO_DA9052=m +CONFIG_GPIO_DA9055=m +CONFIG_GPIO_DLN2=m +CONFIG_GPIO_JANZ_TTL=m +CONFIG_GPIO_KEMPLD=m +CONFIG_GPIO_LP3943=m +CONFIG_GPIO_LP873X=m +CONFIG_GPIO_MADERA=m +CONFIG_GPIO_PALMAS=y +CONFIG_GPIO_RC5T583=y +CONFIG_GPIO_TIMBERDALE=y +CONFIG_GPIO_TPS65086=m +CONFIG_GPIO_TPS6586X=y +CONFIG_GPIO_TPS65910=y +CONFIG_GPIO_TPS65912=m +CONFIG_GPIO_TPS68470=y +CONFIG_GPIO_TQMX86=m +CONFIG_GPIO_TWL4030=m +CONFIG_GPIO_TWL6040=m +CONFIG_GPIO_UCB1400=m +CONFIG_GPIO_WHISKEY_COVE=m +CONFIG_GPIO_WM831X=m +CONFIG_GPIO_WM8350=m +CONFIG_GPIO_WM8994=m +# end of MFD GPIO expanders + +# +# PCI GPIO expanders +# +CONFIG_GPIO_AMD8111=m +CONFIG_GPIO_ML_IOH=m +CONFIG_GPIO_PCH=m +CONFIG_GPIO_PCI_IDIO_16=m +CONFIG_GPIO_PCIE_IDIO_24=m +CONFIG_GPIO_RDC321X=m +# end of PCI GPIO expanders + +# +# SPI GPIO expanders +# +CONFIG_GPIO_MAX3191X=m +CONFIG_GPIO_MAX7301=m +CONFIG_GPIO_MC33880=m +CONFIG_GPIO_PISOSR=m +CONFIG_GPIO_XRA1403=m +# end of SPI GPIO expanders + +# +# USB GPIO expanders +# +CONFIG_GPIO_VIPERBOARD=m +# end of USB GPIO expanders + +# +# Virtual GPIO drivers +# +CONFIG_GPIO_AGGREGATOR=m +# CONFIG_GPIO_MOCKUP is not set +CONFIG_GPIO_VIRTIO=m +# end of Virtual GPIO drivers + +CONFIG_W1=m +CONFIG_W1_CON=y + +# +# 1-wire Bus Masters +# +CONFIG_W1_MASTER_MATROX=m +CONFIG_W1_MASTER_DS2490=m +CONFIG_W1_MASTER_DS2482=m +CONFIG_W1_MASTER_DS1WM=m +CONFIG_W1_MASTER_GPIO=m +CONFIG_W1_MASTER_SGI=m +# end of 1-wire Bus Masters + +# +# 1-wire Slaves +# +CONFIG_W1_SLAVE_THERM=m +CONFIG_W1_SLAVE_SMEM=m +CONFIG_W1_SLAVE_DS2405=m +CONFIG_W1_SLAVE_DS2408=m +CONFIG_W1_SLAVE_DS2408_READBACK=y +CONFIG_W1_SLAVE_DS2413=m +CONFIG_W1_SLAVE_DS2406=m +CONFIG_W1_SLAVE_DS2423=m +CONFIG_W1_SLAVE_DS2805=m +CONFIG_W1_SLAVE_DS2430=m +CONFIG_W1_SLAVE_DS2431=m +CONFIG_W1_SLAVE_DS2433=m +# CONFIG_W1_SLAVE_DS2433_CRC is not set +CONFIG_W1_SLAVE_DS2438=m +CONFIG_W1_SLAVE_DS250X=m +CONFIG_W1_SLAVE_DS2780=m +CONFIG_W1_SLAVE_DS2781=m +CONFIG_W1_SLAVE_DS28E04=m +CONFIG_W1_SLAVE_DS28E17=m +# end of 1-wire Slaves + +CONFIG_POWER_RESET=y +CONFIG_POWER_RESET_ATC260X=m +# CONFIG_POWER_RESET_MT6323 is not set +CONFIG_POWER_RESET_RESTART=y +CONFIG_POWER_RESET_TPS65086=y +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_POWER_SUPPLY_HWMON=y +CONFIG_PDA_POWER=m +CONFIG_GENERIC_ADC_BATTERY=m +CONFIG_MAX8925_POWER=m +CONFIG_WM831X_BACKUP=m +CONFIG_WM831X_POWER=m +CONFIG_WM8350_POWER=m +CONFIG_TEST_POWER=m +CONFIG_BATTERY_88PM860X=m +CONFIG_CHARGER_ADP5061=m +CONFIG_BATTERY_CW2015=m +CONFIG_BATTERY_DS2760=m +CONFIG_BATTERY_DS2780=m +CONFIG_BATTERY_DS2781=m +CONFIG_BATTERY_DS2782=m +CONFIG_BATTERY_SBS=m +CONFIG_CHARGER_SBS=m +CONFIG_MANAGER_SBS=m +CONFIG_BATTERY_BQ27XXX=m +CONFIG_BATTERY_BQ27XXX_I2C=m +CONFIG_BATTERY_BQ27XXX_HDQ=m +# CONFIG_BATTERY_BQ27XXX_DT_UPDATES_NVM is not set +CONFIG_BATTERY_DA9030=m +CONFIG_BATTERY_DA9052=m +CONFIG_CHARGER_DA9150=m +CONFIG_BATTERY_DA9150=m +CONFIG_CHARGER_AXP20X=m +CONFIG_BATTERY_AXP20X=m +CONFIG_AXP20X_POWER=m +CONFIG_AXP288_CHARGER=m +CONFIG_AXP288_FUEL_GAUGE=m +CONFIG_BATTERY_MAX17040=m +CONFIG_BATTERY_MAX17042=m +CONFIG_BATTERY_MAX1721X=m +CONFIG_BATTERY_TWL4030_MADC=m +CONFIG_CHARGER_88PM860X=m +CONFIG_CHARGER_PCF50633=m +CONFIG_BATTERY_RX51=m +CONFIG_CHARGER_ISP1704=m +CONFIG_CHARGER_MAX8903=m +CONFIG_CHARGER_TWL4030=m +CONFIG_CHARGER_LP8727=m +CONFIG_CHARGER_LP8788=m +CONFIG_CHARGER_GPIO=m +CONFIG_CHARGER_MANAGER=y +CONFIG_CHARGER_LT3651=m +CONFIG_CHARGER_LTC4162L=m +CONFIG_CHARGER_MAX14577=m +CONFIG_CHARGER_MAX77693=m +CONFIG_CHARGER_MAX8997=m +CONFIG_CHARGER_MAX8998=m +CONFIG_CHARGER_MP2629=m +CONFIG_CHARGER_MT6360=m +CONFIG_CHARGER_BQ2415X=m +CONFIG_CHARGER_BQ24190=m +CONFIG_CHARGER_BQ24257=m +CONFIG_CHARGER_BQ24735=m +CONFIG_CHARGER_BQ2515X=m +CONFIG_CHARGER_BQ25890=m +CONFIG_CHARGER_BQ25980=m +CONFIG_CHARGER_BQ256XX=m +CONFIG_CHARGER_SMB347=m +CONFIG_CHARGER_TPS65090=m +CONFIG_BATTERY_GAUGE_LTC2941=m +CONFIG_BATTERY_GOLDFISH=m +CONFIG_BATTERY_RT5033=m +CONFIG_CHARGER_RT9455=m +CONFIG_CHARGER_CROS_USBPD=m +CONFIG_CHARGER_CROS_PCHG=m +CONFIG_CHARGER_BD99954=m +CONFIG_CHARGER_WILCO=m +CONFIG_HWMON=y +CONFIG_HWMON_VID=m +# CONFIG_HWMON_DEBUG_CHIP is not set + +# +# Native drivers +# +CONFIG_SENSORS_ABITUGURU=m +CONFIG_SENSORS_ABITUGURU3=m +CONFIG_SENSORS_AD7314=m +CONFIG_SENSORS_AD7414=m +CONFIG_SENSORS_AD7418=m +CONFIG_SENSORS_ADM1021=m +CONFIG_SENSORS_ADM1025=m +CONFIG_SENSORS_ADM1026=m +CONFIG_SENSORS_ADM1029=m +CONFIG_SENSORS_ADM1031=m +CONFIG_SENSORS_ADM1177=m +CONFIG_SENSORS_ADM9240=m +CONFIG_SENSORS_ADT7X10=m +CONFIG_SENSORS_ADT7310=m +CONFIG_SENSORS_ADT7410=m +CONFIG_SENSORS_ADT7411=m +CONFIG_SENSORS_ADT7462=m +CONFIG_SENSORS_ADT7470=m +CONFIG_SENSORS_ADT7475=m +CONFIG_SENSORS_AHT10=m +CONFIG_SENSORS_AQUACOMPUTER_D5NEXT=m +CONFIG_SENSORS_AS370=m +CONFIG_SENSORS_ASC7621=m +CONFIG_SENSORS_AXI_FAN_CONTROL=m +CONFIG_SENSORS_K8TEMP=m +CONFIG_SENSORS_K10TEMP=m +CONFIG_SENSORS_FAM15H_POWER=m +CONFIG_SENSORS_APPLESMC=m +CONFIG_SENSORS_ASB100=m +CONFIG_SENSORS_ASPEED=m +CONFIG_SENSORS_ATXP1=m +CONFIG_SENSORS_CORSAIR_CPRO=m +CONFIG_SENSORS_CORSAIR_PSU=m +CONFIG_SENSORS_DRIVETEMP=y +CONFIG_SENSORS_DS620=m +CONFIG_SENSORS_DS1621=m +CONFIG_SENSORS_DELL_SMM=m +CONFIG_SENSORS_DA9052_ADC=m +CONFIG_SENSORS_DA9055=m +CONFIG_SENSORS_I5K_AMB=m +CONFIG_SENSORS_F71805F=m +CONFIG_SENSORS_F71882FG=m +CONFIG_SENSORS_F75375S=m +CONFIG_SENSORS_MC13783_ADC=m +CONFIG_SENSORS_FSCHMD=m +CONFIG_SENSORS_FTSTEUTATES=m +CONFIG_SENSORS_GL518SM=m +CONFIG_SENSORS_GL520SM=m +CONFIG_SENSORS_G760A=m +CONFIG_SENSORS_G762=m +CONFIG_SENSORS_HIH6130=m +CONFIG_SENSORS_IBMAEM=m +CONFIG_SENSORS_IBMPEX=m +CONFIG_SENSORS_IIO_HWMON=m +CONFIG_SENSORS_I5500=m +CONFIG_SENSORS_CORETEMP=m +CONFIG_SENSORS_IT87=m +CONFIG_SENSORS_JC42=m +CONFIG_SENSORS_POWR1220=m +CONFIG_SENSORS_LINEAGE=m +CONFIG_SENSORS_LTC2945=m +CONFIG_SENSORS_LTC2947=m +CONFIG_SENSORS_LTC2947_I2C=m +CONFIG_SENSORS_LTC2947_SPI=m +CONFIG_SENSORS_LTC2990=m +CONFIG_SENSORS_LTC2992=m +CONFIG_SENSORS_LTC4151=m +CONFIG_SENSORS_LTC4215=m +CONFIG_SENSORS_LTC4222=m +CONFIG_SENSORS_LTC4245=m +CONFIG_SENSORS_LTC4260=m +CONFIG_SENSORS_LTC4261=m +CONFIG_SENSORS_MAX1111=m +CONFIG_SENSORS_MAX127=m +CONFIG_SENSORS_MAX16065=m +CONFIG_SENSORS_MAX1619=m +CONFIG_SENSORS_MAX1668=m +CONFIG_SENSORS_MAX197=m +CONFIG_SENSORS_MAX31722=m +CONFIG_SENSORS_MAX31730=m +CONFIG_SENSORS_MAX6620=m +CONFIG_SENSORS_MAX6621=m +CONFIG_SENSORS_MAX6639=m +CONFIG_SENSORS_MAX6642=m +CONFIG_SENSORS_MAX6650=m +CONFIG_SENSORS_MAX6697=m +CONFIG_SENSORS_MAX31790=m +CONFIG_SENSORS_MCP3021=m +CONFIG_SENSORS_TC654=m +CONFIG_SENSORS_TPS23861=m +CONFIG_SENSORS_MENF21BMC_HWMON=m +CONFIG_SENSORS_MR75203=m +CONFIG_SENSORS_ADCXX=m +CONFIG_SENSORS_LM63=m +CONFIG_SENSORS_LM70=m +CONFIG_SENSORS_LM73=m +CONFIG_SENSORS_LM75=m +CONFIG_SENSORS_LM77=m +CONFIG_SENSORS_LM78=m +CONFIG_SENSORS_LM80=m +CONFIG_SENSORS_LM83=m +CONFIG_SENSORS_LM85=m +CONFIG_SENSORS_LM87=m +CONFIG_SENSORS_LM90=m +CONFIG_SENSORS_LM92=m +CONFIG_SENSORS_LM93=m +CONFIG_SENSORS_LM95234=m +CONFIG_SENSORS_LM95241=m +CONFIG_SENSORS_LM95245=m +CONFIG_SENSORS_PC87360=m +CONFIG_SENSORS_PC87427=m +CONFIG_SENSORS_NTC_THERMISTOR=m +CONFIG_SENSORS_NCT6683=m +CONFIG_SENSORS_NCT6775=m +CONFIG_SENSORS_NCT7802=m +CONFIG_SENSORS_NCT7904=m +CONFIG_SENSORS_NPCM7XX=m +CONFIG_SENSORS_NZXT_KRAKEN2=m +CONFIG_SENSORS_PCF8591=m +CONFIG_PMBUS=m +CONFIG_SENSORS_PMBUS=m +CONFIG_SENSORS_ADM1266=m +CONFIG_SENSORS_ADM1275=m +CONFIG_SENSORS_BEL_PFE=m +CONFIG_SENSORS_BPA_RS600=m +CONFIG_SENSORS_FSP_3Y=m +CONFIG_SENSORS_IBM_CFFPS=m +CONFIG_SENSORS_DPS920AB=m +CONFIG_SENSORS_INSPUR_IPSPS=m +CONFIG_SENSORS_IR35221=m +CONFIG_SENSORS_IR36021=m +CONFIG_SENSORS_IR38064=m +CONFIG_SENSORS_IRPS5401=m +CONFIG_SENSORS_ISL68137=m +CONFIG_SENSORS_LM25066=m +CONFIG_SENSORS_LTC2978=m +CONFIG_SENSORS_LTC2978_REGULATOR=y +CONFIG_SENSORS_LTC3815=m +CONFIG_SENSORS_MAX15301=m +CONFIG_SENSORS_MAX16064=m +CONFIG_SENSORS_MAX16601=m +CONFIG_SENSORS_MAX20730=m +CONFIG_SENSORS_MAX20751=m +CONFIG_SENSORS_MAX31785=m +CONFIG_SENSORS_MAX34440=m +CONFIG_SENSORS_MAX8688=m +CONFIG_SENSORS_MP2888=m +CONFIG_SENSORS_MP2975=m +CONFIG_SENSORS_PIM4328=m +CONFIG_SENSORS_PM6764TR=m +CONFIG_SENSORS_PXE1610=m +CONFIG_SENSORS_Q54SJ108A2=m +CONFIG_SENSORS_STPDDC60=m +CONFIG_SENSORS_TPS40422=m +CONFIG_SENSORS_TPS53679=m +CONFIG_SENSORS_UCD9000=m +CONFIG_SENSORS_UCD9200=m +CONFIG_SENSORS_XDPE122=m +CONFIG_SENSORS_ZL6100=m +CONFIG_SENSORS_SBTSI=m +CONFIG_SENSORS_SBRMI=m +CONFIG_SENSORS_SHT15=m +CONFIG_SENSORS_SHT21=m +CONFIG_SENSORS_SHT3x=m +CONFIG_SENSORS_SHT4x=m +CONFIG_SENSORS_SHTC1=m +CONFIG_SENSORS_SIS5595=m +CONFIG_SENSORS_DME1737=m +CONFIG_SENSORS_EMC1403=m +CONFIG_SENSORS_EMC2103=m +CONFIG_SENSORS_EMC6W201=m +CONFIG_SENSORS_SMSC47M1=m +CONFIG_SENSORS_SMSC47M192=m +CONFIG_SENSORS_SMSC47B397=m +CONFIG_SENSORS_SCH56XX_COMMON=m +CONFIG_SENSORS_SCH5627=m +CONFIG_SENSORS_SCH5636=m +CONFIG_SENSORS_STTS751=m +CONFIG_SENSORS_SMM665=m +CONFIG_SENSORS_ADC128D818=m +CONFIG_SENSORS_ADS7828=m +CONFIG_SENSORS_ADS7871=m +CONFIG_SENSORS_AMC6821=m +CONFIG_SENSORS_INA209=m +CONFIG_SENSORS_INA2XX=m +CONFIG_SENSORS_INA3221=m +CONFIG_SENSORS_TC74=m +CONFIG_SENSORS_THMC50=m +CONFIG_SENSORS_TMP102=m +CONFIG_SENSORS_TMP103=m +CONFIG_SENSORS_TMP108=m +CONFIG_SENSORS_TMP401=m +CONFIG_SENSORS_TMP421=m +CONFIG_SENSORS_TMP513=m +CONFIG_SENSORS_VIA_CPUTEMP=m +CONFIG_SENSORS_VIA686A=m +CONFIG_SENSORS_VT1211=m +CONFIG_SENSORS_VT8231=m +CONFIG_SENSORS_W83773G=m +CONFIG_SENSORS_W83781D=m +CONFIG_SENSORS_W83791D=m +CONFIG_SENSORS_W83792D=m +CONFIG_SENSORS_W83793=m +CONFIG_SENSORS_W83795=m +# CONFIG_SENSORS_W83795_FANCTRL is not set +CONFIG_SENSORS_W83L785TS=m +CONFIG_SENSORS_W83L786NG=m +CONFIG_SENSORS_W83627HF=m +CONFIG_SENSORS_W83627EHF=m +CONFIG_SENSORS_WM831X=m +CONFIG_SENSORS_WM8350=m +CONFIG_SENSORS_XGENE=m +CONFIG_SENSORS_INTEL_M10_BMC_HWMON=m + +# +# ACPI drivers +# +CONFIG_SENSORS_ACPI_POWER=m +CONFIG_SENSORS_ATK0110=m +CONFIG_THERMAL=y +CONFIG_THERMAL_NETLINK=y +# CONFIG_THERMAL_STATISTICS is not set +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_WRITABLE_TRIPS=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +CONFIG_THERMAL_GOV_FAIR_SHARE=y +CONFIG_THERMAL_GOV_STEP_WISE=y +CONFIG_THERMAL_GOV_BANG_BANG=y +CONFIG_THERMAL_GOV_USER_SPACE=y +CONFIG_DEVFREQ_THERMAL=y +CONFIG_THERMAL_EMULATION=y + +# +# Intel thermal drivers +# +CONFIG_INTEL_POWERCLAMP=m +CONFIG_X86_THERMAL_VECTOR=y +CONFIG_X86_PKG_TEMP_THERMAL=m +CONFIG_INTEL_SOC_DTS_IOSF_CORE=m +CONFIG_INTEL_SOC_DTS_THERMAL=m +CONFIG_INTEL_QUARK_DTS_THERMAL=m + +# +# ACPI INT340X thermal drivers +# +# end of ACPI INT340X thermal drivers + +CONFIG_INTEL_BXT_PMIC_THERMAL=m +CONFIG_INTEL_PCH_THERMAL=m +CONFIG_INTEL_TCC_COOLING=m +CONFIG_INTEL_MENLOW=m +# end of Intel thermal drivers + +CONFIG_GENERIC_ADC_THERMAL=m +CONFIG_WATCHDOG=y +CONFIG_WATCHDOG_CORE=y +# CONFIG_WATCHDOG_NOWAYOUT is not set +CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y +CONFIG_WATCHDOG_OPEN_TIMEOUT=0 +CONFIG_WATCHDOG_SYSFS=y +CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT=y + +# +# Watchdog Pretimeout Governors +# +# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set + +# +# Watchdog Device Drivers +# +CONFIG_SOFT_WATCHDOG=m +CONFIG_DA9052_WATCHDOG=m +CONFIG_DA9055_WATCHDOG=m +CONFIG_DA9063_WATCHDOG=m +CONFIG_DA9062_WATCHDOG=m +CONFIG_MENF21BMC_WATCHDOG=m +CONFIG_MENZ069_WATCHDOG=m +CONFIG_WDAT_WDT=m +CONFIG_WM831X_WATCHDOG=m +CONFIG_WM8350_WATCHDOG=m +CONFIG_XILINX_WATCHDOG=m +CONFIG_ZIIRAVE_WATCHDOG=m +CONFIG_RAVE_SP_WATCHDOG=m +CONFIG_CADENCE_WATCHDOG=m +CONFIG_DW_WATCHDOG=m +CONFIG_TWL4030_WATCHDOG=m +CONFIG_MAX63XX_WATCHDOG=m +CONFIG_RETU_WATCHDOG=m +CONFIG_ACQUIRE_WDT=m +CONFIG_ADVANTECH_WDT=m +CONFIG_ALIM1535_WDT=m +CONFIG_ALIM7101_WDT=m +CONFIG_EBC_C384_WDT=m +CONFIG_F71808E_WDT=m +CONFIG_SP5100_TCO=m +CONFIG_SBC_FITPC2_WATCHDOG=m +CONFIG_EUROTECH_WDT=m +CONFIG_IB700_WDT=m +CONFIG_IBMASR=m +CONFIG_WAFER_WDT=m +CONFIG_I6300ESB_WDT=m +CONFIG_IE6XX_WDT=m +CONFIG_ITCO_WDT=m +CONFIG_ITCO_VENDOR_SUPPORT=y +CONFIG_IT8712F_WDT=m +CONFIG_IT87_WDT=m +CONFIG_HP_WATCHDOG=m +CONFIG_HPWDT_NMI_DECODING=y +CONFIG_KEMPLD_WDT=m +CONFIG_SC1200_WDT=m +CONFIG_SCx200_WDT=m +CONFIG_PC87413_WDT=m +CONFIG_NV_TCO=m +CONFIG_RDC321X_WDT=m +CONFIG_60XX_WDT=m +CONFIG_SBC8360_WDT=m +CONFIG_SBC7240_WDT=m +CONFIG_CPU5_WDT=m +CONFIG_SMSC_SCH311X_WDT=m +CONFIG_SMSC37B787_WDT=m +CONFIG_TQMX86_WDT=m +CONFIG_VIA_WDT=m +CONFIG_W83627HF_WDT=m +CONFIG_W83877F_WDT=m +CONFIG_W83977F_WDT=m +CONFIG_MACHZ_WDT=m +CONFIG_SBC_EPX_C3_WATCHDOG=m +CONFIG_NI903X_WDT=m +CONFIG_NIC7018_WDT=m +CONFIG_MEN_A21_WDT=m +CONFIG_XEN_WDT=m + +# +# ISA-based Watchdog Cards +# +CONFIG_PCWATCHDOG=m +CONFIG_MIXCOMWD=m +CONFIG_WDT=m + +# +# PCI-based Watchdog Cards +# +CONFIG_PCIPCWATCHDOG=m +CONFIG_WDTPCI=m + +# +# USB-based Watchdog Cards +# +CONFIG_USBPCWATCHDOG=m +CONFIG_SSB_POSSIBLE=y +CONFIG_SSB=m +CONFIG_SSB_SPROM=y +CONFIG_SSB_BLOCKIO=y +CONFIG_SSB_PCIHOST_POSSIBLE=y +CONFIG_SSB_PCIHOST=y +CONFIG_SSB_B43_PCI_BRIDGE=y +CONFIG_SSB_PCMCIAHOST_POSSIBLE=y +# CONFIG_SSB_PCMCIAHOST is not set +CONFIG_SSB_SDIOHOST_POSSIBLE=y +CONFIG_SSB_SDIOHOST=y +CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y +CONFIG_SSB_DRIVER_PCICORE=y +CONFIG_SSB_DRIVER_GPIO=y +CONFIG_BCMA_POSSIBLE=y +CONFIG_BCMA=m +CONFIG_BCMA_BLOCKIO=y +CONFIG_BCMA_HOST_PCI_POSSIBLE=y +CONFIG_BCMA_HOST_PCI=y +CONFIG_BCMA_HOST_SOC=y +CONFIG_BCMA_DRIVER_PCI=y +CONFIG_BCMA_SFLASH=y +CONFIG_BCMA_DRIVER_GMAC_CMN=y +CONFIG_BCMA_DRIVER_GPIO=y +# CONFIG_BCMA_DEBUG is not set + +# +# Multifunction device drivers +# +CONFIG_MFD_CORE=y +CONFIG_MFD_CS5535=m +CONFIG_MFD_AS3711=y +CONFIG_PMIC_ADP5520=y +CONFIG_MFD_AAT2870_CORE=y +CONFIG_MFD_BCM590XX=m +CONFIG_MFD_BD9571MWV=m +CONFIG_MFD_AXP20X=m +CONFIG_MFD_AXP20X_I2C=m +CONFIG_MFD_CROS_EC_DEV=m +CONFIG_MFD_MADERA=m +CONFIG_MFD_MADERA_I2C=m +CONFIG_MFD_MADERA_SPI=m +# CONFIG_MFD_CS47L15 is not set +# CONFIG_MFD_CS47L35 is not set +# CONFIG_MFD_CS47L85 is not set +# CONFIG_MFD_CS47L90 is not set +# CONFIG_MFD_CS47L92 is not set +CONFIG_PMIC_DA903X=y +CONFIG_PMIC_DA9052=y +CONFIG_MFD_DA9052_SPI=y +CONFIG_MFD_DA9052_I2C=y +CONFIG_MFD_DA9055=y +CONFIG_MFD_DA9062=m +CONFIG_MFD_DA9063=y +CONFIG_MFD_DA9150=m +CONFIG_MFD_DLN2=m +CONFIG_MFD_MC13XXX=m +CONFIG_MFD_MC13XXX_SPI=m +CONFIG_MFD_MC13XXX_I2C=m +CONFIG_MFD_MP2629=m +CONFIG_HTC_PASIC3=m +CONFIG_HTC_I2CPLD=y +CONFIG_MFD_INTEL_QUARK_I2C_GPIO=m +CONFIG_LPC_ICH=m +CONFIG_LPC_SCH=m +CONFIG_INTEL_SOC_PMIC=y +CONFIG_INTEL_SOC_PMIC_BXTWC=m +CONFIG_INTEL_SOC_PMIC_CHTWC=y +CONFIG_INTEL_SOC_PMIC_CHTDC_TI=m +CONFIG_INTEL_SOC_PMIC_MRFLD=m +CONFIG_MFD_INTEL_LPSS=m +CONFIG_MFD_INTEL_LPSS_ACPI=m +CONFIG_MFD_INTEL_LPSS_PCI=m +CONFIG_MFD_INTEL_PMC_BXT=m +CONFIG_MFD_INTEL_PMT=m +CONFIG_MFD_IQS62X=m +CONFIG_MFD_JANZ_CMODIO=m +CONFIG_MFD_KEMPLD=m +CONFIG_MFD_88PM800=m +CONFIG_MFD_88PM805=m +CONFIG_MFD_88PM860X=y +CONFIG_MFD_MAX14577=y +CONFIG_MFD_MAX77693=y +CONFIG_MFD_MAX77843=y +CONFIG_MFD_MAX8907=m +CONFIG_MFD_MAX8925=y +CONFIG_MFD_MAX8997=y +CONFIG_MFD_MAX8998=y +CONFIG_MFD_MT6360=m +CONFIG_MFD_MT6397=m +CONFIG_MFD_MENF21BMC=m +CONFIG_EZX_PCAP=y +CONFIG_MFD_VIPERBOARD=m +CONFIG_MFD_RETU=m +CONFIG_MFD_PCF50633=m +CONFIG_PCF50633_ADC=m +CONFIG_PCF50633_GPIO=m +CONFIG_UCB1400_CORE=m +CONFIG_MFD_RDC321X=m +CONFIG_MFD_RT4831=m +CONFIG_MFD_RT5033=m +CONFIG_MFD_RC5T583=y +CONFIG_MFD_SI476X_CORE=m +CONFIG_MFD_SM501=m +CONFIG_MFD_SM501_GPIO=y +CONFIG_MFD_SKY81452=m +CONFIG_MFD_STA2X11=y +CONFIG_MFD_SYSCON=y +CONFIG_MFD_TI_AM335X_TSCADC=m +CONFIG_MFD_LP3943=m +CONFIG_MFD_LP8788=y +CONFIG_MFD_TI_LMU=m +CONFIG_MFD_PALMAS=y +CONFIG_TPS6105X=m +CONFIG_TPS65010=m +CONFIG_TPS6507X=m +CONFIG_MFD_TPS65086=m +CONFIG_MFD_TPS65090=y +CONFIG_MFD_TI_LP873X=m +CONFIG_MFD_TPS6586X=y +CONFIG_MFD_TPS65910=y +CONFIG_MFD_TPS65912=y +CONFIG_MFD_TPS65912_I2C=y +CONFIG_MFD_TPS65912_SPI=y +CONFIG_TWL4030_CORE=y +CONFIG_MFD_TWL4030_AUDIO=y +CONFIG_TWL6040_CORE=y +CONFIG_MFD_WL1273_CORE=m +CONFIG_MFD_LM3533=m +CONFIG_MFD_TIMBERDALE=m +CONFIG_MFD_TQMX86=m +CONFIG_MFD_VX855=m +CONFIG_MFD_ARIZONA=m +CONFIG_MFD_ARIZONA_I2C=m +CONFIG_MFD_ARIZONA_SPI=m +CONFIG_MFD_CS47L24=y +CONFIG_MFD_WM5102=y +CONFIG_MFD_WM5110=y +CONFIG_MFD_WM8997=y +CONFIG_MFD_WM8998=y +CONFIG_MFD_WM8400=y +CONFIG_MFD_WM831X=y +CONFIG_MFD_WM831X_I2C=y +CONFIG_MFD_WM831X_SPI=y +CONFIG_MFD_WM8350=y +CONFIG_MFD_WM8350_I2C=y +CONFIG_MFD_WM8994=m +CONFIG_MFD_ATC260X=m +CONFIG_MFD_ATC260X_I2C=m +CONFIG_RAVE_SP_CORE=m +CONFIG_MFD_INTEL_M10_BMC=m +# end of Multifunction device drivers + +CONFIG_REGULATOR=y +# CONFIG_REGULATOR_DEBUG is not set +CONFIG_REGULATOR_FIXED_VOLTAGE=m +CONFIG_REGULATOR_VIRTUAL_CONSUMER=m +CONFIG_REGULATOR_USERSPACE_CONSUMER=m +CONFIG_REGULATOR_88PG86X=m +CONFIG_REGULATOR_88PM800=m +CONFIG_REGULATOR_88PM8607=m +CONFIG_REGULATOR_ACT8865=m +CONFIG_REGULATOR_AD5398=m +CONFIG_REGULATOR_AAT2870=m +CONFIG_REGULATOR_ARIZONA_LDO1=m +CONFIG_REGULATOR_ARIZONA_MICSUPP=m +CONFIG_REGULATOR_AS3711=m +CONFIG_REGULATOR_ATC260X=m +CONFIG_REGULATOR_AXP20X=m +CONFIG_REGULATOR_BCM590XX=m +CONFIG_REGULATOR_BD9571MWV=m +CONFIG_REGULATOR_DA903X=m +CONFIG_REGULATOR_DA9052=m +CONFIG_REGULATOR_DA9055=m +CONFIG_REGULATOR_DA9062=m +CONFIG_REGULATOR_DA9210=m +CONFIG_REGULATOR_DA9211=m +CONFIG_REGULATOR_FAN53555=m +CONFIG_REGULATOR_GPIO=m +CONFIG_REGULATOR_ISL9305=m +CONFIG_REGULATOR_ISL6271A=m +CONFIG_REGULATOR_LM363X=m +CONFIG_REGULATOR_LP3971=m +CONFIG_REGULATOR_LP3972=m +CONFIG_REGULATOR_LP872X=m +CONFIG_REGULATOR_LP8755=m +CONFIG_REGULATOR_LP8788=m +CONFIG_REGULATOR_LTC3589=m +CONFIG_REGULATOR_LTC3676=m +CONFIG_REGULATOR_MAX14577=m +CONFIG_REGULATOR_MAX1586=m +CONFIG_REGULATOR_MAX8649=m +CONFIG_REGULATOR_MAX8660=m +CONFIG_REGULATOR_MAX8893=m +CONFIG_REGULATOR_MAX8907=m +CONFIG_REGULATOR_MAX8925=m +CONFIG_REGULATOR_MAX8952=m +CONFIG_REGULATOR_MAX8997=m +CONFIG_REGULATOR_MAX8998=m +CONFIG_REGULATOR_MAX77693=m +CONFIG_REGULATOR_MAX77826=m +CONFIG_REGULATOR_MC13XXX_CORE=m +CONFIG_REGULATOR_MC13783=m +CONFIG_REGULATOR_MC13892=m +CONFIG_REGULATOR_MP8859=m +CONFIG_REGULATOR_MT6311=m +CONFIG_REGULATOR_MT6315=m +CONFIG_REGULATOR_MT6323=m +CONFIG_REGULATOR_MT6358=m +CONFIG_REGULATOR_MT6359=m +CONFIG_REGULATOR_MT6360=m +CONFIG_REGULATOR_MT6397=m +CONFIG_REGULATOR_PALMAS=m +CONFIG_REGULATOR_PCA9450=m +CONFIG_REGULATOR_PCAP=m +CONFIG_REGULATOR_PCF50633=m +CONFIG_REGULATOR_PV88060=m +CONFIG_REGULATOR_PV88080=m +CONFIG_REGULATOR_PV88090=m +CONFIG_REGULATOR_PWM=m +CONFIG_REGULATOR_QCOM_SPMI=m +CONFIG_REGULATOR_QCOM_USB_VBUS=m +CONFIG_REGULATOR_RASPBERRYPI_TOUCHSCREEN_ATTINY=m +CONFIG_REGULATOR_RC5T583=m +CONFIG_REGULATOR_RT4801=m +CONFIG_REGULATOR_RT4831=m +CONFIG_REGULATOR_RT5033=m +CONFIG_REGULATOR_RT6160=m +CONFIG_REGULATOR_RT6245=m +CONFIG_REGULATOR_RTQ2134=m +CONFIG_REGULATOR_RTMV20=m +CONFIG_REGULATOR_RTQ6752=m +CONFIG_REGULATOR_SKY81452=m +CONFIG_REGULATOR_SLG51000=m +CONFIG_REGULATOR_TPS51632=m +CONFIG_REGULATOR_TPS6105X=m +CONFIG_REGULATOR_TPS62360=m +CONFIG_REGULATOR_TPS65023=m +CONFIG_REGULATOR_TPS6507X=m +CONFIG_REGULATOR_TPS65086=m +CONFIG_REGULATOR_TPS65090=m +CONFIG_REGULATOR_TPS65132=m +CONFIG_REGULATOR_TPS6524X=m +CONFIG_REGULATOR_TPS6586X=m +CONFIG_REGULATOR_TPS65910=m +CONFIG_REGULATOR_TPS65912=m +CONFIG_REGULATOR_TWL4030=m +CONFIG_REGULATOR_WM831X=m +CONFIG_REGULATOR_WM8350=m +CONFIG_REGULATOR_WM8400=m +CONFIG_REGULATOR_WM8994=m +CONFIG_REGULATOR_QCOM_LABIBB=m +CONFIG_RC_CORE=m +CONFIG_RC_MAP=m +CONFIG_LIRC=y +CONFIG_RC_DECODERS=y +CONFIG_IR_NEC_DECODER=m +CONFIG_IR_RC5_DECODER=m +CONFIG_IR_RC6_DECODER=m +CONFIG_IR_JVC_DECODER=m +CONFIG_IR_SONY_DECODER=m +CONFIG_IR_SANYO_DECODER=m +CONFIG_IR_SHARP_DECODER=m +CONFIG_IR_MCE_KBD_DECODER=m +CONFIG_IR_XMP_DECODER=m +CONFIG_IR_IMON_DECODER=m +CONFIG_IR_RCMM_DECODER=m +CONFIG_RC_DEVICES=y +CONFIG_RC_ATI_REMOTE=m +CONFIG_IR_ENE=m +CONFIG_IR_IMON=m +CONFIG_IR_IMON_RAW=m +CONFIG_IR_MCEUSB=m +CONFIG_IR_ITE_CIR=m +CONFIG_IR_FINTEK=m +CONFIG_IR_NUVOTON=m +CONFIG_IR_REDRAT3=m +CONFIG_IR_STREAMZAP=m +CONFIG_IR_WINBOND_CIR=m +CONFIG_IR_IGORPLUGUSB=m +CONFIG_IR_IGUANA=m +CONFIG_IR_TTUSBIR=m +CONFIG_RC_LOOPBACK=m +CONFIG_IR_SERIAL=m +CONFIG_IR_SERIAL_TRANSMITTER=y +CONFIG_RC_XBOX_DVD=m +CONFIG_IR_TOY=m +CONFIG_CEC_CORE=m +CONFIG_CEC_NOTIFIER=y +CONFIG_CEC_PIN=y + +# +# CEC support +# +CONFIG_MEDIA_CEC_RC=y +# CONFIG_CEC_PIN_ERROR_INJ is not set +CONFIG_MEDIA_CEC_SUPPORT=y +CONFIG_CEC_CH7322=m +CONFIG_CEC_CROS_EC=m +CONFIG_CEC_GPIO=m +CONFIG_CEC_SECO=m +CONFIG_CEC_SECO_RC=y +CONFIG_USB_PULSE8_CEC=m +CONFIG_USB_RAINSHADOW_CEC=m +# end of CEC support + +CONFIG_MEDIA_SUPPORT=m +# CONFIG_MEDIA_SUPPORT_FILTER is not set +CONFIG_MEDIA_SUBDRV_AUTOSELECT=y + +# +# Media device types +# +CONFIG_MEDIA_CAMERA_SUPPORT=y +CONFIG_MEDIA_ANALOG_TV_SUPPORT=y +CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y +CONFIG_MEDIA_RADIO_SUPPORT=y +CONFIG_MEDIA_SDR_SUPPORT=y +CONFIG_MEDIA_PLATFORM_SUPPORT=y +CONFIG_MEDIA_TEST_SUPPORT=y +# end of Media device types + +# +# Media core support +# +CONFIG_VIDEO_DEV=m +CONFIG_MEDIA_CONTROLLER=y +CONFIG_DVB_CORE=m +# end of Media core support + +# +# Video4Linux options +# +CONFIG_VIDEO_V4L2=m +CONFIG_VIDEO_V4L2_I2C=y +CONFIG_VIDEO_V4L2_SUBDEV_API=y +# CONFIG_VIDEO_ADV_DEBUG is not set +# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set +CONFIG_VIDEO_TUNER=m +CONFIG_V4L2_MEM2MEM_DEV=m +CONFIG_V4L2_FLASH_LED_CLASS=m +CONFIG_V4L2_FWNODE=m +CONFIG_V4L2_ASYNC=m +CONFIG_VIDEOBUF_GEN=m +CONFIG_VIDEOBUF_DMA_SG=m +CONFIG_VIDEOBUF_VMALLOC=m +# end of Video4Linux options + +# +# Media controller options +# +CONFIG_MEDIA_CONTROLLER_DVB=y +CONFIG_MEDIA_CONTROLLER_REQUEST_API=y +# end of Media controller options + +# +# Digital TV options +# +# CONFIG_DVB_MMAP is not set +CONFIG_DVB_NET=y +CONFIG_DVB_MAX_ADAPTERS=8 +CONFIG_DVB_DYNAMIC_MINORS=y +# CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set +# CONFIG_DVB_ULE_DEBUG is not set +# end of Digital TV options + +# +# Media drivers +# +CONFIG_MEDIA_USB_SUPPORT=y + +# +# Webcam devices +# +CONFIG_USB_VIDEO_CLASS=m +CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y +CONFIG_USB_GSPCA=m +CONFIG_USB_M5602=m +CONFIG_USB_STV06XX=m +CONFIG_USB_GL860=m +CONFIG_USB_GSPCA_BENQ=m +CONFIG_USB_GSPCA_CONEX=m +CONFIG_USB_GSPCA_CPIA1=m +CONFIG_USB_GSPCA_DTCS033=m +CONFIG_USB_GSPCA_ETOMS=m +CONFIG_USB_GSPCA_FINEPIX=m +CONFIG_USB_GSPCA_JEILINJ=m +CONFIG_USB_GSPCA_JL2005BCD=m +CONFIG_USB_GSPCA_KINECT=m +CONFIG_USB_GSPCA_KONICA=m +CONFIG_USB_GSPCA_MARS=m +CONFIG_USB_GSPCA_MR97310A=m +CONFIG_USB_GSPCA_NW80X=m +CONFIG_USB_GSPCA_OV519=m +CONFIG_USB_GSPCA_OV534=m +CONFIG_USB_GSPCA_OV534_9=m +CONFIG_USB_GSPCA_PAC207=m +CONFIG_USB_GSPCA_PAC7302=m +CONFIG_USB_GSPCA_PAC7311=m +CONFIG_USB_GSPCA_SE401=m +CONFIG_USB_GSPCA_SN9C2028=m +CONFIG_USB_GSPCA_SN9C20X=m +CONFIG_USB_GSPCA_SONIXB=m +CONFIG_USB_GSPCA_SONIXJ=m +CONFIG_USB_GSPCA_SPCA500=m +CONFIG_USB_GSPCA_SPCA501=m +CONFIG_USB_GSPCA_SPCA505=m +CONFIG_USB_GSPCA_SPCA506=m +CONFIG_USB_GSPCA_SPCA508=m +CONFIG_USB_GSPCA_SPCA561=m +CONFIG_USB_GSPCA_SPCA1528=m +CONFIG_USB_GSPCA_SQ905=m +CONFIG_USB_GSPCA_SQ905C=m +CONFIG_USB_GSPCA_SQ930X=m +CONFIG_USB_GSPCA_STK014=m +CONFIG_USB_GSPCA_STK1135=m +CONFIG_USB_GSPCA_STV0680=m +CONFIG_USB_GSPCA_SUNPLUS=m +CONFIG_USB_GSPCA_T613=m +CONFIG_USB_GSPCA_TOPRO=m +CONFIG_USB_GSPCA_TOUPTEK=m +CONFIG_USB_GSPCA_TV8532=m +CONFIG_USB_GSPCA_VC032X=m +CONFIG_USB_GSPCA_VICAM=m +CONFIG_USB_GSPCA_XIRLINK_CIT=m +CONFIG_USB_GSPCA_ZC3XX=m +CONFIG_USB_PWC=m +# CONFIG_USB_PWC_DEBUG is not set +CONFIG_USB_PWC_INPUT_EVDEV=y +CONFIG_VIDEO_CPIA2=m +CONFIG_USB_ZR364XX=m +CONFIG_USB_STKWEBCAM=m +CONFIG_USB_S2255=m +CONFIG_VIDEO_USBTV=m + +# +# Analog TV USB devices +# +CONFIG_VIDEO_PVRUSB2=m +CONFIG_VIDEO_PVRUSB2_SYSFS=y +CONFIG_VIDEO_PVRUSB2_DVB=y +# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set +CONFIG_VIDEO_HDPVR=m +CONFIG_VIDEO_STK1160_COMMON=m +CONFIG_VIDEO_STK1160=m +CONFIG_VIDEO_GO7007=m +CONFIG_VIDEO_GO7007_USB=m +CONFIG_VIDEO_GO7007_LOADER=m +CONFIG_VIDEO_GO7007_USB_S2250_BOARD=m + +# +# Analog/digital TV USB devices +# +CONFIG_VIDEO_AU0828=m +CONFIG_VIDEO_AU0828_V4L2=y +CONFIG_VIDEO_AU0828_RC=y +CONFIG_VIDEO_CX231XX=m +CONFIG_VIDEO_CX231XX_RC=y +CONFIG_VIDEO_CX231XX_ALSA=m +CONFIG_VIDEO_CX231XX_DVB=m +CONFIG_VIDEO_TM6000=m +CONFIG_VIDEO_TM6000_ALSA=m +CONFIG_VIDEO_TM6000_DVB=m + +# +# Digital TV USB devices +# +CONFIG_DVB_USB=m +# CONFIG_DVB_USB_DEBUG is not set +CONFIG_DVB_USB_DIB3000MC=m +CONFIG_DVB_USB_A800=m +CONFIG_DVB_USB_DIBUSB_MB=m +# CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set +CONFIG_DVB_USB_DIBUSB_MC=m +CONFIG_DVB_USB_DIB0700=m +CONFIG_DVB_USB_UMT_010=m +CONFIG_DVB_USB_CXUSB=m +CONFIG_DVB_USB_CXUSB_ANALOG=y +CONFIG_DVB_USB_M920X=m +CONFIG_DVB_USB_DIGITV=m +CONFIG_DVB_USB_VP7045=m +CONFIG_DVB_USB_VP702X=m +CONFIG_DVB_USB_GP8PSK=m +CONFIG_DVB_USB_NOVA_T_USB2=m +CONFIG_DVB_USB_TTUSB2=m +CONFIG_DVB_USB_DTT200U=m +CONFIG_DVB_USB_OPERA1=m +CONFIG_DVB_USB_AF9005=m +CONFIG_DVB_USB_AF9005_REMOTE=m +CONFIG_DVB_USB_PCTV452E=m +CONFIG_DVB_USB_DW2102=m +CONFIG_DVB_USB_CINERGY_T2=m +CONFIG_DVB_USB_DTV5100=m +CONFIG_DVB_USB_AZ6027=m +CONFIG_DVB_USB_TECHNISAT_USB2=m +CONFIG_DVB_USB_V2=m +CONFIG_DVB_USB_AF9015=m +CONFIG_DVB_USB_AF9035=m +CONFIG_DVB_USB_ANYSEE=m +CONFIG_DVB_USB_AU6610=m +CONFIG_DVB_USB_AZ6007=m +CONFIG_DVB_USB_CE6230=m +CONFIG_DVB_USB_EC168=m +CONFIG_DVB_USB_GL861=m +CONFIG_DVB_USB_LME2510=m +CONFIG_DVB_USB_MXL111SF=m +CONFIG_DVB_USB_RTL28XXU=m +CONFIG_DVB_USB_DVBSKY=m +CONFIG_DVB_USB_ZD1301=m +CONFIG_DVB_TTUSB_BUDGET=m +CONFIG_DVB_TTUSB_DEC=m +CONFIG_SMS_USB_DRV=m +CONFIG_DVB_B2C2_FLEXCOP_USB=m +# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not set +CONFIG_DVB_AS102=m + +# +# Webcam, TV (analog/digital) USB devices +# +CONFIG_VIDEO_EM28XX=m +CONFIG_VIDEO_EM28XX_V4L2=m +CONFIG_VIDEO_EM28XX_ALSA=m +CONFIG_VIDEO_EM28XX_DVB=m +CONFIG_VIDEO_EM28XX_RC=m + +# +# Software defined radio USB devices +# +CONFIG_USB_AIRSPY=m +CONFIG_USB_HACKRF=m +CONFIG_USB_MSI2500=m +CONFIG_MEDIA_PCI_SUPPORT=y + +# +# Media capture support +# +CONFIG_VIDEO_MEYE=m +CONFIG_VIDEO_SOLO6X10=m +CONFIG_STA2X11_VIP=m +CONFIG_VIDEO_TW5864=m +CONFIG_VIDEO_TW68=m +CONFIG_VIDEO_TW686X=m + +# +# Media capture/analog TV support +# +CONFIG_VIDEO_IVTV=m +CONFIG_VIDEO_IVTV_ALSA=m +CONFIG_VIDEO_FB_IVTV=m +# CONFIG_VIDEO_FB_IVTV_FORCE_PAT is not set +CONFIG_VIDEO_HEXIUM_GEMINI=m +CONFIG_VIDEO_HEXIUM_ORION=m +CONFIG_VIDEO_MXB=m +CONFIG_VIDEO_DT3155=m + +# +# Media capture/analog/hybrid TV support +# +CONFIG_VIDEO_CX18=m +CONFIG_VIDEO_CX18_ALSA=m +CONFIG_VIDEO_CX23885=m +CONFIG_MEDIA_ALTERA_CI=m +CONFIG_VIDEO_CX25821=m +CONFIG_VIDEO_CX25821_ALSA=m +CONFIG_VIDEO_CX88=m +CONFIG_VIDEO_CX88_ALSA=m +CONFIG_VIDEO_CX88_BLACKBIRD=m +CONFIG_VIDEO_CX88_DVB=m +CONFIG_VIDEO_CX88_ENABLE_VP3054=y +CONFIG_VIDEO_CX88_VP3054=m +CONFIG_VIDEO_CX88_MPEG=m +CONFIG_VIDEO_BT848=m +CONFIG_DVB_BT8XX=m +CONFIG_VIDEO_SAA7134=m +CONFIG_VIDEO_SAA7134_ALSA=m +CONFIG_VIDEO_SAA7134_RC=y +CONFIG_VIDEO_SAA7134_DVB=m +CONFIG_VIDEO_SAA7134_GO7007=m +CONFIG_VIDEO_SAA7164=m +CONFIG_VIDEO_COBALT=m + +# +# Media digital TV PCI Adapters +# +CONFIG_DVB_BUDGET_CORE=m +CONFIG_DVB_BUDGET=m +CONFIG_DVB_BUDGET_CI=m +CONFIG_DVB_BUDGET_AV=m +CONFIG_DVB_B2C2_FLEXCOP_PCI=m +# CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG is not set +CONFIG_DVB_PLUTO2=m +CONFIG_DVB_DM1105=m +CONFIG_DVB_PT1=m +CONFIG_DVB_PT3=m +CONFIG_MANTIS_CORE=m +CONFIG_DVB_MANTIS=m +CONFIG_DVB_HOPPER=m +CONFIG_DVB_NGENE=m +CONFIG_DVB_DDBRIDGE=m +# CONFIG_DVB_DDBRIDGE_MSIENABLE is not set +CONFIG_DVB_SMIPCIE=m +CONFIG_DVB_NETUP_UNIDVB=m +CONFIG_VIDEO_IPU3_CIO2=m +CONFIG_CIO2_BRIDGE=y +CONFIG_RADIO_ADAPTERS=y +CONFIG_RADIO_TEA575X=m +CONFIG_RADIO_SI470X=m +CONFIG_USB_SI470X=m +CONFIG_I2C_SI470X=m +CONFIG_RADIO_SI4713=m +CONFIG_USB_SI4713=m +CONFIG_PLATFORM_SI4713=m +CONFIG_I2C_SI4713=m +CONFIG_RADIO_SI476X=m +CONFIG_USB_MR800=m +CONFIG_USB_DSBR=m +CONFIG_RADIO_MAXIRADIO=m +CONFIG_RADIO_SHARK=m +CONFIG_RADIO_SHARK2=m +CONFIG_USB_KEENE=m +CONFIG_USB_RAREMONO=m +CONFIG_USB_MA901=m +CONFIG_RADIO_TEA5764=m +CONFIG_RADIO_SAA7706H=m +CONFIG_RADIO_TEF6862=m +CONFIG_RADIO_TIMBERDALE=m +CONFIG_RADIO_WL1273=m +CONFIG_RADIO_WL128X=m +CONFIG_V4L_RADIO_ISA_DRIVERS=y +CONFIG_RADIO_ISA=m +CONFIG_RADIO_CADET=m +CONFIG_RADIO_RTRACK=m +CONFIG_RADIO_RTRACK2=m +CONFIG_RADIO_AZTECH=m +CONFIG_RADIO_GEMTEK=m +CONFIG_RADIO_MIROPCM20=m +CONFIG_RADIO_SF16FMI=m +CONFIG_RADIO_SF16FMR2=m +CONFIG_RADIO_TERRATEC=m +CONFIG_RADIO_TRUST=m +CONFIG_RADIO_TYPHOON=m +CONFIG_RADIO_ZOLTRIX=m +CONFIG_MEDIA_COMMON_OPTIONS=y + +# +# common driver options +# +CONFIG_VIDEO_CX2341X=m +CONFIG_VIDEO_TVEEPROM=m +CONFIG_TTPCI_EEPROM=m +CONFIG_CYPRESS_FIRMWARE=m +CONFIG_VIDEOBUF2_CORE=m +CONFIG_VIDEOBUF2_V4L2=m +CONFIG_VIDEOBUF2_MEMOPS=m +CONFIG_VIDEOBUF2_DMA_CONTIG=m +CONFIG_VIDEOBUF2_VMALLOC=m +CONFIG_VIDEOBUF2_DMA_SG=m +CONFIG_VIDEOBUF2_DVB=m +CONFIG_DVB_B2C2_FLEXCOP=m +CONFIG_VIDEO_SAA7146=m +CONFIG_VIDEO_SAA7146_VV=m +CONFIG_SMS_SIANO_MDTV=m +CONFIG_SMS_SIANO_RC=y +CONFIG_SMS_SIANO_DEBUGFS=y +CONFIG_VIDEO_V4L2_TPG=m +CONFIG_V4L_PLATFORM_DRIVERS=y +CONFIG_VIDEO_CAFE_CCIC=m +CONFIG_VIDEO_VIA_CAMERA=m +CONFIG_VIDEO_CADENCE=y +CONFIG_VIDEO_CADENCE_CSI2RX=m +CONFIG_VIDEO_CADENCE_CSI2TX=m +CONFIG_VIDEO_ASPEED=m +CONFIG_V4L_MEM2MEM_DRIVERS=y +CONFIG_VIDEO_MEM2MEM_DEINTERLACE=m +CONFIG_DVB_PLATFORM_DRIVERS=y +CONFIG_SDR_PLATFORM_DRIVERS=y + +# +# MMC/SDIO DVB adapters +# +CONFIG_SMS_SDIO_DRV=m +CONFIG_V4L_TEST_DRIVERS=y +# CONFIG_VIDEO_VIMC is not set +CONFIG_VIDEO_VIVID=m +CONFIG_VIDEO_VIVID_CEC=y +CONFIG_VIDEO_VIVID_MAX_DEVS=64 +CONFIG_VIDEO_VIM2M=m +CONFIG_VIDEO_VICODEC=m +# CONFIG_DVB_TEST_DRIVERS is not set + +# +# FireWire (IEEE 1394) Adapters +# +CONFIG_DVB_FIREDTV=m +CONFIG_DVB_FIREDTV_INPUT=y +# end of Media drivers + +# +# Media ancillary drivers +# +CONFIG_MEDIA_ATTACH=y + +# +# IR I2C driver auto-selected by 'Autoselect ancillary drivers' +# +CONFIG_VIDEO_IR_I2C=m + +# +# Audio decoders, processors and mixers +# +CONFIG_VIDEO_TVAUDIO=m +CONFIG_VIDEO_TDA7432=m +CONFIG_VIDEO_TDA9840=m +CONFIG_VIDEO_TDA1997X=m +CONFIG_VIDEO_TEA6415C=m +CONFIG_VIDEO_TEA6420=m +CONFIG_VIDEO_MSP3400=m +CONFIG_VIDEO_CS3308=m +CONFIG_VIDEO_CS5345=m +CONFIG_VIDEO_CS53L32A=m +CONFIG_VIDEO_TLV320AIC23B=m +CONFIG_VIDEO_UDA1342=m +CONFIG_VIDEO_WM8775=m +CONFIG_VIDEO_WM8739=m +CONFIG_VIDEO_VP27SMPX=m +CONFIG_VIDEO_SONY_BTF_MPX=m +# end of Audio decoders, processors and mixers + +# +# RDS decoders +# +CONFIG_VIDEO_SAA6588=m +# end of RDS decoders + +# +# Video decoders +# +CONFIG_VIDEO_ADV7180=m +CONFIG_VIDEO_ADV7183=m +CONFIG_VIDEO_ADV7604=m +CONFIG_VIDEO_ADV7604_CEC=y +CONFIG_VIDEO_ADV7842=m +CONFIG_VIDEO_ADV7842_CEC=y +CONFIG_VIDEO_BT819=m +CONFIG_VIDEO_BT856=m +CONFIG_VIDEO_BT866=m +CONFIG_VIDEO_KS0127=m +CONFIG_VIDEO_ML86V7667=m +CONFIG_VIDEO_SAA7110=m +CONFIG_VIDEO_SAA711X=m +CONFIG_VIDEO_TC358743=m +CONFIG_VIDEO_TC358743_CEC=y +CONFIG_VIDEO_TVP514X=m +CONFIG_VIDEO_TVP5150=m +CONFIG_VIDEO_TVP7002=m +CONFIG_VIDEO_TW2804=m +CONFIG_VIDEO_TW9903=m +CONFIG_VIDEO_TW9906=m +CONFIG_VIDEO_TW9910=m +CONFIG_VIDEO_VPX3220=m + +# +# Video and audio decoders +# +CONFIG_VIDEO_SAA717X=m +CONFIG_VIDEO_CX25840=m +# end of Video decoders + +# +# Video encoders +# +CONFIG_VIDEO_SAA7127=m +CONFIG_VIDEO_SAA7185=m +CONFIG_VIDEO_ADV7170=m +CONFIG_VIDEO_ADV7175=m +CONFIG_VIDEO_ADV7343=m +CONFIG_VIDEO_ADV7393=m +CONFIG_VIDEO_ADV7511=m +CONFIG_VIDEO_ADV7511_CEC=y +CONFIG_VIDEO_AD9389B=m +CONFIG_VIDEO_AK881X=m +CONFIG_VIDEO_THS8200=m +# end of Video encoders + +# +# Video improvement chips +# +CONFIG_VIDEO_UPD64031A=m +CONFIG_VIDEO_UPD64083=m +# end of Video improvement chips + +# +# Audio/Video compression chips +# +CONFIG_VIDEO_SAA6752HS=m +# end of Audio/Video compression chips + +# +# SDR tuner chips +# +CONFIG_SDR_MAX2175=m +# end of SDR tuner chips + +# +# Miscellaneous helper chips +# +CONFIG_VIDEO_THS7303=m +CONFIG_VIDEO_M52790=m +CONFIG_VIDEO_I2C=m +CONFIG_VIDEO_ST_MIPID02=m +# end of Miscellaneous helper chips + +# +# Camera sensor devices +# +CONFIG_VIDEO_APTINA_PLL=m +CONFIG_VIDEO_CCS_PLL=m +CONFIG_VIDEO_HI556=m +CONFIG_VIDEO_HI846=m +CONFIG_VIDEO_IMX208=m +CONFIG_VIDEO_IMX214=m +CONFIG_VIDEO_IMX219=m +CONFIG_VIDEO_IMX258=m +CONFIG_VIDEO_IMX274=m +CONFIG_VIDEO_IMX290=m +CONFIG_VIDEO_IMX319=m +CONFIG_VIDEO_IMX355=m +CONFIG_VIDEO_OV02A10=m +CONFIG_VIDEO_OV2640=m +CONFIG_VIDEO_OV2659=m +CONFIG_VIDEO_OV2680=m +CONFIG_VIDEO_OV2685=m +CONFIG_VIDEO_OV2740=m +CONFIG_VIDEO_OV5647=m +CONFIG_VIDEO_OV5648=m +CONFIG_VIDEO_OV6650=m +CONFIG_VIDEO_OV5670=m +CONFIG_VIDEO_OV5675=m +CONFIG_VIDEO_OV5695=m +CONFIG_VIDEO_OV7251=m +CONFIG_VIDEO_OV772X=m +CONFIG_VIDEO_OV7640=m +CONFIG_VIDEO_OV7670=m +CONFIG_VIDEO_OV7740=m +CONFIG_VIDEO_OV8856=m +CONFIG_VIDEO_OV8865=m +CONFIG_VIDEO_OV9640=m +CONFIG_VIDEO_OV9650=m +CONFIG_VIDEO_OV9734=m +CONFIG_VIDEO_OV13858=m +CONFIG_VIDEO_OV13B10=m +CONFIG_VIDEO_VS6624=m +CONFIG_VIDEO_MT9M001=m +CONFIG_VIDEO_MT9M032=m +CONFIG_VIDEO_MT9M111=m +CONFIG_VIDEO_MT9P031=m +CONFIG_VIDEO_MT9T001=m +CONFIG_VIDEO_MT9T112=m +CONFIG_VIDEO_MT9V011=m +CONFIG_VIDEO_MT9V032=m +CONFIG_VIDEO_MT9V111=m +CONFIG_VIDEO_SR030PC30=m +CONFIG_VIDEO_NOON010PC30=m +CONFIG_VIDEO_M5MOLS=m +CONFIG_VIDEO_MAX9271_LIB=m +CONFIG_VIDEO_RDACM20=m +CONFIG_VIDEO_RDACM21=m +CONFIG_VIDEO_RJ54N1=m +CONFIG_VIDEO_S5K6AA=m +CONFIG_VIDEO_S5K6A3=m +CONFIG_VIDEO_S5K4ECGX=m +CONFIG_VIDEO_S5K5BAF=m +CONFIG_VIDEO_CCS=m +CONFIG_VIDEO_ET8EK8=m +CONFIG_VIDEO_S5C73M3=m +# end of Camera sensor devices + +# +# Lens drivers +# +CONFIG_VIDEO_AD5820=m +CONFIG_VIDEO_AK7375=m +CONFIG_VIDEO_DW9714=m +CONFIG_VIDEO_DW9768=m +CONFIG_VIDEO_DW9807_VCM=m +# end of Lens drivers + +# +# Flash devices +# +CONFIG_VIDEO_ADP1653=m +CONFIG_VIDEO_LM3560=m +CONFIG_VIDEO_LM3646=m +# end of Flash devices + +# +# SPI helper chips +# +CONFIG_VIDEO_GS1662=m +# end of SPI helper chips + +# +# Media SPI Adapters +# +CONFIG_CXD2880_SPI_DRV=m +# end of Media SPI Adapters + +CONFIG_MEDIA_TUNER=m + +# +# Customize TV tuners +# +CONFIG_MEDIA_TUNER_SIMPLE=m +CONFIG_MEDIA_TUNER_TDA18250=m +CONFIG_MEDIA_TUNER_TDA8290=m +CONFIG_MEDIA_TUNER_TDA827X=m +CONFIG_MEDIA_TUNER_TDA18271=m +CONFIG_MEDIA_TUNER_TDA9887=m +CONFIG_MEDIA_TUNER_TEA5761=m +CONFIG_MEDIA_TUNER_TEA5767=m +CONFIG_MEDIA_TUNER_MSI001=m +CONFIG_MEDIA_TUNER_MT20XX=m +CONFIG_MEDIA_TUNER_MT2060=m +CONFIG_MEDIA_TUNER_MT2063=m +CONFIG_MEDIA_TUNER_MT2266=m +CONFIG_MEDIA_TUNER_MT2131=m +CONFIG_MEDIA_TUNER_QT1010=m +CONFIG_MEDIA_TUNER_XC2028=m +CONFIG_MEDIA_TUNER_XC5000=m +CONFIG_MEDIA_TUNER_XC4000=m +CONFIG_MEDIA_TUNER_MXL5005S=m +CONFIG_MEDIA_TUNER_MXL5007T=m +CONFIG_MEDIA_TUNER_MC44S803=m +CONFIG_MEDIA_TUNER_MAX2165=m +CONFIG_MEDIA_TUNER_TDA18218=m +CONFIG_MEDIA_TUNER_FC0011=m +CONFIG_MEDIA_TUNER_FC0012=m +CONFIG_MEDIA_TUNER_FC0013=m +CONFIG_MEDIA_TUNER_TDA18212=m +CONFIG_MEDIA_TUNER_E4000=m +CONFIG_MEDIA_TUNER_FC2580=m +CONFIG_MEDIA_TUNER_M88RS6000T=m +CONFIG_MEDIA_TUNER_TUA9001=m +CONFIG_MEDIA_TUNER_SI2157=m +CONFIG_MEDIA_TUNER_IT913X=m +CONFIG_MEDIA_TUNER_R820T=m +CONFIG_MEDIA_TUNER_MXL301RF=m +CONFIG_MEDIA_TUNER_QM1D1C0042=m +CONFIG_MEDIA_TUNER_QM1D1B0004=m +# end of Customize TV tuners + +# +# Customise DVB Frontends +# + +# +# Multistandard (satellite) frontends +# +CONFIG_DVB_STB0899=m +CONFIG_DVB_STB6100=m +CONFIG_DVB_STV090x=m +CONFIG_DVB_STV0910=m +CONFIG_DVB_STV6110x=m +CONFIG_DVB_STV6111=m +CONFIG_DVB_MXL5XX=m +CONFIG_DVB_M88DS3103=m + +# +# Multistandard (cable + terrestrial) frontends +# +CONFIG_DVB_DRXK=m +CONFIG_DVB_TDA18271C2DD=m +CONFIG_DVB_SI2165=m +CONFIG_DVB_MN88472=m +CONFIG_DVB_MN88473=m + +# +# DVB-S (satellite) frontends +# +CONFIG_DVB_CX24110=m +CONFIG_DVB_CX24123=m +CONFIG_DVB_MT312=m +CONFIG_DVB_ZL10036=m +CONFIG_DVB_ZL10039=m +CONFIG_DVB_S5H1420=m +CONFIG_DVB_STV0288=m +CONFIG_DVB_STB6000=m +CONFIG_DVB_STV0299=m +CONFIG_DVB_STV6110=m +CONFIG_DVB_STV0900=m +CONFIG_DVB_TDA8083=m +CONFIG_DVB_TDA10086=m +CONFIG_DVB_TDA8261=m +CONFIG_DVB_VES1X93=m +CONFIG_DVB_TUNER_ITD1000=m +CONFIG_DVB_TUNER_CX24113=m +CONFIG_DVB_TDA826X=m +CONFIG_DVB_TUA6100=m +CONFIG_DVB_CX24116=m +CONFIG_DVB_CX24117=m +CONFIG_DVB_CX24120=m +CONFIG_DVB_SI21XX=m +CONFIG_DVB_TS2020=m +CONFIG_DVB_DS3000=m +CONFIG_DVB_MB86A16=m +CONFIG_DVB_TDA10071=m + +# +# DVB-T (terrestrial) frontends +# +CONFIG_DVB_SP887X=m +CONFIG_DVB_CX22700=m +CONFIG_DVB_CX22702=m +CONFIG_DVB_S5H1432=m +CONFIG_DVB_DRXD=m +CONFIG_DVB_L64781=m +CONFIG_DVB_TDA1004X=m +CONFIG_DVB_NXT6000=m +CONFIG_DVB_MT352=m +CONFIG_DVB_ZL10353=m +CONFIG_DVB_DIB3000MB=m +CONFIG_DVB_DIB3000MC=m +CONFIG_DVB_DIB7000M=m +CONFIG_DVB_DIB7000P=m +CONFIG_DVB_DIB9000=m +CONFIG_DVB_TDA10048=m +CONFIG_DVB_AF9013=m +CONFIG_DVB_EC100=m +CONFIG_DVB_STV0367=m +CONFIG_DVB_CXD2820R=m +CONFIG_DVB_CXD2841ER=m +CONFIG_DVB_RTL2830=m +CONFIG_DVB_RTL2832=m +CONFIG_DVB_RTL2832_SDR=m +CONFIG_DVB_SI2168=m +CONFIG_DVB_AS102_FE=m +CONFIG_DVB_ZD1301_DEMOD=m +CONFIG_DVB_GP8PSK_FE=m +CONFIG_DVB_CXD2880=m + +# +# DVB-C (cable) frontends +# +CONFIG_DVB_VES1820=m +CONFIG_DVB_TDA10021=m +CONFIG_DVB_TDA10023=m +CONFIG_DVB_STV0297=m + +# +# ATSC (North American/Korean Terrestrial/Cable DTV) frontends +# +CONFIG_DVB_NXT200X=m +CONFIG_DVB_OR51211=m +CONFIG_DVB_OR51132=m +CONFIG_DVB_BCM3510=m +CONFIG_DVB_LGDT330X=m +CONFIG_DVB_LGDT3305=m +CONFIG_DVB_LGDT3306A=m +CONFIG_DVB_LG2160=m +CONFIG_DVB_S5H1409=m +CONFIG_DVB_AU8522=m +CONFIG_DVB_AU8522_DTV=m +CONFIG_DVB_AU8522_V4L=m +CONFIG_DVB_S5H1411=m +CONFIG_DVB_MXL692=m + +# +# ISDB-T (terrestrial) frontends +# +CONFIG_DVB_S921=m +CONFIG_DVB_DIB8000=m +CONFIG_DVB_MB86A20S=m + +# +# ISDB-S (satellite) & ISDB-T (terrestrial) frontends +# +CONFIG_DVB_TC90522=m +CONFIG_DVB_MN88443X=m + +# +# Digital terrestrial only tuners/PLL +# +CONFIG_DVB_PLL=m +CONFIG_DVB_TUNER_DIB0070=m +CONFIG_DVB_TUNER_DIB0090=m + +# +# SEC control devices for DVB-S +# +CONFIG_DVB_DRX39XYJ=m +CONFIG_DVB_LNBH25=m +CONFIG_DVB_LNBH29=m +CONFIG_DVB_LNBP21=m +CONFIG_DVB_LNBP22=m +CONFIG_DVB_ISL6405=m +CONFIG_DVB_ISL6421=m +CONFIG_DVB_ISL6423=m +CONFIG_DVB_A8293=m +CONFIG_DVB_LGS8GL5=m +CONFIG_DVB_LGS8GXX=m +CONFIG_DVB_ATBM8830=m +CONFIG_DVB_TDA665x=m +CONFIG_DVB_IX2505V=m +CONFIG_DVB_M88RS2000=m +CONFIG_DVB_AF9033=m +CONFIG_DVB_HORUS3A=m +CONFIG_DVB_ASCOT2E=m +CONFIG_DVB_HELENE=m + +# +# Common Interface (EN50221) controller drivers +# +CONFIG_DVB_CXD2099=m +CONFIG_DVB_SP2=m +# end of Customise DVB Frontends + +# +# Tools to develop new frontends +# +CONFIG_DVB_DUMMY_FE=m +# end of Media ancillary drivers + +# +# Graphics support +# +CONFIG_AGP=y +CONFIG_AGP_ALI=m +CONFIG_AGP_ATI=m +CONFIG_AGP_AMD=y +CONFIG_AGP_AMD64=y +CONFIG_AGP_INTEL=y +CONFIG_AGP_NVIDIA=y +CONFIG_AGP_SIS=m +CONFIG_AGP_SWORKS=m +CONFIG_AGP_VIA=y +CONFIG_AGP_EFFICEON=m +CONFIG_INTEL_GTT=y +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=16 +CONFIG_VGA_SWITCHEROO=y +CONFIG_DRM=m +CONFIG_DRM_MIPI_DBI=m +CONFIG_DRM_MIPI_DSI=y +# CONFIG_DRM_DP_AUX_CHARDEV is not set +# CONFIG_DRM_DEBUG_SELFTEST is not set +CONFIG_DRM_KMS_HELPER=m +# CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS is not set +# CONFIG_DRM_DEBUG_MODESET_LOCK is not set +CONFIG_DRM_FBDEV_EMULATION=y +CONFIG_DRM_FBDEV_OVERALLOC=100 +# CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM is not set +CONFIG_DRM_LOAD_EDID_FIRMWARE=y +# CONFIG_DRM_DP_CEC is not set +CONFIG_DRM_TTM=m +CONFIG_DRM_VRAM_HELPER=m +CONFIG_DRM_TTM_HELPER=m +CONFIG_DRM_GEM_CMA_HELPER=y +CONFIG_DRM_KMS_CMA_HELPER=y +CONFIG_DRM_GEM_SHMEM_HELPER=y +CONFIG_DRM_SCHED=m + +# +# I2C encoder or helper chips +# +CONFIG_DRM_I2C_CH7006=m +CONFIG_DRM_I2C_SIL164=m +CONFIG_DRM_I2C_NXP_TDA998X=m +CONFIG_DRM_I2C_NXP_TDA9950=m +# end of I2C encoder or helper chips + +# +# ARM devices +# +# end of ARM devices + +CONFIG_DRM_RADEON=m +# CONFIG_DRM_RADEON_USERPTR is not set +CONFIG_DRM_AMDGPU=m +# CONFIG_DRM_AMDGPU_SI is not set +# CONFIG_DRM_AMDGPU_CIK is not set +CONFIG_DRM_AMDGPU_USERPTR=y + +# +# ACP (Audio CoProcessor) Configuration +# +# CONFIG_DRM_AMD_ACP is not set +# end of ACP (Audio CoProcessor) Configuration + +# +# Display Engine Configuration +# +CONFIG_DRM_AMD_DC=y +CONFIG_DRM_AMD_DC_DCN=y +# CONFIG_DRM_AMD_DC_HDCP is not set +# CONFIG_DEBUG_KERNEL_DC is not set +CONFIG_DRM_AMD_SECURE_DISPLAY=y +# end of Display Engine Configuration + +CONFIG_DRM_NOUVEAU=m +# CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT is not set +CONFIG_NOUVEAU_DEBUG=5 +CONFIG_NOUVEAU_DEBUG_DEFAULT=3 +# CONFIG_NOUVEAU_DEBUG_MMU is not set +# CONFIG_NOUVEAU_DEBUG_PUSH is not set +CONFIG_DRM_NOUVEAU_BACKLIGHT=y +CONFIG_DRM_I915=m +CONFIG_DRM_I915_FORCE_PROBE="" +CONFIG_DRM_I915_CAPTURE_ERROR=y +CONFIG_DRM_I915_COMPRESS_ERROR=y +CONFIG_DRM_I915_USERPTR=y + +# +# drm/i915 Debugging +# +# CONFIG_DRM_I915_WERROR is not set +# CONFIG_DRM_I915_DEBUG is not set +# CONFIG_DRM_I915_DEBUG_MMIO is not set +# CONFIG_DRM_I915_SW_FENCE_DEBUG_OBJECTS is not set +# CONFIG_DRM_I915_SW_FENCE_CHECK_DAG is not set +# CONFIG_DRM_I915_DEBUG_GUC is not set +# CONFIG_DRM_I915_SELFTEST is not set +# CONFIG_DRM_I915_LOW_LEVEL_TRACEPOINTS is not set +# CONFIG_DRM_I915_DEBUG_VBLANK_EVADE is not set +# CONFIG_DRM_I915_DEBUG_RUNTIME_PM is not set +# end of drm/i915 Debugging + +# +# drm/i915 Profile Guided Optimisation +# +CONFIG_DRM_I915_REQUEST_TIMEOUT=20000 +CONFIG_DRM_I915_FENCE_TIMEOUT=10000 +CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND=250 +CONFIG_DRM_I915_HEARTBEAT_INTERVAL=2500 +CONFIG_DRM_I915_PREEMPT_TIMEOUT=640 +CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT=8000 +CONFIG_DRM_I915_STOP_TIMEOUT=100 +CONFIG_DRM_I915_TIMESLICE_DURATION=1 +# end of drm/i915 Profile Guided Optimisation + +CONFIG_DRM_VGEM=m +# CONFIG_DRM_VKMS is not set +CONFIG_DRM_VMWGFX=m +CONFIG_DRM_VMWGFX_FBCON=y +# CONFIG_DRM_VMWGFX_MKSSTATS is not set +CONFIG_DRM_GMA500=m +CONFIG_DRM_UDL=m +CONFIG_DRM_AST=m +# CONFIG_DRM_MGAG200 is not set +CONFIG_DRM_QXL=m +CONFIG_DRM_VIRTIO_GPU=m +CONFIG_DRM_PANEL=y + +# +# Display Panels +# +# CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN is not set +CONFIG_DRM_PANEL_WIDECHIPS_WS2401=m +# end of Display Panels + +CONFIG_DRM_BRIDGE=y +CONFIG_DRM_PANEL_BRIDGE=y + +# +# Display Interface Bridges +# +CONFIG_DRM_ANALOGIX_ANX78XX=m +CONFIG_DRM_ANALOGIX_DP=m +# end of Display Interface Bridges + +# CONFIG_DRM_ETNAVIV is not set +CONFIG_DRM_BOCHS=m +CONFIG_DRM_CIRRUS_QEMU=m +CONFIG_DRM_GM12U320=m +# CONFIG_DRM_SIMPLEDRM is not set +CONFIG_TINYDRM_HX8357D=m +CONFIG_TINYDRM_ILI9225=m +CONFIG_TINYDRM_ILI9341=m +CONFIG_TINYDRM_ILI9486=m +CONFIG_TINYDRM_MI0283QT=m +CONFIG_TINYDRM_REPAPER=m +CONFIG_TINYDRM_ST7586=m +CONFIG_TINYDRM_ST7735R=m +CONFIG_DRM_XEN=y +CONFIG_DRM_XEN_FRONTEND=m +CONFIG_DRM_VBOXVIDEO=m +CONFIG_DRM_GUD=m +CONFIG_DRM_HYPERV=m +# CONFIG_DRM_LEGACY is not set +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y + +# +# Frame buffer Devices +# +CONFIG_FB_CMDLINE=y +CONFIG_FB_NOTIFY=y +CONFIG_FB=y +CONFIG_FIRMWARE_EDID=y +CONFIG_FB_DDC=m +CONFIG_FB_BOOT_VESA_SUPPORT=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FB_SYS_FILLRECT=m +CONFIG_FB_SYS_COPYAREA=m +CONFIG_FB_SYS_IMAGEBLIT=m +# CONFIG_FB_FOREIGN_ENDIAN is not set +CONFIG_FB_SYS_FOPS=m +CONFIG_FB_DEFERRED_IO=y +CONFIG_FB_HECUBA=m +CONFIG_FB_SVGALIB=m +CONFIG_FB_BACKLIGHT=m +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_TILEBLITTING=y + +# +# Frame buffer hardware drivers +# +CONFIG_FB_CIRRUS=m +CONFIG_FB_PM2=m +CONFIG_FB_PM2_FIFO_DISCONNECT=y +CONFIG_FB_CYBER2000=m +CONFIG_FB_CYBER2000_DDC=y +CONFIG_FB_ARC=m +CONFIG_FB_ASILIANT=y +CONFIG_FB_IMSTT=y +CONFIG_FB_VGA16=m +CONFIG_FB_UVESA=m +CONFIG_FB_VESA=y +CONFIG_FB_EFI=y +CONFIG_FB_N411=m +CONFIG_FB_HGA=m +CONFIG_FB_OPENCORES=m +CONFIG_FB_S1D13XXX=m +# CONFIG_FB_NVIDIA is not set +CONFIG_FB_RIVA=m +CONFIG_FB_RIVA_I2C=y +# CONFIG_FB_RIVA_DEBUG is not set +CONFIG_FB_RIVA_BACKLIGHT=y +CONFIG_FB_I740=m +CONFIG_FB_I810=m +# CONFIG_FB_I810_GTF is not set +CONFIG_FB_LE80578=m +CONFIG_FB_CARILLO_RANCH=m +CONFIG_FB_INTEL=m +# CONFIG_FB_INTEL_DEBUG is not set +CONFIG_FB_INTEL_I2C=y +CONFIG_FB_MATROX=m +CONFIG_FB_MATROX_MILLENIUM=y +CONFIG_FB_MATROX_MYSTIQUE=y +CONFIG_FB_MATROX_G=y +CONFIG_FB_MATROX_I2C=m +CONFIG_FB_MATROX_MAVEN=m +CONFIG_FB_RADEON=m +CONFIG_FB_RADEON_I2C=y +CONFIG_FB_RADEON_BACKLIGHT=y +# CONFIG_FB_RADEON_DEBUG is not set +CONFIG_FB_ATY128=m +CONFIG_FB_ATY128_BACKLIGHT=y +CONFIG_FB_ATY=m +CONFIG_FB_ATY_CT=y +# CONFIG_FB_ATY_GENERIC_LCD is not set +CONFIG_FB_ATY_GX=y +CONFIG_FB_ATY_BACKLIGHT=y +CONFIG_FB_S3=m +CONFIG_FB_S3_DDC=y +CONFIG_FB_SAVAGE=m +CONFIG_FB_SAVAGE_I2C=y +# CONFIG_FB_SAVAGE_ACCEL is not set +CONFIG_FB_SIS=m +CONFIG_FB_SIS_300=y +CONFIG_FB_SIS_315=y +CONFIG_FB_VIA=m +# CONFIG_FB_VIA_DIRECT_PROCFS is not set +CONFIG_FB_VIA_X_COMPATIBILITY=y +CONFIG_FB_NEOMAGIC=m +CONFIG_FB_KYRO=m +CONFIG_FB_3DFX=m +# CONFIG_FB_3DFX_ACCEL is not set +# CONFIG_FB_3DFX_I2C is not set +CONFIG_FB_VOODOO1=m +CONFIG_FB_VT8623=m +CONFIG_FB_TRIDENT=m +CONFIG_FB_ARK=m +CONFIG_FB_PM3=m +CONFIG_FB_CARMINE=m +CONFIG_FB_CARMINE_DRAM_EVAL=y +# CONFIG_CARMINE_DRAM_CUSTOM is not set +CONFIG_FB_GEODE=y +CONFIG_FB_GEODE_LX=m +CONFIG_FB_GEODE_GX=m +CONFIG_FB_GEODE_GX1=m +CONFIG_FB_SM501=m +CONFIG_FB_SMSCUFX=m +CONFIG_FB_UDL=m +CONFIG_FB_IBM_GXT4500=m +# CONFIG_FB_VIRTUAL is not set +CONFIG_XEN_FBDEV_FRONTEND=m +CONFIG_FB_METRONOME=m +CONFIG_FB_MB862XX=m +CONFIG_FB_MB862XX_PCI_GDC=y +CONFIG_FB_MB862XX_I2C=y +CONFIG_FB_HYPERV=m +CONFIG_FB_SIMPLE=y +CONFIG_FB_SSD1307=m +CONFIG_FB_SM712=m +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +CONFIG_LCD_CLASS_DEVICE=m +CONFIG_LCD_L4F00242T03=m +CONFIG_LCD_LMS283GF05=m +CONFIG_LCD_LTV350QV=m +CONFIG_LCD_ILI922X=m +CONFIG_LCD_ILI9320=m +CONFIG_LCD_TDO24M=m +CONFIG_LCD_VGG2432A4=m +CONFIG_LCD_PLATFORM=m +CONFIG_LCD_AMS369FG06=m +CONFIG_LCD_LMS501KF03=m +CONFIG_LCD_HX8357=m +CONFIG_LCD_OTM3225A=m +CONFIG_BACKLIGHT_CLASS_DEVICE=y +CONFIG_BACKLIGHT_KTD253=m +CONFIG_BACKLIGHT_LM3533=m +CONFIG_BACKLIGHT_CARILLO_RANCH=m +CONFIG_BACKLIGHT_PWM=m +CONFIG_BACKLIGHT_DA903X=m +CONFIG_BACKLIGHT_DA9052=m +CONFIG_BACKLIGHT_MAX8925=m +CONFIG_BACKLIGHT_APPLE=m +CONFIG_BACKLIGHT_QCOM_WLED=m +CONFIG_BACKLIGHT_RT4831=m +CONFIG_BACKLIGHT_SAHARA=m +CONFIG_BACKLIGHT_WM831X=m +CONFIG_BACKLIGHT_ADP5520=m +CONFIG_BACKLIGHT_ADP8860=m +CONFIG_BACKLIGHT_ADP8870=m +CONFIG_BACKLIGHT_88PM860X=m +CONFIG_BACKLIGHT_PCF50633=m +CONFIG_BACKLIGHT_AAT2870=m +CONFIG_BACKLIGHT_LM3630A=m +CONFIG_BACKLIGHT_LM3639=m +CONFIG_BACKLIGHT_LP855X=m +CONFIG_BACKLIGHT_LP8788=m +CONFIG_BACKLIGHT_PANDORA=m +CONFIG_BACKLIGHT_SKY81452=m +CONFIG_BACKLIGHT_AS3711=m +CONFIG_BACKLIGHT_GPIO=m +CONFIG_BACKLIGHT_LV5207LP=m +CONFIG_BACKLIGHT_BD6107=m +CONFIG_BACKLIGHT_ARCXCNN=m +CONFIG_BACKLIGHT_RAVE_SP=m +# end of Backlight & LCD device support + +CONFIG_VGASTATE=m +CONFIG_VIDEOMODE_HELPERS=y +CONFIG_HDMI=y + +# +# Console display driver support +# +CONFIG_VGA_CONSOLE=y +CONFIG_MDA_CONSOLE=m +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +CONFIG_FRAMEBUFFER_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y +# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set +# end of Console display driver support + +CONFIG_LOGO=y +# CONFIG_LOGO_LINUX_MONO is not set +# CONFIG_LOGO_LINUX_VGA16 is not set +# CONFIG_LOGO_LINUX_CLUT224 is not set +# end of Graphics support + +CONFIG_SOUND=m +CONFIG_SOUND_OSS_CORE=y +# CONFIG_SOUND_OSS_CORE_PRECLAIM is not set +CONFIG_SND=m +CONFIG_SND_TIMER=m +CONFIG_SND_PCM=m +CONFIG_SND_PCM_ELD=y +CONFIG_SND_PCM_IEC958=y +CONFIG_SND_DMAENGINE_PCM=m +CONFIG_SND_HWDEP=m +CONFIG_SND_SEQ_DEVICE=m +CONFIG_SND_RAWMIDI=m +CONFIG_SND_COMPRESS_OFFLOAD=m +CONFIG_SND_JACK=y +CONFIG_SND_JACK_INPUT_DEV=y +CONFIG_SND_OSSEMUL=y +CONFIG_SND_MIXER_OSS=m +CONFIG_SND_PCM_OSS=m +CONFIG_SND_PCM_OSS_PLUGINS=y +CONFIG_SND_PCM_TIMER=y +CONFIG_SND_HRTIMER=m +CONFIG_SND_DYNAMIC_MINORS=y +CONFIG_SND_MAX_CARDS=32 +CONFIG_SND_SUPPORT_OLD_API=y +CONFIG_SND_PROC_FS=y +CONFIG_SND_VERBOSE_PROCFS=y +# CONFIG_SND_VERBOSE_PRINTK is not set +# CONFIG_SND_DEBUG is not set +CONFIG_SND_VMASTER=y +CONFIG_SND_DMA_SGBUF=y +CONFIG_SND_CTL_LED=m +CONFIG_SND_SEQUENCER=m +CONFIG_SND_SEQ_DUMMY=m +# CONFIG_SND_SEQUENCER_OSS is not set +CONFIG_SND_SEQ_HRTIMER_DEFAULT=y +CONFIG_SND_SEQ_MIDI_EVENT=m +CONFIG_SND_SEQ_MIDI=m +CONFIG_SND_SEQ_MIDI_EMUL=m +CONFIG_SND_SEQ_VIRMIDI=m +CONFIG_SND_MPU401_UART=m +CONFIG_SND_OPL3_LIB=m +CONFIG_SND_OPL4_LIB=m +CONFIG_SND_OPL3_LIB_SEQ=m +CONFIG_SND_OPL4_LIB_SEQ=m +CONFIG_SND_VX_LIB=m +CONFIG_SND_AC97_CODEC=m +CONFIG_SND_DRIVERS=y +CONFIG_SND_PCSP=m +CONFIG_SND_DUMMY=m +CONFIG_SND_ALOOP=m +CONFIG_SND_VIRMIDI=m +CONFIG_SND_MTPAV=m +CONFIG_SND_MTS64=m +CONFIG_SND_SERIAL_U16550=m +CONFIG_SND_MPU401=m +CONFIG_SND_PORTMAN2X4=m +CONFIG_SND_AC97_POWER_SAVE=y +CONFIG_SND_AC97_POWER_SAVE_DEFAULT=0 +CONFIG_SND_WSS_LIB=m +CONFIG_SND_SB_COMMON=m +CONFIG_SND_SB8_DSP=m +CONFIG_SND_SB16_DSP=m +CONFIG_SND_ISA=y +CONFIG_SND_ADLIB=m +CONFIG_SND_AD1816A=m +CONFIG_SND_AD1848=m +CONFIG_SND_ALS100=m +CONFIG_SND_AZT1605=m +CONFIG_SND_AZT2316=m +CONFIG_SND_AZT2320=m +CONFIG_SND_CMI8328=m +CONFIG_SND_CMI8330=m +CONFIG_SND_CS4231=m +CONFIG_SND_CS4236=m +CONFIG_SND_ES1688=m +CONFIG_SND_ES18XX=m +CONFIG_SND_SC6000=m +CONFIG_SND_GUSCLASSIC=m +CONFIG_SND_GUSEXTREME=m +CONFIG_SND_GUSMAX=m +CONFIG_SND_INTERWAVE=m +CONFIG_SND_INTERWAVE_STB=m +CONFIG_SND_JAZZ16=m +CONFIG_SND_OPL3SA2=m +CONFIG_SND_OPTI92X_AD1848=m +CONFIG_SND_OPTI92X_CS4231=m +CONFIG_SND_OPTI93X=m +CONFIG_SND_MIRO=m +CONFIG_SND_SB8=m +CONFIG_SND_SB16=m +CONFIG_SND_SBAWE=m +CONFIG_SND_SBAWE_SEQ=m +CONFIG_SND_SB16_CSP=y +CONFIG_SND_SSCAPE=m +CONFIG_SND_WAVEFRONT=m +CONFIG_SND_MSND_PINNACLE=m +CONFIG_SND_MSND_CLASSIC=m +CONFIG_SND_PCI=y +CONFIG_SND_AD1889=m +CONFIG_SND_ALS4000=m +CONFIG_SND_ASIHPI=m +CONFIG_SND_ATIIXP=m +CONFIG_SND_ATIIXP_MODEM=m +CONFIG_SND_AU8810=m +CONFIG_SND_AU8820=m +CONFIG_SND_AU8830=m +CONFIG_SND_AW2=m +CONFIG_SND_BT87X=m +# CONFIG_SND_BT87X_OVERCLOCK is not set +CONFIG_SND_CA0106=m +CONFIG_SND_CMIPCI=m +CONFIG_SND_OXYGEN_LIB=m +CONFIG_SND_OXYGEN=m +CONFIG_SND_CS4281=m +CONFIG_SND_CS46XX=m +CONFIG_SND_CS46XX_NEW_DSP=y +CONFIG_SND_CS5530=m +CONFIG_SND_CS5535AUDIO=m +CONFIG_SND_CTXFI=m +CONFIG_SND_DARLA20=m +CONFIG_SND_GINA20=m +CONFIG_SND_LAYLA20=m +CONFIG_SND_DARLA24=m +CONFIG_SND_GINA24=m +CONFIG_SND_LAYLA24=m +CONFIG_SND_MONA=m +CONFIG_SND_MIA=m +CONFIG_SND_ECHO3G=m +CONFIG_SND_INDIGO=m +CONFIG_SND_INDIGOIO=m +CONFIG_SND_INDIGODJ=m +CONFIG_SND_INDIGOIOX=m +CONFIG_SND_INDIGODJX=m +CONFIG_SND_ENS1370=m +CONFIG_SND_ENS1371=m +CONFIG_SND_FM801=m +CONFIG_SND_FM801_TEA575X_BOOL=y +CONFIG_SND_HDSP=m +CONFIG_SND_HDSPM=m +CONFIG_SND_ICE1724=m +CONFIG_SND_INTEL8X0=m +CONFIG_SND_INTEL8X0M=m +CONFIG_SND_KORG1212=m +CONFIG_SND_LOLA=m +CONFIG_SND_LX6464ES=m +CONFIG_SND_MIXART=m +CONFIG_SND_NM256=m +CONFIG_SND_PCXHR=m +CONFIG_SND_RIPTIDE=m +CONFIG_SND_RME32=m +CONFIG_SND_RME96=m +CONFIG_SND_RME9652=m +CONFIG_SND_VIA82XX=m +CONFIG_SND_VIA82XX_MODEM=m +CONFIG_SND_VIRTUOSO=m +CONFIG_SND_VX222=m +CONFIG_SND_YMFPCI=m + +# +# HD-Audio +# +CONFIG_SND_HDA=m +CONFIG_SND_HDA_GENERIC_LEDS=y +CONFIG_SND_HDA_INTEL=m +CONFIG_SND_HDA_HWDEP=y +CONFIG_SND_HDA_RECONFIG=y +CONFIG_SND_HDA_INPUT_BEEP=y +CONFIG_SND_HDA_INPUT_BEEP_MODE=0 +CONFIG_SND_HDA_PATCH_LOADER=y +CONFIG_SND_HDA_CODEC_REALTEK=m +CONFIG_SND_HDA_CODEC_ANALOG=m +CONFIG_SND_HDA_CODEC_SIGMATEL=m +CONFIG_SND_HDA_CODEC_VIA=m +CONFIG_SND_HDA_CODEC_HDMI=m +CONFIG_SND_HDA_CODEC_CIRRUS=m +CONFIG_SND_HDA_CODEC_CS8409=m +CONFIG_SND_HDA_CODEC_CONEXANT=m +CONFIG_SND_HDA_CODEC_CA0110=m +CONFIG_SND_HDA_CODEC_CA0132=m +CONFIG_SND_HDA_CODEC_CA0132_DSP=y +CONFIG_SND_HDA_CODEC_CMEDIA=m +CONFIG_SND_HDA_CODEC_SI3054=m +CONFIG_SND_HDA_GENERIC=m +CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0 +CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM=y +# end of HD-Audio + +CONFIG_SND_HDA_CORE=m +CONFIG_SND_HDA_DSP_LOADER=y +CONFIG_SND_HDA_COMPONENT=y +CONFIG_SND_HDA_I915=y +CONFIG_SND_HDA_EXT_CORE=m +CONFIG_SND_HDA_PREALLOC_SIZE=0 +CONFIG_SND_INTEL_NHLT=y +CONFIG_SND_INTEL_DSP_CONFIG=m +CONFIG_SND_INTEL_SOUNDWIRE_ACPI=m +CONFIG_SND_INTEL_BYT_PREFER_SOF=y +CONFIG_SND_SPI=y +CONFIG_SND_USB=y +CONFIG_SND_USB_AUDIO=m +CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER=y +CONFIG_SND_USB_UA101=m +CONFIG_SND_USB_USX2Y=m +CONFIG_SND_USB_CAIAQ=m +CONFIG_SND_USB_CAIAQ_INPUT=y +CONFIG_SND_USB_US122L=m +CONFIG_SND_USB_6FIRE=m +CONFIG_SND_USB_HIFACE=m +CONFIG_SND_BCD2000=m +CONFIG_SND_USB_LINE6=m +CONFIG_SND_USB_POD=m +CONFIG_SND_USB_PODHD=m +CONFIG_SND_USB_TONEPORT=m +CONFIG_SND_USB_VARIAX=m +CONFIG_SND_FIREWIRE=y +CONFIG_SND_FIREWIRE_LIB=m +CONFIG_SND_DICE=m +CONFIG_SND_OXFW=m +CONFIG_SND_ISIGHT=m +CONFIG_SND_FIREWORKS=m +CONFIG_SND_BEBOB=m +CONFIG_SND_FIREWIRE_DIGI00X=m +CONFIG_SND_FIREWIRE_TASCAM=m +CONFIG_SND_FIREWIRE_MOTU=m +CONFIG_SND_FIREFACE=m +CONFIG_SND_PCMCIA=y +CONFIG_SND_VXPOCKET=m +CONFIG_SND_PDAUDIOCF=m +CONFIG_SND_SOC=m +CONFIG_SND_SOC_AC97_BUS=y +CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=y +CONFIG_SND_SOC_COMPRESS=y +CONFIG_SND_SOC_TOPOLOGY=y +CONFIG_SND_SOC_ACPI=m +CONFIG_SND_SOC_ADI=m +CONFIG_SND_SOC_ADI_AXI_I2S=m +CONFIG_SND_SOC_ADI_AXI_SPDIF=m +CONFIG_SND_SOC_AMD_ACP=m +CONFIG_SND_SOC_AMD_CZ_DA7219MX98357_MACH=m +CONFIG_SND_SOC_AMD_CZ_RT5645_MACH=m +CONFIG_SND_SOC_AMD_ACP3x=m +CONFIG_SND_SOC_AMD_RV_RT5682_MACH=m +CONFIG_SND_SOC_AMD_RENOIR=m +CONFIG_SND_SOC_AMD_RENOIR_MACH=m +CONFIG_SND_SOC_AMD_ACP5x=m +CONFIG_SND_SOC_AMD_VANGOGH_MACH=m +CONFIG_SND_SOC_AMD_ACP6x=m +CONFIG_SND_SOC_AMD_YC_MACH=m +CONFIG_SND_SOC_AMD_ACP_COMMON=m +CONFIG_SND_SOC_AMD_ACP_I2S=m +CONFIG_SND_SOC_AMD_ACP_PCM=m +CONFIG_SND_AMD_ASOC_RENOIR=m +CONFIG_SND_SOC_AMD_MACH_COMMON=m +CONFIG_SND_SOC_AMD_LEGACY_MACH=m +CONFIG_SND_SOC_AMD_SOF_MACH=m +CONFIG_SND_ATMEL_SOC=m +CONFIG_SND_BCM63XX_I2S_WHISTLER=m +CONFIG_SND_DESIGNWARE_I2S=m +# CONFIG_SND_DESIGNWARE_PCM is not set + +# +# SoC Audio for Freescale CPUs +# + +# +# Common SoC Audio options for Freescale CPUs: +# +CONFIG_SND_SOC_FSL_ASRC=m +CONFIG_SND_SOC_FSL_SAI=m +CONFIG_SND_SOC_FSL_MQS=m +CONFIG_SND_SOC_FSL_AUDMIX=m +CONFIG_SND_SOC_FSL_SSI=m +CONFIG_SND_SOC_FSL_SPDIF=m +CONFIG_SND_SOC_FSL_ESAI=m +CONFIG_SND_SOC_FSL_MICFIL=m +CONFIG_SND_SOC_FSL_EASRC=m +CONFIG_SND_SOC_FSL_XCVR=m +CONFIG_SND_SOC_FSL_RPMSG=m +CONFIG_SND_SOC_IMX_AUDMUX=m +# end of SoC Audio for Freescale CPUs + +CONFIG_SND_I2S_HI6210_I2S=m +# CONFIG_SND_SOC_IMG is not set +CONFIG_SND_SOC_INTEL_SST_TOPLEVEL=y +CONFIG_SND_SOC_INTEL_SST=m +CONFIG_SND_SOC_INTEL_CATPT=m +CONFIG_SND_SST_ATOM_HIFI2_PLATFORM=m +CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI=m +CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_ACPI=m +CONFIG_SND_SOC_INTEL_SKYLAKE=m +CONFIG_SND_SOC_INTEL_SKL=m +CONFIG_SND_SOC_INTEL_APL=m +CONFIG_SND_SOC_INTEL_KBL=m +CONFIG_SND_SOC_INTEL_GLK=m +CONFIG_SND_SOC_INTEL_CNL=m +CONFIG_SND_SOC_INTEL_CFL=m +CONFIG_SND_SOC_INTEL_CML_H=m +CONFIG_SND_SOC_INTEL_CML_LP=m +CONFIG_SND_SOC_INTEL_SKYLAKE_FAMILY=m +CONFIG_SND_SOC_INTEL_SKYLAKE_SSP_CLK=m +CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC=y +CONFIG_SND_SOC_INTEL_SKYLAKE_COMMON=m +CONFIG_SND_SOC_ACPI_INTEL_MATCH=m +CONFIG_SND_SOC_INTEL_MACH=y +# CONFIG_SND_SOC_INTEL_USER_FRIENDLY_LONG_NAMES is not set +CONFIG_SND_SOC_INTEL_HDA_DSP_COMMON=m +CONFIG_SND_SOC_INTEL_SOF_MAXIM_COMMON=m +CONFIG_SND_SOC_INTEL_HASWELL_MACH=m +CONFIG_SND_SOC_INTEL_BDW_RT5650_MACH=m +CONFIG_SND_SOC_INTEL_BDW_RT5677_MACH=m +CONFIG_SND_SOC_INTEL_BROADWELL_MACH=m +CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH=m +CONFIG_SND_SOC_INTEL_BYTCR_RT5651_MACH=m +CONFIG_SND_SOC_INTEL_BYTCR_WM5102_MACH=m +CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH=m +CONFIG_SND_SOC_INTEL_CHT_BSW_RT5645_MACH=m +CONFIG_SND_SOC_INTEL_CHT_BSW_MAX98090_TI_MACH=m +CONFIG_SND_SOC_INTEL_CHT_BSW_NAU8824_MACH=m +CONFIG_SND_SOC_INTEL_BYT_CHT_CX2072X_MACH=m +CONFIG_SND_SOC_INTEL_BYT_CHT_DA7213_MACH=m +CONFIG_SND_SOC_INTEL_BYT_CHT_ES8316_MACH=m +CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH=m +CONFIG_SND_SOC_INTEL_SKL_RT286_MACH=m +CONFIG_SND_SOC_INTEL_SKL_NAU88L25_SSM4567_MACH=m +CONFIG_SND_SOC_INTEL_SKL_NAU88L25_MAX98357A_MACH=m +CONFIG_SND_SOC_INTEL_DA7219_MAX98357A_GENERIC=m +CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_COMMON=m +CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_MACH=m +CONFIG_SND_SOC_INTEL_BXT_RT298_MACH=m +CONFIG_SND_SOC_INTEL_SOF_WM8804_MACH=m +CONFIG_SND_SOC_INTEL_KBL_RT5663_MAX98927_MACH=m +CONFIG_SND_SOC_INTEL_KBL_RT5663_RT5514_MAX98927_MACH=m +CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98357A_MACH=m +CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98927_MACH=m +CONFIG_SND_SOC_INTEL_KBL_RT5660_MACH=m +CONFIG_SND_SOC_INTEL_GLK_DA7219_MAX98357A_MACH=m +CONFIG_SND_SOC_INTEL_GLK_RT5682_MAX98357A_MACH=m +CONFIG_SND_SOC_INTEL_SKL_HDA_DSP_GENERIC_MACH=m +CONFIG_SND_SOC_INTEL_SOF_RT5682_MACH=m +CONFIG_SND_SOC_INTEL_SOF_CS42L42_MACH=m +CONFIG_SND_SOC_INTEL_SOF_PCM512x_MACH=m +CONFIG_SND_SOC_INTEL_SOF_ES8336_MACH=m +CONFIG_SND_SOC_INTEL_CML_LP_DA7219_MAX98357A_MACH=m +CONFIG_SND_SOC_INTEL_SOF_CML_RT1011_RT5682_MACH=m +CONFIG_SND_SOC_INTEL_SOF_DA7219_MAX98373_MACH=m +CONFIG_SND_SOC_INTEL_EHL_RT5660_MACH=m +CONFIG_SND_SOC_MTK_BTCVSD=m +CONFIG_SND_SOC_SOF_TOPLEVEL=y +CONFIG_SND_SOC_SOF_PCI_DEV=m +CONFIG_SND_SOC_SOF_PCI=m +CONFIG_SND_SOC_SOF_ACPI=m +CONFIG_SND_SOC_SOF_ACPI_DEV=m +# CONFIG_SND_SOC_SOF_DEBUG_PROBES is not set +# CONFIG_SND_SOC_SOF_DEVELOPER_SUPPORT is not set +CONFIG_SND_SOC_SOF=m +CONFIG_SND_SOC_SOF_PROBE_WORK_QUEUE=y +CONFIG_SND_SOC_SOF_INTEL_TOPLEVEL=y +CONFIG_SND_SOC_SOF_INTEL_HIFI_EP_IPC=m +CONFIG_SND_SOC_SOF_INTEL_ATOM_HIFI_EP=m +CONFIG_SND_SOC_SOF_INTEL_COMMON=m +CONFIG_SND_SOC_SOF_BAYTRAIL=m +CONFIG_SND_SOC_SOF_BROADWELL=m +CONFIG_SND_SOC_SOF_MERRIFIELD=m +CONFIG_SND_SOC_SOF_INTEL_APL=m +CONFIG_SND_SOC_SOF_APOLLOLAKE=m +CONFIG_SND_SOC_SOF_GEMINILAKE=m +CONFIG_SND_SOC_SOF_INTEL_CNL=m +CONFIG_SND_SOC_SOF_CANNONLAKE=m +CONFIG_SND_SOC_SOF_COFFEELAKE=m +CONFIG_SND_SOC_SOF_COMETLAKE=m +CONFIG_SND_SOC_SOF_INTEL_ICL=m +CONFIG_SND_SOC_SOF_ICELAKE=m +CONFIG_SND_SOC_SOF_JASPERLAKE=m +CONFIG_SND_SOC_SOF_INTEL_TGL=m +CONFIG_SND_SOC_SOF_TIGERLAKE=m +CONFIG_SND_SOC_SOF_ELKHARTLAKE=m +CONFIG_SND_SOC_SOF_ALDERLAKE=m +CONFIG_SND_SOC_SOF_HDA_COMMON=m +CONFIG_SND_SOC_SOF_HDA_LINK=y +CONFIG_SND_SOC_SOF_HDA_AUDIO_CODEC=y +CONFIG_SND_SOC_SOF_HDA_LINK_BASELINE=m +CONFIG_SND_SOC_SOF_HDA=m +CONFIG_SND_SOC_SOF_INTEL_SOUNDWIRE_LINK_BASELINE=m +CONFIG_SND_SOC_SOF_XTENSA=m + +# +# STMicroelectronics STM32 SOC audio support +# +# end of STMicroelectronics STM32 SOC audio support + +CONFIG_SND_SOC_XILINX_I2S=m +# CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER is not set +# CONFIG_SND_SOC_XILINX_SPDIF is not set +CONFIG_SND_SOC_XTFPGA_I2S=m +CONFIG_SND_SOC_I2C_AND_SPI=m + +# +# CODEC drivers +# +CONFIG_SND_SOC_ARIZONA=m +CONFIG_SND_SOC_WM_ADSP=m +CONFIG_SND_SOC_AC97_CODEC=m +CONFIG_SND_SOC_ADAU_UTILS=m +CONFIG_SND_SOC_ADAU1372=m +CONFIG_SND_SOC_ADAU1372_I2C=m +CONFIG_SND_SOC_ADAU1372_SPI=m +CONFIG_SND_SOC_ADAU1701=m +CONFIG_SND_SOC_ADAU17X1=m +CONFIG_SND_SOC_ADAU1761=m +CONFIG_SND_SOC_ADAU1761_I2C=m +CONFIG_SND_SOC_ADAU1761_SPI=m +CONFIG_SND_SOC_ADAU7002=m +CONFIG_SND_SOC_ADAU7118=m +CONFIG_SND_SOC_ADAU7118_HW=m +CONFIG_SND_SOC_ADAU7118_I2C=m +CONFIG_SND_SOC_AK4104=m +CONFIG_SND_SOC_AK4118=m +CONFIG_SND_SOC_AK4458=m +CONFIG_SND_SOC_AK4554=m +CONFIG_SND_SOC_AK4613=m +CONFIG_SND_SOC_AK4642=m +CONFIG_SND_SOC_AK5386=m +CONFIG_SND_SOC_AK5558=m +CONFIG_SND_SOC_ALC5623=m +CONFIG_SND_SOC_BD28623=m +CONFIG_SND_SOC_BT_SCO=m +CONFIG_SND_SOC_CROS_EC_CODEC=m +CONFIG_SND_SOC_CS35L32=m +CONFIG_SND_SOC_CS35L33=m +CONFIG_SND_SOC_CS35L34=m +CONFIG_SND_SOC_CS35L35=m +CONFIG_SND_SOC_CS35L36=m +CONFIG_SND_SOC_CS35L41_SPI=m +CONFIG_SND_SOC_CS35L41_I2C=m +CONFIG_SND_SOC_CS42L42=m +CONFIG_SND_SOC_CS42L51=m +CONFIG_SND_SOC_CS42L51_I2C=m +CONFIG_SND_SOC_CS42L52=m +CONFIG_SND_SOC_CS42L56=m +CONFIG_SND_SOC_CS42L73=m +CONFIG_SND_SOC_CS4234=m +CONFIG_SND_SOC_CS4265=m +CONFIG_SND_SOC_CS4270=m +CONFIG_SND_SOC_CS4271=m +CONFIG_SND_SOC_CS4271_I2C=m +CONFIG_SND_SOC_CS4271_SPI=m +CONFIG_SND_SOC_CS42XX8=m +CONFIG_SND_SOC_CS42XX8_I2C=m +CONFIG_SND_SOC_CS43130=m +CONFIG_SND_SOC_CS4341=m +CONFIG_SND_SOC_CS4349=m +CONFIG_SND_SOC_CS53L30=m +CONFIG_SND_SOC_CX2072X=m +CONFIG_SND_SOC_DA7213=m +CONFIG_SND_SOC_DA7219=m +CONFIG_SND_SOC_DMIC=m +CONFIG_SND_SOC_HDMI_CODEC=m +CONFIG_SND_SOC_ES7134=m +CONFIG_SND_SOC_ES7241=m +CONFIG_SND_SOC_ES8316=m +CONFIG_SND_SOC_ES8328=m +CONFIG_SND_SOC_ES8328_I2C=m +CONFIG_SND_SOC_ES8328_SPI=m +CONFIG_SND_SOC_GTM601=m +CONFIG_SND_SOC_HDAC_HDMI=m +CONFIG_SND_SOC_HDAC_HDA=m +CONFIG_SND_SOC_ICS43432=m +CONFIG_SND_SOC_INNO_RK3036=m +CONFIG_SND_SOC_MAX98088=m +CONFIG_SND_SOC_MAX98090=m +CONFIG_SND_SOC_MAX98357A=m +CONFIG_SND_SOC_MAX98504=m +CONFIG_SND_SOC_MAX9867=m +CONFIG_SND_SOC_MAX98927=m +CONFIG_SND_SOC_MAX98520=m +CONFIG_SND_SOC_MAX98373=m +CONFIG_SND_SOC_MAX98373_I2C=m +CONFIG_SND_SOC_MAX98390=m +CONFIG_SND_SOC_MAX9860=m +CONFIG_SND_SOC_MSM8916_WCD_ANALOG=m +CONFIG_SND_SOC_MSM8916_WCD_DIGITAL=m +CONFIG_SND_SOC_PCM1681=m +CONFIG_SND_SOC_PCM1789=m +CONFIG_SND_SOC_PCM1789_I2C=m +CONFIG_SND_SOC_PCM179X=m +CONFIG_SND_SOC_PCM179X_I2C=m +CONFIG_SND_SOC_PCM179X_SPI=m +CONFIG_SND_SOC_PCM186X=m +CONFIG_SND_SOC_PCM186X_I2C=m +CONFIG_SND_SOC_PCM186X_SPI=m +CONFIG_SND_SOC_PCM3060=m +CONFIG_SND_SOC_PCM3060_I2C=m +CONFIG_SND_SOC_PCM3060_SPI=m +CONFIG_SND_SOC_PCM3168A=m +CONFIG_SND_SOC_PCM3168A_I2C=m +CONFIG_SND_SOC_PCM3168A_SPI=m +CONFIG_SND_SOC_PCM5102A=m +CONFIG_SND_SOC_PCM512x=m +CONFIG_SND_SOC_PCM512x_I2C=m +CONFIG_SND_SOC_PCM512x_SPI=m +# CONFIG_SND_SOC_RK3328 is not set +CONFIG_SND_SOC_RL6231=m +CONFIG_SND_SOC_RL6347A=m +CONFIG_SND_SOC_RT286=m +CONFIG_SND_SOC_RT298=m +CONFIG_SND_SOC_RT1011=m +CONFIG_SND_SOC_RT1015=m +CONFIG_SND_SOC_RT1015P=m +CONFIG_SND_SOC_RT1019=m +CONFIG_SND_SOC_RT5514=m +CONFIG_SND_SOC_RT5514_SPI=m +CONFIG_SND_SOC_RT5616=m +CONFIG_SND_SOC_RT5631=m +CONFIG_SND_SOC_RT5640=m +CONFIG_SND_SOC_RT5645=m +CONFIG_SND_SOC_RT5651=m +CONFIG_SND_SOC_RT5659=m +CONFIG_SND_SOC_RT5660=m +CONFIG_SND_SOC_RT5663=m +CONFIG_SND_SOC_RT5670=m +CONFIG_SND_SOC_RT5677=m +CONFIG_SND_SOC_RT5677_SPI=m +CONFIG_SND_SOC_RT5682=m +CONFIG_SND_SOC_RT5682_I2C=m +CONFIG_SND_SOC_RT5682S=m +CONFIG_SND_SOC_RT9120=m +CONFIG_SND_SOC_SGTL5000=m +CONFIG_SND_SOC_SI476X=m +CONFIG_SND_SOC_SIGMADSP=m +CONFIG_SND_SOC_SIGMADSP_I2C=m +CONFIG_SND_SOC_SIGMADSP_REGMAP=m +CONFIG_SND_SOC_SIMPLE_AMPLIFIER=m +CONFIG_SND_SOC_SIMPLE_MUX=m +CONFIG_SND_SOC_SPDIF=m +CONFIG_SND_SOC_SSM2305=m +CONFIG_SND_SOC_SSM2518=m +CONFIG_SND_SOC_SSM2602=m +CONFIG_SND_SOC_SSM2602_SPI=m +CONFIG_SND_SOC_SSM2602_I2C=m +CONFIG_SND_SOC_SSM4567=m +CONFIG_SND_SOC_STA32X=m +CONFIG_SND_SOC_STA350=m +CONFIG_SND_SOC_STI_SAS=m +CONFIG_SND_SOC_TAS2552=m +CONFIG_SND_SOC_TAS2562=m +CONFIG_SND_SOC_TAS2764=m +CONFIG_SND_SOC_TAS2770=m +CONFIG_SND_SOC_TAS5086=m +CONFIG_SND_SOC_TAS571X=m +CONFIG_SND_SOC_TAS5720=m +CONFIG_SND_SOC_TAS6424=m +CONFIG_SND_SOC_TDA7419=m +CONFIG_SND_SOC_TFA9879=m +CONFIG_SND_SOC_TFA989X=m +CONFIG_SND_SOC_TLV320AIC23=m +CONFIG_SND_SOC_TLV320AIC23_I2C=m +CONFIG_SND_SOC_TLV320AIC23_SPI=m +CONFIG_SND_SOC_TLV320AIC31XX=m +CONFIG_SND_SOC_TLV320AIC32X4=m +CONFIG_SND_SOC_TLV320AIC32X4_I2C=m +CONFIG_SND_SOC_TLV320AIC32X4_SPI=m +CONFIG_SND_SOC_TLV320AIC3X=m +CONFIG_SND_SOC_TLV320AIC3X_I2C=m +CONFIG_SND_SOC_TLV320AIC3X_SPI=m +CONFIG_SND_SOC_TLV320ADCX140=m +CONFIG_SND_SOC_TS3A227E=m +CONFIG_SND_SOC_TSCS42XX=m +CONFIG_SND_SOC_TSCS454=m +CONFIG_SND_SOC_UDA1334=m +CONFIG_SND_SOC_WM5102=m +CONFIG_SND_SOC_WM8510=m +CONFIG_SND_SOC_WM8523=m +CONFIG_SND_SOC_WM8524=m +CONFIG_SND_SOC_WM8580=m +CONFIG_SND_SOC_WM8711=m +CONFIG_SND_SOC_WM8728=m +CONFIG_SND_SOC_WM8731=m +CONFIG_SND_SOC_WM8737=m +CONFIG_SND_SOC_WM8741=m +CONFIG_SND_SOC_WM8750=m +CONFIG_SND_SOC_WM8753=m +CONFIG_SND_SOC_WM8770=m +CONFIG_SND_SOC_WM8776=m +CONFIG_SND_SOC_WM8782=m +CONFIG_SND_SOC_WM8804=m +CONFIG_SND_SOC_WM8804_I2C=m +CONFIG_SND_SOC_WM8804_SPI=m +CONFIG_SND_SOC_WM8903=m +CONFIG_SND_SOC_WM8904=m +CONFIG_SND_SOC_WM8960=m +CONFIG_SND_SOC_WM8962=m +CONFIG_SND_SOC_WM8974=m +CONFIG_SND_SOC_WM8978=m +CONFIG_SND_SOC_WM8985=m +CONFIG_SND_SOC_ZL38060=m +CONFIG_SND_SOC_MAX9759=m +CONFIG_SND_SOC_MT6351=m +CONFIG_SND_SOC_MT6358=m +CONFIG_SND_SOC_MT6660=m +CONFIG_SND_SOC_NAU8315=m +CONFIG_SND_SOC_NAU8540=m +CONFIG_SND_SOC_NAU8810=m +CONFIG_SND_SOC_NAU8821=m +CONFIG_SND_SOC_NAU8822=m +CONFIG_SND_SOC_NAU8824=m +CONFIG_SND_SOC_NAU8825=m +CONFIG_SND_SOC_TPA6130A2=m +CONFIG_SND_SOC_LPASS_WSA_MACRO=m +CONFIG_SND_SOC_LPASS_VA_MACRO=m +CONFIG_SND_SOC_LPASS_RX_MACRO=m +CONFIG_SND_SOC_LPASS_TX_MACRO=m +# end of CODEC drivers + +CONFIG_SND_SIMPLE_CARD_UTILS=m +CONFIG_SND_SIMPLE_CARD=m +CONFIG_SND_X86=y +CONFIG_HDMI_LPE_AUDIO=m +CONFIG_SND_SYNTH_EMUX=m +CONFIG_SND_XEN_FRONTEND=m +CONFIG_SND_VIRTIO=m +CONFIG_AC97_BUS=m + +# +# HID support +# +CONFIG_HID=m +CONFIG_HID_BATTERY_STRENGTH=y +CONFIG_HIDRAW=y +CONFIG_UHID=m +CONFIG_HID_GENERIC=m + +# +# Special HID drivers +# +CONFIG_HID_A4TECH=m +CONFIG_HID_ACCUTOUCH=m +CONFIG_HID_ACRUX=m +CONFIG_HID_ACRUX_FF=y +CONFIG_HID_APPLE=m +CONFIG_HID_APPLEIR=m +CONFIG_HID_ASUS=m +CONFIG_HID_AUREAL=m +CONFIG_HID_BELKIN=m +CONFIG_HID_BETOP_FF=m +CONFIG_HID_BIGBEN_FF=m +CONFIG_HID_CHERRY=m +CONFIG_HID_CHICONY=m +CONFIG_HID_CORSAIR=m +CONFIG_HID_COUGAR=m +CONFIG_HID_MACALLY=m +CONFIG_HID_PRODIKEYS=m +CONFIG_HID_CMEDIA=m +CONFIG_HID_CP2112=m +CONFIG_HID_CREATIVE_SB0540=m +CONFIG_HID_CYPRESS=m +CONFIG_HID_DRAGONRISE=m +CONFIG_DRAGONRISE_FF=y +CONFIG_HID_EMS_FF=m +CONFIG_HID_ELAN=m +CONFIG_HID_ELECOM=m +CONFIG_HID_ELO=m +CONFIG_HID_EZKEY=m +CONFIG_HID_FT260=m +CONFIG_HID_GEMBIRD=m +CONFIG_HID_GFRM=m +CONFIG_HID_GLORIOUS=m +CONFIG_HID_HOLTEK=m +CONFIG_HOLTEK_FF=y +CONFIG_HID_GOOGLE_HAMMER=m +CONFIG_HID_VIVALDI=m +CONFIG_HID_GT683R=m +CONFIG_HID_KEYTOUCH=m +CONFIG_HID_KYE=m +CONFIG_HID_UCLOGIC=m +CONFIG_HID_WALTOP=m +CONFIG_HID_VIEWSONIC=m +CONFIG_HID_XIAOMI=m +CONFIG_HID_GYRATION=m +CONFIG_HID_ICADE=m +CONFIG_HID_ITE=m +CONFIG_HID_JABRA=m +CONFIG_HID_TWINHAN=m +CONFIG_HID_KENSINGTON=m +CONFIG_HID_LCPOWER=m +CONFIG_HID_LED=m +CONFIG_HID_LENOVO=m +CONFIG_HID_LOGITECH=m +CONFIG_HID_LOGITECH_DJ=m +CONFIG_HID_LOGITECH_HIDPP=m +CONFIG_LOGITECH_FF=y +CONFIG_LOGIRUMBLEPAD2_FF=y +CONFIG_LOGIG940_FF=y +CONFIG_LOGIWHEELS_FF=y +CONFIG_HID_MAGICMOUSE=m +CONFIG_HID_MALTRON=m +CONFIG_HID_MAYFLASH=m +CONFIG_HID_REDRAGON=m +CONFIG_HID_MICROSOFT=m +CONFIG_HID_MONTEREY=m +CONFIG_HID_MULTITOUCH=m +CONFIG_HID_NINTENDO=m +CONFIG_NINTENDO_FF=y +CONFIG_HID_NTI=m +CONFIG_HID_NTRIG=m +CONFIG_HID_ORTEK=m +CONFIG_HID_PANTHERLORD=m +CONFIG_PANTHERLORD_FF=y +CONFIG_HID_PENMOUNT=m +CONFIG_HID_PETALYNX=m +CONFIG_HID_PICOLCD=m +CONFIG_HID_PICOLCD_FB=y +CONFIG_HID_PICOLCD_BACKLIGHT=y +CONFIG_HID_PICOLCD_LCD=y +CONFIG_HID_PICOLCD_LEDS=y +CONFIG_HID_PICOLCD_CIR=y +CONFIG_HID_PLANTRONICS=m +CONFIG_HID_PLAYSTATION=m +CONFIG_PLAYSTATION_FF=y +CONFIG_HID_PRIMAX=m +CONFIG_HID_RETRODE=m +CONFIG_HID_ROCCAT=m +CONFIG_HID_SAITEK=m +CONFIG_HID_SAMSUNG=m +CONFIG_HID_SEMITEK=m +CONFIG_HID_SONY=m +CONFIG_SONY_FF=y +CONFIG_HID_SPEEDLINK=m +CONFIG_HID_STEAM=m +CONFIG_HID_STEELSERIES=m +CONFIG_HID_SUNPLUS=m +CONFIG_HID_RMI=m +CONFIG_HID_GREENASIA=m +CONFIG_GREENASIA_FF=y +CONFIG_HID_HYPERV_MOUSE=m +CONFIG_HID_SMARTJOYPLUS=m +CONFIG_SMARTJOYPLUS_FF=y +CONFIG_HID_TIVO=m +CONFIG_HID_TOPSEED=m +CONFIG_HID_THINGM=m +CONFIG_HID_THRUSTMASTER=m +CONFIG_THRUSTMASTER_FF=y +CONFIG_HID_UDRAW_PS3=m +CONFIG_HID_U2FZERO=m +CONFIG_HID_WACOM=m +CONFIG_HID_WIIMOTE=m +CONFIG_HID_XINMO=m +CONFIG_HID_ZEROPLUS=m +CONFIG_ZEROPLUS_FF=y +CONFIG_HID_ZYDACRON=m +CONFIG_HID_SENSOR_HUB=m +CONFIG_HID_SENSOR_CUSTOM_SENSOR=m +CONFIG_HID_ALPS=m +CONFIG_HID_MCP2221=m +# end of Special HID drivers + +# +# USB HID support +# +CONFIG_USB_HID=m +CONFIG_HID_PID=y +CONFIG_USB_HIDDEV=y + +# +# USB HID Boot Protocol drivers +# +CONFIG_USB_KBD=m +CONFIG_USB_MOUSE=m +# end of USB HID Boot Protocol drivers +# end of USB HID support + +# +# I2C HID support +# +CONFIG_I2C_HID_ACPI=m +# end of I2C HID support + +CONFIG_I2C_HID_CORE=m +# end of HID support + +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +CONFIG_USB_LED_TRIG=y +CONFIG_USB_ULPI_BUS=m +CONFIG_USB_CONN_GPIO=m +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=y +CONFIG_USB_PCI=y +CONFIG_USB_ANNOUNCE_NEW_DEVICES=y + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_FEW_INIT_RETRIES is not set +CONFIG_USB_DYNAMIC_MINORS=y +# CONFIG_USB_OTG is not set +# CONFIG_USB_OTG_PRODUCTLIST is not set +# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set +CONFIG_USB_LEDS_TRIGGER_USBPORT=m +CONFIG_USB_AUTOSUSPEND_DELAY=2 +CONFIG_USB_MON=m + +# +# USB Host Controller Drivers +# +CONFIG_USB_C67X00_HCD=m +CONFIG_USB_XHCI_HCD=y +# CONFIG_USB_XHCI_DBGCAP is not set +CONFIG_USB_XHCI_PCI=y +# CONFIG_USB_XHCI_PCI_RENESAS is not set +CONFIG_USB_XHCI_PLATFORM=m +CONFIG_USB_EHCI_HCD=y +CONFIG_USB_EHCI_ROOT_HUB_TT=y +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHCI_PCI=y +# CONFIG_USB_EHCI_FSL is not set +CONFIG_USB_EHCI_HCD_PLATFORM=y +CONFIG_USB_OXU210HP_HCD=m +CONFIG_USB_ISP116X_HCD=m +CONFIG_USB_FOTG210_HCD=m +CONFIG_USB_MAX3421_HCD=m +CONFIG_USB_OHCI_HCD=y +CONFIG_USB_OHCI_HCD_PCI=y +CONFIG_USB_OHCI_HCD_PLATFORM=y +CONFIG_USB_UHCI_HCD=y +CONFIG_USB_U132_HCD=m +CONFIG_USB_SL811_HCD=m +CONFIG_USB_SL811_HCD_ISO=y +CONFIG_USB_SL811_CS=m +CONFIG_USB_R8A66597_HCD=m +CONFIG_USB_HCD_BCMA=m +CONFIG_USB_HCD_SSB=m +# CONFIG_USB_HCD_TEST_MODE is not set + +# +# USB Device Class drivers +# +CONFIG_USB_ACM=m +CONFIG_USB_PRINTER=m +CONFIG_USB_WDM=m +CONFIG_USB_TMC=m + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# +CONFIG_USB_STORAGE=m +# CONFIG_USB_STORAGE_DEBUG is not set +CONFIG_USB_STORAGE_REALTEK=m +CONFIG_REALTEK_AUTOPM=y +CONFIG_USB_STORAGE_DATAFAB=m +CONFIG_USB_STORAGE_FREECOM=m +CONFIG_USB_STORAGE_ISD200=m +CONFIG_USB_STORAGE_USBAT=m +CONFIG_USB_STORAGE_SDDR09=m +CONFIG_USB_STORAGE_SDDR55=m +CONFIG_USB_STORAGE_JUMPSHOT=m +CONFIG_USB_STORAGE_ALAUDA=m +CONFIG_USB_STORAGE_ONETOUCH=m +CONFIG_USB_STORAGE_KARMA=m +CONFIG_USB_STORAGE_CYPRESS_ATACB=m +CONFIG_USB_STORAGE_ENE_UB6250=m +CONFIG_USB_UAS=m + +# +# USB Imaging devices +# +CONFIG_USB_MDC800=m +CONFIG_USB_MICROTEK=m +CONFIG_USBIP_CORE=m +CONFIG_USBIP_VHCI_HCD=m +CONFIG_USBIP_VHCI_HC_PORTS=8 +CONFIG_USBIP_VHCI_NR_HCS=1 +CONFIG_USBIP_HOST=m +CONFIG_USBIP_VUDC=m +# CONFIG_USBIP_DEBUG is not set +CONFIG_USB_CDNS_SUPPORT=m +CONFIG_USB_CDNS_HOST=y +CONFIG_USB_CDNS3=m +# CONFIG_USB_CDNS3_GADGET is not set +# CONFIG_USB_CDNS3_HOST is not set +CONFIG_USB_CDNS3_PCI_WRAP=m +CONFIG_USB_CDNSP_PCI=m +CONFIG_USB_CDNSP_GADGET=y +CONFIG_USB_CDNSP_HOST=y +CONFIG_USB_MUSB_HDRC=m +# CONFIG_USB_MUSB_HOST is not set +# CONFIG_USB_MUSB_GADGET is not set +CONFIG_USB_MUSB_DUAL_ROLE=y + +# +# Platform Glue Layer +# + +# +# MUSB DMA mode +# +CONFIG_MUSB_PIO_ONLY=y +CONFIG_USB_DWC3=m +CONFIG_USB_DWC3_ULPI=y +# CONFIG_USB_DWC3_HOST is not set +# CONFIG_USB_DWC3_GADGET is not set +CONFIG_USB_DWC3_DUAL_ROLE=y + +# +# Platform Glue Driver Support +# +CONFIG_USB_DWC3_PCI=m +CONFIG_USB_DWC3_HAPS=m +CONFIG_USB_DWC2=y +CONFIG_USB_DWC2_HOST=y + +# +# Gadget/Dual-role mode requires USB Gadget support to be enabled +# +CONFIG_USB_DWC2_PCI=m +# CONFIG_USB_DWC2_DEBUG is not set +# CONFIG_USB_DWC2_TRACK_MISSED_SOFS is not set +CONFIG_USB_CHIPIDEA=m +CONFIG_USB_CHIPIDEA_UDC=y +CONFIG_USB_CHIPIDEA_HOST=y +CONFIG_USB_CHIPIDEA_PCI=m +CONFIG_USB_CHIPIDEA_MSM=m +CONFIG_USB_CHIPIDEA_GENERIC=m +CONFIG_USB_ISP1760=m +CONFIG_USB_ISP1760_HCD=y +CONFIG_USB_ISP1761_UDC=y +# CONFIG_USB_ISP1760_HOST_ROLE is not set +# CONFIG_USB_ISP1760_GADGET_ROLE is not set +CONFIG_USB_ISP1760_DUAL_ROLE=y + +# +# USB port drivers +# +CONFIG_USB_USS720=m +CONFIG_USB_SERIAL=m +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_SIMPLE=m +CONFIG_USB_SERIAL_AIRCABLE=m +CONFIG_USB_SERIAL_ARK3116=m +CONFIG_USB_SERIAL_BELKIN=m +CONFIG_USB_SERIAL_CH341=m +CONFIG_USB_SERIAL_WHITEHEAT=m +CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m +CONFIG_USB_SERIAL_CP210X=m +CONFIG_USB_SERIAL_CYPRESS_M8=m +CONFIG_USB_SERIAL_EMPEG=m +CONFIG_USB_SERIAL_FTDI_SIO=m +CONFIG_USB_SERIAL_VISOR=m +CONFIG_USB_SERIAL_IPAQ=m +CONFIG_USB_SERIAL_IR=m +CONFIG_USB_SERIAL_EDGEPORT=m +CONFIG_USB_SERIAL_EDGEPORT_TI=m +CONFIG_USB_SERIAL_F81232=m +CONFIG_USB_SERIAL_F8153X=m +CONFIG_USB_SERIAL_GARMIN=m +CONFIG_USB_SERIAL_IPW=m +CONFIG_USB_SERIAL_IUU=m +CONFIG_USB_SERIAL_KEYSPAN_PDA=m +CONFIG_USB_SERIAL_KEYSPAN=m +CONFIG_USB_SERIAL_KLSI=m +CONFIG_USB_SERIAL_KOBIL_SCT=m +CONFIG_USB_SERIAL_MCT_U232=m +CONFIG_USB_SERIAL_METRO=m +CONFIG_USB_SERIAL_MOS7720=m +CONFIG_USB_SERIAL_MOS7715_PARPORT=y +CONFIG_USB_SERIAL_MOS7840=m +CONFIG_USB_SERIAL_MXUPORT=m +CONFIG_USB_SERIAL_NAVMAN=m +CONFIG_USB_SERIAL_PL2303=m +CONFIG_USB_SERIAL_OTI6858=m +CONFIG_USB_SERIAL_QCAUX=m +CONFIG_USB_SERIAL_QUALCOMM=m +CONFIG_USB_SERIAL_SPCP8X5=m +CONFIG_USB_SERIAL_SAFE=m +# CONFIG_USB_SERIAL_SAFE_PADDED is not set +CONFIG_USB_SERIAL_SIERRAWIRELESS=m +CONFIG_USB_SERIAL_SYMBOL=m +CONFIG_USB_SERIAL_TI=m +CONFIG_USB_SERIAL_CYBERJACK=m +CONFIG_USB_SERIAL_WWAN=m +CONFIG_USB_SERIAL_OPTION=m +CONFIG_USB_SERIAL_OMNINET=m +CONFIG_USB_SERIAL_OPTICON=m +CONFIG_USB_SERIAL_XSENS_MT=m +CONFIG_USB_SERIAL_WISHBONE=m +CONFIG_USB_SERIAL_SSU100=m +CONFIG_USB_SERIAL_QT2=m +CONFIG_USB_SERIAL_UPD78F0730=m +CONFIG_USB_SERIAL_XR=m +CONFIG_USB_SERIAL_DEBUG=m + +# +# USB Miscellaneous drivers +# +CONFIG_USB_EMI62=m +CONFIG_USB_EMI26=m +CONFIG_USB_ADUTUX=m +CONFIG_USB_SEVSEG=m +CONFIG_USB_LEGOTOWER=m +CONFIG_USB_LCD=m +CONFIG_USB_CYPRESS_CY7C63=m +CONFIG_USB_CYTHERM=m +CONFIG_USB_IDMOUSE=m +CONFIG_USB_FTDI_ELAN=m +CONFIG_USB_APPLEDISPLAY=m +CONFIG_APPLE_MFI_FASTCHARGE=m +CONFIG_USB_SISUSBVGA=m +CONFIG_USB_LD=m +CONFIG_USB_TRANCEVIBRATOR=m +CONFIG_USB_IOWARRIOR=m +CONFIG_USB_TEST=m +CONFIG_USB_EHSET_TEST_FIXTURE=m +CONFIG_USB_ISIGHTFW=m +CONFIG_USB_YUREX=m +CONFIG_USB_EZUSB_FX2=m +CONFIG_USB_HUB_USB251XB=m +CONFIG_USB_HSIC_USB3503=m +CONFIG_USB_HSIC_USB4604=m +CONFIG_USB_LINK_LAYER_TEST=m +CONFIG_USB_CHAOSKEY=m +CONFIG_USB_ATM=m +CONFIG_USB_SPEEDTOUCH=m +CONFIG_USB_CXACRU=m +CONFIG_USB_UEAGLEATM=m +CONFIG_USB_XUSBATM=m + +# +# USB Physical Layer drivers +# +CONFIG_USB_PHY=y +CONFIG_NOP_USB_XCEIV=m +CONFIG_USB_GPIO_VBUS=m +CONFIG_TAHVO_USB=m +CONFIG_TAHVO_USB_HOST_BY_DEFAULT=y +CONFIG_USB_ISP1301=m +# end of USB Physical Layer drivers + +CONFIG_USB_GADGET=m +# CONFIG_USB_GADGET_DEBUG is not set +# CONFIG_USB_GADGET_DEBUG_FILES is not set +# CONFIG_USB_GADGET_DEBUG_FS is not set +CONFIG_USB_GADGET_VBUS_DRAW=2 +CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 +# CONFIG_U_SERIAL_CONSOLE is not set + +# +# USB Peripheral Controller +# +CONFIG_USB_FOTG210_UDC=m +CONFIG_USB_GR_UDC=m +CONFIG_USB_R8A66597=m +CONFIG_USB_PXA27X=m +CONFIG_USB_MV_UDC=m +CONFIG_USB_MV_U3D=m +CONFIG_USB_SNP_CORE=m +# CONFIG_USB_M66592 is not set +CONFIG_USB_BDC_UDC=m +CONFIG_USB_AMD5536UDC=m +CONFIG_USB_NET2272=m +CONFIG_USB_NET2272_DMA=y +CONFIG_USB_NET2280=m +CONFIG_USB_GOKU=m +CONFIG_USB_EG20T=m +CONFIG_USB_MAX3420_UDC=m +# CONFIG_USB_DUMMY_HCD is not set +# end of USB Peripheral Controller + +CONFIG_USB_LIBCOMPOSITE=m +CONFIG_USB_F_ACM=m +CONFIG_USB_F_SS_LB=m +CONFIG_USB_U_SERIAL=m +CONFIG_USB_U_ETHER=m +CONFIG_USB_U_AUDIO=m +CONFIG_USB_F_SERIAL=m +CONFIG_USB_F_OBEX=m +CONFIG_USB_F_NCM=m +CONFIG_USB_F_ECM=m +CONFIG_USB_F_PHONET=m +CONFIG_USB_F_EEM=m +CONFIG_USB_F_SUBSET=m +CONFIG_USB_F_RNDIS=m +CONFIG_USB_F_MASS_STORAGE=m +CONFIG_USB_F_FS=m +CONFIG_USB_F_UAC1=m +CONFIG_USB_F_UAC2=m +CONFIG_USB_F_UVC=m +CONFIG_USB_F_MIDI=m +CONFIG_USB_F_HID=m +CONFIG_USB_F_PRINTER=m +CONFIG_USB_F_TCM=m +CONFIG_USB_CONFIGFS=m +CONFIG_USB_CONFIGFS_SERIAL=y +CONFIG_USB_CONFIGFS_ACM=y +CONFIG_USB_CONFIGFS_OBEX=y +CONFIG_USB_CONFIGFS_NCM=y +CONFIG_USB_CONFIGFS_ECM=y +CONFIG_USB_CONFIGFS_ECM_SUBSET=y +CONFIG_USB_CONFIGFS_RNDIS=y +CONFIG_USB_CONFIGFS_EEM=y +CONFIG_USB_CONFIGFS_PHONET=y +CONFIG_USB_CONFIGFS_MASS_STORAGE=y +CONFIG_USB_CONFIGFS_F_LB_SS=y +CONFIG_USB_CONFIGFS_F_FS=y +CONFIG_USB_CONFIGFS_F_UAC1=y +# CONFIG_USB_CONFIGFS_F_UAC1_LEGACY is not set +CONFIG_USB_CONFIGFS_F_UAC2=y +CONFIG_USB_CONFIGFS_F_MIDI=y +CONFIG_USB_CONFIGFS_F_HID=y +CONFIG_USB_CONFIGFS_F_UVC=y +CONFIG_USB_CONFIGFS_F_PRINTER=y +# CONFIG_USB_CONFIGFS_F_TCM is not set + +# +# USB Gadget precomposed configurations +# +CONFIG_USB_ZERO=m +CONFIG_USB_AUDIO=m +CONFIG_GADGET_UAC1=y +# CONFIG_GADGET_UAC1_LEGACY is not set +CONFIG_USB_ETH=m +CONFIG_USB_ETH_RNDIS=y +CONFIG_USB_ETH_EEM=y +CONFIG_USB_G_NCM=m +CONFIG_USB_GADGETFS=m +CONFIG_USB_FUNCTIONFS=m +CONFIG_USB_FUNCTIONFS_ETH=y +CONFIG_USB_FUNCTIONFS_RNDIS=y +CONFIG_USB_FUNCTIONFS_GENERIC=y +CONFIG_USB_MASS_STORAGE=m +CONFIG_USB_GADGET_TARGET=m +CONFIG_USB_G_SERIAL=m +CONFIG_USB_MIDI_GADGET=m +CONFIG_USB_G_PRINTER=m +CONFIG_USB_CDC_COMPOSITE=m +CONFIG_USB_G_NOKIA=m +CONFIG_USB_G_ACM_MS=m +# CONFIG_USB_G_MULTI is not set +CONFIG_USB_G_HID=m +CONFIG_USB_G_DBGP=m +# CONFIG_USB_G_DBGP_PRINTK is not set +CONFIG_USB_G_DBGP_SERIAL=y +CONFIG_USB_G_WEBCAM=m +CONFIG_USB_RAW_GADGET=m +# end of USB Gadget precomposed configurations + +CONFIG_TYPEC=m +CONFIG_TYPEC_TCPM=m +CONFIG_TYPEC_TCPCI=m +CONFIG_TYPEC_RT1711H=m +CONFIG_TYPEC_MT6360=m +CONFIG_TYPEC_TCPCI_MAXIM=m +CONFIG_TYPEC_FUSB302=m +CONFIG_TYPEC_UCSI=m +CONFIG_UCSI_CCG=m +CONFIG_UCSI_ACPI=m +CONFIG_TYPEC_TPS6598X=m +CONFIG_TYPEC_HD3SS3220=m +CONFIG_TYPEC_STUSB160X=m + +# +# USB Type-C Multiplexer/DeMultiplexer Switch support +# +CONFIG_TYPEC_MUX_PI3USB30532=m +CONFIG_TYPEC_MUX_INTEL_PMC=m +# end of USB Type-C Multiplexer/DeMultiplexer Switch support + +# +# USB Type-C Alternate Mode drivers +# +CONFIG_TYPEC_DP_ALTMODE=m +CONFIG_TYPEC_NVIDIA_ALTMODE=m +# end of USB Type-C Alternate Mode drivers + +CONFIG_USB_ROLE_SWITCH=y +CONFIG_USB_ROLES_INTEL_XHCI=m +CONFIG_MMC=y +CONFIG_MMC_BLOCK=m +CONFIG_MMC_BLOCK_MINORS=8 +CONFIG_SDIO_UART=m +# CONFIG_MMC_TEST is not set +CONFIG_MMC_CRYPTO=y + +# +# MMC/SD/SDIO Host Controller Drivers +# +# CONFIG_MMC_DEBUG is not set +CONFIG_MMC_SDHCI=m +CONFIG_MMC_SDHCI_IO_ACCESSORS=y +CONFIG_MMC_SDHCI_PCI=m +CONFIG_MMC_RICOH_MMC=y +CONFIG_MMC_SDHCI_ACPI=m +CONFIG_MMC_SDHCI_PLTFM=m +CONFIG_MMC_SDHCI_F_SDH30=m +CONFIG_MMC_WBSD=m +CONFIG_MMC_ALCOR=m +CONFIG_MMC_TIFM_SD=m +CONFIG_MMC_SPI=m +CONFIG_MMC_SDRICOH_CS=m +CONFIG_MMC_CB710=m +CONFIG_MMC_VIA_SDMMC=m +CONFIG_MMC_VUB300=m +CONFIG_MMC_USHC=m +CONFIG_MMC_USDHI6ROL0=m +CONFIG_MMC_REALTEK_PCI=m +CONFIG_MMC_REALTEK_USB=m +CONFIG_MMC_CQHCI=m +CONFIG_MMC_HSQ=m +CONFIG_MMC_TOSHIBA_PCI=m +CONFIG_MMC_MTK=m +CONFIG_MMC_SDHCI_XENON=m +CONFIG_MEMSTICK=m +# CONFIG_MEMSTICK_DEBUG is not set + +# +# MemoryStick drivers +# +# CONFIG_MEMSTICK_UNSAFE_RESUME is not set +CONFIG_MSPRO_BLOCK=m +CONFIG_MS_BLOCK=m + +# +# MemoryStick Host Controller Drivers +# +CONFIG_MEMSTICK_TIFM_MS=m +CONFIG_MEMSTICK_JMICRON_38X=m +CONFIG_MEMSTICK_R592=m +CONFIG_MEMSTICK_REALTEK_PCI=m +CONFIG_MEMSTICK_REALTEK_USB=m +CONFIG_NEW_LEDS=y +CONFIG_LEDS_CLASS=y +CONFIG_LEDS_CLASS_FLASH=m +CONFIG_LEDS_CLASS_MULTICOLOR=m +# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set + +# +# LED drivers +# +CONFIG_LEDS_88PM860X=m +CONFIG_LEDS_APU=m +CONFIG_LEDS_LM3530=m +CONFIG_LEDS_LM3532=m +CONFIG_LEDS_LM3533=m +CONFIG_LEDS_LM3642=m +CONFIG_LEDS_MT6323=m +CONFIG_LEDS_NET48XX=m +CONFIG_LEDS_WRAP=m +CONFIG_LEDS_PCA9532=m +CONFIG_LEDS_PCA9532_GPIO=y +CONFIG_LEDS_GPIO=m +CONFIG_LEDS_LP3944=m +CONFIG_LEDS_LP3952=m +CONFIG_LEDS_LP50XX=m +CONFIG_LEDS_LP8788=m +CONFIG_LEDS_CLEVO_MAIL=m +CONFIG_LEDS_PCA955X=m +# CONFIG_LEDS_PCA955X_GPIO is not set +CONFIG_LEDS_PCA963X=m +CONFIG_LEDS_WM831X_STATUS=m +CONFIG_LEDS_WM8350=m +CONFIG_LEDS_DA903X=m +CONFIG_LEDS_DA9052=m +CONFIG_LEDS_DAC124S085=m +CONFIG_LEDS_PWM=m +CONFIG_LEDS_REGULATOR=m +CONFIG_LEDS_BD2802=m +CONFIG_LEDS_INTEL_SS4200=m +CONFIG_LEDS_LT3593=m +CONFIG_LEDS_ADP5520=m +CONFIG_LEDS_MC13783=m +CONFIG_LEDS_TCA6507=m +CONFIG_LEDS_TLC591XX=m +CONFIG_LEDS_MAX8997=m +CONFIG_LEDS_LM355x=m +CONFIG_LEDS_OT200=m +CONFIG_LEDS_MENF21BMC=m + +# +# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) +# +CONFIG_LEDS_BLINKM=m +CONFIG_LEDS_MLXCPLD=m +CONFIG_LEDS_MLXREG=m +CONFIG_LEDS_USER=m +CONFIG_LEDS_NIC78BX=m +CONFIG_LEDS_TI_LMU_COMMON=m +CONFIG_LEDS_LM36274=m +CONFIG_LEDS_TPS6105X=m + +# +# Flash and Torch LED drivers +# +CONFIG_LEDS_AS3645A=m +CONFIG_LEDS_LM3601X=m +# CONFIG_LEDS_RT8515 is not set +CONFIG_LEDS_SGM3140=m + +# +# LED Triggers +# +CONFIG_LEDS_TRIGGERS=y +CONFIG_LEDS_TRIGGER_TIMER=m +CONFIG_LEDS_TRIGGER_ONESHOT=m +CONFIG_LEDS_TRIGGER_DISK=y +# CONFIG_LEDS_TRIGGER_MTD is not set +CONFIG_LEDS_TRIGGER_HEARTBEAT=m +CONFIG_LEDS_TRIGGER_BACKLIGHT=m +CONFIG_LEDS_TRIGGER_CPU=y +CONFIG_LEDS_TRIGGER_ACTIVITY=m +CONFIG_LEDS_TRIGGER_GPIO=m +CONFIG_LEDS_TRIGGER_DEFAULT_ON=m + +# +# iptables trigger is under Netfilter config (LED target) +# +CONFIG_LEDS_TRIGGER_TRANSIENT=m +CONFIG_LEDS_TRIGGER_CAMERA=m +CONFIG_LEDS_TRIGGER_PANIC=y +CONFIG_LEDS_TRIGGER_NETDEV=m +CONFIG_LEDS_TRIGGER_PATTERN=m +CONFIG_LEDS_TRIGGER_AUDIO=m +CONFIG_LEDS_TRIGGER_TTY=m +# CONFIG_ACCESSIBILITY is not set +CONFIG_INFINIBAND=m +CONFIG_INFINIBAND_USER_MAD=m +CONFIG_INFINIBAND_USER_ACCESS=m +CONFIG_INFINIBAND_USER_MEM=y +CONFIG_INFINIBAND_ON_DEMAND_PAGING=y +CONFIG_INFINIBAND_ADDR_TRANS=y +CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS=y +CONFIG_INFINIBAND_MTHCA=m +# CONFIG_INFINIBAND_MTHCA_DEBUG is not set +CONFIG_INFINIBAND_CXGB4=m +CONFIG_INFINIBAND_IRDMA=m +CONFIG_MLX4_INFINIBAND=m +CONFIG_MLX5_INFINIBAND=m +CONFIG_INFINIBAND_OCRDMA=m +CONFIG_INFINIBAND_VMWARE_PVRDMA=m +CONFIG_INFINIBAND_USNIC=m +CONFIG_INFINIBAND_IPOIB=m +CONFIG_INFINIBAND_IPOIB_CM=y +# CONFIG_INFINIBAND_IPOIB_DEBUG is not set +CONFIG_INFINIBAND_SRP=m +CONFIG_INFINIBAND_SRPT=m +CONFIG_INFINIBAND_ISER=m +CONFIG_INFINIBAND_ISERT=m +CONFIG_INFINIBAND_RTRS=m +CONFIG_INFINIBAND_RTRS_CLIENT=m +CONFIG_INFINIBAND_RTRS_SERVER=m +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_EDAC=y +# CONFIG_EDAC_LEGACY_SYSFS is not set +# CONFIG_EDAC_DEBUG is not set +CONFIG_EDAC_DECODE_MCE=m +CONFIG_EDAC_GHES=y +CONFIG_EDAC_AMD64=m +CONFIG_EDAC_AMD76X=m +CONFIG_EDAC_E7XXX=m +CONFIG_EDAC_E752X=m +CONFIG_EDAC_I82875P=m +CONFIG_EDAC_I82975X=m +CONFIG_EDAC_I3000=m +CONFIG_EDAC_I3200=m +CONFIG_EDAC_IE31200=m +CONFIG_EDAC_X38=m +CONFIG_EDAC_I5400=m +CONFIG_EDAC_I7CORE=m +CONFIG_EDAC_I82860=m +CONFIG_EDAC_R82600=m +CONFIG_EDAC_I5000=m +CONFIG_EDAC_I5100=m +CONFIG_EDAC_I7300=m +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +CONFIG_RTC_CLASS=y +CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_SYSTOHC_DEVICE="rtc0" +# CONFIG_RTC_DEBUG is not set +CONFIG_RTC_NVMEM=y + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +# CONFIG_RTC_DRV_TEST is not set + +# +# I2C RTC drivers +# +CONFIG_RTC_DRV_88PM860X=m +CONFIG_RTC_DRV_88PM80X=m +CONFIG_RTC_DRV_ABB5ZES3=m +CONFIG_RTC_DRV_ABEOZ9=m +CONFIG_RTC_DRV_ABX80X=m +CONFIG_RTC_DRV_DS1307=m +# CONFIG_RTC_DRV_DS1307_CENTURY is not set +CONFIG_RTC_DRV_DS1374=m +CONFIG_RTC_DRV_DS1374_WDT=y +CONFIG_RTC_DRV_DS1672=m +CONFIG_RTC_DRV_LP8788=m +CONFIG_RTC_DRV_MAX6900=m +CONFIG_RTC_DRV_MAX8907=m +CONFIG_RTC_DRV_MAX8925=m +CONFIG_RTC_DRV_MAX8998=m +CONFIG_RTC_DRV_MAX8997=m +CONFIG_RTC_DRV_RS5C372=m +CONFIG_RTC_DRV_ISL1208=m +CONFIG_RTC_DRV_ISL12022=m +CONFIG_RTC_DRV_X1205=m +CONFIG_RTC_DRV_PCF8523=m +CONFIG_RTC_DRV_PCF85063=m +CONFIG_RTC_DRV_PCF85363=m +CONFIG_RTC_DRV_PCF8563=m +CONFIG_RTC_DRV_PCF8583=m +CONFIG_RTC_DRV_M41T80=m +CONFIG_RTC_DRV_M41T80_WDT=y +CONFIG_RTC_DRV_BQ32K=m +CONFIG_RTC_DRV_PALMAS=m +CONFIG_RTC_DRV_TPS6586X=m +CONFIG_RTC_DRV_TPS65910=m +CONFIG_RTC_DRV_RC5T583=m +CONFIG_RTC_DRV_S35390A=m +CONFIG_RTC_DRV_FM3130=m +CONFIG_RTC_DRV_RX8010=m +CONFIG_RTC_DRV_RX8581=m +CONFIG_RTC_DRV_RX8025=m +CONFIG_RTC_DRV_EM3027=m +CONFIG_RTC_DRV_RV3028=m +CONFIG_RTC_DRV_RV3032=m +CONFIG_RTC_DRV_RV8803=m +CONFIG_RTC_DRV_SD3078=m + +# +# SPI RTC drivers +# +CONFIG_RTC_DRV_M41T93=m +CONFIG_RTC_DRV_M41T94=m +CONFIG_RTC_DRV_DS1302=m +CONFIG_RTC_DRV_DS1305=m +CONFIG_RTC_DRV_DS1343=m +CONFIG_RTC_DRV_DS1347=m +CONFIG_RTC_DRV_DS1390=m +CONFIG_RTC_DRV_MAX6916=m +CONFIG_RTC_DRV_R9701=m +CONFIG_RTC_DRV_RX4581=m +CONFIG_RTC_DRV_RS5C348=m +CONFIG_RTC_DRV_MAX6902=m +CONFIG_RTC_DRV_PCF2123=m +CONFIG_RTC_DRV_MCP795=m +CONFIG_RTC_I2C_AND_SPI=y + +# +# SPI and I2C RTC drivers +# +CONFIG_RTC_DRV_DS3232=m +CONFIG_RTC_DRV_DS3232_HWMON=y +CONFIG_RTC_DRV_PCF2127=m +CONFIG_RTC_DRV_RV3029C2=m +CONFIG_RTC_DRV_RV3029_HWMON=y +CONFIG_RTC_DRV_RX6110=m + +# +# Platform RTC drivers +# +CONFIG_RTC_DRV_CMOS=y +CONFIG_RTC_DRV_DS1286=m +CONFIG_RTC_DRV_DS1511=m +CONFIG_RTC_DRV_DS1553=m +CONFIG_RTC_DRV_DS1685_FAMILY=m +CONFIG_RTC_DRV_DS1685=y +# CONFIG_RTC_DRV_DS1689 is not set +# CONFIG_RTC_DRV_DS17285 is not set +# CONFIG_RTC_DRV_DS17485 is not set +# CONFIG_RTC_DRV_DS17885 is not set +CONFIG_RTC_DRV_DS1742=m +CONFIG_RTC_DRV_DS2404=m +CONFIG_RTC_DRV_DA9052=m +CONFIG_RTC_DRV_DA9055=m +CONFIG_RTC_DRV_DA9063=m +CONFIG_RTC_DRV_STK17TA8=m +CONFIG_RTC_DRV_M48T86=m +CONFIG_RTC_DRV_M48T35=m +CONFIG_RTC_DRV_M48T59=m +CONFIG_RTC_DRV_MSM6242=m +CONFIG_RTC_DRV_BQ4802=m +CONFIG_RTC_DRV_RP5C01=m +CONFIG_RTC_DRV_V3020=m +CONFIG_RTC_DRV_WM831X=m +CONFIG_RTC_DRV_WM8350=m +CONFIG_RTC_DRV_PCF50633=m +CONFIG_RTC_DRV_CROS_EC=m + +# +# on-CPU RTC drivers +# +CONFIG_RTC_DRV_FTRTC010=m +CONFIG_RTC_DRV_PCAP=m +CONFIG_RTC_DRV_MC13XXX=m +CONFIG_RTC_DRV_MT6397=m + +# +# HID Sensor RTC drivers +# +CONFIG_RTC_DRV_HID_SENSOR_TIME=m +CONFIG_RTC_DRV_GOLDFISH=m +CONFIG_RTC_DRV_WILCO_EC=m +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set + +# +# DMA Devices +# +CONFIG_DMA_ENGINE=y +CONFIG_DMA_VIRTUAL_CHANNELS=y +CONFIG_DMA_ACPI=y +CONFIG_ALTERA_MSGDMA=m +CONFIG_INTEL_IDMA64=m +CONFIG_PCH_DMA=m +CONFIG_PLX_DMA=m +CONFIG_TIMB_DMA=m +CONFIG_QCOM_HIDMA_MGMT=m +CONFIG_QCOM_HIDMA=m +CONFIG_DW_DMAC_CORE=m +CONFIG_DW_DMAC=m +CONFIG_DW_DMAC_PCI=m +CONFIG_DW_EDMA=m +CONFIG_DW_EDMA_PCIE=m +CONFIG_HSU_DMA=m +CONFIG_SF_PDMA=m +CONFIG_INTEL_LDMA=y + +# +# DMA Clients +# +CONFIG_ASYNC_TX_DMA=y +# CONFIG_DMATEST is not set + +# +# DMABUF options +# +CONFIG_SYNC_FILE=y +# CONFIG_SW_SYNC is not set +# CONFIG_UDMABUF is not set +# CONFIG_DMABUF_MOVE_NOTIFY is not set +# CONFIG_DMABUF_DEBUG is not set +# CONFIG_DMABUF_SELFTESTS is not set +# CONFIG_DMABUF_HEAPS is not set +# CONFIG_DMABUF_SYSFS_STATS is not set +# end of DMABUF options + +CONFIG_AUXDISPLAY=y +CONFIG_CHARLCD=m +CONFIG_LINEDISP=m +CONFIG_HD44780_COMMON=m +CONFIG_HD44780=m +CONFIG_KS0108=m +CONFIG_KS0108_PORT=0x378 +CONFIG_KS0108_DELAY=2 +CONFIG_CFAG12864B=m +CONFIG_CFAG12864B_RATE=20 +CONFIG_IMG_ASCII_LCD=m +CONFIG_HT16K33=m +CONFIG_LCD2S=m +CONFIG_PARPORT_PANEL=m +CONFIG_PANEL_PARPORT=0 +CONFIG_PANEL_PROFILE=5 +# CONFIG_PANEL_CHANGE_MESSAGE is not set +# CONFIG_CHARLCD_BL_OFF is not set +# CONFIG_CHARLCD_BL_ON is not set +CONFIG_CHARLCD_BL_FLASH=y +CONFIG_PANEL=m +CONFIG_UIO=m +CONFIG_UIO_CIF=m +CONFIG_UIO_PDRV_GENIRQ=m +CONFIG_UIO_DMEM_GENIRQ=m +CONFIG_UIO_AEC=m +CONFIG_UIO_SERCOS3=m +CONFIG_UIO_PCI_GENERIC=m +CONFIG_UIO_NETX=m +CONFIG_UIO_PRUSS=m +CONFIG_UIO_MF624=m +CONFIG_UIO_HV_GENERIC=m +CONFIG_UIO_DFL=m +CONFIG_VFIO=m +CONFIG_VFIO_IOMMU_TYPE1=m +CONFIG_VFIO_VIRQFD=m +CONFIG_VFIO_NOIOMMU=y +CONFIG_VFIO_PCI_CORE=m +CONFIG_VFIO_PCI_MMAP=y +CONFIG_VFIO_PCI_INTX=y +CONFIG_VFIO_PCI=m +CONFIG_VFIO_PCI_VGA=y +CONFIG_VFIO_PCI_IGD=y +CONFIG_VFIO_MDEV=m +CONFIG_IRQ_BYPASS_MANAGER=m +CONFIG_VIRT_DRIVERS=y +CONFIG_VBOXGUEST=m +CONFIG_NITRO_ENCLAVES=m +CONFIG_VIRTIO=y +CONFIG_VIRTIO_PCI_LIB=y +CONFIG_VIRTIO_PCI_LIB_LEGACY=y +CONFIG_VIRTIO_MENU=y +CONFIG_VIRTIO_PCI=y +CONFIG_VIRTIO_PCI_LEGACY=y +CONFIG_VIRTIO_VDPA=m +CONFIG_VIRTIO_PMEM=m +CONFIG_VIRTIO_BALLOON=y +CONFIG_VIRTIO_INPUT=m +CONFIG_VIRTIO_MMIO=y +CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES=y +CONFIG_VIRTIO_DMA_SHARED_BUFFER=m +CONFIG_VDPA=m +# CONFIG_VDPA_SIM is not set +CONFIG_VDPA_USER=m +CONFIG_IFCVF=m +CONFIG_MLX5_VDPA=y +CONFIG_MLX5_VDPA_NET=m +CONFIG_VP_VDPA=m +CONFIG_ALIBABA_ENI_VDPA=m +CONFIG_VHOST_IOTLB=m +CONFIG_VHOST_RING=m +CONFIG_VHOST=m +CONFIG_VHOST_MENU=y +CONFIG_VHOST_NET=m +CONFIG_VHOST_SCSI=m +CONFIG_VHOST_VSOCK=m +CONFIG_VHOST_VDPA=m +# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set + +# +# Microsoft Hyper-V guest support +# +CONFIG_HYPERV=m +CONFIG_HYPERV_TIMER=y +CONFIG_HYPERV_UTILS=m +CONFIG_HYPERV_BALLOON=m +# end of Microsoft Hyper-V guest support + +# +# Xen driver support +# +CONFIG_XEN_BALLOON=y +CONFIG_XEN_SCRUB_PAGES_DEFAULT=y +CONFIG_XEN_DEV_EVTCHN=m +CONFIG_XEN_BACKEND=y +CONFIG_XENFS=m +CONFIG_XEN_COMPAT_XENFS=y +CONFIG_XEN_SYS_HYPERVISOR=y +CONFIG_XEN_XENBUS_FRONTEND=y +CONFIG_XEN_GNTDEV=m +CONFIG_XEN_GRANT_DEV_ALLOC=m +# CONFIG_XEN_GRANT_DMA_ALLOC is not set +CONFIG_XEN_PCI_STUB=y +CONFIG_XEN_PCIDEV_BACKEND=m +CONFIG_XEN_PVCALLS_FRONTEND=m +# CONFIG_XEN_PVCALLS_BACKEND is not set +CONFIG_XEN_SCSI_BACKEND=m +CONFIG_XEN_PRIVCMD=m +CONFIG_XEN_AUTO_XLATE=y +CONFIG_XEN_ACPI=y +CONFIG_XEN_FRONT_PGDIR_SHBUF=m +# end of Xen driver support + +# CONFIG_GREYBUS is not set +CONFIG_COMEDI=m +# CONFIG_COMEDI_DEBUG is not set +CONFIG_COMEDI_DEFAULT_BUF_SIZE_KB=2048 +CONFIG_COMEDI_DEFAULT_BUF_MAXSIZE_KB=20480 +CONFIG_COMEDI_MISC_DRIVERS=y +CONFIG_COMEDI_BOND=m +CONFIG_COMEDI_TEST=m +CONFIG_COMEDI_PARPORT=m +CONFIG_COMEDI_SSV_DNP=m +CONFIG_COMEDI_ISA_DRIVERS=y +CONFIG_COMEDI_PCL711=m +CONFIG_COMEDI_PCL724=m +CONFIG_COMEDI_PCL726=m +CONFIG_COMEDI_PCL730=m +CONFIG_COMEDI_PCL812=m +CONFIG_COMEDI_PCL816=m +CONFIG_COMEDI_PCL818=m +CONFIG_COMEDI_PCM3724=m +CONFIG_COMEDI_AMPLC_DIO200_ISA=m +CONFIG_COMEDI_AMPLC_PC236_ISA=m +CONFIG_COMEDI_AMPLC_PC263_ISA=m +CONFIG_COMEDI_RTI800=m +CONFIG_COMEDI_RTI802=m +CONFIG_COMEDI_DAC02=m +CONFIG_COMEDI_DAS16M1=m +CONFIG_COMEDI_DAS08_ISA=m +CONFIG_COMEDI_DAS16=m +CONFIG_COMEDI_DAS800=m +CONFIG_COMEDI_DAS1800=m +CONFIG_COMEDI_DAS6402=m +CONFIG_COMEDI_DT2801=m +CONFIG_COMEDI_DT2811=m +CONFIG_COMEDI_DT2814=m +CONFIG_COMEDI_DT2815=m +CONFIG_COMEDI_DT2817=m +CONFIG_COMEDI_DT282X=m +CONFIG_COMEDI_DMM32AT=m +CONFIG_COMEDI_FL512=m +CONFIG_COMEDI_AIO_AIO12_8=m +CONFIG_COMEDI_AIO_IIRO_16=m +CONFIG_COMEDI_II_PCI20KC=m +CONFIG_COMEDI_C6XDIGIO=m +CONFIG_COMEDI_MPC624=m +CONFIG_COMEDI_ADQ12B=m +CONFIG_COMEDI_NI_AT_A2150=m +CONFIG_COMEDI_NI_AT_AO=m +CONFIG_COMEDI_NI_ATMIO=m +CONFIG_COMEDI_NI_ATMIO16D=m +CONFIG_COMEDI_NI_LABPC_ISA=m +CONFIG_COMEDI_PCMAD=m +CONFIG_COMEDI_PCMDA12=m +CONFIG_COMEDI_PCMMIO=m +CONFIG_COMEDI_PCMUIO=m +CONFIG_COMEDI_MULTIQ3=m +CONFIG_COMEDI_S526=m +CONFIG_COMEDI_PCI_DRIVERS=m +CONFIG_COMEDI_8255_PCI=m +CONFIG_COMEDI_ADDI_WATCHDOG=m +CONFIG_COMEDI_ADDI_APCI_1032=m +CONFIG_COMEDI_ADDI_APCI_1500=m +CONFIG_COMEDI_ADDI_APCI_1516=m +CONFIG_COMEDI_ADDI_APCI_1564=m +CONFIG_COMEDI_ADDI_APCI_16XX=m +CONFIG_COMEDI_ADDI_APCI_2032=m +CONFIG_COMEDI_ADDI_APCI_2200=m +CONFIG_COMEDI_ADDI_APCI_3120=m +CONFIG_COMEDI_ADDI_APCI_3501=m +CONFIG_COMEDI_ADDI_APCI_3XXX=m +CONFIG_COMEDI_ADL_PCI6208=m +CONFIG_COMEDI_ADL_PCI7X3X=m +CONFIG_COMEDI_ADL_PCI8164=m +CONFIG_COMEDI_ADL_PCI9111=m +CONFIG_COMEDI_ADL_PCI9118=m +CONFIG_COMEDI_ADV_PCI1710=m +CONFIG_COMEDI_ADV_PCI1720=m +CONFIG_COMEDI_ADV_PCI1723=m +CONFIG_COMEDI_ADV_PCI1724=m +CONFIG_COMEDI_ADV_PCI1760=m +CONFIG_COMEDI_ADV_PCI_DIO=m +CONFIG_COMEDI_AMPLC_DIO200_PCI=m +CONFIG_COMEDI_AMPLC_PC236_PCI=m +CONFIG_COMEDI_AMPLC_PC263_PCI=m +CONFIG_COMEDI_AMPLC_PCI224=m +CONFIG_COMEDI_AMPLC_PCI230=m +CONFIG_COMEDI_CONTEC_PCI_DIO=m +CONFIG_COMEDI_DAS08_PCI=m +CONFIG_COMEDI_DT3000=m +CONFIG_COMEDI_DYNA_PCI10XX=m +CONFIG_COMEDI_GSC_HPDI=m +CONFIG_COMEDI_MF6X4=m +CONFIG_COMEDI_ICP_MULTI=m +CONFIG_COMEDI_DAQBOARD2000=m +CONFIG_COMEDI_JR3_PCI=m +CONFIG_COMEDI_KE_COUNTER=m +CONFIG_COMEDI_CB_PCIDAS64=m +CONFIG_COMEDI_CB_PCIDAS=m +CONFIG_COMEDI_CB_PCIDDA=m +CONFIG_COMEDI_CB_PCIMDAS=m +CONFIG_COMEDI_CB_PCIMDDA=m +CONFIG_COMEDI_ME4000=m +CONFIG_COMEDI_ME_DAQ=m +CONFIG_COMEDI_NI_6527=m +CONFIG_COMEDI_NI_65XX=m +CONFIG_COMEDI_NI_660X=m +CONFIG_COMEDI_NI_670X=m +CONFIG_COMEDI_NI_LABPC_PCI=m +CONFIG_COMEDI_NI_PCIDIO=m +CONFIG_COMEDI_NI_PCIMIO=m +CONFIG_COMEDI_RTD520=m +CONFIG_COMEDI_S626=m +CONFIG_COMEDI_MITE=m +CONFIG_COMEDI_NI_TIOCMD=m +CONFIG_COMEDI_PCMCIA_DRIVERS=m +CONFIG_COMEDI_CB_DAS16_CS=m +CONFIG_COMEDI_DAS08_CS=m +CONFIG_COMEDI_NI_DAQ_700_CS=m +CONFIG_COMEDI_NI_DAQ_DIO24_CS=m +CONFIG_COMEDI_NI_LABPC_CS=m +CONFIG_COMEDI_NI_MIO_CS=m +CONFIG_COMEDI_QUATECH_DAQP_CS=m +CONFIG_COMEDI_USB_DRIVERS=m +CONFIG_COMEDI_DT9812=m +CONFIG_COMEDI_NI_USB6501=m +CONFIG_COMEDI_USBDUX=m +CONFIG_COMEDI_USBDUXFAST=m +CONFIG_COMEDI_USBDUXSIGMA=m +CONFIG_COMEDI_VMK80XX=m +CONFIG_COMEDI_8254=m +CONFIG_COMEDI_8255=m +CONFIG_COMEDI_8255_SA=m +CONFIG_COMEDI_KCOMEDILIB=m +CONFIG_COMEDI_AMPLC_DIO200=m +CONFIG_COMEDI_AMPLC_PC236=m +CONFIG_COMEDI_DAS08=m +CONFIG_COMEDI_ISADMA=m +CONFIG_COMEDI_NI_LABPC=m +CONFIG_COMEDI_NI_LABPC_ISADMA=m +CONFIG_COMEDI_NI_TIO=m +CONFIG_COMEDI_NI_ROUTING=m +# CONFIG_COMEDI_TESTS is not set +CONFIG_STAGING=y +CONFIG_PRISM2_USB=m +CONFIG_RTL8192U=m +CONFIG_RTLLIB=m +CONFIG_RTLLIB_CRYPTO_CCMP=m +CONFIG_RTLLIB_CRYPTO_TKIP=m +CONFIG_RTLLIB_CRYPTO_WEP=m +CONFIG_RTL8192E=m +CONFIG_RTL8723BS=m +CONFIG_R8712U=m +CONFIG_R8188EU=m +CONFIG_RTS5208=m +CONFIG_VT6655=m +CONFIG_VT6656=m + +# +# IIO staging drivers +# + +# +# Accelerometers +# +CONFIG_ADIS16203=m +CONFIG_ADIS16240=m +# end of Accelerometers + +# +# Analog to digital converters +# +CONFIG_AD7816=m +CONFIG_AD7280=m +# end of Analog to digital converters + +# +# Analog digital bi-direction converters +# +CONFIG_ADT7316=m +CONFIG_ADT7316_SPI=m +CONFIG_ADT7316_I2C=m +# end of Analog digital bi-direction converters + +# +# Capacitance to digital converters +# +CONFIG_AD7746=m +# end of Capacitance to digital converters + +# +# Direct Digital Synthesis +# +CONFIG_AD9832=m +CONFIG_AD9834=m +# end of Direct Digital Synthesis + +# +# Network Analyzer, Impedance Converters +# +CONFIG_AD5933=m +# end of Network Analyzer, Impedance Converters + +# +# Active energy metering IC +# +CONFIG_ADE7854=m +CONFIG_ADE7854_I2C=m +CONFIG_ADE7854_SPI=m +# end of Active energy metering IC + +# +# Resolver to digital converters +# +CONFIG_AD2S1210=m +# end of Resolver to digital converters +# end of IIO staging drivers + +CONFIG_FB_SM750=m +CONFIG_STAGING_MEDIA=y +CONFIG_INTEL_ATOMISP=y +# CONFIG_VIDEO_ZORAN is not set +CONFIG_VIDEO_IPU3_IMGU=m +CONFIG_DVB_AV7110_IR=y +CONFIG_DVB_AV7110=m +CONFIG_DVB_AV7110_OSD=y +CONFIG_DVB_BUDGET_PATCH=m +CONFIG_DVB_SP8870=m + +# +# Android +# +# end of Android + +CONFIG_LTE_GDM724X=m +CONFIG_FIREWIRE_SERIAL=m +CONFIG_FWTTY_MAX_TOTAL_PORTS=64 +CONFIG_FWTTY_MAX_CARD_PORTS=32 +CONFIG_GS_FPGABOOT=m +CONFIG_UNISYSSPAR=y +CONFIG_FB_TFT=m +CONFIG_FB_TFT_AGM1264K_FL=m +CONFIG_FB_TFT_BD663474=m +CONFIG_FB_TFT_HX8340BN=m +CONFIG_FB_TFT_HX8347D=m +CONFIG_FB_TFT_HX8353D=m +CONFIG_FB_TFT_HX8357D=m +CONFIG_FB_TFT_ILI9163=m +CONFIG_FB_TFT_ILI9320=m +CONFIG_FB_TFT_ILI9325=m +CONFIG_FB_TFT_ILI9340=m +CONFIG_FB_TFT_ILI9341=m +CONFIG_FB_TFT_ILI9481=m +CONFIG_FB_TFT_ILI9486=m +CONFIG_FB_TFT_PCD8544=m +CONFIG_FB_TFT_RA8875=m +CONFIG_FB_TFT_S6D02A1=m +CONFIG_FB_TFT_S6D1121=m +CONFIG_FB_TFT_SEPS525=m +CONFIG_FB_TFT_SH1106=m +CONFIG_FB_TFT_SSD1289=m +CONFIG_FB_TFT_SSD1305=m +CONFIG_FB_TFT_SSD1306=m +CONFIG_FB_TFT_SSD1331=m +CONFIG_FB_TFT_SSD1351=m +CONFIG_FB_TFT_ST7735R=m +CONFIG_FB_TFT_ST7789V=m +CONFIG_FB_TFT_TINYLCD=m +CONFIG_FB_TFT_TLS8204=m +CONFIG_FB_TFT_UC1611=m +CONFIG_FB_TFT_UC1701=m +CONFIG_FB_TFT_UPD161704=m +CONFIG_FB_TFT_WATTEROTT=m +CONFIG_MOST_COMPONENTS=m +CONFIG_MOST_NET=m +CONFIG_MOST_VIDEO=m +CONFIG_MOST_I2C=m +CONFIG_KS7010=m +# CONFIG_PI433 is not set +CONFIG_FIELDBUS_DEV=m +CONFIG_QLGE=m +CONFIG_WFX=m +CONFIG_X86_PLATFORM_DEVICES=y +CONFIG_ACPI_WMI=m +CONFIG_WMI_BMOF=m +CONFIG_HUAWEI_WMI=m +CONFIG_MXM_WMI=m +CONFIG_PEAQ_WMI=m +CONFIG_NVIDIA_WMI_EC_BACKLIGHT=m +CONFIG_XIAOMI_WMI=m +CONFIG_GIGABYTE_WMI=m +CONFIG_ACERHDF=m +CONFIG_ACER_WIRELESS=m +CONFIG_ACER_WMI=m +CONFIG_AMD_PMC=m +CONFIG_ADV_SWBUTTON=m +CONFIG_APPLE_GMUX=m +CONFIG_ASUS_LAPTOP=m +CONFIG_ASUS_WIRELESS=m +CONFIG_ASUS_WMI=m +CONFIG_ASUS_NB_WMI=m +CONFIG_MERAKI_MX100=m +CONFIG_EEEPC_LAPTOP=m +CONFIG_EEEPC_WMI=m +CONFIG_X86_PLATFORM_DRIVERS_DELL=y +CONFIG_ALIENWARE_WMI=m +CONFIG_DCDBAS=m +CONFIG_DELL_LAPTOP=m +CONFIG_DELL_RBU=m +CONFIG_DELL_RBTN=m +CONFIG_DELL_SMBIOS=m +CONFIG_DELL_SMBIOS_WMI=y +CONFIG_DELL_SMBIOS_SMM=y +CONFIG_DELL_SMO8800=m +CONFIG_DELL_WMI=m +CONFIG_DELL_WMI_PRIVACY=y +CONFIG_DELL_WMI_AIO=m +CONFIG_DELL_WMI_DESCRIPTOR=m +CONFIG_DELL_WMI_LED=m +CONFIG_DELL_WMI_SYSMAN=m +CONFIG_AMILO_RFKILL=m +CONFIG_FUJITSU_LAPTOP=m +CONFIG_FUJITSU_TABLET=m +CONFIG_GPD_POCKET_FAN=m +CONFIG_HP_ACCEL=m +CONFIG_WIRELESS_HOTKEY=m +CONFIG_HP_WMI=m +CONFIG_TC1100_WMI=m +CONFIG_IBM_RTL=m +CONFIG_IDEAPAD_LAPTOP=m +CONFIG_SENSORS_HDAPS=m +CONFIG_THINKPAD_ACPI=m +CONFIG_THINKPAD_ACPI_ALSA_SUPPORT=y +CONFIG_THINKPAD_ACPI_DEBUGFACILITIES=y +# CONFIG_THINKPAD_ACPI_DEBUG is not set +# CONFIG_THINKPAD_ACPI_UNSAFE_LEDS is not set +CONFIG_THINKPAD_ACPI_VIDEO=y +CONFIG_THINKPAD_ACPI_HOTKEY_POLL=y +CONFIG_THINKPAD_LMI=m +CONFIG_INTEL_ATOMISP2_PDX86=y +CONFIG_INTEL_ATOMISP2_LED=m +CONFIG_INTEL_SAR_INT1092=m +CONFIG_INTEL_CHT_INT33FE=m +CONFIG_INTEL_SKL_INT3472=m +CONFIG_INTEL_PMC_CORE=y +CONFIG_INTEL_PMT_CLASS=m +CONFIG_INTEL_PMT_TELEMETRY=m +CONFIG_INTEL_PMT_CRASHLOG=m +CONFIG_INTEL_WMI=y +CONFIG_INTEL_WMI_SBL_FW_UPDATE=m +CONFIG_INTEL_WMI_THUNDERBOLT=m +CONFIG_INTEL_HID_EVENT=m +CONFIG_INTEL_VBTN=m +CONFIG_INTEL_INT0002_VGPIO=m +CONFIG_INTEL_OAKTRAIL=m +CONFIG_INTEL_BXTWC_PMIC_TMU=m +CONFIG_INTEL_CHTDC_TI_PWRBTN=m +CONFIG_INTEL_MRFLD_PWRBTN=m +CONFIG_INTEL_PUNIT_IPC=m +CONFIG_INTEL_RST=m +CONFIG_INTEL_SMARTCONNECT=m +CONFIG_MSI_LAPTOP=m +CONFIG_MSI_WMI=m +CONFIG_PCENGINES_APU2=m +CONFIG_BARCO_P50_GPIO=m +CONFIG_SAMSUNG_LAPTOP=m +CONFIG_SAMSUNG_Q10=m +CONFIG_ACPI_TOSHIBA=m +CONFIG_TOSHIBA_BT_RFKILL=m +CONFIG_TOSHIBA_HAPS=m +CONFIG_TOSHIBA_WMI=m +CONFIG_ACPI_CMPC=m +CONFIG_COMPAL_LAPTOP=m +CONFIG_LG_LAPTOP=m +CONFIG_PANASONIC_LAPTOP=m +CONFIG_SONY_LAPTOP=m +CONFIG_SONYPI_COMPAT=y +CONFIG_SYSTEM76_ACPI=m +CONFIG_TOPSTAR_LAPTOP=m +CONFIG_I2C_MULTI_INSTANTIATE=m +# CONFIG_MLX_PLATFORM is not set +# CONFIG_TOUCHSCREEN_DMI is not set +CONFIG_FW_ATTR_CLASS=m +CONFIG_INTEL_IMR=y +CONFIG_INTEL_IPS=m +CONFIG_INTEL_SCU_IPC=y +CONFIG_INTEL_SCU=y +CONFIG_INTEL_SCU_PCI=y +CONFIG_INTEL_SCU_PLATFORM=m +CONFIG_INTEL_SCU_IPC_UTIL=m +CONFIG_PMC_ATOM=y +CONFIG_CHROME_PLATFORMS=y +CONFIG_CHROMEOS_LAPTOP=m +CONFIG_CHROMEOS_PSTORE=m +CONFIG_CHROMEOS_TBMC=m +CONFIG_CROS_EC=m +CONFIG_CROS_EC_I2C=m +CONFIG_CROS_EC_SPI=m +CONFIG_CROS_EC_LPC=m +CONFIG_CROS_EC_PROTO=y +CONFIG_CROS_KBD_LED_BACKLIGHT=m +CONFIG_CROS_EC_CHARDEV=m +CONFIG_CROS_EC_LIGHTBAR=m +CONFIG_CROS_EC_DEBUGFS=m +CONFIG_CROS_EC_SENSORHUB=m +CONFIG_CROS_EC_SYSFS=m +CONFIG_CROS_EC_TYPEC=m +CONFIG_CROS_USBPD_LOGGER=m +CONFIG_CROS_USBPD_NOTIFY=m +CONFIG_WILCO_EC=m +# CONFIG_WILCO_EC_DEBUGFS is not set +CONFIG_WILCO_EC_EVENTS=m +CONFIG_WILCO_EC_TELEMETRY=m +# CONFIG_MELLANOX_PLATFORM is not set +# CONFIG_SURFACE_PLATFORMS is not set +CONFIG_HAVE_CLK=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y +CONFIG_COMMON_CLK_WM831X=m +CONFIG_LMK04832=m +CONFIG_COMMON_CLK_MAX9485=m +CONFIG_COMMON_CLK_SI5341=m +CONFIG_COMMON_CLK_SI5351=m +CONFIG_COMMON_CLK_SI544=m +CONFIG_COMMON_CLK_CDCE706=m +CONFIG_COMMON_CLK_CS2000_CP=m +CONFIG_CLK_TWL6040=m +CONFIG_COMMON_CLK_PALMAS=m +CONFIG_COMMON_CLK_PWM=m +CONFIG_XILINX_VCU=m +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKSRC_I8253=y +CONFIG_CLKEVT_I8253=y +CONFIG_I8253_LOCK=y +CONFIG_CLKBLD_I8253=y +# end of Clock Source drivers + +CONFIG_MAILBOX=y +CONFIG_PCC=y +CONFIG_ALTERA_MBOX=m +CONFIG_IOMMU_IOVA=y +CONFIG_IOASID=y +CONFIG_IOMMU_API=y +CONFIG_IOMMU_SUPPORT=y + +# +# Generic IOMMU Pagetable Support +# +# end of Generic IOMMU Pagetable Support + +# CONFIG_IOMMU_DEBUGFS is not set +# CONFIG_IOMMU_DEFAULT_DMA_STRICT is not set +CONFIG_IOMMU_DEFAULT_DMA_LAZY=y +# CONFIG_IOMMU_DEFAULT_PASSTHROUGH is not set +CONFIG_IOMMU_DMA=y +CONFIG_DMAR_TABLE=y +CONFIG_INTEL_IOMMU=y +# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set +CONFIG_INTEL_IOMMU_FLOPPY_WA=y +# CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON is not set +CONFIG_HYPERV_IOMMU=y +CONFIG_VIRTIO_IOMMU=m + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +CONFIG_RPMSG=m +# CONFIG_RPMSG_CHAR is not set +CONFIG_RPMSG_NS=m +CONFIG_RPMSG_QCOM_GLINK=m +CONFIG_RPMSG_QCOM_GLINK_RPM=m +CONFIG_RPMSG_VIRTIO=m +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# end of Amlogic SoC drivers + +# +# Broadcom SoC drivers +# +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +# end of i.MX SoC drivers + +# +# Enable LiteX SoC Builder specific drivers +# +# end of Enable LiteX SoC Builder specific drivers + +# +# Qualcomm SoC drivers +# +CONFIG_QCOM_QMI_HELPERS=m +# end of Qualcomm SoC drivers + +CONFIG_SOC_TI=y + +# +# Xilinx SoC drivers +# +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +CONFIG_PM_DEVFREQ=y + +# +# DEVFREQ Governors +# +CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=y +CONFIG_DEVFREQ_GOV_PERFORMANCE=y +CONFIG_DEVFREQ_GOV_POWERSAVE=y +CONFIG_DEVFREQ_GOV_USERSPACE=y +CONFIG_DEVFREQ_GOV_PASSIVE=m + +# +# DEVFREQ Drivers +# +CONFIG_PM_DEVFREQ_EVENT=y +CONFIG_EXTCON=y + +# +# Extcon Device Drivers +# +CONFIG_EXTCON_ADC_JACK=m +CONFIG_EXTCON_AXP288=m +CONFIG_EXTCON_FSA9480=m +CONFIG_EXTCON_GPIO=m +CONFIG_EXTCON_INTEL_INT3496=m +CONFIG_EXTCON_INTEL_CHT_WC=m +CONFIG_EXTCON_INTEL_MRFLD=m +CONFIG_EXTCON_MAX14577=m +CONFIG_EXTCON_MAX3355=m +CONFIG_EXTCON_MAX77693=m +CONFIG_EXTCON_MAX77843=m +CONFIG_EXTCON_MAX8997=m +CONFIG_EXTCON_PALMAS=m +CONFIG_EXTCON_PTN5150=m +CONFIG_EXTCON_RT8973A=m +CONFIG_EXTCON_SM5502=m +CONFIG_EXTCON_USB_GPIO=m +CONFIG_EXTCON_USBC_CROS_EC=m +CONFIG_EXTCON_USBC_TUSB320=m +CONFIG_MEMORY=y +CONFIG_FPGA_DFL_EMIF=m +CONFIG_IIO=m +CONFIG_IIO_BUFFER=y +CONFIG_IIO_BUFFER_CB=m +CONFIG_IIO_BUFFER_DMA=m +CONFIG_IIO_BUFFER_DMAENGINE=m +CONFIG_IIO_BUFFER_HW_CONSUMER=m +CONFIG_IIO_KFIFO_BUF=m +CONFIG_IIO_TRIGGERED_BUFFER=m +CONFIG_IIO_CONFIGFS=m +CONFIG_IIO_TRIGGER=y +CONFIG_IIO_CONSUMERS_PER_TRIGGER=2 +CONFIG_IIO_SW_DEVICE=m +CONFIG_IIO_SW_TRIGGER=m +CONFIG_IIO_TRIGGERED_EVENT=m + +# +# Accelerometers +# +CONFIG_ADIS16201=m +CONFIG_ADIS16209=m +CONFIG_ADXL313=m +CONFIG_ADXL313_I2C=m +CONFIG_ADXL313_SPI=m +CONFIG_ADXL355=m +CONFIG_ADXL355_I2C=m +CONFIG_ADXL355_SPI=m +CONFIG_ADXL372=m +CONFIG_ADXL372_SPI=m +CONFIG_ADXL372_I2C=m +CONFIG_BMA220=m +CONFIG_BMA400=m +CONFIG_BMA400_I2C=m +CONFIG_BMA400_SPI=m +CONFIG_BMC150_ACCEL=m +CONFIG_BMC150_ACCEL_I2C=m +CONFIG_BMC150_ACCEL_SPI=m +CONFIG_BMI088_ACCEL=m +CONFIG_BMI088_ACCEL_SPI=m +CONFIG_DA280=m +CONFIG_DA311=m +CONFIG_DMARD09=m +CONFIG_DMARD10=m +CONFIG_FXLS8962AF=m +CONFIG_FXLS8962AF_I2C=m +CONFIG_FXLS8962AF_SPI=m +CONFIG_HID_SENSOR_ACCEL_3D=m +CONFIG_IIO_CROS_EC_ACCEL_LEGACY=m +CONFIG_IIO_ST_ACCEL_3AXIS=m +CONFIG_IIO_ST_ACCEL_I2C_3AXIS=m +CONFIG_IIO_ST_ACCEL_SPI_3AXIS=m +CONFIG_KXSD9=m +CONFIG_KXSD9_SPI=m +CONFIG_KXSD9_I2C=m +CONFIG_KXCJK1013=m +CONFIG_MC3230=m +CONFIG_MMA7455=m +CONFIG_MMA7455_I2C=m +CONFIG_MMA7455_SPI=m +CONFIG_MMA7660=m +CONFIG_MMA8452=m +CONFIG_MMA9551_CORE=m +CONFIG_MMA9551=m +CONFIG_MMA9553=m +CONFIG_MXC4005=m +CONFIG_MXC6255=m +CONFIG_SCA3000=m +CONFIG_SCA3300=m +CONFIG_STK8312=m +CONFIG_STK8BA50=m +# end of Accelerometers + +# +# Analog to digital converters +# +CONFIG_AD_SIGMA_DELTA=m +CONFIG_AD7091R5=m +CONFIG_AD7124=m +CONFIG_AD7192=m +CONFIG_AD7266=m +CONFIG_AD7291=m +CONFIG_AD7292=m +CONFIG_AD7298=m +CONFIG_AD7476=m +CONFIG_AD7606=m +CONFIG_AD7606_IFACE_PARALLEL=m +CONFIG_AD7606_IFACE_SPI=m +CONFIG_AD7766=m +CONFIG_AD7768_1=m +CONFIG_AD7780=m +CONFIG_AD7791=m +CONFIG_AD7793=m +CONFIG_AD7887=m +CONFIG_AD7923=m +CONFIG_AD7949=m +CONFIG_AD799X=m +CONFIG_AXP20X_ADC=m +CONFIG_AXP288_ADC=m +CONFIG_CC10001_ADC=m +CONFIG_DA9150_GPADC=m +CONFIG_DLN2_ADC=m +CONFIG_HI8435=m +CONFIG_HX711=m +CONFIG_INA2XX_ADC=m +CONFIG_INTEL_MRFLD_ADC=m +CONFIG_LP8788_ADC=m +CONFIG_LTC2471=m +CONFIG_LTC2485=m +CONFIG_LTC2496=m +CONFIG_LTC2497=m +CONFIG_MAX1027=m +CONFIG_MAX11100=m +CONFIG_MAX1118=m +CONFIG_MAX1241=m +CONFIG_MAX1363=m +CONFIG_MAX9611=m +CONFIG_MCP320X=m +CONFIG_MCP3422=m +CONFIG_MCP3911=m +# CONFIG_MEDIATEK_MT6360_ADC is not set +CONFIG_MEN_Z188_ADC=m +CONFIG_MP2629_ADC=m +CONFIG_NAU7802=m +CONFIG_PALMAS_GPADC=m +CONFIG_QCOM_VADC_COMMON=m +CONFIG_QCOM_SPMI_IADC=m +CONFIG_QCOM_SPMI_VADC=m +CONFIG_QCOM_SPMI_ADC5=m +CONFIG_TI_ADC081C=m +CONFIG_TI_ADC0832=m +CONFIG_TI_ADC084S021=m +CONFIG_TI_ADC12138=m +CONFIG_TI_ADC108S102=m +CONFIG_TI_ADC128S052=m +CONFIG_TI_ADC161S626=m +CONFIG_TI_ADS1015=m +CONFIG_TI_ADS7950=m +CONFIG_TI_ADS131E08=m +CONFIG_TI_AM335X_ADC=m +CONFIG_TI_TLC4541=m +CONFIG_TI_TSC2046=m +CONFIG_TWL4030_MADC=m +CONFIG_TWL6030_GPADC=m +CONFIG_VIPERBOARD_ADC=m +CONFIG_XILINX_XADC=m +# end of Analog to digital converters + +# +# Analog Front Ends +# +# end of Analog Front Ends + +# +# Amplifiers +# +CONFIG_AD8366=m +CONFIG_HMC425=m +# end of Amplifiers + +# +# Capacitance to digital converters +# +CONFIG_AD7150=m +# end of Capacitance to digital converters + +# +# Chemical Sensors +# +CONFIG_ATLAS_PH_SENSOR=m +CONFIG_ATLAS_EZO_SENSOR=m +CONFIG_BME680=m +CONFIG_BME680_I2C=m +CONFIG_BME680_SPI=m +CONFIG_CCS811=m +CONFIG_IAQCORE=m +CONFIG_PMS7003=m +CONFIG_SCD30_CORE=m +CONFIG_SCD30_I2C=m +CONFIG_SCD30_SERIAL=m +CONFIG_SCD4X=m +CONFIG_SENSIRION_SGP30=m +CONFIG_SENSIRION_SGP40=m +CONFIG_SPS30=m +CONFIG_SPS30_I2C=m +CONFIG_SPS30_SERIAL=m +CONFIG_SENSEAIR_SUNRISE_CO2=m +CONFIG_VZ89X=m +# end of Chemical Sensors + +CONFIG_IIO_CROS_EC_SENSORS_CORE=m +CONFIG_IIO_CROS_EC_SENSORS=m +CONFIG_IIO_CROS_EC_SENSORS_LID_ANGLE=m + +# +# Hid Sensor IIO Common +# +CONFIG_HID_SENSOR_IIO_COMMON=m +CONFIG_HID_SENSOR_IIO_TRIGGER=m +# end of Hid Sensor IIO Common + +CONFIG_IIO_MS_SENSORS_I2C=m + +# +# IIO SCMI Sensors +# +# end of IIO SCMI Sensors + +# +# SSP Sensor Common +# +CONFIG_IIO_SSP_SENSORS_COMMONS=m +CONFIG_IIO_SSP_SENSORHUB=m +# end of SSP Sensor Common + +CONFIG_IIO_ST_SENSORS_I2C=m +CONFIG_IIO_ST_SENSORS_SPI=m +CONFIG_IIO_ST_SENSORS_CORE=m + +# +# Digital to analog converters +# +CONFIG_AD5064=m +CONFIG_AD5360=m +CONFIG_AD5380=m +CONFIG_AD5421=m +CONFIG_AD5446=m +CONFIG_AD5449=m +CONFIG_AD5592R_BASE=m +CONFIG_AD5592R=m +CONFIG_AD5593R=m +CONFIG_AD5504=m +CONFIG_AD5624R_SPI=m +CONFIG_AD5686=m +CONFIG_AD5686_SPI=m +CONFIG_AD5696_I2C=m +CONFIG_AD5755=m +CONFIG_AD5758=m +CONFIG_AD5761=m +CONFIG_AD5764=m +CONFIG_AD5766=m +CONFIG_AD5770R=m +CONFIG_AD5791=m +CONFIG_AD7303=m +CONFIG_AD8801=m +CONFIG_DS4424=m +CONFIG_LTC1660=m +CONFIG_LTC2632=m +CONFIG_M62332=m +CONFIG_MAX517=m +CONFIG_MCP4725=m +CONFIG_MCP4922=m +CONFIG_TI_DAC082S085=m +CONFIG_TI_DAC5571=m +CONFIG_TI_DAC7311=m +CONFIG_TI_DAC7612=m +# end of Digital to analog converters + +# +# IIO dummy driver +# +CONFIG_IIO_SIMPLE_DUMMY=m +# CONFIG_IIO_SIMPLE_DUMMY_EVENTS is not set +# CONFIG_IIO_SIMPLE_DUMMY_BUFFER is not set +# end of IIO dummy driver + +# +# Frequency Synthesizers DDS/PLL +# + +# +# Clock Generator/Distribution +# +CONFIG_AD9523=m +# end of Clock Generator/Distribution + +# +# Phase-Locked Loop (PLL) frequency synthesizers +# +CONFIG_ADF4350=m +CONFIG_ADF4371=m +CONFIG_ADRF6780=m +# end of Phase-Locked Loop (PLL) frequency synthesizers +# end of Frequency Synthesizers DDS/PLL + +# +# Digital gyroscope sensors +# +CONFIG_ADIS16080=m +CONFIG_ADIS16130=m +CONFIG_ADIS16136=m +CONFIG_ADIS16260=m +CONFIG_ADXRS290=m +CONFIG_ADXRS450=m +CONFIG_BMG160=m +CONFIG_BMG160_I2C=m +CONFIG_BMG160_SPI=m +CONFIG_FXAS21002C=m +CONFIG_FXAS21002C_I2C=m +CONFIG_FXAS21002C_SPI=m +CONFIG_HID_SENSOR_GYRO_3D=m +CONFIG_MPU3050=m +CONFIG_MPU3050_I2C=m +CONFIG_IIO_ST_GYRO_3AXIS=m +CONFIG_IIO_ST_GYRO_I2C_3AXIS=m +CONFIG_IIO_ST_GYRO_SPI_3AXIS=m +CONFIG_ITG3200=m +# end of Digital gyroscope sensors + +# +# Health Sensors +# + +# +# Heart Rate Monitors +# +CONFIG_AFE4403=m +CONFIG_AFE4404=m +CONFIG_MAX30100=m +CONFIG_MAX30102=m +# end of Heart Rate Monitors +# end of Health Sensors + +# +# Humidity sensors +# +CONFIG_AM2315=m +CONFIG_DHT11=m +CONFIG_HDC100X=m +CONFIG_HDC2010=m +CONFIG_HID_SENSOR_HUMIDITY=m +CONFIG_HTS221=m +CONFIG_HTS221_I2C=m +CONFIG_HTS221_SPI=m +CONFIG_HTU21=m +CONFIG_SI7005=m +CONFIG_SI7020=m +# end of Humidity sensors + +# +# Inertial measurement units +# +CONFIG_ADIS16400=m +CONFIG_ADIS16460=m +CONFIG_ADIS16475=m +CONFIG_ADIS16480=m +CONFIG_BMI160=m +CONFIG_BMI160_I2C=m +CONFIG_BMI160_SPI=m +CONFIG_FXOS8700=m +CONFIG_FXOS8700_I2C=m +CONFIG_FXOS8700_SPI=m +CONFIG_KMX61=m +CONFIG_INV_ICM42600=m +CONFIG_INV_ICM42600_I2C=m +CONFIG_INV_ICM42600_SPI=m +CONFIG_INV_MPU6050_IIO=m +CONFIG_INV_MPU6050_I2C=m +CONFIG_INV_MPU6050_SPI=m +CONFIG_IIO_ST_LSM6DSX=m +CONFIG_IIO_ST_LSM6DSX_I2C=m +CONFIG_IIO_ST_LSM6DSX_SPI=m +CONFIG_IIO_ST_LSM6DSX_I3C=m +CONFIG_IIO_ST_LSM9DS0=m +CONFIG_IIO_ST_LSM9DS0_I2C=m +CONFIG_IIO_ST_LSM9DS0_SPI=m +# end of Inertial measurement units + +CONFIG_IIO_ADIS_LIB=m +CONFIG_IIO_ADIS_LIB_BUFFER=y + +# +# Light sensors +# +CONFIG_ACPI_ALS=m +CONFIG_ADJD_S311=m +CONFIG_ADUX1020=m +CONFIG_AL3010=m +CONFIG_AL3320A=m +CONFIG_APDS9300=m +CONFIG_APDS9960=m +CONFIG_AS73211=m +CONFIG_BH1750=m +CONFIG_BH1780=m +CONFIG_CM32181=m +CONFIG_CM3232=m +CONFIG_CM3323=m +CONFIG_CM36651=m +CONFIG_IIO_CROS_EC_LIGHT_PROX=m +CONFIG_GP2AP002=m +CONFIG_GP2AP020A00F=m +CONFIG_IQS621_ALS=m +CONFIG_SENSORS_ISL29018=m +CONFIG_SENSORS_ISL29028=m +CONFIG_ISL29125=m +CONFIG_HID_SENSOR_ALS=m +CONFIG_HID_SENSOR_PROX=m +CONFIG_JSA1212=m +CONFIG_RPR0521=m +CONFIG_SENSORS_LM3533=m +CONFIG_LTR501=m +CONFIG_LV0104CS=m +CONFIG_MAX44000=m +CONFIG_MAX44009=m +CONFIG_NOA1305=m +CONFIG_OPT3001=m +CONFIG_PA12203001=m +CONFIG_SI1133=m +CONFIG_SI1145=m +CONFIG_STK3310=m +CONFIG_ST_UVIS25=m +CONFIG_ST_UVIS25_I2C=m +CONFIG_ST_UVIS25_SPI=m +CONFIG_TCS3414=m +CONFIG_TCS3472=m +CONFIG_SENSORS_TSL2563=m +CONFIG_TSL2583=m +CONFIG_TSL2591=m +CONFIG_TSL2772=m +CONFIG_TSL4531=m +CONFIG_US5182D=m +CONFIG_VCNL4000=m +CONFIG_VCNL4035=m +CONFIG_VEML6030=m +CONFIG_VEML6070=m +CONFIG_VL6180=m +CONFIG_ZOPT2201=m +# end of Light sensors + +# +# Magnetometer sensors +# +CONFIG_AK8975=m +CONFIG_AK09911=m +CONFIG_BMC150_MAGN=m +CONFIG_BMC150_MAGN_I2C=m +CONFIG_BMC150_MAGN_SPI=m +CONFIG_MAG3110=m +CONFIG_HID_SENSOR_MAGNETOMETER_3D=m +CONFIG_MMC35240=m +CONFIG_IIO_ST_MAGN_3AXIS=m +CONFIG_IIO_ST_MAGN_I2C_3AXIS=m +CONFIG_IIO_ST_MAGN_SPI_3AXIS=m +CONFIG_SENSORS_HMC5843=m +CONFIG_SENSORS_HMC5843_I2C=m +CONFIG_SENSORS_HMC5843_SPI=m +CONFIG_SENSORS_RM3100=m +CONFIG_SENSORS_RM3100_I2C=m +CONFIG_SENSORS_RM3100_SPI=m +CONFIG_YAMAHA_YAS530=m +# end of Magnetometer sensors + +# +# Multiplexers +# +# end of Multiplexers + +# +# Inclinometer sensors +# +CONFIG_HID_SENSOR_INCLINOMETER_3D=m +CONFIG_HID_SENSOR_DEVICE_ROTATION=m +# end of Inclinometer sensors + +# +# Triggers - standalone +# +CONFIG_IIO_HRTIMER_TRIGGER=m +CONFIG_IIO_INTERRUPT_TRIGGER=m +CONFIG_IIO_TIGHTLOOP_TRIGGER=m +CONFIG_IIO_SYSFS_TRIGGER=m +# end of Triggers - standalone + +# +# Linear and angular position sensors +# +CONFIG_IQS624_POS=m +CONFIG_HID_SENSOR_CUSTOM_INTEL_HINGE=m +# end of Linear and angular position sensors + +# +# Digital potentiometers +# +CONFIG_AD5110=m +CONFIG_AD5272=m +CONFIG_DS1803=m +CONFIG_MAX5432=m +CONFIG_MAX5481=m +CONFIG_MAX5487=m +CONFIG_MCP4018=m +CONFIG_MCP4131=m +CONFIG_MCP4531=m +CONFIG_MCP41010=m +CONFIG_TPL0102=m +# end of Digital potentiometers + +# +# Digital potentiostats +# +CONFIG_LMP91000=m +# end of Digital potentiostats + +# +# Pressure sensors +# +CONFIG_ABP060MG=m +CONFIG_BMP280=m +CONFIG_BMP280_I2C=m +CONFIG_BMP280_SPI=m +CONFIG_IIO_CROS_EC_BARO=m +CONFIG_DLHL60D=m +CONFIG_DPS310=m +CONFIG_HID_SENSOR_PRESS=m +CONFIG_HP03=m +CONFIG_ICP10100=m +CONFIG_MPL115=m +CONFIG_MPL115_I2C=m +CONFIG_MPL115_SPI=m +CONFIG_MPL3115=m +CONFIG_MS5611=m +CONFIG_MS5611_I2C=m +CONFIG_MS5611_SPI=m +CONFIG_MS5637=m +CONFIG_IIO_ST_PRESS=m +CONFIG_IIO_ST_PRESS_I2C=m +CONFIG_IIO_ST_PRESS_SPI=m +CONFIG_T5403=m +CONFIG_HP206C=m +CONFIG_ZPA2326=m +CONFIG_ZPA2326_I2C=m +CONFIG_ZPA2326_SPI=m +# end of Pressure sensors + +# +# Lightning sensors +# +CONFIG_AS3935=m +# end of Lightning sensors + +# +# Proximity and distance sensors +# +CONFIG_CROS_EC_MKBP_PROXIMITY=m +CONFIG_ISL29501=m +CONFIG_LIDAR_LITE_V2=m +CONFIG_MB1232=m +CONFIG_PING=m +CONFIG_RFD77402=m +CONFIG_SRF04=m +CONFIG_SX9310=m +CONFIG_SX9500=m +CONFIG_SRF08=m +CONFIG_VCNL3020=m +CONFIG_VL53L0X_I2C=m +# end of Proximity and distance sensors + +# +# Resolver to digital converters +# +CONFIG_AD2S90=m +CONFIG_AD2S1200=m +# end of Resolver to digital converters + +# +# Temperature sensors +# +CONFIG_IQS620AT_TEMP=m +CONFIG_LTC2983=m +CONFIG_MAXIM_THERMOCOUPLE=m +CONFIG_HID_SENSOR_TEMP=m +CONFIG_MLX90614=m +CONFIG_MLX90632=m +CONFIG_TMP006=m +CONFIG_TMP007=m +CONFIG_TMP117=m +CONFIG_TSYS01=m +CONFIG_TSYS02D=m +CONFIG_MAX31856=m +CONFIG_MAX31865=m +# end of Temperature sensors + +CONFIG_NTB=m +CONFIG_NTB_MSI=y +CONFIG_NTB_IDT=m +CONFIG_NTB_EPF=m +CONFIG_NTB_SWITCHTEC=m +CONFIG_NTB_PINGPONG=m +CONFIG_NTB_TOOL=m +CONFIG_NTB_PERF=m +CONFIG_NTB_MSI_TEST=m +CONFIG_NTB_TRANSPORT=m +CONFIG_VME_BUS=y + +# +# VME Bridge Drivers +# +CONFIG_VME_CA91CX42=m +CONFIG_VME_TSI148=m +# CONFIG_VME_FAKE is not set + +# +# VME Board Drivers +# +CONFIG_VMIVME_7805=m + +# +# VME Device Drivers +# +CONFIG_VME_USER=m +CONFIG_PWM=y +CONFIG_PWM_SYSFS=y +# CONFIG_PWM_DEBUG is not set +CONFIG_PWM_CRC=y +CONFIG_PWM_CROS_EC=m +CONFIG_PWM_DWC=m +CONFIG_PWM_IQS620A=m +CONFIG_PWM_LP3943=m +CONFIG_PWM_LPSS=m +CONFIG_PWM_LPSS_PCI=m +CONFIG_PWM_LPSS_PLATFORM=m +CONFIG_PWM_PCA9685=m +CONFIG_PWM_TWL=m +CONFIG_PWM_TWL_LED=m + +# +# IRQ chip support +# +CONFIG_MADERA_IRQ=m +# end of IRQ chip support + +CONFIG_IPACK_BUS=m +CONFIG_BOARD_TPCI200=m +CONFIG_SERIAL_IPOCTAL=m +CONFIG_RESET_CONTROLLER=y +CONFIG_RESET_TI_SYSCON=m + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +CONFIG_USB_LGM_PHY=m +CONFIG_PHY_CAN_TRANSCEIVER=m + +# +# PHY drivers for Broadcom platforms +# +CONFIG_BCM_KONA_USB2_PHY=m +# end of PHY drivers for Broadcom platforms + +CONFIG_PHY_PXA_28NM_HSIC=m +CONFIG_PHY_PXA_28NM_USB2=m +CONFIG_PHY_CPCAP_USB=m +CONFIG_PHY_QCOM_USB_HS=m +CONFIG_PHY_QCOM_USB_HSIC=m +CONFIG_PHY_SAMSUNG_USB2=m +CONFIG_PHY_TUSB1210=m +CONFIG_PHY_INTEL_LGM_EMMC=m +# end of PHY Subsystem + +CONFIG_POWERCAP=y +CONFIG_INTEL_RAPL_CORE=m +CONFIG_INTEL_RAPL=m +# CONFIG_IDLE_INJECT is not set +# CONFIG_DTPM is not set +CONFIG_MCB=m +CONFIG_MCB_PCI=m +CONFIG_MCB_LPC=m + +# +# Performance monitor support +# +# end of Performance monitor support + +CONFIG_RAS=y +CONFIG_USB4=m +# CONFIG_USB4_DEBUGFS_WRITE is not set +# CONFIG_USB4_DMA_TEST is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +CONFIG_LIBNVDIMM=y +CONFIG_BLK_DEV_PMEM=m +CONFIG_ND_BLK=m +CONFIG_ND_CLAIM=y +CONFIG_ND_BTT=m +CONFIG_BTT=y +CONFIG_NVDIMM_KEYS=y +CONFIG_DAX_DRIVER=y +CONFIG_DAX=y +CONFIG_DEV_DAX=m +CONFIG_NVMEM=y +CONFIG_NVMEM_SYSFS=y +CONFIG_NVMEM_SPMI_SDAM=m +CONFIG_RAVE_SP_EEPROM=m +CONFIG_NVMEM_RMEM=m + +# +# HW tracing support +# +CONFIG_STM=m +CONFIG_STM_PROTO_BASIC=m +CONFIG_STM_PROTO_SYS_T=m +CONFIG_STM_DUMMY=m +CONFIG_STM_SOURCE_CONSOLE=m +CONFIG_STM_SOURCE_HEARTBEAT=m +CONFIG_STM_SOURCE_FTRACE=m +CONFIG_INTEL_TH=m +CONFIG_INTEL_TH_PCI=m +CONFIG_INTEL_TH_ACPI=m +CONFIG_INTEL_TH_GTH=m +CONFIG_INTEL_TH_STH=m +CONFIG_INTEL_TH_MSU=m +CONFIG_INTEL_TH_PTI=m +# CONFIG_INTEL_TH_DEBUG is not set +# end of HW tracing support + +CONFIG_FPGA=m +CONFIG_ALTERA_PR_IP_CORE=m +CONFIG_FPGA_MGR_ALTERA_PS_SPI=m +CONFIG_FPGA_MGR_ALTERA_CVP=m +CONFIG_FPGA_MGR_XILINX_SPI=m +CONFIG_FPGA_MGR_MACHXO2_SPI=m +CONFIG_FPGA_BRIDGE=m +CONFIG_ALTERA_FREEZE_BRIDGE=m +CONFIG_XILINX_PR_DECOUPLER=m +CONFIG_FPGA_REGION=m +CONFIG_FPGA_DFL=m +CONFIG_FPGA_DFL_FME=m +CONFIG_FPGA_DFL_FME_MGR=m +CONFIG_FPGA_DFL_FME_BRIDGE=m +CONFIG_FPGA_DFL_FME_REGION=m +CONFIG_FPGA_DFL_AFU=m +CONFIG_FPGA_DFL_NIOS_INTEL_PAC_N3000=m +CONFIG_FPGA_DFL_PCI=m +CONFIG_TEE=m + +# +# TEE drivers +# +# end of TEE drivers + +CONFIG_MULTIPLEXER=m + +# +# Multiplexer drivers +# +CONFIG_MUX_ADG792A=m +CONFIG_MUX_ADGS1408=m +CONFIG_MUX_GPIO=m +# end of Multiplexer drivers + +CONFIG_PM_OPP=y +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +# CONFIG_INTERCONNECT is not set +CONFIG_COUNTER=m +CONFIG_INTERRUPT_CNT=m +CONFIG_INTEL_QEP=m +CONFIG_MOST=m +CONFIG_MOST_USB_HDM=m +CONFIG_MOST_CDEV=m +CONFIG_MOST_SND=m +# end of Device Drivers + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +CONFIG_VALIDATE_FS_PARSER=y +CONFIG_FS_IOMAP=y +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +CONFIG_EXT4_FS=y +CONFIG_EXT4_USE_FOR_EXT2=y +CONFIG_EXT4_FS_POSIX_ACL=y +CONFIG_EXT4_FS_SECURITY=y +# CONFIG_EXT4_DEBUG is not set +CONFIG_JBD2=y +# CONFIG_JBD2_DEBUG is not set +CONFIG_FS_MBCACHE=y +CONFIG_REISERFS_FS=m +# CONFIG_REISERFS_CHECK is not set +# CONFIG_REISERFS_PROC_INFO is not set +CONFIG_REISERFS_FS_XATTR=y +CONFIG_REISERFS_FS_POSIX_ACL=y +CONFIG_REISERFS_FS_SECURITY=y +CONFIG_JFS_FS=m +CONFIG_JFS_POSIX_ACL=y +CONFIG_JFS_SECURITY=y +# CONFIG_JFS_DEBUG is not set +CONFIG_JFS_STATISTICS=y +CONFIG_XFS_FS=m +CONFIG_XFS_SUPPORT_V4=y +CONFIG_XFS_QUOTA=y +CONFIG_XFS_POSIX_ACL=y +CONFIG_XFS_RT=y +# CONFIG_XFS_ONLINE_SCRUB is not set +# CONFIG_XFS_WARN is not set +# CONFIG_XFS_DEBUG is not set +CONFIG_GFS2_FS=m +CONFIG_GFS2_FS_LOCKING_DLM=y +CONFIG_OCFS2_FS=m +CONFIG_OCFS2_FS_O2CB=m +CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m +CONFIG_OCFS2_FS_STATS=y +CONFIG_OCFS2_DEBUG_MASKLOG=y +# CONFIG_OCFS2_DEBUG_FS is not set +CONFIG_BTRFS_FS=m +CONFIG_BTRFS_FS_POSIX_ACL=y +# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set +# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set +# CONFIG_BTRFS_DEBUG is not set +# CONFIG_BTRFS_ASSERT is not set +# CONFIG_BTRFS_FS_REF_VERIFY is not set +CONFIG_NILFS2_FS=m +CONFIG_F2FS_FS=m +CONFIG_F2FS_STAT_FS=y +CONFIG_F2FS_FS_XATTR=y +CONFIG_F2FS_FS_POSIX_ACL=y +CONFIG_F2FS_FS_SECURITY=y +# CONFIG_F2FS_CHECK_FS is not set +# CONFIG_F2FS_FAULT_INJECTION is not set +# CONFIG_F2FS_FS_COMPRESSION is not set +# CONFIG_F2FS_IOSTAT is not set +CONFIG_ZONEFS_FS=m +CONFIG_FS_DAX=y +CONFIG_FS_POSIX_ACL=y +CONFIG_EXPORTFS=y +# CONFIG_EXPORTFS_BLOCK_OPS is not set +CONFIG_FILE_LOCKING=y +# CONFIG_FS_ENCRYPTION is not set +CONFIG_FS_VERITY=y +# CONFIG_FS_VERITY_DEBUG is not set +# CONFIG_FS_VERITY_BUILTIN_SIGNATURES is not set +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y +CONFIG_QUOTA=y +CONFIG_QUOTA_NETLINK_INTERFACE=y +# CONFIG_PRINT_QUOTA_WARNING is not set +# CONFIG_QUOTA_DEBUG is not set +CONFIG_QUOTA_TREE=m +CONFIG_QFMT_V1=m +CONFIG_QFMT_V2=m +CONFIG_QUOTACTL=y +CONFIG_AUTOFS4_FS=m +CONFIG_AUTOFS_FS=m +CONFIG_FUSE_FS=y +CONFIG_CUSE=m +CONFIG_VIRTIO_FS=m +CONFIG_FUSE_DAX=y +CONFIG_OVERLAY_FS=m +# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set +# CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW is not set +# CONFIG_OVERLAY_FS_INDEX is not set +# CONFIG_OVERLAY_FS_METACOPY is not set + +# +# Caches +# +CONFIG_NETFS_SUPPORT=m +CONFIG_NETFS_STATS=y +CONFIG_FSCACHE=m +CONFIG_FSCACHE_STATS=y +# CONFIG_FSCACHE_DEBUG is not set +CONFIG_CACHEFILES=m +# CONFIG_CACHEFILES_DEBUG is not set +# end of Caches + +# +# CD-ROM/DVD Filesystems +# +CONFIG_ISO9660_FS=m +CONFIG_JOLIET=y +CONFIG_ZISOFS=y +CONFIG_UDF_FS=m +# end of CD-ROM/DVD Filesystems + +# +# DOS/FAT/EXFAT/NT Filesystems +# +CONFIG_FAT_FS=y +CONFIG_MSDOS_FS=m +CONFIG_VFAT_FS=y +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +# CONFIG_FAT_DEFAULT_UTF8 is not set +CONFIG_EXFAT_FS=m +CONFIG_EXFAT_DEFAULT_IOCHARSET="utf8" +CONFIG_NTFS_FS=m +# CONFIG_NTFS_DEBUG is not set +# CONFIG_NTFS_RW is not set +CONFIG_NTFS3_FS=m +CONFIG_NTFS3_LZX_XPRESS=y +# CONFIG_NTFS3_FS_POSIX_ACL is not set +# end of DOS/FAT/EXFAT/NT Filesystems + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_VMCORE=y +# CONFIG_PROC_VMCORE_DEVICE_DUMP is not set +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_PROC_CHILDREN=y +CONFIG_PROC_PID_ARCH_STATUS=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +CONFIG_HUGETLBFS=y +CONFIG_HUGETLB_PAGE=y +CONFIG_MEMFD_CREATE=y +CONFIG_CONFIGFS_FS=m +CONFIG_EFIVAR_FS=y +# end of Pseudo filesystems + +CONFIG_MISC_FILESYSTEMS=y +CONFIG_ORANGEFS_FS=m +CONFIG_ADFS_FS=m +# CONFIG_ADFS_FS_RW is not set +CONFIG_AFFS_FS=m +CONFIG_ECRYPT_FS=y +CONFIG_ECRYPT_FS_MESSAGING=y +CONFIG_HFS_FS=m +CONFIG_HFSPLUS_FS=m +CONFIG_BEFS_FS=m +# CONFIG_BEFS_DEBUG is not set +CONFIG_BFS_FS=m +CONFIG_EFS_FS=m +CONFIG_JFFS2_FS=m +CONFIG_JFFS2_FS_DEBUG=0 +CONFIG_JFFS2_FS_WRITEBUFFER=y +# CONFIG_JFFS2_FS_WBUF_VERIFY is not set +# CONFIG_JFFS2_SUMMARY is not set +CONFIG_JFFS2_FS_XATTR=y +CONFIG_JFFS2_FS_POSIX_ACL=y +CONFIG_JFFS2_FS_SECURITY=y +CONFIG_JFFS2_COMPRESSION_OPTIONS=y +CONFIG_JFFS2_ZLIB=y +CONFIG_JFFS2_LZO=y +CONFIG_JFFS2_RTIME=y +# CONFIG_JFFS2_RUBIN is not set +# CONFIG_JFFS2_CMODE_NONE is not set +# CONFIG_JFFS2_CMODE_PRIORITY is not set +# CONFIG_JFFS2_CMODE_SIZE is not set +CONFIG_JFFS2_CMODE_FAVOURLZO=y +CONFIG_UBIFS_FS=m +# CONFIG_UBIFS_FS_ADVANCED_COMPR is not set +CONFIG_UBIFS_FS_LZO=y +CONFIG_UBIFS_FS_ZLIB=y +CONFIG_UBIFS_FS_ZSTD=y +CONFIG_UBIFS_ATIME_SUPPORT=y +CONFIG_UBIFS_FS_XATTR=y +CONFIG_UBIFS_FS_SECURITY=y +CONFIG_UBIFS_FS_AUTHENTICATION=y +CONFIG_CRAMFS=m +CONFIG_CRAMFS_BLOCKDEV=y +# CONFIG_CRAMFS_MTD is not set +CONFIG_SQUASHFS=m +# CONFIG_SQUASHFS_FILE_CACHE is not set +CONFIG_SQUASHFS_FILE_DIRECT=y +# CONFIG_SQUASHFS_DECOMP_SINGLE is not set +# CONFIG_SQUASHFS_DECOMP_MULTI is not set +CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU=y +CONFIG_SQUASHFS_XATTR=y +CONFIG_SQUASHFS_ZLIB=y +CONFIG_SQUASHFS_LZ4=y +CONFIG_SQUASHFS_LZO=y +CONFIG_SQUASHFS_XZ=y +# CONFIG_SQUASHFS_ZSTD is not set +# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set +# CONFIG_SQUASHFS_EMBEDDED is not set +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 +CONFIG_VXFS_FS=m +CONFIG_MINIX_FS=m +CONFIG_OMFS_FS=m +CONFIG_HPFS_FS=m +CONFIG_QNX4FS_FS=m +CONFIG_QNX6FS_FS=m +# CONFIG_QNX6FS_DEBUG is not set +CONFIG_ROMFS_FS=m +CONFIG_ROMFS_BACKED_BY_BLOCK=y +# CONFIG_ROMFS_BACKED_BY_MTD is not set +# CONFIG_ROMFS_BACKED_BY_BOTH is not set +CONFIG_ROMFS_ON_BLOCK=y +CONFIG_PSTORE=y +CONFIG_PSTORE_DEFAULT_KMSG_BYTES=10240 +CONFIG_PSTORE_DEFLATE_COMPRESS=m +# CONFIG_PSTORE_LZO_COMPRESS is not set +# CONFIG_PSTORE_LZ4_COMPRESS is not set +# CONFIG_PSTORE_LZ4HC_COMPRESS is not set +# CONFIG_PSTORE_842_COMPRESS is not set +# CONFIG_PSTORE_ZSTD_COMPRESS is not set +CONFIG_PSTORE_COMPRESS=y +CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y +CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" +# CONFIG_PSTORE_CONSOLE is not set +# CONFIG_PSTORE_PMSG is not set +# CONFIG_PSTORE_FTRACE is not set +CONFIG_PSTORE_RAM=m +# CONFIG_PSTORE_BLK is not set +CONFIG_SYSV_FS=m +CONFIG_UFS_FS=m +# CONFIG_UFS_FS_WRITE is not set +# CONFIG_UFS_DEBUG is not set +CONFIG_EROFS_FS=m +# CONFIG_EROFS_FS_DEBUG is not set +CONFIG_EROFS_FS_XATTR=y +CONFIG_EROFS_FS_POSIX_ACL=y +CONFIG_EROFS_FS_SECURITY=y +# CONFIG_EROFS_FS_ZIP is not set +CONFIG_VBOXSF_FS=m +CONFIG_NETWORK_FILESYSTEMS=y +CONFIG_NFS_FS=m +CONFIG_NFS_V2=m +CONFIG_NFS_V3=m +CONFIG_NFS_V3_ACL=y +CONFIG_NFS_V4=m +CONFIG_NFS_SWAP=y +CONFIG_NFS_V4_1=y +CONFIG_NFS_V4_2=y +CONFIG_PNFS_FILE_LAYOUT=m +CONFIG_PNFS_BLOCK=m +CONFIG_PNFS_FLEXFILE_LAYOUT=m +CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org" +CONFIG_NFS_V4_1_MIGRATION=y +CONFIG_NFS_V4_SECURITY_LABEL=y +CONFIG_NFS_FSCACHE=y +# CONFIG_NFS_USE_LEGACY_DNS is not set +CONFIG_NFS_USE_KERNEL_DNS=y +CONFIG_NFS_DEBUG=y +# CONFIG_NFS_DISABLE_UDP_SUPPORT is not set +# CONFIG_NFS_V4_2_READ_PLUS is not set +CONFIG_NFSD=m +CONFIG_NFSD_V2_ACL=y +CONFIG_NFSD_V3=y +CONFIG_NFSD_V3_ACL=y +CONFIG_NFSD_V4=y +# CONFIG_NFSD_BLOCKLAYOUT is not set +# CONFIG_NFSD_SCSILAYOUT is not set +# CONFIG_NFSD_FLEXFILELAYOUT is not set +# CONFIG_NFSD_V4_2_INTER_SSC is not set +CONFIG_NFSD_V4_SECURITY_LABEL=y +CONFIG_GRACE_PERIOD=m +CONFIG_LOCKD=m +CONFIG_LOCKD_V4=y +CONFIG_NFS_ACL_SUPPORT=m +CONFIG_NFS_COMMON=y +CONFIG_NFS_V4_2_SSC_HELPER=y +CONFIG_SUNRPC=m +CONFIG_SUNRPC_GSS=m +CONFIG_SUNRPC_BACKCHANNEL=y +CONFIG_SUNRPC_SWAP=y +CONFIG_RPCSEC_GSS_KRB5=m +CONFIG_SUNRPC_DISABLE_INSECURE_ENCTYPES=y +CONFIG_SUNRPC_DEBUG=y +CONFIG_SUNRPC_XPRT_RDMA=m +CONFIG_CEPH_FS=m +CONFIG_CEPH_FSCACHE=y +CONFIG_CEPH_FS_POSIX_ACL=y +CONFIG_CEPH_FS_SECURITY_LABEL=y +CONFIG_CIFS=m +# CONFIG_CIFS_STATS2 is not set +CONFIG_CIFS_ALLOW_INSECURE_LEGACY=y +CONFIG_CIFS_UPCALL=y +CONFIG_CIFS_XATTR=y +CONFIG_CIFS_POSIX=y +CONFIG_CIFS_DEBUG=y +# CONFIG_CIFS_DEBUG2 is not set +# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set +CONFIG_CIFS_DFS_UPCALL=y +CONFIG_CIFS_SWN_UPCALL=y +# CONFIG_CIFS_SMB_DIRECT is not set +CONFIG_CIFS_FSCACHE=y +# CONFIG_SMB_SERVER is not set +CONFIG_SMBFS_COMMON=m +CONFIG_CODA_FS=m +CONFIG_AFS_FS=m +# CONFIG_AFS_DEBUG is not set +CONFIG_AFS_FSCACHE=y +# CONFIG_AFS_DEBUG_CURSOR is not set +CONFIG_9P_FS=m +CONFIG_9P_FSCACHE=y +CONFIG_9P_FS_POSIX_ACL=y +CONFIG_9P_FS_SECURITY=y +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="utf8" +CONFIG_NLS_CODEPAGE_437=y +CONFIG_NLS_CODEPAGE_737=m +CONFIG_NLS_CODEPAGE_775=m +CONFIG_NLS_CODEPAGE_850=m +CONFIG_NLS_CODEPAGE_852=m +CONFIG_NLS_CODEPAGE_855=m +CONFIG_NLS_CODEPAGE_857=m +CONFIG_NLS_CODEPAGE_860=m +CONFIG_NLS_CODEPAGE_861=m +CONFIG_NLS_CODEPAGE_862=m +CONFIG_NLS_CODEPAGE_863=m +CONFIG_NLS_CODEPAGE_864=m +CONFIG_NLS_CODEPAGE_865=m +CONFIG_NLS_CODEPAGE_866=m +CONFIG_NLS_CODEPAGE_869=m +CONFIG_NLS_CODEPAGE_936=m +CONFIG_NLS_CODEPAGE_950=m +CONFIG_NLS_CODEPAGE_932=m +CONFIG_NLS_CODEPAGE_949=m +CONFIG_NLS_CODEPAGE_874=m +CONFIG_NLS_ISO8859_8=m +CONFIG_NLS_CODEPAGE_1250=m +CONFIG_NLS_CODEPAGE_1251=m +CONFIG_NLS_ASCII=m +CONFIG_NLS_ISO8859_1=m +CONFIG_NLS_ISO8859_2=m +CONFIG_NLS_ISO8859_3=m +CONFIG_NLS_ISO8859_4=m +CONFIG_NLS_ISO8859_5=m +CONFIG_NLS_ISO8859_6=m +CONFIG_NLS_ISO8859_7=m +CONFIG_NLS_ISO8859_9=m +CONFIG_NLS_ISO8859_13=m +CONFIG_NLS_ISO8859_14=m +CONFIG_NLS_ISO8859_15=m +CONFIG_NLS_KOI8_R=m +CONFIG_NLS_KOI8_U=m +CONFIG_NLS_MAC_ROMAN=m +CONFIG_NLS_MAC_CELTIC=m +CONFIG_NLS_MAC_CENTEURO=m +CONFIG_NLS_MAC_CROATIAN=m +CONFIG_NLS_MAC_CYRILLIC=m +CONFIG_NLS_MAC_GAELIC=m +CONFIG_NLS_MAC_GREEK=m +CONFIG_NLS_MAC_ICELAND=m +CONFIG_NLS_MAC_INUIT=m +CONFIG_NLS_MAC_ROMANIAN=m +CONFIG_NLS_MAC_TURKISH=m +CONFIG_NLS_UTF8=m +CONFIG_DLM=m +# CONFIG_DLM_DEBUG is not set +# CONFIG_UNICODE is not set +CONFIG_IO_WQ=y +# end of File systems + +# +# Security options +# +CONFIG_KEYS=y +CONFIG_KEYS_REQUEST_CACHE=y +CONFIG_PERSISTENT_KEYRINGS=y +CONFIG_TRUSTED_KEYS=y +CONFIG_ENCRYPTED_KEYS=y +CONFIG_KEY_DH_OPERATIONS=y +CONFIG_KEY_NOTIFICATIONS=y +# CONFIG_SECURITY_DMESG_RESTRICT is not set +CONFIG_SECURITY=y +CONFIG_SECURITY_WRITABLE_HOOKS=y +CONFIG_SECURITYFS=y +CONFIG_SECURITY_NETWORK=y +CONFIG_PAGE_TABLE_ISOLATION=y +# CONFIG_SECURITY_INFINIBAND is not set +CONFIG_SECURITY_NETWORK_XFRM=y +CONFIG_SECURITY_PATH=y +CONFIG_INTEL_TXT=y +CONFIG_LSM_MMAP_MIN_ADDR=0 +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +CONFIG_HARDENED_USERCOPY=y +# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set +CONFIG_FORTIFY_SOURCE=y +# CONFIG_STATIC_USERMODEHELPER is not set +CONFIG_SECURITY_SELINUX=y +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SECURITY_SELINUX_DISABLE=y +CONFIG_SECURITY_SELINUX_DEVELOP=y +CONFIG_SECURITY_SELINUX_AVC_STATS=y +CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 +CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS=9 +CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE=256 +CONFIG_SECURITY_SMACK=y +# CONFIG_SECURITY_SMACK_BRINGUP is not set +CONFIG_SECURITY_SMACK_NETFILTER=y +# CONFIG_SECURITY_SMACK_APPEND_SIGNALS is not set +CONFIG_SECURITY_TOMOYO=y +CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY=2048 +CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG=1024 +# CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER is not set +CONFIG_SECURITY_TOMOYO_POLICY_LOADER="/sbin/tomoyo-init" +CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER="/sbin/init" +# CONFIG_SECURITY_TOMOYO_INSECURE_BUILTIN_SETTING is not set +CONFIG_SECURITY_APPARMOR=y +CONFIG_SECURITY_APPARMOR_HASH=y +CONFIG_SECURITY_APPARMOR_HASH_DEFAULT=y +# CONFIG_SECURITY_APPARMOR_DEBUG is not set +# CONFIG_SECURITY_LOADPIN is not set +CONFIG_SECURITY_YAMA=y +# CONFIG_SECURITY_SAFESETID is not set +# CONFIG_SECURITY_LOCKDOWN_LSM is not set +CONFIG_SECURITY_LANDLOCK=y +CONFIG_INTEGRITY=y +CONFIG_INTEGRITY_SIGNATURE=y +CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y +CONFIG_INTEGRITY_TRUSTED_KEYRING=y +CONFIG_INTEGRITY_AUDIT=y +CONFIG_IMA=y +CONFIG_IMA_MEASURE_PCR_IDX=10 +CONFIG_IMA_LSM_RULES=y +# CONFIG_IMA_TEMPLATE is not set +CONFIG_IMA_NG_TEMPLATE=y +# CONFIG_IMA_SIG_TEMPLATE is not set +CONFIG_IMA_DEFAULT_TEMPLATE="ima-ng" +CONFIG_IMA_DEFAULT_HASH_SHA1=y +# CONFIG_IMA_DEFAULT_HASH_SHA256 is not set +# CONFIG_IMA_DEFAULT_HASH_SHA512 is not set +CONFIG_IMA_DEFAULT_HASH="sha1" +# CONFIG_IMA_WRITE_POLICY is not set +# CONFIG_IMA_READ_POLICY is not set +CONFIG_IMA_APPRAISE=y +# CONFIG_IMA_ARCH_POLICY is not set +# CONFIG_IMA_APPRAISE_BUILD_POLICY is not set +CONFIG_IMA_APPRAISE_BOOTPARAM=y +# CONFIG_IMA_APPRAISE_MODSIG is not set +CONFIG_IMA_TRUSTED_KEYRING=y +CONFIG_IMA_BLACKLIST_KEYRING=y +# CONFIG_IMA_LOAD_X509 is not set +CONFIG_IMA_MEASURE_ASYMMETRIC_KEYS=y +CONFIG_IMA_QUEUE_EARLY_BOOT_KEYS=y +# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set +CONFIG_IMA_DISABLE_HTABLE=y +CONFIG_EVM=y +CONFIG_EVM_ATTR_FSUUID=y +CONFIG_EVM_EXTRA_SMACK_XATTRS=y +# CONFIG_EVM_ADD_XATTRS is not set +# CONFIG_EVM_LOAD_X509 is not set +# CONFIG_DEFAULT_SECURITY_SELINUX is not set +# CONFIG_DEFAULT_SECURITY_SMACK is not set +# CONFIG_DEFAULT_SECURITY_TOMOYO is not set +CONFIG_DEFAULT_SECURITY_APPARMOR=y +# CONFIG_DEFAULT_SECURITY_DAC is not set +CONFIG_LSM="yama,loadpin,safesetid,integrity,apparmor,selinux,smack,tomoyo" + +# +# Kernel hardening options +# +CONFIG_GCC_PLUGIN_STRUCTLEAK=y + +# +# Memory initialization +# +# CONFIG_INIT_STACK_NONE is not set +# CONFIG_GCC_PLUGIN_STRUCTLEAK_USER is not set +# CONFIG_GCC_PLUGIN_STRUCTLEAK_BYREF is not set +CONFIG_GCC_PLUGIN_STRUCTLEAK_BYREF_ALL=y +# CONFIG_GCC_PLUGIN_STRUCTLEAK_VERBOSE is not set +CONFIG_GCC_PLUGIN_STACKLEAK=y +CONFIG_STACKLEAK_TRACK_MIN_SIZE=100 +# CONFIG_STACKLEAK_METRICS is not set +CONFIG_STACKLEAK_RUNTIME_DISABLE=y +CONFIG_INIT_ON_ALLOC_DEFAULT_ON=y +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +CONFIG_CC_HAS_ZERO_CALL_USED_REGS=y +CONFIG_ZERO_CALL_USED_REGS=y +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_XOR_BLOCKS=m +CONFIG_ASYNC_CORE=m +CONFIG_ASYNC_MEMCPY=m +CONFIG_ASYNC_XOR=m +CONFIG_ASYNC_PQ=m +CONFIG_ASYNC_RAID6_RECOV=m +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_SKCIPHER=y +CONFIG_CRYPTO_SKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_RNG_DEFAULT=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_AKCIPHER=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_KPP=y +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +CONFIG_CRYPTO_USER=m +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +CONFIG_CRYPTO_GF128MUL=y +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +CONFIG_CRYPTO_PCRYPT=m +CONFIG_CRYPTO_CRYPTD=m +CONFIG_CRYPTO_AUTHENC=m +CONFIG_CRYPTO_TEST=m +CONFIG_CRYPTO_SIMD=m +CONFIG_CRYPTO_ENGINE=m + +# +# Public-key cryptography +# +CONFIG_CRYPTO_RSA=y +CONFIG_CRYPTO_DH=y +CONFIG_CRYPTO_ECC=m +CONFIG_CRYPTO_ECDH=m +CONFIG_CRYPTO_ECDSA=m +CONFIG_CRYPTO_ECRDSA=m +CONFIG_CRYPTO_SM2=m +CONFIG_CRYPTO_CURVE25519=m + +# +# Authenticated Encryption with Associated Data +# +CONFIG_CRYPTO_CCM=m +CONFIG_CRYPTO_GCM=y +CONFIG_CRYPTO_CHACHA20POLY1305=m +CONFIG_CRYPTO_AEGIS128=m +CONFIG_CRYPTO_SEQIV=y +CONFIG_CRYPTO_ECHAINIV=m + +# +# Block modes +# +CONFIG_CRYPTO_CBC=y +CONFIG_CRYPTO_CFB=m +CONFIG_CRYPTO_CTR=y +CONFIG_CRYPTO_CTS=m +CONFIG_CRYPTO_ECB=y +CONFIG_CRYPTO_LRW=m +CONFIG_CRYPTO_OFB=m +CONFIG_CRYPTO_PCBC=m +CONFIG_CRYPTO_XTS=m +CONFIG_CRYPTO_KEYWRAP=m +CONFIG_CRYPTO_NHPOLY1305=m +CONFIG_CRYPTO_ADIANTUM=m +CONFIG_CRYPTO_ESSIV=m + +# +# Hash modes +# +CONFIG_CRYPTO_CMAC=m +CONFIG_CRYPTO_HMAC=y +CONFIG_CRYPTO_XCBC=m +CONFIG_CRYPTO_VMAC=m + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=y +CONFIG_CRYPTO_CRC32C_INTEL=y +CONFIG_CRYPTO_CRC32=m +CONFIG_CRYPTO_CRC32_PCLMUL=m +CONFIG_CRYPTO_XXHASH=m +CONFIG_CRYPTO_BLAKE2B=m +CONFIG_CRYPTO_BLAKE2S=m +CONFIG_CRYPTO_CRCT10DIF=y +CONFIG_CRYPTO_GHASH=y +CONFIG_CRYPTO_POLY1305=m +CONFIG_CRYPTO_MD4=m +CONFIG_CRYPTO_MD5=y +CONFIG_CRYPTO_MICHAEL_MIC=m +CONFIG_CRYPTO_RMD160=m +CONFIG_CRYPTO_SHA1=y +CONFIG_CRYPTO_SHA256=y +CONFIG_CRYPTO_SHA512=y +CONFIG_CRYPTO_SHA3=m +CONFIG_CRYPTO_SM3=m +CONFIG_CRYPTO_STREEBOG=m +CONFIG_CRYPTO_WP512=m + +# +# Ciphers +# +CONFIG_CRYPTO_AES=y +CONFIG_CRYPTO_AES_TI=m +CONFIG_CRYPTO_AES_NI_INTEL=m +CONFIG_CRYPTO_ANUBIS=m +CONFIG_CRYPTO_ARC4=m +CONFIG_CRYPTO_BLOWFISH=m +CONFIG_CRYPTO_BLOWFISH_COMMON=m +CONFIG_CRYPTO_CAMELLIA=m +CONFIG_CRYPTO_CAST_COMMON=m +CONFIG_CRYPTO_CAST5=m +CONFIG_CRYPTO_CAST6=m +CONFIG_CRYPTO_DES=m +CONFIG_CRYPTO_FCRYPT=m +CONFIG_CRYPTO_KHAZAD=m +CONFIG_CRYPTO_CHACHA20=m +CONFIG_CRYPTO_SEED=m +CONFIG_CRYPTO_SERPENT=m +CONFIG_CRYPTO_SERPENT_SSE2_586=m +CONFIG_CRYPTO_SM4=m +CONFIG_CRYPTO_TEA=m +CONFIG_CRYPTO_TWOFISH=m +CONFIG_CRYPTO_TWOFISH_COMMON=m +CONFIG_CRYPTO_TWOFISH_586=m + +# +# Compression +# +CONFIG_CRYPTO_DEFLATE=m +CONFIG_CRYPTO_LZO=y +CONFIG_CRYPTO_842=m +CONFIG_CRYPTO_LZ4=m +CONFIG_CRYPTO_LZ4HC=m +CONFIG_CRYPTO_ZSTD=m + +# +# Random Number Generation +# +CONFIG_CRYPTO_ANSI_CPRNG=m +CONFIG_CRYPTO_DRBG_MENU=y +CONFIG_CRYPTO_DRBG_HMAC=y +CONFIG_CRYPTO_DRBG_HASH=y +CONFIG_CRYPTO_DRBG_CTR=y +CONFIG_CRYPTO_DRBG=y +CONFIG_CRYPTO_JITTERENTROPY=y +CONFIG_CRYPTO_USER_API=m +CONFIG_CRYPTO_USER_API_HASH=m +CONFIG_CRYPTO_USER_API_SKCIPHER=m +CONFIG_CRYPTO_USER_API_RNG=m +# CONFIG_CRYPTO_USER_API_RNG_CAVP is not set +CONFIG_CRYPTO_USER_API_AEAD=m +CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE=y +# CONFIG_CRYPTO_STATS is not set +CONFIG_CRYPTO_HASH_INFO=y + +# +# Crypto library routines +# +CONFIG_CRYPTO_LIB_AES=y +CONFIG_CRYPTO_LIB_ARC4=m +CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=m +CONFIG_CRYPTO_LIB_BLAKE2S=m +CONFIG_CRYPTO_LIB_CHACHA_GENERIC=m +CONFIG_CRYPTO_LIB_CHACHA=m +CONFIG_CRYPTO_LIB_CURVE25519_GENERIC=m +CONFIG_CRYPTO_LIB_CURVE25519=m +CONFIG_CRYPTO_LIB_DES=m +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=1 +CONFIG_CRYPTO_LIB_POLY1305_GENERIC=m +CONFIG_CRYPTO_LIB_POLY1305=m +CONFIG_CRYPTO_LIB_CHACHA20POLY1305=m +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_LIB_SM4=m +CONFIG_CRYPTO_HW=y +CONFIG_CRYPTO_DEV_PADLOCK=y +CONFIG_CRYPTO_DEV_PADLOCK_AES=m +CONFIG_CRYPTO_DEV_PADLOCK_SHA=m +CONFIG_CRYPTO_DEV_GEODE=m +CONFIG_CRYPTO_DEV_ATMEL_I2C=m +CONFIG_CRYPTO_DEV_ATMEL_ECC=m +CONFIG_CRYPTO_DEV_ATMEL_SHA204A=m +CONFIG_CRYPTO_DEV_CCP=y +CONFIG_CRYPTO_DEV_CCP_DD=m +CONFIG_CRYPTO_DEV_SP_CCP=y +CONFIG_CRYPTO_DEV_CCP_CRYPTO=m +# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set +CONFIG_CRYPTO_DEV_QAT=m +CONFIG_CRYPTO_DEV_QAT_DH895xCC=m +CONFIG_CRYPTO_DEV_QAT_C3XXX=m +CONFIG_CRYPTO_DEV_QAT_C62X=m +CONFIG_CRYPTO_DEV_QAT_4XXX=m +CONFIG_CRYPTO_DEV_QAT_DH895xCCVF=m +CONFIG_CRYPTO_DEV_QAT_C3XXXVF=m +CONFIG_CRYPTO_DEV_QAT_C62XVF=m +CONFIG_CRYPTO_DEV_CHELSIO=m +CONFIG_CRYPTO_DEV_VIRTIO=m +CONFIG_CRYPTO_DEV_SAFEXCEL=m +CONFIG_CRYPTO_DEV_AMLOGIC_GXL=m +# CONFIG_CRYPTO_DEV_AMLOGIC_GXL_DEBUG is not set +CONFIG_ASYMMETRIC_KEY_TYPE=y +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y +CONFIG_ASYMMETRIC_TPM_KEY_SUBTYPE=m +CONFIG_X509_CERTIFICATE_PARSER=y +CONFIG_PKCS8_PRIVATE_KEY_PARSER=m +CONFIG_TPM_KEY_PARSER=m +CONFIG_PKCS7_MESSAGE_PARSER=y +# CONFIG_PKCS7_TEST_KEY is not set +# CONFIG_SIGNED_PE_FILE_VERIFICATION is not set + +# +# Certificates for signature checking +# +CONFIG_SYSTEM_TRUSTED_KEYRING=y +CONFIG_SYSTEM_TRUSTED_KEYS="" +# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set +# CONFIG_SECONDARY_TRUSTED_KEYRING is not set +# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set +# end of Certificates for signature checking + +CONFIG_BINARY_PRINTF=y + +# +# Library routines +# +CONFIG_RAID6_PQ=m +CONFIG_RAID6_PQ_BENCHMARK=y +CONFIG_LINEAR_RANGES=y +CONFIG_PACKING=y +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +CONFIG_CORDIC=m +CONFIG_PRIME_NUMBERS=m +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +CONFIG_ARCH_USE_SYM_ANNOTATIONS=y +CONFIG_CRC_CCITT=y +CONFIG_CRC16=y +CONFIG_CRC_T10DIF=y +CONFIG_CRC_ITU_T=m +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +CONFIG_CRC64=m +# CONFIG_CRC4 is not set +CONFIG_CRC7=m +CONFIG_LIBCRC32C=m +CONFIG_CRC8=m +CONFIG_XXHASH=y +CONFIG_AUDIT_GENERIC=y +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_842_COMPRESS=m +CONFIG_842_DECOMPRESS=m +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_LZ4_COMPRESS=m +CONFIG_LZ4HC_COMPRESS=m +CONFIG_LZ4_DECOMPRESS=y +CONFIG_ZSTD_COMPRESS=m +CONFIG_ZSTD_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +CONFIG_XZ_DEC_POWERPC=y +CONFIG_XZ_DEC_IA64=y +CONFIG_XZ_DEC_ARM=y +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_SPARC=y +CONFIG_XZ_DEC_MICROLZMA=y +CONFIG_XZ_DEC_BCJ=y +CONFIG_XZ_DEC_TEST=m +CONFIG_DECOMPRESS_GZIP=y +CONFIG_DECOMPRESS_BZIP2=y +CONFIG_DECOMPRESS_LZMA=y +CONFIG_DECOMPRESS_XZ=y +CONFIG_DECOMPRESS_LZO=y +CONFIG_DECOMPRESS_LZ4=y +CONFIG_DECOMPRESS_ZSTD=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_REED_SOLOMON=m +CONFIG_REED_SOLOMON_ENC8=y +CONFIG_REED_SOLOMON_DEC8=y +CONFIG_REED_SOLOMON_DEC16=y +CONFIG_BCH=m +CONFIG_BCH_CONST_PARAMS=y +CONFIG_TEXTSEARCH=y +CONFIG_TEXTSEARCH_KMP=m +CONFIG_TEXTSEARCH_BM=m +CONFIG_TEXTSEARCH_FSM=m +CONFIG_BTREE=y +CONFIG_INTERVAL_TREE=y +CONFIG_XARRAY_MULTI=y +CONFIG_ASSOCIATIVE_ARRAY=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_DMA_OPS=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_SWIOTLB=y +CONFIG_DMA_CMA=y +CONFIG_DMA_PERNUMA_CMA=y + +# +# Default contiguous memory area size: +# +CONFIG_CMA_SIZE_MBYTES=0 +CONFIG_CMA_SIZE_SEL_MBYTES=y +# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set +# CONFIG_CMA_SIZE_SEL_MIN is not set +# CONFIG_CMA_SIZE_SEL_MAX is not set +CONFIG_CMA_ALIGNMENT=8 +# CONFIG_DMA_API_DEBUG is not set +# CONFIG_DMA_MAP_BENCHMARK is not set +CONFIG_SGL_ALLOC=y +CONFIG_CHECK_SIGNATURE=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +CONFIG_NLATTR=y +CONFIG_LRU_CACHE=m +CONFIG_CLZ_TAB=y +CONFIG_IRQ_POLL=y +CONFIG_MPILIB=y +CONFIG_SIGNATURE=y +CONFIG_DIMLIB=y +CONFIG_OID_REGISTRY=y +CONFIG_UCS2_STRING=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_GENERIC_VDSO_32=y +CONFIG_GENERIC_VDSO_TIME_NS=y +CONFIG_FONT_SUPPORT=y +CONFIG_FONTS=y +CONFIG_FONT_8x8=y +CONFIG_FONT_8x16=y +# CONFIG_FONT_6x11 is not set +# CONFIG_FONT_7x14 is not set +# CONFIG_FONT_PEARL_8x8 is not set +# CONFIG_FONT_ACORN_8x8 is not set +# CONFIG_FONT_MINI_4x6 is not set +CONFIG_FONT_6x10=y +# CONFIG_FONT_10x18 is not set +# CONFIG_FONT_SUN8x16 is not set +# CONFIG_FONT_SUN12x22 is not set +CONFIG_FONT_TER16x32=y +CONFIG_FONT_6x8=y +CONFIG_SG_POOL=y +CONFIG_MEMREGION=y +CONFIG_ARCH_STACKWALK=y +CONFIG_SBITMAP=y +CONFIG_PARMAN=m +CONFIG_OBJAGG=m +# end of Library routines + +CONFIG_PLDMFW=y +CONFIG_ASN1_ENCODER=y + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +CONFIG_PRINTK_TIME=y +# CONFIG_PRINTK_CALLER is not set +CONFIG_STACKTRACE_BUILD_ID=y +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +CONFIG_BOOT_PRINTK_DELAY=y +CONFIG_DYNAMIC_DEBUG=y +CONFIG_DYNAMIC_DEBUG_CORE=y +CONFIG_SYMBOLIC_ERRNAME=y +CONFIG_DEBUG_BUGVERBOSE=y +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +# CONFIG_DEBUG_INFO is not set +CONFIG_FRAME_WARN=1024 +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_READABLE_ASM is not set +# CONFIG_HEADERS_INSTALL is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set +CONFIG_FRAME_POINTER=y +# CONFIG_VMLINUX_MAP is not set +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +# +# Generic Kernel Debugging Instruments +# +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 +CONFIG_MAGIC_SYSRQ_SERIAL=y +CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" +CONFIG_DEBUG_FS=y +CONFIG_DEBUG_FS_ALLOW_ALL=y +# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set +# CONFIG_DEBUG_FS_ALLOW_NONE is not set +CONFIG_HAVE_ARCH_KGDB=y +CONFIG_KGDB=y +CONFIG_KGDB_HONOUR_BLOCKLIST=y +CONFIG_KGDB_SERIAL_CONSOLE=y +# CONFIG_KGDB_TESTS is not set +CONFIG_KGDB_LOW_LEVEL_TRAP=y +CONFIG_KGDB_KDB=y +CONFIG_KDB_DEFAULT_ENABLE=0x1 +CONFIG_KDB_KEYBOARD=y +CONFIG_KDB_CONTINUE_CATASTROPHIC=0 +CONFIG_ARCH_HAS_EARLY_DEBUG=y +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +CONFIG_HAVE_KCSAN_COMPILER=y +# end of Generic Kernel Debugging Instruments + +CONFIG_DEBUG_KERNEL=y +CONFIG_DEBUG_MISC=y + +# +# Memory Debugging +# +CONFIG_PAGE_EXTENSION=y +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_OWNER is not set +# CONFIG_PAGE_POISONING is not set +# CONFIG_DEBUG_PAGE_REF is not set +# CONFIG_DEBUG_RODATA_TEST is not set +CONFIG_ARCH_HAS_DEBUG_WX=y +# CONFIG_DEBUG_WX is not set +CONFIG_GENERIC_PTDUMP=y +# CONFIG_PTDUMP_DEBUGFS is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_SLUB_DEBUG_ON is not set +# CONFIG_SLUB_STATS is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +CONFIG_SCHED_STACK_END_CHECK=y +# CONFIG_DEBUG_VM is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +# CONFIG_DEBUG_KMAP_LOCAL is not set +CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP=y +# CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP is not set +# CONFIG_DEBUG_HIGHMEM is not set +CONFIG_HAVE_DEBUG_STACKOVERFLOW=y +# CONFIG_DEBUG_STACKOVERFLOW is not set +CONFIG_CC_HAS_KASAN_GENERIC=y +CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y +CONFIG_HAVE_ARCH_KFENCE=y +CONFIG_KFENCE=y +CONFIG_KFENCE_SAMPLE_INTERVAL=0 +CONFIG_KFENCE_NUM_OBJECTS=255 +CONFIG_KFENCE_STATIC_KEYS=y +CONFIG_KFENCE_STRESS_TEST_FAULTS=0 +# end of Memory Debugging + +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Oops, Lockups and Hangs +# +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +CONFIG_LOCKUP_DETECTOR=y +CONFIG_SOFTLOCKUP_DETECTOR=y +# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 +CONFIG_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HARDLOCKUP_DETECTOR=y +# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0 +CONFIG_DETECT_HUNG_TASK=y +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set +CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 +# CONFIG_WQ_WATCHDOG is not set +# CONFIG_TEST_LOCKUP is not set +# end of Debug Oops, Lockups and Hangs + +# +# Scheduler Debugging +# +CONFIG_SCHED_DEBUG=y +CONFIG_SCHED_INFO=y +CONFIG_SCHEDSTATS=y +# end of Scheduler Debugging + +# CONFIG_DEBUG_TIMEKEEPING is not set +# CONFIG_DEBUG_PREEMPT is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +CONFIG_LOCK_TORTURE_TEST=m +CONFIG_WW_MUTEX_SELFTEST=m +# CONFIG_SCF_TORTURE_TEST is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +# CONFIG_DEBUG_IRQFLAGS is not set +CONFIG_STACKTRACE=y +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set + +# +# Debug kernel data structures +# +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# end of Debug kernel data structures + +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +CONFIG_TORTURE_TEST=m +# CONFIG_RCU_SCALE_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +# CONFIG_RCU_REF_SCALE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=60 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_NOP_TRACER=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACER_MAX_TRACE=y +CONFIG_TRACE_CLOCK=y +CONFIG_RING_BUFFER=y +CONFIG_EVENT_TRACING=y +CONFIG_CONTEXT_SWITCH_TRACER=y +CONFIG_TRACING=y +CONFIG_GENERIC_TRACER=y +CONFIG_TRACING_SUPPORT=y +CONFIG_FTRACE=y +# CONFIG_BOOTTIME_TRACING is not set +CONFIG_FUNCTION_TRACER=y +CONFIG_FUNCTION_GRAPH_TRACER=y +CONFIG_DYNAMIC_FTRACE=y +CONFIG_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_FUNCTION_PROFILER=y +CONFIG_STACK_TRACER=y +# CONFIG_IRQSOFF_TRACER is not set +# CONFIG_PREEMPT_TRACER is not set +CONFIG_SCHED_TRACER=y +# CONFIG_HWLAT_TRACER is not set +# CONFIG_OSNOISE_TRACER is not set +# CONFIG_TIMERLAT_TRACER is not set +CONFIG_MMIOTRACE=y +CONFIG_FTRACE_SYSCALLS=y +CONFIG_TRACER_SNAPSHOT=y +# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set +CONFIG_BRANCH_PROFILE_NONE=y +# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set +CONFIG_BLK_DEV_IO_TRACE=y +CONFIG_KPROBE_EVENTS=y +# CONFIG_KPROBE_EVENTS_ON_NOTRACE is not set +CONFIG_UPROBE_EVENTS=y +CONFIG_BPF_EVENTS=y +CONFIG_DYNAMIC_EVENTS=y +CONFIG_PROBE_EVENTS=y +# CONFIG_BPF_KPROBE_OVERRIDE is not set +CONFIG_FTRACE_MCOUNT_RECORD=y +CONFIG_FTRACE_MCOUNT_USE_CC=y +CONFIG_SYNTH_EVENTS=y +# CONFIG_HIST_TRIGGERS is not set +# CONFIG_TRACE_EVENT_INJECT is not set +# CONFIG_TRACEPOINT_BENCHMARK is not set +# CONFIG_RING_BUFFER_BENCHMARK is not set +# CONFIG_TRACE_EVAL_MAP_FILE is not set +# CONFIG_FTRACE_RECORD_RECURSION is not set +# CONFIG_FTRACE_STARTUP_TEST is not set +# CONFIG_RING_BUFFER_STARTUP_TEST is not set +# CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS is not set +# CONFIG_MMIOTRACE_TEST is not set +# CONFIG_PREEMPTIRQ_DELAY_TEST is not set +# CONFIG_SYNTH_EVENT_GEN_TEST is not set +# CONFIG_KPROBE_EVENT_GEN_TEST is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_SAMPLES is not set +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +CONFIG_STRICT_DEVMEM=y +CONFIG_IO_STRICT_DEVMEM=y + +# +# x86 Debugging +# +CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y +CONFIG_EARLY_PRINTK_USB=y +# CONFIG_X86_VERBOSE_BOOTUP is not set +CONFIG_EARLY_PRINTK=y +CONFIG_EARLY_PRINTK_DBGP=y +# CONFIG_EARLY_PRINTK_USB_XDBC is not set +# CONFIG_EFI_PGT_DUMP is not set +# CONFIG_DEBUG_TLBFLUSH is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +# CONFIG_X86_DECODER_SELFTEST is not set +# CONFIG_IO_DELAY_0X80 is not set +CONFIG_IO_DELAY_0XED=y +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +# CONFIG_DEBUG_BOOT_PARAMS is not set +# CONFIG_CPA_DEBUG is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +# CONFIG_DEBUG_IMR_SELFTEST is not set +CONFIG_X86_DEBUG_FPU=y +CONFIG_PUNIT_ATOM_DEBUG=m +CONFIG_UNWINDER_FRAME_POINTER=y +# CONFIG_UNWINDER_GUESS is not set +# end of x86 Debugging + +# +# Kernel Testing and Coverage +# +# CONFIG_KUNIT is not set +CONFIG_NOTIFIER_ERROR_INJECTION=m +CONFIG_PM_NOTIFIER_ERROR_INJECT=m +CONFIG_NETDEV_NOTIFIER_ERROR_INJECT=m +CONFIG_FUNCTION_ERROR_INJECTION=y +# CONFIG_FAULT_INJECTION is not set +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +CONFIG_RUNTIME_TESTING_MENU=y +# CONFIG_LKDTM is not set +# CONFIG_TEST_MIN_HEAP is not set +# CONFIG_TEST_DIV64 is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_REED_SOLOMON_TEST is not set +CONFIG_INTERVAL_TREE_TEST=m +CONFIG_PERCPU_TEST=m +# CONFIG_ATOMIC64_SELFTEST is not set +CONFIG_ASYNC_RAID6_TEST=m +CONFIG_TEST_HEXDUMP=m +# CONFIG_STRING_SELFTEST is not set +CONFIG_TEST_STRING_HELPERS=m +CONFIG_TEST_STRSCPY=m +CONFIG_TEST_KSTRTOX=m +CONFIG_TEST_PRINTF=m +CONFIG_TEST_SCANF=m +CONFIG_TEST_BITMAP=m +CONFIG_TEST_UUID=m +CONFIG_TEST_XARRAY=m +CONFIG_TEST_OVERFLOW=m +CONFIG_TEST_RHASHTABLE=m +CONFIG_TEST_HASH=m +CONFIG_TEST_IDA=m +CONFIG_TEST_PARMAN=m +CONFIG_TEST_LKM=m +CONFIG_TEST_BITOPS=m +CONFIG_TEST_VMALLOC=m +CONFIG_TEST_USER_COPY=m +CONFIG_TEST_BPF=m +CONFIG_TEST_BLACKHOLE_DEV=m +CONFIG_FIND_BIT_BENCHMARK=m +CONFIG_TEST_FIRMWARE=m +# CONFIG_TEST_SYSCTL is not set +CONFIG_TEST_UDELAY=m +CONFIG_TEST_STATIC_KEYS=m +# CONFIG_TEST_KMOD is not set +# CONFIG_TEST_MEMCAT_P is not set +CONFIG_TEST_OBJAGG=m +# CONFIG_TEST_STACKINIT is not set +# CONFIG_TEST_MEMINIT is not set +# CONFIG_TEST_FREE_PAGES is not set +# CONFIG_TEST_FPU is not set +# CONFIG_TEST_CLOCKSOURCE_WATCHDOG is not set +CONFIG_ARCH_USE_MEMTEST=y +CONFIG_MEMTEST=y +# CONFIG_HYPERV_TESTING is not set +# end of Kernel Testing and Coverage +# end of Kernel hacking diff --git a/gnu/packages/aux-files/linux-libre/5.16-x86_64.conf b/gnu/packages/aux-files/linux-libre/5.16-x86_64.conf new file mode 100644 index 0000000000..e8271dcef3 --- /dev/null +++ b/gnu/packages/aux-files/linux-libre/5.16-x86_64.conf @@ -0,0 +1,11183 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 5.16.0 Kernel Configuration +# +CONFIG_CC_VERSION_TEXT="gcc (GCC) 11.2.0" +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=110200 +CONFIG_CLANG_VERSION=0 +CONFIG_AS_IS_GNU=y +CONFIG_AS_VERSION=23700 +CONFIG_LD_IS_BFD=y +CONFIG_LD_VERSION=23700 +CONFIG_LLD_VERSION=0 +CONFIG_CC_CAN_LINK=y +CONFIG_CC_CAN_LINK_STATIC=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_GOTO_OUTPUT=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_TABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +# CONFIG_WERROR is not set +CONFIG_LOCALVERSION="" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_BUILD_SALT="" +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +CONFIG_HAVE_KERNEL_ZSTD=y +CONFIG_KERNEL_GZIP=y +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +# CONFIG_KERNEL_XZ is not set +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +# CONFIG_KERNEL_ZSTD is not set +CONFIG_DEFAULT_INIT="" +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_SWAP=y +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +CONFIG_WATCH_QUEUE=y +CONFIG_CROSS_MEMORY_ATTACH=y +CONFIG_USELIB=y +CONFIG_AUDIT=y +CONFIG_HAVE_ARCH_AUDITSYSCALL=y +CONFIG_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_HARDIRQS_SW_RESEND=y +CONFIG_GENERIC_IRQ_CHIP=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +CONFIG_IRQ_MSI_IOMMU=y +CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y +CONFIG_GENERIC_IRQ_RESERVATION_MODE=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +# end of IRQ subsystem + +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_INIT=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y +CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y +CONFIG_POSIX_CPU_TIMERS_TASK_WORK=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +CONFIG_NO_HZ_IDLE=y +# CONFIG_NO_HZ_FULL is not set +CONFIG_NO_HZ=y +CONFIG_HIGH_RES_TIMERS=y +# end of Timers subsystem + +CONFIG_BPF=y +CONFIG_HAVE_EBPF_JIT=y +CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y + +# +# BPF subsystem +# +CONFIG_BPF_SYSCALL=y +# CONFIG_BPF_JIT is not set +# CONFIG_BPF_UNPRIV_DEFAULT_OFF is not set +# CONFIG_BPF_PRELOAD is not set +# end of BPF subsystem + +CONFIG_PREEMPT_BUILD=y +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_PREEMPT is not set +CONFIG_PREEMPT_COUNT=y +CONFIG_PREEMPTION=y +CONFIG_PREEMPT_DYNAMIC=y +CONFIG_SCHED_CORE=y + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +# CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_TASKSTATS=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_XACCT=y +CONFIG_TASK_IO_ACCOUNTING=y +CONFIG_PSI=y +# CONFIG_PSI_DEFAULT_DISABLED is not set +# end of CPU/Task time and stats accounting + +CONFIG_CPU_ISOLATION=y + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +CONFIG_PREEMPT_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +CONFIG_TASKS_RCU_GENERIC=y +CONFIG_TASKS_RCU=y +CONFIG_TASKS_RUDE_RCU=y +CONFIG_TASKS_TRACE_RCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +# end of RCU Subsystem + +CONFIG_BUILD_BIN2C=y +# CONFIG_IKCONFIG is not set +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=18 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +# CONFIG_PRINTK_INDEX is not set +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y + +# +# Scheduler features +# +# CONFIG_UCLAMP_TASK is not set +# end of Scheduler features + +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_CC_HAS_INT128=y +CONFIG_CC_IMPLICIT_FALLTHROUGH="-Wimplicit-fallthrough=5" +CONFIG_ARCH_SUPPORTS_INT128=y +CONFIG_NUMA_BALANCING=y +CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y +CONFIG_CGROUPS=y +CONFIG_PAGE_COUNTER=y +CONFIG_MEMCG=y +CONFIG_MEMCG_SWAP=y +CONFIG_MEMCG_KMEM=y +CONFIG_BLK_CGROUP=y +CONFIG_CGROUP_WRITEBACK=y +CONFIG_CGROUP_SCHED=y +CONFIG_FAIR_GROUP_SCHED=y +CONFIG_CFS_BANDWIDTH=y +# CONFIG_RT_GROUP_SCHED is not set +CONFIG_CGROUP_PIDS=y +# CONFIG_CGROUP_RDMA is not set +CONFIG_CGROUP_FREEZER=y +CONFIG_CGROUP_HUGETLB=y +CONFIG_CPUSETS=y +CONFIG_PROC_PID_CPUSET=y +CONFIG_CGROUP_DEVICE=y +CONFIG_CGROUP_CPUACCT=y +CONFIG_CGROUP_PERF=y +CONFIG_CGROUP_BPF=y +CONFIG_CGROUP_MISC=y +# CONFIG_CGROUP_DEBUG is not set +CONFIG_SOCK_CGROUP_DATA=y +CONFIG_NAMESPACES=y +CONFIG_UTS_NS=y +CONFIG_TIME_NS=y +CONFIG_IPC_NS=y +CONFIG_USER_NS=y +CONFIG_PID_NS=y +CONFIG_NET_NS=y +CONFIG_CHECKPOINT_RESTORE=y +CONFIG_SCHED_AUTOGROUP=y +# CONFIG_SYSFS_DEPRECATED is not set +CONFIG_RELAY=y +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="" +CONFIG_RD_GZIP=y +CONFIG_RD_BZIP2=y +CONFIG_RD_LZMA=y +CONFIG_RD_XZ=y +CONFIG_RD_LZO=y +CONFIG_RD_LZ4=y +CONFIG_RD_ZSTD=y +CONFIG_BOOT_CONFIG=y +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_LD_ORPHAN_WARN=y +CONFIG_SYSCTL=y +CONFIG_HAVE_UID16=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_EXPERT=y +CONFIG_UID16=y +CONFIG_MULTIUSER=y +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +CONFIG_FHANDLE=y +CONFIG_POSIX_TIMERS=y +CONFIG_PRINTK=y +CONFIG_BUG=y +CONFIG_ELF_CORE=y +CONFIG_PCSPKR_PLATFORM=y +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_IO_URING=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_HAVE_ARCH_USERFAULTFD_WP=y +CONFIG_HAVE_ARCH_USERFAULTFD_MINOR=y +CONFIG_MEMBARRIER=y +CONFIG_KALLSYMS=y +CONFIG_KALLSYMS_ALL=y +CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +CONFIG_USERFAULTFD=y +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +CONFIG_KCMP=y +CONFIG_RSEQ=y +# CONFIG_DEBUG_RSEQ is not set +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters + +CONFIG_VM_EVENT_COUNTERS=y +CONFIG_SLUB_DEBUG=y +# CONFIG_COMPAT_BRK is not set +# CONFIG_SLAB is not set +CONFIG_SLUB=y +# CONFIG_SLOB is not set +CONFIG_SLAB_MERGE_DEFAULT=y +CONFIG_SLAB_FREELIST_RANDOM=y +CONFIG_SLAB_FREELIST_HARDENED=y +CONFIG_SHUFFLE_PAGE_ALLOCATOR=y +CONFIG_SLUB_CPU_PARTIAL=y +CONFIG_SYSTEM_DATA_VERIFICATION=y +CONFIG_PROFILING=y +CONFIG_TRACEPOINTS=y +# end of General setup + +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_GENERIC_ISA_DMA=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_ARCH_MAY_HAVE_PC_FDC=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_FILTER_PGPROT=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_NR_GPIO=1024 +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_AUDIT_ARCH=y +CONFIG_HAVE_INTEL_TXT=y +CONFIG_X86_64_SMP=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_CC_HAS_SANE_STACKPROTECTOR=y + +# +# Processor type and features +# +CONFIG_SMP=y +CONFIG_X86_FEATURE_NAMES=y +CONFIG_X86_X2APIC=y +CONFIG_X86_MPPARSE=y +# CONFIG_GOLDFISH is not set +CONFIG_RETPOLINE=y +# CONFIG_X86_CPU_RESCTRL is not set +CONFIG_X86_EXTENDED_PLATFORM=y +CONFIG_X86_NUMACHIP=y +# CONFIG_X86_VSMP is not set +# CONFIG_X86_UV is not set +# CONFIG_X86_GOLDFISH is not set +# CONFIG_X86_INTEL_MID is not set +CONFIG_X86_INTEL_LPSS=y +CONFIG_X86_AMD_PLATFORM_DEVICE=y +CONFIG_IOSF_MBI=y +CONFIG_IOSF_MBI_DEBUG=y +CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y +CONFIG_SCHED_OMIT_FRAME_POINTER=y +CONFIG_HYPERVISOR_GUEST=y +CONFIG_PARAVIRT=y +CONFIG_PARAVIRT_XXL=y +# CONFIG_PARAVIRT_DEBUG is not set +CONFIG_PARAVIRT_SPINLOCKS=y +CONFIG_X86_HV_CALLBACK_VECTOR=y +CONFIG_XEN=y +CONFIG_XEN_PV=y +CONFIG_XEN_512GB=y +CONFIG_XEN_PV_SMP=y +CONFIG_XEN_PV_DOM0=y +CONFIG_XEN_PVHVM=y +CONFIG_XEN_PVHVM_SMP=y +CONFIG_XEN_PVHVM_GUEST=y +CONFIG_XEN_SAVE_RESTORE=y +# CONFIG_XEN_DEBUG_FS is not set +CONFIG_XEN_PVH=y +CONFIG_XEN_DOM0=y +CONFIG_KVM_GUEST=y +CONFIG_ARCH_CPUIDLE_HALTPOLL=y +CONFIG_PVH=y +# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set +CONFIG_PARAVIRT_CLOCK=y +CONFIG_JAILHOUSE_GUEST=y +# CONFIG_ACRN_GUEST is not set +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_GENERIC_CPU=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_IA32_FEAT_CTL=y +CONFIG_X86_VMX_FEATURE_NAMES=y +CONFIG_PROCESSOR_SELECT=y +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_HYGON=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_CPU_SUP_ZHAOXIN=y +CONFIG_HPET_TIMER=y +CONFIG_HPET_EMULATE_RTC=y +CONFIG_DMI=y +CONFIG_GART_IOMMU=y +# CONFIG_MAXSMP is not set +CONFIG_NR_CPUS_RANGE_BEGIN=2 +CONFIG_NR_CPUS_RANGE_END=512 +CONFIG_NR_CPUS_DEFAULT=64 +CONFIG_NR_CPUS=256 +CONFIG_SCHED_CLUSTER=y +CONFIG_SCHED_SMT=y +CONFIG_SCHED_MC=y +CONFIG_SCHED_MC_PRIO=y +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y +CONFIG_X86_MCE=y +# CONFIG_X86_MCELOG_LEGACY is not set +CONFIG_X86_MCE_INTEL=y +CONFIG_X86_MCE_AMD=y +CONFIG_X86_MCE_THRESHOLD=y +# CONFIG_X86_MCE_INJECT is not set + +# +# Performance monitoring +# +CONFIG_PERF_EVENTS_INTEL_UNCORE=y +CONFIG_PERF_EVENTS_INTEL_RAPL=y +CONFIG_PERF_EVENTS_INTEL_CSTATE=y +CONFIG_PERF_EVENTS_AMD_POWER=m +CONFIG_PERF_EVENTS_AMD_UNCORE=m +# end of Performance monitoring + +CONFIG_X86_16BIT=y +CONFIG_X86_ESPFIX64=y +CONFIG_X86_VSYSCALL_EMULATION=y +CONFIG_X86_IOPL_IOPERM=y +CONFIG_I8K=m +CONFIG_MICROCODE=y +CONFIG_MICROCODE_INTEL=y +CONFIG_MICROCODE_AMD=y +CONFIG_MICROCODE_OLD_INTERFACE=y +CONFIG_X86_MSR=m +CONFIG_X86_CPUID=m +# CONFIG_X86_5LEVEL is not set +CONFIG_X86_DIRECT_GBPAGES=y +# CONFIG_X86_CPA_STATISTICS is not set +# CONFIG_AMD_MEM_ENCRYPT is not set +CONFIG_NUMA=y +CONFIG_AMD_NUMA=y +CONFIG_X86_64_ACPI_NUMA=y +# CONFIG_NUMA_EMU is not set +CONFIG_NODES_SHIFT=6 +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_MEMORY_PROBE=y +CONFIG_ARCH_PROC_KCORE_TEXT=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +CONFIG_X86_PMEM_LEGACY_DEVICE=y +CONFIG_X86_PMEM_LEGACY=y +CONFIG_X86_CHECK_BIOS_CORRUPTION=y +CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=1 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +CONFIG_X86_SMAP=y +CONFIG_X86_UMIP=y +CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y +CONFIG_X86_INTEL_TSX_MODE_OFF=y +# CONFIG_X86_INTEL_TSX_MODE_ON is not set +# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set +CONFIG_X86_SGX=y +CONFIG_EFI=y +CONFIG_EFI_STUB=y +CONFIG_EFI_MIXED=y +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 +CONFIG_SCHED_HRTICK=y +CONFIG_KEXEC=y +CONFIG_KEXEC_FILE=y +CONFIG_ARCH_HAS_KEXEC_PURGATORY=y +# CONFIG_KEXEC_SIG is not set +CONFIG_CRASH_DUMP=y +CONFIG_KEXEC_JUMP=y +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +CONFIG_RANDOMIZE_BASE=y +CONFIG_X86_NEED_RELOCS=y +CONFIG_PHYSICAL_ALIGN=0x1000000 +CONFIG_DYNAMIC_MEMORY_LAYOUT=y +CONFIG_RANDOMIZE_MEMORY=y +CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +# CONFIG_COMPAT_VDSO is not set +# CONFIG_LEGACY_VSYSCALL_EMULATE is not set +# CONFIG_LEGACY_VSYSCALL_XONLY is not set +CONFIG_LEGACY_VSYSCALL_NONE=y +# CONFIG_CMDLINE_BOOL is not set +CONFIG_MODIFY_LDT_SYSCALL=y +# CONFIG_STRICT_SIGALTSTACK_SIZE is not set +CONFIG_HAVE_LIVEPATCH=y +CONFIG_LIVEPATCH=y +# end of Processor type and features + +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y +CONFIG_USE_PERCPU_NUMA_NODE_ID=y + +# +# Power management and ACPI options +# +CONFIG_ARCH_HIBERNATION_HEADER=y +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +CONFIG_HIBERNATE_CALLBACKS=y +CONFIG_HIBERNATION=y +CONFIG_HIBERNATION_SNAPSHOT_DEV=y +CONFIG_PM_STD_PARTITION="" +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +# CONFIG_PM_AUTOSLEEP is not set +CONFIG_PM_WAKELOCKS=y +CONFIG_PM_WAKELOCKS_LIMIT=100 +CONFIG_PM_WAKELOCKS_GC=y +CONFIG_PM=y +CONFIG_PM_DEBUG=y +CONFIG_PM_ADVANCED_DEBUG=y +# CONFIG_PM_TEST_SUSPEND is not set +CONFIG_PM_SLEEP_DEBUG=y +# CONFIG_DPM_WATCHDOG is not set +CONFIG_PM_TRACE=y +CONFIG_PM_TRACE_RTC=y +CONFIG_PM_CLK=y +CONFIG_WQ_POWER_EFFICIENT_DEFAULT=y +# CONFIG_ENERGY_MODEL is not set +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_SPCR_TABLE=y +CONFIG_ACPI_FPDT=y +CONFIG_ACPI_LPIT=y +CONFIG_ACPI_SLEEP=y +CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y +CONFIG_ACPI_EC_DEBUGFS=m +CONFIG_ACPI_AC=m +CONFIG_ACPI_BATTERY=m +CONFIG_ACPI_BUTTON=y +CONFIG_ACPI_VIDEO=m +CONFIG_ACPI_FAN=y +CONFIG_ACPI_TAD=m +CONFIG_ACPI_DOCK=y +CONFIG_ACPI_CPU_FREQ_PSS=y +CONFIG_ACPI_PROCESSOR_CSTATE=y +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_CPPC_LIB=y +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_IPMI=m +CONFIG_ACPI_HOTPLUG_CPU=y +CONFIG_ACPI_PROCESSOR_AGGREGATOR=m +CONFIG_ACPI_THERMAL=y +CONFIG_ACPI_PLATFORM_PROFILE=m +CONFIG_ACPI_CUSTOM_DSDT_FILE="" +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_DEBUG is not set +CONFIG_ACPI_PCI_SLOT=y +CONFIG_ACPI_CONTAINER=y +CONFIG_ACPI_HOTPLUG_MEMORY=y +CONFIG_ACPI_HOTPLUG_IOAPIC=y +CONFIG_ACPI_SBS=m +CONFIG_ACPI_HED=y +# CONFIG_ACPI_CUSTOM_METHOD is not set +CONFIG_ACPI_BGRT=y +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +CONFIG_ACPI_NFIT=m +# CONFIG_NFIT_SECURITY_DEBUG is not set +CONFIG_ACPI_NUMA=y +CONFIG_ACPI_HMAT=y +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +CONFIG_ACPI_APEI=y +CONFIG_ACPI_APEI_GHES=y +CONFIG_ACPI_APEI_PCIEAER=y +CONFIG_ACPI_APEI_MEMORY_FAILURE=y +CONFIG_ACPI_APEI_EINJ=m +# CONFIG_ACPI_APEI_ERST_DEBUG is not set +CONFIG_ACPI_DPTF=y +CONFIG_DPTF_POWER=m +CONFIG_DPTF_PCH_FIVR=m +CONFIG_ACPI_WATCHDOG=y +CONFIG_ACPI_EXTLOG=m +CONFIG_ACPI_ADXL=y +CONFIG_ACPI_CONFIGFS=m +# CONFIG_PMIC_OPREGION is not set +CONFIG_TPS68470_PMIC_OPREGION=y +CONFIG_ACPI_VIOT=y +CONFIG_X86_PM_TIMER=y +CONFIG_ACPI_PRMT=y + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +CONFIG_CPU_FREQ_GOV_ATTR_SET=y +CONFIG_CPU_FREQ_GOV_COMMON=y +CONFIG_CPU_FREQ_STAT=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL=y +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +CONFIG_CPU_FREQ_GOV_POWERSAVE=y +CONFIG_CPU_FREQ_GOV_USERSPACE=y +CONFIG_CPU_FREQ_GOV_ONDEMAND=y +CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y +CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y + +# +# CPU frequency scaling drivers +# +CONFIG_X86_INTEL_PSTATE=y +CONFIG_X86_PCC_CPUFREQ=y +CONFIG_X86_ACPI_CPUFREQ=y +CONFIG_X86_ACPI_CPUFREQ_CPB=y +CONFIG_X86_POWERNOW_K8=y +CONFIG_X86_AMD_FREQ_SENSITIVITY=m +CONFIG_X86_SPEEDSTEP_CENTRINO=y +CONFIG_X86_P4_CLOCKMOD=m + +# +# shared options +# +CONFIG_X86_SPEEDSTEP_LIB=m +# end of CPU Frequency scaling + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_LADDER=y +CONFIG_CPU_IDLE_GOV_MENU=y +CONFIG_CPU_IDLE_GOV_TEO=y +CONFIG_CPU_IDLE_GOV_HALTPOLL=y +CONFIG_HALTPOLL_CPUIDLE=m +# end of CPU Idle + +CONFIG_INTEL_IDLE=y +# end of Power management and ACPI options + +# +# Bus options (PCI etc.) +# +CONFIG_PCI_DIRECT=y +CONFIG_PCI_MMCONFIG=y +CONFIG_PCI_XEN=y +CONFIG_MMCONF_FAM10H=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +# CONFIG_ISA_BUS is not set +CONFIG_ISA_DMA_API=y +CONFIG_AMD_NB=y +# end of Bus options (PCI etc.) + +# +# Binary Emulations +# +CONFIG_IA32_EMULATION=y +CONFIG_X86_X32=y +CONFIG_COMPAT_32=y +CONFIG_COMPAT=y +CONFIG_COMPAT_FOR_U64_ALIGNMENT=y +CONFIG_SYSVIPC_COMPAT=y +# end of Binary Emulations + +CONFIG_HAVE_KVM=y +CONFIG_HAVE_KVM_IRQCHIP=y +CONFIG_HAVE_KVM_IRQFD=y +CONFIG_HAVE_KVM_IRQ_ROUTING=y +CONFIG_HAVE_KVM_EVENTFD=y +CONFIG_KVM_MMIO=y +CONFIG_KVM_ASYNC_PF=y +CONFIG_HAVE_KVM_MSI=y +CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y +CONFIG_KVM_VFIO=y +CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y +CONFIG_KVM_COMPAT=y +CONFIG_HAVE_KVM_IRQ_BYPASS=y +CONFIG_HAVE_KVM_NO_POLL=y +CONFIG_KVM_XFER_TO_GUEST_WORK=y +CONFIG_HAVE_KVM_PM_NOTIFIER=y +CONFIG_VIRTUALIZATION=y +CONFIG_KVM=m +CONFIG_KVM_WERROR=y +CONFIG_KVM_INTEL=m +CONFIG_X86_SGX_KVM=y +CONFIG_KVM_AMD=m +CONFIG_KVM_AMD_SEV=y +CONFIG_KVM_XEN=y +# CONFIG_KVM_MMU_AUDIT is not set +CONFIG_AS_AVX512=y +CONFIG_AS_SHA1_NI=y +CONFIG_AS_SHA256_NI=y +CONFIG_AS_TPAUSE=y + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_HOTPLUG_SMT=y +CONFIG_GENERIC_ENTRY=y +CONFIG_KPROBES=y +CONFIG_JUMP_LABEL=y +# CONFIG_STATIC_KEYS_SELFTEST is not set +# CONFIG_STATIC_CALL_SELFTEST is not set +CONFIG_OPTPROBES=y +CONFIG_KPROBES_ON_FTRACE=y +CONFIG_UPROBES=y +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_KRETPROBES=y +CONFIG_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_ARCH_WANTS_NO_INSTR=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_MMU_GATHER_TABLE_FREE=y +CONFIG_MMU_GATHER_RCU_TABLE_FREE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y +CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y +CONFIG_HAVE_ARCH_SECCOMP=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_SECCOMP=y +CONFIG_SECCOMP_FILTER=y +# CONFIG_SECCOMP_CACHE_DEBUG is not set +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y +CONFIG_LTO_NONE=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_CONTEXT_TRACKING_OFFSTACK=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_MOVE_PUD=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y +CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8 +CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES=y +CONFIG_PAGE_SIZE_LESS_THAN_64KB=y +CONFIG_HAVE_STACK_VALIDATION=y +CONFIG_HAVE_RELIABLE_STACKTRACE=y +CONFIG_ISA_BUS_API=y +CONFIG_OLD_SIGSUSPEND3=y +CONFIG_COMPAT_OLD_SIGACTION=y +CONFIG_COMPAT_32BIT_TIME=y +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_VMAP_STACK=y +CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y +CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT=y +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_STRICT_MODULE_RWX=y +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y +# CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_ARCH_HAS_MEM_ENCRYPT=y +CONFIG_HAVE_STATIC_CALL=y +CONFIG_HAVE_STATIC_CALL_INLINE=y +CONFIG_HAVE_PREEMPT_DYNAMIC=y +CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_ARCH_HAS_ELFCORE_COMPAT=y +CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH=y +CONFIG_DYNAMIC_SIGFRAME=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# end of GCOV-based kernel profiling + +CONFIG_HAVE_GCC_PLUGINS=y +CONFIG_GCC_PLUGINS=y +CONFIG_GCC_PLUGIN_LATENT_ENTROPY=y +# CONFIG_GCC_PLUGIN_RANDSTRUCT is not set +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +CONFIG_MODULES=y +# CONFIG_MODULE_FORCE_LOAD is not set +CONFIG_MODULE_UNLOAD=y +# CONFIG_MODULE_FORCE_UNLOAD is not set +CONFIG_MODVERSIONS=y +CONFIG_ASM_MODVERSIONS=y +CONFIG_MODULE_SRCVERSION_ALL=y +# CONFIG_MODULE_SIG is not set +# CONFIG_MODULE_COMPRESS_NONE is not set +CONFIG_MODULE_COMPRESS_GZIP=y +# CONFIG_MODULE_COMPRESS_XZ is not set +# CONFIG_MODULE_COMPRESS_ZSTD is not set +# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set +CONFIG_MODPROBE_PATH="/run/current-system/profile/bin/modprobe" +# CONFIG_TRIM_UNUSED_KSYMS is not set +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_BLOCK=y +CONFIG_BLK_RQ_ALLOC_TIME=y +CONFIG_BLK_CGROUP_RWSTAT=y +CONFIG_BLK_DEV_BSG_COMMON=y +CONFIG_BLK_DEV_BSGLIB=y +CONFIG_BLK_DEV_INTEGRITY=y +CONFIG_BLK_DEV_INTEGRITY_T10=y +CONFIG_BLK_DEV_ZONED=y +CONFIG_BLK_DEV_THROTTLING=y +# CONFIG_BLK_DEV_THROTTLING_LOW is not set +CONFIG_BLK_WBT=y +CONFIG_BLK_WBT_MQ=y +# CONFIG_BLK_CGROUP_IOLATENCY is not set +CONFIG_BLK_CGROUP_FC_APPID=y +CONFIG_BLK_CGROUP_IOCOST=y +CONFIG_BLK_CGROUP_IOPRIO=y +CONFIG_BLK_DEBUG_FS=y +CONFIG_BLK_DEBUG_FS_ZONED=y +# CONFIG_BLK_SED_OPAL is not set +CONFIG_BLK_INLINE_ENCRYPTION=y +CONFIG_BLK_INLINE_ENCRYPTION_FALLBACK=y + +# +# Partition Types +# +CONFIG_PARTITION_ADVANCED=y +# CONFIG_ACORN_PARTITION is not set +CONFIG_AIX_PARTITION=y +CONFIG_OSF_PARTITION=y +CONFIG_AMIGA_PARTITION=y +CONFIG_ATARI_PARTITION=y +CONFIG_MAC_PARTITION=y +CONFIG_MSDOS_PARTITION=y +CONFIG_BSD_DISKLABEL=y +CONFIG_MINIX_SUBPARTITION=y +CONFIG_SOLARIS_X86_PARTITION=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_LDM_PARTITION=y +# CONFIG_LDM_DEBUG is not set +CONFIG_SGI_PARTITION=y +CONFIG_ULTRIX_PARTITION=y +CONFIG_SUN_PARTITION=y +CONFIG_KARMA_PARTITION=y +CONFIG_EFI_PARTITION=y +CONFIG_SYSV68_PARTITION=y +CONFIG_CMDLINE_PARTITION=y +# end of Partition Types + +CONFIG_BLOCK_COMPAT=y +CONFIG_BLK_MQ_PCI=y +CONFIG_BLK_MQ_VIRTIO=y +CONFIG_BLK_MQ_RDMA=y +CONFIG_BLK_PM=y +CONFIG_BLOCK_HOLDER_DEPRECATED=y + +# +# IO Schedulers +# +CONFIG_MQ_IOSCHED_DEADLINE=y +CONFIG_MQ_IOSCHED_KYBER=m +CONFIG_IOSCHED_BFQ=m +# CONFIG_BFQ_GROUP_IOSCHED is not set +# end of IO Schedulers + +CONFIG_PREEMPT_NOTIFIERS=y +CONFIG_PADATA=y +CONFIG_ASN1=y +CONFIG_UNINLINE_SPIN_UNLOCK=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y +CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y +CONFIG_FREEZER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_COMPAT_BINFMT_ELF=y +CONFIG_ELFCORE=y +CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y +CONFIG_BINFMT_SCRIPT=y +CONFIG_BINFMT_MISC=m +CONFIG_COREDUMP=y +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_FAST_GUP=y +CONFIG_NUMA_KEEP_MEMINFO=y +CONFIG_MEMORY_ISOLATION=y +CONFIG_EXCLUSIVE_SYSTEM_RAM=y +CONFIG_HAVE_BOOTMEM_INFO_NODE=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_MEMORY_HOTPLUG=y +# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y +CONFIG_MEMORY_HOTREMOVE=y +CONFIG_MHP_MEMMAP_ON_MEMORY=y +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +CONFIG_MEMORY_BALLOON=y +CONFIG_BALLOON_COMPACTION=y +CONFIG_COMPACTION=y +CONFIG_PAGE_REPORTING=y +CONFIG_MIGRATION=y +CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y +CONFIG_ARCH_ENABLE_THP_MIGRATION=y +CONFIG_CONTIG_ALLOC=y +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_VIRT_TO_BUS=y +CONFIG_MMU_NOTIFIER=y +CONFIG_KSM=y +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +CONFIG_MEMORY_FAILURE=y +CONFIG_HWPOISON_INJECT=m +CONFIG_TRANSPARENT_HUGEPAGE=y +CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y +# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set +CONFIG_ARCH_WANTS_THP_SWAP=y +CONFIG_THP_SWAP=y +CONFIG_CLEANCACHE=y +CONFIG_FRONTSWAP=y +CONFIG_CMA=y +# CONFIG_CMA_DEBUG is not set +# CONFIG_CMA_DEBUGFS is not set +CONFIG_CMA_SYSFS=y +CONFIG_CMA_AREAS=7 +CONFIG_MEM_SOFT_DIRTY=y +CONFIG_ZSWAP=y +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_DEFLATE is not set +CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZO=y +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_842 is not set +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4 is not set +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4HC is not set +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_ZSTD is not set +CONFIG_ZSWAP_COMPRESSOR_DEFAULT="lzo" +CONFIG_ZSWAP_ZPOOL_DEFAULT_ZBUD=y +# CONFIG_ZSWAP_ZPOOL_DEFAULT_Z3FOLD is not set +# CONFIG_ZSWAP_ZPOOL_DEFAULT_ZSMALLOC is not set +CONFIG_ZSWAP_ZPOOL_DEFAULT="zbud" +# CONFIG_ZSWAP_DEFAULT_ON is not set +CONFIG_ZPOOL=y +CONFIG_ZBUD=y +CONFIG_Z3FOLD=m +CONFIG_ZSMALLOC=y +# CONFIG_ZSMALLOC_STAT is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +CONFIG_PAGE_IDLE_FLAG=y +CONFIG_IDLE_PAGE_TRACKING=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_PTE_DEVMAP=y +CONFIG_ARCH_HAS_ZONE_DMA_SET=y +# CONFIG_ZONE_DMA is not set +CONFIG_ZONE_DMA32=y +CONFIG_ZONE_DEVICE=y +CONFIG_DEV_PAGEMAP_OPS=y +CONFIG_HMM_MIRROR=y +# CONFIG_DEVICE_PRIVATE is not set +CONFIG_VMAP_PFN=y +CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y +CONFIG_ARCH_HAS_PKEYS=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_TEST is not set +# CONFIG_READ_ONLY_THP_FOR_FS is not set +CONFIG_ARCH_HAS_PTE_SPECIAL=y +CONFIG_MAPPING_DIRTY_HELPERS=y +CONFIG_SECRETMEM=y + +# +# Data Access Monitoring +# +CONFIG_DAMON=y +CONFIG_DAMON_VADDR=y +CONFIG_DAMON_PADDR=y +# CONFIG_DAMON_DBGFS is not set +CONFIG_DAMON_RECLAIM=y +# end of Data Access Monitoring +# end of Memory Management options + +CONFIG_NET=y +CONFIG_WANT_COMPAT_NETLINK_MESSAGES=y +CONFIG_COMPAT_NETLINK_MESSAGES=y +CONFIG_NET_INGRESS=y +CONFIG_NET_EGRESS=y +CONFIG_NET_REDIRECT=y +CONFIG_SKB_EXTENSIONS=y + +# +# Networking options +# +CONFIG_PACKET=y +CONFIG_PACKET_DIAG=m +CONFIG_UNIX=y +CONFIG_UNIX_SCM=y +CONFIG_AF_UNIX_OOB=y +CONFIG_UNIX_DIAG=m +CONFIG_TLS=m +# CONFIG_TLS_DEVICE is not set +# CONFIG_TLS_TOE is not set +CONFIG_XFRM=y +CONFIG_XFRM_OFFLOAD=y +CONFIG_XFRM_ALGO=m +CONFIG_XFRM_USER=m +CONFIG_XFRM_USER_COMPAT=m +CONFIG_XFRM_INTERFACE=m +# CONFIG_XFRM_SUB_POLICY is not set +# CONFIG_XFRM_MIGRATE is not set +CONFIG_XFRM_STATISTICS=y +CONFIG_XFRM_AH=m +CONFIG_XFRM_ESP=m +CONFIG_XFRM_IPCOMP=m +CONFIG_NET_KEY=m +# CONFIG_NET_KEY_MIGRATE is not set +# CONFIG_SMC is not set +CONFIG_XDP_SOCKETS=y +CONFIG_XDP_SOCKETS_DIAG=m +CONFIG_INET=y +CONFIG_IP_MULTICAST=y +CONFIG_IP_ADVANCED_ROUTER=y +CONFIG_IP_FIB_TRIE_STATS=y +CONFIG_IP_MULTIPLE_TABLES=y +CONFIG_IP_ROUTE_MULTIPATH=y +CONFIG_IP_ROUTE_VERBOSE=y +CONFIG_IP_ROUTE_CLASSID=y +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +# CONFIG_IP_PNP_BOOTP is not set +# CONFIG_IP_PNP_RARP is not set +CONFIG_NET_IPIP=m +CONFIG_NET_IPGRE_DEMUX=m +CONFIG_NET_IP_TUNNEL=m +CONFIG_NET_IPGRE=m +CONFIG_NET_IPGRE_BROADCAST=y +CONFIG_IP_MROUTE_COMMON=y +CONFIG_IP_MROUTE=y +# CONFIG_IP_MROUTE_MULTIPLE_TABLES is not set +CONFIG_IP_PIMSM_V1=y +CONFIG_IP_PIMSM_V2=y +CONFIG_SYN_COOKIES=y +CONFIG_NET_IPVTI=m +CONFIG_NET_UDP_TUNNEL=m +CONFIG_NET_FOU=m +CONFIG_NET_FOU_IP_TUNNELS=y +CONFIG_INET_AH=m +CONFIG_INET_ESP=m +CONFIG_INET_ESP_OFFLOAD=m +# CONFIG_INET_ESPINTCP is not set +CONFIG_INET_IPCOMP=m +CONFIG_INET_XFRM_TUNNEL=m +CONFIG_INET_TUNNEL=m +CONFIG_INET_DIAG=m +CONFIG_INET_TCP_DIAG=m +CONFIG_INET_UDP_DIAG=m +CONFIG_INET_RAW_DIAG=m +# CONFIG_INET_DIAG_DESTROY is not set +CONFIG_TCP_CONG_ADVANCED=y +CONFIG_TCP_CONG_BIC=m +CONFIG_TCP_CONG_CUBIC=y +CONFIG_TCP_CONG_WESTWOOD=m +CONFIG_TCP_CONG_HTCP=m +CONFIG_TCP_CONG_HSTCP=m +CONFIG_TCP_CONG_HYBLA=m +CONFIG_TCP_CONG_VEGAS=m +CONFIG_TCP_CONG_NV=m +CONFIG_TCP_CONG_SCALABLE=m +CONFIG_TCP_CONG_LP=m +CONFIG_TCP_CONG_VENO=m +CONFIG_TCP_CONG_YEAH=m +CONFIG_TCP_CONG_ILLINOIS=m +CONFIG_TCP_CONG_DCTCP=m +CONFIG_TCP_CONG_CDG=m +CONFIG_TCP_CONG_BBR=m +CONFIG_DEFAULT_CUBIC=y +# CONFIG_DEFAULT_RENO is not set +CONFIG_DEFAULT_TCP_CONG="cubic" +CONFIG_TCP_MD5SIG=y +CONFIG_IPV6=y +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_ROUTE_INFO=y +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +CONFIG_INET6_AH=m +CONFIG_INET6_ESP=m +CONFIG_INET6_ESP_OFFLOAD=m +# CONFIG_INET6_ESPINTCP is not set +CONFIG_INET6_IPCOMP=m +CONFIG_IPV6_MIP6=m +CONFIG_IPV6_ILA=m +CONFIG_INET6_XFRM_TUNNEL=m +CONFIG_INET6_TUNNEL=m +CONFIG_IPV6_VTI=m +CONFIG_IPV6_SIT=m +CONFIG_IPV6_SIT_6RD=y +CONFIG_IPV6_NDISC_NODETYPE=y +CONFIG_IPV6_TUNNEL=m +CONFIG_IPV6_GRE=m +CONFIG_IPV6_FOU=m +CONFIG_IPV6_FOU_TUNNEL=m +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IPV6_SUBTREES=y +CONFIG_IPV6_MROUTE=y +CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y +CONFIG_IPV6_PIMSM_V2=y +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_IPV6_RPL_LWTUNNEL is not set +# CONFIG_IPV6_IOAM6_LWTUNNEL is not set +CONFIG_NETLABEL=y +CONFIG_MPTCP=y +CONFIG_INET_MPTCP_DIAG=m +CONFIG_MPTCP_IPV6=y +CONFIG_NETWORK_SECMARK=y +CONFIG_NET_PTP_CLASSIFY=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +CONFIG_NETFILTER=y +CONFIG_NETFILTER_ADVANCED=y +CONFIG_BRIDGE_NETFILTER=m + +# +# Core Netfilter Configuration +# +CONFIG_NETFILTER_INGRESS=y +CONFIG_NETFILTER_EGRESS=y +CONFIG_NETFILTER_SKIP_EGRESS=y +CONFIG_NETFILTER_NETLINK=m +CONFIG_NETFILTER_FAMILY_BRIDGE=y +CONFIG_NETFILTER_FAMILY_ARP=y +CONFIG_NETFILTER_NETLINK_HOOK=m +CONFIG_NETFILTER_NETLINK_ACCT=m +CONFIG_NETFILTER_NETLINK_QUEUE=m +CONFIG_NETFILTER_NETLINK_LOG=m +CONFIG_NETFILTER_NETLINK_OSF=m +CONFIG_NF_CONNTRACK=m +CONFIG_NF_LOG_SYSLOG=m +CONFIG_NETFILTER_CONNCOUNT=m +CONFIG_NF_CONNTRACK_MARK=y +CONFIG_NF_CONNTRACK_SECMARK=y +CONFIG_NF_CONNTRACK_ZONES=y +# CONFIG_NF_CONNTRACK_PROCFS is not set +CONFIG_NF_CONNTRACK_EVENTS=y +CONFIG_NF_CONNTRACK_TIMEOUT=y +CONFIG_NF_CONNTRACK_TIMESTAMP=y +CONFIG_NF_CONNTRACK_LABELS=y +CONFIG_NF_CT_PROTO_DCCP=y +CONFIG_NF_CT_PROTO_GRE=y +CONFIG_NF_CT_PROTO_SCTP=y +CONFIG_NF_CT_PROTO_UDPLITE=y +CONFIG_NF_CONNTRACK_AMANDA=m +CONFIG_NF_CONNTRACK_FTP=m +CONFIG_NF_CONNTRACK_H323=m +CONFIG_NF_CONNTRACK_IRC=m +CONFIG_NF_CONNTRACK_BROADCAST=m +CONFIG_NF_CONNTRACK_NETBIOS_NS=m +CONFIG_NF_CONNTRACK_SNMP=m +CONFIG_NF_CONNTRACK_PPTP=m +CONFIG_NF_CONNTRACK_SANE=m +CONFIG_NF_CONNTRACK_SIP=m +CONFIG_NF_CONNTRACK_TFTP=m +CONFIG_NF_CT_NETLINK=m +CONFIG_NF_CT_NETLINK_TIMEOUT=m +CONFIG_NF_CT_NETLINK_HELPER=m +CONFIG_NETFILTER_NETLINK_GLUE_CT=y +CONFIG_NF_NAT=m +CONFIG_NF_NAT_AMANDA=m +CONFIG_NF_NAT_FTP=m +CONFIG_NF_NAT_IRC=m +CONFIG_NF_NAT_SIP=m +CONFIG_NF_NAT_TFTP=m +CONFIG_NF_NAT_REDIRECT=y +CONFIG_NF_NAT_MASQUERADE=y +CONFIG_NETFILTER_SYNPROXY=m +CONFIG_NF_TABLES=m +CONFIG_NF_TABLES_INET=y +CONFIG_NF_TABLES_NETDEV=y +CONFIG_NFT_NUMGEN=m +CONFIG_NFT_CT=m +CONFIG_NFT_FLOW_OFFLOAD=m +CONFIG_NFT_COUNTER=m +CONFIG_NFT_CONNLIMIT=m +CONFIG_NFT_LOG=m +CONFIG_NFT_LIMIT=m +CONFIG_NFT_MASQ=m +CONFIG_NFT_REDIR=m +CONFIG_NFT_NAT=m +CONFIG_NFT_TUNNEL=m +CONFIG_NFT_OBJREF=m +CONFIG_NFT_QUEUE=m +CONFIG_NFT_QUOTA=m +CONFIG_NFT_REJECT=m +CONFIG_NFT_REJECT_INET=m +CONFIG_NFT_COMPAT=m +CONFIG_NFT_HASH=m +CONFIG_NFT_FIB=m +CONFIG_NFT_FIB_INET=m +CONFIG_NFT_XFRM=m +CONFIG_NFT_SOCKET=m +CONFIG_NFT_OSF=m +CONFIG_NFT_TPROXY=m +CONFIG_NFT_SYNPROXY=m +CONFIG_NF_DUP_NETDEV=m +CONFIG_NFT_DUP_NETDEV=m +CONFIG_NFT_FWD_NETDEV=m +CONFIG_NFT_FIB_NETDEV=m +CONFIG_NFT_REJECT_NETDEV=m +CONFIG_NF_FLOW_TABLE_INET=m +CONFIG_NF_FLOW_TABLE=m +CONFIG_NETFILTER_XTABLES=m +CONFIG_NETFILTER_XTABLES_COMPAT=y + +# +# Xtables combined modules +# +CONFIG_NETFILTER_XT_MARK=m +CONFIG_NETFILTER_XT_CONNMARK=m +CONFIG_NETFILTER_XT_SET=m + +# +# Xtables targets +# +CONFIG_NETFILTER_XT_TARGET_AUDIT=m +CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m +CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m +CONFIG_NETFILTER_XT_TARGET_CONNMARK=m +CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m +CONFIG_NETFILTER_XT_TARGET_CT=m +CONFIG_NETFILTER_XT_TARGET_DSCP=m +CONFIG_NETFILTER_XT_TARGET_HL=m +CONFIG_NETFILTER_XT_TARGET_HMARK=m +CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m +CONFIG_NETFILTER_XT_TARGET_LED=m +CONFIG_NETFILTER_XT_TARGET_LOG=m +CONFIG_NETFILTER_XT_TARGET_MARK=m +CONFIG_NETFILTER_XT_NAT=m +CONFIG_NETFILTER_XT_TARGET_NETMAP=m +CONFIG_NETFILTER_XT_TARGET_NFLOG=m +CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m +# CONFIG_NETFILTER_XT_TARGET_NOTRACK is not set +CONFIG_NETFILTER_XT_TARGET_RATEEST=m +CONFIG_NETFILTER_XT_TARGET_REDIRECT=m +CONFIG_NETFILTER_XT_TARGET_MASQUERADE=m +CONFIG_NETFILTER_XT_TARGET_TEE=m +CONFIG_NETFILTER_XT_TARGET_TPROXY=m +CONFIG_NETFILTER_XT_TARGET_TRACE=m +CONFIG_NETFILTER_XT_TARGET_SECMARK=m +CONFIG_NETFILTER_XT_TARGET_TCPMSS=m +CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m + +# +# Xtables matches +# +CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m +CONFIG_NETFILTER_XT_MATCH_BPF=m +CONFIG_NETFILTER_XT_MATCH_CGROUP=m +CONFIG_NETFILTER_XT_MATCH_CLUSTER=m +CONFIG_NETFILTER_XT_MATCH_COMMENT=m +CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m +CONFIG_NETFILTER_XT_MATCH_CONNLABEL=m +CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m +CONFIG_NETFILTER_XT_MATCH_CONNMARK=m +CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m +CONFIG_NETFILTER_XT_MATCH_CPU=m +CONFIG_NETFILTER_XT_MATCH_DCCP=m +CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m +CONFIG_NETFILTER_XT_MATCH_DSCP=m +CONFIG_NETFILTER_XT_MATCH_ECN=m +CONFIG_NETFILTER_XT_MATCH_ESP=m +CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m +CONFIG_NETFILTER_XT_MATCH_HELPER=m +CONFIG_NETFILTER_XT_MATCH_HL=m +CONFIG_NETFILTER_XT_MATCH_IPCOMP=m +CONFIG_NETFILTER_XT_MATCH_IPRANGE=m +CONFIG_NETFILTER_XT_MATCH_IPVS=m +CONFIG_NETFILTER_XT_MATCH_L2TP=m +CONFIG_NETFILTER_XT_MATCH_LENGTH=m +CONFIG_NETFILTER_XT_MATCH_LIMIT=m +CONFIG_NETFILTER_XT_MATCH_MAC=m +CONFIG_NETFILTER_XT_MATCH_MARK=m +CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m +CONFIG_NETFILTER_XT_MATCH_NFACCT=m +CONFIG_NETFILTER_XT_MATCH_OSF=m +CONFIG_NETFILTER_XT_MATCH_OWNER=m +CONFIG_NETFILTER_XT_MATCH_POLICY=m +CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m +CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m +CONFIG_NETFILTER_XT_MATCH_QUOTA=m +CONFIG_NETFILTER_XT_MATCH_RATEEST=m +CONFIG_NETFILTER_XT_MATCH_REALM=m +CONFIG_NETFILTER_XT_MATCH_RECENT=m +CONFIG_NETFILTER_XT_MATCH_SCTP=m +CONFIG_NETFILTER_XT_MATCH_SOCKET=m +CONFIG_NETFILTER_XT_MATCH_STATE=m +CONFIG_NETFILTER_XT_MATCH_STATISTIC=m +CONFIG_NETFILTER_XT_MATCH_STRING=m +CONFIG_NETFILTER_XT_MATCH_TCPMSS=m +CONFIG_NETFILTER_XT_MATCH_TIME=m +CONFIG_NETFILTER_XT_MATCH_U32=m +# end of Core Netfilter Configuration + +CONFIG_IP_SET=m +CONFIG_IP_SET_MAX=256 +CONFIG_IP_SET_BITMAP_IP=m +CONFIG_IP_SET_BITMAP_IPMAC=m +CONFIG_IP_SET_BITMAP_PORT=m +CONFIG_IP_SET_HASH_IP=m +CONFIG_IP_SET_HASH_IPMARK=m +CONFIG_IP_SET_HASH_IPPORT=m +CONFIG_IP_SET_HASH_IPPORTIP=m +CONFIG_IP_SET_HASH_IPPORTNET=m +CONFIG_IP_SET_HASH_IPMAC=m +CONFIG_IP_SET_HASH_MAC=m +CONFIG_IP_SET_HASH_NETPORTNET=m +CONFIG_IP_SET_HASH_NET=m +CONFIG_IP_SET_HASH_NETNET=m +CONFIG_IP_SET_HASH_NETPORT=m +CONFIG_IP_SET_HASH_NETIFACE=m +CONFIG_IP_SET_LIST_SET=m +CONFIG_IP_VS=m +CONFIG_IP_VS_IPV6=y +# CONFIG_IP_VS_DEBUG is not set +CONFIG_IP_VS_TAB_BITS=12 + +# +# IPVS transport protocol load balancing support +# +CONFIG_IP_VS_PROTO_TCP=y +CONFIG_IP_VS_PROTO_UDP=y +CONFIG_IP_VS_PROTO_AH_ESP=y +CONFIG_IP_VS_PROTO_ESP=y +CONFIG_IP_VS_PROTO_AH=y +CONFIG_IP_VS_PROTO_SCTP=y + +# +# IPVS scheduler +# +CONFIG_IP_VS_RR=m +CONFIG_IP_VS_WRR=m +CONFIG_IP_VS_LC=m +CONFIG_IP_VS_WLC=m +CONFIG_IP_VS_FO=m +CONFIG_IP_VS_OVF=m +CONFIG_IP_VS_LBLC=m +CONFIG_IP_VS_LBLCR=m +CONFIG_IP_VS_DH=m +CONFIG_IP_VS_SH=m +CONFIG_IP_VS_MH=m +CONFIG_IP_VS_SED=m +CONFIG_IP_VS_NQ=m +CONFIG_IP_VS_TWOS=m + +# +# IPVS SH scheduler +# +CONFIG_IP_VS_SH_TAB_BITS=8 + +# +# IPVS MH scheduler +# +CONFIG_IP_VS_MH_TAB_INDEX=12 + +# +# IPVS application helper +# +CONFIG_IP_VS_FTP=m +CONFIG_IP_VS_NFCT=y +CONFIG_IP_VS_PE_SIP=m + +# +# IP: Netfilter Configuration +# +CONFIG_NF_DEFRAG_IPV4=m +CONFIG_NF_SOCKET_IPV4=m +CONFIG_NF_TPROXY_IPV4=m +CONFIG_NF_TABLES_IPV4=y +CONFIG_NFT_REJECT_IPV4=m +CONFIG_NFT_DUP_IPV4=m +CONFIG_NFT_FIB_IPV4=m +CONFIG_NF_TABLES_ARP=y +CONFIG_NF_FLOW_TABLE_IPV4=m +CONFIG_NF_DUP_IPV4=m +CONFIG_NF_LOG_ARP=m +CONFIG_NF_LOG_IPV4=m +CONFIG_NF_REJECT_IPV4=m +CONFIG_NF_NAT_SNMP_BASIC=m +CONFIG_NF_NAT_PPTP=m +CONFIG_NF_NAT_H323=m +CONFIG_IP_NF_IPTABLES=m +CONFIG_IP_NF_MATCH_AH=m +CONFIG_IP_NF_MATCH_ECN=m +CONFIG_IP_NF_MATCH_RPFILTER=m +CONFIG_IP_NF_MATCH_TTL=m +CONFIG_IP_NF_FILTER=m +CONFIG_IP_NF_TARGET_REJECT=m +CONFIG_IP_NF_TARGET_SYNPROXY=m +CONFIG_IP_NF_NAT=m +CONFIG_IP_NF_TARGET_MASQUERADE=m +CONFIG_IP_NF_TARGET_NETMAP=m +CONFIG_IP_NF_TARGET_REDIRECT=m +CONFIG_IP_NF_MANGLE=m +CONFIG_IP_NF_TARGET_CLUSTERIP=m +CONFIG_IP_NF_TARGET_ECN=m +CONFIG_IP_NF_TARGET_TTL=m +CONFIG_IP_NF_RAW=m +CONFIG_IP_NF_SECURITY=m +CONFIG_IP_NF_ARPTABLES=m +CONFIG_IP_NF_ARPFILTER=m +CONFIG_IP_NF_ARP_MANGLE=m +# end of IP: Netfilter Configuration + +# +# IPv6: Netfilter Configuration +# +CONFIG_NF_SOCKET_IPV6=m +CONFIG_NF_TPROXY_IPV6=m +CONFIG_NF_TABLES_IPV6=y +CONFIG_NFT_REJECT_IPV6=m +CONFIG_NFT_DUP_IPV6=m +CONFIG_NFT_FIB_IPV6=m +CONFIG_NF_FLOW_TABLE_IPV6=m +CONFIG_NF_DUP_IPV6=m +CONFIG_NF_REJECT_IPV6=m +CONFIG_NF_LOG_IPV6=m +CONFIG_IP6_NF_IPTABLES=m +CONFIG_IP6_NF_MATCH_AH=m +CONFIG_IP6_NF_MATCH_EUI64=m +CONFIG_IP6_NF_MATCH_FRAG=m +CONFIG_IP6_NF_MATCH_OPTS=m +CONFIG_IP6_NF_MATCH_HL=m +CONFIG_IP6_NF_MATCH_IPV6HEADER=m +CONFIG_IP6_NF_MATCH_MH=m +CONFIG_IP6_NF_MATCH_RPFILTER=m +CONFIG_IP6_NF_MATCH_RT=m +CONFIG_IP6_NF_MATCH_SRH=m +CONFIG_IP6_NF_TARGET_HL=m +CONFIG_IP6_NF_FILTER=m +CONFIG_IP6_NF_TARGET_REJECT=m +CONFIG_IP6_NF_TARGET_SYNPROXY=m +CONFIG_IP6_NF_MANGLE=m +CONFIG_IP6_NF_RAW=m +CONFIG_IP6_NF_SECURITY=m +CONFIG_IP6_NF_NAT=m +CONFIG_IP6_NF_TARGET_MASQUERADE=m +CONFIG_IP6_NF_TARGET_NPT=m +# end of IPv6: Netfilter Configuration + +CONFIG_NF_DEFRAG_IPV6=m + +# +# DECnet: Netfilter Configuration +# +CONFIG_DECNET_NF_GRABULATOR=m +# end of DECnet: Netfilter Configuration + +CONFIG_NF_TABLES_BRIDGE=m +CONFIG_NFT_BRIDGE_META=m +CONFIG_NFT_BRIDGE_REJECT=m +CONFIG_NF_CONNTRACK_BRIDGE=m +CONFIG_BRIDGE_NF_EBTABLES=m +CONFIG_BRIDGE_EBT_BROUTE=m +CONFIG_BRIDGE_EBT_T_FILTER=m +CONFIG_BRIDGE_EBT_T_NAT=m +CONFIG_BRIDGE_EBT_802_3=m +CONFIG_BRIDGE_EBT_AMONG=m +CONFIG_BRIDGE_EBT_ARP=m +CONFIG_BRIDGE_EBT_IP=m +CONFIG_BRIDGE_EBT_IP6=m +CONFIG_BRIDGE_EBT_LIMIT=m +CONFIG_BRIDGE_EBT_MARK=m +CONFIG_BRIDGE_EBT_PKTTYPE=m +CONFIG_BRIDGE_EBT_STP=m +CONFIG_BRIDGE_EBT_VLAN=m +CONFIG_BRIDGE_EBT_ARPREPLY=m +CONFIG_BRIDGE_EBT_DNAT=m +CONFIG_BRIDGE_EBT_MARK_T=m +CONFIG_BRIDGE_EBT_REDIRECT=m +CONFIG_BRIDGE_EBT_SNAT=m +CONFIG_BRIDGE_EBT_LOG=m +CONFIG_BRIDGE_EBT_NFLOG=m +# CONFIG_BPFILTER is not set +CONFIG_IP_DCCP=m +CONFIG_INET_DCCP_DIAG=m + +# +# DCCP CCIDs Configuration +# +# CONFIG_IP_DCCP_CCID2_DEBUG is not set +# CONFIG_IP_DCCP_CCID3 is not set +# end of DCCP CCIDs Configuration + +# +# DCCP Kernel Hacking +# +# CONFIG_IP_DCCP_DEBUG is not set +# end of DCCP Kernel Hacking + +CONFIG_IP_SCTP=m +# CONFIG_SCTP_DBG_OBJCNT is not set +# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set +CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y +# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set +CONFIG_SCTP_COOKIE_HMAC_MD5=y +CONFIG_SCTP_COOKIE_HMAC_SHA1=y +CONFIG_INET_SCTP_DIAG=m +CONFIG_RDS=m +CONFIG_RDS_RDMA=m +CONFIG_RDS_TCP=m +# CONFIG_RDS_DEBUG is not set +CONFIG_TIPC=m +CONFIG_TIPC_MEDIA_IB=y +CONFIG_TIPC_MEDIA_UDP=y +CONFIG_TIPC_CRYPTO=y +CONFIG_TIPC_DIAG=m +CONFIG_ATM=m +CONFIG_ATM_CLIP=m +# CONFIG_ATM_CLIP_NO_ICMP is not set +CONFIG_ATM_LANE=m +CONFIG_ATM_MPOA=m +CONFIG_ATM_BR2684=m +# CONFIG_ATM_BR2684_IPFILTER is not set +CONFIG_L2TP=m +CONFIG_L2TP_DEBUGFS=m +CONFIG_L2TP_V3=y +CONFIG_L2TP_IP=m +CONFIG_L2TP_ETH=m +CONFIG_STP=m +CONFIG_GARP=m +CONFIG_MRP=m +CONFIG_BRIDGE=m +CONFIG_BRIDGE_IGMP_SNOOPING=y +CONFIG_BRIDGE_VLAN_FILTERING=y +CONFIG_BRIDGE_MRP=y +CONFIG_BRIDGE_CFM=y +CONFIG_NET_DSA=m +CONFIG_NET_DSA_TAG_AR9331=m +CONFIG_NET_DSA_TAG_BRCM_COMMON=m +CONFIG_NET_DSA_TAG_BRCM=m +CONFIG_NET_DSA_TAG_BRCM_LEGACY=m +CONFIG_NET_DSA_TAG_BRCM_PREPEND=m +CONFIG_NET_DSA_TAG_HELLCREEK=m +CONFIG_NET_DSA_TAG_GSWIP=m +CONFIG_NET_DSA_TAG_DSA_COMMON=m +CONFIG_NET_DSA_TAG_DSA=m +CONFIG_NET_DSA_TAG_EDSA=m +CONFIG_NET_DSA_TAG_MTK=m +CONFIG_NET_DSA_TAG_KSZ=m +CONFIG_NET_DSA_TAG_OCELOT=m +CONFIG_NET_DSA_TAG_OCELOT_8021Q=m +CONFIG_NET_DSA_TAG_QCA=m +CONFIG_NET_DSA_TAG_RTL4_A=m +CONFIG_NET_DSA_TAG_RTL8_4=m +CONFIG_NET_DSA_TAG_LAN9303=m +CONFIG_NET_DSA_TAG_SJA1105=m +CONFIG_NET_DSA_TAG_TRAILER=m +CONFIG_NET_DSA_TAG_XRS700X=m +CONFIG_VLAN_8021Q=m +CONFIG_VLAN_8021Q_GVRP=y +CONFIG_VLAN_8021Q_MVRP=y +CONFIG_DECNET=m +# CONFIG_DECNET_ROUTER is not set +CONFIG_LLC=m +CONFIG_LLC2=m +CONFIG_ATALK=m +CONFIG_DEV_APPLETALK=m +CONFIG_IPDDP=m +CONFIG_IPDDP_ENCAP=y +CONFIG_X25=m +CONFIG_LAPB=m +CONFIG_PHONET=m +CONFIG_6LOWPAN=m +# CONFIG_6LOWPAN_DEBUGFS is not set +CONFIG_6LOWPAN_NHC=m +CONFIG_6LOWPAN_NHC_DEST=m +CONFIG_6LOWPAN_NHC_FRAGMENT=m +CONFIG_6LOWPAN_NHC_HOP=m +CONFIG_6LOWPAN_NHC_IPV6=m +CONFIG_6LOWPAN_NHC_MOBILITY=m +CONFIG_6LOWPAN_NHC_ROUTING=m +CONFIG_6LOWPAN_NHC_UDP=m +CONFIG_6LOWPAN_GHC_EXT_HDR_HOP=m +CONFIG_6LOWPAN_GHC_UDP=m +CONFIG_6LOWPAN_GHC_ICMPV6=m +CONFIG_6LOWPAN_GHC_EXT_HDR_DEST=m +CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG=m +CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE=m +CONFIG_IEEE802154=m +CONFIG_IEEE802154_NL802154_EXPERIMENTAL=y +CONFIG_IEEE802154_SOCKET=m +CONFIG_IEEE802154_6LOWPAN=m +CONFIG_MAC802154=m +CONFIG_NET_SCHED=y + +# +# Queueing/Scheduling +# +CONFIG_NET_SCH_CBQ=m +CONFIG_NET_SCH_HTB=m +CONFIG_NET_SCH_HFSC=m +CONFIG_NET_SCH_ATM=m +CONFIG_NET_SCH_PRIO=m +CONFIG_NET_SCH_MULTIQ=m +CONFIG_NET_SCH_RED=m +CONFIG_NET_SCH_SFB=m +CONFIG_NET_SCH_SFQ=m +CONFIG_NET_SCH_TEQL=m +CONFIG_NET_SCH_TBF=m +CONFIG_NET_SCH_CBS=m +CONFIG_NET_SCH_ETF=m +CONFIG_NET_SCH_TAPRIO=m +CONFIG_NET_SCH_GRED=m +CONFIG_NET_SCH_DSMARK=m +CONFIG_NET_SCH_NETEM=m +CONFIG_NET_SCH_DRR=m +CONFIG_NET_SCH_MQPRIO=m +CONFIG_NET_SCH_SKBPRIO=m +CONFIG_NET_SCH_CHOKE=m +CONFIG_NET_SCH_QFQ=m +CONFIG_NET_SCH_CODEL=m +CONFIG_NET_SCH_FQ_CODEL=m +CONFIG_NET_SCH_CAKE=m +CONFIG_NET_SCH_FQ=m +CONFIG_NET_SCH_HHF=m +CONFIG_NET_SCH_PIE=m +CONFIG_NET_SCH_FQ_PIE=m +CONFIG_NET_SCH_INGRESS=m +CONFIG_NET_SCH_PLUG=m +CONFIG_NET_SCH_ETS=m +# CONFIG_NET_SCH_DEFAULT is not set + +# +# Classification +# +CONFIG_NET_CLS=y +CONFIG_NET_CLS_BASIC=m +CONFIG_NET_CLS_TCINDEX=m +CONFIG_NET_CLS_ROUTE4=m +CONFIG_NET_CLS_FW=m +CONFIG_NET_CLS_U32=m +# CONFIG_CLS_U32_PERF is not set +CONFIG_CLS_U32_MARK=y +CONFIG_NET_CLS_RSVP=m +CONFIG_NET_CLS_RSVP6=m +CONFIG_NET_CLS_FLOW=m +CONFIG_NET_CLS_CGROUP=m +CONFIG_NET_CLS_BPF=m +CONFIG_NET_CLS_FLOWER=m +CONFIG_NET_CLS_MATCHALL=m +CONFIG_NET_EMATCH=y +CONFIG_NET_EMATCH_STACK=32 +CONFIG_NET_EMATCH_CMP=m +CONFIG_NET_EMATCH_NBYTE=m +CONFIG_NET_EMATCH_U32=m +CONFIG_NET_EMATCH_META=m +CONFIG_NET_EMATCH_TEXT=m +CONFIG_NET_EMATCH_CANID=m +CONFIG_NET_EMATCH_IPSET=m +CONFIG_NET_EMATCH_IPT=m +CONFIG_NET_CLS_ACT=y +CONFIG_NET_ACT_POLICE=m +CONFIG_NET_ACT_GACT=m +CONFIG_GACT_PROB=y +CONFIG_NET_ACT_MIRRED=m +CONFIG_NET_ACT_SAMPLE=m +CONFIG_NET_ACT_IPT=m +CONFIG_NET_ACT_NAT=m +CONFIG_NET_ACT_PEDIT=m +CONFIG_NET_ACT_SIMP=m +CONFIG_NET_ACT_SKBEDIT=m +CONFIG_NET_ACT_CSUM=m +CONFIG_NET_ACT_MPLS=m +CONFIG_NET_ACT_VLAN=m +CONFIG_NET_ACT_BPF=m +CONFIG_NET_ACT_CONNMARK=m +CONFIG_NET_ACT_CTINFO=m +CONFIG_NET_ACT_SKBMOD=m +CONFIG_NET_ACT_IFE=m +CONFIG_NET_ACT_TUNNEL_KEY=m +CONFIG_NET_ACT_CT=m +CONFIG_NET_ACT_GATE=m +CONFIG_NET_IFE_SKBMARK=m +CONFIG_NET_IFE_SKBPRIO=m +CONFIG_NET_IFE_SKBTCINDEX=m +# CONFIG_NET_TC_SKB_EXT is not set +CONFIG_NET_SCH_FIFO=y +CONFIG_DCB=y +CONFIG_DNS_RESOLVER=y +CONFIG_BATMAN_ADV=m +# CONFIG_BATMAN_ADV_BATMAN_V is not set +CONFIG_BATMAN_ADV_BLA=y +CONFIG_BATMAN_ADV_DAT=y +CONFIG_BATMAN_ADV_NC=y +CONFIG_BATMAN_ADV_MCAST=y +# CONFIG_BATMAN_ADV_DEBUG is not set +# CONFIG_BATMAN_ADV_TRACING is not set +CONFIG_OPENVSWITCH=m +CONFIG_OPENVSWITCH_GRE=m +CONFIG_OPENVSWITCH_VXLAN=m +CONFIG_OPENVSWITCH_GENEVE=m +CONFIG_VSOCKETS=m +CONFIG_VSOCKETS_DIAG=m +CONFIG_VSOCKETS_LOOPBACK=m +CONFIG_VMWARE_VMCI_VSOCKETS=m +CONFIG_VIRTIO_VSOCKETS=m +CONFIG_VIRTIO_VSOCKETS_COMMON=m +CONFIG_HYPERV_VSOCKETS=m +CONFIG_NETLINK_DIAG=m +CONFIG_MPLS=y +CONFIG_NET_MPLS_GSO=m +CONFIG_MPLS_ROUTING=m +CONFIG_MPLS_IPTUNNEL=m +CONFIG_NET_NSH=m +CONFIG_HSR=m +CONFIG_NET_SWITCHDEV=y +CONFIG_NET_L3_MASTER_DEV=y +CONFIG_QRTR=m +CONFIG_QRTR_SMD=m +CONFIG_QRTR_TUN=m +CONFIG_QRTR_MHI=m +CONFIG_NET_NCSI=y +# CONFIG_NCSI_OEM_CMD_GET_MAC is not set +# CONFIG_NCSI_OEM_CMD_KEEP_PHY is not set +CONFIG_PCPU_DEV_REFCNT=y +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_SOCK_RX_QUEUE_MAPPING=y +CONFIG_XPS=y +CONFIG_CGROUP_NET_PRIO=y +CONFIG_CGROUP_NET_CLASSID=y +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +# CONFIG_BPF_STREAM_PARSER is not set +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +CONFIG_NET_PKTGEN=m +# CONFIG_NET_DROP_MONITOR is not set +# end of Network testing +# end of Networking options + +CONFIG_HAMRADIO=y + +# +# Packet Radio protocols +# +CONFIG_AX25=m +CONFIG_AX25_DAMA_SLAVE=y +CONFIG_NETROM=m +CONFIG_ROSE=m + +# +# AX.25 network device drivers +# +CONFIG_MKISS=m +CONFIG_6PACK=m +CONFIG_BPQETHER=m +CONFIG_BAYCOM_SER_FDX=m +CONFIG_BAYCOM_SER_HDX=m +CONFIG_BAYCOM_PAR=m +CONFIG_YAM=m +# end of AX.25 network device drivers + +CONFIG_CAN=m +CONFIG_CAN_RAW=m +CONFIG_CAN_BCM=m +CONFIG_CAN_GW=m +CONFIG_CAN_J1939=m +CONFIG_CAN_ISOTP=m + +# +# CAN Device Drivers +# +CONFIG_CAN_VCAN=m +CONFIG_CAN_VXCAN=m +CONFIG_CAN_SLCAN=m +CONFIG_CAN_DEV=m +CONFIG_CAN_CALC_BITTIMING=y +CONFIG_CAN_JANZ_ICAN3=m +CONFIG_CAN_KVASER_PCIEFD=m +CONFIG_CAN_C_CAN=m +CONFIG_CAN_C_CAN_PLATFORM=m +CONFIG_CAN_C_CAN_PCI=m +CONFIG_CAN_CC770=m +CONFIG_CAN_CC770_ISA=m +CONFIG_CAN_CC770_PLATFORM=m +CONFIG_CAN_IFI_CANFD=m +CONFIG_CAN_M_CAN=m +CONFIG_CAN_M_CAN_PCI=m +CONFIG_CAN_M_CAN_PLATFORM=m +CONFIG_CAN_M_CAN_TCAN4X5X=m +CONFIG_CAN_PEAK_PCIEFD=m +CONFIG_CAN_SJA1000=m +CONFIG_CAN_EMS_PCI=m +CONFIG_CAN_EMS_PCMCIA=m +CONFIG_CAN_F81601=m +CONFIG_CAN_KVASER_PCI=m +CONFIG_CAN_PEAK_PCI=m +CONFIG_CAN_PEAK_PCIEC=y +CONFIG_CAN_PEAK_PCMCIA=m +CONFIG_CAN_PLX_PCI=m +CONFIG_CAN_SJA1000_ISA=m +CONFIG_CAN_SJA1000_PLATFORM=m +CONFIG_CAN_SOFTING=m +CONFIG_CAN_SOFTING_CS=m + +# +# CAN SPI interfaces +# +CONFIG_CAN_HI311X=m +CONFIG_CAN_MCP251X=m +CONFIG_CAN_MCP251XFD=m +# CONFIG_CAN_MCP251XFD_SANITY is not set +# end of CAN SPI interfaces + +# +# CAN USB interfaces +# +CONFIG_CAN_8DEV_USB=m +CONFIG_CAN_EMS_USB=m +CONFIG_CAN_ESD_USB2=m +CONFIG_CAN_ETAS_ES58X=m +CONFIG_CAN_GS_USB=m +CONFIG_CAN_KVASER_USB=m +CONFIG_CAN_MCBA_USB=m +CONFIG_CAN_PEAK_USB=m +CONFIG_CAN_UCAN=m +# end of CAN USB interfaces + +# CONFIG_CAN_DEBUG_DEVICES is not set +# end of CAN Device Drivers + +CONFIG_BT=m +CONFIG_BT_BREDR=y +CONFIG_BT_RFCOMM=m +CONFIG_BT_RFCOMM_TTY=y +CONFIG_BT_BNEP=m +CONFIG_BT_BNEP_MC_FILTER=y +CONFIG_BT_BNEP_PROTO_FILTER=y +CONFIG_BT_CMTP=m +CONFIG_BT_HIDP=m +CONFIG_BT_HS=y +CONFIG_BT_LE=y +CONFIG_BT_6LOWPAN=m +# CONFIG_BT_LEDS is not set +CONFIG_BT_MSFTEXT=y +CONFIG_BT_AOSPEXT=y +CONFIG_BT_DEBUGFS=y +# CONFIG_BT_SELFTEST is not set + +# +# Bluetooth device drivers +# +CONFIG_BT_INTEL=m +CONFIG_BT_BCM=m +CONFIG_BT_RTL=m +CONFIG_BT_QCA=m +CONFIG_BT_HCIBTUSB=m +# CONFIG_BT_HCIBTUSB_AUTOSUSPEND is not set +CONFIG_BT_HCIBTUSB_BCM=y +CONFIG_BT_HCIBTUSB_MTK=y +CONFIG_BT_HCIBTUSB_RTL=y +CONFIG_BT_HCIBTSDIO=m +CONFIG_BT_HCIUART=m +CONFIG_BT_HCIUART_SERDEV=y +CONFIG_BT_HCIUART_H4=y +CONFIG_BT_HCIUART_NOKIA=m +CONFIG_BT_HCIUART_BCSP=y +CONFIG_BT_HCIUART_ATH3K=y +CONFIG_BT_HCIUART_LL=y +CONFIG_BT_HCIUART_3WIRE=y +CONFIG_BT_HCIUART_INTEL=y +CONFIG_BT_HCIUART_BCM=y +CONFIG_BT_HCIUART_RTL=y +CONFIG_BT_HCIUART_QCA=y +CONFIG_BT_HCIUART_AG6XX=y +CONFIG_BT_HCIUART_MRVL=y +CONFIG_BT_HCIBCM203X=m +CONFIG_BT_HCIBPA10X=m +CONFIG_BT_HCIBFUSB=m +CONFIG_BT_HCIDTL1=m +CONFIG_BT_HCIBT3C=m +CONFIG_BT_HCIBLUECARD=m +CONFIG_BT_HCIVHCI=m +CONFIG_BT_MRVL=m +CONFIG_BT_MRVL_SDIO=m +CONFIG_BT_ATH3K=m +CONFIG_BT_MTKSDIO=m +CONFIG_BT_MTKUART=m +CONFIG_BT_HCIRSI=m +CONFIG_BT_VIRTIO=m +# end of Bluetooth device drivers + +CONFIG_AF_RXRPC=m +CONFIG_AF_RXRPC_IPV6=y +# CONFIG_AF_RXRPC_INJECT_LOSS is not set +# CONFIG_AF_RXRPC_DEBUG is not set +# CONFIG_RXKAD is not set +CONFIG_AF_KCM=m +CONFIG_STREAM_PARSER=y +CONFIG_MCTP=y +CONFIG_FIB_RULES=y +CONFIG_WIRELESS=y +CONFIG_WIRELESS_EXT=y +CONFIG_WEXT_CORE=y +CONFIG_WEXT_PROC=y +CONFIG_WEXT_SPY=y +CONFIG_WEXT_PRIV=y +CONFIG_CFG80211=m +# CONFIG_NL80211_TESTMODE is not set +# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set +# CONFIG_CFG80211_CERTIFICATION_ONUS is not set +CONFIG_CFG80211_REQUIRE_SIGNED_REGDB=y +CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS=y +CONFIG_CFG80211_DEFAULT_PS=y +CONFIG_CFG80211_DEBUGFS=y +CONFIG_CFG80211_CRDA_SUPPORT=y +CONFIG_CFG80211_WEXT=y +CONFIG_CFG80211_WEXT_EXPORT=y +CONFIG_LIB80211=m +CONFIG_LIB80211_CRYPT_WEP=m +CONFIG_LIB80211_CRYPT_CCMP=m +CONFIG_LIB80211_CRYPT_TKIP=m +# CONFIG_LIB80211_DEBUG is not set +CONFIG_MAC80211=m +CONFIG_MAC80211_HAS_RC=y +CONFIG_MAC80211_RC_MINSTREL=y +CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y +CONFIG_MAC80211_RC_DEFAULT="minstrel_ht" +CONFIG_MAC80211_MESH=y +CONFIG_MAC80211_LEDS=y +CONFIG_MAC80211_DEBUGFS=y +CONFIG_MAC80211_MESSAGE_TRACING=y +# CONFIG_MAC80211_DEBUG_MENU is not set +CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 +CONFIG_RFKILL=y +CONFIG_RFKILL_LEDS=y +CONFIG_RFKILL_INPUT=y +CONFIG_RFKILL_GPIO=m +CONFIG_NET_9P=m +CONFIG_NET_9P_VIRTIO=m +CONFIG_NET_9P_XEN=m +CONFIG_NET_9P_RDMA=m +# CONFIG_NET_9P_DEBUG is not set +CONFIG_CAIF=m +# CONFIG_CAIF_DEBUG is not set +CONFIG_CAIF_NETDEV=m +CONFIG_CAIF_USB=m +CONFIG_CEPH_LIB=m +# CONFIG_CEPH_LIB_PRETTYDEBUG is not set +CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y +CONFIG_NFC=m +CONFIG_NFC_DIGITAL=m +CONFIG_NFC_NCI=m +CONFIG_NFC_NCI_SPI=m +CONFIG_NFC_NCI_UART=m +CONFIG_NFC_HCI=m +CONFIG_NFC_SHDLC=y + +# +# Near Field Communication (NFC) devices +# +CONFIG_NFC_TRF7970A=m +CONFIG_NFC_SIM=m +CONFIG_NFC_PORT100=m +CONFIG_NFC_VIRTUAL_NCI=m +CONFIG_NFC_FDP=m +CONFIG_NFC_FDP_I2C=m +CONFIG_NFC_PN544=m +CONFIG_NFC_PN544_I2C=m +CONFIG_NFC_PN533=m +CONFIG_NFC_PN533_USB=m +CONFIG_NFC_PN533_I2C=m +CONFIG_NFC_PN532_UART=m +CONFIG_NFC_MICROREAD=m +CONFIG_NFC_MICROREAD_I2C=m +CONFIG_NFC_MRVL=m +CONFIG_NFC_MRVL_USB=m +CONFIG_NFC_MRVL_UART=m +CONFIG_NFC_MRVL_I2C=m +CONFIG_NFC_MRVL_SPI=m +CONFIG_NFC_ST21NFCA=m +CONFIG_NFC_ST21NFCA_I2C=m +CONFIG_NFC_ST_NCI=m +CONFIG_NFC_ST_NCI_I2C=m +CONFIG_NFC_ST_NCI_SPI=m +CONFIG_NFC_NXP_NCI=m +CONFIG_NFC_NXP_NCI_I2C=m +CONFIG_NFC_S3FWRN5=m +CONFIG_NFC_S3FWRN5_I2C=m +CONFIG_NFC_S3FWRN82_UART=m +CONFIG_NFC_ST95HF=m +# end of Near Field Communication (NFC) devices + +CONFIG_PSAMPLE=m +CONFIG_NET_IFE=m +CONFIG_LWTUNNEL=y +CONFIG_LWTUNNEL_BPF=y +CONFIG_DST_CACHE=y +CONFIG_GRO_CELLS=y +CONFIG_NET_SELFTESTS=y +CONFIG_NET_SOCK_MSG=y +CONFIG_NET_DEVLINK=y +CONFIG_PAGE_POOL=y +CONFIG_FAILOVER=y +CONFIG_ETHTOOL_NETLINK=y + +# +# Device Drivers +# +CONFIG_HAVE_EISA=y +# CONFIG_EISA is not set +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCIEPORTBUS=y +CONFIG_HOTPLUG_PCI_PCIE=y +CONFIG_PCIEAER=y +# CONFIG_PCIEAER_INJECT is not set +# CONFIG_PCIE_ECRC is not set +CONFIG_PCIEASPM=y +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +CONFIG_PCIE_PME=y +CONFIG_PCIE_DPC=y +CONFIG_PCIE_PTM=y +# CONFIG_PCIE_EDR is not set +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_QUIRKS=y +# CONFIG_PCI_DEBUG is not set +CONFIG_PCI_REALLOC_ENABLE_AUTO=y +CONFIG_PCI_STUB=m +# CONFIG_PCI_PF_STUB is not set +CONFIG_XEN_PCIDEV_FRONTEND=m +CONFIG_PCI_ATS=y +CONFIG_PCI_LOCKLESS_CONFIG=y +CONFIG_PCI_IOV=y +CONFIG_PCI_PRI=y +CONFIG_PCI_PASID=y +# CONFIG_PCI_P2PDMA is not set +CONFIG_PCI_LABEL=y +CONFIG_PCI_HYPERV=m +# CONFIG_PCIE_BUS_TUNE_OFF is not set +CONFIG_PCIE_BUS_DEFAULT=y +# CONFIG_PCIE_BUS_SAFE is not set +# CONFIG_PCIE_BUS_PERFORMANCE is not set +# CONFIG_PCIE_BUS_PEER2PEER is not set +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_ACPI=y +CONFIG_HOTPLUG_PCI_ACPI_IBM=m +CONFIG_HOTPLUG_PCI_CPCI=y +CONFIG_HOTPLUG_PCI_CPCI_ZT5550=m +CONFIG_HOTPLUG_PCI_CPCI_GENERIC=m +CONFIG_HOTPLUG_PCI_SHPC=y + +# +# PCI controller drivers +# +CONFIG_VMD=m +CONFIG_PCI_HYPERV_INTERFACE=m + +# +# DesignWare PCI Core Support +# +# CONFIG_PCIE_DW_PLAT_HOST is not set +# CONFIG_PCI_MESON is not set +# end of DesignWare PCI Core Support + +# +# Mobiveil PCIe Core Support +# +# end of Mobiveil PCIe Core Support + +# +# Cadence PCIe controllers support +# +# end of Cadence PCIe controllers support +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +CONFIG_PCI_SW_SWITCHTEC=m +# end of PCI switch controller drivers + +CONFIG_CXL_BUS=m +CONFIG_CXL_MEM=m +# CONFIG_CXL_MEM_RAW_COMMANDS is not set +CONFIG_CXL_ACPI=m +CONFIG_CXL_PMEM=m +CONFIG_PCCARD=m +CONFIG_PCMCIA=m +CONFIG_PCMCIA_LOAD_CIS=y +CONFIG_CARDBUS=y + +# +# PC-card bridges +# +CONFIG_YENTA=m +CONFIG_YENTA_O2=y +CONFIG_YENTA_RICOH=y +CONFIG_YENTA_TI=y +CONFIG_YENTA_ENE_TUNE=y +CONFIG_YENTA_TOSHIBA=y +CONFIG_PD6729=m +CONFIG_I82092=m +CONFIG_PCCARD_NONSTATIC=y +CONFIG_RAPIDIO=y +CONFIG_RAPIDIO_TSI721=m +CONFIG_RAPIDIO_DISC_TIMEOUT=30 +# CONFIG_RAPIDIO_ENABLE_RX_TX_PORTS is not set +CONFIG_RAPIDIO_DMA_ENGINE=y +# CONFIG_RAPIDIO_DEBUG is not set +CONFIG_RAPIDIO_ENUM_BASIC=m +CONFIG_RAPIDIO_CHMAN=m +CONFIG_RAPIDIO_MPORT_CDEV=m + +# +# RapidIO Switch drivers +# +CONFIG_RAPIDIO_TSI57X=m +CONFIG_RAPIDIO_CPS_XX=m +CONFIG_RAPIDIO_TSI568=m +CONFIG_RAPIDIO_CPS_GEN2=m +CONFIG_RAPIDIO_RXS_GEN3=m +# end of RapidIO Switch drivers + +# +# Generic Driver Options +# +CONFIG_AUXILIARY_BUS=y +CONFIG_UEVENT_HELPER=y +CONFIG_UEVENT_HELPER_PATH="" +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +# CONFIG_STANDALONE is not set +CONFIG_PREVENT_FIRMWARE_BUILD=y + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_FW_LOADER_PAGED_BUF=y +CONFIG_EXTRA_FIRMWARE="" +CONFIG_FW_LOADER_USER_HELPER=y +# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set +CONFIG_FW_LOADER_COMPRESS=y +CONFIG_FW_CACHE=y +# end of Firmware loader + +CONFIG_WANT_DEV_COREDUMP=y +CONFIG_ALLOW_DEV_COREDUMP=y +CONFIG_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +CONFIG_HMEM_REPORTING=y +# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set +CONFIG_SYS_HYPERVISOR=y +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +CONFIG_REGMAP=y +CONFIG_REGMAP_I2C=y +CONFIG_REGMAP_SPI=y +CONFIG_REGMAP_SPMI=m +CONFIG_REGMAP_W1=m +CONFIG_REGMAP_MMIO=y +CONFIG_REGMAP_IRQ=y +CONFIG_REGMAP_SOUNDWIRE=m +CONFIG_REGMAP_SOUNDWIRE_MBQ=m +CONFIG_REGMAP_SCCB=m +CONFIG_REGMAP_I3C=m +CONFIG_REGMAP_SPI_AVMM=m +CONFIG_DMA_SHARED_BUFFER=y +# CONFIG_DMA_FENCE_TRACE is not set +# end of Generic Driver Options + +# +# Bus devices +# +CONFIG_MHI_BUS=m +# CONFIG_MHI_BUS_DEBUG is not set +CONFIG_MHI_BUS_PCI_GENERIC=m +# end of Bus devices + +CONFIG_CONNECTOR=y +CONFIG_PROC_EVENTS=y + +# +# Firmware Drivers +# + +# +# ARM System Control and Management Interface Protocol +# +# end of ARM System Control and Management Interface Protocol + +CONFIG_EDD=y +CONFIG_EDD_OFF=y +CONFIG_FIRMWARE_MEMMAP=y +CONFIG_DMIID=y +CONFIG_DMI_SYSFS=m +CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y +CONFIG_ISCSI_IBFT_FIND=y +CONFIG_ISCSI_IBFT=m +CONFIG_FW_CFG_SYSFS=m +# CONFIG_FW_CFG_SYSFS_CMDLINE is not set +CONFIG_SYSFB=y +# CONFIG_SYSFB_SIMPLEFB is not set +CONFIG_CS_DSP=m +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +CONFIG_EFI_VARS=y +CONFIG_EFI_ESRT=y +CONFIG_EFI_VARS_PSTORE=m +# CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set +CONFIG_EFI_RUNTIME_MAP=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_SOFT_RESERVE=y +CONFIG_EFI_RUNTIME_WRAPPERS=y +CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y +CONFIG_EFI_BOOTLOADER_CONTROL=m +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +CONFIG_APPLE_PROPERTIES=y +CONFIG_RESET_ATTACK_MITIGATION=y +# CONFIG_EFI_RCI2_TABLE is not set +# CONFIG_EFI_DISABLE_PCI_DMA is not set +# end of EFI (Extensible Firmware Interface) Support + +CONFIG_UEFI_CPER=y +CONFIG_UEFI_CPER_X86=y +CONFIG_EFI_DEV_PATH_PARSER=y +CONFIG_EFI_EARLYCON=y +CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + +CONFIG_GNSS=m +CONFIG_GNSS_SERIAL=m +CONFIG_GNSS_MTK_SERIAL=m +CONFIG_GNSS_SIRF_SERIAL=m +CONFIG_GNSS_UBX_SERIAL=m +CONFIG_MTD=m +# CONFIG_MTD_TESTS is not set + +# +# Partition parsers +# +CONFIG_MTD_AR7_PARTS=m +CONFIG_MTD_CMDLINE_PARTS=m +CONFIG_MTD_REDBOOT_PARTS=m +CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 +# CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set +# CONFIG_MTD_REDBOOT_PARTS_READONLY is not set +# end of Partition parsers + +# +# User Modules And Translation Layers +# +CONFIG_MTD_BLKDEVS=m +CONFIG_MTD_BLOCK=m +CONFIG_MTD_BLOCK_RO=m + +# +# Note that in some cases UBI block is preferred. See MTD_UBI_BLOCK. +# +CONFIG_FTL=m +CONFIG_NFTL=m +CONFIG_NFTL_RW=y +CONFIG_INFTL=m +CONFIG_RFD_FTL=m +CONFIG_SSFDC=m +CONFIG_SM_FTL=m +CONFIG_MTD_OOPS=m +CONFIG_MTD_SWAP=m +# CONFIG_MTD_PARTITIONED_MASTER is not set + +# +# RAM/ROM/Flash chip drivers +# +CONFIG_MTD_CFI=m +CONFIG_MTD_JEDECPROBE=m +CONFIG_MTD_GEN_PROBE=m +# CONFIG_MTD_CFI_ADV_OPTIONS is not set +CONFIG_MTD_MAP_BANK_WIDTH_1=y +CONFIG_MTD_MAP_BANK_WIDTH_2=y +CONFIG_MTD_MAP_BANK_WIDTH_4=y +CONFIG_MTD_CFI_I1=y +CONFIG_MTD_CFI_I2=y +CONFIG_MTD_CFI_INTELEXT=m +CONFIG_MTD_CFI_AMDSTD=m +CONFIG_MTD_CFI_STAA=m +CONFIG_MTD_CFI_UTIL=m +CONFIG_MTD_RAM=m +CONFIG_MTD_ROM=m +CONFIG_MTD_ABSENT=m +# end of RAM/ROM/Flash chip drivers + +# +# Mapping drivers for chip access +# +CONFIG_MTD_COMPLEX_MAPPINGS=y +CONFIG_MTD_PHYSMAP=m +# CONFIG_MTD_PHYSMAP_COMPAT is not set +CONFIG_MTD_PHYSMAP_GPIO_ADDR=y +CONFIG_MTD_SBC_GXX=m +CONFIG_MTD_AMD76XROM=m +CONFIG_MTD_ICHXROM=m +CONFIG_MTD_ESB2ROM=m +CONFIG_MTD_CK804XROM=m +CONFIG_MTD_SCB2_FLASH=m +CONFIG_MTD_NETtel=m +CONFIG_MTD_L440GX=m +CONFIG_MTD_PCI=m +CONFIG_MTD_PCMCIA=m +# CONFIG_MTD_PCMCIA_ANONYMOUS is not set +CONFIG_MTD_INTEL_VR_NOR=m +CONFIG_MTD_PLATRAM=m +# end of Mapping drivers for chip access + +# +# Self-contained MTD device drivers +# +CONFIG_MTD_PMC551=m +# CONFIG_MTD_PMC551_BUGFIX is not set +# CONFIG_MTD_PMC551_DEBUG is not set +CONFIG_MTD_DATAFLASH=m +# CONFIG_MTD_DATAFLASH_WRITE_VERIFY is not set +CONFIG_MTD_DATAFLASH_OTP=y +CONFIG_MTD_MCHP23K256=m +CONFIG_MTD_MCHP48L640=m +CONFIG_MTD_SST25L=m +CONFIG_MTD_SLRAM=m +CONFIG_MTD_PHRAM=m +CONFIG_MTD_MTDRAM=m +CONFIG_MTDRAM_TOTAL_SIZE=4096 +CONFIG_MTDRAM_ERASE_SIZE=128 +CONFIG_MTD_BLOCK2MTD=m + +# +# Disk-On-Chip Device Drivers +# +CONFIG_MTD_DOCG3=m +CONFIG_BCH_CONST_M=14 +CONFIG_BCH_CONST_T=4 +# end of Self-contained MTD device drivers + +# +# NAND +# +CONFIG_MTD_NAND_CORE=m +CONFIG_MTD_ONENAND=m +CONFIG_MTD_ONENAND_VERIFY_WRITE=y +CONFIG_MTD_ONENAND_GENERIC=m +# CONFIG_MTD_ONENAND_OTP is not set +CONFIG_MTD_ONENAND_2X_PROGRAM=y +CONFIG_MTD_RAW_NAND=m + +# +# Raw/parallel NAND flash controllers +# +CONFIG_MTD_NAND_DENALI=m +CONFIG_MTD_NAND_DENALI_PCI=m +CONFIG_MTD_NAND_CAFE=m +CONFIG_MTD_NAND_MXIC=m +CONFIG_MTD_NAND_GPIO=m +CONFIG_MTD_NAND_PLATFORM=m +CONFIG_MTD_NAND_ARASAN=m + +# +# Misc +# +CONFIG_MTD_SM_COMMON=m +CONFIG_MTD_NAND_NANDSIM=m +CONFIG_MTD_NAND_RICOH=m +CONFIG_MTD_NAND_DISKONCHIP=m +# CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADVANCED is not set +CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS=0 +# CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE is not set +CONFIG_MTD_SPI_NAND=m + +# +# ECC engine support +# +CONFIG_MTD_NAND_ECC=y +CONFIG_MTD_NAND_ECC_SW_HAMMING=y +# CONFIG_MTD_NAND_ECC_SW_HAMMING_SMC is not set +# CONFIG_MTD_NAND_ECC_SW_BCH is not set +# end of ECC engine support +# end of NAND + +# +# LPDDR & LPDDR2 PCM memory drivers +# +CONFIG_MTD_LPDDR=m +CONFIG_MTD_QINFO_PROBE=m +# end of LPDDR & LPDDR2 PCM memory drivers + +CONFIG_MTD_SPI_NOR=m +CONFIG_MTD_SPI_NOR_USE_4K_SECTORS=y +# CONFIG_MTD_SPI_NOR_SWP_DISABLE is not set +CONFIG_MTD_SPI_NOR_SWP_DISABLE_ON_VOLATILE=y +# CONFIG_MTD_SPI_NOR_SWP_KEEP is not set +CONFIG_SPI_INTEL_SPI=m +CONFIG_SPI_INTEL_SPI_PCI=m +CONFIG_SPI_INTEL_SPI_PLATFORM=m +CONFIG_MTD_UBI=m +CONFIG_MTD_UBI_WL_THRESHOLD=4096 +CONFIG_MTD_UBI_BEB_LIMIT=20 +CONFIG_MTD_UBI_FASTMAP=y +CONFIG_MTD_UBI_GLUEBI=m +CONFIG_MTD_UBI_BLOCK=y +CONFIG_MTD_HYPERBUS=m +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +CONFIG_PARPORT=m +CONFIG_PARPORT_PC=m +CONFIG_PARPORT_SERIAL=m +CONFIG_PARPORT_PC_FIFO=y +# CONFIG_PARPORT_PC_SUPERIO is not set +CONFIG_PARPORT_PC_PCMCIA=m +CONFIG_PARPORT_AX88796=m +CONFIG_PARPORT_1284=y +CONFIG_PARPORT_NOT_PC=y +CONFIG_PNP=y +# CONFIG_PNP_DEBUG_MESSAGES is not set + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +CONFIG_BLK_DEV_NULL_BLK=m +CONFIG_BLK_DEV_FD=m +CONFIG_CDROM=y +CONFIG_PARIDE=m + +# +# Parallel IDE high-level drivers +# +CONFIG_PARIDE_PD=m +CONFIG_PARIDE_PCD=m +CONFIG_PARIDE_PF=m +CONFIG_PARIDE_PT=m +CONFIG_PARIDE_PG=m + +# +# Parallel IDE protocol modules +# +CONFIG_PARIDE_ATEN=m +CONFIG_PARIDE_BPCK=m +CONFIG_PARIDE_COMM=m +CONFIG_PARIDE_DSTR=m +CONFIG_PARIDE_FIT2=m +CONFIG_PARIDE_FIT3=m +CONFIG_PARIDE_EPAT=m +CONFIG_PARIDE_EPATC8=y +CONFIG_PARIDE_EPIA=m +CONFIG_PARIDE_FRIQ=m +CONFIG_PARIDE_FRPW=m +CONFIG_PARIDE_KBIC=m +CONFIG_PARIDE_KTTI=m +CONFIG_PARIDE_ON20=m +CONFIG_PARIDE_ON26=m +CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m +CONFIG_ZRAM=m +CONFIG_ZRAM_DEF_COMP_LZORLE=y +# CONFIG_ZRAM_DEF_COMP_ZSTD is not set +# CONFIG_ZRAM_DEF_COMP_LZ4 is not set +# CONFIG_ZRAM_DEF_COMP_LZO is not set +# CONFIG_ZRAM_DEF_COMP_LZ4HC is not set +# CONFIG_ZRAM_DEF_COMP_842 is not set +CONFIG_ZRAM_DEF_COMP="lzo-rle" +# CONFIG_ZRAM_WRITEBACK is not set +# CONFIG_ZRAM_MEMORY_TRACKING is not set +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 +CONFIG_BLK_DEV_DRBD=m +# CONFIG_DRBD_FAULT_INJECTION is not set +CONFIG_BLK_DEV_NBD=m +CONFIG_BLK_DEV_SX8=m +CONFIG_BLK_DEV_RAM=y +CONFIG_BLK_DEV_RAM_COUNT=16 +CONFIG_BLK_DEV_RAM_SIZE=65536 +CONFIG_CDROM_PKTCDVD=m +CONFIG_CDROM_PKTCDVD_BUFFERS=8 +# CONFIG_CDROM_PKTCDVD_WCACHE is not set +CONFIG_ATA_OVER_ETH=m +CONFIG_XEN_BLKDEV_FRONTEND=y +CONFIG_XEN_BLKDEV_BACKEND=m +CONFIG_VIRTIO_BLK=y +CONFIG_BLK_DEV_RBD=m +CONFIG_BLK_DEV_RSXX=m +CONFIG_BLK_DEV_RNBD=y +CONFIG_BLK_DEV_RNBD_CLIENT=m +CONFIG_BLK_DEV_RNBD_SERVER=m + +# +# NVME Support +# +CONFIG_NVME_CORE=y +CONFIG_BLK_DEV_NVME=y +# CONFIG_NVME_MULTIPATH is not set +CONFIG_NVME_HWMON=y +CONFIG_NVME_FABRICS=m +CONFIG_NVME_RDMA=m +CONFIG_NVME_FC=m +CONFIG_NVME_TCP=m +CONFIG_NVME_TARGET=m +# CONFIG_NVME_TARGET_PASSTHRU is not set +CONFIG_NVME_TARGET_LOOP=m +CONFIG_NVME_TARGET_RDMA=m +CONFIG_NVME_TARGET_FC=m +CONFIG_NVME_TARGET_FCLOOP=m +CONFIG_NVME_TARGET_TCP=m +# end of NVME Support + +# +# Misc devices +# +CONFIG_SENSORS_LIS3LV02D=m +CONFIG_AD525X_DPOT=m +CONFIG_AD525X_DPOT_I2C=m +CONFIG_AD525X_DPOT_SPI=m +CONFIG_DUMMY_IRQ=m +CONFIG_IBM_ASM=m +CONFIG_PHANTOM=m +CONFIG_TIFM_CORE=m +CONFIG_TIFM_7XX1=m +CONFIG_ICS932S401=m +CONFIG_ENCLOSURE_SERVICES=m +CONFIG_HP_ILO=m +CONFIG_APDS9802ALS=m +CONFIG_ISL29003=m +CONFIG_ISL29020=m +CONFIG_SENSORS_TSL2550=m +CONFIG_SENSORS_BH1770=m +CONFIG_SENSORS_APDS990X=m +CONFIG_HMC6352=m +CONFIG_DS1682=m +CONFIG_VMWARE_BALLOON=m +CONFIG_LATTICE_ECP3_CONFIG=m +CONFIG_SRAM=y +CONFIG_DW_XDATA_PCIE=m +# CONFIG_PCI_ENDPOINT_TEST is not set +CONFIG_XILINX_SDFEC=m +CONFIG_MISC_RTSX=m +CONFIG_C2PORT=m +CONFIG_C2PORT_DURAMAR_2150=m + +# +# EEPROM support +# +CONFIG_EEPROM_AT24=m +CONFIG_EEPROM_AT25=m +CONFIG_EEPROM_LEGACY=m +CONFIG_EEPROM_MAX6875=m +CONFIG_EEPROM_93CX6=m +CONFIG_EEPROM_93XX46=m +CONFIG_EEPROM_IDT_89HPESX=m +CONFIG_EEPROM_EE1004=m +# end of EEPROM support + +CONFIG_CB710_CORE=m +# CONFIG_CB710_DEBUG is not set +CONFIG_CB710_DEBUG_ASSUMPTIONS=y + +# +# Texas Instruments shared transport line discipline +# +CONFIG_TI_ST=m +# end of Texas Instruments shared transport line discipline + +CONFIG_SENSORS_LIS3_I2C=m +CONFIG_ALTERA_STAPL=m +# CONFIG_INTEL_MEI is not set +# CONFIG_INTEL_MEI_ME is not set +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_INTEL_MEI_HDCP is not set +# CONFIG_INTEL_MEI_PXP is not set +CONFIG_VMWARE_VMCI=m +CONFIG_GENWQE=m +CONFIG_GENWQE_PLATFORM_ERROR_RECOVERY=0 +CONFIG_ECHO=m +CONFIG_BCM_VK=m +CONFIG_BCM_VK_TTY=y +CONFIG_MISC_ALCOR_PCI=m +CONFIG_MISC_RTSX_PCI=m +CONFIG_MISC_RTSX_USB=m +CONFIG_HABANA_AI=m +CONFIG_UACCE=m +CONFIG_PVPANIC=y +CONFIG_PVPANIC_MMIO=m +CONFIG_PVPANIC_PCI=m +# end of Misc devices + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +CONFIG_RAID_ATTRS=m +CONFIG_SCSI_COMMON=y +CONFIG_SCSI=y +CONFIG_SCSI_DMA=y +CONFIG_SCSI_NETLINK=y +CONFIG_SCSI_PROC_FS=y + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=y +CONFIG_CHR_DEV_ST=m +CONFIG_BLK_DEV_SR=y +CONFIG_CHR_DEV_SG=y +CONFIG_BLK_DEV_BSG=y +CONFIG_CHR_DEV_SCH=m +CONFIG_SCSI_ENCLOSURE=m +CONFIG_SCSI_CONSTANTS=y +CONFIG_SCSI_LOGGING=y +CONFIG_SCSI_SCAN_ASYNC=y + +# +# SCSI Transports +# +CONFIG_SCSI_SPI_ATTRS=m +CONFIG_SCSI_FC_ATTRS=m +CONFIG_SCSI_ISCSI_ATTRS=m +CONFIG_SCSI_SAS_ATTRS=m +CONFIG_SCSI_SAS_LIBSAS=m +CONFIG_SCSI_SAS_ATA=y +CONFIG_SCSI_SAS_HOST_SMP=y +CONFIG_SCSI_SRP_ATTRS=m +# end of SCSI Transports + +CONFIG_SCSI_LOWLEVEL=y +CONFIG_ISCSI_TCP=m +CONFIG_ISCSI_BOOT_SYSFS=m +CONFIG_SCSI_CXGB3_ISCSI=m +CONFIG_SCSI_CXGB4_ISCSI=m +CONFIG_SCSI_BNX2_ISCSI=m +CONFIG_SCSI_BNX2X_FCOE=m +CONFIG_BE2ISCSI=m +CONFIG_BLK_DEV_3W_XXXX_RAID=m +CONFIG_SCSI_HPSA=m +CONFIG_SCSI_3W_9XXX=m +CONFIG_SCSI_3W_SAS=m +CONFIG_SCSI_ACARD=m +CONFIG_SCSI_AACRAID=m +CONFIG_SCSI_AIC7XXX=m +CONFIG_AIC7XXX_CMDS_PER_DEVICE=8 +CONFIG_AIC7XXX_RESET_DELAY_MS=5000 +# CONFIG_AIC7XXX_DEBUG_ENABLE is not set +CONFIG_AIC7XXX_DEBUG_MASK=0 +CONFIG_AIC7XXX_REG_PRETTY_PRINT=y +CONFIG_SCSI_AIC79XX=m +CONFIG_AIC79XX_CMDS_PER_DEVICE=32 +CONFIG_AIC79XX_RESET_DELAY_MS=5000 +# CONFIG_AIC79XX_DEBUG_ENABLE is not set +CONFIG_AIC79XX_DEBUG_MASK=0 +CONFIG_AIC79XX_REG_PRETTY_PRINT=y +CONFIG_SCSI_AIC94XX=m +# CONFIG_AIC94XX_DEBUG is not set +CONFIG_SCSI_MVSAS=m +# CONFIG_SCSI_MVSAS_DEBUG is not set +# CONFIG_SCSI_MVSAS_TASKLET is not set +CONFIG_SCSI_MVUMI=m +CONFIG_SCSI_DPT_I2O=m +CONFIG_SCSI_ADVANSYS=m +CONFIG_SCSI_ARCMSR=m +CONFIG_SCSI_ESAS2R=m +CONFIG_MEGARAID_NEWGEN=y +CONFIG_MEGARAID_MM=m +CONFIG_MEGARAID_MAILBOX=m +CONFIG_MEGARAID_LEGACY=m +CONFIG_MEGARAID_SAS=m +CONFIG_SCSI_MPT3SAS=m +CONFIG_SCSI_MPT2SAS_MAX_SGE=128 +CONFIG_SCSI_MPT3SAS_MAX_SGE=128 +CONFIG_SCSI_MPT2SAS=m +CONFIG_SCSI_MPI3MR=m +CONFIG_SCSI_SMARTPQI=m +CONFIG_SCSI_UFSHCD=m +CONFIG_SCSI_UFSHCD_PCI=m +# CONFIG_SCSI_UFS_DWC_TC_PCI is not set +CONFIG_SCSI_UFSHCD_PLATFORM=m +CONFIG_SCSI_UFS_CDNS_PLATFORM=m +# CONFIG_SCSI_UFS_DWC_TC_PLATFORM is not set +# CONFIG_SCSI_UFS_BSG is not set +CONFIG_SCSI_UFS_CRYPTO=y +CONFIG_SCSI_UFS_HPB=y +CONFIG_SCSI_UFS_HWMON=y +CONFIG_SCSI_HPTIOP=m +CONFIG_SCSI_BUSLOGIC=m +CONFIG_SCSI_FLASHPOINT=y +CONFIG_SCSI_MYRB=m +CONFIG_SCSI_MYRS=m +CONFIG_VMWARE_PVSCSI=m +CONFIG_XEN_SCSI_FRONTEND=m +CONFIG_HYPERV_STORAGE=m +CONFIG_LIBFC=m +CONFIG_LIBFCOE=m +CONFIG_FCOE=m +CONFIG_FCOE_FNIC=m +CONFIG_SCSI_SNIC=m +# CONFIG_SCSI_SNIC_DEBUG_FS is not set +CONFIG_SCSI_DMX3191D=m +CONFIG_SCSI_FDOMAIN=m +CONFIG_SCSI_FDOMAIN_PCI=m +CONFIG_SCSI_ISCI=m +CONFIG_SCSI_IPS=m +CONFIG_SCSI_INITIO=m +CONFIG_SCSI_INIA100=m +CONFIG_SCSI_PPA=m +CONFIG_SCSI_IMM=m +# CONFIG_SCSI_IZIP_EPP16 is not set +# CONFIG_SCSI_IZIP_SLOW_CTR is not set +CONFIG_SCSI_STEX=m +CONFIG_SCSI_SYM53C8XX_2=m +CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1 +CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 +CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 +CONFIG_SCSI_SYM53C8XX_MMIO=y +CONFIG_SCSI_IPR=m +CONFIG_SCSI_IPR_TRACE=y +CONFIG_SCSI_IPR_DUMP=y +CONFIG_SCSI_QLOGIC_1280=m +CONFIG_SCSI_QLA_FC=m +CONFIG_TCM_QLA2XXX=m +# CONFIG_TCM_QLA2XXX_DEBUG is not set +CONFIG_SCSI_QLA_ISCSI=m +CONFIG_QEDI=m +CONFIG_QEDF=m +CONFIG_SCSI_LPFC=m +# CONFIG_SCSI_LPFC_DEBUG_FS is not set +CONFIG_SCSI_EFCT=m +CONFIG_SCSI_DC395x=m +CONFIG_SCSI_AM53C974=m +CONFIG_SCSI_WD719X=m +CONFIG_SCSI_DEBUG=m +CONFIG_SCSI_PMCRAID=m +CONFIG_SCSI_PM8001=m +CONFIG_SCSI_BFA_FC=m +CONFIG_SCSI_VIRTIO=m +CONFIG_SCSI_CHELSIO_FCOE=m +CONFIG_SCSI_LOWLEVEL_PCMCIA=y +CONFIG_PCMCIA_AHA152X=m +CONFIG_PCMCIA_FDOMAIN=m +CONFIG_PCMCIA_QLOGIC=m +CONFIG_PCMCIA_SYM53C500=m +CONFIG_SCSI_DH=y +CONFIG_SCSI_DH_RDAC=m +CONFIG_SCSI_DH_HP_SW=m +CONFIG_SCSI_DH_EMC=m +CONFIG_SCSI_DH_ALUA=m +# end of SCSI device support + +CONFIG_ATA=y +CONFIG_SATA_HOST=y +CONFIG_PATA_TIMINGS=y +CONFIG_ATA_VERBOSE_ERROR=y +CONFIG_ATA_FORCE=y +CONFIG_ATA_ACPI=y +CONFIG_SATA_ZPODD=y +CONFIG_SATA_PMP=y + +# +# Controllers with non-SFF native interface +# +CONFIG_SATA_AHCI=m +CONFIG_SATA_MOBILE_LPM_POLICY=0 +CONFIG_SATA_AHCI_PLATFORM=m +CONFIG_SATA_INIC162X=m +CONFIG_SATA_ACARD_AHCI=m +CONFIG_SATA_SIL24=m +CONFIG_ATA_SFF=y + +# +# SFF controllers with custom DMA interface +# +CONFIG_PDC_ADMA=m +CONFIG_SATA_QSTOR=m +CONFIG_SATA_SX4=m +CONFIG_ATA_BMDMA=y + +# +# SATA SFF controllers with BMDMA +# +CONFIG_ATA_PIIX=y +CONFIG_SATA_DWC=m +# CONFIG_SATA_DWC_OLD_DMA is not set +# CONFIG_SATA_DWC_DEBUG is not set +CONFIG_SATA_MV=m +CONFIG_SATA_NV=m +CONFIG_SATA_PROMISE=m +CONFIG_SATA_SIL=m +CONFIG_SATA_SIS=m +CONFIG_SATA_SVW=m +CONFIG_SATA_ULI=m +CONFIG_SATA_VIA=m +CONFIG_SATA_VITESSE=m + +# +# PATA SFF controllers with BMDMA +# +CONFIG_PATA_ALI=m +CONFIG_PATA_AMD=m +CONFIG_PATA_ARTOP=m +CONFIG_PATA_ATIIXP=m +CONFIG_PATA_ATP867X=m +CONFIG_PATA_CMD64X=m +CONFIG_PATA_CYPRESS=m +CONFIG_PATA_EFAR=m +CONFIG_PATA_HPT366=m +CONFIG_PATA_HPT37X=m +CONFIG_PATA_HPT3X2N=m +CONFIG_PATA_HPT3X3=m +# CONFIG_PATA_HPT3X3_DMA is not set +CONFIG_PATA_IT8213=m +CONFIG_PATA_IT821X=m +CONFIG_PATA_JMICRON=m +CONFIG_PATA_MARVELL=m +CONFIG_PATA_NETCELL=m +CONFIG_PATA_NINJA32=m +CONFIG_PATA_NS87415=m +CONFIG_PATA_OLDPIIX=m +CONFIG_PATA_OPTIDMA=m +CONFIG_PATA_PDC2027X=m +CONFIG_PATA_PDC_OLD=m +CONFIG_PATA_RADISYS=m +CONFIG_PATA_RDC=m +CONFIG_PATA_SCH=m +CONFIG_PATA_SERVERWORKS=m +CONFIG_PATA_SIL680=m +CONFIG_PATA_SIS=y +CONFIG_PATA_TOSHIBA=m +CONFIG_PATA_TRIFLEX=m +CONFIG_PATA_VIA=m +CONFIG_PATA_WINBOND=m + +# +# PIO-only SFF controllers +# +CONFIG_PATA_CMD640_PCI=m +CONFIG_PATA_MPIIX=m +CONFIG_PATA_NS87410=m +CONFIG_PATA_OPTI=m +CONFIG_PATA_PCMCIA=m +CONFIG_PATA_PLATFORM=m +CONFIG_PATA_RZ1000=m + +# +# Generic fallback / legacy drivers +# +CONFIG_PATA_ACPI=m +CONFIG_ATA_GENERIC=y +CONFIG_PATA_LEGACY=m +CONFIG_MD=y +CONFIG_BLK_DEV_MD=y +CONFIG_MD_AUTODETECT=y +CONFIG_MD_LINEAR=m +CONFIG_MD_RAID0=m +CONFIG_MD_RAID1=m +CONFIG_MD_RAID10=m +CONFIG_MD_RAID456=m +CONFIG_MD_MULTIPATH=m +CONFIG_MD_FAULTY=m +CONFIG_MD_CLUSTER=m +CONFIG_BCACHE=m +# CONFIG_BCACHE_DEBUG is not set +# CONFIG_BCACHE_CLOSURES_DEBUG is not set +# CONFIG_BCACHE_ASYNC_REGISTRATION is not set +CONFIG_BLK_DEV_DM_BUILTIN=y +CONFIG_BLK_DEV_DM=y +# CONFIG_DM_DEBUG is not set +CONFIG_DM_BUFIO=m +# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set +CONFIG_DM_BIO_PRISON=m +CONFIG_DM_PERSISTENT_DATA=m +CONFIG_DM_UNSTRIPED=m +CONFIG_DM_CRYPT=m +CONFIG_DM_SNAPSHOT=m +CONFIG_DM_THIN_PROVISIONING=m +CONFIG_DM_CACHE=m +CONFIG_DM_CACHE_SMQ=m +CONFIG_DM_WRITECACHE=m +# CONFIG_DM_EBS is not set +CONFIG_DM_ERA=m +CONFIG_DM_CLONE=m +CONFIG_DM_MIRROR=m +CONFIG_DM_LOG_USERSPACE=m +CONFIG_DM_RAID=m +CONFIG_DM_ZERO=m +CONFIG_DM_MULTIPATH=m +CONFIG_DM_MULTIPATH_QL=m +CONFIG_DM_MULTIPATH_ST=m +CONFIG_DM_MULTIPATH_HST=m +CONFIG_DM_MULTIPATH_IOA=m +CONFIG_DM_DELAY=m +CONFIG_DM_DUST=m +# CONFIG_DM_INIT is not set +CONFIG_DM_UEVENT=y +CONFIG_DM_FLAKEY=m +CONFIG_DM_VERITY=m +CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG=y +# CONFIG_DM_VERITY_FEC is not set +CONFIG_DM_SWITCH=m +CONFIG_DM_LOG_WRITES=m +CONFIG_DM_INTEGRITY=m +CONFIG_DM_ZONED=m +CONFIG_DM_AUDIT=y +CONFIG_TARGET_CORE=m +CONFIG_TCM_IBLOCK=m +CONFIG_TCM_FILEIO=m +CONFIG_TCM_PSCSI=m +CONFIG_TCM_USER2=m +CONFIG_LOOPBACK_TARGET=m +CONFIG_TCM_FC=m +CONFIG_ISCSI_TARGET=m +CONFIG_ISCSI_TARGET_CXGB4=m +CONFIG_SBP_TARGET=m +CONFIG_FUSION=y +CONFIG_FUSION_SPI=m +CONFIG_FUSION_FC=m +CONFIG_FUSION_SAS=m +CONFIG_FUSION_MAX_SGE=128 +CONFIG_FUSION_CTL=m +CONFIG_FUSION_LAN=m +CONFIG_FUSION_LOGGING=y + +# +# IEEE 1394 (FireWire) support +# +CONFIG_FIREWIRE=m +CONFIG_FIREWIRE_OHCI=m +CONFIG_FIREWIRE_SBP2=m +CONFIG_FIREWIRE_NET=m +CONFIG_FIREWIRE_NOSY=m +# end of IEEE 1394 (FireWire) support + +CONFIG_MACINTOSH_DRIVERS=y +CONFIG_MAC_EMUMOUSEBTN=m +CONFIG_NETDEVICES=y +CONFIG_MII=m +CONFIG_NET_CORE=y +CONFIG_BONDING=m +CONFIG_DUMMY=m +CONFIG_WIREGUARD=m +# CONFIG_WIREGUARD_DEBUG is not set +CONFIG_EQUALIZER=m +CONFIG_NET_FC=y +CONFIG_IFB=m +CONFIG_NET_TEAM=m +CONFIG_NET_TEAM_MODE_BROADCAST=m +CONFIG_NET_TEAM_MODE_ROUNDROBIN=m +CONFIG_NET_TEAM_MODE_RANDOM=m +CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m +CONFIG_NET_TEAM_MODE_LOADBALANCE=m +CONFIG_MACVLAN=m +CONFIG_MACVTAP=m +CONFIG_IPVLAN_L3S=y +CONFIG_IPVLAN=m +CONFIG_IPVTAP=m +CONFIG_VXLAN=m +CONFIG_GENEVE=m +CONFIG_BAREUDP=m +CONFIG_GTP=m +CONFIG_AMT=m +CONFIG_MACSEC=m +CONFIG_NETCONSOLE=m +CONFIG_NETCONSOLE_DYNAMIC=y +CONFIG_NETPOLL=y +CONFIG_NET_POLL_CONTROLLER=y +CONFIG_NTB_NETDEV=m +CONFIG_RIONET=m +CONFIG_RIONET_TX_SIZE=128 +CONFIG_RIONET_RX_SIZE=128 +CONFIG_TUN=y +CONFIG_TAP=m +# CONFIG_TUN_VNET_CROSS_LE is not set +CONFIG_VETH=m +CONFIG_VIRTIO_NET=y +CONFIG_NLMON=m +CONFIG_NET_VRF=m +CONFIG_VSOCKMON=m +CONFIG_MHI_NET=m +CONFIG_SUNGEM_PHY=m +CONFIG_ARCNET=m +CONFIG_ARCNET_1201=m +CONFIG_ARCNET_1051=m +CONFIG_ARCNET_RAW=m +CONFIG_ARCNET_CAP=m +CONFIG_ARCNET_COM90xx=m +CONFIG_ARCNET_COM90xxIO=m +CONFIG_ARCNET_RIM_I=m +CONFIG_ARCNET_COM20020=m +CONFIG_ARCNET_COM20020_PCI=m +CONFIG_ARCNET_COM20020_CS=m +CONFIG_ATM_DRIVERS=y +CONFIG_ATM_DUMMY=m +CONFIG_ATM_TCP=m +CONFIG_ATM_LANAI=m +CONFIG_ATM_ENI=m +# CONFIG_ATM_ENI_DEBUG is not set +# CONFIG_ATM_ENI_TUNE_BURST is not set +CONFIG_ATM_FIRESTREAM=m +CONFIG_ATM_ZATM=m +# CONFIG_ATM_ZATM_DEBUG is not set +CONFIG_ATM_NICSTAR=m +# CONFIG_ATM_NICSTAR_USE_SUNI is not set +# CONFIG_ATM_NICSTAR_USE_IDT77105 is not set +CONFIG_ATM_IDT77252=m +# CONFIG_ATM_IDT77252_DEBUG is not set +# CONFIG_ATM_IDT77252_RCV_ALL is not set +CONFIG_ATM_IDT77252_USE_SUNI=y +CONFIG_ATM_AMBASSADOR=m +# CONFIG_ATM_AMBASSADOR_DEBUG is not set +CONFIG_ATM_HORIZON=m +# CONFIG_ATM_HORIZON_DEBUG is not set +CONFIG_ATM_IA=m +# CONFIG_ATM_IA_DEBUG is not set +CONFIG_ATM_FORE200E=m +# CONFIG_ATM_FORE200E_USE_TASKLET is not set +CONFIG_ATM_FORE200E_TX_RETRY=16 +CONFIG_ATM_FORE200E_DEBUG=0 +CONFIG_ATM_HE=m +CONFIG_ATM_HE_USE_SUNI=y +CONFIG_ATM_SOLOS=m +CONFIG_CAIF_DRIVERS=y +CONFIG_CAIF_TTY=m +CONFIG_CAIF_VIRTIO=m + +# +# Distributed Switch Architecture drivers +# +CONFIG_B53=m +CONFIG_B53_SPI_DRIVER=m +CONFIG_B53_MDIO_DRIVER=m +CONFIG_B53_MMAP_DRIVER=m +CONFIG_B53_SRAB_DRIVER=m +CONFIG_B53_SERDES=m +CONFIG_NET_DSA_BCM_SF2=m +# CONFIG_NET_DSA_LOOP is not set +CONFIG_NET_DSA_HIRSCHMANN_HELLCREEK=m +CONFIG_NET_DSA_LANTIQ_GSWIP=m +CONFIG_NET_DSA_MT7530=m +CONFIG_NET_DSA_MV88E6060=m +CONFIG_NET_DSA_MICROCHIP_KSZ_COMMON=m +CONFIG_NET_DSA_MICROCHIP_KSZ9477=m +CONFIG_NET_DSA_MICROCHIP_KSZ9477_I2C=m +CONFIG_NET_DSA_MICROCHIP_KSZ9477_SPI=m +CONFIG_NET_DSA_MICROCHIP_KSZ8795=m +CONFIG_NET_DSA_MICROCHIP_KSZ8795_SPI=m +CONFIG_NET_DSA_MICROCHIP_KSZ8863_SMI=m +CONFIG_NET_DSA_MV88E6XXX=m +# CONFIG_NET_DSA_MV88E6XXX_PTP is not set +CONFIG_NET_DSA_MSCC_SEVILLE=m +CONFIG_NET_DSA_AR9331=m +CONFIG_NET_DSA_SJA1105=m +CONFIG_NET_DSA_SJA1105_PTP=y +# CONFIG_NET_DSA_SJA1105_TAS is not set +CONFIG_NET_DSA_XRS700X=m +CONFIG_NET_DSA_XRS700X_I2C=m +CONFIG_NET_DSA_XRS700X_MDIO=m +CONFIG_NET_DSA_QCA8K=m +CONFIG_NET_DSA_REALTEK_SMI=m +CONFIG_NET_DSA_SMSC_LAN9303=m +CONFIG_NET_DSA_SMSC_LAN9303_I2C=m +CONFIG_NET_DSA_SMSC_LAN9303_MDIO=m +CONFIG_NET_DSA_VITESSE_VSC73XX=m +CONFIG_NET_DSA_VITESSE_VSC73XX_SPI=m +CONFIG_NET_DSA_VITESSE_VSC73XX_PLATFORM=m +# end of Distributed Switch Architecture drivers + +CONFIG_ETHERNET=y +CONFIG_MDIO=m +CONFIG_NET_VENDOR_3COM=y +CONFIG_PCMCIA_3C574=m +CONFIG_PCMCIA_3C589=m +CONFIG_VORTEX=m +CONFIG_TYPHOON=m +CONFIG_NET_VENDOR_ADAPTEC=y +CONFIG_ADAPTEC_STARFIRE=m +CONFIG_NET_VENDOR_AGERE=y +CONFIG_ET131X=m +CONFIG_NET_VENDOR_ALACRITECH=y +CONFIG_SLICOSS=m +CONFIG_NET_VENDOR_ALTEON=y +CONFIG_ACENIC=m +# CONFIG_ACENIC_OMIT_TIGON_I is not set +CONFIG_ALTERA_TSE=m +CONFIG_NET_VENDOR_AMAZON=y +CONFIG_ENA_ETHERNET=m +CONFIG_NET_VENDOR_AMD=y +CONFIG_AMD8111_ETH=m +CONFIG_PCNET32=m +CONFIG_PCMCIA_NMCLAN=m +CONFIG_AMD_XGBE=m +# CONFIG_AMD_XGBE_DCB is not set +CONFIG_AMD_XGBE_HAVE_ECC=y +CONFIG_NET_VENDOR_AQUANTIA=y +CONFIG_AQTION=m +CONFIG_NET_VENDOR_ARC=y +CONFIG_NET_VENDOR_ASIX=y +CONFIG_SPI_AX88796C=m +CONFIG_SPI_AX88796C_COMPRESSION=y +CONFIG_NET_VENDOR_ATHEROS=y +CONFIG_ATL2=m +CONFIG_ATL1=m +CONFIG_ATL1E=m +CONFIG_ATL1C=m +CONFIG_ALX=m +CONFIG_NET_VENDOR_BROADCOM=y +CONFIG_B44=m +CONFIG_B44_PCI_AUTOSELECT=y +CONFIG_B44_PCICORE_AUTOSELECT=y +CONFIG_B44_PCI=y +CONFIG_BCMGENET=m +CONFIG_BNX2=m +CONFIG_CNIC=m +CONFIG_TIGON3=m +CONFIG_TIGON3_HWMON=y +CONFIG_BNX2X=m +CONFIG_BNX2X_SRIOV=y +# CONFIG_SYSTEMPORT is not set +CONFIG_BNXT=m +CONFIG_BNXT_SRIOV=y +CONFIG_BNXT_FLOWER_OFFLOAD=y +# CONFIG_BNXT_DCB is not set +CONFIG_BNXT_HWMON=y +CONFIG_NET_VENDOR_BROCADE=y +CONFIG_BNA=m +CONFIG_NET_VENDOR_CADENCE=y +CONFIG_MACB=m +CONFIG_MACB_USE_HWSTAMP=y +CONFIG_MACB_PCI=m +CONFIG_NET_VENDOR_CAVIUM=y +CONFIG_THUNDER_NIC_PF=m +CONFIG_THUNDER_NIC_VF=m +CONFIG_THUNDER_NIC_BGX=m +CONFIG_THUNDER_NIC_RGX=m +CONFIG_CAVIUM_PTP=m +CONFIG_LIQUIDIO=m +CONFIG_LIQUIDIO_VF=m +CONFIG_NET_VENDOR_CHELSIO=y +CONFIG_CHELSIO_T1=m +CONFIG_CHELSIO_T1_1G=y +CONFIG_CHELSIO_T3=m +CONFIG_CHELSIO_T4=m +CONFIG_CHELSIO_T4_DCB=y +CONFIG_CHELSIO_T4_FCOE=y +CONFIG_CHELSIO_T4VF=m +CONFIG_CHELSIO_LIB=m +CONFIG_CHELSIO_INLINE_CRYPTO=y +# CONFIG_CHELSIO_IPSEC_INLINE is not set +CONFIG_NET_VENDOR_CISCO=y +CONFIG_ENIC=m +# CONFIG_NET_VENDOR_CORTINA is not set +CONFIG_CX_ECAT=m +CONFIG_DNET=m +CONFIG_NET_VENDOR_DEC=y +CONFIG_NET_TULIP=y +CONFIG_DE2104X=m +CONFIG_DE2104X_DSL=0 +CONFIG_TULIP=m +# CONFIG_TULIP_MWI is not set +# CONFIG_TULIP_MMIO is not set +# CONFIG_TULIP_NAPI is not set +CONFIG_DE4X5=m +CONFIG_WINBOND_840=m +CONFIG_DM9102=m +CONFIG_ULI526X=m +CONFIG_PCMCIA_XIRCOM=m +CONFIG_NET_VENDOR_DLINK=y +CONFIG_DL2K=m +CONFIG_SUNDANCE=m +# CONFIG_SUNDANCE_MMIO is not set +CONFIG_NET_VENDOR_EMULEX=y +CONFIG_BE2NET=m +CONFIG_BE2NET_HWMON=y +CONFIG_BE2NET_BE2=y +CONFIG_BE2NET_BE3=y +CONFIG_BE2NET_LANCER=y +CONFIG_BE2NET_SKYHAWK=y +CONFIG_NET_VENDOR_EZCHIP=y +CONFIG_NET_VENDOR_FUJITSU=y +CONFIG_PCMCIA_FMVJ18X=m +CONFIG_NET_VENDOR_GOOGLE=y +CONFIG_GVE=m +CONFIG_NET_VENDOR_HUAWEI=y +CONFIG_HINIC=m +CONFIG_NET_VENDOR_I825XX=y +CONFIG_NET_VENDOR_INTEL=y +CONFIG_E100=m +CONFIG_E1000=m +CONFIG_E1000E=m +CONFIG_E1000E_HWTS=y +CONFIG_IGB=m +CONFIG_IGB_HWMON=y +CONFIG_IGB_DCA=y +CONFIG_IGBVF=m +CONFIG_IXGB=m +CONFIG_IXGBE=m +CONFIG_IXGBE_HWMON=y +CONFIG_IXGBE_DCA=y +CONFIG_IXGBE_DCB=y +CONFIG_IXGBE_IPSEC=y +CONFIG_IXGBEVF=m +CONFIG_IXGBEVF_IPSEC=y +CONFIG_I40E=m +CONFIG_I40E_DCB=y +CONFIG_IAVF=m +CONFIG_I40EVF=m +CONFIG_ICE=m +CONFIG_ICE_SWITCHDEV=y +CONFIG_FM10K=m +CONFIG_IGC=m +CONFIG_NET_VENDOR_MICROSOFT=y +CONFIG_MICROSOFT_MANA=m +CONFIG_JME=m +CONFIG_NET_VENDOR_LITEX=y +CONFIG_NET_VENDOR_MARVELL=y +CONFIG_MVMDIO=m +CONFIG_SKGE=m +# CONFIG_SKGE_DEBUG is not set +CONFIG_SKGE_GENESIS=y +CONFIG_SKY2=m +# CONFIG_SKY2_DEBUG is not set +CONFIG_PRESTERA=m +CONFIG_PRESTERA_PCI=m +CONFIG_NET_VENDOR_MELLANOX=y +CONFIG_MLX4_EN=m +CONFIG_MLX4_EN_DCB=y +CONFIG_MLX4_CORE=m +CONFIG_MLX4_DEBUG=y +CONFIG_MLX4_CORE_GEN2=y +CONFIG_MLX5_CORE=m +CONFIG_MLX5_ACCEL=y +# CONFIG_MLX5_FPGA is not set +CONFIG_MLX5_CORE_EN=y +CONFIG_MLX5_EN_ARFS=y +CONFIG_MLX5_EN_RXNFC=y +CONFIG_MLX5_MPFS=y +CONFIG_MLX5_ESWITCH=y +CONFIG_MLX5_BRIDGE=y +CONFIG_MLX5_CLS_ACT=y +CONFIG_MLX5_TC_SAMPLE=y +CONFIG_MLX5_CORE_EN_DCB=y +# CONFIG_MLX5_CORE_IPOIB is not set +CONFIG_MLX5_IPSEC=y +CONFIG_MLX5_EN_IPSEC=y +CONFIG_MLX5_SW_STEERING=y +CONFIG_MLX5_SF=y +CONFIG_MLX5_SF_MANAGER=y +CONFIG_MLXSW_CORE=m +CONFIG_MLXSW_CORE_HWMON=y +CONFIG_MLXSW_CORE_THERMAL=y +CONFIG_MLXSW_PCI=m +CONFIG_MLXSW_I2C=m +CONFIG_MLXSW_SPECTRUM=m +CONFIG_MLXSW_SPECTRUM_DCB=y +CONFIG_MLXSW_MINIMAL=m +CONFIG_MLXFW=m +CONFIG_NET_VENDOR_MICREL=y +CONFIG_KS8842=m +CONFIG_KS8851=m +CONFIG_KS8851_MLL=m +CONFIG_KSZ884X_PCI=m +CONFIG_NET_VENDOR_MICROCHIP=y +CONFIG_ENC28J60=m +# CONFIG_ENC28J60_WRITEVERIFY is not set +CONFIG_ENCX24J600=m +CONFIG_LAN743X=m +CONFIG_NET_VENDOR_MICROSEMI=y +CONFIG_MSCC_OCELOT_SWITCH_LIB=m +CONFIG_NET_VENDOR_MYRI=y +CONFIG_MYRI10GE=m +CONFIG_MYRI10GE_DCA=y +CONFIG_FEALNX=m +CONFIG_NET_VENDOR_NATSEMI=y +CONFIG_NATSEMI=m +CONFIG_NS83820=m +CONFIG_NET_VENDOR_NETERION=y +CONFIG_S2IO=m +CONFIG_VXGE=m +# CONFIG_VXGE_DEBUG_TRACE_ALL is not set +CONFIG_NET_VENDOR_NETRONOME=y +CONFIG_NFP=m +# CONFIG_NFP_APP_FLOWER is not set +CONFIG_NFP_APP_ABM_NIC=y +# CONFIG_NFP_DEBUG is not set +CONFIG_NET_VENDOR_NI=y +CONFIG_NI_XGE_MANAGEMENT_ENET=m +CONFIG_NET_VENDOR_8390=y +CONFIG_PCMCIA_AXNET=m +CONFIG_NE2K_PCI=m +CONFIG_PCMCIA_PCNET=m +CONFIG_NET_VENDOR_NVIDIA=y +CONFIG_FORCEDETH=m +CONFIG_NET_VENDOR_OKI=y +CONFIG_ETHOC=m +CONFIG_NET_VENDOR_PACKET_ENGINES=y +CONFIG_HAMACHI=m +CONFIG_YELLOWFIN=m +CONFIG_NET_VENDOR_PENSANDO=y +CONFIG_IONIC=m +CONFIG_NET_VENDOR_QLOGIC=y +CONFIG_QLA3XXX=m +CONFIG_QLCNIC=m +CONFIG_QLCNIC_SRIOV=y +CONFIG_QLCNIC_DCB=y +CONFIG_QLCNIC_HWMON=y +CONFIG_NETXEN_NIC=m +CONFIG_QED=m +CONFIG_QED_LL2=y +CONFIG_QED_SRIOV=y +CONFIG_QEDE=m +CONFIG_QED_RDMA=y +CONFIG_QED_ISCSI=y +CONFIG_QED_FCOE=y +CONFIG_QED_OOO=y +CONFIG_NET_VENDOR_QUALCOMM=y +CONFIG_QCOM_EMAC=m +CONFIG_RMNET=m +CONFIG_NET_VENDOR_RDC=y +CONFIG_R6040=m +CONFIG_NET_VENDOR_REALTEK=y +CONFIG_ATP=m +CONFIG_8139CP=m +CONFIG_8139TOO=m +CONFIG_8139TOO_PIO=y +# CONFIG_8139TOO_TUNE_TWISTER is not set +CONFIG_8139TOO_8129=y +# CONFIG_8139_OLD_RX_RESET is not set +CONFIG_R8169=m +CONFIG_NET_VENDOR_RENESAS=y +CONFIG_NET_VENDOR_ROCKER=y +CONFIG_ROCKER=m +CONFIG_NET_VENDOR_SAMSUNG=y +CONFIG_SXGBE_ETH=m +CONFIG_NET_VENDOR_SEEQ=y +CONFIG_NET_VENDOR_SOLARFLARE=y +CONFIG_SFC=m +CONFIG_SFC_MTD=y +CONFIG_SFC_MCDI_MON=y +CONFIG_SFC_SRIOV=y +CONFIG_SFC_MCDI_LOGGING=y +CONFIG_SFC_FALCON=m +CONFIG_SFC_FALCON_MTD=y +CONFIG_NET_VENDOR_SILAN=y +CONFIG_SC92031=m +CONFIG_NET_VENDOR_SIS=y +CONFIG_SIS900=m +CONFIG_SIS190=m +CONFIG_NET_VENDOR_SMSC=y +CONFIG_PCMCIA_SMC91C92=m +CONFIG_EPIC100=m +CONFIG_SMSC911X=m +CONFIG_SMSC9420=m +# CONFIG_NET_VENDOR_SOCIONEXT is not set +CONFIG_NET_VENDOR_STMICRO=y +CONFIG_STMMAC_ETH=m +# CONFIG_STMMAC_SELFTESTS is not set +CONFIG_STMMAC_PLATFORM=m +CONFIG_DWMAC_GENERIC=m +CONFIG_DWMAC_INTEL=m +CONFIG_DWMAC_LOONGSON=m +# CONFIG_STMMAC_PCI is not set +CONFIG_NET_VENDOR_SUN=y +CONFIG_HAPPYMEAL=m +CONFIG_SUNGEM=m +CONFIG_CASSINI=m +CONFIG_NIU=m +CONFIG_NET_VENDOR_SYNOPSYS=y +CONFIG_DWC_XLGMAC=m +CONFIG_DWC_XLGMAC_PCI=m +CONFIG_NET_VENDOR_TEHUTI=y +CONFIG_TEHUTI=m +CONFIG_NET_VENDOR_TI=y +# CONFIG_TI_CPSW_PHY_SEL is not set +CONFIG_TLAN=m +CONFIG_NET_VENDOR_VIA=y +CONFIG_VIA_RHINE=m +CONFIG_VIA_RHINE_MMIO=y +CONFIG_VIA_VELOCITY=m +CONFIG_NET_VENDOR_WIZNET=y +CONFIG_WIZNET_W5100=m +CONFIG_WIZNET_W5300=m +# CONFIG_WIZNET_BUS_DIRECT is not set +# CONFIG_WIZNET_BUS_INDIRECT is not set +CONFIG_WIZNET_BUS_ANY=y +# CONFIG_WIZNET_W5100_SPI is not set +CONFIG_NET_VENDOR_XILINX=y +CONFIG_XILINX_EMACLITE=m +CONFIG_XILINX_AXI_EMAC=m +CONFIG_XILINX_LL_TEMAC=m +CONFIG_NET_VENDOR_XIRCOM=y +CONFIG_PCMCIA_XIRC2PS=m +CONFIG_FDDI=y +CONFIG_DEFXX=m +CONFIG_SKFP=m +# CONFIG_HIPPI is not set +CONFIG_NET_SB1000=m +CONFIG_PHYLINK=m +CONFIG_PHYLIB=y +CONFIG_SWPHY=y +# CONFIG_LED_TRIGGER_PHY is not set +CONFIG_FIXED_PHY=y +CONFIG_SFP=m + +# +# MII PHY device drivers +# +CONFIG_AMD_PHY=m +CONFIG_ADIN_PHY=m +CONFIG_AQUANTIA_PHY=m +CONFIG_AX88796B_PHY=m +CONFIG_BROADCOM_PHY=m +CONFIG_BCM54140_PHY=m +CONFIG_BCM7XXX_PHY=m +CONFIG_BCM84881_PHY=m +CONFIG_BCM87XX_PHY=m +CONFIG_BCM_NET_PHYLIB=m +CONFIG_CICADA_PHY=m +CONFIG_CORTINA_PHY=m +CONFIG_DAVICOM_PHY=m +CONFIG_ICPLUS_PHY=m +CONFIG_LXT_PHY=m +CONFIG_INTEL_XWAY_PHY=m +CONFIG_LSI_ET1011C_PHY=m +CONFIG_MARVELL_PHY=m +CONFIG_MARVELL_10G_PHY=m +CONFIG_MARVELL_88X2222_PHY=m +CONFIG_MAXLINEAR_GPHY=m +CONFIG_MEDIATEK_GE_PHY=m +CONFIG_MICREL_PHY=m +CONFIG_MICROCHIP_PHY=m +CONFIG_MICROCHIP_T1_PHY=m +CONFIG_MICROSEMI_PHY=m +CONFIG_MOTORCOMM_PHY=m +CONFIG_NATIONAL_PHY=m +CONFIG_NXP_C45_TJA11XX_PHY=m +CONFIG_NXP_TJA11XX_PHY=m +CONFIG_AT803X_PHY=m +CONFIG_QSEMI_PHY=m +CONFIG_REALTEK_PHY=m +CONFIG_RENESAS_PHY=m +CONFIG_ROCKCHIP_PHY=m +CONFIG_SMSC_PHY=m +CONFIG_STE10XP=m +CONFIG_TERANETICS_PHY=m +CONFIG_DP83822_PHY=m +CONFIG_DP83TC811_PHY=m +CONFIG_DP83848_PHY=m +CONFIG_DP83867_PHY=m +CONFIG_DP83869_PHY=m +CONFIG_VITESSE_PHY=m +CONFIG_XILINX_GMII2RGMII=m +CONFIG_MICREL_KS8995MA=m + +# +# MCTP Device Drivers +# +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +CONFIG_FWNODE_MDIO=y +CONFIG_ACPI_MDIO=y +CONFIG_MDIO_DEVRES=y +CONFIG_MDIO_BITBANG=m +CONFIG_MDIO_BCM_UNIMAC=m +CONFIG_MDIO_CAVIUM=m +CONFIG_MDIO_GPIO=m +CONFIG_MDIO_I2C=m +CONFIG_MDIO_MVUSB=m +CONFIG_MDIO_MSCC_MIIM=m +CONFIG_MDIO_THUNDER=m + +# +# MDIO Multiplexers +# + +# +# PCS device drivers +# +CONFIG_PCS_XPCS=m +CONFIG_PCS_LYNX=m +# end of PCS device drivers + +CONFIG_PLIP=m +CONFIG_PPP=y +CONFIG_PPP_BSDCOMP=m +CONFIG_PPP_DEFLATE=m +CONFIG_PPP_FILTER=y +CONFIG_PPP_MPPE=m +CONFIG_PPP_MULTILINK=y +CONFIG_PPPOATM=m +CONFIG_PPPOE=m +CONFIG_PPTP=m +CONFIG_PPPOL2TP=m +CONFIG_PPP_ASYNC=m +CONFIG_PPP_SYNC_TTY=m +CONFIG_SLIP=m +CONFIG_SLHC=y +CONFIG_SLIP_COMPRESSED=y +CONFIG_SLIP_SMART=y +CONFIG_SLIP_MODE_SLIP6=y +CONFIG_USB_NET_DRIVERS=m +CONFIG_USB_CATC=m +CONFIG_USB_KAWETH=m +CONFIG_USB_PEGASUS=m +CONFIG_USB_RTL8150=m +CONFIG_USB_RTL8152=m +CONFIG_USB_LAN78XX=m +CONFIG_USB_USBNET=m +CONFIG_USB_NET_AX8817X=m +CONFIG_USB_NET_AX88179_178A=m +CONFIG_USB_NET_CDCETHER=m +CONFIG_USB_NET_CDC_EEM=m +CONFIG_USB_NET_CDC_NCM=m +CONFIG_USB_NET_HUAWEI_CDC_NCM=m +CONFIG_USB_NET_CDC_MBIM=m +CONFIG_USB_NET_DM9601=m +CONFIG_USB_NET_SR9700=m +CONFIG_USB_NET_SR9800=m +CONFIG_USB_NET_SMSC75XX=m +CONFIG_USB_NET_SMSC95XX=m +CONFIG_USB_NET_GL620A=m +CONFIG_USB_NET_NET1080=m +CONFIG_USB_NET_PLUSB=m +CONFIG_USB_NET_MCS7830=m +CONFIG_USB_NET_RNDIS_HOST=m +CONFIG_USB_NET_CDC_SUBSET_ENABLE=m +CONFIG_USB_NET_CDC_SUBSET=m +CONFIG_USB_ALI_M5632=y +CONFIG_USB_AN2720=y +CONFIG_USB_BELKIN=y +CONFIG_USB_ARMLINUX=y +CONFIG_USB_EPSON2888=y +CONFIG_USB_KC2190=y +CONFIG_USB_NET_ZAURUS=m +CONFIG_USB_NET_CX82310_ETH=m +CONFIG_USB_NET_KALMIA=m +CONFIG_USB_NET_QMI_WWAN=m +CONFIG_USB_HSO=m +CONFIG_USB_NET_INT51X1=m +CONFIG_USB_CDC_PHONET=m +CONFIG_USB_IPHETH=m +CONFIG_USB_SIERRA_NET=m +CONFIG_USB_VL600=m +CONFIG_USB_NET_CH9200=m +CONFIG_USB_NET_AQC111=m +CONFIG_USB_RTL8153_ECM=m +CONFIG_WLAN=y +CONFIG_WLAN_VENDOR_ADMTEK=y +CONFIG_ADM8211=m +CONFIG_ATH_COMMON=m +CONFIG_WLAN_VENDOR_ATH=y +# CONFIG_ATH_DEBUG is not set +CONFIG_ATH5K=m +# CONFIG_ATH5K_DEBUG is not set +# CONFIG_ATH5K_TRACER is not set +CONFIG_ATH5K_PCI=y +CONFIG_ATH9K_HW=m +CONFIG_ATH9K_COMMON=m +CONFIG_ATH9K_COMMON_DEBUG=y +CONFIG_ATH9K_BTCOEX_SUPPORT=y +CONFIG_ATH9K=m +CONFIG_ATH9K_PCI=y +CONFIG_ATH9K_AHB=y +CONFIG_ATH9K_DEBUGFS=y +CONFIG_ATH9K_STATION_STATISTICS=y +# CONFIG_ATH9K_DYNACK is not set +CONFIG_ATH9K_WOW=y +CONFIG_ATH9K_RFKILL=y +CONFIG_ATH9K_CHANNEL_CONTEXT=y +CONFIG_ATH9K_PCOEM=y +CONFIG_ATH9K_PCI_NO_EEPROM=m +CONFIG_ATH9K_HTC=m +CONFIG_ATH9K_HTC_DEBUGFS=y +CONFIG_ATH9K_HWRNG=y +# CONFIG_ATH9K_COMMON_SPECTRAL is not set +CONFIG_CARL9170=m +CONFIG_CARL9170_LEDS=y +# CONFIG_CARL9170_DEBUGFS is not set +CONFIG_CARL9170_WPC=y +CONFIG_CARL9170_HWRNG=y +CONFIG_ATH6KL=m +CONFIG_ATH6KL_SDIO=m +CONFIG_ATH6KL_USB=m +# CONFIG_ATH6KL_DEBUG is not set +# CONFIG_ATH6KL_TRACING is not set +CONFIG_AR5523=m +CONFIG_WIL6210=m +CONFIG_WIL6210_ISR_COR=y +CONFIG_WIL6210_TRACING=y +CONFIG_WIL6210_DEBUGFS=y +CONFIG_ATH10K=m +CONFIG_ATH10K_CE=y +CONFIG_ATH10K_PCI=m +CONFIG_ATH10K_SDIO=m +CONFIG_ATH10K_USB=m +# CONFIG_ATH10K_DEBUG is not set +CONFIG_ATH10K_DEBUGFS=y +# CONFIG_ATH10K_SPECTRAL is not set +CONFIG_ATH10K_TRACING=y +CONFIG_WCN36XX=m +# CONFIG_WCN36XX_DEBUGFS is not set +CONFIG_ATH11K=m +CONFIG_ATH11K_PCI=m +# CONFIG_ATH11K_DEBUG is not set +# CONFIG_ATH11K_DEBUGFS is not set +# CONFIG_ATH11K_TRACING is not set +CONFIG_WLAN_VENDOR_ATMEL=y +CONFIG_ATMEL=m +CONFIG_PCI_ATMEL=m +CONFIG_PCMCIA_ATMEL=m +CONFIG_AT76C50X_USB=m +CONFIG_WLAN_VENDOR_BROADCOM=y +CONFIG_B43=m +CONFIG_B43_BCMA=y +CONFIG_B43_SSB=y +CONFIG_B43_BUSES_BCMA_AND_SSB=y +# CONFIG_B43_BUSES_BCMA is not set +# CONFIG_B43_BUSES_SSB is not set +CONFIG_B43_PCI_AUTOSELECT=y +CONFIG_B43_PCICORE_AUTOSELECT=y +# CONFIG_B43_SDIO is not set +CONFIG_B43_BCMA_PIO=y +CONFIG_B43_PIO=y +CONFIG_B43_PHY_G=y +CONFIG_B43_PHY_N=y +CONFIG_B43_PHY_LP=y +CONFIG_B43_PHY_HT=y +CONFIG_B43_LEDS=y +CONFIG_B43_HWRNG=y +# CONFIG_B43_DEBUG is not set +CONFIG_B43LEGACY=m +CONFIG_B43LEGACY_PCI_AUTOSELECT=y +CONFIG_B43LEGACY_PCICORE_AUTOSELECT=y +CONFIG_B43LEGACY_LEDS=y +CONFIG_B43LEGACY_HWRNG=y +# CONFIG_B43LEGACY_DEBUG is not set +CONFIG_B43LEGACY_DMA=y +CONFIG_B43LEGACY_PIO=y +CONFIG_B43LEGACY_DMA_AND_PIO_MODE=y +# CONFIG_B43LEGACY_DMA_MODE is not set +# CONFIG_B43LEGACY_PIO_MODE is not set +CONFIG_BRCMUTIL=m +CONFIG_BRCMSMAC=m +CONFIG_BRCMSMAC_LEDS=y +CONFIG_BRCMFMAC=m +CONFIG_BRCMFMAC_PROTO_BCDC=y +CONFIG_BRCMFMAC_PROTO_MSGBUF=y +CONFIG_BRCMFMAC_SDIO=y +CONFIG_BRCMFMAC_USB=y +CONFIG_BRCMFMAC_PCIE=y +CONFIG_BRCM_TRACING=y +# CONFIG_BRCMDBG is not set +CONFIG_WLAN_VENDOR_CISCO=y +CONFIG_AIRO=m +CONFIG_AIRO_CS=m +CONFIG_WLAN_VENDOR_INTEL=y +CONFIG_IPW2100=m +CONFIG_IPW2100_MONITOR=y +# CONFIG_IPW2100_DEBUG is not set +CONFIG_IPW2200=m +CONFIG_IPW2200_MONITOR=y +CONFIG_IPW2200_RADIOTAP=y +CONFIG_IPW2200_PROMISCUOUS=y +CONFIG_IPW2200_QOS=y +# CONFIG_IPW2200_DEBUG is not set +CONFIG_LIBIPW=m +# CONFIG_LIBIPW_DEBUG is not set +CONFIG_IWLEGACY=m +CONFIG_IWL4965=m +CONFIG_IWL3945=m + +# +# iwl3945 / iwl4965 Debugging Options +# +# CONFIG_IWLEGACY_DEBUG is not set +CONFIG_IWLEGACY_DEBUGFS=y +# end of iwl3945 / iwl4965 Debugging Options + +CONFIG_IWLWIFI=m +CONFIG_IWLWIFI_LEDS=y +CONFIG_IWLDVM=m +CONFIG_IWLMVM=m +CONFIG_IWLWIFI_OPMODE_MODULAR=y +# CONFIG_IWLWIFI_BCAST_FILTERING is not set + +# +# Debugging Options +# +# CONFIG_IWLWIFI_DEBUG is not set +CONFIG_IWLWIFI_DEBUGFS=y +CONFIG_IWLWIFI_DEVICE_TRACING=y +# end of Debugging Options + +CONFIG_WLAN_VENDOR_INTERSIL=y +CONFIG_HOSTAP=m +CONFIG_HOSTAP_FIRMWARE=y +CONFIG_HOSTAP_FIRMWARE_NVRAM=y +CONFIG_HOSTAP_PLX=m +CONFIG_HOSTAP_PCI=m +CONFIG_HOSTAP_CS=m +CONFIG_HERMES=m +# CONFIG_HERMES_PRISM is not set +CONFIG_HERMES_CACHE_FW_ON_INIT=y +CONFIG_PLX_HERMES=m +CONFIG_TMD_HERMES=m +CONFIG_NORTEL_HERMES=m +CONFIG_PCMCIA_HERMES=m +CONFIG_PCMCIA_SPECTRUM=m +CONFIG_ORINOCO_USB=m +CONFIG_P54_COMMON=m +CONFIG_P54_USB=m +CONFIG_P54_PCI=m +CONFIG_P54_SPI=m +# CONFIG_P54_SPI_DEFAULT_EEPROM is not set +CONFIG_P54_LEDS=y +CONFIG_WLAN_VENDOR_MARVELL=y +CONFIG_LIBERTAS=m +CONFIG_LIBERTAS_USB=m +CONFIG_LIBERTAS_CS=m +CONFIG_LIBERTAS_SDIO=m +CONFIG_LIBERTAS_SPI=m +# CONFIG_LIBERTAS_DEBUG is not set +CONFIG_LIBERTAS_MESH=y +CONFIG_LIBERTAS_THINFIRM=m +# CONFIG_LIBERTAS_THINFIRM_DEBUG is not set +CONFIG_LIBERTAS_THINFIRM_USB=m +CONFIG_MWIFIEX=m +CONFIG_MWIFIEX_SDIO=m +CONFIG_MWIFIEX_PCIE=m +CONFIG_MWIFIEX_USB=m +CONFIG_MWL8K=m +CONFIG_WLAN_VENDOR_MEDIATEK=y +CONFIG_MT7601U=m +# CONFIG_MT76x0U is not set +# CONFIG_MT76x0E is not set +# CONFIG_MT76x2E is not set +# CONFIG_MT76x2U is not set +# CONFIG_MT7603E is not set +# CONFIG_MT7615E is not set +# CONFIG_MT7663U is not set +# CONFIG_MT7663S is not set +# CONFIG_MT7915E is not set +# CONFIG_MT7921E is not set +# CONFIG_MT7921S is not set +CONFIG_WLAN_VENDOR_MICROCHIP=y +CONFIG_WILC1000=m +CONFIG_WILC1000_SDIO=m +CONFIG_WILC1000_SPI=m +# CONFIG_WILC1000_HW_OOB_INTR is not set +CONFIG_WLAN_VENDOR_RALINK=y +CONFIG_RT2X00=m +CONFIG_RT2400PCI=m +CONFIG_RT2500PCI=m +CONFIG_RT61PCI=m +CONFIG_RT2800PCI=m +CONFIG_RT2800PCI_RT33XX=y +CONFIG_RT2800PCI_RT35XX=y +CONFIG_RT2800PCI_RT53XX=y +CONFIG_RT2800PCI_RT3290=y +CONFIG_RT2500USB=m +CONFIG_RT73USB=m +CONFIG_RT2800USB=m +CONFIG_RT2800USB_RT33XX=y +CONFIG_RT2800USB_RT35XX=y +CONFIG_RT2800USB_RT3573=y +CONFIG_RT2800USB_RT53XX=y +CONFIG_RT2800USB_RT55XX=y +CONFIG_RT2800USB_UNKNOWN=y +CONFIG_RT2800_LIB=m +CONFIG_RT2800_LIB_MMIO=m +CONFIG_RT2X00_LIB_MMIO=m +CONFIG_RT2X00_LIB_PCI=m +CONFIG_RT2X00_LIB_USB=m +CONFIG_RT2X00_LIB=m +CONFIG_RT2X00_LIB_FIRMWARE=y +CONFIG_RT2X00_LIB_CRYPTO=y +CONFIG_RT2X00_LIB_LEDS=y +# CONFIG_RT2X00_LIB_DEBUGFS is not set +# CONFIG_RT2X00_DEBUG is not set +CONFIG_WLAN_VENDOR_REALTEK=y +CONFIG_RTL8180=m +CONFIG_RTL8187=m +CONFIG_RTL8187_LEDS=y +CONFIG_RTL_CARDS=m +CONFIG_RTL8192CE=m +CONFIG_RTL8192SE=m +CONFIG_RTL8192DE=m +CONFIG_RTL8723AE=m +CONFIG_RTL8723BE=m +CONFIG_RTL8188EE=m +CONFIG_RTL8192EE=m +CONFIG_RTL8821AE=m +CONFIG_RTL8192CU=m +CONFIG_RTLWIFI=m +CONFIG_RTLWIFI_PCI=m +CONFIG_RTLWIFI_USB=m +# CONFIG_RTLWIFI_DEBUG is not set +CONFIG_RTL8192C_COMMON=m +CONFIG_RTL8723_COMMON=m +CONFIG_RTLBTCOEXIST=m +CONFIG_RTL8XXXU=m +CONFIG_RTL8XXXU_UNTESTED=y +CONFIG_RTW88=m +CONFIG_RTW88_CORE=m +CONFIG_RTW88_PCI=m +CONFIG_RTW88_8822B=m +CONFIG_RTW88_8822C=m +CONFIG_RTW88_8723D=m +CONFIG_RTW88_8821C=m +CONFIG_RTW88_8822BE=m +CONFIG_RTW88_8822CE=m +CONFIG_RTW88_8723DE=m +CONFIG_RTW88_8821CE=m +# CONFIG_RTW88_DEBUG is not set +# CONFIG_RTW88_DEBUGFS is not set +CONFIG_RTW89=m +CONFIG_RTW89_CORE=m +CONFIG_RTW89_PCI=m +CONFIG_RTW89_8852AE=m +# CONFIG_RTW89_DEBUGMSG is not set +# CONFIG_RTW89_DEBUGFS is not set +CONFIG_WLAN_VENDOR_RSI=y +CONFIG_RSI_91X=m +# CONFIG_RSI_DEBUGFS is not set +CONFIG_RSI_SDIO=m +CONFIG_RSI_USB=m +CONFIG_RSI_COEX=y +CONFIG_WLAN_VENDOR_ST=y +CONFIG_CW1200=m +CONFIG_CW1200_WLAN_SDIO=m +CONFIG_CW1200_WLAN_SPI=m +CONFIG_WLAN_VENDOR_TI=y +CONFIG_WL1251=m +CONFIG_WL1251_SPI=m +CONFIG_WL1251_SDIO=m +CONFIG_WL12XX=m +CONFIG_WL18XX=m +CONFIG_WLCORE=m +CONFIG_WLCORE_SDIO=m +CONFIG_WILINK_PLATFORM_DATA=y +CONFIG_WLAN_VENDOR_ZYDAS=y +CONFIG_USB_ZD1201=m +CONFIG_ZD1211RW=m +# CONFIG_ZD1211RW_DEBUG is not set +CONFIG_WLAN_VENDOR_QUANTENNA=y +CONFIG_QTNFMAC=m +CONFIG_QTNFMAC_PCIE=m +CONFIG_PCMCIA_RAYCS=m +CONFIG_PCMCIA_WL3501=m +CONFIG_MAC80211_HWSIM=m +CONFIG_USB_NET_RNDIS_WLAN=m +CONFIG_VIRT_WIFI=m +CONFIG_WAN=y +CONFIG_LANMEDIA=m +CONFIG_HDLC=m +CONFIG_HDLC_RAW=m +CONFIG_HDLC_RAW_ETH=m +CONFIG_HDLC_CISCO=m +CONFIG_HDLC_FR=m +CONFIG_HDLC_PPP=m +CONFIG_HDLC_X25=m +CONFIG_PCI200SYN=m +CONFIG_WANXL=m +CONFIG_PC300TOO=m +CONFIG_FARSYNC=m +CONFIG_LAPBETHER=m +CONFIG_IEEE802154_DRIVERS=m +CONFIG_IEEE802154_FAKELB=m +CONFIG_IEEE802154_AT86RF230=m +CONFIG_IEEE802154_AT86RF230_DEBUGFS=y +CONFIG_IEEE802154_MRF24J40=m +CONFIG_IEEE802154_CC2520=m +CONFIG_IEEE802154_ATUSB=m +CONFIG_IEEE802154_ADF7242=m +CONFIG_IEEE802154_CA8210=m +# CONFIG_IEEE802154_CA8210_DEBUGFS is not set +CONFIG_IEEE802154_MCR20A=m +# CONFIG_IEEE802154_HWSIM is not set + +# +# Wireless WAN +# +CONFIG_WWAN=y +# CONFIG_WWAN_HWSIM is not set +CONFIG_MHI_WWAN_CTRL=m +CONFIG_MHI_WWAN_MBIM=m +CONFIG_RPMSG_WWAN_CTRL=m +CONFIG_IOSM=m +# end of Wireless WAN + +CONFIG_XEN_NETDEV_FRONTEND=y +CONFIG_XEN_NETDEV_BACKEND=m +CONFIG_VMXNET3=m +CONFIG_FUJITSU_ES=m +CONFIG_USB4_NET=m +CONFIG_HYPERV_NET=m +CONFIG_NETDEVSIM=m +CONFIG_NET_FAILOVER=y +CONFIG_ISDN=y +CONFIG_ISDN_CAPI=y +CONFIG_CAPI_TRACE=y +CONFIG_ISDN_CAPI_MIDDLEWARE=y +CONFIG_MISDN=m +CONFIG_MISDN_DSP=m +CONFIG_MISDN_L1OIP=m + +# +# mISDN hardware drivers +# +CONFIG_MISDN_HFCPCI=m +CONFIG_MISDN_HFCMULTI=m +CONFIG_MISDN_HFCUSB=m +CONFIG_MISDN_AVMFRITZ=m +CONFIG_MISDN_SPEEDFAX=m +CONFIG_MISDN_INFINEON=m +CONFIG_MISDN_W6692=m +CONFIG_MISDN_NETJET=m +CONFIG_MISDN_HDLC=m +CONFIG_MISDN_IPAC=m +CONFIG_MISDN_ISAR=m + +# +# Input device support +# +CONFIG_INPUT=y +CONFIG_INPUT_LEDS=m +CONFIG_INPUT_FF_MEMLESS=m +CONFIG_INPUT_SPARSEKMAP=m +CONFIG_INPUT_MATRIXKMAP=m + +# +# Userland interfaces +# +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_MOUSEDEV_PSAUX=y +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 +CONFIG_INPUT_JOYDEV=m +CONFIG_INPUT_EVDEV=y +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +CONFIG_KEYBOARD_ADC=m +CONFIG_KEYBOARD_ADP5520=m +CONFIG_KEYBOARD_ADP5588=m +CONFIG_KEYBOARD_ADP5589=m +CONFIG_KEYBOARD_APPLESPI=m +CONFIG_KEYBOARD_ATKBD=y +CONFIG_KEYBOARD_QT1050=m +CONFIG_KEYBOARD_QT1070=m +CONFIG_KEYBOARD_QT2160=m +CONFIG_KEYBOARD_DLINK_DIR685=m +CONFIG_KEYBOARD_LKKBD=m +CONFIG_KEYBOARD_GPIO=m +CONFIG_KEYBOARD_GPIO_POLLED=m +CONFIG_KEYBOARD_TCA6416=m +CONFIG_KEYBOARD_TCA8418=m +CONFIG_KEYBOARD_MATRIX=m +CONFIG_KEYBOARD_LM8323=m +CONFIG_KEYBOARD_LM8333=m +CONFIG_KEYBOARD_MAX7359=m +CONFIG_KEYBOARD_MCS=m +CONFIG_KEYBOARD_MPR121=m +CONFIG_KEYBOARD_NEWTON=m +CONFIG_KEYBOARD_OPENCORES=m +CONFIG_KEYBOARD_SAMSUNG=m +CONFIG_KEYBOARD_STOWAWAY=m +CONFIG_KEYBOARD_SUNKBD=m +CONFIG_KEYBOARD_IQS62X=m +CONFIG_KEYBOARD_TM2_TOUCHKEY=m +CONFIG_KEYBOARD_TWL4030=m +CONFIG_KEYBOARD_XTKBD=m +CONFIG_KEYBOARD_CROS_EC=m +CONFIG_KEYBOARD_MTK_PMIC=m +CONFIG_KEYBOARD_CYPRESS_SF=m +CONFIG_INPUT_MOUSE=y +CONFIG_MOUSE_PS2=m +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_BYD=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y +CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_LIFEBOOK=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +CONFIG_MOUSE_PS2_ELANTECH=y +CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y +CONFIG_MOUSE_PS2_SENTELIC=y +CONFIG_MOUSE_PS2_TOUCHKIT=y +CONFIG_MOUSE_PS2_FOCALTECH=y +CONFIG_MOUSE_PS2_VMMOUSE=y +CONFIG_MOUSE_PS2_SMBUS=y +CONFIG_MOUSE_SERIAL=m +CONFIG_MOUSE_APPLETOUCH=m +CONFIG_MOUSE_BCM5974=m +CONFIG_MOUSE_CYAPA=m +CONFIG_MOUSE_ELAN_I2C=m +CONFIG_MOUSE_ELAN_I2C_I2C=y +CONFIG_MOUSE_ELAN_I2C_SMBUS=y +CONFIG_MOUSE_VSXXXAA=m +CONFIG_MOUSE_GPIO=m +CONFIG_MOUSE_SYNAPTICS_I2C=m +CONFIG_MOUSE_SYNAPTICS_USB=m +CONFIG_INPUT_JOYSTICK=y +CONFIG_JOYSTICK_ANALOG=m +CONFIG_JOYSTICK_A3D=m +CONFIG_JOYSTICK_ADC=m +CONFIG_JOYSTICK_ADI=m +CONFIG_JOYSTICK_COBRA=m +CONFIG_JOYSTICK_GF2K=m +CONFIG_JOYSTICK_GRIP=m +CONFIG_JOYSTICK_GRIP_MP=m +CONFIG_JOYSTICK_GUILLEMOT=m +CONFIG_JOYSTICK_INTERACT=m +CONFIG_JOYSTICK_SIDEWINDER=m +CONFIG_JOYSTICK_TMDC=m +CONFIG_JOYSTICK_IFORCE=m +CONFIG_JOYSTICK_IFORCE_USB=m +CONFIG_JOYSTICK_IFORCE_232=m +CONFIG_JOYSTICK_WARRIOR=m +CONFIG_JOYSTICK_MAGELLAN=m +CONFIG_JOYSTICK_SPACEORB=m +CONFIG_JOYSTICK_SPACEBALL=m +CONFIG_JOYSTICK_STINGER=m +CONFIG_JOYSTICK_TWIDJOY=m +CONFIG_JOYSTICK_ZHENHUA=m +CONFIG_JOYSTICK_DB9=m +CONFIG_JOYSTICK_GAMECON=m +CONFIG_JOYSTICK_TURBOGRAFX=m +CONFIG_JOYSTICK_AS5011=m +CONFIG_JOYSTICK_JOYDUMP=m +CONFIG_JOYSTICK_XPAD=m +CONFIG_JOYSTICK_XPAD_FF=y +CONFIG_JOYSTICK_XPAD_LEDS=y +CONFIG_JOYSTICK_WALKERA0701=m +CONFIG_JOYSTICK_PSXPAD_SPI=m +# CONFIG_JOYSTICK_PSXPAD_SPI_FF is not set +CONFIG_JOYSTICK_PXRC=m +CONFIG_JOYSTICK_QWIIC=m +CONFIG_JOYSTICK_FSIA6B=m +CONFIG_INPUT_TABLET=y +CONFIG_TABLET_USB_ACECAD=m +CONFIG_TABLET_USB_AIPTEK=m +CONFIG_TABLET_USB_HANWANG=m +CONFIG_TABLET_USB_KBTAB=m +CONFIG_TABLET_USB_PEGASUS=m +CONFIG_TABLET_SERIAL_WACOM4=m +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_TOUCHSCREEN_88PM860X=m +CONFIG_TOUCHSCREEN_ADS7846=m +CONFIG_TOUCHSCREEN_AD7877=m +CONFIG_TOUCHSCREEN_AD7879=m +CONFIG_TOUCHSCREEN_AD7879_I2C=m +CONFIG_TOUCHSCREEN_AD7879_SPI=m +CONFIG_TOUCHSCREEN_ADC=m +CONFIG_TOUCHSCREEN_ATMEL_MXT=m +# CONFIG_TOUCHSCREEN_ATMEL_MXT_T37 is not set +CONFIG_TOUCHSCREEN_AUO_PIXCIR=m +CONFIG_TOUCHSCREEN_BU21013=m +CONFIG_TOUCHSCREEN_BU21029=m +CONFIG_TOUCHSCREEN_CHIPONE_ICN8505=m +CONFIG_TOUCHSCREEN_CY8CTMA140=m +CONFIG_TOUCHSCREEN_CY8CTMG110=m +CONFIG_TOUCHSCREEN_CYTTSP_CORE=m +CONFIG_TOUCHSCREEN_CYTTSP_I2C=m +CONFIG_TOUCHSCREEN_CYTTSP_SPI=m +CONFIG_TOUCHSCREEN_CYTTSP4_CORE=m +CONFIG_TOUCHSCREEN_CYTTSP4_I2C=m +CONFIG_TOUCHSCREEN_CYTTSP4_SPI=m +CONFIG_TOUCHSCREEN_DA9034=m +CONFIG_TOUCHSCREEN_DA9052=m +CONFIG_TOUCHSCREEN_DYNAPRO=m +CONFIG_TOUCHSCREEN_HAMPSHIRE=m +CONFIG_TOUCHSCREEN_EETI=m +CONFIG_TOUCHSCREEN_EGALAX_SERIAL=m +CONFIG_TOUCHSCREEN_EXC3000=m +CONFIG_TOUCHSCREEN_FUJITSU=m +CONFIG_TOUCHSCREEN_GOODIX=m +CONFIG_TOUCHSCREEN_HIDEEP=m +CONFIG_TOUCHSCREEN_HYCON_HY46XX=m +CONFIG_TOUCHSCREEN_ILI210X=m +CONFIG_TOUCHSCREEN_ILITEK=m +CONFIG_TOUCHSCREEN_S6SY761=m +CONFIG_TOUCHSCREEN_GUNZE=m +CONFIG_TOUCHSCREEN_EKTF2127=m +CONFIG_TOUCHSCREEN_ELAN=m +CONFIG_TOUCHSCREEN_ELO=m +CONFIG_TOUCHSCREEN_WACOM_W8001=m +CONFIG_TOUCHSCREEN_WACOM_I2C=m +CONFIG_TOUCHSCREEN_MAX11801=m +CONFIG_TOUCHSCREEN_MCS5000=m +CONFIG_TOUCHSCREEN_MMS114=m +CONFIG_TOUCHSCREEN_MELFAS_MIP4=m +CONFIG_TOUCHSCREEN_MSG2638=m +CONFIG_TOUCHSCREEN_MTOUCH=m +CONFIG_TOUCHSCREEN_INEXIO=m +CONFIG_TOUCHSCREEN_MK712=m +CONFIG_TOUCHSCREEN_PENMOUNT=m +CONFIG_TOUCHSCREEN_EDT_FT5X06=m +CONFIG_TOUCHSCREEN_TOUCHRIGHT=m +CONFIG_TOUCHSCREEN_TOUCHWIN=m +CONFIG_TOUCHSCREEN_TI_AM335X_TSC=m +CONFIG_TOUCHSCREEN_UCB1400=m +CONFIG_TOUCHSCREEN_PIXCIR=m +CONFIG_TOUCHSCREEN_WDT87XX_I2C=m +CONFIG_TOUCHSCREEN_WM831X=m +CONFIG_TOUCHSCREEN_WM97XX=m +CONFIG_TOUCHSCREEN_WM9705=y +CONFIG_TOUCHSCREEN_WM9712=y +CONFIG_TOUCHSCREEN_WM9713=y +CONFIG_TOUCHSCREEN_USB_COMPOSITE=m +CONFIG_TOUCHSCREEN_MC13783=m +CONFIG_TOUCHSCREEN_USB_EGALAX=y +CONFIG_TOUCHSCREEN_USB_PANJIT=y +CONFIG_TOUCHSCREEN_USB_3M=y +CONFIG_TOUCHSCREEN_USB_ITM=y +CONFIG_TOUCHSCREEN_USB_ETURBO=y +CONFIG_TOUCHSCREEN_USB_GUNZE=y +CONFIG_TOUCHSCREEN_USB_DMC_TSC10=y +CONFIG_TOUCHSCREEN_USB_IRTOUCH=y +CONFIG_TOUCHSCREEN_USB_IDEALTEK=y +CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH=y +CONFIG_TOUCHSCREEN_USB_GOTOP=y +CONFIG_TOUCHSCREEN_USB_JASTEC=y +CONFIG_TOUCHSCREEN_USB_ELO=y +CONFIG_TOUCHSCREEN_USB_E2I=y +CONFIG_TOUCHSCREEN_USB_ZYTRONIC=y +CONFIG_TOUCHSCREEN_USB_ETT_TC45USB=y +CONFIG_TOUCHSCREEN_USB_NEXIO=y +CONFIG_TOUCHSCREEN_USB_EASYTOUCH=y +CONFIG_TOUCHSCREEN_TOUCHIT213=m +CONFIG_TOUCHSCREEN_TSC_SERIO=m +CONFIG_TOUCHSCREEN_TSC200X_CORE=m +CONFIG_TOUCHSCREEN_TSC2004=m +CONFIG_TOUCHSCREEN_TSC2005=m +CONFIG_TOUCHSCREEN_TSC2007=m +# CONFIG_TOUCHSCREEN_TSC2007_IIO is not set +CONFIG_TOUCHSCREEN_PCAP=m +CONFIG_TOUCHSCREEN_RM_TS=m +CONFIG_TOUCHSCREEN_SILEAD=m +CONFIG_TOUCHSCREEN_SIS_I2C=m +CONFIG_TOUCHSCREEN_ST1232=m +CONFIG_TOUCHSCREEN_STMFTS=m +CONFIG_TOUCHSCREEN_SUR40=m +CONFIG_TOUCHSCREEN_SURFACE3_SPI=m +CONFIG_TOUCHSCREEN_SX8654=m +CONFIG_TOUCHSCREEN_TPS6507X=m +CONFIG_TOUCHSCREEN_ZET6223=m +CONFIG_TOUCHSCREEN_ZFORCE=m +CONFIG_TOUCHSCREEN_ROHM_BU21023=m +CONFIG_TOUCHSCREEN_IQS5XX=m +CONFIG_TOUCHSCREEN_ZINITIX=m +CONFIG_INPUT_MISC=y +CONFIG_INPUT_88PM860X_ONKEY=m +CONFIG_INPUT_88PM80X_ONKEY=m +CONFIG_INPUT_AD714X=m +CONFIG_INPUT_AD714X_I2C=m +CONFIG_INPUT_AD714X_SPI=m +CONFIG_INPUT_ARIZONA_HAPTICS=m +CONFIG_INPUT_ATC260X_ONKEY=m +CONFIG_INPUT_BMA150=m +CONFIG_INPUT_E3X0_BUTTON=m +CONFIG_INPUT_PCSPKR=m +CONFIG_INPUT_MAX77693_HAPTIC=m +CONFIG_INPUT_MAX8925_ONKEY=m +CONFIG_INPUT_MAX8997_HAPTIC=m +CONFIG_INPUT_MC13783_PWRBUTTON=m +CONFIG_INPUT_MMA8450=m +CONFIG_INPUT_APANEL=m +CONFIG_INPUT_GPIO_BEEPER=m +CONFIG_INPUT_GPIO_DECODER=m +CONFIG_INPUT_GPIO_VIBRA=m +CONFIG_INPUT_ATLAS_BTNS=m +CONFIG_INPUT_ATI_REMOTE2=m +CONFIG_INPUT_KEYSPAN_REMOTE=m +CONFIG_INPUT_KXTJ9=m +CONFIG_INPUT_POWERMATE=m +CONFIG_INPUT_YEALINK=m +CONFIG_INPUT_CM109=m +CONFIG_INPUT_REGULATOR_HAPTIC=m +CONFIG_INPUT_RETU_PWRBUTTON=m +CONFIG_INPUT_AXP20X_PEK=m +CONFIG_INPUT_TWL4030_PWRBUTTON=m +CONFIG_INPUT_TWL4030_VIBRA=m +CONFIG_INPUT_TWL6040_VIBRA=m +CONFIG_INPUT_UINPUT=y +CONFIG_INPUT_PALMAS_PWRBUTTON=m +CONFIG_INPUT_PCF50633_PMU=m +CONFIG_INPUT_PCF8574=m +CONFIG_INPUT_PWM_BEEPER=m +CONFIG_INPUT_PWM_VIBRA=m +CONFIG_INPUT_GPIO_ROTARY_ENCODER=m +CONFIG_INPUT_DA7280_HAPTICS=m +CONFIG_INPUT_DA9052_ONKEY=m +CONFIG_INPUT_DA9055_ONKEY=m +CONFIG_INPUT_DA9063_ONKEY=m +CONFIG_INPUT_WM831X_ON=m +CONFIG_INPUT_PCAP=m +CONFIG_INPUT_ADXL34X=m +CONFIG_INPUT_ADXL34X_I2C=m +CONFIG_INPUT_ADXL34X_SPI=m +CONFIG_INPUT_IMS_PCU=m +CONFIG_INPUT_IQS269A=m +CONFIG_INPUT_IQS626A=m +CONFIG_INPUT_CMA3000=m +CONFIG_INPUT_CMA3000_I2C=m +CONFIG_INPUT_XEN_KBDDEV_FRONTEND=m +CONFIG_INPUT_IDEAPAD_SLIDEBAR=m +CONFIG_INPUT_SOC_BUTTON_ARRAY=m +CONFIG_INPUT_DRV260X_HAPTICS=m +CONFIG_INPUT_DRV2665_HAPTICS=m +CONFIG_INPUT_DRV2667_HAPTICS=m +CONFIG_INPUT_RAVE_SP_PWRBUTTON=m +CONFIG_RMI4_CORE=m +CONFIG_RMI4_I2C=m +CONFIG_RMI4_SPI=m +CONFIG_RMI4_SMB=m +CONFIG_RMI4_F03=y +CONFIG_RMI4_F03_SERIO=m +CONFIG_RMI4_2D_SENSOR=y +CONFIG_RMI4_F11=y +CONFIG_RMI4_F12=y +CONFIG_RMI4_F30=y +# CONFIG_RMI4_F34 is not set +CONFIG_RMI4_F3A=y +# CONFIG_RMI4_F54 is not set +CONFIG_RMI4_F55=y + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=m +CONFIG_SERIO_CT82C710=m +CONFIG_SERIO_PARKBD=m +CONFIG_SERIO_PCIPS2=m +CONFIG_SERIO_LIBPS2=y +CONFIG_SERIO_RAW=m +CONFIG_SERIO_ALTERA_PS2=m +CONFIG_SERIO_PS2MULT=m +CONFIG_SERIO_ARC_PS2=m +CONFIG_HYPERV_KEYBOARD=m +CONFIG_SERIO_GPIO_PS2=m +CONFIG_USERIO=m +CONFIG_GAMEPORT=m +CONFIG_GAMEPORT_NS558=m +CONFIG_GAMEPORT_L4=m +CONFIG_GAMEPORT_EMU10K1=m +CONFIG_GAMEPORT_FM801=m +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +CONFIG_VT_HW_CONSOLE_BINDING=y +CONFIG_UNIX98_PTYS=y +CONFIG_LEGACY_PTYS=y +CONFIG_LEGACY_PTY_COUNT=0 +CONFIG_LDISC_AUTOLOAD=y + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +CONFIG_SERIAL_8250_PNP=y +# CONFIG_SERIAL_8250_16550A_VARIANTS is not set +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_DMA=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_EXAR=m +CONFIG_SERIAL_8250_CS=m +CONFIG_SERIAL_8250_MEN_MCB=m +CONFIG_SERIAL_8250_NR_UARTS=48 +CONFIG_SERIAL_8250_RUNTIME_UARTS=32 +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_SHARE_IRQ=y +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +CONFIG_SERIAL_8250_RSA=y +CONFIG_SERIAL_8250_DWLIB=y +CONFIG_SERIAL_8250_DW=m +CONFIG_SERIAL_8250_RT288X=y +CONFIG_SERIAL_8250_LPSS=m +CONFIG_SERIAL_8250_MID=m + +# +# Non-8250 serial port support +# +CONFIG_SERIAL_KGDB_NMI=y +CONFIG_SERIAL_MAX3100=m +CONFIG_SERIAL_MAX310X=y +CONFIG_SERIAL_UARTLITE=m +CONFIG_SERIAL_UARTLITE_NR_UARTS=1 +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +CONFIG_CONSOLE_POLL=y +CONFIG_SERIAL_JSM=m +CONFIG_SERIAL_LANTIQ=m +CONFIG_SERIAL_SCCNXP=y +CONFIG_SERIAL_SCCNXP_CONSOLE=y +CONFIG_SERIAL_SC16IS7XX_CORE=m +CONFIG_SERIAL_SC16IS7XX=m +CONFIG_SERIAL_SC16IS7XX_I2C=y +CONFIG_SERIAL_SC16IS7XX_SPI=y +# CONFIG_SERIAL_BCM63XX is not set +CONFIG_SERIAL_ALTERA_JTAGUART=m +CONFIG_SERIAL_ALTERA_UART=m +CONFIG_SERIAL_ALTERA_UART_MAXPORTS=4 +CONFIG_SERIAL_ALTERA_UART_BAUDRATE=115200 +CONFIG_SERIAL_ARC=m +CONFIG_SERIAL_ARC_NR_PORTS=1 +CONFIG_SERIAL_RP2=m +CONFIG_SERIAL_RP2_NR_UARTS=32 +CONFIG_SERIAL_FSL_LPUART=m +CONFIG_SERIAL_FSL_LINFLEXUART=m +CONFIG_SERIAL_MEN_Z135=m +# CONFIG_SERIAL_SPRD is not set +# end of Serial drivers + +CONFIG_SERIAL_MCTRL_GPIO=y +CONFIG_SERIAL_NONSTANDARD=y +CONFIG_MOXA_INTELLIO=m +CONFIG_MOXA_SMARTIO=m +CONFIG_SYNCLINK_GT=m +CONFIG_N_HDLC=m +CONFIG_N_GSM=m +CONFIG_NOZOMI=m +CONFIG_NULL_TTY=m +CONFIG_HVC_DRIVER=y +CONFIG_HVC_IRQ=y +CONFIG_HVC_XEN=y +CONFIG_HVC_XEN_FRONTEND=y +CONFIG_RPMSG_TTY=m +CONFIG_SERIAL_DEV_BUS=y +CONFIG_SERIAL_DEV_CTRL_TTYPORT=y +CONFIG_TTY_PRINTK=y +CONFIG_TTY_PRINTK_LEVEL=6 +CONFIG_PRINTER=m +# CONFIG_LP_CONSOLE is not set +CONFIG_PPDEV=m +CONFIG_VIRTIO_CONSOLE=m +CONFIG_IPMI_HANDLER=m +CONFIG_IPMI_DMI_DECODE=y +CONFIG_IPMI_PLAT_DATA=y +# CONFIG_IPMI_PANIC_EVENT is not set +CONFIG_IPMI_DEVICE_INTERFACE=m +CONFIG_IPMI_SI=m +CONFIG_IPMI_SSIF=m +CONFIG_IPMI_IPMB=m +CONFIG_IPMI_WATCHDOG=m +CONFIG_IPMI_POWEROFF=m +CONFIG_IPMB_DEVICE_INTERFACE=m +CONFIG_HW_RANDOM=y +CONFIG_HW_RANDOM_TIMERIOMEM=m +CONFIG_HW_RANDOM_INTEL=m +CONFIG_HW_RANDOM_AMD=m +CONFIG_HW_RANDOM_BA431=m +CONFIG_HW_RANDOM_VIA=m +CONFIG_HW_RANDOM_VIRTIO=m +CONFIG_HW_RANDOM_XIPHERA=m +CONFIG_APPLICOM=m + +# +# PCMCIA character devices +# +CONFIG_SYNCLINK_CS=m +CONFIG_CARDMAN_4000=m +CONFIG_CARDMAN_4040=m +CONFIG_SCR24X=m +CONFIG_IPWIRELESS=m +# end of PCMCIA character devices + +CONFIG_MWAVE=m +CONFIG_DEVMEM=y +CONFIG_NVRAM=m +CONFIG_DEVPORT=y +CONFIG_HPET=y +CONFIG_HPET_MMAP=y +CONFIG_HPET_MMAP_DEFAULT=y +CONFIG_HANGCHECK_TIMER=m +CONFIG_TCG_TPM=y +CONFIG_HW_RANDOM_TPM=y +CONFIG_TCG_TIS_CORE=y +CONFIG_TCG_TIS=y +CONFIG_TCG_TIS_SPI=m +# CONFIG_TCG_TIS_SPI_CR50 is not set +# CONFIG_TCG_TIS_I2C_CR50 is not set +CONFIG_TCG_TIS_I2C_ATMEL=m +CONFIG_TCG_TIS_I2C_INFINEON=m +CONFIG_TCG_TIS_I2C_NUVOTON=m +CONFIG_TCG_NSC=m +CONFIG_TCG_ATMEL=m +CONFIG_TCG_INFINEON=m +CONFIG_TCG_XEN=m +CONFIG_TCG_CRB=y +CONFIG_TCG_VTPM_PROXY=m +CONFIG_TCG_TIS_ST33ZP24=m +CONFIG_TCG_TIS_ST33ZP24_I2C=m +CONFIG_TCG_TIS_ST33ZP24_SPI=m +CONFIG_TELCLOCK=m +CONFIG_XILLYBUS_CLASS=m +CONFIG_XILLYBUS=m +CONFIG_XILLYBUS_PCIE=m +CONFIG_XILLYUSB=m +# CONFIG_RANDOM_TRUST_CPU is not set +# CONFIG_RANDOM_TRUST_BOOTLOADER is not set +# end of Character devices + +# +# I2C support +# +CONFIG_I2C=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_COMPAT=y +CONFIG_I2C_CHARDEV=y +CONFIG_I2C_MUX=m + +# +# Multiplexer I2C Chip support +# +CONFIG_I2C_MUX_GPIO=m +CONFIG_I2C_MUX_LTC4306=m +CONFIG_I2C_MUX_PCA9541=m +CONFIG_I2C_MUX_PCA954x=m +CONFIG_I2C_MUX_REG=m +CONFIG_I2C_MUX_MLXCPLD=m +# end of Multiplexer I2C Chip support + +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_SMBUS=m +CONFIG_I2C_ALGOBIT=m +CONFIG_I2C_ALGOPCA=m + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +CONFIG_I2C_ALI1535=m +CONFIG_I2C_ALI1563=m +CONFIG_I2C_ALI15X3=m +CONFIG_I2C_AMD756=m +CONFIG_I2C_AMD756_S4882=m +CONFIG_I2C_AMD8111=m +CONFIG_I2C_AMD_MP2=m +CONFIG_I2C_I801=m +CONFIG_I2C_ISCH=m +CONFIG_I2C_ISMT=m +CONFIG_I2C_PIIX4=m +CONFIG_I2C_CHT_WC=m +CONFIG_I2C_NFORCE2=m +CONFIG_I2C_NFORCE2_S4985=m +CONFIG_I2C_NVIDIA_GPU=m +CONFIG_I2C_SIS5595=m +CONFIG_I2C_SIS630=m +CONFIG_I2C_SIS96X=m +CONFIG_I2C_VIA=m +CONFIG_I2C_VIAPRO=m + +# +# ACPI drivers +# +CONFIG_I2C_SCMI=m + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +CONFIG_I2C_CBUS_GPIO=m +CONFIG_I2C_DESIGNWARE_CORE=y +# CONFIG_I2C_DESIGNWARE_SLAVE is not set +CONFIG_I2C_DESIGNWARE_PLATFORM=y +CONFIG_I2C_DESIGNWARE_BAYTRAIL=y +CONFIG_I2C_DESIGNWARE_PCI=m +CONFIG_I2C_EMEV2=m +CONFIG_I2C_GPIO=m +# CONFIG_I2C_GPIO_FAULT_INJECTOR is not set +CONFIG_I2C_KEMPLD=m +CONFIG_I2C_OCORES=m +CONFIG_I2C_PCA_PLATFORM=m +CONFIG_I2C_SIMTEC=m +CONFIG_I2C_XILINX=m + +# +# External I2C/SMBus adapter drivers +# +CONFIG_I2C_DIOLAN_U2C=m +CONFIG_I2C_DLN2=m +CONFIG_I2C_CP2615=m +CONFIG_I2C_PARPORT=m +CONFIG_I2C_ROBOTFUZZ_OSIF=m +CONFIG_I2C_TAOS_EVM=m +CONFIG_I2C_TINY_USB=m +CONFIG_I2C_VIPERBOARD=m + +# +# Other I2C/SMBus bus drivers +# +CONFIG_I2C_MLXCPLD=m +CONFIG_I2C_CROS_EC_TUNNEL=m +CONFIG_I2C_VIRTIO=m +# end of I2C Hardware Bus support + +CONFIG_I2C_STUB=m +CONFIG_I2C_SLAVE=y +CONFIG_I2C_SLAVE_EEPROM=m +# CONFIG_I2C_SLAVE_TESTUNIT is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# end of I2C support + +CONFIG_I3C=m +CONFIG_CDNS_I3C_MASTER=m +CONFIG_DW_I3C_MASTER=m +CONFIG_SVC_I3C_MASTER=m +# CONFIG_MIPI_I3C_HCI is not set +CONFIG_SPI=y +# CONFIG_SPI_DEBUG is not set +CONFIG_SPI_MASTER=y +CONFIG_SPI_MEM=y + +# +# SPI Master Controller Drivers +# +CONFIG_SPI_ALTERA=m +CONFIG_SPI_ALTERA_CORE=m +CONFIG_SPI_ALTERA_DFL=m +CONFIG_SPI_AXI_SPI_ENGINE=m +CONFIG_SPI_BITBANG=m +CONFIG_SPI_BUTTERFLY=m +CONFIG_SPI_CADENCE=m +CONFIG_SPI_DESIGNWARE=m +# CONFIG_SPI_DW_DMA is not set +CONFIG_SPI_DW_PCI=m +CONFIG_SPI_DW_MMIO=m +CONFIG_SPI_DLN2=m +CONFIG_SPI_NXP_FLEXSPI=m +CONFIG_SPI_GPIO=m +CONFIG_SPI_LM70_LLP=m +CONFIG_SPI_LANTIQ_SSC=m +CONFIG_SPI_OC_TINY=m +CONFIG_SPI_PXA2XX=m +CONFIG_SPI_PXA2XX_PCI=m +CONFIG_SPI_ROCKCHIP=m +CONFIG_SPI_SC18IS602=m +CONFIG_SPI_SIFIVE=m +CONFIG_SPI_MXIC=m +CONFIG_SPI_XCOMM=m +# CONFIG_SPI_XILINX is not set +CONFIG_SPI_ZYNQMP_GQSPI=m +CONFIG_SPI_AMD=m + +# +# SPI Multiplexer support +# +CONFIG_SPI_MUX=m + +# +# SPI Protocol Masters +# +CONFIG_SPI_SPIDEV=m +# CONFIG_SPI_LOOPBACK_TEST is not set +CONFIG_SPI_TLE62X0=m +# CONFIG_SPI_SLAVE is not set +CONFIG_SPI_DYNAMIC=y +CONFIG_SPMI=m +# CONFIG_SPMI_HISI3670 is not set +CONFIG_HSI=m +CONFIG_HSI_BOARDINFO=y + +# +# HSI controllers +# + +# +# HSI clients +# +CONFIG_HSI_CHAR=m +CONFIG_PPS=m +# CONFIG_PPS_DEBUG is not set + +# +# PPS clients support +# +# CONFIG_PPS_CLIENT_KTIMER is not set +CONFIG_PPS_CLIENT_LDISC=m +CONFIG_PPS_CLIENT_PARPORT=m +CONFIG_PPS_CLIENT_GPIO=m + +# +# PPS generators support +# + +# +# PTP clock support +# +CONFIG_PTP_1588_CLOCK=m +CONFIG_PTP_1588_CLOCK_OPTIONAL=m + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +CONFIG_PTP_1588_CLOCK_KVM=m +CONFIG_PTP_1588_CLOCK_IDT82P33=m +CONFIG_PTP_1588_CLOCK_IDTCM=m +# CONFIG_PTP_1588_CLOCK_VMW is not set +CONFIG_PTP_1588_CLOCK_OCP=m +# end of PTP clock support + +CONFIG_PINCTRL=y +CONFIG_PINMUX=y +CONFIG_PINCONF=y +CONFIG_GENERIC_PINCONF=y +# CONFIG_DEBUG_PINCTRL is not set +CONFIG_PINCTRL_AMD=y +# CONFIG_PINCTRL_DA9062 is not set +CONFIG_PINCTRL_MCP23S08_I2C=m +CONFIG_PINCTRL_MCP23S08_SPI=m +CONFIG_PINCTRL_MCP23S08=m +CONFIG_PINCTRL_SX150X=y + +# +# Intel pinctrl drivers +# +CONFIG_PINCTRL_BAYTRAIL=y +CONFIG_PINCTRL_CHERRYVIEW=y +CONFIG_PINCTRL_LYNXPOINT=m +CONFIG_PINCTRL_INTEL=y +CONFIG_PINCTRL_ALDERLAKE=m +CONFIG_PINCTRL_BROXTON=m +CONFIG_PINCTRL_CANNONLAKE=m +CONFIG_PINCTRL_CEDARFORK=m +CONFIG_PINCTRL_DENVERTON=m +CONFIG_PINCTRL_ELKHARTLAKE=m +CONFIG_PINCTRL_EMMITSBURG=m +CONFIG_PINCTRL_GEMINILAKE=m +CONFIG_PINCTRL_ICELAKE=m +CONFIG_PINCTRL_JASPERLAKE=m +CONFIG_PINCTRL_LAKEFIELD=m +CONFIG_PINCTRL_LEWISBURG=m +CONFIG_PINCTRL_SUNRISEPOINT=m +CONFIG_PINCTRL_TIGERLAKE=m +# end of Intel pinctrl drivers + +# +# Renesas pinctrl drivers +# +# end of Renesas pinctrl drivers + +CONFIG_PINCTRL_MADERA=m +CONFIG_GPIOLIB=y +CONFIG_GPIOLIB_FASTPATH_LIMIT=512 +CONFIG_GPIO_ACPI=y +CONFIG_GPIOLIB_IRQCHIP=y +# CONFIG_DEBUG_GPIO is not set +CONFIG_GPIO_SYSFS=y +CONFIG_GPIO_CDEV=y +CONFIG_GPIO_CDEV_V1=y +CONFIG_GPIO_GENERIC=m +CONFIG_GPIO_MAX730X=m + +# +# Memory mapped GPIO drivers +# +CONFIG_GPIO_AMDPT=m +CONFIG_GPIO_DWAPB=m +CONFIG_GPIO_EXAR=m +CONFIG_GPIO_GENERIC_PLATFORM=m +CONFIG_GPIO_ICH=m +CONFIG_GPIO_MB86S7X=m +CONFIG_GPIO_MENZ127=m +CONFIG_GPIO_VX855=m +CONFIG_GPIO_AMD_FCH=m +# end of Memory mapped GPIO drivers + +# +# Port-mapped I/O GPIO drivers +# +CONFIG_GPIO_F7188X=m +CONFIG_GPIO_IT87=m +CONFIG_GPIO_SCH=m +CONFIG_GPIO_SCH311X=m +CONFIG_GPIO_WINBOND=m +CONFIG_GPIO_WS16C48=m +# end of Port-mapped I/O GPIO drivers + +# +# I2C GPIO expanders +# +CONFIG_GPIO_ADP5588=m +CONFIG_GPIO_MAX7300=m +CONFIG_GPIO_MAX732X=m +CONFIG_GPIO_PCA953X=m +CONFIG_GPIO_PCA953X_IRQ=y +CONFIG_GPIO_PCA9570=m +CONFIG_GPIO_PCF857X=m +CONFIG_GPIO_TPIC2810=m +# end of I2C GPIO expanders + +# +# MFD GPIO expanders +# +CONFIG_GPIO_ADP5520=m +CONFIG_GPIO_ARIZONA=m +CONFIG_GPIO_BD9571MWV=m +CONFIG_GPIO_CRYSTAL_COVE=m +CONFIG_GPIO_DA9052=m +CONFIG_GPIO_DA9055=m +CONFIG_GPIO_DLN2=m +CONFIG_GPIO_JANZ_TTL=m +CONFIG_GPIO_KEMPLD=m +CONFIG_GPIO_LP3943=m +CONFIG_GPIO_LP873X=m +CONFIG_GPIO_MADERA=m +CONFIG_GPIO_PALMAS=y +CONFIG_GPIO_RC5T583=y +CONFIG_GPIO_TPS65086=m +CONFIG_GPIO_TPS6586X=y +CONFIG_GPIO_TPS65910=y +CONFIG_GPIO_TPS65912=m +CONFIG_GPIO_TPS68470=y +CONFIG_GPIO_TQMX86=m +CONFIG_GPIO_TWL4030=m +CONFIG_GPIO_TWL6040=m +CONFIG_GPIO_UCB1400=m +CONFIG_GPIO_WHISKEY_COVE=m +CONFIG_GPIO_WM831X=m +CONFIG_GPIO_WM8350=m +CONFIG_GPIO_WM8994=m +# end of MFD GPIO expanders + +# +# PCI GPIO expanders +# +CONFIG_GPIO_AMD8111=m +CONFIG_GPIO_ML_IOH=m +CONFIG_GPIO_PCI_IDIO_16=m +CONFIG_GPIO_PCIE_IDIO_24=m +CONFIG_GPIO_RDC321X=m +# end of PCI GPIO expanders + +# +# SPI GPIO expanders +# +CONFIG_GPIO_MAX3191X=m +CONFIG_GPIO_MAX7301=m +CONFIG_GPIO_MC33880=m +CONFIG_GPIO_PISOSR=m +CONFIG_GPIO_XRA1403=m +# end of SPI GPIO expanders + +# +# USB GPIO expanders +# +CONFIG_GPIO_VIPERBOARD=m +# end of USB GPIO expanders + +# +# Virtual GPIO drivers +# +CONFIG_GPIO_AGGREGATOR=m +# CONFIG_GPIO_MOCKUP is not set +CONFIG_GPIO_VIRTIO=m +# end of Virtual GPIO drivers + +CONFIG_W1=m +CONFIG_W1_CON=y + +# +# 1-wire Bus Masters +# +CONFIG_W1_MASTER_MATROX=m +CONFIG_W1_MASTER_DS2490=m +CONFIG_W1_MASTER_DS2482=m +CONFIG_W1_MASTER_DS1WM=m +CONFIG_W1_MASTER_GPIO=m +CONFIG_W1_MASTER_SGI=m +# end of 1-wire Bus Masters + +# +# 1-wire Slaves +# +CONFIG_W1_SLAVE_THERM=m +CONFIG_W1_SLAVE_SMEM=m +CONFIG_W1_SLAVE_DS2405=m +CONFIG_W1_SLAVE_DS2408=m +CONFIG_W1_SLAVE_DS2408_READBACK=y +CONFIG_W1_SLAVE_DS2413=m +CONFIG_W1_SLAVE_DS2406=m +CONFIG_W1_SLAVE_DS2423=m +CONFIG_W1_SLAVE_DS2805=m +CONFIG_W1_SLAVE_DS2430=m +CONFIG_W1_SLAVE_DS2431=m +CONFIG_W1_SLAVE_DS2433=m +# CONFIG_W1_SLAVE_DS2433_CRC is not set +CONFIG_W1_SLAVE_DS2438=m +CONFIG_W1_SLAVE_DS250X=m +CONFIG_W1_SLAVE_DS2780=m +CONFIG_W1_SLAVE_DS2781=m +CONFIG_W1_SLAVE_DS28E04=m +CONFIG_W1_SLAVE_DS28E17=m +# end of 1-wire Slaves + +CONFIG_POWER_RESET=y +CONFIG_POWER_RESET_ATC260X=m +# CONFIG_POWER_RESET_MT6323 is not set +CONFIG_POWER_RESET_RESTART=y +CONFIG_POWER_RESET_TPS65086=y +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_POWER_SUPPLY_HWMON=y +CONFIG_PDA_POWER=m +CONFIG_GENERIC_ADC_BATTERY=m +CONFIG_MAX8925_POWER=m +CONFIG_WM831X_BACKUP=m +CONFIG_WM831X_POWER=m +CONFIG_WM8350_POWER=m +CONFIG_TEST_POWER=m +CONFIG_BATTERY_88PM860X=m +CONFIG_CHARGER_ADP5061=m +CONFIG_BATTERY_CW2015=m +CONFIG_BATTERY_DS2760=m +CONFIG_BATTERY_DS2780=m +CONFIG_BATTERY_DS2781=m +CONFIG_BATTERY_DS2782=m +CONFIG_BATTERY_SBS=m +CONFIG_CHARGER_SBS=m +CONFIG_MANAGER_SBS=m +CONFIG_BATTERY_BQ27XXX=m +CONFIG_BATTERY_BQ27XXX_I2C=m +CONFIG_BATTERY_BQ27XXX_HDQ=m +# CONFIG_BATTERY_BQ27XXX_DT_UPDATES_NVM is not set +CONFIG_BATTERY_DA9030=m +CONFIG_BATTERY_DA9052=m +CONFIG_CHARGER_DA9150=m +CONFIG_BATTERY_DA9150=m +CONFIG_CHARGER_AXP20X=m +CONFIG_BATTERY_AXP20X=m +CONFIG_AXP20X_POWER=m +CONFIG_AXP288_CHARGER=m +CONFIG_AXP288_FUEL_GAUGE=m +CONFIG_BATTERY_MAX17040=m +CONFIG_BATTERY_MAX17042=m +CONFIG_BATTERY_MAX1721X=m +CONFIG_BATTERY_TWL4030_MADC=m +CONFIG_CHARGER_88PM860X=m +CONFIG_CHARGER_PCF50633=m +CONFIG_BATTERY_RX51=m +CONFIG_CHARGER_ISP1704=m +CONFIG_CHARGER_MAX8903=m +CONFIG_CHARGER_TWL4030=m +CONFIG_CHARGER_LP8727=m +CONFIG_CHARGER_LP8788=m +CONFIG_CHARGER_GPIO=m +CONFIG_CHARGER_MANAGER=y +CONFIG_CHARGER_LT3651=m +CONFIG_CHARGER_LTC4162L=m +CONFIG_CHARGER_MAX14577=m +CONFIG_CHARGER_MAX77693=m +CONFIG_CHARGER_MAX8997=m +CONFIG_CHARGER_MAX8998=m +CONFIG_CHARGER_MP2629=m +CONFIG_CHARGER_MT6360=m +CONFIG_CHARGER_BQ2415X=m +CONFIG_CHARGER_BQ24190=m +CONFIG_CHARGER_BQ24257=m +CONFIG_CHARGER_BQ24735=m +CONFIG_CHARGER_BQ2515X=m +CONFIG_CHARGER_BQ25890=m +CONFIG_CHARGER_BQ25980=m +CONFIG_CHARGER_BQ256XX=m +CONFIG_CHARGER_SMB347=m +CONFIG_CHARGER_TPS65090=m +CONFIG_BATTERY_GAUGE_LTC2941=m +CONFIG_BATTERY_GOLDFISH=m +CONFIG_BATTERY_RT5033=m +CONFIG_CHARGER_RT9455=m +CONFIG_CHARGER_CROS_USBPD=m +CONFIG_CHARGER_CROS_PCHG=m +CONFIG_CHARGER_BD99954=m +CONFIG_CHARGER_WILCO=m +CONFIG_BATTERY_SURFACE=m +CONFIG_CHARGER_SURFACE=m +CONFIG_HWMON=y +CONFIG_HWMON_VID=m +# CONFIG_HWMON_DEBUG_CHIP is not set + +# +# Native drivers +# +CONFIG_SENSORS_ABITUGURU=m +CONFIG_SENSORS_ABITUGURU3=m +CONFIG_SENSORS_AD7314=m +CONFIG_SENSORS_AD7414=m +CONFIG_SENSORS_AD7418=m +CONFIG_SENSORS_ADM1021=m +CONFIG_SENSORS_ADM1025=m +CONFIG_SENSORS_ADM1026=m +CONFIG_SENSORS_ADM1029=m +CONFIG_SENSORS_ADM1031=m +CONFIG_SENSORS_ADM1177=m +CONFIG_SENSORS_ADM9240=m +CONFIG_SENSORS_ADT7X10=m +CONFIG_SENSORS_ADT7310=m +CONFIG_SENSORS_ADT7410=m +CONFIG_SENSORS_ADT7411=m +CONFIG_SENSORS_ADT7462=m +CONFIG_SENSORS_ADT7470=m +CONFIG_SENSORS_ADT7475=m +CONFIG_SENSORS_AHT10=m +CONFIG_SENSORS_AQUACOMPUTER_D5NEXT=m +CONFIG_SENSORS_AS370=m +CONFIG_SENSORS_ASC7621=m +CONFIG_SENSORS_AXI_FAN_CONTROL=m +CONFIG_SENSORS_K8TEMP=m +CONFIG_SENSORS_K10TEMP=m +CONFIG_SENSORS_FAM15H_POWER=m +CONFIG_SENSORS_APPLESMC=m +CONFIG_SENSORS_ASB100=m +CONFIG_SENSORS_ASPEED=m +CONFIG_SENSORS_ATXP1=m +CONFIG_SENSORS_CORSAIR_CPRO=m +CONFIG_SENSORS_CORSAIR_PSU=m +CONFIG_SENSORS_DRIVETEMP=y +CONFIG_SENSORS_DS620=m +CONFIG_SENSORS_DS1621=m +CONFIG_SENSORS_DELL_SMM=m +CONFIG_SENSORS_DA9052_ADC=m +CONFIG_SENSORS_DA9055=m +CONFIG_SENSORS_I5K_AMB=m +CONFIG_SENSORS_F71805F=m +CONFIG_SENSORS_F71882FG=m +CONFIG_SENSORS_F75375S=m +CONFIG_SENSORS_MC13783_ADC=m +CONFIG_SENSORS_FSCHMD=m +CONFIG_SENSORS_FTSTEUTATES=m +CONFIG_SENSORS_GL518SM=m +CONFIG_SENSORS_GL520SM=m +CONFIG_SENSORS_G760A=m +CONFIG_SENSORS_G762=m +CONFIG_SENSORS_HIH6130=m +CONFIG_SENSORS_IBMAEM=m +CONFIG_SENSORS_IBMPEX=m +CONFIG_SENSORS_IIO_HWMON=m +CONFIG_SENSORS_I5500=m +CONFIG_SENSORS_CORETEMP=m +CONFIG_SENSORS_IT87=m +CONFIG_SENSORS_JC42=m +CONFIG_SENSORS_POWR1220=m +CONFIG_SENSORS_LINEAGE=m +CONFIG_SENSORS_LTC2945=m +CONFIG_SENSORS_LTC2947=m +CONFIG_SENSORS_LTC2947_I2C=m +CONFIG_SENSORS_LTC2947_SPI=m +CONFIG_SENSORS_LTC2990=m +CONFIG_SENSORS_LTC2992=m +CONFIG_SENSORS_LTC4151=m +CONFIG_SENSORS_LTC4215=m +CONFIG_SENSORS_LTC4222=m +CONFIG_SENSORS_LTC4245=m +CONFIG_SENSORS_LTC4260=m +CONFIG_SENSORS_LTC4261=m +CONFIG_SENSORS_MAX1111=m +CONFIG_SENSORS_MAX127=m +CONFIG_SENSORS_MAX16065=m +CONFIG_SENSORS_MAX1619=m +CONFIG_SENSORS_MAX1668=m +CONFIG_SENSORS_MAX197=m +CONFIG_SENSORS_MAX31722=m +CONFIG_SENSORS_MAX31730=m +CONFIG_SENSORS_MAX6620=m +CONFIG_SENSORS_MAX6621=m +CONFIG_SENSORS_MAX6639=m +CONFIG_SENSORS_MAX6642=m +CONFIG_SENSORS_MAX6650=m +CONFIG_SENSORS_MAX6697=m +CONFIG_SENSORS_MAX31790=m +CONFIG_SENSORS_MCP3021=m +CONFIG_SENSORS_TC654=m +CONFIG_SENSORS_TPS23861=m +CONFIG_SENSORS_MENF21BMC_HWMON=m +CONFIG_SENSORS_MR75203=m +CONFIG_SENSORS_ADCXX=m +CONFIG_SENSORS_LM63=m +CONFIG_SENSORS_LM70=m +CONFIG_SENSORS_LM73=m +CONFIG_SENSORS_LM75=m +CONFIG_SENSORS_LM77=m +CONFIG_SENSORS_LM78=m +CONFIG_SENSORS_LM80=m +CONFIG_SENSORS_LM83=m +CONFIG_SENSORS_LM85=m +CONFIG_SENSORS_LM87=m +CONFIG_SENSORS_LM90=m +CONFIG_SENSORS_LM92=m +CONFIG_SENSORS_LM93=m +CONFIG_SENSORS_LM95234=m +CONFIG_SENSORS_LM95241=m +CONFIG_SENSORS_LM95245=m +CONFIG_SENSORS_PC87360=m +CONFIG_SENSORS_PC87427=m +CONFIG_SENSORS_NTC_THERMISTOR=m +CONFIG_SENSORS_NCT6683=m +CONFIG_SENSORS_NCT6775=m +CONFIG_SENSORS_NCT7802=m +CONFIG_SENSORS_NCT7904=m +CONFIG_SENSORS_NPCM7XX=m +CONFIG_SENSORS_NZXT_KRAKEN2=m +CONFIG_SENSORS_PCF8591=m +CONFIG_PMBUS=m +CONFIG_SENSORS_PMBUS=m +CONFIG_SENSORS_ADM1266=m +CONFIG_SENSORS_ADM1275=m +CONFIG_SENSORS_BEL_PFE=m +CONFIG_SENSORS_BPA_RS600=m +CONFIG_SENSORS_FSP_3Y=m +CONFIG_SENSORS_IBM_CFFPS=m +CONFIG_SENSORS_DPS920AB=m +CONFIG_SENSORS_INSPUR_IPSPS=m +CONFIG_SENSORS_IR35221=m +CONFIG_SENSORS_IR36021=m +CONFIG_SENSORS_IR38064=m +CONFIG_SENSORS_IRPS5401=m +CONFIG_SENSORS_ISL68137=m +CONFIG_SENSORS_LM25066=m +CONFIG_SENSORS_LTC2978=m +CONFIG_SENSORS_LTC2978_REGULATOR=y +CONFIG_SENSORS_LTC3815=m +CONFIG_SENSORS_MAX15301=m +CONFIG_SENSORS_MAX16064=m +CONFIG_SENSORS_MAX16601=m +CONFIG_SENSORS_MAX20730=m +CONFIG_SENSORS_MAX20751=m +CONFIG_SENSORS_MAX31785=m +CONFIG_SENSORS_MAX34440=m +CONFIG_SENSORS_MAX8688=m +CONFIG_SENSORS_MP2888=m +CONFIG_SENSORS_MP2975=m +CONFIG_SENSORS_PIM4328=m +CONFIG_SENSORS_PM6764TR=m +CONFIG_SENSORS_PXE1610=m +CONFIG_SENSORS_Q54SJ108A2=m +CONFIG_SENSORS_STPDDC60=m +CONFIG_SENSORS_TPS40422=m +CONFIG_SENSORS_TPS53679=m +CONFIG_SENSORS_UCD9000=m +CONFIG_SENSORS_UCD9200=m +CONFIG_SENSORS_XDPE122=m +CONFIG_SENSORS_ZL6100=m +CONFIG_SENSORS_SBTSI=m +CONFIG_SENSORS_SBRMI=m +CONFIG_SENSORS_SHT15=m +CONFIG_SENSORS_SHT21=m +CONFIG_SENSORS_SHT3x=m +CONFIG_SENSORS_SHT4x=m +CONFIG_SENSORS_SHTC1=m +CONFIG_SENSORS_SIS5595=m +CONFIG_SENSORS_DME1737=m +CONFIG_SENSORS_EMC1403=m +CONFIG_SENSORS_EMC2103=m +CONFIG_SENSORS_EMC6W201=m +CONFIG_SENSORS_SMSC47M1=m +CONFIG_SENSORS_SMSC47M192=m +CONFIG_SENSORS_SMSC47B397=m +CONFIG_SENSORS_SCH56XX_COMMON=m +CONFIG_SENSORS_SCH5627=m +CONFIG_SENSORS_SCH5636=m +CONFIG_SENSORS_STTS751=m +CONFIG_SENSORS_SMM665=m +CONFIG_SENSORS_ADC128D818=m +CONFIG_SENSORS_ADS7828=m +CONFIG_SENSORS_ADS7871=m +CONFIG_SENSORS_AMC6821=m +CONFIG_SENSORS_INA209=m +CONFIG_SENSORS_INA2XX=m +CONFIG_SENSORS_INA3221=m +CONFIG_SENSORS_TC74=m +CONFIG_SENSORS_THMC50=m +CONFIG_SENSORS_TMP102=m +CONFIG_SENSORS_TMP103=m +CONFIG_SENSORS_TMP108=m +CONFIG_SENSORS_TMP401=m +CONFIG_SENSORS_TMP421=m +CONFIG_SENSORS_TMP513=m +CONFIG_SENSORS_VIA_CPUTEMP=m +CONFIG_SENSORS_VIA686A=m +CONFIG_SENSORS_VT1211=m +CONFIG_SENSORS_VT8231=m +CONFIG_SENSORS_W83773G=m +CONFIG_SENSORS_W83781D=m +CONFIG_SENSORS_W83791D=m +CONFIG_SENSORS_W83792D=m +CONFIG_SENSORS_W83793=m +CONFIG_SENSORS_W83795=m +# CONFIG_SENSORS_W83795_FANCTRL is not set +CONFIG_SENSORS_W83L785TS=m +CONFIG_SENSORS_W83L786NG=m +CONFIG_SENSORS_W83627HF=m +CONFIG_SENSORS_W83627EHF=m +CONFIG_SENSORS_WM831X=m +CONFIG_SENSORS_WM8350=m +CONFIG_SENSORS_XGENE=m +CONFIG_SENSORS_INTEL_M10_BMC_HWMON=m + +# +# ACPI drivers +# +CONFIG_SENSORS_ACPI_POWER=m +CONFIG_SENSORS_ATK0110=m +CONFIG_THERMAL=y +CONFIG_THERMAL_NETLINK=y +# CONFIG_THERMAL_STATISTICS is not set +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_WRITABLE_TRIPS=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +CONFIG_THERMAL_GOV_FAIR_SHARE=y +CONFIG_THERMAL_GOV_STEP_WISE=y +CONFIG_THERMAL_GOV_BANG_BANG=y +CONFIG_THERMAL_GOV_USER_SPACE=y +CONFIG_DEVFREQ_THERMAL=y +CONFIG_THERMAL_EMULATION=y + +# +# Intel thermal drivers +# +CONFIG_INTEL_POWERCLAMP=m +CONFIG_X86_THERMAL_VECTOR=y +CONFIG_X86_PKG_TEMP_THERMAL=m +CONFIG_INTEL_SOC_DTS_IOSF_CORE=m +CONFIG_INTEL_SOC_DTS_THERMAL=m + +# +# ACPI INT340X thermal drivers +# +CONFIG_INT340X_THERMAL=m +CONFIG_ACPI_THERMAL_REL=m +CONFIG_INT3406_THERMAL=m +CONFIG_PROC_THERMAL_MMIO_RAPL=m +# end of ACPI INT340X thermal drivers + +CONFIG_INTEL_BXT_PMIC_THERMAL=m +CONFIG_INTEL_PCH_THERMAL=m +CONFIG_INTEL_TCC_COOLING=m +CONFIG_INTEL_MENLOW=m +# end of Intel thermal drivers + +CONFIG_GENERIC_ADC_THERMAL=m +CONFIG_WATCHDOG=y +CONFIG_WATCHDOG_CORE=y +# CONFIG_WATCHDOG_NOWAYOUT is not set +CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y +CONFIG_WATCHDOG_OPEN_TIMEOUT=0 +CONFIG_WATCHDOG_SYSFS=y +CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT=y + +# +# Watchdog Pretimeout Governors +# +# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set + +# +# Watchdog Device Drivers +# +CONFIG_SOFT_WATCHDOG=m +CONFIG_DA9052_WATCHDOG=m +CONFIG_DA9055_WATCHDOG=m +CONFIG_DA9063_WATCHDOG=m +CONFIG_DA9062_WATCHDOG=m +CONFIG_MENF21BMC_WATCHDOG=m +CONFIG_MENZ069_WATCHDOG=m +CONFIG_WDAT_WDT=m +CONFIG_WM831X_WATCHDOG=m +CONFIG_WM8350_WATCHDOG=m +CONFIG_XILINX_WATCHDOG=m +CONFIG_ZIIRAVE_WATCHDOG=m +CONFIG_RAVE_SP_WATCHDOG=m +CONFIG_CADENCE_WATCHDOG=m +CONFIG_DW_WATCHDOG=m +CONFIG_TWL4030_WATCHDOG=m +CONFIG_MAX63XX_WATCHDOG=m +CONFIG_RETU_WATCHDOG=m +CONFIG_ACQUIRE_WDT=m +CONFIG_ADVANTECH_WDT=m +CONFIG_ALIM1535_WDT=m +CONFIG_ALIM7101_WDT=m +CONFIG_EBC_C384_WDT=m +CONFIG_F71808E_WDT=m +CONFIG_SP5100_TCO=m +CONFIG_SBC_FITPC2_WATCHDOG=m +CONFIG_EUROTECH_WDT=m +CONFIG_IB700_WDT=m +CONFIG_IBMASR=m +CONFIG_WAFER_WDT=m +CONFIG_I6300ESB_WDT=m +CONFIG_IE6XX_WDT=m +CONFIG_ITCO_WDT=m +CONFIG_ITCO_VENDOR_SUPPORT=y +CONFIG_IT8712F_WDT=m +CONFIG_IT87_WDT=m +CONFIG_HP_WATCHDOG=m +CONFIG_HPWDT_NMI_DECODING=y +CONFIG_KEMPLD_WDT=m +CONFIG_SC1200_WDT=m +CONFIG_PC87413_WDT=m +CONFIG_NV_TCO=m +CONFIG_60XX_WDT=m +CONFIG_CPU5_WDT=m +CONFIG_SMSC_SCH311X_WDT=m +CONFIG_SMSC37B787_WDT=m +CONFIG_TQMX86_WDT=m +CONFIG_VIA_WDT=m +CONFIG_W83627HF_WDT=m +CONFIG_W83877F_WDT=m +CONFIG_W83977F_WDT=m +CONFIG_MACHZ_WDT=m +CONFIG_SBC_EPX_C3_WATCHDOG=m +CONFIG_NI903X_WDT=m +CONFIG_NIC7018_WDT=m +CONFIG_MEN_A21_WDT=m +CONFIG_XEN_WDT=m + +# +# PCI-based Watchdog Cards +# +CONFIG_PCIPCWATCHDOG=m +CONFIG_WDTPCI=m + +# +# USB-based Watchdog Cards +# +CONFIG_USBPCWATCHDOG=m +CONFIG_SSB_POSSIBLE=y +CONFIG_SSB=m +CONFIG_SSB_SPROM=y +CONFIG_SSB_BLOCKIO=y +CONFIG_SSB_PCIHOST_POSSIBLE=y +CONFIG_SSB_PCIHOST=y +CONFIG_SSB_B43_PCI_BRIDGE=y +CONFIG_SSB_PCMCIAHOST_POSSIBLE=y +# CONFIG_SSB_PCMCIAHOST is not set +CONFIG_SSB_SDIOHOST_POSSIBLE=y +CONFIG_SSB_SDIOHOST=y +CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y +CONFIG_SSB_DRIVER_PCICORE=y +CONFIG_SSB_DRIVER_GPIO=y +CONFIG_BCMA_POSSIBLE=y +CONFIG_BCMA=m +CONFIG_BCMA_BLOCKIO=y +CONFIG_BCMA_HOST_PCI_POSSIBLE=y +CONFIG_BCMA_HOST_PCI=y +CONFIG_BCMA_HOST_SOC=y +CONFIG_BCMA_DRIVER_PCI=y +CONFIG_BCMA_SFLASH=y +CONFIG_BCMA_DRIVER_GMAC_CMN=y +CONFIG_BCMA_DRIVER_GPIO=y +# CONFIG_BCMA_DEBUG is not set + +# +# Multifunction device drivers +# +CONFIG_MFD_CORE=y +CONFIG_MFD_AS3711=y +CONFIG_PMIC_ADP5520=y +CONFIG_MFD_AAT2870_CORE=y +CONFIG_MFD_BCM590XX=m +CONFIG_MFD_BD9571MWV=m +CONFIG_MFD_AXP20X=m +CONFIG_MFD_AXP20X_I2C=m +CONFIG_MFD_CROS_EC_DEV=m +CONFIG_MFD_MADERA=m +CONFIG_MFD_MADERA_I2C=m +CONFIG_MFD_MADERA_SPI=m +# CONFIG_MFD_CS47L15 is not set +# CONFIG_MFD_CS47L35 is not set +# CONFIG_MFD_CS47L85 is not set +# CONFIG_MFD_CS47L90 is not set +# CONFIG_MFD_CS47L92 is not set +CONFIG_PMIC_DA903X=y +CONFIG_PMIC_DA9052=y +CONFIG_MFD_DA9052_SPI=y +CONFIG_MFD_DA9052_I2C=y +CONFIG_MFD_DA9055=y +CONFIG_MFD_DA9062=m +CONFIG_MFD_DA9063=y +CONFIG_MFD_DA9150=m +CONFIG_MFD_DLN2=m +CONFIG_MFD_MC13XXX=m +CONFIG_MFD_MC13XXX_SPI=m +CONFIG_MFD_MC13XXX_I2C=m +CONFIG_MFD_MP2629=m +CONFIG_HTC_PASIC3=m +CONFIG_HTC_I2CPLD=y +CONFIG_MFD_INTEL_QUARK_I2C_GPIO=m +CONFIG_LPC_ICH=m +CONFIG_LPC_SCH=m +CONFIG_INTEL_SOC_PMIC=y +CONFIG_INTEL_SOC_PMIC_BXTWC=m +CONFIG_INTEL_SOC_PMIC_CHTWC=y +CONFIG_INTEL_SOC_PMIC_CHTDC_TI=m +CONFIG_INTEL_SOC_PMIC_MRFLD=m +CONFIG_MFD_INTEL_LPSS=m +CONFIG_MFD_INTEL_LPSS_ACPI=m +CONFIG_MFD_INTEL_LPSS_PCI=m +CONFIG_MFD_INTEL_PMC_BXT=m +CONFIG_MFD_INTEL_PMT=m +CONFIG_MFD_IQS62X=m +CONFIG_MFD_JANZ_CMODIO=m +CONFIG_MFD_KEMPLD=m +CONFIG_MFD_88PM800=m +CONFIG_MFD_88PM805=m +CONFIG_MFD_88PM860X=y +CONFIG_MFD_MAX14577=y +CONFIG_MFD_MAX77693=y +CONFIG_MFD_MAX77843=y +CONFIG_MFD_MAX8907=m +CONFIG_MFD_MAX8925=y +CONFIG_MFD_MAX8997=y +CONFIG_MFD_MAX8998=y +CONFIG_MFD_MT6360=m +CONFIG_MFD_MT6397=m +CONFIG_MFD_MENF21BMC=m +CONFIG_EZX_PCAP=y +CONFIG_MFD_VIPERBOARD=m +CONFIG_MFD_RETU=m +CONFIG_MFD_PCF50633=m +CONFIG_PCF50633_ADC=m +CONFIG_PCF50633_GPIO=m +CONFIG_UCB1400_CORE=m +CONFIG_MFD_RDC321X=m +CONFIG_MFD_RT4831=m +CONFIG_MFD_RT5033=m +CONFIG_MFD_RC5T583=y +CONFIG_MFD_SI476X_CORE=m +CONFIG_MFD_SM501=m +CONFIG_MFD_SM501_GPIO=y +CONFIG_MFD_SKY81452=m +CONFIG_MFD_SYSCON=y +CONFIG_MFD_TI_AM335X_TSCADC=m +CONFIG_MFD_LP3943=m +CONFIG_MFD_LP8788=y +CONFIG_MFD_TI_LMU=m +CONFIG_MFD_PALMAS=y +CONFIG_TPS6105X=m +CONFIG_TPS65010=m +CONFIG_TPS6507X=m +CONFIG_MFD_TPS65086=m +CONFIG_MFD_TPS65090=y +CONFIG_MFD_TI_LP873X=m +CONFIG_MFD_TPS6586X=y +CONFIG_MFD_TPS65910=y +CONFIG_MFD_TPS65912=y +CONFIG_MFD_TPS65912_I2C=y +CONFIG_MFD_TPS65912_SPI=y +CONFIG_TWL4030_CORE=y +CONFIG_MFD_TWL4030_AUDIO=y +CONFIG_TWL6040_CORE=y +CONFIG_MFD_WL1273_CORE=m +CONFIG_MFD_LM3533=m +CONFIG_MFD_TQMX86=m +CONFIG_MFD_VX855=m +CONFIG_MFD_ARIZONA=m +CONFIG_MFD_ARIZONA_I2C=m +CONFIG_MFD_ARIZONA_SPI=m +CONFIG_MFD_CS47L24=y +CONFIG_MFD_WM5102=y +CONFIG_MFD_WM5110=y +CONFIG_MFD_WM8997=y +CONFIG_MFD_WM8998=y +CONFIG_MFD_WM8400=y +CONFIG_MFD_WM831X=y +CONFIG_MFD_WM831X_I2C=y +CONFIG_MFD_WM831X_SPI=y +CONFIG_MFD_WM8350=y +CONFIG_MFD_WM8350_I2C=y +CONFIG_MFD_WM8994=m +CONFIG_MFD_ATC260X=m +CONFIG_MFD_ATC260X_I2C=m +CONFIG_RAVE_SP_CORE=m +CONFIG_MFD_INTEL_M10_BMC=m +# end of Multifunction device drivers + +CONFIG_REGULATOR=y +# CONFIG_REGULATOR_DEBUG is not set +CONFIG_REGULATOR_FIXED_VOLTAGE=m +CONFIG_REGULATOR_VIRTUAL_CONSUMER=m +CONFIG_REGULATOR_USERSPACE_CONSUMER=m +CONFIG_REGULATOR_88PG86X=m +CONFIG_REGULATOR_88PM800=m +CONFIG_REGULATOR_88PM8607=m +CONFIG_REGULATOR_ACT8865=m +CONFIG_REGULATOR_AD5398=m +CONFIG_REGULATOR_AAT2870=m +CONFIG_REGULATOR_ARIZONA_LDO1=m +CONFIG_REGULATOR_ARIZONA_MICSUPP=m +CONFIG_REGULATOR_AS3711=m +CONFIG_REGULATOR_ATC260X=m +CONFIG_REGULATOR_AXP20X=m +CONFIG_REGULATOR_BCM590XX=m +CONFIG_REGULATOR_BD9571MWV=m +CONFIG_REGULATOR_DA903X=m +CONFIG_REGULATOR_DA9052=m +CONFIG_REGULATOR_DA9055=m +CONFIG_REGULATOR_DA9062=m +CONFIG_REGULATOR_DA9210=m +CONFIG_REGULATOR_DA9211=m +CONFIG_REGULATOR_FAN53555=m +CONFIG_REGULATOR_GPIO=m +CONFIG_REGULATOR_ISL9305=m +CONFIG_REGULATOR_ISL6271A=m +CONFIG_REGULATOR_LM363X=m +CONFIG_REGULATOR_LP3971=m +CONFIG_REGULATOR_LP3972=m +CONFIG_REGULATOR_LP872X=m +CONFIG_REGULATOR_LP8755=m +CONFIG_REGULATOR_LP8788=m +CONFIG_REGULATOR_LTC3589=m +CONFIG_REGULATOR_LTC3676=m +CONFIG_REGULATOR_MAX14577=m +CONFIG_REGULATOR_MAX1586=m +CONFIG_REGULATOR_MAX8649=m +CONFIG_REGULATOR_MAX8660=m +CONFIG_REGULATOR_MAX8893=m +CONFIG_REGULATOR_MAX8907=m +CONFIG_REGULATOR_MAX8925=m +CONFIG_REGULATOR_MAX8952=m +CONFIG_REGULATOR_MAX8997=m +CONFIG_REGULATOR_MAX8998=m +CONFIG_REGULATOR_MAX77693=m +CONFIG_REGULATOR_MAX77826=m +CONFIG_REGULATOR_MC13XXX_CORE=m +CONFIG_REGULATOR_MC13783=m +CONFIG_REGULATOR_MC13892=m +CONFIG_REGULATOR_MP8859=m +CONFIG_REGULATOR_MT6311=m +CONFIG_REGULATOR_MT6315=m +CONFIG_REGULATOR_MT6323=m +CONFIG_REGULATOR_MT6358=m +CONFIG_REGULATOR_MT6359=m +CONFIG_REGULATOR_MT6360=m +CONFIG_REGULATOR_MT6397=m +CONFIG_REGULATOR_PALMAS=m +CONFIG_REGULATOR_PCA9450=m +CONFIG_REGULATOR_PCAP=m +CONFIG_REGULATOR_PCF50633=m +CONFIG_REGULATOR_PV88060=m +CONFIG_REGULATOR_PV88080=m +CONFIG_REGULATOR_PV88090=m +CONFIG_REGULATOR_PWM=m +CONFIG_REGULATOR_QCOM_SPMI=m +CONFIG_REGULATOR_QCOM_USB_VBUS=m +CONFIG_REGULATOR_RASPBERRYPI_TOUCHSCREEN_ATTINY=m +CONFIG_REGULATOR_RC5T583=m +CONFIG_REGULATOR_RT4801=m +CONFIG_REGULATOR_RT4831=m +CONFIG_REGULATOR_RT5033=m +CONFIG_REGULATOR_RT6160=m +CONFIG_REGULATOR_RT6245=m +CONFIG_REGULATOR_RTQ2134=m +CONFIG_REGULATOR_RTMV20=m +CONFIG_REGULATOR_RTQ6752=m +CONFIG_REGULATOR_SKY81452=m +CONFIG_REGULATOR_SLG51000=m +CONFIG_REGULATOR_TPS51632=m +CONFIG_REGULATOR_TPS6105X=m +CONFIG_REGULATOR_TPS62360=m +CONFIG_REGULATOR_TPS65023=m +CONFIG_REGULATOR_TPS6507X=m +CONFIG_REGULATOR_TPS65086=m +CONFIG_REGULATOR_TPS65090=m +CONFIG_REGULATOR_TPS65132=m +CONFIG_REGULATOR_TPS6524X=m +CONFIG_REGULATOR_TPS6586X=m +CONFIG_REGULATOR_TPS65910=m +CONFIG_REGULATOR_TPS65912=m +CONFIG_REGULATOR_TWL4030=m +CONFIG_REGULATOR_WM831X=m +CONFIG_REGULATOR_WM8350=m +CONFIG_REGULATOR_WM8400=m +CONFIG_REGULATOR_WM8994=m +CONFIG_REGULATOR_QCOM_LABIBB=m +CONFIG_RC_CORE=m +CONFIG_RC_MAP=m +CONFIG_LIRC=y +CONFIG_RC_DECODERS=y +CONFIG_IR_NEC_DECODER=m +CONFIG_IR_RC5_DECODER=m +CONFIG_IR_RC6_DECODER=m +CONFIG_IR_JVC_DECODER=m +CONFIG_IR_SONY_DECODER=m +CONFIG_IR_SANYO_DECODER=m +CONFIG_IR_SHARP_DECODER=m +CONFIG_IR_MCE_KBD_DECODER=m +CONFIG_IR_XMP_DECODER=m +CONFIG_IR_IMON_DECODER=m +CONFIG_IR_RCMM_DECODER=m +CONFIG_RC_DEVICES=y +CONFIG_RC_ATI_REMOTE=m +CONFIG_IR_ENE=m +CONFIG_IR_IMON=m +CONFIG_IR_IMON_RAW=m +CONFIG_IR_MCEUSB=m +CONFIG_IR_ITE_CIR=m +CONFIG_IR_FINTEK=m +CONFIG_IR_NUVOTON=m +CONFIG_IR_REDRAT3=m +CONFIG_IR_STREAMZAP=m +CONFIG_IR_WINBOND_CIR=m +CONFIG_IR_IGORPLUGUSB=m +CONFIG_IR_IGUANA=m +CONFIG_IR_TTUSBIR=m +CONFIG_RC_LOOPBACK=m +CONFIG_IR_SERIAL=m +CONFIG_IR_SERIAL_TRANSMITTER=y +CONFIG_RC_XBOX_DVD=m +CONFIG_IR_TOY=m +CONFIG_CEC_CORE=m +CONFIG_CEC_NOTIFIER=y +CONFIG_CEC_PIN=y + +# +# CEC support +# +CONFIG_MEDIA_CEC_RC=y +# CONFIG_CEC_PIN_ERROR_INJ is not set +CONFIG_MEDIA_CEC_SUPPORT=y +CONFIG_CEC_CH7322=m +CONFIG_CEC_CROS_EC=m +CONFIG_CEC_GPIO=m +CONFIG_CEC_SECO=m +CONFIG_CEC_SECO_RC=y +CONFIG_USB_PULSE8_CEC=m +CONFIG_USB_RAINSHADOW_CEC=m +# end of CEC support + +CONFIG_MEDIA_SUPPORT=m +# CONFIG_MEDIA_SUPPORT_FILTER is not set +CONFIG_MEDIA_SUBDRV_AUTOSELECT=y + +# +# Media device types +# +CONFIG_MEDIA_CAMERA_SUPPORT=y +CONFIG_MEDIA_ANALOG_TV_SUPPORT=y +CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y +CONFIG_MEDIA_RADIO_SUPPORT=y +CONFIG_MEDIA_SDR_SUPPORT=y +CONFIG_MEDIA_PLATFORM_SUPPORT=y +CONFIG_MEDIA_TEST_SUPPORT=y +# end of Media device types + +# +# Media core support +# +CONFIG_VIDEO_DEV=m +CONFIG_MEDIA_CONTROLLER=y +CONFIG_DVB_CORE=m +# end of Media core support + +# +# Video4Linux options +# +CONFIG_VIDEO_V4L2=m +CONFIG_VIDEO_V4L2_I2C=y +CONFIG_VIDEO_V4L2_SUBDEV_API=y +# CONFIG_VIDEO_ADV_DEBUG is not set +# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set +CONFIG_VIDEO_TUNER=m +CONFIG_V4L2_MEM2MEM_DEV=m +CONFIG_V4L2_FLASH_LED_CLASS=m +CONFIG_V4L2_FWNODE=m +CONFIG_V4L2_ASYNC=m +CONFIG_VIDEOBUF_GEN=m +CONFIG_VIDEOBUF_DMA_SG=m +CONFIG_VIDEOBUF_VMALLOC=m +# end of Video4Linux options + +# +# Media controller options +# +CONFIG_MEDIA_CONTROLLER_DVB=y +CONFIG_MEDIA_CONTROLLER_REQUEST_API=y +# end of Media controller options + +# +# Digital TV options +# +# CONFIG_DVB_MMAP is not set +CONFIG_DVB_NET=y +CONFIG_DVB_MAX_ADAPTERS=8 +CONFIG_DVB_DYNAMIC_MINORS=y +# CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set +# CONFIG_DVB_ULE_DEBUG is not set +# end of Digital TV options + +# +# Media drivers +# +CONFIG_MEDIA_USB_SUPPORT=y + +# +# Webcam devices +# +CONFIG_USB_VIDEO_CLASS=m +CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y +CONFIG_USB_GSPCA=m +CONFIG_USB_M5602=m +CONFIG_USB_STV06XX=m +CONFIG_USB_GL860=m +CONFIG_USB_GSPCA_BENQ=m +CONFIG_USB_GSPCA_CONEX=m +CONFIG_USB_GSPCA_CPIA1=m +CONFIG_USB_GSPCA_DTCS033=m +CONFIG_USB_GSPCA_ETOMS=m +CONFIG_USB_GSPCA_FINEPIX=m +CONFIG_USB_GSPCA_JEILINJ=m +CONFIG_USB_GSPCA_JL2005BCD=m +CONFIG_USB_GSPCA_KINECT=m +CONFIG_USB_GSPCA_KONICA=m +CONFIG_USB_GSPCA_MARS=m +CONFIG_USB_GSPCA_MR97310A=m +CONFIG_USB_GSPCA_NW80X=m +CONFIG_USB_GSPCA_OV519=m +CONFIG_USB_GSPCA_OV534=m +CONFIG_USB_GSPCA_OV534_9=m +CONFIG_USB_GSPCA_PAC207=m +CONFIG_USB_GSPCA_PAC7302=m +CONFIG_USB_GSPCA_PAC7311=m +CONFIG_USB_GSPCA_SE401=m +CONFIG_USB_GSPCA_SN9C2028=m +CONFIG_USB_GSPCA_SN9C20X=m +CONFIG_USB_GSPCA_SONIXB=m +CONFIG_USB_GSPCA_SONIXJ=m +CONFIG_USB_GSPCA_SPCA500=m +CONFIG_USB_GSPCA_SPCA501=m +CONFIG_USB_GSPCA_SPCA505=m +CONFIG_USB_GSPCA_SPCA506=m +CONFIG_USB_GSPCA_SPCA508=m +CONFIG_USB_GSPCA_SPCA561=m +CONFIG_USB_GSPCA_SPCA1528=m +CONFIG_USB_GSPCA_SQ905=m +CONFIG_USB_GSPCA_SQ905C=m +CONFIG_USB_GSPCA_SQ930X=m +CONFIG_USB_GSPCA_STK014=m +CONFIG_USB_GSPCA_STK1135=m +CONFIG_USB_GSPCA_STV0680=m +CONFIG_USB_GSPCA_SUNPLUS=m +CONFIG_USB_GSPCA_T613=m +CONFIG_USB_GSPCA_TOPRO=m +CONFIG_USB_GSPCA_TOUPTEK=m +CONFIG_USB_GSPCA_TV8532=m +CONFIG_USB_GSPCA_VC032X=m +CONFIG_USB_GSPCA_VICAM=m +CONFIG_USB_GSPCA_XIRLINK_CIT=m +CONFIG_USB_GSPCA_ZC3XX=m +CONFIG_USB_PWC=m +# CONFIG_USB_PWC_DEBUG is not set +CONFIG_USB_PWC_INPUT_EVDEV=y +CONFIG_VIDEO_CPIA2=m +CONFIG_USB_ZR364XX=m +CONFIG_USB_STKWEBCAM=m +CONFIG_USB_S2255=m +CONFIG_VIDEO_USBTV=m + +# +# Analog TV USB devices +# +CONFIG_VIDEO_PVRUSB2=m +CONFIG_VIDEO_PVRUSB2_SYSFS=y +CONFIG_VIDEO_PVRUSB2_DVB=y +# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set +CONFIG_VIDEO_HDPVR=m +CONFIG_VIDEO_STK1160_COMMON=m +CONFIG_VIDEO_STK1160=m +CONFIG_VIDEO_GO7007=m +CONFIG_VIDEO_GO7007_USB=m +CONFIG_VIDEO_GO7007_LOADER=m +CONFIG_VIDEO_GO7007_USB_S2250_BOARD=m + +# +# Analog/digital TV USB devices +# +CONFIG_VIDEO_AU0828=m +CONFIG_VIDEO_AU0828_V4L2=y +CONFIG_VIDEO_AU0828_RC=y +CONFIG_VIDEO_CX231XX=m +CONFIG_VIDEO_CX231XX_RC=y +CONFIG_VIDEO_CX231XX_ALSA=m +CONFIG_VIDEO_CX231XX_DVB=m +CONFIG_VIDEO_TM6000=m +CONFIG_VIDEO_TM6000_ALSA=m +CONFIG_VIDEO_TM6000_DVB=m + +# +# Digital TV USB devices +# +CONFIG_DVB_USB=m +# CONFIG_DVB_USB_DEBUG is not set +CONFIG_DVB_USB_DIB3000MC=m +CONFIG_DVB_USB_A800=m +CONFIG_DVB_USB_DIBUSB_MB=m +# CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set +CONFIG_DVB_USB_DIBUSB_MC=m +CONFIG_DVB_USB_DIB0700=m +CONFIG_DVB_USB_UMT_010=m +CONFIG_DVB_USB_CXUSB=m +CONFIG_DVB_USB_CXUSB_ANALOG=y +CONFIG_DVB_USB_M920X=m +CONFIG_DVB_USB_DIGITV=m +CONFIG_DVB_USB_VP7045=m +CONFIG_DVB_USB_VP702X=m +CONFIG_DVB_USB_GP8PSK=m +CONFIG_DVB_USB_NOVA_T_USB2=m +CONFIG_DVB_USB_TTUSB2=m +CONFIG_DVB_USB_DTT200U=m +CONFIG_DVB_USB_OPERA1=m +CONFIG_DVB_USB_AF9005=m +CONFIG_DVB_USB_AF9005_REMOTE=m +CONFIG_DVB_USB_PCTV452E=m +CONFIG_DVB_USB_DW2102=m +CONFIG_DVB_USB_CINERGY_T2=m +CONFIG_DVB_USB_DTV5100=m +CONFIG_DVB_USB_AZ6027=m +CONFIG_DVB_USB_TECHNISAT_USB2=m +CONFIG_DVB_USB_V2=m +CONFIG_DVB_USB_AF9015=m +CONFIG_DVB_USB_AF9035=m +CONFIG_DVB_USB_ANYSEE=m +CONFIG_DVB_USB_AU6610=m +CONFIG_DVB_USB_AZ6007=m +CONFIG_DVB_USB_CE6230=m +CONFIG_DVB_USB_EC168=m +CONFIG_DVB_USB_GL861=m +CONFIG_DVB_USB_LME2510=m +CONFIG_DVB_USB_MXL111SF=m +CONFIG_DVB_USB_RTL28XXU=m +CONFIG_DVB_USB_DVBSKY=m +CONFIG_DVB_USB_ZD1301=m +CONFIG_DVB_TTUSB_BUDGET=m +CONFIG_DVB_TTUSB_DEC=m +CONFIG_SMS_USB_DRV=m +CONFIG_DVB_B2C2_FLEXCOP_USB=m +# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not set +CONFIG_DVB_AS102=m + +# +# Webcam, TV (analog/digital) USB devices +# +CONFIG_VIDEO_EM28XX=m +CONFIG_VIDEO_EM28XX_V4L2=m +CONFIG_VIDEO_EM28XX_ALSA=m +CONFIG_VIDEO_EM28XX_DVB=m +CONFIG_VIDEO_EM28XX_RC=m + +# +# Software defined radio USB devices +# +CONFIG_USB_AIRSPY=m +CONFIG_USB_HACKRF=m +CONFIG_USB_MSI2500=m +CONFIG_MEDIA_PCI_SUPPORT=y + +# +# Media capture support +# +CONFIG_VIDEO_MEYE=m +CONFIG_VIDEO_SOLO6X10=m +CONFIG_VIDEO_TW5864=m +CONFIG_VIDEO_TW68=m +CONFIG_VIDEO_TW686X=m + +# +# Media capture/analog TV support +# +CONFIG_VIDEO_IVTV=m +CONFIG_VIDEO_IVTV_ALSA=m +CONFIG_VIDEO_FB_IVTV=m +# CONFIG_VIDEO_FB_IVTV_FORCE_PAT is not set +CONFIG_VIDEO_HEXIUM_GEMINI=m +CONFIG_VIDEO_HEXIUM_ORION=m +CONFIG_VIDEO_MXB=m +CONFIG_VIDEO_DT3155=m + +# +# Media capture/analog/hybrid TV support +# +CONFIG_VIDEO_CX18=m +CONFIG_VIDEO_CX18_ALSA=m +CONFIG_VIDEO_CX23885=m +CONFIG_MEDIA_ALTERA_CI=m +CONFIG_VIDEO_CX25821=m +CONFIG_VIDEO_CX25821_ALSA=m +CONFIG_VIDEO_CX88=m +CONFIG_VIDEO_CX88_ALSA=m +CONFIG_VIDEO_CX88_BLACKBIRD=m +CONFIG_VIDEO_CX88_DVB=m +CONFIG_VIDEO_CX88_ENABLE_VP3054=y +CONFIG_VIDEO_CX88_VP3054=m +CONFIG_VIDEO_CX88_MPEG=m +CONFIG_VIDEO_BT848=m +CONFIG_DVB_BT8XX=m +CONFIG_VIDEO_SAA7134=m +CONFIG_VIDEO_SAA7134_ALSA=m +CONFIG_VIDEO_SAA7134_RC=y +CONFIG_VIDEO_SAA7134_DVB=m +CONFIG_VIDEO_SAA7134_GO7007=m +CONFIG_VIDEO_SAA7164=m +CONFIG_VIDEO_COBALT=m + +# +# Media digital TV PCI Adapters +# +CONFIG_DVB_BUDGET_CORE=m +CONFIG_DVB_BUDGET=m +CONFIG_DVB_BUDGET_CI=m +CONFIG_DVB_BUDGET_AV=m +CONFIG_DVB_B2C2_FLEXCOP_PCI=m +# CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG is not set +CONFIG_DVB_PLUTO2=m +CONFIG_DVB_DM1105=m +CONFIG_DVB_PT1=m +CONFIG_DVB_PT3=m +CONFIG_MANTIS_CORE=m +CONFIG_DVB_MANTIS=m +CONFIG_DVB_HOPPER=m +CONFIG_DVB_NGENE=m +CONFIG_DVB_DDBRIDGE=m +# CONFIG_DVB_DDBRIDGE_MSIENABLE is not set +CONFIG_DVB_SMIPCIE=m +CONFIG_DVB_NETUP_UNIDVB=m +CONFIG_VIDEO_IPU3_CIO2=m +CONFIG_CIO2_BRIDGE=y +CONFIG_RADIO_ADAPTERS=y +CONFIG_RADIO_TEA575X=m +CONFIG_RADIO_SI470X=m +CONFIG_USB_SI470X=m +CONFIG_I2C_SI470X=m +CONFIG_RADIO_SI4713=m +CONFIG_USB_SI4713=m +CONFIG_PLATFORM_SI4713=m +CONFIG_I2C_SI4713=m +CONFIG_RADIO_SI476X=m +CONFIG_USB_MR800=m +CONFIG_USB_DSBR=m +CONFIG_RADIO_MAXIRADIO=m +CONFIG_RADIO_SHARK=m +CONFIG_RADIO_SHARK2=m +CONFIG_USB_KEENE=m +CONFIG_USB_RAREMONO=m +CONFIG_USB_MA901=m +CONFIG_RADIO_TEA5764=m +CONFIG_RADIO_SAA7706H=m +CONFIG_RADIO_TEF6862=m +CONFIG_RADIO_WL1273=m +CONFIG_RADIO_WL128X=m +CONFIG_MEDIA_COMMON_OPTIONS=y + +# +# common driver options +# +CONFIG_VIDEO_CX2341X=m +CONFIG_VIDEO_TVEEPROM=m +CONFIG_TTPCI_EEPROM=m +CONFIG_CYPRESS_FIRMWARE=m +CONFIG_VIDEOBUF2_CORE=m +CONFIG_VIDEOBUF2_V4L2=m +CONFIG_VIDEOBUF2_MEMOPS=m +CONFIG_VIDEOBUF2_DMA_CONTIG=m +CONFIG_VIDEOBUF2_VMALLOC=m +CONFIG_VIDEOBUF2_DMA_SG=m +CONFIG_VIDEOBUF2_DVB=m +CONFIG_DVB_B2C2_FLEXCOP=m +CONFIG_VIDEO_SAA7146=m +CONFIG_VIDEO_SAA7146_VV=m +CONFIG_SMS_SIANO_MDTV=m +CONFIG_SMS_SIANO_RC=y +CONFIG_SMS_SIANO_DEBUGFS=y +CONFIG_VIDEO_V4L2_TPG=m +CONFIG_V4L_PLATFORM_DRIVERS=y +CONFIG_VIDEO_CAFE_CCIC=m +CONFIG_VIDEO_VIA_CAMERA=m +CONFIG_VIDEO_CADENCE=y +CONFIG_VIDEO_CADENCE_CSI2RX=m +CONFIG_VIDEO_CADENCE_CSI2TX=m +CONFIG_VIDEO_ASPEED=m +CONFIG_V4L_MEM2MEM_DRIVERS=y +CONFIG_VIDEO_MEM2MEM_DEINTERLACE=m +CONFIG_DVB_PLATFORM_DRIVERS=y +CONFIG_SDR_PLATFORM_DRIVERS=y + +# +# MMC/SDIO DVB adapters +# +CONFIG_SMS_SDIO_DRV=m +CONFIG_V4L_TEST_DRIVERS=y +# CONFIG_VIDEO_VIMC is not set +CONFIG_VIDEO_VIVID=m +CONFIG_VIDEO_VIVID_CEC=y +CONFIG_VIDEO_VIVID_MAX_DEVS=64 +CONFIG_VIDEO_VIM2M=m +CONFIG_VIDEO_VICODEC=m +# CONFIG_DVB_TEST_DRIVERS is not set + +# +# FireWire (IEEE 1394) Adapters +# +CONFIG_DVB_FIREDTV=m +CONFIG_DVB_FIREDTV_INPUT=y +# end of Media drivers + +# +# Media ancillary drivers +# +CONFIG_MEDIA_ATTACH=y + +# +# IR I2C driver auto-selected by 'Autoselect ancillary drivers' +# +CONFIG_VIDEO_IR_I2C=m + +# +# Audio decoders, processors and mixers +# +CONFIG_VIDEO_TVAUDIO=m +CONFIG_VIDEO_TDA7432=m +CONFIG_VIDEO_TDA9840=m +CONFIG_VIDEO_TDA1997X=m +CONFIG_VIDEO_TEA6415C=m +CONFIG_VIDEO_TEA6420=m +CONFIG_VIDEO_MSP3400=m +CONFIG_VIDEO_CS3308=m +CONFIG_VIDEO_CS5345=m +CONFIG_VIDEO_CS53L32A=m +CONFIG_VIDEO_TLV320AIC23B=m +CONFIG_VIDEO_UDA1342=m +CONFIG_VIDEO_WM8775=m +CONFIG_VIDEO_WM8739=m +CONFIG_VIDEO_VP27SMPX=m +CONFIG_VIDEO_SONY_BTF_MPX=m +# end of Audio decoders, processors and mixers + +# +# RDS decoders +# +CONFIG_VIDEO_SAA6588=m +# end of RDS decoders + +# +# Video decoders +# +CONFIG_VIDEO_ADV7180=m +CONFIG_VIDEO_ADV7183=m +CONFIG_VIDEO_ADV7604=m +CONFIG_VIDEO_ADV7604_CEC=y +CONFIG_VIDEO_ADV7842=m +CONFIG_VIDEO_ADV7842_CEC=y +CONFIG_VIDEO_BT819=m +CONFIG_VIDEO_BT856=m +CONFIG_VIDEO_BT866=m +CONFIG_VIDEO_KS0127=m +CONFIG_VIDEO_ML86V7667=m +CONFIG_VIDEO_SAA7110=m +CONFIG_VIDEO_SAA711X=m +CONFIG_VIDEO_TC358743=m +CONFIG_VIDEO_TC358743_CEC=y +CONFIG_VIDEO_TVP514X=m +CONFIG_VIDEO_TVP5150=m +CONFIG_VIDEO_TVP7002=m +CONFIG_VIDEO_TW2804=m +CONFIG_VIDEO_TW9903=m +CONFIG_VIDEO_TW9906=m +CONFIG_VIDEO_TW9910=m +CONFIG_VIDEO_VPX3220=m + +# +# Video and audio decoders +# +CONFIG_VIDEO_SAA717X=m +CONFIG_VIDEO_CX25840=m +# end of Video decoders + +# +# Video encoders +# +CONFIG_VIDEO_SAA7127=m +CONFIG_VIDEO_SAA7185=m +CONFIG_VIDEO_ADV7170=m +CONFIG_VIDEO_ADV7175=m +CONFIG_VIDEO_ADV7343=m +CONFIG_VIDEO_ADV7393=m +CONFIG_VIDEO_ADV7511=m +CONFIG_VIDEO_ADV7511_CEC=y +CONFIG_VIDEO_AD9389B=m +CONFIG_VIDEO_AK881X=m +CONFIG_VIDEO_THS8200=m +# end of Video encoders + +# +# Video improvement chips +# +CONFIG_VIDEO_UPD64031A=m +CONFIG_VIDEO_UPD64083=m +# end of Video improvement chips + +# +# Audio/Video compression chips +# +CONFIG_VIDEO_SAA6752HS=m +# end of Audio/Video compression chips + +# +# SDR tuner chips +# +CONFIG_SDR_MAX2175=m +# end of SDR tuner chips + +# +# Miscellaneous helper chips +# +CONFIG_VIDEO_THS7303=m +CONFIG_VIDEO_M52790=m +CONFIG_VIDEO_I2C=m +CONFIG_VIDEO_ST_MIPID02=m +# end of Miscellaneous helper chips + +# +# Camera sensor devices +# +CONFIG_VIDEO_APTINA_PLL=m +CONFIG_VIDEO_CCS_PLL=m +CONFIG_VIDEO_HI556=m +CONFIG_VIDEO_HI846=m +CONFIG_VIDEO_IMX208=m +CONFIG_VIDEO_IMX214=m +CONFIG_VIDEO_IMX219=m +CONFIG_VIDEO_IMX258=m +CONFIG_VIDEO_IMX274=m +CONFIG_VIDEO_IMX290=m +CONFIG_VIDEO_IMX319=m +CONFIG_VIDEO_IMX355=m +CONFIG_VIDEO_OV02A10=m +CONFIG_VIDEO_OV2640=m +CONFIG_VIDEO_OV2659=m +CONFIG_VIDEO_OV2680=m +CONFIG_VIDEO_OV2685=m +CONFIG_VIDEO_OV2740=m +CONFIG_VIDEO_OV5647=m +CONFIG_VIDEO_OV5648=m +CONFIG_VIDEO_OV6650=m +CONFIG_VIDEO_OV5670=m +CONFIG_VIDEO_OV5675=m +CONFIG_VIDEO_OV5695=m +CONFIG_VIDEO_OV7251=m +CONFIG_VIDEO_OV772X=m +CONFIG_VIDEO_OV7640=m +CONFIG_VIDEO_OV7670=m +CONFIG_VIDEO_OV7740=m +CONFIG_VIDEO_OV8856=m +CONFIG_VIDEO_OV8865=m +CONFIG_VIDEO_OV9640=m +CONFIG_VIDEO_OV9650=m +CONFIG_VIDEO_OV9734=m +CONFIG_VIDEO_OV13858=m +CONFIG_VIDEO_OV13B10=m +CONFIG_VIDEO_VS6624=m +CONFIG_VIDEO_MT9M001=m +CONFIG_VIDEO_MT9M032=m +CONFIG_VIDEO_MT9M111=m +CONFIG_VIDEO_MT9P031=m +CONFIG_VIDEO_MT9T001=m +CONFIG_VIDEO_MT9T112=m +CONFIG_VIDEO_MT9V011=m +CONFIG_VIDEO_MT9V032=m +CONFIG_VIDEO_MT9V111=m +CONFIG_VIDEO_SR030PC30=m +CONFIG_VIDEO_NOON010PC30=m +CONFIG_VIDEO_M5MOLS=m +CONFIG_VIDEO_MAX9271_LIB=m +CONFIG_VIDEO_RDACM20=m +CONFIG_VIDEO_RDACM21=m +CONFIG_VIDEO_RJ54N1=m +CONFIG_VIDEO_S5K6AA=m +CONFIG_VIDEO_S5K6A3=m +CONFIG_VIDEO_S5K4ECGX=m +CONFIG_VIDEO_S5K5BAF=m +CONFIG_VIDEO_CCS=m +CONFIG_VIDEO_ET8EK8=m +CONFIG_VIDEO_S5C73M3=m +# end of Camera sensor devices + +# +# Lens drivers +# +CONFIG_VIDEO_AD5820=m +CONFIG_VIDEO_AK7375=m +CONFIG_VIDEO_DW9714=m +CONFIG_VIDEO_DW9768=m +CONFIG_VIDEO_DW9807_VCM=m +# end of Lens drivers + +# +# Flash devices +# +CONFIG_VIDEO_ADP1653=m +CONFIG_VIDEO_LM3560=m +CONFIG_VIDEO_LM3646=m +# end of Flash devices + +# +# SPI helper chips +# +CONFIG_VIDEO_GS1662=m +# end of SPI helper chips + +# +# Media SPI Adapters +# +CONFIG_CXD2880_SPI_DRV=m +# end of Media SPI Adapters + +CONFIG_MEDIA_TUNER=m + +# +# Customize TV tuners +# +CONFIG_MEDIA_TUNER_SIMPLE=m +CONFIG_MEDIA_TUNER_TDA18250=m +CONFIG_MEDIA_TUNER_TDA8290=m +CONFIG_MEDIA_TUNER_TDA827X=m +CONFIG_MEDIA_TUNER_TDA18271=m +CONFIG_MEDIA_TUNER_TDA9887=m +CONFIG_MEDIA_TUNER_TEA5761=m +CONFIG_MEDIA_TUNER_TEA5767=m +CONFIG_MEDIA_TUNER_MSI001=m +CONFIG_MEDIA_TUNER_MT20XX=m +CONFIG_MEDIA_TUNER_MT2060=m +CONFIG_MEDIA_TUNER_MT2063=m +CONFIG_MEDIA_TUNER_MT2266=m +CONFIG_MEDIA_TUNER_MT2131=m +CONFIG_MEDIA_TUNER_QT1010=m +CONFIG_MEDIA_TUNER_XC2028=m +CONFIG_MEDIA_TUNER_XC5000=m +CONFIG_MEDIA_TUNER_XC4000=m +CONFIG_MEDIA_TUNER_MXL5005S=m +CONFIG_MEDIA_TUNER_MXL5007T=m +CONFIG_MEDIA_TUNER_MC44S803=m +CONFIG_MEDIA_TUNER_MAX2165=m +CONFIG_MEDIA_TUNER_TDA18218=m +CONFIG_MEDIA_TUNER_FC0011=m +CONFIG_MEDIA_TUNER_FC0012=m +CONFIG_MEDIA_TUNER_FC0013=m +CONFIG_MEDIA_TUNER_TDA18212=m +CONFIG_MEDIA_TUNER_E4000=m +CONFIG_MEDIA_TUNER_FC2580=m +CONFIG_MEDIA_TUNER_M88RS6000T=m +CONFIG_MEDIA_TUNER_TUA9001=m +CONFIG_MEDIA_TUNER_SI2157=m +CONFIG_MEDIA_TUNER_IT913X=m +CONFIG_MEDIA_TUNER_R820T=m +CONFIG_MEDIA_TUNER_MXL301RF=m +CONFIG_MEDIA_TUNER_QM1D1C0042=m +CONFIG_MEDIA_TUNER_QM1D1B0004=m +# end of Customize TV tuners + +# +# Customise DVB Frontends +# + +# +# Multistandard (satellite) frontends +# +CONFIG_DVB_STB0899=m +CONFIG_DVB_STB6100=m +CONFIG_DVB_STV090x=m +CONFIG_DVB_STV0910=m +CONFIG_DVB_STV6110x=m +CONFIG_DVB_STV6111=m +CONFIG_DVB_MXL5XX=m +CONFIG_DVB_M88DS3103=m + +# +# Multistandard (cable + terrestrial) frontends +# +CONFIG_DVB_DRXK=m +CONFIG_DVB_TDA18271C2DD=m +CONFIG_DVB_SI2165=m +CONFIG_DVB_MN88472=m +CONFIG_DVB_MN88473=m + +# +# DVB-S (satellite) frontends +# +CONFIG_DVB_CX24110=m +CONFIG_DVB_CX24123=m +CONFIG_DVB_MT312=m +CONFIG_DVB_ZL10036=m +CONFIG_DVB_ZL10039=m +CONFIG_DVB_S5H1420=m +CONFIG_DVB_STV0288=m +CONFIG_DVB_STB6000=m +CONFIG_DVB_STV0299=m +CONFIG_DVB_STV6110=m +CONFIG_DVB_STV0900=m +CONFIG_DVB_TDA8083=m +CONFIG_DVB_TDA10086=m +CONFIG_DVB_TDA8261=m +CONFIG_DVB_VES1X93=m +CONFIG_DVB_TUNER_ITD1000=m +CONFIG_DVB_TUNER_CX24113=m +CONFIG_DVB_TDA826X=m +CONFIG_DVB_TUA6100=m +CONFIG_DVB_CX24116=m +CONFIG_DVB_CX24117=m +CONFIG_DVB_CX24120=m +CONFIG_DVB_SI21XX=m +CONFIG_DVB_TS2020=m +CONFIG_DVB_DS3000=m +CONFIG_DVB_MB86A16=m +CONFIG_DVB_TDA10071=m + +# +# DVB-T (terrestrial) frontends +# +CONFIG_DVB_SP887X=m +CONFIG_DVB_CX22700=m +CONFIG_DVB_CX22702=m +CONFIG_DVB_S5H1432=m +CONFIG_DVB_DRXD=m +CONFIG_DVB_L64781=m +CONFIG_DVB_TDA1004X=m +CONFIG_DVB_NXT6000=m +CONFIG_DVB_MT352=m +CONFIG_DVB_ZL10353=m +CONFIG_DVB_DIB3000MB=m +CONFIG_DVB_DIB3000MC=m +CONFIG_DVB_DIB7000M=m +CONFIG_DVB_DIB7000P=m +CONFIG_DVB_DIB9000=m +CONFIG_DVB_TDA10048=m +CONFIG_DVB_AF9013=m +CONFIG_DVB_EC100=m +CONFIG_DVB_STV0367=m +CONFIG_DVB_CXD2820R=m +CONFIG_DVB_CXD2841ER=m +CONFIG_DVB_RTL2830=m +CONFIG_DVB_RTL2832=m +CONFIG_DVB_RTL2832_SDR=m +CONFIG_DVB_SI2168=m +CONFIG_DVB_AS102_FE=m +CONFIG_DVB_ZD1301_DEMOD=m +CONFIG_DVB_GP8PSK_FE=m +CONFIG_DVB_CXD2880=m + +# +# DVB-C (cable) frontends +# +CONFIG_DVB_VES1820=m +CONFIG_DVB_TDA10021=m +CONFIG_DVB_TDA10023=m +CONFIG_DVB_STV0297=m + +# +# ATSC (North American/Korean Terrestrial/Cable DTV) frontends +# +CONFIG_DVB_NXT200X=m +CONFIG_DVB_OR51211=m +CONFIG_DVB_OR51132=m +CONFIG_DVB_BCM3510=m +CONFIG_DVB_LGDT330X=m +CONFIG_DVB_LGDT3305=m +CONFIG_DVB_LGDT3306A=m +CONFIG_DVB_LG2160=m +CONFIG_DVB_S5H1409=m +CONFIG_DVB_AU8522=m +CONFIG_DVB_AU8522_DTV=m +CONFIG_DVB_AU8522_V4L=m +CONFIG_DVB_S5H1411=m +CONFIG_DVB_MXL692=m + +# +# ISDB-T (terrestrial) frontends +# +CONFIG_DVB_S921=m +CONFIG_DVB_DIB8000=m +CONFIG_DVB_MB86A20S=m + +# +# ISDB-S (satellite) & ISDB-T (terrestrial) frontends +# +CONFIG_DVB_TC90522=m +CONFIG_DVB_MN88443X=m + +# +# Digital terrestrial only tuners/PLL +# +CONFIG_DVB_PLL=m +CONFIG_DVB_TUNER_DIB0070=m +CONFIG_DVB_TUNER_DIB0090=m + +# +# SEC control devices for DVB-S +# +CONFIG_DVB_DRX39XYJ=m +CONFIG_DVB_LNBH25=m +CONFIG_DVB_LNBH29=m +CONFIG_DVB_LNBP21=m +CONFIG_DVB_LNBP22=m +CONFIG_DVB_ISL6405=m +CONFIG_DVB_ISL6421=m +CONFIG_DVB_ISL6423=m +CONFIG_DVB_A8293=m +CONFIG_DVB_LGS8GL5=m +CONFIG_DVB_LGS8GXX=m +CONFIG_DVB_ATBM8830=m +CONFIG_DVB_TDA665x=m +CONFIG_DVB_IX2505V=m +CONFIG_DVB_M88RS2000=m +CONFIG_DVB_AF9033=m +CONFIG_DVB_HORUS3A=m +CONFIG_DVB_ASCOT2E=m +CONFIG_DVB_HELENE=m + +# +# Common Interface (EN50221) controller drivers +# +CONFIG_DVB_CXD2099=m +CONFIG_DVB_SP2=m +# end of Customise DVB Frontends + +# +# Tools to develop new frontends +# +CONFIG_DVB_DUMMY_FE=m +# end of Media ancillary drivers + +# +# Graphics support +# +CONFIG_AGP=y +CONFIG_AGP_AMD64=y +CONFIG_AGP_INTEL=y +CONFIG_AGP_SIS=m +CONFIG_AGP_VIA=y +CONFIG_INTEL_GTT=y +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=16 +CONFIG_VGA_SWITCHEROO=y +CONFIG_DRM=m +CONFIG_DRM_MIPI_DBI=m +CONFIG_DRM_MIPI_DSI=y +# CONFIG_DRM_DP_AUX_CHARDEV is not set +# CONFIG_DRM_DEBUG_SELFTEST is not set +CONFIG_DRM_KMS_HELPER=m +# CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS is not set +# CONFIG_DRM_DEBUG_MODESET_LOCK is not set +CONFIG_DRM_FBDEV_EMULATION=y +CONFIG_DRM_FBDEV_OVERALLOC=100 +# CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM is not set +CONFIG_DRM_LOAD_EDID_FIRMWARE=y +# CONFIG_DRM_DP_CEC is not set +CONFIG_DRM_TTM=m +CONFIG_DRM_VRAM_HELPER=m +CONFIG_DRM_TTM_HELPER=m +CONFIG_DRM_GEM_CMA_HELPER=y +CONFIG_DRM_KMS_CMA_HELPER=y +CONFIG_DRM_GEM_SHMEM_HELPER=y +CONFIG_DRM_SCHED=m + +# +# I2C encoder or helper chips +# +CONFIG_DRM_I2C_CH7006=m +CONFIG_DRM_I2C_SIL164=m +CONFIG_DRM_I2C_NXP_TDA998X=m +CONFIG_DRM_I2C_NXP_TDA9950=m +# end of I2C encoder or helper chips + +# +# ARM devices +# +# end of ARM devices + +CONFIG_DRM_RADEON=m +# CONFIG_DRM_RADEON_USERPTR is not set +CONFIG_DRM_AMDGPU=m +# CONFIG_DRM_AMDGPU_SI is not set +# CONFIG_DRM_AMDGPU_CIK is not set +CONFIG_DRM_AMDGPU_USERPTR=y + +# +# ACP (Audio CoProcessor) Configuration +# +# CONFIG_DRM_AMD_ACP is not set +# end of ACP (Audio CoProcessor) Configuration + +# +# Display Engine Configuration +# +CONFIG_DRM_AMD_DC=y +CONFIG_DRM_AMD_DC_DCN=y +# CONFIG_DRM_AMD_DC_HDCP is not set +# CONFIG_DEBUG_KERNEL_DC is not set +CONFIG_DRM_AMD_SECURE_DISPLAY=y +# end of Display Engine Configuration + +# CONFIG_HSA_AMD is not set +CONFIG_DRM_NOUVEAU=m +# CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT is not set +CONFIG_NOUVEAU_DEBUG=5 +CONFIG_NOUVEAU_DEBUG_DEFAULT=3 +# CONFIG_NOUVEAU_DEBUG_MMU is not set +# CONFIG_NOUVEAU_DEBUG_PUSH is not set +CONFIG_DRM_NOUVEAU_BACKLIGHT=y +CONFIG_DRM_I915=m +CONFIG_DRM_I915_FORCE_PROBE="" +CONFIG_DRM_I915_CAPTURE_ERROR=y +CONFIG_DRM_I915_COMPRESS_ERROR=y +CONFIG_DRM_I915_USERPTR=y +# CONFIG_DRM_I915_GVT is not set + +# +# drm/i915 Debugging +# +# CONFIG_DRM_I915_WERROR is not set +# CONFIG_DRM_I915_DEBUG is not set +# CONFIG_DRM_I915_DEBUG_MMIO is not set +# CONFIG_DRM_I915_SW_FENCE_DEBUG_OBJECTS is not set +# CONFIG_DRM_I915_SW_FENCE_CHECK_DAG is not set +# CONFIG_DRM_I915_DEBUG_GUC is not set +# CONFIG_DRM_I915_SELFTEST is not set +# CONFIG_DRM_I915_LOW_LEVEL_TRACEPOINTS is not set +# CONFIG_DRM_I915_DEBUG_VBLANK_EVADE is not set +# CONFIG_DRM_I915_DEBUG_RUNTIME_PM is not set +# end of drm/i915 Debugging + +# +# drm/i915 Profile Guided Optimisation +# +CONFIG_DRM_I915_REQUEST_TIMEOUT=20000 +CONFIG_DRM_I915_FENCE_TIMEOUT=10000 +CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND=250 +CONFIG_DRM_I915_HEARTBEAT_INTERVAL=2500 +CONFIG_DRM_I915_PREEMPT_TIMEOUT=640 +CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT=8000 +CONFIG_DRM_I915_STOP_TIMEOUT=100 +CONFIG_DRM_I915_TIMESLICE_DURATION=1 +# end of drm/i915 Profile Guided Optimisation + +CONFIG_DRM_VGEM=m +# CONFIG_DRM_VKMS is not set +CONFIG_DRM_VMWGFX=m +CONFIG_DRM_VMWGFX_FBCON=y +# CONFIG_DRM_VMWGFX_MKSSTATS is not set +CONFIG_DRM_GMA500=m +CONFIG_DRM_UDL=m +CONFIG_DRM_AST=m +# CONFIG_DRM_MGAG200 is not set +CONFIG_DRM_QXL=m +CONFIG_DRM_VIRTIO_GPU=m +CONFIG_DRM_PANEL=y + +# +# Display Panels +# +# CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN is not set +CONFIG_DRM_PANEL_WIDECHIPS_WS2401=m +# end of Display Panels + +CONFIG_DRM_BRIDGE=y +CONFIG_DRM_PANEL_BRIDGE=y + +# +# Display Interface Bridges +# +CONFIG_DRM_ANALOGIX_ANX78XX=m +CONFIG_DRM_ANALOGIX_DP=m +# end of Display Interface Bridges + +# CONFIG_DRM_ETNAVIV is not set +CONFIG_DRM_BOCHS=m +CONFIG_DRM_CIRRUS_QEMU=m +CONFIG_DRM_GM12U320=m +# CONFIG_DRM_SIMPLEDRM is not set +CONFIG_TINYDRM_HX8357D=m +CONFIG_TINYDRM_ILI9225=m +CONFIG_TINYDRM_ILI9341=m +CONFIG_TINYDRM_ILI9486=m +CONFIG_TINYDRM_MI0283QT=m +CONFIG_TINYDRM_REPAPER=m +CONFIG_TINYDRM_ST7586=m +CONFIG_TINYDRM_ST7735R=m +CONFIG_DRM_XEN=y +CONFIG_DRM_XEN_FRONTEND=m +CONFIG_DRM_VBOXVIDEO=m +CONFIG_DRM_GUD=m +CONFIG_DRM_HYPERV=m +# CONFIG_DRM_LEGACY is not set +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y + +# +# Frame buffer Devices +# +CONFIG_FB_CMDLINE=y +CONFIG_FB_NOTIFY=y +CONFIG_FB=y +CONFIG_FIRMWARE_EDID=y +CONFIG_FB_DDC=m +CONFIG_FB_BOOT_VESA_SUPPORT=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FB_SYS_FILLRECT=m +CONFIG_FB_SYS_COPYAREA=m +CONFIG_FB_SYS_IMAGEBLIT=m +# CONFIG_FB_FOREIGN_ENDIAN is not set +CONFIG_FB_SYS_FOPS=m +CONFIG_FB_DEFERRED_IO=y +CONFIG_FB_HECUBA=m +CONFIG_FB_SVGALIB=m +CONFIG_FB_BACKLIGHT=m +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_TILEBLITTING=y + +# +# Frame buffer hardware drivers +# +CONFIG_FB_CIRRUS=m +CONFIG_FB_PM2=m +CONFIG_FB_PM2_FIFO_DISCONNECT=y +CONFIG_FB_CYBER2000=m +CONFIG_FB_CYBER2000_DDC=y +CONFIG_FB_ARC=m +CONFIG_FB_ASILIANT=y +CONFIG_FB_IMSTT=y +CONFIG_FB_VGA16=m +CONFIG_FB_UVESA=m +CONFIG_FB_VESA=y +CONFIG_FB_EFI=y +CONFIG_FB_N411=m +CONFIG_FB_HGA=m +CONFIG_FB_OPENCORES=m +CONFIG_FB_S1D13XXX=m +# CONFIG_FB_NVIDIA is not set +CONFIG_FB_RIVA=m +CONFIG_FB_RIVA_I2C=y +# CONFIG_FB_RIVA_DEBUG is not set +CONFIG_FB_RIVA_BACKLIGHT=y +CONFIG_FB_I740=m +CONFIG_FB_LE80578=m +CONFIG_FB_CARILLO_RANCH=m +CONFIG_FB_INTEL=m +# CONFIG_FB_INTEL_DEBUG is not set +CONFIG_FB_INTEL_I2C=y +CONFIG_FB_MATROX=m +CONFIG_FB_MATROX_MILLENIUM=y +CONFIG_FB_MATROX_MYSTIQUE=y +CONFIG_FB_MATROX_G=y +CONFIG_FB_MATROX_I2C=m +CONFIG_FB_MATROX_MAVEN=m +CONFIG_FB_RADEON=m +CONFIG_FB_RADEON_I2C=y +CONFIG_FB_RADEON_BACKLIGHT=y +# CONFIG_FB_RADEON_DEBUG is not set +CONFIG_FB_ATY128=m +CONFIG_FB_ATY128_BACKLIGHT=y +CONFIG_FB_ATY=m +CONFIG_FB_ATY_CT=y +# CONFIG_FB_ATY_GENERIC_LCD is not set +CONFIG_FB_ATY_GX=y +CONFIG_FB_ATY_BACKLIGHT=y +CONFIG_FB_S3=m +CONFIG_FB_S3_DDC=y +CONFIG_FB_SAVAGE=m +CONFIG_FB_SAVAGE_I2C=y +# CONFIG_FB_SAVAGE_ACCEL is not set +CONFIG_FB_SIS=m +CONFIG_FB_SIS_300=y +CONFIG_FB_SIS_315=y +CONFIG_FB_VIA=m +# CONFIG_FB_VIA_DIRECT_PROCFS is not set +CONFIG_FB_VIA_X_COMPATIBILITY=y +CONFIG_FB_NEOMAGIC=m +CONFIG_FB_KYRO=m +CONFIG_FB_3DFX=m +# CONFIG_FB_3DFX_ACCEL is not set +# CONFIG_FB_3DFX_I2C is not set +CONFIG_FB_VOODOO1=m +CONFIG_FB_VT8623=m +CONFIG_FB_TRIDENT=m +CONFIG_FB_ARK=m +CONFIG_FB_PM3=m +CONFIG_FB_CARMINE=m +CONFIG_FB_CARMINE_DRAM_EVAL=y +# CONFIG_CARMINE_DRAM_CUSTOM is not set +CONFIG_FB_SM501=m +CONFIG_FB_SMSCUFX=m +CONFIG_FB_UDL=m +CONFIG_FB_IBM_GXT4500=m +# CONFIG_FB_VIRTUAL is not set +CONFIG_XEN_FBDEV_FRONTEND=m +CONFIG_FB_METRONOME=m +CONFIG_FB_MB862XX=m +CONFIG_FB_MB862XX_PCI_GDC=y +CONFIG_FB_MB862XX_I2C=y +CONFIG_FB_HYPERV=m +CONFIG_FB_SIMPLE=y +CONFIG_FB_SSD1307=m +CONFIG_FB_SM712=m +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +CONFIG_LCD_CLASS_DEVICE=m +CONFIG_LCD_L4F00242T03=m +CONFIG_LCD_LMS283GF05=m +CONFIG_LCD_LTV350QV=m +CONFIG_LCD_ILI922X=m +CONFIG_LCD_ILI9320=m +CONFIG_LCD_TDO24M=m +CONFIG_LCD_VGG2432A4=m +CONFIG_LCD_PLATFORM=m +CONFIG_LCD_AMS369FG06=m +CONFIG_LCD_LMS501KF03=m +CONFIG_LCD_HX8357=m +CONFIG_LCD_OTM3225A=m +CONFIG_BACKLIGHT_CLASS_DEVICE=y +CONFIG_BACKLIGHT_KTD253=m +CONFIG_BACKLIGHT_LM3533=m +CONFIG_BACKLIGHT_CARILLO_RANCH=m +CONFIG_BACKLIGHT_PWM=m +CONFIG_BACKLIGHT_DA903X=m +CONFIG_BACKLIGHT_DA9052=m +CONFIG_BACKLIGHT_MAX8925=m +CONFIG_BACKLIGHT_APPLE=m +CONFIG_BACKLIGHT_QCOM_WLED=m +CONFIG_BACKLIGHT_RT4831=m +CONFIG_BACKLIGHT_SAHARA=m +CONFIG_BACKLIGHT_WM831X=m +CONFIG_BACKLIGHT_ADP5520=m +CONFIG_BACKLIGHT_ADP8860=m +CONFIG_BACKLIGHT_ADP8870=m +CONFIG_BACKLIGHT_88PM860X=m +CONFIG_BACKLIGHT_PCF50633=m +CONFIG_BACKLIGHT_AAT2870=m +CONFIG_BACKLIGHT_LM3630A=m +CONFIG_BACKLIGHT_LM3639=m +CONFIG_BACKLIGHT_LP855X=m +CONFIG_BACKLIGHT_LP8788=m +CONFIG_BACKLIGHT_PANDORA=m +CONFIG_BACKLIGHT_SKY81452=m +CONFIG_BACKLIGHT_AS3711=m +CONFIG_BACKLIGHT_GPIO=m +CONFIG_BACKLIGHT_LV5207LP=m +CONFIG_BACKLIGHT_BD6107=m +CONFIG_BACKLIGHT_ARCXCNN=m +CONFIG_BACKLIGHT_RAVE_SP=m +# end of Backlight & LCD device support + +CONFIG_VGASTATE=m +CONFIG_VIDEOMODE_HELPERS=y +CONFIG_HDMI=y + +# +# Console display driver support +# +CONFIG_VGA_CONSOLE=y +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +CONFIG_FRAMEBUFFER_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y +# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set +# end of Console display driver support + +CONFIG_LOGO=y +# CONFIG_LOGO_LINUX_MONO is not set +# CONFIG_LOGO_LINUX_VGA16 is not set +# CONFIG_LOGO_LINUX_CLUT224 is not set +# end of Graphics support + +CONFIG_SOUND=m +CONFIG_SOUND_OSS_CORE=y +# CONFIG_SOUND_OSS_CORE_PRECLAIM is not set +CONFIG_SND=m +CONFIG_SND_TIMER=m +CONFIG_SND_PCM=m +CONFIG_SND_PCM_ELD=y +CONFIG_SND_PCM_IEC958=y +CONFIG_SND_DMAENGINE_PCM=m +CONFIG_SND_HWDEP=m +CONFIG_SND_SEQ_DEVICE=m +CONFIG_SND_RAWMIDI=m +CONFIG_SND_COMPRESS_OFFLOAD=m +CONFIG_SND_JACK=y +CONFIG_SND_JACK_INPUT_DEV=y +CONFIG_SND_OSSEMUL=y +CONFIG_SND_MIXER_OSS=m +CONFIG_SND_PCM_OSS=m +CONFIG_SND_PCM_OSS_PLUGINS=y +CONFIG_SND_PCM_TIMER=y +CONFIG_SND_HRTIMER=m +CONFIG_SND_DYNAMIC_MINORS=y +CONFIG_SND_MAX_CARDS=32 +CONFIG_SND_SUPPORT_OLD_API=y +CONFIG_SND_PROC_FS=y +CONFIG_SND_VERBOSE_PROCFS=y +# CONFIG_SND_VERBOSE_PRINTK is not set +# CONFIG_SND_DEBUG is not set +CONFIG_SND_VMASTER=y +CONFIG_SND_DMA_SGBUF=y +CONFIG_SND_CTL_LED=m +CONFIG_SND_SEQUENCER=m +CONFIG_SND_SEQ_DUMMY=m +# CONFIG_SND_SEQUENCER_OSS is not set +CONFIG_SND_SEQ_HRTIMER_DEFAULT=y +CONFIG_SND_SEQ_MIDI_EVENT=m +CONFIG_SND_SEQ_MIDI=m +CONFIG_SND_SEQ_MIDI_EMUL=m +CONFIG_SND_SEQ_VIRMIDI=m +CONFIG_SND_MPU401_UART=m +CONFIG_SND_OPL3_LIB=m +CONFIG_SND_OPL3_LIB_SEQ=m +CONFIG_SND_VX_LIB=m +CONFIG_SND_AC97_CODEC=m +CONFIG_SND_DRIVERS=y +CONFIG_SND_PCSP=m +CONFIG_SND_DUMMY=m +CONFIG_SND_ALOOP=m +CONFIG_SND_VIRMIDI=m +CONFIG_SND_MTPAV=m +CONFIG_SND_MTS64=m +CONFIG_SND_SERIAL_U16550=m +CONFIG_SND_MPU401=m +CONFIG_SND_PORTMAN2X4=m +CONFIG_SND_AC97_POWER_SAVE=y +CONFIG_SND_AC97_POWER_SAVE_DEFAULT=0 +CONFIG_SND_SB_COMMON=m +CONFIG_SND_PCI=y +CONFIG_SND_AD1889=m +CONFIG_SND_ALS4000=m +CONFIG_SND_ASIHPI=m +CONFIG_SND_ATIIXP=m +CONFIG_SND_ATIIXP_MODEM=m +CONFIG_SND_AU8810=m +CONFIG_SND_AU8820=m +CONFIG_SND_AU8830=m +CONFIG_SND_AW2=m +CONFIG_SND_BT87X=m +# CONFIG_SND_BT87X_OVERCLOCK is not set +CONFIG_SND_CA0106=m +CONFIG_SND_CMIPCI=m +CONFIG_SND_OXYGEN_LIB=m +CONFIG_SND_OXYGEN=m +CONFIG_SND_CS4281=m +CONFIG_SND_CS46XX=m +CONFIG_SND_CS46XX_NEW_DSP=y +CONFIG_SND_CTXFI=m +CONFIG_SND_DARLA20=m +CONFIG_SND_GINA20=m +CONFIG_SND_LAYLA20=m +CONFIG_SND_DARLA24=m +CONFIG_SND_GINA24=m +CONFIG_SND_LAYLA24=m +CONFIG_SND_MONA=m +CONFIG_SND_MIA=m +CONFIG_SND_ECHO3G=m +CONFIG_SND_INDIGO=m +CONFIG_SND_INDIGOIO=m +CONFIG_SND_INDIGODJ=m +CONFIG_SND_INDIGOIOX=m +CONFIG_SND_INDIGODJX=m +CONFIG_SND_ENS1370=m +CONFIG_SND_ENS1371=m +CONFIG_SND_FM801=m +CONFIG_SND_FM801_TEA575X_BOOL=y +CONFIG_SND_HDSP=m +CONFIG_SND_HDSPM=m +CONFIG_SND_ICE1724=m +CONFIG_SND_INTEL8X0=m +CONFIG_SND_INTEL8X0M=m +CONFIG_SND_KORG1212=m +CONFIG_SND_LOLA=m +CONFIG_SND_LX6464ES=m +CONFIG_SND_MIXART=m +CONFIG_SND_NM256=m +CONFIG_SND_PCXHR=m +CONFIG_SND_RIPTIDE=m +CONFIG_SND_RME32=m +CONFIG_SND_RME96=m +CONFIG_SND_RME9652=m +CONFIG_SND_VIA82XX=m +CONFIG_SND_VIA82XX_MODEM=m +CONFIG_SND_VIRTUOSO=m +CONFIG_SND_VX222=m +CONFIG_SND_YMFPCI=m + +# +# HD-Audio +# +CONFIG_SND_HDA=m +CONFIG_SND_HDA_GENERIC_LEDS=y +CONFIG_SND_HDA_INTEL=m +CONFIG_SND_HDA_HWDEP=y +CONFIG_SND_HDA_RECONFIG=y +CONFIG_SND_HDA_INPUT_BEEP=y +CONFIG_SND_HDA_INPUT_BEEP_MODE=0 +CONFIG_SND_HDA_PATCH_LOADER=y +CONFIG_SND_HDA_CODEC_REALTEK=m +CONFIG_SND_HDA_CODEC_ANALOG=m +CONFIG_SND_HDA_CODEC_SIGMATEL=m +CONFIG_SND_HDA_CODEC_VIA=m +CONFIG_SND_HDA_CODEC_HDMI=m +CONFIG_SND_HDA_CODEC_CIRRUS=m +CONFIG_SND_HDA_CODEC_CS8409=m +CONFIG_SND_HDA_CODEC_CONEXANT=m +CONFIG_SND_HDA_CODEC_CA0110=m +CONFIG_SND_HDA_CODEC_CA0132=m +CONFIG_SND_HDA_CODEC_CA0132_DSP=y +CONFIG_SND_HDA_CODEC_CMEDIA=m +CONFIG_SND_HDA_CODEC_SI3054=m +CONFIG_SND_HDA_GENERIC=m +CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0 +CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM=y +# end of HD-Audio + +CONFIG_SND_HDA_CORE=m +CONFIG_SND_HDA_DSP_LOADER=y +CONFIG_SND_HDA_COMPONENT=y +CONFIG_SND_HDA_I915=y +CONFIG_SND_HDA_EXT_CORE=m +CONFIG_SND_HDA_PREALLOC_SIZE=0 +CONFIG_SND_INTEL_NHLT=y +CONFIG_SND_INTEL_DSP_CONFIG=m +CONFIG_SND_INTEL_SOUNDWIRE_ACPI=m +CONFIG_SND_INTEL_BYT_PREFER_SOF=y +CONFIG_SND_SPI=y +CONFIG_SND_USB=y +CONFIG_SND_USB_AUDIO=m +CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER=y +CONFIG_SND_USB_UA101=m +CONFIG_SND_USB_USX2Y=m +CONFIG_SND_USB_CAIAQ=m +CONFIG_SND_USB_CAIAQ_INPUT=y +CONFIG_SND_USB_US122L=m +CONFIG_SND_USB_6FIRE=m +CONFIG_SND_USB_HIFACE=m +CONFIG_SND_BCD2000=m +CONFIG_SND_USB_LINE6=m +CONFIG_SND_USB_POD=m +CONFIG_SND_USB_PODHD=m +CONFIG_SND_USB_TONEPORT=m +CONFIG_SND_USB_VARIAX=m +CONFIG_SND_FIREWIRE=y +CONFIG_SND_FIREWIRE_LIB=m +CONFIG_SND_DICE=m +CONFIG_SND_OXFW=m +CONFIG_SND_ISIGHT=m +CONFIG_SND_FIREWORKS=m +CONFIG_SND_BEBOB=m +CONFIG_SND_FIREWIRE_DIGI00X=m +CONFIG_SND_FIREWIRE_TASCAM=m +CONFIG_SND_FIREWIRE_MOTU=m +CONFIG_SND_FIREFACE=m +CONFIG_SND_PCMCIA=y +CONFIG_SND_VXPOCKET=m +CONFIG_SND_PDAUDIOCF=m +CONFIG_SND_SOC=m +CONFIG_SND_SOC_AC97_BUS=y +CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=y +CONFIG_SND_SOC_COMPRESS=y +CONFIG_SND_SOC_TOPOLOGY=y +CONFIG_SND_SOC_ACPI=m +CONFIG_SND_SOC_ADI=m +CONFIG_SND_SOC_ADI_AXI_I2S=m +CONFIG_SND_SOC_ADI_AXI_SPDIF=m +CONFIG_SND_SOC_AMD_ACP=m +CONFIG_SND_SOC_AMD_CZ_DA7219MX98357_MACH=m +CONFIG_SND_SOC_AMD_CZ_RT5645_MACH=m +CONFIG_SND_SOC_AMD_ACP3x=m +CONFIG_SND_SOC_AMD_RV_RT5682_MACH=m +CONFIG_SND_SOC_AMD_RENOIR=m +CONFIG_SND_SOC_AMD_RENOIR_MACH=m +CONFIG_SND_SOC_AMD_ACP5x=m +CONFIG_SND_SOC_AMD_VANGOGH_MACH=m +CONFIG_SND_SOC_AMD_ACP6x=m +CONFIG_SND_SOC_AMD_YC_MACH=m +CONFIG_SND_SOC_AMD_ACP_COMMON=m +CONFIG_SND_SOC_AMD_ACP_I2S=m +CONFIG_SND_SOC_AMD_ACP_PCM=m +CONFIG_SND_AMD_ASOC_RENOIR=m +CONFIG_SND_SOC_AMD_MACH_COMMON=m +CONFIG_SND_SOC_AMD_LEGACY_MACH=m +CONFIG_SND_SOC_AMD_SOF_MACH=m +CONFIG_SND_ATMEL_SOC=m +CONFIG_SND_BCM63XX_I2S_WHISTLER=m +CONFIG_SND_DESIGNWARE_I2S=m +# CONFIG_SND_DESIGNWARE_PCM is not set + +# +# SoC Audio for Freescale CPUs +# + +# +# Common SoC Audio options for Freescale CPUs: +# +CONFIG_SND_SOC_FSL_ASRC=m +CONFIG_SND_SOC_FSL_SAI=m +CONFIG_SND_SOC_FSL_MQS=m +CONFIG_SND_SOC_FSL_AUDMIX=m +CONFIG_SND_SOC_FSL_SSI=m +CONFIG_SND_SOC_FSL_SPDIF=m +CONFIG_SND_SOC_FSL_ESAI=m +CONFIG_SND_SOC_FSL_MICFIL=m +CONFIG_SND_SOC_FSL_EASRC=m +CONFIG_SND_SOC_FSL_XCVR=m +CONFIG_SND_SOC_FSL_RPMSG=m +CONFIG_SND_SOC_IMX_AUDMUX=m +# end of SoC Audio for Freescale CPUs + +CONFIG_SND_I2S_HI6210_I2S=m +# CONFIG_SND_SOC_IMG is not set +CONFIG_SND_SOC_INTEL_SST_TOPLEVEL=y +CONFIG_SND_SOC_INTEL_SST=m +CONFIG_SND_SOC_INTEL_CATPT=m +CONFIG_SND_SST_ATOM_HIFI2_PLATFORM=m +CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI=m +CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_ACPI=m +CONFIG_SND_SOC_INTEL_SKYLAKE=m +CONFIG_SND_SOC_INTEL_SKL=m +CONFIG_SND_SOC_INTEL_APL=m +CONFIG_SND_SOC_INTEL_KBL=m +CONFIG_SND_SOC_INTEL_GLK=m +CONFIG_SND_SOC_INTEL_CNL=m +CONFIG_SND_SOC_INTEL_CFL=m +CONFIG_SND_SOC_INTEL_CML_H=m +CONFIG_SND_SOC_INTEL_CML_LP=m +CONFIG_SND_SOC_INTEL_SKYLAKE_FAMILY=m +CONFIG_SND_SOC_INTEL_SKYLAKE_SSP_CLK=m +CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC=y +CONFIG_SND_SOC_INTEL_SKYLAKE_COMMON=m +CONFIG_SND_SOC_ACPI_INTEL_MATCH=m +CONFIG_SND_SOC_INTEL_MACH=y +# CONFIG_SND_SOC_INTEL_USER_FRIENDLY_LONG_NAMES is not set +CONFIG_SND_SOC_INTEL_HDA_DSP_COMMON=m +CONFIG_SND_SOC_INTEL_SOF_MAXIM_COMMON=m +CONFIG_SND_SOC_INTEL_HASWELL_MACH=m +CONFIG_SND_SOC_INTEL_BDW_RT5650_MACH=m +CONFIG_SND_SOC_INTEL_BDW_RT5677_MACH=m +CONFIG_SND_SOC_INTEL_BROADWELL_MACH=m +CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH=m +CONFIG_SND_SOC_INTEL_BYTCR_RT5651_MACH=m +CONFIG_SND_SOC_INTEL_BYTCR_WM5102_MACH=m +CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH=m +CONFIG_SND_SOC_INTEL_CHT_BSW_RT5645_MACH=m +CONFIG_SND_SOC_INTEL_CHT_BSW_MAX98090_TI_MACH=m +CONFIG_SND_SOC_INTEL_CHT_BSW_NAU8824_MACH=m +CONFIG_SND_SOC_INTEL_BYT_CHT_CX2072X_MACH=m +CONFIG_SND_SOC_INTEL_BYT_CHT_DA7213_MACH=m +CONFIG_SND_SOC_INTEL_BYT_CHT_ES8316_MACH=m +CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH=m +CONFIG_SND_SOC_INTEL_SKL_RT286_MACH=m +CONFIG_SND_SOC_INTEL_SKL_NAU88L25_SSM4567_MACH=m +CONFIG_SND_SOC_INTEL_SKL_NAU88L25_MAX98357A_MACH=m +CONFIG_SND_SOC_INTEL_DA7219_MAX98357A_GENERIC=m +CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_COMMON=m +CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_MACH=m +CONFIG_SND_SOC_INTEL_BXT_RT298_MACH=m +CONFIG_SND_SOC_INTEL_SOF_WM8804_MACH=m +CONFIG_SND_SOC_INTEL_KBL_RT5663_MAX98927_MACH=m +CONFIG_SND_SOC_INTEL_KBL_RT5663_RT5514_MAX98927_MACH=m +CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98357A_MACH=m +CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98927_MACH=m +CONFIG_SND_SOC_INTEL_KBL_RT5660_MACH=m +CONFIG_SND_SOC_INTEL_GLK_DA7219_MAX98357A_MACH=m +CONFIG_SND_SOC_INTEL_GLK_RT5682_MAX98357A_MACH=m +CONFIG_SND_SOC_INTEL_SKL_HDA_DSP_GENERIC_MACH=m +CONFIG_SND_SOC_INTEL_SOF_RT5682_MACH=m +CONFIG_SND_SOC_INTEL_SOF_CS42L42_MACH=m +CONFIG_SND_SOC_INTEL_SOF_PCM512x_MACH=m +CONFIG_SND_SOC_INTEL_SOF_ES8336_MACH=m +CONFIG_SND_SOC_INTEL_CML_LP_DA7219_MAX98357A_MACH=m +CONFIG_SND_SOC_INTEL_SOF_CML_RT1011_RT5682_MACH=m +CONFIG_SND_SOC_INTEL_SOF_DA7219_MAX98373_MACH=m +CONFIG_SND_SOC_INTEL_EHL_RT5660_MACH=m +CONFIG_SND_SOC_MTK_BTCVSD=m +CONFIG_SND_SOC_SOF_TOPLEVEL=y +CONFIG_SND_SOC_SOF_PCI_DEV=m +CONFIG_SND_SOC_SOF_PCI=m +CONFIG_SND_SOC_SOF_ACPI=m +CONFIG_SND_SOC_SOF_ACPI_DEV=m +# CONFIG_SND_SOC_SOF_DEBUG_PROBES is not set +# CONFIG_SND_SOC_SOF_DEVELOPER_SUPPORT is not set +CONFIG_SND_SOC_SOF=m +CONFIG_SND_SOC_SOF_PROBE_WORK_QUEUE=y +CONFIG_SND_SOC_SOF_INTEL_TOPLEVEL=y +CONFIG_SND_SOC_SOF_INTEL_HIFI_EP_IPC=m +CONFIG_SND_SOC_SOF_INTEL_ATOM_HIFI_EP=m +CONFIG_SND_SOC_SOF_INTEL_COMMON=m +CONFIG_SND_SOC_SOF_BAYTRAIL=m +CONFIG_SND_SOC_SOF_BROADWELL=m +CONFIG_SND_SOC_SOF_MERRIFIELD=m +CONFIG_SND_SOC_SOF_INTEL_APL=m +CONFIG_SND_SOC_SOF_APOLLOLAKE=m +CONFIG_SND_SOC_SOF_GEMINILAKE=m +CONFIG_SND_SOC_SOF_INTEL_CNL=m +CONFIG_SND_SOC_SOF_CANNONLAKE=m +CONFIG_SND_SOC_SOF_COFFEELAKE=m +CONFIG_SND_SOC_SOF_COMETLAKE=m +CONFIG_SND_SOC_SOF_INTEL_ICL=m +CONFIG_SND_SOC_SOF_ICELAKE=m +CONFIG_SND_SOC_SOF_JASPERLAKE=m +CONFIG_SND_SOC_SOF_INTEL_TGL=m +CONFIG_SND_SOC_SOF_TIGERLAKE=m +CONFIG_SND_SOC_SOF_ELKHARTLAKE=m +CONFIG_SND_SOC_SOF_ALDERLAKE=m +CONFIG_SND_SOC_SOF_HDA_COMMON=m +CONFIG_SND_SOC_SOF_HDA_LINK=y +CONFIG_SND_SOC_SOF_HDA_AUDIO_CODEC=y +CONFIG_SND_SOC_SOF_HDA_LINK_BASELINE=m +CONFIG_SND_SOC_SOF_HDA=m +CONFIG_SND_SOC_SOF_INTEL_SOUNDWIRE_LINK_BASELINE=m +CONFIG_SND_SOC_SOF_INTEL_SOUNDWIRE=m +CONFIG_SND_SOC_SOF_XTENSA=m + +# +# STMicroelectronics STM32 SOC audio support +# +# end of STMicroelectronics STM32 SOC audio support + +CONFIG_SND_SOC_XILINX_I2S=m +# CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER is not set +# CONFIG_SND_SOC_XILINX_SPDIF is not set +CONFIG_SND_SOC_XTFPGA_I2S=m +CONFIG_SND_SOC_I2C_AND_SPI=m + +# +# CODEC drivers +# +CONFIG_SND_SOC_ARIZONA=m +CONFIG_SND_SOC_WM_ADSP=m +CONFIG_SND_SOC_AC97_CODEC=m +CONFIG_SND_SOC_ADAU_UTILS=m +CONFIG_SND_SOC_ADAU1372=m +CONFIG_SND_SOC_ADAU1372_I2C=m +CONFIG_SND_SOC_ADAU1372_SPI=m +CONFIG_SND_SOC_ADAU1701=m +CONFIG_SND_SOC_ADAU17X1=m +CONFIG_SND_SOC_ADAU1761=m +CONFIG_SND_SOC_ADAU1761_I2C=m +CONFIG_SND_SOC_ADAU1761_SPI=m +CONFIG_SND_SOC_ADAU7002=m +CONFIG_SND_SOC_ADAU7118=m +CONFIG_SND_SOC_ADAU7118_HW=m +CONFIG_SND_SOC_ADAU7118_I2C=m +CONFIG_SND_SOC_AK4104=m +CONFIG_SND_SOC_AK4118=m +CONFIG_SND_SOC_AK4458=m +CONFIG_SND_SOC_AK4554=m +CONFIG_SND_SOC_AK4613=m +CONFIG_SND_SOC_AK4642=m +CONFIG_SND_SOC_AK5386=m +CONFIG_SND_SOC_AK5558=m +CONFIG_SND_SOC_ALC5623=m +CONFIG_SND_SOC_BD28623=m +CONFIG_SND_SOC_BT_SCO=m +CONFIG_SND_SOC_CROS_EC_CODEC=m +CONFIG_SND_SOC_CS35L32=m +CONFIG_SND_SOC_CS35L33=m +CONFIG_SND_SOC_CS35L34=m +CONFIG_SND_SOC_CS35L35=m +CONFIG_SND_SOC_CS35L36=m +CONFIG_SND_SOC_CS35L41_SPI=m +CONFIG_SND_SOC_CS35L41_I2C=m +CONFIG_SND_SOC_CS42L42=m +CONFIG_SND_SOC_CS42L51=m +CONFIG_SND_SOC_CS42L51_I2C=m +CONFIG_SND_SOC_CS42L52=m +CONFIG_SND_SOC_CS42L56=m +CONFIG_SND_SOC_CS42L73=m +CONFIG_SND_SOC_CS4234=m +CONFIG_SND_SOC_CS4265=m +CONFIG_SND_SOC_CS4270=m +CONFIG_SND_SOC_CS4271=m +CONFIG_SND_SOC_CS4271_I2C=m +CONFIG_SND_SOC_CS4271_SPI=m +CONFIG_SND_SOC_CS42XX8=m +CONFIG_SND_SOC_CS42XX8_I2C=m +CONFIG_SND_SOC_CS43130=m +CONFIG_SND_SOC_CS4341=m +CONFIG_SND_SOC_CS4349=m +CONFIG_SND_SOC_CS53L30=m +CONFIG_SND_SOC_CX2072X=m +CONFIG_SND_SOC_DA7213=m +CONFIG_SND_SOC_DA7219=m +CONFIG_SND_SOC_DMIC=m +CONFIG_SND_SOC_HDMI_CODEC=m +CONFIG_SND_SOC_ES7134=m +CONFIG_SND_SOC_ES7241=m +CONFIG_SND_SOC_ES8316=m +CONFIG_SND_SOC_ES8328=m +CONFIG_SND_SOC_ES8328_I2C=m +CONFIG_SND_SOC_ES8328_SPI=m +CONFIG_SND_SOC_GTM601=m +CONFIG_SND_SOC_HDAC_HDMI=m +CONFIG_SND_SOC_HDAC_HDA=m +CONFIG_SND_SOC_ICS43432=m +CONFIG_SND_SOC_INNO_RK3036=m +CONFIG_SND_SOC_MAX98088=m +CONFIG_SND_SOC_MAX98090=m +CONFIG_SND_SOC_MAX98357A=m +CONFIG_SND_SOC_MAX98504=m +CONFIG_SND_SOC_MAX9867=m +CONFIG_SND_SOC_MAX98927=m +CONFIG_SND_SOC_MAX98520=m +CONFIG_SND_SOC_MAX98373=m +CONFIG_SND_SOC_MAX98373_I2C=m +CONFIG_SND_SOC_MAX98373_SDW=m +CONFIG_SND_SOC_MAX98390=m +CONFIG_SND_SOC_MAX9860=m +CONFIG_SND_SOC_MSM8916_WCD_ANALOG=m +CONFIG_SND_SOC_MSM8916_WCD_DIGITAL=m +CONFIG_SND_SOC_PCM1681=m +CONFIG_SND_SOC_PCM1789=m +CONFIG_SND_SOC_PCM1789_I2C=m +CONFIG_SND_SOC_PCM179X=m +CONFIG_SND_SOC_PCM179X_I2C=m +CONFIG_SND_SOC_PCM179X_SPI=m +CONFIG_SND_SOC_PCM186X=m +CONFIG_SND_SOC_PCM186X_I2C=m +CONFIG_SND_SOC_PCM186X_SPI=m +CONFIG_SND_SOC_PCM3060=m +CONFIG_SND_SOC_PCM3060_I2C=m +CONFIG_SND_SOC_PCM3060_SPI=m +CONFIG_SND_SOC_PCM3168A=m +CONFIG_SND_SOC_PCM3168A_I2C=m +CONFIG_SND_SOC_PCM3168A_SPI=m +CONFIG_SND_SOC_PCM5102A=m +CONFIG_SND_SOC_PCM512x=m +CONFIG_SND_SOC_PCM512x_I2C=m +CONFIG_SND_SOC_PCM512x_SPI=m +# CONFIG_SND_SOC_RK3328 is not set +CONFIG_SND_SOC_RL6231=m +CONFIG_SND_SOC_RL6347A=m +CONFIG_SND_SOC_RT286=m +CONFIG_SND_SOC_RT298=m +CONFIG_SND_SOC_RT1011=m +CONFIG_SND_SOC_RT1015=m +CONFIG_SND_SOC_RT1015P=m +CONFIG_SND_SOC_RT1019=m +CONFIG_SND_SOC_RT1308_SDW=m +CONFIG_SND_SOC_RT1316_SDW=m +CONFIG_SND_SOC_RT5514=m +CONFIG_SND_SOC_RT5514_SPI=m +CONFIG_SND_SOC_RT5616=m +CONFIG_SND_SOC_RT5631=m +CONFIG_SND_SOC_RT5640=m +CONFIG_SND_SOC_RT5645=m +CONFIG_SND_SOC_RT5651=m +CONFIG_SND_SOC_RT5659=m +CONFIG_SND_SOC_RT5660=m +CONFIG_SND_SOC_RT5663=m +CONFIG_SND_SOC_RT5670=m +CONFIG_SND_SOC_RT5677=m +CONFIG_SND_SOC_RT5677_SPI=m +CONFIG_SND_SOC_RT5682=m +CONFIG_SND_SOC_RT5682_I2C=m +CONFIG_SND_SOC_RT5682_SDW=m +CONFIG_SND_SOC_RT5682S=m +CONFIG_SND_SOC_RT700=m +CONFIG_SND_SOC_RT700_SDW=m +CONFIG_SND_SOC_RT711=m +CONFIG_SND_SOC_RT711_SDW=m +CONFIG_SND_SOC_RT711_SDCA_SDW=m +CONFIG_SND_SOC_RT715=m +CONFIG_SND_SOC_RT715_SDW=m +CONFIG_SND_SOC_RT715_SDCA_SDW=m +CONFIG_SND_SOC_RT9120=m +CONFIG_SND_SOC_SDW_MOCKUP=m +CONFIG_SND_SOC_SGTL5000=m +CONFIG_SND_SOC_SI476X=m +CONFIG_SND_SOC_SIGMADSP=m +CONFIG_SND_SOC_SIGMADSP_I2C=m +CONFIG_SND_SOC_SIGMADSP_REGMAP=m +CONFIG_SND_SOC_SIMPLE_AMPLIFIER=m +CONFIG_SND_SOC_SIMPLE_MUX=m +CONFIG_SND_SOC_SPDIF=m +CONFIG_SND_SOC_SSM2305=m +CONFIG_SND_SOC_SSM2518=m +CONFIG_SND_SOC_SSM2602=m +CONFIG_SND_SOC_SSM2602_SPI=m +CONFIG_SND_SOC_SSM2602_I2C=m +CONFIG_SND_SOC_SSM4567=m +CONFIG_SND_SOC_STA32X=m +CONFIG_SND_SOC_STA350=m +CONFIG_SND_SOC_STI_SAS=m +CONFIG_SND_SOC_TAS2552=m +CONFIG_SND_SOC_TAS2562=m +CONFIG_SND_SOC_TAS2764=m +CONFIG_SND_SOC_TAS2770=m +CONFIG_SND_SOC_TAS5086=m +CONFIG_SND_SOC_TAS571X=m +CONFIG_SND_SOC_TAS5720=m +CONFIG_SND_SOC_TAS6424=m +CONFIG_SND_SOC_TDA7419=m +CONFIG_SND_SOC_TFA9879=m +CONFIG_SND_SOC_TFA989X=m +CONFIG_SND_SOC_TLV320AIC23=m +CONFIG_SND_SOC_TLV320AIC23_I2C=m +CONFIG_SND_SOC_TLV320AIC23_SPI=m +CONFIG_SND_SOC_TLV320AIC31XX=m +CONFIG_SND_SOC_TLV320AIC32X4=m +CONFIG_SND_SOC_TLV320AIC32X4_I2C=m +CONFIG_SND_SOC_TLV320AIC32X4_SPI=m +CONFIG_SND_SOC_TLV320AIC3X=m +CONFIG_SND_SOC_TLV320AIC3X_I2C=m +CONFIG_SND_SOC_TLV320AIC3X_SPI=m +CONFIG_SND_SOC_TLV320ADCX140=m +CONFIG_SND_SOC_TS3A227E=m +CONFIG_SND_SOC_TSCS42XX=m +CONFIG_SND_SOC_TSCS454=m +CONFIG_SND_SOC_UDA1334=m +CONFIG_SND_SOC_WCD_MBHC=m +CONFIG_SND_SOC_WCD938X=m +CONFIG_SND_SOC_WCD938X_SDW=m +CONFIG_SND_SOC_WM5102=m +CONFIG_SND_SOC_WM8510=m +CONFIG_SND_SOC_WM8523=m +CONFIG_SND_SOC_WM8524=m +CONFIG_SND_SOC_WM8580=m +CONFIG_SND_SOC_WM8711=m +CONFIG_SND_SOC_WM8728=m +CONFIG_SND_SOC_WM8731=m +CONFIG_SND_SOC_WM8737=m +CONFIG_SND_SOC_WM8741=m +CONFIG_SND_SOC_WM8750=m +CONFIG_SND_SOC_WM8753=m +CONFIG_SND_SOC_WM8770=m +CONFIG_SND_SOC_WM8776=m +CONFIG_SND_SOC_WM8782=m +CONFIG_SND_SOC_WM8804=m +CONFIG_SND_SOC_WM8804_I2C=m +CONFIG_SND_SOC_WM8804_SPI=m +CONFIG_SND_SOC_WM8903=m +CONFIG_SND_SOC_WM8904=m +CONFIG_SND_SOC_WM8960=m +CONFIG_SND_SOC_WM8962=m +CONFIG_SND_SOC_WM8974=m +CONFIG_SND_SOC_WM8978=m +CONFIG_SND_SOC_WM8985=m +CONFIG_SND_SOC_WSA881X=m +CONFIG_SND_SOC_ZL38060=m +CONFIG_SND_SOC_MAX9759=m +CONFIG_SND_SOC_MT6351=m +CONFIG_SND_SOC_MT6358=m +CONFIG_SND_SOC_MT6660=m +CONFIG_SND_SOC_NAU8315=m +CONFIG_SND_SOC_NAU8540=m +CONFIG_SND_SOC_NAU8810=m +CONFIG_SND_SOC_NAU8821=m +CONFIG_SND_SOC_NAU8822=m +CONFIG_SND_SOC_NAU8824=m +CONFIG_SND_SOC_NAU8825=m +CONFIG_SND_SOC_TPA6130A2=m +CONFIG_SND_SOC_LPASS_WSA_MACRO=m +CONFIG_SND_SOC_LPASS_VA_MACRO=m +CONFIG_SND_SOC_LPASS_RX_MACRO=m +CONFIG_SND_SOC_LPASS_TX_MACRO=m +# end of CODEC drivers + +CONFIG_SND_SIMPLE_CARD_UTILS=m +CONFIG_SND_SIMPLE_CARD=m +CONFIG_SND_X86=y +CONFIG_HDMI_LPE_AUDIO=m +CONFIG_SND_XEN_FRONTEND=m +CONFIG_SND_VIRTIO=m +CONFIG_AC97_BUS=m + +# +# HID support +# +CONFIG_HID=m +CONFIG_HID_BATTERY_STRENGTH=y +CONFIG_HIDRAW=y +CONFIG_UHID=m +CONFIG_HID_GENERIC=m + +# +# Special HID drivers +# +CONFIG_HID_A4TECH=m +CONFIG_HID_ACCUTOUCH=m +CONFIG_HID_ACRUX=m +CONFIG_HID_ACRUX_FF=y +CONFIG_HID_APPLE=m +CONFIG_HID_APPLEIR=m +CONFIG_HID_ASUS=m +CONFIG_HID_AUREAL=m +CONFIG_HID_BELKIN=m +CONFIG_HID_BETOP_FF=m +CONFIG_HID_BIGBEN_FF=m +CONFIG_HID_CHERRY=m +CONFIG_HID_CHICONY=m +CONFIG_HID_CORSAIR=m +CONFIG_HID_COUGAR=m +CONFIG_HID_MACALLY=m +CONFIG_HID_PRODIKEYS=m +CONFIG_HID_CMEDIA=m +CONFIG_HID_CP2112=m +CONFIG_HID_CREATIVE_SB0540=m +CONFIG_HID_CYPRESS=m +CONFIG_HID_DRAGONRISE=m +CONFIG_DRAGONRISE_FF=y +CONFIG_HID_EMS_FF=m +CONFIG_HID_ELAN=m +CONFIG_HID_ELECOM=m +CONFIG_HID_ELO=m +CONFIG_HID_EZKEY=m +CONFIG_HID_FT260=m +CONFIG_HID_GEMBIRD=m +CONFIG_HID_GFRM=m +CONFIG_HID_GLORIOUS=m +CONFIG_HID_HOLTEK=m +CONFIG_HOLTEK_FF=y +CONFIG_HID_GOOGLE_HAMMER=m +CONFIG_HID_VIVALDI=m +CONFIG_HID_GT683R=m +CONFIG_HID_KEYTOUCH=m +CONFIG_HID_KYE=m +CONFIG_HID_UCLOGIC=m +CONFIG_HID_WALTOP=m +CONFIG_HID_VIEWSONIC=m +CONFIG_HID_XIAOMI=m +CONFIG_HID_GYRATION=m +CONFIG_HID_ICADE=m +CONFIG_HID_ITE=m +CONFIG_HID_JABRA=m +CONFIG_HID_TWINHAN=m +CONFIG_HID_KENSINGTON=m +CONFIG_HID_LCPOWER=m +CONFIG_HID_LED=m +CONFIG_HID_LENOVO=m +CONFIG_HID_LOGITECH=m +CONFIG_HID_LOGITECH_DJ=m +CONFIG_HID_LOGITECH_HIDPP=m +CONFIG_LOGITECH_FF=y +CONFIG_LOGIRUMBLEPAD2_FF=y +CONFIG_LOGIG940_FF=y +CONFIG_LOGIWHEELS_FF=y +CONFIG_HID_MAGICMOUSE=m +CONFIG_HID_MALTRON=m +CONFIG_HID_MAYFLASH=m +CONFIG_HID_REDRAGON=m +CONFIG_HID_MICROSOFT=m +CONFIG_HID_MONTEREY=m +CONFIG_HID_MULTITOUCH=m +CONFIG_HID_NINTENDO=m +CONFIG_NINTENDO_FF=y +CONFIG_HID_NTI=m +CONFIG_HID_NTRIG=m +CONFIG_HID_ORTEK=m +CONFIG_HID_PANTHERLORD=m +CONFIG_PANTHERLORD_FF=y +CONFIG_HID_PENMOUNT=m +CONFIG_HID_PETALYNX=m +CONFIG_HID_PICOLCD=m +CONFIG_HID_PICOLCD_FB=y +CONFIG_HID_PICOLCD_BACKLIGHT=y +CONFIG_HID_PICOLCD_LCD=y +CONFIG_HID_PICOLCD_LEDS=y +CONFIG_HID_PICOLCD_CIR=y +CONFIG_HID_PLANTRONICS=m +CONFIG_HID_PLAYSTATION=m +CONFIG_PLAYSTATION_FF=y +CONFIG_HID_PRIMAX=m +CONFIG_HID_RETRODE=m +CONFIG_HID_ROCCAT=m +CONFIG_HID_SAITEK=m +CONFIG_HID_SAMSUNG=m +CONFIG_HID_SEMITEK=m +CONFIG_HID_SONY=m +CONFIG_SONY_FF=y +CONFIG_HID_SPEEDLINK=m +CONFIG_HID_STEAM=m +CONFIG_HID_STEELSERIES=m +CONFIG_HID_SUNPLUS=m +CONFIG_HID_RMI=m +CONFIG_HID_GREENASIA=m +CONFIG_GREENASIA_FF=y +CONFIG_HID_HYPERV_MOUSE=m +CONFIG_HID_SMARTJOYPLUS=m +CONFIG_SMARTJOYPLUS_FF=y +CONFIG_HID_TIVO=m +CONFIG_HID_TOPSEED=m +CONFIG_HID_THINGM=m +CONFIG_HID_THRUSTMASTER=m +CONFIG_THRUSTMASTER_FF=y +CONFIG_HID_UDRAW_PS3=m +CONFIG_HID_U2FZERO=m +CONFIG_HID_WACOM=m +CONFIG_HID_WIIMOTE=m +CONFIG_HID_XINMO=m +CONFIG_HID_ZEROPLUS=m +CONFIG_ZEROPLUS_FF=y +CONFIG_HID_ZYDACRON=m +CONFIG_HID_SENSOR_HUB=m +CONFIG_HID_SENSOR_CUSTOM_SENSOR=m +CONFIG_HID_ALPS=m +CONFIG_HID_MCP2221=m +# end of Special HID drivers + +# +# USB HID support +# +CONFIG_USB_HID=m +CONFIG_HID_PID=y +CONFIG_USB_HIDDEV=y + +# +# USB HID Boot Protocol drivers +# +CONFIG_USB_KBD=m +CONFIG_USB_MOUSE=m +# end of USB HID Boot Protocol drivers +# end of USB HID support + +# +# I2C HID support +# +CONFIG_I2C_HID_ACPI=m +# end of I2C HID support + +CONFIG_I2C_HID_CORE=m + +# +# Intel ISH HID support +# +CONFIG_INTEL_ISH_HID=m +# CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER is not set +# end of Intel ISH HID support + +# +# AMD SFH HID Support +# +CONFIG_AMD_SFH_HID=m +# end of AMD SFH HID Support + +# +# Surface System Aggregator Module HID support +# +CONFIG_SURFACE_HID=m +CONFIG_SURFACE_KBD=m +# end of Surface System Aggregator Module HID support + +CONFIG_SURFACE_HID_CORE=m +# end of HID support + +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +CONFIG_USB_LED_TRIG=y +CONFIG_USB_ULPI_BUS=m +CONFIG_USB_CONN_GPIO=m +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=y +CONFIG_USB_PCI=y +CONFIG_USB_ANNOUNCE_NEW_DEVICES=y + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_FEW_INIT_RETRIES is not set +CONFIG_USB_DYNAMIC_MINORS=y +# CONFIG_USB_OTG is not set +# CONFIG_USB_OTG_PRODUCTLIST is not set +# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set +CONFIG_USB_LEDS_TRIGGER_USBPORT=m +CONFIG_USB_AUTOSUSPEND_DELAY=2 +CONFIG_USB_MON=m + +# +# USB Host Controller Drivers +# +CONFIG_USB_C67X00_HCD=m +CONFIG_USB_XHCI_HCD=y +# CONFIG_USB_XHCI_DBGCAP is not set +CONFIG_USB_XHCI_PCI=y +# CONFIG_USB_XHCI_PCI_RENESAS is not set +CONFIG_USB_XHCI_PLATFORM=m +CONFIG_USB_EHCI_HCD=y +CONFIG_USB_EHCI_ROOT_HUB_TT=y +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHCI_PCI=y +# CONFIG_USB_EHCI_FSL is not set +CONFIG_USB_EHCI_HCD_PLATFORM=y +CONFIG_USB_OXU210HP_HCD=m +CONFIG_USB_ISP116X_HCD=m +CONFIG_USB_FOTG210_HCD=m +CONFIG_USB_MAX3421_HCD=m +CONFIG_USB_OHCI_HCD=y +CONFIG_USB_OHCI_HCD_PCI=y +CONFIG_USB_OHCI_HCD_PLATFORM=y +CONFIG_USB_UHCI_HCD=y +CONFIG_USB_U132_HCD=m +CONFIG_USB_SL811_HCD=m +CONFIG_USB_SL811_HCD_ISO=y +CONFIG_USB_SL811_CS=m +CONFIG_USB_R8A66597_HCD=m +CONFIG_USB_HCD_BCMA=m +CONFIG_USB_HCD_SSB=m +# CONFIG_USB_HCD_TEST_MODE is not set + +# +# USB Device Class drivers +# +CONFIG_USB_ACM=m +CONFIG_USB_PRINTER=m +CONFIG_USB_WDM=m +CONFIG_USB_TMC=m + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# +CONFIG_USB_STORAGE=m +# CONFIG_USB_STORAGE_DEBUG is not set +CONFIG_USB_STORAGE_REALTEK=m +CONFIG_REALTEK_AUTOPM=y +CONFIG_USB_STORAGE_DATAFAB=m +CONFIG_USB_STORAGE_FREECOM=m +CONFIG_USB_STORAGE_ISD200=m +CONFIG_USB_STORAGE_USBAT=m +CONFIG_USB_STORAGE_SDDR09=m +CONFIG_USB_STORAGE_SDDR55=m +CONFIG_USB_STORAGE_JUMPSHOT=m +CONFIG_USB_STORAGE_ALAUDA=m +CONFIG_USB_STORAGE_ONETOUCH=m +CONFIG_USB_STORAGE_KARMA=m +CONFIG_USB_STORAGE_CYPRESS_ATACB=m +CONFIG_USB_STORAGE_ENE_UB6250=m +CONFIG_USB_UAS=m + +# +# USB Imaging devices +# +CONFIG_USB_MDC800=m +CONFIG_USB_MICROTEK=m +CONFIG_USBIP_CORE=m +CONFIG_USBIP_VHCI_HCD=m +CONFIG_USBIP_VHCI_HC_PORTS=8 +CONFIG_USBIP_VHCI_NR_HCS=1 +CONFIG_USBIP_HOST=m +CONFIG_USBIP_VUDC=m +# CONFIG_USBIP_DEBUG is not set +CONFIG_USB_CDNS_SUPPORT=m +CONFIG_USB_CDNS_HOST=y +CONFIG_USB_CDNS3=m +# CONFIG_USB_CDNS3_GADGET is not set +# CONFIG_USB_CDNS3_HOST is not set +CONFIG_USB_CDNS3_PCI_WRAP=m +CONFIG_USB_CDNSP_PCI=m +CONFIG_USB_CDNSP_GADGET=y +CONFIG_USB_CDNSP_HOST=y +CONFIG_USB_MUSB_HDRC=m +# CONFIG_USB_MUSB_HOST is not set +# CONFIG_USB_MUSB_GADGET is not set +CONFIG_USB_MUSB_DUAL_ROLE=y + +# +# Platform Glue Layer +# + +# +# MUSB DMA mode +# +CONFIG_MUSB_PIO_ONLY=y +CONFIG_USB_DWC3=m +CONFIG_USB_DWC3_ULPI=y +# CONFIG_USB_DWC3_HOST is not set +# CONFIG_USB_DWC3_GADGET is not set +CONFIG_USB_DWC3_DUAL_ROLE=y + +# +# Platform Glue Driver Support +# +CONFIG_USB_DWC3_PCI=m +CONFIG_USB_DWC3_HAPS=m +CONFIG_USB_DWC2=y +CONFIG_USB_DWC2_HOST=y + +# +# Gadget/Dual-role mode requires USB Gadget support to be enabled +# +CONFIG_USB_DWC2_PCI=m +# CONFIG_USB_DWC2_DEBUG is not set +# CONFIG_USB_DWC2_TRACK_MISSED_SOFS is not set +CONFIG_USB_CHIPIDEA=m +CONFIG_USB_CHIPIDEA_UDC=y +CONFIG_USB_CHIPIDEA_HOST=y +CONFIG_USB_CHIPIDEA_PCI=m +CONFIG_USB_CHIPIDEA_MSM=m +CONFIG_USB_CHIPIDEA_GENERIC=m +CONFIG_USB_ISP1760=m +CONFIG_USB_ISP1760_HCD=y +CONFIG_USB_ISP1761_UDC=y +# CONFIG_USB_ISP1760_HOST_ROLE is not set +# CONFIG_USB_ISP1760_GADGET_ROLE is not set +CONFIG_USB_ISP1760_DUAL_ROLE=y + +# +# USB port drivers +# +CONFIG_USB_USS720=m +CONFIG_USB_SERIAL=m +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_SIMPLE=m +CONFIG_USB_SERIAL_AIRCABLE=m +CONFIG_USB_SERIAL_ARK3116=m +CONFIG_USB_SERIAL_BELKIN=m +CONFIG_USB_SERIAL_CH341=m +CONFIG_USB_SERIAL_WHITEHEAT=m +CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m +CONFIG_USB_SERIAL_CP210X=m +CONFIG_USB_SERIAL_CYPRESS_M8=m +CONFIG_USB_SERIAL_EMPEG=m +CONFIG_USB_SERIAL_FTDI_SIO=m +CONFIG_USB_SERIAL_VISOR=m +CONFIG_USB_SERIAL_IPAQ=m +CONFIG_USB_SERIAL_IR=m +CONFIG_USB_SERIAL_EDGEPORT=m +CONFIG_USB_SERIAL_EDGEPORT_TI=m +CONFIG_USB_SERIAL_F81232=m +CONFIG_USB_SERIAL_F8153X=m +CONFIG_USB_SERIAL_GARMIN=m +CONFIG_USB_SERIAL_IPW=m +CONFIG_USB_SERIAL_IUU=m +CONFIG_USB_SERIAL_KEYSPAN_PDA=m +CONFIG_USB_SERIAL_KEYSPAN=m +CONFIG_USB_SERIAL_KLSI=m +CONFIG_USB_SERIAL_KOBIL_SCT=m +CONFIG_USB_SERIAL_MCT_U232=m +CONFIG_USB_SERIAL_METRO=m +CONFIG_USB_SERIAL_MOS7720=m +CONFIG_USB_SERIAL_MOS7715_PARPORT=y +CONFIG_USB_SERIAL_MOS7840=m +CONFIG_USB_SERIAL_MXUPORT=m +CONFIG_USB_SERIAL_NAVMAN=m +CONFIG_USB_SERIAL_PL2303=m +CONFIG_USB_SERIAL_OTI6858=m +CONFIG_USB_SERIAL_QCAUX=m +CONFIG_USB_SERIAL_QUALCOMM=m +CONFIG_USB_SERIAL_SPCP8X5=m +CONFIG_USB_SERIAL_SAFE=m +# CONFIG_USB_SERIAL_SAFE_PADDED is not set +CONFIG_USB_SERIAL_SIERRAWIRELESS=m +CONFIG_USB_SERIAL_SYMBOL=m +CONFIG_USB_SERIAL_TI=m +CONFIG_USB_SERIAL_CYBERJACK=m +CONFIG_USB_SERIAL_WWAN=m +CONFIG_USB_SERIAL_OPTION=m +CONFIG_USB_SERIAL_OMNINET=m +CONFIG_USB_SERIAL_OPTICON=m +CONFIG_USB_SERIAL_XSENS_MT=m +CONFIG_USB_SERIAL_WISHBONE=m +CONFIG_USB_SERIAL_SSU100=m +CONFIG_USB_SERIAL_QT2=m +CONFIG_USB_SERIAL_UPD78F0730=m +CONFIG_USB_SERIAL_XR=m +CONFIG_USB_SERIAL_DEBUG=m + +# +# USB Miscellaneous drivers +# +CONFIG_USB_EMI62=m +CONFIG_USB_EMI26=m +CONFIG_USB_ADUTUX=m +CONFIG_USB_SEVSEG=m +CONFIG_USB_LEGOTOWER=m +CONFIG_USB_LCD=m +CONFIG_USB_CYPRESS_CY7C63=m +CONFIG_USB_CYTHERM=m +CONFIG_USB_IDMOUSE=m +CONFIG_USB_FTDI_ELAN=m +CONFIG_USB_APPLEDISPLAY=m +CONFIG_APPLE_MFI_FASTCHARGE=m +CONFIG_USB_SISUSBVGA=m +CONFIG_USB_LD=m +CONFIG_USB_TRANCEVIBRATOR=m +CONFIG_USB_IOWARRIOR=m +CONFIG_USB_TEST=m +CONFIG_USB_EHSET_TEST_FIXTURE=m +CONFIG_USB_ISIGHTFW=m +CONFIG_USB_YUREX=m +CONFIG_USB_EZUSB_FX2=m +CONFIG_USB_HUB_USB251XB=m +CONFIG_USB_HSIC_USB3503=m +CONFIG_USB_HSIC_USB4604=m +CONFIG_USB_LINK_LAYER_TEST=m +CONFIG_USB_CHAOSKEY=m +CONFIG_USB_ATM=m +CONFIG_USB_SPEEDTOUCH=m +CONFIG_USB_CXACRU=m +CONFIG_USB_UEAGLEATM=m +CONFIG_USB_XUSBATM=m + +# +# USB Physical Layer drivers +# +CONFIG_USB_PHY=y +CONFIG_NOP_USB_XCEIV=m +CONFIG_USB_GPIO_VBUS=m +CONFIG_TAHVO_USB=m +CONFIG_TAHVO_USB_HOST_BY_DEFAULT=y +CONFIG_USB_ISP1301=m +# end of USB Physical Layer drivers + +CONFIG_USB_GADGET=m +# CONFIG_USB_GADGET_DEBUG is not set +# CONFIG_USB_GADGET_DEBUG_FILES is not set +# CONFIG_USB_GADGET_DEBUG_FS is not set +CONFIG_USB_GADGET_VBUS_DRAW=2 +CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 +# CONFIG_U_SERIAL_CONSOLE is not set + +# +# USB Peripheral Controller +# +CONFIG_USB_FOTG210_UDC=m +CONFIG_USB_GR_UDC=m +CONFIG_USB_R8A66597=m +CONFIG_USB_PXA27X=m +CONFIG_USB_MV_UDC=m +CONFIG_USB_MV_U3D=m +CONFIG_USB_SNP_CORE=m +# CONFIG_USB_M66592 is not set +CONFIG_USB_BDC_UDC=m +CONFIG_USB_AMD5536UDC=m +CONFIG_USB_NET2272=m +CONFIG_USB_NET2272_DMA=y +CONFIG_USB_NET2280=m +CONFIG_USB_GOKU=m +CONFIG_USB_EG20T=m +CONFIG_USB_MAX3420_UDC=m +# CONFIG_USB_DUMMY_HCD is not set +# end of USB Peripheral Controller + +CONFIG_USB_LIBCOMPOSITE=m +CONFIG_USB_F_ACM=m +CONFIG_USB_F_SS_LB=m +CONFIG_USB_U_SERIAL=m +CONFIG_USB_U_ETHER=m +CONFIG_USB_U_AUDIO=m +CONFIG_USB_F_SERIAL=m +CONFIG_USB_F_OBEX=m +CONFIG_USB_F_NCM=m +CONFIG_USB_F_ECM=m +CONFIG_USB_F_PHONET=m +CONFIG_USB_F_EEM=m +CONFIG_USB_F_SUBSET=m +CONFIG_USB_F_RNDIS=m +CONFIG_USB_F_MASS_STORAGE=m +CONFIG_USB_F_FS=m +CONFIG_USB_F_UAC1=m +CONFIG_USB_F_UAC2=m +CONFIG_USB_F_UVC=m +CONFIG_USB_F_MIDI=m +CONFIG_USB_F_HID=m +CONFIG_USB_F_PRINTER=m +CONFIG_USB_F_TCM=m +CONFIG_USB_CONFIGFS=m +CONFIG_USB_CONFIGFS_SERIAL=y +CONFIG_USB_CONFIGFS_ACM=y +CONFIG_USB_CONFIGFS_OBEX=y +CONFIG_USB_CONFIGFS_NCM=y +CONFIG_USB_CONFIGFS_ECM=y +CONFIG_USB_CONFIGFS_ECM_SUBSET=y +CONFIG_USB_CONFIGFS_RNDIS=y +CONFIG_USB_CONFIGFS_EEM=y +CONFIG_USB_CONFIGFS_PHONET=y +CONFIG_USB_CONFIGFS_MASS_STORAGE=y +CONFIG_USB_CONFIGFS_F_LB_SS=y +CONFIG_USB_CONFIGFS_F_FS=y +CONFIG_USB_CONFIGFS_F_UAC1=y +# CONFIG_USB_CONFIGFS_F_UAC1_LEGACY is not set +CONFIG_USB_CONFIGFS_F_UAC2=y +CONFIG_USB_CONFIGFS_F_MIDI=y +CONFIG_USB_CONFIGFS_F_HID=y +CONFIG_USB_CONFIGFS_F_UVC=y +CONFIG_USB_CONFIGFS_F_PRINTER=y +# CONFIG_USB_CONFIGFS_F_TCM is not set + +# +# USB Gadget precomposed configurations +# +CONFIG_USB_ZERO=m +CONFIG_USB_AUDIO=m +CONFIG_GADGET_UAC1=y +# CONFIG_GADGET_UAC1_LEGACY is not set +CONFIG_USB_ETH=m +CONFIG_USB_ETH_RNDIS=y +CONFIG_USB_ETH_EEM=y +CONFIG_USB_G_NCM=m +CONFIG_USB_GADGETFS=m +CONFIG_USB_FUNCTIONFS=m +CONFIG_USB_FUNCTIONFS_ETH=y +CONFIG_USB_FUNCTIONFS_RNDIS=y +CONFIG_USB_FUNCTIONFS_GENERIC=y +CONFIG_USB_MASS_STORAGE=m +CONFIG_USB_GADGET_TARGET=m +CONFIG_USB_G_SERIAL=m +CONFIG_USB_MIDI_GADGET=m +CONFIG_USB_G_PRINTER=m +CONFIG_USB_CDC_COMPOSITE=m +CONFIG_USB_G_NOKIA=m +CONFIG_USB_G_ACM_MS=m +# CONFIG_USB_G_MULTI is not set +CONFIG_USB_G_HID=m +CONFIG_USB_G_DBGP=m +# CONFIG_USB_G_DBGP_PRINTK is not set +CONFIG_USB_G_DBGP_SERIAL=y +CONFIG_USB_G_WEBCAM=m +CONFIG_USB_RAW_GADGET=m +# end of USB Gadget precomposed configurations + +CONFIG_TYPEC=m +CONFIG_TYPEC_TCPM=m +CONFIG_TYPEC_TCPCI=m +CONFIG_TYPEC_RT1711H=m +CONFIG_TYPEC_MT6360=m +CONFIG_TYPEC_TCPCI_MAXIM=m +CONFIG_TYPEC_FUSB302=m +CONFIG_TYPEC_UCSI=m +CONFIG_UCSI_CCG=m +CONFIG_UCSI_ACPI=m +CONFIG_TYPEC_TPS6598X=m +CONFIG_TYPEC_HD3SS3220=m +CONFIG_TYPEC_STUSB160X=m + +# +# USB Type-C Multiplexer/DeMultiplexer Switch support +# +CONFIG_TYPEC_MUX_PI3USB30532=m +CONFIG_TYPEC_MUX_INTEL_PMC=m +# end of USB Type-C Multiplexer/DeMultiplexer Switch support + +# +# USB Type-C Alternate Mode drivers +# +CONFIG_TYPEC_DP_ALTMODE=m +CONFIG_TYPEC_NVIDIA_ALTMODE=m +# end of USB Type-C Alternate Mode drivers + +CONFIG_USB_ROLE_SWITCH=y +CONFIG_USB_ROLES_INTEL_XHCI=m +CONFIG_MMC=y +CONFIG_MMC_BLOCK=m +CONFIG_MMC_BLOCK_MINORS=8 +CONFIG_SDIO_UART=m +# CONFIG_MMC_TEST is not set +CONFIG_MMC_CRYPTO=y + +# +# MMC/SD/SDIO Host Controller Drivers +# +# CONFIG_MMC_DEBUG is not set +CONFIG_MMC_SDHCI=m +CONFIG_MMC_SDHCI_IO_ACCESSORS=y +CONFIG_MMC_SDHCI_PCI=m +CONFIG_MMC_RICOH_MMC=y +CONFIG_MMC_SDHCI_ACPI=m +CONFIG_MMC_SDHCI_PLTFM=m +CONFIG_MMC_SDHCI_F_SDH30=m +CONFIG_MMC_WBSD=m +CONFIG_MMC_ALCOR=m +CONFIG_MMC_TIFM_SD=m +CONFIG_MMC_SPI=m +CONFIG_MMC_SDRICOH_CS=m +CONFIG_MMC_CB710=m +CONFIG_MMC_VIA_SDMMC=m +CONFIG_MMC_VUB300=m +CONFIG_MMC_USHC=m +CONFIG_MMC_USDHI6ROL0=m +CONFIG_MMC_REALTEK_PCI=m +CONFIG_MMC_REALTEK_USB=m +CONFIG_MMC_CQHCI=m +CONFIG_MMC_HSQ=m +CONFIG_MMC_TOSHIBA_PCI=m +CONFIG_MMC_MTK=m +CONFIG_MMC_SDHCI_XENON=m +CONFIG_MEMSTICK=m +# CONFIG_MEMSTICK_DEBUG is not set + +# +# MemoryStick drivers +# +# CONFIG_MEMSTICK_UNSAFE_RESUME is not set +CONFIG_MSPRO_BLOCK=m +CONFIG_MS_BLOCK=m + +# +# MemoryStick Host Controller Drivers +# +CONFIG_MEMSTICK_TIFM_MS=m +CONFIG_MEMSTICK_JMICRON_38X=m +CONFIG_MEMSTICK_R592=m +CONFIG_MEMSTICK_REALTEK_PCI=m +CONFIG_MEMSTICK_REALTEK_USB=m +CONFIG_NEW_LEDS=y +CONFIG_LEDS_CLASS=y +CONFIG_LEDS_CLASS_FLASH=m +CONFIG_LEDS_CLASS_MULTICOLOR=m +# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set + +# +# LED drivers +# +CONFIG_LEDS_88PM860X=m +CONFIG_LEDS_APU=m +CONFIG_LEDS_LM3530=m +CONFIG_LEDS_LM3532=m +CONFIG_LEDS_LM3533=m +CONFIG_LEDS_LM3642=m +CONFIG_LEDS_MT6323=m +CONFIG_LEDS_PCA9532=m +CONFIG_LEDS_PCA9532_GPIO=y +CONFIG_LEDS_GPIO=m +CONFIG_LEDS_LP3944=m +CONFIG_LEDS_LP3952=m +CONFIG_LEDS_LP50XX=m +CONFIG_LEDS_LP8788=m +CONFIG_LEDS_CLEVO_MAIL=m +CONFIG_LEDS_PCA955X=m +# CONFIG_LEDS_PCA955X_GPIO is not set +CONFIG_LEDS_PCA963X=m +CONFIG_LEDS_WM831X_STATUS=m +CONFIG_LEDS_WM8350=m +CONFIG_LEDS_DA903X=m +CONFIG_LEDS_DA9052=m +CONFIG_LEDS_DAC124S085=m +CONFIG_LEDS_PWM=m +CONFIG_LEDS_REGULATOR=m +CONFIG_LEDS_BD2802=m +CONFIG_LEDS_INTEL_SS4200=m +CONFIG_LEDS_LT3593=m +CONFIG_LEDS_ADP5520=m +CONFIG_LEDS_MC13783=m +CONFIG_LEDS_TCA6507=m +CONFIG_LEDS_TLC591XX=m +CONFIG_LEDS_MAX8997=m +CONFIG_LEDS_LM355x=m +CONFIG_LEDS_MENF21BMC=m + +# +# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) +# +CONFIG_LEDS_BLINKM=m +CONFIG_LEDS_MLXCPLD=m +CONFIG_LEDS_MLXREG=m +CONFIG_LEDS_USER=m +CONFIG_LEDS_NIC78BX=m +CONFIG_LEDS_TI_LMU_COMMON=m +CONFIG_LEDS_LM36274=m +CONFIG_LEDS_TPS6105X=m + +# +# Flash and Torch LED drivers +# +CONFIG_LEDS_AS3645A=m +CONFIG_LEDS_LM3601X=m +# CONFIG_LEDS_RT8515 is not set +CONFIG_LEDS_SGM3140=m + +# +# LED Triggers +# +CONFIG_LEDS_TRIGGERS=y +CONFIG_LEDS_TRIGGER_TIMER=m +CONFIG_LEDS_TRIGGER_ONESHOT=m +CONFIG_LEDS_TRIGGER_DISK=y +# CONFIG_LEDS_TRIGGER_MTD is not set +CONFIG_LEDS_TRIGGER_HEARTBEAT=m +CONFIG_LEDS_TRIGGER_BACKLIGHT=m +CONFIG_LEDS_TRIGGER_CPU=y +CONFIG_LEDS_TRIGGER_ACTIVITY=m +CONFIG_LEDS_TRIGGER_GPIO=m +CONFIG_LEDS_TRIGGER_DEFAULT_ON=m + +# +# iptables trigger is under Netfilter config (LED target) +# +CONFIG_LEDS_TRIGGER_TRANSIENT=m +CONFIG_LEDS_TRIGGER_CAMERA=m +CONFIG_LEDS_TRIGGER_PANIC=y +CONFIG_LEDS_TRIGGER_NETDEV=m +CONFIG_LEDS_TRIGGER_PATTERN=m +CONFIG_LEDS_TRIGGER_AUDIO=m +CONFIG_LEDS_TRIGGER_TTY=m +# CONFIG_ACCESSIBILITY is not set +CONFIG_INFINIBAND=m +CONFIG_INFINIBAND_USER_MAD=m +CONFIG_INFINIBAND_USER_ACCESS=m +CONFIG_INFINIBAND_USER_MEM=y +CONFIG_INFINIBAND_ON_DEMAND_PAGING=y +CONFIG_INFINIBAND_ADDR_TRANS=y +CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS=y +CONFIG_INFINIBAND_VIRT_DMA=y +CONFIG_INFINIBAND_MTHCA=m +# CONFIG_INFINIBAND_MTHCA_DEBUG is not set +CONFIG_INFINIBAND_QIB=m +CONFIG_INFINIBAND_QIB_DCA=y +CONFIG_INFINIBAND_CXGB4=m +CONFIG_INFINIBAND_EFA=m +CONFIG_INFINIBAND_IRDMA=m +CONFIG_MLX4_INFINIBAND=m +CONFIG_MLX5_INFINIBAND=m +CONFIG_INFINIBAND_OCRDMA=m +CONFIG_INFINIBAND_VMWARE_PVRDMA=m +CONFIG_INFINIBAND_USNIC=m +CONFIG_INFINIBAND_BNXT_RE=m +CONFIG_INFINIBAND_HFI1=m +# CONFIG_HFI1_DEBUG_SDMA_ORDER is not set +# CONFIG_SDMA_VERBOSITY is not set +CONFIG_INFINIBAND_QEDR=m +CONFIG_INFINIBAND_RDMAVT=m +CONFIG_RDMA_RXE=m +CONFIG_RDMA_SIW=m +CONFIG_INFINIBAND_IPOIB=m +CONFIG_INFINIBAND_IPOIB_CM=y +# CONFIG_INFINIBAND_IPOIB_DEBUG is not set +CONFIG_INFINIBAND_SRP=m +CONFIG_INFINIBAND_SRPT=m +CONFIG_INFINIBAND_ISER=m +CONFIG_INFINIBAND_ISERT=m +CONFIG_INFINIBAND_RTRS=m +CONFIG_INFINIBAND_RTRS_CLIENT=m +CONFIG_INFINIBAND_RTRS_SERVER=m +CONFIG_INFINIBAND_OPA_VNIC=m +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_EDAC=y +# CONFIG_EDAC_LEGACY_SYSFS is not set +# CONFIG_EDAC_DEBUG is not set +CONFIG_EDAC_DECODE_MCE=m +CONFIG_EDAC_GHES=y +CONFIG_EDAC_AMD64=m +CONFIG_EDAC_E752X=m +CONFIG_EDAC_I82975X=m +CONFIG_EDAC_I3000=m +CONFIG_EDAC_I3200=m +CONFIG_EDAC_IE31200=m +CONFIG_EDAC_X38=m +CONFIG_EDAC_I5400=m +CONFIG_EDAC_I7CORE=m +CONFIG_EDAC_I5000=m +CONFIG_EDAC_I5100=m +CONFIG_EDAC_I7300=m +CONFIG_EDAC_SBRIDGE=m +CONFIG_EDAC_SKX=m +CONFIG_EDAC_I10NM=m +CONFIG_EDAC_PND2=m +CONFIG_EDAC_IGEN6=m +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +CONFIG_RTC_CLASS=y +CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_SYSTOHC_DEVICE="rtc0" +# CONFIG_RTC_DEBUG is not set +CONFIG_RTC_NVMEM=y + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +# CONFIG_RTC_DRV_TEST is not set + +# +# I2C RTC drivers +# +CONFIG_RTC_DRV_88PM860X=m +CONFIG_RTC_DRV_88PM80X=m +CONFIG_RTC_DRV_ABB5ZES3=m +CONFIG_RTC_DRV_ABEOZ9=m +CONFIG_RTC_DRV_ABX80X=m +CONFIG_RTC_DRV_DS1307=m +# CONFIG_RTC_DRV_DS1307_CENTURY is not set +CONFIG_RTC_DRV_DS1374=m +CONFIG_RTC_DRV_DS1374_WDT=y +CONFIG_RTC_DRV_DS1672=m +CONFIG_RTC_DRV_LP8788=m +CONFIG_RTC_DRV_MAX6900=m +CONFIG_RTC_DRV_MAX8907=m +CONFIG_RTC_DRV_MAX8925=m +CONFIG_RTC_DRV_MAX8998=m +CONFIG_RTC_DRV_MAX8997=m +CONFIG_RTC_DRV_RS5C372=m +CONFIG_RTC_DRV_ISL1208=m +CONFIG_RTC_DRV_ISL12022=m +CONFIG_RTC_DRV_X1205=m +CONFIG_RTC_DRV_PCF8523=m +CONFIG_RTC_DRV_PCF85063=m +CONFIG_RTC_DRV_PCF85363=m +CONFIG_RTC_DRV_PCF8563=m +CONFIG_RTC_DRV_PCF8583=m +CONFIG_RTC_DRV_M41T80=m +CONFIG_RTC_DRV_M41T80_WDT=y +CONFIG_RTC_DRV_BQ32K=m +CONFIG_RTC_DRV_PALMAS=m +CONFIG_RTC_DRV_TPS6586X=m +CONFIG_RTC_DRV_TPS65910=m +CONFIG_RTC_DRV_RC5T583=m +CONFIG_RTC_DRV_S35390A=m +CONFIG_RTC_DRV_FM3130=m +CONFIG_RTC_DRV_RX8010=m +CONFIG_RTC_DRV_RX8581=m +CONFIG_RTC_DRV_RX8025=m +CONFIG_RTC_DRV_EM3027=m +CONFIG_RTC_DRV_RV3028=m +CONFIG_RTC_DRV_RV3032=m +CONFIG_RTC_DRV_RV8803=m +CONFIG_RTC_DRV_SD3078=m + +# +# SPI RTC drivers +# +CONFIG_RTC_DRV_M41T93=m +CONFIG_RTC_DRV_M41T94=m +CONFIG_RTC_DRV_DS1302=m +CONFIG_RTC_DRV_DS1305=m +CONFIG_RTC_DRV_DS1343=m +CONFIG_RTC_DRV_DS1347=m +CONFIG_RTC_DRV_DS1390=m +CONFIG_RTC_DRV_MAX6916=m +CONFIG_RTC_DRV_R9701=m +CONFIG_RTC_DRV_RX4581=m +CONFIG_RTC_DRV_RS5C348=m +CONFIG_RTC_DRV_MAX6902=m +CONFIG_RTC_DRV_PCF2123=m +CONFIG_RTC_DRV_MCP795=m +CONFIG_RTC_I2C_AND_SPI=y + +# +# SPI and I2C RTC drivers +# +CONFIG_RTC_DRV_DS3232=m +CONFIG_RTC_DRV_DS3232_HWMON=y +CONFIG_RTC_DRV_PCF2127=m +CONFIG_RTC_DRV_RV3029C2=m +CONFIG_RTC_DRV_RV3029_HWMON=y +CONFIG_RTC_DRV_RX6110=m + +# +# Platform RTC drivers +# +CONFIG_RTC_DRV_CMOS=y +CONFIG_RTC_DRV_DS1286=m +CONFIG_RTC_DRV_DS1511=m +CONFIG_RTC_DRV_DS1553=m +CONFIG_RTC_DRV_DS1685_FAMILY=m +CONFIG_RTC_DRV_DS1685=y +# CONFIG_RTC_DRV_DS1689 is not set +# CONFIG_RTC_DRV_DS17285 is not set +# CONFIG_RTC_DRV_DS17485 is not set +# CONFIG_RTC_DRV_DS17885 is not set +CONFIG_RTC_DRV_DS1742=m +CONFIG_RTC_DRV_DS2404=m +CONFIG_RTC_DRV_DA9052=m +CONFIG_RTC_DRV_DA9055=m +CONFIG_RTC_DRV_DA9063=m +CONFIG_RTC_DRV_STK17TA8=m +CONFIG_RTC_DRV_M48T86=m +CONFIG_RTC_DRV_M48T35=m +CONFIG_RTC_DRV_M48T59=m +CONFIG_RTC_DRV_MSM6242=m +CONFIG_RTC_DRV_BQ4802=m +CONFIG_RTC_DRV_RP5C01=m +CONFIG_RTC_DRV_V3020=m +CONFIG_RTC_DRV_WM831X=m +CONFIG_RTC_DRV_WM8350=m +CONFIG_RTC_DRV_PCF50633=m +CONFIG_RTC_DRV_CROS_EC=m + +# +# on-CPU RTC drivers +# +CONFIG_RTC_DRV_FTRTC010=m +CONFIG_RTC_DRV_PCAP=m +CONFIG_RTC_DRV_MC13XXX=m +CONFIG_RTC_DRV_MT6397=m + +# +# HID Sensor RTC drivers +# +CONFIG_RTC_DRV_HID_SENSOR_TIME=m +CONFIG_RTC_DRV_GOLDFISH=m +CONFIG_RTC_DRV_WILCO_EC=m +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set + +# +# DMA Devices +# +CONFIG_DMA_ENGINE=y +CONFIG_DMA_VIRTUAL_CHANNELS=y +CONFIG_DMA_ACPI=y +CONFIG_ALTERA_MSGDMA=m +CONFIG_INTEL_IDMA64=m +CONFIG_INTEL_IDXD_BUS=m +CONFIG_INTEL_IDXD=m +# CONFIG_INTEL_IDXD_COMPAT is not set +CONFIG_INTEL_IDXD_SVM=y +CONFIG_INTEL_IDXD_PERFMON=y +CONFIG_INTEL_IOATDMA=m +CONFIG_PLX_DMA=m +CONFIG_AMD_PTDMA=m +CONFIG_QCOM_HIDMA_MGMT=m +CONFIG_QCOM_HIDMA=m +CONFIG_DW_DMAC_CORE=m +CONFIG_DW_DMAC=m +CONFIG_DW_DMAC_PCI=m +CONFIG_DW_EDMA=m +CONFIG_DW_EDMA_PCIE=m +CONFIG_HSU_DMA=m +CONFIG_SF_PDMA=m +CONFIG_INTEL_LDMA=y + +# +# DMA Clients +# +CONFIG_ASYNC_TX_DMA=y +# CONFIG_DMATEST is not set +CONFIG_DMA_ENGINE_RAID=y + +# +# DMABUF options +# +CONFIG_SYNC_FILE=y +# CONFIG_SW_SYNC is not set +# CONFIG_UDMABUF is not set +# CONFIG_DMABUF_MOVE_NOTIFY is not set +# CONFIG_DMABUF_DEBUG is not set +# CONFIG_DMABUF_SELFTESTS is not set +# CONFIG_DMABUF_HEAPS is not set +# CONFIG_DMABUF_SYSFS_STATS is not set +# end of DMABUF options + +CONFIG_DCA=m +CONFIG_AUXDISPLAY=y +CONFIG_CHARLCD=m +CONFIG_LINEDISP=m +CONFIG_HD44780_COMMON=m +CONFIG_HD44780=m +CONFIG_KS0108=m +CONFIG_KS0108_PORT=0x378 +CONFIG_KS0108_DELAY=2 +CONFIG_CFAG12864B=m +CONFIG_CFAG12864B_RATE=20 +CONFIG_IMG_ASCII_LCD=m +CONFIG_HT16K33=m +CONFIG_LCD2S=m +CONFIG_PARPORT_PANEL=m +CONFIG_PANEL_PARPORT=0 +CONFIG_PANEL_PROFILE=5 +# CONFIG_PANEL_CHANGE_MESSAGE is not set +# CONFIG_CHARLCD_BL_OFF is not set +# CONFIG_CHARLCD_BL_ON is not set +CONFIG_CHARLCD_BL_FLASH=y +CONFIG_PANEL=m +CONFIG_UIO=m +CONFIG_UIO_CIF=m +CONFIG_UIO_PDRV_GENIRQ=m +CONFIG_UIO_DMEM_GENIRQ=m +CONFIG_UIO_AEC=m +CONFIG_UIO_SERCOS3=m +CONFIG_UIO_PCI_GENERIC=m +CONFIG_UIO_NETX=m +CONFIG_UIO_PRUSS=m +CONFIG_UIO_MF624=m +CONFIG_UIO_HV_GENERIC=m +CONFIG_UIO_DFL=m +CONFIG_VFIO=m +CONFIG_VFIO_IOMMU_TYPE1=m +CONFIG_VFIO_VIRQFD=m +CONFIG_VFIO_NOIOMMU=y +CONFIG_VFIO_PCI_CORE=m +CONFIG_VFIO_PCI_MMAP=y +CONFIG_VFIO_PCI_INTX=y +CONFIG_VFIO_PCI=m +CONFIG_VFIO_PCI_VGA=y +CONFIG_VFIO_PCI_IGD=y +CONFIG_VFIO_MDEV=m +CONFIG_IRQ_BYPASS_MANAGER=m +CONFIG_VIRT_DRIVERS=y +CONFIG_VBOXGUEST=m +CONFIG_NITRO_ENCLAVES=m +CONFIG_VIRTIO=y +CONFIG_VIRTIO_PCI_LIB=y +CONFIG_VIRTIO_PCI_LIB_LEGACY=y +CONFIG_VIRTIO_MENU=y +CONFIG_VIRTIO_PCI=y +CONFIG_VIRTIO_PCI_LEGACY=y +CONFIG_VIRTIO_VDPA=m +CONFIG_VIRTIO_PMEM=m +CONFIG_VIRTIO_BALLOON=y +CONFIG_VIRTIO_MEM=m +CONFIG_VIRTIO_INPUT=m +CONFIG_VIRTIO_MMIO=y +CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES=y +CONFIG_VIRTIO_DMA_SHARED_BUFFER=m +CONFIG_VDPA=m +# CONFIG_VDPA_SIM is not set +CONFIG_VDPA_USER=m +CONFIG_IFCVF=m +CONFIG_MLX5_VDPA=y +CONFIG_MLX5_VDPA_NET=m +CONFIG_VP_VDPA=m +CONFIG_ALIBABA_ENI_VDPA=m +CONFIG_VHOST_IOTLB=m +CONFIG_VHOST_RING=m +CONFIG_VHOST=m +CONFIG_VHOST_MENU=y +CONFIG_VHOST_NET=m +CONFIG_VHOST_SCSI=m +CONFIG_VHOST_VSOCK=m +CONFIG_VHOST_VDPA=m +# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set + +# +# Microsoft Hyper-V guest support +# +CONFIG_HYPERV=m +CONFIG_HYPERV_TIMER=y +CONFIG_HYPERV_UTILS=m +CONFIG_HYPERV_BALLOON=m +# end of Microsoft Hyper-V guest support + +# +# Xen driver support +# +CONFIG_XEN_BALLOON=y +CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y +CONFIG_XEN_MEMORY_HOTPLUG_LIMIT=512 +CONFIG_XEN_SCRUB_PAGES_DEFAULT=y +CONFIG_XEN_DEV_EVTCHN=m +CONFIG_XEN_BACKEND=y +CONFIG_XENFS=m +CONFIG_XEN_COMPAT_XENFS=y +CONFIG_XEN_SYS_HYPERVISOR=y +CONFIG_XEN_XENBUS_FRONTEND=y +CONFIG_XEN_GNTDEV=m +CONFIG_XEN_GRANT_DEV_ALLOC=m +# CONFIG_XEN_GRANT_DMA_ALLOC is not set +CONFIG_SWIOTLB_XEN=y +CONFIG_XEN_PCI_STUB=y +CONFIG_XEN_PCIDEV_BACKEND=m +CONFIG_XEN_PVCALLS_FRONTEND=m +# CONFIG_XEN_PVCALLS_BACKEND is not set +CONFIG_XEN_SCSI_BACKEND=m +CONFIG_XEN_PRIVCMD=m +CONFIG_XEN_ACPI_PROCESSOR=y +CONFIG_XEN_MCE_LOG=y +CONFIG_XEN_HAVE_PVMMU=y +CONFIG_XEN_EFI=y +CONFIG_XEN_AUTO_XLATE=y +CONFIG_XEN_ACPI=y +CONFIG_XEN_SYMS=y +CONFIG_XEN_HAVE_VPMU=y +CONFIG_XEN_FRONT_PGDIR_SHBUF=m +CONFIG_XEN_UNPOPULATED_ALLOC=y +# end of Xen driver support + +# CONFIG_GREYBUS is not set +CONFIG_COMEDI=m +# CONFIG_COMEDI_DEBUG is not set +CONFIG_COMEDI_DEFAULT_BUF_SIZE_KB=2048 +CONFIG_COMEDI_DEFAULT_BUF_MAXSIZE_KB=20480 +CONFIG_COMEDI_MISC_DRIVERS=y +CONFIG_COMEDI_BOND=m +CONFIG_COMEDI_TEST=m +CONFIG_COMEDI_PARPORT=m +CONFIG_COMEDI_ISA_DRIVERS=y +CONFIG_COMEDI_PCL711=m +CONFIG_COMEDI_PCL724=m +CONFIG_COMEDI_PCL726=m +CONFIG_COMEDI_PCL730=m +CONFIG_COMEDI_PCL812=m +CONFIG_COMEDI_PCL816=m +CONFIG_COMEDI_PCL818=m +CONFIG_COMEDI_PCM3724=m +CONFIG_COMEDI_AMPLC_DIO200_ISA=m +CONFIG_COMEDI_AMPLC_PC236_ISA=m +CONFIG_COMEDI_AMPLC_PC263_ISA=m +CONFIG_COMEDI_RTI800=m +CONFIG_COMEDI_RTI802=m +CONFIG_COMEDI_DAC02=m +CONFIG_COMEDI_DAS16M1=m +CONFIG_COMEDI_DAS08_ISA=m +CONFIG_COMEDI_DAS16=m +CONFIG_COMEDI_DAS800=m +CONFIG_COMEDI_DAS1800=m +CONFIG_COMEDI_DAS6402=m +CONFIG_COMEDI_DT2801=m +CONFIG_COMEDI_DT2811=m +CONFIG_COMEDI_DT2814=m +CONFIG_COMEDI_DT2815=m +CONFIG_COMEDI_DT2817=m +CONFIG_COMEDI_DT282X=m +CONFIG_COMEDI_DMM32AT=m +CONFIG_COMEDI_FL512=m +CONFIG_COMEDI_AIO_AIO12_8=m +CONFIG_COMEDI_AIO_IIRO_16=m +CONFIG_COMEDI_II_PCI20KC=m +CONFIG_COMEDI_C6XDIGIO=m +CONFIG_COMEDI_MPC624=m +CONFIG_COMEDI_ADQ12B=m +CONFIG_COMEDI_NI_AT_A2150=m +CONFIG_COMEDI_NI_AT_AO=m +CONFIG_COMEDI_NI_ATMIO=m +CONFIG_COMEDI_NI_ATMIO16D=m +CONFIG_COMEDI_NI_LABPC_ISA=m +CONFIG_COMEDI_PCMAD=m +CONFIG_COMEDI_PCMDA12=m +CONFIG_COMEDI_PCMMIO=m +CONFIG_COMEDI_PCMUIO=m +CONFIG_COMEDI_MULTIQ3=m +CONFIG_COMEDI_S526=m +CONFIG_COMEDI_PCI_DRIVERS=m +CONFIG_COMEDI_8255_PCI=m +CONFIG_COMEDI_ADDI_WATCHDOG=m +CONFIG_COMEDI_ADDI_APCI_1032=m +CONFIG_COMEDI_ADDI_APCI_1500=m +CONFIG_COMEDI_ADDI_APCI_1516=m +CONFIG_COMEDI_ADDI_APCI_1564=m +CONFIG_COMEDI_ADDI_APCI_16XX=m +CONFIG_COMEDI_ADDI_APCI_2032=m +CONFIG_COMEDI_ADDI_APCI_2200=m +CONFIG_COMEDI_ADDI_APCI_3120=m +CONFIG_COMEDI_ADDI_APCI_3501=m +CONFIG_COMEDI_ADDI_APCI_3XXX=m +CONFIG_COMEDI_ADL_PCI6208=m +CONFIG_COMEDI_ADL_PCI7X3X=m +CONFIG_COMEDI_ADL_PCI8164=m +CONFIG_COMEDI_ADL_PCI9111=m +CONFIG_COMEDI_ADL_PCI9118=m +CONFIG_COMEDI_ADV_PCI1710=m +CONFIG_COMEDI_ADV_PCI1720=m +CONFIG_COMEDI_ADV_PCI1723=m +CONFIG_COMEDI_ADV_PCI1724=m +CONFIG_COMEDI_ADV_PCI1760=m +CONFIG_COMEDI_ADV_PCI_DIO=m +CONFIG_COMEDI_AMPLC_DIO200_PCI=m +CONFIG_COMEDI_AMPLC_PC236_PCI=m +CONFIG_COMEDI_AMPLC_PC263_PCI=m +CONFIG_COMEDI_AMPLC_PCI224=m +CONFIG_COMEDI_AMPLC_PCI230=m +CONFIG_COMEDI_CONTEC_PCI_DIO=m +CONFIG_COMEDI_DAS08_PCI=m +CONFIG_COMEDI_DT3000=m +CONFIG_COMEDI_DYNA_PCI10XX=m +CONFIG_COMEDI_GSC_HPDI=m +CONFIG_COMEDI_MF6X4=m +CONFIG_COMEDI_ICP_MULTI=m +CONFIG_COMEDI_DAQBOARD2000=m +CONFIG_COMEDI_JR3_PCI=m +CONFIG_COMEDI_KE_COUNTER=m +CONFIG_COMEDI_CB_PCIDAS64=m +CONFIG_COMEDI_CB_PCIDAS=m +CONFIG_COMEDI_CB_PCIDDA=m +CONFIG_COMEDI_CB_PCIMDAS=m +CONFIG_COMEDI_CB_PCIMDDA=m +CONFIG_COMEDI_ME4000=m +CONFIG_COMEDI_ME_DAQ=m +CONFIG_COMEDI_NI_6527=m +CONFIG_COMEDI_NI_65XX=m +CONFIG_COMEDI_NI_660X=m +CONFIG_COMEDI_NI_670X=m +CONFIG_COMEDI_NI_LABPC_PCI=m +CONFIG_COMEDI_NI_PCIDIO=m +CONFIG_COMEDI_NI_PCIMIO=m +CONFIG_COMEDI_RTD520=m +CONFIG_COMEDI_S626=m +CONFIG_COMEDI_MITE=m +CONFIG_COMEDI_NI_TIOCMD=m +CONFIG_COMEDI_PCMCIA_DRIVERS=m +CONFIG_COMEDI_CB_DAS16_CS=m +CONFIG_COMEDI_DAS08_CS=m +CONFIG_COMEDI_NI_DAQ_700_CS=m +CONFIG_COMEDI_NI_DAQ_DIO24_CS=m +CONFIG_COMEDI_NI_LABPC_CS=m +CONFIG_COMEDI_NI_MIO_CS=m +CONFIG_COMEDI_QUATECH_DAQP_CS=m +CONFIG_COMEDI_USB_DRIVERS=m +CONFIG_COMEDI_DT9812=m +CONFIG_COMEDI_NI_USB6501=m +CONFIG_COMEDI_USBDUX=m +CONFIG_COMEDI_USBDUXFAST=m +CONFIG_COMEDI_USBDUXSIGMA=m +CONFIG_COMEDI_VMK80XX=m +CONFIG_COMEDI_8254=m +CONFIG_COMEDI_8255=m +CONFIG_COMEDI_8255_SA=m +CONFIG_COMEDI_KCOMEDILIB=m +CONFIG_COMEDI_AMPLC_DIO200=m +CONFIG_COMEDI_AMPLC_PC236=m +CONFIG_COMEDI_DAS08=m +CONFIG_COMEDI_ISADMA=m +CONFIG_COMEDI_NI_LABPC=m +CONFIG_COMEDI_NI_LABPC_ISADMA=m +CONFIG_COMEDI_NI_TIO=m +CONFIG_COMEDI_NI_ROUTING=m +# CONFIG_COMEDI_TESTS is not set +CONFIG_STAGING=y +CONFIG_PRISM2_USB=m +CONFIG_RTL8192U=m +CONFIG_RTLLIB=m +CONFIG_RTLLIB_CRYPTO_CCMP=m +CONFIG_RTLLIB_CRYPTO_TKIP=m +CONFIG_RTLLIB_CRYPTO_WEP=m +CONFIG_RTL8192E=m +CONFIG_RTL8723BS=m +CONFIG_R8712U=m +CONFIG_R8188EU=m +CONFIG_RTS5208=m +CONFIG_VT6655=m +CONFIG_VT6656=m + +# +# IIO staging drivers +# + +# +# Accelerometers +# +CONFIG_ADIS16203=m +CONFIG_ADIS16240=m +# end of Accelerometers + +# +# Analog to digital converters +# +CONFIG_AD7816=m +CONFIG_AD7280=m +# end of Analog to digital converters + +# +# Analog digital bi-direction converters +# +CONFIG_ADT7316=m +CONFIG_ADT7316_SPI=m +CONFIG_ADT7316_I2C=m +# end of Analog digital bi-direction converters + +# +# Capacitance to digital converters +# +CONFIG_AD7746=m +# end of Capacitance to digital converters + +# +# Direct Digital Synthesis +# +CONFIG_AD9832=m +CONFIG_AD9834=m +# end of Direct Digital Synthesis + +# +# Network Analyzer, Impedance Converters +# +CONFIG_AD5933=m +# end of Network Analyzer, Impedance Converters + +# +# Active energy metering IC +# +CONFIG_ADE7854=m +CONFIG_ADE7854_I2C=m +CONFIG_ADE7854_SPI=m +# end of Active energy metering IC + +# +# Resolver to digital converters +# +CONFIG_AD2S1210=m +# end of Resolver to digital converters +# end of IIO staging drivers + +CONFIG_FB_SM750=m +CONFIG_STAGING_MEDIA=y +CONFIG_INTEL_ATOMISP=y +# CONFIG_VIDEO_ZORAN is not set +CONFIG_VIDEO_IPU3_IMGU=m +CONFIG_DVB_AV7110_IR=y +CONFIG_DVB_AV7110=m +CONFIG_DVB_AV7110_OSD=y +CONFIG_DVB_BUDGET_PATCH=m +CONFIG_DVB_SP8870=m + +# +# Android +# +# end of Android + +CONFIG_LTE_GDM724X=m +CONFIG_FIREWIRE_SERIAL=m +CONFIG_FWTTY_MAX_TOTAL_PORTS=64 +CONFIG_FWTTY_MAX_CARD_PORTS=32 +CONFIG_GS_FPGABOOT=m +CONFIG_UNISYSSPAR=y +CONFIG_UNISYS_VISORNIC=m +CONFIG_UNISYS_VISORINPUT=m +CONFIG_UNISYS_VISORHBA=m +CONFIG_FB_TFT=m +CONFIG_FB_TFT_AGM1264K_FL=m +CONFIG_FB_TFT_BD663474=m +CONFIG_FB_TFT_HX8340BN=m +CONFIG_FB_TFT_HX8347D=m +CONFIG_FB_TFT_HX8353D=m +CONFIG_FB_TFT_HX8357D=m +CONFIG_FB_TFT_ILI9163=m +CONFIG_FB_TFT_ILI9320=m +CONFIG_FB_TFT_ILI9325=m +CONFIG_FB_TFT_ILI9340=m +CONFIG_FB_TFT_ILI9341=m +CONFIG_FB_TFT_ILI9481=m +CONFIG_FB_TFT_ILI9486=m +CONFIG_FB_TFT_PCD8544=m +CONFIG_FB_TFT_RA8875=m +CONFIG_FB_TFT_S6D02A1=m +CONFIG_FB_TFT_S6D1121=m +CONFIG_FB_TFT_SEPS525=m +CONFIG_FB_TFT_SH1106=m +CONFIG_FB_TFT_SSD1289=m +CONFIG_FB_TFT_SSD1305=m +CONFIG_FB_TFT_SSD1306=m +CONFIG_FB_TFT_SSD1331=m +CONFIG_FB_TFT_SSD1351=m +CONFIG_FB_TFT_ST7735R=m +CONFIG_FB_TFT_ST7789V=m +CONFIG_FB_TFT_TINYLCD=m +CONFIG_FB_TFT_TLS8204=m +CONFIG_FB_TFT_UC1611=m +CONFIG_FB_TFT_UC1701=m +CONFIG_FB_TFT_UPD161704=m +CONFIG_FB_TFT_WATTEROTT=m +CONFIG_MOST_COMPONENTS=m +CONFIG_MOST_NET=m +CONFIG_MOST_VIDEO=m +CONFIG_MOST_I2C=m +CONFIG_KS7010=m +# CONFIG_PI433 is not set +CONFIG_FIELDBUS_DEV=m +CONFIG_QLGE=m +CONFIG_WFX=m +CONFIG_X86_PLATFORM_DEVICES=y +CONFIG_ACPI_WMI=m +CONFIG_WMI_BMOF=m +CONFIG_HUAWEI_WMI=m +CONFIG_MXM_WMI=m +CONFIG_PEAQ_WMI=m +CONFIG_NVIDIA_WMI_EC_BACKLIGHT=m +CONFIG_XIAOMI_WMI=m +CONFIG_GIGABYTE_WMI=m +CONFIG_ACERHDF=m +CONFIG_ACER_WIRELESS=m +CONFIG_ACER_WMI=m +CONFIG_AMD_PMC=m +CONFIG_ADV_SWBUTTON=m +CONFIG_APPLE_GMUX=m +CONFIG_ASUS_LAPTOP=m +CONFIG_ASUS_WIRELESS=m +CONFIG_ASUS_WMI=m +CONFIG_ASUS_NB_WMI=m +CONFIG_MERAKI_MX100=m +CONFIG_EEEPC_LAPTOP=m +CONFIG_EEEPC_WMI=m +CONFIG_X86_PLATFORM_DRIVERS_DELL=y +CONFIG_ALIENWARE_WMI=m +CONFIG_DCDBAS=m +CONFIG_DELL_LAPTOP=m +CONFIG_DELL_RBU=m +CONFIG_DELL_RBTN=m +CONFIG_DELL_SMBIOS=m +CONFIG_DELL_SMBIOS_WMI=y +CONFIG_DELL_SMBIOS_SMM=y +CONFIG_DELL_SMO8800=m +CONFIG_DELL_WMI=m +CONFIG_DELL_WMI_PRIVACY=y +CONFIG_DELL_WMI_AIO=m +CONFIG_DELL_WMI_DESCRIPTOR=m +CONFIG_DELL_WMI_LED=m +CONFIG_DELL_WMI_SYSMAN=m +CONFIG_AMILO_RFKILL=m +CONFIG_FUJITSU_LAPTOP=m +CONFIG_FUJITSU_TABLET=m +CONFIG_GPD_POCKET_FAN=m +CONFIG_HP_ACCEL=m +CONFIG_WIRELESS_HOTKEY=m +CONFIG_HP_WMI=m +CONFIG_IBM_RTL=m +CONFIG_IDEAPAD_LAPTOP=m +CONFIG_SENSORS_HDAPS=m +CONFIG_THINKPAD_ACPI=m +CONFIG_THINKPAD_ACPI_ALSA_SUPPORT=y +CONFIG_THINKPAD_ACPI_DEBUGFACILITIES=y +# CONFIG_THINKPAD_ACPI_DEBUG is not set +# CONFIG_THINKPAD_ACPI_UNSAFE_LEDS is not set +CONFIG_THINKPAD_ACPI_VIDEO=y +CONFIG_THINKPAD_ACPI_HOTKEY_POLL=y +CONFIG_THINKPAD_LMI=m +CONFIG_INTEL_ATOMISP2_PDX86=y +CONFIG_INTEL_ATOMISP2_LED=m +CONFIG_INTEL_SAR_INT1092=m +CONFIG_INTEL_CHT_INT33FE=m +CONFIG_INTEL_SKL_INT3472=m +CONFIG_INTEL_PMC_CORE=y +CONFIG_INTEL_PMT_CLASS=m +CONFIG_INTEL_PMT_TELEMETRY=m +CONFIG_INTEL_PMT_CRASHLOG=m + +# +# Intel Speed Select Technology interface support +# +CONFIG_INTEL_SPEED_SELECT_INTERFACE=m +# end of Intel Speed Select Technology interface support + +CONFIG_INTEL_TELEMETRY=m +CONFIG_INTEL_WMI=y +CONFIG_INTEL_WMI_SBL_FW_UPDATE=m +CONFIG_INTEL_WMI_THUNDERBOLT=m +CONFIG_INTEL_HID_EVENT=m +CONFIG_INTEL_VBTN=m +CONFIG_INTEL_INT0002_VGPIO=m +CONFIG_INTEL_OAKTRAIL=m +CONFIG_INTEL_BXTWC_PMIC_TMU=m +CONFIG_INTEL_CHTDC_TI_PWRBTN=m +CONFIG_INTEL_ISHTP_ECLITE=m +CONFIG_INTEL_MRFLD_PWRBTN=m +CONFIG_INTEL_PUNIT_IPC=m +CONFIG_INTEL_RST=m +CONFIG_INTEL_SMARTCONNECT=m +# CONFIG_INTEL_TURBO_MAX_3 is not set +CONFIG_INTEL_UNCORE_FREQ_CONTROL=m +CONFIG_MSI_LAPTOP=m +CONFIG_MSI_WMI=m +CONFIG_PCENGINES_APU2=m +CONFIG_BARCO_P50_GPIO=m +CONFIG_SAMSUNG_LAPTOP=m +CONFIG_SAMSUNG_Q10=m +CONFIG_ACPI_TOSHIBA=m +CONFIG_TOSHIBA_BT_RFKILL=m +CONFIG_TOSHIBA_HAPS=m +CONFIG_TOSHIBA_WMI=m +CONFIG_ACPI_CMPC=m +CONFIG_COMPAL_LAPTOP=m +CONFIG_LG_LAPTOP=m +CONFIG_PANASONIC_LAPTOP=m +CONFIG_SONY_LAPTOP=m +CONFIG_SONYPI_COMPAT=y +CONFIG_SYSTEM76_ACPI=m +CONFIG_TOPSTAR_LAPTOP=m +CONFIG_I2C_MULTI_INSTANTIATE=m +# CONFIG_MLX_PLATFORM is not set +# CONFIG_TOUCHSCREEN_DMI is not set +CONFIG_FW_ATTR_CLASS=m +CONFIG_INTEL_IPS=m +CONFIG_INTEL_SCU_IPC=y +CONFIG_INTEL_SCU=y +CONFIG_INTEL_SCU_PCI=y +CONFIG_INTEL_SCU_PLATFORM=m +CONFIG_INTEL_SCU_IPC_UTIL=m +CONFIG_PMC_ATOM=y +CONFIG_CHROME_PLATFORMS=y +CONFIG_CHROMEOS_LAPTOP=m +CONFIG_CHROMEOS_PSTORE=m +CONFIG_CHROMEOS_TBMC=m +CONFIG_CROS_EC=m +CONFIG_CROS_EC_I2C=m +CONFIG_CROS_EC_ISHTP=m +CONFIG_CROS_EC_SPI=m +CONFIG_CROS_EC_LPC=m +CONFIG_CROS_EC_PROTO=y +CONFIG_CROS_KBD_LED_BACKLIGHT=m +CONFIG_CROS_EC_CHARDEV=m +CONFIG_CROS_EC_LIGHTBAR=m +CONFIG_CROS_EC_DEBUGFS=m +CONFIG_CROS_EC_SENSORHUB=m +CONFIG_CROS_EC_SYSFS=m +CONFIG_CROS_EC_TYPEC=m +CONFIG_CROS_USBPD_LOGGER=m +CONFIG_CROS_USBPD_NOTIFY=m +CONFIG_WILCO_EC=m +# CONFIG_WILCO_EC_DEBUGFS is not set +CONFIG_WILCO_EC_EVENTS=m +CONFIG_WILCO_EC_TELEMETRY=m +# CONFIG_MELLANOX_PLATFORM is not set +CONFIG_SURFACE_PLATFORMS=y +CONFIG_SURFACE3_WMI=m +CONFIG_SURFACE_3_BUTTON=m +CONFIG_SURFACE_3_POWER_OPREGION=m +CONFIG_SURFACE_ACPI_NOTIFY=m +# CONFIG_SURFACE_AGGREGATOR_CDEV is not set +CONFIG_SURFACE_AGGREGATOR_REGISTRY=m +CONFIG_SURFACE_DTX=m +CONFIG_SURFACE_GPE=m +CONFIG_SURFACE_HOTPLUG=m +CONFIG_SURFACE_PLATFORM_PROFILE=m +CONFIG_SURFACE_PRO3_BUTTON=m +CONFIG_SURFACE_AGGREGATOR=m +CONFIG_SURFACE_AGGREGATOR_BUS=y +# CONFIG_SURFACE_AGGREGATOR_ERROR_INJECTION is not set +CONFIG_HAVE_CLK=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y +CONFIG_COMMON_CLK_WM831X=m +CONFIG_LMK04832=m +CONFIG_COMMON_CLK_MAX9485=m +CONFIG_COMMON_CLK_SI5341=m +CONFIG_COMMON_CLK_SI5351=m +CONFIG_COMMON_CLK_SI544=m +CONFIG_COMMON_CLK_CDCE706=m +CONFIG_COMMON_CLK_CS2000_CP=m +CONFIG_CLK_TWL6040=m +CONFIG_COMMON_CLK_PALMAS=m +CONFIG_COMMON_CLK_PWM=m +CONFIG_XILINX_VCU=m +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_I8253_LOCK=y +CONFIG_CLKBLD_I8253=y +# end of Clock Source drivers + +CONFIG_MAILBOX=y +CONFIG_PCC=y +CONFIG_ALTERA_MBOX=m +CONFIG_IOMMU_IOVA=y +CONFIG_IOASID=y +CONFIG_IOMMU_API=y +CONFIG_IOMMU_SUPPORT=y + +# +# Generic IOMMU Pagetable Support +# +CONFIG_IOMMU_IO_PGTABLE=y +# end of Generic IOMMU Pagetable Support + +# CONFIG_IOMMU_DEBUGFS is not set +# CONFIG_IOMMU_DEFAULT_DMA_STRICT is not set +CONFIG_IOMMU_DEFAULT_DMA_LAZY=y +# CONFIG_IOMMU_DEFAULT_PASSTHROUGH is not set +CONFIG_IOMMU_DMA=y +CONFIG_IOMMU_SVA_LIB=y +CONFIG_AMD_IOMMU=y +CONFIG_AMD_IOMMU_V2=m +CONFIG_DMAR_TABLE=y +CONFIG_INTEL_IOMMU=y +CONFIG_INTEL_IOMMU_SVM=y +# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set +CONFIG_INTEL_IOMMU_FLOPPY_WA=y +# CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON is not set +CONFIG_IRQ_REMAP=y +CONFIG_HYPERV_IOMMU=y +CONFIG_VIRTIO_IOMMU=m + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +CONFIG_RPMSG=m +# CONFIG_RPMSG_CHAR is not set +CONFIG_RPMSG_NS=m +CONFIG_RPMSG_QCOM_GLINK=m +CONFIG_RPMSG_QCOM_GLINK_RPM=m +CONFIG_RPMSG_VIRTIO=m +# end of Rpmsg drivers + +CONFIG_SOUNDWIRE=m + +# +# SoundWire Devices +# +CONFIG_SOUNDWIRE_CADENCE=m +CONFIG_SOUNDWIRE_INTEL=m +CONFIG_SOUNDWIRE_QCOM=m +CONFIG_SOUNDWIRE_GENERIC_ALLOCATION=m + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# end of Amlogic SoC drivers + +# +# Broadcom SoC drivers +# +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# end of NXP/Freescale QorIQ SoC drivers + +# +# i.MX SoC drivers +# +# end of i.MX SoC drivers + +# +# Enable LiteX SoC Builder specific drivers +# +# end of Enable LiteX SoC Builder specific drivers + +# +# Qualcomm SoC drivers +# +CONFIG_QCOM_QMI_HELPERS=m +# end of Qualcomm SoC drivers + +CONFIG_SOC_TI=y + +# +# Xilinx SoC drivers +# +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +CONFIG_PM_DEVFREQ=y + +# +# DEVFREQ Governors +# +CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=y +CONFIG_DEVFREQ_GOV_PERFORMANCE=y +CONFIG_DEVFREQ_GOV_POWERSAVE=y +CONFIG_DEVFREQ_GOV_USERSPACE=y +CONFIG_DEVFREQ_GOV_PASSIVE=m + +# +# DEVFREQ Drivers +# +CONFIG_PM_DEVFREQ_EVENT=y +CONFIG_EXTCON=y + +# +# Extcon Device Drivers +# +CONFIG_EXTCON_ADC_JACK=m +CONFIG_EXTCON_AXP288=m +CONFIG_EXTCON_FSA9480=m +CONFIG_EXTCON_GPIO=m +CONFIG_EXTCON_INTEL_INT3496=m +CONFIG_EXTCON_INTEL_CHT_WC=m +CONFIG_EXTCON_INTEL_MRFLD=m +CONFIG_EXTCON_MAX14577=m +CONFIG_EXTCON_MAX3355=m +CONFIG_EXTCON_MAX77693=m +CONFIG_EXTCON_MAX77843=m +CONFIG_EXTCON_MAX8997=m +CONFIG_EXTCON_PALMAS=m +CONFIG_EXTCON_PTN5150=m +CONFIG_EXTCON_RT8973A=m +CONFIG_EXTCON_SM5502=m +CONFIG_EXTCON_USB_GPIO=m +CONFIG_EXTCON_USBC_CROS_EC=m +CONFIG_EXTCON_USBC_TUSB320=m +CONFIG_MEMORY=y +CONFIG_FPGA_DFL_EMIF=m +CONFIG_IIO=m +CONFIG_IIO_BUFFER=y +CONFIG_IIO_BUFFER_CB=m +CONFIG_IIO_BUFFER_DMA=m +CONFIG_IIO_BUFFER_DMAENGINE=m +CONFIG_IIO_BUFFER_HW_CONSUMER=m +CONFIG_IIO_KFIFO_BUF=m +CONFIG_IIO_TRIGGERED_BUFFER=m +CONFIG_IIO_CONFIGFS=m +CONFIG_IIO_TRIGGER=y +CONFIG_IIO_CONSUMERS_PER_TRIGGER=2 +CONFIG_IIO_SW_DEVICE=m +CONFIG_IIO_SW_TRIGGER=m +CONFIG_IIO_TRIGGERED_EVENT=m + +# +# Accelerometers +# +CONFIG_ADIS16201=m +CONFIG_ADIS16209=m +CONFIG_ADXL313=m +CONFIG_ADXL313_I2C=m +CONFIG_ADXL313_SPI=m +CONFIG_ADXL355=m +CONFIG_ADXL355_I2C=m +CONFIG_ADXL355_SPI=m +CONFIG_ADXL372=m +CONFIG_ADXL372_SPI=m +CONFIG_ADXL372_I2C=m +CONFIG_BMA220=m +CONFIG_BMA400=m +CONFIG_BMA400_I2C=m +CONFIG_BMA400_SPI=m +CONFIG_BMC150_ACCEL=m +CONFIG_BMC150_ACCEL_I2C=m +CONFIG_BMC150_ACCEL_SPI=m +CONFIG_BMI088_ACCEL=m +CONFIG_BMI088_ACCEL_SPI=m +CONFIG_DA280=m +CONFIG_DA311=m +CONFIG_DMARD09=m +CONFIG_DMARD10=m +CONFIG_FXLS8962AF=m +CONFIG_FXLS8962AF_I2C=m +CONFIG_FXLS8962AF_SPI=m +CONFIG_HID_SENSOR_ACCEL_3D=m +CONFIG_IIO_CROS_EC_ACCEL_LEGACY=m +CONFIG_IIO_ST_ACCEL_3AXIS=m +CONFIG_IIO_ST_ACCEL_I2C_3AXIS=m +CONFIG_IIO_ST_ACCEL_SPI_3AXIS=m +CONFIG_KXSD9=m +CONFIG_KXSD9_SPI=m +CONFIG_KXSD9_I2C=m +CONFIG_KXCJK1013=m +CONFIG_MC3230=m +CONFIG_MMA7455=m +CONFIG_MMA7455_I2C=m +CONFIG_MMA7455_SPI=m +CONFIG_MMA7660=m +CONFIG_MMA8452=m +CONFIG_MMA9551_CORE=m +CONFIG_MMA9551=m +CONFIG_MMA9553=m +CONFIG_MXC4005=m +CONFIG_MXC6255=m +CONFIG_SCA3000=m +CONFIG_SCA3300=m +CONFIG_STK8312=m +CONFIG_STK8BA50=m +# end of Accelerometers + +# +# Analog to digital converters +# +CONFIG_AD_SIGMA_DELTA=m +CONFIG_AD7091R5=m +CONFIG_AD7124=m +CONFIG_AD7192=m +CONFIG_AD7266=m +CONFIG_AD7291=m +CONFIG_AD7292=m +CONFIG_AD7298=m +CONFIG_AD7476=m +CONFIG_AD7606=m +CONFIG_AD7606_IFACE_PARALLEL=m +CONFIG_AD7606_IFACE_SPI=m +CONFIG_AD7766=m +CONFIG_AD7768_1=m +CONFIG_AD7780=m +CONFIG_AD7791=m +CONFIG_AD7793=m +CONFIG_AD7887=m +CONFIG_AD7923=m +CONFIG_AD7949=m +CONFIG_AD799X=m +CONFIG_AXP20X_ADC=m +CONFIG_AXP288_ADC=m +CONFIG_CC10001_ADC=m +CONFIG_DA9150_GPADC=m +CONFIG_DLN2_ADC=m +CONFIG_HI8435=m +CONFIG_HX711=m +CONFIG_INA2XX_ADC=m +CONFIG_INTEL_MRFLD_ADC=m +CONFIG_LP8788_ADC=m +CONFIG_LTC2471=m +CONFIG_LTC2485=m +CONFIG_LTC2496=m +CONFIG_LTC2497=m +CONFIG_MAX1027=m +CONFIG_MAX11100=m +CONFIG_MAX1118=m +CONFIG_MAX1241=m +CONFIG_MAX1363=m +CONFIG_MAX9611=m +CONFIG_MCP320X=m +CONFIG_MCP3422=m +CONFIG_MCP3911=m +# CONFIG_MEDIATEK_MT6360_ADC is not set +CONFIG_MEN_Z188_ADC=m +CONFIG_MP2629_ADC=m +CONFIG_NAU7802=m +CONFIG_PALMAS_GPADC=m +CONFIG_QCOM_VADC_COMMON=m +CONFIG_QCOM_SPMI_IADC=m +CONFIG_QCOM_SPMI_VADC=m +CONFIG_QCOM_SPMI_ADC5=m +CONFIG_TI_ADC081C=m +CONFIG_TI_ADC0832=m +CONFIG_TI_ADC084S021=m +CONFIG_TI_ADC12138=m +CONFIG_TI_ADC108S102=m +CONFIG_TI_ADC128S052=m +CONFIG_TI_ADC161S626=m +CONFIG_TI_ADS1015=m +CONFIG_TI_ADS7950=m +CONFIG_TI_ADS131E08=m +CONFIG_TI_AM335X_ADC=m +CONFIG_TI_TLC4541=m +CONFIG_TI_TSC2046=m +CONFIG_TWL4030_MADC=m +CONFIG_TWL6030_GPADC=m +CONFIG_VIPERBOARD_ADC=m +CONFIG_XILINX_XADC=m +# end of Analog to digital converters + +# +# Analog Front Ends +# +# end of Analog Front Ends + +# +# Amplifiers +# +CONFIG_AD8366=m +CONFIG_HMC425=m +# end of Amplifiers + +# +# Capacitance to digital converters +# +CONFIG_AD7150=m +# end of Capacitance to digital converters + +# +# Chemical Sensors +# +CONFIG_ATLAS_PH_SENSOR=m +CONFIG_ATLAS_EZO_SENSOR=m +CONFIG_BME680=m +CONFIG_BME680_I2C=m +CONFIG_BME680_SPI=m +CONFIG_CCS811=m +CONFIG_IAQCORE=m +CONFIG_PMS7003=m +CONFIG_SCD30_CORE=m +CONFIG_SCD30_I2C=m +CONFIG_SCD30_SERIAL=m +CONFIG_SCD4X=m +CONFIG_SENSIRION_SGP30=m +CONFIG_SENSIRION_SGP40=m +CONFIG_SPS30=m +CONFIG_SPS30_I2C=m +CONFIG_SPS30_SERIAL=m +CONFIG_SENSEAIR_SUNRISE_CO2=m +CONFIG_VZ89X=m +# end of Chemical Sensors + +CONFIG_IIO_CROS_EC_SENSORS_CORE=m +CONFIG_IIO_CROS_EC_SENSORS=m +CONFIG_IIO_CROS_EC_SENSORS_LID_ANGLE=m + +# +# Hid Sensor IIO Common +# +CONFIG_HID_SENSOR_IIO_COMMON=m +CONFIG_HID_SENSOR_IIO_TRIGGER=m +# end of Hid Sensor IIO Common + +CONFIG_IIO_MS_SENSORS_I2C=m + +# +# IIO SCMI Sensors +# +# end of IIO SCMI Sensors + +# +# SSP Sensor Common +# +CONFIG_IIO_SSP_SENSORS_COMMONS=m +CONFIG_IIO_SSP_SENSORHUB=m +# end of SSP Sensor Common + +CONFIG_IIO_ST_SENSORS_I2C=m +CONFIG_IIO_ST_SENSORS_SPI=m +CONFIG_IIO_ST_SENSORS_CORE=m + +# +# Digital to analog converters +# +CONFIG_AD5064=m +CONFIG_AD5360=m +CONFIG_AD5380=m +CONFIG_AD5421=m +CONFIG_AD5446=m +CONFIG_AD5449=m +CONFIG_AD5592R_BASE=m +CONFIG_AD5592R=m +CONFIG_AD5593R=m +CONFIG_AD5504=m +CONFIG_AD5624R_SPI=m +CONFIG_AD5686=m +CONFIG_AD5686_SPI=m +CONFIG_AD5696_I2C=m +CONFIG_AD5755=m +CONFIG_AD5758=m +CONFIG_AD5761=m +CONFIG_AD5764=m +CONFIG_AD5766=m +CONFIG_AD5770R=m +CONFIG_AD5791=m +CONFIG_AD7303=m +CONFIG_AD8801=m +CONFIG_DS4424=m +CONFIG_LTC1660=m +CONFIG_LTC2632=m +CONFIG_M62332=m +CONFIG_MAX517=m +CONFIG_MCP4725=m +CONFIG_MCP4922=m +CONFIG_TI_DAC082S085=m +CONFIG_TI_DAC5571=m +CONFIG_TI_DAC7311=m +CONFIG_TI_DAC7612=m +# end of Digital to analog converters + +# +# IIO dummy driver +# +CONFIG_IIO_SIMPLE_DUMMY=m +# CONFIG_IIO_SIMPLE_DUMMY_EVENTS is not set +# CONFIG_IIO_SIMPLE_DUMMY_BUFFER is not set +# end of IIO dummy driver + +# +# Frequency Synthesizers DDS/PLL +# + +# +# Clock Generator/Distribution +# +CONFIG_AD9523=m +# end of Clock Generator/Distribution + +# +# Phase-Locked Loop (PLL) frequency synthesizers +# +CONFIG_ADF4350=m +CONFIG_ADF4371=m +CONFIG_ADRF6780=m +# end of Phase-Locked Loop (PLL) frequency synthesizers +# end of Frequency Synthesizers DDS/PLL + +# +# Digital gyroscope sensors +# +CONFIG_ADIS16080=m +CONFIG_ADIS16130=m +CONFIG_ADIS16136=m +CONFIG_ADIS16260=m +CONFIG_ADXRS290=m +CONFIG_ADXRS450=m +CONFIG_BMG160=m +CONFIG_BMG160_I2C=m +CONFIG_BMG160_SPI=m +CONFIG_FXAS21002C=m +CONFIG_FXAS21002C_I2C=m +CONFIG_FXAS21002C_SPI=m +CONFIG_HID_SENSOR_GYRO_3D=m +CONFIG_MPU3050=m +CONFIG_MPU3050_I2C=m +CONFIG_IIO_ST_GYRO_3AXIS=m +CONFIG_IIO_ST_GYRO_I2C_3AXIS=m +CONFIG_IIO_ST_GYRO_SPI_3AXIS=m +CONFIG_ITG3200=m +# end of Digital gyroscope sensors + +# +# Health Sensors +# + +# +# Heart Rate Monitors +# +CONFIG_AFE4403=m +CONFIG_AFE4404=m +CONFIG_MAX30100=m +CONFIG_MAX30102=m +# end of Heart Rate Monitors +# end of Health Sensors + +# +# Humidity sensors +# +CONFIG_AM2315=m +CONFIG_DHT11=m +CONFIG_HDC100X=m +CONFIG_HDC2010=m +CONFIG_HID_SENSOR_HUMIDITY=m +CONFIG_HTS221=m +CONFIG_HTS221_I2C=m +CONFIG_HTS221_SPI=m +CONFIG_HTU21=m +CONFIG_SI7005=m +CONFIG_SI7020=m +# end of Humidity sensors + +# +# Inertial measurement units +# +CONFIG_ADIS16400=m +CONFIG_ADIS16460=m +CONFIG_ADIS16475=m +CONFIG_ADIS16480=m +CONFIG_BMI160=m +CONFIG_BMI160_I2C=m +CONFIG_BMI160_SPI=m +CONFIG_FXOS8700=m +CONFIG_FXOS8700_I2C=m +CONFIG_FXOS8700_SPI=m +CONFIG_KMX61=m +CONFIG_INV_ICM42600=m +CONFIG_INV_ICM42600_I2C=m +CONFIG_INV_ICM42600_SPI=m +CONFIG_INV_MPU6050_IIO=m +CONFIG_INV_MPU6050_I2C=m +CONFIG_INV_MPU6050_SPI=m +CONFIG_IIO_ST_LSM6DSX=m +CONFIG_IIO_ST_LSM6DSX_I2C=m +CONFIG_IIO_ST_LSM6DSX_SPI=m +CONFIG_IIO_ST_LSM6DSX_I3C=m +CONFIG_IIO_ST_LSM9DS0=m +CONFIG_IIO_ST_LSM9DS0_I2C=m +CONFIG_IIO_ST_LSM9DS0_SPI=m +# end of Inertial measurement units + +CONFIG_IIO_ADIS_LIB=m +CONFIG_IIO_ADIS_LIB_BUFFER=y + +# +# Light sensors +# +CONFIG_ACPI_ALS=m +CONFIG_ADJD_S311=m +CONFIG_ADUX1020=m +CONFIG_AL3010=m +CONFIG_AL3320A=m +CONFIG_APDS9300=m +CONFIG_APDS9960=m +CONFIG_AS73211=m +CONFIG_BH1750=m +CONFIG_BH1780=m +CONFIG_CM32181=m +CONFIG_CM3232=m +CONFIG_CM3323=m +CONFIG_CM36651=m +CONFIG_IIO_CROS_EC_LIGHT_PROX=m +CONFIG_GP2AP002=m +CONFIG_GP2AP020A00F=m +CONFIG_IQS621_ALS=m +CONFIG_SENSORS_ISL29018=m +CONFIG_SENSORS_ISL29028=m +CONFIG_ISL29125=m +CONFIG_HID_SENSOR_ALS=m +CONFIG_HID_SENSOR_PROX=m +CONFIG_JSA1212=m +CONFIG_RPR0521=m +CONFIG_SENSORS_LM3533=m +CONFIG_LTR501=m +CONFIG_LV0104CS=m +CONFIG_MAX44000=m +CONFIG_MAX44009=m +CONFIG_NOA1305=m +CONFIG_OPT3001=m +CONFIG_PA12203001=m +CONFIG_SI1133=m +CONFIG_SI1145=m +CONFIG_STK3310=m +CONFIG_ST_UVIS25=m +CONFIG_ST_UVIS25_I2C=m +CONFIG_ST_UVIS25_SPI=m +CONFIG_TCS3414=m +CONFIG_TCS3472=m +CONFIG_SENSORS_TSL2563=m +CONFIG_TSL2583=m +CONFIG_TSL2591=m +CONFIG_TSL2772=m +CONFIG_TSL4531=m +CONFIG_US5182D=m +CONFIG_VCNL4000=m +CONFIG_VCNL4035=m +CONFIG_VEML6030=m +CONFIG_VEML6070=m +CONFIG_VL6180=m +CONFIG_ZOPT2201=m +# end of Light sensors + +# +# Magnetometer sensors +# +CONFIG_AK8975=m +CONFIG_AK09911=m +CONFIG_BMC150_MAGN=m +CONFIG_BMC150_MAGN_I2C=m +CONFIG_BMC150_MAGN_SPI=m +CONFIG_MAG3110=m +CONFIG_HID_SENSOR_MAGNETOMETER_3D=m +CONFIG_MMC35240=m +CONFIG_IIO_ST_MAGN_3AXIS=m +CONFIG_IIO_ST_MAGN_I2C_3AXIS=m +CONFIG_IIO_ST_MAGN_SPI_3AXIS=m +CONFIG_SENSORS_HMC5843=m +CONFIG_SENSORS_HMC5843_I2C=m +CONFIG_SENSORS_HMC5843_SPI=m +CONFIG_SENSORS_RM3100=m +CONFIG_SENSORS_RM3100_I2C=m +CONFIG_SENSORS_RM3100_SPI=m +CONFIG_YAMAHA_YAS530=m +# end of Magnetometer sensors + +# +# Multiplexers +# +# end of Multiplexers + +# +# Inclinometer sensors +# +CONFIG_HID_SENSOR_INCLINOMETER_3D=m +CONFIG_HID_SENSOR_DEVICE_ROTATION=m +# end of Inclinometer sensors + +# +# Triggers - standalone +# +CONFIG_IIO_HRTIMER_TRIGGER=m +CONFIG_IIO_INTERRUPT_TRIGGER=m +CONFIG_IIO_TIGHTLOOP_TRIGGER=m +CONFIG_IIO_SYSFS_TRIGGER=m +# end of Triggers - standalone + +# +# Linear and angular position sensors +# +CONFIG_IQS624_POS=m +CONFIG_HID_SENSOR_CUSTOM_INTEL_HINGE=m +# end of Linear and angular position sensors + +# +# Digital potentiometers +# +CONFIG_AD5110=m +CONFIG_AD5272=m +CONFIG_DS1803=m +CONFIG_MAX5432=m +CONFIG_MAX5481=m +CONFIG_MAX5487=m +CONFIG_MCP4018=m +CONFIG_MCP4131=m +CONFIG_MCP4531=m +CONFIG_MCP41010=m +CONFIG_TPL0102=m +# end of Digital potentiometers + +# +# Digital potentiostats +# +CONFIG_LMP91000=m +# end of Digital potentiostats + +# +# Pressure sensors +# +CONFIG_ABP060MG=m +CONFIG_BMP280=m +CONFIG_BMP280_I2C=m +CONFIG_BMP280_SPI=m +CONFIG_IIO_CROS_EC_BARO=m +CONFIG_DLHL60D=m +CONFIG_DPS310=m +CONFIG_HID_SENSOR_PRESS=m +CONFIG_HP03=m +CONFIG_ICP10100=m +CONFIG_MPL115=m +CONFIG_MPL115_I2C=m +CONFIG_MPL115_SPI=m +CONFIG_MPL3115=m +CONFIG_MS5611=m +CONFIG_MS5611_I2C=m +CONFIG_MS5611_SPI=m +CONFIG_MS5637=m +CONFIG_IIO_ST_PRESS=m +CONFIG_IIO_ST_PRESS_I2C=m +CONFIG_IIO_ST_PRESS_SPI=m +CONFIG_T5403=m +CONFIG_HP206C=m +CONFIG_ZPA2326=m +CONFIG_ZPA2326_I2C=m +CONFIG_ZPA2326_SPI=m +# end of Pressure sensors + +# +# Lightning sensors +# +CONFIG_AS3935=m +# end of Lightning sensors + +# +# Proximity and distance sensors +# +CONFIG_CROS_EC_MKBP_PROXIMITY=m +CONFIG_ISL29501=m +CONFIG_LIDAR_LITE_V2=m +CONFIG_MB1232=m +CONFIG_PING=m +CONFIG_RFD77402=m +CONFIG_SRF04=m +CONFIG_SX9310=m +CONFIG_SX9500=m +CONFIG_SRF08=m +CONFIG_VCNL3020=m +CONFIG_VL53L0X_I2C=m +# end of Proximity and distance sensors + +# +# Resolver to digital converters +# +CONFIG_AD2S90=m +CONFIG_AD2S1200=m +# end of Resolver to digital converters + +# +# Temperature sensors +# +CONFIG_IQS620AT_TEMP=m +CONFIG_LTC2983=m +CONFIG_MAXIM_THERMOCOUPLE=m +CONFIG_HID_SENSOR_TEMP=m +CONFIG_MLX90614=m +CONFIG_MLX90632=m +CONFIG_TMP006=m +CONFIG_TMP007=m +CONFIG_TMP117=m +CONFIG_TSYS01=m +CONFIG_TSYS02D=m +CONFIG_MAX31856=m +CONFIG_MAX31865=m +# end of Temperature sensors + +CONFIG_NTB=m +CONFIG_NTB_MSI=y +CONFIG_NTB_AMD=m +CONFIG_NTB_IDT=m +CONFIG_NTB_INTEL=m +CONFIG_NTB_EPF=m +CONFIG_NTB_SWITCHTEC=m +CONFIG_NTB_PINGPONG=m +CONFIG_NTB_TOOL=m +CONFIG_NTB_PERF=m +CONFIG_NTB_MSI_TEST=m +CONFIG_NTB_TRANSPORT=m +CONFIG_VME_BUS=y + +# +# VME Bridge Drivers +# +CONFIG_VME_CA91CX42=m +CONFIG_VME_TSI148=m +# CONFIG_VME_FAKE is not set + +# +# VME Board Drivers +# +CONFIG_VMIVME_7805=m + +# +# VME Device Drivers +# +CONFIG_VME_USER=m +CONFIG_PWM=y +CONFIG_PWM_SYSFS=y +# CONFIG_PWM_DEBUG is not set +CONFIG_PWM_CRC=y +CONFIG_PWM_CROS_EC=m +CONFIG_PWM_DWC=m +CONFIG_PWM_IQS620A=m +CONFIG_PWM_LP3943=m +CONFIG_PWM_LPSS=m +CONFIG_PWM_LPSS_PCI=m +CONFIG_PWM_LPSS_PLATFORM=m +CONFIG_PWM_PCA9685=m +CONFIG_PWM_TWL=m +CONFIG_PWM_TWL_LED=m + +# +# IRQ chip support +# +CONFIG_MADERA_IRQ=m +# end of IRQ chip support + +CONFIG_IPACK_BUS=m +CONFIG_BOARD_TPCI200=m +CONFIG_SERIAL_IPOCTAL=m +CONFIG_RESET_CONTROLLER=y +CONFIG_RESET_TI_SYSCON=m + +# +# PHY Subsystem +# +CONFIG_GENERIC_PHY=y +CONFIG_USB_LGM_PHY=m +CONFIG_PHY_CAN_TRANSCEIVER=m + +# +# PHY drivers for Broadcom platforms +# +CONFIG_BCM_KONA_USB2_PHY=m +# end of PHY drivers for Broadcom platforms + +CONFIG_PHY_PXA_28NM_HSIC=m +CONFIG_PHY_PXA_28NM_USB2=m +CONFIG_PHY_CPCAP_USB=m +CONFIG_PHY_QCOM_USB_HS=m +CONFIG_PHY_QCOM_USB_HSIC=m +CONFIG_PHY_SAMSUNG_USB2=m +CONFIG_PHY_TUSB1210=m +CONFIG_PHY_INTEL_LGM_EMMC=m +# end of PHY Subsystem + +CONFIG_POWERCAP=y +CONFIG_INTEL_RAPL_CORE=m +CONFIG_INTEL_RAPL=m +# CONFIG_IDLE_INJECT is not set +# CONFIG_DTPM is not set +CONFIG_MCB=m +CONFIG_MCB_PCI=m +CONFIG_MCB_LPC=m + +# +# Performance monitor support +# +# end of Performance monitor support + +CONFIG_RAS=y +# CONFIG_RAS_CEC is not set +CONFIG_USB4=m +# CONFIG_USB4_DEBUGFS_WRITE is not set +# CONFIG_USB4_DMA_TEST is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# end of Android + +CONFIG_LIBNVDIMM=y +CONFIG_BLK_DEV_PMEM=m +CONFIG_ND_BLK=m +CONFIG_ND_CLAIM=y +CONFIG_ND_BTT=m +CONFIG_BTT=y +CONFIG_ND_PFN=m +CONFIG_NVDIMM_PFN=y +CONFIG_NVDIMM_DAX=y +CONFIG_NVDIMM_KEYS=y +CONFIG_DAX_DRIVER=y +CONFIG_DAX=y +CONFIG_DEV_DAX=m +CONFIG_DEV_DAX_PMEM=m +CONFIG_DEV_DAX_HMEM=m +CONFIG_DEV_DAX_HMEM_DEVICES=y +CONFIG_DEV_DAX_KMEM=m +CONFIG_DEV_DAX_PMEM_COMPAT=m +CONFIG_NVMEM=y +CONFIG_NVMEM_SYSFS=y +CONFIG_NVMEM_SPMI_SDAM=m +CONFIG_RAVE_SP_EEPROM=m +CONFIG_NVMEM_RMEM=m + +# +# HW tracing support +# +CONFIG_STM=m +CONFIG_STM_PROTO_BASIC=m +CONFIG_STM_PROTO_SYS_T=m +CONFIG_STM_DUMMY=m +CONFIG_STM_SOURCE_CONSOLE=m +CONFIG_STM_SOURCE_HEARTBEAT=m +CONFIG_STM_SOURCE_FTRACE=m +CONFIG_INTEL_TH=m +CONFIG_INTEL_TH_PCI=m +CONFIG_INTEL_TH_ACPI=m +CONFIG_INTEL_TH_GTH=m +CONFIG_INTEL_TH_STH=m +CONFIG_INTEL_TH_MSU=m +CONFIG_INTEL_TH_PTI=m +# CONFIG_INTEL_TH_DEBUG is not set +# end of HW tracing support + +CONFIG_FPGA=m +CONFIG_ALTERA_PR_IP_CORE=m +CONFIG_FPGA_MGR_ALTERA_PS_SPI=m +CONFIG_FPGA_MGR_ALTERA_CVP=m +CONFIG_FPGA_MGR_XILINX_SPI=m +CONFIG_FPGA_MGR_MACHXO2_SPI=m +CONFIG_FPGA_BRIDGE=m +CONFIG_ALTERA_FREEZE_BRIDGE=m +CONFIG_XILINX_PR_DECOUPLER=m +CONFIG_FPGA_REGION=m +CONFIG_FPGA_DFL=m +CONFIG_FPGA_DFL_FME=m +CONFIG_FPGA_DFL_FME_MGR=m +CONFIG_FPGA_DFL_FME_BRIDGE=m +CONFIG_FPGA_DFL_FME_REGION=m +CONFIG_FPGA_DFL_AFU=m +CONFIG_FPGA_DFL_NIOS_INTEL_PAC_N3000=m +CONFIG_FPGA_DFL_PCI=m +CONFIG_TEE=m + +# +# TEE drivers +# +CONFIG_AMDTEE=m +# end of TEE drivers + +CONFIG_MULTIPLEXER=m + +# +# Multiplexer drivers +# +CONFIG_MUX_ADG792A=m +CONFIG_MUX_ADGS1408=m +CONFIG_MUX_GPIO=m +# end of Multiplexer drivers + +CONFIG_PM_OPP=y +CONFIG_UNISYS_VISORBUS=m +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +# CONFIG_INTERCONNECT is not set +CONFIG_COUNTER=m +CONFIG_INTERRUPT_CNT=m +CONFIG_INTEL_QEP=m +CONFIG_MOST=m +CONFIG_MOST_USB_HDM=m +CONFIG_MOST_CDEV=m +CONFIG_MOST_SND=m +# end of Device Drivers + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +CONFIG_VALIDATE_FS_PARSER=y +CONFIG_FS_IOMAP=y +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +CONFIG_EXT4_FS=y +CONFIG_EXT4_USE_FOR_EXT2=y +CONFIG_EXT4_FS_POSIX_ACL=y +CONFIG_EXT4_FS_SECURITY=y +# CONFIG_EXT4_DEBUG is not set +CONFIG_JBD2=y +# CONFIG_JBD2_DEBUG is not set +CONFIG_FS_MBCACHE=y +CONFIG_REISERFS_FS=m +# CONFIG_REISERFS_CHECK is not set +# CONFIG_REISERFS_PROC_INFO is not set +CONFIG_REISERFS_FS_XATTR=y +CONFIG_REISERFS_FS_POSIX_ACL=y +CONFIG_REISERFS_FS_SECURITY=y +CONFIG_JFS_FS=m +CONFIG_JFS_POSIX_ACL=y +CONFIG_JFS_SECURITY=y +# CONFIG_JFS_DEBUG is not set +CONFIG_JFS_STATISTICS=y +CONFIG_XFS_FS=m +CONFIG_XFS_SUPPORT_V4=y +CONFIG_XFS_QUOTA=y +CONFIG_XFS_POSIX_ACL=y +CONFIG_XFS_RT=y +# CONFIG_XFS_ONLINE_SCRUB is not set +# CONFIG_XFS_WARN is not set +# CONFIG_XFS_DEBUG is not set +CONFIG_GFS2_FS=m +CONFIG_GFS2_FS_LOCKING_DLM=y +CONFIG_OCFS2_FS=m +CONFIG_OCFS2_FS_O2CB=m +CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m +CONFIG_OCFS2_FS_STATS=y +CONFIG_OCFS2_DEBUG_MASKLOG=y +# CONFIG_OCFS2_DEBUG_FS is not set +CONFIG_BTRFS_FS=m +CONFIG_BTRFS_FS_POSIX_ACL=y +# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set +# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set +# CONFIG_BTRFS_DEBUG is not set +# CONFIG_BTRFS_ASSERT is not set +# CONFIG_BTRFS_FS_REF_VERIFY is not set +CONFIG_NILFS2_FS=m +CONFIG_F2FS_FS=m +CONFIG_F2FS_STAT_FS=y +CONFIG_F2FS_FS_XATTR=y +CONFIG_F2FS_FS_POSIX_ACL=y +CONFIG_F2FS_FS_SECURITY=y +# CONFIG_F2FS_CHECK_FS is not set +# CONFIG_F2FS_FAULT_INJECTION is not set +# CONFIG_F2FS_FS_COMPRESSION is not set +# CONFIG_F2FS_IOSTAT is not set +CONFIG_ZONEFS_FS=m +CONFIG_FS_DAX=y +CONFIG_FS_DAX_PMD=y +CONFIG_FS_POSIX_ACL=y +CONFIG_EXPORTFS=y +# CONFIG_EXPORTFS_BLOCK_OPS is not set +CONFIG_FILE_LOCKING=y +# CONFIG_FS_ENCRYPTION is not set +CONFIG_FS_VERITY=y +# CONFIG_FS_VERITY_DEBUG is not set +# CONFIG_FS_VERITY_BUILTIN_SIGNATURES is not set +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y +CONFIG_QUOTA=y +CONFIG_QUOTA_NETLINK_INTERFACE=y +# CONFIG_PRINT_QUOTA_WARNING is not set +# CONFIG_QUOTA_DEBUG is not set +CONFIG_QUOTA_TREE=m +CONFIG_QFMT_V1=m +CONFIG_QFMT_V2=m +CONFIG_QUOTACTL=y +CONFIG_AUTOFS4_FS=m +CONFIG_AUTOFS_FS=m +CONFIG_FUSE_FS=y +CONFIG_CUSE=m +CONFIG_VIRTIO_FS=m +CONFIG_FUSE_DAX=y +CONFIG_OVERLAY_FS=m +# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set +# CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW is not set +# CONFIG_OVERLAY_FS_INDEX is not set +# CONFIG_OVERLAY_FS_XINO_AUTO is not set +# CONFIG_OVERLAY_FS_METACOPY is not set + +# +# Caches +# +CONFIG_NETFS_SUPPORT=m +CONFIG_NETFS_STATS=y +CONFIG_FSCACHE=m +CONFIG_FSCACHE_STATS=y +# CONFIG_FSCACHE_DEBUG is not set +CONFIG_CACHEFILES=m +# CONFIG_CACHEFILES_DEBUG is not set +# end of Caches + +# +# CD-ROM/DVD Filesystems +# +CONFIG_ISO9660_FS=m +CONFIG_JOLIET=y +CONFIG_ZISOFS=y +CONFIG_UDF_FS=m +# end of CD-ROM/DVD Filesystems + +# +# DOS/FAT/EXFAT/NT Filesystems +# +CONFIG_FAT_FS=y +CONFIG_MSDOS_FS=m +CONFIG_VFAT_FS=y +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +# CONFIG_FAT_DEFAULT_UTF8 is not set +CONFIG_EXFAT_FS=m +CONFIG_EXFAT_DEFAULT_IOCHARSET="utf8" +CONFIG_NTFS_FS=m +# CONFIG_NTFS_DEBUG is not set +# CONFIG_NTFS_RW is not set +CONFIG_NTFS3_FS=m +# CONFIG_NTFS3_64BIT_CLUSTER is not set +CONFIG_NTFS3_LZX_XPRESS=y +# CONFIG_NTFS3_FS_POSIX_ACL is not set +# end of DOS/FAT/EXFAT/NT Filesystems + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_VMCORE=y +# CONFIG_PROC_VMCORE_DEVICE_DUMP is not set +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_PROC_CHILDREN=y +CONFIG_PROC_PID_ARCH_STATUS=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +# CONFIG_TMPFS_INODE64 is not set +CONFIG_HUGETLBFS=y +CONFIG_HUGETLB_PAGE=y +CONFIG_HUGETLB_PAGE_FREE_VMEMMAP=y +CONFIG_HUGETLB_PAGE_FREE_VMEMMAP_DEFAULT_ON=y +CONFIG_MEMFD_CREATE=y +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +CONFIG_CONFIGFS_FS=m +CONFIG_EFIVAR_FS=y +# end of Pseudo filesystems + +CONFIG_MISC_FILESYSTEMS=y +CONFIG_ORANGEFS_FS=m +CONFIG_ADFS_FS=m +# CONFIG_ADFS_FS_RW is not set +CONFIG_AFFS_FS=m +CONFIG_ECRYPT_FS=y +CONFIG_ECRYPT_FS_MESSAGING=y +CONFIG_HFS_FS=m +CONFIG_HFSPLUS_FS=m +CONFIG_BEFS_FS=m +# CONFIG_BEFS_DEBUG is not set +CONFIG_BFS_FS=m +CONFIG_EFS_FS=m +CONFIG_JFFS2_FS=m +CONFIG_JFFS2_FS_DEBUG=0 +CONFIG_JFFS2_FS_WRITEBUFFER=y +# CONFIG_JFFS2_FS_WBUF_VERIFY is not set +# CONFIG_JFFS2_SUMMARY is not set +CONFIG_JFFS2_FS_XATTR=y +CONFIG_JFFS2_FS_POSIX_ACL=y +CONFIG_JFFS2_FS_SECURITY=y +CONFIG_JFFS2_COMPRESSION_OPTIONS=y +CONFIG_JFFS2_ZLIB=y +CONFIG_JFFS2_LZO=y +CONFIG_JFFS2_RTIME=y +# CONFIG_JFFS2_RUBIN is not set +# CONFIG_JFFS2_CMODE_NONE is not set +# CONFIG_JFFS2_CMODE_PRIORITY is not set +# CONFIG_JFFS2_CMODE_SIZE is not set +CONFIG_JFFS2_CMODE_FAVOURLZO=y +CONFIG_UBIFS_FS=m +# CONFIG_UBIFS_FS_ADVANCED_COMPR is not set +CONFIG_UBIFS_FS_LZO=y +CONFIG_UBIFS_FS_ZLIB=y +CONFIG_UBIFS_FS_ZSTD=y +CONFIG_UBIFS_ATIME_SUPPORT=y +CONFIG_UBIFS_FS_XATTR=y +CONFIG_UBIFS_FS_SECURITY=y +CONFIG_UBIFS_FS_AUTHENTICATION=y +CONFIG_CRAMFS=m +CONFIG_CRAMFS_BLOCKDEV=y +# CONFIG_CRAMFS_MTD is not set +CONFIG_SQUASHFS=m +# CONFIG_SQUASHFS_FILE_CACHE is not set +CONFIG_SQUASHFS_FILE_DIRECT=y +# CONFIG_SQUASHFS_DECOMP_SINGLE is not set +# CONFIG_SQUASHFS_DECOMP_MULTI is not set +CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU=y +CONFIG_SQUASHFS_XATTR=y +CONFIG_SQUASHFS_ZLIB=y +CONFIG_SQUASHFS_LZ4=y +CONFIG_SQUASHFS_LZO=y +CONFIG_SQUASHFS_XZ=y +# CONFIG_SQUASHFS_ZSTD is not set +# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set +# CONFIG_SQUASHFS_EMBEDDED is not set +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 +CONFIG_VXFS_FS=m +CONFIG_MINIX_FS=m +CONFIG_OMFS_FS=m +CONFIG_HPFS_FS=m +CONFIG_QNX4FS_FS=m +CONFIG_QNX6FS_FS=m +# CONFIG_QNX6FS_DEBUG is not set +CONFIG_ROMFS_FS=m +CONFIG_ROMFS_BACKED_BY_BLOCK=y +# CONFIG_ROMFS_BACKED_BY_MTD is not set +# CONFIG_ROMFS_BACKED_BY_BOTH is not set +CONFIG_ROMFS_ON_BLOCK=y +CONFIG_PSTORE=y +CONFIG_PSTORE_DEFAULT_KMSG_BYTES=10240 +CONFIG_PSTORE_DEFLATE_COMPRESS=m +# CONFIG_PSTORE_LZO_COMPRESS is not set +# CONFIG_PSTORE_LZ4_COMPRESS is not set +# CONFIG_PSTORE_LZ4HC_COMPRESS is not set +# CONFIG_PSTORE_842_COMPRESS is not set +# CONFIG_PSTORE_ZSTD_COMPRESS is not set +CONFIG_PSTORE_COMPRESS=y +CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y +CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" +# CONFIG_PSTORE_CONSOLE is not set +# CONFIG_PSTORE_PMSG is not set +# CONFIG_PSTORE_FTRACE is not set +CONFIG_PSTORE_RAM=m +# CONFIG_PSTORE_BLK is not set +CONFIG_SYSV_FS=m +CONFIG_UFS_FS=m +# CONFIG_UFS_FS_WRITE is not set +# CONFIG_UFS_DEBUG is not set +CONFIG_EROFS_FS=m +# CONFIG_EROFS_FS_DEBUG is not set +CONFIG_EROFS_FS_XATTR=y +CONFIG_EROFS_FS_POSIX_ACL=y +CONFIG_EROFS_FS_SECURITY=y +# CONFIG_EROFS_FS_ZIP is not set +CONFIG_VBOXSF_FS=m +CONFIG_NETWORK_FILESYSTEMS=y +CONFIG_NFS_FS=m +CONFIG_NFS_V2=m +CONFIG_NFS_V3=m +CONFIG_NFS_V3_ACL=y +CONFIG_NFS_V4=m +CONFIG_NFS_SWAP=y +CONFIG_NFS_V4_1=y +CONFIG_NFS_V4_2=y +CONFIG_PNFS_FILE_LAYOUT=m +CONFIG_PNFS_BLOCK=m +CONFIG_PNFS_FLEXFILE_LAYOUT=m +CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org" +CONFIG_NFS_V4_1_MIGRATION=y +CONFIG_NFS_V4_SECURITY_LABEL=y +CONFIG_NFS_FSCACHE=y +# CONFIG_NFS_USE_LEGACY_DNS is not set +CONFIG_NFS_USE_KERNEL_DNS=y +CONFIG_NFS_DEBUG=y +# CONFIG_NFS_DISABLE_UDP_SUPPORT is not set +# CONFIG_NFS_V4_2_READ_PLUS is not set +CONFIG_NFSD=m +CONFIG_NFSD_V2_ACL=y +CONFIG_NFSD_V3=y +CONFIG_NFSD_V3_ACL=y +CONFIG_NFSD_V4=y +# CONFIG_NFSD_BLOCKLAYOUT is not set +# CONFIG_NFSD_SCSILAYOUT is not set +# CONFIG_NFSD_FLEXFILELAYOUT is not set +# CONFIG_NFSD_V4_2_INTER_SSC is not set +CONFIG_NFSD_V4_SECURITY_LABEL=y +CONFIG_GRACE_PERIOD=m +CONFIG_LOCKD=m +CONFIG_LOCKD_V4=y +CONFIG_NFS_ACL_SUPPORT=m +CONFIG_NFS_COMMON=y +CONFIG_NFS_V4_2_SSC_HELPER=y +CONFIG_SUNRPC=m +CONFIG_SUNRPC_GSS=m +CONFIG_SUNRPC_BACKCHANNEL=y +CONFIG_SUNRPC_SWAP=y +CONFIG_RPCSEC_GSS_KRB5=m +CONFIG_SUNRPC_DISABLE_INSECURE_ENCTYPES=y +CONFIG_SUNRPC_DEBUG=y +CONFIG_SUNRPC_XPRT_RDMA=m +CONFIG_CEPH_FS=m +CONFIG_CEPH_FSCACHE=y +CONFIG_CEPH_FS_POSIX_ACL=y +CONFIG_CEPH_FS_SECURITY_LABEL=y +CONFIG_CIFS=m +# CONFIG_CIFS_STATS2 is not set +CONFIG_CIFS_ALLOW_INSECURE_LEGACY=y +CONFIG_CIFS_UPCALL=y +CONFIG_CIFS_XATTR=y +CONFIG_CIFS_POSIX=y +CONFIG_CIFS_DEBUG=y +# CONFIG_CIFS_DEBUG2 is not set +# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set +CONFIG_CIFS_DFS_UPCALL=y +CONFIG_CIFS_SWN_UPCALL=y +# CONFIG_CIFS_SMB_DIRECT is not set +CONFIG_CIFS_FSCACHE=y +# CONFIG_SMB_SERVER is not set +CONFIG_SMBFS_COMMON=m +CONFIG_CODA_FS=m +CONFIG_AFS_FS=m +# CONFIG_AFS_DEBUG is not set +CONFIG_AFS_FSCACHE=y +# CONFIG_AFS_DEBUG_CURSOR is not set +CONFIG_9P_FS=m +CONFIG_9P_FSCACHE=y +CONFIG_9P_FS_POSIX_ACL=y +CONFIG_9P_FS_SECURITY=y +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="utf8" +CONFIG_NLS_CODEPAGE_437=y +CONFIG_NLS_CODEPAGE_737=m +CONFIG_NLS_CODEPAGE_775=m +CONFIG_NLS_CODEPAGE_850=m +CONFIG_NLS_CODEPAGE_852=m +CONFIG_NLS_CODEPAGE_855=m +CONFIG_NLS_CODEPAGE_857=m +CONFIG_NLS_CODEPAGE_860=m +CONFIG_NLS_CODEPAGE_861=m +CONFIG_NLS_CODEPAGE_862=m +CONFIG_NLS_CODEPAGE_863=m +CONFIG_NLS_CODEPAGE_864=m +CONFIG_NLS_CODEPAGE_865=m +CONFIG_NLS_CODEPAGE_866=m +CONFIG_NLS_CODEPAGE_869=m +CONFIG_NLS_CODEPAGE_936=m +CONFIG_NLS_CODEPAGE_950=m +CONFIG_NLS_CODEPAGE_932=m +CONFIG_NLS_CODEPAGE_949=m +CONFIG_NLS_CODEPAGE_874=m +CONFIG_NLS_ISO8859_8=m +CONFIG_NLS_CODEPAGE_1250=m +CONFIG_NLS_CODEPAGE_1251=m +CONFIG_NLS_ASCII=m +CONFIG_NLS_ISO8859_1=m +CONFIG_NLS_ISO8859_2=m +CONFIG_NLS_ISO8859_3=m +CONFIG_NLS_ISO8859_4=m +CONFIG_NLS_ISO8859_5=m +CONFIG_NLS_ISO8859_6=m +CONFIG_NLS_ISO8859_7=m +CONFIG_NLS_ISO8859_9=m +CONFIG_NLS_ISO8859_13=m +CONFIG_NLS_ISO8859_14=m +CONFIG_NLS_ISO8859_15=m +CONFIG_NLS_KOI8_R=m +CONFIG_NLS_KOI8_U=m +CONFIG_NLS_MAC_ROMAN=m +CONFIG_NLS_MAC_CELTIC=m +CONFIG_NLS_MAC_CENTEURO=m +CONFIG_NLS_MAC_CROATIAN=m +CONFIG_NLS_MAC_CYRILLIC=m +CONFIG_NLS_MAC_GAELIC=m +CONFIG_NLS_MAC_GREEK=m +CONFIG_NLS_MAC_ICELAND=m +CONFIG_NLS_MAC_INUIT=m +CONFIG_NLS_MAC_ROMANIAN=m +CONFIG_NLS_MAC_TURKISH=m +CONFIG_NLS_UTF8=m +CONFIG_DLM=m +# CONFIG_DLM_DEBUG is not set +# CONFIG_UNICODE is not set +CONFIG_IO_WQ=y +# end of File systems + +# +# Security options +# +CONFIG_KEYS=y +CONFIG_KEYS_REQUEST_CACHE=y +CONFIG_PERSISTENT_KEYRINGS=y +CONFIG_TRUSTED_KEYS=y +CONFIG_ENCRYPTED_KEYS=y +CONFIG_KEY_DH_OPERATIONS=y +CONFIG_KEY_NOTIFICATIONS=y +# CONFIG_SECURITY_DMESG_RESTRICT is not set +CONFIG_SECURITY=y +CONFIG_SECURITY_WRITABLE_HOOKS=y +CONFIG_SECURITYFS=y +CONFIG_SECURITY_NETWORK=y +CONFIG_PAGE_TABLE_ISOLATION=y +# CONFIG_SECURITY_INFINIBAND is not set +CONFIG_SECURITY_NETWORK_XFRM=y +CONFIG_SECURITY_PATH=y +CONFIG_INTEL_TXT=y +CONFIG_LSM_MMAP_MIN_ADDR=0 +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +CONFIG_HARDENED_USERCOPY=y +# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set +CONFIG_FORTIFY_SOURCE=y +# CONFIG_STATIC_USERMODEHELPER is not set +CONFIG_SECURITY_SELINUX=y +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SECURITY_SELINUX_DISABLE=y +CONFIG_SECURITY_SELINUX_DEVELOP=y +CONFIG_SECURITY_SELINUX_AVC_STATS=y +CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 +CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS=9 +CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE=256 +CONFIG_SECURITY_SMACK=y +# CONFIG_SECURITY_SMACK_BRINGUP is not set +CONFIG_SECURITY_SMACK_NETFILTER=y +# CONFIG_SECURITY_SMACK_APPEND_SIGNALS is not set +CONFIG_SECURITY_TOMOYO=y +CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY=2048 +CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG=1024 +# CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER is not set +CONFIG_SECURITY_TOMOYO_POLICY_LOADER="/sbin/tomoyo-init" +CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER="/sbin/init" +# CONFIG_SECURITY_TOMOYO_INSECURE_BUILTIN_SETTING is not set +CONFIG_SECURITY_APPARMOR=y +CONFIG_SECURITY_APPARMOR_HASH=y +CONFIG_SECURITY_APPARMOR_HASH_DEFAULT=y +# CONFIG_SECURITY_APPARMOR_DEBUG is not set +# CONFIG_SECURITY_LOADPIN is not set +CONFIG_SECURITY_YAMA=y +# CONFIG_SECURITY_SAFESETID is not set +# CONFIG_SECURITY_LOCKDOWN_LSM is not set +CONFIG_SECURITY_LANDLOCK=y +CONFIG_INTEGRITY=y +CONFIG_INTEGRITY_SIGNATURE=y +CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y +CONFIG_INTEGRITY_TRUSTED_KEYRING=y +CONFIG_INTEGRITY_AUDIT=y +CONFIG_IMA=y +CONFIG_IMA_MEASURE_PCR_IDX=10 +CONFIG_IMA_LSM_RULES=y +# CONFIG_IMA_TEMPLATE is not set +CONFIG_IMA_NG_TEMPLATE=y +# CONFIG_IMA_SIG_TEMPLATE is not set +CONFIG_IMA_DEFAULT_TEMPLATE="ima-ng" +CONFIG_IMA_DEFAULT_HASH_SHA1=y +# CONFIG_IMA_DEFAULT_HASH_SHA256 is not set +# CONFIG_IMA_DEFAULT_HASH_SHA512 is not set +CONFIG_IMA_DEFAULT_HASH="sha1" +# CONFIG_IMA_WRITE_POLICY is not set +# CONFIG_IMA_READ_POLICY is not set +CONFIG_IMA_APPRAISE=y +# CONFIG_IMA_ARCH_POLICY is not set +# CONFIG_IMA_APPRAISE_BUILD_POLICY is not set +CONFIG_IMA_APPRAISE_BOOTPARAM=y +# CONFIG_IMA_APPRAISE_MODSIG is not set +CONFIG_IMA_TRUSTED_KEYRING=y +CONFIG_IMA_BLACKLIST_KEYRING=y +# CONFIG_IMA_LOAD_X509 is not set +CONFIG_IMA_MEASURE_ASYMMETRIC_KEYS=y +CONFIG_IMA_QUEUE_EARLY_BOOT_KEYS=y +# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set +CONFIG_IMA_DISABLE_HTABLE=y +CONFIG_EVM=y +CONFIG_EVM_ATTR_FSUUID=y +CONFIG_EVM_EXTRA_SMACK_XATTRS=y +# CONFIG_EVM_ADD_XATTRS is not set +# CONFIG_EVM_LOAD_X509 is not set +# CONFIG_DEFAULT_SECURITY_SELINUX is not set +# CONFIG_DEFAULT_SECURITY_SMACK is not set +# CONFIG_DEFAULT_SECURITY_TOMOYO is not set +CONFIG_DEFAULT_SECURITY_APPARMOR=y +# CONFIG_DEFAULT_SECURITY_DAC is not set +CONFIG_LSM="yama,loadpin,safesetid,integrity,apparmor,selinux,smack,tomoyo" + +# +# Kernel hardening options +# +CONFIG_GCC_PLUGIN_STRUCTLEAK=y + +# +# Memory initialization +# +# CONFIG_INIT_STACK_NONE is not set +# CONFIG_GCC_PLUGIN_STRUCTLEAK_USER is not set +# CONFIG_GCC_PLUGIN_STRUCTLEAK_BYREF is not set +CONFIG_GCC_PLUGIN_STRUCTLEAK_BYREF_ALL=y +# CONFIG_GCC_PLUGIN_STRUCTLEAK_VERBOSE is not set +CONFIG_GCC_PLUGIN_STACKLEAK=y +CONFIG_STACKLEAK_TRACK_MIN_SIZE=100 +# CONFIG_STACKLEAK_METRICS is not set +CONFIG_STACKLEAK_RUNTIME_DISABLE=y +CONFIG_INIT_ON_ALLOC_DEFAULT_ON=y +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +CONFIG_CC_HAS_ZERO_CALL_USED_REGS=y +CONFIG_ZERO_CALL_USED_REGS=y +# end of Memory initialization +# end of Kernel hardening options +# end of Security options + +CONFIG_XOR_BLOCKS=m +CONFIG_ASYNC_CORE=m +CONFIG_ASYNC_MEMCPY=m +CONFIG_ASYNC_XOR=m +CONFIG_ASYNC_PQ=m +CONFIG_ASYNC_RAID6_RECOV=m +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_SKCIPHER=y +CONFIG_CRYPTO_SKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_RNG_DEFAULT=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_AKCIPHER=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_KPP=y +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +CONFIG_CRYPTO_USER=m +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +CONFIG_CRYPTO_GF128MUL=y +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +CONFIG_CRYPTO_PCRYPT=m +CONFIG_CRYPTO_CRYPTD=m +CONFIG_CRYPTO_AUTHENC=m +CONFIG_CRYPTO_TEST=m +CONFIG_CRYPTO_SIMD=m +CONFIG_CRYPTO_ENGINE=m + +# +# Public-key cryptography +# +CONFIG_CRYPTO_RSA=y +CONFIG_CRYPTO_DH=y +CONFIG_CRYPTO_ECC=m +CONFIG_CRYPTO_ECDH=m +CONFIG_CRYPTO_ECDSA=m +CONFIG_CRYPTO_ECRDSA=m +CONFIG_CRYPTO_SM2=m +CONFIG_CRYPTO_CURVE25519=m +CONFIG_CRYPTO_CURVE25519_X86=m + +# +# Authenticated Encryption with Associated Data +# +CONFIG_CRYPTO_CCM=m +CONFIG_CRYPTO_GCM=y +CONFIG_CRYPTO_CHACHA20POLY1305=m +CONFIG_CRYPTO_AEGIS128=m +CONFIG_CRYPTO_AEGIS128_AESNI_SSE2=m +CONFIG_CRYPTO_SEQIV=y +CONFIG_CRYPTO_ECHAINIV=m + +# +# Block modes +# +CONFIG_CRYPTO_CBC=y +CONFIG_CRYPTO_CFB=m +CONFIG_CRYPTO_CTR=y +CONFIG_CRYPTO_CTS=m +CONFIG_CRYPTO_ECB=y +CONFIG_CRYPTO_LRW=m +CONFIG_CRYPTO_OFB=m +CONFIG_CRYPTO_PCBC=m +CONFIG_CRYPTO_XTS=m +CONFIG_CRYPTO_KEYWRAP=m +CONFIG_CRYPTO_NHPOLY1305=m +CONFIG_CRYPTO_NHPOLY1305_SSE2=m +CONFIG_CRYPTO_NHPOLY1305_AVX2=m +CONFIG_CRYPTO_ADIANTUM=m +CONFIG_CRYPTO_ESSIV=m + +# +# Hash modes +# +CONFIG_CRYPTO_CMAC=m +CONFIG_CRYPTO_HMAC=y +CONFIG_CRYPTO_XCBC=m +CONFIG_CRYPTO_VMAC=m + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=y +CONFIG_CRYPTO_CRC32C_INTEL=y +CONFIG_CRYPTO_CRC32=m +CONFIG_CRYPTO_CRC32_PCLMUL=m +CONFIG_CRYPTO_XXHASH=m +CONFIG_CRYPTO_BLAKE2B=m +CONFIG_CRYPTO_BLAKE2S=m +CONFIG_CRYPTO_BLAKE2S_X86=m +CONFIG_CRYPTO_CRCT10DIF=y +CONFIG_CRYPTO_CRCT10DIF_PCLMUL=m +CONFIG_CRYPTO_GHASH=y +CONFIG_CRYPTO_POLY1305=m +CONFIG_CRYPTO_POLY1305_X86_64=m +CONFIG_CRYPTO_MD4=m +CONFIG_CRYPTO_MD5=y +CONFIG_CRYPTO_MICHAEL_MIC=m +CONFIG_CRYPTO_RMD160=m +CONFIG_CRYPTO_SHA1=y +CONFIG_CRYPTO_SHA1_SSSE3=m +CONFIG_CRYPTO_SHA256_SSSE3=m +CONFIG_CRYPTO_SHA512_SSSE3=m +CONFIG_CRYPTO_SHA256=y +CONFIG_CRYPTO_SHA512=y +CONFIG_CRYPTO_SHA3=m +CONFIG_CRYPTO_SM3=m +CONFIG_CRYPTO_STREEBOG=m +CONFIG_CRYPTO_WP512=m +CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL=m + +# +# Ciphers +# +CONFIG_CRYPTO_AES=y +CONFIG_CRYPTO_AES_TI=m +CONFIG_CRYPTO_AES_NI_INTEL=m +CONFIG_CRYPTO_ANUBIS=m +CONFIG_CRYPTO_ARC4=m +CONFIG_CRYPTO_BLOWFISH=m +CONFIG_CRYPTO_BLOWFISH_COMMON=m +CONFIG_CRYPTO_BLOWFISH_X86_64=m +CONFIG_CRYPTO_CAMELLIA=m +CONFIG_CRYPTO_CAMELLIA_X86_64=m +CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64=m +CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64=m +CONFIG_CRYPTO_CAST_COMMON=m +CONFIG_CRYPTO_CAST5=m +CONFIG_CRYPTO_CAST5_AVX_X86_64=m +CONFIG_CRYPTO_CAST6=m +CONFIG_CRYPTO_CAST6_AVX_X86_64=m +CONFIG_CRYPTO_DES=m +CONFIG_CRYPTO_DES3_EDE_X86_64=m +CONFIG_CRYPTO_FCRYPT=m +CONFIG_CRYPTO_KHAZAD=m +CONFIG_CRYPTO_CHACHA20=m +CONFIG_CRYPTO_CHACHA20_X86_64=m +CONFIG_CRYPTO_SEED=m +CONFIG_CRYPTO_SERPENT=m +CONFIG_CRYPTO_SERPENT_SSE2_X86_64=m +CONFIG_CRYPTO_SERPENT_AVX_X86_64=m +CONFIG_CRYPTO_SERPENT_AVX2_X86_64=m +CONFIG_CRYPTO_SM4=m +CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64=m +CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64=m +CONFIG_CRYPTO_TEA=m +CONFIG_CRYPTO_TWOFISH=m +CONFIG_CRYPTO_TWOFISH_COMMON=m +CONFIG_CRYPTO_TWOFISH_X86_64=m +CONFIG_CRYPTO_TWOFISH_X86_64_3WAY=m +CONFIG_CRYPTO_TWOFISH_AVX_X86_64=m + +# +# Compression +# +CONFIG_CRYPTO_DEFLATE=m +CONFIG_CRYPTO_LZO=y +CONFIG_CRYPTO_842=m +CONFIG_CRYPTO_LZ4=m +CONFIG_CRYPTO_LZ4HC=m +CONFIG_CRYPTO_ZSTD=m + +# +# Random Number Generation +# +CONFIG_CRYPTO_ANSI_CPRNG=m +CONFIG_CRYPTO_DRBG_MENU=y +CONFIG_CRYPTO_DRBG_HMAC=y +CONFIG_CRYPTO_DRBG_HASH=y +CONFIG_CRYPTO_DRBG_CTR=y +CONFIG_CRYPTO_DRBG=y +CONFIG_CRYPTO_JITTERENTROPY=y +CONFIG_CRYPTO_USER_API=m +CONFIG_CRYPTO_USER_API_HASH=m +CONFIG_CRYPTO_USER_API_SKCIPHER=m +CONFIG_CRYPTO_USER_API_RNG=m +# CONFIG_CRYPTO_USER_API_RNG_CAVP is not set +CONFIG_CRYPTO_USER_API_AEAD=m +CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE=y +# CONFIG_CRYPTO_STATS is not set +CONFIG_CRYPTO_HASH_INFO=y + +# +# Crypto library routines +# +CONFIG_CRYPTO_LIB_AES=y +CONFIG_CRYPTO_LIB_ARC4=m +CONFIG_CRYPTO_ARCH_HAVE_LIB_BLAKE2S=m +CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=m +CONFIG_CRYPTO_LIB_BLAKE2S=m +CONFIG_CRYPTO_ARCH_HAVE_LIB_CHACHA=m +CONFIG_CRYPTO_LIB_CHACHA_GENERIC=m +CONFIG_CRYPTO_LIB_CHACHA=m +CONFIG_CRYPTO_ARCH_HAVE_LIB_CURVE25519=m +CONFIG_CRYPTO_LIB_CURVE25519_GENERIC=m +CONFIG_CRYPTO_LIB_CURVE25519=m +CONFIG_CRYPTO_LIB_DES=m +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 +CONFIG_CRYPTO_ARCH_HAVE_LIB_POLY1305=m +CONFIG_CRYPTO_LIB_POLY1305_GENERIC=m +CONFIG_CRYPTO_LIB_POLY1305=m +CONFIG_CRYPTO_LIB_CHACHA20POLY1305=m +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_LIB_SM4=m +CONFIG_CRYPTO_HW=y +CONFIG_CRYPTO_DEV_PADLOCK=y +CONFIG_CRYPTO_DEV_PADLOCK_AES=m +CONFIG_CRYPTO_DEV_PADLOCK_SHA=m +CONFIG_CRYPTO_DEV_ATMEL_I2C=m +CONFIG_CRYPTO_DEV_ATMEL_ECC=m +CONFIG_CRYPTO_DEV_ATMEL_SHA204A=m +CONFIG_CRYPTO_DEV_CCP=y +CONFIG_CRYPTO_DEV_CCP_DD=m +CONFIG_CRYPTO_DEV_SP_CCP=y +CONFIG_CRYPTO_DEV_CCP_CRYPTO=m +CONFIG_CRYPTO_DEV_SP_PSP=y +# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set +CONFIG_CRYPTO_DEV_QAT=m +CONFIG_CRYPTO_DEV_QAT_DH895xCC=m +CONFIG_CRYPTO_DEV_QAT_C3XXX=m +CONFIG_CRYPTO_DEV_QAT_C62X=m +CONFIG_CRYPTO_DEV_QAT_4XXX=m +CONFIG_CRYPTO_DEV_QAT_DH895xCCVF=m +CONFIG_CRYPTO_DEV_QAT_C3XXXVF=m +CONFIG_CRYPTO_DEV_QAT_C62XVF=m +CONFIG_CRYPTO_DEV_NITROX=m +CONFIG_CRYPTO_DEV_NITROX_CNN55XX=m +CONFIG_CRYPTO_DEV_CHELSIO=m +CONFIG_CRYPTO_DEV_VIRTIO=m +CONFIG_CRYPTO_DEV_SAFEXCEL=m +CONFIG_CRYPTO_DEV_AMLOGIC_GXL=m +# CONFIG_CRYPTO_DEV_AMLOGIC_GXL_DEBUG is not set +CONFIG_ASYMMETRIC_KEY_TYPE=y +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y +CONFIG_ASYMMETRIC_TPM_KEY_SUBTYPE=m +CONFIG_X509_CERTIFICATE_PARSER=y +CONFIG_PKCS8_PRIVATE_KEY_PARSER=m +CONFIG_TPM_KEY_PARSER=m +CONFIG_PKCS7_MESSAGE_PARSER=y +# CONFIG_PKCS7_TEST_KEY is not set +# CONFIG_SIGNED_PE_FILE_VERIFICATION is not set + +# +# Certificates for signature checking +# +CONFIG_SYSTEM_TRUSTED_KEYRING=y +CONFIG_SYSTEM_TRUSTED_KEYS="" +# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set +# CONFIG_SECONDARY_TRUSTED_KEYRING is not set +# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set +# end of Certificates for signature checking + +CONFIG_BINARY_PRINTF=y + +# +# Library routines +# +CONFIG_RAID6_PQ=m +CONFIG_RAID6_PQ_BENCHMARK=y +CONFIG_LINEAR_RANGES=y +CONFIG_PACKING=y +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +CONFIG_CORDIC=m +CONFIG_PRIME_NUMBERS=m +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +CONFIG_ARCH_USE_SYM_ANNOTATIONS=y +CONFIG_CRC_CCITT=y +CONFIG_CRC16=y +CONFIG_CRC_T10DIF=y +CONFIG_CRC_ITU_T=m +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +CONFIG_CRC64=m +# CONFIG_CRC4 is not set +CONFIG_CRC7=m +CONFIG_LIBCRC32C=m +CONFIG_CRC8=m +CONFIG_XXHASH=y +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_842_COMPRESS=m +CONFIG_842_DECOMPRESS=m +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_LZ4_COMPRESS=m +CONFIG_LZ4HC_COMPRESS=m +CONFIG_LZ4_DECOMPRESS=y +CONFIG_ZSTD_COMPRESS=m +CONFIG_ZSTD_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +CONFIG_XZ_DEC_POWERPC=y +CONFIG_XZ_DEC_IA64=y +CONFIG_XZ_DEC_ARM=y +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_SPARC=y +CONFIG_XZ_DEC_MICROLZMA=y +CONFIG_XZ_DEC_BCJ=y +CONFIG_XZ_DEC_TEST=m +CONFIG_DECOMPRESS_GZIP=y +CONFIG_DECOMPRESS_BZIP2=y +CONFIG_DECOMPRESS_LZMA=y +CONFIG_DECOMPRESS_XZ=y +CONFIG_DECOMPRESS_LZO=y +CONFIG_DECOMPRESS_LZ4=y +CONFIG_DECOMPRESS_ZSTD=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_REED_SOLOMON=m +CONFIG_REED_SOLOMON_ENC8=y +CONFIG_REED_SOLOMON_DEC8=y +CONFIG_REED_SOLOMON_DEC16=y +CONFIG_BCH=m +CONFIG_BCH_CONST_PARAMS=y +CONFIG_TEXTSEARCH=y +CONFIG_TEXTSEARCH_KMP=m +CONFIG_TEXTSEARCH_BM=m +CONFIG_TEXTSEARCH_FSM=m +CONFIG_BTREE=y +CONFIG_INTERVAL_TREE=y +CONFIG_XARRAY_MULTI=y +CONFIG_ASSOCIATIVE_ARRAY=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_DMA_OPS=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_SWIOTLB=y +CONFIG_DMA_CMA=y +CONFIG_DMA_PERNUMA_CMA=y + +# +# Default contiguous memory area size: +# +CONFIG_CMA_SIZE_MBYTES=0 +CONFIG_CMA_SIZE_SEL_MBYTES=y +# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set +# CONFIG_CMA_SIZE_SEL_MIN is not set +# CONFIG_CMA_SIZE_SEL_MAX is not set +CONFIG_CMA_ALIGNMENT=8 +# CONFIG_DMA_API_DEBUG is not set +# CONFIG_DMA_MAP_BENCHMARK is not set +CONFIG_SGL_ALLOC=y +CONFIG_IOMMU_HELPER=y +CONFIG_CHECK_SIGNATURE=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +CONFIG_NLATTR=y +CONFIG_LRU_CACHE=m +CONFIG_CLZ_TAB=y +CONFIG_IRQ_POLL=y +CONFIG_MPILIB=y +CONFIG_SIGNATURE=y +CONFIG_DIMLIB=y +CONFIG_OID_REGISTRY=y +CONFIG_UCS2_STRING=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_GENERIC_VDSO_TIME_NS=y +CONFIG_FONT_SUPPORT=y +CONFIG_FONTS=y +CONFIG_FONT_8x8=y +CONFIG_FONT_8x16=y +# CONFIG_FONT_6x11 is not set +# CONFIG_FONT_7x14 is not set +# CONFIG_FONT_PEARL_8x8 is not set +# CONFIG_FONT_ACORN_8x8 is not set +# CONFIG_FONT_MINI_4x6 is not set +CONFIG_FONT_6x10=y +# CONFIG_FONT_10x18 is not set +# CONFIG_FONT_SUN8x16 is not set +# CONFIG_FONT_SUN12x22 is not set +CONFIG_FONT_TER16x32=y +CONFIG_FONT_6x8=y +CONFIG_SG_POOL=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_MEMREGION=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_ARCH_HAS_COPY_MC=y +CONFIG_ARCH_STACKWALK=y +CONFIG_SBITMAP=y +CONFIG_PARMAN=m +CONFIG_OBJAGG=m +# end of Library routines + +CONFIG_PLDMFW=y +CONFIG_ASN1_ENCODER=y + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +CONFIG_PRINTK_TIME=y +# CONFIG_PRINTK_CALLER is not set +CONFIG_STACKTRACE_BUILD_ID=y +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +CONFIG_BOOT_PRINTK_DELAY=y +CONFIG_DYNAMIC_DEBUG=y +CONFIG_DYNAMIC_DEBUG_CORE=y +CONFIG_SYMBOLIC_ERRNAME=y +CONFIG_DEBUG_BUGVERBOSE=y +# end of printk and dmesg options + +# +# Compile-time checks and compiler options +# +# CONFIG_DEBUG_INFO is not set +CONFIG_FRAME_WARN=1024 +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_READABLE_ASM is not set +# CONFIG_HEADERS_INSTALL is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set +CONFIG_FRAME_POINTER=y +CONFIG_STACK_VALIDATION=y +# CONFIG_VMLINUX_MAP is not set +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +# +# Generic Kernel Debugging Instruments +# +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 +CONFIG_MAGIC_SYSRQ_SERIAL=y +CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" +CONFIG_DEBUG_FS=y +CONFIG_DEBUG_FS_ALLOW_ALL=y +# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set +# CONFIG_DEBUG_FS_ALLOW_NONE is not set +CONFIG_HAVE_ARCH_KGDB=y +CONFIG_KGDB=y +CONFIG_KGDB_HONOUR_BLOCKLIST=y +CONFIG_KGDB_SERIAL_CONSOLE=y +# CONFIG_KGDB_TESTS is not set +CONFIG_KGDB_LOW_LEVEL_TRAP=y +CONFIG_KGDB_KDB=y +CONFIG_KDB_DEFAULT_ENABLE=0x1 +CONFIG_KDB_KEYBOARD=y +CONFIG_KDB_CONTINUE_CATASTROPHIC=0 +CONFIG_ARCH_HAS_EARLY_DEBUG=y +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_UBSAN is not set +CONFIG_HAVE_ARCH_KCSAN=y +CONFIG_HAVE_KCSAN_COMPILER=y +# CONFIG_KCSAN is not set +# end of Generic Kernel Debugging Instruments + +CONFIG_DEBUG_KERNEL=y +CONFIG_DEBUG_MISC=y + +# +# Memory Debugging +# +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_OWNER is not set +# CONFIG_PAGE_POISONING is not set +# CONFIG_DEBUG_PAGE_REF is not set +# CONFIG_DEBUG_RODATA_TEST is not set +CONFIG_ARCH_HAS_DEBUG_WX=y +# CONFIG_DEBUG_WX is not set +CONFIG_GENERIC_PTDUMP=y +# CONFIG_PTDUMP_DEBUGFS is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_SLUB_DEBUG_ON is not set +# CONFIG_SLUB_STATS is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +CONFIG_SCHED_STACK_END_CHECK=y +CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y +# CONFIG_DEBUG_VM is not set +# CONFIG_DEBUG_VM_PGTABLE is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +CONFIG_MEMORY_NOTIFIER_ERROR_INJECT=m +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP=y +# CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_HAVE_ARCH_KASAN_VMALLOC=y +CONFIG_CC_HAS_KASAN_GENERIC=y +CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y +# CONFIG_KASAN is not set +CONFIG_HAVE_ARCH_KFENCE=y +CONFIG_KFENCE=y +CONFIG_KFENCE_SAMPLE_INTERVAL=0 +CONFIG_KFENCE_NUM_OBJECTS=255 +CONFIG_KFENCE_STATIC_KEYS=y +CONFIG_KFENCE_STRESS_TEST_FAULTS=0 +# end of Memory Debugging + +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Oops, Lockups and Hangs +# +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +CONFIG_LOCKUP_DETECTOR=y +CONFIG_SOFTLOCKUP_DETECTOR=y +# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 +CONFIG_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +CONFIG_HARDLOCKUP_DETECTOR=y +# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0 +CONFIG_DETECT_HUNG_TASK=y +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set +CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 +# CONFIG_WQ_WATCHDOG is not set +# CONFIG_TEST_LOCKUP is not set +# end of Debug Oops, Lockups and Hangs + +# +# Scheduler Debugging +# +CONFIG_SCHED_DEBUG=y +CONFIG_SCHED_INFO=y +CONFIG_SCHEDSTATS=y +# end of Scheduler Debugging + +# CONFIG_DEBUG_TIMEKEEPING is not set +# CONFIG_DEBUG_PREEMPT is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +CONFIG_LOCK_TORTURE_TEST=m +CONFIG_WW_MUTEX_SELFTEST=m +# CONFIG_SCF_TORTURE_TEST is not set +# CONFIG_CSD_LOCK_WAIT_DEBUG is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +# CONFIG_DEBUG_IRQFLAGS is not set +CONFIG_STACKTRACE=y +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set + +# +# Debug kernel data structures +# +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# end of Debug kernel data structures + +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +CONFIG_TORTURE_TEST=m +# CONFIG_RCU_SCALE_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +# CONFIG_RCU_REF_SCALE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=60 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_NOP_TRACER=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_OBJTOOL_MCOUNT=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACER_MAX_TRACE=y +CONFIG_TRACE_CLOCK=y +CONFIG_RING_BUFFER=y +CONFIG_EVENT_TRACING=y +CONFIG_CONTEXT_SWITCH_TRACER=y +CONFIG_TRACING=y +CONFIG_GENERIC_TRACER=y +CONFIG_TRACING_SUPPORT=y +CONFIG_FTRACE=y +# CONFIG_BOOTTIME_TRACING is not set +CONFIG_FUNCTION_TRACER=y +CONFIG_FUNCTION_GRAPH_TRACER=y +CONFIG_DYNAMIC_FTRACE=y +CONFIG_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_DYNAMIC_FTRACE_WITH_ARGS=y +CONFIG_FUNCTION_PROFILER=y +CONFIG_STACK_TRACER=y +# CONFIG_IRQSOFF_TRACER is not set +# CONFIG_PREEMPT_TRACER is not set +CONFIG_SCHED_TRACER=y +# CONFIG_HWLAT_TRACER is not set +# CONFIG_OSNOISE_TRACER is not set +# CONFIG_TIMERLAT_TRACER is not set +CONFIG_MMIOTRACE=y +CONFIG_FTRACE_SYSCALLS=y +CONFIG_TRACER_SNAPSHOT=y +# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set +CONFIG_BRANCH_PROFILE_NONE=y +# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set +CONFIG_BLK_DEV_IO_TRACE=y +CONFIG_KPROBE_EVENTS=y +# CONFIG_KPROBE_EVENTS_ON_NOTRACE is not set +CONFIG_UPROBE_EVENTS=y +CONFIG_BPF_EVENTS=y +CONFIG_DYNAMIC_EVENTS=y +CONFIG_PROBE_EVENTS=y +# CONFIG_BPF_KPROBE_OVERRIDE is not set +CONFIG_FTRACE_MCOUNT_RECORD=y +CONFIG_FTRACE_MCOUNT_USE_CC=y +CONFIG_SYNTH_EVENTS=y +# CONFIG_HIST_TRIGGERS is not set +# CONFIG_TRACE_EVENT_INJECT is not set +# CONFIG_TRACEPOINT_BENCHMARK is not set +# CONFIG_RING_BUFFER_BENCHMARK is not set +# CONFIG_TRACE_EVAL_MAP_FILE is not set +# CONFIG_FTRACE_RECORD_RECURSION is not set +# CONFIG_FTRACE_STARTUP_TEST is not set +# CONFIG_RING_BUFFER_STARTUP_TEST is not set +# CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS is not set +# CONFIG_MMIOTRACE_TEST is not set +# CONFIG_PREEMPTIRQ_DELAY_TEST is not set +# CONFIG_SYNTH_EVENT_GEN_TEST is not set +# CONFIG_KPROBE_EVENT_GEN_TEST is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_SAMPLES is not set +CONFIG_HAVE_SAMPLE_FTRACE_DIRECT=y +CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI=y +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +CONFIG_STRICT_DEVMEM=y +CONFIG_IO_STRICT_DEVMEM=y + +# +# x86 Debugging +# +CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y +CONFIG_EARLY_PRINTK_USB=y +# CONFIG_X86_VERBOSE_BOOTUP is not set +CONFIG_EARLY_PRINTK=y +CONFIG_EARLY_PRINTK_DBGP=y +# CONFIG_EARLY_PRINTK_USB_XDBC is not set +# CONFIG_EFI_PGT_DUMP is not set +# CONFIG_DEBUG_TLBFLUSH is not set +# CONFIG_IOMMU_DEBUG is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +# CONFIG_X86_DECODER_SELFTEST is not set +# CONFIG_IO_DELAY_0X80 is not set +CONFIG_IO_DELAY_0XED=y +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +# CONFIG_DEBUG_BOOT_PARAMS is not set +# CONFIG_CPA_DEBUG is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +CONFIG_X86_DEBUG_FPU=y +CONFIG_PUNIT_ATOM_DEBUG=m +# CONFIG_UNWINDER_ORC is not set +CONFIG_UNWINDER_FRAME_POINTER=y +# CONFIG_UNWINDER_GUESS is not set +# end of x86 Debugging + +# +# Kernel Testing and Coverage +# +# CONFIG_KUNIT is not set +CONFIG_NOTIFIER_ERROR_INJECTION=m +CONFIG_PM_NOTIFIER_ERROR_INJECT=m +CONFIG_NETDEV_NOTIFIER_ERROR_INJECT=m +CONFIG_FUNCTION_ERROR_INJECTION=y +# CONFIG_FAULT_INJECTION is not set +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +CONFIG_RUNTIME_TESTING_MENU=y +# CONFIG_LKDTM is not set +# CONFIG_TEST_MIN_HEAP is not set +# CONFIG_TEST_DIV64 is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_REED_SOLOMON_TEST is not set +CONFIG_INTERVAL_TREE_TEST=m +CONFIG_PERCPU_TEST=m +# CONFIG_ATOMIC64_SELFTEST is not set +CONFIG_ASYNC_RAID6_TEST=m +CONFIG_TEST_HEXDUMP=m +# CONFIG_STRING_SELFTEST is not set +CONFIG_TEST_STRING_HELPERS=m +CONFIG_TEST_STRSCPY=m +CONFIG_TEST_KSTRTOX=m +CONFIG_TEST_PRINTF=m +CONFIG_TEST_SCANF=m +CONFIG_TEST_BITMAP=m +CONFIG_TEST_UUID=m +CONFIG_TEST_XARRAY=m +CONFIG_TEST_OVERFLOW=m +CONFIG_TEST_RHASHTABLE=m +CONFIG_TEST_HASH=m +CONFIG_TEST_IDA=m +CONFIG_TEST_PARMAN=m +CONFIG_TEST_LKM=m +CONFIG_TEST_BITOPS=m +CONFIG_TEST_VMALLOC=m +CONFIG_TEST_USER_COPY=m +CONFIG_TEST_BPF=m +CONFIG_TEST_BLACKHOLE_DEV=m +CONFIG_FIND_BIT_BENCHMARK=m +CONFIG_TEST_FIRMWARE=m +# CONFIG_TEST_SYSCTL is not set +CONFIG_TEST_UDELAY=m +CONFIG_TEST_STATIC_KEYS=m +# CONFIG_TEST_KMOD is not set +# CONFIG_TEST_MEMCAT_P is not set +# CONFIG_TEST_LIVEPATCH is not set +CONFIG_TEST_OBJAGG=m +# CONFIG_TEST_STACKINIT is not set +# CONFIG_TEST_MEMINIT is not set +# CONFIG_TEST_FREE_PAGES is not set +# CONFIG_TEST_FPU is not set +# CONFIG_TEST_CLOCKSOURCE_WATCHDOG is not set +CONFIG_ARCH_USE_MEMTEST=y +CONFIG_MEMTEST=y +# CONFIG_HYPERV_TESTING is not set +# end of Kernel Testing and Coverage +# end of Kernel hacking diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index e4f3c917ee..726df45c5b 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -19,7 +19,7 @@ ;;; Copyright © 2016, 2018 Rene Saavedra ;;; Copyright © 2016 Carlos Sánchez de La Lama ;;; Copyright © 2016, 2017 Nikita -;;; Copyright © 2017, 2018, 2020, 2021 Leo Famulari +;;; Copyright © 2017, 2018, 2020, 2021, 2022 Leo Famulari ;;; Copyright © 2017 José Miguel Sánchez García ;;; Copyright © 2017 Gábor Boskovits ;;; Copyright © 2017, 2019, 2021 Mathieu Othacehe @@ -357,7 +357,20 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." ;; The current "stable" kernels. That is, the most recently released major ;; versions that are still supported upstream. -;; Currently, no stable kernels are packaged. +(define-public linux-libre-5.16-version "5.16.2") +(define-public linux-libre-5.16-gnu-revision "gnu") +(define deblob-scripts-5.16 + (linux-libre-deblob-scripts + linux-libre-5.16-version + linux-libre-5.16-gnu-revision + (base32 "0c9c8zd85p84r8k4xhys8xw15pds71v0ca2b6hm1pr4f6lpzck0g") + (base32 "0c5ld3ii3ixnr27sp59mbh40340jlmxaxk7z1xbl4v94mnzmwz3x"))) +(define-public linux-libre-5.16-pristine-source + (let ((version linux-libre-5.16-version) + (hash (base32 "0i1vcv2zi80ixmgjdcq6yk8qhwaqlbbmmrq0prxk41339lx87zh9"))) + (make-linux-libre-source version + (%upstream-linux-source version hash) + deblob-scripts-5.16))) ;; The "longterm" kernels — the older releases with long-term upstream support. ;; Here are the support timelines: @@ -495,6 +508,11 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (patches (append (origin-patches source) patches)))) +(define-public linux-libre-5.16-source + (source-with-patches linux-libre-5.16-pristine-source + (list %boot-logo-patch + %linux-libre-arm-export-__sync_icache_dcache-patch))) + (define-public linux-libre-5.15-source (source-with-patches linux-libre-5.15-pristine-source (list %boot-logo-patch @@ -607,6 +625,11 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (description "Headers of the Linux-Libre kernel.") (license license:gpl2))) +(define-public linux-libre-headers-5.16 + (make-linux-libre-headers* linux-libre-5.16-version + linux-libre-5.16-gnu-revision + linux-libre-5.16-source)) + (define-public linux-libre-headers-5.15 (make-linux-libre-headers* linux-libre-5.15-version linux-libre-5.15-gnu-revision @@ -919,6 +942,13 @@ It has been modified to remove all non-free binary blobs.") ;;; Generic kernel packages. ;;; +(define-public linux-libre-5.16 + (make-linux-libre* linux-libre-5.16-version + linux-libre-5.16-gnu-revision + linux-libre-5.16-source + '("x86_64-linux" "i686-linux" "armhf-linux" "aarch64-linux" "riscv64-linux") + #:configuration-file kernel-config)) + (define-public linux-libre-5.15 (make-linux-libre* linux-libre-5.15-version linux-libre-5.15-gnu-revision -- cgit v1.3 From c11b585a819a908f866d6072075a27fcb4e0e637 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Mon, 21 Jan 2019 20:25:06 -0500 Subject: gnu: Add Vorta. * gnu/packages/backup.scm (vorta): New variable. --- gnu/packages/backup.scm | 67 ++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 66 insertions(+), 1 deletion(-) diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm index 5c92d401bd..21377e8b2c 100644 --- a/gnu/packages/backup.scm +++ b/gnu/packages/backup.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014, 2015, 2020 Eric Bavier ;;; Copyright © 2014 Ian Denhardt -;;; Copyright © 2015, 2016, 2017 Leo Famulari +;;; Copyright © 2015, 2016, 2017, 2021 Leo Famulari ;;; Copyright © 2017–2021 Tobias Geerinckx-Rice ;;; Copyright © 2017 Thomas Danckaert ;;; Copyright © 2017, 2021 Arun Isaac @@ -42,6 +42,7 @@ #:use-module (guix gexp) #:use-module (guix packages) #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix gexp) #:use-module (guix git-download) #:use-module (guix download) #:use-module (guix utils) @@ -50,6 +51,7 @@ #:use-module (guix build-system go) #:use-module (guix build-system perl) #:use-module (guix build-system python) + #:use-module (guix build-system qt) #:use-module (gnu packages) #:use-module (gnu packages acl) #:use-module (gnu packages autotools) @@ -81,13 +83,16 @@ #:use-module (gnu packages pkg-config) #:use-module (gnu packages protobuf) #:use-module (gnu packages python) + #:use-module (gnu packages python-check) #:use-module (gnu packages python-crypto) #:use-module (gnu packages python-web) #:use-module (gnu packages python-xyz) + #:use-module (gnu packages qt) #:use-module (gnu packages rsync) #:use-module (gnu packages ruby) #:use-module (gnu packages serialization) #:use-module (gnu packages ssh) + #:use-module (gnu packages time) #:use-module (gnu packages tls) #:use-module (gnu packages valgrind) #:use-module (gnu packages xml)) @@ -1267,3 +1272,63 @@ and workstations. Protect your files with client-side encryption. Backup your databases too. Monitor it all with integrated third-party services. borgmatic is powered by borg.") (license license:gpl3+))) + +(define-public vorta + (package + (name "vorta") + (version "0.8.2") + (source (origin + (method url-fetch) + (uri (pypi-uri "vorta" version)) + (sha256 + (base32 + "1cl7kyh14h38xavbq23b8ifvk8abkiqdkpgaxfxvd223fm02zz26")))) + (build-system python-build-system) + (arguments + (list + #:imported-modules `((guix build qt-utils) + (guix build cmake-build-system) + (guix build qt-build-system) + ,@%python-build-system-modules) + #:modules '((guix build utils) + (guix build python-build-system) + ((guix build qt-build-system) #:prefix qt:)) + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'patch-borg-path + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "src/vorta/borg/borg_job.py" + (("which\\('borg'\\)") + (string-append "which('" #$(this-package-input "borg") + "/bin/borg')"))))) + ;; XXX This phase tries to write to $HOME + (add-before 'sanity-check 'set-HOME + (lambda _ + (setenv "HOME" "/tmp"))) + ;; Otherwise, the user interface's icons will be missing. + (add-after 'wrap 'qt-wrap + (assoc-ref qt:%standard-phases 'qt-wrap))))) + (native-inputs + (list python-pytest-mock + python-pytest-qt + python-pytest-runner + python-setuptools-git)) + (inputs + (list borg + python-appdirs + python-dateutil + python-keyring + python-paramiko + python-peewee + python-psutil + python-pyqt + python-secretstorage + ;; This is included so that the qt-wrap phase picks it up. + qtsvg)) + (home-page "https://github.com/borgbase/vorta") + (synopsis "Graphical backup client based on BorgBackup") + (description "Vorta is a graphical backup client based on the Borg backup +tool. It supports the use of remote backup repositories. It can perform +scheduled backups, and has a graphical tool for browsing and extracting the Borg +archives.") + (license license:gpl3+))) -- cgit v1.3 From 1121fa432f0e6422d5f9ebb96fb0014c4d5231f5 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Wed, 26 Jan 2022 14:23:03 -0500 Subject: gnu: Borg: Improve the description. Attic... Now that's a name I've not heard in a long time. * gnu/packages/backup.scm (borg)[description]: Improve it. --- gnu/packages/backup.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm index 21377e8b2c..d847287d13 100644 --- a/gnu/packages/backup.scm +++ b/gnu/packages/backup.scm @@ -751,8 +751,8 @@ detection, and lossless compression.") supports compression and authenticated encryption. The main goal of Borg is to provide an efficient and secure way to backup data. The data deduplication technique used makes Borg suitable for daily backups since only changes are -stored. The authenticated encryption technique makes it suitable for backups -to not fully trusted targets. Borg is a fork of Attic.") +stored. The authenticated encryption technique makes it suitable for +storing backups on untrusted computers.") (home-page "https://www.borgbackup.org/") (license license:bsd-3))) -- cgit v1.3 From 90a41fe388102d448b3f91a070e38a7680d2d568 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 26 Jan 2022 22:27:49 +0100 Subject: gnu: nyacc: Remove unnecessary phase. This partially reverts commit f15ca337bec89f238b9b9ced08c2e02c35629a33. What mattered was the addition of guile-bytestructures. * gnu/packages/mes.scm (nyacc)[arguments]: Remove phase 'install-system-module. --- gnu/packages/mes.scm | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/gnu/packages/mes.scm b/gnu/packages/mes.scm index 8ced184a5f..62e4a65dca 100644 --- a/gnu/packages/mes.scm +++ b/gnu/packages/mes.scm @@ -120,11 +120,7 @@ $prefix/share/guile/site/$GUILE_EFFECTIVE_VERSION\n"))))) (lambda _ (substitute* "module/nyacc/lang/c99/parser.scm" (("\\(memq \\(car stmt\\) '\\(include include-next\\)\\)") - "(memq (car stmt) '(include include-next define))")))) - (add-after 'unpack 'install-system-module - (lambda _ - (substitute* "module/Makefile.in" - (("@NYACC_FH_BINS@") "$(NYACC_FH_BINS)"))))))) + "(memq (car stmt) '(include include-next define))"))))))) (inputs (list guile-3.0)) (propagated-inputs (list guile-bytestructures)) (description -- cgit v1.3 From 0444be868903356a37fc8ffd3cdf820ca038f3e6 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 24 Jan 2022 17:13:11 +0200 Subject: gnu: Add %final-inputs-riscv64. * gnu/packages/commencement.scm (%final-inputs-riscv64): New variable. * guix/build-system/gnu.scm (standard-inputs): Use %final-inputs-riscv64 when targeting riscv64-linux. --- gnu/packages/commencement.scm | 6 +++++- guix/build-system/gnu.scm | 4 +++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index 26769d2626..96d914344d 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -3,7 +3,7 @@ ;;; Copyright © 2014 Andreas Enge ;;; Copyright © 2012 Nikita Karetnikov ;;; Copyright © 2014, 2015, 2017 Mark H Weaver -;;; Copyright © 2017, 2018, 2019, 2021 Efraim Flashner +;;; Copyright © 2017, 2018, 2019, 2021, 2022 Efraim Flashner ;;; Copyright © 2018 Tobias Geerinckx-Rice ;;; Copyright © 2018, 2019, 2020 Jan (janneke) Nieuwenhuizen ;;; Copyright © 2019, 2020, 2021 Marius Bakke @@ -3736,6 +3736,10 @@ exec ~a/bin/~a-~a -B~a/lib -Wl,-dynamic-linker -Wl,~a/~a \"$@\"~%" ("libc:static" ,glibc-final "static") ("locales" ,glibc-utf8-locales-final)))) +(define-public %final-inputs-riscv64 + `(("gcc:lib" ,gcc-final "lib") + ,@%final-inputs)) + (define-public canonical-package (let ((name->package (fold (lambda (input result) (match input diff --git a/guix/build-system/gnu.scm b/guix/build-system/gnu.scm index 651415098e..2f74000eef 100644 --- a/guix/build-system/gnu.scm +++ b/guix/build-system/gnu.scm @@ -273,7 +273,9 @@ standard packages used as implicit inputs of the GNU build system." ;; Resolve (gnu packages commencement) lazily to hide circular dependency. (let ((distro (resolve-module '(gnu packages commencement)))) - (module-ref distro '%final-inputs))) + (if (target-riscv64?) + (module-ref distro '%final-inputs-riscv64) + (module-ref distro '%final-inputs)))) (define* (lower name #:key source inputs native-inputs outputs target -- cgit v1.3 From e60b10fd99c490b42f2a25003f4c7a9c49668bb8 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Thu, 27 Jan 2022 09:44:36 +0200 Subject: gnu: uriparser: Update to 0.9.6. * gnu/packages/web.scm (uriparser): Update to 0.9.6. --- gnu/packages/web.scm | 39 ++++++++++++++++++--------------------- 1 file changed, 18 insertions(+), 21 deletions(-) diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 3ddecb15c4..8df302d240 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -10,7 +10,7 @@ ;;; Copyright © 2015 Eric Dvorsak ;;; Copyright © 2016 Sou Bunnbu ;;; Copyright © 2016 Jelle Licht -;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner +;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021, 2022 Efraim Flashner ;;; Copyright © 2016 Rene Saavedra ;;; Copyright © 2016 Ben Woodcroft ;;; Copyright © 2016 Clément Lassieur @@ -8058,28 +8058,25 @@ tools: (license license:gpl3+))) (define-public uriparser - (let ((commit "25dddb16cf044a7df27884e7ad3911baaaca3d7c") - (revision "1")) - (package - (name "uriparser") - (version (git-version "0.9.4" revision commit)) - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/uriparser/uriparser") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1ffzia679axcsccx2fxjpxhb0i5xc42zxn446x6c1170w6v69qf6")))) - (build-system cmake-build-system) - (native-inputs (list googletest doxygen graphviz)) - (synopsis "Strictly RFC 3986 compliant URI parsing and handling library") - (description "uriparser is a strictly RFC 3986 compliant URI parsing and + (package + (name "uriparser") + (version "0.9.6") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/uriparser/uriparser" + "/releases/download/uriparser-" + version "/uriparser-" version ".tar.xz")) + (sha256 + (base32 + "0i7nxgy36i8v81r213sbvmpxxq9qb4rhii9qbvl1k32jd1ka1252")))) + (build-system cmake-build-system) + (native-inputs (list googletest doxygen graphviz)) + (synopsis "Strictly RFC 3986 compliant URI parsing and handling library") + (description "uriparser is a strictly RFC 3986 compliant URI parsing and handling library written in C89 (\"ANSI C\"). uriparser is fast and supports Unicode.") - (home-page "https://uriparser.github.io/") - (license license:bsd-3)))) + (home-page "https://uriparser.github.io/") + (license license:bsd-3))) (define-public quark ;; No releases yet -- cgit v1.3 From e3027578cb31c1584a9b87b8512d1dad9de0667c Mon Sep 17 00:00:00 2001 From: Michael Rohleder Date: Thu, 27 Jan 2022 07:41:56 +0100 Subject: gnu: libzim: Fix build. * gnu/packages/web.scm (libzim)[inputs]: Add python-wrapper. Signed-off-by: Efraim Flashner --- gnu/packages/web.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 8df302d240..04425c3ed2 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -43,7 +43,7 @@ ;;; Copyright © 2020, 2021 Jan (janneke) Nieuwenhuizen ;;; Copyright © 2018, 2019, 2020 Björn Höfling ;;; Copyright © 2020, 2021 Paul Garlick -;;; Copyright © 2020 Michael Rohleder +;;; Copyright © 2020, 2022 Michael Rohleder ;;; Copyright © 2020, 2021 Ryan Prior ;;; Copyright © 2020 Alexandru-Sergiu Marton ;;; Copyright © 2021 Maxim Cournoyer @@ -7888,6 +7888,7 @@ solution for any project's interface needs: `(("icu4c" ,icu4c) ("liblzma" ,xz) ("libuuid" ,util-linux "lib") + ("python" ,python-wrapper) ;for libzim-compile-resources ("xapian" ,xapian) ("zstd" ,zstd "lib"))) (native-inputs -- cgit v1.3 From 6305c76ae022f0491cc019f19fe2d199626706cf Mon Sep 17 00:00:00 2001 From: Michael Rohleder Date: Thu, 27 Jan 2022 07:56:20 +0100 Subject: gnu: gnome-mines: Fix build. * gnu/packages/web.scm (gnome-mines)[native-inputs]: Add python-wrapper. Signed-off-by: Efraim Flashner --- gnu/packages/gnome.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 2fe1f4de39..e3fac534c4 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -54,7 +54,7 @@ ;;; Copyright © 2020, 2021 Vinicius Monego ;;; Copyright © 2020, 2021 Brice Waegeneire ;;; Copyright © 2020 Arun Isaac -;;; Copyright © 2020 Michael Rohleder +;;; Copyright © 2020, 2022 Michael Rohleder ;;; Copyright © 2020 Tim Gesthuizen ;;; Copyright © 2020, 2021 Andy Tai ;;; Copyright © 2020, 2021 Sébastien Lerique @@ -5106,6 +5106,7 @@ and other secrets. It communicates with the \"Secret Service\" using DBus.") ("desktop-file-utils" ,desktop-file-utils) ("intltool" ,intltool) ("itstool" ,itstool) + ("python" ,python-wrapper) ; for meson_post_install.py ("vala" ,vala) ("yelp" ,yelp) ("appstream-glib" ,appstream-glib))) -- cgit v1.3 From 82e49c7f47eb2c44df95e0b93a9e9ba0e0e4f410 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Thu, 27 Jan 2022 11:38:34 +0100 Subject: gnu: guile-drmaa: Update to 0.1.1. * gnu/packages/guile-xyz.scm (guile-drmaa): Update to 0.1.1. --- gnu/packages/guile-xyz.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index e2cf793acc..5b485b0a4a 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -3,7 +3,7 @@ ;;; Copyright © 2014, 2015, 2018 Mark H Weaver ;;; Copyright © 2015, 2017 Christine Lemmer-Webber ;;; Copyright © 2016 Alex Sassmannshausen -;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus +;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021, 2022 Ricardo Wurmus ;;; Copyright © 2016 Erik Edrosa ;;; Copyright © 2016, 2019, 2020, 2021 Eraim Flashner ;;; Copyright © 2016, 2017, 2021 Alex Kost @@ -4474,7 +4474,7 @@ including parsing and code generation.") (define-public guile-drmaa (package (name "guile-drmaa") - (version "0.1.0") + (version "0.1.1") (source (origin (method git-fetch) @@ -4484,7 +4484,7 @@ including parsing and code generation.") (file-name (git-file-name name version)) (sha256 (base32 - "1m2x62n3x5hi5vnsvv2zgqhgpzrfq7r5095fzzjd1aaybi9i9igg")))) + "1pail39f3iwllcdma4pk4sxsaypplgb5zjyvjwqf5hdv8s3y211x")))) (build-system gnu-build-system) (native-inputs (list autoconf automake pkg-config texinfo sed)) -- cgit v1.3 From 19371a4dc36310378e64b1414d490e64932111e5 Mon Sep 17 00:00:00 2001 From: Vinicius Monego Date: Wed, 26 Jan 2022 10:18:25 -0300 Subject: gnu: darktable: Add release-monitoring-url. * gnu/packages/photo.scm (darktable)[properties]: New field. --- gnu/packages/photo.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/photo.scm b/gnu/packages/photo.scm index 26295207c6..2aa7610b8c 100644 --- a/gnu/packages/photo.scm +++ b/gnu/packages/photo.scm @@ -8,7 +8,7 @@ ;;; Copyright © 2018 Leo Famulari ;;; Copyright © 2020 Sebastian Schott ;;; Copyright © 2020 Vincent Legoll -;;; Copyright © 2020. 2021 Vinicius Monego +;;; Copyright © 2020. 2021, 2022 Vinicius Monego ;;; ;;; This file is part of GNU Guix. ;;; @@ -562,6 +562,8 @@ them through a zoomable lighttable and enables you to develop raw images and enhance them.") ;; See src/is_supported_platform.h for supported platforms. (supported-systems '("x86_64-linux" "aarch64-linux" "powerpc64le-linux")) + (properties + '((release-monitoring-url . "https://github.com/darktable-org/darktable/releases"))) (license (list license:gpl3+ ;; Darktable itself. license:lgpl2.1+)))) ;; Rawspeed library. -- cgit v1.3 From 10aad72110e6a44255fa45281b4705ae98b26496 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Wed, 26 Jan 2022 23:10:51 +0100 Subject: inferior: Create the store proxy listening socket only once. Previously, each 'inferior-eval-with-store' call would have the calling process create a temporary directory with a listening socket in there. Now that listening socket is created once and reused in subsequent calls. * guix/inferior.scm ()[bridge-file-name, bridge-socket]: New fields. (port->inferior): Adjust accordingly. (close-inferior): Close 'inferior-bridge-socket' and delete 'inferior-bridge-file-name' if set. (open-store-bridge!, ensure-store-bridge!): New procedures. (inferior-eval-with-store): Use them. --- guix/inferior.scm | 158 ++++++++++++++++++++++++++++++++---------------------- 1 file changed, 95 insertions(+), 63 deletions(-) diff --git a/guix/inferior.scm b/guix/inferior.scm index 572114f626..a997c3ead4 100644 --- a/guix/inferior.scm +++ b/guix/inferior.scm @@ -25,7 +25,6 @@ #:select (source-properties->location)) #:use-module ((guix utils) #:select (%current-system - call-with-temporary-directory version>? version-prefix? cache-directory)) #:use-module ((guix store) @@ -36,6 +35,8 @@ &store-protocol-error)) #:use-module ((guix derivations) #:select (read-derivation-from-file)) + #:use-module ((guix build syscalls) + #:select (mkdtemp!)) #:use-module (guix gexp) #:use-module (guix search-paths) #:use-module (guix profiles) @@ -112,14 +113,21 @@ ;; Inferior Guix process. (define-record-type - (inferior pid socket close version packages table) + (inferior pid socket close version packages table + bridge-file-name bridge-socket) inferior? (pid inferior-pid) (socket inferior-socket) (close inferior-close-socket) ;procedure (version inferior-version) ;REPL protocol version (packages inferior-package-promise) ;promise of inferior packages - (table inferior-package-table)) ;promise of vhash + (table inferior-package-table) ;promise of vhash + + ;; Bridging with a store. + (bridge-file-name inferior-bridge-file-name ;#f | string + set-inferior-bridge-file-name!) + (bridge-socket inferior-bridge-socket ;#f | port + set-inferior-bridge-socket!)) (define (write-inferior inferior port) (match inferior @@ -172,7 +180,8 @@ inferior." (('repl-version 0 rest ...) (letrec ((result (inferior 'pipe pipe close (cons 0 rest) (delay (%inferior-packages result)) - (delay (%inferior-package-table result))))) + (delay (%inferior-package-table result)) + #f #f))) ;; For protocol (0 1) and later, send the protocol version we support. (match rest @@ -205,7 +214,13 @@ equivalent. Return #f if the inferior could not be launched." (define (close-inferior inferior) "Close INFERIOR." (let ((close (inferior-close-socket inferior))) - (close (inferior-socket inferior)))) + (close (inferior-socket inferior)) + + ;; Close and delete the store bridge, if any. + (when (inferior-bridge-socket inferior) + (close-port (inferior-bridge-socket inferior)) + (delete-file (inferior-bridge-file-name inferior)) + (rmdir (dirname (inferior-bridge-file-name inferior)))))) ;; Non-self-quoting object of the inferior. (define-record-type @@ -524,67 +539,84 @@ input/output ports.)" (unless (port-closed? client) (loop)))))) +(define (open-store-bridge! inferior) + "Open a \"store bridge\" for INFERIOR--a named socket in /tmp that will be +used to proxy store RPCs from the inferior to the store of the calling +process." + ;; Create a named socket in /tmp to let INFERIOR connect to it and use it as + ;; its store. This ensures the inferior uses the same store, with the same + ;; options, the same per-session GC roots, etc. + ;; FIXME: This strategy doesn't work for remote inferiors (SSH). + (define directory + (mkdtemp! (string-append (or (getenv "TMPDIR") "/tmp") + "/guix-inferior.XXXXXX"))) + + (chmod directory #o700) + (let ((name (string-append directory "/inferior")) + (socket (socket AF_UNIX SOCK_STREAM 0))) + (bind socket AF_UNIX name) + (listen socket 2) + (set-inferior-bridge-file-name! inferior name) + (set-inferior-bridge-socket! inferior socket))) + +(define (ensure-store-bridge! inferior) + "Ensure INFERIOR has a connected bridge." + (or (inferior-bridge-socket inferior) + (begin + (open-store-bridge! inferior) + (inferior-bridge-socket inferior)))) + (define (inferior-eval-with-store inferior store code) "Evaluate CODE in INFERIOR, passing it STORE as its argument. CODE must thus be the code of a one-argument procedure that accepts a store." - ;; Create a named socket in /tmp and let INFERIOR connect to it and use it - ;; as its store. This ensures the inferior uses the same store, with the - ;; same options, the same per-session GC roots, etc. - ;; FIXME: This strategy doesn't work for remote inferiors (SSH). - (call-with-temporary-directory - (lambda (directory) - (chmod directory #o700) - (let* ((name (string-append directory "/inferior")) - (socket (socket AF_UNIX SOCK_STREAM 0)) - (major (store-connection-major-version store)) - (minor (store-connection-minor-version store)) - (proto (logior major minor))) - (bind socket AF_UNIX name) - (listen socket 1024) - (send-inferior-request - `(let ((proc ,code) - (socket (socket AF_UNIX SOCK_STREAM 0)) - (error? (if (defined? 'store-protocol-error?) - store-protocol-error? - nix-protocol-error?)) - (error-message (if (defined? 'store-protocol-error-message) - store-protocol-error-message - nix-protocol-error-message))) - (connect socket AF_UNIX ,name) - - ;; 'port->connection' appeared in June 2018 and we can hardly - ;; emulate it on older versions. Thus fall back to - ;; 'open-connection', at the risk of talking to the wrong daemon or - ;; having our build result reclaimed (XXX). - (let ((store (if (defined? 'port->connection) - (port->connection socket #:version ,proto) - (open-connection)))) - (dynamic-wind - (const #t) - (lambda () - ;; Serialize '&store-protocol-error' conditions. The - ;; exception serialization mechanism that - ;; 'read-repl-response' expects is unsuitable for SRFI-35 - ;; error conditions, hence this special case. - (guard (c ((error? c) - `(store-protocol-error ,(error-message c)))) - `(result ,(proc store)))) - (lambda () - (close-connection store) - (close-port socket))))) - inferior) - (match (accept socket) - ((client . address) - (proxy client (store-connection-socket store)))) - (close-port socket) - - (match (read-inferior-response inferior) - (('store-protocol-error message) - (raise (condition - (&store-protocol-error (message message) - (status 1))))) - (('result result) - result)))))) + (let* ((major (store-connection-major-version store)) + (minor (store-connection-minor-version store)) + (proto (logior major minor))) + (ensure-store-bridge! inferior) + (send-inferior-request + `(let ((proc ,code) + (socket (socket AF_UNIX SOCK_STREAM 0)) + (error? (if (defined? 'store-protocol-error?) + store-protocol-error? + nix-protocol-error?)) + (error-message (if (defined? 'store-protocol-error-message) + store-protocol-error-message + nix-protocol-error-message))) + (connect socket AF_UNIX + ,(inferior-bridge-file-name inferior)) + + ;; 'port->connection' appeared in June 2018 and we can hardly + ;; emulate it on older versions. Thus fall back to + ;; 'open-connection', at the risk of talking to the wrong daemon or + ;; having our build result reclaimed (XXX). + (let ((store (if (defined? 'port->connection) + (port->connection socket #:version ,proto) + (open-connection)))) + (dynamic-wind + (const #t) + (lambda () + ;; Serialize '&store-protocol-error' conditions. The + ;; exception serialization mechanism that + ;; 'read-repl-response' expects is unsuitable for SRFI-35 + ;; error conditions, hence this special case. + (guard (c ((error? c) + `(store-protocol-error ,(error-message c)))) + `(result ,(proc store)))) + (lambda () + (close-connection store) + (close-port socket))))) + inferior) + (match (accept (inferior-bridge-socket inferior)) + ((client . address) + (proxy client (store-connection-socket store)))) + + (match (read-inferior-response inferior) + (('store-protocol-error message) + (raise (condition + (&store-protocol-error (message message) + (status 1))))) + (('result result) + result)))) (define* (inferior-package-derivation store package #:optional -- cgit v1.3 From bd86bbd300474204878e927f6cd3f0defa1662a5 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Thu, 27 Jan 2022 00:20:12 +0100 Subject: inferior: Keep the store bridge connected. Previously, each 'inferior-eval-with-store' would lead the inferior to connect to the named socket the parent is listening to. With this change, the connection is established once for all and reused afterwards. * guix/inferior.scm ()[bridge-file-name]: Remove. (open-bidirectional-pipe): New procedure. (inferior-pipe): Use it instead of 'open-pipe*' and return two values. (port->inferior): Adjust call to 'inferior'. (open-inferior): Adjust to 'inferior-pipe' changes. (close-inferior): Remove 'inferior-bridge-file-name' handling. (open-store-bridge!): Switch back to 'call-with-temporary-directory'. Define '%bridge-socket' in the inferior, connected to the caller. (proxy): Change first argument to be an inferior. Add 'reponse-port' and call to 'drain-input'. Pass 'reponse-port' to 'select' and use it as a loop termination clause. (inferior-eval-with-store): Remove 'socket' and 'connect' calls from the inferior code, and use '%bridge-socket' instead. --- guix/inferior.scm | 169 +++++++++++++++++++++++++++++++++--------------------- 1 file changed, 105 insertions(+), 64 deletions(-) diff --git a/guix/inferior.scm b/guix/inferior.scm index a997c3ead4..1c19527b8f 100644 --- a/guix/inferior.scm +++ b/guix/inferior.scm @@ -25,6 +25,7 @@ #:select (source-properties->location)) #:use-module ((guix utils) #:select (%current-system + call-with-temporary-directory version>? version-prefix? cache-directory)) #:use-module ((guix store) @@ -35,8 +36,6 @@ &store-protocol-error)) #:use-module ((guix derivations) #:select (read-derivation-from-file)) - #:use-module ((guix build syscalls) - #:select (mkdtemp!)) #:use-module (guix gexp) #:use-module (guix search-paths) #:use-module (guix profiles) @@ -56,7 +55,6 @@ #:use-module (srfi srfi-71) #:autoload (ice-9 ftw) (scandir) #:use-module (ice-9 match) - #:use-module (ice-9 popen) #:use-module (ice-9 vlist) #:use-module (ice-9 binary-ports) #:use-module ((rnrs bytevectors) #:select (string->utf8)) @@ -114,7 +112,7 @@ ;; Inferior Guix process. (define-record-type (inferior pid socket close version packages table - bridge-file-name bridge-socket) + bridge-socket) inferior? (pid inferior-pid) (socket inferior-socket) @@ -124,8 +122,6 @@ (table inferior-package-table) ;promise of vhash ;; Bridging with a store. - (bridge-file-name inferior-bridge-file-name ;#f | string - set-inferior-bridge-file-name!) (bridge-socket inferior-bridge-socket ;#f | port set-inferior-bridge-socket!)) @@ -138,37 +134,69 @@ (set-record-type-printer! write-inferior) +(define (open-bidirectional-pipe command . args) + "Open a bidirectional pipe to COMMAND invoked with ARGS and return it, as a +regular file port (socket). + +This is equivalent to (open-pipe* OPEN_BOTH ...) except that the result is a +regular file port that can be passed to 'select' ('open-pipe*' returns a +custom binary port)." + (match (socketpair AF_UNIX SOCK_STREAM 0) + ((parent . child) + (match (primitive-fork) + (0 + (dynamic-wind + (lambda () + #t) + (lambda () + (close-port parent) + (close-fdes 0) + (close-fdes 1) + (dup2 (fileno child) 0) + (dup2 (fileno child) 1) + ;; Mimic 'open-pipe*'. + (unless (file-port? (current-error-port)) + (close-fdes 2) + (dup2 (open-fdes "/dev/null" O_WRONLY) 2)) + (apply execlp command command args)) + (lambda () + (primitive-_exit 127)))) + (pid + (close-port child) + (values parent pid)))))) + (define* (inferior-pipe directory command error-port) - "Return an input/output pipe on the Guix instance in DIRECTORY. This runs -'DIRECTORY/COMMAND repl' if it exists, or falls back to some other method if -it's an old Guix." - (let ((pipe (with-error-to-port error-port - (lambda () - (open-pipe* OPEN_BOTH - (string-append directory "/" command) - "repl" "-t" "machine"))))) + "Return two values: an input/output pipe on the Guix instance in DIRECTORY +and its PID. This runs 'DIRECTORY/COMMAND repl' if it exists, or falls back +to some other method if it's an old Guix." + (let ((pipe pid (with-error-to-port error-port + (lambda () + (open-bidirectional-pipe + (string-append directory "/" command) + "repl" "-t" "machine"))))) (if (eof-object? (peek-char pipe)) (begin - (close-pipe pipe) + (close-port pipe) ;; Older versions of Guix didn't have a 'guix repl' command, so ;; emulate it. (with-error-to-port error-port (lambda () - (open-pipe* OPEN_BOTH "guile" - "-L" (string-append directory "/share/guile/site/" - (effective-version)) - "-C" (string-append directory "/share/guile/site/" - (effective-version)) - "-C" (string-append directory "/lib/guile/" - (effective-version) "/site-ccache") - "-c" - (object->string - `(begin - (primitive-load ,(search-path %load-path - "guix/repl.scm")) - ((@ (guix repl) machine-repl)))))))) - pipe))) + (open-bidirectional-pipe + "guile" + "-L" (string-append directory "/share/guile/site/" + (effective-version)) + "-C" (string-append directory "/share/guile/site/" + (effective-version)) + "-C" (string-append directory "/lib/guile/" + (effective-version) "/site-ccache") + "-c" + (object->string + `(begin + (primitive-load ,(search-path %load-path + "guix/repl.scm")) + ((@ (guix repl) machine-repl)))))))) + (values pipe pid)))) (define* (port->inferior pipe #:optional (close close-port)) "Given PIPE, an input/output port, return an inferior that talks over PIPE. @@ -181,7 +209,7 @@ inferior." (letrec ((result (inferior 'pipe pipe close (cons 0 rest) (delay (%inferior-packages result)) (delay (%inferior-package-table result)) - #f #f))) + #f))) ;; For protocol (0 1) and later, send the protocol version we support. (match rest @@ -206,10 +234,11 @@ inferior." (error-port (%make-void-port "w"))) "Open the inferior Guix in DIRECTORY, running 'DIRECTORY/COMMAND repl' or equivalent. Return #f if the inferior could not be launched." - (define pipe - (inferior-pipe directory command error-port)) - - (port->inferior pipe close-pipe)) + (let ((pipe pid (inferior-pipe directory command error-port))) + (port->inferior pipe + (lambda (port) + (close-port port) + (waitpid pid))))) (define (close-inferior inferior) "Close INFERIOR." @@ -218,9 +247,7 @@ equivalent. Return #f if the inferior could not be launched." ;; Close and delete the store bridge, if any. (when (inferior-bridge-socket inferior) - (close-port (inferior-bridge-socket inferior)) - (delete-file (inferior-bridge-file-name inferior)) - (rmdir (dirname (inferior-bridge-file-name inferior)))))) + (close-port (inferior-bridge-socket inferior))))) ;; Non-self-quoting object of the inferior. (define-record-type @@ -512,22 +539,32 @@ is similar to the sexp returned by 'package-provenance' for regular packages." 'package-provenance)))) (or provenance (const #f))))) -(define (proxy client backend) ;adapted from (guix ssh) - "Proxy communication between CLIENT and BACKEND until CLIENT closes the -connection, at which point CLIENT is closed (both CLIENT and BACKEND must be -input/output ports.)" +(define (proxy inferior store) ;adapted from (guix ssh) + "Proxy communication between INFERIOR and STORE, until the connection to +STORE is closed or INFERIOR has data available for input (a REPL response)." + (define client + (inferior-bridge-socket inferior)) + (define backend + (store-connection-socket store)) + (define response-port + (inferior-socket inferior)) + ;; Use buffered ports so that 'get-bytevector-some' returns up to the ;; whole buffer like read(2) would--see . (setvbuf client 'block 65536) (setvbuf backend 'block 65536) + ;; RESPONSE-PORT may typically contain a leftover newline that 'read' didn't + ;; consume. Drain it so that 'select' doesn't immediately stop. + (drain-input response-port) + (let loop () - (match (select (list client backend) '() '()) + (match (select (list client backend response-port) '() '()) ((reads () ()) (when (memq client reads) (match (get-bytevector-some client) ((? eof-object?) - (close-port client)) + #t) (bv (put-bytevector backend bv) (force-output backend)))) @@ -536,7 +573,8 @@ input/output ports.)" (bv (put-bytevector client bv) (force-output client)))) - (unless (port-closed? client) + (unless (or (port-closed? client) + (memq response-port reads)) (loop)))))) (define (open-store-bridge! inferior) @@ -547,17 +585,25 @@ process." ;; its store. This ensures the inferior uses the same store, with the same ;; options, the same per-session GC roots, etc. ;; FIXME: This strategy doesn't work for remote inferiors (SSH). - (define directory - (mkdtemp! (string-append (or (getenv "TMPDIR") "/tmp") - "/guix-inferior.XXXXXX"))) - - (chmod directory #o700) - (let ((name (string-append directory "/inferior")) - (socket (socket AF_UNIX SOCK_STREAM 0))) - (bind socket AF_UNIX name) - (listen socket 2) - (set-inferior-bridge-file-name! inferior name) - (set-inferior-bridge-socket! inferior socket))) + (call-with-temporary-directory + (lambda (directory) + (chmod directory #o700) + (let ((name (string-append directory "/inferior")) + (socket (socket AF_UNIX SOCK_STREAM 0))) + (bind socket AF_UNIX name) + (listen socket 2) + + (send-inferior-request + `(define %bridge-socket + (let ((socket (socket AF_UNIX SOCK_STREAM 0))) + (connect socket AF_UNIX ,name) + socket)) + inferior) + (match (accept socket) + ((client . address) + (close-port socket) + (set-inferior-bridge-socket! inferior client))) + (read-inferior-response inferior))))) (define (ensure-store-bridge! inferior) "Ensure INFERIOR has a connected bridge." @@ -575,22 +621,19 @@ thus be the code of a one-argument procedure that accepts a store." (ensure-store-bridge! inferior) (send-inferior-request `(let ((proc ,code) - (socket (socket AF_UNIX SOCK_STREAM 0)) (error? (if (defined? 'store-protocol-error?) store-protocol-error? nix-protocol-error?)) (error-message (if (defined? 'store-protocol-error-message) store-protocol-error-message nix-protocol-error-message))) - (connect socket AF_UNIX - ,(inferior-bridge-file-name inferior)) ;; 'port->connection' appeared in June 2018 and we can hardly ;; emulate it on older versions. Thus fall back to ;; 'open-connection', at the risk of talking to the wrong daemon or ;; having our build result reclaimed (XXX). (let ((store (if (defined? 'port->connection) - (port->connection socket #:version ,proto) + (port->connection %bridge-socket #:version ,proto) (open-connection)))) (dynamic-wind (const #t) @@ -603,12 +646,10 @@ thus be the code of a one-argument procedure that accepts a store." `(store-protocol-error ,(error-message c)))) `(result ,(proc store)))) (lambda () - (close-connection store) - (close-port socket))))) + (unless (defined? 'port->connection) + (close-port store)))))) inferior) - (match (accept (inferior-bridge-socket inferior)) - ((client . address) - (proxy client (store-connection-socket store)))) + (proxy inferior store) (match (read-inferior-response inferior) (('store-protocol-error message) -- cgit v1.3 From c71910a095f7e1ef0ab4c1fbea85348373e5a264 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Thu, 27 Jan 2022 08:55:59 +0100 Subject: inferior: Inferior caches store connections. Fixes . Reported by Ricardo Wurmus . Previously, at each 'inferior-eval-with-store' call, the inferior would create a new object with empty caches. Consequently, when repeatedly calling 'inferior-package-derivation', we would not benefit from any caching and instead recompute all the derivations for every package. This patch fixes it by caching objects in the inferior. * guix/inferior.scm (port->inferior): Define '%store-table' in the inferior. (inferior-eval-with-store): Cache store connections in %STORE-TABLE. Remove now unneeded 'dynamic-wind' with 'close-port' call. --- guix/inferior.scm | 54 +++++++++++++++++++++++++++++++++--------------------- 1 file changed, 33 insertions(+), 21 deletions(-) diff --git a/guix/inferior.scm b/guix/inferior.scm index 1c19527b8f..9681064429 100644 --- a/guix/inferior.scm +++ b/guix/inferior.scm @@ -225,6 +225,8 @@ inferior." (inferior-eval '(use-modules (srfi srfi-34)) result) (inferior-eval '(define %package-table (make-hash-table)) result) + (inferior-eval '(define %store-table (make-hash-table)) + result) result)) (_ #f))) @@ -617,7 +619,12 @@ process." thus be the code of a one-argument procedure that accepts a store." (let* ((major (store-connection-major-version store)) (minor (store-connection-minor-version store)) - (proto (logior major minor))) + (proto (logior major minor)) + + ;; The address of STORE itself is not a good identifier because it + ;; keeps changing through the use of "functional caches". The + ;; address of its socket port makes more sense. + (store-id (object-address (store-connection-socket store)))) (ensure-store-bridge! inferior) (send-inferior-request `(let ((proc ,code) @@ -628,26 +635,31 @@ thus be the code of a one-argument procedure that accepts a store." store-protocol-error-message nix-protocol-error-message))) - ;; 'port->connection' appeared in June 2018 and we can hardly - ;; emulate it on older versions. Thus fall back to - ;; 'open-connection', at the risk of talking to the wrong daemon or - ;; having our build result reclaimed (XXX). - (let ((store (if (defined? 'port->connection) - (port->connection %bridge-socket #:version ,proto) - (open-connection)))) - (dynamic-wind - (const #t) - (lambda () - ;; Serialize '&store-protocol-error' conditions. The - ;; exception serialization mechanism that - ;; 'read-repl-response' expects is unsuitable for SRFI-35 - ;; error conditions, hence this special case. - (guard (c ((error? c) - `(store-protocol-error ,(error-message c)))) - `(result ,(proc store)))) - (lambda () - (unless (defined? 'port->connection) - (close-port store)))))) + ;; Cache connections to STORE-ID. This ensures that the caches within + ;; (in particular the object cache) are reused + ;; across calls to 'inferior-eval-with-store', which makes a + ;; significant difference when it is called repeatedly. + (let ((store (or (hashv-ref %store-table ,store-id) + + ;; 'port->connection' appeared in June 2018 and we + ;; can hardly emulate it on older versions. Thus + ;; fall back to 'open-connection', at the risk of + ;; talking to the wrong daemon or having our build + ;; result reclaimed (XXX). + (let ((store (if (defined? 'port->connection) + (port->connection %bridge-socket + #:version ,proto) + (open-connection)))) + (hashv-set! %store-table ,store-id store) + store)))) + + ;; Serialize '&store-protocol-error' conditions. The + ;; exception serialization mechanism that + ;; 'read-repl-response' expects is unsuitable for SRFI-35 + ;; error conditions, hence this special case. + (guard (c ((error? c) + `(store-protocol-error ,(error-message c)))) + `(result ,(proc store))))) inferior) (proxy inferior store) -- cgit v1.3 From e778910bdfc68c60a5be59aac93049d32feae904 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Thu, 27 Jan 2022 09:20:40 +0100 Subject: inferior: Move initialization bits away from 'inferior-eval-with-store'. * guix/inferior.scm (port->inferior): In the inferior, define 'cached-store-connection', 'store-protocol-error?', and 'store-protocol-error-message'. (inferior-eval-with-store): Use them. --- guix/inferior.scm | 76 ++++++++++++++++++++++++++++++------------------------- 1 file changed, 42 insertions(+), 34 deletions(-) diff --git a/guix/inferior.scm b/guix/inferior.scm index 9681064429..6949bb3687 100644 --- a/guix/inferior.scm +++ b/guix/inferior.scm @@ -225,7 +225,39 @@ inferior." (inferior-eval '(use-modules (srfi srfi-34)) result) (inferior-eval '(define %package-table (make-hash-table)) result) - (inferior-eval '(define %store-table (make-hash-table)) + (inferior-eval '(begin + (define %store-table (make-hash-table)) + (define (cached-store-connection store-id version) + ;; Cache connections to store ID. This ensures that + ;; the caches within (in + ;; particular the object cache) are reused across + ;; calls to 'inferior-eval-with-store', which makes a + ;; significant difference when it is called + ;; repeatedly. + (or (hashv-ref %store-table store-id) + + ;; 'port->connection' appeared in June 2018 and + ;; we can hardly emulate it on older versions. + ;; Thus fall back to 'open-connection', at the + ;; risk of talking to the wrong daemon or having + ;; our build result reclaimed (XXX). + (let ((store (if (defined? 'port->connection) + (port->connection %bridge-socket + #:version + version) + (open-connection)))) + (hashv-set! %store-table store-id store) + store)))) + result) + (inferior-eval '(begin + (define store-protocol-error? + (if (defined? 'store-protocol-error?) + store-protocol-error? + nix-protocol-error?)) + (define store-protocol-error-message + (if (defined? 'store-protocol-error-message) + store-protocol-error-message + nix-protocol-error-message))) result) result)) (_ @@ -627,39 +659,15 @@ thus be the code of a one-argument procedure that accepts a store." (store-id (object-address (store-connection-socket store)))) (ensure-store-bridge! inferior) (send-inferior-request - `(let ((proc ,code) - (error? (if (defined? 'store-protocol-error?) - store-protocol-error? - nix-protocol-error?)) - (error-message (if (defined? 'store-protocol-error-message) - store-protocol-error-message - nix-protocol-error-message))) - - ;; Cache connections to STORE-ID. This ensures that the caches within - ;; (in particular the object cache) are reused - ;; across calls to 'inferior-eval-with-store', which makes a - ;; significant difference when it is called repeatedly. - (let ((store (or (hashv-ref %store-table ,store-id) - - ;; 'port->connection' appeared in June 2018 and we - ;; can hardly emulate it on older versions. Thus - ;; fall back to 'open-connection', at the risk of - ;; talking to the wrong daemon or having our build - ;; result reclaimed (XXX). - (let ((store (if (defined? 'port->connection) - (port->connection %bridge-socket - #:version ,proto) - (open-connection)))) - (hashv-set! %store-table ,store-id store) - store)))) - - ;; Serialize '&store-protocol-error' conditions. The - ;; exception serialization mechanism that - ;; 'read-repl-response' expects is unsuitable for SRFI-35 - ;; error conditions, hence this special case. - (guard (c ((error? c) - `(store-protocol-error ,(error-message c)))) - `(result ,(proc store))))) + `(let ((proc ,code) + (store (cached-store-connection ,store-id ,proto))) + ;; Serialize '&store-protocol-error' conditions. The exception + ;; serialization mechanism that 'read-repl-response' expects is + ;; unsuitable for SRFI-35 error conditions, hence this special case. + (guard (c ((store-protocol-error? c) + `(store-protocol-error + ,(store-protocol-error-message c)))) + `(result ,(proc store)))) inferior) (proxy inferior store) -- cgit v1.3 From 89022186256d7d0478b3e99ab664e507c6f0454b Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Sun, 1 Aug 2021 11:24:22 +0300 Subject: gnu: pcre: Fix building on riscv64-linux. * gnu/packages/pcre.scm (pcre)[arguments]: Adjust configure-flags to not build with JIT when building for riscv64-linux. --- gnu/packages/pcre.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/packages/pcre.scm b/gnu/packages/pcre.scm index 0324a21261..cf8c1fb2b0 100644 --- a/gnu/packages/pcre.scm +++ b/gnu/packages/pcre.scm @@ -33,6 +33,7 @@ #:use-module (guix utils) #:use-module (guix packages) #:use-module (guix download) + #:use-module (guix utils) #:use-module (guix build-system gnu)) (define-public pcre @@ -62,7 +63,9 @@ "--enable-pcre16" "--enable-pcre32" ;; pcretest fails on powerpc32. - ,@(if (target-ppc32?) + ;; riscv64-linux is an unsupported architecture. + ,@(if (or (target-ppc32?) + (target-riscv64?)) '() `("--enable-jit"))) #:phases (modify-phases %standard-phases -- cgit v1.3 From 2bae32e1b9fbc254eb5ff245441add8ff900450c Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Sun, 8 Aug 2021 10:29:00 +0300 Subject: gnu: pcre2: Fix building on riscv64-linux. * gnu/packages/pcre.scm (pcre2)[arguments]: Adjust configure-flags to not build with JIT when building for riscv64-linux. --- gnu/packages/pcre.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/pcre.scm b/gnu/packages/pcre.scm index cf8c1fb2b0..10e29cf6ca 100644 --- a/gnu/packages/pcre.scm +++ b/gnu/packages/pcre.scm @@ -109,7 +109,9 @@ POSIX regular expression API.") "--enable-pcre2-16" "--enable-pcre2-32" ;; pcre2_jit_test fails on powerpc32. - ,@(if (target-ppc32?) + ;; riscv64-linux is an unsupported architecture. + ,@(if (or (target-ppc32?) + (target-riscv64?)) '() `("--enable-jit")) "--disable-static") -- cgit v1.3 From 41a23a1a96c90824a0c6cb5783774b7a90595a87 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Sun, 1 Aug 2021 10:55:04 +0300 Subject: gnu: elfutils: Fix building on riscv64-linux. * gnu/packages/elf.scm (elfutils)[arguments]: On riscv64-linux add a phase to skip failing test. --- gnu/packages/elf.scm | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/gnu/packages/elf.scm b/gnu/packages/elf.scm index d4f75c9726..349acf5446 100644 --- a/gnu/packages/elf.scm +++ b/gnu/packages/elf.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2013, 2014, 2015 Ludovic Courtès ;;; Copyright © 2014, 2015 Mark H Weaver ;;; Copyright © 2015 Andreas Enge -;;; Copyright © 2017, 2018, 2019, 2020 Efraim Flashner +;;; Copyright © 2017, 2018, 2019, 2020, 2021 Efraim Flashner ;;; Copyright © 2017 Leo Famulari ;;; Copyright © 2018 Tobias Geerinckx-Rice ;;; Copyright © 2018, 2020 Marius Bakke @@ -98,7 +98,14 @@ (lambda _ (substitute* "tests/Makefile.in" (("run-backtrace-native.sh") "")) - #t))))) + #t)) + ,@(if (target-riscv64?) + `((add-after 'unpack 'disable-failing-riscv64-test + (lambda _ + ;; dwfl_thread_getframes: No DWARF information found + (substitute* "tests/Makefile.in" + (("run-backtrace-dwarf.sh") ""))))) + '())))) (native-inputs (list m4)) (inputs (list zlib)) -- cgit v1.3 From a07da81745c9cc6d732441eabcede17e70b81944 Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Thu, 27 Jan 2022 14:17:36 +0100 Subject: gnu: Add flmsg. * gnu/packages/radio.scm (flmsg): New variable. --- gnu/packages/radio.scm | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index bba064c672..334375e240 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2017, 2018, 2019, 2020 Arun Isaac ;;; Copyright © 2019, 2020 Christopher Howard ;;; Copyright © 2019, 2020 Evan Straw -;;; Copyright © 2020, 2021 Guillaume Le Vaillant +;;; Copyright © 2020, 2021, 2022 Guillaume Le Vaillant ;;; Copyright © 2020 Danny Milosavljevic ;;; Copyright © 2020 Charlie Ritter ;;; Copyright © 2020, 2021 Tobias Geerinckx-Rice @@ -949,6 +949,32 @@ or USB connection.") (home-page "http://www.w1hkj.com/") (license license:gpl3+))) +(define-public flmsg + (package + (name "flmsg") + (version "4.0.19") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://git.code.sf.net/p/fldigi/flmsg") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "157s6mvky9h094hkncm47964qh0bnwg0m2rw3wx0qj1mh5isxv4j")))) + (build-system gnu-build-system) + (native-inputs + (list autoconf automake pkg-config)) + (inputs + (list fltk libx11 libxext libxfixes libxft)) + (synopsis "NBEMS messaging system") + (description + "FLMSG is a Narrow Band Emergency Messaging Software (NBEMS). +It can be used to manage, send and receive the forms that are used as basis +for emergency communications data transfers (like ICS213 forms).") + (home-page "http://www.w1hkj.com/") + (license license:gpl3+))) + (define-public flwrap (package (name "flwrap") -- cgit v1.3 From 9efb406d49388359e5e2a669f937eba95eac178d Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Thu, 27 Jan 2022 14:24:02 +0100 Subject: gnu: flrig: Update to 1.4.04. * gnu/packages/radio.scm (flrig): Update to 1.4.04. [inputs]: Add eudev. --- gnu/packages/radio.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index 334375e240..b0b886a98d 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -901,7 +901,7 @@ hardware.") (define-public flrig (package (name "flrig") - (version "1.3.52") + (version "1.4.04") (source (origin (method git-fetch) @@ -910,12 +910,12 @@ hardware.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0vxn1wy5b2zfq20k93rfgq34m1nd3mxd74h8l98f90d85fhcqggy")))) + (base32 "06alzln46x08110v1ghasphr2mmznzk0x5h59vl9g2w1z12i9zsm")))) (build-system gnu-build-system) (native-inputs (list autoconf automake pkg-config)) (inputs - (list fltk libx11 libxext libxfixes libxft)) + (list eudev fltk libx11 libxext libxfixes libxft)) (synopsis "Radio transceiver control program") (description "Flrig is a transceiver control program for amateur radio use. -- cgit v1.3 From c469a8b09e6cb54d0d7e76f1baac9591c9dc958b Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Thu, 27 Jan 2022 14:31:26 +0100 Subject: gnu: soapysdr: Update to 0.8.1. * gnu/packages/radio.scm (soapysdr): Update to 0.8.1. --- gnu/packages/radio.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index b0b886a98d..7a94113e18 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -270,7 +270,7 @@ with this package. E.g.: @code{(udev-rules-service 'airspyhf airspyhf)}") (define-public soapysdr (package (name "soapysdr") - (version "0.8.0") + (version "0.8.1") (source (origin (method git-fetch) @@ -279,7 +279,7 @@ with this package. E.g.: @code{(udev-rules-service 'airspyhf airspyhf)}") (commit (string-append "soapy-sdr-" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1dy25zxk7wmg7ik82dx7h3bbbynvalbz1dxsl7kgm3374yxhnixv")))) + (base32 "19f2x0pkxvf9figa0pl6xqlcz8fblvqb19mcnj632p0l8vk6qdv2")))) (build-system cmake-build-system) (native-inputs (list python swig)) -- cgit v1.3 From 8696b2a09f96ef58e14ddc1053f5e7cc361cd8e2 Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Thu, 27 Jan 2022 14:34:35 +0100 Subject: gnu: soapyhackrf: Update to 0.3.4. * gnu/packages/radio.scm (soapyhackrf): Update to 0.3.4. --- gnu/packages/radio.scm | 48 ++++++++++++++++++++++-------------------------- 1 file changed, 22 insertions(+), 26 deletions(-) diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index 7a94113e18..1705fdfdac 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -320,32 +320,28 @@ SoapySDR library.") (license license:expat))) (define-public soapyhackrf - ;; Use commit because some fixes are not in a release yet - ;; (last release was in 2018). - (let ((commit "8d2e7beebb4c451609cb0cee236fa4d20a0e28b1") - (revision "2")) - (package - (name "soapyhackrf") - (version (git-version "0.3.3" revision commit)) - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pothosware/SoapyHackRF") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0l5890a240i1fan88jjdxaqswk3as410nlrv12a698fy9npqh4w4")))) - (build-system cmake-build-system) - (inputs - (list hackrf soapysdr)) - (arguments - `(#:tests? #f)) ; No test suite - (home-page "https://github.com/pothosware/SoapyHackRF/wiki") - (synopsis "SoapySDR HackRF module") - (description - "This package provides HackRF devices support to the SoapySDR library.") - (license license:expat)))) + (package + (name "soapyhackrf") + (version "0.3.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pothosware/SoapyHackRF") + (commit (string-append "soapy-hackrf-" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wnnsm3c4ivwcbs1b68svbyds13aajws9mqk2xjc2pqgj0fdhcvz")))) + (build-system cmake-build-system) + (inputs + (list hackrf soapysdr)) + (arguments + `(#:tests? #f)) ; No test suite + (home-page "https://github.com/pothosware/SoapyHackRF/wiki") + (synopsis "SoapySDR HackRF module") + (description + "This package provides HackRF devices support to the SoapySDR library.") + (license license:expat))) (define-public soapyrtlsdr (package -- cgit v1.3 From 82015ad133e0ea582a7db094dbef61f50a790f84 Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Thu, 27 Jan 2022 14:46:29 +0100 Subject: gnu: chirp: Update to 20220118. * gnu/packages/radio.scm (chirp): Update to 20220118. --- gnu/packages/radio.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index 1705fdfdac..9813935372 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -370,14 +370,14 @@ SoapySDR library.") (define-public chirp (package (name "chirp") - (version "20211016") + (version "20220118") (source (origin (method url-fetch) (uri (string-append "https://trac.chirp.danplanet.com/chirp_daily/daily-" version "/chirp-daily-" version ".tar.gz")) (sha256 - (base32 "13xzqnhvnw6yipv4izkq0s9ykyl9pc5ifpr1ii8xfp28ch706qyw")))) + (base32 "0q2ifmprxqqxnww8fx8fjmm2lv9vdv6xzsk1ysa27fb290vgyawn")))) (build-system python-build-system) (inputs (list python2-libxml2 python2-pygtk python2-pyserial)) -- cgit v1.3 From 75f38958a0da57ac31d385bb2abb1123f82f7228 Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Thu, 27 Jan 2022 14:51:49 +0100 Subject: gnu: aptdec: Update to 1.7-2.5140597. * gnu/packages/radio.scm (aptdec): Update to 1.7-2.5140597. --- gnu/packages/radio.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index 9813935372..34918b0b09 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -393,8 +393,8 @@ memory contents between them.") (define-public aptdec ;; No release since 2013, use commit directly. - (let ((commit "5f91799637d93dfe7791caa7e9a6683050c4f8f3") - (revision "1")) + (let ((commit "51405971fd4e97714d1e987269e49c6edfe4e0da") + (revision "2")) (package (name "aptdec") (version (git-version "1.7" revision commit)) @@ -406,7 +406,7 @@ memory contents between them.") (commit commit))) (file-name (git-file-name name version)) (sha256 - (base32 "0i7vkjjrq392gs9qaibr7j3v4hijqqg8458dn21dwh16ncrvr9bp")))) + (base32 "0fzkhqnbkc2dd39jzb5m5mwcl31b0x3w0yykpx4s195llq4bdvis")))) (build-system cmake-build-system) (inputs (list libpng libsndfile)) -- cgit v1.3 From a977cc0399208a2005c660b67fa32d253058c31f Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Thu, 27 Jan 2022 14:53:00 +0100 Subject: gnu: redsea: Update to 0.20. * gnu/packages/radio.scm (redsea): Update to 0.20. --- gnu/packages/radio.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index 34918b0b09..2a3d2154fa 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -424,7 +424,7 @@ and a dedicated receiver.") (define-public redsea (package (name "redsea") - (version "0.18") + (version "0.20") (source (origin (method git-fetch) (uri (git-reference @@ -433,7 +433,7 @@ and a dedicated receiver.") (file-name (git-file-name name version)) (sha256 (base32 - "1y96g0ra2krjb2kypm8s5gdfia45yci4f36klsvyzg8d53v5cwhn")))) + "1bx4l87vz935cj5hapdh1dkjlmlfg73cgsjaf27314n7p4xkv50v")))) (build-system gnu-build-system) (arguments `(#:phases -- cgit v1.3 From e67ede59f27fef3041c919844b39dbf3d7ec9f45 Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Thu, 27 Jan 2022 15:00:42 +0100 Subject: gnu: gqrx: Update to 2.15.8. * gnu/packages/radio.scm (gqrx): Update to 2.15.8. --- gnu/packages/radio.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index 2a3d2154fa..23604bd43f 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -818,7 +818,7 @@ satellites.") (define-public gqrx (package (name "gqrx") - (version "2.15.4") + (version "2.15.8") (source (origin (method git-fetch) @@ -827,7 +827,7 @@ satellites.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0r5pdj2l6zs2zvkc1bd7kg9vzx25pcgiw025n5yc841m8yg6n2c9")))) + (base32 "1ph7fnjxfv7rfdlh17c8j4djvkfqjnalmcvnafhnq7agjy428727")))) (build-system qt-build-system) (native-inputs (list pkg-config)) -- cgit v1.3 From c654e4ac1622bead4b75414b27aad4cfa2ac0d3c Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Thu, 27 Jan 2022 15:06:43 +0100 Subject: gnu: hamlib: Update to 4.4. * gnu/packages/radio.scm (hamlib): Update to 4.4. --- gnu/packages/radio.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index 23604bd43f..644586a9fd 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -1051,7 +1051,7 @@ you must extend 'udev-service-type' with this package. E.g.: (define-public hamlib (package (name "hamlib") - (version "4.3.1") + (version "4.4") (source (origin (method url-fetch) @@ -1059,7 +1059,7 @@ you must extend 'udev-service-type' with this package. E.g.: "https://github.com/Hamlib/Hamlib/releases/download/" version "/hamlib-" version ".tar.gz")) (sha256 - (base32 "0c578m04zs8dllbd4cv6nxb44y0dn8kiapzkih84ycfjzmnkhdrl")))) + (base32 "11r4i8gmxnb6ixpk4ns38c9xwj3qibp2v3pkhy2z0lhz0xxi1w4b")))) (build-system gnu-build-system) (native-inputs (list doxygen -- cgit v1.3 From 24f844b1f98883852f4aae0016dace2f9304fa3a Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Thu, 27 Jan 2022 15:20:44 +0100 Subject: gnu: wsjtx: Update to 2.5.4. * gnu/packages/radio.scm (wsjtx): Update to 2.5.4. --- gnu/packages/radio.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index 644586a9fd..e7bd5fab5e 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -1172,7 +1172,7 @@ instances over the network, and general QSO and DXpedition logging.") (define-public wsjtx (package (name "wsjtx") - (version "2.5.2") + (version "2.5.4") (source (origin (method git-fetch) @@ -1181,7 +1181,7 @@ instances over the network, and general QSO and DXpedition logging.") (commit (string-append "wsjtx-" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "01346f2x3jc0gbzdi7ihzr9rxibnbzn31ix0879qfavrv8l31k1s")))) + (base32 "0nciw9smrfcsirlwyny5r9h7sk2zvm40m56y1hxpgpmbnh6mqikh")))) (build-system qt-build-system) (native-inputs (list asciidoc gfortran pkg-config qttools ruby-asciidoctor)) -- cgit v1.3 From a6033c5096ab2395e9c443f55402f9118d892d3f Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Thu, 27 Jan 2022 15:56:07 +0100 Subject: gnu: xnec2c: Update to 4.4.5. * gnu/packages/radio.scm (xnec2c): Update to 4.4.5. [source, home-page]: Update URL. [native-inputs]: Add autoconf, automake, gettext-minimal, glib:bin and libtool. [arguments]: Add 'fix-paths' phase. --- gnu/packages/radio.scm | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index e7bd5fab5e..213b741629 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -1268,19 +1268,32 @@ operators.") (define-public xnec2c (package (name "xnec2c") - (version "4.2") + (version "4.4.5") (source (origin (method url-fetch) - (uri (string-append "http://www.5b4az.org/pkg/nec2/xnec2c/xnec2c-" - version ".tar.bz2")) + (uri (string-append "https://www.xnec2c.org/releases/xnec2c-v" + version ".tar.gz")) (sha256 - (base32 "0jprahww6jvwq616lkq80sac166ffy0fp83gr5kvjc9k4pcls00n")))) + (base32 "0v3qr16d42jri2vwwgrhhknaypdcjyn6ccdjpqfzr8zzr33z5pca")))) (build-system gnu-build-system) (native-inputs - (list pkg-config)) + (list autoconf + automake + gettext-minimal + `(,glib "bin") + libtool + pkg-config)) (inputs (list gtk+)) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'fix-paths + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "src/Makefile.am" + (("\\$\\(GLIB_COMPILE_RESOURCES\\)") + (search-input-file inputs "bin/glib-compile-resources")))))))) (synopsis "Antenna modeling software") (description "Xnec2c is a GTK3-based graphical version of nec2c, a translation to the @@ -1288,7 +1301,7 @@ C language of NEC2, the FORTRAN Numerical Electromagnetics Code commonly used for antenna simulation and analysis. It can be used to define the geometry of an antenna, and then plot the radiation pattern or frequency-related data like gain and standing wave ratio.") - (home-page "http://www.5b4az.org/") + (home-page "https://www.xnec2c.org/") (license license:gpl3+))) (define-public dump1090 -- cgit v1.3 From 4f1d76365418253749e5d23ea0e6aa0c6ce5b97c Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Thu, 27 Jan 2022 16:01:10 +0100 Subject: gnu: dump1090: Update to 7.1. * gnu/packages/radio.scm (dump1090): Update to 7.1. --- gnu/packages/radio.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index 213b741629..e01b3a633a 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -1307,7 +1307,7 @@ gain and standing wave ratio.") (define-public dump1090 (package (name "dump1090") - (version "6.1") + (version "7.1") (source (origin (method git-fetch) @@ -1316,7 +1316,7 @@ gain and standing wave ratio.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "13ssp2c3s18rszpmm3rpvicqvgvfiirsjf294m6r1sf3ji7ygd9q")))) + (base32 "1702qv5g27sgpqf98sj2qbg36sqzc7r3kssslzzgljqkr5jgrw6m")))) (build-system gnu-build-system) (native-inputs (list pkg-config)) -- cgit v1.3 From 649a4e9c9c0f6f03f5c7529f2373bb8d550f6e32 Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Thu, 27 Jan 2022 16:26:32 +0100 Subject: gnu: sdrangel: Update to 6.18.1. * gnu/packages/radio.scm (sdrangel): Update to 6.18.1. --- gnu/packages/radio.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index e01b3a633a..88b9e0632c 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -1946,7 +1946,7 @@ voice formats.") (define-public sdrangel (package (name "sdrangel") - (version "6.17.5") + (version "6.18.1") (source (origin (method git-fetch) @@ -1955,7 +1955,7 @@ voice formats.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1g9972q78nxl62hpyn029s85ny5jj9dxlmmfqyz3l9sd6kdv9kl6")))) + (base32 "17lakqy55p481fa5w6ylh79xbd4rdiqk9y21vmi4m2r4wx893zw1")))) (build-system qt-build-system) (native-inputs (list doxygen graphviz pkg-config)) -- cgit v1.3 From 95a74533f12a2636caafc93f24a8058adc8d27c9 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Thu, 27 Jan 2022 10:27:14 -0500 Subject: gnu: jami: Reduce memory consumption in conversation view. This fixes . * gnu/packages/patches/jami-images-loading.patch: New patch. * gnu/packages/patches/jami-memory-usage.patch: Likewise. * gnu/local.mk (dist_patch_DATA): Register them. * gnu/packages/jami.scm (jami)[source]: Apply them. --- gnu/local.mk | 2 + gnu/packages/jami.scm | 4 +- gnu/packages/patches/jami-images-loading.patch | 152 +++++++++++++++++++++++++ gnu/packages/patches/jami-memory-usage.patch | 70 ++++++++++++ 4 files changed, 227 insertions(+), 1 deletion(-) create mode 100644 gnu/packages/patches/jami-images-loading.patch create mode 100644 gnu/packages/patches/jami-memory-usage.patch diff --git a/gnu/local.mk b/gnu/local.mk index 76354b5ea1..b52e7b29cb 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1299,6 +1299,8 @@ dist_patch_DATA = \ %D%/packages/patches/json-c-0.12-CVE-2020-12762.patch \ %D%/packages/patches/jsoncpp-pkg-config-version.patch \ %D%/packages/patches/jami-fix-crash-on-quit.patch \ + %D%/packages/patches/jami-images-loading.patch \ + %D%/packages/patches/jami-memory-usage.patch \ %D%/packages/patches/jamvm-1.5.1-aarch64-support.patch \ %D%/packages/patches/jamvm-1.5.1-armv7-support.patch \ %D%/packages/patches/jamvm-2.0.0-aarch64-support.patch \ diff --git a/gnu/packages/jami.scm b/gnu/packages/jami.scm index 9fcf55815b..c4300daf1b 100644 --- a/gnu/packages/jami.scm +++ b/gnu/packages/jami.scm @@ -568,7 +568,9 @@ decentralized calling using P2P-DHT.") (version %jami-version) (source (origin (inherit %jami-sources) - (patches (search-patches "jami-fix-crash-on-quit.patch")))) + (patches (search-patches "jami-fix-crash-on-quit.patch" + "jami-images-loading.patch" + "jami-memory-usage.patch")))) (build-system qt-build-system) (outputs '("out" "debug")) (arguments diff --git a/gnu/packages/patches/jami-images-loading.patch b/gnu/packages/patches/jami-images-loading.patch new file mode 100644 index 0000000000..caf9e1e198 --- /dev/null +++ b/gnu/packages/patches/jami-images-loading.patch @@ -0,0 +1,152 @@ +From be9dd0d0d8cb4556cd930edd783c0a1699565ac0 Mon Sep 17 00:00:00 2001 +From: kkostiuk +Date: Mon, 1 Nov 2021 17:39:23 -0400 +Subject: [PATCH] conversation: fix long loading time for images + +Change-Id: Id88cfbd571f4b504f258758bd13b4e4a91bf1b49 +--- + .../DataTransferMessageDelegate.qml | 52 +++++++++++++++++-- + src/messagesadapter.cpp | 20 +++++-- + src/messagesadapter.h | 2 +- + 3 files changed, 66 insertions(+), 8 deletions(-) + +diff --git a/client-qt/src/commoncomponents/DataTransferMessageDelegate.qml b/client-qt/src/commoncomponents/DataTransferMessageDelegate.qml +index 7875e01..2e7dcc0 100644 +--- a/client-qt/src/commoncomponents/DataTransferMessageDelegate.qml ++++ b/client-qt/src/commoncomponents/DataTransferMessageDelegate.qml +@@ -252,10 +252,11 @@ Loader { + Loader { + id: localMediaCompLoader + anchors.right: isOutgoing ? parent.right : undefined ++ asynchronous: true + width: sourceComponent.width + height: sourceComponent.height + sourceComponent: mediaInfo.isImage !== undefined ? +- imageComp : ++ imageComp : mediaInfo.isAnimatedImage !== undefined ? animatedImageComp : + avComp + Component { + id: avComp +@@ -302,9 +303,9 @@ Loader { + } + } + Component { +- id: imageComp ++ id: animatedImageComp + AnimatedImage { +- id: img ++ id: animatedImg + anchors.right: isOutgoing ? parent.right : undefined + property real minSize: 192 + property real maxSize: 256 +@@ -327,6 +328,51 @@ Loader { + anchors.fill: parent + } + layer.enabled: true ++ layer.effect: OpacityMask { ++ maskSource: MessageBubble { ++ out: isOutgoing ++ type: seq ++ width: animatedImg.width ++ height: animatedImg.height ++ radius: msgRadius ++ } ++ } ++ HoverHandler { ++ target : parent ++ onHoveredChanged: { ++ localMediaMsgItem.hoveredLink = hovered ? animatedImg.source : "" ++ } ++ cursorShape: Qt.PointingHandCursor ++ } ++ } ++ } ++ ++ Component { ++ id: imageComp ++ Image { ++ id: img ++ anchors.right: isOutgoing ? parent.right : undefined ++ property real minSize: 192 ++ property real maxSize: 256 ++ cache: true ++ fillMode: Image.PreserveAspectCrop ++ mipmap: true ++ antialiasing: true ++ autoTransform: false ++ asynchronous: true ++ source: "file:///" + Body ++ property real aspectRatio: implicitWidth / implicitHeight ++ property real adjustedWidth: Math.min(maxSize, ++ Math.max(minSize, ++ innerContent.width - senderMargin)) ++ width: adjustedWidth ++ height: Math.ceil(adjustedWidth / aspectRatio) ++ Rectangle { ++ color: JamiTheme.previewImageBackgroundColor ++ z: -1 ++ anchors.fill: parent ++ } ++ layer.enabled: true + layer.effect: OpacityMask { + maskSource: MessageBubble { + out: isOutgoing +diff --git a/client-qt/src/messagesadapter.cpp b/client-qt/src/messagesadapter.cpp +index 91f8eed..ba38e53 100644 +--- a/client-qt/src/messagesadapter.cpp ++++ b/client-qt/src/messagesadapter.cpp +@@ -458,13 +458,24 @@ MessagesAdapter::conversationTypersUrlToName(const QSet& typersSet) + return nameList; + } + +-bool ++QVariantMap + MessagesAdapter::isLocalImage(const QString& msg) + { + QImageReader reader; + reader.setDecideFormatFromContent(true); + reader.setFileName(msg); +- return !reader.read().isNull(); ++ QByteArray fileFormat = reader.format(); ++ if (fileFormat == "gif") { ++ return {{"isAnimatedImage", true}}; ++ } ++ QList supportedFormats = reader.supportedImageFormats(); ++ auto iterator = std::find_if(supportedFormats.begin(), ++ supportedFormats.end(), ++ [fileFormat](QByteArray format) { return format == fileFormat; }); ++ if (iterator != supportedFormats.end()) { ++ return {{"isImage", true}}; ++ } ++ return {{"isImage", false}}; + } + + QVariantMap +@@ -476,8 +487,9 @@ MessagesAdapter::getMediaInfo(const QString& msg) + "<%1 style='width:100%;height:%2;outline:none;background-color:#f1f3f4;" + "object-fit:cover;' " + "controls controlsList='nodownload' src='file://%3' type='%4'/>"; +- if (isLocalImage(msg)) { +- return {{"isImage", true}}; ++ QVariantMap fileInfo = isLocalImage(msg); ++ if (fileInfo["isImage"].toBool() || fileInfo["isAnimatedImage"].toBool()) { ++ return fileInfo; + } + QRegularExpression vPattern("[^\\s]+(.*?)\\.(avi|mov|webm|webp|rmvb)$", + QRegularExpression::CaseInsensitiveOption); +diff --git a/client-qt/src/messagesadapter.h b/client-qt/src/messagesadapter.h +index bfa4e62..1965c5e 100644 +--- a/client-qt/src/messagesadapter.h ++++ b/client-qt/src/messagesadapter.h +@@ -101,7 +101,7 @@ protected: + Q_INVOKABLE void deleteInteraction(const QString& interactionId); + Q_INVOKABLE void copyToDownloads(const QString& interactionId, const QString& displayName); + Q_INVOKABLE void userIsComposing(bool isComposing); +- Q_INVOKABLE bool isLocalImage(const QString& msg); ++ Q_INVOKABLE QVariantMap isLocalImage(const QString& msg); + Q_INVOKABLE QVariantMap getMediaInfo(const QString& msg); + Q_INVOKABLE bool isRemoteImage(const QString& msg); + Q_INVOKABLE QString getFormattedTime(const quint64 timestamp); +-- +GitLab + diff --git a/gnu/packages/patches/jami-memory-usage.patch b/gnu/packages/patches/jami-memory-usage.patch new file mode 100644 index 0000000000..75fcde8d0a --- /dev/null +++ b/gnu/packages/patches/jami-memory-usage.patch @@ -0,0 +1,70 @@ +From e796b3325d95b5ddd6162b5513c8325210f41fc5 Mon Sep 17 00:00:00 2001 +From: Sébastien Blin +Date: Wed, 26 Jan 2022 11:37:07 -0500 +Subject: [PATCH] datatransferimage: improve memory usage + ++ Reduce listview caching' size by 50% ++ use sourceSize to compress images and speedup loading ++ use autoTransform: true to rotate images when needed + +Change-Id: Idf1babdc73f43aa6a79b89428c25c5d06856c0ef +GitLab: #649 +--- + +diff --git a/client-qt/src/commoncomponents/DataTransferMessageDelegate.qml b/client-qt/src/commoncomponents/DataTransferMessageDelegate.qml +index d017c03..ca5913e 100644 +--- a/client-qt/src/commoncomponents/DataTransferMessageDelegate.qml ++++ b/client-qt/src/commoncomponents/DataTransferMessageDelegate.qml +@@ -255,9 +255,13 @@ + asynchronous: true + width: sourceComponent.width + height: sourceComponent.height +- sourceComponent: mediaInfo.isImage !== undefined ? +- imageComp : mediaInfo.isAnimatedImage !== undefined ? animatedImageComp : +- avComp ++ sourceComponent: { ++ if (mediaInfo.isImage) ++ return imageComp ++ if (mediaInfo.isAnimatedImage) ++ return animatedImageComp ++ return avComp ++ } + Component { + id: avComp + WebEngineView { +@@ -316,7 +320,7 @@ + fillMode: Image.PreserveAspectCrop + mipmap: true + antialiasing: true +- autoTransform: false ++ autoTransform: true + asynchronous: true + source: "file:///" + Body + property real aspectRatio: implicitWidth / implicitHeight +@@ -361,8 +365,10 @@ + fillMode: Image.PreserveAspectCrop + mipmap: true + antialiasing: true +- autoTransform: false ++ autoTransform: true + asynchronous: true ++ sourceSize.width: width ++ sourceSize.height: height + source: "file:///" + Body + property real aspectRatio: implicitWidth / implicitHeight + property real adjustedWidth: Math.min(maxSize, +diff --git a/client-qt/src/mainview/components/MessageListView.qml b/client-qt/src/mainview/components/MessageListView.qml +index 2b7c326..f65e67b 100644 +--- a/client-qt/src/mainview/components/MessageListView.qml ++++ b/client-qt/src/mainview/components/MessageListView.qml +@@ -174,8 +174,8 @@ + width: parent.width + // this offscreen caching is pretty huge + // displayMarginEnd may be removed +- displayMarginBeginning: 4096 +- displayMarginEnd: 4096 ++ displayMarginBeginning: 2048 ++ displayMarginEnd: 2048 + maximumFlickVelocity: 2048 + verticalLayoutDirection: ListView.BottomToTop + boundsBehavior: Flickable.StopAtBounds -- cgit v1.3 From 1916d6df6fc03a788bc4bbb56c01bdeb15fc8389 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Thu, 27 Jan 2022 13:57:54 -0500 Subject: gnu: jami-libclient: Properly return the list of audio managers. * gnu/packages/patches/jami-libclient-audio-managers.patch: New patch. * gnu/local.mk (dist_patch_DATA): Register it. * gnu/packages/jami.scm (jami)[source]: Move all patches to... (%jami-sources): here and add the newly added patch. --- gnu/local.mk | 1 + gnu/packages/jami.scm | 10 +++++----- .../patches/jami-libclient-audio-managers.patch | 23 ++++++++++++++++++++++ 3 files changed, 29 insertions(+), 5 deletions(-) create mode 100644 gnu/packages/patches/jami-libclient-audio-managers.patch diff --git a/gnu/local.mk b/gnu/local.mk index b52e7b29cb..27e7877361 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1301,6 +1301,7 @@ dist_patch_DATA = \ %D%/packages/patches/jami-fix-crash-on-quit.patch \ %D%/packages/patches/jami-images-loading.patch \ %D%/packages/patches/jami-memory-usage.patch \ + %D%/packages/patches/jami-libclient-audio-managers.patch \ %D%/packages/patches/jamvm-1.5.1-aarch64-support.patch \ %D%/packages/patches/jamvm-1.5.1-armv7-support.patch \ %D%/packages/patches/jamvm-2.0.0-aarch64-support.patch \ diff --git a/gnu/packages/jami.scm b/gnu/packages/jami.scm index c4300daf1b..443e42e2db 100644 --- a/gnu/packages/jami.scm +++ b/gnu/packages/jami.scm @@ -86,6 +86,10 @@ "client-ios" "client-macosx" "client-uwp")))) + (patches (search-patches "jami-libclient-audio-managers.patch" + "jami-fix-crash-on-quit.patch" + "jami-images-loading.patch" + "jami-memory-usage.patch")) (sha256 (base32 "12h4a0nj3gh05w64gkywrrb64agrhn6y3q4b9cqnhvr1vdkzlj0h")))) @@ -566,11 +570,7 @@ decentralized calling using P2P-DHT.") (package (name "jami") (version %jami-version) - (source (origin - (inherit %jami-sources) - (patches (search-patches "jami-fix-crash-on-quit.patch" - "jami-images-loading.patch" - "jami-memory-usage.patch")))) + (source %jami-sources) (build-system qt-build-system) (outputs '("out" "debug")) (arguments diff --git a/gnu/packages/patches/jami-libclient-audio-managers.patch b/gnu/packages/patches/jami-libclient-audio-managers.patch new file mode 100644 index 0000000000..1f8a5585e6 --- /dev/null +++ b/gnu/packages/patches/jami-libclient-audio-managers.patch @@ -0,0 +1,23 @@ +From f5e4619d02526d961c14012a6cae1a091aa149d4 Mon Sep 17 00:00:00 2001 +From: Sébastien Blin +Date: Thu, 27 Jan 2022 13:48:32 -0500 +Subject: [PATCH] misc: link getSupportedAudioManagers +q +Change-Id: I897e49cd131d3cbffef9fb1d5c9be3c0bc9bcb3f +GitLab: #495 +--- + +diff --git a/lrc/src/qtwrapper/configurationmanager_wrap.h b/lrc/src/qtwrapper/configurationmanager_wrap.h +index a680138..2807f8a 100644 +--- a/lrc/src/qtwrapper/configurationmanager_wrap.h ++++ b/lrc/src/qtwrapper/configurationmanager_wrap.h +@@ -526,8 +526,7 @@ + + QStringList getSupportedAudioManagers() + { +- QStringList temp; +- return temp; ++ return convertStringList(DRing::getSupportedAudioManagers()); + } + + QStringList getSupportedTlsMethod() -- cgit v1.3 From ff14bc60e56fb0c6636da1da9a850b7b04abb367 Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Thu, 27 Jan 2022 20:38:38 +0100 Subject: gnu: xnec2c: Add openblas support. * gnu/packages/radio.scm (xnec2c)[inputs]: Add openblas. [arguments]: Add 'configure-flags'. Update 'fix-paths' phase. --- gnu/packages/radio.scm | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index 88b9e0632c..1e02e2f33e 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -1285,15 +1285,22 @@ operators.") libtool pkg-config)) (inputs - (list gtk+)) + (list gtk+ openblas)) (arguments - `(#:phases + `(#:configure-flags + ,#~(list (string-append "--with-openblas-incdir=" + #$(this-package-input "openblas") + "/include")) + #:phases (modify-phases %standard-phases (add-after 'unpack 'fix-paths (lambda* (#:key inputs #:allow-other-keys) (substitute* "src/Makefile.am" (("\\$\\(GLIB_COMPILE_RESOURCES\\)") - (search-input-file inputs "bin/glib-compile-resources")))))))) + (search-input-file inputs "bin/glib-compile-resources"))) + (substitute* "src/mathlib.c" + (("libopenblas\\.so") + (search-input-file inputs "lib/libopenblas.so")))))))) (synopsis "Antenna modeling software") (description "Xnec2c is a GTK3-based graphical version of nec2c, a translation to the -- cgit v1.3 From 3ee633feb2dc873df0217c36b89dbde0b4fbb0cc Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Thu, 27 Jan 2022 21:24:33 +0100 Subject: gnu: Add kockmorse. * gnu/packages/radio.scm (kockmorse): New variable. --- gnu/packages/radio.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index 1e02e2f33e..3cc5b73575 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -1583,6 +1583,32 @@ programs using the library: cw, cwgen, cwcp and xcwcp. The programs are intended for people who want to learn receiving and sending morse code.") (license license:gpl2+))) +(define-public kockmorse + (package + (name "kochmorse") + (version "3.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hmatuschek/kochmorse") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1s1aj223n57rpc95rih98z08xnyhq2zp02byzrc3f7s01fv3nj0l")))) + (build-system qt-build-system) + (native-inputs + (list qttools)) + (inputs + (list qtbase-5 qtmultimedia)) + (arguments + `(#:tests? #f)) ; No test suite + (home-page "https://dm3mat.darc.de/kochmorse/") + (synopsis "Morse code tutor") + (description + "KochMorse is a simple morse-code tutor using the Koch method.") + (license license:gpl2+))) + (define-public gnuais (package (name "gnuais") -- cgit v1.3 From b72f5255b09d0440d657bafbf07b2181c3a0b7d6 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Sun, 8 Aug 2021 11:48:59 +0300 Subject: gnu: icu4c: Skip tests on riscv64-linux. * gnu/packages/icu4c.scm (icu4c)[arguments]: Add phase to skip failing test on riscv64-linux. --- gnu/packages/icu4c.scm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gnu/packages/icu4c.scm b/gnu/packages/icu4c.scm index 5b8f00863a..6032da11d1 100644 --- a/gnu/packages/icu4c.scm +++ b/gnu/packages/icu4c.scm @@ -82,6 +82,14 @@ (("LDFLAGSICUDT=-nodefaultlibs -nostdlib") "LDFLAGSICUDT=")) #t)) + ,@(if (target-riscv64?) + `((add-after 'unpack 'disable-failing-test + ;; It is unknown why this test is failing. + (lambda _ + (substitute* "source/test/intltest/numbertest_api.cpp" + (("(TESTCASE_AUTO\\(unitUsage\\));" all) + (string-append "//" all)))))) + '()) (add-after 'install 'avoid-coreutils-reference ;; Don't keep a reference to the build tools. (lambda* (#:key outputs #:allow-other-keys) -- cgit v1.3 From c6bf89cff07802f5ebc7f1b1deb2e390641ec1b6 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Thu, 27 Jan 2022 22:06:26 +0100 Subject: gnu: pigx-rnaseq: Fix Python module capture. The build system expects all Python modules to be on PYTHONPATH. * gnu/packages/bioinformatics.scm (pigx-rnaseq)[arguments]: Set PYTHONPATH variable in new build phase. --- gnu/packages/bioinformatics.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index c872c9c45a..e501c84265 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -10895,6 +10895,9 @@ once. This package provides tools to perform Drop-seq analyses.") (add-before 'bootstrap 'autoreconf (lambda _ (invoke "autoreconf" "-vif"))) + (add-before 'configure 'set-PYTHONPATH + (lambda _ + (setenv "PYTHONPATH" (getenv "GUIX_PYTHONPATH")))) (add-before 'check 'set-timezone ;; The readr package is picky about timezones. (lambda* (#:key inputs #:allow-other-keys) -- cgit v1.3 From f127bce3ecf4964d0733537b32266f93d816b6b5 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Thu, 27 Jan 2022 22:13:00 +0100 Subject: gnu: pigx-chipseq: Fix Python module capture. The build system expects all Python modules to be on PYTHONPATH. * gnu/packages/bioinformatics.scm (pigx-chipseq)[arguments]: Set PYTHONPATH variable in new build phase. --- gnu/packages/bioinformatics.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index e501c84265..9e7191dad8 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -10972,7 +10972,10 @@ expression report comparing samples in an easily configurable manner.") (modify-phases %standard-phases (add-before 'bootstrap 'autoreconf (lambda _ - (invoke "autoreconf" "-vif")))))) + (invoke "autoreconf" "-vif"))) + (add-before 'configure 'set-PYTHONPATH + (lambda _ + (setenv "PYTHONPATH" (getenv "GUIX_PYTHONPATH"))))))) (inputs (list grep coreutils -- cgit v1.3 From f4cbf11c655475f0f0c21b0a69ca5bbb2e460133 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Thu, 27 Jan 2022 22:13:19 +0100 Subject: gnu: pigx-bsseq: Fix Python module capture. The build system expects all Python modules to be on PYTHONPATH. * gnu/packages/bioinformatics.scm (pigx-bsseq)[arguments]: Set PYTHONPATH variable in new build phase. --- gnu/packages/bioinformatics.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 9e7191dad8..39f4a20051 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -11061,6 +11061,9 @@ in an easily configurable manner.") (add-before 'bootstrap 'autoreconf (lambda _ (invoke "autoreconf" "-vif"))) + (add-before 'configure 'set-PYTHONPATH + (lambda _ + (setenv "PYTHONPATH" (getenv "GUIX_PYTHONPATH")))) (add-before 'check 'set-timezone ;; The readr package is picky about timezones. (lambda* (#:key inputs #:allow-other-keys) -- cgit v1.3 From aa649ae2311df88fb7118334d2d5b2222b8d7642 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Thu, 27 Jan 2022 22:13:38 +0100 Subject: gnu: pigx-scrnaseq: Fix Python module capture. The build system expects all Python modules to be on PYTHONPATH. * gnu/packages/bioinformatics.scm (pigx-scrnaseq)[arguments]: Set PYTHONPATH variable in new build phase. --- gnu/packages/bioinformatics.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 39f4a20051..93be974f1f 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -11132,7 +11132,10 @@ methylation and segmentation.") (modify-phases %standard-phases (add-before 'bootstrap 'autoreconf (lambda _ - (invoke "autoreconf" "-vif")))))) + (invoke "autoreconf" "-vif"))) + (add-before 'configure 'set-PYTHONPATH + (lambda _ + (setenv "PYTHONPATH" (getenv "GUIX_PYTHONPATH"))))))) (native-inputs (list automake autoconf)) (inputs -- cgit v1.3 From f00ed436535e9e5840ca85ec4cf5df6547528db7 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Thu, 27 Jan 2022 22:13:57 +0100 Subject: gnu: pigx-sars-cov2-ww: Fix Python module capture. The build system expects all Python modules to be on PYTHONPATH. * gnu/packages/bioinformatics.scm (pigx-sars-cov2-ww)[arguments]: Set PYTHONPATH variable in new build phase. --- gnu/packages/bioinformatics.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 93be974f1f..dbacb4f1f5 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -11209,7 +11209,10 @@ based methods.") (modify-phases %standard-phases (add-before 'bootstrap 'autoreconf (lambda _ - (invoke "autoreconf" "-vif")))))) + (invoke "autoreconf" "-vif"))) + (add-before 'configure 'set-PYTHONPATH + (lambda _ + (setenv "PYTHONPATH" (getenv "GUIX_PYTHONPATH"))))))) (native-inputs (list automake autoconf)) (inputs -- cgit v1.3 From fd0266c4bf891065a7bedb6c17d08b6889755501 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 23 Jan 2022 01:00:00 +0100 Subject: gnu: kochmorse: Rename. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/radio.scm (kockmorse): Rename this variable… (kochmorse): …to this less bad variable. --- gnu/packages/radio.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index 3cc5b73575..e487987738 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -1583,7 +1583,7 @@ programs using the library: cw, cwgen, cwcp and xcwcp. The programs are intended for people who want to learn receiving and sending morse code.") (license license:gpl2+))) -(define-public kockmorse +(define-public kochmorse (package (name "kochmorse") (version "3.5.1") -- cgit v1.3 From 87c3bee5fee41fe72d5d4cc9d7ca6becbcb889ef Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Thu, 27 Jan 2022 17:13:58 -0500 Subject: gnu: linux-libre 5.16: Update to 5.16.3. * gnu/packages/linux.scm (linux-libre-5.16-version): Update to 5.16.3. (linux-libre-5.16-pristine-source, deblob-scripts-5.16): Update hashes. --- gnu/packages/linux.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 726df45c5b..801ef60be8 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -357,17 +357,17 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." ;; The current "stable" kernels. That is, the most recently released major ;; versions that are still supported upstream. -(define-public linux-libre-5.16-version "5.16.2") +(define-public linux-libre-5.16-version "5.16.3") (define-public linux-libre-5.16-gnu-revision "gnu") (define deblob-scripts-5.16 (linux-libre-deblob-scripts linux-libre-5.16-version linux-libre-5.16-gnu-revision (base32 "0c9c8zd85p84r8k4xhys8xw15pds71v0ca2b6hm1pr4f6lpzck0g") - (base32 "0c5ld3ii3ixnr27sp59mbh40340jlmxaxk7z1xbl4v94mnzmwz3x"))) + (base32 "121250yms9wysxpspvjgcvy0l97sz7g9flykwy3shnaadjkj9hay"))) (define-public linux-libre-5.16-pristine-source (let ((version linux-libre-5.16-version) - (hash (base32 "0i1vcv2zi80ixmgjdcq6yk8qhwaqlbbmmrq0prxk41339lx87zh9"))) + (hash (base32 "1cdmp7k6qfm8gyr8zv589y6bgmyj7n6wyk36f98m0w2vq3ljyh5s"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-5.16))) -- cgit v1.3 From aad96ed540702b301c380b83bd7d10bc93a27b51 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Thu, 27 Jan 2022 17:14:21 -0500 Subject: gnu: linux-libre: Update to 5.15.17. * gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.17. (linux-libre-5.15-pristine-source, deblob-scripts-5.15): Update hashes. --- gnu/packages/linux.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 801ef60be8..6443acb7a1 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -375,17 +375,17 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." ;; The "longterm" kernels — the older releases with long-term upstream support. ;; Here are the support timelines: ;; -(define-public linux-libre-5.15-version "5.15.16") +(define-public linux-libre-5.15-version "5.15.17") (define-public linux-libre-5.15-gnu-revision "gnu") (define deblob-scripts-5.15 (linux-libre-deblob-scripts linux-libre-5.15-version linux-libre-5.15-gnu-revision (base32 "1rfhwfzifmbpnrhmrn3srm736nkm1v6affw915d0fgqzqgi8qfai") - (base32 "04fj1x3zmi310cr3m9hxpi26gdcmwfsqciv5yb6q6rrnqjqs1pc0"))) + (base32 "15ni12b5nk3ff66i5bh4dzrpgqsgdw8n6v685hi2ps3wgah5mp13"))) (define-public linux-libre-5.15-pristine-source (let ((version linux-libre-5.15-version) - (hash (base32 "150pzxra564z9xaaclmbbd29x4x9il8y78zz7szi50lzx0a0l2ms"))) + (hash (base32 "1pmbf3xin533z4jpqj8p733ii5zk0k36v4cpzl14k62rrk0gb1r7"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-5.15))) -- cgit v1.3 From c77026c88cb2e9b9dad554cc524ab7f64d10ee71 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Thu, 27 Jan 2022 17:15:03 -0500 Subject: gnu: linux-libre 5.10: Update to 5.10.94. * gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.94. (linux-libre-5.10-pristine-source, deblob-scripts-5.10): Update hashes. --- gnu/packages/linux.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 6443acb7a1..7db3e69c0f 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -390,17 +390,17 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (%upstream-linux-source version hash) deblob-scripts-5.15))) -(define-public linux-libre-5.10-version "5.10.93") +(define-public linux-libre-5.10-version "5.10.94") (define-public linux-libre-5.10-gnu-revision "gnu1") (define deblob-scripts-5.10 (linux-libre-deblob-scripts linux-libre-5.10-version linux-libre-5.10-gnu-revision (base32 "1swy3y851jnnmk3hc0khllpsifb98camlwyskpn1dyvjsgjljd8x") - (base32 "024rz0bp3n3r5nkwbib7byx10d72c2fh5cw9iv00diyzgnp819g7"))) + (base32 "0ybf64jcd8rhpsm056g4038j8lcbxz6l8w817acc0znfcxvgp12r"))) (define-public linux-libre-5.10-pristine-source (let ((version linux-libre-5.10-version) - (hash (base32 "1jxv7can60rc5i2yjgj8frcjvwi1jnba1jl8i3070xmb1d1qqy56"))) + (hash (base32 "023mrm8wjmxi6qp21p1d0kzs8k0pls6l8kp75ajix2ls9am49zr8"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-5.10))) -- cgit v1.3 From 0224b1d01e4511a5b23c4d3e0bdde77b96aad251 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Thu, 27 Jan 2022 17:15:45 -0500 Subject: gnu: linux-libre 5.4: Update to 5.4.174. * gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.174. (linux-libre-5.4-pristine-source, deblob-scripts-5.4): Update hashes. --- gnu/packages/linux.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 7db3e69c0f..6b9d94e6cb 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -405,17 +405,17 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (%upstream-linux-source version hash) deblob-scripts-5.10))) -(define-public linux-libre-5.4-version "5.4.173") +(define-public linux-libre-5.4-version "5.4.174") (define-public linux-libre-5.4-gnu-revision "gnu1") (define deblob-scripts-5.4 (linux-libre-deblob-scripts linux-libre-5.4-version linux-libre-5.4-gnu-revision (base32 "1nlgk8ajb5wl3aa96h9a0pb9j5a5wmrbpk63varn557x1d00r7wj") - (base32 "1a0k9i8gnzkyvfr80f8xw2fnxfwddhz1pzicz9fh0y3jzzkzk45p"))) + (base32 "1mp9d0b7mqw7cl65k0a18265cvn4qwcpnvna8r6n5m3y4pz3rik9"))) (define-public linux-libre-5.4-pristine-source (let ((version linux-libre-5.4-version) - (hash (base32 "0ff2jvwxj55547wvwp94a8bsd610s72906d4nsyhiirrn9sy5s4r"))) + (hash (base32 "1a88hfcskrcbz7gyh8pkcymka4djdhdy6fdh4i0b9ygsmvjipkg8"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-5.4))) -- cgit v1.3 From 41eac41574243e28c8a9e325d11283dad8eb18c8 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Thu, 27 Jan 2022 17:16:55 -0500 Subject: gnu: linux-libre 4.19: Update to 4.19.226. * gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.226. (linux-libre-4.19-pristine-source, deblob-scripts-4.19): Update hashes. --- gnu/packages/linux.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 6b9d94e6cb..273df8c33b 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -420,17 +420,17 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (%upstream-linux-source version hash) deblob-scripts-5.4))) -(define-public linux-libre-4.19-version "4.19.225") +(define-public linux-libre-4.19-version "4.19.226") (define-public linux-libre-4.19-gnu-revision "gnu1") (define deblob-scripts-4.19 (linux-libre-deblob-scripts linux-libre-4.19-version linux-libre-4.19-gnu-revision (base32 "06pqv050bkii0hc2v7ymny5264w1bca8db0dp1pw9mfmjg865am5") - (base32 "1a0k9i8gnzkyvfr80f8xw2fnxfwddhz1pzicz9fh0y3jzzkzk45p"))) + (base32 "1mp9d0b7mqw7cl65k0a18265cvn4qwcpnvna8r6n5m3y4pz3rik9"))) (define-public linux-libre-4.19-pristine-source (let ((version linux-libre-4.19-version) - (hash (base32 "15k7b04zx5ggfjagp8sfrylr9xgwgz3hb2bygdml7ka1jnbv76jb"))) + (hash (base32 "1b9qvl994n09708sql3q3g5l3xq2hxam83fnws5asd8mdnk7i7wk"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-4.19))) -- cgit v1.3 From 96407179fad44189d52f167518a13315ee6d3743 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Thu, 27 Jan 2022 17:17:28 -0500 Subject: gnu: linux-libre 4.14: Update to 4.14.263. * gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.263. (linux-libre-4.14-pristine-source, deblob-scripts-4.14): Update hashes. --- gnu/packages/linux.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 273df8c33b..74e005bb7b 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -435,17 +435,17 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (%upstream-linux-source version hash) deblob-scripts-4.19))) -(define-public linux-libre-4.14-version "4.14.262") +(define-public linux-libre-4.14-version "4.14.263") (define-public linux-libre-4.14-gnu-revision "gnu1") (define deblob-scripts-4.14 (linux-libre-deblob-scripts linux-libre-4.14-version linux-libre-4.14-gnu-revision (base32 "02rxvr0gmxb3zfsyyzdmzgfq04gkdkv1cc38md0xfl0mxzdzdfyk") - (base32 "1a0k9i8gnzkyvfr80f8xw2fnxfwddhz1pzicz9fh0y3jzzkzk45p"))) + (base32 "1mp9d0b7mqw7cl65k0a18265cvn4qwcpnvna8r6n5m3y4pz3rik9"))) (define-public linux-libre-4.14-pristine-source (let ((version linux-libre-4.14-version) - (hash (base32 "05yl51r5n3q9l8pq6azx3bbl69l79lk8vkdivy3cvgzdh59pizac"))) + (hash (base32 "0bn17p1mmkc37bqv7bvksli4xpyp660mbcjm6jmh6k348i1bfwqf"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-4.14))) -- cgit v1.3 From 1097be7c593e03fbca0ce4fd52ff0863c03aeb76 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Thu, 27 Jan 2022 17:18:04 -0500 Subject: gnu: linux-libre 4.9: Update to 4.9.298. * gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.298. (linux-libre-4.9-pristine-source, deblob-scripts-4.9): Update hashes. --- gnu/packages/linux.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 74e005bb7b..6c3f92d731 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -450,17 +450,17 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (%upstream-linux-source version hash) deblob-scripts-4.14))) -(define-public linux-libre-4.9-version "4.9.297") +(define-public linux-libre-4.9-version "4.9.298") (define-public linux-libre-4.9-gnu-revision "gnu1") (define deblob-scripts-4.9 (linux-libre-deblob-scripts linux-libre-4.9-version linux-libre-4.9-gnu-revision (base32 "0nai5m4rbh37qaj1xf2qj7656l2gacfh0847q5d07y22b048fq5n") - (base32 "1a0k9i8gnzkyvfr80f8xw2fnxfwddhz1pzicz9fh0y3jzzkzk45p"))) + (base32 "0wdaj40pcq9wg5xnz2zj3jj8bawhfgqxcwp6dnavbf9lq0gca48p"))) (define-public linux-libre-4.9-pristine-source (let ((version linux-libre-4.9-version) - (hash (base32 "17yqnr6p0prgcw8nikjmi49ll4s77ylaixcja5m15cq9x36shfz4"))) + (hash (base32 "0nrhjqn6bfp9h5dc7yacgkbfvfdhlks8ph4dzqyfjljmx9cf95ym"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-4.9))) -- cgit v1.3 From 33373e86225f60a7b20a33bb0fdf20f79e600901 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Thu, 27 Jan 2022 17:18:38 -0500 Subject: gnu: linux-libre 4.4: Update to 4.4.300. * gnu/packages/linux.scm (linux-libre-4.4-version): Update to 4.4.300. (linux-libre-4.4-pristine-source, deblob-scripts-4.4): Update hashes. --- gnu/packages/linux.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 6c3f92d731..fc67eae365 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -465,17 +465,17 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (%upstream-linux-source version hash) deblob-scripts-4.9))) -(define-public linux-libre-4.4-version "4.4.299") +(define-public linux-libre-4.4-version "4.4.300") (define-public linux-libre-4.4-gnu-revision "gnu1") (define deblob-scripts-4.4 (linux-libre-deblob-scripts linux-libre-4.4-version linux-libre-4.4-gnu-revision (base32 "1mmnv77432la5dkhpy1n8w59c0v6l08fyf2ggh294gyrx8nbci11") - (base32 "1a0k9i8gnzkyvfr80f8xw2fnxfwddhz1pzicz9fh0y3jzzkzk45p"))) + (base32 "0wdaj40pcq9wg5xnz2zj3jj8bawhfgqxcwp6dnavbf9lq0gca48p"))) (define-public linux-libre-4.4-pristine-source (let ((version linux-libre-4.4-version) - (hash (base32 "019hmplv1zhghl840qky9awziba3gx7jm80khny44gjfbyzf7d4v"))) + (hash (base32 "19mpqg48yi7qm1a2mncqax7pj42accryj6yrkbywd7kj4q0b64kg"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-4.4))) -- cgit v1.3 From f86c4796160aec6b676f5d35d38b9ebda334e21c Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Wed, 19 Jan 2022 09:18:50 +0100 Subject: gnu: Add rust-rustc-hex-1. * gnu/packages/crates-io.scm (rust-rustc-hex-1): New variable. (rust-rustc-hex-2)[synopsis, description]: Improve wording. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 878319faa2..3693b7e330 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -1,4 +1,3 @@ - ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2019 Ivan Petkov ;;; Copyright © 2019, 2020, 2021, 2022 Efraim Flashner @@ -49276,11 +49275,24 @@ It is automatically published using the compiler repository at (build-system cargo-build-system) (arguments `(#:skip-build? #t)) (home-page "https://github.com/debris/rustc-hex") - (synopsis "Rustc-serialize compatible hex conversion traits") - (description "This package provides rustc-serialize compatible hex -conversion traits.") + (synopsis "@code{rustc-serialize} compatible hex conversion traits") + (description "This Rust library provides @code{rustc-serialize} compatible +hex conversion traits.") (license (list license:expat license:asl2.0)))) +(define-public rust-rustc-hex-1 + (package + (inherit rust-rustc-hex-2) + (name "rust-rustc-hex") + (version "1.0.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "rustc-hex" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "07pff94vqc1mhrqp9i06xzayiad4xfx7588zkqsdw875lpkqrsqc")))))) + (define-public rust-rustc-rayon-0.3 (package (name "rust-rustc-rayon") -- cgit v1.3 From 48b988b195e631d56e304ec4449a17279bc062a9 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Wed, 19 Jan 2022 09:29:13 +0100 Subject: gnu: Add rust-parity-bytes-0.1 * gnu/packages/crates-io.scm (rust-parity-bytes-0.1): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 3693b7e330..f967dbdc87 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -39051,6 +39051,25 @@ sequence alignment tools.") want in the terminal.") (license license:mpl2.0))) +(define-public rust-parity-bytes-0.1 + (package + (name "rust-parity-bytes") + (version "0.1.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "parity-bytes" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0rww406dih6yxr4iadz7l07sibklqywxz10gjzdqn4r04hx6xd8n")))) + (build-system cargo-build-system) + (arguments `(#:skip-build? #t)) + (home-page "https://github.com/paritytech/parity-common") + (synopsis "General bytes-related utilities") + (description "This package provides general bytes-related utilities, +including a pretty-printer.") + (license (list license:expat license:asl2.0)))) + (define-public rust-parity-tokio-ipc-0.4 (package (name "rust-parity-tokio-ipc") -- cgit v1.3 From 3532c7f702f6e5033ddd0c856fc62c0505edaf49 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Wed, 19 Jan 2022 09:39:57 +0100 Subject: gnu: Add rust-ethereum-types-0.9, rust-ethereum-types-0.12. * gnu/packages/crates-io.scm (rust-ethereum-types-0.9): New variable. (rust-ethereum-types-0.12): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index f967dbdc87..14d318d3be 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -20080,6 +20080,43 @@ decoding.") (("rust-serde" ,rust-serde-1) ("rust-serde-json" ,rust-serde-json-1)))))) +(define-public rust-ethereum-types-0.12 + (package + (name "rust-ethereum-types") + (version "0.12.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "ethereum-types" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1bxxacsmb9majw7vd4sndv4dhw3g9srhf7flwq39yy7yaxq6y4q5")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t)) + (home-page "https://github.com/paritytech/parity-common") + (synopsis "Rust crate exporting some Ethereum types") + (description "This crate exports Rust types for values in the Ethereum +ecosystem.") + (license (list license:expat license:asl2.0)))) + +(define-public rust-ethereum-types-0.9 + (package + (inherit rust-ethereum-types-0.12) + (name "rust-ethereum-types") + (version "0.9.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "ethereum-types" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1c1l2sg6li301izl4nzkkfrpc8snafxwnr81vfwygn3bd3zyqfj7")))))) + (define-public rust-event-listener-2 (package (name "rust-event-listener") -- cgit v1.3 From d20c51e5e62642b11f9ab574f368d309e4ae43bb Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Wed, 19 Jan 2022 10:55:27 +0100 Subject: gnu: rust-base64ct-1: Update to 1.3.3. * gnu/packages/crates-io.scm (rust-base64ct): Update to 1.3.3. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 14d318d3be..d27c3f5cf8 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -5787,24 +5787,26 @@ c6e7d37. However, this package works only up to 128 bytes.") (define-public rust-base64ct-1 (package (name "rust-base64ct") - (version "1.1.1") + (version "1.3.3") (source (origin (method url-fetch) (uri (crate-uri "base64ct" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 - "0p4was874qc90q2chm2i14m9mn8zmxjis8vaxihd6a2x4aqxkd76")))) + (base32 "1818i0gpg7q35s6yglmhgciwi3jwx65mqc2ipjl54jfbmm288kw7")))) (build-system cargo-build-system) - (arguments `(#:skip-build? #t)) + (arguments + `(#:cargo-development-inputs + (("rust-base64" ,rust-base64-0.13) + ("rust-proptest" ,rust-proptest-1)))) (home-page "https://github.com/RustCrypto/formats/tree/master/base64ct") (synopsis "Implementation of Base64 (RFC 4648)") (description "This package is a pure Rust implementation of Base64 (RFC 4648) which avoids any usages of data-dependent branches/LUTs and thereby provides -portable \"best effort\" constant-time operation and embedded-friendly no_std -support.") +portable \"best effort\" constant-time operation and embedded-friendly +@code{no_std} support.") (license (list license:asl2.0 license:expat)))) (define-public rust-base-x-0.2 -- cgit v1.3 From 932aa1b3458c431755b4ea6f8c04bd9d6a1add67 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Mon, 24 Jan 2022 11:34:03 +0100 Subject: gnu: Add rust-base64ct-1.0.1. * gnu/packages/crates-io.scm (rust-base64ct-1.0.1): New variable. This will be needed later because some packages request specifically this version, probably due to some non-backwards compatible change. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index d27c3f5cf8..c9c994a980 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -5809,6 +5809,20 @@ portable \"best effort\" constant-time operation and embedded-friendly @code{no_std} support.") (license (list license:asl2.0 license:expat)))) +(define-public rust-base64ct-1.0.1 + (package + (inherit rust-base64ct-1) + (name "rust-base64ct") + (version "1.0.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "base64ct" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0sx4a44c2n450lsmi0q1mgfbjhkw1sx57462cv77p0mmy9mgscla")))) + (arguments '()))) + (define-public rust-base-x-0.2 (package (name "rust-base-x") -- cgit v1.3 From 09279ad1f38f6ad47aca3ccfb81d88a04b9cf63f Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Wed, 19 Jan 2022 11:09:29 +0100 Subject: gnu: Add rust-password-hash-0.1. * gnu/packages/crates-io.scm (rust-password-hash-0.1): New variable. Inherit from rust-password-hash-0.3. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index c9c994a980..48848a1b59 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -39783,6 +39783,24 @@ the PHC string format (a well-defined subset of the Modular Crypt Format (MCF).") (license (list license:expat license:asl2.0)))) +(define-public rust-password-hash-0.1 + (package + (inherit rust-password-hash-0.3) + (name "rust-password-hash") + (version "0.1.4") + (source + (origin + (method url-fetch) + (uri (crate-uri "password-hash" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1ymh3np2bamjy8rszimksxcp264dclil4620bxm8rff9pyj6m62l")))) + (arguments + `(#:skip-build? #t + #:cargo-inputs + (("rust-base64ct" ,rust-base64ct-1) + ("rust-rand-core" ,rust-rand-core-0.6)))))) + (define-public rust-paste-1 (package (name "rust-paste") -- cgit v1.3 From bd1aecf5fb0a07fb17b0ac63bd61cdf0dda20b03 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Wed, 19 Jan 2022 11:29:10 +0100 Subject: gnu: Add rust-pbkdf2-0.7, rust-pbkdf2-0.6. * gnu/packages/crates-io.scm (rust-pbkdf2-0.7): New variable. (rust-pbkdf2-0.6): New variable. (rust-pbkdf2-0.9): Re-enable building it and fix dependencies. (rust-pbkdf2-0.10): Fix build. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 67 +++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 64 insertions(+), 3 deletions(-) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 48848a1b59..c291bf9879 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -39966,7 +39966,8 @@ directory path to the provided path.") (build-system cargo-build-system) (arguments `(#:cargo-inputs - (("rust-digest" ,rust-digest-0.10) + (("rust-base64ct" ,rust-base64ct-1.0.1) + ("rust-digest" ,rust-digest-0.10) ("rust-hmac" ,rust-hmac-0.12) ("rust-password-hash" ,rust-password-hash-0.3) ("rust-rayon" ,rust-rayon-1) @@ -40000,12 +40001,72 @@ in pure Rust.") (base32 "0fa7j0gdgghk64qlhzdv32yg52p0cfaz5ifhk7i4pfm1wsy98n7h")))) (arguments - `(#:skip-build? #t - #:cargo-inputs + `(#:cargo-inputs (("rust-crypto-mac" ,rust-crypto-mac-0.11) ("rust-hmac" ,rust-hmac-0.11) ("rust-password-hash" ,rust-password-hash-0.3) ("rust-rayon" ,rust-rayon-1) + ("rust-sha-1" ,rust-sha-1-0.9) + ("rust-sha2" ,rust-sha2-0.9)) + #:cargo-development-inputs + (("rust-hex-literal" ,rust-hex-literal-0.3) + ("rust-hmac" ,rust-hmac-0.11) + ("rust-sha-1" ,rust-sha-1-0.9) + ("rust-sha2" ,rust-sha2-0.9) + ("rust-streebog" ,rust-streebog-0.9)))))) + +(define-public rust-pbkdf2-0.7 + (package + (inherit rust-pbkdf2-0.9) + (name "rust-pbkdf2") + (version "0.7.5") + (source + (origin + (method url-fetch) + (uri (crate-uri "pbkdf2" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "022m5yb6fagzrks5m5kkj2yzccqffk19vnchg289fqnj5p9nv4dz")))) + (arguments + `(#:cargo-inputs + (("rust-base64ct" ,rust-base64ct-1) + ("rust-crypto-mac" ,rust-crypto-mac-0.10) + ("rust-hmac" ,rust-hmac-0.10) + ("rust-password-hash" ,rust-password-hash-0.1) + ("rust-rayon" ,rust-rayon-1) + ("rust-sha-1" ,rust-sha-1-0.9) + ("rust-sha2" ,rust-sha2-0.9)) + #:cargo-development-inputs + (("rust-hex-literal" ,rust-hex-literal-0.3) + ("rust-hmac" ,rust-hmac-0.8) + ("rust-rand-core" ,rust-rand-core-0.6) + ("rust-sha-1" ,rust-sha-1-0.9) + ("rust-sha2" ,rust-sha2-0.9)))))) + +(define-public rust-pbkdf2-0.6 + (package + (inherit rust-pbkdf2-0.10) + (name "rust-pbkdf2") + (version "0.6.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "pbkdf2" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0jjaapyawm5iqn97mmfj40dvipsy78cm80qcva28009l2zbw1f5k")))) + (arguments + `(#:cargo-inputs + (("rust-base64" ,rust-base64-0.13) + ("rust-crypto-mac" ,rust-crypto-mac-0.10) + ("rust-hmac" ,rust-hmac-0.10) + ("rust-rand" ,rust-rand-0.7) + ("rust-rand-core" ,rust-rand-core-0.5) + ("rust-rayon" ,rust-rayon-1) + ("rust-sha2" ,rust-sha2-0.9) + ("rust-subtle" ,rust-subtle-2)) + #:cargo-development-inputs + (("rust-hmac" ,rust-hmac-0.10) ("rust-sha-1" ,rust-sha-1-0.9) ("rust-sha2" ,rust-sha2-0.9)))))) -- cgit v1.3 From 79b30bc66c83e8f932e1528bf200cd4bbb4c8a2c Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Wed, 19 Jan 2022 11:52:52 +0100 Subject: gnu: Add rust-salsa20 0.7.1. * gnu/packages/crates-io.scm (rust-salsa20-0.7): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index c291bf9879..7386cae4b6 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -50822,6 +50822,30 @@ in pure Rust.") computation (experimental)") (license (list license:asl2.0 license:expat)))) +(define-public rust-salsa20-0.7 + (package + (name "rust-salsa20") + (version "0.7.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "salsa20" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "09c16m566g45f41xx3673zyzwca3mykz630fmv2mbjbvmwcc4fw0")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-cipher" ,rust-cipher-0.2) + ("rust-zeroize" ,rust-zeroize-1)) + #:cargo-development-inputs + (("rust-cipher" ,rust-cipher-0.2)))) + (home-page "https://github.com/RustCrypto/stream-ciphers") + (synopsis "Salsa20 stream cipher") + (description "This is a Rust library implementing the Salsa20 stream +cipher.") + (license (list license:expat license:asl2.0)))) + (define-public rust-safe-arch-0.5 (package (name "rust-safe-arch") -- cgit v1.3 From 318928f7485cebaeddd4be20db4bb3012ff6389a Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Wed, 19 Jan 2022 11:53:52 +0100 Subject: gnu: Add rust-scrypt-0.5. * gnu/packages/crates-io.scm (rust-scrypt-0.5): New variable. (rust-scrypt-0.3): Inherit from above. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 7386cae4b6..83204bf311 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -51245,10 +51245,34 @@ clean}.") function.") (license (list license:expat license:asl2.0)))) -(define-public rust-scrypt-0.3 +(define-public rust-scrypt-0.5 (package (inherit rust-scrypt-0.8) (name "rust-scrypt") + (version "0.5.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "scrypt" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1fgdmjdjx3lj92nswkxrq9nlv4vv7livg83nfybmv4izn3d9594d")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-base64" ,rust-base64-0.13) + ("rust-hmac" ,rust-hmac-0.10) + ("rust-pbkdf2" ,rust-pbkdf2-0.6) + ("rust-rand" ,rust-rand-0.7) + ("rust-rand-core" ,rust-rand-core-0.5) + ("rust-salsa20" ,rust-salsa20-0.7) + ("rust-sha2" ,rust-sha2-0.9) + ("rust-subtle" ,rust-subtle-2)))))) + +(define-public rust-scrypt-0.3 + (package + (inherit rust-scrypt-0.5) + (name "rust-scrypt") (version "0.3.0") (source (origin -- cgit v1.3 From 3d98ef47e0d77df9ba8263157dec95cd08680a52 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Wed, 19 Jan 2022 14:38:48 +0100 Subject: gnu: rust-fnv: Update to 1.0.7. * gnu/packages/crates-io.scm (rust-fnv): Update to 1.0.7. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 83204bf311..b1c3c116b7 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -21658,15 +21658,14 @@ crate.") (define-public rust-fnv-1 (package (name "rust-fnv") - (version "1.0.6") + (version "1.0.7") (source (origin (method url-fetch) (uri (crate-uri "fnv" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 - "1ww56bi1r5b8id3ns9j3qxbi7w5h005rzhiryy0zi9h97raqbb9g")))) + (base32 "1hc2mcqha06aibcaza94vbi81j6pr9a1bbxrxjfhc91zin8yr7iz")))) (build-system cargo-build-system) (home-page "https://github.com/servo/rust-fnv") (synopsis "Implementation of the Fowler-Noll-Vo hash function") -- cgit v1.3 From 2588ee6b28ed018472d64b9a350b38d858503d03 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Wed, 19 Jan 2022 14:50:12 +0100 Subject: gnu: Add rust-serde-derive-internals 0.25.0. * gnu/packages/crates-io.scm (rust-serde-derive-internals-0.25): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index b1c3c116b7..5d598c82f2 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -52641,6 +52641,30 @@ TOML/JSON/MessagePack strings and serializable values.") ("rust-serde-codegen-internals" ,rust-serde-codegen-internals-0.14) ("rust-syn" ,rust-syn-0.11)))))) +(define-public rust-serde-derive-internals-0.25 + (package + (name "rust-serde-derive-internals") + (version "0.25.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "serde_derive_internals" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1ihqfkpplqqiwmh87s8p9jsv27ibkz1z7gc0abqs2mrhlr6b7fhx")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t + #:cargo-inputs + (("rust-proc-macro2" ,rust-proc-macro2-1) + ("rust-quote" ,rust-quote-1) + ("rust-syn" ,rust-syn-1)))) + (home-page "https://serde.rs") + (synopsis "AST representation used by Serde derive macros") + (description "This package provides AST representation used by Serde +derive macros.") + (license (list license:expat license:asl2.0)))) + (define-public rust-serde-ignored-0.1 (package (name "rust-serde-ignored") -- cgit v1.3 From 213f2cc27b8a7498af5fccffd7d59205e16811f9 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Wed, 19 Jan 2022 14:51:42 +0100 Subject: gnu: Add rust-core2-0.3. * gnu/packages/crates-io.scm (rust-core2-0.3): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 5d598c82f2..9b2e149c39 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -12845,6 +12845,26 @@ numbers using the CORDIC method.") management. It supports signed and private (encrypted, authenticated) jars.") (license (list license:expat license:asl2.0)))) +(define-public rust-core2-0.3 + (package + (name "rust-core2") + (version "0.3.3") + (source + (origin + (method url-fetch) + (uri (crate-uri "core2" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1wzzy5iazdk5caadxvjfwrd312rbg7a55a1zpmsdrhk3kfpa77r3")))) + (build-system cargo-build-system) + (arguments `(#:cargo-inputs (("rust-memchr" ,rust-memchr-2)))) + (home-page "https://github.com/bbqsrc/core2") + (synopsis "Bare essentials of @code{std::io} for use in @code{no_std}") + (description + "This package provides the bare essentials of @code{std::io} for use +in @code{no_std}. Alloc support is optional.") + (license (list license:asl2.0 license:expat)))) + (define-public rust-cookie-0.14 (package (inherit rust-cookie-0.15) -- cgit v1.3 From fb677c1060c56e0298b5d33d3ddce70c7599c96b Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Wed, 19 Jan 2022 15:06:00 +0100 Subject: gnu: Add rust-darling-0.13 and required dependencies. * gnu/packages/crates-io.scm (rust-darling-0.13): New variable. (rust-darling-0.12): Inherit from above. (rust-darling-core-0.13): New variable. (rust-darling-core-0.12): Inherit from above. (rust-darling-macro-0.13): New variable. (rust-darling-macro-0.12): Inherit from above. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 93 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 77 insertions(+), 16 deletions(-) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 9b2e149c39..81c39d55ff 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -15649,10 +15649,10 @@ crate (implementation detail).") (description "Daemonize is a Rust library for writing system deaemons.") (license (list license:expat license:asl2.0)))) -(define-public rust-darling-0.12 +(define-public rust-darling-0.13 (package (name "rust-darling") - (version "0.12.4") + (version "0.13.1") (source (origin (method url-fetch) @@ -15660,13 +15660,17 @@ crate (implementation detail).") (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0g4bkxpwl6i5jav5qqzny39yd5a1fdlh5l0mj020njza6ksl6b2z")))) + (base32 "1x7pgzjswg28798zd5gk5g6nifhcaqq0apqmclydi39zd2w21myh")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs - (("rust-darling-core" ,rust-darling-core-0.12) - ("rust-darling-macro" ,rust-darling-macro-0.12)))) + (("rust-darling-core" ,rust-darling-core-0.13) + ("rust-darling-macro" ,rust-darling-macro-0.13)) + #:cargo-development-inputs + (("rust-proc-macro2" ,rust-proc-macro2-1) + ("rust-quote" ,rust-quote-1) + ("rust-syn" ,rust-syn-1)))) (home-page "https://github.com/TedDriggs/darling") (synopsis "Proc-macro library for reading attributes in custom derives") (description @@ -15674,6 +15678,30 @@ crate (implementation detail).") into structs when implementing custom derives.") (license license:expat))) +(define-public rust-darling-0.12 + (package + (inherit rust-darling-0.13) + (name "rust-darling") + (version "0.12.4") + (source + (origin + (method url-fetch) + (uri (crate-uri "darling" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0g4bkxpwl6i5jav5qqzny39yd5a1fdlh5l0mj020njza6ksl6b2z")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t + #:cargo-inputs + (("rust-darling-core" ,rust-darling-core-0.12) + ("rust-darling-macro" ,rust-darling-macro-0.12)) + #:cargo-development-inputs + (("rust-proc-macro2" ,rust-proc-macro2-1) + ("rust-quote" ,rust-quote-1) + ("rust-syn" ,rust-syn-1)))))) + (define-public rust-darling-0.10 (package (inherit rust-darling-0.12) @@ -15721,17 +15749,17 @@ into structs when implementing custom derives.") ("rust-quote" ,rust-quote-0.6) ("rust-syn" ,rust-syn-0.15)))))) -(define-public rust-darling-core-0.12 +(define-public rust-darling-core-0.13 (package (name "rust-darling-core") - (version "0.12.4") + (version "0.13.1") (source (origin (method url-fetch) (uri (crate-uri "darling_core" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0dpscl87s75h6yhrmzdsapx86lc4y16m554xg4hiq2l3hrdlb4cf")))) + (base32 "0933k2avb6xk9j4ryr0bvp3pww5j8i0nrqvsnkgd3vic3lj0yd3s")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -15749,6 +15777,19 @@ into structs when implementing custom derives.") reading attributes into structs when implementing custom derives.") (license license:expat))) +(define-public rust-darling-core-0.12 + (package + (inherit rust-darling-core-0.13) + (name "rust-darling-core") + (version "0.12.4") + (source + (origin + (method url-fetch) + (uri (crate-uri "darling_core" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0dpscl87s75h6yhrmzdsapx86lc4y16m554xg4hiq2l3hrdlb4cf")))))) + (define-public rust-darling-core-0.10 (package (inherit rust-darling-core-0.12) @@ -15796,8 +15837,35 @@ reading attributes into structs when implementing custom derives.") ("rust-strsim" ,rust-strsim-0.7) ("rust-syn" ,rust-syn-0.15)))))) +(define-public rust-darling-macro-0.13 + (package + (name "rust-darling-macro") + (version "0.13.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "darling_macro" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0jzljnd0y7idi5lb7lhvymh3nkhaf32ksx0d38hv7zjjfcxipi3j")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t + #:cargo-inputs + (("rust-darling-core" ,rust-darling-core-0.13) + ("rust-quote" ,rust-quote-1) + ("rust-syn" ,rust-syn-1)))) + (home-page "https://github.com/TedDriggs/darling") + (synopsis "Helper crate for @code{rust-darling}") + (description + "This package provides internal support for @code{rust-darling}, +a proc-macro library for reading attributes into structs when implementing +custom derives.") + (license license:expat))) + (define-public rust-darling-macro-0.12 (package + (inherit rust-darling-macro-0.13) (name "rust-darling-macro") (version "0.12.4") (source @@ -15807,19 +15875,12 @@ reading attributes into structs when implementing custom derives.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "0nn9mxl7gs827rx5s6lbjvvghipxjdg2qpdjyxk7yym3vvqard99")))) - (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-darling-core" ,rust-darling-core-0.12) ("rust-quote" ,rust-quote-1) - ("rust-syn" ,rust-syn-1)))) - (home-page "https://github.com/TedDriggs/darling") - (synopsis "Helper crate for @code{rust-darling}") - (description - "Internal support for @code{rust-darling}, a proc-macro library for -reading attributes into structs when implementing custom derives.") - (license license:expat))) + ("rust-syn" ,rust-syn-1)))))) (define-public rust-darling-macro-0.10 (package -- cgit v1.3 From bf71e35236a59980ea797f402387b0ea6c257741 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Wed, 19 Jan 2022 15:07:36 +0100 Subject: gnu: Add rust-enumset-1. * gnu/packages/crates-io.scm (rust-enumset-1): New variable. (rust-enumset-derive-0.5): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 52 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 81c39d55ff..a3ad704ecb 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -19669,6 +19669,58 @@ convert enum to u8 slice ref.") (description "Enumflags2 implements the classic bitflags datastructure.") (license (list license:expat license:asl2.0)))) +(define-public rust-enumset-1 + (package + (name "rust-enumset") + (version "1.0.8") + (source + (origin + (method url-fetch) + (uri (crate-uri "enumset" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0b2vdggbsnvvw09czxaazbqcpa378fycf7fs3afz5dbgkb0x45k2")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-enumset-derive" ,rust-enumset-derive-0.5) + ("rust-serde" ,rust-serde-1)) + #:cargo-development-inputs + (("rust-bincode" ,rust-bincode-1) + ("rust-rustversion" ,rust-rustversion-1) + ("rust-serde-derive" ,rust-serde-derive-1) + ("rust-serde-json" ,rust-serde-json-1) + ("rust-trybuild" ,rust-trybuild-1)))) + (home-page "https://github.com/Lymia/enumset") + (synopsis "Library for creating compact sets of enums") + (description "This package provides a Rust library for creating +compact sets of enums.") + (license (list license:expat license:asl2.0)))) + +(define-public rust-enumset-derive-0.5 + (package + (name "rust-enumset-derive") + (version "0.5.5") + (source + (origin + (method url-fetch) + (uri (crate-uri "enumset-derive" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1m7ccz9fcxsx3s1drj77psk62xfgjia0hp9lal3qhpb5ls514lb4")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-darling" ,rust-darling-0.13) + ("rust-proc-macro2" ,rust-proc-macro2-1) + ("rust-quote" ,rust-quote-1) + ("rust-syn" ,rust-syn-1)))) + (home-page "https://github.com/Lymia/enumset") + (synopsis "Internal helper crate for enumset") + (description "This package is an internal helper crate for +@code{rust-enumset}. It is not public API.") + (license (list license:expat license:asl2.0)))) + (define-public rust-env-logger-0.9 (package (name "rust-env-logger") -- cgit v1.3 From 13dd4605b7b0ca1227352e6d2eb11c9bdd5d3e30 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Wed, 19 Jan 2022 15:12:52 +0100 Subject: gnu: Add rust-schemars[-derive]-0.8. * gnu/packages/crates-io.scm (rust-schemars-0.8): New variable. (rust-schemars-derive-0.8): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 64 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index a3ad704ecb..c3e52c504e 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -51193,6 +51193,70 @@ server functionality.") (description "This package provides a scheduled thread pool.") (license (list license:expat license:asl2.0)))) +(define-public rust-schemars-0.8 + (package + (name "rust-schemars") + (version "0.8.8") + (source + (origin + (method url-fetch) + (uri (crate-uri "schemars" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1qvhq1yixygd8ihc0qxmnhw4x08fa44q88v088gvc6pa1k4a7df6")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-arrayvec" ,rust-arrayvec-0.5) + ("rust-bigdecimal" ,rust-bigdecimal-0.3) + ("rust-bytes" ,rust-bytes-1) + ("rust-chrono" ,rust-chrono-0.4) + ("rust-dyn-clone" ,rust-dyn-clone-1) + ("rust-either" ,rust-either-1) + ("rust-enumset" ,rust-enumset-1) + ("rust-indexmap" ,rust-indexmap-1) + ("rust-rust-decimal" ,rust-rust-decimal-1) + ("rust-schemars-derive" ,rust-schemars-derive-0.8) + ("rust-serde" ,rust-serde-1) + ("rust-serde-json" ,rust-serde-json-1) + ("rust-smallvec" ,rust-smallvec-1) + ("rust-url" ,rust-url-2) + ("rust-uuid" ,rust-uuid-0.8)) + #:cargo-development-inputs + (("rust-pretty-assertions" ,rust-pretty-assertions-0.6) + ("rust-trybuild" ,rust-trybuild-1)))) + (home-page "https://graham.cool/schemars/") + (synopsis "Generate JSON Schemas from Rust code") + (description "This Rust library can help generating JSON Schemas from +Rust code.") + (license license:expat))) + +(define-public rust-schemars-derive-0.8 + (package + (name "rust-schemars-derive") + (version "0.8.8") + (source + (origin + (method url-fetch) + (uri (crate-uri "schemars-derive" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "16xfvm16d8nsxdx82fdcyqfi12v61lffyf1wmi34qqg82g74vbj1")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-proc-macro2" ,rust-proc-macro2-1) + ("rust-quote" ,rust-quote-1) + ("rust-serde-derive-internals" ,rust-serde-derive-internals-0.25) + ("rust-syn" ,rust-syn-1)) + #:cargo-development-inputs + (("rust-pretty-assertions" ,rust-pretty-assertions-0.6)))) + (home-page "https://graham.cool/schemars/") + (synopsis "Macros for @code{#[derive(JsonSchema)]}, for use with schemars") + (description "This package provides macros for @code{#[derive(JsonSchema)]}, +for use with schemars.") + (license license:expat))) + (define-public rust-scoped-threadpool-0.1 (package (name "rust-scoped-threadpool") -- cgit v1.3 From 6ffffa23ef5a8dc2b5fc54b802ef0db92a40ea77 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Wed, 19 Jan 2022 15:29:01 +0100 Subject: gnu: Add rust-bitcoin-hashes-0.10. * gnu/packages/crates-io.scm (rust-bitcoin-hashes-0.10): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index c3e52c504e..389118825b 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -6963,6 +6963,33 @@ types.") `(#:cargo-development-inputs (("rust-rand" ,rust-rand-0.3)))))) +(define-public rust-bitcoin-hashes-0.10 + (package + (name "rust-bitcoin-hashes") + (version "0.10.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "bitcoin-hashes" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1c25nzrd2kn5znhjgxb9n48hc7swapiln8dqqndq368x38gcjv00")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-core2" ,rust-core2-0.3) + ("rust-schemars" ,rust-schemars-0.8) + ("rust-serde" ,rust-serde-1)) + #:cargo-development-inputs + (("rust-serde-json" ,rust-serde-json-1) + ("rust-serde-test" ,rust-serde-test-1) + ("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.3)))) + (home-page "https://github.com/rust-bitcoin/bitcoin_hashes/") + (synopsis "Hash functions used by @code{rust-bitcoin}") + (description "This Rust library provides hash functions that are used by +@code{rust-bitcoin}.") + (license license:cc0))) + (define-public rust-bitfield-0.13 (package (name "rust-bitfield") -- cgit v1.3 From 37b46100bdd33452323a3acece2757bf3b83820f Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Wed, 19 Jan 2022 15:45:46 +0100 Subject: gnu: Add rust-bitcoin-hashes-0.9. * gnu/packages/crates-io.scm (rust-bitcoin-hashes-0.9): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 389118825b..b1e642557c 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -6990,6 +6990,19 @@ types.") @code{rust-bitcoin}.") (license license:cc0))) +(define-public rust-bitcoin-hashes-0.9 + (package + (inherit rust-bitcoin-hashes-0.10) + (name "rust-bitcoin-hashes") + (version "0.9.7") + (source + (origin + (method url-fetch) + (uri (crate-uri "bitcoin-hashes" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1cblp0clvds0i33ms1b0lvq42kzdpr7q3ma5ac3ss913xijq5qbw")))))) + (define-public rust-bitfield-0.13 (package (name "rust-bitfield") -- cgit v1.3 From 71f5af0c72d4cab5b7cf1c438ae0be43044e3f49 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Wed, 19 Jan 2022 15:29:51 +0100 Subject: gnu: Add rust-ripemd-0.1. * gnu/packages/crates-io.scm (rust-ripemd-0.1): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index b1e642557c..3300e8ae3f 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -47658,6 +47658,30 @@ functionality as retain but gives mutable borrow to the predicate.") (description "This crate provides low level access to RISC-V processors.") (license license:isc))) +(define-public rust-ripemd-0.1 + (package + (name "rust-ripemd") + (version "0.1.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "ripemd" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "16ap7vvnqf4l6vy7kjpb5p8brqfppanssm61jn1w8444395bcm7a")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-digest" ,rust-digest-0.10)) + #:cargo-development-inputs + (("rust-digest" ,rust-digest-0.10) + ("rust-hex-literal" ,rust-hex-literal-0.2)))) + (home-page "https://github.com/RustCrypto/hashes") + (synopsis "Pure Rust implementation of the RIPEMD hash functions") + (description "This library provides a pure Rust implementation of the +RIPEMD hash functions.") + (license (list license:expat license:asl2.0)))) + (define-public rust-riscv-target-0.1 (package (name "rust-riscv-target") -- cgit v1.3 From b68c1814f2601833e98847074e6f714af48aacd6 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Wed, 19 Jan 2022 15:59:23 +0100 Subject: gnu: rust-zeroize-1: Update to 1.5.0. * gnu/packages/crates-io.scm (rust-zeroize-1): Update to 1.5.0. (rust-zeroize-derive-1): Update to 1.3.1. (rust-rsa-0.5): Enable build, and make sure it builds with rust-zeroize 1.5.0 by relaxing the dependency specification. * gnu/packages/rust-apps.scm (rbw): Relax the dependency specification for rust-zeroize. Also reword the description. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 29 ++++++++++++++++++++++------- gnu/packages/rust-apps.scm | 14 ++++++++++---- 2 files changed, 32 insertions(+), 11 deletions(-) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 3300e8ae3f..d0f61f5329 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -48212,8 +48212,7 @@ wildcard segments") (base32 "039676a4mj0875phdi7vc0bd37hv84dh0dql6fmk8dl2w81jcp70")))) (build-system cargo-build-system) (arguments - `(#:skip-build? #t - #:cargo-inputs + `(#:cargo-inputs (("rust-byteorder" ,rust-byteorder-1) ("rust-digest" ,rust-digest-0.9) ("rust-lazy-static" ,rust-lazy-static-1) @@ -48226,7 +48225,23 @@ wildcard segments") ("rust-rand" ,rust-rand-0.8) ("rust-serde" ,rust-serde-1) ("rust-subtle" ,rust-subtle-2) - ("rust-zeroize" ,rust-zeroize-1)))) + ("rust-zeroize" ,rust-zeroize-1)) + #:cargo-development-inputs + (("rust-base64" ,rust-base64-0.13) + ("rust-hex" ,rust-hex-0.4) + ("rust-hex-literal" ,rust-hex-literal-0.3) + ("rust-rand-xorshift" ,rust-rand-xorshift-0.3) + ("rust-serde-test" ,rust-serde-test-1) + ("rust-sha-1" ,rust-sha-1-0.9) + ("rust-sha2" ,rust-sha2-0.9) + ("rust-sha3" ,rust-sha3-0.9)) + #:phases + (modify-phases %standard-phases + (add-after 'configure 'relax-requirements + (lambda _ + (substitute* + "Cargo.toml" + (("version = \">=1, <1.5\"") "version = \"^1\""))))))) (home-page "https://github.com/RustCrypto/RSA") (synopsis "Pure Rust RSA implementation") (description "This package provides a pure Rust RSA implementation.") @@ -69824,7 +69839,7 @@ crate.") (define-public rust-zeroize-1 (package (name "rust-zeroize") - (version "1.4.3") + (version "1.5.0") (source (origin (method url-fetch) @@ -69832,7 +69847,7 @@ crate.") (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "068nvl3n5hk6lfn5y24grf2c7anzzqfzjjccscq3md7rqp79v3fn")))) + (base32 "1nq8zq5h7ad6kahdk0fxw4fdm0ibycj061jngxqkqchw67n2l8nc")))) (build-system cargo-build-system) (arguments `(#:cargo-inputs @@ -69849,7 +69864,7 @@ implementation that works everywhere, even WASM!") (define-public rust-zeroize-derive-1 (package (name "rust-zeroize-derive") - (version "1.0.0") + (version "1.3.1") (source (origin (method url-fetch) @@ -69857,7 +69872,7 @@ implementation that works everywhere, even WASM!") (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "18lc9xq9dwvmv81y3bqnw20974nbrs7d20rljb1inz7wd7n1w9fy")))) + (base32 "1nzdqyryjnqcrqz0vhddpkd8sybhn0bd8rbd6l33rdhhxwzz3s41")))) (build-system cargo-build-system) (arguments `(#:cargo-inputs diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index d2cc949667..a97fcc7968 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm @@ -1307,7 +1307,13 @@ runs a command whenever it detects modifications.") (lambda _ (substitute* "guix-vendor/rust-password-hash-0.3.2.tar.gz/Cargo.toml" - (("version = \">=1, <1.1.0\"") "version = \">=1\""))))) + (("version = \">=1, <1.1.0\"") "version = \">=1\"")) + (substitute* + "guix-vendor/rust-rsa-0.5.0.tar.gz/Cargo.toml" + (("version = \">=1, <1.5\"") "version = \"^1\"")) + (substitute* + "Cargo.toml" + (("version = \"1.4\"") "version = \"^1\""))))) #:cargo-inputs (("rust-aes" ,rust-aes-0.7) ("rust-anyhow" ,rust-anyhow-1) @@ -1352,9 +1358,9 @@ runs a command whenever it detects modifications.") (home-page "https://git.tozt.net/rbw") (synopsis "Unofficial Bitwarden CLI") (description "This package is an unofficial command line client for -Bitwarden. Although it does come with its own command line client, this client -is limited by being stateless, which makes it very difficult to use. This -client avoids this problem by maintaining a background process which is able +Bitwarden. Although Bitwarden ships with a command line client, but +it's limited by being stateless, which makes it very difficult to use. This +client avoids that problem by maintaining a background process which is able to hold the keys in memory, similar to the way that ssh-agent or gpg-agent work. This allows the client to be used in a much simpler way, with the background agent taking care of maintaining the necessary state.") -- cgit v1.3 From b22db754ff042284b121c57376b5979edaa72737 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Wed, 19 Jan 2022 15:30:31 +0100 Subject: gnu: Add rust-secp256k1-0.21. * gnu/packages/crates-io.scm (rust-secp256k1-0.21): New variable. (rust-secp256k1-sys-0.4): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 56 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index d0f61f5329..40f2b6b615 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -51885,6 +51885,62 @@ statistical guarantees.") "This package provides a library for section-style testing.") (license license:expat))) +(define-public rust-secp256k1-0.21 + (package + (name "rust-secp256k1") + (version "0.21.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "secp256k1" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "09gia5hjf1hb9jgac9nzq0s0ijbsdjfflh40xw8z08avgl0q6y5b")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-bitcoin-hashes" ,rust-bitcoin-hashes-0.10) + ("rust-rand" ,rust-rand-0.6) + ("rust-secp256k1-sys" ,rust-secp256k1-sys-0.4) + ("rust-serde" ,rust-serde-1)) + #:cargo-development-inputs + (("rust-bitcoin-hashes" ,rust-bitcoin-hashes-0.10) + ("rust-rand" ,rust-rand-0.6) + ("rust-rand-core" ,rust-rand-core-0.4) + ("rust-serde-test" ,rust-serde-test-1) + ("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.3)))) + (home-page "https://github.com/rust-bitcoin/rust-secp256k1/") + (synopsis + "Rust wrapper library for Pieter Wuille's @code{libsecp256k1}") + (description + "This package is a Rust wrapper library for Pieter Wuille's +@code{libsecp256k1}. It implements ECDSA and BIP 340 signatures for the +SECG elliptic curve group secp256k1 and related utilities.") + (license license:cc0))) + +(define-public rust-secp256k1-sys-0.4 + (package + (name "rust-secp256k1-sys") + (version "0.4.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "secp256k1-sys" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0dk0as7qdlvg5vkcsihndzg1jgqb9amhwmz3xiip94fy7ibs4zcm")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-cc" ,rust-cc-1)) + #:cargo-development-inputs + (("rust-libc" ,rust-libc-0.2)))) + (home-page "https://github.com/rust-bitcoin/rust-secp256k1/") + (synopsis "FFI for Pieter Wuille's @code{libsecp256k1} library") + (description "This package is a Rust FFI for Pieter Wuille's +@code{libsecp256k1} library.") + (license license:cc0))) + (define-public rust-security-framework-2 (package (name "rust-security-framework") -- cgit v1.3 From 6b1b859d0f3ab0a556af771ca235cb8d15f9c2a8 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Wed, 19 Jan 2022 15:38:34 +0100 Subject: gnu: Add rust-secp256k1-0.20. * gnu/packages/crates-io.scm (rust-secp256k1-0.20): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 40f2b6b615..6b88391ff8 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -51918,6 +51918,31 @@ statistical guarantees.") SECG elliptic curve group secp256k1 and related utilities.") (license license:cc0))) +(define-public rust-secp256k1-0.20 + (package + (inherit rust-secp256k1-0.21) + (name "rust-secp256k1") + (version "0.20.3") + (source + (origin + (method url-fetch) + (uri (crate-uri "secp256k1" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "02kxhfgy85zg7w2yyvnzrr7myk1mckvg99z6pbazxl1nwvm3rl4p")))) + (arguments + `(#:cargo-inputs + (("rust-bitcoin-hashes" ,rust-bitcoin-hashes-0.9) + ("rust-rand" ,rust-rand-0.6) + ("rust-secp256k1-sys" ,rust-secp256k1-sys-0.4) + ("rust-serde" ,rust-serde-1)) + #:cargo-development-inputs + (("rust-bitcoin-hashes" ,rust-bitcoin-hashes-0.10) + ("rust-rand" ,rust-rand-0.6) + ("rust-rand-core" ,rust-rand-core-0.4) + ("rust-serde-test" ,rust-serde-test-1) + ("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.3)))))) + (define-public rust-secp256k1-sys-0.4 (package (name "rust-secp256k1-sys") -- cgit v1.3 From 4e333ddc0bf84f3f837e13f193d9ec6a5d3faa7d Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Wed, 19 Jan 2022 16:51:39 +0100 Subject: gnu: Add rust-fixed-hash-0.7, rust-fixed-hash-0.2. * gnu/packages/crates-io.scm (rust-fixed-hash-0.7): New variable. (rust-fixed-hash-0.2): New variable. Inherit from above. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 54 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 6b88391ff8..c49aa3928b 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -21374,6 +21374,60 @@ cross platform API.") (description "This package provides fixed-point numbers in Rust.") (license (list license:expat license:asl2.0)))) +(define-public rust-fixed-hash-0.7 + (package + (name "rust-fixed-hash") + (version "0.7.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "fixed-hash" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0g29r0zwf09kg70nprn0s444bn6nfsglmiafhl1pm8ajzvbhxkyg")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-arbitrary" ,rust-arbitrary-0.4) + ("rust-byteorder" ,rust-byteorder-1) + ("rust-quickcheck" ,rust-quickcheck-0.9) + ("rust-rand" ,rust-rand-0.8) + ("rust-rustc-hex" ,rust-rustc-hex-2) + ("rust-static-assertions" ,rust-static-assertions-1)) + #:cargo-development-inputs + (("rust-criterion" ,rust-criterion-0.3) + ("rust-rand" ,rust-rand-0.8) + ("rust-rand-xorshift" ,rust-rand-xorshift-0.2)))) + (home-page "https://github.com/paritytech/parity-common") + (synopsis "Macros to define custom fixed-size hash types") + (description "This package provides Rust macros to define +custom fixed-size hash types.") + (license (list license:expat license:asl2.0)))) + +(define-public rust-fixed-hash-0.2 + (package + (inherit rust-fixed-hash-0.7) + (name "rust-fixed-hash") + (version "0.2.5") + (source + (origin + (method url-fetch) + (uri (crate-uri "fixed-hash" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0wvj52bf37nhg6mv5h235zgdg7nsdarag58mf4i49cdgc3l6rzks")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-heapsize" ,rust-heapsize-0.4) + ("rust-libc" ,rust-libc-0.2) + ("rust-quickcheck" ,rust-quickcheck-0.6) + ("rust-rand" ,rust-rand-0.4) + ("rust-rustc-hex" ,rust-rustc-hex-2) + ("rust-serde" ,rust-serde-1) + ("rust-serde-derive" ,rust-serde-derive-1) + ("rust-uint" ,rust-uint-0.4)))))) + (define-public rust-fixedbitset-0.4 (package (name "rust-fixedbitset") -- cgit v1.3 From 601482a9fd3ed06a9f8f29b8c3ca5bdc07367f21 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Wed, 19 Jan 2022 17:16:15 +0100 Subject: gnu: Add rust-byte-slice-cast-1. * gnu/packages/crates-io.scm (rust-byte-slice-cast-1): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index c49aa3928b..dead584f1e 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -8595,6 +8595,25 @@ reasonable.") memory usage.") (license (list license:asl2.0 license:expat)))) +(define-public rust-byte-slice-cast-1 + (package + (name "rust-byte-slice-cast") + (version "1.2.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "byte-slice-cast" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "162618ai9pnsim49lkjpq2yi2b3wssclvqxwwycw8xrbb58wfc0x")))) + (build-system cargo-build-system) + (home-page "https://github.com/sdroege/bytes-num-slice-cast") + (synopsis + "Safely cast bytes slices from/to slices of built-in fundamental numeric types") + (description "This Rust library enables safely cast bytes slices from/to slices +of built-in fundamental numeric types.") + (license license:expat))) + (define-public rust-byte-tools-0.3 (package (name "rust-byte-tools") -- cgit v1.3 From 2fc45097ac292788f3ebc97f91737fb93a1ce38c Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Wed, 19 Jan 2022 17:24:47 +0100 Subject: gnu: Add rust-impl-trait-for-tuples-0.2. * gnu/packages/crates-io.scm (rust-impl-trait-for-tuples-0.2): Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index dead584f1e..d196a771ef 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -70833,6 +70833,32 @@ Rust that are very fast but not thread-safe. A thread-safe (and slower) variant of this library is available separately as @code{im}.") (license license:mpl2.0))) +(define-public rust-impl-trait-for-tuples-0.2 + (package + (name "rust-impl-trait-for-tuples") + (version "0.2.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "impl-trait-for-tuples" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1vii634v1zvb680h28md42xpdrj1j1d50ix3dga95fxkql8cpnnm")))) + (build-system cargo-build-system) + (arguments + `(#:tests? #false ; Some tests fail. Unstable compiler messages? + #:cargo-inputs + (("rust-proc-macro2" ,rust-proc-macro2-1) + ("rust-quote" ,rust-quote-1) + ("rust-syn" ,rust-syn-1)) + #:cargo-development-inputs + (("rust-trybuild" ,rust-trybuild-1)))) + (home-page "https://github.com/bkchr/impl-trait-for-tuples") + (synopsis "Attribute macro to implement a trait for tuples") + (description "This package provides attribute macro to implement +a trait for tuples.") + (license (list license:asl2.0 license:expat)))) + (define-public rust-inflections-1 (package (name "rust-inflections") -- cgit v1.3 From b14a519300cbf42c9703781b1ecf15907fe923e7 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Thu, 20 Jan 2022 19:05:55 +0100 Subject: gnu: Add rust-bitvec-0.20. * gnu/packages/crates-io.scm (rust-bitvec-0.20): New variable. (rust-bitvec-0.19): Inherit from above. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index d196a771ef..8a18f8efee 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -7284,6 +7284,34 @@ streams in big-endian and little-endian formats.") "This package provides a crate for manipulating memory, bit by bit.") (license license:expat))) +(define-public rust-bitvec-0.20 + (package + (inherit rust-bitvec-0.22) + (name "rust-bitvec") + (version "0.20.4") + (source + (origin + (method url-fetch) + (uri (crate-uri "bitvec" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0j3qn0z31j06c965hs3kh41l78hxbzzsf1h46xvs3ym48i1i8x3p")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-funty" ,rust-funty-1) + ("rust-radium" ,rust-radium-0.6) + ("rust-serde" ,rust-serde-1) + ("rust-tap" ,rust-tap-1) + ("rust-wyz" ,rust-wyz-0.2)) + #:cargo-development-inputs + (("rust-bincode" ,rust-bincode-1) + ("rust-criterion" ,rust-criterion-0.3) + ("rust-serde" ,rust-serde-1) + ("rust-serde-json" ,rust-serde-json-1) + ("rust-serde-test" ,rust-serde-test-1) + ("rust-static-assertions" ,rust-static-assertions-1)))))) + (define-public rust-bitvec-0.19 (package (inherit rust-bitvec-0.22) -- cgit v1.3 From 9af44e0b2ac9c3174a76d6f3e6643808e199fbda Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Wed, 19 Jan 2022 09:47:42 +0100 Subject: gnu: Add rust-parity-crypto-0.9. * gnu/packages/crates-io.scm (rust-parity-crypto-0.9): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 51 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 8a18f8efee..f820c17c3a 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -39396,6 +39396,57 @@ want in the terminal.") including a pretty-printer.") (license (list license:expat license:asl2.0)))) +(define-public rust-parity-crypto-0.9 + (package + (name "rust-parity-crypto") + (version "0.9.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "parity-crypto" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0dafz7pfi21plp6r6k2bh7ysjd3x75yix6a9gkdy3mn0vafym4jb")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-aes" ,rust-aes-0.6) + ("rust-block-modes" ,rust-block-modes-0.7) + ("rust-digest" ,rust-digest-0.9) + ("rust-ethereum-types" ,rust-ethereum-types-0.12) + ("rust-hex" ,rust-hex-0.2) + ("rust-hmac" ,rust-hmac-0.10) + ("rust-lazy-static" ,rust-lazy-static-1) + ("rust-pbkdf2" ,rust-pbkdf2-0.7) + ("rust-ripemd" ,rust-ripemd-0.1) + ("rust-rustc-hex" ,rust-rustc-hex-2) + ("rust-scrypt" ,rust-scrypt-0.5) + ("rust-secp256k1" ,rust-secp256k1-0.20) + ("rust-sha2" ,rust-sha2-0.9) + ("rust-subtle" ,rust-subtle-2) + ("rust-tiny-keccak" ,rust-tiny-keccak-2) + ("rust-zeroize" ,rust-zeroize-1)) + #:cargo-development-inputs + (("rust-criterion" ,rust-criterion-0.3) + ("rust-hex-literal" ,rust-hex-literal-0.3)) + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'fix-version-requirements + (lambda _ + ;; SUBSTITUTE* can't do multiline regex, so let's just do this: + (delete-file "Cargo.toml") + (rename-file "Cargo.toml.orig" "Cargo.toml") + (substitute* "Cargo.toml" + (("aes-ctr = \"0.6.0\"") "") + (("ethereum-types = \\{ version = \"0.12.0\".*") + "ethereum-types = { version = \"0.12.0\", optional = true }\n") + (("ripemd160 = \"0.9.1\"") "ripemd = \"0.1.0\""))))))) + (home-page "https://github.com/paritytech/parity-common") + (synopsis "General cryptographic utilities for Ethereum") + (description "This Rust library provides general cryptographic utilities +for Ethereum.") + (license (list license:expat license:asl2.0)))) + (define-public rust-parity-tokio-ipc-0.4 (package (name "rust-parity-tokio-ipc") -- cgit v1.3 From 92c3164156ab13e21a4a38986401076e17336df9 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Thu, 20 Jan 2022 19:08:11 +0100 Subject: gnu: Add rust-parity-scale-codec-2. * gnu/packages/crates-io.scm (rust-parity-scale-codec-2): New variable. (rust-parity-scale-codec-derive-2): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 61 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index f820c17c3a..4a8602bca8 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -39447,6 +39447,67 @@ including a pretty-printer.") for Ethereum.") (license (list license:expat license:asl2.0)))) +(define-public rust-parity-scale-codec-2 + (package + (name "rust-parity-scale-codec") + (version "2.3.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "parity-scale-codec" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "02g95fp56sfpxixpy3x2h2yvcnmbpl8klfx53wywvn9q2d61lfrp")))) + (build-system cargo-build-system) + (arguments + ;; The tests fail with: error[E0432]: unresolved import + ;; `parity_scale_codec_derive`. They also take a relatively long time. + `(#:tests? #f + #:cargo-inputs + (("rust-arbitrary" ,rust-arbitrary-1) + ("rust-arrayvec" ,rust-arrayvec-0.7) + ("rust-bitvec" ,rust-bitvec-0.20) + ("rust-byte-slice-cast" ,rust-byte-slice-cast-1) + ("rust-generic-array" ,rust-generic-array-0.14) + ("rust-impl-trait-for-tuples" ,rust-impl-trait-for-tuples-0.2) + ("rust-parity-scale-codec-derive" ,rust-parity-scale-codec-derive-2) + ("rust-serde" ,rust-serde-1)) + #:cargo-development-inputs + (("rust-criterion" ,rust-criterion-0.3) + ("rust-quickcheck" ,rust-quickcheck-1) + ("rust-serde-derive" ,rust-serde-derive-1) + ("rust-trybuild" ,rust-trybuild-1)))) + (home-page "https://github.com/paritytech/parity-scale-codec") + (synopsis "SCALE - Simple Concatenating Aggregated Little Endians") + (description "This package is a Rust library for SCALE - Simple +Concatenating Aggregated Little Endians.") + (license license:asl2.0))) + +(define-public rust-parity-scale-codec-derive-2 + (package + (name "rust-parity-scale-codec-derive") + (version "2.3.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "parity-scale-codec-derive" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "09zdgdqalc8d2zsjc9v1ayqxwg5rh7xxq5ldasdmqng0fq202mqm")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-proc-macro-crate" ,rust-proc-macro-crate-1) + ("rust-proc-macro2" ,rust-proc-macro2-1) + ("rust-quote" ,rust-quote-1) + ("rust-syn" ,rust-syn-1)))) + (home-page "") + (synopsis + "Serialization and deserialization derive macro for Parity SCALE Codec") + (description "This is a Rust library for serialization and deserialization +derive macro for Parity SCALE Codec.") + (license license:asl2.0))) + (define-public rust-parity-tokio-ipc-0.4 (package (name "rust-parity-tokio-ipc") -- cgit v1.3 From 3100859aa2b84c89c2b5fb7eb5a315d6a0701b74 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Thu, 20 Jan 2022 19:09:21 +0100 Subject: gnu: Add rust-impl-codec-0.5. * gnu/packages/crates-io.scm (rust-impl-codec-0.5): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 4a8602bca8..ead6bbf56e 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -70973,6 +70973,27 @@ Rust that are very fast but not thread-safe. A thread-safe (and slower) variant of this library is available separately as @code{im}.") (license license:mpl2.0))) +(define-public rust-impl-codec-0.5 + (package + (name "rust-impl-codec") + (version "0.5.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "impl-codec" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0hy4svffnw9idy9ipp0hkmbzk97fl583akqwyqmvbqy8qgzbs7hn")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-parity-scale-codec" ,rust-parity-scale-codec-2)))) + (home-page "https://github.com/paritytech/parity-common") + (synopsis "Parity Codec serialization support for uint and fixed hash") + (description "This package provides Parity Codec serialization support +for uint and fixed hash.") + (license (list license:expat license:asl2.0)))) + (define-public rust-impl-trait-for-tuples-0.2 (package (name "rust-impl-trait-for-tuples") -- cgit v1.3 From 1296e3eed55c1a7b97278c02409862faa6cf78e8 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Thu, 20 Jan 2022 19:34:32 +0100 Subject: gnu: Add rust-crunchy-0.1. * gnu/packages/crates-io.scm (rust-crunchy-0.1): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index ead6bbf56e..7ff01a4088 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -14499,6 +14499,19 @@ abstractions around common WinAPI calls.") number ``crunching``.") (license license:expat))) +(define-public rust-crunchy-0.1 + (package + (inherit rust-crunchy-0.2) + (name "rust-crunchy") + (version "0.1.6") + (source + (origin + (method url-fetch) + (uri (crate-uri "crunchy" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1nnbh2k3pv1diyd0i0p3a08kd4afqc17yz0b43hn5xn9qlqs9x52")))))) + (define-public rust-roxmltree-0.14 (package (name "rust-roxmltree") -- cgit v1.3 From 09aac04b1c434eeab61eda23a40ef5accaf5cd31 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Thu, 20 Jan 2022 19:43:09 +0100 Subject: gnu: Add rust-uint-0.4. * gnu/packages/crates-io.scm (rust-uint-0.4): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 7ff01a4088..2908f3c74e 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -65981,6 +65981,34 @@ panic-free alternative to @code{core::fmt}.") (description "This package provides @code{μfmt}'s @code{uWrite} trait.") (license (list license:expat license:asl2.0)))) +(define-public rust-uint-0.4 + (package + (name "rust-uint") + (version "0.4.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "uint" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0il6x59h605mmm10qxig066khxaygqcyb60pqja1n5mr68bs2jvm")))) + (build-system cargo-build-system) + (arguments + `(#:tests? #f ; The tests fail. Due to rustc version? + #:cargo-inputs + (("rust-byteorder" ,rust-byteorder-1) + ("rust-crunchy" ,rust-crunchy-0.1) + ("rust-heapsize" ,rust-heapsize-0.4) + ("rust-quickcheck" ,rust-quickcheck-0.6) + ("rust-rustc-hex" ,rust-rustc-hex-2)) + #:cargo-development-inputs + (("rust-quickcheck" ,rust-quickcheck-0.6) + ("rust-rustc-hex" ,rust-rustc-hex-2)))) + (home-page "http://parity.io") + (synopsis "Large fixed-size integer arithmetic") + (description synopsis) + (license (list license:expat license:asl2.0)))) + (define-public rust-umask-1 (package (name "rust-umask") -- cgit v1.3 From 94eca5ba4cf7b83e4388ac0d7b1000126a534d8c Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Thu, 20 Jan 2022 19:48:56 +0100 Subject: gnu: Add rust-ethereum-types-serialize-0.2. * gnu/packages/crates-io.scm (rust-ethereum-types-serialize-0.2): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 2908f3c74e..f6c158b243 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -20366,6 +20366,24 @@ ecosystem.") (base32 "1c1l2sg6li301izl4nzkkfrpc8snafxwnr81vfwygn3bd3zyqfj7")))))) +(define-public rust-ethereum-types-serialize-0.2 + (package + (name "rust-ethereum-types-serialize") + (version "0.2.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "ethereum-types-serialize" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0l53rvzvwpxwkl7i3f9q5fafw663rcm5z4mdknkr265w69xxfwqq")))) + (build-system cargo-build-system) + (arguments `(#:cargo-inputs (("rust-serde" ,rust-serde-1)))) + (home-page "https://github.com/paritytech/primitives") + (synopsis "Rust library of Ethereum types") + (description "This package is a Rust library of Ethereum types.") + (license license:expat))) + (define-public rust-event-listener-2 (package (name "rust-event-listener") -- cgit v1.3 From efe1b4cc5e24f74f670471fb5e53797305069b3a Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Thu, 20 Jan 2022 19:52:53 +0100 Subject: gnu: Add rust-tiny-keccak-1. * gnu/packages/crates-io.scm (rust-tiny-keccak-1): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index f6c158b243..a7ce61322a 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -61739,6 +61739,22 @@ manipulation in Rust.") specified in FIPS-202, SP800-185 and KangarooTwelve.") (license license:cc0))) +(define-public rust-tiny-keccak-1 + (package + (inherit rust-tiny-keccak-2) + (name "rust-tiny-keccak") + (version "1.5.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "tiny-keccak" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1chiisrsql4pfwh5r7nz055ciqj7ch24m0nvrr6a8x5vd4f052hx")))) + (arguments + `(#:cargo-inputs + (("rust-crunchy" ,rust-crunchy-0.2)))))) + (define-public rust-tinyfiledialogs-3 (package (name "rust-tinyfiledialogs") -- cgit v1.3 From 65fcb36f0bcff73c465da0f8ee6cd09a8aa9eab0 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Mon, 24 Jan 2022 11:09:08 +0100 Subject: gnu: Add rust-impl-rlp-0.3. * gnu/packages/crates-io.scm (rust-impl-rlp-0.3): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index a7ce61322a..30dbf0756c 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -71069,6 +71069,27 @@ variant of this library is available separately as @code{im}.") for uint and fixed hash.") (license (list license:expat license:asl2.0)))) +(define-public rust-impl-rlp-0.3 + (package + (name "rust-impl-rlp") + (version "0.3.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "impl-rlp" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "021869d5s47ili9kmhm9y80qpsbf0wwdap14qzfpb84pjbw210pj")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-rlp" ,rust-rlp-0.5)))) + (home-page "https://github.com/paritytech/parity-common") + (synopsis "RLP serialization support for uint and fixed hash") + (description "This package provides RLP serialization support for uint +and fixed hash.") + (license (list license:expat license:asl2.0)))) + (define-public rust-impl-trait-for-tuples-0.2 (package (name "rust-impl-trait-for-tuples") -- cgit v1.3 From bc82ede543707929e9fd77494506e677d2c7901c Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Thu, 20 Jan 2022 22:15:37 +0100 Subject: gnu: Add rust-impl-serde-0.3. * gnu/packages/crates-io.scm (rust-impl-serde-0.3): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 30dbf0756c..f4f68c5283 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -71090,6 +71090,32 @@ for uint and fixed hash.") and fixed hash.") (license (list license:expat license:asl2.0)))) +(define-public rust-impl-serde-0.3 + (package + (name "rust-impl-serde") + (version "0.3.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "impl-serde" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0p2zy8ikdxd28s3vb22nwqgnwjn8gx920sr2svdn93j3yd1g0la5")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-serde" ,rust-serde-1)) + #:cargo-development-inputs + (("rust-criterion" ,rust-criterion-0.3) + ("rust-serde-derive" ,rust-serde-derive-1) + ("rust-serde-json" ,rust-serde-json-1) + ("rust-uint" ,rust-uint-0.9)))) + (home-page "https://github.com/paritytech/parity-common") + (synopsis "Serde serialization support for uint and fixed hash") + (description "This package provides @code{serde} serialization support +for @code{uint} and @code{fixed_hash}.") + (license (list license:expat license:asl2.0)))) + (define-public rust-impl-trait-for-tuples-0.2 (package (name "rust-impl-trait-for-tuples") -- cgit v1.3 From b8b98aacce80deb0061561a6a0950dbd2c44f712 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Thu, 20 Jan 2022 22:16:27 +0100 Subject: gnu: Add rust-scale-info-1, rust-scale-info-derive-1. * gnu/packages/crates-io.scm (rust-scale-info-1): New variable. (rust-scale-info-derive-1): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 49 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index f4f68c5283..39c6f97cb5 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -51446,6 +51446,55 @@ motivation for writing this library. @end itemize") (license (list license:asl2.0 license:expat)))) +(define-public rust-scale-info-1 + (package + (name "rust-scale-info") + (version "1.0.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "scale-info" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0bvq3a9im6c20xmx8lipr5px9y4x22dpilm0ccnm69cw752bfmaw")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-bitvec" ,rust-bitvec-0.20) + ("rust-cfg-if" ,rust-cfg-if-1) + ("rust-derive-more" ,rust-derive-more-0.99) + ("rust-parity-scale-codec" ,rust-parity-scale-codec-2) + ("rust-scale-info-derive" ,rust-scale-info-derive-1) + ("rust-serde" ,rust-serde-1)))) + (home-page "https://www.parity.io/") + (synopsis "Info about SCALE encodable Rust types") + (description "This package provides info about SCALE encodable Rust types.") + (license license:asl2.0))) + +(define-public rust-scale-info-derive-1 + (package + (name "rust-scale-info-derive") + (version "1.0.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "scale-info-derive" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1k8z7y6181yjdnggbhnqr8mfnpw197pa8ni0hqpmk003d602gsxs")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-proc-macro-crate" ,rust-proc-macro-crate-1) + ("rust-proc-macro2" ,rust-proc-macro2-1) + ("rust-quote" ,rust-quote-1) + ("rust-syn" ,rust-syn-1)))) + (home-page "https://www.parity.io/") + (synopsis "Derive type info for SCALE encodable types") + (description "This package provides derive type info for SCALE +encodable types.") + (license license:asl2.0))) + (define-public rust-scan-fmt-0.2 (package (name "rust-scan-fmt") -- cgit v1.3 From 4ffcb64f9ab9bf4bd3727359208236a330644d18 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Thu, 20 Jan 2022 22:18:45 +0100 Subject: gnu: Add rust-uint-0.9. * gnu/packages/crates-io.scm (rust-uint-0.9): New variable. (rust-uint-0.4): Inherit from above. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 39 +++++++++++++++++++++++++++++++++------ 1 file changed, 33 insertions(+), 6 deletions(-) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 39c6f97cb5..4dd8b9d4e8 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -66064,8 +66064,40 @@ panic-free alternative to @code{core::fmt}.") (description "This package provides @code{μfmt}'s @code{uWrite} trait.") (license (list license:expat license:asl2.0)))) +(define-public rust-uint-0.9 + (package + (name "rust-uint") + (version "0.9.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "uint" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0pys10znj928lijvsq2rvnzns90a91j7199pl2afigc2yi8anw34")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-arbitrary" ,rust-arbitrary-1) + ("rust-byteorder" ,rust-byteorder-1) + ("rust-crunchy" ,rust-crunchy-0.2) + ("rust-hex" ,rust-hex-0.4) + ("rust-quickcheck" ,rust-quickcheck-0.9) + ("rust-rand" ,rust-rand-0.7) + ("rust-static-assertions" ,rust-static-assertions-1)) + #:cargo-development-inputs + (("rust-criterion" ,rust-criterion-0.3) + ("rust-num-bigint" ,rust-num-bigint-0.4) + ("rust-rug" ,rust-rug-1)))) + (home-page "http://parity.io") + (synopsis "Large, fixed-size integer arithmetic in Rust") + (description "This package is a Rust library for large, fixed-size integer +arithmetic.") + (license (list license:expat license:asl2.0)))) + (define-public rust-uint-0.4 (package + (inherit rust-uint-0.9) (name "rust-uint") (version "0.4.1") (source @@ -66075,7 +66107,6 @@ panic-free alternative to @code{core::fmt}.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "0il6x59h605mmm10qxig066khxaygqcyb60pqja1n5mr68bs2jvm")))) - (build-system cargo-build-system) (arguments `(#:tests? #f ; The tests fail. Due to rustc version? #:cargo-inputs @@ -66086,11 +66117,7 @@ panic-free alternative to @code{core::fmt}.") ("rust-rustc-hex" ,rust-rustc-hex-2)) #:cargo-development-inputs (("rust-quickcheck" ,rust-quickcheck-0.6) - ("rust-rustc-hex" ,rust-rustc-hex-2)))) - (home-page "http://parity.io") - (synopsis "Large fixed-size integer arithmetic") - (description synopsis) - (license (list license:expat license:asl2.0)))) + ("rust-rustc-hex" ,rust-rustc-hex-2)))))) (define-public rust-umask-1 (package -- cgit v1.3 From 9a7da0b0d85bbd3754e5dd3b1936829fbf23b779 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Thu, 20 Jan 2022 22:36:44 +0100 Subject: gnu: Add rust-ethbloom-0.5. * gnu/packages/crates-io.scm (rust-ethbloom-0.5): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 4dd8b9d4e8..bc0d8782ee 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -20329,6 +20329,35 @@ decoding.") (("rust-serde" ,rust-serde-1) ("rust-serde-json" ,rust-serde-json-1)))))) +(define-public rust-ethbloom-0.5 + (package + (name "rust-ethbloom") + (version "0.5.3") + (source + (origin + (method url-fetch) + (uri (crate-uri "ethbloom" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0q2kix0p067rrfffhbfra453dw51s4cfgs0lhirslsv4callsad6")))) + (build-system cargo-build-system) + (arguments + `(#:tests? #f ; The tests fail. + #:cargo-inputs + (("rust-crunchy" ,rust-crunchy-0.1) + ("rust-ethereum-types-serialize" ,rust-ethereum-types-serialize-0.2) + ("rust-fixed-hash" ,rust-fixed-hash-0.2) + ("rust-serde" ,rust-serde-1) + ("rust-tiny-keccak" ,rust-tiny-keccak-1)) + #:cargo-development-inputs + (("rust-hex-literal" ,rust-hex-literal-0.1) + ("rust-rand" ,rust-rand-0.4) + ("rust-rustc-hex" ,rust-rustc-hex-1)))) + (home-page "https://github.com/paritytech/parity-common") + (synopsis "Ethereum bloom filter") + (description "This package provides an Ethereum bloom filter.") + (license (list license:expat license:asl2.0)))) + (define-public rust-ethereum-types-0.12 (package (name "rust-ethereum-types") -- cgit v1.3 From 9eb27fcadf916475e8fdc592a197d698dd01ce5b Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Thu, 20 Jan 2022 19:59:31 +0100 Subject: gnu: Add rust-ethereum-types-0.4. * gnu/packages/crates-io.scm (rust-ethereum-types-0.4): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index bc0d8782ee..ea0e79cacd 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -20395,6 +20395,29 @@ ecosystem.") (base32 "1c1l2sg6li301izl4nzkkfrpc8snafxwnr81vfwygn3bd3zyqfj7")))))) +(define-public rust-ethereum-types-0.4 + (package + (inherit rust-ethereum-types-0.9) + (name "rust-ethereum-types") + (version "0.4.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "ethereum-types" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "15icipk0ap7r6yi0i6cl6zsl0z52zbw6jwv3l271r833vj222x3f")))) + (arguments + `(#:cargo-inputs + (("rust-crunchy" ,rust-crunchy-0.1) + ("rust-ethbloom" ,rust-ethbloom-0.5) + ("rust-ethereum-types-serialize" ,rust-ethereum-types-serialize-0.2) + ("rust-fixed-hash" ,rust-fixed-hash-0.2) + ("rust-serde" ,rust-serde-1) + ("rust-uint" ,rust-uint-0.4)) + #:cargo-development-inputs + (("rust-serde-json" ,rust-serde-json-1)))))) + (define-public rust-ethereum-types-serialize-0.2 (package (name "rust-ethereum-types-serialize") -- cgit v1.3 From 41fb5f32f38b7e582801a9c971dbad89a0a2e0bf Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Thu, 20 Jan 2022 20:02:58 +0100 Subject: gnu: Add rust-rlp-0.3. * gnu/packages/crates-io.scm (rust-rlp-0.3): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index ea0e79cacd..e0c02f050a 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -48050,6 +48050,27 @@ your own implementation.") decoding, and compression.") (license (list license:expat license:asl2.0)))) +(define-public rust-rlp-0.3 + (package + (inherit rust-rlp-0.5) + (name "rust-rlp") + (version "0.3.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "rlp" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "082pfkdzsnzvqr5yx5qb2hildjg597p2115ywy84zma5k3zfzl8n")))) + (arguments + `(#:tests? #f ; The tests fail. + #:cargo-inputs + (("rust-byteorder" ,rust-byteorder-1) + ("rust-ethereum-types" ,rust-ethereum-types-0.4) + ("rust-rustc-hex" ,rust-rustc-hex-2)) + #:cargo-development-inputs + (("rust-hex-literal" ,rust-hex-literal-0.1)))))) + (define-public rust-rls-span-0.5 (package (name "rust-rls-span") -- cgit v1.3 From 766c0c29cb502df22839976d7762eabc6c4c09a4 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Thu, 20 Jan 2022 20:11:48 +0100 Subject: gnu: Add rust-integer-sqrt-0.1. * gnu/packages/crates-io.scm (rust-integer-sqrt-0.1): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index e0c02f050a..b3a2436d20 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -28529,6 +28529,28 @@ bytestring representations.") ("rust-futures-util" ,rust-futures-util-0.3) ("rust-tokio" ,rust-tokio-0.2)))))) +(define-public rust-integer-sqrt-0.1 + (package + (name "rust-integer-sqrt") + (version "0.1.5") + (source + (origin + (method url-fetch) + (uri (crate-uri "integer-sqrt" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0w6pzmgvs1mldkhafbwg9x7wzr0af3ngkimyb1gy97jarcdw6vi7")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-num-traits" ,rust-num-traits-0.2)))) + (home-page "https://github.com/derekdreery/integer-sqrt-rs") + (synopsis "Integer square root algorithm for primitive rust types") + (description + "This is a Rust implementation of integer square root algorithm for +primitive Rust types.") + (license (list license:asl2.0 license:expat)))) + (define-public rust-interpolate-name-0.2 (package (name "rust-interpolate-name") -- cgit v1.3 From 8f3d6f01123d707a30c03833abadce79a681e444 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Thu, 20 Jan 2022 21:29:52 +0100 Subject: gnu: Add rust-gmp-mpfr-sys-1. * gnu/packages/crates-io.scm (rust-gmp-mpfr-sys-1): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index b3a2436d20..4c3ea3fdfc 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -51,6 +51,7 @@ #:use-module (gnu packages) #:use-module (gnu packages admin) #:use-module (gnu packages autotools) + #:use-module (gnu packages bash) #:use-module (gnu packages cmake) #:use-module (gnu packages compression) #:use-module (gnu packages cpp) @@ -66,6 +67,7 @@ #:use-module (gnu packages jemalloc) #:use-module (gnu packages linux) #:use-module (gnu packages llvm) + #:use-module (gnu packages m4) #:use-module (gnu packages mail) #:use-module (gnu packages multiprecision) #:use-module (gnu packages nettle) @@ -25078,6 +25080,35 @@ open file descriptors.") timers.") (license (list license:expat license:asl2.0)))) +(define-public rust-gmp-mpfr-sys-1 + (package + (name "rust-gmp-mpfr-sys") + (version "1.4.7") + (source + (origin + (method url-fetch) + (uri (crate-uri "gmp-mpfr-sys" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1ysvdf352vcnb5ygmbwf5pkndqb0p6clmz0nqkf3nmz9ghssfim1")))) + (build-system cargo-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'set-shell-for-configure-script + (lambda _ + (setenv "CONFIG_SHELL" (which "sh"))))) + #:cargo-inputs + (("rust-libc" ,rust-libc-0.2) + ("rust-winapi" ,rust-winapi-0.3)))) + (native-inputs + (list bash-minimal m4)) + (home-page "https://gitlab.com/tspiteri/gmp-mpfr-sys") + (synopsis "Rust FFI bindings for GMP, MPFR, and MPC") + (description "This package provides Rust FFI bindings for the numeric +libraries GMP, MPFR, and MPC.") + (license license:lgpl3+))) + (define-public rust-goblin-0.2 (package (name "rust-goblin") -- cgit v1.3 From 7b1337fcc3ce5f7019d3f3259716071f595aa46d Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Thu, 20 Jan 2022 21:33:35 +0100 Subject: gnu: rust-az: Update to 1.2.0. * gnu/packages/crates-io.scm (rust-az): Update to 1.2.0. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 4c3ea3fdfc..cdedba9d2a 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -5462,7 +5462,7 @@ built on the Actix ecosystem.") (define-public rust-az-1 (package (name "rust-az") - (version "1.0.0") + (version "1.2.0") (source (origin (method url-fetch) @@ -5471,7 +5471,7 @@ built on the Actix ecosystem.") (string-append name "-" version ".tar.gz")) (sha256 (base32 - "0sb51w9pjcqb315dg6zv9wwqj1q2fldcc3xmfv0bhkmajiyx9g79")))) + "1i2s9bqar8hfxjmfr2cbhi4s26s2sd1kc3x3g517ygshyp8sawgp")))) (build-system cargo-build-system) (home-page "https://gitlab.com/tspiteri/az") (synopsis "Casts and checked casts") -- cgit v1.3 From 15a7e3e25c7b741cfa1ad0dd5c0d9e467f2e6d53 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Thu, 20 Jan 2022 21:50:44 +0100 Subject: gnu: Add rust-rug-1. * gnu/packages/crates-io.scm (rust-rug-1): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index cdedba9d2a..c7d7d61285 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -48745,6 +48745,44 @@ table-based tests.") table-based tests.") (license (list license:expat license:asl2.0)))) +(define-public rust-rug-1 + (package + (name "rust-rug") + (version "1.14.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "rug" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1iw52gyw0hshymqa04g76m7qnrds5vkgc5s8svqx5nv1jz1wrdgm")))) + (build-system cargo-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'set-shell-for-configure-script + (lambda _ + (setenv "CONFIG_SHELL" (which "sh"))))) + #:cargo-inputs + (("rust-az" ,rust-az-1) + ("rust-gmp-mpfr-sys" ,rust-gmp-mpfr-sys-1) + ("rust-libc" ,rust-libc-0.2) + ("rust-serde" ,rust-serde-1)) + #:cargo-development-inputs + (("rust-bincode" ,rust-bincode-1) + ("rust-byteorder" ,rust-byteorder-1) + ("rust-serde-json" ,rust-serde-json-1) + ("rust-serde-test" ,rust-serde-test-1)))) + (native-inputs + (list bash-minimal m4)) + (home-page "https://gitlab.com/tspiteri/rug") + (synopsis + "Arbitrary-precision integers, rational, floating-point and complex numbers based +on GMP, MPFR and MPC") + (description "This is a Rust library of arbitrary-precision integers, rational, +floating-point, and complex numbers based on GMP, MPFR and MPC.") + (license license:lgpl3+))) + (define-public rust-rpassword-5 (package (name "rust-rpassword") -- cgit v1.3 From 105df0cfb6b2358e6d7e745fa8e6178de7633db2 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Thu, 20 Jan 2022 22:23:03 +0100 Subject: gnu: Add rust-impl-num-traits-0.1. * gnu/packages/crates-io.scm (rust-impl-num-traits-0.1): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index c7d7d61285..bb86595d6b 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -71330,6 +71330,29 @@ for uint and fixed hash.") and fixed hash.") (license (list license:expat license:asl2.0)))) +(define-public rust-impl-num-traits-0.1 + (package + (name "rust-impl-num-traits") + (version "0.1.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "impl-num-traits" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0rjlic3z684l37qm7zywmxhhllnf982y3ilyslyxb6jiddyhbdiq")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-integer-sqrt" ,rust-integer-sqrt-0.1) + ("rust-num-traits" ,rust-num-traits-0.2) + ("rust-uint" ,rust-uint-0.9)))) + (home-page "https://github.com/paritytech/parity-common") + (synopsis "num-traits implementation for uint") + (description "This package provides @code{num-traits} implementation +for @code{uint}.") + (license (list license:expat license:asl2.0)))) + (define-public rust-impl-serde-0.3 (package (name "rust-impl-serde") -- cgit v1.3 From b6bca9cf0f1961d16fe174d71cee23ed47d840fc Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Thu, 27 Jan 2022 23:53:51 +0100 Subject: gnu: Add rust-ethbloom-0.11. * gnu/packages/crates-io.scm (rust-ethbloom-0.11): New variable. (rust-ethbloom-0.5): Inherit from above. Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 38 ++++++++++++++++++++++++++++++++------ 1 file changed, 32 insertions(+), 6 deletions(-) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index bb86595d6b..841af300eb 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -20331,8 +20331,39 @@ decoding.") (("rust-serde" ,rust-serde-1) ("rust-serde-json" ,rust-serde-json-1)))))) +(define-public rust-ethbloom-0.11 + (package + (name "rust-ethbloom") + (version "0.11.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "ethbloom" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1y73c4v60jy6wc4gssrg775y6vzc4axn523qkxswbxm8iyn89dmz")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-crunchy" ,rust-crunchy-0.2) + ("rust-fixed-hash" ,rust-fixed-hash-0.7) + ("rust-impl-codec" ,rust-impl-codec-0.5) + ("rust-impl-rlp" ,rust-impl-rlp-0.3) + ("rust-impl-serde" ,rust-impl-serde-0.3) + ("rust-scale-info" ,rust-scale-info-1) + ("rust-tiny-keccak" ,rust-tiny-keccak-2)) + #:cargo-development-inputs + (("rust-criterion" ,rust-criterion-0.3) + ("rust-hex-literal" ,rust-hex-literal-0.3) + ("rust-rand" ,rust-rand-0.8)))) + (home-page "https://github.com/paritytech/parity-common") + (synopsis "Ethereum bloom filter") + (description "This Rust library implements the Ethereum bloom filter.") + (license (list license:expat license:asl2.0)))) + (define-public rust-ethbloom-0.5 (package + (inherit rust-ethbloom-0.11) (name "rust-ethbloom") (version "0.5.3") (source @@ -20342,7 +20373,6 @@ decoding.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "0q2kix0p067rrfffhbfra453dw51s4cfgs0lhirslsv4callsad6")))) - (build-system cargo-build-system) (arguments `(#:tests? #f ; The tests fail. #:cargo-inputs @@ -20354,11 +20384,7 @@ decoding.") #:cargo-development-inputs (("rust-hex-literal" ,rust-hex-literal-0.1) ("rust-rand" ,rust-rand-0.4) - ("rust-rustc-hex" ,rust-rustc-hex-1)))) - (home-page "https://github.com/paritytech/parity-common") - (synopsis "Ethereum bloom filter") - (description "This package provides an Ethereum bloom filter.") - (license (list license:expat license:asl2.0)))) + ("rust-rustc-hex" ,rust-rustc-hex-1)))))) (define-public rust-ethereum-types-0.12 (package -- cgit v1.3 From b14a1cdef571c0901f716f4e752a97e8028ccbbd Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Mon, 24 Jan 2022 12:02:31 +0100 Subject: gnu: Switch variable names rust-funty-1.2 and rust-funty-1. The rationale is that rust-funty-1 should be the latest in the v1.x.y line, while rust-funty-1.1 is a specific version that some packages depend on. Probably backwards compatibility got broken at v1.1.0, because some packages request ~1.1 (i.e. 1.1.0 at the time of writing). Signed-off-by: Nicolas Goaziou --- gnu/packages/crates-io.scm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 841af300eb..fa9a7d9ab5 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -7268,7 +7268,7 @@ streams in big-endian and little-endian formats.") (build-system cargo-build-system) (arguments `(#:cargo-inputs - (("rust-funty" ,rust-funty-1.2) + (("rust-funty" ,rust-funty-1) ("rust-radium" ,rust-radium-0.6) ("rust-serde" ,rust-serde-1) ("rust-tap" ,rust-tap-1) @@ -7301,7 +7301,7 @@ streams in big-endian and little-endian formats.") (build-system cargo-build-system) (arguments `(#:cargo-inputs - (("rust-funty" ,rust-funty-1) + (("rust-funty" ,rust-funty-1.1) ("rust-radium" ,rust-radium-0.6) ("rust-serde" ,rust-serde-1) ("rust-tap" ,rust-tap-1) @@ -7330,7 +7330,7 @@ streams in big-endian and little-endian formats.") "10bz751jbsy8fj203ibjwil07p2fwfzvx7b326wfssaravlkbfm7")))) (arguments `(#:cargo-inputs - (("rust-funty" ,rust-funty-1) + (("rust-funty" ,rust-funty-1.1) ("rust-radium" ,rust-radium-0.5) ("rust-serde" ,rust-serde-1) ("rust-tap" ,rust-tap-1) @@ -22695,7 +22695,7 @@ pseudorandom number generator") (description "Low-level Rust bindings for the Zircon kernel.") (license license:bsd-3))) -(define-public rust-funty-1.2 +(define-public rust-funty-1 (package (name "rust-funty") (version "1.2.0") @@ -22720,9 +22720,9 @@ code to generalize over which specific type it accepted. This was never stabilized, and eventually removed. This library reïnstates these traits.") (license license:expat))) -(define-public rust-funty-1 +(define-public rust-funty-1.1 (package - (inherit rust-funty-1.2) + (inherit rust-funty-1) (name "rust-funty") (version "1.1.0") (source -- cgit v1.3 From beda1cd7945cc151582cdb0270d795eb89b51225 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Thu, 27 Jan 2022 22:24:52 -0500 Subject: gnu: Audacity: Do not depend on FFmpeg. Audacity stopped linking to FFmpeg in version 3.1.0. Instead, users are expected to arrange for it to be loaded at runtime: https://issues.guix.gnu.org/53591 * gnu/packages/audio.scm (audacity)[inputs]: Remove ffmpeg. --- gnu/packages/audio.scm | 1 - 1 file changed, 1 deletion(-) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index b186c79451..b882e2e21b 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -763,7 +763,6 @@ engineers, musicians, soundtrack editors and composers.") alsa-lib jack-1 expat - ffmpeg lame linux-libre-headers flac -- cgit v1.3 From e5dc38d30d42eebc8c15005ed4dee0970205570f Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Thu, 27 Jan 2022 22:31:44 -0500 Subject: gnu: Audacity: Build from the release tarball. * gnu/packages/audio.scm (audacity)[source]: Use url-fetch. --- gnu/packages/audio.scm | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index b882e2e21b..feccf662b0 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -728,14 +728,16 @@ engineers, musicians, soundtrack editors and composers.") (version "3.1.3") (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/audacity/audacity") - (commit (string-append "Audacity-" version)))) - (file-name (git-file-name name version)) + ;; If built from the release tag, Audacity will describe itself + ;; as an "Alpha test version" and suggest to users that they use + ;; the "latest stable released version". + (method url-fetch) + (uri (string-append "https://github.com/audacity/audacity/releases/download/" + "Audacity-" version "/audacity-" version + "-source.tar.gz")) (sha256 (base32 - "1689q9apbjf9nnda62shb8j7hm4hxd47mhk4l5h3c728mjjkilmi")) + "189agx11361k9j958s6q5bngnnfx0rwaf0dwbjxy6fwvsb1wv3px")) (modules '((guix build utils))) (snippet ;; Remove bundled libraries. -- cgit v1.3 From 3c7bbec47073d95445811c74d4822da60bd2132c Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Thu, 27 Jan 2022 22:51:44 -0500 Subject: gnu: libjami: Produce usable debug symbols. * gnu/packages/jami.scm (libjami)[configure-flags]: Add '--enable-debug'. --- gnu/packages/jami.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/jami.scm b/gnu/packages/jami.scm index 443e42e2db..160d0f560b 100644 --- a/gnu/packages/jami.scm +++ b/gnu/packages/jami.scm @@ -410,7 +410,7 @@ ;; FIXME: Fails to link when building libjami as a shared library: ;; bindings.cpp:(.text+0x24): undefined reference to `jami::Logger::log ;; [...]. - #:configure-flags #~(list "--disable-agent") + #:configure-flags #~(list "--disable-agent" "--enable-debug") #:make-flags #~(list "V=1") ;build verbosely #:phases #~(modify-phases %standard-phases -- cgit v1.3 From c875c82d306d7267f24ba11ffa734d3445c7ab16 Mon Sep 17 00:00:00 2001 From: jgart via Guix-patches via Date: Wed, 26 Jan 2022 16:23:53 -0500 Subject: gnu: Add emacs-alsamixer-el. * gnu/packages/emacs-xyz.scm (emacs-alsamixer-el): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 68c10a2307..258c2b25b5 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -29965,6 +29965,27 @@ extended by the user via @code{setup-define}. A list of currently known local macros are documented in the docstring for @code{setup}.") (license license:gpl3+))) +(define-public emacs-alsamixer-el + (package + (name "emacs-alsamixer-el") + (version "0.2.1") + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/remvee/alsamixer-el") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c40vycphv5nf374rp8pnzvi50vlmgab3wrdq92hyprjw76gwxhk")))) + (build-system emacs-build-system) + (home-page "https://github.com/remvee/alsamixer-el") + (synopsis "Emacs interface to amixer") + (description "@code{emacs-alsamixer-el} provides basic commands to control +audio volume via amixer.") + (license license:gpl3+))) + (define-public emacs-fennel-mode (package (name "emacs-fennel-mode") -- cgit v1.3 From ac577bb7de76cfc9dc71290c9b24960fbb28e8e8 Mon Sep 17 00:00:00 2001 From: jgart via Guix-patches via Date: Thu, 27 Jan 2022 00:54:27 -0500 Subject: gnu: Add emacs-validate-html. * gnu/packages/emacs-xyz.scm (emacs-validate-html): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 258c2b25b5..8f32c57792 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -29917,6 +29917,32 @@ It includes syntax highlighting, automatic indentation, and imenu integration. Unlike Emacs' generic ASM mode, it understands NASM-specific syntax.") (license license:unlicense))) +(define-public emacs-validate-html + ;; XXX: Upstream did not tag commits yet. However, commit below matches the + ;; last version bump. Version is extracted from the keyword in main file. + (let ((commit "748e874d50c3a95c61590ae293778e26de05c5f9")) + (package + (name "emacs-validate-html") + (version "1.3") + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/arthurgleckler/validate-html") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0b2b5dm85jwgkqvga23r3vfya07vxv2n7a3a6r1pxpk8asqlw41c")))) + (build-system emacs-build-system) + (home-page "https://github.com/arthurgleckler/validate-html") + (synopsis "Run the W3C HTML Validator directly from Emacs") + (description + "@command{emacs-validate-html} installs the command @code{validate-html}, +which sends the current buffer to the World Wide Web Consortium’s HTML +Validator service and displays the results in a buffer in Compilation mode.") + (license license:gpl3+)))) + (define-public emacs-global-tags (let ((commit "06db25d91cc8bfb5e24e02adc04de1226c7e742d") (revision "0")) -- cgit v1.3 From 868df4f36f687b16c7b5fda99a4edfbb71d85507 Mon Sep 17 00:00:00 2001 From: Michael Rohleder Date: Thu, 27 Jan 2022 08:57:17 +0100 Subject: gnu: emacs-deadgrep: Update to 0.11. * gnu/packages/emacs-xyz.scm (emacs-deadgrep): Update to 0.11. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 8f32c57792..d6b8dcbb0d 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -63,7 +63,7 @@ ;;; Copyright © 2020 Evan Straw ;;; Copyright © 2020, 2021 Masaya Tojo ;;; Copyright © 2020, 2021 Martin Becze -;;; Copyright © 2020, 2021 Michael Rohleder +;;; Copyright © 2020, 2021, 2022 Michael Rohleder ;;; Copyright © 2020 Brice Waegeneire ;;; Copyright © 2020 6033fe7de85d <6033fe7de85d@airmail.cc> ;;; Copyright © 2020 John Soo @@ -21478,11 +21478,12 @@ accept and reject GitHub pull requests.") (license license:gpl3+)))) (define-public emacs-deadgrep - (let ((commit "7e50e71c6ff4e17dded43e0836dae4e5ec020fcf") + ;; Latest release is not tagged. + (let ((commit "aebaf72e35546fd235b4861399791814e4e4c7d8") (revision "1")) (package (name "emacs-deadgrep") - (version (git-version "0.10" revision commit)) + (version (git-version "0.11" revision commit)) (source (origin (method git-fetch) @@ -21492,7 +21493,7 @@ accept and reject GitHub pull requests.") (file-name (git-file-name name version)) (sha256 (base32 - "1vjhrq02l8gvdn2haygzq7277hnhjchs9xrfpcnh76gqip200gx4")))) + "1qd60winrrpxmrjsx77i24921p6dad9halz5l5s6biwa421zcgr3")))) (build-system emacs-build-system) (inputs (list ripgrep)) (propagated-inputs -- cgit v1.3 From 8473a9f3b4be389f38c7aa8afb69369f66e699a7 Mon Sep 17 00:00:00 2001 From: Michael Rohleder Date: Thu, 27 Jan 2022 09:15:53 +0100 Subject: gnu: emacs-diminish: Update to 0.46-1.fd486ef. * gnu/packages/emacs-xyz.scm (emacs-diminish): Update to 0.46-1.fd486ef. [license]: Change from gpl2+ to gpl3+. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 36 +++++++++++++++++++----------------- 1 file changed, 19 insertions(+), 17 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index d6b8dcbb0d..b2da1430f1 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -13412,24 +13412,26 @@ the hunks and revert them selectively.") (license license:gpl3+))) (define-public emacs-diminish - (package - (name "emacs-diminish") - (version "0.45") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/myrjola/diminish.el") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0qpgfgp8hrzz4vdifxq8h25n0a0jlzgf7aa1fpy6r0080v5rqbb6")))) - (build-system emacs-build-system) - (home-page "https://github.com/myrjola/diminish.el") - (synopsis "Diminish minor modes with no modeline display") - (description "@code{emacs-diminish} implements hiding or + (let ((commit "fd486ef76e4c1d8211ae337a43b8bba106d4bca7") + (revision "1")) + (package + (name "emacs-diminish") + (version (git-version "0.46" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/myrjola/diminish.el") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vlgn7swwfzy6yr880698h3qsmfcqprcb1jvffkzmbvhvf458szf")))) + (build-system emacs-build-system) + (home-page "https://github.com/myrjola/diminish.el") + (synopsis "Diminish minor modes with no modeline display") + (description "@code{emacs-diminish} implements hiding or abbreviation of the mode line displays (lighters) of minor modes.") - (license license:gpl2+))) + (license license:gpl3+)))) (define-public emacs-use-package (package -- cgit v1.3 From 272c58369094932ac812439d728f6f10a21913fd Mon Sep 17 00:00:00 2001 From: Michael Rohleder Date: Fri, 28 Jan 2022 09:38:38 +0100 Subject: gnu: emacs-literate-calc-mode: Update to 0.1-2.ba7d221. * gnu/packages/emacs-xyz.scm (emacs-literate-calc-mode): Update to 0.1-2.ba7d221. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index b2da1430f1..b79a2d5293 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -4898,8 +4898,8 @@ Emacs can load Org files as Lisp source files directly.") (license license:gpl3+))) (define-public emacs-literate-calc-mode - (let ((commit "a50e897a816cb5580ad6ec867eeaae212e0e4798") - (revision "1")) + (let ((commit "ba7d22140a165b0fdd900a8d04916115ca6ab8ff") + (revision "2")) (package (name "emacs-literate-calc-mode") (version (git-version "0.1" revision commit)) @@ -4911,7 +4911,7 @@ Emacs can load Org files as Lisp source files directly.") (commit commit))) (file-name (git-file-name name version)) (sha256 - (base32 "0z6y5f1rj28lbr30m6g4a9l6ahs66whi8861g4cx9xzhs84nwv5g")))) + (base32 "1bdybw44pmhfpikdv1kg2sx88546xyncks5a4b2s0ak4p66r82k3")))) (build-system emacs-build-system) (propagated-inputs (list emacs-s)) @@ -13412,6 +13412,7 @@ the hunks and revert them selectively.") (license license:gpl3+))) (define-public emacs-diminish + ;; XXX: Upstream did not tag last release. (let ((commit "fd486ef76e4c1d8211ae337a43b8bba106d4bca7") (revision "1")) (package -- cgit v1.3 From 51199431e7fdf381165c6672f92cfb9025cb13c7 Mon Sep 17 00:00:00 2001 From: Michael Rohleder Date: Thu, 27 Jan 2022 11:03:45 +0100 Subject: gnu: kiwix-lib: Fix build. * gnu/packages/web.scm (kiwix-lib)[native-inputs]: Add python-wrapper. Signed-off-by: Nicolas Goaziou --- gnu/packages/web.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 04425c3ed2..7911378f29 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -7949,7 +7949,9 @@ for ZIM files.") (sha256 (base32 "0r9rbk6v1wpld2ismfsk2lkhbyv3dkf0p03hkjivbj05qkfhvlbb")))) - ("pkg-config" ,pkg-config))) + ("pkg-config" ,pkg-config) + ;; for kiwix-compile-resources + ("python" ,python-wrapper))) (synopsis "Common code base for all Kiwix ports") (description "The Kiwix library provides the Kiwix software suite core. It contains the code shared by all Kiwix ports.") -- cgit v1.3 From 88eb611c106d9a76b3905ae30e4a56c45c369683 Mon Sep 17 00:00:00 2001 From: kiasoc5 Date: Wed, 26 Jan 2022 22:43:44 -0500 Subject: gnu: httpie: Update to 3.0.2. * gnu/packages/python-web.scm (httpie): Update to 3.0.2. Signed-off-by: Nicolas Goaziou --- gnu/packages/python-web.scm | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 406c6cb51b..6a3fc27353 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -741,21 +741,27 @@ other HTTP libraries.") (define-public httpie (package (name "httpie") - (version "2.3.0") + (version "3.0.2") (source (origin (method url-fetch) (uri (pypi-uri "httpie" version)) (sha256 (base32 - "15ngl3yc186gkgqdx8iav9bpj8gxjpzz26y32z92jwyhj4cmfh6m")))) + "16ay8mx2v1z3rywsszy055l5k50qjiwyc3pds5wxxzd1n9a79w97")))) (build-system python-build-system) (arguments ;; The tests attempt to access external web servers, so we cannot run them. '(#:tests? #f)) (propagated-inputs - (list python-colorama python-pygments python-requests - python-requests-toolbelt)) + (list python-colorama + python-pygments + python-requests + python-requests-toolbelt + python-pysocks + python-charset-normalizer + python-defusedxml + python-multidict)) (home-page "https://httpie.io") (synopsis "cURL-like tool for humans") (description -- cgit v1.3 From c0f4b684317fda54f3b7e9b98acfff641f4c0b7d Mon Sep 17 00:00:00 2001 From: Simon South Date: Thu, 27 Jan 2022 12:16:45 -0500 Subject: gnu: catch2: Update to 2.13.8. * gnu/packages/check.scm (catch-framework2): Update to 2.13.8. Signed-off-by: Nicolas Goaziou --- gnu/packages/check.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index fb5bcadf83..ad9012f25a 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -421,7 +421,7 @@ a multi-paradigm automated test framework for C++ and Objective-C.") (define-public catch-framework2 (package (name "catch2") - (version "2.13.2") + (version "2.13.8") (home-page "https://github.com/catchorg/Catch2") (source (origin (method git-fetch) @@ -431,7 +431,7 @@ a multi-paradigm automated test framework for C++ and Objective-C.") (file-name (git-file-name name version)) (sha256 (base32 - "100r0kmra8jmra2hv92lzvwcmphpaiccwvq3lpdsa5b7hailhach")))) + "18a6d7rcb6ilhxd5dff32jkfdf2ik58pbywrv04ras70217kdq4c")))) (build-system cmake-build-system) (inputs (list python-wrapper)) -- cgit v1.3 From 8c8ce3faf51f6c8a8ce9e302e9350b639c465859 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 28 Jan 2022 09:47:18 +0100 Subject: gnu: emacs-ebdb: Update to 0.8.10. * gnu/packages/emacs-xyz.scm (emacs-ebdb): Update to 0.8.10. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index b79a2d5293..5ae7db1647 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -26317,14 +26317,14 @@ federated microblogging social network.") (define-public emacs-ebdb (package (name "emacs-ebdb") - (version "0.8.9") + (version "0.8.10") (source (origin (method url-fetch) (uri (string-append "https://elpa.gnu.org/packages/" "ebdb-" version ".tar")) (sha256 - (base32 "0bdwp0iacswd1cl6dbs5m98255iik2nqmzd85k87s3krcafahyr7")))) + (base32 "1763zk75a85803wbn68sz4n3yvkhzh3a8571syd1r2npb59b40ad")))) (build-system emacs-build-system) (home-page "https://github.com/girzel/ebdb") (synopsis "EIEIO port of BBDB, Emacs's contact-management package") -- cgit v1.3 From 970e974b9505d21bf0495f2852b6110a34362285 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 28 Jan 2022 09:48:57 +0100 Subject: gnu: emacs-slime: Update to 2.27. * gnu/packages/emacs-xyz.scm (emacs-slime): Update to 2.27. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 5ae7db1647..f7ad49710e 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -6984,7 +6984,7 @@ in @code{html-mode}.") (define-public emacs-slime (package (name "emacs-slime") - (version "2.26.1") + (version "2.27") (source (origin (method git-fetch) @@ -6993,7 +6993,7 @@ in @code{html-mode}.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1a25ixb7q4svqabxnhwkk43v47mbsh13qwm7qlazkd3zkr8j3cli")))) + (base32 "1s5mbljlz22pb90gwbd380nighkz6gdxl77hc08gri7wwr5gy5n2")))) (build-system emacs-build-system) (native-inputs (list texinfo)) -- cgit v1.3 From 295a91d848b4198b7750088e126000ce30a1a830 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 28 Jan 2022 09:49:25 +0100 Subject: gnu: emacs-slime: Remove trailing #T from phases. * gnu/packages/emacs-xyz.scm (emacs-slime)[arguments]<#:phases>: Remove trailing #T. --- gnu/packages/emacs-xyz.scm | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index f7ad49710e..8ce245c54a 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -7005,13 +7005,11 @@ in @code{html-mode}.") (modify-phases %standard-phases (add-after 'unpack 'make-git-checkout-writable (lambda _ - (for-each make-file-writable (find-files ".")) - #t)) + (for-each make-file-writable (find-files ".")))) (add-before 'install 'configure (lambda* _ (emacs-substitute-variables "slime.el" - ("inferior-lisp-program" "sbcl")) - #t)) + ("inferior-lisp-program" "sbcl")))) (add-before 'install 'install-doc (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) @@ -7033,8 +7031,7 @@ in @code{html-mode}.") (install-file f doc-dir) (delete-file f)) doc-files) - (delete-file-recursively "doc") - #t)))))) + (delete-file-recursively "doc"))))))) (home-page "https://github.com/slime/slime") (synopsis "Superior Lisp Interaction Mode for Emacs") (description -- cgit v1.3 From ffe18274d609d8fe5553f4adb171b879749f4ea3 Mon Sep 17 00:00:00 2001 From: Cees de Groot Date: Fri, 28 Jan 2022 09:56:48 +0100 Subject: gnu: erlang: Update to 24.2.1. * gnu/packages/erlang.scm (erlang): Update to 24.2.1. Signed-off-by: Nicolas Goaziou --- gnu/packages/erlang.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/erlang.scm b/gnu/packages/erlang.scm index 1974fef9a9..0d1a9874ae 100644 --- a/gnu/packages/erlang.scm +++ b/gnu/packages/erlang.scm @@ -41,7 +41,7 @@ (define-public erlang (package (name "erlang") - (version "24.0.5") + (version "24.2.1") (source (origin (method git-fetch) ;; The tarball from http://erlang.org/download contains many @@ -53,7 +53,7 @@ (file-name (git-file-name name version)) (sha256 (base32 - "0f8zr2jxr0v4zcd98zqx99zxdn768vjpzwxsbsd6ss3if405sq2a")) + "0glbdh4la0k4ikygj6rssvlbxbzybjn0bpp276wq170d6rgahlf6")) (patches (search-patches "erlang-man-path.patch")))) (build-system gnu-build-system) (native-inputs @@ -67,7 +67,7 @@ (version-major+minor version) ".tar.gz")) (sha256 (base32 - "1c9ccp93pmm54mmvpiyrmj8v00pq11a60c4xv220k97i965zkwsg")))))) + "0k2zghkkqmf8g66hfb6zff2b7q5sl3r9y6lmv56ky03wzh9lpbjn")))))) (inputs (list ncurses openssl wxwidgets)) (propagated-inputs -- cgit v1.3 From 1c5b0f4f3e5d6f2d9df646f8e32230a9870880e3 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 28 Jan 2022 10:00:24 +0100 Subject: gnu: erlang: Switch to new package style (partial) * gnu/packages/erlang.scm (erlang)[propagated-inputs]: Remove labels. [arguments]<#:phases>: Remove trailing #T. Prefer SEARCH-INPUT-FILE over WHICH. Use LET instead of LET* when appropriate. --- gnu/packages/erlang.scm | 78 ++++++++++++++++++++----------------------------- 1 file changed, 31 insertions(+), 47 deletions(-) diff --git a/gnu/packages/erlang.scm b/gnu/packages/erlang.scm index 0d1a9874ae..888a0f4f1e 100644 --- a/gnu/packages/erlang.scm +++ b/gnu/packages/erlang.scm @@ -71,9 +71,7 @@ (inputs (list ncurses openssl wxwidgets)) (propagated-inputs - `(("fontconfig" ,fontconfig) - ("glu" ,glu) - ("mesa" ,mesa))) + (list fontconfig glu mesa)) (arguments `(#:test-target "release_tests" #:configure-flags @@ -85,7 +83,7 @@ "--enable-threads" "--enable-wx" (string-append "--with-ssl=" (assoc-ref %build-inputs "openssl"))) - #:modules ((srfi srfi-19) ; make-time, et cetera. + #:modules ((srfi srfi-19) ; make-time, et cetera. (guix build utils) (guix build gnu-build-system)) #:phases @@ -127,59 +125,46 @@ (substitute* "lib/snmp/src/compile/snmpc_mib_to_hrl.erl" (("\\{H,Mi,S\\} = time\\(\\),") (date->string source-date-epoch - "{H,Mi,S} = {~H,~M,~S},"))) - #t))) + "{H,Mi,S} = {~H,~M,~S},")))))) (add-after 'unpack 'patch-/bin/sh - (lambda _ - (substitute* "erts/etc/unix/run_erl.c" - (("sh = \"/bin/sh\";") - (string-append "sh = \"" - (which "sh") - "\";"))) - - (substitute* "erts/emulator/sys/unix/sys_drivers.c" - (("SHELL \"/bin/sh\"") - (string-append "SHELL \"" - (which "sh") - "\""))) - (substitute* "erts/emulator/sys/unix/erl_child_setup.c" - (("SHELL \"/bin/sh\"") - (string-append "SHELL \"" - (which "sh") - "\""))) - - (substitute* "lib/kernel/src/os.erl" - (("/bin/sh") (which "sh"))) - - #t)) + (lambda* (#:key inputs #:allow-other-keys) + (let ((sh (search-input-file inputs "/bin/sh"))) + (substitute* "erts/etc/unix/run_erl.c" + (("sh = \"/bin/sh\";") + (string-append "sh = \"" sh "\";"))) + (substitute* "erts/emulator/sys/unix/sys_drivers.c" + (("SHELL \"/bin/sh\"") + (string-append "SHELL \"" sh "\""))) + (substitute* "erts/emulator/sys/unix/erl_child_setup.c" + (("SHELL \"/bin/sh\"") + (string-append "SHELL \"" sh "\""))) + (substitute* "lib/kernel/src/os.erl" + (("/bin/sh") sh))))) (add-after 'patch-source-shebangs 'patch-source-env (lambda _ (let ((escripts (append - (find-files "." "\\.escript") - (find-files "lib/stdlib/test/escript_SUITE_data/") - '("erts/lib_src/utils/make_atomics_api" - "erts/preloaded/src/add_abstract_code" - "lib/diameter/bin/diameterc" - "lib/reltool/examples/display_args" - "lib/reltool/examples/mnesia_core_dump_viewer" - "lib/snmp/src/compile/snmpc.src" - "make/verify_runtime_dependencies" - "make/emd2exml.in")))) + (find-files "." "\\.escript") + (find-files "lib/stdlib/test/escript_SUITE_data/") + '("erts/lib_src/utils/make_atomics_api" + "erts/preloaded/src/add_abstract_code" + "lib/diameter/bin/diameterc" + "lib/reltool/examples/display_args" + "lib/reltool/examples/mnesia_core_dump_viewer" + "lib/snmp/src/compile/snmpc.src" + "make/verify_runtime_dependencies" + "make/emd2exml.in")))) (substitute* escripts - (("/usr/bin/env") (which "env"))) - #t))) + (("/usr/bin/env") (which "env")))))) (add-before 'configure 'set-erl-top (lambda _ - (setenv "ERL_TOP" (getcwd)) - #t)) + (setenv "ERL_TOP" (getcwd)))) (add-after 'install 'patch-erl ;; This only works after install. (lambda* (#:key outputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out"))) + (let ((out (assoc-ref outputs "out"))) (substitute* (string-append out "/bin/erl") - (("sed") (which "sed"))) - #t))) + (("sed") (which "sed")))))) (add-after 'install 'install-doc (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) @@ -187,8 +172,7 @@ (share (string-append out "/share/"))) (mkdir-p share) (with-directory-excursion share - (invoke "tar" "xvf" manpages)) - #t)))))) + (invoke "tar" "xvf" manpages)))))))) (home-page "https://www.erlang.org/") (synopsis "The Erlang programming language") (description -- cgit v1.3 From d3865640e8414ad79fc2bfc70a004817ff1e2b61 Mon Sep 17 00:00:00 2001 From: Cees de Groot Date: Thu, 27 Jan 2022 02:45:40 +0000 Subject: gnu: elixir: Update to 1.13.2. * gnu/packages/elixir.scm (elixi): Update to 1.13.2. Signed-off-by: Nicolas Goaziou --- gnu/packages/elixir.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gnu/packages/elixir.scm b/gnu/packages/elixir.scm index 87177acce0..e0c4b47469 100644 --- a/gnu/packages/elixir.scm +++ b/gnu/packages/elixir.scm @@ -35,7 +35,7 @@ (define-public elixir (package (name "elixir") - (version "1.12.3") + (version "1.13.2") (source (origin (method git-fetch) @@ -44,7 +44,7 @@ (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "07fisdx755cgyghwy95gvdds38sh138z56biariml18jjw5mk3r6")) + (base32 "1d3mk7abn3rk536vmsfbm4smj52rljff6s40sndg0i7p6dl3kzxa")) (patches (search-patches "elixir-path-length.patch")))) (build-system gnu-build-system) (arguments @@ -69,7 +69,7 @@ (("#!/bin/sh") (string-append "#!" (which "sh")))) (substitute* "bin/elixir" - (("ERTS_BIN=") + (("^ERTS_BIN=$") (string-append "ERTS_BIN=" ;; Elixir Releases will prepend to ERTS_BIN the path of a copy of erl. @@ -78,7 +78,7 @@ ;; erl binary in Guix store. "\nif [ -z \"$ERTS_BIN\" ]; then ERTS_BIN=" (string-drop-right (which "erl") 3) - "; fi"))) + "; fi\n"))) (substitute* "bin/mix" (("#!/usr/bin/env elixir") (string-append "#!" out "/bin/elixir")))))) -- cgit v1.3 From 3da297997dad5b3525277fcecdca84f01d45b104 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 28 Jan 2022 10:10:46 +0100 Subject: gnu: elixir: Use G-expressions. * gnu/packages/elixir.scm (elixir)[arguments]: Use G-expressions. Prefer SEARCH-INPUT-FILES over WHICH. --- gnu/packages/elixir.scm | 100 ++++++++++++++++++++++++------------------------ 1 file changed, 51 insertions(+), 49 deletions(-) diff --git a/gnu/packages/elixir.scm b/gnu/packages/elixir.scm index e0c4b47469..3fb74a56a5 100644 --- a/gnu/packages/elixir.scm +++ b/gnu/packages/elixir.scm @@ -26,6 +26,7 @@ (define-module (gnu packages elixir) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix build-system gnu) + #:use-module (guix gexp) #:use-module (guix git-download) #:use-module (guix packages) #:use-module (gnu packages) @@ -48,55 +49,56 @@ (patches (search-patches "elixir-path-length.patch")))) (build-system gnu-build-system) (arguments - `(#:test-target "test" - #:parallel-tests? #f ;see - #:make-flags (list (string-append "PREFIX=" - (assoc-ref %outputs "out"))) - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'make-git-checkout-writable - (lambda _ - (for-each make-file-writable (find-files ".")))) - (add-after 'make-git-checkout-writable 'replace-paths - (lambda* (#:key inputs outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out"))) - (substitute* '("lib/elixir/lib/system.ex" - "lib/mix/lib/mix/scm/git.ex") - (("(cmd\\(['\"])git" _ prefix) - (string-append prefix (which "git")))) - (substitute* '("lib/mix/lib/mix/release.ex" - "lib/mix/lib/mix/tasks/release.init.ex") - (("#!/bin/sh") - (string-append "#!" (which "sh")))) - (substitute* "bin/elixir" - (("^ERTS_BIN=$") - (string-append - "ERTS_BIN=" - ;; Elixir Releases will prepend to ERTS_BIN the path of a copy of erl. - ;; We detect if a release is being generated by checking the initial ERTS_BIN - ;; value: if it's empty, we are not in release mode and can point to the actual - ;; erl binary in Guix store. - "\nif [ -z \"$ERTS_BIN\" ]; then ERTS_BIN=" - (string-drop-right (which "erl") 3) - "; fi\n"))) - (substitute* "bin/mix" - (("#!/usr/bin/env elixir") - (string-append "#!" out "/bin/elixir")))))) - (add-before 'build 'make-current - ;; The Elixir compiler checks whether or not to compile files by - ;; inspecting their timestamps. When the timestamp is equal to the - ;; epoch no compilation will be performed. Some tests fail when - ;; files are older than Jan 1, 2000. - (lambda _ - (for-each (lambda (file) - (let ((recent 1400000000)) - (utime file recent recent 0 0))) - (find-files "." ".*")))) - (add-before 'check 'set-home - (lambda* (#:key inputs #:allow-other-keys) - ;; Some tests require access to a home directory. - (setenv "HOME" "/tmp"))) - (delete 'configure)))) + (list + #:test-target "test" + #:parallel-tests? #f ;see + #:make-flags #~(list (string-append "PREFIX=" #$output)) + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'make-git-checkout-writable + (lambda _ + (for-each make-file-writable (find-files ".")))) + (add-after 'make-git-checkout-writable 'replace-paths + (lambda* (#:key inputs #:allow-other-keys) + (substitute* '("lib/elixir/lib/system.ex" + "lib/mix/lib/mix/scm/git.ex") + (("(cmd\\(['\"])git" _ prefix) + (string-append prefix + (search-input-file inputs "/bin/git")))) + (substitute* '("lib/mix/lib/mix/release.ex" + "lib/mix/lib/mix/tasks/release.init.ex") + (("#!/bin/sh") + (string-append "#!" (search-input-file inputs "sh")))) + (substitute* "bin/elixir" + (("^ERTS_BIN=$") + (string-append + "ERTS_BIN=" + ;; Elixir Releases will prepend to ERTS_BIN the path of + ;; a copy of erl. We detect if a release is being generated + ;; by checking the initial ERTS_BIN value: if it's empty, we + ;; are not in release mode and can point to the actual erl + ;; binary in Guix store. + "\nif [ -z \"$ERTS_BIN\" ]; then ERTS_BIN=" + (string-drop-right (search-input-file inputs "/bin/erl") 3) + "; fi\n"))) + (substitute* "bin/mix" + (("#!/usr/bin/env elixir") + (string-append "#!" #$output "/bin/elixir"))))) + (add-before 'build 'make-current + ;; The Elixir compiler checks whether or not to compile files by + ;; inspecting their timestamps. When the timestamp is equal to the + ;; epoch no compilation will be performed. Some tests fail when + ;; files are older than Jan 1, 2000. + (lambda _ + (for-each (lambda (file) + (let ((recent 1400000000)) + (utime file recent recent 0 0))) + (find-files "." ".*")))) + (add-before 'check 'set-home + (lambda* (#:key inputs #:allow-other-keys) + ;; Some tests require access to a home directory. + (setenv "HOME" "/tmp"))) + (delete 'configure)))) (inputs (list erlang git)) (home-page "https://elixir-lang.org/") -- cgit v1.3 From 087ad097da798b2a019b7b469699b09b116d7d74 Mon Sep 17 00:00:00 2001 From: Guix Together Date: Thu, 16 Dec 2021 01:46:49 -0500 Subject: doc: Explain the use of make clean-go when an ABI mismatch occurs. * doc/contributing.texi (Building from Git): Adds section on using make clean-go. Co-authored-by: jgart Co-authored-by: Julien Lepiller Co-authored-by: Ryan Prior Co-authored-by: Blake Shaw Signed-off-by: Nicolas Goaziou --- doc/contributing.texi | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/doc/contributing.texi b/doc/contributing.texi index 9f97788c0b..f258d79bd2 100644 --- a/doc/contributing.texi +++ b/doc/contributing.texi @@ -157,6 +157,18 @@ You are advised to run @command{make authenticate} after every changes to the repository. @end quotation +After updating the repository, @command{make} might fail with an error +similar to the following example: + +@example +error: failed to load 'gnu/packages/dunst.scm': +ice-9/eval.scm:293:34: In procedure abi-check: #>: record ABI mismatch; recompilation needed +@end example + +This means that one of the record types that Guix defines (in this +example, the @code{origin} record) has changed, and all of guix needs +to be recompiled to take that change into account. To do so, run +@command{make clean-go} followed by @command{make}. @node Running Guix Before It Is Installed @section Running Guix Before It Is Installed -- cgit v1.3 From 2f21931833274fb4760cb82203495fab5991877f Mon Sep 17 00:00:00 2001 From: Guix Together Date: Thu, 16 Dec 2021 01:46:50 -0500 Subject: doc: Mention how to remedy "source file ... newer than compiled error". * doc/contributing.texi (Running Guix Before It Is Installed): Mention how to remedy "source file ... newer than compiled" error by running `make -j`. Co-authored-by: jgart Co-authored-by: Julien Lepiller Co-authored-by: Ryan Prior Co-authored-by: Blake Shaw Signed-off-by: Nicolas Goaziou --- doc/contributing.texi | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/doc/contributing.texi b/doc/contributing.texi index f258d79bd2..196ac48879 100644 --- a/doc/contributing.texi +++ b/doc/contributing.texi @@ -243,6 +243,24 @@ local source tree; it simply updates the @file{~/.config/guix/current} symlink (@pxref{Invoking guix pull}). Run @command{git pull} instead if you want to upgrade your local source tree. +Sometimes, especially if you have recently updated your repository, +running @command{./pre-inst-env} will print a message similar to the +following example: + +@example +;;; note: source file /home/user/projects/guix/guix/progress.scm +;;; newer than compiled /home/user/projects/guix/guix/progress.go +@end example + +This is only a note and you can safely ignore it. You can get rid of +the message by running @command{make -j4}. Until you do, Guile will run +slightly slower because it will interpret the code instead of using +prepared Guile object (@file{.go}) files. + +You can run @command{make} automatically as you work using +@command{watchexec} from the @code{watchexec} package. For example, +to build again each time you update a package file, you can run +@samp{watchexec -w gnu/packages make -j4}. @node The Perfect Setup @section The Perfect Setup -- cgit v1.3 From cd355a8dafb0ccb748ab48604ac3890ba1931e1e Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 28 Jan 2022 10:28:59 +0100 Subject: gnu: Add go-github-com-vmihailenco-tagparser. * gnu/packages/golang.scm (go-github-com-vmihailenco-tagparser): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/golang.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index e808d8ebf6..2990db5ea2 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -8756,6 +8756,28 @@ non-cryptographic hash algorithm, working at speeds close to RAM limits.") "Provides a platform-independent way to get atime, mtime, ctime and btime for files.") (license license:expat))) +(define-public go-github-com-vmihailenco-tagparser + (package + (name "go-github-com-vmihailenco-tagparser") + (version "2.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vmihailenco/tagparser") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13arliaz3b4bja9jj7cr5ax4zvxaxm484fwrn0q6d6jjm1l35m1k")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/vmihailenco/tagparser")) + (home-page "https://github.com/vmihailenco/tagparser") + (synopsis "Tag parser for Golang") + (description "This package is a simple Golang implementation of tag +parser.") + (license license:bsd-2))) + (define-public go-github-com-vividcortex-ewma (package (name "go-github-com-vividcortex-ewma") -- cgit v1.3 From 433f04136b443cb935a0911fa7560fa87f029e64 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 28 Jan 2022 10:31:50 +0100 Subject: gnu: Add go-github-com-apparentlymart-go-textseg-v13. * gnu/packages/golang.scm (go-github-com-apparentlymart-go-textseg-v13, go-github-com-apparentlymart-go-textseg-autoversion): New variables. Signed-off-by: Nicolas Goaziou --- gnu/packages/golang.scm | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 2990db5ea2..4ff4d8c3ff 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -899,6 +899,43 @@ network traffic so that it is not identified and subsequently blocked by network filtering devices.") (license license:bsd-2)))) +(define-public go-github-com-apparentlymart-go-textseg-v13 + (package + (name "go-github-com-apparentlymart-go-textseg-v13") + (version "13.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apparentlymart/go-textseg") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gdgi0d52rq1xsdn9icc8lghn0f2q927cifmrlfxflf7bf21vism")))) + (build-system go-build-system) + (arguments + '(#:unpack-path "github.com/apparentlymart/go-textseg/v13" + #:import-path "github.com/apparentlymart/go-textseg/v13/textseg")) + (native-inputs + (list ruby)) + (home-page "https://github.com/apparentlymart/go-textseg") + (synopsis "Go implementation of Unicode Text Segmentation") + (description + "This package provides an implementation of the Unicode Text Segmentation +specification for Go. Specifically, it currently includes only the grapheme +cluster segmentation algorithm.") + ;; Project is released under Expat terms. Some parts use Unicode and + ;; ASL2.0 licenses. + (license (list license:expat license:unicode license:asl2.0)))) + +(define-public go-github-com-apparentlymart-go-textseg-autoversion + (package + (inherit go-github-com-apparentlymart-go-textseg-v13) + (name "go-github-com-apparentlymart-go-textseg-autoversion") + (arguments + '(#:unpack-path "github.com/apparentlymart/go-textseg/autoversion" + #:import-path "github.com/apparentlymart/go-textseg/autoversion/textseg")))) + (define-public go-github-com-operatorfoundation-shapeshifter-transports (package (name "go-github-com-operatorfoundation-shapeshifter-transports") -- cgit v1.3 From 52850033d37ea2153210974acbb969b616d3ba20 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 28 Jan 2022 10:33:16 +0100 Subject: gnu: Add go-github-com-agext-levenshtein. * gnu/packages/golang.scm (go-github-com-agext-levenshtein): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/golang.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 4ff4d8c3ff..560a1a6938 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -899,6 +899,29 @@ network traffic so that it is not identified and subsequently blocked by network filtering devices.") (license license:bsd-2)))) +(define-public go-github-com-agext-levenshtein + (package + (name "go-github-com-agext-levenshtein") + (version "1.2.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/agext/levenshtein") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0a26c8pp9h5w66bhd9vb6lpvmhp30mz46pnh3a8vrjx50givb2lw")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/agext/levenshtein")) + (home-page "https://github.com/agext/levenshtein") + (synopsis "Calculating the Levenshtein distance between two strings in Go") + (description + "Package levenshtein implements distance and similarity metrics for +strings, based on the Levenshtein measure.") + (license license:asl2.0))) + (define-public go-github-com-apparentlymart-go-textseg-v13 (package (name "go-github-com-apparentlymart-go-textseg-v13") -- cgit v1.3 From a222ae9146404e6d04276682a0a5ad4fe4bc6743 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 28 Jan 2022 10:34:34 +0100 Subject: gnu: Add go-github-com-zclconf-go-cty. * gnu/packages/golang.scm (go-github-com-zclconf-go-cty): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/golang.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 560a1a6938..b58c84787d 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -7851,6 +7851,38 @@ bindings for the D-Bus message bus system.") deleting secrets from the system keyring.") (license license:expat))) +(define-public go-github-com-zclconf-go-cty + (package + (name "go-github-com-zclconf-go-cty") + (version "1.10.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/zclconf/go-cty") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0f9a6vy45gcx5pg5bnfs63manaqw80h7xzvmj3b80af38304zr71")))) + (build-system go-build-system) + (arguments + '(#:unpack-path "github.com/zclconf/go-cty" + #:import-path "github.com/zclconf/go-cty/cty")) + (native-inputs + (list go-github-com-google-go-cmp-cmp)) + (propagated-inputs + (list go-golang-org-x-text + go-github-com-vmihailenco-msgpack-v4 + go-github-com-apparentlymart-go-textseg-v13)) + (home-page "https://github.com/zclconf/go-cty") + (synopsis "Type system for dynamic values in Go applications") + (description + "@code{cty} (pronounced \"see-tie\") is a dynamic type system for +applications written in Go that need to represent user-supplied values without +losing type information. The primary intended use is for implementing +configuration languages, but other uses may be possible too.") + (license license:expat))) + (define-public go-etcd-io-bbolt (package (name "go-etcd-io-bbolt") -- cgit v1.3 From 63b194080d3038bdfc54d66355bdd59e86197214 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 28 Jan 2022 10:36:01 +0100 Subject: gnu: Add go-github-com-hashicorp-hcl-v2. * gnu/packages/golang.scm (go-github-com-hashicorp-hcl-v2): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/golang.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index b58c84787d..62e5127239 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -2456,6 +2456,37 @@ expressing configuration which is easy for both humans and machines to read.") (home-page "https://github.com/hashicorp/hcl") (license license:mpl2.0))) +(define-public go-github-com-hashicorp-hcl-v2 + (package + (name "go-github-com-hashicorp-hcl-v2") + (version "2.11.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/hcl") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0f9flmmkj7fr1337fc56cqy73faq87ix375hnz3id4wc023przv1")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/hashicorp/hcl/v2")) + (native-inputs + (list go-github-com-davecgh-go-spew)) + (inputs + (list go-github-com-agext-levenshtein go-github-com-mitchellh-go-wordwrap + go-github-com-zclconf-go-cty + go-github-com-apparentlymart-go-textseg-v13)) + (synopsis "Go implementation of HashiCorp Configuration Language V2") + (description + "This package contains the main implementation of the @acronym{HCL, +HashiCorp Configuration Language}. HCL is designed to be a language for +expressing configuration which is easy for both humans and machines to read.") + (home-page "https://github.com/hashicorp/hcl") + (license license:mpl2.0))) + (define-public go-golang-org-x-tools (let ((commit "8b927904ee0dec805c89aaf9172f4459296ed6e8") (revision "0")) -- cgit v1.3 From 4db80f3f0cc32d4f6a487cb51a3ac393694affe3 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 28 Jan 2022 10:37:09 +0100 Subject: gnu: Add go-github-com-vmihailenco-msgpack-v4. * gnu/packages/golang.scm (go-github-com-vmihailenco-msgpack-v4): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/golang.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 62e5127239..a919d37590 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -8879,6 +8879,33 @@ non-cryptographic hash algorithm, working at speeds close to RAM limits.") "Provides a platform-independent way to get atime, mtime, ctime and btime for files.") (license license:expat))) +(define-public go-github-com-vmihailenco-msgpack-v4 + (package + (name "go-github-com-vmihailenco-msgpack-v4") + (version "4.3.12") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vmihailenco/msgpack") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0aiavk7b5fn050bbc0naldk2bsl60f8wil5i6a1cfp3lxxnvmvng")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/vmihailenco/msgpack/v4")) + (native-inputs + (list go-gopkg-in-check-v1)) + (propagated-inputs + (list go-github-com-vmihailenco-tagparser)) + (home-page "https://github.com/vmihailenco/msgpack") + (synopsis "MessagePack encoding for Golang") + (description + "This package provides implementation of MessagePack encoding for Go +programming language.") + (license license:bsd-2))) + (define-public go-github-com-vmihailenco-tagparser (package (name "go-github-com-vmihailenco-tagparser") -- cgit v1.3 From 7c1efe829095230dedfe2b823e03d00c779f25ad Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 28 Jan 2022 10:38:48 +0100 Subject: gnu: Add missing module import. Add missing module import. Signed-off-by: Nicolas Goaziou --- gnu/packages/golang.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index a919d37590..17f45fac0f 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -74,6 +74,7 @@ #:use-module (gnu packages perl) #:use-module (gnu packages pkg-config) #:use-module (gnu packages pulseaudio) + #:use-module (gnu packages ruby) #:use-module (gnu packages syncthing) #:use-module (gnu packages terminals) #:use-module (gnu packages textutils) -- cgit v1.3 From 72274434a8419d80d036b9e91af50a291cda644c Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 28 Jan 2022 10:44:46 +0100 Subject: gnu: Add go-github-com-andybalholm-brotli. * gnu/packages/golang.scm (go-github-com-andybalholm-brotli): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/golang.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 17f45fac0f..23e36af998 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -3297,6 +3297,32 @@ values for the purpose of fuzz testing.") incoming requests with their respective handler.") (license license:bsd-3))) +(define-public go-github-com-andybalholm-brotli + (package + (name "go-github-com-andybalholm-brotli") + (version "1.0.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/andybalholm/brotli") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zvmj7gbnkq9xwv1bvcxk9acxl06y902148qwbd2kqwgs52wy2c0")))) + (build-system go-build-system) + (arguments + `(#:import-path "github.com/andybalholm/brotli")) + (home-page "https://github.com/andybalholm/brotli") + (synopsis "Pure Go Brotli encoder and decoder") + (description + "This package is a brotli compressor and decompressor implemented in Go. +It was translated from the reference implementation +(@url{https://github.com/google/brotli,https://github.com/google/brotli}) with +the @code{c2go} tool at +@url{https://github.com/andybalholm/c2go,https://github.com/andybalholm/c2go}.") + (license license:expat))) + (define-public go-github-com-gorilla-handlers (package (name "go-github-com-gorilla-handlers") -- cgit v1.3 From 1d948dbd97e93dec92dd486efbb8075271f3fde9 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 28 Jan 2022 10:45:33 +0100 Subject: gnu: Add go-github-com-valyala-bytebufferpool. * gnu/packages/golang.scm (go-github-com-valyala-bytebufferpool): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/golang.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 23e36af998..cf6e60aace 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -8906,6 +8906,29 @@ non-cryptographic hash algorithm, working at speeds close to RAM limits.") "Provides a platform-independent way to get atime, mtime, ctime and btime for files.") (license license:expat))) +(define-public go-github-com-valyala-bytebufferpool + (package + (name "go-github-com-valyala-bytebufferpool") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/valyala/bytebufferpool") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01lqzjddq6kz9v41nkky7wbgk7f1cw036sa7ldz10d82g5klzl93")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/valyala/bytebufferpool")) + (home-page "https://github.com/valyala/bytebufferpool") + (synopsis "Anti-memory-waste byte buffer pool for Golang") + (description + "@code{bytebufferpool} implements a pool of byte buffers with +anti-fragmentation protection.") + (license license:expat))) + (define-public go-github-com-vmihailenco-msgpack-v4 (package (name "go-github-com-vmihailenco-msgpack-v4") -- cgit v1.3 From 0467ecbe0dda4aead3afdabf7a29e4143d6afa17 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 28 Jan 2022 10:46:36 +0100 Subject: gnu: Add go-github-com-valyala-tcplisten. * gnu/packages/golang.scm (go-github-com-valyala-tcplisten): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/golang.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index cf6e60aace..bf8c1445f0 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -8929,6 +8929,37 @@ non-cryptographic hash algorithm, working at speeds close to RAM limits.") anti-fragmentation protection.") (license license:expat))) +(define-public go-github-com-valyala-tcplisten + (package + (name "go-github-com-valyala-tcplisten") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/valyala/tcplisten") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fv5hxmq1jwrjn1rdjvbmjrrkb601zcdh01qhx6d8l7ss6n05zb8")))) + (build-system go-build-system) + (arguments + ;; NOTE: (Sharlatan-20211218T165504+0000): Tests failing: + ;; + ;; tcplisten_test.go:56: cannot create listener 0 using Config + ;; &tcplisten.Config{ReusePort:false, DeferAccept:false, FastOpen:false, + ;; Backlog:32}: lookup ip6-localhost on [::1]:53: read udp + ;; [::1]:33932->[::1]:53: read: connection refused + ;; + '(#:tests? #f + #:import-path "github.com/valyala/tcplisten")) + (home-page "https://github.com/valyala/tcplisten") + (synopsis "Customizable TCP net.Listener for Go") + (description + "@code{tcplisten} provides customizable TCP net.Listener with various +performance-related options.") + (license license:expat))) + (define-public go-github-com-vmihailenco-msgpack-v4 (package (name "go-github-com-vmihailenco-msgpack-v4") -- cgit v1.3 From 61f1ec9f60186c23dd609ad3bc569f06c48f3f61 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 28 Jan 2022 10:47:21 +0100 Subject: gnu: Add go-github-com-valyala-fasthttp. * gnu/packages/golang.scm (go-github-com-valyala-fasthttp): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/golang.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index bf8c1445f0..d760f9cda8 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -8929,6 +8929,37 @@ non-cryptographic hash algorithm, working at speeds close to RAM limits.") anti-fragmentation protection.") (license license:expat))) +(define-public go-github-com-valyala-fasthttp + (package + (name "go-github-com-valyala-fasthttp") + (version "1.31.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/valyala/fasthttp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ra0n2shcp11736xv37cjnsqn32gvqfm3dkf9v8j98xmch2wqxqg")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/valyala/fasthttp")) + (propagated-inputs + (list go-golang-org-x-sys + go-golang-org-x-net + go-golang-org-x-crypto + go-github-com-valyala-tcplisten + go-github-com-valyala-bytebufferpool + go-github-com-klauspost-compress + go-github-com-andybalholm-brotli)) + (home-page "https://github.com/valyala/fasthttp") + (synopsis "Provides fast HTTP server and client API") + (description + "This package provides a Go module @code{fasthttp} which may be used as +replacement for native @code{net/http} module.") + (license license:expat))) + (define-public go-github-com-valyala-tcplisten (package (name "go-github-com-valyala-tcplisten") -- cgit v1.3 From d25044f4d2cb277104678bef93cc170d7e0aac5d Mon Sep 17 00:00:00 2001 From: jgart via Guix-patches via Date: Mon, 17 Jan 2022 22:06:12 -0500 Subject: gnu: Add go-github-com-go-chi-chi-v5. * gnu/packages/golang.scm (go-github-com-go-chi-chi-v5): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/golang.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index d760f9cda8..4471fea19d 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -9625,3 +9625,26 @@ Features: @item TCP tunneling (e.g. benchmark with iperf3) @end itemize") (license license:asl2.0))) + +(define-public go-github-com-go-chi-chi-v5 + (package + (name "go-github-com-go-chi-chi-v5") + (version "5.0.7") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-chi/chi") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0rzrsxz4xj0973c6nxklvq2vmg2m795snhk25836i0gnd1jnx79k")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/go-chi/chi/v5")) + (home-page "https://github.com/go-chi/chi") + (synopsis "Composable router for HTTP services written in Go") + (description + "@code{go-github-com-go-chi-chi-v5} is an HTTP router that lets the user +decompose request handling into many smaller layers.") + (license license:expat))) -- cgit v1.3 From 04a84e2a8d822280a4910eabfe11430344e910fd Mon Sep 17 00:00:00 2001 From: Michael Ford Date: Fri, 28 Jan 2022 11:18:09 +0100 Subject: gnu: nsis: Fix home-page. * gnu/packages/installers.scm (make-nsis): Fix generated home-page. Signed-off-by: Nicolas Goaziou --- gnu/packages/installers.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/installers.scm b/gnu/packages/installers.scm index 6ba9bf0827..3b5135d14c 100644 --- a/gnu/packages/installers.scm +++ b/gnu/packages/installers.scm @@ -127,7 +127,7 @@ ;; it ourselves (substitute* "Source/build.cpp" (("m_target_type=TARGET_X86ANSI") (string-append "m_target_type=" ,nsis-target-type)))))))) - (home-page "http://nsis.sourceforge.net/") + (home-page "https://nsis.sourceforge.io/Main_Page") (synopsis "Professional open source system to create Windows installers") (description "NSIS (Nullsoft Scriptable Install System) is a professional open source -- cgit v1.3 From de522080300b6d0f926f476e6cbb3cbd98c36ef8 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 28 Jan 2022 11:19:33 +0100 Subject: gnu: nsis: Clean-up description and synopsis. * gnu/packages/installers.scm (make-nsis): Remove some buzzwords from generated synopsis and description. Also add two spaces between sentences. --- gnu/packages/installers.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gnu/packages/installers.scm b/gnu/packages/installers.scm index 3b5135d14c..01ad03e6af 100644 --- a/gnu/packages/installers.scm +++ b/gnu/packages/installers.scm @@ -128,11 +128,11 @@ (substitute* "Source/build.cpp" (("m_target_type=TARGET_X86ANSI") (string-append "m_target_type=" ,nsis-target-type)))))))) (home-page "https://nsis.sourceforge.io/Main_Page") - (synopsis "Professional open source system to create Windows installers") + (synopsis "System to create Windows installers") (description - "NSIS (Nullsoft Scriptable Install System) is a professional open source -system to create Windows installers. It is designed to be as small and flexible -as possible and is therefore very suitable for internet distribution.") + "NSIS (Nullsoft Scriptable Install System) is a system to create +Windows installers. It is designed to be as small and flexible as possible +and is therefore very suitable for internet distribution.") (license (license:non-copyleft "file://COPYING" "See COPYING in the distribution."))))) -- cgit v1.3 From d024a21fbe5572474e2655ce945c69a9b587cbfc Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 28 Jan 2022 12:16:44 +0100 Subject: gnu: Add texlive-babel-french. * gnu/packages/tex.scm (texlive-babel-french): New variable. (texlive-generic-babel-french): Deprecate variable. --- gnu/packages/tex.scm | 48 +++++++++++++++++++++++++++++------------------- 1 file changed, 29 insertions(+), 19 deletions(-) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 89f60f89d5..a7a0a8b3ab 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4049,25 +4049,35 @@ for British English and Australian text, and default (\"american\") patterns for Canadian and USA text.") (license license:lppl1.3+))) -(define-public texlive-generic-babel-french - (package - (name "texlive-generic-babel-french") - (version (number->string %texlive-revision)) - (source - (origin - (method svn-fetch) - (uri (texlive-ref "generic" "babel-french")) - (file-name (string-append name "-" version "-checkout")) - (sha256 - (base32 "0ww8bkbccacdyp2y3p2m1y49zxx5pyh7dyyyyfmlzfm6w9rz0g1g")))) - (build-system texlive-build-system) - (arguments '(#:tex-directory "generic/babel-french")) - (home-page "https://www.ctan.org/pkg/babel-french") - (synopsis "Babel support for French") - (description - "This package provides support for the French language for the -babel multilingual system.") - (license license:lppl1.3+))) +(define-public texlive-babel-french + (let ((template + (simple-texlive-package + "texlive-babel-french" + (list "doc/generic/babel-french/" + "source/generic/babel-french/" + "tex/generic/babel-french/") + (base32 "0cgn4dq5wnlfh9wddjzxsf7p56pk29lyndg56zg6558y7xf67cw8")))) + (package + (inherit template) + (arguments + (substitute-keyword-arguments (package-arguments template) + ((#:tex-directory _ '()) + "generic/babel-french") + ((#:build-targets _ '()) + ''("frenchb.ins")) ; TODO: use dtx and build documentation + ((#:phases phases) + `(modify-phases ,phases + (add-after 'unpack 'chdir + (lambda _ (chdir "source/generic/babel-french"))))))) + (home-page "https://ctan.org/macros/latex/contrib/babel-contrib/french") + (synopsis "Babel contributed support for French") + (description + "The package, formerly known as frenchb, establishes French conventions +in a document (or a subset of the conventions, if French is not the main +language of the document).") + (license license:lppl1.3+)))) + +(define-deprecated-package texlive-generic-babel-french texlive-babel-french) (define-public texlive-generic-babel-german (package -- cgit v1.3 From decd4c36798f0c89a5927c33b395e3a73f26ab52 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 28 Jan 2022 13:10:04 +0100 Subject: gnu: texlive-babel-french: Add missing files. * gnu/packages/tex.scm (texlive-babel-french)[outputs]: Add "doc" output. [arguments]<#:phases>: Install documentation and source files. --- gnu/packages/tex.scm | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index a7a0a8b3ab..63aeefc6cd 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4059,16 +4059,27 @@ for Canadian and USA text.") (base32 "0cgn4dq5wnlfh9wddjzxsf7p56pk29lyndg56zg6558y7xf67cw8")))) (package (inherit template) + (outputs '("out" "doc")) (arguments (substitute-keyword-arguments (package-arguments template) ((#:tex-directory _ '()) "generic/babel-french") ((#:build-targets _ '()) - ''("frenchb.ins")) ; TODO: use dtx and build documentation + ;; TODO: use dtx and build documentation. + '(list "frenchb.ins")) ((#:phases phases) `(modify-phases ,phases (add-after 'unpack 'chdir - (lambda _ (chdir "source/generic/babel-french"))))))) + (lambda _ (chdir "source/generic/babel-french"))) + (replace 'copy-files + (lambda* (#:key inputs outputs #:allow-other-keys) + (let ((origin (assoc-ref inputs "source")) + (source (string-append (assoc-ref outputs "out") + "/share/texmf-dist/source")) + (doc (string-append (assoc-ref outputs "doc") + "/share/texmf-dist/doc"))) + (copy-recursively (string-append origin "/source") source) + (copy-recursively (string-append origin "/doc") doc)))))))) (home-page "https://ctan.org/macros/latex/contrib/babel-contrib/french") (synopsis "Babel contributed support for French") (description -- cgit v1.3 From 1eedbae8b44c6acd6509d02a75af7b8860fd38fc Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 28 Jan 2022 13:47:27 +0100 Subject: gnu: Add texlive-numprint. * gnu/packages/tex.scm (texlive-numprint): New variable. (texlive-latex-numprint): Deprecate variable. --- gnu/packages/tex.scm | 56 +++++++++++++++++++++++++++++++++++----------------- 1 file changed, 38 insertions(+), 18 deletions(-) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 63aeefc6cd..ad75d9f9ae 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -7663,23 +7663,41 @@ It also ensures compatibility with the @code{media9} and @code{animate} packages @end itemize\n") (license license:lppl1.3c+))) -(define-public texlive-latex-numprint - (package - (name "texlive-latex-numprint") - (version (number->string %texlive-revision)) - (source - (origin - (method svn-fetch) - (uri (texlive-ref "latex" "numprint")) - (file-name (string-append name "-" version "-checkout")) - (sha256 - (base32 "00xyvdfvypfj2wj7wf2qrxpc34wwd0dkdv3bqvb86ydhlpn1jg76")))) - (build-system texlive-build-system) - (arguments '(#:tex-directory "latex/numprint")) - (home-page "https://www.ctan.org/pkg/numprint") - (synopsis "Print numbers with separators and exponent if necessary") - (description - "The package numprint prints numbers with a separator every three +(define-public texlive-numprint + (let ((template + (simple-texlive-package + "texlive-numprint" + (list "doc/latex/numprint/" + "source/latex/numprint/" + "tex/latex/numprint/") + (base32 "1rqbqj4ffcfxxxxbs100pdslaiimwzgg19mf2qzcmm5snxwrf7zj")))) + (package + (inherit template) + (outputs '("out" "doc")) + (arguments + (substitute-keyword-arguments (package-arguments template) + ((#:tex-directory _ '()) + "latex/numprint") + ((#:build-targets _ '()) + '(list "numprint.ins")) + ((#:phases phases) + `(modify-phases ,phases + (add-after 'unpack 'chdir + (lambda _ + (chdir "source/latex/numprint"))) + (replace 'copy-files + (lambda* (#:key inputs outputs #:allow-other-keys) + (let ((origin (assoc-ref inputs "source")) + (source (string-append (assoc-ref outputs "out") + "/share/texmf-dist/source")) + (doc (string-append (assoc-ref outputs "doc") + "/share/texmf-dist/doc"))) + (copy-recursively (string-append origin "/source") source) + (copy-recursively (string-append origin "/doc") doc)))))))) + (home-page "https://www.ctan.org/pkg/numprint") + (synopsis "Print numbers with separators and exponent if necessary") + (description + "The package numprint prints numbers with a separator every three digits and converts numbers given as 12345.6e789 to 12\\,345,6\\cdot 10^{789}. Numbers are printed in the current mode (text or math) in order to use the correct font. @@ -7696,7 +7714,9 @@ Tabular alignment using the tabular, array, tabularx, and longtable environments (similar to the dcolumn and rccol packages) is supported using all features of numprint. Additional text can be added before and after the formatted number.") - (license license:lppl))) + (license license:lppl)))) + +(define-deprecated-package texlive-latex-numprint texlive-numprint) (define-public texlive-latex-needspace (package -- cgit v1.3 From ff37d7564bbd8859264d30fda09b546efb752363 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 28 Jan 2022 13:51:32 +0100 Subject: gnu: Add texlive-enumitem. * gnu/packages/tex.scm (texlive-enumitem): New variable. (texlive-latex-enumitem): Deprecate package. --- gnu/packages/tex.scm | 32 +++++++------------------------- 1 file changed, 7 insertions(+), 25 deletions(-) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index ad75d9f9ae..7da1f2277a 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -6109,32 +6109,14 @@ splines, and filled circles and ellipses. The package uses @code{tpic} @code{\\special} commands.") (license license:public-domain))) -(define-public texlive-latex-enumitem +(define-public texlive-enumitem (package - (name "texlive-latex-enumitem") - (version (number->string %texlive-revision)) - (source (origin - (method svn-fetch) - (uri (svn-reference - (url (string-append "svn://www.tug.org/texlive/tags/" - %texlive-tag "/Master/texmf-dist/" - "/tex/latex/enumitem")) - (revision %texlive-revision))) - (file-name (string-append name "-" version "-checkout")) - (sha256 - (base32 - "1j8svflnx9w897mdavyf1f0n256wh4bbclrhv5vx7b501gmlbp7d")))) - (build-system trivial-build-system) - (arguments - `(#:modules ((guix build utils)) - #:builder - (begin - (use-modules (guix build utils)) - (let ((target (string-append (assoc-ref %outputs "out") - "/share/texmf-dist/tex/latex/enumitem"))) - (mkdir-p target) - (copy-recursively (assoc-ref %build-inputs "source") target) - #t)))) + (inherit + (simple-texlive-package + "texlive-enumitem" + (list "doc/latex/enumitem/" "tex/latex/enumitem/") + (base32 "0qwbyjb4a82qjxrfmz06v3w5vly75id4ix4sw7lz2az68kz080dv") + #:trivial? #t)) (home-page "https://www.ctan.org/pkg/enumitem") (synopsis "Customize basic list environments") (description -- cgit v1.3 From 32e3e924cf1b2882b457ed2e67380060696b7603 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 28 Jan 2022 13:58:04 +0100 Subject: gnu: Add texlive-capt-of. * gnu/packages/tex.scm (texlive-capt-of): New variable. (texlive-latex-capt-of): Deprecate variabe. --- gnu/packages/tex.scm | 69 +++++++++++++++++++++++++++++----------------------- 1 file changed, 38 insertions(+), 31 deletions(-) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 7da1f2277a..aadcb20296 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -5015,38 +5015,45 @@ both); or to remove surrounding spaces within a macro definition, or to define space-stripped macros.") (license license:lppl))) -(define-public texlive-latex-capt-of - (package - (name "texlive-latex-capt-of") - (version (number->string %texlive-revision)) - (source (origin - (method svn-fetch) - (uri (svn-reference - (url (string-append "svn://www.tug.org/texlive/tags/" - %texlive-tag "/Master/texmf-dist/" - "/tex/latex/capt-of")) - (revision %texlive-revision))) - (file-name (string-append name "-" version "-checkout")) - (sha256 - (base32 - "1y2s50f6lz0jx2748lj3iy56hrpcczgnbzmvphxv7aqndyyamd4x")))) - (build-system trivial-build-system) - (arguments - `(#:modules ((guix build utils)) - #:builder - (begin - (use-modules (guix build utils)) - (let ((target (string-append (assoc-ref %outputs "out") - "/share/texmf-dist/tex/latex/capt-of"))) - (mkdir-p target) - (copy-recursively (assoc-ref %build-inputs "source") target) - #t)))) - (home-page "https://www.ctan.org/pkg/capt-of") - (synopsis "Captions on more than floats") - (description - "This package defines a command @code{\\captionof} for putting a caption +(define-public texlive-capt-of + (let ((template + (simple-texlive-package + "texlive-capt-of" + (list "doc/latex/capt-of/" + "source/latex/capt-of/" + "tex/latex/capt-of/") + (base32 "0bf0cdd9ca3kkqxqqkq6jalh5ybs60l80l5gfkl2whk2v4bnzfvz")))) + (package + (inherit template) + (outputs '("out" "doc")) + (arguments + (substitute-keyword-arguments (package-arguments template) + ((#:tex-directory _ '()) + "latex/capt-of") + ((#:build-targets _ '()) + '(list "capt-of.ins")) + ((#:phases phases) + `(modify-phases ,phases + (add-after 'unpack 'chdir + (lambda _ + (chdir "source/latex/capt-of"))) + (replace 'copy-files + (lambda* (#:key inputs outputs #:allow-other-keys) + (let ((origin (assoc-ref inputs "source")) + (source (string-append (assoc-ref outputs "out") + "/share/texmf-dist/source")) + (doc (string-append (assoc-ref outputs "doc") + "/share/texmf-dist/doc"))) + (copy-recursively (string-append origin "/source") source) + (copy-recursively (string-append origin "/doc") doc)))))))) + (home-page "https://www.ctan.org/pkg/capt-of") + (synopsis "Captions on more than floats") + (description + "This package defines a command @code{\\captionof} for putting a caption to something that's not a float.") - (license license:lppl))) + (license license:lppl)))) + +(define-deprecated-package texlive-latex-capt-of texlive-capt-of) (define-public texlive-doi (package -- cgit v1.3 From 78859540f60307383f4e30a43dc8d021092b11a2 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 28 Jan 2022 14:06:16 +0100 Subject: gnu: Add texlive-kpfonts. * gnu/packages/tex.scm (texlive-kpfonts): New variable. --- gnu/packages/tex.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index aadcb20296..f2509c1d34 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -2816,6 +2816,35 @@ feature required for movable installations, layered on top of a general search mechanism. This package provides supporting files.") (license license:lgpl3+)))) +(define-public texlive-kpfonts + (package + (inherit (simple-texlive-package + "texlive-kpfonts" + (list "doc/fonts/kpfonts/" + "fonts/enc/dvips/kpfonts/" + "fonts/map/dvips/kpfonts/" + "fonts/tfm/public/kpfonts/" + "fonts/type1/public/kpfonts/" + "fonts/vf/public/kpfonts/" + "source/fonts/kpfonts/" + "tex/latex/kpfonts/") + (base32 "0inai1p9bbjd5x790nsamakjaj0imvwv21mp9f98dwvdlj58vkqb") + #:trivial? #t)) + (home-page "https://ctan.org/fonts/kpfonts") + (synopsis "Complete set of fonts for text and mathematics") + (description + "The family contains text fonts in roman, sans-serif and monospaced +shapes, with true small caps and old-style numbers; the package offers full +support of the textcomp package. The mathematics fonts include all the AMS +fonts, in both normal and bold weights. Each of the font types is available +in two main versions: default and light. Each version is available in four +variants: default; oldstyle numbers; oldstyle numbers with old ligatures such +as ct and st, and long-tailed capital Q; and veryoldstyle with long s. Other +variants include small caps as default or large small caps, and for +mathematics both upright and slanted shapes for Greek letters, as well as +default and narrow versions of multiple integrals.") + (license license:gpl3+))) + (define-public texlive-latexconfig (package (inherit (simple-texlive-package -- cgit v1.3 From 390f9604110b2f478db73eb5ce8dd3770cb59ea5 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 28 Jan 2022 14:26:28 +0100 Subject: gnu: Add texlive-ulem. * gnu/packages/tex.scm (texlive-ulem): New variable. (texlive-latex-ulem): Deprecate variable. --- gnu/packages/tex.scm | 34 ++++++++-------------------------- 1 file changed, 8 insertions(+), 26 deletions(-) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index f2509c1d34..cb43a791fc 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -7824,33 +7824,13 @@ is preferred in many parts of the world, as distinct from that which is used in @code{\\maketitle} of the article class, \"June 26, 2008\", the 'US format'.") (license license:lppl))) -(define-public texlive-generic-ulem +(define-public texlive-ulem (package - (name "texlive-generic-ulem") - (version (number->string %texlive-revision)) - (source - (origin - (method svn-fetch) - (uri (svn-reference - (url (string-append "svn://www.tug.org/texlive/tags/" - %texlive-tag "/Master/texmf-dist/" - "/tex/generic/ulem")) - (revision %texlive-revision))) - (file-name (string-append name "-" version "-checkout")) - (sha256 - (base32 - "161ka7sckiakcr1fgydxpc580sr16vp4sp3avjl2v9jn1pd2pwp0")))) - (build-system trivial-build-system) - (arguments - `(#:modules ((guix build utils)) - #:builder - (begin - (use-modules (guix build utils)) - (let ((target (string-append (assoc-ref %outputs "out") - "/share/texmf-dist/tex/generic/ulem"))) - (mkdir-p target) - (copy-recursively (assoc-ref %build-inputs "source") target) - #t)))) + (inherit (simple-texlive-package + "texlive-ulem" + (list "doc/generic/ulem/" "tex/generic/ulem/") + (base32 "0wcfnw5h6lsg2ilvkkf7mns8jgcn0n5sh45iznfsb49pfb4mming") + #:trivial? #t)) (home-page "https://www.ctan.org/pkg/ulem") (synopsis "Underline text in TeX") (description @@ -7861,6 +7841,8 @@ from a typewriter. The package also offers double and wavy underlining, and striking out (line through words) and crossing out (/// over words).") (license license:lppl1.3c+))) +(define-deprecated-package texlive-latex-ulem texlive-ulem) + (define-public texlive-latex-pgf (package (name "texlive-latex-pgf") -- cgit v1.3 From 01107fc4eaa928ddd99b834ba8ce7b7244f8c3cd Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 28 Jan 2022 14:33:56 +0100 Subject: gnu: texlive-latex-enumitem: Deprecate package. * gnu/packages/tex.scm (texlive-latex-enumitem): Deprecate in favor of texlive-enumitem. * gnu/packages/python-xyz.scm (python-matplotlib-documentation): (python-nbconvert): Apply deprecation. --- gnu/packages/python-xyz.scm | 28 ++++++++++++++-------------- gnu/packages/tex.scm | 2 ++ 2 files changed, 16 insertions(+), 14 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index c8ba314d38..51a7a64fe6 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -6543,19 +6543,19 @@ toolkits.") ("python-mock" ,python-mock) ("graphviz" ,graphviz) ("texlive" ,(texlive-updmap.cfg (list texlive-amsfonts - texlive-latex-amsmath - texlive-latex-enumitem - texlive-latex-expdlist - texlive-latex-geometry - texlive-latex-preview - texlive-latex-type1cm - texlive-latex-ucs - - texlive-pdftex - - texlive-fonts-ec - texlive-times - texlive-txfonts))) + texlive-enumitem + texlive-latex-amsmath + texlive-latex-expdlist + texlive-latex-geometry + texlive-latex-preview + texlive-latex-type1cm + texlive-latex-ucs + + texlive-pdftex + + texlive-fonts-ec + texlive-times + texlive-txfonts))) ("texinfo" ,texinfo) ,@(package-native-inputs python-matplotlib))) (arguments @@ -12611,13 +12611,13 @@ time.") texlive-amsfonts texlive-booktabs texlive-caption + texlive-enumitem texlive-eurosym texlive-fonts-rsfs texlive-generic-ulem texlive-generic-iftex texlive-jknappen texlive-latex-amsmath - texlive-latex-enumitem texlive-latex-fancyvrb texlive-latex-float texlive-fontspec diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index cb43a791fc..a6f693a0a5 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -6163,6 +6163,8 @@ in the form @code{key=value} are available, for example: @code{\\begin{itemize}[itemsep=1ex,leftmargin=1cm]}.") (license license:lppl1.3+))) +(define-deprecated-package texlive-latex-enumitem texlive-enumitem) + (define-public texlive-latex-multirow (package (name "texlive-latex-multirow") -- cgit v1.3 From 2b37ec1c608f935e183b532e92b973cbb0e8fb1b Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 28 Jan 2022 14:37:49 +0100 Subject: gnu: Remove occurrences of deprecated texlive-latex-capt-of. * gnu/packages/maths.scm (hypre): * gnu/packages/python-xyz.scm (python-numpy-documentation): (python-ipython-documentation): Use texlive-capt-of instead of texlive-latex-capt-of. --- gnu/packages/maths.scm | 4 ++-- gnu/packages/python-xyz.scm | 7 ++++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 9a0f913c5a..1895acd368 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -30,7 +30,7 @@ ;;; Copyright © 2018 Eric Brown ;;; Copyright © 2018, 2021 Julien Lepiller ;;; Copyright © 2018 Amin Bandali -;;; Copyright © 2019, 2021 Nicolas Goaziou +;;; Copyright © 2019, 2021, 2022 Nicolas Goaziou ;;; Copyright © 2019 Steve Sprang ;;; Copyright © 2019 Robert Smith ;;; Copyright © 2020 Jakub Kądziołka @@ -5540,6 +5540,7 @@ set.") ("texlive" ,(texlive-updmap.cfg (list texlive-adjustbox texlive-amsfonts texlive-bibtex + texlive-capt-of texlive-caption texlive-cm texlive-etoolbox @@ -5551,7 +5552,6 @@ set.") texlive-xypic texlive-generic-listofitems texlive-generic-ulem - texlive-latex-capt-of texlive-latex-cmap texlive-latex-colortbl texlive-latex-etoc diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 51a7a64fe6..24e7fef494 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -5829,12 +5829,13 @@ readable format.") ("pkg-config" ,pkg-config) ("python-sphinx" ,python-sphinx) ("python-numpydoc" ,python-numpydoc) - ("texlive" ,(texlive-updmap.cfg (list texlive-cm-super + ("texlive" ,(texlive-updmap.cfg (list + texlive-capt-of + texlive-cm-super texlive-fonts-ec texlive-generic-iftex texlive-pdftex texlive-amsfonts - texlive-latex-capt-of texlive-latex-cmap texlive-latex-environ texlive-latex-eqparbox @@ -8916,10 +8917,10 @@ computing.") ("python-sphinx-rtd-theme" ,python-sphinx-rtd-theme) ;; FIXME: It's possible that a smaller union would work just as well. ("texlive" ,(texlive-updmap.cfg (list texlive-amsfonts + texlive-capt-of texlive-fonts-ec texlive-generic-iftex texlive-pdftex - texlive-latex-capt-of texlive-latex-cmap texlive-latex-environ texlive-latex-eqparbox -- cgit v1.3 From c5f1f8b81e66b6a63c6bcc173e34e96d9cda9270 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 28 Jan 2022 15:05:01 +0100 Subject: gnu: Properly deprecate texlive-generic-ulem. * gnu/packages/python-xyz.scm (python-nbconvert): * gnu/packages/maths.scm (hypre): Apply deprecation. * gnu/packages/tex.scm (texlive-generic-ulem): Fix typo in deprecation command. --- gnu/packages/maths.scm | 2 +- gnu/packages/python-xyz.scm | 2 +- gnu/packages/tex.scm | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 1895acd368..9f7c0476ca 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -5551,7 +5551,6 @@ set.") texlive-xcolor texlive-xypic texlive-generic-listofitems - texlive-generic-ulem texlive-latex-cmap texlive-latex-colortbl texlive-latex-etoc @@ -5574,6 +5573,7 @@ set.") texlive-latex-tocloft texlive-latex-upquote texlive-latex-varwidth + texlive-ulem texlive-wasysym texlive-latex-wrapfig))))) (inputs diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 24e7fef494..a8aff94334 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -12615,7 +12615,6 @@ time.") texlive-enumitem texlive-eurosym texlive-fonts-rsfs - texlive-generic-ulem texlive-generic-iftex texlive-jknappen texlive-latex-amsmath @@ -12638,6 +12637,7 @@ time.") texlive-tcolorbox texlive-titling texlive-tools + texlive-ulem texlive-xcolor texlive-zapfding))))) (propagated-inputs diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index a6f693a0a5..4fc25ed656 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -7843,7 +7843,7 @@ from a typewriter. The package also offers double and wavy underlining, and striking out (line through words) and crossing out (/// over words).") (license license:lppl1.3c+))) -(define-deprecated-package texlive-latex-ulem texlive-ulem) +(define-deprecated-package texlive-generic-ulem texlive-ulem) (define-public texlive-latex-pgf (package -- cgit v1.3 From 38313dd24c0284f1815f74205438f7c4c4f2b728 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 28 Jan 2022 15:07:12 +0100 Subject: gnu: Remove last texlive-generic-ulem reference. * gnu/packages/tex.scm (texlive-jadetex)[native-inputs]: Remove last reference to texlive-generic-ulem. Replace it with texlive-ulem. --- gnu/packages/tex.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 4fc25ed656..950554069a 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -6599,14 +6599,14 @@ Simple Young tableaux. ;; The t1cmr.fd file of texlive-latex-base refers to the ecrm font, ;; provided by the jknappen package collection. texlive-jknappen - texlive-generic-ulem texlive-hyperref texlive-latex-colortbl texlive-latex-fancyhdr texlive-latex-graphics ;for color.sty texlive-latex-tools ;for array.sty texlive-marvosym - texlive-tex-ini-files)) ;for pdftexconfig + texlive-tex-ini-files ;for pdftexconfig + texlive-ulem)) (home-page "https://www.ctan.org/pkg/jadetex/") (synopsis "TeX macros to produce TeX output using OpenJade") (description "JadeTeX is a companion package to the OpenJade DSSSL -- cgit v1.3 From a057d2acbf8d78afe474669fea29adef6aa949cc Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 28 Jan 2022 15:27:03 +0100 Subject: gnu: Add texlive-calrsfs. * gnu/packages/tex.scm (texlive-calrsfs): New variable. --- gnu/packages/tex.scm | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 950554069a..f332f231b7 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -5044,6 +5044,19 @@ both); or to remove surrounding spaces within a macro definition, or to define space-stripped macros.") (license license:lppl))) +(define-public texlive-calrsfs + (package + (inherit + (simple-texlive-package + "texlive-calrsfs" + (list "doc/latex/calrsfs/" "tex/latex/calrsfs/") + (base32 "0aqa0k0zzzicx5nynd29i9pdb7a4j6fvf1xwrbm4qg64pl55i6xa") + #:trivial? #t)) + (home-page "https://ctan.org/macros/latex/contrib/calrsfs") + (synopsis "Copperplate calligraphic letters in LaTeX") + (description "This package provides a math interface to the Rsfs fonts.") + (license license:public-domain))) + (define-public texlive-capt-of (let ((template (simple-texlive-package -- cgit v1.3 From 5c1a1cecaa17f4c1e16d13891f36b4ec0b998cec Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 28 Jan 2022 16:47:55 +0100 Subject: gnu: Add texlive-varwidth. * gnu/packages/tex.scm (texlive-varwidth): New variable. --- gnu/packages/tex.scm | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index f332f231b7..d263be630d 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -6924,6 +6924,21 @@ Association for Computing Machinery (ACM).") get a narrower “natural” width.") (license license:lppl))) +(define-public texlive-varwidth + (package + (inherit (simple-texlive-package + "texlive-varwidth" + (list "doc/latex/varwidth/" "tex/latex/varwidth/") + (base32 "0jcrv4klcjpl17ml0zyqfvkrq6qwn2imxv8syqs5m6qk0fk7hg6l") + #:trivial? #t)) + (home-page "https://ctan.org/macros/latex/contrib/varwidth") + (synopsis "Variable-width minipage LaTeX environment") + (description + "The varwidth environment is superficially similar to minipage, but the +specified width is just a maximum value --- the box may get a narrower natural +width.") + (license license:lppl))) + (define-public texlive-wasy (package (inherit (simple-texlive-package -- cgit v1.3 From d961498fcda021c7e36a8ab6299ead0629f9c194 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 28 Jan 2022 16:48:04 +0100 Subject: gnu: Add texlive-tabu. * gnu/packages/tex.scm (texlive-tabu): New variable. --- gnu/packages/tex.scm | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index d263be630d..9122fa5105 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -8773,6 +8773,50 @@ LuaTeX (respectively) is not the engine in use.") (define-deprecated-package texlive-generic-ifxetex texlive-generic-iftex) +(define-public texlive-tabu + (let ((template + (simple-texlive-package + "texlive-tabu" + (list "doc/latex/tabu/" + "source/latex/tabu/" + "tex/latex/tabu/") + (base32 "0mixyrqavipq4ni38z42x3579cdjbz54cp2qqb4q4yhfbl0a4pka")))) + (package + (inherit template) + (outputs '("out" "doc")) + (arguments + (substitute-keyword-arguments (package-arguments template) + ((#:tex-directory _ '()) + "latex/tabu") + ((#:build-targets _ '()) + '(list "tabu.dtx")) + ((#:phases phases) + `(modify-phases ,phases + (add-after 'unpack 'chdir + (lambda _ (chdir "source/latex/tabu"))) + (replace 'copy-files + (lambda* (#:key inputs outputs #:allow-other-keys) + (let ((origin (assoc-ref inputs "source")) + (source (string-append (assoc-ref outputs "out") + "/share/texmf-dist/source")) + (doc (string-append (assoc-ref outputs "doc") + "/share/texmf-dist/doc"))) + (copy-recursively (string-append origin "/source") source) + (copy-recursively (string-append origin "/doc") doc)))))))) + (propagated-inputs (list texlive-varwidth)) + (home-page "https://ctan.org/macros/latex/contrib/tabu") + (synopsis "Flexible LaTeX tabulars") + (description + "The package provides an environment, tabu, which will make any sort of +tabular, and an environment longtabu which provides the facilities of tabu in +a modified longtable environment. The package requires array, xcolor for +coloured rules in tables, and colortbl for coloured cells. The longtabu +environment further requires that longtable be loaded. The package itself +does not load any of these packages for the user. The tabu environment may be +used in place of @code{tabular}, @code{tabular*} and @code{tabularx} +environments, as well as the @code{array} environment in maths mode.") + (license license:lppl1.3+)))) + (define-public texlive-tools (let ((template (simple-texlive-package "texlive-tools" -- cgit v1.3 From f870977e6ac5a37f1e42af7e97c78c1e28dadfc8 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 28 Jan 2022 17:31:07 +0100 Subject: gnu: Add texlive-carlisle. * gnu/packages/tex.scm (texlive-carlisle): New variable. --- gnu/packages/tex.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 9122fa5105..b203e1223f 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -5097,6 +5097,25 @@ to something that's not a float.") (define-deprecated-package texlive-latex-capt-of texlive-capt-of) +(define-public texlive-carlisle + (package + (inherit (simple-texlive-package + "texlive-carlisle" + (list "doc/latex/carlisle/" + "source/latex/carlisle/" + "tex/latex/carlisle/") + (base32 "139k4n8dv6pbal1mx4m8b239x3i9cw61f6digk9mxscbxwvxfngb") + #:trivial? #t)) + (home-page "https://ctan.org/macros/latex/contrib/carlisle") + (synopsis "David Carlisle's small packages") + (description + "Many of David Carlisle's more substantial packages stand on their own, +or as part of the LaTeX latex-tools set; this set contains: making dotless +@emph{j} characters for fonts that don't have them; a method for combining the +capabilities of longtable and tabularx; an environment for including plain TeX +in LaTeX documents; a jiffy to create slashed characters for physicists.") + (license license:lppl))) + (define-public texlive-doi (package (inherit (simple-texlive-package -- cgit v1.3 From dc7ebaf8c7f3a358789fd4d5d7c8ac2197a78e8b Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Thu, 27 Jan 2022 01:41:28 -0500 Subject: gnu: Vorta: Remove a transitive dependency on QtWebKit. See for more information about this change. * gnu/packages/backup.scm (vorta)[inputs]: Replace python-pyqt with python-pyqt-without-qtwebkit. --- gnu/packages/backup.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm index d847287d13..ca45332873 100644 --- a/gnu/packages/backup.scm +++ b/gnu/packages/backup.scm @@ -1321,7 +1321,7 @@ borgmatic is powered by borg.") python-paramiko python-peewee python-psutil - python-pyqt + python-pyqt-without-qtwebkit python-secretstorage ;; This is included so that the qt-wrap phase picks it up. qtsvg)) -- cgit v1.3 From 54add2e1ba1a5729fbf5b34854a961edfdd17334 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Thu, 27 Jan 2022 13:07:40 -0500 Subject: gnu: qutebrowser: Remove a transitive dependency on QtWebKit. This browser is explicity a Chromium / QtWebEngine browser, so it shouldn't also depend on QtWebKit. See for more information about this change. * gnu/packages/web-browsers.scm (qutebrowser)[inputs]: Replace python-pyqt with python-pyqt-without-qtwebkit. --- gnu/packages/web-browsers.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm index 5b3ef54659..8e513f01a2 100644 --- a/gnu/packages/web-browsers.scm +++ b/gnu/packages/web-browsers.scm @@ -487,7 +487,7 @@ interface.") ;; FIXME: python-pyqtwebengine needs to come before python-pyqt so ;; that it's __init__.py is used first. python-pyqtwebengine - python-pyqt + python-pyqt-without-qtwebkit ;; While qtwebengine is provided by python-pyqtwebengine, it's ;; included here so we can wrap QTWEBENGINEPROCESS_PATH. qtwebengine)) -- cgit v1.3 From e3abc53c7e8bcb93b3309aa223a3d68f8cded5f3 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Thu, 27 Jan 2022 13:11:14 -0500 Subject: gnu: python-pyqtwebengine: Remove a transitive dependency on QtWebKit. Since QtWebKit and QtWebEngine are alternative web rendering engines, it doesn't make sense for one to depend on the other. See for more information about this change. * gnu/packages/qt.scm (python-pyqtwebengine)[inputs]: Replace python-pyqt with python-pyqt-without-qtwebkit. --- gnu/packages/qt.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index 49d514503d..ca97725052 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -2173,7 +2173,7 @@ contain over 620 classes.") (inputs `(("python" ,python-wrapper) ("python-sip" ,python-sip) - ("python-pyqt" ,python-pyqt) + ("python-pyqt" ,python-pyqt-without-qtwebkit) ("qtbase" ,qtbase-5) ("qtsvg" ,qtsvg) ("qtdeclarative" ,qtdeclarative) @@ -2232,7 +2232,9 @@ set of three modules. Prior to v5.12 these bindings were part of PyQt itself.") (license license:gpl3))) -;; XXX: This is useful because qtwebkit does not build reliably at this time. +;; XXX: This is useful for removing qtwebkit from other packages' dependency +;; graphs, as well as for preventing python-pyqtwebengine from transitively +;; depending on qtwebkit. ;; Ultimately, it would be nicer to have a more modular set of python-pyqt-* ;; packages that could be used together. (define-public python-pyqt-without-qtwebkit -- cgit v1.3 From 262a1734e250f756471a066348381017b3e281d6 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Thu, 27 Jan 2022 13:18:13 -0500 Subject: gnu: python-pytest-qt: Remove a transitive dependency on QtWebKit. See for more information about this change. * gnu/packages/python-check.scm (python-pytest-qt)[propagated-inputs]: Replace python-pyqt with python-pyqt-without-qtwebkit. --- gnu/packages/python-check.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index f971dae5b4..05a378601f 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -1494,7 +1494,7 @@ libraries.") (setenv "QT_QPA_PLATFORM" "offscreen") #t))))) (propagated-inputs - (list python-pyqt)) + (list python-pyqt-without-qtwebkit)) (native-inputs (list python-pytest python-pytest-runner python-setuptools-scm)) (home-page "https://github.com/pytest-dev/pytest-qt") -- cgit v1.3 From 229759833dbde298d6ab44818f1c6bc140865a33 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Fri, 28 Jan 2022 12:34:58 -0500 Subject: gnu: Calibre: Remove a transitive dependency on QtWebKit. See for more information about this change. * gnu/packages/ebook.scm (calibre)[inputs]: Replace python-pyqt with python-pyqt-without-qtwebkit. [arguments]: Adjust the custom 'configure' phase accordingly. --- gnu/packages/ebook.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm index 207bbfcdaf..0875dae190 100644 --- a/gnu/packages/ebook.scm +++ b/gnu/packages/ebook.scm @@ -198,7 +198,7 @@ with Microsoft Compiled HTML (CHM) files") ("python-pychm" ,python-pychm) ("python-pycryptodome" ,python-pycryptodome) ("python-pygments" ,python-pygments) - ("python-pyqt" ,python-pyqt) + ("python-pyqt-without-qtwebkit" ,python-pyqt-without-qtwebkit) ("python-pyqtwebengine" ,python-pyqtwebengine) ("python-regex" ,python-regex) ("python-speechd" ,speech-dispatcher) @@ -238,7 +238,7 @@ with Microsoft Compiled HTML (CHM) files") (add-before 'build 'configure (lambda* (#:key inputs outputs #:allow-other-keys) (let ((podofo (assoc-ref inputs "podofo")) - (pyqt (assoc-ref inputs "python-pyqt")) + (pyqt (assoc-ref inputs "python-pyqt-without-qtwebkit")) (python-sip (assoc-ref inputs "python-sip")) (out (assoc-ref outputs "out"))) (substitute* "setup/build.py" -- cgit v1.3 From 88f1e799b4ad24323e4d12106b7ffa3854534b21 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Fri, 28 Jan 2022 12:37:33 -0500 Subject: gnu: anki: Remove a transitive dependency on QtWebKit. See for more information about this change. * gnu/packages/education.scm (anki)[inputs]: Replace python-pyqt with python-pyqt-without-qtwebkit. --- gnu/packages/education.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm index 1e19d83fc1..6fe79b99ca 100644 --- a/gnu/packages/education.scm +++ b/gnu/packages/education.scm @@ -869,7 +869,7 @@ stored and user can review his performance in any time.") ("python-pyaudio" ,python-pyaudio) ;; `python-pyqtwebengine' must precede `python-pyqt' in PYTHONPATH. ("python-pyqtwebengine" ,python-pyqtwebengine) - ("python-pyqt" ,python-pyqt) + ("python-pyqt" ,python-pyqt-without-qtwebkit) ("python-requests" ,python-requests) ("python-send2trash" ,python-send2trash) ("python-sip" ,python-sip) -- cgit v1.3 From 8b7db2fb98e143092c39e315bfa100a798cca0cb Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Fri, 28 Jan 2022 12:43:44 -0500 Subject: gnu: orange: Remove a transitive dependency on QtWebKit. See for more information about this change. * gnu/packages/orange.scm (orange)[inputs]: Replace python-pyqt with python-pyqt-without-qtwebkit. --- gnu/packages/orange.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/orange.scm b/gnu/packages/orange.scm index 2b6fc00abc..4d146468a3 100644 --- a/gnu/packages/orange.scm +++ b/gnu/packages/orange.scm @@ -160,7 +160,7 @@ GUI based workflow. It is primarily used in the Orange framework.") python-orange-widget-base python-pandas python-pygments - python-pyqt + python-pyqt-without-qtwebkit python-pyqtgraph python-pyqtwebengine python-pyyaml -- cgit v1.3 From d0fbd336ea51e02bb0852ec36d68db71a3be9001 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Fri, 28 Jan 2022 13:09:38 -0500 Subject: gnu: openconnect-sso: Remove a transitive dependency on QtWebKit. See for more information about this change. * gnu/packages/vpn.scm (openconnect-sso)[inputs]: Replace python-pyqt with python-pyqt-without-qtwebkit. --- gnu/packages/vpn.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm index 4ad555ef1b..723dd5dcb6 100644 --- a/gnu/packages/vpn.scm +++ b/gnu/packages/vpn.scm @@ -659,7 +659,7 @@ and probably others.") python-lxml python-prompt-toolkit python-requests - python-pyqt + python-pyqt-without-qtwebkit python-pyqtwebengine python-pysocks python-pyxdg -- cgit v1.3 From 10d1125f71205f094a6030c51c498b0f8dab5f73 Mon Sep 17 00:00:00 2001 From: Andrew Tropin Date: Thu, 27 Jan 2022 13:09:07 +0300 Subject: gnu: obs: Update to 27.1.3. * gnu/packages/video.scm (obs): Update to 27.1.3. Signed-off-by: Leo Famulari --- gnu/packages/video.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 71ea9ae10c..8a903f6fe1 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -3345,7 +3345,7 @@ be used for realtime video capture via Linux-specific APIs.") (define-public obs (package (name "obs") - (version "27.0.1") + (version "27.1.3") (source (origin (method git-fetch) (uri (git-reference @@ -3355,7 +3355,7 @@ be used for realtime video capture via Linux-specific APIs.") (file-name (git-file-name name version)) (sha256 (base32 - "04fzsr9yizmxy0r7z2706crvnsnybpnv5kgfn77znknxxjacfhkn")) + "1ndiarr3d6qihymaigf34jjml0lrgbj640fnpnffz2ysj7276q0j")) (patches (search-patches "obs-modules-location.patch")))) (build-system cmake-build-system) -- cgit v1.3 From f4554d28d6764aa8a733e4147dff8e8d473be19e Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Fri, 28 Jan 2022 22:55:51 +0100 Subject: gnu: aseba: Build sequentially and appease Valgrind. * gnu/packages/robotics.scm (aseba)[source]: Remove trailing #t from 'snippet'. [arguments]: Add #:parallel-build? and #:phases. [native-inputs]: Add glibc:debug. --- gnu/packages/robotics.scm | 29 ++++++++++++++++++++--------- 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/gnu/packages/robotics.scm b/gnu/packages/robotics.scm index a110d0e6bd..aedc8b8c5f 100644 --- a/gnu/packages/robotics.scm +++ b/gnu/packages/robotics.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2018 Ludovic Courtès +;;; Copyright © 2018, 2022 Ludovic Courtès ;;; ;;; This file is part of GNU Guix. ;;; @@ -23,6 +23,7 @@ #:use-module ((guix licenses) #:prefix license:) #:use-module (guix build-system cmake) #:use-module (gnu packages avahi) + #:use-module (gnu packages base) #:use-module (gnu packages cpp) #:use-module (gnu packages gl) #:use-module (gnu packages linux) @@ -91,17 +92,27 @@ hundred times faster than real-time.") (modules '((guix build utils))) (snippet ;; Add missing Qt5::Network. - '(begin - (substitute* "targets/playground/CMakeLists.txt" - (("target_link_libraries(.*)\\$\\{EXTRA_LIBS\\}" _ middle) - (string-append "target_link_libraries" middle - " Qt5::Network ${EXTRA_LIBS}"))) - #t)))) + '(substitute* "targets/playground/CMakeLists.txt" + (("target_link_libraries(.*)\\$\\{EXTRA_LIBS\\}" _ middle) + (string-append "target_link_libraries" middle + " Qt5::Network ${EXTRA_LIBS}")))))) (build-system cmake-build-system) (arguments - '(#:configure-flags '("-DBUILD_SHARED_LIBS=ON"))) + '(#:configure-flags '("-DBUILD_SHARED_LIBS=ON") + #:parallel-build? #f ;occasionally fails with '-j' + #:phases (modify-phases %standard-phases + (add-after 'unpack 'help-valgrind + (lambda* (#:key inputs #:allow-other-keys) + (let ((debug (search-input-directory inputs + "/lib/debug"))) + (substitute* "tests/common/CMakeLists.txt" + (("--error-exitcode=1" flag) + (string-append "--extra-debuginfo-path=" + debug " " flag))))))))) (native-inputs - (list pkg-config valgrind)) ;for tests + (list pkg-config + valgrind ;for tests + `(,(canonical-package glibc) "debug"))) (inputs (list dashel enki -- cgit v1.3 From 50f7402c6aa7b74645cf0db3fd1a965db3fd6ed2 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Fri, 28 Jan 2022 23:11:02 +0100 Subject: gnu: valgrind: Add version 3.18.1. * gnu/packages/valgrind.scm (valgrind-3.18): New variable. --- gnu/packages/valgrind.scm | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/gnu/packages/valgrind.scm b/gnu/packages/valgrind.scm index e044541282..9c7c4d40c0 100644 --- a/gnu/packages/valgrind.scm +++ b/gnu/packages/valgrind.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2013, 2014 Ludovic Courtès +;;; Copyright © 2013, 2014, 2022 Ludovic Courtès ;;; Copyright © 2015 Andreas Enge ;;; Copyright © 2015 Mark H Weaver ;;; Copyright © 2016, 2020 Efraim Flashner @@ -94,3 +94,18 @@ also use Valgrind to build new tools.") ;; GDB is needed to provide a sane default for `--db-command'. `(("gdb" ,gdb))) (properties '()))) + +(define-public valgrind-3.18 + (package + (inherit valgrind/interactive) + (version "3.18.1") + (source (origin + (method url-fetch) + (uri (list (string-append "https://sourceware.org/pub/valgrind" + "/valgrind-" version ".tar.bz2") + (string-append "ftp://sourceware.org/pub/valgrind" + "/valgrind-" version ".tar.bz2"))) + (sha256 + (base32 + "1xgph509i6adv9w2glviw3xrmlz0dssg8992hbvxsbkp7ahrm180")) + (patches (search-patches "valgrind-enable-arm.patch")))))) -- cgit v1.3 From 23ccfd3840d957e28fdbe3e3af9f588320c04fe3 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Sun, 23 Jan 2022 16:21:03 +0100 Subject: home: 'reconfigure' checks for potential downgrades. * guix/scripts/home.scm (show-help, %options): Add "--allow-downgrades". (%default-options): Remove 'build-mode'; add 'validate-reconfigure'. (perform-action): Add #:validate-reconfigure. Call 'check-forward-update' when ACTION is 'reconfigure. (process-action): Pass #:validate-reconfigure to 'perform-action'. * gnu/home/services.scm (home-provenance): Export. * doc/guix.texi (Invoking guix home): Document '--allow-downgrades'. --- doc/guix.texi | 10 ++++++++++ gnu/home/services.scm | 1 + guix/scripts/home.scm | 37 +++++++++++++++++++++++++------------ 3 files changed, 36 insertions(+), 12 deletions(-) diff --git a/doc/guix.texi b/doc/guix.texi index 62e994ceb1..94f8e5e481 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -38072,6 +38072,16 @@ Consider the home-environment @var{expr} evaluates to. This is an alternative to specifying a file which evaluates to a home environment. +@item --allow-downgrades +Instruct @command{guix home reconfigure} to allow system downgrades. + +Just like @command{guix system}, @command{guix home reconfigure}, by +default, prevents you from downgrading your home to older or unrelated +revisions compared to the channel revisions that were used to deploy +it---those shown by @command{guix home describe}. Using +@option{--allow-downgrades} allows you to bypass that check, at the risk +of downgrading your home---be careful! + @end table @node Documentation diff --git a/gnu/home/services.scm b/gnu/home/services.scm index 2a3cb44952..1c860d7b01 100644 --- a/gnu/home/services.scm +++ b/gnu/home/services.scm @@ -43,6 +43,7 @@ home-provenance-service-type fold-home-service-types + home-provenance %initialize-gettext) diff --git a/guix/scripts/home.scm b/guix/scripts/home.scm index 2312e4d313..837fd96361 100644 --- a/guix/scripts/home.scm +++ b/guix/scripts/home.scm @@ -36,7 +36,8 @@ #:use-module (guix scripts) #:use-module (guix scripts package) #:use-module (guix scripts build) - #:use-module (guix scripts system search) + #:autoload (guix scripts system search) (service-type->recutils) + #:use-module (guix scripts system reconfigure) #:autoload (guix scripts pull) (channel-commit-hyperlink) #:use-module (guix scripts home import) #:use-module ((guix status) #:select (with-status-verbosity)) @@ -91,6 +92,9 @@ Some ACTIONS support additional ARGS.\n")) (display (G_ " -e, --expression=EXPR consider the home-environment EXPR evaluates to instead of reading FILE, when applicable")) + (display (G_ " + --allow-downgrades for 'reconfigure', allow downgrades to earlier + channel revisions")) (display (G_ " -v, --verbosity=LEVEL use the given verbosity LEVEL")) (newline) @@ -127,18 +131,23 @@ Some ACTIONS support additional ARGS.\n")) (option '(#\e "expression") #t #f (lambda (opt name arg result) (alist-cons 'expression arg result))) + (option '("allow-downgrades") #f #f + (lambda (opt name arg result) + (alist-cons 'validate-reconfigure + warn-about-backward-reconfigure + result))) %standard-build-options)) (define %default-options - `((build-mode . ,(build-mode normal)) - (graft? . #t) + `((graft? . #t) (substitutes? . #t) (offload? . #t) (print-build-trace? . #t) (print-extended-build-trace? . #t) (multiplexed-build-output? . #t) (verbosity . #f) ;default - (debug . 0))) + (debug . 0) + (validate-reconfigure . ,ensure-forward-reconfigure))) ;;; @@ -149,12 +158,17 @@ Some ACTIONS support additional ARGS.\n")) #:key dry-run? derivations-only? - use-substitutes?) + use-substitutes? + (validate-reconfigure ensure-forward-reconfigure)) "Perform ACTION for home environment. " (define println (cut format #t "~a~%" <>)) + (when (eq? action 'reconfigure) + (check-forward-update validate-reconfigure + #:current-channels (home-provenance %guix-home))) + (mlet* %store-monad ((he-drv (home-environment-derivation he)) (drvs (mapm/accumulate-builds lower-object (list he-drv))) @@ -237,13 +251,12 @@ resulting from command-line parsing." (mbegin %store-monad (set-guile-for-build (default-guile)) - (case action - (else - (perform-action action home-environment - #:dry-run? dry? - #:derivations-only? (assoc-ref opts 'derivations-only?) - #:use-substitutes? (assoc-ref opts 'substitutes?)) - )))))) + (perform-action action home-environment + #:dry-run? dry? + #:derivations-only? (assoc-ref opts 'derivations-only?) + #:use-substitutes? (assoc-ref opts 'substitutes?) + #:validate-reconfigure + (assoc-ref opts 'validate-reconfigure)))))) (warn-about-disk-space))) -- cgit v1.3 From 25ead7941f2085b3ac40c3ba2cc6afb2946ade2a Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Fri, 28 Jan 2022 23:19:19 +0100 Subject: gnu: Add texlive-hardwrap. * gnu/packages/tex.scm (texlive-hardwrap): New variable. --- gnu/packages/tex.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index b203e1223f..be2d433ce0 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -1685,6 +1685,26 @@ described in the TeXbook, together with various supporting files (some also discussed in the book).") (license license:knuth))) +(define-public texlive-hardwrap + (package + (inherit (simple-texlive-package + "texlive-hardwrap" + (list "doc/latex/hardwrap/" + "tex/latex/hardwrap/" + "source/latex/hardwrap/") + (base32 + "0ql3xml1ccll44q945n7w72p6d51y5wcrkawi7cg621gy5d6wzx5") + #:trivial? #t)) + (home-page "https://ctan.org/macros/latex/contrib/hardwrap") + (synopsis "Hard wrap text to a certain character length") + (description + "The package facilitates wrapping text to a specific character width, breaking +lines by words rather than, as done by TeX, by characters. The primary use for +these facilities is to aid the generation of messages sent to the log file or +console output to display messages to the user. Package authors may also find +this useful when writing out arbitary text to an external file.") + (license license:lppl1.3+))) + (define-public texlive-helvetic (package (inherit (simple-texlive-package -- cgit v1.3 From 0c2e1b0d9cb0941d2820ae113451346976246319 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Fri, 28 Jan 2022 23:21:06 +0100 Subject: gnu: Add texlive-inputenx. * gnu/packages/tex.scm (texlive-inputenx): New variable. --- gnu/packages/tex.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index be2d433ce0..e58ec5975d 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -2775,6 +2775,25 @@ patterns supporting a number of Cyrillic font encodings, including T2, UCY (Omega Unicode Cyrillic), LCY, LWN (OT2), and koi8-r.") (license license:lppl)))) +(define-public texlive-inputenx + (package + (inherit (simple-texlive-package + "texlive-inputenx" + (list "doc/latex/inputenx/" + "tex/latex/inputenx/" + "source/latex/inputenx/") + (base32 + "0snjndrcynm4w8m9iq8gmadzhrbwvsdy4y1ak24ia0hpsicdi4aj") + #:trivial? #t)) + (home-page "https://ctan.org/macros/latex/contrib/inputenx") + (synopsis "Enhanced input encoding handling") + (description + "This package deals with input encodings. It provides a wider range of input +encodings using standard mappings, than does inputenc; it also covers nearly all +slots. In this way, it serves as more uptodate replacement for package +inputenc.") + (license license:lppl1.3+))) + (define-public texlive-kpathsea (let ((template (simple-texlive-package "texlive-kpathsea" -- cgit v1.3 From 47bb5779ba977acc0e016e94239523fcbd68c5a1 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Fri, 28 Jan 2022 23:23:12 +0100 Subject: gnu: Add texlive-greek-fontenc. * gnu/packages/tex.scm (texlive-greek-fontenc): New variable. --- gnu/packages/tex.scm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index e58ec5975d..67b5b70d94 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3285,6 +3285,23 @@ packages.") set default \"driver\" options for the color and graphics packages.") (license license:public-domain))) +(define-public texlive-greek-fontenc + (package + (inherit (simple-texlive-package + "texlive-greek-fontenc" + (list "doc/latex/greek-fontenc/" + "tex/latex/greek-fontenc/" + "source/latex/greek-fontenc/") + (base32 + "1ncsvj5mlnkgllrvqdnbkv0qwpv2y7jkq3x2wdmm7d3daqq0ka5h") + #:trivial? #t)) + (home-page "https://ctan.org/language/greek/greek-fontenc") + (synopsis "LICR macros and encoding definition files for Greek") + (description + "The package provides Greek LICR macro definitions and encoding definition files +for Greek text font encodings for use with fontenc.") + (license license:lppl1.3+))) + (define-public texlive-latex-graphics (package (name "texlive-latex-graphics") -- cgit v1.3 From 476e39e3b2b48a8f388fc129fb6a25ea316ed45a Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Fri, 28 Jan 2022 23:26:37 +0100 Subject: gnu: Add texlive-textcase. * gnu/packages/tex.scm (texlive-textcase): New variable. --- gnu/packages/tex.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 67b5b70d94..5ee1c3e071 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -5495,6 +5495,33 @@ other programs in the distribution offer online interactive use (with hypertext linkages in some cases).") (license license:gpl3+))) +(define-public texlive-textcase + (package + (inherit (simple-texlive-package + "texlive-textcase" + (list "doc/latex/textcase/" + "tex/latex/textcase/" + "source/latex/textcase/") + (base32 + "185fibd41wd0v51gnai29ygi32snkk00p00110kcnk1bcnmpiw82") + #:trivial? #t)) + (home-page "https://ctan.org/macros/latex/contrib/textcase") + (synopsis "Case conversion ignoring mathematics, etc") + (description + "The textcase package offers commands @code{\\MakeTextUppercase} and +@code{\\MakeTextLowercase} are similar to the standard @code{\\MakeUppercase} +and @code{\\MakeLowercase}, but they do not change the case of any sections of +mathematics, or the arguments of @code{\\cite}, @code{\\label} and +@code{\\ref} commands within the argument. A further command +@code{\\NoCaseChange} does nothing but suppress case change within its +argument, so to force uppercase of a section including an environment, one +might say: + +@example +\\MakeTextUppercase{...\\NoCaseChange{\\begin{foo}} ...\\NoCaseChange{\\end{foo}}...} +@end example\n") + (license license:lppl))) + (define-public texlive-latex-upquote (package (name "texlive-latex-upquote") -- cgit v1.3 From 977a6c5769145f86bed96c0c0a9f9ddce76df93d Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Tue, 11 Jan 2022 11:28:17 +0100 Subject: gnu: Add python-geojson. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/python-xyz.scm (python-geojson): New variable. Co-authored-by: Ludovic Courtès --- gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index a8aff94334..fc1ff5c80d 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -11642,6 +11642,28 @@ asyncio.") Python code formatter \"black\".") (license license:expat))) +(define-public python-geojson + (package + (name "python-geojson") + (version "2.5.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "geojson" version)) + (sha256 + (base32 "12k5bzqskvq3gqzkryarhdjl0df47y5k9cf8r3clasi2wjnbfjvf")))) + (build-system python-build-system) + (arguments + ;; https://github.com/jazzband/geojson/issues/175 + `(#:tests? #f)) + (home-page "https://github.com/jazzband/geojson") + (synopsis "Python bindings and utilities for GeoJSON") + (description + "This package provides Python bindings and utilities for +@uref{http://geojson.org/, GeoJSON}, a format for encoding geographic data +structures.") + (license license:bsd-3))) + (define-public python-get-version (package (name "python-get-version") -- cgit v1.3 From c9c8d75f977d5a8ce8e5969a46e210a5c8b6244c Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Tue, 11 Jan 2022 11:28:57 +0100 Subject: gnu: Add python-pyowm. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/python-web.scm (python-pyowm): New variable. Signed-off-by: Ludovic Courtès --- gnu/packages/python-web.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 6a3fc27353..408d7f6571 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -5514,6 +5514,24 @@ imported Python files in sys.modules as well as custom paths. When files are changed the process is restarted.") (license license:expat))) +(define-public python-pyowm + (package + (name "python-pyowm") + (version "3.2.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pyowm" version)) + (sha256 + (base32 "1pm8w6phr4m3xayndfndid366vhf1fpvdgjsp2zicxarmgc0pm53")))) + (build-system python-build-system) + (propagated-inputs (list python-geojson python-pysocks python-requests)) + (home-page "https://github.com/csparpa/pyowm") + (synopsis "Python wrapper around OpenWeatherMap web APIs") + (description + "This package provides a Python wrapper around OpenWeatherMap web APIs.") + (license license:expat))) + (define-public python-pyramid (package (name "python-pyramid") -- cgit v1.3 From 27c1d58d901dcf48929bcb6f76d861fc21575dbf Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Tue, 11 Jan 2022 11:29:23 +0100 Subject: gnu: Add wfetch. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/python-xyz.scm (wfetch): New variable. Signed-off-by: Ludovic Courtès --- gnu/packages/python-xyz.scm | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index fc1ff5c80d..aab8b27eef 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -11664,6 +11664,51 @@ Python code formatter \"black\".") structures.") (license license:bsd-3))) +(define-public wfetch + (let ((commit "e1cfa37814aebc9eb56ce994ebe877b6a6f9a715") + (revision "1")) + (package + (name "wfetch") + (version (git-version "0.1-pre" revision commit)) + (home-page "https://github.com/Gcat101/Wfetch") + (source + (origin + (method git-fetch) + (uri (git-reference (url home-page) + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dmr85plx8zr6s14ym3r32g6crwxghkval5a24ah90ijx4dbn5q5")))) + (build-system python-build-system) + (arguments + `(#:use-setuptools? #f ; no setup.py + #:tests? #f ; no test suite + #:phases + (modify-phases %standard-phases + (delete 'build) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (bin (string-append out "/bin")) + (share (string-append out "/share"))) + (mkdir-p share) + (substitute* "wfetch/wfetch.py" + (("os.sep, 'opt', 'wfetch'") (string-append "'" share "'"))) + (install-file "wfetch/wfetch.py" bin) + (copy-recursively "wfetch/icons" share))))))) + (inputs (list python-pyowm python-fire python-termcolor python-requests)) + (synopsis "Command-line tool to display weather info") + (description + "This package provides a tool similar to Neofetch/pfetch, but for +weather: it can display the weather condition, temperature, humidity, etc. + +To use it, you must first run: + +@example +export WEATHER_CLI_API=@var{your OpenWeatherMap API key} +@end example\n") + (license license:gpl3+)))) + (define-public python-get-version (package (name "python-get-version") -- cgit v1.3 From bbe52d3b86c06857eca2722fada77be060b145f5 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sat, 29 Jan 2022 00:39:00 +0100 Subject: gnu: gwl: Update to 0.4.0. * gnu/packages/package-management.scm (gwl): Update to 0.4.0. [inputs]: Add guile-drmaa; simplify input list. --- gnu/packages/package-management.scm | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm index 05795824b5..ee43783d8f 100644 --- a/gnu/packages/package-management.scm +++ b/gnu/packages/package-management.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès -;;; Copyright © 2015, 2017, 2020, 2021 Ricardo Wurmus +;;; Copyright © 2015, 2017, 2020, 2021, 2022 Ricardo Wurmus ;;; Copyright © 2017 Muriithi Frederick Muriuki ;;; Copyright © 2017, 2018 Oleg Pykhalov ;;; Copyright © 2017 Roel Janssen @@ -1221,13 +1221,13 @@ allow for great power and flexibility. (define-public gwl (package (name "gwl") - (version "0.3.0") + (version "0.4.0") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/gwl/gwl-" version ".tar.gz")) (sha256 (base32 - "1lqif00mq7fsaknbc2gvvcv1j89k311sm44jp9jklbrv0v2lc83n")))) + "0sgaaq430l3dqmqqiikfb0ilxnd2cq28626y18kxx5c781qwpys9")))) (build-system gnu-build-system) (arguments `(#:parallel-build? #false ; for reproducibility @@ -1239,14 +1239,15 @@ allow for great power and flexibility. (let ((p (package-input-rewriting `((,guile-3.0 . ,guile-3.0-latest)) #:deep? #false))) - `(("guix" ,guix) - ("guile" ,guile-3.0-latest) - ("guile-commonmark" ,(p guile-commonmark)) - ("guile-config" ,(p guile-config)) - ("guile-gcrypt" ,(p guile-gcrypt)) - ("guile-pfds" ,(p guile-pfds)) - ("guile-syntax-highlight" ,(p guile-syntax-highlight)) - ("guile-wisp" ,(p guile-wisp))))) + (list guix + guile-3.0-latest + (p guile-commonmark) + (p guile-config) + (p guile-drmaa) + (p guile-gcrypt) + (p guile-pfds) + (p guile-syntax-highlight) + (p guile-wisp)))) (home-page "https://workflows.guix.info") (synopsis "Workflow management extension for GNU Guix") (description "The @dfn{Guix Workflow Language} (GWL) provides an -- cgit v1.3 From 1949c8b20612d476f64586f3a3812b051774a320 Mon Sep 17 00:00:00 2001 From: Eric Bavier Date: Sat, 29 Jan 2022 00:53:31 -0600 Subject: gnu: cpulimit: Fix build with glibc-2.32. * gnu/packages/patches/cpulimit-with-glib-2.32.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/admin.scm (cpulimit)[source]: Use it. --- gnu/local.mk | 1 + gnu/packages/admin.scm | 5 ++-- gnu/packages/patches/cpulimit-with-glib-2.32.patch | 35 ++++++++++++++++++++++ 3 files changed, 39 insertions(+), 2 deletions(-) create mode 100644 gnu/packages/patches/cpulimit-with-glib-2.32.patch diff --git a/gnu/local.mk b/gnu/local.mk index 27e7877361..96e6cb08f4 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -965,6 +965,7 @@ dist_patch_DATA = \ %D%/packages/patches/coq-fix-envvars.patch \ %D%/packages/patches/coreutils-ls.patch \ %D%/packages/patches/cpuinfo-system-libraries.patch \ + %D%/packages/patches/cpulimit-with-glib-2.32.patch \ %D%/packages/patches/crawl-upgrade-saves.patch \ %D%/packages/patches/crda-optional-gcrypt.patch \ %D%/packages/patches/clucene-contribs-lib.patch \ diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index ed66e358ea..17dc0f1315 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès ;;; Copyright © 2013 Cyril Roelandt ;;; Copyright © 2014, 2015, 2016, 2018, 2019, 2020 Mark H Weaver -;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2020, 2021 Eric Bavier +;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2020, 2021, 2022 Eric Bavier ;;; Copyright © 2015, 2016 Taylan Ulrich Bayırlı/Kammer ;;; Copyright © 2015 Alex Sassmannshausen ;;; Copyright © 2015 Eric Dvorsak @@ -2858,7 +2858,8 @@ lookup to YAML Mode. You could enable the mode with @code{(add-hook (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1dz045yhcsw1rdamzpz4bk8mw888in7fyqk1q1b3m1yk4pd1ahkh")))) + (base32 "1dz045yhcsw1rdamzpz4bk8mw888in7fyqk1q1b3m1yk4pd1ahkh")) + (patches (search-patches "cpulimit-with-glib-2.32.patch")))) (build-system gnu-build-system) (arguments `(#:phases (modify-phases %standard-phases diff --git a/gnu/packages/patches/cpulimit-with-glib-2.32.patch b/gnu/packages/patches/cpulimit-with-glib-2.32.patch new file mode 100644 index 0000000000..4c0bbaac7c --- /dev/null +++ b/gnu/packages/patches/cpulimit-with-glib-2.32.patch @@ -0,0 +1,35 @@ +From 4a4794e041edf85cb67b9fbba66ad1a22fdcaaec Mon Sep 17 00:00:00 2001 +From: Eric Bavier +Date: Sat, 29 Jan 2022 00:10:20 -0600 +Subject: [PATCH] Fixes linux build with glibc-2.32. + +* cpulimit.c: Guard inclusion of which is needed only for + __APPLE__ and is deprecated and unavailable starting with glibc-2.32. +--- + src/cpulimit.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +Submitted upstream at https://github.com/opsengine/cpulimit/pull/105 + +diff --git a/src/cpulimit.c b/src/cpulimit.c +index 50eabea..be8cf22 100644 +--- a/src/cpulimit.c ++++ b/src/cpulimit.c +@@ -38,13 +38,13 @@ + #include + #include + #include +-#include + #include + #include + #include + + #ifdef __APPLE__ || __FREEBSD__ + #include ++#include + #endif + + #include "process_group.h" +-- +2.34.0 + -- cgit v1.3 From f38697f5f86de0ad5434b5c5679b6cff34c86797 Mon Sep 17 00:00:00 2001 From: Andrew Tropin Date: Thu, 9 Dec 2021 12:01:46 +0300 Subject: build-system: emacs: Ensure that package descriptions are generated. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch addresses the second part of . While existing -pkg.el files were previously installed, no such files were generated for packages lacking them, resulting in packages not being listed as installed and not being available towards “describe-package”. * guix/build/emacs-build-system.scm (find-root-library-file) (ensure-package-description): New variables. (%standard-phases): Add ‘ensure-package-description’. Signed-off-by: Liliana Marie Prikler --- guix/build/emacs-build-system.scm | 77 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 76 insertions(+), 1 deletion(-) diff --git a/guix/build/emacs-build-system.scm b/guix/build/emacs-build-system.scm index ab77e57f33..6a6918bfdd 100644 --- a/guix/build/emacs-build-system.scm +++ b/guix/build/emacs-build-system.scm @@ -140,6 +140,79 @@ store in '.el' files." (substitute-program-names)))) #t)) +(define (find-root-library-file name) + (let loop ((parts (string-split + (package-name-version->elpa-name-version name) #\-)) + (candidate "")) + (cond + ;; at least one version part is given, so we don't terminate "early" + ((null? parts) #f) + ((string-null? candidate) (loop (cdr parts) (car parts))) + ((file-exists? (string-append candidate ".el")) candidate) + (else + (loop (cdr parts) (string-append candidate "-" (car parts))))))) + +(define* (ensure-package-description #:key outputs #:allow-other-keys) + (define (write-pkg-file name) + (define summary-regexp + "^;;; [^ ]*\\.el ---[ \t]*\\(.*?\\)[ \t]*\\(-\\*-.*-\\*-[ \t]*\\)?$") + (define %write-pkg-file-form + `(progn + (require 'lisp-mnt) + (require 'package) + + (defun build-package-desc-from-library (name) + (package-desc-from-define + name + ;; Workaround for malformed version string (for example "24 (beta)" + ;; in paredit.el), try to parse version obtained by lm-version, + ;; before trying to create package-desc. Otherwise the whole process + ;; of generation -pkg.el will fail. + (condition-case + nil + (let ((version (lm-version))) + ;; raises an error if version is invalid + (and (version-to-list version) version)) + (error "0.0.0")) + (or (save-excursion + (goto-char (point-min)) + (and (re-search-forward ,summary-regexp nil t) + (match-string-no-properties 1))) + package--default-summary) + (let ((require-lines (lm-header-multiline "package-requires"))) + (and require-lines + (package--prepare-dependencies + (package-read-from-string + (mapconcat 'identity require-lines " "))))) + :kind 'single + :url (lm-homepage) + :keywords (lm-keywords-list) + :maintainer (lm-maintainer) + :authors (lm-authors))) + + (defun generate-package-description-file (name) + (package-generate-description-file + (build-package-desc-from-library name) + (concat name "-pkg.el"))) + + (condition-case + err + (let ((name (file-name-base (buffer-file-name)))) + (generate-package-description-file name) + (message (concat name "-pkg.el file generated."))) + (error + (message "There are some errors during generation of -pkg.el file:") + (message "%s" (error-message-string err)))))) + + (unless (file-exists? (string-append name "-pkg.el")) + (emacs-batch-edit-file (string-append name ".el") + %write-pkg-file-form))) + + (let* ((out (assoc-ref outputs "out")) + (elpa-name-ver (store-directory->elpa-name-version out))) + (with-directory-excursion (elpa-directory out) + (and=> (find-root-library-file elpa-name-ver) write-pkg-file)))) + (define* (check #:key tests? (test-command '("make" "check")) (parallel-tests? #t) #:allow-other-keys) "Run the tests by invoking TEST-COMMAND. @@ -279,8 +352,10 @@ for libraries following the ELPA convention." (add-after 'make-autoloads 'enable-autoloads-compilation enable-autoloads-compilation) (add-after 'enable-autoloads-compilation 'patch-el-files patch-el-files) + (add-after 'patch-el-files 'ensure-package-description + ensure-package-description) ;; The .el files are byte compiled directly in the store. - (add-after 'patch-el-files 'build build) + (add-after 'ensure-package-description 'build build) (add-after 'build 'validate-compiled-autoloads validate-compiled-autoloads) (add-after 'validate-compiled-autoloads 'move-doc move-doc))) -- cgit v1.3 From 69218e84f119c698a06febe030946f1eca571e2c Mon Sep 17 00:00:00 2001 From: Liliana Marie Prikler Date: Mon, 24 Jan 2022 17:36:46 +0100 Subject: .dir-locals.el: Don't mess up indentation of prepend and append. The current version appears to assume special values in the first and second package, but it's either all lists (default append) or all package input expressions (inside modify-inputs), which themselves are either packages or lists consisting of a package and a string. * .dir-locals.el: Drop (eval . (put 'prepend 'scheme-indent-function 2)) and (eval . (put 'append 'scheme-indent-function 2)). --- .dir-locals.el | 2 -- 1 file changed, 2 deletions(-) diff --git a/.dir-locals.el b/.dir-locals.el index 12a6f08739..0edf2a8d23 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -60,8 +60,6 @@ ;; 'modify-inputs' and its keywords. (eval . (put 'modify-inputs 'scheme-indent-function 1)) (eval . (put 'replace 'scheme-indent-function 1)) - (eval . (put 'prepend 'scheme-indent-function 2)) - (eval . (put 'append 'scheme-indent-function 2)) ;; 'modify-phases' and its keywords. (eval . (put 'modify-phases 'scheme-indent-function 1)) -- cgit v1.3 From 171084792fae1aa4c2cd395af25f8f581c4013e4 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Fri, 28 Jan 2022 10:56:07 +0100 Subject: gnu: python-pydantic: Update to 1.9.0. * gnu/packages/python-xyz.scm (python-pydantic): Update to 1.9.0. --- gnu/packages/python-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index aab8b27eef..a1cb1231f9 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -5075,7 +5075,7 @@ which can produce feeds in RSS 2.0, RSS 0.91, and Atom formats.") (define-public python-pydantic (package (name "python-pydantic") - (version "1.8.2") + (version "1.9.0") (source (origin (method git-fetch) @@ -5084,7 +5084,7 @@ which can produce feeds in RSS 2.0, RSS 0.91, and Atom formats.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "06162dss6mvi7wiy2lzxwvzajwxgy8b2fyym7qipaj7zibcqalq2")))) + (base32 "14wj3k9007fpbxk7593w6gdqrr68yzrsw4a41sj5ji4cv3r8z18b")))) (build-system python-build-system) (arguments '(#:phases -- cgit v1.3 From 4657a39270f64c071d6b68693e9e5b7fcbb2bfa5 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Fri, 28 Jan 2022 10:56:26 +0100 Subject: services: zabbix-frontend: Fix configuration file for hard coded passwords. This is a follow-up to commit 078f5bfae7ee174177791defcfd350117a503a6d. * gnu/services/monitoring.scm (zabbix-front-end-config): When DB-PASSWORD is set, enclose the password with quotes in the configuration file. --- gnu/services/monitoring.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/services/monitoring.scm b/gnu/services/monitoring.scm index 1b49dbd3cb..957672882a 100644 --- a/gnu/services/monitoring.scm +++ b/gnu/services/monitoring.scm @@ -598,7 +598,7 @@ $DB['PASSWORD'] = " (let ((file (location-file %location)) (display-hint (format #f (G_ "~a:~a:~a: ~a: Consider using @code{db-secret-file} instead of @code{db-password} for better security.") file line column 'zabbix-front-end-configuration)) - db-password))) + (format #f "'~a';~%" db-password)))) " // Schema name. Used for IBM DB2 and PostgreSQL. $DB['SCHEMA'] = ''; -- cgit v1.3 From 7971f88e834d120958b4d43e59c79a28d43d8f47 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Fri, 28 Jan 2022 11:12:06 +0100 Subject: gnu: fping: Enable IPv6 support. * gnu/packages/networking.scm (fping)[arguments]: New field. --- gnu/packages/networking.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 69e27f3113..3aa3e9b8e9 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -1606,6 +1606,7 @@ network frames.") (sha256 (base32 "1f2prmii4fyl44cfykp40hp4jjhicrhddh9v3dfs11j6nsww0f7d")))) (build-system gnu-build-system) + (arguments '(#:configure-flags '("--enable-ipv6"))) (home-page "https://fping.org/") (synopsis "Send ICMP ECHO_REQUEST packets to network hosts") (description -- cgit v1.3 From 0d347fe83eabc0786590fe0a60646c5824bfad2b Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Fri, 28 Jan 2022 11:14:57 +0100 Subject: gnu: zabbix-server: Use a sensible default for the "fping" executable. * gnu/packages/monitoring.scm (zabbix-agentd)[source](modules, snippet): New fields. --- gnu/packages/monitoring.scm | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/gnu/packages/monitoring.scm b/gnu/packages/monitoring.scm index 008fccf893..d9f84e87e4 100644 --- a/gnu/packages/monitoring.scm +++ b/gnu/packages/monitoring.scm @@ -172,7 +172,14 @@ etc. via a Web interface. Features include: "https://cdn.zabbix.com/zabbix/sources/stable/" (version-major+minor version) "/zabbix-" version ".tar.gz")) (sha256 - (base32 "100n1rv7r4pqagxxifzpcza5bhrr2fklzx7gndxwiyq4597p1jvn")))) + (base32 "100n1rv7r4pqagxxifzpcza5bhrr2fklzx7gndxwiyq4597p1jvn")) + (modules '((guix build utils))) + (snippet + '(substitute* '("src/zabbix_proxy/proxy.c" + "src/zabbix_server/server.c") + ;; 'fping' must be setuid, so look for it in the usual location. + (("/usr/sbin/fping[[:digit:]]?") + "/run/setuid-programs/fping"))))) (build-system gnu-build-system) (arguments `(#:configure-flags -- cgit v1.3 From 5122805c4849034c567ca90be5de8117b2581b3e Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Fri, 28 Jan 2022 14:34:59 +0100 Subject: services: zabbix-server: Add shepherd actions for runtime control commands. * gnu/services/monitoring.scm (zabbix-server-runtime-control-procedure, zabbix-server-actions): New variables. (zabbix-server-shepherd-service)[actions]: New field. Let-bind variables common between actions and the start procedure. --- gnu/services/monitoring.scm | 76 +++++++++++++++++++++++++++++++++++---------- 1 file changed, 60 insertions(+), 16 deletions(-) diff --git a/gnu/services/monitoring.scm b/gnu/services/monitoring.scm index 957672882a..a331bf1117 100644 --- a/gnu/services/monitoring.scm +++ b/gnu/services/monitoring.scm @@ -2,6 +2,7 @@ ;;; Copyright © 2018 Sou Bunnbu ;;; Copyright © 2018, 2019 Gábor Boskovits ;;; Copyright © 2018, 2019, 2020 Oleg Pykhalov +;;; Copyright © 2022 Marius Bakke ;;; ;;; This file is part of GNU Guix. ;;; @@ -334,7 +335,6 @@ configuration file.")) #~(begin (use-modules (guix build utils) (ice-9 rdelim)) - (let ((user (getpw #$(zabbix-server-configuration-user config)))) (for-each (lambda (file) (let ((directory (dirname file))) @@ -345,25 +345,69 @@ configuration file.")) #$(zabbix-server-configuration-pid-file config) "/etc/zabbix/maintenance.inc.php")))))) +(define (zabbix-server-runtime-control-procedure zabbix-server config command) + ;; XXX: This is duplicated from mcron; factorize. + #~(lambda (_ . args) + ;; Run 'zabbix_server' in a pipe so we can explicitly redirect its output + ;; to 'current-output-port', which at this stage is bound to the client + ;; connection. + (let ((pipe (apply open-pipe* OPEN_READ #$zabbix-server + "--config" #$config + "-R" #$command args))) + (let loop () + (match (read-line pipe 'concat) + ((? eof-object?) + (catch 'system-error + (lambda () + (zero? (close-pipe pipe))) + (lambda args + ;; There's a race with the SIGCHLD handler, which could + ;; call 'waitpid' before 'close-pipe' above does. If we + ;; get ECHILD, that means we lost the race; in that case, we + ;; cannot tell what the exit code was (FIXME). + (or (= ECHILD (system-error-errno args)) + (apply throw args))))) + (line + (display line) + (loop))))))) + +;; Provide shepherd actions for common "zabbix_server -R" commands +;; mainly for a convenient way to use the correct configuration file. +(define (zabbix-server-actions zabbix-server config) + (list (shepherd-action + (name 'reload-config-cache) + (documentation "Reload the configuration cache.") + (procedure (zabbix-server-runtime-control-procedure + zabbix-server config "config_cache_reload"))) + (shepherd-action + (name 'reload-snmp-cache) + (documentation "Reload SNMP cache.") + (procedure (zabbix-server-runtime-control-procedure + zabbix-server config "snmp_cache_reload"))))) + (define (zabbix-server-shepherd-service config) "Return a for Zabbix server with CONFIG." - (list (shepherd-service - (provision '(zabbix-server)) - (documentation "Run Zabbix server daemon.") - (start #~(make-forkexec-constructor - (list #$(file-append (zabbix-server-configuration-zabbix-server config) - "/sbin/zabbix_server") - "--config" #$(zabbix-server-config-file config) - "--foreground") - #:user #$(zabbix-server-configuration-user config) - #:group #$(zabbix-server-configuration-group config) - #:pid-file #$(zabbix-server-configuration-pid-file config) - #:environment-variables - (list "SSL_CERT_DIR=/run/current-system/profile\ + (let ((zabbix-server + (file-append (zabbix-server-configuration-zabbix-server config) + "/sbin/zabbix_server")) + (config-file (zabbix-server-config-file config))) + (list (shepherd-service + (provision '(zabbix-server)) + (documentation "Run the Zabbix server daemon.") + (actions (zabbix-server-actions zabbix-server config-file)) + (start #~(make-forkexec-constructor + (list #$zabbix-server + "--config" #$config-file + "--foreground") + #:user #$(zabbix-server-configuration-user config) + #:group #$(zabbix-server-configuration-group config) + #:pid-file #$(zabbix-server-configuration-pid-file config) + #:environment-variables + (list "SSL_CERT_DIR=/run/current-system/profile\ /etc/ssl/certs" - "SSL_CERT_FILE=/run/current-system/profile\ + "SSL_CERT_FILE=/run/current-system/profile\ /etc/ssl/certs/ca-certificates.crt"))) - (stop #~(make-kill-destructor))))) + (stop #~(make-kill-destructor)))))) (define zabbix-server-service-type (service-type -- cgit v1.3 From 7f12a40e9a83996af15d9b82160264d985bafc2c Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Fri, 28 Jan 2022 16:37:18 +0100 Subject: services: zabbix-frontend: Enable IEEE754-compatible history values. * gnu/services/monitoring.scm (zabbix-front-end-config): Specify $DB['DOUBLE_IEEE754'] in the configuration file, as per current example. --- gnu/services/monitoring.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/services/monitoring.scm b/gnu/services/monitoring.scm index a331bf1117..428371f2cf 100644 --- a/gnu/services/monitoring.scm +++ b/gnu/services/monitoring.scm @@ -647,6 +647,9 @@ security.") file line column 'zabbix-front-end-configuration)) // Schema name. Used for IBM DB2 and PostgreSQL. $DB['SCHEMA'] = ''; +// Use IEEE754 compatible value range for 64-bit Numeric (float) history values. +$DB['DOUBLE_IEEE754'] = true; + $ZBX_SERVER = '" zabbix-host "'; $ZBX_SERVER_PORT = '" (number->string zabbix-port) "'; $ZBX_SERVER_NAME = ''; -- cgit v1.3 From 8fa6f975d4bb87b3d177722221e4db4263d8b5f9 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Fri, 28 Jan 2022 19:15:13 +0100 Subject: services: zabbix-frontend: Adjust indentation. * gnu/services/monitoring.scm (zabbix-front-end-activation): Reindent. --- gnu/services/monitoring.scm | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/gnu/services/monitoring.scm b/gnu/services/monitoring.scm index 428371f2cf..a3955808e9 100644 --- a/gnu/services/monitoring.scm +++ b/gnu/services/monitoring.scm @@ -622,28 +622,28 @@ $DB['PORT'] = '" (number->string db-port) "'; $DB['DATABASE'] = '" db-name "'; $DB['USER'] = '" db-user "'; $DB['PASSWORD'] = " (let ((file (location-file %location)) - (line (location-line %location)) - (column (location-column %location))) - (if (string-null? db-password) - (if (string-null? db-secret-file) - (raise (make-compound-condition - (condition - (&message - (message - (format #f "no '~A' or '~A' field in your '~A' record" - 'db-secret-file 'db-password - 'zabbix-front-end-configuration)))) - (condition - (&error-location - (location %location))))) - (string-append "trim(file_get_contents('" - db-secret-file "'));\n")) - (begin - (display-hint (format #f (G_ "~a:~a:~a: ~a: + (line (location-line %location)) + (column (location-column %location))) + (if (string-null? db-password) + (if (string-null? db-secret-file) + (raise (make-compound-condition + (condition + (&message + (message + (format #f "no '~A' or '~A' field in your '~A' record" + 'db-secret-file 'db-password + 'zabbix-front-end-configuration)))) + (condition + (&error-location + (location %location))))) + (string-append "trim(file_get_contents('" + db-secret-file "'));\n")) + (begin + (display-hint (format #f (G_ "~a:~a:~a: ~a: Consider using @code{db-secret-file} instead of @code{db-password} for better security.") file line column 'zabbix-front-end-configuration)) - (format #f "'~a';~%" db-password)))) -" + (format #f "'~a';~%" db-password)))) + " // Schema name. Used for IBM DB2 and PostgreSQL. $DB['SCHEMA'] = ''; -- cgit v1.3 From 81873cbc5d42b2d404ae01fb3e64e946f21f4004 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Fri, 28 Jan 2022 22:57:27 +0100 Subject: gnu: Add TimescaleDB. * gnu/packages/databases.scm (timescaledb): New variable. --- gnu/packages/databases.scm | 79 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index cfa1743d75..f6c1046a51 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -1319,6 +1319,85 @@ pictures, sounds, or video.") (define-public postgresql postgresql-13) +(define-public timescaledb + (package + (name "timescaledb") + (version "2.5.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/timescale/timescaledb") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "174dm3higa0i7al9r2hdv5hk36pd0d5fnqj57w5a350kxshxyvyw")) + (modules '((guix build utils))) + (snippet + ;; Remove files carrying the proprietary TIMESCALE license. + '(begin + (delete-file-recursively "tsl") + (for-each delete-file + '("test/perl/AccessNode.pm" + "test/perl/DataNode.pm" + "test/perl/TimescaleNode.pm")))))) + (build-system cmake-build-system) + (arguments + (list #:imported-modules `((guix build union) + ,@%cmake-build-system-modules) + #:modules `(,@%cmake-build-system-modules + (guix build union) + (ice-9 match)) + #:configure-flags #~(list "-DAPACHE_ONLY=ON" + "-DSEND_TELEMETRY_DEFAULT=OFF") + #:test-target "regresschecklocal" + #:phases + #~(modify-phases (@ (guix build cmake-build-system) %standard-phases) + (add-after 'unpack 'patch-install-location + (lambda _ + ;; Install extension to the output instead of the + ;; PostgreSQL store directory. + (substitute* '("CMakeLists.txt" + "cmake/GenerateScripts.cmake" + "sql/CMakeLists.txt") + (("\\$\\{PG_SHAREDIR\\}/extension") + (string-append #$output "/share/extension"))) + ;; Likewise for the library. + (substitute* '("src/CMakeLists.txt" + "src/loader/CMakeLists.txt") + (("\\$\\{PG_PKGLIBDIR\\}") + (string-append #$output "/lib"))))) + ;; Run the tests after install to make it easier to create the + ;; required PostgreSQL+TimescaleDB filesystem union. + (delete 'check) + (add-after 'install 'prepare-tests + (lambda* (#:key inputs #:allow-other-keys) + (let ((pg-data (string-append (getcwd) "/../pg-data")) + (pg-union (string-append (getcwd) "/../pg-union"))) + (match inputs + (((names . directories) ...) + (union-build pg-union (cons #$output directories)))) + (setenv "PATH" (string-append pg-union "/bin:" + (getenv "PATH"))) + (invoke "initdb" "-D" pg-data) + (copy-file "test/postgresql.conf" + (string-append pg-data "/postgresql.conf")) + (invoke "pg_ctl" "-D" pg-data + "-o" (string-append "-k " pg-data) + "-l" (string-append pg-data "/db.log") + "start")))) + (add-after 'prepare-tests 'check + (assoc-ref %standard-phases 'check))))) + (inputs (list openssl postgresql)) + (home-page "https://www.timescale.com/") + (synopsis "Time-series extension for PostgreSQL") + (description + "TimescaleDB is an database designed to make SQL scalable for +time-series data. It is engineered up from PostgreSQL and packaged as a +PostgreSQL extension, providing automatic partitioning across time and space +(partitioning key), as well as full SQL support.") + (license license:asl2.0))) + (define-public pgloader (package (name "pgloader") -- cgit v1.3 From 756f16aa019ef6b286f92704c8ba20c501c620eb Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sat, 29 Jan 2022 11:41:17 +0100 Subject: services: zabbix-agent: Set the PATH variable. * gnu/services/monitoring.scm (zabbix-agent-shepherd-service)[start]: Set the PATH variable to the common values. --- gnu/services/monitoring.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/services/monitoring.scm b/gnu/services/monitoring.scm index a3955808e9..ea0f5b8f0e 100644 --- a/gnu/services/monitoring.scm +++ b/gnu/services/monitoring.scm @@ -534,7 +534,9 @@ configuration file.")) (list "SSL_CERT_DIR=/run/current-system/profile\ /etc/ssl/certs" "SSL_CERT_FILE=/run/current-system/profile\ -/etc/ssl/certs/ca-certificates.crt"))) +/etc/ssl/certs/ca-certificates.crt" + "PATH=/run/setuid-programs:\ +/run/current-system/profile/bin:/run/current-system/profile/sbin"))) (stop #~(make-kill-destructor))))) (define zabbix-agent-service-type -- cgit v1.3 From 45681b89a88a050ce2f3a3b9f9974eafe1b4302c Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sat, 29 Jan 2022 12:34:25 +0100 Subject: gnu: zabbix: Update to 5.4.9. * gnu/packages/monitoring.scm (zabbix-agentd): Update to 5.4.9. --- gnu/packages/monitoring.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/monitoring.scm b/gnu/packages/monitoring.scm index d9f84e87e4..64ebb96b87 100644 --- a/gnu/packages/monitoring.scm +++ b/gnu/packages/monitoring.scm @@ -164,7 +164,7 @@ etc. via a Web interface. Features include: (define-public zabbix-agentd (package (name "zabbix-agentd") - (version "5.2.6") + (version "5.4.9") (source (origin (method url-fetch) @@ -172,7 +172,7 @@ etc. via a Web interface. Features include: "https://cdn.zabbix.com/zabbix/sources/stable/" (version-major+minor version) "/zabbix-" version ".tar.gz")) (sha256 - (base32 "100n1rv7r4pqagxxifzpcza5bhrr2fklzx7gndxwiyq4597p1jvn")) + (base32 "0hf9qygjy4vyknsin6qmgpna6z4c4mdrglifgkpxbs3nvwl6cs0r")) (modules '((guix build utils))) (snippet '(substitute* '("src/zabbix_proxy/proxy.c" -- cgit v1.3 From 765be3dcefff109b9e1e2309a2d0017009b29ead Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sat, 29 Jan 2022 15:52:15 +0100 Subject: tests: postgresql: Test the default PostgreSQL. * gnu/tests/databases.scm (%postgresql-os): Change from POSTGRESQL-10 to POSTGRESQL. --- gnu/tests/databases.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/tests/databases.scm b/gnu/tests/databases.scm index a20de1a8c7..2374aaba04 100644 --- a/gnu/tests/databases.scm +++ b/gnu/tests/databases.scm @@ -138,7 +138,7 @@ (simple-operating-system (service postgresql-service-type (postgresql-configuration - (postgresql postgresql-10) + (postgresql postgresql) (config-file (postgresql-config-file (extra-config -- cgit v1.3 From 59847afda785cbfa19a61e4fd062f8c4ea01c912 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sat, 29 Jan 2022 15:53:04 +0100 Subject: services: postgresql: Export missing accessor. * gnu/services/databases.scm: Export POSTGRESQL-CONFIGURATION-EXTENSION-PACKAGES. --- gnu/services/databases.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/services/databases.scm b/gnu/services/databases.scm index 39225a4bd6..15a2036037 100644 --- a/gnu/services/databases.scm +++ b/gnu/services/databases.scm @@ -55,6 +55,7 @@ postgresql-configuration-file postgresql-configuration-log-directory postgresql-configuration-data-directory + postgresql-configuration-extension-packages postgresql-service postgresql-service-type -- cgit v1.3 From b6b0cfa2f87ef8d151bf8672c7d711afad71a3e7 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sat, 29 Jan 2022 15:55:29 +0100 Subject: tests: Add system test for TimescaleDB. * gnu/tests/databases.scm (%timescaledb-os, run-timescaledb-test, %test-timescaledb): New variables. --- gnu/tests/databases.scm | 139 +++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 138 insertions(+), 1 deletion(-) diff --git a/gnu/tests/databases.scm b/gnu/tests/databases.scm index 2374aaba04..296d91d118 100644 --- a/gnu/tests/databases.scm +++ b/gnu/tests/databases.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2017 Christopher Baines -;;; Copyright © 2020 Marius Bakke +;;; Copyright © 2020, 2022 Marius Bakke ;;; ;;; This file is part of GNU Guix. ;;; @@ -29,10 +29,16 @@ #:use-module (gnu packages databases) #:use-module (guix gexp) #:use-module (guix store) + #:use-module (srfi srfi-1) #:export (%test-memcached %test-postgresql + %test-timescaledb %test-mysql)) +;;; +;;; The Memcached service. +;;; + (define %memcached-os (simple-operating-system (service dhcp-client-service-type) @@ -245,6 +251,137 @@ (description "Start the PostgreSQL service.") (value (run-postgresql-test)))) +;; Test TimescaleDB, a PostgreSQL extension. +(define %timescaledb-os + (let* ((postgresql-services (operating-system-services %postgresql-os)) + (postgresql-service-configuration + (service-value (find (lambda (svc) + (eq? (service-kind svc) postgresql-service-type)) + postgresql-services))) + (postgresql-role-service-configuration + (service-value (find (lambda (svc) + (eq? (service-kind svc) + postgresql-role-service-type)) + postgresql-services)))) + (simple-operating-system + (service postgresql-service-type + (postgresql-configuration + (inherit postgresql-service-configuration) + (extension-packages (list timescaledb)) + (config-file + (postgresql-config-file + (inherit (postgresql-configuration-file + postgresql-service-configuration)) + (extra-config + (append '(("shared_preload_libraries" "timescaledb")) + (postgresql-config-file-extra-config + (postgresql-configuration-file + postgresql-service-configuration)))))))) + (service postgresql-role-service-type + (postgresql-role-configuration + (inherit postgresql-role-service-configuration)))))) + +(define (run-timescaledb-test) + "Run tests in %TIMESCALEDB-OS." + (define os + (marionette-operating-system + %timescaledb-os + #:imported-modules '((gnu services herd) + (guix combinators)))) + + (define vm + (virtual-machine + (operating-system os) + (memory-size 512))) + + (define test + (with-imported-modules '((gnu build marionette)) + #~(begin + (use-modules (srfi srfi-64) + (gnu build marionette)) + + (define marionette + (make-marionette (list #$vm))) + + (test-runner-current (system-test-runner #$output)) + (test-begin "timescaledb") + + (test-assert "PostgreSQL running" + (marionette-eval + '(begin + (use-modules (gnu services herd)) + (start-service 'postgres)) + marionette)) + + (test-assert "database ready" + (begin + (marionette-eval + '(begin + (let loop ((i 10)) + (unless (or (zero? i) + (and (file-exists? #$%role-log-file) + (string-contains + (call-with-input-file #$%role-log-file + get-string-all) + ";\nCREATE DATABASE"))) + (sleep 1) + (loop (- i 1))))) + marionette))) + + (test-assert "database creation" + (marionette-eval + '(begin + (current-output-port + (open-file "/dev/console" "w0")) + (invoke #$(file-append postgresql "/bin/psql") + "-tA" "-c" "CREATE DATABASE test")) + marionette)) + + (test-assert "load extension" + (marionette-eval + '(begin + (current-output-port (open-file "/dev/console" "w0")) + ;; Capture stderr for the next test. + (current-error-port (open-file "timescaledb.stderr" "w0")) + (invoke #$(file-append postgresql "/bin/psql") + "-tA" "-c" "CREATE EXTENSION timescaledb" + "test")) + marionette)) + + (test-assert "telemetry is disabled" + (marionette-eval + '(begin + (string-contains (call-with-input-file "timescaledb.stderr" + (lambda (port) + (get-string-all port))) + "Please enable telemetry")) + marionette)) + + (test-assert "create hypertable" + (marionette-eval + '(begin + (current-output-port (open-file "/dev/console" "w0")) + (invoke #$(file-append postgresql "/bin/psql") + "-tA" "-c" "CREATE TABLE ht ( +time TIMESTAMP NOT NULL, +data double PRECISION NULL +)" + "test") + (invoke #$(file-append postgresql "/bin/psql") + "-tA" "-c" "SELECT create_hypertable('ht','time')" + "test")) + marionette)) + + (test-end)))) + + (gexp->derivation "timescaledb-test" test)) + +(define %test-timescaledb + (system-test + (name "timescaledb") + (description "Test the TimescaleDB PostgreSQL extension.") + (value (run-timescaledb-test)))) + ;;; ;;; The MySQL service. -- cgit v1.3 From 9d13747fc27b66d8146565d6a431922ed6030ae5 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Sat, 29 Jan 2022 13:37:08 -0500 Subject: gnu: nextcloud-client: Don't depend on QtWebKit. This package propagates QtWebEngine and doesn't keep a reference to QtWebKit. See for more information about this change. * gnu/packages/sync.scm (qtwebkit)[inputs]: Remove qtwebkit. [arguments]: Remove related #:configure-flag that is not recognized by our version of nextcloud-client. --- gnu/packages/sync.scm | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/gnu/packages/sync.scm b/gnu/packages/sync.scm index 165be17e4c..f897c1ec4a 100644 --- a/gnu/packages/sync.scm +++ b/gnu/packages/sync.scm @@ -132,9 +132,7 @@ (arguments `(#:configure-flags (list - "-DUNIT_TESTING=ON" - ;; Upstream Bug: https://github.com/nextcloud/desktop/issues/2885 - "-DNO_SHIBBOLETH=ON") + "-DUNIT_TESTING=ON") #:imported-modules ((guix build glib-or-gtk-build-system) ,@%qt-build-system-modules) @@ -199,7 +197,6 @@ qtsvg qtwebchannel qtwebsockets - qtwebkit sqlite xdg-utils zlib)) -- cgit v1.3 From 0442d683c3898a7e133fba6ddc9aafdc42d905d3 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Sat, 29 Jan 2022 15:28:09 -0500 Subject: gnu: kdenlive: Don't depend on QtWebKit. Kdenlive no longer uses QtWebKit. See for more information about this change. * gnu/packages/kde.scm (kdenlive)[inputs]: Remove qtwebkit. --- gnu/packages/kde.scm | 1 - 1 file changed, 1 deletion(-) diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm index 8dfcba1388..c9351ccad9 100644 --- a/gnu/packages/kde.scm +++ b/gnu/packages/kde.scm @@ -264,7 +264,6 @@ browser for easy news reading.") qtquickcontrols2 qtscript qtsvg - qtwebkit shared-mime-info)) (arguments ;; XXX: there is a single test that spawns other tests and -- cgit v1.3 From 08875dd55651d82a5ad4bab94f8f98800986558c Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Sat, 29 Jan 2022 15:32:34 -0500 Subject: gnu: WPE WebKit: Set the Common Platform Enumeration (CPE) name. * gnu/packages/webkit.scm (wpewebkit)[properties]: New field. --- gnu/packages/webkit.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/webkit.scm b/gnu/packages/webkit.scm index 6a101331bd..6ab02c0176 100644 --- a/gnu/packages/webkit.scm +++ b/gnu/packages/webkit.scm @@ -222,7 +222,8 @@ acceleration in mind, leveraging common 3D graphics APIs for best performance.") ;; Rendering and JavaScript Engines. license:lgpl2.1+ ;; Others - license:bsd-2)))) + license:bsd-2)) + (properties '((cpe-name . "wpe_webkit"))))) (define-public webkitgtk (package -- cgit v1.3 From c97e07be56d54cb3f64decfc21a511846f356d88 Mon Sep 17 00:00:00 2001 From: Liliana Marie Prikler Date: Sun, 16 Jan 2022 08:29:04 +0100 Subject: gnu: libwpe: Update to 1.12.0. * gnu/packages/webkit.scm (libwpe): Update to 1.12.0. [build-system]: Use meson-build-system. --- gnu/packages/webkit.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gnu/packages/webkit.scm b/gnu/packages/webkit.scm index 6ab02c0176..86a96d2089 100644 --- a/gnu/packages/webkit.scm +++ b/gnu/packages/webkit.scm @@ -30,6 +30,7 @@ #:use-module (guix utils) #:use-module (guix build utils) #:use-module (guix build-system cmake) + #:use-module (guix build-system meson) #:use-module (guix build-system gnu) #:use-module (gnu packages) #:use-module (gnu packages base) @@ -70,7 +71,7 @@ (define-public libwpe (package (name "libwpe") - (version "1.6.0") + (version "1.12.0") (source (origin (method url-fetch) @@ -78,8 +79,8 @@ (string-append "https://wpewebkit.org/releases/libwpe-" version ".tar.xz")) (sha256 - (base32 "141w35b488jjhanl3nrm0awrbcy6hb579fk8n9vbpx07m2wcd1rm")))) - (build-system cmake-build-system) + (base32 "13618imck69w7fbmljlh62j4gnlspb9zfqzv9hlkck3bi8icmvp8")))) + (build-system meson-build-system) (arguments `(#:tests? #f)) ;no tests (native-inputs -- cgit v1.3 From f0bc429a52ae414f1df2470e43e1fa9d0dd343a4 Mon Sep 17 00:00:00 2001 From: Liliana Marie Prikler Date: Sun, 16 Jan 2022 08:29:56 +0100 Subject: gnu: wpebackend-fdo: Update to 1.12.0. * gnu/packages/webkit.scm (wpebackend-fdo): Update to 1.12.0. [build-system]: Use meson-build-system. [inputs]: Add libepoxy. --- gnu/packages/webkit.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gnu/packages/webkit.scm b/gnu/packages/webkit.scm index 86a96d2089..d683d0aa5b 100644 --- a/gnu/packages/webkit.scm +++ b/gnu/packages/webkit.scm @@ -99,21 +99,21 @@ the WPE-flavored port of WebKit.") (define-public wpebackend-fdo (package (name "wpebackend-fdo") - (version "1.6.1") + (version "1.12.0") (source (origin (method url-fetch) (uri (string-append "https://wpewebkit.org/releases/" "wpebackend-fdo-" version ".tar.xz")) (sha256 (base32 - "1jdi43gciqjgvhnqxs160f3hmp1hkqhrllb0hhmldyxc4wryw3kl")))) - (build-system cmake-build-system) + "1b3l02dns1yxw3rq18cv00qan4hp95mxw5b3ssc0fh93ap0wjfb2")))) + (build-system meson-build-system) (arguments `(#:tests? #f)) ;no tests (native-inputs (list pkg-config)) (inputs - (list glib libwpe mesa wayland)) + (list glib libepoxy libwpe mesa wayland)) (home-page "https://wpewebkit.org/") (synopsis "Wayland WPE backend") (description -- cgit v1.3 From 07f45615c3600dd1405349a4f7c775394fbfd40d Mon Sep 17 00:00:00 2001 From: Liliana Marie Prikler Date: Sun, 16 Jan 2022 08:31:16 +0100 Subject: gnu: wpewebkit: Update to 2.34.3 [security fixes]. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This update fixes all the security issues fixed upstream between versions 2.30.5 and 2.34.3: https://webkitgtk.org/news.html * gnu/packages/webkit.scm (wpewebkit): Update to 2.34.3. [#:phases]: Add ‘patch-cmake’ phase to fix an error in the install directories of the documentation. [inputs]: Add lcms. --- gnu/packages/webkit.scm | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/gnu/packages/webkit.scm b/gnu/packages/webkit.scm index d683d0aa5b..dfe780346e 100644 --- a/gnu/packages/webkit.scm +++ b/gnu/packages/webkit.scm @@ -124,7 +124,7 @@ engine that uses Wayland for graphics output.") (define-public wpewebkit (package (name "wpewebkit") - (version "2.30.5") + (version "2.34.3") (source (origin (method url-fetch) @@ -132,7 +132,7 @@ engine that uses Wayland for graphics output.") (string-append "https://wpewebkit.org/releases/" name "-" version ".tar.xz")) (sha256 - (base32 "16imr0kmzhs7dz6jva9750xbsdz9v50playnagabajy30x7pymsb")))) + (base32 "1z20bza01ld4jvi0qx8xsl5y4czaniwpi8hxdjyirj1mrszy8pf3")))) (build-system cmake-build-system) (outputs '("out" "doc")) (arguments @@ -162,6 +162,15 @@ engine that uses Wayland for graphics output.") "/xml/dtd/docbook/docbookx.dtd")))) (find-files "Source" "\\.sgml$")) #t)) + (add-after 'unpack 'patch-cmake + (lambda _ + (substitute* "Source/PlatformWPE.cmake" + (("(Documentation/wpe(-webextensions)?-)\\$\\{WPE_API_VERSION\\}" + all prefix) + (string-append prefix "${WPE_API_DOC_VERSION}")) + (("(html/wpe(-webextensions)?-)\\$\\{WPE_API_VERSION\\}" + all prefix) + (string-append prefix "${WPE_API_DOC_VERSION}"))))) (add-after 'install 'move-doc-files (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) @@ -194,6 +203,7 @@ engine that uses Wayland for graphics output.") ("gst-plugins-base" ,gst-plugins-base) ("harfbuzz" ,harfbuzz) ("icu" ,icu4c) + ("lcms" ,lcms) ("libepoxy" ,libepoxy) ("libgcrypt" ,libgcrypt) ("libjpeg" ,libjpeg-turbo) -- cgit v1.3 From f8bfb2d85682dcabe56a4b1b0f25d566a0abbd2b Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Sat, 29 Jan 2022 17:27:05 -0500 Subject: gnu: texmaker: Don't depend on QtWebKit. The program stopped using QtWebKit in version 5.0. See for more information about this change. * gnu/packages/tex.scm (texmaker)[inputs]: Remove qtwebkit. --- gnu/packages/tex.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 5ee1c3e071..95ff37ca6a 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -7581,7 +7581,7 @@ PDF documents.") (string-append "METAINFODIR=" out "/share/metainfo") "texmaker.pro"))))))) (inputs - (list poppler-qt5 qtbase-5 qtscript qtwebkit zlib)) + (list poppler-qt5 qtbase-5 qtscript zlib)) (native-inputs (list pkg-config)) (home-page "http://www.xm1math.net/texmaker/") -- cgit v1.3 From db17f8b5023122fdc37ab7de5b927303cc4209f9 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Sat, 29 Jan 2022 17:58:21 -0500 Subject: gnu: fcitx5-chinese-addons: Replace the dependency on QtWebKit with QtWebEngine. See for more information about this change. * gnu/packages/fcitx5.scm (fcitx5-chinese-addons)[inputs]: Remove qtwebkit. Add qtdeclarative, qtwebchannel, and qtwebengine. [arguments]: Pass "-DUSE_WEBKIT=off" to #:configure-flags. --- gnu/packages/fcitx5.scm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/gnu/packages/fcitx5.scm b/gnu/packages/fcitx5.scm index 92fc0ea171..66b07b4a51 100644 --- a/gnu/packages/fcitx5.scm +++ b/gnu/packages/fcitx5.scm @@ -284,7 +284,9 @@ for Qt based application.") (base32 "11l76gpcfm0x1f6x5m9s37q7ffa7xcsdydlzjdz2s6kk45fvvq89")))) (build-system cmake-build-system) (arguments - `(#:phases + `(#:configure-flags + '("-DUSE_WEBKIT=off") + #:phases (modify-phases %standard-phases (add-before 'configure 'split-outputs ;; Build with GUI supports requires Qt and increase package closure @@ -305,7 +307,9 @@ for Qt based application.") ("opencc" ,opencc) ("qtbase" ,qtbase-5) ("fcitx5-qt" ,fcitx5-qt) - ("qtwebkit" ,qtwebkit))) + ("qtdeclarative" ,qtdeclarative) + ("qtwebchannel" ,qtwebchannel) + ("qtwebengine" ,qtwebengine))) (native-inputs (list extra-cmake-modules pkg-config)) (outputs '("out" "gui")) -- cgit v1.3 From f928b56d132e426e5a04db6aa3653debbf0938db Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Sat, 29 Jan 2022 18:15:18 -0500 Subject: gnu: choqok: Don't depend on QtWebKit. These dependencies were only used to create a plugin for Konqueror, which Guix does not include. See for more information about this change. * gnu/packages/kde-internet.scm (choqok)[inputs]: Remove kdewebkit and qtwebkit. --- gnu/packages/kde-internet.scm | 2 -- 1 file changed, 2 deletions(-) diff --git a/gnu/packages/kde-internet.scm b/gnu/packages/kde-internet.scm index 4e08bd5337..9de2c54ad3 100644 --- a/gnu/packages/kde-internet.scm +++ b/gnu/packages/kde-internet.scm @@ -70,7 +70,6 @@ kcmutils kconfigwidgets kcoreaddons - kdewebkit kemoticons kglobalaccel kguiaddons @@ -90,7 +89,6 @@ qoauth qtbase-5 qtnetworkauth - qtwebkit sonnet)) (home-page "https://kde.org/applications/internet/org.kde.choqok") (synopsis "Micro-Blogging Client") -- cgit v1.3 From f3d0ed37ea0cadbe56025e62c2f2c5e28014d041 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Sat, 29 Jan 2022 18:29:11 -0500 Subject: gnu: python-black: Document the tomli version requirements. * gnu/packages/python-xyz.scm (python-black): Add comment. --- gnu/packages/python-xyz.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index a1cb1231f9..4f77fae8d0 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -5238,6 +5238,8 @@ matching of file paths.") (arguments `(#:phases (modify-phases %standard-phases + ;; XXX Remove this when updating this package: + ;; https://github.com/psf/black/issues/2703#issuecomment-1004752142 (add-after 'unpack 'relax-version-requirements (lambda _ (substitute* "setup.py" -- cgit v1.3 From 4bd060909da313aa6a105f8d83308263cc11c0da Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Sat, 29 Jan 2022 18:42:26 -0500 Subject: gnu: luminance-hdr: Replace dependency on QtWebKit with QtWebEngine. See for more information about this change. * gnu/packages/image-viewers.scm (luminance-hdr)[inputs]: Remove qtwebkit. Add qtwebengine, qtdeclarative, and qtwebchannel. --- gnu/packages/image-viewers.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/image-viewers.scm b/gnu/packages/image-viewers.scm index b61a79370d..87dffbb93d 100644 --- a/gnu/packages/image-viewers.scm +++ b/gnu/packages/image-viewers.scm @@ -607,7 +607,6 @@ It supports JPEG, PNG and GIF formats.") `(("qtbase" ,qtbase-5) ("qtdeclarative" ,qtdeclarative) ("qtsvg" ,qtsvg) - ("qtwebkit" ,qtwebkit) ("boost" ,boost) ("eigen" ,eigen) ;; ("gtest" ,gtest) @@ -618,6 +617,9 @@ It supports JPEG, PNG and GIF formats.") ("libjpeg" ,libjpeg-turbo) ("lcms" ,lcms) ("openexr" ,openexr-2) + ("qtwebengine" ,qtwebengine) + ("qtdeclarative" ,qtdeclarative) + ("qtwebchannel" ,qtwebchannel) ("fftw" ,fftwf) ("gsl" ,gsl) ("libtiff" ,libtiff))) -- cgit v1.3 From 090e92581611bab97cfdc0b45cc224a3b3736beb Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Sat, 29 Jan 2022 19:17:29 -0500 Subject: gnu: k3b: Do not depend on QtWebKit. According to CMakelists.txt, "Qt5WebKitWidgets is used for prettier k3bdiskinfoview." See for more information about this change. * gnu/packages/kde-multimedia.scm (k3b)[inputs]: Remove qtwebkit. --- gnu/packages/kde-multimedia.scm | 1 - 1 file changed, 1 deletion(-) diff --git a/gnu/packages/kde-multimedia.scm b/gnu/packages/kde-multimedia.scm index e7a2b943e0..4638298939 100644 --- a/gnu/packages/kde-multimedia.scm +++ b/gnu/packages/kde-multimedia.scm @@ -421,7 +421,6 @@ variety of formats.") libvorbis oxygen-icons ; default icon set qtbase-5 - qtwebkit shared-mime-info solid sox -- cgit v1.3 From 6589966b976764e2a197e2bf2b847592dc8715a7 Mon Sep 17 00:00:00 2001 From: Liliana Marie Prikler Date: Sat, 29 Jan 2022 18:54:54 +0100 Subject: gnu: audacity: Add fallback to locate ffmpeg via pkg-config. * gnu/packages/patches/audacity-ffmpeg-fallback.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it here. * gnu/packages/audio.scm (audacity)[patches]: Use it here. [inputs]: Add back ffmpeg. --- gnu/local.mk | 1 + gnu/packages/audio.scm | 2 + .../patches/audacity-ffmpeg-fallback.patch | 66 ++++++++++++++++++++++ 3 files changed, 69 insertions(+) create mode 100644 gnu/packages/patches/audacity-ffmpeg-fallback.patch diff --git a/gnu/local.mk b/gnu/local.mk index 96e6cb08f4..898e8e92e3 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -859,6 +859,7 @@ dist_patch_DATA = \ %D%/packages/patches/ath9k-htc-firmware-gcc-compat.patch \ %D%/packages/patches/ath9k-htc-firmware-objcopy.patch \ %D%/packages/patches/atlas-gfortran-compat.patch \ + %D%/packages/patches/audacity-ffmpeg-fallback.patch \ %D%/packages/patches/audiofile-fix-datatypes-in-tests.patch \ %D%/packages/patches/audiofile-fix-sign-conversion.patch \ %D%/packages/patches/audiofile-CVE-2015-7747.patch \ diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index feccf662b0..22dd88ef0c 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -738,6 +738,7 @@ engineers, musicians, soundtrack editors and composers.") (sha256 (base32 "189agx11361k9j958s6q5bngnnfx0rwaf0dwbjxy6fwvsb1wv3px")) + (patches (search-patches "audacity-ffmpeg-fallback.patch")) (modules '((guix build utils))) (snippet ;; Remove bundled libraries. @@ -768,6 +769,7 @@ engineers, musicians, soundtrack editors and composers.") lame linux-libre-headers flac + ffmpeg libid3tag libjpeg-turbo libmad diff --git a/gnu/packages/patches/audacity-ffmpeg-fallback.patch b/gnu/packages/patches/audacity-ffmpeg-fallback.patch new file mode 100644 index 0000000000..d570d8f605 --- /dev/null +++ b/gnu/packages/patches/audacity-ffmpeg-fallback.patch @@ -0,0 +1,66 @@ +From 3c20057d0cbbbed453a692d4dd4589d865808024 Mon Sep 17 00:00:00 2001 +From: Liliana Marie Prikler +Date: Sat, 29 Jan 2022 10:44:44 +0100 +Subject: [PATCH] Add pkg-config fallback for locating ffmpeg. + +Audacity >=3.1.0 no longer links against ffmpeg, but instead dynamically loads +it. This dynamic loading mechanism fails to properly locate libraries outside +of LD_LIBRARY_PATH. + +See . +--- + libraries/lib-ffmpeg-support/CMakeLists.txt | 8 ++++++++ + libraries/lib-ffmpeg-support/FFmpegFunctions.cpp | 12 ++++++++++++ + 2 files changed, 20 insertions(+) + +diff --git a/libraries/lib-ffmpeg-support/CMakeLists.txt b/libraries/lib-ffmpeg-support/CMakeLists.txt +index 8c5f06d7c..00810e4d0 100644 +--- a/libraries/lib-ffmpeg-support/CMakeLists.txt ++++ b/libraries/lib-ffmpeg-support/CMakeLists.txt +@@ -1,5 +1,7 @@ + + if (${_OPT}use_ffmpeg) ++ pkg_check_modules(FFMPEG libavcodec libavformat libavutil) ++ + set( SOURCES + FFmpegTypes.h + +@@ -100,6 +102,12 @@ if (${_OPT}use_ffmpeg) + list(APPEND DEFINITIONS PRIVATE _DARWIN_C_SOURCE ) + endif() + ++ if (FFMPEG_FOUND) ++ pkg_get_variable(LIBAVCODEC_LIBDIR libavcodec libdir) ++ list(APPEND DEFINITIONS PRIVATE ++ "-DFFMPEG_PC_LIBDIR=L\"${LIBAVCODEC_LIBDIR}\"") ++ endif() ++ + audacity_library( lib-ffmpeg-support "${SOURCES}" "${LIBRARIES}" + "${DEFINITIONS}" "" + ) +diff --git a/libraries/lib-ffmpeg-support/FFmpegFunctions.cpp b/libraries/lib-ffmpeg-support/FFmpegFunctions.cpp +index 66d085a0b..4eeb4aed3 100644 +--- a/libraries/lib-ffmpeg-support/FFmpegFunctions.cpp ++++ b/libraries/lib-ffmpeg-support/FFmpegFunctions.cpp +@@ -238,6 +238,18 @@ struct FFmpegFunctions::Private final + if (library->IsLoaded()) + return library; + ++#if defined(FFMPEG_PC_LIBDIR) ++ { ++ static const wxString libdir{FFMPEG_PC_LIBDIR}; ++ const wxString fullName = wxFileName(libdir, libraryName).GetFullPath(); ++ ++ auto library = std::make_shared(fullName); ++ ++ if (library->IsLoaded()) ++ return library; ++ } ++#endif ++ + // Loading has failed. + // wxLogSysError doesn't report errors correctly on *NIX + #if defined(_WIN32) +-- +2.34.0 + -- cgit v1.3 From 0b1be21d1f8f0c3bc2ac15f80a652f7eed9a76f7 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Thu, 5 Aug 2021 12:49:23 +0300 Subject: gnu: mesa: Add support for riscv64-linux. * gnu/packages/gl.scm (mesa)[inputs]: Add llvm-11 on riscv64-linux. [native-inputs]: Add glslang on riscv64-linux. [arguments]: In configure-flags adjust gallium-drivers to swap the power* and intel drivers for the fallback option. Specify riscv64-linux configure options for vulkan-drivers. Enable the vulkan-overlay-layer and llvm support. Adjust the custom 'disable-failing-test phase to have a riscv64-linux section. --- gnu/packages/gl.scm | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm index fa49679870..b71bc2d490 100644 --- a/gnu/packages/gl.scm +++ b/gnu/packages/gl.scm @@ -261,7 +261,8 @@ also known as DXTn or DXTC) for Mesa.") ("libxrandr" ,libxrandr) ("libxvmc" ,libxvmc) ,@(match (%current-system) - ((or "x86_64-linux" "i686-linux" "powerpc64le-linux" "aarch64-linux" "powerpc-linux") + ((or "x86_64-linux" "i686-linux" "powerpc64le-linux" "aarch64-linux" + "powerpc-linux" "riscv64-linux") ;; Note: update the 'clang' input of mesa-opencl when bumping this. `(("llvm" ,llvm-11))) (_ @@ -273,7 +274,8 @@ also known as DXTn or DXTC) for Mesa.") ("flex" ,flex) ("gettext" ,gettext-minimal) ,@(match (%current-system) - ((or "x86_64-linux" "i686-linux" "powerpc64le-linux" "aarch64-linux" "powerpc-linux") + ((or "x86_64-linux" "i686-linux" "powerpc64le-linux" "aarch64-linux" + "powerpc-linux" "riscv64-linux") `(("glslang" ,glslang))) (_ `())) @@ -289,7 +291,7 @@ also known as DXTn or DXTC) for Mesa.") ((or "armhf-linux" "aarch64-linux") ;; TODO: Fix svga driver for non-Intel architectures. '("-Dgallium-drivers=etnaviv,freedreno,kmsro,lima,nouveau,panfrost,r300,r600,swrast,tegra,v3d,vc4,virgl")) - ((or "powerpc64le-linux" "powerpc-linux") + ((or "powerpc64le-linux" "powerpc-linux" "riscv64-linux") '("-Dgallium-drivers=nouveau,r300,r600,radeonsi,swrast,virgl")) (_ '("-Dgallium-drivers=iris,nouveau,r300,r600,radeonsi,svga,swrast,virgl"))) @@ -315,12 +317,15 @@ also known as DXTn or DXTC) for Mesa.") '("-Dvulkan-drivers=amd,swrast")) ("aarch64-linux" '("-Dvulkan-drivers=freedreno,amd,broadcom,swrast")) + ("riscv64-linux" + '("-Dvulkan-drivers=amd,swrast")) (_ '("-Dvulkan-drivers=auto"))) ;; Enable the Vulkan overlay layer on architectures using llvm. ,@(match (%current-system) - ((or "x86_64-linux" "i686-linux" "powerpc64le-linux" "aarch64-linux" "powerpc-linux") + ((or "x86_64-linux" "i686-linux" "powerpc64le-linux" "aarch64-linux" + "powerpc-linux" "riscv64-linux") '("-Dvulkan-layers=device-select,overlay")) (_ '())) @@ -334,7 +339,7 @@ also known as DXTn or DXTC) for Mesa.") ((or "x86_64-linux" "i686-linux") '("-Ddri-drivers=i915,i965,nouveau,r200,r100" "-Dllvm=enabled")) ; default is x86/x86_64 only - ((or "powerpc64le-linux" "aarch64-linux" "powerpc-linux") + ((or "powerpc64le-linux" "aarch64-linux" "powerpc-linux" "riscv64-linux") '("-Ddri-drivers=nouveau,r200,r100" "-Dllvm=enabled")) (_ @@ -359,6 +364,13 @@ also known as DXTn or DXTC) for Mesa.") (("if with_tests") "if false")) ,@(match (%current-system) + ("riscv64-linux" + ;; According to the test logs the llvm JIT is not designed + ;; for this architecture and the llvmpipe tests all segfault. + ;; The same is true for mesa:gallium / osmesa-render. + `((substitute* '("src/gallium/drivers/llvmpipe/meson.build" + "src/gallium/targets/osmesa/meson.build") + (("if with_tests") "if false")))) ("powerpc64le-linux" ;; Disable some of the llvmpipe tests. `((substitute* "src/gallium/drivers/llvmpipe/lp_test_arit.c" -- cgit v1.3 From dea88100365dafe3bd6774798932f65fcd92cd13 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Sun, 30 Jan 2022 14:57:31 +0200 Subject: gnu: patchelf: Add release-monitoring-url. * gnu/packages/elf.scm (patchelf)[properties]: New field. --- gnu/packages/elf.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/packages/elf.scm b/gnu/packages/elf.scm index 349acf5446..414d6a2856 100644 --- a/gnu/packages/elf.scm +++ b/gnu/packages/elf.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2013, 2014, 2015 Ludovic Courtès ;;; Copyright © 2014, 2015 Mark H Weaver ;;; Copyright © 2015 Andreas Enge -;;; Copyright © 2017, 2018, 2019, 2020, 2021 Efraim Flashner +;;; Copyright © 2017, 2018, 2019, 2020, 2021, 2022 Efraim Flashner ;;; Copyright © 2017 Leo Famulari ;;; Copyright © 2018 Tobias Geerinckx-Rice ;;; Copyright © 2018, 2020 Marius Bakke @@ -281,4 +281,7 @@ static analysis of the ELF binaries at hand.") (description "PatchELF allows the ELF \"interpreter\" and RPATH of an ELF binary to be changed.") + ;; This can probably be removed with the next release. + (properties + '((release-monitoring-url . "https://github.com/NixOS/patchelf/releases"))) (license gpl3+))) -- cgit v1.3 From ab8b76b735237b3722f1bff97f096ce48a222867 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 30 Jan 2022 13:06:10 +0100 Subject: services: zabbix: Support gexps in configuration serializer. This makes it possible to do e.g. (include-files (list (local-file "foo.conf"))). * gnu/services/monitoring.scm (serialize-field, serialize-list, serialize-include-files, serialize-extra-options): Rewrite as gexps. (zabbix-server-config-file, zabbix-agent-config-file): Simplify builders by using FORMAT. --- gnu/services/monitoring.scm | 31 +++++++++++++------------------ 1 file changed, 13 insertions(+), 18 deletions(-) diff --git a/gnu/services/monitoring.scm b/gnu/services/monitoring.scm index ea0f5b8f0e..398fe0bb8b 100644 --- a/gnu/services/monitoring.scm +++ b/gnu/services/monitoring.scm @@ -212,13 +212,16 @@ Prometheus.") #\-)))) (define (serialize-field field-name val) - (format #t "~a=~a~%" (uglify-field-name field-name) val)) + #~(format #f "~a=~a~%" #$(uglify-field-name field-name) #$val)) (define (serialize-number field-name val) (serialize-field field-name (number->string val))) (define (serialize-list field-name val) - (if (null? val) "" (serialize-field field-name (string-join val ",")))) + #~(if (null? '#$val) + "" + #$(serialize-field field-name (string-join val ",")))) + (define (serialize-string field-name val) (if (and (string? val) (string=? val "")) @@ -233,12 +236,12 @@ Prometheus.") (define include-files? list?) (define (serialize-include-files field-name val) - (if (null? val) "" (for-each (cut serialize-field 'include <>) val))) + #~(string-append #$@(map (cut serialize-field 'include <>) val))) (define extra-options? string?) (define (serialize-extra-options field-name val) - (if (null? val) "" (display val))) + #~(if (= 0 (string-length #$val)) "" #$(format #f "~a~%" val))) (define (nginx-server-configuration-list? val) (and (list? val) (and-map nginx-server-configuration? val))) @@ -321,13 +324,9 @@ configuration file.")) #~(begin (call-with-output-file #$output (lambda (port) - (display "# Generated by 'zabbix-server-service'.\n" port) - (display #$(with-output-to-string - (lambda () - (serialize-configuration - config zabbix-server-configuration-fields))) - port) - #t))))) + (format port "# Generated by 'zabbix-server-service'.~%") + (format port #$(serialize-configuration + config zabbix-server-configuration-fields))))))) (define (zabbix-server-activation config) "Return the activation gexp for CONFIG." @@ -509,13 +508,9 @@ configuration file.")) #~(begin (call-with-output-file #$output (lambda (port) - (display "# Generated by 'zabbix-agent-service'.\n" port) - (display #$(with-output-to-string - (lambda () - (serialize-configuration - config zabbix-agent-configuration-fields))) - port) - #t))))) + (format port "# Generated by 'zabbix-agent-service'.~%") + (format port #$(serialize-configuration + config zabbix-agent-configuration-fields))))))) (define (zabbix-agent-shepherd-service config) "Return a for Zabbix agent with CONFIG." -- cgit v1.3 From e1437e7ec1aaba0c70678047c336724cbcc658e0 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 14 Jan 2022 23:40:20 +0000 Subject: gnu: python-asdf: Update to 2.8.3. * gnu/packages/astronomy.scm: (python-asdf): Update to 2.8.3. [inputs]: Use the new style. Move python-importlib-resources, python-jsonschema, python-numpy, python-pyyaml to ... [propagated-inputs]: ... here. Use the new style. Add python-jmespath. Signed-off-by: Vinicius Monego --- gnu/packages/astronomy.scm | 37 +++++++++++++++++++------------------ 1 file changed, 19 insertions(+), 18 deletions(-) diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index e968fd2480..50fe07f9bb 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -5,7 +5,7 @@ ;;; Copyright © 2019 by Amar Singh ;;; Copyright © 2020 R Veera Kumar ;;; Copyright © 2020, 2021 Guillaume Le Vaillant -;;; Copyright © 2021 Sharlatan Hellseher +;;; Copyright © 2021, 2022 Sharlatan Hellseher ;;; Copyright © 2021, 2022 Vinicius Monego ;;; Copyright © 2021 Greg Hogan ;;; Copyright © 2021 Foo Chuan Wei @@ -1460,34 +1460,35 @@ of stand-alone functions and classes.") (define-public python-asdf (package (name "python-asdf") - (version "2.7.4") + (version "2.8.3") (source (origin (method url-fetch) (uri (pypi-uri "asdf" version)) (sha256 - (base32 "1mj52l2m8pbhiqacgjakjpvqi8kyx470yw151lcsswbq5wp0rsc6")))) + (base32 "0i4vq1hsympjgb1yvn4ql0gm8j1mki9ggmj03533kmg0nbzp03yy")))) (build-system python-build-system) (arguments - ;; TODO: (Sharlatan-20210207T165820+0000): Tests depend on astropy, astropy - ;; depends on asdf. Disable circular dependence. + ;; NOTE: (Sharlatan-20211229T201059+0000): Tests depend on astropy and + ;; gwcs, astropy gwcs depend on asdf. Disable circular dependence. `(#:tests? #f)) (native-inputs - `(("packaging" ,python-packaging) - ("semantic-version" ,python-semantic-version) - ("setuptools-scm" ,python-setuptools-scm))) - (inputs - `(("importlib-resources" ,python-importlib-resources) - ("jsonschema" ,python-jsonschema) - ("numpy" ,python-numpy) - ("pyyaml" ,python-pyyaml))) - (home-page "https://github.com/asdf-format/asdf") - (synopsis "Python tools to handle ASDF files") - (description - "The Advanced Scientific Data Format (ASDF) is a next-generation + (list python-setuptools-scm + python-semantic-version + python-packaging)) + (propagated-inputs + (list python-importlib-resources + python-jsonschema + python-jmespath + python-numpy + python-pyyaml)) + (home-page "https://github.com/asdf-format/asdf") + (synopsis "Python tools to handle ASDF files") + (description + "The Advanced Scientific Data Format (ASDF) is a next-generation interchange format for scientific data. This package contains the Python implementation of the ASDF Standard.") - (license license:bsd-3))) + (license license:bsd-3))) (define-public python-astroalign (package -- cgit v1.3 From 89a5c53f382eec3dc4e2b60d819b39ada003df44 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 14 Jan 2022 23:40:21 +0000 Subject: gnu: Add python-asdf-transform-schemas. * gnu/packages/astronomy.scm (python-asdf-transform-schemas): New variable. Signed-off-by: Vinicius Monego --- gnu/packages/astronomy.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 50fe07f9bb..b19282b37c 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -1490,6 +1490,39 @@ interchange format for scientific data. This package contains the Python implementation of the ASDF Standard.") (license license:bsd-3))) +(define python-asdf-transform-schemas + (package + (name "python-asdf-transform-schemas") + (version "0.2.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "asdf_transform_schemas" version)) + (sha256 + (base32 "1gmzd81hw4ppsvzrc91wcbjpcw9hhv9gavllv7nyi7qjb54c837g")))) + (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (replace 'check + (lambda* (#:key inputs outputs tests? #:allow-other-keys) + (when tests? + (add-installed-pythonpath inputs outputs) + (invoke "python" "-m" "pytest"))))))) + (native-inputs + (list python-pytest + python-semantic-version + python-setuptools-scm)) + (propagated-inputs + (list python-asdf)) + (home-page "https://github.com/asdf-format/asdf-transform-schemas") + (synopsis "ASDF schemas for transforms") + (description + "This package provides ASDF schemas for validating transform tags. Users +should not need to install this directly; instead, install an implementation +package such as asdf-astropy.") + (license license:bsd-3))) + (define-public python-astroalign (package (name "python-astroalign") -- cgit v1.3 From 527ee1bdc82d608dc41438c4f3c6e86260aecb85 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 14 Jan 2022 23:40:22 +0000 Subject: gnu: Add python-asdf-coordinates-schemas. * gnu/packages/astronomy.scm (python-asdf-coordinates-schemas): New variable. Signed-off-by: Vinicius Monego --- gnu/packages/astronomy.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index b19282b37c..9df0934d08 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -1523,6 +1523,38 @@ should not need to install this directly; instead, install an implementation package such as asdf-astropy.") (license license:bsd-3))) +(define python-asdf-coordinates-schemas + (package + (name "python-asdf-coordinates-schemas") + (version "0.1.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "asdf_coordinates_schemas" version)) + (sha256 + (base32 "0ahwhsz5jzljnpkfd2kvspirg823lnj5ip9sfkd9cx09z1nlz8jg")))) + (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (replace 'check + (lambda* (#:key inputs outputs tests? #:allow-other-keys) + (when tests? + (add-installed-pythonpath inputs outputs) + (invoke "python" "-m" "pytest"))))))) + (native-inputs + (list python-pytest + python-semantic-version + python-setuptools-scm)) + (propagated-inputs + (list python-asdf)) + (home-page "https://github.com/asdf-format/asdf-coordinates-schemas") + (synopsis "ASDF coordinates schemas") + (description "This package provides ASDF schemas for validating +coordinates tags. Users should not need to install this directly; instead, +install an implementation package such as asdf-astropy.") + (license license:bsd-3))) + (define-public python-astroalign (package (name "python-astroalign") -- cgit v1.3 From 7b2747c81d52dd4727cc642df2ebbce485c7e204 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 14 Jan 2022 23:40:23 +0000 Subject: gnu: Add python-asdf-astropy. * gnu/packages/astronomy.scm (python-asdf-astropy): New variable. Signed-off-by: Vinicius Monego --- gnu/packages/astronomy.scm | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 9df0934d08..ace926051a 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -1555,6 +1555,48 @@ coordinates tags. Users should not need to install this directly; instead, install an implementation package such as asdf-astropy.") (license license:bsd-3))) +(define-public python-asdf-astropy + (package + (name "python-asdf-astropy") + (version "0.1.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "asdf_astropy" version)) + (sha256 + (base32 "0bzgah7gskvnz6jcrzipvzixv8k2jzjkskqwxngzwp4nxgjbcvi4")))) + (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (replace 'check + (lambda* (#:key inputs outputs tests? #:allow-other-keys) + (when tests? + (add-installed-pythonpath inputs outputs) + (invoke "python" "-m" "pytest"))))))) + (native-inputs + (list python-coverage + python-h5py + python-matplotlib + python-pandas + python-pytest-astropy + python-scipy + python-semantic-version + python-setuptools-scm)) + (propagated-inputs + (list python-asdf + python-asdf-coordinates-schemas + python-asdf-transform-schemas + python-astropy + python-numpy + python-packaging)) + (home-page "https://github.com/astropy/asdf-astropy") + (synopsis "ASDF serialization support for astropy") + (description + "This package includes plugins that provide ASDF serialization support for +Astropy objects.") + (license license:bsd-3))) + (define-public python-astroalign (package (name "python-astroalign") -- cgit v1.3 From 007495210d41bcb8dc3ddcf8e04f2d85c75ba990 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 14 Jan 2022 23:40:24 +0000 Subject: gnu: Add python-asdf-wcs-schemas. * gnu/packages/astronomy.scm (python-asdf-wcs-schemas): New variable. Signed-off-by: Vinicius Monego --- gnu/packages/astronomy.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index ace926051a..95f65b4041 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -1597,6 +1597,39 @@ install an implementation package such as asdf-astropy.") Astropy objects.") (license license:bsd-3))) +(define python-asdf-wcs-schemas + (package + (name "python-asdf-wcs-schemas") + (version "0.1.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "asdf_wcs_schemas" version)) + (sha256 + (base32 "0khyab9mnf2lv755as8kwhk3lqqpd3f4291ny3b9yp3ik86fzhz1")))) + (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (replace 'check + (lambda* (#:key inputs outputs tests? #:allow-other-keys) + (when tests? + (add-installed-pythonpath inputs outputs) + (invoke "python" "-m" "pytest"))))))) + (native-inputs + (list python-pytest + python-setuptools-scm + python-semantic-version)) + (propagated-inputs + (list python-asdf)) + (home-page "https://github.com/asdf-format/asdf-wcs-schemas") + (synopsis "ASDF WCS Schemas") + (description + "This package provides ASDF schemas for validating World Coordinate +System (WCS) tags. Users should not need to install this directly; instead, +install an implementation package such as gwcs.") + (license license:bsd-3))) + (define-public python-astroalign (package (name "python-astroalign") -- cgit v1.3 From 3e497b3a4c8146b4e67807f64bea3d986df9894a Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 14 Jan 2022 23:40:25 +0000 Subject: gnu: Add python-gwcs. * gnu/packages/astronomy.scm (python-gwcs): New variable. Signed-off-by: Vinicius Monego --- gnu/packages/astronomy.scm | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 95f65b4041..4614ac86b3 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -1630,6 +1630,52 @@ System (WCS) tags. Users should not need to install this directly; instead, install an implementation package such as gwcs.") (license license:bsd-3))) +(define-public python-gwcs + (package + (name "python-gwcs") + (version "0.18.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "gwcs" version)) + (sha256 + (base32 "194j49m8xjjzv9pp8cnj06igz8sdxb0nphyybcc7mhigw0f0kr30")))) + (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (replace 'check + (lambda* (#:key inputs outputs tests? #:allow-other-keys) + (when tests? + (add-installed-pythonpath inputs outputs) + (invoke "python" "-m" "pytest"))))))) + (native-inputs + (list python-jsonschema + python-jmespath + python-pytest + python-pytest-doctestplus + python-pyyaml + python-semantic-version + python-setuptools-scm)) + (propagated-inputs + (list python-asdf + python-asdf-astropy + python-asdf-wcs-schemas + python-astropy + python-numpy + python-scipy)) + (home-page "https://gwcs.readthedocs.io/en/latest/") + (synopsis "Generalized World Coordinate System") + (description "Generalized World Coordinate System (GWCS) is an Astropy +affiliated package providing tools for managing the World Coordinate System of +astronomical data. + +GWCS takes a general approach to the problem of expressing transformations +between pixel and world coordinates. It supports a data model which includes +the entire transformation pipeline from input coordinates (detector by +default) to world coordinates.") + (license license:bsd-3))) + (define-public python-astroalign (package (name "python-astroalign") -- cgit v1.3 From bb5f6d8cef399d31dd43936649748bb4f816de56 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 30 Jan 2022 15:33:43 +0100 Subject: gnu: waylandpp: Update to 0.2.9. * gnu/packages/freedesktop.scm (waylandpp): Update to 0.2.9. --- gnu/packages/freedesktop.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm index 818d9966dd..f89ec0742f 100644 --- a/gnu/packages/freedesktop.scm +++ b/gnu/packages/freedesktop.scm @@ -1046,7 +1046,7 @@ protocol either in Wayland core, or some other protocol in wayland-protocols.") (define-public waylandpp (package (name "waylandpp") - (version "0.2.8") + (version "0.2.9") (home-page "https://github.com/NilsBrause/waylandpp") (source (origin (method git-fetch) @@ -1054,7 +1054,7 @@ protocol either in Wayland core, or some other protocol in wayland-protocols.") (file-name (git-file-name name version)) (sha256 (base32 - "1kxiqab48p0n97pwg8c2zx56wqq32m3rcq7qd2pjj33ipcanb3qq")))) + "0z4m30r609as3kpcgipivddr98y7h529r7ldn9ba4snhk341mfvk")))) (build-system cmake-build-system) (arguments `(#:tests? #f)) ; no tests -- cgit v1.3 From 5c9c7856a6074027db762ba6c094dba07e62ba13 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 30 Jan 2022 15:36:39 +0100 Subject: gnu: expat: Update replacement to 2.4.4 [fixes CVE-2022-23852, CVE-2022-23990]. * gnu/packages/xml.scm (expat/fixed): Update to 2.4.4. --- gnu/packages/xml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 771c577618..6a897648eb 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -158,7 +158,7 @@ things the parser might find in the XML document (like start tags).") (define expat/fixed (package (inherit expat) - (version "2.4.3") + (version "2.4.4") (source (let ((dot->underscore (lambda (c) (if (char=? #\. c) #\_ c)))) (origin (method url-fetch) @@ -170,7 +170,7 @@ things the parser might find in the XML document (like start tags).") "/expat-" version ".tar.xz"))) (sha256 (base32 - "12kp4h40cpyqqpjqaldag0xq4ig1ljzpkzy9i2marc7blnqz3ydi"))))))) + "1f0iqdy21wcd5nbfgsf8r2d5ilh15mrv8qmm37nw4l9k6xp5vlmm"))))))) (define-public libebml (package -- cgit v1.3 From 753cacb1addfc517b2f4dc129e9da862ca2e70b1 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 30 Jan 2022 16:08:41 +0100 Subject: gnu: util-linux-with-udev: Remove input labels. * gnu/packages/linux.scm (util-linux+udev)[inputs]: Use MODIFY-INPUTS. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index fc67eae365..f4f8d2a769 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1999,8 +1999,8 @@ block devices, UUIDs, TTYs, and many other tools.") util-linux (name "util-linux-with-udev") (inputs - `(("udev" ,eudev) - ,@(package-inputs util-linux))))) + (modify-inputs (package-inputs util-linux) + (prepend eudev))))) ;; This is mostly equivalent to the upstream release version v2.37.3, except ;; that the upstream tarball was generated improperly, which breaks the build. -- cgit v1.3 From 2932c421a3921ccf7dd045cdbd54b23843882d8e Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 30 Jan 2022 16:27:48 +0100 Subject: gnu: OpenSSL: Add 3.0. * gnu/packages/tls.scm (openssl-3.0): New variable. * gnu/packages/patches/openssl-3.0-c-rehash-in.patch: New file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. --- gnu/local.mk | 1 + gnu/packages/patches/openssl-3.0-c-rehash-in.patch | 18 +++++++++++++ gnu/packages/tls.scm | 30 +++++++++++++++++++++- 3 files changed, 48 insertions(+), 1 deletion(-) create mode 100644 gnu/packages/patches/openssl-3.0-c-rehash-in.patch diff --git a/gnu/local.mk b/gnu/local.mk index 898e8e92e3..4822e8e250 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1579,6 +1579,7 @@ dist_patch_DATA = \ %D%/packages/patches/opensles-add-license-file.patch \ %D%/packages/patches/openssl-runpath.patch \ %D%/packages/patches/openssl-1.1-c-rehash-in.patch \ + %D%/packages/patches/openssl-3.0-c-rehash-in.patch \ %D%/packages/patches/openssl-c-rehash-in.patch \ %D%/packages/patches/openssl-CVE-2019-1559.patch \ %D%/packages/patches/open-zwave-hidapi.patch \ diff --git a/gnu/packages/patches/openssl-3.0-c-rehash-in.patch b/gnu/packages/patches/openssl-3.0-c-rehash-in.patch new file mode 100644 index 0000000000..6871e9348c --- /dev/null +++ b/gnu/packages/patches/openssl-3.0-c-rehash-in.patch @@ -0,0 +1,18 @@ +This patch removes the explicit reference to the 'perl' binary, +such that OpenSSL does not retain a reference to Perl. + +The 'c_rehash' program is seldom used, but it is used nonetheless +to create symbolic links to certificates, for instance in the 'nss-certs' +package. + +diff --git a/tools/c_rehash.in b/tools/c_rehash.in +--- a/tools/c_rehash.in ++++ b/tools/c_rehash.in +@@ -1,4 +1,6 @@ +-#!{- $config{HASHBANGPERL} -} ++eval '(exit $?0)' && eval 'exec perl -wS "$0" ${1+"$@"}' ++ & eval 'exec perl -wS "$0" $argv:q' ++ if 0; + {- use OpenSSL::Util; -} + # {- join("\n# ", @autowarntext) -} + # Copyright 1999-2021 The OpenSSL Project Authors. All Rights Reserved. diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm index d5b42c58a0..cf3663ae7d 100644 --- a/gnu/packages/tls.scm +++ b/gnu/packages/tls.scm @@ -9,7 +9,7 @@ ;;; Copyright © 2016, 2017, 2018 Nikita ;;; Copyright © 2016 Hartmut Goebel ;;; Copyright © 2017 Ricardo Wurmus -;;; Copyright © 2017, 2018, 2019, 2020, 2021 Marius Bakke +;;; Copyright © 2017-2022 Marius Bakke ;;; Copyright © 2017–2021 Tobias Geerinckx-Rice ;;; Copyright © 2017 Rutger Helling ;;; Copyright © 2018 Clément Lassieur @@ -528,6 +528,34 @@ OpenSSL for TARGET." (base32 "15kcvdi69jka67sk1l3a50c26cb7xv9xiwdrgky4bji3ifz9k4gq")))))) +(define-public openssl-3.0 + (package + (inherit openssl) + (version "3.0.1") + (source (origin + (method url-fetch) + (uri (list (string-append "https://www.openssl.org/source/openssl-" + version ".tar.gz") + (string-append "ftp://ftp.openssl.org/source/" + "openssl-" version ".tar.gz") + (string-append "ftp://ftp.openssl.org/source/old/" + (string-trim-right version char-set:letter) + "/openssl-" version ".tar.gz"))) + (patches (search-patches "openssl-3.0-c-rehash-in.patch")) + (sha256 + (base32 + "1l86kgn57av5yh711qp7c9zmi2haqmiah0ddxnbfgg2k6f2ss4f3")))) + (arguments + (substitute-keyword-arguments (package-arguments openssl) + ((#:phases phases '%standard-phases) + #~(modify-phases #$phases + (add-before 'configure 'configure-perl + (lambda* (#:key native-inputs inputs #:allow-other-keys) + (setenv "HASHBANGPERL" + (search-input-file (or native-inputs inputs) + "/bin/perl")))))))) + (license license:asl2.0))) + ;; We will not add any new uses of this package. If you add new code that uses ;; this package, your change will be reverted! ;; -- cgit v1.3 From 9b8839099e6c4447ad7c94451817f38f467f1e8f Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 30 Jan 2022 16:29:48 +0100 Subject: gnu: Remove unused patch. * gnu/packages/patches/openssl-CVE-2019-1559.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. --- gnu/local.mk | 1 - gnu/packages/patches/openssl-CVE-2019-1559.patch | 60 ------------------------ 2 files changed, 61 deletions(-) delete mode 100644 gnu/packages/patches/openssl-CVE-2019-1559.patch diff --git a/gnu/local.mk b/gnu/local.mk index 4822e8e250..d0dd972481 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1581,7 +1581,6 @@ dist_patch_DATA = \ %D%/packages/patches/openssl-1.1-c-rehash-in.patch \ %D%/packages/patches/openssl-3.0-c-rehash-in.patch \ %D%/packages/patches/openssl-c-rehash-in.patch \ - %D%/packages/patches/openssl-CVE-2019-1559.patch \ %D%/packages/patches/open-zwave-hidapi.patch \ %D%/packages/patches/orpheus-cast-errors-and-includes.patch \ %D%/packages/patches/osip-CVE-2017-7853.patch \ diff --git a/gnu/packages/patches/openssl-CVE-2019-1559.patch b/gnu/packages/patches/openssl-CVE-2019-1559.patch deleted file mode 100644 index 3e630037b5..0000000000 --- a/gnu/packages/patches/openssl-CVE-2019-1559.patch +++ /dev/null @@ -1,60 +0,0 @@ -From e9bbefbf0f24c57645e7ad6a5a71ae649d18ac8e Mon Sep 17 00:00:00 2001 -From: Matt Caswell -Date: Fri, 14 Dec 2018 07:28:30 +0000 -Subject: [PATCH] Go into the error state if a fatal alert is sent or received - -If an application calls SSL_shutdown after a fatal alert has occured and -then behaves different based on error codes from that function then the -application may be vulnerable to a padding oracle. - -CVE-2019-1559 - -Reviewed-by: Richard Levitte ---- - ssl/d1_pkt.c | 1 + - ssl/s3_pkt.c | 10 +++++++--- - 2 files changed, 8 insertions(+), 3 deletions(-) - -diff --git a/ssl/d1_pkt.c b/ssl/d1_pkt.c -index 23aa9db..c7fe977 100644 ---- a/ssl/d1_pkt.c -+++ b/ssl/d1_pkt.c -@@ -1309,6 +1309,7 @@ int dtls1_read_bytes(SSL *s, int type, unsigned char *buf, int len, int peek) - ERR_add_error_data(2, "SSL alert number ", tmp); - s->shutdown |= SSL_RECEIVED_SHUTDOWN; - SSL_CTX_remove_session(s->session_ctx, s->session); -+ s->state = SSL_ST_ERR; - return (0); - } else { - al = SSL_AD_ILLEGAL_PARAMETER; -diff --git a/ssl/s3_pkt.c b/ssl/s3_pkt.c -index 6527df8..830b723 100644 ---- a/ssl/s3_pkt.c -+++ b/ssl/s3_pkt.c -@@ -1500,6 +1500,7 @@ int ssl3_read_bytes(SSL *s, int type, unsigned char *buf, int len, int peek) - ERR_add_error_data(2, "SSL alert number ", tmp); - s->shutdown |= SSL_RECEIVED_SHUTDOWN; - SSL_CTX_remove_session(s->session_ctx, s->session); -+ s->state = SSL_ST_ERR; - return (0); - } else { - al = SSL_AD_ILLEGAL_PARAMETER; -@@ -1719,9 +1720,12 @@ int ssl3_send_alert(SSL *s, int level, int desc) - * protocol_version alerts */ - if (desc < 0) - return -1; -- /* If a fatal one, remove from cache */ -- if ((level == 2) && (s->session != NULL)) -- SSL_CTX_remove_session(s->session_ctx, s->session); -+ /* If a fatal one, remove from cache and go into the error state */ -+ if (level == SSL3_AL_FATAL) { -+ if (s->session != NULL) -+ SSL_CTX_remove_session(s->session_ctx, s->session); -+ s->state = SSL_ST_ERR; -+ } - - s->s3->alert_dispatch = 1; - s->s3->send_alert[0] = level; --- -2.7.4 - -- cgit v1.3 From 43dd34c7777a212c99a97da7a2c237158faa9a1b Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 30 Jan 2022 17:02:18 +0100 Subject: gnu: Remove OpenSSL 1.0. This package no longer has any users in Guix. * gnu/packages/tls.scm (openssl-1.0): Remove variable. --- gnu/packages/tls.scm | 108 --------------------------------------------------- 1 file changed, 108 deletions(-) diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm index cf3663ae7d..11c01a8d2a 100644 --- a/gnu/packages/tls.scm +++ b/gnu/packages/tls.scm @@ -556,114 +556,6 @@ OpenSSL for TARGET." "/bin/perl")))))))) (license license:asl2.0))) -;; We will not add any new uses of this package. If you add new code that uses -;; this package, your change will be reverted! -;; -;; The only acceptable use for this package is to bootstrap Rust, in -;; ((gnu packages rust) rust-1.19). -;; -;; OpenSSL 1.0 is no longer suppported upstream [0] and has several security -;; vulnerabilities that will not be fixed [1]. -;; -;; For more information from the Guix point of view, see -;; . -;; -;; [0] https://www.openssl.org/policies/releasestrat.html -;; [1] https://www.openssl.org/news/vulnerabilities.html -(define-public openssl-1.0 - (hidden-package - (package - (inherit openssl) - (name "openssl") - (version "1.0.2u") - (source (origin - (method url-fetch) - (uri (list (string-append "https://www.openssl.org/source/openssl-" - version ".tar.gz") - (string-append "ftp://ftp.openssl.org/source/" - "openssl-" version ".tar.gz") - (string-append "ftp://ftp.openssl.org/source/old/" - (string-trim-right version char-set:letter) - "/openssl-" version ".tar.gz"))) - (sha256 - (base32 - "05lxcs4hzyfqd5jn0d9p0fvqna62v2s4pc9qgmq0dpcknkzwdl7c")) - (patches (search-patches "openssl-runpath.patch" - "openssl-c-rehash-in.patch")))) - (outputs '("out" - "doc" ;1.5MiB of man3 pages - "static")) ;6MiB of .a files - (arguments - (substitute-keyword-arguments (package-arguments openssl) - ;; Parallel build is not supported in 1.0.x. - ((#:parallel-build? _ #f) #f) - ((#:phases phases) - #~(modify-phases #$phases - (add-before 'patch-source-shebangs 'patch-tests - (lambda* (#:key inputs native-inputs #:allow-other-keys) - (let ((bash (assoc-ref (or native-inputs inputs) "bash"))) - (substitute* (find-files "test" ".*") - (("/bin/sh") - (string-append bash "/bin/sh")) - (("/bin/rm") - "rm")) - #t))) - (add-before 'configure 'patch-Makefile.org - (lambda* (#:key outputs #:allow-other-keys) - ;; The default MANDIR is some unusual place. Fix that. - (let ((out (assoc-ref outputs "out"))) - (patch-makefile-SHELL "Makefile.org") - (substitute* "Makefile.org" - (("^MANDIR[[:blank:]]*=.*$") - (string-append "MANDIR = " out "/share/man\n"))) - #t))) - (replace 'configure - ;; Override this phase because OpenSSL 1.0 does not understand -rpath. - (lambda* (#:key outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out"))) - (invoke #$@(if (%current-target-system) - #~("./Configure") - #~("./config")) - "shared" ;build shared libraries - "--libdir=lib" - - ;; The default for this catch-all directory is - ;; PREFIX/ssl. Change that to something more - ;; conventional. - (string-append "--openssldir=" out - "/share/openssl-" #$version) - - (string-append "--prefix=" out) - #$@(if (%current-target-system) - '((getenv "CONFIGURE_TARGET_ARCH")) - '()))))) - (delete 'move-extra-documentation) - (add-after 'install 'move-man3-pages - (lambda* (#:key outputs #:allow-other-keys) - ;; Move section 3 man pages to "doc". - (let* ((out (assoc-ref outputs "out")) - (man3 (string-append out "/share/man/man3")) - (doc (assoc-ref outputs "doc")) - (target (string-append doc "/share/man/man3"))) - (mkdir-p target) - (for-each (lambda (file) - (rename-file file - (string-append target "/" - (basename file)))) - (find-files man3)) - (delete-file-recursively man3) - #t))) - ;; XXX: Duplicate this phase to make sure 'version' evaluates - ;; in the current scope and not the inherited one. - (replace 'remove-miscellany - (lambda* (#:key outputs #:allow-other-keys) - ;; The 'misc' directory contains random undocumented shell and Perl - ;; scripts. Remove them to avoid retaining a reference on Perl. - (let ((out (assoc-ref outputs "out"))) - (delete-file-recursively (string-append out "/share/openssl-" - #$version "/misc")) - #t)))))))))) - (define-public bearssl (package (name "bearssl") -- cgit v1.3 From e217174b7b9046658ac3474d522bde192e9cffb4 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 17 Aug 2021 09:52:22 +0300 Subject: gnu: texlive-bin: Fix building on riscv64-linux. * gnu/packages/tex.scm (texlive-bin)[arguments]: Adjust configure-flags for riscv64-linux to skip luajit based binaries. Add phase to skip some tests. --- gnu/packages/tex.scm | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 95ff37ca6a..d890cb6ad3 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -337,13 +337,13 @@ files from LOCATIONS with expected checksum HASH. CODE is not currently in use. "--with-system-teckit" "--with-system-zlib" "--with-system-zziplib" - ;; LuaJIT is not ported to powerpc64le* yet. - ,@(if (string-prefix? "powerpc64le" (or (%current-target-system) - (%current-system))) - '("--disable-luajittex" - "--disable-luajithbtex" - "--disable-mfluajit") - '())) + ;; LuaJIT is not ported to some architectures yet. + ,@(if (or (target-ppc64le?) + (target-riscv64?)) + '("--disable-luajittex" + "--disable-luajithbtex" + "--disable-mfluajit") + '())) ;; Disable tests on some architectures to cope with a failure of ;; luajiterr.test. @@ -381,7 +381,8 @@ files from LOCATIONS with expected checksum HASH. CODE is not currently in use. (substitute* "texk/web2c/omegafonts/check.test" (("^\\./omfonts -ofm2opl \\$srcdir/tests/check tests/xcheck \\|\\| exit 1") "./omfonts -ofm2opl $srcdir/tests/check tests/xcheck || exit 77")))) - ,@(if (target-ppc32?) + ,@(if (or (target-ppc32?) + (target-riscv64?)) ;; Some mendex tests fail on some architectures. `((add-after 'unpack 'skip-mendex-tests (lambda _ -- cgit v1.3 From 4014672172cfca79e4eb59f802d1e13b0448198c Mon Sep 17 00:00:00 2001 From: Vinicius Monego Date: Mon, 31 Jan 2022 09:52:26 -0300 Subject: gnu: shotcut: Update to 22.01.30. * gnu/packages/video.scm (shotcut): Update to 22.01.30. --- gnu/packages/video.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 8a903f6fe1..94562d52ae 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -4831,7 +4831,7 @@ transitions, and effects and then export your film to many common formats.") (define-public shotcut (package (name "shotcut") - (version "21.12.24") + (version "22.01.30") (source (origin (method git-fetch) @@ -4840,7 +4840,7 @@ transitions, and effects and then export your film to many common formats.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1l27dqiyi3af0v155w62ib9xcmqyjj2yzs83aqhcrz5pb3i3j18r")))) + (base32 "0azbzaml743vlpay5dz8i0k66hw4idnambi49wj2yprw7z3skdql")))) (build-system qt-build-system) (arguments `(#:tests? #f ;there are no tests -- cgit v1.3 From 1b778f03e0e08a32180d19f29ed505add7215dcf Mon Sep 17 00:00:00 2001 From: Vinicius Monego Date: Wed, 26 Jan 2022 11:26:43 -0300 Subject: gnu: pre-commit: Update to 2.17.0. * gnu/packages/version-control.scm (pre-commit): Update to 2.17.0. --- gnu/packages/version-control.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index 5a78dc3a6f..e0bac5399a 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -29,7 +29,7 @@ ;;; Copyright © 2020, 2021 Brice Waegeneire ;;; Copyright © 2020 John D. Boy ;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen -;;; Copyright © 2020, 2021 Vinicius Monego +;;; Copyright © 2020, 2021, 2022 Vinicius Monego ;;; Copyright © 2020 Tanguy Le Carrour ;;; Copyright © 2020, 2021 Michael Rohleder ;;; Copyright © 2021 Greg Hogan @@ -1626,7 +1626,7 @@ visualize your public Git repositories on a web interface.") (define-public pre-commit (package (name "pre-commit") - (version "2.16.0") + (version "2.17.0") (source (origin (method git-fetch) ; no tests in PyPI release @@ -1635,7 +1635,7 @@ visualize your public Git repositories on a web interface.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1sf9mqpiv3pgzi6aar7xfna9v7n63lgm7d7b24fhni0jxn56384b")))) + (base32 "1y4h6zrypxgm9j8q66hcx5cs4q2dkh9schzn2nsdmdqad19356s9")))) (build-system python-build-system) (arguments `(#:phases -- cgit v1.3 From c636a8786e33496a3e7aa2010399915afd25900f Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Mon, 31 Jan 2022 15:26:49 +0100 Subject: gnu: java-log4j-api: Update to 2.17.1. * gnu/packages/java.scm (java-log4j-api): Update to 2.17.1. --- gnu/packages/java.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index e54d2ed0cb..97daaa625f 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -7489,14 +7489,14 @@ JavaMail API.") (define-public java-log4j-api (package (name "java-log4j-api") - (version "2.17.0") + (version "2.17.1") (source (origin (method url-fetch) (uri (string-append "mirror://apache/logging/log4j/" version "/apache-log4j-" version "-src.tar.gz")) (sha256 (base32 - "1bn9hrxyvw2d29z7mcd0frcqa8mbxmq59zb6b930zibkq68n1g01")))) + "05xssljdgxfv8ql42db8ydjfsvvbdqmsgip75phybm259ydzbsd6")))) (build-system ant-build-system) (arguments `(#:tests? #f ; tests require unpackaged software -- cgit v1.3 From 9295b911163f386ac63286c1d797718afabf5585 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Mon, 31 Jan 2022 15:52:33 +0100 Subject: gnu: fontmanager: Add missing input. * gnu/packages/fontutils.scm (fontmanager)[native-inputs]: Add python-wrapper. --- gnu/packages/fontutils.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm index bc082de3d3..cd06c345e7 100644 --- a/gnu/packages/fontutils.scm +++ b/gnu/packages/fontutils.scm @@ -898,6 +898,7 @@ generated list of fallback fonts are checked.") ("glib" ,glib "bin") ("gobject-introspection" ,gobject-introspection) ("pkg-config" ,pkg-config) + ("python-wrapper" ,python-wrapper) ("vala" ,vala-0.52) ("yelp-tools" ,yelp-tools))) (inputs -- cgit v1.3 From f32a49fcebcbb8f656f8fc90cb9a5598e083c6cf Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 31 Jan 2022 11:09:26 +0100 Subject: gnu: bwa-meth: Update to 0.2.3. * gnu/packages/bioinformatics.scm (bwa-meth): Update to 0.2.3. --- gnu/packages/bioinformatics.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index dbacb4f1f5..b5d98cbbc6 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -2218,7 +2218,7 @@ well as many of the command line options.") (define-public bwa-meth (package (name "bwa-meth") - (version "0.2.2") + (version "0.2.3") (source (origin (method git-fetch) (uri (git-reference @@ -2227,7 +2227,7 @@ well as many of the command line options.") (file-name (git-file-name name version)) (sha256 (base32 - "17j31i7zws5j7mhsq9x3qgkxly6mlmrgwhfq0qbflgxrmx04yaiz")))) + "0c695lkrr0996zwkibl7324wg2vxmn6522sz30xv4a9gaf0lnbh3")))) (build-system python-build-system) (arguments `(#:phases -- cgit v1.3 From 9ce1fd24e37446b233c4a699770f30f8064f0cb3 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 31 Jan 2022 11:09:57 +0100 Subject: gnu: bwa-meth: Remove trailing #T from build phase. * gnu/packages/bioinformatics.scm (bwa-meth)[arguments]: Remove trailing #T from build phase. --- gnu/packages/bioinformatics.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index b5d98cbbc6..4aa7fb7585 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -2238,8 +2238,7 @@ well as many of the command line options.") (("bwa (mem|index)" _ command) (string-append (which "bwa") " " command)) ;; There's an ill-advised check for "samtools" on PATH. - (("^checkX.*") "")) - #t))))) + (("^checkX.*") ""))))))) (inputs (list bwa)) (native-inputs -- cgit v1.3 From 90b6b857fd2a8bfdd7a739573d8f47fa9642d64c Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 31 Jan 2022 11:47:23 +0100 Subject: gnu: python-louvain: Update to 0.16. * gnu/packages/graph.scm (python-louvain): Update to 0.16. --- gnu/packages/graph.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/graph.scm b/gnu/packages/graph.scm index de68ff78b1..79ea6680e4 100644 --- a/gnu/packages/graph.scm +++ b/gnu/packages/graph.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2017, 2018, 2019, 2020 Ricardo Wurmus +;;; Copyright © 2017, 2018, 2019, 2020, 2022 Ricardo Wurmus ;;; Copyright © 2018 Joshua Sierles, Nextjournal ;;; Copyright © 2018, 2020 Tobias Geerinckx-Rice ;;; Copyright © 2019, 2021 Efraim Flashner @@ -279,13 +279,13 @@ subplots, multiple-axes, polar charts, and bubble charts.") (define-public python-louvain (package (name "python-louvain") - (version "0.15") + (version "0.16") (source (origin (method url-fetch) (uri (pypi-uri "python-louvain" version)) (sha256 - (base32 "1sqp97fwh4asx0jr72x8hil8z8fcg2xq92jklmh2m599pvgnx19a")))) + (base32 "0sx53l555rwq0z7if8agirjgw4ddp8r9b949wwz8vlig03sjvfmp")))) (build-system python-build-system) (native-inputs (list python-setuptools)) ;for use_2to3 support -- cgit v1.3 From cd4bf5ecb46ac73e88076de036e24df1280215c9 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 31 Jan 2022 15:27:54 +0100 Subject: gnu: python-louvain-0.6: Update to 0.7.1. * gnu/packages/graph.scm (python-louvain-0.6): Update to 0.7.1. [arguments]: Add build phases 'find-igraph and 'pretend-version. [native-inputs]: Add python-setuptools-scm and python-wheel. Rename this variable... (python-louvain-0.7): ...to this, naturally. * gnu/packages/bioinformatics.scm (python-scanpy)[propagated-inputs]: Update reference to python-louvain-0.6. --- gnu/packages/bioinformatics.scm | 2 +- gnu/packages/graph.scm | 29 +++++++++++++++++++++++++---- 2 files changed, 26 insertions(+), 5 deletions(-) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 4aa7fb7585..9eefc64184 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -12027,7 +12027,7 @@ implementation differs in these ways: python-igraph python-joblib python-legacy-api-wrap - python-louvain-0.6 + python-louvain-0.7 python-matplotlib python-natsort python-networkx diff --git a/gnu/packages/graph.scm b/gnu/packages/graph.scm index 79ea6680e4..4b46904318 100644 --- a/gnu/packages/graph.scm +++ b/gnu/packages/graph.scm @@ -55,6 +55,7 @@ #:use-module (gnu packages ncurses) #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) + #:use-module (gnu packages python-build) #:use-module (gnu packages python-science) #:use-module (gnu packages python-web) #:use-module (gnu packages python-xyz) @@ -298,10 +299,10 @@ subplots, multiple-axes, polar charts, and bubble charts.") algorithm for community detection in large networks.") (license license:bsd-3))) -(define-public python-louvain-0.6 +(define-public python-louvain-0.7 (package (name "python-louvain") - (version "0.6.1") + (version "0.7.1") ;; The tarball on Pypi does not include the tests. (source (origin (method git-fetch) @@ -311,14 +312,34 @@ algorithm for community detection in large networks.") (file-name (git-file-name name version)) (sha256 (base32 - "0w31537sifkf65sck1iaip5i6d8g64pa3wdwad83d6p9jwkck57k")))) + "1g6b5c2jgwagnhnqh859g61h7x6a81d8hm3g6mkin6kzwafww3g2")))) (build-system python-build-system) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (add-before 'build 'pretend-version + ;; The version string is usually derived via setuptools-scm, but + ;; without the git metadata available this fails. + (lambda _ + (setenv "SETUPTOOLS_SCM_PRETEND_VERSION" #$version))) + (add-before 'build 'find-igraph + (lambda* (#:key inputs #:allow-other-keys) + (setenv "IGRAPH_EXTRA_INCLUDE_PATH" + (string-append (assoc-ref inputs "igraph") + "/include/igraph:" + (getenv "C_INCLUDE_PATH"))) + (setenv "IGRAPH_EXTRA_LIBRARY_PATH" + (getenv "LIBRARY_PATH"))))))) (propagated-inputs (list python-ddt python-igraph)) (inputs (list igraph)) (native-inputs - (list pkg-config python-pytest)) + (list pkg-config + python-pytest + python-setuptools-scm + python-wheel)) (home-page "https://github.com/vtraag/louvain-igraph") (synopsis "Algorithm for methods of community detection in large networks") (description -- cgit v1.3 From ad516f400992c5c95d9e2a19694b5c655a370fee Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 31 Jan 2022 15:39:30 +0100 Subject: gnu: Add python-xlrd-1. * gnu/packages/python-xyz.scm (python-xlrd-1): New variable. --- gnu/packages/python-xyz.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4f77fae8d0..1f40f982ce 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -11419,6 +11419,32 @@ Unicode-aware. It is not intended as an end-user tool.") (define-public python2-xlrd (package-with-python2 python-xlrd)) +;; We need this for python-anndata +(define-public python-xlrd-1 + (package + (inherit python-xlrd) + (name "python-xlrd") + (version "1.2.0") + (source (origin + ;; The tests are not included in the PyPI archive. + (method git-fetch) + (uri (git-reference + (url "https://github.com/python-excel/xlrd") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0sm5p0ii5ayh52ak1jpw0n1kgsv72vdwwp8c3z13l8yf4irsb587")))) + (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + ;; Some tests depend on writing a temporary file to the user's home + ;; directory. + (add-after 'unpack 'fix-tests + (lambda _ + (setenv "HOME" "/tmp")))))))) + ;;; Note: this package is unmaintained since 2018 (archived on GitHub). (define-public python-xlwt (package -- cgit v1.3 From f383aca4086716b07f4e1f06df2aad4d7b796ebc Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 31 Jan 2022 15:39:46 +0100 Subject: gnu: python-anndata: Update to 0.7.8. * gnu/packages/python-xyz.scm (python-anndata): Update to 0.7.8. [arguments]: Embed the appropriate version string instead of letting it try (and fail) to discover the correct string at load time. [propagated-inputs]: Add python-xlrd-1. --- gnu/packages/python-xyz.scm | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 1f40f982ce..945f3319f1 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -22728,7 +22728,7 @@ N-dimensional arrays for Python.") (define-public python-anndata (package (name "python-anndata") - (version "0.7.6") + (version "0.7.8") (source (origin ;; The tarball from PyPi doesn't include tests. @@ -22739,7 +22739,7 @@ N-dimensional arrays for Python.") (file-name (git-file-name name version)) (sha256 (base32 - "1q30bsfsq9xfqm8nmabg3bjh9gix3yng0170xiiyw1lin4xncf0q")))) + "1rrr9xfdaf00ixj5gyym75bl78gkaj55yfw3wjhvx0pdwqpwp9py")))) (build-system python-build-system) (arguments `(#:phases @@ -22754,6 +22754,9 @@ N-dimensional arrays for Python.") (replace 'build (lambda _ (setenv "SETUPTOOLS_SCM_PRETEND_VERSION" ,version) + (substitute* "anndata/_metadata.py" + (("__version__ =.*") + (string-append "__version__ = \"" ,version "\"\n"))) ;; ZIP does not support timestamps before 1980. (setenv "SOURCE_DATE_EPOCH" "315532800") (invoke "flit" "build"))) @@ -22765,8 +22768,7 @@ N-dimensional arrays for Python.") (format #true wheel) (invoke "python" "-m" "pip" "install" wheel (string-append "--prefix=" out))) - (find-files "dist" "\\.whl$"))) - #t))))) + (find-files "dist" "\\.whl$")))))))) (propagated-inputs (list python-h5py python-importlib-metadata @@ -22775,6 +22777,7 @@ N-dimensional arrays for Python.") python-packaging python-pandas python-scipy + python-xlrd-1 python-zarr)) (native-inputs (list python-joblib python-pytest python-toml python-flit -- cgit v1.3 From 9686c828ed330a23357a8fd53e62ef9cdb7288ef Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 31 Jan 2022 15:41:13 +0100 Subject: gnu: python-seaborn: Fix build. * gnu/packages/python-xyz.scm (python-seaborn)[source]: Add patch. [arguments]: Add build phase 'patch-more-tests. * gnu/packages/patches/python-seaborn-2690.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. --- gnu/local.mk | 3 +- gnu/packages/patches/python-seaborn-2690.patch | 268 +++++++++++++++++++++++++ gnu/packages/python-xyz.scm | 19 +- 3 files changed, 288 insertions(+), 2 deletions(-) create mode 100644 gnu/packages/patches/python-seaborn-2690.patch diff --git a/gnu/local.mk b/gnu/local.mk index d0dd972481..9f6966b0cd 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -7,7 +7,7 @@ # Copyright © 2016, 2017, 2018 Kei Kebreau # Copyright © 2016, 2017 Rene Saavedra # Copyright © 2016 Adonay "adfeno" Felipe Nogueira -# Copyright © 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus +# Copyright © 2016, 2017, 2018, 2019, 2020, 2021, 2022 Ricardo Wurmus # Copyright © 2016 Ben Woodcroft # Copyright © 2016, 2017, 2018, 2019 Alex Vong # Copyright © 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner @@ -1725,6 +1725,7 @@ dist_patch_DATA = \ %D%/packages/patches/python-pytorch-system-libraries.patch \ %D%/packages/patches/python-robotframework-source-date-epoch.patch \ %D%/packages/patches/python-seaborn-kde-test.patch \ + %D%/packages/patches/python-seaborn-2690.patch \ %D%/packages/patches/python2-subprocess32-disable-input-test.patch \ %D%/packages/patches/python-unittest2-python3-compat.patch \ %D%/packages/patches/python-unittest2-remove-argparse.patch \ diff --git a/gnu/packages/patches/python-seaborn-2690.patch b/gnu/packages/patches/python-seaborn-2690.patch new file mode 100644 index 0000000000..4662d19c2d --- /dev/null +++ b/gnu/packages/patches/python-seaborn-2690.patch @@ -0,0 +1,268 @@ +This patch was adapted from the upstream pull request 2690. + +From ebd6812d48f5b8ed1ebb7d79bda0b2a7b9ae2812 Mon Sep 17 00:00:00 2001 +From: Michael Waskom +Date: Sun, 31 Oct 2021 15:09:27 -0400 +Subject: [PATCH 1/4] Update boxplot tests for mpl3.5 compatability + +--- + seaborn/tests/test_categorical.py | 30 +++++++++++++++++++----------- + 1 file changed, 19 insertions(+), 11 deletions(-) + +diff --git a/seaborn/tests/test_categorical.py b/seaborn/tests/test_categorical.py +index d4e09b703..488fad2d6 100644 +--- a/seaborn/tests/test_categorical.py ++++ b/seaborn/tests/test_categorical.py +@@ -110,6 +110,11 @@ class CategoricalFixture: + df = pd.DataFrame(dict(y=y, g=g, h=h, u=u)) + x_df["W"] = g + ++ def get_box_artists(self, ax): ++ ++ # Exclude labeled patches, which are for the legend ++ return [p for p in ax.patches if not p.get_label()] ++ + + class TestCategoricalPlotter(CategoricalFixture): + +@@ -855,12 +863,12 @@ def test_hue_offsets(self): + def test_axes_data(self): + + ax = cat.boxplot(x="g", y="y", data=self.df) +- assert len(ax.artists) == 3 ++ assert len(self.get_box_artists(ax)) == 3 + + plt.close("all") + + ax = cat.boxplot(x="g", y="y", hue="h", data=self.df) +- assert len(ax.artists) == 6 ++ assert len(self.get_box_artists(ax)) == 6 + + plt.close("all") + +@@ -868,14 +876,14 @@ def test_box_colors(self): + + ax = cat.boxplot(x="g", y="y", data=self.df, saturation=1) + pal = palettes.color_palette(n_colors=3) +- for patch, color in zip(ax.artists, pal): ++ for patch, color in zip(self.get_box_artists(ax), pal): + assert patch.get_facecolor()[:3] == color + + plt.close("all") + + ax = cat.boxplot(x="g", y="y", hue="h", data=self.df, saturation=1) + pal = palettes.color_palette(n_colors=2) +- for patch, color in zip(ax.artists, pal * 2): ++ for patch, color in zip(self.get_box_artists(ax), pal * 2): + assert patch.get_facecolor()[:3] == color + + plt.close("all") +@@ -884,7 +892,7 @@ def test_draw_missing_boxes(self): + + ax = cat.boxplot(x="g", y="y", data=self.df, + order=["a", "b", "c", "d"]) +- assert len(ax.artists) == 3 ++ assert len(self.get_box_artists(ax)) == 3 + + def test_missing_data(self): + +@@ -894,13 +902,13 @@ def test_missing_data(self): + y[-2:] = np.nan + + ax = cat.boxplot(x=x, y=y) +- assert len(ax.artists) == 3 ++ assert len(self.get_box_artists(ax)) == 3 + + plt.close("all") + + y[-1] = 0 + ax = cat.boxplot(x=x, y=y, hue=h) +- assert len(ax.artists) == 7 ++ assert len(self.get_box_artists(ax)) == 7 + + plt.close("all") + +@@ -2766,11 +2774,11 @@ def test_plot_elements(self): + + g = cat.catplot(x="g", y="y", data=self.df, kind="box") + want_artists = self.g.unique().size +- assert len(g.ax.artists) == want_artists ++ assert len(self.get_box_artists(g.ax)) == want_artists + + g = cat.catplot(x="g", y="y", hue="h", data=self.df, kind="box") + want_artists = self.g.unique().size * self.h.unique().size +- assert len(g.ax.artists) == want_artists ++ assert len(self.get_box_artists(g.ax)) == want_artists + + g = cat.catplot(x="g", y="y", data=self.df, + kind="violin", inner=None) +@@ -3137,14 +3145,14 @@ def test_box_colors(self): + + ax = cat.boxenplot(x="g", y="y", data=self.df, saturation=1) + pal = palettes.color_palette(n_colors=3) +- for patch, color in zip(ax.artists, pal): ++ for patch, color in zip(self.get_box_artists(ax), pal): + assert patch.get_facecolor()[:3] == color + + plt.close("all") + + ax = cat.boxenplot(x="g", y="y", hue="h", data=self.df, saturation=1) + pal = palettes.color_palette(n_colors=2) +- for patch, color in zip(ax.artists, pal * 2): ++ for patch, color in zip(self.get_box_artists(ax), pal * 2): + assert patch.get_facecolor()[:3] == color + + plt.close("all") + +From ff78ed38817a346e760194ab3b03b28d7ea3ba1b Mon Sep 17 00:00:00 2001 +From: Michael Waskom +Date: Sun, 31 Oct 2021 15:50:54 -0400 +Subject: [PATCH 2/4] Update kdeplot tests for mpl3.5 compatability + +--- + seaborn/tests/test_distributions.py | 53 ++++++++++++++++++++--------- + 1 file changed, 37 insertions(+), 16 deletions(-) + +diff --git a/seaborn/tests/test_distributions.py b/seaborn/tests/test_distributions.py +index d241fd978..466efb69e 100644 +--- a/seaborn/tests/test_distributions.py ++++ b/seaborn/tests/test_distributions.py +@@ -39,6 +39,27 @@ + ) + + ++def get_contour_coords(c): ++ """Provide compatability for change in contour artist type in mpl3.5.""" ++ # See https://github.com/matplotlib/matplotlib/issues/20906 ++ if isinstance(c, mpl.collections.LineCollection): ++ return c.get_segments() ++ elif isinstance(c, mpl.collections.PathCollection): ++ return [p.vertices[:np.argmax(p.codes) + 1] for p in c.get_paths()] ++ ++ ++def get_contour_color(c): ++ """Provide compatability for change in contour artist type in mpl3.5.""" ++ # See https://github.com/matplotlib/matplotlib/issues/20906 ++ if isinstance(c, mpl.collections.LineCollection): ++ return c.get_color() ++ elif isinstance(c, mpl.collections.PathCollection): ++ if c.get_facecolor().size: ++ return c.get_facecolor() ++ else: ++ return c.get_edgecolor() ++ ++ + class TestDistPlot(object): + + rs = np.random.RandomState(0) +@@ -902,7 +923,7 @@ def test_fill_artists(self, long_df): + f, ax = plt.subplots() + kdeplot(data=long_df, x="x", y="y", hue="c", fill=fill) + for c in ax.collections: +- if fill: ++ if fill or Version(mpl.__version__) >= Version("3.5.0b0"): + assert isinstance(c, mpl.collections.PathCollection) + else: + assert isinstance(c, mpl.collections.LineCollection) +@@ -918,8 +939,8 @@ def test_common_norm(self, rng): + kdeplot(x=x, y=y, hue=hue, common_norm=True, ax=ax1) + kdeplot(x=x, y=y, hue=hue, common_norm=False, ax=ax2) + +- n_seg_1 = sum([len(c.get_segments()) > 0 for c in ax1.collections]) +- n_seg_2 = sum([len(c.get_segments()) > 0 for c in ax2.collections]) ++ n_seg_1 = sum([len(get_contour_coords(c)) > 0 for c in ax1.collections]) ++ n_seg_2 = sum([len(get_contour_coords(c)) > 0 for c in ax2.collections]) + assert n_seg_2 > n_seg_1 + + def test_log_scale(self, rng): +@@ -946,7 +967,7 @@ def test_log_scale(self, rng): + ax2.contour(10 ** xx, yy, density, levels=levels) + + for c1, c2 in zip(ax1.collections, ax2.collections): +- assert_array_equal(c1.get_segments(), c2.get_segments()) ++ assert_array_equal(get_contour_coords(c1), get_contour_coords(c2)) + + def test_bandwidth(self, rng): + +@@ -959,7 +980,7 @@ def test_bandwidth(self, rng): + kdeplot(x=x, y=y, bw_adjust=2, ax=ax2) + + for c1, c2 in zip(ax1.collections, ax2.collections): +- seg1, seg2 = c1.get_segments(), c2.get_segments() ++ seg1, seg2 = get_contour_coords(c1), get_contour_coords(c2) + if seg1 + seg2: + x1 = seg1[0][:, 0] + x2 = seg2[0][:, 0] +@@ -980,9 +1001,9 @@ def test_weights(self, rng): + kdeplot(x=x, y=y, hue=hue, weights=weights, ax=ax2) + + for c1, c2 in zip(ax1.collections, ax2.collections): +- if c1.get_segments() and c2.get_segments(): +- seg1 = np.concatenate(c1.get_segments(), axis=0) +- seg2 = np.concatenate(c2.get_segments(), axis=0) ++ if get_contour_coords(c1) and get_contour_coords(c2): ++ seg1 = np.concatenate(get_contour_coords(c1), axis=0) ++ seg2 = np.concatenate(get_contour_coords(c2), axis=0) + assert not np.array_equal(seg1, seg2) + + def test_hue_ignores_cmap(self, long_df): +@@ -1030,7 +1051,7 @@ def test_levels_and_thresh(self, long_df): + kdeplot(**plot_kws, levels=np.linspace(thresh, 1, n), ax=ax2) + + for c1, c2 in zip(ax1.collections, ax2.collections): +- assert_array_equal(c1.get_segments(), c2.get_segments()) ++ assert_array_equal(get_contour_coords(c1), get_contour_coords(c2)) + + with pytest.raises(ValueError): + kdeplot(**plot_kws, levels=[0, 1, 2]) +@@ -1042,7 +1063,7 @@ def test_levels_and_thresh(self, long_df): + kdeplot(**plot_kws, levels=n, thresh=0, ax=ax2) + + for c1, c2 in zip(ax1.collections, ax2.collections): +- assert_array_equal(c1.get_segments(), c2.get_segments()) ++ assert_array_equal(get_contour_coords(c1), get_contour_coords(c2)) + for c1, c2 in zip(ax1.collections, ax2.collections): + assert_array_equal(c1.get_facecolors(), c2.get_facecolors()) + +@@ -2322,13 +2343,13 @@ def test_bivariate_kde_norm(self, rng): + z = [0] * 80 + [1] * 20 + + g = displot(x=x, y=y, col=z, kind="kde", levels=10) +- l1 = sum(bool(c.get_segments()) for c in g.axes.flat[0].collections) +- l2 = sum(bool(c.get_segments()) for c in g.axes.flat[1].collections) ++ l1 = sum(bool(get_contour_coords(c)) for c in g.axes.flat[0].collections) ++ l2 = sum(bool(get_contour_coords(c)) for c in g.axes.flat[1].collections) + assert l1 > l2 + + g = displot(x=x, y=y, col=z, kind="kde", levels=10, common_norm=False) +- l1 = sum(bool(c.get_segments()) for c in g.axes.flat[0].collections) +- l2 = sum(bool(c.get_segments()) for c in g.axes.flat[1].collections) ++ l1 = sum(bool(get_contour_coords(c)) for c in g.axes.flat[0].collections) ++ l2 = sum(bool(get_contour_coords(c)) for c in g.axes.flat[1].collections) + assert l1 == l2 + + def test_bivariate_hist_norm(self, rng): + +From a20ce3fabeb23c97b5827d9fb0c6a96ac109ea64 Mon Sep 17 00:00:00 2001 +From: Michael Waskom +Date: Sun, 31 Oct 2021 16:10:47 -0400 +Subject: [PATCH 3/4] Update legend tests for mpl3.5 compatability + +--- + seaborn/tests/test_distributions.py | 5 ++++- + 1 file changed, 4 insertions(+), 1 deletion(-) + +diff --git a/seaborn/tests/test_distributions.py b/seaborn/tests/test_distributions.py +index 466efb69e..024fe7541 100644 +--- a/seaborn/tests/test_distributions.py ++++ b/seaborn/tests/test_distributions.py +@@ -872,7 +872,7 @@ def test_legend(self, long_df): + for label, level in zip(legend_labels, order): + assert label.get_text() == level + +- legend_artists = ax.legend_.findobj(mpl.lines.Line2D)[::2] ++ legend_artists = ax.legend_.findobj(mpl.lines.Line2D) + palette = color_palette() + for artist, color in zip(legend_artists, palette): + assert_colors_equal(artist.get_color(), color) + diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 945f3319f1..cee7dab15a 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -9615,11 +9615,28 @@ SVG, EPS, PNG and terminal output.") (uri (pypi-uri "seaborn" version)) (sha256 (base32 "1xpl3zb945sihsiwm9q1yyx84sakk1phcg0fprj6i0j0dllfjifg")) - (patches (search-patches "python-seaborn-kde-test.patch")))) + (patches (search-patches "python-seaborn-kde-test.patch" + "python-seaborn-2690.patch")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases + (add-after 'unpack 'patch-more-tests + (lambda _ + (substitute* "seaborn/tests/test_distributions.py" + (("get_contour_color\\(ax\\.collections\\[0\\]\\)") + "get_contour_color(ax.collections[0])") + (("c\\.get_color\\(\\)") "get_contour_color(c)") + + ;; These three are borked and have been fixed upstream, but + ;; there's no simple patch we could apply here, so we just + ;; disable them. + (("def test_hue_ignores_cmap") + "def skip_test_hue_ignores_cmap") + (("def test_fill_artists") + "def skip_test_fill_artists") + (("def test_with_rug") + "def skip_test_with_rug")))) (add-before 'check 'start-xserver (lambda _ ;; There must be a running X server and make check doesn't -- cgit v1.3 From 7fc8a6faf6269fd6417e3ed4794504f66899432b Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 31 Jan 2022 16:06:39 +0100 Subject: gnu: Add scvelo. * gnu/packages/bioinformatics.scm (scvelo): New variable. --- gnu/packages/bioinformatics.scm | 63 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 9eefc64184..92a299634f 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -15582,6 +15582,69 @@ aligner.") ;; bwa itself is licenced under GNU General Public License v3.0. (license license:mpl2.0))) +(define-public scvelo + (package + (name "scvelo") + (version "0.2.4") + (source + (origin + (method url-fetch) + (uri (pypi-uri "scvelo" version)) + (sha256 + (base32 "0h5ha1459ljs0qgpnlfsw592i8dxqn6p9bl08l1ikpwk36baxb7z")))) + (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + ;; Numba needs a writable dir to cache functions. + (add-before 'check 'set-numba-cache-dir + (lambda _ + (setenv "NUMBA_CACHE_DIR" "/tmp"))) + (replace 'check + (lambda* (#:key outputs tests? #:allow-other-keys) + (when tests? + ;; The discovered test file names must match the names of the + ;; compiled files, so we cannot run the tests from + ;; /tmp/guix-build-*. + (with-directory-excursion + (string-append (assoc-ref outputs "out") + "/lib/python3.9/site-packages/scvelo/core/tests/") + (invoke "pytest" "-v")))))))) + (propagated-inputs + (list python-anndata + python-hnswlib + python-isort + python-igraph + python-loompy + python-louvain + python-matplotlib + python-numba + python-numpy + python-pandas + python-scanpy + python-scikit-learn + python-scipy + python-umap-learn + pybind11)) + (native-inputs + (list python-black + python-flake8 + python-hypothesis + python-pre-commit + python-pytest + python-setuptools-scm + python-wheel)) + (home-page "https://scvelo.org") + (synopsis "RNA velocity generalized through dynamical modeling") + (description "ScVelo is a scalable toolkit for RNA velocity analysis in +single cells. RNA velocity enables the recovery of directed dynamic +information by leveraging splicing kinetics. scVelo generalizes the concept of +RNA velocity by relaxing previously made assumptions with a stochastic and a +dynamical model that solves the full transcriptional dynamics. It thereby +adapts RNA velocity to widely varying specifications such as non-stationary +populations.") + (license license:bsd-3))) + (define-public scregseg (package (name "scregseg") -- cgit v1.3 From a0bf73143b3662a0b902a06928977f6aeb97573c Mon Sep 17 00:00:00 2001 From: Danny Milosavljevic Date: Mon, 31 Jan 2022 15:14:25 +0100 Subject: gnu: ruby-mustache: Fix race condition. * gnu/packages/patches/ruby-mustache-1.1.1-fix-race-condition-tests.patch: New file. * gnu/packages/ruby.scm (ruby-mustache)[source]<#:origin>: Add it. * gnu/local.mk (dist_patch_DATA): Add it. --- gnu/local.mk | 1 + ...y-mustache-1.1.1-fix-race-condition-tests.patch | 38 ++++++++++++++++++++++ gnu/packages/ruby.scm | 11 ++++++- 3 files changed, 49 insertions(+), 1 deletion(-) create mode 100644 gnu/packages/patches/ruby-mustache-1.1.1-fix-race-condition-tests.patch diff --git a/gnu/local.mk b/gnu/local.mk index 9f6966b0cd..fc1cd93fb2 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1781,6 +1781,7 @@ dist_patch_DATA = \ %D%/packages/patches/rocm-opencl-runtime-4.3-noclinfo.patch \ %D%/packages/patches/rocm-opencl-runtime-4.3-nocltrace.patch \ %D%/packages/patches/rocm-opencl-runtime-4.3-noopencl.patch \ + %D%/packages/patches/ruby-mustache-1.1.1-fix-race-condition-tests.patch \ %D%/packages/patches/ruby-sanitize-system-libxml.patch \ %D%/packages/patches/rustc-1.39.0-src.patch \ %D%/packages/patches/rust-adblock-ignore-live-tests.patch \ diff --git a/gnu/packages/patches/ruby-mustache-1.1.1-fix-race-condition-tests.patch b/gnu/packages/patches/ruby-mustache-1.1.1-fix-race-condition-tests.patch new file mode 100644 index 0000000000..5d5bbaa4d0 --- /dev/null +++ b/gnu/packages/patches/ruby-mustache-1.1.1-fix-race-condition-tests.patch @@ -0,0 +1,38 @@ +From 407c6a5db6c1f1cfb40bd6113f07f067d07885a4 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?V=C3=ADt=20Ondruch?= +Origin: https://github.com/mustache/mustache/pull/258 +Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=954503 +Date: Mon, 27 Apr 2020 11:16:17 +0200 +Subject: [PATCH] Fix test race condition. + +The test suite randomly fails with errors such as: + +~~~ + 1) Failure: +AutoloadingTest#test_autoload_lowercase [/builddir/build/BUILD/mustache-1.1.1/usr/share/gems/gems/mustache-1.1.1/test/autoloading_test.rb:17]: +Expected: Comments + Actual: nil +~~~ + +This happens when `test_namespaced*` test cases are executed earlier +than the remaining test cases, because they are defining +`view_namespace` but not cleaning up afterwards. +--- + test/autoloading_test.rb | 4 ++++ + 1 file changed, 4 insertions(+) + +diff --git a/test/autoloading_test.rb b/test/autoloading_test.rb +index 0a7ad762..77eb3557 100644 +--- a/test/autoloading_test.rb ++++ b/test/autoloading_test.rb +@@ -7,6 +7,10 @@ def setup + Mustache.view_path = File.dirname(__FILE__) + '/fixtures' + end + ++ def teardown ++ Mustache.remove_instance_variable(:@view_namespace) if Mustache.instance_variable_defined?(:@view_namespace) ++ end ++ + def test_autoload + klass = Mustache.view_class(:Comments) + assert_equal Comments, klass diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 9d1a414914..1632ad092b 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -11386,7 +11386,16 @@ serves JavaScript, CoffeeScript, CSS, LESS, Sass, and SCSS.") (base32 "1l0p4wx15mi3wnamfv92ipkia4nsx8qi132c6g51jfdma3fiz2ch")))) (build-system ruby-build-system) (native-inputs - (list ruby-simplecov)) + `(("ruby-simplecov" ,ruby-simplecov) + ("test-patch" + ,(search-patch "ruby-mustache-1.1.1-fix-race-condition-tests.patch")))) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'patch-tests + (lambda* (#:key inputs #:allow-other-keys) + (invoke "patch" "-p1" "--batch" "-i" + (assoc-ref inputs "test-patch"))))))) (synopsis "framework-agnostic way to render logic-free views") (description "Mustache is a framework-agnostic way to render logic-free views. -- cgit v1.3 From 20d68aedbe0954be19fca172634a04797fbf484d Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 31 Jan 2022 18:31:10 +0200 Subject: gnu: poke: Update to 2.0. * gnu/packages/engineering.scm (poke): Update to 2.0. --- gnu/packages/engineering.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index 23133a50eb..8e4614590b 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus ;;; Copyright © 2015 Federico Beffa -;;; Copyright © 2016, 2018, 2020, 2021 Efraim Flashner +;;; Copyright © 2016, 2018, 2020, 2021, 2022 Efraim Flashner ;;; Copyright © 2016 David Thompson ;;; Copyright © 2016, 2017, 2018, 2019, 2021 Ludovic Courtès ;;; Copyright © 2016, 2017, 2018 Theodoros Foradis @@ -2811,13 +2811,13 @@ GUI.") (define-public poke (package (name "poke") - (version "1.4") + (version "2.0") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/poke/poke-" version ".tar.gz")) (sha256 - (base32 "095a0qal1fwnqxnal0xb4mp0n4zy97j3ww1j04ij3jb0jpr4s1ff")) + (base32 "0n4sdfi0lwmva9h47xz32r6mwpaslhq2mcls1ifgpj8jw7rjp0jv")) (modules '((guix build utils))) (snippet '(begin -- cgit v1.3 From 087cdafc9f8ef1d73780ab3e0b4dd340b9e0bce0 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Tue, 21 Dec 2021 10:15:14 +0000 Subject: services: guix: Add nar-herder-service-type. * gnu/services/guix.scm (): New record type. (nar-herder-configuration, nar-herder-configuration?, nar-herder-configuration-package, nar-herder-configuration-user, nar-herder-configuration-group, nar-herder-configuration-mirror nar-herder-configuration-database nar-herder-configuration-database-dump nar-herder-configuration-host nar-herder-configuration-port nar-herder-configuration-storage nar-herder-configuration-storage-limit nar-herder-configuration-storage-nar-removal-criteria nar-herder-shepherd-services, nar-herder-activation, nar-herder-account): New procedures. (nar-herder-service-type): New variable. * gnu/tests/guix.scm (%test-nar-herder): New variable. * doc/guix.texi (Guix Services): Document the new service. --- doc/guix.texi | 72 ++++++++++++++++++++++++ gnu/services/guix.scm | 149 +++++++++++++++++++++++++++++++++++++++++++++++++- gnu/tests/guix.scm | 81 ++++++++++++++++++++++++++- 3 files changed, 298 insertions(+), 4 deletions(-) diff --git a/doc/guix.texi b/doc/guix.texi index 94f8e5e481..c3f36d37ff 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -33637,6 +33637,78 @@ Extra command line options for @code{guix-data-service-process-jobs}. @end table @end deftp +@subsubheading Nar Herder +The @uref{https://git.cbaines.net/guix/nar-herder/about/,Nar Herder} is +a utility for managing a collection of nars. + +@defvar {Scheme Variable} nar-herder-type +Service type for the Guix Data Service. Its value must be a +@code{nar-herder-configuration} object. The service optionally +extends the getmail service, as the guix-commits mailing list is used to +find out about changes in the Guix git repository. +@end defvar + +@deftp {Data Type} nar-herder-configuration +Data type representing the configuration of the Guix Data Service. + +@table @asis +@item @code{package} (default: @code{nar-herder}) +The Nar Herder package to use. + +@item @code{user} (default: @code{"nar-herder"}) +The system user to run the service as. + +@item @code{group} (default: @code{"nar-herder"}) +The system group to run the service as. + +@item @code{port} (default: @code{8734}) +The port to bind the server to. + +@item @code{host} (default: @code{"127.0.0.1"}) +The host to bind the server to. + +@item @code{mirror} (default: @code{#f}) +Optional URL of the other Nar Herder instance which should be mirrored. +This means that this Nar Herder instance will download it's database, +and keep it up to date. + +@item @code{database} (default: @code{"/var/lib/nar-herder/nar_herder.db"}) +Location for the database. If this Nar Herder instance is mirroring +another, the database will be downloaded if it doesn't exist. If this +Nar Herder instance isn't mirroring another, an empty database will be +created. + +@item @code{database-dump} (default: @code{"/var/lib/nar-herder/nar_herder_dump.db"}) +Location of the database dump. This is created and regularly updated by +taking a copy of the database. This is the version of the database that +is available to download. + +@item @code{storage} (default: @code{#f}) +Optional location in which to store nars. + +@item @code{storage-limit} (default: @code{"none"}) +Limit in bytes for the nars stored in the storage location. This can +also be set to ``none'' so that there is no limit. + +When the storage location exceeds this size, nars are removed according +to the nar removal criteria. + +@item @code{storage-nar-removal-criteria} (default: @code{'()}) +Criteria used to remove nars from the storage location. These are used +in conjunction with the storage limit. + +When the storage location exceeds the storage limit size, nars will be +checked against the nar removal criteria and if any of the criteria +match, they will be removed. This will continue until the storage +location is below the storage limit size. + +Each criteria is specified by a string, then an equals sign, then +another string. Currently, only one criteria is supported, checking if a +nar is stored on another Nar Herder instance. + +@end table +@end deftp + @node Linux Services @subsection Linux Services diff --git a/gnu/services/guix.scm b/gnu/services/guix.scm index df5fa13bea..6a5b276b33 100644 --- a/gnu/services/guix.scm +++ b/gnu/services/guix.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2019 Christopher Baines +;;; Copyright © 2019, 2020, 2021, 2022 Christopher Baines ;;; ;;; This file is part of GNU Guix. ;;; @@ -107,7 +107,22 @@ guix-data-service-getmail-idle-mailboxes guix-data-service-commits-getmail-retriever-configuration - guix-data-service-type)) + guix-data-service-type + + nar-herder-service-type + nar-herder-configuration + nar-herder-configuration? + nar-herder-configuration-package + nar-herder-configuration-user + nar-herder-configuration-group + nar-herder-configuration-mirror + nar-herder-configuration-database + nar-herder-configuration-database-dump + nar-herder-configuration-host + nar-herder-configuration-port + nar-herder-configuration-storage + nar-herder-configuration-storage-limit + nar-herder-configuration-storage-nar-removal-criteria)) ;;;; Commentary: ;;; @@ -728,3 +743,133 @@ ca-certificates.crt file in the system profile." (guix-data-service-configuration)) (description "Run an instance of the Guix Data Service."))) + + +;;; +;;; Nar Herder +;;; + +(define-record-type* + nar-herder-configuration make-nar-herder-configuration + nar-herder-configuration? + (package nar-herder-configuration-package + (default nar-herder)) + (user nar-herder-configuration-user + (default "nar-herder")) + (group nar-herder-configuration-group + (default "nar-herder")) + (mirror nar-herder-configuration-mirror + (default #f)) + (database nar-herder-configuration-database + (default "/var/lib/nar-herder/nar_herder.db")) + (database-dump nar-herder-configuration-database-dump + (default "/var/lib/nar-herder/nar_herder_dump.db")) + (host nar-herder-configuration-host + (default "127.0.0.1")) + (port nar-herder-configuration-port + (default 8734)) + (storage nar-herder-configuration-storage + (default #f)) + (storage-limit nar-herder-configuration-storage-limit + (default "none")) + (storage-nar-removal-criteria + nar-herder-configuration-storage-nar-removal-criteria + (default '()))) + +(define (nar-herder-shepherd-services config) + (match-record config + (package user group + mirror + database database-dump + host port + storage storage-limit storage-nar-removal-criteria) + + (unless (or mirror storage) + (error "nar-herder: mirror or storage must be set")) + + (list + (shepherd-service + (documentation "Nar Herder") + (provision '(nar-herder)) + (requirement '(networking)) + (start #~(make-forkexec-constructor + (list #$(file-append package + "/bin/nar-herder") + "run-server" + "--pid-file=/var/run/nar-herder/pid" + #$(string-append "--port=" (number->string port)) + #$(string-append "--host=" host) + #$@(if mirror + (list (string-append "--mirror=" mirror)) + '()) + #$(string-append "--database=" database) + #$(string-append "--database-dump=" database-dump) + #$@(if storage + (list (string-append "--storage=" storage)) + '()) + #$(string-append "--storage-limit=" + (if (number? storage-limit) + (number->string storage-limit) + storage-limit)) + #$@(map (lambda (criteria) + (string-append + "--storage-nar-removal-criteria=" + (match criteria + ((k . v) (simple-format #f "~A=~A" k v)) + (str str)))) + storage-nar-removal-criteria)) + #:user #$user + #:group #$group + #:pid-file "/var/run/nar-herder/pid" + #:environment-variables + `(,(string-append + "GUIX_LOCPATH=" #$glibc-utf8-locales "/lib/locale") + "LC_ALL=en_US.utf8") + #:log-file "/var/log/nar-herder/server.log")) + (stop #~(make-kill-destructor)))))) + +(define (nar-herder-activation config) + #~(begin + (use-modules (guix build utils)) + + (define %user + (getpw #$(nar-herder-configuration-user + config))) + + (chmod "/var/lib/nar-herder" #o755) + + (mkdir-p "/var/log/nar-herder") + + ;; Allow writing the PID file + (mkdir-p "/var/run/nar-herder") + (chown "/var/run/nar-herder" + (passwd:uid %user) + (passwd:gid %user)))) + +(define (nar-herder-account config) + (match-record config + (user group) + (list (user-group + (name group) + (system? #t)) + (user-account + (name user) + (group group) + (system? #t) + (comment "Nar Herder user") + (home-directory "/var/lib/nar-herder") + (shell (file-append shadow "/sbin/nologin")))))) + +(define nar-herder-service-type + (service-type + (name 'nar-herder) + (extensions + (list + (service-extension shepherd-root-service-type + nar-herder-shepherd-services) + (service-extension activation-service-type + nar-herder-activation) + (service-extension account-service-type + nar-herder-account))) + (description + "Run a Nar Herder server."))) diff --git a/gnu/tests/guix.scm b/gnu/tests/guix.scm index 69cac7c1aa..a4c3e35e5d 100644 --- a/gnu/tests/guix.scm +++ b/gnu/tests/guix.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2019 Christopher Baines +;;; Copyright © 2019, 2020, 2021, 2022 Christopher Baines ;;; ;;; This file is part of GNU Guix. ;;; @@ -36,7 +36,8 @@ #:use-module (guix utils) #:use-module (ice-9 match) #:export (%test-guix-build-coordinator - %test-guix-data-service)) + %test-guix-data-service + %test-nar-herder)) ;;; ;;; Guix Build Coordinator @@ -239,3 +240,79 @@ host all all ::1/128 trust")))))) (name "guix-data-service") (description "Connect to a running Guix Data Service.") (value (run-guix-data-service-test)))) + + +;;; +;;; Nar Herder +;;; + +(define %nar-herder-os + (simple-operating-system + (service dhcp-client-service-type) + (service nar-herder-service-type + (nar-herder-configuration + (host "0.0.0.0") + ;; Not a realistic value, but works for the test + (storage "/tmp"))))) + +(define (run-nar-herder-test) + (define os + (marionette-operating-system + %nar-herder-os + #:imported-modules '((gnu services herd) + (guix combinators)))) + + (define forwarded-port + (nar-herder-configuration-port + (nar-herder-configuration))) + + (define vm + (virtual-machine + (operating-system os) + (memory-size 1024) + (port-forwardings `((,forwarded-port . ,forwarded-port))))) + + (define test + (with-imported-modules '((gnu build marionette)) + #~(begin + (use-modules (srfi srfi-11) (srfi srfi-64) + (gnu build marionette) + (web uri) + (web client) + (web response)) + + (define marionette + (make-marionette (list #$vm))) + + (test-runner-current (system-test-runner #$output)) + (test-begin "nar-herder") + + (test-assert "service running" + (marionette-eval + '(begin + (use-modules (gnu services herd)) + (match (start-service 'nar-herder) + (#f #f) + (('service response-parts ...) + (match (assq-ref response-parts 'running) + ((pid) (number? pid)))))) + marionette)) + + (test-equal "http-get" + 404 + (let-values + (((response text) + (http-get #$(simple-format + #f "http://localhost:~A/" forwarded-port) + #:decode-body? #t))) + (response-code response))) + + (test-end)))) + + (gexp->derivation "nar-herder-test" test)) + +(define %test-nar-herder + (system-test + (name "nar-herder") + (description "Connect to a running Nar Herder server.") + (value (run-nar-herder-test)))) -- cgit v1.3 From b3a2c79fdc4ec3794639808c1161870341f175a6 Mon Sep 17 00:00:00 2001 From: Andrew Tropin Date: Thu, 27 Jan 2022 14:54:22 +0300 Subject: gnu: OBS: Use new package style. * gnu/packages/video.scm (obs): Use new package style. Signed-off-by: Leo Famulari --- gnu/packages/video.scm | 76 +++++++++++++++++++++++++------------------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 94562d52ae..de9fb42904 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -3360,21 +3360,20 @@ be used for realtime video capture via Linux-specific APIs.") (search-patches "obs-modules-location.patch")))) (build-system cmake-build-system) (arguments - `(#:configure-flags - (list (string-append "-DOBS_VERSION_OVERRIDE=" ,version) - "-DENABLE_UNIT_TESTS=TRUE" - ;; Browser plugin requires cef, but it is not packaged yet. - ;; - "-DBUILD_BROWSER=FALSE") + (list + #:configure-flags + #~(list (string-append "-DOBS_VERSION_OVERRIDE=" #$version) + "-DENABLE_UNIT_TESTS=TRUE" + ;; Browser plugin requires cef, but it is not packaged yet. + ;; + "-DBUILD_BROWSER=FALSE") #:phases - (modify-phases %standard-phases - (add-after 'install 'wrap-executable - (lambda* (#:key outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out")) - (plugin-path (getenv "QT_PLUGIN_PATH"))) - (wrap-program (string-append out "/bin/obs") - `("QT_PLUGIN_PATH" ":" prefix (,plugin-path)))) - #t))))) + #~(modify-phases %standard-phases + (add-after 'install 'wrap-executable + (lambda* _ + (let ((plugin-path (getenv "QT_PLUGIN_PATH"))) + (wrap-program (string-append #$output "/bin/obs") + `("QT_PLUGIN_PATH" ":" prefix (,plugin-path))))))))) (native-search-paths (list (search-path-specification (variable "OBS_PLUGINS_DIRECTORY") @@ -3387,30 +3386,31 @@ be used for realtime video capture via Linux-specific APIs.") (native-inputs (list cmocka pkg-config)) (inputs - `(("alsa-lib" ,alsa-lib) - ("curl" ,curl) - ("eudev" ,eudev) - ("ffmpeg" ,ffmpeg) - ("fontconfig" ,fontconfig) - ("freetype" ,freetype) - ("glib" ,glib) - ("jack" ,jack-1) - ("jansson" ,jansson) - ("libx264" ,libx264) - ("libxcomposite" ,libxcomposite) - ("mbedtls" ,mbedtls-apache) - ("mesa" ,mesa) - ("pipewire" ,pipewire-0.3) - ("pulseaudio" ,pulseaudio) - ("qtbase" ,qtbase-5) - ("qtsvg" ,qtsvg) - ("qtx11extras" ,qtx11extras) - ("qtwayland" ,qtwayland) - ("speexdsp" ,speexdsp) - ("v4l-utils" ,v4l-utils) - ("wayland" ,wayland) - ("wayland-protocols" ,wayland-protocols) - ("zlib" ,zlib))) + (list + alsa-lib + curl + eudev + ffmpeg + fontconfig + freetype + glib + jack-1 + jansson + libx264 + libxcomposite + mbedtls-apache + mesa + pipewire-0.3 + pulseaudio + qtbase-5 + qtsvg + qtx11extras + qtwayland + speexdsp + v4l-utils + wayland + wayland-protocols + zlib)) (synopsis "Live streaming software") (description "Open Broadcaster Software provides a graphical interface for video recording and live streaming. OBS supports capturing audio and video -- cgit v1.3 From c39ca4c4ae8c0b2bc9f52c3280f5c209f2dac943 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Mon, 31 Jan 2022 12:44:05 -0500 Subject: gnu: linux-libre 5.16: Update to 5.16.4. * gnu/packages/linux.scm (linux-libre-5.16-version): Update to 5.16.4. (linux-libre-5.16-pristine-source, deblob-scripts-5.16): Update hashes. --- gnu/packages/linux.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index f4f8d2a769..df4a701fbc 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -357,17 +357,17 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." ;; The current "stable" kernels. That is, the most recently released major ;; versions that are still supported upstream. -(define-public linux-libre-5.16-version "5.16.3") +(define-public linux-libre-5.16-version "5.16.4") (define-public linux-libre-5.16-gnu-revision "gnu") (define deblob-scripts-5.16 (linux-libre-deblob-scripts linux-libre-5.16-version linux-libre-5.16-gnu-revision (base32 "0c9c8zd85p84r8k4xhys8xw15pds71v0ca2b6hm1pr4f6lpzck0g") - (base32 "121250yms9wysxpspvjgcvy0l97sz7g9flykwy3shnaadjkj9hay"))) + (base32 "14vb7g784rm1s2a2dzs6pnz3998iwdjwx8665myddr7gd197rkaq"))) (define-public linux-libre-5.16-pristine-source (let ((version linux-libre-5.16-version) - (hash (base32 "1cdmp7k6qfm8gyr8zv589y6bgmyj7n6wyk36f98m0w2vq3ljyh5s"))) + (hash (base32 "1gsh7gj5k6kqf5sf26b26rr0idgxdw4xxcba2qaajddyp502mqrb"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-5.16))) -- cgit v1.3 From 65a9dc3dcc256fc52e91ed306b38ad0896cf1708 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Mon, 31 Jan 2022 12:45:03 -0500 Subject: gnu: linux-libre: Update to 5.15.18. * gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.18. (linux-libre-5.15-pristine-source, deblob-scripts-5.18): Update hashes. --- gnu/packages/linux.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index df4a701fbc..7dff445dbd 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -375,17 +375,17 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." ;; The "longterm" kernels — the older releases with long-term upstream support. ;; Here are the support timelines: ;; -(define-public linux-libre-5.15-version "5.15.17") +(define-public linux-libre-5.15-version "5.15.18") (define-public linux-libre-5.15-gnu-revision "gnu") (define deblob-scripts-5.15 (linux-libre-deblob-scripts linux-libre-5.15-version linux-libre-5.15-gnu-revision (base32 "1rfhwfzifmbpnrhmrn3srm736nkm1v6affw915d0fgqzqgi8qfai") - (base32 "15ni12b5nk3ff66i5bh4dzrpgqsgdw8n6v685hi2ps3wgah5mp13"))) + (base32 "0mxm0wy3fyg7fn2n8k9b4zh62l4q00b4y9zf46im691zscwgikc2"))) (define-public linux-libre-5.15-pristine-source (let ((version linux-libre-5.15-version) - (hash (base32 "1pmbf3xin533z4jpqj8p733ii5zk0k36v4cpzl14k62rrk0gb1r7"))) + (hash (base32 "0pkcg3cns4l1i5r7ab77pksl76h54g2mnhvdhc1k8skp9pl71p91"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-5.15))) -- cgit v1.3 From f49ac0848a0074646d5c533178785c4906aa891e Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Mon, 31 Jan 2022 12:46:18 -0500 Subject: gnu: linux-libre 5.10: Update to 5.10.95. * gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.95. (linux-libre-5.10-pristine-source, deblob-scripts-5.10): Update hashes. --- gnu/packages/linux.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 7dff445dbd..3a169c9474 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -390,17 +390,17 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (%upstream-linux-source version hash) deblob-scripts-5.15))) -(define-public linux-libre-5.10-version "5.10.94") +(define-public linux-libre-5.10-version "5.10.95") (define-public linux-libre-5.10-gnu-revision "gnu1") (define deblob-scripts-5.10 (linux-libre-deblob-scripts linux-libre-5.10-version linux-libre-5.10-gnu-revision (base32 "1swy3y851jnnmk3hc0khllpsifb98camlwyskpn1dyvjsgjljd8x") - (base32 "0ybf64jcd8rhpsm056g4038j8lcbxz6l8w817acc0znfcxvgp12r"))) + (base32 "090y0z4a7b643w0v6c6mbgvl04mrlrhanil38mafl6dlnhad9zbl"))) (define-public linux-libre-5.10-pristine-source (let ((version linux-libre-5.10-version) - (hash (base32 "023mrm8wjmxi6qp21p1d0kzs8k0pls6l8kp75ajix2ls9am49zr8"))) + (hash (base32 "08zwcf66varjm2s4lb5a5yh5lh90kb43d6dlrg4xv1179vwxmnf8"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-5.10))) -- cgit v1.3 From e179e9aa879469342fbe2ba505c05053a91adf3e Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Mon, 31 Jan 2022 12:46:45 -0500 Subject: gnu: linux-libre 5.4: Update to 5.4.175. * gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.175. (linux-libre-5.4-pristine-source): Update hash. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 3a169c9474..214eb56539 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -405,7 +405,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (%upstream-linux-source version hash) deblob-scripts-5.10))) -(define-public linux-libre-5.4-version "5.4.174") +(define-public linux-libre-5.4-version "5.4.175") (define-public linux-libre-5.4-gnu-revision "gnu1") (define deblob-scripts-5.4 (linux-libre-deblob-scripts @@ -415,7 +415,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (base32 "1mp9d0b7mqw7cl65k0a18265cvn4qwcpnvna8r6n5m3y4pz3rik9"))) (define-public linux-libre-5.4-pristine-source (let ((version linux-libre-5.4-version) - (hash (base32 "1a88hfcskrcbz7gyh8pkcymka4djdhdy6fdh4i0b9ygsmvjipkg8"))) + (hash (base32 "0h2838jrw69xv1mg1qj0n8qx6g8n48iv8yna633xd20lzggip45c"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-5.4))) -- cgit v1.3 From f94b6663adec2a322d236417552a617dd6fbf006 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Mon, 31 Jan 2022 12:47:08 -0500 Subject: gnu: linux-libre 4.19: Update to 4.19.227. * gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.227. (linux-libre-4.19-pristine-source): Update hash. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 214eb56539..dfc2b5f210 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -420,7 +420,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (%upstream-linux-source version hash) deblob-scripts-5.4))) -(define-public linux-libre-4.19-version "4.19.226") +(define-public linux-libre-4.19-version "4.19.227") (define-public linux-libre-4.19-gnu-revision "gnu1") (define deblob-scripts-4.19 (linux-libre-deblob-scripts @@ -430,7 +430,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (base32 "1mp9d0b7mqw7cl65k0a18265cvn4qwcpnvna8r6n5m3y4pz3rik9"))) (define-public linux-libre-4.19-pristine-source (let ((version linux-libre-4.19-version) - (hash (base32 "1b9qvl994n09708sql3q3g5l3xq2hxam83fnws5asd8mdnk7i7wk"))) + (hash (base32 "0d1jyyxdrpyi35033fjg8g6zz99ffry2ks1wlldfaxfa6wh9dp39"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-4.19))) -- cgit v1.3 From 66939a220b248f3126c19a76a3a86a76dbbada56 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Mon, 31 Jan 2022 12:47:28 -0500 Subject: gnu: linux-libre 4.14: Update to 4.14.264. * gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.264. (linux-libre-4.14-pristine-source): Update hash. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index dfc2b5f210..abdc407c88 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -435,7 +435,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (%upstream-linux-source version hash) deblob-scripts-4.19))) -(define-public linux-libre-4.14-version "4.14.263") +(define-public linux-libre-4.14-version "4.14.264") (define-public linux-libre-4.14-gnu-revision "gnu1") (define deblob-scripts-4.14 (linux-libre-deblob-scripts @@ -445,7 +445,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (base32 "1mp9d0b7mqw7cl65k0a18265cvn4qwcpnvna8r6n5m3y4pz3rik9"))) (define-public linux-libre-4.14-pristine-source (let ((version linux-libre-4.14-version) - (hash (base32 "0bn17p1mmkc37bqv7bvksli4xpyp660mbcjm6jmh6k348i1bfwqf"))) + (hash (base32 "1d1588f0zrq93dk9j8gmvfm9mlniyw98s0i3gmg2sa7h1p04pc2m"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-4.14))) -- cgit v1.3 From 8ff2e6c03e4b70d2587591164debc76a94866e53 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Mon, 31 Jan 2022 12:47:46 -0500 Subject: gnu: linux-libre 4.9: Update to 4.9.299. * gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.299. (linux-libre-4.9-pristine-source): Update hash. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index abdc407c88..9561a3e522 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -450,7 +450,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (%upstream-linux-source version hash) deblob-scripts-4.14))) -(define-public linux-libre-4.9-version "4.9.298") +(define-public linux-libre-4.9-version "4.9.299") (define-public linux-libre-4.9-gnu-revision "gnu1") (define deblob-scripts-4.9 (linux-libre-deblob-scripts @@ -460,7 +460,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (base32 "0wdaj40pcq9wg5xnz2zj3jj8bawhfgqxcwp6dnavbf9lq0gca48p"))) (define-public linux-libre-4.9-pristine-source (let ((version linux-libre-4.9-version) - (hash (base32 "0nrhjqn6bfp9h5dc7yacgkbfvfdhlks8ph4dzqyfjljmx9cf95ym"))) + (hash (base32 "1n0y8hi7ljs9jr3viqhbpshq0wapmyqb8d9vlh4yzg2n5y5qs3l1"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-4.9))) -- cgit v1.3 From e96edb056d128e6b592d46071086578312a440de Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Mon, 31 Jan 2022 12:48:11 -0500 Subject: gnu: linux-libre 4.4: Update to 4.4.301. * gnu/packages/linux.scm (linux-libre-4.4-version): Update to 4.4.301. (linux-libre-4.4-pristine-source): Update hash. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 9561a3e522..15aed1eefe 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -465,7 +465,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (%upstream-linux-source version hash) deblob-scripts-4.9))) -(define-public linux-libre-4.4-version "4.4.300") +(define-public linux-libre-4.4-version "4.4.301") (define-public linux-libre-4.4-gnu-revision "gnu1") (define deblob-scripts-4.4 (linux-libre-deblob-scripts @@ -475,7 +475,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (base32 "0wdaj40pcq9wg5xnz2zj3jj8bawhfgqxcwp6dnavbf9lq0gca48p"))) (define-public linux-libre-4.4-pristine-source (let ((version linux-libre-4.4-version) - (hash (base32 "19mpqg48yi7qm1a2mncqax7pj42accryj6yrkbywd7kj4q0b64kg"))) + (hash (base32 "0x0zq8i806i04p0cl742wxh8pxc0wglww0in98gr2ayp7r8qf7am"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-4.4))) -- cgit v1.3 From 1ebc702923d4398652e684960cfbb8b026e895c1 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Sun, 30 Jan 2022 23:11:06 +0100 Subject: gnu: Add Lokke. * gnu/packages/guile.scm (guile-3.0-for-lokke): New variable. * gnu/packages/guile-xyz.scm (lokke): New variable. * gnu/packages/patches/guile-3.0.7-psyntax-nil.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. --- gnu/local.mk | 1 + gnu/packages/guile-xyz.scm | 48 ++++++++++++++++- gnu/packages/guile.scm | 11 ++++ gnu/packages/patches/guile-3.0.7-psyntax-nil.patch | 63 ++++++++++++++++++++++ 4 files changed, 122 insertions(+), 1 deletion(-) create mode 100644 gnu/packages/patches/guile-3.0.7-psyntax-nil.patch diff --git a/gnu/local.mk b/gnu/local.mk index fc1cd93fb2..1788c4e110 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1228,6 +1228,7 @@ dist_patch_DATA = \ %D%/packages/patches/guile-3.0-relocatable.patch \ %D%/packages/patches/guile-linux-syscalls.patch \ %D%/packages/patches/guile-3.0-linux-syscalls.patch \ + %D%/packages/patches/guile-3.0.7-psyntax-nil.patch \ %D%/packages/patches/guile-fibers-destroy-peer-schedulers.patch \ %D%/packages/patches/guile-gdbm-ffi-support-gdbm-1.14.patch \ %D%/packages/patches/guile-git-adjust-for-libgit2-1.2.0.patch \ diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 5b485b0a4a..38c6def1fc 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès +;;; Copyright © 2012-2022 Ludovic Courtès ;;; Copyright © 2014, 2015, 2018 Mark H Weaver ;;; Copyright © 2015, 2017 Christine Lemmer-Webber ;;; Copyright © 2016 Alex Sassmannshausen @@ -97,6 +97,7 @@ #:use-module (gnu packages nss) #:use-module (gnu packages package-management) #:use-module (gnu packages password-utils) + #:use-module (gnu packages pcre) #:use-module (gnu packages perl) #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) @@ -4924,3 +4925,48 @@ features a parser to parse and serialize GraphQL documents, a type system to create GraphQL schemas, an execution engine to execute GraphQL queries, and a HTTP handler to implement a HTTP GraphQL endpoint.") (license license:agpl3+))) + +(define-public lokke + (let ((commit "92d36370dc6d218ff3bf315e56ebef93808c1b79") + (revision "1")) + (package + (name "lokke") + (version (git-version "0.0.0" revision commit)) + (home-page "https://github.com/lokke-org/lokke") + (source (origin + (method git-fetch) + (uri (git-reference (url home-page) (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1c913md4dcfb0x4n26wbx9wdw453wxg3c5rn49k3f6j8zjqv63yv")))) + (build-system gnu-build-system) + (arguments + '(#:phases + (modify-phases %standard-phases + (add-before 'bootstrap 'pre-bootstrap + (lambda _ + (for-each patch-shebang + '("setup" "gen-makefile" + "dev/gen-module-paths" + "dev/refresh")) + (invoke "./setup"))) + (add-before 'build 'set-home + (lambda _ + (setenv "HOME" (getcwd))))))) + (native-inputs + (list autoconf + automake + libtool + gnu-gettext + pkg-config + guile-3.0-for-lokke)) + (inputs + (list pcre2)) + (synopsis "Clojure implementation in Guile") + (description + "Lokke intends to provide a full dialect of Clojure for Guile. It also +consists of a set of Guile modules providing some of Clojure's functionality +in two different guises.") + ;; Dual license: LGPLv2.1+ or EPLv1.0+ at the user's option. + (license (list license:lgpl2.1+ license:epl1.0))))) diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index 6cfd609916..7597845dd6 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -391,6 +391,17 @@ without requiring the source code to be rewritten.") (define-public guile-3.0-latest guile-3.0) +(define-public guile-3.0-for-lokke + ;; Work around a bug in 3.0.7 regarding #nil handling by psyntax: + ;; . TODO: Replace by 3.0.8 when it's out. + (hidden-package + (package/inherit guile-3.0 + (version (string-append (package-version guile-3.0) ".1")) + (source (origin + (inherit (package-source guile-3.0)) + (patches (cons (search-patch "guile-3.0.7-psyntax-nil.patch") + (origin-patches (package-source guile-3.0))))))))) + (define-public guile-3.0/libgc-7 ;; Using libgc-7 avoid crashes that can occur, particularly when loading ;; data in to the Guix Data Service: diff --git a/gnu/packages/patches/guile-3.0.7-psyntax-nil.patch b/gnu/packages/patches/guile-3.0.7-psyntax-nil.patch new file mode 100644 index 0000000000..7a24e6e9ef --- /dev/null +++ b/gnu/packages/patches/guile-3.0.7-psyntax-nil.patch @@ -0,0 +1,63 @@ +commit d79a226359d28f4a1dc5df136e5544d699903a96 +Author: Rob Browning +Date: Sat Jul 3 14:01:12 2021 -0500 + + Fix crash on #nil in syntaxes + + In 3.0.7 (after 0cc799185576712d69f11fc794454f2f5447bef7 "Ensure + that (syntax ()) results in ("), the use of #nil in syntax-rules + expansions like this: + + (define-syntax foo + (syntax-rules () + ((_ x) (eq? #nil x)))) + + (foo #t) + + could cause a crash that looks like this: + + ice-9/psyntax.scm:2795:12: In procedure syntax-violation: + Syntax error: + unknown location: unexpected syntax in form () + + To fix it, add another special case (the commit mentioned above + special-cased the empty list) to preserve #nil + + * module/ice-9/psyntax.scm (gen-syntax): Preserve #nil. + * test-suite/tests/syntax.test: Test #nil in syntax expansions. + + Closes: 49305 + +diff --git a/module/ice-9/psyntax.scm b/module/ice-9/psyntax.scm +index 663d9275a..bd4bd6723 100644 +--- a/module/ice-9/psyntax.scm ++++ b/module/ice-9/psyntax.scm +@@ -2157,6 +2157,7 @@ + (lambda () + (gen-syntax src #'(e1 e2 ...) r maps ellipsis? mod)) + (lambda (e maps) (values (gen-vector e) maps)))) ++ (x (eq? (syntax->datum #'x) #nil) (values '(quote #nil) maps)) + (() (values '(quote ()) maps)) + (_ (values `(quote ,e) maps)))))) + +diff --git a/test-suite/tests/syntax.test b/test-suite/tests/syntax.test +index a2999ac43..510e7104d 100644 +--- a/test-suite/tests/syntax.test ++++ b/test-suite/tests/syntax.test +@@ -1684,6 +1684,16 @@ + (hash interpreted most-positive-fixnum) + (hash compiled most-positive-fixnum)))) + ++(with-test-prefix "#nil in syntaxes" ++ (pass-if-equal "does not crash" ++ 42 ++ (let () ++ (define-syntax foo ++ (syntax-rules () ++ ;; In 3.0.7 this would crash with ++ ;; unknown location: unexpected syntax in form () ++ ((_ x) (when (eq? x #nil) 42)))) ++ (foo #nil)))) + + ;;; Local Variables: + ;;; eval: (put 'pass-if-syntax-error 'scheme-indent-function 1) -- cgit v1.3 From c355fc5b94b98d6f72f060933f212068da644efe Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Sun, 30 Jan 2022 23:12:42 +0100 Subject: gnu: Remove 'guile-3.0/libgc-7' variant. This variant had become unnecessary with 0aef94e7bcbd272720f14c5343f74da5201ef90a and related changes. * gnu/packages/guile.scm (guile-3.0/libgc-7): Remove. --- gnu/packages/guile.scm | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index 7597845dd6..89055a8f8b 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -402,17 +402,6 @@ without requiring the source code to be rewritten.") (patches (cons (search-patch "guile-3.0.7-psyntax-nil.patch") (origin-patches (package-source guile-3.0))))))))) -(define-public guile-3.0/libgc-7 - ;; Using libgc-7 avoid crashes that can occur, particularly when loading - ;; data in to the Guix Data Service: - ;; https://debbugs.gnu.org/cgi/bugreport.cgi?bug=40525 - (hidden-package - (package - (inherit guile-3.0-latest) - (propagated-inputs - (modify-inputs (package-propagated-inputs guile-3.0) - (replace "bdw-gc" libgc-7)))))) - (define-public guile-3.0/fixed ;; A package of Guile that's rarely changed. It is the one used in the ;; `base' module, and thus changing it entails a full rebuild. -- cgit v1.3 From cff54cc47ce431802722ce12182c40f9e4334cee Mon Sep 17 00:00:00 2001 From: Konrad Hinsen Date: Fri, 28 Jan 2022 18:59:27 +0100 Subject: doc: Document --profile option to "guix shell" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * doc/guix.texi (Invoking guix shell): New paragraph. Signed-off-by: Ludovic Courtès --- doc/guix.texi | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/guix.texi b/doc/guix.texi index c3f36d37ff..8cc0c45e05 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -5824,6 +5824,12 @@ This is similar to the same-named option in @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) and uses the same manifest files. +@item --profile=@var{profile} +@itemx -p @var{profile} +Create an environment containing the packages installed in @var{profile}. +Use @command{guix package} (@pxref{Invoking guix package}) to create +and manage profiles. + @item --pure Unset existing environment variables when building the new environment, except those specified with @option{--preserve} (see below). This has the effect of -- cgit v1.3 From c328d7fca1e42041caa38f71fb544a1171d90695 Mon Sep 17 00:00:00 2001 From: Konrad Hinsen Date: Fri, 28 Jan 2022 19:10:11 +0100 Subject: doc: Document --profile option to "guix environment" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * doc/guix.texi (Invoking guix environment): New paragraph. Signed-off-by: Ludovic Courtès --- doc/guix.texi | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/guix.texi b/doc/guix.texi index 8cc0c45e05..8ee553e257 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -6237,6 +6237,12 @@ interpreted as packages whose dependencies will be added to the environment, the default behavior. Packages appearing after are interpreted as packages that will be added to the environment directly. +@item --profile=@var{profile} +@itemx -p @var{profile} +Create an environment containing the packages installed in @var{profile}. +Use @command{guix package} (@pxref{Invoking guix package}) to create +and manage profiles. + @item --pure Unset existing environment variables when building the new environment, except those specified with @option{--preserve} (see below). This has the effect of -- cgit v1.3 From cd645d9cdda8389d40a8e30a699085199b5cd5cc Mon Sep 17 00:00:00 2001 From: Yusuf Talha Date: Tue, 1 Feb 2022 00:12:55 +0100 Subject: gnu: i3-wm: Update to 4.20.1. * gnu/packages/wm.scm (i3-wm): Update to 4.20.1. [build-system]: Change to MESON-BUILD-SYSTEM. [arguments]: Remove #:configure-flags. --- gnu/packages/wm.scm | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index 9549b073cf..c05003a70e 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -290,22 +290,17 @@ commands would.") (define-public i3-wm (package (name "i3-wm") - (version "4.18.3") + (version "4.20.1") (source (origin (method url-fetch) (uri (string-append "https://i3wm.org/downloads/i3-" - version ".tar.bz2")) + version ".tar.xz")) (sha256 (base32 - "03dijnwv2n8ak9jq59fhq0rc80m5wjc9d54fslqaivnnz81pkbjk")))) - (build-system gnu-build-system) + "1rpwdgykcvmrmdz244f0wm7446ih1dcw8rlc1hm1c7cc42pyrq93")))) + (build-system meson-build-system) (arguments - `(#:configure-flags - ;; The build system tries to build in a separate directory, but that - ;; seems to be unnecessary. - (list "--disable-builddir") - - ;; The test suite requires the unpackaged Xephyr X server. + `(;; The test suite requires the unpackaged Xephyr X server. #:tests? #f #:phases (modify-phases %standard-phases -- cgit v1.3 From 4b297ebc0e8bb1b35490ef536fd7a9512c3dff1e Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Tue, 1 Feb 2022 00:28:26 +0100 Subject: gnu: i3-wm: Add 'upstream-name' and 'release-monitoring-url'. * gnu/packages/wm.scm (i3-wm)[properties]: New field. --- gnu/packages/wm.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index c05003a70e..93040895bf 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -350,6 +350,9 @@ resized. i3 uses a plain-text configuration file, and can be extended and controlled from many programming languages.") + (properties + `((upstream-name . "i3") + (release-monitoring-url . "https://i3wm.org/downloads"))) (license license:bsd-3))) (define-public i3-gaps -- cgit v1.3 From c1043fd60d273c61c80ecfd31fa3a4ea1b24639a Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Thu, 6 Jan 2022 11:10:31 -0500 Subject: doc: Add a rule of thumb to guide enabling new committers. * doc/contributing.texi (Commit Access): Introduce a new rule of thumb to determine if a contributor should be considered to become a committer. --- doc/contributing.texi | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/doc/contributing.texi b/doc/contributing.texi index 196ac48879..c3d41e231f 100644 --- a/doc/contributing.texi +++ b/doc/contributing.texi @@ -1416,9 +1416,14 @@ what your usertag means. @cindex commit access, for developers Everyone can contribute to Guix without having commit access (@pxref{Submitting Patches}). However, for frequent contributors, -having write access to the repository can be convenient. Commit access -should not be thought of as a ``badge of honor'' but rather as a -responsibility a contributor is willing to take to help the project. +having write access to the repository can be convenient. As a rule of +thumb, a contributor should have accumulated fifty (50) reviewed commits +to be considered as a committer and have sustained their activity in the +project for at least 6 months. This ensures enough interactions with +the contributor, which is essential for mentoring and assessing whether +they are ready to become a committer. Commit access should not be +thought of as a ``badge of honor'' but rather as a responsibility a +contributor is willing to take to help the project. The following sections explain how to get commit access, how to be ready to push commits, and the policies and community expectations for commits -- cgit v1.3 From 264162124f814470e06e419ea464b6c6bb9b0a3d Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Wed, 4 Aug 2021 09:46:26 +0300 Subject: gnu: openblas: Fix building on riscv64-linux. * gnu/packages/maths.scm (openblas)[arguments]: Adjust make-flags on riscv64-linux to target the correct architecture when building for riscv64-linux. --- gnu/packages/maths.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 9f7c0476ca..588b7b49d2 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -4554,6 +4554,8 @@ parts of it.") ;; Failed to detect CPU. ((string-prefix? "armhf" system) '("TARGET=ARMV7")) + ((string-prefix? "riscv64" system) + '("TARGET=RISCV64_GENERIC")) (else '())))) ;; no configure script #:phases -- cgit v1.3 From 73d93343baa43733bf1fecc23bcb1f36a78ef615 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Fri, 20 Aug 2021 11:11:44 +0300 Subject: gnu: libaio: Fix test suite on riscv64-linux. * gnu/packages/linux.scm (libaio)[arguments]: Add phase to adjust test code to properly handle riscv. --- gnu/packages/linux.scm | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 15aed1eefe..4d3ff8efd4 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -5263,7 +5263,19 @@ Linux Device Mapper multipathing driver: #:test-target "partcheck" ; need root for a full 'check' #:phases #~(modify-phases %standard-phases - (delete 'configure)))) ; no configure script + (delete 'configure) ; no configure script + ;; TODO: Make this phase unconditional on core-updates. + #$@(if (target-riscv64?) + '((add-before 'check 'patch-for-riscv-support + (lambda _ + ;; Taken from the upstream repo: + ;; https://pagure.io/libaio/c/f322f467c3cd2ac4d8d08a19bd281eabb65433b1?branch=master + (substitute* "harness/cases/16.t" + (("(elif defined\\(__aarch64__\\))" all) + (string-append all " || defined(__riscv)")) + (("(endif /* __aarch64__)" all) + (string-append all " || __riscv ")))))) + '())))) (home-page "https://pagure.io/libaio") (synopsis "Linux-native asynchronous I/O access library") (description -- cgit v1.3 From c5000dcc375229ff42727f090d4243107d3a04a6 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 1 Feb 2022 12:33:28 +0200 Subject: gnu: %final-inputs-riscv64: Add comment. * gnu/packages/commencement.scm (%final-inputs-riscv64): Add comment explaining why this variable needs to exist. --- gnu/packages/commencement.scm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index 96d914344d..3fb4b2054f 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -3737,6 +3737,15 @@ exec ~a/bin/~a-~a -B~a/lib -Wl,-dynamic-linker -Wl,~a/~a \"$@\"~%" ("locales" ,glibc-utf8-locales-final)))) (define-public %final-inputs-riscv64 + ;; This is similar to the added (list gcc "lib") elsewhere in this file, but + ;; due to how (%current-system) is re-defined when performing builds with the + ;; '--system' flag, %final-inputs is too early in the evaulation pipeline to + ;; correctly identify the system for which a derivation will be built. Thus, + ;; since (%current-system) is re-determined by (guix build-system gnu) after + ;; loading %final-inputs but before taking into account the '--system' flag, + ;; the test for (target-riscv64?) needs to be in (guix build-system gnu), + ;; with %final-inputs-riscv64 already available at the same time that + ;; %final-inputs is available. `(("gcc:lib" ,gcc-final "lib") ,@%final-inputs)) -- cgit v1.3 From 305330a58555f1fb3b10b2fe92e0016317f70204 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 1 Feb 2022 12:49:37 +0200 Subject: gnu: python-ipython: Fix CVE detection. * gnu/packages/python-xyz.scm (python-ipython)[properties]: New field. --- gnu/packages/python-xyz.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index cee7dab15a..3be20df7e1 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -8872,6 +8872,7 @@ callback signature using a prototype function.") Powerful interactive shells, a browser-based notebook, support for interactive data visualization, embeddable interpreters and tools for parallel computing.") + (properties '((cpe-name . "ipython"))) (license license:bsd-3))) (define-public python-ipython-documentation -- cgit v1.3 From ce721bd2ce7b58c57402db393baa31b945b03b8e Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Thu, 27 Jan 2022 23:14:26 -0500 Subject: gnu: git-annex: Update to 10.20220127. * gnu/packages/haskell-apps.scm (git-annex): Update to 10.20220127. Signed-off-by: Efraim Flashner --- gnu/packages/haskell-apps.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/haskell-apps.scm b/gnu/packages/haskell-apps.scm index 7f777a0873..3ab2f471f6 100644 --- a/gnu/packages/haskell-apps.scm +++ b/gnu/packages/haskell-apps.scm @@ -306,14 +306,14 @@ to @code{cabal repl}).") (define-public git-annex (package (name "git-annex") - (version "8.20211231") + (version "10.20220127") (source (origin (method url-fetch) (uri (string-append "https://hackage.haskell.org/package/" "git-annex/git-annex-" version ".tar.gz")) (sha256 - (base32 "0cpa3rl8vcm0arima8x9m5q0a9r05z0851ibr1vcria2z0mmwmi7")))) + (base32 "06s80fa91cnn2r5n6d52lqqp3hpc4ksag82razs7sj19iwixan2w")))) (build-system haskell-build-system) (arguments `(#:configure-flags -- cgit v1.3 From 239dc64c7d206957e0fb3f064e1799e205bf74ed Mon Sep 17 00:00:00 2001 From: jgart via Guix-patches via Date: Tue, 1 Feb 2022 04:54:21 -0500 Subject: gnu: lagrange: Update to 1.10.3. * gnu/packages/web-browsers.scm (lagrange): Update to 1.10.3. Signed-off-by: Efraim Flashner --- gnu/packages/web-browsers.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm index 8e513f01a2..c49e3ceac5 100644 --- a/gnu/packages/web-browsers.scm +++ b/gnu/packages/web-browsers.scm @@ -692,7 +692,7 @@ is fully configurable and extensible in Common Lisp.") (define-public lagrange (package (name "lagrange") - (version "1.10.2") + (version "1.10.3") (source (origin (method url-fetch) @@ -700,7 +700,7 @@ is fully configurable and extensible in Common Lisp.") (string-append "https://git.skyjake.fi/skyjake/lagrange/releases/" "download/v" version "/lagrange-" version ".tar.gz")) (sha256 - (base32 "1zxvfl0fmkixralzj9jcshbbl2p3918js8qb4nra8pjkrrkaidbn")) + (base32 "0s3qi5sxn75aiix0lr8q54w1rcw6yyvmkvdlk5hvsyg8cvs3fa84")) (modules '((guix build utils))) (snippet '(begin -- cgit v1.3 From 664794e630969ce390e017d28176f0c2c8c308da Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:23 +0100 Subject: gnu: r-datawizard: Update to 0.2.3. * gnu/packages/cran.scm (r-datawizard): Update to 0.2.3. --- gnu/packages/cran.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 80e2ca9021..4dc8582c12 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -187,14 +187,14 @@ etc.") (define-public r-datawizard (package (name "r-datawizard") - (version "0.2.2") + (version "0.2.3") (source (origin (method url-fetch) (uri (cran-uri "datawizard" version)) (sha256 (base32 - "0sd0blrczf9qz5kd0jg112fag2w401kkbw1gp9wi5pgffgwp6va3")))) + "0hcnwz42zy9hp32brga31jwk34bz063myqjp2wfxsqm4sqrkv2rx")))) (properties `((upstream-name . "datawizard"))) (build-system r-build-system) (propagated-inputs -- cgit v1.3 From d6bdad4d97dda1efc84d861c448902c01b50f708 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:28 +0100 Subject: gnu: r-glue: Update to 1.6.1. * gnu/packages/cran.scm (r-glue): Update to 1.6.1. --- gnu/packages/cran.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 4dc8582c12..dc5e7b7bff 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -3043,14 +3043,14 @@ colors are provided.") (define-public r-glue (package (name "r-glue") - (version "1.6.0") + (version "1.6.1") (source (origin (method url-fetch) (uri (cran-uri "glue" version)) (sha256 (base32 - "0f23dgnc7rv81vhmdhmiwk666mqwb602hxzai1hssyn4y9zg7gkp")))) + "1nvqm4fmxyszz9b2y0gjiwbvwssdqj9jflcz00b4487i8jajz31i")))) (build-system r-build-system) ;; knitr depends on glue, so we can't add knitr here to build the ;; vignettes. -- cgit v1.3 From 627c039e22cea9833dd45e2ddf099c17da5d2027 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:29 +0100 Subject: gnu: r-rcppthread: Update to 2.0.1. * gnu/packages/cran.scm (r-rcppthread): Update to 2.0.1. --- gnu/packages/cran.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index dc5e7b7bff..67b04e1d45 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -3311,14 +3311,14 @@ and Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see (define-public r-rcppthread (package (name "r-rcppthread") - (version "1.0.0") + (version "2.0.1") (source (origin (method url-fetch) (uri (cran-uri "RcppThread" version)) (sha256 (base32 - "1xfcxrny779kgknlvnc4j02ifprnakndnkhx8bhy50d39vp4hjjl")))) + "1hcxdk9mhsnrgg2bp7ls165abwb7b5grgh1gvf2i7sqrf9ggwa09")))) (properties `((upstream-name . "RcppThread"))) (build-system r-build-system) (home-page -- cgit v1.3 From cbf65ae59afe03a239adf8bed1976e1bad52e99a Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:29 +0100 Subject: gnu: r-energy: Update to 1.7-9. * gnu/packages/cran.scm (r-energy): Update to 1.7-9. --- gnu/packages/cran.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 67b04e1d45..6dc57312a0 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -4283,14 +4283,14 @@ data). Weighted versions of MLE, MME and QME are available.") (define-public r-energy (package (name "r-energy") - (version "1.7-8") + (version "1.7-9") (source (origin (method url-fetch) (uri (cran-uri "energy" version)) (sha256 (base32 - "12a7gy681aq3l55iys044cs6sn1s2l5qihghpdl01cvv0ggfh26y")))) + "1ndssfi0hbnsm5jwrns7m63ppxm221hd6gk0b0wa1a7mk7ny1l38")))) (build-system r-build-system) (propagated-inputs (list r-boot r-gsl r-rcpp)) -- cgit v1.3 From 25160b767fa7f943cb7e7ff8f85983a1a4edcc26 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:29 +0100 Subject: gnu: r-broom: Update to 0.7.12. * gnu/packages/cran.scm (r-broom): Update to 0.7.12. --- gnu/packages/cran.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 6dc57312a0..13a0c78fc3 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -4838,14 +4838,14 @@ by base R methods related to model fitting.") (define-public r-broom (package (name "r-broom") - (version "0.7.11") + (version "0.7.12") (source (origin (method url-fetch) (uri (cran-uri "broom" version)) (sha256 (base32 - "069fp8lscw59nmsm658w0164cpgfa36xx09s9j7jxisscg99jfcy")))) + "1nbv4a4s8548h2q226xmhyp42higayh95yvllh1rcs264lmw3yh4")))) (build-system r-build-system) (propagated-inputs (list r-backports -- cgit v1.3 From 69e7c3abbad46203d425d8e3813ef5a7d96b450e Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:29 +0100 Subject: gnu: r-pillar: Update to 1.6.5. * gnu/packages/cran.scm (r-pillar): Update to 1.6.5. [propagated-inputs]: Add r-glue. --- gnu/packages/cran.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 13a0c78fc3..7d78dbf7e1 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -5937,20 +5937,21 @@ to variables on the left-hand side of the assignment.") (define-public r-pillar (package (name "r-pillar") - (version "1.6.4") + (version "1.6.5") (source (origin (method url-fetch) (uri (cran-uri "pillar" version)) (sha256 (base32 - "17m13rzgwdddwa0n3gpmax6wmfaphbg71l13ffhw5vnxf6i94fh3")))) + "1nqv86zb51jgd6jbhgnyq6j53dzsjx7gwaapndfd3yvp0sxg3yr2")))) (build-system r-build-system) (propagated-inputs (list r-cli r-crayon r-ellipsis r-fansi + r-glue r-lifecycle r-rlang r-utf8 -- cgit v1.3 From 300a06f6ea9b6f0aab965791e04a84cc43971b8d Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:30 +0100 Subject: gnu: r-randomizr: Update to 0.22.0. * gnu/packages/cran.scm (r-randomizr): Update to 0.22.0. --- gnu/packages/cran.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 7d78dbf7e1..22994da659 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -7067,14 +7067,14 @@ environment within Shiny.") (define-public r-randomizr (package (name "r-randomizr") - (version "0.20.0") + (version "0.22.0") (source (origin (method url-fetch) (uri (cran-uri "randomizr" version)) (sha256 (base32 - "0dljyfldnardaps3fq6vi5wcs9x6qfaq5apapa78c51lnaa6fn9h")))) + "1grm0h3xkb0pdbbv0gd531g1kn6njp0gcy5fh153rrmajxgd8hhw")))) (properties `((upstream-name . "randomizr"))) (build-system r-build-system) (native-inputs -- cgit v1.3 From 17cd7adfecaa08214a464ae193e888fc06d04158 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:30 +0100 Subject: gnu: r-rastervis: Update to 0.51.2. * gnu/packages/cran.scm (r-rastervis): Update to 0.51.2. --- gnu/packages/cran.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 22994da659..e63cee3f89 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -8042,14 +8042,14 @@ Python's @url{https://github.com/ActiveState/appdirs,Appdirs} to R.") (define-public r-rastervis (package (name "r-rastervis") - (version "0.51.1") + (version "0.51.2") (source (origin (method url-fetch) (uri (cran-uri "rasterVis" version)) (sha256 (base32 - "1mg11njzajx9az6xjghjl2sna6wzs85ga8fhy9w43l2n8icsfbr2")))) + "0kgg6cm7xjqya2d46w0i1i1wjpkb8f99lyqy7rgwa7l9xmwzj5n1")))) (properties `((upstream-name . "rasterVis"))) (build-system r-build-system) (propagated-inputs -- cgit v1.3 From c99e7e893e2168874c220055a7b5e9ea1c20cb5c Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:30 +0100 Subject: gnu: r-renv: Update to 0.15.2. * gnu/packages/cran.scm (r-renv): Update to 0.15.2. --- gnu/packages/cran.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index e63cee3f89..edfdec42d4 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -8099,14 +8099,14 @@ those searches and pull data into their R sessions.") (define-public r-renv (package (name "r-renv") - (version "0.15.1") + (version "0.15.2") (source (origin (method url-fetch) (uri (cran-uri "renv" version)) (sha256 (base32 - "0nwvdzwyjvqlvkwp1yhhvqm8b9pwimwng99s0m0j63zm9bgwis1n")))) + "1nv5hz40cbvdbc2kkr2q2xqnpkgkmp47nlfbr7z57mpn579zyznh")))) (properties `((upstream-name . "renv"))) (build-system r-build-system) (native-inputs -- cgit v1.3 From 03ffb471d878224d7f4c15321421d97b90bd873a Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:30 +0100 Subject: gnu: r-reticulate: Update to 1.24. * gnu/packages/cran.scm (r-reticulate): Update to 1.24. --- gnu/packages/cran.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index edfdec42d4..0f5bc3b336 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -8216,14 +8216,14 @@ always locate the files relative to your project root.") (define-public r-reticulate (package (name "r-reticulate") - (version "1.23") + (version "1.24") (source (origin (method url-fetch) (uri (cran-uri "reticulate" version)) (sha256 (base32 - "1mindiw7k7pa33hpwrgq0g5808c8qs9hl0351n8z2w9wyczlm87y")))) + "1k0nv43fa9lx44pamxpprnvvmsp15adn5z6hg9siyq0n94hca65r")))) (build-system r-build-system) (inputs (list python)) (propagated-inputs -- cgit v1.3 From b160e65cc7ed3006496510358f81e43ce7e144a2 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:30 +0100 Subject: gnu: r-precrec: Update to 0.12.8. * gnu/packages/cran.scm (r-precrec): Update to 0.12.8. --- gnu/packages/cran.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 0f5bc3b336..4c0031a023 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -9675,14 +9675,14 @@ visualization and candidate genes around SNPs.") (define-public r-precrec (package (name "r-precrec") - (version "0.12.7") + (version "0.12.8") (source (origin (method url-fetch) (uri (cran-uri "precrec" version)) (sha256 (base32 - "0vwzaqnh9ymrm52dd79bihwqprnygz0d71ay8fv51hdw0zg6saya")))) + "0kwn902z32qcnkffjm6dqnaxagx31xjdcak50clbgrway2pcdjrm")))) (properties `((upstream-name . "precrec"))) (build-system r-build-system) (propagated-inputs -- cgit v1.3 From f35f72d39d50269d9e21cd2e96d19d5aed19348e Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:31 +0100 Subject: gnu: r-raster: Update to 3.5-15. * gnu/packages/cran.scm (r-raster): Update to 3.5-15. --- gnu/packages/cran.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 4c0031a023..01f7913d53 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -10200,14 +10200,14 @@ used to teach mathematics, statistics, computation and modeling.") (define-public r-raster (package (name "r-raster") - (version "3.5-11") + (version "3.5-15") (source (origin (method url-fetch) (uri (cran-uri "raster" version)) (sha256 (base32 - "18v1vflq15915dwa3caf5sp1d1kp8w6plpaqk3z6a3164lwq5i76")))) + "11fnznymwavpph733dayklhcx4phpjgrijfxlaszi122sg2x7ir9")))) (build-system r-build-system) (propagated-inputs (list r-rcpp r-sp r-terra)) -- cgit v1.3 From ab5a77c892ce03ebc2c9d567039680c55c78f13f Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:31 +0100 Subject: gnu: r-effectsize: Update to 0.6.0.1. * gnu/packages/cran.scm (r-effectsize): Update to 0.6.0.1. --- gnu/packages/cran.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 01f7913d53..65279df5c7 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -11554,14 +11554,14 @@ results using @code{ggplot2}.") (define-public r-effectsize (package (name "r-effectsize") - (version "0.6.0") + (version "0.6.0.1") (source (origin (method url-fetch) (uri (cran-uri "effectsize" version)) (sha256 (base32 - "0xhibc868sngkc8v9g385vlhqdqxzy6b4mj1jihjy6wvk9jw266s")))) + "1rhpbhyrv0avinm6dz6v2qw4xxdl9m1wknq1dv2flfxgcz0k9qiz")))) (properties `((upstream-name . "effectsize"))) (build-system r-build-system) (propagated-inputs -- cgit v1.3 From 469e86f36808c28c908c9d1e1e14d346a652adda Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:31 +0100 Subject: gnu: r-admisc: Update to 0.23. * gnu/packages/cran.scm (r-admisc): Update to 0.23. --- gnu/packages/cran.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 65279df5c7..6546b273b6 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -12789,13 +12789,13 @@ Anderson-Darling Distribution\".") (define-public r-admisc (package (name "r-admisc") - (version "0.22") + (version "0.23") (source (origin (method url-fetch) (uri (cran-uri "admisc" version)) (sha256 - (base32 "1jwz9z3brq4lbnqrkxx40vrn47rknkkj4xfv2gi8kmf1mzc5aqcd")))) + (base32 "0md0sygwdglyw7ss0dw6h235n70vpf25npp1q5b5nmb4db0fq80c")))) (properties `((upstream-name . "admisc"))) (build-system r-build-system) (home-page "https://github.com/dusadrian/admisc") -- cgit v1.3 From b78d388b3bf177eaac82720d59c14a2657176a8b Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:31 +0100 Subject: gnu: r-tiff: Update to 0.1-11. * gnu/packages/cran.scm (r-tiff): Update to 0.1-11. --- gnu/packages/cran.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 6546b273b6..9adc7891ba 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -12894,14 +12894,14 @@ redundant complex conjugate when the input is real data.") (define-public r-tiff (package (name "r-tiff") - (version "0.1-10") + (version "0.1-11") (source (origin (method url-fetch) (uri (cran-uri "tiff" version)) (sha256 (base32 - "1zha6bzb1rmfl6n2xjkygs9wfi3ah9cjr7a6jzk4zqc5kvl58lak")))) + "0xgc7vyndxxahfhc2qqzmwi56bnfyl0pn72l820jz5sd24aymhxq")))) (build-system r-build-system) (inputs (list libtiff libjpeg-turbo zlib)) -- cgit v1.3 From cb41225ca48cd033551baa360241a258e64c3062 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:32 +0100 Subject: gnu: r-lavaan: Update to 0.6-10. * gnu/packages/cran.scm (r-lavaan): Update to 0.6-10. --- gnu/packages/cran.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 9adc7891ba..662704c78b 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -15642,14 +15642,14 @@ probabilities from a standard bivariate normal CDF.") (define-public r-lavaan (package (name "r-lavaan") - (version "0.6-9") + (version "0.6-10") (source (origin (method url-fetch) (uri (cran-uri "lavaan" version)) (sha256 (base32 - "12hhbwxaiprs9bmclwhhdpv42h4mrl4gj92zq3wk8rb883mw816l")))) + "0dwc8rgrzyrrb0ivx297ln2qbrsxbpn6mdf7laiffhspdpml8sad")))) (build-system r-build-system) (propagated-inputs (list r-mass r-mnormt r-numderiv r-pbivnorm)) -- cgit v1.3 From 8b3d6b19d15c2c6b518d77a8d24bb7e7df72e8fc Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:32 +0100 Subject: gnu: r-spdep: Update to 1.2-2. * gnu/packages/cran.scm (r-spdep): Update to 1.2-2. --- gnu/packages/cran.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 662704c78b..a9efda2d9b 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -16523,13 +16523,13 @@ datum transformations.") (define-public r-spdep (package (name "r-spdep") - (version "1.2-1") + (version "1.2-2") (source (origin (method url-fetch) (uri (cran-uri "spdep" version)) (sha256 (base32 - "1ya39bgmzagrk4k51zd96l4xvnbc2vzmvd0z9qprdfvg9s6pik78")) + "08sya6vy7s87h337g2fanncw6xx9y9z8nxpqalbdxv9vpsc6zx4l")) (snippet '(for-each delete-file '("inst/doc/CO69.html" "inst/doc/CO69.R" -- cgit v1.3 From b6aa11a34c135f3e71be69cdafef6e13d0c6e5c8 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:32 +0100 Subject: gnu: r-terra: Update to 1.5-17. * gnu/packages/cran.scm (r-terra): Update to 1.5-17. --- gnu/packages/cran.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index a9efda2d9b..379eab2bfe 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19649,14 +19649,14 @@ emphasize hidden group structures in networks or focus on specific nodes.") (define-public r-terra (package (name "r-terra") - (version "1.5-12") + (version "1.5-17") (source (origin (method url-fetch) (uri (cran-uri "terra" version)) (sha256 (base32 - "06fcjyzllw6dnzq0a7dc73v7rlpf250dyw41q0vr08y3x17c2p46")))) + "1rz6dd78i3aq82vl9q4fw17y5cxj2pcmra5mlhb0ca1df78mgb77")))) (properties `((upstream-name . "terra"))) (build-system r-build-system) (inputs -- cgit v1.3 From 3f7b702ab9714d8d2fa143a4ac8f3fe438e0d85d Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:32 +0100 Subject: gnu: r-actuar: Update to 3.2-1. * gnu/packages/cran.scm (r-actuar): Update to 3.2-1. --- gnu/packages/cran.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 379eab2bfe..c61665d4c7 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -22295,14 +22295,14 @@ API; see the package vignette for details.") (define-public r-actuar (package (name "r-actuar") - (version "3.2-0") + (version "3.2-1") (source (origin (method url-fetch) (uri (cran-uri "actuar" version)) (sha256 (base32 - "015brjjgmkwmjajdjdw8gs02jrd96if425pk9a97d499hzsq3xds")))) + "1avqgkls4xvwgfr6j7g2f7p474rlpi82q5aksw8nzf8wcyp7592f")))) (properties `((upstream-name . "actuar"))) (build-system r-build-system) (propagated-inputs (list r-expint)) -- cgit v1.3 From 0675a82bbdb420269016dfc53dc5ddee9a15758e Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:32 +0100 Subject: gnu: r-latex2exp: Update to 0.9.0. * gnu/packages/cran.scm (r-latex2exp): Update to 0.9.0. --- gnu/packages/cran.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index c61665d4c7..b532fa4aca 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -24991,13 +24991,13 @@ appropriate dog and cat images for many status codes.") (define-public r-latex2exp (package (name "r-latex2exp") - (version "0.5.0") + (version "0.9.0") (source (origin (method url-fetch) (uri (cran-uri "latex2exp" version)) (sha256 (base32 - "0qknpw7zwwbzsbry94j8fn48mq7kq5rc5448g9hybbisain3wfvg")))) + "0hfixybyds1jxhyiy3p6256z0fxzc65r654jhc62q9cd3v86a5z6")))) (build-system r-build-system) (propagated-inputs (list r-stringr r-magrittr)) -- cgit v1.3 From 19a2f74eaf7a4837ca21a7f7dd4fadd4f2d8982c Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:33 +0100 Subject: gnu: r-hardhat: Update to 0.2.0. * gnu/packages/cran.scm (r-hardhat): Update to 0.2.0. --- gnu/packages/cran.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index b532fa4aca..301d8adb4c 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -25892,14 +25892,14 @@ counting and recursive k-means partitioning.") (define-public r-hardhat (package (name "r-hardhat") - (version "0.1.6") + (version "0.2.0") (source (origin (method url-fetch) (uri (cran-uri "hardhat" version)) (sha256 (base32 - "07mx8c24gy0xfmip9hb5w29gp10sfnpnilzc1pi0hjadnrqz8mks")))) + "0a4nq93cmps5xy8h0qsv6xyzrbsz9ka4iwkrvb8m8v10wq7wm5wl")))) (properties `((upstream-name . "hardhat"))) (build-system r-build-system) (propagated-inputs -- cgit v1.3 From d135df1c81f1ab72cf7c9e38dafa67c5667bf11f Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:33 +0100 Subject: gnu: r-clusterr: Update to 1.2.6. * gnu/packages/cran.scm (r-clusterr): Update to 1.2.6. --- gnu/packages/cran.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 301d8adb4c..8e02585737 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -26648,14 +26648,14 @@ model.") (define-public r-clusterr (package (name "r-clusterr") - (version "1.2.5") + (version "1.2.6") (source (origin (method url-fetch) (uri (cran-uri "ClusterR" version)) (sha256 (base32 - "1fsb9pzs1paw1cbyr5a56lfh8h2d50232p6isk0xg5sl110ql7kx")))) + "00mha8madcba83ix4fc04rb7sagfm0lxlh1wvs7dvjdrngps41jr")))) (properties `((upstream-name . "ClusterR"))) (build-system r-build-system) (propagated-inputs -- cgit v1.3 From 4866dfef06281bc0f632a7388a8bd5eaaf412fe3 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:33 +0100 Subject: gnu: r-calculus: Update to 0.3.3. * gnu/packages/cran.scm (r-calculus): Update to 0.3.3. --- gnu/packages/cran.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 8e02585737..7f5df6b1b7 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -28450,14 +28450,14 @@ rate speciation and extinction.") (define-public r-calculus (package (name "r-calculus") - (version "0.3.2") + (version "0.3.3") (source (origin (method url-fetch) (uri (cran-uri "calculus" version)) (sha256 (base32 - "1x3bcdd422wqv9gk9r2m8g19qcga220sm5rxdp4bgfc6vlqzzz7y")))) + "1fhvr0l2mqik3d95v0vanafxmiab147g5a87q956g2i945wc5f22")))) (properties `((upstream-name . "calculus"))) (build-system r-build-system) (propagated-inputs -- cgit v1.3 From 50d01de9a2045ae511c850d235cde31336d174d3 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:33 +0100 Subject: gnu: r-paradox: Update to 0.8.0. * gnu/packages/cran.scm (r-paradox): Update to 0.8.0. --- gnu/packages/cran.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 7f5df6b1b7..8e2ab593fb 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -28799,13 +28799,13 @@ performing ordinal regression.") (define-public r-paradox (package (name "r-paradox") - (version "0.7.1") + (version "0.8.0") (source (origin (method url-fetch) (uri (cran-uri "paradox" version)) (sha256 (base32 - "1difp0bzsfxcmbm1snahh3i6417k1a2w4mnjx65p20n2yiclmrgs")))) + "1jfzbpqi1rp3r8hnk37dqwggp48ha5bnilmdz7dwzfdaskssycxa")))) (build-system r-build-system) (propagated-inputs (list r-backports r-checkmate r-data-table r-mlr3misc r-r6)) -- cgit v1.3 From 98bffee61eaacd3f553535da61e964565ca72003 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:33 +0100 Subject: gnu: r-mlr3learners: Update to 0.5.2. * gnu/packages/cran.scm (r-mlr3learners): Update to 0.5.2. --- gnu/packages/cran.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 8e2ab593fb..dc83823b6c 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -28856,13 +28856,13 @@ computational operations, add-on packages provide additional functionality.") (define-public r-mlr3learners (package (name "r-mlr3learners") - (version "0.5.1") + (version "0.5.2") (source (origin (method url-fetch) (uri (cran-uri "mlr3learners" version)) (sha256 (base32 - "1yc3mrk1b9h1k342wnw7sm4zmcw7w31l5ybh558g88f5hmibdl98")))) + "1d9hcrnj622ynrzg0ii0fkhz2n66ip46yln21jq1pwpwkqwqzv35")))) (build-system r-build-system) (propagated-inputs (list r-checkmate -- cgit v1.3 From 3052d345d7b40f86a8890da3f79b4c5213e5f630 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:34 +0100 Subject: gnu: r-rpart: Update to 4.1.16. * gnu/packages/statistics.scm (r-rpart): Update to 4.1.16. --- gnu/packages/statistics.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 7fa31c59b4..11a3298088 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -717,14 +717,14 @@ single hidden layer, and for multinomial log-linear models.") (define-public r-rpart (package (name "r-rpart") - (version "4.1-15") + (version "4.1.16") (source (origin (method url-fetch) (uri (cran-uri "rpart" version)) (sha256 (base32 - "0p5frya963ppn476p5dxs2mnarsalksr6gw9zzmjsn8ikq7bx3ib")))) + "0p22657j6ps6z1dn0ja2fhq4k5xd1rv3cpwzk6nmjd2si8jpbv17")))) (build-system r-build-system) (home-page "https://cran.r-project.org/web/packages/rpart") (synopsis "Recursive partitioning and regression trees") -- cgit v1.3 From 86beee6432fe7d2f2a884bfc87e3903ceafc98ec Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:34 +0100 Subject: gnu: r-magrittr: Update to 2.0.2. * gnu/packages/statistics.scm (r-magrittr): Update to 2.0.2. --- gnu/packages/statistics.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 11a3298088..bb1220f761 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -986,13 +986,13 @@ algorithms.") (define-public r-magrittr (package (name "r-magrittr") - (version "2.0.1") + (version "2.0.2") (source (origin (method url-fetch) (uri (cran-uri "magrittr" version)) (sha256 - (base32 "0pxd99fvg406whqsk9wh756rayrwh84xn3h44zmlpcy23kanbhkm")))) + (base32 "19k3q76qlri459iyyfgn9gl0w9lnv9v604yhpbc94nx71l6zvrkv")))) (build-system r-build-system) ;; knitr needs magrittr #; -- cgit v1.3 From 13497cdd0181f4a531fff8ad2550c7be876de3a5 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:34 +0100 Subject: gnu: r-permute: Update to 0.9-7. * gnu/packages/statistics.scm (r-permute): Update to 0.9-7. [native-inputs]: Add r-knitr. --- gnu/packages/statistics.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index bb1220f761..e0d2326e95 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1031,15 +1031,16 @@ Munsell colour system.") (define-public r-permute (package (name "r-permute") - (version "0.9-5") + (version "0.9-7") (source (origin (method url-fetch) (uri (cran-uri "permute" version)) (sha256 (base32 - "0ra8p5mf2590azrkas8z2ry7mif77xqxd29n4zgyi5vll225726j")))) + "1h4dyhcsv8p3h3qxsy98pib9v79dddvrnq7qx6abkblsazxqzy7g")))) (build-system r-build-system) + (native-inputs (list r-knitr)) ;; Tests do not run correctly, but running them properly would entail a ;; circular dependency with vegan. (home-page "https://github.com/gavinsimpson/permute") -- cgit v1.3 From 01f8f121b8a7545156d9af8bfb31aad1e85f8ae9 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:34 +0100 Subject: gnu: r-yaml: Update to 2.2.2. * gnu/packages/statistics.scm (r-yaml): Update to 2.2.2. --- gnu/packages/statistics.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index e0d2326e95..bc09b950a4 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1510,13 +1510,13 @@ syntax that can be converted to XHTML or other formats.") (define-public r-yaml (package (name "r-yaml") - (version "2.2.1") + (version "2.2.2") (source (origin (method url-fetch) (uri (cran-uri "yaml" version)) (sha256 (base32 - "10r7g26x73am45niigm3k466030nymnr3v3fjljafzrr5aybf58i")))) + "0c7pk5fq79mkqpc398hg8zj01frv4araglyppli49sqr4yx6mp55")))) (build-system r-build-system) (home-page "https://cran.r-project.org/web/packages/yaml/") (synopsis "Methods to convert R data to YAML and back") -- cgit v1.3 From 31436f1d1de5198cb601fafe3eee126c3f738aea Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:34 +0100 Subject: gnu: r-rlang: Update to 1.0.0. * gnu/packages/statistics.scm (r-rlang): Update to 1.0.0. --- gnu/packages/statistics.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index bc09b950a4..a8d9bbd10c 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1733,13 +1733,13 @@ defined in different packages.") (define-public r-rlang (package (name "r-rlang") - (version "0.4.12") + (version "1.0.0") (source (origin (method url-fetch) (uri (cran-uri "rlang" version)) (sha256 (base32 - "05cr08smr8dlk10m810rw4qi1yhgnny83rwkxib0l4my71br29ia")))) + "0skf75rhq9y6f09shcjlm1dlh7rlwpyr4mx1l8xn201igg4k8qdb")))) (build-system r-build-system) (home-page "http://rlang.tidyverse.org") (synopsis "Functions for base types, core R and Tidyverse features") -- cgit v1.3 From 4043ed5cb7c44cca1f9bf99c15a65f7d40e3298e Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:34 +0100 Subject: gnu: r-readr: Update to 2.1.2. * gnu/packages/statistics.scm (r-readr): Update to 2.1.2. --- gnu/packages/statistics.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index a8d9bbd10c..f093568dc6 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -2623,13 +2623,13 @@ time-of-day values, based on the @code{difftime} class.") (define-public r-readr (package (name "r-readr") - (version "2.1.1") + (version "2.1.2") (source (origin (method url-fetch) (uri (cran-uri "readr" version)) (sha256 (base32 - "115w3hgp1w6hr0h2nz840i6mm1pnqzwfbxcmf9ca3qs7llc7k4q3")))) + "06qcw57yz0fhh3ni41d5w68cbmwmb6zkp47chllwzax43wxd1bwl")))) (build-system r-build-system) (propagated-inputs (list r-cli -- cgit v1.3 From b0cf741ddff3c443b06268d40375e440bff0a4ff Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:34 +0100 Subject: gnu: r-rcpparmadillo: Update to 0.10.8.1.0. * gnu/packages/statistics.scm (r-rcpparmadillo): Update to 0.10.8.1.0. --- gnu/packages/statistics.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index f093568dc6..109e095e31 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -2713,13 +2713,13 @@ well as additional utilities such as panel and axis annotation functions.") (define-public r-rcpparmadillo (package (name "r-rcpparmadillo") - (version "0.10.7.5.0") + (version "0.10.8.1.0") (source (origin (method url-fetch) (uri (cran-uri "RcppArmadillo" version)) (sha256 (base32 - "0516j6n657kxm8sdbxf3jd9z40px9mv7zza4fz8nih63f5iiw1kw")))) + "1x7mk85rc4pmn17nm63k6rbkarsmghjapznias268545nfpib97g")))) (properties `((upstream-name . "RcppArmadillo"))) (build-system r-build-system) (propagated-inputs -- cgit v1.3 From d2f6c1263ae000050714cb24a84fae2f0d0a0570 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:35 +0100 Subject: gnu: r-segmented: Update to 1.4-0. * gnu/packages/statistics.scm (r-segmented): Update to 1.4-0. [propagated-inputs]: Add r-mass. --- gnu/packages/statistics.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 109e095e31..55f22a84ac 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -3113,15 +3113,16 @@ statements.") (define-public r-segmented (package (name "r-segmented") - (version "1.3-4") + (version "1.4-0") (source (origin (method url-fetch) (uri (cran-uri "segmented" version)) (sha256 (base32 - "0bchqcy308kbywavgyg9kb4543rbkfn753q9c6d7l7aw7sxvyxl2")))) + "0xn28gyqzmyz0kv352rkkznbj806arxj2am5a9gqsn1qzv9l0s9h")))) (build-system r-build-system) + (propagated-inputs (list r-mass)) (home-page "https://cran.r-project.org/web/packages/segmented") (synopsis "Regression models with breakpoints estimation") (description -- cgit v1.3 From 76dd2e82106282ffc617a53deb6be38770da7b34 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:35 +0100 Subject: gnu: r-rrcov: Update to 1.6-1. * gnu/packages/statistics.scm (r-rrcov): Update to 1.6-1. --- gnu/packages/statistics.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 55f22a84ac..2577d8eb96 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -5235,14 +5235,14 @@ analysis} (PCA) by projection pursuit.") (define-public r-rrcov (package (name "r-rrcov") - (version "1.6-0") + (version "1.6-1") (source (origin (method url-fetch) (uri (cran-uri "rrcov" version)) (sha256 (base32 - "0i69gv55c86gkclwhch0jzdfyb20l20mx1nx1xp9qz71nd4klpvr")))) + "142x60zcgz61iw0ps78hh4cmny3ch0hb3lac6z87bhys5c7m0fwz")))) (build-system r-build-system) (propagated-inputs (list r-lattice r-mvtnorm r-pcapp r-robustbase)) -- cgit v1.3 From 9e5506ae8abb12cda5ee3981979a0c422a141e24 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:35 +0100 Subject: gnu: r-quantreg: Update to 5.87. * gnu/packages/statistics.scm (r-quantreg): Update to 5.87. [propagated-inputs]: Remove r-conquer. --- gnu/packages/statistics.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 2577d8eb96..a474f728e7 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -5498,18 +5498,18 @@ using modular prediction and response module classes.") (define-public r-quantreg (package (name "r-quantreg") - (version "5.86") + (version "5.87") (source (origin (method url-fetch) (uri (cran-uri "quantreg" version)) (sha256 - (base32 "01fnp6ndh7npxj76xlynndacsgmcfr9kgh2waw0clx3mmwlwilbi")))) + (base32 "13m3znkrrkf19s3lz6984lzrznng4nma38yy17pqjfzmwl4yzmws")))) (build-system r-build-system) (native-inputs (list gfortran)) (propagated-inputs - (list r-conquer r-matrix r-matrixmodels r-sparsem)) + (list r-matrix r-matrixmodels r-sparsem)) (home-page "https://www.r-project.org") (synopsis "Quantile regression") (description -- cgit v1.3 From f07459ea05c06b8bc7dff92285e652d2449dd45b Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 1 Feb 2022 17:01:35 +0100 Subject: gnu: r-nloptr: Update to 2.0.0. * gnu/packages/statistics.scm (r-nloptr): Update to 2.0.0. [propagated-inputs]: Add r-testthat. --- gnu/packages/statistics.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index a474f728e7..4553343ee9 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -5523,20 +5523,21 @@ expected shortfall risk are also included.") (define-public r-nloptr (package (name "r-nloptr") - (version "1.2.2.3") + (version "2.0.0") (source (origin (method url-fetch) (uri (cran-uri "nloptr" version)) (sha256 (base32 - "1zznk9f2w2g02zqzay21k8xqzfvc6icxfzp6bx2wpd77sm7vf25g")))) + "16k124ll14p3ygny6i1zd7yza83bv2sk87x922n1bfn9rx4k3jk5")))) (build-system r-build-system) (native-inputs (list r-knitr ; for building vignettes pkg-config gfortran)) (inputs (list nlopt)) + (propagated-inputs (list r-testthat)) (home-page "https://cran.r-project.org/web/packages/nloptr") (synopsis "R interface to NLopt") (description -- cgit v1.3 From 787b13a5d9df8f0cc7170de1b80cead68b516c66 Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Tue, 1 Feb 2022 20:00:31 +0100 Subject: gnu: librecad: Fix build with boost 1.76. Fixes . * gnu/packages/patches/librecad-support-for-boost-1.76.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/engineering.scm (librecad)[source]: Use it. --- gnu/local.mk | 1 + gnu/packages/engineering.scm | 4 +++- .../patches/librecad-support-for-boost-1.76.patch | 17 +++++++++++++++++ 3 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 gnu/packages/patches/librecad-support-for-boost-1.76.patch diff --git a/gnu/local.mk b/gnu/local.mk index 1788c4e110..9969bc67cb 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1408,6 +1408,7 @@ dist_patch_DATA = \ %D%/packages/patches/libmygpo-qt-missing-qt5-modules.patch \ %D%/packages/patches/libqalculate-3.8.0-libcurl-ssl-fix.patch \ %D%/packages/patches/libquicktime-ffmpeg.patch \ + %D%/packages/patches/librecad-support-for-boost-1.76.patch \ %D%/packages/patches/libssh2-CVE-2019-17498.patch \ %D%/packages/patches/libtar-CVE-2013-4420.patch \ %D%/packages/patches/libtgvoip-disable-sse2.patch \ diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index 8e4614590b..04f5ba88b9 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -147,7 +147,9 @@ (file-name (git-file-name name version)) (sha256 (base32 - "08cl4935c9vznz9qdw1zgd86rn7hl64zpfayxl07x21bhf53pn24")))) + "08cl4935c9vznz9qdw1zgd86rn7hl64zpfayxl07x21bhf53pn24")) + (patches + (search-patches "librecad-support-for-boost-1.76.patch")))) (build-system qt-build-system) (arguments '(#:test-target "check" diff --git a/gnu/packages/patches/librecad-support-for-boost-1.76.patch b/gnu/packages/patches/librecad-support-for-boost-1.76.patch new file mode 100644 index 0000000000..aa352e669f --- /dev/null +++ b/gnu/packages/patches/librecad-support-for-boost-1.76.patch @@ -0,0 +1,17 @@ +Upstream commit e02f3580311d50b617427652ff77988f6bd62d9d adding Boost 1.76 +compatibility. + +diff --git a/librecad/src/lib/engine/rs_ellipse.cpp b/librecad/src/lib/engine/rs_ellipse.cpp +index 291f734ea..d47bf6ca4 100644 +--- a/librecad/src/lib/engine/rs_ellipse.cpp ++++ b/librecad/src/lib/engine/rs_ellipse.cpp +@@ -48,6 +48,9 @@ + #include + #include + #include ++#if BOOST_VERSION > 104500 ++#include ++#endif + #endif + + namespace{ -- cgit v1.3 From 01c925bf499d66c0cb000071d40c265a6869ffab Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Mon, 31 Jan 2022 11:38:51 -0500 Subject: doc: Fix typo. * doc/guix.texi (Sound Services): Fix typo. --- doc/guix.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guix.texi b/doc/guix.texi index 8ee553e257..10248d29e7 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -21394,7 +21394,7 @@ Data type representing the configuration for @code{pulseaudio-service}. @table @asis @item @code{client-conf} (default: @code{'()}) List of settings to set in @file{client.conf}. -Accepts a list of strings or a symbol-value pairs. A string will be +Accepts a list of strings or symbol-value pairs. A string will be inserted as-is with a newline added. A pair will be formatted as ``key = value'', again with a newline added. -- cgit v1.3 From 36cde8fa8e895ee0e96319a9ac7ab1b8616aa14e Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 30 Jan 2022 17:20:31 +0100 Subject: gnu: json-modern-cxx: Update to 3.10.5. * gnu/packages/cpp.scm (json-modern-cxx): Update to 3.10.5. [source](snippet): Adjust for upstream changes. [arguments]: Remove obsolete workaround. --- gnu/packages/cpp.scm | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 1bae2966b9..6ee412c0c1 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -11,7 +11,7 @@ ;;; Copyright © 2020, 2021 Ricardo Wurmus ;;; Copyright © 2020 Brice Waegeneire ;;; Copyright © 2020, 2021 Vinicius Monego -;;; Copyright © 2020 Marius Bakke +;;; Copyright © 2020, 2022 Marius Bakke ;;; Copyright © 2020 Michael Rohleder ;;; Copyright © 2020 Alexandros Theodotou ;;; Copyright © 2020, 2021 Greg Hogan @@ -496,7 +496,7 @@ as ordering relation.") (define-public json-modern-cxx (package (name "json-modern-cxx") - (version "3.9.1") + (version "3.10.5") (home-page "https://github.com/nlohmann/json") (source (origin @@ -504,7 +504,7 @@ as ordering relation.") (uri (git-reference (url home-page) (commit (string-append "v" version)))) (sha256 - (base32 "0ar4mzp53lskxw3vdzw07f47njcshl3lwid9jfq6l7yx6ds2nyjc")) + (base32 "1f9mi45ilwjc2w92grjc53sw038840bjpn8yjf6wc6bxs2nijfqd")) (file-name (git-file-name name version)) (modules '((guix build utils))) (snippet @@ -513,7 +513,7 @@ as ordering relation.") ;; is a wrapper library added by this package. (install-file "./test/thirdparty/doctest/doctest_compatibility.h" "/tmp") (for-each delete-file-recursively - '("./third_party" "./test/thirdparty" "./benchmarks/thirdparty")) + '("./third_party" "./test/thirdparty")) (install-file "/tmp/doctest_compatibility.h" "./test/thirdparty/doctest") ;; Adjust for the unbundled fifo_map and doctest. @@ -525,8 +525,7 @@ as ordering relation.") (substitute* files (("#include ?\"(fifo_map.hpp)\"" all fifo-map-hpp) (string-append - "#include "))))) - #t)))) + "#include "))))))))) (build-system cmake-build-system) (arguments '(#:configure-flags @@ -534,18 +533,12 @@ as ordering relation.") (string-append "-DJSON_TestDataDirectory=" (assoc-ref %build-inputs "json_test_data"))) #:phases (modify-phases %standard-phases - ;; XXX: When tests are enabled, the install phase will cause - ;; a needless rebuild without the given configure flags, - ;; ultimately creating both $out/lib and $out/lib64. Move - ;; the check phase after install to work around it. - (delete 'check) - (add-after 'install 'check + (replace 'check (lambda* (#:key tests? #:allow-other-keys) (if tests? ;; Some tests need git and a full checkout, skip those. (invoke "ctest" "-LE" "git_required") - (format #t "test suite not run~%")) - #t))))) + (format #t "test suite not run~%"))))))) (native-inputs `(("amalgamate" ,amalgamate) ("doctest" ,doctest) -- cgit v1.3 From 2b4aeda7559b458d8308151f2b2935831d18826b Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 30 Jan 2022 17:22:32 +0100 Subject: gnu: json-modern-cxx: Run tests in parallel. * gnu/packages/cpp.scm (json-modern-cxx)[arguments]: Respect PARALLEL-TESTS? in check phase. --- gnu/packages/cpp.scm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 6ee412c0c1..a1596314dc 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -534,10 +534,13 @@ as ordering relation.") (assoc-ref %build-inputs "json_test_data"))) #:phases (modify-phases %standard-phases (replace 'check - (lambda* (#:key tests? #:allow-other-keys) + (lambda* (#:key tests? parallel-tests? #:allow-other-keys) (if tests? ;; Some tests need git and a full checkout, skip those. - (invoke "ctest" "-LE" "git_required") + (invoke "ctest" "-LE" "git_required" + "-j" (if parallel-tests? + (number->string (parallel-job-count)) + "1")) (format #t "test suite not run~%"))))))) (native-inputs `(("amalgamate" ,amalgamate) -- cgit v1.3 From f89bf66690e6863a822d756a39242bd0b998d3e5 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 30 Jan 2022 17:28:43 +0100 Subject: gnu: fifo-map: Use a release tag. * gnu/packages/cpp.scm (fifo-map): Update to 1.0.0, which is one (inconsequential) commit ahead of our custom "1.1.1" version. [arguments]: Respect TESTS? in check phase while at it. --- gnu/packages/cpp.scm | 73 +++++++++++++++++++++++++--------------------------- 1 file changed, 35 insertions(+), 38 deletions(-) diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index a1596314dc..9eddae626e 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -452,46 +452,43 @@ functions, class methods, and stl containers. (license license:bsd-3))) (define-public fifo-map - (let* ((commit "0dfbf5dacbb15a32c43f912a7e66a54aae39d0f9") - (revision "0") - (version (git-version "1.1.1" revision commit))) - (package - (name "fifo-map") - (version version) - (home-page "https://github.com/nlohmann/fifo_map") - (source (origin - (method git-fetch) - (uri (git-reference - (url home-page) - (commit commit))) - (sha256 - (base32 - "0pi77b75kp0l7z454ihcd14nzpi3nc5m4nyjbsgy5f9bw3676196")) - (patches (search-patches "fifo-map-remove-catch.hpp.patch" - "fifo-map-fix-flags-for-gcc.patch")) - (file-name (git-file-name name version)) - (modules '((guix build utils))) - (snippet '(delete-file-recursively "./test/thirdparty")))) - (native-inputs - (list catch-framework2-1)) - (build-system cmake-build-system) - (arguments - `(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda _ - (invoke "./unit"))) - (replace 'install - (lambda* (#:key outputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out")) - (inc (string-append out "/include/fifo_map"))) - (with-directory-excursion "../source" - (install-file "src/fifo_map.hpp" inc)))))))) - (synopsis "FIFO-ordered associative container for C++") - (description "Fifo_map is a C++ header only library for associative + (package + (name "fifo-map") + (version "1.0.0") + (home-page "https://github.com/nlohmann/fifo_map") + (source (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit (string-append "v" version)))) + (sha256 + (base32 + "0y59fk6ycrgjln9liwcja3l5j1vxpa5i671bynpbsjlyq5f2560q")) + (patches (search-patches "fifo-map-remove-catch.hpp.patch" + "fifo-map-fix-flags-for-gcc.patch")) + (file-name (git-file-name name version)) + (modules '((guix build utils))) + (snippet '(delete-file-recursively "./test/thirdparty")))) + (native-inputs + (list catch-framework2-1)) + (build-system cmake-build-system) + (arguments + '(#:phases + (modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? (invoke "./unit")))) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (inc (string-append out "/include/fifo_map"))) + (with-directory-excursion "../source" + (install-file "src/fifo_map.hpp" inc)))))))) + (synopsis "FIFO-ordered associative container for C++") + (description "Fifo_map is a C++ header only library for associative container which uses the order in which keys were inserted to the container as ordering relation.") - (license license:expat)))) + (license license:expat))) (define-public json-modern-cxx (package -- cgit v1.3 From 018d2c12430495ffe86dcbe2fb59d1f0144a3fe6 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 30 Jan 2022 17:33:07 +0100 Subject: gnu: fifo-map: Fix cross-compilation. * gnu/packages/cpp.scm (fifo-map)[native-inputs]: Move CATCH-FRAMEWORK2-1 ... [inputs]: ... here. --- gnu/packages/cpp.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 9eddae626e..9927d79e37 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -469,7 +469,7 @@ functions, class methods, and stl containers. (file-name (git-file-name name version)) (modules '((guix build utils))) (snippet '(delete-file-recursively "./test/thirdparty")))) - (native-inputs + (inputs (list catch-framework2-1)) (build-system cmake-build-system) (arguments -- cgit v1.3 From 7ad2cfcc7227b0aeabeae4f2f89bb9631eb9ab98 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 30 Jan 2022 17:40:01 +0100 Subject: gnu: json-modern-cxx: Remove input labels. * gnu/packages/cpp.scm (json-modern-cxx)[native-inputs]: Remove labels. [arguments]: Use SEARCH-INPUT-FILE. --- gnu/packages/cpp.scm | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 9927d79e37..5b4eee151f 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -528,7 +528,9 @@ as ordering relation.") '(#:configure-flags (list "-DJSON_MultipleHeaders=ON" ; For json_fwd.hpp. (string-append "-DJSON_TestDataDirectory=" - (assoc-ref %build-inputs "json_test_data"))) + (dirname + (search-input-directory %build-inputs + "json_nlohmann_tests")))) #:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? parallel-tests? #:allow-other-keys) @@ -540,19 +542,17 @@ as ordering relation.") "1")) (format #t "test suite not run~%"))))))) (native-inputs - `(("amalgamate" ,amalgamate) - ("doctest" ,doctest) - ("json_test_data" - ,(let ((version "3.0.0")) - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/nlohmann/json_test_data") - (commit (string-append "v" version)))) - (file-name (git-file-name "json_test_data" version)) - (sha256 - (base32 - "0nzsjzlvk14dazwh7k2jb1dinb0pv9jbx5jsyn264wvva0y7daiv"))))))) + (list amalgamate doctest + (let ((version "3.0.0")) + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/nlohmann/json_test_data") + (commit (string-append "v" version)))) + (file-name (git-file-name "json_test_data" version)) + (sha256 + (base32 + "0nzsjzlvk14dazwh7k2jb1dinb0pv9jbx5jsyn264wvva0y7daiv")))))) (inputs (list fifo-map)) (synopsis "JSON parser and printer library for C++") -- cgit v1.3 From c065fca7f5feaeb8693b47089d53f85c594fb709 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 30 Jan 2022 17:43:15 +0100 Subject: gnu: json-modern-cxx: Fix cross-compilation. * gnu/packages/cpp.scm (json-modern-cxx)[native-inputs]: Move DOCTEST ... [inputs]: ... here. --- gnu/packages/cpp.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 5b4eee151f..ba54dbcda8 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -542,7 +542,7 @@ as ordering relation.") "1")) (format #t "test suite not run~%"))))))) (native-inputs - (list amalgamate doctest + (list amalgamate (let ((version "3.0.0")) (origin (method git-fetch) @@ -554,7 +554,7 @@ as ordering relation.") (base32 "0nzsjzlvk14dazwh7k2jb1dinb0pv9jbx5jsyn264wvva0y7daiv")))))) (inputs - (list fifo-map)) + (list doctest fifo-map)) (synopsis "JSON parser and printer library for C++") (description "JSON for Modern C++ is a C++ JSON library that provides intuitive syntax and trivial integration.") -- cgit v1.3 From 16a45eae2daf628127ff73331cce450296758859 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 30 Jan 2022 17:49:34 +0100 Subject: gnu: doctest: Update to 2.4.8. * gnu/packages/check.scm (doctest): Update to 2.4.8. --- gnu/packages/check.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index ad9012f25a..4115a5c22b 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -565,15 +565,16 @@ and it supports a very flexible form of test discovery.") (define-public doctest (package (name "doctest") - (version "2.4.6") + (version "2.4.8") (home-page "https://github.com/onqtam/doctest") (source (origin (method git-fetch) - (uri (git-reference (url home-page) (commit version))) + (uri (git-reference (url home-page) + (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 - "14m3q6d96zg6d99x1152jkly50gdjrn5ylrbhax53pfgfzzc5yqx")))) + "057wdkv3gcz42mh1j284sgvm16i5fk1f9b1plgvavca70q4p52gz")))) (build-system cmake-build-system) (synopsis "C++ test framework") (description -- cgit v1.3 From 4ed2b6ac38f536123dd102f30750e9396f6aeffd Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 30 Jan 2022 18:29:57 +0100 Subject: gnu: LLVM: Switch to 13 as the default. * gnu/packages/llvm.scm (llvm, clang-runtime, clang, clang-toolchain): Use version 13. * gnu/packages/gnuzilla.scm (mozjs-78)[native-inputs]: Change from LLVM to LLVM-9. * gnu/packages/rust.scm (rust-1.39, rust-1.40)[inputs]: Likewise. * gnu/packages/debug.scm (c-reduce)[inputs]: Stick with CLANG-9 and/or LLVM-9. * gnu/packages/diffoscope.scm (diffoscope)[inputs]: Likewise. * gnu/packages/linux.scm (bcc, bpftrace)[inputs]: Likewise. * gnu/packages/llvm.scm (libclc, libomp)[native-inputs]: Likewise. * gnu/packages/games.scm (hedgewars)[native-inputs]: Likewise. * gnu/packages/graphics.scm (openshadinglanguage)[native-inputs]: Likewise. * gnu/packages/opencl.scm (pocl)[inputs]: Likewise. --- gnu/packages/debug.scm | 4 ++-- gnu/packages/diffoscope.scm | 2 +- gnu/packages/games.scm | 2 +- gnu/packages/gnuzilla.scm | 3 ++- gnu/packages/graphics.scm | 4 ++-- gnu/packages/linux.scm | 4 ++-- gnu/packages/llvm.scm | 12 ++++++------ gnu/packages/opencl.scm | 3 +-- gnu/packages/rust.scm | 4 ++-- 9 files changed, 19 insertions(+), 19 deletions(-) diff --git a/gnu/packages/debug.scm b/gnu/packages/debug.scm index 3bf7f6a8e0..180fd936ec 100644 --- a/gnu/packages/debug.scm +++ b/gnu/packages/debug.scm @@ -132,8 +132,8 @@ program to exhibit a bug.") (native-inputs (list flex)) (inputs `(("astyle" ,astyle) - ("llvm" ,llvm) - ("clang" ,clang) + ("llvm" ,llvm-9) + ("clang" ,clang-9) ("indent" ,indent) ("perl" ,perl) ("exporter-lite" ,perl-exporter-lite) diff --git a/gnu/packages/diffoscope.scm b/gnu/packages/diffoscope.scm index 743447a9d5..064be354cb 100644 --- a/gnu/packages/diffoscope.scm +++ b/gnu/packages/diffoscope.scm @@ -186,7 +186,7 @@ hdf5 imagemagick libarchive - llvm + llvm-9 lz4 mono ocaml diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 591a3d3f38..ccc5b3740a 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -9367,7 +9367,7 @@ play with up to four players simultaneously. It has network support.") ("sdl" ,(sdl-union (list sdl2 sdl2-mixer sdl2-net sdl2-ttf sdl2-image))))) (native-inputs - (list clang ghc pkg-config qttools)) + (list clang-9 ghc pkg-config qttools)) (home-page "https://hedgewars.org/") (synopsis "Turn-based artillery game featuring fighting hedgehogs") (description diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm index a9b5ed9fe9..1ee5248ced 100644 --- a/gnu/packages/gnuzilla.scm +++ b/gnu/packages/gnuzilla.scm @@ -567,7 +567,8 @@ in C/C++.") (native-inputs `(("autoconf" ,autoconf-2.13) ("automake" ,automake) - ("llvm" ,llvm) ;for llvm-objdump + ;; TODO(staging): Use the default LLVM in the next rebuild cycle. + ("llvm" ,llvm-9) ;for llvm-objdump ("perl" ,perl) ("pkg-config" ,pkg-config) ("python" ,python-3) diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index b69ab52aec..cc56d9d319 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -618,9 +618,9 @@ more.") "|")))))))) (native-inputs (list bison - clang + clang-9 flex - llvm + llvm-9 pybind11 python-wrapper)) (inputs diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 4d3ff8efd4..e496b5e2b2 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -8515,7 +8515,7 @@ headers.") (native-inputs (list bison flex)) (inputs - `(("clang-toolchain" ,clang-toolchain) + `(("clang-toolchain" ,clang-toolchain-9) ("libbpf" ,(package-source libbpf)) ;; LibElf required but libelf does not contain ;; archives, only object files. @@ -8595,7 +8595,7 @@ and above.") (native-inputs (list bison flex)) (inputs - (list bcc clang-toolchain elfutils libbpf)) + (list bcc clang-toolchain-9 elfutils libbpf)) (arguments `(#:tests? #f ;Tests require googletest sources. #:configure-flags diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm index 83f57ec28e..be93693e2d 100644 --- a/gnu/packages/llvm.scm +++ b/gnu/packages/llvm.scm @@ -1038,10 +1038,10 @@ of programming tools as well as libraries with equivalent functionality.") #:patches '("clang-3.5-libc-search-path.patch"))) ;; Default LLVM and Clang version. -(define-public llvm llvm-9) -(define-public clang-runtime clang-runtime-9) -(define-public clang clang-9) -(define-public clang-toolchain clang-toolchain-9) +(define-public llvm llvm-13) +(define-public clang-runtime clang-runtime-13) +(define-public clang clang-13) +(define-public clang-toolchain clang-toolchain-13) (define-public llvm-for-rocm (package @@ -1389,7 +1389,7 @@ standard C++ library.") (add-after 'unpack 'chdir (lambda _ (chdir "libclc") #t))))) (native-inputs - (list clang llvm python)) + (list clang-9 llvm-9 python)) (home-page "https://libclc.llvm.org") (synopsis "Libraries for the OpenCL programming language") (description @@ -1418,7 +1418,7 @@ requirements according to version 1.1 of the OpenCL specification.") "-DOPENMP_TEST_CXX_COMPILER=clang++") #:test-target "check-libomp")) (native-inputs - (list clang llvm perl pkg-config)) + (list clang-9 llvm-9 perl pkg-config)) (inputs (list `(,hwloc "lib"))) (home-page "https://openmp.llvm.org") diff --git a/gnu/packages/opencl.scm b/gnu/packages/opencl.scm index 940f52587e..3539c47d66 100644 --- a/gnu/packages/opencl.scm +++ b/gnu/packages/opencl.scm @@ -290,8 +290,7 @@ back-end for the LLVM compiler framework.") (native-inputs (list libltdl pkg-config)) (inputs - (list clang - `(,hwloc-2 "lib") llvm opencl-icd-loader)) + (list clang-9 llvm-9 `(,hwloc-2 "lib") opencl-icd-loader)) (arguments `(#:configure-flags (list "-DENABLE_ICD=ON" diff --git a/gnu/packages/rust.scm b/gnu/packages/rust.scm index 5a6d4a5c30..26d6df7a94 100644 --- a/gnu/packages/rust.scm +++ b/gnu/packages/rust.scm @@ -165,7 +165,7 @@ (inputs `(("libcurl" ,curl) ("libssh2" ,libssh2) - ("llvm" ,llvm) + ("llvm" ,llvm-9) ("openssl" ,openssl) ("zlib" ,zlib))) (native-inputs @@ -493,7 +493,7 @@ ar = \"" binutils "/bin/ar" "\" ("which" ,which))) (inputs `(("jemalloc" ,jemalloc) - ("llvm" ,llvm) + ("llvm" ,llvm-9) ("openssl" ,openssl) ("libssh2" ,libssh2) ; For "cargo" ("libcurl" ,curl))) ; For "cargo" -- cgit v1.3 From a8d1e6bfa22c3f7f14e37584848e08a953ea4e02 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Tue, 1 Feb 2022 18:43:12 +0100 Subject: gnu: libomp: Update to 13.0.0. * gnu/packages/llvm.scm (libomp): Update to 13.0.0. [arguments]: Add workaround to #:configure-flags. [native-inputs]: Change from CLANG-9 and LLVM-9 to CLANG and LLVM. --- gnu/packages/llvm.scm | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm index be93693e2d..d042b4ec51 100644 --- a/gnu/packages/llvm.scm +++ b/gnu/packages/llvm.scm @@ -1401,13 +1401,13 @@ requirements according to version 1.1 of the OpenCL specification.") (define-public libomp (package (name "libomp") - (version "9.0.1") + (version "13.0.0") (source (origin (method url-fetch) (uri (llvm-uri "openmp" version)) (sha256 (base32 - "1knafnpp0f7hylx8q20lkd6g1sf0flly572dayc5d5kghh7hd52w")) + "0g29bq6kqyaqwi7c2l3lndjc6z4pxsvcdhjmh9lkp99931xawc29")) (file-name (string-append "libomp-" version ".tar.xz")))) (build-system cmake-build-system) ;; XXX: Note this gets built with GCC because building with Clang itself @@ -1415,10 +1415,14 @@ requirements according to version 1.1 of the OpenCL specification.") (arguments '(#:configure-flags '("-DLIBOMP_USE_HWLOC=ON" "-DOPENMP_TEST_C_COMPILER=clang" - "-DOPENMP_TEST_CXX_COMPILER=clang++") + "-DOPENMP_TEST_CXX_COMPILER=clang++" + + ;; Work around faulty target detection, fixed in 14: + ;; https://github.com/llvm/llvm-project/issues/52910 + "-DLIBOMPTARGET_BUILD_AMDGCN_BCLIB=OFF") #:test-target "check-libomp")) (native-inputs - (list clang-9 llvm-9 perl pkg-config)) + (list clang llvm perl pkg-config python)) (inputs (list `(,hwloc "lib"))) (home-page "https://openmp.llvm.org") -- cgit v1.3 From e301f1a8ed11f9eacb2b7f525a7446dc00621a8b Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Tue, 1 Feb 2022 19:28:42 +0100 Subject: services: zabbix-frontend: Support custom server package. * gnu/services/monitoring.scm (%zabbix-front-end-configuration-nginx): Rename to ... (zabbix-front-end-nginx-configuration): ... this. Take server package and FastCGI parameters from ... (zabbix-front-end-configuration): ... here. Add PACKAGE and FASTCGI-PARAMS fields, remove NGINX. (zabbix-front-end-service-type): Adjust for renamed procedure. * doc/guix.texi (Monitoring Services)[Zabbix front-end]: Regenerate documentation. --- doc/guix.texi | 67 ++++++++++++++------------------------------- gnu/services/monitoring.scm | 56 ++++++++++++++++++++----------------- 2 files changed, 52 insertions(+), 71 deletions(-) diff --git a/doc/guix.texi b/doc/guix.texi index 10248d29e7..1a6c364ac8 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -47,7 +47,7 @@ Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* -Copyright @copyright{} 2017, 2018, 2019, 2020, 2021 Marius Bakke@* +Copyright @copyright{} 2017, 2018, 2019, 2020, 2021, 2022 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@* @@ -25797,71 +25797,46 @@ This service provides a WEB interface to Zabbix server. @c %start of fragment +@deftp {Data Type} zabbix-front-end-configuration Available @code{zabbix-front-end-configuration} fields are: -@deftypevr {@code{zabbix-front-end-configuration} parameter} nginx-server-configuration-list nginx -NGINX configuration. +@table @asis +@item @code{zabbix-server} (default: @code{zabbix-server}) (type: file-like) +The Zabbix server package to use. -@end deftypevr +@item @code{fastcgi-params} (type: list) +List of FastCGI parameter pairs that will be included in the NGINX +configuration. -@deftypevr {@code{zabbix-front-end-configuration} parameter} string db-host +@item @code{db-host} (default: @code{\"localhost\"}) (type: string) Database host name. -Defaults to @samp{"localhost"}. - -@end deftypevr - -@deftypevr {@code{zabbix-front-end-configuration} parameter} number db-port +@item @code{db-port} (default: @code{5432}) (type: number) Database port. -Defaults to @samp{5432}. - -@end deftypevr - -@deftypevr {@code{zabbix-front-end-configuration} parameter} string db-name +@item @code{db-name} (default: @code{\"zabbix\"}) (type: string) Database name. -Defaults to @samp{"zabbix"}. - -@end deftypevr - -@deftypevr {@code{zabbix-front-end-configuration} parameter} string db-user +@item @code{db-user} (default: @code{\"zabbix\"}) (type: string) Database user. -Defaults to @samp{"zabbix"}. - -@end deftypevr - -@deftypevr {@code{zabbix-front-end-configuration} parameter} string db-password +@item @code{db-password} (default: @code{\"\"}) (type: string) Database password. Please, use @code{db-secret-file} instead. -Defaults to @samp{""}. - -@end deftypevr +@item @code{db-secret-file} (default: @code{\"\"}) (type: string) +Secret file which will be appended to @file{zabbix.conf.php} file. This +file contains credentials for use by Zabbix front-end. You are expected +to create it manually. -@deftypevr {@code{zabbix-front-end-configuration} parameter} string db-secret-file -Secret file containing the credentials for the Zabbix front-end. The value -must be a local file name, not a G-expression. You are expected to create -this file manually. Its contents will be copied into @file{zabbix.conf.php} -as the value of @code{$DB['PASSWORD']}. - -Defaults to @samp{""}. - -@end deftypevr - -@deftypevr {@code{zabbix-front-end-configuration} parameter} string zabbix-host +@item @code{zabbix-host} (default: @code{\"localhost\"}) (type: string) Zabbix server hostname. -Defaults to @samp{"localhost"}. - -@end deftypevr - -@deftypevr {@code{zabbix-front-end-configuration} parameter} number zabbix-port +@item @code{zabbix-port} (default: @code{10051}) (type: number) Zabbix server port. -Defaults to @samp{10051}. +@end table -@end deftypevr +@end deftp @c %end of fragment diff --git a/gnu/services/monitoring.scm b/gnu/services/monitoring.scm index 398fe0bb8b..fb893d87cd 100644 --- a/gnu/services/monitoring.scm +++ b/gnu/services/monitoring.scm @@ -50,8 +50,7 @@ zabbix-agent-configuration zabbix-agent-service-type zabbix-front-end-configuration - zabbix-front-end-service-type - %zabbix-front-end-configuration-nginx)) + zabbix-front-end-service-type)) ;;; @@ -552,30 +551,37 @@ configuration file.")) ,zabbix-agent-configuration-fields)) 'zabbix-agent-configuration)) -(define %zabbix-front-end-configuration-nginx - (nginx-server-configuration - (root #~(string-append #$zabbix-server:front-end "/share/zabbix/php")) - (index '("index.php")) - (locations - (let ((php-location (nginx-php-location))) - (list (nginx-location-configuration - (inherit php-location) - (body (append (nginx-location-configuration-body php-location) - (list " -fastcgi_param PHP_VALUE \"post_max_size = 16M - max_execution_time = 300\"; -"))))))) - (listen '("80")))) +(define zabbix-front-end-nginx-configuration + (match-lambda + (($ _ package fastcgi-params) + (list + (nginx-server-configuration + (root #~(string-append #$package:front-end "/share/zabbix/php")) + (index '("index.php")) + (locations + (let ((php-location (nginx-php-location))) + (list (nginx-location-configuration + (inherit php-location) + (body + (append (nginx-location-configuration-body php-location) + (list + (format #f "fastcgi_param PHP_VALUE \"~a\";" + (string-join + (map (match-lambda + ((key . value) + (format #f "~a = ~a~%" + key value))) + fastcgi-params)))))))))) + (listen '("80"))))))) (define-configuration zabbix-front-end-configuration - ;; TODO: Specify zabbix front-end package. - ;; (zabbix- - ;; (file-like zabbix-front-end) - ;; "The zabbix-front-end package.") - (nginx - (nginx-server-configuration-list - (list %zabbix-front-end-configuration-nginx)) - "NGINX configuration.") + (zabbix-server + (file-like zabbix-server) + "The Zabbix server package to use.") + (fastcgi-params + (list '(("post_max_size" . "16M") + ("max_execution_time" . "300"))) + "List of FastCGI parameter pairs that will be included in the NGINX configuration.") (db-host (string "localhost") "Database host name.") @@ -680,7 +686,7 @@ $IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG; (list (service-extension activation-service-type zabbix-front-end-activation) (service-extension nginx-service-type - zabbix-front-end-configuration-nginx) + zabbix-front-end-nginx-configuration) ;; Make sure php-fpm is instantiated. (service-extension php-fpm-service-type (const #t)))) -- cgit v1.3 From fff4daa5c2bfbf42c7ad2519f500bd254ce880a8 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sun, 30 Jan 2022 22:24:02 -0500 Subject: services/sound: Add a udev extension for the pulseaudio service type. PulseAudio provides udev rules used to adjust the configuration of certain hardware (e.g., sound cards); ensure they get used. * gnu/services/sound.scm (pulseaudio-service-type): Extend the udev-service-type with the pulseaudio package. --- gnu/services/sound.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/services/sound.scm b/gnu/services/sound.scm index 1217223a0c..03e62a1e36 100644 --- a/gnu/services/sound.scm +++ b/gnu/services/sound.scm @@ -159,7 +159,8 @@ ctl.!default { (extensions (list (service-extension session-environment-service-type pulseaudio-environment) - (service-extension etc-service-type pulseaudio-etc))) + (service-extension etc-service-type pulseaudio-etc) + (service-extension udev-service-type (const (list pulseaudio))))) (default-value (pulseaudio-configuration)) (description "Configure PulseAudio sound support."))) -- cgit v1.3 From 385427256a77ce609d76c94d900966dbbd3b53ea Mon Sep 17 00:00:00 2001 From: Evgeny Pisemsky Date: Tue, 1 Feb 2022 16:45:45 +0300 Subject: gnu: Add wireviz. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/engineering.scm (wireviz): New variable. Signed-off-by: 宋文武 --- gnu/packages/engineering.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index 04f5ba88b9..8464397958 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -27,6 +27,7 @@ ;;; Copyright © 2021 Ivan Gankevich ;;; Copyright © 2021 Petr Hodina ;;; Copyright © 2021 Foo Chuan Wei +;;; Copyright © 2022 Evgeny Pisemsky ;;; ;;; This file is part of GNU Guix. ;;; @@ -3272,3 +3273,24 @@ G-code instructions for FFF printers or PNG layers for mSLA 3D printers.") ;; Mark as tunable to take advantage of SIMD code in Eigen and in libigl. (properties '((tunable? . #t))))) + +(define-public wireviz + (package + (name "wireviz") + (version "0.3.2") + (source (origin + (method url-fetch) + (uri (pypi-uri "wireviz" version)) + (sha256 + (base32 + "1dgnlxxlna2m1fh0ybivw0psym0sa5cqsl72mjl79bwfspnif61h")))) + (build-system python-build-system) + (propagated-inputs (list python-graphviz python-pillow python-pyyaml)) + (home-page "https://github.com/formatc1702/WireViz") + (synopsis "Easily document cables and wiring harnesses") + (description + "WireViz is a tool for easily documenting cables, wiring harnesses and +connector pinouts. It takes plain text, YAML-formatted files as input and +produces beautiful graphical output thanks to GraphViz. It handles automatic +BOM creation and has a lot of extra features.") + (license license:gpl3))) -- cgit v1.3 From f906d4911ec610e59d8112cc7fc3457946c7f3db Mon Sep 17 00:00:00 2001 From: Michael Rohleder Date: Sun, 30 Jan 2022 11:49:52 +0100 Subject: gnu: xfce4-cpufreq-plugin: Update to 1.2.6. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/xfce.scm (xfce4-cpufreq-plugin): Update to 1.2.6. Signed-off-by: 宋文武 --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 38a0a25524..1f0ccb4d40 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -1441,7 +1441,7 @@ precedence rules, and the following functions and common constants.") (define-public xfce4-cpufreq-plugin (package (name "xfce4-cpufreq-plugin") - (version "1.2.4") + (version "1.2.6") (source (origin (method url-fetch) (uri (string-append "https://archive.xfce.org/src/panel-plugins/" @@ -1450,7 +1450,7 @@ precedence rules, and the following functions and common constants.") "/xfce4-cpufreq-plugin-" version ".tar.bz2")) (sha256 (base32 - "17kzy156xqnbk4apskg005p7r09q7zb8crifad5mbawc7ysihll1")))) + "19flmw9a3in0dq1hcfs5y452pcx1lkiym92xfkbjpgxaa79akpfd")))) (build-system gnu-build-system) (native-inputs (list intltool pkg-config)) -- cgit v1.3 From 67f28faf42a362ae4d50ede4cc48782e2aea887f Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Thu, 23 Sep 2021 08:09:10 +0200 Subject: services: tlp: Add config variables for battery charging. * gnu/services/pm.scm (tlp-configuration): Add start-charge-thresh-bat0, stop-charge-thresh-bat0, start-charge-thresh-bat1, stop-charge-thresh-bat1. * doc/guix.texi (Power Management Services): Document them. Signed-off-by: Ricardo Wurmus --- doc/guix.texi | 28 ++++++++++++++++++++++++++++ gnu/services/pm.scm | 16 ++++++++++++++++ 2 files changed, 44 insertions(+) diff --git a/doc/guix.texi b/doc/guix.texi index 1a6c364ac8..b10f0d085b 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -29898,6 +29898,34 @@ Defaults to @samp{"powersave"}. @end deftypevr +@deftypevr {@code{tlp-configuration} parameter} maybe-non-negative-integer start-charge-thresh-bat0 +Percentage when battery 0 should begin charging. Only supported on some laptops. + +Defaults to @samp{disabled}. + +@end deftypevr + +@deftypevr {@code{tlp-configuration} parameter} maybe-non-negative-integer stop-charge-thresh-bat0 +Percentage when battery 0 should stop charging. Only supported on some laptops. + +Defaults to @samp{disabled}. + +@end deftypevr + +@deftypevr {@code{tlp-configuration} parameter} maybe-non-negative-integer start-charge-thresh-bat1 +Percentage when battery 1 should begin charging. Only supported on some laptops. + +Defaults to @samp{disabled}. + +@end deftypevr + +@deftypevr {@code{tlp-configuration} parameter} maybe-non-negative-integer stop-charge-thresh-bat1 +Percentage when battery 1 should stop charging. Only supported on some laptops. + +Defaults to @samp{disabled}. + +@end deftypevr + @deftypevr {@code{tlp-configuration} parameter} string radeon-power-profile-on-ac Radeon graphics clock speed level. Alternatives are low, mid, high, auto, default. diff --git a/gnu/services/pm.scm b/gnu/services/pm.scm index d91f2b69ce..3da3c0b961 100644 --- a/gnu/services/pm.scm +++ b/gnu/services/pm.scm @@ -253,6 +253,22 @@ default, performance, powersave.") (string "powersave") "Same as @code{pcie-aspm-ac} but on BAT mode.") + (start-charge-thresh-bat0 + (maybe-non-negative-integer 'disabled) + "Percentage when battery 0 should begin charging.") + + (stop-charge-thresh-bat0 + (maybe-non-negative-integer 'disabled) + "Percentage when battery 0 should stop charging.") + + (start-charge-thresh-bat1 + (maybe-non-negative-integer 'disabled) + "Percentage when battery 1 should begin charging.") + + (stop-charge-thresh-bat1 + (maybe-non-negative-integer 'disabled) + "Percentage when battery 1 should stop charging.") + (radeon-power-profile-on-ac (string "high") "Radeon graphics clock speed level. Alternatives are -- cgit v1.3 From f1dfe9a27a345b3b534e0bf4bf26c1b819d9e769 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Wed, 2 Feb 2022 10:50:00 +0200 Subject: gnu: ruby-stackprof: Adjust skipped test on riscv64-linux. * gnu/packages/ruby.scm (ruby-stackprof)[arguments]: On riscv64-linux adjust the 'skip-dubious-test phase. --- gnu/packages/ruby.scm | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 1632ad092b..4a7865a2f9 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -7,7 +7,7 @@ ;;; Copyright © 2015, 2016, 2017 Ben Woodcroft ;;; Copyright © 2017 Nikita ;;; Copyright © 2017, 2019, 2020, 2021 Marius Bakke -;;; Copyright © 2017, 2018, 2019, 2020, 2021 Efraim Flashner +;;; Copyright © 2017, 2018, 2019, 2020, 2021, 2022 Efraim Flashner ;;; Copyright © 2017, 2018, 2020, 2021 Tobias Geerinckx-Rice ;;; Copyright © 2017 Clément Lassieur ;;; Copyright © 2017, 2018, 2019 Christopher Baines @@ -7476,11 +7476,15 @@ navigation capabilities to @code{pry}, using @code{byebug}.") `(#:phases (modify-phases %standard-phases (add-before 'check 'skip-dubious-test - ;; This unreliable test can fail with "Expected 0 to be >= 1." (lambda _ - (substitute* "test/test_stackprof.rb" - (("def test_(cputime)" _ name) - (string-append "def skip_" name))))) + ,@(if (target-riscv64?) + ;; This unreliable test can fail with "Expected 32 to be <= 25." + '((substitute* "test/test_stackprof.rb" + ((".*assert_operator profile\\[:missed_samples.*") ""))) + ;; This unreliable test can fail with "Expected 0 to be >= 1." + '((substitute* "test/test_stackprof.rb" + (("def test_(cputime)" _ name) + (string-append "def skip_" name))))))) (add-before 'check 'build-tests (lambda _ (invoke "rake" "compile")))))) -- cgit v1.3 From cb1cb9de04b473e5e62e311b3e589253557c964b Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Wed, 2 Feb 2022 11:25:30 +0200 Subject: gnu: ruby-rubocop: Skip tests on riscv64-linux. * gnu/packages/ruby.scm (ruby-rubocop)[arguments]: Skip tests when building for riscv64-linux. --- gnu/packages/ruby.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 4a7865a2f9..b242aa8295 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -7139,7 +7139,9 @@ run.") "0wjw9vpzr4f3nf1zf010bag71w4hdi0haybdn7r5rlmw45pmim29")))) (build-system ruby-build-system) (arguments - '(#:test-target "default" + `(#:test-target "default" + ;; TODO: Figure out why test hangs. + #:tests? ,(not (target-riscv64?)) #:phases (modify-phases %standard-phases (add-before 'check 'set-home -- cgit v1.3 From 25d1a31434729d01eaf68b5c8744010c0724c613 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Wed, 2 Feb 2022 11:44:46 +0200 Subject: gnu: urlscan: Update to 0.9.9. * gnu/packages/mail.scm (urlscan): Update to 0.9.9. --- gnu/packages/mail.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index d601a6e4bc..26b919d0e0 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -3856,13 +3856,13 @@ servers. The 4rev1 and 4 versions of IMAP are supported.") (define-public urlscan (package (name "urlscan") - (version "0.9.8") + (version "0.9.9") (source (origin (method url-fetch) (uri (pypi-uri "urlscan" version)) (sha256 - (base32 "1imrg2r9cshfvdwkdkm9y4i58qzkgnnwkswmh3kgy38m334mlcyf")))) + (base32 "1lc06i4r29s7qsfds4w3ip85n5fxjn65n47wxh8pvyb46fdvjrns")))) (build-system python-build-system) (propagated-inputs (list python-urwid)) -- cgit v1.3 From b34eb09311b0e761c7883de1f7053174ee1e773c Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Wed, 2 Feb 2022 12:01:15 +0200 Subject: gnu: syncthing: Add release-monitoring-url. * gnu/packages/syncthing.scm (syncthing)[properties]: New field. --- gnu/packages/syncthing.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/packages/syncthing.scm b/gnu/packages/syncthing.scm index c19cc97862..8e857d5614 100644 --- a/gnu/packages/syncthing.scm +++ b/gnu/packages/syncthing.scm @@ -137,6 +137,9 @@ supports a wide variety of computing platforms. It uses the Block Exchange Protocol.") (home-page "https://github.com/syncthing/syncthing") + (properties + '((release-monitoring-url . "https://github.com/syncthing/syncthing/releases") + (upstream-name . "syncthing-source"))) (license mpl2.0))) (define-public syncthing-gtk -- cgit v1.3 From 5783091d66ba0a0b7892f5c2554453f3c4ae4d2d Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Wed, 18 Aug 2021 11:28:12 +0300 Subject: gnu: texlive-latex-base: Skip JIT formats on riscv64-linux. * gnu/packages/tex.scm (texlive-latex-base)[arguments]: Adjust custom 'build phase to also skip the jit formats on riscv64-linux. --- gnu/packages/tex.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index d890cb6ad3..a68c42096b 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -2981,9 +2981,10 @@ formats.") "platex-dev eptex" "uplatex-dev euptex" "csplain pdftex" "mf mf-nowin" "mex pdftex" "pdfmex pdftex" "luacsplain luatex" "optex luatex" - ;; LuaJIT is not ported to powerpc64le* yet and + ;; LuaJIT is not ported to powerpc64le* or riscv64 yet and ;; building these fail on powerpc. - ,@(if (target-powerpc?) + ,@(if (or (target-powerpc?) + (target-riscv64?)) '("luajittex" "luajithbtex" "mfluajit") '()) "cont-en xetex" "cont-en pdftex" "pdfcsplain xetex" "pdfcsplain pdftex" "pdfcsplain luatex" "cslatex pdftex" -- cgit v1.3 From 8f585083277e64ea1e9a0848ef3c49f12327618c Mon Sep 17 00:00:00 2001 From: jgart Date: Tue, 1 Feb 2022 12:26:42 -0500 Subject: gnu: utf-8-lineseparator: Update to cj8. * gnu/packages/textutils.scm (utf-8-lineseparator): Update to cj8. Signed-off-by: Efraim Flashner --- gnu/packages/textutils.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index f10ca300ab..cbc657172d 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm @@ -1377,7 +1377,7 @@ around it also has a list of style guides implemented with Vale in (define-public utf-8-lineseparator (package (name "utf-8-lineseparator") - (version "7") + (version "8") (source (origin (method git-fetch) (uri (git-reference @@ -1386,7 +1386,7 @@ around it also has a list of style guides implemented with Vale in (file-name (git-file-name name version)) (sha256 (base32 - "0lqwfrwq28246lja2gawf5jllh4smddswkpd5lscvc2ynylcmmzx")))) + "0rw34r0aiab55mqks9sjzjyskfwgn7mfhy65px1lljyrs2xvvzp5")))) (build-system gnu-build-system) (arguments `(#:make-flags -- cgit v1.3 From 0d37a5df7e709cadca97cfbbf9c680dfe54b8302 Mon Sep 17 00:00:00 2001 From: Mathieu Othacehe Date: Wed, 29 Dec 2021 13:45:26 +0100 Subject: installer: Add crash dump upload support. Suggested-by: Josselin Poiret * gnu/installer/dump.scm: New file. * gnu/installer/newt/dump.scm: New file. * gnu/local.mk (INSTALLER_MODULES): Add them. * gnu/installer/record.scm ()[dump-page]: New field. * gnu/installer/steps.scm (%current-result): New variable. (run-installer-steps): Update it. * gnu/installer.scm (installer-program): Add tar and gip to the installer path. Add guile-webutils and gnutls to the Guile extensions. Generate and send the crash dump report. * gnu/installer/newt.scm (exit-error): Add a report argument. Display the report id. (dump-page): New procedure. (newt-installer): Update it. --- gnu/installer.scm | 20 +++++++-- gnu/installer/dump.scm | 103 ++++++++++++++++++++++++++++++++++++++++++++ gnu/installer/newt.scm | 18 +++++--- gnu/installer/newt/dump.scm | 36 ++++++++++++++++ gnu/installer/record.scm | 7 ++- gnu/installer/steps.scm | 9 +++- gnu/local.mk | 2 + 7 files changed, 183 insertions(+), 12 deletions(-) create mode 100644 gnu/installer/dump.scm create mode 100644 gnu/installer/newt/dump.scm diff --git a/gnu/installer.scm b/gnu/installer.scm index c8b7a66cfc..d57b1d673a 100644 --- a/gnu/installer.scm +++ b/gnu/installer.scm @@ -33,6 +33,7 @@ #:use-module (gnu packages admin) #:use-module (gnu packages base) #:use-module (gnu packages bash) + #:use-module (gnu packages compression) #:use-module (gnu packages connman) #:use-module (gnu packages cryptsetup) #:use-module (gnu packages disk) @@ -336,6 +337,8 @@ selected keymap." guix ;guix system init call util-linux ;mkwap shadow + tar ;dump + gzip ;dump coreutils))) (with-output-to-port (%make-void-port "w") (lambda () @@ -352,7 +355,8 @@ selected keymap." ;; packages …), etc. modules. (with-extensions (list guile-gcrypt guile-newt guile-parted guile-bytestructures - guile-json-3 guile-git guix gnutls) + guile-json-3 guile-git guile-webutils + guix gnutls) (with-imported-modules `(,@(source-module-closure `(,@modules (gnu services herd) @@ -363,6 +367,7 @@ selected keymap." (use-modules (gnu installer record) (gnu installer keymap) (gnu installer steps) + (gnu installer dump) (gnu installer final) (gnu installer hostname) (gnu installer locale) @@ -432,15 +437,22 @@ selected keymap." (lambda (key . args) (syslog "crashing due to uncaught exception: ~s ~s~%" key args) - (let ((error-file "/tmp/last-installer-error")) + (let ((error-file "/tmp/last-installer-error") + (dump-archive "/tmp/dump.tgz")) (call-with-output-file error-file (lambda (port) (display-backtrace (make-stack #t) port) (print-exception port (stack-ref (make-stack #t) 1) key args))) - ((installer-exit-error current-installer) - error-file key args)) + (make-dump dump-archive + #:result %current-result + #:backtrace error-file) + (let ((report + ((installer-dump-page current-installer) + dump-archive))) + ((installer-exit-error current-installer) + error-file report key args))) (primitive-exit 1))) ((installer-exit current-installer))))))) diff --git a/gnu/installer/dump.scm b/gnu/installer/dump.scm new file mode 100644 index 0000000000..49c40a26af --- /dev/null +++ b/gnu/installer/dump.scm @@ -0,0 +1,103 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright © 2021 Mathieu Othacehe +;;; +;;; 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 . + +(define-module (gnu installer dump) + #:use-module (gnu installer utils) + #:use-module (guix build utils) + #:use-module (srfi srfi-11) + #:use-module (ice-9 iconv) + #:use-module (ice-9 match) + #:use-module (ice-9 popen) + #:use-module (ice-9 textual-ports) + #:use-module (web client) + #:use-module (web http) + #:use-module (web response) + #:use-module (webutils multipart) + #:export (make-dump + send-dump-report)) + +;; The installer crash dump type. +(define %dump-type "installer-dump") + +(define (result->list result) + "Return the alist for the given RESULT." + (hash-map->list (lambda (k v) + (cons k v)) + result)) + +(define* (make-dump output + #:key + result + backtrace) + "Create a crash dump archive in OUTPUT. RESULT is the installer result hash +table. BACKTRACE is the installer Guile backtrace." + (let ((dump-dir "/tmp/dump")) + (mkdir-p dump-dir) + (with-directory-excursion dump-dir + ;; backtrace + (copy-file backtrace "installer-backtrace") + + ;; installer result + (call-with-output-file "installer-result" + (lambda (port) + (write (result->list result) port))) + + ;; syslog + (copy-file "/var/log/messages" "syslog") + + ;; dmesg + (let ((pipe (open-pipe* OPEN_READ "dmesg"))) + (call-with-output-file "dmesg" + (lambda (port) + (dump-port pipe port) + (close-pipe pipe))))) + + (with-directory-excursion (dirname dump-dir) + (system* "tar" "-zcf" output (basename dump-dir))))) + +(define* (send-dump-report dump + #:key + (url "https://dump.guix.gnu.org")) + "Turn the DUMP archive into a multipart body and send it to the Guix crash +dump server at URL." + (define (match-boundary kont) + (match-lambda + (('boundary . (? string? b)) + (kont b)) + (x #f))) + + (define (response->string response) + (bytevector->string + (read-response-body response) + "UTF-8")) + + (let-values (((body boundary) + (call-with-input-file dump + (lambda (port) + (format-multipart-body + `((,%dump-type . ,port))))))) + (false-if-exception + (response->string + (http-post + (string-append url "/upload") + #:keep-alive? #t + #:streaming? #t + #:headers `((content-type + . (multipart/form-data + (boundary . ,boundary)))) + #:body body))))) diff --git a/gnu/installer/newt.scm b/gnu/installer/newt.scm index 4f7fc6f4dc..d48e2c0129 100644 --- a/gnu/installer/newt.scm +++ b/gnu/installer/newt.scm @@ -19,6 +19,7 @@ (define-module (gnu installer newt) #:use-module (gnu installer record) #:use-module (gnu installer utils) + #:use-module (gnu installer newt dump) #:use-module (gnu installer newt ethernet) #:use-module (gnu installer newt final) #:use-module (gnu installer newt parameters) @@ -55,16 +56,19 @@ (newt-finish) (clear-screen)) -(define (exit-error file key args) +(define (exit-error file report key args) (newt-set-color COLORSET-ROOT "white" "red") (let ((width (nearest-exact-integer (* (screen-columns) 0.8))) (height (nearest-exact-integer - (* (screen-rows) 0.7)))) + (* (screen-rows) 0.7))) + (report (if report + (format #f ". It has been uploaded as ~a" report) + ""))) (run-file-textbox-page #:info-text (format #f (G_ "The installer has encountered an unexpected \ -problem. The backtrace is displayed below. Please report it by email to \ -<~a>.") %guix-bug-report-address) +problem. The backtrace is displayed below~a. Please report it by email to \ +<~a>.") report %guix-bug-report-address) #:title (G_ "Unexpected problem") #:file file #:exit-button? #f @@ -123,6 +127,9 @@ problem. The backtrace is displayed below. Please report it by email to \ (define (parameters-page keyboard-layout-selection) (run-parameters-page keyboard-layout-selection)) +(define (dump-page steps) + (run-dump-page steps)) + (define newt-installer (installer (name 'newt) @@ -142,4 +149,5 @@ problem. The backtrace is displayed below. Please report it by email to \ (services-page services-page) (welcome-page welcome-page) (parameters-menu parameters-menu) - (parameters-page parameters-page))) + (parameters-page parameters-page) + (dump-page dump-page))) diff --git a/gnu/installer/newt/dump.scm b/gnu/installer/newt/dump.scm new file mode 100644 index 0000000000..64f0d58237 --- /dev/null +++ b/gnu/installer/newt/dump.scm @@ -0,0 +1,36 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright © 2021 Mathieu Othacehe +;;; +;;; 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 . + +(define-module (gnu installer newt dump) + #:use-module (gnu installer dump) + #:use-module (gnu installer newt page) + #:use-module (guix i18n) + #:use-module (newt) + #:export (run-dump-page)) + +(define (run-dump-page dump) + "Run a dump page, proposing the user to upload the crash dump to Guix +servers." + (case (choice-window + (G_ "Crash dump upload") + (G_ "Yes") + (G_ "No") + (G_ "The installer failed. Do you accept to upload the crash dump \ +to Guix servers, so that we can investigate the issue?")) + ((1) (send-dump-report dump)) + ((2) #f))) diff --git a/gnu/installer/record.scm b/gnu/installer/record.scm index 0b34318c45..e7cd45ee83 100644 --- a/gnu/installer/record.scm +++ b/gnu/installer/record.scm @@ -41,7 +41,8 @@ installer-services-page installer-welcome-page installer-parameters-menu - installer-parameters-page)) + installer-parameters-page + installer-dump-page)) ;;; @@ -91,4 +92,6 @@ ;; procedure (menu-proc) -> void (parameters-menu installer-parameters-menu) ;; procedure (keyboard-layout-selection) -> void - (parameters-page installer-parameters-page)) + (parameters-page installer-parameters-page) + ;; procedure (dump) -> void + (dump-page installer-dump-page)) diff --git a/gnu/installer/steps.scm b/gnu/installer/steps.scm index c05dfa567a..55433cff31 100644 --- a/gnu/installer/steps.scm +++ b/gnu/installer/steps.scm @@ -52,7 +52,13 @@ %installer-configuration-file %installer-target-dir format-configuration - configuration->file)) + configuration->file + + %current-result)) + +;; Hash table storing the step results. Use it only for logging and debug +;; purposes. +(define %current-result (make-hash-table)) ;; This condition may be raised to abort the current step. (define-condition-type &installer-step-abort &condition @@ -183,6 +189,7 @@ return the accumalated result so far." (let* ((id (installer-step-id step)) (compute (installer-step-compute step)) (res (compute result done-steps))) + (hash-set! %current-result id res) (run (alist-cons id res result) #:todo-steps rest-steps #:done-steps (append done-steps (list step)))))))) diff --git a/gnu/local.mk b/gnu/local.mk index 9969bc67cb..9510c79671 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -758,6 +758,7 @@ GNU_SYSTEM_MODULES = \ INSTALLER_MODULES = \ %D%/installer.scm \ %D%/installer/connman.scm \ + %D%/installer/dump.scm \ %D%/installer/final.scm \ %D%/installer/hostname.scm \ %D%/installer/keymap.scm \ @@ -774,6 +775,7 @@ INSTALLER_MODULES = \ %D%/installer/user.scm \ %D%/installer/utils.scm \ \ + %D%/installer/newt/dump.scm \ %D%/installer/newt/ethernet.scm \ %D%/installer/newt/final.scm \ %D%/installer/newt/parameters.scm \ -- cgit v1.3 From 4a68a00c8b86b999510b0cd3aaeb76c064fbcd34 Mon Sep 17 00:00:00 2001 From: Josselin Poiret Date: Sat, 15 Jan 2022 14:49:54 +0100 Subject: installer: Use define instead of let at top-level. * gnu/installer.scm (installer-program): Improve readability by using define at top-level. Signed-off-by: Mathieu Othacehe --- gnu/installer.scm | 88 +++++++++++++++++++++++++++---------------------------- 1 file changed, 44 insertions(+), 44 deletions(-) diff --git a/gnu/installer.scm b/gnu/installer.scm index d57b1d673a..134fa2faaf 100644 --- a/gnu/installer.scm +++ b/gnu/installer.scm @@ -412,50 +412,50 @@ selected keymap." ;; verbose. (terminal-width 200) - (let* ((current-installer newt-installer) - (steps (#$steps current-installer))) - ((installer-init current-installer)) - - (catch #t - (lambda () - (define results - (run-installer-steps - #:rewind-strategy 'menu - #:menu-proc (installer-menu-page current-installer) - #:steps steps)) - - (match (result-step results 'final) - ('success - ;; We did it! Let's reboot! - (sync) - (stop-service 'root)) - (_ - ;; The installation failed, exit so that it is restarted - ;; by login. - #f))) - (const #f) - (lambda (key . args) - (syslog "crashing due to uncaught exception: ~s ~s~%" - key args) - (let ((error-file "/tmp/last-installer-error") - (dump-archive "/tmp/dump.tgz")) - (call-with-output-file error-file - (lambda (port) - (display-backtrace (make-stack #t) port) - (print-exception port - (stack-ref (make-stack #t) 1) - key args))) - (make-dump dump-archive - #:result %current-result - #:backtrace error-file) - (let ((report - ((installer-dump-page current-installer) - dump-archive))) - ((installer-exit-error current-installer) - error-file report key args))) - (primitive-exit 1))) - - ((installer-exit current-installer))))))) + (define current-installer newt-installer) + (define steps (#$steps current-installer)) + ((installer-init current-installer)) + + (catch #t + (lambda () + (define results + (run-installer-steps + #:rewind-strategy 'menu + #:menu-proc (installer-menu-page current-installer) + #:steps steps)) + + (match (result-step results 'final) + ('success + ;; We did it! Let's reboot! + (sync) + (stop-service 'root)) + (_ + ;; The installation failed, exit so that it is restarted + ;; by login. + #f))) + (const #f) + (lambda (key . args) + (syslog "crashing due to uncaught exception: ~s ~s~%" + key args) + (let ((error-file "/tmp/last-installer-error") + (dump-archive "/tmp/dump.tgz")) + (call-with-output-file error-file + (lambda (port) + (display-backtrace (make-stack #t) port) + (print-exception port + (stack-ref (make-stack #t) 1) + key args))) + (make-dump dump-archive + #:result %current-result + #:backtrace error-file) + (let ((report + ((installer-dump-page current-installer) + dump-archive))) + ((installer-exit-error current-installer) + error-file report key args))) + (primitive-exit 1))) + + ((installer-exit current-installer)))))) (program-file "installer" -- cgit v1.3 From 7251b15d302cdc53f26555396b226ad60684ad9c Mon Sep 17 00:00:00 2001 From: Josselin Poiret Date: Sat, 15 Jan 2022 14:49:55 +0100 Subject: installer: Generalize logging facility. * gnu/installer/utils.scm (%syslog-line-hook, open-new-log-port, installer-log-port, %installer-log-line-hook, %display-line-hook, %default-installer-line-hooks, installer-log-line): Add new variables. Signed-off-by: Mathieu Othacehe --- gnu/installer/utils.scm | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/gnu/installer/utils.scm b/gnu/installer/utils.scm index 9bd41e2ca0..b1b6f8b23f 100644 --- a/gnu/installer/utils.scm +++ b/gnu/installer/utils.scm @@ -37,7 +37,12 @@ run-command syslog-port + %syslog-line-hook syslog + installer-log-port + %installer-log-line-hook + %default-installer-line-hooks + installer-log-line call-with-time let/time @@ -142,6 +147,9 @@ values." (set! port (open-syslog-port))) (or port (%make-void-port "w"))))) +(define (%syslog-line-hook line) + (format (syslog-port) "installer[~d]: ~a~%" (getpid) line)) + (define-syntax syslog (lambda (s) "Like 'format', but write to syslog." @@ -152,6 +160,43 @@ values." (syntax->datum #'fmt)))) #'(format (syslog-port) fmt (getpid) args ...)))))) +(define (open-new-log-port) + (define now (localtime (time-second (current-time)))) + (define filename + (format #f "/tmp/installer.~a.log" + (strftime "%F.%T" now))) + (open filename (logior O_RDWR + O_CREAT))) + +(define installer-log-port + (let ((port #f)) + (lambda () + "Return an input and output port to the installer log." + (unless port + (set! port (open-new-log-port))) + port))) + +(define (%installer-log-line-hook line) + (format (installer-log-port) "~a~%" line)) + +(define (%display-line-hook line) + (display line) + (newline)) + +(define %default-installer-line-hooks + (list %syslog-line-hook + %installer-log-line-hook)) + +(define-syntax installer-log-line + (lambda (s) + "Like 'format', but uses the default line hooks, and only formats one line." + (syntax-case s () + ((_ fmt args ...) + (string? (syntax->datum #'fmt)) + #'(let ((formatted (format #f fmt args ...))) + (for-each (lambda (f) (f formatted)) + %default-installer-line-hooks)))))) + ;;; ;;; Client protocol. -- cgit v1.3 From 4f2fd33b4f27f590ec2337daef339cf3e2337dab Mon Sep 17 00:00:00 2001 From: Josselin Poiret Date: Sat, 15 Jan 2022 14:49:56 +0100 Subject: installer: Use new installer-log-line everywhere. * gnu/installer.scm (installer-program) * gnu/installer/final.scm (install-locale) * gnu/installer/newt.scm (init) * gnu/installer/newt/final.scm (run-final-page) * gnu/installer/newt/page.scm (run-form-with-clients) * gnu/installer/newt/partition.scm (run-partitioning-page) * gnu/installer/parted.scm (eligible-devices, mkpart, luks-format-and-open, luks-close, mount-user-partitions, umount-user-partitions, free-parted): * gnu/installer/steps.scm (run-installer-steps): * gnu/installer/utils.scm (run-command, send-to-clients): Use it. Signed-off-by: Mathieu Othacehe --- gnu/installer.scm | 2 +- gnu/installer/final.scm | 6 ++--- gnu/installer/newt.scm | 2 +- gnu/installer/newt/final.scm | 4 ++-- gnu/installer/newt/page.scm | 13 ++++++----- gnu/installer/newt/partition.scm | 4 ++-- gnu/installer/parted.scm | 50 ++++++++++++++++++++-------------------- gnu/installer/steps.scm | 2 +- gnu/installer/utils.scm | 13 ++++++----- 9 files changed, 49 insertions(+), 47 deletions(-) diff --git a/gnu/installer.scm b/gnu/installer.scm index 134fa2faaf..d0d012f04b 100644 --- a/gnu/installer.scm +++ b/gnu/installer.scm @@ -435,7 +435,7 @@ selected keymap." #f))) (const #f) (lambda (key . args) - (syslog "crashing due to uncaught exception: ~s ~s~%" + (installer-log-line "crashing due to uncaught exception: ~s ~s" key args) (let ((error-file "/tmp/last-installer-error") (dump-archive "/tmp/dump.tgz")) diff --git a/gnu/installer/final.scm b/gnu/installer/final.scm index 276af908f7..fbfac1f692 100644 --- a/gnu/installer/final.scm +++ b/gnu/installer/final.scm @@ -125,15 +125,15 @@ it can interact with the rest of the system." (setlocale LC_ALL locale)))) (if supported? (begin - (syslog "install supported locale ~a~%." locale) + (installer-log-line "install supported locale ~a." locale) (setenv "LC_ALL" locale)) (begin ;; If the selected locale is not supported, install a default UTF-8 ;; locale. This is required to copy some files with UTF-8 ;; characters, in the nss-certs package notably. Set LANGUAGE ;; anyways, to have translated messages if possible. - (syslog "~a locale is not supported, installating en_US.utf8 \ -locale instead.~%" locale) + (installer-log-line "~a locale is not supported, installing \ +en_US.utf8 locale instead." locale) (setlocale LC_ALL "en_US.utf8") (setenv "LC_ALL" "en_US.utf8") (setenv "LANGUAGE" diff --git a/gnu/installer/newt.scm b/gnu/installer/newt.scm index d48e2c0129..61fb9cf2ca 100644 --- a/gnu/installer/newt.scm +++ b/gnu/installer/newt.scm @@ -48,7 +48,7 @@ (newt-init) (clear-screen) (set-screen-size!) - (syslog "Display is ~ax~a.~%" (screen-columns) (screen-rows)) + (installer-log-line "Display is ~ax~a." (screen-columns) (screen-rows)) (push-help-line (format #f (G_ "Press for installation parameters.")))) diff --git a/gnu/installer/newt/final.scm b/gnu/installer/newt/final.scm index 7f6dd9f075..efe422f4f4 100644 --- a/gnu/installer/newt/final.scm +++ b/gnu/installer/newt/final.scm @@ -109,7 +109,7 @@ a specific step, or restart the installer.")) (define (run-final-page result prev-steps) (define (wait-for-clients) (unless (null? (current-clients)) - (syslog "waiting with clients before starting final step~%") + (installer-log-line "waiting with clients before starting final step") (send-to-clients '(starting-final-step)) (match (select (current-clients) '() '()) (((port _ ...) _ _) @@ -119,7 +119,7 @@ a specific step, or restart the installer.")) ;; things such as changing the swap partition label. (wait-for-clients) - (syslog "proceeding with final step~%") + (installer-log-line "proceeding with final step") (let* ((configuration (format-configuration prev-steps result)) (user-partitions (result-step result 'partition)) (locale (result-step result 'locale)) diff --git a/gnu/installer/newt/page.scm b/gnu/installer/newt/page.scm index 4209674c28..d9901c33a1 100644 --- a/gnu/installer/newt/page.scm +++ b/gnu/installer/newt/page.scm @@ -93,9 +93,9 @@ disconnect. Like 'run-form', return two values: the exit reason, and an \"argument\"." (define* (discard-client! port #:optional errno) (if errno - (syslog "removing client ~d due to ~s~%" + (installer-log-line "removing client ~d due to ~s" (fileno port) (strerror errno)) - (syslog "removing client ~d due to EOF~%" + (installer-log-line "removing client ~d due to EOF" (fileno port))) ;; XXX: Watch out! There's no 'form-unwatch-fd' procedure in Newt so we @@ -124,7 +124,7 @@ Like 'run-form', return two values: the exit reason, and an \"argument\"." (send-to-clients exp) (let loop () - (syslog "running form ~s (~s) with ~d clients~%" + (installer-log-line "running form ~s (~s) with ~d clients" form title (length (current-clients))) ;; Call 'watch-clients!' within the loop because there might be new @@ -146,7 +146,7 @@ Like 'run-form', return two values: the exit reason, and an \"argument\"." (discard-client! port) (loop)) (obj - (syslog "form ~s (~s): client ~d replied ~s~%" + (installer-log-line "form ~s (~s): client ~d replied ~s" form title (fileno port) obj) (values 'exit-fd-ready obj)))) (lambda args @@ -156,8 +156,9 @@ Like 'run-form', return two values: the exit reason, and an \"argument\"." ;; Accept a new client and send it EXP. (match (accept port) ((client . _) - (syslog "accepting new client ~d while on form ~s~%" - (fileno client) form) + (installer-log-line + "accepting new client ~d while on form ~s" + (fileno client) form) (catch 'system-error (lambda () (write exp client) diff --git a/gnu/installer/newt/partition.scm b/gnu/installer/newt/partition.scm index ccc7686906..6a3aa3daff 100644 --- a/gnu/installer/newt/partition.scm +++ b/gnu/installer/newt/partition.scm @@ -801,9 +801,9 @@ by pressing the Exit button.~%~%"))) ;; Make sure the disks are not in use before proceeding to formatting. (free-parted eligible-devices) (format-user-partitions user-partitions-with-pass) - (syslog "formatted ~a user partitions~%" + (installer-log-line "formatted ~a user partitions" (length user-partitions-with-pass)) - (syslog "user-partitions: ~a~%" user-partitions) + (installer-log-line "user-partitions: ~a" user-partitions) (destroy-form-and-pop form) user-partitions)) diff --git a/gnu/installer/parted.scm b/gnu/installer/parted.scm index 66e07574c9..ced7a757d7 100644 --- a/gnu/installer/parted.scm +++ b/gnu/installer/parted.scm @@ -371,7 +371,8 @@ which are smaller than %MIN-DEVICE-SIZE." (let ((length (device-length device)) (sector-size (device-sector-size device))) (and (< (* length sector-size) %min-device-size) - (syslog "~a is not eligible because it is smaller than ~a.~%" + (installer-log-line "~a is not eligible because it is smaller than \ +~a." (device-path device) (unit-format-custom-byte device %min-device-size @@ -391,7 +392,8 @@ which are smaller than %MIN-DEVICE-SIZE." (string=? the-installer-root-partition-path (partition-get-path partition))) (disk-partitions disk))))) - (syslog "~a is not eligible because it is the installation device.~%" + (installer-log-line "~a is not eligible because it is the \ +installation device." (device-path device)))) (remove @@ -817,24 +819,22 @@ cause them to cross." (disk-add-partition disk partition no-constraint))) (partition-ok? (or partition-constraint-ok? partition-no-contraint-ok?))) - (syslog "Creating partition: -~/type: ~a -~/filesystem-type: ~a -~/start: ~a -~/end: ~a -~/start-range: [~a, ~a] -~/end-range: [~a, ~a] -~/constraint: ~a -~/no-constraint: ~a -" - partition-type - (filesystem-type-name filesystem-type) - start-sector* - end-sector - (geometry-start start-range) (geometry-end start-range) - (geometry-start end-range) (geometry-end end-range) - partition-constraint-ok? - partition-no-contraint-ok?) + (installer-log-line "Creating partition:") + (installer-log-line "~/type: ~a" partition-type) + (installer-log-line "~/filesystem-type: ~a" + (filesystem-type-name filesystem-type)) + (installer-log-line "~/start: ~a" start-sector*) + (installer-log-line "~/end: ~a" end-sector) + (installer-log-line "~/start-range: [~a, ~a]" + (geometry-start start-range) + (geometry-end start-range)) + (installer-log-line "~/end-range: [~a, ~a]" + (geometry-start end-range) + (geometry-end end-range)) + (installer-log-line "~/constraint: ~a" + partition-constraint-ok?) + (installer-log-line "~/no-constraint: ~a" + partition-no-contraint-ok?) ;; Set the partition name if supported. (when (and partition-ok? has-name? name) (partition-set-name partition name)) @@ -1188,7 +1188,7 @@ USER-PARTITION if it is encrypted, or the plain file-name otherwise." (call-with-luks-key-file password (lambda (key-file) - (syslog "formatting and opening LUKS entry ~s at ~s~%" + (installer-log-line "formatting and opening LUKS entry ~s at ~s" label file-name) (system* "cryptsetup" "-q" "luksFormat" file-name key-file) (system* "cryptsetup" "open" "--type" "luks" @@ -1197,7 +1197,7 @@ USER-PARTITION if it is encrypted, or the plain file-name otherwise." (define (luks-close user-partition) "Close the encrypted partition pointed by USER-PARTITION." (let ((label (user-partition-crypt-label user-partition))) - (syslog "closing LUKS entry ~s~%" label) + (installer-log-line "closing LUKS entry ~s" label) (system* "cryptsetup" "close" label))) (define (format-user-partitions user-partitions) @@ -1279,7 +1279,7 @@ respective mount-points." (file-name (user-partition-upper-file-name user-partition))) (mkdir-p target) - (syslog "mounting ~s on ~s~%" file-name target) + (installer-log-line "mounting ~s on ~s" file-name target) (mount file-name target mount-type))) sorted-partitions))) @@ -1295,7 +1295,7 @@ respective mount-points." (target (string-append (%installer-target-dir) mount-point))) - (syslog "unmounting ~s~%" target) + (installer-log-line "unmounting ~s" target) (umount target) (when crypt-label (luks-close user-partition)))) @@ -1486,6 +1486,6 @@ the devices not to be used before returning." (error (format #f (G_ "Device ~a is still in use.") file-name)) - (syslog "Syncing ~a took ~a seconds.~%" + (installer-log-line "Syncing ~a took ~a seconds." file-name (time-second time))))) device-file-names))) diff --git a/gnu/installer/steps.scm b/gnu/installer/steps.scm index 55433cff31..d9b3d6d07e 100644 --- a/gnu/installer/steps.scm +++ b/gnu/installer/steps.scm @@ -185,7 +185,7 @@ return the accumalated result so far." #:done-steps '()))))) ((installer-step-break? c) (reverse result))) - (syslog "running step '~a'~%" (installer-step-id step)) + (installer-log-line "running step '~a'" (installer-step-id step)) (let* ((id (installer-step-id step)) (compute (installer-step-compute step)) (res (compute result done-steps))) diff --git a/gnu/installer/utils.scm b/gnu/installer/utils.scm index b1b6f8b23f..74046c9cab 100644 --- a/gnu/installer/utils.scm +++ b/gnu/installer/utils.scm @@ -100,13 +100,13 @@ successfully, #f otherwise." (format (current-error-port) (G_ "Command failed with exit code ~a.~%") (invoke-error-exit-status c)) - (syslog "command ~s failed with exit code ~a" - command (invoke-error-exit-status c)) + (installer-log-line "command ~s failed with exit code ~a" + command (invoke-error-exit-status c)) (pause) #f)) - (syslog "running command ~s~%" command) + (installer-log-line "running command ~s" command) (apply invoke command) - (syslog "command ~s succeeded~%" command) + (installer-log-line "command ~s succeeded" command) (newline) (pause) #t)) @@ -259,8 +259,9 @@ accepting socket." (let ((errno (system-error-errno args))) (if (memv errno (list EPIPE ECONNRESET ECONNABORTED)) (begin - (syslog "removing client ~s due to ~s while replying~%" - (fileno client) (strerror errno)) + (installer-log-line + "removing client ~s due to ~s while replying" + (fileno client) (strerror errno)) (false-if-exception (close-port client)) remainder) (cons client remainder)))))) -- cgit v1.3 From 438bf9b840695902bc9a214789276227a34e7669 Mon Sep 17 00:00:00 2001 From: Josselin Poiret Date: Sat, 15 Jan 2022 14:49:57 +0100 Subject: installer: Un-export syslog syntax. * gnu/installer/utils.scm (syslog): Remove export. Signed-off-by: Mathieu Othacehe --- gnu/installer/utils.scm | 1 - 1 file changed, 1 deletion(-) diff --git a/gnu/installer/utils.scm b/gnu/installer/utils.scm index 74046c9cab..1bff1e1229 100644 --- a/gnu/installer/utils.scm +++ b/gnu/installer/utils.scm @@ -38,7 +38,6 @@ syslog-port %syslog-line-hook - syslog installer-log-port %installer-log-line-hook %default-installer-line-hooks -- cgit v1.3 From 2f7f1d11e9dd8dcf32c2f171f746f087e9354934 Mon Sep 17 00:00:00 2001 From: Josselin Poiret Date: Sat, 15 Jan 2022 14:49:58 +0100 Subject: installer: Keep PATH inside the install container. * gnu/installer/final.scm (install-system): Set PATH inside the container. Signed-off-by: Mathieu Othacehe --- gnu/installer/final.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/installer/final.scm b/gnu/installer/final.scm index fbfac1f692..7d5eca4c7e 100644 --- a/gnu/installer/final.scm +++ b/gnu/installer/final.scm @@ -169,7 +169,8 @@ or #f. Return #t on success and #f on failure." (database-dir "/var/guix/db") (database-file (string-append database-dir "/db.sqlite")) (saved-database (string-append database-dir "/db.save")) - (ret #f)) + (ret #f) + (path (getenv "PATH"))) (mkdir-p (%installer-target-dir)) ;; We want to initialize user passwords but we don't want to store them in @@ -208,6 +209,8 @@ or #f. Return #t on success and #f on failure." (setvbuf (current-output-port) 'none) (setvbuf (current-error-port) 'none) + (setenv "PATH" path) + ;; If there are any connected clients, assume that we are running ;; installation tests. In that case, dump the standard and error ;; outputs to syslog. -- cgit v1.3 From c57ec6ed1ee5f2367833c3e11ae7074f114dbf02 Mon Sep 17 00:00:00 2001 From: Josselin Poiret Date: Sat, 15 Jan 2022 14:49:59 +0100 Subject: installer: Remove specific logging code. * gnu/installer/final.scm (install-system): Remove command logging to syslog, as this is taken care of by the new facilities. Signed-off-by: Mathieu Othacehe --- gnu/installer/final.scm | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/gnu/installer/final.scm b/gnu/installer/final.scm index 7d5eca4c7e..63e5073ff4 100644 --- a/gnu/installer/final.scm +++ b/gnu/installer/final.scm @@ -211,17 +211,7 @@ or #f. Return #t on success and #f on failure." (setenv "PATH" path) - ;; If there are any connected clients, assume that we are running - ;; installation tests. In that case, dump the standard and error - ;; outputs to syslog. - (set! ret - (if (not (null? (current-clients))) - (with-output-to-file "/dev/console" - (lambda () - (with-error-to-file "/dev/console" - (lambda () - (run-command install-command))))) - (run-command install-command)))) + (set! ret (run-command install-command))) (lambda () ;; Restart guix-daemon so that it does no keep the MNT namespace ;; alive. -- cgit v1.3 From 0b9fbbb4dd24f227c9a708561ba291f6169ad2e6 Mon Sep 17 00:00:00 2001 From: Josselin Poiret Date: Sat, 15 Jan 2022 14:50:00 +0100 Subject: installer: Capture external commands output. * gnu/installer/utils.scm (run-external-command-with-handler, run-external-command-with-line-hooks): New variables. (run-command): Use run-external-command-with-line-hooks. Signed-off-by: Mathieu Othacehe --- gnu/installer/utils.scm | 98 +++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 78 insertions(+), 20 deletions(-) diff --git a/gnu/installer/utils.scm b/gnu/installer/utils.scm index 1bff1e1229..66c41ac2a1 100644 --- a/gnu/installer/utils.scm +++ b/gnu/installer/utils.scm @@ -25,7 +25,9 @@ #:use-module (srfi srfi-1) #:use-module (srfi srfi-19) #:use-module (srfi srfi-34) + #:use-module (ice-9 control) #:use-module (ice-9 match) + #:use-module (ice-9 popen) #:use-module (ice-9 rdelim) #:use-module (ice-9 regex) #:use-module (ice-9 format) @@ -34,6 +36,8 @@ read-all nearest-exact-integer read-percentage + run-external-command-with-handler + run-external-command-with-line-hooks run-command syslog-port @@ -78,37 +82,91 @@ number. If no percentage is found, return #f" (and result (string->number (match:substring result 1))))) +(define* (run-external-command-with-handler handler command) + "Run command specified by the list COMMAND in a child with output handler +HANDLER. HANDLER is a procedure taking an input port, to which the command +will write its standard output and error. Returns the integer status value of +the child process as returned by waitpid." + (match-let (((input . output) (pipe))) + ;; Hack to work around Guile bug 52835 + (define dup-output (duplicate-port output "w")) + ;; Void pipe, but holds the pid for close-pipe. + (define dummy-pipe + (with-input-from-file "/dev/null" + (lambda () + (with-output-to-port output + (lambda () + (with-error-to-port dup-output + (lambda () + (apply open-pipe* (cons "" command))))))))) + (close-port output) + (close-port dup-output) + (handler input) + (close-port input) + (close-pipe dummy-pipe))) + +(define (run-external-command-with-line-hooks line-hooks command) + "Run command specified by the list COMMAND in a child, processing each +output line with the procedures in LINE-HOOKS. Returns the integer status +value of the child process as returned by waitpid." + (define (handler input) + (and + (and=> (get-line input) + (lambda (line) + (if (eof-object? line) + #f + (begin (for-each (lambda (f) (f line)) + (append line-hooks + %default-installer-line-hooks)) + #t)))) + (handler input))) + (run-external-command-with-handler handler command)) + (define* (run-command command) "Run COMMAND, a list of strings. Return true if COMMAND exited successfully, #f otherwise." - (define env (environ)) - (define (pause) (format #t (G_ "Press Enter to continue.~%")) (send-to-clients '(pause)) - (environ env) ;restore environment variables (match (select (cons (current-input-port) (current-clients)) '() '()) (((port _ ...) _ _) (read-line port)))) - (setenv "PATH" "/run/current-system/profile/bin") - - (guard (c ((invoke-error? c) - (newline) - (format (current-error-port) - (G_ "Command failed with exit code ~a.~%") - (invoke-error-exit-status c)) - (installer-log-line "command ~s failed with exit code ~a" - command (invoke-error-exit-status c)) - (pause) - #f)) - (installer-log-line "running command ~s" command) - (apply invoke command) - (installer-log-line "command ~s succeeded" command) - (newline) - (pause) - #t)) + (installer-log-line "running command ~s" command) + (define result (run-external-command-with-line-hooks + (list %display-line-hook) + command)) + (define exit-val (status:exit-val result)) + (define term-sig (status:term-sig result)) + (define stop-sig (status:stop-sig result)) + (define succeeded? + (cond + ((and exit-val (not (zero? exit-val))) + (installer-log-line "command ~s exited with value ~a" + command exit-val) + (format #t (G_ "Command ~s exited with value ~a") + command exit-val) + #f) + (term-sig + (installer-log-line "command ~s killed by signal ~a" + command term-sig) + (format #t (G_ "Command ~s killed by signal ~a") + command term-sig) + #f) + (stop-sig + (installer-log-line "command ~s stopped by signal ~a" + command stop-sig) + (format #t (G_ "Command ~s stopped by signal ~a") + command stop-sig) + #f) + (else + (installer-log-line "command ~s succeeded" command) + (format #t (G_ "Command ~s succeeded") command) + #t))) + (newline) + (pause) + succeeded?) ;;; -- cgit v1.3 From 408427a36c6545115068d5f06de2ea21407374c6 Mon Sep 17 00:00:00 2001 From: Josselin Poiret Date: Sat, 15 Jan 2022 14:50:01 +0100 Subject: installer: Add installer-specific run command process. * gnu/installer/record.scm (installer)[run-command]: Add field. * gnu/installer/utils.scm (run-command-in-installer): Add parameter. * gnu/installer.scm (installer-program): Parameterize run-command-in-installer with current installer's run-command. * gnu/installer/newt.scm (newt-run-command): New variable. (newt-installer): Use it. Signed-off-by: Mathieu Othacehe --- gnu/installer.scm | 79 +++++++++++++++++++++++++----------------------- gnu/installer/newt.scm | 10 +++++- gnu/installer/record.scm | 7 +++-- gnu/installer/utils.scm | 10 ++++++ 4 files changed, 65 insertions(+), 41 deletions(-) diff --git a/gnu/installer.scm b/gnu/installer.scm index d0d012f04b..3cc5c79d4e 100644 --- a/gnu/installer.scm +++ b/gnu/installer.scm @@ -416,44 +416,47 @@ selected keymap." (define steps (#$steps current-installer)) ((installer-init current-installer)) - (catch #t - (lambda () - (define results - (run-installer-steps - #:rewind-strategy 'menu - #:menu-proc (installer-menu-page current-installer) - #:steps steps)) - - (match (result-step results 'final) - ('success - ;; We did it! Let's reboot! - (sync) - (stop-service 'root)) - (_ - ;; The installation failed, exit so that it is restarted - ;; by login. - #f))) - (const #f) - (lambda (key . args) - (installer-log-line "crashing due to uncaught exception: ~s ~s" - key args) - (let ((error-file "/tmp/last-installer-error") - (dump-archive "/tmp/dump.tgz")) - (call-with-output-file error-file - (lambda (port) - (display-backtrace (make-stack #t) port) - (print-exception port - (stack-ref (make-stack #t) 1) - key args))) - (make-dump dump-archive - #:result %current-result - #:backtrace error-file) - (let ((report - ((installer-dump-page current-installer) - dump-archive))) - ((installer-exit-error current-installer) - error-file report key args))) - (primitive-exit 1))) + (parameterize + ((run-command-in-installer + (installer-run-command current-installer))) + (catch #t + (lambda () + (define results + (run-installer-steps + #:rewind-strategy 'menu + #:menu-proc (installer-menu-page current-installer) + #:steps steps)) + + (match (result-step results 'final) + ('success + ;; We did it! Let's reboot! + (sync) + (stop-service 'root)) + (_ + ;; The installation failed, exit so that it is restarted + ;; by login. + #f))) + (const #f) + (lambda (key . args) + (installer-log-line "crashing due to uncaught exception: ~s ~s" + key args) + (let ((error-file "/tmp/last-installer-error") + (dump-archive "/tmp/dump.tgz")) + (call-with-output-file error-file + (lambda (port) + (display-backtrace (make-stack #t) port) + (print-exception port + (stack-ref (make-stack #t) 1) + key args))) + (make-dump dump-archive + #:result %current-result + #:backtrace error-file) + (let ((report + ((installer-dump-page current-installer) + dump-archive))) + ((installer-exit-error current-installer) + error-file report key args))) + (primitive-exit 1)))) ((installer-exit current-installer)))))) diff --git a/gnu/installer/newt.scm b/gnu/installer/newt.scm index 61fb9cf2ca..fc851339d1 100644 --- a/gnu/installer/newt.scm +++ b/gnu/installer/newt.scm @@ -79,6 +79,13 @@ problem. The backtrace is displayed below~a. Please report it by email to \ (newt-finish) (clear-screen)) +(define (newt-run-command . args) + (newt-suspend) + (clear-screen) + (define result (run-command args)) + (newt-resume) + result) + (define (final-page result prev-steps) (run-final-page result prev-steps)) @@ -150,4 +157,5 @@ problem. The backtrace is displayed below~a. Please report it by email to \ (welcome-page welcome-page) (parameters-menu parameters-menu) (parameters-page parameters-page) - (dump-page dump-page))) + (dump-page dump-page) + (run-command newt-run-command))) diff --git a/gnu/installer/record.scm b/gnu/installer/record.scm index e7cd45ee83..23db3edd70 100644 --- a/gnu/installer/record.scm +++ b/gnu/installer/record.scm @@ -42,7 +42,8 @@ installer-welcome-page installer-parameters-menu installer-parameters-page - installer-dump-page)) + installer-dump-page + installer-run-command)) ;;; @@ -94,4 +95,6 @@ ;; procedure (keyboard-layout-selection) -> void (parameters-page installer-parameters-page) ;; procedure (dump) -> void - (dump-page installer-dump-page)) + (dump-page installer-dump-page) + ;; procedure command -> bool + (run-command installer-run-command)) diff --git a/gnu/installer/utils.scm b/gnu/installer/utils.scm index 66c41ac2a1..fb62fb8896 100644 --- a/gnu/installer/utils.scm +++ b/gnu/installer/utils.scm @@ -25,6 +25,7 @@ #:use-module (srfi srfi-1) #:use-module (srfi srfi-19) #:use-module (srfi srfi-34) + #:use-module (srfi srfi-35) #:use-module (ice-9 control) #:use-module (ice-9 match) #:use-module (ice-9 popen) @@ -39,6 +40,7 @@ run-external-command-with-handler run-external-command-with-line-hooks run-command + run-command-in-installer syslog-port %syslog-line-hook @@ -168,6 +170,14 @@ successfully, #f otherwise." (pause) succeeded?) +(define run-command-in-installer + (make-parameter + (lambda (. args) + (raise + (condition + (&serious) + (&message (message "run-command-in-installer not set"))))))) + ;;; ;;; Logging. -- cgit v1.3 From af59e53631fa9ca729db6dcf9838b5f4c67e27b7 Mon Sep 17 00:00:00 2001 From: Josselin Poiret Date: Sat, 15 Jan 2022 14:50:02 +0100 Subject: installer: Use run-command-in-installer in (gnu installer parted). * gnu/installer/parted.scm (remove-logical-devices, create-btrfs-file-system, create-ext4-file-system, create-fat16-file-system, create-fat32-file-system, create-jfs-file-system, create-ntfs-file-system, create-xfs-file-system, create-swap-partition, luks-format-and-open, luks-close): Use run-command-in-installer. (with-null-output-ports): Remove. Signed-off-by: Mathieu Othacehe --- gnu/installer/parted.scm | 44 ++++++++++++++------------------------------ 1 file changed, 14 insertions(+), 30 deletions(-) diff --git a/gnu/installer/parted.scm b/gnu/installer/parted.scm index ced7a757d7..c8bb73ee64 100644 --- a/gnu/installer/parted.scm +++ b/gnu/installer/parted.scm @@ -343,8 +343,7 @@ fail. See rereadpt function in wipefs.c of util-linux for an explanation." (define (remove-logical-devices) "Remove all active logical devices." - (with-null-output-ports - (invoke "dmsetup" "remove_all"))) + ((run-command-in-installer) "dmsetup" "remove_all")) (define (installer-root-partition-path) "Return the root partition path, or #f if it could not be detected." @@ -1115,53 +1114,37 @@ list and return the updated list." (file-name file-name)))) user-partitions)) -(define-syntax-rule (with-null-output-ports exp ...) - "Evaluate EXP with both the output port and the error port pointing to the -bit bucket." - (with-output-to-port (%make-void-port "w") - (lambda () - (with-error-to-port (%make-void-port "w") - (lambda () exp ...))))) - (define (create-btrfs-file-system partition) "Create a btrfs file-system for PARTITION file-name." - (with-null-output-ports - (invoke "mkfs.btrfs" "-f" partition))) + ((run-command-in-installer) "mkfs.btrfs" "-f" partition)) (define (create-ext4-file-system partition) "Create an ext4 file-system for PARTITION file-name." - (with-null-output-ports - (invoke "mkfs.ext4" "-F" partition))) + ((run-command-in-installer) "mkfs.ext4" "-F" partition)) (define (create-fat16-file-system partition) "Create a fat16 file-system for PARTITION file-name." - (with-null-output-ports - (invoke "mkfs.fat" "-F16" partition))) + ((run-command-in-installer) "mkfs.fat" "-F16" partition)) (define (create-fat32-file-system partition) "Create a fat32 file-system for PARTITION file-name." - (with-null-output-ports - (invoke "mkfs.fat" "-F32" partition))) + ((run-command-in-installer) "mkfs.fat" "-F32" partition)) (define (create-jfs-file-system partition) "Create a JFS file-system for PARTITION file-name." - (with-null-output-ports - (invoke "jfs_mkfs" "-f" partition))) + ((run-command-in-installer) "jfs_mkfs" "-f" partition)) (define (create-ntfs-file-system partition) "Create a JFS file-system for PARTITION file-name." - (with-null-output-ports - (invoke "mkfs.ntfs" "-F" "-f" partition))) + ((run-command-in-installer) "mkfs.ntfs" "-F" "-f" partition)) (define (create-xfs-file-system partition) "Create an XFS file-system for PARTITION file-name." - (with-null-output-ports - (invoke "mkfs.xfs" "-f" partition))) + ((run-command-in-installer) "mkfs.xfs" "-f" partition)) (define (create-swap-partition partition) "Set up swap area on PARTITION file-name." - (with-null-output-ports - (invoke "mkswap" "-f" partition))) + ((run-command-in-installer) "mkswap" "-f" partition)) (define (call-with-luks-key-file password proc) "Write PASSWORD in a temporary file and pass it to PROC as argument." @@ -1190,15 +1173,16 @@ USER-PARTITION if it is encrypted, or the plain file-name otherwise." (lambda (key-file) (installer-log-line "formatting and opening LUKS entry ~s at ~s" label file-name) - (system* "cryptsetup" "-q" "luksFormat" file-name key-file) - (system* "cryptsetup" "open" "--type" "luks" - "--key-file" key-file file-name label))))) + ((run-command-in-installer) "cryptsetup" "-q" "luksFormat" + file-name key-file) + ((run-command-in-installer) "cryptsetup" "open" "--type" "luks" + "--key-file" key-file file-name label))))) (define (luks-close user-partition) "Close the encrypted partition pointed by USER-PARTITION." (let ((label (user-partition-crypt-label user-partition))) (installer-log-line "closing LUKS entry ~s" label) - (system* "cryptsetup" "close" label))) + ((run-command-in-installer) "cryptsetup" "close" label))) (define (format-user-partitions user-partitions) "Format the records in USER-PARTITIONS list with -- cgit v1.3 From 0a74509a696671580c8a7dc768d26f414748bab5 Mon Sep 17 00:00:00 2001 From: Josselin Poiret Date: Sat, 15 Jan 2022 14:50:03 +0100 Subject: installer: Raise condition when mklabel fails. * gnu/installer/parted.scm (mklabel): Do it. Signed-off-by: Mathieu Othacehe --- gnu/installer/parted.scm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/gnu/installer/parted.scm b/gnu/installer/parted.scm index c8bb73ee64..e33ef5f8fd 100644 --- a/gnu/installer/parted.scm +++ b/gnu/installer/parted.scm @@ -635,8 +635,14 @@ determined by MAX-LENGTH-COLUMN procedure." (define (mklabel device type-name) "Create a partition table on DEVICE. TYPE-NAME is the type of the partition table, \"msdos\" or \"gpt\"." - (let ((type (disk-type-get type-name))) - (disk-new-fresh device type))) + (let* ((type (disk-type-get type-name)) + (disk (disk-new-fresh device type))) + (or disk + (raise + (condition + (&error) + (&message (message (format #f "Cannot create partition table of type +~a on device ~a." type-name (device-path device))))))))) ;; -- cgit v1.3 From dad9a1c0b2fe4bfeb271e229ddfefb3d894d314d Mon Sep 17 00:00:00 2001 From: Josselin Poiret Date: Sat, 15 Jan 2022 14:50:04 +0100 Subject: installer: Fix run-file-textbox-page when edit-button is #f. * gnu/installer/newt/page.scm (run-file-textbox-page): Check if edit-button is #f. Signed-off-by: Mathieu Othacehe --- gnu/installer/newt/page.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/installer/newt/page.scm b/gnu/installer/newt/page.scm index d9901c33a1..9c684a3899 100644 --- a/gnu/installer/newt/page.scm +++ b/gnu/installer/newt/page.scm @@ -812,6 +812,7 @@ ITEMS when 'Ok' is pressed." (destroy-form-and-pop form)))) (if (and (eq? exit-reason 'exit-component) + edit-button (components=? argument edit-button)) (loop) ;recurse in tail position result))))) -- cgit v1.3 From ed6567abbf01a3e554c7a1d7ece31ab5f6f39ea6 Mon Sep 17 00:00:00 2001 From: Josselin Poiret Date: Sat, 15 Jan 2022 14:50:05 +0100 Subject: installer: Replace run-command by invoke in newt/page.scm. * gnu/installer/newt/page.scm (edit-file): Replace it. Signed-off-by: Mathieu Othacehe --- gnu/installer/newt/page.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/installer/newt/page.scm b/gnu/installer/newt/page.scm index 9c684a3899..695c7d875f 100644 --- a/gnu/installer/newt/page.scm +++ b/gnu/installer/newt/page.scm @@ -22,6 +22,7 @@ #:use-module (gnu installer steps) #:use-module (gnu installer utils) #:use-module (gnu installer newt utils) + #:use-module (guix build utils) #:use-module (guix i18n) #:use-module (ice-9 i18n) #:use-module (ice-9 match) @@ -727,8 +728,7 @@ ITEMS when 'Ok' is pressed." (newt-suspend) ;; Use Nano because it syntax-highlights Scheme by default. ;; TODO: Add a menu to choose an editor? - (run-command (list "/run/current-system/profile/bin/nano" file) - #:locale locale) + (invoke "nano" file) (newt-resume)) (define* (run-file-textbox-page #:key -- cgit v1.3 From 59fec4a1a2e1027dd03304b56200cc5e753c9faa Mon Sep 17 00:00:00 2001 From: Josselin Poiret Date: Sat, 15 Jan 2022 14:50:06 +0100 Subject: installer: Add nano to PATH. * gnu/installer.scm (installer-program): Add nano to the installer PATH. Signed-off-by: Mathieu Othacehe --- gnu/installer.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/installer.scm b/gnu/installer.scm index 3cc5c79d4e..c7e0921a19 100644 --- a/gnu/installer.scm +++ b/gnu/installer.scm @@ -43,6 +43,7 @@ #:autoload (gnu packages gnupg) (guile-gcrypt) #:use-module (gnu packages iso-codes) #:use-module (gnu packages linux) + #:use-module (gnu packages nano) #:use-module (gnu packages ncurses) #:use-module (gnu packages package-management) #:use-module (gnu packages tls) @@ -336,6 +337,7 @@ selected keymap." kbd ;chvt guix ;guix system init call util-linux ;mkwap + nano shadow tar ;dump gzip ;dump -- cgit v1.3 From 726d0bd2f36363392ba2fcefd6e5d4aeed27dc9e Mon Sep 17 00:00:00 2001 From: Josselin Poiret Date: Sat, 15 Jan 2022 14:50:07 +0100 Subject: installer: Use named prompt to abort or break installer steps. * gnu/installer/steps.scm (run-installer-steps): Set up 'installer-step prompt. * gnu/installer/newt/ethernet.scm (run-ethernet-page) * gnu/installer/newt/final.scm (run-config-display-page, run-install-failed-page) * gnu/installer/newt/keymap.scm (run-layout-page, run-variant-page) * gnu/installer/newt/locale.scm (run-language-page, run-territory-page, run-codeset-page, run-modifier-page, run-locale-page) * gnu/installer/newt/network.scm (run-technology-page, wait-service-online) * gnu/installer/newt/page.scm (run-listbox-selection-page, run-checkbox-tree-page) * gnu/installer/newt/partition.scm (button-exit-action) * gnu/installer/newt/services.scm (run-desktop-environments-cbt-page, run-networking-cbt-page, run-other-services-cbt-page, run-network-management-page) * gnu/installer/newt/timezone.scm (run-timezone-page) * gnu/installer/newt/user.scm (run-user-page) * gnu/installer/newt/welcome.scm (run-menu-page) * gnu/installer/newt/wifi.scm (run-wifi-page): Use the 'installer-step prompt to abort. Signed-off-by: Mathieu Othacehe --- gnu/installer/newt/ethernet.scm | 8 +-- gnu/installer/newt/final.scm | 8 +-- gnu/installer/newt/keymap.scm | 8 +-- gnu/installer/newt/locale.scm | 25 +++----- gnu/installer/newt/network.scm | 16 ++--- gnu/installer/newt/page.scm | 4 +- gnu/installer/newt/partition.scm | 6 +- gnu/installer/newt/services.scm | 16 ++--- gnu/installer/newt/timezone.scm | 4 +- gnu/installer/newt/user.scm | 5 +- gnu/installer/newt/welcome.scm | 2 +- gnu/installer/newt/wifi.scm | 4 +- gnu/installer/steps.scm | 127 +++++++++++++++++---------------------- 13 files changed, 85 insertions(+), 148 deletions(-) diff --git a/gnu/installer/newt/ethernet.scm b/gnu/installer/newt/ethernet.scm index ecd22efbb2..d75a640519 100644 --- a/gnu/installer/newt/ethernet.scm +++ b/gnu/installer/newt/ethernet.scm @@ -65,9 +65,7 @@ connection is pending." (run-error-page (G_ "No ethernet service available, please try again.") (G_ "No service")) - (raise - (condition - (&installer-step-abort)))) + (abort-to-prompt 'installer-step 'abort)) ((service) ;; Only one service is available so return it directly. service) @@ -81,7 +79,5 @@ connection is pending." #:button-text (G_ "Exit") #:button-callback-procedure (lambda _ - (raise - (condition - (&installer-step-abort)))) + (abort-to-prompt 'installer-step 'abort)) #:listbox-callback-procedure connect-ethernet-service)))) diff --git a/gnu/installer/newt/final.scm b/gnu/installer/newt/final.scm index efe422f4f4..7c3f73ee82 100644 --- a/gnu/installer/newt/final.scm +++ b/gnu/installer/newt/final.scm @@ -59,9 +59,7 @@ This will take a few minutes.") #:file-textbox-height height #:exit-button-callback-procedure (lambda () - (raise - (condition - (&installer-step-abort))))))) + (abort-to-prompt 'installer-step 'abort))))) (define (run-install-success-page) (match (current-clients) @@ -88,9 +86,7 @@ press the button to reboot."))) (G_ "Restart the installer") (G_ "The final system installation step failed. You can resume from \ a specific step, or restart the installer.")) - (1 (raise - (condition - (&installer-step-abort)))) + (1 (abort-to-prompt 'installer-step 'abort)) (2 ;; Keep going, the installer will be restarted later on. #t))) diff --git a/gnu/installer/newt/keymap.scm b/gnu/installer/newt/keymap.scm index 92f7f46f34..c5d4be6792 100644 --- a/gnu/installer/newt/keymap.scm +++ b/gnu/installer/newt/keymap.scm @@ -59,9 +59,7 @@ different layout at any time from the parameters menu."))) ((param) (const #f)) (else (lambda _ - (raise - (condition - (&installer-step-abort))))))))) + (abort-to-prompt 'installer-step 'abort))))))) (define (run-variant-page variants variant->text) (let ((title (G_ "Variant"))) @@ -74,9 +72,7 @@ different layout at any time from the parameters menu."))) #:button-text (G_ "Back") #:button-callback-procedure (lambda _ - (raise - (condition - (&installer-step-abort))))))) + (abort-to-prompt 'installer-step 'abort))))) (define (sort-layouts layouts) "Sort LAYOUTS list by putting the US layout ahead and return it." diff --git a/gnu/installer/newt/locale.scm b/gnu/installer/newt/locale.scm index bfd89aca2c..01171e253f 100644 --- a/gnu/installer/newt/locale.scm +++ b/gnu/installer/newt/locale.scm @@ -43,9 +43,7 @@ installation process and for the installed system.") #:button-text (G_ "Exit") #:button-callback-procedure (lambda _ - (raise - (condition - (&installer-step-abort)))))) + (abort-to-prompt 'installer-step 'abort)))) ;; Immediately install the chosen language so that the territory page that ;; comes after (optionally) is displayed in the chosen language. @@ -63,9 +61,7 @@ installation process and for the installed system.") #:button-text (G_ "Back") #:button-callback-procedure (lambda _ - (raise - (condition - (&installer-step-abort))))))) + (abort-to-prompt 'installer-step 'abort))))) (define (run-codeset-page codesets) (let ((title (G_ "Locale codeset"))) @@ -78,9 +74,7 @@ installation process and for the installed system.") #:button-text (G_ "Back") #:button-callback-procedure (lambda _ - (raise - (condition - (&installer-step-abort))))))) + (abort-to-prompt 'installer-step 'abort))))) (define (run-modifier-page modifiers modifier->text) (let ((title (G_ "Locale modifier"))) @@ -94,9 +88,7 @@ symbol.") #:button-text (G_ "Back") #:button-callback-procedure (lambda _ - (raise - (condition - (&installer-step-abort))))))) + (abort-to-prompt 'installer-step 'abort))))) (define* (run-locale-page #:key supported-locales @@ -110,11 +102,10 @@ associating a territory code with a territory name. The formatted locale, under glibc format is returned." (define (break-on-locale-found locales) - "Raise the &installer-step-break condition if LOCALES contains exactly one + "Break to the installer step if LOCALES contains exactly one element." (and (= (length locales) 1) - (raise - (condition (&installer-step-break))))) + (abort-to-prompt 'installer-step 'break))) (define (filter-locales locales result) "Filter the list of locale records LOCALES using the RESULT returned by @@ -218,8 +209,8 @@ glibc locale string and return it." ;; If run-installer-steps returns locally, it means that the user had to go ;; through all steps (language, territory, codeset and modifier) to select a - ;; locale. In that case, like if we exited by raising &installer-step-break - ;; condition, turn the result into a glibc locale string and return it. + ;; locale. In that case, like if we exited by breaking to the installer + ;; step, turn the result into a glibc locale string and return it. (result->locale-string supported-locales (run-installer-steps #:steps locale-steps))) diff --git a/gnu/installer/newt/network.scm b/gnu/installer/newt/network.scm index fb221483c3..0477a489be 100644 --- a/gnu/installer/newt/network.scm +++ b/gnu/installer/newt/network.scm @@ -65,12 +65,8 @@ Internet and return the selected technology. For now, only technologies with (G_ "Exit") (G_ "The install process requires Internet access but no \ network devices were found. Do you want to continue anyway?")) - ((1) (raise - (condition - (&installer-step-break)))) - ((2) (raise - (condition - (&installer-step-abort)))))) + ((1) (abort-to-prompt 'installer-step 'break)) + ((2) (abort-to-prompt 'installer-step 'abort)))) ((technology) ;; Since there's only one technology available, skip the selection ;; screen. @@ -86,9 +82,7 @@ network devices were found. Do you want to continue anyway?")) #:button-text (G_ "Exit") #:button-callback-procedure (lambda _ - (raise - (condition - (&installer-step-abort)))))))) + (abort-to-prompt 'installer-step 'abort)))))) (define (find-technology-by-type technologies type) "Find and return a technology with the given TYPE in TECHNOLOGIES list." @@ -156,9 +150,7 @@ FULL-VALUE tentatives, spaced by 1 second." (G_ "The selected network does not provide access to the \ Internet and the Guix substitute server, please try again.") (G_ "Connection error")) - (raise - (condition - (&installer-step-abort)))))) + (abort-to-prompt 'installer-step 'abort)))) (define (run-network-page) "Run a page to allow the user to configure connman so that it can access the diff --git a/gnu/installer/newt/page.scm b/gnu/installer/newt/page.scm index 695c7d875f..8c675fa837 100644 --- a/gnu/installer/newt/page.scm +++ b/gnu/installer/newt/page.scm @@ -488,7 +488,7 @@ the current listbox item has to be selected by key." (string=? str (listbox-item->text item)))) keys) ((key . item) item) - (#f (raise (condition (&installer-step-abort)))))) + (#f (abort-to-prompt 'installer-step 'abort)))) ;; On every listbox element change, check if we need to skip it. If yes, ;; depending on the 'last-listbox-key', jump forward or backward. If no, @@ -690,7 +690,7 @@ ITEMS when 'Ok' is pressed." (string=? str (item->text item)))) keys) ((key . item) item) - (#f (raise (condition (&installer-step-abort)))))) + (#f (abort-to-prompt 'installer-step 'abort)))) (add-form-to-grid grid form #t) (make-wrapped-grid-window grid title) diff --git a/gnu/installer/newt/partition.scm b/gnu/installer/newt/partition.scm index 6a3aa3daff..e7a97810ac 100644 --- a/gnu/installer/newt/partition.scm +++ b/gnu/installer/newt/partition.scm @@ -36,10 +36,8 @@ #:export (run-partitioning-page)) (define (button-exit-action) - "Raise the &installer-step-abort condition." - (raise - (condition - (&installer-step-abort)))) + "Abort the installer step." + (abort-to-prompt 'installer-step 'abort)) (define (run-scheme-page) "Run a page asking the user for a partitioning scheme." diff --git a/gnu/installer/newt/services.scm b/gnu/installer/newt/services.scm index c218825813..9951ad2212 100644 --- a/gnu/installer/newt/services.scm +++ b/gnu/installer/newt/services.scm @@ -46,9 +46,7 @@ to choose from them later when you log in.") #:checkbox-tree-height 9 #:exit-button-callback-procedure (lambda () - (raise - (condition - (&installer-step-abort))))))) + (abort-to-prompt 'installer-step 'abort))))) (define (run-networking-cbt-page) "Run a page allowing the user to select networking services." @@ -65,9 +63,7 @@ system.") #:checkbox-tree-height 5 #:exit-button-callback-procedure (lambda () - (raise - (condition - (&installer-step-abort))))))) + (abort-to-prompt 'installer-step 'abort))))) (define (run-printing-services-cbt-page) "Run a page allowing the user to select document services such as CUPS." @@ -85,9 +81,7 @@ system.") #:checkbox-tree-height 9 #:exit-button-callback-procedure (lambda () - (raise - (condition - (&installer-step-abort))))))) + (abort-to-prompt 'installer-step 'abort))))) (define (run-console-services-cbt-page) "Run a page to select various system adminstration services for non-graphical @@ -130,9 +124,7 @@ client may be enough for a server.") #:button-text (G_ "Exit") #:button-callback-procedure (lambda _ - (raise - (condition - (&installer-step-abort))))))) + (abort-to-prompt 'installer-step 'abort))))) (define (run-services-page) (let ((desktop (run-desktop-environments-cbt-page))) diff --git a/gnu/installer/newt/timezone.scm b/gnu/installer/newt/timezone.scm index 67bf41ff84..bed9f9d5cb 100644 --- a/gnu/installer/newt/timezone.scm +++ b/gnu/installer/newt/timezone.scm @@ -65,9 +65,7 @@ returned." #:button-callback-procedure (if (null? path) (lambda _ - (raise - (condition - (&installer-step-abort)))) + (abort-to-prompt 'installer-step 'abort)) (lambda _ (loop (all-but-last path)))) #:listbox-callback-procedure diff --git a/gnu/installer/newt/user.scm b/gnu/installer/newt/user.scm index 58bb86bf96..97141cfe64 100644 --- a/gnu/installer/newt/user.scm +++ b/gnu/installer/newt/user.scm @@ -20,7 +20,6 @@ (define-module (gnu installer newt user) #:use-module (gnu installer user) - #:use-module ((gnu installer steps) #:select (&installer-step-abort)) #:use-module (gnu installer newt page) #:use-module (gnu installer newt utils) #:use-module (gnu installer utils) @@ -257,9 +256,7 @@ administrator (\"root\").") (run users)) (reverse users)) ((components=? argument exit-button) - (raise - (condition - (&installer-step-abort)))))) + (abort-to-prompt 'installer-step 'abort)))) ('exit-fd-ready ;; Read the complete user list at once. (match argument diff --git a/gnu/installer/newt/welcome.scm b/gnu/installer/newt/welcome.scm index 5f461279e2..7a7ddfb7bd 100644 --- a/gnu/installer/newt/welcome.scm +++ b/gnu/installer/newt/welcome.scm @@ -84,7 +84,7 @@ we want this page to occupy all the screen space available." (string=? str (listbox-item->text item)))) keys) ((key . item) item) - (#f (raise (condition (&installer-step-abort)))))) + (#f (abort-to-prompt 'installer-step 'abort)))) (set-textbox-text logo-textbox (read-all logo)) diff --git a/gnu/installer/newt/wifi.scm b/gnu/installer/newt/wifi.scm index f5d8f1fdbf..8a87cbdf4b 100644 --- a/gnu/installer/newt/wifi.scm +++ b/gnu/installer/newt/wifi.scm @@ -237,9 +237,7 @@ force a wifi scan." (run-wifi-scan-page) (run-wifi-page)) ((components=? argument exit-button) - (raise - (condition - (&installer-step-abort)))) + (abort-to-prompt 'installer-step 'abort)) ((components=? argument listbox) (let ((result (connect-wifi-service listbox service-items))) (unless result diff --git a/gnu/installer/steps.scm b/gnu/installer/steps.scm index d9b3d6d07e..8bc38181a7 100644 --- a/gnu/installer/steps.scm +++ b/gnu/installer/steps.scm @@ -28,13 +28,7 @@ #:use-module (srfi srfi-34) #:use-module (srfi srfi-35) #:use-module (rnrs io ports) - #:export (&installer-step-abort - installer-step-abort? - - &installer-step-break - installer-step-break? - - + #:export ( installer-step make-installer-step installer-step? @@ -60,14 +54,6 @@ ;; purposes. (define %current-result (make-hash-table)) -;; This condition may be raised to abort the current step. -(define-condition-type &installer-step-abort &condition - installer-step-abort?) - -;; This condition may be raised to break out from the steps execution. -(define-condition-type &installer-step-break &condition - installer-step-break?) - ;; An installer-step record is basically an id associated to a compute ;; procedure. The COMPUTE procedure takes exactly one argument, an association ;; list containing the results of previously executed installer-steps (see @@ -94,8 +80,10 @@ (rewind-strategy 'previous) (menu-proc (const #f))) "Run the COMPUTE procedure of all records in STEPS -sequentially. If the &installer-step-abort condition is raised, fallback to a -previous install-step, accordingly to the specified REWIND-STRATEGY. +sequentially, inside a the 'installer-step prompt. When aborted to with a +parameter of 'abort, fallback to a previous install-step, accordingly to the +specified REWIND-STRATEGY. When aborted to with a parameter of 'break, stop +the computation and return the accumalated result so far. REWIND-STRATEGY possible values are 'previous, 'menu and 'start. If 'previous is selected, the execution will resume at the previous installer-step. If @@ -112,10 +100,7 @@ the form: where STEP-ID is the ID field of the installer-step and COMPUTE-RESULT the result of the associated COMPUTE procedure. This result association list is passed as argument of every COMPUTE procedure. It is finally returned when the -computation is over. - -If the &installer-step-break condition is raised, stop the computation and -return the accumalated result so far." +computation is over." (define (pop-result list) (cdr list)) @@ -149,63 +134,61 @@ return the accumalated result so far." (match todo-steps (() (reverse result)) ((step . rest-steps) - (guard (c ((installer-step-abort? c) - (case rewind-strategy - ((previous) - (match done-steps - (() - ;; We cannot go previous the first step. So re-raise - ;; the exception. It might be useful in the case of - ;; nested run-installer-steps. Abort to 'raise-above - ;; prompt to prevent the condition from being catched - ;; by one of the previously installed guard. - (abort-to-prompt 'raise-above c)) - ((prev-done ... last-done) - (run (pop-result result) - #:todo-steps (cons last-done todo-steps) - #:done-steps prev-done)))) - ((menu) - (let ((goto-step (menu-proc - (append done-steps (list step))))) - (if (eq? goto-step step) - (run result - #:todo-steps todo-steps - #:done-steps done-steps) - (skip-to-step goto-step result - #:todo-steps todo-steps - #:done-steps done-steps)))) - ((start) - (if (null? done-steps) - ;; Same as above, it makes no sense to jump to start - ;; when we are at the first installer-step. Abort to - ;; 'raise-above prompt to re-raise the condition. - (abort-to-prompt 'raise-above c) - (run '() - #:todo-steps steps - #:done-steps '()))))) - ((installer-step-break? c) - (reverse result))) - (installer-log-line "running step '~a'" (installer-step-id step)) - (let* ((id (installer-step-id step)) - (compute (installer-step-compute step)) - (res (compute result done-steps))) - (hash-set! %current-result id res) - (run (alist-cons id res result) - #:todo-steps rest-steps - #:done-steps (append done-steps (list step)))))))) + (call-with-prompt 'installer-step + (lambda () + (installer-log-line "running step '~a'" (installer-step-id step)) + (let* ((id (installer-step-id step)) + (compute (installer-step-compute step)) + (res (compute result done-steps))) + (hash-set! %current-result id res) + (run (alist-cons id res result) + #:todo-steps rest-steps + #:done-steps (append done-steps (list step))))) + (lambda (k action) + (match action + ('abort + (case rewind-strategy + ((previous) + (match done-steps + (() + ;; We cannot go previous the first step. Abort again to + ;; 'installer-step prompt. It might be useful in the case + ;; of nested run-installer-steps. + (abort-to-prompt 'installer-step action)) + ((prev-done ... last-done) + (run (pop-result result) + #:todo-steps (cons last-done todo-steps) + #:done-steps prev-done)))) + ((menu) + (let ((goto-step (menu-proc + (append done-steps (list step))))) + (if (eq? goto-step step) + (run result + #:todo-steps todo-steps + #:done-steps done-steps) + (skip-to-step goto-step result + #:todo-steps todo-steps + #:done-steps done-steps)))) + ((start) + (if (null? done-steps) + ;; Same as above, it makes no sense to jump to start + ;; when we are at the first installer-step. Abort to + ;; 'installer-step prompt again. + (abort-to-prompt 'installer-step action) + (run '() + #:todo-steps steps + #:done-steps '()))))) + ('break + (reverse result)))))))) ;; Ignore SIGPIPE so that we don't die if a client closes the connection ;; prematurely. (sigaction SIGPIPE SIG_IGN) (with-server-socket - (call-with-prompt 'raise-above - (lambda () - (run '() - #:todo-steps steps - #:done-steps '())) - (lambda (k condition) - (raise condition))))) + (run '() + #:todo-steps steps + #:done-steps '()))) (define (find-step-by-id steps id) "Find and return the step in STEPS whose id is equal to ID." -- cgit v1.3 From 7cbd95a9f662bf52a00dde2ea0123ed0dc640214 Mon Sep 17 00:00:00 2001 From: Josselin Poiret Date: Sat, 15 Jan 2022 14:50:08 +0100 Subject: installer: Add error page when running external commands. * gnu/installer/newt.scm (newt-run-command): Add it. * gnu/installer/newt/page.scm (%ok-button, %exit-button, %default-buttons, make-newt-buttons, run-textbox-page): Add them. Signed-off-by: Mathieu Othacehe --- gnu/installer/newt.scm | 54 ++++++++++++++++++++++++++--- gnu/installer/newt/page.scm | 83 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 132 insertions(+), 5 deletions(-) diff --git a/gnu/installer/newt.scm b/gnu/installer/newt.scm index fc851339d1..352d2997bd 100644 --- a/gnu/installer/newt.scm +++ b/gnu/installer/newt.scm @@ -41,6 +41,8 @@ #:use-module (guix discovery) #:use-module (guix i18n) #:use-module (srfi srfi-26) + #:use-module (srfi srfi-34) + #:use-module (srfi srfi-35) #:use-module (newt) #:export (newt-installer)) @@ -80,11 +82,53 @@ problem. The backtrace is displayed below~a. Please report it by email to \ (clear-screen)) (define (newt-run-command . args) - (newt-suspend) - (clear-screen) - (define result (run-command args)) - (newt-resume) - result) + (define command-output "") + (define (line-accumulator line) + (set! command-output + (string-append/shared command-output line "\n"))) + (define displayed-command + (string-join + (map (lambda (s) (string-append "\"" s "\"")) args) + " ")) + (define result (run-external-command-with-line-hooks (list line-accumulator) + args)) + (define exit-val (status:exit-val result)) + (define term-sig (status:term-sig result)) + (define stop-sig (status:stop-sig result)) + + (if (and exit-val (zero? exit-val)) + #t + (let ((info-text + (cond + (exit-val + (format #f (G_ "External command ~s exited with code ~a") + args exit-val)) + (term-sig + (format #f (G_ "External command ~s terminated by signal ~a") + args term-sig)) + (stop-sig + (format #f (G_ "External command ~s stopped by signal ~a") + args stop-sig))))) + (run-textbox-page #:title (G_ "External command error") + #:info-text info-text + #:content command-output + #:buttons-spec + (list + (cons "Ignore" (const #t)) + (cons "Abort" + (lambda () + (abort-to-prompt 'installer-step 'abort))) + (cons "Dump" + (lambda () + (raise + (condition + ((@@ (guix build utils) + &invoke-error) + (program (car args)) + (arguments (cdr args)) + (exit-status exit-val) + (term-signal term-sig) + (stop-signal stop-sig))))))))))) (define (final-page result prev-steps) (run-final-page result prev-steps)) diff --git a/gnu/installer/newt/page.scm b/gnu/installer/newt/page.scm index 8c675fa837..b5d7c98094 100644 --- a/gnu/installer/newt/page.scm +++ b/gnu/installer/newt/page.scm @@ -44,6 +44,9 @@ run-scale-page run-checkbox-tree-page run-file-textbox-page + %ok-button + %exit-button + run-textbox-page run-form-with-clients)) @@ -816,3 +819,83 @@ ITEMS when 'Ok' is pressed." (components=? argument edit-button)) (loop) ;recurse in tail position result))))) + +(define %ok-button + (cons (G_ "Ok") (lambda () #t))) + +(define %exit-button + (cons (G_ "Exit") (lambda () (abort-to-prompt 'installer-step 'abort)))) + +(define %default-buttons + (list %ok-button %exit-button)) + +(define (make-newt-buttons buttons-spec) + (map + (match-lambda ((title . proc) + (cons (make-button -1 -1 title) proc))) + buttons-spec)) + +(define* (run-textbox-page #:key + title + info-text + content + (buttons-spec %default-buttons)) + "Run a page to display INFO-TEXT followed by CONTENT to the user, who has to +choose an action among the buttons specified by BUTTONS-SPEC. + +BUTTONS-SPEC is an association list with button labels as keys, and callback +procedures as values. + +This procedure returns the result of the callback procedure of the button +chosen by the user." + (define info-textbox + (make-reflowed-textbox -1 -1 info-text + 50 + #:flags FLAG-BORDER)) + (define content-textbox + (make-textbox -1 -1 + 50 + 30 + (logior FLAG-SCROLL FLAG-BORDER))) + (define buttons + (make-newt-buttons buttons-spec)) + (define grid + (vertically-stacked-grid + GRID-ELEMENT-COMPONENT info-textbox + GRID-ELEMENT-COMPONENT content-textbox + GRID-ELEMENT-SUBGRID + (apply + horizontal-stacked-grid + (append-map (match-lambda ((button . proc) + (list GRID-ELEMENT-COMPONENT button))) + buttons)))) + (define form (make-form #:flags FLAG-NOF12)) + (add-form-to-grid grid form #t) + (make-wrapped-grid-window grid title) + (set-textbox-text content-textbox + (receive (_w _h text) + (reflow-text content + 50 + 0 0) + text)) + + (receive (exit-reason argument) + (run-form-with-clients form + `(contents-dialog (title ,title) + (text ,info-text) + (content ,content))) + (destroy-form-and-pop form) + (match exit-reason + ('exit-component + (let ((proc (assq-ref buttons argument))) + (if proc + (proc) + (raise + (condition + (&serious) + (&message + (message (format #f "Unable to find corresponding PROC for \ +component ~a." argument)))))))) + ;; TODO + ('exit-fd-ready + (raise (condition (&serious))))))) -- cgit v1.3 From 41eb0f01fcf05902be9972cc993fdb332edb928c Mon Sep 17 00:00:00 2001 From: Josselin Poiret Date: Sat, 15 Jan 2022 14:50:09 +0100 Subject: installer: Use dynamic-wind to setup installer. * gnu/installer.scm (installer-program): Use dynamic-wind, so that completely uncaught exceptions can be printed properly. Signed-off-by: Mathieu Othacehe --- gnu/installer.scm | 91 ++++++++++++++++++++++++++++--------------------------- 1 file changed, 46 insertions(+), 45 deletions(-) diff --git a/gnu/installer.scm b/gnu/installer.scm index c7e0921a19..1cfd9d1bc9 100644 --- a/gnu/installer.scm +++ b/gnu/installer.scm @@ -416,51 +416,52 @@ selected keymap." (define current-installer newt-installer) (define steps (#$steps current-installer)) - ((installer-init current-installer)) - - (parameterize - ((run-command-in-installer - (installer-run-command current-installer))) - (catch #t - (lambda () - (define results - (run-installer-steps - #:rewind-strategy 'menu - #:menu-proc (installer-menu-page current-installer) - #:steps steps)) - - (match (result-step results 'final) - ('success - ;; We did it! Let's reboot! - (sync) - (stop-service 'root)) - (_ - ;; The installation failed, exit so that it is restarted - ;; by login. - #f))) - (const #f) - (lambda (key . args) - (installer-log-line "crashing due to uncaught exception: ~s ~s" - key args) - (let ((error-file "/tmp/last-installer-error") - (dump-archive "/tmp/dump.tgz")) - (call-with-output-file error-file - (lambda (port) - (display-backtrace (make-stack #t) port) - (print-exception port - (stack-ref (make-stack #t) 1) - key args))) - (make-dump dump-archive - #:result %current-result - #:backtrace error-file) - (let ((report - ((installer-dump-page current-installer) - dump-archive))) - ((installer-exit-error current-installer) - error-file report key args))) - (primitive-exit 1)))) - - ((installer-exit current-installer)))))) + (dynamic-wind + (installer-init current-installer) + (lambda () + (parameterize + ((run-command-in-installer + (installer-run-command current-installer))) + (catch #t + (lambda () + (define results + (run-installer-steps + #:rewind-strategy 'menu + #:menu-proc (installer-menu-page current-installer) + #:steps steps)) + + (match (result-step results 'final) + ('success + ;; We did it! Let's reboot! + (sync) + (stop-service 'root)) + (_ + ;; The installation failed, exit so that it is restarted + ;; by login. + #f))) + (const #f) + (lambda (key . args) + (installer-log-line "crashing due to uncaught exception: ~s ~s" + key args) + (let ((error-file "/tmp/last-installer-error") + (dump-archive "/tmp/dump.tgz")) + (call-with-output-file error-file + (lambda (port) + (display-backtrace (make-stack #t) port) + (print-exception port + (stack-ref (make-stack #t) 1) + key args))) + (make-dump dump-archive + #:result %current-result + #:backtrace error-file) + (let ((report + ((installer-dump-page current-installer) + dump-archive))) + ((installer-exit-error current-installer) + error-file report key args))) + (primitive-exit 1))))) + + (installer-exit current-installer)))))) (program-file "installer" -- cgit v1.3 From 112ef30b84744872b3a7617d9e54b3df5db95560 Mon Sep 17 00:00:00 2001 From: Josselin Poiret Date: Sat, 15 Jan 2022 14:50:10 +0100 Subject: installer: Turn passwords into opaque records. * gnu/installer/user.scm (, secret?, make-secret, secret-content): Add opaque record that boxes its contents, with a custom printer that doesn't display anything. * gnu/installer/newt/user.scm (run-user-add-page, run-user-page): Box it. * gnu/installer/final.scm (create-user-database): Unbox it. Signed-off-by: Mathieu Othacehe --- gnu/installer/final.scm | 5 +++-- gnu/installer/newt/user.scm | 6 +++--- gnu/installer/user.scm | 19 ++++++++++++++++++- 3 files changed, 24 insertions(+), 6 deletions(-) diff --git a/gnu/installer/final.scm b/gnu/installer/final.scm index 63e5073ff4..2087536502 100644 --- a/gnu/installer/final.scm +++ b/gnu/installer/final.scm @@ -85,8 +85,9 @@ USERS." (uid (if root? 0 #f)) (home-directory (user-home-directory user)) - (password (crypt (user-password user) - (salt))) + (password (crypt + (secret-content (user-password user)) + (salt))) ;; We need a string here, not a file-like, hence ;; this choice. diff --git a/gnu/installer/newt/user.scm b/gnu/installer/newt/user.scm index 97141cfe64..7c1cc2249d 100644 --- a/gnu/installer/newt/user.scm +++ b/gnu/installer/newt/user.scm @@ -143,7 +143,7 @@ REAL-NAME, and HOME-DIRECTORY as the initial values in the form." (name name) (real-name real-name) (home-directory home-directory) - (password password)) + (password (make-secret password))) (run-user-add-page #:name name #:real-name real-name #:home-directory @@ -266,7 +266,7 @@ administrator (\"root\").") (map (lambda (name real-name home password) (user (name name) (real-name real-name) (home-directory home) - (password password))) + (password (make-secret password)))) names real-names homes passwords)))))) (lambda () (destroy-form-and-pop form)))))) @@ -274,5 +274,5 @@ administrator (\"root\").") ;; Add a "root" user simply to convey the root password. (cons (user (name "root") (home-directory "/root") - (password (run-root-password-page))) + (password (make-secret (run-root-password-page)))) (run '()))) diff --git a/gnu/installer/user.scm b/gnu/installer/user.scm index 4e701e64ce..c894a91dc8 100644 --- a/gnu/installer/user.scm +++ b/gnu/installer/user.scm @@ -19,7 +19,14 @@ (define-module (gnu installer user) #:use-module (guix records) #:use-module (srfi srfi-1) - #:export ( + #:use-module (srfi srfi-9) + #:use-module (srfi srfi-9 gnu) + #:export ( + secret? + make-secret + secret-content + + user make-user user-name @@ -30,6 +37,16 @@ users->configuration)) +(define-record-type + (make-secret content) + secret? + (content secret-content)) + +(set-record-type-printer! + + (lambda (secret port) + (format port ""))) + (define-record-type* user make-user user? -- cgit v1.3 From ad55ccf9b18000144a4e0f28a0f9e57132f94edc Mon Sep 17 00:00:00 2001 From: Josselin Poiret Date: Sat, 15 Jan 2022 14:50:11 +0100 Subject: installer: Make dump archive creation optional and selective. * gnu/installer.scm (installer-program): Let the installer customize the dump archive. * gnu/installer/dump.scm (prepare-dump, make-dump): Split make-dump in prepare-dump, which copies the files necessary for the dump, and make-dump which creates the archive. * gnu/installer/record.scm (installer): Add report-page field. Change documented return value of exit-error. * gnu/installer/newt.scm (exit-error): Change arguments to be a string containing the error. Let the user choose between exiting and initiating a dump. (report-page): Add new variable. * gnu/installer/newt/page.scm (run-dump-page): New variable. * gnu/installer/newt/dump.scm: Delete it. Signed-off-by: Mathieu Othacehe --- gnu/installer.scm | 43 +++++++++++++------------ gnu/installer/dump.scm | 67 +++++++++++++++++++++++---------------- gnu/installer/newt.scm | 76 ++++++++++++++++++++++++++++++--------------- gnu/installer/newt/dump.scm | 36 --------------------- gnu/installer/newt/page.scm | 65 ++++++++++++++++++++++++++++++++++++++ gnu/installer/record.scm | 9 ++++-- gnu/local.mk | 1 - 7 files changed, 186 insertions(+), 111 deletions(-) delete mode 100644 gnu/installer/newt/dump.scm diff --git a/gnu/installer.scm b/gnu/installer.scm index 1cfd9d1bc9..7b2914be98 100644 --- a/gnu/installer.scm +++ b/gnu/installer.scm @@ -386,7 +386,8 @@ selected keymap." (guix build utils) ((system repl debug) #:select (terminal-width)) - (ice-9 match)) + (ice-9 match) + (ice-9 textual-ports)) ;; Initialize gettext support so that installers can use ;; (guix i18n) module. @@ -416,6 +417,7 @@ selected keymap." (define current-installer newt-installer) (define steps (#$steps current-installer)) + (dynamic-wind (installer-init current-installer) (lambda () @@ -436,30 +438,31 @@ selected keymap." (sync) (stop-service 'root)) (_ - ;; The installation failed, exit so that it is restarted - ;; by login. + ;; The installation failed, exit so that it is + ;; restarted by login. #f))) (const #f) (lambda (key . args) (installer-log-line "crashing due to uncaught exception: ~s ~s" key args) - (let ((error-file "/tmp/last-installer-error") - (dump-archive "/tmp/dump.tgz")) - (call-with-output-file error-file - (lambda (port) - (display-backtrace (make-stack #t) port) - (print-exception port - (stack-ref (make-stack #t) 1) - key args))) - (make-dump dump-archive - #:result %current-result - #:backtrace error-file) - (let ((report - ((installer-dump-page current-installer) - dump-archive))) - ((installer-exit-error current-installer) - error-file report key args))) - (primitive-exit 1))))) + (define dump-dir + (prepare-dump key args #:result %current-result)) + (define action + ((installer-exit-error current-installer) + (get-string-all + (open-input-file + (string-append dump-dir "/installer-backtrace"))))) + (match action + ('dump + (let* ((dump-files + ((installer-dump-page current-installer) + dump-dir)) + (dump-archive + (make-dump dump-dir dump-files))) + ((installer-report-page current-installer) + dump-archive))) + (_ #f)) + (exit 1))))) (installer-exit current-installer)))))) diff --git a/gnu/installer/dump.scm b/gnu/installer/dump.scm index 49c40a26af..daa02f205a 100644 --- a/gnu/installer/dump.scm +++ b/gnu/installer/dump.scm @@ -28,7 +28,8 @@ #:use-module (web http) #:use-module (web response) #:use-module (webutils multipart) - #:export (make-dump + #:export (prepare-dump + make-dump send-dump-report)) ;; The installer crash dump type. @@ -40,35 +41,49 @@ (cons k v)) result)) -(define* (make-dump output - #:key - result - backtrace) - "Create a crash dump archive in OUTPUT. RESULT is the installer result hash -table. BACKTRACE is the installer Guile backtrace." - (let ((dump-dir "/tmp/dump")) - (mkdir-p dump-dir) - (with-directory-excursion dump-dir - ;; backtrace - (copy-file backtrace "installer-backtrace") +(define* (prepare-dump key args #:key result) + "Create a crash dump directory. KEY and ARGS represent the thrown error. +RESULT is the installer result hash table. Returns the created directory path." + (define now (localtime (current-time))) + (define dump-dir + (format #f "/tmp/dump.~a" + (strftime "%F.%H.%M.%S" now))) + (mkdir-p dump-dir) + (with-directory-excursion dump-dir + ;; backtrace + (call-with-output-file "installer-backtrace" + (lambda (port) + (display-backtrace (make-stack #t) port) + (print-exception port + (stack-ref (make-stack #t) 1) + key args))) - ;; installer result - (call-with-output-file "installer-result" - (lambda (port) - (write (result->list result) port))) + ;; installer result + (call-with-output-file "installer-result" + (lambda (port) + (write (result->list result) port))) - ;; syslog - (copy-file "/var/log/messages" "syslog") + ;; syslog + (copy-file "/var/log/messages" "syslog") - ;; dmesg - (let ((pipe (open-pipe* OPEN_READ "dmesg"))) - (call-with-output-file "dmesg" - (lambda (port) - (dump-port pipe port) - (close-pipe pipe))))) + ;; dmesg + (let ((pipe (open-pipe* OPEN_READ "dmesg"))) + (call-with-output-file "dmesg" + (lambda (port) + (dump-port pipe port) + (close-pipe pipe))))) + dump-dir) - (with-directory-excursion (dirname dump-dir) - (system* "tar" "-zcf" output (basename dump-dir))))) +(define* (make-dump dump-dir file-choices) + "Create a crash dump archive from DUMP-DIR containing FILE-CHOICES. +Returns the archive path." + (define output (string-append (basename dump-dir) ".tar.gz")) + (with-directory-excursion (dirname dump-dir) + (apply system* "tar" "-zcf" output + (map (lambda (f) + (string-append (basename dump-dir) "/" f)) + file-choices))) + (canonicalize-path (string-append (dirname dump-dir) "/" output))) (define* (send-dump-report dump #:key diff --git a/gnu/installer/newt.scm b/gnu/installer/newt.scm index 352d2997bd..1db78e6f0d 100644 --- a/gnu/installer/newt.scm +++ b/gnu/installer/newt.scm @@ -19,7 +19,7 @@ (define-module (gnu installer newt) #:use-module (gnu installer record) #:use-module (gnu installer utils) - #:use-module (gnu installer newt dump) + #:use-module (gnu installer dump) #:use-module (gnu installer newt ethernet) #:use-module (gnu installer newt final) #:use-module (gnu installer newt parameters) @@ -40,9 +40,12 @@ #:use-module (guix config) #:use-module (guix discovery) #:use-module (guix i18n) + #:use-module (srfi srfi-1) #:use-module (srfi srfi-26) #:use-module (srfi srfi-34) #:use-module (srfi srfi-35) + #:use-module (ice-9 ftw) + #:use-module (ice-9 match) #:use-module (newt) #:export (newt-installer)) @@ -58,28 +61,53 @@ (newt-finish) (clear-screen)) -(define (exit-error file report key args) +(define (exit-error error) (newt-set-color COLORSET-ROOT "white" "red") - (let ((width (nearest-exact-integer - (* (screen-columns) 0.8))) - (height (nearest-exact-integer - (* (screen-rows) 0.7))) - (report (if report - (format #f ". It has been uploaded as ~a" report) - ""))) - (run-file-textbox-page - #:info-text (format #f (G_ "The installer has encountered an unexpected \ -problem. The backtrace is displayed below~a. Please report it by email to \ -<~a>.") report %guix-bug-report-address) + (define action + (run-textbox-page + #:info-text (G_ "The installer has encountered an unexpected problem. \ +The backtrace is displayed below. You may choose to exit or create a dump \ +archive.") #:title (G_ "Unexpected problem") - #:file file - #:exit-button? #f - #:info-textbox-width width - #:file-textbox-width width - #:file-textbox-height height)) + #:content error + #:buttons-spec + (list + (cons (G_ "Dump") (const 'dump)) + (cons (G_ "Exit") (const 'exit))))) (newt-set-color COLORSET-ROOT "white" "blue") - (newt-finish) - (clear-screen)) + action) + +(define (report-page dump-archive) + (define text + (format #f (G_ "The dump archive was created as ~a. Would you like to \ +send this archive to the Guix servers?") dump-archive)) + (define title (G_ "Dump archive created")) + (when (run-confirmation-page text title) + (let* ((uploaded-name (send-dump-report dump-archive)) + (text (if uploaded-name + (format #f (G_ "The dump was uploaded as ~a. Please \ +report it by email to ~a.") uploaded-name %guix-bug-report-address) + (G_ "The dump could not be uploaded.")))) + (run-error-page + text + (G_ "Dump upload result"))))) + +(define (dump-page dump-dir) + (define files + (scandir dump-dir (lambda (x) + (not (or (string=? x ".") + (string=? x "..")))))) + (fold (match-lambda* + (((file . enable?) acc) + (if enable? + (cons file acc) + acc))) + '() + (run-dump-page + dump-dir + (map (lambda (x) + (cons x #f)) + files)))) (define (newt-run-command . args) (define command-output "") @@ -118,7 +146,7 @@ problem. The backtrace is displayed below~a. Please report it by email to \ (cons "Abort" (lambda () (abort-to-prompt 'installer-step 'abort))) - (cons "Dump" + (cons "Report" (lambda () (raise (condition @@ -178,9 +206,6 @@ problem. The backtrace is displayed below~a. Please report it by email to \ (define (parameters-page keyboard-layout-selection) (run-parameters-page keyboard-layout-selection)) -(define (dump-page steps) - (run-dump-page steps)) - (define newt-installer (installer (name 'newt) @@ -202,4 +227,5 @@ problem. The backtrace is displayed below~a. Please report it by email to \ (parameters-menu parameters-menu) (parameters-page parameters-page) (dump-page dump-page) - (run-command newt-run-command))) + (run-command newt-run-command) + (report-page report-page))) diff --git a/gnu/installer/newt/dump.scm b/gnu/installer/newt/dump.scm deleted file mode 100644 index 64f0d58237..0000000000 --- a/gnu/installer/newt/dump.scm +++ /dev/null @@ -1,36 +0,0 @@ -;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2021 Mathieu Othacehe -;;; -;;; 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 . - -(define-module (gnu installer newt dump) - #:use-module (gnu installer dump) - #:use-module (gnu installer newt page) - #:use-module (guix i18n) - #:use-module (newt) - #:export (run-dump-page)) - -(define (run-dump-page dump) - "Run a dump page, proposing the user to upload the crash dump to Guix -servers." - (case (choice-window - (G_ "Crash dump upload") - (G_ "Yes") - (G_ "No") - (G_ "The installer failed. Do you accept to upload the crash dump \ -to Guix servers, so that we can investigate the issue?")) - ((1) (send-dump-report dump)) - ((2) #f))) diff --git a/gnu/installer/newt/page.scm b/gnu/installer/newt/page.scm index b5d7c98094..0f508a31c0 100644 --- a/gnu/installer/newt/page.scm +++ b/gnu/installer/newt/page.scm @@ -47,6 +47,7 @@ %ok-button %exit-button run-textbox-page + run-dump-page run-form-with-clients)) @@ -899,3 +900,67 @@ component ~a." argument)))))))) ;; TODO ('exit-fd-ready (raise (condition (&serious))))))) + +(define* (run-dump-page base-dir file-choices) + (define info-textbox + (make-reflowed-textbox -1 -1 "Please select files you wish to include in \ +the dump." + 50 + #:flags FLAG-BORDER)) + (define components + (map (match-lambda ((file . enabled) + (list + (make-compact-button -1 -1 "Edit") + (make-checkbox -1 -1 file (if enabled #\x #\ ) " x") + file))) + file-choices)) + + (define sub-grid (make-grid 2 (length components))) + + (for-each + (match-lambda* (((button checkbox _) index) + (set-grid-field sub-grid 0 index + GRID-ELEMENT-COMPONENT checkbox + #:anchor ANCHOR-LEFT) + (set-grid-field sub-grid 1 index + GRID-ELEMENT-COMPONENT button + #:anchor ANCHOR-LEFT))) + components (iota (length components))) + + (define grid + (vertically-stacked-grid + GRID-ELEMENT-COMPONENT info-textbox + GRID-ELEMENT-SUBGRID sub-grid + GRID-ELEMENT-COMPONENT (make-button -1 -1 "Create"))) + + (define form (make-form #:flags FLAG-NOF12)) + + (add-form-to-grid grid form #t) + (make-wrapped-grid-window grid "Installer dump") + + (define prompt-tag (make-prompt-tag)) + + (let loop () + (call-with-prompt prompt-tag + (lambda () + (receive (exit-reason argument) + (run-form-with-clients form + `(dump-page)) + (match exit-reason + ('exit-component + (let ((result + (map (match-lambda + ((edit checkbox filename) + (if (components=? edit argument) + (abort-to-prompt prompt-tag filename) + (cons filename (eq? #\x + (checkbox-value checkbox)))))) + components))) + (destroy-form-and-pop form) + result)) + ;; TODO + ('exit-fd-ready + (raise (condition (&serious))))))) + (lambda (k file) + (edit-file (string-append base-dir "/" file)) + (loop))))) diff --git a/gnu/installer/record.scm b/gnu/installer/record.scm index 23db3edd70..20519a26c3 100644 --- a/gnu/installer/record.scm +++ b/gnu/installer/record.scm @@ -43,7 +43,8 @@ installer-parameters-menu installer-parameters-page installer-dump-page - installer-run-command)) + installer-run-command + installer-report-page)) ;;; @@ -63,7 +64,7 @@ (init installer-init) ;; procedure: void -> void (exit installer-exit) - ;; procedure (key arguments) -> void + ;; procedure (key arguments) -> (action) (exit-error installer-exit-error) ;; procedure void -> void (final-page installer-final-page) @@ -97,4 +98,6 @@ ;; procedure (dump) -> void (dump-page installer-dump-page) ;; procedure command -> bool - (run-command installer-run-command)) + (run-command installer-run-command) + ;; procedure (report) -> void + (report-page installer-report-page)) diff --git a/gnu/local.mk b/gnu/local.mk index 9510c79671..dddda78efa 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -775,7 +775,6 @@ INSTALLER_MODULES = \ %D%/installer/user.scm \ %D%/installer/utils.scm \ \ - %D%/installer/newt/dump.scm \ %D%/installer/newt/ethernet.scm \ %D%/installer/newt/final.scm \ %D%/installer/newt/parameters.scm \ -- cgit v1.3 From 4943ac86e4f95a2e14fd209f3fdaac74a0d9ca2e Mon Sep 17 00:00:00 2001 From: Josselin Poiret Date: Mon, 31 Jan 2022 18:45:17 +0100 Subject: installer: Use system-wide guix for system init. * gnu/installer.scm (installer-program): Remove dependency on the guix package for the PATH. * gnu/installer/final.scm (install-system): Set PATH inside container to /run/current-system/profile/bin/. Signed-off-by: Mathieu Othacehe --- gnu/installer.scm | 1 - gnu/installer/final.scm | 5 ++--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/gnu/installer.scm b/gnu/installer.scm index 7b2914be98..415f5a7af7 100644 --- a/gnu/installer.scm +++ b/gnu/installer.scm @@ -335,7 +335,6 @@ selected keymap." ntfs-3g ;mkfs.ntfs xfsprogs ;mkfs.xfs kbd ;chvt - guix ;guix system init call util-linux ;mkwap nano shadow diff --git a/gnu/installer/final.scm b/gnu/installer/final.scm index 2087536502..3f6dacc490 100644 --- a/gnu/installer/final.scm +++ b/gnu/installer/final.scm @@ -170,8 +170,7 @@ or #f. Return #t on success and #f on failure." (database-dir "/var/guix/db") (database-file (string-append database-dir "/db.sqlite")) (saved-database (string-append database-dir "/db.save")) - (ret #f) - (path (getenv "PATH"))) + (ret #f)) (mkdir-p (%installer-target-dir)) ;; We want to initialize user passwords but we don't want to store them in @@ -210,7 +209,7 @@ or #f. Return #t on success and #f on failure." (setvbuf (current-output-port) 'none) (setvbuf (current-error-port) 'none) - (setenv "PATH" path) + (setenv "PATH" "/run/current-system/profile/bin/") (set! ret (run-command install-command))) (lambda () -- cgit v1.3 From d040b627b1b2f604746963a91449821c6a58c7d6 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Wed, 2 Feb 2022 15:36:06 +0100 Subject: gnu: perf: Help 'perf report --symfs' find separate debug info files. * gnu/packages/linux.scm (perf)[arguments]: In 'configure' phase, modify "util/dso.c". --- gnu/packages/linux.scm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index e496b5e2b2..cd64fdc076 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2021 Ludovic Courtès +;;; Copyright © 2012-2021, 2021-2022 Ludovic Courtès ;;; Copyright © 2013, 2014, 2015, 2016 Andreas Enge ;;; Copyright © 2012 Nikita Karetnikov ;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Mark H Weaver @@ -4555,7 +4555,15 @@ in a digital read-out.") (lambda* (#:key inputs #:allow-other-keys) (setenv "SHELL_PATH" (which "bash")) (chdir "tools/perf") - #t))) + + ;; This file hard-codes file system layouts for specific distros + ;; but not for ours; address that. With this change, one can run + ;; "perf report --symfs=$HOME/.guix-profile" (without + ;; "/lib/debug") and 'perf' should be able to find separate debug + ;; info files. + (substitute* "util/dso.c" + (("/usr/lib/debug") + "/lib/debug"))))) #:make-flags (list (string-append "prefix=" (assoc-ref %outputs "out")) "CC=gcc" -- cgit v1.3 From 2178692c931a09dc05e0a42671dc983fbd2e50d2 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Wed, 2 Feb 2022 15:40:17 +0100 Subject: gnu: perf: Remove input labels. * gnu/packages/linux.scm (perf)[native-inputs, inputs]: Remove labels. --- gnu/packages/linux.scm | 40 +++++++++++++++++++--------------------- 1 file changed, 19 insertions(+), 21 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index cd64fdc076..2760cf46c7 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -4574,28 +4574,26 @@ in a digital read-out.") "lib=lib") #:tests? #f)) ;no tests (native-inputs - `(("pkg-config" ,pkg-config) - ("bison" ,bison) - ("flex" ,flex) - - ;; There are build scripts written in these languages. - ("perl" ,perl) - ("python2" ,python-2) - ("python3" ,python-3))) + (list pkg-config + bison + flex + ;; There are build scripts written in these languages. + perl + python-2 + python-3)) (inputs - `(("slang" ,slang) ;for the interactive TUI - ;; ("newt" ,newt) - ("python" ,python-2) ;'perf' links against libpython - ("elfutils" ,elfutils) - ("libiberty" ,libiberty) ;used alongside BDF for symbol demangling - ("libunwind" ,libunwind) ;better stack walking - ("numactl" ,numactl) ;for 'perf bench numa mem' - - ;; Documentation. - ("libxml2" ,libxml2) ;for $XML_CATALOG_FILES - ("docbook-xsl" ,docbook-xsl) - ("xmlto" ,xmlto) - ("asciidoc" ,asciidoc))) + (list slang ;for the interactive TUI + ;; newt + python-2 ;'perf' links against libpython + elfutils + libiberty ;used alongside BDF for symbol demangling + libunwind ;better stack walking + numactl ;for 'perf bench numa mem' + ;; Documentation. + libxml2 ;for $XML_CATALOG_FILES + docbook-xsl + xmlto + asciidoc)) (home-page "https://perf.wiki.kernel.org/") (synopsis "Linux profiling with performance counters") (description -- cgit v1.3 From 31ca569ca511b94786c8a8019a8d6fbaeac005f1 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Wed, 2 Feb 2022 15:53:55 +0100 Subject: import: pypi: Use 'with-error-handling'. * guix/scripts/import/pypi.scm (guix-import-pypi): Wrap body in 'with-error-handling'. --- guix/scripts/import/pypi.scm | 37 +++++++++++++++++++------------------ 1 file changed, 19 insertions(+), 18 deletions(-) diff --git a/guix/scripts/import/pypi.scm b/guix/scripts/import/pypi.scm index a52cd95c93..b9b12ee43a 100644 --- a/guix/scripts/import/pypi.scm +++ b/guix/scripts/import/pypi.scm @@ -79,27 +79,28 @@ Import and convert the PyPI package for PACKAGE-NAME.\n")) (let* ((opts (parse-options)) (args (filter-map (match-lambda - (('argument . value) - value) - (_ #f)) + (('argument . value) + value) + (_ #f)) (reverse opts)))) (match args ((spec) - (let ((name version (package-name->name+version spec))) - (if (assoc-ref opts 'recursive) - ;; Recursive import - (map (match-lambda - ((and ('package ('name name) . rest) pkg) - `(define-public ,(string->symbol name) - ,pkg)) - (_ #f)) - (pypi-recursive-import name version)) - ;; Single import - (let ((sexp (pypi->guix-package name #:version version))) - (unless sexp - (leave (G_ "failed to download meta-data for package '~a'~%") - name)) - sexp)))) + (with-error-handling + (let ((name version (package-name->name+version spec))) + (if (assoc-ref opts 'recursive) + ;; Recursive import + (map (match-lambda + ((and ('package ('name name) . rest) pkg) + `(define-public ,(string->symbol name) + ,pkg)) + (_ #f)) + (pypi-recursive-import name version)) + ;; Single import + (let ((sexp (pypi->guix-package name #:version version))) + (unless sexp + (leave (G_ "failed to download meta-data for package '~a'~%") + name)) + sexp))))) (() (leave (G_ "too few arguments~%"))) ((many ...) -- cgit v1.3 From 00762a4c4c8ecdd71cccf6afdd87ae68bf9b4964 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Wed, 2 Feb 2022 15:55:21 +0100 Subject: import: pypi: Display a hint upon "no source release" errors. Fixes . * guix/import/pypi.scm (pypi->guix-package): Upon 'missing-source-error?', raise a compound condition with a hint. --- guix/import/pypi.scm | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/guix/import/pypi.scm b/guix/import/pypi.scm index b80f43ac15..e07b792c53 100644 --- a/guix/import/pypi.scm +++ b/guix/import/pypi.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014 David Thompson ;;; Copyright © 2015 Cyril Roelandt -;;; Copyright © 2015, 2016, 2017, 2019, 2020, 2021 Ludovic Courtès +;;; Copyright © 2015-2017, 2019-2022 Ludovic Courtès ;;; Copyright © 2017 Mathieu Othacehe ;;; Copyright © 2018 Ricardo Wurmus ;;; Copyright © 2019 Maxim Cournoyer @@ -499,8 +499,20 @@ VERSION, SOURCE-URL, HOME-PAGE, SYNOPSIS, DESCRIPTION, and LICENSE." (and project (guard (c ((missing-source-error? c) (let ((package (missing-source-error-package c))) - (leave (G_ "no source release for pypi package ~a ~a~%") - (project-info-name info) version)))) + (raise + (make-compound-condition + (formatted-message + (G_ "no source release for pypi package ~a ~a~%") + (project-info-name info) version) + (condition + (&fix-hint + (hint (format #f (G_ "This indicates that the +package is available on PyPI, but only as a \"wheel\" containing binaries, not +source. To build it from source, refer to the upstream repository at +@uref{~a}.") + (or (project-info-home-page info) + (project-info-url info) + "?")))))))))) (make-pypi-sexp (project-info-name info) version (and=> (source-release project version) distribution-url) -- cgit v1.3 From bbc26afd6198a55109589ed6477f13f1bcea1898 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Wed, 2 Feb 2022 17:54:44 +0100 Subject: gnu: luminance-hdr: Fix compilation. Reported by Leo Famulari . * gnu/packages/image-viewers.scm (luminance-hdr)[arguments]: In 'add-ilmbase-include-path' phase, set C_INCLUDE_PATH and be more specific about the include directory searched for. --- gnu/packages/image-viewers.scm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/gnu/packages/image-viewers.scm b/gnu/packages/image-viewers.scm index 87dffbb93d..aac27b6703 100644 --- a/gnu/packages/image-viewers.scm +++ b/gnu/packages/image-viewers.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2013, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès +;;; Copyright © 2013, 2017-2022 Ludovic Courtès ;;; Copyright © 2014 Ian Denhardt ;;; Copyright © 2015, 2016 Alex Kost ;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner @@ -631,11 +631,12 @@ It supports JPEG, PNG and GIF formats.") (lambda* (#:key inputs #:allow-other-keys) ;; 'OpenEXR.pc' has a -I for IlmBase but 'FindOpenEXR.cmake' does ;; not use 'OpenEXR.pc'. Thus, we need to add - ;; "$ilmbase/include/OpenEXR/" to the CPATH. - (setenv "CPATH" + ;; "$ilmbase/include/OpenEXR/" to the CPLUS_INCLUDE_PATH. + (setenv "CPLUS_INCLUDE_PATH" (string-append - (search-input-directory inputs "include/OpenEXR") - ":" (or (getenv "CPATH") "")))))))) + (dirname + (search-input-file inputs "include/OpenEXR/ImathInt64.h")) + ":" (or (getenv "CPLUS_INCLUDE_PATH") "")))))))) (home-page "http://qtpfsgui.sourceforge.net") (synopsis "High dynamic range (HDR) imaging application") (description -- cgit v1.3 From 9cdce964caea6555de481f87a2994de16b092f2b Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Wed, 2 Feb 2022 17:56:47 +0100 Subject: gnu: luminance-hdr: Remove input labels. * gnu/packages/image-viewers.scm (luminance-hdr)[inputs]: Remove labels. --- gnu/packages/image-viewers.scm | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/gnu/packages/image-viewers.scm b/gnu/packages/image-viewers.scm index aac27b6703..641b5a52da 100644 --- a/gnu/packages/image-viewers.scm +++ b/gnu/packages/image-viewers.scm @@ -604,25 +604,25 @@ It supports JPEG, PNG and GIF formats.") (native-inputs (list pkg-config qttools)) (inputs - `(("qtbase" ,qtbase-5) - ("qtdeclarative" ,qtdeclarative) - ("qtsvg" ,qtsvg) - ("boost" ,boost) - ("eigen" ,eigen) - ;; ("gtest" ,gtest) - ("libraw" ,libraw) - ("zlib" ,zlib) - ("exiv2" ,exiv2) - ("libpng" ,libpng) - ("libjpeg" ,libjpeg-turbo) - ("lcms" ,lcms) - ("openexr" ,openexr-2) - ("qtwebengine" ,qtwebengine) - ("qtdeclarative" ,qtdeclarative) - ("qtwebchannel" ,qtwebchannel) - ("fftw" ,fftwf) - ("gsl" ,gsl) - ("libtiff" ,libtiff))) + (list qtbase-5 + qtdeclarative + qtsvg + boost + eigen + ;; gtest + libraw + zlib + exiv2 + libpng + libjpeg-turbo + lcms + openexr-2 + qtwebengine + qtdeclarative + qtwebchannel + fftwf + gsl + libtiff)) (arguments '(#:tests? #f ;XXX: some tests fail to compile #:phases -- cgit v1.3 From 82a00693b74f507ca20bfd09b0aee0109ee8c455 Mon Sep 17 00:00:00 2001 From: Pierre-Henry Fröhring Date: Sun, 30 Jan 2022 17:13:54 +0100 Subject: gnu: Add python-types-dataclasses. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/python-xyz.scm (python-types-dataclasses): New variable. Signed-off-by: Ludovic Courtès --- gnu/packages/python-xyz.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 3be20df7e1..b65022ac90 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -28903,3 +28903,21 @@ but not binary streams.") "This package provides ECMAScript parsing infrastructure for multipurpose analysis in Python.") (license license:bsd-3))) + +(define-public python-types-dataclasses + (package + (name "python-types-dataclasses") + (version "0.6.1") + (source (origin + (method url-fetch) + (uri (pypi-uri "types-dataclasses" version)) + (sha256 + (base32 + "1mq6qd365m8ml889zl5dxj9kncjv71iq1d1fvgj59y0ixlpm6s35")))) + (build-system python-build-system) + (home-page "https://github.com/python/typeshed") + (synopsis "Typing stubs for dataclasses") + (description + "This packages provides a collection of library stubs for Python, with +static types.") + (license license:asl2.0))) -- cgit v1.3 From 62e3ba78afb8fc4e2b32cb55e18a7d6dcbb26bcb Mon Sep 17 00:00:00 2001 From: Yovan Naumovski Date: Sun, 30 Jan 2022 21:20:48 +0200 Subject: gnu: openttd: Update to 12.1. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/games.scm (openttd-engine): Update ot 12.1. Signed-off-by: Ludovic Courtès --- gnu/packages/games.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index ccc5b3740a..6771bf93ff 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -68,6 +68,7 @@ ;;; Copyright © 2021 Brendan Tildesley ;;; Copyright © 2021 Christopher Baines ;;; Copyright © 2021 Foo Chuan Wei +;;; Copyright © 2022 Yovan Naumovski ;;; ;;; This file is part of GNU Guix. ;;; @@ -4220,14 +4221,14 @@ world}, @uref{http://evolonline.org, Evol Online} and (define openttd-engine (package (name "openttd-engine") - (version "12.0") + (version "12.1") (source (origin (method url-fetch) (uri (string-append "https://cdn.openttd.org/openttd-releases/" version "/openttd-" version "-source.tar.xz")) (sha256 (base32 - "1p1j5cf4ry57dcgm7qx2g2s00z1c6qgjabb4kqjp00yz00wgv85v")))) + "1qz7ld55m9cvgr4mkv6c11y0zf2aph3ba605l45qj41hk2wzb2r5")))) (build-system cmake-build-system) (inputs `(("allegro" ,allegro) -- cgit v1.3 From 9679123ce083c69cdfd1505d95a4066d41280394 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Mon, 31 Jan 2022 23:29:37 +0100 Subject: guix system: 'describe' shows the running system, not the current one. * guix/profiles.scm (generation-number): Add optional 'base-profile' parameter and use it. * guix/scripts/system.scm (process-command): Add "/run/current-system" as first argument to 'generation-number'. * doc/guix.texi (Invoking guix system): Clarify that 'guix system describe' shows the running system. --- doc/guix.texi | 14 +++++++++++++- guix/profiles.scm | 13 +++++++++---- guix/scripts/system.scm | 4 ++-- 3 files changed, 24 insertions(+), 7 deletions(-) diff --git a/doc/guix.texi b/doc/guix.texi index b10f0d085b..ceec0d0cf5 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -35811,9 +35811,21 @@ bootloader boot menu: @table @code @item describe -Describe the current system generation: its file name, the kernel and +Describe the running system generation: its file name, the kernel and bootloader used, etc., as well as provenance information when available. +@quotation Note +The @emph{running} system generation---referred to by +@file{/run/current-system}---is not necessarily the @emph{current} +system generation---referred to by @file{/var/guix/profiles/system}: it +differs when, for instance, you chose from the bootloader menu to boot +an older generation. + +It can also differ from the @emph{booted} system generation---referred +to by @file{/run/booted-system}---for instance because you reconfigured +the system in the meantime. +@end quotation + @item list-generations List a summary of each generation of the operating system available on disk, in a human-readable way. This is similar to the diff --git a/guix/profiles.scm b/guix/profiles.scm index 1d354ecb78..96be421727 100644 --- a/guix/profiles.scm +++ b/guix/profiles.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès +;;; Copyright © 2013-2022 Ludovic Courtès ;;; Copyright © 2013 Nikita Karetnikov ;;; Copyright © 2014, 2016 Alex Kost ;;; Copyright © 2015 Mark H Weaver @@ -2037,9 +2037,14 @@ paths." (make-regexp (string-append "^" (regexp-quote (basename profile)) "-([0-9]+)"))) -(define (generation-number profile) - "Return PROFILE's number or 0. An absolute file name must be used." - (or (and=> (false-if-exception (regexp-exec (profile-regexp profile) +(define* (generation-number profile + #:optional (base-profile profile)) + "Return PROFILE's number or 0. An absolute file name must be used. + +Optionally, if BASE-PROFILE is provided, use it instead of PROFILE to +construct the regexp matching generations. This is useful in special cases +like: (generation-number \"/run/current-system\" %system-profile)." + (or (and=> (false-if-exception (regexp-exec (profile-regexp base-profile) (basename (readlink profile)))) (compose string->number (cut match:substring <> 1))) 0)) diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm index 414e931c8a..430815902d 100644 --- a/guix/scripts/system.scm +++ b/guix/scripts/system.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès +;;; Copyright © 2014-2022 Ludovic Courtès ;;; Copyright © 2016 Alex Kost ;;; Copyright © 2016, 2017, 2018 Chris Marusich ;;; Copyright © 2017, 2019 Mathieu Othacehe @@ -1328,7 +1328,7 @@ argument list and OPTS is the option alist." (x (leave (G_ "wrong number of arguments~%")))))) (list-generations pattern))) ((describe) - (match (generation-number %system-profile) + (match (generation-number "/run/current-system" %system-profile) (0 (leave (G_ "no system generation, nothing to describe~%"))) (generation -- cgit v1.3 From f89bd6949a4b9f02eb98d53079dc416537a9620d Mon Sep 17 00:00:00 2001 From: Felix Gruber Date: Sun, 30 Jan 2022 21:01:39 +0000 Subject: gnu: oil: Update to 0.9.7. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/shells.scm (oil): Update to 0.9.7. Signed-off-by: Ludovic Courtès --- gnu/packages/shells.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm index 1652848705..2e5bc3573a 100644 --- a/gnu/packages/shells.scm +++ b/gnu/packages/shells.scm @@ -828,14 +828,14 @@ Shell (pdksh).") (define-public oil (package (name "oil") - (version "0.9.6") + (version "0.9.7") (source (origin (method url-fetch) (uri (string-append "https://www.oilshell.org/download/oil-" version ".tar.gz")) (sha256 - (base32 "01lmj4diqpla1gwwb1gh1shf4y74qhanpkzcsnb28458rxm1sq32")))) + (base32 "09ill1wks8gmixfc648wx25wx0wzlgkjj34bbpglx496i6yp81aw")))) (build-system gnu-build-system) (arguments (list #:strip-binaries? #f ; strip breaks the binary -- cgit v1.3 From 4eada1b45a08290aef26a273444c23bfdd0dbccf Mon Sep 17 00:00:00 2001 From: Michael Rohleder Date: Mon, 31 Jan 2022 09:59:05 +0100 Subject: gnu: rr: Update to 5.5.0. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/debug.scm (rr): Update to 5.5.0. Signed-off-by: Ludovic Courtès --- gnu/packages/debug.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/debug.scm b/gnu/packages/debug.scm index 180fd936ec..4bdc489824 100644 --- a/gnu/packages/debug.scm +++ b/gnu/packages/debug.scm @@ -9,6 +9,7 @@ ;;; Copyright © 2020 Maxim Cournoyer ;;; Copyright © 2021 Felix Gruber ;;; Copyright © 2021 Foo Chuan Wei +;;; Copyright © 2022 Michael Rohleder ;;; ;;; This file is part of GNU Guix. ;;; @@ -615,7 +616,7 @@ error reporting, better tracing, profiling, and a debugger.") (define-public rr (package (name "rr") - (version "5.4.0") + (version "5.5.0") (source (origin (method git-fetch) (uri (git-reference @@ -623,7 +624,7 @@ error reporting, better tracing, profiling, and a debugger.") (commit version))) (sha256 (base32 - "1sfldgkkmsdyaqa28i5agcykc63gwm3zjihd64g86i852w8al2w6")) + "079x891axkiy8qbvjar9vbaldlx7pm9p0i3nq6infdc66nc69635")) (file-name (git-file-name name version)))) (build-system cmake-build-system) (arguments -- cgit v1.3 From f553de6e0e476f12f7aa0b5e1d3849c71aa93fc6 Mon Sep 17 00:00:00 2001 From: Michael Rohleder Date: Mon, 31 Jan 2022 10:05:09 +0100 Subject: gnu: cgdb: Update to 0.8.0. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/debug.scm (cgdb): Update to 0.8.0. Signed-off-by: Ludovic Courtès --- gnu/packages/debug.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/debug.scm b/gnu/packages/debug.scm index 4bdc489824..94312e7c05 100644 --- a/gnu/packages/debug.scm +++ b/gnu/packages/debug.scm @@ -746,13 +746,13 @@ use than similar tools like @command{mtrace}.") (define-public cgdb (package (name "cgdb") - (version "0.7.1") + (version "0.8.0") (source (origin (method url-fetch) (uri (string-append "https://cgdb.me/files/cgdb-" version ".tar.gz")) (sha256 - (base32 "1671gpz5gx5j0zga8xy2x7h33vqh3nij93lbb6dbb366ivjknwmv")))) + (base32 "1w8ib2vg3pg68d9hh97fw5042c73i9nqavdddc87n9bpscjbaf0d")))) (build-system gnu-build-system) (inputs (list ncurses readline)) -- cgit v1.3 From 5c13484646069064c834bbd3cd02c3bc80d94cb6 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Sun, 23 Jan 2022 22:15:16 +0100 Subject: deploy: Add '--execute'. * guix/scripts/deploy.scm (show-help, %options): Add '--execute'. (invoke-command): New procedure. (guix-deploy): Break arguments at "--" and handle '-x' and associated command. * doc/guix.texi (Invoking guix deploy): Document it. --- doc/guix.texi | 24 +++++++++++ guix/scripts/deploy.scm | 111 ++++++++++++++++++++++++++++++++++++++++++++---- 2 files changed, 127 insertions(+), 8 deletions(-) diff --git a/doc/guix.texi b/doc/guix.texi index ceec0d0cf5..aaa7cbb66f 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -36001,6 +36001,30 @@ be accomplished with the following operating system configuration snippet: For more information regarding the format of the @file{sudoers} file, consult @command{man sudoers}. +Once you've deployed a system on a set of machines, you may find it +useful to run a command on all of them. The @option{--execute} or +@option{-x} option lets you do that; the example below runs +@command{uname -a} on all the machines listed in the deployment file: + +@example +guix deploy @var{file} -x -- uname -a +@end example + +One thing you may often need to do after deployment is restart specific +services on all the machines, which you can do like so: + +@example +guix deploy @var{file} -x -- herd restart @var{service} +@end example + +The @command{guix deploy -x} command returns zero if and only if the +command succeeded on all the machines. + +@c FIXME/TODO: Separate the API doc from the CLI doc. + +Below are the data types you need to know about when writing a +deployment file. + @deftp {Data Type} machine This is the data type representing a single machine in a heterogeneous Guix deployment. diff --git a/guix/scripts/deploy.scm b/guix/scripts/deploy.scm index 1707622c4f..27478eabc0 100644 --- a/guix/scripts/deploy.scm +++ b/guix/scripts/deploy.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2019 David Thompson ;;; Copyright © 2019 Jakob L. Kreuze -;;; Copyright © 2020, 2021 Ludovic Courtès +;;; Copyright © 2020-2022 Ludovic Courtès ;;; ;;; This file is part of GNU Guix. ;;; @@ -24,18 +24,21 @@ #:use-module (guix scripts) #:use-module (guix scripts build) #:use-module (guix store) + #:use-module (guix gexp) #:use-module (guix ui) #:use-module (guix utils) #:use-module (guix grafts) - #:use-module (guix status) + #:use-module ((guix status) #:select (with-status-verbosity)) #:use-module (guix diagnostics) #:use-module (guix i18n) #:use-module (ice-9 format) + #:use-module (ice-9 match) #:use-module (srfi srfi-1) #:use-module (srfi srfi-26) #:use-module (srfi srfi-34) #:use-module (srfi srfi-35) #:use-module (srfi srfi-37) + #:use-module (srfi srfi-71) #:export (guix-deploy)) ;;; Commentary: @@ -58,6 +61,9 @@ Perform the deployment specified by FILE.\n")) -V, --version display version information and exit")) (newline) (display (G_ " + -x, --execute execute the following command on all the machines")) + (newline) + (display (G_ " -v, --verbosity=LEVEL use the given verbosity LEVEL")) (show-bug-report-information)) @@ -70,6 +76,9 @@ Perform the deployment specified by FILE.\n")) (lambda args (show-version-and-exit "guix deploy"))) + (option '(#\x "execute") #f #f + (lambda (opt name arg result) + (alist-cons 'execute-command? #t result))) (option '(#\s "system") #t #f (lambda (opt name arg result) (alist-cons 'system arg @@ -152,6 +161,74 @@ Perform the deployment specified by FILE.\n")) (info (G_ "successfully deployed ~a~%") (machine-display-name machine)))) +(define (invoke-command store machine command) + "Invoke COMMAND, a list of strings, on MACHINE. Display its output (if any) +and its error code if it's non-zero. Return true if COMMAND succeeded, false +otherwise." + (define invocation + #~(begin + (use-modules (ice-9 match) + (ice-9 rdelim) + (srfi srfi-11)) + + (define (spawn . command) + ;; Spawn COMMAND; return its PID and an input port to read its + ;; standard output and standard error. + (match (pipe) + ((input . output) + (match (pipe) + ((input . output) + (match (primitive-fork) + (0 + (dynamic-wind + (const #t) + (lambda () + (close-port input) + (dup2 (fileno output) 1) + (dup2 (fileno output) 2) + (apply execlp (car command) command)) + (lambda () + (primitive-exit 127)))) + (pid + (close-port output) + (values pid input)))))))) + + ;; XXX: 'open-pipe*' is unsuitable here because it does not capture + ;; stderr, so roll our own. + (let-values (((pid pipe) (spawn #$@command))) + (let loop ((lines '())) + (match (read-line pipe 'concat) + ((? eof-object?) + (list (cdr (waitpid pid)) + (string-concatenate-reverse lines))) + (line + (loop (cons line lines)))))))) + + (match (run-with-store store + (machine-remote-eval machine invocation)) + ((code output) + (match code + ((? zero?) + (info (G_ "~a: command succeeded~%") + (machine-display-name machine))) + ((= status:exit-val code) + (report-error (G_ "~a: command exited with code ~a~%") + (machine-display-name machine) code)) + ((= status:stop-sig signal) + (report-error (G_ "~a: command stopped with signal ~a~%") + signal)) + ((= status:term-sig signal) + (report-error (G_ "~a: command terminated with signal ~a~%") + signal))) + + (unless (string-null? output) + (info (G_ "command output on ~a:~%") + (machine-display-name machine)) + (display output) + (newline)) + + (zero? code)))) + (define-command (guix-deploy . args) (synopsis "deploy operating systems on a set of machines") @@ -159,14 +236,17 @@ Perform the deployment specified by FILE.\n")) (alist-cons 'file arg result)) (with-error-handling - (let* ((opts (parse-command-line args %options (list %default-options) + (let* ((args command (break (cut string=? "--" <>) args)) + (opts (parse-command-line args %options (list %default-options) #:argument-handler handle-argument)) (file (assq-ref opts 'file)) - (machines (and file (load-source-file file)))) + (machines (and file (load-source-file file))) + (execute-command? (assoc-ref opts 'execute-command?))) (unless file (leave (G_ "missing deployment file argument~%"))) - (show-what-to-deploy machines) + (when (and (pair? command) (not execute-command?)) + (leave (G_ "'--' was used by '-x' was not specified~%"))) (with-status-verbosity (assoc-ref opts 'verbosity) (with-store store @@ -176,6 +256,21 @@ Perform the deployment specified by FILE.\n")) #:verbosity (assoc-ref opts 'verbosity)) (parameterize ((%graft? (assq-ref opts 'graft?))) - (map/accumulate-builds store - (cut deploy-machine* store <>) - machines)))))))) + (if execute-command? + (match command + (("--" command ..1) + ;; Exit with zero unless COMMAND failed on one or more + ;; machines. + (exit + (fold (lambda (machine result) + (and (invoke-command store machine command) + result)) + #t + machines))) + (_ + (leave (G_ "'-x' specified but no command given~%")))) + (begin + (show-what-to-deploy machines) + (map/accumulate-builds store + (cut deploy-machine* store <>) + machines)))))))))) -- cgit v1.3 From 9408a4edcb3fd44691f543b1fcceb90a26b71f4c Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Wed, 2 Feb 2022 18:42:30 +0100 Subject: news: Add entry about 'guix deploy -x'. * etc/news.scm: Add entry. --- etc/news.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/etc/news.scm b/etc/news.scm index 7e6da61c71..7b7c05b60c 100644 --- a/etc/news.scm +++ b/etc/news.scm @@ -25,6 +25,33 @@ (channel-news (version 0) + (entry (commit "5c13484646069064c834bbd3cd02c3bc80d94cb6") + (title + (en "New @option{--execute} option to @command{guix deploy}") + (fr "Nouvelle option @option{--execute} pour @command{guix deploy}")) + (body + (en "The @command{guix deploy} command has a new @option{--execute} +or @option{-x} option, which allows you to execute a command on all the +machines that your configuration file specifies, as in this example: + +@example +guix deploy deploy.scm -x -- herd restart guix-daemon +@end example + +This is no substitute for full-featured tools such as pdsh but it is a useful +helper.") + (fr "La commande @command{guix deploy} a une nouvelle option +@option{--execute} ou @option{-x} qui permet d'exécuter une commande sur +toutes les machines spécifiées dans son fichier de configuration, comme dans +cet exemple : + +@example +guix deploy deploy.scm -x -- herd restart guix-daemon +@end example + +Ça ne remplace pas les outils sophistiqués comme pdsh mais c'est bien +pratique."))) + (entry (commit "c4fe13c294cc1e31dd8a49ce3981f603fb169e0a") (title (en "@command{guix style} can format package definitions") -- cgit v1.3 From 6cced3f1e6454e1e0f5b794058814dd459a8f698 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Wed, 2 Feb 2022 12:37:20 -0500 Subject: gnu: Syncthing: Update to 1.19.0. * gnu/packages/syncthing.scm (syncthing): Update to 1.19.0. --- gnu/packages/syncthing.scm | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/gnu/packages/syncthing.scm b/gnu/packages/syncthing.scm index 8e857d5614..71636e76a3 100644 --- a/gnu/packages/syncthing.scm +++ b/gnu/packages/syncthing.scm @@ -46,9 +46,7 @@ (define-public syncthing (package (name "syncthing") - (version "1.18.6") - ; XXX After the go-build-system can use "Go modules", stop using bundled - ; dependencies for Syncthing. + (version "1.19.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/syncthing/syncthing" @@ -56,7 +54,7 @@ "/syncthing-source-v" version ".tar.gz")) (sha256 (base32 - "0hlyk2nvsnf4am1vqc4zl91acf2rhpr1gy4gppk2aa5x85h9qisc")))) + "13b8dsvqgah13w5sfbwv1fpwj6sfqj2lv0d0x9433ljjq92lxkbg")))) (build-system go-build-system) ;; The primary Syncthing executable goes to "out", while the auxiliary ;; server programs and utility tools go to "utils". This reduces the size -- cgit v1.3 From 108e7576c0bdef7430a44157a29bfba421a9dd92 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Wed, 2 Feb 2022 18:27:10 +0000 Subject: services: patchwork: Set DEFAULT_AUTO_FIELD in settings. This resolves some warnings with Django 3.2. This was added by upstream to the base settings https://github.com/getpatchwork/patchwork/commit/43e5c4a0ace4e662c3e3973337445314abbe5247 * gnu/services/web.scm (patchwork-settings-module-compiler): Specify DEFAULT_AUTO_FIELD in the settings module. --- gnu/services/web.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/services/web.scm b/gnu/services/web.scm index e5cc6343b5..3fe58d98e6 100644 --- a/gnu/services/web.scm +++ b/gnu/services/web.scm @@ -1519,6 +1519,8 @@ ALLOWED_HOSTS = [ allowed-hosts)) "] +DEFAULT_AUTO_FIELD = 'django.db.models.AutoField' + DEFAULT_FROM_EMAIL = '" #$default-from-email "' SERVER_EMAIL = DEFAULT_FROM_EMAIL NOTIFICATION_FROM_EMAIL = DEFAULT_FROM_EMAIL -- cgit v1.3 From 1d07213d235fa097551cc68834db0237327435fb Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Tue, 1 Feb 2022 08:39:04 +0000 Subject: gnu: guile-fibers: Add version 1.1.0. This release looks to break a few packages, so keep using fibers 1.0 to build things, and provide the new version to allow switching to when packages are compatible. * gnu/packages/guile-xyz.scm (guile-fibers-1.1): New variable. (guile-fibers): Inherit from guile-fibers-1.1. (guile2.0-fibers): Rename to guile2.2-fibers, and inherit from guile-fibers-1.1. --- gnu/packages/guile-xyz.scm | 73 +++++++++++++++++++++++++++++++--------------- 1 file changed, 50 insertions(+), 23 deletions(-) diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 38c6def1fc..f35ba43057 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -601,9 +601,55 @@ Unix-style DSV format and RFC 4180 format.") (inputs (list guile-2.2)) (propagated-inputs `(("guile-lib" ,guile2.2-lib))))) -(define-public guile-fibers +(define-public guile-fibers-1.1 (package (name "guile-fibers") + (version "1.1.0") + (source (origin + (method url-fetch) + (uri (string-append + "https://github.com/wingo/fibers/releases/download/v" + version "/fibers-" version ".tar.gz")) + (sha256 + (base32 + "1lqz39shlhif5fhpyv2wili0yzb0nhf5ciiv7mdqsq0vljirhrm0")))) + (build-system gnu-build-system) + (arguments + '(#:phases (modify-phases %standard-phases + (add-after 'install 'mode-guile-objects + (lambda* (#:key outputs #:allow-other-keys) + ;; .go files are installed to "lib/guile/X.Y/cache". + ;; This phase moves them to "…/site-ccache". + (let* ((out (assoc-ref outputs "out")) + (lib (string-append out "/lib/guile")) + (old (car (find-files lib "^ccache$" + #:directories? #t))) + (new (string-append (dirname old) + "/site-ccache"))) + (rename-file old new) + #t)))))) + (native-inputs + (list texinfo pkg-config)) + (inputs + (list guile-3.0)) + (synopsis "Lightweight concurrency facility for Guile") + (description + "Fibers is a Guile library that implements a a lightweight concurrency +facility, inspired by systems like Concurrent ML, Go, and Erlang. A fiber is +like a \"goroutine\" from the Go language: a lightweight thread-like +abstraction. Systems built with Fibers can scale up to millions of concurrent +fibers, tens of thousands of concurrent socket connections, and many parallel +cores. The Fibers library also provides Concurrent ML-like channels for +communication between fibers. + +Note that Fibers makes use of some Guile 2.1/2.2-specific features and +is not available for Guile 2.0.") + (home-page "https://github.com/wingo/fibers") + (license license:lgpl3+))) + +(define-public guile-fibers + (package + (inherit guile-fibers-1.1) (version "1.0.0") (source (origin (method url-fetch) @@ -637,7 +683,6 @@ Unix-style DSV format and RFC 4180 format.") (patches ;; fixes a resource leak that causes crashes in the tests (search-patches "guile-fibers-destroy-peer-schedulers.patch")))) - (build-system gnu-build-system) (arguments '(;; The code uses 'scm_t_uint64' et al., which are deprecated in 3.0. #:configure-flags '("CFLAGS=-Wno-error=deprecated-declarations") @@ -653,29 +698,11 @@ Unix-style DSV format and RFC 4180 format.") (new (string-append (dirname old) "/site-ccache"))) (rename-file old new) - #t)))))) - (native-inputs - (list texinfo pkg-config)) - (inputs - (list guile-3.0)) - (synopsis "Lightweight concurrency facility for Guile") - (description - "Fibers is a Guile library that implements a a lightweight concurrency -facility, inspired by systems like Concurrent ML, Go, and Erlang. A fiber is -like a \"goroutine\" from the Go language: a lightweight thread-like -abstraction. Systems built with Fibers can scale up to millions of concurrent -fibers, tens of thousands of concurrent socket connections, and many parallel -cores. The Fibers library also provides Concurrent ML-like channels for -communication between fibers. - -Note that Fibers makes use of some Guile 2.1/2.2-specific features and -is not available for Guile 2.0.") - (home-page "https://github.com/wingo/fibers") - (license license:lgpl3+))) + #t)))))))) -(define-public guile2.0-fibers +(define-public guile2.2-fibers (package - (inherit guile-fibers) + (inherit guile-fibers-1.1) (name "guile2.2-fibers") (inputs (list guile-2.2)))) -- cgit v1.3 From d1c076a68d9125aca79b3a897670d7a71136f860 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Wed, 2 Feb 2022 18:39:49 +0000 Subject: gnu: nar-herder: Update to 0-2.f016f37. * gnu/packages/package-management.scm (nar-herder): Update to 0-2.f016f37. --- gnu/packages/package-management.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm index ee43783d8f..01fa626fd1 100644 --- a/gnu/packages/package-management.scm +++ b/gnu/packages/package-management.scm @@ -1569,8 +1569,8 @@ in an isolated environment, in separate namespaces.") (license license:gpl3+))) (define-public nar-herder - (let ((commit "049dfec287fa948cac6682d0a047bc0ed356f0bf") - (revision "1")) + (let ((commit "f016f37ee004294722650ac570d3e4286bc8d161") + (revision "2")) (package (name "nar-herder") (version (git-version "0" revision commit)) @@ -1581,7 +1581,7 @@ in an isolated environment, in separate namespaces.") (commit commit))) (sha256 (base32 - "1bkn6avcyp2rcrqaync65b8yn9dvxlkjpk3mdk5nsy527dzhs5ws")) + "18kzh37cw9dsd8b3ws81yikjkq6izdqiygyf0bnf5ikbixmmj30x")) (file-name (string-append name "-" version "-checkout")))) (build-system gnu-build-system) (arguments -- cgit v1.3 From 6be1d5565c051521ad0a95d3ad4594146768d723 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Wed, 2 Feb 2022 18:41:05 +0000 Subject: gnu: guix-build-coordinator: Update to 0-48.f8acb62. * gnu/packages/package-management.scm (guix-build-coordinator): Update to 0-48.f8acb62. --- gnu/packages/package-management.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm index 01fa626fd1..97be7f8293 100644 --- a/gnu/packages/package-management.scm +++ b/gnu/packages/package-management.scm @@ -1261,8 +1261,8 @@ environments.") (license (list license:gpl3+ license:agpl3+ license:silofl1.1)))) (define-public guix-build-coordinator - (let ((commit "048c609667f1690fe0a8d8c9b772f9bc6dd412e0") - (revision "47")) + (let ((commit "f8acb629075adba17c34538dc9d4f779a9359272") + (revision "48")) (package (name "guix-build-coordinator") (version (git-version "0" revision commit)) @@ -1273,7 +1273,7 @@ environments.") (commit commit))) (sha256 (base32 - "13sf3gv1jdaq6ncyw4s58zw0l2xjnksqjynlbqzx08i45xpj5yv8")) + "1y0dbxldcmqsg0y40q0qq834pswfy0fggsb7lala31yaaxsl9g72")) (file-name (string-append name "-" version "-checkout")))) (build-system gnu-build-system) (arguments -- cgit v1.3 From 34de7f0d950eb096c2860d79960360a54c47105e Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Wed, 2 Feb 2022 12:16:45 -0500 Subject: gnu: linux-libre 5.16: Update to 5.16.5. * gnu/packages/linux.scm (linux-libre-5.16-version): Update to 5.16.5. (linux-libre-5.16-pristine-source): Update hash. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 2760cf46c7..975b27cd48 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -357,7 +357,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." ;; The current "stable" kernels. That is, the most recently released major ;; versions that are still supported upstream. -(define-public linux-libre-5.16-version "5.16.4") +(define-public linux-libre-5.16-version "5.16.5") (define-public linux-libre-5.16-gnu-revision "gnu") (define deblob-scripts-5.16 (linux-libre-deblob-scripts @@ -367,7 +367,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (base32 "14vb7g784rm1s2a2dzs6pnz3998iwdjwx8665myddr7gd197rkaq"))) (define-public linux-libre-5.16-pristine-source (let ((version linux-libre-5.16-version) - (hash (base32 "1gsh7gj5k6kqf5sf26b26rr0idgxdw4xxcba2qaajddyp502mqrb"))) + (hash (base32 "1ay7y7c2bdgvqd7hw8l9jxzx9m2rd5drdakjqnblz4w9sbcyvbpc"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-5.16))) -- cgit v1.3 From 999a448861fc8ff34099c085b7309263a5791126 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Wed, 2 Feb 2022 12:17:02 -0500 Subject: gnu: linux-libre 5.15: Update to 5.15.19. * gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.19. (linux-libre-5.15-pristine-source): Update hash. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 975b27cd48..4cdcd4816c 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -375,7 +375,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." ;; The "longterm" kernels — the older releases with long-term upstream support. ;; Here are the support timelines: ;; -(define-public linux-libre-5.15-version "5.15.18") +(define-public linux-libre-5.15-version "5.15.19") (define-public linux-libre-5.15-gnu-revision "gnu") (define deblob-scripts-5.15 (linux-libre-deblob-scripts @@ -385,7 +385,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (base32 "0mxm0wy3fyg7fn2n8k9b4zh62l4q00b4y9zf46im691zscwgikc2"))) (define-public linux-libre-5.15-pristine-source (let ((version linux-libre-5.15-version) - (hash (base32 "0pkcg3cns4l1i5r7ab77pksl76h54g2mnhvdhc1k8skp9pl71p91"))) + (hash (base32 "0l70ckc0imnn7x9p9dawprzblszadk79468wx3zqz951yb4k5gh1"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-5.15))) -- cgit v1.3 From 2585dd2e9343057fbcc06edcb19af80747b93bd5 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Wed, 2 Feb 2022 12:19:02 -0500 Subject: gnu: linux-libre 5.10: Update to 5.10.96. * gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.96. (linux-libre-5.10-pristine-source): Update hash. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 4cdcd4816c..c0f35aaa47 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -390,7 +390,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (%upstream-linux-source version hash) deblob-scripts-5.15))) -(define-public linux-libre-5.10-version "5.10.95") +(define-public linux-libre-5.10-version "5.10.96") (define-public linux-libre-5.10-gnu-revision "gnu1") (define deblob-scripts-5.10 (linux-libre-deblob-scripts @@ -400,7 +400,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (base32 "090y0z4a7b643w0v6c6mbgvl04mrlrhanil38mafl6dlnhad9zbl"))) (define-public linux-libre-5.10-pristine-source (let ((version linux-libre-5.10-version) - (hash (base32 "08zwcf66varjm2s4lb5a5yh5lh90kb43d6dlrg4xv1179vwxmnf8"))) + (hash (base32 "0j70nbsxy6qpynr3f9igl9wf14wx40diazf4j7w7mlwxh51a1r9m"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-5.10))) -- cgit v1.3 From 97d97d7da1f5b500b2b76210131ca6adff6a1e80 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Wed, 2 Feb 2022 12:19:17 -0500 Subject: gnu: linux-libre 5.4: Update to 5.4.176. * gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.176. (linux-libre-5.4-pristine-source): Update hash. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index c0f35aaa47..7df64bbdae 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -405,7 +405,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (%upstream-linux-source version hash) deblob-scripts-5.10))) -(define-public linux-libre-5.4-version "5.4.175") +(define-public linux-libre-5.4-version "5.4.176") (define-public linux-libre-5.4-gnu-revision "gnu1") (define deblob-scripts-5.4 (linux-libre-deblob-scripts @@ -415,7 +415,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (base32 "1mp9d0b7mqw7cl65k0a18265cvn4qwcpnvna8r6n5m3y4pz3rik9"))) (define-public linux-libre-5.4-pristine-source (let ((version linux-libre-5.4-version) - (hash (base32 "0h2838jrw69xv1mg1qj0n8qx6g8n48iv8yna633xd20lzggip45c"))) + (hash (base32 "0h67d34n8cwq60rv8nw0a7n9mkihs0cg0b5zl6ihfyjflqj0jq6r"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-5.4))) -- cgit v1.3 From 906b4609d862fbefbb24bd3ec0529766812baab0 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Wed, 2 Feb 2022 14:54:13 +0100 Subject: gnu: python-idna: Remove 2.7. * gnu/packages/python-xyz.scm (python-idna-2.7): Remove variable. --- gnu/packages/python-xyz.scm | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index b65022ac90..b0374622f2 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -12055,17 +12055,6 @@ the Python standard library but currently only supports the older 2003 specification.") (license license:bsd-4))) -(define-public python-idna-2.7 - (package (inherit python-idna) - (version "2.7") - (source (origin - (method url-fetch) - (uri (pypi-uri "idna" version)) - (sha256 - (base32 - "05jam7d31767dr12x0rbvvs8lxnpb1mhdb2zdlfxgh83z6k3hjk8")))))) - - (define-public python2-idna (package-with-python2 python-idna)) -- cgit v1.3 From f38d8e050e8ff2bf00dd6f8b6f3aaf638663b9bb Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Wed, 2 Feb 2022 17:28:16 +0100 Subject: gnu: dia: Update to 0.97.3-3.0997887. * gnu/packages/gnome.scm (dia): Update to 0.97.3-3.0997887. [arguments]: Remove #:meson. Add #:parallel-build?. [inputs]: Remove PYTHON-2. Add PYTHON. [native-inputs]: Remove INTLTOOL. Add GETTEXT-MINIMAL. --- gnu/packages/gnome.scm | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index e3fac534c4..92900c8421 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -1914,8 +1914,8 @@ and system administrators.") ;; recent versions of the build tools. The latest activity on the ;; pre-GNOME version has been in 2014, while GNOME has continued applying ;; fixes since. - (let ((commit "3cf7ec4c2e5bca139a7f3e17f9fc9009c237fcc5") - (revision "2")) + (let ((commit "0997887d97f01be28bf3886dfd3e2002de437930") + (revision "3")) (package (name "dia") (version (git-version "0.97.3" revision commit)) @@ -1927,9 +1927,11 @@ and system administrators.") (file-name (git-file-name name version)) (sha256 (base32 - "04r8dspa6nmicrifhi3sh46hqvyy88hzq37xx99q3q1mwsrpmwy8")))) + "199b4n1jydg1g9lnz0r8xx67h7s2ac2lfj89zp015lbs0qqfkmsh")))) (build-system meson-build-system) - (arguments `(#:meson ,meson-0.59)) + ;; XXX: Parallel builds may cause: [74/566] [...] + ;; fatal error: dia-lib-enums.h: No such file or directory + (arguments '(#:parallel-build? #f)) (inputs (list graphene gtk+-2 @@ -1939,12 +1941,10 @@ and system administrators.") ;; XXX: PDF plugin fails to build with poppler 21.07.0. ;; poppler - ;; Without Python 2, build fails: plug-ins/python/meson.build:4:0: - ;; ERROR: Unknown method "dependency" in object. - python-2)) + python)) (native-inputs (list appstream-glib docbook-xsl - `(,glib "bin") intltool pkg-config)) + `(,glib "bin") gettext-minimal pkg-config)) (home-page "https://wiki.gnome.org/Apps/Dia") (synopsis "Diagram creation for GNOME") (description "Dia can be used to draw different types of diagrams, and -- cgit v1.3 From 0cadd09ad3e4159e0b1117bc4a28b2ecaabb8826 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Wed, 2 Feb 2022 18:12:47 +0100 Subject: gnu: ungoogled-chromium: Don't use the bundled libc++. This partially reverts f01ec472b9c3ef9008e70e0cf41ca46c61137d8c. * gnu/packages/chromium.scm (%preserved-third-party-files): Unbundle libcxx, re2, and jsoncpp. (%debian-patches): Add 'system/jsoncpp.patch'. (ungoogled-chromium-snippet): Replace re2 GN files. (ungoogled-chromium)[arguments]: Add use_custom_libcxx, rtc_build_json, and rtc_jsoncpp_root to #:configure-flags. Don't override CPLUS_INCLUDE_PATH. Add substitution. [inputs]: Add JSONCPP and RE2. --- gnu/packages/chromium.scm | 37 +++++++++++++++---------------------- 1 file changed, 15 insertions(+), 22 deletions(-) diff --git a/gnu/packages/chromium.scm b/gnu/packages/chromium.scm index ba352c533e..6ecdea41c4 100644 --- a/gnu/packages/chromium.scm +++ b/gnu/packages/chromium.scm @@ -82,9 +82,6 @@ "base/third_party/symbolize" ;BSD-3 "base/third_party/xdg_mime" ;LGPL2.0+ or Academic 2.0 "base/third_party/xdg_user_dirs" ;Expat - ;; XXX: Chromium requires a newer C++ standard library. Remove this when - ;; the default GCC is 9 or later. - "buildtools/third_party/libc++" ;ASL2.0, with LLVM exceptions "chrome/third_party/mozilla_security_manager" ;MPL-1.1/GPL2+/LGPL2.1+ "courgette/third_party/bsdiff" ;BSD-2, BSD protection license "courgette/third_party/divsufsort" ;Expat @@ -170,8 +167,6 @@ "third_party/iccjpeg" ;IJG "third_party/inspector_protocol" ;BSD-3 "third_party/jinja2" ;BSD-3 - ;; XXX: Unbundle this when switching back to libstdc++. - "third_party/jsoncpp" ;Public Domain or Expat "third_party/jstemplate" ;ASL2.0 "third_party/khronos" ;Expat, SGI "third_party/leveldatabase" ;BSD-3 @@ -237,9 +232,6 @@ "third_party/protobuf/third_party/six" ;Expat "third_party/pyjson5" ;ASL2.0 "third_party/qcms" ;Expat - ;; XXX: System re2 cannot be used when Chromium uses libc++ because the re2 - ;; ABI relies on libstdc++ internals. See build/linux/unbundle/re2.gn. - "third_party/re2" ;BSD-3 "third_party/rnnoise" ;BSD-3 "third_party/ruy" ;ASL2.0 "third_party/s2cellid" ;ASL2.0 @@ -348,6 +340,8 @@ (define %debian-patches (list (debian-patch "fixes/nomerge.patch" "0lybs2b5gk08j8cr6vjrs9d3drd7qfw013z2r0y00by8dnpm74i3") + (debian-patch "system/jsoncpp.patch" + "16lvhci10hz0q9axc6p921b95a76kbzcla5cl81czxzfwnynr1w5") (debian-patch "system/zlib.patch" "0j313bd3q8qc065j60x97dckrfgbwl4qxc8jhz33iihvv4lwziwv") (debian-patch "system/openjpeg.patch" @@ -449,7 +443,7 @@ "--system-libraries" "ffmpeg" "flac" "fontconfig" "freetype" "harfbuzz-ng" "icu" "libdrm" "libevent" "libjpeg" "libpng" "libwebp" "libxml" "libxslt" - "openh264" "opus" "zlib"))))) + "openh264" "opus" "re2" "zlib"))))) (define opus+custom (package/inherit opus @@ -503,6 +497,7 @@ "clang_use_chrome_plugins=false" "is_cfi=false" ;requires ThinLTO "use_thin_lto=false" ;XXX lld segfaults + "use_custom_libcxx=false" "chrome_pgo_phase=0" "use_sysroot=false" "goma_dir=\"\"" @@ -577,7 +572,11 @@ "rtc_use_pipewire=true" "rtc_link_pipewire=true" ;; Don't use bundled sources. - "rtc_build_json=true" ;FIXME: libc++ std::string ABI difference + "rtc_build_json=false" + (string-append "rtc_jsoncpp_root=\"" + (search-input-directory %build-inputs + "include/json") + "\"") "rtc_build_libevent=false" ;; XXX: Use the bundled libvpx for WebRTC because unbundling ;; currently fails (see above), and the versions must match. @@ -623,6 +622,10 @@ (find-files (string-append "third_party/webrtc/modules" "/audio_coding/codecs/opus"))) + (substitute* "third_party/webrtc/rtc_base/strings/json.h" + (("#include \"third_party/jsoncpp/") + "#include \"json/")) + ;; Many files try to include ICU headers from "third_party/icu/...". ;; Remove the "third_party/" prefix to use system headers instead. (substitute* (find-files "chrome" "\\.cc$") @@ -683,18 +686,6 @@ "include/c++")) (node (search-input-file (or native-inputs inputs) "/bin/node"))) - ;; Remove the default compiler from CPLUS_INCLUDE_PATH to - ;; prevent header conflict with the bundled libcxx. - (setenv "CPLUS_INCLUDE_PATH" - (string-join - (delete c++ - (string-split (getenv "CPLUS_INCLUDE_PATH") - #\:)) - ":")) - (format #t - "environment variable `CPLUS_INCLUDE_PATH' changed to ~a~%" - (getenv "CPLUS_INCLUDE_PATH")) - ;; Define the GN toolchain. (setenv "AR" "llvm-ar") (setenv "NM" "llvm-nm") (setenv "CC" "clang") (setenv "CXX" "clang++") @@ -846,6 +837,7 @@ gtk+ harfbuzz-3.0 icu4c + jsoncpp lcms libevent libffi @@ -879,6 +871,7 @@ pciutils pipewire-0.3 pulseaudio + re2 snappy speech-dispatcher eudev -- cgit v1.3 From 9dbbf4ba48e5fa416261b3010567064d04d106c6 Mon Sep 17 00:00:00 2001 From: jgart Date: Wed, 2 Feb 2022 13:34:31 -0500 Subject: gnu: Add cl-css-lite. * gnu/packages/lisp-xyz.scm (cl-css-lite, ecl-css-lite, sbcl-css-lite): New variables. Signed-off-by: Guillaume Le Vaillant --- gnu/packages/lisp-xyz.scm | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 25fa21f70f..4d05d4efdd 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -28,7 +28,7 @@ ;;; Copyright © 2021 Cameron Chaparro ;;; Copyright © 2021 Charles Jackson ;;; Copyright © 2021, 2022 Foo Chuan Wei -;;; Copyright © 2021 jgart +;;; Copyright © 2021, 2022 jgart ;;; Copyright © 2021 Aleksandr Vityazev ;;; Copyright © 2021 Jacob MacDonald ;;; @@ -20324,6 +20324,37 @@ Lisp. A subsystem offers an experimental GUI Gemini client.") (define-public ecl-phos (sbcl-package->ecl-package sbcl-phos)) +(define-public sbcl-css-lite + (let ((commit "6ee4e6212ed56943d665df163d2a834b122e6273") + (revision "0")) + (package + (name "sbcl-css-lite") + (version "0.01") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/paddymul/css-lite") + (commit commit))) + (sha256 + (base32 "1lyvw7hcy09k5qs6icky23s13psqxncyc73hdyiimb66p0jx6k0d")) + (file-name (git-file-name "cl-css-lite" commit)))) + (build-system asdf-build-system/sbcl) + (home-page "https://github.com/paddymul/css-lite") + (synopsis "CSS grammar for Lisp") + (description + "@code{cl-css-lite} is a library for generating CSS from an s-exp based +syntax. When compiled with Parenscript loaded in the Lisp image, it +also provides the same CSS generation facilities in Parenscript-generated +JavaScript code.") + (license license:bsd-3)))) + +(define-public cl-css-lite + (sbcl-package->cl-source-package sbcl-css-lite)) + +(define-public ecl-css-lite + (sbcl-package->ecl-package sbcl-css-lite)) + (define-public sbcl-nhooks (package (name "sbcl-nhooks") -- cgit v1.3 From d6824f6de42f036d293844e049add0650045249a Mon Sep 17 00:00:00 2001 From: jgart Date: Wed, 2 Feb 2022 14:07:55 -0500 Subject: gnu: Add cl-snakes. * gnu/packages/lisp-xyz.scm (cl-snakes, ecl-snakes, sbcl-snakes): New variables. Signed-off-by: Guillaume Le Vaillant --- gnu/packages/lisp-xyz.scm | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 4d05d4efdd..102546c84a 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -20069,6 +20069,42 @@ parsers.") (define-public ecl-maxpc (sbcl-package->ecl-package sbcl-maxpc)) +(define-public sbcl-snakes + (let ((commit "8c7eae579bb24539dbd584a81a1049f3d3ff8bf8") + (revision "0")) + (package + (name "sbcl-snakes") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/BnMcGn/snakes") + (commit commit))) + (sha256 + (base32 "1ibp919qcpm6kg67b507kpjzdlhpdjr7vkh9vabln3a75k8lnlsg")) + (file-name (git-file-name "cl-snakes" commit)))) + (build-system asdf-build-system/sbcl) + (inputs + (list sbcl-alexandria + sbcl-cl-cont + sbcl-cl-utilities + sbcl-closer-mop + sbcl-fiveam + sbcl-iterate)) + (home-page "https://github.com/BnMcGn/snakes") + (synopsis "Python-like generators for Common Lisp") + (description + "This package provides Python style generators for Common Lisp. +It also includes a port of itertools.") + (license license:asl2.0)))) + +(define-public cl-snakes + (sbcl-package->cl-source-package sbcl-snakes)) + +(define-public ecl-snakes + (sbcl-package->ecl-package sbcl-snakes)) + (define-public sbcl-random-state (let ((commit "c270d4f15e0b66ba9680ca8734a5de56959cb118") (revision "1")) -- cgit v1.3 From 102a02896d4bf8eeed346521aaec8a7bda46c58b Mon Sep 17 00:00:00 2001 From: pukkamustard Date: Tue, 1 Feb 2022 19:36:38 +0000 Subject: gnu: js-of-ocaml: Update to 4.0.0. * gnu/packages/ocaml (js-of-ocaml): Update to 4.0.0. Signed-off-by: Julien Lepiller --- gnu/packages/ocaml.scm | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 6c1ac057a4..fa6cdcb0d5 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -17,7 +17,7 @@ ;;; Copyright © 2020 Marius Bakke ;;; Copyright © 2020, 2021 Simon Tournier ;;; Copyright © 2020 divoplade -;;; Copyright © 2020, 2021 pukkamustard +;;; Copyright © 2020, 2021, 2022 pukkamustard ;;; Copyright © 2021 aecepoglu ;;; Copyright © 2021 Sharlatan Hellseher ;;; Copyright © 2021 Xinglu Chen @@ -7639,7 +7639,7 @@ libraries.") (define-public js-of-ocaml (package (name "js-of-ocaml") - (version "3.11.0") + (version "4.0.0") (source (origin (method git-fetch) @@ -7648,20 +7648,9 @@ libraries.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1x5f1ph9wgx0mgyibssssnrcwp69ihw66gzhsnz9h79czgzyjpp2")))) + (base32 "0iyhl9z57j53j2jvyqcwmxhbvy23l6g80aa0abmlgwam14yskspf")))) (build-system dune-build-system) - (arguments - `(#:test-target "." - #:phases - (modify-phases %standard-phases - (add-before 'check 'fix-failing-test - (lambda _ - ;; Formating difference - (with-output-to-file "compiler/tests-jsoo/bin/error2.expected" - (lambda _ - (format #t - "Fatal error: exception Match_failure(\ -\"compiler/tests-jsoo/bin/error2.ml\", 11, 2)\n\n")))))))) + (arguments `(#:test-target ".")) (propagated-inputs (list ocaml-ppxlib ocaml-uchar -- cgit v1.3 From 5fe10d1b97b1ea183eebcc44de175e1d135ae558 Mon Sep 17 00:00:00 2001 From: Vinicius Monego Date: Wed, 2 Feb 2022 16:51:35 -0300 Subject: gnu: mixxx: Update to 2.3.2. * gnu/packages/music.scm (mixxx): Update to 2.3.2. [arguments]<#:phases>: Don't override the 'check phase as the previously failing test passes in this version. [native-inputs]: Use the new style. [inputs]: Likewise. --- gnu/packages/music.scm | 109 +++++++++++++++++++++++-------------------------- 1 file changed, 52 insertions(+), 57 deletions(-) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 43b1059304..211f7a6b11 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -34,7 +34,7 @@ ;;; Copyright © 2019 Riku Viitanen ;;; Copyright © 2020 Ryan Prior ;;; Copyright © 2021 Liliana Marie Prikler -;;; Copyright © 2021 Vinicius Monego +;;; Copyright © 2021, 2022 Vinicius Monego ;;; Copyright © 2021 Brendan Tildesley ;;; Copyright © 2021 Bonface Munyoki Kilyungi ;;; Copyright © 2021 Frank Pursel @@ -2176,7 +2176,7 @@ users to select LV2 plugins and run them with jalv.") (define-public mixxx (package (name "mixxx") - (version "2.3.1") + (version "2.3.2") (source (origin (method git-fetch) @@ -2188,7 +2188,7 @@ users to select LV2 plugins and run them with jalv.") (search-patches "mixxx-link-qtscriptbytearray-qtscript.patch" "mixxx-system-googletest-benchmark.patch")) (sha256 - (base32 "04781s4ajdlwgvf12v2mvh6ia5grhc5pn9d75b468qci3ilnmkg8")) + (base32 "1h26vpf60rk56fsw1nvmxihg7ammlj8q4zgim49q4s4ww7j8wwqj")) (modules '((guix build utils))) (snippet ;; Delete libraries that we already have or don't need. @@ -2210,11 +2210,6 @@ users to select LV2 plugins and run them with jalv.") (lambda _ (system "Xvfb &") (setenv "DISPLAY" ":0"))) - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - ;; This test fails. I don't know why. - (invoke "ctest" "-E" "TagLibTest.WriteID3v2Tag")))) (add-after 'install 'wrap-executable (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) @@ -2223,56 +2218,56 @@ users to select LV2 plugins and run them with jalv.") `("LD_LIBRARY_PATH" ":" prefix ,(list (string-append faad2 "/lib")))))))))) (native-inputs - `(("benchmark" ,benchmark) - ("googletest" ,googletest) - ("python" ,python-wrapper) - ("qttools" ,qttools) - ("xorg-server" ,xorg-server-for-tests))) + (list benchmark + googletest + python-wrapper + qttools + xorg-server-for-tests)) (inputs - `(("bash" ,bash-minimal) - ("chromaprint" ,chromaprint) - ("faad2" ,faad2) - ("ffmpeg" ,ffmpeg) - ("fftw" ,fftw) - ("flac" ,flac) - ("glu" ,glu) - ("hidapi" ,hidapi) - ("jack" ,jack-1) - ("lame" ,lame) - ("libdjinterop" ,libdjinterop) - ("libebur128" ,libebur128) - ("libid3tag" ,libid3tag) - ("libkeyfinder" ,libkeyfinder) - ("libmad" ,libmad) - ("libmp4v2" ,libmp4v2) - ("libmodplug" ,libmodplug) - ("libsndfile" ,libsndfile) - ("libshout" ,libshout) - ;; XXX: Mixxx complains the libshout-idjc package suffers from bug - ;; lp1833225 and refuses to use it. Use the bundle for now. - ;; ("libshout-idjc" ,libshout-idjc) - ("libusb" ,libusb) - ("libvorbis" ,libvorbis) - ("lilv" ,lilv) - ("mp3guessenc" ,mp3guessenc) - ("openssl" ,openssl) - ("opusfile" ,opusfile) - ("portaudio" ,portaudio) - ("portmidi" ,portmidi) - ("protobuf" ,protobuf) - ("qtbase" ,qtbase-5) - ("qtdeclarative" ,qtdeclarative) - ("qtkeychain" ,qtkeychain) - ("qtscript" ,qtscript) - ("qtsvg" ,qtsvg) - ("qtx11extras" ,qtx11extras) - ("rubberband" ,rubberband) - ("soundtouch" ,soundtouch) - ("sqlite" ,sqlite) - ("taglib" ,taglib) - ("upower" ,upower) - ("vamp" ,vamp) - ("wavpack" ,wavpack))) + (list bash-minimal + chromaprint + faad2 + ffmpeg + fftw + flac + glu + hidapi + jack-1 + lame + libdjinterop + libebur128 + libid3tag + libkeyfinder + libmad + libmp4v2 + libmodplug + libsndfile + libshout + ;; XXX: Mixxx complains the libshout-idjc package suffers from bug + ;; lp1833225 and refuses to use it. Use the bundle for now. + ;; libshout-idjc + libusb + libvorbis + lilv + mp3guessenc + openssl + opusfile + portaudio + portmidi + protobuf + qtbase-5 + qtdeclarative + qtkeychain + qtscript + qtsvg + qtx11extras + rubberband + soundtouch + sqlite + taglib + upower + vamp + wavpack)) (home-page "https://mixxx.org/") (synopsis "DJ software to perform live mixes") (description "Mixxx is a DJ software. It integrates the tools DJs need to -- cgit v1.3 From 90547d6d505c0a998d5fe2f446f3cbaa2c1b1579 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Thu, 3 Feb 2022 14:09:11 +0100 Subject: gnu: dune: Update to 2.9.3. * gnu/packages/ocaml.scm (dune-bootstrap): Update to 2.9.3. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index fa6cdcb0d5..d1294518ad 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1656,7 +1656,7 @@ full_split, cut, rcut, etc..") (define dune-bootstrap (package (name "dune") - (version "2.9.1") + (version "2.9.3") (source (origin (method git-fetch) (uri (git-reference @@ -1665,7 +1665,7 @@ full_split, cut, rcut, etc..") (file-name (git-file-name name version)) (sha256 (base32 - "1lnah40pm9ndixz5hbsh67chvdspqpy26g6byb767vqgj7dbivfh")))) + "1b4rsqn6gf3cv46jgvrsq0xh9zfsaif810zpbvm0mv2bhphqfjk7")))) (build-system ocaml-build-system) (arguments `(#:tests? #f; require odoc -- cgit v1.3 From 040d12a2f6e1350fbbdb6f0cdc9bd9cb2acdcdd3 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Thu, 3 Feb 2022 14:17:43 +0100 Subject: gnu: ocaml-odoc-parser: Update to 1.0.0. * gnu/packages/ocaml.scm (ocaml-odoc-parser): Update to 1.0.0. (ocamlformat): Update to 0.20.1. --- gnu/packages/ocaml.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index d1294518ad..c71102e124 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -6820,7 +6820,7 @@ complexity of the OCaml module system.") (define-public ocaml-odoc-parser (package (name "ocaml-odoc-parser") - (version "0.9.0") + (version "1.0.0") (source (origin (method git-fetch) @@ -6830,7 +6830,7 @@ complexity of the OCaml module system.") (file-name (git-file-name name version)) (sha256 (base32 - "1jlc6dp3v90r1ra7r0jfw0xs8rylwdz9gymw4rd53h0p17cw1wnj")))) + "0mvwbnla0wd29bc7ckwpb494qv7p616cx8hnm0zg36np7v3zwy4w")))) (build-system dune-build-system) (propagated-inputs (list ocaml-astring ocaml-result)) @@ -7354,7 +7354,7 @@ defined in OCaml 4.12.0.") (define-public ocamlformat (package (name "ocamlformat") - (version "0.20.0") + (version "0.20.1") (source (origin (method git-fetch) @@ -7364,7 +7364,7 @@ defined in OCaml 4.12.0.") (file-name (git-file-name name version)) (sha256 (base32 - "0zhvhb8ky0danmfvp4vvbh0pg89d7r7ka6m3q81vlyvb7gk08r6r")))) + "1q78gxsz763d6vbi1lyfmn7733l10qhq80bchdli9zw7sggs7nq1")))) (build-system dune-build-system) (arguments '(#:package "ocamlformat" -- cgit v1.3 From a52ad7e8befc96fe32ecf413fd9830d84a5242ac Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Thu, 3 Feb 2022 14:19:53 +0100 Subject: gnu: ocaml-ocp-index: Update to 1.3.3. * gnu/packages/ocaml.scm (ocaml-ocp-index): Update to 1.3.3. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index c71102e124..b93a493dd9 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -2958,7 +2958,7 @@ This package includes: (define-public ocaml-ocp-index (package (name "ocaml-ocp-index") - (version "1.3.2") + (version "1.3.3") (source (origin (method git-fetch) @@ -2968,7 +2968,7 @@ This package includes: (file-name (git-file-name name version)) (sha256 (base32 - "0y7fk8s477f40vvbsp4ikxv1v51y6bzj416bh1sc3f17rbnczpkk")))) + "1gbigw5s2cafkr82n9vkxbb892qfkykj0adj0hrdkrkw8j6rfl0j")))) (build-system dune-build-system) (arguments `(#:package "ocp-index")) -- cgit v1.3 From 66c5d6e8d51a081e49a409d8be8ef0002f4b047c Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Thu, 3 Feb 2022 14:21:57 +0100 Subject: gnu: ocaml-fix: Update to 20220121. * gnu/packages/ocaml.scm (ocaml-fix): Update to 20220121. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index b93a493dd9..da8b2bc978 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -7289,7 +7289,7 @@ representation.") (define-public ocaml-fix (package (name "ocaml-fix") - (version "20211125") + (version "20220121") (source (origin (method git-fetch) @@ -7299,7 +7299,7 @@ representation.") (file-name (git-file-name name version)) (sha256 (base32 - "00vq2das1l8xca013z7z7jy5622fsy3jha2cj72psp22wx9199l1")))) + "15785v43jcbqsw1y653cnb89alrcnbdri1h0w6zl6p7769ja9rdj")))) (build-system dune-build-system) (arguments ;; No tests. -- cgit v1.3 From 643c2fb44b3c60017a4feaf6d3cfffb6efb1e789 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Thu, 3 Feb 2022 14:25:53 +0100 Subject: gnu: ocaml-bisect-ppx: Update to 2.7.1. * gnu/packages/ocaml.scm (ocaml-bisect-ppx): Update to 2.7.1. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index da8b2bc978..5f25f4341a 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -6703,7 +6703,7 @@ combinators.") (define-public ocaml-bisect-ppx (package (name "ocaml-bisect-ppx") - (version "2.6.1") + (version "2.7.1") (source (origin (method git-fetch) @@ -6713,7 +6713,7 @@ combinators.") (file-name (git-file-name name version)) (sha256 (base32 - "1knglw1b2kjr9jnd8cpfzmm581abxxdcx9l3cd2balg6gnac7qk1")))) + "02sn1a9anyksd2lpd9xryrxsx76xg99c7mx1mq6b5q09r9b060d4")))) (build-system dune-build-system) (propagated-inputs (list ocaml-ppxlib ocaml-cmdliner)) -- cgit v1.3 From 89d4cf2a873de9fd2b2c3afe011b0355fdf3f2c1 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Thu, 3 Feb 2022 16:30:18 +0100 Subject: gnu: ocaml-ounit2: Update to 2.2.5. * gnu/packages/ocaml.scm (ocaml-ounit2): Update to 2.2.5. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 5f25f4341a..f1ecfa70df 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1338,7 +1338,7 @@ compilers that can directly deal with packages.") (define-public ocaml-ounit2 (package (name "ocaml-ounit2") - (version "2.2.4") + (version "2.2.5") (source (origin (method git-fetch) (uri (git-reference @@ -1347,7 +1347,7 @@ compilers that can directly deal with packages.") (file-name (git-file-name name version)) (sha256 (base32 - "0gxjw1bhmjcjzri6x6psqrkbbyq678b69bqfl9i1zswp7cj2lryg")))) + "1frdfnal6zl46dq5vlxz1ks28bf9x57zgik2cc65izji0ymr7pis")))) (build-system dune-build-system) (propagated-inputs (list ocaml-lwt ocaml-stdlib-shims)) -- cgit v1.3 From ca79fc5b14ab3e0c98221fb55bc29cfa54973363 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Thu, 3 Feb 2022 16:36:09 +0100 Subject: gnu: ocaml-rresult: Update to 0.7.0. * gnu/packages/ocaml.scm (ocaml-rresult): Update to 0.7.0. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index f1ecfa70df..f955bdfd55 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -2006,14 +2006,14 @@ creation and publication procedures.") (define-public ocaml-rresult (package (name "ocaml-rresult") - (version "0.5.0") + (version "0.7.0") (source (origin (method url-fetch) (uri (string-append "http://erratique.ch/software/rresult/releases/" "rresult-" version ".tbz")) (sha256 (base32 - "1xxycxhdhaq8p9vhwi93s2mlxjwgm44fcxybx5vghzgbankz9yhm")))) + "0h2mjyzhay1p4k7n0mzaa7hlc7875kiy6m1i3r1n03j6hddpzahi")))) (build-system ocaml-build-system) (native-inputs (list opam ocamlbuild)) -- cgit v1.3 From 18a588773e21291452744263a0f641d01b75f22c Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Thu, 3 Feb 2022 16:43:15 +0100 Subject: gnu: ocaml-ctypes: Update to 0.20.0. * gnu/packages/ocaml.scm (ocaml-ctypes): Update to 0.20.0. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index f955bdfd55..fcfbe4c191 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -4209,7 +4209,7 @@ long and size_t whose sizes depend on the host platform.") (define-public ocaml-ctypes (package (name "ocaml-ctypes") - (version "0.19.1") + (version "0.20.0") (home-page "https://github.com/ocamllabs/ocaml-ctypes") (source (origin (method git-fetch) @@ -4219,7 +4219,7 @@ long and size_t whose sizes depend on the host platform.") (file-name (git-file-name name version)) (sha256 (base32 - "1xi1a486gssrb23zln3sf7zn0rmyl1k684bdf9iqkhgpz607fq6s")))) + "13mq6i08f217fj2lq55psji453nmqp136sjxhg25hjb2z0gv9gky")))) (build-system ocaml-build-system) (arguments `(#:make-flags -- cgit v1.3 From 877da38bd3f279d5618d6c6517f48b50541a1e4c Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Thu, 3 Feb 2022 17:57:55 +0100 Subject: gnu: ocaml-lwt: Update to 5.5.0. * gnu/packages/ocaml.scm (ocaml-lwt): Update to 5.5.0. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index fcfbe4c191..aa810f2414 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -2463,7 +2463,7 @@ for mapping files in memory. This function is the same as the (define-public ocaml-lwt (package (name "ocaml-lwt") - (version "5.4.2") + (version "5.5.0") (source (origin (method git-fetch) @@ -2472,7 +2472,7 @@ for mapping files in memory. This function is the same as the (commit version))) (file-name (git-file-name name version)) (sha256 (base32 - "1gkld5ms63lxkaa41jfg8y34qm5lb3ls6mkw03s760zln8i1k3gy")))) + "1jbjz2rsz3j56k8vh5qlmm87hhkr250bs2m3dvpy9vsri8rkzj9z")))) (build-system dune-build-system) (arguments `(#:package "lwt")) -- cgit v1.3 From 70f2207152793d74b78b66b04b66fbbdd4d7c620 Mon Sep 17 00:00:00 2001 From: Gabriel Wicki Date: Thu, 3 Feb 2022 19:38:57 +0100 Subject: gnu: i3-gaps: Update to 4.20.1. * gnu/packages/wm (i3-gaps): Update to 4.20.1. [source]: Use git-fetch. --- gnu/packages/wm.scm | 33 ++++++++++++++++++--------------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index 93040895bf..de67177730 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -49,6 +49,7 @@ ;;; Copyright © 2021 jgart ;;; Copyright © 2021 Disseminate Dissent ;;; Copyright © 2022 John Kehayias +;;; Copyright © 2022 Gabriel Wicki ;;; ;;; This file is part of GNU Guix. ;;; @@ -356,20 +357,22 @@ many programming languages.") (license license:bsd-3))) (define-public i3-gaps - (package (inherit i3-wm) - (name "i3-gaps") - (version "4.18.3") - (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/Airblader/i3/releases/download/" - version "/i3-" version ".tar.bz2")) - (sha256 - (base32 - "1hcakwyz78lgp8mhqv7pw86jlb3m415pfql1q19rkijnhm3fn3ci")))) - (home-page "https://github.com/Airblader/i3") - (synopsis "Tiling window manager with gaps") - (description "i3-gaps is a fork of i3wm, a tiling window manager + (package + (inherit i3-wm) + (name "i3-gaps") + (version "4.20.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Airblader/i3") + (commit version))) + (sha256 + (base32 + "0g0qmv2gpv9qbhj9h5f4c4vfs6ndzq2rblgx9md85iharwp5sbb9")))) + (home-page "https://github.com/Airblader/i3") + (synopsis "Tiling window manager with gaps") + (description + "i3-gaps is a fork of i3wm, a tiling window manager for X11. It is kept up to date with upstream, adding a few additional features such as gaps between windows. @@ -382,7 +385,7 @@ and optionally resized. i3 uses a plain-text configuration file, and can be extended and controlled from many programming languages.") - (license license:bsd-3))) + (license license:bsd-3))) (define-public i3lock (package -- cgit v1.3 From 752a5b8fe5c949627b7f68a2780549ba13276403 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Tue, 1 Feb 2022 18:42:52 +0100 Subject: gnu: LLVM: Add release-monitoring-url. * gnu/packages/llvm.scm (%llvm-release-monitoring-url): New variable. (clang-from-llvm, llvm-13, clang-runtime-13, lld, libcxx, libomp)[properties]: Add release-monitoring-url, and upstream-name where appropriate. --- gnu/packages/llvm.scm | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm index d042b4ec51..7ec69120a7 100644 --- a/gnu/packages/llvm.scm +++ b/gnu/packages/llvm.scm @@ -102,6 +102,9 @@ as \"x86_64-linux\"." (string-append "https://github.com/llvm/llvm-project/releases/download" "/llvmorg-" version "/" component "-" version ".src.tar.xz")) +(define %llvm-release-monitoring-url + "https://github.com/llvm/llvm-project/releases") + (define* (clang-runtime-from-llvm llvm hash #:optional (patches '())) (package @@ -150,6 +153,8 @@ functions for C and C++ programs. It also provides header files that allow C and C++ source code to interface with the \"sanitization\" passes of the clang compiler. In LLVM this library is called \"compiler-rt\".") (license (package-license llvm)) + (properties `((release-monitoring-url . ,%llvm-release-monitoring-url) + (upstream-name . "compiler-rt"))) ;; doesn't list MIPS as supported. (supported-systems (delete "mips64el-linux" %supported-systems)))) @@ -157,7 +162,9 @@ compiler. In LLVM this library is called \"compiler-rt\".") (define* (clang-from-llvm llvm clang-runtime hash #:key (patches '()) tools-extra (properties - (clang-properties (package-version llvm)))) + (append `((release-monitoring-url + . ,%llvm-release-monitoring-url)) + (clang-properties (package-version llvm))))) "Produce Clang with dependencies on LLVM and CLANG-RUNTIME, and applying the given PATCHES. When TOOLS-EXTRA is given, it must point to the 'clang-tools-extra' tarball, which contains code for 'clang-tidy', 'pp-trace', @@ -621,7 +628,8 @@ languages. It currently supports compilation of C and C++ programs, using front-ends derived from GCC 4.0.1. A new front-end for the C family of languages is in development. The compiler infrastructure includes mirror sets of programming tools as well as libraries with equivalent functionality.") - (license license:asl2.0))) + (license license:asl2.0) + (properties `((release-monitoring-url . ,%llvm-release-monitoring-url))))) (define-public clang-runtime-13 (clang-runtime-from-llvm @@ -1106,6 +1114,7 @@ of programming tools as well as libraries with equivalent functionality.") (synopsis "LLVM libunwind header files") (description "This package contains header files for the LLVM C++ unwinding library.") + (properties `((release-monitoring-url . ,%llvm-release-monitoring-url))) (license license:asl2.0))) ;with LLVM exceptions (define-public lld @@ -1134,6 +1143,7 @@ of programming tools as well as libraries with equivalent functionality.") (synopsis "Linker from the LLVM project") (description "LLD is a high-performance linker, built as a set of reusable components which highly leverage existing libraries in the larger LLVM Project.") + (properties `((release-monitoring-url . ,%llvm-release-monitoring-url))) (license license:asl2.0))) ; With LLVM exception (define-public lld-12 @@ -1219,6 +1229,7 @@ misuse of libraries outside of the store.") (description "LLDB is a high performance debugger built as a set of reusable components which highly leverage existing libraries in the larger LLVM project.") + (properties `((release-monitoring-url . ,%llvm-release-monitoring-url))) (license license:asl2.0))) ;with LLVM exceptions (define-public libcxx @@ -1257,6 +1268,7 @@ which highly leverage existing libraries in the larger LLVM project.") (description "This package provides an implementation of the C++ standard library for use with Clang, targeting C++11, C++14 and above.") + (properties `((release-monitoring-url . ,%llvm-release-monitoring-url))) (license license:expat))) ;; Libcxx files specifically used by PySide2. @@ -1432,6 +1444,8 @@ requirements according to version 1.1 of the OpenCL specification.") project for the OpenMP multi-theaded programming extension. This package notably provides @file{libgomp.so}, which is has a binary interface compatible with that of libgomp, the GNU Offloading and Multi Processing Library.") + (properties `((release-monitoring-url . ,%llvm-release-monitoring-url) + (upstream-name . "openmp"))) (license license:expat))) (define-public python-llvmlite -- cgit v1.3 From 7d90a6c847b4cdf51c462c53e57bafd6834afc60 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 3 Feb 2022 18:08:26 +0100 Subject: gnu: LLVM: Update to 13.0.1. * gnu/packages/llvm.scm (llvm-13, clang-runtime-13, clang-13, lld, libomp): Update to 13.0.1. --- gnu/packages/llvm.scm | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm index 7ec69120a7..acd56c3d92 100644 --- a/gnu/packages/llvm.scm +++ b/gnu/packages/llvm.scm @@ -567,14 +567,14 @@ output), and Binutils.") (define-public llvm-13 (package (name "llvm") - (version "13.0.0") + (version "13.0.1") (source (origin (method url-fetch) (uri (llvm-uri "llvm" version)) (sha256 (base32 - "081h2vw757j5xjg2441539j2vhfzzihrgxwza5pq5sj3hrq133a0")))) + "0d681xiixmx9inwvz14vi3xsznrcryk06a8rvk9cljiq5kc80szc")))) (build-system cmake-build-system) (outputs '("out" "opt-viewer")) (native-inputs @@ -634,11 +634,11 @@ of programming tools as well as libraries with equivalent functionality.") (define-public clang-runtime-13 (clang-runtime-from-llvm llvm-13 - "0gyvfhnypfmlf7hdgkiz2wh2lgk4nz26aqf361msjs3qdkbh4djc")) + "1z2xr9nn4mgc3hn9ark2k5y4wznpk47xppkp63bcbagr6589acvv")) (define-public clang-13 (clang-from-llvm llvm-13 clang-runtime-13 - "0zp1p6syii5iajm8v2c207s80arv00yz5ckfwimn5dng0sxiqqax" + "1j8pr5kk8iqyb4jds3yl7c6x672617h4ngkpl4575j7mk4nrwykq" #:patches '("clang-13.0-libc-search-path.patch") #:tools-extra (origin @@ -647,7 +647,7 @@ of programming tools as well as libraries with equivalent functionality.") (package-version llvm-13))) (sha256 (base32 - "1mgalgdgxlxi08yxw7k6yh4iia1bpjmjgn7mrpqas8lbl9h612s2"))))) + "1l4jjdqfl9hrh0fwzv27hc263zc6x61h09vs4ni3yla8i1cwhayc"))))) (define-public clang-toolchain-13 (make-clang-toolchain clang-13)) @@ -1120,13 +1120,13 @@ of programming tools as well as libraries with equivalent functionality.") (define-public lld (package (name "lld") - (version "13.0.0") + (version "13.0.1") (source (origin (method url-fetch) (uri (llvm-uri "lld" version)) (sha256 (base32 - "11lkwv4jy35z2f3zcpv7hbbk9v9gpavfvxlif8265zv4rl5r1l90")))) + "1yscckcszfr234k4svhybdbsnz6w65x8pldl6c2nhyxzx12zfsk6")))) (build-system cmake-build-system) (native-inputs ;; Note: check to see @@ -1413,13 +1413,13 @@ requirements according to version 1.1 of the OpenCL specification.") (define-public libomp (package (name "libomp") - (version "13.0.0") + (version "13.0.1") (source (origin (method url-fetch) (uri (llvm-uri "openmp" version)) (sha256 (base32 - "0g29bq6kqyaqwi7c2l3lndjc6z4pxsvcdhjmh9lkp99931xawc29")) + "0kvbr4j6ldpssiv7chgqra5y77n7jwbyxlwcl7z32v31f49jcybb")) (file-name (string-append "libomp-" version ".tar.xz")))) (build-system cmake-build-system) ;; XXX: Note this gets built with GCC because building with Clang itself -- cgit v1.3 From 3e6dcd1ee5ad47214b052ad7fda28908cf8ff514 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 3 Feb 2022 18:09:25 +0100 Subject: gnu: python-can: Update to 3.3.4. * gnu/packages/python-xyz.scm (python-can): Update to 3.3.4. [arguments]: Adjust version constraints. --- gnu/packages/python-xyz.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index b0374622f2..999003176d 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -2014,14 +2014,14 @@ class.") (define-public python-can (package (name "python-can") - (version "3.3.3") + (version "3.3.4") (source (origin (method url-fetch) (uri (pypi-uri "python-can" version)) (sha256 (base32 - "123lz1bl6xf3d0fvxzr4bg4884yg4m9s21z6xd2m68zhnbv9rmpc")))) + "0jclrvyxasaaxr0albq0kqrnrfqdgqxs7m2qw9nd8kfwg8xj4g1d")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases @@ -2030,7 +2030,8 @@ class.") (substitute* "setup.py" (("mock~=2\\.0") "mock") (("coverage<5") "coverage") - (("pytest~=4\\.3") "pytest") + (("pytest~=4\\.6") "pytest") + (("pytest-timeout~=1\\.3") "pytest-timeout") (("hypothesis~=4\\.56") "hypothesis")) #t)) (add-after 'unpack 'fix-broken-tests -- cgit v1.3 From 225deb5c4ed4d7f054629cb660289a2dfe20dfed Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 3 Feb 2022 18:16:51 +0100 Subject: gnu: python-febelfin-coda: Update to 0.2.0. * gnu/packages/python-xyz.scm (python-febelfin-coda): Update to 0.2.0. --- gnu/packages/python-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 999003176d..01c9ea3cf1 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -28195,13 +28195,13 @@ spreadsheet), CSV, TSV, XLS, XLSX (Microsoft Excel spreadsheet), and YAML.") (define-public python-febelfin-coda (package (name "python-febelfin-coda") - (version "0.1.0") + (version "0.2.0") (source (origin (method url-fetch) (uri (pypi-uri "febelfin-coda" version)) (sha256 - (base32 "10nf4hdwldqgdmh4g613vx55sbsw1x1yzpvs3crwlggbp75fjjfi")))) + (base32 "1isnf87gxlvfbmackv7b2c978vmnj7ij0v4svhyjl8pbb9hwjsvm")))) (build-system python-build-system) (home-page "https://coda.b2ck.com/") (synopsis "Module to parse Belgian CODA files") -- cgit v1.3 From c515f6926769f59717364b87e0bf8e99665fd0ae Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 3 Feb 2022 18:17:27 +0100 Subject: gnu: python-django: Update to 4.0.2 [fixes CVE-2022-22818, CVE-2022-23833]. * gnu/packages/django.scm (python-django-4.0): Update to 4.0.2. --- gnu/packages/django.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm index abec9e454f..61c839f842 100644 --- a/gnu/packages/django.scm +++ b/gnu/packages/django.scm @@ -53,13 +53,13 @@ (define-public python-django-4.0 (package (name "python-django") - (version "4.0.1") + (version "4.0.2") (source (origin (method url-fetch) (uri (pypi-uri "Django" version)) (sha256 (base32 - "11pg33ib43pvkflgvs5gs6c9zflhpxp8dvhd109swfscrjiyx194")))) + "0jlmxylag7dah9jl3wm2swnn9kbisx1gqnddfbh5kjifn67va3qi")))) (build-system python-build-system) (arguments '(#:phases -- cgit v1.3 From 69617470ceaeec8fb51351c7e7f5588240b8187e Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 3 Feb 2022 18:18:20 +0100 Subject: gnu: python-django@3: Update to 3.2.12 [fixes CVE-2022-22818, CVE-2022-23833]. * gnu/packages/django.scm (python-django-3.2): Update to 3.2.12. --- gnu/packages/django.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm index 61c839f842..59bf81bf09 100644 --- a/gnu/packages/django.scm +++ b/gnu/packages/django.scm @@ -140,13 +140,13 @@ to the @dfn{don't repeat yourself} (DRY) principle.") (define-public python-django-3.2 (package (inherit python-django-4.0) - (version "3.2.11") + (version "3.2.12") (source (origin (method url-fetch) (uri (pypi-uri "Django" version)) (sha256 (base32 - "0xbyl9fh9lk5hiwpw46s6hz98gs0fixrpq3myj5hh6vbbnz4mjb9")))) + "1qj1kvb6mk2f4b33n4n5l4rh5kqllrk2v0v076crxr83ay9ycwlp")))) (native-search-paths '()) ;no need for TZDIR (propagated-inputs (modify-inputs (package-propagated-inputs python-django-4.0) -- cgit v1.3 From 8bb91dcca01c22530a462588c182ebec6e1ded92 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 3 Feb 2022 18:18:43 +0100 Subject: gnu: python-django@2: Update to 2.2.27 [fixes CVE-2022-22818, CVE-2022-23833]. * gnu/packages/django.scm (python-django-2.2): Update to 2.2.27. --- gnu/packages/django.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm index 59bf81bf09..1161d3bc18 100644 --- a/gnu/packages/django.scm +++ b/gnu/packages/django.scm @@ -156,13 +156,13 @@ to the @dfn{don't repeat yourself} (DRY) principle.") (define-public python-django-2.2 (package (inherit python-django-3.2) - (version "2.2.26") + (version "2.2.27") (source (origin (method url-fetch) (uri (pypi-uri "Django" version)) (sha256 (base32 - "13siv3bcb2yrpzzsq2k0f1yc70ya8jkmaa5kc8x29ijjglk3g9fz")))) + "04y9knxd8v9jn54ws5rbdwxyq5im69kx009s7gl62axzn1371qqy")))) (native-inputs (modify-inputs (package-native-inputs python-django-3.2) (prepend ;; 2.2 requires Selenium for the test suite. -- cgit v1.3 From 07e4efae7b188100ee8d7cc37b0a3a1adc3cfe74 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 3 Feb 2022 18:33:08 +0100 Subject: gnu: pegtl: Update to 3.2.2. * gnu/packages/cpp.scm (pegtl): Update to 3.2.2. --- gnu/packages/cpp.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index ba54dbcda8..3c68cd86a0 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -955,7 +955,7 @@ Google's C++ code base.") (define-public pegtl (package (name "pegtl") - (version "2.8.3") + (version "3.2.2") (source (origin (method git-fetch) (uri (git-reference @@ -964,7 +964,7 @@ Google's C++ code base.") (file-name (git-file-name name version)) (sha256 (base32 - "17crgjfdx55imi2dqnz6xpvsxq07390yfgkz5nd2g77ydkvq9db3")))) + "1viwrlsw5nwvbv8d88mf5r77syapgxx3xm1kv5kmn6drw8jgsmzf")))) (build-system cmake-build-system) (home-page "https://github.com/taocpp/PEGTL") (synopsis "Parsing Expression Grammar template library") -- cgit v1.3 From 678c5bea3a27064ad000ec79cc1ad8b7e40a5241 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 3 Feb 2022 18:43:52 +0100 Subject: gnu: usbguard: Update to 1.0.0-55-g466f1f0. * gnu/packages/hardware.scm (usbguard): Update to 1.0.0-55-g466f1f0. [source]: Switch to GIT-FETCH. [arguments]: Add phase to patch bootstrap script. Delay patch-build-scripts. [native-inputs]: Add AUTOCONF, AUTOMAKE, and LIBTOOL. --- gnu/packages/hardware.scm | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/gnu/packages/hardware.scm b/gnu/packages/hardware.scm index a93db0be3f..8d8947e3c5 100644 --- a/gnu/packages/hardware.scm +++ b/gnu/packages/hardware.scm @@ -11,6 +11,7 @@ ;;; Copyright © 2021, 2022 John Kehayias ;;; Copyright © 2022 Zhu Zihao ;;; Copyright © 2022 Maxime Devos +;;; Copyright © 2022 Marius Bakke ;;; ;;; This file is part of GNU Guix. ;;; @@ -823,20 +824,28 @@ applications.") (define-public usbguard (package (name "usbguard") - (version "0.7.8") + ;; Note: Use a recent snapshot to get compatibility with newer system + ;; libraries. + (version "1.0.0-55-g466f1f0") (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/USBGuard/usbguard/releases/download/usbguard-" - version "/usbguard-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/USBGuard/usbguard") + (commit (string-append "usbguard-" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1il5immqfxh2cj8wn1bfk7l42inflzgjf07yqprpz7r3lalbxc25")))) + (base32 "0rc0213qsfap3sgx9m3m1kppxbjl2fdwmzlbn5rbmn1i33125dfi")))) (build-system gnu-build-system) (arguments `(#:phases (modify-phases %standard-phases - (add-after 'unpack 'patch-build-scripts + (add-after 'unpack 'patch-bootstrap-script + (lambda _ + ;; Don't attempt to fetch git submodules. + (substitute* "autogen.sh" + (("^git submodule.*") + "")))) + (add-after 'bootstrap 'patch-build-scripts (lambda* (#:key inputs #:allow-other-keys) (substitute* "configure" (("/usr/include/catch") @@ -887,6 +896,9 @@ applications.") ("libqb" ,libqb))) (native-inputs `(("asciidoc" ,asciidoc) + ("autoconf" ,autoconf) + ("automake" ,automake) + ("libtool" ,libtool) ("bash-completion" ,bash-completion) ("gdbus-codegen" ,glib "bin") ("umockdev" ,umockdev) -- cgit v1.3 From 0945e43bf71986f94b3ac2c77c9d434b28c2bb89 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 3 Feb 2022 18:51:02 +0100 Subject: gnu: usbguard: Remove input labels. * gnu/packages/hardware.scm (usbguard)[native-inputs, inputs]: Remove labels. [arguments]: Use SEARCH-INPUT-FILE and remove trailing #t's. --- gnu/packages/hardware.scm | 55 ++++++++++++++++++++++------------------------- 1 file changed, 26 insertions(+), 29 deletions(-) diff --git a/gnu/packages/hardware.scm b/gnu/packages/hardware.scm index 8d8947e3c5..0764818f6a 100644 --- a/gnu/packages/hardware.scm +++ b/gnu/packages/hardware.scm @@ -837,7 +837,7 @@ applications.") (base32 "0rc0213qsfap3sgx9m3m1kppxbjl2fdwmzlbn5rbmn1i33125dfi")))) (build-system gnu-build-system) (arguments - `(#:phases + '(#:phases (modify-phases %standard-phases (add-after 'unpack 'patch-bootstrap-script (lambda _ @@ -849,19 +849,17 @@ applications.") (lambda* (#:key inputs #:allow-other-keys) (substitute* "configure" (("/usr/include/catch") - (string-append (assoc-ref inputs "catch") "/include"))) + (dirname (search-input-file inputs "include/catch.hpp")))) ;; Do not create log directory. (substitute* "Makefile.in" ((".*/log/usbguard.*") "")) ;; Disable LDAP tests: they use 'sudo'. (substitute* "src/Tests/Makefile.in" - (("\\$\\(am__append_2\\)") "")) - #t)) + (("\\$\\(am__append_2\\)") "")))) (add-after 'install 'delete-static-library (lambda* (#:key outputs #:allow-other-keys) ;; It can't be direclty disabled since it's needed for the tests. (delete-file (string-append (assoc-ref outputs "out") - "/lib/libusbguard.a")) - #t)) + "/lib/libusbguard.a")))) (add-after 'install 'install-zsh-completion (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) @@ -869,8 +867,7 @@ applications.") (string-append out "/share/zsh/site-functions"))) (mkdir-p site-functions) (copy-file "scripts/usbguard-zsh-completion" - (string-append site-functions "/_usbguard")) - #t)))) + (string-append site-functions "/_usbguard")))))) #:make-flags (list (string-append "BASH_COMPLETION_DIR=" (assoc-ref %outputs "out") @@ -883,28 +880,28 @@ applications.") "--with-dbus" "--with-polkit"))) (inputs - `(("audit" ,audit) - ("catch" ,catch-framework) - ("dbus-glib" ,dbus-glib) - ("ldap" ,openldap) - ("libcap-ng" ,libcap-ng) - ("libseccomp" ,libseccomp) - ("libsodium" ,libsodium) - ("pegtl" ,pegtl) - ("polkit" ,polkit) - ("protobuf" ,protobuf) - ("libqb" ,libqb))) + (list audit + catch-framework + dbus-glib + openldap + libcap-ng + libseccomp + libsodium + pegtl + polkit + protobuf + libqb)) (native-inputs - `(("asciidoc" ,asciidoc) - ("autoconf" ,autoconf) - ("automake" ,automake) - ("libtool" ,libtool) - ("bash-completion" ,bash-completion) - ("gdbus-codegen" ,glib "bin") - ("umockdev" ,umockdev) - ("xmllint" ,libxml2) - ("xsltproc" ,libxslt) - ("pkg-config" ,pkg-config))) + (list asciidoc + autoconf + automake + libtool + bash-completion + `(,glib "bin") + umockdev + libxml2 + libxslt + pkg-config)) (home-page "https://usbguard.github.io") (synopsis "Helps to protect your computer against rogue USB devices (a.k.a. BadUSB)") (description "USBGuard is a software framework for implementing USB device -- cgit v1.3 From a5eb5dd57162ee4fc662494b566d0a3c1e515e92 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 3 Feb 2022 19:05:56 +0100 Subject: gnu: python-libsass: Fix build. * gnu/packages/python-xyz.scm (python-libsass)[arguments]: Add phase to appease sanity check. While here, make tests conditional and remove trailing #t. --- gnu/packages/python-xyz.scm | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 01c9ea3cf1..7493379cb6 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -12083,9 +12083,21 @@ specification.") (setenv "SYSTEM_SASS" (assoc-ref %build-inputs "libsass")) #t)) (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "pytest" "sasstests.py")))) + (add-after 'install 'delete-test (lambda* (#:key inputs outputs #:allow-other-keys) - (add-installed-pythonpath inputs outputs) - (invoke "pytest" "sasstests.py")))))) + ;; Delete sasstests.py because it attempts to open a file + ;; that is not installed when loaded, which breaks the sanity + ;; check. + (delete-file (string-append + (assoc-ref outputs "out") + "/lib/python" + (python-version + (dirname (dirname + (search-input-file inputs "bin/python")))) + "/site-packages/sasstests.py"))))))) (native-inputs (list python-pytest python-werkzeug)) (inputs -- cgit v1.3 From 3f0d01b2df782cbe875bf591242a331117604f1b Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 3 Feb 2022 19:10:22 +0100 Subject: gnu: python-libsass: Remove label usage. * gnu/packages/python-xyz.scm (python-libsass)[arguments]: Don't reference libsass, which turned out to be unnecessary. --- gnu/packages/python-xyz.scm | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 7493379cb6..a1fb9856d3 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -12075,13 +12075,11 @@ specification.") (base32 "1r0kgl7i6nnhgjl44sjw57k08gh2qr7l8slqih550dyxbf1akbxh")))) (build-system python-build-system) (arguments - `(#:phases + '(#:phases (modify-phases %standard-phases ;; Use Guix package of libsass instead of compiling from a checkout. (add-before 'build 'set-libsass - (lambda _ - (setenv "SYSTEM_SASS" (assoc-ref %build-inputs "libsass")) - #t)) + (lambda _ (setenv "SYSTEM_SASS" "indeed"))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? -- cgit v1.3 From 16701a3c1dfefabe12770b064be293425964117f Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 3 Feb 2022 19:29:35 +0100 Subject: gnu: b4: Fix build failure. * gnu/packages/version-control.scm (b4)[arguments]: Delete sanity-check phase. --- gnu/packages/version-control.scm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index e0bac5399a..c29de9cf2a 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -15,7 +15,7 @@ ;;; Copyright © 2017 Vasile Dumitrascu ;;; Copyright © 2017 Clément Lassieur ;;; Copyright © 2017, 2020 EuAndreh -;;; Copyright © 2017, 2018, 2020 Marius Bakke +;;; Copyright © 2017, 2018, 2020, 2022 Marius Bakke ;;; Copyright © 2017 Stefan Reichör ;;; Copyright © 2017, 2020 Oleg Pykhalov ;;; Copyright © 2018 Sou Bunnbu @@ -63,6 +63,7 @@ #:use-module ((guix licenses) #:prefix license:) #:use-module (guix utils) #:use-module (guix packages) + #:use-module (guix gexp) #:use-module (guix download) #:use-module (guix git-download) #:use-module (guix hg-download) @@ -2572,7 +2573,14 @@ based on a manifest file published by servers.") (("~=") ">=")) #t)))) (build-system python-build-system) - (arguments '(#:tests? #f)) ; No tests. + (arguments + (list #:tests? #f ;no tests + #:phases + #~(modify-phases %standard-phases + ;; XXX: dnspython attempts to read /etc/resolv.conf when loading + ;; resolver.py, which breaks the sanity check in dependent + ;; packages. This should rather be fixed in dnspython. + (delete 'sanity-check)))) (inputs (list python-dkimpy python-dnspython python-requests)) (home-page "https://git.kernel.org/pub/scm/utils/b4/b4.git") -- cgit v1.3 From 9396fef40998ba6b580b2d6c5c7b774b7a6ccd1e Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 3 Feb 2022 21:25:40 +0100 Subject: gnu: Add perl-date-range. * gnu/packages/perl.scm (perl-date-range): New variable. --- gnu/packages/perl.scm | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index d2c9d0d24e..069c2c6e2e 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -13,7 +13,7 @@ ;;; Copyright © 2016 Ben Woodcroft ;;; Copyright © 2016, 2020 Jan (janneke) Nieuwenhuizen ;;; Copyright © 2017 Raoul J.P. Bonnal -;;; Copyright © 2017, 2018, 2020, 2021 Marius Bakke +;;; Copyright © 2017, 2018, 2020-2022 Marius Bakke ;;; Copyright © 2017 Adriano Peluso ;;; Copyright © 2017, 2018–2021 Tobias Geerinckx-Rice ;;; Copyright © 2017 Leo Famulari @@ -2958,6 +2958,28 @@ operations, such as comparing two times, determining a date a given amount of time from another, or parsing international times.") (license (package-license perl)))) +(define-public perl-date-range + (package + (name "perl-date-range") + (version "1.41") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/T/TM/TMTM/" + "Date-Range-" version ".tar.gz")) + (sha256 + (base32 "1fa8v75pbplmkb3ff6k0hd1m80p9xgksf54xhw1ha70h5d4rg65z")))) + (build-system perl-build-system) + (propagated-inputs + (list perl-date-simple)) + (home-page "https://metacpan.org/dist/Date-Range") + (synopsis "Work with a range of dates") + (description + "@code{Date::Range} is a library to work with date ranges. It can +be used to determine whether a given date is in a particular range, or what +the overlap between two ranges are.") + (license license:gpl2+))) + (define-public perl-date-simple (package (name "perl-date-simple") -- cgit v1.3 From df0ad9560f5a42f2851501657a4c032fa125b88c Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 3 Feb 2022 21:27:09 +0100 Subject: gnu: python-translate-toolkit: Disable sanity check. * gnu/packages/python-xyz.scm (python-translate-toolkit)[arguments]: Add #:phases. --- gnu/packages/python-xyz.scm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index a1fb9856d3..46419e8ace 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -19251,7 +19251,12 @@ multitouch applications.") ;; TypeError: parse() missing 2 required positional arguments: 'tree' and ;; 'parse_funcs' ;; during test setup. - `(#:tests? #f)) + (list #:tests? #f + #:phases + #~(modify-phases %standard-phases + ;; translate-toolkit has many optional dependencies (see + ;; optional.txt), which the sanity check does not understand. + (delete 'sanity-check)))) (home-page "https://toolkit.translatehouse.org") (synopsis "Tools and API for translation and localization engineering") (description -- cgit v1.3 From ff093f5739a61e77b296feccc48d260b9bb574c0 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 3 Feb 2022 22:20:22 +0100 Subject: gnu: strongswan: Build with libsoup@2. * gnu/packages/vpn.scm (strongswan)[inputs]: Change from LIBSOUP to LIBSOUP-MINIMAL-2. --- gnu/packages/vpn.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm index 723dd5dcb6..7f1d10d1eb 100644 --- a/gnu/packages/vpn.scm +++ b/gnu/packages/vpn.scm @@ -382,7 +382,7 @@ endpoints.") gmp libcap libgcrypt - libsoup + libsoup-minimal-2 linux-pam openssl)) (native-inputs -- cgit v1.3 From 71d2bdfa9fce546e8d8d5103aee4e1096ce65ecf Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Fri, 4 Feb 2022 10:00:50 +0000 Subject: services: nar-herder: Support ttl and negative-ttl options. * gnu/services/guix.scm (): Add ttl and negative-ttl fields. (nar-herder-shepherd-services): Pass the ttl and negative-ttl values to the service. * doc/guix.texi (Guix Services): Document this. --- doc/guix.texi | 14 ++++++++++++++ gnu/services/guix.scm | 18 +++++++++++++++--- 2 files changed, 29 insertions(+), 3 deletions(-) diff --git a/doc/guix.texi b/doc/guix.texi index aaa7cbb66f..0cf865a672 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -33721,6 +33721,20 @@ Each criteria is specified by a string, then an equals sign, then another string. Currently, only one criteria is supported, checking if a nar is stored on another Nar Herder instance. +@item @code{ttl} (default: @code{#f}) +Produce @code{Cache-Control} HTTP headers that advertise a time-to-live +(TTL) of @var{ttl}. @var{ttl} must denote a duration: @code{5d} means 5 +days, @code{1m} means 1 month, and so on. + +This allows the user's Guix to keep substitute information in cache for +@var{ttl}. + +@item @code{negative-ttl} (default: @code{#f}) +Similarly produce @code{Cache-Control} HTTP headers to advertise the +time-to-live (TTL) of @emph{negative} lookups---missing store items, for +which the HTTP 404 code is returned. By default, no negative TTL is +advertised. + @end table @end deftp diff --git a/gnu/services/guix.scm b/gnu/services/guix.scm index 6a5b276b33..dc9bd8ad68 100644 --- a/gnu/services/guix.scm +++ b/gnu/services/guix.scm @@ -774,7 +774,12 @@ ca-certificates.crt file in the system profile." (default "none")) (storage-nar-removal-criteria nar-herder-configuration-storage-nar-removal-criteria - (default '()))) + (default '())) + (ttl nar-herder-configuration-ttl + (default #f)) + (negative-ttl nar-herder-configuration-negative-ttl + (default #f))) + (define (nar-herder-shepherd-services config) (match-record config @@ -782,7 +787,8 @@ ca-certificates.crt file in the system profile." mirror database database-dump host port - storage storage-limit storage-nar-removal-criteria) + storage storage-limit storage-nar-removal-criteria + ttl negative-ttl) (unless (or mirror storage) (error "nar-herder: mirror or storage must be set")) @@ -817,7 +823,13 @@ ca-certificates.crt file in the system profile." (match criteria ((k . v) (simple-format #f "~A=~A" k v)) (str str)))) - storage-nar-removal-criteria)) + storage-nar-removal-criteria) + #$@(if ttl + (list (string-append "--ttl=" ttl)) + '()) + #$@(if negative-ttl + (list (string-append "--negative-ttl=" negative-ttl)) + '())) #:user #$user #:group #$group #:pid-file "/var/run/nar-herder/pid" -- cgit v1.3 From a34d05f15b1bbd6a75a49baa02bd1a5bfec56dc0 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Fri, 4 Feb 2022 10:06:19 +0000 Subject: gnu: guix-build-coordinator: Update to 0-49.c5c1ff9. * gnu/packages/package-management.scm (guix-build-coordinator): Update to 0-49.c5c1ff9. --- gnu/packages/package-management.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm index 97be7f8293..ce3440c4cb 100644 --- a/gnu/packages/package-management.scm +++ b/gnu/packages/package-management.scm @@ -1261,8 +1261,8 @@ environments.") (license (list license:gpl3+ license:agpl3+ license:silofl1.1)))) (define-public guix-build-coordinator - (let ((commit "f8acb629075adba17c34538dc9d4f779a9359272") - (revision "48")) + (let ((commit "c5c1ff9fc8dcb24003569c0a37dcda6fcd1fbee2") + (revision "49")) (package (name "guix-build-coordinator") (version (git-version "0" revision commit)) @@ -1273,7 +1273,7 @@ environments.") (commit commit))) (sha256 (base32 - "1y0dbxldcmqsg0y40q0qq834pswfy0fggsb7lala31yaaxsl9g72")) + "0i20v4g1wai2g1wyvdpnrblhhfl1jakqc9z8l3g2br66kwn36rry")) (file-name (string-append name "-" version "-checkout")))) (build-system gnu-build-system) (arguments -- cgit v1.3 From 4f0b408be3e1dacd4e1a639e2c5bc950116fa154 Mon Sep 17 00:00:00 2001 From: jgart Date: Thu, 3 Feb 2022 20:17:09 -0500 Subject: gnu: dwm: Update to 6.3. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/suckless.scm (dwm): Update to 6.3. Signed-off-by: 宋文武 --- gnu/packages/suckless.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm index cfeb17e533..115070ae97 100644 --- a/gnu/packages/suckless.scm +++ b/gnu/packages/suckless.scm @@ -217,13 +217,13 @@ a custom raw video format with a simple container.") (define-public dwm (package (name "dwm") - (version "6.2") + (version "6.3") (source (origin (method url-fetch) (uri (string-append "https://dl.suckless.org/dwm/dwm-" version ".tar.gz")) (sha256 - (base32 "03hirnj8saxnsfqiszwl2ds7p0avg20izv9vdqyambks00p2x44p")))) + (base32 "1387lg370yrg7ssi3045di3904gkchxlza7rswgvl7wva8la1nms")))) (build-system gnu-build-system) (arguments `(#:tests? #f -- cgit v1.3 From 06f4dc2bf62a0fea7577bf917aa3a4cb6ca6b182 Mon Sep 17 00:00:00 2001 From: jgart Date: Thu, 3 Feb 2022 20:22:34 -0500 Subject: gnu: st: Update to 0.8.5. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/suckless.scm (st): Update to 0.8.5. Signed-off-by: 宋文武 --- gnu/packages/suckless.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm index 115070ae97..708eb2c338 100644 --- a/gnu/packages/suckless.scm +++ b/gnu/packages/suckless.scm @@ -357,14 +357,14 @@ numbers of user-defined menu items efficiently.") (define-public st (package (name "st") - (version "0.8.4") + (version "0.8.5") (source (origin (method url-fetch) (uri (string-append "https://dl.suckless.org/st/st-" version ".tar.gz")) (sha256 - (base32 "19j66fhckihbg30ypngvqc9bcva47mp379ch5vinasjdxgn3qbfl")))) + (base32 "0dxb8ksy4rcnhp5k54p7i7wwhm64ksmavf5wh90zfbyh7qh34s7a")))) (build-system gnu-build-system) (arguments `(#:tests? #f ; no tests -- cgit v1.3 From 9b709e332e68995fb1dda6893f4d86f50de27ab2 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Thu, 26 Aug 2021 16:14:37 +0300 Subject: gnu: mozjs-60: Add support for riscv64-linux. * gnu/packages/gnuzilla.scm (mozjs-60)[source]: Add patch. [arguments]: Add phase to update config scripts. [inputs]: Add config. * gnu/packages/patches/mozjs60-riscv64-support.patch: New file. * gnu/local.mk (dist_patch_DATA): Register it. --- gnu/local.mk | 1 + gnu/packages/gnuzilla.scm | 12 +- gnu/packages/patches/mozjs60-riscv64-support.patch | 122 +++++++++++++++++++++ 3 files changed, 134 insertions(+), 1 deletion(-) create mode 100644 gnu/packages/patches/mozjs60-riscv64-support.patch diff --git a/gnu/local.mk b/gnu/local.mk index dddda78efa..c284de9083 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1512,6 +1512,7 @@ dist_patch_DATA = \ %D%/packages/patches/mozjs38-shell-version.patch \ %D%/packages/patches/mozjs38-tracelogger.patch \ %D%/packages/patches/mozjs38-version-detection.patch \ + %D%/packages/patches/mozjs60-riscv64-support.patch \ %D%/packages/patches/mrrescue-support-love-11.patch \ %D%/packages/patches/mtools-mformat-uninitialized.patch \ %D%/packages/patches/mumps-build-parallelism.patch \ diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm index 1ee5248ced..d5d11b59d1 100644 --- a/gnu/packages/gnuzilla.scm +++ b/gnu/packages/gnuzilla.scm @@ -364,7 +364,8 @@ in C/C++.") (file-name (git-file-name "mozjs" version)) (sha256 (base32 - "1xl6avsj9gkgma71p56jzs7nasc767k3n1frnmri5pad4rj94bij")))) + "1xl6avsj9gkgma71p56jzs7nasc767k3n1frnmri5pad4rj94bij")) + (patches (search-patches "mozjs60-riscv64-support.patch")))) (arguments `(#:tests? #f ; FIXME: all tests pass, but then the check phase fails anyway. #:test-target "check-jstests" @@ -419,6 +420,14 @@ in C/C++.") (cons (string-append "--prefix=" out) configure-flags)) #t))) + (add-after 'unpack 'update-config-scripts + (lambda* (#:key native-inputs inputs #:allow-other-keys) + (for-each (lambda (file) + (install-file + (search-input-file + (or native-inputs inputs) + (string-append "/bin/" file)) "build/autoconf")) + '("config.guess" "config.sub")))) (add-after 'unpack 'disable-broken-tests (lambda _ ;; This test assumes that /bin exists and contains certain @@ -428,6 +437,7 @@ in C/C++.") (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake) + ("config" ,config) ("which" ,which) ("perl" ,perl) ("pkg-config" ,pkg-config) diff --git a/gnu/packages/patches/mozjs60-riscv64-support.patch b/gnu/packages/patches/mozjs60-riscv64-support.patch new file mode 100644 index 0000000000..c9fa2ba9b3 --- /dev/null +++ b/gnu/packages/patches/mozjs60-riscv64-support.patch @@ -0,0 +1,122 @@ +This is a combination of several upstream patches which weren't accepted. +They were proposed by Fedora for spidermonkey 52 and were ultimately +accepted years later after some changes for a later version. It was +adapted slightly from both sets of patches to apply cleanly to mozjs-60. + +https://bugzilla.mozilla.org/show_bug.cgi?id=1318905 +https://bug1318905.bmoattachments.org/attachment.cgi?id=8812602 +https://bug1318905.bmoattachments.org/attachment.cgi?id=8812603 +https://bug1318905.bmoattachments.org/attachment.cgi?id=8812604 +https://phabricator.services.mozilla.com/D78623 +https://phabricator.services.mozilla.com/D78624 +https://phabricator.services.mozilla.com/D78625 + + +diff --git a/build/moz.configure/init.configure b/build/moz.configure/init.configure +index 83b8d705..59131525 100644 +--- a/build/moz.configure/init.configure ++++ b/build/moz.configure/init.configure +@@ -676,6 +676,9 @@ def split_triplet(triplet, allow_unknown=False): + elif cpu == 'sh4': + canonical_cpu = 'sh4' + endianness = 'little' ++ elif cpu.startswith('riscv64'): ++ canonical_cpu = 'riscv64' ++ endianness = 'little' + elif allow_unknown: + canonical_cpu = cpu + endianness = 'unknown' +diff --git a/js/src/jit/AtomicOperations.h b/js/src/jit/AtomicOperations.h +index a8970b0d..6b947a3f 100644 +--- a/js/src/jit/AtomicOperations.h ++++ b/js/src/jit/AtomicOperations.h +@@ -375,7 +375,7 @@ AtomicOperations::isLockfreeJS(int32_t size) + # endif + #elif defined(__ppc__) || defined(__PPC__) + # include "jit/none/AtomicOperations-feeling-lucky.h" +-#elif defined(__sparc__) ++#elif defined(__sparc__) || defined(__riscv) + # include "jit/none/AtomicOperations-feeling-lucky.h" + #elif defined(__ppc64__) || defined(__PPC64__) || defined(__ppc64le__) || defined(__PPC64LE__) + # include "jit/none/AtomicOperations-feeling-lucky.h" +diff --git a/js/src/jit/none/AtomicOperations-feeling-lucky.h b/js/src/jit/none/AtomicOperations-feeling-lucky.h +index da572284..6ce40c89 100644 +--- a/js/src/jit/none/AtomicOperations-feeling-lucky.h ++++ b/js/src/jit/none/AtomicOperations-feeling-lucky.h +@@ -49,6 +49,12 @@ + # define GNUC_COMPATIBLE + #endif + ++#if defined(__riscv) && __riscv_xlen == 64 ++# define HAS_64BIT_ATOMICS ++# define HAS_64BIT_LOCKFREE ++# define GNUC_COMPATIBLE ++#endif ++ + #ifdef __sparc__ + # define GNUC_COMPATIBLE + # ifdef __LP64__ +diff --git a/js/src/jit/none/MacroAssembler-none.h b/js/src/jit/none/MacroAssembler-none.h +index 80143dc8..b430fedb 100644 +--- a/js/src/jit/none/MacroAssembler-none.h ++++ b/js/src/jit/none/MacroAssembler-none.h +@@ -402,6 +402,10 @@ class MacroAssemblerNone : public Assembler + #endif + }; + ++ struct AutoPrepareForPatching { ++ explicit AutoPrepareForPatching(MacroAssemblerNone&) {} ++ }; ++ + typedef MacroAssemblerNone MacroAssemblerSpecific; + + class ABIArgGenerator +diff --git a/mfbt/tests/TestPoisonArea.cpp b/mfbt/tests/TestPoisonArea.cpp +index 06c24ed0..c3fed0df 100644 +--- a/mfbt/tests/TestPoisonArea.cpp ++++ b/mfbt/tests/TestPoisonArea.cpp +@@ -160,6 +160,9 @@ + #elif defined __aarch64__ + #define RETURN_INSTR 0xd65f03c0 /* ret */ + ++#elif defined __riscv ++#define RETURN_INSTR 0x80828082 /* ret; ret */ ++ + #elif defined __ia64 + struct ia64_instr { uint32_t mI[4]; }; + static const ia64_instr _return_instr = +diff --git a/python/mozbuild/mozbuild/configure/constants.py b/python/mozbuild/mozbuild/configure/constants.py +index 33ae5a45..11a01d3b 100644 +--- a/python/mozbuild/mozbuild/configure/constants.py ++++ b/python/mozbuild/mozbuild/configure/constants.py +@@ -50,6 +50,7 @@ CPU_bitness = { + 'mips64': 64, + 'ppc': 32, + 'ppc64': 64, ++ 'riscv64': 64, + 's390': 32, + 's390x': 64, + 'sh4': 32, +@@ -82,6 +84,7 @@ CPU_preprocessor_checks = OrderedDict(( + ('s390', '__s390__'), + ('ppc64', '__powerpc64__'), + ('ppc', '__powerpc__'), ++ ('riscv64', '__riscv && __riscv_xlen == 64'), + ('Alpha', '__alpha__'), + ('hppa', '__hppa__'), + ('sparc64', '__sparc__ && __arch64__'), +diff --git a/python/mozbuild/mozbuild/test/configure/test_toolchain_configure.py b/python/mozbuild/mozbuild/test/configure/test_toolchain_configure.py +index cb7ff709..9da41adf 100755 +--- a/python/mozbuild/mozbuild/test/configure/test_toolchain_configure.py ++++ b/python/mozbuild/mozbuild/test/configure/test_toolchain_configure.py +@@ -1165,6 +1165,10 @@ class LinuxCrossCompileToolchainTest(BaseToolchainTest): + 'sh4-unknown-linux-gnu': little_endian + { + '__sh__': 1, + }, ++ 'riscv64-unknown-linux-gnu': little_endian + { ++ '__riscv': 1, ++ '__riscv_xlen': 64, ++ }, + } + + PLATFORMS['powerpc64le-unknown-linux-gnu'] = \ -- cgit v1.3 From 089a23bbb09e9ecd6641abe1a3186b0b78fdff83 Mon Sep 17 00:00:00 2001 From: Michael Rohleder Date: Thu, 3 Feb 2022 12:54:24 +0100 Subject: gnu: xfce4-cpufreq-plugin: Update to 1.2.7. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/xfce.scm (xfce4-cpufreq-plugin): Update to 1.2.7. Signed-off-by: 宋文武 --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 1f0ccb4d40..2b49d5d59c 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -1441,7 +1441,7 @@ precedence rules, and the following functions and common constants.") (define-public xfce4-cpufreq-plugin (package (name "xfce4-cpufreq-plugin") - (version "1.2.6") + (version "1.2.7") (source (origin (method url-fetch) (uri (string-append "https://archive.xfce.org/src/panel-plugins/" @@ -1450,7 +1450,7 @@ precedence rules, and the following functions and common constants.") "/xfce4-cpufreq-plugin-" version ".tar.bz2")) (sha256 (base32 - "19flmw9a3in0dq1hcfs5y452pcx1lkiym92xfkbjpgxaa79akpfd")))) + "1365pj6viij492hq4mw34w4390sfdrn94rdgm2r1f6gma1hzpm2s")))) (build-system gnu-build-system) (native-inputs (list intltool pkg-config)) -- cgit v1.3 From 3d969e230dde14aac8368e517f95386cd7583464 Mon Sep 17 00:00:00 2001 From: Michael Rohleder Date: Thu, 3 Feb 2022 12:54:15 +0100 Subject: gnu: xfce4-cpugraph-plugin: Update to 1.2.6. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/xfce.scm (xfce4-cpugraph-plugin): Update to 1.2.6. Signed-off-by: 宋文武 --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 2b49d5d59c..462736d63a 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -1308,7 +1308,7 @@ A plugin for the Xfce panel is also available.") (define-public xfce4-cpugraph-plugin (package (name "xfce4-cpugraph-plugin") - (version "1.2.5") + (version "1.2.6") (source (origin (method url-fetch) (uri (string-append "https://archive.xfce.org/src/panel-plugins/" @@ -1317,7 +1317,7 @@ A plugin for the Xfce panel is also available.") "/xfce4-cpugraph-plugin-" version ".tar.bz2")) (sha256 (base32 - "1c51qf93lr6kr2g4nil21rj1h3h5kp3k50n9hcxvcy9wz3bxpxn2")))) + "16dg8xdwzyy70sj8zkms3vnp0wdhmqbrq4fld1aah90qgkslcckp")))) (build-system gnu-build-system) (native-inputs (list intltool pkg-config)) -- cgit v1.3 From 84ca88e7563b7034c253b82628344b538ec5a370 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Fri, 4 Feb 2022 15:03:07 +0200 Subject: gnu: rcs: Update to 5.10.1. * gnu/packages/version-control.scm (rcs): Update to 5.10.1. [source]: Remove patch. * gnu/packages/patches/rcs-5.10.0-no-stdin.patch: Remove file. * gnu/local.mk (dist_patch_DATA): Remove it. --- gnu/local.mk | 1 - gnu/packages/patches/rcs-5.10.0-no-stdin.patch | 57 -------------------------- gnu/packages/version-control.scm | 9 ++-- 3 files changed, 4 insertions(+), 63 deletions(-) delete mode 100644 gnu/packages/patches/rcs-5.10.0-no-stdin.patch diff --git a/gnu/local.mk b/gnu/local.mk index c284de9083..f3487637ad 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1762,7 +1762,6 @@ dist_patch_DATA = \ %D%/packages/patches/raptor2-heap-overflow.patch \ %D%/packages/patches/ratpoints-sturm_and_rp_private.patch \ %D%/packages/patches/ratpoison-shell.patch \ - %D%/packages/patches/rcs-5.10.0-no-stdin.patch \ %D%/packages/patches/rct-add-missing-headers.patch \ %D%/packages/patches/readline-link-ncurses.patch \ %D%/packages/patches/readline-6.2-CVE-2014-2524.patch \ diff --git a/gnu/packages/patches/rcs-5.10.0-no-stdin.patch b/gnu/packages/patches/rcs-5.10.0-no-stdin.patch deleted file mode 100644 index 56edfe7b65..0000000000 --- a/gnu/packages/patches/rcs-5.10.0-no-stdin.patch +++ /dev/null @@ -1,57 +0,0 @@ -http://git.savannah.gnu.org/cgit/rcs.git/patch/?id=8883c4f5a29be18e9ea09bd27a7b660830de45bb - - -From 8883c4f5a29be18e9ea09bd27a7b660830de45bb Mon Sep 17 00:00:00 2001 -From: Thien-Thi Nguyen -Date: Fri, 23 Oct 2020 09:23:49 -0400 -Subject: [v] Don't test signal handling if stdin not ok. - - - -* tests/t632: If stdin is not open and connected to -a tty, skip the signal handling portion of the test. ---- - tests/ChangeLog | 9 +++++++++ - tests/t632 | 9 +++++++++ - 2 files changed, 18 insertions(+) - -diff --git a/tests/ChangeLog b/tests/ChangeLog -index c3715c0..0565058 100644 ---- a/tests/ChangeLog -+++ b/tests/ChangeLog -@@ -1,3 +1,12 @@ -+2020-10-23 Thien-Thi Nguyen -+ -+ [v] Don't test signal handling if stdin not ok. -+ -+ -+ -+ * t632: If stdin is not open and connected to -+ a tty, skip the signal handling portion of the test. -+ - 2020-10-20 Thien-Thi Nguyen - - Release: 5.10.0 -diff --git a/tests/t632 b/tests/t632 -index df6acc9..677ec8c 100644 ---- a/tests/t632 -+++ b/tests/t632 -@@ -40,6 +40,15 @@ echo | co -l -I $w \ - # (This is skipped if GNU coreutils timeout(1) is not available.) - ## - -+# -+# The timeout test needs co(1) to block on input. -+# If stdin is not open and connected to a tty, skip out. -+if test -t 0 ; then -+ echo STDIN OK -+else -+ exit 0 -+fi -+ - # TODO: Don't be lame! Pick one: - # (a) Mimic timeout(1) w/ sh commands. - # (b) Incorporate heart of timeout(1) into ./btdt and use that. --- -cgit v1.2.1 - diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index c29de9cf2a..aa7076b02d 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -2011,15 +2011,14 @@ projects, from individuals to large-scale enterprise operations.") (define-public rcs (package (name "rcs") - (version "5.10.0") + (version "5.10.1") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/rcs/rcs-" - version ".tar.xz")) + version ".tar.lz")) (sha256 (base32 - "1if5pa4iip2p70gljm54nggfdnsfjxa4cqz8fpj07lvsijary39s")) - (patches (search-patches "rcs-5.10.0-no-stdin.patch")))) + "1iac4d1dhsfy5zb0n3p605pihdq702v06r4g8vi8b2saf88gxpa3")))) (build-system gnu-build-system) (arguments `(#:phases (modify-phases %standard-phases @@ -2031,7 +2030,7 @@ projects, from individuals to large-scale enterprise operations.") (chmod "src/rcsfreeze" #o755) (install-file "src/rcsfreeze" bin) (install-file "man/rcsfreeze.1" man1))))))) - (native-inputs (list ed)) + (native-inputs (list ed lzip)) (home-page "https://www.gnu.org/software/rcs/") (synopsis "Per-file local revision control system") (description -- cgit v1.3 From da02518f374cfb5aaff5b880bc55ab187245676a Mon Sep 17 00:00:00 2001 From: jgart Date: Wed, 2 Feb 2022 16:46:53 -0500 Subject: gnu: Add emacs-ed-mode. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/emacs-xyz.scm (emacs-ed-mode): New variable. Signed-off-by: 宋文武 --- gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 8ce245c54a..521d003a6b 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -29992,6 +29992,31 @@ extended by the user via @code{setup-define}. A list of currently known local macros are documented in the docstring for @code{setup}.") (license license:gpl3+))) +(define-public emacs-ed-mode + ;; XXX: Upstream did not tag any commits yet. + (let ((commit "69f4fb34eca8df6a3bfe24bd8d8075551f0264ac") + (revision "0")) + (package + (name "emacs-ed-mode") + (version (git-version "0" revision commit)) + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/ryanprior/ed-mode") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "058siccx6znw1bcp820bll0jg300xz8w1wf97zr1fa6jwfxyhhvi")))) + (build-system emacs-build-system) + (home-page "https://github.com/ryanprior/ed-mode") + (synopsis "Emacs ed emulation") + (description +"@code{ed-mode} lets you interact with Emacs buffers like you would do +with the ed editor.") + (license license:gpl3+)))) + (define-public emacs-alsamixer-el (package (name "emacs-alsamixer-el") -- cgit v1.3 From 50f95a755c5488a2f5ed3f68c452e1a046e768fa Mon Sep 17 00:00:00 2001 From: jgart Date: Thu, 3 Feb 2022 21:07:08 -0500 Subject: gnu: python-mistletoe: Update to 0.8.1. * gnu/packages/markup.scm (python-mistletoe): Update to 0.8.1. Signed-off-by: Vinicius Monego --- gnu/packages/markup.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/markup.scm b/gnu/packages/markup.scm index bc8476e056..06849d05d9 100644 --- a/gnu/packages/markup.scm +++ b/gnu/packages/markup.scm @@ -9,6 +9,7 @@ ;;; Copyright © 2021 Noisytoot ;;; Copyright © 2021 Zhu Zihao ;;; Copyright © 2021 Petr Hodina +;;; Copyright © 2022 jgart ;;; ;;; This file is part of GNU Guix. ;;; @@ -439,13 +440,13 @@ with a few extensions.") (define-public python-mistletoe (package (name "python-mistletoe") - (version "0.7.2") + (version "0.8.1") (source (origin (method url-fetch) (uri (pypi-uri "mistletoe" version)) (sha256 - (base32 "18z6hqfnfjqnrcgfgl5pkj9ggf9yx0yyy94azcn1qf7hqn6g3l14")))) + (base32 "0h8ydzxlfzmspiz8lcm13qp720kfsxiky0qqnc2mxf4qzm16m326")))) (build-system python-build-system) (home-page "https://github.com/miyuchina/mistletoe") (synopsis "Extensible Markdown parser in pure Python") -- cgit v1.3 From de38ccf2e0bb2fd21393925c296b65dca7499bd3 Mon Sep 17 00:00:00 2001 From: Vinicius Monego Date: Fri, 4 Feb 2022 10:26:37 -0300 Subject: gnu: python-mistletoe: Run tests. * gnu/packages/markup.scm (python-mistletoe)[arguments]: Override the 'check phase. --- gnu/packages/markup.scm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gnu/packages/markup.scm b/gnu/packages/markup.scm index 06849d05d9..ce131a5835 100644 --- a/gnu/packages/markup.scm +++ b/gnu/packages/markup.scm @@ -10,6 +10,7 @@ ;;; Copyright © 2021 Zhu Zihao ;;; Copyright © 2021 Petr Hodina ;;; Copyright © 2022 jgart +;;; Copyright © 2022 Vinicius Monego ;;; ;;; This file is part of GNU Guix. ;;; @@ -448,6 +449,13 @@ with a few extensions.") (sha256 (base32 "0h8ydzxlfzmspiz8lcm13qp720kfsxiky0qqnc2mxf4qzm16m326")))) (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "python" "-m" "unittest" "discover" "test"))))))) (home-page "https://github.com/miyuchina/mistletoe") (synopsis "Extensible Markdown parser in pure Python") (description -- cgit v1.3 From 3e882e84667d8f072740c787f315df96683b1344 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 10:43:48 +0100 Subject: gnu: ocaml-mccs: Update to 1.1+13. * gnu/packages/ocaml.scm (ocaml-mccs): Update to 1.1+13. --- gnu/packages/ocaml.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index aa810f2414..591503c061 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -6,7 +6,7 @@ ;;; Copyright © 2016 Eric Bavier ;;; Copyright © 2016 Jan Nieuwenhuizen ;;; Copyright © 2016, 2018, 2019, 2020 Efraim Flashner -;;; Copyright © 2016-2021 Julien Lepiller +;;; Copyright © 2016-2022 Julien Lepiller ;;; Copyright © 2017 Ben Woodcroft ;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice ;;; Copyright © 2018 Peter Kreye @@ -620,7 +620,7 @@ Software distribution.") (define-public ocaml-mccs (package (name "ocaml-mccs") - (version "1.1+11") + (version "1.1+13") (source (origin (method git-fetch) (uri (git-reference @@ -629,7 +629,7 @@ Software distribution.") (file-name (git-file-name name version)) (sha256 (base32 - "1gsad5cj03256i36wdjqk5pg51pyd48rpjazf0gfaakrn8lk438g")))) + "15slv97jlvbaxj221wp4sjxk4lbdfyj9vcig0jwd4n54v89ksvib")))) (build-system dune-build-system) (propagated-inputs (list ocaml-cudf)) (home-page "https://www.i3s.unice.fr/~cpjm/misc/") -- cgit v1.3 From d782c633fa558356ff7ebed63e1644307c316039 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 10:46:25 +0100 Subject: gnu: ocaml-gen: Update to 1.0. * gnu/packages/ocaml.scm (ocaml-gen): Update to 1.0. --- gnu/packages/ocaml.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 591503c061..134f74625b 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -2665,22 +2665,22 @@ representation of the data.") (define-public ocaml-gen (package (name "ocaml-gen") - (version "0.5.3") + (version "1.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/c-cube/gen") - (commit version))) + (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 - "1jzrs0nsdk55annkd2zrk5svi61i3b1nk6qyqdc2y26vnzqvzfg8")))) + "1z5nw5wljvcqp8q07h336bbvf9paynia0jsdh4486hlkbmr1ask1")))) (build-system dune-build-system) (arguments `(#:package "gen" #:test-target ".")) (propagated-inputs - (list ocaml-odoc)) + (list ocaml-odoc ocaml-seq)) (native-inputs (list ocaml-qtest ocaml-qcheck)) (home-page "https://github.com/c-cube/gen/") -- cgit v1.3 From 84e304b56d6b42bdf03da837cf612e2407a38b41 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 10:48:33 +0100 Subject: gnu: ocaml-sedlex: Update to 2.5. * gnu/packages/ocaml.scm (ocaml-sedlex): Update to 2.5. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 134f74625b..74ecab8f74 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -2692,7 +2692,7 @@ and consumable.") (define-public ocaml-sedlex (package (name "ocaml-sedlex") - (version "2.4") + (version "2.5") (source (origin (method git-fetch) (uri (git-reference @@ -2701,7 +2701,7 @@ and consumable.") (file-name (git-file-name name version)) (sha256 (base32 - "13g8az4zqg6hrnxmy3qrasslppzlag13dd1dsr8vlpg2vpfmfv6i")))) + "062a5dvrzvb81l3a9phljrhxfw9nlb61q341q0a6xn65hll3z2wy")))) (build-system dune-build-system) (arguments `(#:tests? #f ; no tests -- cgit v1.3 From 5ce3d41d56e0c1b159e0a48f6e3f3164d2d3f2c8 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 10:54:16 +0100 Subject: gnu: ocaml-cohttp: Update to 5.0.0. * gnu/packages/ocaml.scm (ocaml-cohttp): Update to 5.0.0. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 74ecab8f74..711c873d25 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -7603,7 +7603,7 @@ up to OCaml 4.08.") (define-public ocaml-cohttp (package (name "ocaml-cohttp") - (version "4.0.0") + (version "5.0.0") (source (origin (method git-fetch) @@ -7613,7 +7613,7 @@ up to OCaml 4.08.") (file-name (git-file-name name version)) (sha256 (base32 - "02d7417yy1i62by368w3wyw3756047pbrw69spcvz3cd1z7vqaci")))) + "074xis3wmr76gadh1ffmfzjfx13mw4kr2s6rkwqwzcl6l85n9x2z")))) (build-system dune-build-system) (arguments '(#:package "cohttp" -- cgit v1.3 From 589c99e6f6ef17f30c541042768557a72706df47 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 10:56:33 +0100 Subject: gnu: ocaml-utop: Update to 2.9.0. * gnu/packages/ocaml.scm (ocaml-utop): Update to 2.9.0. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 711c873d25..fbdc5557e3 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -4135,7 +4135,7 @@ instead of bindings to a C library.") (define-public ocaml-utop (package (name "ocaml-utop") - (version "2.8.0") + (version "2.9.0") (source (origin (method git-fetch) @@ -4144,7 +4144,7 @@ instead of bindings to a C library.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1zf4hg33sblzh2f65vk0292jg4jlwa8702kfwpsg1kcg4w6nsfdp")))) + (base32 "1mdpqc1b67p5rm2jsbwy0gjjgdlfqcakjyh1cwdj959ykz4zy9ld")))) (build-system dune-build-system) (arguments `(#:test-target ".")) -- cgit v1.3 From 370da71d24ec99c66ca9eb6ce7e6848e1cb3c713 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 11:19:07 +0100 Subject: gnu: ocaml-batteries: Update to 3.5.0. * gnu/packages/ocaml.scm (ocaml-batteries): Update to 3.5.0. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index fbdc5557e3..fa51f08ac5 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -3170,7 +3170,7 @@ is used to determine whether the results truly differ.") (define-public ocaml-batteries (package (name "ocaml-batteries") - (version "3.4.0") + (version "3.5.0") (source (origin (method git-fetch) (uri (git-reference @@ -3179,7 +3179,7 @@ is used to determine whether the results truly differ.") (file-name (git-file-name name version)) (sha256 (base32 - "1cd7475n1mxhq482aidmhh27mq5p2vmb8d9fkb1mlza9pz5z66yq")))) + "1w2fb47vgifj4iws0s8r531n0p9khq92n7gwcs7caj5bbzfc5zdx")))) (build-system ocaml-build-system) (propagated-inputs (list ocaml-num)) (native-inputs -- cgit v1.3 From 8fb772bc064ea468a8def73ae40dd1c06d2f7095 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 11:35:56 +0100 Subject: gnu: ocaml-lwt-react: Update to 1.1.5. * gnu/packages/ocaml.scm (ocaml-lwt-react): Update to 1.1.5. --- gnu/packages/ocaml.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index fa51f08ac5..3e632e2be6 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -2494,17 +2494,17 @@ locks or other synchronization primitives.") (package (inherit ocaml-lwt) (name "ocaml-lwt-react") - (version "1.1.4") + (version "1.1.5") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/ocsigen/lwt") ;; Version from opam - (commit "5.4.0"))) + (commit "5.5.0"))) (file-name (git-file-name name version)) (sha256 (base32 - "1ay1zgadnw19r9hl2awfjr22n37l7rzxd9v73pjbahavwm2ay65d")))) + "1jbjz2rsz3j56k8vh5qlmm87hhkr250bs2m3dvpy9vsri8rkzj9z")))) (arguments `(#:package "lwt_react")) (properties `((upstream-name . "lwt_react"))) -- cgit v1.3 From bb5dfd6ede2dcb7134b69e06614fee31ed829de4 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 11:53:25 +0100 Subject: gnu: ocaml-sqlite3: Update to 5.1.0. * gnu/packages/ocaml.scm (ocaml-sqlite3): Update to 5.1.0. (ocaml4.07-sqlite3): Stay at 5.0.2. --- gnu/packages/ocaml.scm | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 3e632e2be6..d1e1d9965d 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -2036,7 +2036,7 @@ library.") (define-public ocaml-sqlite3 (package (name "ocaml-sqlite3") - (version "5.0.2") + (version "5.1.0") (source (origin (method git-fetch) @@ -2046,7 +2046,7 @@ library.") (file-name (git-file-name name version)) (sha256 (base32 - "15mmq7ak5facpfawfrc6hjz211gli7jab52iqdsihfvh790xm55f")))) + "1ksm0a490315sf0yy8lmva5f3bgr0jnllffanyq89431grpj6x15")))) (build-system dune-build-system) (properties `((ocaml4.07-variant . ,(delay ocaml4.07-sqlite3)))) (propagated-inputs @@ -2068,6 +2068,17 @@ coexistence with the old (version 2) SQLite and its OCaml wrapper (package-with-ocaml4.07 (package (inherit ocaml-sqlite3) + (version "5.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mmottl/sqlite3-ocaml") + (commit version))) + (file-name (git-file-name "ocaml-sqlite3" version)) + (sha256 + (base32 + "15mmq7ak5facpfawfrc6hjz211gli7jab52iqdsihfvh790xm55f")))) (arguments `(#:phases (modify-phases %standard-phases -- cgit v1.3 From 475b44c9a9b88e9f1b42fc2f29b60b61fc548a43 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 12:22:44 +0100 Subject: gnu: ocaml-base: Update to 0.14.3. * gnu/packages/ocaml.scm (ocaml-base): Update to 0.14.3. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index d1e1d9965d..909d9f8736 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -5051,7 +5051,7 @@ functionality for parsing and pretty-printing s-expressions.") (define-public ocaml-base (package (name "ocaml-base") - (version "0.14.1") + (version "0.14.3") (home-page "https://github.com/janestreet/base") (source (origin @@ -5062,7 +5062,7 @@ functionality for parsing and pretty-printing s-expressions.") (file-name (git-file-name name version)) (sha256 (base32 - "1hizjxmiqlj2zzkwplzjamw9rbnl0kh44sxgjpzdij99qnfkzylf")))) + "1cqpdpvhr4zns1lpdm2w0p6q400mc1z91hd716mb062ng83n2nsf")))) (build-system dune-build-system) (propagated-inputs (list ocaml-sexplib0)) -- cgit v1.3 From 1a97471939e28884dee4d239bea65aa8a68f58e2 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 13:01:39 +0100 Subject: gnu: ocaml-topkg: Update to 1.0.5. * gnu/packages/ocaml.scm (ocaml-topkg): Update to 1.0.5. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 909d9f8736..151499c3ef 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1976,14 +1976,14 @@ defined in this library.") (define-public ocaml-topkg (package (name "ocaml-topkg") - (version "1.0.4") + (version "1.0.5") (source (origin (method url-fetch) (uri (string-append "http://erratique.ch/software/topkg/releases/" "topkg-" version ".tbz")) (sha256 (base32 - "1kzw5cxkizcvh4rgzwgpjlj9hfxfk6yr686bxx6wrbsfs8as371k")))) + "1iyinmcfqpprk7k4cc51nqgypayprbj4larwcfqw86k5dri84825")))) (build-system ocaml-build-system) (native-inputs (list opam ocamlbuild)) -- cgit v1.3 From 8dfc0efd9245b881f7d19bcc54fc40f15b845ac2 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 13:05:02 +0100 Subject: gnu: ocaml-mdx: Update to 2.1.0. * gnu/packages/ocaml.scm (ocaml-mdx): Update to 2.1.0. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 151499c3ef..16eab94542 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -7008,7 +7008,7 @@ variants.") (define-public ocaml-mdx (package (name "ocaml-mdx") - (version "1.11.0") + (version "2.1.0") (source (origin (method git-fetch) (uri (git-reference @@ -7017,7 +7017,7 @@ variants.") (file-name (git-file-name name version)) (sha256 (base32 - "1w2vx4my9z6n57vjvsa3b9vwkbdzs1kq0cc58rf088qrh2lrx2ba")))) + "1w1givvhwv9jzj9zbg4mmlpb35sqi75w83r99p2z50bdr69fdf57")))) (build-system dune-build-system) (inputs (list ocaml-fmt -- cgit v1.3 From 13ac9e11adc22768d21f5f778250e01f5f516692 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 13:50:11 +0100 Subject: gnu: ocaml-pcre: Update to 7.5.0. * gnu/packages/ocaml.scm (ocaml-pcre): Update to 7.5.0. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 16eab94542..3199b84d39 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -3266,7 +3266,7 @@ hierarchy of modules.") (define-public ocaml-pcre (package (name "ocaml-pcre") - (version "7.4.6") + (version "7.5.0") (source (origin (method git-fetch) @@ -3276,7 +3276,7 @@ hierarchy of modules.") (file-name (git-file-name name version)) (sha256 (base32 - "11mck879p5zvkghps4ky8yslm0isgz52d84adl0dmcfxv2ibvcym")))) + "048k1rl17fcml000yh8fnghk1a06h14lbyrnk9nbigxsymrz6cq2")))) (build-system dune-build-system) (arguments ;; No tests. -- cgit v1.3 From 2cabfdfc86933bdc001453457b337d6f7b10aab9 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 14:06:09 +0100 Subject: gnu: ocaml-menhir: Update to 20211230. * gnu/packages/ocaml.scm (ocaml-menhir): Update to 20211230. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 3199b84d39..3c01ea6020 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1062,7 +1062,7 @@ Emacs.") (define-public ocaml-menhir (package (name "ocaml-menhir") - (version "20211012") + (version "20211230") (source (origin (method git-fetch) @@ -1071,7 +1071,7 @@ Emacs.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "08kf5apbv15n2kcr3qhyr3rvsf2lg25ackr3x9kfgiiqc0p3sz40")))) + (base32 "177gfp23gxc84j5pv2mqkza1ggg6rskvfwwjg229ba1457inayzs")))) (build-system dune-build-system) (inputs (list ocaml)) -- cgit v1.3 From 60356cc029b21eb2fd5660cac5476c8f64a2e00a Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 14:22:37 +0100 Subject: gnu: ocaml-ocurl: Update to 0.9.2. * gnu/packages/ocaml.scm (ocaml-ocurl): Update to 0.9.2. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 3c01ea6020..cd833b6073 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -3000,14 +3000,14 @@ and command-line tool.") (define-public ocaml-ocurl (package (name "ocaml-ocurl") - (version "0.9.1") + (version "0.9.2") (source (origin (method url-fetch) (uri (string-append "http://ygrek.org.ua/p/release/ocurl/ocurl-" version ".tar.gz")) (sha256 (base32 - "0n621cxb9012pj280c7821qqsdhypj8qy9qgrah79dkh6a8h2py6")))) + "0qvpsqbq4qbd397n0nlv9cwlqfyjw7gfb5mmq1awvnklr0c9fdg0")))) (build-system ocaml-build-system) (arguments `(#:phases -- cgit v1.3 From a041609a82af9384972581d337f31b2a988d478f Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 14:24:06 +0100 Subject: gnu: ocaml-parsexp: Update to 0.14.2. * gnu/packages/ocaml.scm (ocaml-parsexp): Update to 0.14.2. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index cd833b6073..e0fbab7de3 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -4965,7 +4965,7 @@ that was developed by Jane Street, the largest industrial user of OCaml.") (define-public ocaml-parsexp (package (name "ocaml-parsexp") - (version "0.14.1") + (version "0.14.2") (home-page "https://github.com/janestreet/parsexp") (source (origin (method git-fetch) @@ -4975,7 +4975,7 @@ that was developed by Jane Street, the largest industrial user of OCaml.") (file-name (git-file-name name version)) (sha256 (base32 - "1nr0ncb8l2mkk8pqzknr7fsqw5kpz8y102kyv5bc0x7c36v0d4zy")))) + "14yi0licf1cp6b7qny5pz6dmlalqdksx0m0kzcrwi6byjxwjkbi9")))) (build-system dune-build-system) (inputs (list ocaml-sexplib0 ocaml-base)) -- cgit v1.3 From d7e1c5acb3c8282c6a568d97ab164db82e33324f Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 16:43:38 +0100 Subject: gnu: ocaml-bigarray-compat: Update to 1.1.0. * gnu/packages/ocaml.scm (ocaml-bigarray-compat): Update to 1.1.0. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index e0fbab7de3..150ce3157f 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1092,7 +1092,7 @@ Knuth’s LR(1) parser construction technique.") (define-public ocaml-bigarray-compat (package (name "ocaml-bigarray-compat") - (version "1.0.0") + (version "1.1.0") (source (origin (method git-fetch) (uri (git-reference @@ -1101,7 +1101,7 @@ Knuth’s LR(1) parser construction technique.") (file-name (git-file-name name version)) (sha256 (base32 - "06j1dwlpisxshdd0nab4n4x266gg1s1n8na16lpgw3fvcznwnimz")))) + "0hif5baiwswdblymyfbxh9066pfqynlz5vj3b2brpn0a12k6i5fq")))) (build-system dune-build-system) (arguments `(#:tests? #f)); no tests -- cgit v1.3 From 8391a99d089322a39cbacb1e6dc2979d8b2ef7c9 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 18:28:01 +0100 Subject: nls: Update translations. * po/doc/guix-cookbook.pt_BR.po: New file. * po/doc/local.mk: Add it. * doc/local.mk: Add pt_BR cookbook. --- doc/local.mk | 3 +- po/doc/guix-cookbook.es.po | 9 +- po/doc/guix-cookbook.fr.po | 94 +- po/doc/guix-cookbook.ko.po | 48 +- po/doc/guix-cookbook.pt_BR.po | 4478 +++++++ po/doc/guix-cookbook.sk.po | 505 +- po/doc/guix-manual.de.po | 25726 ++++++++++++++++++++------------------- po/doc/guix-manual.es.po | 25659 ++++++++++++++++++++------------------- po/doc/guix-manual.fa.po | 25280 ++++++++++++++++++++------------------- po/doc/guix-manual.fi.po | 25301 ++++++++++++++++++++------------------- po/doc/guix-manual.fr.po | 25928 +++++++++++++++++++++------------------- po/doc/guix-manual.it.po | 25280 ++++++++++++++++++++------------------- po/doc/guix-manual.ko.po | 25319 ++++++++++++++++++++------------------- po/doc/guix-manual.pt_BR.po | 25509 ++++++++++++++++++++------------------- po/doc/guix-manual.ru.po | 25496 ++++++++++++++++++++------------------- po/doc/guix-manual.sk.po | 25781 ++++++++++++++++++++------------------- po/doc/guix-manual.zh_CN.po | 25381 ++++++++++++++++++++------------------- po/doc/local.mk | 1 + po/guix/cs.po | 1271 +- po/guix/da.po | 1292 +- po/guix/de.po | 1499 ++- po/guix/eo.po | 1281 +- po/guix/es.po | 2048 ++-- po/guix/fi.po | 1273 +- po/guix/fr.po | 1457 ++- po/guix/hu.po | 1283 +- po/guix/it.po | 1278 +- po/guix/ko.po | 1275 +- po/guix/nl.po | 1302 +- po/guix/oc.po | 1263 +- po/guix/pl.po | 1282 +- po/guix/pt_BR.po | 1360 ++- po/guix/ru.po | 1288 +- po/guix/si.po | 1258 +- po/guix/sk.po | 1543 +-- po/guix/sr.po | 1275 +- po/guix/ta.po | 1281 +- po/guix/vi.po | 1278 +- po/guix/zh_CN.po | 1282 +- po/packages/da.po | 3957 +++--- po/packages/de.po | 3949 +++--- po/packages/eo.po | 3953 +++--- po/packages/es.po | 3979 +++--- po/packages/fr.po | 4007 ++++--- po/packages/hu.po | 3950 +++--- po/packages/it.po | 3956 +++--- po/packages/ko.po | 3957 +++--- po/packages/nl.po | 3950 +++--- po/packages/oc.po | 3956 +++--- po/packages/pl.po | 3932 +++--- po/packages/pt_BR.po | 3932 +++--- po/packages/sk.po | 4020 ++++--- po/packages/sr.po | 3932 +++--- po/packages/zh_CN.po | 3953 +++--- 54 files changed, 198039 insertions(+), 175511 deletions(-) create mode 100644 po/doc/guix-cookbook.pt_BR.po diff --git a/doc/local.mk b/doc/local.mk index 9619971296..2f26cdceff 100644 --- a/doc/local.mk +++ b/doc/local.mk @@ -23,7 +23,7 @@ # If adding a language, update the following variables, and info_TEXINFOS. MANUAL_LANGUAGES = de es fa fi fr it ko pt_BR ru sk zh_CN -COOKBOOK_LANGUAGES = de es fa fi fr ko ru sk zh_Hans +COOKBOOK_LANGUAGES = de es fa fi fr ko pt_BR ru sk zh_Hans # Arg1: A list of languages codes. # Arg2: The file name stem. @@ -50,6 +50,7 @@ info_TEXINFOS = %D%/guix.texi \ %D%/guix-cookbook.fi.texi \ %D%/guix-cookbook.fr.texi \ %D%/guix-cookbook.ko.texi \ + %D%/guix-cookbook.pt_BR.texi \ %D%/guix-cookbook.ru.texi \ %D%/guix-cookbook.sk.texi \ %D%/guix-cookbook.zh_Hans.texi diff --git a/po/doc/guix-cookbook.es.po b/po/doc/guix-cookbook.es.po index db812655cc..9a43d98349 100644 --- a/po/doc/guix-cookbook.es.po +++ b/po/doc/guix-cookbook.es.po @@ -3,20 +3,21 @@ # This file is distributed under the same license as the guix manual package. # Reynaldo Cordero , 2021. # Emilio Herrera , 2021. +# Julien Lepiller , 2022. msgid "" msgstr "" "Project-Id-Version: guix manual checkout\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" "POT-Creation-Date: 2021-12-31 15:18+0000\n" -"PO-Revision-Date: 2021-10-31 16:05+0000\n" -"Last-Translator: Emilio Herrera \n" +"PO-Revision-Date: 2022-01-10 11:16+0000\n" +"Last-Translator: Julien Lepiller \n" "Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.8\n" +"X-Generator: Weblate 4.10.1\n" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:7 @@ -72,7 +73,7 @@ msgstr "Los desarrolladores de GNU Guix" #: guix-git/doc/guix-cookbook.texi:49 #, no-wrap msgid "Top" -msgstr "Arriba" +msgstr "Top" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:56 diff --git a/po/doc/guix-cookbook.fr.po b/po/doc/guix-cookbook.fr.po index 9ac8e6d5a1..b50dd9589a 100644 --- a/po/doc/guix-cookbook.fr.po +++ b/po/doc/guix-cookbook.fr.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE # Copyright (C) 2021 the authors of Guix (msgids) and the following authors (msgstr) # This file is distributed under the same license as the guix manual package. -# Julien Lepiller , 2021. +# Julien Lepiller , 2021, 2022. # Francois Polito , 2021. # tisse vert , 2021. msgid "" @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: guix manual checkout\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" "POT-Creation-Date: 2021-12-31 15:18+0000\n" -"PO-Revision-Date: 2021-12-25 14:16+0000\n" +"PO-Revision-Date: 2022-01-30 10:16+0000\n" "Last-Translator: Julien Lepiller \n" "Language-Team: French \n" "Language: fr\n" @@ -1976,7 +1976,7 @@ msgstr "La procédure doit renvoyer @code{#true} si elle réussit. S'appuyer sur #: guix-git/doc/guix-cookbook.texi:1101 #, no-wrap msgid "Code staging" -msgstr "Échelonnage de code" +msgstr "Échelonnage du code" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1107 @@ -2617,18 +2617,7 @@ msgstr "Le paquet du noyau @code{linux-libre} est en fait une procédure qui cr #. type: lisp #: guix-git/doc/guix-cookbook.texi:1442 -#, fuzzy, no-wrap -#| msgid "" -#| "(define* (make-linux-libre version hash supported-systems\n" -#| " #:key\n" -#| " ;; A function that takes an arch and a variant.\n" -#| " ;; See kernel-config for an example.\n" -#| " (extra-version #false)\n" -#| " (configuration-file #false)\n" -#| " (defconfig \"defconfig\")\n" -#| " (extra-options %default-extra-linux-options)\n" -#| " (patches (list %boot-logo-patch)))\n" -#| " ...)\n" +#, no-wrap msgid "" "(define* (make-linux-libre* version gnu-revision source supported-systems\n" " #:key\n" @@ -2640,34 +2629,24 @@ msgid "" " (extra-options %default-extra-linux-options))\n" " ...)\n" msgstr "" -"(define* (make-linux-libre version hash supported-systems\n" -" #:key\n" -" ;; A function that takes an arch and a variant.\n" -" ;; See kernel-config for an example.\n" -" (extra-version #false)\n" -" (configuration-file #false)\n" -" (defconfig \"defconfig\")\n" -" (extra-options %default-extra-linux-options)\n" -" (patches (list %boot-logo-patch)))\n" +"(define* (make-linux-libre* version gnu-revision source supported-systems\n" +" #:key\n" +" (extra-version #f)\n" +" ;; Un fonction qui prend une architecture et une variante\n" +" ;; Voir kernel-config si vous voulez un exemple.\n" +" (configuration-file #f)\n" +" (defconfig \"defconfig\")\n" +" (extra-options %default-extra-linux-options))\n" " ...)\n" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1446 -#, fuzzy -#| msgid "The current @code{linux-libre} package is for the 5.1.x series, and is declared like this:" msgid "The current @code{linux-libre} package is for the 5.15.x series, and is declared like this:" -msgstr "Le paquet @code{linux-libre} actuel pour la série 5.1.x, est déclaré comme ceci :" +msgstr "Le paquet @code{linux-libre} actuel pour la série 5.15.x, est déclaré comme ceci :" #. type: lisp #: guix-git/doc/guix-cookbook.texi:1454 -#, fuzzy, no-wrap -#| msgid "" -#| "(define-public linux-libre\n" -#| " (make-linux-libre %linux-libre-version\n" -#| " %linux-libre-hash\n" -#| " '(\"x86_64-linux\" \"i686-linux\" \"armhf-linux\" \"aarch64-linux\")\n" -#| " #:patches %linux-libre-5.1-patches\n" -#| " #:configuration-file kernel-config))\n" +#, no-wrap msgid "" "(define-public linux-libre-5.15\n" " (make-linux-libre* linux-libre-5.15-version\n" @@ -2676,19 +2655,17 @@ msgid "" " '(\"x86_64-linux\" \"i686-linux\" \"armhf-linux\" \"aarch64-linux\" \"riscv64-linux\")\n" " #:configuration-file kernel-config))\n" msgstr "" -"(define-public linux-libre\n" -" (make-linux-libre %linux-libre-version\n" -" %linux-libre-hash\n" -" '(\"x86_64-linux\" \"i686-linux\" \"armhf-linux\" \"aarch64-linux\")\n" -" #:patches %linux-libre-5.1-patches\n" -" #:configuration-file kernel-config))\n" +"(define-public linux-libre-5.15\n" +" (make-linux-libre* linux-libre-5.15-version\n" +" linux-libre-5.15-gnu-revision\n" +" linux-libre-5.15-source\n" +" '(\"x86_64-linux\" \"i686-linux\" \"armhf-linux\" \"aarch64-linux\" \"riscv64-linux\")\n" +" #:configuration-file kernel-config))\n" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1461 -#, fuzzy -#| msgid "Any keys which are not assigned values inherit their default value from the @code{make-linux-libre} definition. When comparing the two snippets above, you may notice that the code comment in the first doesn't actually refer to the @code{#:extra-version} keyword; it is actually for @code{#:configuration-file}. Because of this, it is not actually easy to include a custom kernel configuration from the definition, but don't worry, there are other ways to work with what we do have." msgid "Any keys which are not assigned values inherit their default value from the @code{make-linux-libre} definition. When comparing the two snippets above, notice the code comment that refers to @code{#:configuration-file}. Because of this, it is not actually easy to include a custom kernel configuration from the definition, but don't worry, there are other ways to work with what we do have." -msgstr "Les clés qui n'ont pas de valeur associée prennent leur valeur par défaut dans la définition de @code{make-linux-libre}. Lorsque vous comparez les deux bouts de code ci-dessus, vous aurez remarqué que le commentaire du premier ne correspond pas au mot-clé @code{#:extra-version}, mais à @code{#:configuration-file}. À cause de cela, il n'est pas facile d'inclure une configuration personnalisée du noyau à partir de la définition, mais ne vous inquiétez pas, il y a d'autres moyens de travailler avec ce qu'on a." +msgstr "Les clés qui n'ont pas de valeur associée prennent leur valeur par défaut dans la définition de @code{make-linux-libre}. Lorsque vous comparez les deux bouts de code ci-dessus, remarquez le commentaire qui correspond à @code{#:configuration-file}. À cause de cela, il n'est pas facile d'inclure une configuration personnalisée du noyau à partir de la définition, mais ne vous inquiétez pas, il y a d'autres moyens de travailler avec ce qu'on a." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1467 @@ -2882,17 +2859,7 @@ msgstr "" #. type: lisp #: guix-git/doc/guix-cookbook.texi:1569 -#, fuzzy, no-wrap -#| msgid "" -#| "(define-public linux-libre-macbook41\n" -#| " ;; XXX: Access the internal 'make-linux-libre' procedure, which is\n" -#| " ;; private and unexported, and is liable to change in the future.\n" -#| " ((@@@@ (gnu packages linux) make-linux-libre) (@@@@ (gnu packages linux) %linux-libre-version)\n" -#| " (@@@@ (gnu packages linux) %linux-libre-hash)\n" -#| " '(\"x86_64-linux\")\n" -#| " #:extra-version \"macbook41\"\n" -#| " #:patches (@@@@ (gnu packages linux) %linux-libre-5.1-patches)\n" -#| " #:extra-options %macbook41-config-options))\n" +#, no-wrap msgid "" "(define-public linux-libre-macbook41\n" " ;; XXX: Access the internal 'make-linux-libre*' procedure, which is\n" @@ -2906,14 +2873,15 @@ msgid "" " #:extra-options %macbook41-config-options))\n" msgstr "" "(define-public linux-libre-macbook41\n" -" ;; XXX: Access the internal 'make-linux-libre' procedure, which is\n" -" ;; private and unexported, and is liable to change in the future.\n" -" ((@@@@ (gnu packages linux) make-linux-libre) (@@@@ (gnu packages linux) %linux-libre-version)\n" -" (@@@@ (gnu packages linux) %linux-libre-hash)\n" -" '(\"x86_64-linux\")\n" -" #:extra-version \"macbook41\"\n" -" #:patches (@@@@ (gnu packages linux) %linux-libre-5.1-patches)\n" -" #:extra-options %macbook41-config-options))\n" +" ;; XXX: Accède à la procédure interne « make-linux-libre* », qui est privée\n" +" ;; et n'est pas exportée, et pourrait changer dans le futur.\n" +" ((@@@@ (gnu packages linux) make-linux-libre*)\n" +" (@@@@ (gnu packages linux) linux-libre-version)\n" +" (@@@@ (gnu packages linux) linux-libre-gnu-revision)\n" +" (@@@@ (gnu packages linux) linux-libre-source)\n" +" '(\"x86_64-linux\")\n" +" #:extra-version \"macbook41\"\n" +" #:extra-options %macbook41-config-options))\n" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1576 diff --git a/po/doc/guix-cookbook.ko.po b/po/doc/guix-cookbook.ko.po index e125ca6c9b..6b32a3d1bf 100644 --- a/po/doc/guix-cookbook.ko.po +++ b/po/doc/guix-cookbook.ko.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE # Copyright (C) 2021 the authors of Guix (msgids) and the following authors (msgstr) # This file is distributed under the same license as the guix manual package. -# simmon , 2021. +# simmon , 2021, 2022. msgid "" msgstr "" "Project-Id-Version: guix manual checkout\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" "POT-Creation-Date: 2021-12-31 15:18+0000\n" -"PO-Revision-Date: 2021-12-19 16:16+0000\n" +"PO-Revision-Date: 2022-02-01 06:16+0000\n" "Last-Translator: simmon \n" "Language-Team: Korean \n" "Language: ko\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.10\n" +"X-Generator: Weblate 4.10.1\n" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:7 @@ -2237,22 +2237,7 @@ msgstr "" #. type: lisp #: guix-git/doc/guix-cookbook.texi:1285 -#, fuzzy, no-wrap -#| msgid "" -#| "(define-public adwaita-icon-theme\n" -#| " (package (inherit gnome-icon-theme)\n" -#| " (name \"adwaita-icon-theme\")\n" -#| " (version \"3.26.1\")\n" -#| " (source (origin\n" -#| " (method url-fetch)\n" -#| " (uri (string-append \"mirror://gnome/sources/\" name \"/\"\n" -#| " (version-major+minor version) \"/\"\n" -#| " name \"-\" version \".tar.xz\"))\n" -#| " (sha256\n" -#| " (base32\n" -#| " \"17fpahgh5dyckgz7rwqvzgnhx53cx9kr2xw0szprc6bnqy977fi8\"))))\n" -#| " (native-inputs\n" -#| " `((\"gtk-encode-symbolic-svg\" ,gtk+ \"bin\")))))\n" +#, no-wrap msgid "" "(define-public adwaita-icon-theme\n" " (package (inherit gnome-icon-theme)\n" @@ -2269,19 +2254,18 @@ msgid "" " (native-inputs (list `(,gtk+ \"bin\")))))\n" msgstr "" "(define-public adwaita-icon-theme\n" -" (package (inherit gnome-icon-theme)\n" -" (name \"adwaita-icon-theme\")\n" -" (version \"3.26.1\")\n" -" (source (origin\n" -" (method url-fetch)\n" -" (uri (string-append \"mirror://gnome/sources/\" name \"/\"\n" -" (version-major+minor version) \"/\"\n" -" name \"-\" version \".tar.xz\"))\n" -" (sha256\n" -" (base32\n" -" \"17fpahgh5dyckgz7rwqvzgnhx53cx9kr2xw0szprc6bnqy977fi8\"))))\n" -" (native-inputs\n" -" `((\"gtk-encode-symbolic-svg\" ,gtk+ \"bin\")))))\n" +" (package (inherit gnome-icon-theme)\n" +" (name \"adwaita-icon-theme\")\n" +" (version \"3.26.1\")\n" +" (source (origin\n" +" (method url-fetch)\n" +" (uri (string-append \"mirror://gnome/sources/\" name \"/\"\n" +" (version-major+minor version) \"/\"\n" +" name \"-\" version \".tar.xz\"))\n" +" (sha256\n" +" (base32\n" +" \"17fpahgh5dyckgz7rwqvzgnhx53cx9kr2xw0szprc6bnqy977fi8\"))))\n" +" (native-inputs (list `(,gtk+ \"bin\")))))\n" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1290 diff --git a/po/doc/guix-cookbook.pt_BR.po b/po/doc/guix-cookbook.pt_BR.po new file mode 100644 index 0000000000..7f6d33f76c --- /dev/null +++ b/po/doc/guix-cookbook.pt_BR.po @@ -0,0 +1,4478 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) 2021 the authors of Guix (msgids) and the following authors (msgstr) +# This file is distributed under the same license as the guix manual package. +# Rafael Fontenelle , 2021. +# Camila Flores Granella , 2022. +# Fábio Rodrigues Ribeiro , 2022. +msgid "" +msgstr "" +"Project-Id-Version: guix manual checkout\n" +"Report-Msgid-Bugs-To: bug-guix@gnu.org\n" +"POT-Creation-Date: 2021-12-31 15:18+0000\n" +"PO-Revision-Date: 2022-01-25 15:16+0000\n" +"Last-Translator: Fábio Rodrigues Ribeiro \n" +"Language-Team: Portuguese (Brazil) \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.10.1\n" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:7 +#, fuzzy +msgid "@documentencoding UTF-8" +msgstr "" +"@documentencoding UTF-8\n" +"@documentlanguage pt_BR\n" +"@frenchspacing on" + +#. type: top +#: guix-git/doc/guix-cookbook.texi:7 guix-git/doc/guix-cookbook.texi:36 +#: guix-git/doc/guix-cookbook.texi:50 +#, no-wrap +msgid "GNU Guix Cookbook" +msgstr "" + +#. type: copying +#: guix-git/doc/guix-cookbook.texi:21 +msgid "Copyright @copyright{} 2019 Ricardo Wurmus@* Copyright @copyright{} 2019 Efraim Flashner@* Copyright @copyright{} 2019 Pierre Neidhardt@* Copyright @copyright{} 2020 Oleg Pykhalov@* Copyright @copyright{} 2020 Matthew Brooks@* Copyright @copyright{} 2020 Marcin Karpezo@* Copyright @copyright{} 2020 Brice Waegeneire@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020 Christine Lemmer-Webber@* Copyright @copyright{} 2021 Joshua Branson@*" +msgstr "" + +#. type: copying +#: guix-git/doc/guix-cookbook.texi:28 +msgid "Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled ``GNU Free Documentation License''." +msgstr "Permissão concedida para copiar, distribuir e/ou modificar este documento sob os termos da Licença de Documentação Livre GNU, Versão 1.3 ou qualquer versão mais recente publicada pela Free Software Foundation; sem Seções Invariantes, Textos de Capa Frontal, e sem Textos de Contracapa. Uma cópia da licença está incluída na seção intitulada ``GNU Free Documentation License''." + +#. type: dircategory +#: guix-git/doc/guix-cookbook.texi:30 +#, no-wrap +msgid "System administration" +msgstr "Administração de Sistemas" + +#. type: menuentry +#: guix-git/doc/guix-cookbook.texi:33 +msgid "Guix cookbook: (guix-cookbook)" +msgstr "" + +#. type: menuentry +#: guix-git/doc/guix-cookbook.texi:33 +msgid "Tutorials and examples for GNU Guix." +msgstr "" + +#. type: subtitle +#: guix-git/doc/guix-cookbook.texi:37 +#, no-wrap +msgid "Tutorials and examples for using the GNU Guix Functional Package Manager" +msgstr "" + +#. type: author +#: guix-git/doc/guix-cookbook.texi:38 +#, no-wrap +msgid "The GNU Guix Developers" +msgstr "Os desenvolvedores do GNU Guix" + +#. type: node +#: guix-git/doc/guix-cookbook.texi:49 +#, no-wrap +msgid "Top" +msgstr "Top" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:56 +msgid "This document presents tutorials and detailed examples for GNU@tie{}Guix, a functional package management tool written for the GNU system. Please @pxref{Top,,, guix, GNU Guix reference manual} for details about the system, its API, and related concepts." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:66 +msgid "This manual is also available in French (@pxref{Top,,, guix-cookbook.fr, Livre de recettes de GNU Guix}) and German (@pxref{Top,,, guix-cookbook.de, GNU-Guix-Kochbuch}). If you would like to translate this document in your native language, consider joining @uref{https://translate.fedoraproject.org/projects/guix/documentation-cookbook, Weblate} (@pxref{Translating Guix,,, guix, GNU Guix reference manual})." +msgstr "" + +#. type: chapter +#: guix-git/doc/guix-cookbook.texi:73 guix-git/doc/guix-cookbook.texi:82 +#: guix-git/doc/guix-cookbook.texi:98 guix-git/doc/guix-cookbook.texi:99 +#, no-wrap +msgid "Scheme tutorials" +msgstr "" + +#. type: menuentry +#: guix-git/doc/guix-cookbook.texi:73 +msgid "Meet your new favorite language!" +msgstr "" + +#. type: chapter +#: guix-git/doc/guix-cookbook.texi:73 guix-git/doc/guix-cookbook.texi:86 +#: guix-git/doc/guix-cookbook.texi:305 guix-git/doc/guix-cookbook.texi:306 +#, no-wrap +msgid "Packaging" +msgstr "" + +#. type: menuentry +#: guix-git/doc/guix-cookbook.texi:73 +msgid "Packaging tutorials" +msgstr "" + +#. type: chapter +#: guix-git/doc/guix-cookbook.texi:73 guix-git/doc/guix-cookbook.texi:90 +#: guix-git/doc/guix-cookbook.texi:1340 guix-git/doc/guix-cookbook.texi:1341 +#, no-wrap +msgid "System Configuration" +msgstr "Configuração do sistema" + +#. type: menuentry +#: guix-git/doc/guix-cookbook.texi:73 +msgid "Customizing the GNU System" +msgstr "" + +#. type: chapter +#: guix-git/doc/guix-cookbook.texi:73 guix-git/doc/guix-cookbook.texi:2436 +#: guix-git/doc/guix-cookbook.texi:2437 +#, no-wrap +msgid "Advanced package management" +msgstr "" + +#. type: menuentry +#: guix-git/doc/guix-cookbook.texi:73 +msgid "Power to the users!" +msgstr "" + +#. type: chapter +#: guix-git/doc/guix-cookbook.texi:73 guix-git/doc/guix-cookbook.texi:2834 +#: guix-git/doc/guix-cookbook.texi:2835 +#, no-wrap +msgid "Environment management" +msgstr "" + +#. type: menuentry +#: guix-git/doc/guix-cookbook.texi:73 +msgid "Control environment" +msgstr "" + +#. type: chapter +#: guix-git/doc/guix-cookbook.texi:77 guix-git/doc/guix-cookbook.texi:2958 +#: guix-git/doc/guix-cookbook.texi:2959 +#, no-wrap +msgid "Acknowledgments" +msgstr "Agradecimentos" + +#. type: menuentry +#: guix-git/doc/guix-cookbook.texi:77 +msgid "Thanks!" +msgstr "Obrigado!" + +#. type: appendix +#: guix-git/doc/guix-cookbook.texi:77 guix-git/doc/guix-cookbook.texi:2983 +#: guix-git/doc/guix-cookbook.texi:2984 +#, no-wrap +msgid "GNU Free Documentation License" +msgstr "Licença de Documentação Livre GNU" + +#. type: menuentry +#: guix-git/doc/guix-cookbook.texi:77 +msgid "The license of this document." +msgstr "" + +#. type: unnumbered +#: guix-git/doc/guix-cookbook.texi:77 guix-git/doc/guix-cookbook.texi:2989 +#: guix-git/doc/guix-cookbook.texi:2990 +#, no-wrap +msgid "Concept Index" +msgstr "Índice de conceitos" + +#. type: menuentry +#: guix-git/doc/guix-cookbook.texi:77 +msgid "Concepts." +msgstr "Conceitos." + +#. type: menuentry +#: guix-git/doc/guix-cookbook.texi:80 +msgid "--- The Detailed Node Listing ---" +msgstr "--- A listagem detalhada de nós ---" + +#. type: section +#: guix-git/doc/guix-cookbook.texi:84 guix-git/doc/guix-cookbook.texi:112 +#: guix-git/doc/guix-cookbook.texi:113 +#, no-wrap +msgid "A Scheme Crash Course" +msgstr "" + +#. type: menuentry +#: guix-git/doc/guix-cookbook.texi:84 +msgid "Learn the basics of Scheme" +msgstr "" + +#. type: section +#: guix-git/doc/guix-cookbook.texi:88 guix-git/doc/guix-cookbook.texi:317 +#: guix-git/doc/guix-cookbook.texi:319 guix-git/doc/guix-cookbook.texi:320 +#, no-wrap +msgid "Packaging Tutorial" +msgstr "" + +#. type: menuentry +#: guix-git/doc/guix-cookbook.texi:88 +msgid "Let's add a package to Guix!" +msgstr "" + +#. type: section +#: guix-git/doc/guix-cookbook.texi:93 guix-git/doc/guix-cookbook.texi:1360 +#: guix-git/doc/guix-cookbook.texi:1362 guix-git/doc/guix-cookbook.texi:1363 +#, no-wrap +msgid "Auto-Login to a Specific TTY" +msgstr "" + +#. type: menuentry +#: guix-git/doc/guix-cookbook.texi:93 guix-git/doc/guix-cookbook.texi:1360 +msgid "Automatically Login a User to a Specific TTY" +msgstr "" + +#. type: section +#: guix-git/doc/guix-cookbook.texi:93 guix-git/doc/guix-cookbook.texi:1360 +#: guix-git/doc/guix-cookbook.texi:1407 guix-git/doc/guix-cookbook.texi:1408 +#, no-wrap +msgid "Customizing the Kernel" +msgstr "" + +#. type: menuentry +#: guix-git/doc/guix-cookbook.texi:93 guix-git/doc/guix-cookbook.texi:1360 +msgid "Creating and using a custom Linux kernel on Guix System." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:105 +msgid "GNU@tie{}Guix is written in the general purpose programming language Scheme, and many of its features can be accessed and manipulated programmatically. You can use Scheme to generate package definitions, to modify them, to build them, to deploy whole operating systems, etc." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:109 +msgid "Knowing the basics of how to program in Scheme will unlock many of the advanced features Guix provides --- and you don't even need to be an experienced programmer to use them!" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:111 +msgid "Let's get started!" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix-cookbook.texi:115 +#, no-wrap +msgid "Scheme, crash course" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:121 +msgid "Guix uses the Guile implementation of Scheme. To start playing with the language, install it with @code{guix install guile} and start a @dfn{REPL}---short for @uref{https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop, @dfn{read-eval-print loop}}---by running @code{guile} from the command line." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:124 +msgid "Alternatively you can also run @code{guix environment --ad-hoc guile -- guile} if you'd rather not have Guile installed in your user profile." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:130 +msgid "In the following examples, lines show what you would type at the REPL; lines starting with ``@result{}'' show evaluation results, while lines starting with ``@print{}'' show things that get printed. @xref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}, for more details on the REPL." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:138 +msgid "Scheme syntax boils down to a tree of expressions (or @emph{s-expression} in Lisp lingo). An expression can be a literal such as numbers and strings, or a compound which is a parenthesized list of compounds and literals. @code{#true} and @code{#false} (abbreviated @code{#t} and @code{#f}) stand for the Booleans ``true'' and ``false'', respectively." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:140 +msgid "Examples of valid expressions:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:144 +#, no-wrap +msgid "" +"\"Hello World!\"\n" +"@result{} \"Hello World!\"\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:147 +#, no-wrap +msgid "" +"17\n" +"@result{} 17\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:151 +#, no-wrap +msgid "" +"(display (string-append \"Hello \" \"Guix\" \"\\n\"))\n" +"@print{} Hello Guix!\n" +"@result{} #\n" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:158 +msgid "This last example is a function call nested in another function call. When a parenthesized expression is evaluated, the first term is the function and the rest are the arguments passed to the function. Every function returns the last evaluated expression as its return value." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:161 +msgid "Anonymous functions are declared with the @code{lambda} term:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:165 +#, no-wrap +msgid "" +"(lambda (x) (* x x))\n" +"@result{} #:24:0 (x)>\n" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:170 +msgid "The above procedure returns the square of its argument. Since everything is an expression, the @code{lambda} expression returns an anonymous procedure, which can in turn be applied to an argument:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:174 +#, no-wrap +msgid "" +"((lambda (x) (* x x)) 3)\n" +"@result{} 9\n" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:178 +msgid "Anything can be assigned a global name with @code{define}:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:184 +#, no-wrap +msgid "" +"(define a 3)\n" +"(define square (lambda (x) (* x x)))\n" +"(square a)\n" +"@result{} 9\n" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:188 +msgid "Procedures can be defined more concisely with the following syntax:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:191 +#, no-wrap +msgid "(define (square x) (* x x))\n" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:195 +msgid "A list structure can be created with the @code{list} procedure:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:199 +#, no-wrap +msgid "" +"(list 2 a 5 7)\n" +"@result{} (2 3 5 7)\n" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:206 +msgid "The @dfn{quote} disables evaluation of a parenthesized expression: the first term is not called over the other terms (@pxref{Expression Syntax, quote,, guile, GNU Guile Reference Manual}). Thus it effectively returns a list of terms." +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:210 +#, no-wrap +msgid "" +"'(display (string-append \"Hello \" \"Guix\" \"\\n\"))\n" +"@result{} (display (string-append \"Hello \" \"Guix\" \"\\n\"))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:213 +#, no-wrap +msgid "" +"'(2 a 5 7)\n" +"@result{} (2 a 5 7)\n" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:219 +msgid "The @dfn{quasiquote} disables evaluation of a parenthesized expression until @dfn{unquote} (a comma) re-enables it. Thus it provides us with fine-grained control over what is evaluated and what is not." +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:223 +#, no-wrap +msgid "" +"`(2 a 5 7 (2 ,a 5 ,(+ a 4)))\n" +"@result{} (2 a 5 7 (2 3 5 7))\n" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:227 +msgid "Note that the above result is a list of mixed elements: numbers, symbols (here @code{a}) and the last element is a list itself." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:231 +msgid "Multiple variables can be named locally with @code{let} (@pxref{Local Bindings,,, guile, GNU Guile Reference Manual}):" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:238 +#, no-wrap +msgid "" +"(define x 10)\n" +"(let ((x 2)\n" +" (y 3))\n" +" (list x y))\n" +"@result{} (2 3)\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:241 +#, no-wrap +msgid "" +"x\n" +"@result{} 10\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:244 +#, no-wrap +msgid "" +"y\n" +"@error{} In procedure module-lookup: Unbound variable: y\n" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:248 +msgid "Use @code{let*} to allow later variable declarations to refer to earlier definitions." +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:254 +#, no-wrap +msgid "" +"(let* ((x 2)\n" +" (y (* x 3)))\n" +" (list x y))\n" +"@result{} (2 6)\n" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:261 +msgid "@dfn{Keywords} are typically used to identify the named parameters of a procedure. They are prefixed by @code{#:} (hash, colon) followed by alphanumeric characters: @code{#:like-this}. @xref{Keywords,,, guile, GNU Guile Reference Manual}." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:266 +msgid "The percentage @code{%} is typically used for read-only global variables in the build stage. Note that it is merely a convention, like @code{_} in C. Scheme treats @code{%} exactly the same as any other letter." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:270 +msgid "Modules are created with @code{define-module} (@pxref{Creating Guile Modules,,, guile, GNU Guile Reference Manual}). For instance" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:276 +#, no-wrap +msgid "" +"(define-module (guix build-system ruby)\n" +" #:use-module (guix store)\n" +" #:export (ruby-build\n" +" ruby-build-system))\n" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:282 +msgid "defines the module @code{guix build-system ruby} which must be located in @file{guix/build-system/ruby.scm} somewhere in the Guile load path. It depends on the @code{(guix store)} module and it exports two variables, @code{ruby-build} and @code{ruby-build-system}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:287 +msgid "For a more detailed introduction, check out @uref{http://www.troubleshooters.com/codecorn/scheme_guile/hello.htm, Scheme at a Glance}, by Steve Litt." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:299 +msgid "One of the reference Scheme books is the seminal ``Structure and Interpretation of Computer Programs'', by Harold Abelson and Gerald Jay Sussman, with Julie Sussman. You'll find a @uref{https://mitpress.mit.edu/sites/default/files/sicp/index.html, free copy online}, together with @uref{https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-001-structure-and-interpretation-of-computer-programs-spring-2005/video-lectures/, videos of the lectures by the authors}. The book is available in Texinfo format as the @code{sicp} Guix package. Go ahead, run @code{guix install sicp} and start reading with @code{info sicp} (@pxref{,,, sicp, Structure and Interpretation of Computer Programs}). An @uref{https://sarabander.github.io/sicp/, unofficial ebook is also available}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:302 +msgid "You'll find more books, tutorials and other resources at @url{https://schemers.org/}." +msgstr "" + +#. type: cindex +#: guix-git/doc/guix-cookbook.texi:308 +#, no-wrap +msgid "packaging" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:314 +msgid "This chapter is dedicated to teaching you how to add packages to the collection of packages that come with GNU Guix. This involves writing package definitions in Guile Scheme, organizing them in package modules, and building them." +msgstr "" + +#. type: menuentry +#: guix-git/doc/guix-cookbook.texi:317 +msgid "A tutorial on how to add packages to Guix." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:328 +msgid "GNU Guix stands out as the @emph{hackable} package manager, mostly because it uses @uref{https://www.gnu.org/software/guile/, GNU Guile}, a powerful high-level programming language, one of the @uref{https://en.wikipedia.org/wiki/Scheme_%28programming_language%29, Scheme} dialects from the @uref{https://en.wikipedia.org/wiki/Lisp_%28programming_language%29, Lisp family}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:332 +msgid "Package definitions are also written in Scheme, which empowers Guix in some very unique ways, unlike most other package managers that use shell scripts or simple languages." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:337 +msgid "Use functions, structures, macros and all of Scheme expressiveness for your package definitions." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:341 +msgid "Inheritance makes it easy to customize a package by inheriting from it and modifying only what is needed." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:351 +msgid "Batch processing: the whole package collection can be parsed, filtered and processed. Building a headless server with all graphical interfaces stripped out? It's possible. Want to rebuild everything from source using specific compiler optimization flags? Pass the @code{#:make-flags \"...\"} argument to the list of packages. It wouldn't be a stretch to think @uref{https://wiki.gentoo.org/wiki/USE_flag, Gentoo USE flags} here, but this goes even further: the changes don't have to be thought out beforehand by the packager, they can be @emph{programmed} by the user!" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:357 +msgid "The following tutorial covers all the basics around package creation with Guix. It does not assume much knowledge of the Guix system nor of the Lisp language. The reader is only expected to be familiar with the command line and to have some basic programming knowledge." +msgstr "" + +#. type: subsection +#: guix-git/doc/guix-cookbook.texi:358 guix-git/doc/guix-cookbook.texi:359 +#, no-wrap +msgid "A ``Hello World'' package" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:364 +msgid "The ``Defining Packages'' section of the manual introduces the basics of Guix packaging (@pxref{Defining Packages,,, guix, GNU Guix Reference Manual}). In the following section, we will partly go over those basics again." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:370 +msgid "GNU@tie{}Hello is a dummy project that serves as an idiomatic example for packaging. It uses the GNU build system (@code{./configure && make && make install}). Guix already provides a package definition which is a perfect example to start with. You can look up its declaration with @code{guix edit hello} from the command line. Let's see how it looks:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:391 +#, no-wrap +msgid "" +"(define-public hello\n" +" (package\n" +" (name \"hello\")\n" +" (version \"2.10\")\n" +" (source (origin\n" +" (method url-fetch)\n" +" (uri (string-append \"mirror://gnu/hello/hello-\" version\n" +" \".tar.gz\"))\n" +" (sha256\n" +" (base32\n" +" \"0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i\"))))\n" +" (build-system gnu-build-system)\n" +" (synopsis \"Hello, GNU world: An example GNU package\")\n" +" (description\n" +" \"GNU Hello prints the message \\\"Hello, world!\\\" and then exits. It\n" +"serves as an example of standard GNU coding practices. As such, it supports\n" +"command-line arguments, multiple languages, and so on.\")\n" +" (home-page \"https://www.gnu.org/software/hello/\")\n" +" (license gpl3+)))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:395 +msgid "As you can see, most of it is rather straightforward. But let's review the fields together:" +msgstr "" + +#. type: item +#: guix-git/doc/guix-cookbook.texi:397 +#, no-wrap +msgid "name" +msgstr "name" + +#. type: table +#: guix-git/doc/guix-cookbook.texi:400 +msgid "The project name. Using Scheme conventions, we prefer to keep it lower case, without underscore and using dash-separated words." +msgstr "" + +#. type: item +#: guix-git/doc/guix-cookbook.texi:401 +#, no-wrap +msgid "source" +msgstr "" + +#. type: table +#: guix-git/doc/guix-cookbook.texi:404 +msgid "This field contains a description of the source code origin. The @code{origin} record contains these fields:" +msgstr "" + +#. type: item +#: guix-git/doc/guix-cookbook.texi:406 +#, no-wrap +msgid "The method, here @code{url-fetch} to download via HTTP/FTP, but other methods" +msgstr "" + +#. type: enumerate +#: guix-git/doc/guix-cookbook.texi:408 +msgid "exist, such as @code{git-fetch} for Git repositories." +msgstr "" + +#. type: item +#: guix-git/doc/guix-cookbook.texi:408 +#, no-wrap +msgid "The URI, which is typically some @code{https://} location for @code{url-fetch}. Here" +msgstr "" + +#. type: enumerate +#: guix-git/doc/guix-cookbook.texi:411 +msgid "the special `mirror://gnu` refers to a set of well known locations, all of which can be used by Guix to fetch the source, should some of them fail." +msgstr "" + +#. type: item +#: guix-git/doc/guix-cookbook.texi:411 +#, no-wrap +msgid "The @code{sha256} checksum of the requested file. This is essential to ensure" +msgstr "" + +#. type: enumerate +#: guix-git/doc/guix-cookbook.texi:414 +msgid "the source is not corrupted. Note that Guix works with base32 strings, hence the call to the @code{base32} function." +msgstr "" + +#. type: item +#: guix-git/doc/guix-cookbook.texi:416 +#, no-wrap +msgid "build-system" +msgstr "" + +#. type: table +#: guix-git/doc/guix-cookbook.texi:425 +msgid "This is where the power of abstraction provided by the Scheme language really shines: in this case, the @code{gnu-build-system} abstracts away the famous @code{./configure && make && make install} shell invocations. Other build systems include the @code{trivial-build-system} which does not do anything and requires from the packager to program all the build steps, the @code{python-build-system}, the @code{emacs-build-system}, and many more (@pxref{Build Systems,,, guix, GNU Guix Reference Manual})." +msgstr "" + +#. type: item +#: guix-git/doc/guix-cookbook.texi:426 +#, no-wrap +msgid "synopsis" +msgstr "" + +#. type: table +#: guix-git/doc/guix-cookbook.texi:429 +msgid "It should be a concise summary of what the package does. For many packages a tagline from the project's home page can be used as the synopsis." +msgstr "" + +#. type: item +#: guix-git/doc/guix-cookbook.texi:430 +#, no-wrap +msgid "description" +msgstr "" + +#. type: table +#: guix-git/doc/guix-cookbook.texi:433 +msgid "Same as for the synopsis, it's fine to re-use the project description from the homepage. Note that Guix uses Texinfo syntax." +msgstr "" + +#. type: item +#: guix-git/doc/guix-cookbook.texi:434 +#, no-wrap +msgid "home-page" +msgstr "" + +#. type: table +#: guix-git/doc/guix-cookbook.texi:436 +msgid "Use HTTPS if available." +msgstr "" + +#. type: item +#: guix-git/doc/guix-cookbook.texi:437 +#, no-wrap +msgid "license" +msgstr "" + +#. type: table +#: guix-git/doc/guix-cookbook.texi:440 +msgid "See @code{guix/licenses.scm} in the project source for a full list of available licenses." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:444 +msgid "Time to build our first package! Nothing fancy here for now: we will stick to a dummy @code{my-hello}, a copy of the above declaration." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:448 +msgid "As with the ritualistic ``Hello World'' taught with most programming languages, this will possibly be the most ``manual'' approach. We will work out an ideal setup later; for now we will go the simplest route." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:450 +msgid "Save the following to a file @file{my-hello.scm}." +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:456 +#, no-wrap +msgid "" +"(use-modules (guix packages)\n" +" (guix download)\n" +" (guix build-system gnu)\n" +" (guix licenses))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:475 +#, no-wrap +msgid "" +"(package\n" +" (name \"my-hello\")\n" +" (version \"2.10\")\n" +" (source (origin\n" +" (method url-fetch)\n" +" (uri (string-append \"mirror://gnu/hello/hello-\" version\n" +" \".tar.gz\"))\n" +" (sha256\n" +" (base32\n" +" \"0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i\"))))\n" +" (build-system gnu-build-system)\n" +" (synopsis \"Hello, Guix world: An example custom Guix package\")\n" +" (description\n" +" \"GNU Hello prints the message \\\"Hello, world!\\\" and then exits. It\n" +"serves as an example of standard GNU coding practices. As such, it supports\n" +"command-line arguments, multiple languages, and so on.\")\n" +" (home-page \"https://www.gnu.org/software/hello/\")\n" +" (license gpl3+))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:478 +msgid "We will explain the extra code in a moment." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:485 +msgid "Feel free to play with the different values of the various fields. If you change the source, you'll need to update the checksum. Indeed, Guix refuses to build anything if the given checksum does not match the computed checksum of the source code. To obtain the correct checksum of the package declaration, we need to download the source, compute the sha256 checksum and convert it to base32." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:488 +msgid "Thankfully, Guix can automate this task for us; all we need is to provide the URI:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:492 +#, no-wrap +msgid "" +"$ guix download mirror://gnu/hello/hello-2.10.tar.gz\n" +"\n" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:499 +#, no-wrap +msgid "" +"Starting download of /tmp/guix-file.JLYgL7\n" +"From https://ftpmirror.gnu.org/gnu/hello/hello-2.10.tar.gz...\n" +"following redirection to `https://mirror.ibcp.fr/pub/gnu/hello/hello-2.10.tar.gz'...\n" +" …10.tar.gz 709KiB 2.5MiB/s 00:00 [##################] 100.0%\n" +"/gnu/store/hbdalsf5lpf01x4dcknwx6xbn6n5km6k-hello-2.10.tar.gz\n" +"0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:504 +msgid "In this specific case the output tells us which mirror was chosen. If the result of the above command is not the same as in the above snippet, update your @code{my-hello} declaration accordingly." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:508 +msgid "Note that GNU package tarballs come with an OpenPGP signature, so you should definitely check the signature of this tarball with `gpg` to authenticate it before going further:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:512 +#, no-wrap +msgid "" +"$ guix download mirror://gnu/hello/hello-2.10.tar.gz.sig\n" +"\n" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:527 +#, no-wrap +msgid "" +"Starting download of /tmp/guix-file.03tFfb\n" +"From https://ftpmirror.gnu.org/gnu/hello/hello-2.10.tar.gz.sig...\n" +"following redirection to `https://ftp.igh.cnrs.fr/pub/gnu/hello/hello-2.10.tar.gz.sig'...\n" +" ….tar.gz.sig 819B 1.2MiB/s 00:00 [##################] 100.0%\n" +"/gnu/store/rzs8wba9ka7grrmgcpfyxvs58mly0sx6-hello-2.10.tar.gz.sig\n" +"0q0v86n3y38z17rl146gdakw9xc4mcscpk8dscs412j22glrv9jf\n" +"$ gpg --verify /gnu/store/rzs8wba9ka7grrmgcpfyxvs58mly0sx6-hello-2.10.tar.gz.sig /gnu/store/hbdalsf5lpf01x4dcknwx6xbn6n5km6k-hello-2.10.tar.gz\n" +"gpg: Signature made Sun 16 Nov 2014 01:08:37 PM CET\n" +"gpg: using RSA key A9553245FDE9B739\n" +"gpg: Good signature from \"Sami Kerola \" [unknown]\n" +"gpg: aka \"Sami Kerola (http://www.iki.fi/kerolasa/) \" [unknown]\n" +"gpg: WARNING: This key is not certified with a trusted signature!\n" +"gpg: There is no indication that the signature belongs to the owner.\n" +"Primary key fingerprint: 8ED3 96E3 7E38 D471 A005 30D3 A955 3245 FDE9 B739\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:530 +msgid "You can then happily run" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:534 +#, no-wrap +msgid "$ guix package --install-from-file=my-hello.scm\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:537 +msgid "You should now have @code{my-hello} in your profile!" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:543 +#, no-wrap +msgid "" +"$ guix package --list-installed=my-hello\n" +"my-hello\t2.10\tout\n" +"/gnu/store/f1db2mfm8syb8qvc357c53slbvf1g9m9-my-hello-2.10\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:548 +msgid "We've gone as far as we could without any knowledge of Scheme. Before moving on to more complex packages, now is the right time to brush up on your Scheme knowledge. @pxref{A Scheme Crash Course} to get up to speed." +msgstr "" + +#. type: subsection +#: guix-git/doc/guix-cookbook.texi:549 guix-git/doc/guix-cookbook.texi:550 +#, no-wrap +msgid "Setup" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:555 +msgid "In the rest of this chapter we will rely on some basic Scheme programming knowledge. Now let's detail the different possible setups for working on Guix packages." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:557 +msgid "There are several ways to set up a Guix packaging environment." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:560 +msgid "We recommend you work directly on the Guix source checkout since it makes it easier for everyone to contribute to the project." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:562 +msgid "But first, let's look at other possibilities." +msgstr "" + +#. type: subsubsection +#: guix-git/doc/guix-cookbook.texi:563 guix-git/doc/guix-cookbook.texi:564 +#, no-wrap +msgid "Local file" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:569 +msgid "This is what we previously did with @samp{my-hello}. With the Scheme basics we've covered, we are now able to explain the leading chunks. As stated in @code{guix package --help}:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:574 +#, no-wrap +msgid "" +" -f, --install-from-file=FILE\n" +" install the package that the code within FILE\n" +" evaluates to\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:578 +msgid "Thus the last expression @emph{must} return a package, which is the case in our earlier example." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:582 +msgid "The @code{use-modules} expression tells which of the modules we need in the file. Modules are a collection of values and procedures. They are commonly called ``libraries'' or ``packages'' in other programming languages." +msgstr "" + +#. type: node +#: guix-git/doc/guix-cookbook.texi:583 +#, no-wrap +msgid "@samp{GUIX_PACKAGE_PATH}" +msgstr "" + +#. type: samp{#1} +#: guix-git/doc/guix-cookbook.texi:584 +#, no-wrap +msgid "GUIX_PACKAGE_PATH" +msgstr "GUIX_PACKAGE_PATH" + +#. type: emph{#1} +#: guix-git/doc/guix-cookbook.texi:588 +msgid "Note: Starting from Guix 0.16, the more flexible Guix @dfn{channels} are the preferred way and supersede @samp{GUIX_PACKAGE_PATH}. See next section." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:592 +msgid "It can be tedious to specify the file from the command line instead of simply calling @code{guix package --install my-hello} as you would do with the official packages." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:595 +msgid "Guix makes it possible to streamline the process by adding as many ``package declaration directories'' as you want." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:598 +msgid "Create a directory, say @file{~/guix-packages} and add it to the @samp{GUIX_PACKAGE_PATH} environment variable:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:602 +#, no-wrap +msgid "" +"$ mkdir ~/guix-packages\n" +"$ export GUIX_PACKAGE_PATH=~/guix-packages\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:605 +msgid "To add several directories, separate them with a colon (@code{:})." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:607 +msgid "Our previous @samp{my-hello} needs some adjustments though:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:614 +#, no-wrap +msgid "" +"(define-module (my-hello)\n" +" #:use-module (guix licenses)\n" +" #:use-module (guix packages)\n" +" #:use-module (guix build-system gnu)\n" +" #:use-module (guix download))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:634 +#, no-wrap +msgid "" +"(define-public my-hello\n" +" (package\n" +" (name \"my-hello\")\n" +" (version \"2.10\")\n" +" (source (origin\n" +" (method url-fetch)\n" +" (uri (string-append \"mirror://gnu/hello/hello-\" version\n" +" \".tar.gz\"))\n" +" (sha256\n" +" (base32\n" +" \"0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i\"))))\n" +" (build-system gnu-build-system)\n" +" (synopsis \"Hello, Guix world: An example custom Guix package\")\n" +" (description\n" +" \"GNU Hello prints the message \\\"Hello, world!\\\" and then exits. It\n" +"serves as an example of standard GNU coding practices. As such, it supports\n" +"command-line arguments, multiple languages, and so on.\")\n" +" (home-page \"https://www.gnu.org/software/hello/\")\n" +" (license gpl3+)))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:640 +msgid "Note that we have assigned the package value to an exported variable name with @code{define-public}. This is effectively assigning the package to the @code{my-hello} variable so that it can be referenced, among other as dependency of other packages." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:645 +msgid "If you use @code{guix package --install-from-file=my-hello.scm} on the above file, it will fail because the last expression, @code{define-public}, does not return a package. If you want to use @code{define-public} in this use-case nonetheless, make sure the file ends with an evaluation of @code{my-hello}:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:651 +#, no-wrap +msgid "" +"; ...\n" +"(define-public my-hello\n" +" ; ...\n" +" )\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:653 +#, no-wrap +msgid "my-hello\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:656 +msgid "This last example is not very typical." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:659 +msgid "Now @samp{my-hello} should be part of the package collection like all other official packages. You can verify this with:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:662 +#, no-wrap +msgid "$ guix package --show=my-hello\n" +msgstr "" + +#. type: subsubsection +#: guix-git/doc/guix-cookbook.texi:664 guix-git/doc/guix-cookbook.texi:665 +#, no-wrap +msgid "Guix channels" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:671 +msgid "Guix 0.16 features channels, which is very similar to @samp{GUIX_PACKAGE_PATH} but provides better integration and provenance tracking. Channels are not necessarily local, they can be maintained as a public Git repository for instance. Of course, several channels can be used at the same time." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:673 +msgid "@xref{Channels,,, guix, GNU Guix Reference Manual} for setup details." +msgstr "" + +#. type: subsubsection +#: guix-git/doc/guix-cookbook.texi:674 guix-git/doc/guix-cookbook.texi:675 +#, no-wrap +msgid "Direct checkout hacking" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:680 +msgid "Working directly on the Guix project is recommended: it reduces the friction when the time comes to submit your changes upstream to let the community benefit from your hard work!" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:686 +msgid "Unlike most software distributions, the Guix repository holds in one place both the tooling (including the package manager) and the package definitions. This choice was made so that it would give developers the flexibility to modify the API without breakage by updating all packages at the same time. This reduces development inertia." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:688 +msgid "Check out the official @uref{https://git-scm.com/, Git} repository:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:691 +#, no-wrap +msgid "$ git clone https://git.savannah.gnu.org/git/guix.git\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:695 +msgid "In the rest of this article, we use @samp{$GUIX_CHECKOUT} to refer to the location of the checkout." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:699 +msgid "Follow the instructions in the manual (@pxref{Contributing,,, guix, GNU Guix Reference Manual}) to set up the repository environment." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:702 +msgid "Once ready, you should be able to use the package definitions from the repository environment." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:704 +msgid "Feel free to edit package definitions found in @samp{$GUIX_CHECKOUT/gnu/packages}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:708 +msgid "The @samp{$GUIX_CHECKOUT/pre-inst-env} script lets you use @samp{guix} over the package collection of the repository (@pxref{Running Guix Before It Is Installed,,, guix, GNU Guix Reference Manual})." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:712 +msgid "Search packages, such as Ruby:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:719 +#, no-wrap +msgid "" +" $ cd $GUIX_CHECKOUT\n" +" $ ./pre-inst-env guix package --list-available=ruby\n" +" ruby 1.8.7-p374 out gnu/packages/ruby.scm:119:2\n" +" ruby 2.1.6 out gnu/packages/ruby.scm:91:2\n" +" ruby 2.2.2 out gnu/packages/ruby.scm:39:2\n" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:723 +msgid "Build a package, here Ruby version 2.1:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:727 +#, no-wrap +msgid "" +" $ ./pre-inst-env guix build --keep-failed ruby@@2.1\n" +" /gnu/store/c13v73jxmj2nir2xjqaz5259zywsa9zi-ruby-2.1.6\n" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:731 +msgid "Install it to your user profile:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:734 +#, no-wrap +msgid " $ ./pre-inst-env guix package --install ruby@@2.1\n" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:738 +msgid "Check for common mistakes:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:741 +#, no-wrap +msgid " $ ./pre-inst-env guix lint ruby@@2.1\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:746 +msgid "Guix strives at maintaining a high packaging standard; when contributing to the Guix project, remember to" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:750 +msgid "follow the coding style (@pxref{Coding Style,,, guix, GNU Guix Reference Manual})," +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:752 +msgid "and review the check list from the manual (@pxref{Submitting Patches,,, guix, GNU Guix Reference Manual})." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:756 +msgid "Once you are happy with the result, you are welcome to send your contribution to make it part of Guix. This process is also detailed in the manual. (@pxref{Contributing,,, guix, GNU Guix Reference Manual})" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:759 +msgid "It's a community effort so the more join in, the better Guix becomes!" +msgstr "" + +#. type: subsection +#: guix-git/doc/guix-cookbook.texi:760 guix-git/doc/guix-cookbook.texi:761 +#, no-wrap +msgid "Extended example" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:766 +msgid "The above ``Hello World'' example is as simple as it goes. Packages can be more complex than that and Guix can handle more advanced scenarios. Let's look at another, more sophisticated package (slightly modified from the source):" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:780 +#, no-wrap +msgid "" +"(define-module (gnu packages version-control)\n" +" #:use-module ((guix licenses) #:prefix license:)\n" +" #:use-module (guix utils)\n" +" #:use-module (guix packages)\n" +" #:use-module (guix git-download)\n" +" #:use-module (guix build-system cmake)\n" +" #:use-module (gnu packages ssh)\n" +" #:use-module (gnu packages web)\n" +" #:use-module (gnu packages pkg-config)\n" +" #:use-module (gnu packages python)\n" +" #:use-module (gnu packages compression)\n" +" #:use-module (gnu packages tls))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:834 +#, no-wrap +msgid "" +"(define-public my-libgit2\n" +" (let ((commit \"e98d0a37c93574d2c6107bf7f31140b548c6a7bf\")\n" +" (revision \"1\"))\n" +" (package\n" +" (name \"my-libgit2\")\n" +" (version (git-version \"0.26.6\" revision commit))\n" +" (source (origin\n" +" (method git-fetch)\n" +" (uri (git-reference\n" +" (url \"https://github.com/libgit2/libgit2/\")\n" +" (commit commit)))\n" +" (file-name (git-file-name name version))\n" +" (sha256\n" +" (base32\n" +" \"17pjvprmdrx4h6bb1hhc98w9qi6ki7yl57f090n9kbhswxqfs7s3\"))\n" +" (patches (search-patches \"libgit2-mtime-0.patch\"))\n" +" (modules '((guix build utils)))\n" +" ;; Remove bundled software.\n" +" (snippet '(delete-file-recursively \"deps\"))))\n" +" (build-system cmake-build-system)\n" +" (outputs '(\"out\" \"debug\"))\n" +" (arguments\n" +" `(#:tests? #true ; Run the test suite (this is the default)\n" +" #:configure-flags '(\"-DUSE_SHA1DC=ON\") ; SHA-1 collision detection\n" +" #:phases\n" +" (modify-phases %standard-phases\n" +" (add-after 'unpack 'fix-hardcoded-paths\n" +" (lambda _\n" +" (substitute* \"tests/repo/init.c\"\n" +" ((\"#!/bin/sh\") (string-append \"#!\" (which \"sh\"))))\n" +" (substitute* \"tests/clar/fs.h\"\n" +" ((\"/bin/cp\") (which \"cp\"))\n" +" ((\"/bin/rm\") (which \"rm\")))))\n" +" ;; Run checks more verbosely.\n" +" (replace 'check\n" +" (lambda _ (invoke \"./libgit2_clar\" \"-v\" \"-Q\")))\n" +" (add-after 'unpack 'make-files-writable-for-tests\n" +" (lambda _ (for-each make-file-writable (find-files \".\" \".*\")))))))\n" +" (inputs\n" +" (list libssh2 http-parser python-wrapper))\n" +" (native-inputs\n" +" (list pkg-config))\n" +" (propagated-inputs\n" +" ;; These two libraries are in 'Requires.private' in libgit2.pc.\n" +" (list openssl zlib))\n" +" (home-page \"https://libgit2.github.com/\")\n" +" (synopsis \"Library providing Git core methods\")\n" +" (description\n" +" \"Libgit2 is a portable, pure C implementation of the Git core methods\n" +"provided as a re-entrant linkable library with a solid API, allowing you to\n" +"write native speed custom Git applications in any language with bindings.\")\n" +" ;; GPLv2 with linking exception\n" +" (license license:gpl2))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:839 +msgid "(In those cases were you only want to tweak a few fields from a package definition, you should rely on inheritance instead of copy-pasting everything. See below.)" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:841 +msgid "Let's discuss those fields in depth." +msgstr "" + +#. type: subsubsection +#: guix-git/doc/guix-cookbook.texi:842 +#, no-wrap +msgid "@code{git-fetch} method" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:849 +msgid "Unlike the @code{url-fetch} method, @code{git-fetch} expects a @code{git-reference} which takes a Git repository and a commit. The commit can be any Git reference such as tags, so if the @code{version} is tagged, then it can be used directly. Sometimes the tag is prefixed with a @code{v}, in which case you'd use @code{(commit (string-append \"v\" version))}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:853 +msgid "To ensure that the source code from the Git repository is stored in a directory with a descriptive name, we use @code{(file-name (git-file-name name version))}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:858 +msgid "The @code{git-version} procedure can be used to derive the version when packaging programs for a specific commit, following the Guix contributor guidelines (@pxref{Version Numbers,,, guix, GNU Guix Reference Manual})." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:862 +msgid "How does one obtain the @code{sha256} hash that's in there, you ask? By invoking @command{guix hash} on a checkout of the desired commit, along these lines:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:868 +#, no-wrap +msgid "" +"git clone https://github.com/libgit2/libgit2/\n" +"cd libgit2\n" +"git checkout v0.26.6\n" +"guix hash -rx .\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:873 +msgid "@command{guix hash -rx} computes a SHA256 hash over the whole directory, excluding the @file{.git} sub-directory (@pxref{Invoking guix hash,,, guix, GNU Guix Reference Manual})." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:876 +msgid "In the future, @command{guix download} will hopefully be able to do these steps for you, just like it does for regular downloads." +msgstr "" + +#. type: subsubsection +#: guix-git/doc/guix-cookbook.texi:877 +#, no-wrap +msgid "Snippets" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:883 +msgid "Snippets are quoted (i.e. non-evaluated) Scheme code that are a means of patching the source. They are a Guix-y alternative to the traditional @file{.patch} files. Because of the quote, the code in only evaluated when passed to the Guix daemon for building. There can be as many snippets as needed." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:886 +msgid "Snippets might need additional Guile modules which can be imported from the @code{modules} field." +msgstr "" + +#. type: subsubsection +#: guix-git/doc/guix-cookbook.texi:887 +#, no-wrap +msgid "Inputs" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:890 +msgid "There are 3 different input types. In short:" +msgstr "" + +#. type: item +#: guix-git/doc/guix-cookbook.texi:892 +#, no-wrap +msgid "native-inputs" +msgstr "" + +#. type: table +#: guix-git/doc/guix-cookbook.texi:895 +msgid "Required for building but not runtime -- installing a package through a substitute won't install these inputs." +msgstr "" + +#. type: item +#: guix-git/doc/guix-cookbook.texi:895 +#, no-wrap +msgid "inputs" +msgstr "" + +#. type: table +#: guix-git/doc/guix-cookbook.texi:898 +msgid "Installed in the store but not in the profile, as well as being present at build time." +msgstr "" + +#. type: item +#: guix-git/doc/guix-cookbook.texi:898 +#, no-wrap +msgid "propagated-inputs" +msgstr "" + +#. type: table +#: guix-git/doc/guix-cookbook.texi:901 +msgid "Installed in the store and in the profile, as well as being present at build time." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:904 +msgid "@xref{Package Reference,,, guix, GNU Guix Reference Manual} for more details." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:908 +msgid "The distinction between the various inputs is important: if a dependency can be handled as an @emph{input} instead of a @emph{propagated input}, it should be done so, or else it ``pollutes'' the user profile for no good reason." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:915 +msgid "For instance, a user installing a graphical program that depends on a command line tool might only be interested in the graphical part, so there is no need to force the command line tool into the user profile. The dependency is a concern to the package, not to the user. @emph{Inputs} make it possible to handle dependencies without bugging the user by adding undesired executable files (or libraries) to their profile." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:921 +msgid "Same goes for @emph{native-inputs}: once the program is installed, build-time dependencies can be safely garbage-collected. It also matters when a substitute is available, in which case only the @emph{inputs} and @emph{propagated inputs} will be fetched: the @emph{native inputs} are not required to install a package from a substitute." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix-cookbook.texi:922 guix-git/doc/guix-cookbook.texi:1892 +#, no-wrap +msgid "Note" +msgstr "" + +#. type: quotation +#: guix-git/doc/guix-cookbook.texi:925 +msgid "You may see here and there snippets where package inputs are written quite differently, like so:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:932 +#, no-wrap +msgid "" +";; The \"old style\" for inputs.\n" +"(inputs\n" +" `((\"libssh2\" ,libssh2)\n" +" (\"http-parser\" ,http-parser)\n" +" (\"python\" ,python-wrapper)))\n" +msgstr "" + +#. type: quotation +#: guix-git/doc/guix-cookbook.texi:938 +msgid "This is the ``old style'', where each input in the list is explicitly given a label (a string). It is still supported but we recommend using the style above instead. @xref{package Reference,,, guix, GNU Guix Reference Manual}, for more info." +msgstr "" + +#. type: subsubsection +#: guix-git/doc/guix-cookbook.texi:940 +#, no-wrap +msgid "Outputs" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:944 +msgid "Just like how a package can have multiple inputs, it can also produce multiple outputs." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:946 +msgid "Each output corresponds to a separate directory in the store." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:949 +msgid "The user can choose which output to install; this is useful to save space or to avoid polluting the user profile with unwanted executables or libraries." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:952 +msgid "Output separation is optional. When the @code{outputs} field is left out, the default and only output (the complete package) is referred to as @code{\"out\"}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:954 +msgid "Typical separate output names include @code{debug} and @code{doc}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:958 +msgid "It's advised to separate outputs only when you've shown it's worth it: if the output size is significant (compare with @code{guix size}) or in case the package is modular." +msgstr "" + +#. type: subsubsection +#: guix-git/doc/guix-cookbook.texi:959 +#, no-wrap +msgid "Build system arguments" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:962 +msgid "The @code{arguments} is a keyword-value list used to configure the build process." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:967 +msgid "The simplest argument @code{#:tests?} can be used to disable the test suite when building the package. This is mostly useful when the package does not feature any test suite. It's strongly recommended to keep the test suite on if there is one." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:971 +msgid "Another common argument is @code{:make-flags}, which specifies a list of flags to append when running make, as you would from the command line. For instance, the following flags" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:975 +#, no-wrap +msgid "" +"#:make-flags (list (string-append \"prefix=\" (assoc-ref %outputs \"out\"))\n" +" \"CC=gcc\")\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:978 +msgid "translate into" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:981 +#, no-wrap +msgid "$ make CC=gcc prefix=/gnu/store/...-\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:987 +msgid "This sets the C compiler to @code{gcc} and the @code{prefix} variable (the installation directory in Make parlance) to @code{(assoc-ref %outputs \"out\")}, which is a build-stage global variable pointing to the destination directory in the store (something like @file{/gnu/store/...-my-libgit2-20180408})." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:989 +msgid "Similarly, it's possible to set the configure flags:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:992 +#, no-wrap +msgid "#:configure-flags '(\"-DUSE_SHA1DC=ON\")\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:996 +msgid "The @code{%build-inputs} variable is also generated in scope. It's an association table that maps the input names to their store directories." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1001 +msgid "The @code{phases} keyword lists the sequential steps of the build system. Typically phases include @code{unpack}, @code{configure}, @code{build}, @code{install} and @code{check}. To know more about those phases, you need to work out the appropriate build system definition in @samp{$GUIX_CHECKOUT/guix/build/gnu-build-system.scm}:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1020 +#, no-wrap +msgid "" +"(define %standard-phases\n" +" ;; Standard build phases, as a list of symbol/procedure pairs.\n" +" (let-syntax ((phases (syntax-rules ()\n" +" ((_ p ...) `((p . ,p) ...)))))\n" +" (phases set-SOURCE-DATE-EPOCH set-paths install-locale unpack\n" +" bootstrap\n" +" patch-usr-bin-file\n" +" patch-source-shebangs configure patch-generated-file-shebangs\n" +" build check install\n" +" patch-shebangs strip\n" +" validate-runpath\n" +" validate-documentation-location\n" +" delete-info-dir-file\n" +" patch-dot-desktop-files\n" +" install-license-files\n" +" reset-gzip-timestamps\n" +" compress-documentation)))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1023 +msgid "Or from the REPL:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1029 +#, no-wrap +msgid "" +"(add-to-load-path \"/path/to/guix/checkout\")\n" +",use (guix build gnu-build-system)\n" +"(map first %standard-phases)\n" +"@result{} (set-SOURCE-DATE-EPOCH set-paths install-locale unpack bootstrap patch-usr-bin-file patch-source-shebangs configure patch-generated-file-shebangs build check install patch-shebangs strip validate-runpath validate-documentation-location delete-info-dir-file patch-dot-desktop-files install-license-files reset-gzip-timestamps compress-documentation)\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1033 +msgid "If you want to know more about what happens during those phases, consult the associated procedures." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1036 +msgid "For instance, as of this writing the definition of @code{unpack} for the GNU build system is:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1046 +#, no-wrap +msgid "" +"(define* (unpack #:key source #:allow-other-keys)\n" +" \"Unpack SOURCE in the working directory, and change directory within the\n" +"source. When SOURCE is a directory, copy it in a sub-directory of the current\n" +"working directory.\"\n" +" (if (file-is-directory? source)\n" +" (begin\n" +" (mkdir \"source\")\n" +" (chdir \"source\")\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1057 +#, no-wrap +msgid "" +" ;; Preserve timestamps (set to the Epoch) on the copied tree so that\n" +" ;; things work deterministically.\n" +" (copy-recursively source \".\"\n" +" #:keep-mtime? #true))\n" +" (begin\n" +" (if (string-suffix? \".zip\" source)\n" +" (invoke \"unzip\" source)\n" +" (invoke \"tar\" \"xvf\" source))\n" +" (chdir (first-subdirectory \".\"))))\n" +" #true)\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1065 +msgid "Note the @code{chdir} call: it changes the working directory to where the source was unpacked. Thus every phase following the @code{unpack} will use the source as a working directory, which is why we can directly work on the source files. That is to say, unless a later phase changes the working directory to something else." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1069 +msgid "We modify the list of @code{%standard-phases} of the build system with the @code{modify-phases} macro as per the list of specified modifications, which may have the following forms:" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:1073 +msgid "@code{(add-before @var{phase} @var{new-phase} @var{procedure})}: Run @var{procedure} named @var{new-phase} before @var{phase}." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:1075 +msgid "@code{(add-after @var{phase} @var{new-phase} @var{procedure})}: Same, but afterwards." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:1077 +msgid "@code{(replace @var{phase} @var{procedure})}." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:1079 +msgid "@code{(delete @var{phase})}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1086 +msgid "The @var{procedure} supports the keyword arguments @code{inputs} and @code{outputs}. Each input (whether @emph{native}, @emph{propagated} or not) and output directory is referenced by their name in those variables. Thus @code{(assoc-ref outputs \"out\")} is the store directory of the main output of the package. A phase procedure may look like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1094 +#, no-wrap +msgid "" +"(lambda* (#:key inputs outputs #:allow-other-keys)\n" +" (let ((bash-directory (assoc-ref inputs \"bash\"))\n" +" (output-directory (assoc-ref outputs \"out\"))\n" +" (doc-directory (assoc-ref outputs \"doc\")))\n" +" ;; ...\n" +" #true))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1100 +msgid "The procedure must return @code{#true} on success. It's brittle to rely on the return value of the last expression used to tweak the phase because there is no guarantee it would be a @code{#true}. Hence the trailing @code{#true} to ensure the right value is returned on success." +msgstr "" + +#. type: subsubsection +#: guix-git/doc/guix-cookbook.texi:1101 +#, no-wrap +msgid "Code staging" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1107 +msgid "The astute reader may have noticed the quasi-quote and comma syntax in the argument field. Indeed, the build code in the package declaration should not be evaluated on the client side, but only when passed to the Guix daemon. This mechanism of passing code around two running processes is called @uref{https://arxiv.org/abs/1709.00833, code staging}." +msgstr "" + +#. type: subsubsection +#: guix-git/doc/guix-cookbook.texi:1108 +#, no-wrap +msgid "Utility functions" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1113 +msgid "When customizing @code{phases}, we often need to write code that mimics the equivalent system invocations (@code{make}, @code{mkdir}, @code{cp}, etc.)@: commonly used during regular ``Unix-style'' installations." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1116 +msgid "Some like @code{chmod} are native to Guile. @xref{,,, guile, Guile reference manual} for a complete list." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1119 +msgid "Guix provides additional helper functions which prove especially handy in the context of package management." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1123 +msgid "Some of those functions can be found in @samp{$GUIX_CHECKOUT/guix/guix/build/utils.scm}. Most of them mirror the behaviour of the traditional Unix system commands:" +msgstr "" + +#. type: item +#: guix-git/doc/guix-cookbook.texi:1125 +#, no-wrap +msgid "which" +msgstr "" + +#. type: table +#: guix-git/doc/guix-cookbook.texi:1127 +msgid "Like the @samp{which} system command." +msgstr "" + +#. type: item +#: guix-git/doc/guix-cookbook.texi:1127 +#, no-wrap +msgid "find-files" +msgstr "" + +#. type: table +#: guix-git/doc/guix-cookbook.texi:1129 +msgid "Akin to the @samp{find} system command." +msgstr "" + +#. type: item +#: guix-git/doc/guix-cookbook.texi:1129 +#, no-wrap +msgid "mkdir-p" +msgstr "" + +#. type: table +#: guix-git/doc/guix-cookbook.texi:1131 +msgid "Like @samp{mkdir -p}, which creates all parents as needed." +msgstr "" + +#. type: item +#: guix-git/doc/guix-cookbook.texi:1131 +#, no-wrap +msgid "install-file" +msgstr "" + +#. type: table +#: guix-git/doc/guix-cookbook.texi:1135 +msgid "Similar to @samp{install} when installing a file to a (possibly non-existing) directory. Guile has @code{copy-file} which works like @samp{cp}." +msgstr "" + +#. type: item +#: guix-git/doc/guix-cookbook.texi:1135 +#, no-wrap +msgid "copy-recursively" +msgstr "" + +#. type: table +#: guix-git/doc/guix-cookbook.texi:1137 +msgid "Like @samp{cp -r}." +msgstr "" + +#. type: item +#: guix-git/doc/guix-cookbook.texi:1137 +#, no-wrap +msgid "delete-file-recursively" +msgstr "" + +#. type: table +#: guix-git/doc/guix-cookbook.texi:1139 +msgid "Like @samp{rm -rf}." +msgstr "" + +#. type: item +#: guix-git/doc/guix-cookbook.texi:1139 +#, no-wrap +msgid "invoke" +msgstr "" + +#. type: table +#: guix-git/doc/guix-cookbook.texi:1141 +msgid "Run an executable. This should be used instead of @code{system*}." +msgstr "" + +#. type: item +#: guix-git/doc/guix-cookbook.texi:1141 +#, no-wrap +msgid "with-directory-excursion" +msgstr "" + +#. type: table +#: guix-git/doc/guix-cookbook.texi:1144 +msgid "Run the body in a different working directory, then restore the previous working directory." +msgstr "" + +#. type: item +#: guix-git/doc/guix-cookbook.texi:1144 +#, no-wrap +msgid "substitute*" +msgstr "" + +#. type: table +#: guix-git/doc/guix-cookbook.texi:1146 +msgid "A ``@command{sed}-like'' function." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1150 +msgid "@xref{Build Utilities,,, guix, GNU Guix Reference Manual}, for more information on these utilities." +msgstr "" + +#. type: subsubsection +#: guix-git/doc/guix-cookbook.texi:1151 +#, no-wrap +msgid "Module prefix" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1161 +msgid "The license in our last example needs a prefix: this is because of how the @code{license} module was imported in the package, as @code{#:use-module ((guix licenses) #:prefix license:)}. The Guile module import mechanism (@pxref{Using Guile Modules,,, guile, Guile reference manual}) gives the user full control over namespacing: this is needed to avoid clashes between, say, the @samp{zlib} variable from @samp{licenses.scm} (a @emph{license} value) and the @samp{zlib} variable from @samp{compression.scm} (a @emph{package} value)." +msgstr "" + +#. type: subsection +#: guix-git/doc/guix-cookbook.texi:1162 guix-git/doc/guix-cookbook.texi:1163 +#, no-wrap +msgid "Other build systems" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1170 +msgid "What we've seen so far covers the majority of packages using a build system other than the @code{trivial-build-system}. The latter does not automate anything and leaves you to build everything manually. This can be more demanding and we won't cover it here for now, but thankfully it is rarely necessary to fall back on this system." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1174 +msgid "For the other build systems, such as ASDF, Emacs, Perl, Ruby and many more, the process is very similar to the GNU build system except for a few specialized arguments." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1179 +msgid "@xref{Build Systems,,, guix, GNU Guix Reference Manual}, for more information on build systems, or check the source code in the @samp{$GUIX_CHECKOUT/guix/build} and @samp{$GUIX_CHECKOUT/guix/build-system} directories." +msgstr "" + +#. type: subsection +#: guix-git/doc/guix-cookbook.texi:1180 guix-git/doc/guix-cookbook.texi:1181 +#, no-wrap +msgid "Programmable and automated package definition" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1185 +msgid "We can't repeat it enough: having a full-fledged programming language at hand empowers us in ways that reach far beyond traditional package management." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1187 +msgid "Let's illustrate this with some awesome features of Guix!" +msgstr "" + +#. type: subsubsection +#: guix-git/doc/guix-cookbook.texi:1188 guix-git/doc/guix-cookbook.texi:1189 +#, no-wrap +msgid "Recursive importers" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1196 +msgid "You might find some build systems good enough that there is little to do at all to write a package, to the point that it becomes repetitive and tedious after a while. A @emph{raison d'être} of computers is to replace human beings at those boring tasks. So let's tell Guix to do this for us and create the package definition of an R package from CRAN (the output is trimmed for conciseness):" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:1199 +#, no-wrap +msgid "" +"$ guix import cran --recursive walrus\n" +"\n" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:1203 +#, no-wrap +msgid "" +"(define-public r-mc2d\n" +" ; ...\n" +" (license gpl2+)))\n" +"\n" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:1207 +#, no-wrap +msgid "" +"(define-public r-jmvcore\n" +" ; ...\n" +" (license gpl2+)))\n" +"\n" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:1211 +#, no-wrap +msgid "" +"(define-public r-wrs2\n" +" ; ...\n" +" (license gpl3)))\n" +"\n" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:1237 +#, no-wrap +msgid "" +"(define-public r-walrus\n" +" (package\n" +" (name \"r-walrus\")\n" +" (version \"1.0.3\")\n" +" (source\n" +" (origin\n" +" (method url-fetch)\n" +" (uri (cran-uri \"walrus\" version))\n" +" (sha256\n" +" (base32\n" +" \"1nk2glcvy4hyksl5ipq2mz8jy4fss90hx6cq98m3w96kzjni6jjj\"))))\n" +" (build-system r-build-system)\n" +" (propagated-inputs\n" +" (list r-ggplot2 r-jmvcore r-r6 r-wrs2))\n" +" (home-page \"https://github.com/jamovi/walrus\")\n" +" (synopsis \"Robust Statistical Methods\")\n" +" (description\n" +" \"This package provides a toolbox of common robust statistical\n" +"tests, including robust descriptives, robust t-tests, and robust ANOVA.\n" +"It is also available as a module for 'jamovi' (see\n" +" for more information). Walrus is based on the\n" +"WRS2 package by Patrick Mair, which is in turn based on the scripts and\n" +"work of Rand Wilcox. These analyses are described in depth in the book\n" +"'Introduction to Robust Estimation & Hypothesis Testing'.\")\n" +" (license gpl3)))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1241 +msgid "The recursive importer won't import packages for which Guix already has package definitions, except for the very first." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1246 +msgid "Not all applications can be packaged this way, only those relying on a select number of supported systems. Read about the full list of importers in the guix import section of the manual (@pxref{Invoking guix import,,, guix, GNU Guix Reference Manual})." +msgstr "" + +#. type: subsubsection +#: guix-git/doc/guix-cookbook.texi:1247 guix-git/doc/guix-cookbook.texi:1248 +#, no-wrap +msgid "Automatic update" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1252 +msgid "Guix can be smart enough to check for updates on systems it knows. It can report outdated package definitions with" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:1255 +#, no-wrap +msgid "$ guix refresh hello\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1260 +msgid "In most cases, updating a package to a newer version requires little more than changing the version number and the checksum. Guix can do that automatically as well:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:1263 +#, no-wrap +msgid "$ guix refresh hello --update\n" +msgstr "" + +#. type: subsubsection +#: guix-git/doc/guix-cookbook.texi:1265 guix-git/doc/guix-cookbook.texi:1266 +#, no-wrap +msgid "Inheritance" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1270 +msgid "If you've started browsing the existing package definitions, you might have noticed that a significant number of them have a @code{inherit} field:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1285 +#, no-wrap +msgid "" +"(define-public adwaita-icon-theme\n" +" (package (inherit gnome-icon-theme)\n" +" (name \"adwaita-icon-theme\")\n" +" (version \"3.26.1\")\n" +" (source (origin\n" +" (method url-fetch)\n" +" (uri (string-append \"mirror://gnome/sources/\" name \"/\"\n" +" (version-major+minor version) \"/\"\n" +" name \"-\" version \".tar.xz\"))\n" +" (sha256\n" +" (base32\n" +" \"17fpahgh5dyckgz7rwqvzgnhx53cx9kr2xw0szprc6bnqy977fi8\"))))\n" +" (native-inputs (list `(,gtk+ \"bin\")))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1290 +msgid "All unspecified fields are inherited from the parent package. This is very convenient to create alternative packages, for instance with different source, version or compilation options." +msgstr "" + +#. type: subsection +#: guix-git/doc/guix-cookbook.texi:1291 guix-git/doc/guix-cookbook.texi:1292 +#, no-wrap +msgid "Getting help" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1298 +msgid "Sadly, some applications can be tough to package. Sometimes they need a patch to work with the non-standard file system hierarchy enforced by the store. Sometimes the tests won't run properly. (They can be skipped but this is not recommended.) Other times the resulting package won't be reproducible." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1301 +msgid "Should you be stuck, unable to figure out how to fix any sort of packaging issue, don't hesitate to ask the community for help." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1303 +msgid "See the @uref{https://www.gnu.org/software/guix/contact/, Guix homepage} for information on the mailing lists, IRC, etc." +msgstr "" + +#. type: subsection +#: guix-git/doc/guix-cookbook.texi:1304 guix-git/doc/guix-cookbook.texi:1305 +#, no-wrap +msgid "Conclusion" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1311 +msgid "This tutorial was a showcase of the sophisticated package management that Guix boasts. At this point we have mostly restricted this introduction to the @code{gnu-build-system} which is a core abstraction layer on which more advanced abstractions are based." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1316 +msgid "Where do we go from here? Next we ought to dissect the innards of the build system by removing all abstractions, using the @code{trivial-build-system}: this should give us a thorough understanding of the process before investigating some more advanced packaging techniques and edge cases." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1319 +msgid "Other features worth exploring are the interactive editing and debugging capabilities of Guix provided by the Guile REPL@." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1324 +msgid "Those fancy features are completely optional and can wait; now is a good time to take a well-deserved break. With what we've introduced here you should be well armed to package lots of programs. You can get started right away and hopefully we will see your contributions soon!" +msgstr "" + +#. type: subsection +#: guix-git/doc/guix-cookbook.texi:1325 guix-git/doc/guix-cookbook.texi:1326 +#, no-wrap +msgid "References" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:1331 +msgid "The @uref{https://www.gnu.org/software/guix/manual/en/html_node/Defining-Packages.html, package reference in the manual}" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:1334 +msgid "@uref{https://gitlab.com/pjotrp/guix-notes/blob/master/HACKING.org, Pjotr’s hacking guide to GNU Guix}" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:1337 +msgid "@uref{https://www.gnu.org/software/guix/guix-ghm-andreas-20130823.pdf, ``GNU Guix: Package without a scheme!''}, by Andreas Enge" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1346 +msgid "Guix offers a flexible language for declaratively configuring your Guix System. This flexibility can at times be overwhelming. The purpose of this chapter is to demonstrate some advanced configuration concepts." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1349 +msgid "@pxref{System Configuration,,, guix, GNU Guix Reference Manual} for a complete reference." +msgstr "" + +#. type: section +#: guix-git/doc/guix-cookbook.texi:1360 guix-git/doc/guix-cookbook.texi:1645 +#: guix-git/doc/guix-cookbook.texi:1646 +#, no-wrap +msgid "Guix System Image API" +msgstr "" + +#. type: menuentry +#: guix-git/doc/guix-cookbook.texi:1360 +msgid "Customizing images to target specific platforms." +msgstr "" + +#. type: section +#: guix-git/doc/guix-cookbook.texi:1360 guix-git/doc/guix-cookbook.texi:1856 +#: guix-git/doc/guix-cookbook.texi:1857 +#, no-wrap +msgid "Connecting to Wireguard VPN" +msgstr "" + +#. type: menuentry +#: guix-git/doc/guix-cookbook.texi:1360 +msgid "Connecting to a Wireguard VPN." +msgstr "" + +#. type: section +#: guix-git/doc/guix-cookbook.texi:1360 guix-git/doc/guix-cookbook.texi:1933 +#: guix-git/doc/guix-cookbook.texi:1934 +#, no-wrap +msgid "Customizing a Window Manager" +msgstr "" + +#. type: menuentry +#: guix-git/doc/guix-cookbook.texi:1360 +msgid "Handle customization of a Window manager on Guix System." +msgstr "" + +#. type: section +#: guix-git/doc/guix-cookbook.texi:1360 guix-git/doc/guix-cookbook.texi:2024 +#: guix-git/doc/guix-cookbook.texi:2025 +#, no-wrap +msgid "Running Guix on a Linode Server" +msgstr "" + +#. type: section +#: guix-git/doc/guix-cookbook.texi:1360 guix-git/doc/guix-cookbook.texi:2267 +#: guix-git/doc/guix-cookbook.texi:2268 +#, no-wrap +msgid "Setting up a bind mount" +msgstr "" + +#. type: menuentry +#: guix-git/doc/guix-cookbook.texi:1360 +msgid "Setting up a bind mount in the file-systems definition." +msgstr "" + +#. type: section +#: guix-git/doc/guix-cookbook.texi:1360 guix-git/doc/guix-cookbook.texi:2316 +#: guix-git/doc/guix-cookbook.texi:2317 +#, no-wrap +msgid "Getting substitutes from Tor" +msgstr "" + +#. type: menuentry +#: guix-git/doc/guix-cookbook.texi:1360 +msgid "Configuring Guix daemon to get substitutes through Tor." +msgstr "" + +#. type: section +#: guix-git/doc/guix-cookbook.texi:1360 guix-git/doc/guix-cookbook.texi:2378 +#: guix-git/doc/guix-cookbook.texi:2379 +#, no-wrap +msgid "Setting up NGINX with Lua" +msgstr "" + +#. type: menuentry +#: guix-git/doc/guix-cookbook.texi:1360 +msgid "Configuring NGINX web-server to load Lua modules." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1372 +msgid "While the Guix manual explains auto-login one user to @emph{all} TTYs ( @pxref{auto-login to TTY,,, guix, GNU Guix Reference Manual}), some might prefer a situation, in which one user is logged into one TTY with the other TTYs either configured to login different users or no one at all. Note that one can auto-login one user to any TTY, but it is usually advisable to avoid @code{tty1}, which, by default, is used to log warnings and errors." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1374 +msgid "Here is how one might set up auto login for one user to one tty:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1382 +#, no-wrap +msgid "" +"(define (auto-login-to-tty config tty user)\n" +" (if (string=? tty (mingetty-configuration-tty config))\n" +" (mingetty-configuration\n" +" (inherit config)\n" +" (auto-login user))\n" +" config))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1389 +#, no-wrap +msgid "" +"(define %my-services\n" +" (modify-services %base-services\n" +" ;; @dots{}\n" +" (mingetty-service-type config =>\n" +" (auto-login-to-tty\n" +" config \"tty3\" \"alice\"))))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1393 +#, no-wrap +msgid "" +"(operating-system\n" +" ;; @dots{}\n" +" (services %my-services))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1398 +msgid "One could also @code{compose} (@pxref{Higher-Order Functions,,, guile, The Guile Reference Manual}) @code{auto-login-to-tty} to login multiple users to multiple ttys." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1405 +msgid "Finally, here is a note of caution. Setting up auto login to a TTY, means that anyone can turn on your computer and run commands as your regular user. However, if you have an encrypted root partition, and thus already need to enter a passphrase when the system boots, auto-login might be a convenient option." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1417 +msgid "Guix is, at its core, a source based distribution with substitutes (@pxref{Substitutes,,, guix, GNU Guix Reference Manual}), and as such building packages from their source code is an expected part of regular package installations and upgrades. Given this starting point, it makes sense that efforts are made to reduce the amount of time spent compiling packages, and recent changes and upgrades to the building and distribution of substitutes continues to be a topic of discussion within Guix." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1423 +msgid "The kernel, while not requiring an overabundance of RAM to build, does take a rather long time on an average machine. The official kernel configuration, as is the case with many GNU/Linux distributions, errs on the side of inclusiveness, and this is really what causes the build to take such a long time when the kernel is built from source." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1428 +msgid "The Linux kernel, however, can also just be described as a regular old package, and as such can be customized just like any other package. The procedure is a little bit different, although this is primarily due to the nature of how the package definition is written." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1431 +msgid "The @code{linux-libre} kernel package definition is actually a procedure which creates a package." +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1442 +#, no-wrap +msgid "" +"(define* (make-linux-libre* version gnu-revision source supported-systems\n" +" #:key\n" +" (extra-version #f)\n" +" ;; A function that takes an arch and a variant.\n" +" ;; See kernel-config for an example.\n" +" (configuration-file #f)\n" +" (defconfig \"defconfig\")\n" +" (extra-options %default-extra-linux-options))\n" +" ...)\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1446 +msgid "The current @code{linux-libre} package is for the 5.15.x series, and is declared like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1454 +#, no-wrap +msgid "" +"(define-public linux-libre-5.15\n" +" (make-linux-libre* linux-libre-5.15-version\n" +" linux-libre-5.15-gnu-revision\n" +" linux-libre-5.15-source\n" +" '(\"x86_64-linux\" \"i686-linux\" \"armhf-linux\" \"aarch64-linux\" \"riscv64-linux\")\n" +" #:configuration-file kernel-config))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1461 +msgid "Any keys which are not assigned values inherit their default value from the @code{make-linux-libre} definition. When comparing the two snippets above, notice the code comment that refers to @code{#:configuration-file}. Because of this, it is not actually easy to include a custom kernel configuration from the definition, but don't worry, there are other ways to work with what we do have." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1467 +msgid "There are two ways to create a kernel with a custom kernel configuration. The first is to provide a standard @file{.config} file during the build process by including an actual @file{.config} file as a native input to our custom kernel. The following is a snippet from the custom @code{'configure} phase of the @code{make-linux-libre} package definition:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1471 +#, no-wrap +msgid "" +"(let ((build (assoc-ref %standard-phases 'build))\n" +" (config (assoc-ref (or native-inputs inputs) \"kconfig\")))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1479 +#, no-wrap +msgid "" +" ;; Use a custom kernel configuration file or a default\n" +" ;; configuration file.\n" +" (if config\n" +" (begin\n" +" (copy-file config \".config\")\n" +" (chmod \".config\" #o666))\n" +" (invoke \"make\" ,defconfig)))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1484 +msgid "Below is a sample kernel package. The @code{linux-libre} package is nothing special and can be inherited from and have its fields overridden like any other package:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1493 +#, no-wrap +msgid "" +"(define-public linux-libre/E2140\n" +" (package\n" +" (inherit linux-libre)\n" +" (native-inputs\n" +" `((\"kconfig\" ,(local-file \"E2140.config\"))\n" +" ,@@(alist-delete \"kconfig\"\n" +" (package-native-inputs linux-libre))))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1500 +msgid "In the same directory as the file defining @code{linux-libre-E2140} is a file named @file{E2140.config}, which is an actual kernel configuration file. The @code{defconfig} keyword of @code{make-linux-libre} is left blank here, so the only kernel configuration in the package is the one which was included in the @code{native-inputs} field." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1505 +msgid "The second way to create a custom kernel is to pass a new value to the @code{extra-options} keyword of the @code{make-linux-libre} procedure. The @code{extra-options} keyword works with another function defined right below it:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1521 +#, no-wrap +msgid "" +"(define %default-extra-linux-options\n" +" `(;; https://lists.gnu.org/archive/html/guix-devel/2014-04/msg00039.html\n" +" (\"CONFIG_DEVPTS_MULTIPLE_INSTANCES\" . #true)\n" +" ;; Modules required for initrd:\n" +" (\"CONFIG_NET_9P\" . m)\n" +" (\"CONFIG_NET_9P_VIRTIO\" . m)\n" +" (\"CONFIG_VIRTIO_BLK\" . m)\n" +" (\"CONFIG_VIRTIO_NET\" . m)\n" +" (\"CONFIG_VIRTIO_PCI\" . m)\n" +" (\"CONFIG_VIRTIO_BALLOON\" . m)\n" +" (\"CONFIG_VIRTIO_MMIO\" . m)\n" +" (\"CONFIG_FUSE_FS\" . m)\n" +" (\"CONFIG_CIFS\" . m)\n" +" (\"CONFIG_9P_FS\" . m)))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1532 +#, no-wrap +msgid "" +"(define (config->string options)\n" +" (string-join (map (match-lambda\n" +" ((option . 'm)\n" +" (string-append option \"=m\"))\n" +" ((option . #true)\n" +" (string-append option \"=y\"))\n" +" ((option . #false)\n" +" (string-append option \"=n\")))\n" +" options)\n" +" \"\\n\"))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1535 +msgid "And in the custom configure script from the `make-linux-libre` package:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1543 +#, no-wrap +msgid "" +";; Appending works even when the option wasn't in the\n" +";; file. The last one prevails if duplicated.\n" +"(let ((port (open-file \".config\" \"a\"))\n" +" (extra-configuration ,(config->string extra-options)))\n" +" (display extra-configuration port)\n" +" (close-port port))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1545 +#, no-wrap +msgid "(invoke \"make\" \"oldconfig\")\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1550 +msgid "So by not providing a configuration-file the @file{.config} starts blank, and then we write into it the collection of flags that we want. Here's another custom kernel:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1558 +#, no-wrap +msgid "" +"(define %macbook41-full-config\n" +" (append %macbook41-config-options\n" +" %file-systems\n" +" %efi-support\n" +" %emulation\n" +" (@@@@ (gnu packages linux) %default-extra-linux-options)))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1569 +#, no-wrap +msgid "" +"(define-public linux-libre-macbook41\n" +" ;; XXX: Access the internal 'make-linux-libre*' procedure, which is\n" +" ;; private and unexported, and is liable to change in the future.\n" +" ((@@@@ (gnu packages linux) make-linux-libre*)\n" +" (@@@@ (gnu packages linux) linux-libre-version)\n" +" (@@@@ (gnu packages linux) linux-libre-gnu-revision)\n" +" (@@@@ (gnu packages linux) linux-libre-source)\n" +" '(\"x86_64-linux\")\n" +" #:extra-version \"macbook41\"\n" +" #:extra-options %macbook41-config-options))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1576 +msgid "In the above example @code{%file-systems} is a collection of flags enabling different file system support, @code{%efi-support} enables EFI support and @code{%emulation} enables a x86_64-linux machine to act in 32-bit mode also. @code{%default-extra-linux-options} are the ones quoted above, which had to be added in since they were replaced in the @code{extra-options} keyword." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1585 +msgid "This all sounds like it should be doable, but how does one even know which modules are required for a particular system? Two places that can be helpful in trying to answer this question is the @uref{https://wiki.gentoo.org/wiki/Handbook:AMD64/Installation/Kernel, Gentoo Handbook} and the @uref{https://www.kernel.org/doc/html/latest/admin-guide/README.html?highlight=localmodconfig, documentation from the kernel itself}. From the kernel documentation, it seems that @code{make localmodconfig} is the command we want." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1588 +msgid "In order to actually run @code{make localmodconfig} we first need to get and unpack the kernel source code:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:1591 +#, no-wrap +msgid "tar xf $(guix build linux-libre --source)\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1598 +msgid "Once inside the directory containing the source code run @code{touch .config} to create an initial, empty @file{.config} to start with. @code{make localmodconfig} works by seeing what you already have in @file{.config} and letting you know what you're missing. If the file is blank then you're missing everything. The next step is to run:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:1601 +#, no-wrap +msgid "guix environment linux-libre -- make localmodconfig\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1606 +msgid "and note the output. Do note that the @file{.config} file is still empty. The output generally contains two types of warnings. The first start with \"WARNING\" and can actually be ignored in our case. The second read:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:1609 +#, no-wrap +msgid "module pcspkr did not have configs CONFIG_INPUT_PCSPKR\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1614 +msgid "For each of these lines, copy the @code{CONFIG_XXXX_XXXX} portion into the @file{.config} in the directory, and append @code{=m}, so in the end it looks like this:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:1618 +#, no-wrap +msgid "" +"CONFIG_INPUT_PCSPKR=m\n" +"CONFIG_VIRTIO=m\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1627 +msgid "After copying all the configuration options, run @code{make localmodconfig} again to make sure that you don't have any output starting with ``module''. After all of these machine specific modules there are a couple more left that are also needed. @code{CONFIG_MODULES} is necessary so that you can build and load modules separately and not have everything built into the kernel. @code{CONFIG_BLK_DEV_SD} is required for reading from hard drives. It is possible that there are other modules which you will need." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1631 +msgid "This post does not aim to be a guide to configuring your own kernel however, so if you do decide to build a custom kernel you'll have to seek out other guides to create a kernel which is just right for your needs." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1639 +msgid "The second way to setup the kernel configuration makes more use of Guix's features and allows you to share configuration segments between different kernels. For example, all machines using EFI to boot have a number of EFI configuration flags that they need. It is likely that all the kernels will share a list of file systems to support. By using variables it is easier to see at a glance what features are enabled and to make sure you don't have features in one kernel but missing in another." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1644 +msgid "Left undiscussed however, is Guix's initrd and its customization. It is likely that you'll need to modify the initrd on a machine using a custom kernel, since certain modules which are expected to be built may not be available for inclusion into the initrd." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1651 +msgid "Historically, Guix System is centered around an @code{operating-system} structure. This structure contains various fields ranging from the bootloader and kernel declaration to the services to install." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1657 +msgid "Depending on the target machine, that can go from a standard @code{x86_64} machine to a small ARM single board computer such as the Pine64, the image constraints can vary a lot. The hardware manufacturers will impose different image formats with various partition sizes and offsets." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1662 +msgid "To create images suitable for all those machines, a new abstraction is necessary: that's the goal of the @code{image} record. This record contains all the required information to be transformed into a standalone image, that can be directly booted on any target machine." +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1684 +#, no-wrap +msgid "" +"(define-record-type* \n" +" image make-image\n" +" image?\n" +" (name image-name ;symbol\n" +" (default #f))\n" +" (format image-format) ;symbol\n" +" (target image-target\n" +" (default #f))\n" +" (size image-size ;size in bytes as integer\n" +" (default 'guess))\n" +" (operating-system image-operating-system ;\n" +" (default #f))\n" +" (partitions image-partitions ;list of \n" +" (default '()))\n" +" (compression? image-compression? ;boolean\n" +" (default #t))\n" +" (volatile-root? image-volatile-root? ;boolean\n" +" (default #t))\n" +" (substitutable? image-substitutable? ;boolean\n" +" (default #t)))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1690 +msgid "This record contains the operating-system to instantiate. The @code{format} field defines the image type and can be @code{efi-raw}, @code{qcow2} or @code{iso9660} for instance. In the future, it could be extended to @code{docker} or other image types." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1693 +msgid "A new directory in the Guix sources is dedicated to images definition. For now there are four files:" +msgstr "" + +#. type: file{#1} +#: guix-git/doc/guix-cookbook.texi:1695 +#, no-wrap +msgid "gnu/system/images/hurd.scm" +msgstr "" + +#. type: file{#1} +#: guix-git/doc/guix-cookbook.texi:1696 +#, no-wrap +msgid "gnu/system/images/pine64.scm" +msgstr "" + +#. type: file{#1} +#: guix-git/doc/guix-cookbook.texi:1697 +#, no-wrap +msgid "gnu/system/images/novena.scm" +msgstr "" + +#. type: file{#1} +#: guix-git/doc/guix-cookbook.texi:1698 +#, no-wrap +msgid "gnu/system/images/pinebook-pro.scm" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1704 +msgid "Let's have a look to @file{pine64.scm}. It contains the @code{pine64-barebones-os} variable which is a minimal definition of an operating-system dedicated to the @b{Pine A64 LTS} board." +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1728 +#, no-wrap +msgid "" +"(define pine64-barebones-os\n" +" (operating-system\n" +" (host-name \"vignemale\")\n" +" (timezone \"Europe/Paris\")\n" +" (locale \"en_US.utf8\")\n" +" (bootloader (bootloader-configuration\n" +" (bootloader u-boot-pine64-lts-bootloader)\n" +" (targets '(\"/dev/vda\"))))\n" +" (initrd-modules '())\n" +" (kernel linux-libre-arm64-generic)\n" +" (file-systems (cons (file-system\n" +" (device (file-system-label \"my-root\"))\n" +" (mount-point \"/\")\n" +" (type \"ext4\"))\n" +" %base-file-systems))\n" +" (services (cons (service agetty-service-type\n" +" (agetty-configuration\n" +" (extra-options '(\"-L\")) ; no carrier detect\n" +" (baud-rate \"115200\")\n" +" (term \"vt100\")\n" +" (tty \"ttyS0\")))\n" +" %base-services))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1732 +msgid "The @code{kernel} and @code{bootloader} fields are pointing to packages dedicated to this board." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1734 +msgid "Right below, the @code{pine64-image-type} variable is also defined." +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1740 +#, no-wrap +msgid "" +"(define pine64-image-type\n" +" (image-type\n" +" (name 'pine64-raw)\n" +" (constructor (cut image-with-os arm64-disk-image <>))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1744 +msgid "It's using a record we haven't talked about yet, the @code{image-type} record, defined this way:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1751 +#, no-wrap +msgid "" +"(define-record-type* \n" +" image-type make-image-type\n" +" image-type?\n" +" (name image-type-name) ;symbol\n" +" (constructor image-type-constructor)) ; -> \n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1757 +msgid "The main purpose of this record is to associate a name to a procedure transforming an @code{operating-system} to an image. To understand why it is necessary, let's have a look to the command producing an image from an @code{operating-system} configuration file:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:1760 +#, no-wrap +msgid "guix system image my-os.scm\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1766 +msgid "This command expects an @code{operating-system} configuration but how should we indicate that we want an image targeting a Pine64 board? We need to provide an extra information, the @code{image-type}, by passing the @code{--image-type} or @code{-t} flag, this way:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:1769 +#, no-wrap +msgid "guix system image --image-type=pine64-raw my-os.scm\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1775 +msgid "This @code{image-type} parameter points to the @code{pine64-image-type} defined above. Hence, the @code{operating-system} declared in @code{my-os.scm} will be applied the @code{(cut image-with-os arm64-disk-image <>)} procedure to turn it into an image." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1777 +msgid "The resulting image looks like:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1787 +#, no-wrap +msgid "" +"(image\n" +" (format 'disk-image)\n" +" (target \"aarch64-linux-gnu\")\n" +" (operating-system my-os)\n" +" (partitions\n" +" (list (partition\n" +" (inherit root-partition)\n" +" (offset root-offset)))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1791 +msgid "which is the aggregation of the @code{operating-system} defined in @code{my-os.scm} to the @code{arm64-disk-image} record." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1793 +msgid "But enough Scheme madness. What does this image API bring to the Guix user?" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1795 +msgid "One can run:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:1799 +#, no-wrap +msgid "" +"mathieu@@cervin:~$ guix system --list-image-types\n" +"The available image types are:\n" +"\n" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:1811 +#, no-wrap +msgid "" +" - pinebook-pro-raw\n" +" - pine64-raw\n" +" - novena-raw\n" +" - hurd-raw\n" +" - hurd-qcow2\n" +" - qcow2\n" +" - uncompressed-iso9660\n" +" - efi-raw\n" +" - arm64-raw\n" +" - arm32-raw\n" +" - iso9660\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1816 +msgid "and by writing an @code{operating-system} file based on @code{pine64-barebones-os}, you can customize your image to your preferences in a file (@file{my-pine-os.scm}) like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1820 +#, no-wrap +msgid "" +"(use-modules (gnu services linux)\n" +" (gnu system images pine64))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1831 +#, no-wrap +msgid "" +"(let ((base-os pine64-barebones-os))\n" +" (operating-system\n" +" (inherit base-os)\n" +" (timezone \"America/Indiana/Indianapolis\")\n" +" (services\n" +" (cons\n" +" (service earlyoom-service-type\n" +" (earlyoom-configuration\n" +" (prefer-regexp \"icecat|chromium\")))\n" +" (operating-system-user-services base-os)))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1834 +msgid "run:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:1837 +#, no-wrap +msgid "guix system image --image-type=pine64-raw my-pine-os.scm\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1840 +msgid "or," +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:1843 +#, no-wrap +msgid "guix system image --image-type=hurd-raw my-hurd-os.scm\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1847 +msgid "to get an image that can be written directly to a hard drive and booted from." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1849 +msgid "Without changing anything to @code{my-hurd-os.scm}, calling:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:1852 +#, no-wrap +msgid "guix system image --image-type=hurd-qcow2 my-hurd-os.scm\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1855 +msgid "will instead produce a Hurd QEMU image." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1862 +msgid "To connect to a Wireguard VPN server you need the kernel module to be loaded in memory and a package providing networking tools that support it (e.g. @code{wireguard-tools} or @code{network-manager})." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1866 +msgid "Here is a configuration example for Linux-Libre < 5.6, where the module is out of tree and need to be loaded manually---following revisions of the kernel have it built-in and so don't need such configuration:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1871 +#, no-wrap +msgid "" +"(use-modules (gnu))\n" +"(use-service-modules desktop)\n" +"(use-package-modules vpn)\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1880 +#, no-wrap +msgid "" +"(operating-system\n" +" ;; …\n" +" (services (cons (simple-service 'wireguard-module\n" +" kernel-module-loader-service-type\n" +" '(\"wireguard\"))\n" +" %desktop-services))\n" +" (packages (cons wireguard-tools %base-packages))\n" +" (kernel-loadable-modules (list wireguard-linux-compat)))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1884 +msgid "After reconfiguring and restarting your system you can either use Wireguard tools or NetworkManager to connect to a VPN server." +msgstr "" + +#. type: subsection +#: guix-git/doc/guix-cookbook.texi:1885 +#, no-wrap +msgid "Using Wireguard tools" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1891 +msgid "To test your Wireguard setup it is convenient to use @command{wg-quick}. Just give it a configuration file @command{wg-quick up ./wg0.conf}; or put that file in @file{/etc/wireguard} and run @command{wg-quick up wg0} instead." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix-cookbook.texi:1895 +msgid "Be warned that the author described this command as a: “[…] very quick and dirty bash script […]”." +msgstr "" + +#. type: subsection +#: guix-git/doc/guix-cookbook.texi:1897 +#, no-wrap +msgid "Using NetworkManager" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1905 +msgid "Thanks to NetworkManager support for Wireguard we can connect to our VPN using @command{nmcli} command. Up to this point this guide assumes that you're using Network Manager service provided by @code{%desktop-services}. Ortherwise you need to adjust your services list to load @code{network-manager-service-type} and reconfigure your Guix system." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1907 +msgid "To import your VPN configuration execute nmcli import command:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:1911 +#, no-wrap +msgid "" +"# nmcli connection import type wireguard file wg0.conf\n" +"Connection 'wg0' (edbee261-aa5a-42db-b032-6c7757c60fde) successfully added\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1916 +msgid "This will create a configuration file in @file{/etc/NetworkManager/wg0.nmconnection}. Next connect to the Wireguard server:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:1920 +#, no-wrap +msgid "" +"$ nmcli connection up wg0\n" +"Connection successfully activated (D-Bus active path: /org/freedesktop/NetworkManager/ActiveConnection/6)\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1924 +msgid "By default NetworkManager will connect automatically on system boot. To change that behaviour you need to edit your config:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:1927 +#, no-wrap +msgid "# nmcli connection modify wg0 connection.autoconnect no\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1932 +msgid "For more specific information about NetworkManager and wireguard @uref{https://blogs.gnome.org/thaller/2019/03/15/wireguard-in-networkmanager/,see this post by thaller}." +msgstr "" + +#. type: cindex +#: guix-git/doc/guix-cookbook.texi:1935 +#, no-wrap +msgid "wm" +msgstr "" + +#. type: subsection +#: guix-git/doc/guix-cookbook.texi:1937 guix-git/doc/guix-cookbook.texi:1938 +#, no-wrap +msgid "StumpWM" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix-cookbook.texi:1939 +#, no-wrap +msgid "stumpwm" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1944 +msgid "You could install StumpWM with a Guix system by adding @code{stumpwm} and optionally @code{`(,stumpwm \"lib\")} packages to a system configuration file, e.g.@: @file{/etc/config.scm}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1946 +msgid "An example configuration can look like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1950 +#, no-wrap +msgid "" +"(use-modules (gnu))\n" +"(use-package-modules wm)\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1955 +#, no-wrap +msgid "" +"(operating-system\n" +" ;; …\n" +" (packages (append (list sbcl stumpwm `(,stumpwm \"lib\"))\n" +" %base-packages)))\n" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix-cookbook.texi:1957 +#, no-wrap +msgid "stumpwm fonts" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1961 +msgid "By default StumpWM uses X11 fonts, which could be small or pixelated on your system. You could fix this by installing StumpWM contrib Lisp module @code{sbcl-ttf-fonts}, adding it to Guix system packages:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1965 +#, no-wrap +msgid "" +"(use-modules (gnu))\n" +"(use-package-modules fonts wm)\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1970 +#, no-wrap +msgid "" +"(operating-system\n" +" ;; …\n" +" (packages (append (list sbcl stumpwm `(,stumpwm \"lib\"))\n" +" sbcl-ttf-fonts font-dejavu %base-packages)))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1974 +msgid "Then you need to add the following code to a StumpWM configuration file @file{~/.stumpwm.d/init.lisp}:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:1981 +#, no-wrap +msgid "" +"(require :ttf-fonts)\n" +"(setf xft:*font-dirs* '(\"/run/current-system/profile/share/fonts/\"))\n" +"(setf clx-truetype:+font-cache-filename+ (concat (getenv \"HOME\") \"/.fonts/font-cache.sexp\"))\n" +"(xft:cache-fonts)\n" +"(set-font (make-instance 'xft:font :family \"DejaVu Sans Mono\" :subfamily \"Book\" :size 11))\n" +msgstr "" + +#. type: subsection +#: guix-git/doc/guix-cookbook.texi:1983 guix-git/doc/guix-cookbook.texi:1984 +#, no-wrap +msgid "Session lock" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix-cookbook.texi:1985 +#, no-wrap +msgid "sessionlock" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1991 +msgid "Depending on your environment, locking the screen of your session might come built in or it might be something you have to set up yourself. If you use a desktop environment like GNOME or KDE, it's usually built in. If you use a plain window manager like StumpWM or EXWM, you might have to set it up yourself." +msgstr "" + +#. type: subsubsection +#: guix-git/doc/guix-cookbook.texi:1992 guix-git/doc/guix-cookbook.texi:1993 +#, no-wrap +msgid "Xorg" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:1999 +msgid "If you use Xorg, you can use the utility @uref{https://www.mankier.com/1/xss-lock, xss-lock} to lock the screen of your session. xss-lock is triggered by DPMS which since Xorg 1.8 is auto-detected and enabled if ACPI is also enabled at kernel runtime." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2002 +msgid "To use xss-lock, you can simple execute it and put it into the background before you start your window manager from e.g. your @file{~/.xsession}:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2006 +#, no-wrap +msgid "" +"xss-lock -- slock &\n" +"exec stumpwm\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2010 +msgid "In this example, xss-lock uses @code{slock} to do the actual locking of the screen when it determines it's appropriate, like when you suspend your device." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2014 +msgid "For slock to be allowed to be a screen locker for the graphical session, it needs to be made setuid-root so it can authenticate users, and it needs a PAM service. This can be achieved by adding the following service to your @file{config.scm}:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:2017 +#, no-wrap +msgid "(screen-locker-service slock)\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2023 +msgid "If you manually lock your screen, e.g. by directly calling slock when you want to lock your screen but not suspend it, it's a good idea to notify xss-lock about this so no confusion occurs. This can be done by executing @code{xset s activate} immediately before you execute slock." +msgstr "" + +#. type: cindex +#: guix-git/doc/guix-cookbook.texi:2026 +#, no-wrap +msgid "linode, Linode" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2031 +msgid "To run Guix on a server hosted by @uref{https://www.linode.com, Linode}, start with a recommended Debian server. We recommend using the default distro as a way to bootstrap Guix. Create your SSH keys." +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2034 +#, no-wrap +msgid "ssh-keygen\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2040 +msgid "Be sure to add your SSH key for easy login to the remote server. This is trivially done via Linode's graphical interface for adding SSH keys. Go to your profile and click add SSH Key. Copy into it the output of:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2043 +#, no-wrap +msgid "cat ~/.ssh/_rsa.pub\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2046 +msgid "Power the Linode down." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2050 +msgid "In the Linode's Storage tab, resize the Debian disk to be smaller. 30 GB free space is recommended. Then click \"Add a disk\", and fill out the form with the following:" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2054 +msgid "Label: \"Guix\"" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2057 +msgid "Filesystem: ext4" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2060 +msgid "Set it to the remaining size" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2065 +msgid "In the Configurations tab, press \"Edit\" on the default Debian profile. Under \"Block Device Assignment\" click \"Add a Device\". It should be @file{/dev/sdc} and you can select the \"Guix\" disk. Save Changes." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2067 +msgid "Now \"Add a Configuration\", with the following:" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2070 +msgid "Label: Guix" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2073 +msgid "Kernel:GRUB 2 (it's at the bottom! This step is @b{IMPORTANT!})" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2076 +msgid "Block device assignment:" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2079 +msgid "@file{/dev/sda}: Guix" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2082 +msgid "@file{/dev/sdb}: swap" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2085 +msgid "Root device: @file{/dev/sda}" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2088 +msgid "Turn off all the filesystem/boot helpers" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2095 +msgid "Now power it back up, booting with the Debian configuration. Once it's running, ssh to your server via @code{ssh root@@@var{}}. (You can find your server IP address in your Linode Summary section.) Now you can run the \"install guix from @pxref{Binary Installation,,, guix, GNU Guix}\" steps:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2103 +#, no-wrap +msgid "" +"sudo apt-get install gpg\n" +"wget https://sv.gnu.org/people/viewgpg.php?user_id=15145 -qO - | gpg --import -\n" +"wget https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh\n" +"chmod +x guix-install.sh\n" +"./guix-install.sh\n" +"guix pull\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2107 +msgid "Now it's time to write out a config for the server. The key information is below. Save the resulting file as @file{guix-config.scm}." +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:2118 +#, no-wrap +msgid "" +"(use-modules (gnu)\n" +" (guix modules))\n" +"(use-service-modules networking\n" +" ssh)\n" +"(use-package-modules admin\n" +" certs\n" +" package-management\n" +" ssh\n" +" tls)\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:2135 +#, no-wrap +msgid "" +"(operating-system\n" +" (host-name \"my-server\")\n" +" (timezone \"America/New_York\")\n" +" (locale \"en_US.UTF-8\")\n" +" ;; This goofy code will generate the grub.cfg\n" +" ;; without installing the grub bootloader on disk.\n" +" (bootloader (bootloader-configuration\n" +" (bootloader\n" +" (bootloader\n" +" (inherit grub-bootloader)\n" +" (installer #~(const #true))))))\n" +" (file-systems (cons (file-system\n" +" (device \"/dev/sda\")\n" +" (mount-point \"/\")\n" +" (type \"ext4\"))\n" +" %base-file-systems))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:2138 +#, no-wrap +msgid "" +" (swap-devices (list \"/dev/sdb\"))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:2142 +#, no-wrap +msgid "" +" (initrd-modules (cons \"virtio_scsi\" ; Needed to find the disk\n" +" %base-initrd-modules))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:2151 +#, no-wrap +msgid "" +" (users (cons (user-account\n" +" (name \"janedoe\")\n" +" (group \"users\")\n" +" ;; Adding the account to the \"wheel\" group\n" +" ;; makes it a sudoer.\n" +" (supplementary-groups '(\"wheel\"))\n" +" (home-directory \"/home/janedoe\"))\n" +" %base-user-accounts))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:2155 +#, no-wrap +msgid "" +" (packages (cons* nss-certs ;for HTTPS access\n" +" openssh-sans-x\n" +" %base-packages))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:2166 +#, no-wrap +msgid "" +" (services (cons*\n" +" (service dhcp-client-service-type)\n" +" (service openssh-service-type\n" +" (openssh-configuration\n" +" (openssh openssh-sans-x)\n" +" (password-authentication? #false)\n" +" (authorized-keys\n" +" `((\"janedoe\" ,(local-file \"janedoe_rsa.pub\"))\n" +" (\"root\" ,(local-file \"janedoe_rsa.pub\"))))))\n" +" %base-services)))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2169 +msgid "Replace the following fields in the above configuration:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:2177 +#, no-wrap +msgid "" +"(host-name \"my-server\") ; replace with your server name\n" +"; if you chose a linode server outside the U.S., then\n" +"; use tzselect to find a correct timezone string\n" +"(timezone \"America/New_York\") ; if needed replace timezone\n" +"(name \"janedoe\") ; replace with your username\n" +"(\"janedoe\" ,(local-file \"janedoe_rsa.pub\")) ; replace with your ssh key\n" +"(\"root\" ,(local-file \"janedoe_rsa.pub\")) ; replace with your ssh key\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2184 +msgid "The last line in the above example lets you log into the server as root and set the initial root password (see the note at the end of this recipe about root login). After you have done this, you may delete that line from your configuration and reconfigure to prevent root login." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2189 +msgid "Copy your ssh public key (eg: @file{~/.ssh/id_rsa.pub}) as @file{@var{}_rsa.pub} and put @file{guix-config.scm} in the same directory. In a new terminal run these commands." +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2194 +#, no-wrap +msgid "" +"sftp root@@\n" +"put /path/to/files/_rsa.pub .\n" +"put /path/to/files/guix-config.scm .\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2197 +msgid "In your first terminal, mount the guix drive:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2201 +#, no-wrap +msgid "" +"mkdir /mnt/guix\n" +"mount /dev/sdc /mnt/guix\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2206 +msgid "Due to the way we set up the bootloader section of the guix-config.scm, only the grub configuration file will be installed. So, we need to copy over some of the other GRUB stuff already installed on the Debian system:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2210 +#, no-wrap +msgid "" +"mkdir -p /mnt/guix/boot/grub\n" +"cp -r /boot/grub/* /mnt/guix/boot/grub/\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2213 +msgid "Now initialize the Guix installation:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2216 +#, no-wrap +msgid "guix system init guix-config.scm /mnt/guix\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2220 +msgid "Ok, power it down! Now from the Linode console, select boot and select \"Guix\"." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2223 +msgid "Once it boots, you should be able to log in via SSH! (The server config will have changed though.) You may encounter an error like:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2239 +#, no-wrap +msgid "" +"$ ssh root@@\n" +"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n" +"@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @\n" +"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n" +"IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!\n" +"Someone could be eavesdropping on you right now (man-in-the-middle attack)!\n" +"It is also possible that a host key has just been changed.\n" +"The fingerprint for the ECDSA key sent by the remote host is\n" +"SHA256:0B+wp33w57AnKQuHCvQP0+ZdKaqYrI/kyU7CfVbS7R4.\n" +"Please contact your system administrator.\n" +"Add correct host key in /home/joshua/.ssh/known_hosts to get rid of this message.\n" +"Offending ECDSA key in /home/joshua/.ssh/known_hosts:3\n" +"ECDSA host key for 198.58.98.76 has changed and you have requested strict checking.\n" +"Host key verification failed.\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2243 +msgid "Either delete @file{~/.ssh/known_hosts} file, or delete the offending line starting with your server IP address." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2245 +msgid "Be sure to set your password and root's password." +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2250 +#, no-wrap +msgid "" +"ssh root@@\n" +"passwd ; for the root password\n" +"passwd ; for the user password\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2257 +msgid "You may not be able to run the above commands at this point. If you have issues remotely logging into your linode box via SSH, then you may still need to set your root and user password initially by clicking on the ``Launch Console'' option in your linode. Choose the ``Glish'' instead of ``Weblish''. Now you should be able to ssh into the machine." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2261 +msgid "Hooray! At this point you can shut down the server, delete the Debian disk, and resize the Guix to the rest of the size. Congratulations!" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2266 +msgid "By the way, if you save it as a disk image right at this point, you'll have an easy time spinning up new Guix images! You may need to down-size the Guix image to 6144MB, to save it as an image. Then you can resize it again to the max size." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2275 +msgid "To bind mount a file system, one must first set up some definitions before the @code{operating-system} section of the system definition. In this example we will bind mount a folder from a spinning disk drive to @file{/tmp}, to save wear and tear on the primary SSD, without dedicating an entire partition to be mounted as @file{/tmp}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2278 +msgid "First, the source drive that hosts the folder we wish to bind mount should be defined, so that the bind mount can depend on it." +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:2285 +#, no-wrap +msgid "" +"(define source-drive ;; \"source-drive\" can be named anything you want.\n" +" (file-system\n" +" (device (uuid \"UUID goes here\"))\n" +" (mount-point \"/path-to-spinning-disk-goes-here\")\n" +" (type \"ext4\"))) ;; Make sure to set this to the appropriate type for your drive.\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2289 +msgid "The source folder must also be defined, so that guix will know it's not a regular block device, but a folder." +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:2291 +#, no-wrap +msgid "(define (%source-directory) \"/path-to-spinning-disk-goes-here/tmp\") ;; \"source-directory\" can be named any valid variable name.\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2295 +msgid "Finally, inside the @code{file-systems} definition, we must add the mount itself." +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:2298 +#, no-wrap +msgid "" +"(file-systems (cons*\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:2300 +#, no-wrap +msgid "" +" ......\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:2302 +#, no-wrap +msgid "" +" source-drive ;; Must match the name you gave the source drive in the earlier definition.\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:2310 +#, no-wrap +msgid "" +" (file-system\n" +" (device (%source-directory)) ;; Make sure \"source-directory\" matches your earlier definition.\n" +" (mount-point \"/tmp\")\n" +" (type \"none\") ;; We are mounting a folder, not a partition, so this type needs to be \"none\"\n" +" (flags '(bind-mount))\n" +" (dependencies (list source-drive)) ;; Ensure \"source-drive\" matches what you've named the variable for the drive.\n" +" )\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:2312 +#, no-wrap +msgid "" +" ......\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:2314 +#, no-wrap +msgid " ))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2321 +msgid "Guix daemon can use a HTTP proxy to get substitutes, here we are configuring it to get them via Tor." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix-cookbook.texi:2322 +#, no-wrap +msgid "Warning" +msgstr "" + +#. type: quotation +#: guix-git/doc/guix-cookbook.texi:2328 +msgid "@emph{Not all} Guix daemon's traffic will go through Tor! Only HTTP/HTTPS will get proxied; FTP, Git protocol, SSH, etc connections will still go through the clearnet. Again, this configuration isn't foolproof some of your traffic won't get routed by Tor at all. Use it at your own risk." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix-cookbook.texi:2334 +msgid "Also note that the procedure described here applies only to package substitution. When you update your guix distribution with @command{guix pull}, you still need to use @command{torsocks} if you want to route the connection to guix's git repository servers through Tor." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2339 +msgid "Guix's substitute server is available as a Onion service, if you want to use it to get your substitutes through Tor configure your system as follow:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:2343 +#, no-wrap +msgid "" +"(use-modules (gnu))\n" +"(use-service-module base networking)\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:2359 +#, no-wrap +msgid "" +"(operating-system\n" +" …\n" +" (services\n" +" (cons\n" +" (service tor-service-type\n" +" (tor-configuration\n" +" (config-file (plain-file \"tor-config\"\n" +" \"HTTPTunnelPort 127.0.0.1:9250\"))))\n" +" (modify-services %base-services\n" +" (guix-service-type\n" +" config => (guix-configuration\n" +" (inherit config)\n" +" ;; ci.guix.gnu.org's Onion service\n" +" (substitute-urls \"https://bp7o7ckwlewr4slm.onion\")\n" +" (http-proxy \"http://localhost:9250\")))))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2368 +msgid "This will keep a tor process running that provides a HTTP CONNECT tunnel which will be used by @command{guix-daemon}. The daemon can use other protocols than HTTP(S) to get remote resources, request using those protocols won't go through Tor since we are only setting a HTTP tunnel here. Note that @code{substitutes-urls} is using HTTPS and not HTTP or it won't work, that's a limitation of Tor's tunnel; you may want to use @command{privoxy} instead to avoid such limitations." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2372 +msgid "If you don't want to always get substitutes through Tor but using it just some of the times, then skip the @code{guix-configuration}. When you want to get a substitute from the Tor tunnel run:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2376 +#, no-wrap +msgid "" +"sudo herd set-http-proxy guix-daemon http://localhost:9250\n" +"guix build --substitute-urls=https://bp7o7ckwlewr4slm.onion …\n" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix-cookbook.texi:2380 +#, no-wrap +msgid "nginx, lua, openresty, resty" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2383 +msgid "NGINX could be extended with Lua scripts." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2386 +msgid "Guix provides NGINX service with ability to load Lua module and specific Lua packages, and reply to requests by evaluating Lua scripts." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2390 +msgid "The following example demonstrates system definition with configuration to evaluate @file{index.lua} Lua script on HTTP request to @uref{http://localhost/hello} endpoint:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2393 +#, no-wrap +msgid "" +"local shell = require \"resty.shell\"\n" +"\n" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2397 +#, no-wrap +msgid "" +"local stdin = \"\"\n" +"local timeout = 1000 -- ms\n" +"local max_size = 4096 -- byte\n" +"\n" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2400 +#, no-wrap +msgid "" +"local ok, stdout, stderr, reason, status =\n" +" shell.run([[/run/current-system/profile/bin/ls /tmp]], stdin, timeout, max_size)\n" +"\n" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2402 +#, no-wrap +msgid "ngx.say(stdout)\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:2433 +#, no-wrap +msgid "" +"(use-modules (gnu))\n" +"(use-service-modules #;… web)\n" +"(use-package-modules #;… lua)\n" +"(operating-system\n" +" ;; …\n" +" (services\n" +" ;; …\n" +" (service nginx-service-type\n" +" (nginx-configuration\n" +" (modules\n" +" (list\n" +" (file-append nginx-lua-module \"/etc/nginx/modules/ngx_http_lua_module.so\")))\n" +" (lua-package-path (list lua-resty-core\n" +" lua-resty-lrucache\n" +" lua-resty-signal\n" +" lua-tablepool\n" +" lua-resty-shell))\n" +" (lua-package-cpath (list lua-resty-signal))\n" +" (server-blocks\n" +" (list (nginx-server-configuration\n" +" (server-name '(\"localhost\"))\n" +" (listen '(\"80\"))\n" +" (root \"/etc\")\n" +" (locations (list\n" +" (nginx-location-configuration\n" +" (uri \"/hello\")\n" +" (body (list #~(format #f \"content_by_lua_file ~s;\"\n" +" #$(local-file \"index.lua\"))))))))))))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2444 +msgid "Guix is a functional package manager that offers many features beyond what more traditional package managers can do. To the uninitiated, those features might not have obvious use cases at first. The purpose of this chapter is to demonstrate some advanced package management concepts." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2447 +msgid "@pxref{Package Management,,, guix, GNU Guix Reference Manual} for a complete reference." +msgstr "" + +#. type: section +#: guix-git/doc/guix-cookbook.texi:2450 guix-git/doc/guix-cookbook.texi:2452 +#: guix-git/doc/guix-cookbook.texi:2453 +#, no-wrap +msgid "Guix Profiles in Practice" +msgstr "" + +#. type: menuentry +#: guix-git/doc/guix-cookbook.texi:2450 +msgid "Strategies for multiple profiles and manifests." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2458 +msgid "Guix provides a very useful feature that may be quite foreign to newcomers: @emph{profiles}. They are a way to group package installations together and all users on the same system are free to use as many profiles as they want." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2463 +msgid "Whether you're a developer or not, you may find that multiple profiles bring you great power and flexibility. While they shift the paradigm somewhat compared to @emph{traditional package managers}, they are very convenient to use once you've understood how to set them up." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2469 +msgid "If you are familiar with Python's @samp{virtualenv}, you can think of a profile as a kind of universal @samp{virtualenv} that can hold any kind of software whatsoever, not just Python software. Furthermore, profiles are self-sufficient: they capture all the runtime dependencies which guarantees that all programs within a profile will always work at any point in time." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2471 +msgid "Multiple profiles have many benefits:" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2475 +msgid "Clean semantic separation of the various packages a user needs for different contexts." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2479 +msgid "Multiple profiles can be made available into the environment either on login or within a dedicated shell." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2483 +msgid "Profiles can be loaded on demand. For instance, the user can use multiple shells, each of them running different profiles." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2488 +msgid "Isolation: Programs from one profile will not use programs from the other, and the user can even install different versions of the same programs to the two profiles without conflict." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2492 +msgid "Deduplication: Profiles share dependencies that happens to be the exact same. This makes multiple profiles storage-efficient." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2500 +msgid "Reproducible: when used with declarative manifests, a profile can be fully specified by the Guix commit that was active when it was set up. This means that the exact same profile can be @uref{https://guix.gnu.org/blog/2018/multi-dimensional-transactions-and-rollbacks-oh-my/, set up anywhere and anytime}, with just the commit information. See the section on @ref{Reproducible profiles}." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2504 +msgid "Easier upgrades and maintenance: Multiple profiles make it easy to keep package listings at hand and make upgrades completely frictionless." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2507 +msgid "Concretely, here follows some typical profiles:" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2511 +msgid "The dependencies of a project you are working on." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2514 +msgid "Your favourite programming language libraries." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2517 +msgid "Laptop-specific programs (like @samp{powertop}) that you don't need on a desktop." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2521 +msgid "@TeX{}live (this one can be really useful when you need to install just one package for this one document you've just received over email)." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2524 +msgid "Games." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2527 +msgid "Let's dive in the set up!" +msgstr "" + +#. type: subsection +#: guix-git/doc/guix-cookbook.texi:2528 guix-git/doc/guix-cookbook.texi:2529 +#, no-wrap +msgid "Basic setup with manifests" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2533 +msgid "A Guix profile can be set up @emph{via} a so-called @emph{manifest specification} that looks like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix-cookbook.texi:2543 +#, no-wrap +msgid "" +"(specifications->manifest\n" +" '(\"package-1\"\n" +" ;; Version 1.3 of package-2.\n" +" \"package-2@@1.3\"\n" +" ;; The \"lib\" output of package-3.\n" +" \"package-3:lib\"\n" +" ; ...\n" +" \"package-N\"))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2547 +msgid "@pxref{Invoking guix package,,, guix, GNU Guix Reference Manual}, for the syntax details." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2549 +msgid "We can create a manifest specification per profile and install them this way:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2554 +#, no-wrap +msgid "" +"GUIX_EXTRA_PROFILES=$HOME/.guix-extra-profiles\n" +"mkdir -p \"$GUIX_EXTRA_PROFILES\"/my-project # if it does not exist yet\n" +"guix package --manifest=/path/to/guix-my-project-manifest.scm --profile=\"$GUIX_EXTRA_PROFILES\"/my-project/my-project\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2558 +msgid "Here we set an arbitrary variable @samp{GUIX_EXTRA_PROFILES} to point to the directory where we will store our profiles in the rest of this article." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2564 +msgid "Placing all your profiles in a single directory, with each profile getting its own sub-directory, is somewhat cleaner. This way, each sub-directory will contain all the symlinks for precisely one profile. Besides, ``looping over profiles'' becomes obvious from any programming language (e.g.@: a shell script) by simply looping over the sub-directories of @samp{$GUIX_EXTRA_PROFILES}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2566 +msgid "Note that it's also possible to loop over the output of" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2569 +#, no-wrap +msgid "guix package --list-profiles\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2572 +msgid "although you'll probably have to filter out @file{~/.config/guix/current}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2574 +msgid "To enable all profiles on login, add this to your @file{~/.bash_profile} (or similar):" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2584 +#, no-wrap +msgid "" +"for i in $GUIX_EXTRA_PROFILES/*; do\n" +" profile=$i/$(basename \"$i\")\n" +" if [ -f \"$profile\"/etc/profile ]; then\n" +" GUIX_PROFILE=\"$profile\"\n" +" . \"$GUIX_PROFILE\"/etc/profile\n" +" fi\n" +" unset profile\n" +"done\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2589 +msgid "Note to Guix System users: the above reflects how your default profile @file{~/.guix-profile} is activated from @file{/etc/profile}, that latter being loaded by @file{~/.bashrc} by default." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2591 +msgid "You can obviously choose to only enable a subset of them:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2601 +#, no-wrap +msgid "" +"for i in \"$GUIX_EXTRA_PROFILES\"/my-project-1 \"$GUIX_EXTRA_PROFILES\"/my-project-2; do\n" +" profile=$i/$(basename \"$i\")\n" +" if [ -f \"$profile\"/etc/profile ]; then\n" +" GUIX_PROFILE=\"$profile\"\n" +" . \"$GUIX_PROFILE\"/etc/profile\n" +" fi\n" +" unset profile\n" +"done\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2605 +msgid "When a profile is off, it's straightforward to enable it for an individual shell without \"polluting\" the rest of the user session:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2608 +#, no-wrap +msgid "GUIX_PROFILE=\"path/to/my-project\" ; . \"$GUIX_PROFILE\"/etc/profile\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2615 +msgid "The key to enabling a profile is to @emph{source} its @samp{etc/profile} file. This file contains shell code that exports the right environment variables necessary to activate the software contained in the profile. It is built automatically by Guix and meant to be sourced. It contains the same variables you would get if you ran:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2618 +#, no-wrap +msgid "guix package --search-paths=prefix --profile=$my_profile\"\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2622 +msgid "Once again, see (@pxref{Invoking guix package,,, guix, GNU Guix Reference Manual}) for the command line options." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2624 +msgid "To upgrade a profile, simply install the manifest again:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2627 +#, no-wrap +msgid "guix package -m /path/to/guix-my-project-manifest.scm -p \"$GUIX_EXTRA_PROFILES\"/my-project/my-project\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2633 +msgid "To upgrade all profiles, it's easy enough to loop over them. For instance, assuming your manifest specifications are stored in @file{~/.guix-manifests/guix-$profile-manifest.scm}, with @samp{$profile} being the name of the profile (e.g.@: \"project1\"), you could do the following in Bourne shell:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2638 +#, no-wrap +msgid "" +"for profile in \"$GUIX_EXTRA_PROFILES\"/*; do\n" +" guix package --profile=\"$profile\" --manifest=\"$HOME/.guix-manifests/guix-$profile-manifest.scm\"\n" +"done\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2641 +msgid "Each profile has its own generations:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2644 +#, no-wrap +msgid "guix package -p \"$GUIX_EXTRA_PROFILES\"/my-project/my-project --list-generations\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2647 +msgid "You can roll-back to any generation of a given profile:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2650 +#, no-wrap +msgid "guix package -p \"$GUIX_EXTRA_PROFILES\"/my-project/my-project --switch-generations=17\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2654 +msgid "Finally, if you want to switch to a profile without inheriting from the current environment, you can activate it from an empty shell:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2658 +#, no-wrap +msgid "" +"env -i $(which bash) --login --noprofile --norc\n" +". my-project/etc/profile\n" +msgstr "" + +#. type: subsection +#: guix-git/doc/guix-cookbook.texi:2660 guix-git/doc/guix-cookbook.texi:2661 +#, no-wrap +msgid "Required packages" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2666 +msgid "Activating a profile essentially boils down to exporting a bunch of environmental variables. This is the role of the @samp{etc/profile} within the profile." +msgstr "" + +#. type: emph{#1} +#: guix-git/doc/guix-cookbook.texi:2669 +msgid "Note: Only the environmental variables of the packages that consume them will be set." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2673 +msgid "For instance, @samp{MANPATH} won't be set if there is no consumer application for man pages within the profile. So if you need to transparently access man pages once the profile is loaded, you've got two options:" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2677 +msgid "Either export the variable manually, e.g." +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2679 +#, no-wrap +msgid "export MANPATH=/path/to/profile$@{MANPATH:+:@}$MANPATH\n" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2683 +msgid "Or include @samp{man-db} to the profile manifest." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2687 +msgid "The same is true for @samp{INFOPATH} (you can install @samp{info-reader}), @samp{PKG_CONFIG_PATH} (install @samp{pkg-config}), etc." +msgstr "" + +#. type: subsection +#: guix-git/doc/guix-cookbook.texi:2688 guix-git/doc/guix-cookbook.texi:2689 +#, no-wrap +msgid "Default profile" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2692 +msgid "What about the default profile that Guix keeps in @file{~/.guix-profile}?" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2695 +msgid "You can assign it the role you want. Typically you would install the manifest of the packages you want to use all the time." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2699 +msgid "Alternatively, you could keep it ``manifest-less'' for throw-away packages that you would just use for a couple of days. This way makes it convenient to run" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2703 +#, no-wrap +msgid "" +"guix install package-foo\n" +"guix upgrade package-bar\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2706 +msgid "without having to specify the path to a profile." +msgstr "" + +#. type: subsection +#: guix-git/doc/guix-cookbook.texi:2707 guix-git/doc/guix-cookbook.texi:2708 +#, no-wrap +msgid "The benefits of manifests" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2712 +msgid "Manifests are a convenient way to keep your package lists around and, say, to synchronize them across multiple machines using a version control system." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2716 +msgid "A common complaint about manifests is that they can be slow to install when they contain large number of packages. This is especially cumbersome when you just want get an upgrade for one package within a big manifest." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2721 +msgid "This is one more reason to use multiple profiles, which happen to be just perfect to break down manifests into multiple sets of semantically connected packages. Using multiple, small profiles provides more flexibility and usability." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2723 +msgid "Manifests come with multiple benefits. In particular, they ease maintenance:" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2731 +msgid "When a profile is set up from a manifest, the manifest itself is self-sufficient to keep a ``package listing'' around and reinstall the profile later or on a different system. For ad-hoc profiles, we would need to generate a manifest specification manually and maintain the package versions for the packages that don't use the default version." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2736 +msgid "@code{guix package --upgrade} always tries to update the packages that have propagated inputs, even if there is nothing to do. Guix manifests remove this problem." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2742 +msgid "When partially upgrading a profile, conflicts may arise (due to diverging dependencies between the updated and the non-updated packages) and they can be annoying to resolve manually. Manifests remove this problem altogether since all packages are always upgraded at once." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2748 +msgid "As mentioned above, manifests allow for reproducible profiles, while the imperative @code{guix install}, @code{guix upgrade}, etc. do not, since they produce different profiles every time even when they hold the same packages. See @uref{https://issues.guix.gnu.org/issue/33285, the related discussion on the matter}." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2756 +msgid "Manifest specifications are usable by other @samp{guix} commands. For example, you can run @code{guix weather -m manifest.scm} to see how many substitutes are available, which can help you decide whether you want to try upgrading today or wait a while. Another example: you can run @code{guix pack -m manifest.scm} to create a pack containing all the packages in the manifest (and their transitive references)." +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2760 +msgid "Finally, manifests have a Scheme representation, the @samp{} record type. They can be manipulated in Scheme and passed to the various Guix @uref{https://en.wikipedia.org/wiki/Api, APIs}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2768 +msgid "It's important to understand that while manifests can be used to declare profiles, they are not strictly equivalent: profiles have the side effect that they ``pin'' packages in the store, which prevents them from being garbage-collected (@pxref{Invoking guix gc,,, guix, GNU Guix Reference Manual}) and ensures that they will still be available at any point in the future." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2770 +msgid "Let's take an example:" +msgstr "" + +#. type: enumerate +#: guix-git/doc/guix-cookbook.texi:2776 +msgid "We have an environment for hacking on a project for which there isn't a Guix package yet. We build the environment using a manifest, and then run @code{guix environment -m manifest.scm}. So far so good." +msgstr "" + +#. type: enumerate +#: guix-git/doc/guix-cookbook.texi:2782 +msgid "Many weeks pass and we have run a couple of @code{guix pull} in the mean time. Maybe a dependency from our manifest has been updated; or we may have run @code{guix gc} and some packages needed by our manifest have been garbage-collected." +msgstr "" + +#. type: enumerate +#: guix-git/doc/guix-cookbook.texi:2787 +msgid "Eventually, we set to work on that project again, so we run @code{guix environment -m manifest.scm}. But now we have to wait for Guix to build and install stuff!" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2793 +msgid "Ideally, we could spare the rebuild time. And indeed we can, all we need is to install the manifest to a profile and use @code{GUIX_PROFILE=/the/profile; . \"$GUIX_PROFILE\"/etc/profile} as explained above: this guarantees that our hacking environment will be available at all times." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2796 +msgid "@emph{Security warning:} While keeping old profiles around can be convenient, keep in mind that outdated packages may not have received the latest security fixes." +msgstr "" + +#. type: subsection +#: guix-git/doc/guix-cookbook.texi:2797 guix-git/doc/guix-cookbook.texi:2798 +#, no-wrap +msgid "Reproducible profiles" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2801 +msgid "To reproduce a profile bit-for-bit, we need two pieces of information:" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2805 +msgid "a manifest," +msgstr "" + +#. type: itemize +#: guix-git/doc/guix-cookbook.texi:2807 +msgid "a Guix channel specification." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2811 +msgid "Indeed, manifests alone might not be enough: different Guix versions (or different channels) can produce different outputs for a given manifest." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2815 +msgid "You can output the Guix channel specification with @samp{guix describe --format=channels}. Save this to a file, say @samp{channel-specs.scm}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2818 +msgid "On another computer, you can use the channel specification file and the manifest to reproduce the exact same profile:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2822 +#, no-wrap +msgid "" +"GUIX_EXTRA_PROFILES=$HOME/.guix-extra-profiles\n" +"GUIX_EXTRA=$HOME/.guix-extra\n" +"\n" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2825 +#, no-wrap +msgid "" +"mkdir \"$GUIX_EXTRA\"/my-project\n" +"guix pull --channels=channel-specs.scm --profile \"$GUIX_EXTRA/my-project/guix\"\n" +"\n" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2828 +#, no-wrap +msgid "" +"mkdir -p \"$GUIX_EXTRA_PROFILES/my-project\"\n" +"\"$GUIX_EXTRA\"/my-project/guix/bin/guix package --manifest=/path/to/guix-my-project-manifest.scm --profile=\"$GUIX_EXTRA_PROFILES\"/my-project/my-project\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2832 +msgid "It's safe to delete the Guix channel profile you've just installed with the channel specification, the project profile does not depend on it." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2839 +msgid "Guix provides multiple tools to manage environment. This chapter demonstrate such utilities." +msgstr "" + +#. type: section +#: guix-git/doc/guix-cookbook.texi:2842 guix-git/doc/guix-cookbook.texi:2844 +#: guix-git/doc/guix-cookbook.texi:2845 +#, no-wrap +msgid "Guix environment via direnv" +msgstr "" + +#. type: menuentry +#: guix-git/doc/guix-cookbook.texi:2842 +msgid "Setup Guix environment with direnv" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2850 +msgid "Guix provides a @samp{direnv} package, which could extend shell after directory change. This tool could be used to prepare a pure Guix environment." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2856 +msgid "The following example provides a shell function for @file{~/.direnvrc} file, which could be used from Guix Git repository in @file{~/src/guix/.envrc} file to setup a build environment similar to described in @pxref{Building from Git,,, guix, GNU Guix Reference Manual}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2858 +msgid "Create a @file{~/.direnvrc} with a Bash code:" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2876 +#, no-wrap +msgid "" +"# Thanks \n" +"export_function()\n" +"@{\n" +" local name=$1\n" +" local alias_dir=$PWD/.direnv/aliases\n" +" mkdir -p \"$alias_dir\"\n" +" PATH_add \"$alias_dir\"\n" +" local target=\"$alias_dir/$name\"\n" +" if declare -f \"$name\" >/dev/null; then\n" +" echo \"#!$SHELL\" > \"$target\"\n" +" declare -f \"$name\" >> \"$target\" 2>/dev/null\n" +" # Notice that we add shell variables to the function trigger.\n" +" echo \"$name \\$*\" >> \"$target\"\n" +" chmod +x \"$target\"\n" +" fi\n" +"@}\n" +"\n" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2881 +#, no-wrap +msgid "" +"use_guix()\n" +"@{\n" +" # Set GitHub token.\n" +" export GUIX_GITHUB_TOKEN=\"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\"\n" +"\n" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2884 +#, no-wrap +msgid "" +" # Unset 'GUIX_PACKAGE_PATH'.\n" +" export GUIX_PACKAGE_PATH=\"\"\n" +"\n" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2893 +#, no-wrap +msgid "" +" # Recreate a garbage collector root.\n" +" gcroots=\"$HOME/.config/guix/gcroots\"\n" +" mkdir -p \"$gcroots\"\n" +" gcroot=\"$gcroots/guix\"\n" +" if [ -L \"$gcroot\" ]\n" +" then\n" +" rm -v \"$gcroot\"\n" +" fi\n" +"\n" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2908 +#, no-wrap +msgid "" +" # Miscellaneous packages.\n" +" PACKAGES_MAINTENANCE=(\n" +" direnv\n" +" git\n" +" git:send-email\n" +" git-cal\n" +" gnupg\n" +" guile-colorized\n" +" guile-readline\n" +" less\n" +" ncurses\n" +" openssh\n" +" xdot\n" +" )\n" +"\n" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2911 +#, no-wrap +msgid "" +" # Environment packages.\n" +" PACKAGES=(help2man guile-sqlite3 guile-gcrypt)\n" +"\n" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2914 +#, no-wrap +msgid "" +" # Thanks \n" +" eval \"$(guix environment --search-paths --root=\"$gcroot\" --pure guix --ad-hoc $@{PACKAGES[@@]@} $@{PACKAGES_MAINTENANCE[@@]@} \"$@@\")\"\n" +"\n" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2921 +#, no-wrap +msgid "" +" # Predefine configure flags.\n" +" configure()\n" +" @{\n" +" ./configure --localstatedir=/var --prefix=\n" +" @}\n" +" export_function configure\n" +"\n" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2932 +#, no-wrap +msgid "" +" # Run make and optionally build something.\n" +" build()\n" +" @{\n" +" make -j 2\n" +" if [ $# -gt 0 ]\n" +" then\n" +" ./pre-inst-env guix build \"$@@\"\n" +" fi\n" +" @}\n" +" export_function build\n" +"\n" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2939 +#, no-wrap +msgid "" +" # Predefine push Git command.\n" +" push()\n" +" @{\n" +" git push --set-upstream origin\n" +" @}\n" +" export_function push\n" +"\n" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2942 +#, no-wrap +msgid "" +" clear # Clean up the screen.\n" +" git-cal --author='Your Name' # Show contributions calendar.\n" +"\n" +msgstr "" + +#. type: example +#: guix-git/doc/guix-cookbook.texi:2950 +#, no-wrap +msgid "" +" # Show commands help.\n" +" echo \"\n" +"build build a package or just a project if no argument provided\n" +"configure run ./configure with predefined parameters\n" +"push push to upstream Git repository\n" +"\"\n" +"@}\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2954 +msgid "Every project containing @file{.envrc} with a string @code{use guix} will have predefined environment variables and procedures." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2956 +msgid "Run @command{direnv allow} to setup the environment for the first time." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2968 +msgid "Guix is based on the @uref{https://nixos.org/nix/, Nix package manager}, which was designed and implemented by Eelco Dolstra, with contributions from other people (see the @file{nix/AUTHORS} file in Guix.) Nix pioneered functional package management, and promoted unprecedented features, such as transactional package upgrades and rollbacks, per-user profiles, and referentially transparent build processes. Without this work, Guix would not exist." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2971 +msgid "The Nix-based software distributions, Nixpkgs and NixOS, have also been an inspiration for Guix." +msgstr "As distribuições de software baseadas em Nix, Nixpkgs e NixOS, também foram uma inspiração para o Guix." + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2977 +msgid "GNU@tie{}Guix itself is a collective work with contributions from a number of people. See the @file{AUTHORS} file in Guix for more information on these fine people. The @file{THANKS} file lists people who have helped by reporting bugs, taking care of the infrastructure, providing artwork and themes, making suggestions, and more---thank you!" +msgstr "O GNU@tie{}Guix em si é um trabalho coletivo com contribuições de várias pessoas. Veja o arquivo @file{AUTHORS} no Guix para obter mais informações sobre essas pessoas legais. O arquivo @file{THANKS} lista as pessoas que ajudaram a relatar erros, cuidar da infraestrutura, fornecer ilustrações e temas, fazer sugestões e muito mais -- obrigado!" + +#. type: Plain text +#: guix-git/doc/guix-cookbook.texi:2980 +msgid "This document includes adapted sections from articles that have previously been published on the Guix blog at @uref{https://guix.gnu.org/blog}." +msgstr "" + +#. type: cindex +#: guix-git/doc/guix-cookbook.texi:2985 +#, no-wrap +msgid "license, GNU Free Documentation License" +msgstr "licença, Licença de Documentação Livre GNU" + +#. type: include +#: guix-git/doc/guix-cookbook.texi:2986 +#, no-wrap +msgid "fdl-1.3.texi" +msgstr "fdl-1.3.texi" diff --git a/po/doc/guix-cookbook.sk.po b/po/doc/guix-cookbook.sk.po index 86be241cdb..1f3d74a7e3 100644 --- a/po/doc/guix-cookbook.sk.po +++ b/po/doc/guix-cookbook.sk.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE # Copyright (C) 2021 the authors of Guix (msgids) and the following authors (msgstr) # This file is distributed under the same license as the guix manual package. -# Marek Felšöci , 2021. +# Marek Felšöci , 2021, 2022. msgid "" msgstr "" "Project-Id-Version: guix manual checkout\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" "POT-Creation-Date: 2021-12-31 15:18+0000\n" -"PO-Revision-Date: 2021-12-15 00:16+0000\n" +"PO-Revision-Date: 2022-01-25 15:16+0000\n" "Last-Translator: Marek Felšöci \n" "Language-Team: Slovak \n" "Language: sk\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 4.9.1\n" +"X-Generator: Weblate 4.10.1\n" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:7 @@ -172,7 +172,7 @@ msgstr "Ďakujeme!" #: guix-git/doc/guix-cookbook.texi:2984 #, no-wrap msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" +msgstr "Licencia GNU Free Documentation" #. type: menuentry #: guix-git/doc/guix-cookbook.texi:77 @@ -949,13 +949,13 @@ msgstr "" "/gnu/store/rzs8wba9ka7grrmgcpfyxvs58mly0sx6-hello-2.10.tar.gz.sig\n" "0q0v86n3y38z17rl146gdakw9xc4mcscpk8dscs412j22glrv9jf\n" "$ gpg --verify /gnu/store/rzs8wba9ka7grrmgcpfyxvs58mly0sx6-hello-2.10.tar.gz.sig /gnu/store/hbdalsf5lpf01x4dcknwx6xbn6n5km6k-hello-2.10.tar.gz\n" -"gpg: Signature made Sun 16 Nov 2014 01:08:37 PM CET\n" -"gpg: using RSA key A9553245FDE9B739\n" -"gpg: Good signature from \"Sami Kerola \" [unknown]\n" -"gpg: aka \"Sami Kerola (http://www.iki.fi/kerolasa/) \" [unknown]\n" -"gpg: WARNING: This key is not certified with a trusted signature!\n" -"gpg: There is no indication that the signature belongs to the owner.\n" -"Primary key fingerprint: 8ED3 96E3 7E38 D471 A005 30D3 A955 3245 FDE9 B739\n" +"gpg: Podpis vytvorený Ne 16. november 2014, 13:08:37 CET\n" +"gpg: pomocou RSA kľúča A9553245FDE9B739\n" +"gpg: Dobrý podpis od \"Sami Kerola \" neznáme\n" +"gpg: alias \"Sami Kerola (http://www.iki.fi/kerolasa/) \" neznáme\n" +"gpg: VAROVANIE: Tento kľúč nie certifikovaný dôveryhodným podpisom!\n" +"gpg: Nič nenaznačuje tomu, že tento podpis patrí vlastníkovi kľúča.\n" +"Primárny fingerprint kľúča: 8ED3 96E3 7E38 D471 A005 30D3 A955 3245 FDE9 B739\n" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:530 @@ -1407,67 +1407,7 @@ msgstr "" #. type: lisp #: guix-git/doc/guix-cookbook.texi:834 -#, fuzzy, no-wrap -#| msgid "" -#| "(define-public my-libgit2\n" -#| " (let ((commit \"e98d0a37c93574d2c6107bf7f31140b548c6a7bf\")\n" -#| " (revision \"1\"))\n" -#| " (package\n" -#| " (name \"my-libgit2\")\n" -#| " (version (git-version \"0.26.6\" revision commit))\n" -#| " (source (origin\n" -#| " (method git-fetch)\n" -#| " (uri (git-reference\n" -#| " (url \"https://github.com/libgit2/libgit2/\")\n" -#| " (commit commit)))\n" -#| " (file-name (git-file-name name version))\n" -#| " (sha256\n" -#| " (base32\n" -#| " \"17pjvprmdrx4h6bb1hhc98w9qi6ki7yl57f090n9kbhswxqfs7s3\"))\n" -#| " (patches (search-patches \"libgit2-mtime-0.patch\"))\n" -#| " (modules '((guix build utils)))\n" -#| " (snippet '(begin\n" -#| " ;; Remove bundled software.\n" -#| " (delete-file-recursively \"deps\")\n" -#| " #true))))\n" -#| " (build-system cmake-build-system)\n" -#| " (outputs '(\"out\" \"debug\"))\n" -#| " (arguments\n" -#| " `(#:tests? #true ; Run the test suite (this is the default)\n" -#| " #:configure-flags '(\"-DUSE_SHA1DC=ON\") ; SHA-1 collision detection\n" -#| " #:phases\n" -#| " (modify-phases %standard-phases\n" -#| " (add-after 'unpack 'fix-hardcoded-paths\n" -#| " (lambda _\n" -#| " (substitute* \"tests/repo/init.c\"\n" -#| " ((\"#!/bin/sh\") (string-append \"#!\" (which \"sh\"))))\n" -#| " (substitute* \"tests/clar/fs.h\"\n" -#| " ((\"/bin/cp\") (which \"cp\"))\n" -#| " ((\"/bin/rm\") (which \"rm\")))\n" -#| " #true))\n" -#| " ;; Run checks more verbosely.\n" -#| " (replace 'check\n" -#| " (lambda _ (invoke \"./libgit2_clar\" \"-v\" \"-Q\")))\n" -#| " (add-after 'unpack 'make-files-writable-for-tests\n" -#| " (lambda _ (for-each make-file-writable (find-files \".\" \".*\")))))))\n" -#| " (inputs\n" -#| " `((\"libssh2\" ,libssh2)\n" -#| " (\"http-parser\" ,http-parser)\n" -#| " (\"python\" ,python-wrapper)))\n" -#| " (native-inputs\n" -#| " `((\"pkg-config\" ,pkg-config)))\n" -#| " (propagated-inputs\n" -#| " ;; These two libraries are in 'Requires.private' in libgit2.pc.\n" -#| " `((\"openssl\" ,openssl)\n" -#| " (\"zlib\" ,zlib)))\n" -#| " (home-page \"https://libgit2.github.com/\")\n" -#| " (synopsis \"Library providing Git core methods\")\n" -#| " (description\n" -#| " \"Libgit2 is a portable, pure C implementation of the Git core methods\n" -#| "provided as a re-entrant linkable library with a solid API, allowing you to\n" -#| "write native speed custom Git applications in any language with bindings.\")\n" -#| " ;; GPLv2 with linking exception\n" -#| " (license license:gpl2))))\n" +#, no-wrap msgid "" "(define-public my-libgit2\n" " (let ((commit \"e98d0a37c93574d2c6107bf7f31140b548c6a7bf\")\n" @@ -1540,15 +1480,13 @@ msgstr "" " \"17pjvprmdrx4h6bb1hhc98w9qi6ki7yl57f090n9kbhswxqfs7s3\"))\n" " (patches (search-patches \"libgit2-mtime-0.patch\"))\n" " (modules '((guix build utils)))\n" -" (snippet '(begin\n" -" ;; Remove bundled software.\n" -" (delete-file-recursively \"deps\")\n" -" #true))))\n" +" ;; Odstrániť pribalený softvér.\n" +" (snippet '(delete-file-recursively \"deps\"))))\n" " (build-system cmake-build-system)\n" " (outputs '(\"out\" \"debug\"))\n" " (arguments\n" -" `(#:tests? #true ; Run the test suite (this is the default)\n" -" #:configure-flags '(\"-DUSE_SHA1DC=ON\") ; SHA-1 collision detection\n" +" `(#:tests? #true ; Preveriť výsledok zostavenia (predvolené).\n" +" #:configure-flags '(\"-DUSE_SHA1DC=ON\") ; Zisťovanie rozporov v odtlačkoch SHA-1\n" " #:phases\n" " (modify-phases %standard-phases\n" " (add-after 'unpack 'fix-hardcoded-paths\n" @@ -1557,30 +1495,26 @@ msgstr "" " ((\"#!/bin/sh\") (string-append \"#!\" (which \"sh\"))))\n" " (substitute* \"tests/clar/fs.h\"\n" " ((\"/bin/cp\") (which \"cp\"))\n" -" ((\"/bin/rm\") (which \"rm\")))\n" -" #true))\n" -" ;; Run checks more verbosely.\n" +" ((\"/bin/rm\") (which \"rm\")))))\n" +" ;; Bohatší výstup pri preverovaní zostavenia\n" " (replace 'check\n" " (lambda _ (invoke \"./libgit2_clar\" \"-v\" \"-Q\")))\n" " (add-after 'unpack 'make-files-writable-for-tests\n" " (lambda _ (for-each make-file-writable (find-files \".\" \".*\")))))))\n" " (inputs\n" -" `((\"libssh2\" ,libssh2)\n" -" (\"http-parser\" ,http-parser)\n" -" (\"python\" ,python-wrapper)))\n" +" (list libssh2 http-parser python-wrapper))\n" " (native-inputs\n" -" `((\"pkg-config\" ,pkg-config)))\n" +" (list pkg-config))\n" " (propagated-inputs\n" -" ;; These two libraries are in 'Requires.private' in libgit2.pc.\n" -" `((\"openssl\" ,openssl)\n" -" (\"zlib\" ,zlib)))\n" +" ;; Tieto dve knižnice sa nachádzajú v „Requires.private“ v libgit2.pc.\n" +" (list openssl zlib))\n" " (home-page \"https://libgit2.github.com/\")\n" " (synopsis \"Library providing Git core methods\")\n" " (description\n" " \"Libgit2 is a portable, pure C implementation of the Git core methods\n" "provided as a re-entrant linkable library with a solid API, allowing you to\n" "write native speed custom Git applications in any language with bindings.\")\n" -" ;; GPLv2 with linking exception\n" +" ;; GPLv2 s odkazovou výnimkou\n" " (license license:gpl2))))\n" #. type: Plain text @@ -1685,7 +1619,7 @@ msgstr "Vyžadované pri zostavovaní ale nie pri spúšťaní. V prípade inšt #: guix-git/doc/guix-cookbook.texi:895 #, no-wrap msgid "inputs" -msgstr "inputs" +msgstr "vstupy" #. type: table #: guix-git/doc/guix-cookbook.texi:898 @@ -1727,12 +1661,12 @@ msgstr "Rovnako to platí aj pre @emph{native-inputs}: po inštalácii programu #: guix-git/doc/guix-cookbook.texi:922 guix-git/doc/guix-cookbook.texi:1892 #, no-wrap msgid "Note" -msgstr "" +msgstr "Poznámka" #. type: quotation #: guix-git/doc/guix-cookbook.texi:925 msgid "You may see here and there snippets where package inputs are written quite differently, like so:" -msgstr "" +msgstr "Tu a tam nájdete úryvky, v ktorých sú vstupy zapísané pomerne odlišne, teda asi takto:" #. type: lisp #: guix-git/doc/guix-cookbook.texi:932 @@ -1744,11 +1678,16 @@ msgid "" " (\"http-parser\" ,http-parser)\n" " (\"python\" ,python-wrapper)))\n" msgstr "" +";; „Pôvodný tvar“ zápisu vstupov\n" +"(inputs\n" +" `((\"libssh2\" ,libssh2)\n" +" (\"http-parser\" ,http-parser)\n" +" (\"python\" ,python-wrapper)))\n" #. type: quotation #: guix-git/doc/guix-cookbook.texi:938 msgid "This is the ``old style'', where each input in the list is explicitly given a label (a string). It is still supported but we recommend using the style above instead. @xref{package Reference,,, guix, GNU Guix Reference Manual}, for more info." -msgstr "" +msgstr "Toto je „pôvodný tvar“, v ktorom má každá položka zoznamu vstupov pridelenú menovku (reťazec). Tento tvar je stále podporovaný ale odporúčame vám používať už len vyššie uvedený tvar. Viď @xref{package Reference,,, guix, GNU Guix Reference Manual} pre viac podrobností." #. type: subsubsection #: guix-git/doc/guix-cookbook.texi:940 @@ -2006,7 +1945,7 @@ msgstr "@code{(delete @var{krok})}." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1086 msgid "The @var{procedure} supports the keyword arguments @code{inputs} and @code{outputs}. Each input (whether @emph{native}, @emph{propagated} or not) and output directory is referenced by their name in those variables. Thus @code{(assoc-ref outputs \"out\")} is the store directory of the main output of the package. A phase procedure may look like this:" -msgstr "" +msgstr "@var{Funkcia} podporuje parametre @code{inputs} a @code{outputs} v tvare kľúčových slov. Každý vstup (či už @emph{pôvodný}, @emph{rozšírený} alebo nie) a výstupný priečinok je označený svojim názvom v týchto premenných. Takže @code{(assoc-ref outputs \"out\")} predstavuje priečinok úložiska hlavného výstupu balíka. Funkcia kroku vyzerá nasledovne:" #. type: lisp #: guix-git/doc/guix-cookbook.texi:1094 @@ -2019,211 +1958,217 @@ msgid "" " ;; ...\n" " #true))\n" msgstr "" +"(lambda* (#:key inputs outputs #:allow-other-keys)\n" +" (let ((bash-directory (assoc-ref inputs \"bash\"))\n" +" (output-directory (assoc-ref outputs \"out\"))\n" +" (doc-directory (assoc-ref outputs \"doc\")))\n" +" ;; ...\n" +" #true))\n" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1100 msgid "The procedure must return @code{#true} on success. It's brittle to rely on the return value of the last expression used to tweak the phase because there is no guarantee it would be a @code{#true}. Hence the trailing @code{#true} to ensure the right value is returned on success." -msgstr "" +msgstr "Funkcia musí po úspešnom vykonaní vrátiť @code{#true}. Nie je veľmi spoľahlivé opierať sa o návratovú hodnotu posledného výrazu keďže nie je isté, že to bude práve @code{#true}. Koncové @code{#true} zaisťuje, že bude po úspešnom vykonaní vrátená správna hodnota." #. type: subsubsection #: guix-git/doc/guix-cookbook.texi:1101 #, no-wrap msgid "Code staging" -msgstr "" +msgstr "Oddialené vykonanie" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1107 msgid "The astute reader may have noticed the quasi-quote and comma syntax in the argument field. Indeed, the build code in the package declaration should not be evaluated on the client side, but only when passed to the Guix daemon. This mechanism of passing code around two running processes is called @uref{https://arxiv.org/abs/1709.00833, code staging}." -msgstr "" +msgstr "Ak ste boli pozorní, mohli ste si všimnúť obrátenú úvodzovku a čiarku v poli parametrov. Vskutku, zdrojový kód zostavenia v zadaní balíka by sa nemal vykonávať na strane klienta, ale až vtedy, keď sa odovzdá démonovi Guixu. Toto odovzdávanie zdrojového kódu medzi dvoma procesmi nazývame @uref{https://arxiv.org/abs/1709.00833, oddialené vykonanie}." #. type: subsubsection #: guix-git/doc/guix-cookbook.texi:1108 #, no-wrap msgid "Utility functions" -msgstr "" +msgstr "Pomocné funkcie" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1113 msgid "When customizing @code{phases}, we often need to write code that mimics the equivalent system invocations (@code{make}, @code{mkdir}, @code{cp}, etc.)@: commonly used during regular ``Unix-style'' installations." -msgstr "" +msgstr "Pri prispôsobovaní @code{phases} budete často potrebovať funkcie zodpovedajúce systémovým volaniam (@code{make}, @code{mkdir}, @code{cp}, atď.), ktoré sú zvyčajne dostupné na Unixových systémoch." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1116 msgid "Some like @code{chmod} are native to Guile. @xref{,,, guile, Guile reference manual} for a complete list." -msgstr "" +msgstr "Niektoré z nich, ako napríklad @code{chmod}, sú priamo dostupné v jazyku Guile. Viď úplný zoznam v @xref{,,, guile, Guile reference manual}." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1119 msgid "Guix provides additional helper functions which prove especially handy in the context of package management." -msgstr "" +msgstr "Guix poskytuje ďalšie pomocné funkcie, užitočné najmä v súvislosti so správou balíkov." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1123 msgid "Some of those functions can be found in @samp{$GUIX_CHECKOUT/guix/guix/build/utils.scm}. Most of them mirror the behaviour of the traditional Unix system commands:" -msgstr "" +msgstr "Niektoré z týchto funkcií sa nachádzajú v @samp{$GUIX_CHECKOUT/guix/guix/build/utils.scm}. Väčšinou napodobňujú správanie pôvodných Unixových systémových príkazov:" #. type: item #: guix-git/doc/guix-cookbook.texi:1125 #, no-wrap msgid "which" -msgstr "" +msgstr "which" #. type: table #: guix-git/doc/guix-cookbook.texi:1127 msgid "Like the @samp{which} system command." -msgstr "" +msgstr "Rovnaká ako systémový príkaz @samp{which}." #. type: item #: guix-git/doc/guix-cookbook.texi:1127 #, no-wrap msgid "find-files" -msgstr "" +msgstr "find-files" #. type: table #: guix-git/doc/guix-cookbook.texi:1129 msgid "Akin to the @samp{find} system command." -msgstr "" +msgstr "Podobná príkazu @samp{find}." #. type: item #: guix-git/doc/guix-cookbook.texi:1129 #, no-wrap msgid "mkdir-p" -msgstr "" +msgstr "mkdir-p" #. type: table #: guix-git/doc/guix-cookbook.texi:1131 msgid "Like @samp{mkdir -p}, which creates all parents as needed." -msgstr "" +msgstr "Rovnaká ako príkaz @samp{mkdir -p}, ktorý v prípade potreby vytvorí aj všetky nadradené priečinky." #. type: item #: guix-git/doc/guix-cookbook.texi:1131 #, no-wrap msgid "install-file" -msgstr "" +msgstr "install-file" #. type: table #: guix-git/doc/guix-cookbook.texi:1135 msgid "Similar to @samp{install} when installing a file to a (possibly non-existing) directory. Guile has @code{copy-file} which works like @samp{cp}." -msgstr "" +msgstr "Podobná ako príkaz @samp{install} na inštaláciu súboru do priečinka (aj nejestvujúceho). Guile má funkciu @code{copy-file}, ktorá funguje ako príkaz @samp{cp}." #. type: item #: guix-git/doc/guix-cookbook.texi:1135 #, no-wrap msgid "copy-recursively" -msgstr "" +msgstr "copy-recursively" #. type: table #: guix-git/doc/guix-cookbook.texi:1137 msgid "Like @samp{cp -r}." -msgstr "" +msgstr "Ako @samp{cp -r}." #. type: item #: guix-git/doc/guix-cookbook.texi:1137 #, no-wrap msgid "delete-file-recursively" -msgstr "" +msgstr "delete-file-recursively" #. type: table #: guix-git/doc/guix-cookbook.texi:1139 msgid "Like @samp{rm -rf}." -msgstr "" +msgstr "Ako @samp{rm -rf}." #. type: item #: guix-git/doc/guix-cookbook.texi:1139 #, no-wrap msgid "invoke" -msgstr "" +msgstr "invoke" #. type: table #: guix-git/doc/guix-cookbook.texi:1141 msgid "Run an executable. This should be used instead of @code{system*}." -msgstr "" +msgstr "Vyvolať spustiteľný súbor. Toto by ste mali používať namiesto @code{system*}." #. type: item #: guix-git/doc/guix-cookbook.texi:1141 #, no-wrap msgid "with-directory-excursion" -msgstr "" +msgstr "with-directory-excursion" #. type: table #: guix-git/doc/guix-cookbook.texi:1144 msgid "Run the body in a different working directory, then restore the previous working directory." -msgstr "" +msgstr "Vykoná telo funkcie v odlišnom pracovnom priečinku a následne obnoví pôvodný pracovný priečinok." #. type: item #: guix-git/doc/guix-cookbook.texi:1144 #, no-wrap msgid "substitute*" -msgstr "" +msgstr "substitute*" #. type: table #: guix-git/doc/guix-cookbook.texi:1146 msgid "A ``@command{sed}-like'' function." -msgstr "" +msgstr "Funkcia podobná príkazu @command{sed}." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1150 msgid "@xref{Build Utilities,,, guix, GNU Guix Reference Manual}, for more information on these utilities." -msgstr "" +msgstr "Viď @xref{Build Utilities,,, guix, GNU Guix Reference Manual} pre viac podrobností o pomocných funkciách." #. type: subsubsection #: guix-git/doc/guix-cookbook.texi:1151 #, no-wrap msgid "Module prefix" -msgstr "" +msgstr "Predpony modulov" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1161 msgid "The license in our last example needs a prefix: this is because of how the @code{license} module was imported in the package, as @code{#:use-module ((guix licenses) #:prefix license:)}. The Guile module import mechanism (@pxref{Using Guile Modules,,, guile, Guile reference manual}) gives the user full control over namespacing: this is needed to avoid clashes between, say, the @samp{zlib} variable from @samp{licenses.scm} (a @emph{license} value) and the @samp{zlib} variable from @samp{compression.scm} (a @emph{package} value)." -msgstr "" +msgstr "Licencia v našom predošlom príklade je uvedená s predponou vzhľadom na spôsob akým bol načítaný modul @code{licenses} v tomto balíku: @code{#:use-module ((guix licenses) #:prefix license:)}. Spôsob načítavania modulov v Guile (@pxref{Using Guile Modules,,, guile, Guile reference manual}) používateľovi dáva úplnú kontrolu nad menným priestorom. Môže sa tak predísť rozporom, povedzme, medzi premennou @samp{zlib} zo súboru @samp{licenses.scm} (názov @emph{licencie}) a premennou @samp{zlib} zo súboru @samp{compression.scm} (názov @emph{balíka})." #. type: subsection #: guix-git/doc/guix-cookbook.texi:1162 guix-git/doc/guix-cookbook.texi:1163 #, no-wrap msgid "Other build systems" -msgstr "" +msgstr "Ďalšie zostavovacie systémy" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1170 msgid "What we've seen so far covers the majority of packages using a build system other than the @code{trivial-build-system}. The latter does not automate anything and leaves you to build everything manually. This can be more demanding and we won't cover it here for now, but thankfully it is rarely necessary to fall back on this system." -msgstr "" +msgstr "To čo sme doteraz videli pokrýva väčšinu balíkov využívajúcich iný zostavovací systém ako je @code{trivial-build-system}, ktorý nič neautomatizuje a nechá vás všetko zostaviť ručne. Tento postup môže byť náročnejší a zatiaľ sa tu ním nebudeme zaoberať. Našťastie je nutné uchýliť sa k nemu len zriedkavo." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1174 msgid "For the other build systems, such as ASDF, Emacs, Perl, Ruby and many more, the process is very similar to the GNU build system except for a few specialized arguments." -msgstr "" +msgstr "Pri ostatných zostavovacích systémoch, ako sú ASDF, Emacs, Perl, Ruby a mnoho ďalších, je postup, okrem niekoľkých zvláštnych parametrov, veľmi podobný zostavovaciemu systému GNU." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1179 msgid "@xref{Build Systems,,, guix, GNU Guix Reference Manual}, for more information on build systems, or check the source code in the @samp{$GUIX_CHECKOUT/guix/build} and @samp{$GUIX_CHECKOUT/guix/build-system} directories." -msgstr "" +msgstr "Viď @xref{Build Systems,,, guix, GNU Guix Reference Manual} alebo zdrojový kód v priečinkoch @samp{$GUIX_CHECKOUT/guix/build} a @samp{$GUIX_CHECKOUT/guix/build-system} pre viac podrobností o zostavovacích systémoch." #. type: subsection #: guix-git/doc/guix-cookbook.texi:1180 guix-git/doc/guix-cookbook.texi:1181 #, no-wrap msgid "Programmable and automated package definition" -msgstr "" +msgstr "Programovateľné a automatické zadávanie balíkov" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1185 msgid "We can't repeat it enough: having a full-fledged programming language at hand empowers us in ways that reach far beyond traditional package management." -msgstr "" +msgstr "Nemôžme to nezdôrazniť: mať po ruke plnohodnotný programovací jazyk nám umožňuje oveľa viac než len bežnú správu balíkov." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1187 msgid "Let's illustrate this with some awesome features of Guix!" -msgstr "" +msgstr "Ukážme si to na príklade niekoľkých úžasných súčastí Guixu!" #. type: subsubsection #: guix-git/doc/guix-cookbook.texi:1188 guix-git/doc/guix-cookbook.texi:1189 #, no-wrap msgid "Recursive importers" -msgstr "" +msgstr "Rekurzívne nahrávače" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1196 msgid "You might find some build systems good enough that there is little to do at all to write a package, to the point that it becomes repetitive and tedious after a while. A @emph{raison d'être} of computers is to replace human beings at those boring tasks. So let's tell Guix to do this for us and create the package definition of an R package from CRAN (the output is trimmed for conciseness):" -msgstr "" +msgstr "Niektoré zostavovacie systémy sú natoľko dobré, že toho na zadanie balíka ani veľa netreba, a to až do takej miery, že sa vám zadávanie balíkov rýchlo zunuje. Jedným z dôvodov bytia počítačov je nahradiť ľudí pri vykonávaní týchto nudných činností. Nechajme teda Guix urobiť to za nás a vytvoriť zadanie nejakého balíka R pochádzajúceho z CRANu (výstup bol skrátený pre ušetrenie miesta):" #. type: example #: guix-git/doc/guix-cookbook.texi:1199 @@ -2232,6 +2177,8 @@ msgid "" "$ guix import cran --recursive walrus\n" "\n" msgstr "" +"$ guix import cran --recursive walrus\n" +"\n" #. type: example #: guix-git/doc/guix-cookbook.texi:1203 @@ -2242,6 +2189,10 @@ msgid "" " (license gpl2+)))\n" "\n" msgstr "" +"(define-public r-mc2d\n" +" ; ...\n" +" (license gpl2+)))\n" +"\n" #. type: example #: guix-git/doc/guix-cookbook.texi:1207 @@ -2252,6 +2203,10 @@ msgid "" " (license gpl2+)))\n" "\n" msgstr "" +"(define-public r-jmvcore\n" +" ; ...\n" +" (license gpl2+)))\n" +"\n" #. type: example #: guix-git/doc/guix-cookbook.texi:1211 @@ -2262,6 +2217,10 @@ msgid "" " (license gpl3)))\n" "\n" msgstr "" +"(define-public r-wrs2\n" +" ; ...\n" +" (license gpl3)))\n" +"\n" #. type: example #: guix-git/doc/guix-cookbook.texi:1237 @@ -2293,55 +2252,80 @@ msgid "" "'Introduction to Robust Estimation & Hypothesis Testing'.\")\n" " (license gpl3)))\n" msgstr "" +"(define-public r-walrus\n" +" (package\n" +" (name \"r-walrus\")\n" +" (version \"1.0.3\")\n" +" (source\n" +" (origin\n" +" (method url-fetch)\n" +" (uri (cran-uri \"walrus\" version))\n" +" (sha256\n" +" (base32\n" +" \"1nk2glcvy4hyksl5ipq2mz8jy4fss90hx6cq98m3w96kzjni6jjj\"))))\n" +" (build-system r-build-system)\n" +" (propagated-inputs\n" +" (list r-ggplot2 r-jmvcore r-r6 r-wrs2))\n" +" (home-page \"https://github.com/jamovi/walrus\")\n" +" (synopsis \"Robust Statistical Methods\")\n" +" (description\n" +" \"This package provides a toolbox of common robust statistical\n" +"tests, including robust descriptives, robust t-tests, and robust ANOVA.\n" +"It is also available as a module for 'jamovi' (see\n" +" for more information). Walrus is based on the\n" +"WRS2 package by Patrick Mair, which is in turn based on the scripts and\n" +"work of Rand Wilcox. These analyses are described in depth in the book\n" +"'Introduction to Robust Estimation & Hypothesis Testing'.\")\n" +" (license gpl3)))\n" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1241 msgid "The recursive importer won't import packages for which Guix already has package definitions, except for the very first." -msgstr "" +msgstr "Rekurzívny nahrávač nahrá len balíky, pre ktoré Guix ešte nemá zadanie, okrem úplne prvého." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1246 msgid "Not all applications can be packaged this way, only those relying on a select number of supported systems. Read about the full list of importers in the guix import section of the manual (@pxref{Invoking guix import,,, guix, GNU Guix Reference Manual})." -msgstr "" +msgstr "Takto vytvoriť zadania balíkov nie je možné pre všetky aplikácie, iba pre tie, ktoré sa opierajú o vybraný počet podporovaných systémov. Viď úplný zoznam nahrávačov v príslušnom oddiele príručky (@pxref{Invoking guix import,,, guix, GNU Guix Reference Manual})." #. type: subsubsection #: guix-git/doc/guix-cookbook.texi:1247 guix-git/doc/guix-cookbook.texi:1248 #, no-wrap msgid "Automatic update" -msgstr "" +msgstr "Automatické aktualizácie" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1252 msgid "Guix can be smart enough to check for updates on systems it knows. It can report outdated package definitions with" -msgstr "" +msgstr "Guix môže byť dostatočne múdry na to, aby vyhľadal aktualizácie v systémoch, ktoré pozná. To, ktoré balíky sú zastarané možno zistiť pomocou" #. type: example #: guix-git/doc/guix-cookbook.texi:1255 #, no-wrap msgid "$ guix refresh hello\n" -msgstr "" +msgstr "$ guix refresh hello\n" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1260 msgid "In most cases, updating a package to a newer version requires little more than changing the version number and the checksum. Guix can do that automatically as well:" -msgstr "" +msgstr "Vo väčšine prípadov vyžaduje aktualizácia balíka na novšiu verziu len o niečo viac ako zmeniť číslo verzie a kontrolný súčet. Aj toto môže Guix vykonať automaticky:" #. type: example #: guix-git/doc/guix-cookbook.texi:1263 #, no-wrap msgid "$ guix refresh hello --update\n" -msgstr "" +msgstr "$ guix refresh hello --update\n" #. type: subsubsection #: guix-git/doc/guix-cookbook.texi:1265 guix-git/doc/guix-cookbook.texi:1266 #, no-wrap msgid "Inheritance" -msgstr "" +msgstr "Dedičnosť" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1270 msgid "If you've started browsing the existing package definitions, you might have noticed that a significant number of them have a @code{inherit} field:" -msgstr "" +msgstr "Ak ste si už začali prezerať zadania jestvujúcich balíkov, možno ste si všimli, že niektoré z nich obsahujú pole @code{inherit}:" #. type: lisp #: guix-git/doc/guix-cookbook.texi:1285 @@ -2361,178 +2345,191 @@ msgid "" " \"17fpahgh5dyckgz7rwqvzgnhx53cx9kr2xw0szprc6bnqy977fi8\"))))\n" " (native-inputs (list `(,gtk+ \"bin\")))))\n" msgstr "" +"(define-public adwaita-icon-theme\n" +" (package (inherit gnome-icon-theme)\n" +" (name \"adwaita-icon-theme\")\n" +" (version \"3.26.1\")\n" +" (source (origin\n" +" (method url-fetch)\n" +" (uri (string-append \"mirror://gnome/sources/\" name \"/\"\n" +" (version-major+minor version) \"/\"\n" +" name \"-\" version \".tar.xz\"))\n" +" (sha256\n" +" (base32\n" +" \"17fpahgh5dyckgz7rwqvzgnhx53cx9kr2xw0szprc6bnqy977fi8\"))))\n" +" (native-inputs (list `(,gtk+ \"bin\")))))\n" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1290 msgid "All unspecified fields are inherited from the parent package. This is very convenient to create alternative packages, for instance with different source, version or compilation options." -msgstr "" +msgstr "Všetky neupresnené polia sú zdedené z nadradeného balíka. Je to veľmi užitočné na vytváranie obmien balíkov, napr. s odlišným zdrojom, verziou alebo voľbami zostavenia." #. type: subsection #: guix-git/doc/guix-cookbook.texi:1291 guix-git/doc/guix-cookbook.texi:1292 #, no-wrap msgid "Getting help" -msgstr "" +msgstr "Získavanie pomoci" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1298 msgid "Sadly, some applications can be tough to package. Sometimes they need a patch to work with the non-standard file system hierarchy enforced by the store. Sometimes the tests won't run properly. (They can be skipped but this is not recommended.) Other times the resulting package won't be reproducible." -msgstr "" +msgstr "Nanešťastie, zadanie balíka môže byť pre niektoré aplikácie veľmi zložité. Niekedy je potrebná záplata, aby mohla aplikácia fungovať v neobyčajnom systéme súborov úložiska. Niekedy sa zase sústava testov nespúšťa správne (môžete ich preskočiť ale neodporúča sa to). Inokedy nie je výsledný balík opakovateľný." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1301 msgid "Should you be stuck, unable to figure out how to fix any sort of packaging issue, don't hesitate to ask the community for help." -msgstr "" +msgstr "Keď už neviete ako ďalej a nie ste schopní prísť na to, ako vyriešiť nejakú ťažkosť so zadávaním balíka, neváhajte požiadať o pomoc spoločenstvo." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1303 msgid "See the @uref{https://www.gnu.org/software/guix/contact/, Guix homepage} for information on the mailing lists, IRC, etc." -msgstr "" +msgstr "Viď @uref{https://www.gnu.org/software/guix/contact/, Guix homepage} pre podrobnosti o elektronických konferenciách, IRC, atď." #. type: subsection #: guix-git/doc/guix-cookbook.texi:1304 guix-git/doc/guix-cookbook.texi:1305 #, no-wrap msgid "Conclusion" -msgstr "" +msgstr "Záver" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1311 msgid "This tutorial was a showcase of the sophisticated package management that Guix boasts. At this point we have mostly restricted this introduction to the @code{gnu-build-system} which is a core abstraction layer on which more advanced abstractions are based." -msgstr "" +msgstr "Tento návod vám predviedol vyumelkovanú správu balíkov, ktorou sa Guix chváli. V tejto chvíli sme tento úvod zúžili na @code{gnu-build-system} predstavujúci ústrednú abstrakčnú vrstvu, na ktorej sú založené pokročilejšie abstrakčné vrstvy." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1316 msgid "Where do we go from here? Next we ought to dissect the innards of the build system by removing all abstractions, using the @code{trivial-build-system}: this should give us a thorough understanding of the process before investigating some more advanced packaging techniques and edge cases." -msgstr "" +msgstr "Kam teraz? Ďalej by sme si mali posvietiť na vnútorné fungovanie zostavovacích systémov vynechajúc všetky abstrakčné vrstvy prostredníctvom @code{trivial-build-system}. Malo by nám to umožniť lepšie porozumieť postupu zostavenia, skôr ako sa dostaneme k pokročilejším postupom a výnimkám." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1319 msgid "Other features worth exploring are the interactive editing and debugging capabilities of Guix provided by the Guile REPL@." -msgstr "" +msgstr "Ďalšie funkcie, ktoré sa oplatí preskúmať, sú interaktívna úprava a možnosti ladenia Guixu poskytované cez Guile REPL@." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1324 msgid "Those fancy features are completely optional and can wait; now is a good time to take a well-deserved break. With what we've introduced here you should be well armed to package lots of programs. You can get started right away and hopefully we will see your contributions soon!" -msgstr "" +msgstr "Tieto pokročilé funkcie sú len doplnkové a môžu počkať. Teraz je ten správny čas na zaslúženú prestávku. S tým, čo sme si ukázali, by ste si mali vystačiť pri zadávaní balíkov pre mnoho programov. Môžete sa do toho hneď pustiť a dúfame, že nás vašim príspevkom potešíte už čoskoro!" #. type: subsection #: guix-git/doc/guix-cookbook.texi:1325 guix-git/doc/guix-cookbook.texi:1326 #, no-wrap msgid "References" -msgstr "" +msgstr "Odkazy" #. type: itemize #: guix-git/doc/guix-cookbook.texi:1331 msgid "The @uref{https://www.gnu.org/software/guix/manual/en/html_node/Defining-Packages.html, package reference in the manual}" -msgstr "" +msgstr "@uref{https://www.gnu.org/software/guix/manual/en/html_node/Defining-Packages.html, odvolávka na „package“ v príručke}" #. type: itemize #: guix-git/doc/guix-cookbook.texi:1334 msgid "@uref{https://gitlab.com/pjotrp/guix-notes/blob/master/HACKING.org, Pjotr’s hacking guide to GNU Guix}" -msgstr "" +msgstr "@uref{https://gitlab.com/pjotrp/guix-notes/blob/master/HACKING.org, Pjotrova príručka na prispôsobenie GNU Guix}" #. type: itemize #: guix-git/doc/guix-cookbook.texi:1337 msgid "@uref{https://www.gnu.org/software/guix/guix-ghm-andreas-20130823.pdf, ``GNU Guix: Package without a scheme!''}, by Andreas Enge" -msgstr "" +msgstr "@uref{https://www.gnu.org/software/guix/guix-ghm-andreas-20130823.pdf, „GNU Guix: Package without a scheme!“}, od Andreasa Engeho" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1346 msgid "Guix offers a flexible language for declaratively configuring your Guix System. This flexibility can at times be overwhelming. The purpose of this chapter is to demonstrate some advanced configuration concepts." -msgstr "" +msgstr "Guix ponúka všestranný jazyk na deklaratívne nastavenie vášho systému Guix. Táto všestrannosť sa môže niekedy zdať nadmerná. Účelom tohto oddielu je predstaviť niektoré pokročilé spôsoby nastavenia." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1349 msgid "@pxref{System Configuration,,, guix, GNU Guix Reference Manual} for a complete reference." -msgstr "" +msgstr "Viď úplnú odvolávku v @pxref{System Configuration,,, guix, GNU Guix Reference Manual}." #. type: section #: guix-git/doc/guix-cookbook.texi:1360 guix-git/doc/guix-cookbook.texi:1645 #: guix-git/doc/guix-cookbook.texi:1646 #, no-wrap msgid "Guix System Image API" -msgstr "" +msgstr "API pre vytváranie obrazov systému Guix" #. type: menuentry #: guix-git/doc/guix-cookbook.texi:1360 msgid "Customizing images to target specific platforms." -msgstr "" +msgstr "Prispôsobenie obrazov nezvyčajným platformám." #. type: section #: guix-git/doc/guix-cookbook.texi:1360 guix-git/doc/guix-cookbook.texi:1856 #: guix-git/doc/guix-cookbook.texi:1857 #, no-wrap msgid "Connecting to Wireguard VPN" -msgstr "" +msgstr "Pripojenie k Wireguard VPN" #. type: menuentry #: guix-git/doc/guix-cookbook.texi:1360 msgid "Connecting to a Wireguard VPN." -msgstr "" +msgstr "Pripojenie k Wireguard VPN sieti." #. type: section #: guix-git/doc/guix-cookbook.texi:1360 guix-git/doc/guix-cookbook.texi:1933 #: guix-git/doc/guix-cookbook.texi:1934 #, no-wrap msgid "Customizing a Window Manager" -msgstr "" +msgstr "Prispôsobenie správcu okien" #. type: menuentry #: guix-git/doc/guix-cookbook.texi:1360 msgid "Handle customization of a Window manager on Guix System." -msgstr "" +msgstr "Spravovať prispôsobenie správcu okien v systéme Guix." #. type: section #: guix-git/doc/guix-cookbook.texi:1360 guix-git/doc/guix-cookbook.texi:2024 #: guix-git/doc/guix-cookbook.texi:2025 #, no-wrap msgid "Running Guix on a Linode Server" -msgstr "" +msgstr "Spúšťanie Guixu na serveri Linode" #. type: section #: guix-git/doc/guix-cookbook.texi:1360 guix-git/doc/guix-cookbook.texi:2267 #: guix-git/doc/guix-cookbook.texi:2268 #, no-wrap msgid "Setting up a bind mount" -msgstr "" +msgstr "Nastavenie podvojného pripojenia" #. type: menuentry #: guix-git/doc/guix-cookbook.texi:1360 msgid "Setting up a bind mount in the file-systems definition." -msgstr "" +msgstr "Nastavenie podvojného pripojenia v zadaní systému súborov." #. type: section #: guix-git/doc/guix-cookbook.texi:1360 guix-git/doc/guix-cookbook.texi:2316 #: guix-git/doc/guix-cookbook.texi:2317 #, no-wrap msgid "Getting substitutes from Tor" -msgstr "" +msgstr "Získavanie náhrad prostredníctvom Tor" #. type: menuentry #: guix-git/doc/guix-cookbook.texi:1360 msgid "Configuring Guix daemon to get substitutes through Tor." -msgstr "" +msgstr "Nastavenie démona Guix na získavanie náhrad cez Tor." #. type: section #: guix-git/doc/guix-cookbook.texi:1360 guix-git/doc/guix-cookbook.texi:2378 #: guix-git/doc/guix-cookbook.texi:2379 #, no-wrap msgid "Setting up NGINX with Lua" -msgstr "" +msgstr "Nastavenia NGINX a Lua" #. type: menuentry #: guix-git/doc/guix-cookbook.texi:1360 msgid "Configuring NGINX web-server to load Lua modules." -msgstr "" +msgstr "Nastavenie web-servera NGINX na načítavanie Lua modulov." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1372 msgid "While the Guix manual explains auto-login one user to @emph{all} TTYs ( @pxref{auto-login to TTY,,, guix, GNU Guix Reference Manual}), some might prefer a situation, in which one user is logged into one TTY with the other TTYs either configured to login different users or no one at all. Note that one can auto-login one user to any TTY, but it is usually advisable to avoid @code{tty1}, which, by default, is used to log warnings and errors." -msgstr "" +msgstr "Zatiaľ čo príručka pre Guix popisuje automatické prihlásenie jedného používateľa ku @emph{všetkým} TTY (@pxref{auto-login to TTY,,, guix, GNU Guix Reference Manual}), mohli by ste uprednostňovať stav, keď je jeden používateľ pripojený k jednému TTY a ostatné TTY sú nastavené na prihlasovanie ďalších používateľov alebo nikoho. Všimnite si, že jedného používateľa je možné automaticky prihlásiť k akémukoľvek TTY. Avšak, je lepšie vynechať @code{tty1}, ktorý je predvolene využívaný na zobrazovanie varovaných a chybových hlásení." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1374 msgid "Here is how one might set up auto login for one user to one tty:" -msgstr "" +msgstr "Takto je možné nastaviť automatické prihlásenie jedného používateľa k jednému TTY:" #. type: lisp #: guix-git/doc/guix-cookbook.texi:1382 @@ -2546,6 +2543,13 @@ msgid "" " config))\n" "\n" msgstr "" +"(define (auto-login-to-tty config tty user)\n" +" (if (string=? tty (mingetty-configuration-tty config))\n" +" (mingetty-configuration\n" +" (inherit config)\n" +" (auto-login user))\n" +" config))\n" +"\n" #. type: lisp #: guix-git/doc/guix-cookbook.texi:1389 @@ -2559,6 +2563,13 @@ msgid "" " config \"tty3\" \"alice\"))))\n" "\n" msgstr "" +"(define %my-services\n" +" (modify-services %base-services\n" +" ;; @dots{}\n" +" (mingetty-service-type config =>\n" +" (auto-login-to-tty\n" +" config \"tty3\" \"alice\"))))\n" +"\n" #. type: lisp #: guix-git/doc/guix-cookbook.texi:1393 @@ -2568,36 +2579,39 @@ msgid "" " ;; @dots{}\n" " (services %my-services))\n" msgstr "" +"(operating-system\n" +" ;; @dots{}\n" +" (services %my-services))\n" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1398 msgid "One could also @code{compose} (@pxref{Higher-Order Functions,,, guile, The Guile Reference Manual}) @code{auto-login-to-tty} to login multiple users to multiple ttys." -msgstr "" +msgstr "Tiež je možné použiť @code{compose} (@pxref{Higher-Order Functions,,, guile, The Guile Reference Manual}) s @code{auto-login-to-tty} pre prihlásenie viacerých používateľov k viacerým TTY." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1405 msgid "Finally, here is a note of caution. Setting up auto login to a TTY, means that anyone can turn on your computer and run commands as your regular user. However, if you have an encrypted root partition, and thus already need to enter a passphrase when the system boots, auto-login might be a convenient option." -msgstr "" +msgstr "Varovanie na koniec. Nastavenie automatického prihlásenia k TTY znamená, že ktokoľvek môže zapnúť váš počítač a spúšťať príkazy ako zvyčajný používateľ. Hoci, ak používate zašifrovaný koreňový systém a pri spustení systému je nutné zadať heslo, automatické prihlásenie predstavuje praktickú možnosť." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1417 msgid "Guix is, at its core, a source based distribution with substitutes (@pxref{Substitutes,,, guix, GNU Guix Reference Manual}), and as such building packages from their source code is an expected part of regular package installations and upgrades. Given this starting point, it makes sense that efforts are made to reduce the amount of time spent compiling packages, and recent changes and upgrades to the building and distribution of substitutes continues to be a topic of discussion within Guix." -msgstr "" +msgstr "Guix je, vo svojom jadre, distribúcia založená na zdrojových súboroch a náhradách (@pxref{Substitutes,,, guix, GNU Guix Reference Manual}). Zostavovanie balíkov z ich zdrojových súborov je teda prirodzenou súčasťou inštalácie a aktualizácie balíkov. Vzhľadom na túto skutočnosť dáva zmysel snaha o zníženie množstva času potrebného na zostavenie balíkov a nedávne zmeny v zostavovaní a šírení náhrad sú aj naďalej súčasťou rozhovorov vrámci projektu Guix." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1423 msgid "The kernel, while not requiring an overabundance of RAM to build, does take a rather long time on an average machine. The official kernel configuration, as is the case with many GNU/Linux distributions, errs on the side of inclusiveness, and this is really what causes the build to take such a long time when the kernel is built from source." -msgstr "" +msgstr "Aj keď nevyžaduje veľké množstvo pamäte RAM, zostavenie jadra na priemerných počítačoch môže trvať veľmi dlho. Oficiálne nastavenie jadra, tak ako je to v prípade mnohých iných distribúcií GNU/Linuxu, sa prikláňa k širšej ponuke súčastí a to je to, čo spôsobuje, že zostavenie jadra zo zdrojových súborov trvá tak dlho." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1428 msgid "The Linux kernel, however, can also just be described as a regular old package, and as such can be customized just like any other package. The procedure is a little bit different, although this is primarily due to the nature of how the package definition is written." -msgstr "" +msgstr "Avšak, aj samotné jadro Linuxu možno opísať ako balík a teda prispôsobiť ho rovnako ako hociktorý iný balík. Postup je mierne odlišný, aj keď hlavne kvôli tomu ako je zadanie balíka napísané." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1431 msgid "The @code{linux-libre} kernel package definition is actually a procedure which creates a package." -msgstr "" +msgstr "Balík jadra @code{linux-libre} je vlastne funkcia tvoriaca balík." #. type: lisp #: guix-git/doc/guix-cookbook.texi:1442 @@ -2613,11 +2627,20 @@ msgid "" " (extra-options %default-extra-linux-options))\n" " ...)\n" msgstr "" +"(define* (make-linux-libre* version gnu-revision source supported-systems\n" +" #:key\n" +" (extra-version #f)\n" +" ;; Funkcia vyžadujúca označenie a druh architektúry.\n" +" ;; Viď príklad v kernel-config.\n" +" (configuration-file #f)\n" +" (defconfig \"defconfig\")\n" +" (extra-options %default-extra-linux-options))\n" +" ...)\n" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1446 msgid "The current @code{linux-libre} package is for the 5.15.x series, and is declared like this:" -msgstr "" +msgstr "Terajší balík @code{linux-libre} pre vydania 5.15.x je zadaný nasledovne:" #. type: lisp #: guix-git/doc/guix-cookbook.texi:1454 @@ -2630,16 +2653,22 @@ msgid "" " '(\"x86_64-linux\" \"i686-linux\" \"armhf-linux\" \"aarch64-linux\" \"riscv64-linux\")\n" " #:configuration-file kernel-config))\n" msgstr "" +"(define-public linux-libre-5.15\n" +" (make-linux-libre* linux-libre-5.15-version\n" +" linux-libre-5.15-gnu-revision\n" +" linux-libre-5.15-source\n" +" '(\"x86_64-linux\" \"i686-linux\" \"armhf-linux\" \"aarch64-linux\" \"riscv64-linux\")\n" +" #:configuration-file kernel-config))\n" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1461 msgid "Any keys which are not assigned values inherit their default value from the @code{make-linux-libre} definition. When comparing the two snippets above, notice the code comment that refers to @code{#:configuration-file}. Because of this, it is not actually easy to include a custom kernel configuration from the definition, but don't worry, there are other ways to work with what we do have." -msgstr "" +msgstr "Kľúče, ktoré nemajú pridelenú hodnotu dedia ich predvolenú hodnotu zo zadania @code{make-linux-libre}. Pri porovnávaní vyššie uvedených úryvkov zdrojového kódu si všimnite komentár odvolávajúci sa na @code{#:configuration-file}. Kvôli tomu vlastne nie je jednoduché zahrnúť do zadania svoje vlastné nastavenie jadra, ale nezúfajte, pretože jestvujú ďalšie spôsoby ako pracovať s tým čo máme." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1467 msgid "There are two ways to create a kernel with a custom kernel configuration. The first is to provide a standard @file{.config} file during the build process by including an actual @file{.config} file as a native input to our custom kernel. The following is a snippet from the custom @code{'configure} phase of the @code{make-linux-libre} package definition:" -msgstr "" +msgstr "Jestvujú dva spôsoby ako vytvoriť jadro s vlastným nastavením. Prvý je poskytnúť zvyčajný súbor @file{.config} počas zostavenia zahrnutím tohto súboru do pôvodných vstupov nášho vlastného jadra. Nižšie je uvedený úryvok kódu vlastného @code{'configure} kroku zo zadania balíka @code{make-linux-libre}:" #. type: lisp #: guix-git/doc/guix-cookbook.texi:1471 @@ -2649,6 +2678,9 @@ msgid "" " (config (assoc-ref (or native-inputs inputs) \"kconfig\")))\n" "\n" msgstr "" +"(let ((build (assoc-ref %standard-phases 'build))\n" +" (config (assoc-ref (or native-inputs inputs) \"kconfig\")))\n" +"\n" #. type: lisp #: guix-git/doc/guix-cookbook.texi:1479 @@ -2662,11 +2694,18 @@ msgid "" " (chmod \".config\" #o666))\n" " (invoke \"make\" ,defconfig)))\n" msgstr "" +" ;; Použiť vlastný alebo predvolený súbor\n" +" ;; nastavenia jadra.\n" +" (if config\n" +" (begin\n" +" (copy-file config \".config\")\n" +" (chmod \".config\" #o666))\n" +" (invoke \"make\" ,defconfig)))\n" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1484 msgid "Below is a sample kernel package. The @code{linux-libre} package is nothing special and can be inherited from and have its fields overridden like any other package:" -msgstr "" +msgstr "Tu je príklad balíka jadra. Balík @code{linux-libre} nie je ničím výnimočný, môžeme ho zdediť a nahradiť jeho pôvodné polia ako pri hociktorom inom balíku:" #. type: lisp #: guix-git/doc/guix-cookbook.texi:1493 @@ -2680,16 +2719,23 @@ msgid "" " ,@@(alist-delete \"kconfig\"\n" " (package-native-inputs linux-libre))))))\n" msgstr "" +"(define-public linux-libre/E2140\n" +" (package\n" +" (inherit linux-libre)\n" +" (native-inputs\n" +" `((\"kconfig\" ,(local-file \"E2140.config\"))\n" +" ,@@(alist-delete \"kconfig\"\n" +" (package-native-inputs linux-libre))))))\n" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1500 msgid "In the same directory as the file defining @code{linux-libre-E2140} is a file named @file{E2140.config}, which is an actual kernel configuration file. The @code{defconfig} keyword of @code{make-linux-libre} is left blank here, so the only kernel configuration in the package is the one which was included in the @code{native-inputs} field." -msgstr "" +msgstr "V rovnakom priečinku, kde je súbor zadávajúci @code{linux-libre-E2140} je aj súbor s názvom @file{E2140.config}, ktorý predstavuje súbor nastavenia jadra. Kľúčové slovo @code{defconfig} funkcie @code{make-linux-libre} je tu ponechané prázdne, takže jediné nastavenie jadra v balíku je to, ktoré bolo zahrnuté do poľa @code{native-inputs}." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1505 msgid "The second way to create a custom kernel is to pass a new value to the @code{extra-options} keyword of the @code{make-linux-libre} procedure. The @code{extra-options} keyword works with another function defined right below it:" -msgstr "" +msgstr "Druhý spôsob ako vytvoriť vlastné jadro je dať novú hodnotu kľúčovému slovu @code{extra-options} funkcie @code{make-linux-libre}. Kľúčové slovo @code{extra-options} funguje s inou funkciou zadanou nižšie:" #. type: lisp #: guix-git/doc/guix-cookbook.texi:1521 @@ -2711,6 +2757,21 @@ msgid "" " (\"CONFIG_9P_FS\" . m)))\n" "\n" msgstr "" +"(define %default-extra-linux-options\n" +" `(;; https://lists.gnu.org/archive/html/guix-devel/2014-04/msg00039.html\n" +" (\"CONFIG_DEVPTS_MULTIPLE_INSTANCES\" . #true)\n" +" ;; Moduly potrebné pre initrd:\n" +" (\"CONFIG_NET_9P\" . m)\n" +" (\"CONFIG_NET_9P_VIRTIO\" . m)\n" +" (\"CONFIG_VIRTIO_BLK\" . m)\n" +" (\"CONFIG_VIRTIO_NET\" . m)\n" +" (\"CONFIG_VIRTIO_PCI\" . m)\n" +" (\"CONFIG_VIRTIO_BALLOON\" . m)\n" +" (\"CONFIG_VIRTIO_MMIO\" . m)\n" +" (\"CONFIG_FUSE_FS\" . m)\n" +" (\"CONFIG_CIFS\" . m)\n" +" (\"CONFIG_9P_FS\" . m)))\n" +"\n" #. type: lisp #: guix-git/doc/guix-cookbook.texi:1532 @@ -2727,11 +2788,21 @@ msgid "" " options)\n" " \"\\n\"))\n" msgstr "" +"(define (config->string options)\n" +" (string-join (map (match-lambda\n" +" ((option . 'm)\n" +" (string-append option \"=m\"))\n" +" ((option . #true)\n" +" (string-append option \"=y\"))\n" +" ((option . #false)\n" +" (string-append option \"=n\")))\n" +" options)\n" +" \"\\n\"))\n" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1535 msgid "And in the custom configure script from the `make-linux-libre` package:" -msgstr "" +msgstr "A vo vlastnom „configure“ skripte balíka „make-linux-libre“:" #. type: lisp #: guix-git/doc/guix-cookbook.texi:1543 @@ -2745,17 +2816,24 @@ msgid "" " (close-port port))\n" "\n" msgstr "" +";; Vkladanie na koniec funguje aj keď voľba v súbore nebola.\n" +";; Pri viacnásobnom uvedení prevažuje to posledné.\n" +"(let ((port (open-file \".config\" \"a\"))\n" +" (extra-configuration ,(config->string extra-options)))\n" +" (display extra-configuration port)\n" +" (close-port port))\n" +"\n" #. type: lisp #: guix-git/doc/guix-cookbook.texi:1545 #, no-wrap msgid "(invoke \"make\" \"oldconfig\")\n" -msgstr "" +msgstr "(invoke \"make\" \"oldconfig\")\n" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1550 msgid "So by not providing a configuration-file the @file{.config} starts blank, and then we write into it the collection of flags that we want. Here's another custom kernel:" -msgstr "" +msgstr "Takže, neposkytnutie súboru nastavenia spôsobí, že je súbor @file{.config} spočiatku prázdny. Potom doň zapíšeme voľby, ktoré chceme. Viď ďalšie vlastné zadanie jadra:" #. type: lisp #: guix-git/doc/guix-cookbook.texi:1558 @@ -2769,6 +2847,13 @@ msgid "" " (@@@@ (gnu packages linux) %default-extra-linux-options)))\n" "\n" msgstr "" +"(define %macbook41-full-config\n" +" (append %macbook41-config-options\n" +" %file-systems\n" +" %efi-support\n" +" %emulation\n" +" (@@@@ (gnu packages linux) %default-extra-linux-options)))\n" +"\n" #. type: lisp #: guix-git/doc/guix-cookbook.texi:1569 @@ -2785,54 +2870,64 @@ msgid "" " #:extra-version \"macbook41\"\n" " #:extra-options %macbook41-config-options))\n" msgstr "" +"(define-public linux-libre-macbook41\n" +" ;; XXX: Prístup k funkcii „make-linux-libre*“, ktorá je súkromná,\n" +" ;; neexportuje sa a v budúcnosti by sa mohla zmeniť.\n" +" ((@@@@ (gnu packages linux) make-linux-libre*)\n" +" (@@@@ (gnu packages linux) linux-libre-version)\n" +" (@@@@ (gnu packages linux) linux-libre-gnu-revision)\n" +" (@@@@ (gnu packages linux) linux-libre-source)\n" +" '(\"x86_64-linux\")\n" +" #:extra-version \"macbook41\"\n" +" #:extra-options %macbook41-config-options))\n" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1576 msgid "In the above example @code{%file-systems} is a collection of flags enabling different file system support, @code{%efi-support} enables EFI support and @code{%emulation} enables a x86_64-linux machine to act in 32-bit mode also. @code{%default-extra-linux-options} are the ones quoted above, which had to be added in since they were replaced in the @code{extra-options} keyword." -msgstr "" +msgstr "V hore uvedenom príklade je @code{%file-systems} zbierkou volieb povoľujúcich podporu rôznych systémov súborov, @code{%efi-support} povoľuje podporu EFI a @code{%emulation} povoľuje strojom x86_64-linux pracovať v 32-bitovom režime. Voľby @code{%default-extra-linux-options} sú tie citované vyššie, ktoré bolo treba pridať, keďže boli prepísané v kľúčovom slove @code{extra-options}." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1585 msgid "This all sounds like it should be doable, but how does one even know which modules are required for a particular system? Two places that can be helpful in trying to answer this question is the @uref{https://wiki.gentoo.org/wiki/Handbook:AMD64/Installation/Kernel, Gentoo Handbook} and the @uref{https://www.kernel.org/doc/html/latest/admin-guide/README.html?highlight=localmodconfig, documentation from the kernel itself}. From the kernel documentation, it seems that @code{make localmodconfig} is the command we want." -msgstr "" +msgstr "Všetko toto znie veľmi dobre, ale ako zistiť, ktoré moduly vyžaduje určitý systém? Na túto otázku nám môžu pomôcť odpovedať dva zdroje: @uref{https://wiki.gentoo.org/wiki/Handbook:AMD64/Installation/Kernel, Príručka Gentoo} a @uref{https://www.kernel.org/doc/html/latest/admin-guide/README.html?highlight=localmodconfig, dokumentácia samotného jadra}. Podľa dokumentácie jadra sa zdá, že @code{make localmodconfig} je príkaz, ktorý hľadáme." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1588 msgid "In order to actually run @code{make localmodconfig} we first need to get and unpack the kernel source code:" -msgstr "" +msgstr "Skôr ako budeme môcť spustiť @code{make localmodconfig}, musíme stiahnuť a rozbaliť zdrojové súbory jadra:" #. type: example #: guix-git/doc/guix-cookbook.texi:1591 #, no-wrap msgid "tar xf $(guix build linux-libre --source)\n" -msgstr "" +msgstr "tar xf $(guix build linux-libre --source)\n" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1598 msgid "Once inside the directory containing the source code run @code{touch .config} to create an initial, empty @file{.config} to start with. @code{make localmodconfig} works by seeing what you already have in @file{.config} and letting you know what you're missing. If the file is blank then you're missing everything. The next step is to run:" -msgstr "" +msgstr "V priečinku obsahujúcom zdrojové súbory spustite @code{touch .config} pre vytvorenie počiatočného prázdneho @file{.config} súboru. @code{make localmodconfig} funguje tak, že zistí, čo ste už zadali do @file{.config} a povie vám, čo vám ešte chýba. Ak je súbor prázdny, tak vám chýba všetko. Ďalším krokom je spustiť:" #. type: example #: guix-git/doc/guix-cookbook.texi:1601 #, no-wrap msgid "guix environment linux-libre -- make localmodconfig\n" -msgstr "" +msgstr "guix environment linux-libre -- make localmodconfig\n" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1606 msgid "and note the output. Do note that the @file{.config} file is still empty. The output generally contains two types of warnings. The first start with \"WARNING\" and can actually be ignored in our case. The second read:" -msgstr "" +msgstr "a pozrite si výstup. Všimnite si, že súbor @file{.config} je stále prázdny. Výstup obvykle obsahuje dva druhy varovných správ. Prvá začína slovom „WARNING“ a v našom prípade si ju nemusíme všímať. Druhá správa nám hovorí, že:" #. type: example #: guix-git/doc/guix-cookbook.texi:1609 #, no-wrap msgid "module pcspkr did not have configs CONFIG_INPUT_PCSPKR\n" -msgstr "" +msgstr "module pcspkr did not have configs CONFIG_INPUT_PCSPKR\n" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1614 msgid "For each of these lines, copy the @code{CONFIG_XXXX_XXXX} portion into the @file{.config} in the directory, and append @code{=m}, so in the end it looks like this:" -msgstr "" +msgstr "Pre každý z týchto riadkov skopírujte časť @code{CONFIG_XXXX_XXXX} do @file{.config} súboru priečinka a pridajte @code{=m} tak, aby nakoniec vyzeral takto:" #. type: example #: guix-git/doc/guix-cookbook.texi:1618 @@ -2841,31 +2936,33 @@ msgid "" "CONFIG_INPUT_PCSPKR=m\n" "CONFIG_VIRTIO=m\n" msgstr "" +"CONFIG_INPUT_PCSPKR=m\n" +"CONFIG_VIRTIO=m\n" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1627 msgid "After copying all the configuration options, run @code{make localmodconfig} again to make sure that you don't have any output starting with ``module''. After all of these machine specific modules there are a couple more left that are also needed. @code{CONFIG_MODULES} is necessary so that you can build and load modules separately and not have everything built into the kernel. @code{CONFIG_BLK_DEV_SD} is required for reading from hard drives. It is possible that there are other modules which you will need." -msgstr "" +msgstr "Po skopírovaní všetkých volieb nastavenia znova spustite @code{make localmodconfig}, aby ste sa uistili, že výstup už neobsahuje žiadne správy začínajúce slovom „module“. Okrem všetkých týchto modulov vzťahujúcich sa k stroju nám ostáva ešte niekoľko ďalších dôležitých modulov. @code{CONFIG_MODULES} umožňuje zostavovať a načítavať moduly oddelene, aby nemuseli byť zabudované do jadra. @code{CONFIG_BLK_DEV_SD} umožňuje čítať pevné disky. Je tiež možné, že budete potrebovať aj iné moduly." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1631 msgid "This post does not aim to be a guide to configuring your own kernel however, so if you do decide to build a custom kernel you'll have to seek out other guides to create a kernel which is just right for your needs." -msgstr "" +msgstr "Tento príspevok nemá za úlohu vás previesť nastavením vášho vlastného jadra. Ak sa rozhodnete zostaviť si vlastné jadro, budete si musieť nájsť iné návody na vytvorenie jadra, ktoré vám bude vyhovovať." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1639 msgid "The second way to setup the kernel configuration makes more use of Guix's features and allows you to share configuration segments between different kernels. For example, all machines using EFI to boot have a number of EFI configuration flags that they need. It is likely that all the kernels will share a list of file systems to support. By using variables it is easier to see at a glance what features are enabled and to make sure you don't have features in one kernel but missing in another." -msgstr "" +msgstr "Druhý spôsob nastavenia jadra využíva funkcie Guixu vo väčšej miere a umožňuje vám zdieľať časti nastavenia medzi rôznymi jadrami. Napríklad, všetky stroje používajúce na zavádzanie EFI vyžadujú určitý počet volieb nastavenia EFI. Je tiež pravdepodobné, že viaceré jadrá budú zdieľať podporu niekoľkých súborových systémov. Použitím premenných je jednoduchšie spozorovať, ktoré súčasti sú povolené a uistiť sa, či nie sú niektoré z nich prítomné v jednom jadre ale v druhom chýbajú." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1644 msgid "Left undiscussed however, is Guix's initrd and its customization. It is likely that you'll need to modify the initrd on a machine using a custom kernel, since certain modules which are expected to be built may not be available for inclusion into the initrd." -msgstr "" +msgstr "Nepozreli sme sa však na initrd a jeho prispôsobenie. Je pravdepodobné, že budete potrebovať prispôsobiť initrd na stroji s vlastným jadrom, keďže niektoré moduly nemusia byť dostupné pre zahrnutie do initrd." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1651 msgid "Historically, Guix System is centered around an @code{operating-system} structure. This structure contains various fields ranging from the bootloader and kernel declaration to the services to install." -msgstr "" +msgstr "Z dejinného pohľadu je systém Guix sústredený okolo štruktúry @code{operating-system}. Táto štruktúra obsahuje rôzne polia počínajúc zadaním zavádzača a jadra až k službám, ktoré sa majú nainštalovať." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:1657 @@ -3882,7 +3979,7 @@ msgstr "" #: guix-git/doc/guix-cookbook.texi:2322 #, no-wrap msgid "Warning" -msgstr "" +msgstr "Upozornenie" #. type: quotation #: guix-git/doc/guix-cookbook.texi:2328 @@ -4140,7 +4237,7 @@ msgstr "" #. type: itemize #: guix-git/doc/guix-cookbook.texi:2524 msgid "Games." -msgstr "" +msgstr "Hry." #. type: Plain text #: guix-git/doc/guix-cookbook.texi:2527 @@ -4351,7 +4448,7 @@ msgstr "" #: guix-git/doc/guix-cookbook.texi:2660 guix-git/doc/guix-cookbook.texi:2661 #, no-wrap msgid "Required packages" -msgstr "" +msgstr "Požadované balíky" #. type: Plain text #: guix-git/doc/guix-cookbook.texi:2666 diff --git a/po/doc/guix-manual.de.po b/po/doc/guix-manual.de.po index 47e1fb14a0..6922039d03 100644 --- a/po/doc/guix-manual.de.po +++ b/po/doc/guix-manual.de.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: guix-manual 1.2.0-pre3\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2021-12-21 15:18+0000\n" -"PO-Revision-Date: 2022-01-08 18:36+0000\n" +"POT-Creation-Date: 2022-02-02 15:18+0000\n" +"PO-Revision-Date: 2022-01-17 22:46+0000\n" "Last-Translator: Florian Pelz \n" "Language-Team: German \n" "Language: de\n" @@ -73,8 +73,8 @@ msgid "The latest and greatest." msgstr "Das Neueste und Beste." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:161 -#: guix-git/doc/contributing.texi:162 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:173 +#: guix-git/doc/contributing.texi:174 #, no-wrap msgid "Running Guix Before It Is Installed" msgstr "Guix vor der Installation ausführen" @@ -85,8 +85,8 @@ msgid "Hacker tricks." msgstr "Hacker-Tricks." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:235 -#: guix-git/doc/contributing.texi:236 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:265 +#: guix-git/doc/contributing.texi:266 #, no-wrap msgid "The Perfect Setup" msgstr "Perfekt eingerichtet" @@ -97,8 +97,8 @@ msgid "The right tools." msgstr "Die richtigen Werkzeuge." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:326 -#: guix-git/doc/contributing.texi:327 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:356 +#: guix-git/doc/contributing.texi:357 #, no-wrap msgid "Packaging Guidelines" msgstr "Paketrichtlinien" @@ -109,8 +109,8 @@ msgid "Growing the distribution." msgstr "Die Distribution wachsen lassen." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:890 -#: guix-git/doc/contributing.texi:891 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:920 +#: guix-git/doc/contributing.texi:921 #, no-wrap msgid "Coding Style" msgstr "Programmierstil" @@ -121,8 +121,8 @@ msgid "Hygiene of the contributor." msgstr "Wie Mitwirkende hygienisch arbeiten." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:989 -#: guix-git/doc/contributing.texi:990 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1013 +#: guix-git/doc/contributing.texi:1014 #, no-wrap msgid "Submitting Patches" msgstr "Einreichen von Patches" @@ -133,8 +133,8 @@ msgid "Share your work." msgstr "Teilen Sie Ihre Arbeit." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1270 -#: guix-git/doc/contributing.texi:1271 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1298 +#: guix-git/doc/contributing.texi:1299 #, no-wrap msgid "Tracking Bugs and Patches" msgstr "Überblick über gemeldete Fehler und Patches" @@ -145,8 +145,8 @@ msgid "Keeping it all organized." msgstr "Die Ordnung bewahren." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1385 -#: guix-git/doc/contributing.texi:1386 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1413 +#: guix-git/doc/contributing.texi:1414 #, no-wrap msgid "Commit Access" msgstr "Commit-Zugriff" @@ -157,8 +157,8 @@ msgid "Pushing to the official repository." msgstr "Auf die offiziellen Repositorys pushen." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1611 -#: guix-git/doc/contributing.texi:1612 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1644 +#: guix-git/doc/contributing.texi:1645 #, no-wrap msgid "Updating the Guix Package" msgstr "Das Guix-Paket aktualisieren" @@ -169,8 +169,8 @@ msgid "Updating the Guix package definition." msgstr "Die Paketdefinition für Guix erneuern." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1652 -#: guix-git/doc/contributing.texi:1653 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1686 #, no-wrap msgid "Translating Guix" msgstr "Guix übersetzen." @@ -357,30 +357,31 @@ msgid "make authenticate GUIX_GIT_KEYRING=myremote/keyring\n" msgstr "make authenticate GUIX_GIT_KEYRING=myremote/keyring\n" #. type: quotation -#: guix-git/doc/contributing.texi:154 guix-git/doc/contributing.texi:1463 -#: guix-git/doc/guix.texi:594 guix-git/doc/guix.texi:643 -#: guix-git/doc/guix.texi:833 guix-git/doc/guix.texi:1813 -#: guix-git/doc/guix.texi:2060 guix-git/doc/guix.texi:2244 -#: guix-git/doc/guix.texi:2465 guix-git/doc/guix.texi:2677 -#: guix-git/doc/guix.texi:3807 guix-git/doc/guix.texi:4548 -#: guix-git/doc/guix.texi:4562 guix-git/doc/guix.texi:4644 -#: guix-git/doc/guix.texi:4874 guix-git/doc/guix.texi:5615 -#: guix-git/doc/guix.texi:6082 guix-git/doc/guix.texi:6333 -#: guix-git/doc/guix.texi:6454 guix-git/doc/guix.texi:6482 -#: guix-git/doc/guix.texi:6535 guix-git/doc/guix.texi:9391 -#: guix-git/doc/guix.texi:9461 guix-git/doc/guix.texi:11198 -#: guix-git/doc/guix.texi:11238 guix-git/doc/guix.texi:11512 -#: guix-git/doc/guix.texi:11524 guix-git/doc/guix.texi:14000 -#: guix-git/doc/guix.texi:14631 guix-git/doc/guix.texi:15521 -#: guix-git/doc/guix.texi:16507 guix-git/doc/guix.texi:19140 -#: guix-git/doc/guix.texi:19310 guix-git/doc/guix.texi:27188 -#: guix-git/doc/guix.texi:30914 guix-git/doc/guix.texi:34669 -#: guix-git/doc/guix.texi:34903 guix-git/doc/guix.texi:35073 -#: guix-git/doc/guix.texi:35232 guix-git/doc/guix.texi:35334 -#: guix-git/doc/guix.texi:35435 guix-git/doc/guix.texi:35738 -#: guix-git/doc/guix.texi:36896 guix-git/doc/guix.texi:36971 -#: guix-git/doc/guix.texi:37006 guix-git/doc/guix.texi:37056 -#: guix-git/doc/guix.texi:37143 guix-git/doc/guix.texi:37564 +#: guix-git/doc/contributing.texi:154 guix-git/doc/contributing.texi:1496 +#: guix-git/doc/guix.texi:605 guix-git/doc/guix.texi:654 +#: guix-git/doc/guix.texi:844 guix-git/doc/guix.texi:1830 +#: guix-git/doc/guix.texi:2077 guix-git/doc/guix.texi:2261 +#: guix-git/doc/guix.texi:2482 guix-git/doc/guix.texi:2694 +#: guix-git/doc/guix.texi:3825 guix-git/doc/guix.texi:4566 +#: guix-git/doc/guix.texi:4580 guix-git/doc/guix.texi:4662 +#: guix-git/doc/guix.texi:4892 guix-git/doc/guix.texi:5633 +#: guix-git/doc/guix.texi:6119 guix-git/doc/guix.texi:6376 +#: guix-git/doc/guix.texi:6497 guix-git/doc/guix.texi:6525 +#: guix-git/doc/guix.texi:6578 guix-git/doc/guix.texi:9581 +#: guix-git/doc/guix.texi:9705 guix-git/doc/guix.texi:9775 +#: guix-git/doc/guix.texi:11512 guix-git/doc/guix.texi:11552 +#: guix-git/doc/guix.texi:11826 guix-git/doc/guix.texi:11838 +#: guix-git/doc/guix.texi:14357 guix-git/doc/guix.texi:14988 +#: guix-git/doc/guix.texi:15878 guix-git/doc/guix.texi:16864 +#: guix-git/doc/guix.texi:19502 guix-git/doc/guix.texi:19672 +#: guix-git/doc/guix.texi:27525 guix-git/doc/guix.texi:31279 +#: guix-git/doc/guix.texi:35108 guix-git/doc/guix.texi:35342 +#: guix-git/doc/guix.texi:35512 guix-git/doc/guix.texi:35676 +#: guix-git/doc/guix.texi:35778 guix-git/doc/guix.texi:35817 +#: guix-git/doc/guix.texi:35891 guix-git/doc/guix.texi:36228 +#: guix-git/doc/guix.texi:37386 guix-git/doc/guix.texi:37461 +#: guix-git/doc/guix.texi:37496 guix-git/doc/guix.texi:37546 +#: guix-git/doc/guix.texi:37633 guix-git/doc/guix.texi:38043 #, no-wrap msgid "Note" msgstr "Anmerkung" @@ -391,28 +392,46 @@ msgid "You are advised to run @command{make authenticate} after every @command{g msgstr "Wir raten Ihnen dazu, nach jedem Aufruf von @command{git pull} auch @command{make authenticate} auszuführen. Das stellt sicher, dass Sie weiterhin nur gültige Änderungen in Ihr Repository übernehmen." #. type: Plain text -#: guix-git/doc/contributing.texi:168 +#: guix-git/doc/contributing.texi:162 +msgid "After updating the repository, @command{make} might fail with an error similar to the following example:" +msgstr "" + +#. type: example +#: guix-git/doc/contributing.texi:166 +#, no-wrap +msgid "" +"error: failed to load 'gnu/packages/dunst.scm':\n" +"ice-9/eval.scm:293:34: In procedure abi-check: #>: record ABI mismatch; recompilation needed\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:172 +msgid "This means that one of the record types that Guix defines (in this example, the @code{origin} record) has changed, and all of guix needs to be recompiled to take that change into account. To do so, run @command{make clean-go} followed by @command{make}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:180 msgid "In order to keep a sane working environment, you will find it useful to test the changes made in your local source tree checkout without actually installing them. So that you can distinguish between your ``end-user'' hat and your ``motley'' costume." msgstr "Um eine gesunde Arbeitsumgebung zu erhalten, ist es hilfreich, die im lokalen Quellbaum vorgenommenen Änderungen zunächst zu testen, ohne sie tatsächlich zu installieren. So können Sie zwischen Ihrem Endnutzer-„Straßenanzug“ und Ihrem „Faschingskostüm“ unterscheiden." #. type: Plain text -#: guix-git/doc/contributing.texi:179 +#: guix-git/doc/contributing.texi:191 msgid "To that end, all the command-line tools can be used even if you have not run @code{make install}. To do that, you first need to have an environment with all the dependencies available (@pxref{Building from Git}), and then simply prefix each command with @command{./pre-inst-env} (the @file{pre-inst-env} script lives in the top build tree of Guix; it is generated by running @command{./bootstrap} followed by @command{./configure}). As an example, here is how you would build the @code{hello} package as defined in your working tree (this assumes @command{guix-daemon} is already running on your system; it's OK if it's a different version):" msgstr "Zu diesem Zweck können alle Befehlszeilenwerkzeuge auch schon benutzt werden, ohne dass Sie @code{make install} laufen lassen. Dazu müssen Sie sich in einer Umgebung befinden, in der alle Abhängigkeiten von Guix verfügbar sind (siehe @ref{Building from Git}) und darin einfach vor jeden Befehl @command{./pre-inst-env} schreiben (das Skript @file{pre-inst-env} befindet sich auf oberster Ebene im Verzeichnis, wo Guix erstellt wird; es wird durch Ausführung von @command{./bootstrap} gefolgt von @command{./configure} erzeugt). Zum Beispiel würden Sie so das Paket @code{hello} erstellen lassen, so wie es in der gegenwärtigen Kopie des Guix-Quellbaums definiert wurde (es wird angenommen, dass @command{guix-daemon} auf Ihrem System bereits läuft, auch wenn es eine andere Version ist):" #. type: example -#: guix-git/doc/contributing.texi:182 +#: guix-git/doc/contributing.texi:194 #, no-wrap msgid "$ ./pre-inst-env guix build hello\n" msgstr "$ ./pre-inst-env guix build hello\n" #. type: Plain text -#: guix-git/doc/contributing.texi:186 +#: guix-git/doc/contributing.texi:198 msgid "Similarly, an example for a Guile session using the Guix modules:" msgstr "Entsprechend würden Sie dies eingeben, um eine Guile-Sitzung zu öffnen, die die Guix-Module benutzt:" #. type: example -#: guix-git/doc/contributing.texi:189 +#: guix-git/doc/contributing.texi:201 #, no-wrap msgid "" "$ ./pre-inst-env guile -c '(use-modules (guix utils)) (pk (%current-system))'\n" @@ -422,30 +441,30 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/contributing.texi:191 +#: guix-git/doc/contributing.texi:203 #, no-wrap msgid ";;; (\"x86_64-linux\")\n" msgstr ";;; (\"x86_64-linux\")\n" #. type: cindex -#: guix-git/doc/contributing.texi:194 +#: guix-git/doc/contributing.texi:206 #, no-wrap msgid "REPL" msgstr "REPL" #. type: cindex -#: guix-git/doc/contributing.texi:195 +#: guix-git/doc/contributing.texi:207 #, no-wrap msgid "read-eval-print loop" msgstr "Lese-Auswerten-Schreiben-Schleife" #. type: Plain text -#: guix-git/doc/contributing.texi:198 +#: guix-git/doc/contributing.texi:210 msgid "@dots{} and for a REPL (@pxref{Using Guile Interactively,,, guile, Guile Reference Manual}):" msgstr "…@: und auf einer REPL (siehe @ref{Using Guile Interactively,,, guile, Guile-Referenzhandbuch}):" #. type: example -#: guix-git/doc/contributing.texi:213 +#: guix-git/doc/contributing.texi:225 #, no-wrap msgid "" "$ ./pre-inst-env guile\n" @@ -477,44 +496,67 @@ msgstr "" "$1 = 361\n" #. type: Plain text -#: guix-git/doc/contributing.texi:221 +#: guix-git/doc/contributing.texi:233 msgid "If you are hacking on the daemon and its supporting code or if @command{guix-daemon} is not already running on your system, you can launch it straight from the build tree@footnote{The @option{-E} flag to @command{sudo} guarantees that @code{GUILE_LOAD_PATH} is correctly set such that @command{guix-daemon} and the tools it uses can find the Guile modules they need.}:" msgstr "Wenn Sie am Daemon und damit zu tun habendem Code hacken oder wenn @command{guix-daemon} nicht bereits auf Ihrem System läuft, können Sie ihn direkt aus dem Verzeichnis heraus starten, wo Sie Guix erstellen lassen@footnote{Die Befehlszeilenoption @option{-E} von @command{sudo} stellt sicher, dass @code{GUILE_LOAD_PATH} richtig gesetzt wird, damit @command{guix-daemon} und die davon benutzten Werkzeuge die von ihnen benötigten Guile-Module finden können.}:" #. type: example -#: guix-git/doc/contributing.texi:224 +#: guix-git/doc/contributing.texi:236 #, no-wrap msgid "$ sudo -E ./pre-inst-env guix-daemon --build-users-group=guixbuild\n" msgstr "$ sudo -E ./pre-inst-env guix-daemon --build-users-group=guixbuild\n" #. type: Plain text -#: guix-git/doc/contributing.texi:228 +#: guix-git/doc/contributing.texi:240 msgid "The @command{pre-inst-env} script sets up all the environment variables necessary to support this, including @env{PATH} and @env{GUILE_LOAD_PATH}." msgstr "Das @command{pre-inst-env}-Skript richtet alle Umgebungsvariablen ein, die nötig sind, um dies zu ermöglichen, einschließlich @env{PATH} und @env{GUILE_LOAD_PATH}." #. type: Plain text -#: guix-git/doc/contributing.texi:233 +#: guix-git/doc/contributing.texi:245 msgid "Note that @command{./pre-inst-env guix pull} does @emph{not} upgrade the local source tree; it simply updates the @file{~/.config/guix/current} symlink (@pxref{Invoking guix pull}). Run @command{git pull} instead if you want to upgrade your local source tree." msgstr "Beachten Sie, dass @command{./pre-inst-env guix pull} den lokalen Quellbaum @emph{nicht} aktualisiert; es aktualisiert lediglich die symbolische Verknüpfung @file{~/.config/guix/current} (siehe @ref{Invoking guix pull}). Um Ihren lokalen Quellbaum zu aktualisieren, müssen Sie stattdessen @command{git pull} benutzen." #. type: Plain text -#: guix-git/doc/contributing.texi:243 +#: guix-git/doc/contributing.texi:249 +msgid "Sometimes, especially if you have recently updated your repository, running @command{./pre-inst-env} will print a message similar to the following example:" +msgstr "" + +#. type: example +#: guix-git/doc/contributing.texi:253 +#, no-wrap +msgid "" +";;; note: source file /home/user/projects/guix/guix/progress.scm\n" +";;; newer than compiled /home/user/projects/guix/guix/progress.go\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:259 +msgid "This is only a note and you can safely ignore it. You can get rid of the message by running @command{make -j4}. Until you do, Guile will run slightly slower because it will interpret the code instead of using prepared Guile object (@file{.go}) files." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:264 +msgid "You can run @command{make} automatically as you work using @command{watchexec} from the @code{watchexec} package. For example, to build again each time you update a package file, you can run @samp{watchexec -w gnu/packages make -j4}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:273 msgid "The Perfect Setup to hack on Guix is basically the perfect setup used for Guile hacking (@pxref{Using Guile in Emacs,,, guile, Guile Reference Manual}). First, you need more than an editor, you need @url{https://www.gnu.org/software/emacs, Emacs}, empowered by the wonderful @url{https://nongnu.org/geiser/, Geiser}. To set that up, run:" msgstr "Um perfekt für das Hacken an Guix eingerichtet zu sein, brauchen Sie an sich dasselbe wie um perfekt für das Hacken mit Guile (siehe @ref{Using Guile in Emacs,,, guile, Guile-Referenzhandbuch}). Zunächst brauchen Sie mehr als ein Textverarbeitungsprogramm, Sie brauchen @url{https://www.gnu.org/software/emacs, Emacs} zusammen mit den vom wunderbaren @url{https://nongnu.org/geiser/, Geiser} verliehenen Kräften. Um diese zu installieren, können Sie Folgendes ausführen:" #. type: example -#: guix-git/doc/contributing.texi:246 +#: guix-git/doc/contributing.texi:276 #, no-wrap msgid "guix package -i emacs guile emacs-geiser emacs-geiser-guile\n" msgstr "guix package -i emacs guile emacs-geiser emacs-geiser-guile\n" #. type: Plain text -#: guix-git/doc/contributing.texi:255 +#: guix-git/doc/contributing.texi:285 msgid "Geiser allows for interactive and incremental development from within Emacs: code compilation and evaluation from within buffers, access to on-line documentation (docstrings), context-sensitive completion, @kbd{M-.} to jump to an object definition, a REPL to try out your code, and more (@pxref{Introduction,,, geiser, Geiser User Manual}). For convenient Guix development, make sure to augment Guile’s load path so that it finds source files from your checkout:" msgstr "Geiser ermöglicht interaktive und inkrementelle Entwicklung aus Emacs heraus: Code kann in Puffern kompiliert und ausgewertet werden. Zugang zu Online-Dokumentation (Docstrings) steht ebenso zur Verfügung wie kontextabhängige Vervollständigung, @kbd{M-.} um zu einer Objektdefinition zu springen, eine REPL, um Ihren Code auszuprobieren, und mehr (siehe @ref{Introduction,,, geiser, Geiser User Manual}). Zur bequemen Guix-Entwicklung sollten Sie Guiles Ladepfad so ergänzen, dass die Quelldateien in Ihrem Checkout gefunden werden." #. type: lisp -#: guix-git/doc/contributing.texi:260 +#: guix-git/doc/contributing.texi:290 #, no-wrap msgid "" ";; @r{Assuming the Guix checkout is in ~/src/guix.}\n" @@ -526,35 +568,35 @@ msgstr "" " (add-to-list 'geiser-guile-load-path \"~/src/guix\"))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:268 +#: guix-git/doc/contributing.texi:298 msgid "To actually edit the code, Emacs already has a neat Scheme mode. But in addition to that, you must not miss @url{https://www.emacswiki.org/emacs/ParEdit, Paredit}. It provides facilities to directly operate on the syntax tree, such as raising an s-expression or wrapping it, swallowing or rejecting the following s-expression, etc." msgstr "Um den Code tatsächlich zu bearbeiten, bietet Emacs schon einen netten Scheme-Modus. Aber Sie dürfen auch @url{https://www.emacswiki.org/emacs/ParEdit, Paredit} nicht verpassen. Es bietet Hilfsmittel, um direkt mit dem Syntaxbaum zu arbeiten, und kann so zum Beispiel einen S-Ausdruck hochheben oder ihn umhüllen, ihn verschlucken oder den nachfolgenden S-Ausdruck verwerfen, etc." #. type: cindex -#: guix-git/doc/contributing.texi:269 +#: guix-git/doc/contributing.texi:299 #, no-wrap msgid "code snippets" msgstr "Code-Schnipsel" #. type: cindex -#: guix-git/doc/contributing.texi:270 +#: guix-git/doc/contributing.texi:300 #, no-wrap msgid "templates" msgstr "Vorlagen" #. type: cindex -#: guix-git/doc/contributing.texi:271 +#: guix-git/doc/contributing.texi:301 #, no-wrap msgid "reducing boilerplate" msgstr "Tipparbeit sparen" #. type: Plain text -#: guix-git/doc/contributing.texi:278 +#: guix-git/doc/contributing.texi:308 msgid "We also provide templates for common git commit messages and package definitions in the @file{etc/snippets} directory. These templates can be used with @url{https://joaotavora.github.io/yasnippet/, YASnippet} to expand short trigger strings to interactive text snippets. You may want to add the snippets directory to the @var{yas-snippet-dirs} variable in Emacs." msgstr "Wir bieten auch Vorlagen für häufige Git-Commit-Nachrichten und Paketdefinitionen im Verzeichnis @file{etc/snippets}. Diese Vorlagen können mit @url{https://joaotavora.github.io/yasnippet/, YASnippet} zusammen benutzt werden, um kurze Auslöse-Zeichenketten zu interaktiven Textschnipseln umzuschreiben. Vielleicht möchten Sie das Schnipselverzeichnis zu Ihrer @var{yas-snippet-dirs}-Variablen in Emacs hinzufügen." #. type: lisp -#: guix-git/doc/contributing.texi:283 +#: guix-git/doc/contributing.texi:313 #, no-wrap msgid "" ";; @r{Assuming the Guix checkout is in ~/src/guix.}\n" @@ -566,40 +608,40 @@ msgstr "" " (add-to-list 'yas-snippet-dirs \"~/src/guix/etc/snippets\"))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:291 +#: guix-git/doc/contributing.texi:321 msgid "The commit message snippets depend on @url{https://magit.vc/, Magit} to display staged files. When editing a commit message type @code{add} followed by @kbd{TAB} to insert a commit message template for adding a package; type @code{update} followed by @kbd{TAB} to insert a template for updating a package; type @code{https} followed by @kbd{TAB} to insert a template for changing the home page URI of a package to HTTPS." msgstr "Die Schnipsel für Commit-Nachrichten setzen @url{https://magit.vc/, Magit} voraus, um zum Commit vorgemerkte Dateien anzuzeigen. Wenn Sie eine Commit-Nachricht bearbeiten, können Sie @code{add} gefolgt von @kbd{TAB} eintippen, um eine Commit-Nachrichten-Vorlage für das Hinzufügen eines Pakets zu erhalten; tippen Sie @code{update} gefolgt von @kbd{TAB} ein, um eine Vorlage zum Aktualisieren eines Pakets zu bekommen; tippen Sie @code{https} gefolgt von @kbd{TAB} ein, um eine Vorlage zum Ändern der Homepage-URI eines Pakets auf HTTPS einzufügen." #. type: Plain text -#: guix-git/doc/contributing.texi:297 +#: guix-git/doc/contributing.texi:327 msgid "The main snippet for @code{scheme-mode} is triggered by typing @code{package...} followed by @kbd{TAB}. This snippet also inserts the trigger string @code{origin...}, which can be expanded further. The @code{origin} snippet in turn may insert other trigger strings ending on @code{...}, which also can be expanded further." msgstr "Das Hauptschnipsel für @code{scheme-mode} wird ausgelöst, indem Sie @code{package...} gefolgt von @kbd{TAB} eintippen. Dieses Snippet fügt auch die Auslöse-Zeichenkette @code{origin...} ein, die danach weiter umgeschrieben werden kann. Das @code{origin}-Schnipsel kann wiederum andere Auslöse-Zeichenketten einfügen, die alle auf @code{...} enden, was selbst wieder weiter umgeschrieben werden kann." #. type: cindex -#: guix-git/doc/contributing.texi:298 +#: guix-git/doc/contributing.texi:328 #, no-wrap msgid "insert or update copyright" msgstr "Copyright einfügen oder aktualisieren" #. type: code{#1} -#: guix-git/doc/contributing.texi:299 +#: guix-git/doc/contributing.texi:329 #, no-wrap msgid "M-x guix-copyright" msgstr "M-x guix-copyright" #. type: code{#1} -#: guix-git/doc/contributing.texi:300 +#: guix-git/doc/contributing.texi:330 #, no-wrap msgid "M-x copyright-update" msgstr "M-x copyright-update" #. type: Plain text -#: guix-git/doc/contributing.texi:304 +#: guix-git/doc/contributing.texi:334 msgid "We additionally provide insertion and automatic update of a copyright in @file{etc/copyright.el}. You may want to set your full name, mail, and load a file." msgstr "Außerden stellen wir automatisches Einfügen und Aktualisieren von Urheberrechtsinformationen („Copyright“) über @file{etc/copyright.el} zur Verfügung. Dazu müssten Sie Ihren vollständigen Namen mit E-Mail-Adresse festlegen und eine Datei laden." #. type: lisp -#: guix-git/doc/contributing.texi:310 +#: guix-git/doc/contributing.texi:340 #, no-wrap msgid "" "(setq user-full-name \"Alice Doe\")\n" @@ -613,17 +655,17 @@ msgstr "" "(load-file \"~/src/guix/etc/copyright.el\")\n" #. type: Plain text -#: guix-git/doc/contributing.texi:313 +#: guix-git/doc/contributing.texi:343 msgid "To insert a copyright at the current line invoke @code{M-x guix-copyright}." msgstr "Um an der aktuellen Zeile Copyright-Informationen einzufügen, rufen Sie @code{M-x guix-copyright} auf." #. type: Plain text -#: guix-git/doc/contributing.texi:315 +#: guix-git/doc/contributing.texi:345 msgid "To update a copyright you need to specify a @code{copyright-names-regexp}." msgstr "Um Copyright-Informationen aktualisieren zu können, müssen Sie einen regulären Ausdruck @code{copyright-names-regexp} angeben." #. type: lisp -#: guix-git/doc/contributing.texi:319 +#: guix-git/doc/contributing.texi:349 #, no-wrap msgid "" "(setq copyright-names-regexp\n" @@ -633,281 +675,281 @@ msgstr "" " (format \"%s <%s>\" user-full-name user-mail-address))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:325 +#: guix-git/doc/contributing.texi:355 msgid "You can check if your copyright is up to date by evaluating @code{M-x copyright-update}. If you want to do it automatically after each buffer save then add @code{(add-hook 'after-save-hook 'copyright-update)} in Emacs." msgstr "Sie können prüfen, ob Ihre Urheberrechtsinformationen aktuell sind, indem Sie @code{M-x copyright-update} auswerten. Wenn Sie möchten, dass dies automatisch nach jedem Speichern des Puffers geschieht, fügen Sie @code{(add-hook 'after-save-hook 'copyright-update)} in Emacs hinzu." #. type: cindex -#: guix-git/doc/contributing.texi:329 +#: guix-git/doc/contributing.texi:359 #, no-wrap msgid "packages, creating" msgstr "Pakete definieren" #. type: Plain text -#: guix-git/doc/contributing.texi:333 +#: guix-git/doc/contributing.texi:363 msgid "The GNU distribution is nascent and may well lack some of your favorite packages. This section describes how you can help make the distribution grow." msgstr "Die GNU-Distribution ist noch sehr jung und einige Ihrer Lieblingspakete könnten noch fehlen. Dieser Abschnitt beschreibt, wie Sie dabei helfen können, die Distribution wachsen zu lassen." #. type: Plain text -#: guix-git/doc/contributing.texi:341 +#: guix-git/doc/contributing.texi:371 msgid "Free software packages are usually distributed in the form of @dfn{source code tarballs}---typically @file{tar.gz} files that contain all the source files. Adding a package to the distribution means essentially two things: adding a @dfn{recipe} that describes how to build the package, including a list of other packages required to build it, and adding @dfn{package metadata} along with that recipe, such as a description and licensing information." msgstr "Pakete mit freier Software werden normalerweise in Form von @dfn{Tarballs mit dem Quellcode} angeboten@tie{}— typischerweise in @file{tar.gz}-Archivdateien, in denen alle Quelldateien enthalten sind. Ein Paket zur Distribution hinzuzufügen, bedeutet also zweierlei Dinge: Zum einen fügt man ein @dfn{Rezept} ein, das beschreibt, wie das Paket erstellt werden kann, einschließlich einer Liste von anderen Paketen, die für diese Erstellung gebraucht werden, zum anderen fügt man @dfn{Paketmetadaten} zum Rezept hinzu, wie zum Beispiel eine Beschreibung und Lizenzinformationen." #. type: Plain text -#: guix-git/doc/contributing.texi:350 +#: guix-git/doc/contributing.texi:380 msgid "In Guix all this information is embodied in @dfn{package definitions}. Package definitions provide a high-level view of the package. They are written using the syntax of the Scheme programming language; in fact, for each package we define a variable bound to the package definition, and export that variable from a module (@pxref{Package Modules}). However, in-depth Scheme knowledge is @emph{not} a prerequisite for creating packages. For more information on package definitions, @pxref{Defining Packages}." msgstr "In Guix sind all diese Informationen ein Teil der @dfn{Paketdefinitionen}. In Paketdefinitionen hat man eine abstrahierte, hochsprachliche Sicht auf das Paket. Sie werden in der Syntax der Scheme-Programmiersprache verfasst; tatsächlich definieren wir für jedes Paket eine Variable und binden diese an dessen Definition, um die Variable anschließend aus einem Modul heraus zu exportieren (siehe @ref{Package Modules}). Allerdings ist @emph{kein} tiefgehendes Wissen über Scheme erforderlich, um Pakete zu erstellen. Mehr Informationen über Paketdefinitionen finden Sie im Abschnitt @ref{Defining Packages}." #. type: Plain text -#: guix-git/doc/contributing.texi:356 +#: guix-git/doc/contributing.texi:386 msgid "Once a package definition is in place, stored in a file in the Guix source tree, it can be tested using the @command{guix build} command (@pxref{Invoking guix build}). For example, assuming the new package is called @code{gnew}, you may run this command from the Guix build tree (@pxref{Running Guix Before It Is Installed}):" msgstr "Eine fertige Paketdefinition kann, nachdem sie in eine Datei im Quell-Verzeichnisbaum von Guix eingesetzt wurde, mit Hilfe des Befehls @command{guix build} getestet werden (siehe @ref{Invoking guix build}). Wenn das Paket zum Beispiel den Namen @code{gnew} trägt, können Sie folgenden Befehl aus dem Erstellungs-Verzeichnisbaum von Guix heraus ausführen (siehe @ref{Running Guix Before It Is Installed}):" #. type: example -#: guix-git/doc/contributing.texi:359 +#: guix-git/doc/contributing.texi:389 #, no-wrap msgid "./pre-inst-env guix build gnew --keep-failed\n" msgstr "./pre-inst-env guix build gnew --keep-failed\n" #. type: Plain text -#: guix-git/doc/contributing.texi:365 +#: guix-git/doc/contributing.texi:395 msgid "Using @code{--keep-failed} makes it easier to debug build failures since it provides access to the failed build tree. Another useful command-line option when debugging is @code{--log-file}, to access the build log." msgstr "Wenn Sie @code{--keep-failed} benutzen, ist es leichter, fehlgeschlagene Erstellungen zu untersuchen, weil dann der Verzeichnisbaum der fehlgeschlagenen Erstellung zugänglich bleibt. Eine andere nützliche Befehlszeilenoption bei der Fehlersuche ist @code{--log-file}, womit das Erstellungsprotokoll eingesehen werden kann." #. type: Plain text -#: guix-git/doc/contributing.texi:370 +#: guix-git/doc/contributing.texi:400 msgid "If the package is unknown to the @command{guix} command, it may be that the source file contains a syntax error, or lacks a @code{define-public} clause to export the package variable. To figure it out, you may load the module from Guile to get more information about the actual error:" msgstr "Wenn der @command{guix}-Befehl das Paket nicht erkennt, kann es daran liegen, dass die Quelldatei einen Syntaxfehler hat oder ihr eine @code{define-public}-Klausel fehlt, die die Paketvariable exportiert. Um das herauszufinden, können Sie das Modul aus Guile heraus laden, um mehr Informationen über den tatsächlichen Fehler zu bekommen:" #. type: example -#: guix-git/doc/contributing.texi:373 +#: guix-git/doc/contributing.texi:403 #, no-wrap msgid "./pre-inst-env guile -c '(use-modules (gnu packages gnew))'\n" msgstr "./pre-inst-env guile -c '(use-modules (gnu packages gnew))'\n" #. type: Plain text -#: guix-git/doc/contributing.texi:380 +#: guix-git/doc/contributing.texi:410 msgid "Once your package builds correctly, please send us a patch (@pxref{Submitting Patches}). Well, if you need help, we will be happy to help you too. Once the patch is committed in the Guix repository, the new package automatically gets built on the supported platforms by @url{https://@value{SUBSTITUTE-SERVER-1}, our continuous integration system}." msgstr "Sobald Ihr Paket erfolgreich erstellt werden kann, schicken Sie uns bitte einen Patch (siehe @ref{Submitting Patches}). Wenn Sie dabei Hilfe brauchen sollten, helfen wir gerne. Ab dem Zeitpunkt, zu dem der Patch als Commit ins Guix-Repository eingepflegt wurde, wird das neue Paket automatisch durch @url{https://@value{SUBSTITUTE-SERVER-1}, unser System zur Kontinuierlichen Integration} auf allen unterstützten Plattformen erstellt." #. type: cindex -#: guix-git/doc/contributing.texi:381 +#: guix-git/doc/contributing.texi:411 #, no-wrap msgid "substituter" msgstr "Substituierer" #. type: Plain text -#: guix-git/doc/contributing.texi:388 +#: guix-git/doc/contributing.texi:418 msgid "Users can obtain the new package definition simply by running @command{guix pull} (@pxref{Invoking guix pull}). When @code{@value{SUBSTITUTE-SERVER-1}} is done building the package, installing the package automatically downloads binaries from there (@pxref{Substitutes}). The only place where human intervention is needed is to review and apply the patch." msgstr "Benutzern steht die neue Paketdefinition zur Verfügung, nachdem sie das nächste Mal @command{guix pull} ausgeführt haben (siehe @ref{Invoking guix pull}). Wenn @code{@value{SUBSTITUTE-SERVER-1}} selbst damit fertig ist, das Paket zu erstellen, werden bei der Installation automatisch Binärdateien von dort heruntergeladen (siehe @ref{Substitutes}). Menschliches Eingreifen muss nur stattfinden, um den Patch zu überprüfen und anzuwenden." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:404 -#: guix-git/doc/contributing.texi:405 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:434 +#: guix-git/doc/contributing.texi:435 #, no-wrap msgid "Software Freedom" msgstr "Software-Freiheit" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "What may go into the distribution." msgstr "Was in die Distribution aufgenommen werden darf." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:432 -#: guix-git/doc/contributing.texi:433 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:462 +#: guix-git/doc/contributing.texi:463 #, no-wrap msgid "Package Naming" msgstr "Paketbenennung" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "What's in a name?" msgstr "Was macht einen Namen aus?" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:465 -#: guix-git/doc/contributing.texi:466 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:495 +#: guix-git/doc/contributing.texi:496 #, no-wrap msgid "Version Numbers" msgstr "Versionsnummern" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "When the name is not enough." msgstr "Wenn der Name noch nicht genug ist." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:572 -#: guix-git/doc/contributing.texi:573 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:602 +#: guix-git/doc/contributing.texi:603 #, no-wrap msgid "Synopses and Descriptions" msgstr "Zusammenfassungen und Beschreibungen" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Helping users find the right package." msgstr "Den Nutzern helfen, das richtige Paket zu finden." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:651 -#: guix-git/doc/contributing.texi:652 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:681 +#: guix-git/doc/contributing.texi:682 #, no-wrap msgid "Snippets versus Phases" msgstr "„Snippets“ oder Phasen" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Whether to use a snippet, or a build phase." msgstr "Benutzt man Code-Schnipsel oder eine Erstellungsphase?" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:666 -#: guix-git/doc/contributing.texi:667 guix-git/doc/guix.texi:1995 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:696 +#: guix-git/doc/contributing.texi:697 guix-git/doc/guix.texi:2012 #, no-wrap msgid "Emacs Packages" msgstr "Emacs-Pakete" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Your Elisp fix." msgstr "Für Ihren Elisp-Bedarf." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:706 -#: guix-git/doc/contributing.texi:707 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:736 +#: guix-git/doc/contributing.texi:737 #, no-wrap msgid "Python Modules" msgstr "Python-Module" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "A touch of British comedy." msgstr "Ein Touch britischer Comedy." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:782 -#: guix-git/doc/contributing.texi:783 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:812 +#: guix-git/doc/contributing.texi:813 #, no-wrap msgid "Perl Modules" msgstr "Perl-Module" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Little pearls." msgstr "Kleine Perlen." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:798 -#: guix-git/doc/contributing.texi:799 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:828 +#: guix-git/doc/contributing.texi:829 #, no-wrap msgid "Java Packages" msgstr "Java-Pakete" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Coffee break." msgstr "Kaffeepause." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:818 -#: guix-git/doc/contributing.texi:819 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:848 +#: guix-git/doc/contributing.texi:849 #, no-wrap msgid "Rust Crates" msgstr "Rust-Crates" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Beware of oxidation." msgstr "Umgang mit Oxidation." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:852 -#: guix-git/doc/contributing.texi:853 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:882 +#: guix-git/doc/contributing.texi:883 #, no-wrap msgid "Fonts" msgstr "Schriftarten" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Fond of fonts." msgstr "Schriften verschriftlicht." #. type: cindex -#: guix-git/doc/contributing.texi:408 +#: guix-git/doc/contributing.texi:438 #, no-wrap msgid "free software" msgstr "freie Software" #. type: Plain text -#: guix-git/doc/contributing.texi:416 +#: guix-git/doc/contributing.texi:446 msgid "The GNU operating system has been developed so that users can have freedom in their computing. GNU is @dfn{free software}, meaning that users have the @url{https://www.gnu.org/philosophy/free-sw.html,four essential freedoms}: to run the program, to study and change the program in source code form, to redistribute exact copies, and to distribute modified versions. Packages found in the GNU distribution provide only software that conveys these four freedoms." msgstr "Das GNU-Betriebssystem wurde entwickelt, um Menschen Freiheit zu ermöglichen, wie sie ihre Rechengeräte benutzen. GNU ist @dfn{freie Software}, was bedeutet, dass Benutzer die @url{https://www.gnu.org/philosophy/free-sw.de.html,vier wesentlichen Freiheiten} haben: das Programm auszuführen, es zu untersuchen, das Programm in Form seines Quellcodes anzupassen und exakte Kopien ebenso wie modifizierte Versionen davon an andere weiterzugeben. Die Pakete, die Sie in der GNU-Distribution finden, stellen ausschließlich solche Software zur Verfügung, die Ihnen diese vier Freiheiten gewährt." #. type: Plain text -#: guix-git/doc/contributing.texi:422 +#: guix-git/doc/contributing.texi:452 msgid "In addition, the GNU distribution follow the @url{https://www.gnu.org/distros/free-system-distribution-guidelines.html,free software distribution guidelines}. Among other things, these guidelines reject non-free firmware, recommendations of non-free software, and discuss ways to deal with trademarks and patents." msgstr "Außerdem befolgt die GNU-Distribution die @url{https://www.gnu.org/distros/free-system-distribution-guidelines.de.html,Richtlinien für freie Systemverteilungen}. Unter anderem werden unfreie Firmware sowie Empfehlungen von unfreier Software abgelehnt und Möglichkeiten zum Umgang mit Markenzeichen und Patenten werden diskutiert." #. type: Plain text -#: guix-git/doc/contributing.texi:430 +#: guix-git/doc/contributing.texi:460 msgid "Some otherwise free upstream package sources contain a small and optional subset that violates the above guidelines, for instance because this subset is itself non-free code. When that happens, the offending items are removed with appropriate patches or code snippets in the @code{origin} form of the package (@pxref{Defining Packages}). This way, @code{guix build --source} returns the ``freed'' source rather than the unmodified upstream source." msgstr "Ansonsten freier Paketquellcode von manchen Anbietern enthält einen kleinen und optionalen Teil, der diese Richtlinien verletzt. Zum Beispiel kann dieser Teil selbst unfreier Code sein. Wenn das vorkommt, wird der sie verletzende Teil mit angemessenen Patches oder Code-Schnipseln innerhalb der @code{origin}-Form des Pakets entfernt (siehe @ref{Defining Packages}). Dadurch liefert Ihnen @code{guix build --source} nur den „befreiten“ Quellcode und nicht den unmodifizierten Quellcode des Anbieters." #. type: cindex -#: guix-git/doc/contributing.texi:435 +#: guix-git/doc/contributing.texi:465 #, no-wrap msgid "package name" msgstr "Paketname" #. type: Plain text -#: guix-git/doc/contributing.texi:443 +#: guix-git/doc/contributing.texi:473 msgid "A package actually has two names associated with it. First, there is the name of the @emph{Scheme variable}, the one following @code{define-public}. By this name, the package can be made known in the Scheme code, for instance as input to another package. Second, there is the string in the @code{name} field of a package definition. This name is used by package management commands such as @command{guix package} and @command{guix build}." msgstr "Tatsächlich sind mit jedem Paket zwei Namen assoziiert: Zum einen gibt es den Namen der @emph{Scheme-Variablen}, der direkt nach @code{define-public} im Code steht. Mit diesem Namen kann das Paket im Scheme-Code nutzbar gemacht und zum Beispiel als Eingabe eines anderen Pakets benannt werden. Zum anderen gibt es die Zeichenkette im @code{name}-Feld einer Paketdefinition. Dieser Name wird von Paketverwaltungsbefehlen wie @command{guix package} und @command{guix build} benutzt." #. type: Plain text -#: guix-git/doc/contributing.texi:448 +#: guix-git/doc/contributing.texi:478 msgid "Both are usually the same and correspond to the lowercase conversion of the project name chosen upstream, with underscores replaced with hyphens. For instance, GNUnet is available as @code{gnunet}, and SDL_net as @code{sdl-net}." msgstr "Meistens sind die beiden identisch und ergeben sich aus einer Umwandlung des vom Anbieter verwendeten Projektnamens in Kleinbuchstaben, bei der Unterstriche durch Bindestriche ersetzt werden. Zum Beispiel wird GNUnet unter dem Paketnamen @code{gnunet} angeboten und SDL_net als @code{sdl-net}." #. type: Plain text -#: guix-git/doc/contributing.texi:456 +#: guix-git/doc/contributing.texi:486 msgid "A noteworthy exception to this rule is when the project name is only a single character, or if an older maintained project with the same name already exists---regardless of whether it has already been packaged for Guix. Use common sense to make such names unambiguous and meaningful. For example, Guix's package for the shell called ``s'' upstream is @code{s-shell} and @emph{not} @code{s}. Feel free to ask your fellow hackers for inspiration." msgstr "Es gibt eine nennenswerte Ausnahme zu dieser Regel, nämlich wenn der Projektname nur ein einzelnes Zeichen ist oder auch wenn es bereits ein älteres, aktives Projekt mit demselben Namen gibt, egal ob es schon für Guix verpackt wurde. Lassen Sie Ihren gesunden Menschenverstand einen eindeutigen und sprechenden Namen auswählen. Zum Beispiel wurde die Shell, die bei ihrem Anbieter „s“ heißt, @code{s-shell} genannt und @emph{nicht} @code{s}. Sie sind eingeladen, Ihre Hackerkollegen um Inspiration zu bitten." #. type: Plain text -#: guix-git/doc/contributing.texi:461 +#: guix-git/doc/contributing.texi:491 msgid "We do not add @code{lib} prefixes for library packages, unless these are already part of the official project name. But @pxref{Python Modules} and @ref{Perl Modules} for special rules concerning modules for the Python and Perl languages." msgstr "An Bibliothekspakete hängen wir vorne kein @code{lib} als Präfix an, solange es nicht Teil des offiziellen Projektnamens ist. Beachten Sie aber die Abschnitte @ref{Python Modules} und @ref{Perl Modules}, in denen Sonderregeln für Module der Programmiersprachen Python und Perl beschrieben sind." #. type: Plain text -#: guix-git/doc/contributing.texi:463 +#: guix-git/doc/contributing.texi:493 msgid "Font package names are handled differently, @pxref{Fonts}." msgstr "Auch Pakete mit Schriftarten werden anders behandelt, siehe @ref{Fonts}." #. type: cindex -#: guix-git/doc/contributing.texi:468 +#: guix-git/doc/contributing.texi:498 #, no-wrap msgid "package version" msgstr "Paketversion" #. type: Plain text -#: guix-git/doc/contributing.texi:477 +#: guix-git/doc/contributing.texi:507 msgid "We usually package only the latest version of a given free software project. But sometimes, for instance for incompatible library versions, two (or more) versions of the same package are needed. These require different Scheme variable names. We use the name as defined in @ref{Package Naming} for the most recent version; previous versions use the same name, suffixed by @code{-} and the smallest prefix of the version number that may distinguish the two versions." msgstr "Normalerweise stellen wir nur für die neueste Version eines Freie-Software-Projekts ein Paket bereit. Manchmal gibt es allerdings Fälle wie zum Beispiel untereinander inkompatible Bibliotheksversionen, so dass zwei (oder mehr) Versionen desselben Pakets angeboten werden müssen. In diesem Fall müssen wir verschiedene Scheme-Variablennamen benutzen. Wir benutzen dann für die neueste Version den Namen, wie er im Abschnitt @ref{Package Naming} festgelegt wird, und geben vorherigen Versionen denselben Namen mit einem zusätzlichen Suffix aus @code{-} gefolgt vom kürzesten Präfix der Versionsnummer, mit dem noch immer zwei Versionen unterschieden werden können." #. type: Plain text -#: guix-git/doc/contributing.texi:480 +#: guix-git/doc/contributing.texi:510 msgid "The name inside the package definition is the same for all versions of a package and does not contain any version number." msgstr "Der Name innerhalb der Paketdefinition ist hingegen derselbe für alle Versionen eines Pakets und enthält keine Versionsnummer." #. type: Plain text -#: guix-git/doc/contributing.texi:482 +#: guix-git/doc/contributing.texi:512 msgid "For instance, the versions 2.24.20 and 3.9.12 of GTK+ may be packaged as follows:" msgstr "Zum Beispiel können für GTK in den Versionen 2.24.20 und 3.9.12 Pakete wie folgt geschrieben werden:" #. type: lisp -#: guix-git/doc/contributing.texi:494 +#: guix-git/doc/contributing.texi:524 #, no-wrap msgid "" "(define-public gtk+\n" @@ -933,12 +975,12 @@ msgstr "" " …))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:496 +#: guix-git/doc/contributing.texi:526 msgid "If we also wanted GTK+ 3.8.2, this would be packaged as" msgstr "Wenn wir auch GTK 3.8.2 wollten, würden wir das Paket schreiben als" #. type: lisp -#: guix-git/doc/contributing.texi:502 +#: guix-git/doc/contributing.texi:532 #, no-wrap msgid "" "(define-public gtk+-3.8\n" @@ -954,23 +996,23 @@ msgstr "" " …))\n" #. type: cindex -#: guix-git/doc/contributing.texi:506 +#: guix-git/doc/contributing.texi:536 #, no-wrap msgid "version number, for VCS snapshots" msgstr "Versionsnummer, bei Snapshots aus Versionskontrolle" #. type: Plain text -#: guix-git/doc/contributing.texi:512 +#: guix-git/doc/contributing.texi:542 msgid "Occasionally, we package snapshots of upstream's version control system (VCS) instead of formal releases. This should remain exceptional, because it is up to upstream developers to clarify what the stable release is. Yet, it is sometimes necessary. So, what should we put in the @code{version} field?" msgstr "Gelegentlich fügen wir auch Pakete für Snapshots aus dem Versionskontrollsystem des Anbieters statt formaler Veröffentlichungen zur Distribution hinzu. Das sollte die Ausnahme bleiben, weil die Entwickler selbst klarstellen sollten, welche Version als die stabile Veröffentlichung gelten sollte, ab und zu ist es jedoch notwendig. Was also sollten wir dann im @code{version}-Feld eintragen?" #. type: Plain text -#: guix-git/doc/contributing.texi:520 +#: guix-git/doc/contributing.texi:550 msgid "Clearly, we need to make the commit identifier of the VCS snapshot visible in the version string, but we also need to make sure that the version string is monotonically increasing so that @command{guix package --upgrade} can determine which version is newer. Since commit identifiers, notably with Git, are not monotonically increasing, we add a revision number that we increase each time we upgrade to a newer snapshot. The resulting version string looks like this:" msgstr "Offensichtlich muss der Bezeichner des Commits, den wir als Snapshot aus dem Versionskontrollsystem nehmen, in der Versionszeichenkette zu erkennen sein, aber wir müssen auch sicherstellen, dass die Version monoton steigend ist, damit @command{guix package --upgrade} feststellen kann, welche Version die neuere ist. Weil Commit-Bezeichner, insbesondere bei Git, nicht monoton steigen, müssen wir eine Revisionsnummer hinzufügen, die wir jedes Mal erhöhen, wenn wir das Paket auf einen neueren Snapshot aktualisieren. Die sich ergebende Versionszeichenkette sieht dann so aus:" #. type: example -#: guix-git/doc/contributing.texi:529 +#: guix-git/doc/contributing.texi:559 #, no-wrap msgid "" "2.0.11-3.cabba9e\n" @@ -990,12 +1032,12 @@ msgstr "" "die neueste Version, die der Anbieter veröffentlicht hat\n" #. type: Plain text -#: guix-git/doc/contributing.texi:539 +#: guix-git/doc/contributing.texi:569 msgid "It is a good idea to strip commit identifiers in the @code{version} field to, say, 7 digits. It avoids an aesthetic annoyance (assuming aesthetics have a role to play here) as well as problems related to OS limits such as the maximum shebang length (127 bytes for the Linux kernel). There are helper functions for doing this for packages using @code{git-fetch} or @code{hg-fetch} (see below). It is best to use the full commit identifiers in @code{origin}s, though, to avoid ambiguities. A typical package definition may look like this:" msgstr "Es ist eine gute Idee, die Commit-Bezeichner im @code{version}-Feld auf, sagen wir, 7 Ziffern zu beschränken. Das sieht besser aus (wenn das hier eine Rolle spielen sollte) und vermeidet Probleme, die mit der maximalen Länge von Shebangs zu tun haben (127 Bytes beim Linux-Kernel). Bei Paketen, die @code{git-fetch} oder @code{hg-fetch} benutzen, können Sie dafür Hilfsfunktionen nutzen (siehe unten). Am besten benutzen Sie in @code{origin}s jedoch den vollständigen Commit-Bezeichner, um Mehrdeutigkeiten zu vermeiden. Eine typische Paketdefinition könnte so aussehen:" #. type: lisp -#: guix-git/doc/contributing.texi:556 +#: guix-git/doc/contributing.texi:586 #, no-wrap msgid "" "(define my-package\n" @@ -1029,18 +1071,18 @@ msgstr "" " )))\n" #. type: deffn -#: guix-git/doc/contributing.texi:558 +#: guix-git/doc/contributing.texi:588 #, no-wrap msgid "{Scheme Procedure} git-version @var{VERSION} @var{REVISION} @var{COMMIT}" msgstr "{Scheme-Prozedur} git-version @var{VERSION} @var{REVISION} @var{COMMIT}" #. type: deffn -#: guix-git/doc/contributing.texi:560 +#: guix-git/doc/contributing.texi:590 msgid "Return the version string for packages using @code{git-fetch}." msgstr "Liefert die Zeichenkette für die Version bei Paketen, die @code{git-fetch} benutzen." #. type: lisp -#: guix-git/doc/contributing.texi:564 +#: guix-git/doc/contributing.texi:594 #, no-wrap msgid "" "(git-version \"0.2.3\" \"0\" \"93818c936ee7e2f1ba1b315578bde363a7d43d05\")\n" @@ -1050,71 +1092,71 @@ msgstr "" "@result{} \"0.2.3-0.93818c9\"\n" #. type: deffn -#: guix-git/doc/contributing.texi:567 +#: guix-git/doc/contributing.texi:597 #, no-wrap msgid "{Scheme Procedure} hg-version @var{VERSION} @var{REVISION} @var{CHANGESET}" msgstr "{Scheme-Prozedur} hg-version @var{VERSION} @var{REVISION} @var{ÄNDERUNGSSATZ}" #. type: deffn -#: guix-git/doc/contributing.texi:570 +#: guix-git/doc/contributing.texi:600 msgid "Return the version string for packages using @code{hg-fetch}. It works in the same way as @code{git-version}." msgstr "Liefert die Zeichenkette für die Version bei Paketen, die @code{hg-fetch} benutzen.<" #. type: cindex -#: guix-git/doc/contributing.texi:575 +#: guix-git/doc/contributing.texi:605 #, no-wrap msgid "package description" msgstr "Paketbeschreibung" #. type: cindex -#: guix-git/doc/contributing.texi:576 +#: guix-git/doc/contributing.texi:606 #, no-wrap msgid "package synopsis" msgstr "Paketzusammenfassung" #. type: Plain text -#: guix-git/doc/contributing.texi:583 +#: guix-git/doc/contributing.texi:613 msgid "As we have seen before, each package in GNU@tie{}Guix includes a synopsis and a description (@pxref{Defining Packages}). Synopses and descriptions are important: They are what @command{guix package --search} searches, and a crucial piece of information to help users determine whether a given package suits their needs. Consequently, packagers should pay attention to what goes into them." msgstr "Wie wir bereits gesehen haben, enthält jedes Paket in GNU@tie{}Guix eine (im Code englischsprachige) Zusammenfassung (englisch: Synopsis) und eine Beschreibung (englisch: Description; siehe @ref{Defining Packages}). Zusammenfassungen und Beschreibungen sind wichtig: Sie werden mit @command{guix package --search} durchsucht und stellen eine entscheidende Informationsquelle für Nutzer dar, die entscheiden wollen, ob das Paket Ihren Bedürfnissen entspricht, daher sollten Paketentwickler achtgeben, was sie dort eintragen." #. type: Plain text -#: guix-git/doc/contributing.texi:591 +#: guix-git/doc/contributing.texi:621 msgid "Synopses must start with a capital letter and must not end with a period. They must not start with ``a'' or ``the'', which usually does not bring anything; for instance, prefer ``File-frobbing tool'' over ``A tool that frobs files''. The synopsis should say what the package is---e.g., ``Core GNU utilities (file, text, shell)''---or what it is used for---e.g., the synopsis for GNU@tie{}grep is ``Print lines matching a pattern''." msgstr "Zusammenfassungen müssen mit einem Großbuchstaben beginnen und dürfen nicht mit einem Punkt enden. Sie dürfen nicht mit den Artikeln „a“ oder „the“ beginnen, die meistens ohnehin nichts zum Verständnis beitragen. Zum Beispiel sollte „File-frobbing tool“ gegenüber „A tool that frobs files“ vorgezogen werden. Die Zusammenfassung sollte aussagen, um was es sich beim Paket handelt@tie{}— z.B.@: „Core GNU utilities (file, text, shell)“@tie{}—, oder aussagen, wofür es benutzt wird@tie{}— z.B.@: ist die Zusammenfassung für GNU@tie{}grep „Print lines matching a pattern“." #. type: Plain text -#: guix-git/doc/contributing.texi:601 +#: guix-git/doc/contributing.texi:631 msgid "Keep in mind that the synopsis must be meaningful for a very wide audience. For example, ``Manipulate alignments in the SAM format'' might make sense for a seasoned bioinformatics researcher, but might be fairly unhelpful or even misleading to a non-specialized audience. It is a good idea to come up with a synopsis that gives an idea of the application domain of the package. In this example, this might give something like ``Manipulate nucleotide sequence alignments'', which hopefully gives the user a better idea of whether this is what they are looking for." msgstr "Beachten Sie, dass die Zusammenfassung für eine sehr große Leserschaft einen Sinn ergeben muss. Zum Beispiel würde „Manipulate alignments in the SAM format“ vielleicht von einem erfahrenen Forscher in der Bioinformatik verstanden, könnte für die Nicht-Spezialisten in Guix’ Zielgruppe aber wenig hilfreich sein oder würde diesen sogar eine falsche Vorstellung geben. Es ist eine gute Idee, sich eine Zusammenfassung zu überlegen, die eine Vorstellung von der Anwendungsdomäne des Pakets vermittelt. Im Beispiel hier würden sich die Nutzer mit „Manipulate nucleotide sequence alignments“ hoffentlich ein besseres Bild davon machen können, ob das Paket ist, wonach sie suchen." #. type: Plain text -#: guix-git/doc/contributing.texi:609 +#: guix-git/doc/contributing.texi:639 msgid "Descriptions should take between five and ten lines. Use full sentences, and avoid using acronyms without first introducing them. Please avoid marketing phrases such as ``world-leading'', ``industrial-strength'', and ``next-generation'', and avoid superlatives like ``the most advanced''---they are not helpful to users looking for a package and may even sound suspicious. Instead, try to be factual, mentioning use cases and features." msgstr "Beschreibungen sollten zwischen fünf und zehn Zeilen lang sein. Benutzen Sie vollständige Sätze und vermeiden Sie Abkürzungen, die Sie nicht zuvor eingeführt haben. Vermeiden Sie bitte Marketing-Phrasen wie „world-leading“ („weltweit führend“), „industrial-strength“ („industrietauglich“) und „next-generation“ („der nächsten Generation“) ebenso wie Superlative wie „the most advanced“ („das fortgeschrittenste“)@tie{}— davon haben Nutzer nichts, wenn sie ein Paket suchen, und es könnte sogar verdächtig klingen. Versuchen Sie stattdessen, bei den Fakten zu bleiben und dabei Anwendungszwecke und Funktionalitäten zu erwähnen." #. type: cindex -#: guix-git/doc/contributing.texi:610 +#: guix-git/doc/contributing.texi:640 #, no-wrap msgid "Texinfo markup, in package descriptions" msgstr "Texinfo-Auszeichnungen, in Paketbeschreibungen" #. type: Plain text -#: guix-git/doc/contributing.texi:619 +#: guix-git/doc/contributing.texi:649 msgid "Descriptions can include Texinfo markup, which is useful to introduce ornaments such as @code{@@code} or @code{@@dfn}, bullet lists, or hyperlinks (@pxref{Overview,,, texinfo, GNU Texinfo}). However you should be careful when using some characters for example @samp{@@} and curly braces which are the basic special characters in Texinfo (@pxref{Special Characters,,, texinfo, GNU Texinfo}). User interfaces such as @command{guix package --show} take care of rendering it appropriately." msgstr "Beschreibungen können wie bei Texinfo ausgezeichneten Text enthalten. Das bedeutet, Text kann Verzierungen wie @code{@@code} oder @code{@@dfn}, Auflistungen oder Hyperlinks enthalten (siehe @ref{Overview,,, texinfo, GNU Texinfo}). Sie sollten allerdings vorsichtig sein, wenn Sie bestimmte Zeichen wie @samp{@@} und geschweifte Klammern schreiben, weil es sich dabei um die grundlegenden Sonderzeichen in Texinfo handelt (siehe @ref{Special Characters,,, texinfo, GNU Texinfo}). Benutzungsschnittstellen wie @command{guix package --show} kümmern sich darum, solche Auszeichnungen angemessen darzustellen." #. type: Plain text -#: guix-git/doc/contributing.texi:625 +#: guix-git/doc/contributing.texi:655 msgid "Synopses and descriptions are translated by volunteers @uref{https://translate.fedoraproject.org/projects/guix/packages, at Weblate} so that as many users as possible can read them in their native language. User interfaces search them and display them in the language specified by the current locale." msgstr "Zusammenfassungen und Beschreibungen werden von Freiwilligen @uref{https://translate.fedoraproject.org/projects/guix/packages, bei Weblate} übersetzt, damit so viele Nutzer wie möglich sie in ihrer Muttersprache lesen können. Mit Schnittstellen für Benutzer können sie in der von der aktuell eingestellten Locale festgelegten Sprache durchsucht und angezeigt werden." #. type: Plain text -#: guix-git/doc/contributing.texi:630 +#: guix-git/doc/contributing.texi:660 msgid "To allow @command{xgettext} to extract them as translatable strings, synopses and descriptions @emph{must be literal strings}. This means that you cannot use @code{string-append} or @code{format} to construct these strings:" msgstr "Damit @command{xgettext} sie als übersetzbare Zeichenketten extrahieren kann, @emph{müssen} Zusammenfassungen und Beschreibungen einfache Zeichenketten-Literale sein. Das bedeutet, dass Sie diese Zeichenketten nicht mit Prozeduren wie @code{string-append} oder @code{format} konstruieren können:" #. type: lisp -#: guix-git/doc/contributing.texi:636 +#: guix-git/doc/contributing.texi:666 #, no-wrap msgid "" "(package\n" @@ -1128,12 +1170,12 @@ msgstr "" " (description (string-append \"This is \" \"*not*\" \" translatable.\")))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:644 +#: guix-git/doc/contributing.texi:674 msgid "Translation is a lot of work so, as a packager, please pay even more attention to your synopses and descriptions as every change may entail additional work for translators. In order to help them, it is possible to make recommendations or instructions visible to them by inserting special comments like this (@pxref{xgettext Invocation,,, gettext, GNU Gettext}):" msgstr "Übersetzen ist viel Arbeit, also passen Sie als Paketentwickler bitte umso mehr auf, wenn Sie Ihre Zusammenfassungen und Beschreibungen formulieren, weil jede Änderung zusätzliche Arbeit für Übersetzer bedeutet. Um den Übersetzern zu helfen, können Sie Empfehlungen und Anweisungen für diese sichtbar machen, indem Sie spezielle Kommentare wie in diesem Beispiel einfügen (siehe @ref{xgettext Invocation,,, gettext, GNU Gettext}):" #. type: lisp -#: guix-git/doc/contributing.texi:649 +#: guix-git/doc/contributing.texi:679 #, no-wrap msgid "" ";; TRANSLATORS: \"X11 resize-and-rotate\" should not be translated.\n" @@ -1145,440 +1187,439 @@ msgstr "" "for the X11 resize-and-rotate (RandR) extension. …\")\n" #. type: cindex -#: guix-git/doc/contributing.texi:654 +#: guix-git/doc/contributing.texi:684 #, no-wrap msgid "snippets, when to use" msgstr "snippet-Feld, wann man es benutzt" #. type: Plain text -#: guix-git/doc/contributing.texi:665 +#: guix-git/doc/contributing.texi:695 msgid "The boundary between using an origin snippet versus a build phase to modify the sources of a package can be elusive. Origin snippets are typically used to remove unwanted files such as bundled libraries, nonfree sources, or to apply simple substitutions. The source derived from an origin should produce a source that can be used to build the package on any system that the upstream package supports (i.e., act as the corresponding source). In particular, origin snippets must not embed store items in the sources; such patching should rather be done using build phases. Refer to the @code{origin} record documentation for more information (@pxref{origin Reference})." msgstr "Die Grenze, wann man Code-Schnipsel im @code{origin}-„@code{snippet}“-Feld gegenüber einer Erstellungsphase für Änderungen an den Quelldateien eines Pakets bevorzugen sollte, ist fließend. Schnipsel im Paketursprung werden meistens dazu benutzt, unerwünschte Dateien wie z.B.@: gebündelte Bibliotheken oder unfreie Quelldateien zu entfernen, oder um einfache Textersetzungen durchzuführen. Die Quelle, die sich aus einem Paketursprung ableitet, sollte Quellcode erzeugen, um das Paket auf jedem vom Anbieter unterstützten System zu erstellen (d.h.@: um als dessen „corresponding source“, „korrespondierender Quelltext“, herzuhalten). Insbesondere dürfen Snippets im Paketursprung keine Store-Objekte in den Quelldateien einbetten; solche Anpassungen sollten besser in Erstellungsphasen stattfinden. Schauen Sie in die Dokumentation des @code{origin}-Verbundsobjekts für weitere Informationen (siehe @ref{origin Reference})." #. type: cindex -#: guix-git/doc/contributing.texi:669 +#: guix-git/doc/contributing.texi:699 #, no-wrap msgid "emacs, packaging" msgstr "emacs, Pakete dafür schreiben" #. type: cindex -#: guix-git/doc/contributing.texi:670 +#: guix-git/doc/contributing.texi:700 #, no-wrap msgid "elisp, packaging" msgstr "elisp, Pakete dafür schreiben" #. type: Plain text -#: guix-git/doc/contributing.texi:682 +#: guix-git/doc/contributing.texi:712 msgid "Emacs packages should preferably use the Emacs build system (@pxref{emacs-build-system}), for uniformity and the benefits provided by its build phases, such as the auto-generation of the autoloads file and the byte compilation of the sources. Because there is no standardized way to run a test suite for Emacs packages, tests are disabled by default. When a test suite is available, it should be enabled by setting the @code{#:tests?} argument to @code{#true}. By default, the command to run the test is @command{make check}, but any command can be specified via the @code{#:test-command} argument. The @code{#:test-command} argument expects a list containing a command and its arguments, to be invoked during the @code{check} phase." msgstr "Für Emacs-Pakete sollte man bevorzugt das Emacs-Erstellungssystem benutzen (siehe @ref{emacs-build-system}), wegen der Einheitlichkeit und der Vorteile durch seine Erstellungsphasen. Dazu gehören das automatische Erzeugen der Autoloads-Datei und das Kompilieren des Quellcodes zu Bytecode (Byte Compilation). Weil es keinen Standard gibt, wie ein Testkatalog eines Emacs-Pakets ausgeführt wird, sind Tests nach Vorgabe abgeschaltet. Wenn es einen Testkatalog gibt, sollte er aktiviert werden, indem Sie das Argument @code{#:tests?} auf @code{#true} setzen. Vorgegeben ist, die Tests mit dem Befehl @command{make check} auszuführen, aber mit dem Argument @code{#:test-command} kann ein beliebiger anderer Befehl festgelegt werden. Für das Argument @code{#:test-command} wird eine Liste aus dem Befehl und den Argumenten an den Befehl erwartet. Er wird während der @code{check}-Phase aufgerufen." #. type: Plain text -#: guix-git/doc/contributing.texi:687 +#: guix-git/doc/contributing.texi:717 msgid "The Elisp dependencies of Emacs packages are typically provided as @code{propagated-inputs} when required at run time. As for other packages, build or test dependencies should be specified as @code{native-inputs}." msgstr "Die Elisp-Abhängigkeiten von Emacs-Paketen werden typischerweise als @code{propagated-inputs} bereitgestellt, wenn sie zur Laufzeit benötigt werden. Wie bei anderen Paketen sollten Abhängigkeiten zum Erstellen oder Testen als @code{native-inputs} angegeben werden." #. type: Plain text -#: guix-git/doc/contributing.texi:696 +#: guix-git/doc/contributing.texi:726 msgid "Emacs packages sometimes depend on resources directories that should be installed along the Elisp files. The @code{#:include} argument can be used for that purpose, by specifying a list of regexps to match. The best practice when using the @code{#:include} argument is to extend rather than override its default value (accessible via the @code{%default-include} variable). As an example, a yasnippet extension package typically include a @file{snippets} directory, which could be copied to the installation directory using:" msgstr "Manchmal hängen Emacs-Pakete von Ressourcenverzeichnissen ab, die zusammen mit den Elisp-Dateien installiert werden sollten. Diese lassen sich mit dem Argument @code{#:include} kennzeichnen, indem eine Liste dazu passender regulärer Ausdrücke angegeben wird. Idealerweise ergänzen Sie den Vorgabewert des @code{#:include}-Arguments (aus der Variablen @code{%default-include}), statt ihn zu ersetzen. Zum Beispiel enthält ein yasnippet-Erweiterungspaket typischerweise ein @file{snippets}-Verzeichnis, das wie folgt in das Installationsverzeichnis kopiert werden könnte:" #. type: lisp -#: guix-git/doc/contributing.texi:699 +#: guix-git/doc/contributing.texi:729 #, no-wrap msgid "#:include (cons \"^snippets/\" %default-include)\n" msgstr "#:include (cons \"^snippets/\" %default-include)\n" #. type: Plain text -#: guix-git/doc/contributing.texi:705 +#: guix-git/doc/contributing.texi:735 msgid "When encountering problems, it is wise to check for the presence of the @code{Package-Requires} extension header in the package main source file, and whether any dependencies and their versions listed therein are satisfied." msgstr "Wenn Sie auf Probleme stoßen, ist es ratsam, auf eine Kopfzeile @code{Package-Requires} in der Hauptquellcodedatei des Pakets zu achten, ob allen Abhängigkeiten und deren dort gelisteten Versionen genügt wird." #. type: cindex -#: guix-git/doc/contributing.texi:709 +#: guix-git/doc/contributing.texi:739 #, no-wrap msgid "python" msgstr "python" #. type: Plain text -#: guix-git/doc/contributing.texi:715 +#: guix-git/doc/contributing.texi:745 msgid "We currently package Python 2 and Python 3, under the Scheme variable names @code{python-2} and @code{python} as explained in @ref{Version Numbers}. To avoid confusion and naming clashes with other programming languages, it seems desirable that the name of a package for a Python module contains the word @code{python}." msgstr "Zurzeit stellen wir ein Paket für Python 2 und eines für Python 3 jeweils über die Scheme-Variablen mit den Namen @code{python-2} und @code{python} zur Verfügung, entsprechend der Erklärungen im Abschnitt @ref{Version Numbers}. Um Verwirrungen und Namenskollisionen mit anderen Programmiersprachen zu vermeiden, erscheint es als wünschenswert, dass der Name eines Pakets für ein Python-Modul auch das Wort @code{python} enthält." #. type: Plain text -#: guix-git/doc/contributing.texi:722 +#: guix-git/doc/contributing.texi:752 msgid "Some modules are compatible with only one version of Python, others with both. If the package Foo is compiled with Python 3, we name it @code{python-foo}. If it is compiled with Python 2, we name it @code{python2-foo}. Packages should be added when they are necessary; we don't add Python 2 variants of the package unless we are going to use them." msgstr "Manche Module sind nur mit einer Version von Python kompatibel, andere mit beiden. Wenn das Paket Foo mit Python 3 kompiliert wird, geben wir ihm den Namen @code{python-foo}. Wenn es mit Python 2 kompiliert wird, wählen wir den Namen @code{python2-foo}. Pakete sollten dann hinzugefügt werden, wenn sie gebraucht werden. Wir erstellen keine Python-2-Varianten von Paketen, wenn wir sie nicht benutzen wollen." #. type: Plain text -#: guix-git/doc/contributing.texi:728 +#: guix-git/doc/contributing.texi:758 msgid "If a project already contains the word @code{python}, we drop this; for instance, the module python-dateutil is packaged under the names @code{python-dateutil} and @code{python2-dateutil}. If the project name starts with @code{py} (e.g.@: @code{pytz}), we keep it and prefix it as described above." msgstr "Wenn ein Projekt bereits das Wort @code{python} im Namen hat, lassen wir es weg; zum Beispiel ist das Modul python-dateutil unter den Namen @code{python-dateutil} und @code{python2-dateutil} verfügbar. Wenn der Projektname mit @code{py} beginnt (z.B.@: @code{pytz}), behalten wir ihn bei und stellen das oben beschriebene Präfix voran." #. type: subsubsection -#: guix-git/doc/contributing.texi:729 +#: guix-git/doc/contributing.texi:759 #, no-wrap msgid "Specifying Dependencies" msgstr "Abhängigkeiten angeben" #. type: cindex -#: guix-git/doc/contributing.texi:730 +#: guix-git/doc/contributing.texi:760 #, no-wrap msgid "inputs, for Python packages" msgstr "Eingaben, für Python-Pakete" #. type: Plain text -#: guix-git/doc/contributing.texi:735 +#: guix-git/doc/contributing.texi:765 msgid "Dependency information for Python packages is usually available in the package source tree, with varying degrees of accuracy: in the @file{setup.py} file, in @file{requirements.txt}, or in @file{tox.ini}." msgstr "Informationen über Abhängigkeiten von Python-Paketen, welche mal mehr und mal weniger stimmen, finden sich normalerweise im Verzeichnisbaum des Paketquellcodes: in der Datei @file{setup.py}, in @file{requirements.txt} oder in @file{tox.ini}." #. type: Plain text -#: guix-git/doc/contributing.texi:741 +#: guix-git/doc/contributing.texi:771 msgid "Your mission, when writing a recipe for a Python package, is to map these dependencies to the appropriate type of ``input'' (@pxref{package Reference, inputs}). Although the @code{pypi} importer normally does a good job (@pxref{Invoking guix import}), you may want to check the following check list to determine which dependency goes where." msgstr "Wenn Sie ein Rezept für ein Python-Paket schreiben, lautet Ihr Auftrag, diese Abhängigkeiten auf angemessene Arten von „Eingaben“ abzubilden (siehe @ref{package Reference, Eingaben}). Obwohl der @code{pypi}-Importer hier normalerweise eine gute Arbeit leistet (siehe @ref{Invoking guix import}), könnten Sie die folgende Prüfliste durchgehen wollen, um zu bestimmen, wo welche Abhängigkeit eingeordnet werden sollte." #. type: itemize -#: guix-git/doc/contributing.texi:749 +#: guix-git/doc/contributing.texi:779 msgid "We currently package Python 2 with @code{setuptools} and @code{pip} installed like Python 3.4 has per default. Thus you don't need to specify either of these as an input. @command{guix lint} will warn you if you do." msgstr "Derzeit ist unser Python-2-Paket so geschrieben, dass es @code{setuptools} und @code{pip} installiert, wie es auch in den Vorgaben zu Python 3.4 gemacht wird. Sie müssen also keines der beiden als Eingabe angeben. Wenn Sie es doch tun, wird @command{guix lint} Sie darauf mit einer Warnung aufmerksam machen." #. type: itemize -#: guix-git/doc/contributing.texi:755 +#: guix-git/doc/contributing.texi:785 msgid "Python dependencies required at run time go into @code{propagated-inputs}. They are typically defined with the @code{install_requires} keyword in @file{setup.py}, or in the @file{requirements.txt} file." msgstr "Python-Abhängigkeiten, die zur Laufzeit gebraucht werden, stehen im @code{propagated-inputs}-Feld. Solche werden typischerweise mit dem Schlüsselwort @code{install_requires} in @file{setup.py} oder in der Datei @file{requirements.txt} definiert." #. type: itemize -#: guix-git/doc/contributing.texi:763 +#: guix-git/doc/contributing.texi:793 msgid "Python packages required only at build time---e.g., those listed with the @code{setup_requires} keyword in @file{setup.py}---or only for testing---e.g., those in @code{tests_require}---go into @code{native-inputs}. The rationale is that (1) they do not need to be propagated because they are not needed at run time, and (2) in a cross-compilation context, it's the ``native'' input that we'd want." msgstr "Python-Pakete, die nur zur Erstellungszeit gebraucht werden@tie{}— z.B.@: jene, die mit dem Schlüsselwort @code{setup_requires} in @file{setup.py} aufgeführt sind@tie{}— oder die nur zum Testen gebraucht werden@tie{}— also die in @code{tests_require}@tie{}—, stehen in @code{native-inputs}. Die Begründung ist, dass (1) sie nicht propagiert werden müssen, weil sie zur Laufzeit nicht gebraucht werden, und (2) wir beim Cross-Kompilieren die „native“ Eingabe des Wirtssystems wollen." #. type: itemize -#: guix-git/doc/contributing.texi:767 +#: guix-git/doc/contributing.texi:797 msgid "Examples are the @code{pytest}, @code{mock}, and @code{nose} test frameworks. Of course if any of these packages is also required at run-time, it needs to go to @code{propagated-inputs}." msgstr "Beispiele sind die Testrahmen @code{pytest}, @code{mock} und @code{nose}. Wenn natürlich irgendeines dieser Pakete auch zur Laufzeit benötigt wird, muss es doch in @code{propagated-inputs} stehen." #. type: itemize -#: guix-git/doc/contributing.texi:772 +#: guix-git/doc/contributing.texi:802 msgid "Anything that does not fall in the previous categories goes to @code{inputs}, for example programs or C libraries required for building Python packages containing C extensions." msgstr "Alles, was nicht in die bisher genannten Kategorien fällt, steht in @code{inputs}, zum Beispiel Programme oder C-Bibliotheken, die zur Erstellung von Python-Paketen mit enthaltenen C-Erweiterungen gebraucht werden." #. type: itemize -#: guix-git/doc/contributing.texi:778 +#: guix-git/doc/contributing.texi:808 msgid "If a Python package has optional dependencies (@code{extras_require}), it is up to you to decide whether to add them or not, based on their usefulness/overhead ratio (@pxref{Submitting Patches, @command{guix size}})." msgstr "Wenn ein Python-Paket optionale Abhängigkeiten hat (@code{extras_require}), ist es Ihnen überlassen, sie hinzuzufügen oder nicht hinzuzufügen, je nachdem wie es um deren Verhältnis von Nützlichkeit zu anderen Nachteilen steht (siehe @ref{Submitting Patches, @command{guix size}})." #. type: cindex -#: guix-git/doc/contributing.texi:785 +#: guix-git/doc/contributing.texi:815 #, no-wrap msgid "perl" msgstr "perl" #. type: Plain text -#: guix-git/doc/contributing.texi:796 +#: guix-git/doc/contributing.texi:826 msgid "Perl programs standing for themselves are named as any other package, using the lowercase upstream name. For Perl packages containing a single class, we use the lowercase class name, replace all occurrences of @code{::} by dashes and prepend the prefix @code{perl-}. So the class @code{XML::Parser} becomes @code{perl-xml-parser}. Modules containing several classes keep their lowercase upstream name and are also prepended by @code{perl-}. Such modules tend to have the word @code{perl} somewhere in their name, which gets dropped in favor of the prefix. For instance, @code{libwww-perl} becomes @code{perl-libwww}." msgstr "Eigenständige Perl-Programme bekommen einen Namen wie jedes andere Paket, unter Nutzung des Namens beim Anbieter in Kleinbuchstaben. Für Perl-Pakete, die eine einzelne Klasse enthalten, ersetzen wir alle Vorkommen von @code{::} durch Striche und hängen davor das Präfix @code{perl-} an. Die Klasse @code{XML::Parser} wird also zu @code{perl-xml-parser}. Module, die mehrere Klassen beinhalten, behalten ihren Namen beim Anbieter, in Kleinbuchstaben gesetzt, und auch an sie wird vorne das Präfix @code{perl-} angehängt. Es gibt die Tendenz, solche Module mit dem Wort @code{perl} irgendwo im Namen zu versehen, das wird zu Gunsten des Präfixes weggelassen. Zum Beispiel wird aus @code{libwww-perl} bei uns @code{perl-libwww}." #. type: cindex -#: guix-git/doc/contributing.texi:801 +#: guix-git/doc/contributing.texi:831 #, no-wrap msgid "java" msgstr "java" #. type: Plain text -#: guix-git/doc/contributing.texi:804 +#: guix-git/doc/contributing.texi:834 msgid "Java programs standing for themselves are named as any other package, using the lowercase upstream name." msgstr "Eigenständige Java-Programme werden wie jedes andere Paket benannt, d.h.@: mit ihrem in Kleinbuchstaben geschriebenen Namen beim Anbieter." #. type: Plain text -#: guix-git/doc/contributing.texi:810 +#: guix-git/doc/contributing.texi:840 msgid "To avoid confusion and naming clashes with other programming languages, it is desirable that the name of a package for a Java package is prefixed with @code{java-}. If a project already contains the word @code{java}, we drop this; for instance, the package @code{ngsjava} is packaged under the name @code{java-ngs}." msgstr "Um Verwirrungen und Namenskollisionen mit anderen Programmiersprachen zu vermeiden, ist es wünschenswert, dass dem Namem eines Pakets zu einem Java-Paket das Präfix @code{java-} vorangestellt wird. Wenn ein Projekt bereits das Wort @code{java} im Namen trägt, lassen wir es weg; zum Beispiel befindet sich das Java-Paket @code{ngsjava} in einem Paket namens @code{java-ngs}." #. type: Plain text -#: guix-git/doc/contributing.texi:816 +#: guix-git/doc/contributing.texi:846 msgid "For Java packages containing a single class or a small class hierarchy, we use the lowercase class name, replace all occurrences of @code{.} by dashes and prepend the prefix @code{java-}. So the class @code{apache.commons.cli} becomes package @code{java-apache-commons-cli}." msgstr "Bei Java-Paketen, die eine einzelne Klasse oder eine kleine Klassenhierarchie enthalten, benutzen wir den Klassennamen in Kleinbuchstaben und ersetzen dabei alle Vorkommen von @code{.} durch Striche und setzen das Präfix @code{java-} davor. Die Klasse @code{apache.commons.cli} wird also zum Paket @code{java-apache-commons-cli}." #. type: cindex -#: guix-git/doc/contributing.texi:821 +#: guix-git/doc/contributing.texi:851 #, no-wrap msgid "rust" msgstr "rust" #. type: Plain text -#: guix-git/doc/contributing.texi:824 +#: guix-git/doc/contributing.texi:854 msgid "Rust programs standing for themselves are named as any other package, using the lowercase upstream name." msgstr "Eigenständige Rust-Programme werden wie jedes andere Paket benannt, d.h.@: mit ihrem in Kleinbuchstaben geschriebenen Namen beim Anbieter." #. type: Plain text -#: guix-git/doc/contributing.texi:828 +#: guix-git/doc/contributing.texi:858 msgid "To prevent namespace collisions we prefix all other Rust packages with the @code{rust-} prefix. The name should be changed to lowercase as appropriate and dashes should remain in place." msgstr "Um Namensraumkollisionen vorzubeugen, versehen wir alle anderen Rust-Pakete mit dem Präfix @code{rust-}. Der Name sollte wie sonst in Kleinbuchstaben geschrieben werden und Bindestriche dort bleiben, wo sie sind." #. type: Plain text -#: guix-git/doc/contributing.texi:834 +#: guix-git/doc/contributing.texi:864 msgid "In the rust ecosystem it is common for multiple incompatible versions of a package to be used at any given time, so all package definitions should have a versioned suffix. The versioned suffix is the left-most non-zero digit (and any leading zeros, of course). This follows the ``caret'' version scheme intended by Cargo. Examples@: @code{rust-clap-2}, @code{rust-rand-0.6}." msgstr "Im Rust-Ökosystem werden oft mehrere inkompatible Versionen desselben Pakets gleichzeitig benutzt, daher sollte allen Paketdefinitionen ein die Version angebendes Suffix gegeben werden. Das Versionssuffix besteht aus der am weitesten links stehenden Ziffer, die @emph{nicht} null ist (natürlich mit allen führenden Nullen). Dabei folgen wir dem von Cargo gewollten „Caret“-Versionsschema. Beispiele: @code{rust-clap-2}, @code{rust-rand-0.6}." #. type: Plain text -#: guix-git/doc/contributing.texi:844 +#: guix-git/doc/contributing.texi:874 msgid "Because of the difficulty in reusing rust packages as pre-compiled inputs for other packages the Cargo build system (@pxref{Build Systems, @code{cargo-build-system}}) presents the @code{#:cargo-inputs} and @code{cargo-development-inputs} keywords as build system arguments. It would be helpful to think of these as similar to @code{propagated-inputs} and @code{native-inputs}. Rust @code{dependencies} and @code{build-dependencies} should go in @code{#:cargo-inputs}, and @code{dev-dependencies} should go in @code{#:cargo-development-inputs}. If a Rust package links to other libraries then the standard placement in @code{inputs} and the like should be used." msgstr "Weil die Verwendung von Rust-Paketen als vorab kompilierte Eingaben für andere Pakete besondere Schwierigkeiten macht, gibt es im Cargo-Erstellungssystem (siehe @ref{Build Systems, @code{cargo-build-system}}) die Schlüsselwörter @code{#:cargo-inputs} und @code{#:cargo-development-inputs} als Argumente an das Erstellungssystem. Es ist hilfreich, sie sich ähnlich wie @code{propagated-inputs} und @code{native-inputs} vorzustellen. Was in Rust @code{dependencies} und @code{build-dependencies} sind, sollte unter @code{#:cargo-inputs} aufgeführt werden, während @code{dev-dependencies} zu den @code{#:cargo-development-inputs} gehören. Wenn ein Rust-Paket andere Bibliotheken einbindet, gilt die normale Einordnung in @code{inputs} usw.@: wie anderswo auch." #. type: Plain text -#: guix-git/doc/contributing.texi:850 +#: guix-git/doc/contributing.texi:880 msgid "Care should be taken to ensure the correct version of dependencies are used; to this end we try to refrain from skipping the tests or using @code{#:skip-build?} when possible. Of course this is not always possible, as the package may be developed for a different Operating System, depend on features from the Nightly Rust compiler, or the test suite may have atrophied since it was released." msgstr "Man sollte aufpassen, dass man die richtige Version von Abhängigkeiten benutzt. Deswegen versuchen wir, Tests nicht mit @code{#:skip-build?} zu überspringen, wenn es möglich ist. Natürlich geht das nicht immer, vielleicht weil das Paket für ein anderes Betriebssystem entwickelt wurde, Funktionalitäten der allerneuesten „Nightly“-Version des Rust-Compilers voraussetzt oder weil der Testkatalog seit seiner Veröffentlichung verkümmert ist." #. type: cindex -#: guix-git/doc/contributing.texi:855 guix-git/doc/guix.texi:1930 +#: guix-git/doc/contributing.texi:885 guix-git/doc/guix.texi:1947 #, no-wrap msgid "fonts" msgstr "Schriftarten" #. type: Plain text -#: guix-git/doc/contributing.texi:861 +#: guix-git/doc/contributing.texi:891 msgid "For fonts that are in general not installed by a user for typesetting purposes, or that are distributed as part of a larger software package, we rely on the general packaging rules for software; for instance, this applies to the fonts delivered as part of the X.Org system or fonts that are part of TeX Live." msgstr "Wenn Schriftarten in der Regel nicht von Nutzern zur Textbearbeitung installiert werden oder als Teil eines größeren Software-Pakets mitgeliefert werden, gelten dafür die allgemeinen Paketrichtlinien für Software. Zum Beispiel trifft das auf als Teil des X.Org-Systems ausgelieferte Schriftarten zu, oder auf Schriftarten, die ein Teil von TeX Live sind." #. type: Plain text -#: guix-git/doc/contributing.texi:865 +#: guix-git/doc/contributing.texi:895 msgid "To make it easier for a user to search for fonts, names for other packages containing only fonts are constructed as follows, independently of the upstream package name." msgstr "Damit es Nutzer leichter haben, nach Schriftarten zu suchen, konstruieren wir die Namen von anderen Paketen, die nur Schriftarten enthalten, nach dem folgenden Schema, egal was der Paketname beim Anbieter ist." #. type: Plain text -#: guix-git/doc/contributing.texi:873 +#: guix-git/doc/contributing.texi:903 msgid "The name of a package containing only one font family starts with @code{font-}; it is followed by the foundry name and a dash @code{-} if the foundry is known, and the font family name, in which spaces are replaced by dashes (and as usual, all upper case letters are transformed to lower case). For example, the Gentium font family by SIL is packaged under the name @code{font-sil-gentium}." msgstr "Der Name eines Pakets, das nur eine Schriftfamilie enthält, beginnt mit @code{font-}. Darauf folgt der Name des Schriftenherstellers und ein Strich @code{-}, sofern bekannt ist, wer der Schriftenhersteller ist, und dann der Name der Schriftfamilie, in dem Leerzeichen durch Striche ersetzt werden (und wie immer mit Großbuchstaben statt Kleinbuchstaben). Zum Beispiel befindet sich die von SIL hergestellte Gentium-Schriftfamilie im Paket mit dem Namen @code{font-sil-gentium}." #. type: Plain text -#: guix-git/doc/contributing.texi:882 +#: guix-git/doc/contributing.texi:912 msgid "For a package containing several font families, the name of the collection is used in the place of the font family name. For instance, the Liberation fonts consist of three families, Liberation Sans, Liberation Serif and Liberation Mono. These could be packaged separately under the names @code{font-liberation-sans} and so on; but as they are distributed together under a common name, we prefer to package them together as @code{font-liberation}." msgstr "Wenn ein Paket mehrere Schriftfamilien enthält, wird der Name der Sammlung anstelle des Schriftfamiliennamens benutzt. Zum Beispiel umfassen die Liberation-Schriftarten drei Familien: Liberation Sans, Liberation Serif und Liberation Mono. Man könnte sie getrennt voneinander mit den Namen @code{font-liberation-sans} und so weiter in Pakete einteilen. Da sie aber unter einem gemeinsamen Namen angeboten werden, packen wir sie lieber zusammen in ein Paket mit dem Namen @code{font-liberation}." #. type: Plain text -#: guix-git/doc/contributing.texi:888 +#: guix-git/doc/contributing.texi:918 msgid "In the case where several formats of the same font family or font collection are packaged separately, a short form of the format, prepended by a dash, is added to the package name. We use @code{-ttf} for TrueType fonts, @code{-otf} for OpenType fonts and @code{-type1} for PostScript Type 1 fonts." msgstr "Für den Fall, dass mehrere Formate derselben Schriftfamilie oder Schriftartensammlung in separate Pakete kommen, wird ein Kurzname für das Format mit einem Strich vorne zum Paketnamen hinzugefügt. Wir benutzen @code{-ttf} für TrueType-Schriftarten, @code{-otf} für OpenType-Schriftarten und @code{-type1} für PostScript-Typ-1-Schriftarten." #. type: Plain text -#: guix-git/doc/contributing.texi:896 +#: guix-git/doc/contributing.texi:926 msgid "In general our code follows the GNU Coding Standards (@pxref{Top,,, standards, GNU Coding Standards}). However, they do not say much about Scheme, so here are some additional rules." msgstr "Im Allgemeinen folgt unser Code den GNU Coding Standards (siehe @ref{Top,,, standards, GNU Coding Standards}). Da diese aber nicht viel über Scheme zu sagen haben, folgen hier einige zusätzliche Regeln." #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:904 -#: guix-git/doc/contributing.texi:905 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:934 +#: guix-git/doc/contributing.texi:935 #, no-wrap msgid "Programming Paradigm" msgstr "Programmierparadigmen" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "How to compose your elements." msgstr "Wie Sie Ihre Elemente zusammenstellen." #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:911 -#: guix-git/doc/contributing.texi:912 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:941 +#: guix-git/doc/contributing.texi:942 #, no-wrap msgid "Modules" msgstr "Module" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Where to store your code?" msgstr "Wo Sie Ihren Code unterbringen." #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:922 -#: guix-git/doc/contributing.texi:923 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:952 +#: guix-git/doc/contributing.texi:953 #, no-wrap msgid "Data Types and Pattern Matching" msgstr "Datentypen und Mustervergleich" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Implementing data structures." msgstr "Implementierung von Datenstrukturen." #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:937 -#: guix-git/doc/contributing.texi:938 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:967 +#: guix-git/doc/contributing.texi:968 #, no-wrap msgid "Formatting Code" msgstr "Formatierung von Code" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Writing conventions." msgstr "Schreibkonventionen." #. type: Plain text -#: guix-git/doc/contributing.texi:910 +#: guix-git/doc/contributing.texi:940 msgid "Scheme code in Guix is written in a purely functional style. One exception is code that involves input/output, and procedures that implement low-level concepts, such as the @code{memoize} procedure." msgstr "Scheme-Code wird in Guix auf rein funktionale Weise geschrieben. Eine Ausnahme ist Code, der mit Ein- und Ausgabe zu tun hat, und Prozeduren, die grundlegende Konzepte implementieren, wie zum Beispiel die Prozedur @code{memoize}." #. type: Plain text -#: guix-git/doc/contributing.texi:918 +#: guix-git/doc/contributing.texi:948 msgid "Guile modules that are meant to be used on the builder side must live in the @code{(guix build @dots{})} name space. They must not refer to other Guix or GNU modules. However, it is OK for a ``host-side'' module to use a build-side module." msgstr "Guile-Module, die beim Erstellen nutzbar sein sollen, müssen im Namensraum @code{(guix build …)} leben. Sie dürfen auf keine anderen Guix- oder GNU-Module Bezug nehmen. Jedoch ist es in Ordnung, wenn ein „wirtsseitiges“ Modul ein erstellungsseitiges Modul benutzt." #. type: Plain text -#: guix-git/doc/contributing.texi:921 +#: guix-git/doc/contributing.texi:951 msgid "Modules that deal with the broader GNU system should be in the @code{(gnu @dots{})} name space rather than @code{(guix @dots{})}." msgstr "Module, die mit dem weiteren GNU-System zu tun haben, sollten im Namensraum @code{(gnu …)} und nicht in @code{(guix …)} stehen." #. type: Plain text -#: guix-git/doc/contributing.texi:930 +#: guix-git/doc/contributing.texi:960 msgid "The tendency in classical Lisp is to use lists to represent everything, and then to browse them ``by hand'' using @code{car}, @code{cdr}, @code{cadr}, and co. There are several problems with that style, notably the fact that it is hard to read, error-prone, and a hindrance to proper type error reports." msgstr "Im klassischen Lisp gibt es die Tendenz, Listen zur Darstellung von allem zu benutzen, und diese dann „händisch“ zu durchlaufen mit @code{car}, @code{cdr}, @code{cadr} und so weiter. Dieser Stil ist aus verschiedenen Gründen problematisch, insbesondere wegen der Tatsache, dass er schwer zu lesen, schnell fehlerbehaftet und ein Hindernis beim Melden von Typfehlern ist." #. type: Plain text -#: guix-git/doc/contributing.texi:936 +#: guix-git/doc/contributing.texi:966 msgid "Guix code should define appropriate data types (for instance, using @code{define-record-type*}) rather than abuse lists. In addition, it should use pattern matching, via Guile’s @code{(ice-9 match)} module, especially when matching lists (@pxref{Pattern Matching,,, guile, GNU Guile Reference Manual})." msgstr "Guix-Code sollte angemessene Datentypen definieren (zum Beispiel mit @code{define-record-type*}) statt Listen zu missbrauchen. Außerdem sollte er das @code{(ice-9 match)}-Modul von Guile zum Mustervergleich benutzen, besonders mit Listen (siehe @ref{Pattern Matching,,, guile, Referenzhandbuch zu GNU Guile})." #. type: cindex -#: guix-git/doc/contributing.texi:940 +#: guix-git/doc/contributing.texi:970 #, no-wrap msgid "formatting code" msgstr "Formatierung von Code" #. type: cindex -#: guix-git/doc/contributing.texi:941 +#: guix-git/doc/contributing.texi:971 #, no-wrap msgid "coding style" msgstr "Code-Stil" #. type: Plain text -#: guix-git/doc/contributing.texi:948 +#: guix-git/doc/contributing.texi:978 msgid "When writing Scheme code, we follow common wisdom among Scheme programmers. In general, we follow the @url{https://mumble.net/~campbell/scheme/style.txt, Riastradh's Lisp Style Rules}. This document happens to describe the conventions mostly used in Guile’s code too. It is very thoughtful and well written, so please do read it." msgstr "Beim Schreiben von Scheme-Code halten wir uns an die üblichen Gepflogenheiten unter Scheme-Programmierern. Im Allgemeinen bedeutet das, dass wir uns an @url{https://mumble.net/~campbell/scheme/style.txt, Riastradh's Lisp Style Rules} halten. Es hat sich ergeben, dass dieses Dokument auch die Konventionen beschreibt, die im Code von Guile hauptsächlich verwendet werden. Es ist gut durchdacht und schön geschrieben, also lesen Sie es bitte." #. type: Plain text -#: guix-git/doc/contributing.texi:955 +#: guix-git/doc/contributing.texi:985 msgid "Some special forms introduced in Guix, such as the @code{substitute*} macro, have special indentation rules. These are defined in the @file{.dir-locals.el} file, which Emacs automatically uses. Also note that Emacs-Guix provides @code{guix-devel-mode} mode that indents and highlights Guix code properly (@pxref{Development,,, emacs-guix, The Emacs-Guix Reference Manual})." msgstr "Ein paar in Guix eingeführte Sonderformen, wie zum Beispiel das @code{substitute*}-Makro, haben abweichende Regeln für die Einrückung. Diese sind in der Datei @file{.dir-locals.el} definiert, die Emacs automatisch benutzt. Beachten Sie auch, dass Emacs-Guix einen Modus namens @code{guix-devel-mode} bereitstellt, der Guix-Code richtig einrückt und hervorhebt (siehe @ref{Development,,, emacs-guix, Referenzhandbuch von Emacs-Guix})." #. type: cindex -#: guix-git/doc/contributing.texi:956 +#: guix-git/doc/contributing.texi:986 #, no-wrap msgid "indentation, of code" msgstr "Einrückung, Code-" #. type: cindex -#: guix-git/doc/contributing.texi:957 +#: guix-git/doc/contributing.texi:987 #, no-wrap msgid "formatting, of code" msgstr "Formatierung, Code-" #. type: Plain text -#: guix-git/doc/contributing.texi:960 +#: guix-git/doc/contributing.texi:990 msgid "If you do not use Emacs, please make sure to let your editor knows these rules. To automatically indent a package definition, you can also run:" msgstr "Falls Sie nicht Emacs verwenden, sollten Sie sicherstellen, dass Ihr Editor diese Regeln kennt. Um eine Paketdefinition automatisch einzurücken, können Sie auch Folgendes ausführen:" #. type: example -#: guix-git/doc/contributing.texi:963 +#: guix-git/doc/contributing.texi:993 #, no-wrap -msgid "./etc/indent-code.el gnu/packages/@var{file}.scm @var{package}\n" -msgstr "./etc/indent-code.el gnu/packages/@var{Datei}.scm @var{Paket}\n" +msgid "./pre-inst-env guix style @var{package}\n" +msgstr "./pre-inst-env guix style @var{Paket}\n" #. type: Plain text -#: guix-git/doc/contributing.texi:969 -msgid "This automatically indents the definition of @var{package} in @file{gnu/packages/@var{file}.scm} by running Emacs in batch mode. To indent a whole file, omit the second argument:" -msgstr "Dadurch wird die Definition von @var{Paket} in @file{gnu/packages/@var{Datei}.scm} automatisch eingerückt, indem Emacs im Batch-Modus läuft. Um die Einrückung in einer gesamten Datei vorzunehmen, lassen Sie das zweite Argument weg:" - -#. type: example -#: guix-git/doc/contributing.texi:972 -#, no-wrap -msgid "./etc/indent-code.el gnu/services/@var{file}.scm\n" -msgstr "./etc/indent-code.el gnu/services/@var{Datei}.scm\n" +#: guix-git/doc/contributing.texi:997 +msgid "@xref{Invoking guix style}, for more information." +msgstr "Siehe @ref{Invoking guix style} für weitere Informationen." #. type: cindex -#: guix-git/doc/contributing.texi:974 +#: guix-git/doc/contributing.texi:998 #, no-wrap msgid "Vim, Scheme code editing" msgstr "Vim, zum Editieren von Scheme-Code" #. type: Plain text -#: guix-git/doc/contributing.texi:980 +#: guix-git/doc/contributing.texi:1004 msgid "If you are editing code with Vim, we recommend that you run @code{:set autoindent} so that your code is automatically indented as you type. Additionally, @uref{https://www.vim.org/scripts/script.php?script_id=3998, @code{paredit.vim}} may help you deal with all these parentheses." msgstr "Wenn Sie Code mit Vim bearbeiten, empfehlen wir, dass Sie @code{:set autoindent} ausführen, damit Ihr Code automatisch eingerückt wird, während Sie ihn schreiben. Außerdem könnte Ihnen @uref{https://www.vim.org/scripts/script.php?script_id=3998, @code{paredit.vim}} dabei helfen, mit all diesen Klammern fertigzuwerden." #. type: Plain text -#: guix-git/doc/contributing.texi:984 +#: guix-git/doc/contributing.texi:1008 msgid "We require all top-level procedures to carry a docstring. This requirement can be relaxed for simple private procedures in the @code{(guix build @dots{})} name space, though." msgstr "Wir fordern von allen Prozeduren auf oberster Ebene, dass sie über einen Docstring verfügen. Diese Voraussetzung kann jedoch bei einfachen, privaten Prozeduren im Namensraum @code{(guix build …)} aufgeweicht werden." #. type: Plain text -#: guix-git/doc/contributing.texi:987 +#: guix-git/doc/contributing.texi:1011 msgid "Procedures should not have more than four positional parameters. Use keyword parameters for procedures that take more than four parameters." msgstr "Prozeduren sollten nicht mehr als vier positionsbestimmte Parameter haben. Benutzen Sie Schlüsselwort-Parameter für Prozeduren, die mehr als vier Parameter entgegennehmen." #. type: Plain text -#: guix-git/doc/contributing.texi:1001 +#: guix-git/doc/contributing.texi:1025 msgid "Development is done using the Git distributed version control system. Thus, access to the repository is not strictly necessary. We welcome contributions in the form of patches as produced by @code{git format-patch} sent to the @email{guix-patches@@gnu.org} mailing list (@pxref{submitting patches,, Submitting patches to a project, git, Git User Manual}). Contributors are encouraged to take a moment to set some Git repository options (@pxref{Configuring Git}) first, which can improve the readability of patches. Seasoned Guix developers may also want to look at the section on commit access (@pxref{Commit Access})." msgstr "Die Entwicklung wird mit Hilfe des verteilten Versionskontrollsystems Git durchgeführt. Daher ist eine ständige Verbindung zum Repository nicht unbedingt erforderlich. Wir begrüßen Beiträge in Form von Patches, die mittels @code{git format-patch} erstellt und an die Mailingliste @email{guix-patches@@gnu.org} geschickt werden (siehe @ref{submitting patches,, Submitting patches to a project, git, Git-Benutzerhandbuch}). In diesem Fall möchten wir Ihnen nahelegen, zunächst einige Git-Repository-Optionen festzulegen (@pxref{Configuring Git}), damit Ihr Patch leichter lesbar wird. Erfahrene Guix-Entwickler möchten vielleicht auch einen Blick auf den Abschnitt über Commit-Zugriff werfen (siehe @ref{Commit Access})." #. type: Plain text -#: guix-git/doc/contributing.texi:1008 +#: guix-git/doc/contributing.texi:1032 msgid "This mailing list is backed by a Debbugs instance, which allows us to keep track of submissions (@pxref{Tracking Bugs and Patches}). Each message sent to that mailing list gets a new tracking number assigned; people can then follow up on the submission by sending email to @code{@var{NNN}@@debbugs.gnu.org}, where @var{NNN} is the tracking number (@pxref{Sending a Patch Series})." msgstr "Diese Mailing-Liste setzt auf einer Debbugs-Instanz auf, wodurch wir den Überblick über Eingereichtes behalten können (siehe @ref{Tracking Bugs and Patches}). Jede an diese Mailing-Liste gesendete Nachricht bekommt eine neue Folgenummer zugewiesen, so dass man eine Folge-E-Mail zur Einreichung an @code{@var{NNN}@@debbugs.gnu.org} senden kann, wobei @var{NNN} für die Folgenummer steht (siehe @ref{Sending a Patch Series})." #. type: Plain text -#: guix-git/doc/contributing.texi:1012 +#: guix-git/doc/contributing.texi:1036 msgid "Please write commit logs in the ChangeLog format (@pxref{Change Logs,,, standards, GNU Coding Standards}); you can check the commit history for examples." msgstr "Bitte schreiben Sie Commit-Logs im ChangeLog-Format (siehe @ref{Change Logs,,, standards, GNU Coding Standards}); dazu finden Sie Beispiele unter den bisherigen Commits." #. type: Plain text -#: guix-git/doc/contributing.texi:1015 +#: guix-git/doc/contributing.texi:1039 msgid "Before submitting a patch that adds or modifies a package definition, please run through this check list:" msgstr "Bevor Sie einen Patch einreichen, der eine Paketdefinition hinzufügt oder verändert, gehen Sie bitte diese Prüfliste durch:" #. type: code{#1} -#: guix-git/doc/contributing.texi:1017 guix-git/doc/contributing.texi:1223 +#: guix-git/doc/contributing.texi:1041 guix-git/doc/contributing.texi:1251 #, no-wrap msgid "git format-patch" msgstr "git format-patch" #. type: code{#1} -#: guix-git/doc/contributing.texi:1018 +#: guix-git/doc/contributing.texi:1042 #, no-wrap msgid "git-format-patch" msgstr "git-format-patch" #. type: enumerate -#: guix-git/doc/contributing.texi:1025 +#: guix-git/doc/contributing.texi:1049 msgid "When generating your patches with @code{git format-patch} or @code{git send-email}, we recommend using the option @code{--base=}, perhaps with the value @code{auto}. This option adds a note to the patch stating which commit the patch is based on. This helps reviewers understand how to apply and review your patches." msgstr "Wenn Sie Ihre Patches mit @code{git format-patch} oder @code{git send-email} erzeugen, empfehlen wir, die Befehlszeilenoption @code{--base=} mitzugeben; als ihren Wert geben Sie wahrscheinlich @code{auto} an. Mit dieser Option wird eine Bemerkung zum Patch hinzugefügt, die angibt, auf welchem Commit der Patch basiert. Damit fällt das Überprüfen und Anwenden Ihrer Patches leichter." #. type: enumerate -#: guix-git/doc/contributing.texi:1031 +#: guix-git/doc/contributing.texi:1055 msgid "If the authors of the packaged software provide a cryptographic signature for the release tarball, make an effort to verify the authenticity of the archive. For a detached GPG signature file this would be done with the @code{gpg --verify} command." msgstr "Wenn die Autoren der verpackten Software eine kryptografische Signatur bzw. Beglaubigung für den Tarball der Veröffentlichung anbieten, so machen Sie sich bitte die Mühe, die Echtheit des Archivs zu überprüfen. Für eine abgetrennte GPG-Signaturdatei würden Sie das mit dem Befehl @code{gpg --verify} tun." #. type: enumerate -#: guix-git/doc/contributing.texi:1035 +#: guix-git/doc/contributing.texi:1059 msgid "Take some time to provide an adequate synopsis and description for the package. @xref{Synopses and Descriptions}, for some guidelines." msgstr "Nehmen Sie sich die Zeit, eine passende Zusammenfassung und Beschreibung für das Paket zu verfassen. Unter @ref{Synopses and Descriptions} finden Sie dazu einige Richtlinien." #. type: enumerate -#: guix-git/doc/contributing.texi:1040 +#: guix-git/doc/contributing.texi:1064 msgid "Run @code{guix lint @var{package}}, where @var{package} is the name of the new or modified package, and fix any errors it reports (@pxref{Invoking guix lint})." msgstr "Verwenden Sie @code{guix lint @var{Paket}}, wobei @var{Paket} das neue oder geänderte Paket bezeichnet, und beheben Sie alle gemeldeten Fehler (siehe @ref{Invoking guix lint})." #. type: enumerate -#: guix-git/doc/contributing.texi:1044 +#: guix-git/doc/contributing.texi:1068 +msgid "Run @code{guix style @var{package}} to format the new package definition according to the project's conventions (@pxref{Invoking guix style})." +msgstr "Verwenden Sie @code{guix style @var{Paket}}, um die neue Paketdefinition gemäß den Konventionen des Guix-Projekts zu formatieren (siehe @ref{Invoking guix style})." + +#. type: enumerate +#: guix-git/doc/contributing.texi:1072 msgid "Make sure the package builds on your platform, using @code{guix build @var{package}}." msgstr "Stellen Sie sicher, dass das Paket auf Ihrer Plattform erstellt werden kann, indem Sie @code{guix build @var{Paket}} ausführen." #. type: enumerate -#: guix-git/doc/contributing.texi:1052 +#: guix-git/doc/contributing.texi:1080 msgid "We recommend you also try building the package on other supported platforms. As you may not have access to actual hardware platforms, we recommend using the @code{qemu-binfmt-service-type} to emulate them. In order to enable it, add the @code{virtualization} service module and the following service to the list of services in your @code{operating-system} configuration:" msgstr "Wir empfehlen, dass Sie auch versuchen, das Paket auf anderen unterstützten Plattformen zu erstellen. Da Sie vielleicht keinen Zugang zu echter Hardware für diese Plattformen haben, empfehlen wir, den @code{qemu-binfmt-service-type} zu benutzen, um sie zu emulieren. Um ihn zu aktivieren, fügen Sie @code{virtualization} zu @code{use-service-modules} und den folgenden Dienst in die Liste der Dienste („services“) in Ihrer @code{operating-system}-Konfiguration ein:" #. type: lisp -#: guix-git/doc/contributing.texi:1057 +#: guix-git/doc/contributing.texi:1085 #, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -1590,17 +1631,17 @@ msgstr "" " (platforms (lookup-qemu-platforms \"arm\" \"aarch64\"))))\n" #. type: enumerate -#: guix-git/doc/contributing.texi:1060 +#: guix-git/doc/contributing.texi:1088 msgid "Then reconfigure your system." msgstr "Rekonfigurieren Sie anschließend Ihr System." #. type: enumerate -#: guix-git/doc/contributing.texi:1065 +#: guix-git/doc/contributing.texi:1093 msgid "You can then build packages for different platforms by specifying the @code{--system} option. For example, to build the \"hello\" package for the armhf or aarch64 architectures, you would run the following commands, respectively:" msgstr "Sie können Pakete für andere Plattformen erstellen lassen, indem Sie die Befehlszeilenoption @code{--system} angeben. Um zum Beispiel das Paket „hello“ für die Architekturen armhf oder aarch64 erstellen zu lassen, würden Sie jeweils die folgenden Befehle angeben:" #. type: example -#: guix-git/doc/contributing.texi:1068 +#: guix-git/doc/contributing.texi:1096 #, no-wrap msgid "" "guix build --system=armhf-linux --rounds=2 hello\n" @@ -1610,232 +1651,232 @@ msgstr "" "guix build --system=aarch64-linux --rounds=2 hello\n" #. type: cindex -#: guix-git/doc/contributing.texi:1071 +#: guix-git/doc/contributing.texi:1099 #, no-wrap msgid "bundling" msgstr "gebündelt" #. type: enumerate -#: guix-git/doc/contributing.texi:1074 +#: guix-git/doc/contributing.texi:1102 msgid "Make sure the package does not use bundled copies of software already available as separate packages." msgstr "Achten Sie darauf, dass im Paket keine Software gebündelt mitgeliefert wird, die bereits in separaten Paketen zur Verfügung steht." #. type: enumerate -#: guix-git/doc/contributing.texi:1083 +#: guix-git/doc/contributing.texi:1111 msgid "Sometimes, packages include copies of the source code of their dependencies as a convenience for users. However, as a distribution, we want to make sure that such packages end up using the copy we already have in the distribution, if there is one. This improves resource usage (the dependency is built and stored only once), and allows the distribution to make transverse changes such as applying security updates for a given software package in a single place and have them affect the whole system---something that bundled copies prevent." msgstr "Manchmal enthalten Pakete Kopien des Quellcodes ihrer Abhängigkeiten, um Nutzern die Installation zu erleichtern. Als eine Distribution wollen wir jedoch sicherstellen, dass solche Pakete die schon in der Distribution verfügbare Fassung benutzen, sofern es eine gibt. Dadurch wird sowohl der Ressourcenverbrauch optimiert (die Abhängigkeit wird so nur einmal erstellt und gespeichert) als auch der Distribution die Möglichkeit gegeben, ergänzende Änderungen durchzuführen, um beispielsweise Sicherheitsaktualisierungen für ein bestimmtes Paket an nur einem Ort einzuspielen, die aber das gesamte System betreffen@tie{}— gebündelt mitgelieferte Kopien würden dies verhindern." #. type: enumerate -#: guix-git/doc/contributing.texi:1092 +#: guix-git/doc/contributing.texi:1120 msgid "Take a look at the profile reported by @command{guix size} (@pxref{Invoking guix size}). This will allow you to notice references to other packages unwillingly retained. It may also help determine whether to split the package (@pxref{Packages with Multiple Outputs}), and which optional dependencies should be used. In particular, avoid adding @code{texlive} as a dependency: because of its extreme size, use the @code{texlive-tiny} package or @code{texlive-union} procedure instead." msgstr "Schauen Sie sich das von @command{guix size} ausgegebene Profil an (siehe @ref{Invoking guix size}). Dadurch können Sie Referenzen auf andere Pakete finden, die ungewollt vorhanden sind. Dies kann auch dabei helfen, zu entscheiden, ob das Paket aufgespalten werden sollte (siehe @ref{Packages with Multiple Outputs}) und welche optionalen Abhängigkeiten verwendet werden sollten. Dabei sollten Sie es wegen seiner enormen Größe insbesondere vermeiden, @code{texlive} als eine Abhängigkeit hinzuzufügen; benutzen Sie stattdessen das Paket @code{texlive-tiny} oder die Prozedur @code{texlive-union}." #. type: enumerate -#: guix-git/doc/contributing.texi:1097 +#: guix-git/doc/contributing.texi:1125 msgid "For important changes, check that dependent packages (if applicable) are not affected by the change; @code{guix refresh --list-dependent @var{package}} will help you do that (@pxref{Invoking guix refresh})." msgstr "Achten Sie bei wichtigen Änderungen darauf, dass abhängige Pakete (falls vorhanden) nicht von der Änderung beeinträchtigt werden; @code{guix refresh --list-dependent @var{Paket}} hilft Ihnen dabei (siehe @ref{Invoking guix refresh})." #. type: cindex -#: guix-git/doc/contributing.texi:1099 +#: guix-git/doc/contributing.texi:1127 #, no-wrap msgid "branching strategy" msgstr "Branching-Strategie" #. type: cindex -#: guix-git/doc/contributing.texi:1100 +#: guix-git/doc/contributing.texi:1128 #, no-wrap msgid "rebuild scheduling strategy" msgstr "Neuerstellungs-Zeitplan" #. type: enumerate -#: guix-git/doc/contributing.texi:1103 +#: guix-git/doc/contributing.texi:1131 msgid "Depending on the number of dependent packages and thus the amount of rebuilding induced, commits go to different branches, along these lines:" msgstr "Je nachdem, wie viele abhängige Pakete es gibt, und entsprechend wie viele Neuerstellungen dadurch nötig würden, finden Commits auf anderen Branches statt, nach ungefähr diesen Regeln:" #. type: item -#: guix-git/doc/contributing.texi:1105 +#: guix-git/doc/contributing.texi:1133 #, no-wrap msgid "300 dependent packages or less" msgstr "300 abhängige Pakete oder weniger" #. type: table -#: guix-git/doc/contributing.texi:1107 +#: guix-git/doc/contributing.texi:1135 msgid "@code{master} branch (non-disruptive changes)." msgstr "@code{master}-Branch (störfreie Änderungen)." #. type: item -#: guix-git/doc/contributing.texi:1108 +#: guix-git/doc/contributing.texi:1136 #, no-wrap msgid "between 300 and 1,800 dependent packages" msgstr "zwischen 300 und 1.800 abhängige Pakete" #. type: table -#: guix-git/doc/contributing.texi:1114 +#: guix-git/doc/contributing.texi:1142 msgid "@code{staging} branch (non-disruptive changes). This branch is intended to be merged in @code{master} every 6 weeks or so. Topical changes (e.g., an update of the GNOME stack) can instead go to a specific branch (say, @code{gnome-updates}). This branch is not expected to be buildable or usable until late in its development process." msgstr "@code{staging}-Branch (störfreie Änderungen). Dieser Branch wird circa alle 6@tie{}Wochen mit @code{master} zusammengeführt. Themenbezogene Änderungen (z.B.@: eine Aktualisierung der GNOME-Plattform) können stattdessen auch auf einem eigenen Branch umgesetzt werden (wie @code{gnome-updates}). Dieser Branch ist erst spät im Entwicklungsprozess nutzbar." #. type: item -#: guix-git/doc/contributing.texi:1115 +#: guix-git/doc/contributing.texi:1143 #, no-wrap msgid "more than 1,800 dependent packages" msgstr "mehr als 1.800 abhängige Pakete" #. type: table -#: guix-git/doc/contributing.texi:1120 +#: guix-git/doc/contributing.texi:1148 msgid "@code{core-updates} branch (may include major and potentially disruptive changes). This branch is intended to be merged in @code{master} every 6 months or so. This branch is not expected to be buildable or usable until late in its development process." msgstr "@code{core-updates}-Branch (kann auch größere und womöglich andere Software beeinträchtigende Änderungen umfassen). Dieser Branch wird planmäßig in @code{master} alle 6 Monate oder so gemerget. Dieser Branch ist erst spät im Entwicklungsprozess nutzbar." #. type: enumerate -#: guix-git/doc/contributing.texi:1127 +#: guix-git/doc/contributing.texi:1155 msgid "All these branches are @uref{https://@value{SUBSTITUTE-SERVER-1}, tracked by our build farm} and merged into @code{master} once everything has been successfully built. This allows us to fix issues before they hit users, and to reduce the window during which pre-built binaries are not available." msgstr "All diese Branches werden kontinuierlich @uref{https://@value{SUBSTITUTE-SERVER-1}, auf unserer Erstellungsfarm} erstellt und in @code{master} gemerget, sobald alles erfolgreich erstellt worden ist. Dadurch können wir Probleme beheben, bevor sie bei Nutzern auftreten, und zudem das Zeitfenster, während dessen noch keine vorerstellten Binärdateien verfügbar sind, verkürzen." #. type: enumerate -#: guix-git/doc/contributing.texi:1136 +#: guix-git/doc/contributing.texi:1164 msgid "When we decide to start building the @code{staging} or @code{core-updates} branches, they will be forked and renamed with the suffix @code{-frozen}, at which time only bug fixes may be pushed to the frozen branches. The @code{core-updates} and @code{staging} branches will remain open to accept patches for the next cycle. Please ask on the mailing list or IRC if unsure where to place a patch." msgstr "Sobald wir uns dazu entscheiden, einen der Branches @code{staging} oder @code{core-updates} zu erstellen, spalten wir einen neuen Branch davon ab und hängen an seinen Namen das Suffix @code{-frozen} an. Auf einen „frozen“-Branch dürfen dann nur noch Fehlerbehebungen gepusht werden. Die Branches @code{core-updates} und @code{staging} bleiben offen; dorthin gehen Patches für den nächsten Durchlauf. Bitte fragen Sie auf der Mailing-Liste oder im IRC nach, wenn Sie sich unsicher sind, wohin ein Patch gehört." #. type: cindex -#: guix-git/doc/contributing.texi:1138 +#: guix-git/doc/contributing.texi:1166 #, no-wrap msgid "determinism, of build processes" msgstr "Determinismus, von Erstellungsprozessen" #. type: cindex -#: guix-git/doc/contributing.texi:1139 +#: guix-git/doc/contributing.texi:1167 #, no-wrap msgid "reproducible builds, checking" msgstr "Reproduzierbare Erstellungen, Überprüfung" #. type: enumerate -#: guix-git/doc/contributing.texi:1143 +#: guix-git/doc/contributing.texi:1171 msgid "Check whether the package's build process is deterministic. This typically means checking whether an independent build of the package yields the exact same result that you obtained, bit for bit." msgstr "Überprüfen Sie, ob der Erstellungsprozess deterministisch ist. Dazu prüfen Sie typischerweise, ob eine unabhängige Erstellung des Pakets genau dasselbe Ergebnis wie Ihre Erstellung hat, Bit für Bit." #. type: enumerate -#: guix-git/doc/contributing.texi:1146 +#: guix-git/doc/contributing.texi:1174 msgid "A simple way to do that is by building the same package several times in a row on your machine (@pxref{Invoking guix build}):" msgstr "Dies können Sie leicht tun, indem Sie dasselbe Paket mehrere Male hintereinander auf Ihrer Maschine erstellen (siehe @ref{Invoking guix build}):" #. type: example -#: guix-git/doc/contributing.texi:1149 +#: guix-git/doc/contributing.texi:1177 #, no-wrap msgid "guix build --rounds=2 my-package\n" msgstr "guix build --rounds=2 mein-paket\n" #. type: enumerate -#: guix-git/doc/contributing.texi:1153 +#: guix-git/doc/contributing.texi:1181 msgid "This is enough to catch a class of common non-determinism issues, such as timestamps or randomly-generated output in the build result." msgstr "Dies reicht aus, um eine ganze Klasse häufiger Ursachen von Nichtdeterminismus zu finden, wie zum Beispiel Zeitstempel oder zufallsgenerierte Ausgaben im Ergebnis der Erstellung." #. type: enumerate -#: guix-git/doc/contributing.texi:1163 +#: guix-git/doc/contributing.texi:1191 msgid "Another option is to use @command{guix challenge} (@pxref{Invoking guix challenge}). You may run it once the package has been committed and built by @code{@value{SUBSTITUTE-SERVER-1}} to check whether it obtains the same result as you did. Better yet: Find another machine that can build it and run @command{guix publish}. Since the remote build machine is likely different from yours, this can catch non-determinism issues related to the hardware---e.g., use of different instruction set extensions---or to the operating system kernel---e.g., reliance on @code{uname} or @file{/proc} files." msgstr "Eine weitere Möglichkeit ist, @command{guix challenge} (siehe @ref{Invoking guix challenge}) zu benutzen. Sie können es ausführen, sobald ein Paket commitet und von @code{@value{SUBSTITUTE-SERVER-1}} erstellt wurde, um zu sehen, ob dort dasselbe Ergebnis wie bei Ihnen geliefert wurde. Noch besser: Finden Sie eine andere Maschine, die das Paket erstellen kann, und führen Sie @command{guix publish} aus. Da sich die entfernte Erstellungsmaschine wahrscheinlich von Ihrer unterscheidet, können Sie auf diese Weise Probleme durch Nichtdeterminismus erkennen, die mit der Hardware zu tun haben@tie{}— zum Beispiel die Nutzung anderer Befehlssatzerweiterungen@tie{}— oder mit dem Betriebssystem-Kernel@tie{}— zum Beispiel, indem @code{uname} oder @file{/proc}-Dateien verwendet werden." # Hier gehe ich mal davon aus, dass Dokumentation generell zuerst in Englisch geschrieben wird, daher, werden solche Begriffe auch hier nicht übersetzt. #. type: enumerate -#: guix-git/doc/contributing.texi:1169 +#: guix-git/doc/contributing.texi:1197 msgid "When writing documentation, please use gender-neutral wording when referring to people, such as @uref{https://en.wikipedia.org/wiki/Singular_they, singular ``they''@comma{} ``their''@comma{} ``them''}, and so forth." msgstr "Beim Schreiben von Dokumentation achten Sie bitte auf eine geschlechtsneutrale Wortwahl, wenn Sie sich auf Personen beziehen, wie @uref{https://en.wikipedia.org/wiki/Singular_they, „they“@comma{} „their“@comma{} „them“ im Singular} und so weiter." #. type: enumerate -#: guix-git/doc/contributing.texi:1173 +#: guix-git/doc/contributing.texi:1201 msgid "Verify that your patch contains only one set of related changes. Bundling unrelated changes together makes reviewing harder and slower." msgstr "Stellen Sie sicher, dass Ihr Patch nur einen Satz zusammengehöriger Änderungen umfasst. Das Zusammenfassen nicht zusammengehöriger Änderungen erschwert und bremst das Durchsehen Ihres Patches." #. type: enumerate -#: guix-git/doc/contributing.texi:1176 +#: guix-git/doc/contributing.texi:1204 msgid "Examples of unrelated changes include the addition of several packages, or a package update along with fixes to that package." msgstr "Beispiele für nicht zusammengehörige Änderungen sind das Hinzufügen mehrerer Pakete auf einmal, oder das Aktualisieren eines Pakets auf eine neue Version zusammen mit Fehlerbehebungen für das Paket." #. type: enumerate -#: guix-git/doc/contributing.texi:1181 -msgid "Please follow our code formatting rules, possibly running the @command{etc/indent-code.el} script to do that automatically for you (@pxref{Formatting Code})." -msgstr "Bitte befolgen Sie unsere Richtlinien für die Code-Formatierung, womöglich wollen Sie dies automatisch tun lassen durch das Skript @command{etc/indent-code.el} (siehe @ref{Formatting Code})." +#: guix-git/doc/contributing.texi:1209 +msgid "Please follow our code formatting rules, possibly running @command{guix style} script to do that automatically for you (@pxref{Formatting Code})." +msgstr "Bitte befolgen Sie unsere Richtlinien für die Code-Formatierung; womöglich wollen Sie dies automatisch tun lassen durch das Skript @command{guix style} (siehe @ref{Formatting Code})." #. type: enumerate -#: guix-git/doc/contributing.texi:1189 +#: guix-git/doc/contributing.texi:1217 msgid "When possible, use mirrors in the source URL (@pxref{Invoking guix download}). Use reliable URLs, not generated ones. For instance, GitHub archives are not necessarily identical from one generation to the next, so in this case it's often better to clone the repository. Don't use the @command{name} field in the URL: it is not very useful and if the name changes, the URL will probably be wrong." msgstr "Benutzen Sie, wenn möglich, Spiegelserver (Mirrors) in der Quell-URL (siehe @ref{Invoking guix download}). Verwenden Sie verlässliche URLs, keine automatisch generierten. Zum Beispiel sind Archive von GitHub nicht immer identisch von einer Generation auf die nächste, daher ist es in diesem Fall besser, als Quelle einen Klon des Repositorys zu verwenden. Benutzen Sie @emph{nicht} das @command{name}-Feld beim Angeben der URL; er hilft nicht wirklich und wenn sich der Name ändert, stimmt die URL nicht mehr." #. type: enumerate -#: guix-git/doc/contributing.texi:1193 +#: guix-git/doc/contributing.texi:1221 msgid "Check if Guix builds (@pxref{Building from Git}) and address the warnings, especially those about use of undefined symbols." msgstr "Überprüfen Sie, ob Guix erstellt werden kann (siehe @ref{Building from Git}) und kümmern Sie sich um die Warnungen, besonders um solche über nicht definierte Symbole." #. type: enumerate -#: guix-git/doc/contributing.texi:1196 +#: guix-git/doc/contributing.texi:1224 msgid "Make sure your changes do not break Guix and simulate a @code{guix pull} with:" msgstr "Stellen Sie sicher, dass Ihre Änderungen Guix nicht beeinträchtigen, und simulieren Sie eine Ausführung von @code{guix pull} über den Befehl:" #. type: example -#: guix-git/doc/contributing.texi:1198 +#: guix-git/doc/contributing.texi:1226 #, no-wrap msgid "guix pull --url=/path/to/your/checkout --profile=/tmp/guix.master\n" msgstr "guix pull --url=/pfad/zu/ihrem/checkout --profile=/tmp/guix.master\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1211 +#: guix-git/doc/contributing.texi:1239 msgid "When posting a patch to the mailing list, use @samp{[PATCH] @dots{}} as a subject, if your patch is to be applied on a branch other than @code{master}, say @code{core-updates}, specify it in the subject like @samp{[PATCH core-updates] @dots{}}. You may use your email client or the @command{git send-email} command (@pxref{Sending a Patch Series}). We prefer to get patches in plain text messages, either inline or as MIME attachments. You are advised to pay attention if your email client changes anything like line breaks or indentation which could potentially break the patches." msgstr "Bitte benutzen Sie @samp{[PATCH] …} als Betreff, wenn Sie einen Patch an die Mailing-Liste schicken. Soll Ihr Patch auf einen anderen Branch als @code{master} angewandt werden, z.B.@: @code{core-updates}, geben Sie dies im Betreff an als @samp{[PATCH core-updates] …}. Sie können dazu Ihr E-Mail-Programm oder den Befehl @command{git send-email} benutzen (siehe @ref{Sending a Patch Series}). Wir bevorzugen es, Patches als reine Textnachrichten zu erhalten, entweder eingebettet (inline) oder als MIME-Anhänge. Sie sind dazu angehalten, zu überprüfen, ob Ihr Mail-Programm solche Dinge wie Zeilenumbrüche oder die Einrückung verändert, wodurch die Patches womöglich nicht mehr funktionieren." #. type: Plain text -#: guix-git/doc/contributing.texi:1216 +#: guix-git/doc/contributing.texi:1244 msgid "Expect some delay when you submit your very first patch to @email{guix-patches@@gnu.org}. You have to wait until you get an acknowledgement with the assigned tracking number. Future acknowledgements should not be delayed." msgstr "Rechnen Sie damit, dass es etwas dauert, bis Ihr erster Patch an @email{guix-patches@@gnu.org} zu sehen ist. Sie werden warten müssen, bis Sie eine Bestätigung mit der zugewiesenen Folgenummer bekommen. Spätere Bestätigungen sollten sofort kommen." #. type: Plain text -#: guix-git/doc/contributing.texi:1219 +#: guix-git/doc/contributing.texi:1247 msgid "When a bug is resolved, please close the thread by sending an email to @email{@var{NNN}-done@@debbugs.gnu.org}." msgstr "Wenn dadurch ein Fehler behoben wurde, schließen Sie bitte den Thread, indem Sie eine E-Mail an @email{@var{NNN}-done@@debbugs.gnu.org} senden." #. type: subsection -#: guix-git/doc/contributing.texi:1220 guix-git/doc/contributing.texi:1221 +#: guix-git/doc/contributing.texi:1248 guix-git/doc/contributing.texi:1249 #, no-wrap msgid "Configuring Git" msgstr "Git einrichten" #. type: cindex -#: guix-git/doc/contributing.texi:1222 +#: guix-git/doc/contributing.texi:1250 #, no-wrap msgid "git configuration" msgstr "Git-Konfiguration" #. type: code{#1} -#: guix-git/doc/contributing.texi:1224 guix-git/doc/contributing.texi:1259 +#: guix-git/doc/contributing.texi:1252 guix-git/doc/contributing.texi:1287 #, no-wrap msgid "git send-email" msgstr "git send-email" #. type: Plain text -#: guix-git/doc/contributing.texi:1232 +#: guix-git/doc/contributing.texi:1260 msgid "If you have not done so already, you may wish to set a name and email that will be associated with your commits (@pxref{telling git your name, , Telling Git your name, git, Git User Manual}). If you wish to use a different name or email just for commits in this repository, you can use @command{git config --local}, or edit @file{.git/config} in the repository instead of @file{~/.gitconfig}." msgstr "Wenn es noch nicht geschehen ist, wollen Sie vielleicht den Namen und die E-Mail-Adresse festlegen, mit der Ihre Commits ausgestellt werden (siehe @ref{telling git your name, , Telling Git your name, git, Git-Benutzerhandbuch}). Wenn Sie einen anderen Namen oder eine andere E-Mail-Adresse nur für Commits in diesem Repository verwenden möchten, können Sie @command{git config --local} benutzen oder Änderungen in der Datei @file{.git/config} im Repository statt in @file{~/.gitconfig} durchführen." #. type: Plain text -#: guix-git/doc/contributing.texi:1238 +#: guix-git/doc/contributing.texi:1266 msgid "We provide some default settings in @file{etc/git/gitconfig} which modify how patches are generated, making them easier to read and apply. These settings can be applied by manually copying them to @file{.git/config} in your checkout, or by telling Git to include the whole file:" msgstr "Wir stellen einige Standardeinstellungen in @file{etc/git/gitconfig} zur Verfügung, die ändern, wie Patches erzeugt werden, damit sie leichter zu lesen und anzuwenden sind. Sie können die Einstellungen von Hand übernehmen, indem Sie sie in die Datei @file{.git/config} in Ihrem Checkout kopieren, oder Git anweisen, die ganze Datei per @code{include}-Direktive zu laden:" #. type: example -#: guix-git/doc/contributing.texi:1241 +#: guix-git/doc/contributing.texi:1269 #, no-wrap msgid "git config --local include.path ../etc/git/gitconfig\n" msgstr "git config --local include.path ../etc/git/gitconfig\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1245 +#: guix-git/doc/contributing.texi:1273 msgid "From then on, any changes to @file{etc/git/gitconfig} would automatically take effect." msgstr "Von da an werden sich jegliche Änderungen an @file{etc/git/gitconfig} automatisch auswirken." #. type: Plain text -#: guix-git/doc/contributing.texi:1250 +#: guix-git/doc/contributing.texi:1278 msgid "Since the first patch in a series must be sent separately (@pxref{Sending a Patch Series}), it can also be helpful to tell @command{git format-patch} to handle the e-mail threading instead of @command{git send-email}:" msgstr "Weil der erste Patch in einer Patch-Reihe getrennt versandt werden muss (siehe @ref{Sending a Patch Series}), kann es helfen, @command{git format-patch} statt @command{git send-email} mit der Nachrichtenverkettung zu beauftragen:" #. type: example -#: guix-git/doc/contributing.texi:1254 +#: guix-git/doc/contributing.texi:1282 #, no-wrap msgid "" "git config --local format.thread shallow\n" @@ -1845,184 +1886,184 @@ msgstr "" "git config --local sendemail.thread no\n" #. type: anchor{#1} -#: guix-git/doc/contributing.texi:1256 guix-git/doc/contributing.texi:1258 +#: guix-git/doc/contributing.texi:1284 guix-git/doc/contributing.texi:1286 #, no-wrap msgid "Sending a Patch Series" msgstr "Senden einer Patch-Reihe" #. type: cindex -#: guix-git/doc/contributing.texi:1258 +#: guix-git/doc/contributing.texi:1286 #, no-wrap msgid "patch series" msgstr "Patch-Reihe" #. type: Plain text -#: guix-git/doc/contributing.texi:1269 +#: guix-git/doc/contributing.texi:1297 msgid "When sending a patch series (e.g., using @code{git send-email}), please first send one message to @email{guix-patches@@gnu.org}, and then send subsequent patches to @email{@var{NNN}@@debbugs.gnu.org} to make sure they are kept together. See @uref{https://debbugs.gnu.org/Advanced.html, the Debbugs documentation} for more information. You can install @command{git send-email} with @command{guix install git:send-email}." msgstr "Wenn Sie eine Patch-Reihe senden (z.B.@: mit @code{git send-email}), schicken Sie bitte als Erstes eine Nachricht an @email{guix-patches@@gnu.org} und dann nachfolgende Patches an @email{@var{NNN}@@debbugs.gnu.org}, um sicherzustellen, dass sie zusammen bearbeitet werden. Siehe @uref{https://debbugs.gnu.org/Advanced.html, die Debbugs-Dokumentation} für weitere Informationen. Sie können @command{git send-email} mit dem Befehl @command{guix install git:send-email} installieren." #. type: Plain text -#: guix-git/doc/contributing.texi:1275 +#: guix-git/doc/contributing.texi:1303 msgid "This section describes how the Guix project tracks its bug reports and patch submissions." msgstr "Dieser Abschnitt beschreibt, wie das Guix-Projekt Fehlerberichte und eingereichte Patches verwaltet." #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1282 -#: guix-git/doc/contributing.texi:1283 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1310 +#: guix-git/doc/contributing.texi:1311 #, no-wrap msgid "The Issue Tracker" msgstr "Der Issue-Tracker" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "The official bug and patch tracker." msgstr "Die offizielle Übersicht über Bugs und Patches." #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1296 -#: guix-git/doc/contributing.texi:1297 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1324 +#: guix-git/doc/contributing.texi:1325 #, no-wrap msgid "Debbugs User Interfaces" msgstr "Debbugs-Benutzerschnittstellen" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "Ways to interact with Debbugs." msgstr "Möglichkeiten, mit Debbugs umzugehen." #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1336 -#: guix-git/doc/contributing.texi:1337 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1364 +#: guix-git/doc/contributing.texi:1365 #, no-wrap msgid "Debbugs Usertags" msgstr "Debbugs-Usertags" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "Tag reports with custom labels." msgstr "Meldungen mit eigenen Kennzeichen versehen." #. type: cindex -#: guix-git/doc/contributing.texi:1285 +#: guix-git/doc/contributing.texi:1313 #, no-wrap msgid "bug reports, tracking" msgstr "Bug-Meldungen, Überblick" #. type: cindex -#: guix-git/doc/contributing.texi:1286 +#: guix-git/doc/contributing.texi:1314 #, no-wrap msgid "patch submissions, tracking" msgstr "Patch-Einreichungen, Überblick" #. type: cindex -#: guix-git/doc/contributing.texi:1287 +#: guix-git/doc/contributing.texi:1315 #, no-wrap msgid "issue tracking" msgstr "gemeldete Fehler überblicken" #. type: cindex -#: guix-git/doc/contributing.texi:1288 +#: guix-git/doc/contributing.texi:1316 #, no-wrap msgid "Debbugs, issue tracking system" msgstr "Debbugs, System zum Überblicken gemeldeter Fehler" #. type: Plain text -#: guix-git/doc/contributing.texi:1295 +#: guix-git/doc/contributing.texi:1323 msgid "Bug reports and patch submissions are currently tracked using the Debbugs instance at @uref{https://bugs.gnu.org}. Bug reports are filed against the @code{guix} ``package'' (in Debbugs parlance), by sending email to @email{bug-guix@@gnu.org}, while patch submissions are filed against the @code{guix-patches} package by sending email to @email{guix-patches@@gnu.org} (@pxref{Submitting Patches})." msgstr "Einen Überblick über gemeldete Fehler („Bugs“) und eingereichte Patches finden Sie derzeit auf der Debbugs-Instanz unter @uref{https://bugs.gnu.org}. Fehler werden für das „Paket“ (so sagt man im Sprachgebrauch von Debbugs) namens @code{guix} gemeldet, indem Sie eine E-Mail an @email{bug-guix@@gnu.org} schicken. Dagegen werden Patches für das Paket @code{guix-patches} eingereicht, indem Sie eine E-Mail an @email{guix-patches@@gnu.org} schicken (siehe @ref{Submitting Patches})." #. type: Plain text -#: guix-git/doc/contributing.texi:1301 +#: guix-git/doc/contributing.texi:1329 msgid "A web interface (actually @emph{two} web interfaces!) are available to browse issues:" msgstr "Ihnen steht eine Weboberfläche (tatsächlich sogar @emph{zwei} Weboberflächen!) zur Verfügung, um die Fehlerdatenbank zu durchsuchen:" #. type: itemize -#: guix-git/doc/contributing.texi:1310 +#: guix-git/doc/contributing.texi:1338 msgid "@url{https://issues.guix.gnu.org} provides a pleasant interface@footnote{The web interface at @url{https://issues.guix.gnu.org} is powered by Mumi, a nice piece of software written in Guile, and you can help! See @url{https://git.elephly.net/gitweb.cgi?p=software/mumi.git}.} to browse bug reports and patches, and to participate in discussions;" msgstr "@url{https://issues.guix.gnu.org} erlaubt es Ihnen, über eine hübsche Schnittstelle @footnote{Die Weboberfläche unter @url{https://issues.guix.gnu.org} läuft über das Programm Mumi, ein schönes Stück in Guile geschriebene Software, bei der Sie uns helfen können! Siehe @url{https://git.elephly.net/gitweb.cgi?p=software/mumi.git}.} eingesendete Fehlerberichte („Bug Reports“) und Patches einzusehen und an Diskussionen teilzunehmen." #. type: itemize -#: guix-git/doc/contributing.texi:1312 +#: guix-git/doc/contributing.texi:1340 msgid "@url{https://bugs.gnu.org/guix} lists bug reports;" msgstr "Auf @url{https://bugs.gnu.org/guix} werden gemeldete Fehler aufgeführt," #. type: itemize -#: guix-git/doc/contributing.texi:1314 +#: guix-git/doc/contributing.texi:1342 msgid "@url{https://bugs.gnu.org/guix-patches} lists patch submissions." msgstr "auf @url{https://bugs.gnu.org/guix-patches} eingereichte Patches." #. type: Plain text -#: guix-git/doc/contributing.texi:1319 +#: guix-git/doc/contributing.texi:1347 msgid "To view discussions related to issue number @var{n}, go to @indicateurl{https://issues.guix.gnu.org/@var{n}} or @indicateurl{https://bugs.gnu.org/@var{n}}." msgstr "Um Diskussionen zum Fehler mit Fehlernummer @var{n} einzusehen, schauen Sie auf @indicateurl{https://issues.guix.gnu.org/@var{n}} oder @indicateurl{https://bugs.gnu.org/@var{n}}." #. type: Plain text -#: guix-git/doc/contributing.texi:1322 +#: guix-git/doc/contributing.texi:1350 msgid "If you use Emacs, you may find it more convenient to interact with issues using @file{debbugs.el}, which you can install with:" msgstr "Wenn Sie Emacs benutzen, finden Sie es vielleicht bequemer, sich durch Nutzung von @file{debbugs.el} mit Fehlern zu befassen, was Sie mit folgendem Befehl installieren können:" #. type: example -#: guix-git/doc/contributing.texi:1325 +#: guix-git/doc/contributing.texi:1353 #, no-wrap msgid "guix install emacs-debbugs\n" msgstr "guix install emacs-debbugs\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1328 +#: guix-git/doc/contributing.texi:1356 msgid "For example, to list all open issues on @code{guix-patches}, hit:" msgstr "Um zum Beispiel alle noch ausstehenden, „offenen“ Fehler bezüglich @code{guix-patches} anzusehen, geben Sie dies ein:" #. type: example -#: guix-git/doc/contributing.texi:1331 +#: guix-git/doc/contributing.texi:1359 #, no-wrap msgid "@kbd{C-u} @kbd{M-x} debbugs-gnu @kbd{RET} @kbd{RET} guix-patches @kbd{RET} n y\n" msgstr "@kbd{C-u} @kbd{M-x} debbugs-gnu @kbd{RET} @kbd{RET} guix-patches @kbd{RET} n y\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1335 +#: guix-git/doc/contributing.texi:1363 msgid "@xref{Top,,, debbugs-ug, Debbugs User Guide}, for more information on this nifty tool!" msgstr "Siehe @ref{Top,,, debbugs-ug, Debbugs User Guide} für weitere Informationen zu diesem raffinierten Werkzeug." #. type: cindex -#: guix-git/doc/contributing.texi:1339 +#: guix-git/doc/contributing.texi:1367 #, no-wrap msgid "usertags, for debbugs" msgstr "Usertags, für Debbugs" #. type: cindex -#: guix-git/doc/contributing.texi:1340 +#: guix-git/doc/contributing.texi:1368 #, no-wrap msgid "Debbugs usertags" msgstr "Debbugs-Usertags" #. type: Plain text -#: guix-git/doc/contributing.texi:1346 +#: guix-git/doc/contributing.texi:1374 msgid "Debbugs provides a feature called @dfn{usertags} that allows any user to tag any bug with an arbitrary label. Bugs can be searched by usertag, so this is a handy way to organize bugs@footnote{The list of usertags is public information, and anyone can modify any user's list of usertags, so keep that in mind if you choose to use this feature.}." msgstr "Debbugs bietet die Möglichkeit, sogenannte @dfn{Usertags} zu vergeben, d.h.@: jeder Benutzer kann jedem Fehlerbericht beliebige Kennzeichnungen zuweisen. Die gemeldeten Fehler können anhand der Usertags gesucht werden, deshalb lassen sich die Meldungen so gut organisieren@footnote{Die Liste der Usertags ist öffentlich zugänglich und jeder kann die Usertag-Liste jedes anderen Nutzers ändern. Sie sollten daran denken, wenn Sie diese Funktionalität gebrauchen möchten.}." #. type: Plain text -#: guix-git/doc/contributing.texi:1352 +#: guix-git/doc/contributing.texi:1380 msgid "For example, to view all the bug reports (or patches, in the case of @code{guix-patches}) tagged with the usertag @code{powerpc64le-linux} for the user @code{guix}, open a URL like the following in a web browser: @url{https://debbugs.gnu.org/cgi-bin/pkgreport.cgi?tag=powerpc64le-linux;users=guix}." msgstr "Wenn Sie sich zum Beispiel alle Fehlerberichte (oder Patches, wenn Sie @code{guix-patches} betrachten) mit dem Usertag @code{powerpc64le-linux} für Benutzer @code{guix} ansehen möchten, öffnen Sie eine URL wie die folgende in einem Webbrowser: @url{https://debbugs.gnu.org/cgi-bin/pkgreport.cgi?tag=powerpc64le-linux;users=guix}." #. type: Plain text -#: guix-git/doc/contributing.texi:1356 +#: guix-git/doc/contributing.texi:1384 msgid "For more information on how to use usertags, please refer to the documentation for Debbugs or the documentation for whatever tool you use to interact with Debbugs." msgstr "Mehr Informationen, wie Sie Usertags benutzen können, finden Sie in der Dokumentation von Debbugs bzw.@: wenn Sie ein externes Programm benutzen, um mit Debbugs zu interagieren, in der Dokumentation dieses Programms." #. type: Plain text -#: guix-git/doc/contributing.texi:1361 +#: guix-git/doc/contributing.texi:1389 msgid "In Guix, we are experimenting with usertags to keep track of architecture-specific issues. To facilitate collaboration, all our usertags are associated with the single user @code{guix}. The following usertags currently exist for that user:" msgstr "In Guix experimentieren wir damit, Usertags zum Beobachten von Fehlern zu verwenden, die nur bestimmte Architekturen betreffen. Zur leichteren Zusammenarbeit verbinden wir all unsere Usertags einzig mit dem Benutzer @code{guix}. Für diesen Benutzer gibt es zurzeit folgende Usertags:" #. type: item -#: guix-git/doc/contributing.texi:1364 guix-git/doc/guix.texi:556 +#: guix-git/doc/contributing.texi:1392 guix-git/doc/guix.texi:557 #, no-wrap msgid "powerpc64le-linux" msgstr "powerpc64le-linux" #. type: table -#: guix-git/doc/contributing.texi:1372 +#: guix-git/doc/contributing.texi:1400 msgid "The purpose of this usertag is to make it easy to find the issues that matter most for the @code{powerpc64le-linux} system type. Please assign this usertag to bugs or patches that affect @code{powerpc64le-linux} but not other system types. In addition, you may use it to identify issues that for some reason are particularly important for the @code{powerpc64le-linux} system type, even if the issue affects other system types, too." msgstr "Mit diesem Usertag wollen wir es leichter machen, die Fehler zu finden, die für den Systemtyp @code{powerpc64le-linux} am wichtigsten sind. Bitte weisen Sie ihn solchen Bugs oder Patches zu, die nur @code{powerpc64le-linux} und keine anderen Systemtypen betreffen. Des Weiteren können Sie damit Probleme kennzeichnen, die für den Systemtyp @code{powerpc64le-linux} besonders bedeutsam sind, selbst wenn das Problem sich auch bei anderen Systemtypen zeigt." @@ -2030,134 +2071,136 @@ msgstr "Mit diesem Usertag wollen wir es leichter machen, die Fehler zu finden, #. type: item #. #-#-#-#-# guix.pot (guix manual checkout) #-#-#-#-# #. type: cindex -#: guix-git/doc/contributing.texi:1373 guix-git/doc/guix.texi:3070 -#: guix-git/doc/guix.texi:4771 +#: guix-git/doc/contributing.texi:1401 guix-git/doc/guix.texi:3087 +#: guix-git/doc/guix.texi:4789 #, no-wrap msgid "reproducibility" msgstr "Reproduzierbarkeit" #. type: table -#: guix-git/doc/contributing.texi:1377 +#: guix-git/doc/contributing.texi:1405 msgid "For issues related to reproducibility. For example, it would be appropriate to assign this usertag to a bug report for a package that fails to build reproducibly." msgstr "Verwenden Sie den Usertag @code{reproducibility} für Fehler in der Reproduzierbarkeit einer Erstellung. Es wäre zum Beispiel angemessen, den Usertag für einen Fehlerbericht zu einem Paket zuzuweisen, das nicht reproduzierbar erstellt wird." #. type: Plain text -#: guix-git/doc/contributing.texi:1384 +#: guix-git/doc/contributing.texi:1412 msgid "If you're a committer and you want to add a usertag, just start using it with the @code{guix} user. If the usertag proves useful to you, consider updating this section of the manual so that others will know what your usertag means." msgstr "Wenn Sie Commit-Zugriff haben und einen neuen Usertag verwenden möchten, dann fangen Sie einfach an, ihn mit dem Benutzer @code{guix} zu benutzen. Erweist sich der Usertag für Sie als nützlich, sollten Sie vielleicht diesen Handbuchabschnitt ergänzen, um andere in Kenntnis zu setzen, was Ihr Usertag bedeutet." #. type: cindex -#: guix-git/doc/contributing.texi:1388 +#: guix-git/doc/contributing.texi:1416 #, no-wrap msgid "commit access, for developers" msgstr "Commit-Zugriff, für Entwickler" #. type: Plain text -#: guix-git/doc/contributing.texi:1394 -msgid "Everyone can contribute to Guix without having commit access (@pxref{Submitting Patches}). However, for frequent contributors, having write access to the repository can be convenient. Commit access should not be thought of as a ``badge of honor'' but rather as a responsibility a contributor is willing to take to help the project." +#: guix-git/doc/contributing.texi:1427 +#, fuzzy +#| msgid "Everyone can contribute to Guix without having commit access (@pxref{Submitting Patches}). However, for frequent contributors, having write access to the repository can be convenient. Commit access should not be thought of as a ``badge of honor'' but rather as a responsibility a contributor is willing to take to help the project." +msgid "Everyone can contribute to Guix without having commit access (@pxref{Submitting Patches}). However, for frequent contributors, having write access to the repository can be convenient. As a rule of thumb, a contributor should have accumulated fifty (50) reviewed commits to be considered as a committer and have sustained their activity in the project for at least 6 months. This ensures enough interactions with the contributor, which is essential for mentoring and assessing whether they are ready to become a committer. Commit access should not be thought of as a ``badge of honor'' but rather as a responsibility a contributor is willing to take to help the project." msgstr "Jeder kann bei Guix mitmachen, auch ohne Commit-Zugriff zu haben (siehe @ref{Submitting Patches}). Für Leute, die häufig zu Guix beitragen, kann es jedoch praktischer sein, Schreibzugriff auf das Repository zu haben. Dieser Commit-Zugriff sollte nicht als Auszeichnung verstanden werden, sondern als Verantwortung, die ein Mitwirkender auf sich nimmt, um dem Projekt zu helfen." #. type: Plain text -#: guix-git/doc/contributing.texi:1398 +#: guix-git/doc/contributing.texi:1431 msgid "The following sections explain how to get commit access, how to be ready to push commits, and the policies and community expectations for commits pushed upstream." msgstr "Im folgenden Abschnitt wird beschrieben, wie jemand Commit-Zugriff bekommt, was man tun muss, bevor man zum ersten Mal einen Commit pusht, und welche Richtlinien und Erwartungen die Gemeinschaft an Commits richtet, die auf das offizielle Repository gepusht werden." #. type: subsection -#: guix-git/doc/contributing.texi:1399 +#: guix-git/doc/contributing.texi:1432 #, no-wrap msgid "Applying for Commit Access" msgstr "Um Commit-Zugriff bewerben" #. type: Plain text -#: guix-git/doc/contributing.texi:1403 +#: guix-git/doc/contributing.texi:1436 msgid "When you deem it necessary, consider applying for commit access by following these steps:" msgstr "Wenn Sie es für angemessen halten, dann sollten Sie in Erwägung ziehen, sich wie folgt um Commit-Zugriff zu bewerben:" #. type: enumerate -#: guix-git/doc/contributing.texi:1412 +#: guix-git/doc/contributing.texi:1445 msgid "Find three committers who would vouch for you. You can view the list of committers at @url{https://savannah.gnu.org/project/memberlist.php?group=guix}. Each of them should email a statement to @email{guix-maintainers@@gnu.org} (a private alias for the collective of maintainers), signed with their OpenPGP key." msgstr "Finden Sie drei Commiter, die für Sie eintreten. Sie können die Liste der Commiter unter @url{https://savannah.gnu.org/project/memberlist.php?group=guix} finden. Jeder von ihnen sollte eine entsprechende Erklärung per E-Mail an @email{guix-maintainers@@gnu.org} schicken (eine private Alias-Adresse für das Kollektiv aus allen Betreuern bzw.@: Maintainern), die jeweils mit ihrem OpenPGP-Schlüssel signiert wurde." #. type: enumerate -#: guix-git/doc/contributing.texi:1418 +#: guix-git/doc/contributing.texi:1451 msgid "Committers are expected to have had some interactions with you as a contributor and to be able to judge whether you are sufficiently familiar with the project's practices. It is @emph{not} a judgment on the value of your work, so a refusal should rather be interpreted as ``let's try again later''." msgstr "Von den Commitern wird erwartet, dass sie bereits mit Ihnen als Mitwirkendem zu tun hatten und beurteilen können, ob Sie mit den Richtlinien des Projekts hinreichend vertraut sind. Dabei geht es @emph{nicht} darum, wie wertvoll Ihre Beiträge sind, daher sollte eine Ablehnung mehr als „schauen wir später nochmal“ verstanden werden." #. type: enumerate -#: guix-git/doc/contributing.texi:1425 +#: guix-git/doc/contributing.texi:1458 msgid "Send @email{guix-maintainers@@gnu.org} a message stating your intent, listing the three committers who support your application, signed with the OpenPGP key you will use to sign commits, and giving its fingerprint (see below). See @uref{https://emailselfdefense.fsf.org/en/}, for an introduction to public-key cryptography with GnuPG." msgstr "Senden Sie eine Nachricht an @email{guix-maintainers@@gnu.org}, in der Sie Ihre Bereitschaft darlegen und die Namen der drei Commiter nennen, die Ihre Bewerbung unterstützen. Die Nachricht sollte mit dem OpenPGP-Schlüssel signiert sein, mit dem Sie später auch Ihre Commits signieren, und Sie sollten den Fingerabdruck hinterlegen (siehe unten). Siehe @uref{https://emailselfdefense.fsf.org/de/} für eine Einführung in asymmetrische Kryptografie („Public-Key“) mit GnuPG." #. type: enumerate -#: guix-git/doc/contributing.texi:1431 +#: guix-git/doc/contributing.texi:1464 msgid "Set up GnuPG such that it never uses the SHA1 hash algorithm for digital signatures, which is known to be unsafe since 2019, for instance by adding the following line to @file{~/.gnupg/gpg.conf} (@pxref{GPG Esoteric Options,,, gnupg, The GNU Privacy Guard Manual}):" msgstr "Richten Sie GnuPG so ein, dass es niemals den SHA1-Hashalgorithmus für digitale Signaturen verwendet, der seit 2019 bekanntlich unsicher ist. Fügen Sie dazu zum Beispiel folgende Zeile in @file{~/.gnupg/gpg.conf} ein (siehe @ref{GPG Esoteric Options,,, gnupg, The GNU Privacy Guard Manual}):" #. type: example -#: guix-git/doc/contributing.texi:1434 +#: guix-git/doc/contributing.texi:1467 #, no-wrap msgid "digest-algo sha512\n" msgstr "digest-algo sha512\n" #. type: enumerate -#: guix-git/doc/contributing.texi:1439 +#: guix-git/doc/contributing.texi:1472 msgid "Maintainers ultimately decide whether to grant you commit access, usually following your referrals' recommendation." msgstr "Betreuer entscheiden letztendlich darüber, ob Ihnen Commit-Zugriff gegeben wird, folgen dabei aber normalerweise der Empfehlung Ihrer Fürsprecher." #. type: cindex -#: guix-git/doc/contributing.texi:1441 +#: guix-git/doc/contributing.texi:1474 #, no-wrap msgid "OpenPGP, signed commits" msgstr "OpenPGP, signierte Commits" #. type: enumerate -#: guix-git/doc/contributing.texi:1446 +#: guix-git/doc/contributing.texi:1479 msgid "If and once you've been given access, please send a message to @email{guix-devel@@gnu.org} to say so, again signed with the OpenPGP key you will use to sign commits (do that before pushing your first commit). That way, everyone can notice and ensure you control that OpenPGP key." msgstr "Wenn und sobald Ihnen Zugriff gewährt wurde, senden Sie bitte eine Nachricht an @email{guix-devel@@gnu.org}, um dies bekanntzugeben, die Sie erneut mit dem OpenPGP-Schlüssel signiert haben, mit dem Sie Commits signieren (tun Sie das, bevor Sie Ihren ersten Commit pushen). Auf diese Weise kann jeder Ihren Beitritt mitbekommen und nachprüfen, dass dieser OpenPGP-Schlüssel wirklich Ihnen gehört." #. type: quotation -#: guix-git/doc/contributing.texi:1447 guix-git/doc/guix.texi:17972 +#: guix-git/doc/contributing.texi:1480 guix-git/doc/guix.texi:18334 #, no-wrap msgid "Important" msgstr "Wichtig" #. type: quotation -#: guix-git/doc/contributing.texi:1449 +#: guix-git/doc/contributing.texi:1482 msgid "Before you can push for the first time, maintainers must:" msgstr "Bevor Sie zum ersten Mal pushen dürfen, müssen die Betreuer:" #. type: enumerate -#: guix-git/doc/contributing.texi:1453 +#: guix-git/doc/contributing.texi:1486 msgid "add your OpenPGP key to the @code{keyring} branch;" msgstr "Ihren OpenPGP-Schlüssel zum @code{keyring}-Branch hinzugefügt haben," #. type: enumerate -#: guix-git/doc/contributing.texi:1456 +#: guix-git/doc/contributing.texi:1489 msgid "add your OpenPGP fingerprint to the @file{.guix-authorizations} file of the branch(es) you will commit to." msgstr "Ihren OpenPGP-Fingerabdruck in die Datei @file{.guix-authorizations} derjenigen Branches eingetragen haben, auf die Sie commiten möchten." #. type: enumerate -#: guix-git/doc/contributing.texi:1461 +#: guix-git/doc/contributing.texi:1494 msgid "Make sure to read the rest of this section and... profit!" msgstr "Wenn Sie den Rest dieses Abschnitts jetzt auch noch lesen, steht Ihrer Karriere nichts mehr im Weg!" #. type: quotation -#: guix-git/doc/contributing.texi:1467 +#: guix-git/doc/contributing.texi:1500 msgid "Maintainers are happy to give commit access to people who have been contributing for some time and have a track record---don't be shy and don't underestimate your work!" msgstr "Betreuer geben gerne anderen Leuten Commit-Zugriff, die schon einige Zeit dabei waren und ihre Eignung unter Beweis gestellt haben. Seien Sie nicht schüchtern und unterschätzen Sie Ihre Arbeit nicht!" #. type: quotation -#: guix-git/doc/contributing.texi:1471 +#: guix-git/doc/contributing.texi:1504 msgid "However, note that the project is working towards a more automated patch review and merging system, which, as a consequence, may lead us to have fewer people with commit access to the main repository. Stay tuned!" msgstr "Sie sollten sich bewusst sein, dass unser Projekt auf ein besser automatisiertes System hinarbeitet, um Patches zu überprüfen und zu mergen. Als Folge davon werden wir vielleicht weniger Leuten Commit-Zugriff auf das Haupt-Repository geben. Bleiben Sie auf dem Laufenden!" #. type: Plain text -#: guix-git/doc/contributing.texi:1478 +#: guix-git/doc/contributing.texi:1511 msgid "All commits that are pushed to the central repository on Savannah must be signed with an OpenPGP key, and the public key should be uploaded to your user account on Savannah and to public key servers, such as @code{keys.openpgp.org}. To configure Git to automatically sign commits, run:" msgstr "Alle Commits, die auf das zentrale Repository auf Savannah gepusht werden, müssen mit einem OpenPGP-Schlüssel signiert worden sein, und diesen öffentlichen Schlüssel sollten Sie auf Ihr Benutzerkonto auf Savannah und auf öffentliche Schlüsselserver wie @code{keys.openpgp.org} hochladen. Um Git so zu konfigurieren, dass es Commits automatisch signiert, führen Sie diese Befehle aus:" #. type: example -#: guix-git/doc/contributing.texi:1481 +#: guix-git/doc/contributing.texi:1514 #, no-wrap msgid "" "git config commit.gpgsign true\n" @@ -2167,7 +2210,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/contributing.texi:1484 +#: guix-git/doc/contributing.texi:1517 #, no-wrap msgid "" "# Substitute the fingerprint of your public PGP key.\n" @@ -2177,347 +2220,347 @@ msgstr "" "git config user.signingkey CABBA6EA1DC0FF33\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1489 +#: guix-git/doc/contributing.texi:1522 msgid "You can prevent yourself from accidentally pushing unsigned commits to Savannah by using the pre-push Git hook located at @file{etc/git/pre-push}:" msgstr "Sie können als Vorsichtsmaßnahme, um @emph{nicht} versehentlich unsignierte Commits auf Savannah zu pushen, den Pre-Push-Git-Hook benutzen, der sich unter @file{etc/git/pre-push} befindet:" #. type: example -#: guix-git/doc/contributing.texi:1492 +#: guix-git/doc/contributing.texi:1525 #, no-wrap msgid "cp etc/git/pre-push .git/hooks/pre-push\n" msgstr "cp etc/git/pre-push .git/hooks/pre-push\n" #. type: subsection -#: guix-git/doc/contributing.texi:1494 +#: guix-git/doc/contributing.texi:1527 #, no-wrap msgid "Commit Policy" msgstr "Commit-Richtlinie" #. type: Plain text -#: guix-git/doc/contributing.texi:1499 +#: guix-git/doc/contributing.texi:1532 msgid "If you get commit access, please make sure to follow the policy below (discussions of the policy can take place on @email{guix-devel@@gnu.org})." msgstr "Wenn Sie Commit-Zugriff erhalten, passen Sie bitte auf, dass Sie der folgenden Richtlinie folgen (Diskussionen über die Richtlinie können wir auf @email{guix-devel@@gnu.org} führen)." #. type: Plain text -#: guix-git/doc/contributing.texi:1504 +#: guix-git/doc/contributing.texi:1537 msgid "Non-trivial patches should always be posted to @email{guix-patches@@gnu.org} (trivial patches include fixing typos, etc.). This mailing list fills the patch-tracking database (@pxref{Tracking Bugs and Patches})." msgstr "Nichttriviale Patches sollten immer zuerst an @email{guix-patches@@gnu.org} geschickt werden (zu den trivialen Patches gehört zum Beispiel das Beheben von Schreibfehlern usw.). Was an diese Mailing-Liste geschickt wird, steht danach in der Patch-Datenbank (siehe @ref{Tracking Bugs and Patches})." #. type: Plain text -#: guix-git/doc/contributing.texi:1513 +#: guix-git/doc/contributing.texi:1546 msgid "For patches that just add a new package, and a simple one, it's OK to commit, if you're confident (which means you successfully built it in a chroot setup, and have done a reasonable copyright and license auditing). Likewise for package upgrades, except upgrades that trigger a lot of rebuilds (for example, upgrading GnuTLS or GLib). We have a mailing list for commit notifications (@email{guix-commits@@gnu.org}), so people can notice. Before pushing your changes, make sure to run @code{git pull --rebase}." msgstr "Bei Patches, die nur ein einziges neues Paket hinzufügen, das auch noch einfach ist, ist es in Ordnung, sie zu commiten, wenn Sie von von ihnen überzeugt sind (das bedeutet, Sie sollten es in einer chroot-Umgebung erstellt haben und Urheberrecht und Lizenzen mit angemessener Gründlichkeit geprüft haben). Für Paketaktualisierungen gilt dasselbe, außer die Aktualisierung hat viele Neuerstellungen zur Folge (wenn Sie zum Beispiel GnuTLS oder GLib aktualisieren). Wir haben eine Mailing-Liste für Commit-Benachrichtigungen (@email{guix-commits@@gnu.org}), damit andere sie bemerken. Bevor Sie Ihre Änderungen pushen, führen Sie @code{git pull --rebase} aus." #. type: Plain text -#: guix-git/doc/contributing.texi:1518 +#: guix-git/doc/contributing.texi:1551 msgid "When pushing a commit on behalf of somebody else, please add a @code{Signed-off-by} line at the end of the commit log message---e.g., with @command{git am --signoff}. This improves tracking of who did what." msgstr "Wenn Sie einen Commit für jemand anderen pushen, fügen Sie bitte eine @code{Signed-off-by}-Zeile am Ende der Commit-Log-Nachricht hinzu@tie{}— z.B.@: mit @command{git am --signoff}. Dadurch lässt es sich leichter überblicken, wer was getan hat." #. type: Plain text -#: guix-git/doc/contributing.texi:1522 +#: guix-git/doc/contributing.texi:1555 msgid "When adding channel news entries (@pxref{Channels, Writing Channel News}), make sure they are well-formed by running the following command right before pushing:" msgstr "Wenn Sie Kanalneuigkeiten hinzufügen (siehe @ref{Channels, Kanalneuigkeiten verfassen}), dann sollten Sie prüfen, dass diese wohlgeformt sind, indem Sie den folgenden Befehl direkt vor dem Pushen ausführen:" #. type: example -#: guix-git/doc/contributing.texi:1525 +#: guix-git/doc/contributing.texi:1558 #, no-wrap msgid "make check-channel-news\n" msgstr "make check-channel-news\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1531 +#: guix-git/doc/contributing.texi:1564 msgid "For anything else, please post to @email{guix-patches@@gnu.org} and leave time for a review, without committing anything (@pxref{Submitting Patches}). If you didn’t receive any reply after two weeks, and if you're confident, it's OK to commit." msgstr "Alles andere schicken Sie bitte an @email{guix-patches@@gnu.org} und warten eine Weile, ohne etwas zu commiten, damit andere Zeit haben, sich die Änderungen anzuschauen (siehe @ref{Submitting Patches}). Wenn Sie nach zwei Wochen keine Antwort erhalten haben und von den Änderungen überzeugt sind, ist es in Ordnung, sie zu commiten." #. type: Plain text -#: guix-git/doc/contributing.texi:1534 +#: guix-git/doc/contributing.texi:1567 msgid "That last part is subject to being adjusted, allowing individuals to commit directly on non-controversial changes on parts they’re familiar with." msgstr "Die letzten Anweisungen werden wir vielleicht noch ändern, damit man unstrittige Änderungen direkt commiten kann, wenn man mit von Änderungen betroffenen Teilen vertraut ist." #. type: subsection -#: guix-git/doc/contributing.texi:1535 +#: guix-git/doc/contributing.texi:1568 #, no-wrap msgid "Addressing Issues" msgstr "Mit Fehlern umgehen" #. type: Plain text -#: guix-git/doc/contributing.texi:1546 +#: guix-git/doc/contributing.texi:1579 msgid "Peer review (@pxref{Submitting Patches}) and tools such as @command{guix lint} (@pxref{Invoking guix lint}) and the test suite (@pxref{Running the Test Suite}) should catch issues before they are pushed. Yet, commits that ``break'' functionality might occasionally go through. When that happens, there are two priorities: mitigating the impact, and understanding what happened to reduce the chance of similar incidents in the future. The responsibility for both these things primarily lies with those involved, but like everything this is a group effort." msgstr "Durch Begutachten der von anderen eingereichten Patches („Peer-Review“, siehe @ref{Submitting Patches}) und durch Werkzeuge wie @command{guix lint} (siehe @ref{Invoking guix lint}) und den Testkatalog (siehe @ref{Running the Test Suite}) sollten Sie Fehler finden können, ehe sie gepusht wurden. Trotz allem kann es gelegentlich vorkommen, dass nicht bemerkt wird, wenn nach einem Commit etwas in Guix nicht mehr funktioniert. Wenn das passiert, haben zwei Dinge Vorrang: Schadensbegrenzung und Verstehen, was passiert ist, damit es nicht wieder zu vergleichbaren Fehlern kommt. Die Verantwortung dafür tragen in erster Linie die Beteiligten, aber wie bei allem anderen handelt es sich um eine Aufgabe der Gruppe." #. type: Plain text -#: guix-git/doc/contributing.texi:1551 +#: guix-git/doc/contributing.texi:1584 msgid "Some issues can directly affect all users---for instance because they make @command{guix pull} fail or break core functionality, because they break major packages (at build time or run time), or because they introduce known security vulnerabilities." msgstr "Manche Fehler können sofort alle Nutzer betreffen, etwa wenn @command{guix pull} dadurch nicht mehr funktioniert oder Kernfunktionen von Guix ausfallen, wenn wichtige Pakete nicht mehr funktionieren (zur Erstellungs- oder zur Laufzeit) oder wenn bekannte Sicherheitslücken eingeführt werden." #. type: cindex -#: guix-git/doc/contributing.texi:1552 +#: guix-git/doc/contributing.texi:1585 #, no-wrap msgid "reverting commits" msgstr "Revert von Commits" #. type: Plain text -#: guix-git/doc/contributing.texi:1558 +#: guix-git/doc/contributing.texi:1591 msgid "The people involved in authoring, reviewing, and pushing such commit(s) should be at the forefront to mitigate their impact in a timely fashion: by pushing a followup commit to fix it (if possible), or by reverting it to leave time to come up with a proper fix, and by communicating with other developers about the problem." msgstr "Die am Verfassen, Begutachten und Pushen von Commits Beteiligten sollten zu den ersten gehören, die für zeitnahe Schadensbegrenzung sorgen, indem sie mit einem nachfolgenden Commit („Follow-up“) den Fehler falls möglich beseitigen oder den vorherigen Commit rückgängig machen („Revert“), damit Zeit ist, das Problem auf ordentliche Weise zu beheben. Auch sollten sie das Problem mit anderen Entwicklern bereden." #. type: Plain text -#: guix-git/doc/contributing.texi:1564 +#: guix-git/doc/contributing.texi:1597 msgid "If these persons are unavailable to address the issue in time, other committers are entitled to revert the commit(s), explaining in the commit log and on the mailing list what the problem was, with the goal of leaving time to the original committer, reviewer(s), and author(s) to propose a way forward." msgstr "Wenn diese Personen nicht verfügbar sind, um den Fehler zeitnah zu beheben, steht es anderen Commitern zu, deren Commit(s) zu reverten und im Commit-Log und auf der Mailingliste zu erklären, was das Problem war. Ziel ist, dem oder den ursprünglichen Commiter(n), Begutachter(n) und Autoren mit mehr Zeit Gelegenheit zu geben, einen Vorschlag zum weiteren Vorgehen zu machen." #. type: Plain text -#: guix-git/doc/contributing.texi:1573 +#: guix-git/doc/contributing.texi:1606 msgid "Once the problem has been dealt with, it is the responsibility of those involved to make sure the situation is understood. If you are working to understand what happened, focus on gathering information and avoid assigning any blame. Do ask those involved to describe what happened, do not ask them to explain the situation---this would implicitly blame them, which is unhelpful. Accountability comes from a consensus about the problem, learning from it and improving processes so that it's less likely to reoccur." msgstr "Wenn das Problem erledigt wurde, müssen die Beteiligten ein Verständnis für die Situation sicherstellen. Während Sie sich um Verständnis bemühen, legen Sie den Fokus auf das Sammeln von Informationen und vermeiden Sie Schuldzuweisungen. Lassen Sie die Beteiligten beschreiben, was passiert ist, aber bitten Sie sie nicht, die Situation zu erklären, weil ihnen das implizit Schuld zuspricht, was nicht hilfreich ist. Verantwortung ergibt sich aus Einigkeit über das Problem, dass man daraus lernt und die Prozesse verbessert, damit es nicht wieder vorkommt." #. type: subsection -#: guix-git/doc/contributing.texi:1574 +#: guix-git/doc/contributing.texi:1607 #, no-wrap msgid "Commit Revocation" msgstr "Entzug des Commit-Zugriffs" #. type: Plain text -#: guix-git/doc/contributing.texi:1581 +#: guix-git/doc/contributing.texi:1614 msgid "In order to reduce the possibility of mistakes, committers will have their Savannah account removed from the Guix Savannah project and their key removed from @file{.guix-authorizations} after 12 months of inactivity; they can ask to regain commit access by emailing the maintainers, without going through the vouching process." msgstr "Damit es weniger wahrscheinlich ist, dass Fehler passieren, werden wir das Savannah-Konto von Commitern nach 12 Monaten der Inaktivität aus dem Guix-Projekt bei Savannah löschen und ihren Schlüssel aus @file{.guix-authorizations} entfernen. Solche Commiter können den Betreuern eine E-Mail schicken, um ohne einen Durchlauf des Fürsprecherprozesses wieder Commit-Zugriff zu bekommen." #. type: Plain text -#: guix-git/doc/contributing.texi:1591 +#: guix-git/doc/contributing.texi:1624 msgid "Maintainers@footnote{See @uref{https://guix.gnu.org/en/about} for the current list of maintainers. You can email them privately at @email{guix-maintainers@@gnu.org}.} may also revoke an individual's commit rights, as a last resort, if cooperation with the rest of the community has caused too much friction---even within the bounds of the project's code of conduct (@pxref{Contributing}). They would only do so after public or private discussion with the individual and a clear notice. Examples of behavior that hinders cooperation and could lead to such a decision include:" msgstr "Betreuer@footnote{Siehe @uref{https://guix.gnu.org/en/about} für eine Liste der Betreuer. Sie können ihnen eine private E-Mail schicken an @email{guix-maintainers@@gnu.org}.} dürfen als letzten Ausweg auch jemandem die Commit-Berechtigung entziehen, wenn die Zusammenarbeit mit der übrigen Gemeinde zu viel Reibung erzeugt hat@tie{}— selbst wenn sich alles im Rahmen der Verhaltensregeln abgespielt hat (siehe @ref{Contributing}). Davon machen Betreuer nur Gebrauch nach öffentlichen oder privaten Diskussionen mit der betroffenen Person und nach eindeutiger Ankündigung. Beispiele für Verhalten, das die Zusammenarbeit behindert und zu so einer Entscheidung führen könnte, sind:" #. type: item -#: guix-git/doc/contributing.texi:1593 +#: guix-git/doc/contributing.texi:1626 #, no-wrap msgid "repeated violation of the commit policy stated above;" msgstr "wiederholte Verletzung der oben beschriebenen Commit-Richtlinie," #. type: item -#: guix-git/doc/contributing.texi:1594 +#: guix-git/doc/contributing.texi:1627 #, no-wrap msgid "repeated failure to take peer criticism into account;" msgstr "wiederholtes Ignorieren von Kritik anderer Entwickler," #. type: item -#: guix-git/doc/contributing.texi:1595 +#: guix-git/doc/contributing.texi:1628 #, no-wrap msgid "breaching trust through a series of grave incidents." msgstr "verletztes Vertrauen durch mehrere schwere Vorkommnisse in Folge." #. type: Plain text -#: guix-git/doc/contributing.texi:1602 +#: guix-git/doc/contributing.texi:1635 msgid "When maintainers resort to such a decision, they notify developers on @email{guix-devel@@gnu.org}; inquiries may be sent to @email{guix-maintainers@@gnu.org}. Depending on the situation, the individual may still be welcome to contribute." msgstr "Wenn Betreuer diesen Entschluss treffen, benachrichtigen sie die Entwickler auf @email{guix-devel@@gnu.org}; Anfragen können an @email{guix-maintainers@@gnu.org} gesendet werden. Abhängig von der Situation wird ein Mitwirken der Betroffenen trotzdem weiterhin gerne gesehen." #. type: subsection -#: guix-git/doc/contributing.texi:1603 +#: guix-git/doc/contributing.texi:1636 #, no-wrap msgid "Helping Out" msgstr "Aushelfen" #. type: Plain text -#: guix-git/doc/contributing.texi:1610 +#: guix-git/doc/contributing.texi:1643 msgid "One last thing: the project keeps moving forward because committers not only push their own awesome changes, but also offer some of their time @emph{reviewing} and pushing other people's changes. As a committer, you're welcome to use your expertise and commit rights to help other contributors, too!" msgstr "Eine Sache noch: Das Projekt entwickelt sich nicht nur deswegen schnell, weil Commiter ihre eigenen tollen Änderungen pushen, sondern auch, weil sie sich Zeit nehmen, die Änderungen anderer Leute in „Reviews“ zu @emph{überprüfen} und zu pushen. Als Commiter begrüßen wir es, wenn Sie Ihre Expertise und Commit-Rechte dafür einsetzen, auch anderen Mitwirkenden zu helfen!" #. type: cindex -#: guix-git/doc/contributing.texi:1614 +#: guix-git/doc/contributing.texi:1647 #, no-wrap msgid "update-guix-package, updating the guix package" msgstr "update-guix-package, Guix-Paket aktualisieren" #. type: Plain text -#: guix-git/doc/contributing.texi:1620 +#: guix-git/doc/contributing.texi:1653 msgid "It is sometimes desirable to update the @code{guix} package itself (the package defined in @code{(gnu packages package-management)}), for example to make new daemon features available for use by the @code{guix-service-type} service type. In order to simplify this task, the following command can be used:" msgstr "Manchmal möchte man die für das Paket @code{guix} (wie es in @code{(gnu packages package-management)} definiert ist) verwendete Version auf eine neuere Version aktualisieren, zum Beispiel um neue Funktionalitäten des Daemons dem Diensttyp @code{guix-service-type} zugänglich zu machen. Um diese Arbeit zu erleichtern, kann folgender Befehl benutzt werden:" #. type: example -#: guix-git/doc/contributing.texi:1623 +#: guix-git/doc/contributing.texi:1656 #, no-wrap msgid "make update-guix-package\n" msgstr "make update-guix-package\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1630 +#: guix-git/doc/contributing.texi:1663 msgid "The @code{update-guix-package} make target will use the last known @emph{commit} corresponding to @code{HEAD} in your Guix checkout, compute the hash of the Guix sources corresponding to that commit and update the @code{commit}, @code{revision} and hash of the @code{guix} package definition." msgstr "Das make-Ziel @code{update-guix-package} wird den neuesten bekannten @emph{Commit}, also den, der @code{HEAD} in Ihrem Guix-Checkout entspricht, verwenden, den Hash des zugehörigen Quellbaums berechnen und die Einträge für @code{commit}, @code{revision} und den Hash in der Paketdefinition von @code{guix} anpassen." #. type: Plain text -#: guix-git/doc/contributing.texi:1634 +#: guix-git/doc/contributing.texi:1667 msgid "To validate that the updated @code{guix} package hashes are correct and that it can be built successfully, the following command can be run from the directory of your Guix checkout:" msgstr "Um zu prüfen, dass das aktualisierte @code{guix}-Paket die richtigen Hashes benutzt und erfolgreich erstellt werden kann, können Sie den folgenden Befehl aus dem Verzeichnis Ihres Guix-Checkouts heraus ausführen:" #. type: example -#: guix-git/doc/contributing.texi:1637 +#: guix-git/doc/contributing.texi:1670 #, no-wrap msgid "./pre-inst-env guix build guix\n" msgstr "./pre-inst-env guix build guix\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1642 +#: guix-git/doc/contributing.texi:1675 msgid "To guard against accidentally updating the @code{guix} package to a commit that others can't refer to, a check is made that the commit used has already been pushed to the Savannah-hosted Guix git repository." msgstr "Als Schutz vor einer versehentlichen Aktualisierung des @code{guix}-Pakets auf einen Commit, den andere Leute gar nicht haben, wird dabei geprüft, ob der benutzte Commit bereits im bei Savannah angebotenen Guix-Git-Repository vorliegt." #. type: Plain text -#: guix-git/doc/contributing.texi:1647 +#: guix-git/doc/contributing.texi:1680 msgid "This check can be disabled, @emph{at your own peril}, by setting the @code{GUIX_ALLOW_ME_TO_USE_PRIVATE_COMMIT} environment variable. When this variable is set, the updated package source is also added to the store. This is used as part of the release process of Guix." msgstr "Diese Prüfung können Sie @emph{auf eigene Gefahr hin} abschalten, indem Sie die Umgebungsvariable @code{GUIX_ALLOW_ME_TO_USE_PRIVATE_COMMIT} setzen. Wenn diese Variable gesetzt ist, wird der aktualisierte Paketquellcode außerdem in den Store eingefügt. Dies stellt einen Teil des Prozesses zur Veröffentlichung neuer Versionen von Guix dar." #. type: cindex -#: guix-git/doc/contributing.texi:1648 +#: guix-git/doc/contributing.texi:1681 #, no-wrap msgid "translation" msgstr "Übersetzung" #. type: cindex -#: guix-git/doc/contributing.texi:1649 +#: guix-git/doc/contributing.texi:1682 #, no-wrap msgid "l10n" msgstr "l10n" #. type: cindex -#: guix-git/doc/contributing.texi:1650 +#: guix-git/doc/contributing.texi:1683 #, no-wrap msgid "i18n" msgstr "i18n" #. type: cindex -#: guix-git/doc/contributing.texi:1651 +#: guix-git/doc/contributing.texi:1684 #, no-wrap msgid "native language support" msgstr "Native Language Support" #. type: Plain text -#: guix-git/doc/contributing.texi:1661 +#: guix-git/doc/contributing.texi:1694 msgid "Writing code and packages is not the only way to provide a meaningful contribution to Guix. Translating to a language you speak is another example of a valuable contribution you can make. This section is designed to describe the translation process. It gives you advice on how you can get involved, what can be translated, what mistakes you should avoid and what we can do to help you!" msgstr "Softwareentwicklung und Paketierung sind nicht die einzigen Möglichkeiten, um bedeutsam zu Guix beizutragen. Übersetzungen in andere Sprachen sind auch ein wertvoller Beitrag. In diesem Abschnitt ist der Übersetzungsprozess beschrieben, mit Hinweisen dazu wie du mitmachen kannst, was übersetzt werden kann, welche Fehler du vermeiden solltest und wie wir dich unterstützen können." #. type: Plain text -#: guix-git/doc/contributing.texi:1667 +#: guix-git/doc/contributing.texi:1700 msgid "Guix is a big project that has multiple components that can be translated. We coordinate the translation effort on a @uref{https://translate.fedoraproject.org/projects/guix/,Weblate instance} hosted by our friends at Fedora. You will need an account to submit translations." msgstr "Guix ist ein großes Projekt und hat mehrere Komponenten, die übersetzt werden können. Wir koordinieren die Arbeit an der Übersetzung auf einer @uref{https://translate.fedoraproject.org/projects/guix/,Weblate-Instanz}, die von unseren Freunden bei Fedora zur Verfügung gestellt wird. Sie brauchen dort ein Konto, um Übersetzungen einzureichen." #. type: Plain text -#: guix-git/doc/contributing.texi:1674 +#: guix-git/doc/contributing.texi:1707 msgid "Some of the software packaged in Guix also contain translations. We do not host a translation platform for them. If you want to translate a package provided by Guix, you should contact their developers or find the information on their website. As an example, you can find the homepage of the @code{hello} package by typing @code{guix show hello}. On the ``homepage'' line, you will see @url{https://www.gnu.org/software/hello/} as the homepage." msgstr "Manche mit Guix auslieferbaren Pakete verfügen auch über Übersetzungen. An deren Übersetzungsplattform sind wir nicht beteiligt. Wenn Sie ein in Guix angebotenes Paket übersetzen möchten, sollten Sie mit dessen Entwicklern in Kontakt treten oder auf deren Webauftritt nach Informationen suchen. Sie können die Homepage zum Beispiel des @code{hello}-Pakets finden, indem Sie @code{guix show hello} ausführen. Auf der Zeile „homepage“ sehen Sie, dass @url{https://www.gnu.org/software/hello/} die Homepage ist." #. type: Plain text -#: guix-git/doc/contributing.texi:1679 +#: guix-git/doc/contributing.texi:1712 msgid "Many GNU and non-GNU packages can be translated on the @uref{https://translationproject.org,Translation Project}. Some projects with multiple components have their own platform. For instance, GNOME has its own platform, @uref{https://l10n.gnome.org/,Damned Lies}." msgstr "Viele GNU-Pakete und Nicht-GNU-Pakete können beim @uref{https://translationproject.org,Translation Project} übersetzt werden. Manche Projekte, die aus mehreren Komponenten bestehen, haben ihre eigene Plattform. Zum Beispiel hat GNOME die Übersetzungsplattform @uref{https://l10n.gnome.org/,Damned Lies}." #. type: Plain text -#: guix-git/doc/contributing.texi:1681 +#: guix-git/doc/contributing.texi:1714 msgid "Guix has five components hosted on Weblate." msgstr "Guix hat fünf Komponenten, die auf Weblate übersetzt werden können." #. type: item -#: guix-git/doc/contributing.texi:1683 +#: guix-git/doc/contributing.texi:1716 #, no-wrap msgid "@code{guix} contains all the strings from the Guix software (the" msgstr "@code{guix} umfasst alle Zeichenketten der Guix-Software (also das" #. type: itemize -#: guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1718 msgid "guided system installer, the package manager, etc), excluding packages." msgstr "geführte Installationsprogramm, die Paketverwaltung etc.) außer den Paketen." #. type: item -#: guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1718 #, no-wrap msgid "@code{packages} contains the synopsis (single-sentence description" msgstr "@code{packages} enthält die Zusammenfassungen (einzeilige Kurzbeschreibung)" #. type: itemize -#: guix-git/doc/contributing.texi:1687 +#: guix-git/doc/contributing.texi:1720 msgid "of a package) and description (longer description) of packages in Guix." msgstr "und die ausführlicheren Beschreibungen der Pakete in Guix." #. type: item -#: guix-git/doc/contributing.texi:1687 +#: guix-git/doc/contributing.texi:1720 #, no-wrap msgid "@code{website} contains the official Guix website, except for" msgstr "@code{website} enthält den offiziellen Webauftritt von Guix außer" #. type: itemize -#: guix-git/doc/contributing.texi:1689 +#: guix-git/doc/contributing.texi:1722 msgid "blog posts and multimedia content." msgstr "Blogeinträgen und Multimedia." #. type: item -#: guix-git/doc/contributing.texi:1689 +#: guix-git/doc/contributing.texi:1722 #, no-wrap msgid "@code{documentation-manual} corresponds to this manual." msgstr "@code{documentation-manual} entspricht diesem Handbuch." #. type: item -#: guix-git/doc/contributing.texi:1690 +#: guix-git/doc/contributing.texi:1723 #, no-wrap msgid "@code{documentation-cookbook} is the component for the cookbook." msgstr "@code{documentation-cookbook} ist die Komponente für das Kochbuch." #. type: subsubheading -#: guix-git/doc/contributing.texi:1693 +#: guix-git/doc/contributing.texi:1726 #, no-wrap msgid "General Directions" msgstr "Wie Sie allgemein vorgehen" #. type: Plain text -#: guix-git/doc/contributing.texi:1701 +#: guix-git/doc/contributing.texi:1734 msgid "Once you get an account, you should be able to select a component from @uref{https://translate.fedoraproject.org/projects/guix/,the guix project}, and select a language. If your language does not appear in the list, go to the bottom and click on the ``Start new translation'' button. Select the language you want to translate to from the list, to start your new translation." msgstr "Sobald Sie ein Konto haben, sollten Sie eine Komponente des @uref{https://translate.fedoraproject.org/projects/guix/,Guix-Projekts} und eine Sprache auswählen können. Wenn Ihre Sprache in der Liste fehlt, gehen Sie ans Ende und klicken Sie auf den „Neue Übersetzung starten“-Knopf. Nachdem Sie die Sprache, in die Sie übersetzen möchten, ausgewählt haben, wird eine neue Übersetzung angelegt." #. type: Plain text -#: guix-git/doc/contributing.texi:1706 +#: guix-git/doc/contributing.texi:1739 msgid "Like lots of other free software packages, Guix uses @uref{https://www.gnu.org/software/gettext,GNU Gettext} for its translations, with which translatable strings are extracted from the source code to so-called PO files." msgstr "Wie zahlreiche andere Freie-Software-Pakete benutzt Guix @uref{https://www.gnu.org/software/gettext,GNU Gettext} für seine Übersetzungen. Damit werden übersetzbare Zeichenketten aus dem Quellcode in sogenannte PO-Dateien extrahiert." #. type: Plain text -#: guix-git/doc/contributing.texi:1717 +#: guix-git/doc/contributing.texi:1750 msgid "Even though PO files are text files, changes should not be made with a text editor but with PO editing software. Weblate integrates PO editing functionality. Alternatively, translators can use any of various free-software tools for filling in translations, of which @uref{https://poedit.net/,Poedit} is one example, and (after logging in) @uref{https://docs.weblate.org/en/latest/user/files.html,upload} the changed file. There is also a special @uref{https://www.emacswiki.org/emacs/PoMode,PO editing mode} for users of GNU Emacs. Over time translators find out what software they are happy with and what features they need." msgstr "Obwohl es sich bei PO-Dateien um Textdateien handelt, sollten Änderungen nicht mit einem Texteditor vorgenommen werden, sondern mit Software eigens zum Bearbeiten von PO-Dateien. In Weblate sind PO-Bearbeitungsfunktionen integriert. Alternativ haben Übersetzer die Wahl zwischen vielen Freie-Software-Werkzeugen zum Eintragen von Übersetzungen; ein Beispiel ist @uref{https://poedit.net/,Poedit}. Nachdem Sie sich angemeldet haben, @uref{https://docs.weblate.org/en/latest/user/files.html,laden} Sie die geänderte Datei in Weblate hoch. Es gibt auch einen speziellen @uref{https://www.emacswiki.org/emacs/PoMode,PO-Bearbeitungsmodus} für Nutzer von GNU Emacs. Mit der Zeit finden Übersetzer heraus, welche Software sie bevorzugen und welche die Funktionen bietet, die sie brauchen." #. type: Plain text -#: guix-git/doc/contributing.texi:1722 +#: guix-git/doc/contributing.texi:1755 msgid "On Weblate, you will find various links to the editor, that will show various subsets (or all) of the strings. Have a look around and at the @uref{https://docs.weblate.org/en/latest/,documentation} to familiarize yourself with the platform." msgstr "In Weblate finden Sie an vielen Stellen Verweise auf den Editor, um Teilmengen der Zeichenketten oder alle davon zu übersetzen. Sehen Sie sich um und werfen Sie einen Blick auf Weblates @uref{https://docs.weblate.org/en/latest/,Dokumentation}, um sich mit der Plattform vertraut zu machen." #. type: subsubheading -#: guix-git/doc/contributing.texi:1723 +#: guix-git/doc/contributing.texi:1756 #, no-wrap msgid "Translation Components" msgstr "Übersetzungskomponenten" #. type: Plain text -#: guix-git/doc/contributing.texi:1728 +#: guix-git/doc/contributing.texi:1761 msgid "In this section, we provide more detailed guidance on the translation process, as well as details on what you should or should not do. When in doubt, please contact us, we will be happy to help!" msgstr "In diesem Abschnitt erklären wir den Übersetzungsprozess genau und geben Details, was Sie tun sollten und was nicht. Im Zweifelsfall kontaktieren Sie uns bitte; wir helfen gerne!" #. type: item -#: guix-git/doc/contributing.texi:1730 guix-git/doc/guix.texi:9420 +#: guix-git/doc/contributing.texi:1763 guix-git/doc/guix.texi:9734 #, no-wrap msgid "guix" msgstr "guix" #. type: table -#: guix-git/doc/contributing.texi:1735 +#: guix-git/doc/contributing.texi:1768 msgid "Guix is written in the Guile programming language, and some strings contain special formatting that is interpreted by Guile. These special formatting should be highlighted by Weblate. They start with @code{~} followed by one or more characters." msgstr "Guix ist in der Programmiersprache Guile geschrieben und manche Zeichenketten enthalten besondere Formatzeichen, die von Guile interpretiert werden. Weblate sollte diese besonderen Formatzeichen hervorheben. Sie beginnen mit @code{~} gefolgt von einem oder mehreren Zeichen." #. type: table -#: guix-git/doc/contributing.texi:1744 +#: guix-git/doc/contributing.texi:1777 msgid "When printing the string, Guile replaces the special formatting symbols with actual values. For instance, the string @samp{ambiguous package specification `~a'} would be substituted to contain said package specification instead of @code{~a}. To properly translate this string, you must keep the formatting code in your translation, although you can place it where it makes sense in your language. For instance, the French translation says @samp{spécification du paquet « ~a » ambiguë} because the adjective needs to be placed in the end of the sentence." msgstr "Beim Anzeigen der Zeichenkette ersetzt Guile die speziellen Formatierungsmuster durch echte Werte. Zum Beispiel würde in die Zeichenkette @samp{ambiguous package specification `~a'} die Paketspezifikation anstelle von @code{~a} eingesetzt. Um die Zeichenkette richtig zu übersetzen, müssen Sie den Formatierungscode in Ihrer Übersetzung erhalten, aber Sie können ihn an die in Ihrer Sprache passenden Stelle in der Übersetzung verlegen. Die französische Übersetzung ist zum Beispiel @samp{spécification du paquet « ~a » ambiguë}, weil das Adjektiv dort ans Ende vom Satz gehört." #. type: table -#: guix-git/doc/contributing.texi:1748 +#: guix-git/doc/contributing.texi:1781 msgid "If there are multiple formatting symbols, make sure to respect the order. Guile does not know in which order you intended the string to be read, so it will substitute the symbols in the same order as the English sentence." msgstr "Wenn mehrere Formatsymbole vorkommen, sollten Sie darauf achten, die Reihenfolge beizubehalten. Guile weiß nicht, in welcher Reihenfolge die eingesetzten Symbole auftauchen sollen, also setzt es sie in derselben Abfolge wie im englischen Satz ein." #. type: table -#: guix-git/doc/contributing.texi:1756 +#: guix-git/doc/contributing.texi:1789 msgid "As an example, you cannot translate @samp{package '~a' has been superseded by '~a'} by @samp{'~a' superseeds package '~a'}, because the meaning would be reversed. If @var{foo} is superseded by @var{bar}, the translation would read @samp{'foo' superseeds package 'bar'}. To work around this problem, it is possible to use more advanced formatting to select a given piece of data, instead of following the default English order. @xref{Formatted Output,,, guile, GNU Guile Reference Manual}, for more information on formatting in Guile." msgstr "Es geht zum Beispiel @emph{nicht}, den Satz @samp{package '~a' has been superseded by '~a'} wie @samp{'~a' superseeds package '~a'} zu übersetzen, weil die Bedeutung umgekehrt wäre. Wenn @var{foo} durch @var{bar} abgelöst wird, würde die Übersetzung behaupten, @samp{„foo“ löst Paket „bar“ ab}. Um dieses Problem zu umgehen, ist es möglich, fortgeschrittene Formatierung einzusetzen, mit der ein bestimmtes Datum ausgewählt wird statt der englischen Reihenfolge zu folgen. Siehe @ref{Formatted Output,,, guile, Referenzhandbuch zu GNU Guile} für weitere Informationen zu formatierter Ausgabe in Guile." @@ -2525,98 +2568,98 @@ msgstr "Es geht zum Beispiel @emph{nicht}, den Satz @samp{package '~a' has been #. type: item #. #-#-#-#-# guix.pot (guix manual checkout) #-#-#-#-# #. type: cindex -#: guix-git/doc/contributing.texi:1757 guix-git/doc/guix.texi:2988 +#: guix-git/doc/contributing.texi:1790 guix-git/doc/guix.texi:3005 #, no-wrap msgid "packages" msgstr "Pakete" #. type: table -#: guix-git/doc/contributing.texi:1762 +#: guix-git/doc/contributing.texi:1795 msgid "Package descriptions occasionally contain Texinfo markup (@pxref{Synopses and Descriptions}). Texinfo markup looks like @samp{@@code@{rm -rf@}}, @samp{@@emph@{important@}}, etc. When translating, please leave markup as is." msgstr "Manchmal trifft man in einer Paketbeschreibung auf in Texinfo-Markup ausgezeichnete Wörter (siehe @ref{Synopses and Descriptions}). Texinfo-Auszeichnungen sehen aus wie @samp{@@code@{rm -rf@}}, @samp{@@emph@{important@}} usw. Wenn Sie übersetzen, belassen Sie Auszeichnungen bitte, wie sie sind." #. type: table -#: guix-git/doc/contributing.texi:1771 +#: guix-git/doc/contributing.texi:1804 msgid "The characters after ``@@'' form the name of the markup, and the text between ``@{'' and ``@}'' is its content. In general, you should not translate the content of markup like @code{@@code}, as it contains literal code that do not change with language. You can translate the content of formatting markup such as @code{@@emph}, @code{@@i}, @code{@@itemize}, @code{@@item}. However, do not translate the name of the markup, or it will not be recognized. Do not translate the word after @code{@@end}, it is the name of the markup that is closed at this position (e.g.@: @code{@@itemize ... @@end itemize})." msgstr "Die „@@“ nachfolgenden Zeichen bilden den Namen der Auszeichnung und der Text zwischen „@{“ und „@}“ ist deren Inhalt. Im Allgemeinen sollten Sie @emph{nicht} den Inhalt von Auszeichnungen wie @code{@@code} übersetzen, weil Code wortwörtlich so aussehen muss und sich @emph{nicht} mit der Sprache ändert. Dagegen können Sie den Inhalt von zur Formatierung dienenden Auszeichnungen wie @code{@@emph}, @code{@@i}, @code{@@itemize}, @code{@@item} durchaus ändern. Übersetzen Sie aber @emph{nicht} den Namen der Auszeichnung, sonst wird sie nicht erkannt. Übersetzen Sie @emph{nicht} das auf @code{@@end} folgende Wort, denn es ist der Name der Auszeichnung, die an dieser Position geschlossen wird (z.B.@: @code{@@itemize … @@end itemize})." #. type: item -#: guix-git/doc/contributing.texi:1772 +#: guix-git/doc/contributing.texi:1805 #, no-wrap msgid "documentation-manual and documentation-cookbook" msgstr "documentation-manual und documentation-cookbook" #. type: table -#: guix-git/doc/contributing.texi:1776 +#: guix-git/doc/contributing.texi:1809 msgid "The first step to ensure a successful translation of the manual is to find and translate the following strings @emph{first}:" msgstr "Der erste Schritt für eine erfolgreiche Übersetzung des Handbuchs ist, folgende Zeichenketten @emph{als Erstes} zu finden und zu übersetzen:" #. type: item -#: guix-git/doc/contributing.texi:1778 +#: guix-git/doc/contributing.texi:1811 #, no-wrap msgid "@code{version.texi}: Translate this string as @code{version-xx.texi}," msgstr "@code{version.texi}: Übersetzen Sie diese Zeichenkette mit @code{version-xx.texi}" #. type: itemize -#: guix-git/doc/contributing.texi:1781 +#: guix-git/doc/contributing.texi:1814 msgid "where @code{xx} is your language code (the one shown in the URL on weblate)." msgstr "wobei @code{xx} Ihr Sprachcode ist (wie er in der URL auf Weblate steht)." #. type: item -#: guix-git/doc/contributing.texi:1781 +#: guix-git/doc/contributing.texi:1814 #, no-wrap msgid "@code{contributing.texi}: Translate this string as" msgstr "@code{contributing.texi}: Übersetzen Sie diese Zeichenkette mit" #. type: itemize -#: guix-git/doc/contributing.texi:1783 +#: guix-git/doc/contributing.texi:1816 msgid "@code{contributing.xx.texi}, where @code{xx} is the same language code." msgstr "@code{contributing.xx.texi}, wobei @code{xx} derselbe Sprachcode ist." #. type: item -#: guix-git/doc/contributing.texi:1783 +#: guix-git/doc/contributing.texi:1816 #, no-wrap msgid "@code{Top}: Do not translate this string, it is important for Texinfo." msgstr "@code{Top}: Übersetzen Sie diese Zeichenkette @emph{nicht}; sie ist wichtig für Texinfo." #. type: itemize -#: guix-git/doc/contributing.texi:1786 +#: guix-git/doc/contributing.texi:1819 msgid "If you translate it, the document will be empty (missing a Top node). Please look for it, and register @code{Top} as its translation." msgstr "Würden Sie sie übersetzen, würde das Dokument leer (weil ein Top-Knoten fehlt). Bitte suchen Sie die Zeichenkette und tragen Sie @code{Top} als Übersetzung ein." #. type: table -#: guix-git/doc/contributing.texi:1791 +#: guix-git/doc/contributing.texi:1824 msgid "Translating these strings first ensure we can include your translation in the guix repository without breaking the make process or the @command{guix pull} machinery." msgstr "Wenn diese Zeichenketten als erste ausgefüllt wurden, ist gewährleistet, dass wir die Übersetzung ins Guix-Repository übernehmen können, ohne dass der make-Vorgang oder die Maschinerie hinter @command{guix pull} zusammenbricht." #. type: table -#: guix-git/doc/contributing.texi:1798 +#: guix-git/doc/contributing.texi:1831 msgid "The manual and the cookbook both use Texinfo. As for @code{packages}, please keep Texinfo markup as is. There are more possible markup types in the manual than in the package descriptions. In general, do not translate the content of @code{@@code}, @code{@@file}, @code{@@var}, @code{@@value}, etc. You should translate the content of formatting markup such as @code{@@emph}, @code{@@i}, etc." msgstr "Das Handbuch und das Kochbuch verwenden beide Texinfo. Wie bei @code{packages} belassen Sie Texinfo-Auszeichnungen bitte so, wie sie sind. Im Handbuch gibt es mehr mögliche Auszeichnungstypen als in den Paketbeschreibungen. Im Allgemeinen sollten Sie den Inhalt von @code{@@code}, @code{@@file}, @code{@@var}, @code{@@value} usw.@: @emph{nicht} übersetzen. Sie sollten aber den Inhalt von Formatierungsauszeichnungen wie @code{@@emph}, @code{@@i} usw.@: übersetzen." #. type: table -#: guix-git/doc/contributing.texi:1806 +#: guix-git/doc/contributing.texi:1839 msgid "The manual contains sections that can be referred to by name by @code{@@ref}, @code{@@xref} and @code{@@pxref}. We have a mechanism in place so you do not have to translate their content. If you keep the English title, we will automatically replace it with your translation of that title. This ensures that Texinfo will always be able to find the node. If you decide to change the translation of the title, the references will automatically be updated and you will not have to update them all yourself." msgstr "Das Handbuch enthält Abschnitte, auf die man anhand ihres Namens mit @code{@@ref}, @code{@@xref} und @code{@@pxref} verweisen kann. Wir haben einen Mechanismus eingebaut, damit Sie deren Inhalt @emph{nicht} übersetzen müssen. Lassen Sie einfach den englischen Titel stehen, dann werden wir ihn automatisch durch Ihre Übersetzung des Titels ersetzen. So wird garantiert, dass Texinfo den Knoten auf jeden Fall finden kann. Wenn Sie später die Übersetzung ändern, ändern sich die Verweise darauf automatisch mit und Sie müssen sie nicht alle selbst anpassen." #. type: table -#: guix-git/doc/contributing.texi:1816 +#: guix-git/doc/contributing.texi:1849 msgid "When translating references from the cookbook to the manual, you need to replace the name of the manual and the name of the section. For instance, to translate @code{@@pxref@{Defining Packages,,, guix, GNU Guix Reference Manual@}}, you would replace @code{Defining Packages} with the title of that section in the translated manual @emph{only} if that title is translated. If the title is not translated in your language yet, do not translate it here, or the link will be broken. Replace @code{guix} with @code{guix.xx} where @code{xx} is your language code. @code{GNU Guix Reference Manual} is the text of the link. You can translate it however you wish." msgstr "Nur wenn Sie Verweise vom Kochbuch auf das Handbuch übersetzen, dann müssen Sie den Namen des Handbuchs und den Namen des Abschnitts ersetzen. Zum Beispiel übersetzen Sie @code{@@pxref@{Defining Packages,,, guix, GNU Guix Reference Manual@}}, indem Sie @code{Defining Packages} durch den Titel dieses Abschnittes im übersetzten Handbuch ersetzen, aber @emph{nur dann}, wenn der Titel bereits übersetzt wurde. Wenn er nicht übersetzt wurde, dann übersetzen Sie ihn auch hier @emph{nicht}, sonst funktioniert der Verweis nicht. Schreiben Sie @code{guix.xx} statt @code{guix}, wobei @code{xx} Ihr Sprachcode ist. Bei @code{GNU Guix Reference Manual} handelt es sich um den Text, mit dem der Verweis angezeigt wird. Übersetzen Sie ihn wie immer Sie mögen." #. type: item -#: guix-git/doc/contributing.texi:1817 +#: guix-git/doc/contributing.texi:1850 #, no-wrap msgid "website" msgstr "website" #. type: table -#: guix-git/doc/contributing.texi:1824 +#: guix-git/doc/contributing.texi:1857 msgid "The website pages are written using SXML, an s-expression version of HTML, the basic language of the web. We have a process to extract translatable strings from the source, and replace complex s-expressions with a more familiar XML markup, where each markup is numbered. Translators can arbitrarily change the ordering, as in the following example." msgstr "Die Seiten des Webauftritts sind in SXML geschrieben, einer Version von HTML, der Grundlage des Webs, aber mit S-Ausdrücken. Wir haben einen Prozess, um übersetzbare Zeichenketten aus dem Quellcode zu extrahieren und komplexe S-Ausdrücke als vertrautere XML-Auszeichnungen darzustellen. Dabei werden die Auszeichnungen nummeriert. Übersetzer können deren Reihenfolge nach Belieben ändern, wie im folgenden Beispiel zu sehen ist." #. type: example -#: guix-git/doc/contributing.texi:1831 +#: guix-git/doc/contributing.texi:1864 #, no-wrap msgid "" "#. TRANSLATORS: Defining Packages is a section name\n" @@ -2632,138 +2675,138 @@ msgstr "" "msgstr \"Pakete werden als reine <2>Guile-Module <1>definiert<1.1>de<1.2>Pakete-definieren.html.\"\n" #. type: table -#: guix-git/doc/contributing.texi:1834 +#: guix-git/doc/contributing.texi:1867 msgid "Note that you need to include the same markups. You cannot skip any." msgstr "Allerdings müssen Sie dieselben Auszeichnungen verwenden. Sie können keine weglassen." #. type: Plain text -#: guix-git/doc/contributing.texi:1842 +#: guix-git/doc/contributing.texi:1875 msgid "In case you make a mistake, the component might fail to build properly with your language, or even make guix pull fail. To prevent that, we have a process in place to check the content of the files before pushing to our repository. We will not be able to update the translation for your language in Guix, so we will notify you (through weblate and/or by email) so you get a chance to fix the issue." msgstr "Wenn Ihnen ein Fehler unterläuft, kann die Komponente in Ihrer Sprache womöglich @emph{nicht} erstellt werden oder guix pull kann sogar fehlschlagen. Um dies zu verhindern, haben wir einen Prozess, um den Inhalt der Dateien vor einem Push auf das Repository zu überprüfen. In so einem Fall werden wir die Übersetzung für Ihre Sprache @emph{nicht} aktualisieren können und werden Sie deshalb benachrichtigen (über Weblate und/oder eine E-Mail), damit Sie die Möglichkeit bekommen, das Problem zu beheben." #. type: subsubheading -#: guix-git/doc/contributing.texi:1843 +#: guix-git/doc/contributing.texi:1876 #, no-wrap msgid "Outside of Weblate" msgstr "Abseits von Weblate" #. type: Plain text -#: guix-git/doc/contributing.texi:1846 +#: guix-git/doc/contributing.texi:1879 msgid "Currently, some parts of Guix cannot be translated on Weblate, help wanted!" msgstr "Momentan können manche Teile von Guix noch nicht mit Weblate übersetzt werden. Wir freuen uns über Hilfe!" #. type: item -#: guix-git/doc/contributing.texi:1848 +#: guix-git/doc/contributing.texi:1881 #, no-wrap msgid "@command{guix pull} news can be translated in @file{news.scm}, but is not" msgstr "Bei @command{guix pull} angezeigte Neuigkeiten können in @file{news.scm}" #. type: itemize -#: guix-git/doc/contributing.texi:1854 +#: guix-git/doc/contributing.texi:1887 msgid "available from Weblate. If you want to provide a translation, you can prepare a patch as described above, or simply send us your translation with the name of the news entry you translated and your language. @xref{Writing Channel News}, for more information about channel news." msgstr "übersetzt werden, jedoch @emph{nicht} über Weblate. Wenn Sie eine Übersetzung bereitstellen wollen, können Sie uns einen Patch wie oben beschrieben schicken oder uns einfach die Übersetzung zusammen mit Ihrer Sprache und dem Namen des Neuigkeiteneintrags, den Sie übersetzt haben, zukommen lassen. Siehe @ref{Writing Channel News} für weitere Informationen zu Neuigkeiten über Kanäle." #. type: item -#: guix-git/doc/contributing.texi:1854 +#: guix-git/doc/contributing.texi:1887 #, no-wrap msgid "Guix blog posts cannot currently be translated." msgstr "Blogeinträge zu Guix können derzeit @emph{nicht} übersetzt werden." #. type: item -#: guix-git/doc/contributing.texi:1855 +#: guix-git/doc/contributing.texi:1888 #, no-wrap msgid "The installer script (for foreign distributions) is entirely in English." msgstr "Das Installations-Skript (für Fremddistributionen) gibt es nur auf Englisch." #. type: item -#: guix-git/doc/contributing.texi:1856 +#: guix-git/doc/contributing.texi:1889 #, no-wrap msgid "Some of the libraries Guix uses cannot be translated or are translated" msgstr "Manche der Bibliotheken, die Guix benutzt, können @emph{nicht} übersetzt" #. type: itemize -#: guix-git/doc/contributing.texi:1858 +#: guix-git/doc/contributing.texi:1891 msgid "outside of the Guix project. Guile itself is not internationalized." msgstr "werden oder sie werden außerhalb von Guix übersetzt. Guile selbst ist @emph{nicht} internationalisiert." #. type: item -#: guix-git/doc/contributing.texi:1858 +#: guix-git/doc/contributing.texi:1891 #, no-wrap msgid "Other manuals linked from this manual or the cookbook might not be" msgstr "Andere Handbücher, auf die vom Handbuch oder Kochbuch aus verwiesen" #. type: itemize -#: guix-git/doc/contributing.texi:1860 +#: guix-git/doc/contributing.texi:1893 msgid "translated." msgstr "wird, sind oft @emph{nicht} übersetzt." #. type: subsubheading -#: guix-git/doc/contributing.texi:1862 +#: guix-git/doc/contributing.texi:1895 #, no-wrap msgid "Translation Infrastructure" msgstr "Übersetzungsinfrastruktur" #. type: Plain text -#: guix-git/doc/contributing.texi:1873 +#: guix-git/doc/contributing.texi:1906 msgid "Weblate is backed by a git repository from which it discovers new strings to translate and pushes new and updated translations. Normally, it would be enough to give it commit access to our repositories. However, we decided to use a separate repository for two reasons. First, we would have to give Weblate commit access and authorize its signing key, but we do not trust it in the same way we trust guix developers, especially since we do not manage the instance ourselves. Second, if translators mess something up, it can break the generation of the website and/or guix pull for all our users, independently of their language." msgstr "Hinter Weblate steht ein Git-Repository, aus dem die Weblate-Instanz neue zu übersetzende Zeichenketten bezieht und in das sie die neuen und aktualisierten Übersetzungen pusht. Normalerweise würde es ausreichen, Weblate Commit-Zugriff auf unsere Repositorys zu geben, aber wir haben uns aus zwei Gründen dagegen entschieden. Erstens müssten wir sonst Weblate Commit-Zugriff geben und seinen Signierschlüssel autorisieren, aber wir haben in Weblate nicht auf gleiche Art Vertrauen wie in die Guix-Entwickler, besonders weil wir die Instanz nicht selbst verwalten. Zweitens könnten durch ein Missgeschick der Übersetzer dann das Erzeugen des Webauftritts und/oder guix-pull-Aufrufe für all unsere Nutzer aufhören zu funktionieren, ganz gleich was deren Spracheinstellungen sind." #. type: Plain text -#: guix-git/doc/contributing.texi:1877 +#: guix-git/doc/contributing.texi:1910 msgid "For these reasons, we use a dedicated repository to host translations, and we synchronize it with our guix and artworks repositories after checking no issue was introduced in the translation." msgstr "Daher haben wir ein separates Repository für die Übersetzungen, das wir mit unseren guix- und guix-artwork-Repositorys abgleichen, nachdem wir geprüft haben, dass es durch die Übersetzung zu keinem Fehler kommt." #. type: Plain text -#: guix-git/doc/contributing.texi:1883 +#: guix-git/doc/contributing.texi:1916 msgid "Developers can download the latest PO files from weblate in the Guix repository by running the @command{make download-po} command. It will automatically download the latest files from weblate, reformat them to a canonical form, and check they do not contain issues. The manual needs to be built again to check for additional issues that might crash Texinfo." msgstr "Entwickler können die neuesten PO-Dateien von Weblate in ihr Guix-Repository laden, indem sie den Befehl @command{make download-po} ausführen. Er wird die neuesten Dateien von Weblate automatisch herunterladen, in eine kanonische Form bringen und überprüfen, dass sie keine Fehler verursachen. Das Handbuch muss neu erstellt werden, um sicherzugehen, dass keine neuen Probleme zum Absturz von Texinfo führen." #. type: Plain text -#: guix-git/doc/contributing.texi:1887 +#: guix-git/doc/contributing.texi:1920 msgid "Before pushing new translation files, developers should add them to the make machinery so the translations are actually available. The process differs for the various components." msgstr "Bevor sie neue Übersetzungsdateien pushen, sollten Entwickler achtgeben, dass jene Dateien eingetragen sind, damit die Make-Maschinerie die Übersetzungen auch tatsächlich bereitstellt. Der Prozess dafür unterscheidet sich je nach Komponente." #. type: item -#: guix-git/doc/contributing.texi:1889 +#: guix-git/doc/contributing.texi:1922 #, no-wrap msgid "New po files for the @code{guix} and @code{packages} components must" msgstr "Neue PO-Dateien für die Komponenten @code{guix} und @code{packages}" #. type: itemize -#: guix-git/doc/contributing.texi:1892 +#: guix-git/doc/contributing.texi:1925 msgid "be registered by adding the new language to @file{po/guix/LINGUAS} or @file{po/packages/LINGUAS}." msgstr "müssen registriert werden, indem man die neue Sprache in @file{po/guix/LINGUAS} oder @file{po/packages/LINGUAS} hinzufügt." #. type: item -#: guix-git/doc/contributing.texi:1892 +#: guix-git/doc/contributing.texi:1925 #, no-wrap msgid "New po files for the @code{documentation-manual} component must be" msgstr "Neue PO-Dateien für die Komponente @code{documentation-manual} müssen" #. type: itemize -#: guix-git/doc/contributing.texi:1898 +#: guix-git/doc/contributing.texi:1931 msgid "registered by adding the file name to @code{DOC_PO_FILES} in @file{po/doc/local.mk}, the generated @file{%D%/guix.xx.texi} manual to @code{info_TEXINFOS} in @file{doc/local.mk} and the generated @file{%D%/guix.xx.texi} and @file{%D%/contributing.xx.texi} to @code{TRANSLATED_INFO} also in @file{doc/local.mk}." msgstr "registriert werden, indem man deren Dateinamen zu @code{DOC_PO_FILES} in @file{po/doc/local.mk} hinzufügt, die erzeugte Handbuchdatei @file{%D%/guix.xx.texi} zu @code{info_TEXINFOS} in @file{doc/local.mk} hinzufügt und sowohl die erzeugte @file{%D%/guix.xx.texi} als auch @file{%D%/contributing.xx.texi} zu @code{TRANSLATED_INFO} auch wieder in @file{doc/local.mk} hinzufügt." #. type: item -#: guix-git/doc/contributing.texi:1898 +#: guix-git/doc/contributing.texi:1931 #, no-wrap msgid "New po files for the @code{documentation-cookbook} component must be" msgstr "Neue PO-Dateien für die Komponente @code{documentation-cookbook} müssen" #. type: itemize -#: guix-git/doc/contributing.texi:1904 +#: guix-git/doc/contributing.texi:1937 msgid "registered by adding the file name to @code{DOC_COOKBOOK_PO_FILES} in @file{po/doc/local.mk}, the generated @file{%D%/guix-cookbook.xx.texi} manual to @code{info_TEXINFOS} in @file{doc/local.mk} and the generated @file{%D%/guix-cookbook.xx.texi} to @code{TRANSLATED_INFO} also in @file{doc/local.mk}." msgstr "registriert werden, indem man deren Dateinamen zu @code{DOC_COOKBOOK_PO_FILES} in @file{po/doc/local.mk} hinzufügt, die erzeugte Handbuchdatei @file{%D%/guix-cookbook.xx.texi} zu @code{info_TEXINFOS} in @file{doc/local.mk} hinzufügt und die erzeugte @file{%D%/guix-cookbook.xx.texi} zu @code{TRANSLATED_INFO} auch wieder in @file{doc/local.mk} hinzufügt." #. type: item -#: guix-git/doc/contributing.texi:1904 +#: guix-git/doc/contributing.texi:1937 #, no-wrap msgid "New po files for the @code{website} component must be added to the" msgstr "Neue PO-Dateien für die Komponente @code{website} müssen zum Repository" #. type: itemize -#: guix-git/doc/contributing.texi:1909 +#: guix-git/doc/contributing.texi:1942 msgid "@code{guix-artwork} repository, in @file{website/po/}. @file{website/po/LINGUAS} and @file{website/po/ietf-tags.scm} must be updated accordingly (see @file{website/i18n-howto.txt} for more information on the process)." msgstr "@code{guix-artwork} ins dortige Verzeichnis @file{website/po/} hinzugefügt werden. @file{website/po/LINGUAS} und @file{website/po/ietf-tags.scm} müssen entsprechend aktualisiert werden (siehe @file{website/i18n-howto.txt} für Details zum Prozess)." @@ -2790,9 +2833,9 @@ msgstr "version-de.texi" #. type: copying #: guix-git/doc/guix.texi:103 #, fuzzy -#| msgid "Copyright @copyright{} 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" -msgid "Copyright @copyright{} 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" -msgstr "Copyright @copyright{} 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" +#| msgid "Copyright @copyright{} 2012-2022 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021, 2022 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021, 2022 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" +msgid "Copyright @copyright{} 2012-2022 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021, 2022 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021, 2022 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021, 2022 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021, 2022 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" +msgstr "Copyright @copyright{} 2012-2022 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021, 2022 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021, 2022 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" #. type: copying #: guix-git/doc/guix.texi:110 @@ -2952,7 +2995,7 @@ msgstr "Dieses Handbuch ist auch auf Englisch (siehe @ref{Top,,, guix, GNU Guix #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:192 -#: guix-git/doc/guix.texi:402 guix-git/doc/guix.texi:403 +#: guix-git/doc/guix.texi:403 guix-git/doc/guix.texi:404 #, no-wrap msgid "Introduction" msgstr "Einführung" @@ -2964,7 +3007,7 @@ msgstr "Was ist Guix überhaupt?" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:197 -#: guix-git/doc/guix.texi:589 guix-git/doc/guix.texi:590 +#: guix-git/doc/guix.texi:600 guix-git/doc/guix.texi:601 #, no-wrap msgid "Installation" msgstr "Installation" @@ -2976,7 +3019,7 @@ msgstr "Guix installieren." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:213 -#: guix-git/doc/guix.texi:2049 guix-git/doc/guix.texi:2050 +#: guix-git/doc/guix.texi:2066 guix-git/doc/guix.texi:2067 #, no-wrap msgid "System Installation" msgstr "Systeminstallation" @@ -2987,8 +3030,8 @@ msgid "Installing the whole operating system." msgstr "Das ganze Betriebssystem installieren." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:2777 -#: guix-git/doc/guix.texi:2778 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:2794 +#: guix-git/doc/guix.texi:2795 #, no-wrap msgid "Getting Started" msgstr "Einstieg in Guix" @@ -3000,7 +3043,7 @@ msgstr "Ihre ersten Schritte." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:230 -#: guix-git/doc/guix.texi:2985 guix-git/doc/guix.texi:2986 +#: guix-git/doc/guix.texi:3002 guix-git/doc/guix.texi:3003 #, no-wrap msgid "Package Management" msgstr "Paketverwaltung" @@ -3012,7 +3055,7 @@ msgstr "Pakete installieren, aktualisieren usw." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:253 -#: guix-git/doc/guix.texi:5053 guix-git/doc/guix.texi:5054 +#: guix-git/doc/guix.texi:5071 guix-git/doc/guix.texi:5072 #, no-wrap msgid "Channels" msgstr "Kanäle" @@ -3024,7 +3067,7 @@ msgstr "Die Paketsammlung anpassen." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:267 -#: guix-git/doc/guix.texi:5581 guix-git/doc/guix.texi:5582 +#: guix-git/doc/guix.texi:5599 guix-git/doc/guix.texi:5600 #, no-wrap msgid "Development" msgstr "Entwicklung" @@ -3036,7 +3079,7 @@ msgstr "Von Guix unterstützte Softwareentwicklung." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:275 -#: guix-git/doc/guix.texi:6799 guix-git/doc/guix.texi:6800 +#: guix-git/doc/guix.texi:6842 guix-git/doc/guix.texi:6843 #, no-wrap msgid "Programming Interface" msgstr "Programmierschnittstelle" @@ -3047,8 +3090,8 @@ msgid "Using Guix in Scheme." msgstr "Guix in Scheme verwenden." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:294 -#: guix-git/doc/guix.texi:10774 guix-git/doc/guix.texi:10775 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:295 +#: guix-git/doc/guix.texi:11088 guix-git/doc/guix.texi:11089 #, no-wrap msgid "Utilities" msgstr "Zubehör" @@ -3059,8 +3102,8 @@ msgid "Package management commands." msgstr "Befehle zur Paketverwaltung." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:320 -#: guix-git/doc/guix.texi:14278 guix-git/doc/guix.texi:14279 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:321 +#: guix-git/doc/guix.texi:14635 guix-git/doc/guix.texi:14636 #, no-wrap msgid "System Configuration" msgstr "Systemkonfiguration" @@ -3071,8 +3114,8 @@ msgid "Configuring the operating system." msgstr "Das Betriebssystem konfigurieren." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:36881 -#: guix-git/doc/guix.texi:36882 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37371 +#: guix-git/doc/guix.texi:37372 #, no-wrap msgid "Home Configuration" msgstr "Persönliche Konfiguration" @@ -3083,8 +3126,8 @@ msgid "Configuring the home environment." msgstr "Persönliche Home-Umgebungen konfigurieren." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37721 -#: guix-git/doc/guix.texi:37722 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38210 +#: guix-git/doc/guix.texi:38211 #, no-wrap msgid "Documentation" msgstr "Dokumentation" @@ -3095,8 +3138,8 @@ msgid "Browsing software user manuals." msgstr "Wie man Nutzerhandbücher von Software liest." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:389 -#: guix-git/doc/guix.texi:37787 guix-git/doc/guix.texi:37788 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:390 +#: guix-git/doc/guix.texi:38276 guix-git/doc/guix.texi:38277 #, no-wrap msgid "Installing Debugging Files" msgstr "Dateien zur Fehlersuche installieren" @@ -3107,8 +3150,8 @@ msgid "Feeding the debugger." msgstr "Den Debugger füttern." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37942 -#: guix-git/doc/guix.texi:37943 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38431 +#: guix-git/doc/guix.texi:38432 #, no-wrap msgid "Security Updates" msgstr "Sicherheitsaktualisierungen" @@ -3119,8 +3162,8 @@ msgid "Deploying security fixes quickly." msgstr "Sicherheits-Patches schnell einspielen." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:394 -#: guix-git/doc/guix.texi:38057 guix-git/doc/guix.texi:38058 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:395 +#: guix-git/doc/guix.texi:38546 guix-git/doc/guix.texi:38547 #, no-wrap msgid "Bootstrapping" msgstr "Bootstrapping" @@ -3131,7 +3174,7 @@ msgid "GNU/Linux built from scratch." msgstr "GNU/Linux von Grund auf selbst erstellen." #. type: node -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38349 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38838 #, no-wrap msgid "Porting" msgstr "Portierung" @@ -3147,8 +3190,8 @@ msgid "Your help needed!" msgstr "Ihre Hilfe ist nötig!" #. type: chapter -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38397 -#: guix-git/doc/guix.texi:38398 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38886 +#: guix-git/doc/guix.texi:38887 #, no-wrap msgid "Acknowledgments" msgstr "Danksagungen" @@ -3159,8 +3202,8 @@ msgid "Thanks!" msgstr "Danke!" #. type: appendix -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38419 -#: guix-git/doc/guix.texi:38420 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38908 +#: guix-git/doc/guix.texi:38909 #, no-wrap msgid "GNU Free Documentation License" msgstr "GNU-Lizenz für freie Dokumentation" @@ -3171,8 +3214,8 @@ msgid "The license of this manual." msgstr "Die Lizenz dieses Handbuchs." #. type: unnumbered -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38425 -#: guix-git/doc/guix.texi:38426 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38914 +#: guix-git/doc/guix.texi:38915 #, no-wrap msgid "Concept Index" msgstr "Konzeptverzeichnis" @@ -3183,8 +3226,8 @@ msgid "Concepts." msgstr "Konzepte." #. type: unnumbered -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38429 -#: guix-git/doc/guix.texi:38430 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38918 +#: guix-git/doc/guix.texi:38919 #, no-wrap msgid "Programming Index" msgstr "Programmierverzeichnis" @@ -3200,2131 +3243,2157 @@ msgid "--- The Detailed Node Listing ---" msgstr "--- Detaillierte Liste der Knoten ---" #. type: section -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 -#: guix-git/doc/guix.texi:431 guix-git/doc/guix.texi:432 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 +#: guix-git/doc/guix.texi:432 guix-git/doc/guix.texi:433 #, no-wrap msgid "Managing Software the Guix Way" msgstr "Auf Guix-Art Software verwalten" #. type: menuentry -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 msgid "What's special." msgstr "Was Guix besonders macht." #. type: section -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 -#: guix-git/doc/guix.texi:486 guix-git/doc/guix.texi:487 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 +#: guix-git/doc/guix.texi:487 guix-git/doc/guix.texi:488 #, no-wrap msgid "GNU Distribution" msgstr "GNU-Distribution" #. type: menuentry -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 msgid "The packages and tools." msgstr "Die Pakete und Werkzeuge." #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:631 guix-git/doc/guix.texi:632 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:642 guix-git/doc/guix.texi:643 #, no-wrap msgid "Binary Installation" msgstr "Aus Binärdatei installieren" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Getting Guix running in no time!" msgstr "Guix installieren ohne Zeit zu verlieren!" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:871 guix-git/doc/guix.texi:872 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:882 guix-git/doc/guix.texi:883 #, no-wrap msgid "Requirements" msgstr "Voraussetzungen" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Software needed to build and run Guix." msgstr "Zum Erstellen und Benutzen von Guix nötige Software." #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:957 guix-git/doc/guix.texi:958 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:969 guix-git/doc/guix.texi:970 #, no-wrap msgid "Running the Test Suite" msgstr "Den Testkatalog laufen lassen" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Testing Guix." msgstr "Guix testen." #. type: section #: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:207 -#: guix-git/doc/guix.texi:629 guix-git/doc/guix.texi:1054 -#: guix-git/doc/guix.texi:1055 +#: guix-git/doc/guix.texi:640 guix-git/doc/guix.texi:1066 +#: guix-git/doc/guix.texi:1067 #, no-wrap msgid "Setting Up the Daemon" msgstr "Den Daemon einrichten" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Preparing the build daemon's environment." msgstr "Die Umgebung des Erstellungs-Daemons vorbereiten." #. type: node -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:1525 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:1542 #, no-wrap msgid "Invoking guix-daemon" msgstr "Aufruf des guix-daemon" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Running the build daemon." msgstr "Den Erstellungs-Daemon laufen lassen." #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:1827 guix-git/doc/guix.texi:1828 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:1844 guix-git/doc/guix.texi:1845 #, no-wrap msgid "Application Setup" msgstr "Anwendungen einrichten" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Application-specific setup." msgstr "Anwendungsspezifische Einstellungen." #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:2012 guix-git/doc/guix.texi:2013 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:2029 guix-git/doc/guix.texi:2030 #, no-wrap msgid "Upgrading Guix" msgstr "Aktualisieren von Guix" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Upgrading Guix and its build daemon." msgstr "Guix und seinen Erstellungs-Daemon aktualisieren." #. type: subsection -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1076 guix-git/doc/guix.texi:1077 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1088 guix-git/doc/guix.texi:1089 #, no-wrap msgid "Build Environment Setup" msgstr "Einrichten der Erstellungsumgebung" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Preparing the isolated build environment." msgstr "Die isolierte Umgebung zum Erstellen herrichten." #. type: node -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1195 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1212 #, no-wrap msgid "Daemon Offload Setup" msgstr "Auslagern des Daemons einrichten" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Offloading builds to remote machines." msgstr "Erstellungen auf entfernte Maschinen auslagern." #. type: subsection -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1434 guix-git/doc/guix.texi:1435 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1451 guix-git/doc/guix.texi:1452 #, no-wrap msgid "SELinux Support" msgstr "SELinux-Unterstützung" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Using an SELinux policy for the daemon." msgstr "Wie man eine SELinux-Richtlinie für den Daemon einrichtet." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:1470 -#: guix-git/doc/guix.texi:2083 guix-git/doc/guix.texi:2085 -#: guix-git/doc/guix.texi:2086 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:1487 +#: guix-git/doc/guix.texi:2100 guix-git/doc/guix.texi:2102 +#: guix-git/doc/guix.texi:2103 #, no-wrap msgid "Limitations" msgstr "Einschränkungen" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "What you can expect." msgstr "Was Sie erwarten dürfen." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2111 guix-git/doc/guix.texi:2112 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2128 guix-git/doc/guix.texi:2129 #, no-wrap msgid "Hardware Considerations" msgstr "Hardware-Überlegungen" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Supported hardware." msgstr "Unterstützte Hardware." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2146 guix-git/doc/guix.texi:2147 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2163 guix-git/doc/guix.texi:2164 #, no-wrap msgid "USB Stick and DVD Installation" msgstr "Installation von USB-Stick oder DVD" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Preparing the installation medium." msgstr "Das Installationsmedium vorbereiten." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2227 guix-git/doc/guix.texi:2228 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2244 guix-git/doc/guix.texi:2245 #, no-wrap msgid "Preparing for Installation" msgstr "Vor der Installation" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Networking, partitioning, etc." msgstr "Netzwerkanbindung, Partitionierung usw." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2250 guix-git/doc/guix.texi:2251 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2267 guix-git/doc/guix.texi:2268 #, no-wrap msgid "Guided Graphical Installation" msgstr "Geführte grafische Installation" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Easy graphical installation." msgstr "Leichte grafische Installation." #. type: section #: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:225 -#: guix-git/doc/guix.texi:2083 guix-git/doc/guix.texi:2281 -#: guix-git/doc/guix.texi:2282 +#: guix-git/doc/guix.texi:2100 guix-git/doc/guix.texi:2298 +#: guix-git/doc/guix.texi:2299 #, no-wrap msgid "Manual Installation" msgstr "Manuelle Installation" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Manual installation for wizards." msgstr "Manuelle Installation für Zauberer." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2660 guix-git/doc/guix.texi:2661 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2677 guix-git/doc/guix.texi:2678 #, no-wrap msgid "After System Installation" msgstr "Nach der Systeminstallation" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "When installation succeeded." msgstr "Wenn die Installation erfolgreich war." #. type: node -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2694 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2711 #, no-wrap msgid "Installing Guix in a VM" msgstr "Guix in einer VM installieren" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Guix System playground." msgstr "Ein „Guix System“-Spielplatz." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2745 guix-git/doc/guix.texi:2746 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2762 guix-git/doc/guix.texi:2763 #, no-wrap msgid "Building the Installation Image" msgstr "Ein Abbild zur Installation erstellen" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "How this comes to be." msgstr "Wie ein solches entsteht." # Commas in node names would prevent the terminal info viewer from following links. #. type: node -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 -#: guix-git/doc/guix.texi:2301 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 +#: guix-git/doc/guix.texi:2318 #, no-wrap msgid "Keyboard Layout and Networking and Partitioning" msgstr "Tastaturbelegung und Netzwerkanbindung und Partitionierung" #. type: menuentry -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 msgid "Initial setup." msgstr "Vorab." #. type: subsection -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 -#: guix-git/doc/guix.texi:2571 guix-git/doc/guix.texi:2572 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 +#: guix-git/doc/guix.texi:2588 guix-git/doc/guix.texi:2589 #, no-wrap msgid "Proceeding with the Installation" msgstr "Fortfahren mit der Installation" #. type: menuentry -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 msgid "Installing." msgstr "Installieren." #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:3019 guix-git/doc/guix.texi:3020 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3036 guix-git/doc/guix.texi:3037 #, no-wrap msgid "Features" msgstr "Funktionalitäten" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "How Guix will make your life brighter." msgstr "Wie Guix Ihr Leben schöner machen wird." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:3109 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3126 #, no-wrap msgid "Invoking guix package" msgstr "Aufruf von guix package" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Package installation, removal, etc." msgstr "Pakete installieren, entfernen usw." #. type: section #: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:243 -#: guix-git/doc/guix.texi:3017 guix-git/doc/guix.texi:3738 -#: guix-git/doc/guix.texi:3739 +#: guix-git/doc/guix.texi:3034 guix-git/doc/guix.texi:3756 +#: guix-git/doc/guix.texi:3757 #, no-wrap msgid "Substitutes" msgstr "Substitute" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Downloading pre-built binaries." msgstr "Vorerstelle Binärdateien herunterladen." #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4074 guix-git/doc/guix.texi:4075 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4092 guix-git/doc/guix.texi:4093 #, no-wrap msgid "Packages with Multiple Outputs" msgstr "Pakete mit mehreren Ausgaben." #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Single source package, multiple outputs." msgstr "Ein Quellpaket, mehrere Ausgaben." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4128 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4146 #, no-wrap msgid "Invoking guix gc" msgstr "Aufruf von guix gc" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Running the garbage collector." msgstr "Den Müllsammler laufen lassen." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4338 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4356 #, no-wrap msgid "Invoking guix pull" msgstr "Aufruf von guix pull" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Fetching the latest Guix and distribution." msgstr "Das neueste Guix samt Distribution laden." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4585 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4603 #, no-wrap msgid "Invoking guix time-machine" msgstr "Aufruf von time-machine" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Running an older revision of Guix." msgstr "Alte Guix-Versionen verwenden." #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4640 guix-git/doc/guix.texi:4641 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4658 guix-git/doc/guix.texi:4659 #, no-wrap msgid "Inferiors" msgstr "Untergeordnete" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Interacting with another revision of Guix." msgstr "Mit einer anderen Version von Guix interagieren." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4768 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4786 #, no-wrap msgid "Invoking guix describe" msgstr "Aufruf von guix describe" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Display information about your Guix revision." msgstr "Informationen über Ihre Guix-Version anzeigen." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4863 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4881 #, no-wrap msgid "Invoking guix archive" msgstr "Aufruf von guix archive" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Exporting and importing store files." msgstr "Import und Export von Store-Dateien." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3764 guix-git/doc/guix.texi:3765 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3782 guix-git/doc/guix.texi:3783 #, no-wrap msgid "Official Substitute Servers" msgstr "Offizielle Substitut-Server" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "One particular source of substitutes." msgstr "Eine besondere Quelle von Substituten." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3794 guix-git/doc/guix.texi:3795 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3812 guix-git/doc/guix.texi:3813 #, no-wrap msgid "Substitute Server Authorization" msgstr "Substitut-Server autorisieren" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How to enable or disable substitutes." msgstr "Wie man Substitute an- und abschaltet." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3864 guix-git/doc/guix.texi:3865 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3882 guix-git/doc/guix.texi:3883 #, no-wrap msgid "Getting Substitutes from Other Servers" msgstr "Substitute von anderen Servern holen" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "Substitute diversity." msgstr "Substitutevielfalt." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3969 guix-git/doc/guix.texi:3970 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3987 guix-git/doc/guix.texi:3988 #, no-wrap msgid "Substitute Authentication" msgstr "Substitutauthentifizierung" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How Guix verifies substitutes." msgstr "Wie Guix Substitute verifiziert." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4004 guix-git/doc/guix.texi:4005 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4022 guix-git/doc/guix.texi:4023 #, no-wrap msgid "Proxy Settings" msgstr "Proxy-Einstellungen" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How to get substitutes via proxy." msgstr "Wie Sie Substitute über einen Proxy beziehen." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4016 guix-git/doc/guix.texi:4017 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4034 guix-git/doc/guix.texi:4035 #, no-wrap msgid "Substitution Failure" msgstr "Fehler bei der Substitution" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "What happens when substitution fails." msgstr "Was passiert, wenn die Substitution fehlschlägt." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4044 guix-git/doc/guix.texi:4045 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4062 guix-git/doc/guix.texi:4063 #, no-wrap msgid "On Trusting Binaries" msgstr "Vom Vertrauen gegenüber Binärdateien" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How can you trust that binary blob?" msgstr "Wie können Sie diesem binären Blob trauen?" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5086 guix-git/doc/guix.texi:5087 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5104 guix-git/doc/guix.texi:5105 #, no-wrap msgid "Specifying Additional Channels" msgstr "Weitere Kanäle angeben" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Extending the package collection." msgstr "Die Paketsammlung erweitern." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5136 guix-git/doc/guix.texi:5137 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5154 guix-git/doc/guix.texi:5155 #, no-wrap msgid "Using a Custom Guix Channel" msgstr "Eigenen Guix-Kanal benutzen" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Using a customized Guix." msgstr "Ein angepasstes Guix benutzen." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5158 guix-git/doc/guix.texi:5159 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5176 guix-git/doc/guix.texi:5177 #, no-wrap msgid "Replicating Guix" msgstr "Guix nachbilden" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Running the @emph{exact same} Guix." msgstr "Haargenau dasselbe Guix bekommen." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5199 guix-git/doc/guix.texi:5200 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5217 guix-git/doc/guix.texi:5218 #, no-wrap msgid "Channel Authentication" msgstr "Kanalauthentifizierung" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How Guix verifies what it fetches." msgstr "Wie Guix seine Aktualisierung verifiziert." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5239 guix-git/doc/guix.texi:5240 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5257 guix-git/doc/guix.texi:5258 #, no-wrap msgid "Channels with Substitutes" msgstr "Kanäle mit Substituten" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Using channels with available substitutes." msgstr "Kanäle nutzen, für die es Substitute gibt." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5264 guix-git/doc/guix.texi:5265 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5282 guix-git/doc/guix.texi:5283 #, no-wrap msgid "Creating a Channel" msgstr "Einen Kanal erstellen" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How to write your custom channel." msgstr "Wie Sie Ihren eigenen Kanal schreiben." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5331 guix-git/doc/guix.texi:5332 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5349 guix-git/doc/guix.texi:5350 #, no-wrap msgid "Package Modules in a Sub-directory" msgstr "Paketmodule in einem Unterverzeichnis" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Specifying the channel's package modules location." msgstr "Den Ort der Paketmodule des Kanals angeben." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5345 guix-git/doc/guix.texi:5346 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5363 guix-git/doc/guix.texi:5364 #, no-wrap msgid "Declaring Channel Dependencies" msgstr "Kanalabhängigkeiten deklarieren" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How to depend on other channels." msgstr "Abhängigkeiten von anderen Kanälen festlegen." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5387 guix-git/doc/guix.texi:5388 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5405 guix-git/doc/guix.texi:5406 #, no-wrap msgid "Specifying Channel Authorizations" msgstr "Weitere Kanalautorisierungen angeben" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Defining channel authors authorizations." msgstr "Autorisierungen von Kanalautoren definieren." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5488 guix-git/doc/guix.texi:5489 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5506 guix-git/doc/guix.texi:5507 #, no-wrap msgid "Primary URL" msgstr "Primäre URL" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Distinguishing mirror to original." msgstr "Spiegelserver vom Original unterscheiden." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5511 guix-git/doc/guix.texi:5512 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5529 guix-git/doc/guix.texi:5530 #, no-wrap msgid "Writing Channel News" msgstr "Kanalneuigkeiten verfassen" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Communicating information to channel's users." msgstr "Den Kanalnutzern Informationen mitteilen." #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:5603 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:5621 #, no-wrap msgid "Invoking guix shell" msgstr "Aufruf von guix shell" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Spawning one-off software environments." msgstr "Software-Umgebungen für den Moment." #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:5956 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:5993 #, no-wrap msgid "Invoking guix environment" msgstr "Aufruf von guix environment" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Setting up development environments." msgstr "Entwicklungsumgebungen einrichten." #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6325 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6368 #, no-wrap msgid "Invoking guix pack" msgstr "Aufruf von guix pack" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Creating software bundles." msgstr "Software-Bündel erstellen." #. type: section -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6711 guix-git/doc/guix.texi:6712 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6754 guix-git/doc/guix.texi:6755 #, no-wrap msgid "The GCC toolchain" msgstr "GCC-Toolchain" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Working with languages supported by GCC." msgstr "Arbeiten mit vom GCC unterstützten Sprachen." #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6737 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6780 #, no-wrap msgid "Invoking guix git authenticate" msgstr "Aufruf von guix git authenticate" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Authenticating Git repositories." msgstr "Git-Repositorys authentifizieren." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:6841 guix-git/doc/guix.texi:6842 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:6885 guix-git/doc/guix.texi:6886 #, no-wrap msgid "Package Modules" msgstr "Paketmodule" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Packages from the programmer's viewpoint." msgstr "Pakete aus Sicht des Programmierers." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:289 -#: guix-git/doc/guix.texi:6839 guix-git/doc/guix.texi:6903 -#: guix-git/doc/guix.texi:6904 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:290 +#: guix-git/doc/guix.texi:6883 guix-git/doc/guix.texi:6947 +#: guix-git/doc/guix.texi:6948 #, no-wrap msgid "Defining Packages" msgstr "Pakete definieren" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Defining new packages." msgstr "Wie Sie neue Pakete definieren." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:7554 guix-git/doc/guix.texi:7555 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:7612 guix-git/doc/guix.texi:7613 #, no-wrap msgid "Defining Package Variants" msgstr "Paketvarianten definieren" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Customizing packages." msgstr "Pakete anpassen." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:7821 guix-git/doc/guix.texi:7822 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:7879 guix-git/doc/guix.texi:7880 #, no-wrap msgid "Build Systems" msgstr "Erstellungssysteme" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Specifying how packages are built." msgstr "Angeben, wie Pakete erstellt werden." #. type: subsection -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:8861 guix-git/doc/guix.texi:8862 -#: guix-git/doc/guix.texi:9292 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:8918 guix-git/doc/guix.texi:8919 +#: guix-git/doc/guix.texi:9427 #, no-wrap msgid "Build Phases" msgstr "Erstellungsphasen" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Phases of the build process of a package." msgstr "Die Phasen im Erstellungsprozess eines Pakets." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9055 guix-git/doc/guix.texi:9056 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9116 guix-git/doc/guix.texi:9117 #, no-wrap msgid "Build Utilities" msgstr "Werkzeuge zur Erstellung" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Helpers for your package definitions and more." msgstr "Helferlein für Ihre Paketdefinitionen und anderes." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9369 guix-git/doc/guix.texi:9370 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9504 guix-git/doc/guix.texi:9505 +#, fuzzy, no-wrap +#| msgid "search paths" +msgid "Search Paths" +msgstr "Suchpfade" + +#. type: menuentry +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#, fuzzy +#| msgid "Declaring the Home Environment" +msgid "Declaring search path environment variables." +msgstr "Deklaration der Persönlichen Umgebung" + +#. type: section +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9683 guix-git/doc/guix.texi:9684 #, no-wrap msgid "The Store" msgstr "Der Store" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Manipulating the package store." msgstr "Den Paket-Store verändern." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9522 guix-git/doc/guix.texi:9523 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9836 guix-git/doc/guix.texi:9837 #, no-wrap msgid "Derivations" msgstr "Ableitungen" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Low-level interface to package derivations." msgstr "Systemnahe Schnittstelle für Paketableitungen." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9716 guix-git/doc/guix.texi:9717 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10030 guix-git/doc/guix.texi:10031 #, no-wrap msgid "The Store Monad" msgstr "Die Store-Monade" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Purely functional interface to the store." msgstr "Rein funktionale Schnittstelle zum Store." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:10035 guix-git/doc/guix.texi:10036 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10349 guix-git/doc/guix.texi:10350 #, no-wrap msgid "G-Expressions" msgstr "G-Ausdrücke" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Manipulating build expressions." msgstr "Erstellungsausdrücke verarbeiten." #. type: node -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:10674 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10988 #, no-wrap msgid "Invoking guix repl" msgstr "Aufruf von guix repl" #. type: menuentry -#: guix-git/doc/guix.texi:287 +#: guix-git/doc/guix.texi:288 msgid "Programming Guix in Guile." msgstr "Guix in Guile programmieren." #. type: node -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 -#: guix-git/doc/guix.texi:7103 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 +#: guix-git/doc/guix.texi:7147 #, no-wrap msgid "package Reference" msgstr "„package“-Referenz" #. type: menuentry -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 msgid "The package data type." msgstr "Der Datentyp für Pakete." #. type: node -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 -#: guix-git/doc/guix.texi:7362 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 +#: guix-git/doc/guix.texi:7420 #, no-wrap msgid "origin Reference" msgstr "„origin“-Referenz" #. type: menuentry -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 msgid "The origin data type." msgstr "Datentyp für Paketursprünge." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:10801 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:11115 #, no-wrap msgid "Invoking guix build" msgstr "Aufruf von guix build" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Building packages from the command line." msgstr "Pakete aus der Befehlszeile heraus erstellen." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11699 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12013 #, no-wrap msgid "Invoking guix edit" msgstr "Aufruf von guix edit" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Editing package definitions." msgstr "Paketdefinitionen bearbeiten." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11729 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12043 #, no-wrap msgid "Invoking guix download" msgstr "Aufruf von guix download" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Downloading a file and printing its hash." msgstr "Eine Datei herunterladen und ihre Hash-Prüfsumme ausgeben." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11787 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12101 #, no-wrap msgid "Invoking guix hash" msgstr "Aufruf von guix hash" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Computing the cryptographic hash of a file." msgstr "Die kryptografische Prüfsumme einer Datei berechnen." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11877 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12192 #, no-wrap msgid "Invoking guix import" msgstr "Aufruf von guix import" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Importing package definitions." msgstr "Paketdefinitionen importieren." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12412 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12727 #, no-wrap msgid "Invoking guix refresh" msgstr "Aufruf von guix refresh" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Updating package definitions." msgstr "Paketdefinitionen aktualisieren." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12784 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13099 #, no-wrap msgid "Invoking guix style" msgstr "Aufruf von guix style" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Styling package definitions." msgstr "Paketdefinitionen umgestalten." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12880 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13237 #, no-wrap msgid "Invoking guix lint" msgstr "Aufruf von guix lint" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Finding errors in package definitions." msgstr "Fehler in Paketdefinitionen finden." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13056 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13413 #, no-wrap msgid "Invoking guix size" msgstr "Aufruf von guix size" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Profiling disk usage." msgstr "Plattenplatzverbrauch profilieren." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13200 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13557 #, no-wrap msgid "Invoking guix graph" msgstr "Aufruf von guix graph" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Visualizing the graph of packages." msgstr "Den Paketgraphen visualisieren." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13481 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13838 #, no-wrap msgid "Invoking guix publish" msgstr "Aufruf von guix publish" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Sharing substitutes." msgstr "Substitute teilen." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13750 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14107 #, no-wrap msgid "Invoking guix challenge" msgstr "Aufruf von guix challenge" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Challenging substitute servers." msgstr "Die Substitut-Server anfechten." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13933 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14290 #, no-wrap msgid "Invoking guix copy" msgstr "Aufruf von guix copy" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Copying to and from a remote store." msgstr "Mit einem entfernten Store Dateien austauschen." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13996 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14353 #, no-wrap msgid "Invoking guix container" msgstr "Aufruf von guix container" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Process isolation." msgstr "Prozesse isolieren." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:14050 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14407 #, no-wrap msgid "Invoking guix weather" msgstr "Aufruf von guix weather" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Assessing substitute availability." msgstr "Die Verfügbarkeit von Substituten einschätzen." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:14180 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14537 #, no-wrap msgid "Invoking guix processes" msgstr "Aufruf von guix processes" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Listing client processes." msgstr "Auflisten der Client-Prozesse" #. type: section -#: guix-git/doc/guix.texi:313 guix-git/doc/guix.texi:10802 +#: guix-git/doc/guix.texi:314 guix-git/doc/guix.texi:11116 #, no-wrap msgid "Invoking @command{guix build}" msgstr "Aufruf von @command{guix build}" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:10855 guix-git/doc/guix.texi:10856 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11169 guix-git/doc/guix.texi:11170 #, no-wrap msgid "Common Build Options" msgstr "Gemeinsame Erstellungsoptionen" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Build options for most commands." msgstr "Erstellungsoptionen für die meisten Befehle." #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11010 guix-git/doc/guix.texi:11011 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11324 guix-git/doc/guix.texi:11325 #, no-wrap msgid "Package Transformation Options" msgstr "Paketumwandlungsoptionen" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Creating variants of packages." msgstr "Varianten von Paketen erzeugen." #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11381 guix-git/doc/guix.texi:11382 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11695 guix-git/doc/guix.texi:11696 #, no-wrap msgid "Additional Build Options" msgstr "Zusätzliche Erstellungsoptionen" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Options specific to 'guix build'." msgstr "Optionen spezifisch für „guix build“." #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11619 guix-git/doc/guix.texi:11620 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11933 guix-git/doc/guix.texi:11934 #, no-wrap msgid "Debugging Build Failures" msgstr "Fehlschläge beim Erstellen untersuchen" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Real life packaging experience." msgstr "Praxiserfahrung bei der Paketerstellung." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14324 guix-git/doc/guix.texi:14325 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:14681 guix-git/doc/guix.texi:14682 #, no-wrap msgid "Using the Configuration System" msgstr "Das Konfigurationssystem nutzen" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Customizing your GNU system." msgstr "Ihr GNU-System anpassen." #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14575 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:14932 #, no-wrap msgid "operating-system Reference" msgstr "„operating-system“-Referenz" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Detail of operating-system declarations." msgstr "Details der Betriebssystem-Deklarationen." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14798 guix-git/doc/guix.texi:14799 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15155 guix-git/doc/guix.texi:15156 #, no-wrap msgid "File Systems" msgstr "Dateisysteme" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring file system mounts." msgstr "Die Dateisystemeinbindungen konfigurieren." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15151 guix-git/doc/guix.texi:15152 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15508 guix-git/doc/guix.texi:15509 #, no-wrap msgid "Mapped Devices" msgstr "Zugeordnete Geräte" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Block device extra processing." msgstr "Näheres zu blockorientierten Speichermedien." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15300 guix-git/doc/guix.texi:15301 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15657 guix-git/doc/guix.texi:15658 #, no-wrap msgid "Swap Space" msgstr "Swap-Speicher" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Backing RAM with disk space." msgstr "Arbeitsspeicher auslagern." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15400 guix-git/doc/guix.texi:15401 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15757 guix-git/doc/guix.texi:15758 #, no-wrap msgid "User Accounts" msgstr "Benutzerkonten" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Specifying user accounts." msgstr "Benutzerkonten festlegen." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:2308 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15581 -#: guix-git/doc/guix.texi:15582 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:2325 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:15938 +#: guix-git/doc/guix.texi:15939 #, no-wrap msgid "Keyboard Layout" msgstr "Tastaturbelegung" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "How the system interprets key strokes." msgstr "Wie das System Tastendrücke interpretiert." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1835 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15727 -#: guix-git/doc/guix.texi:15728 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:1852 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:16084 +#: guix-git/doc/guix.texi:16085 #, no-wrap msgid "Locales" msgstr "Locales" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Language and cultural convention settings." msgstr "Sprache und kulturelle Konventionen." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:345 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15867 -#: guix-git/doc/guix.texi:15868 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:346 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:16224 +#: guix-git/doc/guix.texi:16225 #, no-wrap msgid "Services" msgstr "Dienste" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Specifying system services." msgstr "Systemdienste festlegen." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34056 guix-git/doc/guix.texi:34057 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34493 guix-git/doc/guix.texi:34494 #, no-wrap msgid "Setuid Programs" msgstr "Setuid-Programme" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Programs running with root privileges." msgstr "Mit Administratorrechten startende Programme." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1984 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:34140 -#: guix-git/doc/guix.texi:34141 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:2001 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:34579 +#: guix-git/doc/guix.texi:34580 #, no-wrap msgid "X.509 Certificates" msgstr "X.509-Zertifikate" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Authenticating HTTPS servers." msgstr "HTTPS-Server authentifizieren." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1878 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:34203 -#: guix-git/doc/guix.texi:34204 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:1895 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:34642 +#: guix-git/doc/guix.texi:34643 #, no-wrap msgid "Name Service Switch" msgstr "Name Service Switch" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring libc's name service switch." msgstr "Den Name Service Switch von libc konfigurieren." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34341 guix-git/doc/guix.texi:34342 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34780 guix-git/doc/guix.texi:34781 #, no-wrap msgid "Initial RAM Disk" msgstr "Initiale RAM-Disk" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Linux-Libre bootstrapping." msgstr "Linux-libre hochfahren." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34536 guix-git/doc/guix.texi:34537 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34975 guix-git/doc/guix.texi:34976 #, no-wrap msgid "Bootloader Configuration" msgstr "Bootloader-Konfiguration" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring the boot loader." msgstr "Den Bootloader konfigurieren." #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34834 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:35273 #, no-wrap msgid "Invoking guix system" msgstr "Aufruf von guix system" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Instantiating a system configuration." msgstr "Instanziierung einer Systemkonfiguration." #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:35425 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:35881 #, no-wrap msgid "Invoking guix deploy" msgstr "Aufruf von guix deploy" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Deploying a system configuration to a remote host." msgstr "Eine Systemkonfiguration auf einen entfernten Rechner aufspielen." #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:35631 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:36121 #, no-wrap msgid "Running Guix in a VM" msgstr "Guix in einer VM starten" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "How to run Guix System in a virtual machine." msgstr "Wie man „Guix System“ in einer virtuellen Maschine startet." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:381 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:35765 -#: guix-git/doc/guix.texi:35766 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:382 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:36255 +#: guix-git/doc/guix.texi:36256 #, no-wrap msgid "Defining Services" msgstr "Dienste definieren" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Adding new service definitions." msgstr "Neue Dienstdefinitionen hinzufügen." #. type: menuentry -#: guix-git/doc/guix.texi:341 +#: guix-git/doc/guix.texi:342 msgid "Home Environment Configuration" msgstr "Konfiguration Persönlicher Umgebungen" #. type: node -#: guix-git/doc/guix.texi:343 guix-git/doc/guix.texi:36944 -#: guix-git/doc/guix.texi:37478 +#: guix-git/doc/guix.texi:344 guix-git/doc/guix.texi:37434 +#: guix-git/doc/guix.texi:37974 #, no-wrap msgid "Invoking guix home" msgstr "Aufruf von guix home" #. type: menuentry -#: guix-git/doc/guix.texi:343 +#: guix-git/doc/guix.texi:344 msgid "Instantiating a home environment configuration." msgstr "Eine Konfiguration der Persönlichen Umgebung instanziieren." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:15953 guix-git/doc/guix.texi:15954 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:16310 guix-git/doc/guix.texi:16311 #, no-wrap msgid "Base Services" msgstr "Basisdienste" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Essential system services." msgstr "Essenzielle Systemdienste." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:16880 guix-git/doc/guix.texi:16881 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17242 guix-git/doc/guix.texi:17243 #, no-wrap msgid "Scheduled Job Execution" msgstr "Geplante Auftragsausführung" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The mcron service." msgstr "Der mcron-Dienst." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17030 guix-git/doc/guix.texi:17031 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17392 guix-git/doc/guix.texi:17393 #, no-wrap msgid "Log Rotation" msgstr "Log-Rotation" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The rottlog service." msgstr "Der rottlog-Dienst." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17143 guix-git/doc/guix.texi:17144 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17505 guix-git/doc/guix.texi:17506 #, no-wrap msgid "Networking Setup" msgstr "Netzwerkeinrichtung" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Setting up network interfaces." msgstr "Netzwerkschnittstellen verbinden." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17561 guix-git/doc/guix.texi:17562 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17923 guix-git/doc/guix.texi:17924 #, no-wrap msgid "Networking Services" msgstr "Netzwerkdienste" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Firewall, SSH daemon, etc." msgstr "Firewall, SSH-Daemon etc." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19020 guix-git/doc/guix.texi:19021 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19382 guix-git/doc/guix.texi:19383 #, no-wrap msgid "Unattended Upgrades" msgstr "Unbeaufsichtigte Aktualisierungen" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Automated system upgrades." msgstr "Automatische Systemaktualisierungen." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19158 guix-git/doc/guix.texi:19159 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19520 guix-git/doc/guix.texi:19521 #, no-wrap msgid "X Window" msgstr "X Window" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Graphical display." msgstr "Grafische Anzeige." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19556 guix-git/doc/guix.texi:19557 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19918 guix-git/doc/guix.texi:19919 #, no-wrap msgid "Printing Services" msgstr "Druckdienste" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Local and remote printer support." msgstr "Unterstützung für lokale und entfernte Drucker." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:20409 guix-git/doc/guix.texi:20410 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:20771 guix-git/doc/guix.texi:20772 #, no-wrap msgid "Desktop Services" msgstr "Desktop-Dienste" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "D-Bus and desktop services." msgstr "D-Bus- und Desktop-Dienste." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:20928 guix-git/doc/guix.texi:20929 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21290 guix-git/doc/guix.texi:21291 #, no-wrap msgid "Sound Services" msgstr "Tondienste" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "ALSA and Pulseaudio services." msgstr "Dienste für ALSA und Pulseaudio." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:21068 guix-git/doc/guix.texi:21069 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21430 guix-git/doc/guix.texi:21431 #, no-wrap msgid "Database Services" msgstr "Datenbankdienste" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "SQL databases, key-value stores, etc." msgstr "SQL-Datenbanken, Schlüssel-Wert-Speicher etc." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:21403 guix-git/doc/guix.texi:21404 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21765 guix-git/doc/guix.texi:21766 #, no-wrap msgid "Mail Services" msgstr "Mail-Dienste" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "IMAP, POP3, SMTP, and all that." msgstr "IMAP, POP3, SMTP und so weiter." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:23262 guix-git/doc/guix.texi:23263 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:23624 guix-git/doc/guix.texi:23625 #, no-wrap msgid "Messaging Services" msgstr "Kurznachrichtendienste" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Messaging services." msgstr "Dienste für Kurznachrichten." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:23765 guix-git/doc/guix.texi:23766 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:24127 guix-git/doc/guix.texi:24128 #, no-wrap msgid "Telephony Services" msgstr "Telefondienste" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Telephony services." msgstr "Telefoniedienste." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:24996 guix-git/doc/guix.texi:24997 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25358 guix-git/doc/guix.texi:25359 #, no-wrap msgid "Monitoring Services" msgstr "Systemüberwachungsdienste" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Monitoring services." msgstr "Dienste zur Systemüberwachung." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:25507 guix-git/doc/guix.texi:25508 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25844 guix-git/doc/guix.texi:25845 #, no-wrap msgid "Kerberos Services" msgstr "Kerberos-Dienste" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Kerberos services." msgstr "Kerberos-Dienste." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:25633 guix-git/doc/guix.texi:25634 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25970 guix-git/doc/guix.texi:25971 #, no-wrap msgid "LDAP Services" msgstr "LDAP-Dienste" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "LDAP services." msgstr "LDAP-Dienste." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:26112 guix-git/doc/guix.texi:26113 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:26449 guix-git/doc/guix.texi:26450 #, no-wrap msgid "Web Services" msgstr "Web-Dienste" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Web servers." msgstr "Web-Server." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:27320 guix-git/doc/guix.texi:27321 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:27657 guix-git/doc/guix.texi:27658 #, no-wrap msgid "Certificate Services" msgstr "Zertifikatsdienste" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "TLS certificates via Let's Encrypt." msgstr "TLS-Zertifikate via Let’s Encrypt." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:27501 guix-git/doc/guix.texi:27502 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:27838 guix-git/doc/guix.texi:27839 #, no-wrap msgid "DNS Services" msgstr "DNS-Dienste" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "DNS daemons." msgstr "DNS-Daemons." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28246 guix-git/doc/guix.texi:28247 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:28583 guix-git/doc/guix.texi:28584 #, no-wrap msgid "VPN Services" msgstr "VPN-Dienste" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "VPN daemons." msgstr "VPN-Daemons." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28758 guix-git/doc/guix.texi:28759 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29095 guix-git/doc/guix.texi:29096 #, no-wrap msgid "Network File System" msgstr "Network File System" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "NFS related services." msgstr "Dienste mit Bezug zum Netzwerkdateisystem." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28954 guix-git/doc/guix.texi:28955 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29291 guix-git/doc/guix.texi:29292 #, no-wrap msgid "Continuous Integration" msgstr "Kontinuierliche Integration" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Cuirass and Laminar services." msgstr "Cuirass- und Laminar-Dienste." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29240 guix-git/doc/guix.texi:29241 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29577 guix-git/doc/guix.texi:29578 #, no-wrap msgid "Power Management Services" msgstr "Dienste zur Stromverbrauchsverwaltung" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Extending battery life." msgstr "Den Akku schonen." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29774 guix-git/doc/guix.texi:29775 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:30139 guix-git/doc/guix.texi:30140 #, no-wrap msgid "Audio Services" msgstr "Audio-Dienste" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The MPD." msgstr "Der MPD." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29893 guix-git/doc/guix.texi:29894 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:30258 guix-git/doc/guix.texi:30259 #, no-wrap msgid "Virtualization Services" msgstr "Virtualisierungsdienste" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Virtualization services." msgstr "Dienste für virtuelle Maschinen." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:31561 guix-git/doc/guix.texi:31562 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:31926 guix-git/doc/guix.texi:31927 #, no-wrap msgid "Version Control Services" msgstr "Versionskontrolldienste" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Providing remote access to Git repositories." msgstr "Entfernten Zugang zu Git-Repositorys bieten." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:32897 guix-git/doc/guix.texi:32898 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33262 guix-git/doc/guix.texi:33263 #, no-wrap msgid "Game Services" msgstr "Spieldienste" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Game servers." msgstr "Spielserver." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:32929 guix-git/doc/guix.texi:32930 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33294 guix-git/doc/guix.texi:33295 #, no-wrap msgid "PAM Mount Service" msgstr "PAM-Einbindedienst" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Service to mount volumes when logging in." msgstr "Dienst, um Datenträger beim Anmelden einzubinden." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33012 guix-git/doc/guix.texi:33013 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33377 guix-git/doc/guix.texi:33378 #, no-wrap msgid "Guix Services" msgstr "Guix-Dienste" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services relating specifically to Guix." msgstr "Dienste, die speziell mit Guix zu tun haben." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33290 guix-git/doc/guix.texi:33291 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33727 guix-git/doc/guix.texi:33728 #, no-wrap msgid "Linux Services" msgstr "Linux-Dienste" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services tied to the Linux kernel." msgstr "Dienste nur für Systeme mit Linux-Kernel." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33517 guix-git/doc/guix.texi:33518 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33954 guix-git/doc/guix.texi:33955 #, no-wrap msgid "Hurd Services" msgstr "Hurd-Dienste" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services specific for a Hurd System." msgstr "Dienste, die nur Hurd-Systeme betreffen." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33559 guix-git/doc/guix.texi:33560 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33996 guix-git/doc/guix.texi:33997 #, no-wrap msgid "Miscellaneous Services" msgstr "Verschiedene Dienste" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Other services." msgstr "Andere Dienste." #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35780 guix-git/doc/guix.texi:35781 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36270 guix-git/doc/guix.texi:36271 #, no-wrap msgid "Service Composition" msgstr "Dienstkompositionen" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "The model for composing services." msgstr "Wie Dienste zusammengestellt werden." #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35836 guix-git/doc/guix.texi:35837 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36326 guix-git/doc/guix.texi:36327 #, no-wrap msgid "Service Types and Services" msgstr "Diensttypen und Dienste" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "Types and services." msgstr "Typen und Dienste." #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35973 guix-git/doc/guix.texi:35974 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36463 guix-git/doc/guix.texi:36464 #, no-wrap msgid "Service Reference" msgstr "Service-Referenz" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "API reference." msgstr "Referenz zur Programmierschnittstelle." #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:36292 guix-git/doc/guix.texi:36293 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36782 guix-git/doc/guix.texi:36783 #, no-wrap msgid "Shepherd Services" msgstr "Shepherd-Dienste" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "A particular type of service." msgstr "Eine spezielle Art von Dienst." #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:36511 guix-git/doc/guix.texi:36512 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:37001 guix-git/doc/guix.texi:37002 #, no-wrap msgid "Complex Configurations" msgstr "Komplizierte Konfigurationen" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "Defining bindings for complex configurations." msgstr "Die Anbindungen für komplizierte Konfigurationen definieren." #. type: section -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 -#: guix-git/doc/guix.texi:37806 guix-git/doc/guix.texi:37807 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 +#: guix-git/doc/guix.texi:38295 guix-git/doc/guix.texi:38296 #, no-wrap msgid "Separate Debug Info" msgstr "Fehlersuchinformationen abtrennen" #. type: menuentry -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 msgid "Installing 'debug' outputs." msgstr "‚debug‘-Ausgaben installieren." #. type: section -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 -#: guix-git/doc/guix.texi:37879 guix-git/doc/guix.texi:37880 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 +#: guix-git/doc/guix.texi:38368 guix-git/doc/guix.texi:38369 #, no-wrap msgid "Rebuilding Debug Info" msgstr "Fehlersuchinformationen erneuern" #. type: menuentry -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 msgid "Building missing debug info." msgstr "Fehlende Informationen zur Fehlersuche erstellen." #. type: node -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 -#: guix-git/doc/guix.texi:38098 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 +#: guix-git/doc/guix.texi:38587 #, no-wrap msgid "Reduced Binary Seed Bootstrap" msgstr "Bootstrapping mit kleinerem Seed" #. type: menuentry -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 msgid "A Bootstrap worthy of GNU." msgstr "Ein Bootstrapping, wie GNU es verdient." # Commas in node names would prevent the terminal info viewer from following links. #. type: section -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 -#: guix-git/doc/guix.texi:38173 guix-git/doc/guix.texi:38174 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 +#: guix-git/doc/guix.texi:38662 guix-git/doc/guix.texi:38663 #, no-wrap msgid "Preparing to Use the Bootstrap Binaries" msgstr "Vorbereitung zur Verwendung der Bootstrap-Binärdateien" #. type: menuentry -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 msgid "Building that what matters most." msgstr "Das Allerwichtigste erstellen." #. type: cindex -#: guix-git/doc/guix.texi:405 +#: guix-git/doc/guix.texi:406 #, no-wrap msgid "purpose" msgstr "Zweck" #. type: Plain text -#: guix-git/doc/guix.texi:413 +#: guix-git/doc/guix.texi:414 msgid "GNU Guix@footnote{``Guix'' is pronounced like ``geeks'', or ``ɡiːks'' using the international phonetic alphabet (IPA).} is a package management tool for and distribution of the GNU system. Guix makes it easy for unprivileged users to install, upgrade, or remove software packages, to roll back to a previous package set, to build packages from source, and generally assists with the creation and maintenance of software environments." msgstr "GNU Guix@footnote{„Guix“ wird wie „geeks“ ausgesprochen, also als „ɡiːks“ in der Notation des Internationalen Phonetischen Alphabets (IPA).} ist ein Werkzeug zur Verwaltung von Softwarepaketen für das GNU-System und eine Distribution (eine „Verteilung“) desselbigen GNU-Systems. Guix macht es @emph{nicht} mit besonderen Berechtigungen ausgestatteten, „unprivilegierten“ Nutzern leicht, Softwarepakete zu installieren, zu aktualisieren oder zu entfernen, zu einem vorherigen Satz von Paketen zurückzuwechseln, Pakete aus ihrem Quellcode heraus zu erstellen und hilft allgemein bei der Erzeugung und Wartung von Software-Umgebungen." #. type: cindex -#: guix-git/doc/guix.texi:414 guix-git/doc/guix.texi:489 +#: guix-git/doc/guix.texi:415 guix-git/doc/guix.texi:490 #, no-wrap msgid "Guix System" msgstr "Guix System" #. type: cindex -#: guix-git/doc/guix.texi:415 +#: guix-git/doc/guix.texi:416 #, no-wrap msgid "GuixSD, now Guix System" msgstr "GuixSD, was jetzt Guix System heißt" #. type: cindex -#: guix-git/doc/guix.texi:416 +#: guix-git/doc/guix.texi:417 #, no-wrap msgid "Guix System Distribution, now Guix System" msgstr "Guix System Distribution, welche jetzt Guix System heißt" #. type: Plain text -#: guix-git/doc/guix.texi:425 +#: guix-git/doc/guix.texi:426 msgid "You can install GNU@tie{}Guix on top of an existing GNU/Linux system where it complements the available tools without interference (@pxref{Installation}), or you can use it as a standalone operating system distribution, @dfn{Guix@tie{}System}@footnote{We used to refer to Guix System as ``Guix System Distribution'' or ``GuixSD''. We now consider it makes more sense to group everything under the ``Guix'' banner since, after all, Guix System is readily available through the @command{guix system} command, even if you're using a different distro underneath!}. @xref{GNU Distribution}." msgstr "Sie können GNU@tie{}Guix auf ein bestehendes GNU/Linux-System aufsetzen, wo es die bereits verfügbaren Werkzeuge ergänzt, ohne zu stören (siehe @ref{Installation}), oder Sie können es als eine eigenständige Betriebssystem-Distribution namens @dfn{Guix@tie{}System} verwenden@footnote{Der Name @dfn{Guix@tie{}System} wird auf englische Weise ausgesprochen. Früher hatten wir „Guix System“ als „Guix System Distribution“ bezeichnet und mit „GuixSD“ abgekürzt. Wir denken mittlerweile aber, dass es sinnvoller ist, alles unter der Fahne von Guix zu gruppieren, weil schließlich „Guix System“ auch über den Befehl @command{guix system} verfügbar ist, selbst wenn Sie Guix auf einer fremden Distribution benutzen!}. Siehe @ref{GNU Distribution}." #. type: cindex -#: guix-git/doc/guix.texi:434 +#: guix-git/doc/guix.texi:435 #, no-wrap msgid "user interfaces" msgstr "Benutzeroberflächen" #. type: Plain text -#: guix-git/doc/guix.texi:440 +#: guix-git/doc/guix.texi:441 msgid "Guix provides a command-line package management interface (@pxref{Package Management}), tools to help with software development (@pxref{Development}), command-line utilities for more advanced usage (@pxref{Utilities}), as well as Scheme programming interfaces (@pxref{Programming Interface})." msgstr "Guix bietet eine befehlszeilenbasierte Paketverwaltungsschnittstelle (siehe @ref{Invoking guix package}), Werkzeuge als Hilfestellung bei der Software-Entwicklung (siehe @ref{Development}), Befehlszeilenwerkzeuge für fortgeschrittenere Nutzung (siehe @ref{Utilities}) sowie Schnittstellen zur Programmierung in Scheme (siehe @ref{Programming Interface})." #. type: cindex -#: guix-git/doc/guix.texi:440 +#: guix-git/doc/guix.texi:441 #, no-wrap msgid "build daemon" msgstr "Erstellungs-Daemon" #. type: Plain text -#: guix-git/doc/guix.texi:444 +#: guix-git/doc/guix.texi:445 msgid "Its @dfn{build daemon} is responsible for building packages on behalf of users (@pxref{Setting Up the Daemon}) and for downloading pre-built binaries from authorized sources (@pxref{Substitutes})." msgstr "Der @dfn{Erstellungs-Daemon} ist für das Erstellen von Paketen im Auftrag von Nutzern verantwortlich (siehe @ref{Setting Up the Daemon}) und für das Herunterladen vorerstellter Binärdateien aus autorisierten Quellen (siehe @ref{Substitutes})." #. type: cindex -#: guix-git/doc/guix.texi:445 +#: guix-git/doc/guix.texi:446 #, no-wrap msgid "extensibility of the distribution" msgstr "Erweiterbarkeit der Distribution" #. type: cindex -#: guix-git/doc/guix.texi:446 guix-git/doc/guix.texi:6863 +#: guix-git/doc/guix.texi:447 guix-git/doc/guix.texi:6907 #, no-wrap msgid "customization, of packages" msgstr "Anpassung, von Paketen" #. type: Plain text -#: guix-git/doc/guix.texi:455 +#: guix-git/doc/guix.texi:456 msgid "Guix includes package definitions for many GNU and non-GNU packages, all of which @uref{https://www.gnu.org/philosophy/free-sw.html, respect the user's computing freedom}. It is @emph{extensible}: users can write their own package definitions (@pxref{Defining Packages}) and make them available as independent package modules (@pxref{Package Modules}). It is also @emph{customizable}: users can @emph{derive} specialized package definitions from existing ones, including from the command line (@pxref{Package Transformation Options})." msgstr "Guix enthält Paketdefinitionen für viele Pakete, manche aus GNU und andere nicht aus GNU, die alle @uref{https://www.gnu.org/philosophy/free-sw.html, die Freiheit des Computernutzers respektieren}. Es ist @emph{erweiterbar}: Nutzer können ihre eigenen Paketdefinitionen schreiben (siehe @ref{Defining Packages}) und sie als unabhängige Paketmodule verfügbar machen (siehe @ref{Package Modules}). Es ist auch @emph{anpassbar}: Nutzer können spezialisierte Paketdefinitionen aus bestehenden @emph{ableiten}, auch von der Befehlszeile (siehe @ref{Package Transformation Options})." #. type: cindex -#: guix-git/doc/guix.texi:456 +#: guix-git/doc/guix.texi:457 #, no-wrap msgid "functional package management" msgstr "funktionale Paketverwaltung" #. type: cindex -#: guix-git/doc/guix.texi:457 +#: guix-git/doc/guix.texi:458 #, no-wrap msgid "isolation" msgstr "Isolierung" #. type: Plain text -#: guix-git/doc/guix.texi:472 +#: guix-git/doc/guix.texi:473 msgid "Under the hood, Guix implements the @dfn{functional package management} discipline pioneered by Nix (@pxref{Acknowledgments}). In Guix, the package build and installation process is seen as a @emph{function}, in the mathematical sense. That function takes inputs, such as build scripts, a compiler, and libraries, and returns an installed package. As a pure function, its result depends solely on its inputs---for instance, it cannot refer to software or scripts that were not explicitly passed as inputs. A build function always produces the same result when passed a given set of inputs. It cannot alter the environment of the running system in any way; for instance, it cannot create, modify, or delete files outside of its build and installation directories. This is achieved by running build processes in isolated environments (or @dfn{containers}), where only their explicit inputs are visible." msgstr "Intern implementiert Guix die Disziplin der @dfn{funktionalen Paketverwaltung}, zu der Nix schon die Pionierarbeit geleistet hat (siehe @ref{Acknowledgments}). In Guix wird der Prozess, ein Paket zu erstellen und zu installieren, als eine @emph{Funktion} im mathematischen Sinn aufgefasst. Diese Funktion hat Eingaben, wie zum Beispiel Erstellungs-Skripts, einen Compiler und Bibliotheken, und liefert ein installiertes Paket. Als eine reine Funktion hängt sein Ergebnis allein von seinen Eingaben ab@tie{}— zum Beispiel kann er nicht auf Software oder Skripts Bezug nehmen, die nicht ausdrücklich als Eingaben übergeben wurden. Eine Erstellungsfunktion führt immer zum selben Ergebnis, wenn ihr die gleiche Menge an Eingaben übergeben wurde. Sie kann die Umgebung des laufenden Systems auf keine Weise beeinflussen, zum Beispiel kann sie keine Dateien außerhalb ihrer Erstellungs- und Installationsverzeichnisse verändern. Um dies zu erreichen, laufen Erstellungsprozesse in isolierten Umgebungen (sogenannte @dfn{Container}), wo nur ausdrückliche Eingaben sichtbar sind." #. type: cindex -#: guix-git/doc/guix.texi:473 guix-git/doc/guix.texi:9372 +#: guix-git/doc/guix.texi:474 guix-git/doc/guix.texi:9686 #, no-wrap msgid "store" msgstr "Store" #. type: Plain text -#: guix-git/doc/guix.texi:480 +#: guix-git/doc/guix.texi:481 msgid "The result of package build functions is @dfn{cached} in the file system, in a special directory called @dfn{the store} (@pxref{The Store}). Each package is installed in a directory of its own in the store---by default under @file{/gnu/store}. The directory name contains a hash of all the inputs used to build that package; thus, changing an input yields a different directory name." msgstr "Das Ergebnis von Paketerstellungsfunktionen wird im Dateisystem @dfn{zwischengespeichert} in einem besonderen Verzeichnis, was als @dfn{der Store} bezeichnet wird (siehe @ref{The Store}). Jedes Paket wird in sein eigenes Verzeichnis im Store installiert@tie{}— standardmäßig ist er unter @file{/gnu/store} zu finden. Der Verzeichnisname enthält einen Hash aller Eingaben, anhand derer das Paket erzeugt wurde, somit hat das Ändern einer Eingabe einen völlig anderen Verzeichnisnamen zur Folge." #. type: Plain text -#: guix-git/doc/guix.texi:484 +#: guix-git/doc/guix.texi:485 msgid "This approach is the foundation for the salient features of Guix: support for transactional package upgrade and rollback, per-user installation, and garbage collection of packages (@pxref{Features})." msgstr "Dieses Vorgehen ist die Grundlage für die Guix auszeichnenden Funktionalitäten: Unterstützung transaktionsbasierter Paketaktualisierungen und -rücksetzungen, Installation von Paketen für jeden Nutzer sowie Garbage Collection für Pakete (siehe @ref{Features})." #. type: Plain text -#: guix-git/doc/guix.texi:499 +#: guix-git/doc/guix.texi:500 msgid "Guix comes with a distribution of the GNU system consisting entirely of free software@footnote{The term ``free'' here refers to the @url{https://www.gnu.org/philosophy/free-sw.html,freedom provided to users of that software}.}. The distribution can be installed on its own (@pxref{System Installation}), but it is also possible to install Guix as a package manager on top of an installed GNU/Linux system (@pxref{Installation}). When we need to distinguish between the two, we refer to the standalone distribution as Guix@tie{}System." msgstr "Mit Guix kommt eine Distribution des GNU-Systems, die nur aus freier Software@footnote{Die Bezeichnung „frei“ steht hier für die @url{https://www.gnu.org/philosophy/free-sw.html,Freiheiten@comma{} die Nutzern der Software geboten werden}.} besteht. Die Distribution kann für sich allein installiert werden (siehe @ref{System Installation}), aber Guix kann auch auf einem bestehenden GNU/Linux-System installiert werden. Wenn wir die Anwendungsfälle unterscheiden möchten, bezeichnen wir die alleinstehende Distribution als „Guix@tie{}System“ (mit englischer Aussprache)." #. type: Plain text -#: guix-git/doc/guix.texi:505 +#: guix-git/doc/guix.texi:506 msgid "The distribution provides core GNU packages such as GNU libc, GCC, and Binutils, as well as many GNU and non-GNU applications. The complete list of available packages can be browsed @url{https://www.gnu.org/software/guix/packages,on-line} or by running @command{guix package} (@pxref{Invoking guix package}):" msgstr "Die Distribution stellt den Kern der GNU-Pakete, also insbesondere GNU libc, GCC und Binutils, sowie zahlreiche zum GNU-Projekt gehörende und nicht dazu gehörende Anwendungen zur Verfügung. Die vollständige Liste verfügbarer Pakete können Sie @url{https://www.gnu.org/software/guix/packages,online} einsehen, oder indem Sie @command{guix package} ausführen (siehe @ref{Invoking guix package}):" #. type: example -#: guix-git/doc/guix.texi:508 +#: guix-git/doc/guix.texi:509 #, no-wrap msgid "guix package --list-available\n" msgstr "guix package --list-available\n" #. type: Plain text -#: guix-git/doc/guix.texi:514 +#: guix-git/doc/guix.texi:515 msgid "Our goal is to provide a practical 100% free software distribution of Linux-based and other variants of GNU, with a focus on the promotion and tight integration of GNU components, and an emphasis on programs and tools that help users exert that freedom." msgstr "Unser Ziel ist, eine zu 100% freie Software-Distribution von Linux-basierten und von anderen GNU-Varianten anzubieten, mit dem Fokus darauf, das GNU-Projekt und die enge Zusammenarbeit seiner Bestandteile zu befördern, sowie die Programme und Werkzeuge hervorzuheben, die die Nutzer dabei unterstützen, von dieser Freiheit Gebrauch zu machen." #. type: Plain text -#: guix-git/doc/guix.texi:516 +#: guix-git/doc/guix.texi:517 msgid "Packages are currently available on the following platforms:" msgstr "Pakete sind zurzeit auf folgenden Plattformen verfügbar:" #. type: item -#: guix-git/doc/guix.texi:519 guix-git/doc/guix.texi:2155 +#: guix-git/doc/guix.texi:520 guix-git/doc/guix.texi:2172 #, no-wrap msgid "x86_64-linux" msgstr "x86_64-linux" #. type: table -#: guix-git/doc/guix.texi:521 +#: guix-git/doc/guix.texi:522 msgid "Intel/AMD @code{x86_64} architecture, Linux-Libre kernel." msgstr "Intel/AMD-@code{x86_64}-Architektur, Linux-Libre als Kernel." #. type: item -#: guix-git/doc/guix.texi:522 guix-git/doc/guix.texi:2158 +#: guix-git/doc/guix.texi:523 guix-git/doc/guix.texi:2175 #, no-wrap msgid "i686-linux" msgstr "i686-linux" #. type: table -#: guix-git/doc/guix.texi:524 +#: guix-git/doc/guix.texi:525 msgid "Intel 32-bit architecture (IA32), Linux-Libre kernel." msgstr "Intel-32-Bit-Architektur (IA-32), Linux-Libre als Kernel." #. type: item -#: guix-git/doc/guix.texi:525 +#: guix-git/doc/guix.texi:526 #, no-wrap msgid "armhf-linux" msgstr "armhf-linux" #. type: table -#: guix-git/doc/guix.texi:529 +#: guix-git/doc/guix.texi:530 msgid "ARMv7-A architecture with hard float, Thumb-2 and NEON, using the EABI hard-float application binary interface (ABI), and Linux-Libre kernel." msgstr "ARMv7-A-Architektur mit „hard float“, Thumb-2 und NEON, für die EABI „hard-float application binary interface“, mit Linux-Libre als Kernel." #. type: item -#: guix-git/doc/guix.texi:530 +#: guix-git/doc/guix.texi:531 #, no-wrap msgid "aarch64-linux" msgstr "aarch64-linux" #. type: table -#: guix-git/doc/guix.texi:532 +#: guix-git/doc/guix.texi:533 msgid "little-endian 64-bit ARMv8-A processors, Linux-Libre kernel." msgstr "64-Bit-ARMv8-A-Prozessoren, little-endian, mit Linux-Libre als Kernel." #. type: item -#: guix-git/doc/guix.texi:533 +#: guix-git/doc/guix.texi:534 #, no-wrap msgid "i586-gnu" msgstr "i586-gnu" #. type: table -#: guix-git/doc/guix.texi:536 +#: guix-git/doc/guix.texi:537 msgid "@uref{https://hurd.gnu.org, GNU/Hurd} on the Intel 32-bit architecture (IA32)." msgstr "@uref{https://hurd.gnu.org, GNU/Hurd} auf der Intel-32-Bit-Architektur (IA32)." #. type: table -#: guix-git/doc/guix.texi:542 +#: guix-git/doc/guix.texi:543 msgid "This configuration is experimental and under development. The easiest way for you to give it a try is by setting up an instance of @code{hurd-vm-service-type} on your GNU/Linux machine (@pxref{transparent-emulation-qemu, @code{hurd-vm-service-type}}). @xref{Contributing}, on how to help!" msgstr "Diese Konfiguration ist experimentell und befindet sich noch in der Entwicklung. Wenn Sie sie ausprobieren möchten, ist es am einfachsten, eine Instanz des Diensttyps @code{hurd-vm-service-type} auf Ihrer GNU/Linux-Maschine einzurichten (siehe @ref{transparent-emulation-qemu, @code{hurd-vm-service-type}}). Siehe auch @ref{Contributing} für Informationen, wie Sie helfen können!" #. type: item -#: guix-git/doc/guix.texi:543 +#: guix-git/doc/guix.texi:544 #, no-wrap msgid "mips64el-linux (unsupported)" msgstr "mips64el-linux (eingeschränkte Unterstützung)" #. type: table -#: guix-git/doc/guix.texi:549 +#: guix-git/doc/guix.texi:550 msgid "little-endian 64-bit MIPS processors, specifically the Loongson series, n32 ABI, and Linux-Libre kernel. This configuration is no longer fully supported; in particular, there is no ongoing work to ensure that this architecture still works. Should someone decide they wish to revive this architecture then the code is still available." msgstr "64-Bit-MIPS-Prozessoren, little-endian, speziell die Loongson-Reihe, n32-ABI, mit Linux-Libre als Kernel. Diese Konfiguration wird nicht länger in vollem Umfang unterstützt; insbesondere gibt es @emph{keine} laufenden Bemühungen, die Funktionsfähigkeit dieser Architektur sicherzustellen. Wenn sich jemand findet, der diese Architektur wiederbeleben will, dann ist der Code dafür noch verfügbar." #. type: item -#: guix-git/doc/guix.texi:550 +#: guix-git/doc/guix.texi:551 #, no-wrap msgid "powerpc-linux (unsupported)" msgstr "powerpc-linux (eingeschränkte Unterstützung)" #. type: table -#: guix-git/doc/guix.texi:555 +#: guix-git/doc/guix.texi:556 msgid "big-endian 32-bit PowerPC processors, specifically the PowerPC G4 with AltiVec support, and Linux-Libre kernel. This configuration is not fully supported and there is no ongoing work to ensure this architecture works." msgstr "32-Bit-PowerPC-Prozessoren, big-endian, speziell der PowerPC G4 mit AltiVec, mit Linux-Libre als Kernel. Diese Konfiguration wird @emph{nicht} in vollem Umfang unterstützt und es gibt @emph{keine} laufenden Bemühungen, die Funktionsfähigkeit dieser Architektur sicherzustellen." #. type: table -#: guix-git/doc/guix.texi:566 +#: guix-git/doc/guix.texi:567 msgid "little-endian 64-bit Power ISA processors, Linux-Libre kernel. This includes POWER9 systems such as the @uref{https://www.fsf.org/news/talos-ii-mainboard-and-talos-ii-lite-mainboard-now-fsf-certified-to-respect-your-freedom, RYF Talos II mainboard}. This platform is available as a \"technology preview\": although it is supported, substitutes are not yet available from the build farm (@pxref{Substitutes}), and some packages may fail to build (@pxref{Tracking Bugs and Patches}). That said, the Guix community is actively working on improving this support, and now is a great time to try it and get involved!" msgstr "64-Bit-Prozessoren mit Power-Befehlssatz, little-endian, mit Linux-Libre als Kernel. Dazu gehören POWER9-Systeme wie die @uref{https://www.fsf.org/news/talos-ii-mainboard-and-talos-ii-lite-mainboard-now-fsf-certified-to-respect-your-freedom, RYF-zertifizierte Talos-II-Hauptplatine}. Bei der Plattform handelt es sich um eine „Technologievorschau“; obwohl sie unterstützt wird, gibt es noch keine Substitute von der Erstellungsfarm (siehe @ref{Substitutes}) und bei manchen Paketen könnte die Erstellung fehlschlagen (siehe @ref{Tracking Bugs and Patches}). Dennoch arbeitet die Guix-Gemeinde aktiv daran, diese Unterstützung auszubauen, und jetzt ist eine gute Gelegenheit, sie auszuprobieren und mitzumachen!" -#. type: Plain text +#. type: item +#: guix-git/doc/guix.texi:568 +#, no-wrap +msgid "riscv64-linux" +msgstr "riscv64-linux" + +#. type: table #: guix-git/doc/guix.texi:576 +msgid "little-endian 64-bit RISC-V processors, specifically RV64GC, and Linux-Libre kernel. This playform is available as a \"technology preview\": although it is supported, substitutes are not yet available from the build farm (@pxref{Substitutes}), and some packages may fail to build (@pxref{Tracking Bugs and Patches}). That said, the Guix community is actively working on improving this support, and now is a great time to try it and get involved!" +msgstr "64-Bit-Prozessoren mit RISC-V-Befehlssatz, little-endian, speziell der RV64GC, mit Linux-Libre als Kernel. Bei der Plattform handelt es sich um eine „Technologievorschau“; obwohl sie unterstützt wird, gibt es noch keine Substitute von der Erstellungsfarm (siehe @ref{Substitutes}) und bei manchen Paketen könnte die Erstellung fehlschlagen (siehe @ref{Tracking Bugs and Patches}). Dennoch arbeitet die Guix-Gemeinde aktiv daran, diese Unterstützung auszubauen, und jetzt ist eine gute Gelegenheit, sie auszuprobieren und mitzumachen!" + +#. type: Plain text +#: guix-git/doc/guix.texi:586 msgid "With Guix@tie{}System, you @emph{declare} all aspects of the operating system configuration and Guix takes care of instantiating the configuration in a transactional, reproducible, and stateless fashion (@pxref{System Configuration}). Guix System uses the Linux-libre kernel, the Shepherd initialization system (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}), the well-known GNU utilities and tool chain, as well as the graphical environment or system services of your choice." msgstr "Mit Guix@tie{}System @emph{deklarieren} Sie alle Aspekte der Betriebssystemkonfiguration und Guix kümmert sich darum, die Konfiguration auf transaktionsbasierte, reproduzierbare und zustandslose Weise zu instanziieren (siehe @ref{System Configuration}). Guix System benutzt den Kernel Linux-libre, das Shepherd-Initialisierungssystem (siehe @ref{Introduction,,, shepherd, The GNU Shepherd Manual}), die wohlbekannten GNU-Werkzeuge mit der zugehörigen Werkzeugkette sowie die grafische Umgebung und Systemdienste Ihrer Wahl." #. type: Plain text -#: guix-git/doc/guix.texi:579 -msgid "Guix System is available on all the above platforms except @code{mips64el-linux} and @code{powerpc64le-linux}." -msgstr "Guix System ist auf allen oben genannten Plattformen außer @code{mips64el-linux} und @code{powerpc64le-linux} verfügbar." +#: guix-git/doc/guix.texi:590 +msgid "Guix System is available on all the above platforms except @code{mips64el-linux}, @code{powerpc-linux}, @code{powerpc64le-linux} and @code{riscv64-linux}." +msgstr "Guix System ist auf allen oben genannten Plattformen außer @code{mips64el-linux}, @code{powerpc-linux}, @code{powerpc64le-linux} und @code{riscv64-linux} verfügbar." #. type: Plain text -#: guix-git/doc/guix.texi:583 +#: guix-git/doc/guix.texi:594 msgid "For information on porting to other architectures or kernels, @pxref{Porting}." msgstr "Informationen, wie auf andere Architekturen oder Kernels portiert werden kann, finden Sie im Abschnitt @ref{Porting}." #. type: Plain text -#: guix-git/doc/guix.texi:586 +#: guix-git/doc/guix.texi:597 msgid "Building this distribution is a cooperative effort, and you are invited to join! @xref{Contributing}, for information about how you can help." msgstr "Diese Distribution aufzubauen basiert auf Kooperation, und Sie sind herzlich eingeladen, dabei mitzumachen! Im Abschnitt @ref{Contributing} stehen weitere Informationen, wie Sie uns helfen können." #. type: cindex -#: guix-git/doc/guix.texi:592 +#: guix-git/doc/guix.texi:603 #, no-wrap msgid "installing Guix" msgstr "Guix installieren" #. type: quotation -#: guix-git/doc/guix.texi:604 +#: guix-git/doc/guix.texi:615 msgid "We recommend the use of this @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, shell installer script} to install Guix on top of a running GNU/Linux system, thereafter called a @dfn{foreign distro}.@footnote{This section is concerned with the installation of the package manager, which can be done on top of a running GNU/Linux system. If, instead, you want to install the complete GNU operating system, @pxref{System Installation}.} The script automates the download, installation, and initial configuration of Guix. It should be run as the root user." msgstr "Wir empfehlen, dieses @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, Shell-basierte Installationsskript} zu benutzen, um Guix auf ein bestehendes GNU/Linux-System zu installieren@tie{}— im Folgenden als @dfn{Fremddistribution} bezeichnet.@footnote{Dieser Abschnitt bezieht sich auf die Installation des Paketverwaltungswerkzeugs, das auf ein bestehendes GNU/Linux-System aufsetzend installiert werden kann. Wenn Sie stattdessen das vollständige GNU-Betriebssystem installieren möchten, lesen Sie @ref{System Installation}.} Das Skript automatisiert das Herunterladen, das Installieren und die anfängliche Konfiguration von Guix. Es sollte als der Administratornutzer „root“ ausgeführt werden." #. type: cindex -#: guix-git/doc/guix.texi:606 guix-git/doc/guix.texi:1830 +#: guix-git/doc/guix.texi:617 guix-git/doc/guix.texi:1847 #, no-wrap msgid "foreign distro" msgstr "Fremddistribution" #. type: cindex -#: guix-git/doc/guix.texi:607 +#: guix-git/doc/guix.texi:618 #, no-wrap msgid "directories related to foreign distro" msgstr "Verzeichnisse auf einer Fremddistribution" #. type: Plain text -#: guix-git/doc/guix.texi:612 +#: guix-git/doc/guix.texi:623 msgid "When installed on a foreign distro, GNU@tie{}Guix complements the available tools without interference. Its data lives exclusively in two directories, usually @file{/gnu/store} and @file{/var/guix}; other files on your system, such as @file{/etc}, are left untouched." msgstr "Wenn es auf einer Fremddistribution installiert wird, ergänzt GNU@tie{}Guix die verfügbaren Werkzeuge, ohne dass sie sich gegenseitig stören. Guix’ Daten befinden sich ausschließlich in zwei Verzeichnissen, üblicherweise @file{/gnu/store} und @file{/var/guix}; andere Dateien auf Ihrem System wie @file{/etc} bleiben unberührt." #. type: Plain text -#: guix-git/doc/guix.texi:615 +#: guix-git/doc/guix.texi:626 msgid "Once installed, Guix can be updated by running @command{guix pull} (@pxref{Invoking guix pull})." msgstr "Sobald es installiert ist, kann Guix durch Ausführen von @command{guix pull} aktualisiert werden (siehe @ref{Invoking guix pull})." #. type: Plain text -#: guix-git/doc/guix.texi:620 +#: guix-git/doc/guix.texi:631 msgid "If you prefer to perform the installation steps manually or want to tweak them, you may find the following subsections useful. They describe the software requirements of Guix, as well as how to install it manually and get ready to use it." msgstr "Sollten Sie es vorziehen, die Installationsschritte manuell durchzuführen, oder falls Sie Anpassungen daran vornehmen möchten, könnten sich die folgenden Unterabschnitte als nützlich erweisen. Diese beschreiben die Software-Voraussetzungen von Guix und wie man es manuell installiert, so dass man es benutzen kann." #. type: cindex -#: guix-git/doc/guix.texi:634 +#: guix-git/doc/guix.texi:645 #, no-wrap msgid "installing Guix from binaries" msgstr "Guix aus Binärdateien installieren" #. type: cindex -#: guix-git/doc/guix.texi:635 +#: guix-git/doc/guix.texi:646 #, no-wrap msgid "installer script" msgstr "Installations-Skript" #. type: Plain text -#: guix-git/doc/guix.texi:641 +#: guix-git/doc/guix.texi:652 msgid "This section describes how to install Guix on an arbitrary system from a self-contained tarball providing binaries for Guix and for all its dependencies. This is often quicker than installing from source, which is described in the next sections. The only requirement is to have GNU@tie{}tar and Xz." msgstr "Dieser Abschnitt beschreibt, wie sich Guix auf einem beliebigen System aus einem alle Komponenten umfassenden Tarball installieren lässt, der Binärdateien für Guix und all seine Abhängigkeiten liefert. Dies geht in der Regel schneller, als Guix aus seinen Quelldateien zu installieren, was in den nächsten Abschnitten beschrieben wird. Vorausgesetzt wird hier lediglich, dass GNU@tie{}tar und Xz verfügbar sind." #. type: quotation -#: guix-git/doc/guix.texi:649 +#: guix-git/doc/guix.texi:660 msgid "We recommend the use of this @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, shell installer script}. The script automates the download, installation, and initial configuration steps described below. It should be run as the root user. As root, you can thus run this:" msgstr "Wir empfehlen, dass Sie dieses @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, Installations-Skript für die Shell} verwenden, welches Guix automatisch herunterlädt, installiert und eine erste Konfiguration von Guix mit sich bringt. Es sollte als der Administratornutzer (als „root“) ausgeführt werden." #. type: example -#: guix-git/doc/guix.texi:655 +#: guix-git/doc/guix.texi:666 #, no-wrap msgid "" "cd /tmp\n" @@ -5338,33 +5407,33 @@ msgstr "" "./guix-install.sh\n" #. type: quotation -#: guix-git/doc/guix.texi:659 +#: guix-git/doc/guix.texi:670 msgid "When you're done, @pxref{Application Setup} for extra configuration you might need, and @ref{Getting Started} for your first steps!" msgstr "Wenn Sie das erledigt haben, werfen Sie einen Blick auf @ref{Application Setup} für weitere Einstellungen, die Sie vielleicht vornehmen möchten, und lesen Sie die ersten Schritte im @ref{Getting Started}, um loszulegen!" #. type: Plain text -#: guix-git/doc/guix.texi:662 +#: guix-git/doc/guix.texi:673 msgid "Installing goes along these lines:" msgstr "Die Installation läuft so ab:" #. type: cindex -#: guix-git/doc/guix.texi:665 +#: guix-git/doc/guix.texi:676 #, no-wrap msgid "downloading Guix binary" msgstr "Guix-Binärdatei herunterladen" #. type: enumerate -#: guix-git/doc/guix.texi:671 +#: guix-git/doc/guix.texi:682 msgid "Download the binary tarball from @indicateurl{@value{BASE-URL}/guix-binary-@value{VERSION}.x86_64-linux.tar.xz}, where @code{x86_64-linux} can be replaced with @code{i686-linux} for an @code{i686} (32-bits) machine already running the kernel Linux, and so on (@pxref{GNU Distribution})." msgstr "Laden Sie den binären Tarball von @indicateurl{@value{BASE-URL}/guix-binary-@value{VERSION}.x86_64-linux.tar.xz} herunte. Falls Sie Guix auf einer Maschine mit @code{i686}-Architektur (32@tie{}Bit) einrichten, auf der bereits der Linux-Kernel läuft, ersetzen Sie @code{x86_64-linux} durch @code{i686-linux} oder entsprechend für andere Maschinen (siehe @ref{GNU Distribution})." #. type: enumerate -#: guix-git/doc/guix.texi:675 +#: guix-git/doc/guix.texi:686 msgid "Make sure to download the associated @file{.sig} file and to verify the authenticity of the tarball against it, along these lines:" msgstr "Achten Sie darauf, auch die zugehörige @file{.sig}-Datei herunterzuladen und verifizieren Sie damit die Authentizität des Tarballs, ungefähr so:" #. type: example -#: guix-git/doc/guix.texi:679 +#: guix-git/doc/guix.texi:690 #, no-wrap msgid "" "$ wget @value{BASE-URL}/guix-binary-@value{VERSION}.x86_64-linux.tar.xz.sig\n" @@ -5374,12 +5443,12 @@ msgstr "" "$ gpg --verify guix-binary-@value{VERSION}.x86_64-linux.tar.xz.sig\n" #. type: Plain text -#: guix-git/doc/guix.texi:683 guix-git/doc/guix.texi:2173 +#: guix-git/doc/guix.texi:694 guix-git/doc/guix.texi:2190 msgid "If that command fails because you do not have the required public key, then run this command to import it:" msgstr "Falls dieser Befehl fehlschlägt, weil Sie nicht über den nötigen öffentlichen Schlüssel verfügen, können Sie ihn mit diesem Befehl importieren:" #. type: example -#: guix-git/doc/guix.texi:687 +#: guix-git/doc/guix.texi:698 #, no-wrap msgid "" "$ wget '@value{OPENPGP-SIGNING-KEY-URL}' \\\n" @@ -5389,22 +5458,22 @@ msgstr "" " -qO - | gpg --import -\n" #. type: Plain text -#: guix-git/doc/guix.texi:691 guix-git/doc/guix.texi:2181 +#: guix-git/doc/guix.texi:702 guix-git/doc/guix.texi:2198 msgid "and rerun the @code{gpg --verify} command." msgstr "und den Befehl @code{gpg --verify} erneut ausführen." #. type: Plain text -#: guix-git/doc/guix.texi:694 guix-git/doc/guix.texi:2184 +#: guix-git/doc/guix.texi:705 guix-git/doc/guix.texi:2201 msgid "Take note that a warning like ``This key is not certified with a trusted signature!'' is normal." msgstr "Beachten Sie, dass eine Warnung wie „Dieser Schlüssel trägt keine vertrauenswürdige Signatur!“ normal ist." #. type: enumerate -#: guix-git/doc/guix.texi:700 +#: guix-git/doc/guix.texi:711 msgid "Now, you need to become the @code{root} user. Depending on your distribution, you may have to run @code{su -} or @code{sudo -i}. As @code{root}, run:" msgstr "Nun müssen Sie zum Administratornutzer @code{root} wechseln. Abhängig von Ihrer Distribution müssen Sie dazu etwa @code{su -} oder @code{sudo -i} ausführen. Danach führen Sie als @code{root}-Nutzer aus:" #. type: example -#: guix-git/doc/guix.texi:706 +#: guix-git/doc/guix.texi:717 #, no-wrap msgid "" "# cd /tmp\n" @@ -5418,27 +5487,27 @@ msgstr "" "# mv var/guix /var/ && mv gnu /\n" #. type: enumerate -#: guix-git/doc/guix.texi:711 +#: guix-git/doc/guix.texi:722 msgid "This creates @file{/gnu/store} (@pxref{The Store}) and @file{/var/guix}. The latter contains a ready-to-use profile for @code{root} (see next step)." msgstr "Dadurch wird @file{/gnu/store} (siehe @ref{The Store}) und @file{/var/guix} erzeugt. Letzteres enthält ein fertiges Guix-Profil für den Administratornutzer @code{root} (wie im nächsten Schritt beschrieben)." #. type: enumerate -#: guix-git/doc/guix.texi:714 +#: guix-git/doc/guix.texi:725 msgid "Do @emph{not} unpack the tarball on a working Guix system since that would overwrite its own essential files." msgstr "Entpacken Sie den Tarball @emph{nicht} auf einem schon funktionierenden Guix-System, denn es würde seine eigenen essenziellen Dateien überschreiben." #. type: enumerate -#: guix-git/doc/guix.texi:724 +#: guix-git/doc/guix.texi:735 msgid "The @option{--warning=no-timestamp} option makes sure GNU@tie{}tar does not emit warnings about ``implausibly old time stamps'' (such warnings were triggered by GNU@tie{}tar 1.26 and older; recent versions are fine). They stem from the fact that all the files in the archive have their modification time set to 1 (which means January 1st, 1970). This is done on purpose to make sure the archive content is independent of its creation time, thus making it reproducible." msgstr "Die Befehlszeilenoption @option{--warning=no-timestamp} stellt sicher, dass GNU@tie{}tar nicht vor „unplausibel alten Zeitstempeln“ warnt (solche Warnungen traten bei GNU@tie{}tar 1.26 und älter auf, neue Versionen machen keine Probleme). Sie treten auf, weil alle Dateien im Archiv als Änderungszeitpunkt 1 eingetragen bekommen haben (das bezeichnet den 1. Januar 1970). Das ist Absicht, damit der Inhalt des Archivs nicht davon abhängt, wann es erstellt wurde, und es somit reproduzierbar wird." #. type: enumerate -#: guix-git/doc/guix.texi:728 +#: guix-git/doc/guix.texi:739 msgid "Make the profile available under @file{~root/.config/guix/current}, which is where @command{guix pull} will install updates (@pxref{Invoking guix pull}):" msgstr "Machen Sie das Profil als @file{~root/.config/guix/current} verfügbar, wo @command{guix pull} es aktualisieren kann (siehe @ref{Invoking guix pull}):" #. type: example -#: guix-git/doc/guix.texi:733 +#: guix-git/doc/guix.texi:744 #, no-wrap msgid "" "# mkdir -p ~root/.config/guix\n" @@ -5450,12 +5519,12 @@ msgstr "" " ~root/.config/guix/current\n" #. type: enumerate -#: guix-git/doc/guix.texi:737 +#: guix-git/doc/guix.texi:748 msgid "Source @file{etc/profile} to augment @env{PATH} and other relevant environment variables:" msgstr "„Sourcen“ Sie @file{etc/profile}, um @env{PATH} und andere relevante Umgebungsvariable zu ergänzen:" #. type: example -#: guix-git/doc/guix.texi:741 +#: guix-git/doc/guix.texi:752 #, no-wrap msgid "" "# GUIX_PROFILE=\"`echo ~root`/.config/guix/current\" ; \\\n" @@ -5465,22 +5534,22 @@ msgstr "" " source $GUIX_PROFILE/etc/profile\n" #. type: enumerate -#: guix-git/doc/guix.texi:746 +#: guix-git/doc/guix.texi:757 msgid "Create the group and user accounts for build users as explained below (@pxref{Build Environment Setup})." msgstr "Erzeugen Sie Nutzergruppe und Nutzerkonten für die Erstellungs-Benutzer wie folgt (siehe @ref{Build Environment Setup})." #. type: enumerate -#: guix-git/doc/guix.texi:749 +#: guix-git/doc/guix.texi:760 msgid "Run the daemon, and set it to automatically start on boot." msgstr "Führen Sie den Daemon aus, und lassen Sie ihn automatisch bei jedem Hochfahren starten." #. type: enumerate -#: guix-git/doc/guix.texi:752 +#: guix-git/doc/guix.texi:763 msgid "If your host distro uses the systemd init system, this can be achieved with these commands:" msgstr "Wenn Ihre Wirts-Distribution systemd als „init“-System verwendet, können Sie das mit folgenden Befehlen veranlassen:" #. type: example -#: guix-git/doc/guix.texi:765 +#: guix-git/doc/guix.texi:776 #, no-wrap msgid "" "# cp ~root/.config/guix/current/lib/systemd/system/gnu-store.mount \\\n" @@ -5494,12 +5563,12 @@ msgstr "" "# systemctl enable --now gnu-store.mount guix-daemon\n" #. type: enumerate -#: guix-git/doc/guix.texi:768 +#: guix-git/doc/guix.texi:779 msgid "You may also want to arrange for @command{guix gc} to run periodically:" msgstr "Außerdem, wenn Sie möchten, dass regelmäßig @command{guix gc} durchgeführt wird:" #. type: example -#: guix-git/doc/guix.texi:774 +#: guix-git/doc/guix.texi:785 #, no-wrap msgid "" "# cp ~root/.config/guix/current/lib/systemd/system/guix-gc.service \\\n" @@ -5513,17 +5582,17 @@ msgstr "" "# systemctl enable --now guix-gc.timer\n" #. type: enumerate -#: guix-git/doc/guix.texi:778 +#: guix-git/doc/guix.texi:789 msgid "You may want to edit @file{guix-gc.service} to adjust the command line options to fit your needs (@pxref{Invoking guix gc})." msgstr "Vielleicht möchten Sie die in @file{guix-gc.service} verwendeten Befehlszeilenoptionen an Ihre Bedürfnisse anpassen (siehe @ref{Invoking guix gc})." #. type: itemize -#: guix-git/doc/guix.texi:780 guix-git/doc/guix.texi:13740 +#: guix-git/doc/guix.texi:791 guix-git/doc/guix.texi:14097 msgid "If your host distro uses the Upstart init system:" msgstr "Wenn Ihre Wirts-Distribution als „init“-System Upstart verwendet:" #. type: example -#: guix-git/doc/guix.texi:786 +#: guix-git/doc/guix.texi:797 #, no-wrap msgid "" "# initctl reload-configuration\n" @@ -5537,12 +5606,12 @@ msgstr "" "# start guix-daemon\n" #. type: enumerate -#: guix-git/doc/guix.texi:789 +#: guix-git/doc/guix.texi:800 msgid "Otherwise, you can still start the daemon manually with:" msgstr "Andernfalls können Sie den Daemon immer noch manuell starten, mit:" #. type: example -#: guix-git/doc/guix.texi:793 +#: guix-git/doc/guix.texi:804 #, no-wrap msgid "" "# ~root/.config/guix/current/bin/guix-daemon \\\n" @@ -5552,12 +5621,12 @@ msgstr "" " --build-users-group=guixbuild\n" #. type: enumerate -#: guix-git/doc/guix.texi:798 +#: guix-git/doc/guix.texi:809 msgid "Make the @command{guix} command available to other users on the machine, for instance with:" msgstr "Stellen Sie den @command{guix}-Befehl auch anderen Nutzern Ihrer Maschine zur Verfügung, zum Beispiel so:" #. type: example -#: guix-git/doc/guix.texi:803 +#: guix-git/doc/guix.texi:814 #, no-wrap msgid "" "# mkdir -p /usr/local/bin\n" @@ -5569,12 +5638,12 @@ msgstr "" "# ln -s /var/guix/profiles/per-user/root/current-guix/bin/guix\n" #. type: enumerate -#: guix-git/doc/guix.texi:807 +#: guix-git/doc/guix.texi:818 msgid "It is also a good idea to make the Info version of this manual available there:" msgstr "Es ist auch eine gute Idee, die Info-Version dieses Handbuchs ebenso verfügbar zu machen:" #. type: example -#: guix-git/doc/guix.texi:813 +#: guix-git/doc/guix.texi:824 #, no-wrap msgid "" "# mkdir -p /usr/local/share/info\n" @@ -5588,24 +5657,24 @@ msgstr "" " do ln -s $i ; done\n" #. type: enumerate -#: guix-git/doc/guix.texi:819 +#: guix-git/doc/guix.texi:830 msgid "That way, assuming @file{/usr/local/share/info} is in the search path, running @command{info guix} will open this manual (@pxref{Other Info Directories,,, texinfo, GNU Texinfo}, for more details on changing the Info search path)." msgstr "Auf diese Art wird, unter der Annahme, dass bei Ihnen @file{/usr/local/share/info} im Suchpfad eingetragen ist, das Ausführen von @command{info guix.de} dieses Handbuch öffnen (siehe @ref{Other Info Directories,,, texinfo, GNU Texinfo} hat weitere Details, wie Sie den Info-Suchpfad ändern können)." #. type: cindex -#: guix-git/doc/guix.texi:821 guix-git/doc/guix.texi:3798 -#: guix-git/doc/guix.texi:16494 +#: guix-git/doc/guix.texi:832 guix-git/doc/guix.texi:3816 +#: guix-git/doc/guix.texi:16851 #, no-wrap msgid "substitutes, authorization thereof" msgstr "Substitute, deren Autorisierung" #. type: enumerate -#: guix-git/doc/guix.texi:825 +#: guix-git/doc/guix.texi:836 msgid "To use substitutes from @code{@value{SUBSTITUTE-SERVER-1}}, @code{@value{SUBSTITUTE-SERVER-2}} or a mirror (@pxref{Substitutes}), authorize them:" msgstr "Um Substitute von @code{@value{SUBSTITUTE-SERVER-1}}, @code{@value{SUBSTITUTE-SERVER-2}} oder einem Spiegelserver davon zu benutzen (siehe @ref{Substitutes}), müssen sie erst autorisiert werden:" #. type: example -#: guix-git/doc/guix.texi:831 +#: guix-git/doc/guix.texi:842 #, no-wrap msgid "" "# guix archive --authorize < \\\n" @@ -5619,49 +5688,49 @@ msgstr "" " ~root/.config/guix/current/share/guix/@value{SUBSTITUTE-SERVER-2}.pub\n" #. type: quotation -#: guix-git/doc/guix.texi:838 +#: guix-git/doc/guix.texi:849 msgid "If you do not enable substitutes, Guix will end up building @emph{everything} from source on your machine, making each installation and upgrade very expensive. @xref{On Trusting Binaries}, for a discussion of reasons why one might want do disable substitutes." msgstr "Wenn Sie Substitute abgeschaltet lassen, muss Guix @emph{alles} auf Ihrem Rechner aus dem Quellcode heraus erstellen, wodurch jede Installation und jede Aktualisierung sehr aufwendig wird. Siehe @ref{On Trusting Binaries} für eine Erörterung, aus welchen Gründen man Substitute abschalten wollen könnte." #. type: enumerate -#: guix-git/doc/guix.texi:843 +#: guix-git/doc/guix.texi:854 msgid "Each user may need to perform a few additional steps to make their Guix environment ready for use, @pxref{Application Setup}." msgstr "Alle Nutzer müssen womöglich ein paar zusätzliche Schritte ausführen, damit ihre Guix-Umgebung genutzt werden kann, siehe @ref{Application Setup}." #. type: Plain text -#: guix-git/doc/guix.texi:846 +#: guix-git/doc/guix.texi:857 msgid "Voilà, the installation is complete!" msgstr "Voilà, die Installation ist fertig!" #. type: Plain text -#: guix-git/doc/guix.texi:849 +#: guix-git/doc/guix.texi:860 msgid "You can confirm that Guix is working by installing a sample package into the root profile:" msgstr "Sie können nachprüfen, dass Guix funktioniert, indem Sie ein Beispielpaket in das root-Profil installieren:" #. type: example -#: guix-git/doc/guix.texi:852 +#: guix-git/doc/guix.texi:863 #, no-wrap msgid "# guix install hello\n" msgstr "# guix install hello\n" #. type: Plain text -#: guix-git/doc/guix.texi:856 +#: guix-git/doc/guix.texi:867 msgid "The binary installation tarball can be (re)produced and verified simply by running the following command in the Guix source tree:" msgstr "Der Tarball zur Installation aus einer Binärdatei kann einfach durch Ausführung des folgenden Befehls im Guix-Quellbaum (re-)produziert und verifiziert werden:" #. type: example -#: guix-git/doc/guix.texi:859 +#: guix-git/doc/guix.texi:870 #, no-wrap msgid "make guix-binary.@var{system}.tar.xz\n" msgstr "make guix-binary.@var{System}.tar.xz\n" #. type: Plain text -#: guix-git/doc/guix.texi:863 +#: guix-git/doc/guix.texi:874 msgid "...@: which, in turn, runs:" msgstr "…@: was wiederum dies ausführt:" #. type: example -#: guix-git/doc/guix.texi:867 +#: guix-git/doc/guix.texi:878 #, no-wrap msgid "" "guix pack -s @var{system} --localstatedir \\\n" @@ -5671,223 +5740,231 @@ msgstr "" " --profile-name=current-guix guix\n" #. type: Plain text -#: guix-git/doc/guix.texi:870 +#: guix-git/doc/guix.texi:881 msgid "@xref{Invoking guix pack}, for more info on this handy tool." msgstr "Siehe @ref{Invoking guix pack} für weitere Informationen zu diesem praktischen Werkzeug." #. type: Plain text -#: guix-git/doc/guix.texi:878 +#: guix-git/doc/guix.texi:889 msgid "This section lists requirements when building Guix from source. The build procedure for Guix is the same as for other GNU software, and is not covered here. Please see the files @file{README} and @file{INSTALL} in the Guix source tree for additional details." msgstr "Dieser Abschnitt listet Voraussetzungen auf, um Guix aus seinem Quellcode zu erstellen. Der Erstellungsprozess für Guix ist derselbe wie für andere GNU-Software und wird hier nicht beschrieben. Bitte lesen Sie die Dateien @file{README} und @file{INSTALL} im Guix-Quellbaum, um weitere Details zu erfahren." #. type: cindex -#: guix-git/doc/guix.texi:879 +#: guix-git/doc/guix.texi:890 #, no-wrap msgid "official website" msgstr "Offizieller Webauftritt" #. type: Plain text -#: guix-git/doc/guix.texi:882 +#: guix-git/doc/guix.texi:893 msgid "GNU Guix is available for download from its website at @url{https://www.gnu.org/software/guix/}." msgstr "GNU Guix kann von seinem Webauftritt unter @url{http://www.gnu.org/software/guix/} heruntergeladen werden." #. type: Plain text -#: guix-git/doc/guix.texi:884 +#: guix-git/doc/guix.texi:895 msgid "GNU Guix depends on the following packages:" msgstr "GNU Guix hat folgende Pakete als Abhängigkeiten:" #. type: item -#: guix-git/doc/guix.texi:886 -#, no-wrap -msgid "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x;" +#: guix-git/doc/guix.texi:897 +#, fuzzy, no-wrap +#| msgid "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x;" +msgid "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x," msgstr "@url{https://gnu.org/software/guile/, GNU Guile}, Version 3.0.x," +#. type: itemize +#: guix-git/doc/guix.texi:899 +#, fuzzy +#| msgid "version 0.1.0 or later;" +msgid "version 3.0.3 or later;" +msgstr "Version 0.1.0 oder neuer," + #. type: item -#: guix-git/doc/guix.texi:887 +#: guix-git/doc/guix.texi:899 #, no-wrap msgid "@url{https://notabug.org/cwebber/guile-gcrypt, Guile-Gcrypt}, version" msgstr "@url{https://notabug.org/cwebber/guile-gcrypt, Guile-Gcrypt}, Version" #. type: itemize -#: guix-git/doc/guix.texi:889 +#: guix-git/doc/guix.texi:901 msgid "0.1.0 or later;" msgstr "0.1.0 oder neuer," #. type: itemize -#: guix-git/doc/guix.texi:893 +#: guix-git/doc/guix.texi:905 msgid "@uref{https://gnutls.org/, GnuTLS}, specifically its Guile bindings (@pxref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile});" msgstr "@uref{https://gnutls.org/, GnuTLS}, im Speziellen dessen Anbindungen für Guile (siehe @ref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile})," #. type: itemize -#: guix-git/doc/guix.texi:896 +#: guix-git/doc/guix.texi:908 msgid "@uref{https://notabug.org/guile-sqlite3/guile-sqlite3, Guile-SQLite3}, version 0.1.0 or later;" msgstr "@uref{https://notabug.org/guile-sqlite3/guile-sqlite3, Guile-SQLite3}, Version 0.1.0 oder neuer," #. type: item -#: guix-git/doc/guix.texi:896 +#: guix-git/doc/guix.texi:908 #, no-wrap msgid "@uref{https://notabug.org/guile-zlib/guile-zlib, Guile-zlib}," msgstr "@uref{https://notabug.org/guile-zlib/guile-zlib, Guile-zlib}," #. type: itemize -#: guix-git/doc/guix.texi:898 +#: guix-git/doc/guix.texi:910 msgid "version 0.1.0 or later;" msgstr "Version 0.1.0 oder neuer," #. type: item -#: guix-git/doc/guix.texi:898 +#: guix-git/doc/guix.texi:910 #, no-wrap msgid "@uref{https://notabug.org/guile-lzlib/guile-lzlib, Guile-lzlib};" msgstr "@uref{https://notabug.org/guile-lzlib/guile-lzlib, Guile-lzlib}," #. type: item -#: guix-git/doc/guix.texi:899 +#: guix-git/doc/guix.texi:911 #, no-wrap msgid "@uref{https://www.nongnu.org/guile-avahi/, Guile-Avahi};" msgstr "@uref{https://www.nongnu.org/guile-avahi/, Guile-Avahi}," #. type: itemize -#: guix-git/doc/guix.texi:903 +#: guix-git/doc/guix.texi:915 msgid "@uref{https://gitlab.com/guile-git/guile-git, Guile-Git}, version 0.5.0 or later;" msgstr "@uref{https://gitlab.com/guile-git/guile-git, Guile-Git}, Version 0.5.0 oder neuer," #. type: item -#: guix-git/doc/guix.texi:903 +#: guix-git/doc/guix.texi:915 #, no-wrap msgid "@uref{https://savannah.nongnu.org/projects/guile-json/, Guile-JSON}" msgstr "@uref{https://savannah.nongnu.org/projects/guile-json/, Guile-JSON}" #. type: itemize -#: guix-git/doc/guix.texi:905 +#: guix-git/doc/guix.texi:917 msgid "4.3.0 or later;" msgstr "4.3.0 oder später," #. type: item -#: guix-git/doc/guix.texi:905 +#: guix-git/doc/guix.texi:917 #, no-wrap msgid "@url{https://www.gnu.org/software/make/, GNU Make}." msgstr "@url{https://www.gnu.org/software/make/, GNU Make}." #. type: Plain text -#: guix-git/doc/guix.texi:909 +#: guix-git/doc/guix.texi:921 msgid "The following dependencies are optional:" msgstr "Folgende Abhängigkeiten sind optional:" #. type: itemize -#: guix-git/doc/guix.texi:917 +#: guix-git/doc/guix.texi:929 msgid "Support for build offloading (@pxref{Daemon Offload Setup}) and @command{guix copy} (@pxref{Invoking guix copy}) depends on @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH}, version 0.13.0 or later." msgstr "Unterstützung für das Auslagern von Erstellungen (siehe @ref{Daemon Offload Setup}) und @command{guix copy} (siehe @ref{Invoking guix copy}) hängt von @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH}, Version 0.13.0 oder neuer, ab." #. type: itemize -#: guix-git/doc/guix.texi:922 +#: guix-git/doc/guix.texi:934 msgid "@uref{https://notabug.org/guile-zstd/guile-zstd, Guile-zstd}, for zstd compression and decompression in @command{guix publish} and for substitutes (@pxref{Invoking guix publish})." msgstr "@uref{https://notabug.org/guile-zstd/guile-zstd, Guile-zstd}, für die Kompression und Dekompression mit zstd in @command{guix publish} und für Substitute (siehe @ref{Invoking guix publish})." #. type: itemize -#: guix-git/doc/guix.texi:926 +#: guix-git/doc/guix.texi:938 msgid "@uref{https://ngyro.com/software/guile-semver.html, Guile-Semver} for the @code{crate} importer (@pxref{Invoking guix import})." msgstr "@uref{https://ngyro.com/software/guile-semver.html, Guile-Semver} für den @code{crate}-Importer (siehe @ref{Invoking guix import})." #. type: itemize -#: guix-git/doc/guix.texi:931 +#: guix-git/doc/guix.texi:943 msgid "@uref{https://www.nongnu.org/guile-lib/doc/ref/htmlprag/, Guile-Lib} for the @code{go} importer (@pxref{Invoking guix import}) and for some of the ``updaters'' (@pxref{Invoking guix refresh})." msgstr "@uref{https://www.nongnu.org/guile-lib/doc/ref/htmlprag/, Guile-Lib} für den @code{go}-Importer (siehe @ref{Invoking guix import}) und für einige der Aktualisierungsprogramme (siehe @ref{Invoking guix refresh})." #. type: itemize -#: guix-git/doc/guix.texi:935 +#: guix-git/doc/guix.texi:947 msgid "When @url{http://www.bzip.org, libbz2} is available, @command{guix-daemon} can use it to compress build logs." msgstr "Wenn @url{http://www.bzip.org, libbz2} verfügbar ist, kann @command{guix-daemon} damit Erstellungsprotokolle komprimieren." #. type: Plain text -#: guix-git/doc/guix.texi:939 +#: guix-git/doc/guix.texi:951 msgid "Unless @option{--disable-daemon} was passed to @command{configure}, the following packages are also needed:" msgstr "Sofern nicht @option{--disable-daemon} beim Aufruf von @command{configure} übergeben wurde, benötigen Sie auch folgende Pakete:" #. type: item -#: guix-git/doc/guix.texi:941 +#: guix-git/doc/guix.texi:953 #, no-wrap msgid "@url{https://gnupg.org/, GNU libgcrypt};" msgstr "@url{https://gnupg.org/, GNU libgcrypt}," #. type: item -#: guix-git/doc/guix.texi:942 +#: guix-git/doc/guix.texi:954 #, no-wrap msgid "@url{https://sqlite.org, SQLite 3};" msgstr "@url{https://sqlite.org, SQLite 3}," #. type: item -#: guix-git/doc/guix.texi:943 +#: guix-git/doc/guix.texi:955 #, no-wrap msgid "@url{https://gcc.gnu.org, GCC's g++}, with support for the" msgstr "@url{https://gcc.gnu.org, GCC's g++} mit Unterstützung für den" #. type: itemize -#: guix-git/doc/guix.texi:945 +#: guix-git/doc/guix.texi:957 msgid "C++11 standard." msgstr "C++11-Standard." #. type: cindex -#: guix-git/doc/guix.texi:947 +#: guix-git/doc/guix.texi:959 #, no-wrap msgid "state directory" msgstr "Zustandsverzeichnis" #. type: Plain text -#: guix-git/doc/guix.texi:956 +#: guix-git/doc/guix.texi:968 msgid "When configuring Guix on a system that already has a Guix installation, be sure to specify the same state directory as the existing installation using the @option{--localstatedir} option of the @command{configure} script (@pxref{Directory Variables, @code{localstatedir},, standards, GNU Coding Standards}). Usually, this @var{localstatedir} option is set to the value @file{/var}. The @command{configure} script protects against unintended misconfiguration of @var{localstatedir} so you do not inadvertently corrupt your store (@pxref{The Store})." msgstr "Sollten Sie Guix auf einem System konfigurieren, auf dem Guix bereits installiert ist, dann stellen Sie sicher, dasselbe Zustandsverzeichnis wie für die bestehende Installation zu verwenden. Benutzen Sie dazu die Befehlszeilenoption @option{--localstatedir} des @command{configure}-Skripts (siehe @ref{Directory Variables, @code{localstatedir},, standards, GNU Coding Standards}). Die @var{localstatedir}-Option wird normalerweise auf den Wert @file{/var} festgelegt. Das @command{configure}-Skript schützt vor ungewollter Fehlkonfiguration der @var{localstatedir}, damit Sie nicht versehentlich Ihren Store verfälschen (siehe @ref{The Store})." #. type: cindex -#: guix-git/doc/guix.texi:960 +#: guix-git/doc/guix.texi:972 #, no-wrap msgid "test suite" msgstr "Testkatalog" #. type: Plain text -#: guix-git/doc/guix.texi:966 +#: guix-git/doc/guix.texi:978 msgid "After a successful @command{configure} and @code{make} run, it is a good idea to run the test suite. It can help catch issues with the setup or environment, or bugs in Guix itself---and really, reporting test failures is a good way to help improve the software. To run the test suite, type:" msgstr "Nachdem @command{configure} und @code{make} erfolgreich durchgelaufen sind, ist es ratsam, den Testkatalog auszuführen. Er kann dabei helfen, Probleme mit der Einrichtung oder Systemumgebung zu finden, oder auch Probleme in Guix selbst@tie{}— und Testfehler zu melden ist eine wirklich gute Art und Weise, bei der Verbesserung von Guix mitzuhelfen. Um den Testkatalog auszuführen, geben Sie Folgendes ein:" #. type: example -#: guix-git/doc/guix.texi:969 +#: guix-git/doc/guix.texi:981 #, no-wrap msgid "make check\n" msgstr "make check\n" #. type: Plain text -#: guix-git/doc/guix.texi:976 +#: guix-git/doc/guix.texi:988 msgid "Test cases can run in parallel: you can use the @code{-j} option of GNU@tie{}make to speed things up. The first run may take a few minutes on a recent machine; subsequent runs will be faster because the store that is created for test purposes will already have various things in cache." msgstr "Testfälle können parallel ausgeführt werden. Sie können die Befehlszeiltenoption @code{-j} von GNU@tie{}make benutzen, damit es schneller geht. Der erste Durchlauf kann auf neuen Maschinen ein paar Minuten dauern, nachfolgende Ausführungen werden schneller sein, weil der für die Tests erstellte Store schon einige Dinge zwischengespeichert haben wird." #. type: Plain text -#: guix-git/doc/guix.texi:979 +#: guix-git/doc/guix.texi:991 msgid "It is also possible to run a subset of the tests by defining the @code{TESTS} makefile variable as in this example:" msgstr "Es ist auch möglich, eine Teilmenge der Tests laufen zu lassen, indem Sie die @code{TESTS}-Variable des Makefiles ähnlich wie in diesem Beispiel definieren:" #. type: example -#: guix-git/doc/guix.texi:982 +#: guix-git/doc/guix.texi:994 #, no-wrap msgid "make check TESTS=\"tests/store.scm tests/cpio.scm\"\n" msgstr "make check TESTS=\"tests/store.scm tests/cpio.scm\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:987 +#: guix-git/doc/guix.texi:999 msgid "By default, tests results are displayed at a file level. In order to see the details of every individual test cases, it is possible to define the @code{SCM_LOG_DRIVER_FLAGS} makefile variable as in this example:" msgstr "Standardmäßig werden Testergebnisse pro Datei angezeigt. Um die Details jedes einzelnen Testfalls zu sehen, können Sie wie in diesem Beispiel die @code{SCM_LOG_DRIVER_FLAGS}-Variable des Makefiles definieren:" #. type: example -#: guix-git/doc/guix.texi:990 +#: guix-git/doc/guix.texi:1002 #, no-wrap msgid "make check TESTS=\"tests/base64.scm\" SCM_LOG_DRIVER_FLAGS=\"--brief=no\"\n" msgstr "make check TESTS=\"tests/base64.scm\" SCM_LOG_DRIVER_FLAGS=\"--brief=no\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:998 +#: guix-git/doc/guix.texi:1010 msgid "The underlying SRFI 64 custom Automake test driver used for the 'check' test suite (located at @file{build-aux/test-driver.scm}) also allows selecting which test cases to run at a finer level, via its @option{--select} and @option{--exclude} options. Here's an example, to run all the test cases from the @file{tests/packages.scm} test file whose names start with ``transaction-upgrade-entry'':" msgstr "Mit dem eigens geschriebenen SRFI-64-Testtreiber für Automake, über den der „@code{check}“-Testkatalog läuft (zu finden in @file{build-aux/test-driver.scm}), können auch die Testfälle genauer ausgewählt werden, die ausgeführt werden sollen. Dazu dienen dessen Befehlszeilenoptionen @option{--select} und @option{--exclude}. Hier ist ein Beispiel, um alle Testfälle aus der Testdatei @file{tests/packages.scm} auszuführen, deren Name mit „transaction-upgrade-entry“ beginnt:" #. type: example -#: guix-git/doc/guix.texi:1002 +#: guix-git/doc/guix.texi:1014 #, no-wrap msgid "" "export SCM_LOG_DRIVER_FLAGS=\"--select=^transaction-upgrade-entry\"\n" @@ -5897,114 +5974,114 @@ msgstr "" "make check TESTS=\"tests/packages.scm\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:1008 +#: guix-git/doc/guix.texi:1020 msgid "Those wishing to inspect the results of failed tests directly from the command line can add the @option{--errors-only=yes} option to the @code{SCM_LOG_DRIVER_FLAGS} makefile variable and set the @code{VERBOSE} Automake makefile variable, as in:" msgstr "Möchte man die Ergebnisse fehlgeschlagener Tests direkt über die Befehlszeile einsehen, fügt man die Befehlszeilenoption @option{--errors-only=yes} in die Makefile-Variable @code{SCM_LOG_DRIVER_FLAGS} ein und setzt Automakes Makefile-Variable @code{VERBOSE}, etwa so:" #. type: example -#: guix-git/doc/guix.texi:1011 +#: guix-git/doc/guix.texi:1023 #, no-wrap msgid "make check SCM_LOG_DRIVER_FLAGS=\"--brief=no --errors-only=yes\" VERBOSE=1\n" msgstr "make check SCM_LOG_DRIVER_FLAGS=\"--brief=no --errors-only=yes\" VERBOSE=1\n" #. type: Plain text -#: guix-git/doc/guix.texi:1016 +#: guix-git/doc/guix.texi:1028 msgid "The @option{--show-duration=yes} option can be used to print the duration of the individual test cases, when used in combination with @option{--brief=no}:" msgstr "Sie können die Befehlszeilenoption @option{--show-duration=yes} benutzen, damit ausgegeben wird, wie lange jeder einzelne Testfall gebraucht hat, in Kombination mit @option{--brief=no}:" #. type: example -#: guix-git/doc/guix.texi:1019 +#: guix-git/doc/guix.texi:1031 #, no-wrap msgid "make check SCM_LOG_DRIVER_FLAGS=\"--brief=no --show-duration=yes\"\n" msgstr "make check SCM_LOG_DRIVER_FLAGS=\"--brief=no --show-duration=yes\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:1023 +#: guix-git/doc/guix.texi:1035 msgid "@xref{Parallel Test Harness,,,automake,GNU Automake} for more information about the Automake Parallel Test Harness." msgstr "Siehe @ref{Parallel Test Harness,,,automake,GNU Automake} für mehr Informationen über den parallelen Testrahmen von Automake." #. type: Plain text -#: guix-git/doc/guix.texi:1028 +#: guix-git/doc/guix.texi:1040 msgid "Upon failure, please email @email{bug-guix@@gnu.org} and attach the @file{test-suite.log} file. Please specify the Guix version being used as well as version numbers of the dependencies (@pxref{Requirements}) in your message." msgstr "Kommt es zum Fehlschlag, senden Sie bitte eine E-Mail an @email{bug-guix@@gnu.org} und fügen Sie die Datei @file{test-suite.log} als Anhang bei. Bitte geben Sie dabei in Ihrer Nachricht die benutzte Version von Guix an sowie die Versionsnummern der Abhängigkeiten (siehe @ref{Requirements})." #. type: Plain text -#: guix-git/doc/guix.texi:1032 +#: guix-git/doc/guix.texi:1044 msgid "Guix also comes with a whole-system test suite that tests complete Guix System instances. It can only run on systems where Guix is already installed, using:" msgstr "Guix wird auch mit einem Testkatalog für das ganze System ausgeliefert, der vollständige Instanzen des „Guix System“-Betriebssystems testet. Er kann nur auf Systemen benutzt werden, auf denen Guix bereits installiert ist, mit folgendem Befehl:" #. type: example -#: guix-git/doc/guix.texi:1035 +#: guix-git/doc/guix.texi:1047 #, no-wrap msgid "make check-system\n" msgstr "make check-system\n" #. type: Plain text -#: guix-git/doc/guix.texi:1039 +#: guix-git/doc/guix.texi:1051 msgid "or, again, by defining @code{TESTS} to select a subset of tests to run:" msgstr "Oder, auch hier, indem Sie @code{TESTS} definieren, um eine Teilmenge der auszuführenden Tests anzugeben:" #. type: example -#: guix-git/doc/guix.texi:1042 +#: guix-git/doc/guix.texi:1054 #, no-wrap msgid "make check-system TESTS=\"basic mcron\"\n" msgstr "make check-system TESTS=\"basic mcron\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:1050 +#: guix-git/doc/guix.texi:1062 msgid "These system tests are defined in the @code{(gnu tests @dots{})} modules. They work by running the operating systems under test with lightweight instrumentation in a virtual machine (VM). They can be computationally intensive or rather cheap, depending on whether substitutes are available for their dependencies (@pxref{Substitutes}). Some of them require a lot of storage space to hold VM images." msgstr "Diese Systemtests sind in den @code{(gnu tests …)}-Modulen definiert. Sie funktionieren, indem Sie das getestete Betriebssystem mitsamt schlichter Instrumentierung in einer virtuellen Maschine (VM) ausführen. Die Tests können aufwendige Berechnungen durchführen oder sie günstig umgehen, je nachdem, ob für ihre Abhängigkeiten Substitute zur Verfügung stehen (siehe @ref{Substitutes}). Manche von ihnen nehmen viel Speicherplatz in Anspruch, um die VM-Abbilder zu speichern." #. type: Plain text -#: guix-git/doc/guix.texi:1053 +#: guix-git/doc/guix.texi:1065 msgid "Again in case of test failures, please send @email{bug-guix@@gnu.org} all the details." msgstr "Auch hier gilt: Falls Testfehler auftreten, senden Sie bitte alle Details an @email{bug-guix@@gnu.org}." #. type: cindex -#: guix-git/doc/guix.texi:1057 +#: guix-git/doc/guix.texi:1069 #, no-wrap msgid "daemon" msgstr "Daemon" #. type: Plain text -#: guix-git/doc/guix.texi:1065 +#: guix-git/doc/guix.texi:1077 msgid "Operations such as building a package or running the garbage collector are all performed by a specialized process, the @dfn{build daemon}, on behalf of clients. Only the daemon may access the store and its associated database. Thus, any operation that manipulates the store goes through the daemon. For instance, command-line tools such as @command{guix package} and @command{guix build} communicate with the daemon (@i{via} remote procedure calls) to instruct it what to do." msgstr "Operationen wie das Erstellen eines Pakets oder Laufenlassen des Müllsammlers werden alle durch einen spezialisierten Prozess durchgeführt, den @dfn{Erstellungs-Daemon}, im Auftrag seiner Kunden (den Clients). Nur der Daemon darf auf den Store und seine zugehörige Datenbank zugreifen. Daher wird jede den Store verändernde Operation durch den Daemon durchgeführt. Zum Beispiel kommunizieren Befehlszeilenwerkzeuge wie @command{guix package} und @command{guix build} mit dem Daemon (mittels entfernter Prozeduraufrufe), um ihm Anweisungen zu geben, was er tun soll." #. type: Plain text -#: guix-git/doc/guix.texi:1069 +#: guix-git/doc/guix.texi:1081 msgid "The following sections explain how to prepare the build daemon's environment. See also @ref{Substitutes}, for information on how to allow the daemon to download pre-built binaries." msgstr "Folgende Abschnitte beschreiben, wie Sie die Umgebung des Erstellungs-Daemons ausstatten sollten. Siehe auch @ref{Substitutes} für Informationen darüber, wie Sie es dem Daemon ermöglichen, vorerstellte Binärdateien herunterzuladen." #. type: cindex -#: guix-git/doc/guix.texi:1079 guix-git/doc/guix.texi:1542 +#: guix-git/doc/guix.texi:1091 guix-git/doc/guix.texi:1559 #, no-wrap msgid "build environment" msgstr "Erstellungsumgebung" #. type: Plain text -#: guix-git/doc/guix.texi:1087 +#: guix-git/doc/guix.texi:1099 msgid "In a standard multi-user setup, Guix and its daemon---the @command{guix-daemon} program---are installed by the system administrator; @file{/gnu/store} is owned by @code{root} and @command{guix-daemon} runs as @code{root}. Unprivileged users may use Guix tools to build packages or otherwise access the store, and the daemon will do it on their behalf, ensuring that the store is kept in a consistent state, and allowing built packages to be shared among users." msgstr "In einem normalen Mehrbenutzersystem werden Guix und sein Daemon@tie{}— das Programm @command{guix-daemon}@tie{}— vom Systemadministrator installiert; @file{/gnu/store} gehört @code{root} und @command{guix-daemon} läuft als @code{root}. Nicht mit erweiterten Rechten ausgestattete Nutzer können Guix-Werkzeuge benutzen, um Pakete zu erstellen oder anderweitig auf den Store zuzugreifen, und der Daemon wird dies für sie erledigen und dabei sicherstellen, dass der Store in einem konsistenten Zustand verbleibt und sich die Nutzer erstellte Pakete teilen." #. type: cindex -#: guix-git/doc/guix.texi:1088 +#: guix-git/doc/guix.texi:1100 #, no-wrap msgid "build users" msgstr "Erstellungsbenutzer" #. type: Plain text -#: guix-git/doc/guix.texi:1099 +#: guix-git/doc/guix.texi:1111 msgid "When @command{guix-daemon} runs as @code{root}, you may not want package build processes themselves to run as @code{root} too, for obvious security reasons. To avoid that, a special pool of @dfn{build users} should be created for use by build processes started by the daemon. These build users need not have a shell and a home directory: they will just be used when the daemon drops @code{root} privileges in build processes. Having several such users allows the daemon to launch distinct build processes under separate UIDs, which guarantees that they do not interfere with each other---an essential feature since builds are regarded as pure functions (@pxref{Introduction})." msgstr "Wenn @command{guix-daemon} als Administratornutzer @code{root} läuft, wollen Sie aber vielleicht dennoch nicht, dass Paketerstellungsprozesse auch als @code{root} ablaufen, aus offensichtlichen Sicherheitsgründen. Um dies zu vermeiden, sollte ein besonderer Pool aus @dfn{Erstellungsbenutzern} geschaffen werden, damit vom Daemon gestartete Erstellungsprozesse ihn benutzen. Diese Erstellungsbenutzer müssen weder eine Shell noch ein Persönliches Verzeichnis zugewiesen bekommen, sie werden lediglich benutzt, wenn der Daemon @code{root}-Rechte in Erstellungsprozessen ablegt. Mehrere solche Benutzer zu haben, ermöglicht es dem Daemon, verschiedene Erstellungsprozessen unter verschiedenen Benutzeridentifikatoren (UIDs) zu starten, was garantiert, dass sie einander nicht stören@tie{}— eine essenzielle Funktionalität, da Erstellungen als reine Funktionen angesehen werden (siehe @ref{Introduction})." #. type: Plain text -#: guix-git/doc/guix.texi:1102 +#: guix-git/doc/guix.texi:1114 msgid "On a GNU/Linux system, a build user pool may be created like this (using Bash syntax and the @code{shadow} commands):" msgstr "Auf einem GNU/Linux-System kann ein Pool von Erstellungsbenutzern wie folgt erzeugt werden (mit Bash-Syntax und den Befehlen von @code{shadow}):" #. type: example -#: guix-git/doc/guix.texi:1114 +#: guix-git/doc/guix.texi:1126 #, no-wrap msgid "" "# groupadd --system guixbuild\n" @@ -6026,139 +6103,144 @@ msgstr "" " done\n" #. type: Plain text -#: guix-git/doc/guix.texi:1124 +#: guix-git/doc/guix.texi:1136 msgid "The number of build users determines how many build jobs may run in parallel, as specified by the @option{--max-jobs} option (@pxref{Invoking guix-daemon, @option{--max-jobs}}). To use @command{guix system vm} and related commands, you may need to add the build users to the @code{kvm} group so they can access @file{/dev/kvm}, using @code{-G guixbuild,kvm} instead of @code{-G guixbuild} (@pxref{Invoking guix system})." msgstr "Die Anzahl der Erstellungsbenutzer entscheidet, wie viele Erstellungsaufträge parallel ausgeführt werden können, wie es mit der Befehlszeilenoption @option{--max-jobs} vorgegeben werden kann (siehe @ref{Invoking guix-daemon, @option{--max-jobs}}). Um @command{guix system vm} und ähnliche Befehle nutzen zu können, müssen Sie die Erstellungsbenutzer unter Umständen zur @code{kvm}-Benutzergruppe hinzufügen, damit sie Zugriff auf @file{/dev/kvm} haben, mit @code{-G guixbuild,kvm} statt @code{-G guixbuild} (siehe @ref{Invoking guix system})." #. type: Plain text -#: guix-git/doc/guix.texi:1133 +#: guix-git/doc/guix.texi:1145 msgid "The @code{guix-daemon} program may then be run as @code{root} with the following command@footnote{If your machine uses the systemd init system, dropping the @file{@var{prefix}/lib/systemd/system/guix-daemon.service} file in @file{/etc/systemd/system} will ensure that @command{guix-daemon} is automatically started. Similarly, if your machine uses the Upstart init system, drop the @file{@var{prefix}/lib/upstart/system/guix-daemon.conf} file in @file{/etc/init}.}:" msgstr "Das Programm @code{guix-daemon} kann mit dem folgenden Befehl als @code{root} gestartet werden@footnote{Wenn Ihre Maschine systemd als „init“-System verwendet, genügt es, die Datei @file{@var{prefix}/lib/systemd/system/guix-daemon.service} in @file{/etc/systemd/system} zu platzieren, damit @command{guix-daemon} automatisch gestartet wird. Ebenso können Sie, wenn Ihre Maschine Upstart als „init“-System benutzt, die Datei @file{@var{prefix}/lib/upstart/system/guix-daemon.conf} in @file{/etc/init} platzieren.}:" #. type: example -#: guix-git/doc/guix.texi:1136 guix-git/doc/guix.texi:1535 +#: guix-git/doc/guix.texi:1148 guix-git/doc/guix.texi:1552 #, no-wrap msgid "# guix-daemon --build-users-group=guixbuild\n" msgstr "# guix-daemon --build-users-group=guixbuild\n" #. type: cindex -#: guix-git/doc/guix.texi:1138 guix-git/doc/guix.texi:1540 +#: guix-git/doc/guix.texi:1150 guix-git/doc/guix.texi:1557 #, no-wrap msgid "chroot" msgstr "chroot" #. type: Plain text -#: guix-git/doc/guix.texi:1143 +#: guix-git/doc/guix.texi:1155 msgid "This way, the daemon starts build processes in a chroot, under one of the @code{guixbuilder} users. On GNU/Linux, by default, the chroot environment contains nothing but:" msgstr "Auf diese Weise startet der Daemon Erstellungsprozesse in einem chroot als einer der @code{guixbuilder}-Benutzer. Auf GNU/Linux enthält die chroot-Umgebung standardmäßig nichts außer:" #. type: itemize -#: guix-git/doc/guix.texi:1151 +#: guix-git/doc/guix.texi:1163 msgid "a minimal @code{/dev} directory, created mostly independently from the host @code{/dev}@footnote{``Mostly'', because while the set of files that appear in the chroot's @code{/dev} is fixed, most of these files can only be created if the host has them.};" msgstr "einem minimalen @code{/dev}-Verzeichnis, was größtenteils vom @code{/dev} des Wirtssystems unabhängig erstellt wurde@footnote{„Größtenteils“, denn obwohl die Menge an Dateien, die im @code{/dev} des chroots vorkommen, fest ist, können die meisten dieser Dateien nur dann erstellt werden, wenn das Wirtssystem sie auch hat.}," #. type: itemize -#: guix-git/doc/guix.texi:1155 +#: guix-git/doc/guix.texi:1167 msgid "the @code{/proc} directory; it only shows the processes of the container since a separate PID name space is used;" msgstr "dem @code{/proc}-Verzeichnis, es zeigt nur die Prozesse des Containers, weil ein separater Namensraum für Prozess-IDs (PIDs) benutzt wird," #. type: itemize -#: guix-git/doc/guix.texi:1159 +#: guix-git/doc/guix.texi:1171 msgid "@file{/etc/passwd} with an entry for the current user and an entry for user @file{nobody};" msgstr "@file{/etc/passwd} mit einem Eintrag für den aktuellen Benutzer und einem Eintrag für den Benutzer @file{nobody}," #. type: itemize -#: guix-git/doc/guix.texi:1162 +#: guix-git/doc/guix.texi:1174 msgid "@file{/etc/group} with an entry for the user's group;" msgstr "@file{/etc/group} mit einem Eintrag für die Gruppe des Benutzers," #. type: itemize -#: guix-git/doc/guix.texi:1166 +#: guix-git/doc/guix.texi:1178 msgid "@file{/etc/hosts} with an entry that maps @code{localhost} to @code{127.0.0.1};" msgstr "@file{/etc/hosts} mit einem Eintrag, der @code{localhost} auf @code{127.0.0.1} abbildet," #. type: itemize -#: guix-git/doc/guix.texi:1169 +#: guix-git/doc/guix.texi:1181 msgid "a writable @file{/tmp} directory." msgstr "einem @file{/tmp}-Verzeichnis mit Schreibrechten." #. type: Plain text -#: guix-git/doc/guix.texi:1178 +#: guix-git/doc/guix.texi:1187 +msgid "The chroot does not contain a @file{/home} directory, and the @env{HOME} environment variable is set to the non-existent @file{/homeless-shelter}. This helps to highlight inappropriate uses of @env{HOME} in the build scripts of packages." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:1195 msgid "You can influence the directory where the daemon stores build trees @i{via} the @env{TMPDIR} environment variable. However, the build tree within the chroot is always called @file{/tmp/guix-build-@var{name}.drv-0}, where @var{name} is the derivation name---e.g., @code{coreutils-8.24}. This way, the value of @env{TMPDIR} does not leak inside build environments, which avoids discrepancies in cases where build processes capture the name of their build tree." msgstr "Sie können beeinflussen, in welchem Verzeichnis der Daemon Verzeichnisbäume zur Erstellung unterbringt, indem sie den Wert der Umgebungsvariablen @env{TMPDIR} ändern. Allerdings heißt innerhalb des chroots der Erstellungsbaum immer @file{/tmp/guix-build-@var{Name}.drv-0}, wobei @var{Name} der Ableitungsname ist@tie{}— z.B.@: @code{coreutils-8.24}. Dadurch hat der Wert von @env{TMPDIR} keinen Einfluss auf die Erstellungsumgebung, wodurch Unterschiede vermieden werden, falls Erstellungsprozesse den Namen ihres Erstellungsbaumes einfangen." #. type: vindex -#: guix-git/doc/guix.texi:1179 guix-git/doc/guix.texi:4007 +#: guix-git/doc/guix.texi:1196 guix-git/doc/guix.texi:4025 #, no-wrap msgid "http_proxy" msgstr "http_proxy" #. type: vindex -#: guix-git/doc/guix.texi:1180 guix-git/doc/guix.texi:4008 +#: guix-git/doc/guix.texi:1197 guix-git/doc/guix.texi:4026 #, no-wrap msgid "https_proxy" msgstr "https_proxy" #. type: Plain text -#: guix-git/doc/guix.texi:1185 +#: guix-git/doc/guix.texi:1202 msgid "The daemon also honors the @env{http_proxy} and @env{https_proxy} environment variables for HTTP and HTTPS downloads it performs, be it for fixed-output derivations (@pxref{Derivations}) or for substitutes (@pxref{Substitutes})." msgstr "Der Daemon befolgt außerdem den Wert der Umgebungsvariablen @env{http_proxy} und @env{https_proxy} für von ihm durchgeführte HTTP- und HTTPS-Downloads, sei es für Ableitungen mit fester Ausgabe (siehe @ref{Derivations}) oder für Substitute (siehe @ref{Substitutes})." #. type: Plain text -#: guix-git/doc/guix.texi:1193 +#: guix-git/doc/guix.texi:1210 msgid "If you are installing Guix as an unprivileged user, it is still possible to run @command{guix-daemon} provided you pass @option{--disable-chroot}. However, build processes will not be isolated from one another, and not from the rest of the system. Thus, build processes may interfere with each other, and may access programs, libraries, and other files available on the system---making it much harder to view them as @emph{pure} functions." msgstr "Wenn Sie Guix als ein Benutzer ohne erweiterte Rechte installieren, ist es dennoch möglich, @command{guix-daemon} auszuführen, sofern Sie @option{--disable-chroot} übergeben. Allerdings können Erstellungsprozesse dann nicht voneinander und vom Rest des Systems isoliert werden. Daher können sich Erstellungsprozesse gegenseitig stören und auf Programme, Bibliotheken und andere Dateien zugreifen, die dem restlichen System zur Verfügung stehen@tie{}— was es deutlich schwerer macht, sie als @emph{reine} Funktionen aufzufassen." #. type: subsection -#: guix-git/doc/guix.texi:1196 +#: guix-git/doc/guix.texi:1213 #, no-wrap msgid "Using the Offload Facility" msgstr "Nutzung der Auslagerungsfunktionalität" #. type: cindex -#: guix-git/doc/guix.texi:1198 guix-git/doc/guix.texi:1601 +#: guix-git/doc/guix.texi:1215 guix-git/doc/guix.texi:1618 #, no-wrap msgid "offloading" msgstr "auslagern" #. type: cindex -#: guix-git/doc/guix.texi:1199 +#: guix-git/doc/guix.texi:1216 #, no-wrap msgid "build hook" msgstr "Build-Hook" #. type: Plain text -#: guix-git/doc/guix.texi:1218 +#: guix-git/doc/guix.texi:1235 msgid "When desired, the build daemon can @dfn{offload} derivation builds to other machines running Guix, using the @code{offload} @dfn{build hook}@footnote{This feature is available only when @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH} is present.}. When that feature is enabled, a list of user-specified build machines is read from @file{/etc/guix/machines.scm}; every time a build is requested, for instance via @code{guix build}, the daemon attempts to offload it to one of the machines that satisfy the constraints of the derivation, in particular its system types---e.g., @code{x86_64-linux}. A single machine can have multiple system types, either because its architecture natively supports it, via emulation (@pxref{transparent-emulation-qemu, Transparent Emulation with QEMU}), or both. Missing prerequisites for the build are copied over SSH to the target machine, which then proceeds with the build; upon success the output(s) of the build are copied back to the initial machine. The offload facility comes with a basic scheduler that attempts to select the best machine. The best machine is chosen among the available machines based on criteria such as:" msgstr "Wenn erwünscht, kann der Erstellungs-Daemon Ableitungserstellungen auf andere Maschinen @dfn{auslagern}, auf denen Guix läuft, mit Hilfe des @code{offload}-@dfn{Build-Hooks}@footnote{Diese Funktionalität ist nur verfügbar, wenn @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH} vorhanden ist.}. Wenn diese Funktionalität aktiviert ist, wird eine nutzerspezifizierte Liste von Erstellungsmaschinen aus @file{/etc/guix/machines.scm} gelesen. Wann immer eine Erstellung angefragt wird, zum Beispiel durch @code{guix build}, versucht der Daemon, sie an eine der Erstellungsmaschinen auszulagern, die die Einschränkungen der Ableitung erfüllen, insbesondere ihre Systemtypen@tie{}— z.B.@: @code{x86_64-linux}. Eine einzelne Maschine kann mehrere Systemtypen haben, entweder weil ihre Architektur eine native Unterstützung vorsieht, weil Emulation eingerichtet wurde (siehe @ref{transparent-emulation-qemu, Transparente Emulation mit QEMU}) oder beides. Fehlende Voraussetzungen für die Erstellung werden über SSH auf die Zielmaschine kopiert, welche dann mit der Erstellung weitermacht. Hat sie Erfolg damit, so werden die Ausgabe oder Ausgaben der Erstellung zurück auf die ursprüngliche Maschine kopiert. Die Auslagerungsfunktion verfügt über einen einfachen Planungsalgorithmus (einen Scheduler), mit dem versucht wird, die jeweils beste Maschine auszuwählen. Unter den verfügbaren wird die beste Maschine nach Kriterien wie diesen ausgewählt:" #. type: enumerate -#: guix-git/doc/guix.texi:1224 +#: guix-git/doc/guix.texi:1241 msgid "The availability of a build slot. A build machine can have as many build slots (connections) as the value of the @code{parallel-builds} field of its @code{build-machine} object." msgstr "Ob Zeitfenster für Erstellungen frei sind („build slots“). Eine Erstellungsmaschine kann so viele Erstellungszeitfenster (Verbindungen) unterhalten wie es dem Wert des @code{parallel-builds}-Feldes des @code{build-machine}-Objekts entspricht." #. type: enumerate -#: guix-git/doc/guix.texi:1228 +#: guix-git/doc/guix.texi:1245 msgid "Its relative speed, as defined via the @code{speed} field of its @code{build-machine} object." msgstr "Was ihre relative Geschwindigkeit ist, gemäß ihrer Definition im @code{speed}-Feld ihres @code{build-machine}-Objekts." #. type: enumerate -#: guix-git/doc/guix.texi:1233 +#: guix-git/doc/guix.texi:1250 msgid "Its load. The normalized machine load must be lower than a threshold value, configurable via the @code{overload-threshold} field of its @code{build-machine} object." msgstr "Ihrer Auslastung („load“). Die normalisierte Auslastung der Maschine darf einen Schwellwert nicht überschreiten. Dieser ist über das @code{overload-threshold}-Feld ihres @code{build-machine}-Objekts einstellbar." #. type: enumerate -#: guix-git/doc/guix.texi:1236 +#: guix-git/doc/guix.texi:1253 msgid "Disk space availability. More than a 100 MiB must be available." msgstr "Verfügbarem Speicherplatz auf ihrem Datenträger. Es müssen mehr als 100@tie{}MiB verfügbar sein." #. type: Plain text -#: guix-git/doc/guix.texi:1239 +#: guix-git/doc/guix.texi:1256 msgid "The @file{/etc/guix/machines.scm} file typically looks like this:" msgstr "Die Datei @file{/etc/guix/machines.scm} sieht normalerweise so aus:" #. type: lisp -#: guix-git/doc/guix.texi:1247 +#: guix-git/doc/guix.texi:1264 #, no-wrap msgid "" "(list (build-machine\n" @@ -6178,16 +6260,8 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:1253 -#, fuzzy, no-wrap -#| msgid "" -#| "(list (build-machine\n" -#| " (name \"eightysix.example.org\")\n" -#| " (systems (list \"x86_64-linux\" \"i686-linux\"))\n" -#| " (host-key \"ssh-ed25519 AAAAC3Nza@dots{}\")\n" -#| " (user \"bob\")\n" -#| " (speed 2.)) ;incredibly fast!\n" -#| "\n" +#: guix-git/doc/guix.texi:1270 +#, no-wrap msgid "" " (build-machine\n" " (name \"armeight.example.org\")\n" @@ -6196,116 +6270,118 @@ msgid "" " (user \"alice\")\n" "\n" msgstr "" -"(list (build-machine\n" -" (name \"eightysix.example.org\")\n" -" (systems (list \"x86_64-linux\" \"i686-linux\"))\n" -" (host-key \"ssh-ed25519 AAAAC3Nza…\")\n" -" (user \"bob\")\n" -" (speed 2.)) ;unglaublich schnell!\n" +" (build-machine\n" +" (name \"armeight.example.org\")\n" +" (systems (list \"aarch64-linux\"))\n" +" (host-key \"ssh-rsa AAAAB3Nza@dots{}\")\n" +" (user \"alice\")\n" "\n" #. type: lisp -#: guix-git/doc/guix.texi:1257 +#: guix-git/doc/guix.texi:1274 #, no-wrap msgid "" " ;; Remember 'guix offload' is spawned by\n" " ;; 'guix-daemon' as root.\n" " (private-key \"/root/.ssh/identity-for-guix\")))\n" msgstr "" +" ;; Weil 'guix offload' vom 'guix-daemon' als\n" +" ;; Administratornutzer root gestartet wird.\n" +" (private-key \"/root/.ssh/identität-für-guix\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:1263 +#: guix-git/doc/guix.texi:1280 msgid "In the example above we specify a list of two build machines, one for the @code{x86_64} and @code{i686} architectures and one for the @code{aarch64} architecture." msgstr "Im obigen Beispiel geben wir eine Liste mit zwei Erstellungsmaschinen vor, eine für die @code{x86_64}- und @code{i686}-Architektur und eine für die @code{aarch64}-Architektur." #. type: Plain text -#: guix-git/doc/guix.texi:1272 +#: guix-git/doc/guix.texi:1289 msgid "In fact, this file is---not surprisingly!---a Scheme file that is evaluated when the @code{offload} hook is started. Its return value must be a list of @code{build-machine} objects. While this example shows a fixed list of build machines, one could imagine, say, using DNS-SD to return a list of potential build machines discovered in the local network (@pxref{Introduction, Guile-Avahi,, guile-avahi, Using Avahi in Guile Scheme Programs}). The @code{build-machine} data type is detailed below." msgstr "Tatsächlich ist diese Datei@tie{}— wenig überraschend!@tie{}— eine Scheme-Datei, die ausgewertet wird, wenn der @code{offload}-Hook gestartet wird. Der Wert, den sie zurückliefert, muss eine Liste von @code{build-machine}-Objekten sein. Obwohl dieses Beispiel eine feste Liste von Erstellungsmaschinen zeigt, könnte man auch auf die Idee kommen, etwa mit DNS-SD eine Liste möglicher im lokalen Netzwerk entdeckter Erstellungsmaschinen zu liefern (siehe @ref{Introduction, Guile-Avahi,, guile-avahi, Using Avahi in Guile Scheme Programs}). Der Datentyp @code{build-machine} wird im Folgenden weiter ausgeführt." #. type: deftp -#: guix-git/doc/guix.texi:1273 +#: guix-git/doc/guix.texi:1290 #, no-wrap msgid "{Data Type} build-machine" msgstr "{Datentyp} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:1276 +#: guix-git/doc/guix.texi:1293 msgid "This data type represents build machines to which the daemon may offload builds. The important fields are:" msgstr "Dieser Datentyp repräsentiert Erstellungsmaschinen, an die der Daemon Erstellungen auslagern darf. Die wichtigen Felder sind:" #. type: item -#: guix-git/doc/guix.texi:1279 guix-git/doc/guix.texi:7113 -#: guix-git/doc/guix.texi:15446 guix-git/doc/guix.texi:15545 -#: guix-git/doc/guix.texi:15786 guix-git/doc/guix.texi:17314 -#: guix-git/doc/guix.texi:17935 guix-git/doc/guix.texi:18209 -#: guix-git/doc/guix.texi:21269 guix-git/doc/guix.texi:24179 -#: guix-git/doc/guix.texi:25568 guix-git/doc/guix.texi:26180 -#: guix-git/doc/guix.texi:26533 guix-git/doc/guix.texi:26574 -#: guix-git/doc/guix.texi:28735 guix-git/doc/guix.texi:31072 -#: guix-git/doc/guix.texi:31092 guix-git/doc/guix.texi:33766 -#: guix-git/doc/guix.texi:33783 guix-git/doc/guix.texi:34320 -#: guix-git/doc/guix.texi:36095 guix-git/doc/guix.texi:36422 +#: guix-git/doc/guix.texi:1296 guix-git/doc/guix.texi:7157 +#: guix-git/doc/guix.texi:15803 guix-git/doc/guix.texi:15902 +#: guix-git/doc/guix.texi:16143 guix-git/doc/guix.texi:17676 +#: guix-git/doc/guix.texi:18297 guix-git/doc/guix.texi:18571 +#: guix-git/doc/guix.texi:21631 guix-git/doc/guix.texi:24541 +#: guix-git/doc/guix.texi:25905 guix-git/doc/guix.texi:26517 +#: guix-git/doc/guix.texi:26870 guix-git/doc/guix.texi:26911 +#: guix-git/doc/guix.texi:29072 guix-git/doc/guix.texi:31437 +#: guix-git/doc/guix.texi:31457 guix-git/doc/guix.texi:34203 +#: guix-git/doc/guix.texi:34220 guix-git/doc/guix.texi:34759 +#: guix-git/doc/guix.texi:36585 guix-git/doc/guix.texi:36912 #, no-wrap msgid "name" msgstr "name" #. type: table -#: guix-git/doc/guix.texi:1281 +#: guix-git/doc/guix.texi:1298 msgid "The host name of the remote machine." msgstr "Der Rechnername (d.h.@: der Hostname) der entfernten Maschine." #. type: item -#: guix-git/doc/guix.texi:1282 +#: guix-git/doc/guix.texi:1299 #, no-wrap msgid "systems" msgstr "systems" #. type: table -#: guix-git/doc/guix.texi:1285 +#: guix-git/doc/guix.texi:1302 msgid "The system types the remote machine supports---e.g., @code{(list \"x86_64-linux\" \"i686-linux\")}." msgstr "Die Systemtypen, die die entfernte Maschine unterstützt@tie{}— z.B.@: @code{(list \"x86_64-linux\" \"i686-linux\")}." #. type: code{#1} -#: guix-git/doc/guix.texi:1286 guix-git/doc/guix.texi:17945 +#: guix-git/doc/guix.texi:1303 guix-git/doc/guix.texi:18307 #, no-wrap msgid "user" msgstr "user" #. type: table -#: guix-git/doc/guix.texi:1290 +#: guix-git/doc/guix.texi:1307 msgid "The user account to use when connecting to the remote machine over SSH. Note that the SSH key pair must @emph{not} be passphrase-protected, to allow non-interactive logins." msgstr "Das Benutzerkonto, mit dem eine Verbindung zur entfernten Maschine über SSH aufgebaut werden soll. Beachten Sie, dass das SSH-Schlüsselpaar @emph{nicht} durch eine Passphrase geschützt sein darf, damit nicht-interaktive Anmeldungen möglich sind." #. type: item -#: guix-git/doc/guix.texi:1291 +#: guix-git/doc/guix.texi:1308 #, no-wrap msgid "host-key" msgstr "host-key" #. type: table -#: guix-git/doc/guix.texi:1295 +#: guix-git/doc/guix.texi:1312 msgid "This must be the machine's SSH @dfn{public host key} in OpenSSH format. This is used to authenticate the machine when we connect to it. It is a long string that looks like this:" msgstr "Dies muss der @dfn{öffentliche SSH-Rechnerschlüssel} („Host Key“) der Maschine im OpenSSH-Format sein. Er wird benutzt, um die Identität der Maschine zu prüfen, wenn wir uns mit ihr verbinden. Er ist eine lange Zeichenkette, die ungefähr so aussieht:" #. type: example -#: guix-git/doc/guix.texi:1298 +#: guix-git/doc/guix.texi:1315 #, no-wrap msgid "ssh-ed25519 AAAAC3NzaC@dots{}mde+UhL hint@@example.org\n" msgstr "ssh-ed25519 AAAAC3NzaC…mde+UhL hint@@example.org\n" #. type: table -#: guix-git/doc/guix.texi:1303 +#: guix-git/doc/guix.texi:1320 msgid "If the machine is running the OpenSSH daemon, @command{sshd}, the host key can be found in a file such as @file{/etc/ssh/ssh_host_ed25519_key.pub}." msgstr "Wenn auf der Maschine der OpenSSH-Daemon, @command{sshd}, läuft, ist der Rechnerschlüssel in einer Datei wie @file{/etc/ssh/ssh_host_ed25519_key.pub} zu finden." #. type: table -#: guix-git/doc/guix.texi:1308 +#: guix-git/doc/guix.texi:1325 msgid "If the machine is running the SSH daemon of GNU@tie{}lsh, @command{lshd}, the host key is in @file{/etc/lsh/host-key.pub} or a similar file. It can be converted to the OpenSSH format using @command{lsh-export-key} (@pxref{Converting keys,,, lsh, LSH Manual}):" msgstr "Wenn auf der Maschine der SSH-Daemon von GNU@tie{}lsh, nämlich @command{lshd}, läuft, befindet sich der Rechnerschlüssel in @file{/etc/lsh/host-key.pub} oder einer ähnlichen Datei. Er kann ins OpenSSH-Format umgewandelt werden durch @command{lsh-export-key} (siehe @ref{Converting keys,,, lsh, LSH Manual}):" #. type: example -#: guix-git/doc/guix.texi:1312 +#: guix-git/doc/guix.texi:1329 #, no-wrap msgid "" "$ lsh-export-key --openssh < /etc/lsh/host-key.pub\n" @@ -6315,674 +6391,676 @@ msgstr "" "ssh-rsa AAAAB3NzaC1yc2EAAAAEOp8FoQAAAQEAs1eB46LV…\n" #. type: deftp -#: guix-git/doc/guix.texi:1317 +#: guix-git/doc/guix.texi:1334 msgid "A number of optional fields may be specified:" msgstr "Eine Reihe optionaler Felder kann festgelegt werden:" #. type: item -#: guix-git/doc/guix.texi:1320 guix-git/doc/guix.texi:35581 +#: guix-git/doc/guix.texi:1337 guix-git/doc/guix.texi:36061 #, no-wrap msgid "@code{port} (default: @code{22})" msgstr "@code{port} (Vorgabe: @code{22})" #. type: table -#: guix-git/doc/guix.texi:1322 +#: guix-git/doc/guix.texi:1339 msgid "Port number of SSH server on the machine." msgstr "Portnummer des SSH-Servers auf der Maschine." #. type: item -#: guix-git/doc/guix.texi:1323 +#: guix-git/doc/guix.texi:1340 #, no-wrap msgid "@code{private-key} (default: @file{~root/.ssh/id_rsa})" msgstr "@code{private-key} (Vorgabe: @file{~root/.ssh/id_rsa})" #. type: table -#: guix-git/doc/guix.texi:1326 +#: guix-git/doc/guix.texi:1343 msgid "The SSH private key file to use when connecting to the machine, in OpenSSH format. This key must not be protected with a passphrase." msgstr "Die Datei mit dem privaten SSH-Schlüssel, der beim Verbinden zur Maschine genutzt werden soll, im OpenSSH-Format. Dieser Schlüssel darf nicht mit einer Passphrase geschützt sein." #. type: table -#: guix-git/doc/guix.texi:1329 +#: guix-git/doc/guix.texi:1346 msgid "Note that the default value is the private key @emph{of the root account}. Make sure it exists if you use the default." msgstr "Beachten Sie, dass als Vorgabewert der private Schlüssel @emph{des root-Benutzers} genommen wird. Vergewissern Sie sich, dass er existiert, wenn Sie die Standardeinstellung verwenden." #. type: item -#: guix-git/doc/guix.texi:1330 +#: guix-git/doc/guix.texi:1347 #, no-wrap msgid "@code{compression} (default: @code{\"zlib@@openssh.com,zlib\"})" msgstr "@code{compression} (Vorgabe: @code{\"zlib@@openssh.com,zlib\"})" #. type: itemx -#: guix-git/doc/guix.texi:1331 +#: guix-git/doc/guix.texi:1348 #, no-wrap msgid "@code{compression-level} (default: @code{3})" msgstr "@code{compression-level} (Vorgabe: @code{3})" #. type: table -#: guix-git/doc/guix.texi:1333 +#: guix-git/doc/guix.texi:1350 msgid "The SSH-level compression methods and compression level requested." msgstr "Die Kompressionsmethoden auf SSH-Ebene und das angefragte Kompressionsniveau." #. type: table -#: guix-git/doc/guix.texi:1336 +#: guix-git/doc/guix.texi:1353 msgid "Note that offloading relies on SSH compression to reduce bandwidth usage when transferring files to and from build machines." msgstr "Beachten Sie, dass Auslagerungen SSH-Kompression benötigen, um beim Übertragen von Dateien an Erstellungsmaschinen und zurück weniger Bandbreite zu benutzen." #. type: item -#: guix-git/doc/guix.texi:1337 +#: guix-git/doc/guix.texi:1354 #, no-wrap msgid "@code{daemon-socket} (default: @code{\"/var/guix/daemon-socket/socket\"})" msgstr "@code{daemon-socket} (Vorgabe: @code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:1340 +#: guix-git/doc/guix.texi:1357 msgid "File name of the Unix-domain socket @command{guix-daemon} is listening to on that machine." msgstr "Dateiname des Unix-Sockets, auf dem @command{guix-daemon} auf der Maschine lauscht." #. type: item -#: guix-git/doc/guix.texi:1341 +#: guix-git/doc/guix.texi:1358 #, no-wrap msgid "@code{overload-threshold} (default: @code{0.6})" msgstr "@code{overload-threshold} (Vorgabe: @code{0.6})" #. type: table -#: guix-git/doc/guix.texi:1347 +#: guix-git/doc/guix.texi:1364 msgid "The load threshold above which a potential offload machine is disregarded by the offload scheduler. The value roughly translates to the total processor usage of the build machine, ranging from 0.0 (0%) to 1.0 (100%). It can also be disabled by setting @code{overload-threshold} to @code{#f}." msgstr "Der Schwellwert für die Auslastung (englisch „load“), ab der eine potentielle Auslagerungsmaschine für den Auslagerungsplaner nicht mehr in Betracht kommt. Der Wert entspricht grob der gesamten Prozessornutzung der Erstellungsmaschine. Er reicht von 0.0 (0%) bis 1.0 (100%). Wenn er ignoriert werden soll, dann setzen Sie @code{overload-threshold} auf @code{#f}." #. type: item -#: guix-git/doc/guix.texi:1348 +#: guix-git/doc/guix.texi:1365 #, no-wrap msgid "@code{parallel-builds} (default: @code{1})" msgstr "@code{parallel-builds} (Vorgabe: @code{1})" #. type: table -#: guix-git/doc/guix.texi:1350 +#: guix-git/doc/guix.texi:1367 msgid "The number of builds that may run in parallel on the machine." msgstr "Die Anzahl der Erstellungen, die auf der Maschine parallel ausgeführt werden können." #. type: item -#: guix-git/doc/guix.texi:1351 +#: guix-git/doc/guix.texi:1368 #, no-wrap msgid "@code{speed} (default: @code{1.0})" msgstr "@code{speed} (Vorgabe: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:1354 +#: guix-git/doc/guix.texi:1371 msgid "A ``relative speed factor''. The offload scheduler will tend to prefer machines with a higher speed factor." msgstr "Ein „relativer Geschwindigkeitsfaktor“. Der Auslagerungsplaner gibt tendenziell Maschinen mit höherem Geschwindigkeitsfaktor den Vorrang." #. type: item -#: guix-git/doc/guix.texi:1355 +#: guix-git/doc/guix.texi:1372 #, no-wrap msgid "@code{features} (default: @code{'()})" msgstr "@code{features} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:1360 +#: guix-git/doc/guix.texi:1377 msgid "A list of strings denoting specific features supported by the machine. An example is @code{\"kvm\"} for machines that have the KVM Linux modules and corresponding hardware support. Derivations can request features by name, and they will be scheduled on matching build machines." msgstr "Eine Liste von Zeichenketten, die besondere von der Maschine unterstützte Funktionalitäten bezeichnen. Ein Beispiel ist @code{\"kvm\"} für Maschinen, die über die KVM-Linux-Module zusammen mit entsprechender Hardware-Unterstützung verfügen. Ableitungen können Funktionalitäten dem Namen nach anfragen und werden dann auf passenden Erstellungsmaschinen eingeplant." #. type: Plain text -#: guix-git/doc/guix.texi:1366 +#: guix-git/doc/guix.texi:1383 msgid "The @command{guix} command must be in the search path on the build machines. You can check whether this is the case by running:" msgstr "Der Befehl @code{guix} muss sich im Suchpfad der Erstellungsmaschinen befinden. Um dies nachzuprüfen, können Sie Folgendes ausführen:" #. type: example -#: guix-git/doc/guix.texi:1369 +#: guix-git/doc/guix.texi:1386 #, no-wrap msgid "ssh build-machine guix repl --version\n" msgstr "ssh build-machine guix repl --version\n" #. type: Plain text -#: guix-git/doc/guix.texi:1376 +#: guix-git/doc/guix.texi:1393 msgid "There is one last thing to do once @file{machines.scm} is in place. As explained above, when offloading, files are transferred back and forth between the machine stores. For this to work, you first need to generate a key pair on each machine to allow the daemon to export signed archives of files from the store (@pxref{Invoking guix archive}):" msgstr "Es gibt noch eine weitere Sache zu tun, sobald @file{machines.scm} eingerichtet ist. Wie zuvor erklärt, werden beim Auslagern Dateien zwischen den Stores der Maschinen hin- und hergeschickt. Damit das funktioniert, müssen Sie als Erstes ein Schlüsselpaar auf jeder Maschine erzeugen, damit der Daemon signierte Archive mit den Dateien aus dem Store versenden kann (siehe @ref{Invoking guix archive}):" #. type: example -#: guix-git/doc/guix.texi:1379 guix-git/doc/guix.texi:35509 +#: guix-git/doc/guix.texi:1396 guix-git/doc/guix.texi:35965 #, no-wrap msgid "# guix archive --generate-key\n" msgstr "# guix archive --generate-key\n" #. type: Plain text -#: guix-git/doc/guix.texi:1384 +#: guix-git/doc/guix.texi:1401 msgid "Each build machine must authorize the key of the master machine so that it accepts store items it receives from the master:" msgstr "Jede Erstellungsmaschine muss den Schlüssel der Hauptmaschine autorisieren, damit diese Store-Objekte von der Hauptmaschine empfangen kann:" #. type: example -#: guix-git/doc/guix.texi:1387 +#: guix-git/doc/guix.texi:1404 #, no-wrap msgid "# guix archive --authorize < master-public-key.txt\n" msgstr "# guix archive --authorize < öffentlicher-schlüssel-hauptmaschine.txt\n" #. type: Plain text -#: guix-git/doc/guix.texi:1391 +#: guix-git/doc/guix.texi:1408 msgid "Likewise, the master machine must authorize the key of each build machine." msgstr "Andersherum muss auch die Hauptmaschine den jeweiligen Schlüssel jeder Erstellungsmaschine autorisieren." #. type: Plain text -#: guix-git/doc/guix.texi:1397 +#: guix-git/doc/guix.texi:1414 msgid "All the fuss with keys is here to express pairwise mutual trust relations between the master and the build machines. Concretely, when the master receives files from a build machine (and @i{vice versa}), its build daemon can make sure they are genuine, have not been tampered with, and that they are signed by an authorized key." msgstr "Der ganze Umstand mit den Schlüsseln soll ausdrücken, dass sich Haupt- und Erstellungsmaschinen paarweise gegenseitig vertrauen. Konkret kann der Erstellungs-Daemon auf der Hauptmaschine die Unverfälschtheit von den Erstellungsmaschinen empfangener Dateien gewährleisten (und umgekehrt), und auch dass sie nicht sabotiert wurden und mit einem autorisierten Schlüssel signiert wurden." #. type: cindex -#: guix-git/doc/guix.texi:1398 +#: guix-git/doc/guix.texi:1415 #, no-wrap msgid "offload test" msgstr "Auslagerung testen" #. type: Plain text -#: guix-git/doc/guix.texi:1401 +#: guix-git/doc/guix.texi:1418 msgid "To test whether your setup is operational, run this command on the master node:" msgstr "Um zu testen, ob Ihr System funktioniert, führen Sie diesen Befehl auf der Hauptmaschine aus:" #. type: example -#: guix-git/doc/guix.texi:1404 +#: guix-git/doc/guix.texi:1421 #, no-wrap msgid "# guix offload test\n" msgstr "# guix offload test\n" #. type: Plain text -#: guix-git/doc/guix.texi:1410 +#: guix-git/doc/guix.texi:1427 msgid "This will attempt to connect to each of the build machines specified in @file{/etc/guix/machines.scm}, make sure Guix is available on each machine, attempt to export to the machine and import from it, and report any error in the process." msgstr "Dadurch wird versucht, zu jeder Erstellungsmaschine eine Verbindung herzustellen, die in @file{/etc/guix/machines.scm} angegeben wurde, sichergestellt, dass auf jeder Guix nutzbar ist, und jeweils versucht, etwas auf die Erstellungsmaschine zu exportieren und von dort zu importieren. Dabei auftretende Fehler werden gemeldet." #. type: Plain text -#: guix-git/doc/guix.texi:1413 +#: guix-git/doc/guix.texi:1430 msgid "If you want to test a different machine file, just specify it on the command line:" msgstr "Wenn Sie stattdessen eine andere Maschinendatei verwenden möchten, geben Sie diese einfach auf der Befehlszeile an:" #. type: example -#: guix-git/doc/guix.texi:1416 +#: guix-git/doc/guix.texi:1433 #, no-wrap msgid "# guix offload test machines-qualif.scm\n" msgstr "# guix offload test maschinen-qualif.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:1420 +#: guix-git/doc/guix.texi:1437 msgid "Last, you can test the subset of the machines whose name matches a regular expression like this:" msgstr "Letztendlich können Sie hiermit nur die Teilmenge der Maschinen testen, deren Name zu einem regulären Ausdruck passt:" #. type: example -#: guix-git/doc/guix.texi:1423 +#: guix-git/doc/guix.texi:1440 #, no-wrap msgid "# guix offload test machines.scm '\\.gnu\\.org$'\n" msgstr "# guix offload test maschinen.scm '\\.gnu\\.org$'\n" #. type: cindex -#: guix-git/doc/guix.texi:1425 +#: guix-git/doc/guix.texi:1442 #, no-wrap msgid "offload status" msgstr "Auslagerungs-Lagebericht" #. type: Plain text -#: guix-git/doc/guix.texi:1428 +#: guix-git/doc/guix.texi:1445 msgid "To display the current load of all build hosts, run this command on the main node:" msgstr "Um die momentane Auslastung aller Erstellungsrechner anzuzeigen, führen Sie diesen Befehl auf dem Hauptknoten aus:" #. type: example -#: guix-git/doc/guix.texi:1431 +#: guix-git/doc/guix.texi:1448 #, no-wrap msgid "# guix offload status\n" msgstr "# guix offload status\n" #. type: cindex -#: guix-git/doc/guix.texi:1437 +#: guix-git/doc/guix.texi:1454 #, no-wrap msgid "SELinux, daemon policy" msgstr "SELinux, Policy für den Daemon" #. type: cindex -#: guix-git/doc/guix.texi:1438 +#: guix-git/doc/guix.texi:1455 #, no-wrap msgid "mandatory access control, SELinux" msgstr "Mandatory Access Control, SELinux" #. type: cindex -#: guix-git/doc/guix.texi:1439 +#: guix-git/doc/guix.texi:1456 #, no-wrap msgid "security, guix-daemon" msgstr "Sicherheit, des guix-daemon" #. type: Plain text -#: guix-git/doc/guix.texi:1445 +#: guix-git/doc/guix.texi:1462 msgid "Guix includes an SELinux policy file at @file{etc/guix-daemon.cil} that can be installed on a system where SELinux is enabled, in order to label Guix files and to specify the expected behavior of the daemon. Since Guix System does not provide an SELinux base policy, the daemon policy cannot be used on Guix System." msgstr "Guix enthält eine SELinux-Richtliniendatei („Policy“) unter @file{etc/guix-daemon.cil}, die auf einem System installiert werden kann, auf dem SELinux aktiviert ist, damit Guix-Dateien gekennzeichnet sind und um das erwartete Verhalten des Daemons anzugeben. Da Guix System keine Grundrichtlinie („Base Policy“) für SELinux bietet, kann diese Richtlinie für den Daemon auf Guix System nicht benutzt werden." #. type: subsubsection -#: guix-git/doc/guix.texi:1446 +#: guix-git/doc/guix.texi:1463 #, no-wrap msgid "Installing the SELinux policy" msgstr "Installieren der SELinux-Policy" #. type: cindex -#: guix-git/doc/guix.texi:1447 +#: guix-git/doc/guix.texi:1464 #, no-wrap msgid "SELinux, policy installation" msgstr "SELinux, Policy installieren" #. type: Plain text -#: guix-git/doc/guix.texi:1449 +#: guix-git/doc/guix.texi:1466 msgid "To install the policy run this command as root:" msgstr "Um die Richtlinie (Policy) zu installieren, führen Sie folgenden Befehl mit Administratorrechten aus:" #. type: example -#: guix-git/doc/guix.texi:1452 +#: guix-git/doc/guix.texi:1469 #, no-wrap msgid "semodule -i etc/guix-daemon.cil\n" msgstr "semodule -i etc/guix-daemon.cil\n" #. type: Plain text -#: guix-git/doc/guix.texi:1456 +#: guix-git/doc/guix.texi:1473 msgid "Then relabel the file system with @code{restorecon} or by a different mechanism provided by your system." msgstr "Kennzeichnen Sie dann das Dateisystem neu mit @code{restorecon} oder einem anderen, von Ihrem System angebotenen Mechanismus." #. type: Plain text -#: guix-git/doc/guix.texi:1461 +#: guix-git/doc/guix.texi:1478 msgid "Once the policy is installed, the file system has been relabeled, and the daemon has been restarted, it should be running in the @code{guix_daemon_t} context. You can confirm this with the following command:" msgstr "Sobald die Richtlinie installiert ist, das Dateisystem neu gekennzeichnet wurde und der Daemon neugestartet wurde, sollte er im Kontext @code{guix_daemon_t} laufen. Sie können dies mit dem folgenden Befehl nachprüfen:" #. type: example -#: guix-git/doc/guix.texi:1464 +#: guix-git/doc/guix.texi:1481 #, no-wrap msgid "ps -Zax | grep guix-daemon\n" msgstr "ps -Zax | grep guix-daemon\n" #. type: Plain text -#: guix-git/doc/guix.texi:1469 +#: guix-git/doc/guix.texi:1486 msgid "Monitor the SELinux log files as you run a command like @code{guix build hello} to convince yourself that SELinux permits all necessary operations." msgstr "Beobachten Sie die Protokolldateien von SELinux, wenn Sie einen Befehl wie @code{guix build hello} ausführen, um sich zu überzeugen, dass SELinux alle notwendigen Operationen gestattet." #. type: cindex -#: guix-git/doc/guix.texi:1471 +#: guix-git/doc/guix.texi:1488 #, no-wrap msgid "SELinux, limitations" msgstr "SELinux, Einschränkungen" #. type: Plain text -#: guix-git/doc/guix.texi:1476 +#: guix-git/doc/guix.texi:1493 msgid "This policy is not perfect. Here is a list of limitations or quirks that should be considered when deploying the provided SELinux policy for the Guix daemon." msgstr "Diese Richtlinie ist nicht perfekt. Im Folgenden finden Sie eine Liste von Einschränkungen oder merkwürdigen Verhaltensweisen, die bedacht werden sollten, wenn man die mitgelieferte SELinux-Richtlinie für den Guix-Daemon einspielt." #. type: enumerate -#: guix-git/doc/guix.texi:1483 +#: guix-git/doc/guix.texi:1500 msgid "@code{guix_daemon_socket_t} isn’t actually used. None of the socket operations involve contexts that have anything to do with @code{guix_daemon_socket_t}. It doesn’t hurt to have this unused label, but it would be preferable to define socket rules for only this label." msgstr "@code{guix_daemon_socket_t} wird nicht wirklich benutzt. Keine der Socket-Operationen benutzt Kontexte, die irgendetwas mit @code{guix_daemon_socket_t} zu tun haben. Es schadet nicht, diese ungenutzte Kennzeichnung zu haben, aber es wäre besser, für die Kennzeichnung auch Socket-Regeln festzulegen." #. type: enumerate -#: guix-git/doc/guix.texi:1494 +#: guix-git/doc/guix.texi:1511 msgid "@code{guix gc} cannot access arbitrary links to profiles. By design, the file label of the destination of a symlink is independent of the file label of the link itself. Although all profiles under $localstatedir are labelled, the links to these profiles inherit the label of the directory they are in. For links in the user’s home directory this will be @code{user_home_t}. But for links from the root user’s home directory, or @file{/tmp}, or the HTTP server’s working directory, etc, this won’t work. @code{guix gc} would be prevented from reading and following these links." msgstr "@code{guix gc} kann nicht auf beliebige Verknüpfungen zu Profilen zugreifen. Die Kennzeichnung des Ziels einer symbolischen Verknüpfung ist notwendigerweise unabhängig von der Dateikennzeichnung der Verknüpfung. Obwohl alle Profile unter $localstatedir gekennzeichnet sind, erben die Verknüpfungen auf diese Profile die Kennzeichnung desjenigen Verzeichnisses, in dem sie sich befinden. Für Verknüpfungen im Persönlichen Verzeichnis des Benutzers ist das @code{user_home_t}, aber Verknüpfungen aus dem Persönlichen Verzeichnis des Administratornutzers, oder @file{/tmp}, oder das Arbeitsverzeichnis des HTTP-Servers, etc., funktioniert das nicht. @code{guix gc} würde es nicht gestattet, diese Verknüpfungen auszulesen oder zu verfolgen." #. type: enumerate -#: guix-git/doc/guix.texi:1499 +#: guix-git/doc/guix.texi:1516 msgid "The daemon’s feature to listen for TCP connections might no longer work. This might require extra rules, because SELinux treats network sockets differently from files." msgstr "Die vom Daemon gebotene Funktionalität, auf TCP-Verbindungen zu lauschen, könnte nicht mehr funktionieren. Dies könnte zusätzliche Regeln brauchen, weil SELinux Netzwerk-Sockets anders behandelt als Dateien." #. type: enumerate -#: guix-git/doc/guix.texi:1510 +#: guix-git/doc/guix.texi:1527 msgid "Currently all files with a name matching the regular expression @code{/gnu/store/.+-(guix-.+|profile)/bin/guix-daemon} are assigned the label @code{guix_daemon_exec_t}; this means that @emph{any} file with that name in any profile would be permitted to run in the @code{guix_daemon_t} domain. This is not ideal. An attacker could build a package that provides this executable and convince a user to install and run it, which lifts it into the @code{guix_daemon_t} domain. At that point SELinux could not prevent it from accessing files that are allowed for processes in that domain." msgstr "Derzeit wird allen Dateien mit einem Namen, der zum regulären Ausdruck @code{/gnu/store/.+-(guix-.+|profile)/bin/guix-daemon} passt, die Kennzeichnung @code{guix_daemon_exec_t} zugewiesen, wodurch @emph{jeder beliebigen} Datei mit diesem Namen in irgendeinem Profil gestattet wäre, in der Domäne @code{guix_daemon_t} ausgeführt zu werden. Das ist nicht ideal. Ein Angreifer könnte ein Paket erstellen, dass solch eine ausführbare Datei enthält, und den Nutzer überzeugen, es zu installieren und auszuführen. Dadurch käme es in die Domäne @code{guix_daemon_t}. Ab diesem Punkt könnte SELinux nicht mehr verhindern, dass es auf Dateien zugreift, auf die Prozesse in dieser Domäne zugreifen dürfen." #. type: enumerate -#: guix-git/doc/guix.texi:1515 +#: guix-git/doc/guix.texi:1532 msgid "You will need to relabel the store directory after all upgrades to @file{guix-daemon}, such as after running @code{guix pull}. Assuming the store is in @file{/gnu}, you can do this with @code{restorecon -vR /gnu}, or by other means provided by your operating system." msgstr "Nach jeder Aktualisierung des @file{guix-daemon}, z.B.@: nachdem Sie @code{guix pull} ausgeführt haben, müssen Sie das Store-Verzeichnis neu kennzeichnen. Angenommen, der Store befindet sich unter @file{/gnu}, dann können Sie das mit @code{restorecon -vR /gnu} bewerkstelligen oder durch andere Mittel, die Ihr Betriebssystem Ihnen zur Verfügung stellt." #. type: enumerate -#: guix-git/doc/guix.texi:1523 +#: guix-git/doc/guix.texi:1540 msgid "We could generate a much more restrictive policy at installation time, so that only the @emph{exact} file name of the currently installed @code{guix-daemon} executable would be labelled with @code{guix_daemon_exec_t}, instead of using a broad regular expression. The downside is that root would have to install or upgrade the policy at installation time whenever the Guix package that provides the effectively running @code{guix-daemon} executable is upgraded." msgstr "Wir könnten zum Zeitpunkt der Installation eine wesentlich restriktivere Richtlinie generieren, für die nur @emph{genau derselbe} Dateiname des gerade installierten @code{guix-daemon}-Programms als @code{guix_daemon_exec_t} gekennzeichnet würde, statt einen vieles umfassenden regulären Ausdruck zu benutzen. Aber dann müsste der Administratornutzer zum Zeitpunkt der Installation jedes Mal die Richtlinie installieren oder aktualisieren müssen, sobald das Guix-Paket aktualisiert wird, dass das tatsächlich in Benutzung befindliche @code{guix-daemon}-Programm enthält." #. type: section -#: guix-git/doc/guix.texi:1526 +#: guix-git/doc/guix.texi:1543 #, no-wrap msgid "Invoking @command{guix-daemon}" msgstr "Aufruf von @command{guix-daemon}" #. type: Plain text -#: guix-git/doc/guix.texi:1532 +#: guix-git/doc/guix.texi:1549 msgid "The @command{guix-daemon} program implements all the functionality to access the store. This includes launching build processes, running the garbage collector, querying the availability of a build result, etc. It is normally run as @code{root} like this:" msgstr "Das Programm @command{guix-daemon} implementiert alle Funktionalitäten, um auf den Store zuzugreifen. Dazu gehört das Starten von Erstellungsprozessen, das Ausführen des Müllsammlers, das Abfragen, ob ein Erstellungsergebnis verfügbar ist, etc. Normalerweise wird er so als Administratornutzer (@code{root}) gestartet:" #. type: Plain text -#: guix-git/doc/guix.texi:1539 +#: guix-git/doc/guix.texi:1556 msgid "For details on how to set it up, @pxref{Setting Up the Daemon}." msgstr "Details, wie Sie ihn einrichten, finden Sie im Abschnitt @ref{Setting Up the Daemon}." #. type: cindex -#: guix-git/doc/guix.texi:1541 +#: guix-git/doc/guix.texi:1558 #, no-wrap msgid "container, build environment" msgstr "Container, Erstellungsumgebung" #. type: cindex -#: guix-git/doc/guix.texi:1543 guix-git/doc/guix.texi:3071 -#: guix-git/doc/guix.texi:3988 guix-git/doc/guix.texi:13753 +#: guix-git/doc/guix.texi:1560 guix-git/doc/guix.texi:3088 +#: guix-git/doc/guix.texi:4006 guix-git/doc/guix.texi:14110 #, no-wrap msgid "reproducible builds" msgstr "Reproduzierbare Erstellungen" #. type: Plain text -#: guix-git/doc/guix.texi:1555 +#: guix-git/doc/guix.texi:1572 msgid "By default, @command{guix-daemon} launches build processes under different UIDs, taken from the build group specified with @option{--build-users-group}. In addition, each build process is run in a chroot environment that only contains the subset of the store that the build process depends on, as specified by its derivation (@pxref{Programming Interface, derivation}), plus a set of specific system directories. By default, the latter contains @file{/dev} and @file{/dev/pts}. Furthermore, on GNU/Linux, the build environment is a @dfn{container}: in addition to having its own file system tree, it has a separate mount name space, its own PID name space, network name space, etc. This helps achieve reproducible builds (@pxref{Features})." msgstr "Standardmäßig führt @command{guix-daemon} Erstellungsprozesse mit unterschiedlichen UIDs aus, die aus der Erstellungsgruppe stammen, deren Name mit @option{--build-users-group} übergeben wurde. Außerdem läuft jeder Erstellungsprozess in einer chroot-Umgebung, die nur die Teilmenge des Stores enthält, von der der Erstellungsprozess abhängt, entsprechend seiner Ableitung (siehe @ref{Programming Interface, Ableitungen}), und ein paar bestimmte Systemverzeichnisse, darunter standardmäßig auch @file{/dev} und @file{/dev/pts}. Zudem ist die Erstellungsumgebung auf GNU/Linux eine isolierte Umgebung, d.h.@: ein @dfn{Container}: Nicht nur hat sie ihren eigenen Dateisystembaum, sie hat auch einen separaten Namensraum zum Einhängen von Dateisystemen, ihren eigenen Namensraum für PIDs, für Netzwerke, etc. Dies hilft dabei, reproduzierbare Erstellungen zu garantieren (siehe @ref{Features})." #. type: Plain text -#: guix-git/doc/guix.texi:1561 +#: guix-git/doc/guix.texi:1578 msgid "When the daemon performs a build on behalf of the user, it creates a build directory under @file{/tmp} or under the directory specified by its @env{TMPDIR} environment variable. This directory is shared with the container for the duration of the build, though within the container, the build tree is always called @file{/tmp/guix-build-@var{name}.drv-0}." msgstr "Wenn der Daemon im Auftrag des Nutzers eine Erstellung durchführt, erzeugt er ein Erstellungsverzeichnis, entweder in @file{/tmp} oder im Verzeichnis, das durch die Umgebungsvariable @env{TMPDIR} angegeben wurde. Dieses Verzeichnis wird mit dem Container geteilt, solange die Erstellung noch läuft, allerdings trägt es im Container stattdessen immer den Namen „/tmp/guix-build-NAME.drv-0“." #. type: Plain text -#: guix-git/doc/guix.texi:1565 +#: guix-git/doc/guix.texi:1582 msgid "The build directory is automatically deleted upon completion, unless the build failed and the client specified @option{--keep-failed} (@pxref{Common Build Options, @option{--keep-failed}})." msgstr "Nach Abschluss der Erstellung wird das Erstellungsverzeichnis automatisch entfernt, außer wenn die Erstellung fehlgeschlagen ist und der Client @option{--keep-failed} angegeben hat (siehe @ref{Common Build Options, @option{--keep-failed}})." #. type: Plain text -#: guix-git/doc/guix.texi:1571 +#: guix-git/doc/guix.texi:1588 msgid "The daemon listens for connections and spawns one sub-process for each session started by a client (one of the @command{guix} sub-commands). The @command{guix processes} command allows you to get an overview of the activity on your system by viewing each of the active sessions and clients. @xref{Invoking guix processes}, for more information." msgstr "Der Daemon lauscht auf Verbindungen und erstellt jeweils einen Unterprozess für jede von einem Client begonnene Sitzung (d.h.@: von einem der @command{guix}-Unterbefehle). Der Befehl @command{guix processes} zeigt Ihnen eine Übersicht solcher Systemaktivitäten; damit werden Ihnen alle aktiven Sitzungen und Clients gezeigt. Weitere Informationen finden Sie unter @ref{Invoking guix processes}." #. type: Plain text -#: guix-git/doc/guix.texi:1573 +#: guix-git/doc/guix.texi:1590 msgid "The following command-line options are supported:" msgstr "Die folgenden Befehlszeilenoptionen werden unterstützt:" #. type: item -#: guix-git/doc/guix.texi:1575 +#: guix-git/doc/guix.texi:1592 #, no-wrap msgid "--build-users-group=@var{group}" msgstr "--build-users-group=@var{Gruppe}" #. type: table -#: guix-git/doc/guix.texi:1578 +#: guix-git/doc/guix.texi:1595 msgid "Take users from @var{group} to run build processes (@pxref{Setting Up the Daemon, build users})." msgstr "Verwende die Benutzerkonten aus der @var{Gruppe}, um Erstellungsprozesse auszuführen (siehe @ref{Setting Up the Daemon, Erstellungsbenutzer})." #. type: item -#: guix-git/doc/guix.texi:1579 guix-git/doc/guix.texi:10915 +#: guix-git/doc/guix.texi:1596 guix-git/doc/guix.texi:11229 #, no-wrap msgid "--no-substitutes" msgstr "--no-substitutes" #. type: cindex -#: guix-git/doc/guix.texi:1580 guix-git/doc/guix.texi:3083 -#: guix-git/doc/guix.texi:3741 +#: guix-git/doc/guix.texi:1597 guix-git/doc/guix.texi:3100 +#: guix-git/doc/guix.texi:3759 #, no-wrap msgid "substitutes" msgstr "Substitute" #. type: table -#: guix-git/doc/guix.texi:1584 guix-git/doc/guix.texi:10919 +#: guix-git/doc/guix.texi:1601 guix-git/doc/guix.texi:11233 msgid "Do not use substitutes for build products. That is, always build things locally instead of allowing downloads of pre-built binaries (@pxref{Substitutes})." msgstr "Benutze keine Substitute für Erstellungsergebnisse. Das heißt, dass alle Objekte lokal erstellt werden müssen, und kein Herunterladen von vorab erstellten Binärdateien erlaubt ist (siehe @ref{Substitutes})." #. type: table -#: guix-git/doc/guix.texi:1588 +#: guix-git/doc/guix.texi:1605 msgid "When the daemon runs with @option{--no-substitutes}, clients can still explicitly enable substitution @i{via} the @code{set-build-options} remote procedure call (@pxref{The Store})." msgstr "Wenn der Daemon mit @option{--no-substitutes} ausgeführt wird, können Clients trotzdem Substitute explizit aktivieren über den entfernten Prozeduraufruf @code{set-build-options} (siehe @ref{The Store})." #. type: anchor{#1} -#: guix-git/doc/guix.texi:1590 +#: guix-git/doc/guix.texi:1607 msgid "daemon-substitute-urls" msgstr "daemon-substitute-urls" #. type: item -#: guix-git/doc/guix.texi:1590 guix-git/doc/guix.texi:10902 -#: guix-git/doc/guix.texi:13160 guix-git/doc/guix.texi:13899 -#: guix-git/doc/guix.texi:14124 +#: guix-git/doc/guix.texi:1607 guix-git/doc/guix.texi:11216 +#: guix-git/doc/guix.texi:13517 guix-git/doc/guix.texi:14256 +#: guix-git/doc/guix.texi:14481 #, no-wrap msgid "--substitute-urls=@var{urls}" msgstr "--substitute-urls=@var{URLs}" #. type: table -#: guix-git/doc/guix.texi:1594 +#: guix-git/doc/guix.texi:1611 msgid "Consider @var{urls} the default whitespace-separated list of substitute source URLs. When this option is omitted, @indicateurl{@value{SUBSTITUTE-URLS}} is used." msgstr "@var{URLs} als standardmäßige, leerzeichengetrennte Liste der Quell-URLs für Substitute benutzen. Wenn diese Befehlszeilenoption @emph{nicht} angegeben wird, wird @indicateurl{@value{SUBSTITUTE-URLS}} verwendet." #. type: table -#: guix-git/doc/guix.texi:1597 +#: guix-git/doc/guix.texi:1614 msgid "This means that substitutes may be downloaded from @var{urls}, as long as they are signed by a trusted signature (@pxref{Substitutes})." msgstr "Das hat zur Folge, dass Substitute von den @var{URLs} heruntergeladen werden können, solange sie mit einer Signatur versehen sind, der vertraut wird (siehe @ref{Substitutes})." #. type: table -#: guix-git/doc/guix.texi:1600 +#: guix-git/doc/guix.texi:1617 msgid "@xref{Getting Substitutes from Other Servers}, for more information on how to configure the daemon to get substitutes from other servers." msgstr "Siehe @ref{Getting Substitutes from Other Servers} für weitere Informationen, wie der Daemon konfiguriert werden kann, um Substitute von anderen Servern zu beziehen." #. type: item -#: guix-git/doc/guix.texi:1602 guix-git/doc/guix.texi:10938 +#: guix-git/doc/guix.texi:1619 guix-git/doc/guix.texi:11252 #, no-wrap msgid "--no-offload" msgstr "--no-offload" #. type: table -#: guix-git/doc/guix.texi:1606 guix-git/doc/guix.texi:10942 +#: guix-git/doc/guix.texi:1623 guix-git/doc/guix.texi:11256 msgid "Do not use offload builds to other machines (@pxref{Daemon Offload Setup}). That is, always build things locally instead of offloading builds to remote machines." msgstr "Nicht versuchen, an andere Maschinen ausgelagerte Erstellungen zu benutzen (siehe @ref{Daemon Offload Setup}). Somit wird lokal erstellt, statt Erstellungen auf entfernte Maschinen auszulagern." #. type: item -#: guix-git/doc/guix.texi:1607 +#: guix-git/doc/guix.texi:1624 #, no-wrap msgid "--cache-failures" msgstr "--cache-failures" #. type: table -#: guix-git/doc/guix.texi:1609 +#: guix-git/doc/guix.texi:1626 msgid "Cache build failures. By default, only successful builds are cached." msgstr "Fehler bei der Erstellung zwischenspeichern. Normalerweise werden nur erfolgreiche Erstellungen gespeichert." #. type: table -#: guix-git/doc/guix.texi:1614 +#: guix-git/doc/guix.texi:1631 msgid "When this option is used, @command{guix gc --list-failures} can be used to query the set of store items marked as failed; @command{guix gc --clear-failures} removes store items from the set of cached failures. @xref{Invoking guix gc}." msgstr "Wenn diese Befehlszeilenoption benutzt wird, kann @command{guix gc --list-failures} benutzt werden, um die Menge an Store-Objekten abzufragen, die als Fehlschläge markiert sind; @command{guix gc --clear-failures} entfernt Store-Objekte aus der Menge zwischengespeicherter Fehlschläge. Siehe @ref{Invoking guix gc}." #. type: item -#: guix-git/doc/guix.texi:1615 guix-git/doc/guix.texi:10968 +#: guix-git/doc/guix.texi:1632 guix-git/doc/guix.texi:11282 #, no-wrap msgid "--cores=@var{n}" msgstr "--cores=@var{n}" #. type: itemx -#: guix-git/doc/guix.texi:1616 guix-git/doc/guix.texi:10969 +#: guix-git/doc/guix.texi:1633 guix-git/doc/guix.texi:11283 #, no-wrap msgid "-c @var{n}" msgstr "-c @var{n}" #. type: table -#: guix-git/doc/guix.texi:1619 +#: guix-git/doc/guix.texi:1636 msgid "Use @var{n} CPU cores to build each derivation; @code{0} means as many as available." msgstr "@var{n} CPU-Kerne zum Erstellen jeder Ableitung benutzen; @code{0} heißt, so viele wie verfügbar sind." #. type: table -#: guix-git/doc/guix.texi:1623 +#: guix-git/doc/guix.texi:1640 msgid "The default value is @code{0}, but it may be overridden by clients, such as the @option{--cores} option of @command{guix build} (@pxref{Invoking guix build})." msgstr "Der Vorgabewert ist @code{0}, jeder Client kann jedoch eine abweichende Anzahl vorgeben, zum Beispiel mit der Befehlszeilenoption @option{--cores} von @command{guix build} (siehe @ref{Invoking guix build})." #. type: table -#: guix-git/doc/guix.texi:1627 +#: guix-git/doc/guix.texi:1644 msgid "The effect is to define the @env{NIX_BUILD_CORES} environment variable in the build process, which can then use it to exploit internal parallelism---for instance, by running @code{make -j$NIX_BUILD_CORES}." msgstr "Dadurch wird die Umgebungsvariable @env{NIX_BUILD_CORES} im Erstellungsprozess definiert, welcher sie benutzen kann, um intern parallele Ausführungen zuzulassen@tie{}— zum Beispiel durch Nutzung von @code{make -j$NIX_BUILD_CORES}." #. type: item -#: guix-git/doc/guix.texi:1628 guix-git/doc/guix.texi:10973 +#: guix-git/doc/guix.texi:1645 guix-git/doc/guix.texi:11287 #, no-wrap msgid "--max-jobs=@var{n}" msgstr "--max-jobs=@var{n}" #. type: itemx -#: guix-git/doc/guix.texi:1629 guix-git/doc/guix.texi:10974 +#: guix-git/doc/guix.texi:1646 guix-git/doc/guix.texi:11288 #, no-wrap msgid "-M @var{n}" msgstr "-M @var{n}" #. type: table -#: guix-git/doc/guix.texi:1634 +#: guix-git/doc/guix.texi:1651 msgid "Allow at most @var{n} build jobs in parallel. The default value is @code{1}. Setting it to @code{0} means that no builds will be performed locally; instead, the daemon will offload builds (@pxref{Daemon Offload Setup}), or simply fail." msgstr "Höchstenss @var{n} Erstellungsaufträge parallel bearbeiten. Der Vorgabewert liegt bei @code{1}. Wird er auf @code{0} gesetzt, werden keine Erstellungen lokal durchgeführt, stattdessen lagert der Daemon sie nur aus (siehe @ref{Daemon Offload Setup}) oder sie schlagen einfach fehl." #. type: item -#: guix-git/doc/guix.texi:1635 guix-git/doc/guix.texi:10943 +#: guix-git/doc/guix.texi:1652 guix-git/doc/guix.texi:11257 #, no-wrap msgid "--max-silent-time=@var{seconds}" msgstr "--max-silent-time=@var{Sekunden}" #. type: table -#: guix-git/doc/guix.texi:1638 guix-git/doc/guix.texi:10946 +#: guix-git/doc/guix.texi:1655 guix-git/doc/guix.texi:11260 msgid "When the build or substitution process remains silent for more than @var{seconds}, terminate it and report a build failure." msgstr "Wenn der Erstellungs- oder Substitutionsprozess länger als @var{Sekunden}-lang keine Ausgabe erzeugt, wird er abgebrochen und ein Fehler beim Erstellen gemeldet." #. type: table -#: guix-git/doc/guix.texi:1640 guix-git/doc/guix.texi:1649 +#: guix-git/doc/guix.texi:1657 guix-git/doc/guix.texi:1666 msgid "The default value is @code{0}, which disables the timeout." msgstr "Der Vorgabewert ist @code{0}, was bedeutet, dass es keine Zeitbeschränkung gibt." #. type: table -#: guix-git/doc/guix.texi:1643 +#: guix-git/doc/guix.texi:1660 msgid "The value specified here can be overridden by clients (@pxref{Common Build Options, @option{--max-silent-time}})." msgstr "Clients können einen anderen Wert als den hier angegebenen verwenden lassen (siehe @ref{Common Build Options, @option{--max-silent-time}})." #. type: item -#: guix-git/doc/guix.texi:1644 guix-git/doc/guix.texi:10950 +#: guix-git/doc/guix.texi:1661 guix-git/doc/guix.texi:11264 #, no-wrap msgid "--timeout=@var{seconds}" msgstr "--timeout=@var{Sekunden}" #. type: table -#: guix-git/doc/guix.texi:1647 guix-git/doc/guix.texi:10953 +#: guix-git/doc/guix.texi:1664 guix-git/doc/guix.texi:11267 msgid "Likewise, when the build or substitution process lasts for more than @var{seconds}, terminate it and report a build failure." msgstr "Entsprechend wird hier der Erstellungs- oder Substitutionsprozess abgebrochen und als Fehlschlag gemeldet, wenn er mehr als @var{Sekunden}-lang dauert." #. type: table -#: guix-git/doc/guix.texi:1652 +#: guix-git/doc/guix.texi:1669 msgid "The value specified here can be overridden by clients (@pxref{Common Build Options, @option{--timeout}})." msgstr "Clients können einen anderen Wert verwenden lassen (siehe @ref{Common Build Options, @option{--timeout}})." #. type: item -#: guix-git/doc/guix.texi:1653 +#: guix-git/doc/guix.texi:1670 #, no-wrap msgid "--rounds=@var{N}" msgstr "--rounds=@var{N}" #. type: table -#: guix-git/doc/guix.texi:1658 +#: guix-git/doc/guix.texi:1675 msgid "Build each derivation @var{n} times in a row, and raise an error if consecutive build results are not bit-for-bit identical. Note that this setting can be overridden by clients such as @command{guix build} (@pxref{Invoking guix build})." msgstr "Jede Ableitung @var{n}-mal hintereinander erstellen und einen Fehler melden, wenn nacheinander ausgewertete Erstellungsergebnisse nicht Bit für Bit identisch sind. Beachten Sie, dass Clients wie @command{guix build} einen anderen Wert verwenden lassen können (siehe @ref{Invoking guix build})." #. type: table -#: guix-git/doc/guix.texi:1662 guix-git/doc/guix.texi:10937 -#: guix-git/doc/guix.texi:11561 +#: guix-git/doc/guix.texi:1679 guix-git/doc/guix.texi:11251 +#: guix-git/doc/guix.texi:11875 msgid "When used in conjunction with @option{--keep-failed}, the differing output is kept in the store, under @file{/gnu/store/@dots{}-check}. This makes it easy to look for differences between the two results." msgstr "Wenn dies zusammen mit @option{--keep-failed} benutzt wird, bleiben die sich unterscheidenden Ausgaben im Store unter dem Namen @file{/gnu/store/…-check}. Dadurch können Unterschiede zwischen den beiden Ergebnissen leicht erkannt werden." #. type: item -#: guix-git/doc/guix.texi:1663 +#: guix-git/doc/guix.texi:1680 #, no-wrap msgid "--debug" msgstr "--debug" #. type: table -#: guix-git/doc/guix.texi:1665 +#: guix-git/doc/guix.texi:1682 msgid "Produce debugging output." msgstr "Informationen zur Fehlersuche ausgeben." #. type: table -#: guix-git/doc/guix.texi:1669 +#: guix-git/doc/guix.texi:1686 msgid "This is useful to debug daemon start-up issues, but then it may be overridden by clients, for example the @option{--verbosity} option of @command{guix build} (@pxref{Invoking guix build})." msgstr "Dies ist nützlich, um Probleme beim Starten des Daemons nachzuvollziehen; Clients könn aber auch ein abweichenden Wert verwenden lassen, zum Beispiel mit der Befehlszeilenoption @option{--verbosity} von @command{guix build} (siehe @ref{Invoking guix build})." #. type: item -#: guix-git/doc/guix.texi:1670 +#: guix-git/doc/guix.texi:1687 #, no-wrap msgid "--chroot-directory=@var{dir}" msgstr "--chroot-directory=@var{Verzeichnis}" #. type: table -#: guix-git/doc/guix.texi:1672 +#: guix-git/doc/guix.texi:1689 msgid "Add @var{dir} to the build chroot." msgstr "Füge das @var{Verzeichnis} zum chroot von Erstellungen hinzu." #. type: table -#: guix-git/doc/guix.texi:1678 +#: guix-git/doc/guix.texi:1695 msgid "Doing this may change the result of build processes---for instance if they use optional dependencies found in @var{dir} when it is available, and not otherwise. For that reason, it is not recommended to do so. Instead, make sure that each derivation declares all the inputs that it needs." msgstr "Dadurch kann sich das Ergebnis von Erstellungsprozessen ändern@tie{}— zum Beispiel, wenn diese optionale Abhängigkeiten aus dem @var{Verzeichnis} verwenden, wenn sie verfügbar sind, und nicht, wenn es fehlt. Deshalb ist es nicht empfohlen, dass Sie diese Befehlszeilenoption verwenden, besser sollten Sie dafür sorgen, dass jede Ableitung alle von ihr benötigten Eingabgen deklariert." #. type: item -#: guix-git/doc/guix.texi:1679 +#: guix-git/doc/guix.texi:1696 #, no-wrap msgid "--disable-chroot" msgstr "--disable-chroot" #. type: table -#: guix-git/doc/guix.texi:1681 +#: guix-git/doc/guix.texi:1698 msgid "Disable chroot builds." msgstr "Erstellungen ohne chroot durchführen." #. type: table -#: guix-git/doc/guix.texi:1686 +#: guix-git/doc/guix.texi:1703 msgid "Using this option is not recommended since, again, it would allow build processes to gain access to undeclared dependencies. It is necessary, though, when @command{guix-daemon} is running under an unprivileged user account." msgstr "Diese Befehlszeilenoption zu benutzen, wird nicht empfohlen, denn auch dadurch bekämen Erstellungsprozesse Zugriff auf nicht deklarierte Abhängigkeiten. Sie ist allerdings unvermeidlich, wenn @command{guix-daemon} auf einem Benutzerkonto ohne ausreichende Berechtigungen ausgeführt wird." #. type: item -#: guix-git/doc/guix.texi:1687 +#: guix-git/doc/guix.texi:1704 #, no-wrap msgid "--log-compression=@var{type}" msgstr "--log-compression=@var{Typ}" #. type: table -#: guix-git/doc/guix.texi:1690 +#: guix-git/doc/guix.texi:1707 msgid "Compress build logs according to @var{type}, one of @code{gzip}, @code{bzip2}, or @code{none}." msgstr "Erstellungsprotokolle werden entsprechend dem @var{Typ} komprimiert, der entweder @code{gzip}, @code{bzip2} oder @code{none} (für keine Kompression) sein muss." #. type: table -#: guix-git/doc/guix.texi:1694 -msgid "Unless @option{--lose-logs} is used, all the build logs are kept in the @var{localstatedir}. To save space, the daemon automatically compresses them with Bzip2 by default." +#: guix-git/doc/guix.texi:1711 +#, fuzzy +#| msgid "Unless @option{--lose-logs} is used, all the build logs are kept in the @var{localstatedir}. To save space, the daemon automatically compresses them with Bzip2 by default." +msgid "Unless @option{--lose-logs} is used, all the build logs are kept in the @var{localstatedir}. To save space, the daemon automatically compresses them with gzip by default." msgstr "Sofern nicht @option{--lose-logs} angegeben wurde, werden alle Erstellungsprotokolle in der @var{localstatedir} gespeichert. Um Platz zu sparen, komprimiert sie der Daemon standardmäßig automatisch mit Bzip2." #. type: item -#: guix-git/doc/guix.texi:1695 +#: guix-git/doc/guix.texi:1712 #, no-wrap msgid "--discover[=yes|no]" msgstr "--discover[=yes|no]" #. type: table -#: guix-git/doc/guix.texi:1698 guix-git/doc/guix.texi:16563 +#: guix-git/doc/guix.texi:1715 guix-git/doc/guix.texi:16920 msgid "Whether to discover substitute servers on the local network using mDNS and DNS-SD." msgstr "Ob im lokalen Netzwerk laufende Substitutserver mit mDNS und DNS-SD ermittelt werden sollen oder nicht." #. type: table -#: guix-git/doc/guix.texi:1701 +#: guix-git/doc/guix.texi:1718 msgid "This feature is still experimental. However, here are a few considerations." msgstr "Diese Funktionalität ist noch experimentell. Trotzdem sollten Sie bedenken:" #. type: enumerate -#: guix-git/doc/guix.texi:1705 +#: guix-git/doc/guix.texi:1722 msgid "It might be faster/less expensive than fetching from remote servers;" msgstr "Es könnte schneller bzw.@: günstiger sein, als Substitute von entfernten Servern zu beziehen." #. type: enumerate -#: guix-git/doc/guix.texi:1708 +#: guix-git/doc/guix.texi:1725 msgid "There are no security risks, only genuine substitutes will be used (@pxref{Substitute Authentication});" msgstr "Es gibt keine Sicherheitsrisiken, weil nur echte Substitute benutzt werden können (siehe @ref{Substitute Authentication})." #. type: enumerate -#: guix-git/doc/guix.texi:1712 +#: guix-git/doc/guix.texi:1729 msgid "An attacker advertising @command{guix publish} on your LAN cannot serve you malicious binaries, but they can learn what software you’re installing;" msgstr "Wenn ein Angreifer Ihnen sein @command{guix publish} in Ihrem LAN mitteilt, kann er Ihnen keine bösartigen Programmdateien unterjubeln, aber er kann lernen, welche Software Sie installieren." #. type: enumerate -#: guix-git/doc/guix.texi:1715 +#: guix-git/doc/guix.texi:1732 msgid "Servers may serve substitute over HTTP, unencrypted, so anyone on the LAN can see what software you’re installing." msgstr "Server können Ihnen Substitute über unverschlüsseltes HTTP anbieten, wodurch auch jeder andere in Ihrem LAN vielleicht mitschneiden könnte, welche Software Sie installieren." #. type: table -#: guix-git/doc/guix.texi:1719 +#: guix-git/doc/guix.texi:1736 msgid "It is also possible to enable or disable substitute server discovery at run-time by running:" msgstr "Das Erkennen von Substitutservern können Sie auch nachträglich zur Laufzeit an- oder abschalten („on“ oder „off“), indem Sie dies ausführen:" #. type: example -#: guix-git/doc/guix.texi:1723 +#: guix-git/doc/guix.texi:1740 #, no-wrap msgid "" "herd discover guix-daemon on\n" @@ -6992,237 +7070,237 @@ msgstr "" "herd discover guix-daemon off\n" #. type: item -#: guix-git/doc/guix.texi:1725 +#: guix-git/doc/guix.texi:1742 #, no-wrap msgid "--disable-deduplication" msgstr "--disable-deduplication" #. type: cindex -#: guix-git/doc/guix.texi:1726 guix-git/doc/guix.texi:4326 +#: guix-git/doc/guix.texi:1743 guix-git/doc/guix.texi:4344 #, no-wrap msgid "deduplication" msgstr "Deduplizieren" #. type: table -#: guix-git/doc/guix.texi:1728 +#: guix-git/doc/guix.texi:1745 msgid "Disable automatic file ``deduplication'' in the store." msgstr "Automatische Dateien-„Deduplizierung“ im Store ausschalten." #. type: table -#: guix-git/doc/guix.texi:1735 +#: guix-git/doc/guix.texi:1752 msgid "By default, files added to the store are automatically ``deduplicated'': if a newly added file is identical to another one found in the store, the daemon makes the new file a hard link to the other file. This can noticeably reduce disk usage, at the expense of slightly increased input/output load at the end of a build process. This option disables this optimization." msgstr "Standardmäßig werden zum Store hinzugefügte Objekte automatisch „dedupliziert“: Wenn eine neue Datei mit einer anderen im Store übereinstimmt, wird die neue Datei stattdessen als harte Verknüpfung auf die andere Datei angelegt. Dies reduziert den Speicherverbrauch auf der Platte merklich, jedoch steigt andererseits die Auslastung bei der Ein-/Ausgabe im Erstellungsprozess geringfügig. Durch diese Option wird keine solche Optimierung durchgeführt." #. type: item -#: guix-git/doc/guix.texi:1736 +#: guix-git/doc/guix.texi:1753 #, no-wrap msgid "--gc-keep-outputs[=yes|no]" msgstr "--gc-keep-outputs[=yes|no]" #. type: table -#: guix-git/doc/guix.texi:1739 +#: guix-git/doc/guix.texi:1756 msgid "Tell whether the garbage collector (GC) must keep outputs of live derivations." msgstr "Gibt an, ob der Müllsammler (Garbage Collector, GC) die Ausgaben lebendiger Ableitungen behalten muss („yes“) oder nicht („no“)." #. type: cindex -#: guix-git/doc/guix.texi:1740 guix-git/doc/guix.texi:4139 +#: guix-git/doc/guix.texi:1757 guix-git/doc/guix.texi:4157 #, no-wrap msgid "GC roots" msgstr "GC-Wurzeln" #. type: cindex -#: guix-git/doc/guix.texi:1741 guix-git/doc/guix.texi:4140 +#: guix-git/doc/guix.texi:1758 guix-git/doc/guix.texi:4158 #, no-wrap msgid "garbage collector roots" msgstr "Müllsammlerwurzeln" #. type: table -#: guix-git/doc/guix.texi:1747 +#: guix-git/doc/guix.texi:1764 msgid "When set to @code{yes}, the GC will keep the outputs of any live derivation available in the store---the @file{.drv} files. The default is @code{no}, meaning that derivation outputs are kept only if they are reachable from a GC root. @xref{Invoking guix gc}, for more on GC roots." msgstr "Für @code{yes} behält der Müllsammler die Ausgaben aller lebendigen Ableitungen im Store@tie{}— die @file{.drv}-Dateien. Der Vorgabewert ist aber @code{no}, so dass Ableitungsausgaben nur vorgehalten werden, wenn sie von einer Müllsammlerwurzel aus erreichbar sind. Siehe den Abschnitt @ref{Invoking guix gc} für weitere Informationen zu Müllsammlerwurzeln." #. type: item -#: guix-git/doc/guix.texi:1748 +#: guix-git/doc/guix.texi:1765 #, no-wrap msgid "--gc-keep-derivations[=yes|no]" msgstr "--gc-keep-derivations[=yes|no]" #. type: table -#: guix-git/doc/guix.texi:1751 +#: guix-git/doc/guix.texi:1768 msgid "Tell whether the garbage collector (GC) must keep derivations corresponding to live outputs." msgstr "Gibt an, ob der Müllsammler (GC) Ableitungen behalten muss („yes“), wenn sie lebendige Ausgaben haben, oder nicht („no“)." #. type: table -#: guix-git/doc/guix.texi:1757 +#: guix-git/doc/guix.texi:1774 msgid "When set to @code{yes}, as is the case by default, the GC keeps derivations---i.e., @file{.drv} files---as long as at least one of their outputs is live. This allows users to keep track of the origins of items in their store. Setting it to @code{no} saves a bit of disk space." msgstr "Für @code{yes}, den Vorgabewert, behält der Müllsammler Ableitungen@tie{}— z.B.@: @file{.drv}-Dateien@tie{}—, solange zumindest eine ihrer Ausgaben lebendig ist. Dadurch können Nutzer den Ursprung der Dateien in ihrem Store nachvollziehen. Setzt man den Wert auf @code{no}, wird ein bisschen weniger Speicher auf der Platte verbraucht." #. type: table -#: guix-git/doc/guix.texi:1766 +#: guix-git/doc/guix.texi:1783 msgid "In this way, setting @option{--gc-keep-derivations} to @code{yes} causes liveness to flow from outputs to derivations, and setting @option{--gc-keep-outputs} to @code{yes} causes liveness to flow from derivations to outputs. When both are set to @code{yes}, the effect is to keep all the build prerequisites (the sources, compiler, libraries, and other build-time tools) of live objects in the store, regardless of whether these prerequisites are reachable from a GC root. This is convenient for developers since it saves rebuilds or downloads." msgstr "Auf diese Weise überträgt sich, wenn @option{--gc-keep-derivations} auf @code{yes} steht, die Lebendigkeit von Ausgaben auf Ableitungen, und wenn @option{--gc-keep-outputs} auf @code{yes} steht, die Lebendigkeit von Ableitungen auf Ausgaben. Stehen beide auf @code{yes}, bleiben so alle Erstellungsvoraussetzungen wie Quelldateien, Compiler, Bibliotheken und andere Erstellungswerkzeuge lebendiger Objekte im Store erhalten, ob sie von einer Müllsammlerwurzel aus erreichbar sind oder nicht. Entwickler können sich so erneute Erstellungen oder erneutes Herunterladen sparen." #. type: item -#: guix-git/doc/guix.texi:1767 +#: guix-git/doc/guix.texi:1784 #, no-wrap msgid "--impersonate-linux-2.6" msgstr "--impersonate-linux-2.6" #. type: table -#: guix-git/doc/guix.texi:1770 +#: guix-git/doc/guix.texi:1787 msgid "On Linux-based systems, impersonate Linux 2.6. This means that the kernel's @command{uname} system call will report 2.6 as the release number." msgstr "Auf Linux-basierten Systemen wird hiermit vorgetäuscht, dass es sich um Linux 2.6 handeln würde, indem der Kernel für einen @command{uname}-Systemaufruf als Version der Veröffentlichung mit 2.6 antwortet." #. type: table -#: guix-git/doc/guix.texi:1773 +#: guix-git/doc/guix.texi:1790 msgid "This might be helpful to build programs that (usually wrongfully) depend on the kernel version number." msgstr "Dies kann hilfreich sein, um Programme zu erstellen, die (normalerweise zu Unrecht) von der Kernel-Versionsnummer abhängen." #. type: item -#: guix-git/doc/guix.texi:1774 +#: guix-git/doc/guix.texi:1791 #, no-wrap msgid "--lose-logs" msgstr "--lose-logs" #. type: table -#: guix-git/doc/guix.texi:1777 +#: guix-git/doc/guix.texi:1794 msgid "Do not keep build logs. By default they are kept under @file{@var{localstatedir}/guix/log}." msgstr "Keine Protokolle der Erstellungen vorhalten. Normalerweise würden solche in @file{@var{localstatedir}/guix/log} gespeichert." #. type: item -#: guix-git/doc/guix.texi:1778 guix-git/doc/guix.texi:4567 -#: guix-git/doc/guix.texi:5846 guix-git/doc/guix.texi:6229 -#: guix-git/doc/guix.texi:6629 guix-git/doc/guix.texi:11505 -#: guix-git/doc/guix.texi:13187 guix-git/doc/guix.texi:13452 -#: guix-git/doc/guix.texi:14129 guix-git/doc/guix.texi:34442 -#: guix-git/doc/guix.texi:35251 +#: guix-git/doc/guix.texi:1795 guix-git/doc/guix.texi:4585 +#: guix-git/doc/guix.texi:5859 guix-git/doc/guix.texi:6272 +#: guix-git/doc/guix.texi:6672 guix-git/doc/guix.texi:11819 +#: guix-git/doc/guix.texi:13544 guix-git/doc/guix.texi:13809 +#: guix-git/doc/guix.texi:14486 guix-git/doc/guix.texi:34881 +#: guix-git/doc/guix.texi:35695 #, no-wrap msgid "--system=@var{system}" msgstr "--system=@var{System}" #. type: table -#: guix-git/doc/guix.texi:1782 +#: guix-git/doc/guix.texi:1799 msgid "Assume @var{system} as the current system type. By default it is the architecture/kernel pair found at configure time, such as @code{x86_64-linux}." msgstr "Verwende @var{System} als aktuellen Systemtyp. Standardmäßig ist dies das Paar aus Befehlssatz und Kernel, welches beim Aufruf von @code{configure} erkannt wurde, wie zum Beispiel @code{x86_64-linux}." #. type: item -#: guix-git/doc/guix.texi:1783 guix-git/doc/guix.texi:10747 +#: guix-git/doc/guix.texi:1800 guix-git/doc/guix.texi:11061 #, no-wrap msgid "--listen=@var{endpoint}" msgstr "--listen=@var{Endpunkt}" #. type: table -#: guix-git/doc/guix.texi:1788 +#: guix-git/doc/guix.texi:1805 msgid "Listen for connections on @var{endpoint}. @var{endpoint} is interpreted as the file name of a Unix-domain socket if it starts with @code{/} (slash sign). Otherwise, @var{endpoint} is interpreted as a host name or host name and port to listen to. Here are a few examples:" msgstr "Lausche am @var{Endpunkt} auf Verbindungen. Dabei wird der @var{Endpunkt} als Dateiname eines Unix-Sockets verstanden, wenn er mit einem @code{/} (Schrägstrich) beginnt. Andernfalls wird der @var{Endpunkt} als Rechnername (d.h.@: Hostname) oder als Rechnername-Port-Paar verstanden, auf dem gelauscht wird. Hier sind ein paar Beispiele:" #. type: item -#: guix-git/doc/guix.texi:1790 +#: guix-git/doc/guix.texi:1807 #, no-wrap msgid "--listen=/gnu/var/daemon" msgstr "--listen=/gnu/var/daemon" #. type: table -#: guix-git/doc/guix.texi:1793 +#: guix-git/doc/guix.texi:1810 msgid "Listen for connections on the @file{/gnu/var/daemon} Unix-domain socket, creating it if needed." msgstr "Lausche auf Verbindungen am Unix-Socket @file{/gnu/var/daemon}, falls nötig wird er dazu erstellt." #. type: item -#: guix-git/doc/guix.texi:1794 +#: guix-git/doc/guix.texi:1811 #, no-wrap msgid "--listen=localhost" msgstr "--listen=localhost" #. type: cindex -#: guix-git/doc/guix.texi:1795 guix-git/doc/guix.texi:9421 +#: guix-git/doc/guix.texi:1812 guix-git/doc/guix.texi:9735 #, no-wrap msgid "daemon, remote access" msgstr "Daemon, Fernzugriff" #. type: cindex -#: guix-git/doc/guix.texi:1796 guix-git/doc/guix.texi:9422 +#: guix-git/doc/guix.texi:1813 guix-git/doc/guix.texi:9736 #, no-wrap msgid "remote access to the daemon" msgstr "Fernzugriff auf den Daemon" #. type: cindex -#: guix-git/doc/guix.texi:1797 guix-git/doc/guix.texi:9423 +#: guix-git/doc/guix.texi:1814 guix-git/doc/guix.texi:9737 #, no-wrap msgid "daemon, cluster setup" msgstr "Daemon, Einrichten auf Clustern" #. type: cindex -#: guix-git/doc/guix.texi:1798 guix-git/doc/guix.texi:9424 +#: guix-git/doc/guix.texi:1815 guix-git/doc/guix.texi:9738 #, no-wrap msgid "clusters, daemon setup" msgstr "Cluster, Einrichtung des Daemons" #. type: table -#: guix-git/doc/guix.texi:1801 +#: guix-git/doc/guix.texi:1818 msgid "Listen for TCP connections on the network interface corresponding to @code{localhost}, on port 44146." msgstr "Lausche auf TCP-Verbindungen an der Netzwerkschnittstelle, die @code{localhost} entspricht, auf Port 44146." #. type: item -#: guix-git/doc/guix.texi:1802 +#: guix-git/doc/guix.texi:1819 #, no-wrap msgid "--listen=128.0.0.42:1234" msgstr "--listen=128.0.0.42:1234" #. type: table -#: guix-git/doc/guix.texi:1805 +#: guix-git/doc/guix.texi:1822 msgid "Listen for TCP connections on the network interface corresponding to @code{128.0.0.42}, on port 1234." msgstr "Lausche auf TCP-Verbindungen an der Netzwerkschnittstelle, die @code{128.0.0.42} entspricht, auf Port 1234." #. type: table -#: guix-git/doc/guix.texi:1812 +#: guix-git/doc/guix.texi:1829 msgid "This option can be repeated multiple times, in which case @command{guix-daemon} accepts connections on all the specified endpoints. Users can tell client commands what endpoint to connect to by setting the @env{GUIX_DAEMON_SOCKET} environment variable (@pxref{The Store, @env{GUIX_DAEMON_SOCKET}})." msgstr "Diese Befehlszeilenoption kann mehrmals wiederholt werden. In diesem Fall akzeptiert @command{guix-daemon} Verbindungen auf allen angegebenen Endpunkten. Benutzer können bei Client-Befehlen angeben, mit welchem Endpunkt sie sich verbinden möchten, indem sie die Umgebungsvariable @env{GUIX_DAEMON_SOCKET} festlegen (siehe @ref{The Store, @env{GUIX_DAEMON_SOCKET}})." #. type: quotation -#: guix-git/doc/guix.texi:1819 +#: guix-git/doc/guix.texi:1836 msgid "The daemon protocol is @emph{unauthenticated and unencrypted}. Using @option{--listen=@var{host}} is suitable on local networks, such as clusters, where only trusted nodes may connect to the build daemon. In other cases where remote access to the daemon is needed, we recommend using Unix-domain sockets along with SSH." msgstr "Das Daemon-Protokoll ist @emph{weder authentifiziert noch verschlüsselt}. Die Benutzung von @option{--listen=@var{Rechner}} eignet sich für lokale Netzwerke, wie z.B.@: in Rechen-Clustern, wo sich nur solche Knoten mit dem Daemon verbinden, denen man vertraut. In Situationen, wo ein Fernzugriff auf den Daemon durchgeführt wird, empfehlen wir, über Unix-Sockets in Verbindung mit SSH zuzugreifen." #. type: table -#: guix-git/doc/guix.texi:1824 +#: guix-git/doc/guix.texi:1841 msgid "When @option{--listen} is omitted, @command{guix-daemon} listens for connections on the Unix-domain socket located at @file{@var{localstatedir}/guix/daemon-socket/socket}." msgstr "Wird @option{--listen} nicht angegeben, lauscht @command{guix-daemon} auf Verbindungen auf dem Unix-Socket, der sich unter @file{@var{localstatedir}/guix/daemon-socket/socket} befindet." #. type: Plain text -#: guix-git/doc/guix.texi:1834 +#: guix-git/doc/guix.texi:1851 msgid "When using Guix on top of GNU/Linux distribution other than Guix System---a so-called @dfn{foreign distro}---a few additional steps are needed to get everything in place. Here are some of them." msgstr "Läuft Guix aufgesetzt auf einer GNU/Linux-Distribution außer Guix System@tie{}— einer sogenannten @dfn{Fremddistribution}@tie{}—, so sind ein paar zusätzliche Schritte bei der Einrichtung nötig. Hier finden Sie manche davon." #. type: anchor{#1} -#: guix-git/doc/guix.texi:1838 +#: guix-git/doc/guix.texi:1855 msgid "locales-and-locpath" msgstr "locales-and-locpath" #. type: cindex -#: guix-git/doc/guix.texi:1838 +#: guix-git/doc/guix.texi:1855 #, no-wrap msgid "locales, when not on Guix System" msgstr "Locales, nicht auf Guix System" #. type: vindex -#: guix-git/doc/guix.texi:1839 guix-git/doc/guix.texi:15770 +#: guix-git/doc/guix.texi:1856 guix-git/doc/guix.texi:16127 #, no-wrap msgid "LOCPATH" msgstr "LOCPATH" #. type: vindex -#: guix-git/doc/guix.texi:1840 +#: guix-git/doc/guix.texi:1857 #, no-wrap msgid "GUIX_LOCPATH" msgstr "GUIX_LOCPATH" #. type: Plain text -#: guix-git/doc/guix.texi:1845 +#: guix-git/doc/guix.texi:1862 msgid "Packages installed @i{via} Guix will not use the locale data of the host system. Instead, you must first install one of the locale packages available with Guix and then define the @env{GUIX_LOCPATH} environment variable:" msgstr "Über Guix installierte Pakete benutzen nicht die Daten zu Regions- und Spracheinstellungen (Locales) des Wirtssystems. Stattdessen müssen Sie erst eines der Locale-Pakete installieren, die für Guix verfügbar sind, und dann den Wert Ihrer Umgebungsvariablen @env{GUIX_LOCPATH} passend festlegen:" #. type: example -#: guix-git/doc/guix.texi:1849 +#: guix-git/doc/guix.texi:1866 #, no-wrap msgid "" "$ guix install glibc-locales\n" @@ -7232,132 +7310,132 @@ msgstr "" "$ export GUIX_LOCPATH=$HOME/.guix-profile/lib/locale\n" #. type: Plain text -#: guix-git/doc/guix.texi:1855 +#: guix-git/doc/guix.texi:1872 msgid "Note that the @code{glibc-locales} package contains data for all the locales supported by the GNU@tie{}libc and weighs in at around 917@tie{}MiB@. Alternatively, the @code{glibc-utf8-locales} is smaller but limited to a few UTF-8 locales." msgstr "Beachten Sie, dass das Paket @code{glibc-locales} Daten für alle von GNU@tie{}libc unterstützten Locales enthält und deswegen um die 917@tie{}MiB wiegt. Alternativ gibt es auch @code{glibc-utf8-locales}, was kleiner, aber auf ein paar UTF-8-Locales beschränkt ist." #. type: Plain text -#: guix-git/doc/guix.texi:1859 +#: guix-git/doc/guix.texi:1876 msgid "The @env{GUIX_LOCPATH} variable plays a role similar to @env{LOCPATH} (@pxref{Locale Names, @env{LOCPATH},, libc, The GNU C Library Reference Manual}). There are two important differences though:" msgstr "Die Variable @env{GUIX_LOCPATH} spielt eine ähnliche Rolle wie @env{LOCPATH} (siehe @ref{Locale Names, @env{LOCPATH},, libc, Referenzhandbuch der GNU-C-Bibliothek}). Es gibt jedoch zwei wichtige Unterschiede:" #. type: enumerate -#: guix-git/doc/guix.texi:1866 +#: guix-git/doc/guix.texi:1883 msgid "@env{GUIX_LOCPATH} is honored only by the libc in Guix, and not by the libc provided by foreign distros. Thus, using @env{GUIX_LOCPATH} allows you to make sure the programs of the foreign distro will not end up loading incompatible locale data." msgstr "@env{GUIX_LOCPATH} wird nur von der libc in Guix beachtet und nicht der von Fremddistributionen bereitgestellten libc. Mit @env{GUIX_LOCPATH} können Sie daher sicherstellen, dass die Programme der Fremddistribution keine inkompatiblen Locale-Daten von Guix laden." #. type: enumerate -#: guix-git/doc/guix.texi:1873 +#: guix-git/doc/guix.texi:1890 msgid "libc suffixes each entry of @env{GUIX_LOCPATH} with @code{/X.Y}, where @code{X.Y} is the libc version---e.g., @code{2.22}. This means that, should your Guix profile contain a mixture of programs linked against different libc version, each libc version will only try to load locale data in the right format." msgstr "libc hängt an jeden @env{GUIX_LOCPATH}-Eintrag @code{/X.Y} an, wobei @code{X.Y} die Version von libc ist@tie{}— z.B.@: @code{2.22}. Sollte Ihr Guix-Profil eine Mischung aus Programmen enthalten, die an verschiedene libc-Versionen gebunden sind, wird jede nur die Locale-Daten im richtigen Format zu laden versuchen." #. type: Plain text -#: guix-git/doc/guix.texi:1877 +#: guix-git/doc/guix.texi:1894 msgid "This is important because the locale data format used by different libc versions may be incompatible." msgstr "Das ist wichtig, weil das Locale-Datenformat verschiedener libc-Versionen inkompatibel sein könnte." #. type: cindex -#: guix-git/doc/guix.texi:1880 +#: guix-git/doc/guix.texi:1897 #, no-wrap msgid "name service switch, glibc" msgstr "Name Service Switch, glibc" #. type: cindex -#: guix-git/doc/guix.texi:1881 +#: guix-git/doc/guix.texi:1898 #, no-wrap msgid "NSS (name service switch), glibc" msgstr "NSS (Name Service Switch), glibc" #. type: cindex -#: guix-git/doc/guix.texi:1882 +#: guix-git/doc/guix.texi:1899 #, no-wrap msgid "nscd (name service caching daemon)" msgstr "nscd (Name Service Caching Daemon)" #. type: cindex -#: guix-git/doc/guix.texi:1883 +#: guix-git/doc/guix.texi:1900 #, no-wrap msgid "name service caching daemon (nscd)" msgstr "Name Service Caching Daemon (nscd)" #. type: Plain text -#: guix-git/doc/guix.texi:1890 +#: guix-git/doc/guix.texi:1907 msgid "When using Guix on a foreign distro, we @emph{strongly recommend} that the system run the GNU C library's @dfn{name service cache daemon}, @command{nscd}, which should be listening on the @file{/var/run/nscd/socket} socket. Failing to do that, applications installed with Guix may fail to look up host names or user accounts, or may even crash. The next paragraphs explain why." msgstr "Wenn Sie Guix auf einer Fremddistribution verwenden, @emph{empfehlen wir stärkstens}, dass Sie den @dfn{Name Service Cache Daemon} der GNU-C-Bibliothek, @command{nscd}, laufen lassen, welcher auf dem Socket @file{/var/run/nscd/socket} lauschen sollte. Wenn Sie das nicht tun, könnten mit Guix installierte Anwendungen Probleme beim Auflösen von Hostnamen (d.h.@: Rechnernamen) oder Benutzerkonten haben, oder sogar abstürzen. Die nächsten Absätze erklären warum." #. type: file{#1} -#: guix-git/doc/guix.texi:1891 +#: guix-git/doc/guix.texi:1908 #, no-wrap msgid "nsswitch.conf" msgstr "nsswitch.conf" #. type: Plain text -#: guix-git/doc/guix.texi:1896 +#: guix-git/doc/guix.texi:1913 msgid "The GNU C library implements a @dfn{name service switch} (NSS), which is an extensible mechanism for ``name lookups'' in general: host name resolution, user accounts, and more (@pxref{Name Service Switch,,, libc, The GNU C Library Reference Manual})." msgstr "Die GNU-C-Bibliothek implementiert einen @dfn{Name Service Switch} (NSS), welcher einen erweiterbaren Mechanismus zur allgemeinen „Namensauflösung“ darstellt: Hostnamensauflösung, Benutzerkonten und weiteres (siehe @ref{Name Service Switch,,, libc, Referenzhandbuch der GNU-C-Bibliothek})." #. type: cindex -#: guix-git/doc/guix.texi:1897 +#: guix-git/doc/guix.texi:1914 #, no-wrap msgid "Network information service (NIS)" msgstr "Network Information Service (NIS)" #. type: cindex -#: guix-git/doc/guix.texi:1898 +#: guix-git/doc/guix.texi:1915 #, no-wrap msgid "NIS (Network information service)" msgstr "NIS (Network Information Service)" #. type: Plain text -#: guix-git/doc/guix.texi:1907 +#: guix-git/doc/guix.texi:1924 msgid "Being extensible, the NSS supports @dfn{plugins}, which provide new name lookup implementations: for example, the @code{nss-mdns} plugin allow resolution of @code{.local} host names, the @code{nis} plugin allows user account lookup using the Network information service (NIS), and so on. These extra ``lookup services'' are configured system-wide in @file{/etc/nsswitch.conf}, and all the programs running on the system honor those settings (@pxref{NSS Configuration File,,, libc, The GNU C Reference Manual})." msgstr "Für die Erweiterbarkeit unterstützt der NSS @dfn{Plugins}, welche neue Implementierungen zur Namensauflösung bieten: Zum Beispiel ermöglicht das Plugin @code{nss-mdns} die Namensauflösung für @code{.local}-Hostnamen, das Plugin @code{nis} gestattet die Auflösung von Benutzerkonten über den Network Information Service (NIS) und so weiter. Diese zusätzlichen „Auflösungsdienste“ werden systemweit konfiguriert in @file{/etc/nsswitch.conf} und alle auf dem System laufenden Programme halten sich an diese Einstellungen (siehe @ref{NSS Configuration File,,, libc, GNU-C-Referenzhandbuch})." #. type: Plain text -#: guix-git/doc/guix.texi:1917 +#: guix-git/doc/guix.texi:1934 msgid "When they perform a name lookup---for instance by calling the @code{getaddrinfo} function in C---applications first try to connect to the nscd; on success, nscd performs name lookups on their behalf. If the nscd is not running, then they perform the name lookup by themselves, by loading the name lookup services into their own address space and running it. These name lookup services---the @file{libnss_*.so} files---are @code{dlopen}'d, but they may come from the host system's C library, rather than from the C library the application is linked against (the C library coming from Guix)." msgstr "Wenn sie eine Namensauflösung durchführen@tie{}— zum Beispiel, indem sie die @code{getaddrinfo}-Funktion in C aufrufen@tie{}—, versuchen die Anwendungen als Erstes, sich mit dem nscd zu verbinden; ist dies erfolgreich, führt nscd für sie die weiteren Namensauflösungen durch. Falls nscd nicht läuft, führen sie selbst die Namensauflösungen durch, indem sie die Namensauflösungsdienste in ihren eigenen Adressraum laden und ausführen. Diese Namensauflösungsdienste@tie{}— die @file{libnss_*.so}-Dateien@tie{}— werden mit @code{dlopen} geladen, aber sie kommen von der C-Bibliothek des Wirtssystems und nicht von der C-Bibliothek, an die die Anwendung gebunden wurde (also der C-Bibliothek von Guix)." #. type: Plain text -#: guix-git/doc/guix.texi:1922 +#: guix-git/doc/guix.texi:1939 msgid "And this is where the problem is: if your application is linked against Guix's C library (say, glibc 2.24) and tries to load NSS plugins from another C library (say, @code{libnss_mdns.so} for glibc 2.22), it will likely crash or have its name lookups fail unexpectedly." msgstr "Und hier kommt es zum Problem: Wenn die Anwendung an die C-Bibliothek von Guix (etwa glibc 2.24) gebunden wurde und die NSS-Plugins von einer anderen C-Bibliothek (etwa @code{libnss_mdns.so} für glibc 2.22) zu laden versucht, wird sie vermutlich abstürzen oder die Namensauflösungen werden unerwartet fehlschlagen." #. type: Plain text -#: guix-git/doc/guix.texi:1927 +#: guix-git/doc/guix.texi:1944 msgid "Running @command{nscd} on the system, among other advantages, eliminates this binary incompatibility problem because those @code{libnss_*.so} files are loaded in the @command{nscd} process, not in applications themselves." msgstr "Durch das Ausführen von @command{nscd} auf dem System wird, neben anderen Vorteilen, dieses Problem der binären Inkompatibilität vermieden, weil diese @code{libnss_*.so}-Dateien vom @command{nscd}-Prozess geladen werden, nicht in den Anwendungen selbst." #. type: subsection -#: guix-git/doc/guix.texi:1928 +#: guix-git/doc/guix.texi:1945 #, no-wrap msgid "X11 Fonts" msgstr "X11-Schriftarten" #. type: Plain text -#: guix-git/doc/guix.texi:1938 +#: guix-git/doc/guix.texi:1955 msgid "The majority of graphical applications use Fontconfig to locate and load fonts and perform X11-client-side rendering. The @code{fontconfig} package in Guix looks for fonts in @file{$HOME/.guix-profile} by default. Thus, to allow graphical applications installed with Guix to display fonts, you have to install fonts with Guix as well. Essential font packages include @code{font-ghostscript}, @code{font-dejavu}, and @code{font-gnu-freefont}." msgstr "Die Mehrheit der grafischen Anwendungen benutzen Fontconfig zum Finden und Laden von Schriftarten und für die Darstellung im X11-Client. Im Paket @code{fontconfig} in Guix werden Schriftarten standardmäßig in @file{$HOME/.guix-profile} gesucht. Um es grafischen Anwendungen, die mit Guix installiert wurden, zu ermöglichen, Schriftarten anzuzeigen, müssen Sie die Schriftarten auch mit Guix installieren. Essenzielle Pakete für Schriftarten sind unter anderem @code{font-ghostscript}, @code{font-dejavu} und @code{font-gnu-freefont}." #. type: code{#1} -#: guix-git/doc/guix.texi:1939 +#: guix-git/doc/guix.texi:1956 #, no-wrap msgid "fc-cache" msgstr "fc-cache" #. type: cindex -#: guix-git/doc/guix.texi:1940 +#: guix-git/doc/guix.texi:1957 #, no-wrap msgid "font cache" msgstr "Font-Cache" #. type: Plain text -#: guix-git/doc/guix.texi:1944 +#: guix-git/doc/guix.texi:1961 msgid "Once you have installed or removed fonts, or when you notice an application that does not find fonts, you may need to install Fontconfig and to force an update of its font cache by running:" msgstr "Sobald Sie Schriftarten installiert oder wieder entfernt haben oder wenn Ihnen auffällt, dass eine Anwendung Schriftarten nicht finden kann, dann müssen Sie vielleicht Fontconfig installieren und den folgenden Befehl ausführen, damit dessen Zwischenspeicher für Schriftarten aktualisiert wird:" #. type: example -#: guix-git/doc/guix.texi:1948 +#: guix-git/doc/guix.texi:1965 #, no-wrap msgid "" "guix install fontconfig\n" @@ -7367,266 +7445,266 @@ msgstr "" "fc-cache -rv\n" #. type: Plain text -#: guix-git/doc/guix.texi:1956 +#: guix-git/doc/guix.texi:1973 msgid "To display text written in Chinese languages, Japanese, or Korean in graphical applications, consider installing @code{font-adobe-source-han-sans} or @code{font-wqy-zenhei}. The former has multiple outputs, one per language family (@pxref{Packages with Multiple Outputs}). For instance, the following command installs fonts for Chinese languages:" msgstr "Um auf Chinesisch, Japanisch oder Koreanisch verfassten Text in grafischen Anwendungen anzeigen zu können, möchten Sie vielleicht @code{font-adobe-source-han-sans} oder @code{font-wqy-zenhei} installieren. Ersteres hat mehrere Ausgaben, für jede Sprachfamilie eine (siehe @ref{Packages with Multiple Outputs}). Zum Beispiel installiert folgender Befehl Schriftarten für chinesische Sprachen:" #. type: example -#: guix-git/doc/guix.texi:1959 +#: guix-git/doc/guix.texi:1976 #, no-wrap msgid "guix install font-adobe-source-han-sans:cn\n" msgstr "guix install font-adobe-source-han-sans:cn\n" #. type: code{#1} -#: guix-git/doc/guix.texi:1961 +#: guix-git/doc/guix.texi:1978 #, no-wrap msgid "xterm" msgstr "xterm" #. type: Plain text -#: guix-git/doc/guix.texi:1965 +#: guix-git/doc/guix.texi:1982 msgid "Older programs such as @command{xterm} do not use Fontconfig and instead rely on server-side font rendering. Such programs require to specify a full name of a font using XLFD (X Logical Font Description), like this:" msgstr "Ältere Programme wie @command{xterm} benutzen kein Fontconfig, sondern X-Server-seitige Schriftartendarstellung. Solche Programme setzen voraus, dass der volle Name einer Schriftart mit XLFD (X Logical Font Description) angegeben wird, z.B.@: so:" #. type: example -#: guix-git/doc/guix.texi:1968 +#: guix-git/doc/guix.texi:1985 #, no-wrap msgid "-*-dejavu sans-medium-r-normal-*-*-100-*-*-*-*-*-1\n" msgstr "-*-dejavu sans-medium-r-normal-*-*-100-*-*-*-*-*-1\n" #. type: Plain text -#: guix-git/doc/guix.texi:1972 +#: guix-git/doc/guix.texi:1989 msgid "To be able to use such full names for the TrueType fonts installed in your Guix profile, you need to extend the font path of the X server:" msgstr "Um solche vollen Namen für die in Ihrem Guix-Profil installierten TrueType-Schriftarten zu verwenden, müssen Sie den Pfad für Schriftarten (Font Path) des X-Servers anpassen:" #. type: example -#: guix-git/doc/guix.texi:1977 +#: guix-git/doc/guix.texi:1994 #, no-wrap msgid "xset +fp $(dirname $(readlink -f ~/.guix-profile/share/fonts/truetype/fonts.dir))\n" msgstr "xset +fp $(dirname $(readlink -f ~/.guix-profile/share/fonts/truetype/fonts.dir))\n" #. type: code{#1} -#: guix-git/doc/guix.texi:1979 +#: guix-git/doc/guix.texi:1996 #, no-wrap msgid "xlsfonts" msgstr "xlsfonts" #. type: Plain text -#: guix-git/doc/guix.texi:1982 +#: guix-git/doc/guix.texi:1999 msgid "After that, you can run @code{xlsfonts} (from @code{xlsfonts} package) to make sure your TrueType fonts are listed there." msgstr "Danach können Sie den Befehl @code{xlsfonts} ausführen (aus dem Paket @code{xlsfonts}), um sicherzustellen, dass dort Ihre TrueType-Schriftarten aufgeführt sind." #. type: code{#1} -#: guix-git/doc/guix.texi:1986 guix-git/doc/guix.texi:34161 +#: guix-git/doc/guix.texi:2003 guix-git/doc/guix.texi:34600 #, no-wrap msgid "nss-certs" msgstr "nss-certs" #. type: Plain text -#: guix-git/doc/guix.texi:1989 +#: guix-git/doc/guix.texi:2006 msgid "The @code{nss-certs} package provides X.509 certificates, which allow programs to authenticate Web servers accessed over HTTPS." msgstr "Das Paket @code{nss-certs} bietet X.509-Zertifikate, womit Programme die Identität von Web-Servern authentifizieren können, auf die über HTTPS zugegriffen wird." #. type: Plain text -#: guix-git/doc/guix.texi:1994 +#: guix-git/doc/guix.texi:2011 msgid "When using Guix on a foreign distro, you can install this package and define the relevant environment variables so that packages know where to look for certificates. @xref{X.509 Certificates}, for detailed information." msgstr "Wenn Sie Guix auf einer Fremddistribution verwenden, können Sie dieses Paket installieren und die relevanten Umgebungsvariablen festlegen, damit Pakete wissen, wo sie Zertifikate finden. Unter @ref{X.509 Certificates} stehen genaue Informationen." #. type: code{#1} -#: guix-git/doc/guix.texi:1997 +#: guix-git/doc/guix.texi:2014 #, no-wrap msgid "emacs" msgstr "emacs" #. type: Plain text -#: guix-git/doc/guix.texi:2003 +#: guix-git/doc/guix.texi:2020 msgid "When you install Emacs packages with Guix, the Elisp files are placed under the @file{share/emacs/site-lisp/} directory of the profile in which they are installed. The Elisp libraries are made available to Emacs through the @env{EMACSLOADPATH} environment variable, which is set when installing Emacs itself." msgstr "Wenn Sie Emacs-Pakete mit Guix installieren, werden die Elisp-Dateien innerhalb des Verzeichnisses @file{share/emacs/site-lisp/} in demjenigen Profil platziert, wohin sie installiert werden. Die Elisp-Bibliotheken werden in Emacs über die @env{EMACSLOADPATH}-Umgebungsvariable verfügbar gemacht, die durch die Installation von Emacs eingerichtet wird." #. type: Plain text -#: guix-git/doc/guix.texi:2010 +#: guix-git/doc/guix.texi:2027 msgid "Additionally, autoload definitions are automatically evaluated at the initialization of Emacs, by the Guix-specific @code{guix-emacs-autoload-packages} procedure. If, for some reason, you want to avoid auto-loading the Emacs packages installed with Guix, you can do so by running Emacs with the @option{--no-site-file} option (@pxref{Init File,,, emacs, The GNU Emacs Manual})." msgstr "Bei der Initialisierung von Emacs werden „Autoload“-Definitionen automatisch über die Guix-spezifische Prozedur @code{guix-emacs-autoload-packages} ausgewertet. Wenn Sie aber aus irgendeinem Grund die mit Guix installierten Pakete nicht automatisch laden lassen möchten, können Sie Emacs mit der Befehlszeilenoption @option{--no-site-file} starten (siehe @ref{Init File,,, emacs, The GNU Emacs Manual})." #. type: cindex -#: guix-git/doc/guix.texi:2015 +#: guix-git/doc/guix.texi:2032 #, no-wrap msgid "Upgrading Guix, on a foreign distro" msgstr "Aktualisieren von Guix, auf einer Fremddistribution" #. type: Plain text -#: guix-git/doc/guix.texi:2018 +#: guix-git/doc/guix.texi:2035 msgid "To upgrade Guix, run:" msgstr "Um Guix zu aktualisieren, führen Sie aus:" #. type: example -#: guix-git/doc/guix.texi:2021 guix-git/doc/guix.texi:2879 +#: guix-git/doc/guix.texi:2038 guix-git/doc/guix.texi:2896 #, no-wrap msgid "guix pull\n" msgstr "guix pull\n" #. type: Plain text -#: guix-git/doc/guix.texi:2024 +#: guix-git/doc/guix.texi:2041 msgid "@xref{Invoking guix pull}, for more information." msgstr "Siehe @ref{Invoking guix pull} für weitere Informationen." #. type: cindex -#: guix-git/doc/guix.texi:2025 +#: guix-git/doc/guix.texi:2042 #, no-wrap msgid "upgrading Guix for the root user, on a foreign distro" msgstr "Aktualisieren von Guix für den root-Administratornutzer, auf einer Fremddistribution" #. type: cindex -#: guix-git/doc/guix.texi:2026 +#: guix-git/doc/guix.texi:2043 #, no-wrap msgid "upgrading the Guix daemon, on a foreign distro" msgstr "Aktualisieren des Guix-Daemon, auf einer Fremddistribution" #. type: cindex -#: guix-git/doc/guix.texi:2027 +#: guix-git/doc/guix.texi:2044 #, no-wrap msgid "@command{guix pull} for the root user, on a foreign distro" msgstr "@command{guix pull} für den root-Administratornutzer, auf einer Fremddistribution" #. type: Plain text -#: guix-git/doc/guix.texi:2030 +#: guix-git/doc/guix.texi:2047 msgid "On a foreign distro, you can upgrade the build daemon by running:" msgstr "Auf einer Fremddistribution können Sie den Erstellungsdaemon aktualisieren, indem Sie diesen Befehl:" #. type: example -#: guix-git/doc/guix.texi:2033 +#: guix-git/doc/guix.texi:2050 #, no-wrap msgid "sudo -i guix pull\n" msgstr "sudo -i guix pull\n" #. type: Plain text -#: guix-git/doc/guix.texi:2038 +#: guix-git/doc/guix.texi:2055 msgid "followed by (assuming your distro uses the systemd service management tool):" msgstr "gefolgt von diesem ausführen (unter der Annahme, dass Ihre Distribution zur Dienstverwaltung das systemd-Werkzeug benutzt):" #. type: example -#: guix-git/doc/guix.texi:2041 +#: guix-git/doc/guix.texi:2058 #, no-wrap msgid "systemctl restart guix-daemon.service\n" msgstr "systemctl restart guix-daemon.service\n" #. type: Plain text -#: guix-git/doc/guix.texi:2045 +#: guix-git/doc/guix.texi:2062 msgid "On Guix System, upgrading the daemon is achieved by reconfiguring the system (@pxref{Invoking guix system, @code{guix system reconfigure}})." msgstr "Auf Guix System wird der Daemon aktualisiert, indem Sie das System rekonfigurieren (siehe @ref{Invoking guix system, @code{guix system reconfigure}})." #. type: cindex -#: guix-git/doc/guix.texi:2052 +#: guix-git/doc/guix.texi:2069 #, no-wrap msgid "installing Guix System" msgstr "Installieren von Guix System" #. type: cindex -#: guix-git/doc/guix.texi:2053 +#: guix-git/doc/guix.texi:2070 #, no-wrap msgid "Guix System, installation" msgstr "Guix System, Installation" #. type: Plain text -#: guix-git/doc/guix.texi:2058 +#: guix-git/doc/guix.texi:2075 msgid "This section explains how to install Guix System on a machine. Guix, as a package manager, can also be installed on top of a running GNU/Linux system, @pxref{Installation}." msgstr "Dieser Abschnitt beschreibt, wie Sie „Guix System“ auf einer Maschine installieren. Guix kann auch als Paketverwaltungswerkzeug ein bestehendes GNU/Linux-System ergänzen, mehr dazu finden Sie im Abschnitt @ref{Installation}." #. type: quotation -#: guix-git/doc/guix.texi:2067 +#: guix-git/doc/guix.texi:2084 msgid "You are reading this documentation with an Info reader. For details on how to use it, hit the @key{RET} key (``return'' or ``enter'') on the link that follows: @pxref{Top, Info reader,, info-stnd, Stand-alone GNU Info}. Hit @kbd{l} afterwards to come back here." msgstr "Sie lesen diese Dokumentation mit einem Info-Betrachter. Details, wie Sie ihn bedienen, erfahren Sie, indem Sie die Eingabetaste (auch „Return“ oder „Enter“ genannt) auf folgender Verknüpfung drücken: @ref{Top, Info-Betrachter,, info-stnd, Stand-alone GNU Info}. Drücken Sie danach @kbd{l}, um hierher zurückzukommen." #. type: quotation -#: guix-git/doc/guix.texi:2070 +#: guix-git/doc/guix.texi:2087 msgid "Alternatively, run @command{info info} in another tty to keep the manual available." msgstr "Führen Sie alternativ @command{info info} auf einer anderen Konsole (tty) aus, um dieses Handbuch offen zu lassen." #. type: Plain text -#: guix-git/doc/guix.texi:2091 +#: guix-git/doc/guix.texi:2108 msgid "We consider Guix System to be ready for a wide range of ``desktop'' and server use cases. The reliability guarantees it provides---transactional upgrades and rollbacks, reproducibility---make it a solid foundation." msgstr "Wir denken, dass Guix System für viele Anwendungszwecke von Heim- und Bürorechnern bis hin zu Servern geeignet ist. Die Verlässlichkeitsgarantien, die es einem bietet@tie{}— transaktionelle Aktualisierungen und Rücksetzungen, Reproduzierbarkeit@tie{}— machen es zu einer soliden Grundlage." #. type: Plain text -#: guix-git/doc/guix.texi:2094 +#: guix-git/doc/guix.texi:2111 msgid "Nevertheless, before you proceed with the installation, be aware of the following noteworthy limitations applicable to version @value{VERSION}:" msgstr "Bevor Sie mit der Installation fortfahren, sollten Sie dennoch die folgenden merklichen Einschränkungen der Version @value{VERSION} beachten:" #. type: itemize -#: guix-git/doc/guix.texi:2099 +#: guix-git/doc/guix.texi:2116 msgid "More and more system services are provided (@pxref{Services}), but some may be missing." msgstr "Immer mehr Systemdienste sind verfügbar (siehe @ref{Services}), aber manche könnten noch fehlen." #. type: itemize -#: guix-git/doc/guix.texi:2104 +#: guix-git/doc/guix.texi:2121 msgid "GNOME, Xfce, LXDE, and Enlightenment are available (@pxref{Desktop Services}), as well as a number of X11 window managers. However, KDE is currently missing." msgstr "GNOME, Xfce, LXDE und Enlightenment stehen zur Verfügung (siehe @ref{Desktop Services}), ebenso eine Reihe von X11-Fensterverwaltungsprogrammen, allerdings fehlt KDE zurzeit noch." #. type: Plain text -#: guix-git/doc/guix.texi:2109 +#: guix-git/doc/guix.texi:2126 msgid "More than a disclaimer, this is an invitation to report issues (and success stories!), and to join us in improving it. @xref{Contributing}, for more info." msgstr "Dies soll allerdings nicht nur ein Hinweis sein, sondern auch als Einladung aufgefasst werden, uns Fehler (und Erfolgsgeschichten!) zu melden und bei uns mitzumachen, um Guix zu verbessern. Siehe den Abschnitt @ref{Contributing}." #. type: cindex -#: guix-git/doc/guix.texi:2114 +#: guix-git/doc/guix.texi:2131 #, no-wrap msgid "hardware support on Guix System" msgstr "Hardwareunterstützung von Guix System" #. type: Plain text -#: guix-git/doc/guix.texi:2123 +#: guix-git/doc/guix.texi:2140 msgid "GNU@tie{}Guix focuses on respecting the user's computing freedom. It builds around the kernel Linux-libre, which means that only hardware for which free software drivers and firmware exist is supported. Nowadays, a wide range of off-the-shelf hardware is supported on GNU/Linux-libre---from keyboards to graphics cards to scanners and Ethernet controllers. Unfortunately, there are still areas where hardware vendors deny users control over their own computing, and such hardware is not supported on Guix System." msgstr "GNU@tie{}Guix legt den Fokus darauf, die Freiheit des Nutzers auf seinem Rechner zu respektieren. Es baut auf Linux-libre als Kernel auf, wodurch nur Hardware unterstützt wird, für die Treiber und Firmware existieren, die freie Software sind. Heutzutage wird ein großer Teil der handelsüblichen Hardware von GNU/Linux-libre unterstützt@tie{}— von Tastaturen bis hin zu Grafikkarten, Scannern und Ethernet-Adaptern. Leider gibt es noch Bereiche, wo die Hardwareanbieter ihren Nutzern die Kontrolle über ihren eigenen Rechner verweigern. Solche Hardware wird von Guix System nicht unterstützt." #. type: cindex -#: guix-git/doc/guix.texi:2124 +#: guix-git/doc/guix.texi:2141 #, no-wrap msgid "WiFi, hardware support" msgstr "WLAN, Hardware-Unterstützung" #. type: Plain text -#: guix-git/doc/guix.texi:2133 +#: guix-git/doc/guix.texi:2150 msgid "One of the main areas where free drivers or firmware are lacking is WiFi devices. WiFi devices known to work include those using Atheros chips (AR9271 and AR7010), which corresponds to the @code{ath9k} Linux-libre driver, and those using Broadcom/AirForce chips (BCM43xx with Wireless-Core Revision 5), which corresponds to the @code{b43-open} Linux-libre driver. Free firmware exists for both and is available out-of-the-box on Guix System, as part of @code{%base-firmware} (@pxref{operating-system Reference, @code{firmware}})." msgstr "Einer der wichtigsten Bereiche, wo es an freien Treibern und freier Firmware mangelt, sind WLAN-Geräte. WLAN-Geräte, von denen wir wissen, dass sie funktionieren, sind unter anderem solche, die die Atheros-Chips AR9271 und AR7010 verbauen, welche der Linux-libre-Treiber @code{ath9k} unterstützt, und die, die Broadcom/AirForce-Chips BCM43xx (mit Wireless-Core Revision 5) verbauen, welche der Linux-libre-Treiber @code{b43-open} unterstützt. Freie Firmware gibt es für beide und sie wird von Haus aus mit Guix System als ein Teil von @code{%base-firmware} mitgeliefert (siehe @ref{operating-system Reference, @code{firmware}})." #. type: cindex -#: guix-git/doc/guix.texi:2134 +#: guix-git/doc/guix.texi:2151 #, no-wrap msgid "RYF, Respects Your Freedom" msgstr "RYF, Respects Your Freedom" #. type: Plain text -#: guix-git/doc/guix.texi:2140 +#: guix-git/doc/guix.texi:2157 msgid "The @uref{https://www.fsf.org/, Free Software Foundation} runs @uref{https://www.fsf.org/ryf, @dfn{Respects Your Freedom}} (RYF), a certification program for hardware products that respect your freedom and your privacy and ensure that you have control over your device. We encourage you to check the list of RYF-certified devices." msgstr "Die @uref{https://www.fsf.org/, Free Software Foundation} betreibt @uref{https://www.fsf.org/ryf, @dfn{Respects Your Freedom}} (RYF), ein Zertifizierungsprogramm für Hardware-Produkte, die Ihre Freiheit respektieren, Datenschutz gewährleisten und sicherstellen, dass Sie die Kontrolle über Ihr Gerät haben. Wir ermutigen Sie dazu, die Liste RYF-zertifizierter Geräte zu beachten." #. type: Plain text -#: guix-git/doc/guix.texi:2144 +#: guix-git/doc/guix.texi:2161 msgid "Another useful resource is the @uref{https://www.h-node.org/, H-Node} web site. It contains a catalog of hardware devices with information about their support in GNU/Linux." msgstr "Eine weitere nützliche Ressource ist die Website @uref{https://h-node.org/home/index/de, H-Node}. Dort steht ein Katalog von Hardware-Geräten mit Informationen darüber, wie gut sie von GNU/Linux unterstützt werden." #. type: Plain text -#: guix-git/doc/guix.texi:2153 +#: guix-git/doc/guix.texi:2170 msgid "An ISO-9660 installation image that can be written to a USB stick or burnt to a DVD can be downloaded from @indicateurl{@value{BASE-URL}/guix-system-install-@value{VERSION}.x86_64-linux.iso}, where you can replace @code{x86_64-linux} with one of:" msgstr "Sie können ein ISO-9660-Installationsabbild von @indicateurl{@value{BASE-URL}/guix-system-install-@value{VERSION}.x86_64-linux.iso} herunterladen, dass Sie auf einen USB-Stick aufspielen oder auf eine DVD brennen können, wobei Sie anstelle von @code{x86_64-linux} eines der folgenden schreiben können:" #. type: table -#: guix-git/doc/guix.texi:2157 +#: guix-git/doc/guix.texi:2174 msgid "for a GNU/Linux system on Intel/AMD-compatible 64-bit CPUs;" msgstr "für ein GNU/Linux-System auf Intel/AMD-kompatiblen 64-Bit-Prozessoren," #. type: table -#: guix-git/doc/guix.texi:2160 +#: guix-git/doc/guix.texi:2177 msgid "for a 32-bit GNU/Linux system on Intel-compatible CPUs." msgstr "für ein 32-Bit-GNU/Linux-System auf Intel-kompatiblen Prozessoren." #. type: Plain text -#: guix-git/doc/guix.texi:2165 +#: guix-git/doc/guix.texi:2182 msgid "Make sure to download the associated @file{.sig} file and to verify the authenticity of the image against it, along these lines:" msgstr "Laden Sie auch die entsprechende @file{.sig}-Datei herunter und verifizieren Sie damit die Authentizität Ihres Abbilds, indem Sie diese Befehle eingeben:" #. type: example -#: guix-git/doc/guix.texi:2169 +#: guix-git/doc/guix.texi:2186 #, no-wrap msgid "" "$ wget @value{BASE-URL}/guix-system-install-@value{VERSION}.x86_64-linux.iso.sig\n" @@ -7636,7 +7714,7 @@ msgstr "" "$ gpg --verify guix-system-install-@value{VERSION}.x86_64-linux.iso.sig\n" #. type: example -#: guix-git/doc/guix.texi:2177 +#: guix-git/doc/guix.texi:2194 #, no-wrap msgid "" "$ wget @value{OPENPGP-SIGNING-KEY-URL} \\\n" @@ -7646,23 +7724,23 @@ msgstr "" " -qO - | gpg --import -\n" #. type: Plain text -#: guix-git/doc/guix.texi:2189 +#: guix-git/doc/guix.texi:2206 msgid "This image contains the tools necessary for an installation. It is meant to be copied @emph{as is} to a large-enough USB stick or DVD." msgstr "Dieses Abbild enthält die Werkzeuge, die Sie zur Installation brauchen. Es ist dafür gedacht, @emph{so wie es ist} auf einen hinreichend großen USB-Stick oder eine DVD kopiert zu werden." #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2190 +#: guix-git/doc/guix.texi:2207 #, no-wrap msgid "Copying to a USB Stick" msgstr "Kopieren auf einen USB-Stick" #. type: Plain text -#: guix-git/doc/guix.texi:2195 +#: guix-git/doc/guix.texi:2212 msgid "Insert a USB stick of 1@tie{}GiB or more into your machine, and determine its device name. Assuming that the USB stick is known as @file{/dev/sdX}, copy the image with:" msgstr "Stecken Sie einen USB-Stick in Ihren Rechner ein, der mindestens 1@tie{}GiB groß ist, und bestimmen Sie seinen Gerätenamen. Ist der Gerätename des USB-Sticks @file{/dev/sdX}, dann kopieren Sie das Abbild mit dem Befehl:" #. type: example -#: guix-git/doc/guix.texi:2199 +#: guix-git/doc/guix.texi:2216 #, no-wrap msgid "" "dd if=guix-system-install-@value{VERSION}.x86_64-linux.iso of=/dev/sdX status=progress\n" @@ -7672,238 +7750,238 @@ msgstr "" "sync\n" #. type: Plain text -#: guix-git/doc/guix.texi:2202 +#: guix-git/doc/guix.texi:2219 msgid "Access to @file{/dev/sdX} usually requires root privileges." msgstr "Sie benötigen in der Regel Administratorrechte, um auf @file{/dev/sdX} zuzugreifen." #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2203 +#: guix-git/doc/guix.texi:2220 #, no-wrap msgid "Burning on a DVD" msgstr "Auf eine DVD brennen" #. type: Plain text -#: guix-git/doc/guix.texi:2208 +#: guix-git/doc/guix.texi:2225 msgid "Insert a blank DVD into your machine, and determine its device name. Assuming that the DVD drive is known as @file{/dev/srX}, copy the image with:" msgstr "Legen Sie eine unbespielte DVD in Ihren Rechner ein und bestimmen Sie ihren Gerätenamen. Angenommen der Name des DVD-Laufwerks ist @file{/dev/srX}, kopieren Sie das Abbild mit:" #. type: example -#: guix-git/doc/guix.texi:2211 +#: guix-git/doc/guix.texi:2228 #, no-wrap msgid "growisofs -dvd-compat -Z /dev/srX=guix-system-install-@value{VERSION}.x86_64-linux.iso\n" msgstr "growisofs -dvd-compat -Z /dev/srX=guix-system-install-@value{VERSION}.x86_64-linux.iso\n" #. type: Plain text -#: guix-git/doc/guix.texi:2214 +#: guix-git/doc/guix.texi:2231 msgid "Access to @file{/dev/srX} usually requires root privileges." msgstr "Der Zugriff auf @file{/dev/srX} setzt in der Regel Administratorrechte voraus." #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2215 +#: guix-git/doc/guix.texi:2232 #, no-wrap msgid "Booting" msgstr "Das System starten" #. type: Plain text -#: guix-git/doc/guix.texi:2222 +#: guix-git/doc/guix.texi:2239 msgid "Once this is done, you should be able to reboot the system and boot from the USB stick or DVD@. The latter usually requires you to get in the BIOS or UEFI boot menu, where you can choose to boot from the USB stick. In order to boot from Libreboot, switch to the command mode by pressing the @kbd{c} key and type @command{search_grub usb}." msgstr "Sobald das erledigt ist, sollten Sie Ihr System neu starten und es vom USB-Stick oder der DVD hochfahren („booten“) können. Dazu müssen Sie wahrscheinlich beim Starten des Rechners in das BIOS- oder UEFI-Boot-Menü gehen, von wo aus Sie auswählen können, dass vom USB-Stick gebootet werden soll. Um aus Libreboot heraus zu booten, wechseln Sie in den Befehlsmodus, indem Sie die @kbd{c}-Taste drücken, und geben Sie @command{search_grub usb} ein." #. type: Plain text -#: guix-git/doc/guix.texi:2225 +#: guix-git/doc/guix.texi:2242 msgid "@xref{Installing Guix in a VM}, if, instead, you would like to install Guix System in a virtual machine (VM)." msgstr "Lesen Sie den Abschnitt @ref{Installing Guix in a VM}, wenn Sie Guix System stattdessen in einer virtuellen Maschine (VM) installieren möchten." #. type: Plain text -#: guix-git/doc/guix.texi:2235 +#: guix-git/doc/guix.texi:2252 msgid "Once you have booted, you can use the guided graphical installer, which makes it easy to get started (@pxref{Guided Graphical Installation}). Alternatively, if you are already familiar with GNU/Linux and if you want more control than what the graphical installer provides, you can choose the ``manual'' installation process (@pxref{Manual Installation})." msgstr "Wenn Sie Ihren Rechner gebootet haben, können Sie sich vom grafischen Installationsprogramm durch den Installationsvorgang führen lassen, was den Einstieg leicht macht (siehe @ref{Guided Graphical Installation}). Alternativ können Sie sich auch für einen „manuellen“ Installationsvorgang entscheiden, wenn Sie bereits mit GNU/Linux vertraut sind und mehr Kontrolle haben möchten, als sie das grafische Installationsprogramm bietet (siehe @ref{Manual Installation})." #. type: Plain text -#: guix-git/doc/guix.texi:2243 +#: guix-git/doc/guix.texi:2260 msgid "The graphical installer is available on TTY1. You can obtain root shells on TTYs 3 to 6 by hitting @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4}, etc. TTY2 shows this documentation and you can reach it with @kbd{ctrl-alt-f2}. Documentation is browsable using the Info reader commands (@pxref{Top,,, info-stnd, Stand-alone GNU Info}). The installation system runs the GPM mouse daemon, which allows you to select text with the left mouse button and to paste it with the middle button." msgstr "Das grafische Installationsprogramm steht Ihnen auf TTY1 zur Verfügung. Auf den TTYs 3 bis 6 können Sie vor sich eine Eingabeaufforderung für den Administratornutzer „root“ sehen, nachdem Sie @kbd{strg-alt-f3}, @kbd{strg-alt-f4} usw.@: gedrückt haben. TTY2 zeigt Ihnen dieses Handbuch, das Sie über die Tastenkombination @kbd{strg-alt-f2} erreichen. In dieser Dokumentation können Sie mit den Steuerungsbefehlen Ihres Info-Betrachters blättern (siehe @ref{Top,,, info-stnd, Stand-alone GNU Info}). Auf dem Installationssystem läuft der GPM-Maus-Daemon, wodurch Sie Text mit der linken Maustaste markieren und ihn mit der mittleren Maustaste einfügen können." #. type: quotation -#: guix-git/doc/guix.texi:2248 +#: guix-git/doc/guix.texi:2265 msgid "Installation requires access to the Internet so that any missing dependencies of your system configuration can be downloaded. See the ``Networking'' section below." msgstr "Für die Installation benötigen Sie Zugang zum Internet, damit fehlende Abhängigkeiten Ihrer Systemkonfiguration heruntergeladen werden können. Im Abschnitt „Netzwerkkonfiguration“ weiter unten finden Sie mehr Informationen dazu." #. type: Plain text -#: guix-git/doc/guix.texi:2255 +#: guix-git/doc/guix.texi:2272 msgid "The graphical installer is a text-based user interface. It will guide you, with dialog boxes, through the steps needed to install GNU@tie{}Guix System." msgstr "Das grafische Installationsprogramm ist mit einer textbasierten Benutzeroberfläche ausgestattet. Es kann Sie mit Dialogfeldern durch die Schritte führen, mit denen Sie GNU@tie{}Guix System installieren." #. type: Plain text -#: guix-git/doc/guix.texi:2260 +#: guix-git/doc/guix.texi:2277 msgid "The first dialog boxes allow you to set up the system as you use it during the installation: you can choose the language, keyboard layout, and set up networking, which will be used during the installation. The image below shows the networking dialog." msgstr "Die ersten Dialogfelder ermöglichen es Ihnen, das System aufzusetzen, wie Sie es bei der Installation benutzen: Sie können die Sprache und Tastaturbelegung festlegen und die Netzwerkanbindung einrichten, die während der Installation benutzt wird. Das folgende Bild zeigt den Dialog zur Einrichtung der Netzwerkanbindung." #. type: Plain text -#: guix-git/doc/guix.texi:2262 +#: guix-git/doc/guix.texi:2279 msgid "@image{images/installer-network,5in,, networking setup with the graphical installer}" msgstr "@image{images/installer-network,5in,, Netzwerkanbindung einrichten mit dem grafischen Installationsprogramm}" #. type: Plain text -#: guix-git/doc/guix.texi:2267 +#: guix-git/doc/guix.texi:2284 msgid "Later steps allow you to partition your hard disk, as shown in the image below, to choose whether or not to use encrypted file systems, to enter the host name and root password, and to create an additional account, among other things." msgstr "Mit den danach kommenden Schritten können Sie Ihre Festplatte partitionieren, wie im folgenden Bild gezeigt, und auswählen, ob Ihre Dateisysteme verschlüsselt werden sollen oder nicht. Sie können Ihren Rechnernamen und das Administratorpasswort (das „root“-Passwort) festlegen und ein Benutzerkonto einrichten, und noch mehr." #. type: Plain text -#: guix-git/doc/guix.texi:2269 +#: guix-git/doc/guix.texi:2286 msgid "@image{images/installer-partitions,5in,, partitioning with the graphical installer}" msgstr "@image{images/installer-partitions,5in,, Partitionieren mit dem grafischen Installationsprogramm}" #. type: Plain text -#: guix-git/doc/guix.texi:2272 +#: guix-git/doc/guix.texi:2289 msgid "Note that, at any time, the installer allows you to exit the current installation step and resume at a previous step, as show in the image below." msgstr "Beachten Sie, dass Sie mit dem Installationsprogramm jederzeit den aktuellen Installationsschritt verlassen und zu einem vorherigen Schritt zurückkehren können, wie Sie im folgenden Bild sehen können." #. type: Plain text -#: guix-git/doc/guix.texi:2274 +#: guix-git/doc/guix.texi:2291 msgid "@image{images/installer-resume,5in,, resuming the installation process}" msgstr "@image{images/installer-resume,5in,, Mit einem Installationsschritt fortfahren}" #. type: Plain text -#: guix-git/doc/guix.texi:2279 +#: guix-git/doc/guix.texi:2296 msgid "Once you're done, the installer produces an operating system configuration and displays it (@pxref{Using the Configuration System}). At that point you can hit ``OK'' and installation will proceed. On success, you can reboot into the new system and enjoy. @xref{After System Installation}, for what's next!" msgstr "Sobald Sie fertig sind, erzeugt das Installationsprogramm eine Betriebssystemkonfiguration und zeigt sie an (siehe @ref{Using the Configuration System}). Zu diesem Zeitpunkt können Sie auf „OK“ drücken und die Installation wird losgehen. Ist sie erfolgreich, können Sie neu starten und Ihr neues System genießen. Siehe @ref{After System Installation} für Informationen, wie es weitergeht!" #. type: Plain text -#: guix-git/doc/guix.texi:2289 +#: guix-git/doc/guix.texi:2306 msgid "This section describes how you would ``manually'' install GNU@tie{}Guix System on your machine. This option requires familiarity with GNU/Linux, with the shell, and with common administration tools. If you think this is not for you, consider using the guided graphical installer (@pxref{Guided Graphical Installation})." msgstr "Dieser Abschnitt beschreibt, wie Sie GNU@tie{}Guix System auf manuelle Weise auf Ihrer Maschine installieren. Diese Alternative setzt voraus, dass Sie bereits mit GNU/Linux, der Shell und üblichen Administrationswerkzeugen vertraut sind. Wenn Sie glauben, dass das nichts für Sie ist, dann möchten Sie vielleicht das geführte grafische Installationsprogramm benutzen (siehe @ref{Guided Graphical Installation})." #. type: Plain text -#: guix-git/doc/guix.texi:2295 +#: guix-git/doc/guix.texi:2312 msgid "The installation system provides root shells on TTYs 3 to 6; press @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4}, and so on to reach them. It includes many common tools needed to install the system. But it is also a full-blown Guix System, which means that you can install additional packages, should you need it, using @command{guix package} (@pxref{Invoking guix package})." msgstr "Das Installationssystem macht Eingabeaufforderungen auf den TTYs 3 bis 6 zugänglich, auf denen Sie als Administratornutzer Befehle eingeben können; Sie erreichen diese, indem Sie die Tastenkombinationen @kbd{strg-alt-f3}, @kbd{strg-alt-f4} und so weiter benutzen. Es enthält viele übliche Werkzeuge, mit denen Sie diese Aufgabe bewältigen können. Da es sich auch um ein vollständiges „Guix System“-System handelt, können Sie aber auch andere Pakete mit dem Befehl @command{guix package} nachinstallieren, wenn Sie sie brauchen (siehe @ref{Invoking guix package})." #. type: subsection -#: guix-git/doc/guix.texi:2302 +#: guix-git/doc/guix.texi:2319 #, no-wrap msgid "Keyboard Layout, Networking, and Partitioning" msgstr "Tastaturbelegung, Netzwerkanbindung und Partitionierung" #. type: Plain text -#: guix-git/doc/guix.texi:2307 +#: guix-git/doc/guix.texi:2324 msgid "Before you can install the system, you may want to adjust the keyboard layout, set up networking, and partition your target hard disk. This section will guide you through this." msgstr "Bevor Sie das System installieren können, wollen Sie vielleicht die Tastaturbelegung ändern, eine Netzwerkverbindung herstellen und die Zielfestplatte partitionieren. Dieser Abschnitt wird Sie durch diese Schritte führen." #. type: cindex -#: guix-git/doc/guix.texi:2310 guix-git/doc/guix.texi:15584 +#: guix-git/doc/guix.texi:2327 guix-git/doc/guix.texi:15941 #, no-wrap msgid "keyboard layout" msgstr "Tastaturbelegung" #. type: Plain text -#: guix-git/doc/guix.texi:2314 +#: guix-git/doc/guix.texi:2331 msgid "The installation image uses the US qwerty keyboard layout. If you want to change it, you can use the @command{loadkeys} command. For example, the following command selects the Dvorak keyboard layout:" msgstr "Das Installationsabbild verwendet die US-amerikanische QWERTY-Tastaturbelegung. Wenn Sie dies ändern möchten, können Sie den @command{loadkeys}-Befehl benutzen. Mit folgendem Befehl würden Sie zum Beispiel die Dvorak-Tastaturbelegung auswählen:" #. type: example -#: guix-git/doc/guix.texi:2317 +#: guix-git/doc/guix.texi:2334 #, no-wrap msgid "loadkeys dvorak\n" msgstr "loadkeys dvorak\n" #. type: Plain text -#: guix-git/doc/guix.texi:2322 +#: guix-git/doc/guix.texi:2339 msgid "See the files under @file{/run/current-system/profile/share/keymaps} for a list of available keyboard layouts. Run @command{man loadkeys} for more information." msgstr "Schauen Sie sich an, welche Dateien im Verzeichnis @file{/run/current-system/profile/share/keymaps} stehen, um eine Liste verfügbarer Tastaturbelegungen zu sehen. Wenn Sie mehr Informationen brauchen, führen Sie @command{man loadkeys} aus." #. type: subsubsection -#: guix-git/doc/guix.texi:2323 +#: guix-git/doc/guix.texi:2340 #, no-wrap msgid "Networking" msgstr "Netzwerkkonfiguration" #. type: Plain text -#: guix-git/doc/guix.texi:2326 +#: guix-git/doc/guix.texi:2343 msgid "Run the following command to see what your network interfaces are called:" msgstr "Führen Sie folgenden Befehl aus, um zu sehen, wie Ihre Netzwerkschnittstellen benannt sind:" #. type: example -#: guix-git/doc/guix.texi:2329 +#: guix-git/doc/guix.texi:2346 #, no-wrap msgid "ifconfig -a\n" msgstr "ifconfig -a\n" #. type: table -#: guix-git/doc/guix.texi:2333 guix-git/doc/guix.texi:2355 +#: guix-git/doc/guix.texi:2350 guix-git/doc/guix.texi:2372 msgid "@dots{} or, using the GNU/Linux-specific @command{ip} command:" msgstr "…@: oder mit dem GNU/Linux-eigenen @command{ip}-Befehl:" #. type: example -#: guix-git/doc/guix.texi:2336 +#: guix-git/doc/guix.texi:2353 #, no-wrap msgid "ip address\n" msgstr "ip address\n" #. type: Plain text -#: guix-git/doc/guix.texi:2343 +#: guix-git/doc/guix.texi:2360 msgid "Wired interfaces have a name starting with @samp{e}; for example, the interface corresponding to the first on-board Ethernet controller is called @samp{eno1}. Wireless interfaces have a name starting with @samp{w}, like @samp{w1p2s0}." msgstr "Der Name kabelgebundener Schnittstellen (engl. Interfaces) beginnt mit dem Buchstaben @samp{e}, zum Beispiel heißt die dem ersten fest eingebauten Ethernet-Adapter entsprechende Schnittstelle @samp{eno1}. Drahtlose Schnittstellen werden mit einem Namen bezeichnet, der mit dem Buchstaben @samp{w} beginnt, etwa @samp{w1p2s0}." #. type: item -#: guix-git/doc/guix.texi:2345 +#: guix-git/doc/guix.texi:2362 #, no-wrap msgid "Wired connection" msgstr "Kabelverbindung" #. type: table -#: guix-git/doc/guix.texi:2348 +#: guix-git/doc/guix.texi:2365 msgid "To configure a wired network run the following command, substituting @var{interface} with the name of the wired interface you want to use." msgstr "Um ein kabelgebundenes Netzwerk einzurichten, führen Sie den folgenden Befehl aus, wobei Sie statt @var{Schnittstelle} den Namen der kabelgebundenen Schnittstelle eintippen, die Sie benutzen möchten." #. type: example -#: guix-git/doc/guix.texi:2351 +#: guix-git/doc/guix.texi:2368 #, no-wrap msgid "ifconfig @var{interface} up\n" msgstr "ifconfig @var{Schnittstelle} up\n" #. type: example -#: guix-git/doc/guix.texi:2358 +#: guix-git/doc/guix.texi:2375 #, no-wrap msgid "ip link set @var{interface} up\n" msgstr "ip link set @var{Schnittstelle} up\n" #. type: item -#: guix-git/doc/guix.texi:2360 +#: guix-git/doc/guix.texi:2377 #, no-wrap msgid "Wireless connection" msgstr "Drahtlose Verbindung" #. type: cindex -#: guix-git/doc/guix.texi:2361 guix-git/doc/guix.texi:17484 +#: guix-git/doc/guix.texi:2378 guix-git/doc/guix.texi:17846 #, no-wrap msgid "wireless" msgstr "WLAN" #. type: cindex -#: guix-git/doc/guix.texi:2362 guix-git/doc/guix.texi:17485 +#: guix-git/doc/guix.texi:2379 guix-git/doc/guix.texi:17847 #, no-wrap msgid "WiFi" msgstr "WiFi" #. type: table -#: guix-git/doc/guix.texi:2367 +#: guix-git/doc/guix.texi:2384 msgid "To configure wireless networking, you can create a configuration file for the @command{wpa_supplicant} configuration tool (its location is not important) using one of the available text editors such as @command{nano}:" msgstr "Um Drahtlosnetzwerke einzurichten, können Sie eine Konfigurationsdatei für das Konfigurationswerkzeug des @command{wpa_supplicant} schreiben (wo Sie sie speichern, ist nicht wichtig), indem Sie eines der verfügbaren Textbearbeitungsprogramme wie etwa @command{nano} benutzen:" #. type: example -#: guix-git/doc/guix.texi:2370 +#: guix-git/doc/guix.texi:2387 #, no-wrap msgid "nano wpa_supplicant.conf\n" msgstr "nano wpa_supplicant.conf\n" #. type: table -#: guix-git/doc/guix.texi:2375 +#: guix-git/doc/guix.texi:2392 msgid "As an example, the following stanza can go to this file and will work for many wireless networks, provided you give the actual SSID and passphrase for the network you are connecting to:" msgstr "Zum Beispiel können Sie die folgende Formulierung in der Datei speichern, die für viele Drahtlosnetzwerke funktioniert, sofern Sie die richtige SSID und Passphrase für das Netzwerk eingeben, mit dem Sie sich verbinden möchten:" #. type: example -#: guix-git/doc/guix.texi:2382 +#: guix-git/doc/guix.texi:2399 #, no-wrap msgid "" "network=@{\n" @@ -7919,229 +7997,229 @@ msgstr "" "@}\n" #. type: table -#: guix-git/doc/guix.texi:2387 +#: guix-git/doc/guix.texi:2404 msgid "Start the wireless service and run it in the background with the following command (substitute @var{interface} with the name of the network interface you want to use):" msgstr "Starten Sie den Dienst für Drahtlosnetzwerke und lassen Sie ihn im Hintergrund laufen, indem Sie folgenden Befehl eintippen (ersetzen Sie dabei @var{Schnittstelle} durch den Namen der Netzwerkschnittstelle, die Sie benutzen möchten):" #. type: example -#: guix-git/doc/guix.texi:2390 +#: guix-git/doc/guix.texi:2407 #, no-wrap msgid "wpa_supplicant -c wpa_supplicant.conf -i @var{interface} -B\n" msgstr "wpa_supplicant -c wpa_supplicant.conf -i @var{Schnittstelle} -B\n" #. type: table -#: guix-git/doc/guix.texi:2393 +#: guix-git/doc/guix.texi:2410 msgid "Run @command{man wpa_supplicant} for more information." msgstr "Führen Sie @command{man wpa_supplicant} aus, um mehr Informationen zu erhalten." #. type: cindex -#: guix-git/doc/guix.texi:2395 +#: guix-git/doc/guix.texi:2412 #, no-wrap msgid "DHCP" msgstr "DHCP" #. type: Plain text -#: guix-git/doc/guix.texi:2398 +#: guix-git/doc/guix.texi:2415 msgid "At this point, you need to acquire an IP address. On a network where IP addresses are automatically assigned @i{via} DHCP, you can run:" msgstr "Zu diesem Zeitpunkt müssen Sie sich eine IP-Adresse beschaffen. Auf einem Netzwerk, wo IP-Adressen automatisch @i{via} DHCP zugewiesen werden, können Sie das hier ausführen:" #. type: example -#: guix-git/doc/guix.texi:2401 +#: guix-git/doc/guix.texi:2418 #, no-wrap msgid "dhclient -v @var{interface}\n" msgstr "dhclient -v @var{Schnittstelle}\n" #. type: Plain text -#: guix-git/doc/guix.texi:2404 +#: guix-git/doc/guix.texi:2421 msgid "Try to ping a server to see if networking is up and running:" msgstr "Versuchen Sie, einen Server zu pingen, um zu prüfen, ob sie mit dem Internet verbunden sind und alles richtig funktioniert:" #. type: example -#: guix-git/doc/guix.texi:2407 +#: guix-git/doc/guix.texi:2424 #, no-wrap msgid "ping -c 3 gnu.org\n" msgstr "ping -c 3 gnu.org\n" #. type: Plain text -#: guix-git/doc/guix.texi:2411 +#: guix-git/doc/guix.texi:2428 msgid "Setting up network access is almost always a requirement because the image does not contain all the software and tools that may be needed." msgstr "Einen Internetzugang herzustellen, ist in jedem Fall nötig, weil das Abbild nicht alle Software und Werkzeuge enthält, die nötig sein könnten." #. type: cindex -#: guix-git/doc/guix.texi:2412 +#: guix-git/doc/guix.texi:2429 #, no-wrap msgid "proxy, during system installation" msgstr "Proxy, bei der Systeminstallation" #. type: Plain text -#: guix-git/doc/guix.texi:2415 +#: guix-git/doc/guix.texi:2432 msgid "If you need HTTP and HTTPS access to go through a proxy, run the following command:" msgstr "Wenn HTTP- und HTTPS-Zugriffe bei Ihnen über einen Proxy laufen sollen, führen Sie folgenden Befehl aus:" #. type: example -#: guix-git/doc/guix.texi:2418 +#: guix-git/doc/guix.texi:2435 #, no-wrap msgid "herd set-http-proxy guix-daemon @var{URL}\n" msgstr "herd set-http-proxy guix-daemon @var{URL}\n" #. type: Plain text -#: guix-git/doc/guix.texi:2423 +#: guix-git/doc/guix.texi:2440 msgid "where @var{URL} is the proxy URL, for example @code{http://example.org:8118}." msgstr "Dabei ist @var{URL} die URL des Proxys, zum Beispiel @code{http://example.org:8118}." #. type: cindex -#: guix-git/doc/guix.texi:2424 +#: guix-git/doc/guix.texi:2441 #, no-wrap msgid "installing over SSH" msgstr "Über SSH installieren" #. type: Plain text -#: guix-git/doc/guix.texi:2427 +#: guix-git/doc/guix.texi:2444 msgid "If you want to, you can continue the installation remotely by starting an SSH server:" msgstr "Wenn Sie möchten, können Sie die weitere Installation auch per Fernwartung durchführen, indem Sie einen SSH-Server starten:" #. type: example -#: guix-git/doc/guix.texi:2430 +#: guix-git/doc/guix.texi:2447 #, no-wrap msgid "herd start ssh-daemon\n" msgstr "herd start ssh-daemon\n" #. type: Plain text -#: guix-git/doc/guix.texi:2434 +#: guix-git/doc/guix.texi:2451 msgid "Make sure to either set a password with @command{passwd}, or configure OpenSSH public key authentication before logging in." msgstr "Vergewissern Sie sich vorher, dass Sie entweder ein Passwort mit @command{passwd} festgelegt haben, oder dass Sie für OpenSSH eine Authentifizierung über öffentliche Schlüssel eingerichtet haben, bevor Sie sich anmelden." #. type: subsubsection -#: guix-git/doc/guix.texi:2435 +#: guix-git/doc/guix.texi:2452 #, no-wrap msgid "Disk Partitioning" msgstr "Plattenpartitionierung" #. type: Plain text -#: guix-git/doc/guix.texi:2439 +#: guix-git/doc/guix.texi:2456 msgid "Unless this has already been done, the next step is to partition, and then format the target partition(s)." msgstr "Sofern nicht bereits geschehen, ist der nächste Schritt, zu partitionieren und dann die Zielpartition zu formatieren." #. type: Plain text -#: guix-git/doc/guix.texi:2444 +#: guix-git/doc/guix.texi:2461 msgid "The installation image includes several partitioning tools, including Parted (@pxref{Overview,,, parted, GNU Parted User Manual}), @command{fdisk}, and @command{cfdisk}. Run it and set up your disk with the partition layout you want:" msgstr "Auf dem Installationsabbild sind mehrere Partitionierungswerkzeuge zu finden, einschließlich (siehe @ref{Overview,,, parted, GNU Parted User Manual}), @command{fdisk} und @command{cfdisk}. Starten Sie eines davon und partitionieren Sie Ihre Festplatte oder sonstigen Massenspeicher, wie Sie möchten:" #. type: example -#: guix-git/doc/guix.texi:2447 +#: guix-git/doc/guix.texi:2464 #, no-wrap msgid "cfdisk\n" msgstr "cfdisk\n" #. type: Plain text -#: guix-git/doc/guix.texi:2453 +#: guix-git/doc/guix.texi:2470 msgid "If your disk uses the GUID Partition Table (GPT) format and you plan to install BIOS-based GRUB (which is the default), make sure a BIOS Boot Partition is available (@pxref{BIOS installation,,, grub, GNU GRUB manual})." msgstr "Wenn Ihre Platte mit einer „GUID Partition Table“ (GPT) formatiert ist, und Sie vorhaben, die BIOS-basierte Variante des GRUB-Bootloaders zu installieren (was der Vorgabe entspricht), stellen Sie sicher, dass eine Partition als BIOS-Boot-Partition ausgewiesen ist (siehe @ref{BIOS installation,,, grub, GNU GRUB manual})." #. type: cindex -#: guix-git/doc/guix.texi:2454 +#: guix-git/doc/guix.texi:2471 #, no-wrap msgid "EFI, installation" msgstr "EFI, Installation" #. type: cindex -#: guix-git/doc/guix.texi:2455 +#: guix-git/doc/guix.texi:2472 #, no-wrap msgid "UEFI, installation" msgstr "UEFI, Installation" #. type: cindex -#: guix-git/doc/guix.texi:2456 +#: guix-git/doc/guix.texi:2473 #, no-wrap msgid "ESP, EFI system partition" msgstr "ESP, EFI-Systempartition" #. type: Plain text -#: guix-git/doc/guix.texi:2460 +#: guix-git/doc/guix.texi:2477 msgid "If you instead wish to use EFI-based GRUB, a FAT32 @dfn{EFI System Partition} (ESP) is required. This partition can be mounted at @file{/boot/efi} for instance and must have the @code{esp} flag set. E.g., for @command{parted}:" msgstr "Falls Sie stattdessen einen EFI-basierten GRUB installieren möchten, muss auf der Platte eine FAT32-formatierte @dfn{EFI-Systempartition} (ESP) vorhanden sein. Diese Partition kann unter dem Pfad @file{/boot/efi} eingebunden („gemountet“) werden und die @code{esp}-Flag der Partition muss gesetzt sein. Dazu würden Sie beispielsweise in @command{parted} eintippen:" #. type: example -#: guix-git/doc/guix.texi:2463 +#: guix-git/doc/guix.texi:2480 #, no-wrap msgid "parted /dev/sda set 1 esp on\n" msgstr "parted /dev/sda set 1 esp on\n" #. type: vindex -#: guix-git/doc/guix.texi:2466 guix-git/doc/guix.texi:34580 +#: guix-git/doc/guix.texi:2483 guix-git/doc/guix.texi:35019 #, no-wrap msgid "grub-bootloader" msgstr "grub-bootloader" #. type: vindex -#: guix-git/doc/guix.texi:2467 guix-git/doc/guix.texi:34574 +#: guix-git/doc/guix.texi:2484 guix-git/doc/guix.texi:35013 #, no-wrap msgid "grub-efi-bootloader" msgstr "grub-efi-bootloader" #. type: quotation -#: guix-git/doc/guix.texi:2474 +#: guix-git/doc/guix.texi:2491 msgid "Unsure whether to use EFI- or BIOS-based GRUB? If the directory @file{/sys/firmware/efi} exists in the installation image, then you should probably perform an EFI installation, using @code{grub-efi-bootloader}. Otherwise you should use the BIOS-based GRUB, known as @code{grub-bootloader}. @xref{Bootloader Configuration}, for more info on bootloaders." msgstr "Falls Sie nicht wissen, ob Sie einen EFI- oder BIOS-basierten GRUB installieren möchten: Wenn bei Ihnen das Verzeichnis @file{/sys/firmware/efi} im Dateisystem existiert, möchten Sie vermutlich eine EFI-Installation durchführen, wozu Sie in Ihrer Konfiguration @code{grub-efi-bootloader} benutzen. Ansonsten sollten Sie den BIOS-basierten GRUB benutzen, der mit @code{grub-bootloader} bezeichnet wird. Siehe @ref{Bootloader Configuration}, wenn Sie mehr Informationen über Bootloader brauchen." #. type: Plain text -#: guix-git/doc/guix.texi:2482 +#: guix-git/doc/guix.texi:2499 msgid "Once you are done partitioning the target hard disk drive, you have to create a file system on the relevant partition(s)@footnote{Currently Guix System only supports ext4, btrfs, JFS, F2FS, and XFS file systems. In particular, code that reads file system UUIDs and labels only works for these file system types.}. For the ESP, if you have one and assuming it is @file{/dev/sda1}, run:" msgstr "Sobald Sie die Platte fertig partitioniert haben, auf die Sie installieren möchten, müssen Sie ein Dateisystem auf Ihrer oder Ihren für Guix System vorgesehenen Partition(en) erzeugen@footnote{Derzeit unterstützt Guix System nur die Dateisystemtypen ext4, btrfs, JFS, F2FS und XFS@. Insbesondere funktioniert Guix-Code, der Dateisystem-UUIDs und -Bezeichnungen ausliest, nur auf diesen Dateisystemtypen.}. Wenn Sie eine ESP brauchen und dafür die Partition @file{/dev/sda1} vorgesehen haben, müssen Sie diesen Befehl ausführen:" #. type: example -#: guix-git/doc/guix.texi:2485 +#: guix-git/doc/guix.texi:2502 #, no-wrap msgid "mkfs.fat -F32 /dev/sda1\n" msgstr "mkfs.fat -F32 /dev/sda1\n" #. type: Plain text -#: guix-git/doc/guix.texi:2492 +#: guix-git/doc/guix.texi:2509 msgid "For the root file system, ext4 is the most widely used format. Other file systems, such as Btrfs, support compression, which is reported to nicely complement file deduplication that the daemon performs independently of the file system (@pxref{Invoking guix-daemon, deduplication})." msgstr "Für das Wurzeldateisystem ist ext4 das am häufigsten genutzte Format. Andere Dateisysteme, wie Btrfs, unterstützen Kompression, wovon berichtet wird, es habe sich als sinnvolle Ergänzung zur Dateideduplikation erwiesen, die der Daemon unabhängig vom Dateisystem bietet (siehe @ref{Invoking guix-daemon, Deduplizieren})." #. type: Plain text -#: guix-git/doc/guix.texi:2499 +#: guix-git/doc/guix.texi:2516 msgid "Preferably, assign file systems a label so that you can easily and reliably refer to them in @code{file-system} declarations (@pxref{File Systems}). This is typically done using the @code{-L} option of @command{mkfs.ext4} and related commands. So, assuming the target root partition lives at @file{/dev/sda2}, a file system with the label @code{my-root} can be created with:" msgstr "Geben Sie Ihren Dateisystemen auch besser eine Bezeichnung („Label“), damit Sie sie zuverlässig wiedererkennen und später in den @code{file-system}-Deklarationen darauf Bezug nehmen können (siehe @ref{File Systems}). Dazu benutzen Sie typischerweise die Befehlszeilenoption @code{-L} des Befehls @command{mkfs.ext4} oder entsprechende Optionen für andere Befehle. Wenn wir also annehmen, dass @file{/dev/sda2} die Partition ist, auf der Ihr Wurzeldateisystem (englisch „root“) wohnen soll, können Sie dort mit diesem Befehl ein Dateisystem mit der Bezeichnung @code{my-root} erstellen:" #. type: example -#: guix-git/doc/guix.texi:2502 +#: guix-git/doc/guix.texi:2519 #, no-wrap msgid "mkfs.ext4 -L my-root /dev/sda2\n" msgstr "mkfs.ext4 -L my-root /dev/sda2\n" #. type: cindex -#: guix-git/doc/guix.texi:2504 guix-git/doc/guix.texi:14475 +#: guix-git/doc/guix.texi:2521 guix-git/doc/guix.texi:14832 #, no-wrap msgid "encrypted disk" msgstr "verschlüsselte Partition" #. type: Plain text -#: guix-git/doc/guix.texi:2509 +#: guix-git/doc/guix.texi:2526 msgid "If you are instead planning to encrypt the root partition, you can use the Cryptsetup/LUKS utilities to do that (see @inlinefmtifelse{html, @uref{https://linux.die.net/man/8/cryptsetup, @code{man cryptsetup}}, @code{man cryptsetup}} for more information)." msgstr "Falls Sie aber vorhaben, die Partition mit dem Wurzeldateisystem zu verschlüsseln, können Sie dazu die Cryptsetup-/LUKS-Werkzeuge verwenden (siehe @inlinefmtifelse{html, @uref{https://linux.die.net/man/8/cryptsetup, @code{man cryptsetup}}, @code{man cryptsetup}}, um mehr darüber zu erfahren)." #. type: quotation -#: guix-git/doc/guix.texi:2510 guix-git/doc/guix.texi:5280 -#: guix-git/doc/guix.texi:6489 guix-git/doc/guix.texi:14601 -#: guix-git/doc/guix.texi:21013 guix-git/doc/guix.texi:21020 +#: guix-git/doc/guix.texi:2527 guix-git/doc/guix.texi:5298 +#: guix-git/doc/guix.texi:6532 guix-git/doc/guix.texi:14958 +#: guix-git/doc/guix.texi:21375 guix-git/doc/guix.texi:21382 #, no-wrap msgid "Warning" msgstr "Warnung" #. type: quotation -#: guix-git/doc/guix.texi:2517 +#: guix-git/doc/guix.texi:2534 msgid "Note that GRUB can unlock LUKS2 devices since version 2.06, but only supports the PBKDF2 key derivation function, which is not the default for @command{cryptsetup luksFormat}. You can check which key derivation function is being used by a device by running @command{cryptsetup luksDump @var{device}}, and looking for the PBKDF field of your keyslots." msgstr "GRUB kann seit Version 2.06 LUKS2-Geräte entsperren, aber nur die Schlüsselableitungsfunktion PBKDF2 wird unterstützt, was @emph{nicht} die Voreinstellung von @command{cryptsetup luksFormat} ist. Sie können die eingesetzte Schlüsselableitungsfunktion eines Geräts anzeigen lassen, indem Sie @command{cryptsetup luksDump @var{Gerät}} ausführen, und nachsehen, ob dort ein PBKDF-Feld in Ihren Schlüsselfächern („Keyslots“) zu finden ist." #. type: Plain text -#: guix-git/doc/guix.texi:2522 +#: guix-git/doc/guix.texi:2539 msgid "Assuming you want to store the root partition on @file{/dev/sda2}, the command sequence to format it as a LUKS2 partition would be along these lines:" msgstr "Angenommen Sie wollen die Partition für das Wurzeldateisystem verschlüsselt auf @file{/dev/sda2} installieren, dann brauchen Sie eine Befehlsfolge ähnlich wie diese, um sie als LUKS2-Partition zu formatieren:" #. type: example -#: guix-git/doc/guix.texi:2527 +#: guix-git/doc/guix.texi:2544 #, no-wrap msgid "" "cryptsetup luksFormat --type luks2 --pbkdf pbkdf2 /dev/sda2\n" @@ -8153,28 +8231,28 @@ msgstr "" "mkfs.ext4 -L my-root /dev/mapper/my-partition\n" #. type: Plain text -#: guix-git/doc/guix.texi:2532 +#: guix-git/doc/guix.texi:2549 msgid "Once that is done, mount the target file system under @file{/mnt} with a command like (again, assuming @code{my-root} is the label of the root file system):" msgstr "Sobald das erledigt ist, binden Sie dieses Dateisystem als Installationsziel mit dem Einhängepunkt @file{/mnt} ein, wozu Sie einen Befehl wie hier eintippen (auch hier unter der Annahme, dass @code{my-root} die Bezeichnung des künftigen Wurzeldateisystems ist):" #. type: example -#: guix-git/doc/guix.texi:2535 +#: guix-git/doc/guix.texi:2552 #, no-wrap msgid "mount LABEL=my-root /mnt\n" msgstr "mount LABEL=my-root /mnt\n" #. type: Plain text -#: guix-git/doc/guix.texi:2541 +#: guix-git/doc/guix.texi:2558 msgid "Also mount any other file systems you would like to use on the target system relative to this path. If you have opted for @file{/boot/efi} as an EFI mount point for example, mount it at @file{/mnt/boot/efi} now so it is found by @code{guix system init} afterwards." msgstr "Binden Sie auch alle anderen Dateisysteme ein, die Sie auf dem Zielsystem benutzen möchten, mit Einhängepunkten relativ zu diesem Pfad. Wenn Sie sich zum Beispiel für einen Einhängepunkt @file{/boot/efi} für die EFI-Systempartition entschieden haben, binden Sie sie jetzt als @file{/mnt/boot/efi} ein, damit @code{guix system init} sie später findet." #. type: Plain text -#: guix-git/doc/guix.texi:2545 +#: guix-git/doc/guix.texi:2562 msgid "Finally, if you plan to use one or more swap partitions (@pxref{Swap Space}), make sure to initialize them with @command{mkswap}. Assuming you have one swap partition on @file{/dev/sda3}, you would run:" msgstr "Wenn Sie zudem auch vorhaben, eine oder mehrere Swap-Partitionen zu benutzen (siehe @ref{Swap Space}), initialisieren Sie diese nun mit @command{mkswap}. Angenommen Sie haben eine Swap-Partition auf @file{/dev/sda3}, dann würde der Befehl so lauten:" #. type: example -#: guix-git/doc/guix.texi:2549 +#: guix-git/doc/guix.texi:2566 #, no-wrap msgid "" "mkswap /dev/sda3\n" @@ -8184,12 +8262,12 @@ msgstr "" "swapon /dev/sda3\n" #. type: Plain text -#: guix-git/doc/guix.texi:2557 +#: guix-git/doc/guix.texi:2574 msgid "Alternatively, you may use a swap file. For example, assuming that in the new system you want to use the file @file{/swapfile} as a swap file, you would run@footnote{This example will work for many types of file systems (e.g., ext4). However, for copy-on-write file systems (e.g., btrfs), the required steps may be different. For details, see the manual pages for @command{mkswap} and @command{swapon}.}:" msgstr "Alternativ können Sie eine Swap-Datei benutzen. Angenommen, Sie wollten die Datei @file{/swapdatei} im neuen System als eine Swapdatei benutzen, dann müssten Sie Folgendes ausführen@footnote{Dieses Beispiel wird auf vielen Arten von Dateisystemen funktionieren (z.B.@: auf ext4). Auf Dateisystemen mit Copy-on-Write (wie z.B.@: btrfs) können sich die nötigen Schritte unterscheiden. Details finden Sie in der Dokumentation auf den Handbuchseiten von @command{mkswap} und @command{swapon}.}:" #. type: example -#: guix-git/doc/guix.texi:2565 +#: guix-git/doc/guix.texi:2582 #, no-wrap msgid "" "# This is 10 GiB of swap space. Adjust \"count\" to change the size.\n" @@ -8207,38 +8285,38 @@ msgstr "" "swapon /mnt/swapfile\n" #. type: Plain text -#: guix-git/doc/guix.texi:2570 +#: guix-git/doc/guix.texi:2587 msgid "Note that if you have encrypted the root partition and created a swap file in its file system as described above, then the encryption also protects the swap file, just like any other file in that file system." msgstr "Bedenken Sie, dass, wenn Sie die Partition für das Wurzeldateisystem („root“) verschlüsselt und eine Swap-Datei in diesem Dateisystem wie oben beschrieben erstellt haben, die Verschlüsselung auch die Swap-Datei schützt, genau wie jede andere Datei in dem Dateisystem." #. type: Plain text -#: guix-git/doc/guix.texi:2576 +#: guix-git/doc/guix.texi:2593 msgid "With the target partitions ready and the target root mounted on @file{/mnt}, we're ready to go. First, run:" msgstr "Wenn die Partitionen des Installationsziels bereit sind und dessen Wurzeldateisystem unter @file{/mnt} eingebunden wurde, kann es losgehen mit der Installation. Führen Sie zuerst aus:" #. type: example -#: guix-git/doc/guix.texi:2579 +#: guix-git/doc/guix.texi:2596 #, no-wrap msgid "herd start cow-store /mnt\n" msgstr "herd start cow-store /mnt\n" #. type: Plain text -#: guix-git/doc/guix.texi:2586 +#: guix-git/doc/guix.texi:2603 msgid "This makes @file{/gnu/store} copy-on-write, such that packages added to it during the installation phase are written to the target disk on @file{/mnt} rather than kept in memory. This is necessary because the first phase of the @command{guix system init} command (see below) entails downloads or builds to @file{/gnu/store} which, initially, is an in-memory file system." msgstr "Dadurch wird @file{/gnu/store} copy-on-write, d.h.@: dorthin von Guix erstellte Pakete werden in ihrer Installationsphase auf dem unter @file{/mnt} befindlichen Zieldateisystem gespeichert, statt den Arbeitsspeicher auszulasten. Das ist nötig, weil die erste Phase des Befehls @command{guix system init} (siehe unten) viele Dateien nach @file{/gnu/store} herunterlädt oder sie erstellt, Änderungen am @file{/gnu/store} aber bis dahin wie das übrige Installationssystem nur im Arbeitsspeicher gelagert werden konnten." #. type: Plain text -#: guix-git/doc/guix.texi:2597 +#: guix-git/doc/guix.texi:2614 msgid "Next, you have to edit a file and provide the declaration of the operating system to be installed. To that end, the installation system comes with three text editors. We recommend GNU nano (@pxref{Top,,, nano, GNU nano Manual}), which supports syntax highlighting and parentheses matching; other editors include mg (an Emacs clone), and nvi (a clone of the original BSD @command{vi} editor). We strongly recommend storing that file on the target root file system, say, as @file{/mnt/etc/config.scm}. Failing to do that, you will have lost your configuration file once you have rebooted into the newly-installed system." msgstr "Als Nächstes müssen Sie eine Datei bearbeiten und dort eine Deklaration des Betriebssystems, das Sie installieren möchten, hineinschreiben. Zu diesem Zweck sind im Installationssystem drei Texteditoren enthalten. Wir empfehlen, dass Sie GNU nano benutzen (siehe @ref{Top,,, nano, GNU nano Manual}), welcher Syntax und zueinander gehörende Klammern hervorheben kann. Andere mitgelieferte Texteditoren, die Sie benutzen können, sind mg (ein Emacs-Klon) und nvi (ein Klon des ursprünglichen @command{vi}-Editors von BSD). Wir empfehlen sehr, dass Sie diese Datei im Zieldateisystem der Installation speichern, etwa als @file{/mnt/etc/config.scm}, weil Sie Ihre Konfigurationsdatei im frisch installierten System noch brauchen werden." #. type: Plain text -#: guix-git/doc/guix.texi:2604 +#: guix-git/doc/guix.texi:2621 msgid "@xref{Using the Configuration System}, for an overview of the configuration file. The example configurations discussed in that section are available under @file{/etc/configuration} in the installation image. Thus, to get started with a system configuration providing a graphical display server (a ``desktop'' system), you can run something along these lines:" msgstr "Der Abschnitt @ref{Using the Configuration System} gibt einen Überblick über die Konfigurationsdatei. Die in dem Abschnitt diskutierten Beispielkonfigurationen sind im Installationsabbild im Verzeichnis @file{/etc/configuration} zu finden. Um also mit einer Systemkonfiguration anzufangen, die einen grafischen Anzeigeserver (einen „Display-Server“ zum Darstellen einer „Desktop“-Arbeitsumgebung) bietet, könnten Sie so etwas ausführen:" #. type: example -#: guix-git/doc/guix.texi:2609 +#: guix-git/doc/guix.texi:2626 #, no-wrap msgid "" "# mkdir /mnt/etc\n" @@ -8250,53 +8328,53 @@ msgstr "" "# nano /mnt/etc/config.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:2613 +#: guix-git/doc/guix.texi:2630 msgid "You should pay attention to what your configuration file contains, and in particular:" msgstr "Achten Sie darauf, was in Ihrer Konfigurationsdatei steht, und besonders auf Folgendes:" #. type: itemize -#: guix-git/doc/guix.texi:2625 +#: guix-git/doc/guix.texi:2642 msgid "Make sure the @code{bootloader-configuration} form refers to the targets you want to install GRUB on. It should mention @code{grub-bootloader} if you are installing GRUB in the legacy way, or @code{grub-efi-bootloader} for newer UEFI systems. For legacy systems, the @code{targets} field contain the names of the devices, like @code{(list \"/dev/sda\")}; for UEFI systems it names the paths to mounted EFI partitions, like @code{(list \"/boot/efi\")}; do make sure the paths are currently mounted and a @code{file-system} entry is specified in your configuration." msgstr "Ihre @code{bootloader-configuration}-Form muss sich auf die Ziele beziehen, auf die Sie GRUB installieren möchten. Sie sollte genau dann @code{grub-bootloader} nennen, wenn Sie GRUB im alten BIOS-Modus installieren, und für neuere UEFI-Systeme sollten Sie @code{grub-efi-bootloader} nennen. Bei Altsystemen bezeichnet das @code{targets}-Feld die Geräte wie @code{(list \"/dev/sda\")}, bei UEFI-Systemen bezeichnet es die Pfade zu eingebundenen EFI-Partitionen (ESP) wie @code{(list \"/boot/efi\")}; stellen Sie sicher, dass die Pfade tatsächlich dort eingebunden sind und ein @code{file-system}-Eintrag dafür in Ihrer Konfiguration festgelegt wurde." #. type: itemize -#: guix-git/doc/guix.texi:2631 +#: guix-git/doc/guix.texi:2648 msgid "Be sure that your file system labels match the value of their respective @code{device} fields in your @code{file-system} configuration, assuming your @code{file-system} configuration uses the @code{file-system-label} procedure in its @code{device} field." msgstr "Dateisystembezeichnungen müssen mit den jeweiligen @code{device}-Feldern in Ihrer @code{file-system}-Konfiguration übereinstimmen, sofern Sie in Ihrer @code{file-system}-Konfiguration die Prozedur @code{file-system-label} für ihre @code{device}-Felder benutzen." #. type: itemize -#: guix-git/doc/guix.texi:2635 +#: guix-git/doc/guix.texi:2652 msgid "If there are encrypted or RAID partitions, make sure to add a @code{mapped-devices} field to describe them (@pxref{Mapped Devices})." msgstr "Gibt es verschlüsselte Partitionen oder RAID-Partitionen, dann müssen sie im @code{mapped-devices}-Feld genannt werden (siehe @ref{Mapped Devices})." #. type: Plain text -#: guix-git/doc/guix.texi:2640 +#: guix-git/doc/guix.texi:2657 msgid "Once you are done preparing the configuration file, the new system must be initialized (remember that the target root file system is mounted under @file{/mnt}):" msgstr "Wenn Sie damit fertig sind, Ihre Konfigurationsdatei vorzubereiten, können Sie das neue System initialisieren (denken Sie daran, dass zukünftige Wurzeldateisystem muss unter @file{/mnt} wie bereits beschrieben eingebunden sein):" #. type: example -#: guix-git/doc/guix.texi:2643 +#: guix-git/doc/guix.texi:2660 #, no-wrap msgid "guix system init /mnt/etc/config.scm /mnt\n" msgstr "guix system init /mnt/etc/config.scm /mnt\n" #. type: Plain text -#: guix-git/doc/guix.texi:2650 +#: guix-git/doc/guix.texi:2667 msgid "This copies all the necessary files and installs GRUB on @file{/dev/sdX}, unless you pass the @option{--no-bootloader} option. For more information, @pxref{Invoking guix system}. This command may trigger downloads or builds of missing packages, which can take some time." msgstr "Dies kopiert alle notwendigen Dateien und installiert GRUB auf @file{/dev/sdX}, sofern Sie nicht noch die Befehlszeilenoption @option{--no-bootloader} benutzen. Weitere Informationen finden Sie im Abschnitt @ref{Invoking guix system}. Der Befehl kann das Herunterladen oder Erstellen fehlender Softwarepakete auslösen, was einige Zeit in Anspruch nehmen kann." #. type: Plain text -#: guix-git/doc/guix.texi:2658 +#: guix-git/doc/guix.texi:2675 msgid "Once that command has completed---and hopefully succeeded!---you can run @command{reboot} and boot into the new system. The @code{root} password in the new system is initially empty; other users' passwords need to be initialized by running the @command{passwd} command as @code{root}, unless your configuration specifies otherwise (@pxref{user-account-password, user account passwords}). @xref{After System Installation}, for what's next!" msgstr "Sobald der Befehl erfolgreich@tie{}— hoffentlich!@tie{}— durchgelaufen ist, können Sie mit dem Befehl @command{reboot} das neue System booten lassen. Der Administratornutzer @code{root} hat im neuen System zunächst ein leeres Passwort, und Passwörter der anderen Nutzer müssen Sie später setzen, indem Sie den Befehl @command{passwd} als @code{root} ausführen, außer Ihre Konfiguration enthält schon Passwörter (siehe @ref{user-account-password, Passwörter für Benutzerkonten}). Siehe @ref{After System Installation} für Informationen, wie es weiter geht!" #. type: Plain text -#: guix-git/doc/guix.texi:2665 +#: guix-git/doc/guix.texi:2682 msgid "Success, you've now booted into Guix System! From then on, you can update the system whenever you want by running, say:" msgstr "Sie haben es geschafft: Sie haben Guix System erfolgreich gebootet! Von jetzt an können Sie Guix System aktualisieren, wann Sie möchten, indem Sie zum Beispiel das hier ausführen:" #. type: example -#: guix-git/doc/guix.texi:2669 +#: guix-git/doc/guix.texi:2686 #, no-wrap msgid "" "guix pull\n" @@ -8306,93 +8384,93 @@ msgstr "" "sudo guix system reconfigure /etc/config.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:2675 +#: guix-git/doc/guix.texi:2692 msgid "This builds a new system generation with the latest packages and services (@pxref{Invoking guix system}). We recommend doing that regularly so that your system includes the latest security updates (@pxref{Security Updates})." msgstr "Dadurch wird eine neue Systemgeneration aus den neuesten Paketen und Diensten erstellt (siehe @ref{Invoking guix system}). Wir empfehlen, diese Schritte regelmäßig zu wiederholen, damit Ihr System die aktuellen Sicherheitsaktualisierungen benutzt (siehe @ref{Security Updates})." #. type: cindex -#: guix-git/doc/guix.texi:2678 +#: guix-git/doc/guix.texi:2695 #, no-wrap msgid "sudo vs. @command{guix pull}" msgstr "sudo, Wirkung auf @command{guix pull}" #. type: quotation -#: guix-git/doc/guix.texi:2682 +#: guix-git/doc/guix.texi:2699 msgid "Note that @command{sudo guix} runs your user's @command{guix} command and @emph{not} root's, because @command{sudo} leaves @env{PATH} unchanged. To explicitly run root's @command{guix}, type @command{sudo -i guix @dots{}}." msgstr "Beachten Sie, dass bei Nutzung von @command{sudo guix} der @command{guix}-Befehl des aktiven Benutzers ausgeführt wird und @emph{nicht} der des Administratornutzers „root“, weil @command{sudo} die Umgebungsvariable @env{PATH} unverändert lässt. Um ausdrücklich das @command{guix}-Programm des Administrators aufzurufen, müssen Sie @command{sudo -i guix …} eintippen." #. type: quotation -#: guix-git/doc/guix.texi:2687 +#: guix-git/doc/guix.texi:2704 msgid "The difference matters here, because @command{guix pull} updates the @command{guix} command and package definitions only for the user it is run as. This means that if you choose to use @command{guix system reconfigure} in root's login shell, you'll need to @command{guix pull} separately." msgstr "Das macht hier einen Unterschied, weil @command{guix pull} den @command{guix}-Befehl und Paketdefinitionen nur für dasjenige Benutzerkonto aktualisiert, mit dem es ausgeführt wird. Würden Sie stattdessen in der Login-Shell des „root“-Nutzers @command{guix system reconfigure} ausführen, müssten Sie auch für ihn @command{guix pull} ausführen." #. type: Plain text -#: guix-git/doc/guix.texi:2692 +#: guix-git/doc/guix.texi:2709 msgid "Now, @pxref{Getting Started}, and join us on @code{#guix} on the Libera Chat IRC network or on @email{guix-devel@@gnu.org} to share your experience!" msgstr "Werfen Sie nun einen Blick auf @ref{Getting Started} und besuchen Sie uns auf @code{#guix} auf dem Libera-Chat-IRC-Netzwerk oder auf der Mailing-Liste @file{guix-devel@@gnu.org}, um uns Rückmeldung zu geben!" #. type: section -#: guix-git/doc/guix.texi:2695 +#: guix-git/doc/guix.texi:2712 #, no-wrap msgid "Installing Guix in a Virtual Machine" msgstr "Guix in einer virtuellen Maschine installieren" #. type: cindex -#: guix-git/doc/guix.texi:2697 +#: guix-git/doc/guix.texi:2714 #, no-wrap msgid "virtual machine, Guix System installation" msgstr "virtuelle Maschine, Guix System installieren" #. type: cindex -#: guix-git/doc/guix.texi:2698 +#: guix-git/doc/guix.texi:2715 #, no-wrap msgid "virtual private server (VPS)" msgstr "Virtual Private Server (VPS)" #. type: cindex -#: guix-git/doc/guix.texi:2699 +#: guix-git/doc/guix.texi:2716 #, no-wrap msgid "VPS (virtual private server)" msgstr "VPS (Virtual Private Server)" #. type: Plain text -#: guix-git/doc/guix.texi:2703 +#: guix-git/doc/guix.texi:2720 msgid "If you'd like to install Guix System in a virtual machine (VM) or on a virtual private server (VPS) rather than on your beloved machine, this section is for you." msgstr "Wenn Sie Guix System auf einer virtuellen Maschine (VM) oder einem „Virtual Private Server“ (VPS) statt auf Ihrer echten Maschine installieren möchten, ist dieser Abschnitt hier richtig für Sie." #. type: Plain text -#: guix-git/doc/guix.texi:2706 +#: guix-git/doc/guix.texi:2723 msgid "To boot a @uref{https://qemu.org/,QEMU} VM for installing Guix System in a disk image, follow these steps:" msgstr "Um eine virtuelle Maschine für @uref{https://qemu.org/,QEMU} aufzusetzen, mit der Sie Guix System in ein „Disk-Image“ installieren können (also in eine Datei mit einem Abbild eines Plattenspeichers), gehen Sie so vor:" #. type: enumerate -#: guix-git/doc/guix.texi:2711 +#: guix-git/doc/guix.texi:2728 msgid "First, retrieve and decompress the Guix system installation image as described previously (@pxref{USB Stick and DVD Installation})." msgstr "Zunächst laden Sie das Installationsabbild des Guix-Systems wie zuvor beschrieben herunter und entpacken es (siehe @ref{USB Stick and DVD Installation})." #. type: enumerate -#: guix-git/doc/guix.texi:2715 +#: guix-git/doc/guix.texi:2732 msgid "Create a disk image that will hold the installed system. To make a qcow2-formatted disk image, use the @command{qemu-img} command:" msgstr "Legen Sie nun ein Disk-Image an, das das System nach der Installation enthalten soll. Um ein qcow2-formatiertes Disk-Image zu erstellen, benutzen Sie den Befehl @command{qemu-img}:" #. type: example -#: guix-git/doc/guix.texi:2718 +#: guix-git/doc/guix.texi:2735 #, no-wrap msgid "qemu-img create -f qcow2 guix-system.img 50G\n" msgstr "qemu-img create -f qcow2 guix-system.img 50G\n" #. type: enumerate -#: guix-git/doc/guix.texi:2722 +#: guix-git/doc/guix.texi:2739 msgid "The resulting file will be much smaller than 50 GB (typically less than 1 MB), but it will grow as the virtualized storage device is filled up." msgstr "Die Datei, die Sie herausbekommen, wird wesentlich kleiner als 50 GB sein (typischerweise kleiner als 1 MB), vergrößert sich aber, wenn der virtualisierte Speicher gefüllt wird." #. type: enumerate -#: guix-git/doc/guix.texi:2725 +#: guix-git/doc/guix.texi:2742 msgid "Boot the USB installation image in an VM:" msgstr "Starten Sie das USB-Installationsabbild auf einer virtuellen Maschine:" #. type: example -#: guix-git/doc/guix.texi:2731 +#: guix-git/doc/guix.texi:2748 #, no-wrap msgid "" "qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \\\n" @@ -8406,115 +8484,115 @@ msgstr "" " -drive media=cdrom,file=guix-system-install-@value{VERSION}.@var{System}.iso\n" #. type: enumerate -#: guix-git/doc/guix.texi:2735 +#: guix-git/doc/guix.texi:2752 msgid "@code{-enable-kvm} is optional, but significantly improves performance, @pxref{Running Guix in a VM}." msgstr "@code{-enable-kvm} ist optional, verbessert die Rechenleistung aber erheblich, siehe @ref{Running Guix in a VM}." #. type: enumerate -#: guix-git/doc/guix.texi:2739 +#: guix-git/doc/guix.texi:2756 msgid "You're now root in the VM, proceed with the installation process. @xref{Preparing for Installation}, and follow the instructions." msgstr "Sie sind nun in der virtuellen Maschine als Administratornutzer @code{root} angemeldet und können mit der Installation wie gewohnt fortfahren. Folgen Sie der Anleitung im Abschnitt @ref{Preparing for Installation}." #. type: Plain text -#: guix-git/doc/guix.texi:2744 +#: guix-git/doc/guix.texi:2761 msgid "Once installation is complete, you can boot the system that's on your @file{guix-system.img} image. @xref{Running Guix in a VM}, for how to do that." msgstr "Wurde die Installation abgeschlossen, können Sie das System starten, das sich nun als Abbild in der Datei @file{guix-system.img} befindet. Der Abschnitt @ref{Running Guix in a VM} erklärt, wie Sie das tun können." #. type: cindex -#: guix-git/doc/guix.texi:2748 +#: guix-git/doc/guix.texi:2765 #, no-wrap msgid "installation image" msgstr "Installationsabbild" #. type: Plain text -#: guix-git/doc/guix.texi:2751 +#: guix-git/doc/guix.texi:2768 msgid "The installation image described above was built using the @command{guix system} command, specifically:" msgstr "Das oben beschriebene Installationsabbild wurde mit dem Befehl @command{guix system} erstellt, genauer gesagt mit:" #. type: example -#: guix-git/doc/guix.texi:2754 +#: guix-git/doc/guix.texi:2771 #, no-wrap msgid "guix system image -t iso9660 gnu/system/install.scm\n" msgstr "guix system image -t iso9660 gnu/system/install.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:2759 +#: guix-git/doc/guix.texi:2776 msgid "Have a look at @file{gnu/system/install.scm} in the source tree, and see also @ref{Invoking guix system} for more information about the installation image." msgstr "Die Datei @file{gnu/system/install.scm} finden Sie im Quellbaum von Guix. Schauen Sie sich die Datei und auch den Abschnitt @ref{Invoking guix system} an, um mehr Informationen über das Installationsabbild zu erhalten." #. type: section -#: guix-git/doc/guix.texi:2760 +#: guix-git/doc/guix.texi:2777 #, no-wrap msgid "Building the Installation Image for ARM Boards" msgstr "Abbild zur Installation für ARM-Rechner erstellen" #. type: Plain text -#: guix-git/doc/guix.texi:2764 +#: guix-git/doc/guix.texi:2781 msgid "Many ARM boards require a specific variant of the @uref{https://www.denx.de/wiki/U-Boot/, U-Boot} bootloader." msgstr "Viele ARM-Chips funktionieren nur mit ihrer eigenen speziellen Variante des @uref{https://www.denx.de/wiki/U-Boot/, U-Boot-Bootloaders}." #. type: Plain text -#: guix-git/doc/guix.texi:2768 +#: guix-git/doc/guix.texi:2785 msgid "If you build a disk image and the bootloader is not available otherwise (on another boot drive etc), it's advisable to build an image that includes the bootloader, specifically:" msgstr "Wenn Sie ein Disk-Image erstellen und der Bootloader nicht anderweitig schon installiert ist (auf einem anderen Laufwerk), ist es ratsam, ein Disk-Image zu erstellen, was den Bootloader enthält, mit dem Befehl:" #. type: example -#: guix-git/doc/guix.texi:2771 +#: guix-git/doc/guix.texi:2788 #, no-wrap msgid "guix system image --system=armhf-linux -e '((@@ (gnu system install) os-with-u-boot) (@@ (gnu system install) installation-os) \"A20-OLinuXino-Lime2\")'\n" msgstr "guix system image --system=armhf-linux -e '((@@ (gnu system install) os-with-u-boot) (@@ (gnu system install) installation-os) \"A20-OLinuXino-Lime2\")'\n" #. type: Plain text -#: guix-git/doc/guix.texi:2775 +#: guix-git/doc/guix.texi:2792 msgid "@code{A20-OLinuXino-Lime2} is the name of the board. If you specify an invalid board, a list of possible boards will be printed." msgstr "@code{A20-OLinuXino-Lime2} ist der Name des Chips. Wenn Sie einen ungültigen Namen eingeben, wird eine Liste möglicher Chip-Namen ausgegeben." #. type: Plain text -#: guix-git/doc/guix.texi:2785 +#: guix-git/doc/guix.texi:2802 msgid "Presumably, you've reached this section because either you have installed Guix on top of another distribution (@pxref{Installation}), or you've installed the standalone Guix System (@pxref{System Installation}). It's time for you to get started using Guix and this section aims to help you do that and give you a feel of what it's like." msgstr "Wenn Sie in diesem Abschnitt angekommen sind, haben Sie vermutlich zuvor entweder Guix auf einer fremden Distribution installiert (siehe @ref{Installation}) oder Sie haben das eigenständige „Guix System“ installiert (siehe @ref{System Installation}). Nun wird es Zeit für Sie, Guix kennenzulernen. Darum soll es in diesem Abschnitt gehen. Wir möchten Ihnen ein Gefühl vermitteln, wie sich Guix anfühlt." #. type: Plain text -#: guix-git/doc/guix.texi:2789 +#: guix-git/doc/guix.texi:2806 msgid "Guix is about installing software, so probably the first thing you'll want to do is to actually look for software. Let's say you're looking for a text editor, you can run:" msgstr "Bei Guix geht es darum, Software zu installieren, also wollen Sie vermutlich zunächst Software finden, die Sie haben möchten. Sagen wir, Sie suchen ein Programm zur Textverarbeitung. Dann führen Sie diesen Befehl aus:" #. type: example -#: guix-git/doc/guix.texi:2792 +#: guix-git/doc/guix.texi:2809 #, no-wrap msgid "guix search text editor\n" msgstr "guix search text editor\n" #. type: Plain text -#: guix-git/doc/guix.texi:2799 +#: guix-git/doc/guix.texi:2816 msgid "This command shows you a number of matching @dfn{packages}, each time showing the package's name, version, a description, and additional info. Once you've found out the one you want to use, let's say Emacs (ah ha!), you can go ahead and install it (run this command as a regular user, @emph{no need for root privileges}!):" msgstr "Durch diesen Befehl stoßen Sie auf eine Reihe passender @dfn{Pakete}. Für jedes werden Ihnen der Name des Pakets, seine Version, eine Beschreibung und weitere Informationen angezeigt. Sobald Sie das Paket gefunden haben, dass Sie benutzen möchten, sagen wir mal Emacs (aha!), dann können Sie weitermachen und es installieren (führen Sie diesen Befehl als normaler Benutzer aus, @emph{Guix braucht hierfür keine Administratorrechte}!):" #. type: example -#: guix-git/doc/guix.texi:2802 +#: guix-git/doc/guix.texi:2819 #, no-wrap msgid "guix install emacs\n" msgstr "guix install emacs\n" #. type: cindex -#: guix-git/doc/guix.texi:2804 guix-git/doc/guix.texi:3116 -#: guix-git/doc/guix.texi:3168 +#: guix-git/doc/guix.texi:2821 guix-git/doc/guix.texi:3133 +#: guix-git/doc/guix.texi:3185 #, no-wrap msgid "profile" msgstr "Profil" #. type: Plain text -#: guix-git/doc/guix.texi:2812 +#: guix-git/doc/guix.texi:2829 msgid "You've installed your first package, congrats! The package is now visible in your default @dfn{profile}, @file{$HOME/.guix-profile}---a profile is a directory containing installed packages. In the process, you've probably noticed that Guix downloaded pre-built binaries; or, if you explicitly chose to @emph{not} use pre-built binaries, then probably Guix is still building software (@pxref{Substitutes}, for more info)." msgstr "Sie haben soeben Ihr erstes Paket installiert, Glückwunsch! Das Paket ist nun Teil Ihres voreingestellten Profils in @file{$HOME/.guix-profile}@tie{}— ein @dfn{Profil} ist ein Verzeichnis, das installierte Pakete enthält. Während Sie das getan haben, ist Ihnen wahrscheinlich aufgefallen, dass Guix vorerstellte Programmbinärdateien herunterlädt, statt sie auf Ihrem Rechner zu kompilieren, außer wenn Sie diese Funktionalität vorher ausdrücklich @emph{abgeschaltet} haben. In diesem Fall ist Guix wahrscheinlich noch immer mit der Erstellung beschäftigt. Siehe @ref{Substitutes} für mehr Informationen." #. type: Plain text -#: guix-git/doc/guix.texi:2815 +#: guix-git/doc/guix.texi:2832 msgid "Unless you're using Guix System, the @command{guix install} command must have printed this hint:" msgstr "Wenn Sie @emph{nicht} Guix System benutzen, wird der Befehl @command{guix install} diesen Hinweis ausgegeben haben:" #. type: example -#: guix-git/doc/guix.texi:2818 +#: guix-git/doc/guix.texi:2835 #, no-wrap msgid "" "hint: Consider setting the necessary environment variables by running:\n" @@ -8525,7 +8603,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:2821 +#: guix-git/doc/guix.texi:2838 #, no-wrap msgid "" " GUIX_PROFILE=\"$HOME/.guix-profile\"\n" @@ -8537,77 +8615,77 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:2823 +#: guix-git/doc/guix.texi:2840 #, no-wrap msgid "Alternately, see `guix package --search-paths -p \"$HOME/.guix-profile\"'.\n" msgstr "Sie können sie auch mit `guix package --search-paths -p \"$HOME/.guix-profile\"' nachlesen.\n" #. type: Plain text -#: guix-git/doc/guix.texi:2837 +#: guix-git/doc/guix.texi:2854 msgid "Indeed, you must now tell your shell where @command{emacs} and other programs installed with Guix are to be found. Pasting the two lines above will do just that: it will add @code{$HOME/.guix-profile/bin}---which is where the installed package is---to the @code{PATH} environment variable. You can paste these two lines in your shell so they take effect right away, but more importantly you should add them to @file{~/.bash_profile} (or equivalent file if you do not use Bash) so that environment variables are set next time you spawn a shell. You only need to do this once and other search paths environment variables will be taken care of similarly---e.g., if you eventually install @code{python} and Python libraries, @env{GUIX_PYTHONPATH} will be defined." msgstr "Tatsächlich ist es erforderlich, dass Sie Ihrer Shell erst einmal mitteilen, wo sich @command{emacs} und andere mit Guix installierte Programme befinden. Wenn Sie die obigen zwei Zeilen in die Shell einfügen, wird genau das bewerkstelligt: @code{$HOME/.guix-profile/bin}@tie{}— wo sich das installierte Paket befindet@tie{}— wird in die @code{PATH}-Umgebungsvariable eingefügt. Sie können diese zwei Zeilen in Ihre Shell hineinkopieren, damit sie sich sofort auswirken, aber wichtiger ist, dass Sie sie in @file{~/.bash_profile} kopieren (oder eine äquivalente Datei, wenn Sie @emph{nicht} Bash benutzen), damit die Umgebungsvariablen nächstes Mal gesetzt sind, wenn Sie wieder eine Shell öffnen. Das müssen Sie nur einmal machen und es sorgt auch bei anderen Umgebungsvariablen mit Suchpfaden dafür, dass die installierte Software gefunden wird. Wenn Sie zum Beispiel @code{python} und Bibliotheken für Python installieren, wird @env{GUIX_PYTHONPATH} definiert." #. type: Plain text -#: guix-git/doc/guix.texi:2840 +#: guix-git/doc/guix.texi:2857 msgid "You can go on installing packages at your will. To list installed packages, run:" msgstr "Sie können nun weitere Pakete installieren, wann immer Sie möchten. Um die installierten Pakete aufzulisten, führen Sie dies aus:" #. type: example -#: guix-git/doc/guix.texi:2843 +#: guix-git/doc/guix.texi:2860 #, no-wrap msgid "guix package --list-installed\n" msgstr "guix package --list-installed\n" #. type: Plain text -#: guix-git/doc/guix.texi:2848 +#: guix-git/doc/guix.texi:2865 msgid "To remove a package, you would unsurprisingly run @command{guix remove}. A distinguishing feature is the ability to @dfn{roll back} any operation you made---installation, removal, upgrade---by simply typing:" msgstr "Um ein Paket wieder zu entfernen, benutzen Sie wenig überraschend @command{guix remove}. Guix hebt sich von anderen Paketverwaltern darin ab, dass Sie jede Operation, die Sie durchgeführt haben, auch wieder @dfn{zurücksetzen} können, egal ob @code{install}, @code{remove} oder @code{upgrade}, indem Sie dies ausführen:" #. type: example -#: guix-git/doc/guix.texi:2851 +#: guix-git/doc/guix.texi:2868 #, no-wrap msgid "guix package --roll-back\n" msgstr "guix package --roll-back\n" #. type: Plain text -#: guix-git/doc/guix.texi:2856 +#: guix-git/doc/guix.texi:2873 msgid "This is because each operation is in fact a @dfn{transaction} that creates a new @dfn{generation}. These generations and the difference between them can be displayed by running:" msgstr "Das geht deshalb, weil jede Operation eigentlich als @dfn{Transaktion} durchgeführt wird, die eine neue @dfn{Generation} erstellt. Über folgenden Befehl bekommen Sie diese Generationen und den Unterschied zwischen ihnen angezeigt:" #. type: example -#: guix-git/doc/guix.texi:2859 +#: guix-git/doc/guix.texi:2876 #, no-wrap msgid "guix package --list-generations\n" msgstr "guix package --list-generations\n" #. type: Plain text -#: guix-git/doc/guix.texi:2862 +#: guix-git/doc/guix.texi:2879 msgid "Now you know the basics of package management!" msgstr "Jetzt kennen Sie die Grundlagen der Paketverwaltung!" #. type: quotation -#: guix-git/doc/guix.texi:2863 guix-git/doc/guix.texi:2922 +#: guix-git/doc/guix.texi:2880 guix-git/doc/guix.texi:2939 #, no-wrap msgid "Going further" msgstr "Vertiefung" #. type: quotation -#: guix-git/doc/guix.texi:2871 +#: guix-git/doc/guix.texi:2888 msgid "@xref{Package Management}, for more about package management. You may like @dfn{declarative} package management with @command{guix package --manifest}, managing separate @dfn{profiles} with @option{--profile}, deleting old generations, collecting garbage, and other nifty features that will come in handy as you become more familiar with Guix. If you are a developer, @pxref{Development} for additional tools. And if you're curious, @pxref{Features}, to peek under the hood." msgstr "Lesen Sie den Abschnitt zur @ref{Package Management} für mehr Informationen dazu. Vielleicht gefällt Ihnen @dfn{deklarative} Paketverwaltung mit @command{guix package --manifest}, die Verwaltung separater @dfn{Profile} mit @option{--profile}, das Löschen alter Generationen und das „Müllsammeln“ (Garbage Collection) sowie andere raffinierte Funktionalitäten, die sich als nützlich erweisen werden, wenn Sie sich länger mit Guix befassen. Wenn Sie Software entwickeln, lernen Sie im Abschnitt @ref{Development} hilfreiche Werkzeuge kennen. Und wenn Sie neugierig sind, wird Ihnen im Abschnitt @ref{Features} ein Überblick gegeben, wie und nach welchen Prinzipien Guix aufgebaut ist." #. type: Plain text -#: guix-git/doc/guix.texi:2876 +#: guix-git/doc/guix.texi:2893 msgid "Once you've installed a set of packages, you will want to periodically @emph{upgrade} them to the latest and greatest version. To do that, you will first pull the latest revision of Guix and its package collection:" msgstr "Sobald Sie eine Reihe von Paketen installiert haben, werden Sie diese regelmäßig auf deren neueste und beste Version @emph{aktualisieren} wollen. Dazu ist es erforderlich, dass Sie zunächst die neueste Version von Guix und seiner Paketsammlung mit einem „Pull“ laden:" #. type: Plain text -#: guix-git/doc/guix.texi:2886 +#: guix-git/doc/guix.texi:2903 msgid "The end result is a new @command{guix} command, under @file{~/.config/guix/current/bin}. Unless you're on Guix System, the first time you run @command{guix pull}, be sure to follow the hint that the command prints and, similar to what we saw above, paste these two lines in your terminal and @file{.bash_profile}:" msgstr "Das Endergebnis ist ein neuer @command{guix}-Befehl innerhalb von @file{~/.config/guix/current/bin}. Sofern Sie nicht Guix System benutzen, sollten Sie dem Hinweis Folge leisten, den Sie bei der ersten Ausführung von @command{guix pull} angezeigt bekommen, d.h.@: ähnlich wie oben beschrieben, fügen Sie diese zwei Zeilen in Ihr Terminal und Ihre @file{.bash_profile} ein:" #. type: example -#: guix-git/doc/guix.texi:2890 +#: guix-git/doc/guix.texi:2907 #, no-wrap msgid "" "GUIX_PROFILE=\"$HOME/.config/guix/current\"\n" @@ -8617,336 +8695,336 @@ msgstr "" ". \"$GUIX_PROFILE/etc/profile\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:2894 +#: guix-git/doc/guix.texi:2911 msgid "You must also instruct your shell to point to this new @command{guix}:" msgstr "Ebenso müssen Sie Ihre Shell auf diesen neuen @command{guix}-Befehl hinweisen:" #. type: example -#: guix-git/doc/guix.texi:2897 +#: guix-git/doc/guix.texi:2914 #, no-wrap msgid "hash guix\n" msgstr "hash guix\n" #. type: Plain text -#: guix-git/doc/guix.texi:2901 +#: guix-git/doc/guix.texi:2918 msgid "At this point, you're running a brand new Guix. You can thus go ahead and actually upgrade all the packages you previously installed:" msgstr "Wenn das geschafft ist, benutzen Sie ein brandneues Guix. Jetzt können Sie damit fortfahren, alle zuvor installierten Pakete zu aktualisieren:" #. type: example -#: guix-git/doc/guix.texi:2904 +#: guix-git/doc/guix.texi:2921 #, no-wrap msgid "guix upgrade\n" msgstr "guix upgrade\n" #. type: Plain text -#: guix-git/doc/guix.texi:2910 +#: guix-git/doc/guix.texi:2927 msgid "As you run this command, you will see that binaries are downloaded (or perhaps some packages are built), and eventually you end up with the upgraded packages. Should one of these upgraded packages not be to your liking, remember you can always roll back!" msgstr "Während dieser Befehl ausgeführt wird, werden Sie sehen, dass Binärdateien heruntergeladen werden (vielleicht müssen manche Pakete auch auf Ihrem Rechner erstellt werden). Letztendlich stehen Ihnen die aktualisierten Pakete zur Verfügung. Falls eine der Aktualisierungen nicht Ihren Wünschen entspricht, haben Sie immer auch die Möglichkeit, sie auf den alten Stand zurückzusetzen!" #. type: Plain text -#: guix-git/doc/guix.texi:2913 +#: guix-git/doc/guix.texi:2930 msgid "You can display the exact revision of Guix you're currently using by running:" msgstr "Sie können sich anzeigen lassen, welche Version von Guix Sie genau verwenden, indem Sie dies ausführen:" #. type: example -#: guix-git/doc/guix.texi:2916 +#: guix-git/doc/guix.texi:2933 #, no-wrap msgid "guix describe\n" msgstr "guix describe\n" #. type: Plain text -#: guix-git/doc/guix.texi:2921 +#: guix-git/doc/guix.texi:2938 msgid "The information it displays is @emph{all it takes to reproduce the exact same Guix}, be it at a different point in time or on a different machine." msgstr "Die angezeigten Informationen sind @emph{alles, was nötig ist, um genau dasselbe Guix zu installieren}. Damit können Sie zu einem anderen Zeitpunkt oder auf einer anderen Maschine genau dieselbe Software nachbilden." #. type: quotation -#: guix-git/doc/guix.texi:2927 +#: guix-git/doc/guix.texi:2944 msgid "@xref{Invoking guix pull}, for more information. @xref{Channels}, on how to specify additional @dfn{channels} to pull packages from, how to replicate Guix, and more. You may also find @command{time-machine} handy (@pxref{Invoking guix time-machine})." msgstr "Siehe @ref{Invoking guix pull} für weitere Informationen. Siehe @ref{Channels} für Erklärungen, wie man zusätzliche @dfn{Kanäle} als Paketquellen angibt, wie man Guix nachbilden kann, und mehr. Vielleicht hilft Ihnen auch die @command{time-machine}-Funktion (siehe @ref{Invoking guix time-machine})." #. type: Plain text -#: guix-git/doc/guix.texi:2932 +#: guix-git/doc/guix.texi:2949 msgid "If you installed Guix System, one of the first things you'll want to do is to upgrade your system. Once you've run @command{guix pull} to get the latest Guix, you can upgrade the system like this:" msgstr "Wenn Sie Guix System installieren, dürfte eines der ersten Dinge, das Sie tun wollen, eine Aktualisierung Ihres Systems sein. Sobald Sie @command{guix pull} ausgeführt haben, können Sie mit diesem Befehl das System aktualisieren:" #. type: example -#: guix-git/doc/guix.texi:2935 +#: guix-git/doc/guix.texi:2952 #, no-wrap msgid "sudo guix system reconfigure /etc/config.scm\n" msgstr "sudo guix system reconfigure /etc/config.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:2944 +#: guix-git/doc/guix.texi:2961 msgid "Upon completion, the system runs the latest versions of its software packages. When you eventually reboot, you'll notice a sub-menu in the bootloader that reads ``Old system generations'': it's what allows you to boot @emph{an older generation of your system}, should the latest generation be ``broken'' or otherwise unsatisfying. Just like for packages, you can always @emph{roll back} to a previous generation @emph{of the whole system}:" msgstr "Nach Abschluss läuft auf dem System die neueste Version seiner Software-Pakete. Sobald Sie den Rechner neu starten, wird Ihnen ein Untermenü im Bootloader auffallen, das mit „Old system generations“ bezeichnet wird. Über dieses können Sie @emph{eine ältere Generation Ihres Systems} starten, falls die neueste Generation auf irgendeine Weise „kaputt“ ist oder auf andere Weise nicht Ihren Wünschen entspricht. Genau wie bei Paketen können Sie jederzeit @emph{das gesamte System} auf eine vorherige Generation @emph{zurücksetzen}:" #. type: example -#: guix-git/doc/guix.texi:2947 +#: guix-git/doc/guix.texi:2964 #, no-wrap msgid "sudo guix system roll-back\n" msgstr "sudo guix system roll-back\n" #. type: Plain text -#: guix-git/doc/guix.texi:2954 +#: guix-git/doc/guix.texi:2971 msgid "There are many things you'll probably want to tweak on your system: adding new user accounts, adding new system services, fiddling with the configuration of those services, etc. The system configuration is @emph{entirely} described in the @file{/etc/config.scm} file. @xref{Using the Configuration System}, to learn how to change it." msgstr "Es gibt viele Feineinstellungen, die Sie an Ihrem System wahrscheinlich vornehmen möchten. Vielleicht möchten Sie neue Benutzerkonten oder neue Systemdienste hinzufügen, mit anderen Konfigurationen solcher Dienste experimentieren oder Ähnliches. Die @emph{gesamte} Systemkonfiguration wird durch die Datei @file{/etc/config.scm} beschrieben. Siehe @ref{Using the Configuration System}, wo erklärt wird, wie man sie ändert." #. type: Plain text -#: guix-git/doc/guix.texi:2956 +#: guix-git/doc/guix.texi:2973 msgid "Now you know enough to get started!" msgstr "Jetzt wissen Sie genug, um anzufangen!" #. type: quotation -#: guix-git/doc/guix.texi:2957 +#: guix-git/doc/guix.texi:2974 #, no-wrap msgid "Resources" msgstr "Weitere Ressourcen" #. type: quotation -#: guix-git/doc/guix.texi:2960 +#: guix-git/doc/guix.texi:2977 msgid "The rest of this manual provides a reference for all things Guix. Here are some additional resources you may find useful:" msgstr "Der Rest dieses Handbuchs stellt eine Referenz für alles rund um Guix dar. Hier sind ein paar andere Ressourcen, die sich als nützlich erweisen könnten:" #. type: itemize -#: guix-git/doc/guix.texi:2965 +#: guix-git/doc/guix.texi:2982 msgid "@xref{Top,,, guix-cookbook, The GNU Guix Cookbook}, for a list of ``how-to'' style of recipes for a variety of applications." msgstr "Siehe @ref{Top,,, guix-cookbook, das GNU-Guix-Kochbuch} für eine Liste von anleitungsartigen Rezepten zu einer Vielzahl von Anwendungszwecken." #. type: itemize -#: guix-git/doc/guix.texi:2970 +#: guix-git/doc/guix.texi:2987 msgid "The @uref{https://guix.gnu.org/guix-refcard.pdf, GNU Guix Reference Card} lists in two pages most of the commands and options you'll ever need." msgstr "In der @uref{https://guix.gnu.org/guix-refcard.pdf, GNU Guix Reference Card} sind in zwei Seiten die meisten Befehle und Befehlszeilenoptionen aufgeführt, die Sie jemals brauchen werden." #. type: itemize -#: guix-git/doc/guix.texi:2975 +#: guix-git/doc/guix.texi:2992 msgid "The web site contains @uref{https://guix.gnu.org/en/videos/, instructional videos} covering topics such as everyday use of Guix, how to get help, and how to become a contributor." msgstr "Auf dem Webauftritt gibt es @uref{https://guix.gnu.org/de/videos/, Lehrvideos} zu Themen wie der alltäglichen Nutzung von Guix, wo man Hilfe bekommt und wie man mitmachen kann." #. type: itemize -#: guix-git/doc/guix.texi:2979 +#: guix-git/doc/guix.texi:2996 msgid "@xref{Documentation}, to learn how to access documentation on your computer." msgstr "Siehe @ref{Documentation}, um zu erfahren, wie Sie von Ihrem Rechner aus auf Dokumentation von Software zugreifen können." #. type: quotation -#: guix-git/doc/guix.texi:2982 +#: guix-git/doc/guix.texi:2999 msgid "We hope you will enjoy Guix as much as the community enjoys building it!" msgstr "Wir hoffen, dass Ihnen Guix genauso viel Spaß bereitet wie der Guix-Gemeinde bei seiner Entwicklung!" #. type: Plain text -#: guix-git/doc/guix.texi:2993 +#: guix-git/doc/guix.texi:3010 msgid "The purpose of GNU Guix is to allow users to easily install, upgrade, and remove software packages, without having to know about their build procedures or dependencies. Guix also goes beyond this obvious set of features." msgstr "Der Zweck von GNU Guix ist, Benutzern die leichte Installation, Aktualisierung und Entfernung von Software-Paketen zu ermöglichen, ohne dass sie ihre Erstellungsprozeduren oder Abhängigkeiten kennen müssen. Guix kann natürlich noch mehr als diese offensichtlichen Funktionalitäten." #. type: Plain text -#: guix-git/doc/guix.texi:3001 +#: guix-git/doc/guix.texi:3018 msgid "This chapter describes the main features of Guix, as well as the package management tools it provides. Along with the command-line interface described below (@pxref{Invoking guix package, @code{guix package}}), you may also use the Emacs-Guix interface (@pxref{Top,,, emacs-guix, The Emacs-Guix Reference Manual}), after installing @code{emacs-guix} package (run @kbd{M-x guix-help} command to start with it):" msgstr "Dieses Kapitel beschreibt die Hauptfunktionalitäten von Guix, sowie die von Guix angebotenen Paketverwaltungswerkzeuge. Zusätzlich zu den im Folgenden beschriebenen Befehlszeilen-Benutzerschnittstellen (siehe @ref{Invoking guix package, @code{guix package}}) können Sie auch mit der Emacs-Guix-Schnittstelle (siehe @ref{Top,,, emacs-guix, Referenzhandbuch von Emacs-Guix}) arbeiten, nachdem Sie das Paket @code{emacs-guix} installiert haben (führen Sie zum Einstieg in Emacs-Guix den Emacs-Befehl @kbd{M-x guix-help} aus):" #. type: example -#: guix-git/doc/guix.texi:3004 +#: guix-git/doc/guix.texi:3021 #, no-wrap msgid "guix install emacs-guix\n" msgstr "guix install emacs-guix\n" #. type: Plain text -#: guix-git/doc/guix.texi:3025 +#: guix-git/doc/guix.texi:3042 msgid "Here we assume you've already made your first steps with Guix (@pxref{Getting Started}) and would like to get an overview about what's going on under the hood." msgstr "Wir nehmen hier an, dass Sie schon Ihre ersten Erfahrungen mit Guix gemacht haben (siehe @ref{Getting Started}) und gerne einen Überblick darüber bekommen würden, wie Guix im Detail funktioniert." #. type: Plain text -#: guix-git/doc/guix.texi:3029 +#: guix-git/doc/guix.texi:3046 msgid "When using Guix, each package ends up in the @dfn{package store}, in its own directory---something that resembles @file{/gnu/store/xxx-package-1.2}, where @code{xxx} is a base32 string." msgstr "Wenn Sie Guix benutzen, landet jedes Paket schließlich im @dfn{Paket-Store} in seinem eigenen Verzeichnis@tie{}— der Name ist ähnlich wie @file{/gnu/store/xxx-package-1.2}, wobei @code{xxx} eine Zeichenkette in Base32-Darstellung ist." #. type: Plain text -#: guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3051 msgid "Instead of referring to these directories, users have their own @dfn{profile}, which points to the packages that they actually want to use. These profiles are stored within each user's home directory, at @code{$HOME/.guix-profile}." msgstr "Statt diese Verzeichnisse direkt anzugeben, haben Nutzer ihr eigenes @dfn{Profil}, welches auf diejenigen Pakete zeigt, die sie tatsächlich benutzen wollen. Diese Profile sind im Persönlichen Verzeichnis des jeweiligen Nutzers gespeichert als @code{$HOME/.guix-profile}." #. type: Plain text -#: guix-git/doc/guix.texi:3042 +#: guix-git/doc/guix.texi:3059 msgid "For example, @code{alice} installs GCC 4.7.2. As a result, @file{/home/alice/.guix-profile/bin/gcc} points to @file{/gnu/store/@dots{}-gcc-4.7.2/bin/gcc}. Now, on the same machine, @code{bob} had already installed GCC 4.8.0. The profile of @code{bob} simply continues to point to @file{/gnu/store/@dots{}-gcc-4.8.0/bin/gcc}---i.e., both versions of GCC coexist on the same system without any interference." msgstr "Zum Beispiel installiert @code{alice} GCC 4.7.2. Dadurch zeigt dann @file{/home/alice/.guix-profile/bin/gcc} auf @file{/gnu/store/…-gcc-4.7.2/bin/gcc}. Auf demselben Rechner hat @code{bob} bereits GCC 4.8.0 installiert. Das Profil von @code{bob} zeigt dann einfach weiterhin auf @file{/gnu/store/…-gcc-4.8.0/bin/gcc}@tie{}— d.h.@: beide Versionen von GCC koexistieren auf demselben System, ohne sich zu stören." #. type: Plain text -#: guix-git/doc/guix.texi:3046 +#: guix-git/doc/guix.texi:3063 msgid "The @command{guix package} command is the central tool to manage packages (@pxref{Invoking guix package}). It operates on the per-user profiles, and can be used @emph{with normal user privileges}." msgstr "Der Befehl @command{guix package} ist das zentrale Werkzeug, um Pakete zu verwalten (siehe @ref{Invoking guix package}). Es arbeitet auf dem eigenen Profil jedes Nutzers und kann @emph{mit normalen Benutzerrechten} ausgeführt werden." #. type: cindex -#: guix-git/doc/guix.texi:3047 guix-git/doc/guix.texi:3130 +#: guix-git/doc/guix.texi:3064 guix-git/doc/guix.texi:3147 #, no-wrap msgid "transactions" msgstr "Transaktionen" #. type: Plain text -#: guix-git/doc/guix.texi:3054 +#: guix-git/doc/guix.texi:3071 msgid "The command provides the obvious install, remove, and upgrade operations. Each invocation is actually a @emph{transaction}: either the specified operation succeeds, or nothing happens. Thus, if the @command{guix package} process is terminated during the transaction, or if a power outage occurs during the transaction, then the user's profile remains in its previous state, and remains usable." msgstr "Der Befehl stellt die offensichtlichen Installations-, Entfernungs- und Aktualisierungsoperationen zur Verfügung. Jeder Aufruf ist tatsächlich eine eigene @emph{Transaktion}: Entweder die angegebene Operation wird erfolgreich durchgeführt, oder gar nichts passiert. Wenn also der Prozess von @command{guix package} während der Transaktion beendet wird, oder es zum Stromausfall während der Transaktion kommt, dann bleibt der alte, nutzbare Zustands des Nutzerprofils erhalten." #. type: Plain text -#: guix-git/doc/guix.texi:3062 +#: guix-git/doc/guix.texi:3079 msgid "In addition, any package transaction may be @emph{rolled back}. So, if, for example, an upgrade installs a new version of a package that turns out to have a serious bug, users may roll back to the previous instance of their profile, which was known to work well. Similarly, the global system configuration on Guix is subject to transactional upgrades and roll-back (@pxref{Using the Configuration System})." msgstr "Zudem kann jede Pakettransaktion @emph{zurückgesetzt} werden (Rollback). Wird also zum Beispiel durch eine Aktualisierung eine neue Version eines Pakets installiert, die einen schwerwiegenden Fehler zur Folge hat, können Nutzer ihr Profil einfach auf die vorherige Profilinstanz zurücksetzen, von der sie wissen, dass sie gut lief. Ebenso unterliegt bei Guix auch die globale Systemkonfiguration transaktionellen Aktualisierungen und Rücksetzungen (siehe @ref{Using the Configuration System})." #. type: Plain text -#: guix-git/doc/guix.texi:3069 +#: guix-git/doc/guix.texi:3086 msgid "All packages in the package store may be @emph{garbage-collected}. Guix can determine which packages are still referenced by user profiles, and remove those that are provably no longer referenced (@pxref{Invoking guix gc}). Users may also explicitly remove old generations of their profile so that the packages they refer to can be collected." msgstr "Alle Pakete im Paket-Store können vom @emph{Müllsammler} (Garbage Collector) gelöscht werden. Guix ist in der Lage, festzustellen, welche Pakete noch durch Benutzerprofile referenziert werden, und entfernt nur diese, die nachweislich nicht mehr referenziert werden (siehe @ref{Invoking guix gc}). Benutzer können auch ausdrücklich alte Generationen ihres Profils löschen, damit die zugehörigen Pakete vom Müllsammler gelöscht werden können." #. type: Plain text -#: guix-git/doc/guix.texi:3082 +#: guix-git/doc/guix.texi:3099 msgid "Guix takes a @dfn{purely functional} approach to package management, as described in the introduction (@pxref{Introduction}). Each @file{/gnu/store} package directory name contains a hash of all the inputs that were used to build that package---compiler, libraries, build scripts, etc. This direct correspondence allows users to make sure a given package installation matches the current state of their distribution. It also helps maximize @dfn{build reproducibility}: thanks to the isolated build environments that are used, a given build is likely to yield bit-identical files when performed on different machines (@pxref{Invoking guix-daemon, container})." msgstr "Guix verfolgt einen @dfn{rein funktionalen} Ansatz bei der Paketverwaltung, wie er in der Einleitung beschrieben wurde (siehe @ref{Introduction}). Jedes Paketverzeichnis im @file{/gnu/store} hat einen Hash all seiner bei der Erstellung benutzten Eingaben im Namen@tie{}— Compiler, Bibliotheken, Erstellungs-Skripts etc. Diese direkte Entsprechung ermöglicht es Benutzern, eine Paketinstallation zu benutzen, die sicher dem aktuellen Stand ihrer Distribution entspricht. Sie hilft auch dabei, die @dfn{Reproduzierbarkeit der Erstellungen} zu maximieren: Dank den isolierten Erstellungsumgebungen, die benutzt werden, resultiert eine Erstellung wahrscheinlich in bitweise identischen Dateien, auch wenn sie auf unterschiedlichen Maschinen durchgeführt wird (siehe @ref{Invoking guix-daemon, Container})." #. type: Plain text -#: guix-git/doc/guix.texi:3093 +#: guix-git/doc/guix.texi:3110 msgid "This foundation allows Guix to support @dfn{transparent binary/source deployment}. When a pre-built binary for a @file{/gnu/store} item is available from an external source---a @dfn{substitute}, Guix just downloads it and unpacks it; otherwise, it builds the package from source, locally (@pxref{Substitutes}). Because build results are usually bit-for-bit reproducible, users do not have to trust servers that provide substitutes: they can force a local build and @emph{challenge} providers (@pxref{Invoking guix challenge})." msgstr "Auf dieser Grundlage kann Guix @dfn{transparent Binär- oder Quelldateien ausliefern}. Wenn eine vorerstellte Binärdatei für ein @file{/gnu/store}-Objekt von einer externen Quelle verfügbar ist@tie{}— ein @dfn{Substitut}@tie{}—, lädt Guix sie einfach herunter und entpackt sie, andernfalls erstellt Guix das Paket lokal aus seinem Quellcode (siehe @ref{Substitutes}). Weil Erstellungsergebnisse normalerweise Bit für Bit reproduzierbar sind, müssen die Nutzer den Servern, die Substitute anbieten, nicht blind vertrauen; sie können eine lokale Erstellung erzwingen und Substitute @emph{anfechten} (siehe @ref{Invoking guix challenge})." #. type: Plain text -#: guix-git/doc/guix.texi:3099 +#: guix-git/doc/guix.texi:3116 msgid "Control over the build environment is a feature that is also useful for developers. The @command{guix shell} command allows developers of a package to quickly set up the right development environment for their package, without having to manually install the dependencies of the package into their profile (@pxref{Invoking guix shell})." msgstr "Kontrolle über die Erstellungsumgebung ist eine auch für Entwickler nützliche Funktionalität. Der Befehl @command{guix shell} ermöglicht es Entwicklern eines Pakets, schnell die richtige Entwicklungsumgebung für ihr Paket einzurichten, ohne manuell die Abhängigkeiten des Pakets in ihr Profil installieren zu müssen (siehe @ref{Invoking guix shell})." #. type: cindex -#: guix-git/doc/guix.texi:3100 +#: guix-git/doc/guix.texi:3117 #, no-wrap msgid "replication, of software environments" msgstr "Nachbildung, von Software-Umgebungen" #. type: cindex -#: guix-git/doc/guix.texi:3101 +#: guix-git/doc/guix.texi:3118 #, no-wrap msgid "provenance tracking, of software artifacts" msgstr "Provenienzverfolgung, von Software-Artefakten" #. type: Plain text -#: guix-git/doc/guix.texi:3108 +#: guix-git/doc/guix.texi:3125 msgid "All of Guix and its package definitions is version-controlled, and @command{guix pull} allows you to ``travel in time'' on the history of Guix itself (@pxref{Invoking guix pull}). This makes it possible to replicate a Guix instance on a different machine or at a later point in time, which in turn allows you to @emph{replicate complete software environments}, while retaining precise @dfn{provenance tracking} of the software." msgstr "Ganz Guix und all seine Paketdefinitionen stehen unter Versionskontrolle und @command{guix pull} macht es möglich, auf dem Verlauf der Entwicklung von Guix selbst „in der Zeit zu reisen“ (siehe @ref{Invoking guix pull}). Dadurch kann eine Instanz von Guix auf einer anderen Maschine oder zu einem späteren Zeitpunkt genau nachgebildet werden, wodurch auch @emph{vollständige Software-Umgebungen gänzlich nachgebildet} werden können, mit genauer @dfn{Provenienzverfolgung}, wo diese Software herkommt." #. type: section -#: guix-git/doc/guix.texi:3110 +#: guix-git/doc/guix.texi:3127 #, no-wrap msgid "Invoking @command{guix package}" msgstr "@command{guix package} aufrufen" #. type: cindex -#: guix-git/doc/guix.texi:3112 +#: guix-git/doc/guix.texi:3129 #, no-wrap msgid "installing packages" msgstr "Installieren von Paketen" #. type: cindex -#: guix-git/doc/guix.texi:3113 +#: guix-git/doc/guix.texi:3130 #, no-wrap msgid "removing packages" msgstr "Entfernen von Paketen" #. type: cindex -#: guix-git/doc/guix.texi:3114 +#: guix-git/doc/guix.texi:3131 #, no-wrap msgid "package installation" msgstr "Paketinstallation" #. type: cindex -#: guix-git/doc/guix.texi:3115 +#: guix-git/doc/guix.texi:3132 #, no-wrap msgid "package removal" msgstr "Paketentfernung" #. type: Plain text -#: guix-git/doc/guix.texi:3125 +#: guix-git/doc/guix.texi:3142 msgid "The @command{guix package} command is the tool that allows users to install, upgrade, and remove packages, as well as rolling back to previous configurations. These operations work on a user @dfn{profile}---a directory of installed packages. Each user has a default profile in @file{$HOME/.guix-profile}. The command operates only on the user's own profile, and works with normal user privileges (@pxref{Features}). Its syntax is:" msgstr "Der Befehl @command{guix package} ist ein Werkzeug, womit Nutzer Pakete installieren, aktualisieren, entfernen und auf vorherige Konfigurationen zurücksetzen können. Diese Operationen arbeiten auf einem @dfn{Benutzerprofil}, d.h.@: einem Verzeichnis, das installierte Pakete enthält. Jeder Benutzer verfügt über ein Standardprofil in @file{$HOME/.guix-profile}. Dabei wird nur das eigene Profil des Nutzers verwendet, und es funktioniert mit normalen Benutzerrechten, ohne Administratorrechte (siehe @ref{Funktionalitäten}). Die Syntax ist:" #. type: example -#: guix-git/doc/guix.texi:3128 +#: guix-git/doc/guix.texi:3145 #, no-wrap msgid "guix package @var{options}\n" msgstr "guix package @var{Optionen}\n" #. type: Plain text -#: guix-git/doc/guix.texi:3135 +#: guix-git/doc/guix.texi:3152 msgid "Primarily, @var{options} specifies the operations to be performed during the transaction. Upon completion, a new profile is created, but previous @dfn{generations} of the profile remain available, should the user want to roll back." msgstr "In erster Linie geben die @var{Optionen} an, welche Operationen in der Transaktion durchgeführt werden sollen. Nach Abschluss wird ein neues Profil erzeugt, aber vorherige @dfn{Generationen} des Profils bleiben verfügbar, falls der Benutzer auf sie zurückwechseln will." #. type: Plain text -#: guix-git/doc/guix.texi:3138 +#: guix-git/doc/guix.texi:3155 msgid "For example, to remove @code{lua} and install @code{guile} and @code{guile-cairo} in a single transaction:" msgstr "Um zum Beispiel @code{lua} zu entfernen und @code{guile} und @code{guile-cairo} in einer einzigen Transaktion zu installieren:" #. type: example -#: guix-git/doc/guix.texi:3141 +#: guix-git/doc/guix.texi:3158 #, no-wrap msgid "guix package -r lua -i guile guile-cairo\n" msgstr "guix package -r lua -i guile guile-cairo\n" #. type: cindex -#: guix-git/doc/guix.texi:3143 +#: guix-git/doc/guix.texi:3160 #, no-wrap msgid "aliases, for @command{guix package}" msgstr "Alias-Namen für @command{guix package}" #. type: Plain text -#: guix-git/doc/guix.texi:3145 +#: guix-git/doc/guix.texi:3162 msgid "For your convenience, we also provide the following aliases:" msgstr "Um es Ihnen einfacher zu machen, bieten wir auch die folgenden Alias-Namen an:" #. type: itemize -#: guix-git/doc/guix.texi:3149 +#: guix-git/doc/guix.texi:3166 msgid "@command{guix search} is an alias for @command{guix package -s}," msgstr "@command{guix search} ist eine andere Schreibweise für @command{guix package -s}," #. type: itemize -#: guix-git/doc/guix.texi:3151 +#: guix-git/doc/guix.texi:3168 msgid "@command{guix install} is an alias for @command{guix package -i}," msgstr "@command{guix install} ist eine andere Schreibweise für @command{guix package -i}," #. type: itemize -#: guix-git/doc/guix.texi:3153 +#: guix-git/doc/guix.texi:3170 msgid "@command{guix remove} is an alias for @command{guix package -r}," msgstr "@command{guix remove} ist eine andere Schreibweise für @command{guix package -r}," #. type: itemize -#: guix-git/doc/guix.texi:3155 +#: guix-git/doc/guix.texi:3172 msgid "@command{guix upgrade} is an alias for @command{guix package -u}," msgstr "@command{guix upgrade} ist eine andere Schreibweise für @command{guix package -u}" #. type: itemize -#: guix-git/doc/guix.texi:3157 +#: guix-git/doc/guix.texi:3174 msgid "and @command{guix show} is an alias for @command{guix package --show=}." msgstr "und @command{guix show} ist eine andere Schreibweise für @command{guix package --show=}." #. type: Plain text -#: guix-git/doc/guix.texi:3162 +#: guix-git/doc/guix.texi:3179 msgid "These aliases are less expressive than @command{guix package} and provide fewer options, so in some cases you'll probably want to use @command{guix package} directly." msgstr "Diese Alias-Namen sind weniger ausdrucksstark als @command{guix package} und stellen weniger Befehlszeilenoptionen bereit, deswegen werden Sie vermutlich manchmal @command{guix package} direkt benutzen wollen." #. type: Plain text -#: guix-git/doc/guix.texi:3167 +#: guix-git/doc/guix.texi:3184 msgid "@command{guix package} also supports a @dfn{declarative approach} whereby the user specifies the exact set of packages to be available and passes it @i{via} the @option{--manifest} option (@pxref{profile-manifest, @option{--manifest}})." msgstr "@command{guix package} unterstützt auch ein @dfn{deklaratives Vorgehen}, wobei der Nutzer die genaue Menge an Paketen, die verfügbar sein sollen, festlegt und über die Befehlszeilenoption @option{--manifest} übergibt (siehe @ref{profile-manifest, @option{--manifest}})." #. type: Plain text -#: guix-git/doc/guix.texi:3174 +#: guix-git/doc/guix.texi:3191 msgid "For each user, a symlink to the user's default profile is automatically created in @file{$HOME/.guix-profile}. This symlink always points to the current generation of the user's default profile. Thus, users can add @file{$HOME/.guix-profile/bin} to their @env{PATH} environment variable, and so on." msgstr "Für jeden Benutzer wird automatisch eine symbolische Verknüpfung zu seinem Standardprofil angelegt als @file{$HOME/.guix-profile}. Diese symbolische Verknüpfung zeigt immer auf die aktuelle Generation des Standardprofils des Benutzers. Somit können Nutzer @file{$HOME/.guix-profile/bin} z.B.@: zu ihrer Umgebungsvariablen @env{PATH} hinzufügen." #. type: cindex -#: guix-git/doc/guix.texi:3174 guix-git/doc/guix.texi:3418 +#: guix-git/doc/guix.texi:3191 guix-git/doc/guix.texi:3435 #, no-wrap msgid "search paths" msgstr "Suchpfade" #. type: Plain text -#: guix-git/doc/guix.texi:3179 +#: guix-git/doc/guix.texi:3196 msgid "If you are not using Guix System, consider adding the following lines to your @file{~/.bash_profile} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}) so that newly-spawned shells get all the right environment variable definitions:" msgstr "Wenn Sie @emph{nicht} Guix System benutzen, sollten Sie in Betracht ziehen, folgende Zeilen zu Ihrem @file{~/.bash_profile} hinzuzufügen (siehe @ref{Bash Startup Files,,, bash, Referenzhandbuch von GNU Bash}), damit in neu erzeugten Shells alle Umgebungsvariablen richtig definiert werden:" #. type: example -#: guix-git/doc/guix.texi:3183 +#: guix-git/doc/guix.texi:3200 #, no-wrap msgid "" "GUIX_PROFILE=\"$HOME/.guix-profile\" ; \\\n" @@ -8956,298 +9034,298 @@ msgstr "" "source \"$GUIX_PROFILE/etc/profile\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:3194 +#: guix-git/doc/guix.texi:3211 msgid "In a multi-user setup, user profiles are stored in a place registered as a @dfn{garbage-collector root}, which @file{$HOME/.guix-profile} points to (@pxref{Invoking guix gc}). That directory is normally @code{@var{localstatedir}/guix/profiles/per-user/@var{user}}, where @var{localstatedir} is the value passed to @code{configure} as @option{--localstatedir}, and @var{user} is the user name. The @file{per-user} directory is created when @command{guix-daemon} is started, and the @var{user} sub-directory is created by @command{guix package}." msgstr "Ist Ihr System für mehrere Nutzer eingerichtet, werden Nutzerprofile an einem Ort gespeichert, der als @dfn{Müllsammlerwurzel} registriert ist, auf die @file{$HOME/.guix-profile} zeigt (siehe @ref{Invoking guix gc}). Dieses Verzeichnis ist normalerweise @code{@var{localstatedir}/guix/profiles/per-user/@var{Benutzer}}, wobei @var{localstatedir} der an @code{configure} als @option{--localstatedir} übergebene Wert ist und @var{Benutzer} für den jeweiligen Benutzernamen steht. Das @file{per-user}-Verzeichnis wird erstellt, wenn @command{guix-daemon} gestartet wird, und das Unterverzeichnis @var{Benutzer} wird durch @command{guix package} erstellt." #. type: Plain text -#: guix-git/doc/guix.texi:3196 +#: guix-git/doc/guix.texi:3213 msgid "The @var{options} can be among the following:" msgstr "Als @var{Optionen} kann vorkommen:" #. type: item -#: guix-git/doc/guix.texi:3199 +#: guix-git/doc/guix.texi:3216 #, no-wrap msgid "--install=@var{package} @dots{}" msgstr "--install=@var{Paket} …" #. type: itemx -#: guix-git/doc/guix.texi:3200 +#: guix-git/doc/guix.texi:3217 #, no-wrap msgid "-i @var{package} @dots{}" msgstr "-i @var{Paket} …" #. type: table -#: guix-git/doc/guix.texi:3202 +#: guix-git/doc/guix.texi:3219 msgid "Install the specified @var{package}s." msgstr "Die angegebenen @var{Paket}e installieren." #. type: table -#: guix-git/doc/guix.texi:3207 +#: guix-git/doc/guix.texi:3224 msgid "Each @var{package} may specify either a simple package name, such as @code{guile}, or a package name followed by an at-sign and version number, such as @code{guile@@1.8.8} or simply @code{guile@@1.8} (in the latter case, the newest version prefixed by @code{1.8} is selected)." msgstr "Jedes @var{Paket} kann entweder einfach durch seinen Paketnamen aufgeführt werden, wie @code{guile}, oder als Paketname gefolgt von einem At-Zeichen @@ und einer Versionsnummer, wie @code{guile@@1.8.8} oder auch nur @code{guile@@1.8} (in letzterem Fall wird die neueste Version mit Präfix @code{1.8} ausgewählt.)" #. type: table -#: guix-git/doc/guix.texi:3215 +#: guix-git/doc/guix.texi:3232 msgid "If no version number is specified, the newest available version will be selected. In addition, @var{package} may contain a colon, followed by the name of one of the outputs of the package, as in @code{gcc:doc} or @code{binutils@@2.22:lib} (@pxref{Packages with Multiple Outputs}). Packages with a corresponding name (and optionally version) are searched for among the GNU distribution modules (@pxref{Package Modules})." msgstr "Wird keine Versionsnummer angegeben, wird die neueste verfügbare Version ausgewählt. Zudem kann im @var{Paket} ein Doppelpunkt auftauchen, gefolgt vom Namen einer der Ausgaben des Pakets, wie @code{gcc:doc} oder @code{binutils@@2.22:lib} (siehe @ref{Packages with Multiple Outputs}). Pakete mit zugehörigem Namen (und optional der Version) werden unter den Modulen der GNU-Distribution gesucht (siehe @ref{Package Modules})." #. type: cindex -#: guix-git/doc/guix.texi:3216 +#: guix-git/doc/guix.texi:3233 #, no-wrap msgid "propagated inputs" msgstr "propagierte Eingaben" #. type: table -#: guix-git/doc/guix.texi:3222 +#: guix-git/doc/guix.texi:3239 msgid "Sometimes packages have @dfn{propagated inputs}: these are dependencies that automatically get installed along with the required package (@pxref{package-propagated-inputs, @code{propagated-inputs} in @code{package} objects}, for information about propagated inputs in package definitions)." msgstr "Manchmal haben Pakete @dfn{propagierte Eingaben}: Als solche werden Abhängigkeiten bezeichnet, die automatisch zusammen mit dem angeforderten Paket installiert werden (im Abschnitt @ref{package-propagated-inputs, @code{propagated-inputs} in @code{package}-Objekten} sind weitere Informationen über propagierte Eingaben in Paketdefinitionen zu finden)." #. type: anchor{#1} -#: guix-git/doc/guix.texi:3229 +#: guix-git/doc/guix.texi:3246 msgid "package-cmd-propagated-inputs" msgstr "package-cmd-propagated-inputs" #. type: table -#: guix-git/doc/guix.texi:3229 +#: guix-git/doc/guix.texi:3246 msgid "An example is the GNU MPC library: its C header files refer to those of the GNU MPFR library, which in turn refer to those of the GMP library. Thus, when installing MPC, the MPFR and GMP libraries also get installed in the profile; removing MPC also removes MPFR and GMP---unless they had also been explicitly installed by the user." msgstr "Ein Beispiel ist die GNU-MPC-Bibliothek: Ihre C-Headerdateien verweisen auf die der GNU-MPFR-Bibliothek, welche wiederum auf die der GMP-Bibliothek verweisen. Wenn also MPC installiert wird, werden auch die MPFR- und GMP-Bibliotheken in das Profil installiert; entfernt man MPC, werden auch MPFR und GMP entfernt@tie{}— außer sie wurden noch auf andere Art ausdrücklich vom Nutzer installiert." #. type: table -#: guix-git/doc/guix.texi:3234 +#: guix-git/doc/guix.texi:3251 msgid "Besides, packages sometimes rely on the definition of environment variables for their search paths (see explanation of @option{--search-paths} below). Any missing or possibly incorrect environment variable definitions are reported here." msgstr "Abgesehen davon setzen Pakete manchmal die Definition von Umgebungsvariablen für ihre Suchpfade voraus (siehe die Erklärung von @option{--search-paths} weiter unten). Alle fehlenden oder womöglich falschen Definitionen von Umgebungsvariablen werden hierbei gemeldet." #. type: item -#: guix-git/doc/guix.texi:3235 +#: guix-git/doc/guix.texi:3252 #, no-wrap msgid "--install-from-expression=@var{exp}" msgstr "--install-from-expression=@var{Ausdruck}" #. type: itemx -#: guix-git/doc/guix.texi:3236 +#: guix-git/doc/guix.texi:3253 #, no-wrap msgid "-e @var{exp}" msgstr "-e @var{Ausdruck}" #. type: table -#: guix-git/doc/guix.texi:3238 +#: guix-git/doc/guix.texi:3255 msgid "Install the package @var{exp} evaluates to." msgstr "Das Paket installieren, zu dem der @var{Ausdruck} ausgewertet wird." #. type: table -#: guix-git/doc/guix.texi:3243 +#: guix-git/doc/guix.texi:3260 msgid "@var{exp} must be a Scheme expression that evaluates to a @code{} object. This option is notably useful to disambiguate between same-named variants of a package, with expressions such as @code{(@@ (gnu packages base) guile-final)}." msgstr "Beim @var{Ausdruck} muss es sich um einen Scheme-Ausdruck handeln, der zu einem @code{}-Objekt ausgewertet wird. Diese Option ist besonders nützlich, um zwischen gleichnamigen Varianten eines Pakets zu unterscheiden, durch Ausdrücke wie @code{(@@ (gnu packages base) guile-final)}." #. type: table -#: guix-git/doc/guix.texi:3247 +#: guix-git/doc/guix.texi:3264 msgid "Note that this option installs the first output of the specified package, which may be insufficient when needing a specific output of a multiple-output package." msgstr "Beachten Sie, dass mit dieser Option die erste Ausgabe des angegebenen Pakets installiert wird, was unzureichend sein kann, wenn eine bestimmte Ausgabe eines Pakets mit mehreren Ausgaben gewünscht ist." #. type: item -#: guix-git/doc/guix.texi:3248 +#: guix-git/doc/guix.texi:3265 #, no-wrap msgid "--install-from-file=@var{file}" msgstr "--install-from-file=@var{Datei}" #. type: itemx -#: guix-git/doc/guix.texi:3249 guix-git/doc/guix.texi:5781 -#: guix-git/doc/guix.texi:11396 +#: guix-git/doc/guix.texi:3266 guix-git/doc/guix.texi:5799 +#: guix-git/doc/guix.texi:11710 #, no-wrap msgid "-f @var{file}" msgstr "-f @var{Datei}" #. type: table -#: guix-git/doc/guix.texi:3251 +#: guix-git/doc/guix.texi:3268 msgid "Install the package that the code within @var{file} evaluates to." msgstr "Das Paket installieren, zu dem der Code in der @var{Datei} ausgewertet wird." #. type: table -#: guix-git/doc/guix.texi:3254 guix-git/doc/guix.texi:5787 -#: guix-git/doc/guix.texi:6162 +#: guix-git/doc/guix.texi:3271 guix-git/doc/guix.texi:5805 +#: guix-git/doc/guix.texi:6199 msgid "As an example, @var{file} might contain a definition like this (@pxref{Defining Packages}):" msgstr "Zum Beispiel könnte die @var{Datei} eine Definition wie diese enthalten (siehe @ref{Defining Packages}):" #. type: include -#: guix-git/doc/guix.texi:3256 guix-git/doc/guix.texi:11404 +#: guix-git/doc/guix.texi:3273 guix-git/doc/guix.texi:11718 #, no-wrap msgid "package-hello.scm" msgstr "package-hello.scm" #. type: table -#: guix-git/doc/guix.texi:3263 +#: guix-git/doc/guix.texi:3280 msgid "Developers may find it useful to include such a @file{guix.scm} file in the root of their project source tree that can be used to test development snapshots and create reproducible development environments (@pxref{Invoking guix shell})." msgstr "Entwickler könnten es für nützlich erachten, eine solche @file{guix.scm}-Datei im Quellbaum ihres Projekts abzulegen, mit der Zwischenstände der Entwicklung getestet und reproduzierbare Erstellungsumgebungen aufgebaut werden können (siehe @ref{Invoking guix shell})." #. type: table -#: guix-git/doc/guix.texi:3268 +#: guix-git/doc/guix.texi:3285 msgid "The @var{file} may also contain a JSON representation of one or more package definitions. Running @code{guix package -f} on @file{hello.json} with the following contents would result in installing the package @code{greeter} after building @code{myhello}:" msgstr "Es ist auch möglich, eine @var{Datei} mit einer JSON-Repräsentation von einer oder mehr Paketdefinitionen anzugeben. Wenn Sie @code{guix package -f} auf @file{hello.json} mit folgendem Inhalt ausführen würden, würde das Paket @code{greeter} installiert, nachdem @code{myhello} erstellt wurde:" #. type: example -#: guix-git/doc/guix.texi:3271 guix-git/doc/guix.texi:11414 +#: guix-git/doc/guix.texi:3288 guix-git/doc/guix.texi:11728 #, no-wrap msgid "@verbatiminclude package-hello.json\n" msgstr "@verbatiminclude package-hello.json\n" #. type: item -#: guix-git/doc/guix.texi:3273 +#: guix-git/doc/guix.texi:3290 #, no-wrap msgid "--remove=@var{package} @dots{}" msgstr "--remove=@var{Paket} …" #. type: itemx -#: guix-git/doc/guix.texi:3274 +#: guix-git/doc/guix.texi:3291 #, no-wrap msgid "-r @var{package} @dots{}" msgstr "-r @var{Paket} …" #. type: table -#: guix-git/doc/guix.texi:3276 +#: guix-git/doc/guix.texi:3293 msgid "Remove the specified @var{package}s." msgstr "Die angegebenen @var{Paket}e entfernen." #. type: table -#: guix-git/doc/guix.texi:3281 +#: guix-git/doc/guix.texi:3298 msgid "As for @option{--install}, each @var{package} may specify a version number and/or output name in addition to the package name. For instance, @samp{-r glibc:debug} would remove the @code{debug} output of @code{glibc}." msgstr "Wie auch bei @option{--install} kann jedes @var{Paket} neben dem Paketnamen auch eine Versionsnummer und/oder eine Ausgabe benennen. Zum Beispiel würde @samp{-r glibc:debug} die @code{debug}-Ausgabe von @code{glibc} aus dem Profil entfernen." #. type: item -#: guix-git/doc/guix.texi:3282 +#: guix-git/doc/guix.texi:3299 #, no-wrap msgid "--upgrade[=@var{regexp} @dots{}]" msgstr "--upgrade[=@var{Regexp} …]" #. type: itemx -#: guix-git/doc/guix.texi:3283 +#: guix-git/doc/guix.texi:3300 #, no-wrap msgid "-u [@var{regexp} @dots{}]" msgstr "-u [@var{Regexp} …]" #. type: cindex -#: guix-git/doc/guix.texi:3284 +#: guix-git/doc/guix.texi:3301 #, no-wrap msgid "upgrading packages" msgstr "Pakete aktualisieren" #. type: table -#: guix-git/doc/guix.texi:3288 +#: guix-git/doc/guix.texi:3305 msgid "Upgrade all the installed packages. If one or more @var{regexp}s are specified, upgrade only installed packages whose name matches a @var{regexp}. Also see the @option{--do-not-upgrade} option below." msgstr "Alle installierten Pakete aktualisieren. Wenn einer oder mehr reguläre Ausdrücke (Regexps) angegeben wurden, werden nur diejenigen installierten Pakete aktualisiert, deren Name zu einer der @var{Regexp}s passt. Siehe auch weiter unten die Befehlszeilenoption @option{--do-not-upgrade}." #. type: table -#: guix-git/doc/guix.texi:3293 +#: guix-git/doc/guix.texi:3310 msgid "Note that this upgrades package to the latest version of packages found in the distribution currently installed. To update your distribution, you should regularly run @command{guix pull} (@pxref{Invoking guix pull})." msgstr "Beachten Sie, dass das Paket so auf die neueste Version unter den Paketen gebracht wird, die in der aktuell installierten Distribution vorliegen. Um jedoch Ihre Distribution zu aktualisieren, sollten Sie regelmäßig @command{guix pull} ausführen (siehe @ref{Invoking guix pull})." #. type: cindex -#: guix-git/doc/guix.texi:3294 +#: guix-git/doc/guix.texi:3311 #, no-wrap msgid "package transformations, upgrades" msgstr "Paketumwandlungen, Aktualisierung" #. type: table -#: guix-git/doc/guix.texi:3299 +#: guix-git/doc/guix.texi:3316 msgid "When upgrading, package transformations that were originally applied when creating the profile are automatically re-applied (@pxref{Package Transformation Options}). For example, assume you first installed Emacs from the tip of its development branch with:" msgstr "Wenn Sie Ihre Pakete aktualisieren, werden die bei der Erstellung des vorherigen Profils angewandten Paketumwandlungen automatisch erneut angwandt (siehe @ref{Package Transformation Options}). Nehmen wir zum Beispiel an, Sie haben zuerst Emacs von der Spitze seines Entwicklungs-Branches installiert:" #. type: example -#: guix-git/doc/guix.texi:3302 +#: guix-git/doc/guix.texi:3319 #, no-wrap msgid "guix install emacs-next --with-branch=emacs-next=master\n" msgstr "guix install emacs-next --with-branch=emacs-next=master\n" #. type: table -#: guix-git/doc/guix.texi:3307 +#: guix-git/doc/guix.texi:3324 msgid "Next time you run @command{guix upgrade}, Guix will again pull the tip of the Emacs development branch and build @code{emacs-next} from that checkout." msgstr "Wenn Sie das nächste Mal @command{guix upgrade} ausführen, lädt Guix von neuem die Spitze des Emacs-Entwicklungsbranches, um aus diesem Checkout @code{emacs-next} zu erstellen." #. type: table -#: guix-git/doc/guix.texi:3312 +#: guix-git/doc/guix.texi:3329 msgid "Note that transformation options such as @option{--with-branch} and @option{--with-source} depend on external state; it is up to you to ensure that they work as expected. You can also discard a transformations that apply to a package by running:" msgstr "Beachten Sie, dass Umwandlungsoptionen wie @option{--with-branch} und @option{--with-source} von externem Zustand abhängen. Es liegt an Ihnen, sicherzustellen, dass sie wie erwartet funktionieren. Sie können auf Pakete angewandte Umwandlungen auch weglassen, indem Sie das ausführen:" #. type: example -#: guix-git/doc/guix.texi:3315 +#: guix-git/doc/guix.texi:3332 #, no-wrap msgid "guix install @var{package}\n" msgstr "guix install @var{Paket}\n" #. type: item -#: guix-git/doc/guix.texi:3317 +#: guix-git/doc/guix.texi:3334 #, no-wrap msgid "--do-not-upgrade[=@var{regexp} @dots{}]" msgstr "--do-not-upgrade[=@var{Regexp} …]" #. type: table -#: guix-git/doc/guix.texi:3322 +#: guix-git/doc/guix.texi:3339 msgid "When used together with the @option{--upgrade} option, do @emph{not} upgrade any packages whose name matches a @var{regexp}. For example, to upgrade all packages in the current profile except those containing the substring ``emacs'':" msgstr "In Verbindung mit der Befehlszeilenoption @option{--upgrade}, führe @emph{keine} Aktualisierung von Paketen durch, deren Name zum regulären Ausdruck @var{Regexp} passt. Um zum Beispiel alle Pakete im aktuellen Profil zu aktualisieren mit Ausnahme derer, die „emacs“ im Namen haben:" #. type: example -#: guix-git/doc/guix.texi:3325 +#: guix-git/doc/guix.texi:3342 #, no-wrap msgid "$ guix package --upgrade . --do-not-upgrade emacs\n" msgstr "$ guix package --upgrade . --do-not-upgrade emacs\n" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3327 +#: guix-git/doc/guix.texi:3344 #, no-wrap msgid "profile-manifest" msgstr "profile-manifest" #. type: item -#: guix-git/doc/guix.texi:3327 guix-git/doc/guix.texi:5799 -#: guix-git/doc/guix.texi:6167 guix-git/doc/guix.texi:6615 -#: guix-git/doc/guix.texi:12535 guix-git/doc/guix.texi:14135 +#: guix-git/doc/guix.texi:3344 guix-git/doc/guix.texi:5817 +#: guix-git/doc/guix.texi:6204 guix-git/doc/guix.texi:6658 +#: guix-git/doc/guix.texi:12850 guix-git/doc/guix.texi:14492 #, no-wrap msgid "--manifest=@var{file}" msgstr "--manifest=@var{Datei}" #. type: itemx -#: guix-git/doc/guix.texi:3328 guix-git/doc/guix.texi:5800 -#: guix-git/doc/guix.texi:6168 guix-git/doc/guix.texi:6616 -#: guix-git/doc/guix.texi:12536 +#: guix-git/doc/guix.texi:3345 guix-git/doc/guix.texi:5818 +#: guix-git/doc/guix.texi:6205 guix-git/doc/guix.texi:6659 +#: guix-git/doc/guix.texi:12851 #, no-wrap msgid "-m @var{file}" msgstr "-m @var{Datei}" #. type: cindex -#: guix-git/doc/guix.texi:3329 +#: guix-git/doc/guix.texi:3346 #, no-wrap msgid "profile declaration" msgstr "Profildeklaration" #. type: cindex -#: guix-git/doc/guix.texi:3330 +#: guix-git/doc/guix.texi:3347 #, no-wrap msgid "profile manifest" msgstr "Profilmanifest" #. type: table -#: guix-git/doc/guix.texi:3334 +#: guix-git/doc/guix.texi:3351 msgid "Create a new generation of the profile from the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "Erstellt eine neue Generation des Profils aus dem vom Scheme-Code in @var{Datei} gelieferten Manifest-Objekt. Wenn diese Befehlszeilenoption mehrmals wiederholt angegeben wird, werden die Manifeste aneinandergehängt." #. type: table -#: guix-git/doc/guix.texi:3340 +#: guix-git/doc/guix.texi:3357 msgid "This allows you to @emph{declare} the profile's contents rather than constructing it through a sequence of @option{--install} and similar commands. The advantage is that @var{file} can be put under version control, copied to different machines to reproduce the same profile, and so on." msgstr "Dadurch könnrn Sie den Inhalt des Profils @emph{deklarieren}, statt ihn durch eine Folge von Befehlen wie @option{--install} u.Ä. zu generieren. Der Vorteil ist, dass die @var{Datei} unter Versionskontrolle gestellt werden kann, auf andere Maschinen zum Reproduzieren desselben Profils kopiert werden kann und Ähnliches." #. type: table -#: guix-git/doc/guix.texi:3344 +#: guix-git/doc/guix.texi:3361 msgid "@var{file} must return a @dfn{manifest} object, which is roughly a list of packages:" msgstr "Der Code in der @var{Datei} muss ein @dfn{Manifest}-Objekt liefern, was ungefähr einer Liste von Paketen entspricht:" #. type: findex -#: guix-git/doc/guix.texi:3345 +#: guix-git/doc/guix.texi:3362 #, no-wrap msgid "packages->manifest" msgstr "packages->manifest" #. type: lisp -#: guix-git/doc/guix.texi:3348 +#: guix-git/doc/guix.texi:3365 #, no-wrap msgid "" "(use-package-modules guile emacs)\n" @@ -9257,7 +9335,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:3354 +#: guix-git/doc/guix.texi:3371 #, no-wrap msgid "" "(packages->manifest\n" @@ -9273,18 +9351,18 @@ msgstr "" " (list guile-2.0 \"debug\")))\n" #. type: findex -#: guix-git/doc/guix.texi:3356 +#: guix-git/doc/guix.texi:3373 #, no-wrap msgid "specifications->manifest" msgstr "specifications->manifest" #. type: table -#: guix-git/doc/guix.texi:3363 +#: guix-git/doc/guix.texi:3380 msgid "In this example we have to know which modules define the @code{emacs} and @code{guile-2.0} variables to provide the right @code{use-package-modules} line, which can be cumbersome. We can instead provide regular package specifications and let @code{specifications->manifest} look up the corresponding package objects, like this:" msgstr "In diesem Beispiel müssen wir wissen, welche Module die Variablen @code{emacs} und @code{guile-2.0} definieren, um die richtige Angabe mit @code{use-package-modules} machen zu können, was umständlich sein kann. Wir können auch normale Paketnamen angeben und sie durch @code{specifications->manifest} zu den entsprechenden Paketobjekten auflösen, zum Beispiel so:" #. type: lisp -#: guix-git/doc/guix.texi:3367 +#: guix-git/doc/guix.texi:3384 #, no-wrap msgid "" "(specifications->manifest\n" @@ -9294,150 +9372,152 @@ msgstr "" " '(\"emacs\" \"guile@@2.2\" \"guile@@2.2:debug\"))\n" #. type: findex -#: guix-git/doc/guix.texi:3369 +#: guix-git/doc/guix.texi:3386 #, no-wrap msgid "package->development-manifest" msgstr "package->development-manifest" #. type: table -#: guix-git/doc/guix.texi:3372 +#: guix-git/doc/guix.texi:3389 msgid "You might also want to create a manifest for all the dependencies of a package, rather than the package itself:" msgstr "Vielleicht brauchen Sie einmal ein Manifest für alle Abhängigkeiten eines Pakets und nicht das eigentliche Paket:" #. type: lisp -#: guix-git/doc/guix.texi:3375 +#: guix-git/doc/guix.texi:3392 #, no-wrap msgid "(package->development-manifest (specification->package \"emacs\"))\n" msgstr "(package->development-manifest (specification->package \"emacs\"))\n" #. type: table -#: guix-git/doc/guix.texi:3379 +#: guix-git/doc/guix.texi:3396 msgid "The example above gives you all the software required to develop Emacs, similar to what @command{guix environment emacs} provides." msgstr "Obiges Beispiel gibt Ihnen alle Software, die Sie für die Entwicklung von Emacs brauchen, ähnlich wie @command{guix environment emacs}." #. type: table -#: guix-git/doc/guix.texi:3382 +#: guix-git/doc/guix.texi:3399 msgid "@xref{export-manifest, @option{--export-manifest}}, to learn how to obtain a manifest file from an existing profile." msgstr "Siehe @ref{export-manifest, @option{--export-manifest}}, um zu erfahren, wie Sie aus einem bestehenden Profil eine Manifestdatei erzeugen können." #. type: item -#: guix-git/doc/guix.texi:3383 guix-git/doc/guix.texi:4492 +#: guix-git/doc/guix.texi:3400 guix-git/doc/guix.texi:4510 #, no-wrap msgid "--roll-back" msgstr "--roll-back" #. type: cindex -#: guix-git/doc/guix.texi:3384 guix-git/doc/guix.texi:4493 -#: guix-git/doc/guix.texi:35006 guix-git/doc/guix.texi:37641 +#: guix-git/doc/guix.texi:3401 guix-git/doc/guix.texi:4511 +#: guix-git/doc/guix.texi:35445 guix-git/doc/guix.texi:38120 #, no-wrap msgid "rolling back" msgstr "rücksetzen" #. type: cindex -#: guix-git/doc/guix.texi:3385 guix-git/doc/guix.texi:4494 +#: guix-git/doc/guix.texi:3402 guix-git/doc/guix.texi:4512 #, no-wrap msgid "undoing transactions" msgstr "Zurücksetzen von Transaktionen" #. type: cindex -#: guix-git/doc/guix.texi:3386 guix-git/doc/guix.texi:4495 +#: guix-git/doc/guix.texi:3403 guix-git/doc/guix.texi:4513 #, no-wrap msgid "transactions, undoing" msgstr "Transaktionen, zurücksetzen" #. type: table -#: guix-git/doc/guix.texi:3389 +#: guix-git/doc/guix.texi:3406 msgid "Roll back to the previous @dfn{generation} of the profile---i.e., undo the last transaction." msgstr "Wechselt zur vorherigen @dfn{Generation} des Profils zurück@tie{}— d.h.@: macht die letzte Transaktion rückgängig." #. type: table -#: guix-git/doc/guix.texi:3392 +#: guix-git/doc/guix.texi:3409 msgid "When combined with options such as @option{--install}, roll back occurs before any other actions." msgstr "In Verbindung mit Befehlszeilenoptionen wie @option{--install} wird zuerst zurückgesetzt, bevor andere Aktionen durchgeführt werden." #. type: table -#: guix-git/doc/guix.texi:3396 +#: guix-git/doc/guix.texi:3413 msgid "When rolling back from the first generation that actually contains installed packages, the profile is made to point to the @dfn{zeroth generation}, which contains no files apart from its own metadata." msgstr "Ein Rücksetzen der ersten Generation, die installierte Pakete enthält, wechselt das Profil zur @dfn{nullten Generation}, die keinerlei Dateien enthält, abgesehen von Metadaten über sich selbst." #. type: table -#: guix-git/doc/guix.texi:3400 +#: guix-git/doc/guix.texi:3417 msgid "After having rolled back, installing, removing, or upgrading packages overwrites previous future generations. Thus, the history of the generations in a profile is always linear." msgstr "Nach dem Zurücksetzen überschreibt das Installieren, Entfernen oder Aktualisieren von Paketen vormals zukünftige Generationen, d.h.@: der Verlauf der Generationen eines Profils ist immer linear." #. type: item -#: guix-git/doc/guix.texi:3401 guix-git/doc/guix.texi:4499 +#: guix-git/doc/guix.texi:3418 guix-git/doc/guix.texi:4517 #, no-wrap msgid "--switch-generation=@var{pattern}" msgstr "--switch-generation=@var{Muster}" #. type: itemx -#: guix-git/doc/guix.texi:3402 guix-git/doc/guix.texi:4500 +#: guix-git/doc/guix.texi:3419 guix-git/doc/guix.texi:4518 #, no-wrap msgid "-S @var{pattern}" msgstr "-S @var{Muster}" #. type: cindex -#: guix-git/doc/guix.texi:3403 guix-git/doc/guix.texi:3635 -#: guix-git/doc/guix.texi:4501 guix-git/doc/guix.texi:34964 +#: guix-git/doc/guix.texi:3420 guix-git/doc/guix.texi:3653 +#: guix-git/doc/guix.texi:4519 guix-git/doc/guix.texi:35403 #, no-wrap msgid "generations" msgstr "Generationen" #. type: table -#: guix-git/doc/guix.texi:3405 guix-git/doc/guix.texi:4503 +#: guix-git/doc/guix.texi:3422 guix-git/doc/guix.texi:4521 msgid "Switch to a particular generation defined by @var{pattern}." msgstr "Wechselt zu der bestimmten Generation, die durch das @var{Muster} bezeichnet wird." #. type: table -#: guix-git/doc/guix.texi:3411 guix-git/doc/guix.texi:4509 +#: guix-git/doc/guix.texi:3428 guix-git/doc/guix.texi:4527 msgid "@var{pattern} may be either a generation number or a number prefixed with ``+'' or ``-''. The latter means: move forward/backward by a specified number of generations. For example, if you want to return to the latest generation after @option{--roll-back}, use @option{--switch-generation=+1}." msgstr "Als @var{Muster} kann entweder die Nummer einer Generation oder eine Nummer mit vorangestelltem „+“ oder „-“ dienen. Letzteres springt die angegebene Anzahl an Generationen vor oder zurück. Zum Beispiel kehrt @option{--switch-generation=+1} nach einem Zurücksetzen wieder zur neueren Generation zurück." #. type: table -#: guix-git/doc/guix.texi:3416 +#: guix-git/doc/guix.texi:3433 msgid "The difference between @option{--roll-back} and @option{--switch-generation=-1} is that @option{--switch-generation} will not make a zeroth generation, so if a specified generation does not exist, the current generation will not be changed." msgstr "Der Unterschied zwischen @option{--roll-back} und @option{--switch-generation=-1} ist, dass @option{--switch-generation} keine nullte Generation erzeugen wird; existiert die angegebene Generation nicht, bleibt schlicht die aktuelle Generation erhalten." #. type: item -#: guix-git/doc/guix.texi:3417 +#: guix-git/doc/guix.texi:3434 #, no-wrap msgid "--search-paths[=@var{kind}]" msgstr "--search-paths[=@var{Art}]" #. type: table -#: guix-git/doc/guix.texi:3423 +#: guix-git/doc/guix.texi:3440 msgid "Report environment variable definitions, in Bash syntax, that may be needed in order to use the set of installed packages. These environment variables are used to specify @dfn{search paths} for files used by some of the installed packages." msgstr "Führe die Definitionen von Umgebungsvariablen auf, in Bash-Syntax, die nötig sein könnten, um alle installierten Pakete nutzen zu können. Diese Umgebungsvariablen werden benutzt, um die @dfn{Suchpfade} für Dateien festzulegen, die von einigen installierten Paketen benutzt werden." #. type: table -#: guix-git/doc/guix.texi:3431 -msgid "For example, GCC needs the @env{CPATH} and @env{LIBRARY_PATH} environment variables to be defined so it can look for headers and libraries in the user's profile (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C library are installed in the profile, then @option{--search-paths} will suggest setting these variables to @file{@var{profile}/include} and @file{@var{profile}/lib}, respectively." +#: guix-git/doc/guix.texi:3449 +#, fuzzy +#| msgid "For example, GCC needs the @env{CPATH} and @env{LIBRARY_PATH} environment variables to be defined so it can look for headers and libraries in the user's profile (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C library are installed in the profile, then @option{--search-paths} will suggest setting these variables to @file{@var{profile}/include} and @file{@var{profile}/lib}, respectively." +msgid "For example, GCC needs the @env{CPATH} and @env{LIBRARY_PATH} environment variables to be defined so it can look for headers and libraries in the user's profile (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C library are installed in the profile, then @option{--search-paths} will suggest setting these variables to @file{@var{profile}/include} and @file{@var{profile}/lib}, respectively (@pxref{Search Paths}, for info on search path specifications associated with packages.)" msgstr "Zum Beispiel braucht GCC die Umgebungsvariablen @env{CPATH} und @env{LIBRARY_PATH}, um zu wissen, wo sich im Benutzerprofil Header und Bibliotheken befinden (siehe @ref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). Wenn GCC und, sagen wir, die C-Bibliothek im Profil installiert sind, schlägt @option{--search-paths} also vor, diese Variablen jeweils auf @file{@var{profile}/include} und @file{@var{profile}/lib} verweisen zu lassen." #. type: table -#: guix-git/doc/guix.texi:3434 +#: guix-git/doc/guix.texi:3452 msgid "The typical use case is to define these environment variables in the shell:" msgstr "Die typische Nutzung ist, in der Shell diese Variablen zu definieren:" #. type: example -#: guix-git/doc/guix.texi:3437 +#: guix-git/doc/guix.texi:3455 #, no-wrap msgid "$ eval `guix package --search-paths`\n" msgstr "$ eval `guix package --search-paths`\n" #. type: table -#: guix-git/doc/guix.texi:3443 +#: guix-git/doc/guix.texi:3461 msgid "@var{kind} may be one of @code{exact}, @code{prefix}, or @code{suffix}, meaning that the returned environment variable definitions will either be exact settings, or prefixes or suffixes of the current value of these variables. When omitted, @var{kind} defaults to @code{exact}." msgstr "Als @var{Art} kann entweder @code{exact}, @code{prefix} oder @code{suffix} gewählt werden, wodurch die gelieferten Definitionen der Umgebungsvariablen entweder exakt die Einstellungen für Guix meldet, oder sie als Präfix oder Suffix an den aktuellen Wert dieser Variablen anhängt. Gibt man keine @var{Art} an, wird der Vorgabewert @code{exact} verwendet." #. type: table -#: guix-git/doc/guix.texi:3446 +#: guix-git/doc/guix.texi:3464 msgid "This option can also be used to compute the @emph{combined} search paths of several profiles. Consider this example:" msgstr "Diese Befehlszeilenoption kann auch benutzt werden, um die @emph{kombinierten} Suchpfade mehrerer Profile zu berechnen. Betrachten Sie dieses Beispiel:" #. type: example -#: guix-git/doc/guix.texi:3451 +#: guix-git/doc/guix.texi:3469 #, no-wrap msgid "" "$ guix package -p foo -i guile\n" @@ -9449,42 +9529,44 @@ msgstr "" "$ guix package -p foo -p bar --search-paths\n" #. type: table -#: guix-git/doc/guix.texi:3456 +#: guix-git/doc/guix.texi:3474 msgid "The last command above reports about the @env{GUILE_LOAD_PATH} variable, even though, taken individually, neither @file{foo} nor @file{bar} would lead to that recommendation." msgstr "Der letzte Befehl oben meldet auch die Definition der Umgebungsvariablen @env{GUILE_LOAD_PATH}, obwohl für sich genommen weder @file{foo} noch @file{bar} zu dieser Empfehlung führen würden." #. type: cindex -#: guix-git/doc/guix.texi:3458 +#: guix-git/doc/guix.texi:3476 #, no-wrap msgid "profile, choosing" msgstr "Profil, auswählen" #. type: item -#: guix-git/doc/guix.texi:3459 guix-git/doc/guix.texi:4529 -#: guix-git/doc/guix.texi:4858 +#: guix-git/doc/guix.texi:3477 guix-git/doc/guix.texi:4547 +#: guix-git/doc/guix.texi:4876 guix-git/doc/guix.texi:5827 +#: guix-git/doc/guix.texi:6240 #, no-wrap msgid "--profile=@var{profile}" msgstr "--profile=@var{Profil}" #. type: itemx -#: guix-git/doc/guix.texi:3460 guix-git/doc/guix.texi:4530 -#: guix-git/doc/guix.texi:4859 +#: guix-git/doc/guix.texi:3478 guix-git/doc/guix.texi:4548 +#: guix-git/doc/guix.texi:4877 guix-git/doc/guix.texi:5828 +#: guix-git/doc/guix.texi:6241 #, no-wrap msgid "-p @var{profile}" msgstr "-p @var{Profil}" #. type: table -#: guix-git/doc/guix.texi:3462 +#: guix-git/doc/guix.texi:3480 msgid "Use @var{profile} instead of the user's default profile." msgstr "Auf @var{Profil} anstelle des Standardprofils des Benutzers arbeiten." #. type: table -#: guix-git/doc/guix.texi:3467 +#: guix-git/doc/guix.texi:3485 msgid "@var{profile} must be the name of a file that will be created upon completion. Concretely, @var{profile} will be a mere symbolic link (``symlink'') pointing to the actual profile where packages are installed:" msgstr "Als @var{Profil} muss der Name einer Datei angegeben werden, die dann nach Abschluss der Transaktion erzeugt wird. Konkret wird @var{Profil} nur zu einer symbolischen Verknüpfung („Symlink“) auf das eigentliche Profil gemacht, in das Pakete installiert werden." #. type: example -#: guix-git/doc/guix.texi:3473 +#: guix-git/doc/guix.texi:3491 #, no-wrap msgid "" "$ guix install hello -p ~/code/my-profile\n" @@ -9498,29 +9580,29 @@ msgstr "" "Hallo, Welt!\n" #. type: table -#: guix-git/doc/guix.texi:3477 +#: guix-git/doc/guix.texi:3495 msgid "All it takes to get rid of the profile is to remove this symlink and its siblings that point to specific generations:" msgstr "Um das Profil loszuwerden, genügt es, die symbolische Verknüpfung und damit einhergehende Verknüpfungen, die auf bestimmte Generationen verweisen, zu entfernen:" #. type: example -#: guix-git/doc/guix.texi:3480 +#: guix-git/doc/guix.texi:3498 #, no-wrap msgid "$ rm ~/code/my-profile ~/code/my-profile-*-link\n" msgstr "$ rm ~/code/mein-profil ~/code/mein-profil-*-link\n" #. type: item -#: guix-git/doc/guix.texi:3482 +#: guix-git/doc/guix.texi:3500 #, no-wrap msgid "--list-profiles" msgstr "--list-profiles" #. type: table -#: guix-git/doc/guix.texi:3484 +#: guix-git/doc/guix.texi:3502 msgid "List all the user's profiles:" msgstr "Alle Profile des Benutzers auflisten:" #. type: example -#: guix-git/doc/guix.texi:3491 +#: guix-git/doc/guix.texi:3509 #, no-wrap msgid "" "$ guix package --list-profiles\n" @@ -9536,96 +9618,96 @@ msgstr "" "/home/charlie/tmp/test\n" #. type: table -#: guix-git/doc/guix.texi:3494 +#: guix-git/doc/guix.texi:3512 msgid "When running as root, list all the profiles of all the users." msgstr "Wird es als Administratornutzer „root“ ausgeführt, werden die Profile aller Benutzer aufgelistet." #. type: cindex -#: guix-git/doc/guix.texi:3495 +#: guix-git/doc/guix.texi:3513 #, no-wrap msgid "collisions, in a profile" msgstr "Kollisionen, in einem Profil" #. type: cindex -#: guix-git/doc/guix.texi:3496 +#: guix-git/doc/guix.texi:3514 #, no-wrap msgid "colliding packages in profiles" msgstr "Paketkollisionen in Profilen" #. type: cindex -#: guix-git/doc/guix.texi:3497 +#: guix-git/doc/guix.texi:3515 #, no-wrap msgid "profile collisions" msgstr "Profilkollisionen" #. type: item -#: guix-git/doc/guix.texi:3498 +#: guix-git/doc/guix.texi:3516 #, no-wrap msgid "--allow-collisions" msgstr "--allow-collisions" #. type: table -#: guix-git/doc/guix.texi:3500 +#: guix-git/doc/guix.texi:3518 msgid "Allow colliding packages in the new profile. Use at your own risk!" msgstr "Kollidierende Pakete im neuen Profil zulassen. Benutzung auf eigene Gefahr!" #. type: table -#: guix-git/doc/guix.texi:3504 +#: guix-git/doc/guix.texi:3522 msgid "By default, @command{guix package} reports as an error @dfn{collisions} in the profile. Collisions happen when two or more different versions or variants of a given package end up in the profile." msgstr "Standardmäßig wird @command{guix package} @dfn{Kollisionen} als Fehler auffassen und melden. Zu Kollisionen kommt es, wenn zwei oder mehr verschiedene Versionen oder Varianten desselben Pakets im Profil landen." #. type: item -#: guix-git/doc/guix.texi:3505 guix-git/doc/guix.texi:4572 -#: guix-git/doc/guix.texi:6701 +#: guix-git/doc/guix.texi:3523 guix-git/doc/guix.texi:4590 +#: guix-git/doc/guix.texi:6744 #, no-wrap msgid "--bootstrap" msgstr "--bootstrap" #. type: table -#: guix-git/doc/guix.texi:3508 +#: guix-git/doc/guix.texi:3526 msgid "Use the bootstrap Guile to build the profile. This option is only useful to distribution developers." msgstr "Erstellt das Profil mit dem Bootstrap-Guile. Diese Option ist nur für Entwickler der Distribution nützlich." #. type: Plain text -#: guix-git/doc/guix.texi:3514 +#: guix-git/doc/guix.texi:3532 msgid "In addition to these actions, @command{guix package} supports the following options to query the current state of a profile, or the availability of packages:" msgstr "Zusätzlich zu diesen Aktionen unterstützt @command{guix package} folgende Befehlszeilenoptionen, um den momentanen Zustand eines Profils oder die Verfügbarkeit von Paketen nachzulesen:" #. type: item -#: guix-git/doc/guix.texi:3517 +#: guix-git/doc/guix.texi:3535 #, no-wrap msgid "--search=@var{regexp}" msgstr "--search=@var{Regexp}" #. type: itemx -#: guix-git/doc/guix.texi:3518 +#: guix-git/doc/guix.texi:3536 #, no-wrap msgid "-s @var{regexp}" msgstr "-s @var{Regexp}" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3520 +#: guix-git/doc/guix.texi:3538 msgid "guix-search" msgstr "guix-search" #. type: cindex -#: guix-git/doc/guix.texi:3520 +#: guix-git/doc/guix.texi:3538 #, no-wrap msgid "searching for packages" msgstr "Suche nach Paketen" #. type: table -#: guix-git/doc/guix.texi:3526 +#: guix-git/doc/guix.texi:3544 msgid "List the available packages whose name, synopsis, or description matches @var{regexp} (in a case-insensitive fashion), sorted by relevance. Print all the metadata of matching packages in @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "Führt alle verfügbaren Pakete auf, deren Name, Zusammenfassung oder Beschreibung zum regulären Ausdruck @var{Regexp} passt, ohne Groß- und Kleinschreibung zu unterscheiden und sortiert nach ihrer Relevanz. Alle Metadaten passender Pakete werden im @code{recutils}-Format geliefert (siehe @ref{Top, GNU-recutils-Datenbanken,, recutils, GNU recutils manual})." #. type: table -#: guix-git/doc/guix.texi:3529 +#: guix-git/doc/guix.texi:3547 msgid "This allows specific fields to be extracted using the @command{recsel} command, for instance:" msgstr "So können bestimmte Felder mit dem Befehl @command{recsel} extrahiert werden, zum Beispiel:" #. type: example -#: guix-git/doc/guix.texi:3535 +#: guix-git/doc/guix.texi:3553 #, no-wrap msgid "" "$ guix package -s malloc | recsel -p name,version,relevance\n" @@ -9641,7 +9723,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:3539 +#: guix-git/doc/guix.texi:3557 #, no-wrap msgid "" "name: glibc\n" @@ -9655,7 +9737,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:3543 +#: guix-git/doc/guix.texi:3561 #, no-wrap msgid "" "name: libgc\n" @@ -9667,12 +9749,12 @@ msgstr "" "relevance: 1\n" #. type: table -#: guix-git/doc/guix.texi:3547 +#: guix-git/doc/guix.texi:3565 msgid "Similarly, to show the name of all the packages available under the terms of the GNU@tie{}LGPL version 3:" msgstr "Ebenso kann der Name aller zu den Bedingungen der GNU@tie{}LGPL, Version 3, verfügbaren Pakete ermittelt werden:" #. type: example -#: guix-git/doc/guix.texi:3551 +#: guix-git/doc/guix.texi:3569 #, no-wrap msgid "" "$ guix package -s \"\" | recsel -p name -e 'license ~ \"LGPL 3\"'\n" @@ -9684,7 +9766,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:3554 +#: guix-git/doc/guix.texi:3572 #, no-wrap msgid "" "name: gmp\n" @@ -9694,12 +9776,12 @@ msgstr "" "…\n" #. type: table -#: guix-git/doc/guix.texi:3560 +#: guix-git/doc/guix.texi:3578 msgid "It is also possible to refine search results using several @code{-s} flags to @command{guix package}, or several arguments to @command{guix search}. For example, the following command returns a list of board games (this time using the @command{guix search} alias):" msgstr "Es ist auch möglich, Suchergebnisse näher einzuschränken, indem Sie @code{-s} mehrmals an @command{guix package} übergeben, oder mehrere Argumente an @command{guix search} übergeben. Zum Beispiel liefert folgender Befehl eines Liste von Brettspielen:" #. type: example -#: guix-git/doc/guix.texi:3565 +#: guix-git/doc/guix.texi:3583 #, no-wrap msgid "" "$ guix search '\\' game | recsel -p name\n" @@ -9711,17 +9793,17 @@ msgstr "" "…\n" #. type: table -#: guix-git/doc/guix.texi:3571 +#: guix-git/doc/guix.texi:3589 msgid "If we were to omit @code{-s game}, we would also get software packages that deal with printed circuit boards; removing the angle brackets around @code{board} would further add packages that have to do with keyboards." msgstr "Würden wir @code{-s game} weglassen, bekämen wir auch Software-Pakete aufgelistet, die mit „printed circuit boards“ (elektronischen Leiterplatten) zu tun haben; ohne die spitzen Klammern um @code{board} bekämen wir auch Pakete, die mit „keyboards“ (Tastaturen, oder musikalischen Keyboard) zu tun haben." #. type: table -#: guix-git/doc/guix.texi:3575 +#: guix-git/doc/guix.texi:3593 msgid "And now for a more elaborate example. The following command searches for cryptographic libraries, filters out Haskell, Perl, Python, and Ruby libraries, and prints the name and synopsis of the matching packages:" msgstr "Es ist Zeit für ein komplexeres Beispiel. Folgender Befehl sucht kryptografische Bibliotheken, filtert Haskell-, Perl-, Python- und Ruby-Bibliotheken heraus und gibt Namen und Zusammenfassung passender Pakete aus:" #. type: example -#: guix-git/doc/guix.texi:3579 +#: guix-git/doc/guix.texi:3597 #, no-wrap msgid "" "$ guix search crypto library | \\\n" @@ -9731,23 +9813,23 @@ msgstr "" " recsel -e '! (name ~ \"^(ghc|perl|python|ruby)\")' -p name,synopsis\n" #. type: table -#: guix-git/doc/guix.texi:3584 +#: guix-git/doc/guix.texi:3602 msgid "@xref{Selection Expressions,,, recutils, GNU recutils manual}, for more information on @dfn{selection expressions} for @code{recsel -e}." msgstr "Siehe @ref{Selection Expressions,,, recutils, GNU recutils manual}, es enthält weitere Informationen über @dfn{Auswahlausdrücke} mit @code{recsel -e}." #. type: item -#: guix-git/doc/guix.texi:3585 +#: guix-git/doc/guix.texi:3603 #, no-wrap msgid "--show=@var{package}" msgstr "--show=@var{Paket}" #. type: table -#: guix-git/doc/guix.texi:3589 +#: guix-git/doc/guix.texi:3607 msgid "Show details about @var{package}, taken from the list of available packages, in @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "Zeigt Details über das @var{Paket} aus der Liste verfügbarer Pakete, im @code{recutils}-Format (siehe @ref{Top, GNU-recutils-Datenbanken,, recutils, GNU recutils manual})." #. type: example -#: guix-git/doc/guix.texi:3594 +#: guix-git/doc/guix.texi:3612 #, no-wrap msgid "" "$ guix package --show=guile | recsel -p name,version\n" @@ -9761,7 +9843,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:3597 +#: guix-git/doc/guix.texi:3615 #, no-wrap msgid "" "name: guile\n" @@ -9773,7 +9855,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:3601 +#: guix-git/doc/guix.texi:3619 #, no-wrap msgid "" "name: guile\n" @@ -9785,12 +9867,12 @@ msgstr "" "…\n" #. type: table -#: guix-git/doc/guix.texi:3605 +#: guix-git/doc/guix.texi:3623 msgid "You may also specify the full name of a package to only get details about a specific version of it (this time using the @command{guix show} alias):" msgstr "Sie können auch den vollständigen Namen eines Pakets angeben, um Details nur über diese Version angezeigt zu bekommen (diesmal benutzen wir die andere Schreibweise @command{guix show}):" #. type: example -#: guix-git/doc/guix.texi:3609 +#: guix-git/doc/guix.texi:3627 #, no-wrap msgid "" "$ guix show guile@@3.0.5 | recsel -p name,version\n" @@ -9802,297 +9884,297 @@ msgstr "" "version: 3.0.5\n" #. type: item -#: guix-git/doc/guix.texi:3611 +#: guix-git/doc/guix.texi:3629 #, no-wrap msgid "--list-installed[=@var{regexp}]" msgstr "--list-installed[=@var{Regexp}]" #. type: itemx -#: guix-git/doc/guix.texi:3612 +#: guix-git/doc/guix.texi:3630 #, no-wrap msgid "-I [@var{regexp}]" msgstr "-I [@var{Regexp}]" #. type: table -#: guix-git/doc/guix.texi:3616 +#: guix-git/doc/guix.texi:3634 msgid "List the currently installed packages in the specified profile, with the most recently installed packages shown last. When @var{regexp} is specified, list only installed packages whose name matches @var{regexp}." msgstr "Listet die derzeit installierten Pakete im angegebenen Profil auf, die zuletzt installierten Pakete zuletzt. Wenn ein regulärer Ausdruck @var{Regexp} angegeben wird, werden nur installierte Pakete aufgeführt, deren Name zu @var{Regexp} passt." #. type: table -#: guix-git/doc/guix.texi:3622 +#: guix-git/doc/guix.texi:3640 msgid "For each installed package, print the following items, separated by tabs: the package name, its version string, the part of the package that is installed (for instance, @code{out} for the default output, @code{include} for its headers, etc.), and the path of this package in the store." msgstr "Zu jedem installierten Paket werden folgende Informationen angezeigt, durch Tabulatorzeichen getrennt: der Paketname, die Version als Zeichenkette, welche Teile des Pakets installiert sind (zum Beispiel @code{out}, wenn die Standard-Paketausgabe installiert ist, @code{include}, wenn seine Header installiert sind, usw.)@: und an welchem Pfad das Paket im Store zu finden ist." #. type: item -#: guix-git/doc/guix.texi:3623 +#: guix-git/doc/guix.texi:3641 #, no-wrap msgid "--list-available[=@var{regexp}]" msgstr "--list-available[=@var{Regexp}]" #. type: itemx -#: guix-git/doc/guix.texi:3624 +#: guix-git/doc/guix.texi:3642 #, no-wrap msgid "-A [@var{regexp}]" msgstr "-A [@var{Regexp}]" #. type: table -#: guix-git/doc/guix.texi:3628 +#: guix-git/doc/guix.texi:3646 msgid "List packages currently available in the distribution for this system (@pxref{GNU Distribution}). When @var{regexp} is specified, list only available packages whose name matches @var{regexp}." msgstr "Listet Pakete auf, die in der aktuell installierten Distribution dieses Systems verfügbar sind (siehe @ref{GNU Distribution}). Wenn ein regulärer Ausdruck @var{Regexp} angegeben wird, werden nur Pakete aufgeführt, deren Name zum regulären Ausdruck @var{Regexp} passt." #. type: table -#: guix-git/doc/guix.texi:3632 +#: guix-git/doc/guix.texi:3650 msgid "For each package, print the following items separated by tabs: its name, its version string, the parts of the package (@pxref{Packages with Multiple Outputs}), and the source location of its definition." msgstr "Zu jedem Paket werden folgende Informationen getrennt durch Tabulatorzeichen ausgegeben: der Name, die Version als Zeichenkette, die Teile des Programms (siehe @ref{Packages with Multiple Outputs}) und die Stelle im Quellcode, an der das Paket definiert ist." #. type: item -#: guix-git/doc/guix.texi:3633 guix-git/doc/guix.texi:4485 +#: guix-git/doc/guix.texi:3651 guix-git/doc/guix.texi:4503 #, no-wrap msgid "--list-generations[=@var{pattern}]" msgstr "--list-generations[=@var{Muster}]" #. type: itemx -#: guix-git/doc/guix.texi:3634 guix-git/doc/guix.texi:4486 +#: guix-git/doc/guix.texi:3652 guix-git/doc/guix.texi:4504 #, no-wrap msgid "-l [@var{pattern}]" msgstr "-l [@var{Muster}]" #. type: table -#: guix-git/doc/guix.texi:3640 +#: guix-git/doc/guix.texi:3658 msgid "Return a list of generations along with their creation dates; for each generation, show the installed packages, with the most recently installed packages shown last. Note that the zeroth generation is never shown." msgstr "Liefert eine Liste der Generationen zusammen mit dem Datum, an dem sie erzeugt wurden; zu jeder Generation werden zudem die installierten Pakete angezeigt, zuletzt installierte Pakete zuletzt. Beachten Sie, dass die nullte Generation niemals angezeigt wird." #. type: table -#: guix-git/doc/guix.texi:3645 +#: guix-git/doc/guix.texi:3663 msgid "For each installed package, print the following items, separated by tabs: the name of a package, its version string, the part of the package that is installed (@pxref{Packages with Multiple Outputs}), and the location of this package in the store." msgstr "Zu jedem installierten Paket werden folgende Informationen durch Tabulatorzeichen getrennt angezeigt: der Name des Pakets, die Version als Zeichenkette, welcher Teil des Pakets installiert ist (siehe @ref{Packages with Multiple Outputs}) und an welcher Stelle sich das Paket im Store befindet." #. type: table -#: guix-git/doc/guix.texi:3648 +#: guix-git/doc/guix.texi:3666 msgid "When @var{pattern} is used, the command returns only matching generations. Valid patterns include:" msgstr "Wenn ein @var{Muster} angegeben wird, liefert der Befehl nur dazu passende Generationen. Gültige Muster sind zum Beispiel:" #. type: item -#: guix-git/doc/guix.texi:3650 +#: guix-git/doc/guix.texi:3668 #, no-wrap msgid "@emph{Integers and comma-separated integers}. Both patterns denote" msgstr "@emph{Ganze Zahlen und kommagetrennte ganze Zahlen}. Beide Muster bezeichnen" #. type: itemize -#: guix-git/doc/guix.texi:3653 +#: guix-git/doc/guix.texi:3671 msgid "generation numbers. For instance, @option{--list-generations=1} returns the first one." msgstr "Generationsnummern. Zum Beispiel liefert @option{--list-generations=1} die erste Generation." #. type: itemize -#: guix-git/doc/guix.texi:3656 +#: guix-git/doc/guix.texi:3674 msgid "And @option{--list-generations=1,8,2} outputs three generations in the specified order. Neither spaces nor trailing commas are allowed." msgstr "Durch @option{--list-generations=1,8,2} werden drei Generationen in der angegebenen Reihenfolge angezeigt. Weder Leerzeichen noch ein Komma am Schluss der Liste ist erlaubt." #. type: item -#: guix-git/doc/guix.texi:3657 +#: guix-git/doc/guix.texi:3675 #, no-wrap msgid "@emph{Ranges}. @option{--list-generations=2..9} prints the" msgstr "@emph{Bereiche}. @option{--list-generations=2..9} gibt die" #. type: itemize -#: guix-git/doc/guix.texi:3660 +#: guix-git/doc/guix.texi:3678 msgid "specified generations and everything in between. Note that the start of a range must be smaller than its end." msgstr "angegebenen Generationen und alles dazwischen aus. Beachten Sie, dass der Bereichsanfang eine kleinere Zahl als das Bereichsende sein muss." #. type: itemize -#: guix-git/doc/guix.texi:3664 +#: guix-git/doc/guix.texi:3682 msgid "It is also possible to omit the endpoint. For example, @option{--list-generations=2..}, returns all generations starting from the second one." msgstr "Sie können auch kein Bereichsende angeben, zum Beispiel liefert @option{--list-generations=2..} alle Generationen ab der zweiten." #. type: item -#: guix-git/doc/guix.texi:3665 +#: guix-git/doc/guix.texi:3683 #, no-wrap msgid "@emph{Durations}. You can also get the last @emph{N}@tie{}days, weeks," msgstr "@emph{Zeitdauern}. Sie können auch die letzten @emph{N}@tie{}Tage, Wochen" #. type: itemize -#: guix-git/doc/guix.texi:3669 +#: guix-git/doc/guix.texi:3687 msgid "or months by passing an integer along with the first letter of the duration. For example, @option{--list-generations=20d} lists generations that are up to 20 days old." msgstr "oder Monate angeben, indem Sie eine ganze Zahl gefolgt von jeweils „d“, „w“ oder „m“ angeben (dem ersten Buchstaben der Maßeinheit der Dauer im Englischen). Zum Beispiel listet @option{--list-generations=20d} die Generationen auf, die höchstens 20 Tage alt sind." #. type: item -#: guix-git/doc/guix.texi:3671 guix-git/doc/guix.texi:4510 +#: guix-git/doc/guix.texi:3689 guix-git/doc/guix.texi:4528 #, no-wrap msgid "--delete-generations[=@var{pattern}]" msgstr "--delete-generations[=@var{Muster}]" #. type: itemx -#: guix-git/doc/guix.texi:3672 guix-git/doc/guix.texi:4511 +#: guix-git/doc/guix.texi:3690 guix-git/doc/guix.texi:4529 #, no-wrap msgid "-d [@var{pattern}]" msgstr "-d [@var{Muster}]" #. type: table -#: guix-git/doc/guix.texi:3675 guix-git/doc/guix.texi:4514 +#: guix-git/doc/guix.texi:3693 guix-git/doc/guix.texi:4532 msgid "When @var{pattern} is omitted, delete all generations except the current one." msgstr "Wird kein @var{Muster} angegeben, werden alle Generationen außer der aktuellen entfernt." #. type: table -#: guix-git/doc/guix.texi:3681 guix-git/doc/guix.texi:4520 +#: guix-git/doc/guix.texi:3699 guix-git/doc/guix.texi:4538 msgid "This command accepts the same patterns as @option{--list-generations}. When @var{pattern} is specified, delete the matching generations. When @var{pattern} specifies a duration, generations @emph{older} than the specified duration match. For instance, @option{--delete-generations=1m} deletes generations that are more than one month old." msgstr "Dieser Befehl akzeptiert dieselben Muster wie @option{--list-generations}. Wenn ein @var{Muster} angegeben wird, werden die passenden Generationen gelöscht. Wenn das @var{Muster} für eine Zeitdauer steht, werden diejenigen Generationen gelöscht, die @emph{älter} als die angegebene Dauer sind. Zum Beispiel löscht @option{--delete-generations=1m} die Generationen, die mehr als einen Monat alt sind." #. type: table -#: guix-git/doc/guix.texi:3684 +#: guix-git/doc/guix.texi:3702 msgid "If the current generation matches, it is @emph{not} deleted. Also, the zeroth generation is never deleted." msgstr "Falls die aktuelle Generation zum Muster passt, wird sie @emph{nicht} gelöscht. Auch die nullte Generation wird niemals gelöscht." #. type: table -#: guix-git/doc/guix.texi:3687 guix-git/doc/guix.texi:4525 +#: guix-git/doc/guix.texi:3705 guix-git/doc/guix.texi:4543 msgid "Note that deleting generations prevents rolling back to them. Consequently, this command must be used with care." msgstr "Beachten Sie, dass Sie auf gelöschte Generationen nicht zurückwechseln können. Dieser Befehl sollte also nur mit Vorsicht benutzt werden." #. type: cindex -#: guix-git/doc/guix.texi:3688 +#: guix-git/doc/guix.texi:3706 #, no-wrap msgid "manifest, exporting" msgstr "Manifest, exportieren" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3690 +#: guix-git/doc/guix.texi:3708 msgid "export-manifest" msgstr "export-manifest" #. type: item -#: guix-git/doc/guix.texi:3690 +#: guix-git/doc/guix.texi:3708 #, no-wrap msgid "--export-manifest" msgstr "--export-manifest" #. type: table -#: guix-git/doc/guix.texi:3693 +#: guix-git/doc/guix.texi:3711 msgid "Write to standard output a manifest suitable for @option{--manifest} corresponding to the chosen profile(s)." msgstr "Auf die Standardausgabe ein Manifest ausgeben, das mit @option{--manifest} genutzt werden kann und dem/den gewählten Profil(en) entspricht." #. type: table -#: guix-git/doc/guix.texi:3697 +#: guix-git/doc/guix.texi:3715 msgid "This option is meant to help you migrate from the ``imperative'' operating mode---running @command{guix install}, @command{guix upgrade}, etc.---to the declarative mode that @option{--manifest} offers." msgstr "Diese Befehlszeilenoption erleichtert Ihnen den Wechsel vom „imperativen“ Betriebsmodus, wo Sie immer wieder @command{guix install}, @command{guix upgrade} etc.@: ausführen, zum deklarativen Modus, der mit @option{--manifest} zur Verfügung steht." #. type: table -#: guix-git/doc/guix.texi:3702 +#: guix-git/doc/guix.texi:3720 msgid "Be aware that the resulting manifest @emph{approximates} what your profile actually contains; for instance, depending on how your profile was created, it can refer to packages or package versions that are not exactly what you specified." msgstr "Seien Sie sich bewusst, dass das erzeugte Manifest nur eine @emph{Annäherung} des Inhalts Ihres Profils ist. Je nachdem, wie Ihr Profil erzeugt wurde, kann es auf andere Pakete oder Paketversionen verweisen." #. type: table -#: guix-git/doc/guix.texi:3707 +#: guix-git/doc/guix.texi:3725 msgid "Keep in mind that a manifest is purely symbolic: it only contains package names and possibly versions, and their meaning varies over time. If you wish to ``pin'' channels to the revisions that were used to build the profile(s), see @option{--export-channels} below." msgstr "Beachten Sie, dass ein Manifest rein symbolisch ist; es enthält nur die Namen und vielleicht Versionen der Pakete, aber die Bedeutung davon wandelt sich mit der Zeit. Wenn Sie wollen, dass die Pakete aus immer derselben Kanalversion stammen, mit der das Profil oder die Profile erstellt wurden, siehe @option{--export-channels} unten." #. type: cindex -#: guix-git/doc/guix.texi:3708 +#: guix-git/doc/guix.texi:3726 #, no-wrap msgid "pinning, channel revisions of a profile" msgstr "immer dieselbe Version verwenden, bei Kanälen" #. type: item -#: guix-git/doc/guix.texi:3709 +#: guix-git/doc/guix.texi:3727 #, no-wrap msgid "--export-channels" msgstr "--export-channels" #. type: table -#: guix-git/doc/guix.texi:3713 +#: guix-git/doc/guix.texi:3731 msgid "Write to standard output the list of channels used by the chosen profile(s), in a format suitable for @command{guix pull --channels} or @command{guix time-machine --channels} (@pxref{Channels})." msgstr "Auf die Standardausgabe die Liste der Kanäle schreiben, die das gewählte Profil benutzt bzw.@: die die gewählten Profile benutzen. Das Format der Kanalspezifikation ist für @command{guix pull --channels} und @command{guix time-machine --channels} geeignet (siehe @ref{Channels})." #. type: table -#: guix-git/doc/guix.texi:3717 +#: guix-git/doc/guix.texi:3735 msgid "Together with @option{--export-manifest}, this option provides information allowing you to replicate the current profile (@pxref{Replicating Guix})." msgstr "Zusammen mit @option{--export-manifest} macht diese Befehlszeilenoption Informationen verfügbar, um das aktuelle Profil nachzubilden (siehe @ref{Replicating Guix})." #. type: table -#: guix-git/doc/guix.texi:3725 +#: guix-git/doc/guix.texi:3743 msgid "However, note that the output of this command @emph{approximates} what was actually used to build this profile. In particular, a single profile might have been built from several different revisions of the same channel. In that case, @option{--export-manifest} chooses the last one and writes the list of other revisions in a comment. If you really need to pick packages from different channel revisions, you can use inferiors in your manifest to do so (@pxref{Inferiors})." msgstr "Beachten Sie jedoch, dass die Ausgabe dieses Befehls nur eine @emph{Annäherung} dessen ist, woraus ein Profil tatsächlich erstellt wurde. Insbesondere kann ein Profil aus mehreren Versionen desselben Kanals aufgebaut worden sein. In diesem Fall wählt @option{--export-manifest} die neueste aus und schreibt die anderen Versionen in einem Kommentar dazu. Wenn Sie wirklich Pakete aus unterschiedlichen Kanalversionen zu nehmen brauchen, können Sie dazu in Ihrem Manifest Untergeordnete angeben (siehe @ref{Inferiors})." #. type: table -#: guix-git/doc/guix.texi:3730 +#: guix-git/doc/guix.texi:3748 msgid "Together with @option{--export-manifest}, this is a good starting point if you are willing to migrate from the ``imperative'' model to the fully declarative model consisting of a manifest file along with a channels file pinning the exact channel revision(s) you want." msgstr "Dies stellt zusammen mit @option{--export-manifest} eine gute Gelegenheit dar, wenn Sie bereit sind, vom „imperativen“ Modell auf das vollständig deklarative Modell zu wechseln, wo Sie eine Manifestdatei zusammen mit einer Kanaldatei benutzen, die ganz genau festlegt, welche Kanalversion(en) Sie wollen." #. type: Plain text -#: guix-git/doc/guix.texi:3737 +#: guix-git/doc/guix.texi:3755 msgid "Finally, since @command{guix package} may actually start build processes, it supports all the common build options (@pxref{Common Build Options}). It also supports package transformation options, such as @option{--with-source}, and preserves them across upgrades (@pxref{Package Transformation Options})." msgstr "Zu guter Letzt können Sie, da @command{guix package} Erstellungsprozesse zu starten vermag, auch alle gemeinsamen Erstellungsoptionen (siehe @ref{Common Build Options}) verwenden. Auch Paketumwandlungsoptionen wie @option{--with-source} sind möglich und bleiben über Aktualisierungen hinweg erhalten (siehe @ref{Package Transformation Options})." #. type: cindex -#: guix-git/doc/guix.texi:3742 +#: guix-git/doc/guix.texi:3760 #, no-wrap msgid "pre-built binaries" msgstr "vorerstellte Binärdateien" #. type: Plain text -#: guix-git/doc/guix.texi:3748 +#: guix-git/doc/guix.texi:3766 msgid "Guix supports transparent source/binary deployment, which means that it can either build things locally, or download pre-built items from a server, or both. We call these pre-built items @dfn{substitutes}---they are substitutes for local build results. In many cases, downloading a substitute is much faster than building things locally." msgstr "Guix kann transparent Binär- oder Quelldateien ausliefern. Das heißt, Dinge können sowohl lokal erstellt, als auch als vorerstellte Objekte von einem Server heruntergeladen werden, oder beides gemischt. Wir bezeichnen diese vorerstellten Objekte als @dfn{Substitute}@tie{}— sie substituieren lokale Erstellungsergebnisse. In vielen Fällen geht das Herunterladen eines Substituts wesentlich schneller, als Dinge lokal zu erstellen." #. type: Plain text -#: guix-git/doc/guix.texi:3753 +#: guix-git/doc/guix.texi:3771 msgid "Substitutes can be anything resulting from a derivation build (@pxref{Derivations}). Of course, in the common case, they are pre-built package binaries, but source tarballs, for instance, which also result from derivation builds, can be available as substitutes." msgstr "Substitute können alles sein, was das Ergebnis einer Ableitungserstellung ist (siehe @ref{Derivations}). Natürlich sind sie üblicherweise vorerstellte Paket-Binärdateien, aber wenn zum Beispiel ein Quell-Tarball das Ergebnis einer Ableitungserstellung ist, kann auch er als Substitut verfügbar sein." #. type: cindex -#: guix-git/doc/guix.texi:3767 +#: guix-git/doc/guix.texi:3785 #, no-wrap msgid "build farm" msgstr "Erstellungsfarm" #. type: Plain text -#: guix-git/doc/guix.texi:3778 +#: guix-git/doc/guix.texi:3796 msgid "@code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} are both front-ends to official build farms that build packages from Guix continuously for some architectures, and make them available as substitutes. These are the default source of substitutes; which can be overridden by passing the @option{--substitute-urls} option either to @command{guix-daemon} (@pxref{daemon-substitute-urls,, @code{guix-daemon --substitute-urls}}) or to client tools such as @command{guix package} (@pxref{client-substitute-urls,, client @option{--substitute-urls} option})." msgstr "@code{@value{SUBSTITUTE-SERVER-1}} und @code{@value{SUBSTITUTE-SERVER-2}} sind jeweils Fassaden für offizielle Erstellungsfarmen („Build Farms“), die kontinuierlich Guix-Pakete für einige Prozessorarchitekturen erstellen und sie als Substitute zur Verfügung stellen. Sie sind die standardmäßige Quelle von Substituten; durch Übergeben der Befehlszeilenoption @option{--substitute-urls} an entweder den @command{guix-daemon} (siehe @ref{daemon-substitute-urls,, @code{guix-daemon --substitute-urls}}) oder Client-Werkzeuge wie @command{guix package} (siehe @ref{client-substitute-urls,, die Befehlszeilenoption @option{--substitute-urls} beim Client}) kann eine abweichende Einstellung benutzt werden." #. type: Plain text -#: guix-git/doc/guix.texi:3784 +#: guix-git/doc/guix.texi:3802 msgid "Substitute URLs can be either HTTP or HTTPS. HTTPS is recommended because communications are encrypted; conversely, using HTTP makes all communications visible to an eavesdropper, who could use the information gathered to determine, for instance, whether your system has unpatched security vulnerabilities." msgstr "Substitut-URLs können entweder HTTP oder HTTPS sein. HTTPS wird empfohlen, weil die Kommunikation verschlüsselt ist; umgekehrt kann bei HTTP die Kommunikation belauscht werden, wodurch der Angreifer zum Beispiel erfahren könnte, ob Ihr System über noch nicht behobene Sicherheitsschwachstellen verfügt." #. type: Plain text -#: guix-git/doc/guix.texi:3793 +#: guix-git/doc/guix.texi:3811 msgid "Substitutes from the official build farms are enabled by default when using Guix System (@pxref{GNU Distribution}). However, they are disabled by default when using Guix on a foreign distribution, unless you have explicitly enabled them via one of the recommended installation steps (@pxref{Installation}). The following paragraphs describe how to enable or disable substitutes for the official build farm; the same procedure can also be used to enable substitutes for any other substitute server." msgstr "Substitute von den offiziellen Erstellungsfarmen sind standardmäßig erlaubt, wenn Sie Guix System verwenden (siehe @ref{GNU Distribution}). Auf Fremddistributionen sind sie allerdings standardmäßig ausgeschaltet, solange Sie sie nicht ausdrücklich in einem der empfohlenen Installationsschritte erlaubt haben (siehe @ref{Installation}). Die folgenden Absätze beschreiben, wie Sie Substitute für die offizielle Erstellungsfarm an- oder ausschalten; dieselbe Prozedur kann auch benutzt werden, um Substitute für einen beliebigen anderen Substitutserver zu erlauben." #. type: cindex -#: guix-git/doc/guix.texi:3797 +#: guix-git/doc/guix.texi:3815 #, no-wrap msgid "security" msgstr "Sicherheit" #. type: cindex -#: guix-git/doc/guix.texi:3799 +#: guix-git/doc/guix.texi:3817 #, no-wrap msgid "access control list (ACL), for substitutes" msgstr "Access Control List (ACL), für Substitute" #. type: cindex -#: guix-git/doc/guix.texi:3800 +#: guix-git/doc/guix.texi:3818 #, no-wrap msgid "ACL (access control list), for substitutes" msgstr "ACL (Access Control List), für Substitute" #. type: Plain text -#: guix-git/doc/guix.texi:3806 +#: guix-git/doc/guix.texi:3824 msgid "To allow Guix to download substitutes from @code{@value{SUBSTITUTE-SERVER-1}}, @code{@value{SUBSTITUTE-SERVER-2}} or a mirror, you must add the relevant public key to the access control list (ACL) of archive imports, using the @command{guix archive} command (@pxref{Invoking guix archive}). Doing so implies that you trust the substitute server to not be compromised and to serve genuine substitutes." msgstr "Um es Guix zu gestatten, Substitute von @code{@value{SUBSTITUTE-SERVER-1}}, @code{@value{SUBSTITUTE-SERVER-2}} oder einem Spiegelserver herunterzuladen, müssen Sie die zugehörigen öffentlichen Schlüssel zur Access Control List (ACL, Zugriffssteuerungsliste) für Archivimporte hinzufügen, mit Hilfe des Befehls @command{guix archive} (siehe @ref{Invoking guix archive}). Dies impliziert, dass Sie darauf vertrauen, dass der Substitutserver nicht kompromittiert wurde und unverfälschte Substitute liefert." #. type: quotation -#: guix-git/doc/guix.texi:3811 +#: guix-git/doc/guix.texi:3829 msgid "If you are using Guix System, you can skip this section: Guix System authorizes substitutes from @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} by default." msgstr "Wenn Sie Guix System benutzen, können Sie diesen Abschnitt hier überspringen, denn Guix System ist so voreingestellt, Substitute von @code{@value{SUBSTITUTE-SERVER-1}} und @code{@value{SUBSTITUTE-SERVER-2}} zu autorisieren." #. type: Plain text -#: guix-git/doc/guix.texi:3819 +#: guix-git/doc/guix.texi:3837 msgid "The public keys for each of the project maintained substitute servers are installed along with Guix, in @code{@var{prefix}/share/guix/}, where @var{prefix} is the installation prefix of Guix. If you installed Guix from source, make sure you checked the GPG signature of @file{guix-@value{VERSION}.tar.gz}, which contains this public key file. Then, you can run something like this:" msgstr "Der öffentliche Schlüssel für jeden vom Guix-Projekt verwalteten Substitutserver wird zusammen mit Guix installiert, in das Verzeichnis @code{@var{prefix}/share/guix/}, wobei @var{prefix} das bei der Installation angegebene Präfix von Guix ist. Wenn Sie Guix aus seinem Quellcode heraus installieren, sollten Sie sichergehen, dass Sie die GPG-Signatur (auch „Beglaubigung“ genannt) von @file{guix-@value{VERSION}.tar.gz} prüfen, worin sich dieser öffentliche Schlüssel befindet. Dann können Sie so etwas wie hier ausführen:" #. type: example -#: guix-git/doc/guix.texi:3823 +#: guix-git/doc/guix.texi:3841 #, no-wrap msgid "" "# guix archive --authorize < @var{prefix}/share/guix/@value{SUBSTITUTE-SERVER-1}.pub\n" @@ -10102,12 +10184,12 @@ msgstr "" "# guix archive --authorize < @var{prefix}/share/guix/@value{SUBSTITUTE-SERVER-2}.pub\n" #. type: Plain text -#: guix-git/doc/guix.texi:3827 +#: guix-git/doc/guix.texi:3845 msgid "Once this is in place, the output of a command like @code{guix build} should change from something like:" msgstr "Sobald es eingerichtet wurde, sollte sich die Ausgabe eines Befehls wie @code{guix build} von so etwas:" #. type: example -#: guix-git/doc/guix.texi:3836 +#: guix-git/doc/guix.texi:3854 #, no-wrap msgid "" "$ guix build emacs --dry-run\n" @@ -10127,12 +10209,12 @@ msgstr "" "…\n" #. type: Plain text -#: guix-git/doc/guix.texi:3840 +#: guix-git/doc/guix.texi:3858 msgid "to something like:" msgstr "in so etwas verwandeln:" #. type: example -#: guix-git/doc/guix.texi:3849 +#: guix-git/doc/guix.texi:3867 #, no-wrap msgid "" "$ guix build emacs --dry-run\n" @@ -10152,49 +10234,49 @@ msgstr "" "…\n" #. type: Plain text -#: guix-git/doc/guix.texi:3856 +#: guix-git/doc/guix.texi:3874 msgid "The text changed from ``The following derivations would be built'' to ``112.3 MB would be downloaded''. This indicates that substitutes from the configured substitute servers are usable and will be downloaded, when possible, for future builds." msgstr "Der Text hat sich von „Folgende Ableitungen würden erstellt“ zu „112.3 MB würden heruntergeladen“ geändert. Das zeigt an, dass Substitute von den festgelegten Substitutservern nutzbar sind und für zukünftige Erstellungen heruntergeladen werden, wann immer es möglich ist." #. type: cindex -#: guix-git/doc/guix.texi:3857 +#: guix-git/doc/guix.texi:3875 #, no-wrap msgid "substitutes, how to disable" msgstr "Substitute, wie man sie ausschaltet" #. type: Plain text -#: guix-git/doc/guix.texi:3863 +#: guix-git/doc/guix.texi:3881 msgid "The substitute mechanism can be disabled globally by running @code{guix-daemon} with @option{--no-substitutes} (@pxref{Invoking guix-daemon}). It can also be disabled temporarily by passing the @option{--no-substitutes} option to @command{guix package}, @command{guix build}, and other command-line tools." msgstr "Der Substitutsmechanismus kann global ausgeschaltet werden, indem Sie dem @code{guix-daemon} beim Starten die Befehlszeilenoption @option{--no-substitutes} übergeben (siehe @ref{Invoking guix-daemon}). Er kann auch temporär ausgeschaltet werden, indem Sie @option{--no-substitutes} an @command{guix package}, @command{guix build} und andere Befehlszeilenwerkzeuge übergeben." #. type: cindex -#: guix-git/doc/guix.texi:3867 +#: guix-git/doc/guix.texi:3885 #, no-wrap msgid "substitute servers, adding more" msgstr "Substitut-Server, weitere hinzufügen" #. type: Plain text -#: guix-git/doc/guix.texi:3874 +#: guix-git/doc/guix.texi:3892 msgid "Guix can look up and fetch substitutes from several servers. This is useful when you are using packages from additional channels for which the official server does not have substitutes but another server provides them. Another situation where this is useful is when you would prefer to download from your organization's substitute server, resorting to the official server only as a fallback or dismissing it altogether." msgstr "Guix kann auf unterschiedlichen Servern nach Substituten schauen und sie von dort laden. Das lohnt sich, wenn Sie Pakete von zusätzlichen Kanälen laden, für die es auf dem offiziellen Server keine Substitute gibt, auf einem anderen aber schon. Eine andere Situation, wo es sich anbietet, ist, wenn Sie Substitute lieber vom Substitutserver beziehen, der zu Ihrer Organisation gehört, und den offiziellen Server nur im Ausnahmefall einsetzen oder ganz weglassen möchten." #. type: Plain text -#: guix-git/doc/guix.texi:3879 +#: guix-git/doc/guix.texi:3897 msgid "You can give Guix a list of substitute server URLs and it will check them in the specified order. You also need to explicitly authorize the public keys of substitute servers to instruct Guix to accept the substitutes they sign." msgstr "Sie können Guix eine Liste von URLs der Substitutserver mitgeben, damit es sie in der angegebenen Reihenfolge anfragt. Außerdem müssen Sie die öffentlichen Schlüssel der Substitutserver ausdrücklich autorisieren, damit Guix von ihnen signierte Substitute annimmt." #. type: Plain text -#: guix-git/doc/guix.texi:3886 +#: guix-git/doc/guix.texi:3904 msgid "On Guix System, this is achieved by modifying the configuration of the @code{guix} service. Since the @code{guix} service is part of the default lists of services, @code{%base-services} and @code{%desktop-services}, you can use @code{modify-services} to change its configuration and add the URLs and substitute keys that you want (@pxref{Service Reference, @code{modify-services}})." msgstr "Auf Guix System ginge dies vonstatten, indem Sie die Konfiguration des @code{guix}-Dienstes modifizieren. Weil der @code{guix}-Dienst zu der Liste der vorgegebenen Dienste gehört, sowohl für @code{%base-services} als auch für @code{%desktop-services}, können Sie dessen Konfiguration mit @code{modify-services} ändern und dort die URLs und Substitutschlüssel eintragen, die Sie möchten (siehe @ref{Service Reference, @code{modify-services}})." #. type: Plain text -#: guix-git/doc/guix.texi:3892 +#: guix-git/doc/guix.texi:3910 msgid "As an example, suppose you want to fetch substitutes from @code{guix.example.org} and to authorize the signing key of that server, in addition to the default @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}}. The resulting operating system configuration will look something like:" msgstr "Ein Beispiel: Nehmen wir an, Sie möchten Substitute zusätzlich zu den vorgegebenen @code{@value{SUBSTITUTE-SERVER-1}} und @code{@value{SUBSTITUTE-SERVER-2}} auch von @code{guix.example.org} beziehen und den Signierschlüssel dieses Servers autorisieren. Die Betriebssystemkonfiguration, die sich damit ergibt, wird ungefähr so aussehen:" #. type: lisp -#: guix-git/doc/guix.texi:3909 +#: guix-git/doc/guix.texi:3927 #, no-wrap msgid "" "(operating-system\n" @@ -10230,12 +10312,12 @@ msgstr "" " %default-authorized-guix-keys)))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:3916 +#: guix-git/doc/guix.texi:3934 msgid "This assumes that the file @file{key.pub} contains the signing key of @code{guix.example.org}. With this change in place in your operating system configuration file (say @file{/etc/config.scm}), you can reconfigure and restart the @code{guix-daemon} service or reboot so the changes take effect:" msgstr "Dabei gehen wir davon aus, dass der Signierschlüssel von @code{guix.example.org} in der Datei @file{key.pub} steht. Sobald Sie diese Änderung an der Datei mit Ihrer Betriebssystemkonfiguration vorgenommen haben (etwa @file{/etc/config.scm}), können Sie rekonfigurieren und den @code{guix-daemon}-Dienst (oder den ganzen Rechner) neu starten, damit die Änderung in Kraft tritt:" #. type: example -#: guix-git/doc/guix.texi:3920 +#: guix-git/doc/guix.texi:3938 #, no-wrap msgid "" "$ sudo guix system reconfigure /etc/config.scm\n" @@ -10245,28 +10327,28 @@ msgstr "" "$ sudo herd restart guix-daemon\n" #. type: Plain text -#: guix-git/doc/guix.texi:3924 +#: guix-git/doc/guix.texi:3942 msgid "If you're running Guix on a ``foreign distro'', you would instead take the following steps to get substitutes from additional servers:" msgstr "Wenn Sie Guix auf einer „Fremddistribution“ laufen lassen, würden Sie stattdessen nach den folgenden Schritten vorgehen, um Substitute von zusätzlichen Servern zu bekommen:" #. type: enumerate -#: guix-git/doc/guix.texi:3933 +#: guix-git/doc/guix.texi:3951 msgid "Edit the service configuration file for @code{guix-daemon}; when using systemd, this is normally @file{/etc/systemd/system/guix-daemon.service}. Add the @option{--substitute-urls} option on the @command{guix-daemon} command line and list the URLs of interest (@pxref{daemon-substitute-urls, @code{guix-daemon --substitute-urls}}):" msgstr "Bearbeiten Sie die Konfigurationsdatei für den @code{guix-daemon}; wenn Sie systemd benutzen, wäre das normalerweise @file{/etc/systemd/system/guix-daemon.service}. Schreiben Sie in die Konfigurationsdatei die Option @option{--substitute-urls} zur @command{guix-daemon}-Befehlszeile dazu und listen Sie dabei die gewünschten URLs auf (siehe @ref{daemon-substitute-urls, @code{guix-daemon --substitute-urls}}):" #. type: example -#: guix-git/doc/guix.texi:3936 +#: guix-git/doc/guix.texi:3954 #, no-wrap msgid "@dots{} --substitute-urls='https://guix.example.org @value{SUBSTITUTE-URLS}'\n" msgstr "… --substitute-urls='https://guix.example.org @value{SUBSTITUTE-URLS}'\n" #. type: enumerate -#: guix-git/doc/guix.texi:3940 +#: guix-git/doc/guix.texi:3958 msgid "Restart the daemon. For systemd, it goes like this:" msgstr "Starten Sie den Daemon neu. Bei systemd geht das so:" #. type: example -#: guix-git/doc/guix.texi:3944 +#: guix-git/doc/guix.texi:3962 #, no-wrap msgid "" "systemctl daemon-reload\n" @@ -10276,651 +10358,651 @@ msgstr "" "systemctl restart guix-daemon.service\n" #. type: enumerate -#: guix-git/doc/guix.texi:3948 +#: guix-git/doc/guix.texi:3966 msgid "Authorize the key of the new server (@pxref{Invoking guix archive}):" msgstr "Autorisieren Sie den Schlüssel des neuen Servers (siehe @ref{Invoking guix archive}):" #. type: example -#: guix-git/doc/guix.texi:3951 +#: guix-git/doc/guix.texi:3969 #, no-wrap msgid "guix archive --authorize < key.pub\n" msgstr "guix archive --authorize < key.pub\n" #. type: enumerate -#: guix-git/doc/guix.texi:3955 +#: guix-git/doc/guix.texi:3973 msgid "Again this assumes @file{key.pub} contains the public key that @code{guix.example.org} uses to sign substitutes." msgstr "Wir nehmen auch hier an, dass @file{key.pub} den öffentlichen Schlüssel enthält, mit dem @code{guix.example.org} Substitute signiert." #. type: Plain text -#: guix-git/doc/guix.texi:3964 +#: guix-git/doc/guix.texi:3982 msgid "Now you're all set! Substitutes will be preferably taken from @code{https://guix.example.org}, using @code{@value{SUBSTITUTE-SERVER-1}} then @code{@value{SUBSTITUTE-SERVER-2}} as fallback options. Of course you can list as many substitute servers as you like, with the caveat that substitute lookup can be slowed down if too many servers need to be contacted." msgstr "Und wir sind fertig! Substitute werden bevorzugt von @code{https://guix.example.org} bezogen und @code{@value{SUBSTITUTE-SERVER-1}} und dann @code{@value{SUBSTITUTE-SERVER-2}} bleiben notfalls als Reserve. Natürlich können Sie so viele Substitutserver auflisten, wie Sie wollen, allerdings kann das Erfragen von Substituten etwas länger dauern, wenn zu viele Server kontaktiert werden müssen." #. type: Plain text -#: guix-git/doc/guix.texi:3968 +#: guix-git/doc/guix.texi:3986 msgid "Note that there are also situations where one may want to add the URL of a substitute server @emph{without} authorizing its key. @xref{Substitute Authentication}, to understand this fine point." msgstr "Aber bedenken Sie, es gibt auch Situationen, wo man nur die URL eines Substitutservers hinzufügen will, @emph{ohne} den Schlüssel zu autorisieren. Siehe @ref{Substitute Authentication}, um diese bestimmten Gründe zu verstehen." #. type: cindex -#: guix-git/doc/guix.texi:3972 +#: guix-git/doc/guix.texi:3990 #, no-wrap msgid "digital signatures" msgstr "digitale Signaturen" #. type: Plain text -#: guix-git/doc/guix.texi:3976 +#: guix-git/doc/guix.texi:3994 msgid "Guix detects and raises an error when attempting to use a substitute that has been tampered with. Likewise, it ignores substitutes that are not signed, or that are not signed by one of the keys listed in the ACL." msgstr "Guix erkennt, wenn ein verfälschtes Substitut benutzt würde, und meldet einen Fehler. Ebenso werden Substitute ignoriert, die nich signiert sind, oder nicht mit einem in der ACL aufgelisteten Schlüssel signiert sind." #. type: Plain text -#: guix-git/doc/guix.texi:3982 +#: guix-git/doc/guix.texi:4000 msgid "There is one exception though: if an unauthorized server provides substitutes that are @emph{bit-for-bit identical} to those provided by an authorized server, then the unauthorized server becomes eligible for downloads. For example, assume we have chosen two substitute servers with this option:" msgstr "Es gibt nur eine Ausnahme: Wenn ein unautorisierter Server Substitute anbietet, die @emph{Bit für Bit identisch} mit denen von einem autorisierten Server sind, können sie auch vom unautorisierten Server heruntergeladen werden. Zum Beispiel, angenommen wir haben zwei Substitutserver mit dieser Befehlszeilenoption ausgewählt:" #. type: example -#: guix-git/doc/guix.texi:3985 +#: guix-git/doc/guix.texi:4003 #, no-wrap msgid "--substitute-urls=\"https://a.example.org https://b.example.org\"\n" msgstr "--substitute-urls=\"https://a.example.org https://b.example.org\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:3996 +#: guix-git/doc/guix.texi:4014 msgid "If the ACL contains only the key for @samp{b.example.org}, and if @samp{a.example.org} happens to serve the @emph{exact same} substitutes, then Guix will download substitutes from @samp{a.example.org} because it comes first in the list and can be considered a mirror of @samp{b.example.org}. In practice, independent build machines usually produce the same binaries, thanks to bit-reproducible builds (see below)." msgstr "Wenn in der ACL nur der Schlüssel für @samp{b.example.org} aufgeführt wurde, aber @samp{a.example.org} @emph{exakt dieselben} Substitute anbietet, wird Guix auch Substitute von @samp{a.example.org} herunterladen, weil es in der Liste zuerst kommt und als Spiegelserver für @samp{b.example.org} aufgefasst werden kann. In der Praxis haben unabhängige Maschinen bei der Erstellung normalerweise dieselben Binärdateien als Ergebnis, dank bit-reproduzierbaren Erstellungen (siehe unten)." #. type: Plain text -#: guix-git/doc/guix.texi:4003 +#: guix-git/doc/guix.texi:4021 msgid "When using HTTPS, the server's X.509 certificate is @emph{not} validated (in other words, the server is not authenticated), contrary to what HTTPS clients such as Web browsers usually do. This is because Guix authenticates substitute information itself, as explained above, which is what we care about (whereas X.509 certificates are about authenticating bindings between domain names and public keys)." msgstr "Wenn Sie HTTPS benutzen, wird das X.509-Zertifikat des Servers @emph{nicht} validiert (mit anderen Worten, die Identität des Servers wird nicht authentifiziert), entgegen dem, was HTTPS-Clients wie Web-Browser normalerweise tun. Da Guix Substitutinformationen selbst überprüft, wie oben erklärt, wäre es unnötig (wohingegen mit X.509-Zertifikaten geprüft wird, ob ein Domain-Name zu öffentlichen Schlüsseln passt)." #. type: Plain text -#: guix-git/doc/guix.texi:4015 +#: guix-git/doc/guix.texi:4033 msgid "Substitutes are downloaded over HTTP or HTTPS@. The @env{http_proxy} and @env{https_proxy} environment variables can be set in the environment of @command{guix-daemon} and are honored for downloads of substitutes. Note that the value of those environment variables in the environment where @command{guix build}, @command{guix package}, and other client commands are run has @emph{absolutely no effect}." msgstr "Substitute werden über HTTP oder HTTPS heruntergeladen. Die Umgebungsvariablen @env{http_proxy} und @env{https_proxy} können in der Umgebung von @command{guix-daemon} definiert werden und wirken sich dann auf das Herunterladen von Substituten aus. Beachten Sie, dass der Wert dieser Variablen in der Umgebung, in der @command{guix build}, @command{guix package} und andere Client-Befehle ausgeführt werden, @emph{keine Rolle spielt}." #. type: Plain text -#: guix-git/doc/guix.texi:4024 +#: guix-git/doc/guix.texi:4042 msgid "Even when a substitute for a derivation is available, sometimes the substitution attempt will fail. This can happen for a variety of reasons: the substitute server might be offline, the substitute may recently have been deleted, the connection might have been interrupted, etc." msgstr "Selbst wenn ein Substitut für eine Ableitung verfügbar ist, schlägt die versuchte Substitution manchmal fehl. Das kann aus vielen Gründen geschehen: die Substitutserver könnten offline sein, das Substitut könnte kürzlich gelöscht worden sein, die Netzwerkverbindung könnte unterbrochen worden sein, usw." #. type: Plain text -#: guix-git/doc/guix.texi:4038 +#: guix-git/doc/guix.texi:4056 msgid "When substitutes are enabled and a substitute for a derivation is available, but the substitution attempt fails, Guix will attempt to build the derivation locally depending on whether or not @option{--fallback} was given (@pxref{fallback-option,, common build option @option{--fallback}}). Specifically, if @option{--fallback} was omitted, then no local build will be performed, and the derivation is considered to have failed. However, if @option{--fallback} was given, then Guix will attempt to build the derivation locally, and the success or failure of the derivation depends on the success or failure of the local build. Note that when substitutes are disabled or no substitute is available for the derivation in question, a local build will @emph{always} be performed, regardless of whether or not @option{--fallback} was given." msgstr "Wenn Substitute aktiviert sind und ein Substitut für eine Ableitung zwar verfügbar ist, aber die versuchte Substitution fehlschlägt, kann Guix versuchen, die Ableitung lokal zu erstellen, je nachdem, ob @option{--fallback} übergeben wurde (siehe @ref{fallback-option,, common build option @option{--fallback}}). Genauer gesagt, wird keine lokale Erstellung durchgeführt, solange kein @option{--fallback} angegeben wurde, und die Ableitung wird als Fehlschlag angesehen. Wenn @option{--fallback} übergeben wurde, wird Guix versuchen, die Ableitung lokal zu erstellen, und ob die Ableitung erfolgreich ist oder nicht, hängt davon ab, ob die lokale Erstellung erfolgreich ist oder nicht. Beachten Sie, dass, falls Substitute ausgeschaltet oder erst gar kein Substitut verfügbar ist, @emph{immer} eine lokale Erstellung durchgeführt wird, egal ob @option{--fallback} übergeben wurde oder nicht." #. type: Plain text -#: guix-git/doc/guix.texi:4043 +#: guix-git/doc/guix.texi:4061 msgid "To get an idea of how many substitutes are available right now, you can try running the @command{guix weather} command (@pxref{Invoking guix weather}). This command provides statistics on the substitutes provided by a server." msgstr "Um eine Vorstellung zu bekommen, wie viele Substitute gerade verfügbar sind, können Sie den Befehl @command{guix weather} benutzen (siehe @ref{Invoking guix weather}). Dieser Befehl zeigt Statistiken darüber an, wie es um die von einem Server verfügbaren Substitute steht." #. type: cindex -#: guix-git/doc/guix.texi:4047 +#: guix-git/doc/guix.texi:4065 #, no-wrap msgid "trust, of pre-built binaries" msgstr "Vertrauen, gegenüber vorerstellten Binärdateien" #. type: Plain text -#: guix-git/doc/guix.texi:4057 +#: guix-git/doc/guix.texi:4075 msgid "Today, each individual's control over their own computing is at the mercy of institutions, corporations, and groups with enough power and determination to subvert the computing infrastructure and exploit its weaknesses. While using substitutes can be convenient, we encourage users to also build on their own, or even run their own build farm, such that the project run substitute servers are less of an interesting target. One way to help is by publishing the software you build using @command{guix publish} so that others have one more choice of server to download substitutes from (@pxref{Invoking guix publish})." msgstr "Derzeit hängt die Kontrolle jedes Individuums über seine Rechner von Institutionen, Unternehmen und solchen Gruppierungen ab, die über genug Macht und Entschlusskraft verfügen, die Rechnerinfrastruktur zu sabotieren und ihre Schwachstellen auszunutzen. Auch wenn es bequem ist, Substitute zu benutzen, ermuntern wir Nutzer, auch selbst Erstellungen durchzuführen oder gar ihre eigene Erstellungsfarm zu betreiben, damit die vom Guix-Projekt betriebenen Substitutserver ein weniger interessantes Ziel werden. Eine Art, uns zu helfen, ist, die von Ihnen erstellte Software mit dem Befehl @command{guix publish} zu veröffentlichen, damit andere eine größere Auswahl haben, von welchem Server sie Substitute beziehen möchten (siehe @ref{Invoking guix publish})." #. type: Plain text -#: guix-git/doc/guix.texi:4069 +#: guix-git/doc/guix.texi:4087 msgid "Guix has the foundations to maximize build reproducibility (@pxref{Features}). In most cases, independent builds of a given package or derivation should yield bit-identical results. Thus, through a diverse set of independent package builds, we can strengthen the integrity of our systems. The @command{guix challenge} command aims to help users assess substitute servers, and to assist developers in finding out about non-deterministic package builds (@pxref{Invoking guix challenge}). Similarly, the @option{--check} option of @command{guix build} allows users to check whether previously-installed substitutes are genuine by rebuilding them locally (@pxref{build-check, @command{guix build --check}})." msgstr "Guix hat die richtigen Grundlagen, um die Reproduzierbarkeit von Erstellungen zu maximieren (siehe @ref{Features}). In den meisten Fällen sollten unabhängige Erstellungen eines bestimmten Pakets zu bitweise identischen Ergebnissen führen. Wir können also mit Hilfe einer vielschichtigen Menge an unabhängigen Paketerstellungen die Integrität unseres Systems besser gewährleisten. Der Befehl @command{guix challenge} hat das Ziel, Nutzern zu ermöglichen, Substitutserver zu beurteilen, und Entwickler dabei zu unterstützen, nichtdeterministische Paketerstellungen zu finden (siehe @ref{Invoking guix challenge}). Ebenso ermöglicht es die Befehlszeilenoption @option{--check} von @command{guix build}, dass Nutzer bereits installierte Substitute auf Unverfälschtheit zu prüfen, indem sie durch lokales Erstellen nachgebildet werden (siehe @ref{build-check, @command{guix build --check}})." #. type: Plain text -#: guix-git/doc/guix.texi:4073 +#: guix-git/doc/guix.texi:4091 msgid "In the future, we want Guix to have support to publish and retrieve binaries to/from other users, in a peer-to-peer fashion. If you would like to discuss this project, join us on @email{guix-devel@@gnu.org}." msgstr "In Zukunft wollen wir, dass Sie mit Guix Binärdateien von Netzwerkteilnehmer zu Netzwerkteilnehmer („peer-to-peer“) veröffentlichen und empfangen können. Wenn Sie mit uns dieses Projekt diskutieren möchten, kommen Sie auf unsere Mailing-Liste @email{guix-devel@@gnu.org}." #. type: cindex -#: guix-git/doc/guix.texi:4077 +#: guix-git/doc/guix.texi:4095 #, no-wrap msgid "multiple-output packages" msgstr "mehrere Ausgaben, bei Paketen" #. type: cindex -#: guix-git/doc/guix.texi:4078 +#: guix-git/doc/guix.texi:4096 #, no-wrap msgid "package outputs" msgstr "Paketausgaben" #. type: cindex -#: guix-git/doc/guix.texi:4079 +#: guix-git/doc/guix.texi:4097 #, no-wrap msgid "outputs" msgstr "Ausgaben" #. type: Plain text -#: guix-git/doc/guix.texi:4089 +#: guix-git/doc/guix.texi:4107 msgid "Often, packages defined in Guix have a single @dfn{output}---i.e., the source package leads to exactly one directory in the store. When running @command{guix install glibc}, one installs the default output of the GNU libc package; the default output is called @code{out}, but its name can be omitted as shown in this command. In this particular case, the default output of @code{glibc} contains all the C header files, shared libraries, static libraries, Info documentation, and other supporting files." msgstr "Oft haben in Guix definierte Pakete eine einzige @dfn{Ausgabe}@tie{}— d.h.@: aus dem Quellpaket entsteht genau ein Verzeichnis im Store. Wenn Sie @command{guix install glibc} ausführen, wird die Standard-Paketausgabe des GNU-libc-Pakets installiert; die Standardausgabe wird @code{out} genannt, aber ihr Name kann weggelassen werden, wie Sie am obigen Befehl sehen. In diesem speziellen Fall enthält die Standard-Paketausgabe von @code{glibc} alle C-Headerdateien, gemeinsamen Bibliotheken („Shared Libraries“), statischen Bibliotheken („Static Libraries“), Dokumentation für Info sowie andere zusätzliche Dateien." #. type: Plain text -#: guix-git/doc/guix.texi:4097 +#: guix-git/doc/guix.texi:4115 msgid "Sometimes it is more appropriate to separate the various types of files produced from a single source package into separate outputs. For instance, the GLib C library (used by GTK+ and related packages) installs more than 20 MiB of reference documentation as HTML pages. To save space for users who do not need it, the documentation goes to a separate output, called @code{doc}. To install the main GLib output, which contains everything but the documentation, one would run:" msgstr "Manchmal ist es besser, die verschiedenen Arten von Dateien, die aus einem einzelnen Quellpaket hervorgehen, in getrennte Ausgaben zu unterteilen. Zum Beispiel installiert die GLib-C-Bibliothek (die von GTK und damit zusammenhängenden Paketen benutzt wird) mehr als 20 MiB an HTML-Seiten mit Referenzdokumentation. Um den Nutzern, die das nicht brauchen, Platz zu sparen, wird die Dokumentation in einer separaten Ausgabe abgelegt, genannt @code{doc}. Um also die Hauptausgabe von GLib zu installieren, zu der alles außer der Dokumentation gehört, ist der Befehl:" #. type: example -#: guix-git/doc/guix.texi:4100 +#: guix-git/doc/guix.texi:4118 #, no-wrap msgid "guix install glib\n" msgstr "guix install glib\n" #. type: item -#: guix-git/doc/guix.texi:4102 guix-git/doc/guix.texi:36368 -#: guix-git/doc/guix.texi:36425 +#: guix-git/doc/guix.texi:4120 guix-git/doc/guix.texi:36858 +#: guix-git/doc/guix.texi:36915 #, no-wrap msgid "documentation" msgstr "documentation" #. type: Plain text -#: guix-git/doc/guix.texi:4104 +#: guix-git/doc/guix.texi:4122 msgid "The command to install its documentation is:" msgstr "Der Befehl, um die Dokumentation zu installieren, ist:" #. type: example -#: guix-git/doc/guix.texi:4107 +#: guix-git/doc/guix.texi:4125 #, no-wrap msgid "guix install glib:doc\n" msgstr "guix install glib:doc\n" #. type: Plain text -#: guix-git/doc/guix.texi:4118 +#: guix-git/doc/guix.texi:4136 msgid "Some packages install programs with different ``dependency footprints''. For instance, the WordNet package installs both command-line tools and graphical user interfaces (GUIs). The former depend solely on the C library, whereas the latter depend on Tcl/Tk and the underlying X libraries. In this case, we leave the command-line tools in the default output, whereas the GUIs are in a separate output. This allows users who do not need the GUIs to save space. The @command{guix size} command can help find out about such situations (@pxref{Invoking guix size}). @command{guix graph} can also be helpful (@pxref{Invoking guix graph})." msgstr "Manche Pakete installieren Programme mit unterschiedlich großem „Abhängigkeiten-Fußabdruck“. Zum Beispiel installiert das Paket WordNet sowohl Befehlszeilenwerkzeuge als auch grafische Benutzerschnittstellen (GUIs). Erstere hängen nur von der C-Bibliothek ab, während Letztere auch von Tcl/Tk und den zu Grunde liegenden X-Bibliotheken abhängen. Jedenfalls belassen wir deshalb die Befehlszeilenwerkzeuge in der Standard-Paketausgabe, während sich die GUIs in einer separaten Ausgabe befinden. So können Benutzer, die die GUIs nicht brauchen, Platz sparen. Der Befehl @command{guix size} kann dabei helfen, solche Situationen zu erkennen (siehe @ref{Invoking guix size}). @command{guix graph} kann auch helfen (siehe @ref{Invoking guix graph})." #. type: Plain text -#: guix-git/doc/guix.texi:4126 +#: guix-git/doc/guix.texi:4144 msgid "There are several such multiple-output packages in the GNU distribution. Other conventional output names include @code{lib} for libraries and possibly header files, @code{bin} for stand-alone programs, and @code{debug} for debugging information (@pxref{Installing Debugging Files}). The outputs of a packages are listed in the third column of the output of @command{guix package --list-available} (@pxref{Invoking guix package})." msgstr "In der GNU-Distribution gibt es viele solche Pakete mit mehreren Ausgaben. Andere Konventionen für Ausgabenamen sind zum Beispiel @code{lib} für Bibliotheken und eventuell auch ihre Header-Dateien,, @code{bin} für eigenständige Programme und @code{debug} für Informationen zur Fehlerbehandlung (siehe @ref{Installing Debugging Files}). Die Ausgaben eines Pakets stehen in der dritten Spalte der Anzeige von @command{guix package --list-available} (siehe @ref{Invoking guix package})." #. type: section -#: guix-git/doc/guix.texi:4129 +#: guix-git/doc/guix.texi:4147 #, no-wrap msgid "Invoking @command{guix gc}" msgstr "@command{guix gc} aufrufen" #. type: cindex -#: guix-git/doc/guix.texi:4131 +#: guix-git/doc/guix.texi:4149 #, no-wrap msgid "garbage collector" msgstr "Müllsammler" #. type: cindex -#: guix-git/doc/guix.texi:4132 +#: guix-git/doc/guix.texi:4150 #, no-wrap msgid "disk space" msgstr "Plattenspeicher" #. type: Plain text -#: guix-git/doc/guix.texi:4138 +#: guix-git/doc/guix.texi:4156 msgid "Packages that are installed, but not used, may be @dfn{garbage-collected}. The @command{guix gc} command allows users to explicitly run the garbage collector to reclaim space from the @file{/gnu/store} directory. It is the @emph{only} way to remove files from @file{/gnu/store}---removing files or directories manually may break it beyond repair!" msgstr "Pakete, die zwar installiert sind, aber nicht benutzt werden, können vom @dfn{Müllsammler} entfernt werden. Mit dem Befehl @command{guix gc} können Benutzer den Müllsammler ausdrücklich aufrufen, um Speicher im Verzeichnis @file{/gnu/store} freizugeben. Dies ist der @emph{einzige} Weg, Dateien aus @file{/gnu/store} zu entfernen@tie{}— das manuelle Entfernen von Dateien kann den Store irreparabel beschädigen!" #. type: Plain text -#: guix-git/doc/guix.texi:4149 +#: guix-git/doc/guix.texi:4167 msgid "The garbage collector has a set of known @dfn{roots}: any file under @file{/gnu/store} reachable from a root is considered @dfn{live} and cannot be deleted; any other file is considered @dfn{dead} and may be deleted. The set of garbage collector roots (``GC roots'' for short) includes default user profiles; by default, the symlinks under @file{/var/guix/gcroots} represent these GC roots. New GC roots can be added with @command{guix build --root}, for example (@pxref{Invoking guix build}). The @command{guix gc --list-roots} command lists them." msgstr "Der Müllsammler kennt eine Reihe von @dfn{Wurzeln}: Jede Datei in @file{/gnu/store}, die von einer Wurzel aus erreichbar ist, gilt als @dfn{lebendig} und kann nicht entfernt werden; jede andere Datei gilt als @dfn{tot} und ist ein Kandidat, gelöscht zu werden. Die Menge der Müllsammlerwurzeln (kurz auch „GC-Wurzeln“, von englisch „Garbage Collector“) umfasst Standard-Benutzerprofile; standardmäßig werden diese Müllsammlerwurzeln durch symbolische Verknüpfungen in @file{/var/guix/gcroots} dargestellt. Neue Müllsammlerwurzeln können zum Beispiel mit @command{guix build --root} festgelegt werden (siehe @ref{Invoking guix build}). Der Befehl @command{guix gc --list-roots} listet sie auf." #. type: Plain text -#: guix-git/doc/guix.texi:4155 +#: guix-git/doc/guix.texi:4173 msgid "Prior to running @code{guix gc --collect-garbage} to make space, it is often useful to remove old generations from user profiles; that way, old package builds referenced by those generations can be reclaimed. This is achieved by running @code{guix package --delete-generations} (@pxref{Invoking guix package})." msgstr "Bevor Sie mit @code{guix gc --collect-garbage} Speicher freimachen, wollen Sie vielleicht alte Generationen von Benutzerprofilen löschen, damit alte Paketerstellungen von diesen Generationen entfernt werden können. Führen Sie dazu @code{guix package --delete-generations} aus (siehe @ref{Invoking guix package})." #. type: Plain text -#: guix-git/doc/guix.texi:4159 +#: guix-git/doc/guix.texi:4177 msgid "Our recommendation is to run a garbage collection periodically, or when you are short on disk space. For instance, to guarantee that at least 5@tie{}GB are available on your disk, simply run:" msgstr "Unsere Empfehlung ist, dass Sie den Müllsammler regelmäßig laufen lassen und wenn Sie wenig freien Speicherplatz zur Verfügung haben. Um zum Beispiel sicherzustellen, dass Sie mindestens 5@tie{}GB auf Ihrer Platte zur Verfügung haben, benutzen Sie einfach:" #. type: example -#: guix-git/doc/guix.texi:4162 +#: guix-git/doc/guix.texi:4180 #, no-wrap msgid "guix gc -F 5G\n" msgstr "guix gc -F 5G\n" #. type: Plain text -#: guix-git/doc/guix.texi:4171 +#: guix-git/doc/guix.texi:4189 msgid "It is perfectly safe to run as a non-interactive periodic job (@pxref{Scheduled Job Execution}, for how to set up such a job). Running @command{guix gc} with no arguments will collect as much garbage as it can, but that is often inconvenient: you may find yourself having to rebuild or re-download software that is ``dead'' from the GC viewpoint but that is necessary to build other pieces of software---e.g., the compiler tool chain." msgstr "Es ist völlig sicher, dafür eine nicht interaktive, regelmäßige Auftragsausführung vorzugeben (siehe @ref{Scheduled Job Execution} für eine Erklärung, wie man das tun kann). @command{guix gc} ohne Befehlszeilenargumente auszuführen, lässt so viel Müll wie möglich sammeln, aber das ist oft nicht, was man will, denn so muss man unter Umständen Software erneut erstellen oder erneut herunterladen, weil der Müllsammler sie als „tot“ ansieht, sie aber zur Erstellung anderer Software wieder gebraucht wird@tie{}— das trifft zum Beispiel auf die Compiler-Toolchain zu." #. type: Plain text -#: guix-git/doc/guix.texi:4177 +#: guix-git/doc/guix.texi:4195 msgid "The @command{guix gc} command has three modes of operation: it can be used to garbage-collect any dead files (the default), to delete specific files (the @option{--delete} option), to print garbage-collector information, or for more advanced queries. The garbage collection options are as follows:" msgstr "Der Befehl @command{guix gc} hat drei Arbeitsmodi: Er kann benutzt werden, um als Müllsammler tote Dateien zu entfernen (das Standardverhalten), um ganz bestimmte, angegebene Datein zu löschen (mit der Befehlszeilenoption @option{--delete}), um Müllsammlerinformationen auszugeben oder fortgeschrittenere Anfragen zu verarbeiten. Die Müllsammler-Befehlszeilenoptionen sind wie folgt:" #. type: item -#: guix-git/doc/guix.texi:4179 +#: guix-git/doc/guix.texi:4197 #, no-wrap msgid "--collect-garbage[=@var{min}]" msgstr "--collect-garbage[=@var{Minimum}]" #. type: itemx -#: guix-git/doc/guix.texi:4180 +#: guix-git/doc/guix.texi:4198 #, no-wrap msgid "-C [@var{min}]" msgstr "-C [@var{Minimum}]" #. type: table -#: guix-git/doc/guix.texi:4184 +#: guix-git/doc/guix.texi:4202 msgid "Collect garbage---i.e., unreachable @file{/gnu/store} files and sub-directories. This is the default operation when no option is specified." msgstr "Lässt Müll sammeln@tie{}— z.B.@: nicht erreichbare Dateien in @file{/gnu/store} und seinen Unterverzeichnissen. Wird keine andere Befehlszeilenoption angegeben, wird standardmäßig diese durchgeführt." #. type: table -#: guix-git/doc/guix.texi:4189 +#: guix-git/doc/guix.texi:4207 msgid "When @var{min} is given, stop once @var{min} bytes have been collected. @var{min} may be a number of bytes, or it may include a unit as a suffix, such as @code{MiB} for mebibytes and @code{GB} for gigabytes (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." msgstr "Wenn ein @var{Minimum} angegeben wurde, hört der Müllsammler auf, sobald @var{Minimum} Bytes gesammelt wurden. Das @var{Minimum} kann die Anzahl der Bytes bezeichnen oder mit einer Einheit als Suffix versehen sein, wie etwa @code{MiB} für Mebibytes und @code{GB} für Gigabytes (siehe @ref{Block size, Größenangaben,, coreutils, GNU Coreutils})." #. type: table -#: guix-git/doc/guix.texi:4191 +#: guix-git/doc/guix.texi:4209 msgid "When @var{min} is omitted, collect all the garbage." msgstr "Wird kein @var{Minimum} angegeben, sammelt der Müllsammler allen Müll." #. type: item -#: guix-git/doc/guix.texi:4192 +#: guix-git/doc/guix.texi:4210 #, no-wrap msgid "--free-space=@var{free}" msgstr "--free-space=@var{Menge}" #. type: itemx -#: guix-git/doc/guix.texi:4193 +#: guix-git/doc/guix.texi:4211 #, no-wrap msgid "-F @var{free}" msgstr "-F @var{Menge}" #. type: table -#: guix-git/doc/guix.texi:4197 +#: guix-git/doc/guix.texi:4215 msgid "Collect garbage until @var{free} space is available under @file{/gnu/store}, if possible; @var{free} denotes storage space, such as @code{500MiB}, as described above." msgstr "Sammelt Müll, bis die angegebene @var{Menge} an freiem Speicher in @file{/gnu/store} zur Verfügung steht, falls möglich; die @var{Menge} ist eine Speichergröße wie @code{500MiB}, wie oben beschrieben." #. type: table -#: guix-git/doc/guix.texi:4200 +#: guix-git/doc/guix.texi:4218 msgid "When @var{free} or more is already available in @file{/gnu/store}, do nothing and exit immediately." msgstr "Wenn die angegebene @var{Menge} oder mehr bereits in @file{/gnu/store} frei verfügbar ist, passiert nichts." #. type: item -#: guix-git/doc/guix.texi:4201 +#: guix-git/doc/guix.texi:4219 #, no-wrap msgid "--delete-generations[=@var{duration}]" msgstr "--delete-generations[=@var{Dauer}]" #. type: itemx -#: guix-git/doc/guix.texi:4202 +#: guix-git/doc/guix.texi:4220 #, no-wrap msgid "-d [@var{duration}]" msgstr "-d [@var{Dauer}]" #. type: table -#: guix-git/doc/guix.texi:4206 +#: guix-git/doc/guix.texi:4224 msgid "Before starting the garbage collection process, delete all the generations older than @var{duration}, for all the user profiles; when run as root, this applies to all the profiles @emph{of all the users}." msgstr "Bevor der Müllsammelvorgang beginnt, werden hiermit alle Generationen von allen Benutzerprofilen gelöscht, die älter sind als die angegebene @var{Dauer}; wird es als Administratornutzer „root“ ausgeführt, geschieht dies mit den Profilen @emph{von allen Benutzern}." #. type: table -#: guix-git/doc/guix.texi:4210 +#: guix-git/doc/guix.texi:4228 msgid "For example, this command deletes all the generations of all your profiles that are older than 2 months (except generations that are current), and then proceeds to free space until at least 10 GiB are available:" msgstr "Zum Beispiel löscht der folgende Befehl alle Generationen Ihrer Profile, die älter als zwei Monate sind (ausgenommen die momentanen Generationen), und schmeißt dann den Müllsammler an, um Platz freizuräumen, bis mindestens 10 GiB verfügbar sind:" #. type: example -#: guix-git/doc/guix.texi:4213 +#: guix-git/doc/guix.texi:4231 #, no-wrap msgid "guix gc -d 2m -F 10G\n" msgstr "guix gc -d 2m -F 10G\n" #. type: item -#: guix-git/doc/guix.texi:4215 +#: guix-git/doc/guix.texi:4233 #, no-wrap msgid "--delete" msgstr "--delete" #. type: itemx -#: guix-git/doc/guix.texi:4216 guix-git/doc/guix.texi:5740 +#: guix-git/doc/guix.texi:4234 guix-git/doc/guix.texi:5758 #, no-wrap msgid "-D" msgstr "-D" #. type: table -#: guix-git/doc/guix.texi:4220 +#: guix-git/doc/guix.texi:4238 msgid "Attempt to delete all the store files and directories specified as arguments. This fails if some of the files are not in the store, or if they are still live." msgstr "Versucht, alle als Argumente angegebenen Dateien oder Verzeichnisse im Store zu löschen. Dies schlägt fehl, wenn manche der Dateien oder Verzeichnisse nicht im Store oder noch immer lebendig sind." #. type: item -#: guix-git/doc/guix.texi:4221 +#: guix-git/doc/guix.texi:4239 #, no-wrap msgid "--list-failures" msgstr "--list-failures" #. type: table -#: guix-git/doc/guix.texi:4223 +#: guix-git/doc/guix.texi:4241 msgid "List store items corresponding to cached build failures." msgstr "Store-Objekte auflisten, die zwischengespeicherten Erstellungsfehlern entsprechen." #. type: table -#: guix-git/doc/guix.texi:4227 +#: guix-git/doc/guix.texi:4245 msgid "This prints nothing unless the daemon was started with @option{--cache-failures} (@pxref{Invoking guix-daemon, @option{--cache-failures}})." msgstr "Hierbei wird nichts ausgegeben, sofern der Daemon nicht mit @option{--cache-failures} gestartet wurde (siehe @ref{Invoking guix-daemon, @option{--cache-failures}})." #. type: item -#: guix-git/doc/guix.texi:4228 +#: guix-git/doc/guix.texi:4246 #, no-wrap msgid "--list-roots" msgstr "--list-roots" #. type: table -#: guix-git/doc/guix.texi:4231 +#: guix-git/doc/guix.texi:4249 msgid "List the GC roots owned by the user; when run as root, list @emph{all} the GC roots." msgstr "Die Müllsammlerwurzeln auflisten, die dem Nutzer gehören. Wird der Befehl als Administratornutzer ausgeführt, werden @emph{alle} Müllsammlerwurzeln aufgelistet." #. type: item -#: guix-git/doc/guix.texi:4232 +#: guix-git/doc/guix.texi:4250 #, no-wrap msgid "--list-busy" msgstr "--list-busy" #. type: table -#: guix-git/doc/guix.texi:4235 +#: guix-git/doc/guix.texi:4253 msgid "List store items in use by currently running processes. These store items are effectively considered GC roots: they cannot be deleted." msgstr "Solche Store-Objekte auflisten, die von aktuell laufenden Prozessen benutzt werden. Diese Store-Objekte werden praktisch wie Müllsammlerwurzeln behandelt; sie können nicht gelöscht werden." #. type: item -#: guix-git/doc/guix.texi:4236 +#: guix-git/doc/guix.texi:4254 #, no-wrap msgid "--clear-failures" msgstr "--clear-failures" #. type: table -#: guix-git/doc/guix.texi:4238 +#: guix-git/doc/guix.texi:4256 msgid "Remove the specified store items from the failed-build cache." msgstr "Die angegebenen Store-Objekte aus dem Zwischenspeicher für fehlgeschlagene Erstellungen entfernen." #. type: table -#: guix-git/doc/guix.texi:4241 +#: guix-git/doc/guix.texi:4259 msgid "Again, this option only makes sense when the daemon is started with @option{--cache-failures}. Otherwise, it does nothing." msgstr "Auch diese Option macht nur Sinn, wenn der Daemon mit @option{--cache-failures} gestartet wurde. Andernfalls passiert nichts." #. type: item -#: guix-git/doc/guix.texi:4242 +#: guix-git/doc/guix.texi:4260 #, no-wrap msgid "--list-dead" msgstr "--list-dead" #. type: table -#: guix-git/doc/guix.texi:4245 +#: guix-git/doc/guix.texi:4263 msgid "Show the list of dead files and directories still present in the store---i.e., files and directories no longer reachable from any root." msgstr "Zeigt die Liste toter Dateien und Verzeichnisse an, die sich noch im Store befinden@tie{}— das heißt, Dateien, die von keiner Wurzel mehr erreichbar sind." #. type: item -#: guix-git/doc/guix.texi:4246 +#: guix-git/doc/guix.texi:4264 #, no-wrap msgid "--list-live" msgstr "--list-live" #. type: table -#: guix-git/doc/guix.texi:4248 +#: guix-git/doc/guix.texi:4266 msgid "Show the list of live store files and directories." msgstr "Zeige die Liste lebendiger Store-Dateien und -Verzeichnisse." #. type: Plain text -#: guix-git/doc/guix.texi:4252 +#: guix-git/doc/guix.texi:4270 msgid "In addition, the references among existing store files can be queried:" msgstr "Außerdem können Referenzen unter bestehenden Store-Dateien gefunden werden:" #. type: item -#: guix-git/doc/guix.texi:4255 +#: guix-git/doc/guix.texi:4273 #, no-wrap msgid "--references" msgstr "--references" #. type: itemx -#: guix-git/doc/guix.texi:4256 +#: guix-git/doc/guix.texi:4274 #, no-wrap msgid "--referrers" msgstr "--referrers" #. type: cindex -#: guix-git/doc/guix.texi:4257 guix-git/doc/guix.texi:13205 +#: guix-git/doc/guix.texi:4275 guix-git/doc/guix.texi:13562 #, no-wrap msgid "package dependencies" msgstr "Paketabhängigkeiten" #. type: table -#: guix-git/doc/guix.texi:4260 +#: guix-git/doc/guix.texi:4278 msgid "List the references (respectively, the referrers) of store files given as arguments." msgstr "Listet die referenzierten bzw. sie referenzierenden Objekte der angegebenen Store-Dateien auf." #. type: item -#: guix-git/doc/guix.texi:4261 +#: guix-git/doc/guix.texi:4279 #, no-wrap msgid "--requisites" msgstr "--requisites" #. type: itemx -#: guix-git/doc/guix.texi:4262 guix-git/doc/guix.texi:6501 +#: guix-git/doc/guix.texi:4280 guix-git/doc/guix.texi:6544 #, no-wrap msgid "-R" msgstr "-R" #. type: item -#: guix-git/doc/guix.texi:4263 guix-git/doc/guix.texi:13061 -#: guix-git/doc/guix.texi:13089 guix-git/doc/guix.texi:13170 +#: guix-git/doc/guix.texi:4281 guix-git/doc/guix.texi:13418 +#: guix-git/doc/guix.texi:13446 guix-git/doc/guix.texi:13527 #, no-wrap msgid "closure" msgstr "Abschluss" #. type: table -#: guix-git/doc/guix.texi:4268 +#: guix-git/doc/guix.texi:4286 msgid "List the requisites of the store files passed as arguments. Requisites include the store files themselves, their references, and the references of these, recursively. In other words, the returned list is the @dfn{transitive closure} of the store files." msgstr "Listet alle Voraussetzungen der als Argumente übergebenen Store-Dateien auf. Voraussetzungen sind die Store-Dateien selbst, ihre Referenzen sowie die Referenzen davon, rekursiv. Mit anderen Worten, die zurückgelieferte Liste ist der @dfn{transitive Abschluss} dieser Store-Dateien." #. type: table -#: guix-git/doc/guix.texi:4272 +#: guix-git/doc/guix.texi:4290 msgid "@xref{Invoking guix size}, for a tool to profile the size of the closure of an element. @xref{Invoking guix graph}, for a tool to visualize the graph of references." msgstr "Der Abschnitt @ref{Invoking guix size} erklärt ein Werkzeug, um den Speicherbedarf des Abschlusses eines Elements zu ermitteln. Siehe @ref{Invoking guix graph} für ein Werkzeug, um den Referenzgraphen zu veranschaulichen." #. type: item -#: guix-git/doc/guix.texi:4273 +#: guix-git/doc/guix.texi:4291 #, no-wrap msgid "--derivers" msgstr "--derivers" #. type: item -#: guix-git/doc/guix.texi:4274 guix-git/doc/guix.texi:6815 -#: guix-git/doc/guix.texi:12917 guix-git/doc/guix.texi:13314 +#: guix-git/doc/guix.texi:4292 guix-git/doc/guix.texi:6858 +#: guix-git/doc/guix.texi:13274 guix-git/doc/guix.texi:13671 #, no-wrap msgid "derivation" msgstr "derivation" #. type: table -#: guix-git/doc/guix.texi:4277 +#: guix-git/doc/guix.texi:4295 msgid "Return the derivation(s) leading to the given store items (@pxref{Derivations})." msgstr "Liefert die Ableitung(en), die zu den angegebenen Store-Objekten führen (siehe @ref{Derivations})." #. type: table -#: guix-git/doc/guix.texi:4279 +#: guix-git/doc/guix.texi:4297 msgid "For example, this command:" msgstr "Zum Beispiel liefert dieser Befehl:" #. type: example -#: guix-git/doc/guix.texi:4282 +#: guix-git/doc/guix.texi:4300 #, no-wrap msgid "guix gc --derivers $(guix package -I ^emacs$ | cut -f4)\n" msgstr "guix gc --derivers $(guix package -I ^emacs$ | cut -f4)\n" #. type: table -#: guix-git/doc/guix.texi:4287 +#: guix-git/doc/guix.texi:4305 msgid "returns the @file{.drv} file(s) leading to the @code{emacs} package installed in your profile." msgstr "die @file{.drv}-Datei(en), die zum in Ihrem Profil installierten @code{emacs}-Paket führen." #. type: table -#: guix-git/doc/guix.texi:4291 +#: guix-git/doc/guix.texi:4309 msgid "Note that there may be zero matching @file{.drv} files, for instance because these files have been garbage-collected. There can also be more than one matching @file{.drv} due to fixed-output derivations." msgstr "Beachten Sie, dass es auch sein kann, dass keine passenden @file{.drv}-Dateien existieren, zum Beispiel wenn diese Dateien bereits dem Müllsammler zum Opfer gefallen sind. Es kann auch passieren, dass es mehr als eine passende @file{.drv} gibt, bei Ableitungen mit fester Ausgabe." #. type: Plain text -#: guix-git/doc/guix.texi:4295 +#: guix-git/doc/guix.texi:4313 msgid "Lastly, the following options allow you to check the integrity of the store and to control disk usage." msgstr "Zuletzt können Sie mit folgenden Befehlszeilenoptionen die Integrität des Stores prüfen und den Plattenspeicherverbrauch im Zaum halten." #. type: item -#: guix-git/doc/guix.texi:4298 +#: guix-git/doc/guix.texi:4316 #, no-wrap msgid "--verify[=@var{options}]" msgstr "--verify[=@var{Optionen}]" #. type: cindex -#: guix-git/doc/guix.texi:4299 +#: guix-git/doc/guix.texi:4317 #, no-wrap msgid "integrity, of the store" msgstr "Integrität, des Stores" #. type: cindex -#: guix-git/doc/guix.texi:4300 +#: guix-git/doc/guix.texi:4318 #, no-wrap msgid "integrity checking" msgstr "Integritätsprüfung" #. type: table -#: guix-git/doc/guix.texi:4302 +#: guix-git/doc/guix.texi:4320 msgid "Verify the integrity of the store." msgstr "Die Integrität des Stores verifizieren" #. type: table -#: guix-git/doc/guix.texi:4305 +#: guix-git/doc/guix.texi:4323 msgid "By default, make sure that all the store items marked as valid in the database of the daemon actually exist in @file{/gnu/store}." msgstr "Standardmäßig wird sichergestellt, dass alle Store-Objekte, die in der Datenbank des Daemons als gültig markiert wurden, auch tatsächlich in @file{/gnu/store} existieren." #. type: table -#: guix-git/doc/guix.texi:4308 +#: guix-git/doc/guix.texi:4326 msgid "When provided, @var{options} must be a comma-separated list containing one or more of @code{contents} and @code{repair}." msgstr "Wenn angegeben, müssen die @var{Optionen} eine kommagetrennte Liste aus mindestens einem der Worte @code{contents} und @code{repair} sein." #. type: table -#: guix-git/doc/guix.texi:4314 +#: guix-git/doc/guix.texi:4332 msgid "When passing @option{--verify=contents}, the daemon computes the content hash of each store item and compares it against its hash in the database. Hash mismatches are reported as data corruptions. Because it traverses @emph{all the files in the store}, this command can take a long time, especially on systems with a slow disk drive." msgstr "Wenn Sie @option{--verify=contents} übergeben, berechnet der Daemon den Hash des Inhalts jedes Store-Objekts und vergleicht ihn mit dem Hash in der Datenbank. Sind die Hashes ungleich, wird eine Datenbeschädigung gemeldet. Weil dabei @emph{alle Dateien im Store} durchlaufen werden, kann der Befehl viel Zeit brauchen, besonders auf Systemen mit langsamer Platte." #. type: cindex -#: guix-git/doc/guix.texi:4315 +#: guix-git/doc/guix.texi:4333 #, no-wrap msgid "repairing the store" msgstr "Store, reparieren" #. type: cindex -#: guix-git/doc/guix.texi:4316 guix-git/doc/guix.texi:11564 +#: guix-git/doc/guix.texi:4334 guix-git/doc/guix.texi:11878 #, no-wrap msgid "corruption, recovering from" msgstr "Datenbeschädigung, Behebung" #. type: table -#: guix-git/doc/guix.texi:4324 +#: guix-git/doc/guix.texi:4342 msgid "Using @option{--verify=repair} or @option{--verify=contents,repair} causes the daemon to try to repair corrupt store items by fetching substitutes for them (@pxref{Substitutes}). Because repairing is not atomic, and thus potentially dangerous, it is available only to the system administrator. A lightweight alternative, when you know exactly which items in the store are corrupt, is @command{guix build --repair} (@pxref{Invoking guix build})." msgstr "Mit @option{--verify=repair} oder @option{--verify=contents,repair} versucht der Daemon, beschädigte Store-Objekte zu reparieren, indem er Substitute für selbige herunterlädt (siehe @ref{Substitutes}). Weil die Reparatur nicht atomar und daher womöglich riskant ist, kann nur der Systemadministrator den Befehl benutzen. Eine weniger aufwendige Alternative, wenn Sie wissen, welches Objekt beschädigt ist, ist, @command{guix build --repair} zu benutzen (siehe @ref{Invoking guix build})." #. type: item -#: guix-git/doc/guix.texi:4325 +#: guix-git/doc/guix.texi:4343 #, no-wrap msgid "--optimize" msgstr "--optimize" #. type: table -#: guix-git/doc/guix.texi:4329 +#: guix-git/doc/guix.texi:4347 msgid "Optimize the store by hard-linking identical files---this is @dfn{deduplication}." msgstr "Den Store durch Nutzung harter Verknüpfungen für identische Dateien optimieren@tie{}— mit anderen Worten wird der Store @dfn{dedupliziert}." #. type: table -#: guix-git/doc/guix.texi:4335 +#: guix-git/doc/guix.texi:4353 msgid "The daemon performs deduplication after each successful build or archive import, unless it was started with @option{--disable-deduplication} (@pxref{Invoking guix-daemon, @option{--disable-deduplication}}). Thus, this option is primarily useful when the daemon was running with @option{--disable-deduplication}." msgstr "Der Daemon führt Deduplizierung automatisch nach jeder erfolgreichen Erstellung und jedem Importieren eines Archivs durch, sofern er nicht mit @option{--disable-deduplication} (siehe @ref{Invoking guix-daemon, @option{--disable-deduplication}}) gestartet wurde. Diese Befehlszeilenoption brauchen Sie also in erster Linie dann, wenn der Daemon zuvor mit @option{--disable-deduplication} gestartet worden ist." #. type: section -#: guix-git/doc/guix.texi:4339 +#: guix-git/doc/guix.texi:4357 #, no-wrap msgid "Invoking @command{guix pull}" msgstr "@command{guix pull} aufrufen" #. type: cindex -#: guix-git/doc/guix.texi:4341 +#: guix-git/doc/guix.texi:4359 #, no-wrap msgid "upgrading Guix" msgstr "Aktualisieren von Guix" #. type: cindex -#: guix-git/doc/guix.texi:4342 +#: guix-git/doc/guix.texi:4360 #, no-wrap msgid "updating Guix" msgstr "Updaten von Guix" #. type: command{#1} -#: guix-git/doc/guix.texi:4343 +#: guix-git/doc/guix.texi:4361 #, no-wrap msgid "guix pull" msgstr "guix pull" #. type: cindex -#: guix-git/doc/guix.texi:4344 +#: guix-git/doc/guix.texi:4362 #, no-wrap msgid "pull" msgstr "pull" #. type: cindex -#: guix-git/doc/guix.texi:4345 +#: guix-git/doc/guix.texi:4363 #, no-wrap msgid "security, @command{guix pull}" msgstr "Sicherheit, bei @command{guix pull}" #. type: cindex -#: guix-git/doc/guix.texi:4346 +#: guix-git/doc/guix.texi:4364 #, no-wrap msgid "authenticity, of code obtained with @command{guix pull}" msgstr "Authentizität, bei mit @command{guix pull} bezogenem Code" #. type: Plain text -#: guix-git/doc/guix.texi:4356 +#: guix-git/doc/guix.texi:4374 msgid "Packages are installed or upgraded to the latest version available in the distribution currently available on your local machine. To update that distribution, along with the Guix tools, you must run @command{guix pull}: the command downloads the latest Guix source code and package descriptions, and deploys it. Source code is downloaded from a @uref{https://git-scm.com, Git} repository, by default the official GNU@tie{}Guix repository, though this can be customized. @command{guix pull} ensures that the code it downloads is @emph{authentic} by verifying that commits are signed by Guix developers." msgstr "Nach der Installation oder Aktualisierung wird stets die neueste Version von Paketen verwendet, die in der aktuell installierten Distribution verfügbar ist. Um die Distribution und die Guix-Werkzeuge zu aktualisieren, führen Sie @command{guix pull} aus. Der Befehl lädt den neuesten Guix-Quellcode einschließlich Paketbeschreibungen herunter und installiert ihn. Quellcode wird aus einem @uref{https://git-scm.com, Git-Repository} geladen, standardmäßig dem offiziellen Repository von GNU@tie{}Guix, was Sie aber auch ändern können. @command{guix pull} stellt sicher, dass der heruntergeladene Code @emph{authentisch} ist, indem es überprüft, dass die Commits durch Guix-Entwickler signiert worden sind." #. type: Plain text -#: guix-git/doc/guix.texi:4359 +#: guix-git/doc/guix.texi:4377 msgid "Specifically, @command{guix pull} downloads code from the @dfn{channels} (@pxref{Channels}) specified by one of the followings, in this order:" msgstr "Genauer gesagt lädt @command{guix pull} Code von den @dfn{Kanälen} herunter (siehe @ref{Channels}), die an einer der folgenden Stellen, in dieser Reihenfolge, angegeben wurden:" #. type: enumerate -#: guix-git/doc/guix.texi:4363 +#: guix-git/doc/guix.texi:4381 msgid "the @option{--channels} option;" msgstr "die Befehlszeilenoption @option{--channels}," #. type: enumerate -#: guix-git/doc/guix.texi:4365 +#: guix-git/doc/guix.texi:4383 msgid "the user's @file{~/.config/guix/channels.scm} file;" msgstr "die Datei @file{~/.config/guix/channels.scm} des Benutzers," #. type: enumerate -#: guix-git/doc/guix.texi:4367 +#: guix-git/doc/guix.texi:4385 msgid "the system-wide @file{/etc/guix/channels.scm} file;" msgstr "die systemweite @file{/etc/guix/channels.scm}-Datei," #. type: enumerate -#: guix-git/doc/guix.texi:4370 +#: guix-git/doc/guix.texi:4388 msgid "the built-in default channels specified in the @code{%default-channels} variable." msgstr "die eingebauten vorgegebenen Kanäle, wie sie in der Variablen @code{%default-channels} festgelegt sind." #. type: Plain text -#: guix-git/doc/guix.texi:4377 +#: guix-git/doc/guix.texi:4395 msgid "On completion, @command{guix package} will use packages and package versions from this just-retrieved copy of Guix. Not only that, but all the Guix commands and Scheme modules will also be taken from that latest version. New @command{guix} sub-commands added by the update also become available." msgstr "Danach wird @command{guix package} Pakete und ihre Versionen entsprechend der gerade heruntergeladenen Kopie von Guix benutzen. Nicht nur das, auch alle Guix-Befehle und Scheme-Module werden aus der neuesten Version von Guix kommen. Neue @command{guix}-Unterbefehle, die durch die Aktualisierung hinzugekommen sind, werden also auch verfügbar." #. type: Plain text -#: guix-git/doc/guix.texi:4383 +#: guix-git/doc/guix.texi:4401 msgid "Any user can update their Guix copy using @command{guix pull}, and the effect is limited to the user who ran @command{guix pull}. For instance, when user @code{root} runs @command{guix pull}, this has no effect on the version of Guix that user @code{alice} sees, and vice versa." msgstr "Jeder Nutzer kann seine Kopie von Guix mittels @command{guix pull} aktualisieren, wodurch sich nur für den Nutzer etwas verändert, der @command{guix pull} ausgeführt hat. Wenn also zum Beispiel der Administratornutzer @code{root} den Befehl @command{guix pull} ausführt, hat das keine Auswirkungen auf die für den Benutzer @code{alice} sichtbare Guix-Version, und umgekehrt." #. type: Plain text -#: guix-git/doc/guix.texi:4389 +#: guix-git/doc/guix.texi:4407 msgid "The result of running @command{guix pull} is a @dfn{profile} available under @file{~/.config/guix/current} containing the latest Guix. Thus, make sure to add it to the beginning of your search path so that you use the latest version, and similarly for the Info manual (@pxref{Documentation}):" msgstr "Das Ergebnis von @command{guix pull} ist ein als @file{~/.config/guix/current} verfügbares @dfn{Profil} mit dem neuesten Guix. Stellen Sie sicher, dass es am Anfang Ihres Suchpfades steht, damit Sie auch wirklich das neueste Guix und sein Info-Handbuch sehen (siehe @ref{Documentation}):" #. type: example -#: guix-git/doc/guix.texi:4393 +#: guix-git/doc/guix.texi:4411 #, no-wrap msgid "" "export PATH=\"$HOME/.config/guix/current/bin:$PATH\"\n" @@ -10930,12 +11012,12 @@ msgstr "" "export INFOPATH=\"$HOME/.config/guix/current/share/info:$INFOPATH\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:4397 +#: guix-git/doc/guix.texi:4415 msgid "The @option{--list-generations} or @option{-l} option lists past generations produced by @command{guix pull}, along with details about their provenance:" msgstr "Die Befehlszeilenoption @option{--list-generations} oder kurz @option{-l} listet ältere von @command{guix pull} erzeugte Generationen auf, zusammen mit Informationen zu deren Provenienz." #. type: example -#: guix-git/doc/guix.texi:4405 +#: guix-git/doc/guix.texi:4423 #, no-wrap msgid "" "$ guix pull -l\n" @@ -10955,7 +11037,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:4415 +#: guix-git/doc/guix.texi:4433 #, no-wrap msgid "" "Generation 2\tJun 11 2018 11:02:49\n" @@ -10981,7 +11063,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:4423 +#: guix-git/doc/guix.texi:4441 #, no-wrap msgid "" "Generation 3\tJun 13 2018 23:31:07\t(current)\n" @@ -11001,17 +11083,17 @@ msgstr "" " 69 packages upgraded: borg@@1.1.6, cheese@@3.28.0, …\n" #. type: Plain text -#: guix-git/doc/guix.texi:4427 +#: guix-git/doc/guix.texi:4445 msgid "@xref{Invoking guix describe, @command{guix describe}}, for other ways to describe the current status of Guix." msgstr "Im Abschnitt @ref{Invoking guix describe, @command{guix describe}} werden andere Möglichkeiten erklärt, sich den momentanen Zustand von Guix beschreiben zu lassen." #. type: Plain text -#: guix-git/doc/guix.texi:4432 +#: guix-git/doc/guix.texi:4450 msgid "This @code{~/.config/guix/current} profile works exactly like the profiles created by @command{guix package} (@pxref{Invoking guix package}). That is, you can list generations, roll back to the previous generation---i.e., the previous Guix---and so on:" msgstr "Das Profil @code{~/.config/guix/current} verhält sich genau wie die durch @command{guix package} erzeugten Profile (siehe @ref{Invoking guix package}). Das bedeutet, Sie können seine Generationen auflisten und es auf die vorherige Generation@tie{}— also das vorherige Guix@tie{}— zurücksetzen und so weiter:" #. type: example -#: guix-git/doc/guix.texi:4438 +#: guix-git/doc/guix.texi:4456 #, no-wrap msgid "" "$ guix pull --roll-back\n" @@ -11025,12 +11107,12 @@ msgstr "" "/var/guix/profiles/per-user/charlie/current-guix-1-link wird gelöscht\n" #. type: Plain text -#: guix-git/doc/guix.texi:4442 +#: guix-git/doc/guix.texi:4460 msgid "You can also use @command{guix package} (@pxref{Invoking guix package}) to manage the profile by naming it explicitly:" msgstr "Sie können auch @command{guix package} benutzen (siehe @ref{Invoking guix package}), um das Profil zu verwalten, indem Sie es explizit angeben.:" #. type: example -#: guix-git/doc/guix.texi:4447 +#: guix-git/doc/guix.texi:4465 #, no-wrap msgid "" "$ guix package -p ~/.config/guix/current --roll-back\n" @@ -11044,354 +11126,355 @@ msgstr "" "deleting /var/guix/profiles/per-user/charlie/current-guix-1-link\n" #. type: Plain text -#: guix-git/doc/guix.texi:4451 +#: guix-git/doc/guix.texi:4469 msgid "The @command{guix pull} command is usually invoked with no arguments, but it supports the following options:" msgstr "Der Befehl @command{guix pull} wird in der Regel ohne Befehlszeilenargumente aufgerufen, aber er versteht auch folgende Befehlszeilenoptionen:" #. type: item -#: guix-git/doc/guix.texi:4453 guix-git/doc/guix.texi:4611 +#: guix-git/doc/guix.texi:4471 guix-git/doc/guix.texi:4629 #, no-wrap msgid "--url=@var{url}" msgstr "--url=@var{URL}" #. type: itemx -#: guix-git/doc/guix.texi:4454 guix-git/doc/guix.texi:4612 +#: guix-git/doc/guix.texi:4472 guix-git/doc/guix.texi:4630 #, no-wrap msgid "--commit=@var{commit}" msgstr "--commit=@var{Commit}" #. type: itemx -#: guix-git/doc/guix.texi:4455 guix-git/doc/guix.texi:4613 +#: guix-git/doc/guix.texi:4473 guix-git/doc/guix.texi:4631 #, no-wrap msgid "--branch=@var{branch}" msgstr "--branch=@var{Branch}" #. type: table -#: guix-git/doc/guix.texi:4459 +#: guix-git/doc/guix.texi:4477 msgid "Download code for the @code{guix} channel from the specified @var{url}, at the given @var{commit} (a valid Git commit ID represented as a hexadecimal string), or @var{branch}." msgstr "Code wird für den @code{guix}-Kanal von der angegebenen @var{URL} für den angegebenen @var{Commit} (eine gültige Commit-ID, dargestellt als hexadezimale Zeichenkette) oder @var{Branch} heruntergeladen." #. type: cindex -#: guix-git/doc/guix.texi:4460 guix-git/doc/guix.texi:5057 +#: guix-git/doc/guix.texi:4478 guix-git/doc/guix.texi:5075 #, no-wrap msgid "@file{channels.scm}, configuration file" msgstr "@file{channels.scm}, Konfigurationsdatei" #. type: cindex -#: guix-git/doc/guix.texi:4461 guix-git/doc/guix.texi:5058 +#: guix-git/doc/guix.texi:4479 guix-git/doc/guix.texi:5076 #, no-wrap msgid "configuration file for channels" msgstr "Konfigurationsdatei für Kanäle" #. type: table -#: guix-git/doc/guix.texi:4465 +#: guix-git/doc/guix.texi:4483 msgid "These options are provided for convenience, but you can also specify your configuration in the @file{~/.config/guix/channels.scm} file or using the @option{--channels} option (see below)." msgstr "Diese Befehlszeilenoptionen sind manchmal bequemer, aber Sie können Ihre Konfiguration auch in der Datei @file{~/.config/guix/channels.scm} oder über die Option @option{--channels} angeben (siehe unten)." #. type: item -#: guix-git/doc/guix.texi:4466 guix-git/doc/guix.texi:4618 +#: guix-git/doc/guix.texi:4484 guix-git/doc/guix.texi:4636 #, no-wrap msgid "--channels=@var{file}" msgstr "--channels=@var{Datei}" #. type: itemx -#: guix-git/doc/guix.texi:4467 guix-git/doc/guix.texi:4619 +#: guix-git/doc/guix.texi:4485 guix-git/doc/guix.texi:4637 #, no-wrap msgid "-C @var{file}" msgstr "-C @var{Datei}" #. type: table -#: guix-git/doc/guix.texi:4473 +#: guix-git/doc/guix.texi:4491 msgid "Read the list of channels from @var{file} instead of @file{~/.config/guix/channels.scm} or @file{/etc/guix/channels.scm}. @var{file} must contain Scheme code that evaluates to a list of channel objects. @xref{Channels}, for more information." msgstr "Die Liste der Kanäle aus der angegebenen @var{Datei} statt aus @file{~/.config/guix/channels.scm} oder aus @file{/etc/guix/channels.scm} auslesen. Die @var{Datei} muss Scheme-Code enthalten, der zu einer Liste von Kanalobjekten ausgewertet wird. Siehe @ref{Channels} für nähere Informationen." #. type: cindex -#: guix-git/doc/guix.texi:4474 +#: guix-git/doc/guix.texi:4492 #, no-wrap msgid "channel news" msgstr "Neuigkeiten über Kanäle" #. type: item -#: guix-git/doc/guix.texi:4475 +#: guix-git/doc/guix.texi:4493 #, no-wrap msgid "--news" msgstr "--news" #. type: itemx -#: guix-git/doc/guix.texi:4476 guix-git/doc/guix.texi:5864 -#: guix-git/doc/guix.texi:6247 guix-git/doc/guix.texi:35304 +#: guix-git/doc/guix.texi:4494 guix-git/doc/guix.texi:5877 +#: guix-git/doc/guix.texi:6290 guix-git/doc/guix.texi:35748 #, no-wrap msgid "-N" msgstr "-N" #. type: table -#: guix-git/doc/guix.texi:4480 +#: guix-git/doc/guix.texi:4498 msgid "Display the list of packages added or upgraded since the previous generation, as well as, occasionally, news written by channel authors for their users (@pxref{Channels, Writing Channel News})." msgstr "Die Liste anzeigen, welche Pakete seit der vorherigen Generation hinzugefügt oder aktualisiert wurden, und gelegentlich auch, welche Neuigkeiten die Kanalautoren für ihre Nutzer geschrieben haben (siehe @ref{Channels, Kanalneuigkeiten verfassen})." #. type: table -#: guix-git/doc/guix.texi:4484 +#: guix-git/doc/guix.texi:4502 msgid "The package information is the same as displayed upon @command{guix pull} completion, but without ellipses; it is also similar to the output of @command{guix pull -l} for the last generation (see below)." msgstr "Die Paketinformationen sind dieselben, die auch nach Abschluss von @command{guix pull} angezeigt werden, aber ohne Auslassungen; sie ähnelt auch der Ausgabe von @command{guix pull -l} für die neueste Generation (siehe unten)." #. type: table -#: guix-git/doc/guix.texi:4491 +#: guix-git/doc/guix.texi:4509 msgid "List all the generations of @file{~/.config/guix/current} or, if @var{pattern} is provided, the subset of generations that match @var{pattern}. The syntax of @var{pattern} is the same as with @code{guix package --list-generations} (@pxref{Invoking guix package})." msgstr "Alle Generationen von @file{~/.config/guix/current} bzw., wenn ein @var{Muster} angegeben wird, die dazu passenden Generationen auflisten. Die Syntax für das @var{Muster} ist dieselbe wie bei @code{guix package --list-generations} (siehe @ref{Invoking guix package})." #. type: table -#: guix-git/doc/guix.texi:4498 +#: guix-git/doc/guix.texi:4516 msgid "Roll back to the previous @dfn{generation} of @file{~/.config/guix/current}---i.e., undo the last transaction." msgstr "Zur vorherigen @dfn{Generation} von @file{~/.config/guix/current} zurückwechseln@tie{}— d.h.@: die letzte Transaktion rückgängig machen." #. type: table -#: guix-git/doc/guix.texi:4522 +#: guix-git/doc/guix.texi:4540 msgid "If the current generation matches, it is @emph{not} deleted." msgstr "Falls die aktuelle Generation zum Muster passt, wird sie @emph{nicht} gelöscht." #. type: table -#: guix-git/doc/guix.texi:4528 +#: guix-git/doc/guix.texi:4546 msgid "@xref{Invoking guix describe}, for a way to display information about the current generation only." msgstr "Im Abschnitt @ref{Invoking guix describe, @command{guix describe}} wird eine Möglichkeit erklärt, sich Informationen nur über die aktuelle Generation anzeigen zu lassen." #. type: table -#: guix-git/doc/guix.texi:4532 +#: guix-git/doc/guix.texi:4550 msgid "Use @var{profile} instead of @file{~/.config/guix/current}." msgstr "Auf @var{Profil} anstelle von @file{~/.config/guix/current} arbeiten." #. type: item -#: guix-git/doc/guix.texi:4533 guix-git/doc/guix.texi:10893 -#: guix-git/doc/guix.texi:12836 +#: guix-git/doc/guix.texi:4551 guix-git/doc/guix.texi:11207 +#: guix-git/doc/guix.texi:13162 #, no-wrap msgid "--dry-run" msgstr "--dry-run" #. type: itemx -#: guix-git/doc/guix.texi:4534 guix-git/doc/guix.texi:10894 -#: guix-git/doc/guix.texi:12837 guix-git/doc/guix.texi:13043 +#: guix-git/doc/guix.texi:4552 guix-git/doc/guix.texi:11208 +#: guix-git/doc/guix.texi:13163 guix-git/doc/guix.texi:13400 #, no-wrap msgid "-n" msgstr "-n" #. type: table -#: guix-git/doc/guix.texi:4537 +#: guix-git/doc/guix.texi:4555 msgid "Show which channel commit(s) would be used and what would be built or substituted but do not actually do it." msgstr "Anzeigen, welche(r) Commit(s) für die Kanäle benutzt würde(n) und was jeweils erstellt oder substituiert würde, ohne es tatsächlich durchzuführen." #. type: item -#: guix-git/doc/guix.texi:4538 guix-git/doc/guix.texi:35323 +#: guix-git/doc/guix.texi:4556 guix-git/doc/guix.texi:35767 +#: guix-git/doc/guix.texi:38198 #, no-wrap msgid "--allow-downgrades" msgstr "--allow-downgrades" #. type: table -#: guix-git/doc/guix.texi:4541 +#: guix-git/doc/guix.texi:4559 msgid "Allow pulling older or unrelated revisions of channels than those currently in use." msgstr "Beziehen einer älteren oder mit der bisheriger Version eines Kanals @emph{nicht} zusammenhängenden Version zulassen." #. type: cindex -#: guix-git/doc/guix.texi:4542 +#: guix-git/doc/guix.texi:4560 #, no-wrap msgid "downgrade attacks, protection against" msgstr "Downgrade Attacks, Schutz davor" #. type: table -#: guix-git/doc/guix.texi:4547 +#: guix-git/doc/guix.texi:4565 msgid "By default, @command{guix pull} protects against so-called ``downgrade attacks'' whereby the Git repository of a channel would be reset to an earlier or unrelated revision of itself, potentially leading you to install older, known-vulnerable versions of software packages." msgstr "Nach Voreinstellung schützt @command{guix pull} den Nutzer vor Herabstufungsangriffen („Downgrade Attacks“). Damit werden Versuche bezeichnet, jemanden eine frühere oder unzusammenhängende Version des Git-Repositorys eines Kanals benutzen zu lassen, wodurch diese Person dazu gebracht werden kann, ältere Versionen von Softwarepaketen mit bekannten Schwachstellen zu installieren." #. type: quotation -#: guix-git/doc/guix.texi:4551 guix-git/doc/guix.texi:35337 +#: guix-git/doc/guix.texi:4569 guix-git/doc/guix.texi:35781 msgid "Make sure you understand its security implications before using @option{--allow-downgrades}." msgstr "Sie sollten verstehen, was es für die Sicherheit Ihres Rechners bedeutet, ehe Sie @option{--allow-downgrades} benutzen." #. type: item -#: guix-git/doc/guix.texi:4553 +#: guix-git/doc/guix.texi:4571 #, no-wrap msgid "--disable-authentication" msgstr "--disable-authentication" #. type: table -#: guix-git/doc/guix.texi:4555 +#: guix-git/doc/guix.texi:4573 msgid "Allow pulling channel code without authenticating it." msgstr "Beziehen von Kanalcode ohne Authentifizierung zulassen." #. type: cindex -#: guix-git/doc/guix.texi:4556 guix-git/doc/guix.texi:5203 +#: guix-git/doc/guix.texi:4574 guix-git/doc/guix.texi:5221 #, no-wrap msgid "authentication, of channel code" msgstr "Authentifizieren, des Codes eines Kanals" #. type: table -#: guix-git/doc/guix.texi:4561 +#: guix-git/doc/guix.texi:4579 msgid "By default, @command{guix pull} authenticates code downloaded from channels by verifying that its commits are signed by authorized developers, and raises an error if this is not the case. This option instructs it to not perform any such verification." msgstr "Nach Voreinstellung wird durch @command{guix pull} von Kanälen heruntergeladener Code darauf überprüft, dass deren Commits durch autorisierte Entwickler signiert worden sind; andernfalls wird ein Fehler gemeldet. Mit dieser Befehlszeilenoption können Sie anweisen, keine solche Verifikation durchzuführen." #. type: quotation -#: guix-git/doc/guix.texi:4565 +#: guix-git/doc/guix.texi:4583 msgid "Make sure you understand its security implications before using @option{--disable-authentication}." msgstr "Sie sollten verstehen, was es für die Sicherheit Ihres Rechners bedeutet, ehe Sie @option{--disable-authentication} benutzen." #. type: itemx -#: guix-git/doc/guix.texi:4568 guix-git/doc/guix.texi:5847 -#: guix-git/doc/guix.texi:6230 guix-git/doc/guix.texi:6630 -#: guix-git/doc/guix.texi:11506 guix-git/doc/guix.texi:13188 -#: guix-git/doc/guix.texi:13453 guix-git/doc/guix.texi:14130 -#: guix-git/doc/guix.texi:35252 +#: guix-git/doc/guix.texi:4586 guix-git/doc/guix.texi:5860 +#: guix-git/doc/guix.texi:6273 guix-git/doc/guix.texi:6673 +#: guix-git/doc/guix.texi:11820 guix-git/doc/guix.texi:13545 +#: guix-git/doc/guix.texi:13810 guix-git/doc/guix.texi:14487 +#: guix-git/doc/guix.texi:35696 #, no-wrap msgid "-s @var{system}" msgstr "-s @var{System}" #. type: table -#: guix-git/doc/guix.texi:4571 guix-git/doc/guix.texi:6633 +#: guix-git/doc/guix.texi:4589 guix-git/doc/guix.texi:6676 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of the system type of the build host." msgstr "Versuchen, für die angegebene Art von @var{System} geeignete Binärdateien zu erstellen@tie{}— z.B.@: @code{i686-linux}@tie{}— statt für die Art von System, das die Erstellung durchführt." #. type: table -#: guix-git/doc/guix.texi:4575 +#: guix-git/doc/guix.texi:4593 msgid "Use the bootstrap Guile to build the latest Guix. This option is only useful to Guix developers." msgstr "Das neueste Guix mit dem Bootstrap-Guile erstellen. Diese Befehlszeilenoption ist nur für Guix-Entwickler von Nutzen." #. type: Plain text -#: guix-git/doc/guix.texi:4581 +#: guix-git/doc/guix.texi:4599 msgid "The @dfn{channel} mechanism allows you to instruct @command{guix pull} which repository and branch to pull from, as well as @emph{additional} repositories containing package modules that should be deployed. @xref{Channels}, for more information." msgstr "Mit Hilfe von @dfn{Kanälen} können Sie @command{guix pull} anweisen, von welchem Repository und welchem Branch Guix aktualisiert werden soll, sowie von welchen @emph{weiteren} Repositorys Paketmodule bezogen werden sollen. Im Abschnitt @ref{Channels} finden Sie nähere Informationen." #. type: Plain text -#: guix-git/doc/guix.texi:4584 +#: guix-git/doc/guix.texi:4602 msgid "In addition, @command{guix pull} supports all the common build options (@pxref{Common Build Options})." msgstr "Außerdem unterstützt @command{guix pull} alle gemeinsamen Erstellungsoptionen (siehe @ref{Common Build Options})." #. type: section -#: guix-git/doc/guix.texi:4586 +#: guix-git/doc/guix.texi:4604 #, no-wrap msgid "Invoking @command{guix time-machine}" msgstr "@command{guix time-machine} aufrufen" #. type: command{#1} -#: guix-git/doc/guix.texi:4588 +#: guix-git/doc/guix.texi:4606 #, no-wrap msgid "guix time-machine" msgstr "guix time-machine" #. type: cindex -#: guix-git/doc/guix.texi:4589 guix-git/doc/guix.texi:5161 +#: guix-git/doc/guix.texi:4607 guix-git/doc/guix.texi:5179 #, no-wrap msgid "pinning, channels" msgstr "Festsetzen, bei Kanälen" #. type: cindex -#: guix-git/doc/guix.texi:4590 guix-git/doc/guix.texi:4772 -#: guix-git/doc/guix.texi:5162 +#: guix-git/doc/guix.texi:4608 guix-git/doc/guix.texi:4790 +#: guix-git/doc/guix.texi:5180 #, no-wrap msgid "replicating Guix" msgstr "Nachbilden von Guix" #. type: cindex -#: guix-git/doc/guix.texi:4591 guix-git/doc/guix.texi:5163 +#: guix-git/doc/guix.texi:4609 guix-git/doc/guix.texi:5181 #, no-wrap msgid "reproducibility, of Guix" msgstr "Reproduzierbarkeit von Guix" #. type: Plain text -#: guix-git/doc/guix.texi:4599 +#: guix-git/doc/guix.texi:4617 msgid "The @command{guix time-machine} command provides access to other revisions of Guix, for example to install older versions of packages, or to reproduce a computation in an identical environment. The revision of Guix to be used is defined by a commit or by a channel description file created by @command{guix describe} (@pxref{Invoking guix describe})." msgstr "Der Befehl @command{guix time-machine} erleichtert den Zugang zu anderen Versionen von Guix. Damit können ältere Versionen von Paketen installiert werden oder eine Berechnung in einer identischen Umgebung reproduziert werden. Die zu benutzende Guix-Version wird über eine Commit-Angabe oder eine Kanalbeschreibungsdatei, wie sie durch @command{guix describe} erzeugt werden kann, festgelegt (siehe @ref{Invoking guix describe})." #. type: Plain text -#: guix-git/doc/guix.texi:4601 guix-git/doc/guix.texi:5623 -#: guix-git/doc/guix.texi:5974 guix-git/doc/guix.texi:6753 -#: guix-git/doc/guix.texi:10689 guix-git/doc/guix.texi:10813 -#: guix-git/doc/guix.texi:11797 guix-git/doc/guix.texi:11892 -#: guix-git/doc/guix.texi:12825 guix-git/doc/guix.texi:13018 -#: guix-git/doc/guix.texi:13511 guix-git/doc/guix.texi:13884 -#: guix-git/doc/guix.texi:13973 guix-git/doc/guix.texi:14012 -#: guix-git/doc/guix.texi:14109 +#: guix-git/doc/guix.texi:4619 guix-git/doc/guix.texi:5641 +#: guix-git/doc/guix.texi:6011 guix-git/doc/guix.texi:6796 +#: guix-git/doc/guix.texi:11003 guix-git/doc/guix.texi:11127 +#: guix-git/doc/guix.texi:12111 guix-git/doc/guix.texi:12207 +#: guix-git/doc/guix.texi:13148 guix-git/doc/guix.texi:13375 +#: guix-git/doc/guix.texi:13868 guix-git/doc/guix.texi:14241 +#: guix-git/doc/guix.texi:14330 guix-git/doc/guix.texi:14369 +#: guix-git/doc/guix.texi:14466 msgid "The general syntax is:" msgstr "Die allgemeine Syntax lautet:" #. type: example -#: guix-git/doc/guix.texi:4604 +#: guix-git/doc/guix.texi:4622 #, no-wrap msgid "guix time-machine @var{options}@dots{} -- @var{command} @var {arg}@dots{}\n" msgstr "guix time-machine @var{Optionen}…@: -- @var{Befehl} @var {Argument}…\n" #. type: Plain text -#: guix-git/doc/guix.texi:4609 +#: guix-git/doc/guix.texi:4627 msgid "where @var{command} and @var{arg}@dots{} are passed unmodified to the @command{guix} command of the specified revision. The @var{options} that define this revision are the same as for @command{guix pull} (@pxref{Invoking guix pull}):" msgstr "Dabei werden der @var{Befehl} und jedes @var{Argument}…@: unverändert an den @command{guix}-Befehl der angegebenen Version übergeben. Die @var{Optionen}, die die Version definieren, sind dieselben wie bei @command{guix pull} (siehe @ref{Invoking guix pull}):" #. type: table -#: guix-git/doc/guix.texi:4617 +#: guix-git/doc/guix.texi:4635 msgid "Use the @code{guix} channel from the specified @var{url}, at the given @var{commit} (a valid Git commit ID represented as a hexadecimal string), or @var{branch}." msgstr "Den @code{guix}-Kanal von der angegebenen @var{URL} benutzen, für den angegebenen @var{Commit} (eine gültige Commit-ID, dargestellt als hexadezimale Zeichenkette) oder @var{Branch}." #. type: table -#: guix-git/doc/guix.texi:4623 +#: guix-git/doc/guix.texi:4641 msgid "Read the list of channels from @var{file}. @var{file} must contain Scheme code that evaluates to a list of channel objects. @xref{Channels} for more information." msgstr "Die Liste der Kanäle aus der angegebenen @var{Datei} auslesen. Die @var{Datei} muss Scheme-Code enthalten, der zu einer Liste von Kanalobjekten ausgewertet wird. Siehe @ref{Channels} für nähere Informationen." #. type: Plain text -#: guix-git/doc/guix.texi:4627 +#: guix-git/doc/guix.texi:4645 msgid "As for @command{guix pull}, the absence of any options means that the latest commit on the master branch will be used. The command" msgstr "Wie bei @command{guix pull} wird in Ermangelung anderer Optionen der letzte Commit auf dem master-Branch benutzt. Mit dem Befehl" #. type: example -#: guix-git/doc/guix.texi:4630 +#: guix-git/doc/guix.texi:4648 #, no-wrap msgid "guix time-machine -- build hello\n" msgstr "guix time-machine -- build hello\n" #. type: Plain text -#: guix-git/doc/guix.texi:4635 +#: guix-git/doc/guix.texi:4653 msgid "will thus build the package @code{hello} as defined in the master branch, which is in general a newer revision of Guix than you have installed. Time travel works in both directions!" msgstr "wird dementsprechend das Paket @code{hello} erstellt, so wie es auf dem master-Branch definiert ist, was in der Regel einer neueren Guix-Version entspricht als der, die Sie installiert haben. Zeitreisen funktionieren also in beide Richtungen!" #. type: Plain text -#: guix-git/doc/guix.texi:4639 +#: guix-git/doc/guix.texi:4657 msgid "Note that @command{guix time-machine} can trigger builds of channels and their dependencies, and these are controlled by the standard build options (@pxref{Common Build Options})." msgstr "Beachten Sie, dass durch @command{guix time-machine} Erstellungen von Kanälen und deren Abhängigkeiten ausgelöst werden können, welche durch die gemeinsamen Erstellungsoptionen gesteuert werden können (siehe @ref{Common Build Options})." #. type: quotation -#: guix-git/doc/guix.texi:4647 +#: guix-git/doc/guix.texi:4665 msgid "The functionality described here is a ``technology preview'' as of version @value{VERSION}. As such, the interface is subject to change." msgstr "Die hier beschriebenen Funktionalitäten sind in der Version @value{VERSION} bloß eine „Technologie-Vorschau“, daher kann sich die Schnittstelle in Zukunft noch ändern." #. type: cindex -#: guix-git/doc/guix.texi:4649 guix-git/doc/guix.texi:10726 +#: guix-git/doc/guix.texi:4667 guix-git/doc/guix.texi:11040 #, no-wrap msgid "inferiors" msgstr "Untergeordnete" #. type: cindex -#: guix-git/doc/guix.texi:4650 +#: guix-git/doc/guix.texi:4668 #, no-wrap msgid "composition of Guix revisions" msgstr "Mischen von Guix-Versionen" #. type: Plain text -#: guix-git/doc/guix.texi:4655 +#: guix-git/doc/guix.texi:4673 msgid "Sometimes you might need to mix packages from the revision of Guix you're currently running with packages available in a different revision of Guix. Guix @dfn{inferiors} allow you to achieve that by composing different Guix revisions in arbitrary ways." msgstr "Manchmal könnten Sie Pakete aus der gerade laufenden Fassung von Guix mit denen mischen wollen, die in einer anderen Guix-Version verfügbar sind. Guix-@dfn{Untergeordnete} ermöglichen dies, indem Sie verschiedene Guix-Versionen beliebig mischen können." #. type: cindex -#: guix-git/doc/guix.texi:4656 guix-git/doc/guix.texi:4721 +#: guix-git/doc/guix.texi:4674 guix-git/doc/guix.texi:4739 #, no-wrap msgid "inferior packages" msgstr "untergeordnete Pakete" #. type: Plain text -#: guix-git/doc/guix.texi:4662 +#: guix-git/doc/guix.texi:4680 msgid "Technically, an ``inferior'' is essentially a separate Guix process connected to your main Guix process through a REPL (@pxref{Invoking guix repl}). The @code{(guix inferior)} module allows you to create inferiors and to communicate with them. It also provides a high-level interface to browse and manipulate the packages that an inferior provides---@dfn{inferior packages}." msgstr "Aus technischer Sicht ist ein „Untergeordneter“ im Kern ein separater Guix-Prozess, der über eine REPL (siehe @ref{Invoking guix repl}) mit Ihrem Haupt-Guix-Prozess verbunden ist. Das Modul @code{(guix inferior)} ermöglicht es Ihnen, Untergeordnete zu erstellen und mit ihnen zu kommunizieren. Dadurch steht Ihnen auch eine hochsprachliche Schnittstelle zur Verfügung, um die von einem Untergeordneten angebotenen Pakete zu durchsuchen und zu verändern@tie{}— @dfn{untergeordnete Pakete}." #. type: Plain text -#: guix-git/doc/guix.texi:4672 +#: guix-git/doc/guix.texi:4690 msgid "When combined with channels (@pxref{Channels}), inferiors provide a simple way to interact with a separate revision of Guix. For example, let's assume you want to install in your profile the current @code{guile} package, along with the @code{guile-json} as it existed in an older revision of Guix---perhaps because the newer @code{guile-json} has an incompatible API and you want to run your code against the old API@. To do that, you could write a manifest for use by @code{guix package --manifest} (@pxref{Invoking guix package}); in that manifest, you would create an inferior for that old Guix revision you care about, and you would look up the @code{guile-json} package in the inferior:" msgstr "In Kombination mit Kanälen (siehe @ref{Channels}) bieten Untergeordnete eine einfache Möglichkeit, mit einer anderen Version von Guix zu interagieren. Nehmen wir zum Beispiel an, Sie wollen das aktuelle @code{guile}-Paket in Ihr Profil installieren, zusammen mit dem @code{guile-json}, wie es in einer früheren Guix-Version existiert hat@tie{}— vielleicht weil das neuere @code{guile-json} eine inkompatible API hat und Sie daher Ihren Code mit der alten API benutzen möchten. Dazu könnten Sie ein Manifest für @code{guix package --manifest} schreiben (siehe @ref{Invoking guix package}); in diesem Manifest würden Sie einen Untergeordneten für diese alte Guix-Version erzeugen, für die Sie sich interessieren, und aus diesem Untergeordneten das @code{guile-json}-Paket holen:" #. type: lisp -#: guix-git/doc/guix.texi:4676 +#: guix-git/doc/guix.texi:4694 #, no-wrap msgid "" "(use-modules (guix inferior) (guix channels)\n" @@ -11403,7 +11486,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:4685 +#: guix-git/doc/guix.texi:4703 #, no-wrap msgid "" "(define channels\n" @@ -11427,7 +11510,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:4689 +#: guix-git/doc/guix.texi:4707 #, no-wrap msgid "" "(define inferior\n" @@ -11441,7 +11524,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:4695 +#: guix-git/doc/guix.texi:4713 #, no-wrap msgid "" ";; Now create a manifest with the current \"guile\" package\n" @@ -11457,186 +11540,186 @@ msgstr "" " (specification->package \"guile\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:4700 +#: guix-git/doc/guix.texi:4718 msgid "On its first run, @command{guix package --manifest} might have to build the channel you specified before it can create the inferior; subsequent runs will be much faster because the Guix revision will be cached." msgstr "Bei seiner ersten Ausführung könnte für @command{guix package --manifest} erst der angegebene Kanal erstellt werden müssen, bevor der Untergeordnete erstellt werden kann; nachfolgende Durchläufe sind wesentlich schneller, weil diese Guix-Version bereits zwischengespeichert ist." #. type: Plain text -#: guix-git/doc/guix.texi:4703 +#: guix-git/doc/guix.texi:4721 msgid "The @code{(guix inferior)} module provides the following procedures to open an inferior:" msgstr "Folgende Prozeduren werden im Modul @code{(guix inferior)} angeboten, um einen Untergeordneten zu öffnen:" #. type: deffn -#: guix-git/doc/guix.texi:4704 +#: guix-git/doc/guix.texi:4722 #, no-wrap msgid "{Scheme Procedure} inferior-for-channels @var{channels} @" msgstr "{Scheme-Prozedur} inferior-for-channels @var{Kanäle} @" #. type: deffn -#: guix-git/doc/guix.texi:4709 +#: guix-git/doc/guix.texi:4727 msgid "[#:cache-directory] [#:ttl] Return an inferior for @var{channels}, a list of channels. Use the cache at @var{cache-directory}, where entries can be reclaimed after @var{ttl} seconds. This procedure opens a new connection to the build daemon." msgstr "[#:cache-directory] [#:ttl] Liefert einen Untergeordneten für die @var{Kanäle}, einer Liste von Kanälen. Dazu wird der Zwischenspeicher im Verzeichnis @var{cache-directory} benutzt, dessen Einträge nach @var{ttl} Sekunden gesammelt werden dürfen. Mit dieser Prozedur wird eine neue Verbindung zum Erstellungs-Daemon geöffnet." #. type: deffn -#: guix-git/doc/guix.texi:4712 +#: guix-git/doc/guix.texi:4730 msgid "As a side effect, this procedure may build or substitute binaries for @var{channels}, which can take time." msgstr "Als Nebenwirkung erstellt oder substituiert diese Prozedur unter Umständen Binärdateien für die @var{Kanäle}, was einige Zeit in Anspruch nehmen kann." #. type: deffn -#: guix-git/doc/guix.texi:4714 +#: guix-git/doc/guix.texi:4732 #, no-wrap msgid "{Scheme Procedure} open-inferior @var{directory} @" msgstr "{Scheme-Prozedur} open-inferior @var{Verzeichnis} @" #. type: deffn -#: guix-git/doc/guix.texi:4719 +#: guix-git/doc/guix.texi:4737 msgid "[#:command \"bin/guix\"] Open the inferior Guix in @var{directory}, running @code{@var{directory}/@var{command} repl} or equivalent. Return @code{#f} if the inferior could not be launched." msgstr "[#:command \"bin/guix\"] Öffnet das untergeordnete Guix mit dem Befehl @var{command} im angegebenen @var{Verzeichnis} durch Ausführung von @code{@var{Verzeichnis}/@var{command} repl} oder entsprechend. Liefert @code{#f}, wenn der Untergeordnete nicht gestartet werden konnte." #. type: Plain text -#: guix-git/doc/guix.texi:4724 +#: guix-git/doc/guix.texi:4742 msgid "The procedures listed below allow you to obtain and manipulate inferior packages." msgstr "Die im Folgenden aufgeführten Prozeduren ermöglichen es Ihnen, untergeordnete Pakete abzurufen und zu verändern." #. type: deffn -#: guix-git/doc/guix.texi:4725 +#: guix-git/doc/guix.texi:4743 #, no-wrap msgid "{Scheme Procedure} inferior-packages @var{inferior}" msgstr "{Scheme-Prozedur} inferior-packages @var{Untergeordneter}" #. type: deffn -#: guix-git/doc/guix.texi:4727 +#: guix-git/doc/guix.texi:4745 msgid "Return the list of packages known to @var{inferior}." msgstr "Liefert die Liste der Pakete in @var{Untergeordneter}." #. type: deffn -#: guix-git/doc/guix.texi:4729 +#: guix-git/doc/guix.texi:4747 #, no-wrap msgid "{Scheme Procedure} lookup-inferior-packages @var{inferior} @var{name} @" msgstr "{Scheme-Prozedur} lookup-inferior-packages @var{Untergeordneter} @var{Name} @" #. type: deffn -#: guix-git/doc/guix.texi:4734 +#: guix-git/doc/guix.texi:4752 msgid "[@var{version}] Return the sorted list of inferior packages matching @var{name} in @var{inferior}, with highest version numbers first. If @var{version} is true, return only packages with a version number prefixed by @var{version}." msgstr "[@var{Version}] Liefert die sortierte Liste der untergeordneten Pakete in @var{Untergeordneter}, die zum Muster @var{Name} in @var{Untergeordneter} passen, dabei kommen höhere Versionsnummern zuerst. Wenn @var{Version} auf wahr gesetzt ist, werden nur Pakete geliefert, deren Versionsnummer mit dem Präfix @var{Version} beginnt." #. type: deffn -#: guix-git/doc/guix.texi:4736 +#: guix-git/doc/guix.texi:4754 #, no-wrap msgid "{Scheme Procedure} inferior-package? @var{obj}" msgstr "{Scheme-Prozedur} inferior-package? @var{Objekt}" #. type: deffn -#: guix-git/doc/guix.texi:4738 +#: guix-git/doc/guix.texi:4756 msgid "Return true if @var{obj} is an inferior package." msgstr "Liefert wahr, wenn das @var{obj} ein Untergeordneter ist." #. type: deffn -#: guix-git/doc/guix.texi:4740 +#: guix-git/doc/guix.texi:4758 #, no-wrap msgid "{Scheme Procedure} inferior-package-name @var{package}" msgstr "{Scheme-Prozedur} inferior-package-name @var{Paket}" #. type: deffnx -#: guix-git/doc/guix.texi:4741 +#: guix-git/doc/guix.texi:4759 #, no-wrap msgid "{Scheme Procedure} inferior-package-version @var{package}" msgstr "{Scheme-Prozedur} inferior-package-version @var{Paket}" #. type: deffnx -#: guix-git/doc/guix.texi:4742 +#: guix-git/doc/guix.texi:4760 #, no-wrap msgid "{Scheme Procedure} inferior-package-synopsis @var{package}" msgstr "{Scheme-Prozedur} inferior-package-synopsis @var{Paket}" #. type: deffnx -#: guix-git/doc/guix.texi:4743 +#: guix-git/doc/guix.texi:4761 #, no-wrap msgid "{Scheme Procedure} inferior-package-description @var{package}" msgstr "{Scheme-Prozedur} inferior-package-description @var{Paket}" #. type: deffnx -#: guix-git/doc/guix.texi:4744 +#: guix-git/doc/guix.texi:4762 #, no-wrap msgid "{Scheme Procedure} inferior-package-home-page @var{package}" msgstr "{Scheme-Prozedur} inferior-package-home-page @var{Paket}" #. type: deffnx -#: guix-git/doc/guix.texi:4745 +#: guix-git/doc/guix.texi:4763 #, no-wrap msgid "{Scheme Procedure} inferior-package-location @var{package}" msgstr "{Scheme-Prozedur} inferior-package-location @var{Paket}" #. type: deffnx -#: guix-git/doc/guix.texi:4746 +#: guix-git/doc/guix.texi:4764 #, no-wrap msgid "{Scheme Procedure} inferior-package-inputs @var{package}" msgstr "{Scheme-Prozedur} inferior-package-inputs @var{Paket}" #. type: deffnx -#: guix-git/doc/guix.texi:4747 +#: guix-git/doc/guix.texi:4765 #, no-wrap msgid "{Scheme Procedure} inferior-package-native-inputs @var{package}" msgstr "{Scheme-Prozedur} inferior-package-native-inputs @var{Paket}" #. type: deffnx -#: guix-git/doc/guix.texi:4748 +#: guix-git/doc/guix.texi:4766 #, no-wrap msgid "{Scheme Procedure} inferior-package-propagated-inputs @var{package}" msgstr "{Scheme-Prozedur} inferior-package-propagated-inputs @var{Paket}" #. type: deffnx -#: guix-git/doc/guix.texi:4749 +#: guix-git/doc/guix.texi:4767 #, no-wrap msgid "{Scheme Procedure} inferior-package-transitive-propagated-inputs @var{package}" msgstr "{Scheme-Prozedur} inferior-package-transitive-propagated-inputs @var{Paket}" #. type: deffnx -#: guix-git/doc/guix.texi:4750 +#: guix-git/doc/guix.texi:4768 #, no-wrap msgid "{Scheme Procedure} inferior-package-native-search-paths @var{package}" msgstr "{Scheme-Prozedur} inferior-package-native-search-paths @var{Paket}" #. type: deffnx -#: guix-git/doc/guix.texi:4751 +#: guix-git/doc/guix.texi:4769 #, no-wrap msgid "{Scheme Procedure} inferior-package-transitive-native-search-paths @var{package}" msgstr "{Scheme-Prozedur} inferior-package-transitive-native-search-paths @var{Paket}" #. type: deffnx -#: guix-git/doc/guix.texi:4752 +#: guix-git/doc/guix.texi:4770 #, no-wrap msgid "{Scheme Procedure} inferior-package-search-paths @var{package}" msgstr "{Scheme-Prozedur} inferior-package-search-paths @var{Paket}" #. type: deffn -#: guix-git/doc/guix.texi:4757 +#: guix-git/doc/guix.texi:4775 msgid "These procedures are the counterpart of package record accessors (@pxref{package Reference}). Most of them work by querying the inferior @var{package} comes from, so the inferior must still be live when you call these procedures." msgstr "Diese Prozeduren sind das Gegenstück zu den Zugriffsmethoden des Verbunds „package“ für Pakete (siehe @ref{package Reference}). Die meisten davon funktionieren durch eine Abfrage auf dem Untergeordneten, von dem das @var{Paket} kommt, weshalb der Untergeordnete noch lebendig sein muss, wenn Sie diese Prozeduren aufrufen." #. type: Plain text -#: guix-git/doc/guix.texi:4767 +#: guix-git/doc/guix.texi:4785 msgid "Inferior packages can be used transparently like any other package or file-like object in G-expressions (@pxref{G-Expressions}). They are also transparently handled by the @code{packages->manifest} procedure, which is commonly used in manifests (@pxref{Invoking guix package, the @option{--manifest} option of @command{guix package}}). Thus you can insert an inferior package pretty much anywhere you would insert a regular package: in manifests, in the @code{packages} field of your @code{operating-system} declaration, and so on." msgstr "Untergeordnete Pakete können transparent wie jedes andere Paket oder dateiartige Objekt in G-Ausdrücken verwendet werden (siehe @ref{G-Expressions}). Sie werden auch transparent wie reguläre Pakete von der Prozedur @code{packages->manifest} behandelt, welche oft in Manifesten benutzt wird (siehe @ref{Invoking guix package, die Befehlszeilenoption @option{--manifest} von @command{guix package}}). Somit können Sie ein untergeordnetes Paket ziemlich überall dort verwenden, wo Sie ein reguläres Paket einfügen würden: in Manifesten, im Feld @code{packages} Ihrer @code{operating-system}-Deklaration und so weiter." #. type: section -#: guix-git/doc/guix.texi:4769 +#: guix-git/doc/guix.texi:4787 #, no-wrap msgid "Invoking @command{guix describe}" msgstr "@command{guix describe} aufrufen" #. type: Plain text -#: guix-git/doc/guix.texi:4780 +#: guix-git/doc/guix.texi:4798 msgid "Often you may want to answer questions like: ``Which revision of Guix am I using?'' or ``Which channels am I using?'' This is useful information in many situations: if you want to @emph{replicate} an environment on a different machine or user account, if you want to report a bug or to determine what change in the channels you are using caused it, or if you want to record your system state for reproducibility purposes. The @command{guix describe} command answers these questions." msgstr "Sie könnten sich des Öfteren Fragen stellen wie: „Welche Version von Guix benutze ich gerade?“ oder „Welche Kanäle benutze ich?“ Diese Informationen sind in vielen Situationen nützlich: wenn Sie eine Umgebung auf einer anderen Maschine oder mit einem anderen Benutzerkonto @emph{nachbilden} möchten, wenn Sie einen Fehler melden möchten, wenn Sie festzustellen versuchen, welche Änderung an den von Ihnen verwendeten Kanälen diesen Fehler verursacht hat, oder wenn Sie Ihren Systemzustand zum Zweck der Reproduzierbarkeit festhalten möchten. Der Befehl @command{guix describe} gibt Ihnen Antwort auf diese Fragen." #. type: Plain text -#: guix-git/doc/guix.texi:4784 +#: guix-git/doc/guix.texi:4802 msgid "When run from a @command{guix pull}ed @command{guix}, @command{guix describe} displays the channel(s) that it was built from, including their repository URL and commit IDs (@pxref{Channels}):" msgstr "Wenn Sie ihn aus einem mit @command{guix pull} bezogenen @command{guix} heraus ausführen, zeigt Ihnen @command{guix describe} die Kanäle an, aus denen es erstellt wurde, jeweils mitsamt ihrer Repository-URL und Commit-ID (siehe @ref{Channels}):" #. type: example -#: guix-git/doc/guix.texi:4792 +#: guix-git/doc/guix.texi:4810 #, no-wrap msgid "" "$ guix describe\n" @@ -11654,17 +11737,17 @@ msgstr "" " commit: e0fa68c7718fffd33d81af415279d6ddb518f727\n" #. type: Plain text -#: guix-git/doc/guix.texi:4801 +#: guix-git/doc/guix.texi:4819 msgid "If you're familiar with the Git version control system, this is similar in spirit to @command{git describe}; the output is also similar to that of @command{guix pull --list-generations}, but limited to the current generation (@pxref{Invoking guix pull, the @option{--list-generations} option}). Because the Git commit ID shown above unambiguously refers to a snapshot of Guix, this information is all it takes to describe the revision of Guix you're using, and also to replicate it." msgstr "Wenn Sie mit dem Versionskontrollsystem Git vertraut sind, erkennen Sie vielleicht die Ähnlichkeit zu @command{git describe}; die Ausgabe ähnelt auch der von @command{guix pull --list-generations} eingeschränkt auf die aktuelle Generation (siehe @ref{Invoking guix pull, die Befehlszeilenoption @option{--list-generations}}). Weil die oben gezeigte Git-Commit-ID eindeutig eine bestimmte Version von Guix bezeichnet, genügt diese Information, um die von Ihnen benutzte Version von Guix zu beschreiben, und auch, um sie nachzubilden." #. type: Plain text -#: guix-git/doc/guix.texi:4804 +#: guix-git/doc/guix.texi:4822 msgid "To make it easier to replicate Guix, @command{guix describe} can also be asked to return a list of channels instead of the human-readable description above:" msgstr "Damit es leichter ist, Guix nachzubilden, kann Ihnen @command{guix describe} auch eine Liste der Kanäle statt einer menschenlesbaren Beschreibung wie oben liefern:" #. type: example -#: guix-git/doc/guix.texi:4817 +#: guix-git/doc/guix.texi:4835 #, no-wrap msgid "" "$ guix describe -f channels\n" @@ -11692,190 +11775,190 @@ msgstr "" " \"BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA\")))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:4826 +#: guix-git/doc/guix.texi:4844 msgid "You can save this to a file and feed it to @command{guix pull -C} on some other machine or at a later point in time, which will instantiate @emph{this exact Guix revision} (@pxref{Invoking guix pull, the @option{-C} option}). From there on, since you're able to deploy the same revision of Guix, you can just as well @emph{replicate a complete software environment}. We humbly think that this is @emph{awesome}, and we hope you'll like it too!" msgstr "Sie können die Ausgabe in einer Datei speichern, die Sie an @command{guix pull -C} auf einer anderen Maschine oder zu einem späteren Zeitpunkt übergeben, wodurch dann eine Instanz @emph{von genau derselben Guix-Version} installiert wird (siehe @ref{Invoking guix pull, die Befehlszeilenoption @option{-C}}). Daraufhin können Sie, weil Sie jederzeit dieselbe Version von Guix installieren können, auch gleich @emph{eine vollständige Softwareumgebung genau nachbilden}. Wir halten das trotz aller Bescheidenheit für @emph{klasse} und hoffen, dass Ihnen das auch gefällt!" #. type: Plain text -#: guix-git/doc/guix.texi:4829 +#: guix-git/doc/guix.texi:4847 msgid "The details of the options supported by @command{guix describe} are as follows:" msgstr "Die genauen Befehlszeilenoptionen, die @command{guix describe} unterstützt, lauten wie folgt:" #. type: item -#: guix-git/doc/guix.texi:4831 guix-git/doc/guix.texi:6431 -#: guix-git/doc/guix.texi:14242 +#: guix-git/doc/guix.texi:4849 guix-git/doc/guix.texi:6474 +#: guix-git/doc/guix.texi:14599 #, no-wrap msgid "--format=@var{format}" msgstr "--format=@var{Format}" #. type: itemx -#: guix-git/doc/guix.texi:4832 guix-git/doc/guix.texi:6432 -#: guix-git/doc/guix.texi:14243 +#: guix-git/doc/guix.texi:4850 guix-git/doc/guix.texi:6475 +#: guix-git/doc/guix.texi:14600 #, no-wrap msgid "-f @var{format}" msgstr "-f @var{Format}" #. type: table -#: guix-git/doc/guix.texi:4834 guix-git/doc/guix.texi:14245 +#: guix-git/doc/guix.texi:4852 guix-git/doc/guix.texi:14602 msgid "Produce output in the specified @var{format}, one of:" msgstr "Die Ausgabe im angegebenen @var{Format} generieren, was eines der Folgenden sein muss:" #. type: item -#: guix-git/doc/guix.texi:4836 +#: guix-git/doc/guix.texi:4854 #, no-wrap msgid "human" msgstr "human" #. type: table -#: guix-git/doc/guix.texi:4838 +#: guix-git/doc/guix.texi:4856 msgid "produce human-readable output;" msgstr "für menschenlesbare Ausgabe," #. type: cindex -#: guix-git/doc/guix.texi:4838 guix-git/doc/guix.texi:5056 +#: guix-git/doc/guix.texi:4856 guix-git/doc/guix.texi:5074 #, no-wrap msgid "channels" msgstr "Kanäle" #. type: table -#: guix-git/doc/guix.texi:4842 +#: guix-git/doc/guix.texi:4860 msgid "produce a list of channel specifications that can be passed to @command{guix pull -C} or installed as @file{~/.config/guix/channels.scm} (@pxref{Invoking guix pull});" msgstr "eine Liste von Kanalspezifikationen erzeugen, die an @command{guix pull -C} übergeben werden oder als @file{~/.config/guix/channels.scm} eingesetzt werden können (siehe @ref{Invoking guix pull})," #. type: item -#: guix-git/doc/guix.texi:4842 +#: guix-git/doc/guix.texi:4860 #, no-wrap msgid "channels-sans-intro" msgstr "channels-sans-intro" #. type: table -#: guix-git/doc/guix.texi:4848 +#: guix-git/doc/guix.texi:4866 msgid "like @code{channels}, but omit the @code{introduction} field; use it to produce a channel specification suitable for Guix version 1.1.0 or earlier---the @code{introduction} field has to do with channel authentication (@pxref{Channels, Channel Authentication}) and is not supported by these older versions;" msgstr "verhält sich wie @code{channels}, aber ohne das @code{introduction}-Feld; benutzen Sie es, um eine Kanalspezifikation zu erzeugen, die für die Guix-Version 1.1.0 oder früher geeignet ist@tie{}— das @code{introduction}-Feld ist für Kanalauthentifizierung gedacht (siehe @ref{Channels, Kanalauthentifizierung}), die von diesen älteren Versionen nicht unterstützt wird," #. type: item -#: guix-git/doc/guix.texi:4848 guix-git/doc/guix.texi:12109 +#: guix-git/doc/guix.texi:4866 guix-git/doc/guix.texi:12424 #, no-wrap msgid "json" msgstr "json" #. type: cindex -#: guix-git/doc/guix.texi:4849 +#: guix-git/doc/guix.texi:4867 #, no-wrap msgid "JSON" msgstr "JSON" #. type: table -#: guix-git/doc/guix.texi:4851 +#: guix-git/doc/guix.texi:4869 msgid "produce a list of channel specifications in JSON format;" msgstr "generiert eine Liste von Kanalspezifikationen im JSON-Format," #. type: item -#: guix-git/doc/guix.texi:4851 guix-git/doc/guix.texi:14247 +#: guix-git/doc/guix.texi:4869 guix-git/doc/guix.texi:14604 #, no-wrap msgid "recutils" msgstr "recutils" #. type: table -#: guix-git/doc/guix.texi:4853 +#: guix-git/doc/guix.texi:4871 msgid "produce a list of channel specifications in Recutils format." msgstr "generiert eine Liste von Kanalspezifikationen im Recutils-Format." #. type: item -#: guix-git/doc/guix.texi:4855 +#: guix-git/doc/guix.texi:4873 #, no-wrap msgid "--list-formats" msgstr "--list-formats" #. type: table -#: guix-git/doc/guix.texi:4857 +#: guix-git/doc/guix.texi:4875 msgid "Display available formats for @option{--format} option." msgstr "Verfügbare Formate für die Befehlszeilenoption @option{--format} anzeigen." #. type: table -#: guix-git/doc/guix.texi:4861 +#: guix-git/doc/guix.texi:4879 msgid "Display information about @var{profile}." msgstr "Informationen über das @var{Profil} anzeigen." #. type: section -#: guix-git/doc/guix.texi:4864 +#: guix-git/doc/guix.texi:4882 #, no-wrap msgid "Invoking @command{guix archive}" msgstr "@command{guix archive} aufrufen" #. type: command{#1} -#: guix-git/doc/guix.texi:4866 +#: guix-git/doc/guix.texi:4884 #, no-wrap msgid "guix archive" msgstr "guix archive" #. type: cindex -#: guix-git/doc/guix.texi:4867 +#: guix-git/doc/guix.texi:4885 #, no-wrap msgid "archive" msgstr "Archivdateien" #. type: Plain text -#: guix-git/doc/guix.texi:4873 +#: guix-git/doc/guix.texi:4891 msgid "The @command{guix archive} command allows users to @dfn{export} files from the store into a single archive, and to later @dfn{import} them on a machine that runs Guix. In particular, it allows store files to be transferred from one machine to the store on another machine." msgstr "Der Befehl @command{guix archive} ermöglicht es Nutzern, Dateien im Store in eine einzelne Archivdatei zu @dfn{exportieren} und diese später auf einer Maschine, auf der Guix läuft, zu @dfn{importieren}. Insbesondere können so Store-Objekte von einer Maschine in den Store einer anderen Maschine übertragen werden." #. type: quotation -#: guix-git/doc/guix.texi:4877 +#: guix-git/doc/guix.texi:4895 msgid "If you're looking for a way to produce archives in a format suitable for tools other than Guix, @pxref{Invoking guix pack}." msgstr "Wenn Sie nach einer Möglichkeit suchen, Archivdateien für andere Werkzeuge als Guix zu erstellen, finden Sie Informationen dazu im Abschnitt @ref{Invoking guix pack}." #. type: cindex -#: guix-git/doc/guix.texi:4879 +#: guix-git/doc/guix.texi:4897 #, no-wrap msgid "exporting store items" msgstr "Store-Objekte exportieren" #. type: Plain text -#: guix-git/doc/guix.texi:4881 +#: guix-git/doc/guix.texi:4899 msgid "To export store files as an archive to standard output, run:" msgstr "Führen Sie Folgendes aus, um Store-Dateien als ein Archiv auf die Standardausgabe zu exportieren:" #. type: example -#: guix-git/doc/guix.texi:4884 +#: guix-git/doc/guix.texi:4902 #, no-wrap msgid "guix archive --export @var{options} @var{specifications}...\n" msgstr "guix archive --export @var{Optionen} @var{Spezifikationen}…\n" #. type: Plain text -#: guix-git/doc/guix.texi:4891 +#: guix-git/doc/guix.texi:4909 msgid "@var{specifications} may be either store file names or package specifications, as for @command{guix package} (@pxref{Invoking guix package}). For instance, the following command creates an archive containing the @code{gui} output of the @code{git} package and the main output of @code{emacs}:" msgstr "@var{Spezifikationen} sind dabei entweder die Namen von Store-Dateien oder Paketspezifikationen wie bei @command{guix package} (siehe @ref{Invoking guix package}). Zum Beispiel erzeugt der folgende Befehl ein Archiv der @code{gui}-Ausgabe des Pakets @code{git} sowie die Hauptausgabe von @code{emacs}:" #. type: example -#: guix-git/doc/guix.texi:4894 +#: guix-git/doc/guix.texi:4912 #, no-wrap msgid "guix archive --export git:gui /gnu/store/...-emacs-24.3 > great.nar\n" msgstr "guix archive --export git:gui /gnu/store/…-emacs-24.3 > groß.nar\n" #. type: Plain text -#: guix-git/doc/guix.texi:4899 +#: guix-git/doc/guix.texi:4917 msgid "If the specified packages are not built yet, @command{guix archive} automatically builds them. The build process may be controlled with the common build options (@pxref{Common Build Options})." msgstr "Wenn die angegebenen Pakete noch nicht erstellt worden sind, werden sie durch @command{guix archive} automatisch erstellt. Der Erstellungsprozess kann durch die gemeinsamen Erstellungsoptionen gesteuert werden (siehe @ref{Common Build Options})." #. type: Plain text -#: guix-git/doc/guix.texi:4902 +#: guix-git/doc/guix.texi:4920 msgid "To transfer the @code{emacs} package to a machine connected over SSH, one would run:" msgstr "Um das @code{emacs}-Paket auf eine über SSH verbundene Maschine zu übertragen, würde man dies ausführen:" #. type: example -#: guix-git/doc/guix.texi:4905 +#: guix-git/doc/guix.texi:4923 #, no-wrap msgid "guix archive --export -r emacs | ssh the-machine guix archive --import\n" msgstr "guix archive --export -r emacs | ssh die-maschine guix archive --import\n" #. type: Plain text -#: guix-git/doc/guix.texi:4910 +#: guix-git/doc/guix.texi:4928 msgid "Similarly, a complete user profile may be transferred from one machine to another like this:" msgstr "Auf gleiche Art kann auch ein vollständiges Benutzerprofil von einer Maschine auf eine andere übertragen werden:" #. type: example -#: guix-git/doc/guix.texi:4914 +#: guix-git/doc/guix.texi:4932 #, no-wrap msgid "" "guix archive --export -r $(readlink -f ~/.guix-profile) | \\\n" @@ -11885,187 +11968,187 @@ msgstr "" " ssh die-maschine guix archive --import\n" #. type: Plain text -#: guix-git/doc/guix.texi:4924 +#: guix-git/doc/guix.texi:4942 msgid "However, note that, in both examples, all of @code{emacs} and the profile as well as all of their dependencies are transferred (due to @option{-r}), regardless of what is already available in the store on the target machine. The @option{--missing} option can help figure out which items are missing from the target store. The @command{guix copy} command simplifies and optimizes this whole process, so this is probably what you should use in this case (@pxref{Invoking guix copy})." msgstr "Jedoch sollten Sie in beiden Beispielen beachten, dass alles, was zu @code{emacs}, dem Profil oder deren Abhängigkeiten (wegen @option{-r}) gehört, übertragen wird, egal ob es schon im Store der Zielmaschine vorhanden ist oder nicht. Mit der Befehlszeilenoption @option{--missing} lässt sich herausfinden, welche Objekte im Ziel-Store noch fehlen. Der Befehl @command{guix copy} vereinfacht und optimiert diesen gesamten Prozess, ist also, was Sie in diesem Fall wahrscheinlich eher benutzen wollten (siehe @ref{Invoking guix copy})." #. type: cindex -#: guix-git/doc/guix.texi:4925 +#: guix-git/doc/guix.texi:4943 #, no-wrap msgid "nar, archive format" msgstr "Nar, Archivformat" #. type: cindex -#: guix-git/doc/guix.texi:4926 +#: guix-git/doc/guix.texi:4944 #, no-wrap msgid "normalized archive (nar)" msgstr "Normalisiertes Archiv (Nar)" #. type: cindex -#: guix-git/doc/guix.texi:4927 +#: guix-git/doc/guix.texi:4945 #, no-wrap msgid "nar bundle, archive format" msgstr "Nar-Bündel, Archivformat" #. type: Plain text -#: guix-git/doc/guix.texi:4932 +#: guix-git/doc/guix.texi:4950 msgid "Each store item is written in the @dfn{normalized archive} or @dfn{nar} format (described below), and the output of @command{guix archive --export} (and input of @command{guix archive --import}) is a @dfn{nar bundle}." msgstr "Dabei wird jedes Store-Objekt als „normalisiertes Archiv“, kurz „Nar“, formatiert (was im Folgenden beschrieben wird) und die Ausgabe von @command{guix archive --export} (bzw.@: die Eingabe von @command{guix archive --import}) ist ein @dfn{Nar-Bündel}." #. type: Plain text -#: guix-git/doc/guix.texi:4942 +#: guix-git/doc/guix.texi:4960 msgid "The nar format is comparable in spirit to `tar', but with differences that make it more appropriate for our purposes. First, rather than recording all Unix metadata for each file, the nar format only mentions the file type (regular, directory, or symbolic link); Unix permissions and owner/group are dismissed. Second, the order in which directory entries are stored always follows the order of file names according to the C locale collation order. This makes archive production fully deterministic." msgstr "Das Nar-Format folgt einem ähnlichen Gedanken wie beim „tar“-Format, unterscheidet sich aber auf eine für unsere Zwecke geeignetere Weise. Erstens werden im Nar-Format nicht sämtliche Unix-Metadaten aller Dateien aufgenommen, sondern nur der Dateityp (ob es sich um eine reguläre Datei, ein Verzeichnis oder eine symbolische Verknüpfung handelt). Unix-Dateiberechtigungen sowie Besitzer und Gruppe werden nicht gespeichert. Zweitens entspricht die Reihenfolge, in der der Inhalt von Verzeichnissen abgelegt wird, immer der Reihenfolge, in der die Dateinamen gemäß der C-Locale sortiert würden. Dadurch wird die Erstellung von Archivdateien völlig deterministisch." #. type: Plain text -#: guix-git/doc/guix.texi:4946 +#: guix-git/doc/guix.texi:4964 msgid "That nar bundle format is essentially the concatenation of zero or more nars along with metadata for each store item it contains: its file name, references, corresponding derivation, and a digital signature." msgstr "Das Nar-Bündel-Format setzt sich im Prinzip aus null oder mehr aneinandergehängten Nars zusammen mit Metadaten für jedes enthaltene Store-Objekt, nämlich dessen Dateinamen, Referenzen, der zugehörigen Ableitung sowie einer digitalen Signatur." #. type: Plain text -#: guix-git/doc/guix.texi:4952 +#: guix-git/doc/guix.texi:4970 msgid "When exporting, the daemon digitally signs the contents of the archive, and that digital signature is appended. When importing, the daemon verifies the signature and rejects the import in case of an invalid signature or if the signing key is not authorized." msgstr "Beim Exportieren versieht der Daemon den Inhalt des Archivs mit einer digitalen Signatur, auch Beglaubigung genannt. Diese digitale Signatur wird an das Archiv angehängt. Beim Importieren verifiziert der Daemon die Signatur und lehnt den Import ab, falls die Signatur ungültig oder der Signierschlüssel nicht autorisiert ist." #. type: Plain text -#: guix-git/doc/guix.texi:4954 +#: guix-git/doc/guix.texi:4972 msgid "The main options are:" msgstr "Die wichtigsten Befehlszeilenoptionen sind:" #. type: item -#: guix-git/doc/guix.texi:4956 +#: guix-git/doc/guix.texi:4974 #, no-wrap msgid "--export" msgstr "--export" #. type: table -#: guix-git/doc/guix.texi:4959 +#: guix-git/doc/guix.texi:4977 msgid "Export the specified store files or packages (see below). Write the resulting archive to the standard output." msgstr "Exportiert die angegebenen Store-Dateien oder Pakete (siehe unten) und schreibt das resultierende Archiv auf die Standardausgabe." #. type: table -#: guix-git/doc/guix.texi:4962 +#: guix-git/doc/guix.texi:4980 msgid "Dependencies are @emph{not} included in the output, unless @option{--recursive} is passed." msgstr "Abhängigkeiten @emph{fehlen} in der Ausgabe, außer wenn @option{--recursive} angegeben wurde." #. type: itemx -#: guix-git/doc/guix.texi:4963 guix-git/doc/guix.texi:11830 -#: guix-git/doc/guix.texi:11956 guix-git/doc/guix.texi:11981 -#: guix-git/doc/guix.texi:12013 guix-git/doc/guix.texi:12184 -#: guix-git/doc/guix.texi:12225 guix-git/doc/guix.texi:12276 -#: guix-git/doc/guix.texi:12301 guix-git/doc/guix.texi:12317 -#: guix-git/doc/guix.texi:12365 guix-git/doc/guix.texi:12401 +#: guix-git/doc/guix.texi:4981 guix-git/doc/guix.texi:12144 +#: guix-git/doc/guix.texi:12271 guix-git/doc/guix.texi:12296 +#: guix-git/doc/guix.texi:12328 guix-git/doc/guix.texi:12499 +#: guix-git/doc/guix.texi:12540 guix-git/doc/guix.texi:12591 +#: guix-git/doc/guix.texi:12616 guix-git/doc/guix.texi:12632 +#: guix-git/doc/guix.texi:12680 guix-git/doc/guix.texi:12716 #, no-wrap msgid "-r" msgstr "-r" #. type: item -#: guix-git/doc/guix.texi:4964 guix-git/doc/guix.texi:11829 -#: guix-git/doc/guix.texi:11955 guix-git/doc/guix.texi:11980 -#: guix-git/doc/guix.texi:12012 guix-git/doc/guix.texi:12183 -#: guix-git/doc/guix.texi:12224 guix-git/doc/guix.texi:12275 -#: guix-git/doc/guix.texi:12300 guix-git/doc/guix.texi:12316 -#: guix-git/doc/guix.texi:12364 guix-git/doc/guix.texi:12400 -#: guix-git/doc/guix.texi:12449 +#: guix-git/doc/guix.texi:4982 guix-git/doc/guix.texi:12143 +#: guix-git/doc/guix.texi:12270 guix-git/doc/guix.texi:12295 +#: guix-git/doc/guix.texi:12327 guix-git/doc/guix.texi:12498 +#: guix-git/doc/guix.texi:12539 guix-git/doc/guix.texi:12590 +#: guix-git/doc/guix.texi:12615 guix-git/doc/guix.texi:12631 +#: guix-git/doc/guix.texi:12679 guix-git/doc/guix.texi:12715 +#: guix-git/doc/guix.texi:12764 #, no-wrap msgid "--recursive" msgstr "--recursive" #. type: table -#: guix-git/doc/guix.texi:4969 +#: guix-git/doc/guix.texi:4987 msgid "When combined with @option{--export}, this instructs @command{guix archive} to include dependencies of the given items in the archive. Thus, the resulting archive is self-contained: it contains the closure of the exported store items." msgstr "Zusammen mit @option{--export} wird @command{guix archive} hiermit angewiesen, Abhängigkeiten der angegebenen Objekte auch ins Archiv aufzunehmen. Das resultierende Archiv ist somit eigenständig; es enthält den Abschluss der exportierten Store-Objekte." #. type: item -#: guix-git/doc/guix.texi:4970 +#: guix-git/doc/guix.texi:4988 #, no-wrap msgid "--import" msgstr "--import" #. type: table -#: guix-git/doc/guix.texi:4975 +#: guix-git/doc/guix.texi:4993 msgid "Read an archive from the standard input, and import the files listed therein into the store. Abort if the archive has an invalid digital signature, or if it is signed by a public key not among the authorized keys (see @option{--authorize} below)." msgstr "Ein Archiv von der Standardeingabe lesen und darin enthaltende Dateien in den Store importieren. Der Import bricht ab, wenn das Archiv keine gültige digitale Signatur hat oder wenn es von einem öffentlichen Schlüssel signiert wurde, der keiner der autorisierten Schlüssel ist (siehe @option{--authorize} weiter unten)." #. type: item -#: guix-git/doc/guix.texi:4976 +#: guix-git/doc/guix.texi:4994 #, no-wrap msgid "--missing" msgstr "--missing" #. type: table -#: guix-git/doc/guix.texi:4980 +#: guix-git/doc/guix.texi:4998 msgid "Read a list of store file names from the standard input, one per line, and write on the standard output the subset of these files missing from the store." msgstr "Eine Liste der Store-Dateinamen von der Standardeingabe lesen, je ein Name pro Zeile, und auf die Standardausgabe die Teilmenge dieser Dateien schreiben, die noch nicht im Store vorliegt." #. type: item -#: guix-git/doc/guix.texi:4981 +#: guix-git/doc/guix.texi:4999 #, no-wrap msgid "--generate-key[=@var{parameters}]" msgstr "--generate-key[=@var{Parameter}]" #. type: cindex -#: guix-git/doc/guix.texi:4982 +#: guix-git/doc/guix.texi:5000 #, no-wrap msgid "signing, archives" msgstr "Signieren, von Archiven" #. type: table -#: guix-git/doc/guix.texi:4989 +#: guix-git/doc/guix.texi:5007 msgid "Generate a new key pair for the daemon. This is a prerequisite before archives can be exported with @option{--export}. This operation is usually instantaneous but it can take time if the system's entropy pool needs to be refilled. On Guix System, @code{guix-service-type} takes care of generating this key pair the first boot." msgstr "Ein neues Schlüsselpaar für den Daemon erzeugen. Dies ist erforderlich, damit Archive mit @option{--export} exportiert werden können. Normalerweise wird diese Option sofort umgesetzt, jedoch kann sie, wenn erst der Entropie-Pool neu gefüllt werden muss, einige Zeit in Anspruch nehmen. Auf Guix System kümmert sich der @code{guix-service-type} darum, dass beim ersten Systemstart das Schlüsselpaar erzeugt wird." #. type: table -#: guix-git/doc/guix.texi:4999 +#: guix-git/doc/guix.texi:5017 msgid "The generated key pair is typically stored under @file{/etc/guix}, in @file{signing-key.pub} (public key) and @file{signing-key.sec} (private key, which must be kept secret). When @var{parameters} is omitted, an ECDSA key using the Ed25519 curve is generated, or, for Libgcrypt versions before 1.6.0, it is a 4096-bit RSA key. Alternatively, @var{parameters} can specify @code{genkey} parameters suitable for Libgcrypt (@pxref{General public-key related Functions, @code{gcry_pk_genkey},, gcrypt, The Libgcrypt Reference Manual})." msgstr "Das erzeugte Schlüsselpaar wird typischerweise unter @file{/etc/guix} gespeichert, in den Dateien @file{signing-key.pub} (für den öffentlichen Schlüssel) und @file{signing-key.sec} (für den privaten Schlüssel, der geheim gehalten werden muss). Wurden keine @var{Parameters} angegeben, wird ein ECDSA-Schlüssel unter Verwendung der Kurve Ed25519 erzeugt, oder, falls die Libgcrypt-Version älter als 1.6.0 ist, ein 4096-Bit-RSA-Schlüssel. Sonst geben die @var{Parameter} für Libgcrypt geeignete Parameter für @code{genkey} an (siehe @ref{General public-key related Functions, @code{gcry_pk_genkey},, gcrypt, Referenzhandbuch von Libgcrypt})." #. type: item -#: guix-git/doc/guix.texi:5000 +#: guix-git/doc/guix.texi:5018 #, no-wrap msgid "--authorize" msgstr "--authorize" #. type: cindex -#: guix-git/doc/guix.texi:5001 +#: guix-git/doc/guix.texi:5019 #, no-wrap msgid "authorizing, archives" msgstr "Autorisieren, von Archiven" #. type: table -#: guix-git/doc/guix.texi:5005 +#: guix-git/doc/guix.texi:5023 msgid "Authorize imports signed by the public key passed on standard input. The public key must be in ``s-expression advanced format''---i.e., the same format as the @file{signing-key.pub} file." msgstr "Mit dem auf der Standardeingabe übergebenen öffentlichen Schlüssel signierte Importe autorisieren. Der öffentliche Schlüssel muss als „advanced“-formatierter S-Ausdruck gespeichert sein, d.h.@: im selben Format wie die Datei @file{signing-key.pub}." #. type: table -#: guix-git/doc/guix.texi:5012 +#: guix-git/doc/guix.texi:5030 msgid "The list of authorized keys is kept in the human-editable file @file{/etc/guix/acl}. The file contains @url{https://people.csail.mit.edu/rivest/Sexp.txt, ``advanced-format s-expressions''} and is structured as an access-control list in the @url{https://theworld.com/~cme/spki.txt, Simple Public-Key Infrastructure (SPKI)}." msgstr "Die Liste autorisierter Schlüssel wird in der Datei @file{/etc/guix/acl} gespeichert, die auch von Hand bearbeitet werden kann. Die Datei enthält @url{https://people.csail.mit.edu/rivest/Sexp.txt, „advanced“-formatierte S-Ausdrücke} und ist als eine Access Control List für die @url{https://theworld.com/~cme/spki.txt, Simple Public-Key Infrastructure (SPKI)} aufgebaut." #. type: item -#: guix-git/doc/guix.texi:5013 +#: guix-git/doc/guix.texi:5031 #, no-wrap msgid "--extract=@var{directory}" msgstr "--extract=@var{Verzeichnis}" #. type: itemx -#: guix-git/doc/guix.texi:5014 +#: guix-git/doc/guix.texi:5032 #, no-wrap msgid "-x @var{directory}" msgstr "-x @var{Verzeichnis}" #. type: table -#: guix-git/doc/guix.texi:5018 +#: guix-git/doc/guix.texi:5036 msgid "Read a single-item archive as served by substitute servers (@pxref{Substitutes}) and extract it to @var{directory}. This is a low-level operation needed in only very narrow use cases; see below." msgstr "Ein Archiv mit einem einzelnen Objekt lesen, wie es von Substitutservern geliefert wird (siehe @ref{Substitutes}), und ins @var{Verzeichnis} entpacken. Dies ist eine systemnahe Operation, die man nur selten direkt benutzt; siehe unten." #. type: table -#: guix-git/doc/guix.texi:5021 +#: guix-git/doc/guix.texi:5039 msgid "For example, the following command extracts the substitute for Emacs served by @code{@value{SUBSTITUTE-SERVER-1}} to @file{/tmp/emacs}:" msgstr "Zum Beispiel entpackt folgender Befehl das Substitut für Emacs, wie es von @code{@value{SUBSTITUTE-SERVER-1}} geliefert wird, nach @file{/tmp/emacs}:" #. type: example -#: guix-git/doc/guix.texi:5026 +#: guix-git/doc/guix.texi:5044 #, no-wrap msgid "" "$ wget -O - \\\n" @@ -12077,35 +12160,35 @@ msgstr "" " | gunzip | guix archive -x /tmp/emacs\n" #. type: table -#: guix-git/doc/guix.texi:5033 +#: guix-git/doc/guix.texi:5051 msgid "Single-item archives are different from multiple-item archives produced by @command{guix archive --export}; they contain a single store item, and they do @emph{not} embed a signature. Thus this operation does @emph{no} signature verification and its output should be considered unsafe." msgstr "Archive mit nur einem einzelnen Objekt unterscheiden sich von Archiven für mehrere Dateien, wie sie @command{guix archive --export} erzeugt; sie enthalten nur ein einzelnes Store-Objekt und @emph{keine} eingebettete Signatur. Beim Entpacken findet also @emph{keine} Signaturprüfung statt und ihrer Ausgabe sollte so erst einmal nicht vertraut werden." #. type: table -#: guix-git/doc/guix.texi:5037 +#: guix-git/doc/guix.texi:5055 msgid "The primary purpose of this operation is to facilitate inspection of archive contents coming from possibly untrusted substitute servers (@pxref{Invoking guix challenge})." msgstr "Der eigentliche Zweck dieser Operation ist, die Inspektion von Archivinhalten von Substitutservern möglich zu machen, auch wenn diesen unter Umständen nicht vertraut wird (siehe @ref{Invoking guix challenge})." #. type: item -#: guix-git/doc/guix.texi:5038 +#: guix-git/doc/guix.texi:5056 #, no-wrap msgid "--list" msgstr "--list" #. type: itemx -#: guix-git/doc/guix.texi:5039 guix-git/doc/guix.texi:12171 -#: guix-git/doc/guix.texi:12218 +#: guix-git/doc/guix.texi:5057 guix-git/doc/guix.texi:12486 +#: guix-git/doc/guix.texi:12533 #, no-wrap msgid "-t" msgstr "-t" #. type: table -#: guix-git/doc/guix.texi:5043 +#: guix-git/doc/guix.texi:5061 msgid "Read a single-item archive as served by substitute servers (@pxref{Substitutes}) and print the list of files it contains, as in this example:" msgstr "Ein Archiv mit einem einzelnen Objekt lesen, wie es von Substitutservern geliefert wird (siehe @ref{Substitutes}), und die Dateien darin ausgeben, wie in diesem Beispiel:" #. type: example -#: guix-git/doc/guix.texi:5048 +#: guix-git/doc/guix.texi:5066 #, no-wrap msgid "" "$ wget -O - \\\n" @@ -12117,47 +12200,47 @@ msgstr "" " | lzip -d | guix archive -t\n" #. type: cindex -#: guix-git/doc/guix.texi:5059 +#: guix-git/doc/guix.texi:5077 #, no-wrap msgid "@command{guix pull}, configuration file" msgstr "@command{guix pull}, Konfigurationsdatei" #. type: cindex -#: guix-git/doc/guix.texi:5060 +#: guix-git/doc/guix.texi:5078 #, no-wrap msgid "configuration of @command{guix pull}" msgstr "Konfiguration von @command{guix pull}" #. type: Plain text -#: guix-git/doc/guix.texi:5071 +#: guix-git/doc/guix.texi:5089 msgid "Guix and its package collection are updated by running @command{guix pull} (@pxref{Invoking guix pull}). By default @command{guix pull} downloads and deploys Guix itself from the official GNU@tie{}Guix repository. This can be customized by defining @dfn{channels} in the @file{~/.config/guix/channels.scm} file. A channel specifies a URL and branch of a Git repository to be deployed, and @command{guix pull} can be instructed to pull from one or more channels. In other words, channels can be used to @emph{customize} and to @emph{extend} Guix, as we will see below. Guix is able to take into account security concerns and deal with authenticated updates." msgstr "Guix und die Sammlung darin verfügbarer Pakete können Sie durch Ausführen von @command{guix pull} aktualisieren (siehe @ref{Invoking guix pull}). Standardmäßig lädt @command{guix pull} Guix selbst vom offiziellen Repository von GNU@tie{}Guix herunter und installiert es. Diesen Vorgang können Sie anpassen, indem Sie @dfn{Kanäle} in der Datei @file{~/.config/guix/channels.scm} angeben. Ein Kanal enthält eine Angabe einer URL und eines Branches eines zu installierenden Git-Repositorys. Sie können @command{guix pull} veranlassen, die Aktualisierungen von einem oder mehreren Kanälen zu beziehen. Mit anderen Worten können Kanäle benutzt werden, um Guix @emph{anzupassen} und zu @emph{erweitern}, wie wir im Folgenden sehen werden. Guix ist in der Lage, dabei Sicherheitsbedenken zu berücksichtigen und Aktualisierungen zu authentifizieren." #. type: cindex -#: guix-git/doc/guix.texi:5089 +#: guix-git/doc/guix.texi:5107 #, no-wrap msgid "extending the package collection (channels)" msgstr "Paketsammlung erweitern (Kanäle)" #. type: cindex -#: guix-git/doc/guix.texi:5090 +#: guix-git/doc/guix.texi:5108 #, no-wrap msgid "variant packages (channels)" msgstr "Paketvarianten (Kanäle)" #. type: Plain text -#: guix-git/doc/guix.texi:5094 +#: guix-git/doc/guix.texi:5112 msgid "You can specify @emph{additional channels} to pull from. To use a channel, write @code{~/.config/guix/channels.scm} to instruct @command{guix pull} to pull from it @emph{in addition} to the default Guix channel(s):" msgstr "Sie können auch @emph{weitere Kanäle} als Bezugsquelle angeben. Um einen Kanal zu benutzen, tragen Sie ihn in @code{~/.config/guix/channels.scm} ein, damit @command{guix pull} diesen Kanal @emph{zusätzlich} zu den standardmäßigen Guix-Kanälen als Paketquelle verwendet:" #. type: vindex -#: guix-git/doc/guix.texi:5095 +#: guix-git/doc/guix.texi:5113 #, no-wrap msgid "%default-channels" msgstr "%default-channels" #. type: lisp -#: guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5120 #, no-wrap msgid "" ";; Add variant packages to those Guix provides.\n" @@ -12173,12 +12256,12 @@ msgstr "" " %default-channels)\n" #. type: Plain text -#: guix-git/doc/guix.texi:5112 +#: guix-git/doc/guix.texi:5130 msgid "Note that the snippet above is (as always!)@: Scheme code; we use @code{cons} to add a channel the list of channels that the variable @code{%default-channels} is bound to (@pxref{Pairs, @code{cons} and lists,, guile, GNU Guile Reference Manual}). With this file in place, @command{guix pull} builds not only Guix but also the package modules from your own repository. The result in @file{~/.config/guix/current} is the union of Guix with your own package modules:" msgstr "Beachten Sie, dass der obige Schnipsel (wie immer!)@: Scheme-Code ist; mit @code{cons} fügen wir einen Kanal zur Liste der Kanäle hinzu, an die die Variable @code{%default-channels} gebunden ist (siehe @ref{Pairs, @code{cons} and lists,, guile, Referenzhandbuch zu GNU Guile}). Mit diesem Dateiinhalt wird @command{guix pull} nun nicht mehr nur Guix, sondern auch die Paketmodule aus Ihrem Repository erstellen. Das Ergebnis in @file{~/.config/guix/current} ist so die Vereinigung von Guix und Ihren eigenen Paketmodulen." #. type: example -#: guix-git/doc/guix.texi:5127 +#: guix-git/doc/guix.texi:5145 #, no-wrap msgid "" "$ guix pull --list-generations\n" @@ -12210,17 +12293,17 @@ msgstr "" " 4 packages upgraded: emacs-racket-mode@@0.0.2-2.1b78827, …\n" #. type: Plain text -#: guix-git/doc/guix.texi:5135 +#: guix-git/doc/guix.texi:5153 msgid "The output of @command{guix pull} above shows that Generation@tie{}19 includes both Guix and packages from the @code{variant-personal-packages} channel. Among the new and upgraded packages that are listed, some like @code{variant-gimp} and @code{variant-emacs-with-cool-features} might come from @code{variant-packages}, while others come from the Guix default channel." msgstr "Obige Ausgabe von @command{guix pull} zeigt an, dass Generation@tie{}19 sowohl Guix als auch Pakete aus dem Kanal @code{paketvarianten} enthält. Unter den aufgeführten neuen und aktualisierten Paketen kommen vielleicht manche wie @code{gimp-variante} und @code{emacs-variante-mit-coolen-features} aus @code{paketvarianten}, während andere aus dem Standard-Guix-Kanal kommen." #. type: Plain text -#: guix-git/doc/guix.texi:5144 +#: guix-git/doc/guix.texi:5162 msgid "The channel called @code{guix} specifies where Guix itself---its command-line tools as well as its package collection---should be downloaded. For instance, suppose you want to update from another copy of the Guix repository at @code{example.org}, and specifically the @code{super-hacks} branch, you can write in @code{~/.config/guix/channels.scm} this specification:" msgstr "Der Kanal namens @code{guix} gibt an, wovon Guix selbst@tie{}— seine Befehlszeilenwerkzeuge und seine Paketsammlung@tie{}— heruntergeladen werden sollen. Wenn Sie zum Beispiel mit einer anderen Kopie des Guix-Repositorys arbeiten möchten und diese auf @code{example.org} zu finden ist, und zwar im Branch namens @code{super-hacks}, dann schreiben Sie folgende Spezifikation in @code{~/.config/guix/channels.scm}:" #. type: lisp -#: guix-git/doc/guix.texi:5151 +#: guix-git/doc/guix.texi:5169 #, no-wrap msgid "" ";; Tell 'guix pull' to use another repo.\n" @@ -12236,17 +12319,17 @@ msgstr "" " (branch \"super-hacks\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5157 +#: guix-git/doc/guix.texi:5175 msgid "From there on, @command{guix pull} will fetch code from the @code{super-hacks} branch of the repository at @code{example.org}. The authentication concern is addressed below ((@pxref{Channel Authentication})." msgstr "Ab dann wird @command{guix pull} seinen Code vom Branch @code{super-hacks} des Repositorys auf @code{example.org} beziehen. Wie man dessen Autorisierung bewerkstelligt, können Sie im Folgenden lesen (siehe @ref{Channel Authentication})." #. type: Plain text -#: guix-git/doc/guix.texi:5168 +#: guix-git/doc/guix.texi:5186 msgid "The @command{guix pull --list-generations} output above shows precisely which commits were used to build this instance of Guix. We can thus replicate it, say, on another machine, by providing a channel specification in @file{~/.config/guix/channels.scm} that is ``pinned'' to these commits:" msgstr "Die Ausgabe von @command{guix pull --list-generations} oben zeigt genau, aus welchen Commits diese Guix-Instanz erstellt wurde. Wir können Guix so zum Beispiel auf einer anderen Maschine nachbilden, indem wir eine Kanalspezifikation in @file{~/.config/guix/channels.scm} angeben, die auf diese Commits „festgesetzt“ ist." #. type: lisp -#: guix-git/doc/guix.texi:5179 +#: guix-git/doc/guix.texi:5197 #, no-wrap msgid "" ";; Deploy specific commits of my channels of interest.\n" @@ -12270,37 +12353,37 @@ msgstr "" " (commit \"dd3df5e2c8818760a8fc0bd699e55d3b69fef2bb\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5186 +#: guix-git/doc/guix.texi:5204 msgid "The @command{guix describe --format=channels} command can even generate this list of channels directly (@pxref{Invoking guix describe}). The resulting file can be used with the -C options of @command{guix pull} (@pxref{Invoking guix pull}) or @command{guix time-machine} (@pxref{Invoking guix time-machine})." msgstr "Der Befehl @command{guix describe --format=channels} kann diese Kanalliste sogar direkt erzeugen (siehe @ref{Invoking guix describe}). Die erzeugte Datei kann mit den @code{-C} genannten Befehlszeilenoptionen von @command{guix pull} (siehe @ref{Invoking guix pull}) oder von @command{guix time-machine} (siehe @ref{Invoking guix time-machine}) benutzt werden." #. type: Plain text -#: guix-git/doc/guix.texi:5193 +#: guix-git/doc/guix.texi:5211 msgid "At this point the two machines run the @emph{exact same Guix}, with access to the @emph{exact same packages}. The output of @command{guix build gimp} on one machine will be exactly the same, bit for bit, as the output of the same command on the other machine. It also means both machines have access to all the source code of Guix and, transitively, to all the source code of every package it defines." msgstr "Somit läuft auf beiden Maschinen @emph{genau dasselbe Guix} und es hat Zugang zu @emph{genau denselben Paketen}. Die Ausgabe von @command{guix build gimp} auf der einen Maschine wird Bit für Bit genau dieselbe wie die desselben Befehls auf der anderen Maschine sein. Das bedeutet auch, dass beide Maschinen Zugang zum gesamten Quellcode von Guix und daher auch transitiv Zugang zum Quellcode jedes davon definierten Pakets haben." #. type: Plain text -#: guix-git/doc/guix.texi:5198 +#: guix-git/doc/guix.texi:5216 msgid "This gives you super powers, allowing you to track the provenance of binary artifacts with very fine grain, and to reproduce software environments at will---some sort of ``meta reproducibility'' capabilities, if you will. @xref{Inferiors}, for another way to take advantage of these super powers." msgstr "Das verleiht Ihnen Superkräfte, mit denen Sie die Provenienz binärer Artefakte sehr feinkörnig nachverfolgen können und Software-Umgebungen nach Belieben nachbilden können. Sie können es als eine Art Fähigkeit zur „Meta-Reproduzierbarkeit“ auffassen, wenn Sie möchten. Der Abschnitt @ref{Inferiors} beschreibt eine weitere Möglichkeit, diese Superkräfte zu nutzen." #. type: anchor{#1} -#: guix-git/doc/guix.texi:5203 +#: guix-git/doc/guix.texi:5221 msgid "channel-authentication" msgstr "channel-authentication" #. type: Plain text -#: guix-git/doc/guix.texi:5209 +#: guix-git/doc/guix.texi:5227 msgid "The @command{guix pull} and @command{guix time-machine} commands @dfn{authenticate} the code retrieved from channels: they make sure each commit that is fetched is signed by an authorized developer. The goal is to protect from unauthorized modifications to the channel that would lead users to run malicious code." msgstr "Die Befehle @command{guix pull} und @command{guix time-machine} @dfn{authentifizieren} den von Kanälen bezogenen Code. Es wird geprüft, dass jeder geladene Commit von einem autorisierten Entwickler signiert wurde. Das Ziel ist, Sie vor unautorisierten Änderungen am Kanal, die Nutzer bösartigen Code ausführen lassen, zu schützen." #. type: Plain text -#: guix-git/doc/guix.texi:5214 +#: guix-git/doc/guix.texi:5232 msgid "As a user, you must provide a @dfn{channel introduction} in your channels file so that Guix knows how to authenticate its first commit. A channel specification, including its introduction, looks something along these lines:" msgstr "Als Nutzer müssen Sie eine @dfn{Kanaleinführung} („Channel Introduction“) in Ihrer Kanaldatei angeben, damit Guix weiß, wie der erste Commit authentifiziert werden kann. Eine Kanalspezifikation, zusammen mit seiner Einführung, sieht in etwa so aus:" #. type: lisp -#: guix-git/doc/guix.texi:5224 +#: guix-git/doc/guix.texi:5242 #, no-wrap msgid "" "(channel\n" @@ -12322,27 +12405,27 @@ msgstr "" " \"CABB A931 C0FF EEC6 900D 0CFB 090B 1199 3D9A EBB5\"))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5230 +#: guix-git/doc/guix.texi:5248 msgid "The specification above shows the name and URL of the channel. The call to @code{make-channel-introduction} above specifies that authentication of this channel starts at commit @code{6f0d8cc@dots{}}, which is signed by the OpenPGP key with fingerprint @code{CABB A931@dots{}}." msgstr "Obige Spezifikation zeigt den Namen und die URL des Kanals. Der Aufruf von @code{make-channel-introduction}, den Sie oben sehen, gibt an, dass die Authentifizierung dieses Kanals bei Commit @code{6f0d8cc…} beginnt, welcher mit dem OpenPGP-Schlüssel mit Fingerabdruck @code{CABB A931…} signiert ist." #. type: Plain text -#: guix-git/doc/guix.texi:5236 +#: guix-git/doc/guix.texi:5254 msgid "For the main channel, called @code{guix}, you automatically get that information from your Guix installation. For other channels, include the channel introduction provided by the channel authors in your @file{channels.scm} file. Make sure you retrieve the channel introduction from a trusted source since that is the root of your trust." msgstr "Für den Hauptkanal mit Namen @code{guix} bekommen Sie diese Informationen automatisch mit Ihrer Guix-Installation. Für andere Kanäle tragen Sie die Kanaleinführung, die Ihnen die Kanalautoren mitteilen, in die Datei @file{channels.scm} ein. Achten Sie dabei darauf, die Kanaleinführung von einer vertrauenswürdigen Quelle zu bekommen, denn sie stellt die Wurzel all Ihren Vertrauens dar." #. type: Plain text -#: guix-git/doc/guix.texi:5238 +#: guix-git/doc/guix.texi:5256 msgid "If you're curious about the authentication mechanics, read on!" msgstr "Wenn Sie neugierig sind, wie die Authentifizierung funktioniert, lesen Sie weiter!" #. type: Plain text -#: guix-git/doc/guix.texi:5249 +#: guix-git/doc/guix.texi:5267 msgid "When running @command{guix pull}, Guix will first compile the definitions of every available package. This is an expensive operation for which substitutes (@pxref{Substitutes}) may be available. The following snippet in @file{channels.scm} will ensure that @command{guix pull} uses the latest commit with available substitutes for the package definitions: this is done by querying the continuous integration server at @url{https://ci.guix.gnu.org}." msgstr "Wenn Sie @command{guix pull} ausführen, wird Guix als Erstes die Definition jedes verfügbaren Pakets kompilieren. Das ist eine teure Operation, für die es aber Substitute geben könnte (siehe @ref{Substitutes}). Mit dem folgenden Schnipsel in @file{channels.scm} wird sichergestellt, dass @command{guix pull} den neuesten Commit benutzt, für den bereits Substitute für die Paketdefinitionen vorliegen. Dazu wird der Server für Kontinuierliche Integration auf @url{https://ci.guix.gnu.org} angefragt." #. type: lisp -#: guix-git/doc/guix.texi:5252 +#: guix-git/doc/guix.texi:5270 #, no-wrap msgid "" "(use-modules (guix ci))\n" @@ -12352,7 +12435,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:5256 +#: guix-git/doc/guix.texi:5274 #, no-wrap msgid "" "(list (channel-with-substitutes-available\n" @@ -12364,75 +12447,75 @@ msgstr "" " \"https://ci.guix.gnu.org\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5263 +#: guix-git/doc/guix.texi:5281 msgid "Note that this does not mean that all the packages that you will install after running @command{guix pull} will have available substitutes. It only ensures that @command{guix pull} will not try to compile package definitions. This is particularly useful when using machines with limited resources." msgstr "Beachten Sie: Das heißt @emph{nicht}, dass für alle Pakete, die Sie installieren werden, nachdem Sie @command{guix pull} durchgeführt haben, bereits Substitute vorliegen. Es wird nur sichergestellt, dass @command{guix pull} keine Paketdefinitionen zu kompilieren versucht. Das hilft besonders auf Maschinen mit eingeschränkten Rechenressourcen." #. type: cindex -#: guix-git/doc/guix.texi:5267 +#: guix-git/doc/guix.texi:5285 #, no-wrap msgid "personal packages (channels)" msgstr "Eigene Pakete (Kanäle)" #. type: cindex -#: guix-git/doc/guix.texi:5268 +#: guix-git/doc/guix.texi:5286 #, no-wrap msgid "channels, for personal packages" msgstr "Kanäle, für eigene Pakete" #. type: Plain text -#: guix-git/doc/guix.texi:5276 +#: guix-git/doc/guix.texi:5294 msgid "Let's say you have a bunch of custom package variants or personal packages that you think would make little sense to contribute to the Guix project, but would like to have these packages transparently available to you at the command line. You would first write modules containing those package definitions (@pxref{Package Modules}), maintain them in a Git repository, and then you and anyone else can use it as an additional channel to get packages from. Neat, no?" msgstr "Sagen wir, Sie haben ein paar eigene Paketvarianten oder persönliche Pakete, von denen Sie meinen, dass sie @emph{nicht} geeignet sind, ins Guix-Projekt selbst aufgenommen zu werden, die Ihnen aber dennoch wie andere Pakete auf der Befehlszeile zur Verfügung stehen sollen. Dann würden Sie zunächst Module mit diesen Paketdefinitionen schreiben (siehe @ref{Package Modules}) und diese dann in einem Git-Repository verwalten, welches Sie selbst oder jeder andere dann als zusätzlichen Kanal eintragen können, von dem Pakete geladen werden. Klingt gut, oder?" #. type: quotation -#: guix-git/doc/guix.texi:5284 +#: guix-git/doc/guix.texi:5302 msgid "Before you, dear user, shout---``woow this is @emph{soooo coool}!''---and publish your personal channel to the world, we would like to share a few words of caution:" msgstr "Bevor Sie, verehrter Nutzer, ausrufen: „Wow, das ist @emph{soooo coool}!“, und Ihren eigenen Kanal der Welt zur Verfügung stellen, möchten wir Ihnen auch ein paar Worte der Warnung mit auf den Weg geben:" #. type: itemize -#: guix-git/doc/guix.texi:5292 +#: guix-git/doc/guix.texi:5310 msgid "Before publishing a channel, please consider contributing your package definitions to Guix proper (@pxref{Contributing}). Guix as a project is open to free software of all sorts, and packages in Guix proper are readily available to all Guix users and benefit from the project's quality assurance process." msgstr "Bevor Sie einen Kanal veröffentlichen, überlegen Sie sich bitte erst, ob Sie die Pakete nicht besser zum eigentlichen Guix-Projekt beisteuern (siehe @ref{Contributing}). Das Guix-Projekt ist gegenüber allen Arten freier Software offen und zum eigentlichen Guix gehörende Pakete stehen allen Guix-Nutzern zur Verfügung, außerdem profitieren sie von Guix’ Qualitätssicherungsprozess." #. type: itemize -#: guix-git/doc/guix.texi:5301 +#: guix-git/doc/guix.texi:5319 msgid "When you maintain package definitions outside Guix, we, Guix developers, consider that @emph{the compatibility burden is on you}. Remember that package modules and package definitions are just Scheme code that uses various programming interfaces (APIs). We want to remain free to change these APIs to keep improving Guix, possibly in ways that break your channel. We never change APIs gratuitously, but we will @emph{not} commit to freezing APIs either." msgstr "Wenn Sie Paketdefinitionen außerhalb von Guix betreuen, sehen wir Guix-Entwickler es als @emph{Ihre Aufgabe an, deren Kompatibilität sicherzstellen}. Bedenken Sie, dass Paketmodule und Paketdefinitionen nur Scheme-Code sind, der verschiedene Programmierschnittstellen (APIs) benutzt. Wir nehmen uns das Recht heraus, diese APIs jederzeit zu ändern, damit wir Guix besser machen können, womöglich auf eine Art, wodurch Ihr Kanal nicht mehr funktioniert. Wir ändern APIs nie einfach so, werden aber auch @emph{nicht} versprechen, APIs nicht zu verändern." #. type: itemize -#: guix-git/doc/guix.texi:5305 +#: guix-git/doc/guix.texi:5323 msgid "Corollary: if you're using an external channel and that channel breaks, please @emph{report the issue to the channel authors}, not to the Guix project." msgstr "Das bedeutet auch, dass Sie, wenn Sie einen externen Kanal verwenden und dieser kaputt geht, Sie dies bitte @emph{den Autoren des Kanals} und nicht dem Guix-Projekt melden." #. type: quotation -#: guix-git/doc/guix.texi:5312 +#: guix-git/doc/guix.texi:5330 msgid "You've been warned! Having said this, we believe external channels are a practical way to exert your freedom to augment Guix' package collection and to share your improvements, which are basic tenets of @uref{https://www.gnu.org/philosophy/free-sw.html, free software}. Please email us at @email{guix-devel@@gnu.org} if you'd like to discuss this." msgstr "Wir haben Sie gewarnt! Allerdings denken wir auch, dass externe Kanäle eine praktische Möglichkeit sind, die Paketsammlung von Guix zu ergänzen und Ihre Verbesserungen mit anderen zu teilen, wie es dem Grundgedanken @uref{https://www.gnu.org/philosophy/free-sw.html, freier Software} entspricht. Bitte schicken Sie eine E-Mail an @email{guix-devel@@gnu.org}, wenn Sie dies diskutieren möchten." #. type: Plain text -#: guix-git/doc/guix.texi:5324 +#: guix-git/doc/guix.texi:5342 msgid "To create a channel, create a Git repository containing your own package modules and make it available. The repository can contain anything, but a useful channel will contain Guile modules that export packages. Once you start using a channel, Guix will behave as if the root directory of that channel's Git repository has been added to the Guile load path (@pxref{Load Paths,,, guile, GNU Guile Reference Manual}). For example, if your channel contains a file at @file{my-packages/my-tools.scm} that defines a Guile module, then the module will be available under the name @code{(my-packages my-tools)}, and you will be able to use it like any other module (@pxref{Modules,,, guile, GNU Guile Reference Manual})." msgstr "Um einen Kanal zu erzeugen, müssen Sie ein Git-Repository mit Ihren eigenen Paketmodulen erzeugen und den Zugriff darauf ermöglichen. Das Repository kann beliebigen Inhalt haben, aber wenn es ein nützlicher Kanal sein soll, muss es Guile-Module enthalten, die Pakete exportieren. Sobald Sie anfangen, einen Kanal zu benutzen, verhält sich Guix, als wäre das Wurzelverzeichnis des Git-Repositorys des Kanals in Guiles Ladepfad enthalten (siehe @ref{Load Paths,,, guile, Referenzhandbuch zu GNU Guile}). Wenn Ihr Kanal also zum Beispiel eine Datei als @file{my-packages/my-tools.scm} enthält, die ein Guile-Modul definiert, dann wird das Modul unter dem Namen @code{(my-packages my-tools)} verfügbar sein und Sie werden es wie jedes andere Modul benutzen können (siehe @ref{Modules,,, guile, Referenzhandbuch zu GNU Guile})." #. type: Plain text -#: guix-git/doc/guix.texi:5329 +#: guix-git/doc/guix.texi:5347 msgid "As a channel author, consider bundling authentication material with your channel so that users can authenticate it. @xref{Channel Authentication}, and @ref{Specifying Channel Authorizations}, for info on how to do it." msgstr "Als Kanalautor möchten Sie vielleicht Materialien mitliefern, damit dessen Nutzer ihn authentifizieren können. Siehe @ref{Channel Authentication} und @ref{Specifying Channel Authorizations} für Informationen, wie das geht." #. type: cindex -#: guix-git/doc/guix.texi:5334 +#: guix-git/doc/guix.texi:5352 #, no-wrap msgid "subdirectory, channels" msgstr "Unterverzeichnis, Kanäle" #. type: Plain text -#: guix-git/doc/guix.texi:5338 +#: guix-git/doc/guix.texi:5356 msgid "As a channel author, you may want to keep your channel modules in a sub-directory. If your modules are in the sub-directory @file{guix}, you must add a meta-data file @file{.guix-channel} that contains:" msgstr "Als Kanalautor möchten Sie vielleicht Ihre Kanalmodule in einem Unterverzeichnis anlegen. Wenn sich Ihre Module im Unterverzeichnis @file{guix} befinden, müssen Sie eine Datei @file{.guix-channel} mit Metadaten einfügen:" #. type: lisp -#: guix-git/doc/guix.texi:5343 +#: guix-git/doc/guix.texi:5361 #, no-wrap msgid "" "(channel\n" @@ -12444,29 +12527,29 @@ msgstr "" " (directory \"guix\"))\n" #. type: cindex -#: guix-git/doc/guix.texi:5348 +#: guix-git/doc/guix.texi:5366 #, no-wrap msgid "dependencies, channels" msgstr "Abhängigkeiten, bei Kanälen" #. type: cindex -#: guix-git/doc/guix.texi:5349 +#: guix-git/doc/guix.texi:5367 #, no-wrap msgid "meta-data, channels" msgstr "Metadaten, bei Kanälen" #. type: Plain text -#: guix-git/doc/guix.texi:5354 +#: guix-git/doc/guix.texi:5372 msgid "Channel authors may decide to augment a package collection provided by other channels. They can declare their channel to be dependent on other channels in a meta-data file @file{.guix-channel}, which is to be placed in the root of the channel repository." msgstr "Kanalautoren können auch beschließen, die Paketsammlung von anderen Kanälen zu erweitern. Dazu können sie in einer Metadatendatei @file{.guix-channel} deklarieren, dass ihr Kanal von anderen Kanälen abhängt. Diese Datei muss im Wurzelverzeichnis des Kanal-Repositorys platziert werden." #. type: Plain text -#: guix-git/doc/guix.texi:5356 +#: guix-git/doc/guix.texi:5374 msgid "The meta-data file should contain a simple S-expression like this:" msgstr "Die Metadatendatei sollte einen einfachen S-Ausdruck wie diesen enthalten:" #. type: lisp -#: guix-git/doc/guix.texi:5364 +#: guix-git/doc/guix.texi:5382 #, no-wrap msgid "" "(channel\n" @@ -12486,7 +12569,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:5376 +#: guix-git/doc/guix.texi:5394 #, no-wrap msgid "" " ;; The 'introduction' bit below is optional: you would\n" @@ -12515,33 +12598,33 @@ msgstr "" " (branch \"testing\"))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5382 +#: guix-git/doc/guix.texi:5400 msgid "In the above example this channel is declared to depend on two other channels, which will both be fetched automatically. The modules provided by the channel will be compiled in an environment where the modules of all these declared channels are available." msgstr "Im Beispiel oben wird deklariert, dass dieser Kanal von zwei anderen Kanälen abhängt, die beide automatisch geladen werden. Die vom Kanal angebotenen Module werden in einer Umgebung kompiliert, in der die Module all dieser deklarierten Kanäle verfügbar sind." #. type: Plain text -#: guix-git/doc/guix.texi:5386 +#: guix-git/doc/guix.texi:5404 msgid "For the sake of reliability and maintainability, you should avoid dependencies on channels that you don't control, and you should aim to keep the number of dependencies to a minimum." msgstr "Um Verlässlichkeit und Wartbarkeit zu gewährleisten, sollten Sie darauf verzichten, eine Abhängigkeit von Kanälen herzustellen, die Sie nicht kontrollieren, außerdem sollten Sie sich auf eine möglichst kleine Anzahl von Abhängigkeiten beschränken." #. type: cindex -#: guix-git/doc/guix.texi:5390 +#: guix-git/doc/guix.texi:5408 #, no-wrap msgid "channel authorizations" msgstr "Kanalautorisierungen" #. type: anchor{#1} -#: guix-git/doc/guix.texi:5404 +#: guix-git/doc/guix.texi:5422 msgid "channel-authorizations" msgstr "channel-authorizations" #. type: Plain text -#: guix-git/doc/guix.texi:5404 +#: guix-git/doc/guix.texi:5422 msgid "As we saw above, Guix ensures the source code it pulls from channels comes from authorized developers. As a channel author, you need to specify the list of authorized developers in the @file{.guix-authorizations} file in the channel's Git repository. The authentication rule is simple: each commit must be signed by a key listed in the @file{.guix-authorizations} file of its parent commit(s)@footnote{Git commits form a @dfn{directed acyclic graph} (DAG). Each commit can have zero or more parents; ``regular'' commits have one parent and merge commits have two parent commits. Read @uref{https://eagain.net/articles/git-for-computer-scientists/, @i{Git for Computer Scientists}} for a great overview.} The @file{.guix-authorizations} file looks like this:" msgstr "Wie wir oben gesehen haben, wird durch Guix sichergestellt, dass von Kanälen geladener Code von autorisierten Entwicklern stammt. Als Kanalautor müssen Sie die Liste der autorisierten Entwickler in der Datei @file{.guix-authorizations} im Git-Repository des Kanals festlegen. Die Regeln für die Authentifizierung sind einfach: Jeder Commit muss mit einem Schlüssel signiert sein, der in der Datei @file{.guix-authorizations} seines bzw.@: seiner Elterncommits steht@footnote{Git-Commits bilden einen @dfn{gerichteten azyklischen Graphen} (englisch „directed acyclic graph“, kurz DAG). Jeder Commit kann null oder mehr Eltern haben; in der Regel haben Commits einen Elterncommit, Mergecommits haben zwei. Lesen Sie @uref{https://eagain.net/articles/git-for-computer-scientists/, @i{Git for Computer Scientists}} für eine gelungene Übersicht.} Die Datei @file{.guix-authorizations} sieht so aus:" #. type: lisp -#: guix-git/doc/guix.texi:5407 +#: guix-git/doc/guix.texi:5425 #, no-wrap msgid "" ";; Example '.guix-authorizations' file.\n" @@ -12551,7 +12634,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:5410 +#: guix-git/doc/guix.texi:5428 #, no-wrap msgid "" "(authorizations\n" @@ -12563,7 +12646,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:5417 +#: guix-git/doc/guix.texi:5435 #, no-wrap msgid "" " ((\"AD17 A21E F8AE D8F1 CC02 DBD9 F8AE D8F1 765C 61E3\"\n" @@ -12581,33 +12664,33 @@ msgstr "" " (name \"charlie\"))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5421 +#: guix-git/doc/guix.texi:5439 msgid "Each fingerprint is followed by optional key/value pairs, as in the example above. Currently these key/value pairs are ignored." msgstr "Auf jeden Fingerabdruck folgen optional Schlüssel-/Wert-Paare wie im obigen Beispiel. Derzeit werden diese Schlüssel-/Wert-Paare ignoriert." #. type: Plain text -#: guix-git/doc/guix.texi:5426 +#: guix-git/doc/guix.texi:5444 msgid "This authentication rule creates a chicken-and-egg issue: how do we authenticate the first commit? Related to that: how do we deal with channels whose repository history contains unsigned commits and lack @file{.guix-authorizations}? And how do we fork existing channels?" msgstr "Diese Authentifizierungsregel hat ein Henne-Ei-Problem zur Folge: Wie authentifizieren wir den ersten Commit? Und damit zusammenhängend: Was tun wir, wenn die Historie eines Kanal-Repositorys @emph{nicht} signierte Commits enthält und eine @file{.guix-authorizations}-Datei fehlt? Und wie legen wir eine Abspaltung („Fork“) existierender Kanäle an?" #. type: cindex -#: guix-git/doc/guix.texi:5427 +#: guix-git/doc/guix.texi:5445 #, no-wrap msgid "channel introduction" msgstr "Kanaleinführung" #. type: Plain text -#: guix-git/doc/guix.texi:5434 +#: guix-git/doc/guix.texi:5452 msgid "Channel introductions answer these questions by describing the first commit of a channel that should be authenticated. The first time a channel is fetched with @command{guix pull} or @command{guix time-machine}, the command looks up the introductory commit and verifies that it is signed by the specified OpenPGP key. From then on, it authenticates commits according to the rule above." msgstr "Kanaleinführungen beantworten diese Fragen, indem sie den ersten Commit eines Kanals angeben, der authentifiziert werden soll. Das erste Mal, wenn ein Kanal durch @command{guix pull} oder @command{guix time-machine} geladen wird, wird nachgeschaut, was der einführende Commit ist und ob er mit dem angegebenen OpenPGP-Schlüssel signiert wurde. Von da an werden Commits gemäß obiger Regel authentifiziert." #. type: Plain text -#: guix-git/doc/guix.texi:5441 +#: guix-git/doc/guix.texi:5459 msgid "Additionally, your channel must provide all the OpenPGP keys that were ever mentioned in @file{.guix-authorizations}, stored as @file{.key} files, which can be either binary or ``ASCII-armored''. By default, those @file{.key} files are searched for in the branch named @code{keyring} but you can specify a different branch name in @code{.guix-channel} like so:" msgstr "Außerdem muss Ihr Kanal alle OpenPGP-Schlüssel zur Verfügung stellen, die jemals in @file{.guix-authorizations} erwähnt wurden, gespeichert in Form von @file{.key}-Dateien, entweder als Binärdateien oder mit „ASCII-Hülle“. Nach Vorgabe wird nach diesen @file{.key}-Dateien im Branch namens @code{keyring} gesucht, aber Sie können wie hier einen anderen Branchnamen in @code{.guix-channel} angeben:" #. type: lisp -#: guix-git/doc/guix.texi:5446 +#: guix-git/doc/guix.texi:5464 #, no-wrap msgid "" "(channel\n" @@ -12619,59 +12702,59 @@ msgstr "" " (keyring-reference \"my-keyring-branch\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5450 +#: guix-git/doc/guix.texi:5468 msgid "To summarize, as the author of a channel, there are three things you have to do to allow users to authenticate your code:" msgstr "Zusammenfassen haben Kanalautoren drei Dinge zu tun, damit Nutzer deren Code authentifizieren können:" #. type: enumerate -#: guix-git/doc/guix.texi:5456 +#: guix-git/doc/guix.texi:5474 msgid "Export the OpenPGP keys of past and present committers with @command{gpg --export} and store them in @file{.key} files, by default in a branch named @code{keyring} (we recommend making it an @dfn{orphan branch})." msgstr "Exportieren Sie die OpenPGP-Schlüssel früherer und aktueller Commiter mittels @command{gpg --export} und speichern Sie sie in @file{.key}-Dateien, nach Vorgabe gespeichert in einem Branch namens @code{keyring} (wir empfehlen, dass Sie diesen als einen @dfn{verwaisten Branch}, d.h.@: einen „Orphan Branch“, anlegen)." #. type: enumerate -#: guix-git/doc/guix.texi:5461 +#: guix-git/doc/guix.texi:5479 msgid "Introduce an initial @file{.guix-authorizations} in the channel's repository. Do that in a signed commit (@pxref{Commit Access}, for information on how to sign Git commits.)" msgstr "Sie müssen eine anfängliche @file{.guix-authorizations}-Datei im Kanalrepository platzieren. Der Commit dazu muss signiert sein (siehe @ref{Commit Access} für Informationen, wie Sie Git-Commits signieren)." #. type: enumerate -#: guix-git/doc/guix.texi:5467 +#: guix-git/doc/guix.texi:5485 msgid "Advertise the channel introduction, for instance on your channel's web page. The channel introduction, as we saw above, is the commit/key pair---i.e., the commit that introduced @file{.guix-authorizations}, and the fingerprint of the OpenPGP used to sign it." msgstr "Sie müssen veröffentlichen, wie die Kanaleinführung aussieht, zum Beispiel auf der Webseite des Kanals. Die Kanaleinführung besteht, wie wir oben gesehen haben, aus einem Paar aus Commit und Schlüssel@tie{}— für denjenigen Commit, der @file{.guix-authorizations} hinzugefügt hat, mit dem Fingerabdruck des OpenPGP-Schlüssels, mit dem er signiert wurde." #. type: Plain text -#: guix-git/doc/guix.texi:5472 +#: guix-git/doc/guix.texi:5490 msgid "Before pushing to your public Git repository, you can run @command{guix git-authenticate} to verify that you did sign all the commits you are about to push with an authorized key:" msgstr "Bevor Sie auf Ihr öffentliches Git-Repository pushen, können Sie @command{guix git-authenticate} ausführen, um zu überprüfen, dass Sie alle Commits, die Sie pushen würden, mit einem autorisierten Schlüssel signiert haben:" #. type: example -#: guix-git/doc/guix.texi:5475 +#: guix-git/doc/guix.texi:5493 #, no-wrap msgid "guix git authenticate @var{commit} @var{signer}\n" msgstr "guix git authenticate @var{Commit} @var{Unterzeichner}\n" #. type: Plain text -#: guix-git/doc/guix.texi:5480 +#: guix-git/doc/guix.texi:5498 msgid "where @var{commit} and @var{signer} are your channel introduction. @xref{Invoking guix git authenticate}, for details." msgstr "Dabei sind @var{Commit} und @var{Unterzeichner} Ihre Kanaleinführung. Siehe @ref{Invoking guix git authenticate} für die Details." #. type: Plain text -#: guix-git/doc/guix.texi:5487 +#: guix-git/doc/guix.texi:5505 msgid "Publishing a signed channel requires discipline: any mistake, such as an unsigned commit or a commit signed by an unauthorized key, will prevent users from pulling from your channel---well, that's the whole point of authentication! Pay attention to merges in particular: merge commits are considered authentic if and only if they are signed by a key present in the @file{.guix-authorizations} file of @emph{both} branches." msgstr "Um einen signierten Kanal anzubieten, ist Disziplin vonnöten: Jeder Fehler, wie z.B.@: ein unsignierter Commit oder ein mit einem unautorisierten Schlüssel signierter Commit, verhindert, das Nutzer den Kanal benutzen können@tie{}— naja, das ist ja auch der Zweck der Authentifizierung! Passen Sie besonders bei Merges auf: Merge-Commits werden dann und nur dann als authentisch angesehen, wenn sie mit einem Schlüssel aus der @file{.guix-authorizations}-Datei @emph{beider} Branches signiert wurden." #. type: cindex -#: guix-git/doc/guix.texi:5491 +#: guix-git/doc/guix.texi:5509 #, no-wrap msgid "primary URL, channels" msgstr "primäre URL, bei Kanälen" #. type: Plain text -#: guix-git/doc/guix.texi:5494 +#: guix-git/doc/guix.texi:5512 msgid "Channel authors can indicate the primary URL of their channel's Git repository in the @file{.guix-channel} file, like so:" msgstr "Kanalautoren können die primäre URL des Git-Repositorys ihres Kanals in der Datei @file{.guix-channel} hinterlegen, etwa so:" #. type: lisp -#: guix-git/doc/guix.texi:5499 +#: guix-git/doc/guix.texi:5517 #, no-wrap msgid "" "(channel\n" @@ -12683,38 +12766,38 @@ msgstr "" " (url \"https://example.org/guix.git\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5506 +#: guix-git/doc/guix.texi:5524 msgid "This allows @command{guix pull} to determine whether it is pulling code from a mirror of the channel; when that is the case, it warns the user that the mirror might be stale and displays the primary URL@. That way, users cannot be tricked into fetching code from a stale mirror that does not receive security updates." msgstr "Dadurch kann der Befehl @command{guix pull} feststellen, ob er Code von einem Spiegelserver des Kanals lädt. In diesem Fall wird der Benutzer davor gewarnt, dass Spiegelserver veraltete Versionen anbieten könnten, und die eigentliche, primäre URL anzeigen. Auf diese Weise wird verhindert, dass Nutzer manipuliert werden, Code von einem veralteten Spiegelserver zu benutzen, der keine Sicherheitsaktualisierungen bekommt." #. type: Plain text -#: guix-git/doc/guix.texi:5510 +#: guix-git/doc/guix.texi:5528 msgid "This feature only makes sense for authenticated repositories, such as the official @code{guix} channel, for which @command{guix pull} ensures the code it fetches is authentic." msgstr "Diese Funktionalität ergibt nur bei authentifizierbaren Repositorys Sinn, wie zum Beispiel dem offiziellen @code{guix}-Kanal, für den @command{guix pull} sicherstellt, dass geladener Code authentisch ist." #. type: cindex -#: guix-git/doc/guix.texi:5514 +#: guix-git/doc/guix.texi:5532 #, no-wrap msgid "news, for channels" msgstr "Neuigkeiten, bei Kanälen" #. type: Plain text -#: guix-git/doc/guix.texi:5518 +#: guix-git/doc/guix.texi:5536 msgid "Channel authors may occasionally want to communicate to their users information about important changes in the channel. You'd send them all an email, but that's not convenient." msgstr "Kanalautoren möchten ihren Nutzern vielleicht manchmal Informationen über wichtige Änderungen im Kanal zukommen lassen. Man könnte allen eine E-Mail schicken, aber das wäre unbequem." #. type: Plain text -#: guix-git/doc/guix.texi:5523 +#: guix-git/doc/guix.texi:5541 msgid "Instead, channels can provide a @dfn{news file}; when the channel users run @command{guix pull}, that news file is automatically read and @command{guix pull --news} can display the announcements that correspond to the new commits that have been pulled, if any." msgstr "Stattdessen können Kanäle eine Datei mit Neuigkeiten („News File“) anbieten: Wenn die Kanalnutzer @command{guix pull} ausführen, wird diese Datei automatisch ausgelesen. Mit @command{guix pull --news} kann man sich die Ankündigungen anzeigen lassen, die den neu gepullten Commits entsprechen, falls es welche gibt." #. type: Plain text -#: guix-git/doc/guix.texi:5526 +#: guix-git/doc/guix.texi:5544 msgid "To do that, channel authors must first declare the name of the news file in their @file{.guix-channel} file:" msgstr "Dazu müssen Kanalautoren zunächst den Namen der Datei mit Neuigkeiten in der Datei @file{.guix-channel} nennen:" #. type: lisp -#: guix-git/doc/guix.texi:5531 +#: guix-git/doc/guix.texi:5549 #, no-wrap msgid "" "(channel\n" @@ -12726,12 +12809,12 @@ msgstr "" " (news-file \"etc/news.txt\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5535 +#: guix-git/doc/guix.texi:5553 msgid "The news file itself, @file{etc/news.txt} in this example, must look something like this:" msgstr "Die Datei mit Neuigkeiten, @file{etc/news.txt} in diesem Beispiel, muss selbst etwa so aussehen:" #. type: lisp -#: guix-git/doc/guix.texi:5548 +#: guix-git/doc/guix.texi:5566 #, no-wrap msgid "" "(channel-news\n" @@ -12759,164 +12842,164 @@ msgstr "" " (body (en \"Don't miss the @@code@{hello@} package!\"))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5555 +#: guix-git/doc/guix.texi:5573 msgid "While the news file is using the Scheme syntax, avoid naming it with a @file{.scm} extension or else it will get picked up when building the channel and yield an error since it is not a valid module. Alternatively, you can move the channel module to a subdirectory and store the news file in another directory." msgstr "Obwohl die Datei für Neuigkeiten Scheme-Syntax verwendet, sollten Sie ihr keinen Dateinamen mit der Endung @file{.scm} geben, sonst wird sie bei der Erstellung des Kanals miteinbezogen und dann zu einem Fehler führen, weil es sich bei ihr um kein gültiges Modul handelt. Alternativ können Sie auch das Kanalmodul in einem Unterverzeichnis platzieren und die Datei für Neuigkeiten in einem Verzeichnis außerhalb platzieren." #. type: Plain text -#: guix-git/doc/guix.texi:5560 +#: guix-git/doc/guix.texi:5578 msgid "The file consists of a list of @dfn{news entries}. Each entry is associated with a commit or tag: it describes changes made in this commit, possibly in preceding commits as well. Users see entries only the first time they obtain the commit the entry refers to." msgstr "Die Datei setzt sich aus einer Liste von Einträgen mit Neuigkeiten („News Entries“) zusammen. Jeder Eintrag ist mit einem Commit oder einem Tag assoziiert und beschreibt die Änderungen, die in diesem oder auch vorangehenden Commits gemacht wurden. Benutzer sehen die Einträge nur beim erstmaligen Übernehmen des Commits, auf den sich der jeweilige Eintrag bezieht." #. type: Plain text -#: guix-git/doc/guix.texi:5566 +#: guix-git/doc/guix.texi:5584 msgid "The @code{title} field should be a one-line summary while @code{body} can be arbitrarily long, and both can contain Texinfo markup (@pxref{Overview,,, texinfo, GNU Texinfo}). Both the title and body are a list of language tag/message tuples, which allows @command{guix pull} to display news in the language that corresponds to the user's locale." msgstr "Das @code{title}-Feld sollte eine einzeilige Zusammenfassung sein, während @code{body} beliebig lang sein kann. Beide können Texinfo-Auszeichnungen enthalten (siehe @ref{Overview,,, texinfo, GNU Texinfo}). Sowohl @code{title} als auch @code{body} sind dabei eine Liste aus Tupeln mit jeweils Sprachcode und Mitteilung, wodurch @command{guix pull} Neuigkeiten in derjenigen Sprache anzeigen kann, die der vom Nutzer eingestellten Locale entspricht." #. type: Plain text -#: guix-git/doc/guix.texi:5572 +#: guix-git/doc/guix.texi:5590 msgid "If you want to translate news using a gettext-based workflow, you can extract translatable strings with @command{xgettext} (@pxref{xgettext Invocation,,, gettext, GNU Gettext Utilities}). For example, assuming you write news entries in English first, the command below creates a PO file containing the strings to translate:" msgstr "Wenn Sie Neuigkeiten mit einem gettext-basierten Arbeitsablauf übersetzen möchten, können Sie übersetzbare Zeichenketten mit @command{xgettext} extrahieren (siehe @ref{xgettext Invocation,,, gettext, GNU Gettext Utilities}). Unter der Annahme, dass Sie Einträge zu Neuigkeiten zunächst auf Englisch verfassen, können Sie mit diesem Befehl eine PO-Datei erzeugen, die die zu übersetzenden Zeichenketten enthält:" #. type: example -#: guix-git/doc/guix.texi:5575 +#: guix-git/doc/guix.texi:5593 #, no-wrap msgid "xgettext -o news.po -l scheme -ken etc/news.txt\n" msgstr "xgettext -o news.po -l scheme -ken etc/news.txt\n" #. type: Plain text -#: guix-git/doc/guix.texi:5579 +#: guix-git/doc/guix.texi:5597 msgid "To sum up, yes, you could use your channel as a blog. But beware, this is @emph{not quite} what your users might expect." msgstr "Kurz gesagt, ja, Sie können Ihren Kanal sogar als Blog missbrauchen. Aber das ist @emph{nicht ganz}, was Ihre Nutzer erwarten dürften." #. type: cindex -#: guix-git/doc/guix.texi:5584 +#: guix-git/doc/guix.texi:5602 #, no-wrap msgid "software development" msgstr "Softwareentwicklung" #. type: Plain text -#: guix-git/doc/guix.texi:5588 +#: guix-git/doc/guix.texi:5606 msgid "If you are a software developer, Guix provides tools that you should find helpful---independently of the language you're developing in. This is what this chapter is about." msgstr "Wenn Sie ein Software-Entwickler sind, gibt Ihnen Guix Werkzeuge an die Hand, die Sie für hilfreich erachten dürften@tie{}— ganz unabhängig davon, in welcher Sprache Sie entwickeln. Darum soll es in diesem Kapitel gehen." #. type: Plain text -#: guix-git/doc/guix.texi:5594 +#: guix-git/doc/guix.texi:5612 msgid "The @command{guix shell} command provides a convenient way to set up one-off software environments, be it for development purposes or to run a command without installing it in your profile. The @command{guix pack} command allows you to create @dfn{application bundles} that can be easily distributed to users who do not run Guix." msgstr "Der Befehl @command{guix shell} stellt eine bequeme Möglichkeit dar, Umgebungen für einmalige Nutzungen zu erschaffen, etwa zur Entwicklung an einem Programm oder um einen Befehl auszuführen, den Sie nicht in Ihr Profil installieren möchten. Der Befehl @command{guix pack} macht es Ihnen möglich, @dfn{Anwendungsbündel} zu erstellen, die leicht an Nutzer verteilt werden können, die kein Guix benutzen." #. type: section -#: guix-git/doc/guix.texi:5604 +#: guix-git/doc/guix.texi:5622 #, no-wrap msgid "Invoking @command{guix shell}" msgstr "@command{guix shell} aufrufen" #. type: cindex -#: guix-git/doc/guix.texi:5606 +#: guix-git/doc/guix.texi:5624 #, no-wrap msgid "reproducible build environments" msgstr "reproduzierbare Erstellungsumgebungen" #. type: cindex -#: guix-git/doc/guix.texi:5607 +#: guix-git/doc/guix.texi:5625 #, no-wrap msgid "development environments" msgstr "Entwicklungsumgebungen" #. type: command{#1} -#: guix-git/doc/guix.texi:5608 +#: guix-git/doc/guix.texi:5626 #, no-wrap msgid "guix environment" msgstr "guix environment" #. type: cindex -#: guix-git/doc/guix.texi:5609 +#: guix-git/doc/guix.texi:5627 #, no-wrap msgid "environment, package build environment" msgstr "Umgebung, Paketerstellungsumgebung" #. type: Plain text -#: guix-git/doc/guix.texi:5614 +#: guix-git/doc/guix.texi:5632 msgid "The purpose of @command{guix shell} is to make it easy to create one-off software environments, without changing one's profile. It is typically used to create development environments; it is also a convenient way to run applications without ``polluting'' your profile." msgstr "Der Zweck von @command{guix shell} ist, dass Sie Software-Umgebungen für außergewöhnliche Fälle einfach aufsetzen können, ohne dass Sie Ihr Profil ändern müssen. Normalerweise braucht man so etwas für Entwicklungsumgebungen, aber auch wenn Sie Anwendungen ausführen wollen, ohne Ihr Profil mit ihnen zu verunreinigen." #. type: quotation -#: guix-git/doc/guix.texi:5620 +#: guix-git/doc/guix.texi:5638 msgid "The @command{guix shell} command was recently introduced to supersede @command{guix environment} (@pxref{Invoking guix environment}). If you are familiar with @command{guix environment}, you will notice that it is similar but also---we hope!---more convenient." msgstr "Der Befehl @command{guix shell} wurde erst kürzlich eingeführt als Neuauflage von @command{guix environment} (siehe @ref{Invoking guix environment}). Wenn Sie mit @command{guix environment} vertraut sind, werden Sie die Ähnlichkeit bemerken, aber wir hoffen, der neue Befehl erweist sich als praktischer." #. type: example -#: guix-git/doc/guix.texi:5626 +#: guix-git/doc/guix.texi:5644 #, no-wrap msgid "guix shell [@var{options}] [@var{package}@dots{}]\n" msgstr "guix shell [@var{Optionen}] [@var{Pakete}…]\n" #. type: Plain text -#: guix-git/doc/guix.texi:5631 +#: guix-git/doc/guix.texi:5649 msgid "The following example creates an environment containing Python and NumPy, building or downloading any missing package, and runs the @command{python3} command in that environment:" msgstr "Folgendes Beispiel zeigt, wie Sie eine Umgebung erzeugen lassen, die Python und NumPy enthält,@tie{}— jedes dazu fehlende Paket wird erstellt oder heruntergeladen@tie{}—, und in der Umgebung dann @command{python3} ausführen." #. type: example -#: guix-git/doc/guix.texi:5634 +#: guix-git/doc/guix.texi:5652 #, no-wrap msgid "guix shell python python-numpy -- python3\n" msgstr "guix shell python python-numpy -- python3\n" #. type: Plain text -#: guix-git/doc/guix.texi:5639 +#: guix-git/doc/guix.texi:5657 msgid "Development environments can be created as in the example below, which spawns an interactive shell containing all the dependencies and environment variables needed to work on Inkscape:" msgstr "Entwicklungsumgebungen erzeugen Sie wie im folgenden Beispiel, wo eine interaktive Shell gestartet wird, in der alle Abhängigkeiten und Variable vorliegen, die zur Arbeit an Inkscape nötig sind:" #. type: example -#: guix-git/doc/guix.texi:5642 +#: guix-git/doc/guix.texi:5660 #, no-wrap msgid "guix shell --development inkscape\n" msgstr "guix shell --development inkscape\n" #. type: Plain text -#: guix-git/doc/guix.texi:5648 +#: guix-git/doc/guix.texi:5666 msgid "Exiting the shell places the user back in the original environment before @command{guix shell} was invoked. The next garbage collection (@pxref{Invoking guix gc}) may clean up packages that were installed in the environment and that are no longer used outside of it." msgstr "Sobald er die Shell beendet, findet sich der Benutzer in der ursprünglichen Umgebung wieder, in der er sich vor dem Aufruf von @command{guix shell} befand. Beim nächsten Durchlauf des Müllsammlers (siehe @ref{Invoking guix gc}) dürfen Pakete von der Platte gelöscht werden, die innerhalb der Umgebung installiert worden sind und außerhalb nicht länger benutzt werden." #. type: Plain text -#: guix-git/doc/guix.texi:5655 +#: guix-git/doc/guix.texi:5673 msgid "As an added convenience, when running from a directory that contains a @file{manifest.scm} or a @file{guix.scm} file (in this order), possibly in a parent directory, @command{guix shell} automatically loads the file---provided the directory is listed in @file{~/.config/guix/shell-authorized-directories}, and only for interactive use:" msgstr "Um die Nutzung zu vereinfachen, wird @command{guix shell}, wenn Sie es aus einem Verzeichnis heraus ausführen, das eine Datei @file{manifest.scm} oder eine Datei @file{guix.scm} enthält (in dieser Reihenfolge) oder wo ein übergeordnetes Verzeichnis diese enthält, die Datei automatisch laden@tie{}— sofern das Verzeichnis in @file{~/.config/guix/shell-authorized-directories} aufgeführt ist und @command{guix shell} interaktiv aufgerufen wurde:" #. type: example -#: guix-git/doc/guix.texi:5658 +#: guix-git/doc/guix.texi:5676 #, no-wrap msgid "guix shell\n" msgstr "guix shell\n" #. type: Plain text -#: guix-git/doc/guix.texi:5662 +#: guix-git/doc/guix.texi:5680 msgid "This provides an easy way to define, share, and enter development environments." msgstr "Dadurch wird es leichter, Entwicklungsumgebungen zu definieren, zu teilen und zu betreten." #. type: Plain text -#: guix-git/doc/guix.texi:5673 +#: guix-git/doc/guix.texi:5691 msgid "By default, the shell session or command runs in an @emph{augmented} environment, where the new packages are added to search path environment variables such as @code{PATH}. You can, instead, choose to create an @emph{isolated} environment containing nothing but the packages you asked for. Passing the @option{--pure} option clears environment variable definitions found in the parent environment@footnote{Be sure to use the @option{--check} option the first time you use @command{guix shell} interactively to make sure the shell does not undo the effect of @option{--pure}.}; passing @option{--container} goes one step further by spawning a @dfn{container} isolated from the rest of the system:" msgstr "Vorgegeben ist, dass für die Shell-Sitzung bzw.@: den Befehl eine @emph{ergänzte} Umgebung aufgebaut wird, in der die neuen Pakete zu Suchpfad-Umgebungsvariablen wie @code{PATH} hinzugefügt werden. Sie können stattdessen auch beschließen, eine @emph{isolierte} Umgebung anzufordern mit nichts als den Paketen, die Sie angegeben haben. Wenn Sie die Befehlszeilenoption @option{--pure} angeben, werden alle Definitionen von Umgebungsvariablen aus der Elternumgebung gelöscht@footnote{Denken Sie daran, wenn Sie das erste Mal @command{guix shell} interaktiv benutzen, mit der Befehlszeilenoption @option{--check} zu prüfen, dass die Shell-Einstellungen die Wirkung von @option{--pure} nicht wieder zurücknehmen.}. Wenn Sie @option{--container} angeben, wird die Shell darüber hinaus in einem @dfn{Container} vom restlichen System isoliert:" #. type: example -#: guix-git/doc/guix.texi:5676 +#: guix-git/doc/guix.texi:5694 #, no-wrap msgid "guix shell --container emacs gcc-toolchain\n" msgstr "guix shell --container emacs gcc-toolchain\n" #. type: Plain text -#: guix-git/doc/guix.texi:5684 +#: guix-git/doc/guix.texi:5702 msgid "The command above spawns an interactive shell in a container where nothing but @code{emacs}, @code{gcc-toolchain}, and their dependencies is available. The container lacks network access and shares no files other than the current working directory with the surrounding environment. This is useful to prevent access to system-wide resources such as @file{/usr/bin} on foreign distros." msgstr "Dieser Befehl startet eine interaktive Shell in einem Container, der den Zugriff auf alles außer @code{emacs}, @code{gcc-toolchain} und deren Abhängigkeiten unterbindet. Im Container haben Sie keinen Netzwerkzugriff und es werden außer dem aktuellen Arbeitsverzeichnis keine Dateien mit der äußeren Umgebung geteilt. Das dient dazu, den Zugriff auf systemweite Ressourcen zu verhindern, wie @file{/usr/bin} auf Fremddistributionen." #. type: Plain text -#: guix-git/doc/guix.texi:5691 +#: guix-git/doc/guix.texi:5709 msgid "This @option{--container} option can also prove useful if you wish to run a security-sensitive application, such as a web browser, in an isolated environment. For example, the command below launches Ungoogled-Chromium in an isolated environment, this time sharing network access with the host and preserving its @code{DISPLAY} environment variable, but without even sharing the current directory:" msgstr "Diese @option{--container}-Befehlszeilenoption kann sich aber auch als nützlich erweisen, um Anwendungen mit hohem Sicherheitsrisiko wie z.B.@: Webbrowser in eine isolierte Umgebung eingesperrt auszuführen. Folgender Befehl startet zum Beispiel Ungoogled-Chromium in einer isolierten Umgebung. Dabei wird der Netzwerkzugriff des Wirtssystems geteilt und die Umgebungsvariable @code{DISPLAY} bleibt erhalten, aber @emph{nicht} einmal das aktuelle Arbeitsverzeichnis wird geteilt zugänglich gemacht." #. type: example -#: guix-git/doc/guix.texi:5695 +#: guix-git/doc/guix.texi:5713 #, no-wrap msgid "" "guix shell --container --network --no-cwd ungoogled-chromium \\\n" @@ -12926,18 +13009,18 @@ msgstr "" " --preserve='^DISPLAY$' -- chromium\n" #. type: vindex -#: guix-git/doc/guix.texi:5697 guix-git/doc/guix.texi:6008 +#: guix-git/doc/guix.texi:5715 guix-git/doc/guix.texi:6045 #, no-wrap msgid "GUIX_ENVIRONMENT" msgstr "GUIX_ENVIRONMENT" #. type: Plain text -#: guix-git/doc/guix.texi:5703 +#: guix-git/doc/guix.texi:5721 msgid "@command{guix shell} defines the @env{GUIX_ENVIRONMENT} variable in the shell it spawns; its value is the file name of the profile of this environment. This allows users to, say, define a specific prompt for development environments in their @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):" msgstr "@command{guix shell} definiert die Variable @env{GUIX_ENVIRONMENT} in der neu erzeugten Shell. Ihr Wert ist der Dateiname des Profils dieser neuen Umgebung. Das könnten Nutzer verwenden, um zum Beispiel eine besondere Prompt als Eingabeaufforderung für Entwicklungsumgebungen in ihrer @file{.bashrc} festzulegen (siehe @ref{Bash Startup Files,,, bash, Referenzhandbuch von GNU Bash}):" #. type: example -#: guix-git/doc/guix.texi:5709 guix-git/doc/guix.texi:6020 +#: guix-git/doc/guix.texi:5727 guix-git/doc/guix.texi:6057 #, no-wrap msgid "" "if [ -n \"$GUIX_ENVIRONMENT\" ]\n" @@ -12951,213 +13034,204 @@ msgstr "" "fi\n" #. type: Plain text -#: guix-git/doc/guix.texi:5713 guix-git/doc/guix.texi:6024 +#: guix-git/doc/guix.texi:5731 guix-git/doc/guix.texi:6061 msgid "...@: or to browse the profile:" msgstr "…@: oder um ihr Profil durchzusehen:" #. type: example -#: guix-git/doc/guix.texi:5716 guix-git/doc/guix.texi:6027 +#: guix-git/doc/guix.texi:5734 guix-git/doc/guix.texi:6064 #, no-wrap msgid "$ ls \"$GUIX_ENVIRONMENT/bin\"\n" msgstr "$ ls \"$GUIX_ENVIRONMENT/bin\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:5719 guix-git/doc/guix.texi:6103 +#: guix-git/doc/guix.texi:5737 guix-git/doc/guix.texi:6140 msgid "The available options are summarized below." msgstr "Im Folgenden werden die verfügbaren Befehlszeilenoptionen zusammengefasst." #. type: item -#: guix-git/doc/guix.texi:5721 guix-git/doc/guix.texi:6105 -#: guix-git/doc/guix.texi:11546 +#: guix-git/doc/guix.texi:5739 guix-git/doc/guix.texi:6142 +#: guix-git/doc/guix.texi:11860 #, no-wrap msgid "--check" msgstr "--check" #. type: table -#: guix-git/doc/guix.texi:5726 +#: guix-git/doc/guix.texi:5744 msgid "Set up the environment and check whether the shell would clobber environment variables. It's a good idea to use this option the first time you run @command{guix shell} for an interactive session to make sure your setup is correct." msgstr "Hiermit wird die Umgebung angelegt und gemeldet, ob die Shell Umgebungsvariable überschreiben würde. Es ist eine gute Idee, diese Befehlszeilenoption anzugeben, wenn Sie zum ersten Mal @command{guix shell} zum Starten einer interaktiven Sitzung einsetzen, um sicherzugehen, dass Ihre Shell richtig eingestellt ist." #. type: table -#: guix-git/doc/guix.texi:5730 +#: guix-git/doc/guix.texi:5748 msgid "For example, if the shell modifies the @env{PATH} environment variable, report it since you would get a different environment than what you asked for." msgstr "Wenn die Shell zum Beispiel den Wert der Umgebungsvariablen @env{PATH} ändert, meldet dies @option{--check}, weil Sie dadurch nicht die Umgebung bekämen, die Sie angefordert haben." #. type: table -#: guix-git/doc/guix.texi:5738 +#: guix-git/doc/guix.texi:5756 msgid "Such problems usually indicate that the shell startup files are unexpectedly modifying those environment variables. For example, if you are using Bash, make sure that environment variables are set or modified in @file{~/.bash_profile} and @emph{not} in @file{~/.bashrc}---the former is sourced only by log-in shells. @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for details on Bash start-up files." msgstr "In der Regel sind solche Probleme ein Zeichen dafür, dass Dateien, die beim Start der Shell geladen werden, die Umgebungsvariablen unerwartet verändern. Wenn Sie zum Beispiel Bash benutzen, vergewissern Sie sich, dass Umgebungsvariable in @file{~/.bash_profile} festgelegt oder geändert werden, @emph{nicht} in @file{~/.bashrc}@tie{}— erstere Datei wird nur von Login-Shells mit „source“ geladen. Siehe @ref{Bash Startup Files,,, bash, Referenzhandbuch zu GNU Bash} für Details über beim Starten von Bash gelesene Dateien." #. type: item -#: guix-git/doc/guix.texi:5739 +#: guix-git/doc/guix.texi:5757 #, no-wrap msgid "--development" msgstr "--development" #. type: table -#: guix-git/doc/guix.texi:5746 +#: guix-git/doc/guix.texi:5764 msgid "Cause @command{guix shell} to include in the environment the dependencies of the following package rather than the package itself. This can be combined with other packages. For instance, the command below starts an interactive shell containing the build-time dependencies of GNU@tie{}Guile, plus Autoconf, Automake, and Libtool:" msgstr "Lässt @command{guix shell} die Abhängigkeiten des danach angegebenen Pakets anstelle des Pakets in die Umgebung aufnehmen. Es kann mit anderen Paketen kombiniert werden. Zum Beispiel wird mit folgendem Befehl eine interaktive Shell gestartet, die die zum Erstellen nötigen Abhängigkeiten von GNU@tie{}Guile sowie Autoconf, Automake und Libtool enthält:" #. type: example -#: guix-git/doc/guix.texi:5749 +#: guix-git/doc/guix.texi:5767 #, no-wrap msgid "guix shell -D guile autoconf automake libtool\n" msgstr "guix shell -D guile autoconf automake libtool\n" #. type: item -#: guix-git/doc/guix.texi:5751 guix-git/doc/guix.texi:6126 -#: guix-git/doc/guix.texi:6607 guix-git/doc/guix.texi:11421 -#: guix-git/doc/guix.texi:12494 guix-git/doc/guix.texi:12845 -#: guix-git/doc/guix.texi:13442 guix-git/doc/guix.texi:35243 -#: guix-git/doc/guix.texi:37713 +#: guix-git/doc/guix.texi:5769 guix-git/doc/guix.texi:6163 +#: guix-git/doc/guix.texi:6650 guix-git/doc/guix.texi:11735 +#: guix-git/doc/guix.texi:12809 guix-git/doc/guix.texi:13201 +#: guix-git/doc/guix.texi:13799 guix-git/doc/guix.texi:35687 +#: guix-git/doc/guix.texi:38192 #, no-wrap msgid "--expression=@var{expr}" msgstr "--expression=@var{Ausdruck}" #. type: itemx -#: guix-git/doc/guix.texi:5752 guix-git/doc/guix.texi:6127 -#: guix-git/doc/guix.texi:6608 guix-git/doc/guix.texi:11422 -#: guix-git/doc/guix.texi:12495 guix-git/doc/guix.texi:12846 -#: guix-git/doc/guix.texi:13443 guix-git/doc/guix.texi:35244 -#: guix-git/doc/guix.texi:37714 +#: guix-git/doc/guix.texi:5770 guix-git/doc/guix.texi:6164 +#: guix-git/doc/guix.texi:6651 guix-git/doc/guix.texi:11736 +#: guix-git/doc/guix.texi:12810 guix-git/doc/guix.texi:13202 +#: guix-git/doc/guix.texi:13800 guix-git/doc/guix.texi:35688 +#: guix-git/doc/guix.texi:38193 #, no-wrap msgid "-e @var{expr}" msgstr "-e @var{Ausdruck}" #. type: table -#: guix-git/doc/guix.texi:5755 guix-git/doc/guix.texi:6130 +#: guix-git/doc/guix.texi:5773 guix-git/doc/guix.texi:6167 msgid "Create an environment for the package or list of packages that @var{expr} evaluates to." msgstr "Eine Umgebung für das Paket oder die Liste von Paketen erzeugen, zu der der @var{Ausdruck} ausgewertet wird." #. type: table -#: guix-git/doc/guix.texi:5757 guix-git/doc/guix.texi:6132 -#: guix-git/doc/guix.texi:12850 +#: guix-git/doc/guix.texi:5775 guix-git/doc/guix.texi:6169 +#: guix-git/doc/guix.texi:13206 msgid "For example, running:" msgstr "Zum Beispiel startet dies:" #. type: example -#: guix-git/doc/guix.texi:5760 +#: guix-git/doc/guix.texi:5778 #, no-wrap msgid "guix shell -D -e '(@@ (gnu packages maths) petsc-openmpi)'\n" msgstr "guix shell -D -e '(@@ (gnu packages maths) petsc-openmpi)'\n" #. type: table -#: guix-git/doc/guix.texi:5764 guix-git/doc/guix.texi:6139 +#: guix-git/doc/guix.texi:5782 guix-git/doc/guix.texi:6176 msgid "starts a shell with the environment for this specific variant of the PETSc package." msgstr "eine Shell mit der Umgebung für eben diese bestimmte Variante des Pakets PETSc." #. type: table -#: guix-git/doc/guix.texi:5766 guix-git/doc/guix.texi:6141 +#: guix-git/doc/guix.texi:5784 guix-git/doc/guix.texi:6178 msgid "Running:" msgstr "Wenn man dies ausführt:" #. type: example -#: guix-git/doc/guix.texi:5769 +#: guix-git/doc/guix.texi:5787 #, no-wrap msgid "guix shell -e '(@@ (gnu) %base-packages)'\n" msgstr "guix shell -e '(@@ (gnu) %base-packages)'\n" #. type: table -#: guix-git/doc/guix.texi:5772 guix-git/doc/guix.texi:6147 +#: guix-git/doc/guix.texi:5790 guix-git/doc/guix.texi:6184 msgid "starts a shell with all the base system packages available." msgstr "bekommt man eine Shell, in der alle Basis-Pakete verfügbar sind." #. type: table -#: guix-git/doc/guix.texi:5775 guix-git/doc/guix.texi:6150 +#: guix-git/doc/guix.texi:5793 guix-git/doc/guix.texi:6187 msgid "The above commands only use the default output of the given packages. To select other outputs, two element tuples can be specified:" msgstr "Die obigen Befehle benutzen nur die Standard-Ausgabe des jeweiligen Pakets. Um andere Ausgaben auszuwählen, können zweielementige Tupel spezifiziert werden:" #. type: example -#: guix-git/doc/guix.texi:5778 +#: guix-git/doc/guix.texi:5796 #, no-wrap msgid "guix shell -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" msgstr "guix shell -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" #. type: item -#: guix-git/doc/guix.texi:5780 guix-git/doc/guix.texi:11395 +#: guix-git/doc/guix.texi:5798 guix-git/doc/guix.texi:11709 #, no-wrap msgid "--file=@var{file}" msgstr "--file=@var{Datei}" #. type: table -#: guix-git/doc/guix.texi:5784 +#: guix-git/doc/guix.texi:5802 msgid "Create an environment containing the package or list of packages that the code within @var{file} evaluates to." msgstr "Eine Umgebung erstellen mit dem Paket oder der Liste von Paketen, zu der der Code in der @var{Datei} ausgewertet wird." #. type: lisp -#: guix-git/doc/guix.texi:5790 guix-git/doc/guix.texi:6165 +#: guix-git/doc/guix.texi:5808 guix-git/doc/guix.texi:6202 #, no-wrap msgid "@verbatiminclude environment-gdb.scm\n" msgstr "@verbatiminclude environment-gdb.scm\n" #. type: table -#: guix-git/doc/guix.texi:5794 +#: guix-git/doc/guix.texi:5812 msgid "With the file above, you can enter a development environment for GDB by running:" msgstr "Mit so einer Datei können Sie eine Entwicklungsumgebung für GDB betreten, indem Sie dies ausführen:" #. type: example -#: guix-git/doc/guix.texi:5797 +#: guix-git/doc/guix.texi:5815 #, no-wrap msgid "guix shell -D -f gdb-devel.scm\n" msgstr "guix shell -D -f gdb-devel.scm\n" #. type: table -#: guix-git/doc/guix.texi:5804 guix-git/doc/guix.texi:6172 +#: guix-git/doc/guix.texi:5822 guix-git/doc/guix.texi:6209 msgid "Create an environment for the packages contained in the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "Eine Umgebung für die Pakete erzeugen, die im Manifest-Objekt enthalten sind, das vom Scheme-Code in der @var{Datei} geliefert wird. Wenn diese Befehlszeilenoption mehrmals wiederholt angegeben wird, werden die Manifeste aneinandergehängt." #. type: table -#: guix-git/doc/guix.texi:5808 guix-git/doc/guix.texi:6176 +#: guix-git/doc/guix.texi:5826 guix-git/doc/guix.texi:6213 msgid "This is similar to the same-named option in @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) and uses the same manifest files." msgstr "Dies verhält sich ähnlich wie die gleichnamige Option des Befehls @command{guix package} (siehe @ref{profile-manifest, @option{--manifest}}) und benutzt auch dieselben Manifestdateien." -#. type: item -#: guix-git/doc/guix.texi:5809 -#, no-wrap -msgid "--rebuild-cache" -msgstr "--rebuild-cache" - -#. type: table -#: guix-git/doc/guix.texi:5814 -msgid "When using @option{--manifest}, @option{--file}, or when invoked without arguments, @command{guix shell} caches the environment so that subsequent uses are instantaneous. The cache is invalidated anytime the file is modified." -msgstr "Wenn Sie eine der Befehlszeilenoptionen @option{--manifest} oder @option{--file} angeben oder wenn Sie @command{guix shell} ohne weitere Argumente aufrufen, wird die Umgebung von @command{guix shell} zwischengespeichert, damit weitere Aufrufe sie ohne Verzögerung verwenden können. Wenn die Datei abgeändert wurde, wird der Zwischenspeicher ungültig." - #. type: table -#: guix-git/doc/guix.texi:5819 -msgid "The @option{--rebuild-cache} forces the cached environment to be refreshed even if the file has not changed. This is useful if the @command{guix.scm} or @command{manifest.scm} has external dependencies, or if its behavior depends, say, on environment variables." -msgstr "Mit der Befehlszeilenoption @option{--rebuild-cache} wird die zwischengespeicherte Umgebung auch dann erneuert, wenn die Datei unverändert geblieben ist. Sie können @option{--rebuild-cache} verwenden, wenn @command{guix.scm} oder @command{manifest.scm} auf externe Abhängigkeiten verweist oder eine andere Umgebung ergeben sollte, wenn sich zum Beispiel Umgebungsvariable geändert haben." +#: guix-git/doc/guix.texi:5832 guix-git/doc/guix.texi:6245 +#, fuzzy +#| msgid "You can also use @command{guix package} (@pxref{Invoking guix package}) to manage the profile by naming it explicitly:" +msgid "Create an environment containing the packages installed in @var{profile}. Use @command{guix package} (@pxref{Invoking guix package}) to create and manage profiles." +msgstr "Sie können auch @command{guix package} benutzen (siehe @ref{Invoking guix package}), um das Profil zu verwalten, indem Sie es explizit angeben.:" #. type: item -#: guix-git/doc/guix.texi:5820 guix-git/doc/guix.texi:6203 +#: guix-git/doc/guix.texi:5833 guix-git/doc/guix.texi:6246 #, no-wrap msgid "--pure" msgstr "--pure" #. type: table -#: guix-git/doc/guix.texi:5824 guix-git/doc/guix.texi:6207 +#: guix-git/doc/guix.texi:5837 guix-git/doc/guix.texi:6250 msgid "Unset existing environment variables when building the new environment, except those specified with @option{--preserve} (see below). This has the effect of creating an environment in which search paths only contain package inputs." msgstr "Bestehende Umgebungsvariable deaktivieren, wenn die neue Umgebung erzeugt wird, mit Ausnahme der mit @option{--preserve} angegebenen Variablen (siehe unten). Dies bewirkt, dass eine Umgebung erzeugt wird, in der die Suchpfade nur Paketeingaben nennen und sonst nichts." #. type: item -#: guix-git/doc/guix.texi:5825 guix-git/doc/guix.texi:6208 +#: guix-git/doc/guix.texi:5838 guix-git/doc/guix.texi:6251 #, no-wrap msgid "--preserve=@var{regexp}" msgstr "--preserve=@var{Regexp}" #. type: itemx -#: guix-git/doc/guix.texi:5826 guix-git/doc/guix.texi:6209 +#: guix-git/doc/guix.texi:5839 guix-git/doc/guix.texi:6252 #, no-wrap msgid "-E @var{regexp}" msgstr "-E @var{Regexp}" #. type: table -#: guix-git/doc/guix.texi:5831 guix-git/doc/guix.texi:6214 +#: guix-git/doc/guix.texi:5844 guix-git/doc/guix.texi:6257 msgid "When used alongside @option{--pure}, preserve the environment variables matching @var{regexp}---in other words, put them on a ``white list'' of environment variables that must be preserved. This option can be repeated several times." msgstr "Wenn das hier zusammen mit @option{--pure} angegeben wird, bleiben die zum regulären Ausdruck @var{Regexp} passenden Umgebungsvariablen erhalten@tie{}— mit anderen Worten werden sie auf eine „weiße Liste“ von Umgebungsvariablen gesetzt, die erhalten bleiben müssen. Diese Befehlszeilenoption kann mehrmals wiederholt werden." #. type: example -#: guix-git/doc/guix.texi:5835 +#: guix-git/doc/guix.texi:5848 #, no-wrap msgid "" "guix shell --pure --preserve=^SLURM openmpi @dots{} \\\n" @@ -13167,116 +13241,116 @@ msgstr "" " -- mpirun …\n" #. type: table -#: guix-git/doc/guix.texi:5841 guix-git/doc/guix.texi:6224 +#: guix-git/doc/guix.texi:5854 guix-git/doc/guix.texi:6267 msgid "This example runs @command{mpirun} in a context where the only environment variables defined are @env{PATH}, environment variables whose name starts with @samp{SLURM}, as well as the usual ``precious'' variables (@env{HOME}, @env{USER}, etc.)." msgstr "In diesem Beispiel wird @command{mpirun} in einem Kontext ausgeführt, in dem die einzig definierten Umgebungsvariablen @env{PATH} und solche sind, deren Name mit @samp{SLURM} beginnt, sowie die üblichen besonders „kostbaren“ Variablen (@env{HOME}, @env{USER}, etc.)." #. type: item -#: guix-git/doc/guix.texi:5842 guix-git/doc/guix.texi:6225 +#: guix-git/doc/guix.texi:5855 guix-git/doc/guix.texi:6268 #, no-wrap msgid "--search-paths" msgstr "--search-paths" #. type: table -#: guix-git/doc/guix.texi:5845 guix-git/doc/guix.texi:6228 +#: guix-git/doc/guix.texi:5858 guix-git/doc/guix.texi:6271 msgid "Display the environment variable definitions that make up the environment." msgstr "Die Umgebungsvariablendefinitionen anzeigen, aus denen die Umgebung besteht." #. type: table -#: guix-git/doc/guix.texi:5849 guix-git/doc/guix.texi:6232 +#: guix-git/doc/guix.texi:5862 guix-git/doc/guix.texi:6275 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}." msgstr "Versuchen, für das angegebene @var{System} zu erstellen@tie{}— z.B.@: @code{i686-linux}." #. type: item -#: guix-git/doc/guix.texi:5850 guix-git/doc/guix.texi:6233 +#: guix-git/doc/guix.texi:5863 guix-git/doc/guix.texi:6276 #, no-wrap msgid "--container" msgstr "--container" #. type: itemx -#: guix-git/doc/guix.texi:5851 guix-git/doc/guix.texi:6234 +#: guix-git/doc/guix.texi:5864 guix-git/doc/guix.texi:6277 #, no-wrap msgid "-C" msgstr "-C" #. type: item -#: guix-git/doc/guix.texi:5852 guix-git/doc/guix.texi:6069 -#: guix-git/doc/guix.texi:6235 guix-git/doc/guix.texi:13998 -#: guix-git/doc/guix.texi:35211 +#: guix-git/doc/guix.texi:5865 guix-git/doc/guix.texi:6106 +#: guix-git/doc/guix.texi:6278 guix-git/doc/guix.texi:14355 +#: guix-git/doc/guix.texi:35655 #, no-wrap msgid "container" msgstr "container" #. type: table -#: guix-git/doc/guix.texi:5858 guix-git/doc/guix.texi:6241 +#: guix-git/doc/guix.texi:5871 guix-git/doc/guix.texi:6284 msgid "Run @var{command} within an isolated container. The current working directory outside the container is mapped inside the container. Additionally, unless overridden with @option{--user}, a dummy home directory is created that matches the current user's home directory, and @file{/etc/passwd} is configured accordingly." msgstr "Den @var{Befehl} in einer isolierten Umgebung (einem sogenannten „Container“) ausführen. Das aktuelle Arbeitsverzeichnis außerhalb des Containers wird in den Container zugeordnet. Zusätzlich wird, wenn es mit der Befehlszeilenoption @option{--user} nicht anders spezifiziert wurde, ein stellvertretendes persönliches Verzeichnis erzeugt, dessen Inhalt der des wirklichen persönlichen Verzeichnisses ist, sowie eine passend konfigurierte Datei @file{/etc/passwd}." #. type: table -#: guix-git/doc/guix.texi:5862 guix-git/doc/guix.texi:6245 +#: guix-git/doc/guix.texi:5875 guix-git/doc/guix.texi:6288 msgid "The spawned process runs as the current user outside the container. Inside the container, it has the same UID and GID as the current user, unless @option{--user} is passed (see below)." msgstr "Der erzeugte Prozess läuft außerhalb des Containers als der momentane Nutzer. Innerhalb des Containers hat er dieselbe UID und GID wie der momentane Nutzer, außer die Befehlszeilenoption @option{--user} wird übergeben (siehe unten)." #. type: item -#: guix-git/doc/guix.texi:5863 guix-git/doc/guix.texi:6246 -#: guix-git/doc/guix.texi:35303 +#: guix-git/doc/guix.texi:5876 guix-git/doc/guix.texi:6289 +#: guix-git/doc/guix.texi:35747 #, no-wrap msgid "--network" msgstr "--network" #. type: table -#: guix-git/doc/guix.texi:5868 guix-git/doc/guix.texi:6251 +#: guix-git/doc/guix.texi:5881 guix-git/doc/guix.texi:6294 msgid "For containers, share the network namespace with the host system. Containers created without this flag only have access to the loopback device." msgstr "Bei isolierten Umgebungen („Containern“) wird hiermit der Netzwerk-Namensraum mit dem des Wirtssystems geteilt. Container, die ohne diese Befehlszeilenoption erzeugt wurden, haben nur Zugriff auf das Loopback-Gerät." #. type: item -#: guix-git/doc/guix.texi:5869 guix-git/doc/guix.texi:6252 +#: guix-git/doc/guix.texi:5882 guix-git/doc/guix.texi:6295 #, no-wrap msgid "--link-profile" msgstr "--link-profile" #. type: itemx -#: guix-git/doc/guix.texi:5870 guix-git/doc/guix.texi:6253 +#: guix-git/doc/guix.texi:5883 guix-git/doc/guix.texi:6296 #, no-wrap msgid "-P" msgstr "-P" #. type: table -#: guix-git/doc/guix.texi:5878 +#: guix-git/doc/guix.texi:5891 msgid "For containers, link the environment profile to @file{~/.guix-profile} within the container and set @code{GUIX_ENVIRONMENT} to that. This is equivalent to making @file{~/.guix-profile} a symlink to the actual profile within the container. Linking will fail and abort the environment if the directory already exists, which will certainly be the case if @command{guix shell} was invoked in the user's home directory." msgstr "Bei isolierten Umgebungen („Containern“) wird das Umgebungsprofil im Container als @file{~/.guix-profile} verknüpft und @file{~/.guix-profile} dann in @code{GUIX_ENVIRONMENT} gespeichert. Das ist äquivalent dazu, @file{~/.guix-profile} im Container zu einer symbolischen Verknüpfung auf das tatsächliche Profil zu machen. Wenn das Verzeichnis bereits existiert, schlägt das Verknüpfen fehl und die Umgebung wird nicht hergestellt. Dieser Fehler wird immer eintreten, wenn @command{guix shell} im persönlichen Verzeichnis des Benutzers aufgerufen wurde." #. type: table -#: guix-git/doc/guix.texi:5884 guix-git/doc/guix.texi:6267 +#: guix-git/doc/guix.texi:5897 guix-git/doc/guix.texi:6310 msgid "Certain packages are configured to look in @file{~/.guix-profile} for configuration files and data;@footnote{For example, the @code{fontconfig} package inspects @file{~/.guix-profile/share/fonts} for additional fonts.} @option{--link-profile} allows these programs to behave as expected within the environment." msgstr "Bestimmte Pakete sind so eingerichtet, dass sie in @file{~/.guix-profile} nach Konfigurationsdateien und Daten suchen,@footnote{Zum Beispiel inspiziert das Paket @code{fontconfig} das Verzeichnis @file{~/.guix-profile/share/fonts}, um zusätzliche Schriftarten zu finden.} weshalb @option{--link-profile} benutzt werden kann, damit sich diese Programme auch in der isolierten Umgebung wie erwartet verhalten." #. type: item -#: guix-git/doc/guix.texi:5885 guix-git/doc/guix.texi:6268 -#: guix-git/doc/guix.texi:13575 +#: guix-git/doc/guix.texi:5898 guix-git/doc/guix.texi:6311 +#: guix-git/doc/guix.texi:13932 #, no-wrap msgid "--user=@var{user}" msgstr "--user=@var{Benutzer}" #. type: itemx -#: guix-git/doc/guix.texi:5886 guix-git/doc/guix.texi:6269 -#: guix-git/doc/guix.texi:13576 +#: guix-git/doc/guix.texi:5899 guix-git/doc/guix.texi:6312 +#: guix-git/doc/guix.texi:13933 #, no-wrap msgid "-u @var{user}" msgstr "-u @var{Benutzer}" #. type: table -#: guix-git/doc/guix.texi:5893 guix-git/doc/guix.texi:6276 +#: guix-git/doc/guix.texi:5906 guix-git/doc/guix.texi:6319 msgid "For containers, use the username @var{user} in place of the current user. The generated @file{/etc/passwd} entry within the container will contain the name @var{user}, the home directory will be @file{/home/@var{user}}, and no user GECOS data will be copied. Furthermore, the UID and GID inside the container are 1000. @var{user} need not exist on the system." msgstr "Bei isolierten Umgebungen („Containern“) wird der Benutzername @var{Benutzer} anstelle des aktuellen Benutzers benutzt. Der erzeugte Eintrag in @file{/etc/passwd} im Container wird also den Namen @var{Benutzer} enthalten und das persönliche Verzeichnis wird den Namen @file{/home/BENUTZER} tragen; keine GECOS-Daten über den Nutzer werden in die Umgebung übernommen. Des Weiteren sind UID und GID innerhalb der isolierten Umgebung auf 1000 gesetzt. @var{Benutzer} muss auf dem System nicht existieren." #. type: table -#: guix-git/doc/guix.texi:5898 guix-git/doc/guix.texi:6281 +#: guix-git/doc/guix.texi:5911 guix-git/doc/guix.texi:6324 msgid "Additionally, any shared or exposed path (see @option{--share} and @option{--expose} respectively) whose target is within the current user's home directory will be remapped relative to @file{/home/USER}; this includes the automatic mapping of the current working directory." msgstr "Zusätzlich werden alle geteilten oder exponierten Pfade (siehe jeweils @option{--share} und @option{--expose}), deren Ziel innerhalb des persönlichen Verzeichnisses des aktuellen Benutzers liegt, relativ zu @file{/home/BENUTZER} erscheinen, einschließlich der automatischen Zuordnung des aktuellen Arbeitsverzeichnisses." #. type: example -#: guix-git/doc/guix.texi:5905 +#: guix-git/doc/guix.texi:5918 #, no-wrap msgid "" "# will expose paths as /home/foo/wd, /home/foo/test, and /home/foo/target\n" @@ -13292,229 +13366,267 @@ msgstr "" " --expose=/tmp/target=$HOME/target\n" #. type: table -#: guix-git/doc/guix.texi:5910 guix-git/doc/guix.texi:6293 +#: guix-git/doc/guix.texi:5923 guix-git/doc/guix.texi:6336 msgid "While this will limit the leaking of user identity through home paths and each of the user fields, this is only one useful component of a broader privacy/anonymity solution---not one in and of itself." msgstr "Obwohl dies das Datenleck von Nutzerdaten durch Pfade im persönlichen Verzeichnis und die Benutzereinträge begrenzt, kann dies nur als Teil einer größeren Lösung für Datenschutz und Anonymität sinnvoll eingesetzt werden. Es sollte nicht für sich allein dazu eingesetzt werden." #. type: item -#: guix-git/doc/guix.texi:5911 guix-git/doc/guix.texi:6294 +#: guix-git/doc/guix.texi:5924 guix-git/doc/guix.texi:6337 #, no-wrap msgid "--no-cwd" msgstr "--no-cwd" #. type: table -#: guix-git/doc/guix.texi:5918 guix-git/doc/guix.texi:6301 +#: guix-git/doc/guix.texi:5931 guix-git/doc/guix.texi:6344 msgid "For containers, the default behavior is to share the current working directory with the isolated container and immediately change to that directory within the container. If this is undesirable, @option{--no-cwd} will cause the current working directory to @emph{not} be automatically shared and will change to the user's home directory within the container instead. See also @option{--user}." msgstr "In isolierten Umgebungen („Containern“) ist das vorgegebene Verhalten, das aktuelle Arbeitsverzeichnis mit dem isolierten Container zu teilen und in der Umgebung sofort in dieses Verzeichnis zu wechseln. Wenn das nicht gewünscht wird, kann das Angeben von @option{--no-cwd} dafür sorgen, dass das Arbeitsverzeichnis @emph{nicht} automatisch geteilt wird und stattdessen in das Persönliche Verzeichnis („Home“-Verzeichnis) gewechselt wird. Siehe auch @option{--user}." #. type: item -#: guix-git/doc/guix.texi:5919 guix-git/doc/guix.texi:6302 +#: guix-git/doc/guix.texi:5932 guix-git/doc/guix.texi:6345 #, no-wrap msgid "--expose=@var{source}[=@var{target}]" msgstr "--expose=@var{Quelle}[=@var{Ziel}]" #. type: itemx -#: guix-git/doc/guix.texi:5920 guix-git/doc/guix.texi:6303 +#: guix-git/doc/guix.texi:5933 guix-git/doc/guix.texi:6346 #, no-wrap msgid "--share=@var{source}[=@var{target}]" msgstr "--share=@var{Quelle}[=@var{Ziel}]" #. type: table -#: guix-git/doc/guix.texi:5926 guix-git/doc/guix.texi:6309 +#: guix-git/doc/guix.texi:5939 guix-git/doc/guix.texi:6352 msgid "For containers, @option{--expose} (resp. @option{--share}) exposes the file system @var{source} from the host system as the read-only (resp. writable) file system @var{target} within the container. If @var{target} is not specified, @var{source} is used as the target mount point in the container." msgstr "Bei isolierten Umgebungen („Containern“) wird das Dateisystem unter @var{Quelle} vom Wirtssystem als Nur-Lese-Dateisystem @var{Ziel} (bzw.@: für @option{--share} auch mit Schreibrechten) im Container zugänglich gemacht. Wenn kein @var{Ziel} angegeben wurde, wird die @var{Quelle} auch als Ziel-Einhängepunkt in der isolierten Umgebung benutzt." #. type: table -#: guix-git/doc/guix.texi:5930 guix-git/doc/guix.texi:6313 +#: guix-git/doc/guix.texi:5943 guix-git/doc/guix.texi:6356 msgid "The example below spawns a Guile REPL in a container in which the user's home directory is accessible read-only via the @file{/exchange} directory:" msgstr "Im folgenden Beispiel wird eine Guile-REPL in einer isolierten Umgebung gestartet, in der das persönliche Verzeichnis des Benutzers als Verzeichnis @file{/austausch} nur für Lesezugriffe zugänglich gemacht wurde:" #. type: example -#: guix-git/doc/guix.texi:5933 +#: guix-git/doc/guix.texi:5946 #, no-wrap msgid "guix shell --container --expose=$HOME=/exchange guile -- guile\n" msgstr "guix shell --container --expose=$HOME=/austausch guile -- guile\n" #. type: item -#: guix-git/doc/guix.texi:5935 guix-git/doc/guix.texi:6110 -#: guix-git/doc/guix.texi:6675 guix-git/doc/guix.texi:11575 -#: guix-git/doc/guix.texi:35308 +#: guix-git/doc/guix.texi:5948 +#, no-wrap +msgid "--rebuild-cache" +msgstr "--rebuild-cache" + +#. type: cindex +#: guix-git/doc/guix.texi:5949 +#, no-wrap +msgid "caching, of profiles" +msgstr "Zwischenspeichern, von Profilen" + +#. type: cindex +#: guix-git/doc/guix.texi:5950 +#, no-wrap +msgid "caching, in @command{guix shell}" +msgstr "Zwischenspeichern, bei @command{guix shell}" + +#. type: table +#: guix-git/doc/guix.texi:5956 +msgid "In most cases, @command{guix shell} caches the environment so that subsequent uses are instantaneous. Least-recently used cache entries are periodically removed. The cache is also invalidated, when using @option{--file} or @option{--manifest}, anytime the corresponding file is modified." +msgstr "In der Regel wird @command{guix shell} die Umgebung zwischenspeichern, damit weitere Aufrufe sie ohne Verzögerung verwenden können. Am längsten @emph{nicht} verwendete („least recently used“) Einträge im Zwischenspeicher werden bei @command{guix shell} regelmäßig entfernt. Auch wenn Sie @option{--file} oder @option{--manifest} nutzen, wird der Zwischenspeicher ungültig, sobald die entsprechende Datei geändert wurde." + +#. type: table +#: guix-git/doc/guix.texi:5962 +msgid "The @option{--rebuild-cache} forces the cached environment to be refreshed. This is useful when using @option{--file} or @option{--manifest} and the @command{guix.scm} or @command{manifest.scm} file has external dependencies, or if its behavior depends, say, on environment variables." +msgstr "Mit der Befehlszeilenoption @option{--rebuild-cache} wird die zwischengespeicherte Umgebung erneuert. Sie können @option{--rebuild-cache} verwenden, wenn Sie @option{--file} oder @option{--manifest} nutzen und die Datei @command{guix.scm} oder @command{manifest.scm} auf externe Abhängigkeiten verweist oder eine andere Umgebung ergeben sollte, wenn sich zum Beispiel Umgebungsvariable geändert haben." + +#. type: item +#: guix-git/doc/guix.texi:5963 guix-git/doc/guix.texi:6147 +#: guix-git/doc/guix.texi:6718 guix-git/doc/guix.texi:11889 +#: guix-git/doc/guix.texi:35752 #, no-wrap msgid "--root=@var{file}" msgstr "--root=@var{Datei}" #. type: itemx -#: guix-git/doc/guix.texi:5936 guix-git/doc/guix.texi:6111 -#: guix-git/doc/guix.texi:6676 guix-git/doc/guix.texi:11576 -#: guix-git/doc/guix.texi:35309 +#: guix-git/doc/guix.texi:5964 guix-git/doc/guix.texi:6148 +#: guix-git/doc/guix.texi:6719 guix-git/doc/guix.texi:11890 +#: guix-git/doc/guix.texi:35753 #, no-wrap msgid "-r @var{file}" msgstr "-r @var{Datei}" #. type: cindex -#: guix-git/doc/guix.texi:5937 guix-git/doc/guix.texi:6112 +#: guix-git/doc/guix.texi:5965 guix-git/doc/guix.texi:6149 #, no-wrap msgid "persistent environment" msgstr "persistente Umgebung" #. type: cindex -#: guix-git/doc/guix.texi:5938 guix-git/doc/guix.texi:6113 +#: guix-git/doc/guix.texi:5966 guix-git/doc/guix.texi:6150 #, no-wrap msgid "garbage collector root, for environments" msgstr "Müllsammlerwurzel, für Umgebungen" #. type: table -#: guix-git/doc/guix.texi:5941 guix-git/doc/guix.texi:6116 +#: guix-git/doc/guix.texi:5969 guix-git/doc/guix.texi:6153 msgid "Make @var{file} a symlink to the profile for this environment, and register it as a garbage collector root." msgstr "Die @var{Datei} zu einer symbolischen Verknüpfung auf das Profil dieser Umgebung machen und als eine Müllsammlerwurzel registrieren." #. type: table -#: guix-git/doc/guix.texi:5944 guix-git/doc/guix.texi:6119 +#: guix-git/doc/guix.texi:5972 guix-git/doc/guix.texi:6156 msgid "This is useful if you want to protect your environment from garbage collection, to make it ``persistent''." msgstr "Das ist nützlich, um seine Umgebung vor dem Müllsammler zu schützen und sie „persistent“ zu machen." #. type: table -#: guix-git/doc/guix.texi:5950 -msgid "When this option is omitted, the environment is protected from garbage collection only for the duration of the @command{guix shell} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages. @xref{Invoking guix gc}, for more on GC roots." -msgstr "Wird diese Option weggelassen, ist die Umgebung nur, solange die Sitzung von @command{guix shell} besteht, vor dem Müllsammler sicher. Das bedeutet, wenn Sie das nächste Mal dieselbe Umgebung neu erzeugen, müssen Sie vielleicht Pakete neu erstellen oder neu herunterladen. @ref{Invoking guix gc} hat mehr Informationen über Müllsammlerwurzeln." +#: guix-git/doc/guix.texi:5978 +msgid "When this option is omitted, @command{guix shell} caches profiles so that subsequent uses of the same environment are instantaneous---this is comparable to using @option{--root} except that @command{guix shell} takes care of periodically removing the least-recently used garbage collector roots." +msgstr "Wenn diese Option weggelassen wird, wird das Profil von @command{guix shell} zwischengespeichert, damit weitere Aufrufe es ohne Verzögerung verwenden können. Das ist vergleichbar damit, wenn Sie @option{--root} angeben, jedoch wird @command{guix shell} die am längsten @emph{nicht} verwendeten Müllsammlerwurzeln („least recently used“) regelmäßig entfernt." + +#. type: table +#: guix-git/doc/guix.texi:5985 +msgid "In some cases, @command{guix shell} does not cache profiles---e.g., if transformation options such as @option{--with-latest} are used. In those cases, the environment is protected from garbage collection only for the duration of the @command{guix shell} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages." +msgstr "In manchen Fällen wird @command{guix shell} keinen Zwischenspeicher für die Profile anlegen, z.B.@: wenn Umwandlungsoptionen wie @option{--with-latest} angegeben wurde. Das bedeutet, die Umgebung ist nur, solange die Sitzung von @command{guix shell} besteht, vor dem Müllsammler sicher. Dann müssen Sie, wenn Sie das nächste Mal dieselbe Umgebung neu erzeugen, vielleicht Pakete neu erstellen oder neu herunterladen." + +#. type: table +#: guix-git/doc/guix.texi:5987 +msgid "@xref{Invoking guix gc}, for more on GC roots." +msgstr "@ref{Invoking guix gc} hat mehr Informationen über Müllsammlerwurzeln." #. type: Plain text -#: guix-git/doc/guix.texi:5955 +#: guix-git/doc/guix.texi:5992 msgid "@command{guix shell} also supports all of the common build options that @command{guix build} supports (@pxref{Common Build Options}) as well as package transformation options (@pxref{Package Transformation Options})." msgstr "@command{guix shell} unterstützt auch alle gemeinsamen Erstellungsoptionen, die von @command{guix build} unterstützt werden (siehe @ref{Common Build Options}), und die Paketumwandlungsoptionen (siehe @ref{Package Transformation Options})." #. type: section -#: guix-git/doc/guix.texi:5957 +#: guix-git/doc/guix.texi:5994 #, no-wrap msgid "Invoking @command{guix environment}" msgstr "@command{guix environment} aufrufen" #. type: Plain text -#: guix-git/doc/guix.texi:5961 +#: guix-git/doc/guix.texi:5998 msgid "The purpose of @command{guix environment} is to assist in creating development environments." msgstr "Der Zweck von @command{guix environment} ist es, dass Sie Entwicklungsumgebungen leicht anlegen können." #. type: quotation -#: guix-git/doc/guix.texi:5962 +#: guix-git/doc/guix.texi:5999 #, no-wrap msgid "Deprecation warning" msgstr "Diese Funktionalität wird demnächst verschwinden" #. type: quotation -#: guix-git/doc/guix.texi:5966 +#: guix-git/doc/guix.texi:6003 msgid "The @command{guix environment} command is deprecated in favor of @command{guix shell}, which performs similar functions but is more convenient to use. @xref{Invoking guix shell}." msgstr "Der Befehl @command{guix environment} gilt als veraltet. Stattdessen sollten Sie @command{guix shell} benutzen, was einen ähnlichen Zweck erfüllt, aber leichter zu benutzen ist. Siehe @ref{Invoking guix shell}." #. type: quotation -#: guix-git/doc/guix.texi:5971 +#: guix-git/doc/guix.texi:6008 msgid "Being deprecated, @command{guix environment} is slated for eventual removal, but the Guix project is committed to keeping it until May 1st, 2023. Please get in touch with us at @email{guix-devel@@gnu.org} if you would like to discuss it." msgstr "Veraltet heißt, @command{guix environment} wird letztendlich entfernt, aber das Guix-Projekt wird gewährleisten, dass @command{guix environment} bis zum 1.@: Mai 2023 verfügbar bleibt. Reden Sie mit uns unter @email{guix-devel@@gnu.org}, wenn Sie dabei mitdiskutieren möchten!" #. type: example -#: guix-git/doc/guix.texi:5977 +#: guix-git/doc/guix.texi:6014 #, no-wrap msgid "guix environment @var{options} @var{package}@dots{}\n" msgstr "guix environment @var{Optionen} @var{Paket}…\n" #. type: Plain text -#: guix-git/doc/guix.texi:5981 +#: guix-git/doc/guix.texi:6018 msgid "The following example spawns a new shell set up for the development of GNU@tie{}Guile:" msgstr "Folgendes Beispiel zeigt, wie eine neue Shell gestartet wird, auf der alles für die Entwicklung von GNU@tie{}Guile eingerichtet ist:" #. type: example -#: guix-git/doc/guix.texi:5984 +#: guix-git/doc/guix.texi:6021 #, no-wrap msgid "guix environment guile\n" msgstr "guix environment guile\n" #. type: Plain text -#: guix-git/doc/guix.texi:6001 +#: guix-git/doc/guix.texi:6038 msgid "If the needed dependencies are not built yet, @command{guix environment} automatically builds them. The environment of the new shell is an augmented version of the environment that @command{guix environment} was run in. It contains the necessary search paths for building the given package added to the existing environment variables. To create a ``pure'' environment, in which the original environment variables have been unset, use the @option{--pure} option@footnote{Users sometimes wrongfully augment environment variables such as @env{PATH} in their @file{~/.bashrc} file. As a consequence, when @command{guix environment} launches it, Bash may read @file{~/.bashrc}, thereby introducing ``impurities'' in these environment variables. It is an error to define such environment variables in @file{.bashrc}; instead, they should be defined in @file{.bash_profile}, which is sourced only by log-in shells. @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for details on Bash start-up files.}." msgstr "Wenn benötigte Abhängigkeiten noch nicht erstellt worden sind, wird @command{guix environment} sie automatisch erstellen lassen. Die Umgebung der neuen Shell ist eine ergänzte Version der Umgebung, in der @command{guix environment} ausgeführt wurde. Sie enthält neben den existierenden Umgebungsvariablen auch die nötigen Suchpfade, um das angegebene Paket erstellen zu können. Um eine „reine“ Umgebung zu erstellen, in der die ursprünglichen Umgebungsvariablen nicht mehr vorkommen, kann die Befehlszeilenoption @option{--pure} benutzt werden@footnote{Manchmal ergänzen Nutzer fälschlicherweise Umgebungsvariable wie @env{PATH} in ihrer @file{~/.bashrc}-Datei. Das hat zur Folge, dass wenn @command{guix environment} Bash startet, selbige @file{~/.bashrc} von Bash gelesen wird und die neuen Umgebungen somit „verunreinigt“. Es ist ein Fehler, solche Umgebungsvariable in @file{.bashrc} zu definieren, stattdessen sollten sie in @file{.bash_profile} geschrieben werden, was nur von Login-Shells mit „source“ geladen wird. Siehe @ref{Bash Startup Files,,, bash, Referenzhandbuch zu GNU Bash} für Details über beim Starten von Bash gelesene Dateien}." #. type: Plain text -#: guix-git/doc/guix.texi:6007 +#: guix-git/doc/guix.texi:6044 msgid "Exiting from a Guix environment is the same as exiting from the shell, and will place the user back in the old environment before @command{guix environment} was invoked. The next garbage collection (@pxref{Invoking guix gc}) will clean up packages that were installed from within the environment and are no longer used outside of it." msgstr "Eine Guix-Umgebung zu verlassen ist gleichbedeutend mit dem Verlassen der Shell; danach findet sich der Benutzer in der alten Umgebung wieder, in der er sich vor dem Aufruf von @command{guix environment} befand. Beim nächsten Durchlauf des Müllsammlers (siehe @ref{Invoking guix gc}) werden Pakete von der Platte gelöscht, die innerhalb der Umgebung installiert worden sind und außerhalb nicht länger benutzt werden." #. type: Plain text -#: guix-git/doc/guix.texi:6014 +#: guix-git/doc/guix.texi:6051 msgid "@command{guix environment} defines the @env{GUIX_ENVIRONMENT} variable in the shell it spawns; its value is the file name of the profile of this environment. This allows users to, say, define a specific prompt for development environments in their @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):" msgstr "@command{guix environment} definiert die Variable @env{GUIX_ENVIRONMENT} in der neu erzeugten Shell. Ihr Wert ist der Dateiname des Profils dieser neuen Umgebung. Das könnten Nutzer verwenden, um zum Beispiel eine besondere Prompt als Eingabeaufforderung für Entwicklungsumgebungen in ihrer @file{.bashrc} festzulegen (siehe @ref{Bash Startup Files,,, bash, Referenzhandbuch von GNU Bash}):" #. type: Plain text -#: guix-git/doc/guix.texi:6033 +#: guix-git/doc/guix.texi:6070 msgid "Additionally, more than one package may be specified, in which case the union of the inputs for the given packages are used. For example, the command below spawns a shell where all of the dependencies of both Guile and Emacs are available:" msgstr "Des Weiteren kann mehr als ein Paket angegeben werden. In diesem Fall wird die Vereinigung der Eingaben der jeweiligen Pakete zugänglich gemacht. Zum Beispiel erzeugt der folgende Befehl eine Shell, in der alle Abhängigkeiten von sowohl Guile als auch Emacs verfügbar sind:" #. type: example -#: guix-git/doc/guix.texi:6036 +#: guix-git/doc/guix.texi:6073 #, no-wrap msgid "guix environment guile emacs\n" msgstr "guix environment guile emacs\n" #. type: Plain text -#: guix-git/doc/guix.texi:6041 +#: guix-git/doc/guix.texi:6078 msgid "Sometimes an interactive shell session is not desired. An arbitrary command may be invoked by placing the @code{--} token to separate the command from the rest of the arguments:" msgstr "Manchmal will man keine interaktive Shell-Sitzung. Ein beliebiger Befehl kann aufgerufen werden, indem Sie nach Angabe der Pakete noch @code{--} vor den gewünschten Befehl schreiben, um ihn von den übrigen Argumenten abzutrennen:" #. type: example -#: guix-git/doc/guix.texi:6044 +#: guix-git/doc/guix.texi:6081 #, no-wrap msgid "guix environment guile -- make -j4\n" msgstr "guix environment guile -- make -j4\n" #. type: Plain text -#: guix-git/doc/guix.texi:6050 +#: guix-git/doc/guix.texi:6087 msgid "In other situations, it is more convenient to specify the list of packages needed in the environment. For example, the following command runs @command{python} from an environment containing Python@tie{}3 and NumPy:" msgstr "In anderen Situationen ist es bequemer, aufzulisten, welche Pakete in der Umgebung benötigt werden. Zum Beispiel führt der folgende Befehl @command{python} aus einer Umgebung heraus aus, in der Python@tie{}3 und NumPy enthalten sind:" #. type: example -#: guix-git/doc/guix.texi:6053 +#: guix-git/doc/guix.texi:6090 #, no-wrap msgid "guix environment --ad-hoc python-numpy python -- python3\n" msgstr "guix environment --ad-hoc python-numpy python -- python3\n" #. type: Plain text -#: guix-git/doc/guix.texi:6064 +#: guix-git/doc/guix.texi:6101 msgid "Furthermore, one might want the dependencies of a package and also some additional packages that are not build-time or runtime dependencies, but are useful when developing nonetheless. Because of this, the @option{--ad-hoc} flag is positional. Packages appearing before @option{--ad-hoc} are interpreted as packages whose dependencies will be added to the environment. Packages appearing after are interpreted as packages that will be added to the environment directly. For example, the following command creates a Guix development environment that additionally includes Git and strace:" msgstr "Man kann auch sowohl die Abhängigkeiten eines Pakets haben wollen, als auch ein paar zusätzliche Pakete, die nicht Erstellungs- oder Laufzeitabhängigkeiten davon sind, aber trotzdem bei der Entwicklung nützlich sind. Deshalb hängt die Wirkung von der Position der Befehlszeilenoption @option{--ad-hoc} ab. Pakete, die links von @option{--ad-hoc} stehen, werden als Pakete interpretiert, deren Abhängigkeiten zur Umgebung hinzugefügt werden. Pakete, die rechts stehen, werden selbst zur Umgebung hinzugefügt. Zum Beispiel erzeugt der folgende Befehl eine Guix-Entwicklungsumgebung, die zusätzlich Git und strace umfasst:" #. type: example -#: guix-git/doc/guix.texi:6067 +#: guix-git/doc/guix.texi:6104 #, no-wrap msgid "guix environment --pure guix --ad-hoc git strace\n" msgstr "guix environment --pure guix --ad-hoc git strace\n" #. type: Plain text -#: guix-git/doc/guix.texi:6077 +#: guix-git/doc/guix.texi:6114 msgid "Sometimes it is desirable to isolate the environment as much as possible, for maximal purity and reproducibility. In particular, when using Guix on a host distro that is not Guix System, it is desirable to prevent access to @file{/usr/bin} and other system-wide resources from the development environment. For example, the following command spawns a Guile REPL in a ``container'' where only the store and the current working directory are mounted:" msgstr "Manchmal ist es wünschenswert, die Umgebung so viel wie möglich zu isolieren, um maximale Reinheit und Reproduzierbarkeit zu bekommen. Insbesondere ist es wünschenswert, den Zugriff auf @file{/usr/bin} und andere Systemressourcen aus der Entwicklungsumgebung heraus zu verhindern, wenn man Guix auf einer fremden Wirtsdistribution benutzt, die nicht Guix System ist. Zum Beispiel startet der folgende Befehl eine Guile-REPL in einer isolierten Umgebung, einem sogenannten „Container“, in der nur der Store und das aktuelle Arbeitsverzeichnis eingebunden sind:" #. type: example -#: guix-git/doc/guix.texi:6080 +#: guix-git/doc/guix.texi:6117 #, no-wrap msgid "guix environment --ad-hoc --container guile -- guile\n" msgstr "guix environment --ad-hoc --container guile -- guile\n" #. type: quotation -#: guix-git/doc/guix.texi:6084 +#: guix-git/doc/guix.texi:6121 msgid "The @option{--container} option requires Linux-libre 3.19 or newer." msgstr "Die Befehlszeilenoption @option{--container} funktioniert nur mit Linux-libre 3.19 oder neuer." #. type: cindex -#: guix-git/doc/guix.texi:6086 +#: guix-git/doc/guix.texi:6123 #, no-wrap msgid "certificates" msgstr "Zertifikate" #. type: Plain text -#: guix-git/doc/guix.texi:6093 +#: guix-git/doc/guix.texi:6130 msgid "Another typical use case for containers is to run security-sensitive applications such as a web browser. To run Eolie, we must expose and share some files and directories; we include @code{nss-certs} and expose @file{/etc/ssl/certs/} for HTTPS authentication; finally we preserve the @env{DISPLAY} environment variable since containerized graphical applications won't display without it." msgstr "Ein weiterer typischer Anwendungsfall für Container ist, gegenüber Sicherheitslücken anfällige Anwendungen auszuführen, z.B.@: Webbrowser. Um Eolie auszuführen, müssen wir den Zugriff auf manche Dateien und Verzeichnisse über @option{--expose} und @option{--share} gewähren. Wir lassen @code{nss-certs} bereitstellen und machen @file{/etc/ssl/certs/} für die HTTPS-Authentifizierung sichtbar. Zu guter Letzt behalten wir die @env{DISPLAY}-Umgebungsvariable bei, weil isolierte grafische Anwendungen ohne sie nicht angezeigt werden können." #. type: example -#: guix-git/doc/guix.texi:6100 +#: guix-git/doc/guix.texi:6137 #, no-wrap msgid "" "guix environment --preserve='^DISPLAY$' --container --network \\\n" @@ -13530,89 +13642,89 @@ msgstr "" " --ad-hoc eolie nss-certs dbus -- eolie\n" #. type: table -#: guix-git/doc/guix.texi:6109 +#: guix-git/doc/guix.texi:6146 msgid "Set up the environment and check whether the shell would clobber environment variables. @xref{Invoking guix shell, @option{--check}}, for more info." msgstr "Hiermit wird die Umgebung angelegt und gemeldet, ob die Shell Umgebungsvariable überschreiben würde. Siehe @ref{Invoking guix shell, @option{--check}} für weitere Informationen." #. type: table -#: guix-git/doc/guix.texi:6125 +#: guix-git/doc/guix.texi:6162 msgid "When this option is omitted, the environment is protected from garbage collection only for the duration of the @command{guix environment} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages. @xref{Invoking guix gc}, for more on GC roots." msgstr "Wird diese Option weggelassen, ist die Umgebung nur, solange die Sitzung von @command{guix environment} besteht, vor dem Müllsammler sicher. Das bedeutet, wenn Sie das nächste Mal dieselbe Umgebung neu erzeugen, müssen Sie vielleicht Pakete neu erstellen oder neu herunterladen. @ref{Invoking guix gc} hat mehr Informationen über Müllsammlerwurzeln." #. type: example -#: guix-git/doc/guix.texi:6135 +#: guix-git/doc/guix.texi:6172 #, no-wrap msgid "guix environment -e '(@@ (gnu packages maths) petsc-openmpi)'\n" msgstr "guix environment -e '(@@ (gnu packages maths) petsc-openmpi)'\n" #. type: example -#: guix-git/doc/guix.texi:6144 +#: guix-git/doc/guix.texi:6181 #, no-wrap msgid "guix environment --ad-hoc -e '(@@ (gnu) %base-packages)'\n" msgstr "guix environment --ad-hoc -e '(@@ (gnu) %base-packages)'\n" #. type: example -#: guix-git/doc/guix.texi:6153 +#: guix-git/doc/guix.texi:6190 #, no-wrap msgid "guix environment --ad-hoc -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" msgstr "guix environment --ad-hoc -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" #. type: item -#: guix-git/doc/guix.texi:6155 +#: guix-git/doc/guix.texi:6192 #, no-wrap msgid "--load=@var{file}" msgstr "--load=@var{Datei}" #. type: itemx -#: guix-git/doc/guix.texi:6156 +#: guix-git/doc/guix.texi:6193 #, no-wrap msgid "-l @var{file}" msgstr "-l @var{Datei}" #. type: table -#: guix-git/doc/guix.texi:6159 +#: guix-git/doc/guix.texi:6196 msgid "Create an environment for the package or list of packages that the code within @var{file} evaluates to." msgstr "Eine Umgebung erstellen für das Paket oder die Liste von Paketen, zu der der Code in der @var{Datei} ausgewertet wird." #. type: item -#: guix-git/doc/guix.texi:6177 +#: guix-git/doc/guix.texi:6214 #, no-wrap msgid "--ad-hoc" msgstr "--ad-hoc" #. type: table -#: guix-git/doc/guix.texi:6182 +#: guix-git/doc/guix.texi:6219 msgid "Include all specified packages in the resulting environment, as if an @i{ad hoc} package were defined with them as inputs. This option is useful for quickly creating an environment without having to write a package expression to contain the desired inputs." msgstr "Alle angegebenen Pakete in der resultierenden Umgebung einschließen, als wären sie Eingaben eines @i{ad hoc} definierten Pakets. Diese Befehlszeilenoption ist nützlich, um schnell Umgebungen aufzusetzen, ohne dafür einen Paketausdruck schreiben zu müssen, der die gewünschten Eingaben enthält." #. type: table -#: guix-git/doc/guix.texi:6184 +#: guix-git/doc/guix.texi:6221 msgid "For instance, the command:" msgstr "Zum Beispiel wird mit diesem Befehl:" #. type: example -#: guix-git/doc/guix.texi:6187 +#: guix-git/doc/guix.texi:6224 #, no-wrap msgid "guix environment --ad-hoc guile guile-sdl -- guile\n" msgstr "guix environment --ad-hoc guile guile-sdl -- guile\n" #. type: table -#: guix-git/doc/guix.texi:6191 +#: guix-git/doc/guix.texi:6228 msgid "runs @command{guile} in an environment where Guile and Guile-SDL are available." msgstr "@command{guile} in einer Umgebung ausgeführt, in der sowohl Guile als auch Guile-SDL zur Verfügung stehen." #. type: table -#: guix-git/doc/guix.texi:6196 +#: guix-git/doc/guix.texi:6233 msgid "Note that this example implicitly asks for the default output of @code{guile} and @code{guile-sdl}, but it is possible to ask for a specific output---e.g., @code{glib:bin} asks for the @code{bin} output of @code{glib} (@pxref{Packages with Multiple Outputs})." msgstr "Beachten Sie, dass in diesem Beispiel implizit die vorgegebene Ausgabe von @code{guile} und @code{guile-sdl} verwendet wird, es aber auch möglich ist, eine bestimmte Ausgabe auszuwählen@tie{}— z.B.@: wird mit @code{glib:bin} die Ausgabe @code{bin} von @code{glib} gewählt (siehe @ref{Packages with Multiple Outputs})." #. type: table -#: guix-git/doc/guix.texi:6202 +#: guix-git/doc/guix.texi:6239 msgid "This option may be composed with the default behavior of @command{guix environment}. Packages appearing before @option{--ad-hoc} are interpreted as packages whose dependencies will be added to the environment, the default behavior. Packages appearing after are interpreted as packages that will be added to the environment directly." msgstr "Diese Befehlszeilenoption kann mit dem standardmäßigen Verhalten von @command{guix environment} verbunden werden. Pakete, die vor @option{--ad-hoc} aufgeführt werden, werden als Pakete interpretiert, deren Abhängigkeiten zur Umgebung hinzugefügt werden, was dem standardmäßigen Verhalten entspricht. Pakete, die danach aufgeführt werden, werden selbst zur Umgebung hinzugefügt." #. type: example -#: guix-git/doc/guix.texi:6218 +#: guix-git/doc/guix.texi:6261 #, no-wrap msgid "" "guix environment --pure --preserve=^SLURM --ad-hoc openmpi @dots{} \\\n" @@ -13622,12 +13734,12 @@ msgstr "" " -- mpirun …\n" #. type: table -#: guix-git/doc/guix.texi:6261 +#: guix-git/doc/guix.texi:6304 msgid "For containers, link the environment profile to @file{~/.guix-profile} within the container and set @code{GUIX_ENVIRONMENT} to that. This is equivalent to making @file{~/.guix-profile} a symlink to the actual profile within the container. Linking will fail and abort the environment if the directory already exists, which will certainly be the case if @command{guix environment} was invoked in the user's home directory." msgstr "Bei isolierten Umgebungen („Containern“) wird das Umgebungsprofil im Container als @file{~/.guix-profile} verknüpft und @file{~/.guix-profile} dann in @code{GUIX_ENVIRONMENT} gespeichert. Das ist äquivalent dazu, @file{~/.guix-profile} im Container zu einer symbolischen Verknüpfung auf das tatsächliche Profil zu machen. Wenn das Verzeichnis bereits existiert, schlägt das Verknüpfen fehl und die Umgebung wird nicht hergestellt. Dieser Fehler wird immer eintreten, wenn @command{guix environment} im persönlichen Verzeichnis des Benutzers aufgerufen wurde." #. type: example -#: guix-git/doc/guix.texi:6288 +#: guix-git/doc/guix.texi:6331 #, no-wrap msgid "" "# will expose paths as /home/foo/wd, /home/foo/test, and /home/foo/target\n" @@ -13643,68 +13755,68 @@ msgstr "" " --expose=/tmp/target=$HOME/target\n" #. type: example -#: guix-git/doc/guix.texi:6316 +#: guix-git/doc/guix.texi:6359 #, no-wrap msgid "guix environment --container --expose=$HOME=/exchange --ad-hoc guile -- guile\n" msgstr "guix environment --container --expose=$HOME=/austausch --ad-hoc guile -- guile\n" #. type: Plain text -#: guix-git/doc/guix.texi:6324 +#: guix-git/doc/guix.texi:6367 msgid "@command{guix environment} also supports all of the common build options that @command{guix build} supports (@pxref{Common Build Options}) as well as package transformation options (@pxref{Package Transformation Options})." msgstr "@command{guix environment} unterstützt auch alle gemeinsamen Erstellungsoptionen, die von @command{guix build} unterstützt werden (siehe @ref{Common Build Options}), und die Paketumwandlungsoptionen (siehe @ref{Package Transformation Options})." #. type: section -#: guix-git/doc/guix.texi:6326 +#: guix-git/doc/guix.texi:6369 #, no-wrap msgid "Invoking @command{guix pack}" msgstr "@command{guix pack} aufrufen" #. type: Plain text -#: guix-git/doc/guix.texi:6332 +#: guix-git/doc/guix.texi:6375 msgid "Occasionally you want to pass software to people who are not (yet!) lucky enough to be using Guix. You'd tell them to run @command{guix package -i @var{something}}, but that's not possible in this case. This is where @command{guix pack} comes in." msgstr "Manchmal möchten Sie Software an Leute weitergeben, die (noch!) nicht das Glück haben, Guix zu benutzen. Mit Guix würden sie nur @command{guix package -i @var{irgendetwas}} einzutippen brauchen, aber wenn sie kein Guix haben, muss es anders gehen. Hier kommt @command{guix pack} ins Spiel." #. type: quotation -#: guix-git/doc/guix.texi:6337 +#: guix-git/doc/guix.texi:6380 msgid "If you are looking for ways to exchange binaries among machines that already run Guix, @pxref{Invoking guix copy}, @ref{Invoking guix publish}, and @ref{Invoking guix archive}." msgstr "Wenn Sie aber nach einer Möglichkeit suchen, Binärdateien unter Maschinen auszutauschen, auf denen Guix bereits läuft, sollten Sie einen Blick auf die Abschnitte @ref{Invoking guix copy}, @ref{Invoking guix publish} und @ref{Invoking guix archive} werfen." #. type: cindex -#: guix-git/doc/guix.texi:6339 +#: guix-git/doc/guix.texi:6382 #, no-wrap msgid "pack" msgstr "Pack" #. type: cindex -#: guix-git/doc/guix.texi:6340 +#: guix-git/doc/guix.texi:6383 #, no-wrap msgid "bundle" msgstr "Bündel" #. type: cindex -#: guix-git/doc/guix.texi:6341 +#: guix-git/doc/guix.texi:6384 #, no-wrap msgid "application bundle" msgstr "Anwendungsbündel" #. type: cindex -#: guix-git/doc/guix.texi:6342 +#: guix-git/doc/guix.texi:6385 #, no-wrap msgid "software bundle" msgstr "Software-Bündel" #. type: Plain text -#: guix-git/doc/guix.texi:6351 +#: guix-git/doc/guix.texi:6394 msgid "The @command{guix pack} command creates a shrink-wrapped @dfn{pack} or @dfn{software bundle}: it creates a tarball or some other archive containing the binaries of the software you're interested in, and all its dependencies. The resulting archive can be used on any machine that does not have Guix, and people can run the exact same binaries as those you have with Guix. The pack itself is created in a bit-reproducible fashion, so anyone can verify that it really contains the build results that you pretend to be shipping." msgstr "Der Befehl @command{guix pack} erzeugt ein gut verpacktes @dfn{Software-Bündel}: Konkret wird dadurch ein Tarball oder eine andere Art von Archiv mit den Binärdateien der Software erzeugt, die Sie sich gewünscht haben, zusammen mit all ihren Abhängigkeiten. Der resultierende Archiv kann auch auf jeder Maschine genutzt werden, die kein Guix hat, und jeder kann damit genau dieselben Binärdateien benutzen, die Ihnen unter Guix zur Verfügung stehen. Das Bündel wird dabei auf eine Bit für Bit reproduzierbare Art erzeugt, damit auch jeder nachprüfen kann, dass darin wirklich diejenigen Binärdateien enthalten sind, von denen Sie es behaupten." #. type: Plain text -#: guix-git/doc/guix.texi:6354 +#: guix-git/doc/guix.texi:6397 msgid "For example, to create a bundle containing Guile, Emacs, Geiser, and all their dependencies, you can run:" msgstr "Um zum Beispiel ein Bündel mit Guile, Emacs, Geiser und all ihren Abhängigkeiten zu erzeugen, führen Sie diesen Befehl aus:" #. type: example -#: guix-git/doc/guix.texi:6359 +#: guix-git/doc/guix.texi:6402 #, no-wrap msgid "" "$ guix pack guile emacs emacs-geiser\n" @@ -13716,61 +13828,61 @@ msgstr "" "/gnu/store/…-pack.tar.gz\n" #. type: Plain text -#: guix-git/doc/guix.texi:6367 +#: guix-git/doc/guix.texi:6410 msgid "The result here is a tarball containing a @file{/gnu/store} directory with all the relevant packages. The resulting tarball contains a @dfn{profile} with the three packages of interest; the profile is the same as would be created by @command{guix package -i}. It is this mechanism that is used to create Guix's own standalone binary tarball (@pxref{Binary Installation})." msgstr "Als Ergebnis erhalten Sie einen Tarball mit einem Verzeichnis @file{/gnu/store}, worin sich alles relevanten Pakete befinden. Der resultierende Tarball enthält auch ein @dfn{Profil} mit den drei angegebenen Paketen; es ist dieselbe Art von Profil, die auch @command{guix package -i} erzeugen würde. Mit diesem Mechanismus wird auch der binäre Tarball zur Installation von Guix erzeugt (siehe @ref{Binary Installation})." #. type: Plain text -#: guix-git/doc/guix.texi:6372 +#: guix-git/doc/guix.texi:6415 msgid "Users of this pack would have to run @file{/gnu/store/@dots{}-profile/bin/guile} to run Guile, which you may find inconvenient. To work around it, you can create, say, a @file{/opt/gnu/bin} symlink to the profile:" msgstr "Benutzer des Bündels müssten dann aber zum Beispiel @file{/gnu/store/…-profile/bin/guile} eintippen, um Guile auszuführen, was Ihnen zu unbequem sein könnte. Ein Ausweg wäre, dass Sie etwa eine symbolische Verknüpfung @file{/opt/gnu/bin} auf das Profil anlegen:" #. type: example -#: guix-git/doc/guix.texi:6375 +#: guix-git/doc/guix.texi:6418 #, no-wrap msgid "guix pack -S /opt/gnu/bin=bin guile emacs emacs-geiser\n" msgstr "guix pack -S /opt/gnu/bin=bin guile emacs emacs-geiser\n" #. type: Plain text -#: guix-git/doc/guix.texi:6379 +#: guix-git/doc/guix.texi:6422 msgid "That way, users can happily type @file{/opt/gnu/bin/guile} and enjoy." msgstr "Benutzer müssten dann nur noch @file{/opt/gnu/bin/guile} eintippen, um Guile zu genießen." #. type: cindex -#: guix-git/doc/guix.texi:6380 +#: guix-git/doc/guix.texi:6423 #, no-wrap msgid "relocatable binaries, with @command{guix pack}" msgstr "verschiebliche Binärdateien, mit @command{guix pack}" #. type: Plain text -#: guix-git/doc/guix.texi:6388 +#: guix-git/doc/guix.texi:6431 msgid "What if the recipient of your pack does not have root privileges on their machine, and thus cannot unpack it in the root file system? In that case, you will want to use the @option{--relocatable} option (see below). This option produces @dfn{relocatable binaries}, meaning they they can be placed anywhere in the file system hierarchy: in the example above, users can unpack your tarball in their home directory and directly run @file{./opt/gnu/bin/guile}." msgstr "Doch was ist, wenn die Empfängerin Ihres Bündels keine Administratorrechte auf ihrer Maschine hat, das Bündel also nicht ins Wurzelverzeichnis ihres Dateisystems entpacken kann? Dann möchten Sie vielleicht die Befehlszeilenoption @option{--relocatable} benutzen (siehe weiter unten). Mit dieser Option werden @dfn{verschiebliche Binärdateien} erzeugt, die auch in einem beliebigen anderen Verzeichnis in der Dateisystemhierarchie abgelegt und von dort ausgeführt werden können. Man könnte sagen, sie sind pfad-agnostisch. In obigem Beispiel würden Benutzer Ihren Tarball in ihr Persönliches Verzeichnis (das „Home“-Verzeichnis) entpacken und von dort den Befehl @file{./opt/gnu/bin/guile} ausführen." #. type: cindex -#: guix-git/doc/guix.texi:6389 +#: guix-git/doc/guix.texi:6432 #, no-wrap msgid "Docker, build an image with guix pack" msgstr "Docker, ein Abbild erstellen mit guix pack" #. type: Plain text -#: guix-git/doc/guix.texi:6392 +#: guix-git/doc/guix.texi:6435 msgid "Alternatively, you can produce a pack in the Docker image format using the following command:" msgstr "Eine weitere Möglichkeit ist, das Bündel im Format eines Docker-Abbilds (englisch Docker-Image) zu erzeugen. Das geht mit dem folgenden Befehl:" #. type: example -#: guix-git/doc/guix.texi:6395 +#: guix-git/doc/guix.texi:6438 #, no-wrap msgid "guix pack -f docker -S /bin=bin guile guile-readline\n" msgstr "guix pack -f docker -S /bin=bin guile guile-readline\n" #. type: Plain text -#: guix-git/doc/guix.texi:6400 +#: guix-git/doc/guix.texi:6443 msgid "The result is a tarball that can be passed to the @command{docker load} command, followed by @code{docker run}:" msgstr "Das Ergebnis ist ein Tarball, der dem Befehl @command{docker load} übergeben werden kann, gefolgt von @code{docker run}:" #. type: example -#: guix-git/doc/guix.texi:6404 +#: guix-git/doc/guix.texi:6447 #, no-wrap msgid "" "docker load < @var{file}\n" @@ -13780,169 +13892,169 @@ msgstr "" "docker run -ti guile-guile-readline /bin/guile\n" #. type: Plain text -#: guix-git/doc/guix.texi:6411 +#: guix-git/doc/guix.texi:6454 msgid "where @var{file} is the image returned by @var{guix pack}, and @code{guile-guile-readline} is its ``image tag''. See the @uref{https://docs.docker.com/engine/reference/commandline/load/, Docker documentation} for more information." msgstr "Dabei steht @var{Datei} für das durch @var{guix pack} gelieferte Abbild und @code{guile-guile-readline} für den „Image-Tag“, der diesem zugewiesen wurde. In der @uref{https://docs.docker.com/engine/reference/commandline/load/, Dokumentation von Docker} finden Sie nähere Informationen." #. type: cindex -#: guix-git/doc/guix.texi:6412 +#: guix-git/doc/guix.texi:6455 #, no-wrap msgid "Singularity, build an image with guix pack" msgstr "Singularity, ein Abbild erstellen mit guix pack" #. type: cindex -#: guix-git/doc/guix.texi:6413 +#: guix-git/doc/guix.texi:6456 #, no-wrap msgid "SquashFS, build an image with guix pack" msgstr "SquashFS, ein Abbild erstellen mit guix pack" #. type: Plain text -#: guix-git/doc/guix.texi:6416 +#: guix-git/doc/guix.texi:6459 msgid "Yet another option is to produce a SquashFS image with the following command:" msgstr "Und noch eine weitere Möglichkeit ist, dass Sie ein SquashFS-Abbild mit folgendem Befehl erzeugen:" #. type: example -#: guix-git/doc/guix.texi:6419 +#: guix-git/doc/guix.texi:6462 #, no-wrap msgid "guix pack -f squashfs bash guile emacs emacs-geiser\n" msgstr "guix pack -f squashfs bash guile emacs emacs-geiser\n" #. type: Plain text -#: guix-git/doc/guix.texi:6427 +#: guix-git/doc/guix.texi:6470 msgid "The result is a SquashFS file system image that can either be mounted or directly be used as a file system container image with the @uref{https://www.sylabs.io/docs/, Singularity container execution environment}, using commands like @command{singularity shell} or @command{singularity exec}." msgstr "Das Ergebnis ist ein SquashFS-Dateisystemabbild, dass entweder als Dateisystem eingebunden oder mit Hilfe der @uref{https://www.sylabs.io/docs/, Singularity-Container-Ausführungsumgebung} als Dateisystemcontainer benutzt werden kann, mit Befehlen wie @command{singularity shell} oder @command{singularity exec}." #. type: Plain text -#: guix-git/doc/guix.texi:6429 +#: guix-git/doc/guix.texi:6472 msgid "Several command-line options allow you to customize your pack:" msgstr "Es gibt mehrere Befehlszeilenoptionen, mit denen Sie Ihr Bündel anpassen können:" #. type: table -#: guix-git/doc/guix.texi:6434 +#: guix-git/doc/guix.texi:6477 msgid "Produce a pack in the given @var{format}." msgstr "Generiert ein Bündel im angegebenen @var{Format}." #. type: table -#: guix-git/doc/guix.texi:6436 +#: guix-git/doc/guix.texi:6479 msgid "The available formats are:" msgstr "Die verfügbaren Formate sind:" #. type: item -#: guix-git/doc/guix.texi:6438 +#: guix-git/doc/guix.texi:6481 #, no-wrap msgid "tarball" msgstr "tarball" #. type: table -#: guix-git/doc/guix.texi:6441 +#: guix-git/doc/guix.texi:6484 msgid "This is the default format. It produces a tarball containing all the specified binaries and symlinks." msgstr "Das standardmäßig benutzte Format. Damit wird ein Tarball generiert, der alle angegebenen Binärdateien und symbolischen Verknüpfungen enthält." #. type: item -#: guix-git/doc/guix.texi:6442 +#: guix-git/doc/guix.texi:6485 #, no-wrap msgid "docker" msgstr "docker" #. type: table -#: guix-git/doc/guix.texi:6448 +#: guix-git/doc/guix.texi:6491 msgid "This produces a tarball that follows the @uref{https://github.com/docker/docker/blob/master/image/spec/v1.2.md, Docker Image Specification}. The ``repository name'' as it appears in the output of the @command{docker images} command is computed from package names passed on the command line or in the manifest file." msgstr "Generiert einen Tarball gemäß der @uref{https://github.com/docker/docker/blob/master/image/spec/v1.2.md, Spezifikation für Docker-Abbilder}. Der „Repository-Name“, wie er in der Ausgabe des Befehls @command{docker images} erscheint, wird anhand der Paketnamen berechnet, die auf der Befehlszeile oder in der Manifest-Datei angegeben wurden." #. type: item -#: guix-git/doc/guix.texi:6449 +#: guix-git/doc/guix.texi:6492 #, no-wrap msgid "squashfs" msgstr "squashfs" #. type: table -#: guix-git/doc/guix.texi:6453 +#: guix-git/doc/guix.texi:6496 msgid "This produces a SquashFS image containing all the specified binaries and symlinks, as well as empty mount points for virtual file systems like procfs." msgstr "Generiert ein SquashFS-Abbild, das alle angegebenen Binärdateien und symbolischen Verknüpfungen enthält, sowie leere Einhängepunkte für virtuelle Dateisysteme wie procfs." #. type: quotation -#: guix-git/doc/guix.texi:6459 +#: guix-git/doc/guix.texi:6502 msgid "Singularity @emph{requires} you to provide @file{/bin/sh} in the image. For that reason, @command{guix pack -f squashfs} always implies @code{-S /bin=bin}. Thus, your @command{guix pack} invocation must always start with something like:" msgstr "Für Singularity @emph{müssen} Sie eine @file{/bin/sh} in das Abbild aufnehmen. Aus diesem Grund gilt für @command{guix pack -f squashfs} implizit immer auch @code{-S /bin=bin}. Daher muss Ihr Aufruf von @command{guix pack} immer ungefähr so beginnen:" #. type: example -#: guix-git/doc/guix.texi:6462 +#: guix-git/doc/guix.texi:6505 #, no-wrap msgid "guix pack -f squashfs bash @dots{}\n" msgstr "guix pack -f squashfs bash …\n" #. type: quotation -#: guix-git/doc/guix.texi:6467 +#: guix-git/doc/guix.texi:6510 msgid "If you forget the @code{bash} (or similar) package, @command{singularity run} and @command{singularity exec} will fail with an unhelpful ``no such file or directory'' message." msgstr "Wenn Sie vergessen, das @code{bash}-Paket (oder etwas Ähnliches) zu bündeln, werden @command{singularity run} und @command{singularity exec} mit der wenig hilfreichen Meldung „Datei oder Verzeichnis nicht gefunden“ scheitern." #. type: item -#: guix-git/doc/guix.texi:6469 +#: guix-git/doc/guix.texi:6512 #, no-wrap msgid "deb" msgstr "deb" #. type: table -#: guix-git/doc/guix.texi:6477 +#: guix-git/doc/guix.texi:6520 msgid "This produces a Debian archive (a package with the @samp{.deb} file extension) containing all the specified binaries and symbolic links, that can be installed on top of any dpkg-based GNU(/Linux) distribution. Advanced options can be revealed via the @option{--help-deb-format} option. They allow embedding control files for more fine-grained control, such as activating specific triggers or providing a maintainer configure script to run arbitrary setup code upon installation." msgstr "Hiermit wird ein Debian-Archiv erzeugt (ein Paket mit der Dateinamenserweiterung „@code{.deb}“), in dem alle angegebenen Binärdateien und symbolischen Verknüpfungen enthalten sind. Es kann auf jeder dpkg-basierten GNU(/Linux)-Distribution installiert werden. Fortgeschrittene Optionen werden Ihnen angezeigt, wenn Sie die Befehlszeilenoption @option{--help-deb-format} angeben. Mit jenen können Control-Dateien hinzugefügt werden für eine genaue Steuerung z.B.@: welche bestimmten Trigger aktiviert werden oder um mit einem Betreuerskript beliebigen Konfigurations-Code einzufügen, der bei Installation ausgeführt werden soll." #. type: example -#: guix-git/doc/guix.texi:6480 +#: guix-git/doc/guix.texi:6523 #, no-wrap msgid "guix pack -f deb -C xz -S /usr/bin/hello=bin/hello hello\n" msgstr "guix pack -f deb -C xz -S /usr/bin/hello=bin/hello hello\n" #. type: quotation -#: guix-git/doc/guix.texi:6487 +#: guix-git/doc/guix.texi:6530 msgid "Because archives produced with @command{guix pack} contain a collection of store items and because each @command{dpkg} package must not have conflicting files, in practice that means you likely won't be able to install more than one such archive on a given system." msgstr "Weil in den mit @command{guix pack} erzeugten Archiven eine Ansammlung von Store-Objekten enthalten ist und weil in jedem @command{dpkg}-Paket keine im Konflikt stehenden Dateien enthalten sein dürfen, können Sie @i{de facto} wahrscheinlich nur ein einziges mit @command{guix pack} erzeugtes „@code{.deb}“-Archiv je System installieren." #. type: quotation -#: guix-git/doc/guix.texi:6495 +#: guix-git/doc/guix.texi:6538 msgid "@command{dpkg} will assume ownership of any files contained in the pack that it does @emph{not} know about. It is unwise to install Guix-produced @samp{.deb} files on a system where @file{/gnu/store} is shared by other software, such as a Guix installation or other, non-deb packs." msgstr "@command{dpkg} übernimmt die Zuständigkeit für alle Dateien, die im Bündel enthalten sind, auch wenn es die Dateien @emph{nicht} kennt. Es ist unklug, mit Guix erzeugte „@code{.deb}“-Dateien auf einem System zu installieren, auf dem @file{/gnu/store} bereits von anderer Software verwendet wird, also wenn z.B.@: Guix bereits installiert ist oder andere Nicht-@code{deb}-Bündel installiert sind." #. type: cindex -#: guix-git/doc/guix.texi:6499 +#: guix-git/doc/guix.texi:6542 #, no-wrap msgid "relocatable binaries" msgstr "verschiebliche Binärdateien" #. type: item -#: guix-git/doc/guix.texi:6500 +#: guix-git/doc/guix.texi:6543 #, no-wrap msgid "--relocatable" msgstr "--relocatable" #. type: table -#: guix-git/doc/guix.texi:6504 +#: guix-git/doc/guix.texi:6547 msgid "Produce @dfn{relocatable binaries}---i.e., binaries that can be placed anywhere in the file system hierarchy and run from there." msgstr "Erzeugt @dfn{verschiebliche Binärdateien}@tie{}— also pfad-agnostische, „portable“ Binärdateien, die an einer beliebigen Stelle in der Dateisystemhierarchie platziert und von dort ausgeführt werden können." #. type: table -#: guix-git/doc/guix.texi:6512 +#: guix-git/doc/guix.texi:6555 msgid "When this option is passed once, the resulting binaries require support for @dfn{user namespaces} in the kernel Linux; when passed @emph{twice}@footnote{Here's a trick to memorize it: @code{-RR}, which adds PRoot support, can be thought of as the abbreviation of ``Really Relocatable''. Neat, isn't it?}, relocatable binaries fall to back to other techniques if user namespaces are unavailable, and essentially work anywhere---see below for the implications." msgstr "Wenn diese Befehlszeilenoption einmal übergeben wird, funktionieren die erzeugten Binärdateien nur dann, wenn @dfn{Benutzernamensräume} des Linux-Kernels unterstützt werden. Wenn sie @emph{zweimal}@footnote{Es gibt einen Trick, wie Sie sich das merken können: @code{-RR}, womit PRoot-Unterstützung hinzugefügt wird, kann man sich als Abkürzung für „Rundum Relocatable“ oder englisch „Really Relocatable“ vorstellen. Ist das nicht prima?} übergeben wird, laufen die Binärdateien notfalls mit anderen Methoden, wenn keine Benutzernamensräume zur Verfügung stehen, funktionieren also ziemlich überall@tie{}— siehe unten für die Auswirkungen." #. type: table -#: guix-git/doc/guix.texi:6514 +#: guix-git/doc/guix.texi:6557 msgid "For example, if you create a pack containing Bash with:" msgstr "Zum Beispiel können Sie ein Bash enthalltendes Bündel erzeugen mit:" #. type: example -#: guix-git/doc/guix.texi:6517 +#: guix-git/doc/guix.texi:6560 #, no-wrap msgid "guix pack -RR -S /mybin=bin bash\n" msgstr "guix pack -RR -S /meine-bin=bin bash\n" #. type: table -#: guix-git/doc/guix.texi:6522 +#: guix-git/doc/guix.texi:6565 msgid "...@: you can copy that pack to a machine that lacks Guix, and from your home directory as a normal user, run:" msgstr "…@: Sie können dieses dann auf eine Maschine ohne Guix kopieren und als normaler Nutzer aus Ihrem Persönlichen Verzeichnis (auch „Home“-Verzeichnis genannt) dann ausführen mit:" #. type: example -#: guix-git/doc/guix.texi:6526 +#: guix-git/doc/guix.texi:6569 #, no-wrap msgid "" "tar xf pack.tar.gz\n" @@ -13952,121 +14064,121 @@ msgstr "" "./meine-bin/sh\n" #. type: table -#: guix-git/doc/guix.texi:6534 +#: guix-git/doc/guix.texi:6577 msgid "In that shell, if you type @code{ls /gnu/store}, you'll notice that @file{/gnu/store} shows up and contains all the dependencies of @code{bash}, even though the machine actually lacks @file{/gnu/store} altogether! That is probably the simplest way to deploy Guix-built software on a non-Guix machine." msgstr "Wenn Sie in der so gestarteten Shell dann @code{ls /gnu/store} eintippen, sehen Sie, dass Ihnen angezeigt wird, in @file{/gnu/store} befänden sich alle Abhängigkeiten von @code{bash}, obwohl auf der Maschine überhaupt kein Verzeichnis @file{/gnu/store} existiert! Dies ist vermutlich die einfachste Art, mit Guix erstellte Software für eine Maschine ohne Guix auszuliefern." #. type: quotation -#: guix-git/doc/guix.texi:6540 +#: guix-git/doc/guix.texi:6583 msgid "By default, relocatable binaries rely on the @dfn{user namespace} feature of the kernel Linux, which allows unprivileged users to mount or change root. Old versions of Linux did not support it, and some GNU/Linux distributions turn it off." msgstr "Wenn die Voreinstellung verwendet wird, funktionieren verschiebliche Binärdateien nur mit @dfn{Benutzernamensräumen} (englisch @dfn{User namespaces}), einer Funktionalität des Linux-Kernels, mit der Benutzer ohne besondere Berechtigungen Dateisysteme einbinden (englisch „mount“) oder die Wurzel des Dateisystems wechseln können („change root“, kurz „chroot“). Alte Versionen von Linux haben diese Funktionalität noch nicht unterstützt und manche Distributionen von GNU/Linux schalten sie ab." #. type: quotation -#: guix-git/doc/guix.texi:6546 +#: guix-git/doc/guix.texi:6589 msgid "To produce relocatable binaries that work even in the absence of user namespaces, pass @option{--relocatable} or @option{-R} @emph{twice}. In that case, binaries will try user namespace support and fall back to another @dfn{execution engine} if user namespaces are not supported. The following execution engines are supported:" msgstr "Um verschiebliche Binärdateien zu erzeugen, die auch ohne Benutzernamensräume funktionieren, können Sie die Befehlszeilenoption @option{--relocatable} oder @option{-R} @emph{zweimal} angeben. In diesem Fall werden die Binärdateien zuerst überprüfen, ob Benutzernamensräume unterstützt werden, und sonst notfalls einen anderen @dfn{Ausführungstreiber} benutzen, um das Programm auszuführen, wenn Benutzernamensräume nicht unterstützt werden. Folgende Ausführungstreiber werden unterstützt:" #. type: item -#: guix-git/doc/guix.texi:6548 guix-git/doc/guix.texi:17371 +#: guix-git/doc/guix.texi:6591 guix-git/doc/guix.texi:17733 #, no-wrap msgid "default" msgstr "default" #. type: table -#: guix-git/doc/guix.texi:6551 +#: guix-git/doc/guix.texi:6594 msgid "Try user namespaces and fall back to PRoot if user namespaces are not supported (see below)." msgstr "Es wird versucht, Benutzernamensräume zu verwenden. Sind Benutzernamensräume nicht verfügbar (siehe unten), wird auf PRoot zurückgegriffen." #. type: item -#: guix-git/doc/guix.texi:6552 +#: guix-git/doc/guix.texi:6595 #, no-wrap msgid "performance" msgstr "performance" #. type: table -#: guix-git/doc/guix.texi:6555 +#: guix-git/doc/guix.texi:6598 msgid "Try user namespaces and fall back to Fakechroot if user namespaces are not supported (see below)." msgstr "Es wird versucht, Benutzernamensräume zu verwenden. Sind Benutzernamensräume nicht verfügbar (siehe unten), wird auf Fakechroot zurückgegriffen." #. type: item -#: guix-git/doc/guix.texi:6556 +#: guix-git/doc/guix.texi:6599 #, no-wrap msgid "userns" msgstr "userns" #. type: table -#: guix-git/doc/guix.texi:6559 +#: guix-git/doc/guix.texi:6602 msgid "Run the program through user namespaces and abort if they are not supported." msgstr "Das Programm wird mit Hilfe von Benutzernamensräumen ausgeführt. Wenn sie nicht unterstützt werden, bricht das Programm ab." #. type: item -#: guix-git/doc/guix.texi:6560 +#: guix-git/doc/guix.texi:6603 #, no-wrap msgid "proot" msgstr "proot" #. type: table -#: guix-git/doc/guix.texi:6567 +#: guix-git/doc/guix.texi:6610 msgid "Run through PRoot. The @uref{https://proot-me.github.io/, PRoot} program provides the necessary support for file system virtualization. It achieves that by using the @code{ptrace} system call on the running program. This approach has the advantage to work without requiring special kernel support, but it incurs run-time overhead every time a system call is made." msgstr "Durch PRoot ausführen. Das Programm @uref{https://proot-me.github.io/, PRoot} bietet auch Unterstützung für Dateisystemvirtualisierung, indem der Systemaufruf @code{ptrace} auf das laufende Programm angewendet wird. Dieser Ansatz funktioniert auch ohne besondere Kernel-Unterstützung, aber das Programm braucht mehr Zeit, um selbst Systemaufrufe durchzuführen." #. type: item -#: guix-git/doc/guix.texi:6568 +#: guix-git/doc/guix.texi:6611 #, no-wrap msgid "fakechroot" msgstr "fakechroot" #. type: table -#: guix-git/doc/guix.texi:6576 +#: guix-git/doc/guix.texi:6619 msgid "Run through Fakechroot. @uref{https://github.com/dex4er/fakechroot/, Fakechroot} virtualizes file system accesses by intercepting calls to C library functions such as @code{open}, @code{stat}, @code{exec}, and so on. Unlike PRoot, it incurs very little overhead. However, it does not always work: for example, some file system accesses made from within the C library are not intercepted, and file system accesses made @i{via} direct syscalls are not intercepted either, leading to erratic behavior." msgstr "Durch Fakechroot laufen lassen. @uref{https://github.com/dex4er/fakechroot/, Fakechroot} virtualisiert Dateisystemzugriffe, indem Aufrufe von Funktionen der C-Bibliothek wie @code{open}, @code{stat}, @code{exec} und so weiter abgefangen werden. Anders als bei PRoot entsteht dabei kaum Mehraufwand. Jedoch funktioniert das nicht immer, zum Beispiel werden manche Dateisystemzugriffe aus der C-Bibliothek heraus @emph{nicht} abgefangen, ebenso wenig wie Dateisystemaufrufe über direkte Systemaufrufe, was zu fehlerbehaftetem Verhalten führt." #. type: vindex -#: guix-git/doc/guix.texi:6578 +#: guix-git/doc/guix.texi:6621 #, no-wrap msgid "GUIX_EXECUTION_ENGINE" msgstr "GUIX_EXECUTION_ENGINE" #. type: quotation -#: guix-git/doc/guix.texi:6582 +#: guix-git/doc/guix.texi:6625 msgid "When running a wrapped program, you can explicitly request one of the execution engines listed above by setting the @env{GUIX_EXECUTION_ENGINE} environment variable accordingly." msgstr "Wenn Sie ein verpacktes Programm ausführen, können Sie einen der oben angeführten Ausführungstreiber ausdrücklich anfordern, indem Sie die Umgebungsvariable @env{GUIX_EXECUTION_ENGINE} entsprechend festlegen." #. type: cindex -#: guix-git/doc/guix.texi:6584 +#: guix-git/doc/guix.texi:6627 #, no-wrap msgid "entry point, for Docker images" msgstr "Einsprungpunkt, für Docker-Abbilder" #. type: item -#: guix-git/doc/guix.texi:6585 +#: guix-git/doc/guix.texi:6628 #, no-wrap msgid "--entry-point=@var{command}" msgstr "--entry-point=@var{Befehl}" #. type: table -#: guix-git/doc/guix.texi:6590 +#: guix-git/doc/guix.texi:6633 msgid "Use @var{command} as the @dfn{entry point} of the resulting pack, if the pack format supports it---currently @code{docker} and @code{squashfs} (Singularity) support it. @var{command} must be relative to the profile contained in the pack." msgstr "Den @var{Befehl} als den @dfn{Einsprungpunkt} des erzeugten Bündels verwenden, wenn das Bündelformat einen solchen unterstützt@tie{}— derzeit tun das @code{docker} und @code{squashfs} (Singularity). Der @var{Befehl} wird relativ zum Profil ausgeführt, das sich im Bündel befindet." #. type: table -#: guix-git/doc/guix.texi:6594 +#: guix-git/doc/guix.texi:6637 msgid "The entry point specifies the command that tools like @code{docker run} or @code{singularity run} automatically start by default. For example, you can do:" msgstr "Der Einsprungpunkt gibt den Befehl an, der mit @code{docker run} oder @code{singularity run} beim Start nach Voreinstellung automatisch ausgeführt wird. Zum Beispiel können Sie das hier benutzen:" #. type: example -#: guix-git/doc/guix.texi:6597 +#: guix-git/doc/guix.texi:6640 #, no-wrap msgid "guix pack -f docker --entry-point=bin/guile guile\n" msgstr "guix pack -f docker --entry-point=bin/guile guile\n" #. type: table -#: guix-git/doc/guix.texi:6601 +#: guix-git/doc/guix.texi:6644 msgid "The resulting pack can easily be loaded and @code{docker run} with no extra arguments will spawn @code{bin/guile}:" msgstr "Dann kann das erzeugte Bündel mit z.B.@: @code{docker run} ohne weitere Befehlszeilenargumente einfach geladen und ausgeführt werden, um @code{bin/guile} zu starten:" #. type: example -#: guix-git/doc/guix.texi:6605 +#: guix-git/doc/guix.texi:6648 #, no-wrap msgid "" "docker load -i pack.tar.gz\n" @@ -14076,398 +14188,398 @@ msgstr "" "docker run @var{Abbild-ID}\n" #. type: table -#: guix-git/doc/guix.texi:6610 guix-git/doc/guix.texi:12497 -#: guix-git/doc/guix.texi:13445 +#: guix-git/doc/guix.texi:6653 guix-git/doc/guix.texi:12812 +#: guix-git/doc/guix.texi:13802 msgid "Consider the package @var{expr} evaluates to." msgstr "Als Paket benutzen, wozu der @var{Ausdruck} ausgewertet wird." #. type: table -#: guix-git/doc/guix.texi:6614 +#: guix-git/doc/guix.texi:6657 msgid "This has the same purpose as the same-named option in @command{guix build} (@pxref{Additional Build Options, @option{--expression} in @command{guix build}})." msgstr "Der Zweck hiervon ist derselbe wie bei der gleichnamigen Befehlszeilenoption in @command{guix build} (siehe @ref{Additional Build Options, @option{--expression} in @command{guix build}})." #. type: table -#: guix-git/doc/guix.texi:6620 +#: guix-git/doc/guix.texi:6663 msgid "Use the packages contained in the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "Die Pakete benutzen, die im Manifest-Objekt aufgeführt sind, das vom Scheme-Code in der angegebenen @var{Datei} geliefert wird. Wenn diese Befehlszeilenoption mehrmals wiederholt angegeben wird, werden die Manifeste aneinandergehängt." #. type: table -#: guix-git/doc/guix.texi:6628 +#: guix-git/doc/guix.texi:6671 msgid "This has a similar purpose as the same-named option in @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) and uses the same manifest files. It allows you to define a collection of packages once and use it both for creating profiles and for creating archives for use on machines that do not have Guix installed. Note that you can specify @emph{either} a manifest file @emph{or} a list of packages, but not both." msgstr "Dies hat einen ähnlichen Zweck wie die gleichnamige Befehlszeilenoption in @command{guix package} (siehe @ref{profile-manifest, @option{--manifest}}) und benutzt dieselben Regeln für Manifest-Dateien. Damit können Sie eine Reihe von Paketen einmal definieren und dann sowohl zum Erzeugen von Profilesn als auch zum Erzeugen von Archiven benutzen, letztere für Maschinen, auf denen Guix nicht installiert ist. Beachten Sie, dass Sie @emph{entweder} eine Manifest-Datei @emph{oder} eine Liste von Paketen angeben können, aber nicht beides." #. type: item -#: guix-git/doc/guix.texi:6634 guix-git/doc/guix.texi:11539 +#: guix-git/doc/guix.texi:6677 guix-git/doc/guix.texi:11853 #, no-wrap msgid "--target=@var{triplet}" msgstr "--target=@var{Tripel}" #. type: cindex -#: guix-git/doc/guix.texi:6635 guix-git/doc/guix.texi:7080 -#: guix-git/doc/guix.texi:11540 +#: guix-git/doc/guix.texi:6678 guix-git/doc/guix.texi:7124 +#: guix-git/doc/guix.texi:11854 #, no-wrap msgid "cross-compilation" msgstr "Cross-Kompilieren" #. type: table -#: guix-git/doc/guix.texi:6639 +#: guix-git/doc/guix.texi:6682 msgid "Cross-build for @var{triplet}, which must be a valid GNU triplet, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying target triplets, GNU configuration triplets,, autoconf, Autoconf})." msgstr "Lässt für das angegebene @var{Tripel} cross-erstellen, dieses muss ein gültiges GNU-Tripel wie z.B.@: @code{\"aarch64-linux-gnu\"} sein (siehe @ref{Specifying target triplets, GNU-Konfigurationstripel,, autoconf, Autoconf})." #. type: item -#: guix-git/doc/guix.texi:6640 +#: guix-git/doc/guix.texi:6683 #, no-wrap msgid "--compression=@var{tool}" msgstr "--compression=@var{Werkzeug}" #. type: itemx -#: guix-git/doc/guix.texi:6641 +#: guix-git/doc/guix.texi:6684 #, no-wrap msgid "-C @var{tool}" msgstr "-C @var{Werkzeug}" #. type: table -#: guix-git/doc/guix.texi:6645 +#: guix-git/doc/guix.texi:6688 msgid "Compress the resulting tarball using @var{tool}---one of @code{gzip}, @code{zstd}, @code{bzip2}, @code{xz}, @code{lzip}, or @code{none} for no compression." msgstr "Komprimiert den resultierenden Tarball mit dem angegebenen @var{Werkzeug}@tie{}— dieses kann @code{gzip}, @code{zstd}, @code{bzip2}, @code{xz}, @code{lzip} oder @code{none} für keine Kompression sein." #. type: item -#: guix-git/doc/guix.texi:6646 +#: guix-git/doc/guix.texi:6689 #, no-wrap msgid "--symlink=@var{spec}" msgstr "--symlink=@var{Spezifikation}" #. type: itemx -#: guix-git/doc/guix.texi:6647 +#: guix-git/doc/guix.texi:6690 #, no-wrap msgid "-S @var{spec}" msgstr "-S @var{Spezifikation}" #. type: table -#: guix-git/doc/guix.texi:6650 +#: guix-git/doc/guix.texi:6693 msgid "Add the symlinks specified by @var{spec} to the pack. This option can appear several times." msgstr "Fügt die in der @var{Spezifikation} festgelegten symbolischen Verknüpfungen zum Bündel hinzu. Diese Befehlszeilenoption darf mehrmals vorkommen." #. type: table -#: guix-git/doc/guix.texi:6654 +#: guix-git/doc/guix.texi:6697 msgid "@var{spec} has the form @code{@var{source}=@var{target}}, where @var{source} is the symlink that will be created and @var{target} is the symlink target." msgstr "Die @var{Spezifikation} muss von der Form @code{@var{Quellort}=@var{Zielort}} sein, wobei der @var{Quellort} der Ort der symbolischen Verknüpfung, die erstellt wird, und @var{Zielort} das Ziel der symbolischen Verknüpfung ist." #. type: table -#: guix-git/doc/guix.texi:6657 +#: guix-git/doc/guix.texi:6700 msgid "For instance, @code{-S /opt/gnu/bin=bin} creates a @file{/opt/gnu/bin} symlink pointing to the @file{bin} sub-directory of the profile." msgstr "Zum Beispiel wird mit @code{-S /opt/gnu/bin=bin} eine symbolische Verknüpfung @file{/opt/gnu/bin} auf das Unterverzeichnis @file{bin} im Profil erzeugt." #. type: item -#: guix-git/doc/guix.texi:6658 guix-git/doc/guix.texi:35262 +#: guix-git/doc/guix.texi:6701 guix-git/doc/guix.texi:35706 #, no-wrap msgid "--save-provenance" msgstr "--save-provenance" #. type: table -#: guix-git/doc/guix.texi:6662 +#: guix-git/doc/guix.texi:6705 msgid "Save provenance information for the packages passed on the command line. Provenance information includes the URL and commit of the channels in use (@pxref{Channels})." msgstr "Provenienzinformationen für die auf der Befehlszeile übergebenen Pakete speichern. Zu den Provenienzinformationen gehören die URL und der Commit jedes benutzten Kanals (siehe @ref{Channels})." #. type: table -#: guix-git/doc/guix.texi:6668 +#: guix-git/doc/guix.texi:6711 msgid "Provenance information is saved in the @file{/gnu/store/@dots{}-profile/manifest} file in the pack, along with the usual package metadata---the name and version of each package, their propagated inputs, and so on. It is useful information to the recipient of the pack, who then knows how the pack was (supposedly) obtained." msgstr "Provenienzinformationen werden in der Datei @file{/gnu/store/…-profile/manifest} im Bündel zusammen mit den üblichen Paketmetadaten abgespeichert@tie{}— also Name und Version jedes Pakets, welche Eingaben dabei propagiert werden und so weiter. Die Informationen nützen den Empfängern des Bündels, weil sie dann wissen, woraus das Bündel (angeblich) besteht." #. type: table -#: guix-git/doc/guix.texi:6674 +#: guix-git/doc/guix.texi:6717 msgid "This option is not enabled by default because, like timestamps, provenance information contributes nothing to the build process. In other words, there is an infinity of channel URLs and commit IDs that can lead to the same pack. Recording such ``silent'' metadata in the output thus potentially breaks the source-to-binary bitwise reproducibility property." msgstr "Der Vorgabe nach wird diese Befehlszeilenoption @emph{nicht} verwendet, weil Provenienzinformationen genau wie Zeitstempel nichts zum Erstellungsprozess beitragen. Mit anderen Worten gibt es unendlich viele Kanal-URLs und Commit-IDs, aus denen dasselbe Bündel stammen könnte. Wenn solche „stillen“ Metadaten Teil des Ausgabe sind, dann wird also die bitweise Reproduzierbarkeit von Quellcode zu Binärdateien eingeschränkt." #. type: cindex -#: guix-git/doc/guix.texi:6677 +#: guix-git/doc/guix.texi:6720 #, no-wrap msgid "garbage collector root, for packs" msgstr "Müllsammlerwurzel, für Bündel" #. type: table -#: guix-git/doc/guix.texi:6680 +#: guix-git/doc/guix.texi:6723 msgid "Make @var{file} a symlink to the resulting pack, and register it as a garbage collector root." msgstr "Die @var{Datei} zu einer symbolischen Verknüpfung auf das erzeugte Bündel machen und als Müllsammlerwurzel registrieren." #. type: item -#: guix-git/doc/guix.texi:6681 +#: guix-git/doc/guix.texi:6724 #, no-wrap msgid "--localstatedir" msgstr "--localstatedir" #. type: itemx -#: guix-git/doc/guix.texi:6682 +#: guix-git/doc/guix.texi:6725 #, no-wrap msgid "--profile-name=@var{name}" msgstr "--profile-name=@var{Name}" #. type: table -#: guix-git/doc/guix.texi:6687 +#: guix-git/doc/guix.texi:6730 msgid "Include the ``local state directory'', @file{/var/guix}, in the resulting pack, and notably the @file{/var/guix/profiles/per-user/root/@var{name}} profile---by default @var{name} is @code{guix-profile}, which corresponds to @file{~root/.guix-profile}." msgstr "Das „lokale Zustandsverzeichnis“ @file{/var/guix} ins resultierende Bündel aufnehmen, speziell auch das Profil @file{/var/guix/profiles/per-user/root/@var{Name}}@tie{}— der vorgegebene @var{Name} ist @code{guix-profile}, was @file{~root/.guix-profile} entspricht." #. type: table -#: guix-git/doc/guix.texi:6693 +#: guix-git/doc/guix.texi:6736 msgid "@file{/var/guix} contains the store database (@pxref{The Store}) as well as garbage-collector roots (@pxref{Invoking guix gc}). Providing it in the pack means that the store is ``complete'' and manageable by Guix; not providing it pack means that the store is ``dead'': items cannot be added to it or removed from it after extraction of the pack." msgstr "@file{/var/guix} enthält die Store-Datenbank (siehe @ref{The Store}) sowie die Müllsammlerwurzeln (siehe @ref{Invoking guix gc}). Es ins Bündel aufzunehmen, bedeutet, dass der enthaltene Store „vollständig“ ist und von Guix verwaltet werden kann, andernfalls wäre der Store im Bündel „tot“ und nach dem Auspacken des Bündels könnte Guix keine Objekte mehr dort hinzufügen oder entfernen." #. type: table -#: guix-git/doc/guix.texi:6696 +#: guix-git/doc/guix.texi:6739 msgid "One use case for this is the Guix self-contained binary tarball (@pxref{Binary Installation})." msgstr "Ein Anwendungsfall hierfür ist der eigenständige, alle Komponenten umfassende binäre Tarball von Guix (siehe @ref{Binary Installation})." #. type: item -#: guix-git/doc/guix.texi:6697 guix-git/doc/guix.texi:35256 +#: guix-git/doc/guix.texi:6740 guix-git/doc/guix.texi:35700 #, no-wrap msgid "--derivation" msgstr "--derivation" #. type: itemx -#: guix-git/doc/guix.texi:6698 guix-git/doc/guix.texi:11571 -#: guix-git/doc/guix.texi:35257 +#: guix-git/doc/guix.texi:6741 guix-git/doc/guix.texi:11885 +#: guix-git/doc/guix.texi:35701 #, no-wrap msgid "-d" msgstr "-d" #. type: table -#: guix-git/doc/guix.texi:6700 +#: guix-git/doc/guix.texi:6743 msgid "Print the name of the derivation that builds the pack." msgstr "Den Namen der Ableitung ausgeben, die das Bündel erstellt." #. type: table -#: guix-git/doc/guix.texi:6704 +#: guix-git/doc/guix.texi:6747 msgid "Use the bootstrap binaries to build the pack. This option is only useful to Guix developers." msgstr "Mit den Bootstrap-Binärdateien das Bündel erstellen. Diese Option ist nur für Guix-Entwickler nützlich." #. type: Plain text -#: guix-git/doc/guix.texi:6709 +#: guix-git/doc/guix.texi:6752 msgid "In addition, @command{guix pack} supports all the common build options (@pxref{Common Build Options}) and all the package transformation options (@pxref{Package Transformation Options})." msgstr "Außerdem unterstützt @command{guix pack} alle gemeinsamen Erstellungsoptionen (siehe @ref{Common Build Options}) und alle Paketumwandlungsoptionen (siehe @ref{Package Transformation Options})." #. type: cindex -#: guix-git/doc/guix.texi:6714 +#: guix-git/doc/guix.texi:6757 #, no-wrap msgid "GCC" msgstr "GCC" #. type: cindex -#: guix-git/doc/guix.texi:6715 +#: guix-git/doc/guix.texi:6758 #, no-wrap msgid "ld-wrapper" msgstr "ld-wrapper" #. type: cindex -#: guix-git/doc/guix.texi:6716 +#: guix-git/doc/guix.texi:6759 #, no-wrap msgid "linker wrapper" msgstr "Wrapper für den Binder/Linker" #. type: cindex -#: guix-git/doc/guix.texi:6717 +#: guix-git/doc/guix.texi:6760 #, no-wrap msgid "toolchain, for C development" msgstr "Toolchain, für die Entwicklung mit C" #. type: cindex -#: guix-git/doc/guix.texi:6718 +#: guix-git/doc/guix.texi:6761 #, no-wrap msgid "toolchain, for Fortran development" msgstr "Toolchain, für die Entwicklung mit Fortran" #. type: Plain text -#: guix-git/doc/guix.texi:6725 +#: guix-git/doc/guix.texi:6768 msgid "If you need a complete toolchain for compiling and linking C or C++ source code, use the @code{gcc-toolchain} package. This package provides a complete GCC toolchain for C/C++ development, including GCC itself, the GNU C Library (headers and binaries, plus debugging symbols in the @code{debug} output), Binutils, and a linker wrapper." msgstr "Wenn Sie einen vollständigen Werkzeugsatz zum Kompilieren und Binden von Quellcode in C oder C++ brauchen, werden Sie das Paket @code{gcc-toolchain} haben wollen. Das Paket bietet eine vollständige GCC-Toolchain für die Entwicklung mit C/C++, einschließlich GCC selbst, der GNU-C-Bibliothek (Header-Dateien und Binärdateien samt Symbolen zur Fehlersuche/Debugging in der @code{debug}-Ausgabe), Binutils und einen Wrapper für den Binder/Linker." #. type: Plain text -#: guix-git/doc/guix.texi:6731 +#: guix-git/doc/guix.texi:6774 msgid "The wrapper's purpose is to inspect the @code{-L} and @code{-l} switches passed to the linker, add corresponding @code{-rpath} arguments, and invoke the actual linker with this new set of arguments. You can instruct the wrapper to refuse to link against libraries not in the store by setting the @env{GUIX_LD_WRAPPER_ALLOW_IMPURITIES} environment variable to @code{no}." msgstr "Der Zweck des Wrappers ist, die an den Binder übergebenen Befehlszeilenoptionen mit @code{-L} und @code{-l} zu überprüfen und jeweils passende Argumente mit @code{-rpath} anzufügen, womit dann der echte Binder aufgerufen wird. Standardmäßig weigert sich der Binder-Wrapper, mit Bibliotheken außerhalb des Stores zu binden, um „Reinheit“ zu gewährleisten. Das kann aber stören, wenn man die Toolchain benutzt, um mit lokalen Bibliotheken zu binden. Um Referenzen auf Bibliotheken außerhalb des Stores zu erlauben, müssen Sie die Umgebungsvariable @env{GUIX_LD_WRAPPER_ALLOW_IMPURITIES} setzen." #. type: Plain text -#: guix-git/doc/guix.texi:6735 +#: guix-git/doc/guix.texi:6778 msgid "The package @code{gfortran-toolchain} provides a complete GCC toolchain for Fortran development. For other languages, please use @samp{guix search gcc toolchain} (@pxref{guix-search,, Invoking guix package})." msgstr "Das Paket @code{gfortran-toolchain} stellt eine vollständige GCC-Toolchain für die Entwicklung mit Fortran zur Verfügung. Pakete für die Entwicklung mit anderen Sprachen suchen Sie bitte mit @samp{guix search gcc toolchain} (siehe @ref{guix-search,, Invoking guix package})." #. type: section -#: guix-git/doc/guix.texi:6738 +#: guix-git/doc/guix.texi:6781 #, no-wrap msgid "Invoking @command{guix git authenticate}" msgstr "@command{guix git authenticate} aufrufen" #. type: Plain text -#: guix-git/doc/guix.texi:6746 +#: guix-git/doc/guix.texi:6789 msgid "The @command{guix git authenticate} command authenticates a Git checkout following the same rule as for channels (@pxref{channel-authentication, channel authentication}). That is, starting from a given commit, it ensures that all subsequent commits are signed by an OpenPGP key whose fingerprint appears in the @file{.guix-authorizations} file of its parent commit(s)." msgstr "Der Befehl @command{guix git authenticate} authentifiziert ein Git-Checkout nach derselben Regel wie für Kanäle (siehe @ref{channel-authentication, Kanalauthentifizierung}). Das bedeutet, dass angefangen beim angegebenen Commit sichergestellt wird, dass alle nachfolgenden Commits mit einem OpenPGP-Schlüssel signiert worden sind, dessen Fingerabdruck in der @file{.guix-authorizations}-Datei seines bzw.@: seiner jeweiligen Elterncommits aufgeführt ist." #. type: Plain text -#: guix-git/doc/guix.texi:6751 +#: guix-git/doc/guix.texi:6794 msgid "You will find this command useful if you maintain a channel. But in fact, this authentication mechanism is useful in a broader context, so you might want to use it for Git repositories that have nothing to do with Guix." msgstr "Sie werden diesen Befehl zu schätzen wissen, wenn Sie einen Kanal betreuen. Tatsächlich ist dieser Authentifizierungsmechanismus aber auch bei weiteren Dingen nützlich; vielleicht möchten Sie ihn für Git-Repositorys einsetzen, die gar nichts mit Guix zu tun haben?" #. type: example -#: guix-git/doc/guix.texi:6756 +#: guix-git/doc/guix.texi:6799 #, no-wrap msgid "guix git authenticate @var{commit} @var{signer} [@var{options}@dots{}]\n" msgstr "guix git authenticate @var{Commit} @var{Unterzeichner} [@var{Optionen}…]\n" #. type: Plain text -#: guix-git/doc/guix.texi:6765 +#: guix-git/doc/guix.texi:6808 msgid "By default, this command authenticates the Git checkout in the current directory; it outputs nothing and exits with exit code zero on success and non-zero on failure. @var{commit} above denotes the first commit where authentication takes place, and @var{signer} is the OpenPGP fingerprint of public key used to sign @var{commit}. Together, they form a ``channel introduction'' (@pxref{channel-authentication, channel introduction}). The options below allow you to fine-tune the process." msgstr "Nach Vorgabe wird mit diesem Befehl das Git-Checkout im aktuellen Arbeitsverzeichnis authentifiziert. Es wird bei Erfolg nichts ausgegeben und der Exit-Status null zurückgeliefert; bei einem Fehler wird ein von null verschiedener Exit-Status zurückgeliefert. @var{Commit} gibt den ersten Commit an, der authentifiziert wird, und @var{Unterzeichner} ist der OpenPGP-Fingerabdruck des öffentlichen Schlüssels, mit dem der @var{Commit} signiert wurde. Zusammen bilden sie eine „Kanaleinführung“ (siehe @ref{channel-authentication, Kanaleinführung}). Mit den unten aufgeführten Befehlszeilenoptionen können Sie Feineinstellungen am Prozess vornehmen." #. type: item -#: guix-git/doc/guix.texi:6767 +#: guix-git/doc/guix.texi:6810 #, no-wrap msgid "--repository=@var{directory}" msgstr "--repository=@var{Verzeichnis}" #. type: itemx -#: guix-git/doc/guix.texi:6768 +#: guix-git/doc/guix.texi:6811 #, no-wrap msgid "-r @var{directory}" msgstr "-r @var{Verzeichnis}" #. type: table -#: guix-git/doc/guix.texi:6771 +#: guix-git/doc/guix.texi:6814 msgid "Open the Git repository in @var{directory} instead of the current directory." msgstr "Das Git-Repository im @var{Verzeichnis} statt im aktuellen Verzeichnis öffnen." #. type: item -#: guix-git/doc/guix.texi:6772 +#: guix-git/doc/guix.texi:6815 #, no-wrap msgid "--keyring=@var{reference}" msgstr "--keyring=@var{Referenz}" #. type: itemx -#: guix-git/doc/guix.texi:6773 +#: guix-git/doc/guix.texi:6816 #, no-wrap msgid "-k @var{reference}" msgstr "-k @var{Referenz}" #. type: table -#: guix-git/doc/guix.texi:6779 +#: guix-git/doc/guix.texi:6822 msgid "Load OpenPGP keyring from @var{reference}, the reference of a branch such as @code{origin/keyring} or @code{my-keyring}. The branch must contain OpenPGP public keys in @file{.key} files, either in binary form or ``ASCII-armored''. By default the keyring is loaded from the branch named @code{keyring}." msgstr "Den OpenPGP-Schlüsselbund („Keyring“) von der angegebenen @var{Referenz} laden, einem Verweis auf einen Branch wie @code{origin/keyring} oder @code{my-keyring}. Der Branch muss öffentliche Schlüssel im OpenPGP-Format in @file{.key}-Dateien enthalten, entweder als Binärdateien oder mit „ASCII-Hülle“. Nach Vorgabe wird der Schlüsselbund von einem Branch namens @code{keyring} geladen." #. type: item -#: guix-git/doc/guix.texi:6780 +#: guix-git/doc/guix.texi:6823 #, no-wrap msgid "--stats" msgstr "--stats" #. type: table -#: guix-git/doc/guix.texi:6782 +#: guix-git/doc/guix.texi:6825 msgid "Display commit signing statistics upon completion." msgstr "Nach Abschluss Statistiken über die signierten Commits anzeigen." #. type: item -#: guix-git/doc/guix.texi:6783 +#: guix-git/doc/guix.texi:6826 #, no-wrap msgid "--cache-key=@var{key}" msgstr "--cache-key=@var{Schlüssel}" #. type: table -#: guix-git/doc/guix.texi:6787 +#: guix-git/doc/guix.texi:6830 msgid "Previously-authenticated commits are cached in a file under @file{~/.cache/guix/authentication}. This option forces the cache to be stored in file @var{key} in that directory." msgstr "Bereits authentifizierte Commits werden in einer Datei unter @file{~/.cache/guix/authentication} zwischengespeichert. Diese Option erzwingt, dass der Speicher innerhalb dieses Verzeichnisses in der Datei @var{Schlüssel} angelegt wird." #. type: item -#: guix-git/doc/guix.texi:6788 +#: guix-git/doc/guix.texi:6831 #, no-wrap msgid "--historical-authorizations=@var{file}" msgstr "--historical-authorizations=@var{Datei}" #. type: table -#: guix-git/doc/guix.texi:6795 +#: guix-git/doc/guix.texi:6838 msgid "By default, any commit whose parent commit(s) lack the @file{.guix-authorizations} file is considered inauthentic. In contrast, this option considers the authorizations in @var{file} for any commit that lacks @file{.guix-authorizations}. The format of @var{file} is the same as that of @file{.guix-authorizations} (@pxref{channel-authorizations, @file{.guix-authorizations} format})." msgstr "Nach Vorgabe wird jeder Commit, dessen Elterncommit(s) die Datei @file{.guix-authorizations} fehlt, als gefälscht angesehen. Mit dieser Option werden dagegen die Autorisierungen in der @var{Datei} für jeden Commit ohne @file{.guix-authorizations} verwendet. Das Format der @var{Datei} ist dasselbe wie bei @file{.guix-authorizations} (siehe @ref{channel-authorizations, Format von @file{.guix-authorizations}})." #. type: Plain text -#: guix-git/doc/guix.texi:6808 +#: guix-git/doc/guix.texi:6851 msgid "GNU Guix provides several Scheme programming interfaces (APIs) to define, build, and query packages. The first interface allows users to write high-level package definitions. These definitions refer to familiar packaging concepts, such as the name and version of a package, its build system, and its dependencies. These definitions can then be turned into concrete build actions." msgstr "GNU Guix bietet mehrere Programmierschnittstellen (APIs) in der Programmiersprache Scheme an, mit denen Software-Pakete definiert, erstellt und gesucht werden können. Die erste Schnittstelle erlaubt es Nutzern, ihre eigenen Paketdefinitionen in einer Hochsprache zu schreiben. Diese Definitionen nehmen Bezug auf geläufige Konzepte der Paketverwaltung, wie den Namen und die Version eines Pakets, sein Erstellungssystem (Build System) und seine Abhängigkeiten (Dependencies). Diese Definitionen können dann in konkrete Erstellungsaktionen umgewandelt werden." #. type: Plain text -#: guix-git/doc/guix.texi:6814 +#: guix-git/doc/guix.texi:6857 msgid "Build actions are performed by the Guix daemon, on behalf of users. In a standard setup, the daemon has write access to the store---the @file{/gnu/store} directory---whereas users do not. The recommended setup also has the daemon perform builds in chroots, under specific build users, to minimize interference with the rest of the system." msgstr "Erstellungsaktionen werden vom Guix-Daemon für dessen Nutzer durchgeführt. Bei einer normalen Konfiguration hat der Daemon Schreibzugriff auf den Store, also das Verzeichnis @file{/gnu/store}, Nutzer hingegen nicht. Die empfohlene Konfiguration lässt den Daemon die Erstellungen in chroot-Umgebungen durchführen, mit eigenen Benutzerkonten für „Erstellungsbenutzer“, um gegenseitige Beeinflussung der Erstellung und des übrigen Systems zu minimieren." #. type: Plain text -#: guix-git/doc/guix.texi:6823 +#: guix-git/doc/guix.texi:6866 msgid "Lower-level APIs are available to interact with the daemon and the store. To instruct the daemon to perform a build action, users actually provide it with a @dfn{derivation}. A derivation is a low-level representation of the build actions to be taken, and the environment in which they should occur---derivations are to package definitions what assembly is to C programs. The term ``derivation'' comes from the fact that build results @emph{derive} from them." msgstr "Systemnahe APIs stehen zur Verfügung, um mit dem Daemon und dem Store zu interagieren. Um den Daemon anzuweisen, eine Erstellungsaktion durchzuführen, versorgen ihn Nutzer jeweils mit einer @dfn{Ableitung}. Eine Ableitung ist, wie durchzuführende Erstellungsaktionen, sowie die Umgebungen, in denen sie durchzuführen sind, in Guix eigentlich intern dargestellt werden. Ableitungen verhalten sich zu Paketdefinitionen vergleichbar mit Assembler-Code zu C-Programmen. Der Begriff „Ableitung“ kommt daher, dass Erstellungsergebnisse daraus @emph{abgeleitet} werden." #. type: Plain text -#: guix-git/doc/guix.texi:6826 +#: guix-git/doc/guix.texi:6869 msgid "This chapter describes all these APIs in turn, starting from high-level package definitions." msgstr "Dieses Kapitel beschreibt der Reihe nach all diese Programmierschnittstellen (APIs), angefangen mit hochsprachlichen Paketdefinitionen." #. type: menuentry -#: guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:6883 msgid "Programming Guix in Guile" msgstr "Guix in Guile programmieren." #. type: Plain text -#: guix-git/doc/guix.texi:6855 +#: guix-git/doc/guix.texi:6899 msgid "From a programming viewpoint, the package definitions of the GNU distribution are provided by Guile modules in the @code{(gnu packages @dots{})} name space@footnote{Note that packages under the @code{(gnu packages @dots{})} module name space are not necessarily ``GNU packages''. This module naming scheme follows the usual Guile module naming convention: @code{gnu} means that these modules are distributed as part of the GNU system, and @code{packages} identifies modules that define packages.} (@pxref{Modules, Guile modules,, guile, GNU Guile Reference Manual}). For instance, the @code{(gnu packages emacs)} module exports a variable named @code{emacs}, which is bound to a @code{} object (@pxref{Defining Packages})." msgstr "Aus Programmierersicht werden die Paketdefinitionen der GNU-Distribution als Guile-Module in Namensräumen wie @code{(gnu packages …)} sichtbar gemacht@footnote{Beachten Sie, dass Pakete unter dem Modulnamensraum @code{(gnu packages …)} nicht notwendigerweise auch „GNU-Pakete“ sind. Dieses Schema für die Benennung von Modulen folgt lediglich den üblichen Guile-Konventionen: @code{gnu} bedeutet, dass die Module als Teil des GNU-Systems ausgeliefert werden, und @code{packages} gruppiert Module mit Paketdefinitionen.} (siehe @ref{Modules, Guile-Module,, guile, Referenzhandbuch zu GNU Guile}). Zum Beispiel exportiert das Modul @code{(gnu packages emacs)} eine Variable namens @code{emacs}, die an ein @code{}-Objekt gebunden ist (siehe @ref{Defining Packages})." #. type: Plain text -#: guix-git/doc/guix.texi:6862 +#: guix-git/doc/guix.texi:6906 msgid "The @code{(gnu packages @dots{})} module name space is automatically scanned for packages by the command-line tools. For instance, when running @code{guix install emacs}, all the @code{(gnu packages @dots{})} modules are scanned until one that exports a package object whose name is @code{emacs} is found. This package search facility is implemented in the @code{(gnu packages)} module." msgstr "Der Modulnamensraum @code{(gnu packages …)} wird von Befehlszeilenwerkzeugen automatisch nach Paketen durchsucht. Wenn Sie zum Beispiel @code{guix install emacs} ausführen, werden alle @code{(gnu packages …)}-Module durchlaufen, bis eines gefunden wird, das ein Paketobjekt mit dem Namen @code{emacs} exportiert. Diese Paketsuchfunktion ist im Modul @code{(gnu packages)} implementiert." #. type: cindex -#: guix-git/doc/guix.texi:6864 +#: guix-git/doc/guix.texi:6908 #, no-wrap msgid "package module search path" msgstr "Paketmodulsuchpfad" #. type: Plain text -#: guix-git/doc/guix.texi:6873 +#: guix-git/doc/guix.texi:6917 msgid "Users can store package definitions in modules with different names---e.g., @code{(my-packages emacs)}@footnote{Note that the file name and module name must match. For instance, the @code{(my-packages emacs)} module must be stored in a @file{my-packages/emacs.scm} file relative to the load path specified with @option{--load-path} or @env{GUIX_PACKAGE_PATH}. @xref{Modules and the File System,,, guile, GNU Guile Reference Manual}, for details.}. There are two ways to make these package definitions visible to the user interfaces:" msgstr "Benutzer können Paketdefinitionen auch in Modulen mit anderen Namen unterbringen@tie{}— z.B.@: @code{(my-packages emacs)}@footnote{Beachten Sie, dass Dateiname und Modulname übereinstimmen müssen. Zum Beispiel muss das Modul @code{(my-packages emacs)} in einer Datei @file{my-packages/emacs.scm} relativ zum mit @option{--load-path} oder @env{GUIX_PACKAGE_PATH} angegebenen Ladepfad stehen. Siehe @ref{Modules and the File System,,, guile, Referenzhandbuch zu GNU Guile} für Details.}. Es gibt zwei Arten, solche Paketdefinitionen für die Benutzungsschnittstelle sichtbar zu machen:" #. type: enumerate -#: guix-git/doc/guix.texi:6880 +#: guix-git/doc/guix.texi:6924 msgid "By adding the directory containing your package modules to the search path with the @code{-L} flag of @command{guix package} and other commands (@pxref{Common Build Options}), or by setting the @env{GUIX_PACKAGE_PATH} environment variable described below." msgstr "Eine Möglichkeit ist, das Verzeichnis, in dem Ihre Paketmodule stehen, mit der Befehlszeilenoption @code{-L} von @command{guix package} und anderen Befehlen (siehe @ref{Common Build Options}) oder durch Setzen der unten beschriebenen Umgebungsvariablen @env{GUIX_PACKAGE_PATH} zum Suchpfad hinzuzufügen." #. type: enumerate -#: guix-git/doc/guix.texi:6886 +#: guix-git/doc/guix.texi:6930 msgid "By defining a @dfn{channel} and configuring @command{guix pull} so that it pulls from it. A channel is essentially a Git repository containing package modules. @xref{Channels}, for more information on how to define and use channels." msgstr "Die andere Möglichkeit ist, einen @dfn{Kanal} zu definieren und @command{guix pull} so zu konfigurieren, dass es davon seine Module bezieht. Ein Kanal ist im Kern nur ein Git-Repository, in welchem Paketmodule liegen. Siehe @ref{Channels} für mehr Informationen, wie Kanäle definiert und benutzt werden." #. type: Plain text -#: guix-git/doc/guix.texi:6889 +#: guix-git/doc/guix.texi:6933 msgid "@env{GUIX_PACKAGE_PATH} works similarly to other search path variables:" msgstr "@env{GUIX_PACKAGE_PATH} funktioniert ähnlich wie andere Variable mit Suchpfaden:" #. type: defvr -#: guix-git/doc/guix.texi:6890 +#: guix-git/doc/guix.texi:6934 #, no-wrap msgid "{Environment Variable} GUIX_PACKAGE_PATH" msgstr "{Umgebungsvariable} GUIX_PACKAGE_PATH" #. type: defvr -#: guix-git/doc/guix.texi:6894 +#: guix-git/doc/guix.texi:6938 msgid "This is a colon-separated list of directories to search for additional package modules. Directories listed in this variable take precedence over the own modules of the distribution." msgstr "Dies ist eine doppelpunktgetrennte Liste von Verzeichnissen, die nach zusätzlichen Paketmodulen durchsucht werden. In dieser Variablen aufgelistete Verzeichnisse haben Vorrang vor den Modulen, die zur Distribution gehören." #. type: Plain text -#: guix-git/doc/guix.texi:6902 +#: guix-git/doc/guix.texi:6946 msgid "The distribution is fully @dfn{bootstrapped} and @dfn{self-contained}: each package is built based solely on other packages in the distribution. The root of this dependency graph is a small set of @dfn{bootstrap binaries}, provided by the @code{(gnu packages bootstrap)} module. For more information on bootstrapping, @pxref{Bootstrapping}." msgstr "Die Distribution wird komplett von Grund auf initialisiert@tie{}— man sagt zur Initialisierung auch @dfn{Bootstrapping}@tie{}— und sie ist @dfn{eigenständig} („self-contained“): Jedes Paket wird nur auf Basis von anderen Paketen in der Distribution erstellt. Die Wurzel dieses Abhängigkeitsgraphen ist ein kleiner Satz von Initialisierungsbinärdateien, den @dfn{Bootstrap-Binärdateien}, die im Modul @code{(gnu packages bootstrap)} verfügbar gemacht werden. Für mehr Informationen über Bootstrapping, siehe @ref{Bootstrapping}." #. type: Plain text -#: guix-git/doc/guix.texi:6910 +#: guix-git/doc/guix.texi:6954 msgid "The high-level interface to package definitions is implemented in the @code{(guix packages)} and @code{(guix build-system)} modules. As an example, the package definition, or @dfn{recipe}, for the GNU Hello package looks like this:" msgstr "Mit den Modulen @code{(guix packages)} und @code{(guix build-system)} können Paketdefinitionen auf einer hohen Abstraktionsebene geschrieben werden. Zum Beispiel sieht die Paketdefinition bzw. das @dfn{Rezept} für das Paket von GNU Hello so aus:" #. type: lisp -#: guix-git/doc/guix.texi:6918 +#: guix-git/doc/guix.texi:6962 #, no-wrap msgid "" "(define-module (gnu packages hello)\n" @@ -14487,7 +14599,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:6937 +#: guix-git/doc/guix.texi:6981 #, no-wrap msgid "" "(define-public hello\n" @@ -14529,327 +14641,327 @@ msgstr "" " (license gpl3+)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:6947 +#: guix-git/doc/guix.texi:6991 msgid "Without being a Scheme expert, the reader may have guessed the meaning of the various fields here. This expression binds the variable @code{hello} to a @code{} object, which is essentially a record (@pxref{SRFI-9, Scheme records,, guile, GNU Guile Reference Manual}). This package object can be inspected using procedures found in the @code{(guix packages)} module; for instance, @code{(package-name hello)} returns---surprise!---@code{\"hello\"}." msgstr "Auch ohne ein Experte in Scheme zu sein, könnten Leser erraten haben, was die verschiedenen Felder dabei bedeuten. Dieser Ausdruck bindet die Variable @code{hello} an ein @code{}-Objekt, was an sich nur ein Verbund (Record) ist (siehe @ref{SRFI-9, Scheme-Verbünde,, guile, Referenzhandbuch zu GNU Guile}). Die Felder dieses Paket-Objekts lassen sich mit den Prozeduren aus dem Modul @code{(guix packages)} auslesen, zum Beispiel liefert @code{(package-name hello)}@tie{}— Überraschung!@tie{}— @code{\"hello\"}." #. type: Plain text -#: guix-git/doc/guix.texi:6951 +#: guix-git/doc/guix.texi:6995 msgid "With luck, you may be able to import part or all of the definition of the package you are interested in from another repository, using the @code{guix import} command (@pxref{Invoking guix import})." msgstr "Mit etwas Glück können Sie die Definition vielleicht teilweise oder sogar ganz aus einer anderen Paketsammlung importieren, indem Sie den Befehl @code{guix import} verwenden (siehe @ref{Invoking guix import})." #. type: Plain text -#: guix-git/doc/guix.texi:6957 +#: guix-git/doc/guix.texi:7001 msgid "In the example above, @code{hello} is defined in a module of its own, @code{(gnu packages hello)}. Technically, this is not strictly necessary, but it is convenient to do so: all the packages defined in modules under @code{(gnu packages @dots{})} are automatically known to the command-line tools (@pxref{Package Modules})." msgstr "In obigem Beispiel wurde @code{hello} in einem eigenen Modul ganz für sich alleine definiert, und zwar @code{(gnu packages hello)}. Technisch gesehen muss es nicht unbedingt in einem solchen Modul definiert werden, aber es ist bequem, denn alle Module unter @code{(gnu packages …)} werden automatisch von den Befehlszeilenwerkzeugen gefunden (siehe @ref{Package Modules})." #. type: Plain text -#: guix-git/doc/guix.texi:6959 +#: guix-git/doc/guix.texi:7003 msgid "There are a few points worth noting in the above package definition:" msgstr "Ein paar Dinge sind noch erwähnenswert in der obigen Paketdefinition:" #. type: itemize -#: guix-git/doc/guix.texi:6966 +#: guix-git/doc/guix.texi:7010 msgid "The @code{source} field of the package is an @code{} object (@pxref{origin Reference}, for the complete reference). Here, the @code{url-fetch} method from @code{(guix download)} is used, meaning that the source is a file to be downloaded over FTP or HTTP." msgstr "Das @code{source}-Feld für die Quelle des Pakets ist ein @code{}-Objekt, was den Paketursprung angibt (siehe @ref{origin Reference} für eine vollständige Referenz). Hier wird dafür die Methode @code{url-fetch} aus dem Modul @code{(guix download)} benutzt, d.h.@: die Quelle ist eine Datei, die über FTP oder HTTP heruntergeladen werden soll." #. type: itemize -#: guix-git/doc/guix.texi:6969 +#: guix-git/doc/guix.texi:7013 msgid "The @code{mirror://gnu} prefix instructs @code{url-fetch} to use one of the GNU mirrors defined in @code{(guix download)}." msgstr "Das Präfix @code{mirror://gnu} lässt @code{url-fetch} einen der GNU-Spiegelserver benutzen, die in @code{(guix download)} definiert sind." #. type: itemize -#: guix-git/doc/guix.texi:6976 +#: guix-git/doc/guix.texi:7020 msgid "The @code{sha256} field specifies the expected SHA256 hash of the file being downloaded. It is mandatory, and allows Guix to check the integrity of the file. The @code{(base32 @dots{})} form introduces the base32 representation of the hash. You can obtain this information with @code{guix download} (@pxref{Invoking guix download}) and @code{guix hash} (@pxref{Invoking guix hash})." msgstr "Das Feld @code{sha256} legt den erwarteten SHA256-Hashwert der herunterzuladenden Datei fest. Ihn anzugeben ist Pflicht und er ermöglicht es Guix, die Integrität der Datei zu überprüfen. Die Form @code{(base32 …)} geht der base32-Darstellung des Hash-Wertes voraus. Sie finden die base32-Darstellung mit Hilfe der Befehle @code{guix download} (siehe @ref{Invoking guix download}) und @code{guix hash} (siehe @ref{Invoking guix hash})." #. type: cindex -#: guix-git/doc/guix.texi:6977 +#: guix-git/doc/guix.texi:7021 #, no-wrap msgid "patches" msgstr "Patches" #. type: itemize -#: guix-git/doc/guix.texi:6981 +#: guix-git/doc/guix.texi:7025 msgid "When needed, the @code{origin} form can also have a @code{patches} field listing patches to be applied, and a @code{snippet} field giving a Scheme expression to modify the source code." msgstr "Wenn nötig kann in der @code{origin}-Form auch ein @code{patches}-Feld stehen, wo anzuwendende Patches aufgeführt werden, sowie ein @code{snippet}-Feld mit einem Scheme-Ausdruck mit den Anweisungen, wie der Quellcode zu modifizieren ist." #. type: cindex -#: guix-git/doc/guix.texi:6983 +#: guix-git/doc/guix.texi:7027 #, no-wrap msgid "GNU Build System" msgstr "GNU-Erstellungssystem" #. type: itemize -#: guix-git/doc/guix.texi:6989 +#: guix-git/doc/guix.texi:7033 msgid "The @code{build-system} field specifies the procedure to build the package (@pxref{Build Systems}). Here, @code{gnu-build-system} represents the familiar GNU Build System, where packages may be configured, built, and installed with the usual @code{./configure && make && make check && make install} command sequence." msgstr "Das Feld @code{build-system} legt fest, mit welcher Prozedur das Paket erstellt werden soll (siehe @ref{Build Systems}). In diesem Beispiel steht @code{gnu-build-system} für das wohlbekannte GNU-Erstellungssystem, wo Pakete mit der üblichen Befehlsfolge @code{./configure && make && make check && make install} konfiguriert, erstellt und installiert werden." #. type: itemize -#: guix-git/doc/guix.texi:6993 +#: guix-git/doc/guix.texi:7037 msgid "When you start packaging non-trivial software, you may need tools to manipulate those build phases, manipulate files, and so on. @xref{Build Utilities}, for more on this." msgstr "Sobald Sie anfangen, Pakete für nichttriviale Software zu schreiben, könnten Sie Werkzeuge benötigen, um jene Erstellungsphasen abzuändern, Dateien zu verändern oder Ähnliches. Siehe @ref{Build Utilities} für mehr Informationen dazu." #. type: itemize -#: guix-git/doc/guix.texi:6999 +#: guix-git/doc/guix.texi:7043 msgid "The @code{arguments} field specifies options for the build system (@pxref{Build Systems}). Here it is interpreted by @code{gnu-build-system} as a request run @file{configure} with the @option{--enable-silent-rules} flag." msgstr "Das Feld @code{arguments} gibt an, welche Optionen dem Erstellungssystem mitgegeben werden sollen (siehe @ref{Build Systems}). In diesem Fall interpretiert @code{gnu-build-system} diese als Auftrag, @file{configure} mit der Befehlszeilenoption @option{--enable-silent-rules} auszuführen." #. type: findex -#: guix-git/doc/guix.texi:7000 guix-git/doc/guix.texi:7003 +#: guix-git/doc/guix.texi:7044 guix-git/doc/guix.texi:7047 #, no-wrap msgid "quote" msgstr "quote" #. type: cindex -#: guix-git/doc/guix.texi:7001 +#: guix-git/doc/guix.texi:7045 #, no-wrap msgid "quoting" msgstr "Maskierung" #. type: findex -#: guix-git/doc/guix.texi:7002 +#: guix-git/doc/guix.texi:7046 #, no-wrap msgid "'" msgstr "'" #. type: cindex -#: guix-git/doc/guix.texi:7004 +#: guix-git/doc/guix.texi:7048 #, no-wrap msgid "backquote (quasiquote)" msgstr "Backquote (Quasimaskierung)" #. type: findex -#: guix-git/doc/guix.texi:7005 +#: guix-git/doc/guix.texi:7049 #, no-wrap msgid "`" msgstr "`" #. type: findex -#: guix-git/doc/guix.texi:7006 +#: guix-git/doc/guix.texi:7050 #, no-wrap msgid "quasiquote" msgstr "quasiquote" #. type: cindex -#: guix-git/doc/guix.texi:7007 +#: guix-git/doc/guix.texi:7051 #, no-wrap msgid "comma (unquote)" msgstr "Komma (Demaskierung)" #. type: findex -#: guix-git/doc/guix.texi:7008 +#: guix-git/doc/guix.texi:7052 #, no-wrap msgid "," msgstr "," #. type: findex -#: guix-git/doc/guix.texi:7009 +#: guix-git/doc/guix.texi:7053 #, no-wrap msgid "unquote" msgstr "unquote" #. type: itemize -#: guix-git/doc/guix.texi:7019 +#: guix-git/doc/guix.texi:7063 msgid "What about these quote (@code{'}) characters? They are Scheme syntax to introduce a literal list; @code{'} is synonymous with @code{quote}. Sometimes you'll also see @code{`} (a backquote, synonymous with @code{quasiquote}) and @code{,} (a comma, synonymous with @code{unquote}). @xref{Expression Syntax, quoting,, guile, GNU Guile Reference Manual}, for details. Here the value of the @code{arguments} field is a list of arguments passed to the build system down the road, as with @code{apply} (@pxref{Fly Evaluation, @code{apply},, guile, GNU Guile Reference Manual})." msgstr "Was hat es mit diesen einfachen Anführungszeichen (@code{'}) auf sich? Sie gehören zur Syntax von Scheme und führen eine wörtlich zu interpretierende Datenliste ein; dies nennt sich Maskierung oder Quotierung. @code{'} ist synonym mit @code{quote}. Ihnen könnte auch @code{`} begegnen (ein Backquote, stattdessen kann man auch das längere Synonym @code{quasiquote} schreiben); damit können wir eine wörtlich als Daten interpretierte Liste einführen, aber bei dieser „Quasimaskierung“ kann @code{,} (ein Komma, oder dessen Synonym @code{unquote}) benutzt werden, um den ausgewerteten Wert eines Ausdrucks in diese Liste einzufügen. @ref{Expression Syntax, Quotierung,, guile, Referenzhandbuch zu GNU Guile} enthält weitere Details. Hierbei ist also der Wert des @code{arguments}-Feldes eine Liste von Argumenten, die an das Erstellungssystem weitergereicht werden, wie bei @code{apply} (siehe @ref{Fly Evaluation, @code{apply},, guile, Referenzhandbuch zu GNU Guile})." #. type: itemize -#: guix-git/doc/guix.texi:7025 +#: guix-git/doc/guix.texi:7069 msgid "The hash-colon (@code{#:}) sequence defines a Scheme @dfn{keyword} (@pxref{Keywords,,, guile, GNU Guile Reference Manual}), and @code{#:configure-flags} is a keyword used to pass a keyword argument to the build system (@pxref{Coding With Keywords,,, guile, GNU Guile Reference Manual})." msgstr "Ein Doppelkreuz gefolgt von einem Doppelpunkt (@code{#:}) definiert ein Scheme-@dfn{Schlüsselwort} (siehe @ref{Keywords,,, guile, Referenzhandbuch zu GNU Guile}) und @code{#:configure-flags} ist ein Schlüsselwort, um eine Befehlszeilenoption an das Erstellungssystem mitzugeben (siehe @ref{Coding With Keywords,,, guile, Referenzhandbuch zu GNU Guile})." #. type: itemize -#: guix-git/doc/guix.texi:7031 +#: guix-git/doc/guix.texi:7075 msgid "The @code{inputs} field specifies inputs to the build process---i.e., build-time or run-time dependencies of the package. Here, we add an input, a reference to the @code{gawk} variable; @code{gawk} is itself bound to a @code{} object." msgstr "Das Feld @code{inputs} legt Eingaben an den Erstellungsprozess fest@tie{}— d.h.@: Abhängigkeiten des Pakets zur Erstellungs- oder Laufzeit. Hier fügen wir eine Eingabe hinzu, eine Referenz auf die Variable @code{gawk}; @var{gawk} ist auch selbst wiederum an ein @code{}-Objekt als Variablenwert gebunden." #. type: itemize -#: guix-git/doc/guix.texi:7035 +#: guix-git/doc/guix.texi:7079 msgid "Note that GCC, Coreutils, Bash, and other essential tools do not need to be specified as inputs here. Instead, @code{gnu-build-system} takes care of ensuring that they are present (@pxref{Build Systems})." msgstr "Beachten Sie, dass GCC, Coreutils, Bash und andere essenzielle Werkzeuge hier nicht als Eingaben aufgeführt werden müssen. Stattdessen sorgt schon @code{gnu-build-system} dafür, dass diese vorhanden sein müssen (siehe @ref{Build Systems})." #. type: itemize -#: guix-git/doc/guix.texi:7039 +#: guix-git/doc/guix.texi:7083 msgid "However, any other dependencies need to be specified in the @code{inputs} field. Any dependency not specified here will simply be unavailable to the build process, possibly leading to a build failure." msgstr "Sämtliche anderen Abhängigkeiten müssen aber im @code{inputs}-Feld aufgezählt werden. Jede hier nicht angegebene Abhängigkeit wird während des Erstellungsprozesses schlicht nicht verfügbar sein, woraus ein Erstellungsfehler resultieren kann." #. type: Plain text -#: guix-git/doc/guix.texi:7042 +#: guix-git/doc/guix.texi:7086 msgid "@xref{package Reference}, for a full description of possible fields." msgstr "Siehe @ref{package Reference} für eine umfassende Beschreibung aller erlaubten Felder." #. type: Plain text -#: guix-git/doc/guix.texi:7053 +#: guix-git/doc/guix.texi:7097 msgid "Once a package definition is in place, the package may actually be built using the @code{guix build} command-line tool (@pxref{Invoking guix build}), troubleshooting any build failures you encounter (@pxref{Debugging Build Failures}). You can easily jump back to the package definition using the @command{guix edit} command (@pxref{Invoking guix edit}). @xref{Packaging Guidelines}, for more information on how to test package definitions, and @ref{Invoking guix lint}, for information on how to check a definition for style conformance." msgstr "Sobald eine Paketdefinition eingesetzt wurde, können Sie das Paket mit Hilfe des Befehlszeilenwerkzeugs @code{guix build} dann auch tatsächlich erstellen (siehe @ref{Invoking guix build}) und dabei jegliche Erstellungsfehler, auf die Sie stoßen, beseitigen (siehe @ref{Debugging Build Failures}). Sie können den Befehl @command{guix edit} benutzen, um leicht zur Paketdefinition zurückzuspringen (siehe @ref{Invoking guix edit}). Unter @ref{Packaging Guidelines} finden Sie mehr Informationen darüber, wie Sie Paketdefinitionen testen, und unter @ref{Invoking guix lint} finden Sie Informationen, wie Sie prüfen, ob eine Definition alle Stilkonventionen einhält." #. type: vindex -#: guix-git/doc/guix.texi:7053 +#: guix-git/doc/guix.texi:7097 #, no-wrap msgid "GUIX_PACKAGE_PATH" msgstr "GUIX_PACKAGE_PATH" #. type: Plain text -#: guix-git/doc/guix.texi:7057 +#: guix-git/doc/guix.texi:7101 msgid "Lastly, @pxref{Channels}, for information on how to extend the distribution by adding your own package definitions in a ``channel''." msgstr "Zuletzt finden Sie unter @ref{Channels} Informationen, wie Sie die Distribution um Ihre eigenen Pakete in einem „Kanal“ erweitern." #. type: Plain text -#: guix-git/doc/guix.texi:7061 +#: guix-git/doc/guix.texi:7105 msgid "Finally, updating the package definition to a new upstream version can be partly automated by the @command{guix refresh} command (@pxref{Invoking guix refresh})." msgstr "Zu all dem sei auch erwähnt, dass Sie das Aktualisieren einer Paketdefinition auf eine vom Anbieter neu veröffentlichte Version mit dem Befehl @command{guix refresh} teilweise automatisieren können (siehe @ref{Invoking guix refresh})." #. type: Plain text -#: guix-git/doc/guix.texi:7067 +#: guix-git/doc/guix.texi:7111 msgid "Behind the scenes, a derivation corresponding to the @code{} object is first computed by the @code{package-derivation} procedure. That derivation is stored in a @file{.drv} file under @file{/gnu/store}. The build actions it prescribes may then be realized by using the @code{build-derivations} procedure (@pxref{The Store})." msgstr "Hinter den Kulissen wird die einem @code{}-Objekt entsprechende Ableitung zuerst durch @code{package-derivation} berechnet. Diese Ableitung wird in der @file{.drv}-Datei unter @file{/gnu/store} gespeichert. Die von ihr vorgeschriebenen Erstellungsaktionen können dann durch die Prozedur @code{build-derivations} umgesetzt werden (siehe @ref{The Store})." #. type: deffn -#: guix-git/doc/guix.texi:7068 +#: guix-git/doc/guix.texi:7112 #, no-wrap msgid "{Scheme Procedure} package-derivation @var{store} @var{package} [@var{system}]" msgstr "{Scheme-Prozedur} package-derivation @var{Store} @var{Paket} [@var{System}]" #. type: deffn -#: guix-git/doc/guix.texi:7071 +#: guix-git/doc/guix.texi:7115 msgid "Return the @code{} object of @var{package} for @var{system} (@pxref{Derivations})." msgstr "Das @code{}-Objekt zum @var{Paket} für das angegebene @var{System} liefern (siehe @ref{Derivations})." #. type: deffn -#: guix-git/doc/guix.texi:7077 +#: guix-git/doc/guix.texi:7121 msgid "@var{package} must be a valid @code{} object, and @var{system} must be a string denoting the target system type---e.g., @code{\"x86_64-linux\"} for an x86_64 Linux-based GNU system. @var{store} must be a connection to the daemon, which operates on the store (@pxref{The Store})." msgstr "Als @var{Paket} muss ein gültiges @code{}-Objekt angegeben werden und das @var{System} muss eine Zeichenkette sein, die das Zielsystem angibt@tie{}— z.B.@: @code{\"x86_64-linux\"} für ein auf x86_64 laufendes, Linux-basiertes GNU-System. @var{Store} muss eine Verbindung zum Daemon sein, der die Operationen auf dem Store durchführt (siehe @ref{The Store})." #. type: Plain text -#: guix-git/doc/guix.texi:7083 +#: guix-git/doc/guix.texi:7127 msgid "Similarly, it is possible to compute a derivation that cross-builds a package for some other system:" msgstr "Auf ähnliche Weise kann eine Ableitung berechnet werden, die ein Paket für ein anderes System cross-erstellt." #. type: deffn -#: guix-git/doc/guix.texi:7084 +#: guix-git/doc/guix.texi:7128 #, no-wrap msgid "{Scheme Procedure} package-cross-derivation @var{store} @" msgstr "{Scheme-Prozedur} package-cross-derivation @var{Store} @" #. type: deffn -#: guix-git/doc/guix.texi:7088 +#: guix-git/doc/guix.texi:7132 msgid "@var{package} @var{target} [@var{system}] Return the @code{} object of @var{package} cross-built from @var{system} to @var{target}." msgstr "@var{Paket} @var{Ziel} [@var{System}] Liefert das @code{}-Objekt, um das @var{Paket} zu cross-erstellen vom @var{System} aus für das @var{Ziel}-System." #. type: deffn -#: guix-git/doc/guix.texi:7092 +#: guix-git/doc/guix.texi:7136 msgid "@var{target} must be a valid GNU triplet denoting the target hardware and operating system, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying Target Triplets,,, autoconf, Autoconf})." msgstr "Als @var{Ziel} muss ein gültiges GNU-Tripel angegeben werden, was die Ziel-Hardware und das zugehörige Betriebssystem beschreibt, wie z.B.@: @code{\"aarch64-linux-gnu\"} (siehe @ref{Specifying Target Triplets,,, autoconf, Autoconf})." #. type: Plain text -#: guix-git/doc/guix.texi:7096 +#: guix-git/doc/guix.texi:7140 msgid "Once you have package definitions, you can easily define @emph{variants} of those packages. @xref{Defining Package Variants}, for more on that." msgstr "Wenn Sie einmal Paketdefinitionen fertig verfasst haben, können Sie leicht @emph{Varianten} derselben Pakete definieren. Siehe @ref{Defining Package Variants} für mehr Informationen dazu." #. type: subsection -#: guix-git/doc/guix.texi:7104 +#: guix-git/doc/guix.texi:7148 #, no-wrap msgid "@code{package} Reference" msgstr "@code{package}-Referenz" #. type: Plain text -#: guix-git/doc/guix.texi:7108 +#: guix-git/doc/guix.texi:7152 msgid "This section summarizes all the options available in @code{package} declarations (@pxref{Defining Packages})." msgstr "Dieser Abschnitt fasst alle in @code{package}-Deklarationen zur Verfügung stehenden Optionen zusammen (siehe @ref{Defining Packages})." #. type: deftp -#: guix-git/doc/guix.texi:7109 +#: guix-git/doc/guix.texi:7153 #, no-wrap msgid "{Data Type} package" msgstr "{Datentyp} package" #. type: deftp -#: guix-git/doc/guix.texi:7111 +#: guix-git/doc/guix.texi:7155 msgid "This is the data type representing a package recipe." msgstr "Dieser Datentyp steht für ein Paketrezept." #. type: table -#: guix-git/doc/guix.texi:7115 +#: guix-git/doc/guix.texi:7159 msgid "The name of the package, as a string." msgstr "Der Name des Pakets als Zeichenkette." #. type: code{#1} -#: guix-git/doc/guix.texi:7116 +#: guix-git/doc/guix.texi:7160 #, no-wrap msgid "version" msgstr "version" #. type: table -#: guix-git/doc/guix.texi:7119 +#: guix-git/doc/guix.texi:7163 msgid "The version of the package, as a string. @xref{Version Numbers}, for guidelines." msgstr "Die Version des Pakets als Zeichenkette. Siehe @ref{Version Numbers}, wo erklärt wird, worauf Sie achten müssen." #. type: code{#1} -#: guix-git/doc/guix.texi:7120 guix-git/doc/guix.texi:12900 -#: guix-git/doc/guix.texi:15181 guix-git/doc/guix.texi:15790 +#: guix-git/doc/guix.texi:7164 guix-git/doc/guix.texi:13257 +#: guix-git/doc/guix.texi:15538 guix-git/doc/guix.texi:16147 #, no-wrap msgid "source" msgstr "source" #. type: table -#: guix-git/doc/guix.texi:7127 +#: guix-git/doc/guix.texi:7171 msgid "An object telling how the source code for the package should be acquired. Most of the time, this is an @code{origin} object, which denotes a file fetched from the Internet (@pxref{origin Reference}). It can also be any other ``file-like'' object such as a @code{local-file}, which denotes a file from the local file system (@pxref{G-Expressions, @code{local-file}})." msgstr "Ein Objekt, das beschreibt, wie der Quellcode des Pakets bezogen werden soll. Meistens ist es ein @code{origin}-Objekt, welches für eine aus dem Internet heruntergeladene Datei steht (siehe @ref{origin Reference}). Es kann aber auch ein beliebiges anderes „dateiähnliches“ Objekt sein, wie z.B.@: ein @code{local-file}, was eine Datei im lokalen Dateisystem bezeichnet (siehe @ref{G-Expressions, @code{local-file}})." #. type: code{#1} -#: guix-git/doc/guix.texi:7128 +#: guix-git/doc/guix.texi:7172 #, no-wrap msgid "build-system" msgstr "build-system" #. type: table -#: guix-git/doc/guix.texi:7131 +#: guix-git/doc/guix.texi:7175 msgid "The build system that should be used to build the package (@pxref{Build Systems})." msgstr "Das Erstellungssystem, mit dem das Paket erstellt werden soll (siehe @ref{Build Systems})." #. type: item -#: guix-git/doc/guix.texi:7132 guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:7176 guix-git/doc/guix.texi:18315 #, no-wrap msgid "@code{arguments} (default: @code{'()})" msgstr "@code{arguments} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:7135 +#: guix-git/doc/guix.texi:7179 msgid "The arguments that should be passed to the build system. This is a list, typically containing sequential keyword-value pairs." msgstr "Die Argumente, die an das Erstellungssystem übergeben werden sollen. Dies ist eine Liste, typischerweise eine Reihe von Schlüssel-Wert-Paaren." #. type: item -#: guix-git/doc/guix.texi:7136 +#: guix-git/doc/guix.texi:7180 #, no-wrap msgid "@code{inputs} (default: @code{'()})" msgstr "@code{inputs} (Vorgabe: @code{'()})" #. type: itemx -#: guix-git/doc/guix.texi:7137 +#: guix-git/doc/guix.texi:7181 #, no-wrap msgid "@code{native-inputs} (default: @code{'()})" msgstr "@code{native-inputs} (Vorgabe: @code{'()})" #. type: itemx -#: guix-git/doc/guix.texi:7138 +#: guix-git/doc/guix.texi:7182 #, no-wrap msgid "@code{propagated-inputs} (default: @code{'()})" msgstr "@code{propagated-inputs} (Vorgabe: @code{'()})" #. type: cindex -#: guix-git/doc/guix.texi:7139 +#: guix-git/doc/guix.texi:7183 #, no-wrap msgid "inputs, of packages" msgstr "Eingaben, von Paketen" #. type: table -#: guix-git/doc/guix.texi:7146 +#: guix-git/doc/guix.texi:7190 msgid "These fields list dependencies of the package. Each element of these lists is either a package, origin, or other ``file-like object'' (@pxref{G-Expressions}); to specify the output of that file-like object that should be used, pass a two-element list where the second element is the output (@pxref{Packages with Multiple Outputs}, for more on package outputs). For example, the list below specifies three inputs:" msgstr "In diesen Feldern wird eine Liste der Abhängigkeiten des Pakets aufgeführt. Dabei ist jedes Listenelement ein „package“-, „origin“- oder sonstiges dateiartiges Objekt (siehe @ref{G-Expressions}). Um die zu benutzende Ausgabe zu benennen, übergeben Sie eine zweielementige Liste mit der Ausgabe als zweitem Element (siehe @ref{Packages with Multiple Outputs} für mehr Informationen zu Paketausgaben). Im folgenden Beispiel etwa werden drei Eingaben festgelegt:" #. type: lisp -#: guix-git/doc/guix.texi:7150 +#: guix-git/doc/guix.texi:7194 #, no-wrap msgid "" "(list libffi libunistring\n" @@ -14859,23 +14971,23 @@ msgstr "" " `(,glib \"bin\")) ;Ausgabe \"bin\" von GLib\n" #. type: table -#: guix-git/doc/guix.texi:7154 +#: guix-git/doc/guix.texi:7198 msgid "In the example above, the @code{\"out\"} output of @code{libffi} and @code{libunistring} is used." msgstr "Im obigen Beispiel wird die Ausgabe @code{\"out\"} für @code{libffi} und @code{libunistring} benutzt." #. type: quotation -#: guix-git/doc/guix.texi:7155 +#: guix-git/doc/guix.texi:7199 #, no-wrap msgid "Compatibility Note" msgstr "Anmerkung zur Kompatibilität" #. type: quotation -#: guix-git/doc/guix.texi:7162 +#: guix-git/doc/guix.texi:7206 msgid "Until version 1.3.0, input lists were a list of tuples, where each tuple has a label for the input (a string) as its first element, a package, origin, or derivation as its second element, and optionally the name of the output thereof that should be used, which defaults to @code{\"out\"}. For example, the list below is equivalent to the one above, but using the @dfn{old input style}:" msgstr "Bis Version 1.3.0 waren Eingabelisten noch Listen von Tupeln, wobei jedes Tupel eine Bezeichnung für die Eingabe (als Zeichenkette) als erstes Element, dann ein „package“-, „origin“- oder „derivation“-Objekt (Paket, Ursprung oder Ableitung) als zweites Element und optional die Benennung der davon zu benutzenden Ausgabe umfasste; letztere hatte als Vorgabewert @code{\"out\"}. Im folgenden Beispiel wird dasselbe wie oben angegeben, aber im @dfn{alten Stil für Eingaben}:" #. type: lisp -#: guix-git/doc/guix.texi:7168 +#: guix-git/doc/guix.texi:7212 #, no-wrap msgid "" ";; Old input style (deprecated).\n" @@ -14889,176 +15001,188 @@ msgstr "" " (\"glib:bin\" ,glib \"bin\")) ;Ausgabe \"bin\" von GLib\n" #. type: quotation -#: guix-git/doc/guix.texi:7174 +#: guix-git/doc/guix.texi:7218 msgid "This style is now deprecated; it is still supported but support will be removed in a future version. It should not be used for new package definitions. @xref{Invoking guix style}, on how to migrate to the new style." msgstr "Dieser Stil gilt als veraltet. Er wird bislang unterstützt, aber er wird in einer zukünftigen Version entfernt werden. Man sollte ihn nicht für neue Paketdefinitionen gebrauchen. Siehe @ref{Invoking guix style} für eine Erklärung, wie Sie zum neuen Stil migrieren." #. type: cindex -#: guix-git/doc/guix.texi:7176 +#: guix-git/doc/guix.texi:7220 #, no-wrap msgid "cross compilation, package dependencies" msgstr "Cross-Kompilieren, Paketabhängigkeiten" #. type: table -#: guix-git/doc/guix.texi:7182 +#: guix-git/doc/guix.texi:7226 msgid "The distinction between @code{native-inputs} and @code{inputs} is necessary when considering cross-compilation. When cross-compiling, dependencies listed in @code{inputs} are built for the @emph{target} architecture; conversely, dependencies listed in @code{native-inputs} are built for the architecture of the @emph{build} machine." msgstr "Die Unterscheidung zwischen @code{native-inputs} und @code{inputs} ist wichtig, damit Cross-Kompilieren möglich ist. Beim Cross-Kompilieren werden als @code{inputs} aufgeführte Abhängigkeiten für die Ziel-Prozessorarchitektur (@emph{target}) erstellt, andersherum werden als @code{native-inputs} aufgeführte Abhängigkeiten für die Prozessorarchitektur der erstellenden Maschine (@emph{build}) erstellt." #. type: table -#: guix-git/doc/guix.texi:7187 +#: guix-git/doc/guix.texi:7231 msgid "@code{native-inputs} is typically used to list tools needed at build time, but not at run time, such as Autoconf, Automake, pkg-config, Gettext, or Bison. @command{guix lint} can report likely mistakes in this area (@pxref{Invoking guix lint})." msgstr "@code{native-inputs} listet typischerweise die Werkzeuge auf, die während der Erstellung gebraucht werden, aber nicht zur Laufzeit des Programms gebraucht werden. Beispiele sind Autoconf, Automake, pkg-config, Gettext oder Bison. @command{guix lint} kann melden, ob wahrscheinlich Fehler in der Auflistung sind (siehe @ref{Invoking guix lint})." #. type: anchor{#1} -#: guix-git/doc/guix.texi:7195 +#: guix-git/doc/guix.texi:7239 msgid "package-propagated-inputs" msgstr "package-propagated-inputs" #. type: table -#: guix-git/doc/guix.texi:7195 +#: guix-git/doc/guix.texi:7239 msgid "Lastly, @code{propagated-inputs} is similar to @code{inputs}, but the specified packages will be automatically installed to profiles (@pxref{Features, the role of profiles in Guix}) alongside the package they belong to (@pxref{package-cmd-propagated-inputs, @command{guix package}}, for information on how @command{guix package} deals with propagated inputs)." msgstr "Schließlich ist @code{propagated-inputs} ähnlich wie @code{inputs}, aber die angegebenen Pakete werden automatisch mit ins Profil installiert (siehe @ref{Features, die Rolle von Profilen in Guix}), wenn das Paket installiert wird, zu dem sie gehören (siehe @ref{package-cmd-propagated-inputs, @command{guix package}} für Informationen darüber, wie @command{guix package} mit propagierten Eingaben umgeht)." #. type: table -#: guix-git/doc/guix.texi:7199 +#: guix-git/doc/guix.texi:7243 msgid "For example this is necessary when packaging a C/C++ library that needs headers of another library to compile, or when a pkg-config file refers to another one @i{via} its @code{Requires} field." msgstr "Dies ist zum Beispiel nötig, wenn Sie ein Paket für eine C-/C++-Bibliothek schreiben, die Header-Dateien einer anderen Bibliothek braucht, um mit ihr kompilieren zu können, oder wenn sich eine pkg-config-Datei auf eine andere über ihren @code{Requires}-Eintrag bezieht." #. type: table -#: guix-git/doc/guix.texi:7206 +#: guix-git/doc/guix.texi:7250 msgid "Another example where @code{propagated-inputs} is useful is for languages that lack a facility to record the run-time search path akin to the @code{RUNPATH} of ELF files; this includes Guile, Python, Perl, and more. When packaging libraries written in those languages, ensure they can find library code they depend on at run time by listing run-time dependencies in @code{propagated-inputs} rather than @code{inputs}." msgstr "Noch ein Beispiel, wo @code{propagated-inputs} nützlich ist, sind Sprachen, die den Laufzeit-Suchpfad @emph{nicht} zusammen mit dem Programm abspeichern (@emph{nicht} wie etwa im @code{RUNPATH} bei ELF-Dateien), also Sprachen wie Guile, Python, Perl und weitere. Wenn Sie ein Paket für eine in solchen Sprachen geschriebene Bibliothek schreiben, dann sorgen Sie dafür, dass es zur Laufzeit den von ihr benötigten Code finden kann, indem Sie ihre Laufzeit-Abhängigkeiten in @code{propagated-inputs} statt in @code{inputs} aufführen." #. type: item -#: guix-git/doc/guix.texi:7207 +#: guix-git/doc/guix.texi:7251 #, no-wrap msgid "@code{outputs} (default: @code{'(\"out\")})" msgstr "@code{outputs} (Vorgabe: @code{'(\"out\")})" #. type: table -#: guix-git/doc/guix.texi:7210 +#: guix-git/doc/guix.texi:7254 msgid "The list of output names of the package. @xref{Packages with Multiple Outputs}, for typical uses of additional outputs." msgstr "Die Liste der Benennungen der Ausgaben des Pakets. Der Abschnitt @ref{Packages with Multiple Outputs} beschreibt übliche Nutzungen zusätzlicher Ausgaben." #. type: item -#: guix-git/doc/guix.texi:7211 +#: guix-git/doc/guix.texi:7255 #, no-wrap msgid "@code{native-search-paths} (default: @code{'()})" msgstr "@code{native-search-paths} (Vorgabe: @code{'()})" #. type: itemx -#: guix-git/doc/guix.texi:7212 +#: guix-git/doc/guix.texi:7256 #, no-wrap msgid "@code{search-paths} (default: @code{'()})" msgstr "@code{search-paths} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:7215 -msgid "A list of @code{search-path-specification} objects describing search-path environment variables honored by the package." +#: guix-git/doc/guix.texi:7260 +#, fuzzy +#| msgid "A list of @code{search-path-specification} objects describing search-path environment variables honored by the package." +msgid "A list of @code{search-path-specification} objects describing search-path environment variables honored by the package. @xref{Search Paths}, for more on search path specifications." msgstr "Eine Liste von @code{search-path-specification}-Objekten, die Umgebungsvariable für von diesem Paket beachtete Suchpfade („search paths“) beschreiben." +#. type: table +#: guix-git/doc/guix.texi:7266 +msgid "As for inputs, the distinction between @code{native-search-paths} and @code{search-paths} only matters when cross-compiling. In a cross-compilation context, @code{native-search-paths} applies exclusively to native inputs whereas @code{search-paths} applies only to host inputs." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:7273 +msgid "Packages such as cross-compilers care about target inputs---for instance, our (modified) GCC cross-compiler has @env{CROSS_C_INCLUDE_PATH} in @code{search-paths}, which allows it to pick @file{.h} files for the target system and @emph{not} those of native inputs. For the majority of packages though, only @code{native-search-paths} makes sense." +msgstr "" + #. type: item -#: guix-git/doc/guix.texi:7216 +#: guix-git/doc/guix.texi:7274 #, no-wrap msgid "@code{replacement} (default: @code{#f})" msgstr "@code{replacement} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:7220 +#: guix-git/doc/guix.texi:7278 msgid "This must be either @code{#f} or a package object that will be used as a @dfn{replacement} for this package. @xref{Security Updates, grafts}, for details." msgstr "Dies muss entweder @code{#f} oder ein package-Objekt sein, das als Ersatz (@dfn{replacement}) dieses Pakets benutzt werden soll. Im Abschnitt zu @ref{Security Updates, Veredelungen} wird dies erklärt." #. type: item -#: guix-git/doc/guix.texi:7221 guix-git/doc/guix.texi:12892 +#: guix-git/doc/guix.texi:7279 guix-git/doc/guix.texi:13249 #, no-wrap msgid "synopsis" msgstr "synopsis" #. type: table -#: guix-git/doc/guix.texi:7223 +#: guix-git/doc/guix.texi:7281 msgid "A one-line description of the package." msgstr "Eine einzeilige Beschreibung des Pakets." #. type: code{#1} -#: guix-git/doc/guix.texi:7224 guix-git/doc/guix.texi:12893 -#: guix-git/doc/guix.texi:35959 guix-git/doc/guix.texi:36119 +#: guix-git/doc/guix.texi:7282 guix-git/doc/guix.texi:13250 +#: guix-git/doc/guix.texi:36449 guix-git/doc/guix.texi:36609 #, no-wrap msgid "description" msgstr "description" #. type: table -#: guix-git/doc/guix.texi:7226 +#: guix-git/doc/guix.texi:7284 msgid "A more elaborate description of the package." msgstr "Eine ausführlichere Beschreibung des Pakets." #. type: code{#1} -#: guix-git/doc/guix.texi:7227 +#: guix-git/doc/guix.texi:7285 #, no-wrap msgid "license" msgstr "license" #. type: cindex -#: guix-git/doc/guix.texi:7228 +#: guix-git/doc/guix.texi:7286 #, no-wrap msgid "license, of packages" msgstr "Lizenz, von Paketen" #. type: table -#: guix-git/doc/guix.texi:7231 +#: guix-git/doc/guix.texi:7289 msgid "The license of the package; a value from @code{(guix licenses)}, or a list of such values." msgstr "Die Lizenz des Pakets; benutzt werden kann ein Wert aus dem Modul @code{(guix licenses)} oder eine Liste solcher Werte." #. type: itemx -#: guix-git/doc/guix.texi:7232 guix-git/doc/guix.texi:12901 +#: guix-git/doc/guix.texi:7290 guix-git/doc/guix.texi:13258 #, no-wrap msgid "home-page" msgstr "home-page" #. type: table -#: guix-git/doc/guix.texi:7234 +#: guix-git/doc/guix.texi:7292 msgid "The URL to the home-page of the package, as a string." msgstr "Die URL, die die Homepage des Pakets angibt, als Zeichenkette." #. type: item -#: guix-git/doc/guix.texi:7235 +#: guix-git/doc/guix.texi:7293 #, no-wrap msgid "@code{supported-systems} (default: @code{%supported-systems})" msgstr "@code{supported-systems} (Vorgabe: @code{%supported-systems})" #. type: table -#: guix-git/doc/guix.texi:7238 +#: guix-git/doc/guix.texi:7296 msgid "The list of systems supported by the package, as strings of the form @code{architecture-kernel}, for example @code{\"x86_64-linux\"}." msgstr "Die Liste der vom Paket unterstützten Systeme als Zeichenketten der Form @code{Architektur-Kernel}, zum Beispiel @code{\"x86_64-linux\"}." #. type: item -#: guix-git/doc/guix.texi:7239 +#: guix-git/doc/guix.texi:7297 #, no-wrap msgid "@code{location} (default: source location of the @code{package} form)" msgstr "@code{location} (Vorgabe: die Stelle im Quellcode, wo die @code{package}-Form steht)" #. type: table -#: guix-git/doc/guix.texi:7243 +#: guix-git/doc/guix.texi:7301 msgid "The source location of the package. It is useful to override this when inheriting from another package, in which case this field is not automatically corrected." msgstr "Wo im Quellcode das Paket definiert wurde. Es ist sinnvoll, dieses Feld manuell zuzuweisen, wenn das Paket von einem anderen Paket erbt, weil dann dieses Feld nicht automatisch berichtigt wird." #. type: deffn -#: guix-git/doc/guix.texi:7246 +#: guix-git/doc/guix.texi:7304 #, no-wrap msgid "{Scheme Syntax} this-package" msgstr "{Scheme-Syntax} this-package" #. type: deffn -#: guix-git/doc/guix.texi:7249 +#: guix-git/doc/guix.texi:7307 msgid "When used in the @emph{lexical scope} of a package field definition, this identifier resolves to the package being defined." msgstr "Wenn dies im @emph{lexikalischen Geltungsbereich} der Definition eines Feldes im Paket steht, bezieht sich dieser Bezeichner auf das Paket, das gerade definiert wird." #. type: deffn -#: guix-git/doc/guix.texi:7252 +#: guix-git/doc/guix.texi:7310 msgid "The example below shows how to add a package as a native input of itself when cross-compiling:" msgstr "Das folgende Beispiel zeigt, wie man ein Paket als native Eingabe von sich selbst beim Cross-Kompilieren deklariert:" #. type: lisp -#: guix-git/doc/guix.texi:7257 +#: guix-git/doc/guix.texi:7315 #, no-wrap msgid "" "(package\n" @@ -15072,7 +15196,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7263 +#: guix-git/doc/guix.texi:7321 #, no-wrap msgid "" " ;; When cross-compiled, Guile, for example, depends on\n" @@ -15089,51 +15213,51 @@ msgstr "" " '())))\n" #. type: deffn -#: guix-git/doc/guix.texi:7266 +#: guix-git/doc/guix.texi:7324 msgid "It is an error to refer to @code{this-package} outside a package definition." msgstr "Es ist ein Fehler, außerhalb einer Paketdefinition auf @code{this-package} zu verweisen." #. type: Plain text -#: guix-git/doc/guix.texi:7270 +#: guix-git/doc/guix.texi:7328 msgid "The following helper procedures are provided to help deal with package inputs." msgstr "Die folgenden Hilfsprozeduren sind für den Umgang mit Paketeingaben gedacht." #. type: deffn -#: guix-git/doc/guix.texi:7271 +#: guix-git/doc/guix.texi:7329 #, no-wrap msgid "{Scheme Procedure} lookup-package-input @var{package} @var{name}" msgstr "{Scheme-Prozedur} lookup-package-input @var{Paket} @var{Name}" #. type: deffnx -#: guix-git/doc/guix.texi:7272 +#: guix-git/doc/guix.texi:7330 #, no-wrap msgid "{Scheme Procedure} lookup-package-native-input @var{package} @var{name}" msgstr "{Scheme-Prozedur} lookup-package-native-input @var{Paket} @var{Name}" #. type: deffnx -#: guix-git/doc/guix.texi:7273 +#: guix-git/doc/guix.texi:7331 #, no-wrap msgid "{Scheme Procedure} lookup-package-propagated-input @var{package} @var{name}" msgstr "{Scheme-Prozedur} lookup-package-propagated-input @var{Paket} @var{Name}" #. type: deffnx -#: guix-git/doc/guix.texi:7274 +#: guix-git/doc/guix.texi:7332 #, no-wrap msgid "{Scheme Procedure} lookup-package-direct-input @var{package} @var{name}" msgstr "{Scheme-Prozedur} lookup-package-direct-input @var{Paket} @var{Name}" #. type: deffn -#: guix-git/doc/guix.texi:7277 +#: guix-git/doc/guix.texi:7335 msgid "Look up @var{name} among @var{package}'s inputs (or native, propagated, or direct inputs). Return it if found, @code{#f} otherwise." msgstr "@var{Name} unter den (nativen, propagierten, direkten) Eingaben von @var{Paket} suchen und die Eingabe zurückliefern, wenn sie gefunden wird, ansonsten @code{#f}." #. type: deffn -#: guix-git/doc/guix.texi:7280 +#: guix-git/doc/guix.texi:7338 msgid "@var{name} is the name of a package depended on. Here's how you might use it:" msgstr "@var{Name} ist der Name eines Pakets, von dem eine Abhängigkeit besteht. So benutzen Sie die Prozeduren:" #. type: lisp -#: guix-git/doc/guix.texi:7283 +#: guix-git/doc/guix.texi:7341 #, no-wrap msgid "" "(use-modules (guix packages) (gnu packages base))\n" @@ -15143,7 +15267,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7286 +#: guix-git/doc/guix.texi:7344 #, no-wrap msgid "" "(lookup-package-direct-input coreutils \"gmp\")\n" @@ -15153,45 +15277,45 @@ msgstr "" "@result{} #\n" #. type: deffn -#: guix-git/doc/guix.texi:7290 +#: guix-git/doc/guix.texi:7348 msgid "In this example we obtain the @code{gmp} package that is among the direct inputs of @code{coreutils}." msgstr "In diesem Beispiel erhalten wir das @code{gmp}-Paket, das zu den direkten Eingaben von @code{coreutils} gehört." #. type: cindex -#: guix-git/doc/guix.texi:7292 +#: guix-git/doc/guix.texi:7350 #, no-wrap msgid "development inputs, of a package" msgstr "Entwicklungseingaben, von Paketen" #. type: cindex -#: guix-git/doc/guix.texi:7293 +#: guix-git/doc/guix.texi:7351 #, no-wrap msgid "implicit inputs, of a package" msgstr "implizite Eingaben, von Paketen" #. type: Plain text -#: guix-git/doc/guix.texi:7298 +#: guix-git/doc/guix.texi:7356 msgid "Sometimes you will want to obtain the list of inputs needed to @emph{develop} a package---all the inputs that are visible when the package is compiled. This is what the @code{package-development-inputs} procedure returns." msgstr "Manchmal werden Sie die Liste der zur Entwicklung an einem Paket nötigen Eingaben brauchen, d.h.@: alle Eingaben, die beim Kompilieren des Pakets sichtbar gemacht werden. Diese Liste wird von der Prozedur @code{package-development-inputs} geliefert." #. type: deffn -#: guix-git/doc/guix.texi:7299 +#: guix-git/doc/guix.texi:7357 #, no-wrap msgid "{Scheme Procedure} package-development-inputs @var{package} @" msgstr "{Scheme-Prozedur} package-development-inputs @var{Paket} @" #. type: deffn -#: guix-git/doc/guix.texi:7306 +#: guix-git/doc/guix.texi:7364 msgid "[@var{system}] [#:target #f] Return the list of inputs required by @var{package} for development purposes on @var{system}. When @var{target} is true, return the inputs needed to cross-compile @var{package} from @var{system} to @var{triplet}, where @var{triplet} is a triplet such as @code{\"aarch64-linux-gnu\"}." msgstr "[@var{System}] [#:target #f] Liefert die Liste derjenigen Eingaben, die das @var{Paket} zu Entwicklungszwecken für @var{System} braucht. Wenn @var{target} wahr ist, muss dafür ein Ziel wie das GNU-Tripel @code{\"aarch64-linux-gnu\"} übergeben werden, damit die Eingaben zum Cross-Kompilieren von @var{Paket} zurückgeliefert werden." #. type: deffn -#: guix-git/doc/guix.texi:7310 +#: guix-git/doc/guix.texi:7368 msgid "Note that the result includes both explicit inputs and implicit inputs---inputs automatically added by the build system (@pxref{Build Systems}). Let us take the @code{hello} package to illustrate that:" msgstr "Beachten Sie, dass dazu sowohl explizite als auch implizite Eingaben gehören. Mit impliziten Eingaben meinen wir solche, die vom Erstellungssystem automatisch hinzugefügt werden (siehe @ref{Build Systems}). Nehmen wir das Paket @code{hello} zur Illustration:" #. type: lisp -#: guix-git/doc/guix.texi:7313 +#: guix-git/doc/guix.texi:7371 #, no-wrap msgid "" "(use-modules (gnu packages base) (guix packages))\n" @@ -15201,7 +15325,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7316 +#: guix-git/doc/guix.texi:7374 #, no-wrap msgid "" "hello\n" @@ -15213,7 +15337,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7319 +#: guix-git/doc/guix.texi:7377 #, no-wrap msgid "" "(package-direct-inputs hello)\n" @@ -15225,7 +15349,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7322 +#: guix-git/doc/guix.texi:7380 #, no-wrap msgid "" "(package-development-inputs hello)\n" @@ -15235,39 +15359,39 @@ msgstr "" "@result{} ((\"source\" …) (\"tar\" #) …)\n" #. type: deffn -#: guix-git/doc/guix.texi:7331 +#: guix-git/doc/guix.texi:7389 msgid "In this example, @code{package-direct-inputs} returns the empty list, because @code{hello} has zero explicit dependencies. Conversely, @code{package-development-inputs} includes inputs implicitly added by @code{gnu-build-system} that are required to build @code{hello}: tar, gzip, GCC, libc, Bash, and more. To visualize it, @command{guix graph hello} would show you explicit inputs, whereas @command{guix graph -t bag hello} would include implicit inputs (@pxref{Invoking guix graph})." msgstr "Für dieses Beispiel liefert @code{package-direct-inputs} die leere Liste zurück, weil @code{hello} keinerlei explizite Abhängigkeiten hat. Zu @code{package-development-inputs} gehören auch durch @code{gnu-build-system} implizit hinzugefügte Eingaben, die für die Erstellung von @code{hello} gebraucht werden, nämlich tar, gzip, GCC, libc, Bash und weitere. Wenn Sie sich das anschauen wollen, zeigt Ihnen @command{guix graph hello} die expliziten Eingaben, dagegen zeigt @command{guix graph -t bag hello} auch die impliziten Eingaben (siehe @ref{Invoking guix graph})." #. type: Plain text -#: guix-git/doc/guix.texi:7337 +#: guix-git/doc/guix.texi:7395 msgid "Because packages are regular Scheme objects that capture a complete dependency graph and associated build procedures, it is often useful to write procedures that take a package and return a modified version thereof according to some parameters. Below are a few examples." msgstr "Weil Pakete herkömmliche Scheme-Objekte sind, die einen vollständigen Abhängigkeitsgraphen und die zugehörigen Erstellungsprozeduren umfassen, bietet es sich oftmals an, Prozeduren zu schreiben, die ein Paket entgegennehmen und in Abhängigkeit bestimmter Parameter eine abgeänderte Fassung desselben zurückliefern. Es folgen einige Beispiele." #. type: cindex -#: guix-git/doc/guix.texi:7338 +#: guix-git/doc/guix.texi:7396 #, no-wrap msgid "tool chain, choosing a package's tool chain" msgstr "Toolchain, für ein Paket auswählen" #. type: deffn -#: guix-git/doc/guix.texi:7339 +#: guix-git/doc/guix.texi:7397 #, no-wrap msgid "{Scheme Procedure} package-with-c-toolchain @var{package} @var{toolchain}" msgstr "{Scheme-Prozedur} package-with-c-toolchain @var{Paket} @var{Toolchain}" #. type: deffn -#: guix-git/doc/guix.texi:7344 +#: guix-git/doc/guix.texi:7402 msgid "Return a variant of @var{package} that uses @var{toolchain} instead of the default GNU C/C++ toolchain. @var{toolchain} must be a list of inputs (label/package tuples) providing equivalent functionality, such as the @code{gcc-toolchain} package." msgstr "Liefert eine Variante des @var{Paket}s, die die angegebene @var{Toolchain} anstelle der vorgegebenen GNU-C/C++-Toolchain benutzt. Als @var{Toolchain} muss eine Liste von Eingaben (als Tupel aus Bezeichnung und bezeichnetem Paket) angegeben werden, die eine gleichartige Funktion erfüllen, wie zum Beispiel das Paket @code{gcc-toolchain}." #. type: deffn -#: guix-git/doc/guix.texi:7348 +#: guix-git/doc/guix.texi:7406 msgid "The example below returns a variant of the @code{hello} package built with GCC@tie{}10.x and the rest of the GNU tool chain (Binutils and the GNU C Library) instead of the default tool chain:" msgstr "Das folgende Beispiel liefert eine Variante des Pakets @code{hello}, die mit GCC@tie{}10.x und den übrigen Komponenten der GNU-Toolchain (Binutils und GNU-C-Bibliothek) erstellt wurde statt mit der vorgegebenen Toolchain:" #. type: lisp -#: guix-git/doc/guix.texi:7352 +#: guix-git/doc/guix.texi:7410 #, no-wrap msgid "" "(let ((toolchain (specification->package \"gcc-toolchain@@10\")))\n" @@ -15277,197 +15401,197 @@ msgstr "" " (package-with-c-toolchain hello `((\"toolchain\" ,toolchain))))\n" #. type: deffn -#: guix-git/doc/guix.texi:7360 +#: guix-git/doc/guix.texi:7418 msgid "The build tool chain is part of the @dfn{implicit inputs} of packages---it's usually not listed as part of the various ``inputs'' fields and is instead pulled in by the build system. Consequently, this procedure works by changing the build system of @var{package} so that it pulls in @var{toolchain} instead of the defaults. @ref{Build Systems}, for more on build systems." msgstr "Die Erstellungs-Toolchain gehört zu den @dfn{impliziten Eingaben} von Paketen@tie{}— sie wird normalerweise nicht ausdrücklich unter den verschiedenen „inputs“-Feldern mit verschiedenen Arten von Eingaben aufgeführt, stattdessen kommt sie über das Erstellungssystem dazu. Daher funktioniert diese Prozedur intern so, dass sie das Erstellungssystem des @var{Paket}s verändert, damit es die ausgewählte @var{Toolchain} statt der vorgegebenen benutzt. Siehe @ref{Build Systems} für weitere Informationen zu Erstellungssystemen." #. type: subsection -#: guix-git/doc/guix.texi:7363 +#: guix-git/doc/guix.texi:7421 #, no-wrap msgid "@code{origin} Reference" msgstr "@code{origin}-Referenz" #. type: Plain text -#: guix-git/doc/guix.texi:7371 +#: guix-git/doc/guix.texi:7429 msgid "This section documents @dfn{origins}. An @code{origin} declaration specifies data that must be ``produced''---downloaded, usually---and whose content hash is known in advance. Origins are primarily used to represent the source code of packages (@pxref{Defining Packages}). For that reason, the @code{origin} form allows you to declare patches to apply to the original source code as well as code snippets to modify it." msgstr "In diesem Abschnitt werden Paketursprünge@tie{}— englisch @dfn{Origins}@tie{}— beschrieben. Eine @code{origin}-Deklaration legt Daten fest, die „produziert“ werden müssen@tie{}— normalerweise heißt das heruntergeladen. Die Hash-Prüfsumme von deren Inhalt muss dabei im Voraus bekannt sein. Ursprünge werden in erster Linie benutzt, um den Quellcode von Paketen zu repräsentieren (siehe @ref{Defining Packages}). Aus diesem Grund können Sie mit der @code{origin}-Form Patches angeben, die auf den ursprünglichen Quellcode angewandt werden sollen, oder auch Schnipsel von Code, der Veränderungen daran vornimmt." #. type: deftp -#: guix-git/doc/guix.texi:7372 +#: guix-git/doc/guix.texi:7430 #, no-wrap msgid "{Data Type} origin" msgstr "{Datentyp} origin" #. type: deftp -#: guix-git/doc/guix.texi:7374 +#: guix-git/doc/guix.texi:7432 msgid "This is the data type representing a source code origin." msgstr "Mit diesem Datentyp wird ein Ursprung, von dem Quellcode geladen werden kann, beschrieben." #. type: code{#1} -#: guix-git/doc/guix.texi:7376 guix-git/doc/guix.texi:26552 +#: guix-git/doc/guix.texi:7434 guix-git/doc/guix.texi:26889 #, no-wrap msgid "uri" msgstr "uri" #. type: table -#: guix-git/doc/guix.texi:7381 +#: guix-git/doc/guix.texi:7439 msgid "An object containing the URI of the source. The object type depends on the @code{method} (see below). For example, when using the @var{url-fetch} method of @code{(guix download)}, the valid @code{uri} values are: a URL represented as a string, or a list thereof." msgstr "Ein Objekt, was die URI des Quellcodes enthält. Der Objekttyp hängt von der @code{Methode} ab (siehe unten). Zum Beispiel sind, wenn die @var{url-fetch}-Methode aus @code{(guix download)} benutzt wird, die gültigen Werte für @code{uri}: eine URL dargestellt als Zeichenkette oder eine Liste solcher URLs." #. type: cindex -#: guix-git/doc/guix.texi:7382 +#: guix-git/doc/guix.texi:7440 #, no-wrap msgid "fixed-output derivations, for download" msgstr "Ableitungen mit fester Ausgabe, zum Herunterladen" #. type: code{#1} -#: guix-git/doc/guix.texi:7383 +#: guix-git/doc/guix.texi:7441 #, no-wrap msgid "method" msgstr "method" #. type: table -#: guix-git/doc/guix.texi:7390 +#: guix-git/doc/guix.texi:7448 msgid "A monadic procedure that handles the given URI@. The procedure must accept at least three arguments: the value of the @code{uri} field and the hash algorithm and hash value specified by the @code{hash} field. It must return a store item or a derivation in the store monad (@pxref{The Store Monad}); most methods return a fixed-output derivation (@pxref{Derivations})." msgstr "Eine monadische Prozedur, um die angegebene URL zu benutzen. Die Prozedur muss mindestens drei Argumente akzeptieren: den Wert des @code{uri}-Feldes, den Hash-Algorithmus und den Hash-Wert, der im @code{hash}-Feld angegeben wird. Sie muss ein Store-Objekt oder eine Ableitung in der Store-Monade liefern (siehe @ref{The Store Monad}). Die meisten Methoden liefern eine Ableitung mit fester Ausgabe (siehe @ref{Derivations})." #. type: table -#: guix-git/doc/guix.texi:7394 +#: guix-git/doc/guix.texi:7452 msgid "Commonly used methods include @code{url-fetch}, which fetches data from a URL, and @code{git-fetch}, which fetches data from a Git repository (see below)." msgstr "Zu den häufig benutzten Methoden gehören @code{url-fetch}, das Daten von einer URL lädt, und @code{git-fetch}, das Daten aus einem Git-Repository lädt (siehe unten)." #. type: code{#1} -#: guix-git/doc/guix.texi:7395 +#: guix-git/doc/guix.texi:7453 #, no-wrap msgid "sha256" msgstr "sha256" #. type: table -#: guix-git/doc/guix.texi:7399 +#: guix-git/doc/guix.texi:7457 msgid "A bytevector containing the SHA-256 hash of the source. This is equivalent to providing a @code{content-hash} SHA256 object in the @code{hash} field described below." msgstr "Ein Byte-Vektor mit dem SHA-256-Hash des Quellcodes. Seine Funktion ist dieselbe wie das Angeben eines @code{content-hash}-SHA256-Objekts im weiter unten beschriebenen @code{hash}-Feld." #. type: code{#1} -#: guix-git/doc/guix.texi:7400 +#: guix-git/doc/guix.texi:7458 #, no-wrap msgid "hash" msgstr "hash" #. type: table -#: guix-git/doc/guix.texi:7403 +#: guix-git/doc/guix.texi:7461 msgid "The @code{content-hash} object of the source---see below for how to use @code{content-hash}." msgstr "Das @code{content-hash}-Objekt des Quellcodes. Siehe unten für eine Erklärung, wie Sie @code{content-hash} benutzen." #. type: table -#: guix-git/doc/guix.texi:7407 +#: guix-git/doc/guix.texi:7465 msgid "You can obtain this information using @code{guix download} (@pxref{Invoking guix download}) or @code{guix hash} (@pxref{Invoking guix hash})." msgstr "Diese Informationen liefert Ihnen der Befehl @code{guix download} (siehe @ref{Invoking guix download}) oder @code{guix hash} (siehe @ref{Invoking guix hash})." #. type: item -#: guix-git/doc/guix.texi:7408 +#: guix-git/doc/guix.texi:7466 #, no-wrap msgid "@code{file-name} (default: @code{#f})" msgstr "@code{file-name} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:7414 +#: guix-git/doc/guix.texi:7472 msgid "The file name under which the source code should be saved. When this is @code{#f}, a sensible default value will be used in most cases. In case the source is fetched from a URL, the file name from the URL will be used. For version control checkouts, it is recommended to provide the file name explicitly because the default is not very descriptive." msgstr "Der Dateiname, unter dem der Quellcode abgespeichert werden soll. Wenn er auf @code{#f} steht, wird ein vernünftiger Name automatisch gewählt. Falls der Quellcode von einer URL geladen wird, wird der Dateiname aus der URL genommen. Wenn der Quellcode von einem Versionskontrollsystem bezogen wird, empfiehlt es sich, den Dateinamen ausdrücklich anzugeben, weil dann keine sprechende Benennung automatisch gefunden werden kann." #. type: item -#: guix-git/doc/guix.texi:7415 +#: guix-git/doc/guix.texi:7473 #, no-wrap msgid "@code{patches} (default: @code{'()})" msgstr "@code{patches} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:7418 +#: guix-git/doc/guix.texi:7476 msgid "A list of file names, origins, or file-like objects (@pxref{G-Expressions, file-like objects}) pointing to patches to be applied to the source." msgstr "Eine Liste von Dateinamen, Ursprüngen oder dateiähnlichen Objekten (siehe @ref{G-Expressions, dateiartige Objekte}) mit Patches, welche auf den Quellcode anzuwenden sind." #. type: table -#: guix-git/doc/guix.texi:7422 +#: guix-git/doc/guix.texi:7480 msgid "This list of patches must be unconditional. In particular, it cannot depend on the value of @code{%current-system} or @code{%current-target-system}." msgstr "Die Liste von Patches kann nicht von Parametern der Erstellung abhängen. Insbesondere kann sie nicht vom Wert von @code{%current-system} oder @code{%current-target-system} abḧängen." #. type: item -#: guix-git/doc/guix.texi:7423 +#: guix-git/doc/guix.texi:7481 #, no-wrap msgid "@code{snippet} (default: @code{#f})" msgstr "@code{snippet} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:7427 +#: guix-git/doc/guix.texi:7485 msgid "A G-expression (@pxref{G-Expressions}) or S-expression that will be run in the source directory. This is a convenient way to modify the source, sometimes more convenient than a patch." msgstr "Ein im Quellcode-Verzeichnis auszuführender G-Ausdruck (siehe @ref{G-Expressions}) oder S-Ausdruck. Hiermit kann der Quellcode bequem modifiziert werden, manchmal ist dies bequemer als mit einem Patch." #. type: item -#: guix-git/doc/guix.texi:7428 +#: guix-git/doc/guix.texi:7486 #, no-wrap msgid "@code{patch-flags} (default: @code{'(\"-p1\")})" msgstr "@code{patch-flags} (Vorgabe: @code{'(\"-p1\")})" #. type: table -#: guix-git/doc/guix.texi:7431 +#: guix-git/doc/guix.texi:7489 msgid "A list of command-line flags that should be passed to the @code{patch} command." msgstr "Eine Liste der Befehlszeilenoptionen, die dem @code{patch}-Befehl übergeben werden sollen." #. type: item -#: guix-git/doc/guix.texi:7432 +#: guix-git/doc/guix.texi:7490 #, no-wrap msgid "@code{patch-inputs} (default: @code{#f})" msgstr "@code{patch-inputs} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:7436 +#: guix-git/doc/guix.texi:7494 msgid "Input packages or derivations to the patching process. When this is @code{#f}, the usual set of inputs necessary for patching are provided, such as GNU@tie{}Patch." msgstr "Eingabepakete oder -ableitungen für den Patch-Prozess. Bei @code{#f} werden die üblichen Patcheingaben wie GNU@tie{}Patch bereitgestellt." #. type: item -#: guix-git/doc/guix.texi:7437 guix-git/doc/guix.texi:26425 +#: guix-git/doc/guix.texi:7495 guix-git/doc/guix.texi:26762 #, no-wrap msgid "@code{modules} (default: @code{'()})" msgstr "@code{modules} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:7440 +#: guix-git/doc/guix.texi:7498 msgid "A list of Guile modules that should be loaded during the patching process and while running the code in the @code{snippet} field." msgstr "Eine Liste von Guile-Modulen, die während des Patch-Prozesses und während der Ausführung des @code{snippet}-Felds geladen sein sollen." #. type: item -#: guix-git/doc/guix.texi:7441 +#: guix-git/doc/guix.texi:7499 #, no-wrap msgid "@code{patch-guile} (default: @code{#f})" msgstr "@code{patch-guile} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:7444 +#: guix-git/doc/guix.texi:7502 msgid "The Guile package that should be used in the patching process. When this is @code{#f}, a sensible default is used." msgstr "Welches Guile-Paket für den Patch-Prozess benutzt werden soll. Bei @code{#f} wird ein vernünftiger Vorgabewert angenommen." #. type: deftp -#: guix-git/doc/guix.texi:7447 +#: guix-git/doc/guix.texi:7505 #, no-wrap msgid "{Data Type} content-hash @var{value} [@var{algorithm}]" msgstr "{Datentyp} content-hash @var{Wert} [@var{Algorithmus}]" #. type: deftp -#: guix-git/doc/guix.texi:7451 +#: guix-git/doc/guix.texi:7509 msgid "Construct a content hash object for the given @var{algorithm}, and with @var{value} as its hash value. When @var{algorithm} is omitted, assume it is @code{sha256}." msgstr "Erzeugt ein Inhaltshash-Objekt für den gegebenen @var{Algorithmus} und benutzt dabei den @var{Wert} als dessen Hashwert. Wenn kein @var{Algorithmus} angegeben wird, wird @code{sha256} angenommen." #. type: deftp -#: guix-git/doc/guix.texi:7454 +#: guix-git/doc/guix.texi:7512 msgid "@var{value} can be a literal string, in which case it is base32-decoded, or it can be a bytevector." msgstr "Als @var{Wert} kann ein Zeichenketten-Literal, was base32-dekodiert wird, oder ein Byte-Vektor angegeben werden." #. type: deftp -#: guix-git/doc/guix.texi:7456 +#: guix-git/doc/guix.texi:7514 msgid "The following forms are all equivalent:" msgstr "Folgende Formen sind äquivalent:" #. type: lisp -#: guix-git/doc/guix.texi:7465 +#: guix-git/doc/guix.texi:7523 #, no-wrap msgid "" "(content-hash \"05zxkyz9bv3j9h0xyid1rhvh3klhsmrpkf3bcs6frvlgyr2gwilj\")\n" @@ -15487,103 +15611,103 @@ msgstr "" " sha256)\n" #. type: deftp -#: guix-git/doc/guix.texi:7470 +#: guix-git/doc/guix.texi:7528 msgid "Technically, @code{content-hash} is currently implemented as a macro. It performs sanity checks at macro-expansion time, when possible, such as ensuring that @var{value} has the right size for @var{algorithm}." msgstr "Als interne Implementierung wird für @code{content-hash} derzeit ein Makro benutzt. Es überprüft, wenn möglich, zum Zeitpunkt der Makroumschreibung, ob die Angaben in Ordnung sind, z.B.@: ob der @var{Wert} die richtige Größe für den angegebenen @var{Algorithmus} hat." #. type: Plain text -#: guix-git/doc/guix.texi:7476 +#: guix-git/doc/guix.texi:7534 msgid "As we have seen above, how exactly the data an origin refers to is retrieved is determined by its @code{method} field. The @code{(guix download)} module provides the most common method, @code{url-fetch}, described below." msgstr "Wie wir oben gesehen haben, hängt es von der im @code{method}-Feld angegebenen Methode ab, wie die in einem Paketursprung verwiesenen Daten geladen werden. Das Modul @code{(guix download)} stellt die am häufigsten benutzte Methode zur Verfügung, nämlich @code{url-fetch}, die im Folgenden beschrieben wird." #. type: deffn -#: guix-git/doc/guix.texi:7477 +#: guix-git/doc/guix.texi:7535 #, no-wrap msgid "{Scheme Procedure} url-fetch @var{url} @var{hash-algo} @var{hash} @" msgstr "{Scheme-Prozedur} url-fetch @var{URL} @var{Hash-Algo} @var{Hash} @" #. type: deffn -#: guix-git/doc/guix.texi:7485 +#: guix-git/doc/guix.texi:7543 msgid "[name] [#:executable? #f] Return a fixed-output derivation that fetches data from @var{url} (a string, or a list of strings denoting alternate URLs), which is expected to have hash @var{hash} of type @var{hash-algo} (a symbol). By default, the file name is the base name of URL; optionally, @var{name} can specify a different file name. When @var{executable?} is true, make the downloaded file executable." msgstr "[name] [#:executable? #f] Liefert eine Ableitung mit fester Ausgabe, die Daten von der @var{URL} lädt (einer Zeichenkette oder Liste von Zeichenketten für alternativ mögliche URLs). Es wird erwartet, dass die Daten @var{Hash} als Prüfsumme haben, gemäß dem Algorithmus, der in @var{Hash-Algo} (einem Symbol) angegebenen wurde. Nach Vorgabe ergibt sich der Dateiname aus dem Basisnamen der URL; optional kann in @var{name} ein anderslautender Name festgelegt werden. Wenn @var{executable?} wahr ist, wird die heruntergeladene Datei als ausführbar markiert." #. type: deffn -#: guix-git/doc/guix.texi:7488 +#: guix-git/doc/guix.texi:7546 msgid "When one of the URL starts with @code{mirror://}, then its host part is interpreted as the name of a mirror scheme, taken from @file{%mirror-file}." msgstr "Wenn eine der URL mit @code{mirror://} beginnt, wird der „Host Part“ an deren Anfang als Name eines Spiegelserver-Schemas aufgefasst, wie es in @file{%mirror-file} steht." #. type: deffn -#: guix-git/doc/guix.texi:7491 +#: guix-git/doc/guix.texi:7549 msgid "Alternatively, when URL starts with @code{file://}, return the corresponding file name in the store." msgstr "Alternativ wird, wenn die URL mit @code{file://} beginnt, der zugehörige Dateiname in den Store eingefügt und zurückgeliefert." #. type: Plain text -#: guix-git/doc/guix.texi:7497 +#: guix-git/doc/guix.texi:7555 msgid "Likewise, the @code{(guix git-download)} module defines the @code{git-fetch} origin method, which fetches data from a Git version control repository, and the @code{git-reference} data type to describe the repository and revision to fetch." msgstr "Ebenso ist im Modul @code{(guix git-download)} die @code{git-fetch}-Methode für Paketursprünge definiert. Sie lädt Daten aus einem Repository des Versionskontrollsystems Git. Der Datentyp @code{git-reference} beschreibt dabei das Repository und den daraus zu ladenden Commit." #. type: deffn -#: guix-git/doc/guix.texi:7498 +#: guix-git/doc/guix.texi:7556 #, no-wrap msgid "{Scheme Procedure} git-fetch @var{ref} @var{hash-algo} @var{hash}" msgstr "{Scheme-Prozedur} git-fetch @var{Ref} @var{Hash-Algo} @var{Hash}" #. type: deffn -#: guix-git/doc/guix.texi:7503 +#: guix-git/doc/guix.texi:7561 msgid "Return a fixed-output derivation that fetches @var{ref}, a @code{} object. The output is expected to have recursive hash @var{hash} of type @var{hash-algo} (a symbol). Use @var{name} as the file name, or a generic name if @code{#f}." msgstr "Liefert eine Ableitung mit fester Ausgabe, die @var{Ref} lädt, ein @code{}-Objekt. Es wird erwartet, dass die Ausgabe rekursiv die Prüfsumme @var{Hash} aufweist (ein „rekursiver Hash“) gemäß dem Typ @var{Hash-Algo} (einem Symbol). Als Dateiname wird @var{name} verwendet, oder ein generischer Name, falls @var{name} @code{#f} ist." #. type: deftp -#: guix-git/doc/guix.texi:7505 +#: guix-git/doc/guix.texi:7563 #, no-wrap msgid "{Data Type} git-reference" msgstr "{Datentyp} git-reference" #. type: deftp -#: guix-git/doc/guix.texi:7508 +#: guix-git/doc/guix.texi:7566 msgid "This data type represents a Git reference for @code{git-fetch} to retrieve." msgstr "Dieser Datentyp steht für eine Git-Referenz, die @code{git-fetch} laden soll." #. type: code{#1} -#: guix-git/doc/guix.texi:7510 guix-git/doc/guix.texi:24186 +#: guix-git/doc/guix.texi:7568 guix-git/doc/guix.texi:24548 #, no-wrap msgid "url" msgstr "url" #. type: table -#: guix-git/doc/guix.texi:7512 +#: guix-git/doc/guix.texi:7570 msgid "The URL of the Git repository to clone." msgstr "Die URL des zu klonenden Git-Repositorys." #. type: code{#1} -#: guix-git/doc/guix.texi:7513 +#: guix-git/doc/guix.texi:7571 #, no-wrap msgid "commit" msgstr "commit" #. type: table -#: guix-git/doc/guix.texi:7518 +#: guix-git/doc/guix.texi:7576 msgid "This string denotes either the commit to fetch (a hexadecimal string), or the tag to fetch. You can also use a ``short'' commit ID or a @command{git describe} style identifier such as @code{v1.0.1-10-g58d7909c97}." msgstr "Diese Zeichenkette gibt entweder den zu ladenden Commit an (als Zeichenkette aus Hexadezimalzeichen) oder sie entspricht dem zu ladenden Tag. Sie können auch eine „kurze“ Commit-Zeichenkette oder einen Bezeichner wie von @command{git describe}, z.B.@: @code{v1.0.1-10-g58d7909c97}, verwenden." #. type: item -#: guix-git/doc/guix.texi:7519 +#: guix-git/doc/guix.texi:7577 #, no-wrap msgid "@code{recursive?} (default: @code{#f})" msgstr "@code{recursive?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:7521 +#: guix-git/doc/guix.texi:7579 msgid "This Boolean indicates whether to recursively fetch Git sub-modules." msgstr "Dieser boolesche Wert gibt an, ob Git-Submodule rekursiv geladen werden sollen." #. type: deftp -#: guix-git/doc/guix.texi:7525 +#: guix-git/doc/guix.texi:7583 msgid "The example below denotes the @code{v2.10} tag of the GNU@tie{}Hello repository:" msgstr "Im folgenden Beispiel wird der Tag @code{v2.10} des Repositorys für GNU@tie{}Hello bezeichnet:" #. type: lisp -#: guix-git/doc/guix.texi:7530 +#: guix-git/doc/guix.texi:7588 #, no-wrap msgid "" "(git-reference\n" @@ -15595,12 +15719,12 @@ msgstr "" " (commit \"v2.10\"))\n" #. type: deftp -#: guix-git/doc/guix.texi:7534 +#: guix-git/doc/guix.texi:7592 msgid "This is equivalent to the reference below, which explicitly names the commit:" msgstr "Das ist äquivalent zu folgender Referenz, wo der Commit ausdrücklich benannt wird:" #. type: lisp -#: guix-git/doc/guix.texi:7539 +#: guix-git/doc/guix.texi:7597 #, no-wrap msgid "" "(git-reference\n" @@ -15612,56 +15736,56 @@ msgstr "" " (commit \"dc7dc56a00e48fe6f231a58f6537139fe2908fb9\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:7545 +#: guix-git/doc/guix.texi:7603 msgid "For Mercurial repositories, the module @code{(guix hg-download)} defines the @code{hg-fetch} origin method and @code{hg-reference} data type for support of the Mercurial version control system." msgstr "Bei Mercurial-Repositorys finden Sie im Modul @code{(guix hg-download)} Definitionen für die Methode @code{hg-fetch} für Paketursprünge sowie den Datentyp @code{hg-reference}. Mit ihnen wird das Versionskontrollsystem Mercurial unterstützt." #. type: deffn -#: guix-git/doc/guix.texi:7546 +#: guix-git/doc/guix.texi:7604 #, no-wrap msgid "{Scheme Procedure} hg-fetch @var{ref} @var{hash-algo} @var{hash} @" msgstr "{Scheme-Prozedur} hg-fetch @var{Ref} @var{Hash-Algo} @var{Hash} @" #. type: deffn -#: guix-git/doc/guix.texi:7552 +#: guix-git/doc/guix.texi:7610 msgid "[name] Return a fixed-output derivation that fetches @var{ref}, a @code{} object. The output is expected to have recursive hash @var{hash} of type @var{hash-algo} (a symbol). Use @var{name} as the file name, or a generic name if @code{#false}." msgstr "[Name] Liefert eine Ableitung mit fester Ausgabe, die @var{Ref} lädt, ein @code{}-Objekt. Es wird erwartet, dass die Ausgabe rekursiv die Prüfsumme @var{Hash} aufweist (ein „rekursiver Hash“) gemäß dem Typ @var{Hash-Algo} (einem Symbol). Als Dateiname wird @var{Name} verwendet, oder ein generischer Name, falls @var{Name} @code{#false} ist." #. type: cindex -#: guix-git/doc/guix.texi:7557 +#: guix-git/doc/guix.texi:7615 #, no-wrap msgid "customizing packages" msgstr "Pakete anpassen" #. type: cindex -#: guix-git/doc/guix.texi:7558 +#: guix-git/doc/guix.texi:7616 #, no-wrap msgid "variants, of packages" msgstr "Varianten, von Paketen" #. type: Plain text -#: guix-git/doc/guix.texi:7568 +#: guix-git/doc/guix.texi:7626 msgid "One of the nice things with Guix is that, given a package definition, you can easily @emph{derive} variants of that package---for a different upstream version, with different dependencies, different compilation options, and so on. Some of these custom packages can be defined straight from the command line (@pxref{Package Transformation Options}). This section describes how to define package variants in code. This can be useful in ``manifests'' (@pxref{profile-manifest, @option{--manifest}}) and in your own package collection (@pxref{Creating a Channel}), among others!" msgstr "Eine der schönen Sachen an Guix ist, dass Sie aus einer Paketdefinition leicht Varianten desselben Pakets @emph{ableiten} können@tie{}— solche, die vom Anbieter eine andere Paketversion nehmen, als im Guix-Repository angegeben, solche mit anderen Abhängigkeiten, anders gearteten Compiler-Optionen und mehr. Manche dieser eigenen Pakete lassen sich direkt aus der Befehlszeile definieren (siehe @ref{Package Transformation Options}). Dieser Abschnitt beschreibt, wie man Paketvarianten mit Code definiert. Das kann in „Manifesten“ nützlich sein (siehe @ref{profile-manifest, @option{--manifest}}) und in Ihrer eigenen Paketsammlung (siehe @ref{Creating a Channel}), unter anderem!" #. type: cindex -#: guix-git/doc/guix.texi:7569 +#: guix-git/doc/guix.texi:7627 #, no-wrap msgid "inherit, for package definitions" msgstr "inherit, für Paketdefinitionen" #. type: Plain text -#: guix-git/doc/guix.texi:7576 +#: guix-git/doc/guix.texi:7634 msgid "As discussed earlier, packages are first-class objects in the Scheme language. The @code{(guix packages)} module provides the @code{package} construct to define new package objects (@pxref{package Reference}). The easiest way to define a package variant is using the @code{inherit} keyword together with @code{package}. This allows you to inherit from a package definition while overriding the fields you want." msgstr "Wie zuvor erörtert, sind Pakete Objekte erster Klasse in der Scheme-Sprache. Das Modul @code{(guix packages)} stellt das @code{package}-Konstrukt zur Verfügung, mit dem neue Paketobjekte definiert werden können (siehe @ref{package Reference}). Am einfachsten ist es, eine Paketvariante zu definieren, indem Sie das @code{inherit}-Schlüsselwort mit einem @code{package}-Objekt verwenden. Dadurch können Sie die Felder einer Paketdefinition erben lassen, aber die Felder selbst festlegen, die Sie festlegen möchten." #. type: Plain text -#: guix-git/doc/guix.texi:7581 +#: guix-git/doc/guix.texi:7639 msgid "For example, given the @code{hello} variable, which contains a definition for the current version of GNU@tie{}Hello, here's how you would define a variant for version 2.2 (released in 2006, it's vintage!):" msgstr "Betrachten wir zum Beispiel die Variable @code{hello}, die eine Definition für die aktuelle Version von GNU@tie{}Hello enthält. So können Sie eine Variante für Version 2.2 definieren (welche 2006 veröffentlicht wurde@tie{}— ein guter Jahrgang!):" #. type: lisp -#: guix-git/doc/guix.texi:7584 +#: guix-git/doc/guix.texi:7642 #, no-wrap msgid "" "(use-modules (gnu packages base)) ;for 'hello'\n" @@ -15671,7 +15795,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7596 +#: guix-git/doc/guix.texi:7654 #, no-wrap msgid "" "(define hello-2.2\n" @@ -15699,17 +15823,17 @@ msgstr "" " \"0lappv4slgb5spyqbh6yl5r013zv72yqg2pcl30mginf3wdqd8k9\"))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:7605 +#: guix-git/doc/guix.texi:7663 msgid "The example above corresponds to what the @option{--with-source} package transformation option does. Essentially @code{hello-2.2} preserves all the fields of @code{hello}, except @code{version} and @code{source}, which it overrides. Note that the original @code{hello} variable is still there, in the @code{(gnu packages base)} module, unchanged. When you define a custom package like this, you are really @emph{adding} a new package definition; the original one remains available." msgstr "Das obige Beispiel entspricht dem, was Sie mit der Paketumwandlungsoption @option{--with-source} erreichen können. Im Kern erhält @code{hello-2.2} alle Felder von @code{hello} mit Ausnahme von @code{version} und @code{source}, die ersetzt werden (die beiden unterliegen einem „Override“). Beachten Sie, dass es die ursprüngliche @code{hello}-Variable weiterhin gibt, sie bleibt unverändert in dem Modul @code{(gnu packages base)}. Wenn Sie auf diese Weise ein eigenes Paket definieren, fügen Sie tatsächlich eine neue Paketdefinition hinzu; das Original bleibt erhalten." #. type: Plain text -#: guix-git/doc/guix.texi:7611 +#: guix-git/doc/guix.texi:7669 msgid "You can just as well define variants with a different set of dependencies than the original package. For example, the default @code{gdb} package depends on @code{guile}, but since that is an optional dependency, you can define a variant that removes that dependency like so:" msgstr "Genauso gut können Sie Varianten mit einer anderen Menge von Abhängigkeiten als im ursprünglichen Paket definieren. Zum Beispiel hängt das vorgegebene @code{gdb}-Paket von @code{guile} ab, aber weil es eine optionale Abhängigkeit ist, können Sie eine Variante definieren, die jene Abhängigkeit entfernt, etwa so:" #. type: lisp -#: guix-git/doc/guix.texi:7614 +#: guix-git/doc/guix.texi:7672 #, no-wrap msgid "" "(use-modules (gnu packages gdb)) ;for 'gdb'\n" @@ -15719,7 +15843,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7620 +#: guix-git/doc/guix.texi:7678 #, no-wrap msgid "" "(define gdb-sans-guile\n" @@ -15735,68 +15859,61 @@ msgstr "" " (delete \"guile\")))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:7626 +#: guix-git/doc/guix.texi:7684 msgid "The @code{modify-inputs} form above removes the @code{\"guile\"} package from the @code{inputs} field of @code{gdb}. The @code{modify-inputs} macro is a helper that can prove useful anytime you want to remove, add, or replace package inputs." msgstr "Mit obiger @code{modify-inputs}-Form wird das @code{\"guile\"}-Paket aus den Eingaben im @code{inputs}-Feld von @code{gdb} entfernt. Das @code{modify-inputs}-Makro hilft Ihnen, wann immer Sie etwas aus den Paketeingaben entfernen, hinzufügen oder ersetzen möchten." #. type: deffn -#: guix-git/doc/guix.texi:7627 +#: guix-git/doc/guix.texi:7685 #, no-wrap msgid "{Scheme Syntax} modify-inputs @var{inputs} @var{clauses}" msgstr "{Scheme-Syntax} modify-inputs @var{Eingaben} @var{Klauseln}" #. type: deffn -#: guix-git/doc/guix.texi:7631 -#, fuzzy -#| msgid "Modify the given package inputs, as returned by @code{package-inputs} & co., according to the given clauses. The example below removes the GMP and ACL inputs of Coreutils and adds libcap to the back of the input list:" +#: guix-git/doc/guix.texi:7689 msgid "Modify the given package inputs, as returned by @code{package-inputs} & co., according to the given clauses. Each clause must have one of the following forms:" -msgstr "Ändert die übergebenen Paketeingaben, die @code{package-inputs} & Co. liefern können, entsprechend der angegebenen Klauseln. Mit folgendem Beispiel werden die Eingaben GMP und ACL unter denen von Coreutils weggelassen und libcap wird zum Schluss hinzugefügt:" +msgstr "Ändert die übergebenen Paketeingaben, die @code{package-inputs} & Co.@: liefern können, entsprechend der angegebenen Klauseln. Jede Klausel muss eine der folgenden Formen aufweisen:" #. type: item -#: guix-git/doc/guix.texi:7633 -#, fuzzy, no-wrap -#| msgid "(delete @var{type})\n" +#: guix-git/doc/guix.texi:7691 +#, no-wrap msgid "(delete @var{name}@dots{})" -msgstr "(delete @var{Diensttyp})\n" +msgstr "(delete @var{Name}…)" #. type: table -#: guix-git/doc/guix.texi:7635 +#: guix-git/doc/guix.texi:7693 msgid "Delete from the inputs packages with the given @var{name}s (strings)." -msgstr "" +msgstr "Die Pakete mit den angegebenen @var{Name}n (als Zeichenketten) aus den Eingaben entfernen." #. type: item -#: guix-git/doc/guix.texi:7636 -#, fuzzy, no-wrap -#| msgid "-i @var{package} @dots{}" +#: guix-git/doc/guix.texi:7694 +#, no-wrap msgid "(append @var{package}@dots{})" -msgstr "-i @var{Paket} …" +msgstr "(append @var{Paket}…)" #. type: table -#: guix-git/doc/guix.texi:7638 +#: guix-git/doc/guix.texi:7696 msgid "Add @var{package}s to the end of the input list." -msgstr "" +msgstr "Jedes @var{Paket} am Ende der Eingabenliste anhängen." #. type: item -#: guix-git/doc/guix.texi:7639 -#, fuzzy, no-wrap -#| msgid "-r @var{package} @dots{}" +#: guix-git/doc/guix.texi:7697 +#, no-wrap msgid "(prepend @var{package}@dots{})" -msgstr "-r @var{Paket} …" +msgstr "(prepend @var{Paket}…)" #. type: table -#: guix-git/doc/guix.texi:7641 +#: guix-git/doc/guix.texi:7699 msgid "Add @var{package}s to the front of the input list." -msgstr "" +msgstr "Jedes @var{Paket} vorne an die Eingabenliste anstellen." #. type: deffn -#: guix-git/doc/guix.texi:7645 -#, fuzzy -#| msgid "Modify the given package inputs, as returned by @code{package-inputs} & co., according to the given clauses. The example below removes the GMP and ACL inputs of Coreutils and adds libcap to the back of the input list:" +#: guix-git/doc/guix.texi:7703 msgid "The example below removes the GMP and ACL inputs of Coreutils and adds libcap to the back of the input list:" -msgstr "Ändert die übergebenen Paketeingaben, die @code{package-inputs} & Co. liefern können, entsprechend der angegebenen Klauseln. Mit folgendem Beispiel werden die Eingaben GMP und ACL unter denen von Coreutils weggelassen und libcap wird zum Schluss hinzugefügt:" +msgstr "Mit folgendem Beispiel werden die Eingaben GMP und ACL unter denen von Coreutils weggelassen und libcap wird zum Schluss hinzugefügt:" #. type: lisp -#: guix-git/doc/guix.texi:7650 +#: guix-git/doc/guix.texi:7708 #, no-wrap msgid "" "(modify-inputs (package-inputs coreutils)\n" @@ -15808,12 +15925,12 @@ msgstr "" " (append libcap))\n" #. type: deffn -#: guix-git/doc/guix.texi:7654 +#: guix-git/doc/guix.texi:7712 msgid "The example below replaces the @code{guile} package from the inputs of @code{guile-redis} with @code{guile-2.2}:" msgstr "Mit folgendem Beispiel wird das @code{guile}-Paket unter den Eingaben von @code{guile-redis} weggelassen und stattdessen wird @code{guile-2.2} verwendet:" #. type: lisp -#: guix-git/doc/guix.texi:7658 +#: guix-git/doc/guix.texi:7716 #, no-wrap msgid "" "(modify-inputs (package-inputs guile-redis)\n" @@ -15823,17 +15940,17 @@ msgstr "" " (replace \"guile\" guile-2.2))\n" #. type: deffn -#: guix-git/doc/guix.texi:7662 +#: guix-git/doc/guix.texi:7720 msgid "The last type of clause is @code{prepend}, to add inputs to the front of the list." msgstr "Die letzte Art Klausel ist @code{prepend}, was bedeutet, dass Eingaben vorne an die Liste angehängt werden." #. type: Plain text -#: guix-git/doc/guix.texi:7671 +#: guix-git/doc/guix.texi:7729 msgid "In some cases, you may find it useful to write functions (``procedures'', in Scheme parlance) that return a package based on some parameters. For example, consider the @code{luasocket} library for the Lua programming language. We want to create @code{luasocket} packages for major versions of Lua. One way to do that is to define a procedure that takes a Lua package and returns a @code{luasocket} package that depends on it:" msgstr "Manchmal bietet es sich an, Funktionen (also „Prozeduren“, wie Scheme-Anwender sagen) zu schreiben, die ein Paket abhängig von bestimmten Parametern zurückliefern. Als Beispiel betrachten wir die @code{luasocket}-Bibliothek für die Programmiersprache Lua. Wir möchten @code{luasocket}-Pakete für die hauptsächlichen Versionen von Lua verfügbar machen. Eine Möglichkeit, das zu erreichen, ist, eine Prozedur zu definieren, die ein Lua-Paket nimmt und ein von diesem abhängiges @code{luasocket}-Paket liefert." #. type: lisp -#: guix-git/doc/guix.texi:7681 +#: guix-git/doc/guix.texi:7739 #, no-wrap msgid "" "(define (make-lua-socket name lua)\n" @@ -15857,7 +15974,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7684 +#: guix-git/doc/guix.texi:7742 #, no-wrap msgid "" "(define-public lua5.1-socket\n" @@ -15869,7 +15986,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7687 +#: guix-git/doc/guix.texi:7745 #, no-wrap msgid "" "(define-public lua5.2-socket\n" @@ -15879,34 +15996,34 @@ msgstr "" " (make-lua-socket \"lua5.2-socket\" lua-5.2))\n" #. type: Plain text -#: guix-git/doc/guix.texi:7695 +#: guix-git/doc/guix.texi:7753 msgid "Here we have defined packages @code{lua5.1-socket} and @code{lua5.2-socket} by calling @code{make-lua-socket} with different arguments. @xref{Procedures,,, guile, GNU Guile Reference Manual}, for more info on procedures. Having top-level public definitions for these two packages means that they can be referred to from the command line (@pxref{Package Modules})." msgstr "Damit haben wir Pakete @code{lua5.1-socket} und @code{lua5.2-socket} definiert, indem wir @code{make-lua-socket} mit verschiedenen Argumenten aufgerufen haben. Siehe @ref{Procedures,,, guile, Referenzhandbuch von GNU Guile} für mehr Informationen über Prozeduren. Weil wir mit @code{define-public} öffentlich sichtbare Definitionen auf oberster Ebene („top-level“) für diese beiden Pakete angegeben haben, kann man sie von der Befehlszeile aus benutzen (siehe @ref{Package Modules})." #. type: cindex -#: guix-git/doc/guix.texi:7696 +#: guix-git/doc/guix.texi:7754 #, no-wrap msgid "package transformations" msgstr "Paketumwandlungen" #. type: Plain text -#: guix-git/doc/guix.texi:7701 +#: guix-git/doc/guix.texi:7759 msgid "These are pretty simple package variants. As a convenience, the @code{(guix transformations)} module provides a high-level interface that directly maps to the more sophisticated package transformation options (@pxref{Package Transformation Options}):" msgstr "Bei diesen handelt es sich um sehr einfache Paketvarianten. Bequemer ist es dann, mit dem Modul @code{(guix transformations)} eine hochsprachliche Schnittstelle einzusetzen, die auf die komplexeren Paketumwandlungsoptionen direkt abbildet (siehe @ref{Package Transformation Options}):" #. type: deffn -#: guix-git/doc/guix.texi:7702 +#: guix-git/doc/guix.texi:7760 #, no-wrap msgid "{Scheme Procedure} options->transformation @var{opts}" msgstr "{Scheme-Prozedur} options->transformation @var{Optionen}" #. type: deffn -#: guix-git/doc/guix.texi:7706 +#: guix-git/doc/guix.texi:7764 msgid "Return a procedure that, when passed an object to build (package, derivation, etc.), applies the transformations specified by @var{opts} and returns the resulting objects. @var{opts} must be a list of symbol/string pairs such as:" msgstr "Liefert eine Prozedur, die gegeben ein zu erstellendes Objekt (ein Paket, eine Ableitung oder Ähnliches) die durch @var{Optionen} festgelegten Umwandlungen daran umsetzt und die sich ergebenden Objekte zurückliefert. @var{Optionen} muss eine Liste von Paaren aus Symbol und Zeichenkette sein wie:" #. type: lisp -#: guix-git/doc/guix.texi:7710 +#: guix-git/doc/guix.texi:7768 #, no-wrap msgid "" "((with-branch . \"guile-gcrypt=master\")\n" @@ -15916,17 +16033,17 @@ msgstr "" " (without-tests . \"libgcrypt\"))\n" #. type: deffn -#: guix-git/doc/guix.texi:7714 +#: guix-git/doc/guix.texi:7772 msgid "Each symbol names a transformation and the corresponding string is an argument to that transformation." msgstr "Jedes Symbol benennt eine Umwandlung. Die entsprechende Zeichenkette ist ein Argument an diese Umwandlung." #. type: Plain text -#: guix-git/doc/guix.texi:7717 +#: guix-git/doc/guix.texi:7775 msgid "For instance, a manifest equivalent to this command:" msgstr "Zum Beispiel wäre ein gleichwertiges Manifest zu diesem Befehl:" #. type: example -#: guix-git/doc/guix.texi:7722 +#: guix-git/doc/guix.texi:7780 #, no-wrap msgid "" "guix build guix \\\n" @@ -15938,12 +16055,12 @@ msgstr "" " --with-debug-info=zlib\n" #. type: Plain text -#: guix-git/doc/guix.texi:7726 +#: guix-git/doc/guix.texi:7784 msgid "... would look like this:" msgstr "… dieses hier:" #. type: lisp -#: guix-git/doc/guix.texi:7729 +#: guix-git/doc/guix.texi:7787 #, no-wrap msgid "" "(use-modules (guix transformations))\n" @@ -15953,7 +16070,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7735 +#: guix-git/doc/guix.texi:7793 #, no-wrap msgid "" "(define transform\n" @@ -15971,7 +16088,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7738 +#: guix-git/doc/guix.texi:7796 #, no-wrap msgid "" "(packages->manifest\n" @@ -15981,50 +16098,50 @@ msgstr "" " (list (transform (specification->package \"guix\"))))\n" #. type: cindex -#: guix-git/doc/guix.texi:7740 +#: guix-git/doc/guix.texi:7798 #, no-wrap msgid "input rewriting" msgstr "Eingaben umschreiben" #. type: cindex -#: guix-git/doc/guix.texi:7741 +#: guix-git/doc/guix.texi:7799 #, no-wrap msgid "dependency graph rewriting" msgstr "Abhängigkeitsgraphen umschreiben" #. type: Plain text -#: guix-git/doc/guix.texi:7748 +#: guix-git/doc/guix.texi:7806 msgid "The @code{options->transformation} procedure is convenient, but it's perhaps also not as flexible as you may like. How is it implemented? The astute reader probably noticed that most package transformation options go beyond the superficial changes shown in the first examples of this section: they involve @dfn{input rewriting}, whereby the dependency graph of a package is rewritten by replacing specific inputs by others." msgstr "Die Prozedur @code{options->transformation} lässt sich einfach benutzen, ist aber vielleicht nicht so flexibel, wie Sie es sich wünschen. Wie sieht ihre Implementierung aus? Aufmerksamen Lesern mag aufgefallen sein, dass die meisten Paketumwandlungen die oberflächlichen Änderungen aus den ersten Beispielen in diesem Abschnitt übersteigen: Sie @dfn{schreiben Eingaben um}, was im Abhängigkeitsgraphen bestimmte Eingaben durch andere ersetzt." #. type: Plain text -#: guix-git/doc/guix.texi:7752 +#: guix-git/doc/guix.texi:7810 msgid "Dependency graph rewriting, for the purposes of swapping packages in the graph, is what the @code{package-input-rewriting} procedure in @code{(guix packages)} implements." msgstr "Das Umschreiben des Abhängigkeitsgraphen, damit Pakete im Graphen ausgetauscht werden, ist in der Prozedur @code{package-input-rewriting} aus @code{(guix packages)} implementiert." #. type: deffn -#: guix-git/doc/guix.texi:7753 +#: guix-git/doc/guix.texi:7811 #, no-wrap msgid "{Scheme Procedure} package-input-rewriting @var{replacements} @" msgstr "{Scheme-Prozedur} package-input-rewriting @var{Ersetzungen} @" #. type: deffn -#: guix-git/doc/guix.texi:7760 +#: guix-git/doc/guix.texi:7818 msgid "[@var{rewrite-name}] [#:deep? #t] Return a procedure that, when passed a package, replaces its direct and indirect dependencies, including implicit inputs when @var{deep?} is true, according to @var{replacements}. @var{replacements} is a list of package pairs; the first element of each pair is the package to replace, and the second one is the replacement." msgstr "[@var{umgeschriebener-Name}] [#:deep? #t] Eine Prozedur liefern, die für ein ihr übergebenes Paket dessen direkte und indirekte Abhängigkeit gemäß den @var{Ersetzungen} umschreibt, einschließlich ihrer impliziten Eingaben, wenn @var{deep?} wahr ist. @var{Ersetzungen} ist eine Liste von Paketpaaren; das erste Element eines Paares ist das zu ersetzende Paket und das zweite ist, wodurch es ersetzt werden soll." #. type: deffn -#: guix-git/doc/guix.texi:7763 +#: guix-git/doc/guix.texi:7821 msgid "Optionally, @var{rewrite-name} is a one-argument procedure that takes the name of a package and returns its new name after rewrite." msgstr "Optional kann als @var{umgeschriebener-Name} eine ein Argument nehmende Prozedur angegeben werden, die einen Paketnamen nimmt und den Namen nach dem Umschreiben zurückliefert." #. type: table -#: guix-git/doc/guix.texi:7767 guix-git/doc/guix.texi:11216 +#: guix-git/doc/guix.texi:7825 guix-git/doc/guix.texi:11530 msgid "Consider this example:" msgstr "Betrachten Sie dieses Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:7773 +#: guix-git/doc/guix.texi:7831 #, no-wrap msgid "" "(define libressl-instead-of-openssl\n" @@ -16040,7 +16157,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7776 +#: guix-git/doc/guix.texi:7834 #, no-wrap msgid "" "(define git-with-libressl\n" @@ -16050,33 +16167,33 @@ msgstr "" " (libressl-statt-openssl git))\n" #. type: Plain text -#: guix-git/doc/guix.texi:7784 +#: guix-git/doc/guix.texi:7842 msgid "Here we first define a rewriting procedure that replaces @var{openssl} with @var{libressl}. Then we use it to define a @dfn{variant} of the @var{git} package that uses @var{libressl} instead of @var{openssl}. This is exactly what the @option{--with-input} command-line option does (@pxref{Package Transformation Options, @option{--with-input}})." msgstr "Hier definieren wir zuerst eine Umschreibeprozedur, die @var{openssl} durch @var{libressl} ersetzt. Dann definieren wir damit eine @dfn{Variante} des @var{git}-Pakets, die @var{libressl} statt @var{openssl} benutzt. Das ist genau, was auch die Befehlszeilenoption @option{--with-input} tut (siehe @ref{Package Transformation Options, @option{--with-input}})." #. type: Plain text -#: guix-git/doc/guix.texi:7787 +#: guix-git/doc/guix.texi:7845 msgid "The following variant of @code{package-input-rewriting} can match packages to be replaced by name rather than by identity." msgstr "Die folgende Variante von @code{package-input-rewriting} kann für die Ersetzung passende Pakete anhand ihres Namens finden, statt zu prüfen, ob der Wert identisch ist." #. type: deffn -#: guix-git/doc/guix.texi:7788 +#: guix-git/doc/guix.texi:7846 #, no-wrap msgid "{Scheme Procedure} package-input-rewriting/spec @var{replacements} [#:deep? #t]" msgstr "{Scheme-Prozedur} package-input-rewriting/spec @var{Ersetzungen} [#:deep? #t]" #. type: deffn -#: guix-git/doc/guix.texi:7795 +#: guix-git/doc/guix.texi:7853 msgid "Return a procedure that, given a package, applies the given @var{replacements} to all the package graph, including implicit inputs unless @var{deep?} is false. @var{replacements} is a list of spec/procedures pair; each spec is a package specification such as @code{\"gcc\"} or @code{\"guile@@2\"}, and each procedure takes a matching package and returns a replacement for that package." msgstr "Liefert eine Prozedur, die für ein gegebenes Paket die angegebenen @var{Ersetzungen} auf dessen gesamten Paketgraphen anwendet (einschließlich impliziter Eingaben, außer wenn @var{deep?} falsch ist). @var{Ersetzungen} muss dabei eine Liste von Paaren aus je einer Spezifikation und Prozedur sein. Dabei ist jede Spezifikation eine Paketspezifikation wie @code{\"gcc\"} oder @code{\"guile@@2\"} und jede Prozedur nimmt ein passendes Paket und liefert dafür einen Ersatz für das Paket." #. type: Plain text -#: guix-git/doc/guix.texi:7798 +#: guix-git/doc/guix.texi:7856 msgid "The example above could be rewritten this way:" msgstr "Das obige Beispiel könnte auch so geschrieben werden:" #. type: lisp -#: guix-git/doc/guix.texi:7803 +#: guix-git/doc/guix.texi:7861 #, no-wrap msgid "" "(define libressl-instead-of-openssl\n" @@ -16088,872 +16205,872 @@ msgstr "" " (package-input-rewriting/spec `((\"openssl\" . ,(const libressl)))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:7808 +#: guix-git/doc/guix.texi:7866 msgid "The key difference here is that, this time, packages are matched by spec and not by identity. In other words, any package in the graph that is called @code{openssl} will be replaced." msgstr "Der Hauptunterschied ist hier, dass diesmal Pakete zur Spezifikation passen müssen und nicht deren Wert identisch sein muss, damit sie ersetzt werden. Mit anderen Worten wird jedes Paket im Graphen ersetzt, das @code{openssl} heißt." #. type: Plain text -#: guix-git/doc/guix.texi:7812 +#: guix-git/doc/guix.texi:7870 msgid "A more generic procedure to rewrite a package dependency graph is @code{package-mapping}: it supports arbitrary changes to nodes in the graph." msgstr "Eine allgemeiner anwendbare Prozedur, um den Abhängigkeitsgraphen eines Pakets umzuschreiben, ist @code{package-mapping}. Sie unterstützt beliebige Änderungen an den Knoten des Graphen." #. type: deffn -#: guix-git/doc/guix.texi:7813 +#: guix-git/doc/guix.texi:7871 #, no-wrap msgid "{Scheme Procedure} package-mapping @var{proc} [@var{cut?}] [#:deep? #f]" msgstr "{Scheme-Prozedur} package-mapping @var{Prozedur} [@var{Schnitt?}] [#:deep? #f]" #. type: deffn -#: guix-git/doc/guix.texi:7818 +#: guix-git/doc/guix.texi:7876 msgid "Return a procedure that, given a package, applies @var{proc} to all the packages depended on and returns the resulting package. The procedure stops recursion when @var{cut?} returns true for a given package. When @var{deep?} is true, @var{proc} is applied to implicit inputs as well." msgstr "Liefert eine Prozedur, die, wenn ihr ein Paket übergeben wird, die an @code{package-mapping} übergebene @var{Prozedur} auf alle vom Paket abhängigen Pakete anwendet. Die Prozedur liefert das resultierende Paket. Wenn @var{Schnitt?} für ein Paket davon einen wahren Wert liefert, findet kein rekursiver Abstieg in dessen Abhängigkeiten statt. Steht @var{deep?} auf wahr, wird die @var{Prozedur} auch auf implizite Eingaben angewandt." #. type: cindex -#: guix-git/doc/guix.texi:7824 +#: guix-git/doc/guix.texi:7882 #, no-wrap msgid "build system" msgstr "Erstellungssystem" #. type: Plain text -#: guix-git/doc/guix.texi:7829 +#: guix-git/doc/guix.texi:7887 msgid "Each package definition specifies a @dfn{build system} and arguments for that build system (@pxref{Defining Packages}). This @code{build-system} field represents the build procedure of the package, as well as implicit dependencies of that build procedure." msgstr "Jede Paketdefinition legt ein @dfn{Erstellungssystem} („build system“) sowie dessen Argumente fest (siehe @ref{Defining Packages}). Das @code{build-system}-Feld steht für die Erstellungsprozedur des Pakets sowie für weitere implizite Eingaben für die Erstellungsprozedur." #. type: Plain text -#: guix-git/doc/guix.texi:7833 +#: guix-git/doc/guix.texi:7891 msgid "Build systems are @code{} objects. The interface to create and manipulate them is provided by the @code{(guix build-system)} module, and actual build systems are exported by specific modules." msgstr "Erstellungssysteme sind @code{}-Objekte. Die Schnittstelle, um solche zu erzeugen und zu verändern, ist im Modul @code{(guix build-system)} zu finden, und die eigentlichen Erstellungssysteme werden jeweils von ihren eigenen Modulen exportiert." #. type: cindex -#: guix-git/doc/guix.texi:7834 +#: guix-git/doc/guix.texi:7892 #, no-wrap msgid "bag (low-level package representation)" msgstr "Bag (systemnahe Paketrepräsentation)" #. type: Plain text -#: guix-git/doc/guix.texi:7844 +#: guix-git/doc/guix.texi:7902 msgid "Under the hood, build systems first compile package objects to @dfn{bags}. A @dfn{bag} is like a package, but with less ornamentation---in other words, a bag is a lower-level representation of a package, which includes all the inputs of that package, including some that were implicitly added by the build system. This intermediate representation is then compiled to a derivation (@pxref{Derivations}). The @code{package-with-c-toolchain} is an example of a way to change the implicit inputs that a package's build system pulls in (@pxref{package Reference, @code{package-with-c-toolchain}})." msgstr "Intern funktionieren Erstellungssysteme, indem erst Paketobjekte zu @dfn{Bags} kompiliert werden. Eine Bag (deutsch: Beutel, Sack) ist wie ein Paket, aber mit weniger Zierrat@tie{}— anders gesagt ist eine Bag eine systemnähere Darstellung eines Pakets, die sämtliche Eingaben des Pakets einschließlich vom Erstellungssystem hinzugefügter Eingaben enthält. Diese Zwischendarstellung wird dann zur eigentlichen Ableitung kompiliert (siehe @ref{Derivations}). Die Prozedur @code{package-with-c-toolchain} ist zum Beispiel eine Möglichkeit, wie die durch das Erstellungssystem hinzugenommenen impliziten Eingaben abgeändert werden können (siehe @ref{package Reference, @code{package-with-c-toolchain}})." #. type: Plain text -#: guix-git/doc/guix.texi:7852 +#: guix-git/doc/guix.texi:7910 msgid "Build systems accept an optional list of @dfn{arguments}. In package definitions, these are passed @i{via} the @code{arguments} field (@pxref{Defining Packages}). They are typically keyword arguments (@pxref{Optional Arguments, keyword arguments in Guile,, guile, GNU Guile Reference Manual}). The value of these arguments is usually evaluated in the @dfn{build stratum}---i.e., by a Guile process launched by the daemon (@pxref{Derivations})." msgstr "Erstellungssysteme akzeptieren optional eine Liste von @dfn{Argumenten}. In Paketdefinitionen werden diese über das @code{arguments}-Feld übergeben (siehe @ref{Defining Packages}). Sie sind in der Regel Schlüsselwort-Argumente (siehe @ref{Optional Arguments, Schlüsselwort-Argumente in Guile,, guile, Referenzhandbuch zu GNU Guile}). Der Wert dieser Argumente wird normalerweise vom Erstellungssystem in der @dfn{Erstellungsschicht} ausgewertet, d.h.@: von einem durch den Daemon gestarteten Guile-Prozess (siehe @ref{Derivations})." #. type: Plain text -#: guix-git/doc/guix.texi:7856 +#: guix-git/doc/guix.texi:7914 msgid "The main build system is @code{gnu-build-system}, which implements the standard build procedure for GNU and many other packages. It is provided by the @code{(guix build-system gnu)} module." msgstr "Das häufigste Erstellungssystem ist @code{gnu-build-system}, was die übliche Erstellungsprozedur für GNU-Pakete und viele andere Pakete darstellt. Es wird vom Modul @code{(guix build-system gnu)} bereitgestellt." #. type: defvr -#: guix-git/doc/guix.texi:7857 +#: guix-git/doc/guix.texi:7915 #, no-wrap msgid "{Scheme Variable} gnu-build-system" msgstr "{Scheme-Variable} gnu-build-system" #. type: defvr -#: guix-git/doc/guix.texi:7861 +#: guix-git/doc/guix.texi:7919 msgid "@code{gnu-build-system} represents the GNU Build System, and variants thereof (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards})." msgstr "@code{gnu-build-system} steht für das GNU-Erstellungssystem und Varianten desselben (siehe @ref{Configuration, Konfiguration und Makefile-Konventionen,, standards, GNU Coding Standards})." #. type: cindex -#: guix-git/doc/guix.texi:7862 guix-git/doc/guix.texi:8812 -#: guix-git/doc/guix.texi:9294 +#: guix-git/doc/guix.texi:7920 guix-git/doc/guix.texi:8869 +#: guix-git/doc/guix.texi:9429 #, no-wrap msgid "build phases" msgstr "Erstellungsphasen" #. type: defvr -#: guix-git/doc/guix.texi:7869 +#: guix-git/doc/guix.texi:7927 msgid "In a nutshell, packages using it are configured, built, and installed with the usual @code{./configure && make && make check && make install} command sequence. In practice, a few additional steps are often needed. All these steps are split up in separate @dfn{phases}. @xref{Build Phases}, for more info on build phases and ways to customize them." msgstr "Kurz gefasst werden Pakete, die es benutzen, konfiguriert, erstellt und installiert mit der üblichen Befehlsfolge @code{./configure && make && make check && make install}. In der Praxis braucht man oft noch ein paar weitere Schritte. Alle Schritte sind in voneinander getrennte @dfn{Phasen} unterteilt. Siehe @ref{Build Phases} für mehr Informationen zu Erstellungsphasen und wie man sie anpassen kann." #. type: defvr -#: guix-git/doc/guix.texi:7876 +#: guix-git/doc/guix.texi:7934 msgid "In addition, this build system ensures that the ``standard'' environment for GNU packages is available. This includes tools such as GCC, libc, Coreutils, Bash, Make, Diffutils, grep, and sed (see the @code{(guix build-system gnu)} module for a complete list). We call these the @dfn{implicit inputs} of a package, because package definitions do not have to mention them." msgstr "Zusätzlich stellt dieses Erstellungssystem sicher, dass die „Standard“-Umgebung für GNU-Pakete zur Verfügung steht. Diese umfasst Werkzeuge wie GCC, libc, Coreutils, Bash, Make, Diffutils, grep und sed (siehe das Modul @code{(guix build-system gnu)} für eine vollständige Liste). Wir bezeichnen sie als @dfn{implizite Eingaben} eines Pakets, weil Paketdefinitionen sie nicht aufführen müssen." #. type: defvr -#: guix-git/doc/guix.texi:7880 +#: guix-git/doc/guix.texi:7938 msgid "This build system supports a number of keyword arguments, which can be passed @i{via} the @code{arguments} field of a package. Here are some of the main parameters:" msgstr "Dieses Erstellungssystem unterstützt eine Reihe von Schlüsselwortargumenten, die über das @code{arguments}-Feld eines Pakets übergeben werden können. Hier sind einige der wichtigen Parameter:" #. type: item -#: guix-git/doc/guix.texi:7882 +#: guix-git/doc/guix.texi:7940 #, no-wrap msgid "#:phases" msgstr "#:phases" #. type: table -#: guix-git/doc/guix.texi:7885 +#: guix-git/doc/guix.texi:7943 msgid "This argument specifies build-side code that evaluates to an alist of build phases. @xref{Build Phases}, for more information." msgstr "Mit diesem Argument wird erstellungsseitiger Code angegeben, der zu einer assoziativen Liste von Erstellungsphasen ausgewertet wird. Siehe @ref{Build Phases} für nähere Informationen." #. type: item -#: guix-git/doc/guix.texi:7886 +#: guix-git/doc/guix.texi:7944 #, no-wrap msgid "#:configure-flags" msgstr "#:configure-flags" #. type: table -#: guix-git/doc/guix.texi:7889 +#: guix-git/doc/guix.texi:7947 msgid "This is a list of flags (strings) passed to the @command{configure} script. @xref{Defining Packages}, for an example." msgstr "Diese Liste von Befehlszeilenoptionen (als Zeichenketten) werden dem @command{configure}-Skript übergeben. Siehe @ref{Defining Packages} für ein Beispiel." #. type: item -#: guix-git/doc/guix.texi:7890 +#: guix-git/doc/guix.texi:7948 #, no-wrap msgid "#:make-flags" msgstr "#:make-flags" #. type: table -#: guix-git/doc/guix.texi:7894 +#: guix-git/doc/guix.texi:7952 msgid "This list of strings contains flags passed as arguments to @command{make} invocations in the @code{build}, @code{check}, and @code{install} phases." msgstr "Diese Zeichenkettenliste enthält Befehlszeilenoptionen, die als Argumente an @command{make}-Aufrufe in den Phasen @code{build}, @code{check} und @code{install} übergeben werden." #. type: item -#: guix-git/doc/guix.texi:7895 +#: guix-git/doc/guix.texi:7953 #, no-wrap msgid "#:out-of-source?" msgstr "#:out-of-source?" #. type: table -#: guix-git/doc/guix.texi:7898 +#: guix-git/doc/guix.texi:7956 msgid "This Boolean, @code{#f} by default, indicates whether to run builds in a build directory separate from the source tree." msgstr "Dieser Boolesche Ausdruck, nach Vorgabe steht er auf @code{#f}, zeigt an, ob Erstellungen in einem gesonderten Erstellungsverzeichnis abseits des Quellbaums ausgeführt werden sollen." #. type: table -#: guix-git/doc/guix.texi:7903 +#: guix-git/doc/guix.texi:7961 msgid "When it is true, the @code{configure} phase creates a separate build directory, changes to that directory, and runs the @code{configure} script from there. This is useful for packages that require it, such as @code{glibc}." msgstr "Wenn es auf wahr steht, wird in der @code{configure}-Phase eigens ein Erstellungsverzeichnis angelegt, dorthin gewechselt und das @code{configure}-Skript von dort ausgeführt. Das ist nützlich bei Paketen, die so etwas voraussetzen, wie @code{glibc}." #. type: item -#: guix-git/doc/guix.texi:7904 +#: guix-git/doc/guix.texi:7962 #, no-wrap msgid "#:tests?" msgstr "#:tests?" #. type: table -#: guix-git/doc/guix.texi:7907 +#: guix-git/doc/guix.texi:7965 msgid "This Boolean, @code{#t} by default, indicates whether the @code{check} phase should run the package's test suite." msgstr "Dieser Boolesche Ausdruck, nach Vorgabe steht er auf @code{#t}, zeigt an, ob in der @code{check}-Phase der Testkatalog des Pakets ausgeführt werden soll." #. type: item -#: guix-git/doc/guix.texi:7908 +#: guix-git/doc/guix.texi:7966 #, no-wrap msgid "#:test-target" msgstr "#:test-target" #. type: table -#: guix-git/doc/guix.texi:7911 +#: guix-git/doc/guix.texi:7969 msgid "This string, @code{\"check\"} by default, gives the name of the makefile target used by the @code{check} phase." msgstr "In dieser Zeichenkette, nach Vorgabe @code{\"check\"}, wird der Name des Makefile-Ziels angegeben, das die @code{check}-Phase benutzt." #. type: item -#: guix-git/doc/guix.texi:7912 +#: guix-git/doc/guix.texi:7970 #, no-wrap msgid "#:parallel-build?" msgstr "#:parallel-build?" #. type: itemx -#: guix-git/doc/guix.texi:7913 +#: guix-git/doc/guix.texi:7971 #, no-wrap msgid "#:parallel-tests?" msgstr "#:parallel-tests?" #. type: table -#: guix-git/doc/guix.texi:7920 +#: guix-git/doc/guix.texi:7978 msgid "These Boolean values specify whether to build, respectively run the test suite, in parallel, with the @code{-j} flag of @command{make}. When they are true, @code{make} is passed @code{-j@var{n}}, where @var{n} is the number specified as the @option{--cores} option of @command{guix-daemon} or that of the @command{guix} client command (@pxref{Common Build Options, @option{--cores}})." msgstr "Mit diesen Booleschen Werten wird festgelegt, ob die Erstellung respektive der Testkatalog parallel ausgeführt werden soll, indem die Befehlszeilenoption @code{-j} an @command{make} übergeben wird. Wenn die Werte wahr sind, wird an @code{make} die Option @code{-j@var{n}} übergeben, wobei @var{n} die Zahl ist, die in der @option{--cores}-Befehlszeilenoption an @command{guix-daemon} oder an den @command{guix}-Clientbefehl übergeben wurde (siehe @ref{Common Build Options, @option{--cores}})." #. type: cindex -#: guix-git/doc/guix.texi:7921 +#: guix-git/doc/guix.texi:7979 #, no-wrap msgid "RUNPATH, validation" msgstr "RUNPATH, Validierung" #. type: item -#: guix-git/doc/guix.texi:7922 +#: guix-git/doc/guix.texi:7980 #, no-wrap msgid "#:validate-runpath?" msgstr "#:validate-runpath?" #. type: table -#: guix-git/doc/guix.texi:7926 +#: guix-git/doc/guix.texi:7984 msgid "This Boolean, @code{#t} by default, determines whether to ``validate'' the @code{RUNPATH} of ELF binaries (@code{.so} shared libraries as well as executables) previously installed by the @code{install} phase." msgstr "Dieser Boolesche Ausdruck, nach Vorgabe @code{#t}, bestimmt, ob der in ELF-Binärdateien, die in der @code{install}-Phase installiert worden sind, eingetragene @code{RUNPATH} „validiert“ werden soll. ELF-Binärdateien sind gemeinsame Bibliotheken („Shared Libraries“ mit Dateiendung @code{.so}) sowie ausführbare Dateien." #. type: table -#: guix-git/doc/guix.texi:7934 +#: guix-git/doc/guix.texi:7992 msgid "This validation step consists in making sure that all the shared libraries needed by an ELF binary, which are listed as @code{DT_NEEDED} entries in its @code{PT_DYNAMIC} segment, appear in the @code{DT_RUNPATH} entry of that binary. In other words, it ensures that running or using those binaries will not result in a ``file not found'' error at run time. @xref{Options, @option{-rpath},, ld, The GNU Linker}, for more information on @code{RUNPATH}." msgstr "Die Validierung besteht darin, sicherzustellen, dass jede gemeinsame Bibliothek, die von einer ELF-Binärdatei gebraucht wird (sie sind in @code{DT_NEEDED}-Einträgen im @code{PT_DYNAMIC}-Segment der ELF-Datei aufgeführt), im @code{DT_RUNPATH}-Eintrag der Datei gefunden wird. Mit anderen Worten wird gewährleistet, dass es beim Ausführen oder Benutzen einer solchen Binärdatei nicht zur Laufzeit zu einem Fehler kommt, eine Datei würde nicht gefunden. Siehe @ref{Options, @option{-rpath},, ld, The GNU Linker} für mehr Informationen zum @code{RUNPATH}." #. type: item -#: guix-git/doc/guix.texi:7935 +#: guix-git/doc/guix.texi:7993 #, no-wrap msgid "#:substitutable?" msgstr "#:substitutable?" #. type: table -#: guix-git/doc/guix.texi:7939 +#: guix-git/doc/guix.texi:7997 msgid "This Boolean, @code{#t} by default, tells whether the package outputs should be substitutable---i.e., whether users should be able to obtain substitutes for them instead of building locally (@pxref{Substitutes})." msgstr "Dieser Boolesche Ausdruck, nach Vorgabe @code{#t}, sagt aus, ob Paketausgaben substituierbar sein sollen, d.h.@: ob Benutzer Substitute dafür beziehen können sollen statt sie lokal erstellen zu müssen (siehe @ref{Substitutes})." #. type: item -#: guix-git/doc/guix.texi:7940 +#: guix-git/doc/guix.texi:7998 #, no-wrap msgid "#:allowed-references" msgstr "#:allowed-references" #. type: itemx -#: guix-git/doc/guix.texi:7941 +#: guix-git/doc/guix.texi:7999 #, no-wrap msgid "#:disallowed-references" msgstr "#:disallowed-references" #. type: table -#: guix-git/doc/guix.texi:7946 +#: guix-git/doc/guix.texi:8004 msgid "When true, these arguments must be a list of dependencies that must not appear among the references of the build results. If, upon build completion, some of these references are retained, the build process fails." msgstr "Wenn für diese Argumente ein wahrer Wert angegeben wird, muss er einer Liste von Abhängigkeiten entsprechen, die @emph{nicht} unter den Referenzen der Erstellungsergebnisse vorkommen dürfen. Wenn nach dem Ende der Erstellung eine solche Referenz noch vorhanden ist, schlägt der Erstellungsvorgang fehl." #. type: table -#: guix-git/doc/guix.texi:7951 +#: guix-git/doc/guix.texi:8009 msgid "This is useful to ensure that a package does not erroneously keep a reference to some of it build-time inputs, in cases where doing so would, for example, unnecessarily increase its size (@pxref{Invoking guix size})." msgstr "Sie eignen sich, um zu garantieren, dass ein Paket nicht fälschlich seine Abhängigkeiten aus der Erstellungszeit weiter referenziert, wenn das, zum Beispiel, die Größe unnötig in die Höhe treiben würde." #. type: defvr -#: guix-git/doc/guix.texi:7954 +#: guix-git/doc/guix.texi:8012 msgid "Most other build systems support these keyword arguments." msgstr "Auch die meisten anderen Erstellungssysteme unterstützen diese Schlüsselwortargumente." #. type: Plain text -#: guix-git/doc/guix.texi:7961 +#: guix-git/doc/guix.texi:8019 msgid "Other @code{} objects are defined to support other conventions and tools used by free software packages. They inherit most of @code{gnu-build-system}, and differ mainly in the set of inputs implicitly added to the build process, and in the list of phases executed. Some of these build systems are listed below." msgstr "Andere @code{}-Objekte werden definiert, um andere Konventionen und Werkzeuge von Paketen für freie Software zu unterstützen. Die anderen Erstellungssysteme erben den Großteil vom @code{gnu-build-system} und unterscheiden sich hauptsächlich darin, welche Eingaben dem Erstellungsprozess implizit hinzugefügt werden und welche Liste von Phasen durchlaufen wird. Manche dieser Erstellungssysteme sind im Folgenden aufgeführt." #. type: defvr -#: guix-git/doc/guix.texi:7962 +#: guix-git/doc/guix.texi:8020 #, no-wrap msgid "{Scheme Variable} ant-build-system" msgstr "{Scheme-Variable} ant-build-system" #. type: defvr -#: guix-git/doc/guix.texi:7966 +#: guix-git/doc/guix.texi:8024 msgid "This variable is exported by @code{(guix build-system ant)}. It implements the build procedure for Java packages that can be built with @url{https://ant.apache.org/, Ant build tool}." msgstr "Diese Variable wird vom Modul @code{(guix build-system ant)} exportiert. Sie implementiert die Erstellungsprozedur für Java-Pakete, die mit dem @url{https://ant.apache.org/, Ant build tool} erstellt werden können." #. type: defvr -#: guix-git/doc/guix.texi:7971 +#: guix-git/doc/guix.texi:8029 msgid "It adds both @code{ant} and the @dfn{Java Development Kit} (JDK) as provided by the @code{icedtea} package to the set of inputs. Different packages can be specified with the @code{#:ant} and @code{#:jdk} parameters, respectively." msgstr "Sowohl @code{ant} als auch der @dfn{Java Development Kit} (JDK), wie er vom Paket @code{icedtea} bereitgestellt wird, werden zu den Eingaben hinzugefügt. Wenn andere Pakete dafür benutzt werden sollen, können sie jeweils mit den Parametern @code{#:ant} und @code{#:jdk} festgelegt werden." #. type: defvr -#: guix-git/doc/guix.texi:7977 +#: guix-git/doc/guix.texi:8035 msgid "When the original package does not provide a suitable Ant build file, the parameter @code{#:jar-name} can be used to generate a minimal Ant build file @file{build.xml} with tasks to build the specified jar archive. In this case the parameter @code{#:source-dir} can be used to specify the source sub-directory, defaulting to ``src''." msgstr "Falls das ursprüngliche Paket über keine nutzbare Ant-Erstellungsdatei („Ant-Buildfile“) verfügt, kann aus der Angabe im Parameter @code{#:jar-name} eine minimale Ant-Erstellungsdatei @file{build.xml} erzeugt werden, in der die für die Erstellung durchzuführenden Aufgaben (Tasks) für die Erstellung des angegebenen Jar-Archivs stehen. In diesem Fall kann der Parameter @code{#:source-dir} benutzt werden, um das Unterverzeichnis mit dem Quellcode anzugeben; sein Vorgabewert ist „src“." #. type: defvr -#: guix-git/doc/guix.texi:7985 +#: guix-git/doc/guix.texi:8043 msgid "The @code{#:main-class} parameter can be used with the minimal ant buildfile to specify the main class of the resulting jar. This makes the jar file executable. The @code{#:test-include} parameter can be used to specify the list of junit tests to run. It defaults to @code{(list \"**/*Test.java\")}. The @code{#:test-exclude} can be used to disable some tests. It defaults to @code{(list \"**/Abstract*.java\")}, because abstract classes cannot be run as tests." msgstr "Der Parameter @code{#:main-class} kann mit einer minimalen Ant-Erstellungsdatei benutzt werden, um die Hauptklasse des resultierenden Jar-Archivs anzugeben. Dies ist nötig, wenn die Jar-Datei ausführbar sein soll. Mit dem Parameter @code{#:test-include} kann eine Liste angegeben werden, welche Junit-Tests auszuführen sind. Der Vorgabewert ist @code{(list \"**/*Test.java\")}. Mit @code{#:test-exclude} kann ein Teil der Testdateien ignoriert werden. Der Vorgabewert ist @code{(list \"**/Abstract*.java\")}, weil abstrakte Klassen keine ausführbaren Tests enthalten können." #. type: defvr -#: guix-git/doc/guix.texi:7989 +#: guix-git/doc/guix.texi:8047 msgid "The parameter @code{#:build-target} can be used to specify the Ant task that should be run during the @code{build} phase. By default the ``jar'' task will be run." msgstr "Der Parameter @code{#:build-target} kann benutzt werden, um die Ant-Aufgabe (Task) anzugeben, die während der @code{build}-Phase ausgeführt werden soll. Vorgabe ist, dass die Aufgabe (Task) „jar“ ausgeführt wird." #. type: defvr -#: guix-git/doc/guix.texi:7992 +#: guix-git/doc/guix.texi:8050 #, no-wrap msgid "{Scheme Variable} android-ndk-build-system" msgstr "{Scheme-Variable} android-ndk-build-system" #. type: cindex -#: guix-git/doc/guix.texi:7993 +#: guix-git/doc/guix.texi:8051 #, no-wrap msgid "Android distribution" msgstr "Android-Distribution" #. type: cindex -#: guix-git/doc/guix.texi:7994 +#: guix-git/doc/guix.texi:8052 #, no-wrap msgid "Android NDK build system" msgstr "Android-NDK-Erstellungssystem" #. type: defvr -#: guix-git/doc/guix.texi:7998 +#: guix-git/doc/guix.texi:8056 msgid "This variable is exported by @code{(guix build-system android-ndk)}. It implements a build procedure for Android NDK (native development kit) packages using a Guix-specific build process." msgstr "Diese Variable wird von @code{(guix build-system android-ndk)} exportiert. Sie implementiert eine Erstellungsprozedur für das Android NDK (Native Development Kit) benutzende Pakete mit einem Guix-spezifischen Erstellungsprozess." #. type: defvr -#: guix-git/doc/guix.texi:8002 +#: guix-git/doc/guix.texi:8060 msgid "The build system assumes that packages install their public interface (header) files to the subdirectory @file{include} of the @code{out} output and their libraries to the subdirectory @file{lib} the @code{out} output." msgstr "Für das Erstellungssystem wird angenommen, dass Pakete die zu ihrer öffentlichen Schnittstelle gehörenden Header-Dateien im Unterverzeichnis @file{include} der Ausgabe @code{out} und ihre Bibliotheken im Unterverzeichnis @file{lib} der Ausgabe @code{out} platzieren." #. type: defvr -#: guix-git/doc/guix.texi:8005 +#: guix-git/doc/guix.texi:8063 msgid "It's also assumed that the union of all the dependencies of a package has no conflicting files." msgstr "Ebenso wird angenommen, dass es keine im Konflikt stehenden Dateien unter der Vereinigung aller Abhängigkeiten gibt." #. type: defvr -#: guix-git/doc/guix.texi:8008 +#: guix-git/doc/guix.texi:8066 msgid "For the time being, cross-compilation is not supported - so right now the libraries and header files are assumed to be host tools." msgstr "Derzeit wird Cross-Kompilieren hierfür nicht unterstützt, also wird dabei vorausgesetzt, dass Bibliotheken und Header-Dateien dieselben wie im Wirtssystem sind." #. type: defvr -#: guix-git/doc/guix.texi:8011 +#: guix-git/doc/guix.texi:8069 #, no-wrap msgid "{Scheme Variable} asdf-build-system/source" msgstr "{Scheme-Variable} asdf-build-system/source" #. type: defvrx -#: guix-git/doc/guix.texi:8012 +#: guix-git/doc/guix.texi:8070 #, no-wrap msgid "{Scheme Variable} asdf-build-system/sbcl" msgstr "{Scheme-Variable} asdf-build-system/sbcl" #. type: defvrx -#: guix-git/doc/guix.texi:8013 +#: guix-git/doc/guix.texi:8071 #, no-wrap msgid "{Scheme Variable} asdf-build-system/ecl" msgstr "{Scheme-Variable} asdf-build-system/ecl" #. type: defvr -#: guix-git/doc/guix.texi:8019 +#: guix-git/doc/guix.texi:8077 msgid "These variables, exported by @code{(guix build-system asdf)}, implement build procedures for Common Lisp packages using @url{https://common-lisp.net/project/asdf/, ``ASDF''}. ASDF is a system definition facility for Common Lisp programs and libraries." msgstr "Diese Variablen, die vom Modul @code{(guix build-system asdf)} exportiert werden, implementieren Erstellungsprozeduren für Common-Lisp-Pakete, welche @url{https://common-lisp.net/project/asdf/, „ASDF“} benutzen. ASDF dient der Systemdefinition für Common-Lisp-Programme und -Bibliotheken." #. type: defvr -#: guix-git/doc/guix.texi:8026 +#: guix-git/doc/guix.texi:8084 msgid "The @code{asdf-build-system/source} system installs the packages in source form, and can be loaded using any common lisp implementation, via ASDF@. The others, such as @code{asdf-build-system/sbcl}, install binary systems in the format which a particular implementation understands. These build systems can also be used to produce executable programs, or lisp images which contain a set of packages pre-loaded." msgstr "Das Erstellungssystem @code{asdf-build-system/source} installiert die Pakete in Quellcode-Form und kann @i{via} ASDF mit jeder Common-Lisp-Implementierung geladen werden. Die anderen Erstellungssysteme wie @code{asdf-build-system/sbcl} installieren binäre Systeme in dem Format, das von einer bestimmten Implementierung verstanden wird. Diese Erstellungssysteme können auch benutzt werden, um ausführbare Programme zu erzeugen oder um Lisp-Abbilder mit einem vorab geladenen Satz von Paketen zu erzeugen." #. type: defvr -#: guix-git/doc/guix.texi:8030 +#: guix-git/doc/guix.texi:8088 msgid "The build system uses naming conventions. For binary packages, the package name should be prefixed with the lisp implementation, such as @code{sbcl-} for @code{asdf-build-system/sbcl}." msgstr "Das Erstellungssystem benutzt gewisse Namenskonventionen. Bei Binärpaketen sollte dem Paketnamen die Lispimplementierung als Präfix vorangehen, z.B.@: @code{sbcl-} für @code{asdf-build-system/sbcl}." #. type: defvr -#: guix-git/doc/guix.texi:8034 +#: guix-git/doc/guix.texi:8092 msgid "Additionally, the corresponding source package should be labeled using the same convention as python packages (see @ref{Python Modules}), using the @code{cl-} prefix." msgstr "Zudem sollte das entsprechende Quellcode-Paket mit der Konvention wie bei Python-Paketen (siehe @ref{Python Modules}) ein @code{cl-} als Präfix bekommen." #. type: defvr -#: guix-git/doc/guix.texi:8042 +#: guix-git/doc/guix.texi:8100 msgid "In order to create executable programs and images, the build-side procedures @code{build-program} and @code{build-image} can be used. They should be called in a build phase after the @code{create-asdf-configuration} phase, so that the system which was just built can be used within the resulting image. @code{build-program} requires a list of Common Lisp expressions to be passed as the @code{#:entry-program} argument." msgstr "Um ausführbare Programme und Abbilder zu erzeugen, können die erstellungsseitigen Prozeduren @code{build-program} und @code{build-image} benutzt werden. Sie sollten in einer Erstellungsphase nach der @code{create-asdf-configuration}-Phase aufgerufen werden, damit das gerade erstellte System Teil des resultierenden Abbilds sein kann. An @code{build-program} muss eine Liste von Common-Lisp-Ausdrücken über das Argument @code{#:entry-program} übergeben werden." #. type: defvr -#: guix-git/doc/guix.texi:8051 +#: guix-git/doc/guix.texi:8109 msgid "By default, all the @file{.asd} files present in the sources are read to find system definitions. The @code{#:asd-files} parameter can be used to specify the list of @file{.asd} files to read. Furthermore, if the package defines a system for its tests in a separate file, it will be loaded before the tests are run if it is specified by the @code{#:test-asd-file} parameter. If it is not set, the files @code{-tests.asd}, @code{-test.asd}, @code{tests.asd}, and @code{test.asd} will be tried if they exist." msgstr "Vorgegeben ist, alle @file{.asd}-Dateien im Quellverzeichnis zu lesen, um zu ermitteln, welche Systeme definiert sind. Mit dem Parameter @code{#:asd-files} kann die Liste zu lesender @file{.asd}-Dateien festgelegt werden. Außerdem wird bei Paketen, für deren Tests ein System in einer separaten Datei definiert wurde, dieses System geladen, bevor die Tests ablaufen, wenn es im Parameter @code{#:test-asd-file} steht. Ist dafür kein Wert gesetzt, werden die Dateien @code{-tests.asd}, @code{-test.asd}, @code{tests.asd} und @code{test.asd} durchsucht, wenn sie existieren." #. type: defvr -#: guix-git/doc/guix.texi:8056 +#: guix-git/doc/guix.texi:8114 msgid "If for some reason the package must be named in a different way than the naming conventions suggest, or if several systems must be compiled, the @code{#:asd-systems} parameter can be used to specify the list of system names." msgstr "Wenn aus irgendeinem Grund der Paketname nicht den Namenskonventionen folgen kann oder wenn mehrere Systeme kompiliert werden, kann der Parameter @code{#:asd-systems} benutzt werden, um die Liste der Systemnamen anzugeben." #. type: defvr -#: guix-git/doc/guix.texi:8059 +#: guix-git/doc/guix.texi:8117 #, no-wrap msgid "{Scheme Variable} cargo-build-system" msgstr "{Scheme-Variable} cargo-build-system" #. type: cindex -#: guix-git/doc/guix.texi:8060 +#: guix-git/doc/guix.texi:8118 #, no-wrap msgid "Rust programming language" msgstr "Rust-Programmiersprache" #. type: cindex -#: guix-git/doc/guix.texi:8061 +#: guix-git/doc/guix.texi:8119 #, no-wrap msgid "Cargo (Rust build system)" msgstr "Cargo (Rust-Erstellungssystem)" #. type: defvr -#: guix-git/doc/guix.texi:8065 +#: guix-git/doc/guix.texi:8123 msgid "This variable is exported by @code{(guix build-system cargo)}. It supports builds of packages using Cargo, the build tool of the @uref{https://www.rust-lang.org, Rust programming language}." msgstr "Diese Variable wird vom Modul @code{(guix build-system cargo)} exportiert. Damit können Pakete mit Cargo erstellt werden, dem Erstellungswerkzeug der @uref{https://www.rust-lang.org, Rust-Programmiersprache}." #. type: defvr -#: guix-git/doc/guix.texi:8068 +#: guix-git/doc/guix.texi:8126 msgid "It adds @code{rustc} and @code{cargo} to the set of inputs. A different Rust package can be specified with the @code{#:rust} parameter." msgstr "Das Erstellungssystem fügt @code{rustc} und @code{cargo} zu den Eingaben hinzu. Ein anderes Rust-Paket kann mit dem Parameter @code{#:rust} angegeben werden." #. type: defvr -#: guix-git/doc/guix.texi:8078 +#: guix-git/doc/guix.texi:8136 msgid "Regular cargo dependencies should be added to the package definition similarly to other packages; those needed only at build time to native-inputs, others to inputs. If you need to add source-only crates then you should add them to via the @code{#:cargo-inputs} parameter as a list of name and spec pairs, where the spec can be a package or a source definition. Note that the spec must evaluate to a path to a gzipped tarball which includes a @code{Cargo.toml} file at its root, or it will be ignored. Similarly, cargo dev-dependencies should be added to the package definition via the @code{#:cargo-development-inputs} parameter." msgstr "Normale cargo-Abhängigkeiten sollten so wie bei anderen Paketen in die Paketdefinition eingetragen werden; wenn sie nur zur Erstellungszeit gebraucht werden, gehören sie in @code{native-inputs}, sonst in @code{inputs}. Wenn die Abhängigkeiten Crates sind, die nur als Quellcode vorliegen, sollten sie zusätzlich über den Parameter @code{#:cargo-inputs} als eine Liste von Paaren aus Name und Spezifikation hinzugefügt, wobei als Spezifikation ein Paket oder eine Quellcode-Definition angegeben werden kann. Beachten Sie, dass die Spezifikation zu einem mit gzip komprimierten Tarball ausgewertet werden muss, der eine Datei @code{Cargo.toml} in seinem Wurzelverzeichnis enthält, ansonsten wird sie ignoriert. Analog sollten solche Abhängigkeiten, die in cargo als „dev-dependencies“ deklariert werden, zur Paketdefinition über den Parameter @code{#:cargo-development-inputs} hinzugefügt werden." #. type: defvr -#: guix-git/doc/guix.texi:8088 +#: guix-git/doc/guix.texi:8146 msgid "In its @code{configure} phase, this build system will make any source inputs specified in the @code{#:cargo-inputs} and @code{#:cargo-development-inputs} parameters available to cargo. It will also remove an included @code{Cargo.lock} file to be recreated by @code{cargo} during the @code{build} phase. The @code{package} phase will run @code{cargo package} to create a source crate for future use. The @code{install} phase installs the binaries defined by the crate. Unless @code{install-source? #f} is defined it will also install a source crate repository of itself and unpacked sources, to ease in future hacking on rust packages." msgstr "In seiner @code{configure}-Phase sorgt dieses Erstellungssystem dafür, dass cargo alle Quellcodeeingaben zur Verfügung stehen, die in den Parametern @code{#:cargo-inputs} und @code{#:cargo-development-inputs} angegeben wurden. Außerdem wird eine enthaltene @code{Cargo.lock}-Datei entfernt, damit @code{cargo} selbige während der @code{build}-Phase neu erzeugt. Die @code{package}-Phase führt @code{cargo package} aus, um eine Quellcode-Crate zur späteren Nutzung zu erzeugen. Die @code{install}-Phase installiert die in der Crate definierten Binärdateien. Wenn @emph{nicht} @code{install-source? #f} definiert ist, werden auch ein Verzeichnis mit dem eigenen Quellcode in einer Crate und auch der unverpackte Quellcode installiert, damit es leichter ist, später an Rust-Paketen zu hacken." #. type: defvr -#: guix-git/doc/guix.texi:8090 +#: guix-git/doc/guix.texi:8148 #, no-wrap msgid "{Scheme Variable} chicken-build-system" msgstr "{Scheme-Variable} chicken-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8095 +#: guix-git/doc/guix.texi:8153 msgid "This variable is exported by @code{(guix build-system chicken)}. It builds @uref{https://call-cc.org/, CHICKEN Scheme} modules, also called ``eggs'' or ``extensions''. CHICKEN generates C source code, which then gets compiled by a C compiler, in this case GCC." msgstr "Diese Variable wird von @code{(guix build-system chicken)} exportiert. Mit ihr werden Module von @uref{https://call-cc.org/, CHICKEN Scheme} kompiliert. Sie sind auch bekannt als „Eggs“ oder als „Erweiterungen“. CHICKEN erzeugt C-Quellcode, der dann von einem C-Compiler kompiliert wird; in diesem Fall vom GCC." #. type: defvr -#: guix-git/doc/guix.texi:8098 +#: guix-git/doc/guix.texi:8156 msgid "This build system adds @code{chicken} to the package inputs, as well as the packages of @code{gnu-build-system}." msgstr "Dieses Erstellungssystem fügt @code{chicken} neben den Paketen des @code{gnu-build-system} zu den Paketeingaben hinzu." #. type: defvr -#: guix-git/doc/guix.texi:8102 +#: guix-git/doc/guix.texi:8160 msgid "The build system can't (yet) deduce the egg's name automatically, so just like with @code{go-build-system} and its @code{#:import-path}, you should define @code{#:egg-name} in the package's @code{arguments} field." msgstr "Das Erstellungssystem kann den Namen des Eggs (noch) nicht automatisch herausfinden, also müssen Sie, ähnlich wie beim @code{#:import-path} des @code{go-build-system}, im @code{arguments}-Feld des Pakets den @code{#:egg-name} festlegen." #. type: defvr -#: guix-git/doc/guix.texi:8104 +#: guix-git/doc/guix.texi:8162 msgid "For example, if you are packaging the @code{srfi-1} egg:" msgstr "Zum Beispiel würden Sie so vorgehen, um ein Paket für das Egg @code{srfi-1} zu schreiben:" #. type: lisp -#: guix-git/doc/guix.texi:8107 +#: guix-git/doc/guix.texi:8165 #, no-wrap msgid "(arguments '(#:egg-name \"srfi-1\"))\n" msgstr "(arguments '(#:egg-name \"srfi-1\"))\n" #. type: defvr -#: guix-git/doc/guix.texi:8112 +#: guix-git/doc/guix.texi:8170 msgid "Egg dependencies must be defined in @code{propagated-inputs}, not @code{inputs} because CHICKEN doesn't embed absolute references in compiled eggs. Test dependencies should go to @code{native-inputs}, as usual." msgstr "Abhängigkeiten von Eggs müssen in @code{propagated-inputs} genannt werden und @emph{nicht} in @code{inputs}, weil CHICKEN keine absoluten Referenzen in kompilierte Eggs einbettet. Abhängigkeiten für Tests sollten wie üblich in @code{native-inputs} stehen." #. type: defvr -#: guix-git/doc/guix.texi:8114 +#: guix-git/doc/guix.texi:8172 #, no-wrap msgid "{Scheme Variable} copy-build-system" msgstr "{Scheme-Variable} copy-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8118 +#: guix-git/doc/guix.texi:8176 msgid "This variable is exported by @code{(guix build-system copy)}. It supports builds of simple packages that don't require much compiling, mostly just moving files around." msgstr "Diese Variable wird vom Modul @code{(guix build-system copy)} exportiert. Damit können einfache Pakete erstellt werden, für die nur wenig kompiliert werden muss, sondern in erster Linie Dateien kopiert werden." #. type: defvr -#: guix-git/doc/guix.texi:8123 +#: guix-git/doc/guix.texi:8181 msgid "It adds much of the @code{gnu-build-system} packages to the set of inputs. Because of this, the @code{copy-build-system} does not require all the boilerplate code often needed for the @code{trivial-build-system}." msgstr "Dadurch wird ein Großteil der @code{gnu-build-system} zur Menge der Paketeingaben hinzugefügt. Deswegen kann man bei Nutzung des @code{copy-build-system} auf große Teile des Codes verzichten, der beim @code{trivial-build-system} anfallen würde." #. type: defvr -#: guix-git/doc/guix.texi:8128 +#: guix-git/doc/guix.texi:8186 msgid "To further simplify the file installation process, an @code{#:install-plan} argument is exposed to let the packager specify which files go where. The install plan is a list of @code{(@var{source} @var{target} [@var{filters}])}. @var{filters} are optional." msgstr "Um den Dateiinstallationsvorgang weiter zu vereinfachen, wird ein Argument @code{#:install-plan} zur Verfügung gestellt, mit dem der Paketautor angeben kann, welche Dateien wohin gehören. Der Installationsplan ist eine Liste aus @code{(@var{Quelle} @var{Ziel} [@var{Filter}])}. Die @var{Filter} sind optional." #. type: item -#: guix-git/doc/guix.texi:8130 +#: guix-git/doc/guix.texi:8188 #, no-wrap msgid "When @var{source} matches a file or directory without trailing slash, install it to @var{target}." msgstr "Wenn die @var{Quelle} einer Datei oder einem Verzeichnis ohne Schrägstrich am Ende entspricht, wird sie nach @var{Ziel} installiert." #. type: item -#: guix-git/doc/guix.texi:8132 +#: guix-git/doc/guix.texi:8190 #, no-wrap msgid "If @var{target} has a trailing slash, install @var{source} basename beneath @var{target}." msgstr "Hat das @var{Ziel} einen Schrägstrich am Ende, wird mit dem Basisnamen der @var{Quelle} innerhalb von @var{Ziel} installiert." #. type: item -#: guix-git/doc/guix.texi:8133 +#: guix-git/doc/guix.texi:8191 #, no-wrap msgid "Otherwise install @var{source} as @var{target}." msgstr "Andernfalls wird die @var{Quelle} als @var{Ziel} installiert." #. type: item -#: guix-git/doc/guix.texi:8136 +#: guix-git/doc/guix.texi:8194 #, no-wrap msgid "When @var{source} is a directory with a trailing slash, or when @var{filters} are used," msgstr "Falls es sich bei der @var{Quelle} um ein Verzeichnis mit Schrägstrich am Ende handelt oder wenn @var{Filter} benutzt werden," #. type: itemize -#: guix-git/doc/guix.texi:8139 +#: guix-git/doc/guix.texi:8197 msgid "the trailing slash of @var{target} is implied with the same meaning as above." msgstr "so ist der Schrägstrich am Ende von @var{Ziel} mit der Bedeutung wie oben implizit." #. type: item -#: guix-git/doc/guix.texi:8140 +#: guix-git/doc/guix.texi:8198 #, no-wrap msgid "Without @var{filters}, install the full @var{source} @emph{content} to @var{target}." msgstr "Ohne Angabe von @var{Filter}n wird der gesamte @emph{Inhalt} der @var{Quelle} nach @var{Ziel} installiert." #. type: item -#: guix-git/doc/guix.texi:8141 +#: guix-git/doc/guix.texi:8199 #, no-wrap msgid "With @var{filters} among @code{#:include}, @code{#:include-regexp}, @code{#:exclude}," msgstr "Werden @var{Filter} als @code{#:include}, @code{#:include-regexp}, @code{#:exclude}" #. type: itemize -#: guix-git/doc/guix.texi:8144 +#: guix-git/doc/guix.texi:8202 msgid "@code{#:exclude-regexp}, only select files are installed depending on the filters. Each filters is specified by a list of strings." msgstr "oder @code{#:exclude-regexp} aufgeführt, werden je nach Filter nur die ausgewählten Dateien installiert. Jeder Filter wird als Liste von Zeichenketten angegeben." #. type: item -#: guix-git/doc/guix.texi:8145 +#: guix-git/doc/guix.texi:8203 #, no-wrap msgid "With @code{#:include}, install all the files which the path suffix matches" msgstr "Bei @code{#:include} werden all die Dateien installiert, deren Pfad als Suffix" #. type: itemize -#: guix-git/doc/guix.texi:8147 +#: guix-git/doc/guix.texi:8205 msgid "at least one of the elements in the given list." msgstr "zu mindestens einem der Elemente der angegebenen Liste passt." #. type: item -#: guix-git/doc/guix.texi:8147 +#: guix-git/doc/guix.texi:8205 #, no-wrap msgid "With @code{#:include-regexp}, install all the files which the" msgstr "Bei @code{#:include-regexp} werden all die Dateien installiert, deren" #. type: itemize -#: guix-git/doc/guix.texi:8150 +#: guix-git/doc/guix.texi:8208 msgid "subpaths match at least one of the regular expressions in the given list." msgstr "Unterpfad zu mindestens einem der regulären Ausdrücke in der angegebenen Liste passt." #. type: item -#: guix-git/doc/guix.texi:8150 +#: guix-git/doc/guix.texi:8208 #, no-wrap msgid "The @code{#:exclude} and @code{#:exclude-regexp} filters" msgstr "Die Filter @code{#:exclude} und @code{#:exclude-regexp}" #. type: itemize -#: guix-git/doc/guix.texi:8155 +#: guix-git/doc/guix.texi:8213 msgid "are the complement of their inclusion counterpart. Without @code{#:include} flags, install all files but those matching the exclusion filters. If both inclusions and exclusions are specified, the exclusions are done on top of the inclusions." msgstr "bewirken das Gegenteil ihrer Include-Entsprechungen. Ohne @code{#:include}-Angaben werden alle Dateien außer den zu den Exclude-Filtern passenden installiert. Werden sowohl @code{#:include} als auch @code{#:exclude} angegeben, werden zuerst die @code{#:include}-Angaben beachtet und danach wird durch @code{#:exclude} gefiltert." #. type: itemize -#: guix-git/doc/guix.texi:8159 +#: guix-git/doc/guix.texi:8217 msgid "In all cases, the paths relative to @var{source} are preserved within @var{target}." msgstr "In jedem Fall bleiben die Pfade relativ zur @var{Quelle} innerhalb des @var{Ziel}s erhalten." #. type: defvr -#: guix-git/doc/guix.texi:8162 +#: guix-git/doc/guix.texi:8220 msgid "Examples:" msgstr "Beispiele:" #. type: item -#: guix-git/doc/guix.texi:8164 +#: guix-git/doc/guix.texi:8222 #, no-wrap msgid "@code{(\"foo/bar\" \"share/my-app/\")}: Install @file{bar} to @file{share/my-app/bar}." msgstr "@code{(\"foo/bar\" \"share/my-app/\")}: Installiert @file{bar} nach @file{share/my-app/bar}." #. type: item -#: guix-git/doc/guix.texi:8165 +#: guix-git/doc/guix.texi:8223 #, no-wrap msgid "@code{(\"foo/bar\" \"share/my-app/baz\")}: Install @file{bar} to @file{share/my-app/baz}." msgstr "@code{(\"foo/bar\" \"share/my-app/baz\")}: Installiert @file{bar} nach @file{share/my-app/baz}." #. type: item -#: guix-git/doc/guix.texi:8166 +#: guix-git/doc/guix.texi:8224 #, no-wrap msgid "@code{(\"foo/\" \"share/my-app\")}: Install the content of @file{foo} inside @file{share/my-app}," msgstr "@code{(\"foo/\" \"share/my-app\")}: Installiert den Inhalt von @file{foo} innerhalb von @file{share/my-app}." #. type: itemize -#: guix-git/doc/guix.texi:8168 +#: guix-git/doc/guix.texi:8226 msgid "e.g., install @file{foo/sub/file} to @file{share/my-app/sub/file}." msgstr "Zum Beispiel wird @file{foo/sub/datei} nach @file{share/my-app/sub/datei} installiert." #. type: item -#: guix-git/doc/guix.texi:8168 +#: guix-git/doc/guix.texi:8226 #, no-wrap msgid "@code{(\"foo/\" \"share/my-app\" #:include (\"sub/file\"))}: Install only @file{foo/sub/file} to" msgstr "@code{(\"foo/\" \"share/my-app\" #:include (\"sub/datei\"))}: Installiert nur @file{foo/sub/datei}" #. type: itemize -#: guix-git/doc/guix.texi:8170 +#: guix-git/doc/guix.texi:8228 msgid "@file{share/my-app/sub/file}." msgstr "nach @file{share/my-app/sub/datei}." #. type: item -#: guix-git/doc/guix.texi:8170 +#: guix-git/doc/guix.texi:8228 #, no-wrap msgid "@code{(\"foo/sub\" \"share/my-app\" #:include (\"file\"))}: Install @file{foo/sub/file} to" msgstr "@code{(\"foo/sub\" \"share/my-app\" #:include (\"datei\"))}: Installiert @file{foo/sub/datei}" #. type: itemize -#: guix-git/doc/guix.texi:8172 +#: guix-git/doc/guix.texi:8230 msgid "@file{share/my-app/file}." msgstr "nach @file{share/my-app/datei}." #. type: cindex -#: guix-git/doc/guix.texi:8176 +#: guix-git/doc/guix.texi:8234 #, no-wrap msgid "Clojure (programming language)" msgstr "Clojure (Programmiersprache)" #. type: cindex -#: guix-git/doc/guix.texi:8177 +#: guix-git/doc/guix.texi:8235 #, no-wrap msgid "simple Clojure build system" msgstr "einfaches Clojure-Erstellungssystem" #. type: defvr -#: guix-git/doc/guix.texi:8178 +#: guix-git/doc/guix.texi:8236 #, no-wrap msgid "{Scheme Variable} clojure-build-system" msgstr "{Scheme-Variable} clojure-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8183 +#: guix-git/doc/guix.texi:8241 msgid "This variable is exported by @code{(guix build-system clojure)}. It implements a simple build procedure for @uref{https://clojure.org/, Clojure} packages using plain old @code{compile} in Clojure. Cross-compilation is not supported yet." msgstr "Diese Variable wird durch das Modul @code{(guix build-system clojure)} exportiert. Sie implementiert eine einfache Erstellungsprozedur für in @uref{https://clojure.org/, Clojure} geschriebene Pakete mit dem guten alten @code{compile} in Clojure. Cross-Kompilieren wird noch nicht unterstützt." #. type: defvr -#: guix-git/doc/guix.texi:8187 +#: guix-git/doc/guix.texi:8245 msgid "It adds @code{clojure}, @code{icedtea} and @code{zip} to the set of inputs. Different packages can be specified with the @code{#:clojure}, @code{#:jdk} and @code{#:zip} parameters, respectively." msgstr "Das Erstellungssystem fügt @code{clojure}, @code{icedtea} und @code{zip} zu den Eingaben hinzu. Sollen stattdessen andere Pakete benutzt werden, können diese jeweils mit den Parametern @code{#:clojure}, @code{#:jdk} und @code{#:zip} spezifiziert werden." #. type: defvr -#: guix-git/doc/guix.texi:8193 +#: guix-git/doc/guix.texi:8251 msgid "A list of source directories, test directories and jar names can be specified with the @code{#:source-dirs}, @code{#:test-dirs} and @code{#:jar-names} parameters, respectively. Compile directory and main class can be specified with the @code{#:compile-dir} and @code{#:main-class} parameters, respectively. Other parameters are documented below." msgstr "Eine Liste der Quellcode-Verzeichnisse, Test-Verzeichnisse und Namen der Jar-Dateien können jeweils über die Parameter @code{#:source-dirs}, @code{#:test-dirs} und @code{#:jar-names} angegeben werden. Das Verzeichnis, in das kompiliert wird, sowie die Hauptklasse können jeweils mit den Parametern @code{#:compile-dir} und @code{#:main-class} angegeben werden. Andere Parameter sind im Folgenden dokumentiert." #. type: defvr -#: guix-git/doc/guix.texi:8196 +#: guix-git/doc/guix.texi:8254 msgid "This build system is an extension of @code{ant-build-system}, but with the following phases changed:" msgstr "Dieses Erstellungssystem ist eine Erweiterung des @code{ant-build-system}, bei der aber die folgenden Phasen geändert wurden:" #. type: item -#: guix-git/doc/guix.texi:8199 guix-git/doc/guix.texi:8773 -#: guix-git/doc/guix.texi:8822 guix-git/doc/guix.texi:8891 -#: guix-git/doc/guix.texi:35042 guix-git/doc/guix.texi:37668 +#: guix-git/doc/guix.texi:8257 guix-git/doc/guix.texi:8830 +#: guix-git/doc/guix.texi:8879 guix-git/doc/guix.texi:8952 +#: guix-git/doc/guix.texi:35481 guix-git/doc/guix.texi:38147 #, no-wrap msgid "build" msgstr "build" #. type: table -#: guix-git/doc/guix.texi:8208 +#: guix-git/doc/guix.texi:8266 msgid "This phase calls @code{compile} in Clojure to compile source files and runs @command{jar} to create jars from both source files and compiled files according to the include list and exclude list specified in @code{#:aot-include} and @code{#:aot-exclude}, respectively. The exclude list has priority over the include list. These lists consist of symbols representing Clojure libraries or the special keyword @code{#:all} representing all Clojure libraries found under the source directories. The parameter @code{#:omit-source?} decides if source should be included into the jars." msgstr "Diese Phase ruft @code{compile} in Clojure auf, um Quelldateien zu kompilieren, und führt @command{jar} aus, um Jar-Dateien aus sowohl Quelldateien als auch kompilierten Dateien zu erzeugen, entsprechend der jeweils in @code{#:aot-include} und @code{#:aot-exclude} festgelegten Listen aus in der Menge der Quelldateien eingeschlossenen und ausgeschlossenen Bibliotheken. Die Ausschlussliste hat Vorrang vor der Einschlussliste. Diese Listen setzen sich aus Symbolen zusammen, die für Clojure-Bibliotheken stehen oder dem Schlüsselwort @code{#:all} entsprechen, was für alle im Quellverzeichis gefundenen Clojure-Bibliotheken steht. Der Parameter @code{#:omit-source?} entscheidet, ob Quelldateien in die Jar-Archive aufgenommen werden sollen." #. type: item -#: guix-git/doc/guix.texi:8209 guix-git/doc/guix.texi:8777 -#: guix-git/doc/guix.texi:8896 +#: guix-git/doc/guix.texi:8267 guix-git/doc/guix.texi:8834 +#: guix-git/doc/guix.texi:8957 #, no-wrap msgid "check" msgstr "check" #. type: table -#: guix-git/doc/guix.texi:8216 +#: guix-git/doc/guix.texi:8274 msgid "This phase runs tests according to the include list and exclude list specified in @code{#:test-include} and @code{#:test-exclude}, respectively. Their meanings are analogous to that of @code{#:aot-include} and @code{#:aot-exclude}, except that the special keyword @code{#:all} now stands for all Clojure libraries found under the test directories. The parameter @code{#:tests?} decides if tests should be run." msgstr "In dieser Phase werden Tests auf die durch Einschluss- und Ausschlussliste @code{#:test-include} bzw. @code{#:test-exclude} angegebenen Dateien ausgeführt. Deren Bedeutung ist analog zu @code{#:aot-include} und @code{#:aot-exclude}, außer dass das besondere Schlüsselwort @code{#:all} jetzt für alle Clojure-Bibliotheken in den Test-Verzeichnissen steht. Der Parameter @code{#:tests?} entscheidet, ob Tests ausgeführt werden sollen." #. type: item -#: guix-git/doc/guix.texi:8217 guix-git/doc/guix.texi:8783 -#: guix-git/doc/guix.texi:8826 guix-git/doc/guix.texi:8902 +#: guix-git/doc/guix.texi:8275 guix-git/doc/guix.texi:8840 +#: guix-git/doc/guix.texi:8883 guix-git/doc/guix.texi:8963 #, no-wrap msgid "install" msgstr "install" #. type: table -#: guix-git/doc/guix.texi:8219 +#: guix-git/doc/guix.texi:8277 msgid "This phase installs all jars built previously." msgstr "In dieser Phase werden alle zuvor erstellten Jar-Dateien installiert." #. type: defvr -#: guix-git/doc/guix.texi:8222 +#: guix-git/doc/guix.texi:8280 msgid "Apart from the above, this build system also contains an additional phase:" msgstr "Zusätzlich zu den bereits angegebenen enthält dieses Erstellungssystem noch eine weitere Phase." #. type: item -#: guix-git/doc/guix.texi:8225 +#: guix-git/doc/guix.texi:8283 #, no-wrap msgid "install-doc" msgstr "install-doc" #. type: table -#: guix-git/doc/guix.texi:8230 +#: guix-git/doc/guix.texi:8288 msgid "This phase installs all top-level files with base name matching @code{%doc-regex}. A different regex can be specified with the @code{#:doc-regex} parameter. All files (recursively) inside the documentation directories specified in @code{#:doc-dirs} are installed as well." msgstr "Diese Phase installiert alle Dateien auf oberster Ebene, deren Basisnamen ohne Verzeichnisangabe zu @code{%doc-regex} passen. Ein anderer regulärer Ausdruck kann mit dem Parameter @code{#:doc-regex} verwendet werden. All die so gefundenen oder (rekursiv) in den mit @code{#:doc-dirs} angegebenen Dokumentationsverzeichnissen liegenden Dateien werden installiert." #. type: defvr -#: guix-git/doc/guix.texi:8233 +#: guix-git/doc/guix.texi:8291 #, no-wrap msgid "{Scheme Variable} cmake-build-system" msgstr "{Scheme-Variable} cmake-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8237 +#: guix-git/doc/guix.texi:8295 msgid "This variable is exported by @code{(guix build-system cmake)}. It implements the build procedure for packages using the @url{https://www.cmake.org, CMake build tool}." msgstr "Diese Variable wird von @code{(guix build-system cmake)} exportiert. Sie implementiert die Erstellungsprozedur für Pakete, die das @url{https://www.cmake.org, CMake-Erstellungswerkzeug} benutzen." #. type: defvr -#: guix-git/doc/guix.texi:8241 +#: guix-git/doc/guix.texi:8299 msgid "It automatically adds the @code{cmake} package to the set of inputs. Which package is used can be specified with the @code{#:cmake} parameter." msgstr "Das Erstellungssystem fügt automatisch das Paket @code{cmake} zu den Eingaben hinzu. Welches Paket benutzt wird, kann mit dem Parameter @code{#:cmake} geändert werden." #. type: defvr -#: guix-git/doc/guix.texi:8248 +#: guix-git/doc/guix.texi:8306 msgid "The @code{#:configure-flags} parameter is taken as a list of flags passed to the @command{cmake} command. The @code{#:build-type} parameter specifies in abstract terms the flags passed to the compiler; it defaults to @code{\"RelWithDebInfo\"} (short for ``release mode with debugging information''), which roughly means that code is compiled with @code{-O2 -g}, as is the case for Autoconf-based packages by default." msgstr "Der Parameter @code{#:configure-flags} wird als Liste von Befehlszeilenoptionen aufgefasst, die an den Befehl @command{cmake} übergeben werden. Der Parameter @code{#:build-type} abstrahiert, welche Befehlszeilenoptionen dem Compiler übergeben werden; der Vorgabewert ist @code{\"RelWithDebInfo\"} (kurz für „release mode with debugging information“), d.h.@: kompiliert wird für eine Produktionsumgebung und Informationen zur Fehlerbehebung liegen bei, was ungefähr @code{-O2 -g} entspricht, wie bei der Vorgabe für Autoconf-basierte Pakete." #. type: defvr -#: guix-git/doc/guix.texi:8250 +#: guix-git/doc/guix.texi:8308 #, no-wrap msgid "{Scheme Variable} dune-build-system" msgstr "{Scheme-Variable} dune-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8257 +#: guix-git/doc/guix.texi:8315 msgid "This variable is exported by @code{(guix build-system dune)}. It supports builds of packages using @uref{https://dune.build/, Dune}, a build tool for the OCaml programming language. It is implemented as an extension of the @code{ocaml-build-system} which is described below. As such, the @code{#:ocaml} and @code{#:findlib} parameters can be passed to this build system." msgstr "Diese Variable wird vom Modul @code{(guix build-system dune)} exportiert. Sie unterstützt es, Pakete mit @uref{https://dune.build/, Dune} zu erstellen, einem Erstellungswerkzeug für die Programmiersprache OCaml, und ist als Erweiterung des unten beschriebenen OCaml-Erstellungssystems @code{ocaml-build-system} implementiert. Als solche können auch die Parameter @code{#:ocaml} und @code{#:findlib} an dieses Erstellungssystem übergeben werden." #. type: defvr -#: guix-git/doc/guix.texi:8261 +#: guix-git/doc/guix.texi:8319 msgid "It automatically adds the @code{dune} package to the set of inputs. Which package is used can be specified with the @code{#:dune} parameter." msgstr "Das Erstellungssystem fügt automatisch das Paket @code{dune} zu den Eingaben hinzu. Welches Paket benutzt wird, kann mit dem Parameter @code{#:dune} geändert werden." #. type: defvr -#: guix-git/doc/guix.texi:8265 +#: guix-git/doc/guix.texi:8323 msgid "There is no @code{configure} phase because dune packages typically don't need to be configured. The @code{#:build-flags} parameter is taken as a list of flags passed to the @code{dune} command during the build." msgstr "Es gibt keine @code{configure}-Phase, weil dune-Pakete typischerweise nicht konfiguriert werden müssen. Vom Parameter @code{#:build-flags} wird erwartet, dass es sich um eine Liste von Befehlszeilenoptionen handelt, die zur Erstellung an den @code{dune}-Befehl übergeben werden." #. type: defvr -#: guix-git/doc/guix.texi:8269 +#: guix-git/doc/guix.texi:8327 msgid "The @code{#:jbuild?} parameter can be passed to use the @code{jbuild} command instead of the more recent @code{dune} command while building a package. Its default value is @code{#f}." msgstr "Der Parameter @code{#:jbuild?} kann übergeben werden, um den Befehl @code{jbuild} anstelle des neueren @code{dune}-Befehls aufzurufen, um das Paket zu erstellen. Der Vorgabewert ist @code{#f}." #. type: defvr -#: guix-git/doc/guix.texi:8274 +#: guix-git/doc/guix.texi:8332 msgid "The @code{#:package} parameter can be passed to specify a package name, which is useful when a package contains multiple packages and you want to build only one of them. This is equivalent to passing the @code{-p} argument to @code{dune}." msgstr "Mit dem Parameter @code{#:package} kann ein Paketname angegeben werden, wenn im Paket mehrere Pakete enthalten sind und nur eines davon erstellt werden soll. Es ist äquivalent dazu, die Befehlszeilenoption @code{-p} an @code{dune} zu übergeben." #. type: defvr -#: guix-git/doc/guix.texi:8277 +#: guix-git/doc/guix.texi:8335 #, no-wrap msgid "{Scheme Variable} go-build-system" msgstr "{Scheme-Variable} go-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8282 +#: guix-git/doc/guix.texi:8340 msgid "This variable is exported by @code{(guix build-system go)}. It implements a build procedure for Go packages using the standard @url{https://golang.org/cmd/go/#hdr-Compile_packages_and_dependencies, Go build mechanisms}." msgstr "Diese Variable wird vom Modul @code{(guix build-system go)} exportiert. Mit ihr ist eine Erstellungsprozedur für Go-Pakete implementiert, die dem normalen @url{https://golang.org/cmd/go/#hdr-Compile_packages_and_dependencies, Go-Erstellungsmechanismus} entspricht." #. type: defvr -#: guix-git/doc/guix.texi:8293 +#: guix-git/doc/guix.texi:8351 msgid "The user is expected to provide a value for the key @code{#:import-path} and, in some cases, @code{#:unpack-path}. The @url{https://golang.org/doc/code.html#ImportPaths, import path} corresponds to the file system path expected by the package's build scripts and any referring packages, and provides a unique way to refer to a Go package. It is typically based on a combination of the package source code's remote URI and file system hierarchy structure. In some cases, you will need to unpack the package's source code to a different directory structure than the one indicated by the import path, and @code{#:unpack-path} should be used in such cases." msgstr "Beim Aufruf wird ein Wert für den Schlüssel @code{#:import-path} und manchmal auch für @code{#:unpack-path} erwartet. Der @url{https://golang.org/doc/code.html#ImportPaths, „import path“} entspricht dem Dateisystempfad, den die Erstellungsskripts des Pakets und darauf Bezug nehmende Pakete erwarten; durch ihn wird ein Go-Paket eindeutig bezeichnet. Typischerweise setzt er sich aus einer Kombination der entfernten URI des Paketquellcodes und der Dateisystemhierarchie zusammen. Manchmal ist es nötig, den Paketquellcode in ein anderes als das vom „import path“ bezeichnete Verzeichnis zu entpacken; diese andere Verzeichnisstruktur sollte dann als @code{#:unpack-path} angegeben werden." #. type: defvr -#: guix-git/doc/guix.texi:8298 +#: guix-git/doc/guix.texi:8356 msgid "Packages that provide Go libraries should install their source code into the built output. The key @code{#:install-source?}, which defaults to @code{#t}, controls whether or not the source code is installed. It can be set to @code{#f} for packages that only provide executable files." msgstr "Pakete, die Go-Bibliotheken zur Verfügung stellen, sollten ihren Quellcode auch in die Erstellungsausgabe installieren. Der Schlüssel @code{#:install-source?}, sein Vorgabewert ist @code{#t}, steuert, ob Quellcode installiert wird. Bei Paketen, die nur ausführbare Dateien liefern, kann der Wert auf @code{#f} gesetzt werden." #. type: defvr -#: guix-git/doc/guix.texi:8305 +#: guix-git/doc/guix.texi:8363 msgid "Packages can be cross-built, and if a specific architecture or operating system is desired then the keywords @code{#:goarch} and @code{#:goos} can be used to force the package to be built for that architecture and operating system. The combinations known to Go can be found @url{\"https://golang.org/doc/install/source#environment\", in their documentation}." msgstr "Cross-Erstellungen von Paketen sind möglich. Wenn für eine bestimmte Architektur oder ein bestimmtes Betriebssystem erstellt werden muss, kann man mit den Schlüsselwörtern @code{#:goarch} und @code{#:goos} erzwingen, dass das Paket für diese Architektur und dieses Betriebssystem erstellt wird. Die für Go nutzbaren Kombinationen sind @url{\"https://golang.org/doc/install/source#environment\", in der Go-Dokumentation} nachlesbar." #. type: defvr -#: guix-git/doc/guix.texi:8307 +#: guix-git/doc/guix.texi:8365 #, no-wrap msgid "{Scheme Variable} glib-or-gtk-build-system" msgstr "{Scheme-Variable} glib-or-gtk-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8310 +#: guix-git/doc/guix.texi:8368 msgid "This variable is exported by @code{(guix build-system glib-or-gtk)}. It is intended for use with packages making use of GLib or GTK+." msgstr "Diese Variable wird vom Modul @code{(guix build-system glib-or-gtk)} exportiert. Sie ist für Pakete gedacht, die GLib oder GTK benutzen." #. type: defvr -#: guix-git/doc/guix.texi:8313 +#: guix-git/doc/guix.texi:8371 msgid "This build system adds the following two phases to the ones defined by @code{gnu-build-system}:" msgstr "Dieses Erstellungssystem fügt die folgenden zwei Phasen zu denen von @code{gnu-build-system} hinzu:" #. type: item -#: guix-git/doc/guix.texi:8315 guix-git/doc/guix.texi:8799 +#: guix-git/doc/guix.texi:8373 guix-git/doc/guix.texi:8856 #, no-wrap msgid "glib-or-gtk-wrap" msgstr "glib-or-gtk-wrap" #. type: table -#: guix-git/doc/guix.texi:8322 +#: guix-git/doc/guix.texi:8380 msgid "The phase @code{glib-or-gtk-wrap} ensures that programs in @file{bin/} are able to find GLib ``schemas'' and @uref{https://developer.gnome.org/gtk3/stable/gtk-running.html, GTK+ modules}. This is achieved by wrapping the programs in launch scripts that appropriately set the @env{XDG_DATA_DIRS} and @env{GTK_PATH} environment variables." msgstr "Die Phase @code{glib-or-gtk-wrap} stellt sicher, dass Programme in @file{bin/} in der Lage sind, GLib-„Schemata“ und @uref{https://developer.gnome.org/gtk3/stable/gtk-running.html, GTK-Module} zu finden. Dazu wird für das Programm ein Wrapper-Skript erzeugt, dass das eigentliche Programm mit den richtigen Werten für die Umgebungsvariablen @env{XDG_DATA_DIRS} und @env{GTK_PATH} aufruft." #. type: table -#: guix-git/doc/guix.texi:8329 +#: guix-git/doc/guix.texi:8387 msgid "It is possible to exclude specific package outputs from that wrapping process by listing their names in the @code{#:glib-or-gtk-wrap-excluded-outputs} parameter. This is useful when an output is known not to contain any GLib or GTK+ binaries, and where wrapping would gratuitously add a dependency of that output on GLib and GTK+." msgstr "Es ist möglich, bestimmte Paketausgaben von diesem Wrapping-Prozess auszunehmen, indem Sie eine Liste ihrer Namen im Parameter @code{#:glib-or-gtk-wrap-excluded-outputs} angeben. Das ist nützlich, wenn man von einer Ausgabe weiß, dass sie keine Binärdateien enthält, die GLib oder GTK benutzen, und diese Ausgabe durch das Wrappen ohne Not eine weitere Abhängigkeit von GLib und GTK bekäme." #. type: item -#: guix-git/doc/guix.texi:8330 guix-git/doc/guix.texi:8803 +#: guix-git/doc/guix.texi:8388 guix-git/doc/guix.texi:8860 #, no-wrap msgid "glib-or-gtk-compile-schemas" msgstr "glib-or-gtk-compile-schemas" #. type: table -#: guix-git/doc/guix.texi:8338 +#: guix-git/doc/guix.texi:8396 msgid "The phase @code{glib-or-gtk-compile-schemas} makes sure that all @uref{https://developer.gnome.org/gio/stable/glib-compile-schemas.html, GSettings schemas} of GLib are compiled. Compilation is performed by the @command{glib-compile-schemas} program. It is provided by the package @code{glib:bin} which is automatically imported by the build system. The @code{glib} package providing @command{glib-compile-schemas} can be specified with the @code{#:glib} parameter." msgstr "Mit der Phase @code{glib-or-gtk-compile-schemas} wird sichergestellt, dass alle @uref{https://developer.gnome.org/gio/stable/glib-compile-schemas.html, GSettings-Schemata} für GLib kompiliert werden. Dazu wird das Programm @command{glib-compile-schemas} ausgeführt. Es kommt aus dem Paket @code{glib:bin}, was automatisch vom Erstellungssystem importiert wird. Welches @code{glib}-Paket dieses @command{glib-compile-schemas} bereitstellt, kann mit dem Parameter @code{#:glib} spezifiziert werden." #. type: defvr -#: guix-git/doc/guix.texi:8341 +#: guix-git/doc/guix.texi:8399 msgid "Both phases are executed after the @code{install} phase." msgstr "Beide Phasen finden nach der @code{install}-Phase statt." #. type: defvr -#: guix-git/doc/guix.texi:8343 +#: guix-git/doc/guix.texi:8401 #, no-wrap msgid "{Scheme Variable} guile-build-system" msgstr "{Scheme-Variable} guile-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8350 +#: guix-git/doc/guix.texi:8408 msgid "This build system is for Guile packages that consist exclusively of Scheme code and that are so lean that they don't even have a makefile, let alone a @file{configure} script. It compiles Scheme code using @command{guild compile} (@pxref{Compilation,,, guile, GNU Guile Reference Manual}) and installs the @file{.scm} and @file{.go} files in the right place. It also installs documentation." msgstr "Dieses Erstellungssystem ist für Guile-Pakete gedacht, die nur aus Scheme-Code bestehen und so schlicht sind, dass sie nicht einmal ein Makefile und erst recht keinen @file{configure}-Skript enthalten. Hierzu wird Scheme-Code mit @command{guild compile} kompiliert (siehe @ref{Compilation,,, guile, Referenzhandbuch zu GNU Guile}) und die @file{.scm}- und @file{.go}-Dateien an den richtigen Pfad installiert. Auch Dokumentation wird installiert." #. type: defvr -#: guix-git/doc/guix.texi:8353 +#: guix-git/doc/guix.texi:8411 msgid "This build system supports cross-compilation by using the @option{--target} option of @samp{guild compile}." msgstr "Das Erstellungssystem unterstützt Cross-Kompilieren durch die Befehlszeilenoption @option{--target} für @samp{guild compile}." #. type: defvr -#: guix-git/doc/guix.texi:8356 +#: guix-git/doc/guix.texi:8414 msgid "Packages built with @code{guile-build-system} must provide a Guile package in their @code{native-inputs} field." msgstr "Mit @code{guile-build-system} erstellte Pakete müssen ein Guile-Paket in ihrem @code{native-inputs}-Feld aufführen." #. type: defvr -#: guix-git/doc/guix.texi:8358 +#: guix-git/doc/guix.texi:8416 #, no-wrap msgid "{Scheme Variable} julia-build-system" msgstr "{Scheme-Variable} julia-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8365 +#: guix-git/doc/guix.texi:8423 msgid "This variable is exported by @code{(guix build-system julia)}. It implements the build procedure used by @uref{https://julialang.org/, julia} packages, which essentially is similar to running @samp{julia -e 'using Pkg; Pkg.add(package)'} in an environment where @env{JULIA_LOAD_PATH} contains the paths to all Julia package inputs. Tests are run by calling @code{/test/runtests.jl}." msgstr "Diese Variable wird vom Modul @code{(guix build-system julia)} exportiert. Sie entspricht einer Implementierung der durch @uref{https://julialang.org/, Julia-Pakete} genutzten Erstellungsprozedur und verhält sich im Prinzip so, wie wenn man @samp{julia -e 'using Pkg; Pkg.add(paket)'} in einer Umgebung ausführt, in der die Umgebungsvariable @env{JULIA_LOAD_PATH} die Pfade aller Julia-Pakete unter den Paketeingaben enthält. Tests werden durch Aufruf von @code{/test/runtests.jl} ausgeführt." #. type: defvr -#: guix-git/doc/guix.texi:8369 -msgid "The Julia package name is read from the file @file{Project.toml}. This value can be overridden by passing the argument @code{#:julia-package-name} (which must be correctly capitalized)." -msgstr "Der Name des Julia-Pakets wird aus der Datei @file{Project.toml} ausgelesen. Durch Angabe des Arguments @code{#:julia-package-name} kann ein anderer Wert verwendet werden (die Groß-/Kleinschreibung muss stimmen)." +#: guix-git/doc/guix.texi:8428 +msgid "The Julia package name and uuid is read from the file @file{Project.toml}. These values can be overridden by passing the argument @code{#:julia-package-name} (which must be correctly capitalized) or @code{#:julia-package-uuid}." +msgstr "Der Name des Julia-Pakets und seine UUID werden aus der Datei @file{Project.toml} ausgelesen. Durch Angabe des Arguments @code{#:julia-package-name} (die Groß-/Kleinschreibung muss stimmen) bzw.@: durch @code{#:julia-package-uuid} können andere Werte verwendet werden." #. type: defvr -#: guix-git/doc/guix.texi:8373 +#: guix-git/doc/guix.texi:8432 msgid "Julia packages usually manage their binary dependencies via @code{JLLWrappers.jl}, a Julia package that creates a module (named after the wrapped library followed by @code{_jll.jl}." msgstr "Julia-Pakete verwalten ihre Abhängigkeiten zu Binärdateien für gewöhnlich mittels @code{JLLWrappers.jl}, einem Julia-Paket, das ein Modul erzeugt (benannt nach der Bibliothek, die zugänglich gemacht wird, gefolgt von @code{_jll.jl})." #. type: defvr -#: guix-git/doc/guix.texi:8378 +#: guix-git/doc/guix.texi:8437 msgid "To add the binary path @code{_jll.jl} packages, you need to patch the files under @file{src/wrappers/}, replacing the call to the macro @code{JLLWrappers.@@generate_wrapper_header}, adding as a second argument containing the store path the binary." msgstr "Um die @code{_jll.jl}-Pakete mit den Pfaden zu Binärdateien hinzuzufügen, müssen Sie die Dateien in @file{src/wrappers/} patchen, um dem Aufruf an das Makro @code{JLLWrappers.@@generate_wrapper_header} noch ein zweites Argument mit dem Store-Pfad der Binärdatei mitzugeben." #. type: defvr -#: guix-git/doc/guix.texi:8382 +#: guix-git/doc/guix.texi:8441 msgid "As an example, in the MbedTLS Julia package, we add a build phase (@pxref{Build Phases}) to insert the absolute file name of the wrapped MbedTLS package:" msgstr "Zum Beispiel fügen wir für das MbedTLS-Julia-Paket eine Erstellungsphase hinzu (siehe @ref{Build Phases}), in der der absolute Dateiname des zugänglich gemachten MbedTLS-Pakets hinzugefügt wird:" #. type: lisp -#: guix-git/doc/guix.texi:8394 +#: guix-git/doc/guix.texi:8453 #, no-wrap msgid "" "(add-after 'unpack 'override-binary-path\n" @@ -16980,655 +17097,667 @@ msgstr "" " (find-files \"src/wrappers/\" \"\\\\.jl$\"))))\n" #. type: defvr -#: guix-git/doc/guix.texi:8402 -msgid "Some older packages that aren't using @file{Package.toml} yet, will require this file to be created, too. The function @code{julia-create-package-toml} helps creating the file. You need to pass the outputs and the source of the package, its name (the same as the @code{file-name} parameter), the package uuid, the package version, and a list of dependencies specified by their name and their uuid." -msgstr "Für manche ältere Pakete, die noch keine @file{Package.toml} benutzen, muss auch diese Datei erstellt werden. Die Funktion @code{julia-create-package-toml} hilft dabei. Sie müssen ihr nur die Ausgaben und die Quelle des Pakets übergeben sowie seinen Namen (derselbe wie beim Parameter @code{file-name}), die Paket-UUID, die Paketversion und eine Liste von Abhängigkeiten, jeweils angegeben über ihren Namen und ihre UUID." +#: guix-git/doc/guix.texi:8459 +msgid "Some older packages that aren't using @file{Project.toml} yet, will require this file to be created, too. It is internally done if the arguments @code{#:julia-package-name} and @code{#:julia-package-uuid} are provided." +msgstr "Für manche ältere Pakete, die noch keine @file{Project.toml} benutzen, muss auch diese Datei erstellt werden. Das geht intern vonstatten, sofern die Argumente @code{#:julia-package-name} und @code{#:julia-package-uuid} übergeben werden." #. type: defvr -#: guix-git/doc/guix.texi:8404 +#: guix-git/doc/guix.texi:8461 #, no-wrap msgid "{Scheme Variable} maven-build-system" msgstr "{Scheme-Variable} maven-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8411 +#: guix-git/doc/guix.texi:8468 msgid "This variable is exported by @code{(guix build-system maven)}. It implements a build procedure for @uref{https://maven.apache.org, Maven} packages. Maven is a dependency and lifecycle management tool for Java. A user of Maven specifies dependencies and plugins in a @file{pom.xml} file that Maven reads. When Maven does not have one of the dependencies or plugins in its repository, it will download them and use them to build the package." msgstr "Diese Variable wird vom Modul @code{(guix build-system maven)} exportiert. Darin wird eine Erstellungsprozedur für @uref{https://maven.apache.org, Maven-Pakete} implementiert. Maven ist ein Werkzeug zur Verwaltung der Abhängigkeiten und des „Lebenszyklus“ eines Java-Projekts. Um Maven zu benutzen, werden Abhängigkeiten und Plugins in einer Datei @file{pom.xml} angegeben, die Maven ausliest. Wenn Maven Abhängigkeiten oder Plugins fehlen, lädt es sie herunter und erstellt damit das Paket." #. type: defvr -#: guix-git/doc/guix.texi:8421 +#: guix-git/doc/guix.texi:8478 msgid "The maven build system ensures that maven will not try to download any dependency by running in offline mode. Maven will fail if a dependency is missing. Before running Maven, the @file{pom.xml} (and subprojects) are modified to specify the version of dependencies and plugins that match the versions available in the guix build environment. Dependencies and plugins must be installed in the fake maven repository at @file{lib/m2}, and are symlinked into a proper repository before maven is run. Maven is instructed to use that repository for the build and installs built artifacts there. Changed files are copied to the @file{lib/m2} directory of the package output." msgstr "Durch Guix’ Maven-Erstellungssystem wird gewährleistet, dass Maven im Offline-Modus läuft und somit nicht versucht, Abhängigkeiten herunterzuladen. Maven wird in einen Fehler laufen, wenn eine Abhängigkeit fehlt. Bevor Maven ausgeführt wird, wird der Inhalt der @file{pom.xml} (auch in Unterprojekten) so verändert, dass darin die diejenige Version von Abhängigkeiten und Plugins aufgeführt wird, die in Guix’ Erstellungsumgebung vorliegt. Abhängigkeiten und Plugins müssen in das vorgetäuschte Maven-Repository unter @file{lib/m2} installiert werden; bevor Maven ausgeführt wird, werden symbolische Verknüpfungen in ein echtes Repository hergestellt. Maven wird angewiesen, dieses Repository für die Erstellung zu verwenden und installiert erstellte Artefakte dorthin. Geänderte Dateien werden ins Verzeichnis @file{lib/m2} der Paketausgabe kopiert." #. type: defvr -#: guix-git/doc/guix.texi:8424 +#: guix-git/doc/guix.texi:8481 msgid "You can specify a @file{pom.xml} file with the @code{#:pom-file} argument, or let the build system use the default @file{pom.xml} file in the sources." msgstr "Sie können eine @file{pom.xml}-Datei über das Argument @code{#:pom-file} festlegen oder die vom Erstellungssystem vorgegebene @file{pom.xml}-Datei im Quellverzeichnis verwenden lassen." #. type: defvr -#: guix-git/doc/guix.texi:8430 +#: guix-git/doc/guix.texi:8487 msgid "In case you need to specify a dependency's version manually, you can use the @code{#:local-packages} argument. It takes an association list where the key is the groupId of the package and its value is an association list where the key is the artifactId of the package and its value is the version you want to override in the @file{pom.xml}." msgstr "Sollten Sie die Version einer Abhängigkeit manuell angeben müssen, können Sie dafür das Argument @code{#:local-packages} benutzen. Es nimmt eine assoziative Liste entgegen, deren Schlüssel jeweils die @code{groupId} des Pakets und deren Wert eine assoziative Liste ist, deren Schlüssel wiederum die @code{artifactId} des Pakets und deren Wert die einzusetzende Version in @file{pom.xml} ist." #. type: defvr -#: guix-git/doc/guix.texi:8436 +#: guix-git/doc/guix.texi:8493 msgid "Some packages use dependencies or plugins that are not useful at runtime nor at build time in Guix. You can alter the @file{pom.xml} file to remove them using the @code{#:exclude} argument. Its value is an association list where the key is the groupId of the plugin or dependency you want to remove, and the value is a list of artifactId you want to remove." msgstr "Manche Pakete haben Abhängigkeiten oder Plugins, die weder zur Laufzeit noch zur Erstellungszeit in Guix sinnvoll sind. Sie können sie entfernen, indem Sie das @code{#:exclude}-Argument verwenden, um die @file{pom.xml}-Datei zu bearbeiten. Sein Wert ist eine assoziative Liste, deren Schlüssel die @code{groupId} des Plugins oder der Abhängigkeit ist, die Sie entfernen möchten, und deren Wert eine Liste von zu entfernenden @code{artifactId}-Vorkommen angibt." #. type: defvr -#: guix-git/doc/guix.texi:8439 +#: guix-git/doc/guix.texi:8496 msgid "You can override the default @code{jdk} and @code{maven} packages with the corresponding argument, @code{#:jdk} and @code{#:maven}." msgstr "Sie können statt der vorgegebenen @code{jdk}- und @code{maven}-Pakete andere Pakete mit dem entsprechenden Argument, @code{#:jdk} bzw.@: @code{#:maven}, verwenden." #. type: defvr -#: guix-git/doc/guix.texi:8444 +#: guix-git/doc/guix.texi:8501 msgid "The @code{#:maven-plugins} argument is a list of maven plugins used during the build, with the same format as the @code{inputs} fields of the package declaration. Its default value is @code{(default-maven-plugins)} which is also exported." msgstr "Mit dem Argument @code{#:maven-plugins} geben Sie eine Liste von Maven-Plugins zur Nutzung während der Erstellung an, im gleichen Format wie das @code{inputs}-Feld der Paketdeklaration. Der Vorgabewert ist @code{(default-maven-plugins)}; diese Variable wird exportiert, falls Sie sie benutzen möchten." #. type: defvr -#: guix-git/doc/guix.texi:8446 +#: guix-git/doc/guix.texi:8503 #, no-wrap msgid "{Scheme Variable} minetest-mod-build-system" msgstr "{Scheme-Variable} minetest-mod-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8452 +#: guix-git/doc/guix.texi:8509 msgid "This variable is exported by @code{(guix build-system minetest)}. It implements a build procedure for @uref{https://www.minetest.net, Minetest} mods, which consists of copying Lua code, images and other resources to the location Minetest searches for mods. The build system also minimises PNG images and verifies that Minetest can load the mod without errors." msgstr "Diese Variable wird vom Modul @code{(guix build-system minetest)} exportiert. Mit ihr ist ein Erstellungssystem für Mods für @uref{https://www.minetest.net, Minetest} implementiert, was bedeutet, Lua-Code, Bilder und andere Ressourcen an den Ort zu kopieren, wo Minetest nach Mods sucht. Das Erstellungssystem verkleinert auch PNG-Bilder und prüft, dass Minetest die Mod fehlerfrei laden kann." #. type: defvr -#: guix-git/doc/guix.texi:8454 +#: guix-git/doc/guix.texi:8511 #, no-wrap msgid "{Scheme Variable} minify-build-system" msgstr "{Scheme-Variable} minify-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8457 +#: guix-git/doc/guix.texi:8514 msgid "This variable is exported by @code{(guix build-system minify)}. It implements a minification procedure for simple JavaScript packages." msgstr "Diese Variable wird vom Modul @code{(guix build-system minify)} exportiert. Sie implementiert eine Prozedur zur Minifikation einfacher JavaScript-Pakete." #. type: defvr -#: guix-git/doc/guix.texi:8463 +#: guix-git/doc/guix.texi:8520 msgid "It adds @code{uglify-js} to the set of inputs and uses it to compress all JavaScript files in the @file{src} directory. A different minifier package can be specified with the @code{#:uglify-js} parameter, but it is expected that the package writes the minified code to the standard output." msgstr "Es fügt @code{uglify-js} zur Menge der Eingaben hinzu und komprimiert damit alle JavaScript-Dateien im @file{src}-Verzeichnis. Ein anderes Programm zur Minifikation kann verwendet werden, indem es mit dem Parameter @code{#:uglify-js} angegeben wird; es wird erwartet, dass das angegebene Paket den minifizierten Code auf der Standardausgabe ausgibt." #. type: defvr -#: guix-git/doc/guix.texi:8467 +#: guix-git/doc/guix.texi:8524 msgid "When the input JavaScript files are not all located in the @file{src} directory, the parameter @code{#:javascript-files} can be used to specify a list of file names to feed to the minifier." msgstr "Wenn die Eingabe-JavaScript-Dateien nicht alle im @file{src}-Verzeichnis liegen, kann mit dem Parameter @code{#:javascript-files} eine Liste der Dateinamen übergeben werden, auf die das Minifikationsprogramm aufgerufen wird." #. type: defvr -#: guix-git/doc/guix.texi:8469 +#: guix-git/doc/guix.texi:8526 #, no-wrap msgid "{Scheme Variable} ocaml-build-system" msgstr "{Scheme-Variable} ocaml-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8475 +#: guix-git/doc/guix.texi:8532 msgid "This variable is exported by @code{(guix build-system ocaml)}. It implements a build procedure for @uref{https://ocaml.org, OCaml} packages, which consists of choosing the correct set of commands to run for each package. OCaml packages can expect many different commands to be run. This build system will try some of them." msgstr "Diese Variable wird vom Modul @code{(guix build-system ocaml)} exportiert. Mit ihr ist ein Erstellungssystem für @uref{https://ocaml.org, OCaml-Pakete} implementiert, was bedeutet, dass es die richtigen auszuführenden Befehle für das jeweilige Paket auswählt. OCaml-Pakete können sehr unterschiedliche Befehle erwarten. Dieses Erstellungssystem probiert manche davon durch." #. type: defvr -#: guix-git/doc/guix.texi:8485 +#: guix-git/doc/guix.texi:8542 msgid "When the package has a @file{setup.ml} file present at the top-level, it will run @code{ocaml setup.ml -configure}, @code{ocaml setup.ml -build} and @code{ocaml setup.ml -install}. The build system will assume that this file was generated by @uref{http://oasis.forge.ocamlcore.org/, OASIS} and will take care of setting the prefix and enabling tests if they are not disabled. You can pass configure and build flags with the @code{#:configure-flags} and @code{#:build-flags}. The @code{#:test-flags} key can be passed to change the set of flags used to enable tests. The @code{#:use-make?} key can be used to bypass this system in the build and install phases." msgstr "Wenn im Paket eine Datei @file{setup.ml} auf oberster Ebene vorhanden ist, wird @code{ocaml setup.ml -configure}, @code{ocaml setup.ml -build} und @code{ocaml setup.ml -install} ausgeführt. Das Erstellungssystem wird annehmen, dass die Datei durch @uref{http://oasis.forge.ocamlcore.org/, OASIS} erzeugt wurde, und wird das Präfix setzen und Tests aktivieren, wenn diese nicht abgeschaltet wurden. Sie können Befehlszeilenoptionen zum Konfigurieren und Erstellen mit den Parametern @code{#:configure-flags} und @code{#:build-flags} übergeben. Der Schlüssel @code{#:test-flags} kann übergeben werden, um die Befehlszeilenoptionen zu ändern, mit denen die Tests aktiviert werden. Mit dem Parameter @code{#:use-make?} kann dieses Erstellungssystem für die build- und install-Phasen abgeschaltet werden." #. type: defvr -#: guix-git/doc/guix.texi:8490 +#: guix-git/doc/guix.texi:8547 msgid "When the package has a @file{configure} file, it is assumed that it is a hand-made configure script that requires a different argument format than in the @code{gnu-build-system}. You can add more flags with the @code{#:configure-flags} key." msgstr "Verfügt das Paket über eine @file{configure}-Datei, wird angenommen, dass diese von Hand geschrieben wurde mit einem anderen Format für Argumente als bei einem Skript des @code{gnu-build-system}. Sie können weitere Befehlszeilenoptionen mit dem Schlüssel @code{#:configure-flags} hinzufügen." #. type: defvr -#: guix-git/doc/guix.texi:8494 +#: guix-git/doc/guix.texi:8551 msgid "When the package has a @file{Makefile} file (or @code{#:use-make?} is @code{#t}), it will be used and more flags can be passed to the build and install phases with the @code{#:make-flags} key." msgstr "Falls dem Paket ein @file{Makefile} beiliegt (oder @code{#:use-make?} auf @code{#t} gesetzt wurde), wird dieses benutzt und weitere Befehlszeilenoptionen können mit dem Schlüssel @code{#:make-flags} zu den build- und install-Phasen hinzugefügt werden." #. type: defvr -#: guix-git/doc/guix.texi:8502 +#: guix-git/doc/guix.texi:8559 msgid "Finally, some packages do not have these files and use a somewhat standard location for its build system. In that case, the build system will run @code{ocaml pkg/pkg.ml} or @code{ocaml pkg/build.ml} and take care of providing the path to the required findlib module. Additional flags can be passed via the @code{#:build-flags} key. Install is taken care of by @command{opam-installer}. In this case, the @code{opam} package must be added to the @code{native-inputs} field of the package definition." msgstr "Letztlich gibt es in manchen Pakete keine solchen Dateien, sie halten sich aber an bestimmte Konventionen, wo ihr eigenes Erstellungssystem zu finden ist. In diesem Fall führt Guix’ OCaml-Erstellungssystem @code{ocaml pkg/pkg.ml} oder @code{ocaml pkg/build.ml} aus und kümmert sich darum, dass der Pfad zu dem benötigten findlib-Modul passt. Weitere Befehlszeilenoptionen können über den Schlüssel @code{#:build-flags} übergeben werden. Um die Installation kümmert sich @command{opam-installer}. In diesem Fall muss das @code{opam}-Paket im @code{native-inputs}-Feld der Paketdefinition stehen." #. type: defvr -#: guix-git/doc/guix.texi:8510 +#: guix-git/doc/guix.texi:8567 msgid "Note that most OCaml packages assume they will be installed in the same directory as OCaml, which is not what we want in guix. In particular, they will install @file{.so} files in their module's directory, which is usually fine because it is in the OCaml compiler directory. In guix though, these libraries cannot be found and we use @env{CAML_LD_LIBRARY_PATH}. This variable points to @file{lib/ocaml/site-lib/stubslibs} and this is where @file{.so} libraries should be installed." msgstr "Beachten Sie, dass die meisten OCaml-Pakete davon ausgehen, dass sie in dasselbe Verzeichnis wie OCaml selbst installiert werden, was wir in Guix aber nicht so haben wollen. Solche Pakete installieren ihre @file{.so}-Dateien in das Verzeichnis ihres Moduls, was für die meisten anderen Einrichtungen funktioniert, weil es im OCaml-Compilerverzeichnis liegt. Jedoch können so in Guix die Bibliotheken nicht gefunden werden, deswegen benutzen wir @env{CAML_LD_LIBRARY_PATH}. Diese Umgebungsvariable zeigt auf @file{lib/ocaml/site-lib/stubslibs} und dorthin sollten @file{.so}-Bibliotheken installiert werden." #. type: defvr -#: guix-git/doc/guix.texi:8512 +#: guix-git/doc/guix.texi:8569 #, no-wrap msgid "{Scheme Variable} python-build-system" msgstr "{Scheme-Variable} python-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8517 +#: guix-git/doc/guix.texi:8574 msgid "This variable is exported by @code{(guix build-system python)}. It implements the more or less standard build procedure used by Python packages, which consists in running @code{python setup.py build} and then @code{python setup.py install --prefix=/gnu/store/@dots{}}." msgstr "Diese Variable wird vom Modul @code{(guix build-system python)} exportiert. Sie implementiert mehr oder weniger die konventionelle Erstellungsprozedur, wie sie für Python-Pakete üblich ist, d.h.@: erst wird @code{python setup.py build} ausgeführt und dann @code{python setup.py install --prefix=/gnu/store/…}." #. type: defvr -#: guix-git/doc/guix.texi:8522 +#: guix-git/doc/guix.texi:8579 msgid "For packages that install stand-alone Python programs under @code{bin/}, it takes care of wrapping these programs so that their @env{GUIX_PYTHONPATH} environment variable points to all the Python libraries they depend on." msgstr "Für Pakete, die eigenständige Python-Programme nach @code{bin/} installieren, sorgt dieses Erstellungssystem dafür, dass die Programme in ein Wrapper-Skript verpackt werden, welches die eigentlichen Programme mit einer Umgebungsvariablen @env{GUIX_PYTHONPATH} aufruft, die alle Python-Bibliotheken auflistet, von denen die Programme abhängen." #. type: defvr -#: guix-git/doc/guix.texi:8528 +#: guix-git/doc/guix.texi:8585 msgid "Which Python package is used to perform the build can be specified with the @code{#:python} parameter. This is a useful way to force a package to be built for a specific version of the Python interpreter, which might be necessary if the package is only compatible with a single interpreter version." msgstr "Welches Python-Paket benutzt wird, um die Erstellung durchzuführen, kann mit dem Parameter @code{#:python} bestimmt werden. Das ist nützlich, wenn wir erzwingen wollen, dass ein Paket mit einer bestimmten Version des Python-Interpretierers arbeitet. Das kann nötig sein, wenn das Programm nur mit einer einzigen Interpretiererversion kompatibel ist." #. type: defvr -#: guix-git/doc/guix.texi:8533 +#: guix-git/doc/guix.texi:8590 msgid "By default guix calls @code{setup.py} under control of @code{setuptools}, much like @command{pip} does. Some packages are not compatible with setuptools (and pip), thus you can disable this by setting the @code{#:use-setuptools?} parameter to @code{#f}." msgstr "Standardmäßig ruft Guix @code{setup.py} auf, was zu @code{setuptools} gehört, ähnlich wie es auch @command{pip} tut. Manche Pakete sind mit setuptools (und pip) inkompatibel, deswegen können Sie diese Einstellung abschalten, indem Sie den Parameter @code{#:use-setuptools?} auf @code{#f} setzen." #. type: defvr -#: guix-git/doc/guix.texi:8539 +#: guix-git/doc/guix.texi:8596 msgid "If a @code{\"python\"} output is available, the package is installed into it instead of the default @code{\"out\"} output. This is useful for packages that include a Python package as only a part of the software, and thus want to combine the phases of @code{python-build-system} with another build system. Python bindings are a common usecase." msgstr "Wenn eine der Ausgaben @code{\"python\"} heißt, wird das Paket dort hinein installiert und @emph{nicht} in die vorgegebene Ausgabe @code{\"out\"}. Das ist für Pakete gedacht, bei denen ein Python-Paket nur einen Teil der Software ausmacht, man also die Phasen des @code{python-build-system} mit einem anderen Erstellungssystem zusammen verwenden wollen könnte. Oft kann man das bei Anbindungen für Python gebrauchen." #. type: defvr -#: guix-git/doc/guix.texi:8542 +#: guix-git/doc/guix.texi:8599 #, no-wrap msgid "{Scheme Variable} perl-build-system" msgstr "{Scheme-Variable} perl-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8554 +#: guix-git/doc/guix.texi:8611 msgid "This variable is exported by @code{(guix build-system perl)}. It implements the standard build procedure for Perl packages, which either consists in running @code{perl Build.PL --prefix=/gnu/store/@dots{}}, followed by @code{Build} and @code{Build install}; or in running @code{perl Makefile.PL PREFIX=/gnu/store/@dots{}}, followed by @code{make} and @code{make install}, depending on which of @code{Build.PL} or @code{Makefile.PL} is present in the package distribution. Preference is given to the former if both @code{Build.PL} and @code{Makefile.PL} exist in the package distribution. This preference can be reversed by specifying @code{#t} for the @code{#:make-maker?} parameter." msgstr "Diese Variable wird vom Modul @code{(guix build-system perl)} exportiert. Mit ihr wird die Standard-Erstellungsprozedur für Perl-Pakete implementiert, welche entweder darin besteht, @code{perl Build.PL --prefix=/gnu/store/…} gefolgt von @code{Build} und @code{Build install} auszuführen, oder @code{perl Makefile.PL PREFIX=/gnu/store/…} gefolgt von @code{make} und @code{make install} auszuführen, je nachdem, ob eine Datei @code{Build.PL} oder eine Datei @code{Makefile.PL} in der Paketdistribution vorliegt. Den Vorrang hat erstere, wenn sowohl @code{Build.PL} als auch @code{Makefile.PL} in der Paketdistribution existieren. Der Vorrang kann umgekehrt werden, indem @code{#t} für den Parameter @code{#:make-maker?} angegeben wird." #. type: defvr -#: guix-git/doc/guix.texi:8558 +#: guix-git/doc/guix.texi:8615 msgid "The initial @code{perl Makefile.PL} or @code{perl Build.PL} invocation passes flags specified by the @code{#:make-maker-flags} or @code{#:module-build-flags} parameter, respectively." msgstr "Der erste Aufruf von @code{perl Makefile.PL} oder @code{perl Build.PL} übergibt die im Parameter @code{#:make-maker-flags} bzw. @code{#:module-build-flags} angegebenen Befehlszeilenoptionen, je nachdem, was verwendet wird." #. type: defvr -#: guix-git/doc/guix.texi:8560 +#: guix-git/doc/guix.texi:8617 msgid "Which Perl package is used can be specified with @code{#:perl}." msgstr "Welches Perl-Paket dafür benutzt wird, kann mit @code{#:perl} angegeben werden." #. type: defvr -#: guix-git/doc/guix.texi:8562 +#: guix-git/doc/guix.texi:8619 #, no-wrap msgid "{Scheme Variable} renpy-build-system" msgstr "{Scheme-Variable} renpy-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8566 +#: guix-git/doc/guix.texi:8623 msgid "This variable is exported by @code{(guix build-system renpy)}. It implements the more or less standard build procedure used by Ren'py games, which consists of loading @code{#:game} once, thereby creating bytecode for it." msgstr "Diese Variable wird vom Modul @code{(guix build-system renpy)} exportiert. Sie implementiert mehr oder weniger die herkömmliche Erstellungsprozedur, die für Ren’py-Spiele benutzt wird. Das bedeutet, das @code{#:game} wird einmal geladen, wodurch Bytecode dafür erzeugt wird." #. type: defvr -#: guix-git/doc/guix.texi:8569 +#: guix-git/doc/guix.texi:8626 msgid "It further creates a wrapper script in @code{bin/} and a desktop entry in @code{share/applications}, both of which can be used to launch the game." msgstr "Des Weiteren wird ein Wrapper-Skript in @code{bin/} und eine *.desktop-Datei in @code{share/applications} erzeugt. Mit beiden davon kann man das Spiel starten." #. type: defvr -#: guix-git/doc/guix.texi:8573 +#: guix-git/doc/guix.texi:8630 msgid "Which Ren'py package is used can be specified with @code{#:renpy}. Games can also be installed in outputs other than ``out'' by using @code{#:output}." msgstr "Welches Ren’py-Paket benutzt wird, gibt man mit @code{#:renpy} an. Spiele können auch in andere Ausgaben als in „out“ installiert werden, indem man @code{#:output} benutzt." #. type: defvr -#: guix-git/doc/guix.texi:8575 +#: guix-git/doc/guix.texi:8632 #, no-wrap msgid "{Scheme Variable} qt-build-system" msgstr "{Scheme-Variable} qt-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8578 +#: guix-git/doc/guix.texi:8635 msgid "This variable is exported by @code{(guix build-system qt)}. It is intended for use with applications using Qt or KDE." msgstr "Diese Variable wird vom Modul @code{(guix build-system qt)} exportiert. Sie ist für Anwendungen gedacht, die Qt oder KDE benutzen." #. type: defvr -#: guix-git/doc/guix.texi:8581 +#: guix-git/doc/guix.texi:8638 msgid "This build system adds the following two phases to the ones defined by @code{cmake-build-system}:" msgstr "Dieses Erstellungssystem fügt die folgenden zwei Phasen zu denen von @code{cmake-build-system} hinzu:" #. type: item -#: guix-git/doc/guix.texi:8583 +#: guix-git/doc/guix.texi:8640 #, no-wrap msgid "check-setup" msgstr "check-setup" #. type: table -#: guix-git/doc/guix.texi:8590 +#: guix-git/doc/guix.texi:8647 msgid "The phase @code{check-setup} prepares the environment for running the checks as commonly used by Qt test programs. For now this only sets some environment variables: @code{QT_QPA_PLATFORM=offscreen}, @code{DBUS_FATAL_WARNINGS=0} and @code{CTEST_OUTPUT_ON_FAILURE=1}." msgstr "Die Phase @code{check-setup} bereitet die Umgebung für Überprüfungen vor, wie sie von Qt-Test-Programmen üblicherweise benutzt werden. Zurzeit werden nur manche Umgebungsvariable gesetzt: @code{QT_QPA_PLATFORM=offscreen}, @code{DBUS_FATAL_WARNINGS=0} und @code{CTEST_OUTPUT_ON_FAILURE=1}." #. type: table -#: guix-git/doc/guix.texi:8593 +#: guix-git/doc/guix.texi:8650 msgid "This phase is added before the @code{check} phase. It's a separate phase to ease adjusting if necessary." msgstr "Diese Phase wird vor der @code{check}-Phase hinzugefügt. Es handelt sich um eine eigene Phase, die nach Bedarf angepasst werden kann." #. type: item -#: guix-git/doc/guix.texi:8594 +#: guix-git/doc/guix.texi:8651 #, no-wrap msgid "qt-wrap" msgstr "qt-wrap" #. type: table -#: guix-git/doc/guix.texi:8600 +#: guix-git/doc/guix.texi:8657 msgid "The phase @code{qt-wrap} searches for Qt5 plugin paths, QML paths and some XDG in the inputs and output. In case some path is found, all programs in the output's @file{bin/}, @file{sbin/}, @file{libexec/} and @file{lib/libexec/} directories are wrapped in scripts defining the necessary environment variables." msgstr "In der Phase @code{qt-wrap} wird nach Qt5-Plugin-Pfaden, QML-Pfaden und manchen XDG-Daten in den Ein- und Ausgaben gesucht. Wenn solch ein Pfad gefunden wird, werden für alle Programme in den Verzeichnissen @file{bin/}, @file{sbin/}, @file{libexec/} und @file{lib/libexec/} in der Ausgabe Wrapper-Skripte erzeugt, die die nötigen Umgebungsvariablen definieren." #. type: table -#: guix-git/doc/guix.texi:8606 +#: guix-git/doc/guix.texi:8663 msgid "It is possible to exclude specific package outputs from that wrapping process by listing their names in the @code{#:qt-wrap-excluded-outputs} parameter. This is useful when an output is known not to contain any Qt binaries, and where wrapping would gratuitously add a dependency of that output on Qt, KDE, or such." msgstr "Es ist möglich, bestimmte Paketausgaben von diesem Wrapping-Prozess auszunehmen, indem Sie eine Liste ihrer Namen im Parameter @code{#:qt-wrap-excluded-outputs} angeben. Das ist nützlich, wenn man von einer Ausgabe weiß, dass sie keine Qt-Binärdateien enthält, und diese Ausgabe durch das Wrappen ohne Not eine weitere Abhängigkeit von Qt, KDE oder Ähnlichem bekäme." #. type: table -#: guix-git/doc/guix.texi:8608 +#: guix-git/doc/guix.texi:8665 msgid "This phase is added after the @code{install} phase." msgstr "Diese Phase wird nach der @code{install}-Phase hinzugefügt." #. type: defvr -#: guix-git/doc/guix.texi:8611 +#: guix-git/doc/guix.texi:8668 #, no-wrap msgid "{Scheme Variable} r-build-system" msgstr "{Scheme-Variable} r-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8619 +#: guix-git/doc/guix.texi:8676 msgid "This variable is exported by @code{(guix build-system r)}. It implements the build procedure used by @uref{https://r-project.org, R} packages, which essentially is little more than running @samp{R CMD INSTALL --library=/gnu/store/@dots{}} in an environment where @env{R_LIBS_SITE} contains the paths to all R package inputs. Tests are run after installation using the R function @code{tools::testInstalledPackage}." msgstr "Diese Variable wird vom Modul @code{(guix build-system r)} exportiert. Sie entspricht einer Implementierung der durch @uref{https://r-project.org, R-Pakete} genutzten Erstellungsprozedur, die wenig mehr tut, als @samp{R CMD INSTALL --library=/gnu/store/…} in einer Umgebung auszuführen, in der die Umgebungsvariable @env{R_LIBS_SITE} die Pfade aller R-Pakete unter den Paketeingaben enthält. Tests werden nach der Installation mit der R-Funktion @code{tools::testInstalledPackage} ausgeführt." #. type: defvr -#: guix-git/doc/guix.texi:8621 +#: guix-git/doc/guix.texi:8678 #, no-wrap msgid "{Scheme Variable} rakudo-build-system" msgstr "{Scheme-Variable} rakudo-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8629 +#: guix-git/doc/guix.texi:8686 msgid "This variable is exported by @code{(guix build-system rakudo)}. It implements the build procedure used by @uref{https://rakudo.org/, Rakudo} for @uref{https://perl6.org/, Perl6} packages. It installs the package to @code{/gnu/store/@dots{}/NAME-VERSION/share/perl6} and installs the binaries, library files and the resources, as well as wrap the files under the @code{bin/} directory. Tests can be skipped by passing @code{#f} to the @code{tests?} parameter." msgstr "Diese Variable wird vom Modul @code{(guix build-system rakudo)} exportiert. Sie implementiert die Erstellungsprozedur, die von @uref{https://rakudo.org/, Rakudo} für @uref{https://perl6.org/, Perl6-Pakete} benutzt wird. Pakete werden ins Verzeichnis @code{/gnu/store/…/NAME-VERSION/share/perl6} abgelegt und Binärdateien, Bibliotheksdateien und Ressourcen werden installiert, zudem werden die Dateien im Verzeichnis @code{bin/} in Wrapper-Skripte verpackt. Tests können übersprungen werden, indem man @code{#f} im Parameter @code{tests?} übergibt." #. type: defvr -#: guix-git/doc/guix.texi:8637 +#: guix-git/doc/guix.texi:8694 msgid "Which rakudo package is used can be specified with @code{rakudo}. Which perl6-tap-harness package used for the tests can be specified with @code{#:prove6} or removed by passing @code{#f} to the @code{with-prove6?} parameter. Which perl6-zef package used for tests and installing can be specified with @code{#:zef} or removed by passing @code{#f} to the @code{with-zef?} parameter." msgstr "Welches rakudo-Paket benutzt werden soll, kann mit dem Parameter @code{rakudo} angegeben werden. Das perl6-tap-harness-Paket, das für die Tests benutzt wird, kann mit @code{#:prove6} ausgewählt werden; es kann auch entfernt werden, indem man @code{#f} für den Parameter @code{with-prove6?} übergibt. Welches perl6-zef-Paket für Tests und Installation verwendet wird, kann mit dem Parameter @code{#:zef} angegeben werden; es kann auch entfernt werden, indem man @code{#f} für den Parameter @code{with-zef?} übergibt." #. type: defvr -#: guix-git/doc/guix.texi:8639 +#: guix-git/doc/guix.texi:8696 #, no-wrap msgid "{Scheme Variable} texlive-build-system" msgstr "{Scheme-Variable} texlive-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8644 +#: guix-git/doc/guix.texi:8701 msgid "This variable is exported by @code{(guix build-system texlive)}. It is used to build TeX packages in batch mode with a specified engine. The build system sets the @env{TEXINPUTS} variable to find all TeX source files in the inputs." msgstr "Diese Variable wird vom Modul @code{(guix build-system texlive)} exportiert. Mit ihr werden TeX-Pakete in Stapelverarbeitung („batch mode“) mit der angegebenen Engine erstellt. Das Erstellungssystem setzt die Variable @env{TEXINPUTS} so, dass alle TeX-Quelldateien unter den Eingaben gefunden werden können." #. type: defvr -#: guix-git/doc/guix.texi:8653 +#: guix-git/doc/guix.texi:8710 msgid "By default it runs @code{luatex} on all files ending on @code{ins}. A different engine and format can be specified with the @code{#:tex-format} argument. Different build targets can be specified with the @code{#:build-targets} argument, which expects a list of file names. The build system adds only @code{texlive-bin} and @code{texlive-latex-base} (both from @code{(gnu packages tex}) to the inputs. Both can be overridden with the arguments @code{#:texlive-bin} and @code{#:texlive-latex-base}, respectively." msgstr "Standardmäßig wird @code{luatex} auf allen Dateien mit der Dateiendung @code{ins} ausgeführt. Eine andere Engine oder ein anderes Format kann mit dem Argument @code{#:tex-format} angegeben werden. Verschiedene Erstellungsziele können mit dem Argument @code{#:build-targets} festgelegt werden, das eine Liste von Dateinamen erwartet. Das Erstellungssystem fügt nur @code{texlive-bin} und @code{texlive-latex-base} zu den Eingaben hinzu (beide kommen aus dem Modul @code{(gnu packages tex}). Für beide kann das zu benutzende Paket jeweils mit den Argumenten @code{#:texlive-bin} oder @code{#:texlive-latex-base} geändert werden." #. type: defvr -#: guix-git/doc/guix.texi:8656 +#: guix-git/doc/guix.texi:8713 msgid "The @code{#:tex-directory} parameter tells the build system where to install the built files under the texmf tree." msgstr "Der Parameter @code{#:tex-directory} sagt dem Erstellungssystem, wohin die installierten Dateien im texmf-Verzeichnisbaum installiert werden sollen." #. type: defvr -#: guix-git/doc/guix.texi:8658 +#: guix-git/doc/guix.texi:8715 #, no-wrap msgid "{Scheme Variable} ruby-build-system" msgstr "{Scheme-Variable} ruby-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8662 +#: guix-git/doc/guix.texi:8719 msgid "This variable is exported by @code{(guix build-system ruby)}. It implements the RubyGems build procedure used by Ruby packages, which involves running @code{gem build} followed by @code{gem install}." msgstr "Diese Variable wird vom Modul @code{(guix build-system ruby)} exportiert. Sie steht für eine Implementierung der RubyGems-Erstellungsprozedur, die für Ruby-Pakete benutzt wird, wobei @code{gem build} gefolgt von @code{gem install} ausgeführt wird." #. type: defvr -#: guix-git/doc/guix.texi:8670 +#: guix-git/doc/guix.texi:8727 msgid "The @code{source} field of a package that uses this build system typically references a gem archive, since this is the format that Ruby developers use when releasing their software. The build system unpacks the gem archive, potentially patches the source, runs the test suite, repackages the gem, and installs it. Additionally, directories and tarballs may be referenced to allow building unreleased gems from Git or a traditional source release tarball." msgstr "Das @code{source}-Feld eines Pakets, das dieses Erstellungssystem benutzt, verweist typischerweise auf ein Gem-Archiv, weil Ruby-Entwickler dieses Format benutzen, wenn sie ihre Software veröffentlichen. Das Erstellungssystem entpackt das Gem-Archiv, spielt eventuell Patches für den Quellcode ein, führt die Tests aus, verpackt alles wieder in ein Gem-Archiv und installiert dieses. Neben Gem-Archiven darf das Feld auch auf Verzeichnisse und Tarballs verweisen, damit es auch möglich ist, unveröffentlichte Gems aus einem Git-Repository oder traditionelle Quellcode-Veröffentlichungen zu benutzen." #. type: defvr -#: guix-git/doc/guix.texi:8674 +#: guix-git/doc/guix.texi:8731 msgid "Which Ruby package is used can be specified with the @code{#:ruby} parameter. A list of additional flags to be passed to the @command{gem} command can be specified with the @code{#:gem-flags} parameter." msgstr "Welches Ruby-Paket benutzt werden soll, kann mit dem Parameter @code{#:ruby} festgelegt werden. Eine Liste zusätzlicher Befehlszeilenoptionen für den Aufruf des @command{gem}-Befehls kann mit dem Parameter @code{#:gem-flags} angegeben werden." #. type: defvr -#: guix-git/doc/guix.texi:8676 +#: guix-git/doc/guix.texi:8733 #, no-wrap msgid "{Scheme Variable} waf-build-system" msgstr "{Scheme-Variable} waf-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8682 +#: guix-git/doc/guix.texi:8739 msgid "This variable is exported by @code{(guix build-system waf)}. It implements a build procedure around the @code{waf} script. The common phases---@code{configure}, @code{build}, and @code{install}---are implemented by passing their names as arguments to the @code{waf} script." msgstr "Diese Variable wird durch das Modul @code{(guix build-system waf)} exportiert. Damit ist eine Erstellungsprozedur rund um das @code{waf}-Skript implementiert. Die üblichen Phasen@tie{}— @code{configure}, @code{build} und @code{install}@tie{}— sind implementiert, indem deren Namen als Argumente an das @code{waf}-Skript übergeben werden." #. type: defvr -#: guix-git/doc/guix.texi:8686 +#: guix-git/doc/guix.texi:8743 msgid "The @code{waf} script is executed by the Python interpreter. Which Python package is used to run the script can be specified with the @code{#:python} parameter." msgstr "Das @code{waf}-Skript wird vom Python-Interpetierer ausgeführt. Mit welchem Python-Paket das Skript ausgeführt werden soll, kann mit dem Parameter @code{#:python} angegeben werden." #. type: defvr -#: guix-git/doc/guix.texi:8688 +#: guix-git/doc/guix.texi:8745 #, no-wrap msgid "{Scheme Variable} scons-build-system" msgstr "{Scheme-Variable} scons-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8694 +#: guix-git/doc/guix.texi:8751 msgid "This variable is exported by @code{(guix build-system scons)}. It implements the build procedure used by the SCons software construction tool. This build system runs @code{scons} to build the package, @code{scons test} to run tests, and then @code{scons install} to install the package." msgstr "Diese Variable wird vom Modul @code{(guix build-system scons)} exportiert. Sie steht für eine Implementierung der Erstellungsprozedur, die das SCons-Softwarekonstruktionswerkzeug („software construction tool“) benutzt. Das Erstellungssystem führt @code{scons} aus, um das Paket zu erstellen, führt mit @code{scons test} Tests aus und benutzt @code{scons install}, um das Paket zu installieren." #. type: defvr -#: guix-git/doc/guix.texi:8701 +#: guix-git/doc/guix.texi:8758 msgid "Additional flags to be passed to @code{scons} can be specified with the @code{#:scons-flags} parameter. The default build and install targets can be overridden with @code{#:build-targets} and @code{#:install-targets} respectively. The version of Python used to run SCons can be specified by selecting the appropriate SCons package with the @code{#:scons} parameter." msgstr "Zusätzliche Optionen, die an @code{scons} übergeben werden sollen, können mit dem Parameter @code{#:scons-flags} angegeben werden. Die voreingestellten Erstellungs- und Installationsziele können jeweils durch @code{#:build-targets} und @code{#:install-targets} ersetzt werden. Die Python-Version, die benutzt werden soll, um SCons auszuführen, kann festgelegt werden, indem das passende SCons-Paket mit dem Parameter @code{#:scons} ausgewählt wird." #. type: defvr -#: guix-git/doc/guix.texi:8703 +#: guix-git/doc/guix.texi:8760 #, no-wrap msgid "{Scheme Variable} haskell-build-system" msgstr "{Scheme-Variable} haskell-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8717 +#: guix-git/doc/guix.texi:8774 msgid "This variable is exported by @code{(guix build-system haskell)}. It implements the Cabal build procedure used by Haskell packages, which involves running @code{runhaskell Setup.hs configure --prefix=/gnu/store/@dots{}} and @code{runhaskell Setup.hs build}. Instead of installing the package by running @code{runhaskell Setup.hs install}, to avoid trying to register libraries in the read-only compiler store directory, the build system uses @code{runhaskell Setup.hs copy}, followed by @code{runhaskell Setup.hs register}. In addition, the build system generates the package documentation by running @code{runhaskell Setup.hs haddock}, unless @code{#:haddock? #f} is passed. Optional Haddock parameters can be passed with the help of the @code{#:haddock-flags} parameter. If the file @code{Setup.hs} is not found, the build system looks for @code{Setup.lhs} instead." msgstr "Diese Variable wird vom Modul @code{(guix build-system haskell)} exportiert. Sie bietet Zugang zur Cabal-Erstellungsprozedur, die von Haskell-Paketen benutzt wird, was bedeutet, @code{runhaskell Setup.hs configure --prefix=/gnu/store/…} und @code{runhaskell Setup.hs build} auszuführen. Statt das Paket mit dem Befehl @code{runhaskell Setup.hs install} zu installieren, benutzt das Erstellungssystem @code{runhaskell Setup.hs copy} gefolgt von @code{runhaskell Setup.hs register}, um keine Bibliotheken im Store-Verzeichnis des Compilers zu speichern, auf dem keine Schreibberechtigung besteht. Zusätzlich generiert das Erstellungssystem Dokumentation durch Ausführen von @code{runhaskell Setup.hs haddock}, außer @code{#:haddock? #f} wurde übergeben. Optional können an Haddock Parameter mit Hilfe des Parameters @code{#:haddock-flags} übergeben werden. Wird die Datei @code{Setup.hs} nicht gefunden, sucht das Erstellungssystem stattdessen nach @code{Setup.lhs}." #. type: defvr -#: guix-git/doc/guix.texi:8720 +#: guix-git/doc/guix.texi:8777 msgid "Which Haskell compiler is used can be specified with the @code{#:haskell} parameter which defaults to @code{ghc}." msgstr "Welcher Haskell-Compiler benutzt werden soll, kann über den @code{#:haskell}-Parameter angegeben werden. Als Vorgabewert verwendet er @code{ghc}." #. type: defvr -#: guix-git/doc/guix.texi:8722 +#: guix-git/doc/guix.texi:8779 #, no-wrap msgid "{Scheme Variable} dub-build-system" msgstr "{Scheme-Variable} dub-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8727 +#: guix-git/doc/guix.texi:8784 msgid "This variable is exported by @code{(guix build-system dub)}. It implements the Dub build procedure used by D packages, which involves running @code{dub build} and @code{dub run}. Installation is done by copying the files manually." msgstr "Diese Variable wird vom Modul @code{(guix build-system dub)} exportiert. Sie verweist auf eine Implementierung des Dub-Erstellungssystems, das von D-Paketen benutzt wird. Dabei werden @code{dub build} und @code{dub run} ausgeführt. Die Installation wird durch manuelles Kopieren der Dateien durchgeführt." #. type: defvr -#: guix-git/doc/guix.texi:8730 +#: guix-git/doc/guix.texi:8787 msgid "Which D compiler is used can be specified with the @code{#:ldc} parameter which defaults to @code{ldc}." msgstr "Welcher D-Compiler benutzt wird, kann mit dem Parameter @code{#:ldc} festgelegt werden, was als Vorgabewert @code{ldc} benutzt." #. type: anchor{#1} -#: guix-git/doc/guix.texi:8733 +#: guix-git/doc/guix.texi:8790 msgid "emacs-build-system" msgstr "emacs-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8733 +#: guix-git/doc/guix.texi:8790 #, no-wrap msgid "{Scheme Variable} emacs-build-system" msgstr "{Scheme-Variable} emacs-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8737 +#: guix-git/doc/guix.texi:8794 msgid "This variable is exported by @code{(guix build-system emacs)}. It implements an installation procedure similar to the packaging system of Emacs itself (@pxref{Packages,,, emacs, The GNU Emacs Manual})." msgstr "Diese Variable wird vom Modul @code{(guix build-system emacs)} exportiert. Darin wird eine Installationsprozedur ähnlich der des Paketsystems von Emacs selbst implementiert (siehe @ref{Packages,,, emacs, The GNU Emacs Manual})." #. type: defvr -#: guix-git/doc/guix.texi:8743 +#: guix-git/doc/guix.texi:8800 msgid "It first creates the @code{@code{package}-autoloads.el} file, then it byte compiles all Emacs Lisp files. Differently from the Emacs packaging system, the Info documentation files are moved to the standard documentation directory and the @file{dir} file is deleted. The Elisp package files are installed directly under @file{share/emacs/site-lisp}." msgstr "Zunächst wird eine Datei @code{@code{Paket}-autoloads.el} erzeugt, dann werden alle Emacs-Lisp-Dateien zu Bytecode kompiliert. Anders als beim Emacs-Paketsystem werden die Info-Dokumentationsdateien in das Standardverzeichnis für Dokumentation verschoben und die Datei @file{dir} gelöscht. Die Dateien des Elisp-Pakets werden direkt in @file{share/emacs/site-lisp} installiert." #. type: defvr -#: guix-git/doc/guix.texi:8745 +#: guix-git/doc/guix.texi:8802 #, no-wrap msgid "{Scheme Variable} font-build-system" msgstr "{Scheme-Variable} font-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8751 +#: guix-git/doc/guix.texi:8808 msgid "This variable is exported by @code{(guix build-system font)}. It implements an installation procedure for font packages where upstream provides pre-compiled TrueType, OpenType, etc.@: font files that merely need to be copied into place. It copies font files to standard locations in the output directory." msgstr "Diese Variable wird vom Modul @code{(guix build-system font)} exportiert. Mit ihr steht eine Installationsprozedur für Schriftarten-Pakete zur Verfügung für vom Anbieter vorkompilierte TrueType-, OpenType- und andere Schriftartendateien, die nur an die richtige Stelle kopiert werden müssen. Dieses Erstellungssystem kopiert die Schriftartendateien an den Konventionen folgende Orte im Ausgabeverzeichnis." #. type: defvr -#: guix-git/doc/guix.texi:8753 +#: guix-git/doc/guix.texi:8810 #, no-wrap msgid "{Scheme Variable} meson-build-system" msgstr "{Scheme-Variable} meson-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8757 +#: guix-git/doc/guix.texi:8814 msgid "This variable is exported by @code{(guix build-system meson)}. It implements the build procedure for packages that use @url{https://mesonbuild.com, Meson} as their build system." msgstr "Diese Variable wird vom Modul @code{(guix build-system meson)} exportiert. Sie enthält die Erstellungsprozedur für Pakete, die @url{https://mesonbuild.com, Meson} als ihr Erstellungssystem benutzen." #. type: defvr -#: guix-git/doc/guix.texi:8761 +#: guix-git/doc/guix.texi:8818 msgid "It adds both Meson and @uref{https://ninja-build.org/, Ninja} to the set of inputs, and they can be changed with the parameters @code{#:meson} and @code{#:ninja} if needed." msgstr "Mit ihr werden sowohl Meson als auch @uref{https://ninja-build.org/, Ninja} zur Menge der Eingaben hinzugefügt; die Pakete dafür können mit den Parametern @code{#:meson} und @code{#:ninja} geändert werden, wenn nötig." #. type: defvr -#: guix-git/doc/guix.texi:8764 +#: guix-git/doc/guix.texi:8821 msgid "This build system is an extension of @code{gnu-build-system}, but with the following phases changed to some specific for Meson:" msgstr "Dieses Erstellungssystem ist eine Erweiterung für das @code{gnu-build-system}, aber mit Änderungen an den folgenden Phasen, die Meson-spezifisch sind:" #. type: item -#: guix-git/doc/guix.texi:8767 guix-git/doc/guix.texi:8818 -#: guix-git/doc/guix.texi:8886 +#: guix-git/doc/guix.texi:8824 guix-git/doc/guix.texi:8875 +#: guix-git/doc/guix.texi:8947 #, no-wrap msgid "configure" msgstr "configure" #. type: table -#: guix-git/doc/guix.texi:8772 +#: guix-git/doc/guix.texi:8829 msgid "The phase runs @code{meson} with the flags specified in @code{#:configure-flags}. The flag @option{--buildtype} is always set to @code{debugoptimized} unless something else is specified in @code{#:build-type}." msgstr "Diese Phase führt den @code{meson}-Befehl mit den in @code{#:configure-flags} angegebenen Befehlszeilenoptionen aus. Die Befehlszeilenoption @option{--build-type} wird immer auf @code{debugoptimized} gesetzt, solange nichts anderes mit dem Parameter @code{#:build-type} angegeben wurde." #. type: table -#: guix-git/doc/guix.texi:8776 +#: guix-git/doc/guix.texi:8833 msgid "The phase runs @code{ninja} to build the package in parallel by default, but this can be changed with @code{#:parallel-build?}." msgstr "Diese Phase ruft @code{ninja} auf, um das Paket standardmäßig parallel zu erstellen. Die Vorgabeeinstellung, dass parallel erstellt wird, kann verändert werden durch Setzen von @code{#:parallel-build?}." #. type: table -#: guix-git/doc/guix.texi:8782 +#: guix-git/doc/guix.texi:8839 msgid "The phase runs @samp{meson test} with a base set of options that cannot be overridden. This base set of options can be extended via the @code{#:test-options} argument, for example to select or skip a specific test suite." msgstr "Die Phase führt @samp{meson test} mit einer unveränderlichen Grundmenge von Optionen aus. Diese Grundmenge können Sie mit dem Argument @code{#:test-options} erweitern, um zum Beispiel einen bestimmten Testkatalog auszuwählen oder zu überspringen." #. type: table -#: guix-git/doc/guix.texi:8785 +#: guix-git/doc/guix.texi:8842 msgid "The phase runs @code{ninja install} and can not be changed." msgstr "Diese Phase führt @code{ninja install} aus und kann nicht verändert werden." #. type: defvr -#: guix-git/doc/guix.texi:8788 +#: guix-git/doc/guix.texi:8845 msgid "Apart from that, the build system also adds the following phases:" msgstr "Dazu fügt das Erstellungssystem noch folgende neue Phasen:" #. type: item -#: guix-git/doc/guix.texi:8791 +#: guix-git/doc/guix.texi:8848 #, no-wrap msgid "fix-runpath" msgstr "fix-runpath" #. type: table -#: guix-git/doc/guix.texi:8798 +#: guix-git/doc/guix.texi:8855 msgid "This phase ensures that all binaries can find the libraries they need. It searches for required libraries in subdirectories of the package being built, and adds those to @code{RUNPATH} where needed. It also removes references to libraries left over from the build phase by @code{meson}, such as test dependencies, that aren't actually required for the program to run." msgstr "In dieser Phase wird sichergestellt, dass alle Binärdateien die von ihnen benötigten Bibliotheken finden können. Die benötigten Bibliotheken werden in den Unterverzeichnissen des Pakets, das erstellt wird, gesucht, und zum @code{RUNPATH} hinzugefügt, wann immer es nötig ist. Auch werden diejenigen Referenzen zu Bibliotheken aus der Erstellungsphase wieder entfernt, die bei @code{meson} hinzugefügt wurden, aber eigentlich zur Laufzeit nicht gebraucht werden, wie Abhängigkeiten nur für Tests." #. type: table -#: guix-git/doc/guix.texi:8802 guix-git/doc/guix.texi:8806 +#: guix-git/doc/guix.texi:8859 guix-git/doc/guix.texi:8863 msgid "This phase is the phase provided by @code{glib-or-gtk-build-system}, and it is not enabled by default. It can be enabled with @code{#:glib-or-gtk?}." msgstr "Diese Phase ist dieselbe, die auch im @code{glib-or-gtk-build-system} zur Verfügung gestellt wird, und mit Vorgabeeinstellungen wird sie nicht durchlaufen. Wenn sie gebraucht wird, kann sie mit dem Parameter @code{#:glib-or-gtk?} aktiviert werden." #. type: defvr -#: guix-git/doc/guix.texi:8809 +#: guix-git/doc/guix.texi:8866 #, no-wrap msgid "{Scheme Variable} linux-module-build-system" msgstr "{Scheme-Variable} linux-module-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8811 +#: guix-git/doc/guix.texi:8868 msgid "@code{linux-module-build-system} allows building Linux kernel modules." msgstr "Mit @code{linux-module-build-system} können Linux-Kernelmodule erstellt werden." #. type: defvr -#: guix-git/doc/guix.texi:8815 +#: guix-git/doc/guix.texi:8872 msgid "This build system is an extension of @code{gnu-build-system}, but with the following phases changed:" msgstr "Dieses Erstellungssystem ist eine Erweiterung des @code{gnu-build-system}, bei der aber die folgenden Phasen geändert wurden:" #. type: table -#: guix-git/doc/guix.texi:8821 +#: guix-git/doc/guix.texi:8878 msgid "This phase configures the environment so that the Linux kernel's Makefile can be used to build the external kernel module." msgstr "Diese Phase konfiguriert die Umgebung so, dass das externe Kernel-Modul durch das Makefile des Linux-Kernels erstellt werden kann." #. type: table -#: guix-git/doc/guix.texi:8825 +#: guix-git/doc/guix.texi:8882 msgid "This phase uses the Linux kernel's Makefile in order to build the external kernel module." msgstr "Diese Phase benutzt das Makefile des Linux-Kernels, um das externe Kernel-Modul zu erstellen." #. type: table -#: guix-git/doc/guix.texi:8829 +#: guix-git/doc/guix.texi:8886 msgid "This phase uses the Linux kernel's Makefile in order to install the external kernel module." msgstr "Diese Phase benutzt das Makefile des Linux-Kernels zur Installation des externen Kernel-Moduls." #. type: defvr -#: guix-git/doc/guix.texi:8834 +#: guix-git/doc/guix.texi:8891 msgid "It is possible and useful to specify the Linux kernel to use for building the module (in the @code{arguments} form of a package using the @code{linux-module-build-system}, use the key @code{#:linux} to specify it)." msgstr "Es ist möglich und hilfreich, den für die Erstellung des Moduls zu benutzenden Linux-Kernel anzugeben (in der @code{arguments}-Form eines Pakets, dass das @code{linux-module-build-system} als Erstellungssystem benutzt, wird dazu der Schlüssel @code{#:linux} benutzt)." #. type: defvr -#: guix-git/doc/guix.texi:8836 +#: guix-git/doc/guix.texi:8893 #, no-wrap msgid "{Scheme Variable} node-build-system" msgstr "{Scheme-Variable} node-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8841 +#: guix-git/doc/guix.texi:8898 msgid "This variable is exported by @code{(guix build-system node)}. It implements the build procedure used by @uref{https://nodejs.org, Node.js}, which implements an approximation of the @code{npm install} command, followed by an @code{npm test} command." msgstr "Diese Variable wird vom Modul @code{(guix build-system node)} exportiert. Sie stellt eine Implementierung der Erstellungsprozedur von @uref{https://nodejs.org, Node.js} dar, die annäherungsweise der Funktion des Befehls @code{npm install} gefolgt vom Befehl @code{npm test} entspricht." #. type: defvr -#: guix-git/doc/guix.texi:8845 +#: guix-git/doc/guix.texi:8902 msgid "Which Node.js package is used to interpret the @code{npm} commands can be specified with the @code{#:node} parameter which defaults to @code{node}." msgstr "Welches Node.js-Paket zur Interpretation der @code{npm}-Befehle benutzt wird, kann mit dem Parameter @code{#:node} angegeben werden. Dessen Vorgabewert ist @code{node}." #. type: Plain text -#: guix-git/doc/guix.texi:8851 +#: guix-git/doc/guix.texi:8908 msgid "Lastly, for packages that do not need anything as sophisticated, a ``trivial'' build system is provided. It is trivial in the sense that it provides basically no support: it does not pull any implicit inputs, and does not have a notion of build phases." msgstr "Letztlich gibt es für die Pakete, die bei weitem nichts so komplexes brauchen, ein „triviales“ Erstellungssystem. Es ist in dem Sinn trivial, dass es praktisch keine Hilfestellungen gibt: Es fügt keine impliziten Eingaben hinzu und hat kein Konzept von Erstellungsphasen." #. type: defvr -#: guix-git/doc/guix.texi:8852 +#: guix-git/doc/guix.texi:8909 #, no-wrap msgid "{Scheme Variable} trivial-build-system" msgstr "{Scheme-Variable} trivial-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8854 +#: guix-git/doc/guix.texi:8911 msgid "This variable is exported by @code{(guix build-system trivial)}." msgstr "Diese Variable wird vom Modul @code{(guix build-system trivial)} exportiert." #. type: defvr -#: guix-git/doc/guix.texi:8859 +#: guix-git/doc/guix.texi:8916 msgid "This build system requires a @code{#:builder} argument. This argument must be a Scheme expression that builds the package output(s)---as with @code{build-expression->derivation} (@pxref{Derivations, @code{build-expression->derivation}})." msgstr "Diesem Erstellungssystem muss im Argument @code{#:builder} ein Scheme-Ausdruck übergeben werden, der die Paketausgabe(n) erstellt@tie{}— wie bei @code{build-expression->derivation} (siehe @ref{Derivations, @code{build-expression->derivation}})." #. type: cindex -#: guix-git/doc/guix.texi:8864 +#: guix-git/doc/guix.texi:8921 #, no-wrap msgid "build phases, for packages" msgstr "Erstellungsphasen, bei Paketen" #. type: Plain text -#: guix-git/doc/guix.texi:8870 +#: guix-git/doc/guix.texi:8927 msgid "Almost all package build systems implement a notion @dfn{build phases}: a sequence of actions that the build system executes, when you build the package, leading to the installed byproducts in the store. A notable exception is the ``bare-bones'' @code{trivial-build-system} (@pxref{Build Systems})." msgstr "Fast alle Erstellungssysteme für Pakete implementieren ein Konzept von @dfn{Erstellungsphasen}: einer Abfolge von Aktionen, die vom Erstellungssystem ausgeführt werden, wenn Sie das Paket erstellen. Dabei fallen in den Store installierte Nebenerzeugnisse an. Eine Ausnahme ist der Erwähnung wert: das magere @code{trivial-build-system} (siehe @ref{Build Systems})." #. type: Plain text -#: guix-git/doc/guix.texi:8874 +#: guix-git/doc/guix.texi:8931 msgid "As discussed in the previous section, those build systems provide a standard list of phases. For @code{gnu-build-system}, the main build phases are the following:" msgstr "Wie im letzten Abschnitt erläutert, stellen diese Erstellungssysteme eine standardisierte Liste von Phasen zur Verfügung. Für @code{gnu-build-system} sind dies die hauptsächlichen Erstellungsphasen:" #. type: item -#: guix-git/doc/guix.texi:8876 +#: guix-git/doc/guix.texi:8933 +#, fuzzy, no-wrap +#| msgid "store paths" +msgid "set-paths" +msgstr "Store-Pfade" + +#. type: table +#: guix-git/doc/guix.texi:8936 +msgid "Define search path environment variables for all the input packages, including @env{PATH} (@pxref{Search Paths})." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:8937 #, no-wrap msgid "unpack" msgstr "unpack" #. type: table -#: guix-git/doc/guix.texi:8880 +#: guix-git/doc/guix.texi:8941 msgid "Unpack the source tarball, and change the current directory to the extracted source tree. If the source is actually a directory, copy it to the build tree, and enter that directory." msgstr "Den Quell-Tarball entpacken und das Arbeitsverzeichnis wechseln in den entpackten Quellbaum. Wenn die Quelle bereits ein Verzeichnis ist, wird es in den Quellbaum kopiert und dorthin gewechselt." #. type: item -#: guix-git/doc/guix.texi:8881 +#: guix-git/doc/guix.texi:8942 #, no-wrap msgid "patch-source-shebangs" msgstr "patch-source-shebangs" #. type: table -#: guix-git/doc/guix.texi:8885 +#: guix-git/doc/guix.texi:8946 msgid "Patch shebangs encountered in source files so they refer to the right store file names. For instance, this changes @code{#!/bin/sh} to @code{#!/gnu/store/@dots{}-bash-4.3/bin/sh}." msgstr "„Shebangs“ in Quelldateien beheben, damit Sie sich auf die richtigen Store-Dateipfade beziehen. Zum Beispiel könnte @code{#!/bin/sh} zu @code{#!/gnu/store/…-bash-4.3/bin/sh} geändert werden." #. type: table -#: guix-git/doc/guix.texi:8890 +#: guix-git/doc/guix.texi:8951 msgid "Run the @file{configure} script with a number of default options, such as @option{--prefix=/gnu/store/@dots{}}, as well as the options specified by the @code{#:configure-flags} argument." msgstr "Das Skript @file{configure} mit einigen vorgegebenen Befehlszeilenoptionen ausführen, wie z.B.@: mit @option{--prefix=/gnu/store/…}, sowie mit den im @code{#:configure-flags}-Argument angegebenen Optionen." #. type: table -#: guix-git/doc/guix.texi:8895 +#: guix-git/doc/guix.texi:8956 msgid "Run @code{make} with the list of flags specified with @code{#:make-flags}. If the @code{#:parallel-build?} argument is true (the default), build with @code{make -j}." msgstr "@code{make} ausführen mit den Optionen aus der Liste in @code{#:make-flags}. Wenn das Argument @code{#:parallel-build?} auf wahr gesetzt ist (was der Vorgabewert ist), wird @code{make -j} zum Erstellen ausgeführt." #. type: table -#: guix-git/doc/guix.texi:8901 +#: guix-git/doc/guix.texi:8962 msgid "Run @code{make check}, or some other target specified with @code{#:test-target}, unless @code{#:tests? #f} is passed. If the @code{#:parallel-tests?} argument is true (the default), run @code{make check -j}." msgstr "@code{make check} (oder statt @code{check} ein anderes bei @code{#:test-target} angegebenes Ziel) ausführen, außer falls @code{#:tests? #f} gesetzt ist. Wenn das Argument @code{#:parallel-tests?} auf wahr gesetzt ist (der Vorgabewert), führe @code{make check -j} aus." #. type: table -#: guix-git/doc/guix.texi:8904 +#: guix-git/doc/guix.texi:8965 msgid "Run @code{make install} with the flags listed in @code{#:make-flags}." msgstr "@code{make install} mit den in @code{#:make-flags} aufgelisteten Optionen ausführen." #. type: item -#: guix-git/doc/guix.texi:8905 +#: guix-git/doc/guix.texi:8966 #, no-wrap msgid "patch-shebangs" msgstr "patch-shebangs" #. type: table -#: guix-git/doc/guix.texi:8907 +#: guix-git/doc/guix.texi:8968 msgid "Patch shebangs on the installed executable files." msgstr "Shebangs in den installierten ausführbaren Dateien beheben." #. type: item -#: guix-git/doc/guix.texi:8908 +#: guix-git/doc/guix.texi:8969 #, no-wrap msgid "strip" msgstr "strip" #. type: table -#: guix-git/doc/guix.texi:8912 +#: guix-git/doc/guix.texi:8973 msgid "Strip debugging symbols from ELF files (unless @code{#:strip-binaries?} is false), copying them to the @code{debug} output when available (@pxref{Installing Debugging Files})." msgstr "Symbole zur Fehlerbehebung aus ELF-Dateien entfernen (außer @code{#:strip-binaries?} ist auf falsch gesetzt) und in die @code{debug}-Ausgabe kopieren, falls diese verfügbar ist (siehe @ref{Installing Debugging Files})." #. type: Plain text -#: guix-git/doc/guix.texi:8921 +#: guix-git/doc/guix.texi:8982 msgid "Other build systems have similar phases, with some variations. For example, @code{cmake-build-system} has same-named phases but its @code{configure} phases runs @code{cmake} instead of @code{./configure}. Others, such as @code{python-build-system}, have a wholly different list of standard phases. All this code runs on the @dfn{build side}: it is evaluated when you actually build the package, in a dedicated build process spawned by the build daemon (@pxref{Invoking guix-daemon})." msgstr "Andere Erstellungssysteme haben ähnliche, aber etwas unterschiedliche Phasen. Zum Beispiel hat das @code{cmake-build-system} gleichnamige Phasen, aber seine @code{configure}-Phase führt @command{cmake} statt @command{./configure} aus. Andere Erstellungssysteme wie z.B.@: @code{python-build-system} haben eine völlig andere Liste von Standardphasen. Dieser gesamte Code läuft @dfn{erstellungsseitig}: Er wird dann ausgewertet, wenn Sie das Paket wirklich erstellen, in einem eigenen Erstellungprozess nur dafür, den der Erstellungs-Daemon erzeugt (siehe @ref{Invoking guix-daemon})." #. type: Plain text -#: guix-git/doc/guix.texi:8928 +#: guix-git/doc/guix.texi:8989 msgid "Build phases are represented as association lists or ``alists'' (@pxref{Association Lists,,, guile, GNU Guile Reference Manual}) where each key is a symbol for the name of the phase and the associated value is a procedure that accepts an arbitrary number of arguments. By convention, those procedures receive information about the build in the form of @dfn{keyword parameters}, which they can use or ignore." msgstr "Erstellungsphasen werden durch assoziative Listen (kurz „Alists“) repräsentiert (siehe @ref{Association Lists,,, guile, Referenzhandbuch zu GNU Guile}) wo jeder Schlüssel ein Symbol für den Namen der Phase ist und der assoziierte Wert eine Prozedur ist, die eine beliebige Anzahl von Argumenten nimmt. Nach Konvention empfangen diese Prozeduren dadurch Informationen über die Erstellung in Form von @dfn{Schlüsselwort-Parametern}, die darin benutzt oder ignoriert werden können." #. type: vindex -#: guix-git/doc/guix.texi:8929 +#: guix-git/doc/guix.texi:8990 #, no-wrap msgid "%standard-phases" msgstr "%standard-phases" #. type: Plain text -#: guix-git/doc/guix.texi:8935 +#: guix-git/doc/guix.texi:8996 msgid "For example, here is how @code{(guix build gnu-build-system)} defines @code{%standard-phases}, the variable holding its alist of build phases@footnote{We present a simplified view of those build phases, but do take a look at @code{(guix build gnu-build-system)} to see all the details!}:" msgstr "Zum Beispiel werden die @code{%standard-phases}, das ist die Variable mit der Alist der Erstellungsphasen, in @code{(guix build gnu-build-system)} so definiert@footnote{Wir stellen hier nur eine vereinfachte Sicht auf diese Erstellungsphasen vor. Wenn Sie alle Details wollen, schauen Sie sich @code{(guix build gnu-build-system)} an!}:" #. type: lisp -#: guix-git/doc/guix.texi:8938 +#: guix-git/doc/guix.texi:8999 #, no-wrap msgid "" ";; The build phases of 'gnu-build-system'.\n" @@ -17638,7 +17767,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:8942 +#: guix-git/doc/guix.texi:9003 #, no-wrap msgid "" "(define* (unpack #:key source #:allow-other-keys)\n" @@ -17652,7 +17781,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:8948 +#: guix-git/doc/guix.texi:9009 #, no-wrap msgid "" "(define* (configure #:key outputs #:allow-other-keys)\n" @@ -17670,7 +17799,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:8952 +#: guix-git/doc/guix.texi:9013 #, no-wrap msgid "" "(define* (build #:allow-other-keys)\n" @@ -17684,7 +17813,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:8959 +#: guix-git/doc/guix.texi:9020 #, no-wrap msgid "" "(define* (check #:key (test-target \"check\") (tests? #true)\n" @@ -17704,7 +17833,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:8963 +#: guix-git/doc/guix.texi:9024 #, no-wrap msgid "" "(define* (install #:allow-other-keys)\n" @@ -17718,7 +17847,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:8972 +#: guix-git/doc/guix.texi:9033 #, no-wrap msgid "" "(define %standard-phases\n" @@ -17740,38 +17869,38 @@ msgstr "" " (cons 'install install)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:8982 +#: guix-git/doc/guix.texi:9043 msgid "This shows how @code{%standard-phases} is defined as a list of symbol/procedure pairs (@pxref{Pairs,,, guile, GNU Guile Reference Manual}). The first pair associates the @code{unpack} procedure with the @code{unpack} symbol---a name; the second pair defines the @code{configure} phase similarly, and so on. When building a package that uses @code{gnu-build-system} with its default list of phases, those phases are executed sequentially. You can see the name of each phase started and completed in the build log of packages that you build." msgstr "Hier sieht man wie @code{%standard-phases} als eine Liste von Paaren aus Symbol und Prozedur (siehe @ref{Pairs,,, guile, Referenzhandbuch zu GNU Guile}) definiert ist. Das erste Paar assoziiert die @code{unpack}-Prozedur mit dem @code{unpack}-Symbol@tie{}— es gibt einen Namen an. Das zweite Paar definiert die @code{configure}-Phase auf ähnliche Weise, ebenso die anderen. Wenn ein Paket erstellt wird, das @code{gnu-build-system} benutzt, werden diese Phasen der Reihe nach ausgeführt. Sie können beim Erstellen von Paketen im Erstellungsprotokoll den Namen jeder gestarteten und abgeschlossenen Phase sehen." #. type: Plain text -#: guix-git/doc/guix.texi:8988 +#: guix-git/doc/guix.texi:9049 msgid "Let's now look at the procedures themselves. Each one is defined with @code{define*}: @code{#:key} lists keyword parameters the procedure accepts, possibly with a default value, and @code{#:allow-other-keys} specifies that other keyword parameters are ignored (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual})." msgstr "Schauen wir uns jetzt die Prozeduren selbst an. Jede davon wird mit @code{define*} definiert, dadurch können bei @code{#:key} die Schlüsselwortparameter aufgelistet werden, die die Prozedur annimmt, wenn gewünscht auch zusammen mit einem Vorgabewert, und durch @code{#:allow-other-keys} wird veranlasst, dass andere Schlüsselwortparameter ignoriert werden (siehe @ref{Optional Arguments,,, guile, Referenzhandbuch zu GNU Guile})." #. type: Plain text -#: guix-git/doc/guix.texi:9004 +#: guix-git/doc/guix.texi:9065 msgid "The @code{unpack} procedure honors the @code{source} parameter, which the build system uses to pass the file name of the source tarball (or version control checkout), and it ignores other parameters. The @code{configure} phase only cares about the @code{outputs} parameter, an alist mapping package output names to their store file name (@pxref{Packages with Multiple Outputs}). It extracts the file name of for @code{out}, the default output, and passes it to @command{./configure} as the installation prefix, meaning that @command{make install} will eventually copy all the files in that directory (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards}). @code{build} and @code{install} ignore all their arguments. @code{check} honors the @code{test-target} argument, which specifies the name of the Makefile target to run tests; it prints a message and skips tests when @code{tests?} is false." msgstr "Die @code{unpack}-Prozedur berücksichtigt den @code{source}-Parameter; das Erstellungssystem benutzt ihn, um den Dateinamen des Quell-Tarballs (oder des Checkouts aus einer Versionskontrolle) zu finden. Die anderen Parameter ignoriert sie. Die @code{configure}-Phase interessiert sich nur für den @code{outputs}-Parameter, eine Alist, die die Namen von Paketausgaben auf ihre Dateinamen im Store abbildet (siehe @ref{Packages with Multiple Outputs}). Sie extrahiert den Dateinamen für @code{out}, die Standardausgabe, und gibt ihn an @command{./configure} als das Installationspräfix weiter, wodurch @command{make install} zum Schluss alle Dateien in dieses Verzeichnis kopieren wird (siehe @ref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards}). @code{build} und @code{install} ignorieren all ihre Argumente. @code{check} berücksichtigt das Argument @code{test-target}, worin der Name des Makefile-Ziels angegeben wird, um die Tests auszuführen. Es wird stattdessen eine Nachricht angezeigt und die Tests übersprungen, wenn @code{tests?} falsch ist." #. type: cindex -#: guix-git/doc/guix.texi:9005 +#: guix-git/doc/guix.texi:9066 #, no-wrap msgid "build phases, customizing" msgstr "Erstellungsphasen, Anpassen der" #. type: Plain text -#: guix-git/doc/guix.texi:9014 +#: guix-git/doc/guix.texi:9075 msgid "The list of phases used for a particular package can be changed with the @code{#:phases} parameter of the build system. Changing the set of build phases boils down to building a new alist of phases based on the @code{%standard-phases} alist described above. This can be done with standard alist procedures such as @code{alist-delete} (@pxref{SRFI-1 Association Lists,,, guile, GNU Guile Reference Manual}); however, it is more convenient to do so with @code{modify-phases} (@pxref{Build Utilities, @code{modify-phases}})." msgstr "Die Liste der Phasen, die für ein bestimmtes Paket benutzt werden, kann über den @code{#:phases}-Parameter an das Erstellungssystem geändert werden. Das Ändern des Satzes von Erstellungsphasen funktioniert so, dass eine neue Alist von Phasen aus der oben beschriebenen @code{%standard-phases}-Alist heraus erzeugt wird. Dazu können die Standardprozeduren zur Bearbeitung von assoziativen Listen wie @code{alist-delete} benutzt werden (siehe @ref{SRFI-1 Association Lists,,, guile, Referenzhandbuch zu GNU Guile}), aber es ist bequemer, dafür die Prozedur @code{modify-phases} zu benutzen (siehe @ref{Build Utilities, @code{modify-phases}})." #. type: Plain text -#: guix-git/doc/guix.texi:9019 +#: guix-git/doc/guix.texi:9080 msgid "Here is an example of a package definition that removes the @code{configure} phase of @code{%standard-phases} and inserts a new phase before the @code{build} phase, called @code{set-prefix-in-makefile}:" msgstr "Hier ist ein Beispiel für eine Paketdefinition, die die @code{configure}-Phase aus @code{%standard-phases} entfernt und eine neue Phase vor der @code{build}-Phase namens @code{set-prefix-in-makefile} einfügt:" #. type: lisp -#: guix-git/doc/guix.texi:9039 +#: guix-git/doc/guix.texi:9100 #, no-wrap msgid "" "(define-public example\n" @@ -17813,44 +17942,44 @@ msgstr "" " #true))))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:9045 +#: guix-git/doc/guix.texi:9106 msgid "The new phase that is inserted is written as an anonymous procedure, introduced with @code{lambda*}; it honors the @code{outputs} parameter we have seen before. @xref{Build Utilities}, for more about the helpers used by this phase, and for more examples of @code{modify-phases}." msgstr "Die neu eingefügte Phase wurde als anonyme Prozedur geschrieben. Solche namenlosen Prozeduren schreibt man mit @code{lambda*}. Oben berücksichtigt sie den @code{outputs}-Parameter, den wir zuvor gesehen haben. Siehe @ref{Build Utilities} für mehr Informationen über die in dieser Phase benutzten Hilfsmittel und für mehr Beispiele zu @code{modify-phases}." #. type: cindex -#: guix-git/doc/guix.texi:9046 guix-git/doc/guix.texi:10046 +#: guix-git/doc/guix.texi:9107 guix-git/doc/guix.texi:10360 #, no-wrap msgid "code staging" msgstr "Code-Staging" #. type: cindex -#: guix-git/doc/guix.texi:9047 guix-git/doc/guix.texi:10047 +#: guix-git/doc/guix.texi:9108 guix-git/doc/guix.texi:10361 #, no-wrap msgid "staging, of code" msgstr "Staging, von Code" #. type: Plain text -#: guix-git/doc/guix.texi:9054 +#: guix-git/doc/guix.texi:9115 msgid "Keep in mind that build phases are code evaluated at the time the package is actually built. This explains why the whole @code{modify-phases} expression above is quoted (it comes after the @code{'} or apostrophe): it is @dfn{staged} for later execution. @xref{G-Expressions}, for an explanation of code staging and the @dfn{code strata} involved." msgstr "Sie sollten im Kopf behalten, dass Erstellungsphasen aus Code bestehen, der erst dann ausgewertet wird, wenn das Paket erstellt wird. Das ist der Grund, warum der gesamte @code{modify-phases}-Ausdruck oben quotiert wird. Quotiert heißt, er steht nach einem @code{'} oder Apostrophenzeichen: Er wird nicht sofort als Code ausgewertet, sondern nur zur späteren Ausführung vorgemerkt (wir sagen @dfn{staged}, siehe @ref{G-Expressions} für eine Erläuterung von Code-Staging und den beteiligten @dfn{Code-Schichten} (oder „Strata“)." #. type: Plain text -#: guix-git/doc/guix.texi:9064 +#: guix-git/doc/guix.texi:9125 msgid "As soon as you start writing non-trivial package definitions (@pxref{Defining Packages}) or other build actions (@pxref{G-Expressions}), you will likely start looking for helpers for ``shell-like'' actions---creating directories, copying and deleting files recursively, manipulating build phases, and so on. The @code{(guix build utils)} module provides such utility procedures." msgstr "Sobald Sie anfangen, nichttriviale Paketdefinitionen (siehe @ref{Defining Packages}) oder andere Erstellungsaktionen (siehe @ref{G-Expressions}) zu schreiben, würden Sie sich wahrscheinlich darüber freuen, Helferlein für „Shell-artige“ Aktionen vordefiniert zu bekommen, also Code, den Sie benutzen können, um Verzeichnisse anzulegen, Dateien rekursiv zu kopieren oder zu löschen, Erstellungsphasen anzupassen und Ähnliches. Das Modul @code{(guix build utils)} macht solche nützlichen Werkzeugprozeduren verfügbar." #. type: Plain text -#: guix-git/doc/guix.texi:9068 +#: guix-git/doc/guix.texi:9129 msgid "Most build systems load @code{(guix build utils)} (@pxref{Build Systems}). Thus, when writing custom build phases for your package definitions, you can usually assume those procedures are in scope." msgstr "Die meisten Erstellungssysteme laden @code{(guix build utils)} (siehe @ref{Build Systems}). Wenn Sie also eigene Erstellungsphasen für Ihre Paketdefinitionen schreiben, können Sie in den meisten Fällen annehmen, dass diese Prozeduren bei der Auswertung sichtbar sein werden." #. type: Plain text -#: guix-git/doc/guix.texi:9073 +#: guix-git/doc/guix.texi:9134 msgid "When writing G-expressions, you can import @code{(guix build utils)} on the ``build side'' using @code{with-imported-modules} and then put it in scope with the @code{use-modules} form (@pxref{Using Guile Modules,,, guile, GNU Guile Reference Manual}):" msgstr "Beim Schreiben von G-Ausdrücken können Sie auf der „Erstellungsseite“ @code{(guix build utils)} mit @code{with-imported-modules} importieren und anschließend mit der @code{use-modules}-Form sichtbar machen (siehe @ref{Using Guile Modules,,, guile, Referenzhandbuch zu GNU Guile}):" #. type: lisp -#: guix-git/doc/guix.texi:9080 +#: guix-git/doc/guix.texi:9141 #, no-wrap msgid "" "(with-imported-modules '((guix build utils)) ;import it\n" @@ -17868,7 +17997,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:9083 +#: guix-git/doc/guix.texi:9144 #, no-wrap msgid "" " ;; Happily use its 'mkdir-p' procedure.\n" @@ -17878,245 +18007,239 @@ msgstr "" " (mkdir-p (string-append #$output \"/a/b/c\")))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:9087 +#: guix-git/doc/guix.texi:9148 msgid "The remainder of this section is the reference for most of the utility procedures provided by @code{(guix build utils)}." msgstr "Der Rest dieses Abschnitts stellt eine Referenz der meisten Werkzeugprozeduren dar, die @code{(guix build utils)} anbietet." #. type: subsection -#: guix-git/doc/guix.texi:9090 +#: guix-git/doc/guix.texi:9151 #, no-wrap msgid "Dealing with Store File Names" msgstr "Umgehen mit Store-Dateinamen" #. type: Plain text -#: guix-git/doc/guix.texi:9093 +#: guix-git/doc/guix.texi:9154 msgid "This section documents procedures that deal with store file names." msgstr "Dieser Abschnitt dokumentiert Prozeduren, die sich mit Dateinamen von Store-Objekten befassen." #. type: deffn -#: guix-git/doc/guix.texi:9094 +#: guix-git/doc/guix.texi:9155 #, no-wrap msgid "{Scheme Procedure} %store-directory" msgstr "{Scheme-Prozedur} %store-directory" #. type: deffn -#: guix-git/doc/guix.texi:9096 +#: guix-git/doc/guix.texi:9157 msgid "Return the directory name of the store." msgstr "Liefert den Verzeichnisnamen des Stores." #. type: deffn -#: guix-git/doc/guix.texi:9098 +#: guix-git/doc/guix.texi:9159 #, no-wrap msgid "{Scheme Procedure} store-file-name? @var{file}" msgstr "{Scheme-Prozedur} store-file-name? @var{Datei}" #. type: deffn -#: guix-git/doc/guix.texi:9100 +#: guix-git/doc/guix.texi:9161 msgid "Return true if @var{file} is in the store." msgstr "Liefert wahr zurück, wenn sich @var{Datei} innerhalb des Stores befindet." #. type: deffn -#: guix-git/doc/guix.texi:9102 +#: guix-git/doc/guix.texi:9163 #, no-wrap msgid "{Scheme Procedure} strip-store-file-name @var{file}" msgstr "{Scheme-Prozedur} strip-store-file-name @var{Datei}" #. type: deffn -#: guix-git/doc/guix.texi:9105 +#: guix-git/doc/guix.texi:9166 msgid "Strip the @file{/gnu/store} and hash from @var{file}, a store file name. The result is typically a @code{\"@var{package}-@var{version}\"} string." msgstr "Liefert den Namen der @var{Datei}, die im Store liegt, ohne den Anfang @file{/gnu/store} und ohne die Prüfsumme am Namensanfang. Als Ergebnis ergibt sich typischerweise eine Zeichenkette aus @code{\"@var{Paket}-@var{Version}\"}." #. type: deffn -#: guix-git/doc/guix.texi:9107 +#: guix-git/doc/guix.texi:9168 #, no-wrap msgid "{Scheme Procedure} package-name->name+version @var{name}" msgstr "{Scheme-Prozedur} package-name->name+version @var{Name}" #. type: deffn -#: guix-git/doc/guix.texi:9112 +#: guix-git/doc/guix.texi:9173 msgid "Given @var{name}, a package name like @code{\"foo-0.9.1b\"}, return two values: @code{\"foo\"} and @code{\"0.9.1b\"}. When the version part is unavailable, @var{name} and @code{#f} are returned. The first hyphen followed by a digit is considered to introduce the version part." msgstr "Liefert für den Paket-@var{Name}n (so etwas wie @code{\"foo-0.9.1b\"}) zwei Werte zurück: zum einen @code{\"foo\"} und zum anderen @code{\"0.9.1b\"}. Wenn der Teil mit der Version fehlt, werden der @var{Name} und @code{#f} zurückgeliefert. Am ersten Bindestrich, auf den eine Ziffer folgt, wird der Versionsteil abgetrennt." #. type: subsection -#: guix-git/doc/guix.texi:9114 +#: guix-git/doc/guix.texi:9175 #, no-wrap msgid "File Types" msgstr "Dateitypen" #. type: Plain text -#: guix-git/doc/guix.texi:9117 +#: guix-git/doc/guix.texi:9178 msgid "The procedures below deal with files and file types." msgstr "Bei den folgenden Prozeduren geht es um Dateien und Dateitypen." #. type: deffn -#: guix-git/doc/guix.texi:9118 +#: guix-git/doc/guix.texi:9179 #, no-wrap msgid "{Scheme Procedure} directory-exists? @var{dir}" msgstr "{Scheme-Prozedur} directory-exists? @var{Verzeichnis}" #. type: deffn -#: guix-git/doc/guix.texi:9120 +#: guix-git/doc/guix.texi:9181 msgid "Return @code{#t} if @var{dir} exists and is a directory." msgstr "Liefert @code{#t}, wenn das @var{Verzeichnis} existiert und ein Verzeichnis ist." #. type: deffn -#: guix-git/doc/guix.texi:9122 +#: guix-git/doc/guix.texi:9183 #, no-wrap msgid "{Scheme Procedure} executable-file? @var{file}" msgstr "{Scheme-Prozedur} executable-file? @var{Datei}" #. type: deffn -#: guix-git/doc/guix.texi:9124 +#: guix-git/doc/guix.texi:9185 msgid "Return @code{#t} if @var{file} exists and is executable." msgstr "Liefert @code{#t}, wenn die @var{Datei} existiert und ausführbar ist." #. type: deffn -#: guix-git/doc/guix.texi:9126 +#: guix-git/doc/guix.texi:9187 #, no-wrap msgid "{Scheme Procedure} symbolic-link? @var{file}" msgstr "{Scheme-Prozedur} symbolic-link? @var{Datei}" #. type: deffn -#: guix-git/doc/guix.texi:9128 +#: guix-git/doc/guix.texi:9189 msgid "Return @code{#t} if @var{file} is a symbolic link (aka. a ``symlink'')." msgstr "Liefert @code{#t}, wenn die @var{Datei} eine symbolische Verknüpfung ist (auch bekannt als „Symlink“)." #. type: deffn -#: guix-git/doc/guix.texi:9130 +#: guix-git/doc/guix.texi:9191 #, no-wrap msgid "{Scheme Procedure} elf-file? @var{file}" msgstr "{Scheme-Prozedur} elf-file? @var{Datei}" #. type: deffnx -#: guix-git/doc/guix.texi:9131 +#: guix-git/doc/guix.texi:9192 #, no-wrap msgid "{Scheme Procedure} ar-file? @var{file}" msgstr "{Scheme-Prozedur} ar-file? @var{Datei}" #. type: deffnx -#: guix-git/doc/guix.texi:9132 +#: guix-git/doc/guix.texi:9193 #, no-wrap msgid "{Scheme Procedure} gzip-file? @var{file}" msgstr "{Scheme-Prozedur} gzip-file? @var{Datei}" #. type: deffn -#: guix-git/doc/guix.texi:9135 +#: guix-git/doc/guix.texi:9196 msgid "Return @code{#t} if @var{file} is, respectively, an ELF file, an @code{ar} archive (such as a @file{.a} static library), or a gzip file." msgstr "Liefert @code{#t}, wenn die @var{Datei} jeweils eine ELF-Datei, ein @code{ar}-Archiv (etwa eine statische Bibliothek mit @file{.a}) oder eine gzip-Datei ist." #. type: deffn -#: guix-git/doc/guix.texi:9137 +#: guix-git/doc/guix.texi:9198 #, no-wrap msgid "{Scheme Procedure} reset-gzip-timestamp @var{file} [#:keep-mtime? #t]" msgstr "{Scheme-Prozedur} reset-gzip-timestamp @var{Datei} [#:keep-mtime? #t]" #. type: deffn -#: guix-git/doc/guix.texi:9141 +#: guix-git/doc/guix.texi:9202 msgid "If @var{file} is a gzip file, reset its embedded timestamp (as with @command{gzip --no-name}) and return true. Otherwise return @code{#f}. When @var{keep-mtime?} is true, preserve @var{file}'s modification time." msgstr "Wenn die @var{Datei} eine gzip-Datei ist, wird ihr eingebetteter Zeitstempel zurückgesetzt (wie bei @command{gzip --no-name}) und wahr geliefert. Ansonsten wird @code{#f} geliefert. Wenn @var{keep-mtime?} wahr ist, wird der Zeitstempel der letzten Modifikation von @var{Datei} beibehalten." #. type: subsection -#: guix-git/doc/guix.texi:9143 +#: guix-git/doc/guix.texi:9204 #, no-wrap msgid "File Manipulation" msgstr "Änderungen an Dateien" #. type: Plain text -#: guix-git/doc/guix.texi:9150 +#: guix-git/doc/guix.texi:9211 msgid "The following procedures and macros help create, modify, and delete files. They provide functionality comparable to common shell utilities such as @command{mkdir -p}, @command{cp -r}, @command{rm -r}, and @command{sed}. They complement Guile's extensive, but low-level, file system interface (@pxref{POSIX,,, guile, GNU Guile Reference Manual})." msgstr "Die folgenden Prozeduren und Makros helfen beim Erstellen, Ändern und Löschen von Dateien. Sie machen Funktionen ähnlich zu Shell-Werkzeugen wie @command{mkdir -p}, @command{cp -r}, @command{rm -r} und @command{sed} verfügbar. Sie ergänzen Guiles ausgiebige aber kleinschrittige Dateisystemschnittstelle (siehe @ref{POSIX,,, guile, Referenzhandbuch zu GNU Guile})." #. type: deffn -#: guix-git/doc/guix.texi:9151 +#: guix-git/doc/guix.texi:9212 #, no-wrap msgid "{Scheme Syntax} with-directory-excursion @var{directory} @var{body}@dots{}" msgstr "{Scheme-Syntax} with-directory-excursion @var{Verzeichnis} @var{Rumpf}…" #. type: deffn -#: guix-git/doc/guix.texi:9153 +#: guix-git/doc/guix.texi:9214 msgid "Run @var{body} with @var{directory} as the process's current directory." msgstr "Den @var{Rumpf} ausführen mit dem @var{Verzeichnis} als aktuellem Verzeichnis des Prozesses." #. type: deffn -#: guix-git/doc/guix.texi:9160 +#: guix-git/doc/guix.texi:9221 msgid "Essentially, this macro changes the current directory to @var{directory} before evaluating @var{body}, using @code{chdir} (@pxref{Processes,,, guile, GNU Guile Reference Manual}). It changes back to the initial directory when the dynamic extent of @var{body} is left, be it @i{via} normal procedure return or @i{via} a non-local exit such as an exception." msgstr "Im Grunde ändert das Makro das aktuelle Arbeitsverzeichnis auf @var{Verzeichnis} bevor der @var{Rumpf} ausgewertet wird, mittels @code{chdir} (siehe @ref{Processes,,, guile, Referenzhandbuch zu GNU Guile}). Wenn der dynamische Bereich von @var{Rumpf} wieder verlassen wird, wechselt es wieder ins anfängliche Verzeichnis zurück, egal ob der @var{Rumpf} durch normales Zurückliefern eines Ergebnisses oder durch einen nichtlokalen Sprung wie etwa eine Ausnahme verlassen wurde." #. type: deffn -#: guix-git/doc/guix.texi:9162 +#: guix-git/doc/guix.texi:9223 #, no-wrap msgid "{Scheme Procedure} mkdir-p @var{dir}" msgstr "{Scheme-Prozedur} mkdir-p @var{Verzeichnis}" #. type: deffn -#: guix-git/doc/guix.texi:9164 +#: guix-git/doc/guix.texi:9225 msgid "Create directory @var{dir} and all its ancestors." msgstr "Das @var{Verzeichnis} und all seine Vorgänger erstellen." #. type: deffn -#: guix-git/doc/guix.texi:9166 +#: guix-git/doc/guix.texi:9227 #, no-wrap msgid "{Scheme Procedure} install-file @var{file} @var{directory}" msgstr "{Scheme-Prozedur} install-file @var{Datei} @var{Verzeichnis}" #. type: deffn -#: guix-git/doc/guix.texi:9169 +#: guix-git/doc/guix.texi:9230 msgid "Create @var{directory} if it does not exist and copy @var{file} in there under the same name." msgstr "@var{Verzeichnis} erstellen, wenn es noch nicht existiert, und die @var{Datei} mit ihrem Namen dorthin kopieren." #. type: deffn -#: guix-git/doc/guix.texi:9171 +#: guix-git/doc/guix.texi:9232 #, no-wrap msgid "{Scheme Procedure} make-file-writable @var{file}" msgstr "{Scheme-Prozedur} make-file-writable @var{Datei}" #. type: deffn -#: guix-git/doc/guix.texi:9173 +#: guix-git/doc/guix.texi:9234 msgid "Make @var{file} writable for its owner." msgstr "Dem Besitzer der @var{Datei} Schreibberechtigung darauf erteilen." #. type: deffn -#: guix-git/doc/guix.texi:9175 +#: guix-git/doc/guix.texi:9236 #, no-wrap msgid "{Scheme Procedure} copy-recursively @var{source} @var{destination} @" msgstr "{Scheme-Prozedur} copy-recursively @var{Quelle} @var{Zielort} @" #. type: deffn -#: guix-git/doc/guix.texi:9184 +#: guix-git/doc/guix.texi:9245 msgid "[#:log (current-output-port)] [#:follow-symlinks? #f] @ [#:copy-file copy-file] [#:keep-mtime? #f] [#:keep-permissions? #t] Copy @var{source} directory to @var{destination}. Follow symlinks if @var{follow-symlinks?} is true; otherwise, just preserve them. Call @var{copy-file} to copy regular files. When @var{keep-mtime?} is true, keep the modification time of the files in @var{source} on those of @var{destination}. When @var{keep-permissions?} is true, preserve file permissions. Write verbose output to the @var{log} port." msgstr "[#:log (current-output-port)] [#:follow-symlinks? #f] @ [#:copy-file copy-file] [#:keep-mtime? #f] [#:keep-permissions? #t] Das Verzeichnis @var{Quelle} rekursiv an den @var{Zielort} kopieren. Wenn @var{follow-symlinks?} wahr ist, folgt die Rekursion symbolischen Verknüpfungen, ansonsten werden die Verknüpfungen als solche beibehalten. Zum Kopieren regulärer Dateien wird @var{copy-file} aufgerufen. Wenn @var{keep-mtime?} wahr ist, bleibt der Zeitstempel der letzten Änderung an den Dateien in @var{Quelle} dabei bei denen am @var{Zielort} erhalten. Wenn @var{keep-permissions?} wahr ist, bleiben Dateiberechtigungen erhalten. Ein ausführliches Protokoll wird in den bei @var{log} angegebenen Port geschrieben." #. type: deffn -#: guix-git/doc/guix.texi:9186 +#: guix-git/doc/guix.texi:9247 #, no-wrap msgid "{Scheme Procedure} delete-file-recursively @var{dir} @" msgstr "{Scheme-Prozedur} delete-file-recursively @var{Verzeichnis} @" #. type: deffn -#: guix-git/doc/guix.texi:9191 +#: guix-git/doc/guix.texi:9252 msgid "[#:follow-mounts? #f] Delete @var{dir} recursively, like @command{rm -rf}, without following symlinks. Don't follow mount points either, unless @var{follow-mounts?} is true. Report but ignore errors." msgstr "[#:follow-mounts? #f] Das @var{Verzeichnis} rekursiv löschen, wie bei @command{rm -rf}, ohne symbolischen Verknüpfungen zu folgen. Auch Einhängepunkten wird @emph{nicht} gefolgt, außer falls @var{follow-mounts?} wahr ist. Fehler dabei werden angezeigt aber ignoriert." #. type: deffn -#: guix-git/doc/guix.texi:9193 +#: guix-git/doc/guix.texi:9254 #, no-wrap msgid "{Scheme Syntax} substitute* @var{file} @" msgstr "{Scheme-Syntax} substitute* @var{Datei} @" #. type: deffn -#: guix-git/doc/guix.texi:9198 +#: guix-git/doc/guix.texi:9259 msgid "((@var{regexp} @var{match-var}@dots{}) @var{body}@dots{}) @dots{} Substitute @var{regexp} in @var{file} by the string returned by @var{body}. @var{body} is evaluated with each @var{match-var} bound to the corresponding positional regexp sub-expression. For example:" msgstr "((@var{Regexp} @var{Muster-Variable}@dots{}) @var{Rumpf}…) … Den regulären Ausdruck @var{Regexp} in der @var{Datei} durch die durch @var{Rumpf} berechnete Zeichenkette ersetzen. Bei der Auswertung von @var{Rumpf} wird jede @var{Muster-Variable} an den Teilausdruck an der entsprechenden Position der Regexp gebunden. Zum Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:9205 -#, fuzzy, no-wrap -#| msgid "" -#| "(substitute* file\n" -#| " ((\"hello\")\n" -#| " \"good morning\\n\")\n" -#| " ((\"foo([a-z]+)bar(.*)$\" all letters end)\n" -#| " (string-append \"baz\" letter end)))\n" +#: guix-git/doc/guix.texi:9266 +#, no-wrap msgid "" "(substitute* file\n" " ((\"hello\")\n" @@ -18131,71 +18254,71 @@ msgstr "" " (string-append \"baz\" Buchstaben Ende)))\n" #. type: deffn -#: guix-git/doc/guix.texi:9211 +#: guix-git/doc/guix.texi:9272 msgid "Here, anytime a line of @var{file} contains @code{hello}, it is replaced by @code{good morning}. Anytime a line of @var{file} matches the second regexp, @code{all} is bound to the complete match, @code{letters} is bound to the first sub-expression, and @code{end} is bound to the last one." msgstr "Jedes Mal, wenn eine Zeile in der @var{Datei} den Text @code{Hallo} enthält, wird dieser durch @code{Guten Morgen} ersetzt. Jedes Mal, wenn eine Zeile zum zweiten regulären Ausdruck passt, wird @code{alles} an die vollständige Übereinstimmung gebunden, @code{Buchstaben} wird an den ersten Teilausdruck gebunden und @code{Ende} an den letzten." #. type: deffn -#: guix-git/doc/guix.texi:9214 +#: guix-git/doc/guix.texi:9275 msgid "When one of the @var{match-var} is @code{_}, no variable is bound to the corresponding match substring." msgstr "Wird für eine @var{Muster-Variable} nur @code{_} geschrieben, so wird keine Variable an die Teilzeichenkette an der entsprechenden Position im Muster gebunden." #. type: deffn -#: guix-git/doc/guix.texi:9217 +#: guix-git/doc/guix.texi:9278 msgid "Alternatively, @var{file} may be a list of file names, in which case they are all subject to the substitutions." msgstr "Alternativ kann statt einer @var{Datei} auch eine Liste von Dateinamen angegeben werden. In diesem Fall wird jede davon den Substitutionen unterzogen." #. type: deffn -#: guix-git/doc/guix.texi:9220 +#: guix-git/doc/guix.texi:9281 msgid "Be careful about using @code{$} to match the end of a line; by itself it won't match the terminating newline of a line." msgstr "Seien Sie vorsichtig bei der Nutzung von @code{$}, um auf das Ende einer Zeile zu passen. @code{$} passt nämlich @emph{nicht} auf den Zeilenumbruch am Ende einer Zeile." #. type: subsection -#: guix-git/doc/guix.texi:9222 +#: guix-git/doc/guix.texi:9283 #, no-wrap msgid "File Search" msgstr "Dateien suchen" #. type: cindex -#: guix-git/doc/guix.texi:9224 +#: guix-git/doc/guix.texi:9285 #, no-wrap msgid "file, searching" msgstr "Dateien, suchen" #. type: Plain text -#: guix-git/doc/guix.texi:9226 +#: guix-git/doc/guix.texi:9287 msgid "This section documents procedures to search and filter files." msgstr "Dieser Abschnitt beschreibt Prozeduren, um Dateien zu suchen und zu filtern." #. type: deffn -#: guix-git/doc/guix.texi:9227 +#: guix-git/doc/guix.texi:9288 #, no-wrap msgid "{Scheme Procedure} file-name-predicate @var{regexp}" msgstr "{Scheme-Prozedur} file-name-predicate @var{Regexp}" #. type: deffn -#: guix-git/doc/guix.texi:9230 +#: guix-git/doc/guix.texi:9291 msgid "Return a predicate that returns true when passed a file name whose base name matches @var{regexp}." msgstr "Liefert ein Prädikat, das gegeben einen Dateinamen, dessen Basisnamen auf @var{Regexp} passt, wahr liefert." #. type: deffn -#: guix-git/doc/guix.texi:9232 +#: guix-git/doc/guix.texi:9293 #, no-wrap msgid "{Scheme Procedure} find-files @var{dir} [@var{pred}] @" msgstr "{Scheme-Prozedur} find-files @var{Verzeichnis} [@var{Prädikat}] @" #. type: deffn -#: guix-git/doc/guix.texi:9243 +#: guix-git/doc/guix.texi:9304 msgid "[#:stat lstat] [#:directories? #f] [#:fail-on-error? #f] Return the lexicographically sorted list of files under @var{dir} for which @var{pred} returns true. @var{pred} is passed two arguments: the absolute file name, and its stat buffer; the default predicate always returns true. @var{pred} can also be a regular expression, in which case it is equivalent to @code{(file-name-predicate @var{pred})}. @var{stat} is used to obtain file information; using @code{lstat} means that symlinks are not followed. If @var{directories?} is true, then directories will also be included. If @var{fail-on-error?} is true, raise an exception upon error." msgstr "[#:stat lstat] [#:directories? #f] [#:fail-on-error? #f] Liefert die lexikografisch sortierte Liste der Dateien innerhalb @var{Verzeichnis}, für die das @var{Prädikat} wahr liefert. An @var{Prädikat} werden zwei Argumente übergeben: Der absolute Dateiname und der zugehörige Stat-Puffer. Das vorgegebene Prädikat liefert immer wahr. Als @var{Prädikat} kann auch ein regulärer Ausdruck benutzt werden; in diesem Fall ist er äquivalent zu @code{(file-name-predicate @var{Prädikat})}. Mit @var{stat} werden Informationen über die Datei ermittelt; wenn dafür @code{lstat} benutzt wird, bedeutet das, dass symbolische Verknüpfungen nicht verfolgt werden. Wenn @var{directories?} wahr ist, dann werden auch Verzeichnisse aufgezählt. Wenn @var{fail-on-error?} wahr ist, dann wird bei einem Fehler eine Ausnahme ausgelöst." #. type: Plain text -#: guix-git/doc/guix.texi:9247 +#: guix-git/doc/guix.texi:9308 msgid "Here are a few examples where we assume that the current directory is the root of the Guix source tree:" msgstr "Nun folgen ein paar Beispiele, wobei wir annehmen, dass das aktuelle Verzeichnis der Wurzel des Guix-Quellbaums entspricht." #. type: lisp -#: guix-git/doc/guix.texi:9252 +#: guix-git/doc/guix.texi:9313 #, no-wrap msgid "" ";; List all the regular files in the current directory.\n" @@ -18209,7 +18332,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:9256 +#: guix-git/doc/guix.texi:9317 #, no-wrap msgid "" ";; List all the .scm files under gnu/services.\n" @@ -18223,7 +18346,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:9260 +#: guix-git/doc/guix.texi:9321 #, no-wrap msgid "" ";; List ar files in the current directory.\n" @@ -18235,45 +18358,45 @@ msgstr "" "@result{} (\"./libformat.a\" \"./libstore.a\" …)\n" #. type: deffn -#: guix-git/doc/guix.texi:9262 +#: guix-git/doc/guix.texi:9323 #, no-wrap msgid "{Scheme Procedure} which @var{program}" msgstr "{Scheme-Prozedur} which @var{Programm}" #. type: deffn -#: guix-git/doc/guix.texi:9265 +#: guix-git/doc/guix.texi:9326 msgid "Return the complete file name for @var{program} as found in @code{$PATH}, or @code{#f} if @var{program} could not be found." msgstr "Liefert den vollständigen Dateinamen für das @var{Programm}, der in @code{$PATH} gesucht wird, oder @code{#f}, wenn das @var{Programm} nicht gefunden werden konnte." #. type: deffn -#: guix-git/doc/guix.texi:9267 +#: guix-git/doc/guix.texi:9328 #, no-wrap msgid "{Scheme Procedure} search-input-file @var{inputs} @var{name}" msgstr "{Scheme-Prozedur} search-input-file @var{Eingaben} @var{Name}" #. type: deffnx -#: guix-git/doc/guix.texi:9268 +#: guix-git/doc/guix.texi:9329 #, no-wrap msgid "{Scheme Procedure} search-input-directory @var{inputs} @var{name}" msgstr "{Scheme-Prozedur} search-input-directory @var{Eingaben} @var{Name}" #. type: deffn -#: guix-git/doc/guix.texi:9273 +#: guix-git/doc/guix.texi:9334 msgid "Return the complete file name for @var{name} as found in @var{inputs}; @code{search-input-file} searches for a regular file and @code{search-input-directory} searches for a directory. If @var{name} could not be found, an exception is raised." msgstr "Liefert den vollständigen Dateinamen von @var{Name}, das in allen @var{Eingaben} gesucht wird. @code{search-input-file} sucht nach einer regulären Datei, während @code{search-input-directory} nach einem Verzeichnis sucht. Wenn der @var{Name} nicht vorkommt, wird eine Ausnahme ausgelöst." #. type: deffn -#: guix-git/doc/guix.texi:9277 +#: guix-git/doc/guix.texi:9338 msgid "Here, @var{inputs} must be an association list like @code{inputs} and @code{native-inputs} as available to build phases (@pxref{Build Phases})." msgstr "Hierbei muss für @var{Eingaben} eine assoziative Liste wie @code{inputs} oder @code{native-inputs} übergeben werden, die für Erstellungsphasen zur Verfügung steht (siehe @ref{Build Phases})." #. type: Plain text -#: guix-git/doc/guix.texi:9281 +#: guix-git/doc/guix.texi:9342 msgid "Here is a (simplified) example of how @code{search-input-file} is used in a build phase of the @code{wireguard-tools} package:" msgstr "Hier ist ein (vereinfachtes) Beispiel, wie @code{search-input-file} in einer Erstellungsphase des @code{wireguard-tools}-Pakets benutzt wird:" #. type: lisp -#: guix-git/doc/guix.texi:9290 +#: guix-git/doc/guix.texi:9351 #, no-wrap msgid "" "(add-after 'install 'wrap-wg-quick\n" @@ -18292,35 +18415,248 @@ msgstr "" " #:sh (search-input-file inputs \"bin/bash\")\n" " `(\"PATH\" \":\" prefix ,(list coreutils))))))\n" +#. type: subsection +#: guix-git/doc/guix.texi:9353 +#, fuzzy, no-wrap +#| msgid "Commit Revocation" +msgid "Program Invocation" +msgstr "Entzug des Commit-Zugriffs" + +#. type: cindex +#: guix-git/doc/guix.texi:9355 +#, no-wrap +msgid "program invocation, from Scheme" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:9356 +#, no-wrap +msgid "invoking programs, from Scheme" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9360 +msgid "You'll find handy procedures to spawn processes in this module, essentially convenient wrappers around Guile's @code{system*} (@pxref{Processes, @code{system*},, guile, GNU Guile Reference Manual})." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9361 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} guix-os @var{variants}@dots{}" +msgid "{Scheme Procedure} invoke @var{program} @var{args}@dots{}" +msgstr "{Scheme-Prozedur} guix-os @var{Varianten}…" + +#. type: deffn +#: guix-git/doc/guix.texi:9365 +msgid "Invoke @var{program} with the given @var{args}. Raise an @code{&invoke-error} exception if the exit code is non-zero; otherwise return @code{#t}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9369 +msgid "The advantage compared to @code{system*} is that you do not need to check the return value. This reduces boilerplate in shell-script-like snippets for instance in package build phases." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9371 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} inferior-package? @var{obj}" +msgid "{Scheme Procedure} invoke-error? @var{c}" +msgstr "{Scheme-Prozedur} inferior-package? @var{Objekt}" + +#. type: deffn +#: guix-git/doc/guix.texi:9373 +#, fuzzy +#| msgid "Return true if @var{obj} is an inferior package." +msgid "Return true if @var{c} is an @code{&invoke-error} condition." +msgstr "Liefert wahr, wenn das @var{obj} ein Untergeordneter ist." + +#. type: deffn +#: guix-git/doc/guix.texi:9375 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} inferior-package? @var{obj}" +msgid "{Scheme Procedure} invoke-error-program @var{c}" +msgstr "{Scheme-Prozedur} inferior-package? @var{Objekt}" + +#. type: deffnx +#: guix-git/doc/guix.texi:9376 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} inferior-package-inputs @var{package}" +msgid "{Scheme Procedure} invoke-error-arguments @var{c}" +msgstr "{Scheme-Prozedur} inferior-package-inputs @var{Paket}" + +#. type: deffnx +#: guix-git/doc/guix.texi:9377 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} directory-exists? @var{dir}" +msgid "{Scheme Procedure} invoke-error-exit-status @var{c}" +msgstr "{Scheme-Prozedur} directory-exists? @var{Verzeichnis}" + +#. type: deffnx +#: guix-git/doc/guix.texi:9378 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} inferior-package-name @var{package}" +msgid "{Scheme Procedure} invoke-error-term-signal @var{c}" +msgstr "{Scheme-Prozedur} inferior-package-name @var{Paket}" + +#. type: deffnx +#: guix-git/doc/guix.texi:9379 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} inferior-package-name @var{package}" +msgid "{Scheme Procedure} invoke-error-stop-signal @var{c}" +msgstr "{Scheme-Prozedur} inferior-package-name @var{Paket}" + +#. type: deffn +#: guix-git/doc/guix.texi:9381 +msgid "Access specific fields of @var{c}, an @code{&invoke-error} condition." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9383 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} screen-locker-service @var{package} [@var{program}]" +msgid "{Scheme Procedure} report-invoke-error @var{c} [@var{port}]" +msgstr "{Scheme-Prozedur} screen-locker-service @var{Paket} [@var{Programm}]" + +#. type: deffn +#: guix-git/doc/guix.texi:9386 +msgid "Report to @var{port} (by default the current error port) about @var{c}, an @code{&invoke-error} condition, in a human-friendly way." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9388 +#, fuzzy +#| msgid "... would look like this:" +msgid "Typical usage would look like this:" +msgstr "… dieses hier:" + +#. type: lisp +#: guix-git/doc/guix.texi:9392 +#, fuzzy, no-wrap +#| msgid "" +#| "(use-modules (guix utils)\n" +#| " (guix store)\n" +#| " (guix derivations))\n" +#| "\n" +msgid "" +"(use-modules (srfi srfi-34) ;for 'guard'\n" +" (guix build utils))\n" +"\n" +msgstr "" +"(use-modules (guix utils)\n" +" (guix store)\n" +" (guix derivations))\n" +"\n" + +#. type: lisp +#: guix-git/doc/guix.texi:9396 +#, no-wrap +msgid "" +"(guard (c ((invoke-error? c)\n" +" (report-invoke-error c)))\n" +" (invoke \"date\" \"--imaginary-option\"))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9398 +#, no-wrap +msgid "@print{} command \"date\" \"--imaginary-option\" failed with status 1\n" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9401 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} file-append @var{obj} @var{suffix} @dots{}" +msgid "{Scheme Procedure} invoke/quiet @var{program} @var{args}@dots{}" +msgstr "{Scheme-Prozedur} file-append @var{Objekt} @var{Suffix} …" + +#. type: deffn +#: guix-git/doc/guix.texi:9407 +msgid "Invoke @var{program} with @var{args} and capture @var{program}'s standard output and standard error. If @var{program} succeeds, print nothing and return the unspecified value; otherwise, raise a @code{&message} error condition that includes the status code and the output of @var{program}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9409 +#, fuzzy +#| msgid "Here's an example use:" +msgid "Here's an example:" +msgstr "Hier ist ein Beispiel für seine Verwendung:" + +#. type: lisp +#: guix-git/doc/guix.texi:9414 +#, fuzzy, no-wrap +#| msgid "" +#| "(use-modules (guix utils)\n" +#| " (guix store)\n" +#| " (guix derivations))\n" +#| "\n" +msgid "" +"(use-modules (srfi srfi-34) ;for 'guard'\n" +" (srfi srfi-35) ;for 'message-condition?'\n" +" (guix build utils))\n" +"\n" +msgstr "" +"(use-modules (guix utils)\n" +" (guix store)\n" +" (guix derivations))\n" +"\n" + +#. type: lisp +#: guix-git/doc/guix.texi:9419 +#, no-wrap +msgid "" +"(guard (c ((message-condition? c)\n" +" (display (condition-message c))))\n" +" (invoke/quiet \"date\") ;all is fine\n" +" (invoke/quiet \"date\" \"--imaginary-option\"))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9421 +#, no-wrap +msgid "" +"@print{} 'date --imaginary-option' exited with status 1; output follows:\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9424 +#, no-wrap +msgid "" +" date: unrecognized option '--imaginary-option'\n" +" Try 'date --help' for more information.\n" +msgstr "" + #. type: Plain text -#: guix-git/doc/guix.texi:9301 +#: guix-git/doc/guix.texi:9436 msgid "The @code{(guix build utils)} also contains tools to manipulate build phases as used by build systems (@pxref{Build Systems}). Build phases are represented as association lists or ``alists'' (@pxref{Association Lists,,, guile, GNU Guile Reference Manual}) where each key is a symbol naming the phase and the associated value is a procedure (@pxref{Build Phases})." msgstr "@code{(guix build utils)} enthält auch Werkzeuge, um die von Erstellungssystemen benutzten Erstellungsphasen zu verändern (siehe @ref{Build Systems}). Erstellungsphasen werden durch assoziative Listen oder „Alists“ repräsentiert (siehe @ref{Association Lists,,, guile, Referenzhandbuch zu GNU Guile}), wo jeder Schlüssel ein Symbol ist, das den Namen der Phase angibt, und der assoziierte Wert eine Prozedur ist (siehe @ref{Build Phases})." #. type: Plain text -#: guix-git/doc/guix.texi:9305 +#: guix-git/doc/guix.texi:9440 msgid "Guile core and the @code{(srfi srfi-1)} module both provide tools to manipulate alists. The @code{(guix build utils)} module complements those with tools written with build phases in mind." msgstr "Die zum Kern von Guile („Guile core“) gehörenden Prozeduren und das Modul @code{(srfi srfi-1)} stellen beide Werkzeuge zum Bearbeiten von Alists zur Verfügung. Das Modul @code{(guix build utils)} ergänzt sie um Werkzeuge, die speziell für Erstellungsphasen gedacht sind." #. type: cindex -#: guix-git/doc/guix.texi:9306 +#: guix-git/doc/guix.texi:9441 #, no-wrap msgid "build phases, modifying" msgstr "Erstellungsphasen, Ändern von" #. type: deffn -#: guix-git/doc/guix.texi:9307 +#: guix-git/doc/guix.texi:9442 #, no-wrap msgid "{Scheme Syntax} modify-phases @var{phases} @var{clause}@dots{}" msgstr "{Scheme-Syntax} modify-phases @var{Phasen} @var{Klausel}…" #. type: deffn -#: guix-git/doc/guix.texi:9310 +#: guix-git/doc/guix.texi:9445 msgid "Modify @var{phases} sequentially as per each @var{clause}, which may have one of the following forms:" msgstr "Die @var{Phasen} der Reihe nach entsprechend jeder @var{Klausel} ändern. Die Klauseln dürfen eine der folgenden Formen haben:" #. type: lisp -#: guix-git/doc/guix.texi:9316 +#: guix-git/doc/guix.texi:9451 #, no-wrap msgid "" "(delete @var{old-phase-name})\n" @@ -18334,17 +18670,17 @@ msgstr "" "(add-after @var{alter-Phasenname} @var{neuer-Phasenname} @var{neue-Phase})\n" #. type: deffn -#: guix-git/doc/guix.texi:9320 +#: guix-git/doc/guix.texi:9455 msgid "Where every @var{phase-name} above is an expression evaluating to a symbol, and @var{new-phase} an expression evaluating to a procedure." msgstr "Jeder @var{Phasenname} oben ist ein Ausdruck, der zu einem Symbol auswertet, und @var{neue-Phase} ist ein Ausdruck, der zu einer Prozedur auswertet." #. type: Plain text -#: guix-git/doc/guix.texi:9331 +#: guix-git/doc/guix.texi:9466 msgid "The example below is taken from the definition of the @code{grep} package. It adds a phase to run after the @code{install} phase, called @code{fix-egrep-and-fgrep}. That phase is a procedure (@code{lambda*} is for anonymous procedures) that takes a @code{#:outputs} keyword argument and ignores extra keyword arguments (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual}, for more on @code{lambda*} and optional and keyword arguments.) The phase uses @code{substitute*} to modify the installed @file{egrep} and @file{fgrep} scripts so that they refer to @code{grep} by its absolute file name:" msgstr "Folgendes Beispiel stammt aus der Definition des @code{grep}-Pakets. Es fügt eine neue Phase namens @code{egrep-und-fgrep-korrigieren} hinzu, die auf die @code{install}-Phase folgen soll. Diese Phase ist eine Prozedur (@code{lambda*} bedeutet, sie ist eine Prozedur ohne eigenen Namen), die ein Schlüsselwort @code{#:outputs} bekommt und die restlichen Schlüsselwortargumente ignoriert (siehe @ref{Optional Arguments,,, guile, Referenzhandbuch zu GNU Guile} für mehr Informationen zu @code{lambda*} und optionalen sowie Schlüsselwort-Argumenten). In der Phase wird @code{substitute*} benutzt, um die installierten Skripte @file{egrep} und @file{fgrep} so zu verändern, dass sie @code{grep} anhand seines absoluten Dateinamens aufrufen:" #. type: lisp -#: guix-git/doc/guix.texi:9345 +#: guix-git/doc/guix.texi:9480 #, no-wrap msgid "" "(modify-phases %standard-phases\n" @@ -18374,12 +18710,12 @@ msgstr "" " #t))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:9352 +#: guix-git/doc/guix.texi:9487 msgid "In the example below, phases are modified in two ways: the standard @code{configure} phase is deleted, presumably because the package does not have a @file{configure} script or anything similar, and the default @code{install} phase is replaced by one that manually copies the executable files to be installed:" msgstr "In dem Beispiel, das nun folgt, werden Phasen auf zweierlei Art geändert: Die Standard-@code{configure}-Phase wird gelöscht, meistens weil das Paket über kein @file{configure}-Skript oder etwas Ähnliches verfügt, und die vorgegebene @code{install}-Phase wird durch eine ersetzt, in der die zu installierenden ausführbaren Dateien manuell kopiert werden." #. type: lisp -#: guix-git/doc/guix.texi:9365 +#: guix-git/doc/guix.texi:9500 #, no-wrap msgid "" "(modify-phases %standard-phases\n" @@ -18407,377 +18743,618 @@ msgstr "" " #t))))\n" #. type: cindex -#: guix-git/doc/guix.texi:9373 +#: guix-git/doc/guix.texi:9507 +#, fuzzy, no-wrap +#| msgid "search paths" +msgid "search path" +msgstr "Suchpfade" + +#. type: Plain text +#: guix-git/doc/guix.texi:9514 +msgid "Many programs and libraries look for input data in a @dfn{search path}, a list of directories: shells like Bash look for executables in the command search path, a C compiler looks for @file{.h} files in its header search path, the Python interpreter looks for @file{.py} files in its search path, the spell checker has a search path for dictionaries, and so on." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9522 +msgid "Search paths can usually be defined or overridden @i{via} environment variables (@pxref{Environment Variables,,, libc, The GNU C Library Reference Manual}). For example, the search paths mentioned above can be changed by defining the @env{PATH}, @env{C_INCLUDE_PATH}, @env{PYTHONPATH} (or @env{GUIX_PYTHONPATH}), and @env{DICPATH} environment variables---you know, all these something-PATH variables that you need to get right or things ``won't be found''." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9532 +msgid "You may have noticed from the command line that Guix ``knows'' which search path environment variables should be defined, and how. When you install packages in your default profile, the file @file{~/.guix-profile/etc/profile} is created, which you can ``source'' from the shell to set those variables. Likewise, if you ask @command{guix shell} to create an environment containing Python and NumPy, a Python library, and if you pass it the @option{--search-paths} option, it will tell you about @env{PATH} and @env{GUIX_PYTHONPATH} (@pxref{Invoking guix shell}):" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9537 +#, no-wrap +msgid "" +"$ guix shell python python-numpy --pure --search-paths\n" +"export PATH=\"/gnu/store/@dots{}-profile/bin\"\n" +"export GUIX_PYTHONPATH=\"/gnu/store/@dots{}-profile/lib/python3.9/site-packages\"\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9541 +msgid "When you omit @option{--search-paths}, it defines these environment variables right away, such that Python can readily find NumPy:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9550 +#, no-wrap +msgid "" +"$ guix shell python python-numpy -- python3\n" +"Python 3.9.6 (default, Jan 1 1970, 00:00:01)\n" +"[GCC 10.3.0] on linux\n" +"Type \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n" +">>> import numpy\n" +">>> numpy.version.version\n" +"'1.20.3'\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9555 +msgid "For this to work, the definition of the @code{python} package @emph{declares} the search path it cares about and its associated environment variable, @env{GUIX_PYTHONPATH}. It looks like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9565 +#, no-wrap +msgid "" +"(package\n" +" (name \"python\")\n" +" (version \"3.9.9\")\n" +" ;; some fields omitted...\n" +" (native-search-paths\n" +" (list (search-path-specification\n" +" (variable \"GUIX_PYTHONPATH\")\n" +" (files (list \"lib/python/3.9/site-packages\"))))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9580 +msgid "What this @code{native-search-paths} field says is that, when the @code{python} package is used, the @env{GUIX_PYTHONPATH} environment variable must be defined to include all the @file{lib/python/3.9/site-packages} sub-directories encountered in its environment. (The @code{native-} bit means that, if we are in a cross-compilation environment, only native inputs may be added to the search path; @pxref{package Reference, @code{search-paths}}.) In the NumPy example above, the profile where @code{python} appears contains exactly one such sub-directory, and @env{GUIX_PYTHONPATH} is set to that. When there are several @file{lib/python/3.9/site-packages}---this is the case in package build environments---they are all added to @env{GUIX_PYTHONPATH}, separated by colons (@code{:})." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9587 +msgid "Notice that @env{GUIX_PYTHONPATH} is specified as part of the definition of the @code{python} package, and @emph{not} as part of that of @code{python-numpy}. This is because this environment variable ``belongs'' to Python, not NumPy: Python actually reads the value of that variable and honors it." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9591 +msgid "Corollary: if you create a profile that does not contain @code{python}, @code{GUIX_PYTHONPATH} will @emph{not} be defined, even if it contains packages that provide @file{.py} files:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9595 +#, no-wrap +msgid "" +"$ guix shell python-numpy --search-paths --pure\n" +"export PATH=\"/gnu/store/@dots{}-profile/bin\"\n" +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9599 +msgid "This makes a lot of sense if we look at this profile in isolation: no software in this profile would read @env{GUIX_PYTHONPATH}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9609 +msgid "Of course, there are many variations on that theme: some packages honor more than one search path, some use separators other than colon, some accumulate several directories in their search path, and so on. A more complex example is the search path of libxml2: the value of the @env{XML_CATALOG_FILES} environment variable is space-separated, it must contain a list of @file{catalog.xml} files (not directories), which are to be found in @file{xml} sub-directories---nothing less. The search path specification looks like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9621 +#, no-wrap +msgid "" +"(package\n" +" (name \"libxml2\")\n" +" ;; some fields omitted\n" +" (native-search-paths\n" +" (list (search-path-specification\n" +" (variable \"XML_CATALOG_FILES\")\n" +" (separator \" \")\n" +" (files '(\"xml\"))\n" +" (file-pattern \"^catalog\\\\.xml$\")\n" +" (file-type 'regular)))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9624 +msgid "Worry not, search path specifications are usually not this tricky." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9628 +msgid "The @code{(guix search-paths)} module defines the data type of search path specifications and a number of helper procedures. Below is the reference of search path specifications." +msgstr "" + +#. type: deftp +#: guix-git/doc/guix.texi:9629 +#, fuzzy, no-wrap +#| msgid "{Data Type} avahi-configuration" +msgid "{Data Type} search-path-specification" +msgstr "{Datentyp} avahi-configuration" + +#. type: deftp +#: guix-git/doc/guix.texi:9631 +#, fuzzy +#| msgid "This is the data type for the NTP service configuration." +msgid "The data type for search path specifications." +msgstr "Der Datentyp für die Dienstkonfiguration des NTP-Dienstes." + +#. type: code{#1} +#: guix-git/doc/guix.texi:9633 +#, fuzzy, no-wrap +#| msgid "iptables" +msgid "variable" +msgstr "iptables" + +#. type: table +#: guix-git/doc/guix.texi:9635 +#, fuzzy +#| msgid "Passes the specified environment variable(s) to child processes; a list of strings." +msgid "The name of the environment variable for this search path (a string)." +msgstr "Übergibt die angegebene(n) Umgebungsvariable(n) an Kindprozesse, als Liste von Zeichenketten." + +#. type: code{#1} +#: guix-git/doc/guix.texi:9636 guix-git/doc/guix.texi:17482 +#, no-wrap +msgid "files" +msgstr "files" + +#. type: table +#: guix-git/doc/guix.texi:9639 +#, fuzzy +#| msgid "A list of command-line flags that should be passed to the @code{patch} command." +msgid "The list of sub-directories (strings) that should be added to the search path." +msgstr "Eine Liste der Befehlszeilenoptionen, die dem @code{patch}-Befehl übergeben werden sollen." + +#. type: item +#: guix-git/doc/guix.texi:9640 +#, fuzzy, no-wrap +#| msgid "@code{secret} (default: @code{\"\"})" +msgid "@code{separator} (default: @code{\":\"})" +msgstr "@code{secret} (Vorgabe: @code{\"\"})" + +#. type: table +#: guix-git/doc/guix.texi:9642 +msgid "The string used to separate search path components." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9650 +msgid "As a special case, a @code{separator} value of @code{#f} specifies a ``single-component search path''---in other words, a search path that cannot contain more than one element. This is useful in some cases, such as the @code{SSL_CERT_DIR} variable (honored by OpenSSL, cURL, and a few other packages) or the @code{ASPELL_DICT_DIR} variable (honored by the GNU Aspell spell checker), both of which must point to a single directory." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9651 +#, fuzzy, no-wrap +#| msgid "@code{type} (default: @code{'server})" +msgid "@code{file-type} (default: @code{'directory})" +msgstr "@code{type} (Vorgabe: @code{'server})" + +#. type: table +#: guix-git/doc/guix.texi:9655 +msgid "The type of file being matched---@code{'directory} or @code{'regular}, though it can be any symbol returned by @code{stat:type} (@pxref{File System, @code{stat},, guile, GNU Guile Reference Manual})." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9658 +msgid "In the libxml2 example above, we would match regular files; in the Python example, we would match directories." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9659 +#, fuzzy, no-wrap +#| msgid "@code{unsafe-pattern} (default: @code{#f})" +msgid "@code{file-pattern} (default: @code{#f})" +msgstr "@code{unsafe-pattern} (Vorgabe: @code{#f})" + +#. type: table +#: guix-git/doc/guix.texi:9663 +msgid "This must be either @code{#f} or a regular expression specifying files to be matched @emph{within} the sub-directories specified by the @code{files} field." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9665 +msgid "Again, the libxml2 example shows a situation where this is needed." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9671 +msgid "How do you turn search path specifications on one hand and a bunch of directories on the other hand in a set of environment variable definitions? That's the job of @code{evaluate-search-paths}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9672 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} inferior-package-search-paths @var{package}" +msgid "{Scheme Procedure} evaluate-search-paths @var{search-paths} @" +msgstr "{Scheme-Prozedur} inferior-package-search-paths @var{Paket}" + +#. type: deffn +#: guix-git/doc/guix.texi:9678 +msgid "@var{directories} [@var{getenv}] Evaluate @var{search-paths}, a list of search-path specifications, for @var{directories}, a list of directory names, and return a list of specification/value pairs. Use @var{getenv} to determine the current settings and report only settings not already effective." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9682 +msgid "The @code{(guix profiles)} provides a higher-level helper procedure, @code{load-profile}, that sets the environment variables of a profile." +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:9687 #, no-wrap msgid "store items" msgstr "Store-Objekte" #. type: cindex -#: guix-git/doc/guix.texi:9374 +#: guix-git/doc/guix.texi:9688 #, no-wrap msgid "store paths" msgstr "Store-Pfade" #. type: Plain text -#: guix-git/doc/guix.texi:9385 +#: guix-git/doc/guix.texi:9699 msgid "Conceptually, the @dfn{store} is the place where derivations that have been built successfully are stored---by default, @file{/gnu/store}. Sub-directories in the store are referred to as @dfn{store items} or sometimes @dfn{store paths}. The store has an associated database that contains information such as the store paths referred to by each store path, and the list of @emph{valid} store items---results of successful builds. This database resides in @file{@var{localstatedir}/guix/db}, where @var{localstatedir} is the state directory specified @i{via} @option{--localstatedir} at configure time, usually @file{/var}." msgstr "Konzeptionell ist der @dfn{Store} der Ort, wo Ableitungen nach erfolgreicher Erstellung gespeichert werden@tie{}— standardmäßig finden Sie ihn in @file{/gnu/store}. Unterverzeichnisse im Store werden @dfn{Store-Objekte} oder manchmal auch @dfn{Store-Pfade} genannt. Mit dem Store ist eine Datenbank assoziiert, die Informationen enthält wie zum Beispiel, welche Store-Pfade jeder Store-Pfad jeweils referenziert, und eine Liste, welche Store-Objekte @emph{gültig} sind, also Ergebnisse erfolgreicher Erstellungen sind. Die Datenbank befindet sich in @file{@var{localstatedir}/guix/db}, wobei @var{localstatedir} das mit @option{--localstatedir} bei der Ausführung von „configure“ angegebene Zustandsverzeichnis ist, normalerweise @file{/var}." #. type: Plain text -#: guix-git/doc/guix.texi:9390 +#: guix-git/doc/guix.texi:9704 msgid "The store is @emph{always} accessed by the daemon on behalf of its clients (@pxref{Invoking guix-daemon}). To manipulate the store, clients connect to the daemon over a Unix-domain socket, send requests to it, and read the result---these are remote procedure calls, or RPCs." msgstr "Auf den Store wird @emph{nur} durch den Daemon im Auftrag seiner Clients zugegriffen (siehe @ref{Invoking guix-daemon}). Um den Store zu verändern, verbinden sich Clients über einen Unix-Socket mit dem Daemon, senden ihm entsprechende Anfragen und lesen dann dessen Antwort@tie{}— so etwas nennt sich entfernter Prozeduraufruf (englisch „Remote Procedure Call“ oder kurz RPC)." #. type: quotation -#: guix-git/doc/guix.texi:9395 +#: guix-git/doc/guix.texi:9709 msgid "Users must @emph{never} modify files under @file{/gnu/store} directly. This would lead to inconsistencies and break the immutability assumptions of Guix's functional model (@pxref{Introduction})." msgstr "Benutzer dürfen @emph{niemals} Dateien in @file{/gnu/store} direkt verändern, sonst wären diese nicht mehr konsistent und die Grundannahmen im funktionalen Modell von Guix, dass die Objekte unveränderlich sind, wären dahin (siehe @ref{Introduction})." #. type: quotation -#: guix-git/doc/guix.texi:9399 +#: guix-git/doc/guix.texi:9713 msgid "@xref{Invoking guix gc, @command{guix gc --verify}}, for information on how to check the integrity of the store and attempt recovery from accidental modifications." msgstr "Siehe @ref{Invoking guix gc, @command{guix gc --verify}} für Informationen, wie die Integrität des Stores überprüft und nach versehentlichen Veränderungen unter Umständen wiederhergestellt werden kann." #. type: Plain text -#: guix-git/doc/guix.texi:9406 +#: guix-git/doc/guix.texi:9720 msgid "The @code{(guix store)} module provides procedures to connect to the daemon, and to perform RPCs. These are described below. By default, @code{open-connection}, and thus all the @command{guix} commands, connect to the local daemon or to the URI specified by the @env{GUIX_DAEMON_SOCKET} environment variable." msgstr "Das Modul @code{(guix store)} bietet Prozeduren an, um sich mit dem Daemon zu verbinden und entfernte Prozeduraufrufe durchzuführen. Diese werden im Folgenden beschrieben. Das vorgegebene Verhalten von @code{open-connection}, und daher allen @command{guix}-Befehlen, ist, sich mit dem lokalen Daemon oder dem an der in der Umgebungsvariablen @env{GUIX_DAEMON_SOCKET} angegeben URL zu verbinden." #. type: defvr -#: guix-git/doc/guix.texi:9407 +#: guix-git/doc/guix.texi:9721 #, no-wrap msgid "{Environment Variable} GUIX_DAEMON_SOCKET" msgstr "{Umgebungsvariable} GUIX_DAEMON_SOCKET" #. type: defvr -#: guix-git/doc/guix.texi:9412 +#: guix-git/doc/guix.texi:9726 msgid "When set, the value of this variable should be a file name or a URI designating the daemon endpoint. When it is a file name, it denotes a Unix-domain socket to connect to. In addition to file names, the supported URI schemes are:" msgstr "Ist diese Variable gesetzt, dann sollte ihr Wert ein Dateipfad oder eine URI sein, worüber man sich mit dem Daemon verbinden kann. Ist der Wert der Pfad zu einer Datei, bezeichnet dieser einen Unix-Socket, mit dem eine Verbindung hergestellt werden soll. Ist er eine URI, so werden folgende URI-Schemata unterstützt:" #. type: code{#1} -#: guix-git/doc/guix.texi:9414 guix-git/doc/guix.texi:26183 +#: guix-git/doc/guix.texi:9728 guix-git/doc/guix.texi:26520 #, no-wrap msgid "file" msgstr "file" #. type: itemx -#: guix-git/doc/guix.texi:9415 +#: guix-git/doc/guix.texi:9729 #, no-wrap msgid "unix" msgstr "unix" #. type: table -#: guix-git/doc/guix.texi:9419 +#: guix-git/doc/guix.texi:9733 msgid "These are for Unix-domain sockets. @code{file:///var/guix/daemon-socket/socket} is equivalent to @file{/var/guix/daemon-socket/socket}." msgstr "Für Unix-Sockets. @code{file:///var/guix/daemon-socket/socket} kann gleichbedeutend auch als @file{/var/guix/daemon-socket/socket} angegeben werden." #. type: table -#: guix-git/doc/guix.texi:9428 +#: guix-git/doc/guix.texi:9742 msgid "These URIs denote connections over TCP/IP, without encryption nor authentication of the remote host. The URI must specify the host name and optionally a port number (by default port 44146 is used):" msgstr "Solche URIs benennen Verbindungen über TCP/IP ohne Verschlüsselung oder Authentifizierung des entfernten Rechners. Die URI muss den Hostnamen, also den Rechnernamen des entfernten Rechners, und optional eine Portnummer angeben (sonst wird als Vorgabe der Port 44146 benutzt):" #. type: example -#: guix-git/doc/guix.texi:9431 +#: guix-git/doc/guix.texi:9745 #, no-wrap msgid "guix://master.guix.example.org:1234\n" msgstr "guix://master.guix.example.org:1234\n" #. type: table -#: guix-git/doc/guix.texi:9436 +#: guix-git/doc/guix.texi:9750 msgid "This setup is suitable on local networks, such as clusters, where only trusted nodes may connect to the build daemon at @code{master.guix.example.org}." msgstr "Diese Konfiguration ist für lokale Netzwerke wie etwa in Rechen-Clustern geeignet, wo sich nur vertrauenswürdige Knoten mit dem Erstellungs-Daemon z.B.@: unter @code{master.guix.example.org} verbinden können." #. type: table -#: guix-git/doc/guix.texi:9440 +#: guix-git/doc/guix.texi:9754 msgid "The @option{--listen} option of @command{guix-daemon} can be used to instruct it to listen for TCP connections (@pxref{Invoking guix-daemon, @option{--listen}})." msgstr "Die Befehlszeilenoption @option{--listen} von @command{guix-daemon} kann benutzt werden, damit er auf TCP-Verbindungen lauscht (siehe @ref{Invoking guix-daemon, @option{--listen}})." #. type: item -#: guix-git/doc/guix.texi:9441 +#: guix-git/doc/guix.texi:9755 #, no-wrap msgid "ssh" msgstr "ssh" #. type: cindex -#: guix-git/doc/guix.texi:9442 +#: guix-git/doc/guix.texi:9756 #, no-wrap msgid "SSH access to build daemons" msgstr "SSH-Zugriff auf Erstellungs-Daemons" #. type: table -#: guix-git/doc/guix.texi:9448 +#: guix-git/doc/guix.texi:9762 msgid "These URIs allow you to connect to a remote daemon over SSH@. This feature requires Guile-SSH (@pxref{Requirements}) and a working @command{guile} binary in @env{PATH} on the destination machine. It supports public key and GSSAPI authentication. A typical URL might look like this:" msgstr "Mit solchen URIs kann eine Verbindung zu einem entfernten Daemon über SSH hergestellt werden. Diese Funktionalität setzt Guile-SSH voraus (siehe @ref{Requirements}) sowie eine funktionierende @command{guile}-Binärdatei, deren Ort im @env{PATH} der Zielmaschine eingetragen ist. Authentisierung über einen öffentlichen Schlüssel oder GSSAPI ist möglich. Eine typische URL sieht so aus:" #. type: example -#: guix-git/doc/guix.texi:9451 +#: guix-git/doc/guix.texi:9765 #, no-wrap msgid "ssh://charlie@@guix.example.org:22\n" msgstr "ssh://charlie@@guix.example.org:22\n" #. type: table -#: guix-git/doc/guix.texi:9455 +#: guix-git/doc/guix.texi:9769 msgid "As for @command{guix copy}, the usual OpenSSH client configuration files are honored (@pxref{Invoking guix copy})." msgstr "Was @command{guix copy} betrifft, richtet es sich nach den üblichen OpenSSH-Client-Konfigurationsdateien (siehe @ref{Invoking guix copy})." #. type: defvr -#: guix-git/doc/guix.texi:9458 +#: guix-git/doc/guix.texi:9772 msgid "Additional URI schemes may be supported in the future." msgstr "In Zukunft könnten weitere URI-Schemata unterstützt werden." #. type: quotation -#: guix-git/doc/guix.texi:9465 +#: guix-git/doc/guix.texi:9779 msgid "The ability to connect to remote build daemons is considered experimental as of @value{VERSION}. Please get in touch with us to share any problems or suggestions you may have (@pxref{Contributing})." msgstr "Die Fähigkeit, sich mit entfernten Erstellungs-Daemons zu verbinden, sehen wir als experimentell an, Stand @value{VERSION}. Bitte diskutieren Sie mit uns jegliche Probleme oder Vorschläge, die Sie haben könnten (siehe @ref{Contributing})." #. type: deffn -#: guix-git/doc/guix.texi:9468 +#: guix-git/doc/guix.texi:9782 #, no-wrap msgid "{Scheme Procedure} open-connection [@var{uri}] [#:reserve-space? #t]" msgstr "{Scheme-Prozedur} open-connection [@var{Uri}] [#:reserve-space? #t]" #. type: deffn -#: guix-git/doc/guix.texi:9473 +#: guix-git/doc/guix.texi:9787 msgid "Connect to the daemon over the Unix-domain socket at @var{uri} (a string). When @var{reserve-space?} is true, instruct it to reserve a little bit of extra space on the file system so that the garbage collector can still operate should the disk become full. Return a server object." msgstr "Sich mit dem Daemon über den Unix-Socket an @var{Uri} verbinden (einer Zeichenkette). Wenn @var{reserve-space?} wahr ist, lässt ihn das etwas zusätzlichen Speicher im Dateisystem reservieren, damit der Müllsammler auch dann noch funktioniert, wenn die Platte zu voll wird. Liefert ein Server-Objekt." #. type: deffn -#: guix-git/doc/guix.texi:9476 +#: guix-git/doc/guix.texi:9790 msgid "@var{file} defaults to @code{%default-socket-path}, which is the normal location given the options that were passed to @command{configure}." msgstr "@var{Uri} nimmt standardmäßig den Wert von @code{%default-socket-path} an, was dem bei der Installation mit dem Aufruf von @command{configure} ausgewählten Vorgabeort entspricht, gemäß den Befehlszeilenoptionen, mit denen @command{configure} aufgerufen wurde." #. type: deffn -#: guix-git/doc/guix.texi:9478 +#: guix-git/doc/guix.texi:9792 #, no-wrap msgid "{Scheme Procedure} close-connection @var{server}" msgstr "{Scheme-Prozedur} close-connection @var{Server}" #. type: deffn -#: guix-git/doc/guix.texi:9480 +#: guix-git/doc/guix.texi:9794 msgid "Close the connection to @var{server}." msgstr "Die Verbindung zum @var{Server} trennen." #. type: defvr -#: guix-git/doc/guix.texi:9482 +#: guix-git/doc/guix.texi:9796 #, no-wrap msgid "{Scheme Variable} current-build-output-port" msgstr "{Scheme-Variable} current-build-output-port" #. type: defvr -#: guix-git/doc/guix.texi:9485 +#: guix-git/doc/guix.texi:9799 msgid "This variable is bound to a SRFI-39 parameter, which refers to the port where build and error logs sent by the daemon should be written." msgstr "Diese Variable ist an einen SRFI-39-Parameter gebunden, der auf den Scheme-Port verweist, an den vom Daemon empfangene Erstellungsprotokolle und Fehlerprotokolle geschrieben werden sollen." #. type: Plain text -#: guix-git/doc/guix.texi:9489 +#: guix-git/doc/guix.texi:9803 msgid "Procedures that make RPCs all take a server object as their first argument." msgstr "Prozeduren, die entfernte Prozeduraufrufe durchführen, nehmen immer ein Server-Objekt als ihr erstes Argument." #. type: deffn -#: guix-git/doc/guix.texi:9490 +#: guix-git/doc/guix.texi:9804 #, no-wrap msgid "{Scheme Procedure} valid-path? @var{server} @var{path}" msgstr "{Scheme-Prozedur} valid-path? @var{Server} @var{Pfad}" #. type: cindex -#: guix-git/doc/guix.texi:9491 +#: guix-git/doc/guix.texi:9805 #, no-wrap msgid "invalid store items" msgstr "ungültige Store-Objekte" #. type: deffn -#: guix-git/doc/guix.texi:9496 +#: guix-git/doc/guix.texi:9810 msgid "Return @code{#t} when @var{path} designates a valid store item and @code{#f} otherwise (an invalid item may exist on disk but still be invalid, for instance because it is the result of an aborted or failed build)." msgstr "Liefert @code{#t}, wenn der @var{Pfad} ein gültiges Store-Objekt benennt, und sonst @code{#f} (ein ungültiges Objekt kann auf der Platte gespeichert sein, tatsächlich aber ungültig sein, zum Beispiel weil es das Ergebnis einer abgebrochenen oder fehlgeschlagenen Erstellung ist)." #. type: deffn -#: guix-git/doc/guix.texi:9499 +#: guix-git/doc/guix.texi:9813 msgid "A @code{&store-protocol-error} condition is raised if @var{path} is not prefixed by the store directory (@file{/gnu/store})." msgstr "Ein @code{&store-protocol-error}-Fehlerzustand wird ausgelöst, wenn der @var{Pfad} nicht mit dem Store-Verzeichnis als Präfix beginnt (@file{/gnu/store})." #. type: deffn -#: guix-git/doc/guix.texi:9501 +#: guix-git/doc/guix.texi:9815 #, no-wrap msgid "{Scheme Procedure} add-text-to-store @var{server} @var{name} @var{text} [@var{references}]" msgstr "{Scheme-Prozedur} add-text-to-store @var{Server} @var{Name} @var{Text} [@var{Referenzen}]" #. type: deffn -#: guix-git/doc/guix.texi:9505 +#: guix-git/doc/guix.texi:9819 msgid "Add @var{text} under file @var{name} in the store, and return its store path. @var{references} is the list of store paths referred to by the resulting store path." msgstr "Den @var{Text} im Store in einer Datei namens @var{Name} ablegen und ihren Store-Pfad zurückliefern. @var{Referenzen} ist die Liste der Store-Pfade, die der Store-Pfad dann referenzieren soll." #. type: deffn -#: guix-git/doc/guix.texi:9507 +#: guix-git/doc/guix.texi:9821 #, no-wrap msgid "{Scheme Procedure} build-derivations @var{store} @var{derivations} @" msgstr "{Scheme-Prozedur} build-derivations @var{Store} @var{Ableitungen} @" #. type: deffn -#: guix-git/doc/guix.texi:9512 +#: guix-git/doc/guix.texi:9826 msgid "[@var{mode}] Build @var{derivations}, a list of @code{} objects, @file{.drv} file names, or derivation/output pairs, using the specified @var{mode}---@code{(build-mode normal)} by default." msgstr "[@var{Modus}] Die @var{Ableitungen} erstellen (eine Liste von @code{}-Objekten, @file{.drv}-Dateinamen oder Paaren aus je Ableitung und Ausgabe. Dabei gilt der angegebene @var{Modus}@tie{}— vorgegeben ist @code{(build-mode normal)}." #. type: Plain text -#: guix-git/doc/guix.texi:9518 +#: guix-git/doc/guix.texi:9832 msgid "Note that the @code{(guix monads)} module provides a monad as well as monadic versions of the above procedures, with the goal of making it more convenient to work with code that accesses the store (@pxref{The Store Monad})." msgstr "Es sei erwähnt, dass im Modul @code{(guix monads)} eine Monade sowie monadische Versionen obiger Prozeduren angeboten werden, damit an Code, der auf den Store zugreift, bequemer gearbeitet werden kann (siehe @ref{The Store Monad})." #. type: i{#1} -#: guix-git/doc/guix.texi:9521 +#: guix-git/doc/guix.texi:9835 msgid "This section is currently incomplete." msgstr "Dieser Abschnitt ist im Moment noch unvollständig." #. type: cindex -#: guix-git/doc/guix.texi:9525 +#: guix-git/doc/guix.texi:9839 #, no-wrap msgid "derivations" msgstr "Ableitungen" #. type: Plain text -#: guix-git/doc/guix.texi:9529 +#: guix-git/doc/guix.texi:9843 msgid "Low-level build actions and the environment in which they are performed are represented by @dfn{derivations}. A derivation contains the following pieces of information:" msgstr "Systemnahe Erstellungsaktionen sowie die Umgebung, in der selbige durchzuführen sind, werden durch @dfn{Ableitungen} dargestellt. Eine Ableitung enthält folgende Informationen:" #. type: itemize -#: guix-git/doc/guix.texi:9534 +#: guix-git/doc/guix.texi:9848 msgid "The outputs of the derivation---derivations produce at least one file or directory in the store, but may produce more." msgstr "Die Ausgaben, die die Ableitung hat. Ableitungen erzeugen mindestens eine Datei bzw. ein Verzeichnis im Store, können aber auch mehrere erzeugen." #. type: cindex -#: guix-git/doc/guix.texi:9536 +#: guix-git/doc/guix.texi:9850 #, no-wrap msgid "build-time dependencies" msgstr "Erstellungszeitabhängigkeiten" #. type: cindex -#: guix-git/doc/guix.texi:9537 +#: guix-git/doc/guix.texi:9851 #, no-wrap msgid "dependencies, build-time" msgstr "Abhängigkeiten zur Erstellungszeit" #. type: itemize -#: guix-git/doc/guix.texi:9541 +#: guix-git/doc/guix.texi:9855 msgid "The inputs of the derivations---i.e., its build-time dependencies---which may be other derivations or plain files in the store (patches, build scripts, etc.)." msgstr "Die Eingaben der Ableitung, also Abhängigkeiten zur Zeit ihrer Erstellung, die entweder andere Ableitungen oder einfache Dateien im Store sind (wie Patches, Erstellungsskripts usw.)." #. type: itemize -#: guix-git/doc/guix.texi:9544 +#: guix-git/doc/guix.texi:9858 msgid "The system type targeted by the derivation---e.g., @code{x86_64-linux}." msgstr "Das System, wofür mit der Ableitung erstellt wird, also ihr Ziel@tie{}— z.B.@: @code{x86_64-linux}." #. type: itemize -#: guix-git/doc/guix.texi:9548 +#: guix-git/doc/guix.texi:9862 msgid "The file name of a build script in the store, along with the arguments to be passed." msgstr "Der Dateiname eines Erstellungsskripts im Store, zusammen mit den Argumenten, mit denen es aufgerufen werden soll." #. type: itemize -#: guix-git/doc/guix.texi:9551 +#: guix-git/doc/guix.texi:9865 msgid "A list of environment variables to be defined." msgstr "Eine Liste zu definierender Umgebungsvariabler." #. type: cindex -#: guix-git/doc/guix.texi:9554 +#: guix-git/doc/guix.texi:9868 #, no-wrap msgid "derivation path" msgstr "Ableitungspfad" #. type: Plain text -#: guix-git/doc/guix.texi:9562 +#: guix-git/doc/guix.texi:9876 msgid "Derivations allow clients of the daemon to communicate build actions to the store. They exist in two forms: as an in-memory representation, both on the client- and daemon-side, and as files in the store whose name end in @file{.drv}---these files are referred to as @dfn{derivation paths}. Derivations paths can be passed to the @code{build-derivations} procedure to perform the build actions they prescribe (@pxref{The Store})." msgstr "Ableitungen ermöglichen es den Clients des Daemons, diesem Erstellungsaktionen für den Store mitzuteilen. Es gibt davon zwei Arten, sowohl Darstellungen im Arbeitsspeicher jeweils für Client und Daemon, als auch Dateien im Store, deren Namen auf @file{.drv} enden@tie{}— diese Dateien werden als @dfn{Ableitungspfade} bezeichnet. Ableitungspfade können an die Prozedur @code{build-derivations} übergeben werden, damit die darin niedergeschriebenen Erstellungsaktionen durchgeführt werden (siehe @ref{The Store})." #. type: cindex -#: guix-git/doc/guix.texi:9563 +#: guix-git/doc/guix.texi:9877 #, no-wrap msgid "fixed-output derivations" msgstr "Ableitungen mit fester Ausgabe" #. type: Plain text -#: guix-git/doc/guix.texi:9570 +#: guix-git/doc/guix.texi:9884 msgid "Operations such as file downloads and version-control checkouts for which the expected content hash is known in advance are modeled as @dfn{fixed-output derivations}. Unlike regular derivations, the outputs of a fixed-output derivation are independent of its inputs---e.g., a source code download produces the same result regardless of the download method and tools being used." msgstr "Operationen wie das Herunterladen von Dateien und Checkouts von unter Versionskontrolle stehenden Quelldateien, bei denen der Hash des Inhalts im Voraus bekannt ist, werden als @dfn{Ableitungen mit fester Ausgabe} modelliert. Anders als reguläre Ableitungen sind die Ausgaben von Ableitungen mit fester Ausgabe unabhängig von ihren Eingaben@tie{}— z.B.@: liefert das Herunterladen desselben Quellcodes dasselbe Ergebnis unabhängig davon, mit welcher Methode und welchen Werkzeugen er heruntergeladen wurde." #. type: item -#: guix-git/doc/guix.texi:9571 guix-git/doc/guix.texi:13341 +#: guix-git/doc/guix.texi:9885 guix-git/doc/guix.texi:13698 #, no-wrap msgid "references" msgstr "references" #. type: cindex -#: guix-git/doc/guix.texi:9572 +#: guix-git/doc/guix.texi:9886 #, no-wrap msgid "run-time dependencies" msgstr "Laufzeitabhängigkeiten" #. type: cindex -#: guix-git/doc/guix.texi:9573 +#: guix-git/doc/guix.texi:9887 #, no-wrap msgid "dependencies, run-time" msgstr "Abhängigkeiten, zur Laufzeit" #. type: Plain text -#: guix-git/doc/guix.texi:9580 +#: guix-git/doc/guix.texi:9894 msgid "The outputs of derivations---i.e., the build results---have a set of @dfn{references}, as reported by the @code{references} RPC or the @command{guix gc --references} command (@pxref{Invoking guix gc}). References are the set of run-time dependencies of the build results. References are a subset of the inputs of the derivation; this subset is automatically computed by the build daemon by scanning all the files in the outputs." msgstr "Den Ausgaben von Ableitungen@tie{}— d.h.@: Erstellungergebnissen@tie{}— ist eine Liste von @dfn{Referenzen} zugeordnet, die auch der entfernte Prozeduraufruf @code{references} oder der Befehl @command{guix gc --references} liefert (siehe @ref{Invoking guix gc}). Referenzen sind die Menge der Laufzeitabhängigkeiten von Erstellungsergebnissen. Referenzen sind eine Teilmenge der Eingaben von Ableitungen; die Teilmenge wird automatisch ermittelt, indem der Erstellungsdaemon alle Dateien unter den Ausgaben nach Referenzen durchsucht." #. type: Plain text -#: guix-git/doc/guix.texi:9585 +#: guix-git/doc/guix.texi:9899 msgid "The @code{(guix derivations)} module provides a representation of derivations as Scheme objects, along with procedures to create and otherwise manipulate derivations. The lowest-level primitive to create a derivation is the @code{derivation} procedure:" msgstr "Das Modul @code{(guix derivations)} stellt eine Repräsentation von Ableitungen als Scheme-Objekte zur Verfügung, zusammen mit Prozeduren, um Ableitungen zu erzeugen und zu manipulieren. Die am wenigsten abstrahierte Methode, eine Ableitung zu erzeugen, ist mit der Prozedur @code{derivation}:" #. type: deffn -#: guix-git/doc/guix.texi:9586 +#: guix-git/doc/guix.texi:9900 #, no-wrap msgid "{Scheme Procedure} derivation @var{store} @var{name} @var{builder} @" msgstr "{Scheme-Prozedur} derivation @var{Store} @var{Name} @var{Ersteller} @" #. type: deffn -#: guix-git/doc/guix.texi:9595 +#: guix-git/doc/guix.texi:9909 msgid "@var{args} [#:outputs '(\"out\")] [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:inputs '()] [#:env-vars '()] @ [#:system (%current-system)] [#:references-graphs #f] @ [#:allowed-references #f] [#:disallowed-references #f] @ [#:leaked-env-vars #f] [#:local-build? #f] @ [#:substitutable? #t] [#:properties '()] Build a derivation with the given arguments, and return the resulting @code{} object." msgstr "@var{Argumente} [#:outputs '(\"out\")] [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:inputs '()] [#:env-vars '()] @ [#:system (%current-system)] [#:references-graphs #f] @ [#:allowed-references #f] [#:disallowed-references #f] @ [#:leaked-env-vars #f] [#:local-build? #f] @ [#:substitutable? #t] [#:properties '()] Eine Ableitungen mit den @var{Argumente}n erstellen und das resultierende @code{}-Objekt liefern." #. type: deffn -#: guix-git/doc/guix.texi:9602 +#: guix-git/doc/guix.texi:9916 msgid "When @var{hash} and @var{hash-algo} are given, a @dfn{fixed-output derivation} is created---i.e., one whose result is known in advance, such as a file download. If, in addition, @var{recursive?} is true, then that fixed output may be an executable file or a directory and @var{hash} must be the hash of an archive containing this output." msgstr "Wurden @var{hash} und @var{hash-algo} angegeben, wird eine @dfn{Ableitung mit fester Ausgabe} erzeugt@tie{}— d.h.@: eine, deren Ausgabe schon im Voraus bekannt ist, wie z.B.@: beim Herunterladen einer Datei. Wenn des Weiteren auch @var{recursive?} wahr ist, darf die Ableitung mit fester Ausgabe eine ausführbare Datei oder ein Verzeichnis sein und @var{hash} muss die Prüfsumme eines Archivs mit dieser Ausgabe sein." #. type: deffn -#: guix-git/doc/guix.texi:9607 +#: guix-git/doc/guix.texi:9921 msgid "When @var{references-graphs} is true, it must be a list of file name/store path pairs. In that case, the reference graph of each store path is exported in the build environment in the corresponding file, in a simple text format." msgstr "Ist @var{references-graphs} wahr, dann muss es eine Liste von Paaren aus je einem Dateinamen und einem Store-Pfad sein. In diesem Fall wird der Referenzengraph jedes Store-Pfads in einer Datei mit dem angegebenen Namen in der Erstellungsumgebung zugänglich gemacht, in einem einfachen Text-Format." #. type: deffn -#: guix-git/doc/guix.texi:9612 +#: guix-git/doc/guix.texi:9926 msgid "When @var{allowed-references} is true, it must be a list of store items or outputs that the derivation's output may refer to. Likewise, @var{disallowed-references}, if true, must be a list of things the outputs may @emph{not} refer to." msgstr "Ist @var{allowed-references} ein wahr, muss es eine Liste von Store-Objekten oder Ausgaben sein, die die Ausgabe der Ableitung referenzieren darf. Ebenso muss @var{disallowed-references}, wenn es auf wahr gesetzt ist, eine Liste von Dingen bezeichnen, die die Ausgaben @emph{nicht} referenzieren dürfen." #. type: deffn -#: guix-git/doc/guix.texi:9619 +#: guix-git/doc/guix.texi:9933 msgid "When @var{leaked-env-vars} is true, it must be a list of strings denoting environment variables that are allowed to ``leak'' from the daemon's environment to the build environment. This is only applicable to fixed-output derivations---i.e., when @var{hash} is true. The main use is to allow variables such as @code{http_proxy} to be passed to derivations that download files." msgstr "Ist @var{leaked-env-vars} wahr, muss es eine Liste von Zeichenketten sein, die Umgebungsvariable benennen, die aus der Umgebung des Daemons in die Erstellungsumgebung überlaufen@tie{}— ein „Leck“, englisch „leak“. Dies kann nur in Ableitungen mit fester Ausgabe benutzt werden, also wenn @var{hash} wahr ist. So ein Leck kann zum Beispiel benutzt werden, um Variable wie @code{http_proxy} an Ableitungen zu übergeben, die darüber Dateien herunterladen." #. type: deffn -#: guix-git/doc/guix.texi:9624 +#: guix-git/doc/guix.texi:9938 msgid "When @var{local-build?} is true, declare that the derivation is not a good candidate for offloading and should rather be built locally (@pxref{Daemon Offload Setup}). This is the case for small derivations where the costs of data transfers would outweigh the benefits." msgstr "Ist @var{local-build?} wahr, wird die Ableitung als schlechter Kandidat für das Auslagern deklariert, der besser lokal erstellt werden sollte (siehe @ref{Daemon Offload Setup}). Dies betrifft kleine Ableitungen, wo das Übertragen der Daten aufwendiger als ihre Erstellung ist." #. type: deffn -#: guix-git/doc/guix.texi:9629 +#: guix-git/doc/guix.texi:9943 msgid "When @var{substitutable?} is false, declare that substitutes of the derivation's output should not be used (@pxref{Substitutes}). This is useful, for instance, when building packages that capture details of the host CPU instruction set." msgstr "Ist @var{substitutable?} falsch, wird deklariert, dass für die Ausgabe der Ableitung keine Substitute benutzt werden sollen (siehe @ref{Substitutes}). Das ist nützlich, wenn Pakete erstellt werden, die Details über den Prozessorbefehlssatz des Wirtssystems auslesen." #. type: deffn -#: guix-git/doc/guix.texi:9632 +#: guix-git/doc/guix.texi:9946 msgid "@var{properties} must be an association list describing ``properties'' of the derivation. It is kept as-is, uninterpreted, in the derivation." msgstr "@var{properties} muss eine assoziative Liste enthalten, die „Eigenschaften“ der Ableitungen beschreibt. Sie wird genau so, wie sie ist, in der Ableitung gespeichert." #. type: Plain text -#: guix-git/doc/guix.texi:9638 +#: guix-git/doc/guix.texi:9952 msgid "Here's an example with a shell script as its builder, assuming @var{store} is an open connection to the daemon, and @var{bash} points to a Bash executable in the store:" msgstr "Hier ist ein Beispiel mit einem Shell-Skript, das als Ersteller benutzt wird. Es wird angenommen, dass @var{Store} eine offene Verbindung zum Daemon ist und @var{bash} auf eine ausführbare Bash im Store verweist:" #. type: lisp -#: guix-git/doc/guix.texi:9643 +#: guix-git/doc/guix.texi:9957 #, no-wrap msgid "" "(use-modules (guix utils)\n" @@ -18791,7 +19368,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:9652 +#: guix-git/doc/guix.texi:9966 #, no-wrap msgid "" "(let ((builder ; add the Bash script to the store\n" @@ -18813,48 +19390,48 @@ msgstr "" "@result{} # /gnu/store/…-foo>\n" #. type: Plain text -#: guix-git/doc/guix.texi:9659 +#: guix-git/doc/guix.texi:9973 msgid "As can be guessed, this primitive is cumbersome to use directly. A better approach is to write build scripts in Scheme, of course! The best course of action for that is to write the build code as a ``G-expression'', and to pass it to @code{gexp->derivation}. For more information, @pxref{G-Expressions}." msgstr "Wie man sehen kann, ist es umständlich, diese grundlegende Methode direkt zu benutzen. Natürlich ist es besser, Erstellungsskripts in Scheme zu schreiben! Am besten schreibt man den Erstellungscode als „G-Ausdruck“ und übergibt ihn an @code{gexp->derivation}. Mehr Informationen finden Sie im Abschnitt @ref{G-Expressions}." #. type: Plain text -#: guix-git/doc/guix.texi:9664 +#: guix-git/doc/guix.texi:9978 msgid "Once upon a time, @code{gexp->derivation} did not exist and constructing derivations with build code written in Scheme was achieved with @code{build-expression->derivation}, documented below. This procedure is now deprecated in favor of the much nicer @code{gexp->derivation}." msgstr "Doch es gab einmal eine Zeit, zu der @code{gexp->derivation} noch nicht existiert hatte und wo das Zusammenstellen von Ableitungen mit Scheme-Erstellungscode noch mit @code{build-expression->derivation} bewerkstelligt wurde, was im Folgenden beschrieben wird. Diese Prozedur gilt als veraltet und man sollte nunmehr die viel schönere Prozedur @code{gexp->derivation} benutzen." #. type: deffn -#: guix-git/doc/guix.texi:9665 +#: guix-git/doc/guix.texi:9979 #, no-wrap msgid "{Scheme Procedure} build-expression->derivation @var{store} @" msgstr "{Scheme-Prozedur} build-expression->derivation @var{Store} @" #. type: deffn -#: guix-git/doc/guix.texi:9681 +#: guix-git/doc/guix.texi:9995 msgid "@var{name} @var{exp} @ [#:system (%current-system)] [#:inputs '()] @ [#:outputs '(\"out\")] [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:env-vars '()] [#:modules '()] @ [#:references-graphs #f] [#:allowed-references #f] @ [#:disallowed-references #f] @ [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f] Return a derivation that executes Scheme expression @var{exp} as a builder for derivation @var{name}. @var{inputs} must be a list of @code{(name drv-path sub-drv)} tuples; when @var{sub-drv} is omitted, @code{\"out\"} is assumed. @var{modules} is a list of names of Guile modules from the current search path to be copied in the store, compiled, and made available in the load path during the execution of @var{exp}---e.g., @code{((guix build utils) (guix build gnu-build-system))}." msgstr "@var{Name} @var{Ausdruck} @ [#:system (%current-system)] [#:inputs '()] @ [#:outputs '(\"out\")] [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:env-vars '()] [#:modules '()] @ [#:references-graphs #f] [#:allowed-references #f] @ [#:disallowed-references #f] @ [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f] Liefert eine Ableitung, die den Scheme-Ausdruck @var{Ausdruck} als Ersteller einer Ableitung namens @var{Name} ausführt. @var{inputs} muss die Liste der Eingaben enthalten, jeweils als Tupel @code{(Name Ableitungspfad Unterableitung)}; wird keine @var{Unterableitung} angegeben, wird @code{\"out\"} angenommen. @var{Module} ist eine Liste der Namen von Guile-Modulen im momentanen Suchpfad, die in den Store kopiert, kompiliert und zur Verfügung gestellt werden, wenn der @var{Ausdruck} ausgeführt wird@tie{}— z.B.@: @code{((guix build utils) (guix build gnu-build-system))}." #. type: deffn -#: guix-git/doc/guix.texi:9689 +#: guix-git/doc/guix.texi:10003 msgid "@var{exp} is evaluated in an environment where @code{%outputs} is bound to a list of output/path pairs, and where @code{%build-inputs} is bound to a list of string/output-path pairs made from @var{inputs}. Optionally, @var{env-vars} is a list of string pairs specifying the name and value of environment variables visible to the builder. The builder terminates by passing the result of @var{exp} to @code{exit}; thus, when @var{exp} returns @code{#f}, the build is considered to have failed." msgstr "Der @var{Ausdruck} wird in einer Umgebung ausgewertet, in der @code{%outputs} an eine Liste von Ausgabe-/Pfad-Paaren gebunden wurde und in der @code{%build-inputs} an eine Liste von Zeichenkette-/Ausgabepfad-Paaren gebunden wurde, die aus den @var{inputs}-Eingaben konstruiert worden ist. Optional kann in @var{env-vars} eine Liste von Paaren aus Zeichenketten stehen, die Name und Wert von für den Ersteller sichtbaren Umgebungsvariablen angeben. Der Ersteller terminiert, indem er @code{exit} mit dem Ergebnis des @var{Ausdruck}s aufruft; wenn also der @var{Ausdruck} den Wert @code{#f} liefert, wird angenommen, dass die Erstellung fehlgeschlagen ist." #. type: deffn -#: guix-git/doc/guix.texi:9693 +#: guix-git/doc/guix.texi:10007 msgid "@var{exp} is built using @var{guile-for-build} (a derivation). When @var{guile-for-build} is omitted or is @code{#f}, the value of the @code{%guile-for-build} fluid is used instead." msgstr "@var{Ausdruck} wird mit einer Ableitung @var{guile-for-build} erstellt. Wird kein @var{guile-for-build} angegeben oder steht es auf @code{#f}, wird stattdessen der Wert der Fluiden @code{%guile-for-build} benutzt." #. type: deffn -#: guix-git/doc/guix.texi:9698 +#: guix-git/doc/guix.texi:10012 msgid "See the @code{derivation} procedure for the meaning of @var{references-graphs}, @var{allowed-references}, @var{disallowed-references}, @var{local-build?}, and @var{substitutable?}." msgstr "Siehe die Erklärungen zur Prozedur @code{derivation} für die Bedeutung von @var{references-graphs}, @var{allowed-references}, @var{disallowed-references}, @var{local-build?} und @var{substitutable?}." #. type: Plain text -#: guix-git/doc/guix.texi:9703 +#: guix-git/doc/guix.texi:10017 msgid "Here's an example of a single-output derivation that creates a directory containing one file:" msgstr "Hier ist ein Beispiel einer Ableitung mit nur einer Ausgabe, die ein Verzeichnis erzeugt, in dem eine einzelne Datei enthalten ist:" #. type: lisp -#: guix-git/doc/guix.texi:9711 +#: guix-git/doc/guix.texi:10025 #, no-wrap msgid "" "(let ((builder '(let ((out (assoc-ref %outputs \"out\")))\n" @@ -18875,51 +19452,51 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:9713 +#: guix-git/doc/guix.texi:10027 #, no-wrap msgid "@result{} # @dots{}>\n" msgstr "@result{} # …>\n" #. type: cindex -#: guix-git/doc/guix.texi:9719 +#: guix-git/doc/guix.texi:10033 #, no-wrap msgid "monad" msgstr "Monade" #. type: Plain text -#: guix-git/doc/guix.texi:9725 +#: guix-git/doc/guix.texi:10039 msgid "The procedures that operate on the store described in the previous sections all take an open connection to the build daemon as their first argument. Although the underlying model is functional, they either have side effects or depend on the current state of the store." msgstr "Die auf dem Store arbeitenden Prozeduren, die in den vorigen Abschnitten beschrieben wurden, nehmen alle eine offene Verbindung zum Erstellungs-Daemon als ihr erstes Argument entgegen. Obwohl das ihnen zu Grunde liegende Modell funktional ist, weisen sie doch alle Nebenwirkungen auf oder hängen vom momentanen Zustand des Stores ab." #. type: Plain text -#: guix-git/doc/guix.texi:9731 +#: guix-git/doc/guix.texi:10045 msgid "The former is inconvenient: the connection to the build daemon has to be carried around in all those functions, making it impossible to compose functions that do not take that parameter with functions that do. The latter can be problematic: since store operations have side effects and/or depend on external state, they have to be properly sequenced." msgstr "Ersteres ist umständlich, weil die Verbindung zum Erstellungs-Daemon zwischen all diesen Funktionen durchgereicht werden muss, so dass eine Komposition mit Funktionen ohne diesen Parameter unmöglich wird. Letzteres kann problematisch sein, weil Operationen auf dem Store Nebenwirkungen und/oder Abhängigkeiten von externem Zustand haben und ihre Ausführungsreihenfolge deswegen eine Rolle spielt." #. type: cindex -#: guix-git/doc/guix.texi:9732 +#: guix-git/doc/guix.texi:10046 #, no-wrap msgid "monadic values" msgstr "monadische Werte" #. type: cindex -#: guix-git/doc/guix.texi:9733 +#: guix-git/doc/guix.texi:10047 #, no-wrap msgid "monadic functions" msgstr "monadische Funktionen" #. type: Plain text -#: guix-git/doc/guix.texi:9743 +#: guix-git/doc/guix.texi:10057 msgid "This is where the @code{(guix monads)} module comes in. This module provides a framework for working with @dfn{monads}, and a particularly useful monad for our uses, the @dfn{store monad}. Monads are a construct that allows two things: associating ``context'' with values (in our case, the context is the store), and building sequences of computations (here computations include accesses to the store). Values in a monad---values that carry this additional context---are called @dfn{monadic values}; procedures that return such values are called @dfn{monadic procedures}." msgstr "Hier kommt das Modul @code{(guix monads)} ins Spiel. Im Rahmen dieses Moduls können @dfn{Monaden} benutzt werden und dazu gehört insbesondere eine für unsere Zwecke sehr nützliche Monade, die @dfn{Store-Monade}. Monaden sind ein Konstrukt, mit dem zwei Dinge möglich sind: eine Assoziation von Werten mit einem „Kontext“ (in unserem Fall ist das die Verbindung zum Store) und das Festlegen einer Reihenfolge für Berechnungen (hiermit sind auch Zugriffe auf den Store gemeint). Werte in einer Monade@tie{}— solche, die mit weiterem Kontext assoziiert sind@tie{}— werden @dfn{monadische Werte} genannt; Prozeduren, die solche Werte liefern, heißen @dfn{monadische Prozeduren}." #. type: Plain text -#: guix-git/doc/guix.texi:9745 +#: guix-git/doc/guix.texi:10059 msgid "Consider this ``normal'' procedure:" msgstr "Betrachten Sie folgende „normale“ Prozedur:" #. type: lisp -#: guix-git/doc/guix.texi:9754 +#: guix-git/doc/guix.texi:10068 #, no-wrap msgid "" "(define (sh-symlink store)\n" @@ -18940,12 +19517,12 @@ msgstr "" " `(symlink ,sh %output))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:9758 +#: guix-git/doc/guix.texi:10072 msgid "Using @code{(guix monads)} and @code{(guix gexp)}, it may be rewritten as a monadic function:" msgstr "Unter Verwendung von @code{(guix monads)} und @code{(guix gexp)} lässt sie sich als monadische Funktion aufschreiben:" #. type: lisp -#: guix-git/doc/guix.texi:9766 +#: guix-git/doc/guix.texi:10080 #, no-wrap msgid "" "(define (sh-symlink)\n" @@ -18963,17 +19540,17 @@ msgstr "" " #$output))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:9773 +#: guix-git/doc/guix.texi:10087 msgid "There are several things to note in the second version: the @code{store} parameter is now implicit and is ``threaded'' in the calls to the @code{package->derivation} and @code{gexp->derivation} monadic procedures, and the monadic value returned by @code{package->derivation} is @dfn{bound} using @code{mlet} instead of plain @code{let}." msgstr "An der zweiten Version lassen sich mehrere Dinge beobachten: Der Parameter @code{Store} ist jetzt implizit geworden und wurde in die Aufrufe der monadischen Prozeduren @code{package->derivation} und @code{gexp->derivation} „eingefädelt“ und der von @code{package->derivation} gelieferte monadische Wert wurde mit @code{mlet} statt einem einfachen @code{let} @dfn{gebunden}." #. type: Plain text -#: guix-git/doc/guix.texi:9777 +#: guix-git/doc/guix.texi:10091 msgid "As it turns out, the call to @code{package->derivation} can even be omitted since it will take place implicitly, as we will see later (@pxref{G-Expressions}):" msgstr "Wie sich herausstellt, muss man den Aufruf von @code{package->derivation} nicht einmal aufschreiben, weil er implizit geschieht, wie wir später sehen werden (siehe @ref{G-Expressions}):" #. type: lisp -#: guix-git/doc/guix.texi:9783 +#: guix-git/doc/guix.texi:10097 #, no-wrap msgid "" "(define (sh-symlink)\n" @@ -18987,12 +19564,12 @@ msgstr "" " #$output)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:9792 +#: guix-git/doc/guix.texi:10106 msgid "Calling the monadic @code{sh-symlink} has no effect. As someone once said, ``you exit a monad like you exit a building on fire: by running''. So, to exit the monad and get the desired effect, one must use @code{run-with-store}:" msgstr "Die monadische @code{sh-symlink} einfach aufzurufen, bewirkt nichts. Wie jemand einst sagte: „Mit einer Monade geht man um, wie mit Gefangenen, gegen die man keine Beweise hat: Man muss sie laufen lassen.“ Um also aus der Monade auszubrechen und die gewünschte Wirkung zu erzielen, muss man @code{run-with-store} benutzen:" #. type: lisp -#: guix-git/doc/guix.texi:9796 +#: guix-git/doc/guix.texi:10110 #, no-wrap msgid "" "(run-with-store (open-connection) (sh-symlink))\n" @@ -19002,12 +19579,12 @@ msgstr "" "@result{} /gnu/store/…-sh-symlink\n" #. type: Plain text -#: guix-git/doc/guix.texi:9802 +#: guix-git/doc/guix.texi:10116 msgid "Note that the @code{(guix monad-repl)} module extends the Guile REPL with new ``meta-commands'' to make it easier to deal with monadic procedures: @code{run-in-store}, and @code{enter-store-monad}. The former is used to ``run'' a single monadic value through the store:" msgstr "Erwähnenswert ist, dass das Modul @code{(guix monad-repl)} die REPL von Guile um neue „Meta-Befehle“ erweitert, mit denen es leichter ist, mit monadischen Prozeduren umzugehen: @code{run-in-store} und @code{enter-store-monad}. Mit Ersterer wird ein einzelner monadischer Wert durch den Store „laufen gelassen“:" #. type: example -#: guix-git/doc/guix.texi:9806 +#: guix-git/doc/guix.texi:10120 #, no-wrap msgid "" "scheme@@(guile-user)> ,run-in-store (package->derivation hello)\n" @@ -19017,12 +19594,12 @@ msgstr "" "$1 = # …>\n" #. type: Plain text -#: guix-git/doc/guix.texi:9810 +#: guix-git/doc/guix.texi:10124 msgid "The latter enters a recursive REPL, where all the return values are automatically run through the store:" msgstr "Mit Letzterer wird rekursiv eine weitere REPL betreten, in der alle Rückgabewerte automatisch durch den Store laufen gelassen werden:" #. type: example -#: guix-git/doc/guix.texi:9819 +#: guix-git/doc/guix.texi:10133 #, no-wrap msgid "" "scheme@@(guile-user)> ,enter-store-monad\n" @@ -19042,50 +19619,50 @@ msgstr "" "scheme@@(guile-user)>\n" #. type: Plain text -#: guix-git/doc/guix.texi:9824 +#: guix-git/doc/guix.texi:10138 msgid "Note that non-monadic values cannot be returned in the @code{store-monad} REPL." msgstr "Beachten Sie, dass in einer @code{store-monad}-REPL keine nicht-monadischen Werte zurückgeliefert werden können." #. type: Plain text -#: guix-git/doc/guix.texi:9827 +#: guix-git/doc/guix.texi:10141 msgid "The main syntactic forms to deal with monads in general are provided by the @code{(guix monads)} module and are described below." msgstr "Die wichtigsten syntaktischen Formen, um mit Monaden im Allgemeinen umzugehen, werden im Modul @code{(guix monads)} bereitgestellt und sind im Folgenden beschrieben." #. type: deffn -#: guix-git/doc/guix.texi:9828 +#: guix-git/doc/guix.texi:10142 #, no-wrap msgid "{Scheme Syntax} with-monad @var{monad} @var{body} ..." msgstr "{Scheme-Syntax} with-monad @var{Monade} @var{Rumpf} ..." #. type: deffn -#: guix-git/doc/guix.texi:9831 +#: guix-git/doc/guix.texi:10145 msgid "Evaluate any @code{>>=} or @code{return} forms in @var{body} as being in @var{monad}." msgstr "Alle @code{>>=}- oder @code{return}-Formen im @var{Rumpf} in der @var{Monade} auswerten." #. type: deffn -#: guix-git/doc/guix.texi:9833 +#: guix-git/doc/guix.texi:10147 #, no-wrap msgid "{Scheme Syntax} return @var{val}" msgstr "{Scheme-Syntax} return @var{Wert}" #. type: deffn -#: guix-git/doc/guix.texi:9835 +#: guix-git/doc/guix.texi:10149 msgid "Return a monadic value that encapsulates @var{val}." msgstr "Einen monadischen Wert liefern, der den übergebenen @var{Wert} kapselt." #. type: deffn -#: guix-git/doc/guix.texi:9837 +#: guix-git/doc/guix.texi:10151 #, no-wrap msgid "{Scheme Syntax} >>= @var{mval} @var{mproc} ..." msgstr "{Scheme-Syntax} >>= @var{mWert} @var{mProz} ..." #. type: deffn -#: guix-git/doc/guix.texi:9844 +#: guix-git/doc/guix.texi:10158 msgid "@dfn{Bind} monadic value @var{mval}, passing its ``contents'' to monadic procedures @var{mproc}@dots{}@footnote{This operation is commonly referred to as ``bind'', but that name denotes an unrelated procedure in Guile. Thus we use this somewhat cryptic symbol inherited from the Haskell language.}. There can be one @var{mproc} or several of them, as in this example:" msgstr "Den monadischen Wert @var{mWert} @dfn{binden}, wobei sein „Inhalt“ an die monadischen Prozeduren @var{mProz}…@: übergeben wird@footnote{Diese Operation wird gemeinhin „bind“ genannt, aber mit diesem Begriff wird in Guile eine völlig andere Prozedur bezeichnet, die nichts damit zu tun hat. Also benutzen wir dieses etwas kryptische Symbol als Erbe der Haskell-Programmiersprache.}. Es kann eine einzelne @var{mProz} oder mehrere davon geben, wie in diesem Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:9852 +#: guix-git/doc/guix.texi:10166 #, no-wrap msgid "" "(run-with-state\n" @@ -19105,7 +19682,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:9855 +#: guix-git/doc/guix.texi:10169 #, no-wrap msgid "" "@result{} 4\n" @@ -19115,99 +19692,99 @@ msgstr "" "@result{} irgendein-Zustand\n" #. type: deffn -#: guix-git/doc/guix.texi:9858 +#: guix-git/doc/guix.texi:10172 #, no-wrap msgid "{Scheme Syntax} mlet @var{monad} ((@var{var} @var{mval}) ...) @" msgstr "{Scheme-Syntax} mlet @var{Monade} ((@var{Variable} @var{mWert}) ...) @" #. type: deffn -#: guix-git/doc/guix.texi:9860 +#: guix-git/doc/guix.texi:10174 msgid "@var{body} ..." msgstr "@var{Rumpf} ..." #. type: deffnx -#: guix-git/doc/guix.texi:9860 +#: guix-git/doc/guix.texi:10174 #, no-wrap msgid "{Scheme Syntax} mlet* @var{monad} ((@var{var} @var{mval}) ...) @" msgstr "{Scheme-Syntax} mlet* @var{Monade} ((@var{Variable} @var{mWert}) ...) @" #. type: deffn -#: guix-git/doc/guix.texi:9872 +#: guix-git/doc/guix.texi:10186 msgid "@var{body} ... Bind the variables @var{var} to the monadic values @var{mval} in @var{body}, which is a sequence of expressions. As with the bind operator, this can be thought of as ``unpacking'' the raw, non-monadic value ``contained'' in @var{mval} and making @var{var} refer to that raw, non-monadic value within the scope of the @var{body}. The form (@var{var} -> @var{val}) binds @var{var} to the ``normal'' value @var{val}, as per @code{let}. The binding operations occur in sequence from left to right. The last expression of @var{body} must be a monadic expression, and its result will become the result of the @code{mlet} or @code{mlet*} when run in the @var{monad}." msgstr "@var{Rumpf} ... Die @var{Variable}n an die monadischen Werte @var{mWert} im @var{Rumpf} binden, der eine Folge von Ausdrücken ist. Wie beim bind-Operator kann man es sich vorstellen als „Auspacken“ des rohen, nicht-monadischen Werts, der im @var{mWert} steckt, wobei anschließend dieser rohe, nicht-monadische Wert im Sichtbarkeitsbereich des @var{Rumpf}s von der @var{Variable}n bezeichnet wird. Die Form (@var{Variable} -> @var{Wert}) bindet die @var{Variable} an den „normalen“ @var{Wert}, wie es @code{let} tun würde. Die Bindungsoperation geschieht in der Reihenfolge von links nach rechts. Der letzte Ausdruck des @var{Rumpfs} muss ein monadischer Ausdruck sein und dessen Ergebnis wird das Ergebnis von @code{mlet} oder @code{mlet*} werden, wenn es durch die @var{Monad} laufen gelassen wurde." #. type: deffn -#: guix-git/doc/guix.texi:9875 +#: guix-git/doc/guix.texi:10189 msgid "@code{mlet*} is to @code{mlet} what @code{let*} is to @code{let} (@pxref{Local Bindings,,, guile, GNU Guile Reference Manual})." msgstr "@code{mlet*} verhält sich gegenüber @code{mlet} wie @code{let*} gegenüber @code{let} (siehe @ref{Local Bindings,,, guile, Referenzhandbuch zu GNU Guile})." #. type: deffn -#: guix-git/doc/guix.texi:9877 +#: guix-git/doc/guix.texi:10191 #, no-wrap msgid "{Scheme System} mbegin @var{monad} @var{mexp} ..." msgstr "{Scheme-System} mbegin @var{Monade} @var{mAusdruck} ..." #. type: deffn -#: guix-git/doc/guix.texi:9881 +#: guix-git/doc/guix.texi:10195 msgid "Bind @var{mexp} and the following monadic expressions in sequence, returning the result of the last expression. Every expression in the sequence must be a monadic expression." msgstr "Der Reihe nach den @var{mAusdruck} und die nachfolgenden monadischen Ausdrücke binden und als Ergebnis das des letzten Ausdrucks liefern. Jeder Ausdruck in der Abfolge muss ein monadischer Ausdruck sein." #. type: deffn -#: guix-git/doc/guix.texi:9885 +#: guix-git/doc/guix.texi:10199 msgid "This is akin to @code{mlet}, except that the return values of the monadic expressions are ignored. In that sense, it is analogous to @code{begin}, but applied to monadic expressions." msgstr "Dies verhält sich ähnlich wie @code{mlet}, außer dass die Rückgabewerte der monadischen Prozeduren ignoriert werden. In diesem Sinn verhält es sich analog zu @code{begin}, nur auf monadischen Ausdrücken." #. type: deffn -#: guix-git/doc/guix.texi:9887 +#: guix-git/doc/guix.texi:10201 #, no-wrap msgid "{Scheme System} mwhen @var{condition} @var{mexp0} @var{mexp*} ..." msgstr "{Scheme-System} mwhen @var{Bedingung} @var{mAusdr0} @var{mAusdr*} ..." #. type: deffn -#: guix-git/doc/guix.texi:9892 +#: guix-git/doc/guix.texi:10206 msgid "When @var{condition} is true, evaluate the sequence of monadic expressions @var{mexp0}..@var{mexp*} as in an @code{mbegin}. When @var{condition} is false, return @code{*unspecified*} in the current monad. Every expression in the sequence must be a monadic expression." msgstr "Wenn die @var{Bedingung} wahr ist, wird die Folge monadischer Ausdrücke @var{mAusdr0}..@var{mAusdr*} wie bei @code{mbegin} ausgewertet. Wenn die @var{Bedingung} falsch ist, wird @code{*unspecified*} („unbestimmt“) in der momentanen Monade zurückgeliefert. Jeder Ausdruck in der Folge muss ein monadischer Ausdruck sein." #. type: deffn -#: guix-git/doc/guix.texi:9894 +#: guix-git/doc/guix.texi:10208 #, no-wrap msgid "{Scheme System} munless @var{condition} @var{mexp0} @var{mexp*} ..." msgstr "{Scheme-System} munless @var{Bedingung} @var{mAusdr0} @var{mAusdr*} ..." #. type: deffn -#: guix-git/doc/guix.texi:9899 +#: guix-git/doc/guix.texi:10213 msgid "When @var{condition} is false, evaluate the sequence of monadic expressions @var{mexp0}..@var{mexp*} as in an @code{mbegin}. When @var{condition} is true, return @code{*unspecified*} in the current monad. Every expression in the sequence must be a monadic expression." msgstr "Wenn die @var{Bedingung} falsch ist, wird die Folge monadischer Ausdrücke @var{mAusdr0}..@var{mAusdr*} wie bei @code{mbegin} ausgewertet. Wenn die @var{Bedingung} wahr ist, wird @code{*unspecified*} („unbestimmt“) in der momentanen Monade zurückgeliefert. Jeder Ausdruck in der Folge muss ein monadischer Ausdruck sein." #. type: cindex -#: guix-git/doc/guix.texi:9901 +#: guix-git/doc/guix.texi:10215 #, no-wrap msgid "state monad" msgstr "Zustandsmonade" #. type: Plain text -#: guix-git/doc/guix.texi:9905 +#: guix-git/doc/guix.texi:10219 msgid "The @code{(guix monads)} module provides the @dfn{state monad}, which allows an additional value---the state---to be @emph{threaded} through monadic procedure calls." msgstr "Das Modul @code{(guix monads)} macht die @dfn{Zustandsmonade} (englisch „state monad“) verfügbar, mit der ein zusätzlicher Wert@tie{}— der Zustand@tie{}— durch die monadischen Prozeduraufrufe @emph{gefädelt} werden kann." #. type: defvr -#: guix-git/doc/guix.texi:9906 +#: guix-git/doc/guix.texi:10220 #, no-wrap msgid "{Scheme Variable} %state-monad" msgstr "{Scheme-Variable} %state-monad" #. type: defvr -#: guix-git/doc/guix.texi:9909 +#: guix-git/doc/guix.texi:10223 msgid "The state monad. Procedures in the state monad can access and change the state that is threaded." msgstr "Die Zustandsmonade. Prozeduren in der Zustandsmonade können auf den gefädelten Zustand zugreifen und ihn verändern." #. type: defvr -#: guix-git/doc/guix.texi:9913 +#: guix-git/doc/guix.texi:10227 msgid "Consider the example below. The @code{square} procedure returns a value in the state monad. It returns the square of its argument, but also increments the current state value:" msgstr "Betrachten Sie das folgende Beispiel. Die Prozedur @code{Quadrat} liefert einen Wert in der Zustandsmonade zurück. Sie liefert das Quadrat ihres Arguments, aber sie inkrementiert auch den momentanen Zustandswert:" #. type: lisp -#: guix-git/doc/guix.texi:9920 +#: guix-git/doc/guix.texi:10234 #, no-wrap msgid "" "(define (square x)\n" @@ -19225,7 +19802,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:9924 +#: guix-git/doc/guix.texi:10238 #, no-wrap msgid "" "(run-with-state (sequence %state-monad (map square (iota 3))) 0)\n" @@ -19237,147 +19814,147 @@ msgstr "" "@result{} 3\n" #. type: defvr -#: guix-git/doc/guix.texi:9928 +#: guix-git/doc/guix.texi:10242 msgid "When ``run'' through @code{%state-monad}, we obtain that additional state value, which is the number of @code{square} calls." msgstr "Wird das „durch“ die Zustandsmonade @code{%state-monad} laufen gelassen, erhalten wir jenen zusätzlichen Zustandswert, der der Anzahl der Aufrufe von @code{Quadrat} entspricht." #. type: deffn -#: guix-git/doc/guix.texi:9930 +#: guix-git/doc/guix.texi:10244 #, no-wrap msgid "{Monadic Procedure} current-state" msgstr "{Monadische Prozedur} current-state" #. type: deffn -#: guix-git/doc/guix.texi:9932 +#: guix-git/doc/guix.texi:10246 msgid "Return the current state as a monadic value." msgstr "Liefert den momentanen Zustand als einen monadischen Wert." #. type: deffn -#: guix-git/doc/guix.texi:9934 +#: guix-git/doc/guix.texi:10248 #, no-wrap msgid "{Monadic Procedure} set-current-state @var{value}" msgstr "{Monadische Prozedur} set-current-state @var{Wert}" #. type: deffn -#: guix-git/doc/guix.texi:9937 +#: guix-git/doc/guix.texi:10251 msgid "Set the current state to @var{value} and return the previous state as a monadic value." msgstr "Setzt den momentanen Zustand auf @var{Wert} und liefert den vorherigen Zustand als einen monadischen Wert." #. type: deffn -#: guix-git/doc/guix.texi:9939 +#: guix-git/doc/guix.texi:10253 #, no-wrap msgid "{Monadic Procedure} state-push @var{value}" msgstr "{Monadische Prozedur} state-push @var{Wert}" #. type: deffn -#: guix-git/doc/guix.texi:9942 +#: guix-git/doc/guix.texi:10256 msgid "Push @var{value} to the current state, which is assumed to be a list, and return the previous state as a monadic value." msgstr "Hängt den @var{Wert} vorne an den momentanen Zustand an, der eine Liste sein muss. Liefert den vorherigen Zustand als monadischen Wert." #. type: deffn -#: guix-git/doc/guix.texi:9944 +#: guix-git/doc/guix.texi:10258 #, no-wrap msgid "{Monadic Procedure} state-pop" msgstr "{Monadische Prozedur} state-pop" #. type: deffn -#: guix-git/doc/guix.texi:9947 +#: guix-git/doc/guix.texi:10261 msgid "Pop a value from the current state and return it as a monadic value. The state is assumed to be a list." msgstr "Entfernt einen Wert vorne vom momentanen Zustand und liefert ihn als monadischen Wert zurück. Dabei wird angenommen, dass es sich beim Zustand um eine Liste handelt." #. type: deffn -#: guix-git/doc/guix.texi:9949 +#: guix-git/doc/guix.texi:10263 #, no-wrap msgid "{Scheme Procedure} run-with-state @var{mval} [@var{state}]" msgstr "{Scheme-Prozedur} run-with-state @var{mWert} [@var{Zustand}]" #. type: deffn -#: guix-git/doc/guix.texi:9952 +#: guix-git/doc/guix.texi:10266 msgid "Run monadic value @var{mval} starting with @var{state} as the initial state. Return two values: the resulting value, and the resulting state." msgstr "Den monadischen Wert @var{mWert} mit @var{Zustand} als initialem Zustand laufen lassen. Dies liefert zwei Werte: den Ergebniswert und den Ergebniszustand." #. type: Plain text -#: guix-git/doc/guix.texi:9956 +#: guix-git/doc/guix.texi:10270 msgid "The main interface to the store monad, provided by the @code{(guix store)} module, is as follows." msgstr "Die zentrale Schnittstelle zur Store-Monade, wie sie vom Modul @code{(guix store)} angeboten wird, ist die Folgende:" #. type: defvr -#: guix-git/doc/guix.texi:9957 +#: guix-git/doc/guix.texi:10271 #, no-wrap msgid "{Scheme Variable} %store-monad" msgstr "{Scheme-Variable} %store-monad" #. type: defvr -#: guix-git/doc/guix.texi:9959 +#: guix-git/doc/guix.texi:10273 msgid "The store monad---an alias for @code{%state-monad}." msgstr "Die Store-Monade@tie{}— ein anderer Name für @code{%state-monad}." #. type: defvr -#: guix-git/doc/guix.texi:9963 +#: guix-git/doc/guix.texi:10277 msgid "Values in the store monad encapsulate accesses to the store. When its effect is needed, a value of the store monad must be ``evaluated'' by passing it to the @code{run-with-store} procedure (see below)." msgstr "Werte in der Store-Monade kapseln Zugriffe auf den Store. Sobald ihre Wirkung gebraucht wird, muss ein Wert der Store-Monade „ausgewertet“ werden, indem er an die Prozedur @code{run-with-store} übergeben wird (siehe unten)." #. type: deffn -#: guix-git/doc/guix.texi:9965 +#: guix-git/doc/guix.texi:10279 #, no-wrap msgid "{Scheme Procedure} run-with-store @var{store} @var{mval} [#:guile-for-build] [#:system (%current-system)]" msgstr "{Scheme-Prozedur} run-with-store @var{Store} @var{mWert} [#:guile-for-build] [#:system (%current-system)]" #. type: deffn -#: guix-git/doc/guix.texi:9968 +#: guix-git/doc/guix.texi:10282 msgid "Run @var{mval}, a monadic value in the store monad, in @var{store}, an open store connection." msgstr "Den @var{mWert}, einen monadischen Wert in der Store-Monade, in der offenen Verbindung @var{Store} laufen lassen." #. type: deffn -#: guix-git/doc/guix.texi:9970 +#: guix-git/doc/guix.texi:10284 #, no-wrap msgid "{Monadic Procedure} text-file @var{name} @var{text} [@var{references}]" msgstr "{Monadische Prozedur} text-file @var{Name} @var{Text} [@var{Referenzen}]" #. type: deffn -#: guix-git/doc/guix.texi:9974 +#: guix-git/doc/guix.texi:10288 msgid "Return as a monadic value the absolute file name in the store of the file containing @var{text}, a string. @var{references} is a list of store items that the resulting text file refers to; it defaults to the empty list." msgstr "Als monadischen Wert den absoluten Dateinamen im Store für eine Datei liefern, deren Inhalt der der Zeichenkette @var{Text} ist. @var{Referenzen} ist dabei eine Liste von Store-Objekten, die die Ergebnis-Textdatei referenzieren wird; der Vorgabewert ist die leere Liste." #. type: deffn -#: guix-git/doc/guix.texi:9976 +#: guix-git/doc/guix.texi:10290 #, no-wrap msgid "{Monadic Procedure} binary-file @var{name} @var{data} [@var{references}]" msgstr "{Monadische Prozedur} binary-file @var{Name} @var{Daten} [@var{Referenzen}]" #. type: deffn -#: guix-git/doc/guix.texi:9980 +#: guix-git/doc/guix.texi:10294 msgid "Return as a monadic value the absolute file name in the store of the file containing @var{data}, a bytevector. @var{references} is a list of store items that the resulting binary file refers to; it defaults to the empty list." msgstr "Den absoluten Dateinamen im Store als monadischen Wert für eine Datei liefern, deren Inhalt der des Byte-Vektors @var{Daten} ist. @var{Referenzen} ist dabei eine Liste von Store-Objekten, die die Ergebnis-Binärdatei referenzieren wird; der Vorgabewert ist die leere Liste." #. type: deffn -#: guix-git/doc/guix.texi:9982 +#: guix-git/doc/guix.texi:10296 #, no-wrap msgid "{Monadic Procedure} interned-file @var{file} [@var{name}] @" msgstr "{Monadische Prozedur} interned-file @var{Datei} [@var{Name}] @" #. type: deffn -#: guix-git/doc/guix.texi:9987 +#: guix-git/doc/guix.texi:10301 msgid "[#:recursive? #t] [#:select? (const #t)] Return the name of @var{file} once interned in the store. Use @var{name} as its store name, or the basename of @var{file} if @var{name} is omitted." msgstr "[#:recursive? #t] [#:select? (const #t)] Liefert den Namen der @var{Datei}, nachdem sie in den Store interniert wurde. Dabei wird der @var{Name} als ihr Store-Name verwendet, oder, wenn kein @var{Name} angegeben wurde, der Basisname der @var{Datei}." #. type: deffn -#: guix-git/doc/guix.texi:9991 guix-git/doc/guix.texi:10414 +#: guix-git/doc/guix.texi:10305 guix-git/doc/guix.texi:10728 msgid "When @var{recursive?} is true, the contents of @var{file} are added recursively; if @var{file} designates a flat file and @var{recursive?} is true, its contents are added, and its permission bits are kept." msgstr "Ist @var{recursive?} wahr, werden in der @var{Datei} enthaltene Dateien rekursiv hinzugefügt; ist die @var{Datei} eine flache Datei und @var{recursive?} ist wahr, wird ihr Inhalt in den Store eingelagert und ihre Berechtigungs-Bits übernommen." #. type: deffn -#: guix-git/doc/guix.texi:9996 guix-git/doc/guix.texi:10419 +#: guix-git/doc/guix.texi:10310 guix-git/doc/guix.texi:10733 msgid "When @var{recursive?} is true, call @code{(@var{select?} @var{file} @var{stat})} for each directory entry, where @var{file} is the entry's absolute file name and @var{stat} is the result of @code{lstat}; exclude entries for which @var{select?} does not return true." msgstr "Steht @var{recursive?} auf wahr, wird @code{(@var{select?} @var{Datei} @var{Stat})} für jeden Verzeichniseintrag aufgerufen, wobei @var{Datei} der absolute Dateiname und @var{Stat} das Ergebnis von @code{lstat} ist, außer auf den Einträgen, wo @var{select?} keinen wahren Wert liefert." #. type: deffn -#: guix-git/doc/guix.texi:9998 +#: guix-git/doc/guix.texi:10312 msgid "The example below adds a file to the store, under two different names:" msgstr "Folgendes Beispiel fügt eine Datei unter zwei verschiedenen Namen in den Store ein:" #. type: lisp -#: guix-git/doc/guix.texi:10004 +#: guix-git/doc/guix.texi:10318 #, no-wrap msgid "" "(run-with-store (open-connection)\n" @@ -19393,120 +19970,120 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:10006 +#: guix-git/doc/guix.texi:10320 #, no-wrap msgid "@result{} (\"/gnu/store/rwm@dots{}-README\" \"/gnu/store/44i@dots{}-LEGU-MIN\")\n" msgstr "@result{} (\"/gnu/store/rwm…-README\" \"/gnu/store/44i…-LEGU-MIN\")\n" #. type: Plain text -#: guix-git/doc/guix.texi:10012 +#: guix-git/doc/guix.texi:10326 msgid "The @code{(guix packages)} module exports the following package-related monadic procedures:" msgstr "Das Modul @code{(guix packages)} exportiert die folgenden paketbezogenen monadischen Prozeduren:" #. type: deffn -#: guix-git/doc/guix.texi:10013 +#: guix-git/doc/guix.texi:10327 #, no-wrap msgid "{Monadic Procedure} package-file @var{package} [@var{file}] @" msgstr "{Monadische Prozedur} package-file @var{Paket} [@var{Datei}] @" #. type: deffn -#: guix-git/doc/guix.texi:10021 +#: guix-git/doc/guix.texi:10335 msgid "[#:system (%current-system)] [#:target #f] @ [#:output \"out\"] Return as a monadic value in the absolute file name of @var{file} within the @var{output} directory of @var{package}. When @var{file} is omitted, return the name of the @var{output} directory of @var{package}. When @var{target} is true, use it as a cross-compilation target triplet." msgstr "[#:system (%current-system)] [#:target #f] @ [#:output \"out\"] Liefert als monadischen Wert den absoluten Dateinamen der @var{Datei} innerhalb des Ausgabeverzeichnisses @var{output} des @var{Paket}s. Wird keine @var{Datei} angegeben, wird der Name des Ausgabeverzeichnisses @var{output} für das @var{Paket} zurückgeliefert. Ist @var{target} wahr, wird sein Wert als das Zielsystem bezeichnendes Tripel zum Cross-Kompilieren benutzt." #. type: deffn -#: guix-git/doc/guix.texi:10025 +#: guix-git/doc/guix.texi:10339 msgid "Note that this procedure does @emph{not} build @var{package}. Thus, the result might or might not designate an existing file. We recommend not using this procedure unless you know what you are doing." msgstr "Beachten Sie, dass durch diese Prozedur das @var{Paket} @emph{nicht} erstellt wird, also muss ihr Ergebnis keine bereits existierende Datei bezeichnen, kann aber. Wir empfehlen, diese Prozedur nur dann zu benutzen, wenn Sie wissen, was Sie tun." #. type: deffn -#: guix-git/doc/guix.texi:10027 +#: guix-git/doc/guix.texi:10341 #, no-wrap msgid "{Monadic Procedure} package->derivation @var{package} [@var{system}]" msgstr "{Monadische Prozedur} package->derivation @var{Paket} [@var{System}]" #. type: deffnx -#: guix-git/doc/guix.texi:10028 +#: guix-git/doc/guix.texi:10342 #, no-wrap msgid "{Monadic Procedure} package->cross-derivation @var{package} @" msgstr "{Monadische Prozedur} package->cross-derivation @var{Paket} @" #. type: deffn -#: guix-git/doc/guix.texi:10032 +#: guix-git/doc/guix.texi:10346 msgid "@var{target} [@var{system}] Monadic version of @code{package-derivation} and @code{package-cross-derivation} (@pxref{Defining Packages})." msgstr "@var{Ziel} [@var{System}] Monadische Version von @code{package-derivation} und @code{package-cross-derivation} (siehe @ref{Defining Packages})." #. type: cindex -#: guix-git/doc/guix.texi:10038 +#: guix-git/doc/guix.texi:10352 #, no-wrap msgid "G-expression" msgstr "G-Ausdruck" #. type: cindex -#: guix-git/doc/guix.texi:10039 +#: guix-git/doc/guix.texi:10353 #, no-wrap msgid "build code quoting" msgstr "Erstellungscode maskieren" #. type: Plain text -#: guix-git/doc/guix.texi:10045 +#: guix-git/doc/guix.texi:10359 msgid "So we have ``derivations'', which represent a sequence of build actions to be performed to produce an item in the store (@pxref{Derivations}). These build actions are performed when asking the daemon to actually build the derivations; they are run by the daemon in a container (@pxref{Invoking guix-daemon})." msgstr "Es gibt also „Ableitungen“, die eine Abfolge von Erstellungsaktionen repräsentieren, die durchgeführt werden müssen, um ein Objekt im Store zu erzeugen (siehe @ref{Derivations}). Diese Erstellungsaktionen werden durchgeführt, nachdem der Daemon gebeten wurde, die Ableitungen tatsächlich zu erstellen; dann führt der Daemon sie in einer isolierten Umgebung (einem sogenannten Container) aus (siehe @ref{Invoking guix-daemon})." #. type: cindex -#: guix-git/doc/guix.texi:10048 +#: guix-git/doc/guix.texi:10362 #, no-wrap msgid "strata of code" msgstr "Schichten von Code" #. type: Plain text -#: guix-git/doc/guix.texi:10060 +#: guix-git/doc/guix.texi:10374 msgid "It should come as no surprise that we like to write these build actions in Scheme. When we do that, we end up with two @dfn{strata} of Scheme code@footnote{The term @dfn{stratum} in this context was coined by Manuel Serrano et al.@: in the context of their work on Hop. Oleg Kiselyov, who has written insightful @url{http://okmij.org/ftp/meta-programming/#meta-scheme, essays and code on this topic}, refers to this kind of code generation as @dfn{staging}.}: the ``host code''---code that defines packages, talks to the daemon, etc.---and the ``build code''---code that actually performs build actions, such as making directories, invoking @command{make}, and so on (@pxref{Build Phases})." msgstr "Wenig überraschend ist, dass wir diese Erstellungsaktionen gerne in Scheme schreiben würden. Wenn wir das tun, bekommen wir zwei verschiedene @dfn{Schichten} von Scheme-Code@footnote{Der Begriff @dfn{Schicht}, englisch Stratum, wurde in diesem Kontext von Manuel Serrano et al.@: in ihrer Arbeit an Hop geprägt. Oleg Kiselyov, der aufschlussreiche @url{http://okmij.org/ftp/meta-programming/#meta-scheme, Essays und Code zu diesem Thema} geschrieben hat, nennt diese Art der Code-Generierung @dfn{Staging}, deutsch etwa Inszenierung bzw.@: Aufführung.}: den „wirtsseitigen Code“ („host code“)@tie{}— also Code, der Pakete definiert, mit dem Daemon kommuniziert etc.@:@tie{}— und den „erstellungsseitigen Code“ („build code“)@tie{}— also Code, der die Erstellungsaktionen auch wirklich umsetzt, indem Dateien erstellt werden, @command{make} aufgerufen wird und so weiter (siehe @ref{Build Phases})." #. type: Plain text -#: guix-git/doc/guix.texi:10067 +#: guix-git/doc/guix.texi:10381 msgid "To describe a derivation and its build actions, one typically needs to embed build code inside host code. It boils down to manipulating build code as data, and the homoiconicity of Scheme---code has a direct representation as data---comes in handy for that. But we need more than the normal @code{quasiquote} mechanism in Scheme to construct build expressions." msgstr "Um eine Ableitung und ihre Erstellungsaktionen zu beschreiben, muss man normalerweise erstellungsseitigen Code im wirtsseitigen Code einbetten. Das bedeutet, man behandelt den erstellungsseitigen Code als Daten, was wegen der Homoikonizität von Scheme@tie{}— dass Code genauso als Daten repräsentiert werden kann@tie{}— sehr praktisch ist. Doch brauchen wir hier mehr als nur den normalen Quasimaskierungsmechanismus mit @code{quasiquote} in Scheme, wenn wir Erstellungsausdrücke konstruieren möchten." #. type: Plain text -#: guix-git/doc/guix.texi:10076 +#: guix-git/doc/guix.texi:10390 msgid "The @code{(guix gexp)} module implements @dfn{G-expressions}, a form of S-expressions adapted to build expressions. G-expressions, or @dfn{gexps}, consist essentially of three syntactic forms: @code{gexp}, @code{ungexp}, and @code{ungexp-splicing} (or simply: @code{#~}, @code{#$}, and @code{#$@@}), which are comparable to @code{quasiquote}, @code{unquote}, and @code{unquote-splicing}, respectively (@pxref{Expression Syntax, @code{quasiquote},, guile, GNU Guile Reference Manual}). However, there are major differences:" msgstr "Das Modul @code{(guix gexp)} implementiert @dfn{G-Ausdrücke}, eine Form von S-Ausdrücken, die zu Erstellungsausdrücken angepasst wurden. G-Ausdrücke (englisch „G-expressions“, kurz @dfn{Gexps}) setzen sich grundlegend aus drei syntaktischen Formen zusammen: @code{gexp}, @code{ungexp} und @code{ungexp-splicing} (alternativ einfach: @code{#~}, @code{#$} und @code{#$@@}), die jeweils mit @code{quasiquote}, @code{unquote} und @code{unquote-splicing} vergleichbar sind (siehe @ref{Expression Syntax, @code{quasiquote},, guile, Referenzhandbuch zu GNU Guile}). Es gibt aber auch erhebliche Unterschiede:" #. type: itemize -#: guix-git/doc/guix.texi:10081 +#: guix-git/doc/guix.texi:10395 msgid "Gexps are meant to be written to a file and run or manipulated by other processes." msgstr "G-Ausdrücke sind dafür gedacht, in eine Datei geschrieben zu werden, wo sie von anderen Prozessen ausgeführt oder manipuliert werden können." #. type: itemize -#: guix-git/doc/guix.texi:10086 +#: guix-git/doc/guix.texi:10400 msgid "When a high-level object such as a package or derivation is unquoted inside a gexp, the result is as if its output file name had been introduced." msgstr "Wenn ein abstraktes Objekt wie ein Paket oder eine Ableitung innerhalb eines G-Ausdrucks demaskiert wird, ist das Ergebnis davon dasselbe, wie wenn dessen Ausgabedateiname genannt worden wäre." #. type: itemize -#: guix-git/doc/guix.texi:10091 +#: guix-git/doc/guix.texi:10405 msgid "Gexps carry information about the packages or derivations they refer to, and these dependencies are automatically added as inputs to the build processes that use them." msgstr "G-Ausdrücke tragen Informationen über die Pakete oder Ableitungen mit sich, auf die sie sich beziehen, und diese Abhängigkeiten werden automatisch zu den sie benutzenden Erstellungsprozessen als Eingaben hinzugefügt." #. type: cindex -#: guix-git/doc/guix.texi:10093 guix-git/doc/guix.texi:10650 +#: guix-git/doc/guix.texi:10407 guix-git/doc/guix.texi:10964 #, no-wrap msgid "lowering, of high-level objects in gexps" msgstr "Herunterbrechen, von abstrakten Objekten in G-Ausdrücken" #. type: Plain text -#: guix-git/doc/guix.texi:10103 +#: guix-git/doc/guix.texi:10417 msgid "This mechanism is not limited to package and derivation objects: @dfn{compilers} able to ``lower'' other high-level objects to derivations or files in the store can be defined, such that these objects can also be inserted into gexps. For example, a useful type of high-level objects that can be inserted in a gexp is ``file-like objects'', which make it easy to add files to the store and to refer to them in derivations and such (see @code{local-file} and @code{plain-file} below)." msgstr "Dieser Mechanismus ist nicht auf Pakete und Ableitung beschränkt: Es können @dfn{Compiler} definiert werden, die weitere abstrakte, hochsprachliche Objekte auf Ableitungen oder Dateien im Store „herunterbrechen“, womit diese Objekte dann auch in G-Ausdrücken eingefügt werden können. Zum Beispiel sind „dateiartige Objekte“ ein nützlicher Typ solcher abstrakter Objekte. Mit ihnen können Dateien leicht in den Store eingefügt und von Ableitungen und anderem referenziert werden (siehe unten @code{local-file} und @code{plain-file})." #. type: Plain text -#: guix-git/doc/guix.texi:10105 +#: guix-git/doc/guix.texi:10419 msgid "To illustrate the idea, here is an example of a gexp:" msgstr "Zur Veranschaulichung dieser Idee soll uns dieses Beispiel eines G-Ausdrucks dienen:" #. type: lisp -#: guix-git/doc/guix.texi:10113 +#: guix-git/doc/guix.texi:10427 #, no-wrap msgid "" "(define build-exp\n" @@ -19524,34 +20101,34 @@ msgstr "" " \"list-files\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:10118 +#: guix-git/doc/guix.texi:10432 msgid "This gexp can be passed to @code{gexp->derivation}; we obtain a derivation that builds a directory containing exactly one symlink to @file{/gnu/store/@dots{}-coreutils-8.22/bin/ls}:" msgstr "Indem wir diesen G-Ausdruck an @code{gexp->derivation} übergeben, bekommen wir eine Ableitung, die ein Verzeichnis mit genau einer symbolischen Verknüpfung auf @file{/gnu/store/…-coreutils-8.22/bin/ls} erstellt:" #. type: lisp -#: guix-git/doc/guix.texi:10121 +#: guix-git/doc/guix.texi:10435 #, no-wrap msgid "(gexp->derivation \"the-thing\" build-exp)\n" msgstr "(gexp->derivation \"das-ding\" build-exp)\n" #. type: Plain text -#: guix-git/doc/guix.texi:10129 +#: guix-git/doc/guix.texi:10443 msgid "As one would expect, the @code{\"/gnu/store/@dots{}-coreutils-8.22\"} string is substituted to the reference to the @var{coreutils} package in the actual build code, and @var{coreutils} is automatically made an input to the derivation. Likewise, @code{#$output} (equivalent to @code{(ungexp output)}) is replaced by a string containing the directory name of the output of the derivation." msgstr "Wie man es erwarten würde, wird die Zeichenkette @code{\"/gnu/store/…-coreutils-8.22\"} anstelle der Referenzen auf das Paket @var{coreutils} im eigentlichen Erstellungscode eingefügt und @var{coreutils} automatisch zu einer Eingabe der Ableitung gemacht. Genauso wird auch @code{#$output} (was äquivalent zur Schreibweise @code{(ungexp output)} ist) ersetzt durch eine Zeichenkette mit dem Namen der Ausgabe der Ableitung." #. type: cindex -#: guix-git/doc/guix.texi:10130 +#: guix-git/doc/guix.texi:10444 #, no-wrap msgid "cross compilation" msgstr "Cross-Kompilieren" #. type: Plain text -#: guix-git/doc/guix.texi:10136 +#: guix-git/doc/guix.texi:10450 msgid "In a cross-compilation context, it is useful to distinguish between references to the @emph{native} build of a package---that can run on the host---versus references to cross builds of a package. To that end, the @code{#+} plays the same role as @code{#$}, but is a reference to a native package build:" msgstr "Im Kontext der Cross-Kompilierung bietet es sich an, zwischen Referenzen auf die @emph{native} Erstellung eines Pakets@tie{}— also der, die auf dem Wirtssystem ausgeführt werden kann@tie{}— und Referenzen auf Cross-Erstellungen eines Pakets zu unterscheiden. Hierfür spielt @code{#+} dieselbe Rolle wie @code{#$}, steht aber für eine Referenz auf eine native Paketerstellung." #. type: lisp -#: guix-git/doc/guix.texi:10147 +#: guix-git/doc/guix.texi:10461 #, no-wrap msgid "" "(gexp->derivation \"vi\"\n" @@ -19575,29 +20152,29 @@ msgstr "" " #:target \"aarch64-linux-gnu\")\n" #. type: Plain text -#: guix-git/doc/guix.texi:10153 +#: guix-git/doc/guix.texi:10467 msgid "In the example above, the native build of @var{coreutils} is used, so that @command{ln} can actually run on the host; but then the cross-compiled build of @var{emacs} is referenced." msgstr "Im obigen Beispiel wird die native Erstellung der @var{coreutils} benutzt, damit @command{ln} tatsächlich auf dem Wirtssystem ausgeführt werden kann, aber danach die cross-kompilierte Erstellung von @var{emacs} referenziert." #. type: cindex -#: guix-git/doc/guix.texi:10154 +#: guix-git/doc/guix.texi:10468 #, no-wrap msgid "imported modules, for gexps" msgstr "importierte Module, in G-Ausdrücken" #. type: findex -#: guix-git/doc/guix.texi:10155 +#: guix-git/doc/guix.texi:10469 #, no-wrap msgid "with-imported-modules" msgstr "with-imported-modules" #. type: Plain text -#: guix-git/doc/guix.texi:10160 +#: guix-git/doc/guix.texi:10474 msgid "Another gexp feature is @dfn{imported modules}: sometimes you want to be able to use certain Guile modules from the ``host environment'' in the gexp, so those modules should be imported in the ``build environment''. The @code{with-imported-modules} form allows you to express that:" msgstr "Eine weitere Funktionalität von G-Ausdrücken stellen @dfn{importierte Module} dar. Manchmal will man bestimmte Guile-Module von der „wirtsseitigen Umgebung“ im G-Ausdruck benutzen können, deswegen sollten diese Module in die „erstellungsseitige Umgebung“ importiert werden. Die @code{with-imported-modules}-Form macht das möglich:" #. type: lisp -#: guix-git/doc/guix.texi:10171 +#: guix-git/doc/guix.texi:10485 #, no-wrap msgid "" "(let ((build (with-imported-modules '((guix build utils))\n" @@ -19621,29 +20198,29 @@ msgstr "" " #t)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:10177 +#: guix-git/doc/guix.texi:10491 msgid "In this example, the @code{(guix build utils)} module is automatically pulled into the isolated build environment of our gexp, such that @code{(use-modules (guix build utils))} works as expected." msgstr "In diesem Beispiel wird das Modul @code{(guix build utils)} automatisch in die isolierte Erstellungsumgebung unseres G-Ausdrucks geholt, so dass @code{(use-modules (guix build utils))} wie erwartet funktioniert." #. type: cindex -#: guix-git/doc/guix.texi:10178 +#: guix-git/doc/guix.texi:10492 #, no-wrap msgid "module closure" msgstr "Modulabschluss" #. type: findex -#: guix-git/doc/guix.texi:10179 +#: guix-git/doc/guix.texi:10493 #, no-wrap msgid "source-module-closure" msgstr "source-module-closure" #. type: Plain text -#: guix-git/doc/guix.texi:10186 +#: guix-git/doc/guix.texi:10500 msgid "Usually you want the @emph{closure} of the module to be imported---i.e., the module itself and all the modules it depends on---rather than just the module; failing to do that, attempts to use the module will fail because of missing dependent modules. The @code{source-module-closure} procedure computes the closure of a module by looking at its source file headers, which comes in handy in this case:" msgstr "Normalerweise möchten Sie, dass der @emph{Abschluss} eines Moduls importiert wird@tie{}— also das Modul und alle Module, von denen es abhängt@tie{}— statt nur das Modul selbst. Ansonsten scheitern Versuche, das Modul zu benutzen, weil seine Modulabhängigkeiten fehlen. Die Prozedur @code{source-module-closure} berechnet den Abschluss eines Moduls, indem es den Kopf seiner Quelldatei analysiert, deswegen schafft die Prozedur hier Abhilfe:" #. type: lisp -#: guix-git/doc/guix.texi:10189 +#: guix-git/doc/guix.texi:10503 #, no-wrap msgid "" "(use-modules (guix modules)) ;for 'source-module-closure'\n" @@ -19653,7 +20230,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:10198 +#: guix-git/doc/guix.texi:10512 #, no-wrap msgid "" "(with-imported-modules (source-module-closure\n" @@ -19675,24 +20252,24 @@ msgstr "" " …)))\n" #. type: cindex -#: guix-git/doc/guix.texi:10200 +#: guix-git/doc/guix.texi:10514 #, no-wrap msgid "extensions, for gexps" msgstr "Erweiterungen, für G-Ausdrücke" #. type: findex -#: guix-git/doc/guix.texi:10201 +#: guix-git/doc/guix.texi:10515 #, no-wrap msgid "with-extensions" msgstr "with-extensions" #. type: Plain text -#: guix-git/doc/guix.texi:10206 +#: guix-git/doc/guix.texi:10520 msgid "In the same vein, sometimes you want to import not just pure-Scheme modules, but also ``extensions'' such as Guile bindings to C libraries or other ``full-blown'' packages. Say you need the @code{guile-json} package available on the build side, here's how you would do it:" msgstr "Auf die gleiche Art können Sie auch vorgehen, wenn Sie nicht bloß reine Scheme-Module importieren möchten, sondern auch „Erweiterungen“ wie Guile-Anbindungen von C-Bibliotheken oder andere „vollumfängliche“ Pakete. Sagen wir, Sie bräuchten das Paket @code{guile-json} auf der Erstellungsseite, dann könnten Sie es hiermit bekommen:" #. type: lisp -#: guix-git/doc/guix.texi:10209 +#: guix-git/doc/guix.texi:10523 #, no-wrap msgid "" "(use-modules (gnu packages guile)) ;for 'guile-json'\n" @@ -19702,7 +20279,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:10215 +#: guix-git/doc/guix.texi:10529 #, no-wrap msgid "" "(with-extensions (list guile-json)\n" @@ -19718,184 +20295,184 @@ msgstr "" " …)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:10218 +#: guix-git/doc/guix.texi:10532 msgid "The syntactic form to construct gexps is summarized below." msgstr "Die syntaktische Form, in der G-Ausdrücke konstruiert werden, ist im Folgenden zusammengefasst." #. type: deffn -#: guix-git/doc/guix.texi:10219 +#: guix-git/doc/guix.texi:10533 #, no-wrap msgid "{Scheme Syntax} #~@var{exp}" msgstr "{Scheme-Syntax} #~@var{Ausdruck}" #. type: deffnx -#: guix-git/doc/guix.texi:10220 +#: guix-git/doc/guix.texi:10534 #, no-wrap msgid "{Scheme Syntax} (gexp @var{exp})" msgstr "{Scheme-Syntax} (gexp @var{Ausdruck})" #. type: deffn -#: guix-git/doc/guix.texi:10223 +#: guix-git/doc/guix.texi:10537 msgid "Return a G-expression containing @var{exp}. @var{exp} may contain one or more of the following forms:" msgstr "Liefert einen G-Ausdruck, der den @var{Ausdruck} enthält. Der @var{Ausdruck} kann eine oder mehrere der folgenden Formen enthalten:" #. type: item -#: guix-git/doc/guix.texi:10225 +#: guix-git/doc/guix.texi:10539 #, no-wrap msgid "#$@var{obj}" msgstr "#$@var{Objekt}" #. type: itemx -#: guix-git/doc/guix.texi:10226 +#: guix-git/doc/guix.texi:10540 #, no-wrap msgid "(ungexp @var{obj})" msgstr "(ungexp @var{Objekt})" #. type: table -#: guix-git/doc/guix.texi:10231 +#: guix-git/doc/guix.texi:10545 msgid "Introduce a reference to @var{obj}. @var{obj} may have one of the supported types, for example a package or a derivation, in which case the @code{ungexp} form is replaced by its output file name---e.g., @code{\"/gnu/store/@dots{}-coreutils-8.22}." msgstr "Eine Referenz auf das @var{Objekt} einführen. Das @var{Objekt} kann einen der unterstützten Typen haben, zum Beispiel ein Paket oder eine Ableitung, so dass die @code{ungexp}-Form durch deren Ausgabedateiname ersetzt wird@tie{}— z.B.@: @code{\"/gnu/store/…-coreutils-8.22}." #. type: table -#: guix-git/doc/guix.texi:10234 +#: guix-git/doc/guix.texi:10548 msgid "If @var{obj} is a list, it is traversed and references to supported objects are substituted similarly." msgstr "Wenn das @var{Objekt} eine Liste ist, wird diese durchlaufen und alle unterstützten Objekte darin auf diese Weise ersetzt." #. type: table -#: guix-git/doc/guix.texi:10237 +#: guix-git/doc/guix.texi:10551 msgid "If @var{obj} is another gexp, its contents are inserted and its dependencies are added to those of the containing gexp." msgstr "Wenn das @var{Objekt} ein anderer G-Ausdruck ist, wird sein Inhalt eingefügt und seine Abhängigkeiten zu denen des äußeren G-Ausdrucks hinzugefügt." #. type: table -#: guix-git/doc/guix.texi:10239 +#: guix-git/doc/guix.texi:10553 msgid "If @var{obj} is another kind of object, it is inserted as is." msgstr "Wenn das @var{Objekt} eine andere Art von Objekt ist, wird es so wie es ist eingefügt." #. type: item -#: guix-git/doc/guix.texi:10240 +#: guix-git/doc/guix.texi:10554 #, no-wrap msgid "#$@var{obj}:@var{output}" msgstr "#$@var{Objekt}:@var{Ausgabe}" #. type: itemx -#: guix-git/doc/guix.texi:10241 +#: guix-git/doc/guix.texi:10555 #, no-wrap msgid "(ungexp @var{obj} @var{output})" msgstr "(ungexp @var{Objekt} @var{Ausgabe})" #. type: table -#: guix-git/doc/guix.texi:10245 +#: guix-git/doc/guix.texi:10559 msgid "This is like the form above, but referring explicitly to the @var{output} of @var{obj}---this is useful when @var{obj} produces multiple outputs (@pxref{Packages with Multiple Outputs})." msgstr "Dies verhält sich wie die Form oben, bezieht sich aber ausdrücklich auf die angegebene @var{Ausgabe} des @var{Objekt}s@tie{}— dies ist nützlich, wenn das @var{Objekt} mehrere Ausgaben generiert (siehe @ref{Packages with Multiple Outputs})." #. type: item -#: guix-git/doc/guix.texi:10246 +#: guix-git/doc/guix.texi:10560 #, no-wrap msgid "#+@var{obj}" msgstr "#+@var{Objekt}" #. type: itemx -#: guix-git/doc/guix.texi:10247 +#: guix-git/doc/guix.texi:10561 #, no-wrap msgid "#+@var{obj}:output" msgstr "#+@var{Objekt}:@var{Ausgabe}" #. type: itemx -#: guix-git/doc/guix.texi:10248 +#: guix-git/doc/guix.texi:10562 #, no-wrap msgid "(ungexp-native @var{obj})" msgstr "(ungexp-native @var{Objekt})" #. type: itemx -#: guix-git/doc/guix.texi:10249 +#: guix-git/doc/guix.texi:10563 #, no-wrap msgid "(ungexp-native @var{obj} @var{output})" msgstr "(ungexp-native @var{Objekt} @var{Ausgabe})" #. type: table -#: guix-git/doc/guix.texi:10252 +#: guix-git/doc/guix.texi:10566 msgid "Same as @code{ungexp}, but produces a reference to the @emph{native} build of @var{obj} when used in a cross compilation context." msgstr "Das Gleiche wie @code{ungexp}, jedoch wird im Kontext einer Cross-Kompilierung eine Referenz auf die @emph{native} Erstellung des @var{Objekt}s eingefügt." #. type: item -#: guix-git/doc/guix.texi:10253 +#: guix-git/doc/guix.texi:10567 #, no-wrap msgid "#$output[:@var{output}]" msgstr "#$output[:@var{Ausgabe}]" #. type: itemx -#: guix-git/doc/guix.texi:10254 +#: guix-git/doc/guix.texi:10568 #, no-wrap msgid "(ungexp output [@var{output}])" msgstr "(ungexp output [@var{Ausgabe}])" #. type: table -#: guix-git/doc/guix.texi:10257 +#: guix-git/doc/guix.texi:10571 msgid "Insert a reference to derivation output @var{output}, or to the main output when @var{output} is omitted." msgstr "Fügt eine Referenz auf die angegebene @var{Ausgabe} dieser Ableitung ein, oder auf die Hauptausgabe, wenn keine @var{Ausgabe} angegeben wurde." #. type: table -#: guix-git/doc/guix.texi:10259 +#: guix-git/doc/guix.texi:10573 msgid "This only makes sense for gexps passed to @code{gexp->derivation}." msgstr "Dies ist nur bei G-Ausdrücken sinnvoll, die an @code{gexp->derivation} übergeben werden." #. type: item -#: guix-git/doc/guix.texi:10260 +#: guix-git/doc/guix.texi:10574 #, no-wrap msgid "#$@@@var{lst}" msgstr "#$@@@var{Liste}" #. type: itemx -#: guix-git/doc/guix.texi:10261 +#: guix-git/doc/guix.texi:10575 #, no-wrap msgid "(ungexp-splicing @var{lst})" msgstr "(ungexp-splicing @var{Liste})" #. type: table -#: guix-git/doc/guix.texi:10264 +#: guix-git/doc/guix.texi:10578 msgid "Like the above, but splices the contents of @var{lst} inside the containing list." msgstr "Das Gleiche wie oben, jedoch wird nur der Inhalt der @var{Liste} in die äußere Liste eingespleißt." #. type: item -#: guix-git/doc/guix.texi:10265 +#: guix-git/doc/guix.texi:10579 #, no-wrap msgid "#+@@@var{lst}" msgstr "#+@@@var{Liste}" #. type: itemx -#: guix-git/doc/guix.texi:10266 +#: guix-git/doc/guix.texi:10580 #, no-wrap msgid "(ungexp-native-splicing @var{lst})" msgstr "(ungexp-native-splicing @var{Liste})" #. type: table -#: guix-git/doc/guix.texi:10269 +#: guix-git/doc/guix.texi:10583 msgid "Like the above, but refers to native builds of the objects listed in @var{lst}." msgstr "Das Gleiche, aber referenziert werden native Erstellungen der Objekte in der @var{Liste}." #. type: deffn -#: guix-git/doc/guix.texi:10274 +#: guix-git/doc/guix.texi:10588 msgid "G-expressions created by @code{gexp} or @code{#~} are run-time objects of the @code{gexp?} type (see below)." msgstr "G-Ausdrücke, die mit @code{gexp} oder @code{#~} erzeugt wurden, sind zur Laufzeit Objekte vom Typ @code{gexp?} (siehe unten)." #. type: deffn -#: guix-git/doc/guix.texi:10276 +#: guix-git/doc/guix.texi:10590 #, no-wrap msgid "{Scheme Syntax} with-imported-modules @var{modules} @var{body}@dots{}" msgstr "{Scheme-Syntax} with-imported-modules @var{Module} @var{Rumpf}…" #. type: deffn -#: guix-git/doc/guix.texi:10279 +#: guix-git/doc/guix.texi:10593 msgid "Mark the gexps defined in @var{body}@dots{} as requiring @var{modules} in their execution environment." msgstr "Markiert die in @var{Rumpf}…@: definierten G-Ausdrücke, dass sie in ihrer Ausführungsumgebung die angegebenen @var{Module} brauchen." #. type: deffn -#: guix-git/doc/guix.texi:10283 +#: guix-git/doc/guix.texi:10597 msgid "Each item in @var{modules} can be the name of a module, such as @code{(guix build utils)}, or it can be a module name, followed by an arrow, followed by a file-like object:" msgstr "Jedes Objekt unter den @var{Module}n kann der Name eines Moduls wie @code{(guix build utils)} sein, oder es kann nacheinander ein Modulname, ein Pfeil und ein dateiartiges Objekt sein:" #. type: lisp -#: guix-git/doc/guix.texi:10289 +#: guix-git/doc/guix.texi:10603 #, no-wrap msgid "" "`((guix build utils)\n" @@ -19909,80 +20486,80 @@ msgstr "" " #~(define-module …))))\n" #. type: deffn -#: guix-git/doc/guix.texi:10294 +#: guix-git/doc/guix.texi:10608 msgid "In the example above, the first two modules are taken from the search path, and the last one is created from the given file-like object." msgstr "Im Beispiel oben werden die ersten beiden Module vom Suchpfad genommen und das letzte aus dem angegebenen dateiartigen Objekt erzeugt." #. type: deffn -#: guix-git/doc/guix.texi:10298 +#: guix-git/doc/guix.texi:10612 msgid "This form has @emph{lexical} scope: it has an effect on the gexps directly defined in @var{body}@dots{}, but not on those defined, say, in procedures called from @var{body}@dots{}." msgstr "Diese Form hat einen @emph{lexikalischen} Sichtbarkeitsbereich: Sie wirkt sich auf die direkt in @var{Rumpf}…@: definierten G-Ausdrücke aus, aber nicht auf jene, die, sagen wir, in aus @var{Rumpf}…@: heraus aufgerufenen Prozeduren definiert wurden." #. type: deffn -#: guix-git/doc/guix.texi:10300 +#: guix-git/doc/guix.texi:10614 #, no-wrap msgid "{Scheme Syntax} with-extensions @var{extensions} @var{body}@dots{}" msgstr "{Scheme-Syntax} with-extensions @var{Erweiterungen} @var{Rumpf}…" #. type: deffn -#: guix-git/doc/guix.texi:10305 +#: guix-git/doc/guix.texi:10619 msgid "Mark the gexps defined in @var{body}@dots{} as requiring @var{extensions} in their build and execution environment. @var{extensions} is typically a list of package objects such as those defined in the @code{(gnu packages guile)} module." msgstr "Markiert die in @var{Rumpf}…@: definierten G-Ausdrücke, dass sie @var{Erweiterungen} in ihrer Erstellungs- und Ausführungsumgebung benötigen. @var{Erweiterungen} sind typischerweise eine Liste von Paketobjekten wie zum Beispiel die im Modul @code{(gnu packages guile)} definierten." #. type: deffn -#: guix-git/doc/guix.texi:10310 +#: guix-git/doc/guix.texi:10624 msgid "Concretely, the packages listed in @var{extensions} are added to the load path while compiling imported modules in @var{body}@dots{}; they are also added to the load path of the gexp returned by @var{body}@dots{}." msgstr "Konkret werden die unter den @var{Erweiterungen} aufgeführten Pakete zum Ladepfad hinzugefügt, während die in @var{Rumpf}…@: aufgeführten importierten Module kompiliert werden und sie werden auch zum Ladepfad des von @var{Rumpf}…@: gelieferten G-Ausdrucks hinzugefügt." #. type: deffn -#: guix-git/doc/guix.texi:10312 +#: guix-git/doc/guix.texi:10626 #, no-wrap msgid "{Scheme Procedure} gexp? @var{obj}" msgstr "{Scheme-Prozedur} gexp? @var{Objekt}" #. type: deffn -#: guix-git/doc/guix.texi:10314 +#: guix-git/doc/guix.texi:10628 msgid "Return @code{#t} if @var{obj} is a G-expression." msgstr "Liefert @code{#t}, wenn das @var{Objekt} ein G-Ausdruck ist." #. type: Plain text -#: guix-git/doc/guix.texi:10320 +#: guix-git/doc/guix.texi:10634 msgid "G-expressions are meant to be written to disk, either as code building some derivation, or as plain files in the store. The monadic procedures below allow you to do that (@pxref{The Store Monad}, for more information about monads)." msgstr "G-Ausdrücke sind dazu gedacht, auf die Platte geschrieben zu werden, entweder als Code, der eine Ableitung erstellt, oder als einfache Dateien im Store. Die monadischen Prozeduren unten ermöglichen Ihnen das (siehe @ref{The Store Monad}, wenn Sie mehr Informationen über Monaden suchen)." #. type: deffn -#: guix-git/doc/guix.texi:10321 +#: guix-git/doc/guix.texi:10635 #, no-wrap msgid "{Monadic Procedure} gexp->derivation @var{name} @var{exp} @" msgstr "{Monadische Prozedur} gexp->derivation @var{Name} @var{Ausdruck} @" #. type: deffn -#: guix-git/doc/guix.texi:10339 +#: guix-git/doc/guix.texi:10653 msgid "[#:system (%current-system)] [#:target #f] [#:graft? #t] @ [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:env-vars '()] [#:modules '()] @ [#:module-path @code{%load-path}] @ [#:effective-version \"2.2\"] @ [#:references-graphs #f] [#:allowed-references #f] @ [#:disallowed-references #f] @ [#:leaked-env-vars #f] @ [#:script-name (string-append @var{name} \"-builder\")] @ [#:deprecation-warnings #f] @ [#:local-build? #f] [#:substitutable? #t] @ [#:properties '()] [#:guile-for-build #f] Return a derivation @var{name} that runs @var{exp} (a gexp) with @var{guile-for-build} (a derivation) on @var{system}; @var{exp} is stored in a file called @var{script-name}. When @var{target} is true, it is used as the cross-compilation target triplet for packages referred to by @var{exp}." msgstr "[#:system (%current-system)] [#:target #f] [#:graft? #t] @ [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:env-vars '()] [#:modules '()] @ [#:module-path @code{%load-path}] @ [#:effective-version \"2.2\"] @ [#:references-graphs #f] [#:allowed-references #f] @ [#:disallowed-references #f] @ [#:leaked-env-vars #f] @ [#:script-name (string-append @var{Name} \"-builder\")] @ [#:deprecation-warnings #f] @ [#:local-build? #f] [#:substitutable? #t] @ [#:properties '()] [#:guile-for-build #f] Liefert eine Ableitung unter dem @var{Name}n, die jeden @var{Ausdruck} (ein G-Ausdruck) mit @var{guile-for-build} (eine Ableitung) für das @var{System} erstellt; der @var{Ausdruck} wird dabei in einer Datei namens @var{script-name} gespeichert. Wenn „@var{target}“ wahr ist, wird es beim Cross-Kompilieren als Zieltripel für mit @var{Ausdruck} bezeichnete Pakete benutzt." #. type: deffn -#: guix-git/doc/guix.texi:10347 +#: guix-git/doc/guix.texi:10661 msgid "@var{modules} is deprecated in favor of @code{with-imported-modules}. Its meaning is to make @var{modules} available in the evaluation context of @var{exp}; @var{modules} is a list of names of Guile modules searched in @var{module-path} to be copied in the store, compiled, and made available in the load path during the execution of @var{exp}---e.g., @code{((guix build utils) (guix build gnu-build-system))}." msgstr "@var{modules} gilt als veraltet; stattdessen sollte @code{with-imported-modules} benutzt werden. Die Bedeutung ist, dass die @var{Module} im Ausführungskontext des @var{Ausdruck}s verfügbar gemacht werden; @var{modules} ist dabei eine Liste von Namen von Guile-Modulen, die im Modulpfad @var{module-path} gesucht werden, um sie in den Store zu kopieren, zu kompilieren und im Ladepfad während der Ausführung des @var{Ausdruck}s verfügbar zu machen@tie{}— z.B.@: @code{((guix build utils) (guix build gnu-build-system))}." #. type: deffn -#: guix-git/doc/guix.texi:10350 +#: guix-git/doc/guix.texi:10664 msgid "@var{effective-version} determines the string to use when adding extensions of @var{exp} (see @code{with-extensions}) to the search path---e.g., @code{\"2.2\"}." msgstr "@var{effective-version} bestimmt, unter welcher Zeichenkette die Erweiterungen des @var{Ausdruck}s zum Suchpfad hinzugefügt werden (siehe @code{with-extensions})@tie{}— z.B.@: @code{\"2.2\"}." #. type: deffn -#: guix-git/doc/guix.texi:10353 +#: guix-git/doc/guix.texi:10667 msgid "@var{graft?} determines whether packages referred to by @var{exp} should be grafted when applicable." msgstr "@var{graft?} bestimmt, ob vom @var{Ausdruck} benannte Pakete veredelt werden sollen, falls Veredelungen zur Verfügung stehen." #. type: deffn -#: guix-git/doc/guix.texi:10356 +#: guix-git/doc/guix.texi:10670 msgid "When @var{references-graphs} is true, it must be a list of tuples of one of the following forms:" msgstr "Ist @var{references-graphs} wahr, muss es eine Liste von Tupeln in einer der folgenden Formen sein:" #. type: example -#: guix-git/doc/guix.texi:10363 +#: guix-git/doc/guix.texi:10677 #, no-wrap msgid "" "(@var{file-name} @var{package})\n" @@ -19998,38 +20575,38 @@ msgstr "" "(@var{Dateiname} @var{Store-Objekt})\n" #. type: deffn -#: guix-git/doc/guix.texi:10369 +#: guix-git/doc/guix.texi:10683 msgid "The right-hand-side of each element of @var{references-graphs} is automatically made an input of the build process of @var{exp}. In the build environment, each @var{file-name} contains the reference graph of the corresponding item, in a simple text format." msgstr "Bei jedem Element von @var{references-graphs} wird das rechts Stehende automatisch zu einer Eingabe des Erstellungsprozesses vom @var{Ausdruck} gemacht. In der Erstellungsumgebung enthält das, was mit @var{Dateiname} bezeichnet wird, den Referenzgraphen des entsprechenden Objekts in einem einfachen Textformat." #. type: deffn -#: guix-git/doc/guix.texi:10375 +#: guix-git/doc/guix.texi:10689 msgid "@var{allowed-references} must be either @code{#f} or a list of output names and packages. In the latter case, the list denotes store items that the result is allowed to refer to. Any reference to another store item will lead to a build error. Similarly for @var{disallowed-references}, which can list items that must not be referenced by the outputs." msgstr "@var{allowed-references} muss entweder @code{#f} oder eine Liste von Ausgabenamen und Paketen sein. Eine solche Liste benennt Store-Objekte, die das Ergebnis referenzieren darf. Jede Referenz auf ein nicht dort aufgeführtes Store-Objekt löst einen Erstellungsfehler aus. Genauso funktioniert @var{disallowed-references}, was eine Liste von Objekten sein kann, die von den Ausgaben nicht referenziert werden dürfen." #. type: deffn -#: guix-git/doc/guix.texi:10378 +#: guix-git/doc/guix.texi:10692 msgid "@var{deprecation-warnings} determines whether to show deprecation warnings while compiling modules. It can be @code{#f}, @code{#t}, or @code{'detailed}." msgstr "@var{deprecation-warnings} bestimmt, ob beim Kompilieren von Modulen Warnungen angezeigt werden sollen, wenn auf als veraltet markierten Code zugegriffen wird. @var{deprecation-warnings} kann @code{#f}, @code{#t} oder @code{'detailed} (detailliert) sein." #. type: deffn -#: guix-git/doc/guix.texi:10380 +#: guix-git/doc/guix.texi:10694 msgid "The other arguments are as for @code{derivation} (@pxref{Derivations})." msgstr "Die anderen Argumente verhalten sich wie bei @code{derivation} (siehe @ref{Derivations})." #. type: cindex -#: guix-git/doc/guix.texi:10382 +#: guix-git/doc/guix.texi:10696 #, no-wrap msgid "file-like objects" msgstr "dateiartige Objekte" #. type: Plain text -#: guix-git/doc/guix.texi:10387 +#: guix-git/doc/guix.texi:10701 msgid "The @code{local-file}, @code{plain-file}, @code{computed-file}, @code{program-file}, and @code{scheme-file} procedures below return @dfn{file-like objects}. That is, when unquoted in a G-expression, these objects lead to a file in the store. Consider this G-expression:" msgstr "Die im Folgenden erklärten Prozeduren @code{local-file}, @code{plain-file}, @code{computed-file}, @code{program-file} und @code{scheme-file} liefern @dfn{dateiartige Objekte}. Das bedeutet, dass diese Objekte, wenn sie in einem G-Ausdruck demaskiert werden, zu einer Datei im Store führen. Betrachten Sie zum Beispiel diesen G-Ausdruck:" #. type: lisp -#: guix-git/doc/guix.texi:10391 +#: guix-git/doc/guix.texi:10705 #, no-wrap msgid "" "#~(system* #$(file-append glibc \"/sbin/nscd\") \"-f\"\n" @@ -20039,76 +20616,76 @@ msgstr "" " #$(local-file \"/tmp/my-nscd.conf\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:10400 +#: guix-git/doc/guix.texi:10714 msgid "The effect here is to ``intern'' @file{/tmp/my-nscd.conf} by copying it to the store. Once expanded, for instance @i{via} @code{gexp->derivation}, the G-expression refers to that copy under @file{/gnu/store}; thus, modifying or removing the file in @file{/tmp} does not have any effect on what the G-expression does. @code{plain-file} can be used similarly; it differs in that the file content is directly passed as a string." msgstr "Der Effekt hiervon ist, dass @file{/tmp/my-nscd.conf} „interniert“ wird, indem es in den Store kopiert wird. Sobald er umgeschrieben wurde, zum Beispiel über @code{gexp->derivation}, referenziert der G-Ausdruck diese Kopie im @file{/gnu/store}. Die Datei in @file{/tmp} zu bearbeiten oder zu löschen, hat dann keinen Effekt mehr darauf, was der G-Ausdruck tut. @code{plain-file} kann in ähnlicher Weise benutzt werden, es unterscheidet sich aber darin, dass dort der Prozedur der Inhalt der Datei als eine Zeichenkette übergeben wird." #. type: deffn -#: guix-git/doc/guix.texi:10401 +#: guix-git/doc/guix.texi:10715 #, no-wrap msgid "{Scheme Procedure} local-file @var{file} [@var{name}] @" msgstr "{Scheme-Prozedur} local-file @var{Datei} [@var{Name}] @" #. type: deffn -#: guix-git/doc/guix.texi:10410 +#: guix-git/doc/guix.texi:10724 msgid "[#:recursive? #f] [#:select? (const #t)] Return an object representing local file @var{file} to add to the store; this object can be used in a gexp. If @var{file} is a literal string denoting a relative file name, it is looked up relative to the source file where it appears; if @var{file} is not a literal string, it is looked up relative to the current working directory at run time. @var{file} will be added to the store under @var{name}--by default the base name of @var{file}." msgstr "[#:recursive? #f] [#:select? (const #t)] Liefert ein Objekt, dass die lokale Datei @var{Datei} repräsentiert und sie zum Store hinzufügen lässt; dieses Objekt kann in einem G-Ausdruck benutzt werden. Wurde für die @var{Datei} ein relativer Dateiname als literaler Ausdruck angegeben, wird sie relativ zur Quelldatei gesucht, in der diese Form steht. Wurde die @var{Datei} @emph{nicht} als literale Zeichenkette angegeben, wird sie zur Laufzeit relativ zum aktuellen Arbeitsverzeichnis gesucht. Die @var{Datei} wird unter dem angegebenen @var{Name}n im Store abgelegt@tie{}— als Vorgabe wird dabei der Basisname der @var{Datei} genommen." #. type: deffn -#: guix-git/doc/guix.texi:10422 +#: guix-git/doc/guix.texi:10736 msgid "This is the declarative counterpart of the @code{interned-file} monadic procedure (@pxref{The Store Monad, @code{interned-file}})." msgstr "Dies ist das deklarative Gegenstück zur monadischen Prozedur @code{interned-file} (siehe @ref{The Store Monad, @code{interned-file}})." #. type: deffn -#: guix-git/doc/guix.texi:10424 +#: guix-git/doc/guix.texi:10738 #, no-wrap msgid "{Scheme Procedure} plain-file @var{name} @var{content}" msgstr "{Scheme-Prozedur} plain-file @var{Name} @var{Inhalt}" #. type: deffn -#: guix-git/doc/guix.texi:10427 +#: guix-git/doc/guix.texi:10741 msgid "Return an object representing a text file called @var{name} with the given @var{content} (a string or a bytevector) to be added to the store." msgstr "Liefert ein Objekt, das eine Textdatei mit dem angegebenen @var{Name}n repräsentiert, die den angegebenen @var{Inhalt} hat (eine Zeichenkette oder ein Bytevektor), welche zum Store hinzugefügt werden soll." #. type: deffn -#: guix-git/doc/guix.texi:10429 +#: guix-git/doc/guix.texi:10743 msgid "This is the declarative counterpart of @code{text-file}." msgstr "Dies ist das deklarative Gegenstück zu @code{text-file}." #. type: deffn -#: guix-git/doc/guix.texi:10431 +#: guix-git/doc/guix.texi:10745 #, no-wrap msgid "{Scheme Procedure} computed-file @var{name} @var{gexp} @" msgstr "{Scheme-Prozedur} computed-file @var{Name} @var{G-Ausdruck} @" #. type: deffn -#: guix-git/doc/guix.texi:10438 +#: guix-git/doc/guix.texi:10752 msgid "[#:local-build? #t] [#:options '()] Return an object representing the store item @var{name}, a file or directory computed by @var{gexp}. When @var{local-build?} is true (the default), the derivation is built locally. @var{options} is a list of additional arguments to pass to @code{gexp->derivation}." msgstr "[#:local-build? #t] [#:options '()] Liefert ein Objekt, das das Store-Objekt mit dem @var{Name}n repräsentiert, eine Datei oder ein Verzeichnis, das vom @var{G-Ausdruck} berechnet wurde. Wenn @var{local-build?} auf wahr steht (wie vorgegeben), wird auf der lokalen Maschine erstellt. @var{options} ist eine Liste zusätzlicher Argumente, die an @code{gexp->derivation} übergeben werden." #. type: deffn -#: guix-git/doc/guix.texi:10440 +#: guix-git/doc/guix.texi:10754 msgid "This is the declarative counterpart of @code{gexp->derivation}." msgstr "Dies ist das deklarative Gegenstück zu @code{gexp->derivation}." #. type: deffn -#: guix-git/doc/guix.texi:10442 +#: guix-git/doc/guix.texi:10756 #, no-wrap msgid "{Monadic Procedure} gexp->script @var{name} @var{exp} @" msgstr "{Monadische Prozedur} gexp->script @var{Name} @var{Ausdruck} @" #. type: deffn -#: guix-git/doc/guix.texi:10448 +#: guix-git/doc/guix.texi:10762 msgid "[#:guile (default-guile)] [#:module-path %load-path] @ [#:system (%current-system)] [#:target #f] Return an executable script @var{name} that runs @var{exp} using @var{guile}, with @var{exp}'s imported modules in its search path. Look up @var{exp}'s modules in @var{module-path}." msgstr "[#:guile (default-guile)] [#:module-path %load-path] @ [#:system (%current-system)] [#:target #f] Liefert ein ausführbares Skript namens @var{Name}, das den @var{Ausdruck} mit dem angegebenen @var{guile} ausführt, wobei vom @var{Ausdruck} importierte Module in seinem Suchpfad stehen. Die Module des @var{Ausdruck}s werden dazu im Modulpfad @var{module-path} gesucht." #. type: deffn -#: guix-git/doc/guix.texi:10451 +#: guix-git/doc/guix.texi:10765 msgid "The example below builds a script that simply invokes the @command{ls} command:" msgstr "Folgendes Beispiel erstellt ein Skript, das einfach nur den Befehl @command{ls} ausführt:" #. type: lisp -#: guix-git/doc/guix.texi:10454 +#: guix-git/doc/guix.texi:10768 #, no-wrap msgid "" "(use-modules (guix gexp) (gnu packages base))\n" @@ -20118,7 +20695,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:10458 +#: guix-git/doc/guix.texi:10772 #, no-wrap msgid "" "(gexp->script \"list-files\"\n" @@ -20130,12 +20707,12 @@ msgstr "" " \"ls\"))\n" #. type: deffn -#: guix-git/doc/guix.texi:10463 +#: guix-git/doc/guix.texi:10777 msgid "When ``running'' it through the store (@pxref{The Store Monad, @code{run-with-store}}), we obtain a derivation that produces an executable file @file{/gnu/store/@dots{}-list-files} along these lines:" msgstr "Lässt man es durch den Store „laufen“ (siehe @ref{The Store Monad, @code{run-with-store}}), erhalten wir eine Ableitung, die eine ausführbare Datei @file{/gnu/store/…-list-files} generiert, ungefähr so:" #. type: example -#: guix-git/doc/guix.texi:10468 +#: guix-git/doc/guix.texi:10782 #, no-wrap msgid "" "#!/gnu/store/@dots{}-guile-2.0.11/bin/guile -ds\n" @@ -20147,76 +20724,76 @@ msgstr "" "(execl \"/gnu/store/…-coreutils-8.22\"/bin/ls\" \"ls\")\n" #. type: deffn -#: guix-git/doc/guix.texi:10471 +#: guix-git/doc/guix.texi:10785 #, no-wrap msgid "{Scheme Procedure} program-file @var{name} @var{exp} @" msgstr "{Scheme-Prozedur} program-file @var{Name} @var{G-Ausdruck} @" #. type: deffn -#: guix-git/doc/guix.texi:10476 +#: guix-git/doc/guix.texi:10790 msgid "[#:guile #f] [#:module-path %load-path] Return an object representing the executable store item @var{name} that runs @var{gexp}. @var{guile} is the Guile package used to execute that script. Imported modules of @var{gexp} are looked up in @var{module-path}." msgstr "[#:guile #f] [#:module-path %load-path] Liefert ein Objekt, das eine ausführbare Store-Datei @var{Name} repräsentiert, die den @var{G-Ausdruck} ausführt. @var{guile} ist das zu verwendende Guile-Paket, mit dem das Skript ausgeführt werden kann. Importierte Module des @var{G-Ausdruck}s werden im Modulpfad @var{module-path} gesucht." #. type: deffn -#: guix-git/doc/guix.texi:10478 +#: guix-git/doc/guix.texi:10792 msgid "This is the declarative counterpart of @code{gexp->script}." msgstr "Dies ist das deklarative Gegenstück zu @code{gexp->script}." #. type: deffn -#: guix-git/doc/guix.texi:10480 +#: guix-git/doc/guix.texi:10794 #, no-wrap msgid "{Monadic Procedure} gexp->file @var{name} @var{exp} @" msgstr "{Monadische Prozedur} gexp->file @var{Name} @var{G-Ausdruck} @" #. type: deffn -#: guix-git/doc/guix.texi:10487 +#: guix-git/doc/guix.texi:10801 msgid "[#:set-load-path? #t] [#:module-path %load-path] @ [#:splice? #f] @ [#:guile (default-guile)] Return a derivation that builds a file @var{name} containing @var{exp}. When @var{splice?} is true, @var{exp} is considered to be a list of expressions that will be spliced in the resulting file." msgstr "[#:set-load-path? #t] [#:module-path %load-path] @ [#:splice? #f] @ [#:guile (default-guile)] Liefert eine Ableitung, die eine Datei @var{Name} erstellen wird, deren Inhalt der @var{G-Ausdruck} ist. Ist @var{splice?} wahr, dann wird @var{G-Ausdruck} stattdessen als eine Liste von mehreren G-Ausdrücken behandelt, die alle in die resultierende Datei gespleißt werden." #. type: deffn -#: guix-git/doc/guix.texi:10492 +#: guix-git/doc/guix.texi:10806 msgid "When @var{set-load-path?} is true, emit code in the resulting file to set @code{%load-path} and @code{%load-compiled-path} to honor @var{exp}'s imported modules. Look up @var{exp}'s modules in @var{module-path}." msgstr "Ist @var{set-load-path?} wahr, wird in die resultierende Datei Code hinzugefügt, der den Ladepfad @code{%load-path} und den Ladepfad für kompilierte Dateien @code{%load-compiled-path} festlegt, die für die importierten Module des @var{G-Ausdruck}s nötig sind. Die Module des @var{G-Ausdruck}s werden im Modulpfad @var{module-path} gesucht." #. type: deffn -#: guix-git/doc/guix.texi:10495 +#: guix-git/doc/guix.texi:10809 msgid "The resulting file holds references to all the dependencies of @var{exp} or a subset thereof." msgstr "Die resultierende Datei referenziert alle Abhängigkeiten des @var{G-Ausdruck}s oder eine Teilmenge davon." #. type: deffn -#: guix-git/doc/guix.texi:10497 +#: guix-git/doc/guix.texi:10811 #, no-wrap msgid "{Scheme Procedure} scheme-file @var{name} @var{exp} @" msgstr "{Scheme-Prozedur} scheme-file @var{Name} @var{Ausdruck} @" #. type: deffn -#: guix-git/doc/guix.texi:10501 +#: guix-git/doc/guix.texi:10815 msgid "[#:splice? #f] [#:set-load-path? #t] Return an object representing the Scheme file @var{name} that contains @var{exp}." msgstr "[#:splice? #f] [#:set-load-path? #t] Liefert ein Objekt, das die Scheme-Datei @var{Name} mit dem @var{G-Ausdruck} als Inhalt repräsentiert." #. type: deffn -#: guix-git/doc/guix.texi:10503 +#: guix-git/doc/guix.texi:10817 msgid "This is the declarative counterpart of @code{gexp->file}." msgstr "Dies ist das deklarative Gegenstück zu @code{gexp->file}." #. type: deffn -#: guix-git/doc/guix.texi:10505 +#: guix-git/doc/guix.texi:10819 #, no-wrap msgid "{Monadic Procedure} text-file* @var{name} @var{text} @dots{}" msgstr "{Monadische Prozedur} text-file* @var{Name} @var{Text} …" #. type: deffn -#: guix-git/doc/guix.texi:10511 +#: guix-git/doc/guix.texi:10825 msgid "Return as a monadic value a derivation that builds a text file containing all of @var{text}. @var{text} may list, in addition to strings, objects of any type that can be used in a gexp: packages, derivations, local file objects, etc. The resulting store file holds references to all these." msgstr "Liefert eine Ableitung als monadischen Wert, welche eine Textdatei erstellt, in der der gesamte @var{Text} enthalten ist. @var{Text} kann eine Folge nicht nur von Zeichenketten, sondern auch Objekten beliebigen Typs sein, die in einem G-Ausdruck benutzt werden können, also Paketen, Ableitungen, Objekte lokaler Dateien und so weiter. Die resultierende Store-Datei referenziert alle davon." #. type: deffn -#: guix-git/doc/guix.texi:10516 +#: guix-git/doc/guix.texi:10830 msgid "This variant should be preferred over @code{text-file} anytime the file to create will reference items from the store. This is typically the case when building a configuration file that embeds store file names, like this:" msgstr "Diese Variante sollte gegenüber @code{text-file} bevorzugt verwendet werden, wann immer die zu erstellende Datei Objekte im Store referenzieren wird. Typischerweise ist das der Fall, wenn eine Konfigurationsdatei erstellt wird, die Namen von Store-Dateien enthält, so wie hier:" #. type: lisp -#: guix-git/doc/guix.texi:10524 +#: guix-git/doc/guix.texi:10838 #, no-wrap msgid "" "(define (profile.sh)\n" @@ -20234,23 +20811,23 @@ msgstr "" " grep \"/bin:\" sed \"/bin\\n\"))\n" #. type: deffn -#: guix-git/doc/guix.texi:10529 +#: guix-git/doc/guix.texi:10843 msgid "In this example, the resulting @file{/gnu/store/@dots{}-profile.sh} file will reference @var{coreutils}, @var{grep}, and @var{sed}, thereby preventing them from being garbage-collected during its lifetime." msgstr "In diesem Beispiel wird die resultierende Datei @file{/gnu/store/…-profile.sh} sowohl @var{coreutils}, @var{grep} als auch @var{sed} referenzieren, so dass der Müllsammler diese nicht löscht, während die resultierende Datei noch lebendig ist." #. type: deffn -#: guix-git/doc/guix.texi:10531 +#: guix-git/doc/guix.texi:10845 #, no-wrap msgid "{Scheme Procedure} mixed-text-file @var{name} @var{text} @dots{}" msgstr "{Scheme-Prozedur} mixed-text-file @var{Name} @var{Text} …" #. type: deffn -#: guix-git/doc/guix.texi:10535 +#: guix-git/doc/guix.texi:10849 msgid "Return an object representing store file @var{name} containing @var{text}. @var{text} is a sequence of strings and file-like objects, as in:" msgstr "Liefert ein Objekt, was die Store-Datei @var{Name} repräsentiert, die @var{Text} enthält. @var{Text} ist dabei eine Folge von Zeichenketten und dateiartigen Objekten wie zum Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:10539 +#: guix-git/doc/guix.texi:10853 #, no-wrap msgid "" "(mixed-text-file \"profile\"\n" @@ -20260,23 +20837,23 @@ msgstr "" " \"export PATH=\" coreutils \"/bin:\" grep \"/bin\")\n" #. type: deffn -#: guix-git/doc/guix.texi:10542 +#: guix-git/doc/guix.texi:10856 msgid "This is the declarative counterpart of @code{text-file*}." msgstr "Dies ist das deklarative Gegenstück zu @code{text-file*}." #. type: deffn -#: guix-git/doc/guix.texi:10544 +#: guix-git/doc/guix.texi:10858 #, no-wrap msgid "{Scheme Procedure} file-union @var{name} @var{files}" msgstr "{Scheme-Prozedur} file-union @var{Name} @var{Dateien}" #. type: deffn -#: guix-git/doc/guix.texi:10549 +#: guix-git/doc/guix.texi:10863 msgid "Return a @code{} that builds a directory containing all of @var{files}. Each item in @var{files} must be a two-element list where the first element is the file name to use in the new directory, and the second element is a gexp denoting the target file. Here's an example:" msgstr "Liefert ein @code{}, das ein Verzeichnis mit allen @var{Dateien} enthält. Jedes Objekt in @var{Dateien} muss eine zweielementige Liste sein, deren erstes Element der im neuen Verzeichnis zu benutzende Dateiname ist und deren zweites Element ein G-Ausdruck ist, der die Zieldatei benennt. Hier ist ein Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:10556 +#: guix-git/doc/guix.texi:10870 #, no-wrap msgid "" "(file-union \"etc\"\n" @@ -20292,50 +20869,50 @@ msgstr "" " \"alias ls='ls --color=auto'\"))))\n" #. type: deffn -#: guix-git/doc/guix.texi:10559 +#: guix-git/doc/guix.texi:10873 msgid "This yields an @code{etc} directory containing these two files." msgstr "Dies liefert ein Verzeichnis @code{etc}, das zwei Dateien enthält." #. type: deffn -#: guix-git/doc/guix.texi:10561 +#: guix-git/doc/guix.texi:10875 #, no-wrap msgid "{Scheme Procedure} directory-union @var{name} @var{things}" msgstr "{Scheme-Prozedur} directory-union @var{Name} @var{Dinge}" #. type: deffn -#: guix-git/doc/guix.texi:10564 +#: guix-git/doc/guix.texi:10878 msgid "Return a directory that is the union of @var{things}, where @var{things} is a list of file-like objects denoting directories. For example:" msgstr "Liefert ein Verzeichnis, was die Vereinigung (englisch „Union“) der @var{Dinge} darstellt, wobei @var{Dinge} eine Liste dateiartiger Objekte sein muss, die Verzeichnisse bezeichnen. Zum Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:10567 +#: guix-git/doc/guix.texi:10881 #, no-wrap msgid "(directory-union \"guile+emacs\" (list guile emacs))\n" msgstr "(directory-union \"guile+emacs\" (list guile emacs))\n" #. type: deffn -#: guix-git/doc/guix.texi:10570 +#: guix-git/doc/guix.texi:10884 msgid "yields a directory that is the union of the @code{guile} and @code{emacs} packages." msgstr "Das liefert ein Verzeichnis, welches die Vereinigung der Pakete @code{guile} und @code{emacs} ist." #. type: deffn -#: guix-git/doc/guix.texi:10572 +#: guix-git/doc/guix.texi:10886 #, no-wrap msgid "{Scheme Procedure} file-append @var{obj} @var{suffix} @dots{}" msgstr "{Scheme-Prozedur} file-append @var{Objekt} @var{Suffix} …" #. type: deffn -#: guix-git/doc/guix.texi:10576 +#: guix-git/doc/guix.texi:10890 msgid "Return a file-like object that expands to the concatenation of @var{obj} and @var{suffix}, where @var{obj} is a lowerable object and each @var{suffix} is a string." msgstr "Liefert ein dateiartiges Objekt, das zur Aneinanderreihung von @var{Objekt} und @var{Suffix} umgeschrieben wird, wobei das @var{Objekt} ein herunterbrechbares Objekt und jedes @var{Suffix} eine Zeichenkette sein muss." #. type: deffn -#: guix-git/doc/guix.texi:10578 +#: guix-git/doc/guix.texi:10892 msgid "As an example, consider this gexp:" msgstr "Betrachten Sie zum Beispiel diesen G-Ausdruck:" #. type: lisp -#: guix-git/doc/guix.texi:10583 +#: guix-git/doc/guix.texi:10897 #, no-wrap msgid "" "(gexp->script \"run-uname\"\n" @@ -20347,12 +20924,12 @@ msgstr "" " \"/bin/uname\")))\n" #. type: deffn -#: guix-git/doc/guix.texi:10586 +#: guix-git/doc/guix.texi:10900 msgid "The same effect could be achieved with:" msgstr "Denselben Effekt könnte man erreichen mit:" #. type: lisp -#: guix-git/doc/guix.texi:10591 +#: guix-git/doc/guix.texi:10905 #, no-wrap msgid "" "(gexp->script \"run-uname\"\n" @@ -20364,39 +20941,39 @@ msgstr "" " \"/bin/uname\")))\n" #. type: deffn -#: guix-git/doc/guix.texi:10597 +#: guix-git/doc/guix.texi:10911 msgid "There is one difference though: in the @code{file-append} case, the resulting script contains the absolute file name as a string, whereas in the second case, the resulting script contains a @code{(string-append @dots{})} expression to construct the file name @emph{at run time}." msgstr "Es gibt jedoch einen Unterschied, nämlich enthält das resultierende Skript bei @code{file-append} tatsächlich den absoluten Dateinamen als Zeichenkette, während im anderen Fall das resultierende Skript einen Ausdruck @code{(string-append …)} enthält, der den Dateinamen erst @emph{zur Laufzeit} zusammensetzt." #. type: deffn -#: guix-git/doc/guix.texi:10599 +#: guix-git/doc/guix.texi:10913 #, no-wrap msgid "{Scheme Syntax} let-system @var{system} @var{body}@dots{}" msgstr "{Scheme-Syntax} let-system @var{System} @var{Rumpf}…" #. type: deffnx -#: guix-git/doc/guix.texi:10600 +#: guix-git/doc/guix.texi:10914 #, no-wrap msgid "{Scheme Syntax} let-system (@var{system} @var{target}) @var{body}@dots{}" msgstr "{Scheme-Syntax} let-system (@var{System} @var{Zielsystem}) @var{Rumpf}…" #. type: deffn -#: guix-git/doc/guix.texi:10603 +#: guix-git/doc/guix.texi:10917 msgid "Bind @var{system} to the currently targeted system---e.g., @code{\"x86_64-linux\"}---within @var{body}." msgstr "@var{System} an das System binden, für das momentan erstellt wird@tie{}— z.B.@: @code{\"x86_64-linux\"}@tie{}—, während der @var{Rumpf} ausgeführt wird." #. type: deffn -#: guix-git/doc/guix.texi:10608 +#: guix-git/doc/guix.texi:10922 msgid "In the second case, additionally bind @var{target} to the current cross-compilation target---a GNU triplet such as @code{\"arm-linux-gnueabihf\"}---or @code{#f} if we are not cross-compiling." msgstr "In der zweiten Form wird zusätzlich das @var{Ziel} an das aktuelle Ziel („Target“) bei der Cross-Kompilierung gebunden. Dabei handelt es sich um ein GNU-Tripel wie z.B.@: @code{\"arm-linux-gnueabihf\"}@tie{}— oder um @code{#f}, wenn nicht cross-kompiliert wird." #. type: deffn -#: guix-git/doc/guix.texi:10611 +#: guix-git/doc/guix.texi:10925 msgid "@code{let-system} is useful in the occasional case where the object spliced into the gexp depends on the target system, as in this example:" msgstr "@code{let-system} zu benutzen, bietet sich dann an, wenn einmal das in den G-Ausdruck gespleißte Objekt vom Zielsystem abhängen sollte, wie in diesem Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:10622 +#: guix-git/doc/guix.texi:10936 #, no-wrap msgid "" "#~(system*\n" @@ -20420,23 +20997,23 @@ msgstr "" " \"-net\" \"user\" #$image)\n" #. type: deffn -#: guix-git/doc/guix.texi:10625 +#: guix-git/doc/guix.texi:10939 #, no-wrap msgid "{Scheme Syntax} with-parameters ((@var{parameter} @var{value}) @dots{}) @var{exp}" msgstr "{Scheme-Syntax} with-parameters ((@var{Parameter} @var{Wert}) …) @var{Ausdruck}" #. type: deffn -#: guix-git/doc/guix.texi:10631 +#: guix-git/doc/guix.texi:10945 msgid "This macro is similar to the @code{parameterize} form for dynamically-bound @dfn{parameters} (@pxref{Parameters,,, guile, GNU Guile Reference Manual}). The key difference is that it takes effect when the file-like object returned by @var{exp} is lowered to a derivation or store item." msgstr "Mit diesem Makro verhält es sich ähnlich wie mit der @code{parameterize}-Form für dynamisch gebundene @dfn{Parameter} (siehe @ref{Parameters,,, guile, Referenzhandbuch zu GNU Guile}). Der Hauptunterschied ist, dass es sich erst auswirkt, wenn das vom @var{Ausdruck} zurückgelieferte dateiartige Objekt auf eine Ableitung oder ein Store-Objekt heruntergebrochen wird." #. type: deffn -#: guix-git/doc/guix.texi:10634 +#: guix-git/doc/guix.texi:10948 msgid "A typical use of @code{with-parameters} is to force the system in effect for a given object:" msgstr "Eine typische Anwendung von @code{with-parameters} ist, den für ein bestimmtes Objekt geltenden Systemtyp zwingend festzulegen:" #. type: lisp -#: guix-git/doc/guix.texi:10638 +#: guix-git/doc/guix.texi:10952 #, no-wrap msgid "" "(with-parameters ((%current-system \"i686-linux\"))\n" @@ -20446,94 +21023,94 @@ msgstr "" " coreutils)\n" #. type: deffn -#: guix-git/doc/guix.texi:10642 +#: guix-git/doc/guix.texi:10956 msgid "The example above returns an object that corresponds to the i686 build of Coreutils, regardless of the current value of @code{%current-system}." msgstr "Obiges Beispiel liefert ein Objekt, das der Erstellung von Coreutils für die i686-Architektur entspricht, egal was der aktuelle Wert von @code{%current-system} ist." #. type: Plain text -#: guix-git/doc/guix.texi:10649 +#: guix-git/doc/guix.texi:10963 msgid "Of course, in addition to gexps embedded in ``host'' code, there are also modules containing build tools. To make it clear that they are meant to be used in the build stratum, these modules are kept in the @code{(guix build @dots{})} name space." msgstr "Natürlich gibt es zusätzlich zu in „wirtsseitigem“ Code eingebetteten G-Ausdrücken auch Module mit „erstellungsseitig“ nutzbaren Werkzeugen. Um klarzustellen, dass sie dafür gedacht sind, in der Erstellungsschicht benutzt zu werden, bleiben diese Module im Namensraum @code{(guix build …)}." #. type: Plain text -#: guix-git/doc/guix.texi:10655 +#: guix-git/doc/guix.texi:10969 msgid "Internally, high-level objects are @dfn{lowered}, using their compiler, to either derivations or store items. For instance, lowering a package yields a derivation, and lowering a @code{plain-file} yields a store item. This is achieved using the @code{lower-object} monadic procedure." msgstr "Intern werden hochsprachliche, abstrakte Objekte mit ihrem Compiler entweder zu Ableitungen oder zu Store-Objekten @dfn{heruntergebrochen}. Wird zum Beispiel ein Paket heruntergebrochen, bekommt man eine Ableitung, während ein @code{plain-file} zu einem Store-Objekt heruntergebrochen wird. Das wird mit der monadischen Prozedur @code{lower-object} bewerkstelligt." #. type: deffn -#: guix-git/doc/guix.texi:10656 +#: guix-git/doc/guix.texi:10970 #, no-wrap msgid "{Monadic Procedure} lower-object @var{obj} [@var{system}] @" msgstr "{Monadische Prozedur} lower-object @var{Objekt} [@var{System}] @" #. type: deffn -#: guix-git/doc/guix.texi:10662 +#: guix-git/doc/guix.texi:10976 msgid "[#:target #f] Return as a value in @code{%store-monad} the derivation or store item corresponding to @var{obj} for @var{system}, cross-compiling for @var{target} if @var{target} is true. @var{obj} must be an object that has an associated gexp compiler, such as a @code{}." msgstr "[#:target #f] Liefert die Ableitung oder das Store-Objekt, das dem @var{Objekt} für @var{System} als Wert in der Store-Monade @code{%store-monad} entspricht, cross-kompiliert für das Zieltripel @var{target}, wenn @var{target} wahr ist. Das @var{Objekt} muss ein Objekt sein, für das es einen mit ihm assoziierten G-Ausdruck-Compiler gibt, wie zum Beispiel ein @code{}." #. type: deffn -#: guix-git/doc/guix.texi:10664 +#: guix-git/doc/guix.texi:10978 #, no-wrap msgid "{Procedure} gexp->approximate-sexp @var{gexp}" msgstr "{Prozedur} gexp->approximate-sexp @var{G-Ausdruck}" #. type: deffn -#: guix-git/doc/guix.texi:10672 +#: guix-git/doc/guix.texi:10986 msgid "Sometimes, it may be useful to convert a G-exp into a S-exp. For example, some linters (@pxref{Invoking guix lint}) peek into the build phases of a package to detect potential problems. This conversion can be achieved with this procedure. However, some information can be lost in the process. More specifically, lowerable objects will be silently replaced with some arbitrary object -- currently the list @code{(*approximate*)}, but this may change." msgstr "Es kann gelegentlich nützlich sein, einen G-Ausdruck in einen S-Ausdruck umzuwandeln, weil zum Beispiel manche Prüfer (siehe @ref{Invoking guix lint}) einen Blick auf die Erstellungsphasen eines Pakets werfen, um mögliche Fehler zu finden. Diese Umwandlung können Sie mit dieser Prozedur bewerkstelligen. Allerdings kann dabei manche Information verloren gehen. Genauer gesagt werden herunterbrechbare Objekte stillschweigend durch ein beliebiges Objekt ersetzt. Zurzeit ist dieses beliebige Objekt die Liste @code{(*approximate*)}, aber verlassen Sie sich nicht darauf, dass es so bleibt." #. type: section -#: guix-git/doc/guix.texi:10675 +#: guix-git/doc/guix.texi:10989 #, no-wrap msgid "Invoking @command{guix repl}" msgstr "@command{guix repl} aufrufen" #. type: cindex -#: guix-git/doc/guix.texi:10677 +#: guix-git/doc/guix.texi:10991 #, no-wrap msgid "REPL, read-eval-print loop, script" msgstr "REPL (Lese-Auswerten-Schreiben-Schleife) und Skripts" #. type: Plain text -#: guix-git/doc/guix.texi:10687 +#: guix-git/doc/guix.texi:11001 msgid "The @command{guix repl} command makes it easier to program Guix in Guile by launching a Guile @dfn{read-eval-print loop} (REPL) for interactive programming (@pxref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}), or by running Guile scripts (@pxref{Running Guile Scripts,,, guile, GNU Guile Reference Manual}). Compared to just launching the @command{guile} command, @command{guix repl} guarantees that all the Guix modules and all its dependencies are available in the search path." msgstr "Der Befehl @command{guix repl} erleichtert es, Guix von Guile aus zu programmieren. Dazu startet er eine Guile-REPL (@dfn{Read-Eval-Print Loop}, kurz REPL, deutsch Lese-Auswerten-Schreiben-Schleife) zur interaktiven Programmierung (siehe @ref{Using Guile Interactively,,, guile, Referenzhandbuch zu GNU Guile}) oder er führt Guile-Skripts aus (siehe @ref{Running Guile Scripts,,, guile, Referenzhandbuch zu GNU Guile}). Im Vergleich dazu, einfach den Befehl @command{guile} aufzurufen, garantiert @command{guix repl}, dass alle Guix-Module und deren Abhängigkeiten im Suchpfad verfügbar sind." #. type: example -#: guix-git/doc/guix.texi:10692 +#: guix-git/doc/guix.texi:11006 #, no-wrap msgid "guix repl @var{options} [@var{file} @var{args}]\n" msgstr "guix repl @var{Optionen} [@var{Datei} @var{Argumente}]\n" #. type: Plain text -#: guix-git/doc/guix.texi:10696 +#: guix-git/doc/guix.texi:11010 msgid "When a @var{file} argument is provided, @var{file} is executed as a Guile scripts:" msgstr "Wird ein @var{Datei}-Argument angegeben, wird die angegebene @var{Datei} als Guile-Skript ausgeführt." #. type: example -#: guix-git/doc/guix.texi:10699 +#: guix-git/doc/guix.texi:11013 #, no-wrap msgid "guix repl my-script.scm\n" msgstr "guix repl my-script.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:10703 +#: guix-git/doc/guix.texi:11017 msgid "To pass arguments to the script, use @code{--} to prevent them from being interpreted as arguments to @command{guix repl} itself:" msgstr "Um Argumente an das Skript zu übergeben, geben Sie davor @code{--} an, damit Sie nicht als Argumente an @command{guix repl} verstanden werden:" #. type: example -#: guix-git/doc/guix.texi:10706 +#: guix-git/doc/guix.texi:11020 #, no-wrap msgid "guix repl -- my-script.scm --input=foo.txt\n" msgstr "guix repl -- my-script.scm --input=foo.txt\n" #. type: Plain text -#: guix-git/doc/guix.texi:10711 +#: guix-git/doc/guix.texi:11025 msgid "To make a script executable directly from the shell, using the guix executable that is on the user's search path, add the following two lines at the top of the script:" msgstr "Wenn Sie möchten, dass ein Skript direkt aus der Shell heraus ausgeführt werden kann und diejenige ausführbare Datei von Guix benutzt wird, die sich im Suchpfad des Benutzers befindet, dann fügen Sie die folgenden zwei Zeilen ganz oben ins Skript ein." #. type: example -#: guix-git/doc/guix.texi:10715 +#: guix-git/doc/guix.texi:11029 #, no-wrap msgid "" "@code{#!/usr/bin/env -S guix repl --}\n" @@ -20543,12 +21120,12 @@ msgstr "" "@code{!#}\n" #. type: Plain text -#: guix-git/doc/guix.texi:10718 +#: guix-git/doc/guix.texi:11032 msgid "Without a file name argument, a Guile REPL is started:" msgstr "Ohne einen Dateinamen als Argument wird eine Guile-REPL gestartet:" #. type: example -#: guix-git/doc/guix.texi:10724 +#: guix-git/doc/guix.texi:11038 #, no-wrap msgid "" "$ guix repl\n" @@ -20562,169 +21139,169 @@ msgstr "" "$1 = #\n" #. type: Plain text -#: guix-git/doc/guix.texi:10731 +#: guix-git/doc/guix.texi:11045 msgid "In addition, @command{guix repl} implements a simple machine-readable REPL protocol for use by @code{(guix inferior)}, a facility to interact with @dfn{inferiors}, separate processes running a potentially different revision of Guix." msgstr "@command{guix repl} implementiert zusätzlich ein einfaches maschinenlesbares Protokoll für die REPL, das von @code{(guix inferior)} benutzt wird, um mit @dfn{Untergeordneten} zu interagieren, also mit getrennten Prozessen einer womöglich anderen Version von Guix." #. type: Plain text -#: guix-git/doc/guix.texi:10733 +#: guix-git/doc/guix.texi:11047 msgid "The available options are as follows:" msgstr "Folgende @var{Optionen} gibt es:" #. type: item -#: guix-git/doc/guix.texi:10735 guix-git/doc/guix.texi:13411 +#: guix-git/doc/guix.texi:11049 guix-git/doc/guix.texi:13768 #, no-wrap msgid "--type=@var{type}" msgstr "--type=@var{Typ}" #. type: itemx -#: guix-git/doc/guix.texi:10736 guix-git/doc/guix.texi:13412 -#: guix-git/doc/guix.texi:35281 +#: guix-git/doc/guix.texi:11050 guix-git/doc/guix.texi:13769 +#: guix-git/doc/guix.texi:35725 #, no-wrap msgid "-t @var{type}" msgstr "-t @var{Typ}" #. type: table -#: guix-git/doc/guix.texi:10738 +#: guix-git/doc/guix.texi:11052 msgid "Start a REPL of the given @var{TYPE}, which can be one of the following:" msgstr "Startet eine REPL des angegebenen @var{Typ}s, der einer der Folgenden sein darf:" #. type: item -#: guix-git/doc/guix.texi:10740 +#: guix-git/doc/guix.texi:11054 #, no-wrap msgid "guile" msgstr "guile" #. type: table -#: guix-git/doc/guix.texi:10742 +#: guix-git/doc/guix.texi:11056 msgid "This is default, and it spawns a standard full-featured Guile REPL." msgstr "Die Voreinstellung, mit der eine normale, voll funktionsfähige Guile-REPL gestartet wird." #. type: item -#: guix-git/doc/guix.texi:10742 +#: guix-git/doc/guix.texi:11056 #, no-wrap msgid "machine" msgstr "machine" #. type: table -#: guix-git/doc/guix.texi:10745 +#: guix-git/doc/guix.texi:11059 msgid "Spawn a REPL that uses the machine-readable protocol. This is the protocol that the @code{(guix inferior)} module speaks." msgstr "Startet eine REPL, die ein maschinenlesbares Protokoll benutzt. Dieses Protokoll wird vom Modul @code{(guix inferior)} gesprochen." #. type: table -#: guix-git/doc/guix.texi:10751 +#: guix-git/doc/guix.texi:11065 msgid "By default, @command{guix repl} reads from standard input and writes to standard output. When this option is passed, it will instead listen for connections on @var{endpoint}. Here are examples of valid options:" msgstr "Der Vorgabe nach würde @command{guix repl} von der Standardeingabe lesen und auf die Standardausgabe schreiben. Wird diese Befehlszeilenoption angegeben, lauscht die REPL stattdessen auf dem @var{Endpunkt} auf Verbindungen. Hier sind Beispiele gültiger Befehlszeilenoptionen:" #. type: item -#: guix-git/doc/guix.texi:10753 +#: guix-git/doc/guix.texi:11067 #, no-wrap msgid "--listen=tcp:37146" msgstr "--listen=tcp:37146" #. type: table -#: guix-git/doc/guix.texi:10755 +#: guix-git/doc/guix.texi:11069 msgid "Accept connections on localhost on port 37146." msgstr "Verbindungen mit dem „localhost“ auf Port 37146 akzeptieren." #. type: item -#: guix-git/doc/guix.texi:10756 +#: guix-git/doc/guix.texi:11070 #, no-wrap msgid "--listen=unix:/tmp/socket" msgstr "--listen=unix:/tmp/socket" #. type: table -#: guix-git/doc/guix.texi:10758 +#: guix-git/doc/guix.texi:11072 msgid "Accept connections on the Unix-domain socket @file{/tmp/socket}." msgstr "Verbindungen zum Unix-Socket @file{/tmp/socket} akzeptieren." #. type: item -#: guix-git/doc/guix.texi:10760 guix-git/doc/guix.texi:10865 -#: guix-git/doc/guix.texi:12763 guix-git/doc/guix.texi:12840 -#: guix-git/doc/guix.texi:13046 guix-git/doc/guix.texi:13191 -#: guix-git/doc/guix.texi:13459 +#: guix-git/doc/guix.texi:11074 guix-git/doc/guix.texi:11179 +#: guix-git/doc/guix.texi:13078 guix-git/doc/guix.texi:13196 +#: guix-git/doc/guix.texi:13403 guix-git/doc/guix.texi:13548 +#: guix-git/doc/guix.texi:13816 #, no-wrap msgid "--load-path=@var{directory}" msgstr "--load-path=@var{Verzeichnis}" #. type: itemx -#: guix-git/doc/guix.texi:10761 guix-git/doc/guix.texi:10866 -#: guix-git/doc/guix.texi:12841 guix-git/doc/guix.texi:13047 -#: guix-git/doc/guix.texi:13192 guix-git/doc/guix.texi:13460 +#: guix-git/doc/guix.texi:11075 guix-git/doc/guix.texi:11180 +#: guix-git/doc/guix.texi:13197 guix-git/doc/guix.texi:13404 +#: guix-git/doc/guix.texi:13549 guix-git/doc/guix.texi:13817 #, no-wrap msgid "-L @var{directory}" msgstr "-L @var{Verzeichnis}" #. type: table -#: guix-git/doc/guix.texi:10764 guix-git/doc/guix.texi:10869 -#: guix-git/doc/guix.texi:12766 guix-git/doc/guix.texi:12844 -#: guix-git/doc/guix.texi:13050 guix-git/doc/guix.texi:13195 -#: guix-git/doc/guix.texi:13463 +#: guix-git/doc/guix.texi:11078 guix-git/doc/guix.texi:11183 +#: guix-git/doc/guix.texi:13081 guix-git/doc/guix.texi:13200 +#: guix-git/doc/guix.texi:13407 guix-git/doc/guix.texi:13552 +#: guix-git/doc/guix.texi:13820 msgid "Add @var{directory} to the front of the package module search path (@pxref{Package Modules})." msgstr "Das @var{Verzeichnis} vorne an den Suchpfad für Paketmodule anfügen (siehe @ref{Package Modules})." #. type: table -#: guix-git/doc/guix.texi:10767 +#: guix-git/doc/guix.texi:11081 msgid "This allows users to define their own packages and make them visible to the script or REPL." msgstr "Damit können Nutzer dafür sorgen, dass ihre eigenen selbstdefinierten Pakete für Skript oder REPL sichtbar sind." #. type: itemx -#: guix-git/doc/guix.texi:10768 guix-git/doc/guix.texi:11390 +#: guix-git/doc/guix.texi:11082 guix-git/doc/guix.texi:11704 #, no-wrap msgid "-q" msgstr "-q" #. type: table -#: guix-git/doc/guix.texi:10771 +#: guix-git/doc/guix.texi:11085 msgid "Inhibit loading of the @file{~/.guile} file. By default, that configuration file is loaded when spawning a @code{guile} REPL." msgstr "Das Laden der @file{~/.guile}-Datei unterdrücken. Nach Voreinstellung würde diese Konfigurationsdatei beim Erzeugen einer REPL für @code{guile} geladen." #. type: Plain text -#: guix-git/doc/guix.texi:10781 +#: guix-git/doc/guix.texi:11095 msgid "This section describes Guix command-line utilities. Some of them are primarily targeted at developers and users who write new package definitions, while others are more generally useful. They complement the Scheme programming interface of Guix in a convenient way." msgstr "Dieser Abschnitt beschreibt die Befehlszeilenwerkzeuge von Guix. Manche davon richten sich hauptsächlich an Entwickler und solche Nutzer, die neue Paketdefinitionen schreiben, andere sind auch für ein breiteres Publikum nützlich. Sie ergänzen die Scheme-Programmierschnittstelle um bequeme Befehle." #. type: cindex -#: guix-git/doc/guix.texi:10804 +#: guix-git/doc/guix.texi:11118 #, no-wrap msgid "package building" msgstr "Paketerstellung" #. type: command{#1} -#: guix-git/doc/guix.texi:10805 +#: guix-git/doc/guix.texi:11119 #, no-wrap msgid "guix build" msgstr "guix build" #. type: Plain text -#: guix-git/doc/guix.texi:10811 +#: guix-git/doc/guix.texi:11125 msgid "The @command{guix build} command builds packages or derivations and their dependencies, and prints the resulting store paths. Note that it does not modify the user's profile---this is the job of the @command{guix package} command (@pxref{Invoking guix package}). Thus, it is mainly useful for distribution developers." msgstr "Der Befehl @command{guix build} lässt Pakete oder Ableitungen samt ihrer Abhängigkeiten erstellen und gibt die resultierenden Pfade im Store aus. Beachten Sie, dass das Nutzerprofil dadurch nicht modifiziert wird@tie{}— eine solche Installation bewirkt der Befehl @command{guix package} (siehe @ref{Invoking guix package}). @command{guix build} wird also hauptsächlich von Entwicklern der Distribution benutzt." #. type: example -#: guix-git/doc/guix.texi:10816 +#: guix-git/doc/guix.texi:11130 #, no-wrap msgid "guix build @var{options} @var{package-or-derivation}@dots{}\n" msgstr "guix build @var{Optionen} @var{Paket-oder-Ableitung}…\n" #. type: Plain text -#: guix-git/doc/guix.texi:10821 +#: guix-git/doc/guix.texi:11135 msgid "As an example, the following command builds the latest versions of Emacs and of Guile, displays their build logs, and finally displays the resulting directories:" msgstr "Zum Beispiel wird mit folgendem Befehl die neueste Version von Emacs und von Guile erstellt, das zugehörige Erstellungsprotokoll angezeigt und letztendlich werden die resultierenden Verzeichnisse ausgegeben:" #. type: example -#: guix-git/doc/guix.texi:10824 +#: guix-git/doc/guix.texi:11138 #, no-wrap msgid "guix build emacs guile\n" msgstr "guix build emacs guile\n" #. type: Plain text -#: guix-git/doc/guix.texi:10827 +#: guix-git/doc/guix.texi:11141 msgid "Similarly, the following command builds all the available packages:" msgstr "Folgender Befehl erstellt alle Pakete, die zur Verfügung stehen:" #. type: example -#: guix-git/doc/guix.texi:10831 +#: guix-git/doc/guix.texi:11145 #, no-wrap msgid "" "guix build --quiet --keep-going \\\n" @@ -20734,321 +21311,321 @@ msgstr "" " $(guix package -A | awk '@{ print $1 \"@@\" $2 @}')\n" #. type: Plain text -#: guix-git/doc/guix.texi:10839 +#: guix-git/doc/guix.texi:11153 msgid "@var{package-or-derivation} may be either the name of a package found in the software distribution such as @code{coreutils} or @code{coreutils@@8.20}, or a derivation such as @file{/gnu/store/@dots{}-coreutils-8.19.drv}. In the former case, a package with the corresponding name (and optionally version) is searched for among the GNU distribution modules (@pxref{Package Modules})." msgstr "Als @var{Paket-oder-Ableitung} muss entweder der Name eines in der Software-Distribution zu findenden Pakets, wie etwa @code{coreutils} oder @code{coreutils@@8.20}, oder eine Ableitung wie @file{/gnu/store/…-coreutils-8.19.drv} sein. Im ersten Fall wird nach einem Paket mit entsprechendem Namen (und optional der entsprechenden Version) in den Modulen der GNU-Distribution gesucht (siehe @ref{Package Modules})." #. type: Plain text -#: guix-git/doc/guix.texi:10844 +#: guix-git/doc/guix.texi:11158 msgid "Alternatively, the @option{--expression} option may be used to specify a Scheme expression that evaluates to a package; this is useful when disambiguating among several same-named packages or package variants is needed." msgstr "Alternativ kann die Befehlszeilenoption @option{--expression} benutzt werden, um einen Scheme-Ausdruck anzugeben, der zu einem Paket ausgewertet wird; dies ist nützlich, wenn zwischen mehreren gleichnamigen Paketen oder Paket-Varianten unterschieden werden muss." #. type: Plain text -#: guix-git/doc/guix.texi:10847 +#: guix-git/doc/guix.texi:11161 msgid "There may be zero or more @var{options}. The available options are described in the subsections below." msgstr "Null oder mehr @var{Optionen} können angegeben werden. Zur Verfügung stehen die in den folgenden Unterabschnitten beschriebenen Befehlszeilenoptionen." #. type: Plain text -#: guix-git/doc/guix.texi:10862 +#: guix-git/doc/guix.texi:11176 msgid "A number of options that control the build process are common to @command{guix build} and other commands that can spawn builds, such as @command{guix package} or @command{guix archive}. These are the following:" msgstr "Einige dieser Befehlszeilenoptionen zur Steuerung des Erstellungsprozess haben @command{guix build} und andere Befehle, mit denen Erstellungen ausgelöst werden können, wie @command{guix package} oder @command{guix archive}, gemeinsam. Das sind folgende:" #. type: table -#: guix-git/doc/guix.texi:10872 guix-git/doc/guix.texi:12769 -#: guix-git/doc/guix.texi:13053 guix-git/doc/guix.texi:13198 -#: guix-git/doc/guix.texi:13466 +#: guix-git/doc/guix.texi:11186 guix-git/doc/guix.texi:13084 +#: guix-git/doc/guix.texi:13410 guix-git/doc/guix.texi:13555 +#: guix-git/doc/guix.texi:13823 msgid "This allows users to define their own packages and make them visible to the command-line tools." msgstr "Damit können Nutzer dafür sorgen, dass ihre eigenen selbstdefinierten Pakete für die Befehlszeilenwerkzeuge sichtbar sind." #. type: item -#: guix-git/doc/guix.texi:10873 +#: guix-git/doc/guix.texi:11187 #, no-wrap msgid "--keep-failed" msgstr "--keep-failed" #. type: itemx -#: guix-git/doc/guix.texi:10874 +#: guix-git/doc/guix.texi:11188 #, no-wrap msgid "-K" msgstr "-K" #. type: table -#: guix-git/doc/guix.texi:10880 +#: guix-git/doc/guix.texi:11194 msgid "Keep the build tree of failed builds. Thus, if a build fails, its build tree is kept under @file{/tmp}, in a directory whose name is shown at the end of the build log. This is useful when debugging build issues. @xref{Debugging Build Failures}, for tips and tricks on how to debug build issues." msgstr "Den Verzeichnisbaum, in dem fehlgeschlagene Erstellungen durchgeführt wurden, behalten. Wenn also eine Erstellung fehlschlägt, bleibt ihr Erstellungsbaum in @file{/tmp} erhalten. Der Name dieses Unterverzeichnisses wird am Ende dem Erstellungsprotokolls ausgegeben. Dies hilft bei der Suche nach Fehlern in Erstellungen. Der Abschnitt @ref{Debugging Build Failures} zeigt Ihnen Hinweise und Tricks, wie Erstellungsfehler untersucht werden können." #. type: table -#: guix-git/doc/guix.texi:10884 +#: guix-git/doc/guix.texi:11198 msgid "This option implies @option{--no-offload}, and it has no effect when connecting to a remote daemon with a @code{guix://} URI (@pxref{The Store, the @env{GUIX_DAEMON_SOCKET} variable})." msgstr "Diese Option impliziert @option{--no-offload} und sie hat keine Auswirkungen, wenn eine Verbindung zu einem entfernten Daemon über eine @code{guix://}-URI verwendet wurde (siehe @ref{The Store, die @env{GUIX_DAEMON_SOCKET}-Variable})." #. type: item -#: guix-git/doc/guix.texi:10885 +#: guix-git/doc/guix.texi:11199 #, no-wrap msgid "--keep-going" msgstr "--keep-going" #. type: itemx -#: guix-git/doc/guix.texi:10886 +#: guix-git/doc/guix.texi:11200 #, no-wrap msgid "-k" msgstr "-k" #. type: table -#: guix-git/doc/guix.texi:10889 +#: guix-git/doc/guix.texi:11203 msgid "Keep going when some of the derivations fail to build; return only once all the builds have either completed or failed." msgstr "Weitermachen, auch wenn ein Teil der Erstellungen fehlschlägt. Das bedeutet, dass der Befehl erst terminiert, wenn alle Erstellungen erfolgreich oder mit Fehler durchgeführt wurden." #. type: table -#: guix-git/doc/guix.texi:10892 +#: guix-git/doc/guix.texi:11206 msgid "The default behavior is to stop as soon as one of the specified derivations has failed." msgstr "Das normale Verhalten ist, abzubrechen, sobald eine der angegebenen Ableitungen fehlschlägt." #. type: table -#: guix-git/doc/guix.texi:10896 +#: guix-git/doc/guix.texi:11210 msgid "Do not build the derivations." msgstr "Die Ableitungen nicht erstellen." #. type: anchor{#1} -#: guix-git/doc/guix.texi:10898 +#: guix-git/doc/guix.texi:11212 msgid "fallback-option" msgstr "fallback-option" #. type: item -#: guix-git/doc/guix.texi:10898 +#: guix-git/doc/guix.texi:11212 #, no-wrap msgid "--fallback" msgstr "--fallback" #. type: table -#: guix-git/doc/guix.texi:10901 +#: guix-git/doc/guix.texi:11215 msgid "When substituting a pre-built binary fails, fall back to building packages locally (@pxref{Substitution Failure})." msgstr "Wenn das Substituieren vorerstellter Binärdateien fehlschlägt, diese ersatzweise lokal selbst erstellen (siehe @ref{Substitution Failure})." #. type: anchor{#1} -#: guix-git/doc/guix.texi:10907 +#: guix-git/doc/guix.texi:11221 msgid "client-substitute-urls" msgstr "client-substitute-urls" #. type: table -#: guix-git/doc/guix.texi:10907 +#: guix-git/doc/guix.texi:11221 msgid "Consider @var{urls} the whitespace-separated list of substitute source URLs, overriding the default list of URLs of @command{guix-daemon} (@pxref{daemon-substitute-urls,, @command{guix-daemon} URLs})." msgstr "Die @var{urls} als durch Leerraumzeichen getrennte Liste von Quell-URLs für Substitute anstelle der vorgegebenen URL-Liste für den @command{guix-daemon} verwenden (siehe @ref{daemon-substitute-urls,, @command{guix-daemon} URLs})." #. type: table -#: guix-git/doc/guix.texi:10911 +#: guix-git/doc/guix.texi:11225 msgid "This means that substitutes may be downloaded from @var{urls}, provided they are signed by a key authorized by the system administrator (@pxref{Substitutes})." msgstr "Das heißt, die Substitute dürfen von den @var{urls} heruntergeladen werden, sofern sie mit einem durch den Systemadministrator autorisierten Schlüssel signiert worden sind (siehe @ref{Substitutes})." #. type: table -#: guix-git/doc/guix.texi:10914 +#: guix-git/doc/guix.texi:11228 msgid "When @var{urls} is the empty string, substitutes are effectively disabled." msgstr "Wenn als @var{urls} eine leere Zeichenkette angegeben wurde, verhält es sich, als wären Substitute abgeschaltet." #. type: item -#: guix-git/doc/guix.texi:10920 +#: guix-git/doc/guix.texi:11234 #, no-wrap msgid "--no-grafts" msgstr "--no-grafts" #. type: table -#: guix-git/doc/guix.texi:10924 +#: guix-git/doc/guix.texi:11238 msgid "Do not ``graft'' packages. In practice, this means that package updates available as grafts are not applied. @xref{Security Updates}, for more information on grafts." msgstr "Pakete nicht „veredeln“ (engl. „graft“). Praktisch heißt das, dass als Veredelungen verfügbare Paketaktualisierungen nicht angewandt werden. Der Abschnitt @ref{Security Updates} hat weitere Informationen zu Veredelungen." #. type: item -#: guix-git/doc/guix.texi:10925 +#: guix-git/doc/guix.texi:11239 #, no-wrap msgid "--rounds=@var{n}" msgstr "--rounds=@var{n}" #. type: table -#: guix-git/doc/guix.texi:10928 +#: guix-git/doc/guix.texi:11242 msgid "Build each derivation @var{n} times in a row, and raise an error if consecutive build results are not bit-for-bit identical." msgstr "Jede Ableitung @var{n}-mal nacheinander erstellen und einen Fehler melden, wenn die aufeinanderfolgenden Erstellungsergebnisse nicht Bit für Bit identisch sind." #. type: table -#: guix-git/doc/guix.texi:10933 +#: guix-git/doc/guix.texi:11247 msgid "This is a useful way to detect non-deterministic builds processes. Non-deterministic build processes are a problem because they make it practically impossible for users to @emph{verify} whether third-party binaries are genuine. @xref{Invoking guix challenge}, for more." msgstr "Das ist eine nützliche Methode, um nicht-deterministische Erstellungsprozesse zu erkennen. Nicht-deterministische Erstellungsprozesse sind ein Problem, weil Nutzer dadurch praktisch nicht @emph{verifizieren} können, ob von Drittanbietern bereitgestellte Binärdateien unverfälscht sind. Der Abschnitt @ref{Invoking guix challenge} erklärt dies genauer." #. type: table -#: guix-git/doc/guix.texi:10949 +#: guix-git/doc/guix.texi:11263 msgid "By default, the daemon's setting is honored (@pxref{Invoking guix-daemon, @option{--max-silent-time}})." msgstr "Standardmäßig wird die Einstellung für den Daemon benutzt (siehe @ref{Invoking guix-daemon, @option{--max-silent-time}})." #. type: table -#: guix-git/doc/guix.texi:10956 +#: guix-git/doc/guix.texi:11270 msgid "By default, the daemon's setting is honored (@pxref{Invoking guix-daemon, @option{--timeout}})." msgstr "Standardmäßig wird die Einstellung für den Daemon benutzt (siehe @ref{Invoking guix-daemon, @option{--timeout}})." #. type: cindex -#: guix-git/doc/guix.texi:10959 +#: guix-git/doc/guix.texi:11273 #, no-wrap msgid "verbosity, of the command-line tools" msgstr "Ausführlichkeit der Befehlszeilenwerkzeuge" #. type: cindex -#: guix-git/doc/guix.texi:10960 +#: guix-git/doc/guix.texi:11274 #, no-wrap msgid "build logs, verbosity" msgstr "Erstellungsprotokolle, Ausführlichkeit" #. type: item -#: guix-git/doc/guix.texi:10961 +#: guix-git/doc/guix.texi:11275 #, no-wrap msgid "-v @var{level}" msgstr "-v @var{Stufe}" #. type: itemx -#: guix-git/doc/guix.texi:10962 +#: guix-git/doc/guix.texi:11276 #, no-wrap msgid "--verbosity=@var{level}" msgstr "--verbosity=@var{Stufe}" #. type: table -#: guix-git/doc/guix.texi:10967 +#: guix-git/doc/guix.texi:11281 msgid "Use the given verbosity @var{level}, an integer. Choosing 0 means that no output is produced, 1 is for quiet output; 2 is similar to 1 but it additionally displays download URLs; 3 shows all the build log output on standard error." msgstr "Die angegebene Ausführlichkeitsstufe verwenden. Als @var{Stufe} muss eine ganze Zahl angegeben werden. Wird 0 gewählt, wird keine Ausgabe zur Fehlersuche angezeigt, 1 bedeutet eine knappe Ausgabe, 2 ist wie 1, aber zeigt zusätzlich an, von welcher URL heruntergeladen wird, und 3 lässt alle Erstellungsprotokollausgaben auf die Standardfehlerausgabe schreiben." #. type: table -#: guix-git/doc/guix.texi:10972 +#: guix-git/doc/guix.texi:11286 msgid "Allow the use of up to @var{n} CPU cores for the build. The special value @code{0} means to use as many CPU cores as available." msgstr "Die Nutzung von bis zu @var{n} Prozessorkernen für die Erstellungen gestatten. Der besondere Wert @code{0} bedeutet, dass so viele wie möglich benutzt werden." #. type: table -#: guix-git/doc/guix.texi:10978 +#: guix-git/doc/guix.texi:11292 msgid "Allow at most @var{n} build jobs in parallel. @xref{Invoking guix-daemon, @option{--max-jobs}}, for details about this option and the equivalent @command{guix-daemon} option." msgstr "Höchstens @var{n} gleichzeitige Erstellungsaufträge erlauben. Im Abschnitt @ref{Invoking guix-daemon, @option{--max-jobs}} finden Sie Details zu dieser Option und der äquivalenten Option des @command{guix-daemon}." #. type: item -#: guix-git/doc/guix.texi:10979 +#: guix-git/doc/guix.texi:11293 #, no-wrap msgid "--debug=@var{level}" msgstr "--debug=@var{Stufe}" #. type: table -#: guix-git/doc/guix.texi:10983 +#: guix-git/doc/guix.texi:11297 msgid "Produce debugging output coming from the build daemon. @var{level} must be an integer between 0 and 5; higher means more verbose output. Setting a level of 4 or more may be helpful when debugging setup issues with the build daemon." msgstr "Ein Protokoll zur Fehlersuche ausgeben, das vom Erstellungsdaemon kommt. Als @var{Stufe} muss eine ganze Zahl zwischen 0 und 5 angegeben werden; höhere Zahlen stehen für ausführlichere Ausgaben. Stufe 4 oder höher zu wählen, kann bei der Suche nach Fehlern, wie der Erstellungs-Daemon eingerichtet ist, helfen." #. type: Plain text -#: guix-git/doc/guix.texi:10990 +#: guix-git/doc/guix.texi:11304 msgid "Behind the scenes, @command{guix build} is essentially an interface to the @code{package-derivation} procedure of the @code{(guix packages)} module, and to the @code{build-derivations} procedure of the @code{(guix derivations)} module." msgstr "Intern ist @command{guix build} im Kern eine Schnittstelle zur Prozedur @code{package-derivation} aus dem Modul @code{(guix packages)} und zu der Prozedur @code{build-derivations} des Moduls @code{(guix derivations)}." #. type: Plain text -#: guix-git/doc/guix.texi:10994 +#: guix-git/doc/guix.texi:11308 msgid "In addition to options explicitly passed on the command line, @command{guix build} and other @command{guix} commands that support building honor the @env{GUIX_BUILD_OPTIONS} environment variable." msgstr "Neben auf der Befehlszeile übergebenen Optionen beachten @command{guix build} und andere @command{guix}-Befehle, die Erstellungen durchführen lassen, die Umgebungsvariable @env{GUIX_BUILD_OPTIONS}." #. type: defvr -#: guix-git/doc/guix.texi:10995 +#: guix-git/doc/guix.texi:11309 #, no-wrap msgid "{Environment Variable} GUIX_BUILD_OPTIONS" msgstr "{Umgebungsvariable} GUIX_BUILD_OPTIONS" #. type: defvr -#: guix-git/doc/guix.texi:11000 +#: guix-git/doc/guix.texi:11314 msgid "Users can define this variable to a list of command line options that will automatically be used by @command{guix build} and other @command{guix} commands that can perform builds, as in the example below:" msgstr "Nutzer können diese Variable auf eine Liste von Befehlszeilenoptionen definieren, die automatisch von @command{guix build} und anderen @command{guix}-Befehlen, die Erstellungen durchführen lassen, benutzt wird, wie in folgendem Beispiel:" #. type: example -#: guix-git/doc/guix.texi:11003 +#: guix-git/doc/guix.texi:11317 #, no-wrap msgid "$ export GUIX_BUILD_OPTIONS=\"--no-substitutes -c 2 -L /foo/bar\"\n" msgstr "$ export GUIX_BUILD_OPTIONS=\"--no-substitutes -c 2 -L /foo/bar\"\n" #. type: defvr -#: guix-git/doc/guix.texi:11007 +#: guix-git/doc/guix.texi:11321 msgid "These options are parsed independently, and the result is appended to the parsed command-line options." msgstr "Diese Befehlszeilenoptionen werden unabhängig von den auf der Befehlszeile übergebenen Befehlszeilenoptionen grammatikalisch analysiert und das Ergebnis an die bereits analysierten auf der Befehlszeile übergebenen Befehlszeilenoptionen angehängt." #. type: cindex -#: guix-git/doc/guix.texi:11013 +#: guix-git/doc/guix.texi:11327 #, no-wrap msgid "package variants" msgstr "Paketvarianten" #. type: Plain text -#: guix-git/doc/guix.texi:11021 +#: guix-git/doc/guix.texi:11335 msgid "Another set of command-line options supported by @command{guix build} and also @command{guix package} are @dfn{package transformation options}. These are options that make it possible to define @dfn{package variants}---for instance, packages built from different source code. This is a convenient way to create customized packages on the fly without having to type in the definitions of package variants (@pxref{Defining Packages})." msgstr "Eine weitere Gruppe von Befehlszeilenoptionen, die @command{guix build} und auch @command{guix package} unterstützen, sind @dfn{Paketumwandlungsoptionen}. Diese Optionen ermöglichen es, @dfn{Paketvarianten} zu definieren@tie{}— zum Beispiel können Pakete aus einem anderen Quellcode als normalerweise erstellt werden. Damit ist es leicht, angepasste Pakete schnell zu erstellen, ohne die vollständigen Definitionen von Paketvarianten einzutippen (siehe @ref{Defining Packages})." #. type: Plain text -#: guix-git/doc/guix.texi:11025 +#: guix-git/doc/guix.texi:11339 msgid "Package transformation options are preserved across upgrades: @command{guix upgrade} attempts to apply transformation options initially used when creating the profile to the upgraded packages." msgstr "Paketumwandlungsoptionen bleiben über Aktualisierungen hinweg erhalten: @command{guix upgrade} versucht, Umwandlungsoptionen, die vorher zur Erstellung des Profils benutzt wurden, auf die aktualisierten Pakete anzuwenden." #. type: Plain text -#: guix-git/doc/guix.texi:11030 +#: guix-git/doc/guix.texi:11344 msgid "The available options are listed below. Most commands support them and also support a @option{--help-transform} option that lists all the available options and a synopsis (these options are not shown in the @option{--help} output for brevity)." msgstr "Im Folgenden finden Sie die verfügbaren Befehlszeilenoptionen. Die meisten Befehle unterstützen sie ebenso wie eine Option @option{--help-transform}, mit der all die verfügbaren Optionen und je eine Kurzbeschreibung dazu angezeigt werden. (Diese Optionen werden der Kürze wegen nicht in der Ausgabe von @option{--help} aufgeführt.)" #. type: cindex -#: guix-git/doc/guix.texi:11033 +#: guix-git/doc/guix.texi:11347 #, no-wrap msgid "performance, tuning code" msgstr "Rechenleistung, Codeoptimierung" #. type: cindex -#: guix-git/doc/guix.texi:11034 +#: guix-git/doc/guix.texi:11348 #, no-wrap msgid "optimization, of package code" msgstr "Optimierung, von Paketcode" #. type: cindex -#: guix-git/doc/guix.texi:11035 +#: guix-git/doc/guix.texi:11349 #, no-wrap msgid "tuning, of package code" msgstr "Tuning, von Paketcode" #. type: cindex -#: guix-git/doc/guix.texi:11036 +#: guix-git/doc/guix.texi:11350 #, no-wrap msgid "SIMD support" msgstr "SIMD-Unterstützung" #. type: cindex -#: guix-git/doc/guix.texi:11037 +#: guix-git/doc/guix.texi:11351 #, no-wrap msgid "tunable packages" msgstr "tunebare Pakete" #. type: cindex -#: guix-git/doc/guix.texi:11038 +#: guix-git/doc/guix.texi:11352 #, no-wrap msgid "package multi-versioning" msgstr "Paket-Multiversionierung" #. type: item -#: guix-git/doc/guix.texi:11039 +#: guix-git/doc/guix.texi:11353 #, no-wrap msgid "--tune[=@var{cpu}]" msgstr "--tune[=@var{CPU}]" #. type: table -#: guix-git/doc/guix.texi:11043 +#: guix-git/doc/guix.texi:11357 msgid "Use versions of the packages marked as ``tunable'' optimized for @var{cpu}. When @var{cpu} is @code{native}, or when it is omitted, tune for the CPU on which the @command{guix} command is running." msgstr "Die optimierte Version als „tunebar“ markierter Pakete benutzen. @var{CPU} gibt die Prozessorarchitektur an, für die optimiert werden soll. Wenn als @var{CPU} die Bezeichnung @code{native} angegeben wird oder nichts angegeben wird, wird für den Prozessor optimiert, auf dem der Befehl @command{guix} läuft." #. type: table -#: guix-git/doc/guix.texi:11049 +#: guix-git/doc/guix.texi:11363 msgid "Valid @var{cpu} names are those recognized by the underlying compiler, by default the GNU Compiler Collection. On x86_64 processors, this includes CPU names such as @code{nehalem}, @code{haswell}, and @code{skylake} (@pxref{x86 Options, @code{-march},, gcc, Using the GNU Compiler Collection (GCC)})." msgstr "Gültige Namen für @var{CPU} sind genau die, die vom zugrunde liegenden Compiler erkannt werden. Vorgegeben ist, dass als Compiler die GNU Compiler Collection benutzt wird. Auf x86_64-Prozessoren gehören @code{nehalem}, @code{haswell}, und @code{skylake} zu den CPU-Namen (siehe @ref{x86 Options, @code{-march},, gcc, Using the GNU Compiler Collection (GCC)})." #. type: table -#: guix-git/doc/guix.texi:11056 +#: guix-git/doc/guix.texi:11370 msgid "As new generations of CPUs come out, they augment the standard instruction set architecture (ISA) with additional instructions, in particular instructions for single-instruction/multiple-data (SIMD) parallel processing. For example, while Core2 and Skylake CPUs both implement the x86_64 ISA, only the latter supports AVX2 SIMD instructions." msgstr "Mit dem Erscheinen neuer Generationen von Prozessoren wächst der Standardbefehlssatz (die „Instruction Set Architecture“, ISA) um neue Befehle an, insbesondere wenn es um Befehle zur Parallelverarbeitung geht („Single-Instruction/Multiple-Data“, SIMD). Zum Beispiel implementieren sowohl die Core2- als auch die Skylake-Prozessoren den x86_64-Befehlssatz, jedoch können nur letztere AVX2-SIMD-Befehle ausführen." #. type: table -#: guix-git/doc/guix.texi:11063 +#: guix-git/doc/guix.texi:11377 msgid "The primary gain one can expect from @option{--tune} is for programs that can make use of those SIMD capabilities @emph{and} that do not already have a mechanism to select the right optimized code at run time. Packages that have the @code{tunable?} property set are considered @dfn{tunable packages} by the @option{--tune} option; a package definition with the property set looks like this:" msgstr "Der Mehrwert, den @option{--tune} bringt, besteht in erster Linie bei Programmen, für die SIMD-Fähigkeiten geeignet wären @emph{und} die über keinen Mechanismus verfügen, zur Laufzeit die geeigneten Codeoptimierungen zuzuschalten. Pakete, bei denen die Eigenschaft @code{tunable?} angegeben wurde, werden bei der Befehlszeilenoption @option{--tune} als @dfn{tunebare Pakete} optimiert. Eine Paketdefinition, bei der diese Eigenschaft hinterlegt wurde, sieht so aus:" #. type: lisp -#: guix-git/doc/guix.texi:11068 +#: guix-git/doc/guix.texi:11382 #, no-wrap msgid "" "(package\n" @@ -21062,7 +21639,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:11072 +#: guix-git/doc/guix.texi:11386 #, no-wrap msgid "" " ;; This package may benefit from SIMD extensions so\n" @@ -21074,87 +21651,87 @@ msgstr "" " (properties '((tunable? . #t))))\n" #. type: table -#: guix-git/doc/guix.texi:11077 +#: guix-git/doc/guix.texi:11391 msgid "Other packages are not considered tunable. This allows Guix to use generic binaries in the cases where tuning for a specific CPU is unlikely to provide any gain." msgstr "Andere Pakete werden als @emph{nicht} tunebar aufgefasst. Dadurch kann Guix allgemeine Binärdateien verwenden, wenn sich die Optimierung für einen bestimmten Prozessor wahrscheinlich @emph{nicht} lohnt." #. type: table -#: guix-git/doc/guix.texi:11083 +#: guix-git/doc/guix.texi:11397 msgid "Tuned packages are built with @code{-march=@var{CPU}}; under the hood, the @option{-march} option is passed to the actual wrapper by a compiler wrapper. Since the build machine may not be able to run code for the target CPU micro-architecture, the test suite is not run when building a tuned package." msgstr "Bei der Erstellung tunebarer Pakete wird @code{-march=@var{CPU}} übergeben. Intern wird die Befehlszeilenoption @option{-march} durch einen Compiler-Wrapper an den eigentlichen Wrapper übergeben. Weil die Erstellungsmaschine den Code für die Mikroarchitektur vielleicht gar nicht ausführen kann, wird der Testkatalog bei der Erstellung tunebarer Pakete übersprungen." #. type: table -#: guix-git/doc/guix.texi:11087 +#: guix-git/doc/guix.texi:11401 msgid "To reduce rebuilds to the minimum, tuned packages are @emph{grafted} onto packages that depend on them (@pxref{Security Updates, grafts}). Thus, using @option{--no-grafts} cancels the effect of @option{--tune}." msgstr "Damit weniger Neuerstellungen erforderlich sind, werden die von tunebaren Paketen abhängigen Pakete mit den optimierten Paketen @emph{veredelt} (siehe @ref{Security Updates, Veredelungen}). Wenn Sie @option{--no-grafts} übergeben, wirkt @option{--tune} deshalb @emph{nicht} mehr." #. type: table -#: guix-git/doc/guix.texi:11093 +#: guix-git/doc/guix.texi:11407 msgid "We call this technique @dfn{package multi-versioning}: several variants of tunable packages may be built, one for each CPU variant. It is the coarse-grain counterpart of @dfn{function multi-versioning} as implemented by the GNU tool chain (@pxref{Function Multiversioning,,, gcc, Using the GNU Compiler Collection (GCC)})." msgstr "Wir geben dieser Technik den Namen @dfn{Paket-Multiversionierung}: Mehrere Varianten des tunebaren Pakets können erstellt werden; eine für jede Prozessorvariante. Das ist die grobkörnige Entsprechung der @dfn{Funktions-Multiversionierung}, die in der GNU-Toolchain zu finden ist (siehe @ref{Function Multiversioning,,, gcc, Using the GNU Compiler Collection (GCC)})." #. type: item -#: guix-git/doc/guix.texi:11094 +#: guix-git/doc/guix.texi:11408 #, no-wrap msgid "--with-source=@var{source}" msgstr "--with-source=@var{Quelle}" #. type: itemx -#: guix-git/doc/guix.texi:11095 +#: guix-git/doc/guix.texi:11409 #, no-wrap msgid "--with-source=@var{package}=@var{source}" msgstr "--with-source=@var{Paket}=@var{Quelle}" #. type: itemx -#: guix-git/doc/guix.texi:11096 +#: guix-git/doc/guix.texi:11410 #, no-wrap msgid "--with-source=@var{package}@@@var{version}=@var{source}" msgstr "--with-source=@var{Paket}@@@var{Version}=@var{Quelle}" #. type: table -#: guix-git/doc/guix.texi:11101 +#: guix-git/doc/guix.texi:11415 msgid "Use @var{source} as the source of @var{package}, and @var{version} as its version number. @var{source} must be a file name or a URL, as for @command{guix download} (@pxref{Invoking guix download})." msgstr "Den Paketquellcode für das @var{Paket} von der angegebenen @var{Quelle} holen und die @var{Version} als seine Versionsnummer verwenden. Die @var{Quelle} muss ein Dateiname oder eine URL sein wie bei @command{guix download} (siehe @ref{Invoking guix download})." #. type: table -#: guix-git/doc/guix.texi:11107 +#: guix-git/doc/guix.texi:11421 msgid "When @var{package} is omitted, it is taken to be the package name specified on the command line that matches the base of @var{source}---e.g., if @var{source} is @code{/src/guile-2.0.10.tar.gz}, the corresponding package is @code{guile}." msgstr "Wird kein @var{Paket} angegeben, wird als Paketname derjenige auf der Befehlszeile angegebene Paketname angenommen, der zur Basis am Ende der @var{Quelle} passt@tie{}— wenn z.B.@: als @var{Quelle} die Datei @code{/src/guile-2.0.10.tar.gz} angegeben wurde, entspricht das dem @code{guile}-Paket." #. type: table -#: guix-git/doc/guix.texi:11110 +#: guix-git/doc/guix.texi:11424 msgid "Likewise, when @var{version} is omitted, the version string is inferred from @var{source}; in the previous example, it is @code{2.0.10}." msgstr "Ebenso wird, wenn keine @var{Version} angegeben wurde, die Version als Zeichenkette aus der @var{Quelle} abgeleitet; im vorherigen Beispiel wäre sie @code{2.0.10}." #. type: table -#: guix-git/doc/guix.texi:11115 +#: guix-git/doc/guix.texi:11429 msgid "This option allows users to try out versions of packages other than the one provided by the distribution. The example below downloads @file{ed-1.7.tar.gz} from a GNU mirror and uses that as the source for the @code{ed} package:" msgstr "Mit dieser Option können Nutzer versuchen, eine andere Version ihres Pakets auszuprobieren, als die in der Distribution enthaltene Version. Folgendes Beispiel lädt @file{ed-1.7.tar.gz} von einem GNU-Spiegelserver herunter und benutzt es als Quelle für das @code{ed}-Paket:" #. type: example -#: guix-git/doc/guix.texi:11118 +#: guix-git/doc/guix.texi:11432 #, no-wrap msgid "guix build ed --with-source=mirror://gnu/ed/ed-1.7.tar.gz\n" msgstr "guix build ed --with-source=mirror://gnu/ed/ed-1.7.tar.gz\n" #. type: table -#: guix-git/doc/guix.texi:11122 +#: guix-git/doc/guix.texi:11436 msgid "As a developer, @option{--with-source} makes it easy to test release candidates:" msgstr "Für Entwickler wird es einem durch @option{--with-source} leicht gemacht, „Release Candidates“, also Vorabversionen, zu testen:" #. type: example -#: guix-git/doc/guix.texi:11125 +#: guix-git/doc/guix.texi:11439 #, no-wrap msgid "guix build guile --with-source=../guile-2.0.9.219-e1bb7.tar.xz\n" msgstr "guix build guile --with-source=../guile-2.0.9.219-e1bb7.tar.xz\n" #. type: table -#: guix-git/doc/guix.texi:11128 +#: guix-git/doc/guix.texi:11442 msgid "@dots{} or to build from a checkout in a pristine environment:" msgstr "…@: oder ein Checkout eines versionskontrollierten Repositorys in einer isolierten Umgebung zu erstellen:" #. type: example -#: guix-git/doc/guix.texi:11132 +#: guix-git/doc/guix.texi:11446 #, no-wrap msgid "" "$ git clone git://git.sv.gnu.org/guix.git\n" @@ -21164,126 +21741,126 @@ msgstr "" "$ guix build guix --with-source=guix@@1.0=./guix\n" #. type: item -#: guix-git/doc/guix.texi:11134 +#: guix-git/doc/guix.texi:11448 #, no-wrap msgid "--with-input=@var{package}=@var{replacement}" msgstr "--with-input=@var{Paket}=@var{Ersatz}" #. type: table -#: guix-git/doc/guix.texi:11139 +#: guix-git/doc/guix.texi:11453 msgid "Replace dependency on @var{package} by a dependency on @var{replacement}. @var{package} must be a package name, and @var{replacement} must be a package specification such as @code{guile} or @code{guile@@1.8}." msgstr "Abhängigkeiten vom @var{Paket} durch eine Abhängigkeit vom @var{Ersatz}-Paket ersetzen. Als @var{Paket} muss ein Paketname angegeben werden und als @var{Ersatz} eine Paketspezifikation wie @code{guile} oder @code{guile@@1.8}." #. type: table -#: guix-git/doc/guix.texi:11143 +#: guix-git/doc/guix.texi:11457 msgid "For instance, the following command builds Guix, but replaces its dependency on the current stable version of Guile with a dependency on the legacy version of Guile, @code{guile@@2.0}:" msgstr "Mit folgendem Befehl wird zum Beispiel Guix erstellt, aber statt der aktuellen stabilen Guile-Version hängt es von der alten Guile-Version @code{guile@@2.0} ab:" #. type: example -#: guix-git/doc/guix.texi:11146 +#: guix-git/doc/guix.texi:11460 #, no-wrap msgid "guix build --with-input=guile=guile@@2.0 guix\n" msgstr "guix build --with-input=guile=guile@@2.0 guix\n" #. type: table -#: guix-git/doc/guix.texi:11151 +#: guix-git/doc/guix.texi:11465 msgid "This is a recursive, deep replacement. So in this example, both @code{guix} and its dependency @code{guile-json} (which also depends on @code{guile}) get rebuilt against @code{guile@@2.0}." msgstr "Die Ersetzung ist rekursiv und umfassend. In diesem Beispiel würde nicht nur @code{guix}, sondern auch seine Abhängigkeit @code{guile-json} (was auch von @code{guile} abhängt) für @code{guile@@2.0} neu erstellt." #. type: table -#: guix-git/doc/guix.texi:11154 +#: guix-git/doc/guix.texi:11468 msgid "This is implemented using the @code{package-input-rewriting} Scheme procedure (@pxref{Defining Packages, @code{package-input-rewriting}})." msgstr "Implementiert wird das alles mit der Scheme-Prozedur @code{package-input-rewriting} (siehe @ref{Defining Packages, @code{package-input-rewriting}})." #. type: item -#: guix-git/doc/guix.texi:11155 +#: guix-git/doc/guix.texi:11469 #, no-wrap msgid "--with-graft=@var{package}=@var{replacement}" msgstr "--with-graft=@var{Paket}=@var{Ersatz}" #. type: table -#: guix-git/doc/guix.texi:11161 +#: guix-git/doc/guix.texi:11475 msgid "This is similar to @option{--with-input} but with an important difference: instead of rebuilding the whole dependency chain, @var{replacement} is built and then @dfn{grafted} onto the binaries that were initially referring to @var{package}. @xref{Security Updates}, for more information on grafts." msgstr "Dies verhält sich ähnlich wie mit @option{--with-input}, aber mit dem wichtigen Unterschied, dass nicht die gesamte Abhängigkeitskette neu erstellt wird, sondern das @var{Ersatz}-Paket erstellt und die ursprünglichen Binärdateien, die auf das @var{Paket} verwiesen haben, damit @dfn{veredelt} werden. Im Abschnitt @ref{Security Updates} finden Sie weitere Informationen über Veredelungen." #. type: table -#: guix-git/doc/guix.texi:11165 +#: guix-git/doc/guix.texi:11479 msgid "For example, the command below grafts version 3.5.4 of GnuTLS onto Wget and all its dependencies, replacing references to the version of GnuTLS they currently refer to:" msgstr "Zum Beispiel veredelt folgender Befehl Wget und alle Abhängigkeiten davon mit der Version 3.5.4 von GnuTLS, indem Verweise auf die ursprünglich verwendete GnuTLS-Version ersetzt werden:" #. type: example -#: guix-git/doc/guix.texi:11168 +#: guix-git/doc/guix.texi:11482 #, no-wrap msgid "guix build --with-graft=gnutls=gnutls@@3.5.4 wget\n" msgstr "guix build --with-graft=gnutls=gnutls@@3.5.4 wget\n" #. type: table -#: guix-git/doc/guix.texi:11177 +#: guix-git/doc/guix.texi:11491 msgid "This has the advantage of being much faster than rebuilding everything. But there is a caveat: it works if and only if @var{package} and @var{replacement} are strictly compatible---for example, if they provide a library, the application binary interface (ABI) of those libraries must be compatible. If @var{replacement} is somehow incompatible with @var{package}, then the resulting package may be unusable. Use with care!" msgstr "Das hat den Vorteil, dass es viel schneller geht, als alles neu zu erstellen. Die Sache hat aber einen Haken: Veredelung funktioniert nur, wenn das @var{Paket} und sein @var{Ersatz} miteinander streng kompatibel sind@tie{}— zum Beispiel muss, wenn diese eine Programmbibliothek zur Verfügung stellen, deren Binärschnittstelle („Application Binary Interface“, kurz ABI) kompatibel sein. Wenn das @var{Ersatz}-Paket auf irgendeine Art inkompatibel mit dem @var{Paket} ist, könnte das Ergebnispaket unbrauchbar sein. Vorsicht ist also geboten!" #. type: cindex -#: guix-git/doc/guix.texi:11178 guix-git/doc/guix.texi:37882 +#: guix-git/doc/guix.texi:11492 guix-git/doc/guix.texi:38371 #, no-wrap msgid "debugging info, rebuilding" msgstr "Dateien zur Fehlersuche, neu erstellen" #. type: item -#: guix-git/doc/guix.texi:11179 +#: guix-git/doc/guix.texi:11493 #, no-wrap msgid "--with-debug-info=@var{package}" msgstr "--with-debug-info=@var{Paket}" #. type: table -#: guix-git/doc/guix.texi:11184 +#: guix-git/doc/guix.texi:11498 msgid "Build @var{package} in a way that preserves its debugging info and graft it onto packages that depend on it. This is useful if @var{package} does not already provide debugging info as a @code{debug} output (@pxref{Installing Debugging Files})." msgstr "Das @var{Paket} auf eine Weise erstellen, die Informationen zur Fehlersuche enthält, und von ihm abhängige Pakete damit veredeln. Das ist nützlich, wenn das @var{Paket} noch keine Fehlersuchinformationen als installierbare @code{debug}-Ausgabe enthält (siehe @ref{Installing Debugging Files})." #. type: table -#: guix-git/doc/guix.texi:11190 +#: guix-git/doc/guix.texi:11504 msgid "For example, suppose you're experiencing a crash in Inkscape and would like to see what's up in GLib, a library deep down in Inkscape's dependency graph. GLib lacks a @code{debug} output, so debugging is tough. Fortunately, you rebuild GLib with debugging info and tack it on Inkscape:" msgstr "Als Beispiel nehmen wir an, Inkscape stürzt bei Ihnen ab und Sie möchten wissen, was dabei in GLib passiert. Die GLib-Bibliothek liegt tief im Abhängigkeitsgraphen von Inkscape und verfügt nicht über eine @code{debug}-Ausgabe; das erschwert die Fehlersuche. Glücklicherweise können Sie GLib mit Informationen zur Fehlersuche neu erstellen und an Inkscape anheften:" #. type: example -#: guix-git/doc/guix.texi:11193 guix-git/doc/guix.texi:37913 +#: guix-git/doc/guix.texi:11507 guix-git/doc/guix.texi:38402 #, no-wrap msgid "guix install inkscape --with-debug-info=glib\n" msgstr "guix install inkscape --with-debug-info=glib\n" #. type: table -#: guix-git/doc/guix.texi:11197 +#: guix-git/doc/guix.texi:11511 msgid "Only GLib needs to be recompiled so this takes a reasonable amount of time. @xref{Installing Debugging Files}, for more info." msgstr "Nur GLib muss neu kompiliert werden, was in vernünftiger Zeit möglich ist. Siehe @ref{Installing Debugging Files} für mehr Informationen." #. type: quotation -#: guix-git/doc/guix.texi:11203 +#: guix-git/doc/guix.texi:11517 msgid "Under the hood, this option works by passing the @samp{#:strip-binaries? #f} to the build system of the package of interest (@pxref{Build Systems}). Most build systems support that option but some do not. In that case, an error is raised." msgstr "Intern funktioniert diese Option, indem @samp{#:strip-binaries? #f} an das Erstellungssystem des betreffenden Pakets übergeben wird (siehe @ref{Build Systems}). Die meisten Erstellungssysteme unterstützen diese Option, manche aber nicht. In diesem Fall wird ein Fehler gemeldet." #. type: quotation -#: guix-git/doc/guix.texi:11207 +#: guix-git/doc/guix.texi:11521 msgid "Likewise, if a C/C++ package is built without @code{-g} (which is rarely the case), debugging info will remain unavailable even when @code{#:strip-binaries?} is false." msgstr "Auch wenn ein in C/C++ geschriebenes Paket ohne @code{-g} erstellt wird (was selten der Fall ist), werden Informationen zur Fehlersuche weiterhin fehlen, obwohl @code{#:strip-binaries?} auf falsch steht." #. type: cindex -#: guix-git/doc/guix.texi:11209 +#: guix-git/doc/guix.texi:11523 #, no-wrap msgid "tool chain, changing the build tool chain of a package" msgstr "Toolchain, die Erstellungs-Toolchain eines Pakets ändern" #. type: item -#: guix-git/doc/guix.texi:11210 +#: guix-git/doc/guix.texi:11524 #, no-wrap msgid "--with-c-toolchain=@var{package}=@var{toolchain}" msgstr "--with-c-toolchain=@var{Paket}=@var{Toolchain}" #. type: table -#: guix-git/doc/guix.texi:11214 +#: guix-git/doc/guix.texi:11528 msgid "This option changes the compilation of @var{package} and everything that depends on it so that they get built with @var{toolchain} instead of the default GNU tool chain for C/C++." msgstr "Mit dieser Befehlszeilenoption wird die Kompilierung des @var{Paket}s und aller davon abhängigen Objekte angepasst, so dass mit der @var{Toolchain} statt der vorgegebenen GNU-Toolchain für C/C++ erstellt wird." #. type: example -#: guix-git/doc/guix.texi:11221 +#: guix-git/doc/guix.texi:11535 #, no-wrap msgid "" "guix build octave-cli \\\n" @@ -21295,17 +21872,17 @@ msgstr "" " --with-c-toolchain=fftwf=gcc-toolchain@@10\n" #. type: table -#: guix-git/doc/guix.texi:11228 +#: guix-git/doc/guix.texi:11542 msgid "The command above builds a variant of the @code{fftw} and @code{fftwf} packages using version 10 of @code{gcc-toolchain} instead of the default tool chain, and then builds a variant of the GNU@tie{}Octave command-line interface using them. GNU@tie{}Octave itself is also built with @code{gcc-toolchain@@10}." msgstr "Mit dem obigen Befehl wird eine Variante der Pakete @code{fftw} und @code{fftwf} mit Version@tie{}10 der @code{gcc-toolchain} anstelle der vorgegebenen Toolchain erstellt, um damit anschließend eine diese benutzende Variante des GNU-Octave-Befehlszeilenprogramms zu erstellen. Auch GNU@tie{}Octave selbst wird mit @code{gcc-toolchain@@10} erstellt." #. type: table -#: guix-git/doc/guix.texi:11232 +#: guix-git/doc/guix.texi:11546 msgid "This other example builds the Hardware Locality (@code{hwloc}) library and its dependents up to @code{intel-mpi-benchmarks} with the Clang C compiler:" msgstr "Das zweite Beispiel bewirkt eine Erstellung der „Hardware Locality“-Bibliothek (@code{hwloc}) sowie ihrer abhängigen Objekte bis einschließlich @code{intel-mpi-benchmarks} mit dem Clang-C-Compiler:" #. type: example -#: guix-git/doc/guix.texi:11236 +#: guix-git/doc/guix.texi:11550 #, no-wrap msgid "" "guix build --with-c-toolchain=hwloc=clang-toolchain \\\n" @@ -21315,40 +21892,40 @@ msgstr "" " intel-mpi-benchmarks\n" #. type: quotation -#: guix-git/doc/guix.texi:11245 +#: guix-git/doc/guix.texi:11559 msgid "There can be application binary interface (ABI) incompatibilities among tool chains. This is particularly true of the C++ standard library and run-time support libraries such as that of OpenMP@. By rebuilding all dependents with the same tool chain, @option{--with-c-toolchain} minimizes the risks of incompatibility but cannot entirely eliminate them. Choose @var{package} wisely." msgstr "Es kann vorkommen, dass die Anwendungsbinärschnittstellen („Application Binary Interfaces“, kurz ABIs) der Toolchains inkompatibel sind. Das tritt vor allem bei der C++-Standardbibliothek und Bibliotheken zur Laufzeitunterstützung wie denen von OpenMP auf. Indem alle abhängigen Objekte mit derselben Toolchain erstellt werden, minimiert @option{--with-c-toolchain} das Risiko, dass es zu Inkompatibilitäten kommt, aber es kann nicht ganz ausgeschlossen werden. Bedenken Sie, für welches @var{Paket} Sie dies benutzen." #. type: item -#: guix-git/doc/guix.texi:11247 +#: guix-git/doc/guix.texi:11561 #, no-wrap msgid "--with-git-url=@var{package}=@var{url}" msgstr "--with-git-url=@var{Paket}=@var{URL}" #. type: cindex -#: guix-git/doc/guix.texi:11248 +#: guix-git/doc/guix.texi:11562 #, no-wrap msgid "Git, using the latest commit" msgstr "Git, den neuesten Commit benutzen" #. type: cindex -#: guix-git/doc/guix.texi:11249 +#: guix-git/doc/guix.texi:11563 #, no-wrap msgid "latest commit, building" msgstr "neuester Commit, davon erstellen" #. type: table -#: guix-git/doc/guix.texi:11253 +#: guix-git/doc/guix.texi:11567 msgid "Build @var{package} from the latest commit of the @code{master} branch of the Git repository at @var{url}. Git sub-modules of the repository are fetched, recursively." msgstr "Das @var{Paket} aus dem neuesten Commit im @code{master}-Branch des unter der @var{URL} befindlichen Git-Repositorys erstellen. Git-Submodule des Repositorys werden dabei rekursiv geladen." #. type: table -#: guix-git/doc/guix.texi:11256 +#: guix-git/doc/guix.texi:11570 msgid "For example, the following command builds the NumPy Python library against the latest commit of the master branch of Python itself:" msgstr "Zum Beispiel erstellt der folgende Befehl die NumPy-Python-Bibliothek unter Verwendung des neuesten Commits von Python auf dessen „master“-Branch." #. type: example -#: guix-git/doc/guix.texi:11260 +#: guix-git/doc/guix.texi:11574 #, no-wrap msgid "" "guix build python-numpy \\\n" @@ -21358,318 +21935,318 @@ msgstr "" " --with-git-url=python=https://github.com/python/cpython\n" #. type: table -#: guix-git/doc/guix.texi:11264 +#: guix-git/doc/guix.texi:11578 msgid "This option can also be combined with @option{--with-branch} or @option{--with-commit} (see below)." msgstr "Diese Befehlszeilenoption kann auch mit @option{--with-branch} oder @option{--with-commit} kombiniert werden (siehe unten)." #. type: cindex -#: guix-git/doc/guix.texi:11265 guix-git/doc/guix.texi:28957 +#: guix-git/doc/guix.texi:11579 guix-git/doc/guix.texi:29294 #, no-wrap msgid "continuous integration" msgstr "Kontinuierliche Integration" #. type: table -#: guix-git/doc/guix.texi:11271 +#: guix-git/doc/guix.texi:11585 msgid "Obviously, since it uses the latest commit of the given branch, the result of such a command varies over time. Nevertheless it is a convenient way to rebuild entire software stacks against the latest commit of one or more packages. This is particularly useful in the context of continuous integration (CI)." msgstr "Da es den neuesten Commit auf dem verwendeten Branch benutzt, ändert sich das Ergebnis natürlich mit der Zeit. Nichtsdestoweniger ist es eine bequeme Möglichkeit, ganze Softwarestapel auf dem neuesten Commit von einem oder mehr Paketen aufbauen zu lassen. Es ist besonders nützlich im Kontext Kontinuierlicher Integration (englisch „Continuous Integration“, kurz CI)." #. type: table -#: guix-git/doc/guix.texi:11275 +#: guix-git/doc/guix.texi:11589 msgid "Checkouts are kept in a cache under @file{~/.cache/guix/checkouts} to speed up consecutive accesses to the same repository. You may want to clean it up once in a while to save disk space." msgstr "Checkouts bleiben zwischengespeichert als @file{~/.cache/guix/checkouts}, damit danach schneller auf dasselbe Repository zugegriffen werden kann. Eventuell möchten Sie das Verzeichnis ab und zu bereinigen, um Plattenplatz zu sparen." #. type: item -#: guix-git/doc/guix.texi:11276 +#: guix-git/doc/guix.texi:11590 #, no-wrap msgid "--with-branch=@var{package}=@var{branch}" msgstr "--with-branch=@var{Paket}=@var{Branch}" #. type: table -#: guix-git/doc/guix.texi:11282 +#: guix-git/doc/guix.texi:11596 msgid "Build @var{package} from the latest commit of @var{branch}. If the @code{source} field of @var{package} is an origin with the @code{git-fetch} method (@pxref{origin Reference}) or a @code{git-checkout} object, the repository URL is taken from that @code{source}. Otherwise you have to use @option{--with-git-url} to specify the URL of the Git repository." msgstr "Das @var{Paket} aus dem neuesten Commit auf dem @var{Branch} erstellen. Wenn das @code{source}-Feld des @var{Paket}s ein origin-Objekt mit der Methode @code{git-fetch} (siehe @ref{origin Reference}) oder ein @code{git-checkout}-Objekt ist, wird die URL des Repositorys vom @code{source}-Feld genommen. Andernfalls müssen Sie die Befehlszeilenoption @option{--with-git-url} benutzen, um die URL des Git-Repositorys anzugeben." #. type: table -#: guix-git/doc/guix.texi:11287 +#: guix-git/doc/guix.texi:11601 msgid "For instance, the following command builds @code{guile-sqlite3} from the latest commit of its @code{master} branch, and then builds @code{guix} (which depends on it) and @code{cuirass} (which depends on @code{guix}) against this specific @code{guile-sqlite3} build:" msgstr "Zum Beispiel wird mit dem folgenden Befehl @code{guile-sqlite3} aus dem neuesten Commit seines @code{master}-Branches erstellt und anschließend @code{guix} (was von @code{guile-sqlite3} abhängt) und @code{cuirass} (was von @code{guix} abhängt) unter Nutzung genau dieser @code{guile-sqlite3}-Erstellung erstellt:" #. type: example -#: guix-git/doc/guix.texi:11290 +#: guix-git/doc/guix.texi:11604 #, no-wrap msgid "guix build --with-branch=guile-sqlite3=master cuirass\n" msgstr "guix build --with-branch=guile-sqlite3=master cuirass\n" #. type: item -#: guix-git/doc/guix.texi:11292 +#: guix-git/doc/guix.texi:11606 #, no-wrap msgid "--with-commit=@var{package}=@var{commit}" msgstr "--with-commit=@var{Paket}=@var{Commit}" #. type: table -#: guix-git/doc/guix.texi:11297 +#: guix-git/doc/guix.texi:11611 msgid "This is similar to @option{--with-branch}, except that it builds from @var{commit} rather than the tip of a branch. @var{commit} must be a valid Git commit SHA1 identifier, a tag, or a @command{git describe} style identifier such as @code{1.0-3-gabc123}." msgstr "Dies verhält sich ähnlich wie @option{--with-branch}, außer dass es den angegebenen @var{Commit} benutzt statt die Spitze eines angegebenen Branches. Als @var{Commit} muss ein gültiger SHA1-Bezeichner, ein Tag oder ein Bezeichner wie von @command{git describe} (wie @code{1.0-3-gabc123}) für einen Git-Commit angegeben werden." #. type: item -#: guix-git/doc/guix.texi:11298 +#: guix-git/doc/guix.texi:11612 #, no-wrap msgid "--with-patch=@var{package}=@var{file}" msgstr "--with-patch=@var{Paket}=@var{Datei}" #. type: table -#: guix-git/doc/guix.texi:11305 +#: guix-git/doc/guix.texi:11619 msgid "Add @var{file} to the list of patches applied to @var{package}, where @var{package} is a spec such as @code{python@@3.8} or @code{glibc}. @var{file} must contain a patch; it is applied with the flags specified in the @code{origin} of @var{package} (@pxref{origin Reference}), which by default includes @code{-p1} (@pxref{patch Directories,,, diffutils, Comparing and Merging Files})." msgstr "Die @var{Datei} zur Liste der auf das @var{Paket} anzuwendenden Patches hinzufügen. Als @var{Paket} muss eine Spezifikation wie @code{python@@3.8} oder @code{glibc} benutzt werden. In der @var{Datei} muss ein Patch enthalten sein; er wird mit den im Ursprung (@code{origin}) des @var{Paket}s angegebenen Befehlszeilenoptionen angewandt (siehe @ref{origin Reference}). Die vorgegebenen Optionen enthalten @code{-p1} (siehe @ref{patch Directories,,, diffutils, Comparing and Merging Files})." #. type: table -#: guix-git/doc/guix.texi:11308 +#: guix-git/doc/guix.texi:11622 msgid "As an example, the command below rebuilds Coreutils with the GNU C Library (glibc) patched with the given patch:" msgstr "Zum Beispiel wird mit dem folgenden Befehl für die Neuerstellung von Coreutils die GNU-C-Bibliothek (glibc) wie angegeben gepatcht:" #. type: example -#: guix-git/doc/guix.texi:11311 +#: guix-git/doc/guix.texi:11625 #, no-wrap msgid "guix build coreutils --with-patch=glibc=./glibc-frob.patch\n" msgstr "guix build coreutils --with-patch=glibc=./glibc-frob.patch\n" #. type: table -#: guix-git/doc/guix.texi:11315 +#: guix-git/doc/guix.texi:11629 msgid "In this example, glibc itself as well as everything that leads to Coreutils in the dependency graph is rebuilt." msgstr "In diesem Beispiel wird glibc selbst und alles, was im Abhängigkeitsgraphen auf dem Weg zu Coreutils liegt, neu erstellt." #. type: cindex -#: guix-git/doc/guix.texi:11316 +#: guix-git/doc/guix.texi:11630 #, no-wrap msgid "upstream, latest version" msgstr "Anbieter von Paketen (Upstream), neueste Version" #. type: item -#: guix-git/doc/guix.texi:11317 +#: guix-git/doc/guix.texi:11631 #, no-wrap msgid "--with-latest=@var{package}" msgstr "--with-latest=@var{Paket}" #. type: table -#: guix-git/doc/guix.texi:11322 +#: guix-git/doc/guix.texi:11636 msgid "So you like living on the bleeding edge? This option is for you! It replaces occurrences of @var{package} in the dependency graph with its latest upstream version, as reported by @command{guix refresh} (@pxref{Invoking guix refresh})." msgstr "Sie hätten gerne das Neueste vom Neuen? Dann ist diese Befehlszeilenoption das Richtige für Sie! Damit wird jedes Vorkommen von @var{Paket} im Abhängigkeitsgraphen durch dessen neueste angebotene Version ersetzt, wie sie auch von @command{guix refresh} gemeldet würde (siehe @ref{Invoking guix refresh})." #. type: table -#: guix-git/doc/guix.texi:11326 +#: guix-git/doc/guix.texi:11640 msgid "It does so by determining the latest upstream release of @var{package} (if possible), downloading it, and authenticating it @emph{if} it comes with an OpenPGP signature." msgstr "Dazu wird die neueste angebotene Version des @var{Paket}s ermittelt (wenn möglich), heruntergeladen und, @emph{wenn} eine OpenPGP-Signatur mit dabei ist, es damit authentifiziert." #. type: table -#: guix-git/doc/guix.texi:11329 +#: guix-git/doc/guix.texi:11643 msgid "As an example, the command below builds Guix against the latest version of Guile-JSON:" msgstr "Zum Beispiel wird durch folgenden Befehl Guix mit der neuesten Version von Guile-JSON erstellt:" #. type: example -#: guix-git/doc/guix.texi:11332 +#: guix-git/doc/guix.texi:11646 #, no-wrap msgid "guix build guix --with-latest=guile-json\n" msgstr "guix build guix --with-latest=guile-json\n" #. type: table -#: guix-git/doc/guix.texi:11341 +#: guix-git/doc/guix.texi:11655 msgid "There are limitations. First, in cases where the tool cannot or does not know how to authenticate source code, you are at risk of running malicious code; a warning is emitted in this case. Second, this option simply changes the source used in the existing package definitions, which is not always sufficient: there might be additional dependencies that need to be added, patches to apply, and more generally the quality assurance work that Guix developers normally do will be missing." msgstr "Es gibt jedoch Einschränkungen. Erstens gehen Sie in dem Fall, dass das Werkzeug nicht in der Lage ist oder nicht weiß, wie es den Quellcode authentifiziert, das Risiko ein, dass bösartiger Code ausgeführt wird; Ihnen wird dann eine Warnung angezeigt. Zweitens wird mit dieser Option einfach der Quellcode ausgetauscht und die übrige Paketdefinition bleibt erhalten. Manchmal reicht das nicht; es könnte sein, dass neue Abhängigkeiten hinzugefügt oder neue Patches angewandt werden müssen oder dass ganz allgemein Arbeiten zur Qualitätssicherung, die Guix-Entwickler normalerweise leisten, fehlen werden." #. type: table -#: guix-git/doc/guix.texi:11346 +#: guix-git/doc/guix.texi:11660 msgid "You've been warned! In all the other cases, it's a snappy way to stay on top. We encourage you to submit patches updating the actual package definitions once you have successfully tested an upgrade (@pxref{Contributing})." msgstr "Sie sind gewarnt worden! Wenn aber kein Problem auftritt, können Sie das Paket zackig auf den neuesten Stand bringen. Wir ermutigen Sie dazu, Patches einzureichen, die die eigentliche Paketdefinition aktualisieren, sobald Sie die neue Version erfolgreich getestet haben (siehe @ref{Contributing})." #. type: cindex -#: guix-git/doc/guix.texi:11347 +#: guix-git/doc/guix.texi:11661 #, no-wrap msgid "test suite, skipping" msgstr "Testkatalog, überspringen" #. type: item -#: guix-git/doc/guix.texi:11348 +#: guix-git/doc/guix.texi:11662 #, no-wrap msgid "--without-tests=@var{package}" msgstr "--without-tests=@var{Paket}" #. type: table -#: guix-git/doc/guix.texi:11354 +#: guix-git/doc/guix.texi:11668 msgid "Build @var{package} without running its tests. This can be useful in situations where you want to skip the lengthy test suite of a intermediate package, or if a package's test suite fails in a non-deterministic fashion. It should be used with care because running the test suite is a good way to ensure a package is working as intended." msgstr "Das @var{Paket} erstellen, ohne seine Tests zu durchlaufen. Das erweist sich als nützlich, wenn Sie Testkataloge überspringen möchten, die viel Zeit in Anspruch nehmen, oder wenn der Testkatalog eines Pakets nichtdeterministisch fehlschlägt. Dies sollte mit Bedacht eingesetzt werden, denn das Ausführen des Testkatalogs sichert zu, dass ein Paket wie gewollt funktioniert." #. type: table -#: guix-git/doc/guix.texi:11358 +#: guix-git/doc/guix.texi:11672 msgid "Turning off tests leads to a different store item. Consequently, when using this option, anything that depends on @var{package} must be rebuilt, as in this example:" msgstr "Wenn die Tests abgeschaltet werden, ergibt sich ein anderes Store-Objekt. Dadurch muss, wenn diese Option benutzt wird, auch alles, was vom Paket abhängt, neu erstellt werden, wie Sie in diesem Beispiel sehen können:" #. type: example -#: guix-git/doc/guix.texi:11361 +#: guix-git/doc/guix.texi:11675 #, no-wrap msgid "guix install --without-tests=python python-notebook\n" msgstr "guix install --without-tests=python python-notebook\n" #. type: table -#: guix-git/doc/guix.texi:11367 +#: guix-git/doc/guix.texi:11681 msgid "The command above installs @code{python-notebook} on top of @code{python} built without running its test suite. To do so, it also rebuilds everything that depends on @code{python}, including @code{python-notebook} itself." msgstr "Mit obigem Befehl wird @code{python-notebook} für ein @code{python} installiert, dessen Testkatalog nicht ausgeführt wurde. Dazu wird auch alles neu erstellt, was von @code{python} abhängt, einschließlich @code{python-notebook}." #. type: table -#: guix-git/doc/guix.texi:11373 +#: guix-git/doc/guix.texi:11687 msgid "Internally, @option{--without-tests} relies on changing the @code{#:tests?} option of a package's @code{check} phase (@pxref{Build Systems}). Note that some packages use a customized @code{check} phase that does not respect a @code{#:tests? #f} setting. Therefore, @option{--without-tests} has no effect on these packages." msgstr "Intern funktioniert @option{--without-tests}, indem es die Option @code{#:tests?} der @code{check}-Phase eines Pakets abändert (siehe @ref{Build Systems}). Beachten Sie, dass manche Pakete eine angepasste @code{check}-Phase benutzen, die eine Einstellung wie @code{#:tests? #f} nicht berücksichtigt. Deshalb wirkt sich @option{--without-tests} auf diese Pakete nicht aus." #. type: Plain text -#: guix-git/doc/guix.texi:11380 +#: guix-git/doc/guix.texi:11694 msgid "Wondering how to achieve the same effect using Scheme code, for example in your manifest, or how to write your own package transformation? @xref{Defining Package Variants}, for an overview of the programming interfaces available." msgstr "Sie fragen sich sicher, wie Sie dieselbe Wirkung mit Scheme-Code erzielen können, zum Beispiel wenn Sie Ihr Manifest oder eine eigene Paketumwandlung schreiben? Siehe @ref{Defining Package Variants} für eine Übersicht über verfügbare Programmierschnittstellen." #. type: Plain text -#: guix-git/doc/guix.texi:11386 +#: guix-git/doc/guix.texi:11700 msgid "The command-line options presented below are specific to @command{guix build}." msgstr "Die unten aufgeführten Befehlszeilenoptionen funktionieren nur mit @command{guix build}." #. type: item -#: guix-git/doc/guix.texi:11389 +#: guix-git/doc/guix.texi:11703 #, no-wrap msgid "--quiet" msgstr "--quiet" #. type: table -#: guix-git/doc/guix.texi:11394 +#: guix-git/doc/guix.texi:11708 msgid "Build quietly, without displaying the build log; this is equivalent to @option{--verbosity=0}. Upon completion, the build log is kept in @file{/var} (or similar) and can always be retrieved using the @option{--log-file} option." msgstr "Schweigend erstellen, ohne das Erstellungsprotokoll anzuzeigen@tie{}— dies ist äquivalent zu @option{--verbosity=0}. Nach Abschluss der Erstellung ist das Protokoll in @file{/var} (oder einem entsprechenden Ort) einsehbar und kann jederzeit mit der Befehlszeilenoption @option{--log-file} gefunden werden." #. type: table -#: guix-git/doc/guix.texi:11399 +#: guix-git/doc/guix.texi:11713 msgid "Build the package, derivation, or other file-like object that the code within @var{file} evaluates to (@pxref{G-Expressions, file-like objects})." msgstr "Das Paket, die Ableitung oder das dateiähnliche Objekt erstellen, zu dem der Code in der @var{Datei} ausgewertet wird (siehe @ref{G-Expressions, dateiartige Objekte})." #. type: table -#: guix-git/doc/guix.texi:11402 +#: guix-git/doc/guix.texi:11716 msgid "As an example, @var{file} might contain a package definition like this (@pxref{Defining Packages}):" msgstr "Zum Beispiel könnte in der @var{Datei} so eine Paketdefinition stehen (siehe @ref{Defining Packages}):" #. type: table -#: guix-git/doc/guix.texi:11411 +#: guix-git/doc/guix.texi:11725 msgid "The @var{file} may also contain a JSON representation of one or more package definitions. Running @code{guix build -f} on @file{hello.json} with the following contents would result in building the packages @code{myhello} and @code{greeter}:" msgstr "Die @var{Datei} darf auch eine JSON-Darstellung von einer oder mehreren Paketdefinitionen sein. Wenn wir @code{guix build -f} auf einer @file{hello.json}-Datei mit dem folgenden Inhalt ausführen würden, würden die Pakete @code{myhello} und @code{greeter} erstellt werden:" #. type: item -#: guix-git/doc/guix.texi:11416 +#: guix-git/doc/guix.texi:11730 #, no-wrap msgid "--manifest=@var{manifest}" msgstr "--manifest=@var{Manifest}" #. type: itemx -#: guix-git/doc/guix.texi:11417 +#: guix-git/doc/guix.texi:11731 #, no-wrap msgid "-m @var{manifest}" msgstr "-m @var{Manifest}" #. type: table -#: guix-git/doc/guix.texi:11420 +#: guix-git/doc/guix.texi:11734 msgid "Build all packages listed in the given @var{manifest} (@pxref{profile-manifest, @option{--manifest}})." msgstr "Alle Pakete erstellen, die im angegebenen @var{Manifest} stehen (siehe @ref{profile-manifest, @option{--manifest}})." #. type: table -#: guix-git/doc/guix.texi:11424 +#: guix-git/doc/guix.texi:11738 msgid "Build the package or derivation @var{expr} evaluates to." msgstr "Das Paket oder die Ableitung erstellen, zu der der @var{Ausdruck} ausgewertet wird." #. type: table -#: guix-git/doc/guix.texi:11428 +#: guix-git/doc/guix.texi:11742 msgid "For example, @var{expr} may be @code{(@@ (gnu packages guile) guile-1.8)}, which unambiguously designates this specific variant of version 1.8 of Guile." msgstr "Zum Beispiel kann der @var{Ausdruck} @code{(@@ (gnu packages guile) guile-1.8)} sein, was diese bestimmte Variante der Version 1.8 von Guile eindeutig bezeichnet." #. type: table -#: guix-git/doc/guix.texi:11432 +#: guix-git/doc/guix.texi:11746 msgid "Alternatively, @var{expr} may be a G-expression, in which case it is used as a build program passed to @code{gexp->derivation} (@pxref{G-Expressions})." msgstr "Alternativ kann der @var{Ausdruck} ein G-Ausdruck sein. In diesem Fall wird er als Erstellungsprogramm an @code{gexp->derivation} übergeben (siehe @ref{G-Expressions})." #. type: table -#: guix-git/doc/guix.texi:11436 +#: guix-git/doc/guix.texi:11750 msgid "Lastly, @var{expr} may refer to a zero-argument monadic procedure (@pxref{The Store Monad}). The procedure must return a derivation as a monadic value, which is then passed through @code{run-with-store}." msgstr "Zudem kann der @var{Ausdruck} eine monadische Prozedur mit null Argumenten bezeichnen (siehe @ref{The Store Monad}). Die Prozedur muss eine Ableitung als monadischen Wert zurückliefern, die dann durch @code{run-with-store} laufen gelassen wird." #. type: item -#: guix-git/doc/guix.texi:11437 +#: guix-git/doc/guix.texi:11751 #, no-wrap msgid "--source" msgstr "--source" #. type: itemx -#: guix-git/doc/guix.texi:11438 guix-git/doc/guix.texi:11835 +#: guix-git/doc/guix.texi:11752 #, no-wrap msgid "-S" msgstr "-S" #. type: table -#: guix-git/doc/guix.texi:11441 +#: guix-git/doc/guix.texi:11755 msgid "Build the source derivations of the packages, rather than the packages themselves." msgstr "Die Quellcode-Ableitung der Pakete statt die Pakete selbst erstellen." #. type: table -#: guix-git/doc/guix.texi:11445 +#: guix-git/doc/guix.texi:11759 msgid "For instance, @code{guix build -S gcc} returns something like @file{/gnu/store/@dots{}-gcc-4.7.2.tar.bz2}, which is the GCC source tarball." msgstr "Zum Beispiel liefert @code{guix build -S gcc} etwas in der Art von @file{/gnu/store/…-gcc-4.7.2.tar.bz2}, also den Tarball mit dem GCC-Quellcode." #. type: table -#: guix-git/doc/guix.texi:11449 +#: guix-git/doc/guix.texi:11763 msgid "The returned source tarball is the result of applying any patches and code snippets specified in the package @code{origin} (@pxref{Defining Packages})." msgstr "Der gelieferte Quell-Tarball ist das Ergebnis davon, alle Patches und Code-Schnipsel aufzuspielen, die im @code{origin}-Objekt des Pakets festgelegt wurden (siehe @ref{Defining Packages})." #. type: cindex -#: guix-git/doc/guix.texi:11450 +#: guix-git/doc/guix.texi:11764 #, no-wrap msgid "source, verification" msgstr "Quellcode, überprüfen" #. type: table -#: guix-git/doc/guix.texi:11456 +#: guix-git/doc/guix.texi:11770 msgid "As with other derivations, the result of building a source derivation can be verified using the @option{--check} option (@pxref{build-check}). This is useful to validate that a (potentially already built or substituted, thus cached) package source matches against its declared hash." msgstr "Wie andere Arten von Ableitung kann auch das Ergebnis einer Quellcode-Ableitung mit der Befehlszeilenoption @option{--check} geprüft werden (siehe @ref{build-check}). Das ist nützlich, um zu überprüfen, ob ein (vielleicht bereits erstellter oder substituierter, also zwischengespeicherter) Paketquellcode zu ihrer deklarierten Hash-Prüfsumme passt." #. type: table -#: guix-git/doc/guix.texi:11461 +#: guix-git/doc/guix.texi:11775 msgid "Note that @command{guix build -S} compiles the sources only of the specified packages. They do not include the sources of statically linked dependencies and by themselves are insufficient for reproducing the packages." msgstr "Beachten Sie, dass @command{guix build -S} nur für die angegebenen Pakete den Quellcode herunterlädt. Dazu gehört @emph{nicht} der Quellcode statisch gebundener Abhängigkeiten und der Quellcode alleine reicht nicht aus, um die Pakete zu reproduzieren." #. type: item -#: guix-git/doc/guix.texi:11462 +#: guix-git/doc/guix.texi:11776 #, no-wrap msgid "--sources" msgstr "--sources" #. type: table -#: guix-git/doc/guix.texi:11469 +#: guix-git/doc/guix.texi:11783 msgid "Fetch and return the source of @var{package-or-derivation} and all their dependencies, recursively. This is a handy way to obtain a local copy of all the source code needed to build @var{packages}, allowing you to eventually build them even without network access. It is an extension of the @option{--source} option and can accept one of the following optional argument values:" msgstr "Den Quellcode für @var{Paket-oder-Ableitung} und alle Abhängigkeiten davon rekursiv herunterladen und zurückliefern. Dies ist eine praktische Methode, eine lokale Kopie des gesamten Quellcodes zu beziehen, der nötig ist, um die Pakete zu erstellen, damit Sie diese später auch ohne Netzwerkzugang erstellen lassen können. Es handelt sich um eine Erweiterung der Befehlszeilenoption @option{--source}, die jeden der folgenden Argumentwerte akzeptiert:" #. type: item -#: guix-git/doc/guix.texi:11471 guix-git/doc/guix.texi:13252 +#: guix-git/doc/guix.texi:11785 guix-git/doc/guix.texi:13609 #, no-wrap msgid "package" msgstr "package" #. type: table -#: guix-git/doc/guix.texi:11474 +#: guix-git/doc/guix.texi:11788 msgid "This value causes the @option{--sources} option to behave in the same way as the @option{--source} option." msgstr "Mit diesem Wert verhält sich die Befehlszeilenoption @option{--sources} auf genau die gleiche Weise wie die Befehlszeilenoption @option{--source}." #. type: item -#: guix-git/doc/guix.texi:11475 guix-git/doc/guix.texi:19682 +#: guix-git/doc/guix.texi:11789 guix-git/doc/guix.texi:20044 #, no-wrap msgid "all" msgstr "all" #. type: table -#: guix-git/doc/guix.texi:11478 +#: guix-git/doc/guix.texi:11792 msgid "Build the source derivations of all packages, including any source that might be listed as @code{inputs}. This is the default value." msgstr "Erstellt die Quellcode-Ableitungen aller Pakete einschließlich allen Quellcodes, der als Teil der Eingaben im @code{inputs}-Feld aufgelistet ist. Dies ist der vorgegebene Wert, wenn sonst keiner angegeben wird." #. type: example -#: guix-git/doc/guix.texi:11484 +#: guix-git/doc/guix.texi:11798 #, no-wrap msgid "" "$ guix build --sources tzdata\n" @@ -21683,18 +22260,18 @@ msgstr "" " /gnu/store/…-tzcode2015b.tar.gz.drv\n" #. type: item -#: guix-git/doc/guix.texi:11486 +#: guix-git/doc/guix.texi:11800 #, no-wrap msgid "transitive" msgstr "transitive" #. type: table -#: guix-git/doc/guix.texi:11490 +#: guix-git/doc/guix.texi:11804 msgid "Build the source derivations of all packages, as well of all transitive inputs to the packages. This can be used e.g.@: to prefetch package source for later offline building." msgstr "Die Quellcode-Ableitungen aller Pakete sowie aller transitiven Eingaben der Pakete erstellen. Damit kann z.B.@: Paket-Quellcode vorab heruntergeladen und später offline erstellt werden." #. type: example -#: guix-git/doc/guix.texi:11501 +#: guix-git/doc/guix.texi:11815 #, no-wrap msgid "" "$ guix build --sources=transitive tzdata\n" @@ -21718,146 +22295,146 @@ msgstr "" "…\n" #. type: table -#: guix-git/doc/guix.texi:11511 +#: guix-git/doc/guix.texi:11825 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of the system type of the build host. The @command{guix build} command allows you to repeat this option several times, in which case it builds for all the specified systems; other commands ignore extraneous @option{-s} options." msgstr "Versuchen, für das angegebene @var{System}@tie{}— z.B.@: @code{i686-linux}@tie{}— statt für denselben Systemtyp wie auf dem Wirtssystem zu erstellen. Beim Befehl @command{guix build} können Sie diese Befehlszeilenoption mehrmals wiederholen, wodurch für jedes angegebene System eine Erstellung durchgeführt wird; andere Befehle ignorieren überzählige @option{-s}-Befehlszeilenoptionen." #. type: quotation -#: guix-git/doc/guix.texi:11516 +#: guix-git/doc/guix.texi:11830 msgid "The @option{--system} flag is for @emph{native} compilation and must not be confused with cross-compilation. See @option{--target} below for information on cross-compilation." msgstr "Die Befehlszeilenoption @option{--system} dient der @emph{nativen} Kompilierung (nicht zu verwechseln mit Cross-Kompilierung). Siehe @option{--target} unten für Informationen zur Cross-Kompilierung." #. type: table -#: guix-git/doc/guix.texi:11523 +#: guix-git/doc/guix.texi:11837 msgid "An example use of this is on Linux-based systems, which can emulate different personalities. For instance, passing @option{--system=i686-linux} on an @code{x86_64-linux} system or @option{--system=armhf-linux} on an @code{aarch64-linux} system allows you to build packages in a complete 32-bit environment." msgstr "Ein Beispiel sind Linux-basierte Systeme, die verschiedene Persönlichkeiten emulieren können. Zum Beispiel können Sie @option{--system=i686-linux} auf einem @code{x86_64-linux}-System oder @option{--system=armhf-linux} auf einem @code{aarch64-linux}-System angeben, um Pakete in einer vollständigen 32-Bit-Umgebung zu erstellen." #. type: quotation -#: guix-git/doc/guix.texi:11528 +#: guix-git/doc/guix.texi:11842 msgid "Building for an @code{armhf-linux} system is unconditionally enabled on @code{aarch64-linux} machines, although certain aarch64 chipsets do not allow for this functionality, notably the ThunderX." msgstr "Das Erstellen für ein @code{armhf-linux}-System ist ungeprüft auf allen @code{aarch64-linux}-Maschinen aktiviert, obwohl bestimmte aarch64-Chipsätze diese Funktionalität nicht unterstützen, darunter auch ThunderX." #. type: table -#: guix-git/doc/guix.texi:11534 +#: guix-git/doc/guix.texi:11848 msgid "Similarly, when transparent emulation with QEMU and @code{binfmt_misc} is enabled (@pxref{Virtualization Services, @code{qemu-binfmt-service-type}}), you can build for any system for which a QEMU @code{binfmt_misc} handler is installed." msgstr "Ebenso können Sie, wenn transparente Emulation mit QEMU und @code{binfmt_misc} aktiviert sind (siehe @ref{Virtualization Services, @code{qemu-binfmt-service-type}}), für jedes System Erstellungen durchführen, für das ein QEMU-@code{binfmt_misc}-Handler installiert ist." #. type: table -#: guix-git/doc/guix.texi:11538 +#: guix-git/doc/guix.texi:11852 msgid "Builds for a system other than that of the machine you are using can also be offloaded to a remote machine of the right architecture. @xref{Daemon Offload Setup}, for more information on offloading." msgstr "Erstellungen für ein anderes System, das nicht dem System der Maschine, die Sie benutzen, entspricht, können auch auf eine entfernte Maschine mit der richtigen Architektur ausgelagert werden. Siehe @ref{Daemon Offload Setup} für mehr Informationen über das Auslagern." #. type: table -#: guix-git/doc/guix.texi:11544 +#: guix-git/doc/guix.texi:11858 msgid "Cross-build for @var{triplet}, which must be a valid GNU triplet, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying Target Triplets, GNU configuration triplets,, autoconf, Autoconf})." msgstr "Lässt für das angegebene @var{Tripel} cross-erstellen. Dieses muss ein gültiges GNU-Tripel wie z.B.@: @code{\"aarch64-linux-gnu\"} sein (siehe @ref{Specifying Target Triplets, GNU-Konfigurationstripel,, autoconf, Autoconf})." #. type: anchor{#1} -#: guix-git/doc/guix.texi:11546 +#: guix-git/doc/guix.texi:11860 msgid "build-check" msgstr "build-check" #. type: cindex -#: guix-git/doc/guix.texi:11547 +#: guix-git/doc/guix.texi:11861 #, no-wrap msgid "determinism, checking" msgstr "Determinismus, Überprüfung" #. type: cindex -#: guix-git/doc/guix.texi:11548 +#: guix-git/doc/guix.texi:11862 #, no-wrap msgid "reproducibility, checking" msgstr "Reproduzierbarkeit, Überprüfung" #. type: table -#: guix-git/doc/guix.texi:11552 +#: guix-git/doc/guix.texi:11866 msgid "Rebuild @var{package-or-derivation}, which are already available in the store, and raise an error if the build results are not bit-for-bit identical." msgstr "@var{Paket-oder-Ableitung} erneut erstellen, wenn diese bereits im Store verfügbar ist, und einen Fehler melden, wenn die Erstellungsergebnisse nicht Bit für Bit identisch sind." #. type: table -#: guix-git/doc/guix.texi:11557 +#: guix-git/doc/guix.texi:11871 msgid "This mechanism allows you to check whether previously installed substitutes are genuine (@pxref{Substitutes}), or whether the build result of a package is deterministic. @xref{Invoking guix challenge}, for more background information and tools." msgstr "Mit diesem Mechanismus können Sie überprüfen, ob zuvor installierte Substitute unverfälscht sind (siehe @ref{Substitutes}) oder auch ob das Erstellungsergebnis eines Pakets deterministisch ist. Siehe @ref{Invoking guix challenge} für mehr Hintergrundinformationen und Werkzeuge." #. type: item -#: guix-git/doc/guix.texi:11562 +#: guix-git/doc/guix.texi:11876 #, no-wrap msgid "--repair" msgstr "--repair" #. type: cindex -#: guix-git/doc/guix.texi:11563 +#: guix-git/doc/guix.texi:11877 #, no-wrap msgid "repairing store items" msgstr "Reparieren von Store-Objekten" #. type: table -#: guix-git/doc/guix.texi:11567 +#: guix-git/doc/guix.texi:11881 msgid "Attempt to repair the specified store items, if they are corrupt, by re-downloading or rebuilding them." msgstr "Versuchen, die angegebenen Store-Objekte zu reparieren, wenn sie beschädigt sind, indem sie neu heruntergeladen oder neu erstellt werden." #. type: table -#: guix-git/doc/guix.texi:11569 +#: guix-git/doc/guix.texi:11883 msgid "This operation is not atomic and thus restricted to @code{root}." msgstr "Diese Operation ist nicht atomar und nur der Administratornutzer @code{root} kann sie verwenden." #. type: item -#: guix-git/doc/guix.texi:11570 +#: guix-git/doc/guix.texi:11884 #, no-wrap msgid "--derivations" msgstr "--derivations" #. type: table -#: guix-git/doc/guix.texi:11574 +#: guix-git/doc/guix.texi:11888 msgid "Return the derivation paths, not the output paths, of the given packages." msgstr "Liefert die Ableitungspfade und @emph{nicht} die Ausgabepfade für die angegebenen Pakete." #. type: cindex -#: guix-git/doc/guix.texi:11577 +#: guix-git/doc/guix.texi:11891 #, no-wrap msgid "GC roots, adding" msgstr "GC-Wurzeln, Hinzufügen" #. type: cindex -#: guix-git/doc/guix.texi:11578 +#: guix-git/doc/guix.texi:11892 #, no-wrap msgid "garbage collector roots, adding" msgstr "Müllsammlerwurzeln, Hinzufügen" #. type: table -#: guix-git/doc/guix.texi:11581 guix-git/doc/guix.texi:35312 +#: guix-git/doc/guix.texi:11895 guix-git/doc/guix.texi:35756 msgid "Make @var{file} a symlink to the result, and register it as a garbage collector root." msgstr "Die @var{Datei} zu einer symbolischen Verknüpfung auf das Ergebnis machen und als Müllsammlerwurzel registrieren." #. type: table -#: guix-git/doc/guix.texi:11587 +#: guix-git/doc/guix.texi:11901 msgid "Consequently, the results of this @command{guix build} invocation are protected from garbage collection until @var{file} is removed. When that option is omitted, build results are eligible for garbage collection as soon as the build completes. @xref{Invoking guix gc}, for more on GC roots." msgstr "Dadurch wird das Ergebnis dieses Aufrufs von @command{guix build} vor dem Müllsammler geschützt, bis die @var{Datei} gelöscht wird. Wird diese Befehlszeilenoption @emph{nicht} angegeben, können Erstellungsergebnisse vom Müllsammler geholt werden, sobald die Erstellung abgeschlossen ist. Siehe @ref{Invoking guix gc} für mehr Informationen zu Müllsammlerwurzeln." #. type: item -#: guix-git/doc/guix.texi:11588 +#: guix-git/doc/guix.texi:11902 #, no-wrap msgid "--log-file" msgstr "--log-file" #. type: cindex -#: guix-git/doc/guix.texi:11589 +#: guix-git/doc/guix.texi:11903 #, no-wrap msgid "build logs, access" msgstr "Erstellungsprotokolle, Zugriff" #. type: table -#: guix-git/doc/guix.texi:11593 +#: guix-git/doc/guix.texi:11907 msgid "Return the build log file names or URLs for the given @var{package-or-derivation}, or raise an error if build logs are missing." msgstr "Liefert die Dateinamen oder URLs der Erstellungsprotokolle für das angegebene @var{Paket-oder-Ableitung} oder meldet einen Fehler, falls Protokolldateien fehlen." #. type: table -#: guix-git/doc/guix.texi:11596 +#: guix-git/doc/guix.texi:11910 msgid "This works regardless of how packages or derivations are specified. For instance, the following invocations are equivalent:" msgstr "Dies funktioniert, egal wie die Pakete oder Ableitungen angegeben werden. Zum Beispiel sind folgende Aufrufe alle äquivalent:" #. type: example -#: guix-git/doc/guix.texi:11602 +#: guix-git/doc/guix.texi:11916 #, no-wrap msgid "" "guix build --log-file $(guix build -d guile)\n" @@ -21871,17 +22448,17 @@ msgstr "" "guix build --log-file -e '(@@ (gnu packages guile) guile-2.0)'\n" #. type: table -#: guix-git/doc/guix.texi:11607 +#: guix-git/doc/guix.texi:11921 msgid "If a log is unavailable locally, and unless @option{--no-substitutes} is passed, the command looks for a corresponding log on one of the substitute servers (as specified with @option{--substitute-urls})." msgstr "Wenn ein Protokoll lokal nicht verfügbar ist und sofern @option{--no-substitutes} nicht übergeben wurde, sucht der Befehl nach einem entsprechenden Protokoll auf einem der Substitutserver (die mit @option{--substitute-urls} angegeben werden können)." #. type: table -#: guix-git/doc/guix.texi:11610 +#: guix-git/doc/guix.texi:11924 msgid "So for instance, imagine you want to see the build log of GDB on MIPS, but you are actually on an @code{x86_64} machine:" msgstr "Stellen Sie sich zum Beispiel vor, sie wollten das Erstellungsprotokoll von GDB auf einem MIPS-System sehen, benutzen aber selbst eine @code{x86_64}-Maschine:" #. type: example -#: guix-git/doc/guix.texi:11614 +#: guix-git/doc/guix.texi:11928 #, no-wrap msgid "" "$ guix build --log-file gdb -s aarch64-linux\n" @@ -21891,33 +22468,33 @@ msgstr "" "https://@value{SUBSTITUTE-SERVER-1}/log/…-gdb-7.10\n" #. type: table -#: guix-git/doc/guix.texi:11617 +#: guix-git/doc/guix.texi:11931 msgid "You can freely access a huge library of build logs!" msgstr "So haben Sie umsonst Zugriff auf eine riesige Bibliothek von Erstellungsprotokollen!" #. type: cindex -#: guix-git/doc/guix.texi:11622 +#: guix-git/doc/guix.texi:11936 #, no-wrap msgid "build failures, debugging" msgstr "Erstellungsfehler, Fehlersuche" #. type: Plain text -#: guix-git/doc/guix.texi:11628 +#: guix-git/doc/guix.texi:11942 msgid "When defining a new package (@pxref{Defining Packages}), you will probably find yourself spending some time debugging and tweaking the build until it succeeds. To do that, you need to operate the build commands yourself in an environment as close as possible to the one the build daemon uses." msgstr "Wenn Sie ein neues Paket definieren (siehe @ref{Defining Packages}), werden Sie sich vermutlich einige Zeit mit der Fehlersuche beschäftigen und die Erstellung so lange anpassen, bis sie funktioniert. Dazu müssen Sie die Erstellungsbefehle selbst in einer Umgebung benutzen, die der, die der Erstellungsdaemon aufbaut, so ähnlich wie möglich ist." #. type: Plain text -#: guix-git/doc/guix.texi:11633 +#: guix-git/doc/guix.texi:11947 msgid "To that end, the first thing to do is to use the @option{--keep-failed} or @option{-K} option of @command{guix build}, which will keep the failed build tree in @file{/tmp} or whatever directory you specified as @env{TMPDIR} (@pxref{Common Build Options, @option{--keep-failed}})." msgstr "Das Erste, was Sie dafür tun müssen, ist die Befehlszeilenoption @option{--keep-failed} oder @option{-K} von @command{guix build} einzusetzen, wodurch Verzeichnisbäume fehlgeschlagener Erstellungen in @file{/tmp} oder dem von Ihnen als @env{TMPDIR} ausgewiesenen Verzeichnis erhalten und nicht gelöscht werden (siehe @ref{Common Build Options, @option{--keep-failed}})." #. type: Plain text -#: guix-git/doc/guix.texi:11639 +#: guix-git/doc/guix.texi:11953 msgid "From there on, you can @command{cd} to the failed build tree and source the @file{environment-variables} file, which contains all the environment variable definitions that were in place when the build failed. So let's say you're debugging a build failure in package @code{foo}; a typical session would look like this:" msgstr "Im Anschluss können Sie mit @command{cd} in die Verzeichnisse dieses fehlgeschlagenen Erstellungsbaums wechseln und mit @command{source} dessen @file{environment-variables}-Datei laden, die alle Umgebungsvariablendefinitionen enthält, die zum Zeitpunkt des Fehlschlags der Erstellung galten. Sagen wir, Sie suchen Fehler in einem Paket @code{foo}, dann würde eine typische Sitzung so aussehen:" #. type: example -#: guix-git/doc/guix.texi:11646 +#: guix-git/doc/guix.texi:11960 #, no-wrap msgid "" "$ guix build foo -K\n" @@ -21933,22 +22510,22 @@ msgstr "" "$ cd foo-1.2\n" #. type: Plain text -#: guix-git/doc/guix.texi:11650 +#: guix-git/doc/guix.texi:11964 msgid "Now, you can invoke commands as if you were the daemon (almost) and troubleshoot your build process." msgstr "Nun können Sie Befehle (fast) so aufrufen, als wären Sie der Daemon, und Fehlerursachen in Ihrem Erstellungsprozess ermitteln." #. type: Plain text -#: guix-git/doc/guix.texi:11656 +#: guix-git/doc/guix.texi:11970 msgid "Sometimes it happens that, for example, a package's tests pass when you run them manually but they fail when the daemon runs them. This can happen because the daemon runs builds in containers where, unlike in our environment above, network access is missing, @file{/bin/sh} does not exist, etc. (@pxref{Build Environment Setup})." msgstr "Manchmal passiert es, dass zum Beispiel die Tests eines Pakets erfolgreich sind, wenn Sie sie manuell aufrufen, aber scheitern, wenn der Daemon sie ausführt. Das kann passieren, weil der Daemon Erstellungen in isolierten Umgebungen („Containern“) durchführt, wo, anders als in der obigen Umgebung, kein Netzwerkzugang möglich ist, @file{/bin/sh} nicht exisiert usw.@: (siehe @ref{Build Environment Setup})." #. type: Plain text -#: guix-git/doc/guix.texi:11659 +#: guix-git/doc/guix.texi:11973 msgid "In such cases, you may need to run inspect the build process from within a container similar to the one the build daemon creates:" msgstr "In solchen Fällen müssen Sie den Erstellungsprozess womöglich aus einer zu der des Daemons ähnlichen isolierten Umgebung heraus ausprobieren:" #. type: example -#: guix-git/doc/guix.texi:11667 +#: guix-git/doc/guix.texi:11981 #, no-wrap msgid "" "$ guix build -K foo\n" @@ -21966,711 +22543,717 @@ msgstr "" "[env]# cd foo-1.2\n" #. type: Plain text -#: guix-git/doc/guix.texi:11676 +#: guix-git/doc/guix.texi:11990 msgid "Here, @command{guix shell -C} creates a container and spawns a new shell in it (@pxref{Invoking guix shell}). The @command{strace gdb} part adds the @command{strace} and @command{gdb} commands to the container, which you may find handy while debugging. The @option{--no-grafts} option makes sure we get the exact same environment, with ungrafted packages (@pxref{Security Updates}, for more info on grafts)." msgstr "Hierbei erzeugt @command{guix shell -C} eine isolierte Umgebung und öffnet darin eine Shell (siehe @ref{Invoking guix shell}). Der Teil mit @command{strace gdb} fügt die Befehle @command{strace} und @command{gdb} zur isolierten Umgebung hinzu, die Sie gut gebrauchen können, während Sie Fehler suchen. Wegen der Befehlszeilenoption @option{--no-grafts} bekommen Sie haargenau dieselbe Umgebung ohne veredelte Pakete (siehe @ref{Security Updates} für mehr Informationen zu Veredelungen)." #. type: Plain text -#: guix-git/doc/guix.texi:11679 +#: guix-git/doc/guix.texi:11993 msgid "To get closer to a container like that used by the build daemon, we can remove @file{/bin/sh}:" msgstr "Um der isolierten Umgebung des Erstellungsdaemons noch näher zu kommen, können wir @file{/bin/sh} entfernen:" #. type: example -#: guix-git/doc/guix.texi:11682 +#: guix-git/doc/guix.texi:11996 #, no-wrap msgid "[env]# rm /bin/sh\n" msgstr "[env]# rm /bin/sh\n" #. type: Plain text -#: guix-git/doc/guix.texi:11686 +#: guix-git/doc/guix.texi:12000 msgid "(Don't worry, this is harmless: this is all happening in the throw-away container created by @command{guix shell}.)" msgstr "(Keine Sorge, das ist harmlos: All dies passiert nur in der zuvor von @command{guix shell} erzeugten Wegwerf-Umgebung.)" #. type: Plain text -#: guix-git/doc/guix.texi:11689 +#: guix-git/doc/guix.texi:12003 msgid "The @command{strace} command is probably not in the search path, but we can run:" msgstr "Der Befehl @command{strace} befindet sich wahrscheinlich nicht in Ihrem Suchpfad, aber wir können ihn so benutzen:" #. type: example -#: guix-git/doc/guix.texi:11692 +#: guix-git/doc/guix.texi:12006 #, no-wrap msgid "[env]# $GUIX_ENVIRONMENT/bin/strace -f -o log make check\n" msgstr "[env]# $GUIX_ENVIRONMENT/bin/strace -f -o log make check\n" #. type: Plain text -#: guix-git/doc/guix.texi:11697 +#: guix-git/doc/guix.texi:12011 msgid "In this way, not only you will have reproduced the environment variables the daemon uses, you will also be running the build process in a container similar to the one the daemon uses." msgstr "Auf diese Weise haben Sie nicht nur die Umgebungsvariablen, die der Daemon benutzt, nachgebildet, sondern lassen auch den Erstellungsprozess in einer isolierten Umgebung ähnlich der des Daemons laufen." #. type: section -#: guix-git/doc/guix.texi:11700 +#: guix-git/doc/guix.texi:12014 #, no-wrap msgid "Invoking @command{guix edit}" msgstr "@command{guix edit} aufrufen" #. type: command{#1} -#: guix-git/doc/guix.texi:11702 +#: guix-git/doc/guix.texi:12016 #, no-wrap msgid "guix edit" msgstr "guix edit" #. type: cindex -#: guix-git/doc/guix.texi:11703 +#: guix-git/doc/guix.texi:12017 #, no-wrap msgid "package definition, editing" msgstr "Paketdefinition, Bearbeiten" #. type: Plain text -#: guix-git/doc/guix.texi:11708 +#: guix-git/doc/guix.texi:12022 msgid "So many packages, so many source files! The @command{guix edit} command facilitates the life of users and packagers by pointing their editor at the source file containing the definition of the specified packages. For instance:" msgstr "So viele Pakete, so viele Quelldateien! Der Befehl @command{guix edit} erleichtert das Leben von sowohl Nutzern als auch Paketentwicklern, indem er Ihren Editor anweist, die Quelldatei mit der Definition des jeweiligen Pakets zu bearbeiten. Zum Beispiel startet dies:" #. type: example -#: guix-git/doc/guix.texi:11711 +#: guix-git/doc/guix.texi:12025 #, no-wrap msgid "guix edit gcc@@4.9 vim\n" msgstr "guix edit gcc@@4.9 vim\n" #. type: Plain text -#: guix-git/doc/guix.texi:11717 +#: guix-git/doc/guix.texi:12031 msgid "launches the program specified in the @env{VISUAL} or in the @env{EDITOR} environment variable to view the recipe of GCC@tie{}4.9.3 and that of Vim." msgstr "das mit der Umgebungsvariablen @env{VISUAL} oder @env{EDITOR} angegebene Programm und lässt es das Rezept von GCC@tie{}4.9.3 und von Vim anzeigen." #. type: Plain text -#: guix-git/doc/guix.texi:11723 +#: guix-git/doc/guix.texi:12037 msgid "If you are using a Guix Git checkout (@pxref{Building from Git}), or have created your own packages on @env{GUIX_PACKAGE_PATH} (@pxref{Package Modules}), you will be able to edit the package recipes. In other cases, you will be able to examine the read-only recipes for packages currently in the store." msgstr "Wenn Sie ein Git-Checkout von Guix benutzen (siehe @ref{Building from Git}) oder Ihre eigenen Pakete im @env{GUIX_PACKAGE_PATH} erstellt haben (siehe @ref{Package Modules}), werden Sie damit die Paketrezepte auch bearbeiten können. Andernfalls werden Sie zumindest in die Lage versetzt, die nur lesbaren Rezepte für sich im Moment im Store befindliche Pakete zu untersuchen." #. type: Plain text -#: guix-git/doc/guix.texi:11728 +#: guix-git/doc/guix.texi:12042 msgid "Instead of @env{GUIX_PACKAGE_PATH}, the command-line option @option{--load-path=@var{directory}} (or in short @option{-L @var{directory}}) allows you to add @var{directory} to the front of the package module search path and so make your own packages visible." msgstr "Statt @env{GUIX_PACKAGE_PATH} zu benutzen, können Sie mit der Befehlszeilenoption @option{--load-path=@var{Verzeichnis}} (oder kurz @option{-L @var{Verzeichnis}}) das @var{Verzeichnis} vorne an den Paketmodul-Suchpfad anhängen und so Ihre eigenen Pakete sichtbar machen." #. type: section -#: guix-git/doc/guix.texi:11730 +#: guix-git/doc/guix.texi:12044 #, no-wrap msgid "Invoking @command{guix download}" msgstr "@command{guix download} aufrufen" #. type: command{#1} -#: guix-git/doc/guix.texi:11732 +#: guix-git/doc/guix.texi:12046 #, no-wrap msgid "guix download" msgstr "guix download" #. type: cindex -#: guix-git/doc/guix.texi:11733 +#: guix-git/doc/guix.texi:12047 #, no-wrap msgid "downloading package sources" msgstr "Paketquellcode herunterladen" #. type: Plain text -#: guix-git/doc/guix.texi:11740 +#: guix-git/doc/guix.texi:12054 msgid "When writing a package definition, developers typically need to download a source tarball, compute its SHA256 hash, and write that hash in the package definition (@pxref{Defining Packages}). The @command{guix download} tool helps with this task: it downloads a file from the given URI, adds it to the store, and prints both its file name in the store and its SHA256 hash." msgstr "Wenn Entwickler einer Paketdefinition selbige schreiben, müssen diese normalerweise einen Quellcode-Tarball herunterladen, seinen SHA256-Hash als Prüfsumme berechnen und diese in der Paketdefinition eintragen (siehe @ref{Defining Packages}). Das Werkzeug @command{guix download} hilft bei dieser Aufgabe: Damit wird eine Datei von der angegebenen URI heruntergeladen, in den Store eingelagert und sowohl ihr Dateiname im Store als auch ihr SHA256-Hash als Prüfsumme angezeigt." #. type: Plain text -#: guix-git/doc/guix.texi:11747 +#: guix-git/doc/guix.texi:12061 msgid "The fact that the downloaded file is added to the store saves bandwidth: when the developer eventually tries to build the newly defined package with @command{guix build}, the source tarball will not have to be downloaded again because it is already in the store. It is also a convenient way to temporarily stash files, which may be deleted eventually (@pxref{Invoking guix gc})." msgstr "Dadurch, dass die heruntergeladene Datei in den Store eingefügt wird, wird Bandbreite gespart: Wenn der Entwickler schließlich versucht, das neu definierte Paket mit @command{guix build} zu erstellen, muss der Quell-Tarball nicht erneut heruntergeladen werden, weil er sich bereits im Store befindet. Es ist auch eine bequeme Methode, Dateien temporär aufzubewahren, die letztlich irgendwann gelöscht werden (siehe @ref{Invoking guix gc})." #. type: Plain text -#: guix-git/doc/guix.texi:11755 +#: guix-git/doc/guix.texi:12069 msgid "The @command{guix download} command supports the same URIs as used in package definitions. In particular, it supports @code{mirror://} URIs. @code{https} URIs (HTTP over TLS) are supported @emph{provided} the Guile bindings for GnuTLS are available in the user's environment; when they are not available, an error is raised. @xref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile}, for more information." msgstr "Der Befehl @command{guix download} unterstützt dieselben URIs, die in Paketdefinitionen verwendet werden. Insbesondere unterstützt er @code{mirror://}-URIs. @code{https}-URIs (HTTP über TLS) werden unterstützt, @emph{vorausgesetzt} die Guile-Anbindungen für GnuTLS sind in der Umgebung des Benutzers verfügbar; wenn nicht, wird ein Fehler gemeldet. Siehe @ref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile}, hat mehr Informationen." #. type: Plain text -#: guix-git/doc/guix.texi:11760 +#: guix-git/doc/guix.texi:12074 msgid "@command{guix download} verifies HTTPS server certificates by loading the certificates of X.509 authorities from the directory pointed to by the @env{SSL_CERT_DIR} environment variable (@pxref{X.509 Certificates}), unless @option{--no-check-certificate} is used." msgstr "Mit @command{guix download} werden HTTPS-Serverzertifikate verifiziert, indem die Zertifikate der X.509-Autoritäten in das durch die Umgebungsvariable @env{SSL_CERT_DIR} bezeichnete Verzeichnis heruntergeladen werden (siehe @ref{X.509 Certificates}), außer @option{--no-check-certificate} wird benutzt." #. type: Plain text -#: guix-git/doc/guix.texi:11762 guix-git/doc/guix.texi:13565 +#: guix-git/doc/guix.texi:12076 guix-git/doc/guix.texi:13922 msgid "The following options are available:" msgstr "Folgende Befehlszeilenoptionen stehen zur Verfügung:" #. type: item -#: guix-git/doc/guix.texi:11764 guix-git/doc/guix.texi:11808 +#: guix-git/doc/guix.texi:12078 guix-git/doc/guix.texi:12122 #, no-wrap msgid "--hash=@var{algorithm}" msgstr "--hash=@var{Algorithmus}" #. type: itemx -#: guix-git/doc/guix.texi:11765 guix-git/doc/guix.texi:11809 +#: guix-git/doc/guix.texi:12079 guix-git/doc/guix.texi:12123 #, no-wrap msgid "-H @var{algorithm}" msgstr "-H @var{Algorithmus}" #. type: table -#: guix-git/doc/guix.texi:11768 +#: guix-git/doc/guix.texi:12082 msgid "Compute a hash using the specified @var{algorithm}. @xref{Invoking guix hash}, for more information." msgstr "Einen Hash mit dem angegebenen @var{Algorithmus} berechnen. Siehe @ref{Invoking guix hash} für weitere Informationen." #. type: item -#: guix-git/doc/guix.texi:11769 guix-git/doc/guix.texi:11818 +#: guix-git/doc/guix.texi:12083 guix-git/doc/guix.texi:12132 #, no-wrap msgid "--format=@var{fmt}" msgstr "--format=@var{Format}" #. type: itemx -#: guix-git/doc/guix.texi:11770 guix-git/doc/guix.texi:11819 +#: guix-git/doc/guix.texi:12084 guix-git/doc/guix.texi:12133 #, no-wrap msgid "-f @var{fmt}" msgstr "-f @var{Format}" #. type: table -#: guix-git/doc/guix.texi:11773 +#: guix-git/doc/guix.texi:12087 msgid "Write the hash in the format specified by @var{fmt}. For more information on the valid values for @var{fmt}, @pxref{Invoking guix hash}." msgstr "Die Hash-Prüfsumme im angegebenen @var{Format} ausgeben. Für weitere Informationen, was gültige Werte für das @var{Format} sind, siehe @ref{Invoking guix hash}." #. type: item -#: guix-git/doc/guix.texi:11774 +#: guix-git/doc/guix.texi:12088 #, no-wrap msgid "--no-check-certificate" msgstr "--no-check-certificate" #. type: table -#: guix-git/doc/guix.texi:11776 +#: guix-git/doc/guix.texi:12090 msgid "Do not validate the X.509 certificates of HTTPS servers." msgstr "X.509-Zertifikate von HTTPS-Servern @emph{nicht} validieren." #. type: table -#: guix-git/doc/guix.texi:11780 +#: guix-git/doc/guix.texi:12094 msgid "When using this option, you have @emph{absolutely no guarantee} that you are communicating with the authentic server responsible for the given URL, which makes you vulnerable to ``man-in-the-middle'' attacks." msgstr "Wenn Sie diese Befehlszeilenoption benutzen, haben Sie @emph{keinerlei Garantie}, dass Sie tatsächlich mit dem authentischen Server, der für die angegebene URL verantwortlich ist, kommunizieren. Das macht Sie anfällig gegen sogenannte „Man-in-the-Middle“-Angriffe." #. type: item -#: guix-git/doc/guix.texi:11781 +#: guix-git/doc/guix.texi:12095 #, no-wrap msgid "--output=@var{file}" msgstr "--output=@var{Datei}" #. type: itemx -#: guix-git/doc/guix.texi:11782 +#: guix-git/doc/guix.texi:12096 #, no-wrap msgid "-o @var{file}" msgstr "-o @var{Datei}" #. type: table -#: guix-git/doc/guix.texi:11785 +#: guix-git/doc/guix.texi:12099 msgid "Save the downloaded file to @var{file} instead of adding it to the store." msgstr "Die heruntergeladene Datei @emph{nicht} in den Store, sondern in die angegebene @var{Datei} abspeichern." #. type: section -#: guix-git/doc/guix.texi:11788 +#: guix-git/doc/guix.texi:12102 #, no-wrap msgid "Invoking @command{guix hash}" msgstr "@command{guix hash} aufrufen" #. type: command{#1} -#: guix-git/doc/guix.texi:11790 +#: guix-git/doc/guix.texi:12104 #, no-wrap msgid "guix hash" msgstr "guix hash" #. type: Plain text -#: guix-git/doc/guix.texi:11795 +#: guix-git/doc/guix.texi:12109 msgid "The @command{guix hash} command computes the hash of a file. It is primarily a convenience tool for anyone contributing to the distribution: it computes the cryptographic hash of one or more files, which can be used in the definition of a package (@pxref{Defining Packages})." msgstr "Der Befehl @command{guix hash} berechnet den Hash einer oder mehrerer Datei. Er ist primär ein Werkzeug, dass es bequemer macht, etwas zur Distribution beizusteuern: Damit wird die kryptografische Hash-Prüfsumme berechnet, die bei der Definition eines Pakets benutzt werden kann (siehe @ref{Defining Packages})." #. type: example -#: guix-git/doc/guix.texi:11800 +#: guix-git/doc/guix.texi:12114 #, no-wrap msgid "guix hash @var{option} @var{file} ...\n" msgstr "guix hash @var{Option} @var{Datei} ...\n" #. type: Plain text -#: guix-git/doc/guix.texi:11805 +#: guix-git/doc/guix.texi:12119 msgid "When @var{file} is @code{-} (a hyphen), @command{guix hash} computes the hash of data read from standard input. @command{guix hash} has the following options:" msgstr "Wird als @var{Datei} ein Bindestrich @code{-} angegeben, berechnet @command{guix hash} den Hash der von der Standardeingabe gelesenen Daten. @command{guix hash} unterstützt die folgenden Optionen:" #. type: table -#: guix-git/doc/guix.texi:11812 +#: guix-git/doc/guix.texi:12126 msgid "Compute a hash using the specified @var{algorithm}, @code{sha256} by default." msgstr "Mit dem angegebenen @var{Algorithmus} einen Hash berechnen. Die Vorgabe ist, @code{sha256} zu benutzen." #. type: table -#: guix-git/doc/guix.texi:11817 -msgid "@var{algorithm} must the name of a cryptographic hash algorithm supported by Libgcrypt @i{via} Guile-Gcrypt---e.g., @code{sha512} or @code{sha3-256} (@pxref{Hash Functions,,, guile-gcrypt, Guile-Gcrypt Reference Manual})." +#: guix-git/doc/guix.texi:12131 +msgid "@var{algorithm} must be the name of a cryptographic hash algorithm supported by Libgcrypt @i{via} Guile-Gcrypt---e.g., @code{sha512} or @code{sha3-256} (@pxref{Hash Functions,,, guile-gcrypt, Guile-Gcrypt Reference Manual})." msgstr "@var{Algorithmus} muss der Name eines durch Libgcrypt über Guile-Gcrypt zur Verfügung gestellten kryptografischen Hashalgorithmus sein, z.B.@: @code{sha512} oder @code{sha3-256} (siehe @ref{Hash Functions,,, guile-gcrypt, Referenzhandbuch zu Guile-Gcrypt})." #. type: table -#: guix-git/doc/guix.texi:11821 +#: guix-git/doc/guix.texi:12135 msgid "Write the hash in the format specified by @var{fmt}." msgstr "Gibt die Prüfsumme im angegebenen @var{Format} aus." #. type: table -#: guix-git/doc/guix.texi:11824 +#: guix-git/doc/guix.texi:12138 msgid "Supported formats: @code{base64}, @code{nix-base32}, @code{base32}, @code{base16} (@code{hex} and @code{hexadecimal} can be used as well)." msgstr "Unterstützte Formate: @code{base64}, @code{nix-base32}, @code{base32}, @code{base16} (@code{hex} und @code{hexadecimal} können auch benutzt werden)." #. type: table -#: guix-git/doc/guix.texi:11828 +#: guix-git/doc/guix.texi:12142 msgid "If the @option{--format} option is not specified, @command{guix hash} will output the hash in @code{nix-base32}. This representation is used in the definitions of packages." msgstr "Wird keine Befehlszeilenoption @option{--format} angegeben, wird @command{guix hash} die Prüfsumme im @code{nix-base32}-Format ausgeben. Diese Darstellung wird bei der Definition von Paketen benutzt." #. type: table -#: guix-git/doc/guix.texi:11833 -msgid "This option is deprecated in favor of @option{--serializer}. It is a legacy alias for @var{type} sets to @code{nar}." -msgstr "Diese Befehlszeilenoption ist veraltet. Benutzen Sie @option{--serializer=nar}. Sie ist bloß ein alternativer Name dafür." +#: guix-git/doc/guix.texi:12148 +msgid "The @option{--recursive} option is deprecated in favor of @option{--serializer=nar} (see below); @option{-r} remains accepted as a convenient shorthand." +msgstr "Die Befehlszeilenoption @option{--recursive} ist veraltet. Benutzen Sie @option{--serializer=nar} (siehe unten). @option{-r} bleibt als bequeme Kurzschreibweise erhalten." #. type: item -#: guix-git/doc/guix.texi:11834 +#: guix-git/doc/guix.texi:12149 #, no-wrap msgid "--serializer=@var{type}" msgstr "--serializer=@var{Typ}" +#. type: itemx +#: guix-git/doc/guix.texi:12150 +#, no-wrap +msgid "-S @var{type}" +msgstr "-S @var{Typ}" + #. type: table -#: guix-git/doc/guix.texi:11837 +#: guix-git/doc/guix.texi:12152 msgid "Compute the hash on @var{file} using @var{type} serialization." msgstr "Die Prüfsumme der @var{Datei} auf die durch @var{Typ} angegebene Art berechnen." #. type: table -#: guix-git/doc/guix.texi:11839 +#: guix-git/doc/guix.texi:12154 msgid "@var{type} may be one of the following:" msgstr "Als @var{Typ} können Sie einen hiervon benutzen:" #. type: item -#: guix-git/doc/guix.texi:11841 guix-git/doc/guix.texi:13918 -#: guix-git/doc/guix.texi:17405 guix-git/doc/guix.texi:19679 +#: guix-git/doc/guix.texi:12156 guix-git/doc/guix.texi:14275 +#: guix-git/doc/guix.texi:17767 guix-git/doc/guix.texi:20041 #, no-wrap msgid "none" msgstr "none" #. type: table -#: guix-git/doc/guix.texi:11843 +#: guix-git/doc/guix.texi:12158 msgid "This is the default: it computes the hash of a file's contents." msgstr "Dies entspricht der Vorgabe: Die Prüfsumme des Inhalts der Datei wird berechnet." #. type: item -#: guix-git/doc/guix.texi:11844 +#: guix-git/doc/guix.texi:12159 #, no-wrap msgid "nar" msgstr "nar" #. type: table -#: guix-git/doc/guix.texi:11854 -msgid "Compute the hash of a ``normalized archive'' (or ``nar'') containing @var{file}, including its children if it is a directory. Some of the metadata of @var{file} is part of the archive; for instance, when @var{file} is a regular file, the hash is different depending on whether @var{file} is executable or not. Metadata such as time stamps has no impact on the hash (@pxref{Invoking guix archive}, for more info on the nar format)." +#: guix-git/doc/guix.texi:12169 +msgid "Compute the hash of a ``normalized archive'' (or ``nar'') containing @var{file}, including its children if it is a directory. Some of the metadata of @var{file} is part of the archive; for instance, when @var{file} is a regular file, the hash is different depending on whether @var{file} is executable or not. Metadata such as time stamps have no impact on the hash (@pxref{Invoking guix archive}, for more info on the nar format)." msgstr "In diesem Fall wird die Prüfsumme eines Normalisierten Archivs (kurz „Nar“) berechnet, das die @var{Datei} enthält, und auch ihre Kinder, wenn es sich um ein Verzeichnis handelt. Einige der Metadaten der @var{Datei} sind Teil dieses Archivs. Zum Beispiel unterscheidet sich die berechnete Prüfsumme, wenn die @var{Datei} eine reguläre Datei ist, je nachdem, ob die @var{Datei} ausführbar ist oder nicht. Metadaten wie der Zeitstempel haben keinen Einfluss auf die Prüfsumme (siehe @ref{Invoking guix archive}, für mehr Informationen über das Nar-Format)." #. type: item -#: guix-git/doc/guix.texi:11855 +#: guix-git/doc/guix.texi:12170 #, no-wrap msgid "git" msgstr "git" #. type: table -#: guix-git/doc/guix.texi:11858 -msgid "Compute the has of the file or directory as a Git ``tree'', following the same method as the Git version control system." +#: guix-git/doc/guix.texi:12173 +msgid "Compute the hash of the file or directory as a Git ``tree'', following the same method as the Git version control system." msgstr "Die Prüfsumme der Datei oder des Verzeichnisses als Git-Baumstruktur berechnen, nach derselben Methode wie beim Git-Versionskontrollsystem." #. type: item -#: guix-git/doc/guix.texi:11860 +#: guix-git/doc/guix.texi:12175 #, no-wrap msgid "--exclude-vcs" msgstr "--exclude-vcs" #. type: itemx -#: guix-git/doc/guix.texi:11861 guix-git/doc/guix.texi:13038 +#: guix-git/doc/guix.texi:12176 guix-git/doc/guix.texi:13395 #, no-wrap msgid "-x" msgstr "-x" #. type: table -#: guix-git/doc/guix.texi:11864 +#: guix-git/doc/guix.texi:12179 msgid "When combined with @option{--recursive}, exclude version control system directories (@file{.bzr}, @file{.git}, @file{.hg}, etc.)." msgstr "Wenn dies zusammen mit der Befehlszeilenoption @option{--recursive} angegeben wird, werden Verzeichnisse zur Versionskontrolle (@file{.bzr}, @file{.git}, @file{.hg}, etc.)@: vom Archiv ausgenommen." #. type: vindex -#: guix-git/doc/guix.texi:11865 +#: guix-git/doc/guix.texi:12180 #, no-wrap msgid "git-fetch" msgstr "git-fetch" #. type: table -#: guix-git/doc/guix.texi:11869 +#: guix-git/doc/guix.texi:12184 msgid "As an example, here is how you would compute the hash of a Git checkout, which is useful when using the @code{git-fetch} method (@pxref{origin Reference}):" msgstr "Zum Beispiel würden Sie auf diese Art die Prüfsumme eines Git-Checkouts berechnen, was nützlich ist, wenn Sie die Prüfsumme für die Methode @code{git-fetch} benutzen (siehe @ref{origin Reference}):" #. type: example -#: guix-git/doc/guix.texi:11874 +#: guix-git/doc/guix.texi:12189 #, no-wrap msgid "" "$ git clone http://example.org/foo.git\n" "$ cd foo\n" -"$ guix hash -rx .\n" +"$ guix hash -x --serializer=nar .\n" msgstr "" "$ git clone http://example.org/foo.git\n" "$ cd foo\n" -"$ guix hash -rx .\n" +"$ guix hash -x --serializer=nar .\n" #. type: cindex -#: guix-git/doc/guix.texi:11878 guix-git/doc/guix.texi:11883 +#: guix-git/doc/guix.texi:12193 guix-git/doc/guix.texi:12198 #, no-wrap msgid "Invoking @command{guix import}" msgstr "@command{guix import} aufrufen" #. type: cindex -#: guix-git/doc/guix.texi:11880 +#: guix-git/doc/guix.texi:12195 #, no-wrap msgid "importing packages" msgstr "Pakete importieren" #. type: cindex -#: guix-git/doc/guix.texi:11881 +#: guix-git/doc/guix.texi:12196 #, no-wrap msgid "package import" msgstr "Paketimport" #. type: cindex -#: guix-git/doc/guix.texi:11882 +#: guix-git/doc/guix.texi:12197 #, no-wrap msgid "package conversion" msgstr "Pakete an Guix anpassen" #. type: Plain text -#: guix-git/doc/guix.texi:11890 +#: guix-git/doc/guix.texi:12205 msgid "The @command{guix import} command is useful for people who would like to add a package to the distribution with as little work as possible---a legitimate demand. The command knows of a few repositories from which it can ``import'' package metadata. The result is a package definition, or a template thereof, in the format we know (@pxref{Defining Packages})." msgstr "Der Befehl @command{guix import} ist für Leute hilfreich, die ein Paket gerne mit so wenig Arbeit wie möglich zur Distribution hinzufügen würden@tie{}— ein legitimer Anspruch. Der Befehl kennt ein paar Sammlungen, aus denen mit ihm Paketmetadaten „importiert“ werden können. Das Ergebnis ist eine Paketdefinition oder eine Vorlage dafür in dem uns bekannten Format (siehe @ref{Defining Packages})." #. type: example -#: guix-git/doc/guix.texi:11895 +#: guix-git/doc/guix.texi:12210 #, no-wrap msgid "guix import @var{importer} @var{options}@dots{}\n" msgstr "guix import @var{Importer} @var{Optionen}…\n" #. type: Plain text -#: guix-git/doc/guix.texi:11900 +#: guix-git/doc/guix.texi:12215 msgid "@var{importer} specifies the source from which to import package metadata, and @var{options} specifies a package identifier and other options specific to @var{importer}." msgstr "Der @var{Importer} gibt die Quelle an, aus der Paketmetadaten importiert werden, und die @var{Optionen} geben eine Paketbezeichnung und andere vom @var{Importer} abhängige Daten an." #. type: Plain text -#: guix-git/doc/guix.texi:11904 +#: guix-git/doc/guix.texi:12219 msgid "Some of the importers rely on the ability to run the @command{gpgv} command. For these, GnuPG must be installed and in @code{$PATH}; run @code{guix install gnupg} if needed." msgstr "Manche Importer setzen voraus, dass der Befehl @command{gpgv} ausgeführt werden kann. Sie funktionieren nur, wenn GnuPG installiert und im @code{$PATH} enthalten ist; falls nötig können Sie @code{guix install gnupg} ausführen." #. type: Plain text -#: guix-git/doc/guix.texi:11906 +#: guix-git/doc/guix.texi:12221 msgid "Currently, the available ``importers'' are:" msgstr "Derzeit sind folgende „Importer“ verfügbar:" #. type: item -#: guix-git/doc/guix.texi:11908 guix-git/doc/guix.texi:12546 +#: guix-git/doc/guix.texi:12223 guix-git/doc/guix.texi:12861 #, no-wrap msgid "gnu" msgstr "gnu" #. type: table -#: guix-git/doc/guix.texi:11912 +#: guix-git/doc/guix.texi:12227 msgid "Import metadata for the given GNU package. This provides a template for the latest version of that GNU package, including the hash of its source tarball, and its canonical synopsis and description." msgstr "Metadaten für das angegebene GNU-Paket importieren. Damit wird eine Vorlage für die neueste Version dieses GNU-Pakets zur Verfügung gestellt, einschließlich der Prüfsumme seines Quellcode-Tarballs, seiner kanonischen Zusammenfassung und seiner Beschreibung." #. type: table -#: guix-git/doc/guix.texi:11915 +#: guix-git/doc/guix.texi:12230 msgid "Additional information such as the package dependencies and its license needs to be figured out manually." msgstr "Zusätzliche Informationen wie Paketabhängigkeiten und seine Lizenz müssen noch manuell ermittelt werden." #. type: table -#: guix-git/doc/guix.texi:11918 +#: guix-git/doc/guix.texi:12233 msgid "For example, the following command returns a package definition for GNU@tie{}Hello:" msgstr "Zum Beispiel liefert der folgende Befehl eine Paketdefinition für GNU@tie{}Hello:" #. type: example -#: guix-git/doc/guix.texi:11921 +#: guix-git/doc/guix.texi:12236 #, no-wrap msgid "guix import gnu hello\n" msgstr "guix import gnu hello\n" #. type: table -#: guix-git/doc/guix.texi:11924 guix-git/doc/guix.texi:12165 -#: guix-git/doc/guix.texi:12215 guix-git/doc/guix.texi:12244 +#: guix-git/doc/guix.texi:12239 guix-git/doc/guix.texi:12480 +#: guix-git/doc/guix.texi:12530 guix-git/doc/guix.texi:12559 msgid "Specific command-line options are:" msgstr "Speziell für diesen Importer stehen noch folgende Befehlszeilenoptionen zur Verfügung:" #. type: item -#: guix-git/doc/guix.texi:11926 guix-git/doc/guix.texi:12743 +#: guix-git/doc/guix.texi:12241 guix-git/doc/guix.texi:13058 #, no-wrap msgid "--key-download=@var{policy}" msgstr "--key-download=@var{Richtlinie}" #. type: table -#: guix-git/doc/guix.texi:11930 +#: guix-git/doc/guix.texi:12245 msgid "As for @command{guix refresh}, specify the policy to handle missing OpenPGP keys when verifying the package signature. @xref{Invoking guix refresh, @option{--key-download}}." msgstr "Die Richtlinie zum Umgang mit fehlenden OpenPGP-Schlüsseln beim Verifizieren der Paketsignatur (auch „Beglaubigung“ genannt) festlegen, wie bei @command{guix refresh}. Siehe @ref{Invoking guix refresh, @option{--key-download}}." #. type: item -#: guix-git/doc/guix.texi:11932 guix-git/doc/guix.texi:11933 -#: guix-git/doc/guix.texi:12570 +#: guix-git/doc/guix.texi:12247 guix-git/doc/guix.texi:12248 +#: guix-git/doc/guix.texi:12885 #, no-wrap msgid "pypi" msgstr "pypi" #. type: table -#: guix-git/doc/guix.texi:11940 +#: guix-git/doc/guix.texi:12255 msgid "Import metadata from the @uref{https://pypi.python.org/, Python Package Index}. Information is taken from the JSON-formatted description available at @code{pypi.python.org} and usually includes all the relevant information, including package dependencies. For maximum efficiency, it is recommended to install the @command{unzip} utility, so that the importer can unzip Python wheels and gather data from them." msgstr "Metadaten aus dem @uref{https://pypi.python.org/, Python Package Index} importieren. Informationen stammen aus der JSON-formatierten Beschreibung, die unter @code{pypi.python.org} verfügbar ist, und enthalten meistens alle relevanten Informationen einschließlich der Abhängigkeiten des Pakets. Für maximale Effizienz wird empfohlen, das Hilfsprogramm @command{unzip} zu installieren, damit der Importer „Python Wheels“ entpacken und daraus Daten beziehen kann." #. type: table -#: guix-git/doc/guix.texi:11943 +#: guix-git/doc/guix.texi:12258 msgid "The command below imports metadata for the latest version of the @code{itsdangerous} Python package:" msgstr "Der folgende Befehl importiert Metadaten für die neueste Version des Python-Pakets namens @code{itsdangerous}:" #. type: example -#: guix-git/doc/guix.texi:11946 +#: guix-git/doc/guix.texi:12261 #, no-wrap msgid "guix import pypi itsdangerous\n" msgstr "guix import pypi itsdangerous\n" #. type: table -#: guix-git/doc/guix.texi:11949 guix-git/doc/guix.texi:12052 -#: guix-git/doc/guix.texi:12393 +#: guix-git/doc/guix.texi:12264 guix-git/doc/guix.texi:12367 +#: guix-git/doc/guix.texi:12708 msgid "You can also ask for a specific version:" msgstr "Sie können auch um eine bestimmte Version bitten:" #. type: example -#: guix-git/doc/guix.texi:11952 +#: guix-git/doc/guix.texi:12267 #, no-wrap msgid "guix import pypi itsdangerous@@1.1.0\n" msgstr "guix import pypi itsdangerous@@1.1.0\n" #. type: table -#: guix-git/doc/guix.texi:11960 guix-git/doc/guix.texi:11985 -#: guix-git/doc/guix.texi:12017 guix-git/doc/guix.texi:12188 -#: guix-git/doc/guix.texi:12229 guix-git/doc/guix.texi:12280 -#: guix-git/doc/guix.texi:12305 guix-git/doc/guix.texi:12321 -#: guix-git/doc/guix.texi:12369 guix-git/doc/guix.texi:12405 +#: guix-git/doc/guix.texi:12275 guix-git/doc/guix.texi:12300 +#: guix-git/doc/guix.texi:12332 guix-git/doc/guix.texi:12503 +#: guix-git/doc/guix.texi:12544 guix-git/doc/guix.texi:12595 +#: guix-git/doc/guix.texi:12620 guix-git/doc/guix.texi:12636 +#: guix-git/doc/guix.texi:12684 guix-git/doc/guix.texi:12720 msgid "Traverse the dependency graph of the given upstream package recursively and generate package expressions for all those packages that are not yet in Guix." msgstr "Den Abhängigkeitsgraphen des angegebenen Pakets beim Anbieter rekursiv durchlaufen und Paketausdrücke für alle solchen Pakete erzeugen, die es in Guix noch nicht gibt." #. type: item -#: guix-git/doc/guix.texi:11962 guix-git/doc/guix.texi:11963 -#: guix-git/doc/guix.texi:12572 +#: guix-git/doc/guix.texi:12277 guix-git/doc/guix.texi:12278 +#: guix-git/doc/guix.texi:12887 #, no-wrap msgid "gem" msgstr "gem" #. type: table -#: guix-git/doc/guix.texi:11972 +#: guix-git/doc/guix.texi:12287 msgid "Import metadata from @uref{https://rubygems.org/, RubyGems}. Information is taken from the JSON-formatted description available at @code{rubygems.org} and includes most relevant information, including runtime dependencies. There are some caveats, however. The metadata doesn't distinguish between synopses and descriptions, so the same string is used for both fields. Additionally, the details of non-Ruby dependencies required to build native extensions is unavailable and left as an exercise to the packager." msgstr "Metadaten von @uref{https://rubygems.org/, RubyGems} importieren. Informationen kommen aus der JSON-formatierten Beschreibung, die auf @code{rubygems.org} verfügbar ist, und enthält die relevantesten Informationen einschließlich der Laufzeitabhängigkeiten. Dies hat aber auch Schattenseiten@tie{}— die Metadaten unterscheiden nicht zwischen Zusammenfassungen und Beschreibungen, daher wird dieselbe Zeichenkette für beides eingesetzt. Zudem fehlen Informationen zu nicht in Ruby geschriebenen Abhängigkeiten, die benötigt werden, um native Erweiterungen zu in Ruby geschriebenem Code zu erstellen. Diese herauszufinden bleibt dem Paketentwickler überlassen." #. type: table -#: guix-git/doc/guix.texi:11974 +#: guix-git/doc/guix.texi:12289 msgid "The command below imports metadata for the @code{rails} Ruby package:" msgstr "Der folgende Befehl importiert Metadaten aus dem Ruby-Paket @code{rails}." #. type: example -#: guix-git/doc/guix.texi:11977 +#: guix-git/doc/guix.texi:12292 #, no-wrap msgid "guix import gem rails\n" msgstr "guix import gem rails\n" #. type: cindex -#: guix-git/doc/guix.texi:11987 guix-git/doc/guix.texi:11988 +#: guix-git/doc/guix.texi:12302 guix-git/doc/guix.texi:12303 #, no-wrap msgid "minetest" msgstr "minetest" #. type: cindex -#: guix-git/doc/guix.texi:11989 +#: guix-git/doc/guix.texi:12304 #, no-wrap msgid "ContentDB" msgstr "ContentDB" #. type: table -#: guix-git/doc/guix.texi:11998 +#: guix-git/doc/guix.texi:12313 msgid "Import metadata from @uref{https://content.minetest.net, ContentDB}. Information is taken from the JSON-formatted metadata provided through @uref{https://content.minetest.net/help/api/, ContentDB's API} and includes most relevant information, including dependencies. There are some caveats, however. The license information is often incomplete. The commit hash is sometimes missing. The descriptions are in the Markdown format, but Guix uses Texinfo instead. Texture packs and subgames are unsupported." msgstr "Importiert Metadaten aus der @uref{https://content.minetest.net, ContentDB}. Informationen werden aus den JSON-formatierten Metadaten genommen, die über die @uref{https://content.minetest.net/help/api/, Programmierschnittstelle („API“) von ContentDB} angeboten werden, und enthalten die relevantesten Informationen wie zum Beispiel Abhängigkeiten. Allerdings passt das Ergebnis nicht ganz. Lizenzinformationen sind oft unvollständig. Der Commit-Hash fehlt manchmal. Die importierten Beschreibungen sind in Markdown formatiert, aber Guix braucht stattdessen Texinfo-Auszeichnungen. Texturpakete und Teilspiele werden nicht unterstützt." #. type: table -#: guix-git/doc/guix.texi:12000 +#: guix-git/doc/guix.texi:12315 msgid "The command below imports metadata for the Mesecons mod by Jeija:" msgstr "Der folgende Befehl importiert Metadaten für die Mesecons-Mod von Jeija:" #. type: example -#: guix-git/doc/guix.texi:12003 +#: guix-git/doc/guix.texi:12318 #, no-wrap msgid "guix import minetest Jeija/mesecons\n" msgstr "guix import minetest Jeija/mesecons\n" #. type: table -#: guix-git/doc/guix.texi:12006 +#: guix-git/doc/guix.texi:12321 msgid "The author name can also be left out:" msgstr "Man muss den Autorennamen nicht angeben:" #. type: example -#: guix-git/doc/guix.texi:12009 +#: guix-git/doc/guix.texi:12324 #, no-wrap msgid "guix import minetest mesecons\n" msgstr "guix import minetest mesecons\n" #. type: item -#: guix-git/doc/guix.texi:12019 guix-git/doc/guix.texi:12568 +#: guix-git/doc/guix.texi:12334 guix-git/doc/guix.texi:12883 #, no-wrap msgid "cpan" msgstr "cpan" #. type: cindex -#: guix-git/doc/guix.texi:12020 +#: guix-git/doc/guix.texi:12335 #, no-wrap msgid "CPAN" msgstr "CPAN" #. type: table -#: guix-git/doc/guix.texi:12028 +#: guix-git/doc/guix.texi:12343 msgid "Import metadata from @uref{https://www.metacpan.org/, MetaCPAN}. Information is taken from the JSON-formatted metadata provided through @uref{https://fastapi.metacpan.org/, MetaCPAN's API} and includes most relevant information, such as module dependencies. License information should be checked closely. If Perl is available in the store, then the @code{corelist} utility will be used to filter core modules out of the list of dependencies." msgstr "Importiert Metadaten von @uref{https://www.metacpan.org/, MetaCPAN}. Informationen werden aus den JSON-formatierten Metadaten genommen, die über die @uref{https://fastapi.metacpan.org/, Programmierschnittstelle („API“) von MetaCPAN} angeboten werden, und enthalten die relevantesten Informationen wie zum Beispiel Modulabhängigkeiten. Lizenzinformationen sollten genau nachgeprüft werden. Wenn Perl im Store verfügbar ist, wird das Werkzeug @code{corelist} benutzt, um Kernmodule in der Abhängigkeitsliste wegzulassen." #. type: table -#: guix-git/doc/guix.texi:12031 +#: guix-git/doc/guix.texi:12346 msgid "The command command below imports metadata for the Acme::Boolean Perl module:" msgstr "Folgender Befehl importiert Metadaten für das Perl-Modul Acme::Boolean:" #. type: example -#: guix-git/doc/guix.texi:12034 +#: guix-git/doc/guix.texi:12349 #, no-wrap msgid "guix import cpan Acme::Boolean\n" msgstr "guix import cpan Acme::Boolean\n" #. type: item -#: guix-git/doc/guix.texi:12036 guix-git/doc/guix.texi:12564 +#: guix-git/doc/guix.texi:12351 guix-git/doc/guix.texi:12879 #, no-wrap msgid "cran" msgstr "cran" #. type: cindex -#: guix-git/doc/guix.texi:12037 +#: guix-git/doc/guix.texi:12352 #, no-wrap msgid "CRAN" msgstr "CRAN" #. type: cindex -#: guix-git/doc/guix.texi:12038 +#: guix-git/doc/guix.texi:12353 #, no-wrap msgid "Bioconductor" msgstr "Bioconductor" #. type: table -#: guix-git/doc/guix.texi:12042 +#: guix-git/doc/guix.texi:12357 msgid "Import metadata from @uref{https://cran.r-project.org/, CRAN}, the central repository for the @uref{https://r-project.org, GNU@tie{}R statistical and graphical environment}." msgstr "Metadaten aus dem @uref{https://cran.r-project.org/, CRAN} importieren, der zentralen Sammlung für die @uref{https://r-project.org, statistische und grafische Umgebung GNU@tie{}R}." #. type: table -#: guix-git/doc/guix.texi:12044 +#: guix-git/doc/guix.texi:12359 msgid "Information is extracted from the @file{DESCRIPTION} file of the package." msgstr "Informationen werden aus der Datei namens @file{DESCRIPTION} des Pakets extrahiert." #. type: table -#: guix-git/doc/guix.texi:12046 +#: guix-git/doc/guix.texi:12361 msgid "The command command below imports metadata for the Cairo R package:" msgstr "Der folgende Befehl importiert Metadaten für das Cairo-R-Paket:" #. type: example -#: guix-git/doc/guix.texi:12049 +#: guix-git/doc/guix.texi:12364 #, no-wrap msgid "guix import cran Cairo\n" msgstr "guix import cran Cairo\n" #. type: example -#: guix-git/doc/guix.texi:12055 +#: guix-git/doc/guix.texi:12370 #, no-wrap msgid "guix import cran rasterVis@@0.50.3\n" msgstr "guix import cran rasterVis@@0.50.3\n" #. type: table -#: guix-git/doc/guix.texi:12060 +#: guix-git/doc/guix.texi:12375 msgid "When @option{--recursive} is added, the importer will traverse the dependency graph of the given upstream package recursively and generate package expressions for all those packages that are not yet in Guix." msgstr "Wird zudem @option{--recursive} angegeben, wird der Importer den Abhängigkeitsgraphen des angegebenen Pakets beim Anbieter rekursiv durchlaufen und Paketausdrücke für all die Pakete erzeugen, die noch nicht Teil von Guix sind." #. type: table -#: guix-git/doc/guix.texi:12067 +#: guix-git/doc/guix.texi:12382 msgid "When @option{--style=specification} is added, the importer will generate package definitions whose inputs are package specifications instead of references to package variables. This is useful when generated package definitions are to be appended to existing user modules, as the list of used package modules need not be changed. The default is @option{--style=variable}." msgstr "Wird @option{--style=specification} angegeben, wird der Importer Paketdefinitionen erzeugen, deren Eingaben als Paketspezifikationen statt als Referenzen auf Paketvariable vorliegen. Das ist nützlich, wenn die erzeugten Paketdefinitionen in bestehende, nutzereigene Module eingefügt werden, weil dann die Liste der benutzten Paketmodule nicht angepasst werden muss. Die Vorgabe ist @option{--style=variable}." #. type: table -#: guix-git/doc/guix.texi:12072 +#: guix-git/doc/guix.texi:12387 msgid "When @option{--archive=bioconductor} is added, metadata is imported from @uref{https://www.bioconductor.org/, Bioconductor}, a repository of R packages for the analysis and comprehension of high-throughput genomic data in bioinformatics." msgstr "Wird @option{--archive=bioconductor} angegeben, werden Metadaten vom @uref{https://www.bioconductor.org/, Bioconductor} importiert, einer Sammlung von R-Paketen zur Analyse und zum Verständnis von großen Mengen genetischer Daten in der Bioinformatik." #. type: table -#: guix-git/doc/guix.texi:12075 +#: guix-git/doc/guix.texi:12390 msgid "Information is extracted from the @file{DESCRIPTION} file contained in the package archive." msgstr "Informationen werden aus der Datei namens @file{DESCRIPTION} im Archiv des Pakets extrahiert." #. type: table -#: guix-git/doc/guix.texi:12077 +#: guix-git/doc/guix.texi:12392 msgid "The command below imports metadata for the GenomicRanges R package:" msgstr "Der folgende Befehl importiert Metadaten für das R-Paket GenomicRanges:" #. type: example -#: guix-git/doc/guix.texi:12080 +#: guix-git/doc/guix.texi:12395 #, no-wrap msgid "guix import cran --archive=bioconductor GenomicRanges\n" msgstr "guix import cran --archive=bioconductor GenomicRanges\n" #. type: table -#: guix-git/doc/guix.texi:12085 +#: guix-git/doc/guix.texi:12400 msgid "Finally, you can also import R packages that have not yet been published on CRAN or Bioconductor as long as they are in a git repository. Use @option{--archive=git} followed by the URL of the git repository:" msgstr "Schließlich können Sie auch solche R-Pakete importieren, die noch nicht auf CRAN oder im Bioconductor veröffentlicht wurden, solange sie in einem Git-Repository stehen. Benutzen Sie @option{--archive=git} gefolgt von der URL des Git-Repositorys." #. type: example -#: guix-git/doc/guix.texi:12088 +#: guix-git/doc/guix.texi:12403 #, no-wrap msgid "guix import cran --archive=git https://github.com/immunogenomics/harmony\n" msgstr "guix import cran --archive=git https://github.com/immunogenomics/harmony\n" #. type: item -#: guix-git/doc/guix.texi:12090 +#: guix-git/doc/guix.texi:12405 #, no-wrap msgid "texlive" msgstr "texlive" #. type: cindex -#: guix-git/doc/guix.texi:12091 +#: guix-git/doc/guix.texi:12406 #, no-wrap msgid "TeX Live" msgstr "TeX Live" #. type: cindex -#: guix-git/doc/guix.texi:12092 +#: guix-git/doc/guix.texi:12407 #, no-wrap msgid "CTAN" msgstr "CTAN" #. type: table -#: guix-git/doc/guix.texi:12096 +#: guix-git/doc/guix.texi:12411 msgid "Import TeX package information from the TeX Live package database for TeX packages that are part of the @uref{https://www.tug.org/texlive/, TeX Live distribution}." msgstr "Informationen über TeX-Pakete, die Teil der @uref{https://www.tug.org/texlive/, TeX-Live-Distribution} sind, aus der Datenbank von TeX Live importieren." #. type: table -#: guix-git/doc/guix.texi:12101 +#: guix-git/doc/guix.texi:12416 msgid "Information about the package is obtained from the TeX Live package database, a plain text file that is included in the @code{texlive-bin} package. The source code is downloaded from possibly multiple locations in the SVN repository of the Tex Live project." msgstr "Paketinformationen werden der Paketdatenbank von TeX Live entnommen. Bei ihr handelt es sich um eine reine Textdatei, die im @code{texlive-bin}-Paket enthalten ist. Der Quellcode wird von unter Umständen mehreren Stellen im SVN-Repository des TeX-Live-Projekts heruntergeladen." #. type: table -#: guix-git/doc/guix.texi:12104 +#: guix-git/doc/guix.texi:12419 msgid "The command command below imports metadata for the @code{fontspec} TeX package:" msgstr "Der folgende Befehl importiert Metadaten für das TeX-Paket @code{fontspec}:" #. type: example -#: guix-git/doc/guix.texi:12107 +#: guix-git/doc/guix.texi:12422 #, no-wrap msgid "guix import texlive fontspec\n" msgstr "guix import texlive fontspec\n" #. type: cindex -#: guix-git/doc/guix.texi:12110 +#: guix-git/doc/guix.texi:12425 #, no-wrap msgid "JSON, import" msgstr "JSON, Import" #. type: table -#: guix-git/doc/guix.texi:12113 +#: guix-git/doc/guix.texi:12428 msgid "Import package metadata from a local JSON file. Consider the following example package definition in JSON format:" msgstr "Paketmetadaten aus einer lokalen JSON-Datei importieren. Betrachten Sie folgende Beispiel-Paketdefinition im JSON-Format:" #. type: example -#: guix-git/doc/guix.texi:12126 +#: guix-git/doc/guix.texi:12441 #, no-wrap msgid "" "@{\n" @@ -22698,17 +23281,17 @@ msgstr "" "@}\n" #. type: table -#: guix-git/doc/guix.texi:12132 +#: guix-git/doc/guix.texi:12447 msgid "The field names are the same as for the @code{} record (@xref{Defining Packages}). References to other packages are provided as JSON lists of quoted package specification strings such as @code{guile} or @code{guile@@2.0}." msgstr "Die Felder sind genauso benannt wie bei einem @code{}-Verbundstyp (siehe @ref{Defining Packages}). Referenzen zu anderen Paketen stehen darin als JSON-Liste von mit Anführungszeichen quotierten Zeichenketten wie @code{guile} oder @code{guile@@2.0}." #. type: table -#: guix-git/doc/guix.texi:12135 +#: guix-git/doc/guix.texi:12450 msgid "The importer also supports a more explicit source definition using the common fields for @code{} records:" msgstr "Der Importer unterstützt auch eine ausdrücklichere Definition der Quelldateien mit den üblichen Feldern eines @code{}-Verbunds:" #. type: example -#: guix-git/doc/guix.texi:12148 +#: guix-git/doc/guix.texi:12463 #, no-wrap msgid "" "@{\n" @@ -22736,382 +23319,382 @@ msgstr "" "@}\n" #. type: table -#: guix-git/doc/guix.texi:12152 +#: guix-git/doc/guix.texi:12467 msgid "The command below reads metadata from the JSON file @code{hello.json} and outputs a package expression:" msgstr "Der folgende Befehl liest Metadaten aus der JSON-Datei @code{hello.json} und gibt einen Paketausdruck aus:" #. type: example -#: guix-git/doc/guix.texi:12155 +#: guix-git/doc/guix.texi:12470 #, no-wrap msgid "guix import json hello.json\n" msgstr "guix import json hello.json\n" #. type: item -#: guix-git/doc/guix.texi:12157 guix-git/doc/guix.texi:12158 -#: guix-git/doc/guix.texi:12576 +#: guix-git/doc/guix.texi:12472 guix-git/doc/guix.texi:12473 +#: guix-git/doc/guix.texi:12891 #, no-wrap msgid "hackage" msgstr "hackage" #. type: table -#: guix-git/doc/guix.texi:12163 +#: guix-git/doc/guix.texi:12478 msgid "Import metadata from the Haskell community's central package archive @uref{https://hackage.haskell.org/, Hackage}. Information is taken from Cabal files and includes all the relevant information, including package dependencies." msgstr "Metadaten aus @uref{https://hackage.haskell.org/, Hackage}, dem zentralen Paketarchiv der Haskell-Gemeinde, importieren. Informationen werden aus Cabal-Dateien ausgelesen. Darin sind alle relevanten Informationen einschließlich der Paketabhängigkeiten enthalten." #. type: item -#: guix-git/doc/guix.texi:12167 +#: guix-git/doc/guix.texi:12482 #, no-wrap msgid "--stdin" msgstr "--stdin" #. type: itemx -#: guix-git/doc/guix.texi:12168 +#: guix-git/doc/guix.texi:12483 #, no-wrap msgid "-s" msgstr "-s" #. type: table -#: guix-git/doc/guix.texi:12170 +#: guix-git/doc/guix.texi:12485 msgid "Read a Cabal file from standard input." msgstr "Eine Cabal-Datei von der Standardeingabe lesen." #. type: item -#: guix-git/doc/guix.texi:12170 guix-git/doc/guix.texi:12217 +#: guix-git/doc/guix.texi:12485 guix-git/doc/guix.texi:12532 #, no-wrap msgid "--no-test-dependencies" msgstr "--no-test-dependencies" #. type: table -#: guix-git/doc/guix.texi:12173 guix-git/doc/guix.texi:12220 +#: guix-git/doc/guix.texi:12488 guix-git/doc/guix.texi:12535 msgid "Do not include dependencies required only by the test suites." msgstr "Keine Abhängigkeiten übernehmen, die nur von Testkatalogen benötigt werden." #. type: item -#: guix-git/doc/guix.texi:12173 +#: guix-git/doc/guix.texi:12488 #, no-wrap msgid "--cabal-environment=@var{alist}" msgstr "--cabal-environment=@var{Aliste}" #. type: itemx -#: guix-git/doc/guix.texi:12174 +#: guix-git/doc/guix.texi:12489 #, no-wrap msgid "-e @var{alist}" msgstr "-e @var{Aliste}" #. type: table -#: guix-git/doc/guix.texi:12183 +#: guix-git/doc/guix.texi:12498 msgid "@var{alist} is a Scheme alist defining the environment in which the Cabal conditionals are evaluated. The accepted keys are: @code{os}, @code{arch}, @code{impl} and a string representing the name of a flag. The value associated with a flag has to be either the symbol @code{true} or @code{false}. The value associated with other keys has to conform to the Cabal file format definition. The default value associated with the keys @code{os}, @code{arch} and @code{impl} is @samp{linux}, @samp{x86_64} and @samp{ghc}, respectively." msgstr "@var{Aliste} muss eine assoziative Liste der Scheme-Programmiersprache sein, die die Umgebung definiert, in der bedingte Ausdrücke von Cabal ausgewertet werden. Dabei werden folgende Schlüssel akzeptiert: @code{os}, @code{arch}, @code{impl} und eine Zeichenkette, die dem Namen einer Option (einer „Flag“) entspricht. Der mit einer „Flag“ assoziierte Wert muss entweder das Symbol @code{true} oder @code{false} sein. Der anderen Schlüsseln zugeordnete Wert muss mit der Definition des Cabal-Dateiformats konform sein. Der vorgegebene Wert zu den Schlüsseln @code{os}, @code{arch} and @code{impl} ist jeweils @samp{linux}, @samp{x86_64} bzw. @samp{ghc}." #. type: table -#: guix-git/doc/guix.texi:12193 +#: guix-git/doc/guix.texi:12508 msgid "The command below imports metadata for the latest version of the HTTP Haskell package without including test dependencies and specifying the value of the flag @samp{network-uri} as @code{false}:" msgstr "Der folgende Befehl importiert Metadaten für die neuste Version des Haskell-„HTTP“-Pakets, ohne Testabhängigkeiten zu übernehmen und bei Übergabe von @code{false} als Wert der Flag @samp{network-uri}:" #. type: example -#: guix-git/doc/guix.texi:12196 +#: guix-git/doc/guix.texi:12511 #, no-wrap msgid "guix import hackage -t -e \"'((\\\"network-uri\\\" . false))\" HTTP\n" msgstr "guix import hackage -t -e \"'((\\\"network-uri\\\" . false))\" HTTP\n" #. type: table -#: guix-git/doc/guix.texi:12200 +#: guix-git/doc/guix.texi:12515 msgid "A specific package version may optionally be specified by following the package name by an at-sign and a version number as in the following example:" msgstr "Eine ganz bestimmte Paketversion kann optional ausgewählt werden, indem man nach dem Paketnamen anschließend ein At-Zeichen und eine Versionsnummer angibt wie in folgendem Beispiel:" #. type: example -#: guix-git/doc/guix.texi:12203 +#: guix-git/doc/guix.texi:12518 #, no-wrap msgid "guix import hackage mtl@@2.1.3.1\n" msgstr "guix import hackage mtl@@2.1.3.1\n" #. type: item -#: guix-git/doc/guix.texi:12205 guix-git/doc/guix.texi:12206 -#: guix-git/doc/guix.texi:12578 +#: guix-git/doc/guix.texi:12520 guix-git/doc/guix.texi:12521 +#: guix-git/doc/guix.texi:12893 #, no-wrap msgid "stackage" msgstr "stackage" #. type: table -#: guix-git/doc/guix.texi:12213 +#: guix-git/doc/guix.texi:12528 msgid "The @code{stackage} importer is a wrapper around the @code{hackage} one. It takes a package name, looks up the package version included in a long-term support (LTS) @uref{https://www.stackage.org, Stackage} release and uses the @code{hackage} importer to retrieve its metadata. Note that it is up to you to select an LTS release compatible with the GHC compiler used by Guix." msgstr "Der @code{stackage}-Importer ist ein Wrapper um den @code{hackage}-Importer. Er nimmt einen Paketnamen und schaut dafür die Paketversion nach, die Teil einer @uref{https://www.stackage.org, Stackage-Veröffentlichung} mit Langzeitunterstützung (englisch „Long-Term Support“, kurz LTS) ist, deren Metadaten er dann mit dem @code{hackage}-Importer bezieht. Beachten Sie, dass es Ihre Aufgabe ist, eine LTS-Veröffentlichung auszuwählen, die mit dem von Guix benutzten GHC-Compiler kompatibel ist." #. type: item -#: guix-git/doc/guix.texi:12220 +#: guix-git/doc/guix.texi:12535 #, no-wrap msgid "--lts-version=@var{version}" msgstr "--lts-version=@var{Version}" #. type: itemx -#: guix-git/doc/guix.texi:12221 +#: guix-git/doc/guix.texi:12536 #, no-wrap msgid "-l @var{version}" msgstr "-l @var{Version}" #. type: table -#: guix-git/doc/guix.texi:12224 +#: guix-git/doc/guix.texi:12539 msgid "@var{version} is the desired LTS release version. If omitted the latest release is used." msgstr "@var{Version} ist die gewünschte Version der LTS-Veröffentlichung. Wird keine angegeben, wird die neueste benutzt." #. type: table -#: guix-git/doc/guix.texi:12233 +#: guix-git/doc/guix.texi:12548 msgid "The command below imports metadata for the HTTP Haskell package included in the LTS Stackage release version 7.18:" msgstr "Der folgende Befehl importiert Metadaten für dasjenige Haskell-„HTTP“-Paket, das in der LTS-Stackage-Veröffentlichung mit Version 7.18 vorkommt:" #. type: example -#: guix-git/doc/guix.texi:12236 +#: guix-git/doc/guix.texi:12551 #, no-wrap msgid "guix import stackage --lts-version=7.18 HTTP\n" msgstr "guix import stackage --lts-version=7.18 HTTP\n" #. type: item -#: guix-git/doc/guix.texi:12238 guix-git/doc/guix.texi:12239 -#: guix-git/doc/guix.texi:12562 +#: guix-git/doc/guix.texi:12553 guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12877 #, no-wrap msgid "elpa" msgstr "elpa" #. type: table -#: guix-git/doc/guix.texi:12242 +#: guix-git/doc/guix.texi:12557 msgid "Import metadata from an Emacs Lisp Package Archive (ELPA) package repository (@pxref{Packages,,, emacs, The GNU Emacs Manual})." msgstr "Metadaten aus der Paketsammlung „Emacs Lisp Package Archive“ (ELPA) importieren (siehe @ref{Packages,,, emacs, The GNU Emacs Manual})." #. type: item -#: guix-git/doc/guix.texi:12246 +#: guix-git/doc/guix.texi:12561 #, no-wrap msgid "--archive=@var{repo}" msgstr "--archive=@var{Repo}" #. type: itemx -#: guix-git/doc/guix.texi:12247 +#: guix-git/doc/guix.texi:12562 #, no-wrap msgid "-a @var{repo}" msgstr "-a @var{Repo}" #. type: table -#: guix-git/doc/guix.texi:12251 +#: guix-git/doc/guix.texi:12566 msgid "@var{repo} identifies the archive repository from which to retrieve the information. Currently the supported repositories and their identifiers are:" msgstr "Mit @var{Repo} wird die Archiv-Sammlung (ein „Repository“) bezeichnet, von dem die Informationen bezogen werden sollen. Derzeit sind die unterstützten Repositorys und ihre Bezeichnungen folgende:" #. type: itemize -#: guix-git/doc/guix.texi:12255 +#: guix-git/doc/guix.texi:12570 msgid "@uref{https://elpa.gnu.org/packages, GNU}, selected by the @code{gnu} identifier. This is the default." msgstr "@uref{https://elpa.gnu.org/packages, GNU}, bezeichnet mit @code{gnu}. Dies ist die Vorgabe." #. type: itemize -#: guix-git/doc/guix.texi:12261 +#: guix-git/doc/guix.texi:12576 msgid "Packages from @code{elpa.gnu.org} are signed with one of the keys contained in the GnuPG keyring at @file{share/emacs/25.1/etc/package-keyring.gpg} (or similar) in the @code{emacs} package (@pxref{Package Installation, ELPA package signatures,, emacs, The GNU Emacs Manual})." msgstr "Pakete aus @code{elpa.gnu.org} wurden mit einem der Schlüssel im GnuPG-Schlüsselbund in @file{share/emacs/25.1/etc/package-keyring.gpg} (oder einem ähnlichen Pfad) des @code{emacs}-Pakets signiert (siehe @ref{Package Installation, ELPA-Paketsignaturen,, emacs, The GNU Emacs Manual})." #. type: itemize -#: guix-git/doc/guix.texi:12265 +#: guix-git/doc/guix.texi:12580 msgid "@uref{https://elpa.nongnu.org/nongnu/, NonGNU}, selected by the @code{nongnu} identifier." msgstr "@uref{https://elpa.nongnu.org/nongnu/, NonGNU}, bezeichnet mit @code{nongnu}." #. type: itemize -#: guix-git/doc/guix.texi:12269 +#: guix-git/doc/guix.texi:12584 msgid "@uref{https://stable.melpa.org/packages, MELPA-Stable}, selected by the @code{melpa-stable} identifier." msgstr "@uref{https://stable.melpa.org/packages, MELPA-Stable}, bezeichnet mit @code{melpa-stable}." #. type: itemize -#: guix-git/doc/guix.texi:12273 +#: guix-git/doc/guix.texi:12588 msgid "@uref{https://melpa.org/packages, MELPA}, selected by the @code{melpa} identifier." msgstr "@uref{https://melpa.org/packages, MELPA}, bezeichnet mit @code{melpa}." #. type: item -#: guix-git/doc/guix.texi:12282 guix-git/doc/guix.texi:12283 -#: guix-git/doc/guix.texi:12580 +#: guix-git/doc/guix.texi:12597 guix-git/doc/guix.texi:12598 +#: guix-git/doc/guix.texi:12895 #, no-wrap msgid "crate" msgstr "crate" #. type: table -#: guix-git/doc/guix.texi:12286 +#: guix-git/doc/guix.texi:12601 msgid "Import metadata from the crates.io Rust package repository @uref{https://crates.io, crates.io}, as in this example:" msgstr "Metadaten aus der Paketsammlung crates.io für Rust importieren @uref{https://crates.io, crates.io}, wie Sie in diesem Beispiel sehen:" #. type: example -#: guix-git/doc/guix.texi:12289 +#: guix-git/doc/guix.texi:12604 #, no-wrap msgid "guix import crate blake2-rfc\n" msgstr "guix import crate blake2-rfc\n" #. type: table -#: guix-git/doc/guix.texi:12292 +#: guix-git/doc/guix.texi:12607 msgid "The crate importer also allows you to specify a version string:" msgstr "Mit dem Crate-Importer können Sie auch eine Version als Zeichenkette angeben:" #. type: example -#: guix-git/doc/guix.texi:12295 +#: guix-git/doc/guix.texi:12610 #, no-wrap msgid "guix import crate constant-time-eq@@0.1.0\n" msgstr "guix import crate constant-time-eq@@0.1.0\n" #. type: table -#: guix-git/doc/guix.texi:12298 guix-git/doc/guix.texi:12314 -#: guix-git/doc/guix.texi:12362 guix-git/doc/guix.texi:12399 +#: guix-git/doc/guix.texi:12613 guix-git/doc/guix.texi:12629 +#: guix-git/doc/guix.texi:12677 guix-git/doc/guix.texi:12714 msgid "Additional options include:" msgstr "Zu den zusätzlichen Optionen gehören:" #. type: item -#: guix-git/doc/guix.texi:12307 +#: guix-git/doc/guix.texi:12622 #, no-wrap msgid "opam" msgstr "opam" #. type: cindex -#: guix-git/doc/guix.texi:12308 +#: guix-git/doc/guix.texi:12623 #, no-wrap msgid "OPAM" msgstr "OPAM" #. type: cindex -#: guix-git/doc/guix.texi:12309 +#: guix-git/doc/guix.texi:12624 #, no-wrap msgid "OCaml" msgstr "OCaml" #. type: table -#: guix-git/doc/guix.texi:12312 +#: guix-git/doc/guix.texi:12627 msgid "Import metadata from the @uref{https://opam.ocaml.org/, OPAM} package repository used by the OCaml community." msgstr "Metadaten aus der Paketsammlung @uref{https://opam.ocaml.org/, OPAM} der OCaml-Gemeinde importieren." #. type: item -#: guix-git/doc/guix.texi:12321 +#: guix-git/doc/guix.texi:12636 #, no-wrap msgid "--repo" msgstr "--repo" #. type: table -#: guix-git/doc/guix.texi:12325 +#: guix-git/doc/guix.texi:12640 msgid "By default, packages are searched in the official OPAM repository. This option, which can be used more than once, lets you add other repositories which will be searched for packages. It accepts as valid arguments:" msgstr "Vorgegeben ist, nach Paketen im offiziellen OPAM-Repository zu suchen. Mit dieser Befehlszeilenoption, die mehr als einmal angegeben werden kann, können Sie andere Repositorys hinzufügen, in denen nach Paketen gesucht wird. Als gültige Argumente akzeptiert werden:" #. type: item -#: guix-git/doc/guix.texi:12327 +#: guix-git/doc/guix.texi:12642 #, no-wrap msgid "the name of a known repository - can be one of @code{opam}," msgstr "der Name eines bekannten Repositorys, entweder @code{opam}," #. type: itemize -#: guix-git/doc/guix.texi:12330 +#: guix-git/doc/guix.texi:12645 msgid "@code{coq} (equivalent to @code{coq-released}), @code{coq-core-dev}, @code{coq-extra-dev} or @code{grew}." msgstr "@code{coq} (äquivalent zu @code{coq-released}), @code{coq-core-dev}, @code{coq-extra-dev} oder @code{grew}." #. type: item -#: guix-git/doc/guix.texi:12330 +#: guix-git/doc/guix.texi:12645 #, no-wrap msgid "the URL of a repository as expected by the" msgstr "die URL eines Repository, wie sie der Befehl" #. type: itemize -#: guix-git/doc/guix.texi:12334 +#: guix-git/doc/guix.texi:12649 msgid "@code{opam repository add} command (for instance, the URL equivalent of the above @code{opam} name would be @uref{https://opam.ocaml.org})." msgstr "@code{opam repository add} erfordert (zum Beispiel wäre @uref{https://opam.ocaml.org} die URL, die dem Namen @code{opam} oben entspricht)." #. type: item -#: guix-git/doc/guix.texi:12334 +#: guix-git/doc/guix.texi:12649 #, no-wrap msgid "the path to a local copy of a repository (a directory containing a" msgstr "den Pfad zur lokalen Kopie eines Repositorys (ein Verzeichnis mit" #. type: itemize -#: guix-git/doc/guix.texi:12336 +#: guix-git/doc/guix.texi:12651 msgid "@file{packages/} sub-directory)." msgstr "einem Unterverzeichnis @file{packages/})." #. type: table -#: guix-git/doc/guix.texi:12341 +#: guix-git/doc/guix.texi:12656 msgid "Repositories are assumed to be passed to this option by order of preference. The additional repositories will not replace the default @code{opam} repository, which is always kept as a fallback." msgstr "Die an diese Befehlszeilenoption übergebenen Repositorys sind in der Reihenfolge Ihrer Präferenz anzugeben. Die zusätzlich angegebenen Repositorys ersetzen @emph{nicht} das voreingestellte Repository @code{opam}; es bleibt immer als letzte Möglichkeit stehen." #. type: table -#: guix-git/doc/guix.texi:12346 +#: guix-git/doc/guix.texi:12661 msgid "Also, please note that versions are not compared across repositories. The first repository (from left to right) that has at least one version of a given package will prevail over any others, and the version imported will be the latest one found @emph{in this repository only}." msgstr "Beachten Sie ebenso, dass Versionsnummern mehrerer Repositorys @emph{nicht} verglichen werden, sondern einfach das Paket aus dem ersten Repository (von links nach rechts), das mindestens eine Version des angeforderten Pakets enthält, genommen wird und die importierte Version der neuesten @emph{aus nur diesem Repository} entspricht." #. type: cindex -#: guix-git/doc/guix.texi:12349 guix-git/doc/guix.texi:12350 +#: guix-git/doc/guix.texi:12664 guix-git/doc/guix.texi:12665 #, no-wrap msgid "go" msgstr "go" #. type: table -#: guix-git/doc/guix.texi:12353 +#: guix-git/doc/guix.texi:12668 msgid "Import metadata for a Go module using @uref{https://proxy.golang.org, proxy.golang.org}." msgstr "Metadaten für ein Go-Modul von @uref{https://proxy.golang.org, proxy.golang.org} importieren." #. type: example -#: guix-git/doc/guix.texi:12356 +#: guix-git/doc/guix.texi:12671 #, no-wrap msgid "guix import go gopkg.in/yaml.v2\n" msgstr "guix import go gopkg.in/yaml.v2\n" #. type: table -#: guix-git/doc/guix.texi:12360 +#: guix-git/doc/guix.texi:12675 msgid "It is possible to use a package specification with a @code{@@VERSION} suffix to import a specific version." msgstr "Es ist möglich, bei der Paketspezifikation ein Suffix @code{@@VERSION} anzugeben, um diese bestimmte Version zu importieren." #. type: item -#: guix-git/doc/guix.texi:12369 +#: guix-git/doc/guix.texi:12684 #, no-wrap msgid "--pin-versions" msgstr "--pin-versions" #. type: table -#: guix-git/doc/guix.texi:12377 +#: guix-git/doc/guix.texi:12692 msgid "When using this option, the importer preserves the exact versions of the Go modules dependencies instead of using their latest available versions. This can be useful when attempting to import packages that recursively depend on former versions of themselves to build. When using this mode, the symbol of the package is made by appending the version to its name, so that multiple versions of the same package can coexist." msgstr "Wenn Sie diese Option verwenden, behält der Importer genau diese Version der Go-Modul-Abhängigkeiten bei, statt die neuesten verfügbaren Versionen zu benutzen. Das kann hilfreich sein, wenn Sie versuchen, Pakete zu importieren, die für deren Erstellung rekursiv von alten Versionen ihrer selbst abhängen. Wenn Sie diesen Modus nutzen, wird das Symbol für das Paket durch Anhängen der Versionsnummer an seinen Namen gebildet, damit mehrere Versionen desselben Pakets gleichzeitig existieren können." #. type: item -#: guix-git/doc/guix.texi:12379 guix-git/doc/guix.texi:12380 -#: guix-git/doc/guix.texi:12560 +#: guix-git/doc/guix.texi:12694 guix-git/doc/guix.texi:12695 +#: guix-git/doc/guix.texi:12875 #, no-wrap msgid "egg" msgstr "egg" #. type: table -#: guix-git/doc/guix.texi:12387 +#: guix-git/doc/guix.texi:12702 msgid "Import metadata for @uref{https://wiki.call-cc.org/eggs, CHICKEN eggs}. The information is taken from @file{PACKAGE.egg} files found in the @uref{git://code.call-cc.org/eggs-5-all, eggs-5-all} Git repository. However, it does not provide all the information that we need, there is no ``description'' field, and the licenses used are not always precise (BSD is often used instead of BSD-N)." msgstr "Metadaten für @uref{https://wiki.call-cc.org/eggs, CHICKEN-Eggs} importieren. Die Informationen werden aus den @file{PAKET.egg}-Dateien genommen, die im Git-Repository @uref{git://code.call-cc.org/eggs-5-all, eggs-5-all} stehen. Jedoch gibt es dort nicht alle Informationen, die wir brauchen: Ein Feld für die Beschreibung (@code{description}) fehlt und die benutzten Lizenzen sind ungenau (oft wird BSD angegeben statt BSD-N)." #. type: example -#: guix-git/doc/guix.texi:12390 +#: guix-git/doc/guix.texi:12705 #, no-wrap msgid "guix import egg sourcehut\n" msgstr "guix import egg sourcehut\n" #. type: example -#: guix-git/doc/guix.texi:12396 +#: guix-git/doc/guix.texi:12711 #, no-wrap msgid "guix import egg arrays@@1.0\n" msgstr "guix import egg arrays@@1.0\n" #. type: Plain text -#: guix-git/doc/guix.texi:12411 +#: guix-git/doc/guix.texi:12726 msgid "The structure of the @command{guix import} code is modular. It would be useful to have more importers for other package formats, and your help is welcome here (@pxref{Contributing})." msgstr "@command{guix import} verfügt über eine modulare Code-Struktur. Mehr Importer für andere Paketformate zu haben, wäre nützlich, und Ihre Hilfe ist hierbei gerne gesehen (siehe @ref{Contributing})." #. type: section -#: guix-git/doc/guix.texi:12413 +#: guix-git/doc/guix.texi:12728 #, no-wrap msgid "Invoking @command{guix refresh}" msgstr "@command{guix refresh} aufrufen" #. type: command{#1} -#: guix-git/doc/guix.texi:12415 +#: guix-git/doc/guix.texi:12730 #, no-wrap msgid "guix refresh" msgstr "guix refresh" #. type: Plain text -#: guix-git/doc/guix.texi:12423 +#: guix-git/doc/guix.texi:12738 msgid "The primary audience of the @command{guix refresh} command is packagers. As a user, you may be interested in the @option{--with-latest} option, which can bring you package update superpowers built upon @command{guix refresh} (@pxref{Package Transformation Options, @option{--with-latest}}). By default, @command{guix refresh} reports any packages provided by the distribution that are outdated compared to the latest upstream version, like this:" msgstr "Die Zielgruppe des Befehls @command{guix refresh} zum Auffrischen von Paketen sind in erster Linie Paketautoren. Als Nutzer könnten Sie an der Befehlszeilenoption @option{--with-latest} Interesse haben, die auf @command{guix refresh} aufbaut, um Ihnen Superkräfte bei der Paketaktualisierung zu verleihen (siehe @ref{Package Transformation Options, @option{--with-latest}}). Nach Vorgabe werden mit @command{guix refresh} alle Pakete in der Distribution gemeldet, die nicht der neuesten Version des Anbieters entsprechen, indem Sie dies ausführen:" #. type: example -#: guix-git/doc/guix.texi:12428 +#: guix-git/doc/guix.texi:12743 #, no-wrap msgid "" "$ guix refresh\n" @@ -23123,12 +23706,12 @@ msgstr "" "gnu/packages/glib.scm:77:12: glib would be upgraded from 2.34.3 to 2.37.0\n" #. type: Plain text -#: guix-git/doc/guix.texi:12432 +#: guix-git/doc/guix.texi:12747 msgid "Alternatively, one can specify packages to consider, in which case a warning is emitted for packages that lack an updater:" msgstr "Alternativ können die zu betrachtenden Pakete dabei angegeben werden, was zur Ausgabe einer Warnung führt, wenn es für Pakete kein Aktualisierungsprogramm gibt:" #. type: example -#: guix-git/doc/guix.texi:12437 +#: guix-git/doc/guix.texi:12752 #, no-wrap msgid "" "$ guix refresh coreutils guile guile-ssh\n" @@ -23140,17 +23723,17 @@ msgstr "" "gnu/packages/guile.scm:136:12: guile would be upgraded from 2.0.12 to 2.0.13\n" #. type: Plain text -#: guix-git/doc/guix.texi:12446 +#: guix-git/doc/guix.texi:12761 msgid "@command{guix refresh} browses the upstream repository of each package and determines the highest version number of the releases therein. The command knows how to update specific types of packages: GNU packages, ELPA packages, etc.---see the documentation for @option{--type} below. There are many packages, though, for which it lacks a method to determine whether a new upstream release is available. However, the mechanism is extensible, so feel free to get in touch with us to add a new method!" msgstr "@command{guix refresh} durchsucht die Paketsammlung beim Anbieter jedes Pakets und bestimmt, was die höchste Versionsnummer ist, zu der es dort eine Veröffentlichung gibt. Zum Befehl gehören Aktualisierungsprogramme, mit denen bestimmte Typen von Paketen automatisch aktualisiert werden können: GNU-Pakete, ELPA-Pakete usw.@:@tie{}— siehe die Dokumentation von @option{--type} unten. Es gibt jedoch auch viele Pakete, für die noch keine Methode enthalten ist, um das Vorhandensein einer neuen Veröffentlichung zu prüfen. Der Mechanismus ist aber erweiterbar, also können Sie gerne mit uns in Kontakt treten, wenn Sie eine neue Methode hinzufügen möchten!" #. type: table -#: guix-git/doc/guix.texi:12451 +#: guix-git/doc/guix.texi:12766 msgid "Consider the packages specified, and all the packages upon which they depend." msgstr "Hiermit werden die angegebenen Pakete betrachtet und außerdem alle Pakete, von denen sie abhängen." #. type: example -#: guix-git/doc/guix.texi:12459 +#: guix-git/doc/guix.texi:12774 #, no-wrap msgid "" "$ guix refresh --recursive coreutils\n" @@ -23168,12 +23751,12 @@ msgstr "" "…\n" #. type: Plain text -#: guix-git/doc/guix.texi:12467 +#: guix-git/doc/guix.texi:12782 msgid "Sometimes the upstream name differs from the package name used in Guix, and @command{guix refresh} needs a little help. Most updaters honor the @code{upstream-name} property in package definitions, which can be used to that effect:" msgstr "Manchmal unterscheidet sich der vom Anbieter benutzte Name von dem Paketnamen, der in Guix verwendet wird, so dass @command{guix refresh} etwas Unterstützung braucht. Die meisten Aktualisierungsprogramme folgen der Eigenschaft @code{upstream-name} in Paketdefinitionen, die diese Unterstützung bieten kann." #. type: lisp -#: guix-git/doc/guix.texi:12474 +#: guix-git/doc/guix.texi:12789 #, no-wrap msgid "" "(define-public network-manager\n" @@ -23189,325 +23772,325 @@ msgstr "" " (properties '((upstream-name . \"NetworkManager\")))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:12483 +#: guix-git/doc/guix.texi:12798 msgid "When passed @option{--update}, it modifies distribution source files to update the version numbers and source tarball hashes of those package recipes (@pxref{Defining Packages}). This is achieved by downloading each package's latest source tarball and its associated OpenPGP signature, authenticating the downloaded tarball against its signature using @command{gpgv}, and finally computing its hash---note that GnuPG must be installed and in @code{$PATH}; run @code{guix install gnupg} if needed." msgstr "Wenn @option{--update} übergeben wird, werden die Quelldateien der Distribution verändert, so dass für diese Paketrezepte die aktuelle Version und die aktuelle Hash-Prüfsumme des Quellcode-Tarballs eingetragen wird (siehe @ref{Defining Packages}). Dazu werden der neueste Quellcode-Tarball jedes Pakets sowie die jeweils zugehörige OpenPGP-Signatur heruntergeladen; mit Letzterer wird der heruntergeladene Tarball gegen seine Signatur mit @command{gpgv} authentifiziert und schließlich dessen Hash berechnet. Beachten Sie, dass GnuPG dazu installiert sein und in @code{$PATH} vorkommen muss. Falls dies nicht der Fall ist, führen Sie @code{guix install gnupg} aus." #. type: Plain text -#: guix-git/doc/guix.texi:12489 +#: guix-git/doc/guix.texi:12804 msgid "When the public key used to sign the tarball is missing from the user's keyring, an attempt is made to automatically retrieve it from a public key server; when this is successful, the key is added to the user's keyring; otherwise, @command{guix refresh} reports an error." msgstr "Wenn der öffentliche Schlüssel, mit dem der Tarball signiert wurde, im Schlüsselbund des Benutzers fehlt, wird versucht, ihn automatisch von einem Schlüssel-Server zu holen. Wenn das klappt, wird der Schlüssel zum Schlüsselbund des Benutzers hinzugefügt, ansonsten meldet @command{guix refresh} einen Fehler." #. type: Plain text -#: guix-git/doc/guix.texi:12491 +#: guix-git/doc/guix.texi:12806 msgid "The following options are supported:" msgstr "Die folgenden Befehlszeilenoptionen werden unterstützt:" #. type: table -#: guix-git/doc/guix.texi:12499 guix-git/doc/guix.texi:13447 +#: guix-git/doc/guix.texi:12814 guix-git/doc/guix.texi:13804 msgid "This is useful to precisely refer to a package, as in this example:" msgstr "Dies ist nützlich, um genau ein bestimmtes Paket zu referenzieren, wie in diesem Beispiel:" #. type: example -#: guix-git/doc/guix.texi:12502 +#: guix-git/doc/guix.texi:12817 #, no-wrap msgid "guix refresh -l -e '(@@@@ (gnu packages commencement) glibc-final)'\n" msgstr "guix refresh -l -e '(@@@@ (gnu packages commencement) glibc-final)'\n" #. type: table -#: guix-git/doc/guix.texi:12506 +#: guix-git/doc/guix.texi:12821 msgid "This command lists the dependents of the ``final'' libc (essentially all the packages)." msgstr "Dieser Befehls listet auf, was alles von der „endgültigen“ Erstellung von libc abhängt (praktisch alle Pakete)." #. type: item -#: guix-git/doc/guix.texi:12507 +#: guix-git/doc/guix.texi:12822 #, no-wrap msgid "--update" msgstr "--update" #. type: itemx -#: guix-git/doc/guix.texi:12508 +#: guix-git/doc/guix.texi:12823 #, no-wrap msgid "-u" msgstr "-u" #. type: table -#: guix-git/doc/guix.texi:12512 +#: guix-git/doc/guix.texi:12827 msgid "Update distribution source files (package recipes) in place. This is usually run from a checkout of the Guix source tree (@pxref{Running Guix Before It Is Installed}):" msgstr "Die Quelldateien der Distribution (die Paketrezepte) werden direkt „in place“ verändert. Normalerweise führen Sie dies aus einem Checkout des Guix-Quellbaums heraus aus (siehe @ref{Running Guix Before It Is Installed}):" #. type: example -#: guix-git/doc/guix.texi:12515 +#: guix-git/doc/guix.texi:12830 #, no-wrap msgid "$ ./pre-inst-env guix refresh -s non-core -u\n" msgstr "$ ./pre-inst-env guix refresh -s non-core -u\n" #. type: table -#: guix-git/doc/guix.texi:12518 +#: guix-git/doc/guix.texi:12833 msgid "@xref{Defining Packages}, for more information on package definitions." msgstr "Siehe @ref{Defining Packages} für mehr Informationen zu Paketdefinitionen." #. type: item -#: guix-git/doc/guix.texi:12519 +#: guix-git/doc/guix.texi:12834 #, no-wrap msgid "--select=[@var{subset}]" msgstr "--select=[@var{Teilmenge}]" #. type: itemx -#: guix-git/doc/guix.texi:12520 +#: guix-git/doc/guix.texi:12835 #, no-wrap msgid "-s @var{subset}" msgstr "-s @var{Teilmenge}" #. type: table -#: guix-git/doc/guix.texi:12523 +#: guix-git/doc/guix.texi:12838 msgid "Select all the packages in @var{subset}, one of @code{core} or @code{non-core}." msgstr "Wählt alle Pakete aus der @var{Teilmenge} aus, die entweder @code{core} oder @code{non-core} sein muss." #. type: table -#: guix-git/doc/guix.texi:12530 +#: guix-git/doc/guix.texi:12845 msgid "The @code{core} subset refers to all the packages at the core of the distribution---i.e., packages that are used to build ``everything else''. This includes GCC, libc, Binutils, Bash, etc. Usually, changing one of these packages in the distribution entails a rebuild of all the others. Thus, such updates are an inconvenience to users in terms of build time or bandwidth used to achieve the upgrade." msgstr "Die @code{core}-Teilmenge bezieht sich auf alle Pakete, die den Kern der Distribution ausmachen, d.h.@: Pakete, aus denen heraus „alles andere“ erstellt wird. Dazu gehören GCC, libc, Binutils, Bash und so weiter. In der Regel ist die Folge einer Änderung an einem dieser Pakete in der Distribution, dass alle anderen neu erstellt werden müssen. Daher sind solche Änderungen unangenehm für Nutzer, weil sie einiges an Erstellungszeit oder Bandbreite investieren müssen, um die Aktualisierung abzuschließen." #. type: table -#: guix-git/doc/guix.texi:12534 +#: guix-git/doc/guix.texi:12849 msgid "The @code{non-core} subset refers to the remaining packages. It is typically useful in cases where an update of the core packages would be inconvenient." msgstr "Die @code{non-core}-Teilmenge bezieht sich auf die übrigen Pakete. Sie wird typischerweise dann benutzt, wenn eine Aktualisierung der Kernpakete zu viele Umstände machen würde." #. type: table -#: guix-git/doc/guix.texi:12539 +#: guix-git/doc/guix.texi:12854 msgid "Select all the packages from the manifest in @var{file}. This is useful to check if any packages of the user manifest can be updated." msgstr "Wählt alle Pakete im in der @var{Datei} stehenden Manifest aus. Das ist nützlich, um zu überprüfen, welche Pakete aus dem Manifest des Nutzers aktualisiert werden können." #. type: item -#: guix-git/doc/guix.texi:12540 +#: guix-git/doc/guix.texi:12855 #, no-wrap msgid "--type=@var{updater}" msgstr "--type=@var{Aktualisierungsprogramm}" #. type: itemx -#: guix-git/doc/guix.texi:12541 +#: guix-git/doc/guix.texi:12856 #, no-wrap msgid "-t @var{updater}" msgstr "-t @var{Aktualisierungsprogramm}" #. type: table -#: guix-git/doc/guix.texi:12544 +#: guix-git/doc/guix.texi:12859 msgid "Select only packages handled by @var{updater} (may be a comma-separated list of updaters). Currently, @var{updater} may be one of:" msgstr "Nur solche Pakete auswählen, die vom angegebenen @var{Aktualisierungsprogramm} behandelt werden. Es darf auch eine kommagetrennte Liste mehrerer Aktualisierungsprogramme angegeben werden. Zurzeit kann als @var{Aktualisierungsprogramm} eines der folgenden angegeben werden:" #. type: table -#: guix-git/doc/guix.texi:12548 +#: guix-git/doc/guix.texi:12863 msgid "the updater for GNU packages;" msgstr "Aktualisierungsprogramm für GNU-Pakete," #. type: item -#: guix-git/doc/guix.texi:12548 +#: guix-git/doc/guix.texi:12863 #, no-wrap msgid "savannah" msgstr "savannah" #. type: table -#: guix-git/doc/guix.texi:12550 +#: guix-git/doc/guix.texi:12865 msgid "the updater for packages hosted at @uref{https://savannah.gnu.org, Savannah};" msgstr "Aktualisierungsprogramm auf @uref{https://savannah.gnu.org, Savannah} angebotener Pakete," #. type: item -#: guix-git/doc/guix.texi:12550 +#: guix-git/doc/guix.texi:12865 #, no-wrap msgid "sourceforge" msgstr "sourceforge" #. type: table -#: guix-git/doc/guix.texi:12552 +#: guix-git/doc/guix.texi:12867 msgid "the updater for packages hosted at @uref{https://sourceforge.net, SourceForge};" msgstr "Aktualisierungsprogramm auf @uref{https://sourceforge.net, SourceForge} angebotener Pakete," #. type: item -#: guix-git/doc/guix.texi:12552 +#: guix-git/doc/guix.texi:12867 #, no-wrap msgid "gnome" msgstr "gnome" #. type: table -#: guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12869 msgid "the updater for GNOME packages;" msgstr "Aktualisierungsprogramm für GNOME-Pakete," #. type: item -#: guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12869 #, no-wrap msgid "kde" msgstr "kde" #. type: table -#: guix-git/doc/guix.texi:12556 +#: guix-git/doc/guix.texi:12871 msgid "the updater for KDE packages;" msgstr "Aktualisierungsprogramm für KDE-Pakete," #. type: item -#: guix-git/doc/guix.texi:12556 +#: guix-git/doc/guix.texi:12871 #, no-wrap msgid "xorg" msgstr "xorg" #. type: table -#: guix-git/doc/guix.texi:12558 +#: guix-git/doc/guix.texi:12873 msgid "the updater for X.org packages;" msgstr "Aktualisierungsprogramm für X.org-Pakete," #. type: item -#: guix-git/doc/guix.texi:12558 +#: guix-git/doc/guix.texi:12873 #, no-wrap msgid "kernel.org" msgstr "kernel.org" #. type: table -#: guix-git/doc/guix.texi:12560 +#: guix-git/doc/guix.texi:12875 msgid "the updater for packages hosted on kernel.org;" msgstr "Aktualisierungsprogramm auf kernel.org angebotener Pakete," #. type: table -#: guix-git/doc/guix.texi:12562 +#: guix-git/doc/guix.texi:12877 msgid "the updater for @uref{https://wiki.call-cc.org/eggs/, Egg} packages;" msgstr "Aktualisierungsprogramm für @uref{https://wiki.call-cc.org/eggs/, Egg-Pakete}," #. type: table -#: guix-git/doc/guix.texi:12564 +#: guix-git/doc/guix.texi:12879 msgid "the updater for @uref{https://elpa.gnu.org/, ELPA} packages;" msgstr "Aktualisierungsprogramm für @uref{https://elpa.gnu.org/, ELPA-Pakete}," #. type: table -#: guix-git/doc/guix.texi:12566 +#: guix-git/doc/guix.texi:12881 msgid "the updater for @uref{https://cran.r-project.org/, CRAN} packages;" msgstr "Aktualisierungsprogramm für @uref{https://cran.r-project.org/, CRAN-Pakete}," #. type: item -#: guix-git/doc/guix.texi:12566 +#: guix-git/doc/guix.texi:12881 #, no-wrap msgid "bioconductor" msgstr "bioconductor" #. type: table -#: guix-git/doc/guix.texi:12568 +#: guix-git/doc/guix.texi:12883 msgid "the updater for @uref{https://www.bioconductor.org/, Bioconductor} R packages;" msgstr "Aktualisierungsprogramm für R-Pakete vom @uref{https://www.bioconductor.org/, Bioconductor}," #. type: table -#: guix-git/doc/guix.texi:12570 +#: guix-git/doc/guix.texi:12885 msgid "the updater for @uref{https://www.cpan.org/, CPAN} packages;" msgstr "Aktualisierungsprogramm für @uref{https://www.cpan.org/, CPAN-Pakete}," #. type: table -#: guix-git/doc/guix.texi:12572 +#: guix-git/doc/guix.texi:12887 msgid "the updater for @uref{https://pypi.python.org, PyPI} packages." msgstr "Aktualisierungsprogramm für @uref{https://pypi.python.org, PyPI-Pakete}," #. type: table -#: guix-git/doc/guix.texi:12574 +#: guix-git/doc/guix.texi:12889 msgid "the updater for @uref{https://rubygems.org, RubyGems} packages." msgstr "Aktualisierungsprogramm für @uref{https://rubygems.org, RubyGems-Pakete}." #. type: item -#: guix-git/doc/guix.texi:12574 +#: guix-git/doc/guix.texi:12889 #, no-wrap msgid "github" msgstr "github" #. type: table -#: guix-git/doc/guix.texi:12576 +#: guix-git/doc/guix.texi:12891 msgid "the updater for @uref{https://github.com, GitHub} packages." msgstr "Aktualisierungsprogramm für @uref{https://github.com, GitHub-Pakete}." #. type: table -#: guix-git/doc/guix.texi:12578 +#: guix-git/doc/guix.texi:12893 msgid "the updater for @uref{https://hackage.haskell.org, Hackage} packages." msgstr "Aktualisierungsprogramm für @uref{https://hackage.haskell.org, Hackage-Pakete}." #. type: table -#: guix-git/doc/guix.texi:12580 +#: guix-git/doc/guix.texi:12895 msgid "the updater for @uref{https://www.stackage.org, Stackage} packages." msgstr "Aktualisierungsprogramm für @uref{https://www.stackage.org, Stackage-Pakete}." #. type: table -#: guix-git/doc/guix.texi:12582 +#: guix-git/doc/guix.texi:12897 msgid "the updater for @uref{https://crates.io, Crates} packages." msgstr "Aktualisierungsprogramm für @uref{https://crates.io, Crates-Pakete}." #. type: item -#: guix-git/doc/guix.texi:12582 +#: guix-git/doc/guix.texi:12897 #, no-wrap msgid "launchpad" msgstr "launchpad" #. type: table -#: guix-git/doc/guix.texi:12584 +#: guix-git/doc/guix.texi:12899 msgid "the updater for @uref{https://launchpad.net, Launchpad} packages." msgstr "Aktualisierungsprogramm für @uref{https://launchpad.net, Launchpad}." #. type: item -#: guix-git/doc/guix.texi:12584 +#: guix-git/doc/guix.texi:12899 #, no-wrap msgid "generic-html" msgstr "generic-html" #. type: table -#: guix-git/doc/guix.texi:12587 +#: guix-git/doc/guix.texi:12902 msgid "a generic updater that crawls the HTML page where the source tarball of the package is hosted, when applicable." msgstr "allgemeines Aktualisierungsprogramm, das mit einem Webcrawler die HTML-Seite, auf der der Quell-Tarball des Pakets angeboten wird, falls vorhanden, durchsucht." #. type: item -#: guix-git/doc/guix.texi:12588 +#: guix-git/doc/guix.texi:12903 #, no-wrap msgid "generic-git" msgstr "generic-git" #. type: table -#: guix-git/doc/guix.texi:12593 +#: guix-git/doc/guix.texi:12908 msgid "a generic updater for packages hosted on Git repositories. It tries to be smart about parsing Git tag names, but if it is not able to parse the tag name and compare tags correctly, users can define the following properties for a package." msgstr "allgemeines Aktualisierungsprogramm, das auf in Git-Repositorys angebotene Pakete anwendbar ist. Es wird versucht, Versionen anhand der Namen von Git-Tags zu erkennen, aber wenn Tag-Namen nicht korrekt zerteilt und verglichen werden, können Anwender die folgenden Eigenschaften im Paket festlegen." #. type: item -#: guix-git/doc/guix.texi:12595 +#: guix-git/doc/guix.texi:12910 #, no-wrap msgid "@code{release-tag-prefix}: a regular expression for matching a prefix of" msgstr "@code{release-tag-prefix}: einen regulären Ausdruck, der zum Präfix des" #. type: itemize -#: guix-git/doc/guix.texi:12597 guix-git/doc/guix.texi:12600 +#: guix-git/doc/guix.texi:12912 guix-git/doc/guix.texi:12915 msgid "the tag name." msgstr "Tag-Namens passt." #. type: item -#: guix-git/doc/guix.texi:12598 +#: guix-git/doc/guix.texi:12913 #, no-wrap msgid "@code{release-tag-suffix}: a regular expression for matching a suffix of" msgstr "@code{release-tag-suffix}: einen regulären Ausdruck, der zum Suffix des" #. type: item -#: guix-git/doc/guix.texi:12601 +#: guix-git/doc/guix.texi:12916 #, no-wrap msgid "@code{release-tag-version-delimiter}: a string used as the delimiter in" msgstr "@code{release-tag-version-delimiter}: eine Zeichenkette, die im" #. type: itemize -#: guix-git/doc/guix.texi:12603 +#: guix-git/doc/guix.texi:12918 msgid "the tag name for separating the numbers of the version." msgstr "Tag-Namen die Zahlen trennt, aus denen sich die Version zusammensetzt." #. type: item -#: guix-git/doc/guix.texi:12604 +#: guix-git/doc/guix.texi:12919 #, no-wrap msgid "@code{accept-pre-releases}: by default, the updater will ignore" msgstr "@code{accept-pre-releases}: ob Vorabveröffentlichungen berücksichtigt" #. type: itemize -#: guix-git/doc/guix.texi:12607 +#: guix-git/doc/guix.texi:12922 msgid "pre-releases; to make it also look for pre-releases, set the this property to @code{#t}." msgstr "werden sollen. Vorgegeben ist, sie zu ignorieren. Setzen Sie dies auf @code{#t}, um sie hinzuzunehmen." #. type: lisp -#: guix-git/doc/guix.texi:12618 +#: guix-git/doc/guix.texi:12933 #, no-wrap msgid "" "(package\n" @@ -23527,12 +24110,12 @@ msgstr "" " (release-tag-version-delimiter . \":\"))))\n" #. type: table -#: guix-git/doc/guix.texi:12625 +#: guix-git/doc/guix.texi:12940 msgid "For instance, the following command only checks for updates of Emacs packages hosted at @code{elpa.gnu.org} and for updates of CRAN packages:" msgstr "Zum Beispiel prüft folgender Befehl nur auf mögliche Aktualisierungen von auf @code{elpa.gnu.org} angebotenen Emacs-Paketen und von CRAN-Paketen:" #. type: example -#: guix-git/doc/guix.texi:12630 +#: guix-git/doc/guix.texi:12945 #, no-wrap msgid "" "$ guix refresh --type=elpa,cran\n" @@ -23544,45 +24127,45 @@ msgstr "" "gnu/packages/emacs.scm:856:13: emacs-auctex would be upgraded from 11.88.6 to 11.88.9\n" #. type: item -#: guix-git/doc/guix.texi:12632 +#: guix-git/doc/guix.texi:12947 #, no-wrap msgid "--list-updaters" msgstr "--list-updaters" #. type: itemx -#: guix-git/doc/guix.texi:12633 +#: guix-git/doc/guix.texi:12948 #, no-wrap msgid "-L" msgstr "-L" #. type: table -#: guix-git/doc/guix.texi:12635 +#: guix-git/doc/guix.texi:12950 msgid "List available updaters and exit (see @option{--type} above)." msgstr "Eine Liste verfügbarer Aktualisierungsprogramme anzeigen und terminieren (siehe @option{--type} oben)." #. type: table -#: guix-git/doc/guix.texi:12638 +#: guix-git/doc/guix.texi:12953 msgid "For each updater, display the fraction of packages it covers; at the end, display the fraction of packages covered by all these updaters." msgstr "Für jedes Aktualisierungsprogramm den Anteil der davon betroffenen Pakete anzeigen; zum Schluss wird der Gesamtanteil von irgendeinem Aktualisierungsprogramm betroffener Pakete angezeigt." #. type: Plain text -#: guix-git/doc/guix.texi:12642 +#: guix-git/doc/guix.texi:12957 msgid "In addition, @command{guix refresh} can be passed one or more package names, as in this example:" msgstr "An @command{guix refresh} können auch ein oder mehrere Paketnamen übergeben werden wie in diesem Beispiel:" #. type: example -#: guix-git/doc/guix.texi:12645 +#: guix-git/doc/guix.texi:12960 #, no-wrap msgid "$ ./pre-inst-env guix refresh -u emacs idutils gcc@@4.8\n" msgstr "$ ./pre-inst-env guix refresh -u emacs idutils gcc@@4.8\n" #. type: Plain text -#: guix-git/doc/guix.texi:12652 +#: guix-git/doc/guix.texi:12967 msgid "The command above specifically updates the @code{emacs} and @code{idutils} packages. The @option{--select} option would have no effect in this case. You might also want to update definitions that correspond to the packages installed in your profile:" msgstr "Der Befehl oben aktualisiert speziell das @code{emacs}- und das @code{idutils}-Paket. Eine Befehlszeilenoption @option{--select} hätte dann keine Wirkung. Vielleicht möchten Sie auch die Definitionen zu den in Ihr Profil installierten Paketen aktualisieren:" #. type: example -#: guix-git/doc/guix.texi:12656 +#: guix-git/doc/guix.texi:12971 #, no-wrap msgid "" "$ ./pre-inst-env guix refresh -u \\\n" @@ -23592,39 +24175,39 @@ msgstr "" " $(guix package --list-installed | cut -f1)\n" #. type: Plain text -#: guix-git/doc/guix.texi:12662 +#: guix-git/doc/guix.texi:12977 msgid "When considering whether to upgrade a package, it is sometimes convenient to know which packages would be affected by the upgrade and should be checked for compatibility. For this the following option may be used when passing @command{guix refresh} one or more package names:" msgstr "Wenn Sie sich fragen, ob ein Paket aktualisiert werden sollte oder nicht, kann es helfen, sich anzuschauen, welche Pakete von der Aktualisierung betroffen wären und auf Kompatibilität hin geprüft werden sollten. Dazu kann die folgende Befehlszeilenoption zusammen mit einem oder mehreren Paketnamen an @command{guix refresh} übergeben werden:" #. type: item -#: guix-git/doc/guix.texi:12665 +#: guix-git/doc/guix.texi:12980 #, no-wrap msgid "--list-dependent" msgstr "--list-dependent" #. type: itemx -#: guix-git/doc/guix.texi:12666 guix-git/doc/guix.texi:13028 +#: guix-git/doc/guix.texi:12981 guix-git/doc/guix.texi:13385 #, no-wrap msgid "-l" msgstr "-l" #. type: table -#: guix-git/doc/guix.texi:12669 +#: guix-git/doc/guix.texi:12984 msgid "List top-level dependent packages that would need to be rebuilt as a result of upgrading one or more packages." msgstr "Auflisten, welche abhängigen Pakete auf oberster Ebene neu erstellt werden müssten, wenn eines oder mehrere Pakete aktualisiert würden." #. type: table -#: guix-git/doc/guix.texi:12673 +#: guix-git/doc/guix.texi:12988 msgid "@xref{Invoking guix graph, the @code{reverse-package} type of @command{guix graph}}, for information on how to visualize the list of dependents of a package." msgstr "Siehe @ref{Invoking guix graph, den @code{reverse-package}-Typ von @command{guix graph}} für Informationen dazu, wie Sie die Liste der Abhängigen eines Pakets visualisieren können." #. type: Plain text -#: guix-git/doc/guix.texi:12679 +#: guix-git/doc/guix.texi:12994 msgid "Be aware that the @option{--list-dependent} option only @emph{approximates} the rebuilds that would be required as a result of an upgrade. More rebuilds might be required under some circumstances." msgstr "Bedenken Sie, dass die Befehlszeilenoption @option{--list-dependent} das Ausmaß der nach einer Aktualisierungen benötigten Neuerstellungen nur @emph{annähert}. Es könnten auch unter Umständen mehr Neuerstellungen anfallen." #. type: example -#: guix-git/doc/guix.texi:12684 +#: guix-git/doc/guix.texi:12999 #, no-wrap msgid "" "$ guix refresh --list-dependent flex\n" @@ -23636,23 +24219,23 @@ msgstr "" "hop@@2.4.0 emacs-geiser@@0.13 notmuch@@0.18 mu@@0.9.9.5 cflow@@1.4 idutils@@4.6 …\n" #. type: Plain text -#: guix-git/doc/guix.texi:12688 +#: guix-git/doc/guix.texi:13003 msgid "The command above lists a set of packages that could be built to check for compatibility with an upgraded @code{flex} package." msgstr "Der oben stehende Befehl gibt einen Satz von Paketen aus, die Sie erstellen wollen könnten, um die Kompatibilität einer Aktualisierung des @code{flex}-Pakets beurteilen zu können." #. type: item -#: guix-git/doc/guix.texi:12691 +#: guix-git/doc/guix.texi:13006 #, no-wrap msgid "--list-transitive" msgstr "--list-transitive" #. type: table -#: guix-git/doc/guix.texi:12693 +#: guix-git/doc/guix.texi:13008 msgid "List all the packages which one or more packages depend upon." msgstr "Die Pakete auflisten, von denen eines oder mehrere Pakete abhängen." #. type: example -#: guix-git/doc/guix.texi:12698 +#: guix-git/doc/guix.texi:13013 #, no-wrap msgid "" "$ guix refresh --list-transitive flex\n" @@ -23664,60 +24247,60 @@ msgstr "" "bison@@3.0.5 indent@@2.2.10 tar@@1.30 gzip@@1.9 bzip2@@1.0.6 xz@@5.2.4 file@@5.33 …\n" #. type: Plain text -#: guix-git/doc/guix.texi:12704 +#: guix-git/doc/guix.texi:13019 msgid "The command above lists a set of packages which, when changed, would cause @code{flex} to be rebuilt." msgstr "Der oben stehende Befehl gibt einen Satz von Paketen aus, die, wenn sie geändert würden, eine Neuerstellung des @code{flex}-Pakets auslösen würden." #. type: Plain text -#: guix-git/doc/guix.texi:12706 +#: guix-git/doc/guix.texi:13021 msgid "The following options can be used to customize GnuPG operation:" msgstr "Mit den folgenden Befehlszeilenoptionen können Sie das Verhalten von GnuPG anpassen:" #. type: item -#: guix-git/doc/guix.texi:12709 +#: guix-git/doc/guix.texi:13024 #, no-wrap msgid "--gpg=@var{command}" msgstr "--gpg=@var{Befehl}" #. type: table -#: guix-git/doc/guix.texi:12712 +#: guix-git/doc/guix.texi:13027 msgid "Use @var{command} as the GnuPG 2.x command. @var{command} is searched for in @code{$PATH}." msgstr "Den @var{Befehl} als GnuPG-2.x-Befehl einsetzen. Der @var{Befehl} wird im @code{$PATH} gesucht." #. type: item -#: guix-git/doc/guix.texi:12713 +#: guix-git/doc/guix.texi:13028 #, no-wrap msgid "--keyring=@var{file}" msgstr "--keyring=@var{Datei}" #. type: table -#: guix-git/doc/guix.texi:12719 +#: guix-git/doc/guix.texi:13034 msgid "Use @var{file} as the keyring for upstream keys. @var{file} must be in the @dfn{keybox format}. Keybox files usually have a name ending in @file{.kbx} and the GNU@tie{}Privacy Guard (GPG) can manipulate these files (@pxref{kbxutil, @command{kbxutil},, gnupg, Using the GNU Privacy Guard}, for information on a tool to manipulate keybox files)." msgstr "Die @var{Datei} als Schlüsselbund mit Anbieterschlüsseln verwenden. Die @var{Datei} muss im @dfn{Keybox-Format} vorliegen. Keybox-Dateien haben normalerweise einen Namen, der auf @file{.kbx} endet. Sie können mit Hilfe von GNU@tie{}Privacy Guard (GPG) bearbeitet werden (siehe @ref{kbxutil, @command{kbxutil},, gnupg, Using the GNU Privacy Guard} für Informationen über ein Werkzeug zum Bearbeiten von Keybox-Dateien)." #. type: table -#: guix-git/doc/guix.texi:12725 +#: guix-git/doc/guix.texi:13040 msgid "When this option is omitted, @command{guix refresh} uses @file{~/.config/guix/upstream/trustedkeys.kbx} as the keyring for upstream signing keys. OpenPGP signatures are checked against keys from this keyring; missing keys are downloaded to this keyring as well (see @option{--key-download} below)." msgstr "Wenn diese Befehlszeilenoption nicht angegeben wird, benutzt @command{guix refresh} die Keybox-Datei @file{~/.config/guix/upstream/trustedkeys.kbx} als Schlüsselbund für Signierschlüssel von Anbietern. OpenPGP-Signaturen werden mit Schlüsseln aus diesem Schlüsselbund überprüft; fehlende Schlüssel werden auch in diesen Schlüsselbund heruntergeladen (siehe @option{--key-download} unten)." #. type: table -#: guix-git/doc/guix.texi:12728 +#: guix-git/doc/guix.texi:13043 msgid "You can export keys from your default GPG keyring into a keybox file using commands like this one:" msgstr "Sie können Schlüssel aus Ihrem normalerweise benutzten GPG-Schlüsselbund in eine Keybox-Datei exportieren, indem Sie Befehle wie diesen benutzen:" #. type: example -#: guix-git/doc/guix.texi:12731 +#: guix-git/doc/guix.texi:13046 #, no-wrap msgid "gpg --export rms@@gnu.org | kbxutil --import-openpgp >> mykeyring.kbx\n" msgstr "gpg --export rms@@gnu.org | kbxutil --import-openpgp >> mykeyring.kbx\n" #. type: table -#: guix-git/doc/guix.texi:12734 +#: guix-git/doc/guix.texi:13049 msgid "Likewise, you can fetch keys to a specific keybox file like this:" msgstr "Ebenso können Sie wie folgt Schlüssel in eine bestimmte Keybox-Datei herunterladen:" #. type: example -#: guix-git/doc/guix.texi:12738 +#: guix-git/doc/guix.texi:13053 #, no-wrap msgid "" "gpg --no-default-keyring --keyring mykeyring.kbx \\\n" @@ -23727,83 +24310,93 @@ msgstr "" " --recv-keys @value{OPENPGP-SIGNING-KEY-ID}\n" #. type: table -#: guix-git/doc/guix.texi:12742 +#: guix-git/doc/guix.texi:13057 msgid "@xref{GPG Configuration Options, @option{--keyring},, gnupg, Using the GNU Privacy Guard}, for more information on GPG's @option{--keyring} option." msgstr "Siehe @ref{GPG Configuration Options, @option{--keyring},, gnupg, Using the GNU Privacy Guard} für mehr Informationen zur Befehlszeilenoption @option{--keyring} von GPG." #. type: table -#: guix-git/doc/guix.texi:12746 +#: guix-git/doc/guix.texi:13061 msgid "Handle missing OpenPGP keys according to @var{policy}, which may be one of:" msgstr "Fehlende OpenPGP-Schlüssel gemäß dieser @var{Richtlinie} behandeln, für die eine der Folgenden angegeben werden kann:" #. type: item -#: guix-git/doc/guix.texi:12748 guix-git/doc/guix.texi:12871 -#: guix-git/doc/guix.texi:22249 +#: guix-git/doc/guix.texi:13063 guix-git/doc/guix.texi:13228 +#: guix-git/doc/guix.texi:22611 #, no-wrap msgid "always" msgstr "always" #. type: table -#: guix-git/doc/guix.texi:12751 +#: guix-git/doc/guix.texi:13066 msgid "Always download missing OpenPGP keys from the key server, and add them to the user's GnuPG keyring." msgstr "Immer fehlende OpenPGP-Schlüssel herunterladen und zum GnuPG-Schlüsselbund des Nutzers hinzufügen." #. type: item -#: guix-git/doc/guix.texi:12752 guix-git/doc/guix.texi:22251 +#: guix-git/doc/guix.texi:13067 guix-git/doc/guix.texi:22613 #, no-wrap msgid "never" msgstr "never" #. type: table -#: guix-git/doc/guix.texi:12754 +#: guix-git/doc/guix.texi:13069 msgid "Never try to download missing OpenPGP keys. Instead just bail out." msgstr "Niemals fehlende OpenPGP-Schlüssel herunterladen, sondern einfach abbrechen." #. type: item -#: guix-git/doc/guix.texi:12755 +#: guix-git/doc/guix.texi:13070 #, no-wrap msgid "interactive" msgstr "interactive" #. type: table -#: guix-git/doc/guix.texi:12758 +#: guix-git/doc/guix.texi:13073 msgid "When a package signed with an unknown OpenPGP key is encountered, ask the user whether to download it or not. This is the default behavior." msgstr "Ist ein Paket mit einem unbekannten OpenPGP-Schlüssel signiert, wird der Nutzer gefragt, ob der Schlüssel heruntergeladen werden soll oder nicht. Dies entspricht dem vorgegebenen Verhalten." #. type: item -#: guix-git/doc/guix.texi:12760 +#: guix-git/doc/guix.texi:13075 #, no-wrap msgid "--key-server=@var{host}" msgstr "--key-server=@var{Host}" #. type: table -#: guix-git/doc/guix.texi:12762 +#: guix-git/doc/guix.texi:13077 msgid "Use @var{host} as the OpenPGP key server when importing a public key." msgstr "Den mit @var{Host} bezeichneten Rechner als Schlüsselserver für OpenPGP benutzen, wenn ein öffentlicher Schlüssel importiert wird." #. type: Plain text -#: guix-git/doc/guix.texi:12782 +#: guix-git/doc/guix.texi:13097 msgid "The @code{github} updater uses the @uref{https://developer.github.com/v3/, GitHub API} to query for new releases. When used repeatedly e.g.@: when refreshing all packages, GitHub will eventually refuse to answer any further API requests. By default 60 API requests per hour are allowed, and a full refresh on all GitHub packages in Guix requires more than this. Authentication with GitHub through the use of an API token alleviates these limits. To use an API token, set the environment variable @env{GUIX_GITHUB_TOKEN} to a token procured from @uref{https://github.com/settings/tokens} or otherwise." msgstr "Das @code{github}-Aktualisierungsprogramm benutzt die @uref{https://developer.github.com/v3/, GitHub-Programmierschnittstelle} (die „Github-API“), um Informationen über neue Veröffentlichungen einzuholen. Geschieht dies oft, z.B.@: beim Auffrischen aller Pakete, so wird GitHub irgendwann aufhören, weitere API-Anfragen zu beantworten. Normalerweise sind 60 API-Anfragen pro Stunde erlaubt, für eine vollständige Auffrischung aller GitHub-Pakete in Guix werden aber mehr benötigt. Wenn Sie sich bei GitHub mit Ihrem eigenen API-Token authentisieren, gelten weniger einschränkende Grenzwerte. Um einen API-Token zu benutzen, setzen Sie die Umgebungsvariable @env{GUIX_GITHUB_TOKEN} auf einen von @uref{https://github.com/settings/tokens} oder anderweitig bezogenen API-Token." #. type: section -#: guix-git/doc/guix.texi:12785 +#: guix-git/doc/guix.texi:13100 #, no-wrap msgid "Invoking @command{guix style}" msgstr "@command{guix style} aufrufen" #. type: Plain text -#: guix-git/doc/guix.texi:12791 -msgid "The @command{guix style} command helps packagers style their package definitions according to the latest fashionable trends. The command currently focuses on one aspect: the style of package inputs. It may eventually be extended to handle other stylistic matters." -msgstr "Mit dem Befehl @command{guix style} können Paketentwickler Ihre Paketdefinitionen entsprechend der aktuell modischen Trends umgestalten. Im Moment liegt der Fokus des Befehls auf einem Aspekt, nämlich dem Stil der Paketeingaben. Später wird der Befehl vielleicht um andere stilistische Fragen erweitert." +#: guix-git/doc/guix.texi:13105 +msgid "The @command{guix style} command helps packagers style their package definitions according to the latest fashionable trends. The command currently provides the following styling rules:" +msgstr "Mit dem Befehl @command{guix style} können Paketentwickler Ihre Paketdefinitionen entsprechend der aktuell modischen Trends umgestalten. Im Moment werden Regeln für die folgenden Stilfragen angeboten:" + +#. type: itemize +#: guix-git/doc/guix.texi:13110 +msgid "formatting package definitions according to the project's conventions (@pxref{Formatting Code});" +msgstr "Den Stil der Paketeingaben nach den Projektkonventionen auszurichten (siehe @ref{Formatting Code}), sowie" + +#. type: itemize +#: guix-git/doc/guix.texi:13113 +msgid "rewriting package inputs to the ``new style'', as explained below." +msgstr "Paketeingaben in den „neuen Stil“ umzuschreiben, wie unten erklärt wird." #. type: Plain text -#: guix-git/doc/guix.texi:12796 +#: guix-git/doc/guix.texi:13119 msgid "The way package inputs are written is going through a transition (@pxref{package Reference}, for more on package inputs). Until version 1.3.0, package inputs were written using the ``old style'', where each input was given an explicit label, most of the time the package name:" msgstr "Zurzeit läuft eine Umstellung der Notation, wie Paketeingaben aufgeschrieben werden (siehe @ref{package Reference}, für weitere Informationen zu Paketeingaben). Bis Version 1.3.0 wurden Paketeingaben im „alten Stil“ verfasst, d.h.@: man schrieb zu jeder Eingabe ausdrücklich eine Bezeichnung dazu, in der Regel der Paketname:" #. type: lisp -#: guix-git/doc/guix.texi:12803 +#: guix-git/doc/guix.texi:13126 #, no-wrap msgid "" "(package\n" @@ -23819,12 +24412,12 @@ msgstr "" " (\"libffi\" ,libffi))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:12807 +#: guix-git/doc/guix.texi:13130 msgid "Today, the old style is deprecated and the preferred style looks like this:" msgstr "Der alte Stil gilt heute als veraltet. Der bevorzugte Stil sieht so aus:" #. type: lisp -#: guix-git/doc/guix.texi:12813 +#: guix-git/doc/guix.texi:13136 #, no-wrap msgid "" "(package\n" @@ -23838,267 +24431,328 @@ msgstr "" " (inputs (list libunistring libffi)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:12818 +#: guix-git/doc/guix.texi:13141 msgid "Likewise, uses of @code{alist-delete} and friends to manipulate inputs is now deprecated in favor of @code{modify-inputs} (@pxref{Defining Package Variants}, for more info on @code{modify-inputs})." msgstr "Ebenso gilt als veraltet, Eingaben mit @code{alist-delete} und seinen Freunden zu verarbeiten; bevorzugt wird @code{modify-inputs} (siehe @ref{Defining Package Variants} für weitere Informationen zu @code{modify-inputs})." #. type: Plain text -#: guix-git/doc/guix.texi:12823 -msgid "In the vast majority of cases, this is a purely mechanical change on the surface syntax that does not even incur a package rebuild. Running @command{guix style} can do that for you, whether you're working on packages in Guix proper or in an external channel." -msgstr "In den allermeisten Fällen ist das eine rein mechanische Änderung der oberflächlichen Syntax und die Pakete müssen dazu nicht einmal neu erstellt werden. Diese kann @command{guix style} für Sie übernehmen, egal ob Sie an Paketen innerhalb des eigentlichen Guix oder in einem externen Kanal arbeiten." +#: guix-git/doc/guix.texi:13146 +msgid "In the vast majority of cases, this is a purely mechanical change on the surface syntax that does not even incur a package rebuild. Running @command{guix style -S inputs} can do that for you, whether you're working on packages in Guix proper or in an external channel." +msgstr "In den allermeisten Fällen ist das eine rein mechanische Änderung der oberflächlichen Syntax und die Pakete müssen dazu nicht einmal neu erstellt werden. Diese kann @command{guix style -S inputs} für Sie übernehmen, egal ob Sie an Paketen innerhalb des eigentlichen Guix oder in einem externen Kanal arbeiten." #. type: example -#: guix-git/doc/guix.texi:12828 +#: guix-git/doc/guix.texi:13151 #, no-wrap msgid "guix style [@var{options}] @var{package}@dots{}\n" msgstr "guix style [@var{Optionen}] @var{Paket}…\n" #. type: Plain text -#: guix-git/doc/guix.texi:12834 -msgid "This causes @command{guix style} to analyze and rewrite the definition of @var{package}@dots{}. It does so in a conservative way: preserving comments and bailing out if it cannot make sense of the code that appears in an inputs field. The available options are listed below." -msgstr "Damit wird sich @command{guix style} der Analyse und Umschreibung der Definition von @var{Paket}… annehmen. Das geschieht auf konservative Art: Kommentare bleiben erhalten und wenn es den Code in einem @code{inputs}-Feld @emph{nicht} erfassen kann, gibt @command{guix style} auf. Folgende Befehlszeilenoptionen sind verfügbar." +#: guix-git/doc/guix.texi:13158 +msgid "This causes @command{guix style} to analyze and rewrite the definition of @var{package}@dots{} or, when @var{package} is omitted, of @emph{all} the packages. The @option{--styling} or @option{-S} option allows you to select the style rule, the default rule being @code{format}---see below." +msgstr "Damit wird sich @command{guix style} der Analyse und Umschreibung der Definition von @var{Paket}… annehmen. Wenn Sie kein @var{Paket} angeben, nimmt es sich @emph{alle} Pakete vor. Mit der Befehlszeilenoption @option{--styling} oder @option{-S} können Sie auswählen, nach welcher Stilregel @command{guix style} vorgeht. Vorgegeben ist die @code{format}-Regel, siehe unten." + +#. type: Plain text +#: guix-git/doc/guix.texi:13160 guix-git/doc/guix.texi:14479 +msgid "The available options are listed below." +msgstr "Die verfügbaren Befehlszeilenoptionen folgen." #. type: table -#: guix-git/doc/guix.texi:12839 +#: guix-git/doc/guix.texi:13165 msgid "Show source file locations that would be edited but do not modify them." msgstr "Anzeigen, welche Stellen im Quellcode verändert würden, sie jedoch nicht verändern." +#. type: item +#: guix-git/doc/guix.texi:13166 +#, no-wrap +msgid "--styling=@var{rule}" +msgstr "--styling=@var{Regel}" + +#. type: itemx +#: guix-git/doc/guix.texi:13167 +#, no-wrap +msgid "-S @var{rule}" +msgstr "-S @var{Regel}" + +#. type: table +#: guix-git/doc/guix.texi:13169 +msgid "Apply @var{rule}, one of the following styling rules:" +msgstr "Die @var{Regel} anwenden, die eine der folgenden Stilregeln sein muss:" + +#. type: item +#: guix-git/doc/guix.texi:13171 +#, no-wrap +msgid "format" +msgstr "format" + +#. type: table +#: guix-git/doc/guix.texi:13176 +msgid "Format the given package definition(s)---this is the default styling rule. For example, a packager running Guix on a checkout (@pxref{Running Guix Before It Is Installed}) might want to reformat the definition of the Coreutils package like so:" +msgstr "Die angegebene Paketdefinition bzw.@: mehrere Paketdefinitionen formatieren. Das ist die voreingestellte Stilregel. Wenn zum Beispiel eine Paketautorin, die Guix aus einem Checkout heraus ausführt (siehe @ref{Running Guix Before It Is Installed}), die Definition des Coreutils-Pakets formatieren wollte, würde sie das machen:" + +#. type: example +#: guix-git/doc/guix.texi:13179 +#, no-wrap +msgid "./pre-inst-env guix style coreutils\n" +msgstr "./pre-inst-env guix style coreutils\n" + +#. type: item +#: guix-git/doc/guix.texi:13181 +#, no-wrap +msgid "inputs" +msgstr "inputs" + #. type: table -#: guix-git/doc/guix.texi:12848 +#: guix-git/doc/guix.texi:13185 +msgid "Rewrite package inputs to the ``new style'', as described above. This is how you would rewrite inputs of package @code{whatnot} in your own channel:" +msgstr "Paketeingaben in den oben beschriebenen „neuen Stil“ umschreiben. Hiermit würden Sie die Eingaben des Pakets @code{oderso} in Ihrem eigenen Kanal umschreiben:" + +#. type: example +#: guix-git/doc/guix.texi:13188 +#, no-wrap +msgid "guix style -L ~/my/channel -S inputs whatnot\n" +msgstr "guix style -L ~/eigener/kanal -S inputs oderso\n" + +#. type: table +#: guix-git/doc/guix.texi:13194 +msgid "Rewriting is done in a conservative way: preserving comments and bailing out if it cannot make sense of the code that appears in an inputs field. The @option{--input-simplification} option described below provides fine-grain control over when inputs should be simplified." +msgstr "Die Umschreibung geschieht auf konservative Art: Kommentare bleiben erhalten und wenn es den Code in einem @code{inputs}-Feld @emph{nicht} erfassen kann, gibt @command{guix style} auf. Die Befehlszeilenoption @option{--input-simplification} ermöglicht, genau zu bestimmen, unter welchen Voraussetzungen Eingaben vereinfacht werden sollen." + +#. type: table +#: guix-git/doc/guix.texi:13204 msgid "Style the package @var{expr} evaluates to." msgstr "Das Paket umgestalten, zu dem der @var{Ausdruck} ausgewertet wird." #. type: example -#: guix-git/doc/guix.texi:12853 +#: guix-git/doc/guix.texi:13209 #, no-wrap msgid "guix style -e '(@@ (gnu packages gcc) gcc-5)'\n" msgstr "guix style -e '(@@ (gnu packages gcc) gcc-5)'\n" #. type: table -#: guix-git/doc/guix.texi:12856 +#: guix-git/doc/guix.texi:13212 msgid "styles the @code{gcc-5} package definition." msgstr "ändert den Stil der Paketdefinition für @code{gcc-5}." #. type: item -#: guix-git/doc/guix.texi:12857 +#: guix-git/doc/guix.texi:13213 #, no-wrap msgid "--input-simplification=@var{policy}" msgstr "--input-simplification=@var{Richtlinie}" #. type: table -#: guix-git/doc/guix.texi:12861 -msgid "Specify the package input simplification policy for cases where an input label does not match the corresponding package name. @var{policy} may be one of the following:" -msgstr "Hiermit geben Sie die Richtlinie zur Vereinfachung der Paketeingaben für die Fälle an, wenn eine Eingabenbezeichnung nicht zum damit assoziierten Paketnamen passt. Die @var{Richtlinie} kann eine der folgenden sein:" +#: guix-git/doc/guix.texi:13218 +msgid "When using the @code{inputs} styling rule, with @samp{-S inputs}, this option specifies the package input simplification policy for cases where an input label does not match the corresponding package name. @var{policy} may be one of the following:" +msgstr "Wenn Sie die Stilregel @code{inputs} verwenden, als @samp{-S inputs}, geben Sie hiermit die Richtlinie zur Vereinfachung der Paketeingaben für die Fälle an, wenn eine Eingabenbezeichnung nicht zum damit assoziierten Paketnamen passt. Die @var{Richtlinie} kann eine der folgenden sein:" #. type: item -#: guix-git/doc/guix.texi:12863 +#: guix-git/doc/guix.texi:13220 #, no-wrap msgid "silent" msgstr "silent" #. type: table -#: guix-git/doc/guix.texi:12866 +#: guix-git/doc/guix.texi:13223 msgid "Simplify inputs only when the change is ``silent'', meaning that the package does not need to be rebuilt (its derivation is unchanged)." msgstr "Die Eingaben nur vereinfachen, wenn die Änderung unmerklich sind, in dem Sinne, dass das Paket nicht aufs Neue erstellt werden muss (seine Ableitung also dieselbe bleibt)." #. type: item -#: guix-git/doc/guix.texi:12867 +#: guix-git/doc/guix.texi:13224 #, no-wrap msgid "safe" msgstr "safe" #. type: table -#: guix-git/doc/guix.texi:12870 +#: guix-git/doc/guix.texi:13227 msgid "Simplify inputs only when that is ``safe'' to do: the package might need to be rebuilt, but the change is known to have no observable effect." msgstr "Die Eingaben nur vereinfachen, wenn dies keine Probleme mit sich bringt. Hier darf das Paket neu erstellt werden müssen, aber die Änderung daran hat keine beobachtbaren Auswirkungen." #. type: table -#: guix-git/doc/guix.texi:12874 +#: guix-git/doc/guix.texi:13231 msgid "Simplify inputs even when input labels do not match package names, and even if that might have an observable effect." msgstr "Die Eingaben selbst dann vereinfachen, wenn die Eingabebezeichnungen @emph{nicht} zu den Paketnamen passen, obwohl das Auswirkungen haben könnte." #. type: table -#: guix-git/doc/guix.texi:12878 +#: guix-git/doc/guix.texi:13235 msgid "The default is @code{silent}, meaning that input simplifications do not trigger any package rebuild." msgstr "Die Vorgabe ist @code{silent}, also nur unmerkliche Vereinfachungen, die keine Neuerstellung auslösen." #. type: section -#: guix-git/doc/guix.texi:12881 +#: guix-git/doc/guix.texi:13238 #, no-wrap msgid "Invoking @command{guix lint}" msgstr "@command{guix lint} aufrufen" #. type: command{#1} -#: guix-git/doc/guix.texi:12883 +#: guix-git/doc/guix.texi:13240 #, no-wrap msgid "guix lint" msgstr "guix lint" #. type: cindex -#: guix-git/doc/guix.texi:12884 +#: guix-git/doc/guix.texi:13241 #, no-wrap msgid "package, checking for errors" msgstr "Pakete, auf Fehler prüfen" #. type: Plain text -#: guix-git/doc/guix.texi:12890 +#: guix-git/doc/guix.texi:13247 msgid "The @command{guix lint} command is meant to help package developers avoid common errors and use a consistent style. It runs a number of checks on a given set of packages in order to find common mistakes in their definitions. Available @dfn{checkers} include (see @option{--list-checkers} for a complete list):" msgstr "Den Befehl @command{guix lint} gibt es, um Paketentwicklern beim Vermeiden häufiger Fehler und bei der Einhaltung eines konsistenten Code-Stils zu helfen. Er führt eine Reihe von Prüfungen auf einer angegebenen Menge von Paketen durch, um in deren Definition häufige Fehler aufzuspüren. Zu den verfügbaren @dfn{Prüfern} gehören (siehe @option{--list-checkers} für eine vollständige Liste):" #. type: table -#: guix-git/doc/guix.texi:12896 +#: guix-git/doc/guix.texi:13253 msgid "Validate certain typographical and stylistic rules about package descriptions and synopses." msgstr "Überprüfen, ob bestimmte typografische und stilistische Regeln in Paketbeschreibungen und -zusammenfassungen eingehalten wurden." #. type: item -#: guix-git/doc/guix.texi:12897 +#: guix-git/doc/guix.texi:13254 #, no-wrap msgid "inputs-should-be-native" msgstr "inputs-should-be-native" #. type: table -#: guix-git/doc/guix.texi:12899 +#: guix-git/doc/guix.texi:13256 msgid "Identify inputs that should most likely be native inputs." msgstr "Eingaben identifizieren, die wahrscheinlich native Eingaben sein sollten." #. type: itemx -#: guix-git/doc/guix.texi:12902 +#: guix-git/doc/guix.texi:13259 #, no-wrap msgid "mirror-url" msgstr "mirror-url" #. type: itemx -#: guix-git/doc/guix.texi:12903 +#: guix-git/doc/guix.texi:13260 #, no-wrap msgid "github-url" msgstr "github-url" #. type: itemx -#: guix-git/doc/guix.texi:12904 +#: guix-git/doc/guix.texi:13261 #, no-wrap msgid "source-file-name" msgstr "source-file-name" #. type: table -#: guix-git/doc/guix.texi:12911 +#: guix-git/doc/guix.texi:13268 msgid "Probe @code{home-page} and @code{source} URLs and report those that are invalid. Suggest a @code{mirror://} URL when applicable. If the @code{source} URL redirects to a GitHub URL, recommend usage of the GitHub URL@. Check that the source file name is meaningful, e.g.@: is not just a version number or ``git-checkout'', without a declared @code{file-name} (@pxref{origin Reference})." msgstr "Die URLs für die Felder @code{home-page} und @code{source} anrufen und nicht erreichbare URLs melden. Wenn passend, wird eine @code{mirror://}-URL vorgeschlagen. Wenn die Quell-URL auf eine GitHub-URL weiterleitet, wird eine Empfehlung ausgegeben, direkt letztere zu verwenden. Es wird geprüft, dass der Quell-Dateiname aussagekräftig ist, dass er also z.B.@: nicht nur aus einer Versionsnummer besteht oder als „git-checkout“ angegeben wurde, ohne dass ein @code{Dateiname} deklariert wurde (siehe @ref{origin Reference})." #. type: item -#: guix-git/doc/guix.texi:12912 +#: guix-git/doc/guix.texi:13269 #, no-wrap msgid "source-unstable-tarball" msgstr "source-unstable-tarball" #. type: table -#: guix-git/doc/guix.texi:12916 +#: guix-git/doc/guix.texi:13273 msgid "Parse the @code{source} URL to determine if a tarball from GitHub is autogenerated or if it is a release tarball. Unfortunately GitHub's autogenerated tarballs are sometimes regenerated." msgstr "Analysiert die @code{source}-URL, um zu bestimmen, ob der Tarball von GitHub automatisch generiert wurde oder zu einer Veröffentlichung gehört. Leider werden GitHubs automatisch generierte Tarballs manchmal neu generiert." #. type: table -#: guix-git/doc/guix.texi:12920 +#: guix-git/doc/guix.texi:13277 msgid "Check that the derivation of the given packages can be successfully computed for all the supported systems (@pxref{Derivations})." msgstr "Prüft, ob die Ableitung der angegebenen Pakete auf allen unterstützten Systmen erfolgreich berechnet werden kann (siehe @ref{Derivations})." #. type: item -#: guix-git/doc/guix.texi:12921 +#: guix-git/doc/guix.texi:13278 #, no-wrap msgid "profile-collisions" msgstr "profile-collisions" #. type: table -#: guix-git/doc/guix.texi:12927 +#: guix-git/doc/guix.texi:13284 msgid "Check whether installing the given packages in a profile would lead to collisions. Collisions occur when several packages with the same name but a different version or a different store file name are propagated. @xref{package Reference, @code{propagated-inputs}}, for more information on propagated inputs." msgstr "Prüft, ob die Installation der angegebenen Pakete in ein Profil zu Kollisionen führen würde. Kollisionen treten auf, wenn mehrere Pakete mit demselben Namen aber anderer Versionsnummer oder anderem Store-Dateinamen propagiert werden. Siehe @ref{package Reference, @code{propagated-inputs}} für weitere Informationen zu propagierten Eingaben." #. type: item -#: guix-git/doc/guix.texi:12928 +#: guix-git/doc/guix.texi:13285 #, no-wrap msgid "archival" msgstr "archival" #. type: cindex -#: guix-git/doc/guix.texi:12929 +#: guix-git/doc/guix.texi:13286 #, no-wrap msgid "Software Heritage, source code archive" msgstr "Software Heritage, Quellcode-Archiv" #. type: cindex -#: guix-git/doc/guix.texi:12930 +#: guix-git/doc/guix.texi:13287 #, no-wrap msgid "archival of source code, Software Heritage" msgstr "Archivierung von Quellcode, Software Heritage" #. type: table -#: guix-git/doc/guix.texi:12933 +#: guix-git/doc/guix.texi:13290 msgid "Checks whether the package's source code is archived at @uref{https://www.softwareheritage.org, Software Heritage}." msgstr "Überprüft, ob der Quellcode des Pakets bei der @uref{https://www.softwareheritage.org, Software Heritage} archiviert ist." #. type: table -#: guix-git/doc/guix.texi:12941 +#: guix-git/doc/guix.texi:13298 msgid "When the source code that is not archived comes from a version-control system (VCS)---e.g., it's obtained with @code{git-fetch}, send Software Heritage a ``save'' request so that it eventually archives it. This ensures that the source will remain available in the long term, and that Guix can fall back to Software Heritage should the source code disappear from its original host. The status of recent ``save'' requests can be @uref{https://archive.softwareheritage.org/save/#requests, viewed on-line}." msgstr "Wenn der noch nicht archivierte Quellcode aus einem Versionskontrollsystem („Version Control System“, VCS) stammt, wenn er also z.B.@: mit @code{git-fetch} bezogen wird, wird eine Anfrage an Software Heritage gestellt, diesen zu speichern („Save“), damit sie ihn irgendwann in deren Archiv aufnehmen. So wird gewährleistet, dass der Quellcode langfristig verfügbar bleibt und Guix notfalls auf Software Heritage zurückgreifen kann, falls der Quellcode bei seinem ursprünglichen Anbieter verschwindet. Der Status kürzlicher Archivierungsanfragen kann @uref{https://archive.softwareheritage.org/save/#requests, online eingesehen werden}." #. type: table -#: guix-git/doc/guix.texi:12946 +#: guix-git/doc/guix.texi:13303 msgid "When source code is a tarball obtained with @code{url-fetch}, simply print a message when it is not archived. As of this writing, Software Heritage does not allow requests to save arbitrary tarballs; we are working on ways to ensure that non-VCS source code is also archived." msgstr "Wenn der Quellcode in Form eines über @code{url-fetch} zu beziehenden Tarballs vorliegt, wird bloß eine Nachricht ausgegeben, wenn er nicht archiviert ist. Zum Zeitpunkt, wo dies geschrieben wurde, ermöglicht Software Heritage keine Anfragen, beliebige Tarballs zu archivieren; wir arbeiten an Möglichkeiten wie auch @emph{nicht} versionskontrollierter Quellcode archiviert werden kann." #. type: table -#: guix-git/doc/guix.texi:12952 +#: guix-git/doc/guix.texi:13309 msgid "Software Heritage @uref{https://archive.softwareheritage.org/api/#rate-limiting, limits the request rate per IP address}. When the limit is reached, @command{guix lint} prints a message and the @code{archival} checker stops doing anything until that limit has been reset." msgstr "Software Heritage @uref{https://archive.softwareheritage.org/api/#rate-limiting, beschränkt}, wie schnell dieselbe IP-Adresse Anfragen stellen kann. Ist das Limit erreicht, gibt @command{guix lint} eine Mitteilung aus und der @code{archival}-Prüfer steht so lange still, bis die Beschränkung wieder zurückgesetzt wurde." #. type: item -#: guix-git/doc/guix.texi:12953 +#: guix-git/doc/guix.texi:13310 #, no-wrap msgid "cve" msgstr "cve" #. type: cindex -#: guix-git/doc/guix.texi:12954 guix-git/doc/guix.texi:37946 +#: guix-git/doc/guix.texi:13311 guix-git/doc/guix.texi:38435 #, no-wrap msgid "security vulnerabilities" msgstr "Sicherheitslücken" #. type: cindex -#: guix-git/doc/guix.texi:12955 +#: guix-git/doc/guix.texi:13312 #, no-wrap msgid "CVE, Common Vulnerabilities and Exposures" msgstr "CVE, Common Vulnerabilities and Exposures" #. type: table -#: guix-git/doc/guix.texi:12960 +#: guix-git/doc/guix.texi:13317 msgid "Report known vulnerabilities found in the Common Vulnerabilities and Exposures (CVE) databases of the current and past year @uref{https://nvd.nist.gov/vuln/data-feeds, published by the US NIST}." msgstr "Bekannte Sicherheitslücken melden, die in den Datenbanken der „Common Vulnerabilities and Exposures“ (CVE) aus diesem und dem letzten Jahr vorkommen, @uref{https://nvd.nist.gov/vuln/data-feeds, wie sie von der US-amerikanischen NIST veröffentlicht werden}." #. type: table -#: guix-git/doc/guix.texi:12962 +#: guix-git/doc/guix.texi:13319 msgid "To view information about a particular vulnerability, visit pages such as:" msgstr "Um Informationen über eine bestimmte Sicherheitslücke angezeigt zu bekommen, besuchen Sie Webseiten wie:" #. type: indicateurl{#1} -#: guix-git/doc/guix.texi:12966 +#: guix-git/doc/guix.texi:13323 msgid "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-YYYY-ABCD" msgstr "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-YYYY-ABCD" #. type: indicateurl{#1} -#: guix-git/doc/guix.texi:12968 +#: guix-git/doc/guix.texi:13325 msgid "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-YYYY-ABCD" msgstr "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-YYYY-ABCD" #. type: table -#: guix-git/doc/guix.texi:12973 +#: guix-git/doc/guix.texi:13330 msgid "where @code{CVE-YYYY-ABCD} is the CVE identifier---e.g., @code{CVE-2015-7554}." msgstr "wobei Sie statt @code{CVE-YYYY-ABCD} die CVE-Kennnummer angeben@tie{}— z.B.@: @code{CVE-2015-7554}." #. type: table -#: guix-git/doc/guix.texi:12978 +#: guix-git/doc/guix.texi:13335 msgid "Package developers can specify in package recipes the @uref{https://nvd.nist.gov/products/cpe,Common Platform Enumeration (CPE)} name and version of the package when they differ from the name or version that Guix uses, as in this example:" msgstr "Paketentwickler können in ihren Paketrezepten den Namen und die Version des Pakets in der @uref{https://nvd.nist.gov/products/cpe,Common Platform Enumeration (CPE)} angeben, falls sich diese von dem in Guix benutzten Namen und der Version unterscheiden, zum Beispiel so:" #. type: lisp -#: guix-git/doc/guix.texi:12986 +#: guix-git/doc/guix.texi:13343 #, no-wrap msgid "" "(package\n" @@ -24116,12 +24770,12 @@ msgstr "" " (cpe-version . \"2.3\"))))\n" #. type: table -#: guix-git/doc/guix.texi:12993 +#: guix-git/doc/guix.texi:13350 msgid "Some entries in the CVE database do not specify which version of a package they apply to, and would thus ``stick around'' forever. Package developers who found CVE alerts and verified they can be ignored can declare them as in this example:" msgstr "Manche Einträge in der CVE-Datenbank geben die Version des Pakets nicht an, auf das sie sich beziehen, und würden daher bis in alle Ewigkeit Warnungen auslösen. Paketentwickler, die CVE-Warnmeldungen gefunden und geprüft haben, dass diese ignoriert werden können, können sie wie in diesem Beispiel deklarieren:" #. type: lisp -#: guix-git/doc/guix.texi:13003 +#: guix-git/doc/guix.texi:13360 #, no-wrap msgid "" "(package\n" @@ -24144,124 +24798,124 @@ msgstr "" " \"CVE-2011-5244\")))))\n" #. type: item -#: guix-git/doc/guix.texi:13005 +#: guix-git/doc/guix.texi:13362 #, no-wrap msgid "formatting" msgstr "formatting" #. type: table -#: guix-git/doc/guix.texi:13008 +#: guix-git/doc/guix.texi:13365 msgid "Warn about obvious source code formatting issues: trailing white space, use of tabulations, etc." msgstr "Offensichtliche Fehler bei der Formatierung von Quellcode melden, z.B.@: Leerraum-Zeichen am Zeilenende oder Nutzung von Tabulatorzeichen." #. type: item -#: guix-git/doc/guix.texi:13009 +#: guix-git/doc/guix.texi:13366 #, no-wrap msgid "input-labels" msgstr "input-labels" #. type: table -#: guix-git/doc/guix.texi:13015 +#: guix-git/doc/guix.texi:13372 msgid "Report old-style input labels that do not match the name of the corresponding package. This aims to help migrate from the ``old input style''. @xref{package Reference}, for more information on package inputs and input styles. @xref{Invoking guix style}, on how to migrate to the new style." msgstr "Eingabebezeichnungen im alten Stil melden, die nicht dem Namen des damit assoziierten Pakets entsprechen. Diese Funktionalität soll bei der Migration weg vom „alten Eingabenstil“ helfen. Siehe @ref{package Reference}, um mehr Informationen über Paketeingaben und Eingabenstile zu bekommen. Siehe @ref{Invoking guix style} für Informationen, wie Sie zum neuen Stil migrieren können." #. type: example -#: guix-git/doc/guix.texi:13021 +#: guix-git/doc/guix.texi:13378 #, no-wrap msgid "guix lint @var{options} @var{package}@dots{}\n" msgstr "guix lint @var{Optionen} @var{Pakete}…\n" #. type: Plain text -#: guix-git/doc/guix.texi:13025 +#: guix-git/doc/guix.texi:13382 msgid "If no package is given on the command line, then all packages are checked. The @var{options} may be zero or more of the following:" msgstr "Wird kein Paket auf der Befehlszeile angegeben, dann werden alle Pakete geprüft, die es gibt. Als @var{Optionen} können null oder mehr der folgenden Befehlszeilenoptionen übergeben werden:" #. type: item -#: guix-git/doc/guix.texi:13027 +#: guix-git/doc/guix.texi:13384 #, no-wrap msgid "--list-checkers" msgstr "--list-checkers" #. type: table -#: guix-git/doc/guix.texi:13031 +#: guix-git/doc/guix.texi:13388 msgid "List and describe all the available checkers that will be run on packages and exit." msgstr "Alle verfügbaren Prüfer für die Pakete auflisten und beschreiben." #. type: item -#: guix-git/doc/guix.texi:13032 +#: guix-git/doc/guix.texi:13389 #, no-wrap msgid "--checkers" msgstr "--checkers" #. type: itemx -#: guix-git/doc/guix.texi:13033 +#: guix-git/doc/guix.texi:13390 #, no-wrap msgid "-c" msgstr "-c" #. type: table -#: guix-git/doc/guix.texi:13036 +#: guix-git/doc/guix.texi:13393 msgid "Only enable the checkers specified in a comma-separated list using the names returned by @option{--list-checkers}." msgstr "Nur die Prüfer aktivieren, die hiernach in einer kommagetrennten Liste aus von @option{--list-checkers} aufgeführten Prüfern vorkommen." #. type: item -#: guix-git/doc/guix.texi:13037 +#: guix-git/doc/guix.texi:13394 #, no-wrap msgid "--exclude" msgstr "--exclude" #. type: table -#: guix-git/doc/guix.texi:13041 +#: guix-git/doc/guix.texi:13398 msgid "Only disable the checkers specified in a comma-separated list using the names returned by @option{--list-checkers}." msgstr "Nur die Prüfer deaktivieren, die hiernach in einer kommagetrennten Liste aus von @option{--list-checkers} aufgeführten Prüfern vorkommen." #. type: item -#: guix-git/doc/guix.texi:13042 +#: guix-git/doc/guix.texi:13399 #, no-wrap msgid "--no-network" msgstr "--no-network" #. type: table -#: guix-git/doc/guix.texi:13045 +#: guix-git/doc/guix.texi:13402 msgid "Only enable the checkers that do not depend on Internet access." msgstr "Nur die Prüfer aktivieren, die keinen Internetzugang benötigen." #. type: section -#: guix-git/doc/guix.texi:13057 +#: guix-git/doc/guix.texi:13414 #, no-wrap msgid "Invoking @command{guix size}" msgstr "@command{guix size} aufrufen" #. type: code{#1} -#: guix-git/doc/guix.texi:13059 guix-git/doc/guix.texi:35624 +#: guix-git/doc/guix.texi:13416 guix-git/doc/guix.texi:36114 #, no-wrap msgid "size" msgstr "Größe" #. type: cindex -#: guix-git/doc/guix.texi:13060 +#: guix-git/doc/guix.texi:13417 #, no-wrap msgid "package size" msgstr "Paketgröße" #. type: command{#1} -#: guix-git/doc/guix.texi:13062 +#: guix-git/doc/guix.texi:13419 #, no-wrap msgid "guix size" msgstr "guix size" #. type: Plain text -#: guix-git/doc/guix.texi:13069 +#: guix-git/doc/guix.texi:13426 msgid "The @command{guix size} command helps package developers profile the disk usage of packages. It is easy to overlook the impact of an additional dependency added to a package, or the impact of using a single output for a package that could easily be split (@pxref{Packages with Multiple Outputs}). Such are the typical issues that @command{guix size} can highlight." msgstr "Der Befehl @command{guix size} hilft Paketentwicklern dabei, den Plattenplatzverbrauch von Paketen zu profilieren. Es ist leicht, die Auswirkungen zu unterschätzen, die das Hinzufügen zusätzlicher Abhängigkeiten zu einem Paket hat oder die das Verwenden einer einzelnen Ausgabe für ein leicht aufteilbares Paket ausmacht (siehe @ref{Packages with Multiple Outputs}). Das sind typische Probleme, auf die @command{guix size} aufmerksam machen kann." #. type: Plain text -#: guix-git/doc/guix.texi:13074 +#: guix-git/doc/guix.texi:13431 msgid "The command can be passed one or more package specifications such as @code{gcc@@4.8} or @code{guile:debug}, or a file name in the store. Consider this example:" msgstr "Dem Befehl können eine oder mehrere Paketspezifikationen wie @code{gcc@@4.8} oder @code{guile:debug} übergeben werden, oder ein Dateiname im Store. Betrachten Sie dieses Beispiel:" #. type: example -#: guix-git/doc/guix.texi:13087 +#: guix-git/doc/guix.texi:13444 #, no-wrap msgid "" "$ guix size coreutils\n" @@ -24289,54 +24943,54 @@ msgstr "" "Gesamt: 78.9 MiB\n" #. type: Plain text -#: guix-git/doc/guix.texi:13093 +#: guix-git/doc/guix.texi:13450 msgid "The store items listed here constitute the @dfn{transitive closure} of Coreutils---i.e., Coreutils and all its dependencies, recursively---as would be returned by:" msgstr "Die hier aufgelisteten Store-Objekte bilden den @dfn{transitiven Abschluss} der Coreutils@tie{}— d.h.@: die Coreutils und all ihre Abhängigkeiten und deren Abhängigkeiten, rekursiv@tie{}—, wie sie hiervon angezeigt würden: dag.pdf\n" msgstr "guix graph coreutils | dot -Tpdf > dag.pdf\n" #. type: Plain text -#: guix-git/doc/guix.texi:13233 +#: guix-git/doc/guix.texi:13590 msgid "The output looks like this:" msgstr "Die Ausgabe sieht so aus:" #. type: Plain text -#: guix-git/doc/guix.texi:13235 +#: guix-git/doc/guix.texi:13592 msgid "@image{images/coreutils-graph,2in,,Dependency graph of the GNU Coreutils}" msgstr "@image{images/coreutils-graph,2in,,Abhängigkeitsgraph der GNU Coreutils}" #. type: Plain text -#: guix-git/doc/guix.texi:13237 +#: guix-git/doc/guix.texi:13594 msgid "Nice little graph, no?" msgstr "Ein netter, kleiner Graph, oder?" #. type: Plain text -#: guix-git/doc/guix.texi:13240 +#: guix-git/doc/guix.texi:13597 msgid "You may find it more pleasant to navigate the graph interactively with @command{xdot} (from the @code{xdot} package):" msgstr "Vielleicht ist es Ihnen aber lieber, den Graphen interaktiv mit dem @command{xdot}-Programm anzuschauen (aus dem Paket @code{xdot}):" #. type: example -#: guix-git/doc/guix.texi:13243 +#: guix-git/doc/guix.texi:13600 #, no-wrap msgid "guix graph coreutils | xdot -\n" msgstr "guix graph coreutils | xdot -\n" #. type: Plain text -#: guix-git/doc/guix.texi:13250 +#: guix-git/doc/guix.texi:13607 msgid "But there is more than one graph! The one above is concise: it is the graph of package objects, omitting implicit inputs such as GCC, libc, grep, etc. It is often useful to have such a concise graph, but sometimes one may want to see more details. @command{guix graph} supports several types of graphs, allowing you to choose the level of detail:" msgstr "Aber es gibt mehr als eine Art von Graph! Der Graph oben ist kurz und knapp: Es ist der Graph der Paketobjekte, ohne implizite Eingaben wie GCC, libc, grep und so weiter. Oft möchte man einen knappen Graphen sehen, aber manchmal will man auch mehr Details sehen. @command{guix graph} unterstützt mehrere Typen von Graphen; Sie können den Detailgrad auswählen." #. type: table -#: guix-git/doc/guix.texi:13256 +#: guix-git/doc/guix.texi:13613 msgid "This is the default type used in the example above. It shows the DAG of package objects, excluding implicit dependencies. It is concise, but filters out many details." msgstr "Der vorgegebene Typ aus dem Beispiel oben. Er zeigt den DAG der Paketobjekte ohne implizite Abhängigkeiten. Er ist knapp, filtert aber viele Details heraus." #. type: item -#: guix-git/doc/guix.texi:13257 +#: guix-git/doc/guix.texi:13614 #, no-wrap msgid "reverse-package" msgstr "reverse-package" #. type: table -#: guix-git/doc/guix.texi:13259 +#: guix-git/doc/guix.texi:13616 msgid "This shows the @emph{reverse} DAG of packages. For example:" msgstr "Dies zeigt den @emph{umgekehrten} DAG der Pakete. Zum Beispiel liefert" #. type: example -#: guix-git/doc/guix.texi:13262 +#: guix-git/doc/guix.texi:13619 #, no-wrap msgid "guix graph --type=reverse-package ocaml\n" msgstr "guix graph --type=reverse-package ocaml\n" #. type: table -#: guix-git/doc/guix.texi:13267 +#: guix-git/doc/guix.texi:13624 msgid "...@: yields the graph of packages that @emph{explicitly} depend on OCaml (if you are also interested in cases where OCaml is an implicit dependency, see @code{reverse-bag} below)." msgstr "…@: den Graphen der Pakete, die @emph{explizit} von OCaml abhängen (wenn Sie auch an Fällen interessiert sind, bei denen OCaml eine implizite Abhängigkeit ist, siehe @code{reverse-bag} weiter unten)." #. type: table -#: guix-git/doc/guix.texi:13272 +#: guix-git/doc/guix.texi:13629 msgid "Note that for core packages this can yield huge graphs. If all you want is to know the number of packages that depend on a given package, use @command{guix refresh --list-dependent} (@pxref{Invoking guix refresh, @option{--list-dependent}})." msgstr "Beachten Sie, dass für Kernpakete damit gigantische Graphen entstehen können. Wenn Sie nur die Anzahl der Pakete wissen wollen, die von einem gegebenen Paket abhängen, benutzen Sie @command{guix refresh --list-dependent} (siehe @ref{Invoking guix refresh, @option{--list-dependent}})." #. type: item -#: guix-git/doc/guix.texi:13273 +#: guix-git/doc/guix.texi:13630 #, no-wrap msgid "bag-emerged" msgstr "bag-emerged" #. type: table -#: guix-git/doc/guix.texi:13275 +#: guix-git/doc/guix.texi:13632 msgid "This is the package DAG, @emph{including} implicit inputs." msgstr "Dies ist der Paket-DAG @emph{einschließlich} impliziter Eingaben." #. type: table -#: guix-git/doc/guix.texi:13277 +#: guix-git/doc/guix.texi:13634 msgid "For instance, the following command:" msgstr "Zum Beispiel liefert der folgende Befehl" #. type: example -#: guix-git/doc/guix.texi:13280 +#: guix-git/doc/guix.texi:13637 #, no-wrap msgid "guix graph --type=bag-emerged coreutils\n" msgstr "guix graph --type=bag-emerged coreutils\n" #. type: table -#: guix-git/doc/guix.texi:13283 +#: guix-git/doc/guix.texi:13640 msgid "...@: yields this bigger graph:" msgstr "…@: diesen größeren Graphen:" #. type: table -#: guix-git/doc/guix.texi:13285 +#: guix-git/doc/guix.texi:13642 msgid "@image{images/coreutils-bag-graph,,5in,Detailed dependency graph of the GNU Coreutils}" msgstr "@image{images/coreutils-bag-graph,,5in,Detaillierter Abhängigkeitsgraph der GNU Coreutils}" #. type: table -#: guix-git/doc/guix.texi:13288 +#: guix-git/doc/guix.texi:13645 msgid "At the bottom of the graph, we see all the implicit inputs of @var{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}})." msgstr "Am unteren Rand des Graphen sehen wir alle impliziten Eingaben des @var{gnu-build-system} (siehe @ref{Build Systems, @code{gnu-build-system}})." #. type: table -#: guix-git/doc/guix.texi:13292 +#: guix-git/doc/guix.texi:13649 msgid "Now, note that the dependencies of these implicit inputs---that is, the @dfn{bootstrap dependencies} (@pxref{Bootstrapping})---are not shown here, for conciseness." msgstr "Beachten Sie dabei aber, dass auch hier die Abhängigkeiten dieser impliziten Eingaben@tie{}— d.h.@: die @dfn{Bootstrap-Abhängigkeiten} (siehe @ref{Bootstrapping})@tie{}— nicht gezeigt werden, damit der Graph knapper bleibt." #. type: item -#: guix-git/doc/guix.texi:13293 +#: guix-git/doc/guix.texi:13650 #, no-wrap msgid "bag" msgstr "bag" #. type: table -#: guix-git/doc/guix.texi:13296 +#: guix-git/doc/guix.texi:13653 msgid "Similar to @code{bag-emerged}, but this time including all the bootstrap dependencies." msgstr "Ähnlich wie @code{bag-emerged}, aber diesmal mit allen Bootstrap-Abhängigkeiten." #. type: item -#: guix-git/doc/guix.texi:13297 +#: guix-git/doc/guix.texi:13654 #, no-wrap msgid "bag-with-origins" msgstr "bag-with-origins" #. type: table -#: guix-git/doc/guix.texi:13299 +#: guix-git/doc/guix.texi:13656 msgid "Similar to @code{bag}, but also showing origins and their dependencies." msgstr "Ähnlich wie @code{bag}, aber auch mit den Ursprüngen und deren Abhängigkeiten." #. type: item -#: guix-git/doc/guix.texi:13300 +#: guix-git/doc/guix.texi:13657 #, no-wrap msgid "reverse-bag" msgstr "reverse-bag" #. type: table -#: guix-git/doc/guix.texi:13303 +#: guix-git/doc/guix.texi:13660 msgid "This shows the @emph{reverse} DAG of packages. Unlike @code{reverse-package}, it also takes implicit dependencies into account. For example:" msgstr "Dies zeigt den @emph{umgekehrten} DAG der Pakete. Anders als @code{reverse-package} werden auch implizite Abhängigkeiten berücksichtigt. Zum Beispiel liefert" #. type: example -#: guix-git/doc/guix.texi:13306 +#: guix-git/doc/guix.texi:13663 #, no-wrap msgid "guix graph -t reverse-bag dune\n" msgstr "guix graph -t reverse-bag dune\n" #. type: table -#: guix-git/doc/guix.texi:13313 +#: guix-git/doc/guix.texi:13670 msgid "...@: yields the graph of all packages that depend on Dune, directly or indirectly. Since Dune is an @emph{implicit} dependency of many packages @i{via} @code{dune-build-system}, this shows a large number of packages, whereas @code{reverse-package} would show very few if any." msgstr "…@: den Graphen aller Pakete, die von Dune direkt oder indirekt abhängen. Weil Dune eine @emph{implizite} Abhängigkeit von vielen Paketen über das @code{dune-build-system} ist, zeigt er eine große Zahl von Paketen, während bei @code{reverse-package} nur sehr wenige bis gar keine zu sehen sind." #. type: table -#: guix-git/doc/guix.texi:13319 +#: guix-git/doc/guix.texi:13676 msgid "This is the most detailed representation: It shows the DAG of derivations (@pxref{Derivations}) and plain store items. Compared to the above representation, many additional nodes are visible, including build scripts, patches, Guile modules, etc." msgstr "Diese Darstellung ist am detailliertesten: Sie zeigt den DAG der Ableitungen (siehe @ref{Derivations}) und der einfachen Store-Objekte. Verglichen mit obiger Darstellung sieht man viele zusätzliche Knoten einschließlich Erstellungs-Skripts, Patches, Guile-Module usw." #. type: table -#: guix-git/doc/guix.texi:13322 +#: guix-git/doc/guix.texi:13679 msgid "For this type of graph, it is also possible to pass a @file{.drv} file name instead of a package name, as in:" msgstr "Für diesen Typ Graph kann auch der Name einer @file{.drv}-Datei anstelle eines Paketnamens angegeben werden, etwa so:" #. type: example -#: guix-git/doc/guix.texi:13325 +#: guix-git/doc/guix.texi:13682 #, no-wrap msgid "guix graph -t derivation $(guix system build -d my-config.scm)\n" msgstr "guix graph -t derivation $(guix system build -d my-config.scm)\n" #. type: item -#: guix-git/doc/guix.texi:13327 +#: guix-git/doc/guix.texi:13684 #, no-wrap msgid "module" msgstr "Modul" #. type: table -#: guix-git/doc/guix.texi:13331 +#: guix-git/doc/guix.texi:13688 msgid "This is the graph of @dfn{package modules} (@pxref{Package Modules}). For example, the following command shows the graph for the package module that defines the @code{guile} package:" msgstr "Dies ist der Graph der @dfn{Paketmodule} (siehe @ref{Package Modules}). Zum Beispiel zeigt der folgende Befehl den Graphen für das Paketmodul an, das das @code{guile}-Paket definiert:" #. type: example -#: guix-git/doc/guix.texi:13334 +#: guix-git/doc/guix.texi:13691 #, no-wrap msgid "guix graph -t module guile | xdot -\n" msgstr "guix graph -t module guile | xdot -\n" #. type: Plain text -#: guix-git/doc/guix.texi:13339 +#: guix-git/doc/guix.texi:13696 msgid "All the types above correspond to @emph{build-time dependencies}. The following graph type represents the @emph{run-time dependencies}:" msgstr "Alle oben genannten Typen entsprechen @emph{Abhängigkeiten zur Erstellungszeit}. Der folgende Graphtyp repräsentiert die @emph{Abhängigkeiten zur Laufzeit}:" #. type: table -#: guix-git/doc/guix.texi:13344 +#: guix-git/doc/guix.texi:13701 msgid "This is the graph of @dfn{references} of a package output, as returned by @command{guix gc --references} (@pxref{Invoking guix gc})." msgstr "Dies ist der Graph der @dfn{Referenzen} einer Paketausgabe, wie @command{guix gc --references} sie liefert (siehe @ref{Invoking guix gc})." #. type: table -#: guix-git/doc/guix.texi:13347 +#: guix-git/doc/guix.texi:13704 msgid "If the given package output is not available in the store, @command{guix graph} attempts to obtain dependency information from substitutes." msgstr "Wenn die angegebene Paketausgabe im Store nicht verfügbar ist, versucht @command{guix graph}, die Abhängigkeitsinformationen aus Substituten zu holen." #. type: table -#: guix-git/doc/guix.texi:13351 +#: guix-git/doc/guix.texi:13708 msgid "Here you can also pass a store file name instead of a package name. For example, the command below produces the reference graph of your profile (which can be big!):" msgstr "Hierbei können Sie auch einen Store-Dateinamen statt eines Paketnamens angeben. Zum Beispiel generiert der Befehl unten den Referenzgraphen Ihres Profils (der sehr groß werden kann!):" #. type: example -#: guix-git/doc/guix.texi:13354 +#: guix-git/doc/guix.texi:13711 #, no-wrap msgid "guix graph -t references $(readlink -f ~/.guix-profile)\n" msgstr "guix graph -t references $(readlink -f ~/.guix-profile)\n" #. type: item -#: guix-git/doc/guix.texi:13356 +#: guix-git/doc/guix.texi:13713 #, no-wrap msgid "referrers" msgstr "referrers" #. type: table -#: guix-git/doc/guix.texi:13359 +#: guix-git/doc/guix.texi:13716 msgid "This is the graph of the @dfn{referrers} of a store item, as returned by @command{guix gc --referrers} (@pxref{Invoking guix gc})." msgstr "Dies ist der Graph der ein Store-Objekt @dfn{referenzierenden} Objekte, wie @command{guix gc --referrers} sie liefern würde (siehe @ref{Invoking guix gc})." #. type: table -#: guix-git/doc/guix.texi:13365 +#: guix-git/doc/guix.texi:13722 msgid "This relies exclusively on local information from your store. For instance, let us suppose that the current Inkscape is available in 10 profiles on your machine; @command{guix graph -t referrers inkscape} will show a graph rooted at Inkscape and with those 10 profiles linked to it." msgstr "Er basiert ausschließlich auf lokalen Informationen aus Ihrem Store. Nehmen wir zum Beispiel an, dass das aktuelle Inkscape in 10 Profilen verfügbar ist, dann wird @command{guix graph -t referrers inkscape} einen Graph zeigen, der bei Inkscape gewurzelt ist und Kanten zu diesen 10 Profilen hat." #. type: table -#: guix-git/doc/guix.texi:13368 +#: guix-git/doc/guix.texi:13725 msgid "It can help determine what is preventing a store item from being garbage collected." msgstr "Ein solcher Graph kann dabei helfen, herauszufinden, weshalb ein Store-Objekt nicht vom Müllsammler abgeholt werden kann." #. type: cindex -#: guix-git/doc/guix.texi:13371 +#: guix-git/doc/guix.texi:13728 #, no-wrap msgid "shortest path, between packages" msgstr "kürzester Pfad, zwischen Paketen" #. type: Plain text -#: guix-git/doc/guix.texi:13378 +#: guix-git/doc/guix.texi:13735 msgid "Often, the graph of the package you are interested in does not fit on your screen, and anyway all you want to know is @emph{why} that package actually depends on some seemingly unrelated package. The @option{--path} option instructs @command{guix graph} to display the shortest path between two packages (or derivations, or store items, etc.):" msgstr "Oftmals passt der Graph des Pakets, für das Sie sich interessieren, nicht auf Ihren Bildschirm, und überhaupt möchten Sie ja nur wissen, @emph{warum} das Paket von einem anderen abhängt, das scheinbar nichts damit zu tun hat. Die Befehlszeilenoption @option{--path} weist @command{guix graph} an, den kürzesten Pfad zwischen zwei Paketen (oder Ableitungen, Store-Objekten etc.)@: anzuzeigen:" #. type: example -#: guix-git/doc/guix.texi:13392 +#: guix-git/doc/guix.texi:13749 #, no-wrap msgid "" "$ guix graph --path emacs libunistring\n" @@ -24746,88 +25400,88 @@ msgstr "" "/gnu/store/…-libunistring-0.9.10\n" #. type: Plain text -#: guix-git/doc/guix.texi:13400 +#: guix-git/doc/guix.texi:13757 msgid "Sometimes you still want to visualize the graph but would like to trim it so it can actually be displayed. One way to do it is via the @option{--max-depth} (or @option{-M}) option, which lets you specify the maximum depth of the graph. In the example below, we visualize only @code{libreoffice} and the nodes whose distance to @code{libreoffice} is at most 2:" msgstr "Manchmal eignet es sich, den angezeigten Graphen abzuschneiden, damit er ordentlich dargestellt werden kann. Eine Möglihkeit ist, mit der Befehlszeilenoption @option{--max-depth} (kurz @option{-M}) die maximale Tiefe des Graphen festzulegen. Im folgenden Beispiel wird nur @code{libreoffice} und diejenigen Knoten dargestellt, deren Distanz zu @code{libreoffice} höchstens 2 beträgt:" #. type: example -#: guix-git/doc/guix.texi:13403 +#: guix-git/doc/guix.texi:13760 #, no-wrap msgid "guix graph -M 2 libreoffice | xdot -f fdp -\n" msgstr "guix graph -M 2 libreoffice | xdot -f fdp -\n" #. type: Plain text -#: guix-git/doc/guix.texi:13407 +#: guix-git/doc/guix.texi:13764 msgid "Mind you, that's still a big ball of spaghetti, but at least @command{dot} can render it quickly and it can be browsed somewhat." msgstr "Dabei bleibt zwar immer noch ein gewaltiges Spaghettiknäuel übrig, aber zumindest kann das @command{dot}-Programm daraus schnell eine halbwegs lesbare Darstellung erzeugen." #. type: Plain text -#: guix-git/doc/guix.texi:13409 +#: guix-git/doc/guix.texi:13766 msgid "The available options are the following:" msgstr "Folgendes sind die verfügbaren Befehlszeilenoptionen:" #. type: table -#: guix-git/doc/guix.texi:13415 +#: guix-git/doc/guix.texi:13772 msgid "Produce a graph output of @var{type}, where @var{type} must be one of the values listed above." msgstr "Eine Graph-Ausgabe dieses @var{Typ}s generieren. Dieser @var{Typ} muss einer der oben genannten Werte sein." #. type: item -#: guix-git/doc/guix.texi:13416 +#: guix-git/doc/guix.texi:13773 #, no-wrap msgid "--list-types" msgstr "--list-types" #. type: table -#: guix-git/doc/guix.texi:13418 +#: guix-git/doc/guix.texi:13775 msgid "List the supported graph types." msgstr "Die unterstützten Graph-Typen auflisten." #. type: item -#: guix-git/doc/guix.texi:13419 +#: guix-git/doc/guix.texi:13776 #, no-wrap msgid "--backend=@var{backend}" msgstr "--backend=@var{Backend}" #. type: itemx -#: guix-git/doc/guix.texi:13420 +#: guix-git/doc/guix.texi:13777 #, no-wrap msgid "-b @var{backend}" msgstr "-b @var{Backend}" #. type: table -#: guix-git/doc/guix.texi:13422 +#: guix-git/doc/guix.texi:13779 msgid "Produce a graph using the selected @var{backend}." msgstr "Einen Graph mit Hilfe des ausgewählten @var{Backend}s generieren." #. type: item -#: guix-git/doc/guix.texi:13423 +#: guix-git/doc/guix.texi:13780 #, no-wrap msgid "--list-backends" msgstr "--list-backends" #. type: table -#: guix-git/doc/guix.texi:13425 +#: guix-git/doc/guix.texi:13782 msgid "List the supported graph backends." msgstr "Die unterstützten Graph-Backends auflisten." #. type: table -#: guix-git/doc/guix.texi:13427 +#: guix-git/doc/guix.texi:13784 msgid "Currently, the available backends are Graphviz and d3.js." msgstr "Derzeit sind die verfügbaren Backends Graphviz und d3.js." #. type: item -#: guix-git/doc/guix.texi:13428 +#: guix-git/doc/guix.texi:13785 #, no-wrap msgid "--path" msgstr "--path" #. type: table -#: guix-git/doc/guix.texi:13433 +#: guix-git/doc/guix.texi:13790 msgid "Display the shortest path between two nodes of the type specified by @option{--type}. The example below shows the shortest path between @code{libreoffice} and @code{llvm} according to the references of @code{libreoffice}:" msgstr "Den kürzesten Pfad zwischen zwei Knoten anzeigen, die den mit @option{--type} angegebenen Typ aufweisen. Im Beispiel unten wird der kürzeste Pfad zwischen @code{libreoffice} und @code{llvm} anhand der Referenzen von @code{libreoffice} angezeigt:" #. type: example -#: guix-git/doc/guix.texi:13440 +#: guix-git/doc/guix.texi:13797 #, no-wrap msgid "" "$ guix graph --path -t references libreoffice llvm\n" @@ -24843,398 +25497,398 @@ msgstr "" "/gnu/store/…-llvm-9.0.1\n" #. type: example -#: guix-git/doc/guix.texi:13450 +#: guix-git/doc/guix.texi:13807 #, no-wrap msgid "guix graph -e '(@@@@ (gnu packages commencement) gnu-make-final)'\n" msgstr "guix graph -e '(@@@@ (gnu packages commencement) gnu-make-final)'\n" #. type: table -#: guix-git/doc/guix.texi:13455 +#: guix-git/doc/guix.texi:13812 msgid "Display the graph for @var{system}---e.g., @code{i686-linux}." msgstr "Den Graphen für das @var{System} anzeigen@tie{}— z.B.@: @code{i686-linux}." #. type: table -#: guix-git/doc/guix.texi:13458 +#: guix-git/doc/guix.texi:13815 msgid "The package dependency graph is largely architecture-independent, but there are some architecture-dependent bits that this option allows you to visualize." msgstr "Der Abhängigkeitsgraph ist größtenteils von der Systemarchitektur unabhängig, aber ein paar architekturabhängige Teile können Ihnen mit dieser Befehlszeilenoption visualisiert werden." #. type: Plain text -#: guix-git/doc/guix.texi:13474 +#: guix-git/doc/guix.texi:13831 msgid "On top of that, @command{guix graph} supports all the usual package transformation options (@pxref{Package Transformation Options}). This makes it easy to view the effect of a graph-rewriting transformation such as @option{--with-input}. For example, the command below outputs the graph of @code{git} once @code{openssl} has been replaced by @code{libressl} everywhere in the graph:" msgstr "Hinzu kommt, dass @command{guix graph} auch all die üblichen Paketumwandlungsoptionen unterstützt (siehe @ref{Package Transformation Options}). Somit ist es kein Problem, die Folgen einer den Paketgraphen umschreibenden Umwandlung wie @option{--with-input} zu erkennen. Zum Beispiel gibt der folgende Befehl den Graphen von @code{git} aus, nachdem @code{openssl} an allen Stellen im Graphen durch @code{libressl} ersetzt wurde:" #. type: example -#: guix-git/doc/guix.texi:13477 +#: guix-git/doc/guix.texi:13834 #, no-wrap msgid "guix graph git --with-input=openssl=libressl\n" msgstr "guix graph git --with-input=openssl=libressl\n" #. type: Plain text -#: guix-git/doc/guix.texi:13480 +#: guix-git/doc/guix.texi:13837 msgid "So many possibilities, so much fun!" msgstr "Ihrem Vergnügen sind keine Grenzen gesetzt!" #. type: section -#: guix-git/doc/guix.texi:13482 +#: guix-git/doc/guix.texi:13839 #, no-wrap msgid "Invoking @command{guix publish}" msgstr "@command{guix publish} aufrufen" #. type: command{#1} -#: guix-git/doc/guix.texi:13484 +#: guix-git/doc/guix.texi:13841 #, no-wrap msgid "guix publish" msgstr "guix publish" #. type: Plain text -#: guix-git/doc/guix.texi:13488 +#: guix-git/doc/guix.texi:13845 msgid "The purpose of @command{guix publish} is to enable users to easily share their store with others, who can then use it as a substitute server (@pxref{Substitutes})." msgstr "Der Zweck von @command{guix publish} ist, es Nutzern zu ermöglichen, ihren Store auf einfache Weise mit anderen zu teilen, die ihn dann als Substitutserver einsetzen können (siehe @ref{Substitutes})." #. type: Plain text -#: guix-git/doc/guix.texi:13494 +#: guix-git/doc/guix.texi:13851 msgid "When @command{guix publish} runs, it spawns an HTTP server which allows anyone with network access to obtain substitutes from it. This means that any machine running Guix can also act as if it were a build farm, since the HTTP interface is compatible with Cuirass, the software behind the @code{@value{SUBSTITUTE-SERVER-1}} build farm." msgstr "Wenn @command{guix publish} ausgeführt wird, wird dadurch ein HTTP-Server gestartet, so dass jeder mit Netzwerkzugang davon Substitute beziehen kann. Das bedeutet, dass jede Maschine, auf der Guix läuft, auch als Erstellungsfarm fungieren kann, weil die HTTP-Schnittstelle mit Cuirass, der Software, mit der die offizielle Erstellungsfarm @code{@value{SUBSTITUTE-SERVER-1}} betrieben wird, kompatibel ist." #. type: Plain text -#: guix-git/doc/guix.texi:13500 +#: guix-git/doc/guix.texi:13857 msgid "For security, each substitute is signed, allowing recipients to check their authenticity and integrity (@pxref{Substitutes}). Because @command{guix publish} uses the signing key of the system, which is only readable by the system administrator, it must be started as root; the @option{--user} option makes it drop root privileges early on." msgstr "Um Sicherheit zu gewährleisten, wird jedes Substitut signiert, so dass Empfänger dessen Authentizität und Integrität nachprüfen können (siehe @ref{Substitutes}). Weil @command{guix publish} den Signierschlüssel des Systems benutzt, der nur vom Systemadministrator gelesen werden kann, muss es als der Administratornutzer „root“ gestartet werden. Mit der Befehlszeilenoption @option{--user} werden Administratorrechte bald nach dem Start wieder abgelegt." #. type: Plain text -#: guix-git/doc/guix.texi:13504 +#: guix-git/doc/guix.texi:13861 msgid "The signing key pair must be generated before @command{guix publish} is launched, using @command{guix archive --generate-key} (@pxref{Invoking guix archive})." msgstr "Das Schlüsselpaar zum Signieren muss erzeugt werden, bevor @command{guix publish} gestartet wird. Dazu können Sie @command{guix archive --generate-key} ausführen (siehe @ref{Invoking guix archive})." #. type: Plain text -#: guix-git/doc/guix.texi:13509 +#: guix-git/doc/guix.texi:13866 msgid "When the @option{--advertise} option is passed, the server advertises its availability on the local network using multicast DNS (mDNS) and DNS service discovery (DNS-SD), currently @i{via} Guile-Avahi (@pxref{Top,,, guile-avahi, Using Avahi in Guile Scheme Programs})." msgstr "Wird die Befehlszeilenoption @option{--advertise} übergeben, teilt der Server anderen Rechnern im lokalen Netzwerk seine Verfügbarkeit mit, über Multicast-DNS (mDNS) und DNS-Service-Discovery (DNS-SD), zurzeit mittels Guile-Avahi (siehe @ref{Top,,, guile-avahi, Using Avahi in Guile Scheme Programs})." #. type: example -#: guix-git/doc/guix.texi:13514 +#: guix-git/doc/guix.texi:13871 #, no-wrap msgid "guix publish @var{options}@dots{}\n" msgstr "guix publish @var{Optionen}…\n" #. type: Plain text -#: guix-git/doc/guix.texi:13518 +#: guix-git/doc/guix.texi:13875 msgid "Running @command{guix publish} without any additional arguments will spawn an HTTP server on port 8080:" msgstr "Wird @command{guix publish} ohne weitere Argumente ausgeführt, wird damit ein HTTP-Server gestartet, der auf Port 8080 lauscht:" #. type: example -#: guix-git/doc/guix.texi:13521 +#: guix-git/doc/guix.texi:13878 #, no-wrap msgid "guix publish\n" msgstr "guix publish\n" #. type: Plain text -#: guix-git/doc/guix.texi:13525 +#: guix-git/doc/guix.texi:13882 msgid "Once a publishing server has been authorized, the daemon may download substitutes from it. @xref{Getting Substitutes from Other Servers}." msgstr "Sobald ein Server zum Veröffentlichen autorisiert wurde, kann der Daemon davon Substitute herunterladen. Siehe @ref{Getting Substitutes from Other Servers}." #. type: Plain text -#: guix-git/doc/guix.texi:13533 +#: guix-git/doc/guix.texi:13890 msgid "By default, @command{guix publish} compresses archives on the fly as it serves them. This ``on-the-fly'' mode is convenient in that it requires no setup and is immediately available. However, when serving lots of clients, we recommend using the @option{--cache} option, which enables caching of the archives before they are sent to clients---see below for details. The @command{guix weather} command provides a handy way to check what a server provides (@pxref{Invoking guix weather})." msgstr "Nach den Voreinstellungen komprimiert @command{guix publish} Archive erst dann, wenn sie angefragt werden. Dieser „dynamische“ Modus bietet sich an, weil so nichts weiter eingerichtet werden muss und er direkt verfügbar ist. Wenn Sie allerdings viele Clients bedienen wollen, empfehlen wir, dass Sie die Befehlszeilenoption @option{--cache} benutzen, die das Zwischenspeichern der komprimierten Archive aktiviert, bevor diese an die Clients geschickt werden@tie{}— siehe unten für Details. Mit dem Befehl @command{guix weather} haben Sie eine praktische Methode zur Hand, zu überprüfen, was so ein Server anbietet (siehe @ref{Invoking guix weather})." #. type: Plain text -#: guix-git/doc/guix.texi:13540 +#: guix-git/doc/guix.texi:13897 msgid "As a bonus, @command{guix publish} also serves as a content-addressed mirror for source files referenced in @code{origin} records (@pxref{origin Reference}). For instance, assuming @command{guix publish} is running on @code{example.org}, the following URL returns the raw @file{hello-2.10.tar.gz} file with the given SHA256 hash (represented in @code{nix-base32} format, @pxref{Invoking guix hash}):" msgstr "Als Bonus dient @command{guix publish} auch als inhaltsadressierbarer Spiegelserver für Quelldateien, die in @code{origin}-Verbundsobjekten eingetragen sind (siehe @ref{origin Reference}). Wenn wir zum Beispiel annehmen, dass @command{guix publish} auf @code{example.org} läuft, liefert folgende URL die rohe @file{hello-2.10.tar.gz}-Datei mit dem angegebenen SHA256-Hash als ihre Prüfsumme (dargestellt im @code{nix-base32}-Format, siehe @ref{Invoking guix hash}):" #. type: example -#: guix-git/doc/guix.texi:13543 +#: guix-git/doc/guix.texi:13900 #, no-wrap msgid "http://example.org/file/hello-2.10.tar.gz/sha256/0ssi1@dots{}ndq1i\n" msgstr "http://example.org/file/hello-2.10.tar.gz/sha256/0ssi1…ndq1i\n" #. type: Plain text -#: guix-git/doc/guix.texi:13547 +#: guix-git/doc/guix.texi:13904 msgid "Obviously, these URLs only work for files that are in the store; in other cases, they return 404 (``Not Found'')." msgstr "Offensichtlich funktionieren diese URLs nur mit solchen Dateien, die auch im Store vorliegen; in anderen Fällen werden sie 404 („Nicht gefunden“) zurückliefern." #. type: cindex -#: guix-git/doc/guix.texi:13548 +#: guix-git/doc/guix.texi:13905 #, no-wrap msgid "build logs, publication" msgstr "Erstellungsprotokolle, Veröffentlichen" #. type: Plain text -#: guix-git/doc/guix.texi:13550 +#: guix-git/doc/guix.texi:13907 msgid "Build logs are available from @code{/log} URLs like:" msgstr "Erstellungsprotokolle sind unter @code{/log}-URLs abrufbar:" #. type: example -#: guix-git/doc/guix.texi:13553 +#: guix-git/doc/guix.texi:13910 #, no-wrap msgid "http://example.org/log/gwspk@dots{}-guile-2.2.3\n" msgstr "http://example.org/log/gwspk…-guile-2.2.3\n" #. type: Plain text -#: guix-git/doc/guix.texi:13563 +#: guix-git/doc/guix.texi:13920 msgid "When @command{guix-daemon} is configured to save compressed build logs, as is the case by default (@pxref{Invoking guix-daemon}), @code{/log} URLs return the compressed log as-is, with an appropriate @code{Content-Type} and/or @code{Content-Encoding} header. We recommend running @command{guix-daemon} with @option{--log-compression=gzip} since Web browsers can automatically decompress it, which is not the case with Bzip2 compression." msgstr "Ist der @command{guix-daemon} so eingestellt, dass er Erstellungsprotokolle komprimiert abspeichert, wie es voreingestellt ist (siehe @ref{Invoking guix-daemon}), liefern @code{/log}-URLs das unveränderte komprimierte Protokoll, mit einer entsprechenden @code{Content-Type}- und/oder @code{Content-Encoding}-Kopfzeile. Wir empfehlen dabei, dass Sie den @command{guix-daemon} mit @option{--log-compression=gzip} ausführen, weil Web-Browser dieses Format automatisch dekomprimieren können, was bei Bzip2-Kompression nicht der Fall ist." #. type: item -#: guix-git/doc/guix.texi:13567 +#: guix-git/doc/guix.texi:13924 #, no-wrap msgid "--port=@var{port}" msgstr "--port=@var{Port}" #. type: itemx -#: guix-git/doc/guix.texi:13568 +#: guix-git/doc/guix.texi:13925 #, no-wrap msgid "-p @var{port}" msgstr "-p @var{Port}" #. type: table -#: guix-git/doc/guix.texi:13570 +#: guix-git/doc/guix.texi:13927 msgid "Listen for HTTP requests on @var{port}." msgstr "Auf HTTP-Anfragen auf diesem @var{Port} lauschen." #. type: item -#: guix-git/doc/guix.texi:13571 +#: guix-git/doc/guix.texi:13928 #, no-wrap msgid "--listen=@var{host}" msgstr "--listen=@var{Host}" #. type: table -#: guix-git/doc/guix.texi:13574 +#: guix-git/doc/guix.texi:13931 msgid "Listen on the network interface for @var{host}. The default is to accept connections from any interface." msgstr "Auf der Netzwerkschnittstelle für den angegebenen @var{Host}, also der angegebenen Rechneradresse, lauschen. Vorgegeben ist, Verbindungen mit jeder Schnittstelle zu akzeptieren." #. type: table -#: guix-git/doc/guix.texi:13579 +#: guix-git/doc/guix.texi:13936 msgid "Change privileges to @var{user} as soon as possible---i.e., once the server socket is open and the signing key has been read." msgstr "So früh wie möglich alle über die Berechtigungen des @var{Benutzer}s hinausgehenden Berechtigungen ablegen@tie{}— d.h.@: sobald der Server-Socket geöffnet und der Signierschlüssel gelesen wurde." #. type: item -#: guix-git/doc/guix.texi:13580 +#: guix-git/doc/guix.texi:13937 #, no-wrap msgid "--compression[=@var{method}[:@var{level}]]" msgstr "--compression[=@var{Methode}[:@var{Stufe}]]" #. type: itemx -#: guix-git/doc/guix.texi:13581 +#: guix-git/doc/guix.texi:13938 #, no-wrap msgid "-C [@var{method}[:@var{level}]]" msgstr "-C [@var{Methode}[:@var{Stufe}]]" #. type: table -#: guix-git/doc/guix.texi:13585 +#: guix-git/doc/guix.texi:13942 msgid "Compress data using the given @var{method} and @var{level}. @var{method} is one of @code{lzip}, @code{zstd}, and @code{gzip}; when @var{method} is omitted, @code{gzip} is used." msgstr "Daten auf der angegebenen Kompressions-@var{Stufe} mit der angegebenen @var{Methode} komprimieren. Als @var{Methode} kann entweder @code{lzip}, @code{zstd} oder @code{gzip} angegeben werden. Wird keine @var{Methode} angegeben, wird @code{gzip} benutzt." #. type: table -#: guix-git/doc/guix.texi:13589 +#: guix-git/doc/guix.texi:13946 msgid "When @var{level} is zero, disable compression. The range 1 to 9 corresponds to different compression levels: 1 is the fastest, and 9 is the best (CPU-intensive). The default is 3." msgstr "Daten auf der angegebenen Kompressions-@var{Stufe} komprimieren. Wird als @var{Stufe} null angegeben, wird Kompression deaktiviert. Der Bereich von 1 bis 9 entspricht unterschiedlichen Kompressionsstufen: 1 ist am schnellsten, während 9 am besten komprimiert (aber den Prozessor mehr auslastet). Der Vorgabewert ist 3." #. type: table -#: guix-git/doc/guix.texi:13596 +#: guix-git/doc/guix.texi:13953 msgid "Usually, @code{lzip} compresses noticeably better than @code{gzip} for a small increase in CPU usage; see @uref{https://nongnu.org/lzip/lzip_benchmark.html,benchmarks on the lzip Web page}. However, @code{lzip} achieves low decompression throughput (on the order of 50@tie{}MiB/s on modern hardware), which can be a bottleneck for someone who downloads over a fast network connection." msgstr "Normalerweise ist die Kompression mit @code{lzip} wesentlich besser als bei @code{gzip}, dafür wird der Prozessor geringfügig stärker ausgelastet; siehe @uref{https://nongnu.org/lzip/lzip_benchmark.html,Vergleichswerte auf dem Webauftritt von lzip}. @code{lzip} erreicht jedoch nur einen niedrigen Durchsatz bei der Dekompression (in der Größenordnung von 50@tie{}MiB/s auf moderner Hardware), was einen Engpass beim Herunterladen über schnelle Netzwerkverbindungen darstellen kann." #. type: table -#: guix-git/doc/guix.texi:13600 +#: guix-git/doc/guix.texi:13957 msgid "The compression ratio of @code{zstd} is between that of @code{lzip} and that of @code{gzip}; its main advantage is a @uref{https://facebook.github.io/zstd/,high decompression speed}." msgstr "Das Kompressionsverhältnis von @code{zstd} liegt zwischen dem von @code{lzip} und dem von @code{gzip}; sein größter Vorteil ist eine @uref{https://facebook.github.io/zstd/,hohe Geschwindigkeit bei der Dekompression}." #. type: table -#: guix-git/doc/guix.texi:13609 +#: guix-git/doc/guix.texi:13966 msgid "Unless @option{--cache} is used, compression occurs on the fly and the compressed streams are not cached. Thus, to reduce load on the machine that runs @command{guix publish}, it may be a good idea to choose a low compression level, to run @command{guix publish} behind a caching proxy, or to use @option{--cache}. Using @option{--cache} has the advantage that it allows @command{guix publish} to add @code{Content-Length} HTTP header to its responses." msgstr "Wenn @option{--cache} nicht übergeben wird, werden Daten dynamisch immer erst dann komprimiert, wenn sie abgeschickt werden; komprimierte Datenströme landen in keinem Zwischenspeicher. Um also die Auslastung der Maschine, auf der @command{guix publish} läuft, zu reduzieren, kann es eine gute Idee sein, eine niedrige Kompressionsstufe zu wählen, @command{guix publish} einen Proxy mit Zwischenspeicher (einen „Caching Proxy“) voranzuschalten, oder @option{--cache} zu benutzen. @option{--cache} zu benutzen, hat den Vorteil, dass @command{guix publish} damit eine @code{Content-Length}-HTTP-Kopfzeile seinen Antworten beifügen kann." #. type: table -#: guix-git/doc/guix.texi:13614 +#: guix-git/doc/guix.texi:13971 msgid "This option can be repeated, in which case every substitute gets compressed using all the selected methods, and all of them are advertised. This is useful when users may not support all the compression methods: they can select the one they support." msgstr "Wenn diese Befehlszeilenoption mehrfach angegeben wird, wird jedes Substitut mit allen ausgewählten Methoden komprimiert und jede davon wird bei Anfragen mitgeteilt. Das ist nützlich, weil Benutzer, bei denen nicht alle Kompressionsmethoden unterstützt werden, die passende wählen können." #. type: item -#: guix-git/doc/guix.texi:13615 +#: guix-git/doc/guix.texi:13972 #, no-wrap msgid "--cache=@var{directory}" msgstr "--cache=@var{Verzeichnis}" #. type: itemx -#: guix-git/doc/guix.texi:13616 +#: guix-git/doc/guix.texi:13973 #, no-wrap msgid "-c @var{directory}" msgstr "-c @var{Verzeichnis}" #. type: table -#: guix-git/doc/guix.texi:13619 +#: guix-git/doc/guix.texi:13976 msgid "Cache archives and meta-data (@code{.narinfo} URLs) to @var{directory} and only serve archives that are in cache." msgstr "Archive und Metadaten (@code{.narinfo}-URLs) in das @var{Verzeichnis} zwischenspeichern und nur solche Archive versenden, die im Zwischenspeicher vorliegen." #. type: table -#: guix-git/doc/guix.texi:13627 +#: guix-git/doc/guix.texi:13984 msgid "When this option is omitted, archives and meta-data are created on-the-fly. This can reduce the available bandwidth, especially when compression is enabled, since this may become CPU-bound. Another drawback of the default mode is that the length of archives is not known in advance, so @command{guix publish} does not add a @code{Content-Length} HTTP header to its responses, which in turn prevents clients from knowing the amount of data being downloaded." msgstr "Wird diese Befehlszeilenoption weggelassen, dann werden Archive und Metadaten „dynamisch“ erst auf eine Anfrage hin erzeugt. Dadurch kann die verfügbare Bandbreite reduziert werden, besonders wenn Kompression aktiviert ist, weil die Operation dann durch die Prozessorleistung beschränkt sein kann. Noch ein Nachteil des voreingestellten Modus ist, dass die Länge der Archive nicht im Voraus bekannt ist, @command{guix publish} also keine @code{Content-Length}-HTTP-Kopfzeile an seine Antworten anfügt, wodurch Clients nicht wissen können, welche Datenmenge noch heruntergeladen werden muss." #. type: table -#: guix-git/doc/guix.texi:13635 +#: guix-git/doc/guix.texi:13992 msgid "Conversely, when @option{--cache} is used, the first request for a store item (@i{via} a @code{.narinfo} URL) triggers a background process to @dfn{bake} the archive---computing its @code{.narinfo} and compressing the archive, if needed. Once the archive is cached in @var{directory}, subsequent requests succeed and are served directly from the cache, which guarantees that clients get the best possible bandwidth." msgstr "Im Gegensatz dazu löst, wenn @option{--cache} benutzt wird, die erste Anfrage nach einem Store-Objekt (über dessen @code{.narinfo}-URL) den Start eines Hintergrundprozesses aus, der das Archiv in den Zwischenspeicher einlagert (auf Englisch sagen wir „bake the archive“), d.h.@: seine @code{.narinfo} wird berechnet und das Archiv, falls nötig, komprimiert. Sobald das Archiv im @var{Verzeichnis} zwischengespeichert wurde, werden nachfolgende Anfragen erfolgreich sein und direkt aus dem Zwischenspeicher bedient, der garantiert, dass Clients optimale Bandbreite genießen." #. type: table -#: guix-git/doc/guix.texi:13642 +#: guix-git/doc/guix.texi:13999 msgid "That first @code{.narinfo} request nonetheless returns 200, provided the requested store item is ``small enough'', below the cache bypass threshold---see @option{--cache-bypass-threshold} below. That way, clients do not have to wait until the archive is baked. For larger store items, the first @code{.narinfo} request returns 404, meaning that clients have to wait until the archive is baked." msgstr "Die erste Anfrage nach einer @code{.narinfo} wird trotzdem 200 zurückliefern, wenn das angefragte Store-Objekt „klein genug“ ist, also kleiner als der Schwellwert für die Zwischenspeicherumgehung, siehe @option{--cache-bypass-threshold} unten. So müssen Clients nicht darauf warten, dass das Archiv eingelagert wurde. Bei größeren Store-Objekten liefert die erste @code{.narinfo}-Anfrage 404 zurück, was bedeutet, dass Clients warten müssen, bis das Archiv eingelagert wurde." #. type: table -#: guix-git/doc/guix.texi:13646 +#: guix-git/doc/guix.texi:14003 msgid "The ``baking'' process is performed by worker threads. By default, one thread per CPU core is created, but this can be customized. See @option{--workers} below." msgstr "Der Prozess zum Einlagern wird durch Worker-Threads umgesetzt. Der Vorgabe entsprechend wird dazu pro Prozessorkern ein Thread erzeugt, aber dieses Verhalten kann angepasst werden. Siehe @option{--workers} weiter unten." #. type: table -#: guix-git/doc/guix.texi:13649 +#: guix-git/doc/guix.texi:14006 msgid "When @option{--ttl} is used, cached entries are automatically deleted when they have expired." msgstr "Wird @option{--ttl} verwendet, werden zwischengespeicherte Einträge automatisch gelöscht, sobald die dabei angegebene Zeit abgelaufen ist." #. type: item -#: guix-git/doc/guix.texi:13650 +#: guix-git/doc/guix.texi:14007 #, no-wrap msgid "--workers=@var{N}" msgstr "--workers=@var{N}" #. type: table -#: guix-git/doc/guix.texi:13653 +#: guix-git/doc/guix.texi:14010 msgid "When @option{--cache} is used, request the allocation of @var{N} worker threads to ``bake'' archives." msgstr "Wird @option{--cache} benutzt, wird die Reservierung von @var{N} Worker-Threads angefragt, um Archive einzulagern." #. type: item -#: guix-git/doc/guix.texi:13654 +#: guix-git/doc/guix.texi:14011 #, no-wrap msgid "--ttl=@var{ttl}" msgstr "--ttl=@var{ttl}" #. type: table -#: guix-git/doc/guix.texi:13658 +#: guix-git/doc/guix.texi:14015 msgid "Produce @code{Cache-Control} HTTP headers that advertise a time-to-live (TTL) of @var{ttl}. @var{ttl} must denote a duration: @code{5d} means 5 days, @code{1m} means 1 month, and so on." msgstr "@code{Cache-Control}-HTTP-Kopfzeilen erzeugen, die eine Time-to-live (TTL) von @var{ttl} signalisieren. Für @var{ttl} muss eine Dauer (mit dem Anfangsbuchstaben der Maßeinheit der Dauer im Englischen) angegeben werden: @code{5d} bedeutet 5 Tage, @code{1m} bedeutet 1 Monat und so weiter." #. type: table -#: guix-git/doc/guix.texi:13663 +#: guix-git/doc/guix.texi:14020 msgid "This allows the user's Guix to keep substitute information in cache for @var{ttl}. However, note that @code{guix publish} does not itself guarantee that the store items it provides will indeed remain available for as long as @var{ttl}." msgstr "Das ermöglicht es Guix, Substitutinformationen @var{ttl} lang zwischenzuspeichern. Beachten Sie allerdings, dass @code{guix publish} selbst @emph{nicht} garantiert, dass die davon angebotenen Store-Objekte so lange verfügbar bleiben, wie es die @var{ttl} vorsieht." #. type: table -#: guix-git/doc/guix.texi:13667 +#: guix-git/doc/guix.texi:14024 msgid "Additionally, when @option{--cache} is used, cached entries that have not been accessed for @var{ttl} and that no longer have a corresponding item in the store, may be deleted." msgstr "Des Weiteren können bei Nutzung von @option{--cache} die zwischengespeicherten Einträge gelöscht werden, wenn auf sie @var{ttl} lang nicht zugegriffen wurde und kein ihnen entsprechendes Objekt mehr im Store existiert." #. type: item -#: guix-git/doc/guix.texi:13668 +#: guix-git/doc/guix.texi:14025 #, no-wrap msgid "--negative-ttl=@var{ttl}" msgstr "--negative-ttl=@var{ttl}" #. type: table -#: guix-git/doc/guix.texi:13673 +#: guix-git/doc/guix.texi:14030 msgid "Similarly produce @code{Cache-Control} HTTP headers to advertise the time-to-live (TTL) of @emph{negative} lookups---missing store items, for which the HTTP 404 code is returned. By default, no negative TTL is advertised." msgstr "Eben solche @code{Cache-Control}-HTTP-Kopfzeilen für erfolglose (negative) Suchen erzeugen, um eine Time-to-live (TTL) zu signalisieren, wenn Store-Objekte fehlen und mit dem HTTP-Status-Code 404 geantwortet wird. Nach Vorgabe wird für negative Antworten @emph{keine} TTL signalisiert." #. type: table -#: guix-git/doc/guix.texi:13677 +#: guix-git/doc/guix.texi:14034 msgid "This parameter can help adjust server load and substitute latency by instructing cooperating clients to be more or less patient when a store item is missing." msgstr "Dieser Parameter kann helfen, die Last auf dem Server und die Verzögerung zu regulieren, weil folgsame Clients angewiesen werden, für diese Zeit geduldig zu warten, wenn ein Store-Objekt fehlt." #. type: item -#: guix-git/doc/guix.texi:13678 +#: guix-git/doc/guix.texi:14035 #, no-wrap msgid "--cache-bypass-threshold=@var{size}" msgstr "--cache-bypass-threshold=@var{Größe}" #. type: table -#: guix-git/doc/guix.texi:13683 +#: guix-git/doc/guix.texi:14040 msgid "When used in conjunction with @option{--cache}, store items smaller than @var{size} are immediately available, even when they are not yet in cache. @var{size} is a size in bytes, or it can be suffixed by @code{M} for megabytes and so on. The default is @code{10M}." msgstr "Wird dies in Verbindung mit @option{--cache} angegeben, werden Store-Objekte kleiner als die @var{Größe} sofort verfügbar sein, obwohl sie noch nicht in den Zwischenspeicher eingelagert wurden. Die @var{Größe} gibt die Größe in Bytes an oder ist mit einem Suffix @code{M} für Megabyte und so weiter versehen. Die Vorgabe ist @code{10M}." #. type: table -#: guix-git/doc/guix.texi:13688 +#: guix-git/doc/guix.texi:14045 msgid "``Cache bypass'' allows you to reduce the publication delay for clients at the expense of possibly additional I/O and CPU use on the server side: depending on the client access patterns, those store items can end up being baked several times until a copy is available in cache." msgstr "Durch diese „Zwischenspeicherumgehung“ lässt sich die Verzögerung bis zur Veröffentlichung an Clients reduzieren, auf Kosten zusätzlicher Ein-/Ausgaben und CPU-Auslastung für den Server. Je nachdem, welche Zugriffsmuster Clients haben, werden diese Store-Objekte vielleicht mehrfach zur Einlagerung vorbereitet, ehe eine Kopie davon im Zwischenspeicher verfügbar wird." #. type: table -#: guix-git/doc/guix.texi:13692 +#: guix-git/doc/guix.texi:14049 msgid "Increasing the threshold may be useful for sites that have few users, or to guarantee that users get substitutes even for store items that are not popular." msgstr "Wenn ein Anbieter nur wenige Nutzer unterhält, kann es helfen, den Schwellwert zu erhöhen, oder auch wenn garantiert werden soll, dass es auch für wenig beliebte Store-Objekte Substitute gibt." #. type: item -#: guix-git/doc/guix.texi:13693 +#: guix-git/doc/guix.texi:14050 #, no-wrap msgid "--nar-path=@var{path}" msgstr "--nar-path=@var{Pfad}" #. type: table -#: guix-git/doc/guix.texi:13696 +#: guix-git/doc/guix.texi:14053 msgid "Use @var{path} as the prefix for the URLs of ``nar'' files (@pxref{Invoking guix archive, normalized archives})." msgstr "Den @var{Pfad} als Präfix für die URLs von „nar“-Dateien benutzen (siehe @ref{Invoking guix archive, Normalisierte Archive})." #. type: table -#: guix-git/doc/guix.texi:13700 +#: guix-git/doc/guix.texi:14057 msgid "By default, nars are served at a URL such as @code{/nar/gzip/@dots{}-coreutils-8.25}. This option allows you to change the @code{/nar} part to @var{path}." msgstr "Vorgegeben ist, dass Nars unter einer URL mit @code{/nar/gzip/…-coreutils-8.25} angeboten werden. Mit dieser Befehlszeilenoption können Sie den @code{/nar}-Teil durch den angegebenen @var{Pfad} ersetzen." #. type: item -#: guix-git/doc/guix.texi:13701 +#: guix-git/doc/guix.texi:14058 #, no-wrap msgid "--public-key=@var{file}" msgstr "--public-key=@var{Datei}" #. type: itemx -#: guix-git/doc/guix.texi:13702 +#: guix-git/doc/guix.texi:14059 #, no-wrap msgid "--private-key=@var{file}" msgstr "--private-key=@var{Datei}" #. type: table -#: guix-git/doc/guix.texi:13705 guix-git/doc/guix.texi:29141 -#: guix-git/doc/guix.texi:29178 +#: guix-git/doc/guix.texi:14062 guix-git/doc/guix.texi:29478 +#: guix-git/doc/guix.texi:29515 msgid "Use the specific @var{file}s as the public/private key pair used to sign the store items being published." msgstr "Die angegebenen @var{Datei}en als das Paar aus öffentlichem und privatem Schlüssel zum Signieren veröffentlichter Store-Objekte benutzen." #. type: table -#: guix-git/doc/guix.texi:13712 +#: guix-git/doc/guix.texi:14069 msgid "The files must correspond to the same key pair (the private key is used for signing and the public key is merely advertised in the signature metadata). They must contain keys in the canonical s-expression format as produced by @command{guix archive --generate-key} (@pxref{Invoking guix archive}). By default, @file{/etc/guix/signing-key.pub} and @file{/etc/guix/signing-key.sec} are used." msgstr "Die Dateien müssen demselben Schlüsselpaar entsprechen (der private Schlüssel wird zum Signieren benutzt, der öffentliche Schlüssel wird lediglich in den Metadaten der Signatur aufgeführt). Die Dateien müssen Schlüssel im kanonischen („canonical“) S-Ausdruck-Format enthalten, wie es von @command{guix archive --generate-key} erzeugt wird (siehe @ref{Invoking guix archive}). Vorgegeben ist, dass @file{/etc/guix/signing-key.pub} und @file{/etc/guix/signing-key.sec} benutzt werden." #. type: item -#: guix-git/doc/guix.texi:13713 +#: guix-git/doc/guix.texi:14070 #, no-wrap msgid "--repl[=@var{port}]" msgstr "--repl[=@var{Port}]" #. type: itemx -#: guix-git/doc/guix.texi:13714 +#: guix-git/doc/guix.texi:14071 #, no-wrap msgid "-r [@var{port}]" msgstr "-r [@var{Port}]" #. type: table -#: guix-git/doc/guix.texi:13718 +#: guix-git/doc/guix.texi:14075 msgid "Spawn a Guile REPL server (@pxref{REPL Servers,,, guile, GNU Guile Reference Manual}) on @var{port} (37146 by default). This is used primarily for debugging a running @command{guix publish} server." msgstr "Einen Guile-REPL-Server (siehe @ref{REPL Servers,,, guile, Referenzhandbuch zu GNU Guile}) auf diesem @var{Port} starten (37146 ist voreingestellt). Dies kann zur Fehlersuche auf einem laufenden „@command{guix publish}“-Server benutzt werden." #. type: Plain text -#: guix-git/doc/guix.texi:13724 +#: guix-git/doc/guix.texi:14081 msgid "Enabling @command{guix publish} on Guix System is a one-liner: just instantiate a @code{guix-publish-service-type} service in the @code{services} field of the @code{operating-system} declaration (@pxref{guix-publish-service-type, @code{guix-publish-service-type}})." msgstr "@command{guix publish} auf einem „Guix System“-System zu aktivieren ist ein Einzeiler: Instanziieren Sie einfach einen @code{guix-publish-service-type}-Dienst im @code{services}-Feld Ihres @code{operating-system}-Objekts zur Betriebssystemdeklaration (siehe @ref{guix-publish-service-type, @code{guix-publish-service-type}})." #. type: Plain text -#: guix-git/doc/guix.texi:13727 +#: guix-git/doc/guix.texi:14084 msgid "If you are instead running Guix on a ``foreign distro'', follow these instructions:" msgstr "Falls Sie Guix aber auf einer „Fremddistribution“ laufen lassen, folgen Sie folgenden Anweisungen:" #. type: itemize -#: guix-git/doc/guix.texi:13731 +#: guix-git/doc/guix.texi:14088 msgid "If your host distro uses the systemd init system:" msgstr "Wenn Ihre Wirtsdistribution systemd als „init“-System benutzt:" #. type: example -#: guix-git/doc/guix.texi:13736 +#: guix-git/doc/guix.texi:14093 #, no-wrap msgid "" "# ln -s ~root/.guix-profile/lib/systemd/system/guix-publish.service \\\n" @@ -25246,7 +25900,7 @@ msgstr "" "# systemctl start guix-publish && systemctl enable guix-publish\n" #. type: example -#: guix-git/doc/guix.texi:13744 +#: guix-git/doc/guix.texi:14101 #, no-wrap msgid "" "# ln -s ~root/.guix-profile/lib/upstart/system/guix-publish.conf /etc/init/\n" @@ -25256,56 +25910,56 @@ msgstr "" "# start guix-publish\n" #. type: itemize -#: guix-git/doc/guix.texi:13748 +#: guix-git/doc/guix.texi:14105 msgid "Otherwise, proceed similarly with your distro's init system." msgstr "Verfahren Sie andernfalls auf die gleiche Art für das „init“-System, das Ihre Distribution verwendet." #. type: section -#: guix-git/doc/guix.texi:13751 +#: guix-git/doc/guix.texi:14108 #, no-wrap msgid "Invoking @command{guix challenge}" msgstr "@command{guix challenge} aufrufen" #. type: cindex -#: guix-git/doc/guix.texi:13754 +#: guix-git/doc/guix.texi:14111 #, no-wrap msgid "verifiable builds" msgstr "verifizierbare Erstellungen" #. type: command{#1} -#: guix-git/doc/guix.texi:13755 +#: guix-git/doc/guix.texi:14112 #, no-wrap msgid "guix challenge" msgstr "guix challenge" #. type: cindex -#: guix-git/doc/guix.texi:13756 +#: guix-git/doc/guix.texi:14113 #, no-wrap msgid "challenge" msgstr "Anfechten" #. type: Plain text -#: guix-git/doc/guix.texi:13761 +#: guix-git/doc/guix.texi:14118 msgid "Do the binaries provided by this server really correspond to the source code it claims to build? Is a package build process deterministic? These are the questions the @command{guix challenge} command attempts to answer." msgstr "Entsprechen die von diesem Server gelieferten Binärdateien tatsächlich dem Quellcode, aus dem sie angeblich erzeugt wurden? Ist ein Paketerstellungsprozess deterministisch? Diese Fragen versucht @command{guix challenge} zu beantworten." #. type: Plain text -#: guix-git/doc/guix.texi:13769 +#: guix-git/doc/guix.texi:14126 msgid "The former is obviously an important question: Before using a substitute server (@pxref{Substitutes}), one had better @emph{verify} that it provides the right binaries, and thus @emph{challenge} it. The latter is what enables the former: If package builds are deterministic, then independent builds of the package should yield the exact same result, bit for bit; if a server provides a binary different from the one obtained locally, it may be either corrupt or malicious." msgstr "Die erste Frage ist offensichtlich wichtig: Bevor man einen Substitutserver benutzt (siehe @ref{Substitutes}), @emph{verifiziert} man besser, dass er die richtigen Binärdateien liefert, d.h.@: man @emph{fechtet sie an}. Die letzte Frage macht die erste möglich: Wenn Paketerstellungen deterministisch sind, müssten voneinander unabhängige Erstellungen genau dasselbe Ergebnis liefern, Bit für Bit; wenn ein Server mit einer anderen Binärdatei als der lokal erstellten Binärdatei antwortet, ist diese entweder beschädigt oder bösartig." #. type: Plain text -#: guix-git/doc/guix.texi:13778 +#: guix-git/doc/guix.texi:14135 msgid "We know that the hash that shows up in @file{/gnu/store} file names is the hash of all the inputs of the process that built the file or directory---compilers, libraries, build scripts, etc. (@pxref{Introduction}). Assuming deterministic build processes, one store file name should map to exactly one build output. @command{guix challenge} checks whether there is, indeed, a single mapping by comparing the build outputs of several independent builds of any given store item." msgstr "Wir wissen, dass die in @file{/gnu/store}-Dateinamen auftauchende Hash-Prüfsumme der Hash aller Eingaben des Prozesses ist, mit dem die Datei oder das Verzeichnis erstellt wurde@tie{}— Compiler, Bibliotheken, Erstellungsskripts und so weiter (siehe @ref{Introduction}). Wenn wir von deterministischen Erstellungen ausgehen, sollte ein Store-Dateiname also auf genau eine Erstellungsausgabe abgebildet werden. Mit @command{guix challenge} prüft man, ob es tatsächlich eine eindeutige Abbildung gibt, indem die Erstellungsausgaben mehrerer unabhängiger Erstellungen jedes angegebenen Store-Objekts verglichen werden." #. type: Plain text -#: guix-git/doc/guix.texi:13780 +#: guix-git/doc/guix.texi:14137 msgid "The command output looks like this:" msgstr "Die Ausgabe des Befehls sieht so aus:" #. type: smallexample -#: guix-git/doc/guix.texi:13792 +#: guix-git/doc/guix.texi:14149 #, no-wrap msgid "" "$ guix challenge --substitute-urls=\"https://@value{SUBSTITUTE-SERVER-1} https://guix.example.org\"\n" @@ -25333,7 +25987,7 @@ msgstr "" "\n" #. type: smallexample -#: guix-git/doc/guix.texi:13799 +#: guix-git/doc/guix.texi:14156 #, no-wrap msgid "" "/gnu/store/@dots{}-git-2.5.0 contents differ:\n" @@ -25353,7 +26007,7 @@ msgstr "" "\n" #. type: smallexample -#: guix-git/doc/guix.texi:13806 +#: guix-git/doc/guix.texi:14163 #, no-wrap msgid "" "/gnu/store/@dots{}-pius-2.1.1 contents differ:\n" @@ -25373,7 +26027,7 @@ msgstr "" "\n" #. type: smallexample -#: guix-git/doc/guix.texi:13808 +#: guix-git/doc/guix.texi:14165 #, no-wrap msgid "" "@dots{}\n" @@ -25383,7 +26037,7 @@ msgstr "" "\n" #. type: smallexample -#: guix-git/doc/guix.texi:13813 +#: guix-git/doc/guix.texi:14170 #, no-wrap msgid "" "6,406 store items were analyzed:\n" @@ -25397,28 +26051,28 @@ msgstr "" " @tie{}— 1,132 (17.7%) blieben ergebnislos\n" #. type: Plain text -#: guix-git/doc/guix.texi:13821 +#: guix-git/doc/guix.texi:14178 msgid "In this example, @command{guix challenge} first scans the store to determine the set of locally-built derivations---as opposed to store items that were downloaded from a substitute server---and then queries all the substitute servers. It then reports those store items for which the servers obtained a result different from the local build." msgstr "In diesem Beispiel wird mit @command{guix challenge} zuerst die Menge lokal erstellter Ableitungen im Store ermittelt@tie{}— im Gegensatz zu von einem Substitserver heruntergeladenen Store-Objekten@tie{}— und dann werden alle Substitutserver angefragt. Diejenigen Store-Objekte, bei denen der Server ein anderes Ergebnis berechnet hat als die lokale Erstellung, werden gemeldet." #. type: cindex -#: guix-git/doc/guix.texi:13822 +#: guix-git/doc/guix.texi:14179 #, no-wrap msgid "non-determinism, in package builds" msgstr "Nichtdeterminismus, in Paketerstellungen" #. type: Plain text -#: guix-git/doc/guix.texi:13833 +#: guix-git/doc/guix.texi:14190 msgid "As an example, @code{guix.example.org} always gets a different answer. Conversely, @code{@value{SUBSTITUTE-SERVER-1}} agrees with local builds, except in the case of Git. This might indicate that the build process of Git is non-deterministic, meaning that its output varies as a function of various things that Guix does not fully control, in spite of building packages in isolated environments (@pxref{Features}). Most common sources of non-determinism include the addition of timestamps in build results, the inclusion of random numbers, and directory listings sorted by inode number. See @uref{https://reproducible-builds.org/docs/}, for more information." msgstr "Nehmen wir zum Beispiel an, @code{guix.example.org} gibt uns immer eine verschiedene Antwort, aber @code{@value{SUBSTITUTE-SERVER-1}} stimmt mit lokalen Erstellungen überein, @emph{außer} im Fall von Git. Das könnte ein Hinweis sein, dass der Erstellungsprozess von Git nichtdeterministisch ist; das bedeutet, seine Ausgabe variiert abhängig von verschiedenen Umständen, die Guix nicht vollends kontrollieren kann, obwohl es Pakete in isolierten Umgebungen erstellt (siehe @ref{Features}). Zu den häufigsten Quellen von Nichtdeterminismus gehören das Einsetzen von Zeitstempeln innerhalb der Erstellungsgebnisse, das Einsetzen von Zufallszahlen und von Auflistungen eines Verzeichnisinhalts sortiert nach der Inode-Nummer. Siehe @uref{https://reproducible-builds.org/docs/} für mehr Informationen." #. type: Plain text -#: guix-git/doc/guix.texi:13836 +#: guix-git/doc/guix.texi:14193 msgid "To find out what is wrong with this Git binary, the easiest approach is to run:" msgstr "Um herauszufinden, was mit dieser Git-Binärdatei nicht stimmt, ist es am leichtesten, einfach diesen Befehl auszuführen:" #. type: example -#: guix-git/doc/guix.texi:13841 +#: guix-git/doc/guix.texi:14198 #, no-wrap msgid "" "guix challenge git \\\n" @@ -25430,17 +26084,17 @@ msgstr "" " --substitute-urls=\"https://@value{SUBSTITUTE-SERVER-1} https://guix.example.org\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:13845 +#: guix-git/doc/guix.texi:14202 msgid "This automatically invokes @command{diffoscope}, which displays detailed information about files that differ." msgstr "Dadurch wird @command{diffoscope} automatisch aufgerufen, um detaillierte Informationen über sich unterscheidende Dateien anzuzeigen." #. type: Plain text -#: guix-git/doc/guix.texi:13848 +#: guix-git/doc/guix.texi:14205 msgid "Alternatively, we can do something along these lines (@pxref{Invoking guix archive}):" msgstr "Alternativ können wir so etwas machen (siehe @ref{Invoking guix archive}):" #. type: example -#: guix-git/doc/guix.texi:13853 +#: guix-git/doc/guix.texi:14210 #, no-wrap msgid "" "$ wget -q -O - https://@value{SUBSTITUTE-SERVER-1}/nar/lzip/@dots{}-git-2.5.0 \\\n" @@ -25452,160 +26106,160 @@ msgstr "" "$ diff -ur --no-dereference /gnu/store/…-git.2.5.0 /tmp/git\n" #. type: Plain text -#: guix-git/doc/guix.texi:13862 +#: guix-git/doc/guix.texi:14219 msgid "This command shows the difference between the files resulting from the local build, and the files resulting from the build on @code{@value{SUBSTITUTE-SERVER-1}} (@pxref{Overview, Comparing and Merging Files,, diffutils, Comparing and Merging Files}). The @command{diff} command works great for text files. When binary files differ, a better option is @uref{https://diffoscope.org/, Diffoscope}, a tool that helps visualize differences for all kinds of files." msgstr "Dieser Befehl zeigt die Unterschiede zwischen den Dateien, die sich aus der lokalen Erstellung ergeben, und den Dateien, die sich aus der Erstellung auf @code{@value{SUBSTITUTE-SERVER-1}} ergeben (siehe @ref{Overview, Dateien vergleichen und zusammenführen,, diffutils, Comparing and Merging Files}). Der Befehl @command{diff} funktioniert großartig für Textdateien. Wenn sich Binärdateien unterscheiden, ist @uref{https://diffoscope.org/, Diffoscope} die bessere Wahl: Es ist ein hilfreiches Werkzeug, das Unterschiede in allen Arten von Dateien visualisiert." #. type: Plain text -#: guix-git/doc/guix.texi:13870 +#: guix-git/doc/guix.texi:14227 msgid "Once you have done that work, you can tell whether the differences are due to a non-deterministic build process or to a malicious server. We try hard to remove sources of non-determinism in packages to make it easier to verify substitutes, but of course, this is a process that involves not just Guix, but a large part of the free software community. In the meantime, @command{guix challenge} is one tool to help address the problem." msgstr "Sobald Sie mit dieser Arbeit fertig sind, können Sie erkennen, ob die Unterschiede aufgrund eines nichtdeterministischen Erstellungsprozesses oder wegen einem bösartigen Server zustande kommen. Wir geben uns Mühe, Quellen von Nichtdeterminismus in Paketen zu entfernen, damit Substitute leichter verifiziert werden können, aber natürlich ist an diesem Prozess nicht nur Guix, sondern ein großer Teil der Freie-Software-Gemeinschaft beteiligt. In der Zwischenzeit ist @command{guix challenge} eines der Werkzeuge, die das Problem anzugehen helfen." #. type: Plain text -#: guix-git/doc/guix.texi:13874 +#: guix-git/doc/guix.texi:14231 msgid "If you are writing packages for Guix, you are encouraged to check whether @code{@value{SUBSTITUTE-SERVER-1}} and other substitute servers obtain the same build result as you did with:" msgstr "Wenn Sie ein Paket für Guix schreiben, ermutigen wir Sie, zu überprüfen, ob @code{@value{SUBSTITUTE-SERVER-1}} und andere Substitutserver dasselbe Erstellungsergebnis bekommen, das Sie bekommen haben. Das geht so:" #. type: example -#: guix-git/doc/guix.texi:13877 +#: guix-git/doc/guix.texi:14234 #, no-wrap msgid "$ guix challenge @var{package}\n" msgstr "$ guix challenge @var{Paket}\n" #. type: Plain text -#: guix-git/doc/guix.texi:13882 +#: guix-git/doc/guix.texi:14239 msgid "where @var{package} is a package specification such as @code{guile@@2.0} or @code{glibc:debug}." msgstr "Dabei wird mit @var{Paket} eine Paketspezifikation wie @code{guile@@2.0} oder @code{glibc:debug} bezeichnet." #. type: example -#: guix-git/doc/guix.texi:13887 +#: guix-git/doc/guix.texi:14244 #, no-wrap msgid "guix challenge @var{options} [@var{packages}@dots{}]\n" msgstr "guix challenge @var{Optionen} [@var{Pakete}…]\n" #. type: Plain text -#: guix-git/doc/guix.texi:13894 +#: guix-git/doc/guix.texi:14251 msgid "When a difference is found between the hash of a locally-built item and that of a server-provided substitute, or among substitutes provided by different servers, the command displays it as in the example above and its exit code is 2 (other non-zero exit codes denote other kinds of errors)." msgstr "Wird ein Unterschied zwischen der Hash-Prüfsumme des lokal erstellten Objekts und dem vom Server gelieferten Substitut festgestellt, oder zwischen den Substituten von unterschiedlichen Servern, dann wird der Befehl dies wie im obigen Beispiel anzeigen und mit dem Exit-Code 2 terminieren (andere Exit-Codes außer null stehen für andere Arten von Fehlern)." #. type: Plain text -#: guix-git/doc/guix.texi:13896 +#: guix-git/doc/guix.texi:14253 msgid "The one option that matters is:" msgstr "Die eine, wichtige Befehlszeilenoption ist:" #. type: table -#: guix-git/doc/guix.texi:13902 +#: guix-git/doc/guix.texi:14259 msgid "Consider @var{urls} the whitespace-separated list of substitute source URLs to compare to." msgstr "Die @var{URLs} als durch Leerraumzeichen getrennte Liste von Substitut-Quell-URLs benutzen. mit denen verglichen wird." #. type: item -#: guix-git/doc/guix.texi:13903 +#: guix-git/doc/guix.texi:14260 #, no-wrap msgid "--diff=@var{mode}" msgstr "--diff=@var{Modus}" #. type: table -#: guix-git/doc/guix.texi:13905 +#: guix-git/doc/guix.texi:14262 msgid "Upon mismatches, show differences according to @var{mode}, one of:" msgstr "Wenn sich Dateien unterscheiden, diese Unterschiede entsprechend dem @var{Modus} anzeigen. Dieser kann einer der folgenden sein:" #. type: item -#: guix-git/doc/guix.texi:13907 +#: guix-git/doc/guix.texi:14264 #, no-wrap msgid "@code{simple} (the default)" msgstr "@code{simple} (die Vorgabe)" #. type: table -#: guix-git/doc/guix.texi:13909 +#: guix-git/doc/guix.texi:14266 msgid "Show the list of files that differ." msgstr "Zeige die Liste sich unterscheidender Dateien." #. type: code{#1} -#: guix-git/doc/guix.texi:13910 +#: guix-git/doc/guix.texi:14267 #, no-wrap msgid "diffoscope" msgstr "diffoscope" #. type: var{#1} -#: guix-git/doc/guix.texi:13911 +#: guix-git/doc/guix.texi:14268 #, no-wrap msgid "command" msgstr "Befehl" #. type: table -#: guix-git/doc/guix.texi:13914 +#: guix-git/doc/guix.texi:14271 msgid "Invoke @uref{https://diffoscope.org/, Diffoscope}, passing it two directories whose contents do not match." msgstr "@uref{https://diffoscope.org/, Diffoscope} aufrufen und ihm zwei Verzeichnisse mit verschiedenem Inhalt übergeben." #. type: table -#: guix-git/doc/guix.texi:13917 +#: guix-git/doc/guix.texi:14274 msgid "When @var{command} is an absolute file name, run @var{command} instead of Diffoscope." msgstr "Wenn der @var{Befehl} ein absoluter Dateiname ist, wird der @var{Befehl} anstelle von Diffoscope ausgeführt." #. type: table -#: guix-git/doc/guix.texi:13920 +#: guix-git/doc/guix.texi:14277 msgid "Do not show further details about the differences." msgstr "Keine näheren Details zu Unterschieden anzeigen." #. type: table -#: guix-git/doc/guix.texi:13925 +#: guix-git/doc/guix.texi:14282 msgid "Thus, unless @option{--diff=none} is passed, @command{guix challenge} downloads the store items from the given substitute servers so that it can compare them." msgstr "Solange kein @option{--diff=none} angegeben wird, werden durch @command{guix challenge} also Store-Objekte von den festgelegten Substitutservern heruntergeladen, damit diese verglichen werden können." #. type: item -#: guix-git/doc/guix.texi:13926 +#: guix-git/doc/guix.texi:14283 #, no-wrap msgid "--verbose" msgstr "--verbose" #. type: itemx -#: guix-git/doc/guix.texi:13927 +#: guix-git/doc/guix.texi:14284 #, no-wrap msgid "-v" msgstr "-v" #. type: table -#: guix-git/doc/guix.texi:13930 +#: guix-git/doc/guix.texi:14287 msgid "Show details about matches (identical contents) in addition to information about mismatches." msgstr "Details auch zu Übereinstimmungen (deren Inhalt identisch ist) ausgeben, zusätzlich zu Informationen über Unterschiede." #. type: section -#: guix-git/doc/guix.texi:13934 +#: guix-git/doc/guix.texi:14291 #, no-wrap msgid "Invoking @command{guix copy}" msgstr "@command{guix copy} aufrufen" #. type: cindex -#: guix-git/doc/guix.texi:13936 +#: guix-git/doc/guix.texi:14293 #, no-wrap msgid "copy, of store items, over SSH" msgstr "Kopieren, von Store-Objekten, über SSH" #. type: cindex -#: guix-git/doc/guix.texi:13937 +#: guix-git/doc/guix.texi:14294 #, no-wrap msgid "SSH, copy of store items" msgstr "SSH, Kopieren von Store-Objekten" #. type: cindex -#: guix-git/doc/guix.texi:13938 +#: guix-git/doc/guix.texi:14295 #, no-wrap msgid "sharing store items across machines" msgstr "Store-Objekte zwischen Maschinen teilen" #. type: cindex -#: guix-git/doc/guix.texi:13939 +#: guix-git/doc/guix.texi:14296 #, no-wrap msgid "transferring store items across machines" msgstr "Übertragen von Store-Objekten zwischen Maschinen" #. type: Plain text -#: guix-git/doc/guix.texi:13946 +#: guix-git/doc/guix.texi:14303 msgid "The @command{guix copy} command copies items from the store of one machine to that of another machine over a secure shell (SSH) connection@footnote{This command is available only when Guile-SSH was found. @xref{Requirements}, for details.}. For example, the following command copies the @code{coreutils} package, the user's profile, and all their dependencies over to @var{host}, logged in as @var{user}:" msgstr "Der Befehl @command{guix copy} kopiert Objekte aus dem Store einer Maschine in den Store einer anderen Maschine mittels einer Secure-Shell-Verbindung (kurz SSH-Verbindung)@footnote{Dieser Befehl steht nur dann zur Verfügung, wenn Guile-SSH gefunden werden kann. Siehe @ref{Requirements} für Details.}. Zum Beispiel kopiert der folgende Befehl das Paket @code{coreutils}, das Profil des Benutzers und all deren Abhängigkeiten auf den anderen @var{Rechner}, dazu meldet sich Guix als @var{Benutzer} an:" #. type: example -#: guix-git/doc/guix.texi:13950 +#: guix-git/doc/guix.texi:14307 #, no-wrap msgid "" "guix copy --to=@var{user}@@@var{host} \\\n" @@ -25615,192 +26269,192 @@ msgstr "" " coreutils $(readlink -f ~/.guix-profile)\n" #. type: Plain text -#: guix-git/doc/guix.texi:13954 +#: guix-git/doc/guix.texi:14311 msgid "If some of the items to be copied are already present on @var{host}, they are not actually sent." msgstr "Wenn manche der zu kopierenden Objekte schon auf dem anderen @var{Rechner} vorliegen, werden sie tatsächlich @emph{nicht} übertragen." #. type: Plain text -#: guix-git/doc/guix.texi:13957 +#: guix-git/doc/guix.texi:14314 msgid "The command below retrieves @code{libreoffice} and @code{gimp} from @var{host}, assuming they are available there:" msgstr "Der folgende Befehl bezieht @code{libreoffice} und @code{gimp} von dem @var{Rechner}, vorausgesetzt sie sind dort verfügbar:" #. type: example -#: guix-git/doc/guix.texi:13960 +#: guix-git/doc/guix.texi:14317 #, no-wrap msgid "guix copy --from=@var{host} libreoffice gimp\n" msgstr "guix copy --from=@var{host} libreoffice gimp\n" #. type: Plain text -#: guix-git/doc/guix.texi:13965 +#: guix-git/doc/guix.texi:14322 msgid "The SSH connection is established using the Guile-SSH client, which is compatible with OpenSSH: it honors @file{~/.ssh/known_hosts} and @file{~/.ssh/config}, and uses the SSH agent for authentication." msgstr "Die SSH-Verbindung wird mit dem Guile-SSH-Client hergestellt, der mit OpenSSH kompatibel ist: Er berücksichtigt @file{~/.ssh/known_hosts} und @file{~/.ssh/config} und verwendet den SSH-Agenten zur Authentifizierung." #. type: Plain text -#: guix-git/doc/guix.texi:13971 +#: guix-git/doc/guix.texi:14328 msgid "The key used to sign items that are sent must be accepted by the remote machine. Likewise, the key used by the remote machine to sign items you are retrieving must be in @file{/etc/guix/acl} so it is accepted by your own daemon. @xref{Invoking guix archive}, for more information about store item authentication." msgstr "Der Schlüssel, mit dem gesendete Objekte signiert sind, muss von der entfernten Maschine akzeptiert werden. Ebenso muss der Schlüssel, mit dem die Objekte signiert sind, die Sie von der entfernten Maschine empfangen, in Ihrer Datei @file{/etc/guix/acl} eingetragen sein, damit Ihr Daemon sie akzeptiert. Siehe @ref{Invoking guix archive} für mehr Informationen über die Authentifizierung von Store-Objekten." #. type: example -#: guix-git/doc/guix.texi:13976 +#: guix-git/doc/guix.texi:14333 #, no-wrap msgid "guix copy [--to=@var{spec}|--from=@var{spec}] @var{items}@dots{}\n" msgstr "guix copy [--to=@var{Spezifikation}|--from=@var{Spezifikation}] @var{Objekte}…\n" #. type: Plain text -#: guix-git/doc/guix.texi:13979 +#: guix-git/doc/guix.texi:14336 msgid "You must always specify one of the following options:" msgstr "Sie müssen immer eine der folgenden Befehlszeilenoptionen angeben:" #. type: item -#: guix-git/doc/guix.texi:13981 +#: guix-git/doc/guix.texi:14338 #, no-wrap msgid "--to=@var{spec}" msgstr "--to=@var{Spezifikation}" #. type: itemx -#: guix-git/doc/guix.texi:13982 +#: guix-git/doc/guix.texi:14339 #, no-wrap msgid "--from=@var{spec}" msgstr "--from=@var{Spezifikation}" #. type: table -#: guix-git/doc/guix.texi:13986 +#: guix-git/doc/guix.texi:14343 msgid "Specify the host to send to or receive from. @var{spec} must be an SSH spec such as @code{example.org}, @code{charlie@@example.org}, or @code{charlie@@example.org:2222}." msgstr "Gibt den Rechner (den „Host“) an, an den oder von dem gesendet bzw. empfangen wird. Die @var{Spezifikation} muss eine SSH-Spezifikation sein wie @code{example.org}, @code{charlie@@example.org} oder @code{charlie@@example.org:2222}." #. type: Plain text -#: guix-git/doc/guix.texi:13990 +#: guix-git/doc/guix.texi:14347 msgid "The @var{items} can be either package names, such as @code{gimp}, or store items, such as @file{/gnu/store/@dots{}-idutils-4.6}." msgstr "Die @var{Objekte} können entweder Paketnamen wie @code{gimp} oder Store-Objekte wie @file{/gnu/store/…-idutils-4.6} sein." #. type: Plain text -#: guix-git/doc/guix.texi:13994 +#: guix-git/doc/guix.texi:14351 msgid "When specifying the name of a package to send, it is first built if needed, unless @option{--dry-run} was specified. Common build options are supported (@pxref{Common Build Options})." msgstr "Wenn ein zu sendendes Paket mit Namen angegeben wird, wird es erst erstellt, falls es nicht im Store vorliegt, außer @option{--dry-run} wurde angegeben wurde. Alle gemeinsamen Erstellungsoptionen werden unterstützt (siehe @ref{Common Build Options})." #. type: section -#: guix-git/doc/guix.texi:13997 +#: guix-git/doc/guix.texi:14354 #, no-wrap msgid "Invoking @command{guix container}" msgstr "@command{guix container} aufrufen" #. type: command{#1} -#: guix-git/doc/guix.texi:13999 +#: guix-git/doc/guix.texi:14356 #, no-wrap msgid "guix container" msgstr "guix container" #. type: quotation -#: guix-git/doc/guix.texi:14003 +#: guix-git/doc/guix.texi:14360 msgid "As of version @value{VERSION}, this tool is experimental. The interface is subject to radical change in the future." msgstr "Dieses Werkzeug ist noch experimentell, Stand Version @value{VERSION}. Die Schnittstelle wird sich in Zukunft grundlegend verändern." #. type: Plain text -#: guix-git/doc/guix.texi:14010 +#: guix-git/doc/guix.texi:14367 msgid "The purpose of @command{guix container} is to manipulate processes running within an isolated environment, commonly known as a ``container'', typically created by the @command{guix shell} (@pxref{Invoking guix shell}) and @command{guix system container} (@pxref{Invoking guix system}) commands." msgstr "Der Zweck von @command{guix container} ist, in einer isolierten Umgebung (gemeinhin als „Container“ bezeichnet) laufende Prozesse zu manipulieren, die typischerweise durch die Befehle @command{guix shell} (siehe @ref{Invoking guix shell}) und @command{guix system container} (siehe @ref{Invoking guix system}) erzeugt werden." #. type: example -#: guix-git/doc/guix.texi:14015 +#: guix-git/doc/guix.texi:14372 #, no-wrap msgid "guix container @var{action} @var{options}@dots{}\n" msgstr "guix container @var{Aktion} @var{Optionen}…\n" #. type: Plain text -#: guix-git/doc/guix.texi:14019 +#: guix-git/doc/guix.texi:14376 msgid "@var{action} specifies the operation to perform with a container, and @var{options} specifies the context-specific arguments for the action." msgstr "Mit @var{Aktion} wird die Operation angegeben, die in der isolierten Umgebung durchgeführt werden soll, und mit @var{Optionen} werden die kontextabhängigen Argumente an die Aktion angegeben." #. type: Plain text -#: guix-git/doc/guix.texi:14021 +#: guix-git/doc/guix.texi:14378 msgid "The following actions are available:" msgstr "Folgende Aktionen sind verfügbar:" #. type: item -#: guix-git/doc/guix.texi:14023 +#: guix-git/doc/guix.texi:14380 #, no-wrap msgid "exec" msgstr "exec" #. type: table -#: guix-git/doc/guix.texi:14025 +#: guix-git/doc/guix.texi:14382 msgid "Execute a command within the context of a running container." msgstr "Führt einen Befehl im Kontext der laufenden isolierten Umgebung aus." #. type: table -#: guix-git/doc/guix.texi:14027 +#: guix-git/doc/guix.texi:14384 msgid "The syntax is:" msgstr "Die Syntax ist:" #. type: example -#: guix-git/doc/guix.texi:14030 +#: guix-git/doc/guix.texi:14387 #, no-wrap msgid "guix container exec @var{pid} @var{program} @var{arguments}@dots{}\n" msgstr "guix container exec @var{PID} @var{Programm} @var{Argumente}…\n" #. type: table -#: guix-git/doc/guix.texi:14036 +#: guix-git/doc/guix.texi:14393 msgid "@var{pid} specifies the process ID of the running container. @var{program} specifies an executable file name within the root file system of the container. @var{arguments} are the additional options that will be passed to @var{program}." msgstr "@var{PID} gibt die Prozess-ID der laufenden isolierten Umgebung an. Als @var{Programm} muss eine ausführbare Datei im Wurzeldateisystem der isolierten Umgebung angegeben werden. Die @var{Argumente} sind die zusätzlichen Befehlszeilenoptionen, die an das @var{Programm} übergeben werden." #. type: table -#: guix-git/doc/guix.texi:14040 +#: guix-git/doc/guix.texi:14397 msgid "The following command launches an interactive login shell inside a Guix system container, started by @command{guix system container}, and whose process ID is 9001:" msgstr "Der folgende Befehl startet eine interaktive Login-Shell innerhalb einer isolierten Guix-Systemumgebung, gestartet durch @command{guix system container}, dessen Prozess-ID 9001 ist:" #. type: example -#: guix-git/doc/guix.texi:14043 +#: guix-git/doc/guix.texi:14400 #, no-wrap msgid "guix container exec 9001 /run/current-system/profile/bin/bash --login\n" msgstr "guix container exec 9001 /run/current-system/profile/bin/bash --login\n" #. type: table -#: guix-git/doc/guix.texi:14047 +#: guix-git/doc/guix.texi:14404 msgid "Note that the @var{pid} cannot be the parent process of a container. It must be PID 1 of the container or one of its child processes." msgstr "Beachten Sie, dass die @var{PID} nicht der Elternprozess der isolierten Umgebung sein darf, sondern PID 1 in der isolierten Umgebung oder einer seiner Kindprozesse sein muss." #. type: section -#: guix-git/doc/guix.texi:14051 +#: guix-git/doc/guix.texi:14408 #, no-wrap msgid "Invoking @command{guix weather}" msgstr "@command{guix weather} aufrufen" #. type: Plain text -#: guix-git/doc/guix.texi:14060 +#: guix-git/doc/guix.texi:14417 msgid "Occasionally you're grumpy because substitutes are lacking and you end up building packages by yourself (@pxref{Substitutes}). The @command{guix weather} command reports on substitute availability on the specified servers so you can have an idea of whether you'll be grumpy today. It can sometimes be useful info as a user, but it is primarily useful to people running @command{guix publish} (@pxref{Invoking guix publish})." msgstr "Manchmal werden Sie schlecht gelaunt sein, weil es zu wenige Substitute gibt und die Pakete bei Ihnen selbst erstellt werden müssen (siehe @ref{Substitutes}). Der Befehl @command{guix weather} zeigt einen Bericht über die Verfügbarkeit von Substituten auf den angegebenen Servern an, damit Sie sich eine Vorstellung davon machen können, wie es heute um Ihre Laune bestellt sein wird. Manchmal bekommt man als Nutzer so hilfreiche Informationen, aber in erster Linie nützt der Befehl den Leuten, die @command{guix publish} benutzen (siehe @ref{Invoking guix publish})." #. type: cindex -#: guix-git/doc/guix.texi:14061 +#: guix-git/doc/guix.texi:14418 #, no-wrap msgid "statistics, for substitutes" msgstr "Statistik, für Substitute" #. type: cindex -#: guix-git/doc/guix.texi:14062 +#: guix-git/doc/guix.texi:14419 #, no-wrap msgid "availability of substitutes" msgstr "Verfügbarkeit von Substituten" #. type: cindex -#: guix-git/doc/guix.texi:14063 +#: guix-git/doc/guix.texi:14420 #, no-wrap msgid "substitute availability" msgstr "Substitutverfügbarkeit" #. type: cindex -#: guix-git/doc/guix.texi:14064 +#: guix-git/doc/guix.texi:14421 #, no-wrap msgid "weather, substitute availability" msgstr "Wetter, Substitutverfügbarkeit" #. type: Plain text -#: guix-git/doc/guix.texi:14066 +#: guix-git/doc/guix.texi:14423 msgid "Here's a sample run:" msgstr "Hier ist ein Beispiel für einen Aufruf davon:" #. type: example -#: guix-git/doc/guix.texi:14078 +#: guix-git/doc/guix.texi:14435 #, no-wrap msgid "" "$ guix weather --substitute-urls=https://guix.example.org\n" @@ -25828,7 +26482,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:14088 +#: guix-git/doc/guix.texi:14445 #, no-wrap msgid "" " 9.8% (342 out of 3,470) of the missing items are queued\n" @@ -25852,76 +26506,71 @@ msgstr "" " aarch64-linux: 6,41 Erstellungen pro Stunde\n" #. type: cindex -#: guix-git/doc/guix.texi:14090 +#: guix-git/doc/guix.texi:14447 #, no-wrap msgid "continuous integration, statistics" msgstr "Kontinuierliche Integration, Statistik" #. type: Plain text -#: guix-git/doc/guix.texi:14101 +#: guix-git/doc/guix.texi:14458 msgid "As you can see, it reports the fraction of all the packages for which substitutes are available on the server---regardless of whether substitutes are enabled, and regardless of whether this server's signing key is authorized. It also reports the size of the compressed archives (``nars'') provided by the server, the size the corresponding store items occupy in the store (assuming deduplication is turned off), and the server's throughput. The second part gives continuous integration (CI) statistics, if the server supports it. In addition, using the @option{--coverage} option, @command{guix weather} can list ``important'' package substitutes missing on the server (see below)." msgstr "Wie Sie sehen können, wird der Anteil unter allen Paketen angezeigt, für die auf dem Server Substitute verfügbar sind@tie{}— unabhängig davon, ob Substitute aktiviert sind, und unabhängig davon, ob der Signierschlüssel des Servers autorisiert ist. Es wird auch über die Größe der komprimierten Archive (die „Nars“) berichtet, die vom Server angeboten werden, sowie über die Größe, die die zugehörigen Store-Objekte im Store belegen würden (unter der Annahme, dass Deduplizierung abgeschaltet ist) und über den Durchsatz des Servers. Der zweite Teil sind Statistiken zur Kontinuierlichen Integration (englisch „Continuous Integration“, kurz CI), wenn der Server dies unterstützt. Des Weiteren kann @command{guix weather}, wenn es mit der Befehlszeilenoption @option{--coverage} aufgerufen wird, „wichtige“ Paketsubstitute, die auf dem Server fehlen, auflisten (siehe unten)." #. type: Plain text -#: guix-git/doc/guix.texi:14107 +#: guix-git/doc/guix.texi:14464 msgid "To achieve that, @command{guix weather} queries over HTTP(S) meta-data (@dfn{narinfos}) for all the relevant store items. Like @command{guix challenge}, it ignores signatures on those substitutes, which is innocuous since the command only gathers statistics and cannot install those substitutes." msgstr "Dazu werden mit @command{guix weather} Anfragen über HTTP(S) zu Metadaten (@dfn{Narinfos}) für alle relevanten Store-Objekte gestellt. Wie @command{guix challenge} werden die Signaturen auf den Substituten ignoriert, was harmlos ist, weil der Befehl nur Statistiken sammelt und keine Substitute installieren kann." #. type: example -#: guix-git/doc/guix.texi:14112 +#: guix-git/doc/guix.texi:14469 #, no-wrap msgid "guix weather @var{options}@dots{} [@var{packages}@dots{}]\n" msgstr "guix weather @var{Optionen}…@: [@var{Pakete}…]\n" #. type: Plain text -#: guix-git/doc/guix.texi:14120 +#: guix-git/doc/guix.texi:14477 msgid "When @var{packages} is omitted, @command{guix weather} checks the availability of substitutes for @emph{all} the packages, or for those specified with @option{--manifest}; otherwise it only considers the specified packages. It is also possible to query specific system types with @option{--system}. @command{guix weather} exits with a non-zero code when the fraction of available substitutes is below 100%." msgstr "Wenn keine @var{Pakete} angegeben werden, prüft @command{guix weather} für @emph{alle} Pakete bzw.@: für die Pakete mit @option{--manifest} angegebenen Manifest, ob Substitute zur Verfügung stehen. Ansonsten wird es nur für die angegebenen Pakete geprüft. Es ist auch möglich, die Suche mit @option{--system} auf bestimmte Systemtypen einzuschränken. Der Rückgabewert von @command{guix weather} ist @emph{nicht} null, wenn weniger als 100% Substitute verfügbar sind." -#. type: Plain text -#: guix-git/doc/guix.texi:14122 -msgid "The available options are listed below." -msgstr "Die verfügbaren Befehlszeilenoptionen folgen." - #. type: table -#: guix-git/doc/guix.texi:14128 +#: guix-git/doc/guix.texi:14485 msgid "@var{urls} is the space-separated list of substitute server URLs to query. When this option is omitted, the default set of substitute servers is queried." msgstr "@var{URLs} ist eine leerzeichengetrennte Liste anzufragender Substitutserver-URLs. Wird diese Befehlszeilenoption weggelassen, wird die vorgegebene Menge an Substitutservern angefragt." #. type: table -#: guix-git/doc/guix.texi:14134 +#: guix-git/doc/guix.texi:14491 msgid "Query substitutes for @var{system}---e.g., @code{aarch64-linux}. This option can be repeated, in which case @command{guix weather} will query substitutes for several system types." msgstr "Substitute für das @var{System} anfragen@tie{}— z.B.@: für @code{aarch64-linux}. Diese Befehlszeilenoption kann mehrmals angegeben werden, wodurch @command{guix weather} die Substitute für mehrere Systemtypen anfragt." #. type: table -#: guix-git/doc/guix.texi:14140 +#: guix-git/doc/guix.texi:14497 msgid "Instead of querying substitutes for all the packages, only ask for those specified in @var{file}. @var{file} must contain a @dfn{manifest}, as with the @code{-m} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "Anstatt die Substitute für alle Pakete anzufragen, werden nur die in der @var{Datei} angegebenen Pakete erfragt. Die @var{Datei} muss ein @dfn{Manifest} enthalten, wie bei der Befehlszeilenoption @code{-m} von @command{guix package} (siehe @ref{Invoking guix package})." #. type: table -#: guix-git/doc/guix.texi:14143 +#: guix-git/doc/guix.texi:14500 msgid "This option can be repeated several times, in which case the manifests are concatenated." msgstr "Wenn diese Befehlszeilenoption mehrmals wiederholt angegeben wird, werden die Manifeste aneinandergehängt." #. type: item -#: guix-git/doc/guix.texi:14144 +#: guix-git/doc/guix.texi:14501 #, no-wrap msgid "--coverage[=@var{count}]" msgstr "--coverage[=@var{Anzahl}]" #. type: itemx -#: guix-git/doc/guix.texi:14145 +#: guix-git/doc/guix.texi:14502 #, no-wrap msgid "-c [@var{count}]" msgstr "-c [@var{Anzahl}]" #. type: table -#: guix-git/doc/guix.texi:14151 +#: guix-git/doc/guix.texi:14508 msgid "Report on substitute coverage for packages: list packages with at least @var{count} dependents (zero by default) for which substitutes are unavailable. Dependent packages themselves are not listed: if @var{b} depends on @var{a} and @var{a} has no substitutes, only @var{a} is listed, even though @var{b} usually lacks substitutes as well. The result looks like this:" msgstr "Einen Bericht über die Substitutabdeckung für Pakete ausgeben, d.h.@: Pakete mit mindestens @var{Anzahl}-vielen Abhängigen (voreingestellt mindestens null) anzeigen, für die keine Substitute verfügbar sind. Die abhängigen Pakete werden selbst nicht aufgeführt: Wenn @var{b} von @var{a} abhängt und Substitute für @var{a} fehlen, wird nur @var{a} aufgeführt, obwohl dann in der Regel auch die Substitute für @var{b} fehlen. Das Ergebnis sieht so aus:" #. type: example -#: guix-git/doc/guix.texi:14165 +#: guix-git/doc/guix.texi:14522 #, no-wrap msgid "" "$ guix weather --substitute-urls=@value{SUBSTITUTE-URLS} -c 10\n" @@ -25951,39 +26600,39 @@ msgstr "" " …\n" #. type: table -#: guix-git/doc/guix.texi:14171 +#: guix-git/doc/guix.texi:14528 msgid "What this example shows is that @code{kcoreaddons} and presumably the 58 packages that depend on it have no substitutes at @code{@value{SUBSTITUTE-SERVER-1}}; likewise for @code{qgpgme} and the 46 packages that depend on it." msgstr "Was man hier in diesem Beispiel sehen kann, ist, dass es für @code{kcoreaddons} und vermutlich die 58 Pakete, die davon abhängen, auf @code{@value{SUBSTITUTE-SERVER-1}} keine Substitute gibt; Gleiches gilt für @code{qgpgme} und die 46 Pakete, die davon abhängen." #. type: table -#: guix-git/doc/guix.texi:14175 +#: guix-git/doc/guix.texi:14532 msgid "If you are a Guix developer, or if you are taking care of this build farm, you'll probably want to have a closer look at these packages: they may simply fail to build." msgstr "Wenn Sie ein Guix-Entwickler sind oder sich um diese Erstellungsfarm kümmern, wollen Sie sich diese Pakete vielleicht genauer anschauen. Es kann sein, dass sie schlicht nie erfolgreich erstellt werden können." #. type: item -#: guix-git/doc/guix.texi:14176 +#: guix-git/doc/guix.texi:14533 #, no-wrap msgid "--display-missing" msgstr "--display-missing" #. type: table -#: guix-git/doc/guix.texi:14178 +#: guix-git/doc/guix.texi:14535 msgid "Display the list of store items for which substitutes are missing." msgstr "Eine Liste derjenigen Store-Objekte anzeigen, für die @emph{keine} Substitute verfügbar sind." #. type: section -#: guix-git/doc/guix.texi:14181 +#: guix-git/doc/guix.texi:14538 #, no-wrap msgid "Invoking @command{guix processes}" msgstr "@command{guix processes} aufrufen" #. type: Plain text -#: guix-git/doc/guix.texi:14189 +#: guix-git/doc/guix.texi:14546 msgid "The @command{guix processes} command can be useful to developers and system administrators, especially on multi-user machines and on build farms: it lists the current sessions (connections to the daemon), as well as information about the processes involved@footnote{Remote sessions, when @command{guix-daemon} is started with @option{--listen} specifying a TCP endpoint, are @emph{not} listed.}. Here's an example of the information it returns:" msgstr "Der Befehl @command{guix processes} kann sich für Entwickler und Systemadministratoren als nützlich erweisen, besonders auf Maschinen mit mehreren Nutzern und auf Erstellungsfarmen. Damit werden die aktuellen Sitzungen (also Verbindungen zum Daemon) sowie Informationen über die beteiligten Prozesse aufgelistet@footnote{Entfernte Sitzungen, wenn @command{guix-daemon} mit @option{--listen} unter Angabe eines TCP-Endpunkts gestartet wurde, werden @emph{nicht} aufgelistet.}. Hier ist ein Beispiel für die davon gelieferten Informationen:" #. type: example -#: guix-git/doc/guix.texi:14195 +#: guix-git/doc/guix.texi:14552 #, no-wrap msgid "" "$ sudo guix processes\n" @@ -25999,7 +26648,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:14199 +#: guix-git/doc/guix.texi:14556 #, no-wrap msgid "" "SessionPID: 19402\n" @@ -26013,7 +26662,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:14212 +#: guix-git/doc/guix.texi:14569 #, no-wrap msgid "" "SessionPID: 19444\n" @@ -26043,22 +26692,22 @@ msgstr "" "ChildCommand: guix offload x86_64-linux 7200 1 28800\n" #. type: Plain text -#: guix-git/doc/guix.texi:14219 +#: guix-git/doc/guix.texi:14576 msgid "In this example we see that @command{guix-daemon} has three clients: @command{guix environment}, @command{guix publish}, and the Cuirass continuous integration tool; their process identifier (PID) is given by the @code{ClientPID} field. The @code{SessionPID} field gives the PID of the @command{guix-daemon} sub-process of this particular session." msgstr "In diesem Beispiel sehen wir, dass @command{guix-daemon} drei Clients hat: @command{guix environment}, @command{guix publish} und das Werkzeug Cuirass zur Kontinuierlichen Integration. Deren Prozesskennung (PID) ist jeweils im @code{ClientPID}-Feld zu sehen. Das Feld @code{SessionPID} zeigt die PID des @command{guix-daemon}-Unterprozesses dieser bestimmten Sitzung." #. type: Plain text -#: guix-git/doc/guix.texi:14226 +#: guix-git/doc/guix.texi:14583 msgid "The @code{LockHeld} fields show which store items are currently locked by this session, which corresponds to store items being built or substituted (the @code{LockHeld} field is not displayed when @command{guix processes} is not running as root). Last, by looking at the @code{ChildPID} and @code{ChildCommand} fields, we understand that these three builds are being offloaded (@pxref{Daemon Offload Setup})." msgstr "Das Feld @code{LockHeld} zeigt an, welche Store-Objekte derzeit durch die Sitzung gesperrt sind, d.h.@: welche Store-Objekte zurzeit erstellt oder substituiert werden (das @code{LockHeld}-Feld wird nicht angezeigt, wenn @command{guix processes} nicht als Administratornutzer root ausgeführt wird). Letztlich sehen wir an den Feldern @code{ChildPID} und @code{ChildCommand} oben, dass diese drei Erstellungen hier ausgelagert (englisch „offloaded“) werden (siehe @ref{Daemon Offload Setup})." #. type: Plain text -#: guix-git/doc/guix.texi:14231 +#: guix-git/doc/guix.texi:14588 msgid "The output is in Recutils format so we can use the handy @command{recsel} command to select sessions of interest (@pxref{Selection Expressions,,, recutils, GNU recutils manual}). As an example, the command shows the command line and PID of the client that triggered the build of a Perl package:" msgstr "Die Ausgabe ist im Recutils-Format, damit wir den praktischen @command{recsel}-Befehl benutzen können, um uns interessierende Sitzungen auszuwählen (siehe @ref{Selection Expressions,,, recutils, GNU recutils manual}). Zum Beispiel zeigt dieser Befehl die Befehlszeile und PID des Clients an, der die Erstellung des Perl-Pakets ausgelöst hat:" #. type: example -#: guix-git/doc/guix.texi:14237 +#: guix-git/doc/guix.texi:14594 #, no-wrap msgid "" "$ sudo guix processes | \\\n" @@ -26072,28 +26721,28 @@ msgstr "" "ClientCommand: cuirass --cache-directory /var/cache/cuirass …\n" #. type: Plain text -#: guix-git/doc/guix.texi:14240 +#: guix-git/doc/guix.texi:14597 msgid "Additional options are listed below." msgstr "Weitere Befehlszeilenoptionen folgen." #. type: table -#: guix-git/doc/guix.texi:14250 +#: guix-git/doc/guix.texi:14607 msgid "The default option. It outputs a set of Session recutils records that include each @code{ChildProcess} as a field." msgstr "Diese Option entspricht der Vorgabe. Sitzungen werden als „Session“-Datensätze im recutils-Format ausgegeben; dabei steht jeweils ein Feld @code{ChildProcess} für jeden Kindprozess." #. type: item -#: guix-git/doc/guix.texi:14251 +#: guix-git/doc/guix.texi:14608 #, no-wrap msgid "normalized" msgstr "normalized" #. type: table -#: guix-git/doc/guix.texi:14258 +#: guix-git/doc/guix.texi:14615 msgid "Normalize the output records into record sets (@pxref{Record Sets,,, recutils, GNU recutils manual}). Normalizing into record sets allows joins across record types. The example below lists the PID of each @code{ChildProcess} and the associated PID for @code{Session} that spawned the @code{ChildProcess} where the @code{Session} was started using @command{guix build}." msgstr "Normalisiert die ausgegebenen Datensätze nach Typ (als „Record Sets“, siehe @ref{Record Sets,,, recutils, Handbuch von GNU recutils}). Dadurch, dass die Datensatztypen in der Ausgabe stehen, wird eine Verknüpfung („Join“) zwischen den Datensatztypen möglich. Im folgenden Beispiel würde die PID jedes Kindprozesses (mit Typ @code{ChildProcess}) mit der PID der ihn erzeugt habenden Sitzung (Typ @code{Session}) angezeigt, vorausgesetzt die Sitzung wurde mit @command{guix build} gestartet." #. type: example -#: guix-git/doc/guix.texi:14268 +#: guix-git/doc/guix.texi:14625 #, no-wrap msgid "" "$ guix processes --format=normalized | \\\n" @@ -26117,7 +26766,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:14271 +#: guix-git/doc/guix.texi:14628 #, no-wrap msgid "" "PID: 4554\n" @@ -26129,7 +26778,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:14274 +#: guix-git/doc/guix.texi:14631 #, no-wrap msgid "" "PID: 4646\n" @@ -26139,90 +26788,90 @@ msgstr "" "Session_PID: 4278\n" #. type: cindex -#: guix-git/doc/guix.texi:14281 +#: guix-git/doc/guix.texi:14638 #, no-wrap msgid "system configuration" msgstr "Systemkonfiguration" #. type: Plain text -#: guix-git/doc/guix.texi:14287 +#: guix-git/doc/guix.texi:14644 msgid "Guix System supports a consistent whole-system configuration mechanism. By that we mean that all aspects of the global system configuration---such as the available system services, timezone and locale settings, user accounts---are declared in a single place. Such a @dfn{system configuration} can be @dfn{instantiated}---i.e., effected." msgstr "Guix System unterstützt einen Mechanismus zur konsistenten Konfiguration des gesamten Systems. Damit meinen wir, dass alle Aspekte der globalen Systemkonfiguration an einem Ort stehen, d.h.@: die zur Verfügung gestellten Systemdienste, die Zeitzone und Einstellungen zur Locale (also die Anpassung an regionale Gepflogenheiten und Sprachen) sowie Benutzerkonten. Sie alle werden an derselben Stelle deklariert. So eine @dfn{Systemkonfiguration} kann @dfn{instanziiert}, also umgesetzt, werden." #. type: Plain text -#: guix-git/doc/guix.texi:14297 +#: guix-git/doc/guix.texi:14654 msgid "One of the advantages of putting all the system configuration under the control of Guix is that it supports transactional system upgrades, and makes it possible to roll back to a previous system instantiation, should something go wrong with the new one (@pxref{Features}). Another advantage is that it makes it easy to replicate the exact same configuration across different machines, or at different points in time, without having to resort to additional administration tools layered on top of the own tools of the system." msgstr "Einer der Vorteile, die ganze Systemkonfiguration unter die Kontrolle von Guix zu stellen, ist, dass so transaktionelle Systemaktualisierungen möglich werden und dass diese rückgängig gemacht werden können, wenn das aktualisierte System nicht richtig funktioniert (siehe @ref{Features}). Ein anderer Vorteil ist, dass dieselbe Systemkonfiguration leicht auf einer anderen Maschine oder zu einem späteren Zeitpunkt benutzt werden kann, ohne dazu eine weitere Schicht administrativer Werkzeuge über den systemeigenen Werkzeugen einsetzen zu müssen." #. type: Plain text -#: guix-git/doc/guix.texi:14302 +#: guix-git/doc/guix.texi:14659 msgid "This section describes this mechanism. First we focus on the system administrator's viewpoint---explaining how the system is configured and instantiated. Then we show how this mechanism can be extended, for instance to support new system services." msgstr "In diesem Abschnitt wird dieser Mechanismus beschrieben. Zunächst betrachten wir ihn aus der Perspektive eines Administrators. Dabei wird erklärt, wie das System konfiguriert und instanziiert werden kann. Dann folgt eine Demonstration, wie der Mechanismus erweitert werden kann, etwa um neue Systemdienste zu unterstützen." #. type: Plain text -#: guix-git/doc/guix.texi:14332 +#: guix-git/doc/guix.texi:14689 msgid "The operating system is configured by providing an @code{operating-system} declaration in a file that can then be passed to the @command{guix system} command (@pxref{Invoking guix system}). A simple setup, with the default system services, the default Linux-Libre kernel, initial RAM disk, and boot loader looks like this:" msgstr "Das Betriebssystem können Sie konfigurieren, indem Sie eine @code{operating-system}-Deklaration in einer Datei speichern, die Sie dann dem Befehl @command{guix system} übergeben (siehe @ref{Invoking guix system}). Eine einfache Konfiguration mit den vorgegebenen Systemdiensten und dem vorgegebenen Linux-Libre als Kernel und mit einer initialen RAM-Disk und einem Bootloader sieht so aus:" #. type: code{#1} -#: guix-git/doc/guix.texi:14333 guix-git/doc/guix.texi:35553 +#: guix-git/doc/guix.texi:14690 guix-git/doc/guix.texi:36033 #, no-wrap msgid "operating-system" msgstr "operating-system" #. type: include -#: guix-git/doc/guix.texi:14335 +#: guix-git/doc/guix.texi:14692 #, no-wrap msgid "os-config-bare-bones.texi" msgstr "os-config-bare-bones.texi" #. type: Plain text -#: guix-git/doc/guix.texi:14342 +#: guix-git/doc/guix.texi:14699 msgid "This example should be self-describing. Some of the fields defined above, such as @code{host-name} and @code{bootloader}, are mandatory. Others, such as @code{packages} and @code{services}, can be omitted, in which case they get a default value." msgstr "Dieses Beispiel sollte selbsterklärend sein. Manche der Felder oben, wie etwa @code{host-name} und @code{bootloader}, müssen angegeben werden. Andere sind optional, wie etwa @code{packages} und @code{services}, sind optional; werden sie nicht angegeben, nehmen sie einen Vorgabewert an." #. type: Plain text -#: guix-git/doc/guix.texi:14347 +#: guix-git/doc/guix.texi:14704 msgid "Below we discuss the effect of some of the most important fields (@pxref{operating-system Reference}, for details about all the available fields), and how to @dfn{instantiate} the operating system using @command{guix system}." msgstr "Im Folgenden werden die Effekte von einigen der wichtigsten Feldern erläutert (siehe @ref{operating-system Reference} für Details zu allen verfügbaren Feldern), dann wird beschrieben, wie man das Betriebssystem mit @command{guix system} @dfn{instanziieren} kann." #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14348 +#: guix-git/doc/guix.texi:14705 #, no-wrap msgid "Bootloader" msgstr "Bootloader" #. type: cindex -#: guix-git/doc/guix.texi:14350 +#: guix-git/doc/guix.texi:14707 #, no-wrap msgid "legacy boot, on Intel machines" msgstr "Legacy-Boot, auf Intel-Maschinen" #. type: cindex -#: guix-git/doc/guix.texi:14351 +#: guix-git/doc/guix.texi:14708 #, no-wrap msgid "BIOS boot, on Intel machines" msgstr "BIOS-Boot, auf Intel-Maschinen" #. type: cindex -#: guix-git/doc/guix.texi:14352 +#: guix-git/doc/guix.texi:14709 #, no-wrap msgid "UEFI boot" msgstr "UEFI-Boot" #. type: cindex -#: guix-git/doc/guix.texi:14353 +#: guix-git/doc/guix.texi:14710 #, no-wrap msgid "EFI boot" msgstr "EFI-Boot" #. type: Plain text -#: guix-git/doc/guix.texi:14359 +#: guix-git/doc/guix.texi:14716 msgid "The @code{bootloader} field describes the method that will be used to boot your system. Machines based on Intel processors can boot in ``legacy'' BIOS mode, as in the example above. However, more recent machines rely instead on the @dfn{Unified Extensible Firmware Interface} (UEFI) to boot. In that case, the @code{bootloader} field should contain something along these lines:" msgstr "Das @code{bootloader}-Feld beschreibt, mit welcher Methode Ihr System „gebootet“ werden soll. Maschinen, die auf Intel-Prozessoren basieren, können im alten „Legacy“-BIOS-Modus gebootet werden, wie es im obigen Beispiel der Fall wäre. Neuere Maschinen benutzen stattdessen das @dfn{Unified Extensible Firmware Interface} (UEFI) zum Booten. In diesem Fall sollte das @code{bootloader}-Feld in etwa so aussehen:" #. type: lisp -#: guix-git/doc/guix.texi:14364 +#: guix-git/doc/guix.texi:14721 #, no-wrap msgid "" "(bootloader-configuration\n" @@ -26234,29 +26883,29 @@ msgstr "" " (targets '(\"/boot/efi\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:14368 +#: guix-git/doc/guix.texi:14725 msgid "@xref{Bootloader Configuration}, for more information on the available configuration options." msgstr "Siehe den Abschnitt @ref{Bootloader Configuration} für weitere Informationen zu den verfügbaren Konfigurationsoptionen." #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14369 +#: guix-git/doc/guix.texi:14726 #, no-wrap msgid "Globally-Visible Packages" msgstr "global sichtbare Pakete" #. type: vindex -#: guix-git/doc/guix.texi:14371 +#: guix-git/doc/guix.texi:14728 #, no-wrap msgid "%base-packages" msgstr "%base-packages" #. type: Plain text -#: guix-git/doc/guix.texi:14384 +#: guix-git/doc/guix.texi:14741 msgid "The @code{packages} field lists packages that will be globally visible on the system, for all user accounts---i.e., in every user's @env{PATH} environment variable---in addition to the per-user profiles (@pxref{Invoking guix package}). The @code{%base-packages} variable provides all the tools one would expect for basic user and administrator tasks---including the GNU Core Utilities, the GNU Networking Utilities, the @command{mg} lightweight text editor, @command{find}, @command{grep}, etc. The example above adds GNU@tie{}Screen to those, taken from the @code{(gnu packages screen)} module (@pxref{Package Modules}). The @code{(list package output)} syntax can be used to add a specific output of a package:" msgstr "Im Feld @code{packages} werden Pakete aufgeführt, die auf dem System für alle Benutzerkonten global sichtbar sein sollen, d.h.@: in der @env{PATH}-Umgebungsvariablen jedes Nutzers, zusätzlich zu den nutzereigenen Profilen (siehe @ref{Invoking guix package}). Die Variable @code{%base-packages} bietet alle Werkzeuge, die man für grundlegende Nutzer- und Administratortätigkeiten erwarten würde, einschließlich der GNU Core Utilities, der GNU Networking Utilities, des leichtgewichtigen Texteditors @command{mg}, @command{find}, @command{grep} und so weiter. Obiges Beispiel fügt zu diesen noch das Programm GNU@tie{}Screen hinzu, welches aus dem Modul @code{(gnu packages screen)} genommen wird (siehe @ref{Package Modules}). Die Syntax @code{(list package output)} kann benutzt werden, um eine bestimmte Ausgabe eines Pakets auszuwählen:" #. type: lisp -#: guix-git/doc/guix.texi:14388 +#: guix-git/doc/guix.texi:14745 #, no-wrap msgid "" "(use-modules (gnu packages))\n" @@ -26268,7 +26917,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:14393 +#: guix-git/doc/guix.texi:14750 #, no-wrap msgid "" "(operating-system\n" @@ -26282,18 +26931,18 @@ msgstr "" " %base-packages)))\n" #. type: findex -#: guix-git/doc/guix.texi:14395 +#: guix-git/doc/guix.texi:14752 #, no-wrap msgid "specification->package" msgstr "specification->package" #. type: Plain text -#: guix-git/doc/guix.texi:14404 +#: guix-git/doc/guix.texi:14761 msgid "Referring to packages by variable name, like @code{isc-bind} above, has the advantage of being unambiguous; it also allows typos and such to be diagnosed right away as ``unbound variables''. The downside is that one needs to know which module defines which package, and to augment the @code{use-package-modules} line accordingly. To avoid that, one can use the @code{specification->package} procedure of the @code{(gnu packages)} module, which returns the best package for a given name or name and version:" msgstr "Sich auf Pakete anhand ihres Variablennamens zu beziehen, wie oben bei @code{isc-bind}, hat den Vorteil, dass der Name eindeutig ist; Tippfehler werden direkt als „unbound variables“ gemeldet. Der Nachteil ist, dass man wissen muss, in welchem Modul ein Paket definiert wird, um die Zeile mit @code{use-package-modules} entsprechend zu ergänzen. Um dies zu vermeiden, kann man auch die Prozedur @code{specification->package} aus dem Modul @code{(gnu packages)} aufrufen, welche das einem angegebenen Namen oder Name-Versions-Paar zu Grunde liegende Paket liefert:" #. type: lisp -#: guix-git/doc/guix.texi:14407 +#: guix-git/doc/guix.texi:14764 #, no-wrap msgid "" "(use-modules (gnu packages))\n" @@ -26303,7 +26952,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:14413 +#: guix-git/doc/guix.texi:14770 #, no-wrap msgid "" "(operating-system\n" @@ -26319,58 +26968,58 @@ msgstr "" " %base-packages)))\n" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14415 +#: guix-git/doc/guix.texi:14772 #, no-wrap msgid "System Services" msgstr "Systemdienste" #. type: cindex -#: guix-git/doc/guix.texi:14417 guix-git/doc/guix.texi:34307 -#: guix-git/doc/guix.texi:35783 +#: guix-git/doc/guix.texi:14774 guix-git/doc/guix.texi:34746 +#: guix-git/doc/guix.texi:36273 #, no-wrap msgid "services" msgstr "services" #. type: vindex -#: guix-git/doc/guix.texi:14418 +#: guix-git/doc/guix.texi:14775 #, no-wrap msgid "%base-services" msgstr "%base-services" #. type: Plain text -#: guix-git/doc/guix.texi:14428 +#: guix-git/doc/guix.texi:14785 msgid "The @code{services} field lists @dfn{system services} to be made available when the system starts (@pxref{Services}). The @code{operating-system} declaration above specifies that, in addition to the basic services, we want the OpenSSH secure shell daemon listening on port 2222 (@pxref{Networking Services, @code{openssh-service-type}}). Under the hood, @code{openssh-service-type} arranges so that @command{sshd} is started with the right command-line options, possibly with supporting configuration files generated as needed (@pxref{Defining Services})." msgstr "Das Feld @code{services} listet @dfn{Systemdienste} auf, die zur Verfügung stehen sollen, wenn das System startet (siehe @ref{Services}). Die @code{operating-system}-Deklaration oben legt fest, dass wir neben den grundlegenden Basis-Diensten auch wollen, dass der OpenSSH-Secure-Shell-Daemon auf Port 2222 lauscht (siehe @ref{Networking Services, @code{openssh-service-type}}). Intern sorgt der @code{openssh-service-type} dafür, dass @code{sshd} mit den richtigen Befehlszeilenoptionen aufgerufen wird, je nach Systemkonfiguration werden auch für dessen Betrieb nötige Konfigurationsdateien erstellt (siehe @ref{Defining Services})." #. type: cindex -#: guix-git/doc/guix.texi:14429 +#: guix-git/doc/guix.texi:14786 #, no-wrap msgid "customization, of services" msgstr "Anpassung, von Diensten" #. type: findex -#: guix-git/doc/guix.texi:14430 +#: guix-git/doc/guix.texi:14787 #, no-wrap msgid "modify-services" msgstr "modify-services" #. type: Plain text -#: guix-git/doc/guix.texi:14434 +#: guix-git/doc/guix.texi:14791 msgid "Occasionally, instead of using the base services as is, you will want to customize them. To do this, use @code{modify-services} (@pxref{Service Reference, @code{modify-services}}) to modify the list." msgstr "Gelegentlich werden Sie die Basis-Dienste nicht einfach so, wie sie sind, benutzen, sondern anpassen wollen. Benutzen Sie @code{modify-services} (siehe @ref{Service Reference, @code{modify-services}}), um die Liste der Basis-Dienste zu modifizieren." #. type: anchor{#1} -#: guix-git/doc/guix.texi:14440 +#: guix-git/doc/guix.texi:14797 msgid "auto-login to TTY" msgstr "auto-login to TTY" #. type: Plain text -#: guix-git/doc/guix.texi:14440 +#: guix-git/doc/guix.texi:14797 msgid "For example, suppose you want to modify @code{guix-daemon} and Mingetty (the console log-in) in the @code{%base-services} list (@pxref{Base Services, @code{%base-services}}). To do that, you can write the following in your operating system declaration:" msgstr "Wenn Sie zum Beispiel @code{guix-daemon} und Mingetty (das Programm, womit Sie sich auf der Konsole anmelden) in der @code{%base-services}-Liste modifizieren möchten (siehe @ref{Base Services, @code{%base-services}}), schreiben Sie das Folgende in Ihre Betriebssystemdeklaration:" #. type: lisp -#: guix-git/doc/guix.texi:14457 +#: guix-git/doc/guix.texi:14814 #, no-wrap msgid "" "(define %my-services\n" @@ -26386,7 +27035,7 @@ msgid "" " (mingetty-service-type config =>\n" " (mingetty-configuration\n" " (inherit config)\n" -" ;; Automatially log in as \"guest\".\n" +" ;; Automatically log in as \"guest\".\n" " (auto-login \"guest\")))))\n" "\n" msgstr "" @@ -26408,7 +27057,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:14461 +#: guix-git/doc/guix.texi:14818 #, no-wrap msgid "" "(operating-system\n" @@ -26420,49 +27069,49 @@ msgstr "" " (services %my-services))\n" #. type: Plain text -#: guix-git/doc/guix.texi:14474 +#: guix-git/doc/guix.texi:14831 msgid "This changes the configuration---i.e., the service parameters---of the @code{guix-service-type} instance, and that of all the @code{mingetty-service-type} instances in the @code{%base-services} list (@pxref{Auto-Login to a Specific TTY, see the cookbook for how to auto-login one user to a specific TTY,, guix-cookbook, GNU Guix Cookbook})). Observe how this is accomplished: first, we arrange for the original configuration to be bound to the identifier @code{config} in the @var{body}, and then we write the @var{body} so that it evaluates to the desired configuration. In particular, notice how we use @code{inherit} to create a new configuration which has the same values as the old configuration, but with a few modifications." msgstr "Dadurch ändert sich die Konfiguration@tie{}— d.h.@: die Dienst-Parameter@tie{}— der @code{guix-service-type}-Instanz und die aller @code{mingetty-service-type}-Instanzen in der @code{%base-services}-Liste (siehe @ref{Automatisch an virtueller Konsole anmelden, das Kochbuch,, guix-cookbook.de, GNU Guix Cookbook} für eine Anleitung, wie man damit ein Benutzerkonto automatisch auf nur einem TTY anmelden ließe). Das funktioniert so: Zunächst arrangieren wir, dass die ursprüngliche Konfiguration an den Bezeichner @code{config} im @var{Rumpf} gebunden wird, dann schreiben wir den @var{Rumpf}, damit er zur gewünschten Konfiguration ausgewertet wird. Beachten Sie insbesondere, wie wir mit @code{inherit} eine neue Konfiguration erzeugen, die dieselben Werte wie die alte Konfiguration hat, aber mit ein paar Modifikationen." #. type: Plain text -#: guix-git/doc/guix.texi:14481 +#: guix-git/doc/guix.texi:14838 msgid "The configuration for a typical ``desktop'' usage, with an encrypted root partition, a swap file on the root partition, the X11 display server, GNOME and Xfce (users can choose which of these desktop environments to use at the log-in screen by pressing @kbd{F1}), network management, power management, and more, would look like this:" msgstr "Die Konfiguration für typische Nutzung auf Heim- und Arbeitsrechnern, mit einer verschlüsselten Partition für das Wurzeldateisystem, darauf einer Swap-Datei, einem X11-Anzeigeserver, GNOME und Xfce (Benutzer können im Anmeldebildschirm auswählen, welche dieser Arbeitsumgebungen sie möchten, indem sie die Taste @kbd{F1} drücken), Netzwerkverwaltung, Verwaltungswerkzeugen für den Energieverbrauch, und Weiteres, würde so aussehen:" #. type: include -#: guix-git/doc/guix.texi:14483 +#: guix-git/doc/guix.texi:14840 #, no-wrap msgid "os-config-desktop.texi" msgstr "os-config-desktop.texi" #. type: Plain text -#: guix-git/doc/guix.texi:14488 +#: guix-git/doc/guix.texi:14845 msgid "A graphical system with a choice of lightweight window managers instead of full-blown desktop environments would look like this:" msgstr "Ein grafisches System mit einer Auswahl an leichtgewichtigen Fenster-Managern statt voll ausgestatteten Arbeitsumgebungen würde so aussehen:" #. type: include -#: guix-git/doc/guix.texi:14490 +#: guix-git/doc/guix.texi:14847 #, no-wrap msgid "os-config-lightweight-desktop.texi" msgstr "os-config-lightweight-desktop.texi" #. type: Plain text -#: guix-git/doc/guix.texi:14496 +#: guix-git/doc/guix.texi:14853 msgid "This example refers to the @file{/boot/efi} file system by its UUID, @code{1234-ABCD}. Replace this UUID with the right UUID on your system, as returned by the @command{blkid} command." msgstr "Dieses Beispiel bezieht sich auf das Dateisystem hinter @file{/boot/efi} über dessen UUID, @code{1234-ABCD}. Schreiben Sie statt dieser UUID die richtige UUID für Ihr System, wie sie der Befehl @command{blkid} liefert." #. type: Plain text -#: guix-git/doc/guix.texi:14500 +#: guix-git/doc/guix.texi:14857 msgid "@xref{Desktop Services}, for the exact list of services provided by @code{%desktop-services}. @xref{X.509 Certificates}, for background information about the @code{nss-certs} package that is used here." msgstr "Im Abschnitt @ref{Desktop Services} finden Sie eine genaue Liste der unter @code{%desktop-services} angebotenen Dienste. Der Abschnitt @ref{X.509 Certificates} hat Hintergrundinformationen über das @code{nss-certs}-Paket, das hier benutzt wird." #. type: Plain text -#: guix-git/doc/guix.texi:14507 +#: guix-git/doc/guix.texi:14864 msgid "Again, @code{%desktop-services} is just a list of service objects. If you want to remove services from there, you can do so using the procedures for list filtering (@pxref{SRFI-1 Filtering and Partitioning,,, guile, GNU Guile Reference Manual}). For instance, the following expression returns a list that contains all the services in @code{%desktop-services} minus the Avahi service:" msgstr "Beachten Sie, dass @code{%desktop-services} nur eine Liste von die Dienste repräsentierenden service-Objekten ist. Wenn Sie Dienste daraus entfernen möchten, können Sie dazu die Prozeduren zum Filtern von Listen benutzen (siehe @ref{SRFI-1 Filtering and Partitioning,,, guile, Referenzhandbuch zu GNU Guile}). Beispielsweise liefert der folgende Ausdruck eine Liste mit allen Diensten von @code{%desktop-services} außer dem Avahi-Dienst." #. type: lisp -#: guix-git/doc/guix.texi:14512 +#: guix-git/doc/guix.texi:14869 #, no-wrap msgid "" "(remove (lambda (service)\n" @@ -26474,12 +27123,12 @@ msgstr "" " %desktop-services)\n" #. type: Plain text -#: guix-git/doc/guix.texi:14515 +#: guix-git/doc/guix.texi:14872 msgid "Alternatively, the @code{modify-services} macro can be used:" msgstr "Alternativ können Sie das Makro @code{modify-services} benutzen:" #. type: lisp -#: guix-git/doc/guix.texi:14519 +#: guix-git/doc/guix.texi:14876 #, no-wrap msgid "" "(modify-services %desktop-services\n" @@ -26489,356 +27138,356 @@ msgstr "" " (delete avahi-service-type))\n" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14522 +#: guix-git/doc/guix.texi:14879 #, no-wrap msgid "Instantiating the System" msgstr "Das System instanziieren" #. type: Plain text -#: guix-git/doc/guix.texi:14529 +#: guix-git/doc/guix.texi:14886 msgid "Assuming the @code{operating-system} declaration is stored in the @file{my-system-config.scm} file, the @command{guix system reconfigure my-system-config.scm} command instantiates that configuration, and makes it the default GRUB boot entry (@pxref{Invoking guix system})." msgstr "Angenommen, Sie haben die @code{operating-system}-Deklaration in einer Datei @file{my-system-config.scm} gespeichert, dann instanziiert der Befehl @command{guix system reconfigure my-system-config.scm} diese Konfiguration und macht sie zum voreingestellten GRUB-Boot-Eintrag (siehe @ref{Invoking guix system})." #. type: Plain text -#: guix-git/doc/guix.texi:14537 +#: guix-git/doc/guix.texi:14894 msgid "The normal way to change the system configuration is by updating this file and re-running @command{guix system reconfigure}. One should never have to touch files in @file{/etc} or to run commands that modify the system state such as @command{useradd} or @command{grub-install}. In fact, you must avoid that since that would not only void your warranty but also prevent you from rolling back to previous versions of your system, should you ever need to." msgstr "Der normale Weg, die Systemkonfiguration nachträglich zu ändern, ist, die Datei zu aktualisieren und @command{guix system reconfigure} erneut auszuführen. Man sollte nie die Dateien in @file{/etc} bearbeiten oder den Systemzustand mit Befehlen wie @command{useradd} oder @command{grub-install} verändern. Tatsächlich müssen Sie das ausdrücklich vermeiden, sonst verfällt nicht nur Ihre Garantie, sondern Sie können Ihr System auch nicht mehr auf eine alte Version des Systems zurücksetzen, falls das jemals notwendig wird." #. type: cindex -#: guix-git/doc/guix.texi:14538 +#: guix-git/doc/guix.texi:14895 #, no-wrap msgid "roll-back, of the operating system" msgstr "Zurücksetzen, des Betriebssystems" #. type: Plain text -#: guix-git/doc/guix.texi:14548 +#: guix-git/doc/guix.texi:14905 msgid "Speaking of roll-back, each time you run @command{guix system reconfigure}, a new @dfn{generation} of the system is created---without modifying or deleting previous generations. Old system generations get an entry in the bootloader boot menu, allowing you to boot them in case something went wrong with the latest generation. Reassuring, no? The @command{guix system list-generations} command lists the system generations available on disk. It is also possible to roll back the system via the commands @command{guix system roll-back} and @command{guix system switch-generation}." msgstr "Zurücksetzen bezieht sich hierbei darauf, dass jedes Mal, wenn Sie @command{guix system reconfigure} ausführen, eine neue @dfn{Generation} des Systems erzeugt wird@tie{}— ohne vorherige Generationen zu verändern. Alte Systemgenerationen bekommen einen Eintrag im Boot-Menü des Bootloaders, womit Sie alte Generationen beim Starten des Rechners auswählen können, wenn mit der neuesten Generation etwas nicht stimmt. Eine beruhigende Vorstellung, oder? Der Befehl @command{guix system list-generations} führt die auf der Platte verfügbaren Systemgenerationen auf. Es ist auch möglich, das System mit den Befehlen @command{guix system roll-back} und @command{guix system switch-generation} zurückzusetzen." #. type: Plain text -#: guix-git/doc/guix.texi:14554 +#: guix-git/doc/guix.texi:14911 msgid "Although the @command{guix system reconfigure} command will not modify previous generations, you must take care when the current generation is not the latest (e.g., after invoking @command{guix system roll-back}), since the operation might overwrite a later generation (@pxref{Invoking guix system})." msgstr "Obwohl der Befehl @command{guix system reconfigure} vorherige Generationen nicht verändern wird, müssen Sie achtgeben, dass wenn die momentan aktuelle Generation nicht die neueste ist (z.B.@: nach einem Aufruf von @command{guix system roll-back}), weil @command{guix system reconfigure} alle neueren Generationen überschreibt (siehe @ref{Invoking guix system})." #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14555 +#: guix-git/doc/guix.texi:14912 #, no-wrap msgid "The Programming Interface" msgstr "Die Programmierschnittstelle" #. type: Plain text -#: guix-git/doc/guix.texi:14560 +#: guix-git/doc/guix.texi:14917 msgid "At the Scheme level, the bulk of an @code{operating-system} declaration is instantiated with the following monadic procedure (@pxref{The Store Monad}):" msgstr "Auf der Ebene von Scheme wird der Großteil der @code{operating-system}-Deklaration mit der folgenden monadischen Prozedur instanziiert (siehe @ref{The Store Monad}):" #. type: deffn -#: guix-git/doc/guix.texi:14561 +#: guix-git/doc/guix.texi:14918 #, no-wrap msgid "{Monadic Procedure} operating-system-derivation os" msgstr "{Monadische Prozedur} operating-system-derivation os" #. type: deffn -#: guix-git/doc/guix.texi:14564 +#: guix-git/doc/guix.texi:14921 msgid "Return a derivation that builds @var{os}, an @code{operating-system} object (@pxref{Derivations})." msgstr "Liefert eine Ableitung, mit der ein @code{operating-system}-Objekt @var{os} erstellt wird (siehe @ref{Derivations})." #. type: deffn -#: guix-git/doc/guix.texi:14568 +#: guix-git/doc/guix.texi:14925 msgid "The output of the derivation is a single directory that refers to all the packages, configuration files, and other supporting files needed to instantiate @var{os}." msgstr "Die Ausgabe der Ableitung ist ein einzelnes Verzeichnis mit Verweisen auf alle Pakete, Konfigurationsdateien und andere unterstützenden Dateien, die nötig sind, um @var{os} zu instanziieren." #. type: Plain text -#: guix-git/doc/guix.texi:14573 +#: guix-git/doc/guix.texi:14930 msgid "This procedure is provided by the @code{(gnu system)} module. Along with @code{(gnu services)} (@pxref{Services}), this module contains the guts of Guix System. Make sure to visit it!" msgstr "Diese Prozedur wird vom Modul @code{(gnu system)} angeboten. Zusammen mit @code{(gnu services)} (siehe @ref{Services}) deckt dieses Modul den Kern von „Guix System“ ab. Schauen Sie es sich mal an!" #. type: section -#: guix-git/doc/guix.texi:14576 +#: guix-git/doc/guix.texi:14933 #, no-wrap msgid "@code{operating-system} Reference" msgstr "@code{operating-system}-Referenz" #. type: Plain text -#: guix-git/doc/guix.texi:14581 +#: guix-git/doc/guix.texi:14938 msgid "This section summarizes all the options available in @code{operating-system} declarations (@pxref{Using the Configuration System})." msgstr "Dieser Abschnitt fasst alle Optionen zusammen, die für @code{operating-system}-Deklarationen zur Verfügung stehen (siehe @ref{Using the Configuration System})." #. type: deftp -#: guix-git/doc/guix.texi:14582 +#: guix-git/doc/guix.texi:14939 #, no-wrap msgid "{Data Type} operating-system" msgstr "{Datentyp} operating-system" #. type: deftp -#: guix-git/doc/guix.texi:14586 +#: guix-git/doc/guix.texi:14943 msgid "This is the data type representing an operating system configuration. By that, we mean all the global system configuration, not per-user configuration (@pxref{Using the Configuration System})." msgstr "Der die Betriebssystemkonfiguration repräsentierende Datentyp. Damit meinen wir die globale Konfiguration des Systems und nicht die, die sich nur auf einzelne Nutzer bezieht (siehe @ref{Using the Configuration System})." #. type: item -#: guix-git/doc/guix.texi:14588 +#: guix-git/doc/guix.texi:14945 #, no-wrap msgid "@code{kernel} (default: @code{linux-libre})" msgstr "@code{kernel} (Vorgabe: @code{linux-libre})" #. type: table -#: guix-git/doc/guix.texi:14593 +#: guix-git/doc/guix.texi:14950 msgid "The package object of the operating system kernel to use@footnote{Currently only the Linux-libre kernel is fully supported. Using GNU@tie{}mach with the GNU@tie{}Hurd is experimental and only available when building a virtual machine disk image.}." msgstr "Das Paket für den zu nutzenden Betriebssystem-Kernel als „package“-Objekt@footnote{Derzeit wird nur der Kernel Linux-libre vollständig unterstützt. Die Nutzung von GNU@tie{}mach mit GNU@tie{}Hurd ist experimentell und steht nur zur Erstellung eines Disk-Image für virtuelle Maschinen bereit.}." #. type: code{#1} -#: guix-git/doc/guix.texi:14594 guix-git/doc/guix.texi:30733 +#: guix-git/doc/guix.texi:14951 guix-git/doc/guix.texi:31098 #, no-wrap msgid "hurd" msgstr "hurd" #. type: item -#: guix-git/doc/guix.texi:14595 +#: guix-git/doc/guix.texi:14952 #, no-wrap msgid "@code{hurd} (default: @code{#f})" msgstr "@code{hurd} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:14600 +#: guix-git/doc/guix.texi:14957 msgid "The package object of the Hurd to be started by the kernel. When this field is set, produce a GNU/Hurd operating system. In that case, @code{kernel} must also be set to the @code{gnumach} package---the microkernel the Hurd runs on." msgstr "Das Paketobjekt derjenigen Hurd, die der Kernel starten soll. Wenn dieses Feld gesetzt ist, wird ein GNU/Hurd-Betriebssystem erzeugt. In diesem Fall muss als @code{kernel} das @code{gnumach}-Paket (das ist der Microkernel, auf dem Hurd läuft) ausgewählt sein." #. type: quotation -#: guix-git/doc/guix.texi:14603 +#: guix-git/doc/guix.texi:14960 msgid "This feature is experimental and only supported for disk images." msgstr "Diese Funktionalität ist experimentell und wird nur für Disk-Images unterstützt." #. type: item -#: guix-git/doc/guix.texi:14605 +#: guix-git/doc/guix.texi:14962 #, no-wrap msgid "@code{kernel-loadable-modules} (default: '())" msgstr "@code{kernel-loadable-modules} (Vorgabe: '())" #. type: table -#: guix-git/doc/guix.texi:14608 +#: guix-git/doc/guix.texi:14965 msgid "A list of objects (usually packages) to collect loadable kernel modules from--e.g. @code{(list ddcci-driver-linux)}." msgstr "Eine Liste von Objekten (normalerweise Pakete), aus denen Kernel-Module geladen werden können, zum Beispiel @code{(list ddcci-driver-linux)}." #. type: item -#: guix-git/doc/guix.texi:14609 +#: guix-git/doc/guix.texi:14966 #, no-wrap msgid "@code{kernel-arguments} (default: @code{%default-kernel-arguments})" msgstr "@code{kernel-arguments} (Vorgabe: @code{%default-kernel-arguments})" #. type: table -#: guix-git/doc/guix.texi:14612 +#: guix-git/doc/guix.texi:14969 msgid "List of strings or gexps representing additional arguments to pass on the command-line of the kernel---e.g., @code{(\"console=ttyS0\")}." msgstr "Eine Liste aus Zeichenketten oder G-Ausdrücken, die für zusätzliche Argumente an den Kernel stehen, die ihm auf seiner Befehlszeile übergeben werden@tie{}— wie z.B.@: @code{(\"console=ttyS0\")}." #. type: code{#1} -#: guix-git/doc/guix.texi:14613 guix-git/doc/guix.texi:34539 -#: guix-git/doc/guix.texi:34558 +#: guix-git/doc/guix.texi:14970 guix-git/doc/guix.texi:34978 +#: guix-git/doc/guix.texi:34997 #, no-wrap msgid "bootloader" msgstr "bootloader" #. type: table -#: guix-git/doc/guix.texi:14615 +#: guix-git/doc/guix.texi:14972 msgid "The system bootloader configuration object. @xref{Bootloader Configuration}." msgstr "Das Konfigurationsobjekt für den Bootloader, mit dem das System gestartet wird. Siehe @ref{Bootloader Configuration}." #. type: code{#1} -#: guix-git/doc/guix.texi:14616 guix-git/doc/guix.texi:34732 +#: guix-git/doc/guix.texi:14973 guix-git/doc/guix.texi:35171 #, no-wrap msgid "label" msgstr "label" #. type: table -#: guix-git/doc/guix.texi:14619 +#: guix-git/doc/guix.texi:14976 msgid "This is the label (a string) as it appears in the bootloader's menu entry. The default label includes the kernel name and version." msgstr "Diese Bezeichnung (eine Zeichenkette) wird für den Menüeintrag im Bootloader verwendet. Die Vorgabe ist eine Bezeichnung, die den Namen des Kernels und seine Version enthält." #. type: item -#: guix-git/doc/guix.texi:14620 guix-git/doc/guix.texi:16318 -#: guix-git/doc/guix.texi:19503 guix-git/doc/guix.texi:34662 +#: guix-git/doc/guix.texi:14977 guix-git/doc/guix.texi:16675 +#: guix-git/doc/guix.texi:19865 guix-git/doc/guix.texi:35101 #, no-wrap msgid "@code{keyboard-layout} (default: @code{#f})" msgstr "@code{keyboard-layout} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:14625 +#: guix-git/doc/guix.texi:14982 msgid "This field specifies the keyboard layout to use in the console. It can be either @code{#f}, in which case the default keyboard layout is used (usually US English), or a @code{} record. @xref{Keyboard Layout}, for more information." msgstr "Dieses Feld gibt an, welche Tastaturbelegung auf der Konsole benutzt werden soll. Es kann entweder auf @code{#f} gesetzt sein, damit die voreingestellte Tastaturbelegung benutzt wird (in der Regel ist diese „US English“), oder ein @code{}-Verbundsobjekt sein. Siehe @ref{Keyboard Layout} für weitere Informationen." #. type: table -#: guix-git/doc/guix.texi:14630 +#: guix-git/doc/guix.texi:14987 msgid "This keyboard layout is in effect as soon as the kernel has booted. For instance, it is the keyboard layout in effect when you type a passphrase if your root file system is on a @code{luks-device-mapping} mapped device (@pxref{Mapped Devices})." msgstr "Diese Tastaturbelegung wird benutzt, sobald der Kernel gebootet wurde. Diese Tastaturbelegung wird zum Beispiel auch verwendet, wenn Sie eine Passphrase eintippen, falls sich Ihr Wurzeldateisystem auf einem mit @code{luks-device-mapping} zugeordneten Gerät befindet (siehe @ref{Mapped Devices})." #. type: quotation -#: guix-git/doc/guix.texi:14637 +#: guix-git/doc/guix.texi:14994 msgid "This does @emph{not} specify the keyboard layout used by the bootloader, nor that used by the graphical display server. @xref{Bootloader Configuration}, for information on how to specify the bootloader's keyboard layout. @xref{X Window}, for information on how to specify the keyboard layout used by the X Window System." msgstr "Damit wird @emph{nicht} angegeben, welche Tastaturbelegung der Bootloader benutzt, und auch nicht, welche der grafische Anzeigeserver verwendet. Siehe @ref{Bootloader Configuration} für Informationen darüber, wie Sie die Tastaturbelegung des Bootloaders angeben können. Siehe @ref{X Window} für Informationen darüber, wie Sie die Tastaturbelegung angeben können, die das X-Fenstersystem verwendet." #. type: item -#: guix-git/doc/guix.texi:14639 +#: guix-git/doc/guix.texi:14996 #, no-wrap msgid "@code{initrd-modules} (default: @code{%base-initrd-modules})" msgstr "@code{initrd-modules} (Vorgabe: @code{%base-initrd-modules})" #. type: cindex -#: guix-git/doc/guix.texi:14640 guix-git/doc/guix.texi:34344 -#: guix-git/doc/guix.texi:34467 +#: guix-git/doc/guix.texi:14997 guix-git/doc/guix.texi:34783 +#: guix-git/doc/guix.texi:34906 #, no-wrap msgid "initrd" msgstr "initrd" #. type: cindex -#: guix-git/doc/guix.texi:14641 guix-git/doc/guix.texi:34345 -#: guix-git/doc/guix.texi:34468 +#: guix-git/doc/guix.texi:14998 guix-git/doc/guix.texi:34784 +#: guix-git/doc/guix.texi:34907 #, no-wrap msgid "initial RAM disk" msgstr "initiale RAM-Disk" #. type: table -#: guix-git/doc/guix.texi:14644 +#: guix-git/doc/guix.texi:15001 msgid "The list of Linux kernel modules that need to be available in the initial RAM disk. @xref{Initial RAM Disk}." msgstr "Die Liste der Linux-Kernel-Module, die in der initialen RAM-Disk zur Verfügung stehen sollen. Siehe @ref{Initial RAM Disk}." #. type: item -#: guix-git/doc/guix.texi:14645 +#: guix-git/doc/guix.texi:15002 #, no-wrap msgid "@code{initrd} (default: @code{base-initrd})" msgstr "@code{initrd} (Vorgabe: @code{base-initrd})" #. type: table -#: guix-git/doc/guix.texi:14649 +#: guix-git/doc/guix.texi:15006 msgid "A procedure that returns an initial RAM disk for the Linux kernel. This field is provided to support low-level customization and should rarely be needed for casual use. @xref{Initial RAM Disk}." msgstr "Eine Prozedur, die eine initiale RAM-Disk für den Linux-Kernel liefert. Dieses Feld gibt es, damit auch sehr systemnahe Anpassungen vorgenommen werden können, aber für die normale Nutzung sollten Sie es kaum brauchen. Siehe @ref{Initial RAM Disk}." #. type: item -#: guix-git/doc/guix.texi:14650 +#: guix-git/doc/guix.texi:15007 #, no-wrap msgid "@code{firmware} (default: @code{%base-firmware})" msgstr "@code{firmware} (Vorgabe: @code{%base-firmware})" #. type: cindex -#: guix-git/doc/guix.texi:14651 +#: guix-git/doc/guix.texi:15008 #, no-wrap msgid "firmware" msgstr "Firmware" #. type: table -#: guix-git/doc/guix.texi:14653 +#: guix-git/doc/guix.texi:15010 msgid "List of firmware packages loadable by the operating system kernel." msgstr "Eine Liste der Firmware-Pakete, die vom Betriebssystem-Kernel geladen werden können." #. type: table -#: guix-git/doc/guix.texi:14658 +#: guix-git/doc/guix.texi:15015 msgid "The default includes firmware needed for Atheros- and Broadcom-based WiFi devices (Linux-libre modules @code{ath9k} and @code{b43-open}, respectively). @xref{Hardware Considerations}, for more info on supported hardware." msgstr "Vorgegeben ist, dass für Atheros- und Broadcom-basierte WLAN-Geräte nötige Firmware geladen werden kann (genauer jeweils die Linux-libre-Module @code{ath9k} und @code{b43-open}). Siehe den Abschnitt @ref{Hardware Considerations} für mehr Informationen zu unterstützter Hardware." #. type: code{#1} -#: guix-git/doc/guix.texi:14659 guix-git/doc/guix.texi:35572 +#: guix-git/doc/guix.texi:15016 guix-git/doc/guix.texi:36052 #, no-wrap msgid "host-name" msgstr "host-name" #. type: table -#: guix-git/doc/guix.texi:14661 +#: guix-git/doc/guix.texi:15018 msgid "The host name." msgstr "Der Rechnername." #. type: code{#1} -#: guix-git/doc/guix.texi:14662 +#: guix-git/doc/guix.texi:15019 #, no-wrap msgid "hosts-file" msgstr "hosts-file" #. type: cindex -#: guix-git/doc/guix.texi:14663 +#: guix-git/doc/guix.texi:15020 #, no-wrap msgid "hosts file" msgstr "hosts-Datei" #. type: table -#: guix-git/doc/guix.texi:14668 +#: guix-git/doc/guix.texi:15025 msgid "A file-like object (@pxref{G-Expressions, file-like objects}) for use as @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). The default is a file with entries for @code{localhost} and @var{host-name}." msgstr "Ein dateiartiges Objekt (siehe @ref{G-Expressions, dateiartige Objekte}), das für @file{/etc/hosts} benutzt werden soll (siehe @ref{Host Names,,, libc, Referenzhandbuch der GNU-C-Bibliothek}). Der Vorgabewert ist eine Datei mit Einträgen für @code{localhost} und @var{host-name}." #. type: item -#: guix-git/doc/guix.texi:14669 +#: guix-git/doc/guix.texi:15026 #, no-wrap msgid "@code{mapped-devices} (default: @code{'()})" msgstr "@code{mapped-devices} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:14671 +#: guix-git/doc/guix.texi:15028 msgid "A list of mapped devices. @xref{Mapped Devices}." msgstr "Eine Liste zugeordneter Geräte („mapped devices“). Siehe @ref{Mapped Devices}." #. type: code{#1} -#: guix-git/doc/guix.texi:14672 +#: guix-git/doc/guix.texi:15029 #, no-wrap msgid "file-systems" msgstr "file-systems" #. type: table -#: guix-git/doc/guix.texi:14674 +#: guix-git/doc/guix.texi:15031 msgid "A list of file systems. @xref{File Systems}." msgstr "Eine Liste von Dateisystemen. Siehe @ref{File Systems}." #. type: item -#: guix-git/doc/guix.texi:14675 +#: guix-git/doc/guix.texi:15032 #, no-wrap msgid "@code{swap-devices} (default: @code{'()})" msgstr "@code{swap-devices} (Vorgabe: @code{'()})" #. type: cindex -#: guix-git/doc/guix.texi:14676 +#: guix-git/doc/guix.texi:15033 #, no-wrap msgid "swap devices" msgstr "Swap-Geräte" #. type: table -#: guix-git/doc/guix.texi:14678 +#: guix-git/doc/guix.texi:15035 msgid "A list of swap spaces. @xref{Swap Space}." msgstr "Eine Liste der Swap-Speicher. Siehe @ref{Swap Space}." #. type: item -#: guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15036 #, no-wrap msgid "@code{users} (default: @code{%base-user-accounts})" msgstr "@code{users} (Vorgabe: @code{%base-user-accounts})" #. type: itemx -#: guix-git/doc/guix.texi:14680 +#: guix-git/doc/guix.texi:15037 #, no-wrap msgid "@code{groups} (default: @code{%base-groups})" msgstr "@code{groups} (Vorgabe: @code{%base-groups})" #. type: table -#: guix-git/doc/guix.texi:14682 +#: guix-git/doc/guix.texi:15039 msgid "List of user accounts and groups. @xref{User Accounts}." msgstr "Liste der Benutzerkonten und Benutzergruppen. Siehe @ref{User Accounts}." #. type: table -#: guix-git/doc/guix.texi:14685 +#: guix-git/doc/guix.texi:15042 msgid "If the @code{users} list lacks a user account with UID@tie{}0, a ``root'' account with UID@tie{}0 is automatically added." msgstr "Wenn in der @code{users}-Liste kein Benutzerkonto mit der UID-Kennung@tie{}0 aufgeführt wird, wird automatisch für den Administrator ein „root“-Benutzerkonto mit UID-Kennung@tie{}0 hinzugefügt." #. type: item -#: guix-git/doc/guix.texi:14686 +#: guix-git/doc/guix.texi:15043 #, no-wrap msgid "@code{skeletons} (default: @code{(default-skeletons)})" msgstr "@code{skeletons} (Vorgabe: @code{(default-skeletons)})" #. type: table -#: guix-git/doc/guix.texi:14690 +#: guix-git/doc/guix.texi:15047 msgid "A list of target file name/file-like object tuples (@pxref{G-Expressions, file-like objects}). These are the skeleton files that will be added to the home directory of newly-created user accounts." msgstr "Eine Liste von Tupeln aus je einem Ziel-Dateinamen und einem dateiähnlichen Objekt (siehe @ref{G-Expressions, dateiartige Objekte}). Diese Objekte werden als Skeleton-Dateien im Persönlichen Verzeichnis („Home“-Verzeichnis) jedes neuen Benutzerkontos angelegt." #. type: table -#: guix-git/doc/guix.texi:14692 +#: guix-git/doc/guix.texi:15049 msgid "For instance, a valid value may look like this:" msgstr "Ein gültiger Wert könnte zum Beispiel so aussehen:" #. type: lisp -#: guix-git/doc/guix.texi:14698 +#: guix-git/doc/guix.texi:15055 #, no-wrap msgid "" "`((\".bashrc\" ,(plain-file \"bashrc\" \"echo Hello\\n\"))\n" @@ -26852,29 +27501,29 @@ msgstr "" " (activate-readline)\")))\n" #. type: item -#: guix-git/doc/guix.texi:14700 +#: guix-git/doc/guix.texi:15057 #, no-wrap msgid "@code{issue} (default: @code{%default-issue})" msgstr "@code{issue} (Vorgabe: @code{%default-issue})" #. type: table -#: guix-git/doc/guix.texi:14703 +#: guix-git/doc/guix.texi:15060 msgid "A string denoting the contents of the @file{/etc/issue} file, which is displayed when users log in on a text console." msgstr "Eine Zeichenkette, die als Inhalt der Datei @file{/etc/issue} verwendet werden soll, der jedes Mal angezeigt wird, wenn sich ein Nutzer auf einer Textkonsole anmeldet." #. type: item -#: guix-git/doc/guix.texi:14704 +#: guix-git/doc/guix.texi:15061 #, no-wrap msgid "@code{packages} (default: @code{%base-packages})" msgstr "@code{packages} (Vorgabe: @code{%base-packages})" #. type: table -#: guix-git/doc/guix.texi:14708 +#: guix-git/doc/guix.texi:15065 msgid "A list of packages to be installed in the global profile, which is accessible at @file{/run/current-system/profile}. Each element is either a package variable or a package/output tuple. Here's a simple example of both:" msgstr "Eine Liste von Paketen, die ins globale Profil installiert werden sollen, welches unter @file{/run/current-system/profile} zu finden ist. Jedes Element ist entweder eine Paketvariable oder ein Tupel aus einem Paket und dessen gewünschter Ausgabe. Hier ist ein Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:14713 +#: guix-git/doc/guix.texi:15070 #, no-wrap msgid "" "(cons* git ; the default \"out\" output\n" @@ -26886,172 +27535,172 @@ msgstr "" " %base-packages) ; die normale Paketmenge\n" #. type: table -#: guix-git/doc/guix.texi:14718 +#: guix-git/doc/guix.texi:15075 msgid "The default set includes core utilities and it is good practice to install non-core utilities in user profiles (@pxref{Invoking guix package})." msgstr "Die vorgegebene Paketmenge umfasst zum Kern des Systems gehörende Werkzeuge („core utilities“). Es ist empfehlenswert, nicht zum Kern gehörende Werkzeuge („non-core“) stattdessen in Nutzerprofile zu installieren (siehe @ref{Invoking guix package})." #. type: code{#1} -#: guix-git/doc/guix.texi:14719 +#: guix-git/doc/guix.texi:15076 #, no-wrap msgid "timezone" msgstr "timezone" #. type: table -#: guix-git/doc/guix.texi:14721 +#: guix-git/doc/guix.texi:15078 msgid "A timezone identifying string---e.g., @code{\"Europe/Paris\"}." msgstr "Eine Zeichenkette, die die Zeitzone bezeichnet, wie z.B.@: @code{\"Europe/Berlin\"}." #. type: table -#: guix-git/doc/guix.texi:14725 +#: guix-git/doc/guix.texi:15082 msgid "You can run the @command{tzselect} command to find out which timezone string corresponds to your region. Choosing an invalid timezone name causes @command{guix system} to fail." msgstr "Mit dem Befehl @command{tzselect} können Sie herausfinden, welche Zeichenkette der Zeitzone Ihrer Region entspricht. Wenn Sie eine ungültige Zeichenkette angeben, schlägt @command{guix system} fehl." #. type: item -#: guix-git/doc/guix.texi:14726 guix-git/doc/guix.texi:21115 +#: guix-git/doc/guix.texi:15083 guix-git/doc/guix.texi:21477 #, no-wrap msgid "@code{locale} (default: @code{\"en_US.utf8\"})" msgstr "@code{locale} (Vorgabe: @code{\"en_US.utf8\"})" #. type: table -#: guix-git/doc/guix.texi:14729 +#: guix-git/doc/guix.texi:15086 msgid "The name of the default locale (@pxref{Locale Names,,, libc, The GNU C Library Reference Manual}). @xref{Locales}, for more information." msgstr "Der Name der als Voreinstellung zu verwendenden Locale (siehe @ref{Locale Names,,, libc, Referenzhandbuch der GNU-C-Bibliothek}). Siehe @ref{Locales} für weitere Informationen." #. type: item -#: guix-git/doc/guix.texi:14730 +#: guix-git/doc/guix.texi:15087 #, no-wrap msgid "@code{locale-definitions} (default: @code{%default-locale-definitions})" msgstr "@code{locale-definitions} (Vorgabe: @code{%default-locale-definitions})" #. type: table -#: guix-git/doc/guix.texi:14733 +#: guix-git/doc/guix.texi:15090 msgid "The list of locale definitions to be compiled and that may be used at run time. @xref{Locales}." msgstr "Die Liste der Locale-Definitionen, die kompiliert werden sollen und dann im laufenden System benutzt werden können. Siehe @ref{Locales}." #. type: item -#: guix-git/doc/guix.texi:14734 +#: guix-git/doc/guix.texi:15091 #, no-wrap msgid "@code{locale-libcs} (default: @code{(list @var{glibc})})" msgstr "@code{locale-libcs} (Vorgabe: @code{(list @var{glibc})})" #. type: table -#: guix-git/doc/guix.texi:14738 +#: guix-git/doc/guix.texi:15095 msgid "The list of GNU@tie{}libc packages whose locale data and tools are used to build the locale definitions. @xref{Locales}, for compatibility considerations that justify this option." msgstr "Die Liste der GNU-libc-Pakete, deren Locale-Daten und -Werkzeuge zum Erzeugen der Locale-Definitionen verwendet werden sollen. Siehe @ref{Locales} für eine Erläuterung der Kompatibilitätsauswirkungen, deretwegen man diese Option benutzen wollen könnte." #. type: item -#: guix-git/doc/guix.texi:14739 +#: guix-git/doc/guix.texi:15096 #, no-wrap msgid "@code{name-service-switch} (default: @code{%default-nss})" msgstr "@code{name-service-switch} (Vorgabe: @code{%default-nss})" #. type: table -#: guix-git/doc/guix.texi:14743 +#: guix-git/doc/guix.texi:15100 msgid "Configuration of the libc name service switch (NSS)---a @code{} object. @xref{Name Service Switch}, for details." msgstr "Die Konfiguration des Name Service Switch (NSS) der libc@tie{}— ein @code{}-Objekt. Siehe @ref{Name Service Switch} für Details." #. type: item -#: guix-git/doc/guix.texi:14744 +#: guix-git/doc/guix.texi:15101 #, no-wrap msgid "@code{services} (default: @code{%base-services})" msgstr "@code{services} (Vorgabe: @code{%base-services})" #. type: table -#: guix-git/doc/guix.texi:14746 +#: guix-git/doc/guix.texi:15103 msgid "A list of service objects denoting system services. @xref{Services}." msgstr "Eine Liste von „service“-Objekten, die die Systemdienste repräsentieren. Siehe @ref{Services}." #. type: cindex -#: guix-git/doc/guix.texi:14747 +#: guix-git/doc/guix.texi:15104 #, no-wrap msgid "essential services" msgstr "essenzielle Dienste" #. type: item -#: guix-git/doc/guix.texi:14748 +#: guix-git/doc/guix.texi:15105 #, no-wrap msgid "@code{essential-services} (default: ...)" msgstr "@code{essential-services} (Vorgabe: …)" #. type: table -#: guix-git/doc/guix.texi:14753 +#: guix-git/doc/guix.texi:15110 msgid "The list of ``essential services''---i.e., things like instances of @code{system-service-type} and @code{host-name-service-type} (@pxref{Service Reference}), which are derived from the operating system definition itself. As a user you should @emph{never} need to touch this field." msgstr "Die Liste „essenzieller Dienste“@tie{}— d.h.@: Dinge wie Instanzen von @code{system-service-type} und @code{host-name-service-type} (siehe @ref{Service Reference}), die aus der Betriebssystemdefinition an sich abgeleitet werden. Als normaler Benutzer sollten Sie dieses Feld @emph{niemals} ändern müssen." #. type: item -#: guix-git/doc/guix.texi:14754 +#: guix-git/doc/guix.texi:15111 #, no-wrap msgid "@code{pam-services} (default: @code{(base-pam-services)})" msgstr "@code{pam-services} (Vorgabe: @code{(base-pam-services)})" #. type: cindex -#: guix-git/doc/guix.texi:14755 +#: guix-git/doc/guix.texi:15112 #, no-wrap msgid "PAM" msgstr "PAM" #. type: cindex -#: guix-git/doc/guix.texi:14756 +#: guix-git/doc/guix.texi:15113 #, no-wrap msgid "pluggable authentication modules" msgstr "Pluggable Authentication Modules" #. type: table -#: guix-git/doc/guix.texi:14759 +#: guix-git/doc/guix.texi:15116 msgid "Linux @dfn{pluggable authentication module} (PAM) services." msgstr "Dienste für @dfn{Pluggable Authentication Modules} (PAM) von Linux." #. type: item -#: guix-git/doc/guix.texi:14760 +#: guix-git/doc/guix.texi:15117 #, no-wrap msgid "@code{setuid-programs} (default: @code{%setuid-programs})" msgstr "@code{setuid-programs} (Vorgabe: @code{%setuid-programs})" #. type: table -#: guix-git/doc/guix.texi:14763 +#: guix-git/doc/guix.texi:15120 msgid "List of @code{}. @xref{Setuid Programs}, for more information." msgstr "Eine Liste von @code{}-Objekten. Siehe @ref{Setuid Programs}." #. type: item -#: guix-git/doc/guix.texi:14764 +#: guix-git/doc/guix.texi:15121 #, no-wrap msgid "@code{sudoers-file} (default: @code{%sudoers-specification})" msgstr "@code{sudoers-file} (Vorgabe: @code{%sudoers-specification})" #. type: cindex -#: guix-git/doc/guix.texi:14765 +#: guix-git/doc/guix.texi:15122 #, no-wrap msgid "sudoers file" msgstr "sudoers-Datei" #. type: table -#: guix-git/doc/guix.texi:14768 +#: guix-git/doc/guix.texi:15125 msgid "The contents of the @file{/etc/sudoers} file as a file-like object (@pxref{G-Expressions, @code{local-file} and @code{plain-file}})." msgstr "Der Inhalt der Datei @file{/etc/sudoers} als ein dateiähnliches Objekt (siehe @ref{G-Expressions, @code{local-file} und @code{plain-file}})." #. type: table -#: guix-git/doc/guix.texi:14773 +#: guix-git/doc/guix.texi:15130 msgid "This file specifies which users can use the @command{sudo} command, what they are allowed to do, and what privileges they may gain. The default is that only @code{root} and members of the @code{wheel} group may use @code{sudo}." msgstr "Diese Datei gibt an, welche Nutzer den Befehl @command{sudo} benutzen dürfen, was sie damit tun und welche Berechtigungen sie so erhalten können. Die Vorgabe ist, dass nur der Administratornutzer @code{root} und Mitglieder der Benutzergruppe @code{wheel} den @code{sudo}-Befehl verwenden dürfen." #. type: deffn -#: guix-git/doc/guix.texi:14776 +#: guix-git/doc/guix.texi:15133 #, no-wrap msgid "{Scheme Syntax} this-operating-system" msgstr "{Scheme-Syntax} this-operating-system" #. type: deffn -#: guix-git/doc/guix.texi:14779 +#: guix-git/doc/guix.texi:15136 msgid "When used in the @emph{lexical scope} of an operating system field definition, this identifier resolves to the operating system being defined." msgstr "Wenn dies im @emph{lexikalischen Geltungsbereich} der Definition eines Feldes im Betriebssystem steht, bezieht sich dieser Bezeichner auf das Betriebssystem, das gerade definiert wird." #. type: deffn -#: guix-git/doc/guix.texi:14782 +#: guix-git/doc/guix.texi:15139 msgid "The example below shows how to refer to the operating system being defined in the definition of the @code{label} field:" msgstr "Das folgende Beispiel zeigt, wie man auf das Betriebssystem, das gerade definiert wird, verweist, während man die Definition des @code{label}-Felds schreibt:" #. type: lisp -#: guix-git/doc/guix.texi:14785 guix-git/doc/guix.texi:18711 +#: guix-git/doc/guix.texi:15142 guix-git/doc/guix.texi:19073 #, no-wrap msgid "" "(use-modules (gnu) (guix))\n" @@ -27061,7 +27710,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:14790 +#: guix-git/doc/guix.texi:15147 #, no-wrap msgid "" "(operating-system\n" @@ -27075,17 +27724,17 @@ msgstr "" " (operating-system-kernel this-operating-system))))\n" #. type: deffn -#: guix-git/doc/guix.texi:14794 +#: guix-git/doc/guix.texi:15151 msgid "It is an error to refer to @code{this-operating-system} outside an operating system definition." msgstr "Es ist ein Fehler, außerhalb einer Betriebssystemdefinition auf @code{this-operating-system} zu verweisen." #. type: Plain text -#: guix-git/doc/guix.texi:14805 +#: guix-git/doc/guix.texi:15162 msgid "The list of file systems to be mounted is specified in the @code{file-systems} field of the operating system declaration (@pxref{Using the Configuration System}). Each file system is declared using the @code{file-system} form, like this:" msgstr "Die Liste der Dateisysteme, die eingebunden werden sollen, steht im @code{file-systems}-Feld der Betriebssystemdeklaration (siehe @ref{Using the Configuration System}). Jedes Dateisystem wird mit der @code{file-system}-Form deklariert, etwa so:" #. type: lisp -#: guix-git/doc/guix.texi:14811 +#: guix-git/doc/guix.texi:15168 #, no-wrap msgid "" "(file-system\n" @@ -27099,68 +27748,68 @@ msgstr "" " (type \"ext4\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:14815 +#: guix-git/doc/guix.texi:15172 msgid "As usual, some of the fields are mandatory---those shown in the example above---while others can be omitted. These are described below." msgstr "Wie immer müssen manche Felder angegeben werden@tie{}— die, die im Beispiel oben stehen@tie{}—, während andere optional sind. Die Felder werden nun beschrieben." #. type: deftp -#: guix-git/doc/guix.texi:14816 +#: guix-git/doc/guix.texi:15173 #, no-wrap msgid "{Data Type} file-system" msgstr "{Datentyp} file-system" #. type: deftp -#: guix-git/doc/guix.texi:14819 +#: guix-git/doc/guix.texi:15176 msgid "Objects of this type represent file systems to be mounted. They contain the following members:" msgstr "Objekte dieses Typs repräsentieren einzubindende Dateisysteme. Sie weisen folgende Komponenten auf:" #. type: item -#: guix-git/doc/guix.texi:14821 guix-git/doc/guix.texi:15201 -#: guix-git/doc/guix.texi:17317 +#: guix-git/doc/guix.texi:15178 guix-git/doc/guix.texi:15558 +#: guix-git/doc/guix.texi:17679 #, no-wrap msgid "type" msgstr "type" #. type: table -#: guix-git/doc/guix.texi:14824 +#: guix-git/doc/guix.texi:15181 msgid "This is a string specifying the type of the file system---e.g., @code{\"ext4\"}." msgstr "Eine Zeichenkette, die den Typ des Dateisystems spezifiziert, z.B.@: @code{\"ext4\"}." #. type: code{#1} -#: guix-git/doc/guix.texi:14825 +#: guix-git/doc/guix.texi:15182 #, no-wrap msgid "mount-point" msgstr "mount-point" #. type: table -#: guix-git/doc/guix.texi:14827 +#: guix-git/doc/guix.texi:15184 msgid "This designates the place where the file system is to be mounted." msgstr "Der Einhängepunkt, d.h.@: der Pfad, an dem das Dateisystem eingebunden werden soll." #. type: item -#: guix-git/doc/guix.texi:14828 guix-git/doc/guix.texi:17267 +#: guix-git/doc/guix.texi:15185 guix-git/doc/guix.texi:17629 #, no-wrap msgid "device" msgstr "device" #. type: table -#: guix-git/doc/guix.texi:14838 +#: guix-git/doc/guix.texi:15195 msgid "This names the ``source'' of the file system. It can be one of three things: a file system label, a file system UUID, or the name of a @file{/dev} node. Labels and UUIDs offer a way to refer to file systems without having to hard-code their actual device name@footnote{Note that, while it is tempting to use @file{/dev/disk/by-uuid} and similar device names to achieve the same result, this is not recommended: These special device nodes are created by the udev daemon and may be unavailable at the time the device is mounted.}." msgstr "Hiermit wird die „Quelle“ des Dateisystems bezeichnet. Sie kann eines von drei Dingen sein: die Bezeichnung („Labels“) eines Dateisystems, die UUID-Kennung des Dateisystems oder der Name eines @file{/dev}-Knotens. Mit Bezeichnungen und UUIDs können Sie Dateisysteme benennen, ohne den Gerätenamen festzuschreiben@footnote{Beachten Sie: Obwohl es verführerisch ist, mit @file{/dev/disk/by-uuid} und ähnlichen Gerätenamen dasselbe Resultat bekommen zu wollen, raten wir davon ab: Diese speziellen Geräte werden erst vom udev-Daemon erzeugt und sind, wenn die Geräte eingebunden werden, vielleicht noch nicht verfügbar.}." #. type: findex -#: guix-git/doc/guix.texi:14839 +#: guix-git/doc/guix.texi:15196 #, no-wrap msgid "file-system-label" msgstr "file-system-label" #. type: table -#: guix-git/doc/guix.texi:14844 +#: guix-git/doc/guix.texi:15201 msgid "File system labels are created using the @code{file-system-label} procedure, UUIDs are created using @code{uuid}, and @file{/dev} node are plain strings. Here's an example of a file system referred to by its label, as shown by the @command{e2label} command:" msgstr "Dateisystem-Bezeichnungen („Labels“) werden mit der Prozedur @code{file-system-label} erzeugt und UUID-Kennungen werden mit @code{uuid} erzeugt, während Knoten in @file{/dev} mit ihrem Pfad als einfache Zeichenketten aufgeführt werden. Hier ist ein Beispiel, wie wir ein Dateisystem anhand seiner Bezeichnung aufführen, wie sie vom Befehl @command{e2label} angezeigt wird:" #. type: lisp -#: guix-git/doc/guix.texi:14850 +#: guix-git/doc/guix.texi:15207 #, no-wrap msgid "" "(file-system\n" @@ -27174,19 +27823,19 @@ msgstr "" " (device (file-system-label \"my-home\")))\n" #. type: code{#1} -#: guix-git/doc/guix.texi:14852 guix-git/doc/guix.texi:33130 -#: guix-git/doc/guix.texi:33146 +#: guix-git/doc/guix.texi:15209 guix-git/doc/guix.texi:33495 +#: guix-git/doc/guix.texi:33511 #, no-wrap msgid "uuid" msgstr "uuid" #. type: table -#: guix-git/doc/guix.texi:14860 +#: guix-git/doc/guix.texi:15217 msgid "UUIDs are converted from their string representation (as shown by the @command{tune2fs -l} command) using the @code{uuid} form@footnote{The @code{uuid} form expects 16-byte UUIDs as defined in @uref{https://tools.ietf.org/html/rfc4122, RFC@tie{}4122}. This is the form of UUID used by the ext2 family of file systems and others, but it is different from ``UUIDs'' found in FAT file systems, for instance.}, like this:" msgstr "UUID-Kennungen werden mit der @code{uuid}-Form von ihrer Darstellung als Zeichenkette (wie sie vom Befehl @command{tune2fs -l} angezeigt wird) konvertiert@footnote{Die @code{uuid}-Form nimmt 16-Byte-UUIDs entgegen, wie sie in @uref{https://tools.ietf.org/html/rfc4122, RFC@tie{}4122} definiert sind. Diese Form der UUID wird unter anderem von der ext2-Familie von Dateisystemen verwendet, sie unterscheidet sich jedoch zum Beispiel von den „UUID“ genannten Kennungen, wie man sie bei FAT-Dateisystemen findet.} wie hier:" #. type: lisp -#: guix-git/doc/guix.texi:14866 +#: guix-git/doc/guix.texi:15223 #, no-wrap msgid "" "(file-system\n" @@ -27200,168 +27849,168 @@ msgstr "" " (device (uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\")))\n" #. type: table -#: guix-git/doc/guix.texi:14874 +#: guix-git/doc/guix.texi:15231 msgid "When the source of a file system is a mapped device (@pxref{Mapped Devices}), its @code{device} field @emph{must} refer to the mapped device name---e.g., @file{\"/dev/mapper/root-partition\"}. This is required so that the system knows that mounting the file system depends on having the corresponding device mapping established." msgstr "Wenn die Quelle eines Dateisystems ein zugeordnetes Gerät (siehe @ref{Mapped Devices}) ist, @emph{muss} sich das @code{device}-Feld auf den zugeordneten Gerätenamen beziehen@tie{}— z.B.@: @file{\"/dev/mapper/root-partition\"}. Das ist nötig, damit das System weiß, dass das Einbinden des Dateisystems davon abhängt, die entsprechende Gerätezuordnung hergestellt zu haben." #. type: item -#: guix-git/doc/guix.texi:14875 +#: guix-git/doc/guix.texi:15232 #, no-wrap msgid "@code{flags} (default: @code{'()})" msgstr "@code{flags} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:14885 +#: guix-git/doc/guix.texi:15242 msgid "This is a list of symbols denoting mount flags. Recognized flags include @code{read-only}, @code{bind-mount}, @code{no-dev} (disallow access to special files), @code{no-suid} (ignore setuid and setgid bits), @code{no-atime} (do not update file access times), @code{strict-atime} (update file access time), @code{lazy-time} (only update time on the in-memory version of the file inode), and @code{no-exec} (disallow program execution). @xref{Mount-Unmount-Remount,,, libc, The GNU C Library Reference Manual}, for more information on these flags." msgstr "Eine Liste von Symbolen, die Einbinde-Flags („mount flags“) bezeichnen. Erkannt werden unter anderem @code{read-only}, @code{bind-mount}, @code{no-dev} (Zugang zu besonderen Dateien verweigern), @code{no-suid} (setuid- und setgid-Bits ignorieren), @code{no-atime} (Dateizugriffs-Zeitstempel @emph{nicht} aktualisieren), @code{strict-atime} (Dateizugriffs-Zeitstempel immer aktualisieren), @code{lazy-time} (Zeitstempel nur auf zwischengespeicherten Datei-Inodes im Arbeitsspeicher aktualisieren) und @code{no-exec} (Programmausführungen verweigern). Siehe @ref{Mount-Unmount-Remount,,, libc, Referenzhandbuch der GNU-C-Bibliothek} für mehr Informationen zu diesen Einbinde-Optionen." #. type: item -#: guix-git/doc/guix.texi:14886 +#: guix-git/doc/guix.texi:15243 #, no-wrap msgid "@code{options} (default: @code{#f})" msgstr "@code{options} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:14895 +#: guix-git/doc/guix.texi:15252 msgid "This is either @code{#f}, or a string denoting mount options passed to the file system driver. @xref{Mount-Unmount-Remount,,, libc, The GNU C Library Reference Manual}, for details and run @command{man 8 mount} for options for various file systems. Note that the @code{file-system-options->alist} and @code{alist->file-system-options} procedures from @code{(gnu system file-systems)} can be used to convert file system options given as an association list to the string representation, and vice-versa." msgstr "Entweder @code{#f} oder eine Zeichenkette mit Einbinde-Optionen („mount options“), die an den Dateisystemtreiber übergeben werden. Siehe @ref{Mount-Unmount-Remount,,, libc, Referenzhandbuch der GNU-C-Bibliothek} für Details; führen Sie @command{man 8 mount} aus, um die Einbinde-Optionen verschiedener Dateisysteme zu sehen. Beachten Sie, dass die Prozeduren @code{file-system-options->alist} und @code{alist->file-system-options} aus @code{(gnu system file-systems)} benutzt werden können, um als assoziative Liste dargestellte Dateisystemoptionen in eine Darstellung als Zeichenkette umzuwandeln und umgekehrt." #. type: item -#: guix-git/doc/guix.texi:14896 +#: guix-git/doc/guix.texi:15253 #, no-wrap msgid "@code{mount?} (default: @code{#t})" msgstr "@code{mount?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:14901 +#: guix-git/doc/guix.texi:15258 msgid "This value indicates whether to automatically mount the file system when the system is brought up. When set to @code{#f}, the file system gets an entry in @file{/etc/fstab} (read by the @command{mount} command) but is not automatically mounted." msgstr "Dieser Wert zeigt an, ob das Dateisystem automatisch eingebunden werden soll, wenn das System gestartet wird. Ist der Wert @code{#f}, dann erhält das Dateisystem nur einen Eintrag in der Datei @file{/etc/fstab} (welche vom @command{mount}-Befehl zum Einbinden gelesen wird), es wird aber nicht automatisch eingebunden." #. type: item -#: guix-git/doc/guix.texi:14902 +#: guix-git/doc/guix.texi:15259 #, no-wrap msgid "@code{needed-for-boot?} (default: @code{#f})" msgstr "@code{needed-for-boot?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:14907 +#: guix-git/doc/guix.texi:15264 msgid "This Boolean value indicates whether the file system is needed when booting. If that is true, then the file system is mounted when the initial RAM disk (initrd) is loaded. This is always the case, for instance, for the root file system." msgstr "Dieser boolesche Wert gibt an, ob das Dateisystem zum Hochfahren des Systems notwendig ist. In diesem Fall wird das Dateisystem eingebunden, wenn die initiale RAM-Disk (initrd) geladen wird. Für zum Beispiel das Wurzeldateisystem ist dies ohnehin immer der Fall." #. type: item -#: guix-git/doc/guix.texi:14908 +#: guix-git/doc/guix.texi:15265 #, no-wrap msgid "@code{check?} (default: @code{#t})" msgstr "@code{check?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:14912 +#: guix-git/doc/guix.texi:15269 msgid "This Boolean indicates whether the file system should be checked for errors before being mounted. How and when this happens can be further adjusted with the following options." msgstr "Dieser boolesche Wert sagt aus, ob das Dateisystem vor dem Einbinden auf Fehler hin geprüft werden soll. Feineinstellungen, wie und wann geprüft wird, sind mit den folgenden Optionen möglich." #. type: item -#: guix-git/doc/guix.texi:14913 +#: guix-git/doc/guix.texi:15270 #, no-wrap msgid "@code{skip-check-if-clean?} (default: @code{#t})" msgstr "@code{skip-check-if-clean?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:14918 +#: guix-git/doc/guix.texi:15275 msgid "When true, this Boolean indicates that a file system check triggered by @code{check?} may exit early if the file system is marked as ``clean'', meaning that it was previously correctly unmounted and should not contain errors." msgstr "Wenn es wahr ist, zeigt dieser Boolesche Ausdruck an, ob eine durch @code{check?} ausgelöste Dateisystemüberprüfung direkt abbrechen darf, wenn das Dateisystem als in Ordnung („clean“) markiert ist, also zuvor korrekt ausgehangen wurde, so dass es keine Fehler enthalten dürfte." #. type: table -#: guix-git/doc/guix.texi:14922 +#: guix-git/doc/guix.texi:15279 msgid "Setting this to false will always force a full consistency check when @code{check?} is true. This may take a very long time and is not recommended on healthy systems---in fact, it may reduce reliability!" msgstr "Wenn Sie es auf falsch setzen, wird eine vollständige Konsistenzprüfung bei jedem Start erzwungen, wenn @code{check?} auf wahr gesetzt ist. Das kann sehr viel Zeit in Anspruch nehmen. Auf gesunden Systemen lassen Sie es besser eingeschaltet, sonst kann die Verlässlichkeit sogar abnehmen!" #. type: table -#: guix-git/doc/guix.texi:14926 +#: guix-git/doc/guix.texi:15283 msgid "Conversely, some primitive file systems like @code{fat} do not keep track of clean shutdowns and will perform a full scan regardless of the value of this option." msgstr "Andererseits speichern Dateisysteme wie @code{fat} @emph{nicht}, ob der Rechner ordentlich heruntergefahren wurde, deswegen wird diese Option für sie ignoriert." #. type: item -#: guix-git/doc/guix.texi:14927 +#: guix-git/doc/guix.texi:15284 #, no-wrap msgid "@code{repair} (default: @code{'preen})" msgstr "@code{repair} (Vorgabe: @code{'preen})" #. type: table -#: guix-git/doc/guix.texi:14930 +#: guix-git/doc/guix.texi:15287 msgid "When @code{check?} finds errors, it can (try to) repair them and continue booting. This option controls when and how to do so." msgstr "Wenn durch @code{check?} Fehler festgestellt wurden, kann es versuchen, das Dateisystem zu reparieren, und das System danach normal starten. Mit dieser Option legen Sie fest, wann und wie repariert werden soll." #. type: table -#: guix-git/doc/guix.texi:14934 +#: guix-git/doc/guix.texi:15291 msgid "If false, try not to modify the file system at all. Checking certain file systems like @code{jfs} may still write to the device to replay the journal. No repairs will be attempted." msgstr "Wenn es falsch ist, wird das Dateisystem möglichst unverändert gelassen. Beim Überprüfen mancher Dateisysteme wie @code{jfs} können trotzdem Schreibzugriffe auf das Gerät stattfinden, um die Aufzeichnungen über Operationen (das „Journal“) zu wiederholen. Es wird @emph{keine} Reparatur versucht." #. type: table -#: guix-git/doc/guix.texi:14937 +#: guix-git/doc/guix.texi:15294 msgid "If @code{#t}, try to repair any errors found and assume ``yes'' to all questions. This will fix the most errors, but may be risky." msgstr "Wenn es @code{#t} ist, wird versucht, alle gefundenen Fehler zu beheben. Auf alle Rückfragen wird mit „yes“ geantwortet. Dadurch werden die meisten Fehler behoben, aber es kann schiefgehen." #. type: table -#: guix-git/doc/guix.texi:14941 +#: guix-git/doc/guix.texi:15298 msgid "If @code{'preen}, repair only errors that are safe to fix without human interaction. What that means is left up to the developers of each file system and may be equivalent to ``none'' or ``all''." msgstr "Wenn es @code{'preen} ist, werden nur solche Fehler behoben, wo auch ohne menschliche Aufsicht nichts Schlimmes passieren kann. Was das genau heißt, bleibt den Entwicklern des jeweiligen Dateisystems überlassen. Es kann auf dasselbe hinauslaufen wie keine oder alle Fehler zu beheben." #. type: item -#: guix-git/doc/guix.texi:14942 +#: guix-git/doc/guix.texi:15299 #, no-wrap msgid "@code{create-mount-point?} (default: @code{#f})" msgstr "@code{create-mount-point?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:14944 +#: guix-git/doc/guix.texi:15301 msgid "When true, the mount point is created if it does not exist yet." msgstr "Steht dies auf wahr, wird der Einhängepunkt vor dem Einbinden erstellt, wenn er noch nicht existiert." #. type: item -#: guix-git/doc/guix.texi:14945 +#: guix-git/doc/guix.texi:15302 #, no-wrap msgid "@code{mount-may-fail?} (default: @code{#f})" msgstr "@code{mount-may-fail?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:14950 +#: guix-git/doc/guix.texi:15307 msgid "When true, this indicates that mounting this file system can fail but that should not be considered an error. This is useful in unusual cases; an example of this is @code{efivarfs}, a file system that can only be mounted on EFI/UEFI systems." msgstr "Wenn dies auf wahr steht, bedeutet es, dass das Einbinden dieses Dateisystems scheitern kann, dies aber nicht als Fehler aufgefasst werden soll. Das braucht man in besonderen Fällen, zum Beispiel wird es für @code{efivarfs} benutzt, einem Dateisystem, das nur auf EFI-/UEFI-Systemen eingebunden werden kann." #. type: item -#: guix-git/doc/guix.texi:14951 guix-git/doc/guix.texi:15347 +#: guix-git/doc/guix.texi:15308 guix-git/doc/guix.texi:15704 #, no-wrap msgid "@code{dependencies} (default: @code{'()})" msgstr "@code{dependencies} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:14955 +#: guix-git/doc/guix.texi:15312 msgid "This is a list of @code{} or @code{} objects representing file systems that must be mounted or mapped devices that must be opened before (and unmounted or closed after) this one." msgstr "Dies ist eine Liste von @code{}- oder @code{}-Objekten, die Dateisysteme repräsentieren, die vor diesem Dateisystem eingebunden oder zugeordnet werden müssen (und nach diesem ausgehängt oder geschlossen werden müssen)." #. type: table -#: guix-git/doc/guix.texi:14959 +#: guix-git/doc/guix.texi:15316 msgid "As an example, consider a hierarchy of mounts: @file{/sys/fs/cgroup} is a dependency of @file{/sys/fs/cgroup/cpu} and @file{/sys/fs/cgroup/memory}." msgstr "Betrachten Sie zum Beispiel eine Hierarchie von Einbindungen: @file{/sys/fs/cgroup} ist eine Abhängigkeit von @file{/sys/fs/cgroup/cpu} und @file{/sys/fs/cgroup/memory}." #. type: table -#: guix-git/doc/guix.texi:14962 +#: guix-git/doc/guix.texi:15319 msgid "Another example is a file system that depends on a mapped device, for example for an encrypted partition (@pxref{Mapped Devices})." msgstr "Ein weiteres Beispiel ist ein Dateisystem, was von einem zugeordneten Gerät abhängt, zum Beispiel zur Verschlüsselung einer Partition (siehe @ref{Mapped Devices})." #. type: deffn -#: guix-git/doc/guix.texi:14965 +#: guix-git/doc/guix.texi:15322 #, no-wrap msgid "{Scheme Procedure} file-system-label @var{str}" msgstr "{Scheme-Prozedur} file-system-label @var{Zeichenkette}" #. type: deffn -#: guix-git/doc/guix.texi:14968 +#: guix-git/doc/guix.texi:15325 msgid "This procedure returns an opaque file system label from @var{str}, a string:" msgstr "Diese Prozedur kapselt die @var{Zeichenkette} in einer opaken Dateisystembezeichnung:" #. type: lisp -#: guix-git/doc/guix.texi:14972 +#: guix-git/doc/guix.texi:15329 #, no-wrap msgid "" "(file-system-label \"home\")\n" @@ -27371,104 +28020,104 @@ msgstr "" "@result{} #\n" #. type: deffn -#: guix-git/doc/guix.texi:14976 +#: guix-git/doc/guix.texi:15333 msgid "File system labels are used to refer to file systems by label rather than by device name. See above for examples." msgstr "Mit Dateisystembezeichnungen werden Dateisysteme anhand ihrer Bezeichnung („Label“) statt ihres Gerätenamens („Device Name“) identifiziert. Siehe die Beispiele oben." #. type: Plain text -#: guix-git/doc/guix.texi:14980 +#: guix-git/doc/guix.texi:15337 msgid "The @code{(gnu system file-systems)} exports the following useful variables." msgstr "Das Modul @code{(gnu system file-systems)} exportiert die folgenden nützlichen Variablen." #. type: defvr -#: guix-git/doc/guix.texi:14981 +#: guix-git/doc/guix.texi:15338 #, no-wrap msgid "{Scheme Variable} %base-file-systems" msgstr "{Scheme-Variable} %base-file-systems" #. type: defvr -#: guix-git/doc/guix.texi:14986 +#: guix-git/doc/guix.texi:15343 msgid "These are essential file systems that are required on normal systems, such as @code{%pseudo-terminal-file-system} and @code{%immutable-store} (see below). Operating system declarations should always contain at least these." msgstr "Hiermit werden essenzielle Dateisysteme bezeichnet, die für normale Systeme unverzichtbar sind, wie zum Beispiel @code{%pseudo-terminal-file-system} und @code{%immutable-store} (siehe unten). Betriebssystemdeklaration sollten auf jeden Fall mindestens diese enthalten." #. type: defvr -#: guix-git/doc/guix.texi:14988 +#: guix-git/doc/guix.texi:15345 #, no-wrap msgid "{Scheme Variable} %pseudo-terminal-file-system" msgstr "{Scheme-Variable} %pseudo-terminal-file-system" #. type: defvr -#: guix-git/doc/guix.texi:14994 +#: guix-git/doc/guix.texi:15351 msgid "This is the file system to be mounted as @file{/dev/pts}. It supports @dfn{pseudo-terminals} created @i{via} @code{openpty} and similar functions (@pxref{Pseudo-Terminals,,, libc, The GNU C Library Reference Manual}). Pseudo-terminals are used by terminal emulators such as @command{xterm}." msgstr "Das als @file{/dev/pts} einzubindende Dateisystem. Es unterstützt über @code{openpty} und ähnliche Funktionen erstellte @dfn{Pseudo-Terminals} (siehe @ref{Pseudo-Terminals,,, libc, Referenzhandbuch der GNU-C-Bibliothek}). Pseudo-Terminals werden von Terminal-Emulatoren wie @command{xterm} benutzt." #. type: defvr -#: guix-git/doc/guix.texi:14996 +#: guix-git/doc/guix.texi:15353 #, no-wrap msgid "{Scheme Variable} %shared-memory-file-system" msgstr "{Scheme-Variable} %shared-memory-file-system" #. type: defvr -#: guix-git/doc/guix.texi:15000 +#: guix-git/doc/guix.texi:15357 msgid "This file system is mounted as @file{/dev/shm} and is used to support memory sharing across processes (@pxref{Memory-mapped I/O, @code{shm_open},, libc, The GNU C Library Reference Manual})." msgstr "Dieses Dateisystem wird als @file{/dev/shm} eingebunden, um Speicher zwischen Prozessen teilen zu können (siehe @ref{Memory-mapped I/O, @code{shm_open},, libc, Referenzhandbuch der GNU-C-Bibliothek})." #. type: defvr -#: guix-git/doc/guix.texi:15002 +#: guix-git/doc/guix.texi:15359 #, no-wrap msgid "{Scheme Variable} %immutable-store" msgstr "{Scheme-Variable} %immutable-store" #. type: defvr -#: guix-git/doc/guix.texi:15007 +#: guix-git/doc/guix.texi:15364 msgid "This file system performs a read-only ``bind mount'' of @file{/gnu/store}, making it read-only for all the users including @code{root}. This prevents against accidental modification by software running as @code{root} or by system administrators." msgstr "Dieses Dateisystem vollzieht eine Verzeichniseinbindung („bind mount“) des @file{/gnu/store}, um ihn für alle Nutzer einschließlich des Administratornutzers @code{root} nur lesbar zu machen, d.h.@: Schreibrechte zu entziehen. Dadurch kann als @code{root} ausgeführte Software, oder der Systemadministrator, nicht aus Versehen den Store modifizieren." #. type: defvr -#: guix-git/doc/guix.texi:15010 +#: guix-git/doc/guix.texi:15367 msgid "The daemon itself is still able to write to the store: it remounts it read-write in its own ``name space.''" msgstr "Der Daemon kann weiterhin in den Store schreiben, indem er ihn selbst mit Schreibrechten in seinem eigenen „Namensraum“ einbindet." #. type: defvr -#: guix-git/doc/guix.texi:15012 +#: guix-git/doc/guix.texi:15369 #, no-wrap msgid "{Scheme Variable} %binary-format-file-system" msgstr "{Scheme-Variable} %binary-format-file-system" #. type: defvr -#: guix-git/doc/guix.texi:15016 +#: guix-git/doc/guix.texi:15373 msgid "The @code{binfmt_misc} file system, which allows handling of arbitrary executable file types to be delegated to user space. This requires the @code{binfmt.ko} kernel module to be loaded." msgstr "Das @code{binfmt_misc}-Dateisystem, durch das beliebige Dateitypen als ausführbare Dateien auf der Anwendungsebene (dem User Space) zugänglich gemacht werden können. Es setzt voraus, dass das Kernel-Modul @code{binfmt.ko} geladen wurde." #. type: defvr -#: guix-git/doc/guix.texi:15018 +#: guix-git/doc/guix.texi:15375 #, no-wrap msgid "{Scheme Variable} %fuse-control-file-system" msgstr "{Scheme-Variable} %fuse-control-file-system" #. type: defvr -#: guix-git/doc/guix.texi:15022 +#: guix-git/doc/guix.texi:15379 msgid "The @code{fusectl} file system, which allows unprivileged users to mount and unmount user-space FUSE file systems. This requires the @code{fuse.ko} kernel module to be loaded." msgstr "Das @code{fusectl}-Dateisystem, womit „unprivilegierte“ Nutzer ohne besondere Berechtigungen im User Space FUSE-Dateisysteme einbinden und aushängen können. Dazu muss das Kernel-Modul @code{fuse.ko} geladen sein." #. type: Plain text -#: guix-git/doc/guix.texi:15026 +#: guix-git/doc/guix.texi:15383 msgid "The @code{(gnu system uuid)} module provides tools to deal with file system ``unique identifiers'' (UUIDs)." msgstr "Das Modul @code{(gnu system uuid)} stellt Werkzeug zur Verfügung, um mit eindeutigen Identifikatoren für Dateisysteme umzugehen (sogenannten „Unique Identifiers“, UUIDs)." #. type: deffn -#: guix-git/doc/guix.texi:15027 +#: guix-git/doc/guix.texi:15384 #, no-wrap msgid "{Scheme Procedure} uuid @var{str} [@var{type}]" msgstr "{Scheme-Prozedur} uuid @var{Zeichenkette} [@var{Typ}]" #. type: deffn -#: guix-git/doc/guix.texi:15030 +#: guix-git/doc/guix.texi:15387 msgid "Return an opaque UUID (unique identifier) object of the given @var{type} (a symbol) by parsing @var{str} (a string):" msgstr "Liefert eine eindeutige UUID (Unique Identifier) als opakes Objekt des angegebenen @var{Typ}s (ein Symbol), indem die @var{Zeichenkette} verarbeitet wird:" #. type: lisp -#: guix-git/doc/guix.texi:15034 +#: guix-git/doc/guix.texi:15391 #, no-wrap msgid "" "(uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\")\n" @@ -27480,7 +28129,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15037 +#: guix-git/doc/guix.texi:15394 #, no-wrap msgid "" "(uuid \"1234-ABCD\" 'fat)\n" @@ -27490,33 +28139,33 @@ msgstr "" "@result{} #< type: fat bv: …>\n" #. type: deffn -#: guix-git/doc/guix.texi:15041 +#: guix-git/doc/guix.texi:15398 msgid "@var{type} may be one of @code{dce}, @code{iso9660}, @code{fat}, @code{ntfs}, or one of the commonly found synonyms for these." msgstr "Als @var{Typ} kann entweder @code{dce}, @code{iso9660}, @code{fat}, @code{ntfs} oder eines der üblichen Synonyme dafür angegeben werden." #. type: deffn -#: guix-git/doc/guix.texi:15044 +#: guix-git/doc/guix.texi:15401 msgid "UUIDs are another way to unambiguously refer to file systems in operating system configuration. See the examples above." msgstr "UUIDs bieten eine andere Möglichkeit, sich in der Betriebssystemkonfiguration ohne Mehrdeutigkeiten auf eines der Dateisysteme zu beziehen. Siehe die Beispiele oben." #. type: subsection -#: guix-git/doc/guix.texi:15047 guix-git/doc/guix.texi:15048 +#: guix-git/doc/guix.texi:15404 guix-git/doc/guix.texi:15405 #, no-wrap msgid "Btrfs file system" msgstr "Btrfs-Dateisystem" #. type: Plain text -#: guix-git/doc/guix.texi:15054 +#: guix-git/doc/guix.texi:15411 msgid "The Btrfs has special features, such as subvolumes, that merit being explained in more details. The following section attempts to cover basic as well as complex uses of a Btrfs file system with the Guix System." msgstr "Das Btrfs-Dateisystem bietet besondere Funktionalitäten, wie z.B.@: Unterlaufwerke („Subvolumes“), die eine detailliertere Erklärung verdienen. Im folgenden Abschnitt wird versucht, grundlegende sowie komplexe Anwendungsmöglichkeiten eines Btrfs-Dateisystem für Guix System abzudecken." #. type: Plain text -#: guix-git/doc/guix.texi:15057 +#: guix-git/doc/guix.texi:15414 msgid "In its simplest usage, a Btrfs file system can be described, for example, by:" msgstr "Im einfachsten Fall kann ein Btrfs-Dateisystem durch einen Ausdruck wie hier beschrieben werden:" #. type: lisp -#: guix-git/doc/guix.texi:15063 +#: guix-git/doc/guix.texi:15420 #, no-wrap msgid "" "(file-system\n" @@ -27530,12 +28179,12 @@ msgstr "" " (device (file-system-label \"my-home\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15069 +#: guix-git/doc/guix.texi:15426 msgid "The example below is more complex, as it makes use of a Btrfs subvolume, named @code{rootfs}. The parent Btrfs file system is labeled @code{my-btrfs-pool}, and is located on an encrypted device (hence the dependency on @code{mapped-devices}):" msgstr "Nun folgt ein komplexeres Beispiel, bei dem ein Btrfs-Unterlaufwerk namens @code{rootfs} benutzt wird. Dessen Eltern-Btrfs-Dateisystem wird mit @code{my-btrfs-pool} bezeichnet und befindet sich auf einem verschlüsselten Gerät (daher die Abhängigkeit von @code{mapped-devices}):" #. type: lisp -#: guix-git/doc/guix.texi:15077 +#: guix-git/doc/guix.texi:15434 #, no-wrap msgid "" "(file-system\n" @@ -27553,17 +28202,17 @@ msgstr "" " (dependencies mapped-devices))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15088 +#: guix-git/doc/guix.texi:15445 msgid "Some bootloaders, for example GRUB, only mount a Btrfs partition at its top level during the early boot, and rely on their configuration to refer to the correct subvolume path within that top level. The bootloaders operating in this way typically produce their configuration on a running system where the Btrfs partitions are already mounted and where the subvolume information is readily available. As an example, @command{grub-mkconfig}, the configuration generator command shipped with GRUB, reads @file{/proc/self/mountinfo} to determine the top-level path of a subvolume." msgstr "Manche Bootloader, wie zum Beispiel GRUB, binden von einer Btrfs-Partition zuerst beim frühen Boot („early boot“) nur die oberste Ebene ein und verlassen sich darauf, dass ihre Konfiguration den korrekten Pfad samt Unterlaufwerk innerhalb dieser obersten Ebene enthält. Auf diese Weise arbeitende Bootloader erzeugen ihre Konfiguration normalerweise auf einem laufenden System, auf dem die Btrfs-Partitionen bereits eingebunden sind und die Informationen über die Unterlaufwerke zur Verfügung stehen. Zum Beispiel liest @command{grub-mkconfig}, der bei GRUB mitgelieferte Befehl zur Erzeugung von Konfigurationsdateien, aus @file{/proc/self/mountinfo}, um festzustellen, was auf oberster Ebene der Pfad zum Unterlaufwerk ist." #. type: Plain text -#: guix-git/doc/guix.texi:15096 +#: guix-git/doc/guix.texi:15453 msgid "The Guix System produces a bootloader configuration using the operating system configuration as its sole input; it is therefore necessary to extract the subvolume name on which @file{/gnu/store} lives (if any) from that operating system configuration. To better illustrate, consider a subvolume named 'rootfs' which contains the root file system data. In such situation, the GRUB bootloader would only see the top level of the root Btrfs partition, e.g.:" msgstr "Guix System hingegen erzeugt eine Bootloader-Konfiguration mit der Betriebssystemkonfiguration als einzige Eingabe. Daher muss der Name des Unterlaufwerks, auf dem sich @file{/gnu/store} befindet (falls Sie eines benutzen) aus derselben Betriebssystemkonfiguration kommen. Um das besser zu veranschaulichen, betrachten Sie ein Unterlaufwerk namens „rootfs“, das die Daten des Wurzeldateisystems speichert. In einer solchen Situation würde der GRUB-Bootloader nur die oberste Ebene der Wurzel-Btrfs-Partition sehen, z.B.:" #. type: example -#: guix-git/doc/guix.texi:15103 +#: guix-git/doc/guix.texi:15460 #, no-wrap msgid "" "/ (top level)\n" @@ -27579,17 +28228,17 @@ msgstr "" "[…]\n" #. type: Plain text -#: guix-git/doc/guix.texi:15108 +#: guix-git/doc/guix.texi:15465 msgid "Thus, the subvolume name must be prepended to the @file{/gnu/store} path of the kernel, initrd binaries and any other files referred to in the GRUB configuration that must be found during the early boot." msgstr "Deswegen muss der Name des Unterlaufwerks dem @file{/gnu/store}-Pfad des Kernels, der initrd und jeder anderen Datei vorangestellt werden, die die GRUB-Konfiguration referenziert und während des frühen Boots gefunden werden können muss." #. type: Plain text -#: guix-git/doc/guix.texi:15111 +#: guix-git/doc/guix.texi:15468 msgid "The next example shows a nested hierarchy of subvolumes and directories:" msgstr "Das nächste Beispiel zeigt eine verschachtelte Hierarchie aus Unterlaufwerken und Verzeichnissen:" #. type: example -#: guix-git/doc/guix.texi:15118 +#: guix-git/doc/guix.texi:15475 #, no-wrap msgid "" "/ (top level)\n" @@ -27605,17 +28254,17 @@ msgstr "" "[…]\n" #. type: Plain text -#: guix-git/doc/guix.texi:15125 +#: guix-git/doc/guix.texi:15482 msgid "This scenario would work without mounting the 'store' subvolume. Mounting 'rootfs' is sufficient, since the subvolume name matches its intended mount point in the file system hierarchy. Alternatively, the 'store' subvolume could be referred to by setting the @code{subvol} option to either @code{/rootfs/gnu/store} or @code{rootfs/gnu/store}." msgstr "Dieses Szenario würde ohne Einbinden des „store“-Unterlaufwerks funktionieren. „rootfs“ genügt, weil der Name des Unterlaufwerks dem dafür vorgesehenen Einhängepunkt in der Dateisystemhierarchie entspricht. Alternativ könnte man das „store“-Unterlaufwerk durch Festlegen der @code{subvol}-Option auf entweder @code{/rootfs/gnu/store} oder @code{rootfs/gnu/store} verwenden." #. type: Plain text -#: guix-git/doc/guix.texi:15127 +#: guix-git/doc/guix.texi:15484 msgid "Finally, a more contrived example of nested subvolumes:" msgstr "Abschließend folgt ein ausgeklügelteres Beispiel verschachtelter Unterlaufwerke:" #. type: example -#: guix-git/doc/guix.texi:15134 +#: guix-git/doc/guix.texi:15491 #, no-wrap msgid "" "/ (top level)\n" @@ -27631,12 +28280,12 @@ msgstr "" "[…]\n" #. type: Plain text -#: guix-git/doc/guix.texi:15141 +#: guix-git/doc/guix.texi:15498 msgid "Here, the 'guix-store' subvolume doesn't match its intended mount point, so it is necessary to mount it. The subvolume must be fully specified, by passing its file name to the @code{subvol} option. To illustrate, the 'guix-store' subvolume could be mounted on @file{/gnu/store} by using a file system declaration such as:" msgstr "Hier stimmt das „guix-store“-Unterlaufwerk nicht mit dem vorgesehenen Einhängepunkt überein, daher muss es eingebunden werden. Das Unterlaufwerk muss vollständig spezifiziert werden, indem sein Dateiname an die @code{subvol}-Option übergeben wird. Eine Möglichkeit wäre, das „guix-store“-Unterlaufwerk als @file{/gnu/store} über eine solche Dateisystemdeklaration einzubinden:" #. type: lisp -#: guix-git/doc/guix.texi:15149 +#: guix-git/doc/guix.texi:15506 #, no-wrap msgid "" "(file-system\n" @@ -27654,128 +28303,128 @@ msgstr "" "compress-force=zstd,space_cache=v2\"))\n" #. type: cindex -#: guix-git/doc/guix.texi:15154 +#: guix-git/doc/guix.texi:15511 #, no-wrap msgid "device mapping" msgstr "Gerätezuordnung" #. type: cindex -#: guix-git/doc/guix.texi:15155 +#: guix-git/doc/guix.texi:15512 #, no-wrap msgid "mapped devices" msgstr "zugeordnete Geräte" #. type: Plain text -#: guix-git/doc/guix.texi:15172 +#: guix-git/doc/guix.texi:15529 msgid "The Linux kernel has a notion of @dfn{device mapping}: a block device, such as a hard disk partition, can be @dfn{mapped} into another device, usually in @code{/dev/mapper/}, with additional processing over the data that flows through it@footnote{Note that the GNU@tie{}Hurd makes no difference between the concept of a ``mapped device'' and that of a file system: both boil down to @emph{translating} input/output operations made on a file to operations on its backing store. Thus, the Hurd implements mapped devices, like file systems, using the generic @dfn{translator} mechanism (@pxref{Translators,,, hurd, The GNU Hurd Reference Manual}).}. A typical example is encryption device mapping: all writes to the mapped device are encrypted, and all reads are deciphered, transparently. Guix extends this notion by considering any device or set of devices that are @dfn{transformed} in some way to create a new device; for instance, RAID devices are obtained by @dfn{assembling} several other devices, such as hard disks or partitions, into a new one that behaves as one partition." msgstr "Der Linux-Kernel unterstützt das Konzept der @dfn{Gerätezuordnung}: Ein blockorientiertes Gerät wie eine Festplattenpartition kann einem neuen Gerät @dfn{zugeordnet} werden, gewöhnlich unter @code{/dev/mapper/}, wobei das neue Gerät durchlaufende Daten zusätzlicher Verarbeitung unterzogen werden@footnote{Beachten Sie, dass mit GNU@tie{}Hurd kein Unterschied zwischen dem Konzept eines „zugeordneten Geräts“ und dem eines Dateisystems besteht: Dort werden bei beiden Ein- und Ausgabeoperationen auf eine Datei in Operationen auf dessen Hintergrundspeicher @emph{übersetzt}. Hurd implementiert zugeordnete Geräte genau wie Dateisysteme mit dem generischen @dfn{Übersetzer}-Mechanismus (siehe @ref{Translators,,, hurd, Referenzhandbuch von GNU Hurd}).}. Ein typisches Beispiel ist eine Gerätezuordnung zur Verschlüsselung: Jeder Schreibzugriff auf das zugeordnete Gerät wird transparent verschlüsselt und jeder Lesezugriff ebenso entschlüsselt. Guix erweitert dieses Konzept, indem es darunter jedes Gerät und jede Menge von Geräten versteht, die auf irgendeine Weise @dfn{umgewandelt} wird, um ein neues Gerät zu bilden; zum Beispiel entstehen auch RAID-Geräte aus einem @dfn{Verbund} mehrerer anderer Geräte, wie etwa Festplatten oder Partition zu einem einzelnen Gerät, das sich wie eine Partition verhält." #. type: Plain text -#: guix-git/doc/guix.texi:15175 +#: guix-git/doc/guix.texi:15532 msgid "Mapped devices are declared using the @code{mapped-device} form, defined as follows; for examples, see below." msgstr "Zugeordnete Geräte werden mittels einer @code{mapped-device}-Form deklariert, die wie folgt definiert ist; Beispiele folgen weiter unten." #. type: deftp -#: guix-git/doc/guix.texi:15176 +#: guix-git/doc/guix.texi:15533 #, no-wrap msgid "{Data Type} mapped-device" msgstr "{Datentyp} mapped-device" #. type: deftp -#: guix-git/doc/guix.texi:15179 +#: guix-git/doc/guix.texi:15536 msgid "Objects of this type represent device mappings that will be made when the system boots up." msgstr "Objekte dieses Typs repräsentieren Gerätezuordnungen, die gemacht werden, wenn das System hochfährt." #. type: table -#: guix-git/doc/guix.texi:15186 +#: guix-git/doc/guix.texi:15543 msgid "This is either a string specifying the name of the block device to be mapped, such as @code{\"/dev/sda3\"}, or a list of such strings when several devices need to be assembled for creating a new one. In case of LVM this is a string specifying name of the volume group to be mapped." msgstr "Es handelt sich entweder um eine Zeichenkette, die den Namen eines zuzuordnenden blockorientierten Geräts angibt, wie @code{\"/dev/sda3\"}, oder um eine Liste solcher Zeichenketten, sofern mehrere Geräts zu einem neuen Gerät verbunden werden. Im Fall von LVM ist es eine Zeichenkette, die den Namen der zuzuordnenden Datenträgergruppe (Volume Group) angibt." #. type: code{#1} -#: guix-git/doc/guix.texi:15187 guix-git/doc/guix.texi:15342 +#: guix-git/doc/guix.texi:15544 guix-git/doc/guix.texi:15699 #, no-wrap msgid "target" msgstr "target" #. type: table -#: guix-git/doc/guix.texi:15196 +#: guix-git/doc/guix.texi:15553 msgid "This string specifies the name of the resulting mapped device. For kernel mappers such as encrypted devices of type @code{luks-device-mapping}, specifying @code{\"my-partition\"} leads to the creation of the @code{\"/dev/mapper/my-partition\"} device. For RAID devices of type @code{raid-device-mapping}, the full device name such as @code{\"/dev/md0\"} needs to be given. LVM logical volumes of type @code{lvm-device-mapping} need to be specified as @code{\"VGNAME-LVNAME\"}." msgstr "Diese Zeichenkette gibt den Namen des neuen zugeordneten Geräts an. Bei Kernel-Zuordnern, wie verschlüsselten Geräten vom Typ @code{luks-device-mapping}, wird durch Angabe von @code{\"my-partition\"} ein Gerät @code{\"/dev/mapper/my-partition\"} erzeugt. Bei RAID-Geräten vom Typ @code{raid-device-mapping} muss der Gerätename als voller Pfad wie zum Beispiel @code{\"/dev/md0\"} angegeben werden. Logische Datenträger von LVM („LVM logical volumes“) vom Typ @code{lvm-device-mapping} müssen angegeben werden als @code{\"DATENTRÄGERGRUPPENNAME-LOGISCHERDATENTRÄGERNAME\"}." #. type: code{#1} -#: guix-git/doc/guix.texi:15197 guix-git/doc/guix.texi:34634 +#: guix-git/doc/guix.texi:15554 guix-git/doc/guix.texi:35073 #, no-wrap msgid "targets" msgstr "targets" #. type: table -#: guix-git/doc/guix.texi:15200 +#: guix-git/doc/guix.texi:15557 msgid "This list of strings specifies names of the resulting mapped devices in case there are several. The format is identical to @var{target}." msgstr "Diese Liste von Zeichenketten gibt die Namen der neuen zugeordneten Geräte an, wenn es mehrere davon gibt. Das Format ist mit @var{target} identisch." #. type: table -#: guix-git/doc/guix.texi:15204 +#: guix-git/doc/guix.texi:15561 msgid "This must be a @code{mapped-device-kind} object, which specifies how @var{source} is mapped to @var{target}." msgstr "Dies muss ein @code{mapped-device-kind}-Objekt sein, das angibt, wie die Quelle @var{source} dem Ziel @var{target} zugeordnet wird." #. type: defvr -#: guix-git/doc/guix.texi:15207 +#: guix-git/doc/guix.texi:15564 #, no-wrap msgid "{Scheme Variable} luks-device-mapping" msgstr "{Scheme-Variable} luks-device-mapping" #. type: defvr -#: guix-git/doc/guix.texi:15211 +#: guix-git/doc/guix.texi:15568 msgid "This defines LUKS block device encryption using the @command{cryptsetup} command from the package with the same name. It relies on the @code{dm-crypt} Linux kernel module." msgstr "Hiermit wird ein blockorientiertes Gerät mit LUKS verschlüsselt, mit Hilfe des Befehls @command{cryptsetup} aus dem gleichnamigen Paket. Dazu wird das Linux-Kernel-Modul @code{dm-crypt} vorausgesetzt." #. type: defvr -#: guix-git/doc/guix.texi:15213 +#: guix-git/doc/guix.texi:15570 #, no-wrap msgid "{Scheme Variable} raid-device-mapping" msgstr "{Scheme-Variable} raid-device-mapping" #. type: defvr -#: guix-git/doc/guix.texi:15218 +#: guix-git/doc/guix.texi:15575 msgid "This defines a RAID device, which is assembled using the @code{mdadm} command from the package with the same name. It requires a Linux kernel module for the appropriate RAID level to be loaded, such as @code{raid456} for RAID-4, RAID-5 or RAID-6, or @code{raid10} for RAID-10." msgstr "Dies definiert ein RAID-Gerät, das mit dem Befehl @code{mdadm} aus dem gleichnamigen Paket als Verbund zusammengestellt wird. Es setzt voraus, dass das Linux-Kernel-Modul für das entsprechende RAID-Level geladen ist, z.B.@: @code{raid456} für RAID-4, RAID-5 oder RAID-6, oder @code{raid10} für RAID-10." #. type: cindex -#: guix-git/doc/guix.texi:15220 +#: guix-git/doc/guix.texi:15577 #, no-wrap msgid "LVM, logical volume manager" msgstr "LVM, Logical Volume Manager (Verwaltung logischer Datenträger)" #. type: defvr -#: guix-git/doc/guix.texi:15221 +#: guix-git/doc/guix.texi:15578 #, no-wrap msgid "{Scheme Variable} lvm-device-mapping" msgstr "{Scheme-Variable} lvm-device-mapping" #. type: defvr -#: guix-git/doc/guix.texi:15226 +#: guix-git/doc/guix.texi:15583 msgid "This defines one or more logical volumes for the Linux @uref{https://www.sourceware.org/lvm2/, Logical Volume Manager (LVM)}. The volume group is activated by the @command{vgchange} command from the @code{lvm2} package." msgstr "Hiermit wird ein oder mehrere logische Datenträger („Logical Volumes“) für den @uref{https://www.sourceware.org/lvm2/, Logical Volume Manager (LVM)} für Linux definiert. Die Datenträgergruppe („Volume Group“) wird durch den Befehl @command{vgchange} aus dem @code{lvm2}-Paket aktiviert." #. type: cindex -#: guix-git/doc/guix.texi:15228 +#: guix-git/doc/guix.texi:15585 #, no-wrap msgid "disk encryption" msgstr "Laufwerksverschlüsselung" #. type: cindex -#: guix-git/doc/guix.texi:15229 +#: guix-git/doc/guix.texi:15586 #, no-wrap msgid "LUKS" msgstr "LUKS" #. type: Plain text -#: guix-git/doc/guix.texi:15237 +#: guix-git/doc/guix.texi:15594 msgid "The following example specifies a mapping from @file{/dev/sda3} to @file{/dev/mapper/home} using LUKS---the @url{https://gitlab.com/cryptsetup/cryptsetup,Linux Unified Key Setup}, a standard mechanism for disk encryption. The @file{/dev/mapper/home} device can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems})." msgstr "Das folgende Beispiel gibt eine Zuordnung von @file{/dev/sda3} auf @file{/dev/mapper/home} mit LUKS an@tie{}— dem @url{https://gitlab.com/cryptsetup/cryptsetup,Linux Unified Key Setup}, einem Standardmechanismus zur Plattenverschlüsselung. Das Gerät @file{/dev/mapper/home} kann dann als @code{device} einer @code{file-system}-Deklaration benutzt werden (siehe @ref{File Systems})." #. type: lisp -#: guix-git/doc/guix.texi:15243 +#: guix-git/doc/guix.texi:15600 #, no-wrap msgid "" "(mapped-device\n" @@ -27789,23 +28438,23 @@ msgstr "" " (type luks-device-mapping))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15248 +#: guix-git/doc/guix.texi:15605 msgid "Alternatively, to become independent of device numbering, one may obtain the LUKS UUID (@dfn{unique identifier}) of the source device by a command like:" msgstr "Um nicht davon abhängig zu sein, wie Ihre Geräte nummeriert werden, können Sie auch die LUKS-UUID (@dfn{unique identifier}, d.h.@: den eindeutigen Bezeichner) des Quellgeräts auf der Befehlszeile ermitteln:" #. type: example -#: guix-git/doc/guix.texi:15251 +#: guix-git/doc/guix.texi:15608 #, no-wrap msgid "cryptsetup luksUUID /dev/sda3\n" msgstr "cryptsetup luksUUID /dev/sda3\n" #. type: Plain text -#: guix-git/doc/guix.texi:15254 +#: guix-git/doc/guix.texi:15611 msgid "and use it as follows:" msgstr "und wie folgt benutzen:" #. type: lisp -#: guix-git/doc/guix.texi:15260 +#: guix-git/doc/guix.texi:15617 #, no-wrap msgid "" "(mapped-device\n" @@ -27819,23 +28468,23 @@ msgstr "" " (type luks-device-mapping))\n" #. type: cindex -#: guix-git/doc/guix.texi:15262 +#: guix-git/doc/guix.texi:15619 #, no-wrap msgid "swap encryption" msgstr "Swap-Verschlüsselung" #. type: Plain text -#: guix-git/doc/guix.texi:15269 +#: guix-git/doc/guix.texi:15626 msgid "It is also desirable to encrypt swap space, since swap space may contain sensitive data. One way to accomplish that is to use a swap file in a file system on a device mapped via LUKS encryption. In this way, the swap file is encrypted because the entire device is encrypted. @xref{Swap Space}, or @xref{Preparing for Installation,,Disk Partitioning}, for an example." msgstr "Es ist auch wünschenswert, Swap-Speicher zu verschlüsseln, da in den Swap-Speicher sensible Daten ausgelagert werden können. Eine Möglichkeit ist, eine Swap-Datei auf einem mit LUKS-Verschlüsselung zugeordneten Dateisystem zu verwenden. Dann wird die Swap-Datei verschlüsselt, weil das ganze Gerät verschlüsselt wird. Ein Beispiel finden Sie im Abschnitt @ref{Swap Space} oder im Abschnitt @ref{Preparing for Installation,,Disk Partitioning}." #. type: Plain text -#: guix-git/doc/guix.texi:15272 +#: guix-git/doc/guix.texi:15629 msgid "A RAID device formed of the partitions @file{/dev/sda1} and @file{/dev/sdb1} may be declared as follows:" msgstr "Ein RAID-Gerät als Verbund der Partitionen @file{/dev/sda1} und @file{/dev/sdb1} kann wie folgt deklariert werden:" #. type: lisp -#: guix-git/doc/guix.texi:15278 +#: guix-git/doc/guix.texi:15635 #, no-wrap msgid "" "(mapped-device\n" @@ -27849,17 +28498,17 @@ msgstr "" " (type raid-device-mapping))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15285 +#: guix-git/doc/guix.texi:15642 msgid "The @file{/dev/md0} device can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems}). Note that the RAID level need not be given; it is chosen during the initial creation and formatting of the RAID device and is determined automatically later." msgstr "Das Gerät @file{/dev/md0} kann als @code{device} in einer @code{file-system}-Deklaration dienen (siehe @ref{File Systems}). Beachten Sie, dass das RAID-Level dabei nicht angegeben werden muss; es wird während der initialen Erstellung und Formatierung des RAID-Geräts festgelegt und später automatisch bestimmt." #. type: Plain text -#: guix-git/doc/guix.texi:15288 +#: guix-git/doc/guix.texi:15645 msgid "LVM logical volumes ``alpha'' and ``beta'' from volume group ``vg0'' can be declared as follows:" msgstr "Logische Datenträger von LVM namens „alpha“ und „beta“ aus der Datenträgergruppe (Volume Group) „vg0“ können wie folgt deklariert werden:" #. type: lisp -#: guix-git/doc/guix.texi:15294 +#: guix-git/doc/guix.texi:15651 #, no-wrap msgid "" "(mapped-device\n" @@ -27873,102 +28522,102 @@ msgstr "" " (type lvm-device-mapping))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15299 +#: guix-git/doc/guix.texi:15656 msgid "Devices @file{/dev/mapper/vg0-alpha} and @file{/dev/mapper/vg0-beta} can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems})." msgstr "Die Geräte @file{/dev/mapper/vg0-alpha} und @file{/dev/mapper/vg0-beta} können dann im @code{device}-Feld einer @code{file-system}-Deklaration verwendet werden (siehe @ref{File Systems})." #. type: cindex -#: guix-git/doc/guix.texi:15302 +#: guix-git/doc/guix.texi:15659 #, no-wrap msgid "swap space" msgstr "Swap-Speicher" #. type: Plain text -#: guix-git/doc/guix.texi:15312 +#: guix-git/doc/guix.texi:15669 msgid "Swap space, as it is commonly called, is a disk area specifically designated for paging: the process in charge of memory management (the Linux kernel or Hurd's default pager) can decide that some memory pages stored in RAM which belong to a running program but are unused should be stored on disk instead. It unloads those from the RAM, freeing up precious fast memory, and writes them to the swap space. If the program tries to access that very page, the memory management process loads it back into memory for the program to use." msgstr "Swap-Speicher, wie man ihn oft nennt, ist ein Bereich auf der Platte, wohin Speicherseiten verdrängt werden können. Als Seitenaustausch (englisch „Paging“) bezeichnet man das Verfahren, wie der für die Speicherverwaltung zuständige Prozess (d.h.@: der Linux-Kernel oder der „Default Pager“ in Hurd) entscheiden kann, manche Speicherseiten aus dem Arbeitsspeicher (RAM), die einem laufenden Prozess zugewiesen sind, ohne gerade benutzt zu werden, stattdessen auf der Platte zu speichern. Dadurch wird Arbeitsspeicher frei, wodurch mehr wertvoller schneller Speicher verfügbar wird; die Daten darin werden in den Swap-Speicher ausgelagert. Wenn das Programm auf eben diese Speicherseite zuzugreifen versucht, lädt der Speicherverwaltungsprozess die Daten zurück in den Speicher, damit das Programm sie benutzen kann." #. type: Plain text -#: guix-git/doc/guix.texi:15318 +#: guix-git/doc/guix.texi:15675 msgid "A common misconception about swap is that it is only useful when small amounts of RAM are available to the system. However, it should be noted that kernels often use all available RAM for disk access caching to make I/O faster, and thus paging out unused portions of program memory will expand the RAM available for such caching." msgstr "Häufig begegnet man der falschen Vorstellung, Swap nütze nur dann etwas, wenn das System wenig Arbeitsspeicher zur Verfügung hat. Doch benutzen Kernels oft allen Arbeitsspeicher als Zwischenspeicher für Plattenzugriffe, um Ein- und Ausgaben zu beschleunigen. Deswegen steht durch den Austausch ungenutzter Teile des Arbeitsspeichers mehr RAM für diese Art von Caching zur Verfügung." #. type: Plain text -#: guix-git/doc/guix.texi:15322 +#: guix-git/doc/guix.texi:15679 msgid "For a more detailed description of how memory is managed from the viewpoint of a monolithic kernel, @xref{Memory Concepts,,, libc, The GNU C Library Reference Manual}." msgstr "Wenn Sie genauer wissen wollen, wie Arbeitsspeicher aus Sicht eines monolithisch aufgebauten Kernels verwaltet wird, siehe @ref{Memory Concepts, Speicherkonzepte,, libc, Referenzhandbuch der GNU-C-Bibliothek}." #. type: Plain text -#: guix-git/doc/guix.texi:15331 +#: guix-git/doc/guix.texi:15688 msgid "The Linux kernel has support for swap partitions and swap files: the former uses a whole disk partition for paging, whereas the second uses a file on a file system for that (the file system driver needs to support it). On a comparable setup, both have the same performance, so one should consider ease of use when deciding between them. Partitions are ``simpler'' and do not need file system support, but need to be allocated at disk formatting time (logical volumes notwithstanding), whereas files can be allocated and deallocated at any time." msgstr "Der Linux-Kernel unterstützt Swap-Partitionen und Swap-Dateien: Erstere reservieren eine ganze Plattenpartition für den Seitenaustausch, wohingegen Zweitere dafür eine Datei aus dem Dateisystem einsetzen (der Dateisystemtreiber muss sie unterstützen). Auf vergleichbaren Systemen haben beide die gleiche Leistung, also sollte man sich für das entscheiden, was es einem leichter macht. Partitionen sind „einfacher“ und brauchen keine Unterstützung durch das Dateisystem, aber man muss sie schon beim Formatieren der Platte zuweisen (außer man nutzt logische Datenträger). Dateien hingegen kann man jederzeit anlegen oder löschen." #. type: Plain text -#: guix-git/doc/guix.texi:15336 +#: guix-git/doc/guix.texi:15693 msgid "Note that swap space is not zeroed on shutdown, so sensitive data (such as passwords) may linger on it if it was paged out. As such, you should consider having your swap reside on an encrypted device (@pxref{Mapped Devices})." msgstr "Vorsicht, Swap-Speicher wird beim Herunterfahren nicht genullt. Sensible Daten (wie Passwörter) können sich darin befinden, wenn deren Speicherseiten verdrängt wurden. Daher sollten Sie in Betracht ziehen, Ihren Swap-Speicher auf ein verschlüsseltes Gerät zu legen (siehe @ref{Mapped Devices})." #. type: deftp -#: guix-git/doc/guix.texi:15337 +#: guix-git/doc/guix.texi:15694 #, no-wrap msgid "{Data Type} swap-space" msgstr "{Datentyp} swap-space" #. type: deftp -#: guix-git/doc/guix.texi:15340 +#: guix-git/doc/guix.texi:15697 msgid "Objects of this type represent swap spaces. They contain the following members:" msgstr "Objekte dieses Typs repräsentieren Swap-Speicher. Sie weisen folgende Komponenten auf:" #. type: table -#: guix-git/doc/guix.texi:15346 +#: guix-git/doc/guix.texi:15703 msgid "The device or file to use, either a UUID, a @code{file-system-label} or a string, as in the definition of a @code{file-system} (@pxref{File Systems})." msgstr "Welches Gerät oder welche Datei verwendet werden soll, angegeben entweder über die UUID, über ein @code{file-system-label}-Objekt mit der Bezeichnung oder über eine Zeichenkette wie in der Definition eines @code{file-system}-Objekts für ein Dateisystem (siehe @ref{File Systems})." #. type: table -#: guix-git/doc/guix.texi:15353 +#: guix-git/doc/guix.texi:15710 msgid "A list of @code{file-system} or @code{mapped-device} objects, upon which the availability of the space depends. Note that just like for @code{file-system} objects, dependencies which are needed for boot and mounted in early userspace are not managed by the Shepherd, and so automatically filtered out for you." msgstr "Eine Liste von @code{file-system}-Objekten oder @code{mapped-device}-Objekten, die vorausgesetzt werden, damit der Speicher verfügbar ist. Achtung: Genau wie bei @code{file-system}-Objekten gilt auch für die Abhängigkeiten im @code{dependencies}-Feld, dass zum Hochfahren des Systems notwendige Abhängigkeiten, die beim Start der Anwendungsebene („User Space“) eingebunden werden, nicht durch Shepherd verwaltet werden, sondern weggefiltert werden." #. type: item -#: guix-git/doc/guix.texi:15354 +#: guix-git/doc/guix.texi:15711 #, no-wrap msgid "@code{priority} (default: @code{#f})" msgstr "@code{priority} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:15361 +#: guix-git/doc/guix.texi:15718 msgid "Only supported by the Linux kernel. Either @code{#f} to disable swap priority, or an integer between 0 and 32767. The kernel will first use swap spaces of higher priority when paging, and use same priority spaces on a round-robin basis. The kernel will use swap spaces without a set priority after prioritized spaces, and in the order that they appeared in (not round-robin)." msgstr "Wird nur beim Linux-Kernel unterstützt. Entweder @code{#f}, damit @emph{keine} Priorität festgelegt wird, oder eine ganze Zahl zwischen 0 und 32767. Der Kernel wird erst den Swap-Speicher mit der höheren Priorität für den Seitenaustausch benutzen und bei gleicher Priorität im Rundlauf wechseln („Round-Robin-Verfahren“). Swap-Speicher ohne festgelegte Priorität wird später als priorisierter verwendet, in der angegebenen Reihenfolge ohne Round Robin." #. type: item -#: guix-git/doc/guix.texi:15362 +#: guix-git/doc/guix.texi:15719 #, no-wrap msgid "@code{discard?} (default: @code{#f})" msgstr "@code{discard?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:15366 +#: guix-git/doc/guix.texi:15723 msgid "Only supported by the Linux kernel. When true, the kernel will notify the disk controller of discarded pages, for example with the TRIM operation on Solid State Drives." msgstr "Wird nur beim Linux-Kernel unterstützt. Wenn es wahr ist, benachrichtigt der Kernel die Steuereinheit (Controller) der Platte, welche Seiten verworfen wurden, zum Beispiel mit der TRIM-Operation auf SSD-Speicher." #. type: Plain text -#: guix-git/doc/guix.texi:15371 +#: guix-git/doc/guix.texi:15728 msgid "Here are some examples:" msgstr "Hier sind einige Beispiele:" #. type: lisp -#: guix-git/doc/guix.texi:15374 +#: guix-git/doc/guix.texi:15731 #, no-wrap msgid "(swap-space (target (uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\")))\n" msgstr "(swap-space (target (uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15379 +#: guix-git/doc/guix.texi:15736 msgid "Use the swap partition with the given UUID@. You can learn the UUID of a Linux swap partition by running @command{swaplabel @var{device}}, where @var{device} is the @file{/dev} file name of that partition." msgstr "Die Swap-Partition mit der angegebenen UUID verwenden. Sie können die UUID einer Linux-Swap-Partition erfahren, indem Sie @command{swaplabel @var{Gerät}} ausführen, wobei @var{Gerät} der Dateiname unter @file{/dev} für die Partition ist." #. type: lisp -#: guix-git/doc/guix.texi:15384 +#: guix-git/doc/guix.texi:15741 #, no-wrap msgid "" "(swap-space\n" @@ -27980,12 +28629,12 @@ msgstr "" " (dependencies (list lvm-device)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15390 +#: guix-git/doc/guix.texi:15747 msgid "Use the partition with label @code{swap}, which can be found after the @var{lvm-device} mapped device has been opened. Again, the @command{swaplabel} command allows you to view and change the label of a Linux swap partition." msgstr "Die Swap-Partition mit der Bezeichnung @code{swap} verwenden. Die Bezeichnung können Sie finden, nachdem das @var{lvm-device}-Gerät geöffnet wurde. Auch hier können Sie mittels @command{swaplabel}-Befehls die Bezeichnung einer Linux-Swap-Partition einsehen und ändern." #. type: lisp -#: guix-git/doc/guix.texi:15395 +#: guix-git/doc/guix.texi:15752 #, no-wrap msgid "" "(swap-space\n" @@ -27997,35 +28646,35 @@ msgstr "" " (dependencies (list btrfs-fs)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15399 +#: guix-git/doc/guix.texi:15756 msgid "Use the file @file{/btrfs/swapfile} as swap space, which is present on the @var{btrfs-fs} filesystem." msgstr "Die Datei @file{/btrfs/swapfile} als Swap-Speicher benutzen, die auf dem Dateisystem @var{btrfs-fs} liegt." #. type: cindex -#: guix-git/doc/guix.texi:15403 +#: guix-git/doc/guix.texi:15760 #, no-wrap msgid "users" msgstr "Benutzer" #. type: cindex -#: guix-git/doc/guix.texi:15404 +#: guix-git/doc/guix.texi:15761 #, no-wrap msgid "accounts" msgstr "Konten" #. type: cindex -#: guix-git/doc/guix.texi:15405 +#: guix-git/doc/guix.texi:15762 #, no-wrap msgid "user accounts" msgstr "Benutzerkonten" #. type: Plain text -#: guix-git/doc/guix.texi:15409 +#: guix-git/doc/guix.texi:15766 msgid "User accounts and groups are entirely managed through the @code{operating-system} declaration. They are specified with the @code{user-account} and @code{user-group} forms:" msgstr "Benutzerkonten und Gruppen werden allein durch die @code{operating-system}-Deklaration des Betriebssystems verwaltet. Sie werden mit den @code{user-account}- und @code{user-group}-Formen angegeben:" #. type: lisp -#: guix-git/doc/guix.texi:15419 +#: guix-git/doc/guix.texi:15776 #, no-wrap msgid "" "(user-account\n" @@ -28047,12 +28696,12 @@ msgstr "" " (comment \"Bobs Schwester\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15423 +#: guix-git/doc/guix.texi:15780 msgid "Here's a user account that uses a different shell and a custom home directory (the default would be @file{\"/home/bob\"}):" msgstr "Hier sehen Sie ein Benutzerkonto, das eine andere Shell und ein geändertes Persönliches Verzeichnis benutzt (die Vorgabe wäre @file{\"/home/bob\"}):" #. type: lisp -#: guix-git/doc/guix.texi:15431 +#: guix-git/doc/guix.texi:15788 #, no-wrap msgid "" "(user-account\n" @@ -28070,171 +28719,171 @@ msgstr "" " (home-directory \"/home/robert\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15440 +#: guix-git/doc/guix.texi:15797 msgid "When booting or upon completion of @command{guix system reconfigure}, the system ensures that only the user accounts and groups specified in the @code{operating-system} declaration exist, and with the specified properties. Thus, account or group creations or modifications made by directly invoking commands such as @command{useradd} are lost upon reconfiguration or reboot. This ensures that the system remains exactly as declared." msgstr "Beim Hochfahren oder nach Abschluss von @command{guix system reconfigure} stellt das System sicher, dass nur die in der @code{operating-system}-Deklaration angegebenen Benutzerkonten und Gruppen existieren, mit genau den angegebenen Eigenschaften. Daher gehen durch direkten Aufruf von Befehlen wie @command{useradd} erwirkte Erstellungen oder Modifikationen von Konten oder Gruppen verloren, sobald rekonfiguriert oder neugestartet wird. So wird sichergestellt, dass das System genau so funktioniert, wie es deklariert wurde." #. type: deftp -#: guix-git/doc/guix.texi:15441 +#: guix-git/doc/guix.texi:15798 #, no-wrap msgid "{Data Type} user-account" msgstr "{Datentyp} user-account" #. type: deftp -#: guix-git/doc/guix.texi:15444 +#: guix-git/doc/guix.texi:15801 msgid "Objects of this type represent user accounts. The following members may be specified:" msgstr "Objekte dieses Typs repräsentieren Benutzerkonten. Darin können folgende Komponenten aufgeführt werden:" #. type: table -#: guix-git/doc/guix.texi:15448 +#: guix-git/doc/guix.texi:15805 msgid "The name of the user account." msgstr "Der Name des Benutzerkontos." #. type: itemx -#: guix-git/doc/guix.texi:15449 guix-git/doc/guix.texi:34298 +#: guix-git/doc/guix.texi:15806 guix-git/doc/guix.texi:34737 #, no-wrap msgid "group" msgstr "group" #. type: cindex -#: guix-git/doc/guix.texi:15450 guix-git/doc/guix.texi:15534 +#: guix-git/doc/guix.texi:15807 guix-git/doc/guix.texi:15891 #, no-wrap msgid "groups" msgstr "Gruppen" #. type: table -#: guix-git/doc/guix.texi:15453 +#: guix-git/doc/guix.texi:15810 msgid "This is the name (a string) or identifier (a number) of the user group this account belongs to." msgstr "Dies ist der Name (als Zeichenkette) oder die Bezeichnung (als Zahl) der Benutzergruppe, zu der dieses Konto gehört." #. type: item -#: guix-git/doc/guix.texi:15454 +#: guix-git/doc/guix.texi:15811 #, no-wrap msgid "@code{supplementary-groups} (default: @code{'()})" msgstr "@code{supplementary-groups} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:15457 +#: guix-git/doc/guix.texi:15814 msgid "Optionally, this can be defined as a list of group names that this account belongs to." msgstr "Dies kann optional als Liste von Gruppennamen angegeben werden, zu denen dieses Konto auch gehört." #. type: item -#: guix-git/doc/guix.texi:15458 +#: guix-git/doc/guix.texi:15815 #, no-wrap msgid "@code{uid} (default: @code{#f})" msgstr "@code{uid} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:15462 +#: guix-git/doc/guix.texi:15819 msgid "This is the user ID for this account (a number), or @code{#f}. In the latter case, a number is automatically chosen by the system when the account is created." msgstr "Dies ist entweder der Benutzeridentifikator dieses Kontos (seine „User ID“) als Zahl oder @code{#f}. Bei Letzterem wird vom System automatisch eine Zahl gewählt, wenn das Benutzerkonto erstellt wird." #. type: item -#: guix-git/doc/guix.texi:15463 guix-git/doc/guix.texi:18217 +#: guix-git/doc/guix.texi:15820 guix-git/doc/guix.texi:18579 #, no-wrap msgid "@code{comment} (default: @code{\"\"})" msgstr "@code{comment} (Vorgabe: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:15465 +#: guix-git/doc/guix.texi:15822 msgid "A comment about the account, such as the account owner's full name." msgstr "Ein Kommentar zu dem Konto, wie etwa der vollständige Name des Kontoinhabers." #. type: table -#: guix-git/doc/guix.texi:15470 +#: guix-git/doc/guix.texi:15827 msgid "Note that, for non-system accounts, users are free to change their real name as it appears in @file{/etc/passwd} using the @command{chfn} command. When they do, their choice prevails over the system administrator's choice; reconfiguring does @emph{not} change their name." msgstr "Beachten Sie, dass Benutzer den für ihr Benutzerkonto hinterlegten echten Namen beliebig ändern können, @emph{außer} es handelt sich um „System“-Benutzerkonten. Den in @file{/etc/passwd} gespeicherten Namen können sie mit dem Befehl @command{chfn} ändern. Wenn sie das tun, hat der gewählte Name Vorrang vor dem vom Systemadministrator auserkorenen Namen. Rekonfigurieren ändert den Namen @emph{nicht}." #. type: code{#1} -#: guix-git/doc/guix.texi:15471 +#: guix-git/doc/guix.texi:15828 #, no-wrap msgid "home-directory" msgstr "home-directory" #. type: table -#: guix-git/doc/guix.texi:15473 +#: guix-git/doc/guix.texi:15830 msgid "This is the name of the home directory for the account." msgstr "Der Name des Persönlichen Verzeichnisses („Home“-Verzeichnis) für dieses Konto." #. type: item -#: guix-git/doc/guix.texi:15474 +#: guix-git/doc/guix.texi:15831 #, no-wrap msgid "@code{create-home-directory?} (default: @code{#t})" msgstr "@code{create-home-directory?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:15477 +#: guix-git/doc/guix.texi:15834 msgid "Indicates whether the home directory of this account should be created if it does not exist yet." msgstr "Zeigt an, ob das Persönliche Verzeichnis für das Konto automatisch erstellt werden soll, falls es noch nicht existiert." #. type: item -#: guix-git/doc/guix.texi:15478 +#: guix-git/doc/guix.texi:15835 #, no-wrap msgid "@code{shell} (default: Bash)" msgstr "@code{shell} (Vorgabe: Bash)" #. type: table -#: guix-git/doc/guix.texi:15482 +#: guix-git/doc/guix.texi:15839 msgid "This is a G-expression denoting the file name of a program to be used as the shell (@pxref{G-Expressions}). For example, you would refer to the Bash executable like this:" msgstr "Ein G-Ausdruck, der den Dateinamen des Programms angibt, das dem Benutzer als Shell dienen soll (siehe @ref{G-Expressions}). Auf die Programmdatei der Bash-Shell würden Sie zum Beispiel so verweisen:" #. type: lisp -#: guix-git/doc/guix.texi:15485 +#: guix-git/doc/guix.texi:15842 #, no-wrap msgid "(file-append bash \"/bin/bash\")\n" msgstr "(file-append bash \"/bin/bash\")\n" #. type: table -#: guix-git/doc/guix.texi:15489 +#: guix-git/doc/guix.texi:15846 msgid "... and to the Zsh executable like that:" msgstr "…@: und so auf die Programmdatei von Zsh:" #. type: lisp -#: guix-git/doc/guix.texi:15492 +#: guix-git/doc/guix.texi:15849 #, no-wrap msgid "(file-append zsh \"/bin/zsh\")\n" msgstr "(file-append zsh \"/bin/zsh\")\n" #. type: item -#: guix-git/doc/guix.texi:15494 guix-git/doc/guix.texi:15552 +#: guix-git/doc/guix.texi:15851 guix-git/doc/guix.texi:15909 #, no-wrap msgid "@code{system?} (default: @code{#f})" msgstr "@code{system?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:15498 +#: guix-git/doc/guix.texi:15855 msgid "This Boolean value indicates whether the account is a ``system'' account. System accounts are sometimes treated specially; for instance, graphical login managers do not list them." msgstr "Dieser boolesche Wert zeigt an, ob das Konto ein „System“-Benutzerkonto ist. Systemkonten werden manchmal anders behandelt, zum Beispiel werden sie auf grafischen Anmeldebildschirmen nicht aufgeführt." #. type: anchor{#1} -#: guix-git/doc/guix.texi:15500 +#: guix-git/doc/guix.texi:15857 msgid "user-account-password" msgstr "user-account-password" #. type: cindex -#: guix-git/doc/guix.texi:15500 +#: guix-git/doc/guix.texi:15857 #, no-wrap msgid "password, for user accounts" msgstr "Passwort, für Benutzerkonten" #. type: item -#: guix-git/doc/guix.texi:15501 guix-git/doc/guix.texi:15556 +#: guix-git/doc/guix.texi:15858 guix-git/doc/guix.texi:15913 #, no-wrap msgid "@code{password} (default: @code{#f})" msgstr "@code{password} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:15507 +#: guix-git/doc/guix.texi:15864 msgid "You would normally leave this field to @code{#f}, initialize user passwords as @code{root} with the @command{passwd} command, and then let users change it with @command{passwd}. Passwords set with @command{passwd} are of course preserved across reboot and reconfiguration." msgstr "Normalerweise lassen Sie dieses Feld auf @code{#f} und initialisieren Benutzerpasswörter als @code{root} mit dem @command{passwd}-Befehl. Die Benutzer lässt man ihr eigenes Passwort dann mit @command{passwd} ändern. Mit @command{passwd} festgelegte Passwörter bleiben natürlich beim Neustarten und beim Rekonfigurieren erhalten." #. type: table -#: guix-git/doc/guix.texi:15511 +#: guix-git/doc/guix.texi:15868 msgid "If you @emph{do} want to set an initial password for an account, then this field must contain the encrypted password, as a string. You can use the @code{crypt} procedure for this purpose:" msgstr "Wenn Sie aber @emph{doch} ein anfängliches Passwort für ein Konto voreinstellen möchten, muss dieses Feld hier das verschlüsselte Passwort als Zeichenkette enthalten. Sie können dazu die Prozedur @code{crypt} benutzen." #. type: lisp -#: guix-git/doc/guix.texi:15516 +#: guix-git/doc/guix.texi:15873 #, no-wrap msgid "" "(user-account\n" @@ -28248,7 +28897,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15519 +#: guix-git/doc/guix.texi:15876 #, no-wrap msgid "" " ;; Specify a SHA-512-hashed initial password.\n" @@ -28258,171 +28907,171 @@ msgstr "" " (password (crypt \"InitialPassword!\" \"$6$abc\")))\n" #. type: quotation -#: guix-git/doc/guix.texi:15525 +#: guix-git/doc/guix.texi:15882 msgid "The hash of this initial password will be available in a file in @file{/gnu/store}, readable by all the users, so this method must be used with care." msgstr "Der Hash dieses initialen Passworts wird in einer Datei im @file{/gnu/store} abgelegt, auf die alle Benutzer Lesezugriff haben, daher ist Vorsicht geboten, wenn Sie diese Methode verwenden." #. type: table -#: guix-git/doc/guix.texi:15530 +#: guix-git/doc/guix.texi:15887 msgid "@xref{Passphrase Storage,,, libc, The GNU C Library Reference Manual}, for more information on password encryption, and @ref{Encryption,,, guile, GNU Guile Reference Manual}, for information on Guile's @code{crypt} procedure." msgstr "Siehe @ref{Passphrase Storage,,, libc, Referenzhandbuch der GNU-C-Bibliothek} für weitere Informationen über Passwortverschlüsselung und @ref{Encryption,,, guile, Referenzhandbuch zu GNU Guile} für Informationen über die Prozedur @code{crypt} in Guile." #. type: Plain text -#: guix-git/doc/guix.texi:15536 +#: guix-git/doc/guix.texi:15893 msgid "User group declarations are even simpler:" msgstr "Benutzergruppen-Deklarationen sind noch einfacher aufgebaut:" #. type: lisp -#: guix-git/doc/guix.texi:15539 +#: guix-git/doc/guix.texi:15896 #, no-wrap msgid "(user-group (name \"students\"))\n" msgstr "(user-group (name \"students\"))\n" #. type: deftp -#: guix-git/doc/guix.texi:15541 +#: guix-git/doc/guix.texi:15898 #, no-wrap msgid "{Data Type} user-group" msgstr "{Datentyp} user-group" #. type: deftp -#: guix-git/doc/guix.texi:15543 +#: guix-git/doc/guix.texi:15900 msgid "This type is for, well, user groups. There are just a few fields:" msgstr "Dieser Typ gibt, nun ja, eine Benutzergruppe an. Es gibt darin nur ein paar Felder:" #. type: table -#: guix-git/doc/guix.texi:15547 +#: guix-git/doc/guix.texi:15904 msgid "The name of the group." msgstr "Der Name der Gruppe." #. type: item -#: guix-git/doc/guix.texi:15548 guix-git/doc/guix.texi:30819 +#: guix-git/doc/guix.texi:15905 guix-git/doc/guix.texi:31184 #, no-wrap msgid "@code{id} (default: @code{#f})" msgstr "@code{id} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:15551 +#: guix-git/doc/guix.texi:15908 msgid "The group identifier (a number). If @code{#f}, a new number is automatically allocated when the group is created." msgstr "Der Gruppenbezeichner (eine Zahl). Wird er als @code{#f} angegeben, wird automatisch eine neue Zahl reserviert, wenn die Gruppe erstellt wird." #. type: table -#: guix-git/doc/guix.texi:15555 +#: guix-git/doc/guix.texi:15912 msgid "This Boolean value indicates whether the group is a ``system'' group. System groups have low numerical IDs." msgstr "Dieser boolesche Wert gibt an, ob es sich um eine „System“-Gruppe handelt. Systemgruppen sind solche mit einer kleinen Zahl als Bezeichner." #. type: table -#: guix-git/doc/guix.texi:15559 +#: guix-git/doc/guix.texi:15916 msgid "What, user groups can have a password? Well, apparently yes. Unless @code{#f}, this field specifies the password of the group." msgstr "Wie, Benutzergruppen können ein Passwort haben? Nun ja, anscheinend schon. Wenn es nicht auf @code{#f} steht, gibt dieses Feld das Passwort der Gruppe an." #. type: Plain text -#: guix-git/doc/guix.texi:15565 +#: guix-git/doc/guix.texi:15922 msgid "For convenience, a variable lists all the basic user groups one may expect:" msgstr "Um Ihnen das Leben zu erleichtern, gibt es eine Variable, worin alle grundlegenden Benutzergruppen aufgeführt sind, die man erwarten könnte:" #. type: defvr -#: guix-git/doc/guix.texi:15566 +#: guix-git/doc/guix.texi:15923 #, no-wrap msgid "{Scheme Variable} %base-groups" msgstr "{Scheme-Variable} %base-groups" #. type: defvr -#: guix-git/doc/guix.texi:15571 +#: guix-git/doc/guix.texi:15928 msgid "This is the list of basic user groups that users and/or packages expect to be present on the system. This includes groups such as ``root'', ``wheel'', and ``users'', as well as groups used to control access to specific devices such as ``audio'', ``disk'', and ``cdrom''." msgstr "Die Liste von Basis-Benutzergruppen, von denen Benutzer und/oder Pakete erwarten könnten, dass sie auf dem System existieren. Dazu gehören Gruppen wie „root“, „wheel“ und „users“, sowie Gruppen, um den Zugriff auf bestimmte Geräte einzuschränken, wie „audio“, „disk“ und „cdrom“." #. type: defvr -#: guix-git/doc/guix.texi:15573 +#: guix-git/doc/guix.texi:15930 #, no-wrap msgid "{Scheme Variable} %base-user-accounts" msgstr "{Scheme-Variable} %base-user-accounts" #. type: defvr -#: guix-git/doc/guix.texi:15576 +#: guix-git/doc/guix.texi:15933 msgid "This is the list of basic system accounts that programs may expect to find on a GNU/Linux system, such as the ``nobody'' account." msgstr "Diese Liste enthält Basis-Systembenutzerkonten, von denen Programme erwarten können, dass sie auf einem GNU/Linux-System existieren, wie das Konto „nobody“." #. type: defvr -#: guix-git/doc/guix.texi:15579 +#: guix-git/doc/guix.texi:15936 msgid "Note that the ``root'' account is not included here. It is a special-case and is automatically added whether or not it is specified." msgstr "Beachten Sie, dass das Konto „root“ für den Administratornutzer nicht dazugehört. Es ist ein Sonderfall und wird automatisch erzeugt, egal ob es spezifiziert wurde oder nicht." #. type: cindex -#: guix-git/doc/guix.texi:15585 +#: guix-git/doc/guix.texi:15942 #, no-wrap msgid "keymap" msgstr "Keymap" #. type: Plain text -#: guix-git/doc/guix.texi:15593 +#: guix-git/doc/guix.texi:15950 msgid "To specify what each key of your keyboard does, you need to tell the operating system what @dfn{keyboard layout} you want to use. The default, when nothing is specified, is the US English QWERTY layout for 105-key PC keyboards. However, German speakers will usually prefer the German QWERTZ layout, French speakers will want the AZERTY layout, and so on; hackers might prefer Dvorak or bépo, and they might even want to further customize the effect of some of the keys. This section explains how to get that done." msgstr "Um anzugeben, was jede Taste auf Ihrer Tastatur tut, müssen Sie angeben, welche @dfn{Tastaturbelegung} das Betriebssystem benutzen soll. Wenn nichts angegeben wird, ist die „US English“-QWERTY-Tastaturbelegung für PC-Tastaturen mit 105 Tasten voreingestellt. Allerdings bevorzugen Deutsch sprechende Nutzer meistens die deutsche QWERTZ-Tastaturbelegung, Französisch sprechende haben lieber die AZERTY-Belegung und so weiter; Hacker wollen vielleicht Dvorak oder Bépo als Tastaturbelegung benutzen oder sogar eigene Anpassungen bei manchen Tasten vornehmen. Dieser Abschnitt erklärt, wie das geht." #. type: cindex -#: guix-git/doc/guix.texi:15594 +#: guix-git/doc/guix.texi:15951 #, no-wrap msgid "keyboard layout, definition" msgstr "Tastaturbelegung, Definition" #. type: Plain text -#: guix-git/doc/guix.texi:15596 +#: guix-git/doc/guix.texi:15953 msgid "There are three components that will want to know about your keyboard layout:" msgstr "Die Informationen über Ihre Tastaturbelegung werden an drei Stellen gebraucht:" #. type: itemize -#: guix-git/doc/guix.texi:15603 +#: guix-git/doc/guix.texi:15960 msgid "The @emph{bootloader} may want to know what keyboard layout you want to use (@pxref{Bootloader Configuration, @code{keyboard-layout}}). This is useful if you want, for instance, to make sure that you can type the passphrase of your encrypted root partition using the right layout." msgstr "Der @emph{Bootloader} muss auslesen können, welche Tastaturbelegung Sie benutzen möchten (siehe @ref{Bootloader Configuration, @code{keyboard-layout}}). Das ist praktisch, wenn Sie zum Beispiel die Passphrase Ihrer verschlüsselten Wurzelpartition mit der richtigen Tastaturbelegung eintippen wollen." #. type: itemize -#: guix-git/doc/guix.texi:15608 +#: guix-git/doc/guix.texi:15965 msgid "The @emph{operating system kernel}, Linux, will need that so that the console is properly configured (@pxref{operating-system Reference, @code{keyboard-layout}})." msgstr "Der @emph{Kernel des Betriebssystems}, Linux, braucht die Information, damit die Konsole richtig eingestellt ist (siehe @ref{operating-system Reference, @code{keyboard-layout}})." #. type: itemize -#: guix-git/doc/guix.texi:15612 +#: guix-git/doc/guix.texi:15969 msgid "The @emph{graphical display server}, usually Xorg, also has its own idea of the keyboard layout (@pxref{X Window, @code{keyboard-layout}})." msgstr "Der @emph{grafische Anzeigeserver}, meistens ist das Xorg, hat auch seine eigene Konfiguration der Tastaturbelegung (siehe @ref{X Window, @code{keyboard-layout}})." #. type: Plain text -#: guix-git/doc/guix.texi:15616 +#: guix-git/doc/guix.texi:15973 msgid "Guix allows you to configure all three separately but, fortunately, it allows you to share the same keyboard layout for all three components." msgstr "Mit Guix können Sie alle drei Komponenten separat konfigurieren, aber zum Glück können Sie damit auch dieselbe Konfiguration der Tastaturbelegung für alle drei benutzen." #. type: cindex -#: guix-git/doc/guix.texi:15617 +#: guix-git/doc/guix.texi:15974 #, no-wrap msgid "XKB, keyboard layouts" msgstr "XKB, Tastaturbelegungen" #. type: Plain text -#: guix-git/doc/guix.texi:15625 +#: guix-git/doc/guix.texi:15982 msgid "Keyboard layouts are represented by records created by the @code{keyboard-layout} procedure of @code{(gnu system keyboard)}. Following the X Keyboard extension (XKB), each layout has four attributes: a name (often a language code such as ``fi'' for Finnish or ``jp'' for Japanese), an optional variant name, an optional keyboard model name, and a possibly empty list of additional options. In most cases the layout name is all you care about." msgstr "Tastaturbelegungen werden durch Verbundsobjekte repräsentiert, die mit der Prozedur @code{keyboard-layout} aus dem Modul @code{(gnu system keyboard)} angelegt werden. Entsprechend der „X-Keyboard“-Erweiterung (XKB) verfügt jede Tastaturbelegung über vier Attribute: einen Namen (oft ist das ein Sprachkürzel wie „fi“ für Finnisch oder „jp“ für Japanisch), ein optionaler Variantenname, ein optionaler Tastaturmodellname und eine möglicherweise leere Liste zusätzlicher Optionen. In den meisten Fällen interessiert Sie nur der Name der Tastaturbelegung." #. type: deffn -#: guix-git/doc/guix.texi:15626 +#: guix-git/doc/guix.texi:15983 #, no-wrap msgid "{Scheme Procedure} keyboard-layout @var{name} [@var{variant}] @" msgstr "{Scheme-Prozedur} keyboard-layout @var{Name} [@var{Variante}] @" #. type: deffn -#: guix-git/doc/guix.texi:15629 +#: guix-git/doc/guix.texi:15986 msgid "[#:model] [#:options '()] Return a new keyboard layout with the given @var{name} and @var{variant}." msgstr "[#:model] [#:options '()] Liefert eine neue Tastaturbelegung mit dem angegebenen @var{Name}n in der @var{Variante}." #. type: deffn -#: guix-git/doc/guix.texi:15633 +#: guix-git/doc/guix.texi:15990 msgid "@var{name} must be a string such as @code{\"fr\"}; @var{variant} must be a string such as @code{\"bepo\"} or @code{\"nodeadkeys\"}. See the @code{xkeyboard-config} package for valid options." msgstr "Der @var{Name} muss eine Zeichenkette wie @code{\"fr\"} sein und die @var{Variante} eine Zeichenkette wie @code{\"bepo\"} oder @code{\"nodeadkeys\"}. Siehe das Paket @code{xkeyboard-config} für Informationen, welche Optionen gültig sind." #. type: Plain text -#: guix-git/doc/guix.texi:15636 +#: guix-git/doc/guix.texi:15993 msgid "Here are a few examples:" msgstr "Hier sind ein paar Beispiele:" #. type: lisp -#: guix-git/doc/guix.texi:15641 +#: guix-git/doc/guix.texi:15998 #, no-wrap msgid "" ";; The German QWERTZ layout. Here we assume a standard\n" @@ -28436,7 +29085,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15644 +#: guix-git/doc/guix.texi:16001 #, no-wrap msgid "" ";; The bépo variant of the French layout.\n" @@ -28448,7 +29097,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15647 +#: guix-git/doc/guix.texi:16004 #, no-wrap msgid "" ";; The Catalan layout.\n" @@ -28460,7 +29109,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15650 +#: guix-git/doc/guix.texi:16007 #, no-wrap msgid "" ";; Arabic layout with \"Alt-Shift\" to switch to US layout.\n" @@ -28472,7 +29121,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15657 +#: guix-git/doc/guix.texi:16014 #, no-wrap msgid "" ";; The Latin American Spanish layout. In addition, the\n" @@ -28493,7 +29142,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15660 +#: guix-git/doc/guix.texi:16017 #, no-wrap msgid "" ";; The Russian layout for a ThinkPad keyboard.\n" @@ -28505,7 +29154,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15665 +#: guix-git/doc/guix.texi:16022 #, no-wrap msgid "" ";; The \"US international\" layout, which is the US layout plus\n" @@ -28519,29 +29168,29 @@ msgstr "" "(keyboard-layout \"us\" \"intl\" #:model \"macbook78\")\n" #. type: Plain text -#: guix-git/doc/guix.texi:15669 +#: guix-git/doc/guix.texi:16026 msgid "See the @file{share/X11/xkb} directory of the @code{xkeyboard-config} package for a complete list of supported layouts, variants, and models." msgstr "Im Verzeichnis @file{share/X11/xkb} des @code{xkeyboard-config}-Pakets finden Sie eine vollständige Liste der unterstützten Tastaturbelegungen, Varianten und Modelle." #. type: cindex -#: guix-git/doc/guix.texi:15670 +#: guix-git/doc/guix.texi:16027 #, no-wrap msgid "keyboard layout, configuration" msgstr "Tastaturbelegung, Konfiguration" #. type: Plain text -#: guix-git/doc/guix.texi:15674 +#: guix-git/doc/guix.texi:16031 msgid "Let's say you want your system to use the Turkish keyboard layout throughout your system---bootloader, console, and Xorg. Here's what your system configuration would look like:" msgstr "Sagen wir, Sie würden gerne die türkische Tastaturbelegung für Ihr gesamtes System@tie{}— Bootloader, Konsole und Xorg@tie{}— verwenden. Dann würde Ihre Systemkonfiguration so aussehen:" #. type: findex -#: guix-git/doc/guix.texi:15675 +#: guix-git/doc/guix.texi:16032 #, no-wrap msgid "set-xorg-configuration" msgstr "set-xorg-configuration" #. type: lisp -#: guix-git/doc/guix.texi:15679 +#: guix-git/doc/guix.texi:16036 #, no-wrap msgid "" ";; Using the Turkish layout for the bootloader, the console,\n" @@ -28553,7 +29202,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15691 +#: guix-git/doc/guix.texi:16048 #, no-wrap msgid "" "(operating-system\n" @@ -28581,76 +29230,76 @@ msgstr "" " %desktop-services)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15698 +#: guix-git/doc/guix.texi:16055 msgid "In the example above, for GRUB and for Xorg, we just refer to the @code{keyboard-layout} field defined above, but we could just as well refer to a different layout. The @code{set-xorg-configuration} procedure communicates the desired Xorg configuration to the graphical log-in manager, by default GDM." msgstr "Im obigen Beispiel beziehen wir uns für GRUB und Xorg einfach auf das @code{keyboard-layout}-Feld, was wir darüber definiert haben, wir könnten aber auch eine andere Tastaturbelegung angeben. Die Prozedur @code{set-xorg-configuration} kommuniziert an die grafische Anmeldeverwaltung (d.h.@: nach Vorgabe an GDM), welche Xorg-Konfiguration verwendet werden soll." #. type: Plain text -#: guix-git/doc/guix.texi:15701 +#: guix-git/doc/guix.texi:16058 msgid "We've discussed how to specify the @emph{default} keyboard layout of your system when it starts, but you can also adjust it at run time:" msgstr "Wir haben uns bisher damit auseinandergesetzt, wie die @emph{Voreinstellung} für die Tastaturbelegung ausgewählt werden kann, die das System annimmt, wenn es startet, aber zur Laufzeit kann sie geändert werden:" #. type: itemize -#: guix-git/doc/guix.texi:15706 +#: guix-git/doc/guix.texi:16063 msgid "If you're using GNOME, its settings panel has a ``Region & Language'' entry where you can select one or more keyboard layouts." msgstr "Wenn Sie GNOME benutzen, können Sie in den Einstellungen dazu einen Eintrag „Region und Sprache“ finden, in dem Sie eine oder mehrere Tastaturbelegungen auswählen können." #. type: itemize -#: guix-git/doc/guix.texi:15711 +#: guix-git/doc/guix.texi:16068 msgid "Under Xorg, the @command{setxkbmap} command (from the same-named package) allows you to change the current layout. For example, this is how you would change the layout to US Dvorak:" msgstr "Unter Xorg können Sie den Befehl @command{setxkbmap} (aus dem gleichnamigen Paket) zum Anpassen der momentan aktiven Tastaturbelegung benutzen. Zum Beispiel würden Sie so die Belegung auf US Dvorak wechseln:" #. type: example -#: guix-git/doc/guix.texi:15714 +#: guix-git/doc/guix.texi:16071 #, no-wrap msgid "setxkbmap us dvorak\n" msgstr "setxkbmap us dvorak\n" #. type: itemize -#: guix-git/doc/guix.texi:15721 +#: guix-git/doc/guix.texi:16078 msgid "The @code{loadkeys} command changes the keyboard layout in effect in the Linux console. However, note that @code{loadkeys} does @emph{not} use the XKB keyboard layout categorization described above. The command below loads the French bépo layout:" msgstr "Mit dem Befehl @code{loadkeys} ändern Sie die für die Linux-Konsole geltende Tastaturbelegung. Allerdings ist zu beachten, dass @code{loadkeys} @emph{nicht} die Kategorisierung der Tastaturbelegungen von XKB benutzt. Der Befehl, um die französische Bépo-Belegung zu laden, wäre folgender:" #. type: example -#: guix-git/doc/guix.texi:15724 +#: guix-git/doc/guix.texi:16081 #, no-wrap msgid "loadkeys fr-bepo\n" msgstr "loadkeys fr-bepo\n" #. type: cindex -#: guix-git/doc/guix.texi:15730 +#: guix-git/doc/guix.texi:16087 #, no-wrap msgid "locale" msgstr "Locale" #. type: Plain text -#: guix-git/doc/guix.texi:15737 +#: guix-git/doc/guix.texi:16094 msgid "A @dfn{locale} defines cultural conventions for a particular language and region of the world (@pxref{Locales,,, libc, The GNU C Library Reference Manual}). Each locale has a name that typically has the form @code{@var{language}_@var{territory}.@var{codeset}}---e.g., @code{fr_LU.utf8} designates the locale for the French language, with cultural conventions from Luxembourg, and using the UTF-8 encoding." msgstr "Eine @dfn{Locale} legt die kulturellen Konventionen einer bestimmten Sprache und Region auf der Welt fest (siehe @ref{Locales,,, libc, Referenzhandbuch der GNU-C-Bibliothek}). Jede Locale hat einen Namen, der typischerweise von der Form @code{@var{Sprache}_@var{Gebiet}.@var{Kodierung}}@tie{}— z.B.@: benennt @code{fr_LU.utf8} die Locale für französische Sprache mit den kulturellen Konventionen aus Luxemburg unter Verwendung der UTF-8-Kodierung." #. type: cindex -#: guix-git/doc/guix.texi:15738 +#: guix-git/doc/guix.texi:16095 #, no-wrap msgid "locale definition" msgstr "Locale-Definition" #. type: Plain text -#: guix-git/doc/guix.texi:15742 +#: guix-git/doc/guix.texi:16099 msgid "Usually, you will want to specify the default locale for the machine using the @code{locale} field of the @code{operating-system} declaration (@pxref{operating-system Reference, @code{locale}})." msgstr "Normalerweise werden Sie eine standardmäßig zu verwendende Locale für die Maschine vorgeben wollen, indem Sie das @code{locale}-Feld der @code{operating-system}-Deklaration verwenden (siehe @ref{operating-system Reference, @code{locale}})." #. type: Plain text -#: guix-git/doc/guix.texi:15751 +#: guix-git/doc/guix.texi:16108 msgid "The selected locale is automatically added to the @dfn{locale definitions} known to the system if needed, with its codeset inferred from its name---e.g., @code{bo_CN.utf8} will be assumed to use the @code{UTF-8} codeset. Additional locale definitions can be specified in the @code{locale-definitions} slot of @code{operating-system}---this is useful, for instance, if the codeset could not be inferred from the locale name. The default set of locale definitions includes some widely used locales, but not all the available locales, in order to save space." msgstr "Die ausgewählte Locale wird automatisch zu den dem System bekannten @dfn{Locale-Definitionen} hinzugefügt, falls nötig, und ihre Kodierung wird aus dem Namen hergeleitet@tie{}— z.B.@: wird angenommen, dass @code{bo_CN.utf8} als Kodierung @code{UTF-8} verwendet. Zusätzliche Locale-Definitionen können im Feld @code{locale-definitions} vom @code{operating-system} festgelegt werden@tie{}— das ist zum Beispiel dann nützlich, wenn die Kodierung nicht aus dem Locale-Namen hergeleitet werden konnte. Die vorgegebene Menge an Locale-Definitionen enthält manche weit verbreiteten Locales, aber um Platz zu sparen, nicht alle verfügbaren Locales." #. type: Plain text -#: guix-git/doc/guix.texi:15754 +#: guix-git/doc/guix.texi:16111 msgid "For instance, to add the North Frisian locale for Germany, the value of that field may be:" msgstr "Um zum Beispiel die nordfriesische Locale für Deutschland hinzuzufügen, könnte der Wert des Feldes wie folgt aussehen:" #. type: lisp -#: guix-git/doc/guix.texi:15759 +#: guix-git/doc/guix.texi:16116 #, no-wrap msgid "" "(cons (locale-definition\n" @@ -28662,12 +29311,12 @@ msgstr "" " %default-locale-definitions)\n" #. type: Plain text -#: guix-git/doc/guix.texi:15763 +#: guix-git/doc/guix.texi:16120 msgid "Likewise, to save space, one might want @code{locale-definitions} to list only the locales that are actually used, as in:" msgstr "Um Platz zu sparen, könnte man auch wollen, dass @code{locale-definitions} nur die tatsächlich benutzen Locales aufführt, wie etwa:" #. type: lisp -#: guix-git/doc/guix.texi:15768 +#: guix-git/doc/guix.texi:16125 #, no-wrap msgid "" "(list (locale-definition\n" @@ -28679,114 +29328,114 @@ msgstr "" " (charset \"EUC-JP\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15777 +#: guix-git/doc/guix.texi:16134 msgid "The compiled locale definitions are available at @file{/run/current-system/locale/X.Y}, where @code{X.Y} is the libc version, which is the default location where the GNU@tie{}libc provided by Guix looks for locale data. This can be overridden using the @env{LOCPATH} environment variable (@pxref{locales-and-locpath, @env{LOCPATH} and locale packages})." msgstr "Die kompilierten Locale-Definitionen sind unter @file{/run/current-system/locale/X.Y} verfügbar, wobei @code{X.Y} die Version von libc bezeichnet. Dies entspricht dem Pfad, an dem eine von Guix ausgelieferte GNU@tie{}libc standardmäßig nach Locale-Daten sucht. Er kann überschrieben werden durch die Umgebungsvariable @env{LOCPATH} (siehe @ref{locales-and-locpath, @env{LOCPATH} und Locale-Pakete})." #. type: Plain text -#: guix-git/doc/guix.texi:15780 +#: guix-git/doc/guix.texi:16137 msgid "The @code{locale-definition} form is provided by the @code{(gnu system locale)} module. Details are given below." msgstr "Die @code{locale-definition}-Form wird vom Modul @code{(gnu system locale)} zur Verfügung gestellt. Details folgen unten." #. type: deftp -#: guix-git/doc/guix.texi:15781 +#: guix-git/doc/guix.texi:16138 #, no-wrap msgid "{Data Type} locale-definition" msgstr "{Datentyp} locale-definition" #. type: deftp -#: guix-git/doc/guix.texi:15783 +#: guix-git/doc/guix.texi:16140 msgid "This is the data type of a locale definition." msgstr "Dies ist der Datentyp einer Locale-Definition." #. type: table -#: guix-git/doc/guix.texi:15789 +#: guix-git/doc/guix.texi:16146 msgid "The name of the locale. @xref{Locale Names,,, libc, The GNU C Library Reference Manual}, for more information on locale names." msgstr "Der Name der Locale. Siehe @ref{Locale Names,,, libc, Referenzhandbuch der GNU-C-Bibliothek} für mehr Informationen zu Locale-Namen." #. type: table -#: guix-git/doc/guix.texi:15793 +#: guix-git/doc/guix.texi:16150 msgid "The name of the source for that locale. This is typically the @code{@var{language}_@var{territory}} part of the locale name." msgstr "Der Name der Quelle der Locale. Typischerweise ist das der Teil @code{@var{Sprache}_@var{Gebiet}} des Locale-Namens." #. type: item -#: guix-git/doc/guix.texi:15794 +#: guix-git/doc/guix.texi:16151 #, no-wrap msgid "@code{charset} (default: @code{\"UTF-8\"})" msgstr "@code{charset} (Vorgabe: @code{\"UTF-8\"})" #. type: table -#: guix-git/doc/guix.texi:15798 +#: guix-git/doc/guix.texi:16155 msgid "The ``character set'' or ``code set'' for that locale, @uref{https://www.iana.org/assignments/character-sets, as defined by IANA}." msgstr "Der „Zeichensatz“ oder das „Code set“, d.h.@: die Kodierung dieser Locale, @uref{https://www.iana.org/assignments/character-sets, wie die IANA sie definiert}." #. type: defvr -#: guix-git/doc/guix.texi:15802 +#: guix-git/doc/guix.texi:16159 #, no-wrap msgid "{Scheme Variable} %default-locale-definitions" msgstr "{Scheme-Variable} %default-locale-definitions" #. type: defvr -#: guix-git/doc/guix.texi:15806 +#: guix-git/doc/guix.texi:16163 msgid "A list of commonly used UTF-8 locales, used as the default value of the @code{locale-definitions} field of @code{operating-system} declarations." msgstr "Eine Liste häufig benutzter UTF-8-Locales, die als Vorgabewert des @code{locale-definitions}-Feldes in @code{operating-system}-Deklarationen benutzt wird." #. type: cindex -#: guix-git/doc/guix.texi:15807 +#: guix-git/doc/guix.texi:16164 #, no-wrap msgid "locale name" msgstr "Locale-Name" #. type: cindex -#: guix-git/doc/guix.texi:15808 +#: guix-git/doc/guix.texi:16165 #, no-wrap msgid "normalized codeset in locale names" msgstr "Normalisiertes Codeset in Locale-Namen" #. type: defvr -#: guix-git/doc/guix.texi:15814 +#: guix-git/doc/guix.texi:16171 msgid "These locale definitions use the @dfn{normalized codeset} for the part that follows the dot in the name (@pxref{Using gettextized software, normalized codeset,, libc, The GNU C Library Reference Manual}). So for instance it has @code{uk_UA.utf8} but @emph{not}, say, @code{uk_UA.UTF-8}." msgstr "Diese Locale-Definitionen benutzen das @dfn{normalisierte Codeset} für den Teil des Namens, der nach dem Punkt steht (siehe @ref{Using gettextized software, normalisiertes Codeset,, libc, Referenzhandbuch der GNU-C-Bibliothek}). Zum Beispiel ist @code{uk_UA.utf8} enthalten, dagegen ist etwa @code{uk_UA.UTF-8} darin @emph{nicht} enthalten." #. type: subsection -#: guix-git/doc/guix.texi:15816 +#: guix-git/doc/guix.texi:16173 #, no-wrap msgid "Locale Data Compatibility Considerations" msgstr "Kompatibilität der Locale-Daten" #. type: cindex -#: guix-git/doc/guix.texi:15818 +#: guix-git/doc/guix.texi:16175 #, no-wrap msgid "incompatibility, of locale data" msgstr "Inkompatibilität, von Locale-Daten" #. type: Plain text -#: guix-git/doc/guix.texi:15825 +#: guix-git/doc/guix.texi:16182 msgid "@code{operating-system} declarations provide a @code{locale-libcs} field to specify the GNU@tie{}libc packages that are used to compile locale declarations (@pxref{operating-system Reference}). ``Why would I care?'', you may ask. Well, it turns out that the binary format of locale data is occasionally incompatible from one libc version to another." msgstr "@code{operating-system}-Deklarationen verfügen über ein @code{locale-libcs}-Feld, um die GNU@tie{}libc-Pakete anzugeben, die zum Kompilieren von Locale-Deklarationen verwendet werden sollen (siehe @ref{operating-system Reference}). „Was interessiert mich das?“, könnten Sie fragen. Naja, leider ist das binäre Format der Locale-Daten von einer libc-Version auf die nächste manchmal nicht miteinander kompatibel." #. type: Plain text -#: guix-git/doc/guix.texi:15837 +#: guix-git/doc/guix.texi:16194 msgid "For instance, a program linked against libc version 2.21 is unable to read locale data produced with libc 2.22; worse, that program @emph{aborts} instead of simply ignoring the incompatible locale data@footnote{Versions 2.23 and later of GNU@tie{}libc will simply skip the incompatible locale data, which is already an improvement.}. Similarly, a program linked against libc 2.22 can read most, but not all, of the locale data from libc 2.21 (specifically, @env{LC_COLLATE} data is incompatible); thus calls to @code{setlocale} may fail, but programs will not abort." msgstr "Zum Beispiel kann ein an die libc-Version 2.21 gebundenes Programm keine mit libc 2.22 erzeugten Locale-Daten lesen; schlimmer noch, das Programm @emph{terminiert} statt einfach die inkompatiblen Locale-Daten zu ignorieren@footnote{Versionen 2.23 von GNU@tie{}libc und neuere werden inkompatible Locale-Daten nur mehr überspringen, was schon einmal eine Verbesserung ist.}. Ähnlich kann ein an libc 2.22 gebundenes Programm die meisten, aber nicht alle, Locale-Daten von libc 2.21 lesen (Daten zu @env{LC_COLLATE} sind aber zum Beispiel inkompatibel); somit schlagen Aufrufe von @code{setlocale} vielleicht fehl, aber das Programm läuft weiter." #. type: Plain text -#: guix-git/doc/guix.texi:15842 +#: guix-git/doc/guix.texi:16199 msgid "The ``problem'' with Guix is that users have a lot of freedom: They can choose whether and when to upgrade software in their profiles, and might be using a libc version different from the one the system administrator used to build the system-wide locale data." msgstr "Das „Problem“ mit Guix ist, dass Nutzer viel Freiheit genießen: Sie können wählen, ob und wann sie die Software in ihren Profilen aktualisieren und benutzen vielleicht eine andere libc-Version als sie der Systemadministrator benutzt hat, um die systemweiten Locale-Daten zu erstellen." #. type: Plain text -#: guix-git/doc/guix.texi:15846 +#: guix-git/doc/guix.texi:16203 msgid "Fortunately, unprivileged users can also install their own locale data and define @env{GUIX_LOCPATH} accordingly (@pxref{locales-and-locpath, @env{GUIX_LOCPATH} and locale packages})." msgstr "Glücklicherweise können „unprivilegierte“ Nutzer ohne zusätzliche Berechtigungen dann zumindest ihre eigenen Locale-Daten installieren und @env{GUIX_LOCPATH} entsprechend definieren (siehe @ref{locales-and-locpath, @env{GUIX_LOCPATH} und Locale-Pakete})." #. type: Plain text -#: guix-git/doc/guix.texi:15853 +#: guix-git/doc/guix.texi:16210 msgid "Still, it is best if the system-wide locale data at @file{/run/current-system/locale} is built for all the libc versions actually in use on the system, so that all the programs can access it---this is especially crucial on a multi-user system. To do that, the administrator can specify several libc packages in the @code{locale-libcs} field of @code{operating-system}:" msgstr "Trotzdem ist es am besten, wenn die systemweiten Locale-Daten unter @file{/run/current-system/locale} für alle libc-Versionen erstellt werden, die auf dem System noch benutzt werden, damit alle Programme auf sie zugreifen können@tie{}— was auf einem Mehrbenutzersystem ganz besonders wichtig ist. Dazu kann der Administrator des Systems mehrere libc-Pakete im @code{locale-libcs}-Feld vom @code{operating-system} angeben:" #. type: lisp -#: guix-git/doc/guix.texi:15856 +#: guix-git/doc/guix.texi:16213 #, no-wrap msgid "" "(use-package-modules base)\n" @@ -28796,7 +29445,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15860 +#: guix-git/doc/guix.texi:16217 #, no-wrap msgid "" "(operating-system\n" @@ -28808,39 +29457,39 @@ msgstr "" " (locale-libcs (list glibc-2.21 (canonical-package glibc))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15865 +#: guix-git/doc/guix.texi:16222 msgid "This example would lead to a system containing locale definitions for both libc 2.21 and the current version of libc in @file{/run/current-system/locale}." msgstr "Mit diesem Beispiel ergäbe sich ein System, was Locale-Definitionen sowohl für libc 2.21 als auch die aktuelle Version von libc in @file{/run/current-system/locale} hat." #. type: cindex -#: guix-git/doc/guix.texi:15870 +#: guix-git/doc/guix.texi:16227 #, no-wrap msgid "system services" msgstr "Systemdienste" #. type: Plain text -#: guix-git/doc/guix.texi:15876 +#: guix-git/doc/guix.texi:16233 msgid "An important part of preparing an @code{operating-system} declaration is listing @dfn{system services} and their configuration (@pxref{Using the Configuration System}). System services are typically daemons launched when the system boots, or other actions needed at that time---e.g., configuring network access." msgstr "Ein wichtiger Bestandteil des Schreibens einer @code{operating-system}-Deklaration ist das Auflisten der @dfn{Systemdienste} und ihrer Konfiguration (siehe @ref{Using the Configuration System}). Systemdienste sind typischerweise im Hintergrund laufende Daemon-Programme, die beim Hochfahren des Systems gestartet werden, oder andere Aktionen, die zu dieser Zeit durchgeführt werden müssen@tie{}— wie das Konfigurieren des Netzwerkzugangs." #. type: Plain text -#: guix-git/doc/guix.texi:15883 +#: guix-git/doc/guix.texi:16240 msgid "Guix has a broad definition of ``service'' (@pxref{Service Composition}), but many services are managed by the GNU@tie{}Shepherd (@pxref{Shepherd Services}). On a running system, the @command{herd} command allows you to list the available services, show their status, start and stop them, or do other specific operations (@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}). For example:" msgstr "Guix hat eine weit gefasste Definition, was ein „Dienst“ ist (siehe @ref{Service Composition}), aber viele Dienste sind solche, die von GNU@tie{}Shepherd verwaltet werden (siehe @ref{Shepherd Services}). Auf einem laufenden System kann der @command{herd}-Befehl benutzt werden, um verfügbare Dienste aufzulisten, ihren Status anzuzeigen, sie zu starten und zu stoppen oder andere angebotene Operationen durchzuführen (siehe @ref{Jump Start,,, shepherd, The GNU Shepherd Manual}). Zum Beispiel:" #. type: example -#: guix-git/doc/guix.texi:15886 +#: guix-git/doc/guix.texi:16243 #, no-wrap msgid "# herd status\n" msgstr "# herd status\n" #. type: Plain text -#: guix-git/doc/guix.texi:15891 +#: guix-git/doc/guix.texi:16248 msgid "The above command, run as @code{root}, lists the currently defined services. The @command{herd doc} command shows a synopsis of the given service and its associated actions:" msgstr "Dieser Befehl, durchgeführt als @code{root}, listet die momentan definierten Dienste auf. Der Befehl @command{herd doc} fasst kurz zusammen, was ein gegebener Dienst ist und welche Aktionen mit ihm assoziiert sind:" #. type: example -#: guix-git/doc/guix.texi:15895 +#: guix-git/doc/guix.texi:16252 #, no-wrap msgid "" "# herd doc nscd\n" @@ -28852,7 +29501,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:15898 +#: guix-git/doc/guix.texi:16255 #, no-wrap msgid "" "# herd doc nscd action invalidate\n" @@ -28862,12 +29511,12 @@ msgstr "" "invalidate: Invalidate the given cache--e.g., 'hosts' for host name lookups.\n" #. type: Plain text -#: guix-git/doc/guix.texi:15903 +#: guix-git/doc/guix.texi:16260 msgid "The @command{start}, @command{stop}, and @command{restart} sub-commands have the effect you would expect. For instance, the commands below stop the nscd service and restart the Xorg display server:" msgstr "Die Unterbefehle @command{start}, @command{stop} und @command{restart} haben die Wirkung, die man erwarten würde. Zum Beispiel kann mit folgenden Befehlen der nscd-Dienst angehalten und der Xorg-Anzeigeserver neu gestartet werden:" #. type: example -#: guix-git/doc/guix.texi:15910 +#: guix-git/doc/guix.texi:16267 #, no-wrap msgid "" "# herd stop nscd\n" @@ -28883,45 +29532,45 @@ msgstr "" "Service xorg-server has been started.\n" #. type: Plain text -#: guix-git/doc/guix.texi:15915 +#: guix-git/doc/guix.texi:16272 msgid "The following sections document the available services, starting with the core services, that may be used in an @code{operating-system} declaration." msgstr "Die folgenden Abschnitte dokumentieren die verfügbaren Dienste, die in einer @code{operating-system}-Deklaration benutzt werden können, angefangen mit den Diensten im Kern des Systems („core services“)" #. type: subsection -#: guix-git/doc/guix.texi:15951 guix-git/doc/guix.texi:24198 -#: guix-git/doc/guix.texi:24199 +#: guix-git/doc/guix.texi:16308 guix-git/doc/guix.texi:24560 +#: guix-git/doc/guix.texi:24561 #, no-wrap msgid "File-Sharing Services" msgstr "Dateientauschdienste" #. type: menuentry -#: guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:16308 msgid "File-sharing services." msgstr "File Sharing." #. type: Plain text -#: guix-git/doc/guix.texi:15959 +#: guix-git/doc/guix.texi:16316 msgid "The @code{(gnu services base)} module provides definitions for the basic services that one expects from the system. The services exported by this module are listed below." msgstr "Das Modul @code{(gnu services base)} stellt Definitionen für Basis-Dienste zur Verfügung, von denen man erwartet, dass das System sie anbietet. Im Folgenden sind die von diesem Modul exportierten Dienste aufgeführt." #. type: defvr -#: guix-git/doc/guix.texi:15960 +#: guix-git/doc/guix.texi:16317 #, no-wrap msgid "{Scheme Variable} %base-services" msgstr "{Scheme-Variable} %base-services" #. type: defvr -#: guix-git/doc/guix.texi:15966 +#: guix-git/doc/guix.texi:16323 msgid "This variable contains a list of basic services (@pxref{Service Types and Services}, for more information on service objects) one would expect from the system: a login service (mingetty) on each tty, syslogd, the libc name service cache daemon (nscd), the udev device manager, and more." msgstr "Diese Variable enthält eine Liste von Basis-Diensten, die man auf einem System vorzufinden erwartet (siehe @ref{Service Types and Services} für weitere Informationen zu Dienstobjekten): ein Anmeldungsdienst (mingetty) auf jeder Konsole (jedem „tty“), syslogd, den Name Service Cache Daemon (nscd) von libc, die udev-Geräteverwaltung und weitere." #. type: defvr -#: guix-git/doc/guix.texi:15971 +#: guix-git/doc/guix.texi:16328 msgid "This is the default value of the @code{services} field of @code{operating-system} declarations. Usually, when customizing a system, you will want to append services to @code{%base-services}, like this:" msgstr "Dies ist der Vorgabewert für das @code{services}-Feld für die Dienste von @code{operating-system}-Deklarationen. Normalerweise werden Sie, wenn Sie ein Betriebssystem anpassen, Dienste an die @code{%base-services}-Liste anhängen, wie hier gezeigt:" #. type: lisp -#: guix-git/doc/guix.texi:15976 +#: guix-git/doc/guix.texi:16333 #, no-wrap msgid "" "(append (list (service avahi-service-type)\n" @@ -28933,58 +29582,58 @@ msgstr "" " %base-services)\n" #. type: defvr -#: guix-git/doc/guix.texi:15979 +#: guix-git/doc/guix.texi:16336 #, no-wrap msgid "{Scheme Variable} special-files-service-type" msgstr "{Scheme-Variable} special-files-service-type" #. type: defvr -#: guix-git/doc/guix.texi:15982 +#: guix-git/doc/guix.texi:16339 msgid "This is the service that sets up ``special files'' such as @file{/bin/sh}; an instance of it is part of @code{%base-services}." msgstr "Dieser Dienst richtet „besondere Dateien“ wie @file{/bin/sh} ein; eine Instanz des Dienstes ist Teil der @code{%base-services}." #. type: defvr -#: guix-git/doc/guix.texi:15986 +#: guix-git/doc/guix.texi:16343 msgid "The value associated with @code{special-files-service-type} services must be a list of tuples where the first element is the ``special file'' and the second element is its target. By default it is:" msgstr "Der mit @code{special-files-service-type}-Diensten assoziierte Wert muss eine Liste von Tupeln sein, deren erstes Element eine „besondere Datei“ und deren zweites Element deren Zielpfad ist. Der Vorgabewert ist:" #. type: file{#1} -#: guix-git/doc/guix.texi:15987 +#: guix-git/doc/guix.texi:16344 #, no-wrap msgid "/bin/sh" msgstr "/bin/sh" #. type: cindex -#: guix-git/doc/guix.texi:15988 +#: guix-git/doc/guix.texi:16345 #, no-wrap msgid "@file{sh}, in @file{/bin}" msgstr "@file{sh}, in @file{/bin}" #. type: lisp -#: guix-git/doc/guix.texi:15991 +#: guix-git/doc/guix.texi:16348 #, no-wrap msgid "`((\"/bin/sh\" ,(file-append bash \"/bin/sh\")))\n" msgstr "`((\"/bin/sh\" ,(file-append bash \"/bin/sh\")))\n" #. type: file{#1} -#: guix-git/doc/guix.texi:15993 +#: guix-git/doc/guix.texi:16350 #, no-wrap msgid "/usr/bin/env" msgstr "/usr/bin/env" #. type: cindex -#: guix-git/doc/guix.texi:15994 +#: guix-git/doc/guix.texi:16351 #, no-wrap msgid "@file{env}, in @file{/usr/bin}" msgstr "@file{env}, in @file{/usr/bin}" #. type: defvr -#: guix-git/doc/guix.texi:15997 +#: guix-git/doc/guix.texi:16354 msgid "If you want to add, say, @code{/usr/bin/env} to your system, you can change it to:" msgstr "Wenn Sie zum Beispiel auch @code{/usr/bin/env} zu Ihrem System hinzufügen möchten, können Sie den Wert ändern auf:" #. type: lisp -#: guix-git/doc/guix.texi:16001 +#: guix-git/doc/guix.texi:16358 #, no-wrap msgid "" "`((\"/bin/sh\" ,(file-append bash \"/bin/sh\"))\n" @@ -28994,28 +29643,28 @@ msgstr "" " (\"/usr/bin/env\" ,(file-append coreutils \"/bin/env\")))\n" #. type: defvr -#: guix-git/doc/guix.texi:16008 +#: guix-git/doc/guix.texi:16365 msgid "Since this is part of @code{%base-services}, you can use @code{modify-services} to customize the set of special files (@pxref{Service Reference, @code{modify-services}}). But the simple way to add a special file is @i{via} the @code{extra-special-file} procedure (see below)." msgstr "Da dieser Dienst Teil der @code{%base-services} ist, können Sie @code{modify-services} benutzen, um die Liste besonderer Dateien abzuändern (siehe @ref{Service Reference, @code{modify-services}}). Die leichte Alternative, um eine besondere Datei hinzuzufügen, ist über die Prozedur @code{extra-special-file} (siehe unten)." #. type: deffn -#: guix-git/doc/guix.texi:16010 +#: guix-git/doc/guix.texi:16367 #, no-wrap msgid "{Scheme Procedure} extra-special-file @var{file} @var{target}" msgstr "{Scheme-Prozedur} extra-special-file @var{Datei} @var{Ziel}" #. type: deffn -#: guix-git/doc/guix.texi:16012 +#: guix-git/doc/guix.texi:16369 msgid "Use @var{target} as the ``special file'' @var{file}." msgstr "Das @var{Ziel} als „besondere Datei“ @var{Datei} verwenden." #. type: deffn -#: guix-git/doc/guix.texi:16016 +#: guix-git/doc/guix.texi:16373 msgid "For example, adding the following lines to the @code{services} field of your operating system declaration leads to a @file{/usr/bin/env} symlink:" msgstr "Beispielsweise können Sie die folgenden Zeilen in das @code{services}-Feld Ihrer Betriebssystemdeklaration einfügen für eine symbolische Verknüpfung @file{/usr/bin/env}:" #. type: lisp -#: guix-git/doc/guix.texi:16020 +#: guix-git/doc/guix.texi:16377 #, no-wrap msgid "" "(extra-special-file \"/usr/bin/env\"\n" @@ -29025,29 +29674,29 @@ msgstr "" " (file-append coreutils \"/bin/env\"))\n" #. type: deffn -#: guix-git/doc/guix.texi:16023 +#: guix-git/doc/guix.texi:16380 #, no-wrap msgid "{Scheme Procedure} host-name-service @var{name}" msgstr "{Scheme-Prozedur} host-name-service @var{Name}" #. type: deffn -#: guix-git/doc/guix.texi:16025 +#: guix-git/doc/guix.texi:16382 msgid "Return a service that sets the host name to @var{name}." msgstr "Liefert einen Dienst, der den Rechnernamen (den „Host“-Namen des Rechners) als @var{Name} festlegt." #. type: defvr -#: guix-git/doc/guix.texi:16027 +#: guix-git/doc/guix.texi:16384 #, no-wrap msgid "{Scheme Variable} console-font-service-type" msgstr "{Scheme-Variable} console-font-service-type" #. type: defvr -#: guix-git/doc/guix.texi:16032 +#: guix-git/doc/guix.texi:16389 msgid "Install the given fonts on the specified ttys (fonts are per virtual console on the kernel Linux). The value of this service is a list of tty/font pairs. The font can be the name of a font provided by the @code{kbd} package or any valid argument to @command{setfont}, as in this example:" msgstr "Installiert die angegebenen Schriftarten auf den festgelegten TTYs (auf dem Linux-Kernel werden Schriftarten für jede virtuelle Konsole einzeln festgelegt). Als Wert nimmt dieser Dienst eine Liste von Paaren aus TTY und Schriftart. Als Schriftart kann der Name einer vom @code{kbd}-Paket zur Verfügung gestellten Schriftart oder ein beliebiges gültiges Argument für @command{setfont} dienen. Ein Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:16041 +#: guix-git/doc/guix.texi:16398 #, no-wrap msgid "" "`((\"tty1\" . \"LatGrkCyr-8x16\")\n" @@ -29067,1109 +29716,1109 @@ msgstr "" " \"/share/consolefonts/ter-132n\"))) ; für HiDPI\n" #. type: deffn -#: guix-git/doc/guix.texi:16044 +#: guix-git/doc/guix.texi:16401 #, no-wrap msgid "{Scheme Procedure} login-service @var{config}" msgstr "{Scheme-Prozedur} login-service @var{Konfiguration}" #. type: deffn -#: guix-git/doc/guix.texi:16048 +#: guix-git/doc/guix.texi:16405 msgid "Return a service to run login according to @var{config}, a @code{} object, which specifies the message of the day, among other things." msgstr "Liefert einen Dienst, der die Benutzeranmeldung möglich macht. Dazu verwendet er die angegebene @var{Konfiguration}, ein @code{}-Objekt, das unter anderem die beim Anmelden angezeigte Mitteilung des Tages („Message of the Day“) festlegt." #. type: deftp -#: guix-git/doc/guix.texi:16050 +#: guix-git/doc/guix.texi:16407 #, no-wrap msgid "{Data Type} login-configuration" msgstr "{Datentyp} login-configuration" #. type: deftp -#: guix-git/doc/guix.texi:16052 +#: guix-git/doc/guix.texi:16409 msgid "This is the data type representing the configuration of login." msgstr "Dies ist der Datentyp, der die Anmeldekonfiguration repräsentiert." #. type: code{#1} -#: guix-git/doc/guix.texi:16055 +#: guix-git/doc/guix.texi:16412 #, no-wrap msgid "motd" msgstr "motd" #. type: cindex -#: guix-git/doc/guix.texi:16056 +#: guix-git/doc/guix.texi:16413 #, no-wrap msgid "message of the day" msgstr "Message of the Day" #. type: table -#: guix-git/doc/guix.texi:16058 +#: guix-git/doc/guix.texi:16415 msgid "A file-like object containing the ``message of the day''." msgstr "Ein dateiartiges Objekt, das die „Message of the Day“ enthält." #. type: item -#: guix-git/doc/guix.texi:16059 guix-git/doc/guix.texi:19280 +#: guix-git/doc/guix.texi:16416 guix-git/doc/guix.texi:19642 #, no-wrap msgid "@code{allow-empty-passwords?} (default: @code{#t})" msgstr "@code{allow-empty-passwords?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:16062 +#: guix-git/doc/guix.texi:16419 msgid "Allow empty passwords by default so that first-time users can log in when the 'root' account has just been created." msgstr "Leere Passwörter standardmäßig zulassen, damit sich neue Anwender anmelden können, direkt nachdem das Benutzerkonto „root“ für den Administrator angelegt wurde." #. type: deffn -#: guix-git/doc/guix.texi:16066 +#: guix-git/doc/guix.texi:16423 #, no-wrap msgid "{Scheme Procedure} mingetty-service @var{config}" msgstr "{Scheme-Prozedur} mingetty-service @var{Konfiguration}" #. type: deffn -#: guix-git/doc/guix.texi:16070 +#: guix-git/doc/guix.texi:16427 msgid "Return a service to run mingetty according to @var{config}, a @code{} object, which specifies the tty to run, among other things." msgstr "Liefert einen Dienst, der mingetty nach den Vorgaben der @var{Konfiguration} ausführt, einem @code{}-Objekt, das unter anderem die Konsole (das „tty“) festlegt, auf der mingetty laufen soll." #. type: deftp -#: guix-git/doc/guix.texi:16072 +#: guix-git/doc/guix.texi:16429 #, no-wrap msgid "{Data Type} mingetty-configuration" msgstr "{Datentyp} mingetty-configuration" #. type: deftp -#: guix-git/doc/guix.texi:16075 +#: guix-git/doc/guix.texi:16432 msgid "This is the data type representing the configuration of Mingetty, which provides the default implementation of virtual console log-in." msgstr "Dieser Datentyp repräsentiert die Konfiguration von Mingetty, der vorgegebenen Implementierung zur Anmeldung auf einer virtuellen Konsole." #. type: code{#1} -#: guix-git/doc/guix.texi:16078 guix-git/doc/guix.texi:16117 -#: guix-git/doc/guix.texi:33550 +#: guix-git/doc/guix.texi:16435 guix-git/doc/guix.texi:16474 +#: guix-git/doc/guix.texi:33987 #, no-wrap msgid "tty" msgstr "tty" #. type: table -#: guix-git/doc/guix.texi:16080 +#: guix-git/doc/guix.texi:16437 msgid "The name of the console this Mingetty runs on---e.g., @code{\"tty1\"}." msgstr "Der Name der Konsole, auf der diese Mingetty-Instanz läuft@tie{}— z.B.@: @code{\"tty1\"}." #. type: item -#: guix-git/doc/guix.texi:16081 guix-git/doc/guix.texi:16146 -#: guix-git/doc/guix.texi:16305 +#: guix-git/doc/guix.texi:16438 guix-git/doc/guix.texi:16503 +#: guix-git/doc/guix.texi:16662 #, no-wrap msgid "@code{auto-login} (default: @code{#f})" msgstr "@code{auto-login} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16085 +#: guix-git/doc/guix.texi:16442 msgid "When true, this field must be a string denoting the user name under which the system automatically logs in. When it is @code{#f}, a user name and password must be entered to log in." msgstr "Steht dieses Feld auf wahr, muss es eine Zeichenkette sein, die den Benutzernamen angibt, als der man vom System automatisch angemeldet wird. Ist es @code{#f}, so muss zur Anmeldung ein Benutzername und ein Passwort eingegeben werden." #. type: item -#: guix-git/doc/guix.texi:16086 +#: guix-git/doc/guix.texi:16443 #, no-wrap msgid "@code{login-program} (default: @code{#f})" msgstr "@code{login-program} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16090 +#: guix-git/doc/guix.texi:16447 msgid "This must be either @code{#f}, in which case the default log-in program is used (@command{login} from the Shadow tool suite), or a gexp denoting the name of the log-in program." msgstr "Dies muss entweder @code{#f} sein, dann wird das voreingestellte Anmeldeprogramm benutzt (@command{login} aus dem Shadow-Werkzeugsatz) oder der Name des Anmeldeprogramms als G-Ausdruck." #. type: item -#: guix-git/doc/guix.texi:16091 +#: guix-git/doc/guix.texi:16448 #, no-wrap msgid "@code{login-pause?} (default: @code{#f})" msgstr "@code{login-pause?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16094 +#: guix-git/doc/guix.texi:16451 msgid "When set to @code{#t} in conjunction with @var{auto-login}, the user will have to press a key before the log-in shell is launched." msgstr "Ist es auf @code{#t} gesetzt, sorgt es in Verbindung mit @var{auto-login} dafür, dass der Benutzer eine Taste drücken muss, ehe eine Login-Shell gestartet wird." #. type: item -#: guix-git/doc/guix.texi:16095 +#: guix-git/doc/guix.texi:16452 #, no-wrap msgid "@code{clear-on-logout?} (default: @code{#t})" msgstr "@code{clear-on-logout?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:16097 +#: guix-git/doc/guix.texi:16454 msgid "When set to @code{#t}, the screen will be cleared after logout." msgstr "Ist dies auf @code{#t} gesetzt, wird der Bildschirm nach der Abmeldung @emph{nicht} gelöscht." #. type: item -#: guix-git/doc/guix.texi:16098 +#: guix-git/doc/guix.texi:16455 #, no-wrap msgid "@code{mingetty} (default: @var{mingetty})" msgstr "@code{mingetty} (Vorgabe: @var{mingetty})" #. type: table -#: guix-git/doc/guix.texi:16100 +#: guix-git/doc/guix.texi:16457 msgid "The Mingetty package to use." msgstr "Welches Mingetty-Paket benutzt werden soll." #. type: deffn -#: guix-git/doc/guix.texi:16104 +#: guix-git/doc/guix.texi:16461 #, no-wrap msgid "{Scheme Procedure} agetty-service @var{config}" msgstr "{Scheme-Prozedur} agetty-service @var{Konfiguration}" #. type: deffn -#: guix-git/doc/guix.texi:16108 +#: guix-git/doc/guix.texi:16465 msgid "Return a service to run agetty according to @var{config}, an @code{} object, which specifies the tty to run, among other things." msgstr "Liefert einen Dienst, um agetty entsprechend der @var{Konfiguration} auszuführen, welche ein @code{}-Objekt sein muss, das unter anderem festlegt, auf welchem tty es laufen soll." #. type: deftp -#: guix-git/doc/guix.texi:16110 +#: guix-git/doc/guix.texi:16467 #, no-wrap msgid "{Data Type} agetty-configuration" msgstr "{Datentyp} agetty-configuration" #. type: deftp -#: guix-git/doc/guix.texi:16114 +#: guix-git/doc/guix.texi:16471 msgid "This is the data type representing the configuration of agetty, which implements virtual and serial console log-in. See the @code{agetty(8)} man page for more information." msgstr "Dies ist der Datentyp, der die Konfiguration von agetty repräsentiert, was Anmeldungen auf einer virtuellen oder seriellen Konsole implementiert. Siehe die Handbuchseite @code{agetty(8)} für mehr Informationen." #. type: table -#: guix-git/doc/guix.texi:16121 +#: guix-git/doc/guix.texi:16478 msgid "The name of the console this agetty runs on, as a string---e.g., @code{\"ttyS0\"}. This argument is optional, it will default to a reasonable default serial port used by the kernel Linux." msgstr "Der Name der Konsole, auf der diese Instanz von agetty läuft, als Zeichenkette@tie{}— z.B.@: @code{\"ttyS0\"}. Dieses Argument ist optional, sein Vorgabewert ist eine vernünftige Wahl unter den seriellen Schnittstellen, auf deren Benutzung der Linux-Kernel eingestellt ist." #. type: table -#: guix-git/doc/guix.texi:16125 +#: guix-git/doc/guix.texi:16482 msgid "For this, if there is a value for an option @code{agetty.tty} in the kernel command line, agetty will extract the device name of the serial port from it and use that." msgstr "Hierzu wird, wenn in der Kernel-Befehlszeile ein Wert für eine Option namens @code{agetty.tty} festgelegt wurde, der Gerätename daraus für agetty extrahiert und benutzt." #. type: table -#: guix-git/doc/guix.texi:16129 +#: guix-git/doc/guix.texi:16486 msgid "If not and if there is a value for an option @code{console} with a tty in the Linux command line, agetty will extract the device name of the serial port from it and use that." msgstr "Andernfalls wird agetty, falls auf der Kernel-Befehlszeile eine Option @code{console} mit einem tty vorkommt, den daraus extrahierten Gerätenamen der seriellen Schnittstelle benutzen." #. type: table -#: guix-git/doc/guix.texi:16133 +#: guix-git/doc/guix.texi:16490 msgid "In both cases, agetty will leave the other serial device settings (baud rate etc.)@: alone---in the hope that Linux pinned them to the correct values." msgstr "In beiden Fällen wird agetty nichts an den anderen Einstellungen für serielle Geräte verändern (Baud-Rate etc.), in der Hoffnung, dass Linux sie auf die korrekten Werte festgelegt hat." #. type: item -#: guix-git/doc/guix.texi:16134 guix-git/doc/guix.texi:33711 +#: guix-git/doc/guix.texi:16491 guix-git/doc/guix.texi:34148 #, no-wrap msgid "@code{baud-rate} (default: @code{#f})" msgstr "@code{baud-rate} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16137 +#: guix-git/doc/guix.texi:16494 msgid "A string containing a comma-separated list of one or more baud rates, in descending order." msgstr "Eine Zeichenkette, die aus einer kommagetrennten Liste von einer oder mehreren Baud-Raten besteht, absteigend sortiert." #. type: item -#: guix-git/doc/guix.texi:16138 +#: guix-git/doc/guix.texi:16495 #, no-wrap msgid "@code{term} (default: @code{#f})" msgstr "@code{term} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16141 +#: guix-git/doc/guix.texi:16498 msgid "A string containing the value used for the @env{TERM} environment variable." msgstr "Eine Zeichenkette, die den Wert enthält, der für die Umgebungsvariable @env{TERM} benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:16142 +#: guix-git/doc/guix.texi:16499 #, no-wrap msgid "@code{eight-bits?} (default: @code{#f})" msgstr "@code{eight-bits?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16145 +#: guix-git/doc/guix.texi:16502 msgid "When @code{#t}, the tty is assumed to be 8-bit clean, and parity detection is disabled." msgstr "Steht dies auf @code{#t}, wird angenommen, dass das tty 8-Bit-korrekt ist, so dass die Paritätserkennung abgeschaltet wird." #. type: table -#: guix-git/doc/guix.texi:16149 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:16506 guix-git/doc/guix.texi:16665 msgid "When passed a login name, as a string, the specified user will be logged in automatically without prompting for their login name or password." msgstr "Wird hier ein Anmeldename als eine Zeichenkette übergeben, wird der angegebene Nutzer automatisch angemeldet, ohne nach einem Anmeldenamen oder Passwort zu fragen." #. type: item -#: guix-git/doc/guix.texi:16150 +#: guix-git/doc/guix.texi:16507 #, no-wrap msgid "@code{no-reset?} (default: @code{#f})" msgstr "@code{no-reset?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16152 +#: guix-git/doc/guix.texi:16509 msgid "When @code{#t}, don't reset terminal cflags (control modes)." msgstr "Steht dies auf @code{#t}, werden die Cflags des Terminals (d.h.@: dessen Steuermodi) nicht zurückgesetzt." #. type: item -#: guix-git/doc/guix.texi:16153 +#: guix-git/doc/guix.texi:16510 #, no-wrap msgid "@code{host} (default: @code{#f})" msgstr "@code{host} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16156 +#: guix-git/doc/guix.texi:16513 msgid "This accepts a string containing the ``login_host'', which will be written into the @file{/var/run/utmpx} file." msgstr "Dies akzeptiert eine Zeichenkette mit dem einzutragenden Anmeldungs-Rechnernamen („login_host“), der in die Datei @file{/var/run/utmpx} geschrieben wird." #. type: item -#: guix-git/doc/guix.texi:16157 +#: guix-git/doc/guix.texi:16514 #, no-wrap msgid "@code{remote?} (default: @code{#f})" msgstr "@code{remote?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16161 +#: guix-git/doc/guix.texi:16518 msgid "When set to @code{#t} in conjunction with @var{host}, this will add an @code{-r} fakehost option to the command line of the login program specified in @var{login-program}." msgstr "Ist dies auf @code{#t} gesetzt, wird in Verbindung mit @var{host} eine Befehlszeilenoption @code{-r} für einen falschen Rechnernamen („Fakehost“) in der Befehlszeile des mit @var{login-program} angegebenen Anmeldeprogramms übergeben." #. type: item -#: guix-git/doc/guix.texi:16162 +#: guix-git/doc/guix.texi:16519 #, no-wrap msgid "@code{flow-control?} (default: @code{#f})" msgstr "@code{flow-control?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16164 +#: guix-git/doc/guix.texi:16521 msgid "When set to @code{#t}, enable hardware (RTS/CTS) flow control." msgstr "Ist dies auf @code{#t} gesetzt, wird Hardware-Flusssteuerung (RTS/CTS) aktiviert." #. type: item -#: guix-git/doc/guix.texi:16165 +#: guix-git/doc/guix.texi:16522 #, no-wrap msgid "@code{no-issue?} (default: @code{#f})" msgstr "@code{no-issue?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16168 +#: guix-git/doc/guix.texi:16525 msgid "When set to @code{#t}, the contents of the @file{/etc/issue} file will not be displayed before presenting the login prompt." msgstr "Ist dies auf @code{#t} gesetzt, wird der Inhalt der Datei @file{/etc/issue} @emph{nicht} angezeigt, bevor die Anmeldeaufforderung zu sehen ist." #. type: item -#: guix-git/doc/guix.texi:16169 +#: guix-git/doc/guix.texi:16526 #, no-wrap msgid "@code{init-string} (default: @code{#f})" msgstr "@code{init-string} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16172 +#: guix-git/doc/guix.texi:16529 msgid "This accepts a string that will be sent to the tty or modem before sending anything else. It can be used to initialize a modem." msgstr "Dies akzeptiert eine Zeichenkette, die zum tty oder zum Modem zuerst vor allem anderen gesendet wird. Es kann benutzt werden, um ein Modem zu initialisieren." #. type: item -#: guix-git/doc/guix.texi:16173 +#: guix-git/doc/guix.texi:16530 #, no-wrap msgid "@code{no-clear?} (default: @code{#f})" msgstr "@code{no-clear?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16176 +#: guix-git/doc/guix.texi:16533 msgid "When set to @code{#t}, agetty will not clear the screen before showing the login prompt." msgstr "Ist dies auf @code{#t} gesetzt, wird agetty den Bildschirm @emph{nicht} löschen, bevor es die Anmeldeaufforderung anzeigt." #. type: item -#: guix-git/doc/guix.texi:16177 +#: guix-git/doc/guix.texi:16534 #, no-wrap msgid "@code{login-program} (default: (file-append shadow \"/bin/login\"))" msgstr "@code{login-program} (Vorgabe: (file-append shadow \"/bin/login\"))" #. type: table -#: guix-git/doc/guix.texi:16181 +#: guix-git/doc/guix.texi:16538 msgid "This must be either a gexp denoting the name of a log-in program, or unset, in which case the default value is the @command{login} from the Shadow tool suite." msgstr "Hier muss entweder ein G-Ausdruck mit dem Namen eines Anmeldeprogramms übergeben werden, oder dieses Feld wird nicht gesetzt, so dass als Vorgabewert das Programm @command{login} aus dem Shadow-Werkzeugsatz verwendet wird." #. type: item -#: guix-git/doc/guix.texi:16182 +#: guix-git/doc/guix.texi:16539 #, no-wrap msgid "@code{local-line} (default: @code{#f})" msgstr "@code{local-line} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16186 +#: guix-git/doc/guix.texi:16543 msgid "Control the CLOCAL line flag. This accepts one of three symbols as arguments, @code{'auto}, @code{'always}, or @code{'never}. If @code{#f}, the default value chosen by agetty is @code{'auto}." msgstr "Steuert den Leitungsschalter CLOCAL@. Hierfür wird eines von drei Symbolen als Argument akzeptiert, @code{'auto}, @code{'always} oder @code{'never}. Für @code{#f} wählt agetty als Vorgabewert @code{'auto}." #. type: item -#: guix-git/doc/guix.texi:16187 +#: guix-git/doc/guix.texi:16544 #, no-wrap msgid "@code{extract-baud?} (default: @code{#f})" msgstr "@code{extract-baud?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16190 +#: guix-git/doc/guix.texi:16547 msgid "When set to @code{#t}, instruct agetty to try to extract the baud rate from the status messages produced by certain types of modems." msgstr "Ist dies auf @code{#t} gesetzt, so wird agetty angewiesen, die Baud-Rate aus den Statusmeldungen mancher Arten von Modem abzulesen." #. type: item -#: guix-git/doc/guix.texi:16191 +#: guix-git/doc/guix.texi:16548 #, no-wrap msgid "@code{skip-login?} (default: @code{#f})" msgstr "@code{skip-login?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16195 +#: guix-git/doc/guix.texi:16552 msgid "When set to @code{#t}, do not prompt the user for a login name. This can be used with @var{login-program} field to use non-standard login systems." msgstr "Ist dies auf @code{#t} gesetzt, wird der Benutzer nicht aufgefordert, einen Anmeldenamen einzugeben. Dies kann zusammen mit dem @var{login-program}-Feld benutzt werden, um nicht standardkonforme Anmeldesysteme zu benutzen." #. type: item -#: guix-git/doc/guix.texi:16196 +#: guix-git/doc/guix.texi:16553 #, no-wrap msgid "@code{no-newline?} (default: @code{#f})" msgstr "@code{no-newline?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16199 +#: guix-git/doc/guix.texi:16556 msgid "When set to @code{#t}, do not print a newline before printing the @file{/etc/issue} file." msgstr "Ist dies auf @code{#t} gesetzt, wird @emph{kein} Zeilenumbruch ausgegeben, bevor die Datei @file{/etc/issue} ausgegeben wird." #. type: item -#: guix-git/doc/guix.texi:16201 +#: guix-git/doc/guix.texi:16558 #, no-wrap msgid "@code{login-options} (default: @code{#f})" msgstr "@code{login-options} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16206 +#: guix-git/doc/guix.texi:16563 msgid "This option accepts a string containing options that are passed to the login program. When used with the @var{login-program}, be aware that a malicious user could try to enter a login name containing embedded options that could be parsed by the login program." msgstr "Dieses Feld akzeptiert eine Zeichenkette mit den Befehlszeilenoptionen für das Anmeldeprogramm. Beachten Sie, dass bei einem selbst gewählten @var{login-program} ein böswilliger Nutzer versuchen könnte, als Anmeldenamen etwas mit eingebetteten Befehlszeilenoptionen anzugeben, die vom Anmeldeprogramm interpretiert werden könnten." #. type: item -#: guix-git/doc/guix.texi:16207 +#: guix-git/doc/guix.texi:16564 #, no-wrap msgid "@code{login-pause} (default: @code{#f})" msgstr "@code{login-pause} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16211 +#: guix-git/doc/guix.texi:16568 msgid "When set to @code{#t}, wait for any key before showing the login prompt. This can be used in conjunction with @var{auto-login} to save memory by lazily spawning shells." msgstr "Ist dies auf @code{#t} gesetzt, wird auf das Drücken einer beliebigen Taste gewartet, bevor die Anmeldeaufforderung angezeigt wird. Hiermit kann in Verbindung mit @var{auto-login} weniger Speicher verbraucht werden, indem man Shells erst erzeugt, wenn sie benötigt werden." #. type: item -#: guix-git/doc/guix.texi:16212 +#: guix-git/doc/guix.texi:16569 #, no-wrap msgid "@code{chroot} (default: @code{#f})" msgstr "@code{chroot} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16215 +#: guix-git/doc/guix.texi:16572 msgid "Change root to the specified directory. This option accepts a directory path as a string." msgstr "Wechselt die Wurzel des Dateisystems auf das angegebene Verzeichnis. Dieses Feld akzeptiert einen Verzeichnispfad als Zeichenkette." #. type: item -#: guix-git/doc/guix.texi:16216 +#: guix-git/doc/guix.texi:16573 #, no-wrap msgid "@code{hangup?} (default: @code{#f})" msgstr "@code{hangup?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16219 +#: guix-git/doc/guix.texi:16576 msgid "Use the Linux system call @code{vhangup} to do a virtual hangup of the specified terminal." msgstr "Mit dem Linux-Systemaufruf @code{vhangup} auf dem angegebenen Terminal virtuell auflegen." #. type: item -#: guix-git/doc/guix.texi:16220 +#: guix-git/doc/guix.texi:16577 #, no-wrap msgid "@code{keep-baud?} (default: @code{#f})" msgstr "@code{keep-baud?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16224 +#: guix-git/doc/guix.texi:16581 msgid "When set to @code{#t}, try to keep the existing baud rate. The baud rates from @var{baud-rate} are used when agetty receives a @key{BREAK} character." msgstr "Ist dies auf @code{#t} gesetzt, wird versucht, die bestehende Baud-Rate beizubehalten. Die Baud-Raten aus dem Feld @var{baud-rate} werden benutzt, wenn agetty ein @key{BREAK}-Zeichen empfängt." #. type: item -#: guix-git/doc/guix.texi:16225 +#: guix-git/doc/guix.texi:16582 #, no-wrap msgid "@code{timeout} (default: @code{#f})" msgstr "@code{timeout} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16228 +#: guix-git/doc/guix.texi:16585 msgid "When set to an integer value, terminate if no user name could be read within @var{timeout} seconds." msgstr "Ist dies auf einen ganzzahligen Wert gesetzt, wird terminiert, falls kein Benutzername innerhalb von @var{timeout} Sekunden eingelesen werden konnte." #. type: item -#: guix-git/doc/guix.texi:16229 +#: guix-git/doc/guix.texi:16586 #, no-wrap msgid "@code{detect-case?} (default: @code{#f})" msgstr "@code{detect-case?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16235 +#: guix-git/doc/guix.texi:16592 msgid "When set to @code{#t}, turn on support for detecting an uppercase-only terminal. This setting will detect a login name containing only uppercase letters as indicating an uppercase-only terminal and turn on some upper-to-lower case conversions. Note that this will not support Unicode characters." msgstr "Ist dies auf @code{#t} gesetzt, wird Unterstützung für die Erkennung von Terminals aktiviert, die nur Großschreibung beherrschen. Mit dieser Einstellung wird, wenn ein Anmeldename nur aus Großbuchstaben besteht, dieser als Anzeichen dafür aufgefasst, dass das Terminal nur Großbuchstaben beherrscht, und einige Umwandlungen von Groß- in Kleinbuchstaben aktiviert. Beachten Sie, dass dabei @emph{keine} Unicode-Zeichen unterstützt werden." #. type: item -#: guix-git/doc/guix.texi:16236 +#: guix-git/doc/guix.texi:16593 #, no-wrap msgid "@code{wait-cr?} (default: @code{#f})" msgstr "@code{wait-cr?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16241 +#: guix-git/doc/guix.texi:16598 msgid "When set to @code{#t}, wait for the user or modem to send a carriage-return or linefeed character before displaying @file{/etc/issue} or login prompt. This is typically used with the @var{init-string} option." msgstr "Wenn dies auf @code{#t} gesetzt ist, wird gewartet, bis der Benutzer oder das Modem einen Wagenrücklauf („Carriage Return“) oder einen Zeilenvorschub („Linefeed“) absendet, ehe @file{/etc/issue} oder eine Anmeldeaufforderung angezeigt wird. Dies wird typischerweise zusammen mit dem Feld @var{init-string} benutzt." #. type: item -#: guix-git/doc/guix.texi:16242 +#: guix-git/doc/guix.texi:16599 #, no-wrap msgid "@code{no-hints?} (default: @code{#f})" msgstr "@code{no-hints?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16245 +#: guix-git/doc/guix.texi:16602 msgid "When set to @code{#t}, do not print hints about Num, Caps, and Scroll locks." msgstr "Ist es auf @code{#t} gesetzt, werden @emph{keine} Hinweise zu den Feststelltasten Num-Taste, Umschaltsperre („Caps Lock“) und Rollen-Taste („Scroll Lock“) angezeigt." #. type: item -#: guix-git/doc/guix.texi:16246 +#: guix-git/doc/guix.texi:16603 #, no-wrap msgid "@code{no-hostname?} (default: @code{#f})" msgstr "@code{no-hostname?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16249 +#: guix-git/doc/guix.texi:16606 msgid "By default, the hostname is printed. When this option is set to @code{#t}, no hostname will be shown at all." msgstr "Das vorgegebene Verhalten ist, den Rechnernamen auszugeben. Ist dieses Feld auf @code{#t} gesetzt, wird überhaupt kein Rechnername angezeigt." #. type: item -#: guix-git/doc/guix.texi:16250 +#: guix-git/doc/guix.texi:16607 #, no-wrap msgid "@code{long-hostname?} (default: @code{#f})" msgstr "@code{long-hostname?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16254 +#: guix-git/doc/guix.texi:16611 msgid "By default, the hostname is only printed until the first dot. When this option is set to @code{#t}, the fully qualified hostname by @code{gethostname} or @code{getaddrinfo} is shown." msgstr "Das vorgegebene Verhalten ist, den Rechnernamen nur bis zu seinem ersten Punkt anzuzeigen. Ist dieses Feld auf @code{#t} gesetzt, wird der vollständige Rechnername (der „Fully Qualified Hostname“), wie ihn @code{gethostname} oder @code{getaddrinfo} liefern, angezeigt." #. type: item -#: guix-git/doc/guix.texi:16255 +#: guix-git/doc/guix.texi:16612 #, no-wrap msgid "@code{erase-characters} (default: @code{#f})" msgstr "@code{erase-characters} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16258 +#: guix-git/doc/guix.texi:16615 msgid "This option accepts a string of additional characters that should be interpreted as backspace when the user types their login name." msgstr "Dieses Feld akzeptiert eine Zeichenkette aus Zeichen, die auch als Rücktaste (zum Löschen) interpretiert werden sollen, wenn der Benutzer seinen Anmeldenamen eintippt." #. type: item -#: guix-git/doc/guix.texi:16259 +#: guix-git/doc/guix.texi:16616 #, no-wrap msgid "@code{kill-characters} (default: @code{#f})" msgstr "@code{kill-characters} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16263 +#: guix-git/doc/guix.texi:16620 msgid "This option accepts a string that should be interpreted to mean ``ignore all previous characters'' (also called a ``kill'' character) when the user types their login name." msgstr "Dieses Feld akzeptiert eine Zeichenkette aus Zeichen, deren Eingabe als „ignoriere alle vorherigen Zeichen“ interpretiert werden soll (auch „Kill“-Zeichen genannt), wenn der Benutzer seinen Anmeldenamen eintippt." #. type: item -#: guix-git/doc/guix.texi:16264 +#: guix-git/doc/guix.texi:16621 #, no-wrap msgid "@code{chdir} (default: @code{#f})" msgstr "@code{chdir} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16267 +#: guix-git/doc/guix.texi:16624 msgid "This option accepts, as a string, a directory path that will be changed to before login." msgstr "Dieses Feld akzeptiert eine Zeichenkette, die einen Verzeichnispfad angibt, zu dem vor der Anmeldung gewechselt wird." #. type: item -#: guix-git/doc/guix.texi:16268 +#: guix-git/doc/guix.texi:16625 #, no-wrap msgid "@code{delay} (default: @code{#f})" msgstr "@code{delay} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16271 +#: guix-git/doc/guix.texi:16628 msgid "This options accepts, as an integer, the number of seconds to sleep before opening the tty and displaying the login prompt." msgstr "Dieses Feld akzeptiert eine ganze Zahl mit der Anzahl Sekunden, die gewartet werden soll, bis ein tty geöffnet und die Anmeldeaufforderung angezeigt wird." #. type: item -#: guix-git/doc/guix.texi:16272 +#: guix-git/doc/guix.texi:16629 #, no-wrap msgid "@code{nice} (default: @code{#f})" msgstr "@code{nice} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16275 +#: guix-git/doc/guix.texi:16632 msgid "This option accepts, as an integer, the nice value with which to run the @command{login} program." msgstr "Dieses Feld akzeptiert eine ganze Zahl mit dem „nice“-Wert, mit dem das Anmeldeprogramm ausgeführt werden soll." #. type: item -#: guix-git/doc/guix.texi:16276 guix-git/doc/guix.texi:16564 -#: guix-git/doc/guix.texi:17478 guix-git/doc/guix.texi:25181 -#: guix-git/doc/guix.texi:26658 guix-git/doc/guix.texi:29074 -#: guix-git/doc/guix.texi:29869 guix-git/doc/guix.texi:31622 -#: guix-git/doc/guix.texi:34051 +#: guix-git/doc/guix.texi:16633 guix-git/doc/guix.texi:16921 +#: guix-git/doc/guix.texi:17840 guix-git/doc/guix.texi:25543 +#: guix-git/doc/guix.texi:26995 guix-git/doc/guix.texi:29411 +#: guix-git/doc/guix.texi:30234 guix-git/doc/guix.texi:31987 +#: guix-git/doc/guix.texi:34488 #, no-wrap msgid "@code{extra-options} (default: @code{'()})" msgstr "@code{extra-options} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:16279 +#: guix-git/doc/guix.texi:16636 msgid "This option provides an ``escape hatch'' for the user to provide arbitrary command-line arguments to @command{agetty} as a list of strings." msgstr "Dieses Feld ist ein „Notausstieg“, mit dem Nutzer beliebige Befehlszeilenoptionen direkt an @command{agetty} übergeben können. Diese müssen hier als eine Liste von Zeichenketten angegeben werden." #. type: deffn -#: guix-git/doc/guix.texi:16283 +#: guix-git/doc/guix.texi:16640 #, no-wrap msgid "{Scheme Procedure} kmscon-service-type @var{config}" msgstr "{Scheme-Prozedur} kmscon-service-type @var{Konfiguration}" #. type: deffn -#: guix-git/doc/guix.texi:16287 +#: guix-git/doc/guix.texi:16644 msgid "Return a service to run @uref{https://www.freedesktop.org/wiki/Software/kmscon,kmscon} according to @var{config}, a @code{} object, which specifies the tty to run, among other things." msgstr "Liefert einen Dienst, um @uref{https://www.freedesktop.org/wiki/Software/kmscon,kmscon} entsprechend der @var{Konfiguration} auszuführen. Diese ist ein @code{}-Objekt, das unter anderem angibt, auf welchem tty es ausgeführt werden soll." #. type: deftp -#: guix-git/doc/guix.texi:16289 +#: guix-git/doc/guix.texi:16646 #, no-wrap msgid "{Data Type} kmscon-configuration" msgstr "{Datentyp} kmscon-configuration" #. type: deftp -#: guix-git/doc/guix.texi:16292 +#: guix-git/doc/guix.texi:16649 msgid "This is the data type representing the configuration of Kmscon, which implements virtual console log-in." msgstr "Dieser Datentyp repräsentiert die Konfiguration von Kmscon, die das Anmelden auf virtuellen Konsolen ermöglicht." #. type: code{#1} -#: guix-git/doc/guix.texi:16295 +#: guix-git/doc/guix.texi:16652 #, no-wrap msgid "virtual-terminal" msgstr "virtual-terminal" #. type: table -#: guix-git/doc/guix.texi:16297 +#: guix-git/doc/guix.texi:16654 msgid "The name of the console this Kmscon runs on---e.g., @code{\"tty1\"}." msgstr "Der Name der Konsole, auf der diese Kmscon läuft@tie{}— z.B.@: @code{\"tty1\"}." #. type: item -#: guix-git/doc/guix.texi:16298 +#: guix-git/doc/guix.texi:16655 #, no-wrap msgid "@code{login-program} (default: @code{#~(string-append #$shadow \"/bin/login\")})" msgstr "@code{login-program} (Vorgabe: @code{#~(string-append #$shadow \"/bin/login\")})" #. type: table -#: guix-git/doc/guix.texi:16301 +#: guix-git/doc/guix.texi:16658 msgid "A gexp denoting the name of the log-in program. The default log-in program is @command{login} from the Shadow tool suite." msgstr "Ein G-Ausdruck, der den Namen des Anmeldeprogramms angibt. Als Vorgabe wird das Anmeldeprogramm @command{login} aus dem Shadow-Werkzeugsatz verwendet." #. type: item -#: guix-git/doc/guix.texi:16302 +#: guix-git/doc/guix.texi:16659 #, no-wrap msgid "@code{login-arguments} (default: @code{'(\"-p\")})" msgstr "@code{login-arguments} (Vorgabe: @code{'(\"-p\")})" #. type: table -#: guix-git/doc/guix.texi:16304 +#: guix-git/doc/guix.texi:16661 msgid "A list of arguments to pass to @command{login}." msgstr "Eine Liste der Argumente, die an @command{login} übergeben werden sollen." #. type: item -#: guix-git/doc/guix.texi:16309 +#: guix-git/doc/guix.texi:16666 #, no-wrap msgid "@code{hardware-acceleration?} (default: #f)" msgstr "@code{hardware-acceleration?} (Vorgabe: #f)" #. type: table -#: guix-git/doc/guix.texi:16311 +#: guix-git/doc/guix.texi:16668 msgid "Whether to use hardware acceleration." msgstr "Ob Hardware-Beschleunigung verwendet werden soll." #. type: item -#: guix-git/doc/guix.texi:16312 +#: guix-git/doc/guix.texi:16669 #, no-wrap msgid "@code{font-engine} (default: @code{\"pango\"})" msgstr "@code{font-engine} (Vorgabe: @code{\"pango\"})" #. type: table -#: guix-git/doc/guix.texi:16314 +#: guix-git/doc/guix.texi:16671 msgid "Font engine used in Kmscon." msgstr "Welcher Schriftartentreiber in Kmscon benutzt wird." #. type: item -#: guix-git/doc/guix.texi:16315 +#: guix-git/doc/guix.texi:16672 #, no-wrap msgid "@code{font-size} (default: @code{12})" msgstr "@code{font-size} (Vorgabe: @code{12})" #. type: table -#: guix-git/doc/guix.texi:16317 +#: guix-git/doc/guix.texi:16674 msgid "Font size used in Kmscon." msgstr "Welche Schriftgröße in Kmscon benutzt wird." #. type: table -#: guix-git/doc/guix.texi:16321 +#: guix-git/doc/guix.texi:16678 msgid "If this is @code{#f}, Kmscon uses the default keyboard layout---usually US English (``qwerty'') for a 105-key PC keyboard." msgstr "Wenn es auf @code{#f} gesetzt ist, benutzt Kmscon die voreingestellte Tastaturbelegung, also normalerweise US English („QWERTY“) für eine PC-Tastatur mit 105 Tasten." #. type: table -#: guix-git/doc/guix.texi:16325 +#: guix-git/doc/guix.texi:16682 msgid "Otherwise this must be a @code{keyboard-layout} object specifying the keyboard layout. @xref{Keyboard Layout}, for more information on how to specify the keyboard layout." msgstr "Andernfalls muss hier ein @code{keyboard-layout}-Objekt stehen, das angibt, welche Tastaturbelegung aktiv sein soll. Siehe @ref{Keyboard Layout} für mehr Informationen, wie die Tastaturbelegung angegeben werden kann." #. type: item -#: guix-git/doc/guix.texi:16326 +#: guix-git/doc/guix.texi:16683 #, no-wrap msgid "@code{kmscon} (default: @var{kmscon})" msgstr "@code{kmscon} (Vorgabe: @var{kmscon})" #. type: table -#: guix-git/doc/guix.texi:16328 +#: guix-git/doc/guix.texi:16685 msgid "The Kmscon package to use." msgstr "Das Kmscon-Paket, das benutzt werden soll." #. type: cindex -#: guix-git/doc/guix.texi:16332 +#: guix-git/doc/guix.texi:16689 #, no-wrap msgid "name service cache daemon" msgstr "Name Service Cache Daemon" #. type: cindex -#: guix-git/doc/guix.texi:16333 +#: guix-git/doc/guix.texi:16690 #, no-wrap msgid "nscd" msgstr "nscd" #. type: deffn -#: guix-git/doc/guix.texi:16334 +#: guix-git/doc/guix.texi:16691 #, no-wrap msgid "{Scheme Procedure} nscd-service [@var{config}] [#:glibc glibc] @" msgstr "{Scheme-Prozedur} nscd-service [@var{Konfiguration}] [#:glibc glibc] @" #. type: deffn -#: guix-git/doc/guix.texi:16339 +#: guix-git/doc/guix.texi:16696 msgid "[#:name-services '()] Return a service that runs the libc name service cache daemon (nscd) with the given @var{config}---an @code{} object. @xref{Name Service Switch}, for an example." msgstr "[#:name-services '()] Liefert einen Dienst, der den Name Service Cache Daemon (nscd) von libc mit der angegebenen @var{Konfiguration} ausführt@tie{}— diese muss ein @code{}-Objekt sein. Siehe @ref{Name Service Switch} für ein Beispiel." #. type: deffn -#: guix-git/doc/guix.texi:16341 +#: guix-git/doc/guix.texi:16698 msgid "For convenience, the Shepherd service for nscd provides the following actions:" msgstr "Der Einfachheit halber bietet der Shepherd-Dienst für nscd die folgenden Aktionen an:" #. type: item -#: guix-git/doc/guix.texi:16343 +#: guix-git/doc/guix.texi:16700 #, no-wrap msgid "invalidate" msgstr "invalidate" #. type: cindex -#: guix-git/doc/guix.texi:16344 +#: guix-git/doc/guix.texi:16701 #, no-wrap msgid "cache invalidation, nscd" msgstr "Zwischenspeicher ungültig machen, nscd" #. type: cindex -#: guix-git/doc/guix.texi:16345 +#: guix-git/doc/guix.texi:16702 #, no-wrap msgid "nscd, cache invalidation" msgstr "nscd, Ungültigmachen des Zwischenspeichers" #. type: table -#: guix-git/doc/guix.texi:16347 +#: guix-git/doc/guix.texi:16704 msgid "This invalidate the given cache. For instance, running:" msgstr "Dies macht den angegebenen Zwischenspeicher ungültig. Wenn Sie zum Beispiel:" #. type: example -#: guix-git/doc/guix.texi:16350 +#: guix-git/doc/guix.texi:16707 #, no-wrap msgid "herd invalidate nscd hosts\n" msgstr "herd invalidate nscd hosts\n" #. type: table -#: guix-git/doc/guix.texi:16354 +#: guix-git/doc/guix.texi:16711 msgid "invalidates the host name lookup cache of nscd." msgstr "ausführen, wird der Zwischenspeicher für die Auflösung von Rechnernamen (von „Host“-Namen) des nscd ungültig." #. type: item -#: guix-git/doc/guix.texi:16355 +#: guix-git/doc/guix.texi:16712 #, no-wrap msgid "statistics" msgstr "statistics" #. type: table -#: guix-git/doc/guix.texi:16358 +#: guix-git/doc/guix.texi:16715 msgid "Running @command{herd statistics nscd} displays information about nscd usage and caches." msgstr "Wenn Sie @command{herd statistics nscd} ausführen, werden Ihnen Informationen angezeigt, welche Ihnen Informationen über den nscd-Zustand und die Zwischenspeicher angezeigt." #. type: defvr -#: guix-git/doc/guix.texi:16362 +#: guix-git/doc/guix.texi:16719 #, no-wrap msgid "{Scheme Variable} %nscd-default-configuration" msgstr "{Scheme-Variable} %nscd-default-configuration" #. type: defvr -#: guix-git/doc/guix.texi:16366 +#: guix-git/doc/guix.texi:16723 msgid "This is the default @code{} value (see below) used by @code{nscd-service}. It uses the caches defined by @code{%nscd-default-caches}; see below." msgstr "Dies ist der vorgegebene Wert für die @code{} (siehe unten), die @code{nscd-service} benutzt. Die Konfiguration benutzt die Zwischenspeicher, die in @code{%nscd-default-caches} definiert sind; siehe unten." #. type: deftp -#: guix-git/doc/guix.texi:16368 +#: guix-git/doc/guix.texi:16725 #, no-wrap msgid "{Data Type} nscd-configuration" msgstr "{Datentyp} nscd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:16371 +#: guix-git/doc/guix.texi:16728 msgid "This is the data type representing the name service cache daemon (nscd) configuration." msgstr "Dieser Datentyp repräsentiert die Konfiguration des Name Service Caching Daemon (kurz „nscd“)." #. type: item -#: guix-git/doc/guix.texi:16374 +#: guix-git/doc/guix.texi:16731 #, no-wrap msgid "@code{name-services} (default: @code{'()})" msgstr "@code{name-services} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:16377 +#: guix-git/doc/guix.texi:16734 msgid "List of packages denoting @dfn{name services} that must be visible to the nscd---e.g., @code{(list @var{nss-mdns})}." msgstr "Liste von Paketen, die @dfn{Namensdienste} bezeichnen, die für den nscd sichtbar sein müssen, z.B.@: @code{(list @var{nss-mdns})}." #. type: item -#: guix-git/doc/guix.texi:16378 +#: guix-git/doc/guix.texi:16735 #, no-wrap msgid "@code{glibc} (default: @var{glibc})" msgstr "@code{glibc} (Vorgabe: @var{glibc})" #. type: table -#: guix-git/doc/guix.texi:16381 +#: guix-git/doc/guix.texi:16738 msgid "Package object denoting the GNU C Library providing the @command{nscd} command." msgstr "Ein Paket-Objekt, das die GNU-C-Bibliothek angibt, woraus der @command{nscd}-Befehl genommen werden soll." #. type: item -#: guix-git/doc/guix.texi:16382 +#: guix-git/doc/guix.texi:16739 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/nscd.log\"})" msgstr "@code{log-file} (Vorgabe: @code{\"/var/log/nscd.log\"})" #. type: table -#: guix-git/doc/guix.texi:16385 +#: guix-git/doc/guix.texi:16742 msgid "Name of the nscd log file. This is where debugging output goes when @code{debug-level} is strictly positive." msgstr "Name der nscd-Protokolldatei. Hierhin werden Ausgaben zur Fehlersuche geschrieben, falls @code{debug-level} echt positiv ist." #. type: item -#: guix-git/doc/guix.texi:16386 +#: guix-git/doc/guix.texi:16743 #, no-wrap msgid "@code{debug-level} (default: @code{0})" msgstr "@code{debug-level} (Vorgabe: @code{0})" #. type: table -#: guix-git/doc/guix.texi:16389 +#: guix-git/doc/guix.texi:16746 msgid "Integer denoting the debugging levels. Higher numbers mean that more debugging output is logged." msgstr "Eine ganze Zahl, die den Detailgrad der Ausgabe zur Fehlersuche angibt. Größere Zahlen bewirken eine ausführlichere Ausgabe." #. type: item -#: guix-git/doc/guix.texi:16390 +#: guix-git/doc/guix.texi:16747 #, no-wrap msgid "@code{caches} (default: @code{%nscd-default-caches})" msgstr "@code{caches} (Vorgabe: @code{%nscd-default-caches})" #. type: table -#: guix-git/doc/guix.texi:16393 +#: guix-git/doc/guix.texi:16750 msgid "List of @code{} objects denoting things to be cached; see below." msgstr "Liste der @code{}-Objekte, die repräsentieren, was alles zwischengespeichert werden soll; siehe unten." #. type: deftp -#: guix-git/doc/guix.texi:16397 +#: guix-git/doc/guix.texi:16754 #, no-wrap msgid "{Data Type} nscd-cache" msgstr "{Datentyp} nscd-cache" #. type: deftp -#: guix-git/doc/guix.texi:16399 +#: guix-git/doc/guix.texi:16756 msgid "Data type representing a cache database of nscd and its parameters." msgstr "Ein Datentyp, der eine Zwischenspeicher-Datenbank von nscd mitsamt ihren Parametern definiert." #. type: cindex -#: guix-git/doc/guix.texi:16402 guix-git/doc/guix.texi:21071 +#: guix-git/doc/guix.texi:16759 guix-git/doc/guix.texi:21433 #, no-wrap msgid "database" msgstr "Datenbank" #. type: table -#: guix-git/doc/guix.texi:16407 +#: guix-git/doc/guix.texi:16764 msgid "This is a symbol representing the name of the database to be cached. Valid values are @code{passwd}, @code{group}, @code{hosts}, and @code{services}, which designate the corresponding NSS database (@pxref{NSS Basics,,, libc, The GNU C Library Reference Manual})." msgstr "Dies ist ein Symbol, was den Namen der Datenbank repräsentiert, die zwischengespeichert werden soll. Gültige Werte sind @code{passwd}, @code{group}, @code{hosts} und @code{services}, womit jeweils die entsprechende NSS-Datenbank bezeichnet wird (siehe @ref{NSS Basics,,, libc, Referenzhandbuch der GNU-C-Bibliothek})." #. type: code{#1} -#: guix-git/doc/guix.texi:16408 +#: guix-git/doc/guix.texi:16765 #, no-wrap msgid "positive-time-to-live" msgstr "positive-time-to-live" #. type: itemx -#: guix-git/doc/guix.texi:16409 +#: guix-git/doc/guix.texi:16766 #, no-wrap msgid "@code{negative-time-to-live} (default: @code{20})" msgstr "@code{negative-time-to-live} (Vorgabe: @code{20})" #. type: table -#: guix-git/doc/guix.texi:16412 +#: guix-git/doc/guix.texi:16769 msgid "A number representing the number of seconds during which a positive or negative lookup result remains in cache." msgstr "Eine Zahl, die für die Anzahl an Sekunden steht, die ein erfolgreiches (positives) oder erfolgloses (negatives) Nachschlageresultat im Zwischenspeicher verbleibt." #. type: item -#: guix-git/doc/guix.texi:16413 +#: guix-git/doc/guix.texi:16770 #, no-wrap msgid "@code{check-files?} (default: @code{#t})" msgstr "@code{check-files?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:16416 +#: guix-git/doc/guix.texi:16773 msgid "Whether to check for updates of the files corresponding to @var{database}." msgstr "Ob auf Änderungen an den der @var{database} entsprechenden Dateien reagiert werden soll." #. type: table -#: guix-git/doc/guix.texi:16420 +#: guix-git/doc/guix.texi:16777 msgid "For instance, when @var{database} is @code{hosts}, setting this flag instructs nscd to check for updates in @file{/etc/hosts} and to take them into account." msgstr "Wenn @var{database} zum Beispiel @code{hosts} ist, wird, wenn dieses Feld gesetzt ist, nscd Änderungen an @file{/etc/hosts} beobachten und berücksichtigen." #. type: item -#: guix-git/doc/guix.texi:16421 +#: guix-git/doc/guix.texi:16778 #, no-wrap msgid "@code{persistent?} (default: @code{#t})" msgstr "@code{persistent?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:16423 +#: guix-git/doc/guix.texi:16780 msgid "Whether the cache should be stored persistently on disk." msgstr "Ob der Zwischenspeicher dauerhaft auf der Platte gespeichert werden soll." #. type: item -#: guix-git/doc/guix.texi:16424 +#: guix-git/doc/guix.texi:16781 #, no-wrap msgid "@code{shared?} (default: @code{#t})" msgstr "@code{shared?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:16426 +#: guix-git/doc/guix.texi:16783 msgid "Whether the cache should be shared among users." msgstr "Ob der Zwischenspeicher zwischen den Nutzern geteilt werden soll." #. type: item -#: guix-git/doc/guix.texi:16427 +#: guix-git/doc/guix.texi:16784 #, no-wrap msgid "@code{max-database-size} (default: 32@tie{}MiB)" msgstr "@code{max-database-size} (Vorgabe: 32@tie{}MiB)" #. type: table -#: guix-git/doc/guix.texi:16429 +#: guix-git/doc/guix.texi:16786 msgid "Maximum size in bytes of the database cache." msgstr "Die Maximalgröße des Datenbank-Zwischenspeichers in Bytes." #. type: defvr -#: guix-git/doc/guix.texi:16436 +#: guix-git/doc/guix.texi:16793 #, no-wrap msgid "{Scheme Variable} %nscd-default-caches" msgstr "{Scheme-Variable} %nscd-default-caches" #. type: defvr -#: guix-git/doc/guix.texi:16439 +#: guix-git/doc/guix.texi:16796 msgid "List of @code{} objects used by default by @code{nscd-configuration} (see above)." msgstr "Liste von @code{}-Objekten, die von der vorgegebenen @code{nscd-configuration} benutzt werden (siehe oben)." #. type: defvr -#: guix-git/doc/guix.texi:16445 +#: guix-git/doc/guix.texi:16802 msgid "It enables persistent and aggressive caching of service and host name lookups. The latter provides better host name lookup performance, resilience in the face of unreliable name servers, and also better privacy---often the result of host name lookups is in local cache, so external name servers do not even need to be queried." msgstr "Damit wird dauerhaftes und aggressives Zwischenspeichern beim Nachschlagen von Dienst- und Rechnernamen („Host“-Namen) aktiviert. Letzteres verbessert die Leistungsfähigkeit beim Nachschlagen von Rechnernamen, sorgt für mehr Widerstandsfähigkeit gegenüber unverlässlichen Namens-Servern und bietet außerdem einen besseren Datenschutz@tie{}— oftmals befindet sich das Ergebnis einer Anfrage nach einem Rechnernamen bereits im lokalen Zwischenspeicher und externe Namens-Server müssen nicht miteinbezogen werden." #. type: anchor{#1} -#: guix-git/doc/guix.texi:16448 +#: guix-git/doc/guix.texi:16805 msgid "syslog-configuration-type" msgstr "syslog-configuration-type" #. type: cindex -#: guix-git/doc/guix.texi:16448 guix-git/doc/guix.texi:16464 +#: guix-git/doc/guix.texi:16805 guix-git/doc/guix.texi:16821 #, no-wrap msgid "syslog" msgstr "syslog" #. type: cindex -#: guix-git/doc/guix.texi:16449 guix-git/doc/guix.texi:17035 +#: guix-git/doc/guix.texi:16806 guix-git/doc/guix.texi:17397 #, no-wrap msgid "logging" msgstr "Protokollierung" #. type: deftp -#: guix-git/doc/guix.texi:16450 +#: guix-git/doc/guix.texi:16807 #, no-wrap msgid "{Data Type} syslog-configuration" msgstr "{Datentyp} syslog-configuration" #. type: deftp -#: guix-git/doc/guix.texi:16452 +#: guix-git/doc/guix.texi:16809 msgid "This data type represents the configuration of the syslog daemon." msgstr "Dieser Datentyp repräsentiert die Konfiguration des syslog-Daemons." #. type: item -#: guix-git/doc/guix.texi:16454 +#: guix-git/doc/guix.texi:16811 #, no-wrap msgid "@code{syslogd} (default: @code{#~(string-append #$inetutils \"/libexec/syslogd\")})" msgstr "@code{syslogd} (Vorgabe: @code{#~(string-append #$inetutils \"/libexec/syslogd\")})" #. type: table -#: guix-git/doc/guix.texi:16456 +#: guix-git/doc/guix.texi:16813 msgid "The syslog daemon to use." msgstr "Welcher Syslog-Daemon benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:16457 +#: guix-git/doc/guix.texi:16814 #, no-wrap msgid "@code{config-file} (default: @code{%default-syslog.conf})" msgstr "@code{config-file} (Vorgabe: @code{%default-syslog.conf})" #. type: table -#: guix-git/doc/guix.texi:16459 +#: guix-git/doc/guix.texi:16816 msgid "The syslog configuration file to use." msgstr "Die zu benutzende syslog-Konfigurationsdatei." #. type: anchor{#1} -#: guix-git/doc/guix.texi:16464 +#: guix-git/doc/guix.texi:16821 msgid "syslog-service" msgstr "syslog-service" #. type: deffn -#: guix-git/doc/guix.texi:16465 +#: guix-git/doc/guix.texi:16822 #, no-wrap msgid "{Scheme Procedure} syslog-service @var{config}" msgstr "{Scheme-Prozedur} syslog-service @var{Konfiguration}" #. type: deffn -#: guix-git/doc/guix.texi:16467 +#: guix-git/doc/guix.texi:16824 msgid "Return a service that runs a syslog daemon according to @var{config}." msgstr "Liefert einen Dienst, der einen syslog-Daemon entsprechend der @var{Konfiguration} ausführt." #. type: deffn -#: guix-git/doc/guix.texi:16470 +#: guix-git/doc/guix.texi:16827 msgid "@xref{syslogd invocation,,, inetutils, GNU Inetutils}, for more information on the configuration file syntax." msgstr "Siehe @ref{syslogd invocation,,, inetutils, GNU Inetutils} für weitere Informationen über die Syntax der Konfiguration." #. type: defvr -#: guix-git/doc/guix.texi:16472 +#: guix-git/doc/guix.texi:16829 #, no-wrap msgid "{Scheme Variable} guix-service-type" msgstr "{Scheme-Variable} guix-service-type" #. type: defvr -#: guix-git/doc/guix.texi:16476 +#: guix-git/doc/guix.texi:16833 msgid "This is the type of the service that runs the build daemon, @command{guix-daemon} (@pxref{Invoking guix-daemon}). Its value must be a @code{guix-configuration} record as described below." msgstr "Dies ist der Typ für den Dienst, der den Erstellungs-Daemon @command{guix-daemon} ausführt (siehe @ref{Invoking guix-daemon}). Als Wert muss ein @code{guix-configuration}-Verbundsobjekt verwendet werden, wie unten beschrieben." #. type: anchor{#1} -#: guix-git/doc/guix.texi:16479 +#: guix-git/doc/guix.texi:16836 msgid "guix-configuration-type" msgstr "guix-configuration-type" #. type: deftp -#: guix-git/doc/guix.texi:16479 +#: guix-git/doc/guix.texi:16836 #, no-wrap msgid "{Data Type} guix-configuration" msgstr "{Datentyp} guix-configuration" #. type: deftp -#: guix-git/doc/guix.texi:16482 +#: guix-git/doc/guix.texi:16839 msgid "This data type represents the configuration of the Guix build daemon. @xref{Invoking guix-daemon}, for more information." msgstr "Dieser Datentyp repräsentiert die Konfiguration des Erstellungs-Daemons von Guix. Siehe @ref{Invoking guix-daemon} für weitere Informationen." #. type: item -#: guix-git/doc/guix.texi:16484 +#: guix-git/doc/guix.texi:16841 #, no-wrap msgid "@code{guix} (default: @var{guix})" msgstr "@code{guix} (Vorgabe: @var{guix})" #. type: table -#: guix-git/doc/guix.texi:16486 guix-git/doc/guix.texi:16763 +#: guix-git/doc/guix.texi:16843 guix-git/doc/guix.texi:17120 msgid "The Guix package to use." msgstr "Das zu verwendende Guix-Paket." #. type: item -#: guix-git/doc/guix.texi:16487 +#: guix-git/doc/guix.texi:16844 #, no-wrap msgid "@code{build-group} (default: @code{\"guixbuild\"})" msgstr "@code{build-group} (Vorgabe: @code{\"guixbuild\"})" #. type: table -#: guix-git/doc/guix.texi:16489 +#: guix-git/doc/guix.texi:16846 msgid "Name of the group for build user accounts." msgstr "Der Name der Gruppe, zu der die Erstellungs-Benutzerkonten gehören." #. type: item -#: guix-git/doc/guix.texi:16490 +#: guix-git/doc/guix.texi:16847 #, no-wrap msgid "@code{build-accounts} (default: @code{10})" msgstr "@code{build-accounts} (Vorgabe: @code{10})" #. type: table -#: guix-git/doc/guix.texi:16492 +#: guix-git/doc/guix.texi:16849 msgid "Number of build user accounts to create." msgstr "Die Anzahl zu erzeugender Erstellungs-Benutzerkonten." #. type: item -#: guix-git/doc/guix.texi:16493 +#: guix-git/doc/guix.texi:16850 #, no-wrap msgid "@code{authorize-key?} (default: @code{#t})" msgstr "@code{authorize-key?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:16500 +#: guix-git/doc/guix.texi:16857 msgid "Whether to authorize the substitute keys listed in @code{authorized-keys}---by default that of @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} (@pxref{Substitutes})." msgstr "Ob die unter @code{authorized-keys} aufgelisteten Substitutschlüssel autorisiert werden sollen@tie{}— vorgegeben ist, den von @code{@value{SUBSTITUTE-SERVER-1}} und @code{@value{SUBSTITUTE-SERVER-2}} zu autorisieren (siehe @ref{Substitutes})." #. type: table -#: guix-git/doc/guix.texi:16506 +#: guix-git/doc/guix.texi:16863 msgid "When @code{authorize-key?} is true, @file{/etc/guix/acl} cannot be changed by invoking @command{guix archive --authorize}. You must instead adjust @code{guix-configuration} as you wish and reconfigure the system. This ensures that your operating system configuration file is self-contained." msgstr "Wenn @code{authorize-key?} wahr ist, kann @file{/etc/guix/acl} durch einen Aufruf von @command{guix archive --authorize} @emph{nicht} verändert werden. Sie müssen stattdessen die @code{guix-configuration} wie gewünscht anpassen und das System rekonfigurieren. Dadurch wird sichergestellt, dass die Betriebssystemkonfigurationsdatei eigenständig ist." #. type: quotation -#: guix-git/doc/guix.texi:16513 +#: guix-git/doc/guix.texi:16870 msgid "When booting or reconfiguring to a system where @code{authorize-key?} is true, the existing @file{/etc/guix/acl} file is backed up as @file{/etc/guix/acl.bak} if it was determined to be a manually modified file. This is to facilitate migration from earlier versions, which allowed for in-place modifications to @file{/etc/guix/acl}." msgstr "Wenn Sie ein System mit auf wahr gesetztem @code{authorize-key?} starten oder dahin rekonfigurieren, wird eine Sicherungskopie der bestehenden @file{/etc/guix/acl} als @file{/etc/guix/acl.bak} angelegt, wenn festgestellt wurde, dass jemand die Datei von Hand verändert hatte. Das passiert, um die Migration von früheren Versionen zu erleichtern, als eine direkte Modifikation der Datei @file{/etc/guix/acl}, „in place“, noch möglich war." #. type: vindex -#: guix-git/doc/guix.texi:16515 +#: guix-git/doc/guix.texi:16872 #, no-wrap msgid "%default-authorized-guix-keys" msgstr "%default-authorized-guix-keys" #. type: item -#: guix-git/doc/guix.texi:16516 +#: guix-git/doc/guix.texi:16873 #, no-wrap msgid "@code{authorized-keys} (default: @code{%default-authorized-guix-keys})" msgstr "@code{authorized-keys} (Vorgabe: @code{%default-authorized-guix-keys})" #. type: table -#: guix-git/doc/guix.texi:16522 +#: guix-git/doc/guix.texi:16879 msgid "The list of authorized key files for archive imports, as a list of string-valued gexps (@pxref{Invoking guix archive}). By default, it contains that of @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} (@pxref{Substitutes}). See @code{substitute-urls} below for an example on how to change it." msgstr "Die Liste der Dateien mit autorisierten Schlüsseln, d.h.@: eine Liste von Zeichenketten als G-Ausdrücke (siehe @ref{Invoking guix archive}). Der vorgegebene Inhalt ist der Schlüssel von @code{@value{SUBSTITUTE-SERVER-1}} und @code{@value{SUBSTITUTE-SERVER-2}} (siehe @ref{Substitutes}). Siehe im Folgenden @code{substitute-urls} für ein Beispiel, wie Sie sie ändern können." #. type: item -#: guix-git/doc/guix.texi:16523 +#: guix-git/doc/guix.texi:16880 #, no-wrap msgid "@code{use-substitutes?} (default: @code{#t})" msgstr "@code{use-substitutes?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:16525 +#: guix-git/doc/guix.texi:16882 msgid "Whether to use substitutes." msgstr "Ob Substitute benutzt werden sollen." #. type: item -#: guix-git/doc/guix.texi:16526 guix-git/doc/guix.texi:29171 +#: guix-git/doc/guix.texi:16883 guix-git/doc/guix.texi:29508 #, no-wrap msgid "@code{substitute-urls} (default: @code{%default-substitute-urls})" msgstr "@code{substitute-urls} (Vorgabe: @code{%default-substitute-urls})" #. type: table -#: guix-git/doc/guix.texi:16528 guix-git/doc/guix.texi:29173 +#: guix-git/doc/guix.texi:16885 guix-git/doc/guix.texi:29510 msgid "The list of URLs where to look for substitutes by default." msgstr "Die Liste der URLs, auf denen nach Substituten gesucht wird, wenn nicht anders angegeben." #. type: table -#: guix-git/doc/guix.texi:16535 +#: guix-git/doc/guix.texi:16892 msgid "Suppose you would like to fetch substitutes from @code{guix.example.org} in addition to @code{@value{SUBSTITUTE-SERVER-1}}. You will need to do two things: (1) add @code{guix.example.org} to @code{substitute-urls}, and (2) authorize its signing key, having done appropriate checks (@pxref{Substitute Server Authorization}). The configuration below does exactly that:" msgstr "Wenn Sie zum Beispiel gerne Substitute von @code{guix.example.org} zusätzlich zu @code{@value{SUBSTITUTE-SERVER-1}} laden würden, müssen Sie zwei Dinge tun: Erstens @code{guix.example.org} zu den @code{substitute-urls} hinzufügen und zweitens dessen Signierschlüssel autorisieren, nachdem Sie ihn hinreichend geprüft haben (siehe @ref{Substitute Server Authorization}). Mit der Konfiguration unten wird das erledigt:" #. type: lisp -#: guix-git/doc/guix.texi:16544 +#: guix-git/doc/guix.texi:16901 #, no-wrap msgid "" "(guix-configuration\n" @@ -30189,150 +30838,151 @@ msgstr "" " %default-authorized-guix-keys)))\n" #. type: table -#: guix-git/doc/guix.texi:16549 +#: guix-git/doc/guix.texi:16906 msgid "This example assumes that the file @file{./guix.example.org-key.pub} contains the public key that @code{guix.example.org} uses to sign substitutes." msgstr "In diesem Beispiel wird angenommen, dass die Datei @file{./guix.example.org-key.pub} den öffentlichen Schlüssel enthält, mit dem auf @code{guix.example.org} Substitute signiert werden." #. type: item -#: guix-git/doc/guix.texi:16550 +#: guix-git/doc/guix.texi:16907 #, no-wrap msgid "@code{max-silent-time} (default: @code{0})" msgstr "@code{max-silent-time} (Vorgabe: @code{0})" #. type: itemx -#: guix-git/doc/guix.texi:16551 +#: guix-git/doc/guix.texi:16908 #, no-wrap msgid "@code{timeout} (default: @code{0})" msgstr "@code{timeout} (Vorgabe: @code{0})" #. type: table -#: guix-git/doc/guix.texi:16555 +#: guix-git/doc/guix.texi:16912 msgid "The number of seconds of silence and the number of seconds of activity, respectively, after which a build process times out. A value of zero disables the timeout." msgstr "Die Anzahl an Sekunden, die jeweils nichts in die Ausgabe geschrieben werden darf bzw. die es insgesamt dauern darf, bis ein Erstellungsprozess abgebrochen wird. Beim Wert null wird nie abgebrochen." #. type: item -#: guix-git/doc/guix.texi:16556 -#, no-wrap -msgid "@code{log-compression} (default: @code{'bzip2})" +#: guix-git/doc/guix.texi:16913 +#, fuzzy, no-wrap +#| msgid "@code{log-compression} (default: @code{'bzip2})" +msgid "@code{log-compression} (default: @code{'gzip})" msgstr "@code{log-compression} (Vorgabe: @code{'bzip2})" #. type: table -#: guix-git/doc/guix.texi:16559 +#: guix-git/doc/guix.texi:16916 msgid "The type of compression used for build logs---one of @code{gzip}, @code{bzip2}, or @code{none}." msgstr "Die für Erstellungsprotokolle zu benutzende Kompressionsmethode@tie{}— entweder @code{gzip}, @code{bzip2} oder @code{none}." #. type: item -#: guix-git/doc/guix.texi:16560 +#: guix-git/doc/guix.texi:16917 #, no-wrap msgid "@code{discover?} (default: @code{#f})" msgstr "@code{discover?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16566 +#: guix-git/doc/guix.texi:16923 msgid "List of extra command-line options for @command{guix-daemon}." msgstr "Eine Liste zusätzlicher Befehlszeilenoptionen zu @command{guix-daemon}." #. type: item -#: guix-git/doc/guix.texi:16567 +#: guix-git/doc/guix.texi:16924 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/guix-daemon.log\"})" msgstr "@code{log-file} (Vorgabe: @code{\"/var/log/guix-daemon.log\"})" #. type: table -#: guix-git/doc/guix.texi:16570 +#: guix-git/doc/guix.texi:16927 msgid "File where @command{guix-daemon}'s standard output and standard error are written." msgstr "Die Datei, in die die Standardausgabe und die Standardfehlerausgabe von @command{guix-daemon} geschrieben werden." #. type: cindex -#: guix-git/doc/guix.texi:16571 +#: guix-git/doc/guix.texi:16928 #, no-wrap msgid "HTTP proxy, for @code{guix-daemon}" msgstr "HTTP-Proxy, für @code{guix-daemon}" #. type: cindex -#: guix-git/doc/guix.texi:16572 +#: guix-git/doc/guix.texi:16929 #, no-wrap msgid "proxy, for @code{guix-daemon} HTTP access" msgstr "Proxy, für HTTP-Zugriffe durch @code{guix-daemon}" #. type: item -#: guix-git/doc/guix.texi:16573 +#: guix-git/doc/guix.texi:16930 #, no-wrap msgid "@code{http-proxy} (default: @code{#f})" msgstr "@code{http-proxy} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16576 +#: guix-git/doc/guix.texi:16933 msgid "The URL of the HTTP and HTTPS proxy used for downloading fixed-output derivations and substitutes." msgstr "Die URL des für das Herunterladen von Ableitungen mit fester Ausgabe und von Substituten zu verwendenden HTTP- und HTTPS-Proxys." #. type: table -#: guix-git/doc/guix.texi:16579 +#: guix-git/doc/guix.texi:16936 msgid "It is also possible to change the daemon's proxy at run time through the @code{set-http-proxy} action, which restarts it:" msgstr "Sie können den für den Daemon benutzten Proxy auch zur Laufzeit ändern, indem Sie die @code{set-http-proxy}-Aktion aufrufen, wodurch er neu gestartet wird." #. type: example -#: guix-git/doc/guix.texi:16582 +#: guix-git/doc/guix.texi:16939 #, no-wrap msgid "herd set-http-proxy guix-daemon http://localhost:8118\n" msgstr "herd set-http-proxy guix-daemon http://localhost:8118\n" #. type: table -#: guix-git/doc/guix.texi:16585 +#: guix-git/doc/guix.texi:16942 msgid "To clear the proxy settings, run:" msgstr "Um die Proxy-Einstellungen zu löschen, führen Sie dies aus:" #. type: example -#: guix-git/doc/guix.texi:16588 +#: guix-git/doc/guix.texi:16945 #, no-wrap msgid "herd set-http-proxy guix-daemon\n" msgstr "herd set-http-proxy guix-daemon\n" #. type: item -#: guix-git/doc/guix.texi:16590 +#: guix-git/doc/guix.texi:16947 #, no-wrap msgid "@code{tmpdir} (default: @code{#f})" msgstr "@code{tmpdir} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16592 +#: guix-git/doc/guix.texi:16949 msgid "A directory path where the @command{guix-daemon} will perform builds." msgstr "Ein Verzeichnispfad, der angibt, wo @command{guix-daemon} seine Erstellungen durchführt." #. type: deffn -#: guix-git/doc/guix.texi:16596 +#: guix-git/doc/guix.texi:16953 #, no-wrap msgid "{Scheme Procedure} udev-service [#:udev @var{eudev} #:rules @code{'()}]" msgstr "{Scheme-Prozedur} udev-service [#:udev @var{eudev} #:rules @code{'()}]" #. type: deffn -#: guix-git/doc/guix.texi:16602 +#: guix-git/doc/guix.texi:16959 msgid "Run @var{udev}, which populates the @file{/dev} directory dynamically. udev rules can be provided as a list of files through the @var{rules} variable. The procedures @code{udev-rule}, @code{udev-rules-service} and @code{file->udev-rule} from @code{(gnu services base)} simplify the creation of such rule files." msgstr "Führt @var{udev} aus, was zur Laufzeit Gerätedateien ins Verzeichnis @file{/dev} einfügt. udev-Regeln können über die @var{rules}-Variable als eine Liste von Dateien übergeben werden. Die Prozeduren @code{udev-rule}, @code{udev-rules-service} und @code{file->udev-rule} aus @code{(gnu services base)} vereinfachen die Erstellung einer solchen Regeldatei." #. type: deffn -#: guix-git/doc/guix.texi:16605 +#: guix-git/doc/guix.texi:16962 msgid "The @command{herd rules udev} command, as root, returns the name of the directory containing all the active udev rules." msgstr "Der Befehl @command{herd rules udev} liefert, wenn er als Administratornutzer „root“ ausgeführt wird, Namen und Verzeichnis von allen aktiven udev-Regeln." #. type: deffn -#: guix-git/doc/guix.texi:16607 +#: guix-git/doc/guix.texi:16964 #, no-wrap msgid "{Scheme Procedure} udev-rule [@var{file-name} @var{contents}]" msgstr "{Scheme-Prozedur} udev-rule [@var{Dateiname} @var{Inhalt}]" #. type: deffn -#: guix-git/doc/guix.texi:16610 +#: guix-git/doc/guix.texi:16967 msgid "Return a udev-rule file named @var{file-name} containing the rules defined by the @var{contents} literal." msgstr "Liefert eine udev-Regeldatei mit dem angegebenen @var{Dateiname}n, in der die vom Literal @var{Inhalt} definierten Regeln stehen." #. type: deffn -#: guix-git/doc/guix.texi:16614 +#: guix-git/doc/guix.texi:16971 msgid "In the following example, a rule for a USB device is defined to be stored in the file @file{90-usb-thing.rules}. The rule runs a script upon detecting a USB device with a given product identifier." msgstr "Im folgenden Beispiel wird eine Regel für ein USB-Gerät definiert und in der Datei @file{90-usb-ding.rules} gespeichert. Mit der Regel wird ein Skript ausgeführt, sobald ein USB-Gerät mit der angegebenen Produktkennung erkannt wird." #. type: lisp -#: guix-git/doc/guix.texi:16622 +#: guix-git/doc/guix.texi:16979 #, no-wrap msgid "" "(define %example-udev-rule\n" @@ -30350,23 +31000,23 @@ msgstr "" " \"RUN+=\\\"/pfad/zum/skript\\\"\")))\n" #. type: deffn -#: guix-git/doc/guix.texi:16625 +#: guix-git/doc/guix.texi:16982 #, no-wrap msgid "{Scheme Procedure} udev-rules-service [@var{name} @var{rules}] @" msgstr "{Scheme-Prozedur} udev-rules-service [@var{Name} @var{Regeln}] @" #. type: deffn -#: guix-git/doc/guix.texi:16632 +#: guix-git/doc/guix.texi:16989 msgid "[#:groups @var{groups}] Return a service that extends @code{udev-service-type } with @var{rules} and @code{account-service-type} with @var{groups} as system groups. This works by creating a singleton service type @code{@var{name}-udev-rules}, of which the returned service is an instance." msgstr "[#:groups @var{Gruppen}] Liefert einen Dienst, der den Dienst vom Typ @code{udev-service-type} um die @var{Regeln} erweitert und den Dienst vom Typ @code{account-service-type} um die @var{Gruppen} in Form von Systembenutzergruppen. Dazu wird ein Diensttyp @code{@var{name}-udev-rules} für den einmaligen Gebrauch erzeugt, den der zurückgelieferte Dienst instanziiert." #. type: deffn -#: guix-git/doc/guix.texi:16635 +#: guix-git/doc/guix.texi:16992 msgid "Here we show how it can be used to extend @code{udev-service-type} with the previously defined rule @code{%example-udev-rule}." msgstr "Hier zeigen wir, wie damit @code{udev-service-type} um die vorher definierte Regel @code{%beispiel-udev-rule} erweitert werden kann." #. type: lisp -#: guix-git/doc/guix.texi:16642 +#: guix-git/doc/guix.texi:16999 #, no-wrap msgid "" "(operating-system\n" @@ -30382,23 +31032,23 @@ msgstr "" " %desktop-services)))\n" #. type: deffn -#: guix-git/doc/guix.texi:16645 +#: guix-git/doc/guix.texi:17002 #, no-wrap msgid "{Scheme Procedure} file->udev-rule [@var{file-name} @var{file}]" msgstr "{Scheme-Prozedur} file->udev-rule [@var{Dateiname} @var{Datei}]" #. type: deffn -#: guix-git/doc/guix.texi:16648 +#: guix-git/doc/guix.texi:17005 msgid "Return a udev file named @var{file-name} containing the rules defined within @var{file}, a file-like object." msgstr "Liefert eine udev-Datei mit dem angegebenen @var{Dateiname}n, in der alle in der @var{Datei}, einem dateiartigen Objekt, definierten Regeln stehen." #. type: deffn -#: guix-git/doc/guix.texi:16650 +#: guix-git/doc/guix.texi:17007 msgid "The following example showcases how we can use an existing rule file." msgstr "Folgendes Beispiel stellt dar, wie wir eine bestehende Regeldatei verwenden können." #. type: lisp -#: guix-git/doc/guix.texi:16655 +#: guix-git/doc/guix.texi:17012 #, no-wrap msgid "" "(use-modules (guix download) ;for url-fetch\n" @@ -30412,7 +31062,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:16666 +#: guix-git/doc/guix.texi:17023 #, no-wrap msgid "" "(define %android-udev-rules\n" @@ -30438,17 +31088,17 @@ msgstr "" " (base32 \"0lmmagpyb6xsq6zcr2w1cyx9qmjqmajkvrdbhjx32gqf1d9is003\"))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:16675 +#: guix-git/doc/guix.texi:17032 msgid "Additionally, Guix package definitions can be included in @var{rules} in order to extend the udev rules with the definitions found under their @file{lib/udev/rules.d} sub-directory. In lieu of the previous @var{file->udev-rule} example, we could have used the @var{android-udev-rules} package which exists in Guix in the @code{(gnu packages android)} module." msgstr "Zusätzlich können Guix-Paketdefinitionen unter den @var{rules} aufgeführt werden, um die udev-Regeln um diejenigen Definitionen zu ergänzen, die im Unterverzeichnis @file{lib/udev/rules.d} des jeweiligen Pakets aufgeführt sind. Statt des bisherigen Beispiels zu @var{file->udev-rule} hätten wir also auch das Paket @var{android-udev-rules} benutzen können, das in Guix im Modul @code{(gnu packages android)} vorhanden ist." #. type: Plain text -#: guix-git/doc/guix.texi:16684 +#: guix-git/doc/guix.texi:17041 msgid "The following example shows how to use the @var{android-udev-rules} package so that the Android tool @command{adb} can detect devices without root privileges. It also details how to create the @code{adbusers} group, which is required for the proper functioning of the rules defined within the @code{android-udev-rules} package. To create such a group, we must define it both as part of the @code{supplementary-groups} of our @code{user-account} declaration, as well as in the @var{groups} of the @code{udev-rules-service} procedure." msgstr "Das folgende Beispiel zeit, wie dieses Paket @code{android-udev-rules} benutzt werden kann, damit das „Android-Tool“ @command{adb} Geräte erkennen kann, ohne dafür Administratorrechte vorauszusetzen. Man sieht hier auch, wie die Benutzergruppe @code{adbusers} erstellt werden kann, die existieren muss, damit die im Paket @code{android-udev-rules} definierten Regeln richtig funktionieren. Um so eine Benutzergruppe zu erzeugen, müssen wir sie sowohl unter den @code{supplementary-groups} unserer @code{user-account}-Deklaration aufführen, als auch sie im @code{groups}-Feld der @code{udev-rules-service}-Prozedur aufführen." #. type: lisp -#: guix-git/doc/guix.texi:16689 +#: guix-git/doc/guix.texi:17046 #, no-wrap msgid "" "(use-modules (gnu packages android) ;for android-udev-rules\n" @@ -30462,7 +31112,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:16702 +#: guix-git/doc/guix.texi:17059 #, no-wrap msgid "" "(operating-system\n" @@ -30492,328 +31142,342 @@ msgstr "" " %desktop-services)))\n" #. type: defvr -#: guix-git/doc/guix.texi:16704 +#: guix-git/doc/guix.texi:17061 #, no-wrap msgid "{Scheme Variable} urandom-seed-service-type" msgstr "{Scheme-Variable} urandom-seed-service-type" #. type: defvr -#: guix-git/doc/guix.texi:16709 +#: guix-git/doc/guix.texi:17066 msgid "Save some entropy in @code{%random-seed-file} to seed @file{/dev/urandom} when rebooting. It also tries to seed @file{/dev/urandom} from @file{/dev/hwrng} while booting, if @file{/dev/hwrng} exists and is readable." msgstr "Etwas Entropie in der Datei @code{%random-seed-file} aufsparen, die als Startwert (als sogenannter „Seed“) für @file{/dev/urandom} dienen kann, nachdem das System neu gestartet wurde. Es wird auch versucht, @file{/dev/urandom} beim Hochfahren mit Werten aus @file{/dev/hwrng} zu starten, falls @file{/dev/hwrng} existiert und lesbar ist." #. type: defvr -#: guix-git/doc/guix.texi:16711 +#: guix-git/doc/guix.texi:17068 #, no-wrap msgid "{Scheme Variable} %random-seed-file" msgstr "{Scheme-Variable} %random-seed-file" #. type: defvr -#: guix-git/doc/guix.texi:16715 +#: guix-git/doc/guix.texi:17072 msgid "This is the name of the file where some random bytes are saved by @var{urandom-seed-service} to seed @file{/dev/urandom} when rebooting. It defaults to @file{/var/lib/random-seed}." msgstr "Der Name der Datei, in der einige zufällige Bytes vom @var{urandom-seed-service} abgespeichert werden, um sie nach einem Neustart von dort als Startwert für @file{/dev/urandom} auslesen zu können. Als Vorgabe wird @file{/var/lib/random-seed} verwendet." #. type: cindex -#: guix-git/doc/guix.texi:16717 +#: guix-git/doc/guix.texi:17074 #, no-wrap msgid "mouse" msgstr "Maus" #. type: cindex -#: guix-git/doc/guix.texi:16718 +#: guix-git/doc/guix.texi:17075 #, no-wrap msgid "gpm" msgstr "gpm" #. type: defvr -#: guix-git/doc/guix.texi:16719 +#: guix-git/doc/guix.texi:17076 #, no-wrap msgid "{Scheme Variable} gpm-service-type" msgstr "{Scheme-Variable} gpm-service-type" #. type: defvr -#: guix-git/doc/guix.texi:16724 +#: guix-git/doc/guix.texi:17081 msgid "This is the type of the service that runs GPM, the @dfn{general-purpose mouse daemon}, which provides mouse support to the Linux console. GPM allows users to use the mouse in the console, notably to select, copy, and paste text." msgstr "Dieser Typ wird für den Dienst verwendet, der GPM ausführt, den @dfn{General-Purpose Mouse Daemon}, welcher zur Linux-Konsole Mausunterstützung hinzufügt. GPM ermöglicht es seinen Benutzern, auch in der Konsole die Maus zu benutzen und damit etwa Text auszuwählen, zu kopieren und einzufügen." #. type: defvr -#: guix-git/doc/guix.texi:16727 +#: guix-git/doc/guix.texi:17084 msgid "The value for services of this type must be a @code{gpm-configuration} (see below). This service is not part of @code{%base-services}." msgstr "Der Wert für Dienste dieses Typs muss eine @code{gpm-configuration} sein (siehe unten). Dieser Dienst gehört @emph{nicht} zu den @code{%base-services}." #. type: deftp -#: guix-git/doc/guix.texi:16729 +#: guix-git/doc/guix.texi:17086 #, no-wrap msgid "{Data Type} gpm-configuration" msgstr "{Datentyp} gpm-configuration" #. type: deftp -#: guix-git/doc/guix.texi:16731 +#: guix-git/doc/guix.texi:17088 msgid "Data type representing the configuration of GPM." msgstr "Repräsentiert die Konfiguration von GPM." #. type: item -#: guix-git/doc/guix.texi:16733 +#: guix-git/doc/guix.texi:17090 #, no-wrap msgid "@code{options} (default: @code{%default-gpm-options})" msgstr "@code{options} (Vorgabe: @code{%default-gpm-options})" #. type: table -#: guix-git/doc/guix.texi:16738 +#: guix-git/doc/guix.texi:17095 msgid "Command-line options passed to @command{gpm}. The default set of options instruct @command{gpm} to listen to mouse events on @file{/dev/input/mice}. @xref{Command Line,,, gpm, gpm manual}, for more information." msgstr "Befehlszeilenoptionen, die an @command{gpm} übergeben werden. Die vorgegebenen Optionen weisen @command{gpm} an, auf Maus-Ereignisse auf der Datei @file{/dev/input/mice} zu lauschen. Siehe @ref{Command Line,,, gpm, gpm manual} für weitere Informationen." #. type: item -#: guix-git/doc/guix.texi:16739 +#: guix-git/doc/guix.texi:17096 #, no-wrap msgid "@code{gpm} (default: @code{gpm})" msgstr "@code{gpm} (Vorgabe: @code{gpm})" #. type: table -#: guix-git/doc/guix.texi:16741 +#: guix-git/doc/guix.texi:17098 msgid "The GPM package to use." msgstr "Das GPM-Paket, was benutzt werden soll." #. type: anchor{#1} -#: guix-git/doc/guix.texi:16746 +#: guix-git/doc/guix.texi:17103 msgid "guix-publish-service-type" msgstr "guix-publish-service-type" #. type: deffn -#: guix-git/doc/guix.texi:16746 +#: guix-git/doc/guix.texi:17103 #, no-wrap msgid "{Scheme Variable} guix-publish-service-type" msgstr "{Scheme-Variable} guix-publish-service-type" #. type: deffn -#: guix-git/doc/guix.texi:16750 +#: guix-git/doc/guix.texi:17107 msgid "This is the service type for @command{guix publish} (@pxref{Invoking guix publish}). Its value must be a @code{guix-publish-configuration} object, as described below." msgstr "Dies ist der Diensttyp für @command{guix publish} (siehe @ref{Invoking guix publish}). Sein Wert muss ein @code{guix-publish-configuration}-Objekt sein, wie im Folgenden beschrieben." #. type: deffn -#: guix-git/doc/guix.texi:16754 +#: guix-git/doc/guix.texi:17111 msgid "This assumes that @file{/etc/guix} already contains a signing key pair as created by @command{guix archive --generate-key} (@pxref{Invoking guix archive}). If that is not the case, the service will fail to start." msgstr "Hierbei wird angenommen, dass @file{/etc/guix} bereits ein mit @command{guix archive --generate-key} erzeugtes Schlüsselpaar zum Signieren enthält (siehe @ref{Invoking guix archive}). Falls nicht, wird der Dienst beim Starten fehlschlagen." #. type: deftp -#: guix-git/doc/guix.texi:16756 +#: guix-git/doc/guix.texi:17113 #, no-wrap msgid "{Data Type} guix-publish-configuration" msgstr "{Datentyp} guix-publish-configuration" #. type: deftp -#: guix-git/doc/guix.texi:16759 +#: guix-git/doc/guix.texi:17116 msgid "Data type representing the configuration of the @code{guix publish} service." msgstr "Der Datentyp, der die Konfiguration des „@code{guix publish}“-Dienstes repräsentiert." #. type: item -#: guix-git/doc/guix.texi:16761 +#: guix-git/doc/guix.texi:17118 #, no-wrap msgid "@code{guix} (default: @code{guix})" msgstr "@code{guix} (Vorgabe: @code{guix})" #. type: item -#: guix-git/doc/guix.texi:16764 guix-git/doc/guix.texi:31477 +#: guix-git/doc/guix.texi:17121 guix-git/doc/guix.texi:31842 #, no-wrap msgid "@code{port} (default: @code{80})" msgstr "@code{port} (Vorgabe: @code{80})" #. type: table -#: guix-git/doc/guix.texi:16766 +#: guix-git/doc/guix.texi:17123 msgid "The TCP port to listen for connections." msgstr "Der TCP-Port, auf dem auf Verbindungen gelauscht werden soll." #. type: item -#: guix-git/doc/guix.texi:16767 guix-git/doc/guix.texi:29054 -#: guix-git/doc/guix.texi:32858 +#: guix-git/doc/guix.texi:17124 guix-git/doc/guix.texi:29391 +#: guix-git/doc/guix.texi:33223 #, no-wrap msgid "@code{host} (default: @code{\"localhost\"})" msgstr "@code{host} (Vorgabe: @code{\"localhost\"})" #. type: table -#: guix-git/doc/guix.texi:16770 +#: guix-git/doc/guix.texi:17127 msgid "The host (and thus, network interface) to listen to. Use @code{\"0.0.0.0\"} to listen on all the network interfaces." msgstr "Unter welcher Rechneradresse (welchem „Host“, also welcher Netzwerkschnittstelle) auf Verbindungen gelauscht wird. Benutzen Sie @code{\"0.0.0.0\"}, wenn auf allen verfügbaren Netzwerkschnittstellen gelauscht werden soll." #. type: item -#: guix-git/doc/guix.texi:16771 +#: guix-git/doc/guix.texi:17128 #, no-wrap msgid "@code{advertise?} (default: @code{#f})" msgstr "@code{advertise?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16774 +#: guix-git/doc/guix.texi:17131 msgid "When true, advertise the service on the local network @i{via} the DNS-SD protocol, using Avahi." msgstr "Steht dies auf wahr, wird anderen Rechnern im lokalen Netzwerk über das Protokoll DNS-SD unter Verwendung von Avahi mitgeteilt, dass dieser Dienst zur Verfügung steht." #. type: table -#: guix-git/doc/guix.texi:16778 +#: guix-git/doc/guix.texi:17135 msgid "This allows neighboring Guix devices with discovery on (see @code{guix-configuration} above) to discover this @command{guix publish} instance and to automatically download substitutes from it." msgstr "Dadurch können in der Nähe befindliche Guix-Maschinen mit eingeschalteter Ermittlung (siehe oben die @code{guix-configuration}) diese Instanz von @command{guix publish} entdecken und Substitute darüber beziehen." #. type: item -#: guix-git/doc/guix.texi:16779 +#: guix-git/doc/guix.texi:17136 #, no-wrap msgid "@code{compression} (default: @code{'((\"gzip\" 3) (\"zstd\" 3))})" msgstr "@code{compression} (Vorgabe: @code{'((\"gzip\" 3) (\"zstd\" 3))})" #. type: table -#: guix-git/doc/guix.texi:16783 +#: guix-git/doc/guix.texi:17140 msgid "This is a list of compression method/level tuple used when compressing substitutes. For example, to compress all substitutes with @emph{both} lzip at level 7 and gzip at level 9, write:" msgstr "Dies ist eine Liste von Tupeln aus Kompressionsmethode und -stufe, die zur Kompression von Substituten benutzt werden. Um zum Beispiel alle Substitute mit @emph{beiden}, sowohl lzip auf Stufe 7 und gzip auf Stufe 9, zu komprimieren, schreiben Sie:" #. type: lisp -#: guix-git/doc/guix.texi:16786 +#: guix-git/doc/guix.texi:17143 #, no-wrap msgid "'((\"lzip\" 7) (\"gzip\" 9))\n" msgstr "'((\"lzip\" 7) (\"gzip\" 9))\n" #. type: table -#: guix-git/doc/guix.texi:16792 +#: guix-git/doc/guix.texi:17149 msgid "Level 9 achieves the best compression ratio at the expense of increased CPU usage, whereas level 1 achieves fast compression. @xref{Invoking guix publish}, for more information on the available compression methods and the tradeoffs involved." msgstr "Auf Stufe 9 ist das Kompressionsverhältnis am besten, auf Kosten von hoher Prozessorauslastung, während auf Stufe 1 eine schnelle Kompression erreicht wird. Siehe @ref{Invoking guix publish} für weitere Informationen zu den verfügbaren Kompressionsmethoden und ihren jeweiligen Vor- und Nachteilen." #. type: table -#: guix-git/doc/guix.texi:16794 +#: guix-git/doc/guix.texi:17151 msgid "An empty list disables compression altogether." msgstr "Wird eine leere Liste angegeben, wird Kompression abgeschaltet." #. type: item -#: guix-git/doc/guix.texi:16795 +#: guix-git/doc/guix.texi:17152 #, no-wrap msgid "@code{nar-path} (default: @code{\"nar\"})" msgstr "@code{nar-path} (Vorgabe: @code{\"nar\"})" #. type: table -#: guix-git/doc/guix.texi:16798 +#: guix-git/doc/guix.texi:17155 msgid "The URL path at which ``nars'' can be fetched. @xref{Invoking guix publish, @option{--nar-path}}, for details." msgstr "Der URL-Pfad, unter dem „Nars“ zum Herunterladen angeboten werden. Siehe @ref{Invoking guix publish, @option{--nar-path}} für Details." #. type: item -#: guix-git/doc/guix.texi:16799 +#: guix-git/doc/guix.texi:17156 #, no-wrap msgid "@code{cache} (default: @code{#f})" msgstr "@code{cache} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16805 +#: guix-git/doc/guix.texi:17162 msgid "When it is @code{#f}, disable caching and instead generate archives on demand. Otherwise, this should be the name of a directory---e.g., @code{\"/var/cache/guix/publish\"}---where @command{guix publish} caches archives and meta-data ready to be sent. @xref{Invoking guix publish, @option{--cache}}, for more information on the tradeoffs involved." msgstr "Wenn dies @code{#f} ist, werden Archive nicht zwischengespeichert, sondern erst bei einer Anfrage erzeugt. Andernfalls sollte dies der Name eines Verzeichnisses sein@tie{}— z.B.@: @code{\"/var/cache/guix/publish\"}@tie{}—, in das @command{guix publish} fertige Archive und Metadaten zwischenspeichern soll. Siehe @ref{Invoking guix publish, @option{--cache}} für weitere Informationen über die jeweiligen Vor- und Nachteile." #. type: item -#: guix-git/doc/guix.texi:16806 +#: guix-git/doc/guix.texi:17163 #, no-wrap msgid "@code{workers} (default: @code{#f})" msgstr "@code{workers} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16810 +#: guix-git/doc/guix.texi:17167 msgid "When it is an integer, this is the number of worker threads used for caching; when @code{#f}, the number of processors is used. @xref{Invoking guix publish, @option{--workers}}, for more information." msgstr "Ist dies eine ganze Zahl, gibt es die Anzahl der Worker-Threads an, die zum Zwischenspeichern benutzt werden; ist es @code{#f}, werden so viele benutzt, wie es Prozessoren gibt. Siehe @ref{Invoking guix publish, @option{--workers}} für mehr Informationen." #. type: item -#: guix-git/doc/guix.texi:16811 +#: guix-git/doc/guix.texi:17168 #, no-wrap msgid "@code{cache-bypass-threshold} (default: 10 MiB)" msgstr "@code{cache-bypass-threshold} (Vorgabe: 10 MiB)" #. type: table -#: guix-git/doc/guix.texi:16816 +#: guix-git/doc/guix.texi:17173 msgid "When @code{cache} is true, this is the maximum size in bytes of a store item for which @command{guix publish} may bypass its cache in case of a cache miss. @xref{Invoking guix publish, @option{--cache-bypass-threshold}}, for more information." msgstr "Wenn @code{cache} wahr ist, ist dies die Maximalgröße in Bytes, die ein Store-Objekt haben darf, damit @command{guix publish} den Zwischenspeicher umgehen darf, falls eine Suche darin mit negativem Ergebnis ausfällt („Cache Miss“). Siehe @ref{Invoking guix publish, @option{--cache-bypass-threshold}} für weitere Informationen." #. type: item -#: guix-git/doc/guix.texi:16817 +#: guix-git/doc/guix.texi:17174 #, no-wrap msgid "@code{ttl} (default: @code{#f})" msgstr "@code{ttl} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16821 +#: guix-git/doc/guix.texi:17178 msgid "When it is an integer, this denotes the @dfn{time-to-live} in seconds of the published archives. @xref{Invoking guix publish, @option{--ttl}}, for more information." msgstr "Wenn dies eine ganze Zahl ist, bezeichnet sie die @dfn{Time-to-live} als die Anzahl der Sekunden, die heruntergeladene veröffentlichte Archive zwischengespeichert werden dürfen. Siehe @ref{Invoking guix publish, @option{--ttl}} für mehr Informationen." +#. type: item +#: guix-git/doc/guix.texi:17179 +#, fuzzy, no-wrap +#| msgid "@code{relative-root} (default: @code{#f})" +msgid "@code{negative-ttl} (default: @code{#f})" +msgstr "@code{relative-root} (Vorgabe: @code{#f})" + +#. type: table +#: guix-git/doc/guix.texi:17183 +#, fuzzy +#| msgid "When it is an integer, this denotes the @dfn{time-to-live} in seconds of the published archives. @xref{Invoking guix publish, @option{--ttl}}, for more information." +msgid "When it is an integer, this denotes the @dfn{time-to-live} in seconds for the negative lookups. @xref{Invoking guix publish, @option{--negative-ttl}}, for more information." +msgstr "Wenn dies eine ganze Zahl ist, bezeichnet sie die @dfn{Time-to-live} als die Anzahl der Sekunden, die heruntergeladene veröffentlichte Archive zwischengespeichert werden dürfen. Siehe @ref{Invoking guix publish, @option{--ttl}} für mehr Informationen." + #. type: anchor{#1} -#: guix-git/doc/guix.texi:16825 +#: guix-git/doc/guix.texi:17187 msgid "rngd-service" msgstr "rngd-service" #. type: deffn -#: guix-git/doc/guix.texi:16825 +#: guix-git/doc/guix.texi:17187 #, no-wrap msgid "{Scheme Procedure} rngd-service [#:rng-tools @var{rng-tools}] @" msgstr "{Scheme-Prozedur} rngd-service [#:rng-tools @var{rng-tools}] @" #. type: deffn -#: guix-git/doc/guix.texi:16830 +#: guix-git/doc/guix.texi:17192 msgid "[#:device \"/dev/hwrng\"] Return a service that runs the @command{rngd} program from @var{rng-tools} to add @var{device} to the kernel's entropy pool. The service will fail if @var{device} does not exist." msgstr "[#:device \"/dev/hwrng\"] Liefert einen Dienst, der das @command{rngd}-Programm aus den @var{rng-tools} benutzt, um das mit @var{device} bezeichnete Gerät zum Entropie-Pool des Kernels hinzuzufügen. Dieser Dienst wird fehlschlagen, falls das mit @var{device} bezeichnete Gerät nicht existiert." #. type: anchor{#1} -#: guix-git/doc/guix.texi:16833 +#: guix-git/doc/guix.texi:17195 msgid "pam-limits-service" msgstr "pam-limits-service" #. type: cindex -#: guix-git/doc/guix.texi:16833 +#: guix-git/doc/guix.texi:17195 #, no-wrap msgid "session limits" msgstr "Sitzungs-Limits" #. type: cindex -#: guix-git/doc/guix.texi:16834 +#: guix-git/doc/guix.texi:17196 #, no-wrap msgid "ulimit" msgstr "ulimit" #. type: cindex -#: guix-git/doc/guix.texi:16835 +#: guix-git/doc/guix.texi:17197 #, no-wrap msgid "priority" msgstr "Priorität" #. type: cindex -#: guix-git/doc/guix.texi:16836 +#: guix-git/doc/guix.texi:17198 #, no-wrap msgid "realtime" msgstr "Echtzeit" #. type: cindex -#: guix-git/doc/guix.texi:16837 +#: guix-git/doc/guix.texi:17199 #, no-wrap msgid "jackd" msgstr "jackd" #. type: cindex -#: guix-git/doc/guix.texi:16838 +#: guix-git/doc/guix.texi:17200 #, no-wrap msgid "nofile" msgstr "nofile" #. type: cindex -#: guix-git/doc/guix.texi:16839 +#: guix-git/doc/guix.texi:17201 #, no-wrap msgid "open file descriptors" msgstr "offene Dateideskriptoren" #. type: deffn -#: guix-git/doc/guix.texi:16840 +#: guix-git/doc/guix.texi:17202 #, no-wrap msgid "{Scheme Procedure} pam-limits-service [#:limits @code{'()}]" msgstr "{Scheme-Prozedur} pam-limits-service [#:limits @code{'()}]" #. type: deffn -#: guix-git/doc/guix.texi:16847 +#: guix-git/doc/guix.texi:17209 msgid "Return a service that installs a configuration file for the @uref{http://linux-pam.org/Linux-PAM-html/sag-pam_limits.html, @code{pam_limits} module}. The procedure optionally takes a list of @code{pam-limits-entry} values, which can be used to specify @code{ulimit} limits and @code{nice} priority limits to user sessions." msgstr "Liefert einen Dienst, der eine Konfigurationsdatei für das @uref{http://linux-pam.org/Linux-PAM-html/sag-pam_limits.html, @code{pam_limits}-Modul} installiert. Diese Prozedur nimmt optional eine Liste von @code{pam-limits-entry}-Werten entgegen, die benutzt werden können, um @code{ulimit}-Limits und @code{nice}-Prioritäten für Benutzersitzungen festzulegen." #. type: deffn -#: guix-git/doc/guix.texi:16850 +#: guix-git/doc/guix.texi:17212 msgid "The following limits definition sets two hard and soft limits for all login sessions of users in the @code{realtime} group:" msgstr "Die folgenden Limit-Definitionen setzen zwei harte und weiche Limits für alle Anmeldesitzungen für Benutzer in der @code{realtime}-Gruppe." #. type: lisp -#: guix-git/doc/guix.texi:16856 +#: guix-git/doc/guix.texi:17218 #, no-wrap msgid "" "(pam-limits-service\n" @@ -30827,17 +31491,17 @@ msgstr "" " (pam-limits-entry \"@@realtime\" 'both 'memlock 'unlimited)))\n" #. type: deffn -#: guix-git/doc/guix.texi:16862 +#: guix-git/doc/guix.texi:17224 msgid "The first entry increases the maximum realtime priority for non-privileged processes; the second entry lifts any restriction of the maximum address space that can be locked in memory. These settings are commonly used for real-time audio systems." msgstr "Der erste Eintrag erhöht die maximale Echtzeit-Priorität für unprivilegierte Prozesse ohne zusätzliche Berechtigungen; der zweite Eintrag hebt jegliche Einschränkungen des maximalen Adressbereichs auf, der im Speicher reserviert werden darf. Diese Einstellungen werden in dieser Form oft für Echtzeit-Audio-Systeme verwendet." #. type: deffn -#: guix-git/doc/guix.texi:16865 +#: guix-git/doc/guix.texi:17227 msgid "Another useful example is raising the maximum number of open file descriptors that can be used:" msgstr "Ein weiteres nützliches Beispiel stellt das Erhöhen der Begrenzung dar, wie viele geöffnete Dateideskriptoren auf einmal benutzt werden können:" #. type: lisp -#: guix-git/doc/guix.texi:16870 +#: guix-git/doc/guix.texi:17232 #, no-wrap msgid "" "(pam-limits-service\n" @@ -30849,40 +31513,40 @@ msgstr "" " (pam-limits-entry \"*\" 'both 'nofile 100000)))\n" #. type: deffn -#: guix-git/doc/guix.texi:16878 +#: guix-git/doc/guix.texi:17240 msgid "In the above example, the asterisk means the limit should apply to any user. It is important to ensure the chosen value doesn't exceed the maximum system value visible in the @file{/proc/sys/fs/file-max} file, else the users would be prevented from login in. For more information about the Pluggable Authentication Module (PAM) limits, refer to the @samp{pam_limits} man page from the @code{linux-pam} package." msgstr "Im Beispiel oben steht das Sternchen dafür, dass die Beschränkung für alle Benutzer gelten soll. Es ist wichtig, dass Sie darauf achten, dass der Wert @emph{nicht} größer als der Höchstwert des Systems ist, der in der Datei @file{/proc/sys/fs/file-max} zu finden ist, denn sonst könnten sich Benutzer @emph{nicht} mehr anmelden. Weitere Informationen über Schranken im Pluggable Authentication Module (PAM) bekommen Sie, wenn Sie die Handbuchseite im @code{linux-pam}-Paket lesen." #. type: cindex -#: guix-git/doc/guix.texi:16883 guix-git/doc/guix.texi:37407 +#: guix-git/doc/guix.texi:17245 guix-git/doc/guix.texi:37897 #, no-wrap msgid "cron" msgstr "cron" #. type: cindex -#: guix-git/doc/guix.texi:16884 guix-git/doc/guix.texi:37408 +#: guix-git/doc/guix.texi:17246 guix-git/doc/guix.texi:37898 #, no-wrap msgid "mcron" msgstr "mcron" #. type: cindex -#: guix-git/doc/guix.texi:16885 guix-git/doc/guix.texi:37409 +#: guix-git/doc/guix.texi:17247 guix-git/doc/guix.texi:37899 #, no-wrap msgid "scheduling jobs" msgstr "Planen von Aufträgen" #. type: Plain text -#: guix-git/doc/guix.texi:16892 +#: guix-git/doc/guix.texi:17254 msgid "The @code{(gnu services mcron)} module provides an interface to GNU@tie{}mcron, a daemon to run jobs at scheduled times (@pxref{Top,,, mcron, GNU@tie{}mcron}). GNU@tie{}mcron is similar to the traditional Unix @command{cron} daemon; the main difference is that it is implemented in Guile Scheme, which provides a lot of flexibility when specifying the scheduling of jobs and their actions." msgstr "Das Modul @code{(gnu services mcron)} enthält eine Schnittstelle zu GNU@tie{}mcron, einem Daemon, der gemäß einem vorher festgelegten Zeitplan Aufträge (sogenannte „Jobs“) ausführt (siehe @ref{Top,,, mcron, GNU@tie{}mcron}). GNU@tie{}mcron ist ähnlich zum traditionellen @command{cron}-Daemon aus Unix; der größte Unterschied ist, dass mcron in Guile Scheme implementiert ist, wodurch einem viel Flexibilität bei der Spezifikation von Aufträgen und ihren Aktionen offen steht." #. type: Plain text -#: guix-git/doc/guix.texi:16900 +#: guix-git/doc/guix.texi:17262 msgid "The example below defines an operating system that runs the @command{updatedb} (@pxref{Invoking updatedb,,, find, Finding Files}) and the @command{guix gc} commands (@pxref{Invoking guix gc}) daily, as well as the @command{mkid} command on behalf of an unprivileged user (@pxref{mkid invocation,,, idutils, ID Database Utilities}). It uses gexps to introduce job definitions that are passed to mcron (@pxref{G-Expressions})." msgstr "Das folgende Beispiel definiert ein Betriebssystem, das täglich die Befehle @command{updatedb} (siehe @ref{Invoking updatedb,,, find, Finding Files}) und @command{guix gc} (siehe @ref{Invoking guix gc}) ausführt sowie den Befehl @command{mkid} im Namen eines „unprivilegierten“ Nutzers ohne besondere Berechtigungen laufen lässt (siehe @ref{mkid invocation,,, idutils, ID Database Utilities}). Zum Anlegen von Auftragsdefinitionen benutzt es G-Ausdrücke, die dann an mcron übergeben werden (siehe @ref{G-Expressions})." #. type: lisp -#: guix-git/doc/guix.texi:16904 +#: guix-git/doc/guix.texi:17266 #, no-wrap msgid "" "(use-modules (guix) (gnu) (gnu services mcron))\n" @@ -30894,7 +31558,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:16914 +#: guix-git/doc/guix.texi:17276 #, no-wrap msgid "" "(define updatedb-job\n" @@ -30920,7 +31584,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:16920 +#: guix-git/doc/guix.texi:17282 #, no-wrap msgid "" "(define garbage-collector-job\n" @@ -30938,7 +31602,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:16927 +#: guix-git/doc/guix.texi:17289 #, no-wrap msgid "" "(define idutils-job\n" @@ -30959,7 +31623,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:16930 +#: guix-git/doc/guix.texi:17292 #, no-wrap msgid "" "(operating-system\n" @@ -30971,7 +31635,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:16940 +#: guix-git/doc/guix.texi:17302 #, no-wrap msgid "" " ;; %BASE-SERVICES already includes an instance of\n" @@ -30995,23 +31659,23 @@ msgstr "" " %base-services)))\n" #. type: quotation -#: guix-git/doc/guix.texi:16942 +#: guix-git/doc/guix.texi:17304 #, no-wrap msgid "Tip" msgstr "Tipp" #. type: quotation -#: guix-git/doc/guix.texi:16948 +#: guix-git/doc/guix.texi:17310 msgid "When providing the action of a job specification as a procedure, you should provide an explicit name for the job via the optional 3rd argument as done in the @code{updatedb-job} example above. Otherwise, the job would appear as ``Lambda function'' in the output of @command{herd schedule mcron}, which is not nearly descriptive enough!" msgstr "Wenn Sie die Aktion einer Auftragsspezifikation als eine Prozedur angeben, sollten Sie ausdrücklich einen Namen für den Auftrag im dritten Argument angeben, wie oben im Beispiel zum @code{updatedb-job} gezeigt. Andernfalls wird für den Auftrag nur „Lambda function“ in der Ausgabe von @command{herd schedule mcron} angezeigt, was viel zu wenig Aussagekraft hat!" #. type: Plain text -#: guix-git/doc/guix.texi:16955 +#: guix-git/doc/guix.texi:17317 msgid "For more complex jobs defined in Scheme where you need control over the top level, for instance to introduce a @code{use-modules} form, you can move your code to a separate program using the @code{program-file} procedure of the @code{(guix gexp)} module (@pxref{G-Expressions}). The example below illustrates that." msgstr "Wenn Sie einen komplexeren Auftrag mit Scheme-Code auf oberster Ebene festlegen möchten, um zum Beispiel eine @code{use-modules}-Form einzuführen, können Sie Ihren Code in ein separates Programm verschieben, indem Sie die Prozedur @code{program-file} aus dem Modul @code{(guix gexp)} benutzen (siehe @ref{G-Expressions}). Das folgende Beispiel veranschaulicht dies." #. type: lisp -#: guix-git/doc/guix.texi:16971 +#: guix-git/doc/guix.texi:17333 #, no-wrap msgid "" "(define %battery-alert-job\n" @@ -31046,7 +31710,7 @@ msgstr "" " (srfi srfi-2))\n" #. type: lisp -#: guix-git/doc/guix.texi:16973 +#: guix-git/doc/guix.texi:17335 #, no-wrap msgid "" " (define %min-level 20)\n" @@ -31054,7 +31718,7 @@ msgid "" msgstr " (define %min-niveau 20)\n" #. type: lisp -#: guix-git/doc/guix.texi:16984 +#: guix-git/doc/guix.texi:17346 #, no-wrap msgid "" " (setenv \"LC_ALL\" \"C\") ;ensure English output\n" @@ -31080,106 +31744,106 @@ msgstr "" " (invoke #$(file-append beep \"/bin/beep\") \"-r5\")))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:16989 +#: guix-git/doc/guix.texi:17351 msgid "@xref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron}, for more information on mcron job specifications. Below is the reference of the mcron service." msgstr "Siehe @ref{Guile Syntax, mcron-Auftragsspezifikationen,, mcron, GNU@tie{}mcron} für weitere Informationen zu mcron-Auftragsspezifikationen. Nun folgt die Referenz des mcron-Dienstes." #. type: Plain text -#: guix-git/doc/guix.texi:16992 +#: guix-git/doc/guix.texi:17354 msgid "On a running system, you can use the @code{schedule} action of the service to visualize the mcron jobs that will be executed next:" msgstr "Wenn das System läuft, können Sie mit der Aktion @code{schedule} des Dienstes visualisieren lassen, welche mcron-Aufträge als Nächstes ausgeführt werden:" #. type: example -#: guix-git/doc/guix.texi:16995 +#: guix-git/doc/guix.texi:17357 #, no-wrap msgid "# herd schedule mcron\n" msgstr "# herd schedule mcron\n" #. type: Plain text -#: guix-git/doc/guix.texi:17000 +#: guix-git/doc/guix.texi:17362 msgid "The example above lists the next five tasks that will be executed, but you can also specify the number of tasks to display:" msgstr "Das vorangehende Beispiel listet die nächsten fünf Aufgaben auf, die ausgeführt werden, aber Sie können auch angeben, wie viele Aufgaben angezeigt werden sollen:" #. type: example -#: guix-git/doc/guix.texi:17003 +#: guix-git/doc/guix.texi:17365 #, no-wrap msgid "# herd schedule mcron 10\n" msgstr "# herd schedule mcron 10\n" #. type: defvr -#: guix-git/doc/guix.texi:17005 +#: guix-git/doc/guix.texi:17367 #, no-wrap msgid "{Scheme Variable} mcron-service-type" msgstr "{Scheme-Variable} mcron-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17008 +#: guix-git/doc/guix.texi:17370 msgid "This is the type of the @code{mcron} service, whose value is an @code{mcron-configuration} object." msgstr "Dies ist der Diensttyp des @code{mcron}-Dienstes. Als Wert verwendet er ein @code{mcron-configuration}-Objekt." #. type: defvr -#: guix-git/doc/guix.texi:17013 guix-git/doc/guix.texi:37428 +#: guix-git/doc/guix.texi:17375 guix-git/doc/guix.texi:37918 msgid "This service type can be the target of a service extension that provides additional job specifications (@pxref{Service Composition}). In other words, it is possible to define services that provide additional mcron jobs to run." msgstr "Dieser Diensttyp kann als Ziel einer Diensterweiterung verwendet werden, die ihn mit zusätzlichen Auftragsspezifikationen versorgt (siehe @ref{Service Composition}). Mit anderen Worten ist es möglich, Dienste zu definieren, die weitere mcron-Aufträge ausführen lassen." #. type: deftp -#: guix-git/doc/guix.texi:17015 +#: guix-git/doc/guix.texi:17377 #, no-wrap msgid "{Data Type} mcron-configuration" msgstr "{Datentyp} mcron-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17017 guix-git/doc/guix.texi:37432 +#: guix-git/doc/guix.texi:17379 guix-git/doc/guix.texi:37922 msgid "Data type representing the configuration of mcron." msgstr "Datentyp, der die Konfiguration von mcron repräsentiert." #. type: item -#: guix-git/doc/guix.texi:17019 guix-git/doc/guix.texi:37434 +#: guix-git/doc/guix.texi:17381 guix-git/doc/guix.texi:37924 #, no-wrap msgid "@code{mcron} (default: @var{mcron})" msgstr "@code{mcron} (Vorgabe: @var{mcron})" #. type: table -#: guix-git/doc/guix.texi:17021 guix-git/doc/guix.texi:37436 +#: guix-git/doc/guix.texi:17383 guix-git/doc/guix.texi:37926 msgid "The mcron package to use." msgstr "Welches mcron-Paket benutzt werden soll." #. type: code{#1} -#: guix-git/doc/guix.texi:17022 guix-git/doc/guix.texi:17091 -#: guix-git/doc/guix.texi:37437 +#: guix-git/doc/guix.texi:17384 guix-git/doc/guix.texi:17453 +#: guix-git/doc/guix.texi:37927 #, no-wrap msgid "jobs" msgstr "jobs" #. type: table -#: guix-git/doc/guix.texi:17026 guix-git/doc/guix.texi:37441 +#: guix-git/doc/guix.texi:17388 guix-git/doc/guix.texi:37931 msgid "This is a list of gexps (@pxref{G-Expressions}), where each gexp corresponds to an mcron job specification (@pxref{Syntax, mcron job specifications,, mcron, GNU@tie{}mcron})." msgstr "Dies muss eine Liste von G-Ausdrücken sein (siehe @ref{G-Expressions}), die jeweils einer mcron-Auftragsspezifikation (der Spezifikation eines „Jobs“) entsprechen (siehe @ref{Syntax, mcron-Auftragsspezifikationen,, mcron, GNU@tie{}mcron})." #. type: cindex -#: guix-git/doc/guix.texi:17033 +#: guix-git/doc/guix.texi:17395 #, no-wrap msgid "rottlog" msgstr "rottlog" #. type: cindex -#: guix-git/doc/guix.texi:17034 +#: guix-git/doc/guix.texi:17396 #, no-wrap msgid "log rotation" msgstr "Log-Rotation" #. type: Plain text -#: guix-git/doc/guix.texi:17041 +#: guix-git/doc/guix.texi:17403 msgid "Log files such as those found in @file{/var/log} tend to grow endlessly, so it's a good idea to @dfn{rotate} them once in a while---i.e., archive their contents in separate files, possibly compressed. The @code{(gnu services admin)} module provides an interface to GNU@tie{}Rot[t]log, a log rotation tool (@pxref{Top,,, rottlog, GNU Rot[t]log Manual})." msgstr "Protokolldateien wie die in @file{/var/log} neigen dazu, bis ins Unendliche zu wachsen, deshalb ist es eine gute Idee, sie von Zeit zu Zeit zu @dfn{rotieren}@tie{}— d.h.@: ihren Inhalt in separaten Dateien zu archivieren, welche optional auch komprimiert werden. Das Modul @code{(gnu services admin)} stellt eine Schnittstelle zu GNU@tie{}Rot[t]log bereit, einem Werkzeug, um Protokolldateien („Log“-Dateien) zu rotieren (siehe @ref{Top,,, rottlog, GNU Rot[t]log Manual})." #. type: Plain text -#: guix-git/doc/guix.texi:17047 +#: guix-git/doc/guix.texi:17409 msgid "This service is part of @code{%base-services}, and thus enabled by default, with the default settings, for commonly encountered log files. The example below shows how to extend it with an additional @dfn{rotation}, should you need to do that (usually, services that produce log files already take care of that):" msgstr "Dieser Dienst ist Teil der @code{%base-services} und daher standardmäßig mit seinen Vorgabeeinstellungen für übliche Log-Dateien aktiv. Das Beispiel unten zeigt, wie Sie ihn um eine weitere @dfn{rotation} erweitern können, wenn dies nötig wird (normalerweise kümmern sich darum schon die Dienste, die die Log-Dateien erzeugen):" #. type: lisp -#: guix-git/doc/guix.texi:17051 +#: guix-git/doc/guix.texi:17413 #, no-wrap msgid "" "(use-modules (guix) (gnu))\n" @@ -31191,7 +31855,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:17055 +#: guix-git/doc/guix.texi:17417 #, no-wrap msgid "" "(define my-log-files\n" @@ -31205,7 +31869,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:17064 +#: guix-git/doc/guix.texi:17426 #, no-wrap msgid "" "(operating-system\n" @@ -31227,93 +31891,93 @@ msgstr "" " %base-services)))\n" #. type: defvr -#: guix-git/doc/guix.texi:17066 +#: guix-git/doc/guix.texi:17428 #, no-wrap msgid "{Scheme Variable} rottlog-service-type" msgstr "{Scheme-Variable} rottlog-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17069 +#: guix-git/doc/guix.texi:17431 msgid "This is the type of the Rottlog service, whose value is a @code{rottlog-configuration} object." msgstr "Dies ist der Typ des Rottlog-Dienstes, dessen Wert ein @code{rottlog-configuration}-Objekt ist." #. type: defvr -#: guix-git/doc/guix.texi:17072 +#: guix-git/doc/guix.texi:17434 msgid "Other services can extend this one with new @code{log-rotation} objects (see below), thereby augmenting the set of files to be rotated." msgstr "Andere Dienste können diesen Dienst um neue @code{log-rotation}-Objekte erweitern (siehe unten), wodurch die Auswahl an zu rotierenden Dateien ausgeweitet wird." #. type: defvr -#: guix-git/doc/guix.texi:17075 +#: guix-git/doc/guix.texi:17437 msgid "This service type can define mcron jobs (@pxref{Scheduled Job Execution}) to run the rottlog service." msgstr "Dieser Diensttyp kann mcron-Aufträge definieren (siehe @ref{Scheduled Job Execution}), die den rottlog-Dienst ausführen." #. type: deftp -#: guix-git/doc/guix.texi:17077 +#: guix-git/doc/guix.texi:17439 #, no-wrap msgid "{Data Type} rottlog-configuration" msgstr "{Datentyp} rottlog-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17079 +#: guix-git/doc/guix.texi:17441 msgid "Data type representing the configuration of rottlog." msgstr "Datentyp, der die Konfiguration von rottlog repräsentiert." #. type: item -#: guix-git/doc/guix.texi:17081 +#: guix-git/doc/guix.texi:17443 #, no-wrap msgid "@code{rottlog} (default: @code{rottlog})" msgstr "@code{rottlog} (Vorgabe: @code{rottlog})" #. type: table -#: guix-git/doc/guix.texi:17083 +#: guix-git/doc/guix.texi:17445 msgid "The Rottlog package to use." msgstr "Das Rottlog-Paket, das verwendet werden soll." #. type: item -#: guix-git/doc/guix.texi:17084 +#: guix-git/doc/guix.texi:17446 #, no-wrap msgid "@code{rc-file} (default: @code{(file-append rottlog \"/etc/rc\")})" msgstr "@code{rc-file} (Vorgabe: @code{(file-append rottlog \"/etc/rc\")})" #. type: table -#: guix-git/doc/guix.texi:17087 +#: guix-git/doc/guix.texi:17449 msgid "The Rottlog configuration file to use (@pxref{Mandatory RC Variables,,, rottlog, GNU Rot[t]log Manual})." msgstr "Die zu benutzende Rottlog-Konfigurationsdatei (siehe @ref{Mandatory RC Variables,,, rottlog, GNU Rot[t]log Manual})." #. type: item -#: guix-git/doc/guix.texi:17088 +#: guix-git/doc/guix.texi:17450 #, no-wrap msgid "@code{rotations} (default: @code{%default-rotations})" msgstr "@code{rotations} (Vorgabe: @code{%default-rotations})" #. type: table -#: guix-git/doc/guix.texi:17090 +#: guix-git/doc/guix.texi:17452 msgid "A list of @code{log-rotation} objects as defined below." msgstr "Eine Liste von @code{log-rotation}-Objekten, wie wir sie weiter unten definieren." #. type: table -#: guix-git/doc/guix.texi:17094 +#: guix-git/doc/guix.texi:17456 msgid "This is a list of gexps where each gexp corresponds to an mcron job specification (@pxref{Scheduled Job Execution})." msgstr "Dies ist eine Liste von G-Ausdrücken. Jeder G-Ausdruck darin entspricht einer mcron-Auftragsspezifikation (siehe @ref{Scheduled Job Execution})." #. type: deftp -#: guix-git/doc/guix.texi:17097 +#: guix-git/doc/guix.texi:17459 #, no-wrap msgid "{Data Type} log-rotation" msgstr "{Datentyp} log-rotation" #. type: deftp -#: guix-git/doc/guix.texi:17099 +#: guix-git/doc/guix.texi:17461 msgid "Data type representing the rotation of a group of log files." msgstr "Datentyp, der die Rotation einer Gruppe von Protokolldateien repräsentiert." #. type: deftp -#: guix-git/doc/guix.texi:17103 +#: guix-git/doc/guix.texi:17465 msgid "Taking an example from the Rottlog manual (@pxref{Period Related File Examples,,, rottlog, GNU Rot[t]log Manual}), a log rotation might be defined like this:" msgstr "Um ein Beispiel aus dem Rottlog-Handbuch (siehe @ref{Period Related File Examples,,, rottlog, GNU Rot[t]log Manual}) aufzugreifen: Eine Log-Rotation kann auf folgende Art definiert werden:" #. type: lisp -#: guix-git/doc/guix.texi:17112 +#: guix-git/doc/guix.texi:17474 #, no-wrap msgid "" "(log-rotation\n" @@ -31333,121 +31997,115 @@ msgstr "" " \"nocompress\")))\n" #. type: deftp -#: guix-git/doc/guix.texi:17115 +#: guix-git/doc/guix.texi:17477 msgid "The list of fields is as follows:" msgstr "Die Liste der Felder ist folgendermaßen aufgebaut:" #. type: item -#: guix-git/doc/guix.texi:17117 +#: guix-git/doc/guix.texi:17479 #, no-wrap msgid "@code{frequency} (default: @code{'weekly})" msgstr "@code{frequency} (Vorgabe: @code{'weekly})" #. type: table -#: guix-git/doc/guix.texi:17119 +#: guix-git/doc/guix.texi:17481 msgid "The log rotation frequency, a symbol." msgstr "Die Häufigkeit der Log-Rotation, dargestellt als englischsprachiges Symbol." -#. type: code{#1} -#: guix-git/doc/guix.texi:17120 -#, no-wrap -msgid "files" -msgstr "files" - #. type: table -#: guix-git/doc/guix.texi:17122 +#: guix-git/doc/guix.texi:17484 msgid "The list of files or file glob patterns to rotate." msgstr "Die Liste der Dateien oder Glob-Muster für Dateien, die rotiert werden sollen." #. type: item -#: guix-git/doc/guix.texi:17123 +#: guix-git/doc/guix.texi:17485 #, no-wrap msgid "@code{options} (default: @code{'()})" msgstr "@code{options} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17126 +#: guix-git/doc/guix.texi:17488 msgid "The list of rottlog options for this rotation (@pxref{Configuration parameters,,, rottlog, GNU Rot[t]lg Manual})." msgstr "Die Liste der Rottlog-Optionen für diese Rotation (siehe @ref{Configuration parameters,,, rottlog, GNU Rot[t]lg Manual})." #. type: item -#: guix-git/doc/guix.texi:17127 +#: guix-git/doc/guix.texi:17489 #, no-wrap msgid "@code{post-rotate} (default: @code{#f})" msgstr "@code{post-rotate} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17129 +#: guix-git/doc/guix.texi:17491 msgid "Either @code{#f} or a gexp to execute once the rotation has completed." msgstr "Entweder @code{#f} oder ein G-Ausdruck, der nach Abschluss der Rotation einmal ausgeführt wird." #. type: defvr -#: guix-git/doc/guix.texi:17132 +#: guix-git/doc/guix.texi:17494 #, no-wrap msgid "{Scheme Variable} %default-rotations" msgstr "{Scheme-Variable} %default-rotations" #. type: defvr -#: guix-git/doc/guix.texi:17135 +#: guix-git/doc/guix.texi:17497 msgid "Specifies weekly rotation of @code{%rotated-files} and of @file{/var/log/guix-daemon.log}." msgstr "Gibt wöchentliche Rotationen der @code{%rotated-files} und von @file{/var/log/guix-daemon.log} an." #. type: defvr -#: guix-git/doc/guix.texi:17137 +#: guix-git/doc/guix.texi:17499 #, no-wrap msgid "{Scheme Variable} %rotated-files" msgstr "{Scheme-Variable} %rotated-files" #. type: defvr -#: guix-git/doc/guix.texi:17141 +#: guix-git/doc/guix.texi:17503 msgid "The list of syslog-controlled files to be rotated. By default it is: @code{'(\"/var/log/messages\" \"/var/log/secure\" \"/var/log/debug\" \\ \"/var/log/maillog\")}." msgstr "Die Liste der von Syslog verwalteten Dateien, die rotiert werden sollen. Vorgegeben ist @code{'(\"/var/log/messages\" \"/var/log/secure\" \"/var/log/debug\" \"/var/log/maillog\")}." #. type: Plain text -#: guix-git/doc/guix.texi:17154 +#: guix-git/doc/guix.texi:17516 msgid "The @code{(gnu services networking)} module provides services to configure network interfaces and set up networking on your machine. Those services provide different ways for you to set up your machine: by declaring a static network configuration, by running a Dynamic Host Configuration Protocol (DHCP) client, or by running daemons such as NetworkManager and Connman that automate the whole process, automatically adapt to connectivity changes, and provide a high-level user interface." msgstr "Durch das Modul @code{(gnu services networking)} werden Dienste zum Konfigurieren der Netzwerkschnittstellen und zum Einrichten der Netzwerkverbindung Ihrer Maschine bereitgestellt. Die Dienste decken unterschiedliche Arten ab, wie Sie Ihre Maschine einrichten können: Sie können eine statische Netzwerkkonfiguration einrichten, einen Client für das Dynamic Host Configuration Protocol (DHCP) benutzen oder Daemons wie NetworkManager oder Connman einsetzen, mit denen der gesamte Vorgang automatisch abläuft, automatisch auf Änderungen an der Verbindung reagiert wird und eine abstrahierte Benutzerschnittstelle bereitgestellt wird." #. type: Plain text -#: guix-git/doc/guix.texi:17160 +#: guix-git/doc/guix.texi:17522 msgid "On a laptop, NetworkManager and Connman are by far the most convenient options, which is why the default desktop services include NetworkManager (@pxref{Desktop Services, @code{%desktop-services}}). For a server, or for a virtual machine or a container, static network configuration or a simple DHCP client are often more appropriate." msgstr "Auf einem Laptop sind NetworkManager und Connman bei weitem die komfortabelsten Optionen, darum enthalten die vorgegebenen Dienste für Desktop-Arbeitsumgebungen NetworkManager (siehe @ref{Desktop Services, @code{%desktop-services}}). Für einen Server, eine virtuelle Maschine oder einen Container sind eine statische Netzwerkkonfiguration oder ein schlichter DHCP-Client meist angemessener." #. type: Plain text -#: guix-git/doc/guix.texi:17163 +#: guix-git/doc/guix.texi:17525 msgid "This section describes the various network setup services available, starting with static network configuration." msgstr "Dieser Abschnitt beschreibt die verschiedenen Dienste zur Netzwerkeinrichtung, die Ihnen zur Verfügung stehen, angefangen bei der statischen Netzwerkkonfiguration." #. type: defvr -#: guix-git/doc/guix.texi:17164 +#: guix-git/doc/guix.texi:17526 #, no-wrap msgid "{Scheme Variable} static-networking-service-type" msgstr "{Scheme-Variable} static-networking-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17169 +#: guix-git/doc/guix.texi:17531 msgid "This is the type for statically-configured network interfaces. Its value must be a list of @code{static-networking} records. Each of them declares a set of @dfn{addresses}, @dfn{routes}, and @dfn{links}, as show below." msgstr "Dies ist der Diensttyp für statisch konfigurierte Netzwerkschnittstellen. Sein Wert muss eine Liste von @code{static-networking}-Verbundsobjekten sein. Jedes deklariert eine Menge von Adressen, Routen und Links, wie im Folgenden gezeigt." #. type: cindex -#: guix-git/doc/guix.texi:17170 +#: guix-git/doc/guix.texi:17532 #, no-wrap msgid "network interface controller (NIC)" msgstr "Netzwerkadapter (NIC)" #. type: cindex -#: guix-git/doc/guix.texi:17171 +#: guix-git/doc/guix.texi:17533 #, no-wrap msgid "NIC, networking interface controller" msgstr "Netzwerkkarte (NIC)" #. type: defvr -#: guix-git/doc/guix.texi:17174 +#: guix-git/doc/guix.texi:17536 msgid "Here is the simplest configuration, with only one network interface controller (NIC) and only IPv4 connectivity:" msgstr "Hier sehen Sie die einfachst mögliche Konfiguration, die nur über eine einzelne Netzwerkkarte („Network Interface Controller“, NIC) eine Verbindung nur für IPv4 herstellt." #. type: lisp -#: guix-git/doc/guix.texi:17188 +#: guix-git/doc/guix.texi:17550 #, no-wrap msgid "" ";; Static networking for one NIC, IPv4-only.\n" @@ -31477,28 +32135,28 @@ msgstr "" " (name-servers '(\"10.0.2.3\")))))\n" #. type: defvr -#: guix-git/doc/guix.texi:17197 +#: guix-git/doc/guix.texi:17559 msgid "The snippet above can be added to the @code{services} field of your operating system configuration (@pxref{Using the Configuration System}). It will configure your machine to have 10.0.2.15 as its IP address, with a 24-bit netmask for the local network---meaning that any 10.0.2.@var{x} address is on the local area network (LAN). Traffic to addresses outside the local network is routed @i{via} 10.0.2.2. Host names are resolved by sending domain name system (DNS) queries to 10.0.2.3." msgstr "Obiges Code-Schnipsel kann ins @code{services}-Feld Ihrer Betriebssystemkonfiguration eingetragen werden (siehe @ref{Using the Configuration System}), um Ihre Maschine mit 10.0.2.15 als ihre IP-Adresse zu versorgen mit einer 24-Bit-Netzmaske für das lokale Netzwerk@tie{}— also dass jede 10.0.2.@var{x}-Adresse im lokalen Netzwerk (LAN) ist. Kommunikation mit Adressen außerhalb des lokalen Netzwerks wird über 10.0.2.2 geleitet. Rechnernamen werden über Anfragen ans Domain Name System (DNS) an 10.0.2.3 aufgelöst." #. type: deftp -#: guix-git/doc/guix.texi:17199 +#: guix-git/doc/guix.texi:17561 #, no-wrap msgid "{Data Type} static-networking" msgstr "{Datentyp} static-networking" #. type: deftp -#: guix-git/doc/guix.texi:17201 +#: guix-git/doc/guix.texi:17563 msgid "This is the data type representing a static network configuration." msgstr "Dieser Datentyp repräsentiert eine statische Netzwerkkonfiguration." #. type: deftp -#: guix-git/doc/guix.texi:17205 +#: guix-git/doc/guix.texi:17567 msgid "As an example, here is how you would declare the configuration of a machine with a single network interface controller (NIC) available as @code{eno1}, and with one IPv4 and one IPv6 address:" msgstr "Folgendes Beispiel zeigt, wie Sie die Konfiguration einer Maschine deklarieren, die nur über eine einzelne Netzwerkkarte („Network Interface Controller“, NIC), die als @code{eno1} verfügbar ist, über eine IPv4-Adresse und eine IPv6-Adresse verbunden ist:" #. type: lisp -#: guix-git/doc/guix.texi:17222 +#: guix-git/doc/guix.texi:17584 #, no-wrap msgid "" ";; Network configuration for one NIC, IPv4 + IPv6.\n" @@ -31534,12 +32192,12 @@ msgstr "" " (name-servers '(\"10.0.2.3\")))\n" #. type: deftp -#: guix-git/doc/guix.texi:17228 +#: guix-git/doc/guix.texi:17590 msgid "If you are familiar with the @command{ip} command of the @uref{https://wiki.linuxfoundation.org/networking/iproute2, @code{iproute2} package} found on Linux-based systems, the declaration above is equivalent to typing:" msgstr "Wenn Sie mit dem Befehl @command{ip} aus dem @uref{https://wiki.linuxfoundation.org/networking/iproute2, @code{iproute2}-Paket} von Linux-basierten Systemen vertraut sind, sei erwähnt, dass obige Deklaration gleichbedeutend damit ist, wenn Sie dies eingeben:" #. type: example -#: guix-git/doc/guix.texi:17234 +#: guix-git/doc/guix.texi:17596 #, no-wrap msgid "" "ip address add 10.0.2.15/24 dev eno1\n" @@ -31553,353 +32211,353 @@ msgstr "" "ip route add default via inet6 2020:321:4567:42::1\n" #. type: deftp -#: guix-git/doc/guix.texi:17239 +#: guix-git/doc/guix.texi:17601 msgid "Run @command{man 8 ip} for more info. Venerable GNU/Linux users will certainly know how to do it with @command{ifconfig} and @command{route}, but we'll spare you that." msgstr "Führen Sie für mehr Informationen @command{man 8 ip} aus. Alteingesessene GNU/Linux-Nutzer werden sicherlich wissen, wie sie das mit @command{ifconfig} und @command{route} machen, aber wir ersparen es Ihnen." #. type: deftp -#: guix-git/doc/guix.texi:17241 +#: guix-git/doc/guix.texi:17603 msgid "The available fields of this data type are as follows:" msgstr "Für den Datentyp stehen folgende Felder zur Verfügung:" #. type: code{#1} -#: guix-git/doc/guix.texi:17243 +#: guix-git/doc/guix.texi:17605 #, no-wrap msgid "addresses" msgstr "addresses" #. type: itemx -#: guix-git/doc/guix.texi:17244 +#: guix-git/doc/guix.texi:17606 #, no-wrap msgid "@code{links} (default: @code{'()})" msgstr "@code{links} (Vorgabe: @code{'()})" #. type: itemx -#: guix-git/doc/guix.texi:17245 +#: guix-git/doc/guix.texi:17607 #, no-wrap msgid "@code{routes} (default: @code{'()})" msgstr "@code{routes} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17248 +#: guix-git/doc/guix.texi:17610 msgid "The list of @code{network-address}, @code{network-link}, and @code{network-route} records for this network (see below)." msgstr "Die Liste der @code{network-address}-, @code{network-link}- und @code{network-route}-Verbundsobjekte für dieses Netzwerk (siehe unten)." #. type: item -#: guix-git/doc/guix.texi:17249 +#: guix-git/doc/guix.texi:17611 #, no-wrap msgid "@code{name-servers} (default: @code{'()})" msgstr "@code{name-servers} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17252 +#: guix-git/doc/guix.texi:17614 msgid "The list of IP addresses (strings) of domain name servers. These IP addresses go to @file{/etc/resolv.conf}." msgstr "Die Liste der IP-Adressen (als Zeichenketten) der DNS-Server. Diese IP-Adressen werden in @file{/etc/resolv.conf} geschrieben." #. type: item -#: guix-git/doc/guix.texi:17253 +#: guix-git/doc/guix.texi:17615 #, no-wrap msgid "@code{provision} (default: @code{'(networking)})" msgstr "@code{provision} (Vorgabe: @code{'(networking)})" #. type: table -#: guix-git/doc/guix.texi:17256 +#: guix-git/doc/guix.texi:17618 msgid "If true, this should be a list of symbols for the Shepherd service corresponding to this network configuration." msgstr "Wenn dies ein wahrer Wert ist, bezeichnet dies die Liste von Symbolen für den Shepherd-Dienst, der dieser Netzwerkkonfiguration entspricht." #. type: item -#: guix-git/doc/guix.texi:17257 +#: guix-git/doc/guix.texi:17619 #, no-wrap msgid "@code{requirement} (default @code{'()})" msgstr "@code{requirement} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17259 +#: guix-git/doc/guix.texi:17621 msgid "The list of Shepherd services depended on." msgstr "Die Liste der Shepherd-Dienste, von denen dieser abhängt." #. type: deftp -#: guix-git/doc/guix.texi:17262 +#: guix-git/doc/guix.texi:17624 #, no-wrap msgid "{Data Type} network-address" msgstr "{Datentyp} network-address" #. type: deftp -#: guix-git/doc/guix.texi:17265 +#: guix-git/doc/guix.texi:17627 msgid "This is the data type representing the IP address of a network interface." msgstr "Dieser Datentyp repräsentiert die IP-Adresse einer Netzwerkschnittstelle." #. type: table -#: guix-git/doc/guix.texi:17270 +#: guix-git/doc/guix.texi:17632 msgid "The name of the network interface for this address---e.g., @code{\"eno1\"}." msgstr "Der Name der Netzwerkschnittstelle, die für diese Adresse benutzt wird@tie{}— z.B.@: @code{\"eno1\"}." #. type: item -#: guix-git/doc/guix.texi:17271 +#: guix-git/doc/guix.texi:17633 #, no-wrap msgid "value" msgstr "value" #. type: table -#: guix-git/doc/guix.texi:17275 +#: guix-git/doc/guix.texi:17637 msgid "The actual IP address and network mask, in @uref{https://en.wikipedia.org/wiki/CIDR#CIDR_notation, @acronym{CIDR, Classless Inter-Domain Routing} notation}, as a string." msgstr "Die eigentliche IP-Adresse und Netzwerkmaske in @uref{https://de.wikipedia.org/wiki/Classless_Inter-Domain_Routing, CIDR-Notation} als Zeichenkette." #. type: table -#: guix-git/doc/guix.texi:17279 +#: guix-git/doc/guix.texi:17641 msgid "For example, @code{\"10.0.2.15/24\"} denotes IPv4 address 10.0.2.15 on a 24-bit sub-network---all 10.0.2.@var{x} addresses are on the same local network." msgstr "Zum Beispiel bezeichnet @code{\"10.0.2.15/24\"} die IPv4-Adresse 10.0.2.15 auf einem Subnetzwerk, dessen erste 24 Bit gleich sind@tie{}— alle 10.0.2.@var{x}-Adressen befinden sich im selben lokalen Netzwerk" #. type: item -#: guix-git/doc/guix.texi:17280 +#: guix-git/doc/guix.texi:17642 #, no-wrap msgid "ipv6?" msgstr "ipv6?" #. type: table -#: guix-git/doc/guix.texi:17283 +#: guix-git/doc/guix.texi:17645 msgid "Whether @code{value} denotes an IPv6 address. By default this is automatically determined." msgstr "Ob mit @code{value} eine IPv6-Adresse angegeben wird. Vorgegeben ist, dies automatisch festzustellen." #. type: deftp -#: guix-git/doc/guix.texi:17286 +#: guix-git/doc/guix.texi:17648 #, no-wrap msgid "{Data Type} network-route" msgstr "{Datentyp} network-route" #. type: deftp -#: guix-git/doc/guix.texi:17288 +#: guix-git/doc/guix.texi:17650 msgid "This is the data type representing a network route." msgstr "Dieser Datentyp steht für eine Netzwerkroute." #. type: code{#1} -#: guix-git/doc/guix.texi:17290 +#: guix-git/doc/guix.texi:17652 #, no-wrap msgid "destination" msgstr "destination" #. type: table -#: guix-git/doc/guix.texi:17293 +#: guix-git/doc/guix.texi:17655 msgid "The route destination (a string), either an IP address or @code{\"default\"} to denote the default route." msgstr "Das Ziel der Route (als Zeichenkette) entweder mit einer IP-Adresse oder @code{\"default\"} zum Einstellen der Vorgaberoute." #. type: item -#: guix-git/doc/guix.texi:17294 +#: guix-git/doc/guix.texi:17656 #, no-wrap msgid "@code{source} (default: @code{#f})" msgstr "@code{source} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17296 +#: guix-git/doc/guix.texi:17658 msgid "The route source." msgstr "Die Quelle der Route." #. type: item -#: guix-git/doc/guix.texi:17297 guix-git/doc/guix.texi:34761 +#: guix-git/doc/guix.texi:17659 guix-git/doc/guix.texi:35200 #, no-wrap msgid "@code{device} (default: @code{#f})" msgstr "@code{device} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17299 +#: guix-git/doc/guix.texi:17661 msgid "The device used for this route---e.g., @code{\"eno2\"}." msgstr "Welches Gerät für diese Route benutzt wird@tie{}— z.B.@: @code{\"eno2\"}." #. type: item -#: guix-git/doc/guix.texi:17300 +#: guix-git/doc/guix.texi:17662 #, no-wrap msgid "@code{ipv6?} (default: auto)" msgstr "@code{ipv6?} (Vorgabe: automatisch)" #. type: table -#: guix-git/doc/guix.texi:17303 +#: guix-git/doc/guix.texi:17665 msgid "Whether this is an IPv6 route. By default this is automatically determined based on @code{destination} or @code{gateway}." msgstr "Ob es sich um eine IPv6-Route handelt. Das vorgegebene Verhalten ist, dies automatisch anhand des Eintrags in @code{destination} oder @code{gateway} zu bestimmen." #. type: item -#: guix-git/doc/guix.texi:17304 +#: guix-git/doc/guix.texi:17666 #, no-wrap msgid "@code{gateway} (default: @code{#f})" msgstr "@code{gateway} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17306 +#: guix-git/doc/guix.texi:17668 msgid "IP address (a string) through which traffic is routed." msgstr "Die IP-Adresse des Netzwerkzugangs (als Zeichenkette), über die der Netzwerkverkehr geleitet wird." #. type: deftp -#: guix-git/doc/guix.texi:17309 +#: guix-git/doc/guix.texi:17671 #, no-wrap msgid "{Data Type} network-link" msgstr "{Datentyp} network-link" #. type: deftp -#: guix-git/doc/guix.texi:17312 +#: guix-git/doc/guix.texi:17674 msgid "Data type for a network link (@pxref{Link,,, guile-netlink, Guile-Netlink Manual})." msgstr "Der Datentyp für einen Netzwerk-Link (siehe @ref{Link,,, guile-netlink, Guile-Netlink-Handbuch})." #. type: table -#: guix-git/doc/guix.texi:17316 +#: guix-git/doc/guix.texi:17678 msgid "The name of the link---e.g., @code{\"v0p0\"}." msgstr "Der Name des Links@tie{}— z.B.@: @code{\"v0p0\"}." #. type: table -#: guix-git/doc/guix.texi:17319 +#: guix-git/doc/guix.texi:17681 msgid "A symbol denoting the type of the link---e.g., @code{'veth}." msgstr "Eine Zeichenkette, die für den Typ des Links steht@tie{}— z.B.@: @code{'veth}." #. type: item -#: guix-git/doc/guix.texi:17320 +#: guix-git/doc/guix.texi:17682 #, no-wrap msgid "arguments" msgstr "arguments" #. type: table -#: guix-git/doc/guix.texi:17322 +#: guix-git/doc/guix.texi:17684 msgid "List of arguments for this type of link." msgstr "Eine Liste der Argumente für diesen Link-Typ." #. type: cindex -#: guix-git/doc/guix.texi:17325 +#: guix-git/doc/guix.texi:17687 #, no-wrap msgid "loopback device" msgstr "Loopback-Gerät" #. type: defvr -#: guix-git/doc/guix.texi:17326 +#: guix-git/doc/guix.texi:17688 #, no-wrap msgid "{Scheme Variable} %loopback-static-networking" msgstr "{Scheme-Variable} %loopback-static-networking" #. type: defvr -#: guix-git/doc/guix.texi:17330 +#: guix-git/doc/guix.texi:17692 msgid "This is the @code{static-networking} record representing the ``loopback device'', @code{lo}, for IP addresses 127.0.0.1 and ::1, and providing the @code{loopback} Shepherd service." msgstr "Dies ist das @code{static-networking}-Verbundsobjekt, das für das „Loopback-Gerät“ @code{lo} steht, mit IP-Adressen 127.0.0.1 und ::1, was den Shepherd-Dienst @code{loopback} zur Verfügung stellt." #. type: cindex -#: guix-git/doc/guix.texi:17332 +#: guix-git/doc/guix.texi:17694 #, no-wrap msgid "networking, with QEMU" msgstr "Netzwerkanbindung, für QEMU" #. type: cindex -#: guix-git/doc/guix.texi:17333 +#: guix-git/doc/guix.texi:17695 #, no-wrap msgid "QEMU, networking" msgstr "QEMU, Netzwerkanbindung" #. type: defvr -#: guix-git/doc/guix.texi:17334 +#: guix-git/doc/guix.texi:17696 #, no-wrap msgid "{Scheme Variable} %qemu-static-networking" msgstr "{Scheme-Variable} %qemu-static-networking" #. type: defvr -#: guix-git/doc/guix.texi:17338 +#: guix-git/doc/guix.texi:17700 msgid "This is the @code{static-networking} record representing network setup when using QEMU's user-mode network stack on @code{eth0} (@pxref{Using the user mode network stack,,, QEMU, QEMU Documentation})." msgstr "Dies ist das @code{static-networking}-Verbundsobjekt, das für eine Netzwerkeinrichtung mit QEMUs als Nutzer ausgeführtem Netzwerkstapel („User-Mode Network Stack“) auf dem Gerät @code{eth0} steht (siehe @ref{Using the user mode network stack,,, QEMU, QEMU Documentation})." #. type: cindex -#: guix-git/doc/guix.texi:17340 +#: guix-git/doc/guix.texi:17702 #, no-wrap msgid "DHCP, networking service" msgstr "DHCP, Netzwerkdienst" #. type: defvr -#: guix-git/doc/guix.texi:17341 +#: guix-git/doc/guix.texi:17703 #, no-wrap msgid "{Scheme Variable} dhcp-client-service-type" msgstr "{Scheme-Variable} dhcp-client-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17345 +#: guix-git/doc/guix.texi:17707 msgid "This is the type of services that run @var{dhcp}, a Dynamic Host Configuration Protocol (DHCP) client, on all the non-loopback network interfaces. Its value is the DHCP client package to use, @code{isc-dhcp} by default." msgstr "Dies ist der Diensttyp für den Dienst, der @var{dhcp} ausführt, einen Client für das „Dynamic Host Configuration Protocol“ (DHCP), der auf allen Netzwerkschnittstellen außer „loopback“ läuft. Sein Wert ist das zu verwendende DHCP-Client-Paket; vorgegeben ist @code{isc-dhcp}." #. type: cindex -#: guix-git/doc/guix.texi:17347 +#: guix-git/doc/guix.texi:17709 #, no-wrap msgid "NetworkManager" msgstr "NetworkManager" #. type: defvr -#: guix-git/doc/guix.texi:17349 +#: guix-git/doc/guix.texi:17711 #, no-wrap msgid "{Scheme Variable} network-manager-service-type" msgstr "{Scheme-Variable} network-manager-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17354 +#: guix-git/doc/guix.texi:17716 msgid "This is the service type for the @uref{https://wiki.gnome.org/Projects/NetworkManager, NetworkManager} service. The value for this service type is a @code{network-manager-configuration} record." msgstr "Dies ist der Diensttyp für den @uref{https://wiki.gnome.org/Projects/NetworkManager, NetworkManager-Dienst}. Der Wert dieses Diensttyps ist ein @code{network-manager-configuration}-Verbundsobjekt." #. type: defvr -#: guix-git/doc/guix.texi:17357 guix-git/doc/guix.texi:17509 -#: guix-git/doc/guix.texi:17538 +#: guix-git/doc/guix.texi:17719 guix-git/doc/guix.texi:17871 +#: guix-git/doc/guix.texi:17900 msgid "This service is part of @code{%desktop-services} (@pxref{Desktop Services})." msgstr "Dieser Dienst gehört zu den @code{%desktop-services} (siehe @ref{Desktop Services})." #. type: deftp -#: guix-git/doc/guix.texi:17359 +#: guix-git/doc/guix.texi:17721 #, no-wrap msgid "{Data Type} network-manager-configuration" msgstr "{Datentyp} network-manager-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17361 +#: guix-git/doc/guix.texi:17723 msgid "Data type representing the configuration of NetworkManager." msgstr "Datentyp, der die Konfiguration von NetworkManager repräsentiert." #. type: item -#: guix-git/doc/guix.texi:17363 +#: guix-git/doc/guix.texi:17725 #, no-wrap msgid "@code{network-manager} (default: @code{network-manager})" msgstr "@code{network-manager} (Vorgabe: @code{network-manager})" #. type: table -#: guix-git/doc/guix.texi:17365 +#: guix-git/doc/guix.texi:17727 msgid "The NetworkManager package to use." msgstr "Das zu verwendende NetworkManager-Paket." #. type: item -#: guix-git/doc/guix.texi:17366 +#: guix-git/doc/guix.texi:17728 #, no-wrap msgid "@code{dns} (default: @code{\"default\"})" msgstr "@code{dns} (Vorgabe: @code{\"default\"})" #. type: table -#: guix-git/doc/guix.texi:17369 +#: guix-git/doc/guix.texi:17731 msgid "Processing mode for DNS, which affects how NetworkManager uses the @code{resolv.conf} configuration file." msgstr "Der Verarbeitungsmodus für DNS-Anfragen. Er hat Einfluss darauf, wie NetworkManager mit der Konfigurationsdatei @code{resolv.conf} verfährt." #. type: table -#: guix-git/doc/guix.texi:17374 +#: guix-git/doc/guix.texi:17736 msgid "NetworkManager will update @code{resolv.conf} to reflect the nameservers provided by currently active connections." msgstr "NetworkManager aktualisiert @code{resolv.conf}, damit sie die Nameserver enthält, die von zurzeit aktiven Verbindungen benutzt werden." #. type: item -#: guix-git/doc/guix.texi:17375 +#: guix-git/doc/guix.texi:17737 #, no-wrap msgid "dnsmasq" msgstr "dnsmasq" #. type: table -#: guix-git/doc/guix.texi:17379 +#: guix-git/doc/guix.texi:17741 msgid "NetworkManager will run @code{dnsmasq} as a local caching nameserver, using a @dfn{conditional forwarding} configuration if you are connected to a VPN, and then update @code{resolv.conf} to point to the local nameserver." msgstr "NetworkManager führt @code{dnsmasq} als lokal zwischenspeichernden Nameserver aus und aktualisiert @code{resolv.conf} so, dass es auf den lokalen Nameserver verweist. Falls Sie mit einem VPN verbunden sind, wird dafür eine getrennte DNS-Auflösung verwendet („Conditional Forwarding“)." #. type: table -#: guix-git/doc/guix.texi:17385 +#: guix-git/doc/guix.texi:17747 msgid "With this setting, you can share your network connection. For example when you want to share your network connection to another laptop @i{via} an Ethernet cable, you can open @command{nm-connection-editor} and configure the Wired connection's method for IPv4 and IPv6 to be ``Shared to other computers'' and reestablish the connection (or reboot)." msgstr "Mit dieser Einstellung können Sie Ihre Netzwerkverbindung teilen. Wenn Sie sie zum Beispiel mit einem anderen Laptop über ein Ethernet-Kabel teilen möchten, können Sie @command{nm-connection-editor} öffnen und die Methode der Ethernet-Verbindung für IPv4 und IPv6 auf „Gemeinsam mit anderen Rechnern“ stellen und daraufhin die Verbindung neu herstellen (oder Ihren Rechner neu starten)." #. type: table -#: guix-git/doc/guix.texi:17392 +#: guix-git/doc/guix.texi:17754 msgid "You can also set up a @dfn{host-to-guest connection} to QEMU VMs (@pxref{Installing Guix in a VM}). With a host-to-guest connection, you can e.g.@: access a Web server running on the VM (@pxref{Web Services}) from a Web browser on your host system, or connect to the VM @i{via} SSH (@pxref{Networking Services, @code{openssh-service-type}}). To set up a host-to-guest connection, run this command once:" msgstr "Sie können so auch eine Verbindung vom Wirts- zum Gastsystem in virtuellen Maschinen mit QEMU (siehe @ref{Installing Guix in a VM}) herstellen, d.h.@: eine „Host-to-Guest Connection“). Mit einer solchen Wirt-nach-Gast-Verbindung können Sie z.B.@: von einem Webbrowser auf Ihrem Wirtssystem auf einen Web-Server zugreifen, der auf der VM läuft (siehe @ref{Web Services}). Sie können sich damit auch über SSH mit der virtuellen Maschine verbinden (siehe @ref{Networking Services, @code{openssh-service-type}}). Um eine Wirt-nach-Gast-Verbindung einzurichten, führen Sie einmal diesen Befehl aus:" #. type: example -#: guix-git/doc/guix.texi:17399 +#: guix-git/doc/guix.texi:17761 #, no-wrap msgid "" "nmcli connection add type tun \\\n" @@ -31915,50 +32573,50 @@ msgstr "" " ipv4.addresses 172.28.112.1/24\n" #. type: table -#: guix-git/doc/guix.texi:17404 +#: guix-git/doc/guix.texi:17766 msgid "Then each time you launch your QEMU VM (@pxref{Running Guix in a VM}), pass @option{-nic tap,ifname=tap0,script=no,downscript=no} to @command{qemu-system-...}." msgstr "Danach geben Sie bei jedem Start Ihrer virtuellen QEMU-Maschine (siehe @ref{Running Guix in a VM}) die Befehlszeilenoption @option{-nic tap,ifname=tap0,script=no,downscript=no} an @command{qemu-system-…} mit." #. type: table -#: guix-git/doc/guix.texi:17407 +#: guix-git/doc/guix.texi:17769 msgid "NetworkManager will not modify @code{resolv.conf}." msgstr "NetworkManager verändert @code{resolv.conf} nicht." #. type: item -#: guix-git/doc/guix.texi:17409 +#: guix-git/doc/guix.texi:17771 #, no-wrap msgid "@code{vpn-plugins} (default: @code{'()})" msgstr "@code{vpn-plugins} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17413 +#: guix-git/doc/guix.texi:17775 msgid "This is the list of available plugins for virtual private networks (VPNs). An example of this is the @code{network-manager-openvpn} package, which allows NetworkManager to manage VPNs @i{via} OpenVPN." msgstr "Dies ist die Liste der verfügbaren Plugins für virtuelle private Netzwerke (VPN). Zum Beispiel kann das Paket @code{network-manager-openvpn} angegeben werden, womit NetworkManager virtuelle private Netzwerke mit OpenVPN verwalten kann." #. type: cindex -#: guix-git/doc/guix.texi:17417 +#: guix-git/doc/guix.texi:17779 #, no-wrap msgid "Connman" msgstr "Connman" #. type: deffn -#: guix-git/doc/guix.texi:17418 +#: guix-git/doc/guix.texi:17780 #, no-wrap msgid "{Scheme Variable} connman-service-type" msgstr "{Scheme-Variable} connman-service-type" #. type: deffn -#: guix-git/doc/guix.texi:17421 +#: guix-git/doc/guix.texi:17783 msgid "This is the service type to run @url{https://01.org/connman,Connman}, a network connection manager." msgstr "Mit diesem Diensttyp wird @url{https://01.org/connman,Connman} ausgeführt, ein Programm zum Verwalten von Netzwerkverbindungen." #. type: deffn -#: guix-git/doc/guix.texi:17424 +#: guix-git/doc/guix.texi:17786 msgid "Its value must be an @code{connman-configuration} record as in this example:" msgstr "Sein Wert muss ein @code{connman-configuration}-Verbundsobjekt wie im folgenden Beispiel sein:" #. type: lisp -#: guix-git/doc/guix.texi:17429 +#: guix-git/doc/guix.texi:17791 #, no-wrap msgid "" "(service connman-service-type\n" @@ -31970,311 +32628,311 @@ msgstr "" " (disable-vpn? #t)))\n" #. type: deffn -#: guix-git/doc/guix.texi:17432 +#: guix-git/doc/guix.texi:17794 msgid "See below for details about @code{connman-configuration}." msgstr "Weiter unten werden Details der @code{connman-configuration} erklärt." #. type: deftp -#: guix-git/doc/guix.texi:17434 +#: guix-git/doc/guix.texi:17796 #, no-wrap msgid "{Data Type} connman-configuration" msgstr "{Datentyp} connman-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17436 +#: guix-git/doc/guix.texi:17798 msgid "Data Type representing the configuration of connman." msgstr "Datentyp, der die Konfiguration von Connman repräsentiert." #. type: item -#: guix-git/doc/guix.texi:17438 +#: guix-git/doc/guix.texi:17800 #, no-wrap msgid "@code{connman} (default: @var{connman})" msgstr "@code{connman} (Vorgabe: @var{connman})" #. type: table -#: guix-git/doc/guix.texi:17440 +#: guix-git/doc/guix.texi:17802 msgid "The connman package to use." msgstr "Das zu verwendende Connman-Paket." #. type: item -#: guix-git/doc/guix.texi:17441 +#: guix-git/doc/guix.texi:17803 #, no-wrap msgid "@code{disable-vpn?} (default: @code{#f})" msgstr "@code{disable-vpn?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17443 +#: guix-git/doc/guix.texi:17805 msgid "When true, disable connman's vpn plugin." msgstr "Falls dies auf wahr gesetzt ist, wird Connmans VPN-Plugin deaktiviert." #. type: cindex -#: guix-git/doc/guix.texi:17446 +#: guix-git/doc/guix.texi:17808 #, no-wrap msgid "WPA Supplicant" msgstr "WPA-Supplikant" #. type: defvr -#: guix-git/doc/guix.texi:17447 +#: guix-git/doc/guix.texi:17809 #, no-wrap msgid "{Scheme Variable} wpa-supplicant-service-type" msgstr "{Scheme-Variable} wpa-supplicant-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17451 +#: guix-git/doc/guix.texi:17813 msgid "This is the service type to run @url{https://w1.fi/wpa_supplicant/,WPA supplicant}, an authentication daemon required to authenticate against encrypted WiFi or ethernet networks." msgstr "Dies ist der Diensttyp, um @url{https://w1.fi/wpa_supplicant/,WPA Supplicant} auszuführen. Dabei handelt es sich um einen Authentisierungsdaemon, der notwendig ist, um sich gegenüber verschlüsselten WLAN- oder Ethernet-Netzwerken zu authentisieren." #. type: deftp -#: guix-git/doc/guix.texi:17453 +#: guix-git/doc/guix.texi:17815 #, no-wrap msgid "{Data Type} wpa-supplicant-configuration" msgstr "{Datentyp} wpa-supplicant-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17455 +#: guix-git/doc/guix.texi:17817 msgid "Data type representing the configuration of WPA Supplicant." msgstr "Repräsentiert die Konfiguration des WPA-Supplikanten." #. type: deftp -#: guix-git/doc/guix.texi:17457 guix-git/doc/guix.texi:32945 +#: guix-git/doc/guix.texi:17819 guix-git/doc/guix.texi:33310 msgid "It takes the following parameters:" msgstr "Sie hat folgende Parameter:" #. type: item -#: guix-git/doc/guix.texi:17459 +#: guix-git/doc/guix.texi:17821 #, no-wrap msgid "@code{wpa-supplicant} (default: @code{wpa-supplicant})" msgstr "@code{wpa-supplicant} (Vorgabe: @code{wpa-supplicant})" #. type: table -#: guix-git/doc/guix.texi:17461 +#: guix-git/doc/guix.texi:17823 msgid "The WPA Supplicant package to use." msgstr "Das WPA-Supplicant-Paket, was benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:17462 +#: guix-git/doc/guix.texi:17824 #, no-wrap msgid "@code{requirement} (default: @code{'(user-processes loopback syslogd)}" msgstr "@code{requirement} (Vorgabe: @code{'(user-processes loopback syslogd)}" #. type: table -#: guix-git/doc/guix.texi:17464 +#: guix-git/doc/guix.texi:17826 msgid "List of services that should be started before WPA Supplicant starts." msgstr "Die Liste der Dienste, die vor dem WPA-Supplikanten bereits gestartet sein sollen." #. type: item -#: guix-git/doc/guix.texi:17465 +#: guix-git/doc/guix.texi:17827 #, no-wrap msgid "@code{dbus?} (default: @code{#t})" msgstr "@code{dbus?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:17467 +#: guix-git/doc/guix.texi:17829 msgid "Whether to listen for requests on D-Bus." msgstr "Ob auf Anfragen auf D-Bus gelauscht werden soll." #. type: item -#: guix-git/doc/guix.texi:17468 +#: guix-git/doc/guix.texi:17830 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/wpa_supplicant.pid\"})" msgstr "@code{pid-file} (Vorgabe: @code{\"/var/run/wpa_supplicant.pid\"})" #. type: table -#: guix-git/doc/guix.texi:17470 +#: guix-git/doc/guix.texi:17832 msgid "Where to store the PID file." msgstr "Wo die PID-Datei abgelegt wird." #. type: item -#: guix-git/doc/guix.texi:17471 guix-git/doc/guix.texi:31246 -#: guix-git/doc/guix.texi:31388 +#: guix-git/doc/guix.texi:17833 guix-git/doc/guix.texi:31611 +#: guix-git/doc/guix.texi:31753 #, no-wrap msgid "@code{interface} (default: @code{#f})" msgstr "@code{interface} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17474 +#: guix-git/doc/guix.texi:17836 msgid "If this is set, it must specify the name of a network interface that WPA supplicant will control." msgstr "Wenn dieses Feld gesetzt ist, muss es den Namen einer Netzwerkschnittstelle angeben, die von WPA Supplicant verwaltet werden soll." #. type: item -#: guix-git/doc/guix.texi:17475 guix-git/doc/guix.texi:17591 -#: guix-git/doc/guix.texi:22879 +#: guix-git/doc/guix.texi:17837 guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:23241 #, no-wrap msgid "@code{config-file} (default: @code{#f})" msgstr "@code{config-file} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17477 +#: guix-git/doc/guix.texi:17839 msgid "Optional configuration file to use." msgstr "Optionale Konfigurationsdatei." #. type: table -#: guix-git/doc/guix.texi:17480 +#: guix-git/doc/guix.texi:17842 msgid "List of additional command-line arguments to pass to the daemon." msgstr "Liste zusätzlicher Befehlszeilenoptionen, die an den Daemon übergeben werden." #. type: cindex -#: guix-git/doc/guix.texi:17483 +#: guix-git/doc/guix.texi:17845 #, no-wrap msgid "wicd" msgstr "wicd" #. type: cindex -#: guix-git/doc/guix.texi:17486 +#: guix-git/doc/guix.texi:17848 #, no-wrap msgid "network management" msgstr "Netzwerkverwaltung" #. type: deffn -#: guix-git/doc/guix.texi:17487 +#: guix-git/doc/guix.texi:17849 #, no-wrap msgid "{Scheme Procedure} wicd-service [#:wicd @var{wicd}]" msgstr "{Scheme-Prozedur} wicd-service [#:wicd @var{wicd}]" #. type: deffn -#: guix-git/doc/guix.texi:17490 +#: guix-git/doc/guix.texi:17852 msgid "Return a service that runs @url{https://launchpad.net/wicd,Wicd}, a network management daemon that aims to simplify wired and wireless networking." msgstr "Liefert einen Dienst, der @url{https://launchpad.net/wicd,Wicd} ausführt, einen Netzwerkverwaltungsdaemon, um ein einfacheres Einrichten kabelgebundener und drahtloser Netzwerkanbindungen zu ermöglichen." #. type: deffn -#: guix-git/doc/guix.texi:17495 +#: guix-git/doc/guix.texi:17857 msgid "This service adds the @var{wicd} package to the global profile, providing several commands to interact with the daemon and configure networking: @command{wicd-client}, a graphical user interface, and the @command{wicd-cli} and @command{wicd-curses} user interfaces." msgstr "Dieser Dienst fügt das @var{wicd}-Paket zum globalen Profil hinzu und stellt dadurch mehrere Befehle zur Verfügung, um mit dem Daemon zu interagieren und Netzwerke einzurichten: @command{wicd-client}, eine grafische Benutzeroberfläche, und die Benutzungsschnittstellen @command{wicd-cli} und @command{wicd-curses}." #. type: cindex -#: guix-git/doc/guix.texi:17497 +#: guix-git/doc/guix.texi:17859 #, no-wrap msgid "ModemManager" msgstr "ModemManager" #. type: Plain text -#: guix-git/doc/guix.texi:17500 +#: guix-git/doc/guix.texi:17862 msgid "Some networking devices such as modems require special care, and this is what the services below focus on." msgstr "Manche Netzwerkgeräte wie Modems brauchen eine besondere Behandlung, worauf die folgenden Dienste abzielen." #. type: defvr -#: guix-git/doc/guix.texi:17501 +#: guix-git/doc/guix.texi:17863 #, no-wrap msgid "{Scheme Variable} modem-manager-service-type" msgstr "{Scheme-Variable} modem-manager-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17506 +#: guix-git/doc/guix.texi:17868 msgid "This is the service type for the @uref{https://wiki.gnome.org/Projects/ModemManager, ModemManager} service. The value for this service type is a @code{modem-manager-configuration} record." msgstr "Dies ist der Diensttyp für den @uref{https://wiki.gnome.org/Projects/ModemManager, ModemManager-Dienst}. Der Wert dieses Diensttyps ist ein @code{modem-manager-configuration}-Verbundsobjekt." #. type: deftp -#: guix-git/doc/guix.texi:17511 +#: guix-git/doc/guix.texi:17873 #, no-wrap msgid "{Data Type} modem-manager-configuration" msgstr "{Datentyp} modem-manager-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17513 +#: guix-git/doc/guix.texi:17875 msgid "Data type representing the configuration of ModemManager." msgstr "Repräsentiert die Konfiguration vom ModemManager." #. type: item -#: guix-git/doc/guix.texi:17515 +#: guix-git/doc/guix.texi:17877 #, no-wrap msgid "@code{modem-manager} (default: @code{modem-manager})" msgstr "@code{modem-manager} (Vorgabe: @code{modem-manager})" #. type: table -#: guix-git/doc/guix.texi:17517 +#: guix-git/doc/guix.texi:17879 msgid "The ModemManager package to use." msgstr "Das ModemManager-Paket, was benutzt werden soll." #. type: cindex -#: guix-git/doc/guix.texi:17521 +#: guix-git/doc/guix.texi:17883 #, no-wrap msgid "USB_ModeSwitch" msgstr "USB_ModeSwitch" #. type: cindex -#: guix-git/doc/guix.texi:17522 +#: guix-git/doc/guix.texi:17884 #, no-wrap msgid "Modeswitching" msgstr "Modeswitching" #. type: defvr -#: guix-git/doc/guix.texi:17524 +#: guix-git/doc/guix.texi:17886 #, no-wrap msgid "{Scheme Variable} usb-modeswitch-service-type" msgstr "{Scheme-Variable} usb-modeswitch-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17529 +#: guix-git/doc/guix.texi:17891 msgid "This is the service type for the @uref{https://www.draisberghof.de/usb_modeswitch/, USB_ModeSwitch} service. The value for this service type is a @code{usb-modeswitch-configuration} record." msgstr "Dies ist der Diensttyp für den @uref{https://www.draisberghof.de/usb_modeswitch/, USB_ModeSwitch-Dienst}. Der Wert dieses Diensttyps ist ein @code{usb-modeswitch-configuration}-Verbundsobjekt." #. type: defvr -#: guix-git/doc/guix.texi:17535 +#: guix-git/doc/guix.texi:17897 msgid "When plugged in, some USB modems (and other USB devices) initially present themselves as a read-only storage medium and not as a modem. They need to be @dfn{modeswitched} before they are usable. The USB_ModeSwitch service type installs udev rules to automatically modeswitch these devices when they are plugged in." msgstr "Wenn sie eingesteckt werden, geben sich manche USB-Modems (und andere USB-Geräte) zunächst als Nur-Lese-Speichermedien und nicht als Modem aus. Sie müssen erst einem Moduswechsel („Modeswitching“) unterzogen werden, bevor sie benutzt werden können. Der USB_ModeSwitch-Diensttyp installiert udev-Regeln, um bei diesen Geräten automatisch ein Modeswitching durchzuführen, wenn sie eingesteckt werden." #. type: deftp -#: guix-git/doc/guix.texi:17540 +#: guix-git/doc/guix.texi:17902 #, no-wrap msgid "{Data Type} usb-modeswitch-configuration" msgstr "{Datentyp} usb-modeswitch-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17542 +#: guix-git/doc/guix.texi:17904 msgid "Data type representing the configuration of USB_ModeSwitch." msgstr "Der Datentyp, der die Konfiguration von USB_ModeSwitch repräsentiert." #. type: item -#: guix-git/doc/guix.texi:17544 +#: guix-git/doc/guix.texi:17906 #, no-wrap msgid "@code{usb-modeswitch} (default: @code{usb-modeswitch})" msgstr "@code{usb-modeswitch} (Vorgabe: @code{usb-modeswitch})" #. type: table -#: guix-git/doc/guix.texi:17546 +#: guix-git/doc/guix.texi:17908 msgid "The USB_ModeSwitch package providing the binaries for modeswitching." msgstr "Das USB_ModeSwitch-Paket, das die Programmdateien für das Modeswitching enthält." #. type: item -#: guix-git/doc/guix.texi:17547 +#: guix-git/doc/guix.texi:17909 #, no-wrap msgid "@code{usb-modeswitch-data} (default: @code{usb-modeswitch-data})" msgstr "@code{usb-modeswitch-data} (Vorgabe: @code{usb-modeswitch-data})" #. type: table -#: guix-git/doc/guix.texi:17550 +#: guix-git/doc/guix.texi:17912 msgid "The package providing the device data and udev rules file used by USB_ModeSwitch." msgstr "Das Paket, in dem die Gerätedaten und die udev-Regeldatei stehen, die USB_ModeSwitch benutzt." #. type: item -#: guix-git/doc/guix.texi:17551 +#: guix-git/doc/guix.texi:17913 #, no-wrap msgid "@code{config-file} (default: @code{#~(string-append #$usb-modeswitch:dispatcher \"/etc/usb_modeswitch.conf\")})" msgstr "@code{config-file} (Vorgabe: @code{#~(string-append #$usb-modeswitch:dispatcher \"/etc/usb_modeswitch.conf\")})" #. type: table -#: guix-git/doc/guix.texi:17556 +#: guix-git/doc/guix.texi:17918 msgid "Which config file to use for the USB_ModeSwitch dispatcher. By default the config file shipped with USB_ModeSwitch is used which disables logging to @file{/var/log} among other default settings. If set to @code{#f}, no config file is used." msgstr "Welche Konfigurationsdatei das USB_ModeSwitch-Aufrufprogramm („Dispatcher“) benutzt. Nach Vorgabe wird die mit USB_ModeSwitch ausgelieferte Konfigurationsdatei benutzt, die neben anderen Voreinstellungen die Protokollierung nach @file{/var/log} abschaltet. Wenn @code{#f} festgelegt wird, wird keine Konfigurationsdatei benutzt." #. type: Plain text -#: guix-git/doc/guix.texi:17570 +#: guix-git/doc/guix.texi:17932 msgid "The @code{(gnu services networking)} module discussed in the previous section provides services for more advanced setups: providing a DHCP service for others to use, filtering packets with iptables or nftables, running a WiFi access point with @command{hostapd}, running the @command{inetd} ``superdaemon'', and more. This section describes those." msgstr "Das im vorherigen Abschnitt besprochene Modul @code{(gnu services networking)} stellt auch Dienste für fortgeschrittene Netzwerkeinrichtungen zur Verfügung, etwa um einen DHCP-Dienst für andere anzubieten, Pakete mit iptables oder nftables zu filtern, einen WLAN-Zugangspunkt mit @command{hostapd} verfügbar zu machen, den „Superdaemon“ @command{inetd} auszuführen und noch mehr. In diesem Abschnitt werden sie beschrieben." #. type: deffn -#: guix-git/doc/guix.texi:17571 +#: guix-git/doc/guix.texi:17933 #, no-wrap msgid "{Scheme Procedure} dhcpd-service-type" msgstr "{Scheme-Prozedur} dhcpd-service-type" #. type: deffn -#: guix-git/doc/guix.texi:17575 +#: guix-git/doc/guix.texi:17937 msgid "This type defines a service that runs a DHCP daemon. To create a service of this type, you must supply a @code{}. For example:" msgstr "Dieser Diensttyp definiert einen Dienst, der einen DHCP-Daemon ausführt. Um einen Dienst zu diesem Typ anzugeben, müssen Sie eine @code{} bereitstellen. Zum Beispiel so:" #. type: lisp -#: guix-git/doc/guix.texi:17581 +#: guix-git/doc/guix.texi:17943 #, no-wrap msgid "" "(service dhcpd-service-type\n" @@ -32288,96 +32946,96 @@ msgstr "" " (interfaces '(\"enp0s25\"))))\n" #. type: deftp -#: guix-git/doc/guix.texi:17584 +#: guix-git/doc/guix.texi:17946 #, no-wrap msgid "{Data Type} dhcpd-configuration" msgstr "{Datentyp} dhcpd-configuration" #. type: item -#: guix-git/doc/guix.texi:17586 +#: guix-git/doc/guix.texi:17948 #, no-wrap msgid "@code{package} (default: @code{isc-dhcp})" msgstr "@code{package} (Vorgabe: @code{isc-dhcp})" #. type: table -#: guix-git/doc/guix.texi:17591 +#: guix-git/doc/guix.texi:17953 msgid "The package that provides the DHCP daemon. This package is expected to provide the daemon at @file{sbin/dhcpd} relative to its output directory. The default package is the @uref{https://www.isc.org/products/DHCP, ISC's DHCP server}." msgstr "Das Paket, das den DHCP-Daemon zur Verfügung stellt. Von diesem Paket wird erwartet, dass es den Daemon unter dem Pfad @file{sbin/dhcpd} relativ zum Verzeichnis der Paketausgabe bereitstellt. Das vorgegebene Paket ist @uref{https://www.isc.org/products/DHCP, der DHCP-Server vom ISC}." #. type: table -#: guix-git/doc/guix.texi:17596 +#: guix-git/doc/guix.texi:17958 msgid "The configuration file to use. This is required. It will be passed to @code{dhcpd} via its @code{-cf} option. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). See @code{man dhcpd.conf} for details on the configuration file syntax." msgstr "Die Konfigurationsdatei, die benutzt werden soll. Sie @emph{muss} angegeben werden und wird an @code{dhcpd} mittels seiner Befehlszeilenoption @code{-cf} übergeben. Ein beliebiges „dateiartiges“ Objekt kann dafür angegeben werden (siehe @ref{G-Expressions, dateiartige Objekte}). Siehe @code{man dhcpd.conf} für Details, welcher Syntax die Konfigurationsdatei genügen muss." #. type: item -#: guix-git/doc/guix.texi:17596 +#: guix-git/doc/guix.texi:17958 #, no-wrap msgid "@code{version} (default: @code{\"4\"})" msgstr "@code{version} (Vorgabe: @code{\"4\"})" #. type: table -#: guix-git/doc/guix.texi:17601 +#: guix-git/doc/guix.texi:17963 msgid "The DHCP version to use. The ISC DHCP server supports the values ``4'', ``6'', and ``4o6''. These correspond to the @code{dhcpd} program options @code{-4}, @code{-6}, and @code{-4o6}. See @code{man dhcpd} for details." msgstr "Die DHCP-Version, die benutzt werden soll. Der ISC-DHCP-Server unterstützt die Werte „4“, „6“ und „4o6“. Das Feld entspricht den Befehlszeilenoptionen @code{-4}, @code{-6} und @code{-4o6} von @code{dhcpd}. Siehe @code{man dhcpd} für Details." #. type: item -#: guix-git/doc/guix.texi:17601 +#: guix-git/doc/guix.texi:17963 #, no-wrap msgid "@code{run-directory} (default: @code{\"/run/dhcpd\"})" msgstr "@code{run-directory} (Vorgabe: @code{\"/run/dhcpd\"})" #. type: table -#: guix-git/doc/guix.texi:17604 +#: guix-git/doc/guix.texi:17966 msgid "The run directory to use. At service activation time, this directory will be created if it does not exist." msgstr "Das zu benutzende Laufzeit-Verzeichnis („run“-Verzeichnis). Wenn der Dienst aktiviert wird, wird dieses Verzeichnis erzeugt, wenn es noch nicht existiert." #. type: item -#: guix-git/doc/guix.texi:17604 +#: guix-git/doc/guix.texi:17966 #, no-wrap msgid "@code{pid-file} (default: @code{\"/run/dhcpd/dhcpd.pid\"})" msgstr "@code{pid-file} (Vorgabe: @code{\"/run/dhcpd/dhcpd.pid\"})" #. type: table -#: guix-git/doc/guix.texi:17607 +#: guix-git/doc/guix.texi:17969 msgid "The PID file to use. This corresponds to the @code{-pf} option of @code{dhcpd}. See @code{man dhcpd} for details." msgstr "Die zu benutzende PID-Datei. Dieses Feld entspricht der Befehlszeilenoption @code{-pf} von @code{dhcpd}. Siehe @code{man dhcpd} für Details." #. type: item -#: guix-git/doc/guix.texi:17607 +#: guix-git/doc/guix.texi:17969 #, no-wrap msgid "@code{interfaces} (default: @code{'()})" msgstr "@code{interfaces} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17613 +#: guix-git/doc/guix.texi:17975 msgid "The names of the network interfaces on which dhcpd should listen for broadcasts. If this list is not empty, then its elements (which must be strings) will be appended to the @code{dhcpd} invocation when starting the daemon. It may not be necessary to explicitly specify any interfaces here; see @code{man dhcpd} for details." msgstr "Die Namen der Netzwerkschnittstelle, auf der dhcpd auf Broadcast-Nachrichten lauscht. Wenn diese Liste nicht leer ist, werden ihre Elemente (diese müssen Zeichenketten sein) an den @code{dhcpd}-Aufruf beim Starten des Daemons angehängt. Es ist unter Umständen @emph{nicht} nötig, hier Schnittstellen ausdrücklich anzugeben; siehe @code{man dhcpd} für Details." #. type: cindex -#: guix-git/doc/guix.texi:17616 +#: guix-git/doc/guix.texi:17978 #, no-wrap msgid "hostapd service, for Wi-Fi access points" msgstr "hostapd-Dienst, für WLAN-Zugangspunkte (Access Points)" #. type: cindex -#: guix-git/doc/guix.texi:17617 +#: guix-git/doc/guix.texi:17979 #, no-wrap msgid "Wi-Fi access points, hostapd service" msgstr "WLAN-Zugangspunkte (Access Points), hostapd-Dienst" #. type: defvr -#: guix-git/doc/guix.texi:17618 +#: guix-git/doc/guix.texi:17980 #, no-wrap msgid "{Scheme Variable} hostapd-service-type" msgstr "{Scheme-Variable} hostapd-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17623 +#: guix-git/doc/guix.texi:17985 msgid "This is the service type to run the @uref{https://w1.fi/hostapd/, hostapd} daemon to set up WiFi (IEEE 802.11) access points and authentication servers. Its associated value must be a @code{hostapd-configuration} as shown below:" msgstr "Dies ist der Diensttyp für den @uref{https://w1.fi/hostapd/, hostapd-Daemon}, mit dem ein WLAN-Zugangspunkt (ein „Access Point“ gemäß IEEE 802.11) und Authentifizierungsserver eingerichtet werden kann. Sein zugewiesener Wert muss eine @code{hostapd-configuration} sein wie im folgenden Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:17631 +#: guix-git/doc/guix.texi:17993 #, no-wrap msgid "" ";; Use wlan1 to run the access point for \"My Network\".\n" @@ -32395,129 +33053,129 @@ msgstr "" " (channel 12)))\n" #. type: deftp -#: guix-git/doc/guix.texi:17634 +#: guix-git/doc/guix.texi:17996 #, no-wrap msgid "{Data Type} hostapd-configuration" msgstr "{Datentyp} hostapd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17637 +#: guix-git/doc/guix.texi:17999 msgid "This data type represents the configuration of the hostapd service, with the following fields:" msgstr "Dieser Datentyp repräsentiert die Konfiguration des hostapd-Dienstes. Er hat folgende Felder:" #. type: item -#: guix-git/doc/guix.texi:17639 +#: guix-git/doc/guix.texi:18001 #, no-wrap msgid "@code{package} (default: @code{hostapd})" msgstr "@code{package} (Vorgabe: @code{hostapd})" #. type: table -#: guix-git/doc/guix.texi:17641 +#: guix-git/doc/guix.texi:18003 msgid "The hostapd package to use." msgstr "Das zu benutzende hostapd-Paket." #. type: item -#: guix-git/doc/guix.texi:17642 +#: guix-git/doc/guix.texi:18004 #, no-wrap msgid "@code{interface} (default: @code{\"wlan0\"})" msgstr "@code{interface} (Vorgabe: @code{\"wlan0\"})" #. type: table -#: guix-git/doc/guix.texi:17644 +#: guix-git/doc/guix.texi:18006 msgid "The network interface to run the WiFi access point." msgstr "Die Netzwerkschnittstelle, auf der der WLAN-Zugangspunkt betrieben wird." #. type: code{#1} -#: guix-git/doc/guix.texi:17645 +#: guix-git/doc/guix.texi:18007 #, no-wrap msgid "ssid" msgstr "ssid" #. type: table -#: guix-git/doc/guix.texi:17648 +#: guix-git/doc/guix.texi:18010 msgid "The SSID (@dfn{service set identifier}), a string that identifies this network." msgstr "Die SSID (@dfn{Service Set Identifier}), eine das Netzwerk identifizierende Zeichenkette." #. type: item -#: guix-git/doc/guix.texi:17649 +#: guix-git/doc/guix.texi:18011 #, no-wrap msgid "@code{broadcast-ssid?} (default: @code{#t})" msgstr "@code{broadcast-ssid?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:17651 +#: guix-git/doc/guix.texi:18013 msgid "Whether to broadcast this SSID." msgstr "Ob diese SSID allgemein sichtbar sein soll." #. type: item -#: guix-git/doc/guix.texi:17652 +#: guix-git/doc/guix.texi:18014 #, no-wrap msgid "@code{channel} (default: @code{1})" msgstr "@code{channel} (Vorlage: @code{1})" #. type: table -#: guix-git/doc/guix.texi:17654 +#: guix-git/doc/guix.texi:18016 msgid "The WiFi channel to use." msgstr "Der zu verwendende WLAN-Kanal." #. type: item -#: guix-git/doc/guix.texi:17655 +#: guix-git/doc/guix.texi:18017 #, no-wrap msgid "@code{driver} (default: @code{\"nl80211\"})" msgstr "@code{driver} (Vorgabe: @code{\"nl80211\"})" #. type: table -#: guix-git/doc/guix.texi:17659 +#: guix-git/doc/guix.texi:18021 msgid "The driver interface type. @code{\"nl80211\"} is used with all Linux mac80211 drivers. Use @code{\"none\"} if building hostapd as a standalone RADIUS server that does # not control any wireless/wired driver." msgstr "Über welchen Schnittstellentyp der Treiber angesprochen wird. @code{\"nl80211\"} wird von allen Linux-mac80211-Treibern benutzt. Schreiben Sie @code{\"none\"}, wenn hostapd für einen eigenständigen RADIUS-Server erstellt wird, der keine Draht- oder Drahtlosverbindung steuert." #. type: item -#: guix-git/doc/guix.texi:17660 guix-git/doc/guix.texi:23728 -#: guix-git/doc/guix.texi:26807 +#: guix-git/doc/guix.texi:18022 guix-git/doc/guix.texi:24090 +#: guix-git/doc/guix.texi:27144 #, no-wrap msgid "@code{extra-settings} (default: @code{\"\"})" msgstr "@code{extra-settings} (Vorgabe: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:17664 +#: guix-git/doc/guix.texi:18026 msgid "Extra settings to append as-is to the hostapd configuration file. See @uref{https://w1.fi/cgit/hostap/plain/hostapd/hostapd.conf} for the configuration file reference." msgstr "Weitere Einstellungen, die wie sie sind an die Konfigurationsdatei von hostapd angehängt werden. Siehe @uref{https://w1.fi/cgit/hostap/plain/hostapd/hostapd.conf} für eine Referenz der Konfigurationsdatei." #. type: defvr -#: guix-git/doc/guix.texi:17667 +#: guix-git/doc/guix.texi:18029 #, no-wrap msgid "{Scheme Variable} simulated-wifi-service-type" msgstr "{Scheme-Variable} simulated-wifi-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17674 +#: guix-git/doc/guix.texi:18036 msgid "This is the type of a service to simulate WiFi networking, which can be useful in virtual machines for testing purposes. The service loads the Linux kernel @uref{https://www.kernel.org/doc/html/latest/networking/mac80211_hwsim/mac80211_hwsim.html, @code{mac80211_hwsim} module} and starts hostapd to create a pseudo WiFi network that can be seen on @code{wlan0}, by default." msgstr "Dies ist der Diensttyp für einen Dienst, um ein WLAN-Netzwerk zu simulieren. Das kann auf virtuellen Maschinen zu Testzwecken eingesetzt werden. Der Dienst lädt das @uref{https://www.kernel.org/doc/html/latest/networking/mac80211_hwsim/mac80211_hwsim.html, @code{mac80211_hwsim}-Modul} in den Linux-Kernel und startet hostapd, um ein Pseudo-WLAN-Netzwerk vorzutäuschen, das nach Vorgabe als @code{wlan0} sichtbar ist." #. type: defvr -#: guix-git/doc/guix.texi:17676 +#: guix-git/doc/guix.texi:18038 msgid "The service's value is a @code{hostapd-configuration} record." msgstr "Der Wert des Dienstes ist ein @code{hostapd-configuration}-Verbundsobjekt." #. type: cindex -#: guix-git/doc/guix.texi:17679 +#: guix-git/doc/guix.texi:18041 #, no-wrap msgid "iptables" msgstr "iptables" #. type: defvr -#: guix-git/doc/guix.texi:17680 +#: guix-git/doc/guix.texi:18042 #, no-wrap msgid "{Scheme Variable} iptables-service-type" msgstr "{Scheme-Variable} iptables-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17686 +#: guix-git/doc/guix.texi:18048 msgid "This is the service type to set up an iptables configuration. iptables is a packet filtering framework supported by the Linux kernel. This service supports configuring iptables for both IPv4 and IPv6. A simple example configuration rejecting all incoming connections except those to the ssh port 22 is shown below." msgstr "Mit diesem Diensttyp wird eine iptables-Konfiguration eingerichtet. iptables ist ein Rahmen für Netzwerkpaketfilter, der vom Linux-Kernel unterstützt wird. Der Dienst unterstützt die Konfiguration von iptables für sowohl IPv4 als auch IPv6. Eine einfache Beispielkonfiguration, die alle eingehenden Verbindungen verweigert, die nicht an den SSH-Port 22 gehen, können Sie hier sehen:" #. type: lisp -#: guix-git/doc/guix.texi:17708 +#: guix-git/doc/guix.texi:18070 #, no-wrap msgid "" "(service iptables-service-type\n" @@ -32563,241 +33221,241 @@ msgstr "" "\"))))\n" #. type: deftp -#: guix-git/doc/guix.texi:17711 +#: guix-git/doc/guix.texi:18073 #, no-wrap msgid "{Data Type} iptables-configuration" msgstr "{Datentyp} iptables-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17713 +#: guix-git/doc/guix.texi:18075 msgid "The data type representing the configuration of iptables." msgstr "Repräsentiert die iptables-Konfiguration." #. type: item -#: guix-git/doc/guix.texi:17715 +#: guix-git/doc/guix.texi:18077 #, no-wrap msgid "@code{iptables} (default: @code{iptables})" msgstr "@code{iptables} (Vorgabe: @code{iptables})" #. type: table -#: guix-git/doc/guix.texi:17718 +#: guix-git/doc/guix.texi:18080 msgid "The iptables package that provides @code{iptables-restore} and @code{ip6tables-restore}." msgstr "Das zu benutzende iptables-Paket, das @code{iptables-restore} und @code{ip6tables-restore} zur Verfügung stellt." #. type: item -#: guix-git/doc/guix.texi:17718 +#: guix-git/doc/guix.texi:18080 #, no-wrap msgid "@code{ipv4-rules} (default: @code{%iptables-accept-all-rules})" msgstr "@code{ipv4-rules} (Vorgabe: @code{%iptables-accept-all-rules})" #. type: table -#: guix-git/doc/guix.texi:17722 +#: guix-git/doc/guix.texi:18084 msgid "The iptables rules to use. It will be passed to @code{iptables-restore}. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "Die zu benutzenden iptables-Regeln. Diese werden an @code{iptables-restore} übergeben. Als Regeln kann jedes „dateiartige“ Objekt angegeben werden (siehe @ref{G-Expressions, dateiartige Objekte})." #. type: item -#: guix-git/doc/guix.texi:17722 +#: guix-git/doc/guix.texi:18084 #, no-wrap msgid "@code{ipv6-rules} (default: @code{%iptables-accept-all-rules})" msgstr "@code{ipv6-rules} (Vorgabe: @code{%iptables-accept-all-rules})" #. type: table -#: guix-git/doc/guix.texi:17726 +#: guix-git/doc/guix.texi:18088 msgid "The ip6tables rules to use. It will be passed to @code{ip6tables-restore}. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "Die zu benutzenden ip6tables-Regeln. Diese werden an @code{ip6tables-restore} übergeben. Als Regeln kann jedes „dateiartige“ Objekt angegeben werden (siehe @ref{G-Expressions, dateiartige Objekte})." #. type: cindex -#: guix-git/doc/guix.texi:17729 +#: guix-git/doc/guix.texi:18091 #, no-wrap msgid "nftables" msgstr "nftables" #. type: defvr -#: guix-git/doc/guix.texi:17730 +#: guix-git/doc/guix.texi:18092 #, no-wrap msgid "{Scheme Variable} nftables-service-type" msgstr "{Scheme-Variable} nftables-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17738 +#: guix-git/doc/guix.texi:18100 msgid "This is the service type to set up a nftables configuration. nftables is a netfilter project that aims to replace the existing iptables, ip6tables, arptables and ebtables framework. It provides a new packet filtering framework, a new user-space utility @command{nft}, and a compatibility layer for iptables. This service comes with a default ruleset @code{%default-nftables-ruleset} that rejecting all incoming connections except those to the ssh port 22. To use it, simply write:" msgstr "Dieser Dienst richtet eine Konfiguration von nftables ein. nftables ist als Projekt ein Teil von Netfilter mit dem Ziel, den bestehenden Aufbau aus iptables, ip6tables, arptables und ebtables zu ersetzen. Es stellt einen neuen Rahmen für Netzwerkpaketfilter bereit sowie ein neues Werkzeug @command{nft} auf Anwendungsebene und eine Kompatibilitätsschicht für iptables. Dieser Dienst wird zusammen mit @code{%default-nftables-ruleset} ausgeliefert, einem vorgegebenen Satz von Regeln, der alle eingehenden Verbindungen außer auf dem SSH-Port 22 ablehnt. Um ihn zu benutzen, schreiben Sie einfach:" #. type: lisp -#: guix-git/doc/guix.texi:17741 +#: guix-git/doc/guix.texi:18103 #, no-wrap msgid "(service nftables-service-type)\n" msgstr "(service nftables-service-type)\n" #. type: deftp -#: guix-git/doc/guix.texi:17744 +#: guix-git/doc/guix.texi:18106 #, no-wrap msgid "{Data Type} nftables-configuration" msgstr "{Datentyp} nftables-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17746 +#: guix-git/doc/guix.texi:18108 msgid "The data type representing the configuration of nftables." msgstr "Datentyp, der die nftables-Konfiguration repräsentiert." #. type: item -#: guix-git/doc/guix.texi:17748 +#: guix-git/doc/guix.texi:18110 #, no-wrap msgid "@code{package} (default: @code{nftables})" msgstr "@code{package} (Vorgabe: @code{nftables})" #. type: table -#: guix-git/doc/guix.texi:17750 +#: guix-git/doc/guix.texi:18112 msgid "The nftables package that provides @command{nft}." msgstr "Das nftables-Paket, das @command{nft} zur Verfügung stellt." #. type: item -#: guix-git/doc/guix.texi:17750 +#: guix-git/doc/guix.texi:18112 #, no-wrap msgid "@code{ruleset} (default: @code{%default-nftables-ruleset})" msgstr "@code{ruleset} (Vorgabe: @code{%default-nftables-ruleset})" #. type: table -#: guix-git/doc/guix.texi:17753 +#: guix-git/doc/guix.texi:18115 msgid "The nftables ruleset to use. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "Die zu benutzenden nftables-Regeln. Als Regeln kann jedes „dateiartige“ Objekt angegeben werden (siehe @ref{G-Expressions, dateiartige Objekte})." #. type: cindex -#: guix-git/doc/guix.texi:17756 +#: guix-git/doc/guix.texi:18118 #, no-wrap msgid "NTP (Network Time Protocol), service" msgstr "NTP (Network Time Protocol), Dienst" #. type: cindex -#: guix-git/doc/guix.texi:17757 +#: guix-git/doc/guix.texi:18119 #, no-wrap msgid "ntpd, service for the Network Time Protocol daemon" msgstr "ntpd, Dienst für den Network-Time-Protocol-Daemon" #. type: cindex -#: guix-git/doc/guix.texi:17758 +#: guix-git/doc/guix.texi:18120 #, no-wrap msgid "real time clock" msgstr "Echtzeituhr" #. type: defvr -#: guix-git/doc/guix.texi:17759 +#: guix-git/doc/guix.texi:18121 #, no-wrap msgid "{Scheme Variable} ntp-service-type" msgstr "{Scheme-Variable} ntp-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17763 +#: guix-git/doc/guix.texi:18125 msgid "This is the type of the service running the @uref{https://www.ntp.org, Network Time Protocol (NTP)} daemon, @command{ntpd}. The daemon will keep the system clock synchronized with that of the specified NTP servers." msgstr "Dies ist der Typ des Dienstes, der den @command{ntpd}-Daemon für das @uref{https://www.ntp.org, Network Time Protocol}, kurz NTP, ausführt. Mit diesem Daemon wird die Systemuhr mit der Uhr auf den angegebenen NTP-Servern synchronisiert." #. type: defvr -#: guix-git/doc/guix.texi:17766 +#: guix-git/doc/guix.texi:18128 msgid "The value of this service is an @code{ntpd-configuration} object, as described below." msgstr "Der Wert dieses Dienstes ist ein @code{ntpd-configuration}-Objekt, wie im Folgenden beschrieben." #. type: deftp -#: guix-git/doc/guix.texi:17768 +#: guix-git/doc/guix.texi:18130 #, no-wrap msgid "{Data Type} ntp-configuration" msgstr "{Datentyp} ntp-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17770 +#: guix-git/doc/guix.texi:18132 msgid "This is the data type for the NTP service configuration." msgstr "Der Datentyp für die Dienstkonfiguration des NTP-Dienstes." #. type: item -#: guix-git/doc/guix.texi:17772 +#: guix-git/doc/guix.texi:18134 #, no-wrap msgid "@code{servers} (default: @code{%ntp-servers})" msgstr "@code{servers} (Vorgabe: @code{%ntp-servers})" #. type: table -#: guix-git/doc/guix.texi:17776 +#: guix-git/doc/guix.texi:18138 msgid "This is the list of servers (@code{} records) with which @command{ntpd} will be synchronized. See the @code{ntp-server} data type definition below." msgstr "Dies ist die Liste der Server (@code{}-Verbundsobjekte), mit denen @command{ntpd} synchronisiert wird. Siehe die Definition des @code{ntp-server}-Datentyps weiter unten." #. type: item -#: guix-git/doc/guix.texi:17777 +#: guix-git/doc/guix.texi:18139 #, no-wrap msgid "@code{allow-large-adjustment?} (default: @code{#t})" msgstr "@code{allow-large-adjustment?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:17780 +#: guix-git/doc/guix.texi:18142 msgid "This determines whether @command{ntpd} is allowed to make an initial adjustment of more than 1,000 seconds." msgstr "Hiermit wird festgelegt, ob @command{ntpd} die Uhr beim ersten Umstellen um mehr als 1.000 Sekunden ändern darf." #. type: item -#: guix-git/doc/guix.texi:17781 +#: guix-git/doc/guix.texi:18143 #, no-wrap msgid "@code{ntp} (default: @code{ntp})" msgstr "@code{ntp} (Vorgabe: @code{ntp})" #. type: table -#: guix-git/doc/guix.texi:17783 +#: guix-git/doc/guix.texi:18145 msgid "The NTP package to use." msgstr "Das NTP-Paket, was benutzt werden soll." #. type: defvr -#: guix-git/doc/guix.texi:17786 +#: guix-git/doc/guix.texi:18148 #, no-wrap msgid "{Scheme Variable} %ntp-servers" msgstr "{Scheme-Variable} %ntp-servers" #. type: defvr -#: guix-git/doc/guix.texi:17789 +#: guix-git/doc/guix.texi:18151 msgid "List of host names used as the default NTP servers. These are servers of the @uref{https://www.ntppool.org/en/, NTP Pool Project}." msgstr "Liste der Rechnernamen („Host“-Namen), die als vorgegebene NTP-Server benutzt werden. Dabei handelt es sich um die Server des @uref{https://www.ntppool.org/en/, NTP Pool Project}." #. type: deftp -#: guix-git/doc/guix.texi:17791 +#: guix-git/doc/guix.texi:18153 #, no-wrap msgid "{Data Type} ntp-server" msgstr "{Datentyp} ntp-server" #. type: deftp -#: guix-git/doc/guix.texi:17793 +#: guix-git/doc/guix.texi:18155 msgid "The data type representing the configuration of a NTP server." msgstr "Der Datentyp, der die Konfiguration eines NTP-Servers repräsentiert." #. type: item -#: guix-git/doc/guix.texi:17795 +#: guix-git/doc/guix.texi:18157 #, no-wrap msgid "@code{type} (default: @code{'server})" msgstr "@code{type} (Vorgabe: @code{'server})" #. type: table -#: guix-git/doc/guix.texi:17798 +#: guix-git/doc/guix.texi:18160 msgid "The type of the NTP server, given as a symbol. One of @code{'pool}, @code{'server}, @code{'peer}, @code{'broadcast} or @code{'manycastclient}." msgstr "Die Art des NTP-Servers als Symbol, entweder @code{'pool}, @code{'server}, @code{'peer}, @code{'broadcast} oder @code{'manycastclient}." #. type: code{#1} -#: guix-git/doc/guix.texi:17799 +#: guix-git/doc/guix.texi:18161 #, no-wrap msgid "address" msgstr "address" #. type: table -#: guix-git/doc/guix.texi:17801 +#: guix-git/doc/guix.texi:18163 msgid "The address of the server, as a string." msgstr "Die Adresse des Servers als Zeichenkette." #. type: code{#1} -#: guix-git/doc/guix.texi:17802 guix-git/doc/guix.texi:33774 -#: guix-git/doc/guix.texi:33794 +#: guix-git/doc/guix.texi:18164 guix-git/doc/guix.texi:34211 +#: guix-git/doc/guix.texi:34231 #, no-wrap msgid "options" msgstr "options" #. type: table -#: guix-git/doc/guix.texi:17807 +#: guix-git/doc/guix.texi:18169 msgid "NTPD options to use with that specific server, given as a list of option names and/or of option names and values tuples. The following example define a server to use with the options @option{iburst} and @option{prefer}, as well as @option{version} 3 and a @option{maxpoll} time of 16 seconds." msgstr "NTPD-Optionen, die für diesen bestimmten Server gelten sollen, angegeben als Liste von Optionsnamen und/oder Tupeln aus je Optionsname und -wert. Im folgenden Beispiel wird ein Server definiert, der die Optionen @option{iburst} und @option{prefer} sowie @option{version} 3 und eine @option{maxpoll}-Zeit von 16 Sekunden benutzen soll." #. type: example -#: guix-git/doc/guix.texi:17813 +#: guix-git/doc/guix.texi:18175 #, no-wrap msgid "" "(ntp-server\n" @@ -32811,24 +33469,24 @@ msgstr "" " (options `(iburst (version 3) (maxpoll 16) prefer))))\n" #. type: cindex -#: guix-git/doc/guix.texi:17817 +#: guix-git/doc/guix.texi:18179 #, no-wrap msgid "OpenNTPD" msgstr "OpenNTPD" #. type: deffn -#: guix-git/doc/guix.texi:17818 +#: guix-git/doc/guix.texi:18180 #, no-wrap msgid "{Scheme Procedure} openntpd-service-type" msgstr "{Scheme-Prozedur} openntpd-service-type" #. type: deffn -#: guix-git/doc/guix.texi:17822 +#: guix-git/doc/guix.texi:18184 msgid "Run the @command{ntpd}, the Network Time Protocol (NTP) daemon, as implemented by @uref{http://www.openntpd.org, OpenNTPD}. The daemon will keep the system clock synchronized with that of the given servers." msgstr "Hiermit wird @command{ntpd}, der Network-Time-Protocol-Daemon (NTP-Daemon), ausgeführt, in seiner @uref{http://www.openntpd.org, OpenNTPD-Implementierung}. Der Daemon sorgt dafür, dass die Systemuhr mit den Uhren der eingestellten Server synchron bleibt." #. type: lisp -#: guix-git/doc/guix.texi:17831 +#: guix-git/doc/guix.texi:18193 #, no-wrap msgid "" "(service\n" @@ -32850,134 +33508,134 @@ msgstr "" "\n" #. type: defvr -#: guix-git/doc/guix.texi:17835 +#: guix-git/doc/guix.texi:18197 #, no-wrap msgid "{Scheme Variable} %openntpd-servers" msgstr "{Scheme-Variable} %openntpd-servers" #. type: defvr -#: guix-git/doc/guix.texi:17838 +#: guix-git/doc/guix.texi:18200 msgid "This variable is a list of the server addresses defined in @code{%ntp-servers}." msgstr "Diese Variable bezeichnet eine Liste von Serveradressen, die in @code{%ntp-servers} definiert sind." #. type: deftp -#: guix-git/doc/guix.texi:17840 +#: guix-git/doc/guix.texi:18202 #, no-wrap msgid "{Data Type} openntpd-configuration" msgstr "{Datentyp} openntpd-configuration" #. type: item -#: guix-git/doc/guix.texi:17842 +#: guix-git/doc/guix.texi:18204 #, no-wrap msgid "@code{openntpd} (default: @code{(file-append openntpd \"/sbin/ntpd\")})" msgstr "@code{openntpd} (Vorgabe: @code{(file-append openntpd \"/sbin/ntpd\")})" #. type: table -#: guix-git/doc/guix.texi:17844 +#: guix-git/doc/guix.texi:18206 msgid "The openntpd executable to use." msgstr "Das openntpd-Programm, das benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:17844 +#: guix-git/doc/guix.texi:18206 #, no-wrap msgid "@code{listen-on} (default: @code{'(\"127.0.0.1\" \"::1\")})" msgstr "@code{listen-on} (Vorgabe: @code{'(\"127.0.0.1\" \"::1\")})" #. type: table -#: guix-git/doc/guix.texi:17846 +#: guix-git/doc/guix.texi:18208 msgid "A list of local IP addresses or hostnames the ntpd daemon should listen on." msgstr "Eine Liste von lokalen IP-Adressen oder Rechnernamen („Host“-Namen), auf denen der ntpd-Daemon lauschen soll." #. type: item -#: guix-git/doc/guix.texi:17846 +#: guix-git/doc/guix.texi:18208 #, no-wrap msgid "@code{query-from} (default: @code{'()})" msgstr "@code{query-from} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17848 +#: guix-git/doc/guix.texi:18210 msgid "A list of local IP address the ntpd daemon should use for outgoing queries." msgstr "Eine Liste von lokalen IP-Adressen, die der ntpd-Daemon für ausgehende Anfragen benutzen soll." #. type: item -#: guix-git/doc/guix.texi:17848 +#: guix-git/doc/guix.texi:18210 #, no-wrap msgid "@code{sensor} (default: @code{'()})" msgstr "@code{sensor} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17853 +#: guix-git/doc/guix.texi:18215 msgid "Specify a list of timedelta sensor devices ntpd should use. @code{ntpd} will listen to each sensor that actually exists and ignore non-existent ones. See @uref{https://man.openbsd.org/ntpd.conf, upstream documentation} for more information." msgstr "Hiermit geben Sie eine Liste von Zeitdifferenz-Sensorgeräten an, die ntpd benutzen soll. @code{ntpd} wird auf jeden Sensor lauschen, der auch tatsächlich existiert, und solche, die nicht existieren, ignorieren. Siehe die @uref{https://man.openbsd.org/ntpd.conf, Dokumentation beim Anbieter} für weitere Informationen." #. type: item -#: guix-git/doc/guix.texi:17853 +#: guix-git/doc/guix.texi:18215 #, no-wrap msgid "@code{server} (default: @code{'()})" msgstr "@code{server} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17855 +#: guix-git/doc/guix.texi:18217 msgid "Specify a list of IP addresses or hostnames of NTP servers to synchronize to." msgstr "Hiermit geben Sie eine Liste von IP-Adressen oder Rechnernamen von NTP-Servern an, mit denen synchronisiert werden soll." #. type: item -#: guix-git/doc/guix.texi:17855 +#: guix-git/doc/guix.texi:18217 #, no-wrap msgid "@code{servers} (default: @code{%openntp-servers})" msgstr "@code{servers} (Vorgabe: @code{%openntp-servers})" #. type: table -#: guix-git/doc/guix.texi:17857 +#: guix-git/doc/guix.texi:18219 msgid "Specify a list of IP addresses or hostnames of NTP pools to synchronize to." msgstr "Hiermit geben Sie eine Liste von IP-Adressen oder Rechnernamen von NTP-Pools an, mit denen synchronisiert werden soll." #. type: item -#: guix-git/doc/guix.texi:17857 +#: guix-git/doc/guix.texi:18219 #, no-wrap msgid "@code{constraint-from} (default: @code{'()})" msgstr "@code{constraint-from} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17864 +#: guix-git/doc/guix.texi:18226 msgid "@code{ntpd} can be configured to query the ‘Date’ from trusted HTTPS servers via TLS. This time information is not used for precision but acts as an authenticated constraint, thereby reducing the impact of unauthenticated NTP man-in-the-middle attacks. Specify a list of URLs, IP addresses or hostnames of HTTPS servers to provide a constraint." msgstr "@code{ntpd} kann so eingestellt werden, dass es das Datum aus der „Date“-Kopfzeile bei mit TLS übermittelten Anfragen an HTTPS-Server, denen vertraut wird, ausliest. Diese Zeitinformation wird nicht für Genauigkeit benutzt, sondern um mit authentifizierten Informationen die Auswirkungen eines Man-in-the-Middle-Angriffs auf unauthentifizierte NTP-Kommunikation einzuschränken. Geben Sie hierzu eine Liste von URLs, IP-Adressen oder Rechnernamen („Host“-Namen) von HTTPS-Servern an, um eine solche Beschränkung („Constraint“) einzurichten." #. type: item -#: guix-git/doc/guix.texi:17864 +#: guix-git/doc/guix.texi:18226 #, no-wrap msgid "@code{constraints-from} (default: @code{'()})" msgstr "@code{constraints-from} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17868 +#: guix-git/doc/guix.texi:18230 msgid "As with constraint from, specify a list of URLs, IP addresses or hostnames of HTTPS servers to provide a constraint. Should the hostname resolve to multiple IP addresses, @code{ntpd} will calculate a median constraint from all of them." msgstr "Wie bei @code{constraint-from} geben Sie auch hier eine Liste von URLs, IP-Adressen oder Rechnernamen von HTTPS-Servern an, um eine Beschränkung einzurichten. Falls der Rechnername zu mehreren IP-Adressen aufgelöst wird, berechnet @code{ntpd} den Median von allen als Beschränkung." #. type: cindex -#: guix-git/doc/guix.texi:17871 +#: guix-git/doc/guix.texi:18233 #, no-wrap msgid "inetd" msgstr "inetd" #. type: deffn -#: guix-git/doc/guix.texi:17872 +#: guix-git/doc/guix.texi:18234 #, no-wrap msgid "{Scheme variable} inetd-service-type" msgstr "{Scheme-Variable} inetd-service-type" #. type: deffn -#: guix-git/doc/guix.texi:17877 +#: guix-git/doc/guix.texi:18239 msgid "This service runs the @command{inetd} (@pxref{inetd invocation,,, inetutils, GNU Inetutils}) daemon. @command{inetd} listens for connections on internet sockets, and lazily starts the specified server program when a connection is made on one of these sockets." msgstr "Dieser Dienst führt den @command{inetd}-Daemon aus (siehe @ref{inetd invocation,,, inetutils, GNU Inetutils}). @command{inetd} lauscht auf Verbindungen mit Internet-Sockets und startet bei Bedarf das entsprechende Server-Programm, sobald eine Verbindung mit einem dieser Sockets hergestellt wird." #. type: deffn -#: guix-git/doc/guix.texi:17883 +#: guix-git/doc/guix.texi:18245 msgid "The value of this service is an @code{inetd-configuration} object. The following example configures the @command{inetd} daemon to provide the built-in @command{echo} service, as well as an smtp service which forwards smtp traffic over ssh to a server @code{smtp-server} behind a gateway @code{hostname}:" msgstr "Der Wert dieses Dienstes ist ein @code{inetd-configuration}-Objekt. Im folgenden Beispiel wird der @command{inetd}-Daemon konfiguriert, um den eingebauten @command{echo}-Dienst sowie einen SMTP-Dienst anzubieten, wobei letzterer SMTP-Kommunikation über SSH an einen Server @code{smtp-server} über einen vom @code{rechnername}n bezeichneten Zugang („Gateway“) weiterleitet:" #. type: lisp -#: guix-git/doc/guix.texi:17906 +#: guix-git/doc/guix.texi:18268 #, no-wrap msgid "" "(service\n" @@ -33025,463 +33683,465 @@ msgstr "" " \"-W\" \"smtp-server:25\" \"benutzer@@rechnername\")))))))\n" #. type: deffn -#: guix-git/doc/guix.texi:17909 +#: guix-git/doc/guix.texi:18271 msgid "See below for more details about @code{inetd-configuration}." msgstr "Siehe unten für mehr Details über @code{inetd-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:17911 +#: guix-git/doc/guix.texi:18273 #, no-wrap msgid "{Data Type} inetd-configuration" msgstr "{Datentyp} inetd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17913 +#: guix-git/doc/guix.texi:18275 msgid "Data type representing the configuration of @command{inetd}." msgstr "Datentyp, der die Konfiguration von @command{inetd} repräsentiert." #. type: item -#: guix-git/doc/guix.texi:17915 +#: guix-git/doc/guix.texi:18277 #, no-wrap msgid "@code{program} (default: @code{(file-append inetutils \"/libexec/inetd\")})" msgstr "@code{program} (Vorgabe: @code{(file-append inetutils \"/libexec/inetd\")})" #. type: table -#: guix-git/doc/guix.texi:17917 +#: guix-git/doc/guix.texi:18279 msgid "The @command{inetd} executable to use." msgstr "Das @command{inetd}-Programm, das benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:17918 guix-git/doc/guix.texi:27655 +#: guix-git/doc/guix.texi:18280 guix-git/doc/guix.texi:27992 #, no-wrap msgid "@code{entries} (default: @code{'()})" msgstr "@code{entries} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17921 +#: guix-git/doc/guix.texi:18283 msgid "A list of @command{inetd} service entries. Each entry should be created by the @code{inetd-entry} constructor." msgstr "Eine Liste von @command{inetd}-Diensteinträgen. Jeder Eintrag sollte von einem @code{inetd-entry}-Konstruktor erzeugt werden." #. type: deftp -#: guix-git/doc/guix.texi:17924 +#: guix-git/doc/guix.texi:18286 #, no-wrap msgid "{Data Type} inetd-entry" msgstr "{Datentyp} inetd-entry" #. type: deftp -#: guix-git/doc/guix.texi:17928 +#: guix-git/doc/guix.texi:18290 msgid "Data type representing an entry in the @command{inetd} configuration. Each entry corresponds to a socket where @command{inetd} will listen for requests." msgstr "Datentyp, der einen Eintrag in der @command{inetd}-Konfiguration repräsentiert. Jeder Eintrag entspricht einem Socket, auf dem @command{inetd} auf Anfragen lauscht." #. type: item -#: guix-git/doc/guix.texi:17930 +#: guix-git/doc/guix.texi:18292 #, no-wrap msgid "@code{node} (default: @code{#f})" msgstr "@code{node} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17935 +#: guix-git/doc/guix.texi:18297 msgid "Optional string, a comma-separated list of local addresses @command{inetd} should use when listening for this service. @xref{Configuration file,,, inetutils, GNU Inetutils} for a complete description of all options." msgstr "Optional sollte hier als Zeichenkette eine kommagetrennte Liste lokaler Adressen angegeben werden, die @command{inetd} benutzen soll, wenn er stellvertretend für den angegebenen Dienst lauscht. Siehe @ref{Configuration file,,, inetutils, GNU Inetutils} für eine vollständige Beschreibung aller Optionen." #. type: table -#: guix-git/doc/guix.texi:17937 +#: guix-git/doc/guix.texi:18299 msgid "A string, the name must correspond to an entry in @code{/etc/services}." msgstr "Eine Zeichenkette. Dieser Name muss einem Eintrag in @code{/etc/services} entsprechen." #. type: code{#1} -#: guix-git/doc/guix.texi:17937 +#: guix-git/doc/guix.texi:18299 #, no-wrap msgid "socket-type" msgstr "socket-type" #. type: table -#: guix-git/doc/guix.texi:17940 +#: guix-git/doc/guix.texi:18302 msgid "One of @code{'stream}, @code{'dgram}, @code{'raw}, @code{'rdm} or @code{'seqpacket}." msgstr "Entweder @code{'stream}, @code{'dgram}, @code{'raw}, @code{'rdm} oder @code{'seqpacket}." #. type: code{#1} -#: guix-git/doc/guix.texi:17940 +#: guix-git/doc/guix.texi:18302 #, no-wrap msgid "protocol" msgstr "protocol" #. type: table -#: guix-git/doc/guix.texi:17942 +#: guix-git/doc/guix.texi:18304 msgid "A string, must correspond to an entry in @code{/etc/protocols}." msgstr "Eine Zeichenkette, die einem Eintrag in @code{/etc/protocols} entsprechen muss." #. type: item -#: guix-git/doc/guix.texi:17942 +#: guix-git/doc/guix.texi:18304 #, no-wrap msgid "@code{wait?} (default: @code{#t})" msgstr "@code{wait?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:17945 +#: guix-git/doc/guix.texi:18307 msgid "Whether @command{inetd} should wait for the server to exit before listening to new service requests." msgstr "Ob @command{inetd} warten soll, bis der Server beendet ist, bevor es wieder auf neue Anfragen an den Dienst lauscht." #. type: table -#: guix-git/doc/guix.texi:17950 +#: guix-git/doc/guix.texi:18312 msgid "A string containing the user (and, optionally, group) name of the user as whom the server should run. The group name can be specified in a suffix, separated by a colon or period, i.e.@: @code{\"user\"}, @code{\"user:group\"} or @code{\"user.group\"}." msgstr "Eine Zeichenkette mit dem Benutzernamen (und optional dem Gruppennamen) des Benutzers, als der dieser Server ausgeführt werden soll. Der Gruppenname kann als Suffix angegeben werden, getrennt durch einen Doppelpunkt oder Punkt, d.h.@: @code{\"benutzer\"}, @code{\"benutzer:gruppe\"} oder @code{\"benutzer.gruppe\"}." #. type: item -#: guix-git/doc/guix.texi:17950 +#: guix-git/doc/guix.texi:18312 #, no-wrap msgid "@code{program} (default: @code{\"internal\"})" msgstr "@code{program} (Vorgabe: @code{\"internal\"})" #. type: table -#: guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:18315 msgid "The server program which will serve the requests, or @code{\"internal\"} if @command{inetd} should use a built-in service." msgstr "Das Serverprogramm, das die Anfragen bedienen soll, oder @code{\"internal\"}, wenn @command{inetd} einen eingebauten Dienst verwenden soll." #. type: table -#: guix-git/doc/guix.texi:17958 +#: guix-git/doc/guix.texi:18320 msgid "A list strings or file-like objects, which are the server program's arguments, starting with the zeroth argument, i.e.@: the name of the program itself. For @command{inetd}'s internal services, this entry must be @code{'()} or @code{'(\"internal\")}." msgstr "Eine Liste von Zeichenketten oder dateiartigen Objekten, die dem Serverprogramm als Argumente übergeben werden, angefangen mit dem nullten Argument, d.h.@: dem Namen selbigen Serverprogramms. Bei in @command{inetd} eingebauten Diensten muss dieser Eintrag auf @code{'()} oder @code{'(\"internal\")} gesetzt sein." #. type: deftp -#: guix-git/doc/guix.texi:17962 +#: guix-git/doc/guix.texi:18324 msgid "@xref{Configuration file,,, inetutils, GNU Inetutils} for a more detailed discussion of each configuration field." msgstr "Siehe @ref{Configuration file,,, inetutils, GNU Inetutils} für eine mehr ins Detail gehende Erörterung jedes Konfigurationsfeldes." #. type: cindex -#: guix-git/doc/guix.texi:17964 +#: guix-git/doc/guix.texi:18326 #, no-wrap msgid "opendht, distributed hash table network service" msgstr "opendht, Netzwerkdienst für eine verteilte Hashtabelle (Distributed Hash Table)" #. type: cindex -#: guix-git/doc/guix.texi:17965 +#: guix-git/doc/guix.texi:18327 #, no-wrap msgid "dhtproxy, for use with jami" msgstr "dhtproxy, Nutzung mit Jami" #. type: defvr -#: guix-git/doc/guix.texi:17966 +#: guix-git/doc/guix.texi:18328 #, no-wrap msgid "{Scheme Variable} opendht-service-type" msgstr "{Scheme-Variable} opendht-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17971 +#: guix-git/doc/guix.texi:18333 msgid "This is the type of the service running a @uref{https://opendht.net, OpenDHT} node, @command{dhtnode}. The daemon can be used to host your own proxy service to the distributed hash table (DHT), for example to connect to with Jami, among other applications." msgstr "Dieser Diensttyp dient dazu, einen @uref{https://opendht.net, OpenDHT-Knoten}, @command{dhtnode}, zu betreiben. Mit dem Daemon kann ein eigener Proxy-Dienst für die verteilte Hashtabelle (Distributed Hash Table, DHT) angeboten werden, den man in Jami und anderen Anwendungen angeben kann, damit sie sich darüber verbinden." #. type: quotation -#: guix-git/doc/guix.texi:17981 +#: guix-git/doc/guix.texi:18343 msgid "When using the OpenDHT proxy server, the IP addresses it ``sees'' from the clients should be addresses reachable from other peers. In practice this means that a publicly reachable address is best suited for a proxy server, outside of your private network. For example, hosting the proxy server on a IPv4 private local network and exposing it via port forwarding could work for external peers, but peers local to the proxy would have their private addresses shared with the external peers, leading to connectivity problems." msgstr "Wenn Sie den OpenDHT-Proxy-Server nutzen, sollten die für ihn „sichtbaren“ IP-Adressen der Clients auch anderen Netzwerkteilnehmern gegenüber erreichbar sein. In der Praxis ist es am besten, den Proxy-Server auf einem Rechner mit öffentlich zugänglicher IP-Adresse außerhalb Ihres privaten Netzwerks zu betreiben. Wenn Sie den Proxy-Server zum Beispiel im privaten lokalen Netzwerk mit IPv4 zugänglich machen würden und dann mittels Portweiterleitung für die Außenwelt zugänglich machten, funktioniert das vielleicht bei externen Netzwerkteilnehmern, aber für die Geräte im lokalen Netzwerk des Proxys würde anderen OpenDHT-Knoten nur deren private Adresse mitgeteilt, womit sie keine Verbindung aufbauen können." #. type: defvr -#: guix-git/doc/guix.texi:17985 +#: guix-git/doc/guix.texi:18347 msgid "The value of this service is a @code{opendht-configuration} object, as described below." msgstr "Der Wert dieses Dienstes ist ein @code{opendht-configuration}-Objekt, wie im Folgenden beschrieben." #. type: deftp -#: guix-git/doc/guix.texi:17987 +#: guix-git/doc/guix.texi:18349 #, no-wrap msgid "{Data Type} opendht-configuration" msgstr "{Datentyp} opendht-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17989 +#: guix-git/doc/guix.texi:18351 msgid "This is the data type for the OpenDHT service configuration." msgstr "Der Datentyp für die Dienstkonfiguration des OpenDHT-Dienstes." #. type: deftp -#: guix-git/doc/guix.texi:17994 +#: guix-git/doc/guix.texi:18356 msgid "Available @code{opendht-configuration} fields are:" msgstr "Verfügbare @code{opendht-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:17995 +#: guix-git/doc/guix.texi:18357 #, no-wrap msgid "{@code{opendht-configuration} parameter} package opendht" msgstr "{@code{opendht-configuration}-Parameter} „package“ opendht" #. type: deftypevr -#: guix-git/doc/guix.texi:17997 +#: guix-git/doc/guix.texi:18359 msgid "The @code{opendht} package to use." msgstr "Zu benutzendes @code{opendht}-Paket." #. type: deftypevr -#: guix-git/doc/guix.texi:18000 +#: guix-git/doc/guix.texi:18362 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean peer-discovery?" msgstr "{@code{opendht-configuration}-Parameter} Boolescher-Ausdruck peer-discovery?" #. type: deftypevr -#: guix-git/doc/guix.texi:18002 +#: guix-git/doc/guix.texi:18364 msgid "Whether to enable the multicast local peer discovery mechanism." msgstr "Ob sich der Knoten am Multicast-Mechanismus zum Finden lokaler Netzwerkteilnehmer beteiligen soll." #. type: deftypevr -#: guix-git/doc/guix.texi:18004 guix-git/doc/guix.texi:18012 -#: guix-git/doc/guix.texi:18020 guix-git/doc/guix.texi:19712 -#: guix-git/doc/guix.texi:19788 guix-git/doc/guix.texi:19830 -#: guix-git/doc/guix.texi:19850 guix-git/doc/guix.texi:19856 -#: guix-git/doc/guix.texi:19872 guix-git/doc/guix.texi:19960 -#: guix-git/doc/guix.texi:20048 guix-git/doc/guix.texi:20361 -#: guix-git/doc/guix.texi:20374 guix-git/doc/guix.texi:21492 -#: guix-git/doc/guix.texi:22970 guix-git/doc/guix.texi:23076 -#: guix-git/doc/guix.texi:23141 guix-git/doc/guix.texi:23150 -#: guix-git/doc/guix.texi:24383 guix-git/doc/guix.texi:24427 -#: guix-git/doc/guix.texi:24444 guix-git/doc/guix.texi:24452 -#: guix-git/doc/guix.texi:24467 guix-git/doc/guix.texi:24485 -#: guix-git/doc/guix.texi:24509 guix-git/doc/guix.texi:24562 -#: guix-git/doc/guix.texi:24695 guix-git/doc/guix.texi:24729 -#: guix-git/doc/guix.texi:24765 guix-git/doc/guix.texi:24781 -#: guix-git/doc/guix.texi:24809 guix-git/doc/guix.texi:24870 -#: guix-git/doc/guix.texi:24953 guix-git/doc/guix.texi:28367 -#: guix-git/doc/guix.texi:28381 guix-git/doc/guix.texi:28403 -#: guix-git/doc/guix.texi:28522 guix-git/doc/guix.texi:28536 -#: guix-git/doc/guix.texi:28557 guix-git/doc/guix.texi:28578 -#: guix-git/doc/guix.texi:28585 guix-git/doc/guix.texi:28630 -#: guix-git/doc/guix.texi:28637 guix-git/doc/guix.texi:29426 -#: guix-git/doc/guix.texi:29440 guix-git/doc/guix.texi:29612 -#: guix-git/doc/guix.texi:29657 guix-git/doc/guix.texi:29744 -#: guix-git/doc/guix.texi:29946 guix-git/doc/guix.texi:29979 -#: guix-git/doc/guix.texi:30119 guix-git/doc/guix.texi:30130 -#: guix-git/doc/guix.texi:30381 guix-git/doc/guix.texi:31900 -#: guix-git/doc/guix.texi:31909 guix-git/doc/guix.texi:31917 -#: guix-git/doc/guix.texi:31925 guix-git/doc/guix.texi:31941 -#: guix-git/doc/guix.texi:31957 guix-git/doc/guix.texi:31965 -#: guix-git/doc/guix.texi:31973 guix-git/doc/guix.texi:31982 -#: guix-git/doc/guix.texi:31991 guix-git/doc/guix.texi:32007 -#: guix-git/doc/guix.texi:32071 guix-git/doc/guix.texi:32177 -#: guix-git/doc/guix.texi:32185 guix-git/doc/guix.texi:32193 -#: guix-git/doc/guix.texi:32218 guix-git/doc/guix.texi:32272 -#: guix-git/doc/guix.texi:32320 guix-git/doc/guix.texi:32521 -#: guix-git/doc/guix.texi:32528 +#: guix-git/doc/guix.texi:18366 guix-git/doc/guix.texi:18374 +#: guix-git/doc/guix.texi:18382 guix-git/doc/guix.texi:20074 +#: guix-git/doc/guix.texi:20150 guix-git/doc/guix.texi:20192 +#: guix-git/doc/guix.texi:20212 guix-git/doc/guix.texi:20218 +#: guix-git/doc/guix.texi:20234 guix-git/doc/guix.texi:20322 +#: guix-git/doc/guix.texi:20410 guix-git/doc/guix.texi:20723 +#: guix-git/doc/guix.texi:20736 guix-git/doc/guix.texi:21854 +#: guix-git/doc/guix.texi:23332 guix-git/doc/guix.texi:23438 +#: guix-git/doc/guix.texi:23503 guix-git/doc/guix.texi:23512 +#: guix-git/doc/guix.texi:24745 guix-git/doc/guix.texi:24789 +#: guix-git/doc/guix.texi:24806 guix-git/doc/guix.texi:24814 +#: guix-git/doc/guix.texi:24829 guix-git/doc/guix.texi:24847 +#: guix-git/doc/guix.texi:24871 guix-git/doc/guix.texi:24924 +#: guix-git/doc/guix.texi:25057 guix-git/doc/guix.texi:25091 +#: guix-git/doc/guix.texi:25127 guix-git/doc/guix.texi:25143 +#: guix-git/doc/guix.texi:25171 guix-git/doc/guix.texi:25232 +#: guix-git/doc/guix.texi:25315 guix-git/doc/guix.texi:28704 +#: guix-git/doc/guix.texi:28718 guix-git/doc/guix.texi:28740 +#: guix-git/doc/guix.texi:28859 guix-git/doc/guix.texi:28873 +#: guix-git/doc/guix.texi:28894 guix-git/doc/guix.texi:28915 +#: guix-git/doc/guix.texi:28922 guix-git/doc/guix.texi:28967 +#: guix-git/doc/guix.texi:28974 guix-git/doc/guix.texi:29763 +#: guix-git/doc/guix.texi:29777 guix-git/doc/guix.texi:29977 +#: guix-git/doc/guix.texi:30022 guix-git/doc/guix.texi:30109 +#: guix-git/doc/guix.texi:30311 guix-git/doc/guix.texi:30344 +#: guix-git/doc/guix.texi:30484 guix-git/doc/guix.texi:30495 +#: guix-git/doc/guix.texi:30746 guix-git/doc/guix.texi:32265 +#: guix-git/doc/guix.texi:32274 guix-git/doc/guix.texi:32282 +#: guix-git/doc/guix.texi:32290 guix-git/doc/guix.texi:32306 +#: guix-git/doc/guix.texi:32322 guix-git/doc/guix.texi:32330 +#: guix-git/doc/guix.texi:32338 guix-git/doc/guix.texi:32347 +#: guix-git/doc/guix.texi:32356 guix-git/doc/guix.texi:32372 +#: guix-git/doc/guix.texi:32436 guix-git/doc/guix.texi:32542 +#: guix-git/doc/guix.texi:32550 guix-git/doc/guix.texi:32558 +#: guix-git/doc/guix.texi:32583 guix-git/doc/guix.texi:32637 +#: guix-git/doc/guix.texi:32685 guix-git/doc/guix.texi:32886 +#: guix-git/doc/guix.texi:32893 msgid "Defaults to @samp{#f}." msgstr "Vorgegeben ist @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:18007 +#: guix-git/doc/guix.texi:18369 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean enable-logging?" msgstr "{@code{opendht-configuration}-Parameter} Boolescher-Ausdruck enable-logging?" #. type: deftypevr -#: guix-git/doc/guix.texi:18010 +#: guix-git/doc/guix.texi:18372 msgid "Whether to enable logging messages to syslog. It is disabled by default as it is rather verbose." msgstr "Ob Protokollnachrichten über syslog geschrieben werden sollen. Weil es so ausführlich ist, ist es nach Vorgabe deaktiviert." #. type: deftypevr -#: guix-git/doc/guix.texi:18015 +#: guix-git/doc/guix.texi:18377 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean debug?" msgstr "{@code{opendht-configuration}-Parameter} Boolescher-Ausdruck debug?" #. type: deftypevr -#: guix-git/doc/guix.texi:18018 +#: guix-git/doc/guix.texi:18380 msgid "Whether to enable debug-level logging messages. This has no effect if logging is disabled." msgstr "Ob Protokollnachrichten der Fehlersuch-Ausführlichkeitsstufe aktiviert werden sollen. Diese Option wirkt sich @emph{nicht} aus, wenn Protokollierung ganz abgeschaltet ist." #. type: deftypevr -#: guix-git/doc/guix.texi:18023 +#: guix-git/doc/guix.texi:18385 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-string bootstrap-host" msgstr "{@code{opendht-configuration}-Parameter} Vielleicht-Zeichenkette bootstrap-host" #. type: deftypevr -#: guix-git/doc/guix.texi:18029 +#: guix-git/doc/guix.texi:18391 msgid "The node host name that is used to make the first connection to the network. A specific port value can be provided by appending the @code{:PORT} suffix. By default, it uses the Jami bootstrap nodes, but any host can be specified here. It's also possible to disable bootsrapping by setting this to the @code{'disabled} symbol." msgstr "Der Rechnername des Knotens, über den eine erste Verbindung ins OpenDHT-Netzwerk aufgebaut wird. Es kann eine bestimmte Portnummer angegeben werden, indem als Suffix @code{:PORT} angehängt wird. Vorgegeben ist, den Bootstrap-Knoten von Jami zu benutzen, aber man kann jeden Rechnernamen eines Knotens angeben. Es ist auch möglich, Bootstrapping zu deaktivieren, indem man dies auf das Symbol @code{'disabled} festlegt." #. type: deftypevr -#: guix-git/doc/guix.texi:18031 +#: guix-git/doc/guix.texi:18393 msgid "Defaults to @samp{\"bootstrap.jami.net:4222\"}." msgstr "Die Vorgabe ist @samp{\"bootstrap.jami.net:4222\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:18034 +#: guix-git/doc/guix.texi:18396 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number port" msgstr "{@code{opendht-configuration}-Parameter} Vielleicht-Zahl port" #. type: deftypevr -#: guix-git/doc/guix.texi:18037 +#: guix-git/doc/guix.texi:18399 msgid "The UDP port to bind to. When set to @code{'disabled}, an available port is automatically selected." msgstr "An welchen UDP-Port sich der OpenDHT-Knoten binden soll. Wird @code{'disabled} angegeben, wird ein verfügbarer Port automatisch ausgewählt." #. type: deftypevr -#: guix-git/doc/guix.texi:18039 +#: guix-git/doc/guix.texi:18401 msgid "Defaults to @samp{4222}." msgstr "Die Vorgabe ist @samp{4222}." #. type: deftypevr -#: guix-git/doc/guix.texi:18042 +#: guix-git/doc/guix.texi:18404 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number proxy-server-port" msgstr "{@code{opendht-configuration}-Parameter} Vielleicht-Zahl proxy-server-port" #. type: deftypevr -#: guix-git/doc/guix.texi:18044 +#: guix-git/doc/guix.texi:18406 msgid "Spawn a proxy server listening on the specified port." msgstr "Einen Proxy-Server auf dem angegebenen Port lauschen lassen." #. type: deftypevr -#: guix-git/doc/guix.texi:18046 guix-git/doc/guix.texi:18053 -#: guix-git/doc/guix.texi:24391 guix-git/doc/guix.texi:24435 -#: guix-git/doc/guix.texi:24648 guix-git/doc/guix.texi:24704 -#: guix-git/doc/guix.texi:24878 guix-git/doc/guix.texi:24889 -#: guix-git/doc/guix.texi:24962 guix-git/doc/guix.texi:25687 -#: guix-git/doc/guix.texi:25730 guix-git/doc/guix.texi:25738 -#: guix-git/doc/guix.texi:25746 guix-git/doc/guix.texi:25754 -#: guix-git/doc/guix.texi:25763 guix-git/doc/guix.texi:25771 -#: guix-git/doc/guix.texi:25778 guix-git/doc/guix.texi:25786 -#: guix-git/doc/guix.texi:25794 guix-git/doc/guix.texi:25804 -#: guix-git/doc/guix.texi:25811 guix-git/doc/guix.texi:25835 -#: guix-git/doc/guix.texi:25843 guix-git/doc/guix.texi:25869 -#: guix-git/doc/guix.texi:25878 guix-git/doc/guix.texi:25887 -#: guix-git/doc/guix.texi:25896 guix-git/doc/guix.texi:25905 -#: guix-git/doc/guix.texi:25914 guix-git/doc/guix.texi:25922 -#: guix-git/doc/guix.texi:25930 guix-git/doc/guix.texi:25937 -#: guix-git/doc/guix.texi:25945 guix-git/doc/guix.texi:25952 -#: guix-git/doc/guix.texi:25960 guix-git/doc/guix.texi:25968 -#: guix-git/doc/guix.texi:25977 guix-git/doc/guix.texi:25986 -#: guix-git/doc/guix.texi:25994 guix-git/doc/guix.texi:26002 -#: guix-git/doc/guix.texi:26010 guix-git/doc/guix.texi:26021 -#: guix-git/doc/guix.texi:26031 guix-git/doc/guix.texi:26042 -#: guix-git/doc/guix.texi:26051 guix-git/doc/guix.texi:26061 -#: guix-git/doc/guix.texi:26069 guix-git/doc/guix.texi:26080 -#: guix-git/doc/guix.texi:26089 guix-git/doc/guix.texi:26099 -#: guix-git/doc/guix.texi:29339 guix-git/doc/guix.texi:29346 -#: guix-git/doc/guix.texi:29353 guix-git/doc/guix.texi:29360 -#: guix-git/doc/guix.texi:29367 guix-git/doc/guix.texi:29374 -#: guix-git/doc/guix.texi:29382 guix-git/doc/guix.texi:29390 -#: guix-git/doc/guix.texi:29397 guix-git/doc/guix.texi:29404 -#: guix-git/doc/guix.texi:29411 guix-git/doc/guix.texi:29418 -#: guix-git/doc/guix.texi:29448 guix-git/doc/guix.texi:29486 -#: guix-git/doc/guix.texi:29493 guix-git/doc/guix.texi:29502 -#: guix-git/doc/guix.texi:29524 guix-git/doc/guix.texi:29532 -#: guix-git/doc/guix.texi:29539 guix-git/doc/guix.texi:29694 -#: guix-git/doc/guix.texi:29714 guix-git/doc/guix.texi:29729 -#: guix-git/doc/guix.texi:29736 guix-git/doc/guix.texi:32473 -#: guix-git/doc/guix.texi:32481 guix-git/doc/guix.texi:32489 -#: guix-git/doc/guix.texi:32497 guix-git/doc/guix.texi:32505 -#: guix-git/doc/guix.texi:32513 +#: guix-git/doc/guix.texi:18408 guix-git/doc/guix.texi:18415 +#: guix-git/doc/guix.texi:24753 guix-git/doc/guix.texi:24797 +#: guix-git/doc/guix.texi:25010 guix-git/doc/guix.texi:25066 +#: guix-git/doc/guix.texi:25240 guix-git/doc/guix.texi:25251 +#: guix-git/doc/guix.texi:25324 guix-git/doc/guix.texi:26024 +#: guix-git/doc/guix.texi:26067 guix-git/doc/guix.texi:26075 +#: guix-git/doc/guix.texi:26083 guix-git/doc/guix.texi:26091 +#: guix-git/doc/guix.texi:26100 guix-git/doc/guix.texi:26108 +#: guix-git/doc/guix.texi:26115 guix-git/doc/guix.texi:26123 +#: guix-git/doc/guix.texi:26131 guix-git/doc/guix.texi:26141 +#: guix-git/doc/guix.texi:26148 guix-git/doc/guix.texi:26172 +#: guix-git/doc/guix.texi:26180 guix-git/doc/guix.texi:26206 +#: guix-git/doc/guix.texi:26215 guix-git/doc/guix.texi:26224 +#: guix-git/doc/guix.texi:26233 guix-git/doc/guix.texi:26242 +#: guix-git/doc/guix.texi:26251 guix-git/doc/guix.texi:26259 +#: guix-git/doc/guix.texi:26267 guix-git/doc/guix.texi:26274 +#: guix-git/doc/guix.texi:26282 guix-git/doc/guix.texi:26289 +#: guix-git/doc/guix.texi:26297 guix-git/doc/guix.texi:26305 +#: guix-git/doc/guix.texi:26314 guix-git/doc/guix.texi:26323 +#: guix-git/doc/guix.texi:26331 guix-git/doc/guix.texi:26339 +#: guix-git/doc/guix.texi:26347 guix-git/doc/guix.texi:26358 +#: guix-git/doc/guix.texi:26368 guix-git/doc/guix.texi:26379 +#: guix-git/doc/guix.texi:26388 guix-git/doc/guix.texi:26398 +#: guix-git/doc/guix.texi:26406 guix-git/doc/guix.texi:26417 +#: guix-git/doc/guix.texi:26426 guix-git/doc/guix.texi:26436 +#: guix-git/doc/guix.texi:29676 guix-git/doc/guix.texi:29683 +#: guix-git/doc/guix.texi:29690 guix-git/doc/guix.texi:29697 +#: guix-git/doc/guix.texi:29704 guix-git/doc/guix.texi:29711 +#: guix-git/doc/guix.texi:29719 guix-git/doc/guix.texi:29727 +#: guix-git/doc/guix.texi:29734 guix-git/doc/guix.texi:29741 +#: guix-git/doc/guix.texi:29748 guix-git/doc/guix.texi:29755 +#: guix-git/doc/guix.texi:29785 guix-git/doc/guix.texi:29823 +#: guix-git/doc/guix.texi:29830 guix-git/doc/guix.texi:29839 +#: guix-git/doc/guix.texi:29861 guix-git/doc/guix.texi:29869 +#: guix-git/doc/guix.texi:29876 guix-git/doc/guix.texi:29905 +#: guix-git/doc/guix.texi:29912 guix-git/doc/guix.texi:29919 +#: guix-git/doc/guix.texi:29926 guix-git/doc/guix.texi:30059 +#: guix-git/doc/guix.texi:30079 guix-git/doc/guix.texi:30094 +#: guix-git/doc/guix.texi:30101 guix-git/doc/guix.texi:32838 +#: guix-git/doc/guix.texi:32846 guix-git/doc/guix.texi:32854 +#: guix-git/doc/guix.texi:32862 guix-git/doc/guix.texi:32870 +#: guix-git/doc/guix.texi:32878 msgid "Defaults to @samp{disabled}." msgstr "Der Vorgabewert ist @samp{disabled} (d.h.@: deaktiviert)." #. type: deftypevr -#: guix-git/doc/guix.texi:18049 +#: guix-git/doc/guix.texi:18411 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number proxy-server-port-tls" msgstr "{@code{opendht-configuration}-Parameter} Vielleicht-Zahl proxy-server-port-tls" #. type: deftypevr -#: guix-git/doc/guix.texi:18051 +#: guix-git/doc/guix.texi:18413 msgid "Spawn a proxy server listening to TLS connections on the specified port." msgstr "Einen Proxy-Server auf dem angegebenen Port auf TLS-Verbindungen lauschen lassen." #. type: cindex -#: guix-git/doc/guix.texi:18057 +#: guix-git/doc/guix.texi:18419 #, no-wrap msgid "Tor" msgstr "Tor" #. type: defvr -#: guix-git/doc/guix.texi:18058 +#: guix-git/doc/guix.texi:18420 #, no-wrap msgid "{Scheme Variable} tor-service-type" msgstr "{Scheme-Variable} tor-service-type" #. type: defvr -#: guix-git/doc/guix.texi:18063 +#: guix-git/doc/guix.texi:18425 msgid "This is the type for a service that runs the @uref{https://torproject.org, Tor} anonymous networking daemon. The service is configured using a @code{} record. By default, the Tor daemon runs as the @code{tor} unprivileged user, which is a member of the @code{tor} group." msgstr "Dies ist der Diensttyp für den Dienst, der den @uref{https://torproject.org, Tor-Daemon} für anonyme Netzwerkrouten ausführt. Der Dienst benutzt für seine Konfiguration ein @code{}-Verbundsobjekt. Vorgegeben ist, dass der Tor-Daemon als „unprivilegierter“ Nutzer @code{tor} ausgeführt wird, einem Mitglied der @code{tor}-Benutzergruppe ohne besondere Berechtigungen." #. type: deftp -#: guix-git/doc/guix.texi:18066 +#: guix-git/doc/guix.texi:18428 #, no-wrap msgid "{Data Type} tor-configuration" msgstr "{Datentyp} tor-configuration" #. type: item -#: guix-git/doc/guix.texi:18068 +#: guix-git/doc/guix.texi:18430 #, no-wrap msgid "@code{tor} (default: @code{tor})" msgstr "@code{tor} (Vorgabe: @code{tor})" #. type: table -#: guix-git/doc/guix.texi:18073 +#: guix-git/doc/guix.texi:18435 msgid "The package that provides the Tor daemon. This package is expected to provide the daemon at @file{bin/tor} relative to its output directory. The default package is the @uref{https://www.torproject.org, Tor Project's} implementation." msgstr "Das Paket, das den Tor-Daemon zur Verfügung stellt. Von diesem Paket wird erwartet, dass es den Daemon unter dem Pfad @file{bin/tor} relativ zum Ausgabeverzeichnis verfügbar macht. Das vorgegebene Paket ist die Implementierung des @uref{https://www.torproject.org, Tor-Projekts}." #. type: item -#: guix-git/doc/guix.texi:18074 +#: guix-git/doc/guix.texi:18436 #, no-wrap msgid "@code{config-file} (default: @code{(plain-file \"empty\" \"\")})" msgstr "@code{config-file} (Vorgabe: @code{(plain-file \"empty\" \"\")})" #. type: table -#: guix-git/doc/guix.texi:18080 +#: guix-git/doc/guix.texi:18442 msgid "The configuration file to use. It will be appended to a default configuration file, and the final configuration file will be passed to @code{tor} via its @code{-f} option. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). See @code{man tor} for details on the configuration file syntax." msgstr "Die Konfigurationsdatei, die benutzt werden soll. Sie wird an eine vorgegebene Konfigurationsdatei angehängt und die sich daraus ergebende Konfigurationsdatei wird dann an @code{tor} über dessen Befehlszeilenoption @code{-f} übergeben. Hier kann jedes „dateiartige“ Objekt (siehe @ref{G-Expressions, dateiartige Objekte}) angegeben werden. Siehe @code{man tor} für Details zur Syntax der Konfigurationsdatei." #. type: item -#: guix-git/doc/guix.texi:18081 +#: guix-git/doc/guix.texi:18443 #, no-wrap msgid "@code{hidden-services} (default: @code{'()})" msgstr "@code{hidden-services} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18087 +#: guix-git/doc/guix.texi:18449 msgid "The list of @code{} records to use. For any hidden service you include in this list, appropriate configuration to enable the hidden service will be automatically added to the default configuration file. You may conveniently create @code{} records using the @code{tor-hidden-service} procedure described below." msgstr "Die Liste der zu benutzenden „versteckten Dienste“ als @code{}-Verbundsobjekte. Für jeden versteckten Dienst, den Sie in dieser Liste eintragen, werden automatisch entsprechende Einstellungen zur vorgefertigten Konfigurationsdatei hinzugefügt. Sie können @code{}-Verbundsobjekte bequem mit der unten beschriebenen Prozedur @code{tor-hidden-service} erzeugen lassen." #. type: item -#: guix-git/doc/guix.texi:18088 +#: guix-git/doc/guix.texi:18450 #, no-wrap msgid "@code{socks-socket-type} (default: @code{'tcp})" msgstr "@code{socks-socket-type} (Vorgabe: @code{'tcp})" #. type: table -#: guix-git/doc/guix.texi:18095 +#: guix-git/doc/guix.texi:18457 msgid "The default socket type that Tor should use for its SOCKS socket. This must be either @code{'tcp} or @code{'unix}. If it is @code{'tcp}, then by default Tor will listen on TCP port 9050 on the loopback interface (i.e., localhost). If it is @code{'unix}, then Tor will listen on the UNIX domain socket @file{/var/run/tor/socks-sock}, which will be made writable by members of the @code{tor} group." msgstr "Welche Art von Socket Tor für seinen SOCKS-Socket in der Voreinstellung benutzen soll. Dafür muss entweder @code{'tcp} oder @code{'unix} angegeben werden. Für @code{'tcp} wird Tor nach Voreinstellung auf dem TCP-Port 9050 auf der loopback-Schnittstelle (d.h.@: localhost) lauschen. Für @code{'unix} wird Tor auf dem UNIX-Socket @file{/var/run/tor/socks-sock} lauschen, auf den Mitglieder der @code{tor}-Benutzergruppe Schreibberechtigung erhalten." #. type: table -#: guix-git/doc/guix.texi:18100 +#: guix-git/doc/guix.texi:18462 msgid "If you want to customize the SOCKS socket in more detail, leave @code{socks-socket-type} at its default value of @code{'tcp} and use @code{config-file} to override the default by providing your own @code{SocksPort} option." msgstr "Wenn Sie detailliertere Anpassungen am SOCKS-Socket vornehmen wollen, belassen Sie @code{socks-socket-type} bei seinem vorgegebenen Wert @code{'tcp} und benutzen Sie @code{config-file}, um diese Voreinstellung mit Ihrer eigenen @code{SocksPort}-Option zu überspielen." #. type: item -#: guix-git/doc/guix.texi:18101 +#: guix-git/doc/guix.texi:18463 #, no-wrap msgid "@code{control-socket?} (default: @code{#f})" msgstr "@code{control-socket?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18107 +#: guix-git/doc/guix.texi:18469 msgid "Whether or not to provide a ``control socket'' by which Tor can be controlled to, for instance, dynamically instantiate tor onion services. If @code{#t}, Tor will listen for control commands on the UNIX domain socket @file{/var/run/tor/control-sock}, which will be made writable by members of the @code{tor} group." msgstr "Ob ein „Steuerungs-Socket“ bereitgestellt werden soll, über den Tor angesteuert werden kann, um zum Beispiel Onion-Dienste zur Laufzeit zu instanziieren. Wird hier @code{#t} angegeben, nimmt Tor Steuerungsbefehle auf dem Unix-Socket @file{/var/run/tor/control-sock} entgegen, auf den Mitglieder der @code{tor}-Benutzergruppe Schreibzugriff bekommen." #. type: cindex -#: guix-git/doc/guix.texi:18111 +#: guix-git/doc/guix.texi:18473 #, no-wrap msgid "hidden service" msgstr "versteckter Dienst" #. type: deffn -#: guix-git/doc/guix.texi:18112 +#: guix-git/doc/guix.texi:18474 #, no-wrap msgid "{Scheme Procedure} tor-hidden-service @var{name} @var{mapping}" msgstr "{Scheme-Prozedur} tor-hidden-service @var{Name} @var{Zuordnung}" #. type: deffn -#: guix-git/doc/guix.texi:18115 +#: guix-git/doc/guix.texi:18477 msgid "Define a new Tor @dfn{hidden service} called @var{name} and implementing @var{mapping}. @var{mapping} is a list of port/host tuples, such as:" msgstr "Hiermit wird ein neuer @dfn{versteckter Dienst} von Tor mit diesem @var{Name}n definiert, der die @var{Zuordnung} herstellt. Die @var{Zuordnung} ist eine Liste von Port-/Rechner-Tupeln wie hier:" #. type: example -#: guix-git/doc/guix.texi:18119 +#: guix-git/doc/guix.texi:18481 #, no-wrap msgid "" " '((22 \"127.0.0.1:22\")\n" @@ -33491,43 +34151,43 @@ msgstr "" " (80 \"127.0.0.1:8080\"))\n" #. type: deffn -#: guix-git/doc/guix.texi:18123 +#: guix-git/doc/guix.texi:18485 msgid "In this example, port 22 of the hidden service is mapped to local port 22, and port 80 is mapped to local port 8080." msgstr "In diesem Beispiel wird Port 22 des versteckten Dienstes an den ihm zugeordneten lokalen Port 22 weitergeleitet und Port 80 wird an den lokalen Port 8080 weitergeleitet." #. type: deffn -#: guix-git/doc/guix.texi:18127 +#: guix-git/doc/guix.texi:18489 msgid "This creates a @file{/var/lib/tor/hidden-services/@var{name}} directory, where the @file{hostname} file contains the @code{.onion} host name for the hidden service." msgstr "Dadurch wird ein Verzeichnis @file{/var/lib/tor/hidden-services/@var{Name}} erstellt, worin sich in der Datei @file{hostname} der @code{.onion}-Rechnername („Host“-Name) des versteckten Dienstes befindet." #. type: deffn -#: guix-git/doc/guix.texi:18130 +#: guix-git/doc/guix.texi:18492 msgid "See @uref{https://www.torproject.org/docs/tor-hidden-service.html.en, the Tor project's documentation} for more information." msgstr "Siehe @uref{https://www.torproject.org/docs/tor-hidden-service.html.en, die Dokumentation des Tor-Projekts} für weitere Informationen." #. type: Plain text -#: guix-git/doc/guix.texi:18133 +#: guix-git/doc/guix.texi:18495 msgid "The @code{(gnu services rsync)} module provides the following services:" msgstr "Das Modul @code{(gnu services rsync)} bietet die folgenden Dienste an:" #. type: Plain text -#: guix-git/doc/guix.texi:18137 +#: guix-git/doc/guix.texi:18499 msgid "You might want an rsync daemon if you have files that you want available so anyone (or just yourself) can download existing files or upload new files." msgstr "Sie könnten einen rsync-Daemon einsetzen wollen, um Dateien verfügbar zu machen, damit jeder (oder nur Sie) bestehende Dateien herunterladen oder neue Dateien hochladen kann." #. type: deffn -#: guix-git/doc/guix.texi:18138 +#: guix-git/doc/guix.texi:18500 #, no-wrap msgid "{Scheme Variable} rsync-service-type" msgstr "{Scheme-Variable} rsync-service-type" #. type: deffn -#: guix-git/doc/guix.texi:18142 +#: guix-git/doc/guix.texi:18504 msgid "This is the service type for the @uref{https://rsync.samba.org, rsync} daemon, The value for this service type is a @command{rsync-configuration} record as in this example:" msgstr "Dies ist der Diensttyp für den @uref{https://rsync.samba.org, rsync-Daemon}, er benutzt ein @command{rsync-configuration}-Verbundsobjekt wie in diesem Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:18155 +#: guix-git/doc/guix.texi:18517 #, no-wrap msgid "" ";; Export two directories over rsync. By default rsync listens on\n" @@ -33555,236 +34215,236 @@ msgstr "" " (file-name \"/home/charlie/filme\"))))))\n" #. type: deffn -#: guix-git/doc/guix.texi:18158 +#: guix-git/doc/guix.texi:18520 msgid "See below for details about @code{rsync-configuration}." msgstr "Siehe unten für Details zur @code{rsync-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:18160 +#: guix-git/doc/guix.texi:18522 #, no-wrap msgid "{Data Type} rsync-configuration" msgstr "{Datentyp} rsync-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18162 +#: guix-git/doc/guix.texi:18524 msgid "Data type representing the configuration for @code{rsync-service}." msgstr "Datentyp, der die Konfiguration für den @code{rsync-service} repräsentiert." #. type: item -#: guix-git/doc/guix.texi:18164 +#: guix-git/doc/guix.texi:18526 #, no-wrap msgid "@code{package} (default: @var{rsync})" msgstr "@code{package} (Vorgabe: @var{rsync})" #. type: table -#: guix-git/doc/guix.texi:18166 +#: guix-git/doc/guix.texi:18528 msgid "@code{rsync} package to use." msgstr "Zu benutzendes @code{rsync}-Paket." #. type: item -#: guix-git/doc/guix.texi:18167 guix-git/doc/guix.texi:31480 +#: guix-git/doc/guix.texi:18529 guix-git/doc/guix.texi:31845 #, no-wrap msgid "@code{address} (default: @code{#f})" msgstr "@code{address} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18170 +#: guix-git/doc/guix.texi:18532 msgid "IP address on which @command{rsync} listens for incoming connections. If unspecified, it defaults to listening on all available addresses." msgstr "Auf welcher IP-Adresse @command{rsync} auf eingehende Verbindungen lauscht. Wird nichts angegeben, wird auf allen verfügbaren Adressen gelauscht." #. type: item -#: guix-git/doc/guix.texi:18171 +#: guix-git/doc/guix.texi:18533 #, no-wrap msgid "@code{port-number} (default: @code{873})" msgstr "@code{port-number} (Vorgabe: @code{873})" #. type: table -#: guix-git/doc/guix.texi:18175 +#: guix-git/doc/guix.texi:18537 msgid "TCP port on which @command{rsync} listens for incoming connections. If port is less than @code{1024} @command{rsync} needs to be started as the @code{root} user and group." msgstr "Der TCP-Port, auf dem @command{rsync} auf eingehende Verbindungen lauscht. Wenn die Portnummer kleiner als @code{1024} ist, muss @command{rsync} als Administratornutzer @code{root} und auch mit dieser Benutzergruppe gestartet werden." #. type: item -#: guix-git/doc/guix.texi:18176 +#: guix-git/doc/guix.texi:18538 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/rsyncd/rsyncd.pid\"})" msgstr "@code{pid-file} (Vorgabe: @code{\"/var/run/rsyncd/rsyncd.pid\"})" #. type: table -#: guix-git/doc/guix.texi:18178 +#: guix-git/doc/guix.texi:18540 msgid "Name of the file where @command{rsync} writes its PID." msgstr "Der Name der Datei, in die @command{rsync} seine PID schreibt." #. type: item -#: guix-git/doc/guix.texi:18179 +#: guix-git/doc/guix.texi:18541 #, no-wrap msgid "@code{lock-file} (default: @code{\"/var/run/rsyncd/rsyncd.lock\"})" msgstr "@code{lock-file} (Vorgabe: @code{\"/var/run/rsyncd/rsyncd.lock\"})" #. type: table -#: guix-git/doc/guix.texi:18181 +#: guix-git/doc/guix.texi:18543 msgid "Name of the file where @command{rsync} writes its lock file." msgstr "Der Name der Datei, die @command{rsync} als seine Sperrdatei verwendet." #. type: item -#: guix-git/doc/guix.texi:18182 +#: guix-git/doc/guix.texi:18544 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/rsyncd.log\"})" msgstr "@code{log-file} (Vorgabe: @code{\"/var/log/rsyncd.log\"})" #. type: table -#: guix-git/doc/guix.texi:18184 +#: guix-git/doc/guix.texi:18546 msgid "Name of the file where @command{rsync} writes its log file." msgstr "Der Name der Datei, in die @command{rsync} seine Protokolle schreibt." #. type: item -#: guix-git/doc/guix.texi:18185 guix-git/doc/guix.texi:35582 +#: guix-git/doc/guix.texi:18547 guix-git/doc/guix.texi:36062 #, no-wrap msgid "@code{user} (default: @code{\"root\"})" msgstr "@code{user} (Vorgabe: @code{\"root\"})" #. type: table -#: guix-git/doc/guix.texi:18187 +#: guix-git/doc/guix.texi:18549 msgid "Owner of the @code{rsync} process." msgstr "Das Benutzerkonto, dem der @code{rsync}-Prozess gehören soll." #. type: item -#: guix-git/doc/guix.texi:18188 +#: guix-git/doc/guix.texi:18550 #, no-wrap msgid "@code{group} (default: @code{\"root\"})" msgstr "@code{group} (Vorgabe: @code{\"root\"})" #. type: table -#: guix-git/doc/guix.texi:18190 +#: guix-git/doc/guix.texi:18552 msgid "Group of the @code{rsync} process." msgstr "Die Benutzergruppe des @code{rsync}-Prozesses." #. type: item -#: guix-git/doc/guix.texi:18191 +#: guix-git/doc/guix.texi:18553 #, no-wrap msgid "@code{uid} (default: @code{\"rsyncd\"})" msgstr "@code{uid} (Vorgabe: @code{\"rsyncd\"})" #. type: table -#: guix-git/doc/guix.texi:18194 +#: guix-git/doc/guix.texi:18556 msgid "User name or user ID that file transfers to and from that module should take place as when the daemon was run as @code{root}." msgstr "Der Benutzername oder der Benutzeridentifikator (d.h.@: die „User-ID“), mit dem Dateiübertragungen zum und vom Modul stattfinden sollen, wenn der Daemon als Administratornutzer @code{root} läuft." #. type: item -#: guix-git/doc/guix.texi:18195 +#: guix-git/doc/guix.texi:18557 #, no-wrap msgid "@code{gid} (default: @code{\"rsyncd\"})" msgstr "@code{gid} (Vorgabe: @code{\"rsyncd\"})" #. type: table -#: guix-git/doc/guix.texi:18197 guix-git/doc/guix.texi:18676 +#: guix-git/doc/guix.texi:18559 guix-git/doc/guix.texi:19038 msgid "Group name or group ID that will be used when accessing the module." msgstr "Benutzergruppenname oder Gruppenidentifikator („Group-ID“), mit dem auf das Modul zugegriffen wird." #. type: item -#: guix-git/doc/guix.texi:18198 guix-git/doc/guix.texi:36378 +#: guix-git/doc/guix.texi:18560 guix-git/doc/guix.texi:36868 #, no-wrap msgid "@code{modules} (default: @code{%default-modules})" msgstr "@code{modules} (Vorgabe: @code{%default-modules})" #. type: table -#: guix-git/doc/guix.texi:18201 +#: guix-git/doc/guix.texi:18563 msgid "List of ``modules''---i.e., directories exported over rsync. Each element must be a @code{rsync-module} record, as described below." msgstr "Liste von „Modulen“@tie{}— d.h.@: Verzeichnissen, die mit rsync exportiert werden. Jedes Element muss ein @code{rsync-module}-Verbund sein, wie nun beschrieben wird." #. type: deftp -#: guix-git/doc/guix.texi:18204 +#: guix-git/doc/guix.texi:18566 #, no-wrap msgid "{Data Type} rsync-module" msgstr "{Datentyp} rsync-module" #. type: deftp -#: guix-git/doc/guix.texi:18207 +#: guix-git/doc/guix.texi:18569 msgid "This is the data type for rsync ``modules''. A module is a directory exported over the rsync protocol. The available fields are as follows:" msgstr "Dies ist der Datentyp für rsync-„Module“. Ein Modul ist ein Verzeichnis, das über das rsync-Protokoll exportiert wird. Die verfügbaren Felder sind wie folgt:" #. type: table -#: guix-git/doc/guix.texi:18213 +#: guix-git/doc/guix.texi:18575 msgid "The module name. This is the name that shows up in URLs. For example, if the module is called @code{music}, the corresponding URL will be @code{rsync://host.example.org/music}." msgstr "Der Modulname. Dieser ist der Name, der in URLs benutzt wird. Zum Beispiel, wenn das Modul @code{musik} heißt, wird die entsprechende URL @code{rsync://host.example.org/musik} sein." #. type: code{#1} -#: guix-git/doc/guix.texi:18214 +#: guix-git/doc/guix.texi:18576 #, no-wrap msgid "file-name" msgstr "file-name" #. type: table -#: guix-git/doc/guix.texi:18216 +#: guix-git/doc/guix.texi:18578 msgid "Name of the directory being exported." msgstr "Der Name des Verzeichnisses, das exportiert wird." #. type: table -#: guix-git/doc/guix.texi:18220 +#: guix-git/doc/guix.texi:18582 msgid "Comment associated with the module. Client user interfaces may display it when they obtain the list of available modules." msgstr "Kommentar, der mit dem Modul verbunden ist. Clientbenutzerschnittstellen dürfen das anzeigen, wenn sie die Liste der verfügbaren Module bekommen." #. type: item -#: guix-git/doc/guix.texi:18221 +#: guix-git/doc/guix.texi:18583 #, no-wrap msgid "@code{read-only?} (default: @code{#t})" msgstr "@code{read-only?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18225 +#: guix-git/doc/guix.texi:18587 msgid "Whether or not client will be able to upload files. If this is false, the uploads will be authorized if permissions on the daemon side permit it." msgstr "Ob der Client Dateien hochladen können soll. Wenn dies falsch ist, wird das Hochladen autorisiert werden, wenn die Berechtigungen dort, wo der Daemon läuft, es erlauben." #. type: item -#: guix-git/doc/guix.texi:18226 +#: guix-git/doc/guix.texi:18588 #, no-wrap msgid "@code{chroot?} (default: @code{#t})" msgstr "@code{chroot?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18230 +#: guix-git/doc/guix.texi:18592 msgid "When this is true, the rsync daemon changes root to the module's directory before starting file transfers with the client. This improves security, but requires rsync to run as root." msgstr "Wenn es auf wahr steht, wechselt der rsync-Daemon das Wurzelverzeichnis in das Verzeichnis des Moduls, bevor er Dateiübertragungen mit dem Client unternimmt. Das ist besser für die Sicherheit, aber es geht nur, wenn rsync als Administratornutzer root läuft." #. type: item -#: guix-git/doc/guix.texi:18231 +#: guix-git/doc/guix.texi:18593 #, no-wrap msgid "@code{timeout} (default: @code{300})" msgstr "@code{timeout} (Vorgabe: @code{300})" #. type: table -#: guix-git/doc/guix.texi:18234 +#: guix-git/doc/guix.texi:18596 msgid "Idle time in seconds after which the daemon closes a connection with the client." msgstr "Wie viele Sekunden ein Prozess untätig bleiben darf, bis eine Verbindung zum Client getrennt wird." #. type: Plain text -#: guix-git/doc/guix.texi:18238 +#: guix-git/doc/guix.texi:18600 msgid "The @code{(gnu services syncthing)} module provides the following services:" msgstr "Das Modul @code{(gnu services syncthing)} bietet die folgenden Dienste an:" #. type: cindex -#: guix-git/doc/guix.texi:18238 +#: guix-git/doc/guix.texi:18600 #, no-wrap msgid "syncthing" msgstr "syncthing" #. type: Plain text -#: guix-git/doc/guix.texi:18243 +#: guix-git/doc/guix.texi:18605 msgid "You might want a syncthing daemon if you have files between two or more computers and want to sync them in real time, safely protected from prying eyes." msgstr "Sie könnten einen syncthing-Daemon benutzen wollen, wenn Sie Dateien auf zwei oder mehr Rechnern haben und diese in Echtzeit synchronisieren wollen, geschützt vor neugierigen Blicken." #. type: deffn -#: guix-git/doc/guix.texi:18244 +#: guix-git/doc/guix.texi:18606 #, no-wrap msgid "{Scheme Variable} syncthing-service-type" msgstr "{Scheme-Variable} syncthing-service-type" #. type: deffn -#: guix-git/doc/guix.texi:18248 +#: guix-git/doc/guix.texi:18610 msgid "This is the service type for the @uref{https://syncthing.net/, syncthing} daemon, The value for this service type is a @command{syncthing-configuration} record as in this example:" msgstr "Dies ist der Diensttyp für den @uref{https://syncthing.net/, syncthing-Daemon}, er benutzt ein @command{syncthing-configuration}-Verbundsobjekt wie in diesem Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:18252 +#: guix-git/doc/guix.texi:18614 #, no-wrap msgid "" "(service syncthing-service-type\n" @@ -33794,160 +34454,160 @@ msgstr "" " (syncthing-configuration (user \"alice\")))\n" #. type: deffn -#: guix-git/doc/guix.texi:18255 +#: guix-git/doc/guix.texi:18617 msgid "See below for details about @code{syncthing-configuration}." msgstr "Siehe unten für Details zur @code{syncthing-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:18256 +#: guix-git/doc/guix.texi:18618 #, no-wrap msgid "{Data Type} syncthing-configuration" msgstr "{Datentyp} syncthing-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18258 +#: guix-git/doc/guix.texi:18620 msgid "Data type representing the configuration for @code{syncthing-service-type}." msgstr "Datentyp, der die Konfiguration für den @code{syncthing-service-type} repräsentiert." #. type: item -#: guix-git/doc/guix.texi:18260 +#: guix-git/doc/guix.texi:18622 #, no-wrap msgid "@code{syncthing} (default: @var{syncthing})" msgstr "@code{syncthing} (Vorgabe: @var{syncthing})" #. type: table -#: guix-git/doc/guix.texi:18262 +#: guix-git/doc/guix.texi:18624 msgid "@code{syncthing} package to use." msgstr "Zu benutzendes @code{syncthing}-Paket." #. type: item -#: guix-git/doc/guix.texi:18263 +#: guix-git/doc/guix.texi:18625 #, no-wrap msgid "@code{arguments} (default: @var{'()})" msgstr "@code{arguments} (Vorgabe: @var{'()})" #. type: table -#: guix-git/doc/guix.texi:18265 +#: guix-git/doc/guix.texi:18627 msgid "List of command-line arguments passing to @code{syncthing} binary." msgstr "Liste der Befehlszeilenoptionen, die an das @code{syncthing}-Programm übergeben werden." #. type: item -#: guix-git/doc/guix.texi:18266 +#: guix-git/doc/guix.texi:18628 #, no-wrap msgid "@code{logflags} (default: @var{0})" msgstr "@code{logflags} (Vorgabe: @var{0})" #. type: table -#: guix-git/doc/guix.texi:18269 +#: guix-git/doc/guix.texi:18631 msgid "Sum of logging flags, see @uref{https://docs.syncthing.net/users/syncthing.html#cmdoption-logflags, Syncthing documentation logflags}." msgstr "Die Summe aus den Protokollierungsoptionen, siehe die @uref{https://docs.syncthing.net/users/syncthing.html#cmdoption-logflags, Dokumentation von Syncthing zu logflags}." #. type: item -#: guix-git/doc/guix.texi:18270 +#: guix-git/doc/guix.texi:18632 #, no-wrap msgid "@code{user} (default: @var{#f})" msgstr "@code{user} (Vorgabe: @var{#f})" #. type: table -#: guix-git/doc/guix.texi:18273 +#: guix-git/doc/guix.texi:18635 msgid "The user as which the Syncthing service is to be run. This assumes that the specified user exists." msgstr "Das Benutzerkonto, mit dem der Syncthing-Dienst ausgeführt wird. Es wird vorausgesetzt, dass der angegebene Benutzer existiert." #. type: item -#: guix-git/doc/guix.texi:18274 +#: guix-git/doc/guix.texi:18636 #, no-wrap msgid "@code{group} (default: @var{\"users\"})" msgstr "@code{group} (Vorgabe: @var{\"users\"})" #. type: table -#: guix-git/doc/guix.texi:18277 +#: guix-git/doc/guix.texi:18639 msgid "The group as which the Syncthing service is to be run. This assumes that the specified group exists." msgstr "Die Gruppe, mit der der Syncthing-Dienst ausgeführt wird. Es wird vorausgesetzt, dass die angegebene Gruppe existiert." #. type: item -#: guix-git/doc/guix.texi:18278 +#: guix-git/doc/guix.texi:18640 #, no-wrap msgid "@code{home} (default: @var{#f})" msgstr "@code{home} (Vorgabe: @var{#f})" #. type: table -#: guix-git/doc/guix.texi:18281 +#: guix-git/doc/guix.texi:18643 msgid "Common configuration and data directory. The default configuration directory is @file{$HOME} of the specified Syncthing @code{user}." msgstr "Das gemeinsame Verzeichnis für sowohl Konfiguration als auch Daten. In der Vorgabeeinstellung würde das in @file{$HOME} gespeicherte Verzeichnis das Konfigurationsverzeichnis des mit @code{user} festgelegten Syncthing-Nutzers." #. type: Plain text -#: guix-git/doc/guix.texi:18287 +#: guix-git/doc/guix.texi:18649 msgid "Furthermore, @code{(gnu services ssh)} provides the following services." msgstr "Des Weiteren bietet das Modul @code{(gnu services ssh)} die folgenden Dienste an." #. type: cindex -#: guix-git/doc/guix.texi:18287 guix-git/doc/guix.texi:18326 -#: guix-git/doc/guix.texi:35715 +#: guix-git/doc/guix.texi:18649 guix-git/doc/guix.texi:18688 +#: guix-git/doc/guix.texi:36205 #, no-wrap msgid "SSH" msgstr "SSH" #. type: cindex -#: guix-git/doc/guix.texi:18288 guix-git/doc/guix.texi:18327 -#: guix-git/doc/guix.texi:35716 +#: guix-git/doc/guix.texi:18650 guix-git/doc/guix.texi:18689 +#: guix-git/doc/guix.texi:36206 #, no-wrap msgid "SSH server" msgstr "SSH-Server" #. type: deffn -#: guix-git/doc/guix.texi:18290 +#: guix-git/doc/guix.texi:18652 #, no-wrap msgid "{Scheme Procedure} lsh-service [#:host-key \"/etc/lsh/host-key\"] @" msgstr "{Scheme-Prozedur} lsh-service [#:host-key \"/etc/lsh/host-key\"] @" #. type: deffn -#: guix-git/doc/guix.texi:18299 +#: guix-git/doc/guix.texi:18661 msgid "[#:daemonic? #t] [#:interfaces '()] [#:port-number 22] @ [#:allow-empty-passwords? #f] [#:root-login? #f] @ [#:syslog-output? #t] [#:x11-forwarding? #t] @ [#:tcp/ip-forwarding? #t] [#:password-authentication? #t] @ [#:public-key-authentication? #t] [#:initialize? #t] Run the @command{lshd} program from @var{lsh} to listen on port @var{port-number}. @var{host-key} must designate a file containing the host key, and readable only by root." msgstr "[#:daemonic? #t] [#:interfaces '()] [#:port-number 22] @ [#:allow-empty-passwords? #f] [#:root-login? #f] @ [#:syslog-output? #t] [#:x11-forwarding? #t] @ [#:tcp/ip-forwarding? #t] [#:password-authentication? #t] @ [#:public-key-authentication? #t] [#:initialize? #t] Das @command{lshd}-Programm auf dem @var{lsh}-Paket so ausführen, dass es auf dem Port mit Portnummer @var{port-number} lauscht. @var{host-key} muss eine Datei angeben, die den Rechnerschlüssel enthält, die nur für den Administratornutzer lesbar sein darf." #. type: deffn -#: guix-git/doc/guix.texi:18305 +#: guix-git/doc/guix.texi:18667 msgid "When @var{daemonic?} is true, @command{lshd} will detach from the controlling terminal and log its output to syslogd, unless one sets @var{syslog-output?} to false. Obviously, it also makes lsh-service depend on existence of syslogd service. When @var{pid-file?} is true, @command{lshd} writes its PID to the file called @var{pid-file}." msgstr "Wenn @var{daemonic?} wahr ist, entkoppelt sich @command{lshd} vom Terminal, auf dem er läuft, und schickt seine Protokolle an syslogd, außer @var{syslog-output?} ist auf falsch gesetzt. Selbstverständlich hängt der lsh-service dann auch von der Existenz eines syslogd-Dienstes ab. Wenn @var{pid-file?} wahr ist, schreibt @command{lshd} seine PID in die Datei namens @var{pid-file}." #. type: deffn -#: guix-git/doc/guix.texi:18309 +#: guix-git/doc/guix.texi:18671 msgid "When @var{initialize?} is true, automatically create the seed and host key upon service activation if they do not exist yet. This may take long and require interaction." msgstr "Wenn @var{initialize?} wahr ist, wird der Startwert zur Verschlüsselung ebenso wie der Rechnerschlüssel bei der Dienstaktivierung erstellt, falls sie noch nicht existieren. Das kann lange dauern und Anwenderinteraktion kann dabei erforderlich sein." #. type: deffn -#: guix-git/doc/guix.texi:18314 +#: guix-git/doc/guix.texi:18676 msgid "When @var{initialize?} is false, it is up to the user to initialize the randomness generator (@pxref{lsh-make-seed,,, lsh, LSH Manual}), and to create a key pair with the private key stored in file @var{host-key} (@pxref{lshd basics,,, lsh, LSH Manual})." msgstr "Wenn @var{initialize?} falsch ist, bleibt es dem Nutzer überlassen, den Zufallsgenerator zu initialisieren (siehe @ref{lsh-make-seed,,, lsh, LSH Manual}) und ein Schlüsselpaar zu erzeugen, dessen privater Schlüssel in der mit @var{host-key} angegebenen Datei steht (siehe @ref{lshd basics,,, lsh, LSH Manual})." #. type: deffn -#: guix-git/doc/guix.texi:18318 +#: guix-git/doc/guix.texi:18680 msgid "When @var{interfaces} is empty, lshd listens for connections on all the network interfaces; otherwise, @var{interfaces} must be a list of host names or addresses." msgstr "Wenn @var{interfaces} leer ist, lauscht lshd an allen Netzwerkschnittstellen auf Verbindungen, andernfalls muss @var{interfaces} eine Liste von Rechnernamen („Host“-Namen) oder Adressen bezeichnen." #. type: deffn -#: guix-git/doc/guix.texi:18322 +#: guix-git/doc/guix.texi:18684 msgid "@var{allow-empty-passwords?} specifies whether to accept log-ins with empty passwords, and @var{root-login?} specifies whether to accept log-ins as root." msgstr "@var{allow-empty-passwords?} gibt an, ob Anmeldungen mit leeren Passwörtern akzeptiert werden sollen, und @var{root-login?} gibt an, ob Anmeldungen als Administratornutzer „root“ akzeptiert werden sollen." #. type: deffn -#: guix-git/doc/guix.texi:18324 +#: guix-git/doc/guix.texi:18686 msgid "The other options should be self-descriptive." msgstr "Die anderen Felder sollten selbsterklärend sein." #. type: deffn -#: guix-git/doc/guix.texi:18328 +#: guix-git/doc/guix.texi:18690 #, no-wrap msgid "{Scheme Variable} openssh-service-type" msgstr "{Scheme-Variable} openssh-service-type" #. type: deffn -#: guix-git/doc/guix.texi:18332 +#: guix-git/doc/guix.texi:18694 msgid "This is the type for the @uref{http://www.openssh.org, OpenSSH} secure shell daemon, @command{sshd}. Its value must be an @code{openssh-configuration} record as in this example:" msgstr "Dies ist der Diensttyp für den @uref{http://www.openssh.org, OpenSSH-Secure-Shell-Daemon}, @command{sshd}. Sein Wert muss ein @code{openssh-configuration}-Verbundsobjekt wie in diesem Beispiel sein:" #. type: lisp -#: guix-git/doc/guix.texi:18341 +#: guix-git/doc/guix.texi:18703 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -33967,17 +34627,17 @@ msgstr "" " (\"bob\" ,(local-file \"bob.pub\"))))))\n" #. type: deffn -#: guix-git/doc/guix.texi:18344 +#: guix-git/doc/guix.texi:18706 msgid "See below for details about @code{openssh-configuration}." msgstr "Siehe unten für Details zur @code{openssh-configuration}." #. type: deffn -#: guix-git/doc/guix.texi:18347 +#: guix-git/doc/guix.texi:18709 msgid "This service can be extended with extra authorized keys, as in this example:" msgstr "Dieser Dienst kann mit weiteren autorisierten Schlüsseln erweitert werden, wie in diesem Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:18352 +#: guix-git/doc/guix.texi:18714 #, no-wrap msgid "" "(service-extension openssh-service-type\n" @@ -33989,203 +34649,203 @@ msgstr "" " ,(local-file \"charlie.pub\")))))\n" #. type: deftp -#: guix-git/doc/guix.texi:18355 +#: guix-git/doc/guix.texi:18717 #, no-wrap msgid "{Data Type} openssh-configuration" msgstr "{Datentyp} openssh-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18357 +#: guix-git/doc/guix.texi:18719 msgid "This is the configuration record for OpenSSH's @command{sshd}." msgstr "Dies ist der Verbundstyp für die Konfiguration von OpenSSHs @command{sshd}." #. type: item -#: guix-git/doc/guix.texi:18359 +#: guix-git/doc/guix.texi:18721 #, no-wrap msgid "@code{openssh} (default @var{openssh})" msgstr "@code{openssh} (Vorgabe: @var{openssh})" #. type: table -#: guix-git/doc/guix.texi:18361 +#: guix-git/doc/guix.texi:18723 msgid "The Openssh package to use." msgstr "Das zu benutzende OpenSSH-Paket." #. type: item -#: guix-git/doc/guix.texi:18362 +#: guix-git/doc/guix.texi:18724 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/sshd.pid\"})" msgstr "@code{pid-file} (Vorgabe: @code{\"/var/run/sshd.pid\"})" #. type: table -#: guix-git/doc/guix.texi:18364 +#: guix-git/doc/guix.texi:18726 msgid "Name of the file where @command{sshd} writes its PID." msgstr "Der Name der Datei, in die @command{sshd} seine PID schreibt." #. type: item -#: guix-git/doc/guix.texi:18365 +#: guix-git/doc/guix.texi:18727 #, no-wrap msgid "@code{port-number} (default: @code{22})" msgstr "@code{port-number} (Vorgabe: @code{22})" #. type: table -#: guix-git/doc/guix.texi:18367 +#: guix-git/doc/guix.texi:18729 msgid "TCP port on which @command{sshd} listens for incoming connections." msgstr "Der TCP-Port, auf dem @command{sshd} auf eingehende Verbindungen lauscht." #. type: item -#: guix-git/doc/guix.texi:18368 +#: guix-git/doc/guix.texi:18730 #, no-wrap msgid "@code{permit-root-login} (default: @code{#f})" msgstr "@code{permit-root-login} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18373 +#: guix-git/doc/guix.texi:18735 msgid "This field determines whether and when to allow logins as root. If @code{#f}, root logins are disallowed; if @code{#t}, they are allowed. If it's the symbol @code{'prohibit-password}, then root logins are permitted but not with password-based authentication." msgstr "Dieses Feld bestimmt, ob und wann Anmeldungen als Administratornutzer „root“ erlaubt sind. Wenn es @code{#f} ist, sind Anmeldungen als Administrator gesperrt, bei @code{#t} sind sie erlaubt. Wird hier das Symbol @code{'prohibit-password} angegeben, dann sind Anmeldungen als Administrator erlaubt, aber nur, wenn keine passwortbasierte Authentifizierung verwendet wird." #. type: item -#: guix-git/doc/guix.texi:18374 guix-git/doc/guix.texi:18535 +#: guix-git/doc/guix.texi:18736 guix-git/doc/guix.texi:18897 #, no-wrap msgid "@code{allow-empty-passwords?} (default: @code{#f})" msgstr "@code{allow-empty-passwords?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18377 +#: guix-git/doc/guix.texi:18739 msgid "When true, users with empty passwords may log in. When false, they may not." msgstr "Wenn dies auf wahr gesetzt ist, können sich Nutzer, deren Passwort leer ist, anmelden. Ist es falsch, können sie es nicht." #. type: item -#: guix-git/doc/guix.texi:18378 guix-git/doc/guix.texi:18538 +#: guix-git/doc/guix.texi:18740 guix-git/doc/guix.texi:18900 #, no-wrap msgid "@code{password-authentication?} (default: @code{#t})" msgstr "@code{password-authentication?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18381 +#: guix-git/doc/guix.texi:18743 msgid "When true, users may log in with their password. When false, they have other authentication methods." msgstr "Wenn dies wahr ist, können sich Benutzer mit ihrem Passwort anmelden. Wenn es falsch ist, müssen sie andere Authentisierungsmethoden benutzen." #. type: item -#: guix-git/doc/guix.texi:18382 +#: guix-git/doc/guix.texi:18744 #, no-wrap msgid "@code{public-key-authentication?} (default: @code{#t})" msgstr "@code{public-key-authentication?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18385 +#: guix-git/doc/guix.texi:18747 msgid "When true, users may log in using public key authentication. When false, users have to use other authentication method." msgstr "Wenn dies wahr ist, können Benutzer zur Anmeldung mit ihrem öffentlichen Schlüssel authentifiziert werden. Wenn es falsch ist, müssen sie andere Authentisierungsmethoden benutzen." #. type: table -#: guix-git/doc/guix.texi:18388 +#: guix-git/doc/guix.texi:18750 msgid "Authorized public keys are stored in @file{~/.ssh/authorized_keys}. This is used only by protocol version 2." msgstr "Autorisierte öffentliche Schlüssel werden in @file{~/.ssh/authorized_keys} gespeichert. Dies wird nur für Protokollversion 2 benutzt." #. type: item -#: guix-git/doc/guix.texi:18389 +#: guix-git/doc/guix.texi:18751 #, no-wrap msgid "@code{x11-forwarding?} (default: @code{#f})" msgstr "@code{x11-forwarding?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18393 +#: guix-git/doc/guix.texi:18755 msgid "When true, forwarding of X11 graphical client connections is enabled---in other words, @command{ssh} options @option{-X} and @option{-Y} will work." msgstr "Wenn dies auf wahr gesetzt ist, ist das Weiterleiten von Verbindungen an grafische X11-Clients erlaubt@tie{}— mit anderen Worten funktionieren dann die @command{ssh}-Befehlszeilenoptionen @option{-X} und @option{-Y}." #. type: item -#: guix-git/doc/guix.texi:18394 +#: guix-git/doc/guix.texi:18756 #, no-wrap msgid "@code{allow-agent-forwarding?} (default: @code{#t})" msgstr "@code{allow-agent-forwarding?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18396 +#: guix-git/doc/guix.texi:18758 msgid "Whether to allow agent forwarding." msgstr "Ob Weiterleitung an den SSH-Agenten zugelassen werden soll." #. type: item -#: guix-git/doc/guix.texi:18397 +#: guix-git/doc/guix.texi:18759 #, no-wrap msgid "@code{allow-tcp-forwarding?} (default: @code{#t})" msgstr "@code{allow-tcp-forwarding?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18399 +#: guix-git/doc/guix.texi:18761 msgid "Whether to allow TCP forwarding." msgstr "Ob Weiterleitung von TCP-Kommunikation zugelassen werden soll." #. type: item -#: guix-git/doc/guix.texi:18400 +#: guix-git/doc/guix.texi:18762 #, no-wrap msgid "@code{gateway-ports?} (default: @code{#f})" msgstr "@code{gateway-ports?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18402 +#: guix-git/doc/guix.texi:18764 msgid "Whether to allow gateway ports." msgstr "Ob Ports als Zugang für eingehende Verbindungen („Gateway-Ports“) weitergeleitet werden dürfen." #. type: item -#: guix-git/doc/guix.texi:18403 +#: guix-git/doc/guix.texi:18765 #, no-wrap msgid "@code{challenge-response-authentication?} (default: @code{#f})" msgstr "@code{challenge-response-authentication?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18406 +#: guix-git/doc/guix.texi:18768 msgid "Specifies whether challenge response authentication is allowed (e.g.@: via PAM)." msgstr "Gibt an, ob „Challenge-Response“-Authentifizierung zugelassen wird (z.B.@: über PAM)." #. type: item -#: guix-git/doc/guix.texi:18407 +#: guix-git/doc/guix.texi:18769 #, no-wrap msgid "@code{use-pam?} (default: @code{#t})" msgstr "@code{use-pam?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18413 +#: guix-git/doc/guix.texi:18775 msgid "Enables the Pluggable Authentication Module interface. If set to @code{#t}, this will enable PAM authentication using @code{challenge-response-authentication?} and @code{password-authentication?}, in addition to PAM account and session module processing for all authentication types." msgstr "Aktiviert die Pluggable-Authentication-Module-Schnittstelle. Wenn es auf @code{#t} gesetzt ist, wird dadurch PAM-Authentisierung über @code{challenge-response-authentication?} und @code{password-authentication?} aktiviert, zusätzlich zur Verarbeitung von PAM-Konten und Sitzungsmodulen für alle Authentisierungsarten." #. type: table -#: guix-git/doc/guix.texi:18418 +#: guix-git/doc/guix.texi:18780 msgid "Because PAM challenge response authentication usually serves an equivalent role to password authentication, you should disable either @code{challenge-response-authentication?} or @code{password-authentication?}." msgstr "Weil PAM-Challenge-Response-Authentisierung oft für dieselben Zwecke wie Passwortauthentisierung eingesetzt wird, sollten Sie entweder @code{challenge-response-authentication?} oder @code{password-authentication?} deaktivieren." #. type: item -#: guix-git/doc/guix.texi:18419 +#: guix-git/doc/guix.texi:18781 #, no-wrap msgid "@code{print-last-log?} (default: @code{#t})" msgstr "@code{print-last-log?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18422 +#: guix-git/doc/guix.texi:18784 msgid "Specifies whether @command{sshd} should print the date and time of the last user login when a user logs in interactively." msgstr "Hiermit wird angegeben, ob @command{sshd} Datum und Uhrzeit der letzten Anmeldung anzeigen soll, wenn sich ein Benutzer interaktiv anmeldet." #. type: item -#: guix-git/doc/guix.texi:18423 +#: guix-git/doc/guix.texi:18785 #, no-wrap msgid "@code{subsystems} (default: @code{'((\"sftp\" \"internal-sftp\"))})" msgstr "@code{subsystems} (Vorgabe: @code{'((\"sftp\" \"internal-sftp\"))})" #. type: table -#: guix-git/doc/guix.texi:18425 +#: guix-git/doc/guix.texi:18787 msgid "Configures external subsystems (e.g.@: file transfer daemon)." msgstr "Hiermit werden externe Subsysteme konfiguriert (z.B.@: ein Dateiübertragungsdaemon)." #. type: table -#: guix-git/doc/guix.texi:18429 +#: guix-git/doc/guix.texi:18791 msgid "This is a list of two-element lists, each of which containing the subsystem name and a command (with optional arguments) to execute upon subsystem request." msgstr "Diese werden als Liste von zweielementigen Listen angegeben, von denen jede den Namen des Subsystems und einen Befehl (mit optionalen Befehlszeilenargumenten) benennt, der bei einer Anfrage an das Subsystem ausgeführt werden soll." #. type: table -#: guix-git/doc/guix.texi:18432 +#: guix-git/doc/guix.texi:18794 msgid "The command @command{internal-sftp} implements an in-process SFTP server. Alternatively, one can specify the @command{sftp-server} command:" msgstr "Der Befehl @command{internal-sftp} implementiert einen SFTP-Server im selben Prozess. Alternativ kann man den @command{sftp-server}-Befehl angeben:" #. type: lisp -#: guix-git/doc/guix.texi:18437 +#: guix-git/doc/guix.texi:18799 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -34199,28 +34859,28 @@ msgstr "" " `((\"sftp\" ,(file-append openssh \"/libexec/sftp-server\"))))))\n" #. type: item -#: guix-git/doc/guix.texi:18439 +#: guix-git/doc/guix.texi:18801 #, no-wrap msgid "@code{accepted-environment} (default: @code{'()})" msgstr "@code{accepted-environment} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18441 +#: guix-git/doc/guix.texi:18803 msgid "List of strings describing which environment variables may be exported." msgstr "Eine Liste von Zeichenketten, die die Umgebungsvariablen benennen, die exportiert werden dürfen." #. type: table -#: guix-git/doc/guix.texi:18444 +#: guix-git/doc/guix.texi:18806 msgid "Each string gets on its own line. See the @code{AcceptEnv} option in @code{man sshd_config}." msgstr "Jede Zeichenkette wird zu einer eigenen Zeile in der Konfigurationsdatei. Siehe die Option @code{AcceptEnv} in @code{man sshd_config}." #. type: table -#: guix-git/doc/guix.texi:18449 +#: guix-git/doc/guix.texi:18811 msgid "This example allows ssh-clients to export the @env{COLORTERM} variable. It is set by terminal emulators, which support colors. You can use it in your shell's resource file to enable colors for the prompt and commands if this variable is set." msgstr "Mit diesem Beispiel können SSH-Clients die Umgebungsvariable @env{COLORTERM} exportieren. Sie wird von Terminal-Emulatoren gesetzt, die Farben unterstützen. Sie können Sie in der Ressourcendatei Ihrer Shell benutzen, um Farben in der Eingabeaufforderung und in Befehlen zu aktivieren, wenn diese Variable gesetzt ist." #. type: lisp -#: guix-git/doc/guix.texi:18454 +#: guix-git/doc/guix.texi:18816 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -34232,30 +34892,30 @@ msgstr "" " (accepted-environment '(\"COLORTERM\"))))\n" #. type: item -#: guix-git/doc/guix.texi:18456 +#: guix-git/doc/guix.texi:18818 #, no-wrap msgid "@code{authorized-keys} (default: @code{'()})" msgstr "@code{authorized-keys} (Vorgabe: @code{'()})" #. type: cindex -#: guix-git/doc/guix.texi:18457 +#: guix-git/doc/guix.texi:18819 #, no-wrap msgid "authorized keys, SSH" msgstr "Autorisierte Schlüssel, SSH" #. type: cindex -#: guix-git/doc/guix.texi:18458 +#: guix-git/doc/guix.texi:18820 #, no-wrap msgid "SSH authorized keys" msgstr "SSH, autorisierte Schlüssel" #. type: table -#: guix-git/doc/guix.texi:18462 +#: guix-git/doc/guix.texi:18824 msgid "This is the list of authorized keys. Each element of the list is a user name followed by one or more file-like objects that represent SSH public keys. For example:" msgstr "Dies ist die Liste der autorisierten Schlüssel. Jedes Element der Liste ist ein Benutzername gefolgt von einem oder mehr dateiartigen Objekten, die öffentliche SSH-Schlüssel repräsentieren. Zum Beispiel werden mit" #. type: lisp -#: guix-git/doc/guix.texi:18469 +#: guix-git/doc/guix.texi:18831 #, no-wrap msgid "" "(openssh-configuration\n" @@ -34271,45 +34931,45 @@ msgstr "" " (\"root\" ,(local-file \"rekado.pub\") ,(local-file \"chris.pub\")))))\n" #. type: table -#: guix-git/doc/guix.texi:18474 +#: guix-git/doc/guix.texi:18836 msgid "registers the specified public keys for user accounts @code{rekado}, @code{chris}, and @code{root}." msgstr "die angegebenen öffentlichen Schlüssel für die Benutzerkonten @code{rekado}, @code{chris} und @code{root} registriert." #. type: table -#: guix-git/doc/guix.texi:18477 +#: guix-git/doc/guix.texi:18839 msgid "Additional authorized keys can be specified @i{via} @code{service-extension}." msgstr "Weitere autorisierte Schlüssel können als @code{service-extension} hinzugefügt werden." #. type: table -#: guix-git/doc/guix.texi:18480 +#: guix-git/doc/guix.texi:18842 msgid "Note that this does @emph{not} interfere with the use of @file{~/.ssh/authorized_keys}." msgstr "Beachten Sie, dass das hier neben @file{~/.ssh/authorized_keys} @emph{ohne} sich zu stören benutzt werden kann." #. type: item -#: guix-git/doc/guix.texi:18481 guix-git/doc/guix.texi:18912 +#: guix-git/doc/guix.texi:18843 guix-git/doc/guix.texi:19274 #, no-wrap msgid "@code{log-level} (default: @code{'info})" msgstr "@code{log-level} (Vorgabe: @code{'info})" #. type: table -#: guix-git/doc/guix.texi:18485 +#: guix-git/doc/guix.texi:18847 msgid "This is a symbol specifying the logging level: @code{quiet}, @code{fatal}, @code{error}, @code{info}, @code{verbose}, @code{debug}, etc. See the man page for @file{sshd_config} for the full list of level names." msgstr "Dieses Symbol gibt die Stufe der Protokollierung an: @code{quiet} (schweigsam), @code{fatal}, @code{error}, @code{info}, @code{verbose} (ausführlich), @code{debug} (Fehlersuche) etc. Siehe die Handbuchseite für @file{sshd_config} für die vollständige Liste der Stufenbezeichnungen." #. type: item -#: guix-git/doc/guix.texi:18486 guix-git/doc/guix.texi:21328 -#: guix-git/doc/guix.texi:26469 +#: guix-git/doc/guix.texi:18848 guix-git/doc/guix.texi:21690 +#: guix-git/doc/guix.texi:26806 #, no-wrap msgid "@code{extra-content} (default: @code{\"\"})" msgstr "@code{extra-content} (Vorgabe: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:18491 +#: guix-git/doc/guix.texi:18853 msgid "This field can be used to append arbitrary text to the configuration file. It is especially useful for elaborate configurations that cannot be expressed otherwise. This configuration, for example, would generally disable root logins, but permit them from one specific IP address:" msgstr "Dieses Feld kann benutzt werden, um beliebigen Text an die Konfigurationsdatei anzuhängen. Es ist besonders bei ausgeklügelten Konfigurationen nützlich, die anders nicht ausgedrückt werden können. Zum Beispiel würden mit dieser Konfiguration Anmeldungen als Administratornutzer „root“ grundsätzlich untersagt, lediglich für eine bestimmte IP-Adresse wären sie zugelassen:" #. type: lisp -#: guix-git/doc/guix.texi:18497 +#: guix-git/doc/guix.texi:18859 #, no-wrap msgid "" "(openssh-configuration\n" @@ -34323,23 +34983,23 @@ msgstr "" " PermitRootLogin yes\"))\n" #. type: deffn -#: guix-git/doc/guix.texi:18502 +#: guix-git/doc/guix.texi:18864 #, no-wrap msgid "{Scheme Procedure} dropbear-service [@var{config}]" msgstr "{Scheme-Prozedur} dropbear-service [@var{Konfiguration}]" #. type: deffn -#: guix-git/doc/guix.texi:18506 +#: guix-git/doc/guix.texi:18868 msgid "Run the @uref{https://matt.ucc.asn.au/dropbear/dropbear.html,Dropbear SSH daemon} with the given @var{config}, a @code{} object." msgstr "Den @uref{https://matt.ucc.asn.au/dropbear/dropbear.html,Dropbear-SSH-Daemon} mit der angegebenen @var{Konfiguration} ausführen, einem @code{}-Objekt." #. type: deffn -#: guix-git/doc/guix.texi:18509 +#: guix-git/doc/guix.texi:18871 msgid "For example, to specify a Dropbear service listening on port 1234, add this call to the operating system's @code{services} field:" msgstr "Wenn Sie zum Beispiel einen Dropbear-Dienst angeben möchten, der auf Port 1234 lauscht, dann fügen Sie diesen Aufruf ins @code{services}-Feld des Betriebssystems ein:" #. type: lisp -#: guix-git/doc/guix.texi:18513 +#: guix-git/doc/guix.texi:18875 #, no-wrap msgid "" "(dropbear-service (dropbear-configuration\n" @@ -34349,110 +35009,110 @@ msgstr "" " (port-number 1234)))\n" #. type: deftp -#: guix-git/doc/guix.texi:18516 +#: guix-git/doc/guix.texi:18878 #, no-wrap msgid "{Data Type} dropbear-configuration" msgstr "{Datentyp} dropbear-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18518 +#: guix-git/doc/guix.texi:18880 msgid "This data type represents the configuration of a Dropbear SSH daemon." msgstr "Dieser Datentyp repräsentiert die Konfiguration eines Dropbear-SSH-Daemons." #. type: item -#: guix-git/doc/guix.texi:18520 +#: guix-git/doc/guix.texi:18882 #, no-wrap msgid "@code{dropbear} (default: @var{dropbear})" msgstr "@code{dropbear} (Vorgabe: @var{dropbear})" #. type: table -#: guix-git/doc/guix.texi:18522 +#: guix-git/doc/guix.texi:18884 msgid "The Dropbear package to use." msgstr "Das zu benutzende Dropbear-Paket." #. type: item -#: guix-git/doc/guix.texi:18523 +#: guix-git/doc/guix.texi:18885 #, no-wrap msgid "@code{port-number} (default: 22)" msgstr "@code{port-number} (Vorgabe: 22)" #. type: table -#: guix-git/doc/guix.texi:18525 +#: guix-git/doc/guix.texi:18887 msgid "The TCP port where the daemon waits for incoming connections." msgstr "Die Portnummer des TCP-Ports, auf dem der Daemon auf eingehende Verbindungen wartet." #. type: item -#: guix-git/doc/guix.texi:18526 +#: guix-git/doc/guix.texi:18888 #, no-wrap msgid "@code{syslog-output?} (default: @code{#t})" msgstr "@code{syslog-output?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18528 +#: guix-git/doc/guix.texi:18890 msgid "Whether to enable syslog output." msgstr "Ob eine Ausgabe für Syslog aktiviert sein soll." #. type: item -#: guix-git/doc/guix.texi:18529 +#: guix-git/doc/guix.texi:18891 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/dropbear.pid\"})" msgstr "@code{pid-file} (Vorgabe: @code{\"/var/run/dropbear.pid\"})" #. type: table -#: guix-git/doc/guix.texi:18531 +#: guix-git/doc/guix.texi:18893 msgid "File name of the daemon's PID file." msgstr "Der Dateiname der PID-Datei des Daemons." #. type: item -#: guix-git/doc/guix.texi:18532 +#: guix-git/doc/guix.texi:18894 #, no-wrap msgid "@code{root-login?} (default: @code{#f})" msgstr "@code{root-login?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18534 +#: guix-git/doc/guix.texi:18896 msgid "Whether to allow @code{root} logins." msgstr "Ob Anmeldungen als Administratornutzer @code{root} möglich sein sollen." #. type: table -#: guix-git/doc/guix.texi:18537 +#: guix-git/doc/guix.texi:18899 msgid "Whether to allow empty passwords." msgstr "Ob leere Passwörter zugelassen sein sollen." #. type: table -#: guix-git/doc/guix.texi:18540 +#: guix-git/doc/guix.texi:18902 msgid "Whether to enable password-based authentication." msgstr "Ob passwortbasierte Authentisierung zugelassen sein soll." #. type: cindex -#: guix-git/doc/guix.texi:18543 +#: guix-git/doc/guix.texi:18905 #, no-wrap msgid "AutoSSH" msgstr "AutoSSH" #. type: deffn -#: guix-git/doc/guix.texi:18544 +#: guix-git/doc/guix.texi:18906 #, no-wrap msgid "{Scheme Variable} autossh-service-type" msgstr "{Scheme-Variable} autossh-service-type" #. type: deffn -#: guix-git/doc/guix.texi:18552 +#: guix-git/doc/guix.texi:18914 msgid "This is the type for the @uref{https://www.harding.motd.ca/autossh, AutoSSH} program that runs a copy of @command{ssh} and monitors it, restarting it as necessary should it die or stop passing traffic. AutoSSH can be run manually from the command-line by passing arguments to the binary @command{autossh} from the package @code{autossh}, but it can also be run as a Guix service. This latter use case is documented here." msgstr "Dies ist der Diensttyp für das @uref{https://www.harding.motd.ca/autossh, AutoSSH-Programm}, das eine Kopie von @command{ssh} ausführt und diese überwacht. Bei Bedarf wird sie neugestartet, für den Fall, dass sie abstürzt oder keine Kommunikation mehr verarbeitet. AutoSSH kann von Hand aus der Befehlszeile heraus aufgerufen werden, indem man Argumente an die Binärdatei @command{autossh} aus dem Paket @code{autossh} übergibt, aber es kann auch als ein Guix-Dienst ausgeführt werden. Letzteres wird hier beschrieben." #. type: deffn -#: guix-git/doc/guix.texi:18556 +#: guix-git/doc/guix.texi:18918 msgid "AutoSSH can be used to forward local traffic to a remote machine using an SSH tunnel, and it respects the @file{~/.ssh/config} of the user it is run as." msgstr "AutoSSH kann benutzt werden, um an den lokalen Rechner gerichtete Kommunikation an eine entfernte Maschine über einen SSH-Tunnel weiterzuleiten. Dabei gilt die @file{~/.ssh/config}-Datei des AutoSSH ausführenden Benutzers." #. type: deffn -#: guix-git/doc/guix.texi:18561 +#: guix-git/doc/guix.texi:18923 msgid "For example, to specify a service running autossh as the user @code{pino} and forwarding all local connections to port @code{8081} to @code{remote:8081} using an SSH tunnel, add this call to the operating system's @code{services} field:" msgstr "Um zum Beispiel einen Dienst anzugeben, der autossh mit dem Benutzerkonto @code{pino} ausführt und alle lokalen Verbindungen auf Port @code{8081} an @code{entfernt:8081} über einen SSH-Tunnel durchzureichen, fügen Sie folgenden Aufruf in das @code{services}-Feld des Betriebssystems ein:" #. type: lisp -#: guix-git/doc/guix.texi:18567 +#: guix-git/doc/guix.texi:18929 #, no-wrap msgid "" "(service autossh-service-type\n" @@ -34466,139 +35126,139 @@ msgstr "" " (ssh-options (list \"-T\" \"-N\" \"-L\" \"8081:localhost:8081\" \"entfernt.net\"))))\n" #. type: deftp -#: guix-git/doc/guix.texi:18570 +#: guix-git/doc/guix.texi:18932 #, no-wrap msgid "{Data Type} autossh-configuration" msgstr "{Datentyp} autossh-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18572 +#: guix-git/doc/guix.texi:18934 msgid "This data type represents the configuration of an AutoSSH service." msgstr "Dieser Datentyp repräsentiert die Konfiguration des AutoSSH-Dienstes." #. type: item -#: guix-git/doc/guix.texi:18575 +#: guix-git/doc/guix.texi:18937 #, no-wrap msgid "@code{user} (default @code{\"autossh\"})" msgstr "@code{user} (Vorgabe: @code{\"autossh\"})" #. type: table -#: guix-git/doc/guix.texi:18578 +#: guix-git/doc/guix.texi:18940 msgid "The user as which the AutoSSH service is to be run. This assumes that the specified user exists." msgstr "Das Benutzerkonto, mit dem der AutoSSH-Dienst ausgeführt wird. Es wird vorausgesetzt, dass der angegebene Benutzer existiert." #. type: item -#: guix-git/doc/guix.texi:18579 +#: guix-git/doc/guix.texi:18941 #, no-wrap msgid "@code{poll} (default @code{600})" msgstr "@code{poll} (Vorgabe: @code{600})" #. type: table -#: guix-git/doc/guix.texi:18581 +#: guix-git/doc/guix.texi:18943 msgid "Specifies the connection poll time in seconds." msgstr "Gibt an, wie oft die Verbindung geprüft wird („Poll Time“), in Sekunden." #. type: item -#: guix-git/doc/guix.texi:18582 +#: guix-git/doc/guix.texi:18944 #, no-wrap msgid "@code{first-poll} (default @code{#f})" msgstr "@code{first-poll} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18588 +#: guix-git/doc/guix.texi:18950 msgid "Specifies how many seconds AutoSSH waits before the first connection test. After this first test, polling is resumed at the pace defined in @code{poll}. When set to @code{#f}, the first poll is not treated specially and will also use the connection poll specified in @code{poll}." msgstr "Gibt an, wie viele Sekunden AutoSSH vor der ersten Verbindungsprüfung abwartet. Nach dieser ersten Prüfung werden weitere Prüfungen mit der in @code{poll} angegebenen Regelmäßigkeit durchgeführt. Wenn dies auf @code{#f} gesetzt ist, erfährt die erste Verbindungsprüfung keine Sonderbehandlung, sondern benutzt die gleichen Zeitabstände, die auch mit @code{poll} festgelegt wurden." #. type: item -#: guix-git/doc/guix.texi:18589 +#: guix-git/doc/guix.texi:18951 #, no-wrap msgid "@code{gate-time} (default @code{30})" msgstr "@code{gate-time} (Vorgabe: @code{30})" #. type: table -#: guix-git/doc/guix.texi:18592 +#: guix-git/doc/guix.texi:18954 msgid "Specifies how many seconds an SSH connection must be active before it is considered successful." msgstr "Gibt an, wie viele Sekunden lang eine SSH-Verbindung aktiv sein muss, bis sie als erfolgreich angesehen wird." #. type: item -#: guix-git/doc/guix.texi:18593 +#: guix-git/doc/guix.texi:18955 #, no-wrap msgid "@code{log-level} (default @code{1})" msgstr "@code{log-level} (Vorgabe: @code{1})" #. type: table -#: guix-git/doc/guix.texi:18596 +#: guix-git/doc/guix.texi:18958 msgid "The log level, corresponding to the levels used by syslog---so @code{0} is the most silent while @code{7} is the chattiest." msgstr "Die Protokollierungsstufe. Sie entspricht den bei Syslog verwendeten Stufen, d.h.@: @code{0} verschweigt die meisten Ausgaben, während @code{7} die gesprächigste Stufe ist." #. type: item -#: guix-git/doc/guix.texi:18597 +#: guix-git/doc/guix.texi:18959 #, no-wrap msgid "@code{max-start} (default @code{#f})" msgstr "@code{max-start} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18600 +#: guix-git/doc/guix.texi:18962 msgid "The maximum number of times SSH may be (re)started before AutoSSH exits. When set to @code{#f}, no maximum is configured and AutoSSH may restart indefinitely." msgstr "Wie oft SSH (neu) gestartet werden darf, bevor AutoSSH aufgibt und sich beendet. Steht dies auf @code{#f}, gibt es keine Begrenzung und AutoSSH kann endlos neu starten." #. type: item -#: guix-git/doc/guix.texi:18601 +#: guix-git/doc/guix.texi:18963 #, no-wrap msgid "@code{message} (default @code{\"\"})" msgstr "@code{message} (Vorgabe: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:18603 +#: guix-git/doc/guix.texi:18965 msgid "The message to append to the echo message sent when testing connections." msgstr "Welche Nachricht beim Prüfen von Verbindungen an die zurückkommende Echo-Nachricht angehängt werden soll." #. type: item -#: guix-git/doc/guix.texi:18604 +#: guix-git/doc/guix.texi:18966 #, no-wrap msgid "@code{port} (default @code{\"0\"})" msgstr "@code{port} (Vorgabe: @code{\"0\"})" #. type: table -#: guix-git/doc/guix.texi:18614 +#: guix-git/doc/guix.texi:18976 msgid "The ports used for monitoring the connection. When set to @code{\"0\"}, monitoring is disabled. When set to @code{\"@var{n}\"} where @var{n} is a positive integer, ports @var{n} and @var{n}+1 are used for monitoring the connection, such that port @var{n} is the base monitoring port and @code{n+1} is the echo port. When set to @code{\"@var{n}:@var{m}\"} where @var{n} and @var{m} are positive integers, the ports @var{n} and @var{m} are used for monitoring the connection, such that port @var{n} is the base monitoring port and @var{m} is the echo port." msgstr "Welche Ports zum Überprüfen der Verbindung benutzt werden. Steht dies auf @code{\"0\"}, werden keine Überprüfungen durchgeführt. Steht es auf @code{\"@var{n}\"} für eine positive ganze Zahl @var{n}, werden die Ports @var{n} und @var{n}+1 zum Überwachen der Verbindung eingesetzt, wobei auf Port @var{n} Daten dafür gesendet werden und Port @code{n+1} deren Echo empfangen soll. Steht es auf @code{\"@var{n}:@var{m}\"} für positive ganze Zahlen @var{n} und @var{m}, werden Ports @var{n} und @var{m} zur Überprüfung eingesetzt, wozu Port @var{n} zum Senden der Prüfdaten eingesetzt wird und Port @var{m} das Echo empfängt." #. type: item -#: guix-git/doc/guix.texi:18615 +#: guix-git/doc/guix.texi:18977 #, no-wrap msgid "@code{ssh-options} (default @code{'()})" msgstr "@code{ssh-options} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18619 +#: guix-git/doc/guix.texi:18981 msgid "The list of command-line arguments to pass to @command{ssh} when it is run. Options @option{-f} and @option{-M} are reserved for AutoSSH and may cause undefined behaviour." msgstr "Die Liste der Befehlszeilenargumente, die an @command{ssh} weitergegeben werden sollen, wenn es ausgeführt wird. Die Befehlszeilenoptionen @option{-f} und @option{-M} sind AutoSSH vorbehalten; sie anzugeben, führt zu undefiniertem Verhalten." #. type: cindex -#: guix-git/doc/guix.texi:18623 +#: guix-git/doc/guix.texi:18985 #, no-wrap msgid "WebSSH" msgstr "WebSSH" #. type: deffn -#: guix-git/doc/guix.texi:18624 +#: guix-git/doc/guix.texi:18986 #, no-wrap msgid "{Scheme Variable} webssh-service-type" msgstr "{Scheme-Variable} webssh-service-type" #. type: deffn -#: guix-git/doc/guix.texi:18630 +#: guix-git/doc/guix.texi:18992 msgid "This is the type for the @uref{https://webssh.huashengdun.org/, WebSSH} program that runs a web SSH client. WebSSH can be run manually from the command-line by passing arguments to the binary @command{wssh} from the package @code{webssh}, but it can also be run as a Guix service. This latter use case is documented here." msgstr "Dies ist der Diensttyp für das Programm @uref{@uref{https://webssh.huashengdun.org/, WebSSH}}, das einen webbasierten SSH-Client ausführt. WebSSH kann von Hand aus der Befehlszeile heraus aufgerufen werden, indem man Argumente an die Binärdatei @command{wssh} aus dem Paket @code{webssh} übergibt, aber es kann auch als ein Guix-Dienst ausgeführt werden. Letzteres wird hier beschrieben." #. type: deffn -#: guix-git/doc/guix.texi:18636 +#: guix-git/doc/guix.texi:18998 msgid "For example, to specify a service running WebSSH on loopback interface on port @code{8888} with reject policy with a list of allowed to connection hosts, and NGINX as a reverse-proxy to this service listening for HTTPS connection, add this call to the operating system's @code{services} field:" msgstr "Um zum Beispiel einen Dienst anzugeben, der WebSSH an der Loopback-Schnittstelle auf Port @code{8888} ausführt, wobei die Richtlinie ist, dass Verbindungen abgelehnt werden außer zu einer Liste von erlaubten Rechnern, und eine auf HTTPS-Verbindungen lauschende NGINX als inversen Proxy dafür fungieren zu lassen, fügen Sie folgende Aufrufe in das @code{services}-Feld des Betriebssystems ein:" #. type: lisp -#: guix-git/doc/guix.texi:18644 +#: guix-git/doc/guix.texi:19006 #, no-wrap msgid "" "(service webssh-service-type\n" @@ -34618,7 +35278,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:18660 +#: guix-git/doc/guix.texi:19022 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -34654,128 +35314,128 @@ msgstr "" " (nginx-server-configuration-locations %webssh-configuration-nginx))))))))\n" #. type: deftp -#: guix-git/doc/guix.texi:18663 +#: guix-git/doc/guix.texi:19025 #, no-wrap msgid "{Data Type} webssh-configuration" msgstr "{Datentyp} webssh-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18665 +#: guix-git/doc/guix.texi:19027 msgid "Data type representing the configuration for @code{webssh-service}." msgstr "Repräsentiert die Konfiguration für den Dienst @code{webssh-service}." #. type: item -#: guix-git/doc/guix.texi:18667 +#: guix-git/doc/guix.texi:19029 #, no-wrap msgid "@code{package} (default: @var{webssh})" msgstr "@code{package} (Vorgabe: @code{webssh})" #. type: table -#: guix-git/doc/guix.texi:18669 +#: guix-git/doc/guix.texi:19031 msgid "@code{webssh} package to use." msgstr "Zu benutzendes @code{webssh}-Paket." #. type: item -#: guix-git/doc/guix.texi:18670 +#: guix-git/doc/guix.texi:19032 #, no-wrap msgid "@code{user-name} (default: @var{\"webssh\"})" msgstr "@code{user-name} (Vorgabe: @code{\"webssh\"})" #. type: table -#: guix-git/doc/guix.texi:18673 +#: guix-git/doc/guix.texi:19035 msgid "User name or user ID that file transfers to and from that module should take place." msgstr "Der Benutzername oder der Benutzeridentifikator (d.h.@: die „User-ID“), mit dem Dateiübertragungen zum und vom Modul stattfinden sollen." #. type: item -#: guix-git/doc/guix.texi:18674 +#: guix-git/doc/guix.texi:19036 #, no-wrap msgid "@code{group-name} (default: @var{\"webssh\"})" msgstr "@code{group-name} (Vorgabe: @code{\"webssh\"})" #. type: item -#: guix-git/doc/guix.texi:18677 +#: guix-git/doc/guix.texi:19039 #, no-wrap msgid "@code{address} (default: @var{#f})" msgstr "@code{address} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18679 +#: guix-git/doc/guix.texi:19041 msgid "IP address on which @command{webssh} listens for incoming connections." msgstr "Die IP-Adresse, auf der @command{webssh} auf eingehende Verbindungen lauscht." #. type: item -#: guix-git/doc/guix.texi:18680 +#: guix-git/doc/guix.texi:19042 #, no-wrap msgid "@code{port} (default: @var{8888})" msgstr "@code{port} (Vorgabe: @code{8888})" #. type: table -#: guix-git/doc/guix.texi:18682 +#: guix-git/doc/guix.texi:19044 msgid "TCP port on which @command{webssh} listens for incoming connections." msgstr "Der TCP-Port, auf dem @command{webssh} auf eingehende Verbindungen lauscht." #. type: item -#: guix-git/doc/guix.texi:18683 +#: guix-git/doc/guix.texi:19045 #, no-wrap msgid "@code{policy} (default: @var{#f})" msgstr "@code{policy} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18685 +#: guix-git/doc/guix.texi:19047 msgid "Connection policy. @var{reject} policy requires to specify @var{known-hosts}." msgstr "Die Verbindungsrichtlinie @code{reject} setzt voraus, dass erlaubte Rechner in @var{known-hosts} eingetragen werden." #. type: item -#: guix-git/doc/guix.texi:18686 +#: guix-git/doc/guix.texi:19048 #, no-wrap msgid "@code{known-hosts} (default: @var{'()})" msgstr "@code{known-hosts} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18688 +#: guix-git/doc/guix.texi:19050 msgid "List of hosts which allowed for SSH connection from @command{webssh}." msgstr "Eine Liste der Rechner, die für eine SSH-Verbindung aus @command{webssh} zugelassen sind." #. type: item -#: guix-git/doc/guix.texi:18689 +#: guix-git/doc/guix.texi:19051 #, no-wrap msgid "@code{log-file} (default: @file{\"/var/log/webssh.log\"})" msgstr "@code{log-file} (Vorgabe: @file{\"/var/log/webssh.log\"})" #. type: table -#: guix-git/doc/guix.texi:18691 +#: guix-git/doc/guix.texi:19053 msgid "Name of the file where @command{webssh} writes its log file." msgstr "Der Name der Datei, in die @command{webssh} seine Protokolle schreibt." #. type: item -#: guix-git/doc/guix.texi:18692 +#: guix-git/doc/guix.texi:19054 #, no-wrap msgid "@code{log-level} (default: @var{#f})" msgstr "@code{log-level} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18694 +#: guix-git/doc/guix.texi:19056 msgid "Logging level." msgstr "Das Protokollierungsniveau." #. type: defvr -#: guix-git/doc/guix.texi:18698 +#: guix-git/doc/guix.texi:19060 #, no-wrap msgid "{Scheme Variable} %facebook-host-aliases" msgstr "{Scheme-Variable} %facebook-host-aliases" #. type: defvr -#: guix-git/doc/guix.texi:18704 +#: guix-git/doc/guix.texi:19066 msgid "This variable contains a string for use in @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). Each line contains a entry that maps a known server name of the Facebook on-line service---e.g., @code{www.facebook.com}---to the local host---@code{127.0.0.1} or its IPv6 equivalent, @code{::1}." msgstr "Diese Variable enthält eine Zeichenkette, die Sie für @file{/etc/hosts} benutzen können (siehe @ref{Host Names,,, libc, Referenzhandbuch der GNU-C-Bibliothek}). Jede Zeile enthält einen Eintrag, der einen bekannten Servernamen des Facebook-Online-Dienstes@tie{}— z.B.@: @code{www.facebook.com}@tie{}— an den lokalen Rechner umleitet@tie{}— also an @code{127.0.0.1} oder dessen IPv6-Gegenstück @code{::1}." #. type: defvr -#: guix-git/doc/guix.texi:18708 +#: guix-git/doc/guix.texi:19070 msgid "This variable is typically used in the @code{hosts-file} field of an @code{operating-system} declaration (@pxref{operating-system Reference, @file{/etc/hosts}}):" msgstr "Normalerweise wird diese Variable im Feld @code{hosts-file} einer @code{operating-system}-Betriebssystemdeklaration benutzt (siehe @ref{operating-system Reference, @file{/etc/hosts}}):" #. type: lisp -#: guix-git/doc/guix.texi:18721 +#: guix-git/doc/guix.texi:19083 #, no-wrap msgid "" "(operating-system\n" @@ -34801,176 +35461,176 @@ msgstr "" " %facebook-host-aliases))))\n" #. type: defvr -#: guix-git/doc/guix.texi:18725 +#: guix-git/doc/guix.texi:19087 msgid "This mechanism can prevent programs running locally, such as Web browsers, from accessing Facebook." msgstr "Dieser Mechanismus kann verhindern, dass lokal laufende Programme, wie z.B.@: Web-Browser, auf Facebook zugreifen." #. type: Plain text -#: guix-git/doc/guix.texi:18728 +#: guix-git/doc/guix.texi:19090 msgid "The @code{(gnu services avahi)} provides the following definition." msgstr "Das Modul @code{(gnu services avahi)} stellt die folgende Definition zur Verfügung." #. type: defvr -#: guix-git/doc/guix.texi:18729 +#: guix-git/doc/guix.texi:19091 #, no-wrap msgid "{Scheme Variable} avahi-service-type" msgstr "{Scheme-Variable} avahi-service-type" #. type: defvr -#: guix-git/doc/guix.texi:18734 +#: guix-git/doc/guix.texi:19096 msgid "This is the service that runs @command{avahi-daemon}, a system-wide mDNS/DNS-SD responder that allows for service discovery and ``zero-configuration'' host name lookups (see @uref{https://avahi.org/}). Its value must be an @code{avahi-configuration} record---see below." msgstr "Dieser Dienst führt den @command{avahi-daemon} aus, einen systemweiten mDNS-/DNS-SD-Anbieter, mit dem im lokalen Netzwerk befindliche Geräte erkannt werden können („Service Discovery“) und Rechnernamen selbstständig aufgelöst werden können („Zero-Configuration“) (siehe @uref{https://avahi.org/}). Sein Wert muss ein @code{avahi-configuration}-Verbundsobjekt sein@tie{}— siehe unten." #. type: defvr -#: guix-git/doc/guix.texi:18739 +#: guix-git/doc/guix.texi:19101 msgid "This service extends the name service cache daemon (nscd) so that it can resolve @code{.local} host names using @uref{https://0pointer.de/lennart/projects/nss-mdns/, nss-mdns}. @xref{Name Service Switch}, for information on host name resolution." msgstr "Dieser Dienst erweitert den Name Service Cache Daemon (nscd), damit er @code{.local}-Rechnernamen mit @uref{https://0pointer.de/lennart/projects/nss-mdns/, nss-mdns} auflösen kann. Siehe @ref{Name Service Switch} für Informationen zur Auflösung von Rechnernamen." #. type: defvr -#: guix-git/doc/guix.texi:18742 +#: guix-git/doc/guix.texi:19104 msgid "Additionally, add the @var{avahi} package to the system profile so that commands such as @command{avahi-browse} are directly usable." msgstr "Des Weiteren wird das @var{avahi}-Paket zum Systemprofil hinzugefügt, damit Befehle wie @command{avahi-browse} einfach benutzt werden können." #. type: deftp -#: guix-git/doc/guix.texi:18744 +#: guix-git/doc/guix.texi:19106 #, no-wrap msgid "{Data Type} avahi-configuration" msgstr "{Datentyp} avahi-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18746 +#: guix-git/doc/guix.texi:19108 msgid "Data type representation the configuration for Avahi." msgstr "Dieser Datentyp repräsentiert die Konfiguration von Avahi." #. type: item -#: guix-git/doc/guix.texi:18749 +#: guix-git/doc/guix.texi:19111 #, no-wrap msgid "@code{host-name} (default: @code{#f})" msgstr "@code{host-name} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18752 +#: guix-git/doc/guix.texi:19114 msgid "If different from @code{#f}, use that as the host name to publish for this machine; otherwise, use the machine's actual host name." msgstr "Wenn dies auf etwas anderes als @code{#f} gesetzt ist, wird es anderen als Rechnername für diese Maschine mitgeteilt, andernfalls wird der tatsächliche Rechnername anderen mitgeteilt." #. type: item -#: guix-git/doc/guix.texi:18753 guix-git/doc/guix.texi:29132 +#: guix-git/doc/guix.texi:19115 guix-git/doc/guix.texi:29469 #, no-wrap msgid "@code{publish?} (default: @code{#t})" msgstr "@code{publish?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18756 +#: guix-git/doc/guix.texi:19118 msgid "When true, allow host names and services to be published (broadcast) over the network." msgstr "Wenn es auf wahr gesetzt ist, dürfen Rechnernamen und Avahi-Dienste über das Netzwerk mitgeteilt werden (als Broadcast)." #. type: item -#: guix-git/doc/guix.texi:18757 +#: guix-git/doc/guix.texi:19119 #, no-wrap msgid "@code{publish-workstation?} (default: @code{#t})" msgstr "@code{publish-workstation?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18761 +#: guix-git/doc/guix.texi:19123 msgid "When true, @command{avahi-daemon} publishes the machine's host name and IP address via mDNS on the local network. To view the host names published on your local network, you can run:" msgstr "Wenn es auf wahr gesetzt ist, teilt @command{avahi-daemon} den Rechnernamen dieser Maschine und die IP-Adresse über mDNS auf dem lokalen Netzwerk öffentlich mit. Um die auf Ihrem lokalen Netzwerk mitgeteilten Rechnernamen zu sehen, können Sie das hier ausführen:" #. type: example -#: guix-git/doc/guix.texi:18764 +#: guix-git/doc/guix.texi:19126 #, no-wrap msgid "avahi-browse _workstation._tcp\n" msgstr "avahi-browse _workstation._tcp\n" #. type: item -#: guix-git/doc/guix.texi:18766 +#: guix-git/doc/guix.texi:19128 #, no-wrap msgid "@code{wide-area?} (default: @code{#f})" msgstr "@code{wide-area?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18768 +#: guix-git/doc/guix.texi:19130 msgid "When true, DNS-SD over unicast DNS is enabled." msgstr "Wenn dies auf wahr gesetzt ist, ist DNS-SD über „Unicast DNS“ aktiviert." #. type: item -#: guix-git/doc/guix.texi:18769 +#: guix-git/doc/guix.texi:19131 #, no-wrap msgid "@code{ipv4?} (default: @code{#t})" msgstr "@code{ipv4?} (Vorgabe: @code{#t})" #. type: itemx -#: guix-git/doc/guix.texi:18770 +#: guix-git/doc/guix.texi:19132 #, no-wrap msgid "@code{ipv6?} (default: @code{#t})" msgstr "@code{ipv6?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18772 +#: guix-git/doc/guix.texi:19134 msgid "These fields determine whether to use IPv4/IPv6 sockets." msgstr "Mit diesen Feldern wird festgelegt, ob IPv4-/IPv6-Sockets verwendet werden." #. type: item -#: guix-git/doc/guix.texi:18773 +#: guix-git/doc/guix.texi:19135 #, no-wrap msgid "@code{domains-to-browse} (default: @code{'()})" msgstr "@code{domains-to-browse} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18775 +#: guix-git/doc/guix.texi:19137 msgid "This is a list of domains to browse." msgstr "Dies ist eine Liste von Domänen, die durchsucht werden." #. type: deffn -#: guix-git/doc/guix.texi:18778 +#: guix-git/doc/guix.texi:19140 #, no-wrap msgid "{Scheme Variable} openvswitch-service-type" msgstr "{Scheme-Variable} openvswitch-service-type" #. type: deffn -#: guix-git/doc/guix.texi:18782 +#: guix-git/doc/guix.texi:19144 msgid "This is the type of the @uref{https://www.openvswitch.org, Open vSwitch} service, whose value should be an @code{openvswitch-configuration} object." msgstr "Dies ist der Diensttyp des @uref{https://www.openvswitch.org, Open-vSwitch-Dienstes}, der als Wert ein @code{openvswitch-configuration}-Objekt hat." #. type: deftp -#: guix-git/doc/guix.texi:18784 +#: guix-git/doc/guix.texi:19146 #, no-wrap msgid "{Data Type} openvswitch-configuration" msgstr "{Datentyp} openvswitch-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18788 +#: guix-git/doc/guix.texi:19150 msgid "Data type representing the configuration of Open vSwitch, a multilayer virtual switch which is designed to enable massive network automation through programmatic extension." msgstr "Der Datentyp, der die Konfiguration von Open vSwitch repräsentiert, einem auf mehreren Schichten arbeitenden („multilayer“) virtuellen Switch, der für massenhafte Netzwerkautomatisierung durch programmatische Erweiterungen eingesetzt werden kann." #. type: item -#: guix-git/doc/guix.texi:18790 +#: guix-git/doc/guix.texi:19152 #, no-wrap msgid "@code{package} (default: @var{openvswitch})" msgstr "@code{package} (Vorgabe: @var{openvswitch})" #. type: table -#: guix-git/doc/guix.texi:18792 +#: guix-git/doc/guix.texi:19154 msgid "Package object of the Open vSwitch." msgstr "Das Paketobjekt vom Open vSwitch." #. type: defvr -#: guix-git/doc/guix.texi:18796 +#: guix-git/doc/guix.texi:19158 #, no-wrap msgid "{Scheme Variable} pagekite-service-type" msgstr "{Scheme-Variable} pagekite-service-type" #. type: defvr -#: guix-git/doc/guix.texi:18801 +#: guix-git/doc/guix.texi:19163 msgid "This is the service type for the @uref{https://pagekite.net, PageKite} service, a tunneling solution for making localhost servers publicly visible, even from behind restrictive firewalls or NAT without forwarded ports. The value for this service type is a @code{pagekite-configuration} record." msgstr "Dies ist der Diensttyp für den @uref{https://memcached.org/, PageKite-Dienst}, einem Angebot zur getunnelten Netzwerkumleitung, womit bloß auf localhost lauschende Server öffentlich erreichbar gemacht werden können. Mit PageKite werden die Server für andere erreichbar, selbst wenn Ihre Maschine nur über eine restriktive Firewall oder eine Netzwerkadressübersetzung („Network Address Translation“, NAT) ohne Portweiterleitung mit dem Internet verbunden ist. Der Wert dieses Dienstes ist ein @code{pagekite-configuration}-Verbundsobjekt." #. type: defvr -#: guix-git/doc/guix.texi:18803 +#: guix-git/doc/guix.texi:19165 msgid "Here's an example exposing the local HTTP and SSH daemons:" msgstr "Hier ist ein Beispiel, wodurch die lokal laufenden HTTP- und SSH-Daemons zugänglich gemacht werden:" #. type: lisp -#: guix-git/doc/guix.texi:18810 +#: guix-git/doc/guix.texi:19172 #, no-wrap msgid "" "(service pagekite-service-type\n" @@ -34986,110 +35646,110 @@ msgstr "" " (extra-file \"/etc/pagekite.rc\")))\n" #. type: deftp -#: guix-git/doc/guix.texi:18813 +#: guix-git/doc/guix.texi:19175 #, no-wrap msgid "{Data Type} pagekite-configuration" msgstr "{Datentyp} pagekite-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18815 +#: guix-git/doc/guix.texi:19177 msgid "Data type representing the configuration of PageKite." msgstr "Der Datentyp, der die Konfiguration von PageKite repräsentiert." #. type: item -#: guix-git/doc/guix.texi:18817 +#: guix-git/doc/guix.texi:19179 #, no-wrap msgid "@code{package} (default: @var{pagekite})" msgstr "@code{package} (Vorgabe: @var{pagekite})" #. type: table -#: guix-git/doc/guix.texi:18819 +#: guix-git/doc/guix.texi:19181 msgid "Package object of PageKite." msgstr "Paketobjekt von PageKite." #. type: item -#: guix-git/doc/guix.texi:18820 +#: guix-git/doc/guix.texi:19182 #, no-wrap msgid "@code{kitename} (default: @code{#f})" msgstr "@code{kitename} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18822 +#: guix-git/doc/guix.texi:19184 msgid "PageKite name for authenticating to the frontend server." msgstr "PageKite-Name, um sich gegenüber dem Vordergrundserver zu authentisieren." #. type: item -#: guix-git/doc/guix.texi:18823 +#: guix-git/doc/guix.texi:19185 #, no-wrap msgid "@code{kitesecret} (default: @code{#f})" msgstr "@code{kitesecret} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18826 +#: guix-git/doc/guix.texi:19188 msgid "Shared secret for authenticating to the frontend server. You should probably put this inside @code{extra-file} instead." msgstr "Das gemeinsame Geheimnis, das eine Authentisierung gegenüber dem Vordergrundserver ermöglicht. Wahrscheinlich sollten Sie es besser als Teil von @code{extra-file} angeben." #. type: item -#: guix-git/doc/guix.texi:18827 +#: guix-git/doc/guix.texi:19189 #, no-wrap msgid "@code{frontend} (default: @code{#f})" msgstr "@code{frontend} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18830 +#: guix-git/doc/guix.texi:19192 msgid "Connect to the named PageKite frontend server instead of the @uref{https://pagekite.net,,pagekite.net} service." msgstr "Eine Verbindung zum angegebenen PageKite-Vordergrundserver herstellen statt zu dem Dienst von @uref{https://pagekite.net,,pagekite.net}." #. type: item -#: guix-git/doc/guix.texi:18831 +#: guix-git/doc/guix.texi:19193 #, no-wrap msgid "@code{kites} (default: @code{'(\"http:@@kitename:localhost:80:@@kitesecret\")})" msgstr "@code{kites} (Vorgabe: @code{'(\"http:@@kitename:localhost:80:@@kitesecret\")})" #. type: table -#: guix-git/doc/guix.texi:18834 +#: guix-git/doc/guix.texi:19196 msgid "List of service kites to use. Exposes HTTP on port 80 by default. The format is @code{proto:kitename:host:port:secret}." msgstr "Die Liste der zu benutzenden „Kites“ für Dienste. Nach Vorgabe wird der HTTP-Server auf Port 80 nach außen hin zugänglich gemacht. Dienste sind im Format @code{protokoll:kitename:rechnername:port:geheimnis} anzugeben." #. type: item -#: guix-git/doc/guix.texi:18835 +#: guix-git/doc/guix.texi:19197 #, no-wrap msgid "@code{extra-file} (default: @code{#f})" msgstr "@code{extra-file} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18838 +#: guix-git/doc/guix.texi:19200 msgid "Extra configuration file to read, which you are expected to create manually. Use this to add additional options and manage shared secrets out-of-band." msgstr "Eine Konfigurationsdatei, die zusätzlich eingelesen werden soll. Es wird erwartet, dass Sie diese manuell erstellen. Benutzen Sie sie, wenn Sie zusätzliche Optionen angeben möchten und um gemeinsame Geheimnisse abseits von Guix’ Zuständigkeitsbereich zu verwalten." #. type: defvr -#: guix-git/doc/guix.texi:18842 +#: guix-git/doc/guix.texi:19204 #, no-wrap msgid "{Scheme Variable} yggdrasil-service-type" msgstr "{Scheme-Variable} yggdrasil-service-type" #. type: defvr -#: guix-git/doc/guix.texi:18846 +#: guix-git/doc/guix.texi:19208 msgid "The service type for connecting to the @uref{https://yggdrasil-network.github.io/, Yggdrasil network}, an early-stage implementation of a fully end-to-end encrypted IPv6 network." msgstr "Der Diensttyp, um eine Verbindung mit dem @uref{https://yggdrasil-network.github.io/, Yggdrasil-Netzwerk} herzustellen, einer frühen Implementierungsstufe eines völlig Ende-zu-Ende-verschlüsselten IPv6-Netzwerks." #. type: quotation -#: guix-git/doc/guix.texi:18853 +#: guix-git/doc/guix.texi:19215 msgid "Yggdrasil provides name-independent routing with cryptographically generated addresses. Static addressing means you can keep the same address as long as you want, even if you move to a new location, or generate a new address (by generating new keys) whenever you want. @uref{https://yggdrasil-network.github.io/2018/07/28/addressing.html}" msgstr "Die Wegfindung im Yggdrasil-Netzwerk verläuft unabhängig vom Namen der Netzwerkknoten („Name-independent Routing“) und verwendet kryptografisch erzeugte Adressen. Durch die statische Adressierung können Sie dieselbe Adresse so lange weiterbenutzen, wie Sie möchten, selbst wenn Sie sich an einem anderen Ort befinden als vorher, und Sie können auch, wann immer Sie möchten, eine neue Adresse erzeugen (durch Erzeugung neuer Schlüssel). Siehe @uref{https://yggdrasil-network.github.io/2018/07/28/addressing.html}" #. type: defvr -#: guix-git/doc/guix.texi:18857 +#: guix-git/doc/guix.texi:19219 msgid "Pass it a value of @code{yggdrasil-configuration} to connect it to public peers and/or local peers." msgstr "Übergeben Sie einen Wert vom Typ @code{yggdrasil-configuration}, um ihn eine Verbindung zu öffentlichen und/oder lokalen Netzwerkteilnehmern („Peers“) herstellen zu lassen." #. type: defvr -#: guix-git/doc/guix.texi:18861 +#: guix-git/doc/guix.texi:19223 msgid "Here is an example using public peers and a static address. The static signing and encryption keys are defined in @file{/etc/yggdrasil-private.conf} (the default value for @code{config-file})." msgstr "Hier ist ein Beispiel für die Nutzung mit öffentlichen Peers und einer statischen Adresse. Die statischen Schlüssel zum Signieren und Verschlüsseln werden in @file{/etc/yggdrasil-private.conf} definiert (dies ist die Vorgabe für @code{config-file})." #. type: lisp -#: guix-git/doc/guix.texi:18873 +#: guix-git/doc/guix.texi:19235 #, no-wrap msgid "" ";; part of the operating-system declaration\n" @@ -35115,7 +35775,7 @@ msgstr "" " ))\n" #. type: example -#: guix-git/doc/guix.texi:18880 +#: guix-git/doc/guix.texi:19242 #, no-wrap msgid "" "# sample content for /etc/yggdrasil-private.conf\n" @@ -35134,7 +35794,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:18883 +#: guix-git/doc/guix.texi:19245 #, no-wrap msgid "" " # Your private encryption key. DO NOT share this with anyone!\n" @@ -35146,7 +35806,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:18887 +#: guix-git/doc/guix.texi:19249 #, no-wrap msgid "" " # Your public signing key. You should not ordinarily need to share\n" @@ -35160,7 +35820,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:18891 +#: guix-git/doc/guix.texi:19253 #, no-wrap msgid "" " # Your private signing key. DO NOT share this with anyone!\n" @@ -35172,124 +35832,124 @@ msgstr "" "@}\n" #. type: deftp -#: guix-git/doc/guix.texi:18894 +#: guix-git/doc/guix.texi:19256 #, no-wrap msgid "{Data Type} yggdrasil-configuration" msgstr "{Datentyp} yggdrasil-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18896 +#: guix-git/doc/guix.texi:19258 msgid "Data type representing the configuration of Yggdrasil." msgstr "Repräsentiert die Konfiguration von Yggdrasil." #. type: item -#: guix-git/doc/guix.texi:18898 +#: guix-git/doc/guix.texi:19260 #, no-wrap msgid "@code{package} (default: @code{yggdrasil})" msgstr "@code{package} (Vorgabe: @code{yggdrasil})" #. type: table -#: guix-git/doc/guix.texi:18900 +#: guix-git/doc/guix.texi:19262 msgid "Package object of Yggdrasil." msgstr "Paketobjekt von Yggdrasil." #. type: item -#: guix-git/doc/guix.texi:18901 +#: guix-git/doc/guix.texi:19263 #, no-wrap msgid "@code{json-config} (default: @code{'()})" msgstr "@code{json-config} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18907 +#: guix-git/doc/guix.texi:19269 msgid "Contents of @file{/etc/yggdrasil.conf}. Will be merged with @file{/etc/yggdrasil-private.conf}. Note that these settings are stored in the Guix store, which is readable to all users. @strong{Do not store your private keys in it}. See the output of @code{yggdrasil -genconf} for a quick overview of valid keys and their default values." msgstr "Der Inhalt von @file{/etc/yggdrasil.conf}. Er wird mit @file{/etc/yggdrasil-private.conf} zusammengelegt. Beachten Sie, dass diese Einstellungen im Guix-Store gespeichert werden, auf den alle Nutzer Zugriff haben. @strong{Speichern Sie dort nicht Ihre privaten Schlüssel}. Siehe die Ausgabe von @code{yggdrasil -genconf} für eine kurze Übersicht über gültige Schlüssel und ihre Vorgabewerte." #. type: item -#: guix-git/doc/guix.texi:18908 +#: guix-git/doc/guix.texi:19270 #, no-wrap msgid "@code{autoconf?} (default: @code{#f})" msgstr "@code{autoconf?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18911 +#: guix-git/doc/guix.texi:19273 msgid "Whether to use automatic mode. Enabling it makes Yggdrasil use adynamic IP and peer with IPv6 neighbors." msgstr "Ob der automatische Modus benutzt werden soll. Ihn zu aktivieren, bedeutet, dass Yggdrasil eine dynamische IP-Adresse benutzt und sich mit IPv6-Nachbarn verbindet." #. type: table -#: guix-git/doc/guix.texi:18914 +#: guix-git/doc/guix.texi:19276 msgid "How much detail to include in logs. Use @code{'debug} for more detail." msgstr "Wie detailliert die Protokolle sein sollen. Schreiben Sie @code{'debug} für einen höheren Detailgrad." #. type: item -#: guix-git/doc/guix.texi:18915 +#: guix-git/doc/guix.texi:19277 #, no-wrap msgid "@code{log-to} (default: @code{'stdout})" msgstr "@code{log-to} (Vorgabe: @code{'stdout})" #. type: table -#: guix-git/doc/guix.texi:18919 +#: guix-git/doc/guix.texi:19281 msgid "Where to send logs. By default, the service logs standard output to @file{/var/log/yggdrasil.log}. The alternative is @code{'syslog}, which sends output to the running syslog service." msgstr "Wohin Protokolle geschickt werden. Die Vorgabe ist, dass der Dienst ein Protokoll seiner Standardausgabe in @file{/var/log/yggdrasil.log} schreibt. Die Alternative ist @code{'syslog}, wodurch die Ausgabe an den laufenden syslog-Dienst geschickt wird." #. type: item -#: guix-git/doc/guix.texi:18920 +#: guix-git/doc/guix.texi:19282 #, no-wrap msgid "@code{config-file} (default: @code{\"/etc/yggdrasil-private.conf\"})" msgstr "@code{config-file} (Vorgabe: @code{\"/etc/yggdrasil-private.conf\"})" #. type: table -#: guix-git/doc/guix.texi:18927 +#: guix-git/doc/guix.texi:19289 msgid "What HJSON file to load sensitive data from. This is where private keys should be stored, which are necessary to specify if you don't want a randomized address after each restart. Use @code{#f} to disable. Options defined in this file take precedence over @code{json-config}. Use the output of @code{yggdrasil -genconf} as a starting point. To configure a static address, delete everything except these options:" msgstr "Wo die HJSON-Datei liegt, aus der sensible Daten geladen werden. Hier sollten private Schlüssel gespeichert werden, wodurch nicht nach jedem Neustart eine zufällige Adresse benutzt wird. Verwenden Sie @code{#f} zum Deaktivieren. In dieser Datei festgelegte Optionen haben Vorrang vor @code{json-config}. Tragen Sie anfangs die Ausgabe von @code{yggdrasil -genconf} ein. Um eine statische Adresse zu benutzen, löschen Sie alles außer den folgenden Optionen:" #. type: code{#1} -#: guix-git/doc/guix.texi:18929 +#: guix-git/doc/guix.texi:19291 #, no-wrap msgid "EncryptionPublicKey" msgstr "EncryptionPublicKey" #. type: code{#1} -#: guix-git/doc/guix.texi:18930 +#: guix-git/doc/guix.texi:19292 #, no-wrap msgid "EncryptionPrivateKey" msgstr "EncryptionPrivateKey" #. type: code{#1} -#: guix-git/doc/guix.texi:18931 +#: guix-git/doc/guix.texi:19293 #, no-wrap msgid "SigningPublicKey" msgstr "SigningPublicKey" #. type: code{#1} -#: guix-git/doc/guix.texi:18932 +#: guix-git/doc/guix.texi:19294 #, no-wrap msgid "SigningPrivateKey" msgstr "SigningPrivateKey" #. type: cindex -#: guix-git/doc/guix.texi:18937 +#: guix-git/doc/guix.texi:19299 #, no-wrap msgid "IPFS" msgstr "IPFS" #. type: defvr -#: guix-git/doc/guix.texi:18938 +#: guix-git/doc/guix.texi:19300 #, no-wrap msgid "{Scheme Variable} ipfs-service-type" msgstr "{Scheme-Variable} ipfs-service-type" #. type: defvr -#: guix-git/doc/guix.texi:18942 +#: guix-git/doc/guix.texi:19304 msgid "The service type for connecting to the @uref{https://ipfs.io,IPFS network}, a global, versioned, peer-to-peer file system. Pass it a @code{ipfs-configuration} to change the ports used for the gateway and API." msgstr "Der Diensttyp, um sich mit dem @uref{https://ipfs.io,IPFS-Netzwerk} zu verbinden, einem weltweiten, versionierten, von einem Netzwerkteilnehmer zum anderen („peer-to-peer“) verteilten Dateisystem. Geben Sie ein @code{ipfs-configuration}-Verbundsobjekt an, um die für den Netzwerkzugang (Gateway) und die Anwendungsschnittstelle (API) verwendeten Ports zu ändern." #. type: defvr -#: guix-git/doc/guix.texi:18944 +#: guix-git/doc/guix.texi:19306 msgid "Here's an example configuration, using some non-standard ports:" msgstr "Hier ist eine Beispielkonfiguration, um nicht standardmäßige Ports einzusetzen:" #. type: lisp -#: guix-git/doc/guix.texi:18950 +#: guix-git/doc/guix.texi:19312 #, no-wrap msgid "" "(service ipfs-service-type\n" @@ -35303,68 +35963,68 @@ msgstr "" " (api \"/ip4/127.0.0.1/tcp/8881\")))\n" #. type: deftp -#: guix-git/doc/guix.texi:18953 +#: guix-git/doc/guix.texi:19315 #, no-wrap msgid "{Data Type} ipfs-configuration" msgstr "{Datentyp} ipfs-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18955 +#: guix-git/doc/guix.texi:19317 msgid "Data type representing the configuration of IPFS." msgstr "Repräsentiert die Konfiguration des IPFS." #. type: item -#: guix-git/doc/guix.texi:18957 +#: guix-git/doc/guix.texi:19319 #, no-wrap msgid "@code{package} (default: @code{go-ipfs})" msgstr "@code{package} (Vorgabe: @code{go-ipfs})" #. type: table -#: guix-git/doc/guix.texi:18959 +#: guix-git/doc/guix.texi:19321 msgid "Package object of IPFS." msgstr "Paketobjekt von IPFS." #. type: item -#: guix-git/doc/guix.texi:18960 +#: guix-git/doc/guix.texi:19322 #, no-wrap msgid "@code{gateway} (default: @code{\"/ip4/127.0.0.1/tcp/8082\"})" msgstr "@code{gateway} (Vorgabe: @code{\"/ip4/127.0.0.1/tcp/8082\"})" #. type: table -#: guix-git/doc/guix.texi:18962 +#: guix-git/doc/guix.texi:19324 msgid "Address of the gateway, in ‘multiaddress’ format." msgstr "Die Adresse des Netzwerkzugangs im Format einer Multiadresse („multiaddress“)." #. type: item -#: guix-git/doc/guix.texi:18963 +#: guix-git/doc/guix.texi:19325 #, no-wrap msgid "@code{api} (default: @code{\"/ip4/127.0.0.1/tcp/5001\"})" msgstr "@code{api} (Vorgabe: @code{\"/ip4/127.0.0.1/tcp/5001\"})" #. type: table -#: guix-git/doc/guix.texi:18965 +#: guix-git/doc/guix.texi:19327 msgid "Address of the API endpoint, in ‘multiaddress’ format." msgstr "Die Adresse des API-Endpunkts im Format einer Multiadresse („multiaddress“)." #. type: cindex -#: guix-git/doc/guix.texi:18968 +#: guix-git/doc/guix.texi:19330 #, no-wrap msgid "keepalived" msgstr "keepalived" #. type: deffn -#: guix-git/doc/guix.texi:18969 +#: guix-git/doc/guix.texi:19331 #, no-wrap msgid "{Scheme Variable} keepalived-service-type" msgstr "{Scheme-Variable} keepalived-service-type" #. type: deffn -#: guix-git/doc/guix.texi:18974 +#: guix-git/doc/guix.texi:19336 msgid "This is the type for the @uref{https://www.keepalived.org/, Keepalived} routing software, @command{keepalived}. Its value must be an @code{keepalived-configuration} record as in this example for master machine:" msgstr "Dies ist der Diensttyp für die Software @uref{https://www.keepalived.org/, Keepalived} für virtuelle Router, @command{keepalived}. Sein Wert muss ein @code{keepalived-configuration}-Verbundsobjekt sein, wie in diesem Beispiel für die Maschine erster Wahl (Master):" #. type: lisp -#: guix-git/doc/guix.texi:18979 +#: guix-git/doc/guix.texi:19341 #, no-wrap msgid "" "(service keepalived-service-type\n" @@ -35376,12 +36036,12 @@ msgstr "" " (config-file (local-file \"keepalived-master.conf\"))))\n" #. type: deffn -#: guix-git/doc/guix.texi:18982 +#: guix-git/doc/guix.texi:19344 msgid "where @file{keepalived-master.conf}:" msgstr "Dabei enthält @file{keepalived-master.conf}:" #. type: example -#: guix-git/doc/guix.texi:18994 +#: guix-git/doc/guix.texi:19356 #, no-wrap msgid "" "vrrp_instance my-group @{\n" @@ -35407,12 +36067,12 @@ msgstr "" "@}\n" #. type: deffn -#: guix-git/doc/guix.texi:18997 +#: guix-git/doc/guix.texi:19359 msgid "and for backup machine:" msgstr "Für die Ersatzmaschine (Backup):" #. type: lisp -#: guix-git/doc/guix.texi:19002 +#: guix-git/doc/guix.texi:19364 #, no-wrap msgid "" "(service keepalived-service-type\n" @@ -35424,12 +36084,12 @@ msgstr "" " (config-file (local-file \"keepalived-backup.conf\"))))\n" #. type: deffn -#: guix-git/doc/guix.texi:19005 +#: guix-git/doc/guix.texi:19367 msgid "where @file{keepalived-backup.conf}:" msgstr "Dort enthält @file{keepalived-backup.conf}:" #. type: example -#: guix-git/doc/guix.texi:19017 +#: guix-git/doc/guix.texi:19379 #, no-wrap msgid "" "vrrp_instance my-group @{\n" @@ -35455,135 +36115,135 @@ msgstr "" "@}\n" #. type: cindex -#: guix-git/doc/guix.texi:19023 +#: guix-git/doc/guix.texi:19385 #, no-wrap msgid "unattended upgrades" msgstr "unbeaufsichtigte Aktualisierungen" #. type: cindex -#: guix-git/doc/guix.texi:19024 +#: guix-git/doc/guix.texi:19386 #, no-wrap msgid "upgrades, unattended" msgstr "Aktualisierungen, unbeaufsichtigt" #. type: Plain text -#: guix-git/doc/guix.texi:19029 +#: guix-git/doc/guix.texi:19391 msgid "Guix provides a service to perform @emph{unattended upgrades}: periodically, the system automatically reconfigures itself from the latest Guix. Guix System has several properties that make unattended upgrades safe:" msgstr "Guix stellt einen Dienst zum Durchführen @emph{unbeaufsichtigter Aktualisierungen} zur Verfügung: Das System rekonfiguriert sich selbst in regelmäßigen Abständen mit der neuesten Version von Guix. Guix System verfügt über mehrere Eigenschaften, durch die unbeaufsichtigtes Aktualisieren zu einer sicheren Angelegenheit wird:" #. type: itemize -#: guix-git/doc/guix.texi:19034 +#: guix-git/doc/guix.texi:19396 msgid "upgrades are transactional (either the upgrade succeeds or it fails, but you cannot end up with an ``in-between'' system state);" msgstr "Aktualisierungen sind transaktionell: Entweder ist die Aktualisierung erfolgreich oder sie schlägt fehl, aber Sie können sich nicht in einem Systemzustand „dazwischen“ wiederfinden." #. type: itemize -#: guix-git/doc/guix.texi:19038 +#: guix-git/doc/guix.texi:19400 msgid "the upgrade log is kept---you can view it with @command{guix system list-generations}---and you can roll back to any previous generation, should the upgraded system fail to behave as intended;" msgstr "Ein Protokoll über die Aktualisierungen liegt vor@tie{}— Sie können es mit @command{guix system list-generations} einsehen@tie{}— und Rücksetzungen auf vorherige Generationen sind möglich, für den Fall, dass das System nach der Aktualisierung nicht mehr funktioniert oder sich nicht wie gewollt verhält." #. type: itemize -#: guix-git/doc/guix.texi:19041 +#: guix-git/doc/guix.texi:19403 msgid "channel code is authenticated so you know you can only run genuine code (@pxref{Channels});" msgstr "Der Code für Kanäle wird authentifiziert, wodurch Sie sich sicher sein können, dass Sie nur unverfälschten Code ausführen (siehe @ref{Channels})." #. type: itemize -#: guix-git/doc/guix.texi:19044 +#: guix-git/doc/guix.texi:19406 msgid "@command{guix system reconfigure} prevents downgrades, which makes it immune to @dfn{downgrade attacks}." msgstr "@command{guix system reconfigure} verweigert ein Herabstufen auf alte Versionen; das macht @dfn{Herabstufungsangriffe} („Downgrade Attacks“) unmöglich." #. type: Plain text -#: guix-git/doc/guix.texi:19049 +#: guix-git/doc/guix.texi:19411 msgid "To set up unattended upgrades, add an instance of @code{unattended-upgrade-service-type} like the one below to the list of your operating system services:" msgstr "Um unbeaufsichtigte Aktualisierungen einzurichten, fügen Sie eine Instanz des Diensttyps @code{unattended-upgrade-service-type} wie im folgenden Beispiel zur Liste Ihrer Betriebssystemdienste hinzu:" #. type: lisp -#: guix-git/doc/guix.texi:19052 +#: guix-git/doc/guix.texi:19414 #, no-wrap msgid "(service unattended-upgrade-service-type)\n" msgstr "(service unattended-upgrade-service-type)\n" #. type: Plain text -#: guix-git/doc/guix.texi:19059 +#: guix-git/doc/guix.texi:19421 msgid "The defaults above set up weekly upgrades: every Sunday at midnight. You do not need to provide the operating system configuration file: it uses @file{/run/current-system/configuration.scm}, which ensures it always uses your latest configuration---@pxref{provenance-service-type}, for more information about this file." msgstr "Durch die Vorgabeeinstellungen hat dies wöchentliche Aktualisierungen zur Folge, jeden Sonntag um Mitternacht. Sie müssen keine Betriebssystemkonfigurationsdatei angeben: @file{/run/current-system/configuration.scm} wird benutzt, wodurch immer Ihre letzte Konfiguration weiter verwendet wird@tie{}— siehe den @ref{provenance-service-type} für mehr Informationen über diese Datei." #. type: Plain text -#: guix-git/doc/guix.texi:19065 +#: guix-git/doc/guix.texi:19427 msgid "There are several things that can be configured, in particular the periodicity and services (daemons) to be restarted upon completion. When the upgrade is successful, the service takes care of deleting system generations older that some threshold, as per @command{guix system delete-generations}. See the reference below for details." msgstr "Mehrere Dinge können konfiguriert werden, insbesondere die Zeitabstände zwischen Aktualisierungen und die Dienste (also die Daemons), die nach Abschluss neu gestartet werden sollen. Wenn die Aktualisierung erfolgreich ist, dann stellt das System sicher, dass Systemgenerationen mit einem Alter größer als ein festgelegter Schwellwert gelöscht werden, wie bei @command{guix system delete-generations}. Siehe die folgende Referenz der Konfigurationsmöglichkeiten für Näheres." #. type: Plain text -#: guix-git/doc/guix.texi:19069 +#: guix-git/doc/guix.texi:19431 msgid "To ensure that upgrades are actually happening, you can run @command{guix system describe}. To investigate upgrade failures, visit the unattended upgrade log file (see below)." msgstr "Um sicherzugehen, dass unbeaufsichtigte Aktualisierungen auch tatsächlich durchgeführt werden, können Sie @command{guix system describe} ausführen. Um Fehlschläge zu untersuchen, schauen Sie in die Protokolldatei für unbeaufsichtigte Aktualisierungen (siehe unten)." #. type: defvr -#: guix-git/doc/guix.texi:19070 +#: guix-git/doc/guix.texi:19432 #, no-wrap msgid "{Scheme Variable} unattended-upgrade-service-type" msgstr "{Scheme-Variable} unattended-upgrade-service-type" #. type: defvr -#: guix-git/doc/guix.texi:19074 +#: guix-git/doc/guix.texi:19436 msgid "This is the service type for unattended upgrades. It sets up an mcron job (@pxref{Scheduled Job Execution}) that runs @command{guix system reconfigure} from the latest version of the specified channels." msgstr "Dies ist der Diensttyp für unbeaufsichtigte Aktualisierungen. Damit wird ein mcron-Auftrag eingerichtet (siehe @ref{Scheduled Job Execution}), der @command{guix system reconfigure} mit der neuesten Version der angegebenen Kanäle ausführt." #. type: defvr -#: guix-git/doc/guix.texi:19077 +#: guix-git/doc/guix.texi:19439 msgid "Its value must be a @code{unattended-upgrade-configuration} record (see below)." msgstr "Sein Wert muss ein @code{unattended-upgrade-configuration}-Verbundsobjekt sein (siehe unten)." #. type: deftp -#: guix-git/doc/guix.texi:19079 +#: guix-git/doc/guix.texi:19441 #, no-wrap msgid "{Data Type} unattended-upgrade-configuration" msgstr "{Datentyp} unattended-upgrade-configuration" #. type: deftp -#: guix-git/doc/guix.texi:19082 +#: guix-git/doc/guix.texi:19444 msgid "This data type represents the configuration of the unattended upgrade service. The following fields are available:" msgstr "Dieser Datentyp repräsentiert die Konfiguration des Dienstes für unbeaufsichtigte Aktualisierungen. Folgende Felder stehen zur Verfügung:" #. type: item -#: guix-git/doc/guix.texi:19084 +#: guix-git/doc/guix.texi:19446 #, no-wrap msgid "@code{schedule} (default: @code{\"30 01 * * 0\"})" msgstr "@code{schedule} (Vorgabe: @code{\"30 01 * * 0\"})" #. type: table -#: guix-git/doc/guix.texi:19088 +#: guix-git/doc/guix.texi:19450 msgid "This is the schedule of upgrades, expressed as a gexp containing an mcron job schedule (@pxref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron})." msgstr "Dies ist der Aktualisierungsplan, ausgedrückt als ein G-Ausdruck mit einem mcron-Auftragsplan (siehe @ref{Guile Syntax, mcron-Auftragsspezifikationen,, mcron, GNU@tie{}mcron})." #. type: item -#: guix-git/doc/guix.texi:19089 +#: guix-git/doc/guix.texi:19451 #, no-wrap msgid "@code{channels} (default: @code{#~%default-channels})" msgstr "@code{channels} (Vorgabe: @code{#~%default-channels})" #. type: table -#: guix-git/doc/guix.texi:19093 +#: guix-git/doc/guix.texi:19455 msgid "This gexp specifies the channels to use for the upgrade (@pxref{Channels}). By default, the tip of the official @code{guix} channel is used." msgstr "Dieser G-Ausdruck gibt an, welche Kanäle für die Aktualisierung benutzt werden sollen (siehe @ref{Channels}). Nach Vorgabe wird die Spitze des offiziellen @code{guix}-Kanals benutzt." #. type: item -#: guix-git/doc/guix.texi:19094 +#: guix-git/doc/guix.texi:19456 #, no-wrap msgid "@code{operating-system-file} (default: @code{\"/run/current-system/configuration.scm\"})" msgstr "@code{operating-system-file} (Vorgabe: @code{\"/run/current-system/configuration.scm\"})" #. type: table -#: guix-git/doc/guix.texi:19097 +#: guix-git/doc/guix.texi:19459 msgid "This field specifies the operating system configuration file to use. The default is to reuse the config file of the current configuration." msgstr "Dieses Feld gibt an, welche Betriebssystemkonfigurationsdatei verwendet werden soll. Nach Vorgabe wird die Konfigurationsdatei der aktuellen Konfiguration wiederverwendet." #. type: table -#: guix-git/doc/guix.texi:19103 +#: guix-git/doc/guix.texi:19465 msgid "There are cases, though, where referring to @file{/run/current-system/configuration.scm} is not enough, for instance because that file refers to extra files (SSH public keys, extra configuration files, etc.) @i{via} @code{local-file} and similar constructs. For those cases, we recommend something along these lines:" msgstr "Es gibt jedoch Fälle, wo es nicht ausreicht, auf @file{/run/current-system/configuration.scm} zu verweisen, zum Beispiel weil sich diese mit @code{local-file} oder Ähnlichem auf weitere Dateien wie öffentliche SSH-Schlüssel, andere Konfigurationsdateien usw.@: bezieht. Dann empfehlen wir, etwas wie hier zu schreiben:" #. type: lisp -#: guix-git/doc/guix.texi:19109 +#: guix-git/doc/guix.texi:19471 #, no-wrap msgid "" "(unattended-upgrade-configuration\n" @@ -35597,312 +36257,312 @@ msgstr "" " \"/config.scm\")))\n" #. type: table -#: guix-git/doc/guix.texi:19116 +#: guix-git/doc/guix.texi:19478 msgid "The effect here is to import all of the current directory into the store, and to refer to @file{config.scm} within that directory. Therefore, uses of @code{local-file} within @file{config.scm} will work as expected. @xref{G-Expressions}, for information about @code{local-file} and @code{file-append}." msgstr "Das bewirkt, dass das ganze aktuelle Verzeichnis in den Store importiert wird und Bezug auf die @file{config.scm} darin genommen wird. So funktioniert die Nutzung von @code{local-file} in @file{config.scm} wie erwartet. Siehe @ref{G-Expressions} für Informationen zu @code{local-file} und @code{file-append}." #. type: item -#: guix-git/doc/guix.texi:19117 +#: guix-git/doc/guix.texi:19479 #, no-wrap msgid "@code{services-to-restart} (default: @code{'(mcron)})" msgstr "@code{services-to-restart} (Vorgabe: @code{'(mcron)})" #. type: table -#: guix-git/doc/guix.texi:19120 +#: guix-git/doc/guix.texi:19482 msgid "This field specifies the Shepherd services to restart when the upgrade completes." msgstr "Dieses Feld gibt die Shepherd-Dienste an, die nach Abschluss der Aktualisierung neu gestartet werden sollen." #. type: table -#: guix-git/doc/guix.texi:19127 +#: guix-git/doc/guix.texi:19489 msgid "Those services are restarted right away upon completion, as with @command{herd restart}, which ensures that the latest version is running---remember that by default @command{guix system reconfigure} only restarts services that are not currently running, which is conservative: it minimizes disruption but leaves outdated services running." msgstr "Die Dienste werden direkt nach Abschluss neu gestartet, so wie es @command{herd restart} tun würde. Dadurch wird sichergestellt, dass die neueste Version läuft@tie{}— bedenken Sie, dass @command{guix system reconfigure} nach Vorgabe nur diejenigen Dienste neu startet, die zurzeit nicht laufen, was einem konservativen Verhalten entspricht: Störungen werden minimiert, aber veraltete Dienste laufen weiter." #. type: table -#: guix-git/doc/guix.texi:19131 +#: guix-git/doc/guix.texi:19493 msgid "Use @command{herd status} to find out candidates for restarting. @xref{Services}, for general information about services. Common services to restart would include @code{ntpd} and @code{ssh-daemon}." msgstr "Führen Sie @command{herd status} aus, um herauszufinden, welche Dienste Sie neu starten lassen können. Siehe @ref{Services} für allgemeine Informationen über Dienste. Oft würde man Dienste wie unter anderem @code{ntpd} und @code{ssh-daemon} neu starten lassen." #. type: table -#: guix-git/doc/guix.texi:19134 +#: guix-git/doc/guix.texi:19496 msgid "By default, the @code{mcron} service is restarted. This ensures that the latest version of the unattended upgrade job will be used next time." msgstr "Nach Vorgabe wird nur der @code{mcron}-Dienst neu gestartet. Dadurch wird beim nächsten Mal sicherlich die neueste Version des Auftrags für unbeaufsichtigte Aktualisierungen benutzt." #. type: item -#: guix-git/doc/guix.texi:19135 +#: guix-git/doc/guix.texi:19497 #, no-wrap msgid "@code{system-expiration} (default: @code{(* 3 30 24 3600)})" msgstr "@code{system-expiration} (Vorgabe: @code{(* 3 30 24 3600)})" #. type: table -#: guix-git/doc/guix.texi:19139 +#: guix-git/doc/guix.texi:19501 msgid "This is the expiration time in seconds for system generations. System generations older that this amount of time are deleted with @command{guix system delete-generations} when an upgrade completes." msgstr "Nach wie vielen Sekunden Systemgenerationen auslaufen. Systemgenerationen, die dieses Alter überschritten haben, werden über @command{guix system delete-generations} gelöscht, nachdem eine Aktualisierung abgeschlossen wurde." #. type: quotation -#: guix-git/doc/guix.texi:19144 +#: guix-git/doc/guix.texi:19506 msgid "The unattended upgrade service does not run the garbage collector. You will probably want to set up your own mcron job to run @command{guix gc} periodically." msgstr "Der Dienst für unbeaufsichtigte Aktualisierungen lässt jedoch den Müllsammler nicht laufen. Sie möchten wahrscheinlich Ihren eigenen mcron-Auftrag einrichten, der regelmäßig @command{guix gc} ausführt." #. type: item -#: guix-git/doc/guix.texi:19146 +#: guix-git/doc/guix.texi:19508 #, no-wrap msgid "@code{maximum-duration} (default: @code{3600})" msgstr "@code{maximum-duration} (Vorgabe: @code{3600})" #. type: table -#: guix-git/doc/guix.texi:19149 +#: guix-git/doc/guix.texi:19511 msgid "Maximum duration in seconds for the upgrade; past that time, the upgrade aborts." msgstr "Wie viele Sekunden eine Aktualisierung höchstens dauern darf. Nach dieser Zeit wird die Aktualisierung abgebrochen." #. type: table -#: guix-git/doc/guix.texi:19152 +#: guix-git/doc/guix.texi:19514 msgid "This is primarily useful to ensure the upgrade does not end up rebuilding or re-downloading ``the world''." msgstr "Diese Begrenzung dient vor allem dazu, zu verhindern, dass „die ganze Welt“ neu erstellt oder neu heruntergeladen wird." #. type: item -#: guix-git/doc/guix.texi:19153 +#: guix-git/doc/guix.texi:19515 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/unattended-upgrade.log\"})" msgstr "@code{log-file} (Vorgabe: @code{\"/var/log/unattended-upgrade.log\"})" #. type: table -#: guix-git/doc/guix.texi:19155 +#: guix-git/doc/guix.texi:19517 msgid "File where unattended upgrades are logged." msgstr "Die Datei, in die über unbeaufsichtigte Aktualisierungen Protokoll geführt wird." #. type: cindex -#: guix-git/doc/guix.texi:19161 +#: guix-git/doc/guix.texi:19523 #, no-wrap msgid "X11" msgstr "X11" #. type: cindex -#: guix-git/doc/guix.texi:19162 +#: guix-git/doc/guix.texi:19524 #, no-wrap msgid "X Window System" msgstr "X Window System" #. type: cindex -#: guix-git/doc/guix.texi:19163 guix-git/doc/guix.texi:19436 +#: guix-git/doc/guix.texi:19525 guix-git/doc/guix.texi:19798 #, no-wrap msgid "login manager" msgstr "Anmeldeverwaltung" #. type: Plain text -#: guix-git/doc/guix.texi:19168 +#: guix-git/doc/guix.texi:19530 msgid "Support for the X Window graphical display system---specifically Xorg---is provided by the @code{(gnu services xorg)} module. Note that there is no @code{xorg-service} procedure. Instead, the X server is started by the @dfn{login manager}, by default the GNOME Display Manager (GDM)." msgstr "Unterstützung für das grafische Anzeigesystem X Window@tie{}— insbesondere Xorg@tie{}— wird vom Modul @code{(gnu services xorg)} zur Verfügung gestellt. Beachten Sie, dass es @emph{keine} @code{xorg-service}-Prozedur gibt, sondern der X-Server durch eine Software zur @dfn{Anmeldeverwaltung} gestartet wird (ein „Login Manager“). Vorgegeben ist, dass zur Anzeigenverwaltung der GNOME Display Manager (GDM) benutzt wird." #. type: cindex -#: guix-git/doc/guix.texi:19169 +#: guix-git/doc/guix.texi:19531 #, no-wrap msgid "GDM" msgstr "GDM" #. type: cindex -#: guix-git/doc/guix.texi:19170 +#: guix-git/doc/guix.texi:19532 #, no-wrap msgid "GNOME, login manager" msgstr "GNOME, Anmeldeverwaltung" #. type: Plain text -#: guix-git/doc/guix.texi:19174 +#: guix-git/doc/guix.texi:19536 msgid "GDM of course allows users to log in into window managers and desktop environments other than GNOME; for those using GNOME, GDM is required for features such as automatic screen locking." msgstr "GDM ermöglicht es seinen Nutzern natürlich auch, sich bei anderen Fensterverwaltungssystemen und Arbeitsumgebungen als GNOME anzumelden. Wer GNOME benutzt, kann Funktionalitäten wie eine automatische Bildschirmsperre nur verwenden, wenn die Anmeldung über GDM läuft." #. type: cindex -#: guix-git/doc/guix.texi:19175 +#: guix-git/doc/guix.texi:19537 #, no-wrap msgid "window manager" msgstr "Fensterverwaltung" #. type: Plain text -#: guix-git/doc/guix.texi:19180 +#: guix-git/doc/guix.texi:19542 msgid "To use X11, you must install at least one @dfn{window manager}---for example the @code{windowmaker} or @code{openbox} packages---preferably by adding it to the @code{packages} field of your operating system definition (@pxref{operating-system Reference, system-wide packages})." msgstr "Um X11 zu benutzen, müssen Sie ein Programme zur @dfn{Fensterverwaltung} („Window-Manager“) oder mehrere davon installieren@tie{}— zum Beispiel die Pakete @code{windowmaker} oder @code{openbox}@tie{}—, vorzugsweise indem Sie sie in das @code{packages}-Feld Ihrer Betriebssystemdefinition eintragen (siehe @ref{operating-system Reference, global sichtbare Pakete})." #. type: anchor{#1} -#: guix-git/doc/guix.texi:19186 +#: guix-git/doc/guix.texi:19548 msgid "wayland-gdm" msgstr "wayland-gdm" #. type: Plain text -#: guix-git/doc/guix.texi:19186 +#: guix-git/doc/guix.texi:19548 msgid "GDM also supports Wayland: it can itself use Wayland instead of X11 for its user interface, and it can also start Wayland sessions. The former is required for the latter, to enable, set @code{wayland?} to @code{#t} in @code{gdm-configuration}." msgstr "GDM hat auch Unterstützung für Wayland: Es kann selbst als Wayland-Client gestartet werden und Wayland-Sitzungen starten. Ersteres ist auch die Voraussetzung für Letzteres. Um den Wayland-Modus zu aktivieren, setzen Sie @code{wayland?} auf @code{#t} in der @code{gdm-configuration}." #. type: defvr -#: guix-git/doc/guix.texi:19187 +#: guix-git/doc/guix.texi:19549 #, no-wrap msgid "{Scheme Variable} gdm-service-type" msgstr "{Scheme-Variable} gdm-service-type" #. type: defvr -#: guix-git/doc/guix.texi:19192 +#: guix-git/doc/guix.texi:19554 msgid "This is the type for the @uref{https://wiki.gnome.org/Projects/GDM/, GNOME Desktop Manager} (GDM), a program that manages graphical display servers and handles graphical user logins. Its value must be a @code{gdm-configuration} (see below)." msgstr "Dies ist der Diensttyp für den @uref{https://wiki.gnome.org/Projects/GDM/, GNOME Desktop Manager}, GDM, ein Programm zur Verwaltung grafischer Anzeigeserver, das grafische Benutzeranmeldungen durchführt. Sein Wert muss eine @code{gdm-configuration} sein (siehe unten)." #. type: cindex -#: guix-git/doc/guix.texi:19193 +#: guix-git/doc/guix.texi:19555 #, no-wrap msgid "session types" msgstr "Sitzungstypen" #. type: defvr -#: guix-git/doc/guix.texi:19201 +#: guix-git/doc/guix.texi:19563 msgid "GDM looks for @dfn{session types} described by the @file{.desktop} files in @file{/run/current-system/profile/share/xsessions} (for X11 sessions) and @file{/run/current-system/profile/share/wayland-sessions} (for Wayland sessions) and allows users to choose a session from the log-in screen. Packages such as @code{gnome}, @code{xfce}, @code{i3} and @code{sway} provide @file{.desktop} files; adding them to the system-wide set of packages automatically makes them available at the log-in screen." msgstr "GDM liest die in den @file{.desktop}-Dateien in @file{/run/current-system/profile/share/xsessions} (bei X11-Sitzungen) und nach @file{/run/current-system/profile/share/wayland-sessions} (bei Wayland-Sitzungen) befindlichen @dfn{Sitzungstypen} ein und stellt diese seinen Nutzern zur Auswahl auf dem Anmeldebildschirm. Pakete wie @code{gnome}, @code{xfce}, @code{i3} und @code{sway} stellen @file{.desktop}-Dateien bereit; wenn diese Pakete zu den systemweit verfügbaren Paketen hinzugefügt werden, werden diese automatisch auf dem Anmeldebildschirm angezeigt." #. type: defvr -#: guix-git/doc/guix.texi:19205 +#: guix-git/doc/guix.texi:19567 msgid "In addition, @file{~/.xsession} files are honored. When available, @file{~/.xsession} must be an executable that starts a window manager and/or other X clients." msgstr "Des Weiteren werden @file{~/.xsession}-Dateien berücksichtigt. Wenn es vorhanden ist, muss @file{~/.xsession} eine ausführbare Datei sein, die ein Programm zur Fensterverwaltung und/oder andere X-Clients startet." #. type: deftp -#: guix-git/doc/guix.texi:19207 +#: guix-git/doc/guix.texi:19569 #, no-wrap msgid "{Data Type} gdm-configuration" msgstr "{Datentyp} gdm-configuration" #. type: item -#: guix-git/doc/guix.texi:19209 guix-git/doc/guix.texi:19291 +#: guix-git/doc/guix.texi:19571 guix-git/doc/guix.texi:19653 #, no-wrap msgid "@code{auto-login?} (default: @code{#f})" msgstr "@code{auto-login?} (Vorgabe: @code{#f})" #. type: itemx -#: guix-git/doc/guix.texi:19210 +#: guix-git/doc/guix.texi:19572 #, no-wrap msgid "@code{default-user} (default: @code{#f})" msgstr "@code{default-user} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:19212 +#: guix-git/doc/guix.texi:19574 msgid "When @code{auto-login?} is false, GDM presents a log-in screen." msgstr "Wenn @code{auto-login?} falsch ist, zeigt GDM einen Anmeldebildschirm an." #. type: table -#: guix-git/doc/guix.texi:19215 +#: guix-git/doc/guix.texi:19577 msgid "When @code{auto-login?} is true, GDM logs in directly as @code{default-user}." msgstr "Wenn @code{auto-login?} wahr ist, meldet GDM automatisch den in @code{default-user} angegebenen voreingestellten Benutzer an." #. type: item -#: guix-git/doc/guix.texi:19216 guix-git/doc/guix.texi:25077 -#: guix-git/doc/guix.texi:26786 guix-git/doc/guix.texi:31266 -#: guix-git/doc/guix.texi:31295 guix-git/doc/guix.texi:31324 -#: guix-git/doc/guix.texi:31351 guix-git/doc/guix.texi:31406 -#: guix-git/doc/guix.texi:31431 guix-git/doc/guix.texi:31458 -#: guix-git/doc/guix.texi:31484 guix-git/doc/guix.texi:31526 +#: guix-git/doc/guix.texi:19578 guix-git/doc/guix.texi:25439 +#: guix-git/doc/guix.texi:27123 guix-git/doc/guix.texi:31631 +#: guix-git/doc/guix.texi:31660 guix-git/doc/guix.texi:31689 +#: guix-git/doc/guix.texi:31716 guix-git/doc/guix.texi:31771 +#: guix-git/doc/guix.texi:31796 guix-git/doc/guix.texi:31823 +#: guix-git/doc/guix.texi:31849 guix-git/doc/guix.texi:31891 #, no-wrap msgid "@code{debug?} (default: @code{#f})" msgstr "@code{debug?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:19218 +#: guix-git/doc/guix.texi:19580 msgid "When true, GDM writes debug messages to its log." msgstr "Wenn es wahr ist, schreibt GDM Informationen zur Fehlersuche in sein Protokoll." #. type: item -#: guix-git/doc/guix.texi:19219 +#: guix-git/doc/guix.texi:19581 #, no-wrap msgid "@code{gnome-shell-assets} (default: ...)" msgstr "@code{gnome-shell-assets} (Vorgabe: …)" #. type: table -#: guix-git/doc/guix.texi:19221 +#: guix-git/doc/guix.texi:19583 msgid "List of GNOME Shell assets needed by GDM: icon theme, fonts, etc." msgstr "Liste der GNOME-Shell-„Assets“, die GDM benötigt, d.h.@: Symbolthema, Schriftarten etc." #. type: item -#: guix-git/doc/guix.texi:19222 +#: guix-git/doc/guix.texi:19584 #, no-wrap msgid "@code{xorg-configuration} (default: @code{(xorg-configuration)})" msgstr "@code{xorg-configuration} (Vorgabe: @code{(xorg-configuration)})" #. type: table -#: guix-git/doc/guix.texi:19224 guix-git/doc/guix.texi:19318 -#: guix-git/doc/guix.texi:19402 +#: guix-git/doc/guix.texi:19586 guix-git/doc/guix.texi:19680 +#: guix-git/doc/guix.texi:19764 msgid "Configuration of the Xorg graphical server." msgstr "Xorg-Server für grafische Oberflächen konfigurieren." #. type: item -#: guix-git/doc/guix.texi:19225 +#: guix-git/doc/guix.texi:19587 #, no-wrap msgid "@code{xsession} (default: @code{(xinitrc)})" msgstr "@code{xsession} (Vorgabe: @code{(xinitrc)})" #. type: table -#: guix-git/doc/guix.texi:19227 guix-git/doc/guix.texi:19417 +#: guix-git/doc/guix.texi:19589 guix-git/doc/guix.texi:19779 msgid "Script to run before starting a X session." msgstr "Das Skript, das vor dem Starten einer X-Sitzung ausgeführt werden soll." #. type: item -#: guix-git/doc/guix.texi:19228 +#: guix-git/doc/guix.texi:19590 #, no-wrap msgid "@code{dbus-daemon} (default: @code{dbus-daemon-wrapper})" msgstr "@code{dbus-daemon} (Vorgabe: @code{dbus-daemon-wrapper})" #. type: table -#: guix-git/doc/guix.texi:19230 +#: guix-git/doc/guix.texi:19592 msgid "File name of the @code{dbus-daemon} executable." msgstr "Der Dateiname der ausführbaren Datei des @code{dbus-daemon}-Programms." #. type: item -#: guix-git/doc/guix.texi:19231 +#: guix-git/doc/guix.texi:19593 #, no-wrap msgid "@code{gdm} (default: @code{gdm})" msgstr "@code{gdm} (Vorgabe: @code{gdm})" #. type: table -#: guix-git/doc/guix.texi:19233 +#: guix-git/doc/guix.texi:19595 msgid "The GDM package to use." msgstr "Das GDM-Paket, was benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:19234 +#: guix-git/doc/guix.texi:19596 #, no-wrap msgid "@code{wayland?} (default: @code{#f})" msgstr "@code{wayland?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:19236 +#: guix-git/doc/guix.texi:19598 msgid "When true, enables Wayland in GDM, necessary to use Wayland sessions." msgstr "Wenn es wahr ist, wird Wayland in GDM aktiviert. Das ist nötig, um Wayland-Sitzungen zu benutzen." #. type: item -#: guix-git/doc/guix.texi:19237 +#: guix-git/doc/guix.texi:19599 #, no-wrap msgid "@code{wayland-session} (default: @code{gdm-wayland-session-wrapper})" msgstr "@code{wayland-session} (Vorgabe: @code{gdm-wayland-session-wrapper})" #. type: table -#: guix-git/doc/guix.texi:19240 +#: guix-git/doc/guix.texi:19602 msgid "The Wayland session wrapper to use, needed to setup the environment." msgstr "Das Wrapper-Skript für Wayland-Sitzungen, was benutzt werden soll. Es ist notwendig, um die Umgebung zu starten." #. type: defvr -#: guix-git/doc/guix.texi:19243 +#: guix-git/doc/guix.texi:19605 #, no-wrap msgid "{Scheme Variable} slim-service-type" msgstr "{Scheme-Variable} slim-service-type" #. type: defvr -#: guix-git/doc/guix.texi:19245 +#: guix-git/doc/guix.texi:19607 msgid "This is the type for the SLiM graphical login manager for X11." msgstr "Dies ist der Diensttyp für die schlanke grafische Anmeldungsverwaltung SLiM für X11." #. type: defvr -#: guix-git/doc/guix.texi:19249 +#: guix-git/doc/guix.texi:19611 msgid "Like GDM, SLiM looks for session types described by @file{.desktop} files and allows users to choose a session from the log-in screen using @kbd{F1}. It also honors @file{~/.xsession} files." msgstr "Wie GDM liest SLiM die in @file{.desktop}-Dateien beschriebenen Sitzungstypen aus und ermöglicht es Nutzern, eine Sitzung darunter im Anmeldebildschirm durch Drücken von @kbd{F1} auszuwählen. Auch @file{~/.xsession}-Dateien können benutzt werden." #. type: defvr -#: guix-git/doc/guix.texi:19256 +#: guix-git/doc/guix.texi:19618 msgid "Unlike GDM, SLiM does not spawn the user session on a different VT after logging in, which means that you can only start one graphical session. If you want to be able to run multiple graphical sessions at the same time you have to add multiple SLiM services to your system services. The following example shows how to replace the default GDM service with two SLiM services on tty7 and tty8." msgstr "Anders als GDM wird durch SLiM die Benutzersitzung nicht auf einem anderen virtuellen Terminal gestartet, nachdem man sich anmeldet. Die Folge davon ist, dass man nur eine einzige grafische Sitzung starten kann. Wenn Sie mehrere, gleichzeitig laufende grafische Sitzungen starten können möchten, müssen Sie mehrere SLiM-Dienste zu ihren Systemdiensten hinzufügen. Das folgende Beispiel zeigt, wie Sie den vorgegebenen GDM-Dienst durch zwei SLiM-Dienste auf tty7 und tty8 ersetzen." #. type: lisp -#: guix-git/doc/guix.texi:19261 +#: guix-git/doc/guix.texi:19623 #, no-wrap msgid "" "(use-modules (gnu services)\n" @@ -35916,7 +36576,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:19272 +#: guix-git/doc/guix.texi:19634 #, no-wrap msgid "" "(operating-system\n" @@ -35942,491 +36602,491 @@ msgstr "" " (delete gdm-service-type)))))\n" #. type: deftp -#: guix-git/doc/guix.texi:19276 +#: guix-git/doc/guix.texi:19638 #, no-wrap msgid "{Data Type} slim-configuration" msgstr "{Datentyp} slim-configuration" #. type: deftp -#: guix-git/doc/guix.texi:19278 +#: guix-git/doc/guix.texi:19640 msgid "Data type representing the configuration of @code{slim-service-type}." msgstr "Datentyp, der die Konfiguration des @code{slim-service-type} repräsentiert." #. type: table -#: guix-git/doc/guix.texi:19282 +#: guix-git/doc/guix.texi:19644 msgid "Whether to allow logins with empty passwords." msgstr "Ob Anmeldungen mit leeren Passwörtern möglich sein sollen." #. type: item -#: guix-git/doc/guix.texi:19283 +#: guix-git/doc/guix.texi:19645 #, no-wrap msgid "@code{gnupg?} (default: @code{#f})" msgstr "@code{gnupg?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:19290 +#: guix-git/doc/guix.texi:19652 msgid "If enabled, @code{pam-gnupg} will attempt to automatically unlock the user's GPG keys with the login password via @code{gpg-agent}. The keygrips of all keys to be unlocked should be written to @file{~/.pam-gnupg}, and can be queried with @code{gpg -K --with-keygrip}. Presetting passphrases must be enabled by adding @code{allow-preset-passphrase} in @file{~/.gnupg/gpg-agent.conf}." msgstr "Wenn dies aktiviert ist, wird durch @code{pam-gnupg} automatisch versucht, die GPG-Schlüssel des Nutzers über @code{gpg-agent} mit dem Anmeldepasswort zu entsperren. Für jeden Schlüssel, der entsperrt werden soll, müssen Sie den Keygrip, der den Schlüssel bezeichnet, in @file{~/.pam-gnupg} schreiben; er kann mit @code{gpg -K --with-keygrip} erfragt werden. Damit das funktioniert, müssen Sie Presetting von Passphrasen aktivieren, indem Sie @code{allow-preset-passphrase} in @file{~/.gnupg/gpg-agent.conf} hinzufügen." #. type: itemx -#: guix-git/doc/guix.texi:19292 +#: guix-git/doc/guix.texi:19654 #, no-wrap msgid "@code{default-user} (default: @code{\"\"})" msgstr "@code{default-user} (Vorgabe: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:19294 +#: guix-git/doc/guix.texi:19656 msgid "When @code{auto-login?} is false, SLiM presents a log-in screen." msgstr "Wenn @code{auto-login?} falsch ist, zeigt SLiM einen Anmeldebildschirm an." #. type: table -#: guix-git/doc/guix.texi:19297 +#: guix-git/doc/guix.texi:19659 msgid "When @code{auto-login?} is true, SLiM logs in directly as @code{default-user}." msgstr "Wenn @code{auto-login?} wahr ist, meldet SLiM automatisch den in @code{default-user} angegebenen voreingestellten Benutzer an." #. type: item -#: guix-git/doc/guix.texi:19298 +#: guix-git/doc/guix.texi:19660 #, no-wrap msgid "@code{theme} (default: @code{%default-slim-theme})" msgstr "@code{theme} (Vorgabe: @code{%default-slim-theme})" #. type: itemx -#: guix-git/doc/guix.texi:19299 +#: guix-git/doc/guix.texi:19661 #, no-wrap msgid "@code{theme-name} (default: @code{%default-slim-theme-name})" msgstr "@code{theme-name} (Vorgabe: @code{%default-slim-theme-name})" #. type: table -#: guix-git/doc/guix.texi:19301 +#: guix-git/doc/guix.texi:19663 msgid "The graphical theme to use and its name." msgstr "Das grafische Thema, was benutzt werden soll, mit seinem Namen." #. type: item -#: guix-git/doc/guix.texi:19302 +#: guix-git/doc/guix.texi:19664 #, no-wrap msgid "@code{auto-login-session} (default: @code{#f})" msgstr "@code{auto-login-session} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:19305 +#: guix-git/doc/guix.texi:19667 msgid "If true, this must be the name of the executable to start as the default session---e.g., @code{(file-append windowmaker \"/bin/windowmaker\")}." msgstr "Wenn es wahr ist, muss es den Namen der ausführbaren Datei angeben, die als voreingestellte Sitzung gestartet werden soll@tie{}— z.B.@: @code{(file-append windowmaker \"/bin/windowmaker\")}." #. type: table -#: guix-git/doc/guix.texi:19309 +#: guix-git/doc/guix.texi:19671 msgid "If false, a session described by one of the available @file{.desktop} files in @code{/run/current-system/profile} and @code{~/.guix-profile} will be used." msgstr "Wenn es falsch ist, wird eine von einer der @file{.desktop}-Dateien in @code{/run/current-system/profile} und @code{~/.guix-profile} beschriebenen Sitzungen benutzt." #. type: quotation -#: guix-git/doc/guix.texi:19314 +#: guix-git/doc/guix.texi:19676 msgid "You must install at least one window manager in the system profile or in your user profile. Failing to do that, if @code{auto-login-session} is false, you will be unable to log in." msgstr "Sie müssen mindestens ein Fensterverwaltungsprogramm in das Systemprofil oder Ihr Benutzerprofil installieren, ansonsten können Sie sich, sofern @code{auto-login-session} falsch ist, nicht anmelden." #. type: item -#: guix-git/doc/guix.texi:19316 guix-git/doc/guix.texi:19400 +#: guix-git/doc/guix.texi:19678 guix-git/doc/guix.texi:19762 #, no-wrap msgid "@code{xorg-configuration} (default @code{(xorg-configuration)})" msgstr "@code{xorg-configuration} (Vorgabe: @code{(xorg-configuration)})" #. type: item -#: guix-git/doc/guix.texi:19319 +#: guix-git/doc/guix.texi:19681 #, no-wrap msgid "@code{display} (default @code{\":0\"})" msgstr "@code{display} (Vorgabe: @code{\":0\"})" #. type: table -#: guix-git/doc/guix.texi:19321 +#: guix-git/doc/guix.texi:19683 msgid "The display on which to start the Xorg graphical server." msgstr "Die Anzeige, auf welcher der Xorg-Server für grafische Oberflächen gestartet werden soll." #. type: item -#: guix-git/doc/guix.texi:19322 +#: guix-git/doc/guix.texi:19684 #, no-wrap msgid "@code{vt} (default @code{\"vt7\"})" msgstr "@code{vt} (Vorgabe: @code{\"vt7\"})" #. type: table -#: guix-git/doc/guix.texi:19324 +#: guix-git/doc/guix.texi:19686 msgid "The VT on which to start the Xorg graphical server." msgstr "Das virtuelle Terminal, auf dem der Xorg-Server für grafische Oberflächen gestartet werden soll." #. type: item -#: guix-git/doc/guix.texi:19325 +#: guix-git/doc/guix.texi:19687 #, no-wrap msgid "@code{xauth} (default: @code{xauth})" msgstr "@code{xauth} (Vorgabe: @code{xauth})" #. type: table -#: guix-git/doc/guix.texi:19327 +#: guix-git/doc/guix.texi:19689 msgid "The XAuth package to use." msgstr "Das XAuth-Paket, das benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:19328 +#: guix-git/doc/guix.texi:19690 #, no-wrap msgid "@code{shepherd} (default: @code{shepherd})" msgstr "@code{shepherd} (Vorgabe: @code{shepherd})" #. type: table -#: guix-git/doc/guix.texi:19331 +#: guix-git/doc/guix.texi:19693 msgid "The Shepherd package used when invoking @command{halt} and @command{reboot}." msgstr "Das Shepherd-Paket, das benutzt wird, wenn @command{halt} und @command{reboot} aufgerufen werden." #. type: item -#: guix-git/doc/guix.texi:19332 +#: guix-git/doc/guix.texi:19694 #, no-wrap msgid "@code{sessreg} (default: @code{sessreg})" msgstr "@code{sessreg} (Vorgabe: @code{sessreg})" #. type: table -#: guix-git/doc/guix.texi:19334 +#: guix-git/doc/guix.texi:19696 msgid "The sessreg package used in order to register the session." msgstr "Das sessreg-Paket, das zum Registrieren der Sitzung benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:19335 +#: guix-git/doc/guix.texi:19697 #, no-wrap msgid "@code{slim} (default: @code{slim})" msgstr "@code{slim} (Vorgabe: @code{slim})" #. type: table -#: guix-git/doc/guix.texi:19337 +#: guix-git/doc/guix.texi:19699 msgid "The SLiM package to use." msgstr "Das zu benutzende SLiM-Paket." #. type: defvr -#: guix-git/doc/guix.texi:19340 +#: guix-git/doc/guix.texi:19702 #, no-wrap msgid "{Scheme Variable} %default-theme" msgstr "{Scheme-Variable} %default-theme" #. type: defvrx -#: guix-git/doc/guix.texi:19341 +#: guix-git/doc/guix.texi:19703 #, no-wrap msgid "{Scheme Variable} %default-theme-name" msgstr "{Scheme-Variable} %default-theme-name" #. type: defvr -#: guix-git/doc/guix.texi:19343 +#: guix-git/doc/guix.texi:19705 msgid "The default SLiM theme and its name." msgstr "Das vorgegebene Thema für das Aussehen von SLiM mit seinem Namen." #. type: deftp -#: guix-git/doc/guix.texi:19346 guix-git/doc/guix.texi:19453 +#: guix-git/doc/guix.texi:19708 guix-git/doc/guix.texi:19815 #, no-wrap msgid "{Data Type} sddm-configuration" msgstr "{Datentyp} sddm-configuration" #. type: deftp -#: guix-git/doc/guix.texi:19348 +#: guix-git/doc/guix.texi:19710 msgid "This is the data type representing the SDDM service configuration." msgstr "Dieser Datentyp repräsentiert die Konfiguration des SDDM-Dienstes." #. type: item -#: guix-git/doc/guix.texi:19350 +#: guix-git/doc/guix.texi:19712 #, no-wrap msgid "@code{display-server} (default: \"x11\")" msgstr "@code{display-server} (Vorgabe: \"x11\")" #. type: table -#: guix-git/doc/guix.texi:19353 +#: guix-git/doc/guix.texi:19715 msgid "Select display server to use for the greeter. Valid values are @samp{\"x11\"} or @samp{\"wayland\"}." msgstr "Einen Anzeigeserver auswählen, der für den Anmeldebildschirm verwendet werden soll. Zulässige Werte sind @samp{\"x11\"} oder @samp{\"wayland\"}." #. type: item -#: guix-git/doc/guix.texi:19354 +#: guix-git/doc/guix.texi:19716 #, no-wrap msgid "@code{numlock} (default: \"on\")" msgstr "@code{numlock} (Vorgabe: \"on\")" #. type: table -#: guix-git/doc/guix.texi:19356 +#: guix-git/doc/guix.texi:19718 msgid "Valid values are @samp{\"on\"}, @samp{\"off\"} or @samp{\"none\"}." msgstr "Gültige Werte sind @samp{\"on\"}, @samp{\"off\"} oder @samp{\"none\"}." #. type: item -#: guix-git/doc/guix.texi:19357 +#: guix-git/doc/guix.texi:19719 #, no-wrap msgid "@code{halt-command} (default @code{#~(string-apppend #$shepherd \"/sbin/halt\")})" msgstr "@code{halt-command} (Vorgabe: @code{#~(string-apppend #$shepherd \"/sbin/halt\")})" #. type: table -#: guix-git/doc/guix.texi:19359 +#: guix-git/doc/guix.texi:19721 msgid "Command to run when halting." msgstr "Der Befehl, der zum Anhalten des Systems ausgeführt wird." #. type: item -#: guix-git/doc/guix.texi:19360 +#: guix-git/doc/guix.texi:19722 #, no-wrap msgid "@code{reboot-command} (default @code{#~(string-append #$shepherd \"/sbin/reboot\")})" msgstr "@code{reboot-command} (Vorgabe: @code{#~(string-append #$shepherd \"/sbin/reboot\")})" #. type: table -#: guix-git/doc/guix.texi:19362 +#: guix-git/doc/guix.texi:19724 msgid "Command to run when rebooting." msgstr "Der Befehl, der zum Neustarten des Systems ausgeführt wird." #. type: item -#: guix-git/doc/guix.texi:19363 +#: guix-git/doc/guix.texi:19725 #, no-wrap msgid "@code{theme} (default \"maldives\")" msgstr "@code{theme} (Vorgabe: \"maldives\")" #. type: table -#: guix-git/doc/guix.texi:19366 +#: guix-git/doc/guix.texi:19728 msgid "Theme to use. Default themes provided by SDDM are @samp{\"elarun\"}, @samp{\"maldives\"} or @samp{\"maya\"}." msgstr "Welches Thema für das Aussehen benutzt werden soll. Mit SDDM mitgelieferte Themen sind @samp{\"elarun\"}, @samp{\"maldives\"} und @samp{\"maya\"}." #. type: item -#: guix-git/doc/guix.texi:19367 +#: guix-git/doc/guix.texi:19729 #, no-wrap msgid "@code{themes-directory} (default \"/run/current-system/profile/share/sddm/themes\")" msgstr "@code{themes-directory} (Vorgabe: \"/run/current-system/profile/share/sddm/themes\")" #. type: table -#: guix-git/doc/guix.texi:19369 +#: guix-git/doc/guix.texi:19731 msgid "Directory to look for themes." msgstr "Verzeichnis, wo Themen gefunden werden können." #. type: item -#: guix-git/doc/guix.texi:19370 +#: guix-git/doc/guix.texi:19732 #, no-wrap msgid "@code{faces-directory} (default \"/run/current-system/profile/share/sddm/faces\")" msgstr "@code{faces-directory} (Vorgabe: \"/run/current-system/profile/share/sddm/faces\")" #. type: table -#: guix-git/doc/guix.texi:19372 +#: guix-git/doc/guix.texi:19734 msgid "Directory to look for faces." msgstr "Verzeichnis, wo Avatarbilder gefunden werden können.<" #. type: item -#: guix-git/doc/guix.texi:19373 +#: guix-git/doc/guix.texi:19735 #, no-wrap msgid "@code{default-path} (default \"/run/current-system/profile/bin\")" msgstr "@code{default-path} (Vorgabe: \"/run/current-system/profile/bin\")" #. type: table -#: guix-git/doc/guix.texi:19375 +#: guix-git/doc/guix.texi:19737 msgid "Default PATH to use." msgstr "Welcher PATH voreingestellt sein soll." #. type: item -#: guix-git/doc/guix.texi:19376 +#: guix-git/doc/guix.texi:19738 #, no-wrap msgid "@code{minimum-uid} (default: 1000)" msgstr "@code{minimum-uid} (Vorgabe: 1000)" #. type: table -#: guix-git/doc/guix.texi:19378 +#: guix-git/doc/guix.texi:19740 msgid "Minimum UID displayed in SDDM and allowed for log-in." msgstr "Der kleinste Benutzeridentifikator (UID), mit dem Benutzer in SDDM angezeigt werden und sich anmelden können." #. type: item -#: guix-git/doc/guix.texi:19379 +#: guix-git/doc/guix.texi:19741 #, no-wrap msgid "@code{maximum-uid} (default: 2000)" msgstr "@code{maximum-uid} (Vorgabe: 2000)" #. type: table -#: guix-git/doc/guix.texi:19381 +#: guix-git/doc/guix.texi:19743 msgid "Maximum UID to display in SDDM." msgstr "Der größte Benutzeridentifikator (UID), mit dem Benutzer in SDDM angezeigt werden.<" #. type: item -#: guix-git/doc/guix.texi:19382 +#: guix-git/doc/guix.texi:19744 #, no-wrap msgid "@code{remember-last-user?} (default #t)" msgstr "@code{remember-last-user?} (Vorgabe: #t)" #. type: table -#: guix-git/doc/guix.texi:19384 +#: guix-git/doc/guix.texi:19746 msgid "Remember last user." msgstr "Den zuletzt ausgewählten Benutzer voreinstellen." #. type: item -#: guix-git/doc/guix.texi:19385 +#: guix-git/doc/guix.texi:19747 #, no-wrap msgid "@code{remember-last-session?} (default #t)" msgstr "@code{remember-last-session?} (Vorgabe: #t)" #. type: table -#: guix-git/doc/guix.texi:19387 +#: guix-git/doc/guix.texi:19749 msgid "Remember last session." msgstr "Die zuletzt ausgewählte Sitzung voreinstellen." #. type: item -#: guix-git/doc/guix.texi:19388 +#: guix-git/doc/guix.texi:19750 #, no-wrap msgid "@code{hide-users} (default \"\")" msgstr "@code{hide-users} (Vorgabe: \"\")" #. type: table -#: guix-git/doc/guix.texi:19390 +#: guix-git/doc/guix.texi:19752 msgid "Usernames to hide from SDDM greeter." msgstr "Benutzernamen, die in SDDM @emph{nicht} sichtbar sein sollen." #. type: item -#: guix-git/doc/guix.texi:19391 +#: guix-git/doc/guix.texi:19753 #, no-wrap msgid "@code{hide-shells} (default @code{#~(string-append #$shadow \"/sbin/nologin\")})" msgstr "@code{hide-shells} (Vorgabe: @code{#~(string-append #$shadow \"/sbin/nologin\")})" #. type: table -#: guix-git/doc/guix.texi:19393 +#: guix-git/doc/guix.texi:19755 msgid "Users with shells listed will be hidden from the SDDM greeter." msgstr "Benutzerkonten, für die als Shell eine davon eingestellt ist, wird SDDM @emph{nicht} anzeigen." #. type: item -#: guix-git/doc/guix.texi:19394 +#: guix-git/doc/guix.texi:19756 #, no-wrap msgid "@code{session-command} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/wayland-session\")})" msgstr "@code{session-command} (Vorgabe: @code{#~(string-append #$sddm \"/share/sddm/scripts/wayland-session\")})" #. type: table -#: guix-git/doc/guix.texi:19396 +#: guix-git/doc/guix.texi:19758 msgid "Script to run before starting a wayland session." msgstr "Das Skript, das vor dem Starten einer Wayland-Sitzung ausgeführt werden soll." #. type: item -#: guix-git/doc/guix.texi:19397 +#: guix-git/doc/guix.texi:19759 #, no-wrap msgid "@code{sessions-directory} (default \"/run/current-system/profile/share/wayland-sessions\")" msgstr "@code{sessions-directory} (Vorgabe: \"/run/current-system/profile/share/wayland-sessions\")" #. type: table -#: guix-git/doc/guix.texi:19399 +#: guix-git/doc/guix.texi:19761 msgid "Directory to look for desktop files starting wayland sessions." msgstr "Verzeichnis, das nach .desktop-Dateien zum Starten von Wayland-Sitzungen durchsucht wird." #. type: item -#: guix-git/doc/guix.texi:19403 +#: guix-git/doc/guix.texi:19765 #, no-wrap msgid "@code{xauth-path} (default @code{#~(string-append #$xauth \"/bin/xauth\")})" msgstr "@code{xauth-path} (Vorgabe: @code{#~(string-append #$xauth \"/bin/xauth\")})" #. type: table -#: guix-git/doc/guix.texi:19405 +#: guix-git/doc/guix.texi:19767 msgid "Path to xauth." msgstr "Pfad von xauth." #. type: item -#: guix-git/doc/guix.texi:19406 +#: guix-git/doc/guix.texi:19768 #, no-wrap msgid "@code{xephyr-path} (default @code{#~(string-append #$xorg-server \"/bin/Xephyr\")})" msgstr "@code{xephyr-path} (Vorgabe: @code{#~(string-append #$xorg-server \"/bin/Xephyr\")})" #. type: table -#: guix-git/doc/guix.texi:19408 +#: guix-git/doc/guix.texi:19770 msgid "Path to Xephyr." msgstr "Pfad von Xephyr." #. type: item -#: guix-git/doc/guix.texi:19409 +#: guix-git/doc/guix.texi:19771 #, no-wrap msgid "@code{xdisplay-start} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/Xsetup\")})" msgstr "@code{xdisplay-start} (Vorgabe: @code{#~(string-append #$sddm \"/share/sddm/scripts/Xsetup\")})" #. type: table -#: guix-git/doc/guix.texi:19411 +#: guix-git/doc/guix.texi:19773 msgid "Script to run after starting xorg-server." msgstr "Skript, das nach dem Starten vom Xorg-Server ausgeführt wird." #. type: item -#: guix-git/doc/guix.texi:19412 +#: guix-git/doc/guix.texi:19774 #, no-wrap msgid "@code{xdisplay-stop} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/Xstop\")})" msgstr "@code{xdisplay-stop} (Vorgabe: @code{#~(string-append #$sddm \"/share/sddm/scripts/Xstop\")})" #. type: table -#: guix-git/doc/guix.texi:19414 +#: guix-git/doc/guix.texi:19776 msgid "Script to run before stopping xorg-server." msgstr "Skript, das vor dem Stoppen vom Xorg-Server ausgeführt wird." #. type: item -#: guix-git/doc/guix.texi:19415 +#: guix-git/doc/guix.texi:19777 #, no-wrap msgid "@code{xsession-command} (default: @code{xinitrc})" msgstr "@code{xsession-command} (Vorgabe: @code{xinitrc})" #. type: item -#: guix-git/doc/guix.texi:19418 +#: guix-git/doc/guix.texi:19780 #, no-wrap msgid "@code{xsessions-directory} (default: \"/run/current-system/profile/share/xsessions\")" msgstr "@code{xsessions-directory} (Vorgabe: \"/run/current-system/profile/share/xsessions\")" #. type: table -#: guix-git/doc/guix.texi:19420 +#: guix-git/doc/guix.texi:19782 msgid "Directory to look for desktop files starting X sessions." msgstr "Verzeichnis, das nach .desktop-Dateien zum Starten von X-Sitzungen durchsucht wird.<" #. type: item -#: guix-git/doc/guix.texi:19421 +#: guix-git/doc/guix.texi:19783 #, no-wrap msgid "@code{minimum-vt} (default: 7)" msgstr "@code{minimum-vt} (Vorgabe: 7)" #. type: table -#: guix-git/doc/guix.texi:19423 +#: guix-git/doc/guix.texi:19785 msgid "Minimum VT to use." msgstr "Das kleinste virtuelle Terminal, das benutzt werden darf." #. type: item -#: guix-git/doc/guix.texi:19424 +#: guix-git/doc/guix.texi:19786 #, no-wrap msgid "@code{auto-login-user} (default \"\")" msgstr "@code{auto-login-user} (Vorgabe: \"\")" #. type: table -#: guix-git/doc/guix.texi:19426 +#: guix-git/doc/guix.texi:19788 msgid "User to use for auto-login." msgstr "Benutzer, der bei automatischer Anmeldung angemeldet wird." #. type: item -#: guix-git/doc/guix.texi:19427 +#: guix-git/doc/guix.texi:19789 #, no-wrap msgid "@code{auto-login-session} (default \"\")" msgstr "@code{auto-login-session} (Vorgabe: \"\")" #. type: table -#: guix-git/doc/guix.texi:19429 +#: guix-git/doc/guix.texi:19791 msgid "Desktop file to use for auto-login." msgstr "Desktop-Datei für die automatische Anmeldung." #. type: item -#: guix-git/doc/guix.texi:19430 +#: guix-git/doc/guix.texi:19792 #, no-wrap msgid "@code{relogin?} (default #f)" msgstr "@code{relogin?} (Vorgabe: #f)" #. type: table -#: guix-git/doc/guix.texi:19432 +#: guix-git/doc/guix.texi:19794 msgid "Relogin after logout." msgstr "Ob nach dem Abmelden neu angemeldet werden soll." #. type: cindex -#: guix-git/doc/guix.texi:19437 +#: guix-git/doc/guix.texi:19799 #, no-wrap msgid "X11 login" msgstr "X11-Anmeldung" #. type: defvr -#: guix-git/doc/guix.texi:19438 +#: guix-git/doc/guix.texi:19800 #, no-wrap msgid "{Scheme Variable} sddm-service-type" msgstr "{Scheme-Variable} sddm-service-type" #. type: defvr -#: guix-git/doc/guix.texi:19442 +#: guix-git/doc/guix.texi:19804 msgid "This is the type of the service to run the @uref{https://github.com/sddm/sddm,SDDM display manager}. Its value must be a @code{sddm-configuration} record (see below)." msgstr "Dies ist der Typ des Dienstes, mit dem der @uref{https://github.com/sddm/sddm,SDDM-Anzeigeserver} gestartet wird. Sein Wert muss ein @code{sddm-configuration}-Verbundsobjekt sein (siehe unten)." #. type: defvr -#: guix-git/doc/guix.texi:19444 +#: guix-git/doc/guix.texi:19806 msgid "Here's an example use:" msgstr "Hier ist ein Beispiel für seine Verwendung:" #. type: lisp -#: guix-git/doc/guix.texi:19450 +#: guix-git/doc/guix.texi:19812 #, no-wrap msgid "" "(service sddm-service-type\n" @@ -36440,265 +37100,265 @@ msgstr "" " (auto-login-session \"xfce.desktop\")))\n" #. type: deftp -#: guix-git/doc/guix.texi:19456 +#: guix-git/doc/guix.texi:19818 msgid "This data type represents the configuration of the SDDM login manager. The available fields are:" msgstr "Dieser Datentyp repräsentiert die Konfiguration der SDDM-Anmeldeverwaltung. Die verfügbaren Felder sind:" #. type: item -#: guix-git/doc/guix.texi:19458 +#: guix-git/doc/guix.texi:19820 #, no-wrap msgid "@code{sddm} (default: @code{sddm})" msgstr "@code{sddm} (Vorgabe: @code{sddm})" #. type: table -#: guix-git/doc/guix.texi:19460 +#: guix-git/doc/guix.texi:19822 msgid "The SDDM package to use." msgstr "Das SDDM-Paket, was benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:19461 +#: guix-git/doc/guix.texi:19823 #, no-wrap msgid "@code{display-server} (default: @code{\"x11\"})" msgstr "@code{display-server} (Vorgabe: @code{\"x11\"})" #. type: table -#: guix-git/doc/guix.texi:19463 +#: guix-git/doc/guix.texi:19825 msgid "This must be either @code{\"x11\"} or @code{\"wayland\"}." msgstr "Hier muss entweder @code{\"x11\"} oder @code{\"wayland\"} angegeben werden." #. type: item -#: guix-git/doc/guix.texi:19466 +#: guix-git/doc/guix.texi:19828 #, no-wrap msgid "@code{auto-login-user} (default: @code{\"\"})" msgstr "@code{auto-login-user} (Vorgabe: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:19469 +#: guix-git/doc/guix.texi:19831 msgid "If non-empty, this is the user account under which to log in automatically." msgstr "Wenn es nicht leer ist, enthält dieses Feld das Benutzerkonto, mit dem man automatisch angemeldet wird." #. type: item -#: guix-git/doc/guix.texi:19470 +#: guix-git/doc/guix.texi:19832 #, no-wrap msgid "@code{auto-login-session} (default: @code{\"\"})" msgstr "@code{auto-login-session} (Vorgabe: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:19473 +#: guix-git/doc/guix.texi:19835 msgid "If non-empty, this is the @file{.desktop} file name to use as the auto-login session." msgstr "Wenn es nicht leer ist, gibt dieses Feld den Namen der @file{.desktop}-Datei an, die bei automatischer Anmeldung für die Sitzung verwendet wird." #. type: cindex -#: guix-git/doc/guix.texi:19476 +#: guix-git/doc/guix.texi:19838 #, no-wrap msgid "Xorg, configuration" msgstr "Xorg, Konfiguration" #. type: deftp -#: guix-git/doc/guix.texi:19477 +#: guix-git/doc/guix.texi:19839 #, no-wrap msgid "{Data Type} xorg-configuration" msgstr "{Datentyp} xorg-configuration" #. type: deftp -#: guix-git/doc/guix.texi:19482 +#: guix-git/doc/guix.texi:19844 msgid "This data type represents the configuration of the Xorg graphical display server. Note that there is no Xorg service; instead, the X server is started by a ``display manager'' such as GDM, SDDM, and SLiM@. Thus, the configuration of these display managers aggregates an @code{xorg-configuration} record." msgstr "Dieser Datentyp repräsentiert die Konfiguration des grafischen Anzeigeservers Xorg. Beachten Sie, dass es keinen Xorg-Dienst gibt, sondern der X-Server von einer „Anzeigenverwaltung“ wie GDM, SDDM oder SLiM gestartet wird. Deswegen wird aus der Konfiguration dieser Anzeigenverwaltungen ein @code{xorg-configuration}-Verbundsobjekt konstruiert." #. type: item -#: guix-git/doc/guix.texi:19484 +#: guix-git/doc/guix.texi:19846 #, no-wrap msgid "@code{modules} (default: @code{%default-xorg-modules})" msgstr "@code{modules} (Vorgabe: @code{%default-xorg-modules})" #. type: table -#: guix-git/doc/guix.texi:19487 +#: guix-git/doc/guix.texi:19849 msgid "This is a list of @dfn{module packages} loaded by the Xorg server---e.g., @code{xf86-video-vesa}, @code{xf86-input-keyboard}, and so on." msgstr "Dies ist eine Liste von @dfn{Modulpaketen}, die vom Xorg-Server geladen werden@tie{}— z.B.@: @code{xf86-video-vesa}, @code{xf86-input-keyboard} und so weiter." #. type: item -#: guix-git/doc/guix.texi:19488 +#: guix-git/doc/guix.texi:19850 #, no-wrap msgid "@code{fonts} (default: @code{%default-xorg-fonts})" msgstr "@code{fonts} (Vorgabe: @code{%default-xorg-fonts})" #. type: table -#: guix-git/doc/guix.texi:19490 +#: guix-git/doc/guix.texi:19852 msgid "This is a list of font directories to add to the server's @dfn{font path}." msgstr "Dies ist eine Liste von Verzeichnissen mit Schriftarten, die zum Schriftartensuchpfad („Font Path“) des Servers hinzugefügt werden." #. type: item -#: guix-git/doc/guix.texi:19491 +#: guix-git/doc/guix.texi:19853 #, no-wrap msgid "@code{drivers} (default: @code{'()})" msgstr "@code{drivers} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:19495 +#: guix-git/doc/guix.texi:19857 msgid "This must be either the empty list, in which case Xorg chooses a graphics driver automatically, or a list of driver names that will be tried in this order---e.g., @code{(\"modesetting\" \"vesa\")}." msgstr "Dies muss entweder die leere Liste sein@tie{}— in diesem Fall wird durch Xorg automatisch ein Grafiktreiber ausgewählt@tie{}— oder eine Liste von Treibernamen, die in dieser Reihenfolge durchprobiert werden@tie{}— z.B.@: @code{(\"modesetting\" \"vesa\")}." #. type: item -#: guix-git/doc/guix.texi:19496 +#: guix-git/doc/guix.texi:19858 #, no-wrap msgid "@code{resolutions} (default: @code{'()})" msgstr "@code{resolutions} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:19500 +#: guix-git/doc/guix.texi:19862 msgid "When @code{resolutions} is the empty list, Xorg chooses an appropriate screen resolution. Otherwise, it must be a list of resolutions---e.g., @code{((1024 768) (640 480))}." msgstr "Wenn @code{resolutions} die leere Liste ist, wird automatisch durch Xorg eine passende Bildschirmauflösung gewählt. Andernfalls muss hier eine Liste von Bildschirmauflösungen angegeben werden@tie{}— z.B.@: @code{((1024 768) (640 480))}." #. type: cindex -#: guix-git/doc/guix.texi:19501 +#: guix-git/doc/guix.texi:19863 #, no-wrap msgid "keyboard layout, for Xorg" msgstr "Tastaturbelegung, für Xorg" #. type: cindex -#: guix-git/doc/guix.texi:19502 +#: guix-git/doc/guix.texi:19864 #, no-wrap msgid "keymap, for Xorg" msgstr "Keymap, für Xorg" #. type: table -#: guix-git/doc/guix.texi:19506 +#: guix-git/doc/guix.texi:19868 msgid "If this is @code{#f}, Xorg uses the default keyboard layout---usually US English (``qwerty'') for a 105-key PC keyboard." msgstr "Wenn es auf @code{#f} gesetzt ist, benutzt Xorg die voreingestellte Tastaturbelegung, also normalerweise US English („QWERTY“) für eine PC-Tastatur mit 105 Tasten." #. type: table -#: guix-git/doc/guix.texi:19510 +#: guix-git/doc/guix.texi:19872 msgid "Otherwise this must be a @code{keyboard-layout} object specifying the keyboard layout in use when Xorg is running. @xref{Keyboard Layout}, for more information on how to specify the keyboard layout." msgstr "Andernfalls muss hier ein @code{keyboard-layout}-Objekt stehen, das angibt, welche Tastaturbelegung aktiv sein soll, während Xorg läuft. Siehe @ref{Keyboard Layout} für mehr Informationen, wie die Tastaturbelegung angegeben werden kann." #. type: item -#: guix-git/doc/guix.texi:19511 guix-git/doc/guix.texi:21223 -#: guix-git/doc/guix.texi:34046 +#: guix-git/doc/guix.texi:19873 guix-git/doc/guix.texi:21585 +#: guix-git/doc/guix.texi:34483 #, no-wrap msgid "@code{extra-config} (default: @code{'()})" msgstr "@code{extra-config} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:19514 guix-git/doc/guix.texi:34050 +#: guix-git/doc/guix.texi:19876 guix-git/doc/guix.texi:34487 msgid "This is a list of strings or objects appended to the configuration file. It is used to pass extra text to be added verbatim to the configuration file." msgstr "Dies ist eine Liste von Zeichenketten oder Objekten, die an die Konfigurationsdatei angehängt werden. Mit ihnen wird zusätzlicher Text wortwörtlich zur Konfigurationsdatei hinzugefügt." #. type: item -#: guix-git/doc/guix.texi:19515 +#: guix-git/doc/guix.texi:19877 #, no-wrap msgid "@code{server} (default: @code{xorg-server})" msgstr "@code{server} (Vorgabe: @code{xorg-server})" #. type: table -#: guix-git/doc/guix.texi:19517 +#: guix-git/doc/guix.texi:19879 msgid "This is the package providing the Xorg server." msgstr "Dieses Paket stellt den Xorg-Server zur Verfügung." #. type: item -#: guix-git/doc/guix.texi:19518 +#: guix-git/doc/guix.texi:19880 #, no-wrap msgid "@code{server-arguments} (default: @code{%default-xorg-server-arguments})" msgstr "@code{server-arguments} (Vorgabe: @code{%default-xorg-server-arguments})" #. type: table -#: guix-git/doc/guix.texi:19521 +#: guix-git/doc/guix.texi:19883 msgid "This is the list of command-line arguments to pass to the X server. The default is @code{-nolisten tcp}." msgstr "Dies ist die Liste der Befehlszeilenargumente, die an den X-Server übergeben werden. Die Vorgabe ist @code{-nolisten tcp}." #. type: deffn -#: guix-git/doc/guix.texi:19524 +#: guix-git/doc/guix.texi:19886 #, no-wrap msgid "{Scheme Procedure} set-xorg-configuration @var{config} @" msgstr "{Scheme-Prozedur} set-xorg-configuration @var{Konfiguration} @" #. type: deffn -#: guix-git/doc/guix.texi:19528 +#: guix-git/doc/guix.texi:19890 msgid "[@var{login-manager-service-type}] Tell the log-in manager (of type @var{login-manager-service-type}) to use @var{config}, an @code{} record." msgstr "[@var{login-manager-service-type}] Benennt, welche @var{Konfiguration} die Anmeldeverwaltung (vom Typ @var{login-manager-service-type}) benutzen soll, als ein @code{}-Verbundsobjekt." #. type: deffn -#: guix-git/doc/guix.texi:19532 +#: guix-git/doc/guix.texi:19894 msgid "Since the Xorg configuration is embedded in the log-in manager's configuration---e.g., @code{gdm-configuration}---this procedure provides a shorthand to set the Xorg configuration." msgstr "Da die Xorg-Konfiguration in die Konfiguration der Anmeldeverwaltung eingebettet ist@tie{}— z.B.@: in einer @code{gdm-configuration}@tie{}—, bietet diese Prozedur eine Kurzschreibweise zum Ändern der Xorg-Konfiguration." #. type: deffn -#: guix-git/doc/guix.texi:19534 +#: guix-git/doc/guix.texi:19896 #, no-wrap msgid "{Scheme Procedure} xorg-start-command [@var{config}]" msgstr "{Scheme-Prozedur} xorg-start-command [@var{Konfiguration}]" #. type: deffn -#: guix-git/doc/guix.texi:19538 +#: guix-git/doc/guix.texi:19900 msgid "Return a @code{startx} script in which the modules, fonts, etc. specified in @var{config}, are available. The result should be used in place of @code{startx}." msgstr "Hier wird ein @code{startx}-Skript geliefert, in welchem die Module, Schriftarten usw.@: verfügbar sind, die in der @var{Konfiguration} angegeben wurden. Das Ergebnis soll anstelle von @code{startx} benutzt werden." #. type: deffn -#: guix-git/doc/guix.texi:19540 +#: guix-git/doc/guix.texi:19902 msgid "Usually the X server is started by a login manager." msgstr "Normalerweise wird der X-Server von der Anmeldeverwaltung gestartet." #. type: deffn -#: guix-git/doc/guix.texi:19543 +#: guix-git/doc/guix.texi:19905 #, no-wrap msgid "{Scheme Procedure} screen-locker-service @var{package} [@var{program}]" msgstr "{Scheme-Prozedur} screen-locker-service @var{Paket} [@var{Programm}]" #. type: deffn -#: guix-git/doc/guix.texi:19547 +#: guix-git/doc/guix.texi:19909 msgid "Add @var{package}, a package for a screen locker or screen saver whose command is @var{program}, to the set of setuid programs and add a PAM entry for it. For example:" msgstr "Das @var{Paket} zur Menge der setuid-Programme hinzufügen, worin sich ein Programm zum Sperren des Bildschirms oder ein Bildschirmschoner befinden muss, der mit dem Befehl @var{Programm} gestartet wird, und einen PAM-Eintrag dafür hinzufügen. Zum Beispiel macht" #. type: lisp -#: guix-git/doc/guix.texi:19550 +#: guix-git/doc/guix.texi:19912 #, no-wrap msgid "(screen-locker-service xlockmore \"xlock\")\n" msgstr "(screen-locker-service xlockmore \"xlock\")\n" #. type: deffn -#: guix-git/doc/guix.texi:19553 +#: guix-git/doc/guix.texi:19915 msgid "makes the good ol' XlockMore usable." msgstr "das gute alte XlockMore benutzbar." #. type: cindex -#: guix-git/doc/guix.texi:19559 +#: guix-git/doc/guix.texi:19921 #, no-wrap msgid "printer support with CUPS" msgstr "Druckerunterstützung mit CUPS" #. type: Plain text -#: guix-git/doc/guix.texi:19563 +#: guix-git/doc/guix.texi:19925 msgid "The @code{(gnu services cups)} module provides a Guix service definition for the CUPS printing service. To add printer support to a Guix system, add a @code{cups-service} to the operating system definition:" msgstr "Das Modul @code{(gnu services cups)} stellt eine Guix-Dienstdefinition für den CUPS-Druckdienst zur Verfügung. Wenn Sie Druckerunterstützung zu einem Guix-System hinzufügen möchten, dann fügen Sie einen @code{cups-service}-Dienst in die Betriebssystemdefinition ein." #. type: deffn -#: guix-git/doc/guix.texi:19564 +#: guix-git/doc/guix.texi:19926 #, no-wrap msgid "{Scheme Variable} cups-service-type" msgstr "{Scheme-Variable} cups-service-type" #. type: deffn -#: guix-git/doc/guix.texi:19568 +#: guix-git/doc/guix.texi:19930 msgid "The service type for the CUPS print server. Its value should be a valid CUPS configuration (see below). To use the default settings, simply write:" msgstr "Der Diensttyp für den CUPS-Druckserver. Als Wert muss eine gültige CUPS-Konfiguration angegeben werden (siehe unten). Um die Voreinstellungen zu verwenden, schreiben Sie einfach nur:" #. type: lisp -#: guix-git/doc/guix.texi:19570 +#: guix-git/doc/guix.texi:19932 #, no-wrap msgid "(service cups-service-type)\n" msgstr "(service cups-service-type)\n" #. type: Plain text -#: guix-git/doc/guix.texi:19580 +#: guix-git/doc/guix.texi:19942 msgid "The CUPS configuration controls the basic things about your CUPS installation: what interfaces it listens on, what to do if a print job fails, how much logging to do, and so on. To actually add a printer, you have to visit the @url{http://localhost:631} URL, or use a tool such as GNOME's printer configuration services. By default, configuring a CUPS service will generate a self-signed certificate if needed, for secure connections to the print server." msgstr "Mit der CUPS-Konfiguration stellen Sie die grundlegenden Merkmale Ihrer CUPS-Installation ein: Auf welcher Schnittstelle sie lauscht, wie mit einem fehlgeschlagenen Druckauftrag umzugehen ist, wie viel in Protokolle geschrieben werden soll und so weiter. Um einen Drucker hinzuzufügen, müssen Sie jedoch die URL @url{http://localhost:631} besuchen oder ein Werkzeug wie die Druckereinstellungsdienste von GNOME benutzen. Die Vorgabe ist, dass beim Konfigurieren eines CUPS-Dienstes ein selbstsigniertes Zertifikat erzeugt wird, um sichere Verbindungen mit dem Druckserver zu ermöglichen." #. type: Plain text -#: guix-git/doc/guix.texi:19586 +#: guix-git/doc/guix.texi:19948 msgid "Suppose you want to enable the Web interface of CUPS and also add support for Epson printers @i{via} the @code{epson-inkjet-printer-escpr} package and for HP printers @i{via} the @code{hplip-minimal} package. You can do that directly, like this (you need to use the @code{(gnu packages cups)} module):" msgstr "Nehmen wir an, Sie wollen die Weboberfläche von CUPS aktivieren und Unterstützung für Epson-Drucker über das @code{epson-inkjet-printer-escpr}-Paket und für HP-Drucker über das @code{hplip-minimal}-Paket aktivieren. Sie können das auf diese Weise gleich machen (dazu müssen Sie vorher angeben, dass das Modul @code{(gnu packages cups)} benutzt werden soll):" #. type: lisp -#: guix-git/doc/guix.texi:19593 +#: guix-git/doc/guix.texi:19955 #, no-wrap msgid "" "(service cups-service-type\n" @@ -36714,1584 +37374,1582 @@ msgstr "" " (list cups-filters epson-inkjet-printer-escpr hplip-minimal))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:19598 +#: guix-git/doc/guix.texi:19960 msgid "Note: If you wish to use the Qt5 based GUI which comes with the hplip package then it is suggested that you install the @code{hplip} package, either in your OS configuration file or as your user." msgstr "Anmerkung: Wenn Sie die Qt5-basierte grafische Benutzeroberfläche benutzen möchten, die dem hplip-Paket beiliegt, sollten Sie das @code{hplip}-Paket installieren, entweder in die Konfigurationsdatei Ihres Betriebssystems oder für Ihr Benutzerkonto." #. type: Plain text -#: guix-git/doc/guix.texi:19605 +#: guix-git/doc/guix.texi:19967 msgid "The available configuration parameters follow. Each parameter definition is preceded by its type; for example, @samp{string-list foo} indicates that the @code{foo} parameter should be specified as a list of strings. There is also a way to specify the configuration as a string, if you have an old @code{cupsd.conf} file that you want to port over from some other system; see the end for more details." msgstr "Im Folgenden sehen Sie die verfügbaren Konfigurationsparameter. Vor jeder Parameterdefinition wird ihr Typ angegeben, zum Beispiel steht @samp{Zeichenketten-Liste foo} für einen Parameter @code{foo}, der als Liste von Zeichenketten angegeben werden muss. Sie können die Konfiguration aber auch in einer einzigen Zeichenkette angeben, wenn Sie eine alte @code{cupsd.conf}-Datei von einem anderen System weiterbenutzen möchten; siehe das Abschnittsende für mehr Details." #. type: Plain text -#: guix-git/doc/guix.texi:19616 +#: guix-git/doc/guix.texi:19978 msgid "Available @code{cups-configuration} fields are:" msgstr "Die verfügbaren @code{cups-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:19617 +#: guix-git/doc/guix.texi:19979 #, no-wrap msgid "{@code{cups-configuration} parameter} package cups" msgstr "{@code{cups-configuration}-Parameter} „package“ cups" #. type: deftypevr -#: guix-git/doc/guix.texi:19619 guix-git/doc/guix.texi:20387 +#: guix-git/doc/guix.texi:19981 guix-git/doc/guix.texi:20749 msgid "The CUPS package." msgstr "Das CUPS-Paket." #. type: deftypevr -#: guix-git/doc/guix.texi:19621 +#: guix-git/doc/guix.texi:19983 #, no-wrap msgid "{@code{cups-configuration} parameter} package-list extensions (default: @code{(list brlaser cups-filters epson-inkjet-printer-escpr foomatic-filters hplip-minimal splix)})" msgstr "{@code{cups-configuration}-Parameter} „package“-Liste extensions (Vorgabe: @code{(list brlaser cups-filters epson-inkjet-printer-escpr foomatic-filters hplip-minimal splix)})" #. type: deftypevr -#: guix-git/doc/guix.texi:19623 +#: guix-git/doc/guix.texi:19985 msgid "Drivers and other extensions to the CUPS package." msgstr "Treiber und andere Erweiterungen für das CUPS-Paket." #. type: deftypevr -#: guix-git/doc/guix.texi:19625 +#: guix-git/doc/guix.texi:19987 #, no-wrap msgid "{@code{cups-configuration} parameter} files-configuration files-configuration" msgstr "{@code{cups-configuration}-Parameter} „files-configuration“ files-configuration" #. type: deftypevr -#: guix-git/doc/guix.texi:19628 +#: guix-git/doc/guix.texi:19990 msgid "Configuration of where to write logs, what directories to use for print spools, and related privileged configuration parameters." msgstr "Konfiguration, wo Protokolle abgelegt werden sollen, welche Verzeichnisse für Druckspoolerwarteschlangen benutzt werden sollen und ähnliche Berechtigungen erfordernde Konfigurationsparameter." #. type: deftypevr -#: guix-git/doc/guix.texi:19630 +#: guix-git/doc/guix.texi:19992 msgid "Available @code{files-configuration} fields are:" msgstr "Verfügbare Felder einer @code{files-configuration} sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:19631 +#: guix-git/doc/guix.texi:19993 #, no-wrap msgid "{@code{files-configuration} parameter} log-location access-log" msgstr "{@code{files-configuration}-Parameter} Protokollpfad access-log" #. type: deftypevr -#: guix-git/doc/guix.texi:19639 +#: guix-git/doc/guix.texi:20001 msgid "Defines the access log filename. Specifying a blank filename disables access log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-access_log}." msgstr "Hiermit wird der Dateiname des Zugriffsprotokolls („Access Log“) festgelegt. Wenn ein leerer Name angegeben wird, wird kein Protokoll erzeugt. Der Wert @code{stderr} lässt Protokolleinträge in die Standardfehlerdatei schreiben, wenn das Druckplanungsprogramm im Vordergrund läuft, oder an den Systemprotokolldaemon (also Syslog), wenn es im Hintergrund läuft. Der Wert @code{syslog} bewirkt, dass Protokolleinträge an den Systemprotokolldaemon geschickt werden. Der Servername darf in Dateinamen als die Zeichenkette @code{%s} angegeben werden, so kann etwa @code{/var/log/cups/%s-access_log} angegeben werden." #. type: deftypevr -#: guix-git/doc/guix.texi:19641 +#: guix-git/doc/guix.texi:20003 msgid "Defaults to @samp{\"/var/log/cups/access_log\"}." msgstr "Die Vorgabe ist @samp{\"/var/log/cups/access_log\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19643 +#: guix-git/doc/guix.texi:20005 #, no-wrap msgid "{@code{files-configuration} parameter} file-name cache-dir" msgstr "{@code{files-configuration}-Parameter} Dateiname cache-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:19645 +#: guix-git/doc/guix.texi:20007 msgid "Where CUPS should cache data." msgstr "Wo CUPS zwischengespeicherte Daten ablegen soll." #. type: deftypevr -#: guix-git/doc/guix.texi:19647 +#: guix-git/doc/guix.texi:20009 msgid "Defaults to @samp{\"/var/cache/cups\"}." msgstr "Die Vorgabe ist @samp{\"/var/cache/cups\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19649 +#: guix-git/doc/guix.texi:20011 #, no-wrap msgid "{@code{files-configuration} parameter} string config-file-perm" msgstr "{@code{files-configuration}-Parameter} Zeichenkette config-file-perm" #. type: deftypevr -#: guix-git/doc/guix.texi:19652 +#: guix-git/doc/guix.texi:20014 msgid "Specifies the permissions for all configuration files that the scheduler writes." msgstr "Gibt die Berechtigungen für alle Konfigurationsdateien an, die das Planungsprogramm schreibt." #. type: deftypevr -#: guix-git/doc/guix.texi:19658 +#: guix-git/doc/guix.texi:20020 msgid "Note that the permissions for the printers.conf file are currently masked to only allow access from the scheduler user (typically root). This is done because printer device URIs sometimes contain sensitive authentication information that should not be generally known on the system. There is no way to disable this security feature." msgstr "Beachten Sie, dass auf die Berechtigungen der Datei printers.conf eine Maske gelegt wird, wodurch Zugriffe nur durch das planende Benutzerkonto erlaubt werden (in der Regel der Administratornutzer „root“). Der Grund dafür ist, dass Druckergeräte-URIs manchmal sensible Authentisierungsdaten enthalten, die nicht allgemein auf dem System bekannt sein sollten. Es gibt keine Möglichkeit, diese Sicherheitsmaßnahme abzuschalten." #. type: deftypevr -#: guix-git/doc/guix.texi:19660 +#: guix-git/doc/guix.texi:20022 msgid "Defaults to @samp{\"0640\"}." msgstr "Die Vorgabe ist @samp{\"0640\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19662 +#: guix-git/doc/guix.texi:20024 #, no-wrap msgid "{@code{files-configuration} parameter} log-location error-log" msgstr "{@code{files-configuration}-Parameter} Protokollpfad error-log" #. type: deftypevr -#: guix-git/doc/guix.texi:19670 +#: guix-git/doc/guix.texi:20032 msgid "Defines the error log filename. Specifying a blank filename disables error log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-error_log}." msgstr "Hiermit wird der Dateiname des Fehlerprotokolls („Error Log“) festgelegt. Wenn ein leerer Name angegeben wird, wird kein Fehlerprotokoll erzeugt. Der Wert @code{stderr} lässt Protokolleinträge in die Standardfehlerdatei schreiben, wenn das Planungsprogramm im Vordergrund läuft, oder an den Systemprotokolldaemon (also Syslog), wenn es im Hintergrund läuft. Der Wert @code{syslog} bewirkt, dass Protokolleinträge an den Systemprotokolldaemon geschickt werden. Der Servername darf in Dateinamen als die Zeichenkette @code{%s} angegeben werden, so kann etwa @code{/var/log/cups/%s-error_log} angegeben werden." #. type: deftypevr -#: guix-git/doc/guix.texi:19672 +#: guix-git/doc/guix.texi:20034 msgid "Defaults to @samp{\"/var/log/cups/error_log\"}." msgstr "Die Vorgabe ist @samp{\"/var/log/cups/error_log\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19674 +#: guix-git/doc/guix.texi:20036 #, no-wrap msgid "{@code{files-configuration} parameter} string fatal-errors" msgstr "{@code{files-configuration}-Parameter} Zeichenkette fatal-errors" #. type: deftypevr -#: guix-git/doc/guix.texi:19677 +#: guix-git/doc/guix.texi:20039 msgid "Specifies which errors are fatal, causing the scheduler to exit. The kind strings are:" msgstr "Gibt an, bei welchen Fehlern das Druckplanungsprogramm terminieren soll. Die Zeichenketten für die Arten sind:" #. type: table -#: guix-git/doc/guix.texi:19681 +#: guix-git/doc/guix.texi:20043 msgid "No errors are fatal." msgstr "Keine Fehler führen zur Beendigung." #. type: table -#: guix-git/doc/guix.texi:19684 +#: guix-git/doc/guix.texi:20046 msgid "All of the errors below are fatal." msgstr "Jeder der im Folgenden aufgeführten Fehler terminiert den Druckplaner." #. type: item -#: guix-git/doc/guix.texi:19685 +#: guix-git/doc/guix.texi:20047 #, no-wrap msgid "browse" msgstr "browse" #. type: table -#: guix-git/doc/guix.texi:19688 +#: guix-git/doc/guix.texi:20050 msgid "Browsing initialization errors are fatal, for example failed connections to the DNS-SD daemon." msgstr "Fehler bei der Suche während der Initialisierung terminieren den Druckplaner, zum Beispiel wenn keine Verbindung zum DNS-SD-Daemon aufgebaut werden kann." #. type: item -#: guix-git/doc/guix.texi:19689 +#: guix-git/doc/guix.texi:20051 #, no-wrap msgid "config" msgstr "config" #. type: table -#: guix-git/doc/guix.texi:19691 +#: guix-git/doc/guix.texi:20053 msgid "Configuration file syntax errors are fatal." msgstr "Syntaxfehler in der Konfigurationsdatei terminieren den Druckplaner." #. type: item -#: guix-git/doc/guix.texi:19692 +#: guix-git/doc/guix.texi:20054 #, no-wrap msgid "listen" msgstr "listen" #. type: table -#: guix-git/doc/guix.texi:19695 +#: guix-git/doc/guix.texi:20057 msgid "Listen or Port errors are fatal, except for IPv6 failures on the loopback or @code{any} addresses." msgstr "Fehler beim Lauschen oder Portfehler (entsprechend der Direktiven „Listen“ oder „Port“) terminieren den Druckplaner; ausgenommen sind Fehler bei IPv6 auf Loopback- oder @code{any}-Adressen." #. type: item -#: guix-git/doc/guix.texi:19696 +#: guix-git/doc/guix.texi:20058 #, no-wrap msgid "log" msgstr "log" #. type: table -#: guix-git/doc/guix.texi:19698 +#: guix-git/doc/guix.texi:20060 msgid "Log file creation or write errors are fatal." msgstr "Fehler beim Erzeugen von Protokolldateien terminieren den Druckplaner." #. type: item -#: guix-git/doc/guix.texi:19699 +#: guix-git/doc/guix.texi:20061 #, no-wrap msgid "permissions" msgstr "permissions" #. type: table -#: guix-git/doc/guix.texi:19702 +#: guix-git/doc/guix.texi:20064 msgid "Bad startup file permissions are fatal, for example shared TLS certificate and key files with world-read permissions." msgstr "Falsche Zugriffsberechtigungen auf zum Starten benötigten Dateien terminieren den Druckplaner, zum Beispiel wenn auf gemeinsame TLS-Zertifikats- und Schlüsseldateien von allen lesend zugegriffen werden kann." #. type: deftypevr -#: guix-git/doc/guix.texi:19705 +#: guix-git/doc/guix.texi:20067 msgid "Defaults to @samp{\"all -browse\"}." msgstr "Die Vorgabe ist @samp{\"all -browse\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19707 +#: guix-git/doc/guix.texi:20069 #, no-wrap msgid "{@code{files-configuration} parameter} boolean file-device?" msgstr "{@code{files-configuration}-Parameter} Boolescher-Ausdruck file-device?" #. type: deftypevr -#: guix-git/doc/guix.texi:19710 +#: guix-git/doc/guix.texi:20072 msgid "Specifies whether the file pseudo-device can be used for new printer queues. The URI @uref{file:///dev/null} is always allowed." msgstr "Gibt an, welches Pseudogerät für neue Druckerwarteschlangen benutzt werden kann. Die URI @uref{file:///dev/null} wird immer zugelassen." #. type: deftypevr -#: guix-git/doc/guix.texi:19714 +#: guix-git/doc/guix.texi:20076 #, no-wrap msgid "{@code{files-configuration} parameter} string group" msgstr "{@code{files-configuration}-Parameter} Zeichenkette group" #. type: deftypevr -#: guix-git/doc/guix.texi:19717 +#: guix-git/doc/guix.texi:20079 msgid "Specifies the group name or ID that will be used when executing external programs." msgstr "Gibt Namen oder Identifikator der Benutzergruppe an, die zum Ausführen von externen Programmen verwendet wird." #. type: deftypevr -#: guix-git/doc/guix.texi:19719 guix-git/doc/guix.texi:19805 +#: guix-git/doc/guix.texi:20081 guix-git/doc/guix.texi:20167 msgid "Defaults to @samp{\"lp\"}." msgstr "Die Vorgabe ist @samp{\"lp\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19721 +#: guix-git/doc/guix.texi:20083 #, no-wrap msgid "{@code{files-configuration} parameter} string log-file-group" msgstr "{@code{files-configuration}-Parameter} Zeichenkette log-file-group" #. type: deftypevr -#: guix-git/doc/guix.texi:19723 +#: guix-git/doc/guix.texi:20085 msgid "Specifies the group name or ID that will be used for log files." msgstr "Gibt Namen oder Identifikator der Benutzergruppe an, mit der Protokolldateien gespeichert werden." #. type: deftypevr -#: guix-git/doc/guix.texi:19725 +#: guix-git/doc/guix.texi:20087 msgid "Defaults to @samp{\"lpadmin\"}." msgstr "Die Vorgabe ist @samp{\"lpadmin\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19727 +#: guix-git/doc/guix.texi:20089 #, no-wrap msgid "{@code{files-configuration} parameter} string log-file-perm" msgstr "{@code{files-configuration}-Parameter} Zeichenkette log-file-perm" #. type: deftypevr -#: guix-git/doc/guix.texi:19729 +#: guix-git/doc/guix.texi:20091 msgid "Specifies the permissions for all log files that the scheduler writes." msgstr "Gibt die Berechtigungen für alle Protokolldateien an, die das Planungsprogramm schreibt." #. type: deftypevr -#: guix-git/doc/guix.texi:19731 +#: guix-git/doc/guix.texi:20093 msgid "Defaults to @samp{\"0644\"}." msgstr "Die Vorgabe ist @samp{\"0644\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19733 +#: guix-git/doc/guix.texi:20095 #, no-wrap msgid "{@code{files-configuration} parameter} log-location page-log" msgstr "{@code{files-configuration}-Parameter} log-location page-log" #. type: deftypevr -#: guix-git/doc/guix.texi:19741 +#: guix-git/doc/guix.texi:20103 msgid "Defines the page log filename. Specifying a blank filename disables page log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-page_log}." msgstr "Hiermit wird der Dateiname des Seitenprotokolls („Page Log“) festgelegt. Wenn ein leerer Name angegeben wird, wird kein Seitenprotokoll erzeugt. Der Wert @code{stderr} lässt Protokolleinträge in die Standardfehlerdatei schreiben, wenn das Planungsprogramm im Vordergrund läuft, oder an den Systemprotokolldaemon (also Syslog), wenn es im Hintergrund läuft. Der Wert @code{syslog} bewirkt, dass Protokolleinträge an den Systemprotokolldaemon geschickt werden. Der Servername darf in Dateinamen als die Zeichenkette @code{%s} angegeben werden, so kann etwa @code{/var/log/cups/%s-page_log} angegeben werden." #. type: deftypevr -#: guix-git/doc/guix.texi:19743 +#: guix-git/doc/guix.texi:20105 msgid "Defaults to @samp{\"/var/log/cups/page_log\"}." msgstr "Die Vorgabe ist @samp{\"/var/log/cups/page_log\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19745 +#: guix-git/doc/guix.texi:20107 #, no-wrap msgid "{@code{files-configuration} parameter} string remote-root" msgstr "{@code{files-configuration}-Parameter} Zeichenkette remote-root" #. type: deftypevr -#: guix-git/doc/guix.texi:19748 +#: guix-git/doc/guix.texi:20110 msgid "Specifies the username that is associated with unauthenticated accesses by clients claiming to be the root user. The default is @code{remroot}." msgstr "Gibt den Benutzernamen an, der für unauthentifizierte Zugriffe durch Clients verwendet wird, die sich als der Administratornutzer „root“ anmelden. Vorgegeben ist @code{remroot}." #. type: deftypevr -#: guix-git/doc/guix.texi:19750 +#: guix-git/doc/guix.texi:20112 msgid "Defaults to @samp{\"remroot\"}." msgstr "Die Vorgabe ist @samp{\"remroot\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19752 +#: guix-git/doc/guix.texi:20114 #, no-wrap msgid "{@code{files-configuration} parameter} file-name request-root" msgstr "{@code{files-configuration}-Parameter} Dateiname request-root" #. type: deftypevr -#: guix-git/doc/guix.texi:19755 +#: guix-git/doc/guix.texi:20117 msgid "Specifies the directory that contains print jobs and other HTTP request data." msgstr "Gibt das Verzeichnis an, in dem Druckaufträge und andere Daten zu HTTP-Anfragen abgelegt werden." #. type: deftypevr -#: guix-git/doc/guix.texi:19757 +#: guix-git/doc/guix.texi:20119 msgid "Defaults to @samp{\"/var/spool/cups\"}." msgstr "Die Vorgabe ist @samp{\"/var/spool/cups\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19759 +#: guix-git/doc/guix.texi:20121 #, no-wrap msgid "{@code{files-configuration} parameter} sandboxing sandboxing" msgstr "{@code{files-configuration}-Parameter} Isolierung sandboxing" #. type: deftypevr -#: guix-git/doc/guix.texi:19764 +#: guix-git/doc/guix.texi:20126 msgid "Specifies the level of security sandboxing that is applied to print filters, backends, and other child processes of the scheduler; either @code{relaxed} or @code{strict}. This directive is currently only used/supported on macOS." msgstr "Gibt die Stufe der Sicherheitsisolierung („Sandboxing“) an, die auf Druckfilter, Hintergrundsysteme (Backends) und andere Kindprozesse des Planungsprogramms angewandt wird; entweder @code{relaxed} („locker“) oder @code{strict} („strikt“). Diese Direktive wird zurzeit nur auf macOS benutzt/unterstützt." #. type: deftypevr -#: guix-git/doc/guix.texi:19766 +#: guix-git/doc/guix.texi:20128 msgid "Defaults to @samp{strict}." msgstr "Die Vorgabe ist @samp{strict}." #. type: deftypevr -#: guix-git/doc/guix.texi:19768 +#: guix-git/doc/guix.texi:20130 #, no-wrap msgid "{@code{files-configuration} parameter} file-name server-keychain" msgstr "{@code{files-configuration}-Parameter} Dateiname server-keychain" #. type: deftypevr -#: guix-git/doc/guix.texi:19773 +#: guix-git/doc/guix.texi:20135 msgid "Specifies the location of TLS certificates and private keys. CUPS will look for public and private keys in this directory: @file{.crt} files for PEM-encoded certificates and corresponding @file{.key} files for PEM-encoded private keys." msgstr "Gibt an, wo TLS-Zertifikate und private Schlüssel gespeichert sind. CUPS wird in diesem Verzeichnis öffentliche und private Schlüssel suchen: @file{.crt}-Dateien für PEM-kodierte Zertifikate und zugehörige @file{.key}-Dateien für PEM-kodierte private Schlüssel." #. type: deftypevr -#: guix-git/doc/guix.texi:19775 +#: guix-git/doc/guix.texi:20137 msgid "Defaults to @samp{\"/etc/cups/ssl\"}." msgstr "Die Vorgabe ist @samp{\"/etc/cups/ssl\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19777 +#: guix-git/doc/guix.texi:20139 #, no-wrap msgid "{@code{files-configuration} parameter} file-name server-root" msgstr "{@code{files-configuration}-Parameter} Dateiname server-root" #. type: deftypevr -#: guix-git/doc/guix.texi:19779 +#: guix-git/doc/guix.texi:20141 msgid "Specifies the directory containing the server configuration files." msgstr "Gibt das Verzeichnis an, das die Serverkonfigurationsdateien enthält." #. type: deftypevr -#: guix-git/doc/guix.texi:19781 +#: guix-git/doc/guix.texi:20143 msgid "Defaults to @samp{\"/etc/cups\"}." msgstr "Die Vorgabe ist @samp{\"/etc/cups\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19783 +#: guix-git/doc/guix.texi:20145 #, no-wrap msgid "{@code{files-configuration} parameter} boolean sync-on-close?" msgstr "{@code{files-configuration}-Parameter} Boolescher-Ausdruck sync-on-close?" #. type: deftypevr -#: guix-git/doc/guix.texi:19786 +#: guix-git/doc/guix.texi:20148 msgid "Specifies whether the scheduler calls fsync(2) after writing configuration or state files." msgstr "Gibt an, ob das Planungsprogramm fsync(2) aufrufen soll, nachdem es in Konfigurations- oder Zustandsdateien geschrieben hat." #. type: deftypevr -#: guix-git/doc/guix.texi:19790 +#: guix-git/doc/guix.texi:20152 #, no-wrap msgid "{@code{files-configuration} parameter} space-separated-string-list system-group" msgstr "{@code{files-configuration}-Parameter} Leerzeichengetrennte-Zeichenketten-Liste system-group" #. type: deftypevr -#: guix-git/doc/guix.texi:19792 +#: guix-git/doc/guix.texi:20154 msgid "Specifies the group(s) to use for @code{@@SYSTEM} group authentication." msgstr "Gibt die Benutzergruppe(n) an, die als die @code{@@SYSTEM}-Gruppen für die Authentisierung benutzt werden können." #. type: deftypevr -#: guix-git/doc/guix.texi:19794 +#: guix-git/doc/guix.texi:20156 #, no-wrap msgid "{@code{files-configuration} parameter} file-name temp-dir" msgstr "{@code{files-configuration}-Parameter} Dateiname temp-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:19796 +#: guix-git/doc/guix.texi:20158 msgid "Specifies the directory where temporary files are stored." msgstr "Gibt das Verzeichnis an, in das temporäre Dateien gespeichert werden." #. type: deftypevr -#: guix-git/doc/guix.texi:19798 +#: guix-git/doc/guix.texi:20160 msgid "Defaults to @samp{\"/var/spool/cups/tmp\"}." msgstr "Die Vorgabe ist @samp{\"/var/spool/cups/tmp\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19800 +#: guix-git/doc/guix.texi:20162 #, no-wrap msgid "{@code{files-configuration} parameter} string user" msgstr "{@code{files-configuration}-Parameter} Zeichenkette user" #. type: deftypevr -#: guix-git/doc/guix.texi:19803 +#: guix-git/doc/guix.texi:20165 msgid "Specifies the user name or ID that is used when running external programs." msgstr "Gibt den Benutzernamen oder -identifikator an, mit dessen Benutzerkonto externe Programme ausgeführt werden." #. type: deftypevr -#: guix-git/doc/guix.texi:19807 +#: guix-git/doc/guix.texi:20169 #, no-wrap msgid "{@code{files-configuration} parameter} string set-env" msgstr "{@code{files-configuration}-Parameter} Zeichenkette set-env" #. type: deftypevr -#: guix-git/doc/guix.texi:19809 +#: guix-git/doc/guix.texi:20171 msgid "Set the specified environment variable to be passed to child processes." msgstr "Legt die angegebene Umgebungsvariable auf einen Wert (englisch „Value“) fest, die an Kindprozesse übergeben wird." #. type: deftypevr -#: guix-git/doc/guix.texi:19811 +#: guix-git/doc/guix.texi:20173 msgid "Defaults to @samp{\"variable value\"}." msgstr "Die Vorgabe ist @samp{\"variable value\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19814 +#: guix-git/doc/guix.texi:20176 #, no-wrap msgid "{@code{cups-configuration} parameter} access-log-level access-log-level" msgstr "{@code{cups-configuration}-Parameter} Zugriffsprotokollstufe access-log-level" #. type: deftypevr -#: guix-git/doc/guix.texi:19821 +#: guix-git/doc/guix.texi:20183 msgid "Specifies the logging level for the AccessLog file. The @code{config} level logs when printers and classes are added, deleted, or modified and when configuration files are accessed or updated. The @code{actions} level logs when print jobs are submitted, held, released, modified, or canceled, and any of the conditions for @code{config}. The @code{all} level logs all requests." msgstr "Gibt an, mit welcher Detailstufe das Protokoll in der AccessLog-Datei geführt wird. Bei der Stufe @code{config} wird protokolliert, wenn Drucker und Klassen hinzugefügt, entfernt oder verändert werden, und wenn auf Konfigurationsdateien zugegriffen oder sie aktualisiert werden. Bei der Stufe @code{actions} wird protokolliert, wenn Druckaufträge eingereicht, gehalten, freigegeben, geändert oder abgebrochen werden sowie alles, was bei @code{config} Protokollierung auslöst. Bei der Stufe @code{all} wird jede Anfrage protokolliert." #. type: deftypevr -#: guix-git/doc/guix.texi:19823 +#: guix-git/doc/guix.texi:20185 msgid "Defaults to @samp{actions}." msgstr "Die Vorgabe ist @samp{actions}." #. type: deftypevr -#: guix-git/doc/guix.texi:19825 +#: guix-git/doc/guix.texi:20187 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean auto-purge-jobs?" msgstr "{@code{cups-configuration}-Parameter} Boolescher-Ausdruck auto-purge-jobs?" #. type: deftypevr -#: guix-git/doc/guix.texi:19828 +#: guix-git/doc/guix.texi:20190 msgid "Specifies whether to purge job history data automatically when it is no longer required for quotas." msgstr "Gibt an, ob Daten über den Auftragsverlauf automatisch gelöscht werden sollen, wenn Sie nicht mehr zur Berechnung von Druckkontingenten benötigt werden." #. type: deftypevr -#: guix-git/doc/guix.texi:19832 +#: guix-git/doc/guix.texi:20194 #, no-wrap msgid "{@code{cups-configuration} parameter} comma-separated-string-list browse-dns-sd-sub-types" msgstr "{@code{cups-configuration}-Parameter} Kommagetrennte-Zeichenketten-Liste browse-dns-sd-sub-types" #. type: deftypevr -#: guix-git/doc/guix.texi:19836 +#: guix-git/doc/guix.texi:20198 msgid "Specifies a list of DNS-SD sub-types to advertise for each shared printer. For example, @samp{\"_cups\" \"_print\"} will tell network clients that both CUPS sharing and IPP Everywhere are supported." msgstr "Gibt eine Liste von DNS-SD-Subtypen an, die anderen für jeden geteilten Drucker mitgeteilt werden sollen. Zum Beispiel wird bei @samp{\"_cups\" \"_print\"} den Netzwerk-Clients mitgeteilt, dass sowohl Teilen zwischen CUPS als auch IPP Everywhere unterstützt werden." #. type: deftypevr -#: guix-git/doc/guix.texi:19838 +#: guix-git/doc/guix.texi:20200 msgid "Defaults to @samp{\"_cups\"}." msgstr "Die Vorgabe ist @samp{\"_cups\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19840 +#: guix-git/doc/guix.texi:20202 #, no-wrap msgid "{@code{cups-configuration} parameter} browse-local-protocols browse-local-protocols" msgstr "{@code{cups-configuration}-Parameter} Protokolle-zur-lokalen-Suche browse-local-protocols" #. type: deftypevr -#: guix-git/doc/guix.texi:19842 +#: guix-git/doc/guix.texi:20204 msgid "Specifies which protocols to use for local printer sharing." msgstr "Gibt an, welche Protokolle zum lokalen Teilen („Freigeben“) von Druckern benutzt werden sollen." #. type: deftypevr -#: guix-git/doc/guix.texi:19844 +#: guix-git/doc/guix.texi:20206 msgid "Defaults to @samp{dnssd}." msgstr "Die Vorgabe ist @samp{dnssd}." #. type: deftypevr -#: guix-git/doc/guix.texi:19846 +#: guix-git/doc/guix.texi:20208 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean browse-web-if?" msgstr "{@code{cups-configuration}-Parameter} Boolescher-Ausdruck browse-web-if?" #. type: deftypevr -#: guix-git/doc/guix.texi:19848 +#: guix-git/doc/guix.texi:20210 msgid "Specifies whether the CUPS web interface is advertised." msgstr "Gibt an, ob die Weboberfläche von CUPS anderen mitgeteilt wird." #. type: deftypevr -#: guix-git/doc/guix.texi:19852 +#: guix-git/doc/guix.texi:20214 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean browsing?" msgstr "{@code{cups-configuration}-Parameter} Boolescher-Ausdruck browsing?" #. type: deftypevr -#: guix-git/doc/guix.texi:19854 +#: guix-git/doc/guix.texi:20216 msgid "Specifies whether shared printers are advertised." msgstr "Gibt an, ob geteilte Drucker bei Druckersuchen mitgeteilt werden." #. type: deftypevr -#: guix-git/doc/guix.texi:19858 +#: guix-git/doc/guix.texi:20220 #, no-wrap msgid "{@code{cups-configuration} parameter} string classification" msgstr "{@code{cups-configuration}-Parameter} Zeichenkette classification" #. type: deftypevr -#: guix-git/doc/guix.texi:19863 +#: guix-git/doc/guix.texi:20225 msgid "Specifies the security classification of the server. Any valid banner name can be used, including @samp{\"classified\"}, @samp{\"confidential\"}, @samp{\"secret\"}, @samp{\"topsecret\"}, and @samp{\"unclassified\"}, or the banner can be omitted to disable secure printing functions." msgstr "Gibt die Geheimhaltungsstufe des Servers an. Jeder gültige Deckblattname („Banner“-Name) kann benutzt werden, einschließlich @samp{\"classified\"}, @samp{\"confidential\"}, @samp{\"secret\"}, @samp{\"topsecret\"} und @samp{\"unclassified\"}. Wird kein Deckblatt angegeben, werden Funktionen für sicheres Drucken abgeschaltet." #. type: deftypevr -#: guix-git/doc/guix.texi:19865 guix-git/doc/guix.texi:20196 -#: guix-git/doc/guix.texi:22180 guix-git/doc/guix.texi:22192 -#: guix-git/doc/guix.texi:22220 guix-git/doc/guix.texi:22977 -#: guix-git/doc/guix.texi:22991 guix-git/doc/guix.texi:22998 -#: guix-git/doc/guix.texi:23005 guix-git/doc/guix.texi:23035 -#: guix-git/doc/guix.texi:23133 guix-git/doc/guix.texi:25252 -#: guix-git/doc/guix.texi:25278 guix-git/doc/guix.texi:25314 -#: guix-git/doc/guix.texi:25360 guix-git/doc/guix.texi:25379 -#: guix-git/doc/guix.texi:25418 guix-git/doc/guix.texi:25477 -#: guix-git/doc/guix.texi:25487 guix-git/doc/guix.texi:30085 -#: guix-git/doc/guix.texi:30093 guix-git/doc/guix.texi:30101 -#: guix-git/doc/guix.texi:30109 guix-git/doc/guix.texi:30388 -#: guix-git/doc/guix.texi:31743 guix-git/doc/guix.texi:31751 -#: guix-git/doc/guix.texi:31759 guix-git/doc/guix.texi:31867 -#: guix-git/doc/guix.texi:31892 guix-git/doc/guix.texi:32023 -#: guix-git/doc/guix.texi:32031 guix-git/doc/guix.texi:32039 -#: guix-git/doc/guix.texi:32047 guix-git/doc/guix.texi:32055 -#: guix-git/doc/guix.texi:32063 guix-git/doc/guix.texi:32086 -#: guix-git/doc/guix.texi:32094 guix-git/doc/guix.texi:32146 -#: guix-git/doc/guix.texi:32162 guix-git/doc/guix.texi:32170 -#: guix-git/doc/guix.texi:32209 guix-git/doc/guix.texi:32232 -#: guix-git/doc/guix.texi:32254 guix-git/doc/guix.texi:32261 -#: guix-git/doc/guix.texi:32296 guix-git/doc/guix.texi:32304 -#: guix-git/doc/guix.texi:32328 guix-git/doc/guix.texi:32360 -#: guix-git/doc/guix.texi:32389 guix-git/doc/guix.texi:32396 -#: guix-git/doc/guix.texi:32403 guix-git/doc/guix.texi:32411 -#: guix-git/doc/guix.texi:32425 guix-git/doc/guix.texi:32434 -#: guix-git/doc/guix.texi:32444 guix-git/doc/guix.texi:32451 -#: guix-git/doc/guix.texi:32458 guix-git/doc/guix.texi:32465 -#: guix-git/doc/guix.texi:32536 guix-git/doc/guix.texi:32543 -#: guix-git/doc/guix.texi:32550 guix-git/doc/guix.texi:32559 -#: guix-git/doc/guix.texi:32575 guix-git/doc/guix.texi:32582 -#: guix-git/doc/guix.texi:32589 guix-git/doc/guix.texi:32596 -#: guix-git/doc/guix.texi:32604 guix-git/doc/guix.texi:32612 +#: guix-git/doc/guix.texi:20227 guix-git/doc/guix.texi:20558 +#: guix-git/doc/guix.texi:22542 guix-git/doc/guix.texi:22554 +#: guix-git/doc/guix.texi:22582 guix-git/doc/guix.texi:23339 +#: guix-git/doc/guix.texi:23353 guix-git/doc/guix.texi:23360 +#: guix-git/doc/guix.texi:23367 guix-git/doc/guix.texi:23397 +#: guix-git/doc/guix.texi:23495 guix-git/doc/guix.texi:25614 +#: guix-git/doc/guix.texi:25640 guix-git/doc/guix.texi:25676 +#: guix-git/doc/guix.texi:25722 guix-git/doc/guix.texi:25741 +#: guix-git/doc/guix.texi:25780 guix-git/doc/guix.texi:30450 +#: guix-git/doc/guix.texi:30458 guix-git/doc/guix.texi:30466 +#: guix-git/doc/guix.texi:30474 guix-git/doc/guix.texi:30753 +#: guix-git/doc/guix.texi:32108 guix-git/doc/guix.texi:32116 +#: guix-git/doc/guix.texi:32124 guix-git/doc/guix.texi:32232 +#: guix-git/doc/guix.texi:32257 guix-git/doc/guix.texi:32388 +#: guix-git/doc/guix.texi:32396 guix-git/doc/guix.texi:32404 +#: guix-git/doc/guix.texi:32412 guix-git/doc/guix.texi:32420 +#: guix-git/doc/guix.texi:32428 guix-git/doc/guix.texi:32451 +#: guix-git/doc/guix.texi:32459 guix-git/doc/guix.texi:32511 +#: guix-git/doc/guix.texi:32527 guix-git/doc/guix.texi:32535 +#: guix-git/doc/guix.texi:32574 guix-git/doc/guix.texi:32597 +#: guix-git/doc/guix.texi:32619 guix-git/doc/guix.texi:32626 +#: guix-git/doc/guix.texi:32661 guix-git/doc/guix.texi:32669 +#: guix-git/doc/guix.texi:32693 guix-git/doc/guix.texi:32725 +#: guix-git/doc/guix.texi:32754 guix-git/doc/guix.texi:32761 +#: guix-git/doc/guix.texi:32768 guix-git/doc/guix.texi:32776 +#: guix-git/doc/guix.texi:32790 guix-git/doc/guix.texi:32799 +#: guix-git/doc/guix.texi:32809 guix-git/doc/guix.texi:32816 +#: guix-git/doc/guix.texi:32823 guix-git/doc/guix.texi:32830 +#: guix-git/doc/guix.texi:32901 guix-git/doc/guix.texi:32908 +#: guix-git/doc/guix.texi:32915 guix-git/doc/guix.texi:32924 +#: guix-git/doc/guix.texi:32940 guix-git/doc/guix.texi:32947 +#: guix-git/doc/guix.texi:32954 guix-git/doc/guix.texi:32961 +#: guix-git/doc/guix.texi:32969 guix-git/doc/guix.texi:32977 msgid "Defaults to @samp{\"\"}." msgstr "Die Vorgabe ist @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19867 +#: guix-git/doc/guix.texi:20229 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean classify-override?" msgstr "{@code{cups-configuration}-Parameter} Boolescher-Ausdruck classify-override?" #. type: deftypevr -#: guix-git/doc/guix.texi:19870 +#: guix-git/doc/guix.texi:20232 msgid "Specifies whether users may override the classification (cover page) of individual print jobs using the @code{job-sheets} option." msgstr "Gibt an, ob Nutzer bei einzelnen Druckaufträgen eine andere als die voreingestellte Geheimhaltungsstufe (für das Deckblatt) vorgeben können, indem sie die Option @code{job-sheets} einstellen." #. type: deftypevr -#: guix-git/doc/guix.texi:19874 +#: guix-git/doc/guix.texi:20236 #, no-wrap msgid "{@code{cups-configuration} parameter} default-auth-type default-auth-type" msgstr "{@code{cups-configuration}-Parameter} Voreingestelle-Authentifizierungsart default-auth-type" #. type: deftypevr -#: guix-git/doc/guix.texi:19876 +#: guix-git/doc/guix.texi:20238 msgid "Specifies the default type of authentication to use." msgstr "Gibt an, wie man nach Voreinstellung authentifiziert wird." #. type: deftypevr -#: guix-git/doc/guix.texi:19878 +#: guix-git/doc/guix.texi:20240 msgid "Defaults to @samp{Basic}." msgstr "Die Vorgabe ist @samp{Basic}." #. type: deftypevr -#: guix-git/doc/guix.texi:19880 +#: guix-git/doc/guix.texi:20242 #, no-wrap msgid "{@code{cups-configuration} parameter} default-encryption default-encryption" msgstr "{@code{cups-configuration}-Parameter} Voreingestellte-Verschlüsselung default-encryption" #. type: deftypevr -#: guix-git/doc/guix.texi:19882 +#: guix-git/doc/guix.texi:20244 msgid "Specifies whether encryption will be used for authenticated requests." msgstr "Gibt an, ob für authentifizierte Anfragen Verschlüsselung benutzt wird." #. type: deftypevr -#: guix-git/doc/guix.texi:19884 +#: guix-git/doc/guix.texi:20246 msgid "Defaults to @samp{Required}." msgstr "Die Vorgabe ist @samp{Required}." #. type: deftypevr -#: guix-git/doc/guix.texi:19886 +#: guix-git/doc/guix.texi:20248 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-language" msgstr "{@code{cups-configuration}-Parameter} Zeichenkette default-language" #. type: deftypevr -#: guix-git/doc/guix.texi:19888 +#: guix-git/doc/guix.texi:20250 msgid "Specifies the default language to use for text and web content." msgstr "Gibt an, welche Sprache für Text und Weboberfläche voreingestellt benutzt werden soll." #. type: deftypevr -#: guix-git/doc/guix.texi:19890 +#: guix-git/doc/guix.texi:20252 msgid "Defaults to @samp{\"en\"}." msgstr "Die Vorgabe ist @samp{\"en\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19892 +#: guix-git/doc/guix.texi:20254 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-paper-size" msgstr "{@code{cups-configuration}-Parameter} Zeichenkette default-paper-size" #. type: deftypevr -#: guix-git/doc/guix.texi:19897 +#: guix-git/doc/guix.texi:20259 msgid "Specifies the default paper size for new print queues. @samp{\"Auto\"} uses a locale-specific default, while @samp{\"None\"} specifies there is no default paper size. Specific size names are typically @samp{\"Letter\"} or @samp{\"A4\"}." msgstr "Gibt das voreingestellte Papierformat für neue Druckwarteschlangen an. Bei @samp{\"Auto\"} wird eine der Locale entsprechende Voreinstellung gewählt, während bei @samp{\"None\"} kein Papierformat voreingestellt ist. Verfügbare Formatbezeichnungen sind typischerweise @samp{\"Letter\"} oder @samp{\"A4\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19899 +#: guix-git/doc/guix.texi:20261 msgid "Defaults to @samp{\"Auto\"}." msgstr "Die Vorgabe ist @samp{\"Auto\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19901 +#: guix-git/doc/guix.texi:20263 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-policy" msgstr "{@code{cups-configuration}-Parameter} Zeichenkette default-policy" #. type: deftypevr -#: guix-git/doc/guix.texi:19903 +#: guix-git/doc/guix.texi:20265 msgid "Specifies the default access policy to use." msgstr "Gibt die voreingestellte Zugriffsrichtlinie an, die benutzt werden soll." #. type: deftypevr -#: guix-git/doc/guix.texi:19905 +#: guix-git/doc/guix.texi:20267 msgid "Defaults to @samp{\"default\"}." msgstr "Die Vorgabe ist @samp{\"default\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19907 +#: guix-git/doc/guix.texi:20269 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean default-shared?" msgstr "{@code{cups-configuration}-Parameter} Boolescher-Ausdruck default-shared?" #. type: deftypevr -#: guix-git/doc/guix.texi:19909 +#: guix-git/doc/guix.texi:20271 msgid "Specifies whether local printers are shared by default." msgstr "Gibt an, ob lokale Drucker nach Voreinstellung geteilt werden sollen." #. type: deftypevr -#: guix-git/doc/guix.texi:19911 guix-git/doc/guix.texi:19991 -#: guix-git/doc/guix.texi:20281 guix-git/doc/guix.texi:23067 -#: guix-git/doc/guix.texi:23118 guix-git/doc/guix.texi:23125 -#: guix-git/doc/guix.texi:24407 guix-git/doc/guix.texi:24595 -#: guix-git/doc/guix.texi:24712 guix-git/doc/guix.texi:24748 -#: guix-git/doc/guix.texi:24799 guix-git/doc/guix.texi:24818 -#: guix-git/doc/guix.texi:24828 guix-git/doc/guix.texi:24838 -#: guix-git/doc/guix.texi:24897 guix-git/doc/guix.texi:24919 -#: guix-git/doc/guix.texi:24944 guix-git/doc/guix.texi:24970 -#: guix-git/doc/guix.texi:24988 guix-git/doc/guix.texi:28180 -#: guix-git/doc/guix.texi:28208 guix-git/doc/guix.texi:28344 -#: guix-git/doc/guix.texi:28351 guix-git/doc/guix.texi:28359 -#: guix-git/doc/guix.texi:28396 guix-git/doc/guix.texi:28410 -#: guix-git/doc/guix.texi:28499 guix-git/doc/guix.texi:28506 -#: guix-git/doc/guix.texi:28514 guix-git/doc/guix.texi:29293 -#: guix-git/doc/guix.texi:29433 guix-git/doc/guix.texi:29619 -#: guix-git/doc/guix.texi:29626 guix-git/doc/guix.texi:29648 -#: guix-git/doc/guix.texi:29687 guix-git/doc/guix.texi:29707 -#: guix-git/doc/guix.texi:29721 guix-git/doc/guix.texi:29934 -#: guix-git/doc/guix.texi:31845 guix-git/doc/guix.texi:31933 -#: guix-git/doc/guix.texi:31949 guix-git/doc/guix.texi:31999 +#: guix-git/doc/guix.texi:20273 guix-git/doc/guix.texi:20353 +#: guix-git/doc/guix.texi:20643 guix-git/doc/guix.texi:23429 +#: guix-git/doc/guix.texi:23480 guix-git/doc/guix.texi:23487 +#: guix-git/doc/guix.texi:24769 guix-git/doc/guix.texi:24957 +#: guix-git/doc/guix.texi:25074 guix-git/doc/guix.texi:25110 +#: guix-git/doc/guix.texi:25161 guix-git/doc/guix.texi:25180 +#: guix-git/doc/guix.texi:25190 guix-git/doc/guix.texi:25200 +#: guix-git/doc/guix.texi:25259 guix-git/doc/guix.texi:25281 +#: guix-git/doc/guix.texi:25306 guix-git/doc/guix.texi:25332 +#: guix-git/doc/guix.texi:25350 guix-git/doc/guix.texi:28517 +#: guix-git/doc/guix.texi:28545 guix-git/doc/guix.texi:28681 +#: guix-git/doc/guix.texi:28688 guix-git/doc/guix.texi:28696 +#: guix-git/doc/guix.texi:28733 guix-git/doc/guix.texi:28747 +#: guix-git/doc/guix.texi:28836 guix-git/doc/guix.texi:28843 +#: guix-git/doc/guix.texi:28851 guix-git/doc/guix.texi:29630 +#: guix-git/doc/guix.texi:29770 guix-git/doc/guix.texi:29984 +#: guix-git/doc/guix.texi:29991 guix-git/doc/guix.texi:30013 +#: guix-git/doc/guix.texi:30052 guix-git/doc/guix.texi:30072 +#: guix-git/doc/guix.texi:30086 guix-git/doc/guix.texi:30299 +#: guix-git/doc/guix.texi:32210 guix-git/doc/guix.texi:32298 +#: guix-git/doc/guix.texi:32314 guix-git/doc/guix.texi:32364 msgid "Defaults to @samp{#t}." msgstr "Die Vorgabe ist @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:19913 +#: guix-git/doc/guix.texi:20275 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer dirty-clean-interval" msgstr "{@code{cups-configuration}-Parameter} Nichtnegative-ganze-Zahl dirty-clean-interval" #. type: deftypevr -#: guix-git/doc/guix.texi:19917 +#: guix-git/doc/guix.texi:20279 msgid "Specifies the delay for updating of configuration and state files, in seconds. A value of 0 causes the update to happen as soon as possible, typically within a few milliseconds." msgstr "Gibt an, mit welcher Verzögerung Konfigurations- und Zustandsdateien aktualisiert werden sollen. Der Wert 0 lässt die Aktualisierung so bald wie möglich stattfinden, in der Regel nach ein paar Millisekunden." #. type: deftypevr -#: guix-git/doc/guix.texi:19919 guix-git/doc/guix.texi:19967 -#: guix-git/doc/guix.texi:19976 guix-git/doc/guix.texi:20288 -#: guix-git/doc/guix.texi:24757 guix-git/doc/guix.texi:24790 +#: guix-git/doc/guix.texi:20281 guix-git/doc/guix.texi:20329 +#: guix-git/doc/guix.texi:20338 guix-git/doc/guix.texi:20650 +#: guix-git/doc/guix.texi:25119 guix-git/doc/guix.texi:25152 msgid "Defaults to @samp{30}." msgstr "Die Vorgabe ist @samp{30}." #. type: deftypevr -#: guix-git/doc/guix.texi:19921 +#: guix-git/doc/guix.texi:20283 #, no-wrap msgid "{@code{cups-configuration} parameter} error-policy error-policy" msgstr "{@code{cups-configuration}-Parameter} Fehlerrichtlinie error-policy" #. type: deftypevr -#: guix-git/doc/guix.texi:19927 +#: guix-git/doc/guix.texi:20289 msgid "Specifies what to do when an error occurs. Possible values are @code{abort-job}, which will discard the failed print job; @code{retry-job}, which will retry the job at a later time; @code{retry-current-job}, which retries the failed job immediately; and @code{stop-printer}, which stops the printer." msgstr "Gibt an, wie beim Auftreten eines Fehlers verfahren werden soll. Mögliche Werte sind @code{abort-job}, wodurch der fehlgeschlagene Druckauftrag verworfen wird, @code{retry-job}, wodurch der Druckauftrag später erneut versucht wird, @code{retry-current-job}, wodurch der fehlgeschlagene Druckauftrag sofort erneut versucht wird, und @code{stop-printer}, wodurch der Drucker angehalten wird." #. type: deftypevr -#: guix-git/doc/guix.texi:19929 +#: guix-git/doc/guix.texi:20291 msgid "Defaults to @samp{stop-printer}." msgstr "Die Vorgabe ist @samp{stop-printer}." #. type: deftypevr -#: guix-git/doc/guix.texi:19931 +#: guix-git/doc/guix.texi:20293 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer filter-limit" msgstr "{@code{cups-configuration}-Parameter} Nichtnegative-ganze-Zahl filter-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:19939 +#: guix-git/doc/guix.texi:20301 msgid "Specifies the maximum cost of filters that are run concurrently, which can be used to minimize disk, memory, and CPU resource problems. A limit of 0 disables filter limiting. An average print to a non-PostScript printer needs a filter limit of about 200. A PostScript printer needs about half that (100). Setting the limit below these thresholds will effectively limit the scheduler to printing a single job at any time." msgstr "Gibt die Maximalkosten von Filtern an, die nebenläufig ausgeführt werden, wodurch Probleme durch Platten-, Arbeitsspeicher- und Prozessorressourcennutzung minimiert werden können. Eine Beschränkung von 0 deaktiviert die Filterbeschränkung. Ein durchschnittlicher Druck mit einem Nicht-PostScript-Drucker erfordert eine Filterbeschränkung von mindestens ungefähr 200. Ein PostScript-Drucker erfordert eine halb so hohe Filterbeschränkung (100). Wird die Beschränkung unterhalb dieser Schwellwerte angesetzt, kann das Planungsprogramm effektiv nur noch einen einzelnen Druckauftrag gleichzeitig abarbeiten." #. type: deftypevr -#: guix-git/doc/guix.texi:19941 guix-git/doc/guix.texi:19949 -#: guix-git/doc/guix.texi:19998 guix-git/doc/guix.texi:20114 -#: guix-git/doc/guix.texi:20128 guix-git/doc/guix.texi:20135 -#: guix-git/doc/guix.texi:21622 guix-git/doc/guix.texi:21638 -#: guix-git/doc/guix.texi:22295 guix-git/doc/guix.texi:22307 -#: guix-git/doc/guix.texi:23086 guix-git/doc/guix.texi:23095 -#: guix-git/doc/guix.texi:23103 guix-git/doc/guix.texi:23111 -#: guix-git/doc/guix.texi:29309 guix-git/doc/guix.texi:29634 -#: guix-git/doc/guix.texi:31838 guix-git/doc/guix.texi:32138 -#: guix-git/doc/guix.texi:32312 +#: guix-git/doc/guix.texi:20303 guix-git/doc/guix.texi:20311 +#: guix-git/doc/guix.texi:20360 guix-git/doc/guix.texi:20476 +#: guix-git/doc/guix.texi:20490 guix-git/doc/guix.texi:20497 +#: guix-git/doc/guix.texi:21984 guix-git/doc/guix.texi:22000 +#: guix-git/doc/guix.texi:22657 guix-git/doc/guix.texi:22669 +#: guix-git/doc/guix.texi:23448 guix-git/doc/guix.texi:23457 +#: guix-git/doc/guix.texi:23465 guix-git/doc/guix.texi:23473 +#: guix-git/doc/guix.texi:29646 guix-git/doc/guix.texi:29999 +#: guix-git/doc/guix.texi:32203 guix-git/doc/guix.texi:32503 +#: guix-git/doc/guix.texi:32677 msgid "Defaults to @samp{0}." msgstr "Die Vorgabe ist @samp{0}." #. type: deftypevr -#: guix-git/doc/guix.texi:19943 +#: guix-git/doc/guix.texi:20305 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer filter-nice" msgstr "{@code{cups-configuration}-Parameter} Nichtnegative-ganze-Zahl filter-nice" #. type: deftypevr -#: guix-git/doc/guix.texi:19947 +#: guix-git/doc/guix.texi:20309 msgid "Specifies the scheduling priority of filters that are run to print a job. The nice value ranges from 0, the highest priority, to 19, the lowest priority." msgstr "Gibt die Planungspriorität von Filtern an, die zum Drucken eines Druckauftrags ausgeführt werden. Der nice-Wert kann zwischen 0, der höchsten Priorität, und 19, der niedrigsten Priorität, liegen." #. type: deftypevr -#: guix-git/doc/guix.texi:19951 +#: guix-git/doc/guix.texi:20313 #, no-wrap msgid "{@code{cups-configuration} parameter} host-name-lookups host-name-lookups" msgstr "{@code{cups-configuration}-Parameter} Rechnernamensauflösungen host-name-lookups" #. type: deftypevr -#: guix-git/doc/guix.texi:19958 +#: guix-git/doc/guix.texi:20320 msgid "Specifies whether to do reverse lookups on connecting clients. The @code{double} setting causes @code{cupsd} to verify that the hostname resolved from the address matches one of the addresses returned for that hostname. Double lookups also prevent clients with unregistered addresses from connecting to your server. Only set this option to @code{#t} or @code{double} if absolutely required." msgstr "Gibt an, ob inverse Namensauflösungen („Reverse Lookups“) bei sich verbindenden Clients durchgeführt werden sollen. Die Einstellung @code{double} lässt @code{cupsd} verifizieren, dass der anhand der Adresse aufgelöste Rechnername zu einer der für den Rechnernamen zurückgelieferten Adressen passt. „Double“-Namensauflösungen verhindern auch, dass sich Clients mit unregistrierten Adressen mit Ihrem Server verbinden können. Setzen Sie diese Option nur dann auf @code{#t} oder @code{double}, wenn es unbedingt notwendig ist." #. type: deftypevr -#: guix-git/doc/guix.texi:19962 +#: guix-git/doc/guix.texi:20324 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-kill-delay" msgstr "{@code{cups-configuration}-Parameter} Nichtnegative-ganze-Zahl job-kill-delay" #. type: deftypevr -#: guix-git/doc/guix.texi:19965 +#: guix-git/doc/guix.texi:20327 msgid "Specifies the number of seconds to wait before killing the filters and backend associated with a canceled or held job." msgstr "Gibt die Anzahl an Sekunden an, wie lange vor dem Abwürgen der mit einem abgebrochenen oder gehaltenen Druckauftrag assoziierten Filter- und Hintergrundprozesse (dem „Backend“) gewartet wird." #. type: deftypevr -#: guix-git/doc/guix.texi:19969 +#: guix-git/doc/guix.texi:20331 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-retry-interval" msgstr "{@code{cups-configuration}-Parameter} Nichtnegative-ganze-Zahl job-retry-interval" #. type: deftypevr -#: guix-git/doc/guix.texi:19974 +#: guix-git/doc/guix.texi:20336 msgid "Specifies the interval between retries of jobs in seconds. This is typically used for fax queues but can also be used with normal print queues whose error policy is @code{retry-job} or @code{retry-current-job}." msgstr "Gibt das Zeitintervall zwischen erneuten Versuchen von Druckaufträgen in Sekunden an. Dies wird in der Regel für Fax-Warteschlangen benutzt, kann aber auch für normale Druckwarteschlangen benutzt werden, deren Fehlerrichtlinie @code{retry-job} oder @code{retry-current-job} ist." #. type: deftypevr -#: guix-git/doc/guix.texi:19978 +#: guix-git/doc/guix.texi:20340 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-retry-limit" msgstr "{@code{cups-configuration}-Parameter} Nichtnegative-ganze-Zahl job-retry-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:19983 +#: guix-git/doc/guix.texi:20345 msgid "Specifies the number of retries that are done for jobs. This is typically used for fax queues but can also be used with normal print queues whose error policy is @code{retry-job} or @code{retry-current-job}." msgstr "Gibt die Anzahl an, wie oft ein Druckauftrag erneut versucht wird. Dies wird in der Regel für Fax-Warteschlangen benutzt, kann aber auch für normale Druckwarteschlangen benutzt werden, deren Fehlerrichtlinie @code{retry-job} oder @code{retry-current-job} ist." #. type: deftypevr -#: guix-git/doc/guix.texi:19985 guix-git/doc/guix.texi:24721 -#: guix-git/doc/guix.texi:30186 guix-git/doc/guix.texi:30206 -#: guix-git/doc/guix.texi:30222 guix-git/doc/guix.texi:30236 -#: guix-git/doc/guix.texi:30243 guix-git/doc/guix.texi:30250 -#: guix-git/doc/guix.texi:30257 guix-git/doc/guix.texi:30417 -#: guix-git/doc/guix.texi:30433 guix-git/doc/guix.texi:30440 -#: guix-git/doc/guix.texi:30447 guix-git/doc/guix.texi:30458 -#: guix-git/doc/guix.texi:31790 guix-git/doc/guix.texi:31798 -#: guix-git/doc/guix.texi:31806 guix-git/doc/guix.texi:31830 +#: guix-git/doc/guix.texi:20347 guix-git/doc/guix.texi:25083 +#: guix-git/doc/guix.texi:30551 guix-git/doc/guix.texi:30571 +#: guix-git/doc/guix.texi:30587 guix-git/doc/guix.texi:30601 +#: guix-git/doc/guix.texi:30608 guix-git/doc/guix.texi:30615 +#: guix-git/doc/guix.texi:30622 guix-git/doc/guix.texi:30782 +#: guix-git/doc/guix.texi:30798 guix-git/doc/guix.texi:30805 +#: guix-git/doc/guix.texi:30812 guix-git/doc/guix.texi:30823 +#: guix-git/doc/guix.texi:32155 guix-git/doc/guix.texi:32163 +#: guix-git/doc/guix.texi:32171 guix-git/doc/guix.texi:32195 msgid "Defaults to @samp{5}." msgstr "Die Vorgabe ist @samp{5}." #. type: deftypevr -#: guix-git/doc/guix.texi:19987 +#: guix-git/doc/guix.texi:20349 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean keep-alive?" msgstr "{@code{cups-configuration}-Parameter} Boolescher-Ausdruck keep-alive?" #. type: deftypevr -#: guix-git/doc/guix.texi:19989 +#: guix-git/doc/guix.texi:20351 msgid "Specifies whether to support HTTP keep-alive connections." msgstr "Gibt an, ob HTTP-„keep-alive“ für Verbindungen unterstützt wird." #. type: deftypevr -#: guix-git/doc/guix.texi:19993 +#: guix-git/doc/guix.texi:20355 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer limit-request-body" msgstr "{@code{cups-configuration}-Parameter} Nichtnegative-ganze-Zahl limit-request-body" #. type: deftypevr -#: guix-git/doc/guix.texi:19996 +#: guix-git/doc/guix.texi:20358 msgid "Specifies the maximum size of print files, IPP requests, and HTML form data. A limit of 0 disables the limit check." msgstr "Gibt die Maximalgröße von zu druckenden Dateien, IPP-Anfragen und HTML-Formulardaten an. Eine Beschränkung von 0 deaktiviert die Beschränkung." #. type: deftypevr -#: guix-git/doc/guix.texi:20000 +#: guix-git/doc/guix.texi:20362 #, no-wrap msgid "{@code{cups-configuration} parameter} multiline-string-list listen" msgstr "{@code{cups-configuration}-Parameter} Mehrzeilige-Zeichenketten-Liste listen" #. type: deftypevr -#: guix-git/doc/guix.texi:20007 +#: guix-git/doc/guix.texi:20369 msgid "Listens on the specified interfaces for connections. Valid values are of the form @var{address}:@var{port}, where @var{address} is either an IPv6 address enclosed in brackets, an IPv4 address, or @code{*} to indicate all addresses. Values can also be file names of local UNIX domain sockets. The Listen directive is similar to the Port directive but allows you to restrict access to specific interfaces or networks." msgstr "Lauscht auf den angegebenen Schnittstellen auf Verbindungen. Gültige Werte haben die Form @var{Adresse}:@var{Port}, wobei die @var{Adresse} entweder eine von eckigen Klammern umschlossene IPv6-Adresse, eine IPv4-Adresse oder @code{*} ist; letztere steht für alle Adressen. Werte können auch Dateinamen lokaler UNIX-Sockets sein. Die Listen-Direktive ähnelt der Port-Direktive, macht es aber möglich, den Zugriff für bestimmte Schnittstellen oder Netzwerke einzuschränken." #. type: deftypevr -#: guix-git/doc/guix.texi:20009 +#: guix-git/doc/guix.texi:20371 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer listen-back-log" msgstr "{@code{cups-configuration}-Parameter} Nichtnegative-ganze-Zahl listen-back-log" #. type: deftypevr -#: guix-git/doc/guix.texi:20016 +#: guix-git/doc/guix.texi:20378 msgid "Specifies the number of pending connections that will be allowed. This normally only affects very busy servers that have reached the MaxClients limit, but can also be triggered by large numbers of simultaneous connections. When the limit is reached, the operating system will refuse additional connections until the scheduler can accept the pending ones." msgstr "Gibt die Anzahl ausstehender Verbindungen an, die möglich sein soll. Normalerweise betrifft dies nur sehr ausgelastete Server, die die MaxClients-Beschränkung erreicht haben. Es kann aber auch eine Rolle spielen, wenn versucht wird, gleichzeitig sehr viele Verbindungen herzustellen. Wenn die Beschränkung erreicht wird, sperrt das Betriebssystem den Aufbau weiterer Verbindungen, bis das Druckplanungsprogramm die ausstehenden akzeptieren konnte." #. type: deftypevr -#: guix-git/doc/guix.texi:20018 +#: guix-git/doc/guix.texi:20380 msgid "Defaults to @samp{128}." msgstr "Die Vorgabe ist @samp{128}." #. type: deftypevr -#: guix-git/doc/guix.texi:20020 +#: guix-git/doc/guix.texi:20382 #, no-wrap msgid "{@code{cups-configuration} parameter} location-access-control-list location-access-controls" msgstr "{@code{cups-configuration}-Parameter} „location-access-controls“-Liste location-access-controls" #. type: deftypevr -#: guix-git/doc/guix.texi:20022 +#: guix-git/doc/guix.texi:20384 msgid "Specifies a set of additional access controls." msgstr "Gibt eine Liste zusätzlicher Zugriffssteuerungen („Access Controls“) an." #. type: deftypevr -#: guix-git/doc/guix.texi:20024 +#: guix-git/doc/guix.texi:20386 msgid "Available @code{location-access-controls} fields are:" msgstr "Verfügbare @code{location-access-controls}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:20025 +#: guix-git/doc/guix.texi:20387 #, no-wrap msgid "{@code{location-access-controls} parameter} file-name path" msgstr "{@code{location-access-controls}-Parameter} Dateiname path" #. type: deftypevr -#: guix-git/doc/guix.texi:20027 +#: guix-git/doc/guix.texi:20389 msgid "Specifies the URI path to which the access control applies." msgstr "Gibt den URI-Pfad an, für den die Zugriffssteuerung gilt." #. type: deftypevr -#: guix-git/doc/guix.texi:20029 +#: guix-git/doc/guix.texi:20391 #, no-wrap msgid "{@code{location-access-controls} parameter} access-control-list access-controls" msgstr "{@code{location-access-controls}-Parameter} Zugriffssteuerungs-Liste access-controls" #. type: deftypevr -#: guix-git/doc/guix.texi:20032 +#: guix-git/doc/guix.texi:20394 msgid "Access controls for all access to this path, in the same format as the @code{access-controls} of @code{operation-access-control}." msgstr "Zugriffssteuerungen für jeden Zugriff auf diesen Pfad, im selben Format wie die @code{access-controls} bei @code{operation-access-control}." #. type: deftypevr -#: guix-git/doc/guix.texi:20034 guix-git/doc/guix.texi:20040 -#: guix-git/doc/guix.texi:20054 guix-git/doc/guix.texi:20061 -#: guix-git/doc/guix.texi:20203 guix-git/doc/guix.texi:20262 -#: guix-git/doc/guix.texi:20340 guix-git/doc/guix.texi:20354 -#: guix-git/doc/guix.texi:21502 guix-git/doc/guix.texi:21511 -#: guix-git/doc/guix.texi:22781 guix-git/doc/guix.texi:22984 -#: guix-git/doc/guix.texi:23012 guix-git/doc/guix.texi:23042 -#: guix-git/doc/guix.texi:23157 guix-git/doc/guix.texi:23170 -#: guix-git/doc/guix.texi:23177 guix-git/doc/guix.texi:24927 -#: guix-git/doc/guix.texi:25322 guix-git/doc/guix.texi:25426 -#: guix-git/doc/guix.texi:25853 guix-git/doc/guix.texi:25861 -#: guix-git/doc/guix.texi:26106 guix-git/doc/guix.texi:28239 -#: guix-git/doc/guix.texi:28417 guix-git/doc/guix.texi:28616 -#: guix-git/doc/guix.texi:30077 guix-git/doc/guix.texi:30137 -#: guix-git/doc/guix.texi:30145 guix-git/doc/guix.texi:31853 -#: guix-git/doc/guix.texi:31860 guix-git/doc/guix.texi:32202 -#: guix-git/doc/guix.texi:32280 guix-git/doc/guix.texi:32374 -#: guix-git/doc/guix.texi:32382 guix-git/doc/guix.texi:32418 -#: guix-git/doc/guix.texi:32568 guix-git/doc/guix.texi:32619 -#: guix-git/doc/guix.texi:32628 +#: guix-git/doc/guix.texi:20396 guix-git/doc/guix.texi:20402 +#: guix-git/doc/guix.texi:20416 guix-git/doc/guix.texi:20423 +#: guix-git/doc/guix.texi:20565 guix-git/doc/guix.texi:20624 +#: guix-git/doc/guix.texi:20702 guix-git/doc/guix.texi:20716 +#: guix-git/doc/guix.texi:21864 guix-git/doc/guix.texi:21873 +#: guix-git/doc/guix.texi:23143 guix-git/doc/guix.texi:23346 +#: guix-git/doc/guix.texi:23374 guix-git/doc/guix.texi:23404 +#: guix-git/doc/guix.texi:23519 guix-git/doc/guix.texi:23532 +#: guix-git/doc/guix.texi:23539 guix-git/doc/guix.texi:25289 +#: guix-git/doc/guix.texi:25684 guix-git/doc/guix.texi:25788 +#: guix-git/doc/guix.texi:26190 guix-git/doc/guix.texi:26198 +#: guix-git/doc/guix.texi:26443 guix-git/doc/guix.texi:28576 +#: guix-git/doc/guix.texi:28754 guix-git/doc/guix.texi:28953 +#: guix-git/doc/guix.texi:30442 guix-git/doc/guix.texi:30502 +#: guix-git/doc/guix.texi:30510 guix-git/doc/guix.texi:32218 +#: guix-git/doc/guix.texi:32225 guix-git/doc/guix.texi:32567 +#: guix-git/doc/guix.texi:32645 guix-git/doc/guix.texi:32739 +#: guix-git/doc/guix.texi:32747 guix-git/doc/guix.texi:32783 +#: guix-git/doc/guix.texi:32933 guix-git/doc/guix.texi:32984 +#: guix-git/doc/guix.texi:32993 msgid "Defaults to @samp{()}." msgstr "Die Vorgabe ist @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:20036 +#: guix-git/doc/guix.texi:20398 #, no-wrap msgid "{@code{location-access-controls} parameter} method-access-control-list method-access-controls" msgstr "{@code{location-access-controls}-Parameter} „method-access-controls“-Liste method-access-controls" #. type: deftypevr -#: guix-git/doc/guix.texi:20038 +#: guix-git/doc/guix.texi:20400 msgid "Access controls for method-specific access to this path." msgstr "Zugriffssteuerungen für methodenspezifische Zugriffe auf diesen Pfad." #. type: deftypevr -#: guix-git/doc/guix.texi:20042 +#: guix-git/doc/guix.texi:20404 msgid "Available @code{method-access-controls} fields are:" msgstr "Verfügbare @code{method-access-controls}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:20043 +#: guix-git/doc/guix.texi:20405 #, no-wrap msgid "{@code{method-access-controls} parameter} boolean reverse?" msgstr "{@code{method-access-controls}-Parameter} Boolescher-Ausdruck reverse?" #. type: deftypevr -#: guix-git/doc/guix.texi:20046 +#: guix-git/doc/guix.texi:20408 msgid "If @code{#t}, apply access controls to all methods except the listed methods. Otherwise apply to only the listed methods." msgstr "Falls dies @code{#t} ist, gelten die Zugriffssteuerungen für alle Methoden außer den aufgelisteten Methoden. Andernfalls gelten sie nur für die aufgelisteten Methoden." #. type: deftypevr -#: guix-git/doc/guix.texi:20050 +#: guix-git/doc/guix.texi:20412 #, no-wrap msgid "{@code{method-access-controls} parameter} method-list methods" msgstr "{@code{method-access-controls}-Parameter} Methoden-Liste methods" #. type: deftypevr -#: guix-git/doc/guix.texi:20052 +#: guix-git/doc/guix.texi:20414 msgid "Methods to which this access control applies." msgstr "Methoden, für die diese Zugriffssteuerung gilt." #. type: deftypevr -#: guix-git/doc/guix.texi:20056 +#: guix-git/doc/guix.texi:20418 #, no-wrap msgid "{@code{method-access-controls} parameter} access-control-list access-controls" msgstr "{@code{method-access-controls}-Parameter} Zugriffssteuerungs-Liste access-controls" #. type: deftypevr -#: guix-git/doc/guix.texi:20059 +#: guix-git/doc/guix.texi:20421 msgid "Access control directives, as a list of strings. Each string should be one directive, such as @samp{\"Order allow,deny\"}." msgstr "Zugriffssteuerungsdirektiven als eine Liste von Zeichenketten. Jede Zeichenkette steht für eine Direktive wie z.B.@: @samp{\"Order allow,deny\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:20065 +#: guix-git/doc/guix.texi:20427 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer log-debug-history" msgstr "{@code{cups-configuration}-Parameter} Nichtnegative-ganze-Zahl log-debug-history" #. type: deftypevr -#: guix-git/doc/guix.texi:20069 +#: guix-git/doc/guix.texi:20431 msgid "Specifies the number of debugging messages that are retained for logging if an error occurs in a print job. Debug messages are logged regardless of the LogLevel setting." msgstr "Gibt die Anzahl der Nachrichten zur Fehlersuche an, die für Protokolle vorgehalten werden, wenn ein Fehler in einem Druckauftrag auftritt. Nachrichten zur Fehlersuche werden unabhängig von der LogLevel-Einstellung protokolliert." #. type: deftypevr -#: guix-git/doc/guix.texi:20071 guix-git/doc/guix.texi:20092 -#: guix-git/doc/guix.texi:20099 guix-git/doc/guix.texi:22541 -#: guix-git/doc/guix.texi:24459 guix-git/doc/guix.texi:24474 -#: guix-git/doc/guix.texi:28601 +#: guix-git/doc/guix.texi:20433 guix-git/doc/guix.texi:20454 +#: guix-git/doc/guix.texi:20461 guix-git/doc/guix.texi:22903 +#: guix-git/doc/guix.texi:24821 guix-git/doc/guix.texi:24836 +#: guix-git/doc/guix.texi:28938 msgid "Defaults to @samp{100}." msgstr "Die Vorgabe ist @samp{100}." #. type: deftypevr -#: guix-git/doc/guix.texi:20073 +#: guix-git/doc/guix.texi:20435 #, no-wrap msgid "{@code{cups-configuration} parameter} log-level log-level" msgstr "{@code{cups-configuration}-Parameter} Protokollstufe log-level" #. type: deftypevr -#: guix-git/doc/guix.texi:20076 +#: guix-git/doc/guix.texi:20438 msgid "Specifies the level of logging for the ErrorLog file. The value @code{none} stops all logging while @code{debug2} logs everything." msgstr "Gibt die Stufe der Protokollierung in die ErrorLog-Datei an. Der Wert @code{none} stoppt alle Protokollierung, während @code{debug2} alles protokollieren lässt." #. type: deftypevr -#: guix-git/doc/guix.texi:20078 guix-git/doc/guix.texi:24936 +#: guix-git/doc/guix.texi:20440 guix-git/doc/guix.texi:25298 msgid "Defaults to @samp{info}." msgstr "Die Vorgabe ist @samp{info}." #. type: deftypevr -#: guix-git/doc/guix.texi:20080 +#: guix-git/doc/guix.texi:20442 #, no-wrap msgid "{@code{cups-configuration} parameter} log-time-format log-time-format" msgstr "{@code{cups-configuration}-Parameter} Protokollzeitformat log-time-format" #. type: deftypevr -#: guix-git/doc/guix.texi:20083 +#: guix-git/doc/guix.texi:20445 msgid "Specifies the format of the date and time in the log files. The value @code{standard} logs whole seconds while @code{usecs} logs microseconds." msgstr "Gibt das Format von Datum und Uhrzeit in Protokolldateien an. Der Wert @code{standard} lässt ganze Sekunden ins Protokoll schreiben, während bei @code{usecs} Mikrosekunden protokolliert werden." #. type: deftypevr -#: guix-git/doc/guix.texi:20085 +#: guix-git/doc/guix.texi:20447 msgid "Defaults to @samp{standard}." msgstr "Die Vorgabe ist @samp{standard}." #. type: deftypevr -#: guix-git/doc/guix.texi:20087 +#: guix-git/doc/guix.texi:20449 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-clients" msgstr "{@code{cups-configuration}-Parameter} Nichtnegative-ganze-Zahl max-clients" #. type: deftypevr -#: guix-git/doc/guix.texi:20090 +#: guix-git/doc/guix.texi:20452 msgid "Specifies the maximum number of simultaneous clients that are allowed by the scheduler." msgstr "Gibt die Maximalzahl gleichzeitig bedienter Clients an, die vom Planer zugelassen werden." #. type: deftypevr -#: guix-git/doc/guix.texi:20094 +#: guix-git/doc/guix.texi:20456 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-clients-per-host" msgstr "{@code{cups-configuration}-Parameter} Nichtnegative-ganze-Zahl max-clients-per-host" #. type: deftypevr -#: guix-git/doc/guix.texi:20097 +#: guix-git/doc/guix.texi:20459 msgid "Specifies the maximum number of simultaneous clients that are allowed from a single address." msgstr "Gibt die Maximalzahl gleichzeitiger Clients von derselben Adresse an, die zugelassen werden." #. type: deftypevr -#: guix-git/doc/guix.texi:20101 +#: guix-git/doc/guix.texi:20463 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-copies" msgstr "{@code{cups-configuration}-Parameter} Nichtnegative-ganze-Zahl max-copies" #. type: deftypevr -#: guix-git/doc/guix.texi:20104 +#: guix-git/doc/guix.texi:20466 msgid "Specifies the maximum number of copies that a user can print of each job." msgstr "Gibt die Maximalzahl der Kopien an, die ein Nutzer vom selben Druckauftrag ausdrucken lassen kann." #. type: deftypevr -#: guix-git/doc/guix.texi:20106 +#: guix-git/doc/guix.texi:20468 msgid "Defaults to @samp{9999}." msgstr "Die Vorgabe ist @samp{9999}." #. type: deftypevr -#: guix-git/doc/guix.texi:20108 +#: guix-git/doc/guix.texi:20470 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-hold-time" msgstr "{@code{cups-configuration}-Parameter} Nichtnegative-ganze-Zahl max-hold-time" #. type: deftypevr -#: guix-git/doc/guix.texi:20112 +#: guix-git/doc/guix.texi:20474 msgid "Specifies the maximum time a job may remain in the @code{indefinite} hold state before it is canceled. A value of 0 disables cancellation of held jobs." msgstr "Gibt die maximale Zeitdauer an, die ein Druckauftrag im Haltezustand @code{indefinite} bleiben darf, bevor er abgebrochen wird. Ein Wert von 0 deaktiviert ein Abbrechen gehaltener Druckaufträge." #. type: deftypevr -#: guix-git/doc/guix.texi:20116 +#: guix-git/doc/guix.texi:20478 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs" msgstr "{@code{cups-configuration}-Parameter} Nichtnegative-ganze-Zahl max-jobs" #. type: deftypevr -#: guix-git/doc/guix.texi:20119 +#: guix-git/doc/guix.texi:20481 msgid "Specifies the maximum number of simultaneous jobs that are allowed. Set to 0 to allow an unlimited number of jobs." msgstr "Gibt die Maximalzahl gleichzeitiger Druckaufträge an, die noch zugelassen wird. Wenn Sie es auf 0 setzen, wird die Anzahl Druckaufträge @emph{nicht} beschränkt." #. type: deftypevr -#: guix-git/doc/guix.texi:20121 +#: guix-git/doc/guix.texi:20483 msgid "Defaults to @samp{500}." msgstr "Die Vorgabe ist @samp{500}." #. type: deftypevr -#: guix-git/doc/guix.texi:20123 +#: guix-git/doc/guix.texi:20485 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs-per-printer" msgstr "{@code{cups-configuration}-Parameter} Nichtnegative-ganze-Zahl max-jobs-per-printer" #. type: deftypevr -#: guix-git/doc/guix.texi:20126 +#: guix-git/doc/guix.texi:20488 msgid "Specifies the maximum number of simultaneous jobs that are allowed per printer. A value of 0 allows up to MaxJobs jobs per printer." msgstr "Gibt die Maximalzahl gleichzeitiger Druckaufträge an, die pro Drucker zugelassen werden. Ein Wert von 0 lässt bis zu MaxJobs-viele Druckaufträge pro Drucker zu." #. type: deftypevr -#: guix-git/doc/guix.texi:20130 +#: guix-git/doc/guix.texi:20492 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs-per-user" msgstr "{@code{cups-configuration}-Parameter} Nichtnegative-ganze-Zahl max-jobs-per-user" #. type: deftypevr -#: guix-git/doc/guix.texi:20133 +#: guix-git/doc/guix.texi:20495 msgid "Specifies the maximum number of simultaneous jobs that are allowed per user. A value of 0 allows up to MaxJobs jobs per user." msgstr "Gibt die Maximalzahl gleichzeitiger Druckaufträge an, die pro Benutzer zugelassen werden. Ein Wert von 0 lässt bis zu MaxJobs-viele Druckaufträge pro Benutzer zu." #. type: deftypevr -#: guix-git/doc/guix.texi:20137 +#: guix-git/doc/guix.texi:20499 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-job-time" msgstr "{@code{cups-configuration}-Parameter} Nichtnegative-ganze-Zahl max-job-time" #. type: deftypevr -#: guix-git/doc/guix.texi:20140 +#: guix-git/doc/guix.texi:20502 msgid "Specifies the maximum time a job may take to print before it is canceled, in seconds. Set to 0 to disable cancellation of ``stuck'' jobs." msgstr "Gibt die maximale Anzahl an, wie oft das Drucken eines Druckauftrags versucht werden kann, bis er abgebrochen wird, in Sekunden. Wenn Sie es auf 0 setzen, wird das Abbrechen „feststeckender“ Druckaufträge deaktiviert." #. type: deftypevr -#: guix-git/doc/guix.texi:20142 +#: guix-git/doc/guix.texi:20504 msgid "Defaults to @samp{10800}." msgstr "Die Vorgabe ist @samp{10800}." #. type: deftypevr -#: guix-git/doc/guix.texi:20144 +#: guix-git/doc/guix.texi:20506 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-log-size" msgstr "{@code{cups-configuration}-Parameter} Nichtnegative-ganze-Zahl max-log-size" #. type: deftypevr -#: guix-git/doc/guix.texi:20147 +#: guix-git/doc/guix.texi:20509 msgid "Specifies the maximum size of the log files before they are rotated, in bytes. The value 0 disables log rotation." msgstr "Gibt die Maximalgröße der Protokolldateien an, bevor sie rotiert werden, in Bytes. Beim Wert 0 wird Protokollrotation deaktiviert." #. type: deftypevr -#: guix-git/doc/guix.texi:20149 +#: guix-git/doc/guix.texi:20511 msgid "Defaults to @samp{1048576}." msgstr "Die Vorgabe ist @samp{1048576}." #. type: deftypevr -#: guix-git/doc/guix.texi:20151 +#: guix-git/doc/guix.texi:20513 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer multiple-operation-timeout" msgstr "{@code{cups-configuration}-Parameter} Nichtnegative-ganze-Zahl multiple-operation-timeout" #. type: deftypevr -#: guix-git/doc/guix.texi:20154 +#: guix-git/doc/guix.texi:20516 msgid "Specifies the maximum amount of time to allow between files in a multiple file print job, in seconds." msgstr "Gibt die maximale Zeitdauer an, wie lange es zwischen Dateien in einem Druckauftrag mit mehreren Dateien dauern darf, in Sekunden." #. type: deftypevr -#: guix-git/doc/guix.texi:20156 guix-git/doc/guix.texi:20367 +#: guix-git/doc/guix.texi:20518 guix-git/doc/guix.texi:20729 msgid "Defaults to @samp{900}." msgstr "Die Vorgabe ist @samp{900}." #. type: deftypevr -#: guix-git/doc/guix.texi:20158 +#: guix-git/doc/guix.texi:20520 #, no-wrap msgid "{@code{cups-configuration} parameter} string page-log-format" msgstr "{@code{cups-configuration}-Parameter} Zeichenkette page-log-format" #. type: deftypevr -#: guix-git/doc/guix.texi:20163 +#: guix-git/doc/guix.texi:20525 msgid "Specifies the format of PageLog lines. Sequences beginning with percent (@samp{%}) characters are replaced with the corresponding information, while all other characters are copied literally. The following percent sequences are recognized:" msgstr "Gibt das Format der Zeilen im PageLog-Seitenprotokoll an. Folgen, die mit Prozentzeichen (@samp{%}) beginnen, werden durch die jeweils zugehörigen Informationen ersetzt, während alle anderen Zeichen wortwörtlich übernommen werden. Die folgenden Prozentfolgen werden erkannt:" #. type: item -#: guix-git/doc/guix.texi:20165 +#: guix-git/doc/guix.texi:20527 #, no-wrap msgid "%%" msgstr "%%" #. type: table -#: guix-git/doc/guix.texi:20167 +#: guix-git/doc/guix.texi:20529 msgid "insert a single percent character" msgstr "ein einzelnes Prozentzeichen einfügen" #. type: item -#: guix-git/doc/guix.texi:20168 +#: guix-git/doc/guix.texi:20530 #, no-wrap msgid "%@{name@}" msgstr "%@{name@}" #. type: table -#: guix-git/doc/guix.texi:20170 +#: guix-git/doc/guix.texi:20532 msgid "insert the value of the specified IPP attribute" msgstr "den Wert des angegebenen IPP-Attributs einfügen" #. type: item -#: guix-git/doc/guix.texi:20171 +#: guix-git/doc/guix.texi:20533 #, no-wrap msgid "%C" msgstr "%C" #. type: table -#: guix-git/doc/guix.texi:20173 +#: guix-git/doc/guix.texi:20535 msgid "insert the number of copies for the current page" msgstr "die Anzahl der Kopien der aktuellen Seite einfügen" #. type: item -#: guix-git/doc/guix.texi:20174 +#: guix-git/doc/guix.texi:20536 #, no-wrap msgid "%P" msgstr "%P" #. type: table -#: guix-git/doc/guix.texi:20176 +#: guix-git/doc/guix.texi:20538 msgid "insert the current page number" msgstr "die aktuelle Seitenzahl einfügen" #. type: item -#: guix-git/doc/guix.texi:20177 +#: guix-git/doc/guix.texi:20539 #, no-wrap msgid "%T" msgstr "%T" #. type: table -#: guix-git/doc/guix.texi:20179 +#: guix-git/doc/guix.texi:20541 msgid "insert the current date and time in common log format" msgstr "das aktuelle Datum und Uhrzeit im allgemeinen Protokollformat einfügen" #. type: item -#: guix-git/doc/guix.texi:20180 +#: guix-git/doc/guix.texi:20542 #, no-wrap msgid "%j" msgstr "%j" #. type: table -#: guix-git/doc/guix.texi:20182 +#: guix-git/doc/guix.texi:20544 msgid "insert the job ID" msgstr "den Druckauftragsidentifikator („Job-ID“) einfügen" #. type: item -#: guix-git/doc/guix.texi:20183 guix-git/doc/guix.texi:22140 +#: guix-git/doc/guix.texi:20545 guix-git/doc/guix.texi:22502 #, no-wrap msgid "%p" msgstr "%p" #. type: table -#: guix-git/doc/guix.texi:20185 +#: guix-git/doc/guix.texi:20547 msgid "insert the printer name" msgstr "den Druckernamen einfügen" #. type: item -#: guix-git/doc/guix.texi:20186 guix-git/doc/guix.texi:22163 +#: guix-git/doc/guix.texi:20548 guix-git/doc/guix.texi:22525 #, no-wrap msgid "%u" msgstr "%u" #. type: table -#: guix-git/doc/guix.texi:20188 +#: guix-git/doc/guix.texi:20550 msgid "insert the username" msgstr "den Benutzernamen einfügen" #. type: deftypevr -#: guix-git/doc/guix.texi:20194 +#: guix-git/doc/guix.texi:20556 msgid "A value of the empty string disables page logging. The string @code{%p %u %j %T %P %C %@{job-billing@} %@{job-originating-host-name@} %@{job-name@} %@{media@} %@{sides@}} creates a page log with the standard items." msgstr "Wird die leere Zeichenkette als Wert angegeben, wird Seitenprotokollierung abgeschaltet. Die Zeichenkette @code{%p %u %j %T %P %C %@{job-billing@} %@{job-originating-host-name@} %@{job-name@} %@{media@} %@{sides@}} erzeugt ein Seitenprotokoll mit den üblichen Elementen." #. type: deftypevr -#: guix-git/doc/guix.texi:20198 +#: guix-git/doc/guix.texi:20560 #, no-wrap msgid "{@code{cups-configuration} parameter} environment-variables environment-variables" msgstr "{@code{cups-configuration}-Parameter} Umgebungsvariable environment-variables" #. type: deftypevr -#: guix-git/doc/guix.texi:20201 +#: guix-git/doc/guix.texi:20563 msgid "Passes the specified environment variable(s) to child processes; a list of strings." msgstr "Übergibt die angegebene(n) Umgebungsvariable(n) an Kindprozesse, als Liste von Zeichenketten." #. type: deftypevr -#: guix-git/doc/guix.texi:20205 +#: guix-git/doc/guix.texi:20567 #, no-wrap msgid "{@code{cups-configuration} parameter} policy-configuration-list policies" msgstr "{@code{cups-configuration}-Parameter} „policy-configuration“-Liste policies" #. type: deftypevr -#: guix-git/doc/guix.texi:20207 +#: guix-git/doc/guix.texi:20569 msgid "Specifies named access control policies." msgstr "Gibt die benannten Zugriffssteuerungsrichtlinien an." #. type: deftypevr -#: guix-git/doc/guix.texi:20209 +#: guix-git/doc/guix.texi:20571 msgid "Available @code{policy-configuration} fields are:" msgstr "Verfügbare @code{policy-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:20210 +#: guix-git/doc/guix.texi:20572 #, no-wrap msgid "{@code{policy-configuration} parameter} string name" msgstr "{@code{policy-configuration}-Parameter} Zeichenkette name" #. type: deftypevr -#: guix-git/doc/guix.texi:20212 +#: guix-git/doc/guix.texi:20574 msgid "Name of the policy." msgstr "Der Name der Richtlinie." #. type: deftypevr -#: guix-git/doc/guix.texi:20214 +#: guix-git/doc/guix.texi:20576 #, no-wrap msgid "{@code{policy-configuration} parameter} string job-private-access" msgstr "{@code{policy-configuration}-Parameter} Zeichenkette job-private-access" #. type: deftypevr -#: guix-git/doc/guix.texi:20224 +#: guix-git/doc/guix.texi:20586 msgid "Specifies an access list for a job's private values. @code{@@ACL} maps to the printer's requesting-user-name-allowed or requesting-user-name-denied values. @code{@@OWNER} maps to the job's owner. @code{@@SYSTEM} maps to the groups listed for the @code{system-group} field of the @code{files-configuration}, which is reified into the @code{cups-files.conf(5)} file. Other possible elements of the access list include specific user names, and @code{@@@var{group}} to indicate members of a specific group. The access list may also be simply @code{all} or @code{default}." msgstr "Gibt eine Zugriffsliste der privaten Werte eines Druckauftrags an. @code{@@ACL} wird auf die Werte von requesting-user-name-allowed oder requesting-user-name-denied des Druckers abgebildet. @code{@@OWNER} wird auf den Besitzer des Druckauftrags abgebildet. @code{@@SYSTEM} wird auf die Gruppen abgebildet, die im @code{system-group}-Feld der @code{files-configuration} aufgelistet sind, aus der die Datei @code{cups-files.conf(5)} erzeugt wird. Zu den anderen möglichen Elementen der Zugriffsliste gehören Namen bestimmer Benutzerkonten und @code{@@@var{Benutzergruppe}}, was für Mitglieder einer bestimmten Benutzergruppe steht. Die Zugriffsliste kann auch einfach als @code{all} oder @code{default} festgelegt werden." #. type: deftypevr -#: guix-git/doc/guix.texi:20226 guix-git/doc/guix.texi:20248 +#: guix-git/doc/guix.texi:20588 guix-git/doc/guix.texi:20610 msgid "Defaults to @samp{\"@@OWNER @@SYSTEM\"}." msgstr "Die Vorgabe ist @samp{\"@@OWNER @@SYSTEM\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:20228 +#: guix-git/doc/guix.texi:20590 #, no-wrap msgid "{@code{policy-configuration} parameter} string job-private-values" msgstr "{@code{policy-configuration}-Parameter} Zeichenkette job-private-values" #. type: deftypevr -#: guix-git/doc/guix.texi:20231 guix-git/doc/guix.texi:20253 +#: guix-git/doc/guix.texi:20593 guix-git/doc/guix.texi:20615 msgid "Specifies the list of job values to make private, or @code{all}, @code{default}, or @code{none}." msgstr "Gibt die Liste der Druckauftragswerte an, die geschützt werden sollten, oder @code{all}, @code{default} oder @code{none}." #. type: deftypevr -#: guix-git/doc/guix.texi:20234 +#: guix-git/doc/guix.texi:20596 msgid "Defaults to @samp{\"job-name job-originating-host-name job-originating-user-name phone\"}." msgstr "Die Vorgabe ist @samp{\"job-name job-originating-host-name job-originating-user-name phone\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:20236 +#: guix-git/doc/guix.texi:20598 #, no-wrap msgid "{@code{policy-configuration} parameter} string subscription-private-access" msgstr "{@code{policy-configuration}-Parameter} Zeichenkette subscription-private-access" #. type: deftypevr -#: guix-git/doc/guix.texi:20246 +#: guix-git/doc/guix.texi:20608 msgid "Specifies an access list for a subscription's private values. @code{@@ACL} maps to the printer's requesting-user-name-allowed or requesting-user-name-denied values. @code{@@OWNER} maps to the job's owner. @code{@@SYSTEM} maps to the groups listed for the @code{system-group} field of the @code{files-configuration}, which is reified into the @code{cups-files.conf(5)} file. Other possible elements of the access list include specific user names, and @code{@@@var{group}} to indicate members of a specific group. The access list may also be simply @code{all} or @code{default}." msgstr "Gibt eine Zugriffsliste für die privaten Werte eines Abonnements an. @code{@@ACL} wird auf die Werte von requesting-user-name-allowed oder requesting-user-name-denied des Druckers abgebildet. @code{@@OWNER} wird auf den Besitzer des Druckauftrags abgebildet. @code{@@SYSTEM} wird auf die Gruppen abgebildet, die im @code{system-group}-Feld der @code{files-configuration} aufgelistet sind, aus der die Datei @code{cups-files.conf(5)} erzeugt wird. Zu den anderen möglichen Elementen der Zugriffsliste gehören Namen bestimmer Benutzerkonten und @code{@@@var{Benutzergruppe}}, was für Mitglieder einer bestimmten Benutzergruppe steht. Die Zugriffsliste kann auch einfach als @code{all} oder @code{default} festgelegt werden." #. type: deftypevr -#: guix-git/doc/guix.texi:20250 +#: guix-git/doc/guix.texi:20612 #, no-wrap msgid "{@code{policy-configuration} parameter} string subscription-private-values" msgstr "{@code{policy-configuration}-Parameter} Zeichenkette subscription-private-values" #. type: deftypevr -#: guix-git/doc/guix.texi:20256 +#: guix-git/doc/guix.texi:20618 msgid "Defaults to @samp{\"notify-events notify-pull-method notify-recipient-uri notify-subscriber-user-name notify-user-data\"}." msgstr "Die Vorgabe ist @samp{\"notify-events notify-pull-method notify-recipient-uri notify-subscriber-user-name notify-user-data\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:20258 +#: guix-git/doc/guix.texi:20620 #, no-wrap msgid "{@code{policy-configuration} parameter} operation-access-control-list access-controls" msgstr "{@code{policy-configuration}-Parameter} „operation-access-controls“-Liste access-controls" #. type: deftypevr -#: guix-git/doc/guix.texi:20260 +#: guix-git/doc/guix.texi:20622 msgid "Access control by IPP operation." msgstr "Zugriffssteuerung durch IPP-Betrieb." #. type: deftypevr -#: guix-git/doc/guix.texi:20265 +#: guix-git/doc/guix.texi:20627 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean-or-non-negative-integer preserve-job-files" msgstr "{@code{cups-configuration}-Parameter} Boolescher-Ausdruck-oder-Nichtnegative-ganze-Zahl preserve-job-files" #. type: deftypevr -#: guix-git/doc/guix.texi:20270 +#: guix-git/doc/guix.texi:20632 msgid "Specifies whether job files (documents) are preserved after a job is printed. If a numeric value is specified, job files are preserved for the indicated number of seconds after printing. Otherwise a boolean value applies indefinitely." msgstr "Gibt an, ob die Dateien eines Druckauftrags (Dokumente) erhalten bleiben, nachdem ein Druckauftrag ausgedruckt wurde. Wenn eine Zahl angegeben wird, bleiben die Dateien des Druckauftrags für die angegebene Zahl von Sekunden nach dem Drucken erhalten. Ein boolescher Wert bestimmt ansonsten, ob sie auf unbestimmte Zeit erhalten bleiben." #. type: deftypevr -#: guix-git/doc/guix.texi:20272 +#: guix-git/doc/guix.texi:20634 msgid "Defaults to @samp{86400}." msgstr "Die Vorgabe ist @samp{86400}." #. type: deftypevr -#: guix-git/doc/guix.texi:20274 +#: guix-git/doc/guix.texi:20636 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean-or-non-negative-integer preserve-job-history" msgstr "{@code{cups-configuration}-Parameter} Boolescher-Ausdruck-oder-Nichtnegative-ganze-Zahl preserve-job-history" #. type: deftypevr -#: guix-git/doc/guix.texi:20279 +#: guix-git/doc/guix.texi:20641 msgid "Specifies whether the job history is preserved after a job is printed. If a numeric value is specified, the job history is preserved for the indicated number of seconds after printing. If @code{#t}, the job history is preserved until the MaxJobs limit is reached." msgstr "Gibt an, ob der Druckauftragsverlauf nach dem Drucken eines Druckauftrags erhalten bleibt. Wenn eine Zahl angegeben wird, bleibt der Druckauftragsverlauf für die angegebene Zahl von Sekunden nach dem Drucken erhalten. Bei @code{#t} bleibt der Druckauftragsverlauf so lange erhalten, bis die MaxJobs-Beschränkung erreicht wurde." #. type: deftypevr -#: guix-git/doc/guix.texi:20283 +#: guix-git/doc/guix.texi:20645 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer reload-timeout" msgstr "{@code{cups-configuration}-Parameter} Nichtnegative-ganze-Zahl reload-timeout" #. type: deftypevr -#: guix-git/doc/guix.texi:20286 +#: guix-git/doc/guix.texi:20648 msgid "Specifies the amount of time to wait for job completion before restarting the scheduler." msgstr "Gibt an, wie lange vor dem Neustart des Planungsprogramms auf den Abschluss eines Druckauftrages gewartet wird." #. type: deftypevr -#: guix-git/doc/guix.texi:20290 +#: guix-git/doc/guix.texi:20652 #, no-wrap msgid "{@code{cups-configuration} parameter} string rip-cache" msgstr "{@code{cups-configuration}-Parameter} Zeichenkette rip-cache" #. type: deftypevr -#: guix-git/doc/guix.texi:20293 +#: guix-git/doc/guix.texi:20655 msgid "Specifies the maximum amount of memory to use when converting documents into bitmaps for a printer." msgstr "Gibt die maximale Menge an genutztem Arbeitsspeicher für das Konvertieren von Dokumenten in eine Rastergrafik (eine „Bitmap“) für einen Drucker an." #. type: deftypevr -#: guix-git/doc/guix.texi:20295 +#: guix-git/doc/guix.texi:20657 msgid "Defaults to @samp{\"128m\"}." msgstr "Die Vorgabe ist @samp{\"128m\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:20297 +#: guix-git/doc/guix.texi:20659 #, no-wrap msgid "{@code{cups-configuration} parameter} string server-admin" msgstr "{@code{cups-configuration}-Parameter} Zeichenkette server-admin" #. type: deftypevr -#: guix-git/doc/guix.texi:20299 +#: guix-git/doc/guix.texi:20661 msgid "Specifies the email address of the server administrator." msgstr "Gibt die E-Mail-Adresse des Serveradministrators an." #. type: deftypevr -#: guix-git/doc/guix.texi:20301 +#: guix-git/doc/guix.texi:20663 msgid "Defaults to @samp{\"root@@localhost.localdomain\"}." msgstr "Die Vorgabe ist @samp{\"root@@localhost.localdomain\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:20303 +#: guix-git/doc/guix.texi:20665 #, no-wrap msgid "{@code{cups-configuration} parameter} host-name-list-or-* server-alias" msgstr "{@code{cups-configuration}-Parameter} Rechnernamens-Liste-oder-* server-alias" #. type: deftypevr -#: guix-git/doc/guix.texi:20311 +#: guix-git/doc/guix.texi:20673 msgid "The ServerAlias directive is used for HTTP Host header validation when clients connect to the scheduler from external interfaces. Using the special name @code{*} can expose your system to known browser-based DNS rebinding attacks, even when accessing sites through a firewall. If the auto-discovery of alternate names does not work, we recommend listing each alternate name with a ServerAlias directive instead of using @code{*}." msgstr "Die ServerAlias-Direktive wird zur Prüfung der HTTP-Host-Kopfzeile benutzt, wenn sich Clients mit dem Planungsprogramm über externe Schnittstellen verbinden. Wenn der besondere Name @code{*} benutzt wird, könnte Ihr System möglicherweise bekannten browserbasierten DNS-Rebinding-Angriffen ausgesetzt werden, selbst wenn auf die Angebote nur über eine Firewall zugegriffen wird. Wenn alternative Namen nicht automatisch erkannt werden, empfehlen wir, jeden alternativen Namen in der ServerAlias-Direktive aufzulisten, statt @code{*} zu benutzen." #. type: deftypevr -#: guix-git/doc/guix.texi:20313 +#: guix-git/doc/guix.texi:20675 msgid "Defaults to @samp{*}." msgstr "Die Vorgabe ist @samp{*}." #. type: deftypevr -#: guix-git/doc/guix.texi:20315 +#: guix-git/doc/guix.texi:20677 #, no-wrap msgid "{@code{cups-configuration} parameter} string server-name" msgstr "{@code{cups-configuration}-Parameter} Zeichenkette server-name" #. type: deftypevr -#: guix-git/doc/guix.texi:20317 +#: guix-git/doc/guix.texi:20679 msgid "Specifies the fully-qualified host name of the server." msgstr "Gibt den vollständigen Rechnernamen („Fully-Qualified Host Name“) des Servers an." #. type: deftypevr -#: guix-git/doc/guix.texi:20319 guix-git/doc/guix.texi:25449 -#: guix-git/doc/guix.texi:25494 +#: guix-git/doc/guix.texi:20681 msgid "Defaults to @samp{\"localhost\"}." msgstr "Die Vorgabe ist @samp{\"localhost\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:20321 +#: guix-git/doc/guix.texi:20683 #, no-wrap msgid "{@code{cups-configuration} parameter} server-tokens server-tokens" msgstr "{@code{cups-configuration}-Parameter} Server-Tokens server-tokens" #. type: deftypevr -#: guix-git/doc/guix.texi:20329 +#: guix-git/doc/guix.texi:20691 msgid "Specifies what information is included in the Server header of HTTP responses. @code{None} disables the Server header. @code{ProductOnly} reports @code{CUPS}. @code{Major} reports @code{CUPS 2}. @code{Minor} reports @code{CUPS 2.0}. @code{Minimal} reports @code{CUPS 2.0.0}. @code{OS} reports @code{CUPS 2.0.0 (@var{uname})} where @var{uname} is the output of the @code{uname} command. @code{Full} reports @code{CUPS 2.0.0 (@var{uname}) IPP/2.0}." msgstr "Gibt an, welche Informationen in der Server-Kopfzeile von HTTP-Antworten vorkommen. @code{None} deaktiviert die Server-Kopfzeile. @code{ProductOnly} liefert @code{CUPS}. @code{Major} liefert @code{CUPS 2}. @code{Minor} liefert @code{CUPS 2.0}. @code{Minimal} liefert @code{CUPS 2.0.0}. @code{OS} liefert @code{CUPS 2.0.0 (@var{uname})}, wobei @var{uname} die Ausgabe des Befehls @code{uname} ist. @code{Full} liefert @code{CUPS 2.0.0 (@var{uname}) IPP/2.0}." #. type: deftypevr -#: guix-git/doc/guix.texi:20331 +#: guix-git/doc/guix.texi:20693 msgid "Defaults to @samp{Minimal}." msgstr "Die Vorgabe ist @samp{Minimal}." #. type: deftypevr -#: guix-git/doc/guix.texi:20333 +#: guix-git/doc/guix.texi:20695 #, no-wrap msgid "{@code{cups-configuration} parameter} multiline-string-list ssl-listen" msgstr "{@code{cups-configuration}-Parameter} Mehrzeilige-Zeichenketten-Liste ssl-listen" #. type: deftypevr -#: guix-git/doc/guix.texi:20338 +#: guix-git/doc/guix.texi:20700 msgid "Listens on the specified interfaces for encrypted connections. Valid values are of the form @var{address}:@var{port}, where @var{address} is either an IPv6 address enclosed in brackets, an IPv4 address, or @code{*} to indicate all addresses." msgstr "Lauscht auf den angegebenen Schnittstellen auf verschlüsselte Verbindungen. Gültige Werte haben die Form @var{Adresse}:@var{Port}, wobei die @var{Adresse} entweder eine von eckigen Klammern umschlossene IPv6-Adresse, eine IPv4-Adresse oder @code{*} ist; letztere steht für alle Adressen." #. type: deftypevr -#: guix-git/doc/guix.texi:20342 +#: guix-git/doc/guix.texi:20704 #, no-wrap msgid "{@code{cups-configuration} parameter} ssl-options ssl-options" msgstr "{@code{cups-configuration}-Parameter} SSL-Optionen ssl-options" #. type: deftypevr -#: guix-git/doc/guix.texi:20352 +#: guix-git/doc/guix.texi:20714 msgid "Sets encryption options. By default, CUPS only supports encryption using TLS v1.0 or higher using known secure cipher suites. Security is reduced when @code{Allow} options are used, and enhanced when @code{Deny} options are used. The @code{AllowRC4} option enables the 128-bit RC4 cipher suites, which are required for some older clients. The @code{AllowSSL3} option enables SSL v3.0, which is required for some older clients that do not support TLS v1.0. The @code{DenyCBC} option disables all CBC cipher suites. The @code{DenyTLS1.0} option disables TLS v1.0 support - this sets the minimum protocol version to TLS v1.1." msgstr "Legt Verschlüsselungsoptionen fest. Nach Vorgabe unterstützt CUPS nur Verschlüsselung mit TLS v1.0 oder höher mit bekannten, sicheren „Cipher Suites“. Es ist weniger sicher, Optionen mit @code{Allow} („erlauben“) zu verwenden, und es erhöht die Sicherheit, Optionen mit @code{Deny} („verweigern“) zu benutzen. Die Option @code{AllowRC4} aktiviert die 128-Bit-RC4-Cipher-Suites, die manche alten Clients brauchen. Die Option @code{AllowSSL3} aktiviert SSL v3.0, das manche alte Clients brauchen, die TLS v1.0 nicht implementieren. Die Option @code{DenyCBC} deaktiviert alle CBC-Cipher-Suites. Die Option @code{DenyTLS1.0} deaktiviert Unterstützung für TLS v1.0@tie{}— dadurch wird TLS v1.1 zur kleinsten noch unterstützten Protokollversion." #. type: deftypevr -#: guix-git/doc/guix.texi:20356 +#: guix-git/doc/guix.texi:20718 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean strict-conformance?" msgstr "{@code{cups-configuration}-Parameter} Boolescher-Ausdruck strict-conformance?" #. type: deftypevr -#: guix-git/doc/guix.texi:20359 +#: guix-git/doc/guix.texi:20721 msgid "Specifies whether the scheduler requires clients to strictly adhere to the IPP specifications." msgstr "Gibt an, ob das Druckplanungsprogramm von Clients fordert, dass sie sich strikt an die IPP-Spezifikationen halten." #. type: deftypevr -#: guix-git/doc/guix.texi:20363 +#: guix-git/doc/guix.texi:20725 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer timeout" msgstr "{@code{cups-configuration}-Parameter} Nichtnegative-ganze-Zahl timeout" #. type: deftypevr -#: guix-git/doc/guix.texi:20365 +#: guix-git/doc/guix.texi:20727 msgid "Specifies the HTTP request timeout, in seconds." msgstr "Gibt die Zeitbeschränkung für HTTP-Anfragen an, in Sekunden." #. type: deftypevr -#: guix-git/doc/guix.texi:20370 +#: guix-git/doc/guix.texi:20732 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean web-interface?" msgstr "{@code{cups-configuration}-Parameter} Boolescher-Ausdruck web-interface?" #. type: deftypevr -#: guix-git/doc/guix.texi:20372 +#: guix-git/doc/guix.texi:20734 msgid "Specifies whether the web interface is enabled." msgstr "Gibt an, ob die Weboberfläche zur Verfügung gestellt wird." #. type: Plain text -#: guix-git/doc/guix.texi:20382 +#: guix-git/doc/guix.texi:20744 msgid "At this point you're probably thinking ``oh dear, Guix manual, I like you but you can stop already with the configuration options''. Indeed. However, one more point: it could be that you have an existing @code{cupsd.conf} that you want to use. In that case, you can pass an @code{opaque-cups-configuration} as the configuration of a @code{cups-service-type}." msgstr "Mittlerweile denken Sie wahrscheinlich: „Ich bitte dich, Guix-Handbuch, ich mag dich, aber kannst du jetzt bitte mit den Konfigurationsoptionen aufhören?“ Damit hätten Sie recht. Allerdings sollte ein weitere Punkt noch erwähnt werden: Vielleicht haben Sie eine bestehende @code{cupsd.conf}, die Sie verwenden möchten. In diesem Fall können Sie eine @code{opaque-cups-configuration} als die Konfiguration eines @code{cups-service-type} übergeben." #. type: Plain text -#: guix-git/doc/guix.texi:20384 +#: guix-git/doc/guix.texi:20746 msgid "Available @code{opaque-cups-configuration} fields are:" msgstr "Verfügbare @code{opaque-cups-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:20385 +#: guix-git/doc/guix.texi:20747 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} package cups" msgstr "{@code{opaque-cups-configuration}-Parameter} „package“ cups" #. type: deftypevr -#: guix-git/doc/guix.texi:20389 +#: guix-git/doc/guix.texi:20751 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} string cupsd.conf" msgstr "{@code{opaque-cups-configuration}-Parameter} Zeichenkette cupsd.conf" #. type: deftypevr -#: guix-git/doc/guix.texi:20391 +#: guix-git/doc/guix.texi:20753 msgid "The contents of the @code{cupsd.conf}, as a string." msgstr "Der Inhalt der Datei @code{cupsd.conf} als eine Zeichenkette." #. type: deftypevr -#: guix-git/doc/guix.texi:20393 +#: guix-git/doc/guix.texi:20755 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} string cups-files.conf" msgstr "{@code{opaque-cups-configuration}-Parameter} Zeichenkette cups-files.conf" #. type: deftypevr -#: guix-git/doc/guix.texi:20395 +#: guix-git/doc/guix.texi:20757 msgid "The contents of the @code{cups-files.conf} file, as a string." msgstr "Der Inhalt der Datei @code{cups-files.conf} als eine Zeichenkette." #. type: Plain text -#: guix-git/doc/guix.texi:20400 +#: guix-git/doc/guix.texi:20762 msgid "For example, if your @code{cupsd.conf} and @code{cups-files.conf} are in strings of the same name, you could instantiate a CUPS service like this:" msgstr "Wenn Ihre @code{cupsd.conf} und @code{cups-files.conf} zum Beispiel in Zeichenketten mit dem entsprechenden Namen definiert sind, könnten Sie auf diese Weise einen CUPS-Dienst instanziieren:" #. type: lisp -#: guix-git/doc/guix.texi:20406 +#: guix-git/doc/guix.texi:20768 #, no-wrap msgid "" "(service cups-service-type\n" @@ -38305,238 +38963,238 @@ msgstr "" " (cups-files.conf cups-files.conf)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:20417 +#: guix-git/doc/guix.texi:20779 msgid "The @code{(gnu services desktop)} module provides services that are usually useful in the context of a ``desktop'' setup---that is, on a machine running a graphical display server, possibly with graphical user interfaces, etc. It also defines services that provide specific desktop environments like GNOME, Xfce or MATE." msgstr "Das Modul @code{(gnu services desktop)} stellt Dienste zur Verfügung, die meistens bei „Desktop“-Einrichtungen für grafische Nutzung praktisch sind@tie{}— also auf einer Maschine mit einem grafischem Anzeigeserver, vielleicht mit einer grafischen Benutzeroberfläche, usw. Im Modul werden auch Dienste definiert, die bestimmte Arbeitsumgebungen wie GNOME, Xfce oder MATE bereitstellen." #. type: Plain text -#: guix-git/doc/guix.texi:20421 +#: guix-git/doc/guix.texi:20783 msgid "To simplify things, the module defines a variable containing the set of services that users typically expect on a machine with a graphical environment and networking:" msgstr "Um es einfacher zu machen, definiert das Modul auch eine Variable mit denjenigen Diensten, die man auf einer Maschine mit einer grafischen Umgebung und Netzwerkunterstützung erwarten würde:" #. type: defvr -#: guix-git/doc/guix.texi:20422 +#: guix-git/doc/guix.texi:20784 #, no-wrap msgid "{Scheme Variable} %desktop-services" msgstr "{Scheme-Variable} %desktop-services" #. type: defvr -#: guix-git/doc/guix.texi:20425 +#: guix-git/doc/guix.texi:20787 msgid "This is a list of services that builds upon @code{%base-services} and adds or adjusts services for a typical ``desktop'' setup." msgstr "Dies ist eine Liste von Diensten, die @code{%base-services} ergänzt und weitere Dienste hinzufügt oder bestehende anpasst, um für eine normale „Desktop“-Nutzung geeignet zu sein." #. type: defvr -#: guix-git/doc/guix.texi:20436 +#: guix-git/doc/guix.texi:20798 msgid "In particular, it adds a graphical login manager (@pxref{X Window, @code{gdm-service-type}}), screen lockers, a network management tool (@pxref{Networking Services, @code{network-manager-service-type}}) with modem support (@pxref{Networking Services, @code{modem-manager-service-type}}), energy and color management services, the @code{elogind} login and seat manager, the Polkit privilege service, the GeoClue location service, the AccountsService daemon that allows authorized users change system passwords, an NTP client (@pxref{Networking Services}), the Avahi daemon, and has the name service switch service configured to be able to use @code{nss-mdns} (@pxref{Name Service Switch, mDNS})." msgstr "Insbesondere wird eine grafische Anmeldeverwaltung hinzugefügt (siehe @ref{X Window, @code{gdm-service-type}}), ebenso Programme zur Bildschirmsperre, ein Werkzeug zur Netzwerkverwaltung (siehe @ref{Networking Services, @code{network-manager-service-type}}) mit Unterstützung für Modems (siehe @ref{Networking Services, @code{modem-manager-service-type}}), Energieverbrauchs- und Farbverwaltungsdienste, Anmeldungs- und Sitzungsverwaltung über @code{elogind}, der Berechtigungsdienst Polkit, der Ortungsdienst GeoClue, der AccountsService-Daemon, mit dem autorisierte Benutzer Systempasswörter ändern können, ein NTP-Client (siehe @ref{Networking Services}) und der Avahi-Daemon. Außerdem wird der Name Service Switch konfiguriert, damit er @code{nss-mdns} benutzt (siehe @ref{Name Service Switch, mDNS})." #. type: Plain text -#: guix-git/doc/guix.texi:20441 +#: guix-git/doc/guix.texi:20803 msgid "The @code{%desktop-services} variable can be used as the @code{services} field of an @code{operating-system} declaration (@pxref{operating-system Reference, @code{services}})." msgstr "Die @code{%desktop-services}-Variable kann als das @code{services}-Feld einer @code{operating-system}-Deklaration genutzt werden (siehe @ref{operating-system Reference, @code{services}})." #. type: Plain text -#: guix-git/doc/guix.texi:20464 +#: guix-git/doc/guix.texi:20826 msgid "Additionally, the @code{gnome-desktop-service-type}, @code{xfce-desktop-service}, @code{mate-desktop-service-type}, @code{lxqt-desktop-service-type} and @code{enlightenment-desktop-service-type} procedures can add GNOME, Xfce, MATE and/or Enlightenment to a system. To ``add GNOME'' means that system-level services like the backlight adjustment helpers and the power management utilities are added to the system, extending @code{polkit} and @code{dbus} appropriately, allowing GNOME to operate with elevated privileges on a limited number of special-purpose system interfaces. Additionally, adding a service made by @code{gnome-desktop-service-type} adds the GNOME metapackage to the system profile. Likewise, adding the Xfce service not only adds the @code{xfce} metapackage to the system profile, but it also gives the Thunar file manager the ability to open a ``root-mode'' file management window, if the user authenticates using the administrator's password via the standard polkit graphical interface. To ``add MATE'' means that @code{polkit} and @code{dbus} are extended appropriately, allowing MATE to operate with elevated privileges on a limited number of special-purpose system interfaces. Additionally, adding a service of type @code{mate-desktop-service-type} adds the MATE metapackage to the system profile. ``Adding Enlightenment'' means that @code{dbus} is extended appropriately, and several of Enlightenment's binaries are set as setuid, allowing Enlightenment's screen locker and other functionality to work as expected." msgstr "Daneben können die Prozeduren @code{gnome-desktop-service-type}, @code{xfce-desktop-service}, @code{mate-desktop-service-type}, @code{lxqt-desktop-service-type} und @code{enlightenment-desktop-service-type} jeweils GNOME, Xfce, MATE und/oder Enlightenment zu einem System hinzufügen. „GNOME hinzufügen“ bedeutet, dass Dienste auf Systemebene wie z.B.@: Hilfsprogramme zur Anpassung der Hintergrundbeleuchtung und des Energieverbrauchs zum System hinzugefügt werden und @code{polkit} und @code{dbus} entsprechend erweitert werden, wodurch GNOME mit erhöhten Berechtigungen auf eine begrenzte Zahl von speziellen Systemschnittstellen zugreifen kann. Zusätzlich bedeutet das Hinzufügen eines durch @code{gnome-desktop-service-type} erzeugten Dienstes, dass das GNOME-Metapaket ins Systemprofil eingefügt wird. Genauso wird beim Einfügen des Xfce-Dienstes nicht nur das @code{xfce}-Metapaket zum Systemprofil hinzugefügt, sondern dem Thunar-Dateiverwaltungsprogramm wird auch die Berechtigung gegeben, ein Fenster mit Administratorrechten zu öffnen, wenn der Benutzer sich mit dem Administratorpasswort über die standardmäßige grafische Oberfläche von Polkit authentisiert. „MATE hinzufügen“ bedeutet, dass @code{polkit} und @code{dbus} entsprechend erweitert werden, wodurch MATE mit erhöhten Berechtigungen auf eine begrenzte Zahl von speziellen Systemschnittstellen zugreifen kann. Zusätzlich bedeutet das Hinzufügen eines durch @code{mate-desktop-service-type} erzeugten Dienstes, dass das MATE-Metapaket ins Systemprofil eingefügt wird. „Enlightenment hinzufügen“ bedeutet, dass @code{dbus} entsprechend erweitert wird und mehrere Binärdateien von Enlightenment als setuid eingerichtet werden, wodurch das Programm zum Sperren des Bildschirms und andere Funktionen von Enlightenment wie erwartet funktionieren." #. type: Plain text -#: guix-git/doc/guix.texi:20474 +#: guix-git/doc/guix.texi:20836 msgid "The desktop environments in Guix use the Xorg display server by default. If you'd like to use the newer display server protocol called Wayland, you need to enable Wayland support in GDM (@pxref{wayland-gdm}). Another solution is to use the @code{sddm-service} instead of GDM as the graphical login manager. You should then select the ``GNOME (Wayland)'' session in SDDM@. Alternatively you can also try starting GNOME on Wayland manually from a TTY with the command ``XDG_SESSION_TYPE=wayland exec dbus-run-session gnome-session``. Currently only GNOME has support for Wayland." msgstr "Die Arbeitsumgebungen in Guix benutzen standardmäßig den Xorg-Anzeigeserver. Falls Sie das neuere Anzeigeserverprotokoll namens Wayland benutzen möchten, müssen Sie die Wayland-Unterstützung in GDM aktivieren (siehe @ref{wayland-gdm}). Alternativ können Sie den Dienst @code{sddm-service} anstelle von GDM für die grafische Anmeldeverwaltung einrichten. Dann sollten Sie in SDDM die Sitzung „GNOME (Wayland)“ auswählen. Alternativ können Sie auch versuchen, GNOME mit Wayland manuell aus einer Konsole (TTY) mit dem Befehl „XDG_SESSION_TYPE=wayland exec dbus-run-session gnome-session“ zu starten. Derzeit wird Wayland nur von GNOME unterstützt." #. type: defvr -#: guix-git/doc/guix.texi:20475 +#: guix-git/doc/guix.texi:20837 #, no-wrap msgid "{Scheme Variable} gnome-desktop-service-type" msgstr "{Scheme-Variable} gnome-desktop-service-type" #. type: defvr -#: guix-git/doc/guix.texi:20479 +#: guix-git/doc/guix.texi:20841 msgid "This is the type of the service that adds the @uref{https://www.gnome.org, GNOME} desktop environment. Its value is a @code{gnome-desktop-configuration} object (see below)." msgstr "Dies ist der Typ des Dienstes, der die @uref{https://www.gnome.org, GNOME-Arbeitsumgebung} bereitstellt. Sein Wert ist ein @code{gnome-desktop-configuration}-Objekt (siehe unten)." #. type: defvr -#: guix-git/doc/guix.texi:20482 +#: guix-git/doc/guix.texi:20844 msgid "This service adds the @code{gnome} package to the system profile, and extends polkit with the actions from @code{gnome-settings-daemon}." msgstr "Dieser Dienst fügt das @code{gnome}-Paket zum Systemprofil hinzu und erweitert Polkit um die von @code{gnome-settings-daemon} benötigten Aktionen." #. type: deftp -#: guix-git/doc/guix.texi:20484 +#: guix-git/doc/guix.texi:20846 #, no-wrap msgid "{Data Type} gnome-desktop-configuration" msgstr "{Datentyp} gnome-desktop-configuration" #. type: deftp -#: guix-git/doc/guix.texi:20486 +#: guix-git/doc/guix.texi:20848 msgid "Configuration record for the GNOME desktop environment." msgstr "Verbundsobjekt für die Konfiguration der GNOME-Arbeitsumgebung." #. type: item -#: guix-git/doc/guix.texi:20488 +#: guix-git/doc/guix.texi:20850 #, no-wrap msgid "@code{gnome} (default: @code{gnome})" msgstr "@code{gnome} (Vorgabe: @code{gnome})" #. type: table -#: guix-git/doc/guix.texi:20490 +#: guix-git/doc/guix.texi:20852 msgid "The GNOME package to use." msgstr "Welches GNOME-Paket benutzt werden soll." #. type: defvr -#: guix-git/doc/guix.texi:20493 +#: guix-git/doc/guix.texi:20855 #, no-wrap msgid "{Scheme Variable} xfce-desktop-service-type" msgstr "{Scheme-Variable} xfce-desktop-service-type" #. type: defvr -#: guix-git/doc/guix.texi:20497 +#: guix-git/doc/guix.texi:20859 msgid "This is the type of a service to run the @uref{Xfce, https://xfce.org/} desktop environment. Its value is an @code{xfce-desktop-configuration} object (see below)." msgstr "Der Typ des Dienstes, um die @uref{https://xfce.org/, Xfce-Arbeitsumgebung} auszuführen. Sein Wert ist ein @code{xfce-desktop-configuration}-Objekt (siehe unten)." #. type: defvr -#: guix-git/doc/guix.texi:20502 +#: guix-git/doc/guix.texi:20864 msgid "This service adds the @code{xfce} package to the system profile, and extends polkit with the ability for @code{thunar} to manipulate the file system as root from within a user session, after the user has authenticated with the administrator's password." msgstr "Dieser Dienst fügt das Paket @code{xfce} zum Systemprofil hinzu und erweitert Polkit, damit @code{thunar} befähigt wird, das Dateisystem aus einer Benutzersitzung heraus mit Administratorrechten zu bearbeiten, nachdem sich der Benutzer mit dem Administratorpasswort authentisiert hat." #. type: defvr -#: guix-git/doc/guix.texi:20508 +#: guix-git/doc/guix.texi:20870 msgid "Note that @code{xfce4-panel} and its plugin packages should be installed in the same profile to ensure compatibility. When using this service, you should add extra plugins (@code{xfce4-whiskermenu-plugin}, @code{xfce4-weather-plugin}, etc.) to the @code{packages} field of your @code{operating-system}." msgstr "Bedenken Sie, dass @code{xfce4-panel} und seine Plugin-Pakete in dasselbe Profil installiert werden sollten, um sicherzugehen, dass sie kompatibel sind. Wenn Sie diesen Dienst benutzen, sollten Sie zusätzliche Plugins (@code{xfce4-whiskermenu-plugin}, @code{xfce4-weather-plugin} usw.) ins @code{packages}-Feld Ihres @code{operating-system} eintragen." #. type: deftp -#: guix-git/doc/guix.texi:20510 +#: guix-git/doc/guix.texi:20872 #, no-wrap msgid "{Data Type} xfce-desktop-configuration" msgstr "{Datentyp} xfce-desktop-configuration" #. type: deftp -#: guix-git/doc/guix.texi:20512 +#: guix-git/doc/guix.texi:20874 msgid "Configuration record for the Xfce desktop environment." msgstr "Verbundstyp für Einstellungen zur Xfce-Arbeitsumgebung." #. type: item -#: guix-git/doc/guix.texi:20514 +#: guix-git/doc/guix.texi:20876 #, no-wrap msgid "@code{xfce} (default: @code{xfce})" msgstr "@code{xfce} (Vorgabe: @code{xfce})" #. type: table -#: guix-git/doc/guix.texi:20516 +#: guix-git/doc/guix.texi:20878 msgid "The Xfce package to use." msgstr "Das Xfce-Paket, was benutzt werden soll." #. type: deffn -#: guix-git/doc/guix.texi:20519 +#: guix-git/doc/guix.texi:20881 #, no-wrap msgid "{Scheme Variable} mate-desktop-service-type" msgstr "{Scheme-Variable} mate-desktop-service-type" #. type: deffn -#: guix-git/doc/guix.texi:20523 +#: guix-git/doc/guix.texi:20885 msgid "This is the type of the service that runs the @uref{https://mate-desktop.org/, MATE desktop environment}. Its value is a @code{mate-desktop-configuration} object (see below)." msgstr "Dies ist der Typ des Dienstes, um die @uref{https://mate-desktop.org/, MATE-Arbeitsumgebung} auszuführen. Sein Wert ist ein @code{mate-desktop-configuration}-Objekt (siehe unten)." #. type: deffn -#: guix-git/doc/guix.texi:20527 +#: guix-git/doc/guix.texi:20889 msgid "This service adds the @code{mate} package to the system profile, and extends polkit with the actions from @code{mate-settings-daemon}." msgstr "Dieser Dienst fügt das Paket @code{mate} ins Systemprofil ein und erweitert Polkit um die Aktionen aus dem @code{mate-settings-daemon}." #. type: deftp -#: guix-git/doc/guix.texi:20529 +#: guix-git/doc/guix.texi:20891 #, no-wrap msgid "{Data Type} mate-desktop-configuration" msgstr "{Datentyp} mate-desktop-configuration" #. type: deftp -#: guix-git/doc/guix.texi:20531 +#: guix-git/doc/guix.texi:20893 msgid "Configuration record for the MATE desktop environment." msgstr "Verbundstyp für die Einstellungen der MATE-Arbeitsumgebung." #. type: item -#: guix-git/doc/guix.texi:20533 +#: guix-git/doc/guix.texi:20895 #, no-wrap msgid "@code{mate} (default: @code{mate})" msgstr "@code{mate} (Vorgabe: @code{mate})" #. type: table -#: guix-git/doc/guix.texi:20535 +#: guix-git/doc/guix.texi:20897 msgid "The MATE package to use." msgstr "Das MATE-Paket, was benutzt werden soll." #. type: deffn -#: guix-git/doc/guix.texi:20538 +#: guix-git/doc/guix.texi:20900 #, no-wrap msgid "{Scheme Variable} lxqt-desktop-service-type" msgstr "{Scheme-Variable} lxqt-desktop-service-type" #. type: deffn -#: guix-git/doc/guix.texi:20542 +#: guix-git/doc/guix.texi:20904 msgid "This is the type of the service that runs the @uref{https://lxqt-project.org, LXQt desktop environment}. Its value is a @code{lxqt-desktop-configuration} object (see below)." msgstr "Dies ist der Typ des Dienstes, um die @uref{https://lxqt-project.org, LXQt-Arbeitsumgebung} auszuführen. Sein Wert ist ein @code{lxqt-desktop-configuration}-Objekt (siehe unten)." #. type: deffn -#: guix-git/doc/guix.texi:20545 +#: guix-git/doc/guix.texi:20907 msgid "This service adds the @code{lxqt} package to the system profile." msgstr "Dieser Dienst fügt das Paket @code{lxqt} ins Systemprofil ein." #. type: deftp -#: guix-git/doc/guix.texi:20547 +#: guix-git/doc/guix.texi:20909 #, no-wrap msgid "{Data Type} lxqt-desktop-configuration" msgstr "{Datentyp} lxqt-desktop-configuration" #. type: deftp -#: guix-git/doc/guix.texi:20549 +#: guix-git/doc/guix.texi:20911 msgid "Configuration record for the LXQt desktop environment." msgstr "Verbundstyp für Einstellungen zur LXQt-Arbeitsumgebung." #. type: item -#: guix-git/doc/guix.texi:20551 +#: guix-git/doc/guix.texi:20913 #, no-wrap msgid "@code{lxqt} (default: @code{lxqt})" msgstr "@code{lxqt} (Vorgabe: @code{lxqt})" #. type: table -#: guix-git/doc/guix.texi:20553 +#: guix-git/doc/guix.texi:20915 msgid "The LXQT package to use." msgstr "Das LXQT-Paket, was benutzt werden soll." #. type: deffn -#: guix-git/doc/guix.texi:20556 +#: guix-git/doc/guix.texi:20918 #, no-wrap msgid "{Scheme Variable} enlightenment-desktop-service-type" msgstr "{Scheme-Variable} enlightenment-desktop-service-type" #. type: deffn -#: guix-git/doc/guix.texi:20559 +#: guix-git/doc/guix.texi:20921 msgid "Return a service that adds the @code{enlightenment} package to the system profile, and extends dbus with actions from @code{efl}." msgstr "Liefert einen Dienst, der das @code{enlightenment}-Paket zum Systemprofil hinzufügt und D-Bus mit den Aktionen aus @code{efl} erweitert." #. type: deftp -#: guix-git/doc/guix.texi:20561 +#: guix-git/doc/guix.texi:20923 #, no-wrap msgid "{Data Type} enlightenment-desktop-service-configuration" msgstr "{Datentyp} enlightenment-desktop-service-configuration" #. type: item -#: guix-git/doc/guix.texi:20563 +#: guix-git/doc/guix.texi:20925 #, no-wrap msgid "@code{enlightenment} (default: @code{enlightenment})" msgstr "@code{enlightenment} (Vorgabe: @code{enlightenment})" #. type: table -#: guix-git/doc/guix.texi:20565 +#: guix-git/doc/guix.texi:20927 msgid "The enlightenment package to use." msgstr "Das Enlightenment-Paket, was benutzt werden soll." #. type: Plain text -#: guix-git/doc/guix.texi:20573 +#: guix-git/doc/guix.texi:20935 msgid "Because the GNOME, Xfce and MATE desktop services pull in so many packages, the default @code{%desktop-services} variable doesn't include any of them by default. To add GNOME, Xfce or MATE, just @code{cons} them onto @code{%desktop-services} in the @code{services} field of your @code{operating-system}:" msgstr "Weil die Desktopdienste GNOME, Xfce und MATE so viele Pakete ins System mitnehmen, gehören diese nicht zu den Vorgaben in der @code{%desktop-services}-Variablen. Um GNOME, Xfce oder MATE hinzuzufügen, benutzen Sie einfach @code{cons} zum Anhängen an die @code{%desktop-services} im @code{services}-Feld Ihrer @code{operating-system}-Deklaration:" #. type: lisp -#: guix-git/doc/guix.texi:20584 +#: guix-git/doc/guix.texi:20946 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -38560,576 +39218,576 @@ msgstr "" " …)\n" #. type: Plain text -#: guix-git/doc/guix.texi:20588 +#: guix-git/doc/guix.texi:20950 msgid "These desktop environments will then be available as options in the graphical login window." msgstr "Diese Arbeitsumgebungen stehen dann im grafischen Anmeldefenster zur Auswahl." #. type: Plain text -#: guix-git/doc/guix.texi:20592 +#: guix-git/doc/guix.texi:20954 msgid "The actual service definitions included in @code{%desktop-services} and provided by @code{(gnu services dbus)} and @code{(gnu services desktop)} are described below." msgstr "Die eigentlichen Dienstdefinitionen, die in @code{%desktop-services} stehen und durch @code{(gnu services dbus)} und @code{(gnu services desktop)} zur Verfügung gestellt werden, werden im Folgenden beschrieben." #. type: deffn -#: guix-git/doc/guix.texi:20593 +#: guix-git/doc/guix.texi:20955 #, no-wrap msgid "{Scheme Procedure} dbus-service [#:dbus @var{dbus}] [#:services '()]" msgstr "{Scheme-Prozedur} dbus-service [#:dbus @var{dbus}] [#:services '()]" #. type: deffn -#: guix-git/doc/guix.texi:20596 +#: guix-git/doc/guix.texi:20958 msgid "Return a service that runs the ``system bus'', using @var{dbus}, with support for @var{services}." msgstr "Liefert einen Dienst, der den „Systembus“ mit @var{dbus} ausführt, mit Unterstützung für die als @var{services} übergebenen Dienste." #. type: deffn -#: guix-git/doc/guix.texi:20600 +#: guix-git/doc/guix.texi:20962 msgid "@uref{https://dbus.freedesktop.org/, D-Bus} is an inter-process communication facility. Its system bus is used to allow system services to communicate and to be notified of system-wide events." msgstr "@uref{https://dbus.freedesktop.org/, D-Bus} ist eine Einrichtung zur Interprozesskommunikation. Deren Systembus wird benutzt, damit Systemdienste miteinander kommunizieren können und damit sie bei systemweiten Ereignissen benachrichtigt werden können." #. type: deffn -#: guix-git/doc/guix.texi:20605 +#: guix-git/doc/guix.texi:20967 msgid "@var{services} must be a list of packages that provide an @file{etc/dbus-1/system.d} directory containing additional D-Bus configuration and policy files. For example, to allow avahi-daemon to use the system bus, @var{services} must be equal to @code{(list avahi)}." msgstr "Als @var{services} muss eine Liste von Paketen übergeben werden, die ein Verzeichnis @file{etc/dbus-1/system.d} mit zusätzlichen D-Bus-Konfigurations- und Richtliniendateien enthalten. Damit zum Beispiel der Avahi-Daemon den Systembus benutzen kann, muss @var{services} gleich @code{(list avahi)} sein." #. type: deffn -#: guix-git/doc/guix.texi:20607 +#: guix-git/doc/guix.texi:20969 #, no-wrap msgid "{Scheme Procedure} elogind-service [#:config @var{config}]" msgstr "{Scheme-Prozedur} elogind-service [#:config @var{Konfiguration}]" #. type: deffn -#: guix-git/doc/guix.texi:20613 +#: guix-git/doc/guix.texi:20975 msgid "Return a service that runs the @code{elogind} login and seat management daemon. @uref{https://github.com/elogind/elogind, Elogind} exposes a D-Bus interface that can be used to know which users are logged in, know what kind of sessions they have open, suspend the system, inhibit system suspend, reboot the system, and other tasks." msgstr "Liefert einen Dienst, der den Anmelde- und Sitzungsdaemon @code{elogind} ausführt. @uref{https://github.com/elogind/elogind, Elogind} stellt eine D-Bus-Schnittstelle bereit, über die ausgelesen werden kann, welche Benutzer angemeldet sind und welche Sitzungen sie geöffnet haben, und außerdem das System in Bereitschaft versetzt werden kann, der Bereitschaftsmodus unterdrückt werden kann, das System neu gestartet werden kann und anderes." #. type: deffn -#: guix-git/doc/guix.texi:20617 +#: guix-git/doc/guix.texi:20979 msgid "Elogind handles most system-level power events for a computer, for example suspending the system when a lid is closed, or shutting it down when the power button is pressed." msgstr "Die meisten Energieereignisse auf Systemebene in einem Rechner werden von elogind behandelt, wie etwa ein Versetzen des Systems in Bereitschaft, wenn der Rechner zugeklappt wird, oder ein Herunterfahren beim Drücken des Stromschalters." #. type: deffn -#: guix-git/doc/guix.texi:20622 +#: guix-git/doc/guix.texi:20984 msgid "The @var{config} keyword argument specifies the configuration for elogind, and should be the result of an @code{(elogind-configuration (@var{parameter} @var{value})...)} invocation. Available parameters and their default values are:" msgstr "Das @var{config}-Schlüsselwort gibt die Konfiguration für elogind an und sollte das Ergebnis eines Aufrufs von @code{(elogind-configuration (@var{Parameter} @var{Wert})...)} sein. Verfügbare Parameter und ihre Vorgabewerte sind:" #. type: item -#: guix-git/doc/guix.texi:20624 +#: guix-git/doc/guix.texi:20986 #, no-wrap msgid "kill-user-processes?" msgstr "kill-user-processes?" #. type: code{#1} -#: guix-git/doc/guix.texi:20626 guix-git/doc/guix.texi:20646 -#: guix-git/doc/guix.texi:20648 guix-git/doc/guix.texi:20650 -#: guix-git/doc/guix.texi:20662 +#: guix-git/doc/guix.texi:20988 guix-git/doc/guix.texi:21008 +#: guix-git/doc/guix.texi:21010 guix-git/doc/guix.texi:21012 +#: guix-git/doc/guix.texi:21024 msgid "#f" msgstr "#f" #. type: item -#: guix-git/doc/guix.texi:20626 +#: guix-git/doc/guix.texi:20988 #, no-wrap msgid "kill-only-users" msgstr "kill-only-users" #. type: code{#1} -#: guix-git/doc/guix.texi:20628 guix-git/doc/guix.texi:20668 +#: guix-git/doc/guix.texi:20990 guix-git/doc/guix.texi:21030 msgid "()" msgstr "()" #. type: item -#: guix-git/doc/guix.texi:20628 +#: guix-git/doc/guix.texi:20990 #, no-wrap msgid "kill-exclude-users" msgstr "kill-exclude-users" #. type: code{#1} -#: guix-git/doc/guix.texi:20630 +#: guix-git/doc/guix.texi:20992 msgid "(\"root\")" msgstr "(\"root\")" #. type: item -#: guix-git/doc/guix.texi:20630 +#: guix-git/doc/guix.texi:20992 #, no-wrap msgid "inhibit-delay-max-seconds" msgstr "inhibit-delay-max-seconds" #. type: code{#1} -#: guix-git/doc/guix.texi:20632 +#: guix-git/doc/guix.texi:20994 msgid "5" msgstr "5" #. type: item -#: guix-git/doc/guix.texi:20632 +#: guix-git/doc/guix.texi:20994 #, no-wrap msgid "handle-power-key" msgstr "handle-power-key" #. type: code{#1} -#: guix-git/doc/guix.texi:20634 +#: guix-git/doc/guix.texi:20996 msgid "poweroff" msgstr "poweroff" #. type: item -#: guix-git/doc/guix.texi:20634 +#: guix-git/doc/guix.texi:20996 #, no-wrap msgid "handle-suspend-key" msgstr "handle-suspend-key" #. type: code{#1} -#: guix-git/doc/guix.texi:20636 guix-git/doc/guix.texi:20640 +#: guix-git/doc/guix.texi:20998 guix-git/doc/guix.texi:21002 msgid "suspend" msgstr "suspend" #. type: item -#: guix-git/doc/guix.texi:20636 +#: guix-git/doc/guix.texi:20998 #, no-wrap msgid "handle-hibernate-key" msgstr "handle-hibernate-key" #. type: code{#1} -#: guix-git/doc/guix.texi:20638 +#: guix-git/doc/guix.texi:21000 msgid "hibernate" msgstr "hibernate" #. type: item -#: guix-git/doc/guix.texi:20638 +#: guix-git/doc/guix.texi:21000 #, no-wrap msgid "handle-lid-switch" msgstr "handle-lid-switch" #. type: item -#: guix-git/doc/guix.texi:20640 +#: guix-git/doc/guix.texi:21002 #, no-wrap msgid "handle-lid-switch-docked" msgstr "handle-lid-switch-docked" #. type: code{#1} -#: guix-git/doc/guix.texi:20642 guix-git/doc/guix.texi:20644 -#: guix-git/doc/guix.texi:20656 +#: guix-git/doc/guix.texi:21004 guix-git/doc/guix.texi:21006 +#: guix-git/doc/guix.texi:21018 msgid "ignore" msgstr "ignore" #. type: item -#: guix-git/doc/guix.texi:20642 +#: guix-git/doc/guix.texi:21004 #, no-wrap msgid "handle-lid-switch-external-power" msgstr "handle-lid-switch-external-power" #. type: item -#: guix-git/doc/guix.texi:20644 +#: guix-git/doc/guix.texi:21006 #, no-wrap msgid "power-key-ignore-inhibited?" msgstr "power-key-ignore-inhibited?" #. type: item -#: guix-git/doc/guix.texi:20646 +#: guix-git/doc/guix.texi:21008 #, no-wrap msgid "suspend-key-ignore-inhibited?" msgstr "suspend-key-ignore-inhibited?" #. type: item -#: guix-git/doc/guix.texi:20648 +#: guix-git/doc/guix.texi:21010 #, no-wrap msgid "hibernate-key-ignore-inhibited?" msgstr "hibernate-key-ignore-inhibited?" #. type: item -#: guix-git/doc/guix.texi:20650 +#: guix-git/doc/guix.texi:21012 #, no-wrap msgid "lid-switch-ignore-inhibited?" msgstr "lid-switch-ignore-inhibited?" #. type: code{#1} -#: guix-git/doc/guix.texi:20652 guix-git/doc/guix.texi:20664 +#: guix-git/doc/guix.texi:21014 guix-git/doc/guix.texi:21026 msgid "#t" msgstr "#t" #. type: item -#: guix-git/doc/guix.texi:20652 +#: guix-git/doc/guix.texi:21014 #, no-wrap msgid "holdoff-timeout-seconds" msgstr "holdoff-timeout-seconds" #. type: code{#1} -#: guix-git/doc/guix.texi:20654 +#: guix-git/doc/guix.texi:21016 msgid "30" msgstr "30" #. type: item -#: guix-git/doc/guix.texi:20654 +#: guix-git/doc/guix.texi:21016 #, no-wrap msgid "idle-action" msgstr "idle-action" #. type: item -#: guix-git/doc/guix.texi:20656 +#: guix-git/doc/guix.texi:21018 #, no-wrap msgid "idle-action-seconds" msgstr "idle-action-seconds" #. type: code{#1} -#: guix-git/doc/guix.texi:20658 +#: guix-git/doc/guix.texi:21020 msgid "(* 30 60)" msgstr "(* 30 60)" #. type: item -#: guix-git/doc/guix.texi:20658 +#: guix-git/doc/guix.texi:21020 #, no-wrap msgid "runtime-directory-size-percent" msgstr "runtime-directory-size-percent" #. type: code{#1} -#: guix-git/doc/guix.texi:20660 +#: guix-git/doc/guix.texi:21022 msgid "10" msgstr "10" #. type: item -#: guix-git/doc/guix.texi:20660 +#: guix-git/doc/guix.texi:21022 #, no-wrap msgid "runtime-directory-size" msgstr "runtime-directory-size" #. type: item -#: guix-git/doc/guix.texi:20662 +#: guix-git/doc/guix.texi:21024 #, no-wrap msgid "remove-ipc?" msgstr "remove-ipc?" #. type: item -#: guix-git/doc/guix.texi:20664 +#: guix-git/doc/guix.texi:21026 #, no-wrap msgid "suspend-state" msgstr "suspend-state" #. type: code{#1} -#: guix-git/doc/guix.texi:20666 +#: guix-git/doc/guix.texi:21028 msgid "(\"mem\" \"standby\" \"freeze\")" msgstr "(\"mem\" \"standby\" \"freeze\")" #. type: item -#: guix-git/doc/guix.texi:20666 +#: guix-git/doc/guix.texi:21028 #, no-wrap msgid "suspend-mode" msgstr "suspend-mode" #. type: item -#: guix-git/doc/guix.texi:20668 +#: guix-git/doc/guix.texi:21030 #, no-wrap msgid "hibernate-state" msgstr "hibernate-state" #. type: code{#1} -#: guix-git/doc/guix.texi:20670 guix-git/doc/guix.texi:20674 +#: guix-git/doc/guix.texi:21032 guix-git/doc/guix.texi:21036 msgid "(\"disk\")" msgstr "(\"disk\")" #. type: item -#: guix-git/doc/guix.texi:20670 +#: guix-git/doc/guix.texi:21032 #, no-wrap msgid "hibernate-mode" msgstr "hibernate-mode" #. type: code{#1} -#: guix-git/doc/guix.texi:20672 +#: guix-git/doc/guix.texi:21034 msgid "(\"platform\" \"shutdown\")" msgstr "(\"platform\" \"shutdown\")" #. type: item -#: guix-git/doc/guix.texi:20672 +#: guix-git/doc/guix.texi:21034 #, no-wrap msgid "hybrid-sleep-state" msgstr "hybrid-sleep-state" #. type: item -#: guix-git/doc/guix.texi:20674 +#: guix-git/doc/guix.texi:21036 #, no-wrap msgid "hybrid-sleep-mode" msgstr "hybrid-sleep-mode" #. type: code{#1} -#: guix-git/doc/guix.texi:20676 +#: guix-git/doc/guix.texi:21038 msgid "(\"suspend\" \"platform\" \"shutdown\")" msgstr "(\"suspend\" \"platform\" \"shutdown\")" #. type: deffn -#: guix-git/doc/guix.texi:20679 +#: guix-git/doc/guix.texi:21041 #, no-wrap msgid "{Scheme Procedure} accountsservice-service @" msgstr "{Scheme-Prozedur} accountsservice-service @" #. type: deffn -#: guix-git/doc/guix.texi:20687 +#: guix-git/doc/guix.texi:21049 msgid "[#:accountsservice @var{accountsservice}] Return a service that runs AccountsService, a system service that can list available accounts, change their passwords, and so on. AccountsService integrates with PolicyKit to enable unprivileged users to acquire the capability to modify their system configuration. @uref{https://www.freedesktop.org/wiki/Software/AccountsService/, the accountsservice web site} for more information." msgstr "[#:accountsservice @var{accountsservice}] Liefert einen Dienst, der AccountsService ausführt. Dabei handelt es sich um einen Systemdienst, mit dem verfügbare Benutzerkonten aufgelistet und deren Passwörter geändert werden können, und Ähnliches. AccountsService arbeitet mit PolicyKit zusammen, um es Benutzern ohne besondere Berechtigungen zu ermöglichen, ihre Systemkonfiguration zu ändern. Siehe @uref{https://www.freedesktop.org/wiki/Software/AccountsService/, den Webauftritt von AccountsService} für weitere Informationen." #. type: deffn -#: guix-git/doc/guix.texi:20690 +#: guix-git/doc/guix.texi:21052 msgid "The @var{accountsservice} keyword argument is the @code{accountsservice} package to expose as a service." msgstr "Das Schlüsselwortargument @var{accountsservice} gibt das @code{accountsservice}-Paket an, das als Dienst verfügbar gemacht wird." #. type: deffn -#: guix-git/doc/guix.texi:20692 +#: guix-git/doc/guix.texi:21054 #, no-wrap msgid "{Scheme Procedure} polkit-service @" msgstr "{Scheme-Prozedur} polkit-service @" #. type: deffn -#: guix-git/doc/guix.texi:20701 +#: guix-git/doc/guix.texi:21063 msgid "[#:polkit @var{polkit}] Return a service that runs the @uref{https://www.freedesktop.org/wiki/Software/polkit/, Polkit privilege management service}, which allows system administrators to grant access to privileged operations in a structured way. By querying the Polkit service, a privileged system component can know when it should grant additional capabilities to ordinary users. For example, an ordinary user can be granted the capability to suspend the system if the user is logged in locally." msgstr "[#:polkit @var{polkit}] Liefert einen Dienst, der @uref{https://www.freedesktop.org/wiki/Software/polkit/, Polkit als Dienst zur Verwaltung von Berechtigungen} ausführt, wodurch Systemadministratoren auf strukturierte Weise den Zugang zu „privilegierten“ Operationen gewähren können, die erweiterte Berechtigungen erfordern. Indem der Polkit-Dienst angefragt wird, kann eine mit Berechtigungen ausgestattete Systemkomponente die Information erhalten, ob normalen Benutzern Berechtigungen gewährt werden dürfen. Zum Beispiel kann einer normalen Nutzerin die Berechtigung gegeben werden, das System in den Bereitschaftsmodus zu versetzen, unter der Voraussetzung, dass sie lokal vor Ort angemeldet ist." #. type: defvr -#: guix-git/doc/guix.texi:20703 +#: guix-git/doc/guix.texi:21065 #, no-wrap msgid "{Scheme Variable} polkit-wheel-service" msgstr "{Scheme-Variable} polkit-wheel-service" #. type: defvr -#: guix-git/doc/guix.texi:20708 +#: guix-git/doc/guix.texi:21070 msgid "Service that adds the @code{wheel} group as admins to the Polkit service. This makes it so that users in the @code{wheel} group are queried for their own passwords when performing administrative actions instead of @code{root}'s, similar to the behaviour used by @code{sudo}." msgstr "Dieser Dienst richtet die @code{wheel}-Benutzergruppe als Administratoren für den Polkit-Dienst ein. Der Zweck davon ist, dass Benutzer in der @code{wheel}-Benutzergruppe nach ihren eigenen Passwörtern gefragt werden statt dem Passwort des Administratornutzers @code{root}, wenn sie administrative Tätigkeiten durchführen, ähnlich dem, wie sich @code{sudo} verhält." #. type: defvr -#: guix-git/doc/guix.texi:20710 +#: guix-git/doc/guix.texi:21072 #, no-wrap msgid "{Scheme Variable} upower-service-type" msgstr "{Scheme-Variable} upower-service-type" #. type: defvr -#: guix-git/doc/guix.texi:20714 +#: guix-git/doc/guix.texi:21076 msgid "Service that runs @uref{https://upower.freedesktop.org/, @command{upowerd}}, a system-wide monitor for power consumption and battery levels, with the given configuration settings." msgstr "Typ des Dienstes, der @uref{https://upower.freedesktop.org/, @command{upowerd}} ausführt, ein Programm zur systemweiten Überwachung des Energieverbrauchs und der Akkuladung. Er hat die angegebenen Konfigurationseinstellungen." #. type: defvr -#: guix-git/doc/guix.texi:20717 +#: guix-git/doc/guix.texi:21079 msgid "It implements the @code{org.freedesktop.UPower} D-Bus interface, and is notably used by GNOME." msgstr "Er implementiert die D-Bus-Schnittstelle @code{org.freedesktop.UPower}. Insbesondere wird UPower auch von GNOME benutzt." #. type: deftp -#: guix-git/doc/guix.texi:20719 +#: guix-git/doc/guix.texi:21081 #, no-wrap msgid "{Data Type} upower-configuration" msgstr "{Datentyp} upower-configuration" #. type: deftp -#: guix-git/doc/guix.texi:20721 +#: guix-git/doc/guix.texi:21083 msgid "Data type representation the configuration for UPower." msgstr "Repräsentiert die Konfiguration von UPower." #. type: item -#: guix-git/doc/guix.texi:20724 +#: guix-git/doc/guix.texi:21086 #, no-wrap msgid "@code{upower} (default: @var{upower})" msgstr "@code{upower} (Vorgabe: @var{upower})" #. type: table -#: guix-git/doc/guix.texi:20726 +#: guix-git/doc/guix.texi:21088 msgid "Package to use for @code{upower}." msgstr "Das Paket, das für @code{upower} benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:20727 +#: guix-git/doc/guix.texi:21089 #, no-wrap msgid "@code{watts-up-pro?} (default: @code{#f})" msgstr "@code{watts-up-pro?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:20729 +#: guix-git/doc/guix.texi:21091 msgid "Enable the Watts Up Pro device." msgstr "Aktiviert das Watts-Up-Pro-Gerät." #. type: item -#: guix-git/doc/guix.texi:20730 +#: guix-git/doc/guix.texi:21092 #, no-wrap msgid "@code{poll-batteries?} (default: @code{#t})" msgstr "@code{poll-batteries?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:20732 +#: guix-git/doc/guix.texi:21094 msgid "Enable polling the kernel for battery level changes." msgstr "Aktiviert das regelmäßige Abfragen des Kernels bezüglich Änderungen am Stand der Akku-Ladung." #. type: item -#: guix-git/doc/guix.texi:20733 +#: guix-git/doc/guix.texi:21095 #, no-wrap msgid "@code{ignore-lid?} (default: @code{#f})" msgstr "@code{ignore-lid?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:20735 +#: guix-git/doc/guix.texi:21097 msgid "Ignore the lid state, this can be useful if it's incorrect on a device." msgstr "Ignorieren, ob der Rechner zugeklappt ist. Das kann gewünscht sein, wenn Auf- und Zuklappen nicht richtig erkannt werden." #. type: item -#: guix-git/doc/guix.texi:20736 +#: guix-git/doc/guix.texi:21098 #, no-wrap msgid "@code{use-percentage-for-policy?} (default: @code{#f})" msgstr "@code{use-percentage-for-policy?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:20739 +#: guix-git/doc/guix.texi:21101 msgid "Whether battery percentage based policy should be used. The default is to use the time left, change to @code{#t} to use the percentage." msgstr "Ob sich die Richtlinie am Akku-Ladestand in Prozent orientieren soll. Die Vorgabe ist, sich an der verbleibenden Zeit zu orientieren. Wenn Sie sie auf @code{#t} ändern, dient der Prozentstand als Orientierung." #. type: item -#: guix-git/doc/guix.texi:20740 +#: guix-git/doc/guix.texi:21102 #, no-wrap msgid "@code{percentage-low} (default: @code{10})" msgstr "@code{percentage-low} (Vorgabe: @code{10})" #. type: table -#: guix-git/doc/guix.texi:20743 +#: guix-git/doc/guix.texi:21105 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which the battery is considered low." msgstr "Wenn @code{use-percentage-for-policy?} auf @code{#t} gesetzt ist, wird hiermit der Prozentstand festgelegt, ab dem der Akku-Ladestand als niedrig gilt." #. type: item -#: guix-git/doc/guix.texi:20744 +#: guix-git/doc/guix.texi:21106 #, no-wrap msgid "@code{percentage-critical} (default: @code{3})" msgstr "@code{percentage-critical} (Vorgabe: @code{3})" #. type: table -#: guix-git/doc/guix.texi:20747 +#: guix-git/doc/guix.texi:21109 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which the battery is considered critical." msgstr "Wenn @code{use-percentage-for-policy?} auf @code{#t} gesetzt ist, wird hiermit der Prozentstand festgelegt, ab dem der Akku-Ladestand als kritisch gilt." #. type: item -#: guix-git/doc/guix.texi:20748 +#: guix-git/doc/guix.texi:21110 #, no-wrap msgid "@code{percentage-action} (default: @code{2})" msgstr "@code{percentage-action} (Vorgabe: @code{2})" #. type: table -#: guix-git/doc/guix.texi:20751 +#: guix-git/doc/guix.texi:21113 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which action will be taken." msgstr "Wenn @code{use-percentage-for-policy?} auf @code{#t} gesetzt ist, wird hiermit der Prozentstand festgelegt, ab dem Maßnahmen eingeleitet werden." #. type: item -#: guix-git/doc/guix.texi:20752 +#: guix-git/doc/guix.texi:21114 #, no-wrap msgid "@code{time-low} (default: @code{1200})" msgstr "@code{time-low} (Vorgabe: @code{1200})" #. type: table -#: guix-git/doc/guix.texi:20755 +#: guix-git/doc/guix.texi:21117 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which the battery is considered low." msgstr "Wenn @code{use-percentage-for-policy?} auf @code{#f} gesetzt ist, wird hiermit die verbleibende Zeit in Sekunden festgelegt, ab der der Akku-Ladestand als niedrig gilt." #. type: item -#: guix-git/doc/guix.texi:20756 +#: guix-git/doc/guix.texi:21118 #, no-wrap msgid "@code{time-critical} (default: @code{300})" msgstr "@code{time-critical} (Vorgabe: @code{300})" #. type: table -#: guix-git/doc/guix.texi:20759 +#: guix-git/doc/guix.texi:21121 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which the battery is considered critical." msgstr "Wenn @code{use-percentage-for-policy?} auf @code{#f} gesetzt ist, wird hiermit die verbleibende Zeit in Sekunden festgelegt, ab der der Akku-Ladestand als kritisch gilt." #. type: item -#: guix-git/doc/guix.texi:20760 +#: guix-git/doc/guix.texi:21122 #, no-wrap msgid "@code{time-action} (default: @code{120})" msgstr "@code{time-action} (Vorgabe: @code{120})" #. type: table -#: guix-git/doc/guix.texi:20763 +#: guix-git/doc/guix.texi:21125 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which action will be taken." msgstr "Wenn @code{use-percentage-for-policy?} auf @code{#f} gesetzt ist, wird hiermit die verbleibende Zeit in Sekunden festgelegt, ab der Maßnahmen eingeleitet werden." #. type: item -#: guix-git/doc/guix.texi:20764 +#: guix-git/doc/guix.texi:21126 #, no-wrap msgid "@code{critical-power-action} (default: @code{'hybrid-sleep})" msgstr "@code{critical-power-action} (Vorgabe: @code{'hybrid-sleep})" #. type: table -#: guix-git/doc/guix.texi:20767 +#: guix-git/doc/guix.texi:21129 msgid "The action taken when @code{percentage-action} or @code{time-action} is reached (depending on the configuration of @code{use-percentage-for-policy?})." msgstr "Welche Maßnahme eingeleitet wird, wenn die @code{percentage-action} oder @code{time-action} erreicht wurde (je nachdem, wie @code{use-percentage-for-policy?} eingestellt wurde)." #. type: table -#: guix-git/doc/guix.texi:20769 +#: guix-git/doc/guix.texi:21131 msgid "Possible values are:" msgstr "Mögliche Werte sind:" #. type: code{#1} -#: guix-git/doc/guix.texi:20773 +#: guix-git/doc/guix.texi:21135 msgid "'power-off" msgstr "'power-off" #. type: code{#1} -#: guix-git/doc/guix.texi:20776 +#: guix-git/doc/guix.texi:21138 msgid "'hibernate" msgstr "'hibernate" #. type: itemize -#: guix-git/doc/guix.texi:20779 +#: guix-git/doc/guix.texi:21141 msgid "@code{'hybrid-sleep}." msgstr "@code{'hybrid-sleep}." #. type: deffn -#: guix-git/doc/guix.texi:20784 +#: guix-git/doc/guix.texi:21146 #, no-wrap msgid "{Scheme Procedure} udisks-service [#:udisks @var{udisks}]" msgstr "{Scheme-Prozedur} udisks-service [#:udisks @var{udisks}]" #. type: deffn -#: guix-git/doc/guix.texi:20794 +#: guix-git/doc/guix.texi:21156 msgid "Return a service for @uref{https://udisks.freedesktop.org/docs/latest/, UDisks}, a @dfn{disk management} daemon that provides user interfaces with notifications and ways to mount/unmount disks. Programs that talk to UDisks include the @command{udisksctl} command, part of UDisks, and GNOME Disks. Note that Udisks relies on the @command{mount} command, so it will only be able to use the file-system utilities installed in the system profile. For example if you want to be able to mount NTFS file-systems in read and write fashion, you'll need to have @code{ntfs-3g} installed system-wide." msgstr "Liefert einen Dienst für @uref{https://udisks.freedesktop.org/docs/latest/, UDisks}, einen Daemon zur @dfn{Datenträgerverwaltung}, der Benutzeroberflächen mit Benachrichtigungen und Möglichkeiten zum Einbinden und Aushängen von Datenträgern versorgt. Zu den Programmen, die mit UDisks kommunizieren, gehört der Befehl @command{udisksctl}, der Teil von UDisks ist, sowie GNOME Disks. Beachten Sie, dass Udisks über den Befehl @command{mount} funktioniert; man kann damit also nur die Dateisystemwerkzeuge benutzen, die ins Systemprofil installiert sind. Wenn Sie also NTFS-Dateisysteme zum Lesen und Schreiben öffnen können möchten, müssen Sie @code{ntfs-3g} systemweit installiert haben." #. type: deffn -#: guix-git/doc/guix.texi:20796 +#: guix-git/doc/guix.texi:21158 #, no-wrap msgid "{Scheme Variable} colord-service-type" msgstr "{Scheme-Variable} colord-service-type" #. type: deffn -#: guix-git/doc/guix.texi:20803 +#: guix-git/doc/guix.texi:21165 msgid "This is the type of the service that runs @command{colord}, a system service with a D-Bus interface to manage the color profiles of input and output devices such as screens and scanners. It is notably used by the GNOME Color Manager graphical tool. See @uref{https://www.freedesktop.org/software/colord/, the colord web site} for more information." msgstr "Dies ist der Typ des Dienstes, der @command{colord} ausführt. Dabei handelt es sich um einen Systemdienst mit einer D-Bus-Schnittstelle, um die Farbprofile von Ein- und Ausgabegeräten wie Bildschirmen oder Scannern zu verwalten. Insbesondere wird colord vom grafischen GNOME-Farbverwaltungswerkzeug benutzt. Siehe @uref{https://www.freedesktop.org/software/colord/, den Webauftritt von colord} für weitere Informationen." #. type: cindex -#: guix-git/doc/guix.texi:20805 +#: guix-git/doc/guix.texi:21167 #, no-wrap msgid "scanner access" msgstr "Scanner, Zugriff auf" #. type: defvr -#: guix-git/doc/guix.texi:20806 +#: guix-git/doc/guix.texi:21168 #, no-wrap msgid "{Scheme Variable} sane-service-type" msgstr "{Scheme-Variable} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:20812 +#: guix-git/doc/guix.texi:21174 msgid "This service provides access to scanners @i{via} @uref{http://www.sane-project.org, SANE} by installing the necessary udev rules. It is included in @code{%desktop-services} (@pxref{Desktop Services}) and relies by default on @code{sane-backends-minimal} package (see below) for hardware support." msgstr "Mit diesem Dienst wird Zugriff auf Scanner über @uref{http://www.sane-project.org, SANE} möglich, indem er die nötigen udev-Regeln installiert. Er ist Teil von @code{%desktop-services} (siehe @ref{Desktop Services}) und verwendet in den Vorgabeeinstellungen das Paket @code{sane-backends-minimal} (siehe unten) für die Hardwareunterstützung." #. type: defvr -#: guix-git/doc/guix.texi:20814 +#: guix-git/doc/guix.texi:21176 #, no-wrap msgid "{Scheme Variable} sane-backends-minimal" msgstr "{Scheme-Variable} sane-backends-minimal" #. type: defvr -#: guix-git/doc/guix.texi:20817 +#: guix-git/doc/guix.texi:21179 msgid "The default package which the @code{sane-service-type} installs. It supports many recent scanners." msgstr "Das vorgegebene Paket, das durch den @code{sane-service-type} installiert wird. Es unterstützt viele aktuelle Scanner." #. type: defvr -#: guix-git/doc/guix.texi:20819 +#: guix-git/doc/guix.texi:21181 #, no-wrap msgid "{Scheme Variable} sane-backends" msgstr "{Scheme-Variable} sane-backends" #. type: defvr -#: guix-git/doc/guix.texi:20826 +#: guix-git/doc/guix.texi:21188 msgid "This package includes support for all scanners that @code{sane-backends-minimal} supports, plus older Hewlett-Packard scanners supported by @code{hplip} package. In order to use this on a system which relies on @code{%desktop-services}, you may use @code{modify-services} (@pxref{Service Reference, @code{modify-services}}) as illustrated below:" msgstr "Dieses Paket bietet Unterstützung für alle Scanner, die @code{sane-backends-minimal} unterstützt, und außerdem für ältere Hewlett-Packard-Scanner, die das Paket @code{hplip} unterstützt. Um es auf einem System zu benutzen, das auf den @code{%desktop-services} aufbaut, können Sie @code{modify-services} benutzen (siehe @ref{Service Reference, @code{modify-services}}), etwa so:" #. type: lisp -#: guix-git/doc/guix.texi:20835 +#: guix-git/doc/guix.texi:21197 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -39151,7 +39809,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:20840 +#: guix-git/doc/guix.texi:21202 #, no-wrap msgid "" "(define %my-desktop-services\n" @@ -39168,7 +39826,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:20844 +#: guix-git/doc/guix.texi:21206 #, no-wrap msgid "" "(operating-system\n" @@ -39180,214 +39838,214 @@ msgstr "" " (services %my-desktop-services))\n" #. type: deffn -#: guix-git/doc/guix.texi:20847 +#: guix-git/doc/guix.texi:21209 #, no-wrap msgid "{Scheme Procedure} geoclue-application name [#:allowed? #t] [#:system? #f] [#:users '()]" msgstr "{Scheme-Prozedur} geoclue-application Name [#:allowed? #t] [#:system? #f] [#:users '()]" #. type: deffn -#: guix-git/doc/guix.texi:20856 +#: guix-git/doc/guix.texi:21218 msgid "Return a configuration allowing an application to access GeoClue location data. @var{name} is the Desktop ID of the application, without the @code{.desktop} part. If @var{allowed?} is true, the application will have access to location information by default. The boolean @var{system?} value indicates whether an application is a system component or not. Finally @var{users} is a list of UIDs of all users for which this application is allowed location info access. An empty users list means that all users are allowed." msgstr "Liefert eine Konfiguration, mit der eine Anwendung auf Ortungsdaten von GeoClue zugreifen kann. Als @var{Name} wird die Desktop-ID der Anwendung angegeben, ohne die Pfadkomponente mit @code{.desktop}-Endung. Wenn @var{allowed?} wahr ist, hat die Anwendung standardmäßig Zugriff auf Ortungsinformationen. Der boolesche Wert @var{system?} zeigt an, ob die Anwendung eine Systemkomponente ist oder nicht. Zum Schluss wird für @var{users} eine Liste von Benutzeridentifikatoren (UIDs) aller Benutzerkonten angegeben, für die diese Anwendung Zugriff auf Ortungsinformationen gewährt bekommt. Eine leere Benutzerliste bedeutet, dass dies für alle Benutzer gewährt wird." #. type: defvr -#: guix-git/doc/guix.texi:20858 +#: guix-git/doc/guix.texi:21220 #, no-wrap msgid "{Scheme Variable} %standard-geoclue-applications" msgstr "{Scheme-Variable} %standard-geoclue-applications" #. type: defvr -#: guix-git/doc/guix.texi:20865 +#: guix-git/doc/guix.texi:21227 msgid "The standard list of well-known GeoClue application configurations, granting authority to the GNOME date-and-time utility to ask for the current location in order to set the time zone, and allowing the IceCat and Epiphany web browsers to request location information. IceCat and Epiphany both query the user before allowing a web page to know the user's location." msgstr "Die Standardliste wohlbekannter GeoClue-Anwendungskonfigurationen, mit der das GNOME-Werkzeug für Datum und Uhrzeit die Berechtigung bekommt, den aktuellen Ort abzufragen, um die Zeitzone festzulegen, und die Webbrowser IceCat und Epiphany Ortsinformationen abfragen dürfen. IceCat und Epiphany fragen beide zuerst beim Benutzer nach, bevor sie einer Webseite gestatten, den Ort des Benutzer abzufragen." #. type: deffn -#: guix-git/doc/guix.texi:20867 +#: guix-git/doc/guix.texi:21229 #, no-wrap msgid "{Scheme Procedure} geoclue-service [#:colord @var{colord}] @" msgstr "{Scheme-Prozedur} geoclue-service [#:colord @var{colord}] @" #. type: deffn -#: guix-git/doc/guix.texi:20880 +#: guix-git/doc/guix.texi:21242 msgid "[#:whitelist '()] @ [#:wifi-geolocation-url \"https://location.services.mozilla.com/v1/geolocate?key=geoclue\"] @ [#:submit-data? #f] [#:wifi-submission-url \"https://location.services.mozilla.com/v1/submit?key=geoclue\"] @ [#:submission-nick \"geoclue\"] @ [#:applications %standard-geoclue-applications] Return a service that runs the GeoClue location service. This service provides a D-Bus interface to allow applications to request access to a user's physical location, and optionally to add information to online location databases. See @uref{https://wiki.freedesktop.org/www/Software/GeoClue/, the GeoClue web site} for more information." msgstr "[#:whitelist '()] @ [#:wifi-geolocation-url \"https://location.services.mozilla.com/v1/geolocate?key=geoclue\"] @ [#:submit-data? #f] [#:wifi-submission-url \"https://location.services.mozilla.com/v1/submit?key=geoclue\"] @ [#:submission-nick \"geoclue\"] @ [#:applications %standard-geoclue-applications] Liefert einen Dienst, der den Ortungsdienst GeoClue ausführt. Dieser Dienst bietet eine D-Bus-Schnittstelle an, mit der Anwendungen Zugriff auf den physischen Ort eines Benutzers anfragen können, und optional Informationen in Online-Ortsdatenbanken eintragen können. Siehe @uref{https://wiki.freedesktop.org/www/Software/GeoClue/, den Webauftritt von GeoClue} für weitere Informationen." #. type: deffn -#: guix-git/doc/guix.texi:20882 +#: guix-git/doc/guix.texi:21244 #, no-wrap msgid "{Scheme Procedure} bluetooth-service [#:bluez @var{bluez}] @" msgstr "{Scheme-Prozedur} bluetooth-service [#:bluez @var{bluez}] @" #. type: deffn -#: guix-git/doc/guix.texi:20889 +#: guix-git/doc/guix.texi:21251 msgid "[@w{#:auto-enable? #f}] Return a service that runs the @command{bluetoothd} daemon, which manages all the Bluetooth devices and provides a number of D-Bus interfaces. When AUTO-ENABLE? is true, the bluetooth controller is powered automatically at boot, which can be useful when using a bluetooth keyboard or mouse." msgstr "[@w{#:auto-enable? #f}] Liefert einen Dienst, der den @command{bluetoothd}-Daemon ausführt, welcher alle Bluetooth-Geräte verwaltet, und eine Reihe von D-Bus-Schnittstellen zur Verfügung stellt. Wenn AUTO-ENABLE? wahr ist, wird die Bluetooth-Steuerung automatisch beim Hochfahren gestartet, was sich als nützlich erweisen kann, wenn man eine Bluetooth-Tastatur oder -Maus benutzt." #. type: deffn -#: guix-git/doc/guix.texi:20891 +#: guix-git/doc/guix.texi:21253 msgid "Users need to be in the @code{lp} group to access the D-Bus service." msgstr "Benutzer müssen zur @code{lp}-Benutzergruppe gehören, damit sie Zugriff auf den D-Bus-Dienst bekommen." #. type: defvr -#: guix-git/doc/guix.texi:20893 +#: guix-git/doc/guix.texi:21255 #, no-wrap msgid "{Scheme Variable} gnome-keyring-service-type" msgstr "{Scheme-Variable} gnome-keyring-service-type" #. type: defvr -#: guix-git/doc/guix.texi:20897 +#: guix-git/doc/guix.texi:21259 msgid "This is the type of the service that adds the @uref{https://wiki.gnome.org/Projects/GnomeKeyring, GNOME Keyring}. Its value is a @code{gnome-keyring-configuration} object (see below)." msgstr "Dies ist der Typ des Dienstes, der den @uref{https://wiki.gnome.org/Projects/GnomeKeyring, GNOME-Schlüsselbund} bereitstellt. Sein Wert ist ein @code{gnome-keyring-configuration}-Objekt (siehe unten)." #. type: defvr -#: guix-git/doc/guix.texi:20901 +#: guix-git/doc/guix.texi:21263 msgid "This service adds the @code{gnome-keyring} package to the system profile and extends PAM with entries using @code{pam_gnome_keyring.so}, unlocking a user's login keyring when they log in or setting its password with passwd." msgstr "Dieser Dienst fügt das @code{gnome-keyring}-Paket zum Systemprofil hinzu und erweitert PAM um Einträge zur Nutzung von @code{pam_gnome_keyring.so}, wodurch der Schlüsselbund von Nutzern entsperrt wird, wenn sie sich anmelden, und passwd auch das Passwort des Schlüsselbunds festlegt." #. type: deftp -#: guix-git/doc/guix.texi:20903 +#: guix-git/doc/guix.texi:21265 #, no-wrap msgid "{Data Type} gnome-keyring-configuration" msgstr "{Datentyp} gnome-keyring-configuration" #. type: deftp -#: guix-git/doc/guix.texi:20905 +#: guix-git/doc/guix.texi:21267 msgid "Configuration record for the GNOME Keyring service." msgstr "Verbundsobjekt für die Konfiguration des GNOME-Schlüsselbunddienstes." #. type: item -#: guix-git/doc/guix.texi:20907 +#: guix-git/doc/guix.texi:21269 #, no-wrap msgid "@code{keyring} (default: @code{gnome-keyring})" msgstr "@code{keyring} (Vorgabe: @code{gnome-keyring})" #. type: table -#: guix-git/doc/guix.texi:20909 +#: guix-git/doc/guix.texi:21271 msgid "The GNOME keyring package to use." msgstr "Welches GNOME-Schlüsselbund-Paket benutzt werden soll." #. type: code{#1} -#: guix-git/doc/guix.texi:20910 +#: guix-git/doc/guix.texi:21272 #, no-wrap msgid "pam-services" msgstr "pam-services" #. type: table -#: guix-git/doc/guix.texi:20915 +#: guix-git/doc/guix.texi:21277 msgid "A list of @code{(@var{service} . @var{kind})} pairs denoting PAM services to extend, where @var{service} is the name of an existing service to extend and @var{kind} is one of @code{login} or @code{passwd}." msgstr "Eine Liste von Paaren aus @code{(@var{Dienst} . @var{Typ})}, die zu erweiternde PAM-Dienste bezeichnen. Dabei steht @var{Dienst} für den Namen eines bestehenden Dienstes, der erweitert werden soll, und als @var{Typ} kann @code{login} oder @code{passwd} angegeben werden." #. type: table -#: guix-git/doc/guix.texi:20921 +#: guix-git/doc/guix.texi:21283 msgid "If @code{login} is given, it adds an optional @code{pam_gnome_keyring.so} to the auth block without arguments and to the session block with @code{auto_start}. If @code{passwd} is given, it adds an optional @code{pam_gnome_keyring.so} to the password block without arguments." msgstr "Wenn @code{login} angegeben wird, wird ein optionales @code{pam_gnome_keyring.so} zum Auth-Block ohne Argumente und zum Session-Block mit @code{auto_start} hinzugefügt. Wenn @code{passwd} angegeben wird, wird ein optionales @code{pam_gnome_keyring.so} zum Password-Block ohne Argumente hinzugefügt." #. type: table -#: guix-git/doc/guix.texi:20924 +#: guix-git/doc/guix.texi:21286 msgid "By default, this field contains ``gdm-password'' with the value @code{login} and ``passwd'' is with the value @code{passwd}." msgstr "Der vorgegebene Inhalt ist „gdm-password“ mit dem Wert @code{login} und „passwd“ mit dem Wert @code{passwd}." #. type: cindex -#: guix-git/doc/guix.texi:20931 +#: guix-git/doc/guix.texi:21293 #, no-wrap msgid "sound support" msgstr "Sound-Unterstützung" #. type: cindex -#: guix-git/doc/guix.texi:20932 +#: guix-git/doc/guix.texi:21294 #, no-wrap msgid "ALSA" msgstr "ALSA" #. type: cindex -#: guix-git/doc/guix.texi:20933 +#: guix-git/doc/guix.texi:21295 #, no-wrap msgid "PulseAudio, sound support" msgstr "PulseAudio, Sound-Unterstützung" #. type: Plain text -#: guix-git/doc/guix.texi:20938 +#: guix-git/doc/guix.texi:21300 msgid "The @code{(gnu services sound)} module provides a service to configure the Advanced Linux Sound Architecture (ALSA) system, which makes PulseAudio the preferred ALSA output driver." msgstr "Das Modul @code{(gnu services sound)} stellt einen Dienst zur Verfügung, um das Advanced-Linux-Sound-Architecture-System (ALSA) zu konfigurieren, so dass PulseAudio als bevorzugter ALSA-Ausgabetreiber benutzt wird." #. type: deffn -#: guix-git/doc/guix.texi:20939 +#: guix-git/doc/guix.texi:21301 #, no-wrap msgid "{Scheme Variable} alsa-service-type" msgstr "{Scheme-Variable} alsa-service-type" #. type: deffn -#: guix-git/doc/guix.texi:20944 +#: guix-git/doc/guix.texi:21306 msgid "This is the type for the @uref{https://alsa-project.org/, Advanced Linux Sound Architecture} (ALSA) system, which generates the @file{/etc/asound.conf} configuration file. The value for this type is a @command{alsa-configuration} record as in this example:" msgstr "Dies ist der Typ des Dienstes für das als @uref{https://alsa-project.org/, Advanced Linux Sound Architecture (ALSA)} bekannte System, das die Konfigurationsdatei @file{/etc/asound.conf} erzeugt. Der Wert für diesen Diensttyp ist ein @command{alsa-configuration}-Verbundsobjekt wie in diesem Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:20947 +#: guix-git/doc/guix.texi:21309 #, no-wrap msgid "(service alsa-service-type)\n" msgstr "(service alsa-service-type)\n" #. type: deffn -#: guix-git/doc/guix.texi:20950 +#: guix-git/doc/guix.texi:21312 msgid "See below for details about @code{alsa-configuration}." msgstr "Siehe die folgenden Details zur @code{alsa-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:20952 +#: guix-git/doc/guix.texi:21314 #, no-wrap msgid "{Data Type} alsa-configuration" msgstr "{Datentyp} alsa-configuration" #. type: deftp -#: guix-git/doc/guix.texi:20954 +#: guix-git/doc/guix.texi:21316 msgid "Data type representing the configuration for @code{alsa-service}." msgstr "Repräsentiert die Konfiguration für den Dienst @code{alsa-service}." #. type: item -#: guix-git/doc/guix.texi:20956 +#: guix-git/doc/guix.texi:21318 #, no-wrap msgid "@code{alsa-plugins} (default: @var{alsa-plugins})" msgstr "@code{alsa-plugins} (Vorgabe: @var{alsa-plugins})" #. type: table -#: guix-git/doc/guix.texi:20958 +#: guix-git/doc/guix.texi:21320 msgid "@code{alsa-plugins} package to use." msgstr "@code{alsa-plugins}-Paket, was benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:20959 +#: guix-git/doc/guix.texi:21321 #, no-wrap msgid "@code{pulseaudio?} (default: @var{#t})" msgstr "@code{pulseaudio?} (Vorgabe: @var{#t})" #. type: table -#: guix-git/doc/guix.texi:20962 +#: guix-git/doc/guix.texi:21324 msgid "Whether ALSA applications should transparently be made to use the @uref{https://www.pulseaudio.org/, PulseAudio} sound server." msgstr "Ob ALSA-Anwendungen transparent den @uref{https://www.pulseaudio.org/, PulseAudio-Audioserver} benutzen sollen." #. type: table -#: guix-git/doc/guix.texi:20966 +#: guix-git/doc/guix.texi:21328 msgid "Using PulseAudio allows you to run several sound-producing applications at the same time and to individual control them @i{via} @command{pavucontrol}, among other things." msgstr "Wenn PulseAudio benutzt wird, können Sie gleichzeitig mehrere Anwendungen mit Tonausgabe ausführen und sie unter anderem mit @command{pavucontrol} einzeln einstellen." #. type: item -#: guix-git/doc/guix.texi:20967 +#: guix-git/doc/guix.texi:21329 #, no-wrap msgid "@code{extra-options} (default: @var{\"\"})" msgstr "@code{extra-options} (Vorgabe: @var{\"\"})" #. type: table -#: guix-git/doc/guix.texi:20969 +#: guix-git/doc/guix.texi:21331 msgid "String to append to the @file{/etc/asound.conf} file." msgstr "Die Zeichenkette, die an die Datei @file{/etc/asound.conf} angehängt werden soll." #. type: Plain text -#: guix-git/doc/guix.texi:20975 +#: guix-git/doc/guix.texi:21337 msgid "Individual users who want to override the system configuration of ALSA can do it with the @file{~/.asoundrc} file:" msgstr "Wenn einzelne Benutzer von ALSAs Systemkonfiguration abweichende Einstellungen vornehmen möchten, können Sie das mit der Konfigurationsdatei @file{~/.asoundrc} tun:" #. type: example -#: guix-git/doc/guix.texi:20981 +#: guix-git/doc/guix.texi:21343 #, no-wrap msgid "" "# In guix, we have to specify the absolute path for plugins.\n" @@ -39403,7 +40061,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:20990 +#: guix-git/doc/guix.texi:21352 #, no-wrap msgid "" "# Routing ALSA to jack:\n" @@ -39427,7 +40085,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:20996 +#: guix-git/doc/guix.texi:21358 #, no-wrap msgid "" " capture_ports @{\n" @@ -39445,7 +40103,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:21003 +#: guix-git/doc/guix.texi:21365 #, no-wrap msgid "" "pcm.!default @{\n" @@ -39463,104 +40121,106 @@ msgstr "" "@}\n" #. type: Plain text -#: guix-git/doc/guix.texi:21007 +#: guix-git/doc/guix.texi:21369 msgid "See @uref{https://www.alsa-project.org/main/index.php/Asoundrc} for the details." msgstr "Siehe @uref{https://www.alsa-project.org/main/index.php/Asoundrc} für die Details." #. type: deffn -#: guix-git/doc/guix.texi:21008 +#: guix-git/doc/guix.texi:21370 #, no-wrap msgid "{Scheme Variable} pulseaudio-service-type" msgstr "{Scheme-Variable} pulseaudio-service-type" #. type: deffn -#: guix-git/doc/guix.texi:21012 +#: guix-git/doc/guix.texi:21374 msgid "This is the type for the @uref{https://www.pulseaudio.org/, PulseAudio} sound server. It exists to allow system overrides of the default settings via @code{pulseaudio-configuration}, see below." msgstr "Dies ist der Diensttyp für den @url{https://www.pulseaudio.org/, PulseAudio-Soundserver}. Mit ihm können die Voreinstellungen systemweit abgeändert werden. Dazu benutzen Sie eine @code{pulseaudio-configuration}, siehe unten." #. type: quotation -#: guix-git/doc/guix.texi:21018 +#: guix-git/doc/guix.texi:21380 msgid "This service overrides per-user configuration files. If you want PulseAudio to honor configuration files in @file{~/.config/pulse} you have to unset the environment variables @env{PULSE_CONFIG} and @env{PULSE_CLIENTCONFIG} in your @file{~/.bash_profile}." msgstr "Durch diesen Dienst werden Einstellungen vorgenommen, die Vorrang vor den Konfigurationsdateien des Benutzers haben. Wenn PulseAudio Konfigurationsdateien in @file{~/.config/pulse} beachten soll, müssen Sie die Umgebungsvariablen @env{PULSE_CONFIG} und @env{PULSE_CLIENTCONFIG} in Ihrer @file{~/.bash_profile} deaktivieren." #. type: quotation -#: guix-git/doc/guix.texi:21026 +#: guix-git/doc/guix.texi:21388 msgid "This service on its own does not ensure, that the @code{pulseaudio} package exists on your machine. It merely adds configuration files for it, as detailed below. In the (admittedly unlikely) case, that you find yourself without a @code{pulseaudio} package, consider enabling it through the @code{alsa-service-type} above." msgstr "Dieser Dienst sorgt alleine noch nicht dafür, dass auf ihrer Maschine das @code{pulseaudio}-Paket vorliegt. Er fügt bloß Konfigurationsdateien dafür hinzu, wie im Folgenden beschrieben. Für den (zugegebenermaßen unwahrscheinlichen) Fall, dass Ihnen ein @code{pulseaudio}-Paket fehlt, möchten Sie es vielleicht durch den oben genannten @code{alsa-service-type} aktivieren." #. type: deftp -#: guix-git/doc/guix.texi:21029 +#: guix-git/doc/guix.texi:21391 #, no-wrap msgid "{Data Type} pulseaudio-configuration" msgstr "{Datentyp} pulseaudio-configuration" #. type: deftp -#: guix-git/doc/guix.texi:21031 +#: guix-git/doc/guix.texi:21393 msgid "Data type representing the configuration for @code{pulseaudio-service}." msgstr "Repräsentiert die Konfiguration für den Dienst @code{pulseaudio-service}." #. type: item -#: guix-git/doc/guix.texi:21033 +#: guix-git/doc/guix.texi:21395 #, no-wrap msgid "@code{client-conf} (default: @code{'()})" msgstr "@code{client-conf} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:21038 -msgid "List of settings to set in @file{client.conf}. Accepts a list of strings or a symbol-value pairs. A string will be inserted as-is with a newline added. A pair will be formatted as ``key = value'', again with a newline added." +#: guix-git/doc/guix.texi:21400 +#, fuzzy +#| msgid "List of settings to set in @file{client.conf}. Accepts a list of strings or a symbol-value pairs. A string will be inserted as-is with a newline added. A pair will be formatted as ``key = value'', again with a newline added." +msgid "List of settings to set in @file{client.conf}. Accepts a list of strings or symbol-value pairs. A string will be inserted as-is with a newline added. A pair will be formatted as ``key = value'', again with a newline added." msgstr "Eine Liste der Einstellungen, die in @file{client.conf} vorgenommen werden. Hierfür wird eine Liste von entweder Zeichenketten oder Symbol-Wert-Paaren akzeptiert. Eine Zeichenkette wird so, wie sie ist, eingefügt, mit einem Zeilenumbruch danach. Ein Paar wird als „Schlüssel = Wert“ formatiert, auch hier gefolgt von einem Zeilenumbruch." #. type: item -#: guix-git/doc/guix.texi:21039 +#: guix-git/doc/guix.texi:21401 #, no-wrap msgid "@code{daemon-conf} (default: @code{'((flat-volumes . no))})" msgstr "@code{daemon-conf} (Vorgabe: @code{'((flat-volumes . no))})" #. type: table -#: guix-git/doc/guix.texi:21042 +#: guix-git/doc/guix.texi:21404 msgid "List of settings to set in @file{daemon.conf}, formatted just like @var{client-conf}." msgstr "Eine Liste der Einstellungen, die in @file{daemon.conf} vorgenommen werden, im gleichen Format wie @var{client-conf}." #. type: item -#: guix-git/doc/guix.texi:21043 +#: guix-git/doc/guix.texi:21405 #, no-wrap msgid "@code{script-file} (default: @code{(file-append pulseaudio \"/etc/pulse/default.pa\")})" msgstr "@code{script-file} (Vorgabe: @code{(file-append pulseaudio \"/etc/pulse/default.pa\")})" #. type: table -#: guix-git/doc/guix.texi:21045 +#: guix-git/doc/guix.texi:21407 msgid "Script file to use as @file{default.pa}." msgstr "Welche Skriptdatei als @file{default.pa} verwendet werden soll." #. type: item -#: guix-git/doc/guix.texi:21046 +#: guix-git/doc/guix.texi:21408 #, no-wrap msgid "@code{system-script-file} (default: @code{(file-append pulseaudio \"/etc/pulse/system.pa\")})" msgstr "@code{system-script-file} (Vorgabe: @code{(file-append pulseaudio \"/etc/pulse/system.pa\")})" #. type: table -#: guix-git/doc/guix.texi:21048 +#: guix-git/doc/guix.texi:21410 msgid "Script file to use as @file{system.pa}." msgstr "Welche Skriptdatei als @file{system.pa} verwendet werden soll." #. type: deffn -#: guix-git/doc/guix.texi:21051 +#: guix-git/doc/guix.texi:21413 #, no-wrap msgid "{Scheme Variable} ladspa-service-type" msgstr "{Scheme-Variable} ladspa-service-type" #. type: deffn -#: guix-git/doc/guix.texi:21054 +#: guix-git/doc/guix.texi:21416 msgid "This service sets the @var{LADSPA_PATH} variable, so that programs, which respect it, e.g. PulseAudio, can load LADSPA plugins." msgstr "Der Diensttyp für den Dienst, der die @var{LADSPA_PATH}-Variable festlegt, damit sie beachtende Programme, z.B.@: PulseAudio, LADSPA-Plugins laden können." #. type: deffn -#: guix-git/doc/guix.texi:21057 +#: guix-git/doc/guix.texi:21419 msgid "The following example will setup the service to enable modules from the @code{swh-plugins} package:" msgstr "Das folgende Beispiel wird den Dienst so einrichten, dass Module aus dem @code{swh-plugins}-Paket aktiviert werden:" #. type: lisp -#: guix-git/doc/guix.texi:21061 +#: guix-git/doc/guix.texi:21423 #, no-wrap msgid "" "(service ladspa-service-type\n" @@ -39570,34 +40230,34 @@ msgstr "" " (ladspa-configuration (plugins (list swh-plugins))))\n" #. type: deffn -#: guix-git/doc/guix.texi:21065 +#: guix-git/doc/guix.texi:21427 msgid "See @uref{http://plugin.org.uk/ladspa-swh/docs/ladspa-swh.html} for the details." msgstr "Siehe @uref{http://plugin.org.uk/ladspa-swh/docs/ladspa-swh.html} für die Details." #. type: cindex -#: guix-git/doc/guix.texi:21072 +#: guix-git/doc/guix.texi:21434 #, no-wrap msgid "SQL" msgstr "SQL" #. type: Plain text -#: guix-git/doc/guix.texi:21074 +#: guix-git/doc/guix.texi:21436 msgid "The @code{(gnu services databases)} module provides the following services." msgstr "Das Modul @code{(gnu services databases)} stellt die folgenden Dienste zur Verfügung." #. type: subsubheading -#: guix-git/doc/guix.texi:21075 +#: guix-git/doc/guix.texi:21437 #, no-wrap msgid "PostgreSQL" msgstr "PostgreSQL" #. type: Plain text -#: guix-git/doc/guix.texi:21079 +#: guix-git/doc/guix.texi:21441 msgid "The following example describes a PostgreSQL service with the default configuration." msgstr "Das folgende Beispiel zeigt einen PostgreSQL-Dienst in seiner Vorgabekonfiguration." #. type: lisp -#: guix-git/doc/guix.texi:21084 +#: guix-git/doc/guix.texi:21446 #, no-wrap msgid "" "(service postgresql-service-type\n" @@ -39609,17 +40269,17 @@ msgstr "" " (postgresql postgresql-10)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:21090 +#: guix-git/doc/guix.texi:21452 msgid "If the services fails to start, it may be due to an incompatible cluster already present in @var{data-directory}. Adjust it (or, if you don't need the cluster anymore, delete @var{data-directory}), then restart the service." msgstr "Wenn diese Dienste nicht starten können, ist vielleicht bereits ein inkompatibler Datenbankverbund („Cluster“) in @var{data-directory} vorhanden. Ändern Sie dann den Wert dafür (oder falls Sie den Verbund nicht mehr brauchen, löschen Sie @var{data-directory} einfach) und starten Sie den Dienst neu." #. type: Plain text -#: guix-git/doc/guix.texi:21097 +#: guix-git/doc/guix.texi:21459 msgid "Peer authentication is used by default and the @code{postgres} user account has no shell, which prevents the direct execution of @code{psql} commands as this user. To use @code{psql}, you can temporarily log in as @code{postgres} using a shell, create a PostgreSQL superuser with the same name as one of the system users and then create the associated database." msgstr "Nach Voreinstellung müssen sich normale Benutzerkonten des Guix-Systems, die mit PostgreSQL kommunizieren, sogenannte „Peers“, zunächst authentifizieren. Allerdings ist für das @code{postgres}-Benutzerkonto keine Shell eingestellt, wodurch keine @code{psql}-Befehle durch diesen Benutzer ausgeführt werden können. Um @code{psql} benutzen zu können, können Sie sich vorläufig als der @code{postgres}-Nutzer unter Angabe einer Shell anmelden, ein Konto für einen PostgreSQL-Administrator (einen „Superuser“) mit demselben Namen wie einer der Benutzer des Systems einrichten und dann die zugehörige Datenbank erstellen." #. type: example -#: guix-git/doc/guix.texi:21102 +#: guix-git/doc/guix.texi:21464 #, no-wrap msgid "" "sudo -u postgres -s /bin/sh\n" @@ -39631,101 +40291,101 @@ msgstr "" "createdb $BENUTZER_ANMELDENAME # muss angepasst werden\n" #. type: deftp -#: guix-git/doc/guix.texi:21104 +#: guix-git/doc/guix.texi:21466 #, no-wrap msgid "{Data Type} postgresql-configuration" msgstr "{Datentyp} postgresql-configuration" #. type: deftp -#: guix-git/doc/guix.texi:21107 +#: guix-git/doc/guix.texi:21469 msgid "Data type representing the configuration for the @code{postgresql-service-type}." msgstr "Der Datentyp repräsentiert die Konfiguration für den @code{postgresql-service-type}." #. type: code{#1} -#: guix-git/doc/guix.texi:21109 +#: guix-git/doc/guix.texi:21471 #, no-wrap msgid "postgresql" msgstr "postgresql" #. type: table -#: guix-git/doc/guix.texi:21111 +#: guix-git/doc/guix.texi:21473 msgid "PostgreSQL package to use for the service." msgstr "Das PostgreSQL-Paket, was für diesen Dienst benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:21112 +#: guix-git/doc/guix.texi:21474 #, no-wrap msgid "@code{port} (default: @code{5432})" msgstr "@code{port} (Vorgabe: @code{5432})" #. type: table -#: guix-git/doc/guix.texi:21114 +#: guix-git/doc/guix.texi:21476 msgid "Port on which PostgreSQL should listen." msgstr "Der Port, auf dem PostgreSQL lauschen soll." #. type: table -#: guix-git/doc/guix.texi:21117 +#: guix-git/doc/guix.texi:21479 msgid "Locale to use as the default when creating the database cluster." msgstr "Welche Regions- und Spracheinstellung („Locale“) beim Erstellen des Datenbankverbunds voreingestellt werden soll." #. type: item -#: guix-git/doc/guix.texi:21118 +#: guix-git/doc/guix.texi:21480 #, no-wrap msgid "@code{config-file} (default: @code{(postgresql-config-file)})" msgstr "@code{config-file} (Vorgabe: @code{(postgresql-config-file)})" #. type: table -#: guix-git/doc/guix.texi:21122 +#: guix-git/doc/guix.texi:21484 msgid "The configuration file to use when running PostgreSQL@. The default behaviour uses the postgresql-config-file record with the default values for the fields." msgstr "Aus welcher Konfigurationsdatei die Laufzeitkonfiguration von PostgreSQL geladen werden soll. Vorgegeben ist, die Einstellungen aus einem postgresql-config-file-Verbundsobjekt mit Vorgabewerten zu nehmen." #. type: item -#: guix-git/doc/guix.texi:21123 +#: guix-git/doc/guix.texi:21485 #, no-wrap msgid "@code{log-directory} (default: @code{\"/var/log/postgresql\"})" msgstr "@code{log-directory} (Vorgabe: @code{\"/var/log/postgresql\"})" #. type: table -#: guix-git/doc/guix.texi:21127 +#: guix-git/doc/guix.texi:21489 msgid "The directory where @command{pg_ctl} output will be written in a file named @code{\"pg_ctl.log\"}. This file can be useful to debug PostgreSQL configuration errors for instance." msgstr "In welchem Verzeichnis die Ausgabe von @command{pg_ctl} in eine Datei namens @code{\"pg_ctl.log\"} geschrieben wird. Diese Datei kann zum Beispiel dabei helfen, Fehler in der Konfiguration von PostgreSQL zu finden." #. type: item -#: guix-git/doc/guix.texi:21128 +#: guix-git/doc/guix.texi:21490 #, no-wrap msgid "@code{data-directory} (default: @code{\"/var/lib/postgresql/data\"})" msgstr "@code{data-directory} (Vorgabe: @code{\"/var/lib/postgresql/data\"})" #. type: table -#: guix-git/doc/guix.texi:21130 +#: guix-git/doc/guix.texi:21492 msgid "Directory in which to store the data." msgstr "Das Verzeichnis, in dem die Daten gespeichert werden sollen." #. type: item -#: guix-git/doc/guix.texi:21131 +#: guix-git/doc/guix.texi:21493 #, no-wrap msgid "@code{extension-packages} (default: @code{'()})" msgstr "@code{extension-packages} (Vorgabe: @code{'()})" #. type: cindex -#: guix-git/doc/guix.texi:21132 +#: guix-git/doc/guix.texi:21494 #, no-wrap msgid "postgresql extension-packages" msgstr "PostgreSQL-Erweiterungspakete" #. type: table -#: guix-git/doc/guix.texi:21137 +#: guix-git/doc/guix.texi:21499 msgid "Additional extensions are loaded from packages listed in @var{extension-packages}. Extensions are available at runtime. For instance, to create a geographic database using the @code{postgis} extension, a user can configure the postgresql-service as in this example:" msgstr "Zusätzliche Erweiterungen werden aus den unter @var{extension-packages} aufgeführten Paketen geladen. Erweiterungen sind zur Laufzeit verfügbar. Zum Beispiel kann ein Nutzer den postgresql-service-Dienst wie in diesem Beispiel konfigurieren, um eine geografische Datenbank mit Hilfe der @code{postgis}-Erweiterung zu erzeugen:" #. type: cindex -#: guix-git/doc/guix.texi:21138 +#: guix-git/doc/guix.texi:21500 #, no-wrap msgid "postgis" msgstr "postgis" #. type: lisp -#: guix-git/doc/guix.texi:21141 +#: guix-git/doc/guix.texi:21503 #, no-wrap msgid "" "(use-package-modules databases geo)\n" @@ -39735,7 +40395,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:21154 +#: guix-git/doc/guix.texi:21516 #, no-wrap msgid "" "(operating-system\n" @@ -39765,12 +40425,12 @@ msgstr "" " %base-services)))\n" #. type: table -#: guix-git/doc/guix.texi:21158 +#: guix-git/doc/guix.texi:21520 msgid "Then the extension becomes visible and you can initialise an empty geographic database in this way:" msgstr "Dann wird die Erweiterung sichtbar und Sie können eine leere geografische Datenbak auf diese Weise initialisieren:" #. type: example -#: guix-git/doc/guix.texi:21165 +#: guix-git/doc/guix.texi:21527 #, no-wrap msgid "" "psql -U postgres\n" @@ -39786,23 +40446,23 @@ msgstr "" "> create extension postgis_topology;\n" #. type: table -#: guix-git/doc/guix.texi:21170 +#: guix-git/doc/guix.texi:21532 msgid "There is no need to add this field for contrib extensions such as hstore or dblink as they are already loadable by postgresql. This field is only required to add extensions provided by other packages." msgstr "Es ist nicht notwendig, dieses Feld für contrib-Erweiterungen wie hstore oder dblink hinzuzufügen, weil sie bereits durch postgresql geladen werden können. Dieses Feld wird nur benötigt, um Erweiterungen hinzuzufügen, die von anderen Paketen zur Verfügung gestellt werden." #. type: deftp -#: guix-git/doc/guix.texi:21174 +#: guix-git/doc/guix.texi:21536 #, no-wrap msgid "{Data Type} postgresql-config-file" msgstr "{Datentyp} postgresql-config-file" #. type: deftp -#: guix-git/doc/guix.texi:21180 +#: guix-git/doc/guix.texi:21542 msgid "Data type representing the PostgreSQL configuration file. As shown in the following example, this can be used to customize the configuration of PostgreSQL@. Note that you can use any G-expression or filename in place of this record, if you already have a configuration file you'd like to use for example." msgstr "Der Datentyp, der die Konfigurationsdatei von PostgreSQL repräsentiert. Wie im folgenden Beispiel gezeigt, kann er benutzt werden, um die Konfiguration von PostgreSQL anzupassen. Es sei darauf hingewiesen, dass Sie jeden beliebigen G-Ausdruck oder Dateinamen anstelle dieses Verbunds angeben können, etwa wenn Sie lieber eine bestehende Konfigurationsdatei benutzen möchten." #. type: lisp -#: guix-git/doc/guix.texi:21200 +#: guix-git/doc/guix.texi:21562 #, no-wrap msgid "" "(service postgresql-service-type\n" @@ -39844,77 +40504,77 @@ msgstr "" " (\"log_directory\" \"/var/log/postgresql\")))))))\n" #. type: item -#: guix-git/doc/guix.texi:21203 +#: guix-git/doc/guix.texi:21565 #, no-wrap msgid "@code{log-destination} (default: @code{\"syslog\"})" msgstr "@code{log-destination} (Vorgabe: @code{\"syslog\"})" #. type: table -#: guix-git/doc/guix.texi:21206 +#: guix-git/doc/guix.texi:21568 msgid "The logging method to use for PostgreSQL@. Multiple values are accepted, separated by commas." msgstr "Welche Protokollierungsmethode für PostgreSQL benutzt werden soll. Hier können mehrere Werte kommagetrennt angegeben werden." #. type: item -#: guix-git/doc/guix.texi:21207 +#: guix-git/doc/guix.texi:21569 #, no-wrap msgid "@code{hba-file} (default: @code{%default-postgres-hba})" msgstr "@code{hba-file} (Vorgabe: @code{%default-postgres-hba})" #. type: table -#: guix-git/doc/guix.texi:21210 +#: guix-git/doc/guix.texi:21572 msgid "Filename or G-expression for the host-based authentication configuration." msgstr "Ein Dateiname oder G-Ausdruck für die Konfiguration der Authentifizierung durch den Server („Host-based Authentication“)." #. type: item -#: guix-git/doc/guix.texi:21211 +#: guix-git/doc/guix.texi:21573 #, no-wrap msgid "@code{ident-file} (default: @code{%default-postgres-ident})" msgstr "@code{ident-file} (Vorgabe: @code{%default-postgres-ident})" #. type: table -#: guix-git/doc/guix.texi:21213 +#: guix-git/doc/guix.texi:21575 msgid "Filename or G-expression for the user name mapping configuration." msgstr "Ein Dateiname oder G-Ausdruck für die Konfiguration der Benutzernamensabbildung („User name mapping“)." #. type: item -#: guix-git/doc/guix.texi:21214 +#: guix-git/doc/guix.texi:21576 #, no-wrap msgid "@code{socket-directory} (default: @code{\"/var/run/postgresql\"})" msgstr "@code{socket-directory} (Vorgabe: @code{\"/var/run/postgresql\"})" #. type: table -#: guix-git/doc/guix.texi:21219 +#: guix-git/doc/guix.texi:21581 msgid "Specifies the directory of the Unix-domain socket(s) on which PostgreSQL is to listen for connections from client applications. If set to @code{\"\"} PostgreSQL does not listen on any Unix-domain sockets, in which case only TCP/IP sockets can be used to connect to the server." msgstr "Gibt an, in welchem Verzeichnis der oder die Unix-Socket(s) zu finden sind, auf denen PostgreSQL auf Verbindungen von Client-Anwendungen lauscht. Ist dies auf @code{\"\"} gesetzt, so lauscht PostgreSQL auf gar keinem Unix-Socket, so dass Verbindungen zum Server nur mit TCP/IP-Sockets aufgebaut werden können." #. type: table -#: guix-git/doc/guix.texi:21222 +#: guix-git/doc/guix.texi:21584 msgid "By default, the @code{#false} value means the PostgreSQL default value will be used, which is currently @samp{/tmp}." msgstr "Der Vorgabewert @code{#false} bedeutet, dass der voreingestellte Wert von PostgreSQL benutzt wird. Derzeit ist die Voreinstellung @samp{/tmp}." #. type: table -#: guix-git/doc/guix.texi:21227 +#: guix-git/doc/guix.texi:21589 msgid "List of additional keys and values to include in the PostgreSQL config file. Each entry in the list should be a list where the first element is the key, and the remaining elements are the values." msgstr "Eine Liste zusätzlicher Schlüssel-Wert-Kombinationen, die in die PostgreSQL-Konfigurationsdatei aufgenommen werden sollen. Jeder Eintrag in der Liste muss eine Liste von Listen sein, deren erstes Element dem Schlüssel entspricht und deren übrige Elemente die Werte angeben." #. type: table -#: guix-git/doc/guix.texi:21233 +#: guix-git/doc/guix.texi:21595 msgid "The values can be numbers, booleans or strings and will be mapped to PostgreSQL parameters types @code{Boolean}, @code{String}, @code{Numeric}, @code{Numeric with Unit} and @code{Enumerated} described @uref{https://www.postgresql.org/docs/current/config-setting.html, here}." msgstr "Als Werte können Zahlen, Boolesche Ausdrücke oder Zeichenketten dienen. Sie werden auf die Parametertypen von PostgreSQL, @code{Boolean}, @code{String}, @code{Numeric}, @code{Numeric with Unit} und @code{Enumerated}, abgebildet, die @uref{https://www.postgresql.org/docs/current/config-setting.html, hier} beschrieben werden." #. type: deffn -#: guix-git/doc/guix.texi:21237 +#: guix-git/doc/guix.texi:21599 #, no-wrap msgid "{Scheme Variable} postgresql-role-service-type" msgstr "{Scheme-Variable} postgresql-role-service-type" #. type: deffn -#: guix-git/doc/guix.texi:21240 +#: guix-git/doc/guix.texi:21602 msgid "This service allows to create PostgreSQL roles and databases after PostgreSQL service start. Here is an example of its use." msgstr "Mit diesem Dienst können PostgreSQL-Rollen und -Datenbanken erzeugt werden, nachdem der PostgreSQL-Dienst gestartet worden ist. Hier ist ein Beispiel, wie man ihn benutzt." #. type: lisp -#: guix-git/doc/guix.texi:21248 +#: guix-git/doc/guix.texi:21610 #, no-wrap msgid "" "(service postgresql-role-service-type\n" @@ -39932,12 +40592,12 @@ msgstr "" " (create-database? #t))))))\n" #. type: deffn -#: guix-git/doc/guix.texi:21252 +#: guix-git/doc/guix.texi:21614 msgid "This service can be extended with extra roles, as in this example:" msgstr "Dieser Dienst kann mit weiteren Rollen erweitert werden, wie in diesem Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:21258 +#: guix-git/doc/guix.texi:21620 #, no-wrap msgid "" "(service-extension postgresql-role-service-type\n" @@ -39951,398 +40611,398 @@ msgstr "" " (create-database? #t))))\n" #. type: deftp -#: guix-git/doc/guix.texi:21261 +#: guix-git/doc/guix.texi:21623 #, no-wrap msgid "{Data Type} postgresql-role" msgstr "{Datentyp} postgresql-role" #. type: deftp -#: guix-git/doc/guix.texi:21267 +#: guix-git/doc/guix.texi:21629 msgid "PostgreSQL manages database access permissions using the concept of roles. A role can be thought of as either a database user, or a group of database users, depending on how the role is set up. Roles can own database objects (for example, tables) and can assign privileges on those objects to other roles to control who has access to which objects." msgstr "PostgreSQL verwaltet Zugriffsrechte auf Datenbanken mit dem Rollenkonzept. Eine Rolle kann als entweder ein Datenbanknutzer oder eine Gruppe von Datenbanknutzern verstanden werden, je nachdem, wie die Rolle eingerichtet wurde. Rollen können Eigentümer von Datenbankobjekten sein (zum Beispiel von Tabellen) und sie können anderen Rollen Berechtigungen auf diese Objekte zuweisen oder steuern, wer auf welche Objekte Zugriff hat." #. type: table -#: guix-git/doc/guix.texi:21271 +#: guix-git/doc/guix.texi:21633 msgid "The role name." msgstr "Der Rollenname." #. type: item -#: guix-git/doc/guix.texi:21272 +#: guix-git/doc/guix.texi:21634 #, no-wrap msgid "@code{permissions} (default: @code{'(createdb login)})" msgstr "@code{permissions} (Vorgabe: @code{'(createdb login)})" #. type: table -#: guix-git/doc/guix.texi:21276 +#: guix-git/doc/guix.texi:21638 msgid "The role permissions list. Supported permissions are @code{bypassrls}, @code{createdb}, @code{createrole}, @code{login}, @code{replication} and @code{superuser}." msgstr "Die Liste der Berechtigungen der Rolle. Unterstützte Berechtigungen sind @code{bypassrls}, @code{createdb}, @code{createrole}, @code{login}, @code{replication} und @code{superuser}." #. type: item -#: guix-git/doc/guix.texi:21277 +#: guix-git/doc/guix.texi:21639 #, no-wrap msgid "@code{create-database?} (default: @code{#f})" msgstr "@code{create-database?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:21279 +#: guix-git/doc/guix.texi:21641 msgid "Whether to create a database with the same name as the role." msgstr "Ob eine Datenbank mit demselben Namen wie die Rolle erzeugt werden soll." #. type: deftp -#: guix-git/doc/guix.texi:21283 +#: guix-git/doc/guix.texi:21645 #, no-wrap msgid "{Data Type} postgresql-role-configuration" msgstr "{Datentyp} postgresql-role-configuration" #. type: deftp -#: guix-git/doc/guix.texi:21286 +#: guix-git/doc/guix.texi:21648 msgid "Data type representing the configuration of @var{postgresql-role-service-type}." msgstr "Der Datentyp, der die Konfiguration des @var{postgresql-role-service-type} repräsentiert." #. type: item -#: guix-git/doc/guix.texi:21288 +#: guix-git/doc/guix.texi:21650 #, no-wrap msgid "@code{host} (default: @code{\"/var/run/postgresql\"})" msgstr "@code{host} (Vorgabe: @code{\"/var/run/postgresql\"})" #. type: table -#: guix-git/doc/guix.texi:21290 +#: guix-git/doc/guix.texi:21652 msgid "The PostgreSQL host to connect to." msgstr "Mit welchem PostgreSQL-Host eine Verbindung hergestellt werden soll." #. type: item -#: guix-git/doc/guix.texi:21291 +#: guix-git/doc/guix.texi:21653 #, no-wrap msgid "@code{log} (default: @code{\"/var/log/postgresql_roles.log\"})" msgstr "@code{log} (Vorgabe: @code{\"/var/log/postgresql_roles.log\"})" #. type: table -#: guix-git/doc/guix.texi:21293 +#: guix-git/doc/guix.texi:21655 msgid "File name of the log file." msgstr "Der Dateiname der Protokolldatei." #. type: item -#: guix-git/doc/guix.texi:21294 +#: guix-git/doc/guix.texi:21656 #, no-wrap msgid "@code{roles} (default: @code{'()})" msgstr "@code{roles} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:21296 +#: guix-git/doc/guix.texi:21658 msgid "The initial PostgreSQL roles to create." msgstr "Welche PostgreSQL-Rollen von Anfang an erzeugt werden sollen." #. type: subsubheading -#: guix-git/doc/guix.texi:21299 +#: guix-git/doc/guix.texi:21661 #, no-wrap msgid "MariaDB/MySQL" msgstr "MariaDB/MySQL" #. type: defvr -#: guix-git/doc/guix.texi:21301 +#: guix-git/doc/guix.texi:21663 #, no-wrap msgid "{Scheme Variable} mysql-service-type" msgstr "{Scheme-Variable} mysql-service-type" #. type: defvr -#: guix-git/doc/guix.texi:21305 +#: guix-git/doc/guix.texi:21667 msgid "This is the service type for a MySQL or MariaDB database server. Its value is a @code{mysql-configuration} object that specifies which package to use, as well as various settings for the @command{mysqld} daemon." msgstr "Dies ist der Diensttyp für einen Datenbankserver zu MySQL oder MariaDB@. Sein Wert ist ein @code{mysql-configuration}-Objekt, das das zu nutzende Paket sowie verschiedene Einstellungen für den @command{mysqld}-Daemon festlegt." #. type: deftp -#: guix-git/doc/guix.texi:21307 +#: guix-git/doc/guix.texi:21669 #, no-wrap msgid "{Data Type} mysql-configuration" msgstr "{Datentyp} mysql-configuration" #. type: deftp -#: guix-git/doc/guix.texi:21309 +#: guix-git/doc/guix.texi:21671 msgid "Data type representing the configuration of @var{mysql-service-type}." msgstr "Der Datentyp, der die Konfiguration des @var{mysql-service-type} repräsentiert." #. type: item -#: guix-git/doc/guix.texi:21311 +#: guix-git/doc/guix.texi:21673 #, no-wrap msgid "@code{mysql} (default: @var{mariadb})" msgstr "@code{mysql} (Vorgabe: @var{mariadb})" #. type: table -#: guix-git/doc/guix.texi:21314 +#: guix-git/doc/guix.texi:21676 msgid "Package object of the MySQL database server, can be either @var{mariadb} or @var{mysql}." msgstr "Das Paketobjekt des MySQL-Datenbankservers; es kann entweder @var{mariadb} oder @var{mysql} sein." #. type: table -#: guix-git/doc/guix.texi:21317 +#: guix-git/doc/guix.texi:21679 msgid "For MySQL, a temporary root password will be displayed at activation time. For MariaDB, the root password is empty." msgstr "Für MySQL wird bei der Aktivierung des Dienstes ein temporäres Administratorpasswort („root“-Passwort) angezeigt. Für MariaDB ist das „root“-Passwort leer." #. type: item -#: guix-git/doc/guix.texi:21318 guix-git/doc/guix.texi:25138 +#: guix-git/doc/guix.texi:21680 guix-git/doc/guix.texi:25500 #, no-wrap msgid "@code{bind-address} (default: @code{\"127.0.0.1\"})" msgstr "@code{bind-address} (Vorgabe: @code{\"127.0.0.1\"})" #. type: table -#: guix-git/doc/guix.texi:21321 +#: guix-git/doc/guix.texi:21683 msgid "The IP on which to listen for network connections. Use @code{\"0.0.0.0\"} to bind to all available network interfaces." msgstr "Auf welcher IP-Adresse auf Verbindungen gelauscht wird. Benutzen Sie @code{\"0.0.0.0\"}, wenn sich der Server an alle verfügbaren Netzwerkschnittstellen binden soll." #. type: item -#: guix-git/doc/guix.texi:21322 +#: guix-git/doc/guix.texi:21684 #, no-wrap msgid "@code{port} (default: @code{3306})" msgstr "@code{port} (Vorgabe: @code{3306})" #. type: table -#: guix-git/doc/guix.texi:21324 +#: guix-git/doc/guix.texi:21686 msgid "TCP port on which the database server listens for incoming connections." msgstr "Der TCP-Port, auf dem der Datenbankserver auf eingehende Verbindungen lauscht." #. type: item -#: guix-git/doc/guix.texi:21325 +#: guix-git/doc/guix.texi:21687 #, no-wrap msgid "@code{socket} (default: @code{\"/run/mysqld/mysqld.sock\"})" msgstr "@code{socket} (Vorgabe: @code{\"/run/mysqld/mysqld.sock\"})" #. type: table -#: guix-git/doc/guix.texi:21327 +#: guix-git/doc/guix.texi:21689 msgid "Socket file to use for local (non-network) connections." msgstr "Welche Socket-Datei für lokale Verbindungen (die also nicht über ein Netzwerk laufen) benutzt wird." #. type: table -#: guix-git/doc/guix.texi:21330 +#: guix-git/doc/guix.texi:21692 msgid "Additional settings for the @file{my.cnf} configuration file." msgstr "Weitere Einstellungen für die Konfigurationsdatei @file{my.cnf}." #. type: item -#: guix-git/doc/guix.texi:21331 +#: guix-git/doc/guix.texi:21693 #, no-wrap msgid "@code{extra-environment} (default: @code{#~'()})" msgstr "@code{extra-environment} (Vorgabe: @code{#~'()})" #. type: table -#: guix-git/doc/guix.texi:21333 +#: guix-git/doc/guix.texi:21695 msgid "List of environment variables passed to the @command{mysqld} process." msgstr "Welche Liste von Umgebungsvariablen dem @command{mysqld}-Prozess mitgegeben wird." #. type: item -#: guix-git/doc/guix.texi:21334 +#: guix-git/doc/guix.texi:21696 #, no-wrap msgid "@code{auto-upgrade?} (default: @code{#t})" msgstr "@code{auto-upgrade?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:21339 +#: guix-git/doc/guix.texi:21701 msgid "Whether to automatically run @command{mysql_upgrade} after starting the service. This is necessary to upgrade the @dfn{system schema} after ``major'' updates (such as switching from MariaDB 10.4 to 10.5), but can be disabled if you would rather do that manually." msgstr "Ob nach dem Starten des Dienstes @command{mysql_upgrade} automatisch ausgeführt werden soll. Das ist nötig, um das @dfn{Systemschema} nach „großen“ Aktualisierungen auf den neuen Stand zu bringen (etwa beim Umstieg von MariaDB 10.4 auf 10.5), aber Sie können es abschalten, wenn Sie das lieber manuell vornehmen." #. type: subsubheading -#: guix-git/doc/guix.texi:21343 +#: guix-git/doc/guix.texi:21705 #, no-wrap msgid "Memcached" msgstr "Memcached" #. type: defvr -#: guix-git/doc/guix.texi:21345 +#: guix-git/doc/guix.texi:21707 #, no-wrap msgid "{Scheme Variable} memcached-service-type" msgstr "{Scheme-Variable} memcached-service-type" #. type: defvr -#: guix-git/doc/guix.texi:21349 +#: guix-git/doc/guix.texi:21711 msgid "This is the service type for the @uref{https://memcached.org/, Memcached} service, which provides a distributed in memory cache. The value for the service type is a @code{memcached-configuration} object." msgstr "Dies ist der Diensttyp für den @uref{https://memcached.org/, Memcached-Dienst}, der einen verteilten Zwischenspeicher im Arbeitsspeicher (einen „In-Memory-Cache“) zur Verfügung stellt. Der Wert dieses Dienstes ist ein @code{memcached-configuration}-Objekt." #. type: lisp -#: guix-git/doc/guix.texi:21353 +#: guix-git/doc/guix.texi:21715 #, no-wrap msgid "(service memcached-service-type)\n" msgstr "(service memcached-service-type)\n" #. type: deftp -#: guix-git/doc/guix.texi:21355 +#: guix-git/doc/guix.texi:21717 #, no-wrap msgid "{Data Type} memcached-configuration" msgstr "{Datentyp} memcached-configuration" #. type: deftp -#: guix-git/doc/guix.texi:21357 +#: guix-git/doc/guix.texi:21719 msgid "Data type representing the configuration of memcached." msgstr "Der Datentyp, der die Konfiguration von memcached repräsentiert." #. type: item -#: guix-git/doc/guix.texi:21359 +#: guix-git/doc/guix.texi:21721 #, no-wrap msgid "@code{memcached} (default: @code{memcached})" msgstr "@code{memcached} (Vorgabe: @code{memcached})" #. type: table -#: guix-git/doc/guix.texi:21361 +#: guix-git/doc/guix.texi:21723 msgid "The Memcached package to use." msgstr "Das Memcached-Paket, das benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:21362 +#: guix-git/doc/guix.texi:21724 #, no-wrap msgid "@code{interfaces} (default: @code{'(\"0.0.0.0\")})" msgstr "@code{interfaces} (Vorgabe: @code{'(\"0.0.0.0\")})" #. type: table -#: guix-git/doc/guix.texi:21364 +#: guix-git/doc/guix.texi:21726 msgid "Network interfaces on which to listen." msgstr "Auf welchen Netzwerkschnittstellen gelauscht werden soll." #. type: item -#: guix-git/doc/guix.texi:21365 +#: guix-git/doc/guix.texi:21727 #, no-wrap msgid "@code{tcp-port} (default: @code{11211})" msgstr "@code{tcp-port} (Vorgabe: @code{11211})" #. type: table -#: guix-git/doc/guix.texi:21367 +#: guix-git/doc/guix.texi:21729 msgid "Port on which to accept connections." msgstr "Der Port, auf dem Verbindungen akzeptiert werden." #. type: item -#: guix-git/doc/guix.texi:21368 +#: guix-git/doc/guix.texi:21730 #, no-wrap msgid "@code{udp-port} (default: @code{11211})" msgstr "@code{udp-port} (Vorgabe: @code{11211})" #. type: table -#: guix-git/doc/guix.texi:21371 +#: guix-git/doc/guix.texi:21733 msgid "Port on which to accept UDP connections on, a value of 0 will disable listening on a UDP socket." msgstr "Der Port, auf dem UDP-Verbindungen akzeptiert werden. Ist der Wert 0, wird @emph{nicht} auf einem UDP-Socket gelauscht." #. type: item -#: guix-git/doc/guix.texi:21372 +#: guix-git/doc/guix.texi:21734 #, no-wrap msgid "@code{additional-options} (default: @code{'()})" msgstr "@code{additional-options} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:21374 +#: guix-git/doc/guix.texi:21736 msgid "Additional command line options to pass to @code{memcached}." msgstr "Zusätzliche Befehlszeilenoptionen, die an @code{memcached} übergeben werden." #. type: subsubheading -#: guix-git/doc/guix.texi:21377 +#: guix-git/doc/guix.texi:21739 #, no-wrap msgid "Redis" msgstr "Redis" #. type: defvr -#: guix-git/doc/guix.texi:21379 +#: guix-git/doc/guix.texi:21741 #, no-wrap msgid "{Scheme Variable} redis-service-type" msgstr "{Scheme-Variable} redis-service-type" #. type: defvr -#: guix-git/doc/guix.texi:21382 +#: guix-git/doc/guix.texi:21744 msgid "This is the service type for the @uref{https://redis.io/, Redis} key/value store, whose value is a @code{redis-configuration} object." msgstr "Dies ist der Diensttyp für den Schlüssel-/Wert-Speicher @uref{https://redis.io/, Redis}, dessen Wert ein @code{redis-configuration}-Objekt ist." #. type: deftp -#: guix-git/doc/guix.texi:21384 +#: guix-git/doc/guix.texi:21746 #, no-wrap msgid "{Data Type} redis-configuration" msgstr "{Datentyp} redis-configuration" #. type: deftp -#: guix-git/doc/guix.texi:21386 +#: guix-git/doc/guix.texi:21748 msgid "Data type representing the configuration of redis." msgstr "Der Datentyp, der die Konfiguration von redis repräsentiert." #. type: item -#: guix-git/doc/guix.texi:21388 +#: guix-git/doc/guix.texi:21750 #, no-wrap msgid "@code{redis} (default: @code{redis})" msgstr "@code{redis} (Vorgabe: @code{redis})" #. type: table -#: guix-git/doc/guix.texi:21390 +#: guix-git/doc/guix.texi:21752 msgid "The Redis package to use." msgstr "Das zu benutzende Redis-Paket." #. type: item -#: guix-git/doc/guix.texi:21391 +#: guix-git/doc/guix.texi:21753 #, no-wrap msgid "@code{bind} (default: @code{\"127.0.0.1\"})" msgstr "@code{bind} (Vorgabe: @code{\"127.0.0.1\"})" #. type: table -#: guix-git/doc/guix.texi:21393 +#: guix-git/doc/guix.texi:21755 msgid "Network interface on which to listen." msgstr "Die Netzwerkschnittstelle, auf der gelauscht wird." #. type: item -#: guix-git/doc/guix.texi:21394 +#: guix-git/doc/guix.texi:21756 #, no-wrap msgid "@code{port} (default: @code{6379})" msgstr "@code{port} (Vorgabe: @code{6379})" #. type: table -#: guix-git/doc/guix.texi:21397 +#: guix-git/doc/guix.texi:21759 msgid "Port on which to accept connections on, a value of 0 will disable listening on a TCP socket." msgstr "Der Port, auf dem Verbindungen akzeptiert werden. Ist der Wert 0, wird das Lauschen auf einem TCP-Socket deaktiviert." #. type: item -#: guix-git/doc/guix.texi:21398 +#: guix-git/doc/guix.texi:21760 #, no-wrap msgid "@code{working-directory} (default: @code{\"/var/lib/redis\"})" msgstr "@code{working-directory} (Vorgabe: @code{\"/var/lib/redis\"})" #. type: table -#: guix-git/doc/guix.texi:21400 +#: guix-git/doc/guix.texi:21762 msgid "Directory in which to store the database and related files." msgstr "Das Verzeichnis, in dem die Datenbank und damit zu tun habende Dateien gespeichert werden." #. type: cindex -#: guix-git/doc/guix.texi:21406 +#: guix-git/doc/guix.texi:21768 #, no-wrap msgid "mail" msgstr "Mail" #. type: cindex -#: guix-git/doc/guix.texi:21407 +#: guix-git/doc/guix.texi:21769 #, no-wrap msgid "email" msgstr "email" #. type: Plain text -#: guix-git/doc/guix.texi:21412 +#: guix-git/doc/guix.texi:21774 msgid "The @code{(gnu services mail)} module provides Guix service definitions for email services: IMAP, POP3, and LMTP servers, as well as mail transport agents (MTAs). Lots of acronyms! These services are detailed in the subsections below." msgstr "Das Modul @code{(gnu services mail)} stellt Guix-Dienstdefinitionen für E-Mail-Dienste zur Verfügung: IMAP-, POP3- und LMTP-Server sowie Mail Transport Agents (MTAs). Jede Menge Akronyme! Auf diese Dienste wird in den folgenden Unterabschnitten im Detail eingegangen." #. type: subsubheading -#: guix-git/doc/guix.texi:21413 +#: guix-git/doc/guix.texi:21775 #, no-wrap msgid "Dovecot Service" msgstr "Dovecot-Dienst" #. type: deffn -#: guix-git/doc/guix.texi:21415 +#: guix-git/doc/guix.texi:21777 #, no-wrap msgid "{Scheme Procedure} dovecot-service [#:config (dovecot-configuration)]" msgstr "{Scheme-Prozedur} dovecot-service [#:config (dovecot-configuration)]" #. type: deffn -#: guix-git/doc/guix.texi:21417 +#: guix-git/doc/guix.texi:21779 msgid "Return a service that runs the Dovecot IMAP/POP3/LMTP mail server." msgstr "Liefert einen Dienst, der den IMAP-/POP3-/LMTP-Mailserver Dovecot ausführt." #. type: Plain text -#: guix-git/doc/guix.texi:21427 +#: guix-git/doc/guix.texi:21789 msgid "By default, Dovecot does not need much configuration; the default configuration object created by @code{(dovecot-configuration)} will suffice if your mail is delivered to @code{~/Maildir}. A self-signed certificate will be generated for TLS-protected connections, though Dovecot will also listen on cleartext ports by default. There are a number of options, though, which mail administrators might need to change, and as is the case with other services, Guix allows the system administrator to specify these parameters via a uniform Scheme interface." msgstr "Normalerweise muss für Dovecot nicht viel eingestellt werden; das vorgegebene Konfigurationsobjekt, das mit @code{(dovecot-configuration)} erzeugt wird, wird genügen, wenn Ihre Mails in @code{~/Maildir} gespeichert werden. Ein selbstsigniertes Zertifikat wird für durch TLS geschützte Verbindungen generiert, aber Dovecot lauscht nach Vorgabe auch auf unverschlüsselten Ports. Es gibt jedoch eine Reihe von Optionen, die Mail-Administratoren unter Umständen ändern müssen, was Guix@tie{}— wie auch bei anderen Diensten@tie{}— mit einer einheitlichen Scheme-Schnittstelle möglich macht." #. type: Plain text -#: guix-git/doc/guix.texi:21430 +#: guix-git/doc/guix.texi:21792 msgid "For example, to specify that mail is located at @code{maildir~/.mail}, one would instantiate the Dovecot service like this:" msgstr "Um zum Beispiel anzugeben, dass sich Mails in @code{maildir~/.mail} befinden, würde man den Dovecot-Dienst wie folgt instanziieren:" #. type: lisp -#: guix-git/doc/guix.texi:21435 +#: guix-git/doc/guix.texi:21797 #, no-wrap msgid "" "(dovecot-service #:config\n" @@ -40354,2433 +41014,2433 @@ msgstr "" " (mail-location \"maildir:~/.mail\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:21443 +#: guix-git/doc/guix.texi:21805 msgid "The available configuration parameters follow. Each parameter definition is preceded by its type; for example, @samp{string-list foo} indicates that the @code{foo} parameter should be specified as a list of strings. There is also a way to specify the configuration as a string, if you have an old @code{dovecot.conf} file that you want to port over from some other system; see the end for more details." msgstr "Im Folgenden sehen Sie die verfügbaren Konfigurationsparameter. Jeder Parameterdefinition ist ihr Typ vorangestellt; zum Beispiel bedeutet @samp{Zeichenketten-Liste foo}, dass der Parameter @code{foo} als eine Liste von Zeichenketten angegeben werden sollte. Es ist auch möglich, die Konfiguration als Zeichenkette anzugeben, wenn Sie eine alte @code{dovecot.conf}-Datei haben, die Sie von einem anderen System übernehmen möchten; am Ende finden Sie mehr Details dazu." #. type: Plain text -#: guix-git/doc/guix.texi:21453 +#: guix-git/doc/guix.texi:21815 msgid "Available @code{dovecot-configuration} fields are:" msgstr "Verfügbare @code{dovecot-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:21454 +#: guix-git/doc/guix.texi:21816 #, no-wrap msgid "{@code{dovecot-configuration} parameter} package dovecot" msgstr "{@code{dovecot-configuration}-Parameter} „package“ dovecot" #. type: deftypevr -#: guix-git/doc/guix.texi:21456 guix-git/doc/guix.texi:22805 +#: guix-git/doc/guix.texi:21818 guix-git/doc/guix.texi:23167 msgid "The dovecot package." msgstr "Das Dovecot-Paket." #. type: deftypevr -#: guix-git/doc/guix.texi:21458 +#: guix-git/doc/guix.texi:21820 #, no-wrap msgid "{@code{dovecot-configuration} parameter} comma-separated-string-list listen" msgstr "{@code{dovecot-configuration}-Parameter} Kommagetrennte-Zeichenketten-Liste listen" #. type: deftypevr -#: guix-git/doc/guix.texi:21464 +#: guix-git/doc/guix.texi:21826 msgid "A list of IPs or hosts where to listen for connections. @samp{*} listens on all IPv4 interfaces, @samp{::} listens on all IPv6 interfaces. If you want to specify non-default ports or anything more complex, customize the address and port fields of the @samp{inet-listener} of the specific services you are interested in." msgstr "Eine Liste der IPs oder der Rechnernamen („Hosts“), auf denen auf Verbindungen gelauscht wird. @samp{*} bedeutet, auf allen IPv4-Schnittstellen zu lauschen; @samp{::} lässt auf allen IPv6-Schnittstellen lauschen. Wenn Sie nicht der Vorgabe entsprechende Ports oder komplexere Einstellungen festlegen möchten, sollten Sie die Adress- und Portfelder des @samp{inet-listener} beim jeweiligen Dienst anpassen, für den Sie sich interessieren." #. type: deftypevr -#: guix-git/doc/guix.texi:21466 +#: guix-git/doc/guix.texi:21828 #, no-wrap msgid "{@code{dovecot-configuration} parameter} protocol-configuration-list protocols" msgstr "{@code{dovecot-configuration}-Parameter} „protocol-configuration“-Liste protocols" #. type: deftypevr -#: guix-git/doc/guix.texi:21469 +#: guix-git/doc/guix.texi:21831 msgid "List of protocols we want to serve. Available protocols include @samp{imap}, @samp{pop3}, and @samp{lmtp}." msgstr "Die Liste der Protokolle, die angeboten werden sollen. Zu den verfügbaren Protokollen gehören @samp{imap}, @samp{pop3} und @samp{lmtp}." #. type: deftypevr -#: guix-git/doc/guix.texi:21471 +#: guix-git/doc/guix.texi:21833 msgid "Available @code{protocol-configuration} fields are:" msgstr "Verfügbare @code{protocol-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:21472 +#: guix-git/doc/guix.texi:21834 #, no-wrap msgid "{@code{protocol-configuration} parameter} string name" msgstr "{@code{protocol-configuration}-Parameter} Zeichenkette name" #. type: deftypevr -#: guix-git/doc/guix.texi:21474 +#: guix-git/doc/guix.texi:21836 msgid "The name of the protocol." msgstr "Der Name des Protokolls." #. type: deftypevr -#: guix-git/doc/guix.texi:21476 +#: guix-git/doc/guix.texi:21838 #, no-wrap msgid "{@code{protocol-configuration} parameter} string auth-socket-path" msgstr "{@code{protocol-configuration}-Parameter} Zeichenkette auth-socket-path" #. type: deftypevr -#: guix-git/doc/guix.texi:21480 +#: guix-git/doc/guix.texi:21842 msgid "UNIX socket path to the master authentication server to find users. This is used by imap (for shared users) and lda. It defaults to @samp{\"/var/run/dovecot/auth-userdb\"}." msgstr "Der Pfad des UNIX-Sockets zum Hauptauthentifizierungsserver, um Benutzer zu finden. Er wird von imap (für geteilte Benutzer) und lda benutzt. Die Vorgabe ist @samp{\"/var/run/dovecot/auth-userdb\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21482 +#: guix-git/doc/guix.texi:21844 #, no-wrap msgid "{@code{protocol-configuration} parameter} boolean imap-metadata?" msgstr "{@code{protocol-configuration}-Parameter} Boolescher-Ausdruck imap-metadata?" #. type: deftypevr -#: guix-git/doc/guix.texi:21487 +#: guix-git/doc/guix.texi:21849 msgid "Whether to enable the @code{IMAP METADATA} extension as defined in @uref{https://tools.ietf.org/html/rfc5464,RFC@tie{}5464}, which provides a means for clients to set and retrieve per-mailbox, per-user metadata and annotations over IMAP." msgstr "Ob die Erweiterung @code{IMAP METADATA}, definiert in @uref{https://tools.ietf.org/html/rfc5464,RFC@tie{}5464}, aktiviert werden soll, mit der Clients einem Postfach („Mailbox“) Metadaten und Annotationen über IMAP zuweisen und sie abfragen können." #. type: deftypevr -#: guix-git/doc/guix.texi:21490 +#: guix-git/doc/guix.texi:21852 msgid "If this is @samp{#t}, you must also specify a dictionary @i{via} the @code{mail-attribute-dict} setting." msgstr "Wenn dies @samp{#t} ist, müssen Sie auch über das Feld @code{mail-attribute-dict} das zu nutzende Dictionary (eine Schlüssel-Wert-Datenbank) angeben." #. type: deftypevr -#: guix-git/doc/guix.texi:21495 +#: guix-git/doc/guix.texi:21857 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list managesieve-notify-capabilities" msgstr "{@code{protocol-configuration}-Parameter} Leerzeichengetrennte-Zeichenketten-Liste managesieve-notify-capabilities" #. type: deftypevr -#: guix-git/doc/guix.texi:21500 +#: guix-git/doc/guix.texi:21862 msgid "Which NOTIFY capabilities to report to clients that first connect to the ManageSieve service, before authentication. These may differ from the capabilities offered to authenticated users. If this field is left empty, report what the Sieve interpreter supports by default." msgstr "Welche NOTIFY-Capabilitys an Clients gemeldet werden, die sich mit dem ManageSieve-Dienst verbinden, bevor sie sich authentisiert haben. Sie dürfen sich von den Capabilitys unterscheiden, die angemeldeten Nutzern angeboten werden. Wenn dieses Feld leer gelassen wird, wird nach Vorgabe alles angegeben, was der Sieve-Interpretierer unterstützt." #. type: deftypevr -#: guix-git/doc/guix.texi:21504 +#: guix-git/doc/guix.texi:21866 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list managesieve-sieve-capability" msgstr "{@code{protocol-configuration}-Parameter} Leerzeichengetrennte-Zeichenketten-Liste managesieve-sieve-capability" #. type: deftypevr -#: guix-git/doc/guix.texi:21509 +#: guix-git/doc/guix.texi:21871 msgid "Which SIEVE capabilities to report to clients that first connect to the ManageSieve service, before authentication. These may differ from the capabilities offered to authenticated users. If this field is left empty, report what the Sieve interpreter supports by default." msgstr "Welche SIEVE-Capabilitys an Clients gemeldet werden, die sich mit dem ManageSieve-Dienst verbinden, bevor sie sich authentisiert haben. Sie dürfen sich von den Capabilitys unterscheiden, die angemeldeten Nutzern angeboten werden. Wenn dieses Feld leer gelassen wird, wird nach Vorgabe alles angegeben, was der Sieve-Interpretierer unterstützt." #. type: deftypevr -#: guix-git/doc/guix.texi:21514 +#: guix-git/doc/guix.texi:21876 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list mail-plugins" msgstr "{@code{protocol-configuration}-Parameter} Leerzeichengetrennte-Zeichenketten-Liste mail-plugins" #. type: deftypevr -#: guix-git/doc/guix.texi:21516 +#: guix-git/doc/guix.texi:21878 msgid "Space separated list of plugins to load." msgstr "Leerzeichengetrennte Liste der zu ladenden Plugins." #. type: deftypevr -#: guix-git/doc/guix.texi:21518 +#: guix-git/doc/guix.texi:21880 #, no-wrap msgid "{@code{protocol-configuration} parameter} non-negative-integer mail-max-userip-connections" msgstr "{@code{protocol-configuration}-Parameter} Nichtnegative-ganze-Zahl mail-max-userip-connections" #. type: deftypevr -#: guix-git/doc/guix.texi:21522 +#: guix-git/doc/guix.texi:21884 msgid "Maximum number of IMAP connections allowed for a user from each IP address. NOTE: The username is compared case-sensitively. Defaults to @samp{10}." msgstr "Die Maximalzahl der IMAP-Verbindungen, die jeder Nutzer von derselben IP-Adresse aus benutzen kann. @emph{Anmerkung}: Beim Vergleichen des Benutzernamens wird Groß- und Kleinschreibung unterschieden. Die Vorgabe ist @samp{10}." #. type: deftypevr -#: guix-git/doc/guix.texi:21526 +#: guix-git/doc/guix.texi:21888 #, no-wrap msgid "{@code{dovecot-configuration} parameter} service-configuration-list services" msgstr "{@code{dovecot-configuration}-Parameter} „service-configuration“-Liste services" #. type: deftypevr -#: guix-git/doc/guix.texi:21530 +#: guix-git/doc/guix.texi:21892 msgid "List of services to enable. Available services include @samp{imap}, @samp{imap-login}, @samp{pop3}, @samp{pop3-login}, @samp{auth}, and @samp{lmtp}." msgstr "Die Liste der zu aktivierenden Dienste. Zu den verfügbaren Diensten gehören @samp{imap}, @samp{imap-login}, @samp{pop3}, @samp{pop3-login}, @samp{auth} und @samp{lmtp}." #. type: deftypevr -#: guix-git/doc/guix.texi:21532 +#: guix-git/doc/guix.texi:21894 msgid "Available @code{service-configuration} fields are:" msgstr "Verfügbare @code{service-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:21533 +#: guix-git/doc/guix.texi:21895 #, no-wrap msgid "{@code{service-configuration} parameter} string kind" msgstr "{@code{service-configuration}-Parameter} Zeichenkette kind" #. type: deftypevr -#: guix-git/doc/guix.texi:21538 +#: guix-git/doc/guix.texi:21900 msgid "The service kind. Valid values include @code{director}, @code{imap-login}, @code{pop3-login}, @code{lmtp}, @code{imap}, @code{pop3}, @code{auth}, @code{auth-worker}, @code{dict}, @code{tcpwrap}, @code{quota-warning}, or anything else." msgstr "Die Dienstart (englisch „kind“). Zu den gültigen Werten gehören @code{director}, @code{imap-login}, @code{pop3-login}, @code{lmtp}, @code{imap}, @code{pop3}, @code{auth}, @code{auth-worker}, @code{dict}, @code{tcpwrap}, @code{quota-warning} oder alles andere." #. type: deftypevr -#: guix-git/doc/guix.texi:21540 +#: guix-git/doc/guix.texi:21902 #, no-wrap msgid "{@code{service-configuration} parameter} listener-configuration-list listeners" msgstr "{@code{service-configuration}-Parameter} „listener-configuration“-Liste listeners" #. type: deftypevr -#: guix-git/doc/guix.texi:21545 +#: guix-git/doc/guix.texi:21907 msgid "Listeners for the service. A listener is either a @code{unix-listener-configuration}, a @code{fifo-listener-configuration}, or an @code{inet-listener-configuration}. Defaults to @samp{()}." msgstr "„Listener“ für den Dienst, also Lauscher auf neue Verbindungen. Als Listener kann entweder eine @code{unix-listener-configuration}, eine @code{fifo-listener-configuration} oder eine @code{inet-listener-configuration} angegeben werden. Die Vorgabe ist @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:21547 +#: guix-git/doc/guix.texi:21909 msgid "Available @code{unix-listener-configuration} fields are:" msgstr "Verfügbare @code{unix-listener-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:21548 +#: guix-git/doc/guix.texi:21910 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string path" msgstr "{@code{unix-listener-configuration}-Parameter} Zeichenkette path" #. type: deftypevr -#: guix-git/doc/guix.texi:21551 guix-git/doc/guix.texi:21574 +#: guix-git/doc/guix.texi:21913 guix-git/doc/guix.texi:21936 msgid "Path to the file, relative to @code{base-dir} field. This is also used as the section name." msgstr "Der Pfad zur Datei, relativ zum Feld @code{base-dir}. Er wird auch als der Abschnittsname verwendet." #. type: deftypevr -#: guix-git/doc/guix.texi:21553 +#: guix-git/doc/guix.texi:21915 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string mode" msgstr "{@code{unix-listener-configuration}-Parameter} Zeichenkette mode" #. type: deftypevr -#: guix-git/doc/guix.texi:21556 guix-git/doc/guix.texi:21579 +#: guix-git/doc/guix.texi:21918 guix-git/doc/guix.texi:21941 msgid "The access mode for the socket. Defaults to @samp{\"0600\"}." msgstr "Der Zugriffsmodus des Sockets. Die Vorgabe ist @samp{\"0600\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21558 +#: guix-git/doc/guix.texi:21920 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string user" msgstr "{@code{unix-listener-configuration}-Parameter} Zeichenkette user" #. type: deftypevr -#: guix-git/doc/guix.texi:21561 guix-git/doc/guix.texi:21584 +#: guix-git/doc/guix.texi:21923 guix-git/doc/guix.texi:21946 msgid "The user to own the socket. Defaults to @samp{\"\"}." msgstr "Der Benutzer, dem der Socket gehört. Die Vorgabe ist @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21563 +#: guix-git/doc/guix.texi:21925 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string group" msgstr "{@code{unix-listener-configuration}-Parameter} Zeichenkette group" #. type: deftypevr -#: guix-git/doc/guix.texi:21566 guix-git/doc/guix.texi:21589 +#: guix-git/doc/guix.texi:21928 guix-git/doc/guix.texi:21951 msgid "The group to own the socket. Defaults to @samp{\"\"}." msgstr "Die Gruppe, der der Socket gehört. Die Vorgabe ist @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21570 +#: guix-git/doc/guix.texi:21932 msgid "Available @code{fifo-listener-configuration} fields are:" msgstr "Verfügbare @code{fifo-listener-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:21571 +#: guix-git/doc/guix.texi:21933 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string path" msgstr "{@code{fifo-listener-configuration}-Parameter} Zeichenkette path" #. type: deftypevr -#: guix-git/doc/guix.texi:21576 +#: guix-git/doc/guix.texi:21938 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string mode" msgstr "{@code{fifo-listener-configuration}-Parameter} Zeichenkette mode" #. type: deftypevr -#: guix-git/doc/guix.texi:21581 +#: guix-git/doc/guix.texi:21943 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string user" msgstr "{@code{fifo-listener-configuration}-Parameter} Zeichenkette user" #. type: deftypevr -#: guix-git/doc/guix.texi:21586 +#: guix-git/doc/guix.texi:21948 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string group" msgstr "{@code{fifo-listener-configuration}-Parameter} Zeichenkette group" #. type: deftypevr -#: guix-git/doc/guix.texi:21593 +#: guix-git/doc/guix.texi:21955 msgid "Available @code{inet-listener-configuration} fields are:" msgstr "Verfügbare @code{inet-listener-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:21594 +#: guix-git/doc/guix.texi:21956 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} string protocol" msgstr "{@code{inet-listener-configuration}-Parameter} Zeichenkette protocol" #. type: deftypevr -#: guix-git/doc/guix.texi:21596 +#: guix-git/doc/guix.texi:21958 msgid "The protocol to listen for." msgstr "Das Protokoll, auf das gelauscht wird." #. type: deftypevr -#: guix-git/doc/guix.texi:21598 +#: guix-git/doc/guix.texi:21960 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} string address" msgstr "{@code{inet-listener-configuration}-Parameter} Zeichenkette address" #. type: deftypevr -#: guix-git/doc/guix.texi:21601 +#: guix-git/doc/guix.texi:21963 msgid "The address on which to listen, or empty for all addresses. Defaults to @samp{\"\"}." msgstr "Die Adresse, auf der gelauscht wird. Bleibt das Feld leer, wird auf allen Adressen gelauscht. Die Vorgabe ist @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21603 +#: guix-git/doc/guix.texi:21965 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} non-negative-integer port" msgstr "{@code{inet-listener-configuration}-Parameter} Nichtnegative-ganze-Zahl port" #. type: deftypevr -#: guix-git/doc/guix.texi:21605 +#: guix-git/doc/guix.texi:21967 msgid "The port on which to listen." msgstr "Der Port, auf dem gelauscht werden soll." #. type: deftypevr -#: guix-git/doc/guix.texi:21607 +#: guix-git/doc/guix.texi:21969 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} boolean ssl?" msgstr "{@code{inet-listener-configuration}-Parameter} Boolescher-Ausdruck ssl?" #. type: deftypevr -#: guix-git/doc/guix.texi:21611 +#: guix-git/doc/guix.texi:21973 msgid "Whether to use SSL for this service; @samp{yes}, @samp{no}, or @samp{required}. Defaults to @samp{#t}." msgstr "Ob für diesen Dienst SSL benutzt werden kann: @samp{yes} für ja, @samp{no} für nein oder @samp{required} für „verpflichtend“. Die Vorgabe ist @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:21615 +#: guix-git/doc/guix.texi:21977 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer client-limit" msgstr "{@code{service-configuration}-Parameter} Nichtnegative-ganze-Zahl client-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:21620 +#: guix-git/doc/guix.texi:21982 msgid "Maximum number of simultaneous client connections per process. Once this number of connections is received, the next incoming connection will prompt Dovecot to spawn another process. If set to 0, @code{default-client-limit} is used instead." msgstr "Die maximale Anzahl gleichzeitiger Verbindungen mit Clients pro Prozess. Sobald diese Anzahl von Verbindungen eingegangen ist, bewirkt das Eingehen der nächsten Verbindung, dass Dovecot einen weiteren Prozess startet. Ist sie auf 0 gesetzt, benutzt Dovecot stattdessen @code{default-client-limit}." #. type: deftypevr -#: guix-git/doc/guix.texi:21625 +#: guix-git/doc/guix.texi:21987 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer service-count" msgstr "{@code{service-configuration}-Parameter} Nichtnegative-ganze-Zahl service-count" #. type: deftypevr -#: guix-git/doc/guix.texi:21630 +#: guix-git/doc/guix.texi:21992 msgid "Number of connections to handle before starting a new process. Typically the only useful values are 0 (unlimited) or 1. 1 is more secure, but 0 is faster. . Defaults to @samp{1}." msgstr "Die Anzahl Verbindungen, die behandelt werden, bevor ein neuer Prozess gestartet wird. Typischerweise sind die einzig sinnvollen Werte 0 (unbeschränkt) oder 1. 1 ist sicherer, aber 0 ist schneller. Siehe . Die Vorgabe ist @samp{1}." #. type: deftypevr -#: guix-git/doc/guix.texi:21633 +#: guix-git/doc/guix.texi:21995 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer process-limit" msgstr "{@code{service-configuration}-Parameter} Nichtnegative-ganze-Zahl process-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:21636 +#: guix-git/doc/guix.texi:21998 msgid "Maximum number of processes that can exist for this service. If set to 0, @code{default-process-limit} is used instead." msgstr "Die maximale Anzahl von Prozessen, die für diesen Dienst existieren können. Wenn sie auf 0 gesetzt ist, benutzt Dovecot stattdessen @code{default-process-limit}." #. type: deftypevr -#: guix-git/doc/guix.texi:21641 +#: guix-git/doc/guix.texi:22003 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer process-min-avail" msgstr "{@code{service-configuration}-Parameter} Nichtnegative-ganze-Zahl process-min-avail" #. type: deftypevr -#: guix-git/doc/guix.texi:21644 +#: guix-git/doc/guix.texi:22006 msgid "Number of processes to always keep waiting for more connections. Defaults to @samp{0}." msgstr "Die Anzahl der Prozesse, mit denen immer auf neue Verbindungen gewartet wird. Die Vorgabe ist @samp{0}." #. type: deftypevr -#: guix-git/doc/guix.texi:21646 +#: guix-git/doc/guix.texi:22008 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer vsz-limit" msgstr "{@code{service-configuration}-Parameter} Nichtnegative-ganze-Zahl vsz-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:21650 +#: guix-git/doc/guix.texi:22012 msgid "If you set @samp{service-count 0}, you probably need to grow this. Defaults to @samp{256000000}." msgstr "Wenn Sie @samp{service-count 0} festlegen, müssen Sie hierfür wahrscheinlich eine größere Zahl wählen. Die Vorgabe ist @samp{256000000}." #. type: deftypevr -#: guix-git/doc/guix.texi:21654 +#: guix-git/doc/guix.texi:22016 #, no-wrap msgid "{@code{dovecot-configuration} parameter} dict-configuration dict" msgstr "{@code{dovecot-configuration}-Parameter} dict-configuration dict" #. type: deftypevr -#: guix-git/doc/guix.texi:21657 +#: guix-git/doc/guix.texi:22019 msgid "Dict configuration, as created by the @code{dict-configuration} constructor." msgstr "Die Wörterbuchkonfiguration, wie sie der @code{dict-configuration}-Konstruktor erzeugt." #. type: deftypevr -#: guix-git/doc/guix.texi:21659 +#: guix-git/doc/guix.texi:22021 msgid "Available @code{dict-configuration} fields are:" msgstr "Verfügbare @code{dict-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:21660 +#: guix-git/doc/guix.texi:22022 #, no-wrap msgid "{@code{dict-configuration} parameter} free-form-fields entries" msgstr "{@code{dict-configuration}-Parameter} Formlose-Felder entries" #. type: deftypevr -#: guix-git/doc/guix.texi:21663 +#: guix-git/doc/guix.texi:22025 msgid "A list of key-value pairs that this dict should hold. Defaults to @samp{()}." msgstr "Eine Liste von Schlüssel-Wert-Paaren, die in diesem Wörterbuch enthalten sein sollen. Die Vorgabe ist @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:21667 +#: guix-git/doc/guix.texi:22029 #, no-wrap msgid "{@code{dovecot-configuration} parameter} passdb-configuration-list passdbs" msgstr "{@code{dovecot-configuration}-Parameter} „passdb-configuration“-Liste passdbs" #. type: deftypevr -#: guix-git/doc/guix.texi:21670 +#: guix-git/doc/guix.texi:22032 msgid "A list of passdb configurations, each one created by the @code{passdb-configuration} constructor." msgstr "Eine Liste von Passwortdatenbankkonfigurationen, die jeweils mit dem @code{passdb-configuration}-Konstruktor erzeugt werden." #. type: deftypevr -#: guix-git/doc/guix.texi:21672 +#: guix-git/doc/guix.texi:22034 msgid "Available @code{passdb-configuration} fields are:" msgstr "Verfügbare @code{passdb-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:21673 +#: guix-git/doc/guix.texi:22035 #, no-wrap msgid "{@code{passdb-configuration} parameter} string driver" msgstr "{@code{passdb-configuration}-Parameter} Zeichenkette driver" #. type: deftypevr -#: guix-git/doc/guix.texi:21678 +#: guix-git/doc/guix.texi:22040 msgid "The driver that the passdb should use. Valid values include @samp{pam}, @samp{passwd}, @samp{shadow}, @samp{bsdauth}, and @samp{static}. Defaults to @samp{\"pam\"}." msgstr "Der Treiber, den die Passwortdatenbank benutzen soll. Zu den gültigen Werten gehören @samp{pam}, @samp{passwd}, @samp{shadow}, @samp{bsdauth} und @samp{static}. Die Vorgabe ist @samp{\"pam\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21680 +#: guix-git/doc/guix.texi:22042 #, no-wrap msgid "{@code{passdb-configuration} parameter} space-separated-string-list args" msgstr "{@code{passdb-configuration}-Parameter} Leerzeichengetrennte-Zeichenketten-Liste args" #. type: deftypevr -#: guix-git/doc/guix.texi:21683 +#: guix-git/doc/guix.texi:22045 msgid "Space separated list of arguments to the passdb driver. Defaults to @samp{\"\"}." msgstr "Leerzeichengetrennte Liste der Argumente an den Passwortdatenbanktreiber. Die Vorgabe ist @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21687 +#: guix-git/doc/guix.texi:22049 #, no-wrap msgid "{@code{dovecot-configuration} parameter} userdb-configuration-list userdbs" msgstr "{@code{dovecot-configuration}-Parameter} „userdb-configuration“-Liste userdbs" #. type: deftypevr -#: guix-git/doc/guix.texi:21690 +#: guix-git/doc/guix.texi:22052 msgid "List of userdb configurations, each one created by the @code{userdb-configuration} constructor." msgstr "Liste der Benutzerdatenbankkonfigurationen, die jeweils mit dem @code{userdb-configuration}-Konstruktor erzeugt werden." #. type: deftypevr -#: guix-git/doc/guix.texi:21692 +#: guix-git/doc/guix.texi:22054 msgid "Available @code{userdb-configuration} fields are:" msgstr "Verfügbare @code{userdb-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:21693 +#: guix-git/doc/guix.texi:22055 #, no-wrap msgid "{@code{userdb-configuration} parameter} string driver" msgstr "{@code{userdb-configuration}-Parameter} Zeichenkette driver" #. type: deftypevr -#: guix-git/doc/guix.texi:21697 +#: guix-git/doc/guix.texi:22059 msgid "The driver that the userdb should use. Valid values include @samp{passwd} and @samp{static}. Defaults to @samp{\"passwd\"}." msgstr "Der Treiber, den die Benutzerdatenbank benutzen soll. Zu den gültigen Werten gehören @samp{passwd} und @samp{static}. Die Vorgabe ist @samp{\"passwd\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21699 +#: guix-git/doc/guix.texi:22061 #, no-wrap msgid "{@code{userdb-configuration} parameter} space-separated-string-list args" msgstr "{@code{userdb-configuration}-Parameter} Leerzeichengetrennte-Zeichenketten-Liste args" #. type: deftypevr -#: guix-git/doc/guix.texi:21702 +#: guix-git/doc/guix.texi:22064 msgid "Space separated list of arguments to the userdb driver. Defaults to @samp{\"\"}." msgstr "Leerzeichengetrennte Liste der Argumente an den Benutzerdatenbanktreiber. Die Vorgabe ist @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21704 +#: guix-git/doc/guix.texi:22066 #, no-wrap msgid "{@code{userdb-configuration} parameter} free-form-args override-fields" msgstr "{@code{userdb-configuration}-Parameter} Formlose-Argumente override-fields" #. type: deftypevr -#: guix-git/doc/guix.texi:21707 +#: guix-git/doc/guix.texi:22069 msgid "Override fields from passwd. Defaults to @samp{()}." msgstr "Einträge, die Vorrang vor den Feldern aus passwd haben. Die Vorgabe ist @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:21711 +#: guix-git/doc/guix.texi:22073 #, no-wrap msgid "{@code{dovecot-configuration} parameter} plugin-configuration plugin-configuration" msgstr "{@code{dovecot-configuration}-Parameter} „plugin-configuration“ plugin-configuration" #. type: deftypevr -#: guix-git/doc/guix.texi:21714 +#: guix-git/doc/guix.texi:22076 msgid "Plug-in configuration, created by the @code{plugin-configuration} constructor." msgstr "Die Plugin-Konfiguration, die vom @code{plugin-configuration}-Konstruktor erzeugt wird." #. type: deftypevr -#: guix-git/doc/guix.texi:21716 +#: guix-git/doc/guix.texi:22078 #, no-wrap msgid "{@code{dovecot-configuration} parameter} list-of-namespace-configuration namespaces" msgstr "{@code{dovecot-configuration}-Parameter} „namespace-configuration“-Liste namespaces" #. type: deftypevr -#: guix-git/doc/guix.texi:21719 +#: guix-git/doc/guix.texi:22081 msgid "List of namespaces. Each item in the list is created by the @code{namespace-configuration} constructor." msgstr "Liste der Namensräume. Jedes Objekt in der Liste wird durch den @code{namespace-configuration}-Konstruktor erzeugt." #. type: deftypevr -#: guix-git/doc/guix.texi:21721 +#: guix-git/doc/guix.texi:22083 msgid "Available @code{namespace-configuration} fields are:" msgstr "Verfügbare @code{namespace-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:21722 +#: guix-git/doc/guix.texi:22084 #, no-wrap msgid "{@code{namespace-configuration} parameter} string name" msgstr "{@code{namespace-configuration}-Parameter} Zeichenkette name" #. type: deftypevr -#: guix-git/doc/guix.texi:21724 +#: guix-git/doc/guix.texi:22086 msgid "Name for this namespace." msgstr "Der Name dieses Namensraums." #. type: deftypevr -#: guix-git/doc/guix.texi:21726 +#: guix-git/doc/guix.texi:22088 #, no-wrap msgid "{@code{namespace-configuration} parameter} string type" msgstr "{@code{namespace-configuration}-Parameter} Zeichenkette type" #. type: deftypevr -#: guix-git/doc/guix.texi:21729 +#: guix-git/doc/guix.texi:22091 msgid "Namespace type: @samp{private}, @samp{shared} or @samp{public}. Defaults to @samp{\"private\"}." msgstr "Namensraum-Typ: @samp{private}, @samp{shared} oder @samp{public}. Die Vorgabe ist @samp{\"private\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21731 +#: guix-git/doc/guix.texi:22093 #, no-wrap msgid "{@code{namespace-configuration} parameter} string separator" msgstr "{@code{namespace-configuration}-Parameter} Zeichenkette separator" #. type: deftypevr -#: guix-git/doc/guix.texi:21737 +#: guix-git/doc/guix.texi:22099 msgid "Hierarchy separator to use. You should use the same separator for all namespaces or some clients get confused. @samp{/} is usually a good one. The default however depends on the underlying mail storage format. Defaults to @samp{\"\"}." msgstr "Welche Trennzeichen in der Hierarchie von Namensräumen benutzt werden sollen. Sie sollten denselben Trenner für alle Namensräume benutzen, sonst führt es zu Verwirrung bei manchen Clients. Meistens ist @samp{/} eine gute Wahl, die Voreinstellung ist allerdings abhängig vom darunterliegenden Mail-Speicher-Format. Die Vorgabe ist @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21739 +#: guix-git/doc/guix.texi:22101 #, no-wrap msgid "{@code{namespace-configuration} parameter} string prefix" msgstr "{@code{namespace-configuration}-Parameter} Zeichenkette prefix" #. type: deftypevr -#: guix-git/doc/guix.texi:21743 +#: guix-git/doc/guix.texi:22105 msgid "Prefix required to access this namespace. This needs to be different for all namespaces. For example @samp{Public/}. Defaults to @samp{\"\"}." msgstr "Das Präfix, das für Zugang auf diesen Namensraum angegeben werden muss. Es muss für jeden Namensraum ein anderes gewählt werden. Ein Beispiel ist @samp{Public/}. Die Vorgabe ist @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21745 +#: guix-git/doc/guix.texi:22107 #, no-wrap msgid "{@code{namespace-configuration} parameter} string location" msgstr "{@code{namespace-configuration}-Parameter} Zeichenkette location" #. type: deftypevr -#: guix-git/doc/guix.texi:21749 +#: guix-git/doc/guix.texi:22111 msgid "Physical location of the mailbox. This is in the same format as mail_location, which is also the default for it. Defaults to @samp{\"\"}." msgstr "Der physische Ort, an dem sich dieses Postfach („Mailbox“) befindet. Das Format ist dasselbe wie beim Mail-Ort („mail location“), der auch als Voreinstellung hierfür benutzt wird. Die Vorgabe ist @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21751 +#: guix-git/doc/guix.texi:22113 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean inbox?" msgstr "{@code{namespace-configuration}-Parameter} Boolescher-Ausdruck inbox?" #. type: deftypevr -#: guix-git/doc/guix.texi:21755 +#: guix-git/doc/guix.texi:22117 msgid "There can be only one INBOX, and this setting defines which namespace has it. Defaults to @samp{#f}." msgstr "Es kann nur eine INBOX geben; hiermit wird festgelegt, zu welchem Namensraum sie gehört. Die Vorgabe ist @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:21757 +#: guix-git/doc/guix.texi:22119 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean hidden?" msgstr "{@code{namespace-configuration}-Parameter} Boolescher-Ausdruck hidden?" #. type: deftypevr -#: guix-git/doc/guix.texi:21765 +#: guix-git/doc/guix.texi:22127 msgid "If namespace is hidden, it's not advertised to clients via NAMESPACE extension. You'll most likely also want to set @samp{list? #f}. This is mostly useful when converting from another server with different namespaces which you want to deprecate but still keep working. For example you can create hidden namespaces with prefixes @samp{~/mail/}, @samp{~%u/mail/} and @samp{mail/}. Defaults to @samp{#f}." msgstr "Wenn der Namensraum versteckt ist, wird er Clients gegenüber @emph{nicht} über die NAMESPACE-Erweiterung mitgeteilt. Wahrscheinlich möchten Sie auch @samp{list? #f} festlegen. Das ist in erster Linie dann nützlich, wenn Sie von einem anderen Server mit anderen Namensräumen umziehen, die Sie ersetzen möchten, die aber trotzdem noch weiterhin funktionieren sollen. Zum Beispiel können Sie versteckte Namensräume mit Präfixen @samp{~/mail/}, @samp{~%u/mail/} und @samp{mail/} anlegen. Die Vorgabe ist @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:21767 +#: guix-git/doc/guix.texi:22129 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean list?" msgstr "{@code{namespace-configuration}-Parameter} Boolescher-Ausdruck list?" #. type: deftypevr -#: guix-git/doc/guix.texi:21773 +#: guix-git/doc/guix.texi:22135 msgid "Show the mailboxes under this namespace with the LIST command. This makes the namespace visible for clients that do not support the NAMESPACE extension. The special @code{children} value lists child mailboxes, but hides the namespace prefix. Defaults to @samp{#t}." msgstr "Ob die Postfächer („Mailboxes“) unter diesem Namensraum mit dem LIST-Befehl angezeigt werden können. Dadurch wird der Namensraum für Clients sichtbar, die die NAMESPACE-Erweiterung nicht unterstützen. Mit dem besonderen Wert @code{children} werden auch Kind-Postfächer aufgelistet, aber das Namensraumpräfix verborgen. Die Vorgabe ist @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:21775 +#: guix-git/doc/guix.texi:22137 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean subscriptions?" msgstr "{@code{namespace-configuration}-Parameter} Boolescher-Ausdruck subscriptions?" #. type: deftypevr -#: guix-git/doc/guix.texi:21780 +#: guix-git/doc/guix.texi:22142 msgid "Namespace handles its own subscriptions. If set to @code{#f}, the parent namespace handles them. The empty prefix should always have this as @code{#t}). Defaults to @samp{#t}." msgstr "Die Abonnements werden im Namensraum selbst behandelt. Wenn es auf @code{#f} gesetzt ist, werden sie im Elternnamensraum behandelt. Das leere Präfix sollte hier immer @code{#t} haben. Die Vorgabe ist @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:21782 +#: guix-git/doc/guix.texi:22144 #, no-wrap msgid "{@code{namespace-configuration} parameter} mailbox-configuration-list mailboxes" msgstr "{@code{namespace-configuration}-Parameter} „mailbox-configuration“-Liste mailboxes" #. type: deftypevr -#: guix-git/doc/guix.texi:21785 +#: guix-git/doc/guix.texi:22147 msgid "List of predefined mailboxes in this namespace. Defaults to @samp{()}." msgstr "Die Liste der in diesem Namensraum vordefinierten Postfächer. Die Vorgabe ist @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:21787 +#: guix-git/doc/guix.texi:22149 msgid "Available @code{mailbox-configuration} fields are:" msgstr "Verfügbare @code{mailbox-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:21788 +#: guix-git/doc/guix.texi:22150 #, no-wrap msgid "{@code{mailbox-configuration} parameter} string name" msgstr "{@code{mailbox-configuration}-Parameter} Zeichenkette name" #. type: deftypevr -#: guix-git/doc/guix.texi:21790 +#: guix-git/doc/guix.texi:22152 msgid "Name for this mailbox." msgstr "Der Name dieses Postfachs (dieser „Mailbox“)." #. type: deftypevr -#: guix-git/doc/guix.texi:21792 +#: guix-git/doc/guix.texi:22154 #, no-wrap msgid "{@code{mailbox-configuration} parameter} string auto" msgstr "{@code{mailbox-configuration}-Parameter} Zeichenkette auto" #. type: deftypevr -#: guix-git/doc/guix.texi:21796 +#: guix-git/doc/guix.texi:22158 msgid "@samp{create} will automatically create this mailbox. @samp{subscribe} will both create and subscribe to the mailbox. Defaults to @samp{\"no\"}." msgstr "Bei @samp{create} wird dieses Postfach automatisch erzeugt. Bei @samp{subscribe} wird dieses Postfach sowohl automatisch erzeugt als auch automatisch abonniert. Die Vorgabe ist @samp{\"no\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21798 +#: guix-git/doc/guix.texi:22160 #, no-wrap msgid "{@code{mailbox-configuration} parameter} space-separated-string-list special-use" msgstr "{@code{mailbox-configuration}-Parameter} Leerzeichengetrennte-Zeichenketten-Liste special-use" #. type: deftypevr -#: guix-git/doc/guix.texi:21803 +#: guix-git/doc/guix.texi:22165 msgid "List of IMAP @code{SPECIAL-USE} attributes as specified by RFC 6154. Valid values are @code{\\All}, @code{\\Archive}, @code{\\Drafts}, @code{\\Flagged}, @code{\\Junk}, @code{\\Sent}, and @code{\\Trash}. Defaults to @samp{()}." msgstr "Liste der @code{SPECIAL-USE}-Attribute von IMAP, wie sie im RFC 6154 festgelegt wurden. Gültige Werte sind @code{\\All}, @code{\\Archive}, @code{\\Drafts}, @code{\\Flagged}, @code{\\Junk}, @code{\\Sent} und @code{\\Trash}. Die Vorgabe ist @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:21809 +#: guix-git/doc/guix.texi:22171 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name base-dir" msgstr "{@code{dovecot-configuration}-Parameter} Dateiname base-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:21812 +#: guix-git/doc/guix.texi:22174 msgid "Base directory where to store runtime data. Defaults to @samp{\"/var/run/dovecot/\"}." msgstr "Das Basisverzeichnis, in dem Laufzeitdaten gespeichert werden. Die Vorgabe ist @samp{\"/var/run/dovecot/\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21814 +#: guix-git/doc/guix.texi:22176 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string login-greeting" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette login-greeting" #. type: deftypevr -#: guix-git/doc/guix.texi:21817 +#: guix-git/doc/guix.texi:22179 msgid "Greeting message for clients. Defaults to @samp{\"Dovecot ready.\"}." msgstr "Begrüßungsnachricht für Clients. Die Vorgabe ist @samp{\"Dovecot ready.\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21819 +#: guix-git/doc/guix.texi:22181 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-trusted-networks" msgstr "{@code{dovecot-configuration}-Parameter} Leerzeichengetrennte-Zeichenketten-Liste login-trusted-networks" #. type: deftypevr -#: guix-git/doc/guix.texi:21826 +#: guix-git/doc/guix.texi:22188 msgid "List of trusted network ranges. Connections from these IPs are allowed to override their IP addresses and ports (for logging and for authentication checks). @samp{disable-plaintext-auth} is also ignored for these networks. Typically you would specify your IMAP proxy servers here. Defaults to @samp{()}." msgstr "Die Liste der Netzwerkbereiche, denen vertraut wird. Für Verbindungen von diesen IP-Adressen können abweichende IP-Adressen und Ports angegeben werden (zur Protokollierung und zur Authentifizierung). @samp{disable-plaintext-auth} wird für diese Netzwerke außerdem ignoriert. Normalerweise würden Sie hier Ihre IMAP-Proxy-Server eintragen. Die Vorgabe ist @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:21828 +#: guix-git/doc/guix.texi:22190 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-access-sockets" msgstr "{@code{dovecot-configuration}-Parameter} Leerzeichengetrennte-Zeichenketten-Liste login-access-sockets" #. type: deftypevr -#: guix-git/doc/guix.texi:21831 +#: guix-git/doc/guix.texi:22193 msgid "List of login access check sockets (e.g.@: tcpwrap). Defaults to @samp{()}." msgstr "Die Liste der Sockets zur Zugriffsprüfung beim Anmelden (z.B.@: tcpwrap). Die Vorgabe ist @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:21833 +#: guix-git/doc/guix.texi:22195 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean verbose-proctitle?" msgstr "{@code{dovecot-configuration}-Parameter} Boolescher-Ausdruck verbose-proctitle?" #. type: deftypevr -#: guix-git/doc/guix.texi:21839 +#: guix-git/doc/guix.texi:22201 msgid "Show more verbose process titles (in ps). Currently shows user name and IP address. Useful for seeing who is actually using the IMAP processes (e.g.@: shared mailboxes or if the same uid is used for multiple accounts). Defaults to @samp{#f}." msgstr "Ausführlichere Prozessnamen anzeigen (mit „ps“). Nach Voreinstellung werden Benutzername und IP-Adresse angezeigt. Die Einstellung ist nützlich, wenn man sehen können will, wer tatsächlich IMAP-Prozesse benutzt (z.B.@: gemeinsam genutzte Postfächer oder wenn derselbe Benutzeridentifikator/„UID“ für mehrere Konten benutzt wird). Die Vorgabe ist @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:21841 +#: guix-git/doc/guix.texi:22203 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean shutdown-clients?" msgstr "{@code{dovecot-configuration}-Parameter} Boolescher-Ausdruck shutdown-clients?" #. type: deftypevr -#: guix-git/doc/guix.texi:21847 +#: guix-git/doc/guix.texi:22209 msgid "Should all processes be killed when Dovecot master process shuts down. Setting this to @code{#f} means that Dovecot can be upgraded without forcing existing client connections to close (although that could also be a problem if the upgrade is e.g.@: due to a security fix). Defaults to @samp{#t}." msgstr "Ob alle Prozesse abgewürgt werden sollen, wenn der Haupt-Dovecot-Prozess terminiert. Ist dies auf @code{#f} gesetzt, kann Dovecot aktualisiert werden, ohne dass bestehende Client-Verbindungen zwangsweise geschlossen werden (jedoch kann das problematisch sein, wenn die Aktualisierung z.B.@: eine Sicherheitslücke schließen soll). Die Vorgabe ist @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:21849 +#: guix-git/doc/guix.texi:22211 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer doveadm-worker-count" msgstr "{@code{dovecot-configuration}-Parameter} Nichtnegative-ganze-Zahl doveadm-worker-count" #. type: deftypevr -#: guix-git/doc/guix.texi:21853 +#: guix-git/doc/guix.texi:22215 msgid "If non-zero, run mail commands via this many connections to doveadm server, instead of running them directly in the same process. Defaults to @samp{0}." msgstr "Ist dies @emph{nicht} null, werden Mail-Befehle über die angegebene Anzahl von Verbindungen an den doveadm-Server geschickt, statt sie direkt im selben Prozess auszuführen. Die Vorgabe ist @samp{0}." #. type: deftypevr -#: guix-git/doc/guix.texi:21855 +#: guix-git/doc/guix.texi:22217 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string doveadm-socket-path" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette doveadm-socket-path" #. type: deftypevr -#: guix-git/doc/guix.texi:21858 +#: guix-git/doc/guix.texi:22220 msgid "UNIX socket or host:port used for connecting to doveadm server. Defaults to @samp{\"doveadm-server\"}." msgstr "Der UNIX-Socket oder das „Host:Port“-Paar, mit dem Verbindungen zum doveadm-Server hergestellt werden. Die Vorgabe ist @samp{\"doveadm-server\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21860 +#: guix-git/doc/guix.texi:22222 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list import-environment" msgstr "{@code{dovecot-configuration}-Parameter} Leerzeichengetrennte-Zeichenketten-Liste import-environment" #. type: deftypevr -#: guix-git/doc/guix.texi:21864 +#: guix-git/doc/guix.texi:22226 msgid "List of environment variables that are preserved on Dovecot startup and passed down to all of its child processes. You can also give key=value pairs to always set specific settings." msgstr "Die Liste der Umgebungsvariablen, die beim Starten von Dovecot erhalten bleiben und allen Kindprozessen davon mitgegeben werden. Sie können auch „Schlüssel=Wert“-Paare angeben, um wie immer bestimmte Zuweisungen festzulegen." #. type: deftypevr -#: guix-git/doc/guix.texi:21866 +#: guix-git/doc/guix.texi:22228 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean disable-plaintext-auth?" msgstr "{@code{dovecot-configuration}-Parameter} Boolescher-Ausdruck disable-plaintext-auth?" #. type: deftypevr -#: guix-git/doc/guix.texi:21873 +#: guix-git/doc/guix.texi:22235 msgid "Disable LOGIN command and all other plaintext authentications unless SSL/TLS is used (LOGINDISABLED capability). Note that if the remote IP matches the local IP (i.e.@: you're connecting from the same computer), the connection is considered secure and plaintext authentication is allowed. See also ssl=required setting. Defaults to @samp{#t}." msgstr "Deaktiviert den LOGIN-Befehl und alle anderen Klartext-Authentisierungsverfahren, solange kein SSL/TLS benutzt wird (die LOGINDISABLED-Capability). Beachten Sie, dass, wenn die entfernte IP-Adresse mit der lokalen IP-Adresse identisch ist (Sie sich also vom selben Rechner aus verbinden), die Verbindung als sicher aufgefasst und Klartext-Authentisierung möglich ist. Siehe auch die „ssl=required“-Einstellung. Die Vorgabe ist @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:21875 +#: guix-git/doc/guix.texi:22237 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer auth-cache-size" msgstr "{@code{dovecot-configuration}-Parameter} Nichtnegative-ganze-Zahl auth-cache-size" #. type: deftypevr -#: guix-git/doc/guix.texi:21880 +#: guix-git/doc/guix.texi:22242 msgid "Authentication cache size (e.g.@: @samp{#e10e6}). 0 means it's disabled. Note that bsdauth, PAM and vpopmail require @samp{cache-key} to be set for caching to be used. Defaults to @samp{0}." msgstr "Die Größe des Zwischenspeichers für Authentifizierungen (z.B.@: @samp{#e10e6}). Bei 0 ist er deaktiviert. Beachten Sie, dass für bsdauth, PAM und vpopmail die Einstellung @samp{cache-key} festgelegt sein muss, damit ein Zwischenspeicher benutzt wird. Die Vorgabe ist @samp{0}." #. type: deftypevr -#: guix-git/doc/guix.texi:21882 +#: guix-git/doc/guix.texi:22244 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-cache-ttl" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette auth-cache-ttl" #. type: deftypevr -#: guix-git/doc/guix.texi:21890 +#: guix-git/doc/guix.texi:22252 msgid "Time to live for cached data. After TTL expires the cached record is no longer used, *except* if the main database lookup returns internal failure. We also try to handle password changes automatically: If user's previous authentication was successful, but this one wasn't, the cache isn't used. For now this works only with plaintext authentication. Defaults to @samp{\"1 hour\"}." msgstr "Wie lange Daten im Zwischenspeicher gültig bleiben („Time to live“). Nachdem die TTL ausläuft, wird der zwischengespeicherte Eintrag nicht mehr benutzt, @emph{außer} wenn eine Auflösung über die Hauptdatenbank zu einem internen Fehler führt. Dovecot versucht zudem, Passwortänderungen automatisch zu behandeln: Wenn die letzte Authentisierung erfolgreich war, diese jetzt aber nicht, wird der Zwischenspeicher @emph{nicht} benutzt. Derzeit funktioniert dies nur bei Klartext-Authentisierung. Die Vorgabe ist @samp{\"1 hour\"} für 1 Stunde." #. type: deftypevr -#: guix-git/doc/guix.texi:21892 +#: guix-git/doc/guix.texi:22254 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-cache-negative-ttl" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette auth-cache-negative-ttl" #. type: deftypevr -#: guix-git/doc/guix.texi:21896 +#: guix-git/doc/guix.texi:22258 msgid "TTL for negative hits (user not found, password mismatch). 0 disables caching them completely. Defaults to @samp{\"1 hour\"}." msgstr "TTL beim Zwischenspeichern negativer Ergebnisse („negative Hits“, z.B.@: wenn der Benutzer nicht gefunden wurde oder das Passwort nicht stimmt). 0 deaktiviert das Zwischenspeichern davon vollständig. Die Vorgabe ist @samp{\"1 hour\"} für 1 Stunde." #. type: deftypevr -#: guix-git/doc/guix.texi:21898 +#: guix-git/doc/guix.texi:22260 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list auth-realms" msgstr "{@code{dovecot-configuration}-Parameter} Leerzeichengetrennte-Zeichenketten-Liste auth-realms" #. type: deftypevr -#: guix-git/doc/guix.texi:21904 +#: guix-git/doc/guix.texi:22266 msgid "List of realms for SASL authentication mechanisms that need them. You can leave it empty if you don't want to support multiple realms. Many clients simply use the first one listed here, so keep the default realm first. Defaults to @samp{()}." msgstr "Die Liste der Administrationsbereiche („Realms“) für SASL-Authentisierungsmechanismen, die solche benötigen. Sie können dieses Feld leer lassen, wenn Sie @emph{keine} Unterstützung für mehrere Administrationsbereiche wollen. Viele Clients benutzen den ersten hier aufgelisteten Administrationsbereich, also sollte der als Voreinstellung gewünschte Bereich vorne stehen. Die Vorgabe ist @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:21906 +#: guix-git/doc/guix.texi:22268 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-default-realm" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette auth-default-realm" #. type: deftypevr -#: guix-git/doc/guix.texi:21911 +#: guix-git/doc/guix.texi:22273 msgid "Default realm/domain to use if none was specified. This is used for both SASL realms and appending @@domain to username in plaintext logins. Defaults to @samp{\"\"}." msgstr "Der voreingestellte Administrationsbereich bzw.@: die Domain, falls keiner angegeben wurde. Dies wird sowohl für SASL-Administrationsbereiche als auch zum Anhängen von @@domain an den Benutzernamen bei Klartextanmeldungen benutzt. Die Vorgabe ist @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21913 +#: guix-git/doc/guix.texi:22275 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-chars" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette auth-username-chars" #. type: deftypevr -#: guix-git/doc/guix.texi:21920 +#: guix-git/doc/guix.texi:22282 msgid "List of allowed characters in username. If the user-given username contains a character not listed in here, the login automatically fails. This is just an extra check to make sure user can't exploit any potential quote escaping vulnerabilities with SQL/LDAP databases. If you want to allow all characters, set this value to empty. Defaults to @samp{\"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@@\"}." msgstr "Die Liste der in Benutzernamen zulässigen Zeichen. Wenn der vom Benutzer angegebene Benutzername ein hier nicht aufgelistetes Zeichen enthält, wird die Authentisierung automatisch abgelehnt. Dies dient bloß als eine weitere Überprüfung, um zu gewährleisten, dass mögliche Schwachstellen bei der Maskierung von Anführungszeichen in SQL-/LDAP-Datenbanken nicht ausgenutzt werden können. Wenn Sie alle Zeichen zulassen möchten, setzen Sie dieses Feld auf eine leere Zeichenkette. Die Vorgabe ist @samp{\"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@@\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21922 +#: guix-git/doc/guix.texi:22284 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-translation" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette auth-username-translation" #. type: deftypevr -#: guix-git/doc/guix.texi:21928 +#: guix-git/doc/guix.texi:22290 msgid "Username character translations before it's looked up from databases. The value contains series of from -> to characters. For example @samp{#@@/@@} means that @samp{#} and @samp{/} characters are translated to @samp{@@}. Defaults to @samp{\"\"}." msgstr "Wie Zeichen in Benutzernamen ersetzt werden sollen, bevor der Name mit Datenbanken aufgelöst wird. Der Wert besteht aus einer Reihe von Angaben, welches Zeichen durch welches zu ersetzen ist. Zum Beispiel werden für @samp{#@@/@@} die Zeichen @samp{#} und @samp{/} beide durch @samp{@@} ersetzt. Die Vorgabe ist @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21930 +#: guix-git/doc/guix.texi:22292 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-format" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette auth-username-format" #. type: deftypevr -#: guix-git/doc/guix.texi:21937 +#: guix-git/doc/guix.texi:22299 msgid "Username formatting before it's looked up from databases. You can use the standard variables here, e.g.@: %Lu would lowercase the username, %n would drop away the domain if it was given, or @samp{%n-AT-%d} would change the @samp{@@} into @samp{-AT-}. This translation is done after @samp{auth-username-translation} changes. Defaults to @samp{\"%Lu\"}." msgstr "Formatierungsanweisungen, die auf jeden Benutzernamen angewandt werden, bevor er mit einer Datenbank aufgelöst wird. Sie können hierzu die Standardvariablen verwenden, z.B.@: würde %Lu den Benutzernamen in Kleinbuchstaben umschreiben („lowercase“), %n würde den Domainnamen weglassen, wenn einer angegeben wurde, und @samp{%n-AT-%d} würde alle @samp{@@} durch @samp{-AT-} ersetzen. Diese Übersetzung wird durchgeführt, nachdem die Änderungen aus @samp{auth-username-translation} angewandt wurden. Die Vorgabe ist @samp{\"%Lu\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21939 +#: guix-git/doc/guix.texi:22301 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-master-user-separator" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette auth-master-user-separator" #. type: deftypevr -#: guix-git/doc/guix.texi:21947 +#: guix-git/doc/guix.texi:22309 msgid "If you want to allow master users to log in by specifying the master username within the normal username string (i.e.@: not using SASL mechanism's support for it), you can specify the separator character here. The format is then . UW-IMAP uses @samp{*} as the separator, so that could be a good choice. Defaults to @samp{\"\"}." msgstr "Wenn Sie es für „Master“-Benutzer erlauben möchten, sich durch Angeben des Master-Benutzernamens als Teil einer normalen Benutzernamens-Zeichenkette als jemand anders anzumelden (also ohne Verwendung der Unterstützung davon durch den SASL-Mechanismus), können Sie hier die Trennzeichen dazwischen angeben. Das Format ist dann . UW-IMAP benutzt @samp{*} als Trennzeichen, also könnte das eine gute Wahl sein. Die Vorgabe ist @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21949 +#: guix-git/doc/guix.texi:22311 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-anonymous-username" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette auth-anonymous-username" #. type: deftypevr -#: guix-git/doc/guix.texi:21953 +#: guix-git/doc/guix.texi:22315 msgid "Username to use for users logging in with ANONYMOUS SASL mechanism. Defaults to @samp{\"anonymous\"}." msgstr "Der Benutzername, der verwendet wird, wenn sich Benutzer mit dem SASL-Mechanismus „ANONYMOUS“ anmelden. Die Vorgabe ist @samp{\"anonymous\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21955 +#: guix-git/doc/guix.texi:22317 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer auth-worker-max-count" msgstr "{@code{dovecot-configuration}-Parameter} Nichtnegative-ganze-Zahl auth-worker-max-count" #. type: deftypevr -#: guix-git/doc/guix.texi:21960 +#: guix-git/doc/guix.texi:22322 msgid "Maximum number of dovecot-auth worker processes. They're used to execute blocking passdb and userdb queries (e.g.@: MySQL and PAM). They're automatically created and destroyed as needed. Defaults to @samp{30}." msgstr "Die maximale Anzahl von dovecot-auth-Arbeiterprozessen. Diese werden benutzt, um blockierende Anfragen an die Passwortdatenbank („passdb“) und an die Benutzerdatenbank („userdb“) zu stellen (z.B.@: MySQL und PAM). Sie werden automatisch erzeugt und gelöscht, je nachdem, wann sie gebraucht werden. Die Vorgabe ist @samp{30}." #. type: deftypevr -#: guix-git/doc/guix.texi:21962 +#: guix-git/doc/guix.texi:22324 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-gssapi-hostname" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette auth-gssapi-hostname" #. type: deftypevr -#: guix-git/doc/guix.texi:21967 +#: guix-git/doc/guix.texi:22329 msgid "Host name to use in GSSAPI principal names. The default is to use the name returned by gethostname(). Use @samp{$ALL} (with quotes) to allow all keytab entries. Defaults to @samp{\"\"}." msgstr "Der Rechnername, der in GSSAPI-Prinzipalnamen benutzt wird. Nach Voreinstellung wird der durch gethostname() zurückgelieferte Name verwendet. Benutzen Sie @samp{$ALL} (mit Anführungszeichen), damit alle Einträge in der Schlüsseltabelle („Keytab“) akzeptiert werden. Die Vorgabe ist @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21969 +#: guix-git/doc/guix.texi:22331 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-krb5-keytab" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette auth-krb5-keytab" #. type: deftypevr -#: guix-git/doc/guix.texi:21975 +#: guix-git/doc/guix.texi:22337 msgid "Kerberos keytab to use for the GSSAPI mechanism. Will use the system default (usually @file{/etc/krb5.keytab}) if not specified. You may need to change the auth service to run as root to be able to read this file. Defaults to @samp{\"\"}." msgstr "Kerberos-Schlüsseltabelle („Keytab“), die für den GSSAPI-Mechanismus benutzt werden soll. Wenn sie nicht angegeben wird, wird die Voreinstellung des Systems benutzt (in der Regel @file{/etc/krb5.keytab}). Eventuell müssen Sie den Auth-Dienst als Administratornutzer „root“ ausführen lassen, um Lesezugriffe auf diese Datei zu ermöglichen. Die Vorgabe ist @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21977 +#: guix-git/doc/guix.texi:22339 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-use-winbind?" msgstr "{@code{dovecot-configuration}-Parameter} Boolescher-Ausdruck auth-use-winbind?" #. type: deftypevr -#: guix-git/doc/guix.texi:21982 +#: guix-git/doc/guix.texi:22344 msgid "Do NTLM and GSS-SPNEGO authentication using Samba's winbind daemon and @samp{ntlm-auth} helper. . Defaults to @samp{#f}." msgstr "NTLM-Authentifizierung und GSS-SPNEGO-Authentifizierung mit dem winbind-Daemon und dem @samp{ntlm-auth}-Hilfsprogramm von Samba durchführen. Siehe . Die Vorgabe ist @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:21984 +#: guix-git/doc/guix.texi:22346 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name auth-winbind-helper-path" msgstr "{@code{dovecot-configuration}-Parameter} Dateiname auth-winbind-helper-path" #. type: deftypevr -#: guix-git/doc/guix.texi:21987 +#: guix-git/doc/guix.texi:22349 msgid "Path for Samba's @samp{ntlm-auth} helper binary. Defaults to @samp{\"/usr/bin/ntlm_auth\"}." msgstr "Der Pfad zur Binärdatei @samp{ntlm-auth} von Samba. Die Vorgabe ist @samp{\"/usr/bin/ntlm_auth\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21989 +#: guix-git/doc/guix.texi:22351 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-failure-delay" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette auth-failure-delay" #. type: deftypevr -#: guix-git/doc/guix.texi:21992 +#: guix-git/doc/guix.texi:22354 msgid "Time to delay before replying to failed authentications. Defaults to @samp{\"2 secs\"}." msgstr "Die Zeit, wie lange vor der Antwort auf eine fehlgeschlagene Authentisierung gewartet wird. Die Vorgabe ist @samp{\"2 secs\"} für 2 Sekunden." #. type: deftypevr -#: guix-git/doc/guix.texi:21994 +#: guix-git/doc/guix.texi:22356 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-ssl-require-client-cert?" msgstr "{@code{dovecot-configuration}-Parameter} Boolescher-Ausdruck auth-ssl-require-client-cert?" #. type: deftypevr -#: guix-git/doc/guix.texi:21998 +#: guix-git/doc/guix.texi:22360 msgid "Require a valid SSL client certificate or the authentication fails. Defaults to @samp{#f}." msgstr "Es wird ein gültiges SSL-Client-Zertifikat verlangt, andernfalls schlägt die Authentisierung fehl. Die Vorgabe ist @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22000 +#: guix-git/doc/guix.texi:22362 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-ssl-username-from-cert?" msgstr "{@code{dovecot-configuration}-Parameter} Boolescher-Ausdruck auth-ssl-username-from-cert?" #. type: deftypevr -#: guix-git/doc/guix.texi:22005 +#: guix-git/doc/guix.texi:22367 msgid "Take the username from client's SSL certificate, using @code{X509_NAME_get_text_by_NID()} which returns the subject's DN's CommonName. Defaults to @samp{#f}." msgstr "Ob der Benutzername aus dem SSL-Zertifikat des Clients ausgelesen werden soll, indem @code{X509_NAME_get_text_by_NID()} benutzt wird, um den Distinguished Name („DN“) als Gebräuchlicher Name („CommonName“) des Zertifikatinhabers („Subject“) auszulesen. Die Vorgabe ist @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22007 +#: guix-git/doc/guix.texi:22369 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list auth-mechanisms" msgstr "{@code{dovecot-configuration}-Parameter} Leerzeichengetrennte-Zeichenketten-Liste auth-mechanisms" #. type: deftypevr -#: guix-git/doc/guix.texi:22013 +#: guix-git/doc/guix.texi:22375 msgid "List of wanted authentication mechanisms. Supported mechanisms are: @samp{plain}, @samp{login}, @samp{digest-md5}, @samp{cram-md5}, @samp{ntlm}, @samp{rpa}, @samp{apop}, @samp{anonymous}, @samp{gssapi}, @samp{otp}, @samp{skey}, and @samp{gss-spnego}. NOTE: See also @samp{disable-plaintext-auth} setting." msgstr "Die Liste der erwünschten Authentisierungsmechanismen. Unterstützte Mechanismen sind: @samp{plain}, @samp{login}, @samp{digest-md5}, @samp{cram-md5}, @samp{ntlm}, @samp{rpa}, @samp{apop}, @samp{anonymous}, @samp{gssapi}, @samp{otp}, @samp{skey} und @samp{gss-spnego}. @emph{Anmerkung}: Siehe auch die Einstellung zu @samp{disable-plaintext-auth}." #. type: deftypevr -#: guix-git/doc/guix.texi:22015 +#: guix-git/doc/guix.texi:22377 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list director-servers" msgstr "{@code{dovecot-configuration}-Parameter} Leerzeichengetrennte-Zeichenketten-Liste director-servers" #. type: deftypevr -#: guix-git/doc/guix.texi:22020 +#: guix-git/doc/guix.texi:22382 msgid "List of IPs or hostnames to all director servers, including ourself. Ports can be specified as ip:port. The default port is the same as what director service's @samp{inet-listener} is using. Defaults to @samp{()}." msgstr "Die Liste der IP-Adressen oder Rechnernamen („Hostnames“) für alle Direktorserver, einschließlich dieses Servers selbst. Ports können wie in „IP:Port“ angegeben werden. Der voreingestellte Port ist derselbe wie der, der beim @samp{inet-listener} des Direktordienstes benutzt wird. Die Vorgabe ist @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:22022 +#: guix-git/doc/guix.texi:22384 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list director-mail-servers" msgstr "{@code{dovecot-configuration}-Parameter} Leerzeichengetrennte-Zeichenketten-Liste director-mail-servers" #. type: deftypevr -#: guix-git/doc/guix.texi:22026 +#: guix-git/doc/guix.texi:22388 msgid "List of IPs or hostnames to all backend mail servers. Ranges are allowed too, like 10.0.0.10-10.0.0.30. Defaults to @samp{()}." msgstr "Die Liste der IP-Adressen oder Rechnernamen („Hostnames“), um alle Hintergrund-Mailserver zu erreichen. Auch Bereiche können angegeben werden, wie 10.0.0.10-10.0.0.30. Die Vorgabe ist @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:22028 +#: guix-git/doc/guix.texi:22390 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string director-user-expire" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette director-user-expire" #. type: deftypevr -#: guix-git/doc/guix.texi:22032 +#: guix-git/doc/guix.texi:22394 msgid "How long to redirect users to a specific server after it no longer has any connections. Defaults to @samp{\"15 min\"}." msgstr "Wie lange Benutzer zum selben Server weitergeleitet werden, sobald dieser keine Verbindungen mehr hat. Die Vorgabe ist @samp{\"15 min\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22034 +#: guix-git/doc/guix.texi:22396 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string director-username-hash" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette director-username-hash" #. type: deftypevr -#: guix-git/doc/guix.texi:22039 +#: guix-git/doc/guix.texi:22401 msgid "How the username is translated before being hashed. Useful values include %Ln if user can log in with or without @@domain, %Ld if mailboxes are shared within domain. Defaults to @samp{\"%Lu\"}." msgstr "Wie der Benutzername umgeschrieben wird, bevor er gehasht wird. Zu den sinnvollen Werten gehören %Ln, wenn der Nutzer sich mit oder ohne @@domain anmelden kann, oder %Ld, wenn Postfächer innerhalb der Domain gemeinsam genutzt werden. Die Vorgabe ist @samp{\"%Lu\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22041 +#: guix-git/doc/guix.texi:22403 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string log-path" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette log-path" #. type: deftypevr -#: guix-git/doc/guix.texi:22045 +#: guix-git/doc/guix.texi:22407 msgid "Log file to use for error messages. @samp{syslog} logs to syslog, @samp{/dev/stderr} logs to stderr. Defaults to @samp{\"syslog\"}." msgstr "Die Protokolldatei, die für Fehlermeldungen benutzt werden soll. Bei @samp{syslog} wird das Protokoll an syslog geschrieben, bei @samp{/dev/stderr} an die Standardfehlerausgabe. Die Vorgabe ist @samp{\"syslog\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22047 +#: guix-git/doc/guix.texi:22409 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string info-log-path" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette info-log-path" #. type: deftypevr -#: guix-git/doc/guix.texi:22051 +#: guix-git/doc/guix.texi:22413 msgid "Log file to use for informational messages. Defaults to @samp{log-path}. Defaults to @samp{\"\"}." msgstr "Die Protokolldatei, die für Informationsmeldungen benutzt werden soll. Die Voreinstellung ist @samp{log-path}. Die Vorgabe ist @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22053 +#: guix-git/doc/guix.texi:22415 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string debug-log-path" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette debug-log-path" #. type: deftypevr -#: guix-git/doc/guix.texi:22057 +#: guix-git/doc/guix.texi:22419 msgid "Log file to use for debug messages. Defaults to @samp{info-log-path}. Defaults to @samp{\"\"}." msgstr "Die Protokolldatei, die für Meldungen zur Fehlersuche benutzt werden soll. Die Voreinstellung ist @samp{info-log-path}. Die Vorgabe ist @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22059 +#: guix-git/doc/guix.texi:22421 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string syslog-facility" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette syslog-facility" #. type: deftypevr -#: guix-git/doc/guix.texi:22064 +#: guix-git/doc/guix.texi:22426 msgid "Syslog facility to use if you're logging to syslog. Usually if you don't want to use @samp{mail}, you'll use local0..local7. Also other standard facilities are supported. Defaults to @samp{\"mail\"}." msgstr "Als welche Syslog-Einrichtung Protokolle an Syslog übermittelt werden sollen. Falls Sie @samp{mail} hierbei @emph{nicht} benutzen wollen, eignen sich normalerweise local0–local7. Andere Standardeinrichtungen werden auch unterstützt. Die Vorgabe ist @samp{\"mail\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22066 +#: guix-git/doc/guix.texi:22428 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-verbose?" msgstr "{@code{dovecot-configuration}-Parameter} Boolescher-Ausdruck auth-verbose?" #. type: deftypevr -#: guix-git/doc/guix.texi:22070 +#: guix-git/doc/guix.texi:22432 msgid "Log unsuccessful authentication attempts and the reasons why they failed. Defaults to @samp{#f}." msgstr "Ob gescheiterte Anmeldeversuche und die Gründe, warum diese nicht erfolgreich waren, protokolliert werden sollen. Die Vorgabe ist @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22072 +#: guix-git/doc/guix.texi:22434 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-verbose-passwords" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette auth-verbose-passwords" #. type: deftypevr -#: guix-git/doc/guix.texi:22079 +#: guix-git/doc/guix.texi:22441 msgid "In case of password mismatches, log the attempted password. Valid values are no, plain and sha1. sha1 can be useful for detecting brute force password attempts vs. user simply trying the same password over and over again. You can also truncate the value to n chars by appending \":n\" (e.g.@: sha1:6). Defaults to @samp{\"no\"}." msgstr "Ob bei falschen Passwörtern das versuchte falsche Passwort ins Protokoll geschrieben werden soll. Gültige Werte sind \"no\" („nein“), \"plain\" (als Klartext) und \"sha1\". Den SHA1-Hash zu speichern kann nützlich sein, um zu erkennen, wenn jemand versucht, sehr viele Passwörter durchzuprobieren (ein „Brute-Force“-Angriff) oder ob Benutzer einfach nur dasselbe Passwort immer wieder probieren. Sie können auch nur die ersten n Zeichen des Wertes protokollieren, indem Sie \":n\" anhängen (z.B.@: sha1:6). Die Vorgabe ist @samp{\"no\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22081 +#: guix-git/doc/guix.texi:22443 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-debug?" msgstr "{@code{dovecot-configuration}-Parameter} Boolescher-Ausdruck auth-debug?" #. type: deftypevr -#: guix-git/doc/guix.texi:22085 +#: guix-git/doc/guix.texi:22447 msgid "Even more verbose logging for debugging purposes. Shows for example SQL queries. Defaults to @samp{#f}." msgstr "Ob zur Fehlersuche noch ausführlichere Protokolle geschrieben werden sollen. Zum Beispiel werden SQL-Anfragen protokolliert. Die Vorgabe ist @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22087 +#: guix-git/doc/guix.texi:22449 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-debug-passwords?" msgstr "{@code{dovecot-configuration}-Parameter} Boolescher-Ausdruck auth-debug-passwords?" #. type: deftypevr -#: guix-git/doc/guix.texi:22092 +#: guix-git/doc/guix.texi:22454 msgid "In case of password mismatches, log the passwords and used scheme so the problem can be debugged. Enabling this also enables @samp{auth-debug}. Defaults to @samp{#f}." msgstr "Ob bei falschen Passwörtern das versuchte falsche Passwort und das benutzte Passwortschema ins Protokoll geschrieben werden soll, damit das Problem untersucht werden kann. Wenn dies aktiviert wird, wird auch @samp{auth-debug} aktiviert. Die Vorgabe ist @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22094 +#: guix-git/doc/guix.texi:22456 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-debug?" msgstr "{@code{dovecot-configuration}-Parameter} Boolescher-Ausdruck mail-debug?" #. type: deftypevr -#: guix-git/doc/guix.texi:22098 +#: guix-git/doc/guix.texi:22460 msgid "Enable mail process debugging. This can help you figure out why Dovecot isn't finding your mails. Defaults to @samp{#f}." msgstr "Ob die Fehlersuche beim Mail-Prozess ermöglicht werden soll. Dies kann Ihnen dabei helfen, herauszufinden, warum Dovecot Ihre E-Mails nicht findet. Die Vorgabe ist @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22100 +#: guix-git/doc/guix.texi:22462 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean verbose-ssl?" msgstr "{@code{dovecot-configuration}-Parameter} Boolescher-Ausdruck verbose-ssl?" #. type: deftypevr -#: guix-git/doc/guix.texi:22103 +#: guix-git/doc/guix.texi:22465 msgid "Show protocol level SSL errors. Defaults to @samp{#f}." msgstr "SSL-Fehler auf Protokollebene anzeigen. Die Vorgabe ist @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22105 +#: guix-git/doc/guix.texi:22467 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string log-timestamp" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette log-timestamp" #. type: deftypevr -#: guix-git/doc/guix.texi:22109 +#: guix-git/doc/guix.texi:22471 msgid "Prefix for each line written to log file. % codes are in strftime(3) format. Defaults to @samp{\"\\\"%b %d %H:%M:%S \\\"\"}." msgstr "Das Präfix für jede Zeile, die ins Protokoll geschrieben wird. %-Codes sind im Format von strftime(3). Die Vorgabe ist @samp{\"\\\"%b %d %H:%M:%S \\\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22111 +#: guix-git/doc/guix.texi:22473 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-log-format-elements" msgstr "{@code{dovecot-configuration}-Parameter} Leerzeichengetrennte-Zeichenketten-Liste login-log-format-elements" #. type: deftypevr -#: guix-git/doc/guix.texi:22115 +#: guix-git/doc/guix.texi:22477 msgid "List of elements we want to log. The elements which have a non-empty variable value are joined together to form a comma-separated string." msgstr "Eine Liste der Elemente, die protokolliert werden sollen. Die Elemente, deren Variablenwerte nicht leer sind, werden zu einer kommagetrennten Zeichenkette zusammengefügt." #. type: deftypevr -#: guix-git/doc/guix.texi:22117 +#: guix-git/doc/guix.texi:22479 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string login-log-format" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette login-log-format" #. type: deftypevr -#: guix-git/doc/guix.texi:22121 +#: guix-git/doc/guix.texi:22483 msgid "Login log format. %s contains @samp{login-log-format-elements} string, %$ contains the data we want to log. Defaults to @samp{\"%$: %s\"}." msgstr "Das Format des Anmeldeprogramms. %s umfasst die Zeichenkette @samp{login-log-format-elements}, %$ enthält die Daten, die man protokollieren lassen möchte. Die Vorgabe ist @samp{\"%$: %s\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22123 +#: guix-git/doc/guix.texi:22485 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-log-prefix" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette mail-log-prefix" #. type: deftypevr -#: guix-git/doc/guix.texi:22127 +#: guix-git/doc/guix.texi:22489 msgid "Log prefix for mail processes. See doc/wiki/Variables.txt for list of possible variables you can use. Defaults to @samp{\"\\\"%s(%u)<%@{pid@}><%@{session@}>: \\\"\"}." msgstr "Das Präfix, das Protokollen für Mailprozesse vorangestellt wird. Siehe doc/wiki/Variables.txt für eine Liste der benutzbaren Variablen. Die Vorgabe ist @samp{\"\\\"%s(%u)<%@{pid@}><%@{session@}>: \\\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22129 +#: guix-git/doc/guix.texi:22491 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string deliver-log-format" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette deliver-log-format" #. type: deftypevr -#: guix-git/doc/guix.texi:22131 +#: guix-git/doc/guix.texi:22493 msgid "Format to use for logging mail deliveries. You can use variables:" msgstr "Welches Format zur Protokollierung von Mailzustellungen verwendet werden soll. Sie können die folgenden Variablen benutzen:" #. type: item -#: guix-git/doc/guix.texi:22132 +#: guix-git/doc/guix.texi:22494 #, no-wrap msgid "%$" msgstr "%$" #. type: table -#: guix-git/doc/guix.texi:22134 +#: guix-git/doc/guix.texi:22496 msgid "Delivery status message (e.g.@: @samp{saved to INBOX})" msgstr "Zustellungsstatusnachricht (z.B.@: @samp{saved to INBOX})" #. type: item -#: guix-git/doc/guix.texi:22134 +#: guix-git/doc/guix.texi:22496 #, no-wrap msgid "%m" msgstr "%m" #. type: table -#: guix-git/doc/guix.texi:22136 +#: guix-git/doc/guix.texi:22498 msgid "Message-ID" msgstr "Nachrichtenidentifikator („Message-ID“)" #. type: item -#: guix-git/doc/guix.texi:22136 guix-git/doc/guix.texi:22679 +#: guix-git/doc/guix.texi:22498 guix-git/doc/guix.texi:23041 #, no-wrap msgid "%s" msgstr "%s" #. type: table -#: guix-git/doc/guix.texi:22138 +#: guix-git/doc/guix.texi:22500 msgid "Subject" msgstr "Betreff („Subject“)" #. type: item -#: guix-git/doc/guix.texi:22138 +#: guix-git/doc/guix.texi:22500 #, no-wrap msgid "%f" msgstr "%f" #. type: table -#: guix-git/doc/guix.texi:22140 +#: guix-git/doc/guix.texi:22502 msgid "From address" msgstr "Absendeadresse („From“)" #. type: table -#: guix-git/doc/guix.texi:22142 +#: guix-git/doc/guix.texi:22504 msgid "Physical size" msgstr "Physische Größe" #. type: item -#: guix-git/doc/guix.texi:22142 +#: guix-git/doc/guix.texi:22504 #, no-wrap msgid "%w" msgstr "%w" #. type: table -#: guix-git/doc/guix.texi:22144 +#: guix-git/doc/guix.texi:22506 msgid "Virtual size." msgstr "Virtuelle Größe." #. type: deftypevr -#: guix-git/doc/guix.texi:22146 +#: guix-git/doc/guix.texi:22508 msgid "Defaults to @samp{\"msgid=%m: %$\"}." msgstr "Die Vorgabe ist @samp{\"msgid=%m: %$\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22148 +#: guix-git/doc/guix.texi:22510 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-location" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette mail-location" #. type: deftypevr -#: guix-git/doc/guix.texi:22153 +#: guix-git/doc/guix.texi:22515 msgid "Location for users' mailboxes. The default is empty, which means that Dovecot tries to find the mailboxes automatically. This won't work if the user doesn't yet have any mail, so you should explicitly tell Dovecot the full location." msgstr "Wo die Postfächer (die „Mailboxes“) der Benutzer gespeichert sind. Die Vorgabe ist die leere Zeichenkette, was bedeutet, dass Dovecot die Postfächer automatisch zu finden versucht. Das funktioniert nur, wenn der Nutzer bereits E-Mails gespeichert hat, also sollten Sie Dovecot den vollständigen Pfad mitteilen." #. type: deftypevr -#: guix-git/doc/guix.texi:22159 +#: guix-git/doc/guix.texi:22521 msgid "If you're using mbox, giving a path to the INBOX file (e.g.@: @file{/var/mail/%u}) isn't enough. You'll also need to tell Dovecot where the other mailboxes are kept. This is called the @emph{root mail directory}, and it must be the first path given in the @samp{mail-location} setting." msgstr "Wenn Sie das mbox-Format benutzen, genügt es @emph{nicht}, den Pfad zur INBOX-Datei (z.B.@: @file{/var/mail/%u}) anzugeben. Sie müssen Dovecot @emph{auch} mitteilen, wo die anderen Postfächer gespeichert sind. Dieses Verzeichnis nennt sich @emph{Wurzelmailverzeichnis} („Root Mail Directory“) und es muss als erster Pfad in der @samp{mail-location}-Einstellung angegeben werden." #. type: deftypevr -#: guix-git/doc/guix.texi:22161 +#: guix-git/doc/guix.texi:22523 msgid "There are a few special variables you can use, e.g.:" msgstr "Es gibt ein paar besondere Variable, die Sie verwenden können, z.B.:" #. type: table -#: guix-git/doc/guix.texi:22165 +#: guix-git/doc/guix.texi:22527 msgid "username" msgstr "Benutzername" #. type: item -#: guix-git/doc/guix.texi:22165 guix-git/doc/guix.texi:22675 +#: guix-git/doc/guix.texi:22527 guix-git/doc/guix.texi:23037 #, no-wrap msgid "%n" msgstr "%n" #. type: table -#: guix-git/doc/guix.texi:22167 +#: guix-git/doc/guix.texi:22529 msgid "user part in user@@domain, same as %u if there's no domain" msgstr "Benutzerteil in Benutzer@@Domain; sonst dasselbe wie %u, wenn es keine Domain gibt" #. type: item -#: guix-git/doc/guix.texi:22167 +#: guix-git/doc/guix.texi:22529 #, no-wrap msgid "%d" msgstr "%d" #. type: table -#: guix-git/doc/guix.texi:22169 +#: guix-git/doc/guix.texi:22531 msgid "domain part in user@@domain, empty if there's no domain" msgstr "Domainteil in Benutzer@@Domain; sonst leer, wenn es keine Domain gibt" #. type: item -#: guix-git/doc/guix.texi:22169 +#: guix-git/doc/guix.texi:22531 #, no-wrap msgid "%h" msgstr "%h" #. type: table -#: guix-git/doc/guix.texi:22171 +#: guix-git/doc/guix.texi:22533 msgid "home director" msgstr "Persönliches Verzeichnis" #. type: deftypevr -#: guix-git/doc/guix.texi:22174 +#: guix-git/doc/guix.texi:22536 msgid "See doc/wiki/Variables.txt for full list. Some examples:" msgstr "Siehe doc/wiki/Variables.txt für die vollständige Liste. Einige Beispiele:" #. type: item -#: guix-git/doc/guix.texi:22175 +#: guix-git/doc/guix.texi:22537 #, no-wrap msgid "maildir:~/Maildir" msgstr "maildir:~/Maildir" #. type: item -#: guix-git/doc/guix.texi:22176 +#: guix-git/doc/guix.texi:22538 #, no-wrap msgid "mbox:~/mail:INBOX=/var/mail/%u" msgstr "mbox:~/mail:INBOX=/var/mail/%u" #. type: item -#: guix-git/doc/guix.texi:22177 +#: guix-git/doc/guix.texi:22539 #, no-wrap msgid "mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%" msgstr "mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%" #. type: deftypevr -#: guix-git/doc/guix.texi:22182 +#: guix-git/doc/guix.texi:22544 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-uid" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette mail-uid" #. type: deftypevr -#: guix-git/doc/guix.texi:22187 +#: guix-git/doc/guix.texi:22549 msgid "System user and group used to access mails. If you use multiple, userdb can override these by returning uid or gid fields. You can use either numbers or names. . Defaults to @samp{\"\"}." msgstr "Systembenutzer und -gruppe, die benutzt werden sollen, um auf Mails zuzugreifen. Wenn Sie mehrere Benutzerkonten verwenden, kann auch die Benutzerdatenbank „userdb“ vorrangig verwendet werden, indem sie zu Benutzer- oder Gruppenidentifikatoren (UIDs und GIDs) auflöst. Sie können hier Zahlen oder Namen angeben. Siehe . Die Vorgabe ist @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22189 +#: guix-git/doc/guix.texi:22551 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-gid" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette mail-gid" #. type: deftypevr -#: guix-git/doc/guix.texi:22194 +#: guix-git/doc/guix.texi:22556 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-privileged-group" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette mail-privileged-group" #. type: deftypevr -#: guix-git/doc/guix.texi:22200 +#: guix-git/doc/guix.texi:22562 msgid "Group to enable temporarily for privileged operations. Currently this is used only with INBOX when either its initial creation or dotlocking fails. Typically this is set to @samp{\"mail\"} to give access to @file{/var/mail}. Defaults to @samp{\"\"}." msgstr "Die Benutzergruppe, die zwischenzeitlich benutzt wird, um Operationen mit besonderen Berechtigungen auszuführen. Derzeit wird dies nur mit dem INBOX-Postfach benutzt, wenn dessen anfängliche Erzeugung oder Sperrung per „Dotlocking“-Datei fehlschlägt. Typischerweise wird es auf @samp{\"mail\"} gesetzt, damit Zugriffe auf @file{/var/mail} möglich sind. Die Vorgabe ist @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22202 +#: guix-git/doc/guix.texi:22564 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-access-groups" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette mail-access-groups" #. type: deftypevr -#: guix-git/doc/guix.texi:22210 +#: guix-git/doc/guix.texi:22572 msgid "Grant access to these supplementary groups for mail processes. Typically these are used to set up access to shared mailboxes. Note that it may be dangerous to set these if users can create symlinks (e.g.@: if @samp{mail} group is set here, @code{ln -s /var/mail ~/mail/var} could allow a user to delete others' mailboxes, or @code{ln -s /secret/shared/box ~/mail/mybox} would allow reading it). Defaults to @samp{\"\"}." msgstr "Mail-Prozessen Zugriff auf diese zusätzlichen Benutzergruppen gewähren. Typischerweise werden sie benutzt, um gemeinsam genutzte Postfächer („Mailboxes“) so einzurichten, dass alle aus der Gruppe zugreifen können. Beachten Sie, dass es gefährlich sein kann, dies zu erlauben, wenn Benutzer symbolische Verknüpfungen einrichten können (z.B.@: kann jeder, wenn hier die @samp{mail}-Gruppe festgelegt wurde, @code{ln -s /var/mail ~/mail/var} benutzen, um die Postfächer der anderen zu löschen, oder @code{ln -s /secret/shared/box ~/mail/mybox}, um sie zu lesen). Die Vorgabe ist @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22212 +#: guix-git/doc/guix.texi:22574 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attribute-dict" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette mail-attribute-dict" #. type: deftypevr -#: guix-git/doc/guix.texi:22215 +#: guix-git/doc/guix.texi:22577 msgid "The location of a dictionary used to store @code{IMAP METADATA} as defined by @uref{https://tools.ietf.org/html/rfc5464, RFC@tie{}5464}." msgstr "Der Ort, wo ein Dictionary (eine Schlüssel-Wert-Datenbank) zu finden ist, mit dem IMAP-Metadaten gespeichert werden, entsprechend deren Definition im @uref{https://tools.ietf.org/html/rfc5464, RFC@tie{}5464}." #. type: deftypevr -#: guix-git/doc/guix.texi:22218 +#: guix-git/doc/guix.texi:22580 msgid "The IMAP METADATA commands are available only if the ``imap'' protocol configuration's @code{imap-metadata?} field is @samp{#t}." msgstr "Die IMAP-METADATA-Befehle stehen nur zur Verfügung, wenn in der Protokollkonfiguration von „imap“ das Feld @code{imap-metadata?} auf @samp{#t} gesetzt ist." #. type: deftypevr -#: guix-git/doc/guix.texi:22223 +#: guix-git/doc/guix.texi:22585 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-full-filesystem-access?" msgstr "{@code{dovecot-configuration}-Parameter} Boolescher-Ausdruck mail-full-filesystem-access?" #. type: deftypevr -#: guix-git/doc/guix.texi:22229 +#: guix-git/doc/guix.texi:22591 msgid "Allow full file system access to clients. There's no access checks other than what the operating system does for the active UID/GID@. It works with both maildir and mboxes, allowing you to prefix mailboxes names with e.g.@: @file{/path/} or @file{~user/}. Defaults to @samp{#f}." msgstr "Clients vollen Dateisystemzugriff gestatten. Damit gibt es keine Zugriffsüberprüfungen mehr, abgesehen von denen, die das Betriebssystem für die aktiven Benutzer- und Gruppenidentifikatoren (UID und GID) durchführt. Es ist sowohl für maildir- als auch mbox-Formate verwendbar und Sie können dadurch für Namen von Postfächern („Mailboxes“) Präfixe wie z.B.@: @file{/pfad/} oder @file{~benutzer/} wählen. Die Vorgabe ist @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22231 +#: guix-git/doc/guix.texi:22593 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mmap-disable?" msgstr "{@code{dovecot-configuration}-Parameter} Boolescher-Ausdruck mmap-disable?" #. type: deftypevr -#: guix-git/doc/guix.texi:22235 +#: guix-git/doc/guix.texi:22597 msgid "Don't use @code{mmap()} at all. This is required if you store indexes to shared file systems (NFS or clustered file system). Defaults to @samp{#f}." msgstr "Überhaupt kein @code{mmap()} benutzen. Das ist erforderlich, wenn Sie Indexe auf geteilten Dateisystemen speichern (wie NFS oder Cluster-Dateisystemen). Die Vorgabe ist @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22237 +#: guix-git/doc/guix.texi:22599 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean dotlock-use-excl?" msgstr "{@code{dovecot-configuration}-Parameter} Boolescher-Ausdruck dotlock-use-excl?" #. type: deftypevr -#: guix-git/doc/guix.texi:22242 +#: guix-git/doc/guix.texi:22604 msgid "Rely on @samp{O_EXCL} to work when creating dotlock files. NFS supports @samp{O_EXCL} since version 3, so this should be safe to use nowadays by default. Defaults to @samp{#t}." msgstr "Ob sich Dovecot darauf verlassen kann, dass @samp{O_EXCL} funktioniert, wenn es Sperrdateien als „Dotlock“ erstellt. NFS unterstützt @samp{O_EXCL} seit Version 3, also sollte es heutzutage kein Problem mehr sein, dies als Voreinstellung zu benutzen. Die Vorgabe ist @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:22244 +#: guix-git/doc/guix.texi:22606 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-fsync" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette mail-fsync" #. type: deftypevr -#: guix-git/doc/guix.texi:22246 +#: guix-git/doc/guix.texi:22608 msgid "When to use fsync() or fdatasync() calls:" msgstr "Wann fsync() oder fdatasync() aufgerufen werden soll:" #. type: item -#: guix-git/doc/guix.texi:22247 +#: guix-git/doc/guix.texi:22609 #, no-wrap msgid "optimized" msgstr "optimized" #. type: table -#: guix-git/doc/guix.texi:22249 +#: guix-git/doc/guix.texi:22611 msgid "Whenever necessary to avoid losing important data" msgstr "Wann immer es nötig ist, um keine wichtigen Daten zu verlieren" #. type: table -#: guix-git/doc/guix.texi:22251 +#: guix-git/doc/guix.texi:22613 msgid "Useful with e.g.@: NFS when @code{write()}s are delayed" msgstr "Praktisch bei z.B.@: NFS, wenn Schreibzugriffe mit @code{write()} verzögert sind" #. type: table -#: guix-git/doc/guix.texi:22253 +#: guix-git/doc/guix.texi:22615 msgid "Never use it (best performance, but crashes can lose data)." msgstr "Niemals benutzen (ist am schnellsten, aber Abstürze können zu Datenverlusten führen)" #. type: deftypevr -#: guix-git/doc/guix.texi:22255 +#: guix-git/doc/guix.texi:22617 msgid "Defaults to @samp{\"optimized\"}." msgstr "Die Vorgabe ist @samp{\"optimized\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22257 +#: guix-git/doc/guix.texi:22619 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-nfs-storage?" msgstr "{@code{dovecot-configuration}-Parameter} Boolescher-Ausdruck mail-nfs-storage?" #. type: deftypevr -#: guix-git/doc/guix.texi:22262 +#: guix-git/doc/guix.texi:22624 msgid "Mail storage exists in NFS@. Set this to yes to make Dovecot flush NFS caches whenever needed. If you're using only a single mail server this isn't needed. Defaults to @samp{#f}." msgstr "Mails werden in NFS gespeichert. Setzen Sie dies auf ja, damit Dovecot NFS-Zwischenspeicher zurückschreiben kann, wann immer es nötig ist. Wenn Sie nur einen einzigen Mail-Server benutzen, brauchen Sie es @emph{nicht}. Die Vorgabe ist @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22264 +#: guix-git/doc/guix.texi:22626 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-nfs-index?" msgstr "{@code{dovecot-configuration}-Parameter} Boolescher-Ausdruck mail-nfs-index?" #. type: deftypevr -#: guix-git/doc/guix.texi:22268 +#: guix-git/doc/guix.texi:22630 msgid "Mail index files also exist in NFS@. Setting this to yes requires @samp{mmap-disable? #t} and @samp{fsync-disable? #f}. Defaults to @samp{#f}." msgstr "Ob die Index-Dateien für Mails auch in NFS gespeichert sind. Wenn dies auf ja gesetzt ist, muss @samp{mmap-disable? #t} und @samp{fsync-disable? #f} gesetzt sein. Die Vorgabe ist @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22270 +#: guix-git/doc/guix.texi:22632 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string lock-method" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette lock-method" #. type: deftypevr -#: guix-git/doc/guix.texi:22276 +#: guix-git/doc/guix.texi:22638 msgid "Locking method for index files. Alternatives are fcntl, flock and dotlock. Dotlocking uses some tricks which may create more disk I/O than other locking methods. NFS users: flock doesn't work, remember to change @samp{mmap-disable}. Defaults to @samp{\"fcntl\"}." msgstr "Die Sperrmethode für Indexdateien. Die Alternativen sind fcntl, flock und dotlock. Bei Dotlocking werden ein paar Tricks benutzt, die mehr Plattenein- und -ausgaben als andere Sperrmethoden zur Folge haben. Für NFS-Benutzer gilt: flock funktioniert nicht, also denken Sie bitte daran, @samp{mmap-disable} zu ändern. Die Vorgabe ist @samp{\"fcntl\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22278 +#: guix-git/doc/guix.texi:22640 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name mail-temp-dir" msgstr "{@code{dovecot-configuration}-Parameter} Dateiname mail-temp-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:22282 +#: guix-git/doc/guix.texi:22644 msgid "Directory in which LDA/LMTP temporarily stores incoming mails >128 kB. Defaults to @samp{\"/tmp\"}." msgstr "Das Verzeichnis, in dem LDA/LMTP zwischenzeitlich eingehende E-Mails >128 kB speichert. Die Vorgabe ist @samp{\"/tmp\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22284 +#: guix-git/doc/guix.texi:22646 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer first-valid-uid" msgstr "{@code{dovecot-configuration}-Parameter} Nichtnegative-ganze-Zahl first-valid-uid" #. type: deftypevr -#: guix-git/doc/guix.texi:22290 +#: guix-git/doc/guix.texi:22652 msgid "Valid UID range for users. This is mostly to make sure that users can't log in as daemons or other system users. Note that denying root logins is hardcoded to dovecot binary and can't be done even if @samp{first-valid-uid} is set to 0. Defaults to @samp{500}." msgstr "Der Bereich, in dem die Benutzerkennungen („UIDs“) von sich bei Dovecot anmeldenden Benutzern liegen müssen. Das dient hauptsächlich dazu, sicherzustellen, dass sich Anwender nicht mit den Benutzerkonten von Daemons oder sonstigen Systembenutzerkonten anmelden können. Beachten Sie, dass eine Anmeldung als Administrator „root“ grundsätzlich vom Code des Dovecot-Programms verboten wird und selbst dann @emph{nicht} möglich ist, wenn Sie @samp{first-valid-uid} auf 0 setzen. Die Vorgabe ist @samp{500}." #. type: deftypevr -#: guix-git/doc/guix.texi:22292 +#: guix-git/doc/guix.texi:22654 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer last-valid-uid" msgstr "{@code{dovecot-configuration}-Parameter} Nichtnegative-ganze-Zahl last-valid-uid" #. type: deftypevr -#: guix-git/doc/guix.texi:22297 +#: guix-git/doc/guix.texi:22659 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer first-valid-gid" msgstr "{@code{dovecot-configuration}-Parameter} Nichtnegative-ganze-Zahl first-valid-gid" #. type: deftypevr -#: guix-git/doc/guix.texi:22302 +#: guix-git/doc/guix.texi:22664 msgid "Valid GID range for users. Users having non-valid GID as primary group ID aren't allowed to log in. If user belongs to supplementary groups with non-valid GIDs, those groups are not set. Defaults to @samp{1}." msgstr "Der Bereich, in dem die Gruppenkennungen („GIDs“) von sich bei Dovecot anmeldenden Benutzern liegen müssen. Benutzerkonten, deren primäre Gruppe keine gültige GID hat, können sich nicht anmelden. Wenn das Benutzerkonto zu zusätzlichen Gruppen mit ungültiger GID gehört, werden diese Gruppen-Berechtigungen von Dovecot wieder abgegeben. Die Vorgabe ist @samp{1}." #. type: deftypevr -#: guix-git/doc/guix.texi:22304 +#: guix-git/doc/guix.texi:22666 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer last-valid-gid" msgstr "{@code{dovecot-configuration}-Parameter} Nichtnegative-ganze-Zahl last-valid-gid" #. type: deftypevr -#: guix-git/doc/guix.texi:22309 +#: guix-git/doc/guix.texi:22671 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-max-keyword-length" msgstr "{@code{dovecot-configuration}-Parameter} Nichtnegative-ganze-Zahl mail-max-keyword-length" #. type: deftypevr -#: guix-git/doc/guix.texi:22313 +#: guix-git/doc/guix.texi:22675 msgid "Maximum allowed length for mail keyword name. It's only forced when trying to create new keywords. Defaults to @samp{50}." msgstr "Die maximale zulässige Länge eines Mail-Schlüsselwort-Namens. Sie wirkt sich nur aus, wenn Sie neue Schlüsselwörter anzulegen versuchen. Die Vorgabe ist @samp{50}." #. type: deftypevr -#: guix-git/doc/guix.texi:22315 +#: guix-git/doc/guix.texi:22677 #, no-wrap msgid "{@code{dovecot-configuration} parameter} colon-separated-file-name-list valid-chroot-dirs" msgstr "{@code{dovecot-configuration}-Parameter} Doppelpunktgetrennte-Dateinamen-Liste valid-chroot-dirs" #. type: deftypevr -#: guix-git/doc/guix.texi:22325 +#: guix-git/doc/guix.texi:22687 msgid "List of directories under which chrooting is allowed for mail processes (i.e.@: @file{/var/mail} will allow chrooting to @file{/var/mail/foo/bar} too). This setting doesn't affect @samp{login-chroot} @samp{mail-chroot} or auth chroot settings. If this setting is empty, @samp{/./} in home dirs are ignored. WARNING: Never add directories here which local users can modify, that may lead to root exploit. Usually this should be done only if you don't allow shell access for users. . Defaults to @samp{()}." msgstr "Die Liste der Verzeichnisse, in die Mail-Prozesse per „chroot“ das Wurzelverzeichnis wechseln können (d.h.@: für @file{/var/mail} wird auch ein chroot nach @file{/var/mail/foo/bar} möglich). Diese Einstellung hat keinen Einfluss auf @samp{login-chroot}, @samp{mail-chroot} oder Authentifizierungs-„chroot“-Einstellungen. Wenn diese Einstellung leer gelassen wird, werden chroots per @samp{/./} in Persönlichen Verzeichnissen ignoriert. @emph{Warnung}: Fügen Sie niemals Verzeichnisse hinzu, die lokale Benutzer verändern können, weil diese dann eventuell über eine Rechteausweitung Administratorrechte an sich reißen können. In der Regel sollte man ein solches Verzeichnis nur eintragen, wenn Nutzer keinen Shell-Zugriff erhalten können. Siehe . Die Vorgabe ist @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:22327 +#: guix-git/doc/guix.texi:22689 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-chroot" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette mail-chroot" #. type: deftypevr -#: guix-git/doc/guix.texi:22336 +#: guix-git/doc/guix.texi:22698 msgid "Default chroot directory for mail processes. This can be overridden for specific users in user database by giving @samp{/./} in user's home directory (e.g.@: @samp{/home/./user} chroots into @file{/home}). Note that usually there is no real need to do chrooting, Dovecot doesn't allow users to access files outside their mail directory anyway. If your home directories are prefixed with the chroot directory, append @samp{/.} to @samp{mail-chroot}. . Defaults to @samp{\"\"}." msgstr "Das voreingestellte „chroot“-Verzeichnis für Mail-Prozesse. Es kann für einzelne Nutzer in der Benutzerdatenbank außer Kraft gesetzt werden, indem @samp{/./} als Teil der Angabe zum Persönlichen Verzeichnis des Benutzers verwendet wird (z.B.@: lässt @samp{/home/./benutzer} das Wurzelverzeichnis per „chroot“ nach @file{/home} wechseln). Beachten Sie, dass es in der Regel @emph{nicht} unbedingt notwendig ist, Chrooting zu betreiben, weil Dovecot es Benutzern ohnehin nicht erlaubt, auf Dateien außerhalb ihres Mail-Verzeichnisses zuzugreifen. Wenn Ihren Persönlichen Verzeichnissen das Chroot-Verzeichnis vorangestellt ist, sollten Sie @samp{/.}@: an @samp{mail-chroot} anhängen. Siehe . Die Vorgabe ist @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22338 +#: guix-git/doc/guix.texi:22700 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name auth-socket-path" msgstr "{@code{dovecot-configuration}-Parameter} Dateiname auth-socket-path" #. type: deftypevr -#: guix-git/doc/guix.texi:22342 +#: guix-git/doc/guix.texi:22704 msgid "UNIX socket path to master authentication server to find users. This is used by imap (for shared users) and lda. Defaults to @samp{\"/var/run/dovecot/auth-userdb\"}." msgstr "Der UNIX-Socket-Pfad, unter dem der Hauptauthentifizierungsserver zu finden ist, mit dem Nutzer gefunden werden können. Er wird von IMAP (für gemeinsame Benutzerkonten) und von LDA benutzt. Die Vorgabe ist @samp{\"/var/run/dovecot/auth-userdb\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22344 +#: guix-git/doc/guix.texi:22706 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name mail-plugin-dir" msgstr "{@code{dovecot-configuration}-Parameter} Dateiname mail-plugin-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:22347 +#: guix-git/doc/guix.texi:22709 msgid "Directory where to look up mail plugins. Defaults to @samp{\"/usr/lib/dovecot\"}." msgstr "Das Verzeichnis, in dem Mailplugins zu finden sind. Die Vorgabe ist @samp{\"/usr/lib/dovecot\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22349 +#: guix-git/doc/guix.texi:22711 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mail-plugins" msgstr "{@code{dovecot-configuration}-Parameter} Leerzeichengetrennte-Zeichenketten-Liste mail-plugins" #. type: deftypevr -#: guix-git/doc/guix.texi:22353 +#: guix-git/doc/guix.texi:22715 msgid "List of plugins to load for all services. Plugins specific to IMAP, LDA, etc.@: are added to this list in their own .conf files. Defaults to @samp{()}." msgstr "Die Liste der Plugins, die für alle Dienste geladen werden sollen. Plugins, die nur für IMAP, LDA, etc.@: gedacht sind, werden in ihren eigenen .conf-Dateien zu dieser Liste hinzugefügt. Die Vorgabe ist @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:22355 +#: guix-git/doc/guix.texi:22717 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-cache-min-mail-count" msgstr "{@code{dovecot-configuration}-Parameter} Nichtnegative-ganze-Zahl mail-cache-min-mail-count" #. type: deftypevr -#: guix-git/doc/guix.texi:22360 +#: guix-git/doc/guix.texi:22722 msgid "The minimum number of mails in a mailbox before updates are done to cache file. This allows optimizing Dovecot's behavior to do less disk writes at the cost of more disk reads. Defaults to @samp{0}." msgstr "Die kleinste Anzahl an Mails in einem Postfach, bevor Aktualisierungen an der Zwischenspeicherdatei vorgenommen werden. Damit kann das Verhalten von Dovecot optimiert werden, um weniger Schreibzugriffe auf die Platte durchzuführen, wofür allerdings mehr Lesezugriffe notwendig werden. Die Vorgabe ist @samp{0}." #. type: deftypevr -#: guix-git/doc/guix.texi:22362 +#: guix-git/doc/guix.texi:22724 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mailbox-idle-check-interval" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette mailbox-idle-check-interval" #. type: deftypevr -#: guix-git/doc/guix.texi:22369 +#: guix-git/doc/guix.texi:22731 msgid "When IDLE command is running, mailbox is checked once in a while to see if there are any new mails or other changes. This setting defines the minimum time to wait between those checks. Dovecot can also use dnotify, inotify and kqueue to find out immediately when changes occur. Defaults to @samp{\"30 secs\"}." msgstr "Während der IDLE-Befehl läuft, wird ab und zu im Postfach (der „Mailbox“) nachgeschaut, ob es neue Mails oder andere Änderungen gibt. Mit dieser Einstellung wird festgelegt, wie lange zwischen diesen Überprüfungen höchstens gewartet wird. Dovecot kann auch dnotify, inotify und kqueue benutzen, um sofort über Änderungen informiert zu werden. Die Vorgabe ist @samp{\"30 secs\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22371 +#: guix-git/doc/guix.texi:22733 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-save-crlf?" msgstr "{@code{dovecot-configuration}-Parameter} Boolescher-Ausdruck mail-save-crlf?" #. type: deftypevr -#: guix-git/doc/guix.texi:22378 +#: guix-git/doc/guix.texi:22740 msgid "Save mails with CR+LF instead of plain LF@. This makes sending those mails take less CPU, especially with sendfile() syscall with Linux and FreeBSD@. But it also creates a bit more disk I/O which may just make it slower. Also note that if other software reads the mboxes/maildirs, they may handle the extra CRs wrong and cause problems. Defaults to @samp{#f}." msgstr "Ob Mails mit CR+LF-Kodierung für Zeilenumbrüche statt einfacher LF gespeichert werden sollen. Dadurch wird das Versenden dieser Mails den Prozessor weniger beanspruchen, dies gilt besonders für den Systemaufruf sendfile() unter Linux und FreeBSD@. Allerdings werden auch ein bisschen mehr Ein- und Ausgaben auf der Platte notwendig, wodurch es insgesamt langsamer werden könnte. Beachten Sie außerdem, dass andere Software, die die mboxes/maildirs ausliest, mit den CRs falsch umgehen und Probleme verursachen könnte. Die Vorgabe ist @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22380 +#: guix-git/doc/guix.texi:22742 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-stat-dirs?" msgstr "{@code{dovecot-configuration}-Parameter} Boolescher-Ausdruck maildir-stat-dirs?" #. type: deftypevr -#: guix-git/doc/guix.texi:22388 +#: guix-git/doc/guix.texi:22750 msgid "By default LIST command returns all entries in maildir beginning with a dot. Enabling this option makes Dovecot return only entries which are directories. This is done by stat()ing each entry, so it causes more disk I/O. (For systems setting struct @samp{dirent->d_type} this check is free and it's done always regardless of this setting). Defaults to @samp{#f}." msgstr "Nach Voreinstellung liefert der LIST-Befehl alle Einträge im Mailverzeichnis („Maildir“), die mit einem Punkt beginnen. Wenn diese Option aktiviert wird, liefert Dovecot nur solche Einträge, die für Verzeichnisse stehen. Dazu wird auf jedem Eintrag stat() aufgerufen, wodurch mehr Ein- und Ausgaben auf der Platte anfallen. (Bei Systemen, die einen Struktureintrag @samp{dirent->d_type} machen, ist diese Überprüfung unnötig, daher werden dort nur Verzeichnisse geliefert, egal was hier eingestellt ist.) Die Vorgabe ist @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22390 +#: guix-git/doc/guix.texi:22752 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-copy-with-hardlinks?" msgstr "{@code{dovecot-configuration}-Parameter} Boolescher-Ausdruck maildir-copy-with-hardlinks?" #. type: deftypevr -#: guix-git/doc/guix.texi:22395 +#: guix-git/doc/guix.texi:22757 msgid "When copying a message, do it with hard links whenever possible. This makes the performance much better, and it's unlikely to have any side effects. Defaults to @samp{#t}." msgstr "Ob zum Kopieren einer Nachricht statt einer Kopie so weit möglich harte Verknüpfungen („Hard Links“) verwendet werden sollen. Dadurch wird das System wesentlich weniger ausgelastet und Nebenwirkungen sind unwahrscheinlich. Die Vorgabe ist @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:22397 +#: guix-git/doc/guix.texi:22759 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-very-dirty-syncs?" msgstr "{@code{dovecot-configuration}-Parameter} Boolescher-Ausdruck maildir-very-dirty-syncs?" #. type: deftypevr -#: guix-git/doc/guix.texi:22402 +#: guix-git/doc/guix.texi:22764 msgid "Assume Dovecot is the only MUA accessing Maildir: Scan cur/ directory only when its mtime changes unexpectedly or when we can't find the mail otherwise. Defaults to @samp{#f}." msgstr "Ob Dovecot annehmen darf, dass es der einzige MUA ist, der auf Maildir zugreift. Dann wird das cur/-Verzeichnis nur bei unerwarteten Änderungen an seiner mtime durchsucht oder wenn die Mail sonst nicht gefunden werden kann. Die Vorgabe ist @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22404 +#: guix-git/doc/guix.texi:22766 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mbox-read-locks" msgstr "{@code{dovecot-configuration}-Parameter} Leerzeichengetrennte-Zeichenketten-Liste mbox-read-locks" #. type: deftypevr -#: guix-git/doc/guix.texi:22407 +#: guix-git/doc/guix.texi:22769 msgid "Which locking methods to use for locking mbox. There are four available:" msgstr "Welche Sperrmethoden zum Sperren des mbox-Postfachs (der „Mailbox“) benutzt werden. Es stehen vier Methoden zur Auswahl:" #. type: item -#: guix-git/doc/guix.texi:22409 +#: guix-git/doc/guix.texi:22771 #, no-wrap msgid "dotlock" msgstr "dotlock" #. type: table -#: guix-git/doc/guix.texi:22413 +#: guix-git/doc/guix.texi:22775 msgid "Create .lock file. This is the oldest and most NFS-safe solution. If you want to use /var/mail/ like directory, the users will need write access to that directory." msgstr "Hier wird eine Datei namens .lock erzeugt. Es handelt sich um die älteste und am ehesten mit NFS verwendbare Lösung. Wenn Sie ein Verzeichnis wie /var/mail/ benutzen, müssen die Benutzer Schreibzugriff darauf haben." #. type: item -#: guix-git/doc/guix.texi:22413 +#: guix-git/doc/guix.texi:22775 #, no-wrap msgid "dotlock-try" msgstr "dotlock-try" #. type: table -#: guix-git/doc/guix.texi:22416 +#: guix-git/doc/guix.texi:22778 msgid "Same as dotlock, but if it fails because of permissions or because there isn't enough disk space, just skip it." msgstr "Genau wie dotlock, aber wenn es mangels Berechtigungen fehlschlägt oder nicht genug Plattenplatz verfügbar ist, wird einfach nicht gesperrt." #. type: item -#: guix-git/doc/guix.texi:22416 +#: guix-git/doc/guix.texi:22778 #, no-wrap msgid "fcntl" msgstr "fcntl" #. type: table -#: guix-git/doc/guix.texi:22418 +#: guix-git/doc/guix.texi:22780 msgid "Use this if possible. Works with NFS too if lockd is used." msgstr "Benutzen Sie diese Einstellung wenn möglich. Sie funktioniert auch mit NFS, sofern lockd benutzt wird." #. type: item -#: guix-git/doc/guix.texi:22418 +#: guix-git/doc/guix.texi:22780 #, no-wrap msgid "flock" msgstr "flock" #. type: table -#: guix-git/doc/guix.texi:22420 guix-git/doc/guix.texi:22422 +#: guix-git/doc/guix.texi:22782 guix-git/doc/guix.texi:22784 msgid "May not exist in all systems. Doesn't work with NFS." msgstr "Existiert vielleicht nicht auf allen Systemen. Funktioniert nicht mit NFS." #. type: item -#: guix-git/doc/guix.texi:22420 +#: guix-git/doc/guix.texi:22782 #, no-wrap msgid "lockf" msgstr "lockf" #. type: deftypevr -#: guix-git/doc/guix.texi:22428 +#: guix-git/doc/guix.texi:22790 msgid "You can use multiple locking methods; if you do the order they're declared in is important to avoid deadlocks if other MTAs/MUAs are using multiple locking methods as well. Some operating systems don't allow using some of them simultaneously." msgstr "Sie können mehrere Sperrmethoden angeben; wenn ja, dann ist deren Reihenfolge entscheidend, um Verklemmungen („Deadlocks“) zu vermeiden, wenn andere MTAs/MUAs auch mehrere Sperrmethoden benutzen. Manche Betriebssysteme erlauben es nicht, manche davon gleichzeitig zu benutzen." #. type: deftypevr -#: guix-git/doc/guix.texi:22430 +#: guix-git/doc/guix.texi:22792 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mbox-write-locks" msgstr "{@code{dovecot-configuration}-Parameter} Leerzeichengetrennte-Zeichenketten-Liste mbox-write-locks" #. type: deftypevr -#: guix-git/doc/guix.texi:22434 +#: guix-git/doc/guix.texi:22796 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mbox-lock-timeout" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette mbox-lock-timeout" #. type: deftypevr -#: guix-git/doc/guix.texi:22437 +#: guix-git/doc/guix.texi:22799 msgid "Maximum time to wait for lock (all of them) before aborting. Defaults to @samp{\"5 mins\"}." msgstr "Wie lange höchstens auf Sperren (irgendeiner Art) gewartet wird, bevor abgebrochen wird. Die Vorgabe ist @samp{\"5 mins\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22439 +#: guix-git/doc/guix.texi:22801 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mbox-dotlock-change-timeout" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette mbox-dotlock-change-timeout" #. type: deftypevr -#: guix-git/doc/guix.texi:22443 +#: guix-git/doc/guix.texi:22805 msgid "If dotlock exists but the mailbox isn't modified in any way, override the lock file after this much time. Defaults to @samp{\"2 mins\"}." msgstr "Wenn eine Dotlock-Sperrdatei existiert, das Postfach (die „Mailbox“) aber auf keine Weise geändert wurde, wird die Sperrdatei nach der hier angegebenen Zeit außer Kraft gesetzt. Die Vorgabe ist @samp{\"2 mins\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22445 +#: guix-git/doc/guix.texi:22807 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-dirty-syncs?" msgstr "{@code{dovecot-configuration}-Parameter} Boolescher-Ausdruck mbox-dirty-syncs?" #. type: deftypevr -#: guix-git/doc/guix.texi:22456 +#: guix-git/doc/guix.texi:22818 msgid "When mbox changes unexpectedly we have to fully read it to find out what changed. If the mbox is large this can take a long time. Since the change is usually just a newly appended mail, it'd be faster to simply read the new mails. If this setting is enabled, Dovecot does this but still safely fallbacks to re-reading the whole mbox file whenever something in mbox isn't how it's expected to be. The only real downside to this setting is that if some other MUA changes message flags, Dovecot doesn't notice it immediately. Note that a full sync is done with SELECT, EXAMINE, EXPUNGE and CHECK commands. Defaults to @samp{#t}." msgstr "Wenn sich das mbox-Postfach unerwartet ändert, müssen wir es gänzlich neu einlesen, um herauszufinden, was sich geändert hat. Wenn die mbox groß ist, kann das viel Zeit in Anspruch nehmen. Weil es sich bei der Änderung meistens nur um eine neu angefügte Mail handelt, wäre es schneller, nur die neuen Mails zu lesen. Wenn diese Einstellung hier aktiviert ist, arbeitet Dovecot nach dem eben beschriebenen Prinzip, liest aber doch die ganze mbox-Datei neu ein, sobald es etwas nicht wie erwartet vorfindet. Der einzige wirkliche Nachteil bei dieser Einstellung ist, dass es Dovecot nicht sofort erkennt, wenn ein anderer MUA die Statusindikatoren („Flags“) ändert. Beachten Sie, dass eine komplette Synchronisation bei den Befehlen SELECT, EXAMINE, EXPUNGE und CHECK durchgeführt wird. Die Vorgabe ist @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:22458 +#: guix-git/doc/guix.texi:22820 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-very-dirty-syncs?" msgstr "{@code{dovecot-configuration}-Parameter} Boolescher-Ausdruck mbox-very-dirty-syncs?" #. type: deftypevr -#: guix-git/doc/guix.texi:22463 +#: guix-git/doc/guix.texi:22825 msgid "Like @samp{mbox-dirty-syncs}, but don't do full syncs even with SELECT, EXAMINE, EXPUNGE or CHECK commands. If this is set, @samp{mbox-dirty-syncs} is ignored. Defaults to @samp{#f}." msgstr "Wie @samp{mbox-dirty-syncs}, aber ohne dass komplette Synchronisationen selbst bei den Befehlen SELECT, EXAMINE, EXPUNGE oder CHECK durchgeführt werden. Wenn dies hier aktiviert ist, wird @samp{mbox-dirty-syncs} ignoriert. Die Vorgabe ist @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22465 +#: guix-git/doc/guix.texi:22827 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-lazy-writes?" msgstr "{@code{dovecot-configuration}-Parameter} Boolescher-Ausdruck mbox-lazy-writes?" #. type: deftypevr -#: guix-git/doc/guix.texi:22471 +#: guix-git/doc/guix.texi:22833 msgid "Delay writing mbox headers until doing a full write sync (EXPUNGE and CHECK commands and when closing the mailbox). This is especially useful for POP3 where clients often delete all mails. The downside is that our changes aren't immediately visible to other MUAs. Defaults to @samp{#t}." msgstr "Ob das Schreiben von mbox-Kopfzeilen hinausgezögert wird, bis eine komplette Schreibsynchronisation durchgeführt wird (bei den Befehlen EXPUNGE und CHECK, und beim Schließen des Postfachs, d.h.@: der „Mailbox“). Das wird besonders nützlich, wenn Clients POP3 verwenden, wo es oft vorkommt, dass die Clients alle Mails löschen. Der Nachteil ist, dass Dovecots Änderungen nicht sofort für andere MUAs sichtbar werden. Die Vorgabe ist @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:22473 +#: guix-git/doc/guix.texi:22835 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mbox-min-index-size" msgstr "{@code{dovecot-configuration}-Parameter} Nichtnegative-ganze-Zahl mbox-min-index-size" #. type: deftypevr -#: guix-git/doc/guix.texi:22478 +#: guix-git/doc/guix.texi:22840 msgid "If mbox size is smaller than this (e.g.@: 100k), don't write index files. If an index file already exists it's still read, just not updated. Defaults to @samp{0}." msgstr "Wenn die Größe des mbox-Postfaches kleiner als die angegebene Größe (z.B.@: 100k) ist, werden keine Index-Dateien geschrieben. Wenn bereits eine Index-Datei existiert, wird sie weiterhin gelesen und nur nicht aktualisiert. Die Vorgabe ist @samp{0}." #. type: deftypevr -#: guix-git/doc/guix.texi:22480 +#: guix-git/doc/guix.texi:22842 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mdbox-rotate-size" msgstr "{@code{dovecot-configuration}-Parameter} Nichtnegative-ganze-Zahl mdbox-rotate-size" #. type: deftypevr -#: guix-git/doc/guix.texi:22483 +#: guix-git/doc/guix.texi:22845 msgid "Maximum dbox file size until it's rotated. Defaults to @samp{10000000}." msgstr "Die maximale Größe der dbox-Datei, bis sie rotiert wird. Die Vorgabe ist @samp{10000000}." #. type: deftypevr -#: guix-git/doc/guix.texi:22485 +#: guix-git/doc/guix.texi:22847 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mdbox-rotate-interval" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette mdbox-rotate-interval" #. type: deftypevr -#: guix-git/doc/guix.texi:22490 +#: guix-git/doc/guix.texi:22852 msgid "Maximum dbox file age until it's rotated. Typically in days. Day begins from midnight, so 1d = today, 2d = yesterday, etc. 0 = check disabled. Defaults to @samp{\"1d\"}." msgstr "Das maximale Alter der dbox-Datei, bis sie rotiert wird. Typischerweise wird es in Tagen angegeben. Der Tag beginnt um Mitternacht, also steht 1d für heute, 2d für gestern, etc. 0 heißt, die Überprüfung ist abgeschaltet. Die Vorgabe ist @samp{\"1d\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22492 +#: guix-git/doc/guix.texi:22854 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mdbox-preallocate-space?" msgstr "{@code{dovecot-configuration}-Parameter} Boolescher-Ausdruck mdbox-preallocate-space?" #. type: deftypevr -#: guix-git/doc/guix.texi:22497 +#: guix-git/doc/guix.texi:22859 msgid "When creating new mdbox files, immediately preallocate their size to @samp{mdbox-rotate-size}. This setting currently works only in Linux with some file systems (ext4, xfs). Defaults to @samp{#f}." msgstr "Ob beim Erstellen neuer mdbox-Postfachdateien gleich am Anfang eine Datei der Größe @samp{mdbox-rotate-size} vorab angelegt werden soll. Diese Einstellung funktioniert derzeit nur mit Linux auf manchen Dateisystemen (ext4, xfs). Die Vorgabe ist @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22499 +#: guix-git/doc/guix.texi:22861 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-dir" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette mail-attachment-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:22503 +#: guix-git/doc/guix.texi:22865 msgid "sdbox and mdbox support saving mail attachments to external files, which also allows single instance storage for them. Other backends don't support this for now." msgstr "Postfächer in den Formaten sdbox und mdbox unterstützen es, Mail-Anhänge in externen Dateien zu speichern, wodurch sie mit Einzelinstanz-Speicherung („Single-Instance Storage“) dedupliziert werden können. Andere Hintergrundsysteme („Backends“) bieten dafür noch keine Unterstützung." #. type: deftypevr -#: guix-git/doc/guix.texi:22505 +#: guix-git/doc/guix.texi:22867 msgid "WARNING: This feature hasn't been tested much yet. Use at your own risk." msgstr "@emph{Warnung}: Diese Funktionalität wurde noch nicht ausgiebig getestet. Benutzen Sie sie auf eigene Gefahr." #. type: deftypevr -#: guix-git/doc/guix.texi:22508 +#: guix-git/doc/guix.texi:22870 msgid "Directory root where to store mail attachments. Disabled, if empty. Defaults to @samp{\"\"}." msgstr "Das Wurzelverzeichnis, in dem Mail-Anhänge gespeichert werden. Wenn es leer gelassen wird, ist es deaktiviert. Die Vorgabe ist @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22510 +#: guix-git/doc/guix.texi:22872 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-attachment-min-size" msgstr "{@code{dovecot-configuration}-Parameter} Nichtnegative-ganze-Zahl mail-attachment-min-size" #. type: deftypevr -#: guix-git/doc/guix.texi:22515 +#: guix-git/doc/guix.texi:22877 msgid "Attachments smaller than this aren't saved externally. It's also possible to write a plugin to disable saving specific attachments externally. Defaults to @samp{128000}." msgstr "Anhänge, die kleiner sind als hier angegeben, werden @emph{nicht} extern gespeichert. Es ist auch möglich, ein Plugin zu schreiben, das externes Speichern bestimmter Anhänge deaktiviert. Die Vorgabe ist @samp{128000}." #. type: deftypevr -#: guix-git/doc/guix.texi:22517 +#: guix-git/doc/guix.texi:22879 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-fs" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette mail-attachment-fs" #. type: deftypevr -#: guix-git/doc/guix.texi:22519 +#: guix-git/doc/guix.texi:22881 msgid "File system backend to use for saving attachments:" msgstr "Ein Dateisystemhintergrundprogramm, mit dem Anhänge gespeichert werden:" #. type: item -#: guix-git/doc/guix.texi:22520 +#: guix-git/doc/guix.texi:22882 #, no-wrap msgid "posix" msgstr "posix" #. type: table -#: guix-git/doc/guix.texi:22522 +#: guix-git/doc/guix.texi:22884 msgid "No SiS done by Dovecot (but this might help FS's own deduplication)" msgstr "Dovecot führt keine Einzelinstanzspeicherung durch (aber das Dateisystem kann so leichter selbst deduplizieren)" #. type: item -#: guix-git/doc/guix.texi:22522 +#: guix-git/doc/guix.texi:22884 #, no-wrap msgid "sis posix" msgstr "sis posix" #. type: table -#: guix-git/doc/guix.texi:22524 +#: guix-git/doc/guix.texi:22886 msgid "SiS with immediate byte-by-byte comparison during saving" msgstr "Einzelinstanzspeicherung wird durch einen sofortigen Byte-für-Byte-Vergleich beim Speichern umgesetzt" #. type: item -#: guix-git/doc/guix.texi:22524 +#: guix-git/doc/guix.texi:22886 #, no-wrap msgid "sis-queue posix" msgstr "sis-queue posix" #. type: table -#: guix-git/doc/guix.texi:22526 +#: guix-git/doc/guix.texi:22888 msgid "SiS with delayed comparison and deduplication." msgstr "Einzelinstanzspeicherung mit verzögertem Vergleich und Deduplizierung." #. type: deftypevr -#: guix-git/doc/guix.texi:22528 +#: guix-git/doc/guix.texi:22890 msgid "Defaults to @samp{\"sis posix\"}." msgstr "Die Vorgabe ist @samp{\"sis posix\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22530 +#: guix-git/doc/guix.texi:22892 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-hash" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette mail-attachment-hash" #. type: deftypevr -#: guix-git/doc/guix.texi:22536 +#: guix-git/doc/guix.texi:22898 msgid "Hash format to use in attachment filenames. You can add any text and variables: @code{%@{md4@}}, @code{%@{md5@}}, @code{%@{sha1@}}, @code{%@{sha256@}}, @code{%@{sha512@}}, @code{%@{size@}}. Variables can be truncated, e.g.@: @code{%@{sha256:80@}} returns only first 80 bits. Defaults to @samp{\"%@{sha1@}\"}." msgstr "Welches Hash-Format die Dateinamen von Anhängen bestimmt. Sie können beliebigen Text und Variable beifügen: @code{%@{md4@}}, @code{%@{md5@}}, @code{%@{sha1@}}, @code{%@{sha256@}}, @code{%@{sha512@}}, @code{%@{size@}}. Es können auch nur Teile der Variablen benutzt werden, z.B.@: liefert @code{%@{sha256:80@}} nur die ersten 80 Bits. Die Vorgabe ist @samp{\"%@{sha1@}\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22538 +#: guix-git/doc/guix.texi:22900 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-process-limit" msgstr "{@code{dovecot-configuration}-Parameter} Nichtnegative-ganze-Zahl default-process-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:22543 +#: guix-git/doc/guix.texi:22905 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-client-limit" msgstr "{@code{dovecot-configuration}-Parameter} Nichtnegative-ganze-Zahl default-client-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:22546 guix-git/doc/guix.texi:30171 +#: guix-git/doc/guix.texi:22908 guix-git/doc/guix.texi:30536 msgid "Defaults to @samp{1000}." msgstr "Die Vorgabe ist @samp{1000}." #. type: deftypevr -#: guix-git/doc/guix.texi:22548 +#: guix-git/doc/guix.texi:22910 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-vsz-limit" msgstr "{@code{dovecot-configuration}-Parameter} Nichtnegative-ganze-Zahl default-vsz-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:22553 +#: guix-git/doc/guix.texi:22915 msgid "Default VSZ (virtual memory size) limit for service processes. This is mainly intended to catch and kill processes that leak memory before they eat up everything. Defaults to @samp{256000000}." msgstr "Die vorgegebene Beschränkung der VSZ („Virtual Memory Size“, virtuelle Speichergröße) für Dienstprozesse. Dies ist hauptsächlich dafür gedacht, Prozessen, die ein Speicherleck aufweisen, rechtzeitig Einhalt zu gebieten und sie abzuwürgen, bevor sie allen Speicher aufbrauchen. Die Vorgabe ist @samp{256000000}." #. type: deftypevr -#: guix-git/doc/guix.texi:22555 +#: guix-git/doc/guix.texi:22917 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string default-login-user" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette default-login-user" #. type: deftypevr -#: guix-git/doc/guix.texi:22560 +#: guix-git/doc/guix.texi:22922 msgid "Login user is internally used by login processes. This is the most untrusted user in Dovecot system. It shouldn't have access to anything at all. Defaults to @samp{\"dovenull\"}." msgstr "Der Anmeldebenutzer, der intern von Anmeldeprozessen benutzt wird. Der Anmeldebenutzer ist derjenige Benutzer im Dovecot-System, dem am wenigsten Vertrauen zugeschrieben wird. Er sollte auf überhaupt nichts Zugriff haben. Die Vorgabe ist @samp{\"dovenull\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22562 +#: guix-git/doc/guix.texi:22924 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string default-internal-user" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette default-internal-user" #. type: deftypevr -#: guix-git/doc/guix.texi:22567 +#: guix-git/doc/guix.texi:22929 msgid "Internal user is used by unprivileged processes. It should be separate from login user, so that login processes can't disturb other processes. Defaults to @samp{\"dovecot\"}." msgstr "Der interne Benutzer, der von Prozessen ohne besondere Berechtigungen benutzt wird. Er sollte sich vom Anmeldebenutzer unterscheiden, damit Anmeldeprozesse keine anderen Prozesse stören können. Die Vorgabe ist @samp{\"dovecot\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22569 +#: guix-git/doc/guix.texi:22931 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string ssl?" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette ssl?" #. type: deftypevr -#: guix-git/doc/guix.texi:22572 +#: guix-git/doc/guix.texi:22934 msgid "SSL/TLS support: yes, no, required. . Defaults to @samp{\"required\"}." msgstr "SSL/TLS-Unterstützung: yes für ja, no für nein, oder required, wenn SSL/TLS verpflichtend benutzt werden muss. Siehe . Die Vorgabe ist @samp{\"required\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22574 +#: guix-git/doc/guix.texi:22936 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string ssl-cert" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette ssl-cert" #. type: deftypevr -#: guix-git/doc/guix.texi:22577 +#: guix-git/doc/guix.texi:22939 msgid "PEM encoded X.509 SSL/TLS certificate (public key). Defaults to @samp{\" was automatically rejected:%n%r\"}." msgstr "Die Vorgabe ist @samp{\"Your message to <%t> was automatically rejected:%n%r\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22687 +#: guix-git/doc/guix.texi:23049 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string recipient-delimiter" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette recipient-delimiter" #. type: deftypevr -#: guix-git/doc/guix.texi:22691 +#: guix-git/doc/guix.texi:23053 msgid "Delimiter character between local-part and detail in email address. Defaults to @samp{\"+\"}." msgstr "Trennzeichen zwischen dem eigentlichen Lokalteil („local-part“) und Detailangaben in der E-Mail-Adresse. Die Vorgabe ist @samp{\"+\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22693 +#: guix-git/doc/guix.texi:23055 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string lda-original-recipient-header" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette lda-original-recipient-header" #. type: deftypevr -#: guix-git/doc/guix.texi:22699 +#: guix-git/doc/guix.texi:23061 msgid "Header where the original recipient address (SMTP's RCPT TO: address) is taken from if not available elsewhere. With dovecot-lda -a parameter overrides this. A commonly used header for this is X-Original-To. Defaults to @samp{\"\"}." msgstr "Aus welcher Kopfzeile die Adresse des Ursprünglichen Empfängers (SMTPs „RCPT TO:“-Adresse) genommen wird, wenn sie nicht anderweitig eingetragen ist. Wird die Befehlszeilenoption @option{-a} von dovecot-lda angegeben, hat sie Vorrang vor diesem Feld. Oft wird die Kopfzeile X-Original-To hierfür verwendet. Die Vorgabe ist @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22701 +#: guix-git/doc/guix.texi:23063 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean lda-mailbox-autocreate?" msgstr "{@code{dovecot-configuration}-Parameter} Boolescher-Ausdruck lda-mailbox-autocreate?" #. type: deftypevr -#: guix-git/doc/guix.texi:22705 +#: guix-git/doc/guix.texi:23067 msgid "Should saving a mail to a nonexistent mailbox automatically create it?. Defaults to @samp{#f}." msgstr "Ob ein nicht existierendes Postfach (eine „Mailbox“) automatisch erzeugt werden soll, wenn eine Mail darin abgespeichert wird. Die Vorgabe ist @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22707 +#: guix-git/doc/guix.texi:23069 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean lda-mailbox-autosubscribe?" msgstr "{@code{dovecot-configuration}-Parameter} Boolescher-Ausdruck lda-mailbox-autosubscribe?" #. type: deftypevr -#: guix-git/doc/guix.texi:22711 +#: guix-git/doc/guix.texi:23073 msgid "Should automatically created mailboxes be also automatically subscribed?. Defaults to @samp{#f}." msgstr "Ob automatisch erzeugte Postfächer („Mailboxes“) auch automatisch abonniert werden sollen. Die Vorgabe ist @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22713 +#: guix-git/doc/guix.texi:23075 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer imap-max-line-length" msgstr "{@code{dovecot-configuration}-Parameter} Nichtnegative-ganze-Zahl imap-max-line-length" #. type: deftypevr -#: guix-git/doc/guix.texi:22719 +#: guix-git/doc/guix.texi:23081 msgid "Maximum IMAP command line length. Some clients generate very long command lines with huge mailboxes, so you may need to raise this if you get \"Too long argument\" or \"IMAP command line too large\" errors often. Defaults to @samp{64000}." msgstr "Die maximale Länge einer IMAP-Befehlszeile. Manche Clients erzeugen sehr lange Befehlszeilen bei riesigen Postfächern, daher müssen Sie diesen Wert gegebenenfalls anheben, wenn Sie Fehlermeldungen wie „Too long argument“ oder „IMAP command line too large“ häufig sehen. Die Vorgabe ist @samp{64000}." #. type: deftypevr -#: guix-git/doc/guix.texi:22721 +#: guix-git/doc/guix.texi:23083 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-logout-format" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette imap-logout-format" #. type: deftypevr -#: guix-git/doc/guix.texi:22723 +#: guix-git/doc/guix.texi:23085 msgid "IMAP logout format string:" msgstr "Formatzeichenkette für das Abmelden bei IMAP:" #. type: item -#: guix-git/doc/guix.texi:22724 +#: guix-git/doc/guix.texi:23086 #, no-wrap msgid "%i" msgstr "%i" #. type: table -#: guix-git/doc/guix.texi:22726 +#: guix-git/doc/guix.texi:23088 msgid "total number of bytes read from client" msgstr "Gesamtzahl vom Client empfangener Bytes" #. type: item -#: guix-git/doc/guix.texi:22726 +#: guix-git/doc/guix.texi:23088 #, no-wrap msgid "%o" msgstr "%o" #. type: table -#: guix-git/doc/guix.texi:22728 +#: guix-git/doc/guix.texi:23090 msgid "total number of bytes sent to client." msgstr "Gesamtzahl zum Client versandter Bytes" #. type: deftypevr -#: guix-git/doc/guix.texi:22731 +#: guix-git/doc/guix.texi:23093 msgid "See @file{doc/wiki/Variables.txt} for a list of all the variables you can use. Defaults to @samp{\"in=%i out=%o deleted=%@{deleted@} expunged=%@{expunged@} trashed=%@{trashed@} hdr_count=%@{fetch_hdr_count@} hdr_bytes=%@{fetch_hdr_bytes@} body_count=%@{fetch_body_count@} body_bytes=%@{fetch_body_bytes@}\"}." msgstr "Siehe @file{doc/wiki/Variables.txt} für eine Liste aller Variablen, die Sie benutzen können. Die Vorgabe ist @samp{\"in=%i out=%o deleted=%@{deleted@} expunged=%@{expunged@} trashed=%@{trashed@} hdr_count=%@{fetch_hdr_count@} hdr_bytes=%@{fetch_hdr_bytes@} body_count=%@{fetch_body_count@} body_bytes=%@{fetch_body_bytes@}\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22733 +#: guix-git/doc/guix.texi:23095 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-capability" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette imap-capability" #. type: deftypevr -#: guix-git/doc/guix.texi:22737 +#: guix-git/doc/guix.texi:23099 msgid "Override the IMAP CAPABILITY response. If the value begins with '+', add the given capabilities on top of the defaults (e.g.@: +XFOO XBAR). Defaults to @samp{\"\"}." msgstr "Ersetzt die Antworten auf IMAP-CAPABILITY-Anfragen. Wenn der Wert mit „+“ beginnt, werden die angegebenen Capabilitys zu den voreingestellten hinzugefügt (z.B.@: +XFOO XBAR). Die Vorgabe ist @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22739 +#: guix-git/doc/guix.texi:23101 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-idle-notify-interval" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette imap-idle-notify-interval" #. type: deftypevr -#: guix-git/doc/guix.texi:22743 +#: guix-git/doc/guix.texi:23105 msgid "How long to wait between \"OK Still here\" notifications when client is IDLEing. Defaults to @samp{\"2 mins\"}." msgstr "Wie lange zwischen „OK Still here“-Benachrichtigungen gewartet wird, wenn der Client auf IDLE steht. Die Vorgabe ist @samp{\"2 mins\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22745 +#: guix-git/doc/guix.texi:23107 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-id-send" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette imap-id-send" #. type: deftypevr -#: guix-git/doc/guix.texi:22751 +#: guix-git/doc/guix.texi:23113 msgid "ID field names and values to send to clients. Using * as the value makes Dovecot use the default value. The following fields have default values currently: name, version, os, os-version, support-url, support-email. Defaults to @samp{\"\"}." msgstr "ID-Feldnamen und -werte, die an Clients versandt werden sollen. Wenn * als der Wert angegeben wird, benutzt Dovecot dafür den voreingestellten Wert. Die folgenden Felder verfügen derzeit über voreingestellte Werte: name, version, os, os-version, support-url, support-email. Die Vorgabe ist @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22753 +#: guix-git/doc/guix.texi:23115 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-id-log" msgstr "{@code{dovecot-configuration}-Parameter} Zeichenkette imap-id-log" #. type: deftypevr -#: guix-git/doc/guix.texi:22756 +#: guix-git/doc/guix.texi:23118 msgid "ID fields sent by client to log. * means everything. Defaults to @samp{\"\"}." msgstr "Welche vom Client übermittelten ID-Felder protokolliert werden. * bedeutet alle. Die Vorgabe ist @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22758 +#: guix-git/doc/guix.texi:23120 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list imap-client-workarounds" msgstr "{@code{dovecot-configuration}-Parameter} Leerzeichengetrennte-Zeichenketten-Liste imap-client-workarounds" #. type: deftypevr -#: guix-git/doc/guix.texi:22760 +#: guix-git/doc/guix.texi:23122 msgid "Workarounds for various client bugs:" msgstr "Maßnahmen, um verschiedene Fehler in Clients zu umgehen:" #. type: item -#: guix-git/doc/guix.texi:22762 +#: guix-git/doc/guix.texi:23124 #, no-wrap msgid "delay-newmail" msgstr "delay-newmail" #. type: table -#: guix-git/doc/guix.texi:22769 +#: guix-git/doc/guix.texi:23131 msgid "Send EXISTS/RECENT new mail notifications only when replying to NOOP and CHECK commands. Some clients ignore them otherwise, for example OSX Mail (' before setting it here, to get a feel for which cipher suites you will get. After setting this option, it is recommend that you inspect your Murmur log to ensure that Murmur is using the cipher suites that you expected it to." msgstr "Es wird empfohlen, dass Sie Ihre Cipher-Zeichenkette mit „openssl ciphers “ prüfen, bevor Sie sie hier einsetzen, um ein Gefühl dafür zu bekommen, was für eine Cipher-Suite sie damit bekommen. Nachdem Sie diese Option festgelegt haben, wird empfohlen, dass Sie Ihr Murmur-Protokoll durchsehen und sicherstellen, dass Murmur auch wirklich die Cipher-Suites benutzt, die Sie erwarten." #. type: table -#: guix-git/doc/guix.texi:24159 +#: guix-git/doc/guix.texi:24521 msgid "Note: Changing this option may impact the backwards compatibility of your Murmur server, and can remove the ability for older Mumble clients to be able to connect to it." msgstr "Beachten Sie: Änderungen hieran können die Rückwärtskompatibilität Ihres Murmur-Servers beeinträchtigen; dadurch kann es für ältere Mumblie-Clients unmöglich werden, sich damit zu verbinden." #. type: item -#: guix-git/doc/guix.texi:24160 +#: guix-git/doc/guix.texi:24522 #, no-wrap msgid "@code{public-registration} (default: @code{#f})" msgstr "@code{public-registration} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:24162 +#: guix-git/doc/guix.texi:24524 msgid "Must be a @code{} record or @code{#f}." msgstr "Hier muss ein @code{}-Verbundsobjekt oder @code{#f} angegeben werden." #. type: table -#: guix-git/doc/guix.texi:24167 +#: guix-git/doc/guix.texi:24529 msgid "You can optionally register your server in the public server list that the @code{mumble} client shows on startup. You cannot register your server if you have set a @code{server-password}, or set @code{allow-ping} to @code{#f}." msgstr "Sie können Ihren Server optional in die öffentliche Serverliste eintragen lassen, die der Mumble-Client @code{mumble} beim Start anzeigt. Sie können Ihren Server nicht registrieren, wenn Sie ein @code{server-password} festgelegt oder @code{allow-ping} auf @code{#f} gesetzt haben." #. type: table -#: guix-git/doc/guix.texi:24169 +#: guix-git/doc/guix.texi:24531 msgid "It might take a few hours until it shows up in the public list." msgstr "Es könnte ein paar Stunden dauern, bis er in der öffentlichen Liste zu finden ist." #. type: item -#: guix-git/doc/guix.texi:24170 guix-git/doc/guix.texi:26407 +#: guix-git/doc/guix.texi:24532 guix-git/doc/guix.texi:26744 #, no-wrap msgid "@code{file} (default: @code{#f})" msgstr "@code{file} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:24172 +#: guix-git/doc/guix.texi:24534 msgid "Optional alternative override for this configuration." msgstr "Optional kann hier eine vorrangig benutzte alternative Konfiguration festgelegt werden." #. type: deftp -#: guix-git/doc/guix.texi:24175 +#: guix-git/doc/guix.texi:24537 #, no-wrap msgid "{Data Type} murmur-public-registration-configuration" msgstr "{Datentyp} murmur-public-registration-configuration" #. type: deftp -#: guix-git/doc/guix.texi:24177 +#: guix-git/doc/guix.texi:24539 msgid "Configuration for public registration of a murmur service." msgstr "Konfiguration für das öffentliche Registrieren eines Murmur-Dienstes." #. type: table -#: guix-git/doc/guix.texi:24181 +#: guix-git/doc/guix.texi:24543 msgid "This is a display name for your server. Not to be confused with the hostname." msgstr "Dies ist ein Anzeigename für Ihren Server. Er ist nicht zu verwechseln mit dem Rechnernamen („Hostname“)." #. type: itemx -#: guix-git/doc/guix.texi:24182 guix-git/doc/guix.texi:33135 -#: guix-git/doc/guix.texi:34304 +#: guix-git/doc/guix.texi:24544 guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:34743 #, no-wrap msgid "password" msgstr "password" #. type: table -#: guix-git/doc/guix.texi:24185 +#: guix-git/doc/guix.texi:24547 msgid "A password to identify your registration. Subsequent updates will need the same password. Don't lose your password." msgstr "Ein Passwort, um Ihre Registrierung zu identifizieren. Nachfolgende Aktualisierungen müssen dasselbe Passwort benutzen. Verlieren Sie Ihr Passwort nicht." #. type: table -#: guix-git/doc/guix.texi:24189 +#: guix-git/doc/guix.texi:24551 msgid "This should be a @code{http://} or @code{https://} link to your web site." msgstr "Dies sollte ein Link mit @code{http://} oder @code{https://} auf Ihren Webauftritt sein." #. type: item -#: guix-git/doc/guix.texi:24190 guix-git/doc/guix.texi:27292 +#: guix-git/doc/guix.texi:24552 guix-git/doc/guix.texi:27629 #, no-wrap msgid "@code{hostname} (default: @code{#f})" msgstr "@code{hostname} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:24193 +#: guix-git/doc/guix.texi:24555 msgid "By default your server will be listed by its IP address. If it is set your server will be linked by this host name instead." msgstr "Nach Vorgabe wird Ihr Server über seine IP-Adresse aufgeführt. Wenn dies gesetzt ist, wird er stattdessen mit diesem Rechnernamen verknüpft." #. type: Plain text -#: guix-git/doc/guix.texi:24203 +#: guix-git/doc/guix.texi:24565 msgid "The @code{(gnu services file-sharing)} module provides services that assist with transferring files over peer-to-peer file-sharing networks." msgstr "Im Modul @code{(gnu services file-sharing)} werden Dienste bereitgestellt, die beim Übertragen von Dateien zwischen Netzwerkteilnehmern untereinander helfen („peer-to-peer“)." #. type: subsubheading -#: guix-git/doc/guix.texi:24204 +#: guix-git/doc/guix.texi:24566 #, no-wrap msgid "Transmission Daemon Service" msgstr "Transmission-Daemon-Dienst" #. type: Plain text -#: guix-git/doc/guix.texi:24212 +#: guix-git/doc/guix.texi:24574 msgid "@uref{https://transmissionbt.com/, Transmission} is a flexible BitTorrent client that offers a variety of graphical and command-line interfaces. A @code{transmission-daemon-service-type} service provides Transmission's headless variant, @command{transmission-daemon}, as a system service, allowing users to share files via BitTorrent even when they are not logged in." msgstr "@uref{https://transmissionbt.com/, Transmission} ist ein vielseitiger BitTorrent-Client, der eine Vielzahl grafischer und befehlszeilenbasierter Benutzeroberflächen bereitstellt. Ein Dienst vom Typ @code{transmission-daemon-service-type} macht die Variante für die Nutzung ohne Oberfläche zugänglich, nämlich @command{transmission-daemon}, als ein Systemdienst, mit dem Benutzer Dateien über BitTorrent teilen können, selbst wenn sie gerade nicht angemeldet sind." #. type: deffn -#: guix-git/doc/guix.texi:24213 +#: guix-git/doc/guix.texi:24575 #, no-wrap msgid "{Scheme Variable} transmission-daemon-service-type" msgstr "{Scheme-Variable} transmission-daemon-service-type" #. type: deffn -#: guix-git/doc/guix.texi:24217 +#: guix-git/doc/guix.texi:24579 msgid "The service type for the Transmission Daemon BitTorrent client. Its value must be a @code{transmission-daemon-configuration} object as in this example:" msgstr "Der Diensttyp für den BitTorrent-Client „Transmission Daemon“. Sein Wert muss ein @code{transmission-daemon-configuration}-Verbundsobjekt wie in diesem Beispiel sein:" #. type: lisp -#: guix-git/doc/guix.texi:24228 +#: guix-git/doc/guix.texi:24590 #, no-wrap msgid "" "(service transmission-daemon-service-type\n" @@ -45529,7 +46189,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:24233 +#: guix-git/doc/guix.texi:24595 #, no-wrap msgid "" " ;; Accept requests from this and other hosts on the\n" @@ -45545,7 +46205,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:24237 +#: guix-git/doc/guix.texi:24599 #, no-wrap msgid "" " ;; Limit bandwidth use during work hours\n" @@ -45559,7 +46219,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:24244 +#: guix-git/doc/guix.texi:24606 #, no-wrap msgid "" " (alt-speed-time-enabled? #t)\n" @@ -45577,49 +46237,49 @@ msgstr "" " (+ (* 60 (+ 12 5)) 30)))) ; 5:30 nachmittags@tie{}/ abends\n" #. type: Plain text -#: guix-git/doc/guix.texi:24257 +#: guix-git/doc/guix.texi:24619 msgid "Once the service is started, users can interact with the daemon through its Web interface (at @code{http://localhost:9091/}) or by using the @command{transmission-remote} command-line tool, available in the @code{transmission} package. (Emacs users may want to also consider the @code{emacs-transmission} package.) Both communicate with the daemon through its remote procedure call (RPC) interface, which by default is available to all users on the system; you may wish to change this by assigning values to the @code{rpc-authentication-required?}, @code{rpc-username} and @code{rpc-password} settings, as shown in the example above and documented further below." msgstr "Sobald der Dienst gestartet wurde, können Benutzer mit dem Daemon über seine Webschnittstelle interagieren (auf @code{http://localhost:9091/}) oder indem sie das Werkzeug @command{transmission-remote} auf der Befehlszeile aufrufen. Es ist Teil des Pakets @code{transmission}. (Emacs-Nutzer möchten vielleicht einen Blick auf das Paket @code{emacs-transmission} werfen.) Beide kommunizieren mit dem Daemon über seine Schnittstelle für entfernte Prozeduraufrufe (Remote Procedure Calls, RPC), was nach Vorgabe jedem Nutzer auf dem System zur Verfügung steht. Sie könnten das ändern wollen, indem Sie die Einstellungen @code{rpc-authentication-required?}, @code{rpc-username} und @code{rpc-password} anpassen, wie oben gezeigt und im Folgenden beschrieben." #. type: Plain text -#: guix-git/doc/guix.texi:24265 +#: guix-git/doc/guix.texi:24627 msgid "The value for @code{rpc-password} must be a password hash of the type generated and used by Transmission clients. This can be copied verbatim from an existing @file{settings.json} file, if another Transmission client is already being used. Otherwise, the @code{transmission-password-hash} and @code{transmission-random-salt} procedures provided by this module can be used to obtain a suitable hash value." msgstr "Als Wert für @code{rpc-password} muss ein Passwort in der Art angegeben werden, die Transmission-Clients erzeugen und nutzen. Sie können es aus einer bestehenden Datei @file{settings.json} exakt kopieren, wenn bereits ein anderer Transmission-Client benutzt wurde. Andernfalls können Sie mit den Prozeduren @code{transmission-password-hash} und @code{transmission-random-salt} aus diesem Modul einen geeigneten Hash-Wert bestimmen." #. type: deffn -#: guix-git/doc/guix.texi:24266 +#: guix-git/doc/guix.texi:24628 #, no-wrap msgid "{Scheme Procedure} transmission-password-hash @var{password} @var{salt}" msgstr "{Scheme-Prozedur} transmission-password-hash @var{Passwort} @var{Salt}" #. type: deffn -#: guix-git/doc/guix.texi:24270 +#: guix-git/doc/guix.texi:24632 msgid "Returns a string containing the result of hashing @var{password} together with @var{salt}, in the format recognized by Transmission clients for their @code{rpc-password} configuration setting." msgstr "Liefert eine Zeichenkette mit dem Hash von @var{Passwort} zusammen mit dem @var{Salt} in dem Format, das Clients für Transmission für deren @code{rpc-password}-Einstellung erkennen." #. type: deffn -#: guix-git/doc/guix.texi:24274 +#: guix-git/doc/guix.texi:24636 msgid "@var{salt} must be an eight-character string. The @code{transmission-random-salt} procedure can be used to generate a suitable salt value at random." msgstr "Das @var{Salt} muss eine acht Zeichen lange Zeichenkette sein. Die Prozedur @code{transmission-random-salt} kann benutzt werden, um einen geeigneten Salt-Wert zufällig zu erzeugen." #. type: deffn -#: guix-git/doc/guix.texi:24276 +#: guix-git/doc/guix.texi:24638 #, no-wrap msgid "{Scheme Procedure} transmission-random-salt" msgstr "{Scheme-Prozedur} transmission-random-salt" #. type: deffn -#: guix-git/doc/guix.texi:24280 +#: guix-git/doc/guix.texi:24642 msgid "Returns a string containing a random, eight-character salt value of the type generated and used by Transmission clients, suitable for passing to the @code{transmission-password-hash} procedure." msgstr "Liefert eine Zeichenkette mit einem zufälligen, acht Zeichen langen Salt-Wert von der Art, wie sie Clients für Transmission erzeugen und benutzen. Sie ist dafür geeignet, an die Prozedur @code{transmission-password-hash} übergeben zu werden." #. type: Plain text -#: guix-git/doc/guix.texi:24286 +#: guix-git/doc/guix.texi:24648 msgid "These procedures are accessible from within a Guile REPL started with the @command{guix repl} command (@pxref{Invoking guix repl}). This is useful for obtaining a random salt value to provide as the second parameter to `transmission-password-hash`, as in this example session:" msgstr "Diese Prozeduren sind aus einer über den Befehl @command{guix repl} gestarteten Guile-REPL heraus zugänglich (siehe @ref{Invoking guix repl}). Sie eignen sich dafür, einen zufälligen Salt-Wert zu bekommen, der als der zweite Parameter an „transmission-password-hash“ übergeben werden kann. Zum Beispiel:" #. type: example -#: guix-git/doc/guix.texi:24292 +#: guix-git/doc/guix.texi:24654 #, no-wrap msgid "" "$ guix repl\n" @@ -45633,12 +46293,12 @@ msgstr "" "$1 = \"uKd1uMs9\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:24295 +#: guix-git/doc/guix.texi:24657 msgid "Alternatively, a complete password hash can generated in a single step:" msgstr "Alternativ kann ein vollständiger Passwort-Hash in einem einzigen Schritt erzeugt werden:" #. type: example -#: guix-git/doc/guix.texi:24300 +#: guix-git/doc/guix.texi:24662 #, no-wrap msgid "" "scheme@@(guix-user)> (transmission-password-hash \"transmission\"\n" @@ -45650,480 +46310,480 @@ msgstr "" "$2 = \"@{c8bbc6d1740cd8dc819a6e25563b67812c1c19c9VtFPfdsX\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:24305 +#: guix-git/doc/guix.texi:24667 msgid "The resulting string can be used as-is for the value of @code{rpc-password}, allowing the password to be kept hidden even in the operating-system configuration." msgstr "Die sich ergebende Zeichenkette kann so, wie sie ist, als der Wert von @code{rpc-password} eingesetzt werden. Dadurch kann das Passwort geheim gehalten werden, selbst in einer Betriebssystemkonfiguration." #. type: Plain text -#: guix-git/doc/guix.texi:24314 +#: guix-git/doc/guix.texi:24676 msgid "Torrent files downloaded by the daemon are directly accessible only to users in the ``transmission'' user group, who receive read-only access to the directory specified by the @code{download-dir} configuration setting (and also the directory specified by @code{incomplete-dir}, if @code{incomplete-dir-enabled?} is @code{#t}). Downloaded files can be moved to another directory or deleted altogether using @command{transmission-remote} with its @code{--move} and @code{--remove-and-delete} options." msgstr "Vom Daemon heruntergeladene Torrent-Dateien sind nur für die Benutzer in der Benutzergruppe „transmission“ direkt zugänglich. Sie haben auf das in der Einstellung @code{download-dir} angegebene Verzeichnis nur Lesezugriff (und auf das in @code{incomplete-dir} angegebene Verzeichnis, sofern @code{incomplete-dir-enabled?} auf @code{#t} gesetzt ist). Heruntergeladene Dateien können in beliebige Verzeichnisse verschoben oder ganz gelöscht werden, indem Sie @command{transmission-remote} mit den Befehlszeilenoptionen @code{--move} zum Verschieben und @code{--remove-and-delete} zum Löschen benutzen." #. type: Plain text -#: guix-git/doc/guix.texi:24321 +#: guix-git/doc/guix.texi:24683 msgid "If the @code{watch-dir-enabled?} setting is set to @code{#t}, users in the ``transmission'' group are able also to place @file{.torrent} files in the directory specified by @code{watch-dir} to have the corresponding torrents added by the daemon. (The @code{trash-original-torrent-files?} setting controls whether the daemon deletes these files after processing them.)" msgstr "Wenn die Einstellung @code{watch-dir-enabled?} auf @code{#t} gesetzt ist, haben die Benutzer in der Gruppe „transmission“ auch die Möglichkeit, @file{.torrent}-Dateien in dem über @code{watch-dir} angegebenen Verzeichnis zu platzieren. Dadurch fügt der Daemon die entsprechenden Torrents hinzu. (Mit der Einstellung @code{trash-original-torrent-files?} wird festgelegt, ob der Daemon diese Dateien löschen soll, wenn er mit ihnen fertig ist.)" #. type: Plain text -#: guix-git/doc/guix.texi:24326 +#: guix-git/doc/guix.texi:24688 msgid "Some of the daemon's configuration settings can be changed temporarily by @command{transmission-remote} and similar tools. To undo these changes, use the service's @code{reload} action to have the daemon reload its settings from disk:" msgstr "Manche der Einstellungen des Daemons können zeitweilig über @command{transmission-remote} und ähnliche Werkzeuge geändert werden. Sie können solche Änderungen rückgängig machen, indem Sie die @code{reload}-Aktion des Dienstes aufrufen. Dann lädt der Daemon seine Einstellungen neu von der Platte:" #. type: example -#: guix-git/doc/guix.texi:24329 +#: guix-git/doc/guix.texi:24691 #, no-wrap msgid "# herd reload transmission-daemon\n" msgstr "# herd reload transmission-daemon\n" #. type: Plain text -#: guix-git/doc/guix.texi:24333 +#: guix-git/doc/guix.texi:24695 msgid "The full set of available configuration settings is defined by the @code{transmission-daemon-configuration} data type." msgstr "Die vollständige Menge der Einstellmöglichkeiten finden Sie in der Definition des Datentyps @code{transmission-daemon-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:24334 +#: guix-git/doc/guix.texi:24696 #, no-wrap msgid "{Data Type} transmission-daemon-configuration" msgstr "{Datentyp} transmission-daemon-configuration" #. type: deftp -#: guix-git/doc/guix.texi:24338 +#: guix-git/doc/guix.texi:24700 msgid "The data type representing configuration settings for Transmission Daemon. These correspond directly to the settings recognized by Transmission clients in their @file{settings.json} file." msgstr "Dieser Datentyp repräsentiert die Einstellungen für den Transmission-Daemon. Sie entsprechen direkt den Einstellungen, die Clients für Transmission aus deren Datei @file{settings.json} erkennen können." #. type: Plain text -#: guix-git/doc/guix.texi:24352 +#: guix-git/doc/guix.texi:24714 msgid "Available @code{transmission-daemon-configuration} fields are:" msgstr "Verfügbare @code{transmission-daemon-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:24353 +#: guix-git/doc/guix.texi:24715 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} package transmission" msgstr "{@code{transmission-daemon-configuration}-Parameter} „package“ transmission" #. type: deftypevr -#: guix-git/doc/guix.texi:24355 +#: guix-git/doc/guix.texi:24717 msgid "The Transmission package to use." msgstr "Das Transmission-Paket, das benutzt werden soll." #. type: deftypevr -#: guix-git/doc/guix.texi:24358 +#: guix-git/doc/guix.texi:24720 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer stop-wait-period" msgstr "{@code{transmission-daemon-configuration}-Parameter} Nichtnegative-ganze-Zahl stop-wait-period" #. type: deftypevr -#: guix-git/doc/guix.texi:24364 +#: guix-git/doc/guix.texi:24726 msgid "The period, in seconds, to wait when stopping the service for @command{transmission-daemon} to exit before killing its process. This allows the daemon time to complete its housekeeping and send a final update to trackers as it shuts down. On slow hosts, or hosts with a slow network connection, this value may need to be increased." msgstr "Wie viele Sekunden gewartet werden soll, wenn der Dienst für @command{transmission-daemon} gestoppt wird, bis dieser sich beendet, bevor sein Prozess zwangsweise abgewürgt wird. Dadurch wird dem Daemon etwas Zeit gegeben, seine Daten in Ordnung zu bringen und seinen Trackern ein letztes Mal Bescheid zu geben, wenn er herunterfährt. Auf langsamen Rechnern oder Rechnern mit einer langsamen Netzwerkanbindung könnte es besser sein, diesen Wert zu erhöhen." #. type: deftypevr -#: guix-git/doc/guix.texi:24366 guix-git/doc/guix.texi:24738 -#: guix-git/doc/guix.texi:32101 guix-git/doc/guix.texi:32336 -#: guix-git/doc/guix.texi:32344 guix-git/doc/guix.texi:32352 +#: guix-git/doc/guix.texi:24728 guix-git/doc/guix.texi:25100 +#: guix-git/doc/guix.texi:32466 guix-git/doc/guix.texi:32701 +#: guix-git/doc/guix.texi:32709 guix-git/doc/guix.texi:32717 msgid "Defaults to @samp{10}." msgstr "Die Vorgabe ist @samp{10}." #. type: deftypevr -#: guix-git/doc/guix.texi:24369 +#: guix-git/doc/guix.texi:24731 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string download-dir" msgstr "{@code{transmission-daemon-configuration}-Parameter} Zeichenkette download-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:24371 +#: guix-git/doc/guix.texi:24733 msgid "The directory to which torrent files are downloaded." msgstr "Das Verzeichnis, wohin Torrent-Dateien heruntergeladen werden." #. type: deftypevr -#: guix-git/doc/guix.texi:24373 +#: guix-git/doc/guix.texi:24735 msgid "Defaults to @samp{\"/var/lib/transmission-daemon/downloads\"}." msgstr "Die Vorgabe ist @samp{\"/var/lib/transmission-daemon/downloads\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:24376 +#: guix-git/doc/guix.texi:24738 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean incomplete-dir-enabled?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck incomplete-dir-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24381 +#: guix-git/doc/guix.texi:24743 msgid "If @code{#t}, files will be held in @code{incomplete-dir} while their torrent is being downloaded, then moved to @code{download-dir} once the torrent is complete. Otherwise, files for all torrents (including those still being downloaded) will be placed in @code{download-dir}." msgstr "Wenn es @code{#t} ist, werden Dateien in @code{incomplete-dir} zwischengespeichert, während ihr Torrent heruntergeladen wird, und nach Abschluss des Torrents nach @code{download-dir} verschoben. Andernfalls werden Dateien für alle Torrents gleich in @code{download-dir} gespeichert (einschließlich derer, bei denen das Herunterladen noch im Gange ist)." #. type: deftypevr -#: guix-git/doc/guix.texi:24386 +#: guix-git/doc/guix.texi:24748 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string incomplete-dir" msgstr "{@code{transmission-daemon-configuration}-Parameter} Vielleicht-Zeichenkette incomplete-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:24389 +#: guix-git/doc/guix.texi:24751 msgid "The directory in which files from incompletely downloaded torrents will be held when @code{incomplete-dir-enabled?} is @code{#t}." msgstr "In welchem Verzeichnis die Dateien bei noch nicht abgeschlossenem Herunterladen zwischengespeichert werden, falls @code{incomplete-dir-enabled?} auf @code{#t} gesetzt ist." #. type: deftypevr -#: guix-git/doc/guix.texi:24394 +#: guix-git/doc/guix.texi:24756 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} umask umask" msgstr "{@code{transmission-daemon-configuration}-Parameter} umask umask" #. type: deftypevr -#: guix-git/doc/guix.texi:24397 +#: guix-git/doc/guix.texi:24759 msgid "The file mode creation mask used for downloaded files. (See the @command{umask} man page for more information.)" msgstr "Die Dateimodusmaske, mit der heruntergeladene Dateien erzeugt werden. (Siehe die Handbuchseite von @command{umask} für mehr Informationen.)" #. type: deftypevr -#: guix-git/doc/guix.texi:24399 +#: guix-git/doc/guix.texi:24761 msgid "Defaults to @samp{18}." msgstr "Die Vorgabe ist @samp{18}." #. type: deftypevr -#: guix-git/doc/guix.texi:24402 +#: guix-git/doc/guix.texi:24764 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rename-partial-files?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck rename-partial-files?" #. type: deftypevr -#: guix-git/doc/guix.texi:24405 +#: guix-git/doc/guix.texi:24767 msgid "When @code{#t}, ``.part'' is appended to the name of partially downloaded files." msgstr "Wenn es @code{#t} ist, wird an die Namen teilweise heruntergeladener Dateien „.part“ angehängt." #. type: deftypevr -#: guix-git/doc/guix.texi:24410 +#: guix-git/doc/guix.texi:24772 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} preallocation-mode preallocation" msgstr "{@code{transmission-daemon-configuration}-Parameter} Zuweisungsmodus preallocation" #. type: deftypevr -#: guix-git/doc/guix.texi:24415 +#: guix-git/doc/guix.texi:24777 msgid "The mode by which space should be preallocated for downloaded files, one of @code{none}, @code{fast} (or @code{sparse}) and @code{full}. Specifying @code{full} will minimize disk fragmentation at a cost to file-creation speed." msgstr "Auf welche Art vorab Speicher für heruntergeladene Dateien zugewiesen werden soll. Entweder @code{none} (gar nicht), @code{fast} (schnell) bzw.@: gleichbedeutend @code{sparse} (dünnbesetzt/kompakt) oder @code{full} (gänzlich). Bei @code{full} fragmentiert die Platte am wenigsten, aber es dauert länger, die Datei zu erzeugen." #. type: deftypevr -#: guix-git/doc/guix.texi:24417 +#: guix-git/doc/guix.texi:24779 msgid "Defaults to @samp{fast}." msgstr "Vorgegeben ist @samp{fast}." #. type: deftypevr -#: guix-git/doc/guix.texi:24420 +#: guix-git/doc/guix.texi:24782 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean watch-dir-enabled?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck watch-dir-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24425 +#: guix-git/doc/guix.texi:24787 msgid "If @code{#t}, the directory specified by @code{watch-dir} will be watched for new @file{.torrent} files and the torrents they describe added automatically (and the original files removed, if @code{trash-original-torrent-files?} is @code{#t})." msgstr "Ist es @code{#t}, wird das in @code{watch-dir} angegebene Verzeichnis beobachtet, ob dort neue @file{.torrent}-Dateien eingefügt werden. Die darin beschriebenen Torrents werden automatisch hinzugefügt (und die ursprünglichen Dateien werden entfernt, wenn @code{trash-original-torrent-files?} auf @code{#t} steht)." #. type: deftypevr -#: guix-git/doc/guix.texi:24430 +#: guix-git/doc/guix.texi:24792 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string watch-dir" msgstr "{@code{transmission-daemon-configuration}-Parameter} Vielleicht-Zeichenkette watch-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:24433 +#: guix-git/doc/guix.texi:24795 msgid "The directory to be watched for @file{.torrent} files indicating new torrents to be added, when @code{watch-dir-enabled} is @code{#t}." msgstr "Welches Verzeichnis beobachtet wird, ob dort neue @file{.torrent}-Dateien eingefügt werden, die neu hinzuzufügende Torrents anzeigen, falls @code{watch-dir-enabled} auf @code{#t} steht." #. type: deftypevr -#: guix-git/doc/guix.texi:24438 +#: guix-git/doc/guix.texi:24800 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean trash-original-torrent-files?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck trash-original-torrent-files?" #. type: deftypevr -#: guix-git/doc/guix.texi:24442 +#: guix-git/doc/guix.texi:24804 msgid "When @code{#t}, @file{.torrent} files will be deleted from the watch directory once their torrent has been added (see @code{watch-directory-enabled?})." msgstr "Wenn es @code{#t} ist, werden @file{.torrent}-Dateien aus dem beobachteten Verzeichnis gelöscht, sobald ihr Torrent hinzugefügt worden ist (siehe @code{watch-directory-enabled?})." #. type: deftypevr -#: guix-git/doc/guix.texi:24447 +#: guix-git/doc/guix.texi:24809 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean speed-limit-down-enabled?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck speed-limit-down-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24450 +#: guix-git/doc/guix.texi:24812 msgid "When @code{#t}, the daemon's download speed will be limited to the rate specified by @code{speed-limit-down}." msgstr "Wenn es @code{#t} ist, wird die Geschwindigkeit beim Herunterladen durch den Daemon durch die in @code{speed-limit-down} angegebene Rate beschränkt." #. type: deftypevr -#: guix-git/doc/guix.texi:24455 +#: guix-git/doc/guix.texi:24817 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer speed-limit-down" msgstr "{@code{transmission-daemon-configuration}-Parameter} Nichtnegative-ganze-Zahl speed-limit-down" #. type: deftypevr -#: guix-git/doc/guix.texi:24457 +#: guix-git/doc/guix.texi:24819 msgid "The default global-maximum download speed, in kilobytes per second." msgstr "Die standardmäßige globale Höchstgeschwindigkeit für das Herunterladen, in Kilobyte pro Sekunde." #. type: deftypevr -#: guix-git/doc/guix.texi:24462 +#: guix-git/doc/guix.texi:24824 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean speed-limit-up-enabled?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck speed-limit-up-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24465 +#: guix-git/doc/guix.texi:24827 msgid "When @code{#t}, the daemon's upload speed will be limited to the rate specified by @code{speed-limit-up}." msgstr "Wenn es @code{#t} ist, wird die Geschwindigkeit des Daemons beim Hochladen durch die in @code{speed-limit-up} eingestellte Rate beschränkt." #. type: deftypevr -#: guix-git/doc/guix.texi:24470 +#: guix-git/doc/guix.texi:24832 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer speed-limit-up" msgstr "{@code{transmission-daemon-configuration}-Parameter} Nichtnegative-ganze-Zahl speed-limit-up" #. type: deftypevr -#: guix-git/doc/guix.texi:24472 +#: guix-git/doc/guix.texi:24834 msgid "The default global-maximum upload speed, in kilobytes per second." msgstr "Die standardmäßige globale Höchstgeschwindigkeit für das Hochladen, in Kilobyte pro Sekunde." #. type: deftypevr -#: guix-git/doc/guix.texi:24477 +#: guix-git/doc/guix.texi:24839 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean alt-speed-enabled?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck alt-speed-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24483 +#: guix-git/doc/guix.texi:24845 msgid "When @code{#t}, the alternate speed limits @code{alt-speed-down} and @code{alt-speed-up} are used (in place of @code{speed-limit-down} and @code{speed-limit-up}, if they are enabled) to constrain the daemon's bandwidth usage. This can be scheduled to occur automatically at certain times during the week; see @code{alt-speed-time-enabled?}." msgstr "Wenn es @code{#t} ist, gelten die alternativen Höchstgeschwindigkeiten @code{alt-speed-down} und @code{alt-speed-up} (statt @code{speed-limit-down} und @code{speed-limit-up}, wenn sie aktiviert sind), um die Bandbreitennutzung des Daemons einzuschränken. Sie können einen Plan festlegen, zu welchen Zeiten in der Woche sie automatisch aktiviert werden; siehe @code{alt-speed-time-enabled?}." #. type: deftypevr -#: guix-git/doc/guix.texi:24488 +#: guix-git/doc/guix.texi:24850 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-down" msgstr "{@code{transmission-daemon-configuration}-Parameter} Nichtnegative-ganze-Zahl alt-speed-down" #. type: deftypevr -#: guix-git/doc/guix.texi:24490 +#: guix-git/doc/guix.texi:24852 msgid "The alternate global-maximum download speed, in kilobytes per second." msgstr "Die alternative globale Höchstgeschwindigkeit für das Herunterladen, in Kilobyte pro Sekunde." #. type: deftypevr -#: guix-git/doc/guix.texi:24492 guix-git/doc/guix.texi:24499 -#: guix-git/doc/guix.texi:24671 guix-git/doc/guix.texi:32108 -#: guix-git/doc/guix.texi:32123 +#: guix-git/doc/guix.texi:24854 guix-git/doc/guix.texi:24861 +#: guix-git/doc/guix.texi:25033 guix-git/doc/guix.texi:32473 +#: guix-git/doc/guix.texi:32488 msgid "Defaults to @samp{50}." msgstr "Die Vorgabe ist @samp{50}." #. type: deftypevr -#: guix-git/doc/guix.texi:24495 +#: guix-git/doc/guix.texi:24857 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-up" msgstr "{@code{transmission-daemon-configuration}-Parameter} Nichtnegative-ganze-Zahl alt-speed-up" #. type: deftypevr -#: guix-git/doc/guix.texi:24497 +#: guix-git/doc/guix.texi:24859 msgid "The alternate global-maximum upload speed, in kilobytes per second." msgstr "Die alternative globale Höchstgeschwindigkeit für das Hochladen, in Kilobyte pro Sekunde." #. type: deftypevr -#: guix-git/doc/guix.texi:24502 +#: guix-git/doc/guix.texi:24864 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean alt-speed-time-enabled?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck alt-speed-time-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24507 +#: guix-git/doc/guix.texi:24869 msgid "When @code{#t}, the alternate speed limits @code{alt-speed-down} and @code{alt-speed-up} will be enabled automatically during the periods specified by @code{alt-speed-time-day}, @code{alt-speed-time-begin} and @code{alt-time-speed-end}." msgstr "Wenn es @code{#t} ist, werden die alternativen Höchstgeschwindigkeiten @code{alt-speed-down} und @code{alt-speed-up} automatisch während bestimmter Zeitperioden aktiviert, entsprechend der Einstellungen für @code{alt-speed-time-day}, @code{alt-speed-time-begin} und @code{alt-speed-time-end}." #. type: deftypevr -#: guix-git/doc/guix.texi:24512 +#: guix-git/doc/guix.texi:24874 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} day-list alt-speed-time-day" msgstr "{@code{transmission-daemon-configuration}-Parameter} Tage-Liste alt-speed-time-day" #. type: deftypevr -#: guix-git/doc/guix.texi:24517 +#: guix-git/doc/guix.texi:24879 msgid "The days of the week on which the alternate-speed schedule should be used, specified either as a list of days (@code{sunday}, @code{monday}, and so on) or using one of the symbols @code{weekdays}, @code{weekends} or @code{all}." msgstr "An welchen Wochentagen die alternative Höchstgeschwindigkeitsplanung benutzt werden soll. Anzugeben ist entweder eine Liste der englischen Namen der Wochentage (@code{sunday}, @code{monday} und so weiter) oder eines der Symbole @code{weekdays} (unter der Woche), @code{weekends} (an Wochenenden) oder @code{all}." #. type: deftypevr -#: guix-git/doc/guix.texi:24519 +#: guix-git/doc/guix.texi:24881 msgid "Defaults to @samp{all}." msgstr "Die Vorgabe ist @samp{all}." #. type: deftypevr -#: guix-git/doc/guix.texi:24522 +#: guix-git/doc/guix.texi:24884 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-time-begin" msgstr "{@code{transmission-daemon-configuration}-Parameter} Nichtnegative-ganze-Zahl alt-speed-time-begin" #. type: deftypevr -#: guix-git/doc/guix.texi:24525 +#: guix-git/doc/guix.texi:24887 msgid "The time of day at which to enable the alternate speed limits, expressed as a number of minutes since midnight." msgstr "Zu welcher Uhrzeit die alternativen Höchstgeschwindigkeiten in Kraft treten, als Anzahl der Minuten seit Mitternacht." #. type: deftypevr -#: guix-git/doc/guix.texi:24527 +#: guix-git/doc/guix.texi:24889 msgid "Defaults to @samp{540}." msgstr "Die Vorgabe ist @samp{540}." #. type: deftypevr -#: guix-git/doc/guix.texi:24530 +#: guix-git/doc/guix.texi:24892 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-time-end" msgstr "{@code{transmission-daemon-configuration}-Parameter} Nichtnegative-ganze-Zahl alt-speed-time-end" #. type: deftypevr -#: guix-git/doc/guix.texi:24533 +#: guix-git/doc/guix.texi:24895 msgid "The time of day at which to disable the alternate speed limits, expressed as a number of minutes since midnight." msgstr "Ab welcher Uhrzeit die alternativen Höchstgeschwindigkeiten nicht mehr gelten, als Anzahl der Minuten seit Mitternacht." #. type: deftypevr -#: guix-git/doc/guix.texi:24535 +#: guix-git/doc/guix.texi:24897 msgid "Defaults to @samp{1020}." msgstr "Die Vorgabe ist @samp{1020}." #. type: deftypevr -#: guix-git/doc/guix.texi:24538 +#: guix-git/doc/guix.texi:24900 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string bind-address-ipv4" msgstr "{@code{transmission-daemon-configuration}-Parameter} Zeichenkette bind-address-ipv4" #. type: deftypevr -#: guix-git/doc/guix.texi:24541 +#: guix-git/doc/guix.texi:24903 msgid "The IP address at which to listen for peer connections, or ``0.0.0.0'' to listen at all available IP addresses." msgstr "Auf welcher IP-Adresse auf Verbindungen von anderen Netzwerkteilnehmern (Peers) gelauscht wird. Benutzen Sie „@code{0.0.0.0}“, wenn auf allen verfügbaren IP-Adressen gelauscht werden soll." #. type: deftypevr -#: guix-git/doc/guix.texi:24543 guix-git/doc/guix.texi:24846 -#: guix-git/doc/guix.texi:29969 +#: guix-git/doc/guix.texi:24905 guix-git/doc/guix.texi:25208 +#: guix-git/doc/guix.texi:30334 msgid "Defaults to @samp{\"0.0.0.0\"}." msgstr "Die Vorgabe ist @samp{\"0.0.0.0\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:24546 +#: guix-git/doc/guix.texi:24908 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string bind-address-ipv6" msgstr "{@code{transmission-daemon-configuration}-Parameter} Zeichenkette bind-address-ipv6" #. type: deftypevr -#: guix-git/doc/guix.texi:24549 +#: guix-git/doc/guix.texi:24911 msgid "The IPv6 address at which to listen for peer connections, or ``::'' to listen at all available IPv6 addresses." msgstr "Auf welcher IPv6-Adresse auf Verbindungen von anderen Netzwerkteilnehmern (Peers) gelauscht wird. Benutzen Sie „@code{::}“, wenn auf allen verfügbaren IPv6-Adressen gelauscht werden soll." #. type: deftypevr -#: guix-git/doc/guix.texi:24551 +#: guix-git/doc/guix.texi:24913 msgid "Defaults to @samp{\"::\"}." msgstr "Die Vorgabe ist @samp{\"::\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:24554 +#: guix-git/doc/guix.texi:24916 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean peer-port-random-on-start?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck peer-port-random-on-start?" #. type: deftypevr -#: guix-git/doc/guix.texi:24560 +#: guix-git/doc/guix.texi:24922 msgid "If @code{#t}, when the daemon starts it will select a port at random on which to listen for peer connections, from the range specified (inclusively) by @code{peer-port-random-low} and @code{peer-port-random-high}. Otherwise, it listens on the port specified by @code{peer-port}." msgstr "Wenn es @code{#t} ist, wählt der Daemon bei seinem Start einen Port mit zufälliger Portnummer, auf dem er auf Verbindungen durch andere Netzwerkteilnehmer lauscht. Die Nummer liegt zwischen (einschließlich) den Angaben in @code{peer-port-random-low} und @code{peer-port-random-high}. Ansonsten wird er auf dem in @code{peer-port} angegebenen Port lauschen." #. type: deftypevr -#: guix-git/doc/guix.texi:24565 +#: guix-git/doc/guix.texi:24927 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port-random-low" msgstr "{@code{transmission-daemon-configuration}-Parameter} Portnummer peer-port-random-low" #. type: deftypevr -#: guix-git/doc/guix.texi:24568 +#: guix-git/doc/guix.texi:24930 msgid "The lowest selectable port number when @code{peer-port-random-on-start?} is @code{#t}." msgstr "Die niedrigste Portnummer, die ausgewählt werden kann, wenn @code{peer-port-random-on-start?} auf @code{#t} steht." #. type: deftypevr -#: guix-git/doc/guix.texi:24570 +#: guix-git/doc/guix.texi:24932 msgid "Defaults to @samp{49152}." msgstr "Die Vorgabe ist @samp{49152}." #. type: deftypevr -#: guix-git/doc/guix.texi:24573 +#: guix-git/doc/guix.texi:24935 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port-random-high" msgstr "{@code{transmission-daemon-configuration}-Parameter} Portnummer peer-port-random-high" #. type: deftypevr -#: guix-git/doc/guix.texi:24576 +#: guix-git/doc/guix.texi:24938 msgid "The highest selectable port number when @code{peer-port-random-on-start} is @code{#t}." msgstr "Die höchste Portnummer, die ausgewählt werden kann, wenn @code{peer-port-random-on-start?} auf @code{#t} steht." #. type: deftypevr -#: guix-git/doc/guix.texi:24578 +#: guix-git/doc/guix.texi:24940 msgid "Defaults to @samp{65535}." msgstr "Die Vorgabe ist @samp{65535}." #. type: deftypevr -#: guix-git/doc/guix.texi:24581 +#: guix-git/doc/guix.texi:24943 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port" msgstr "{@code{transmission-daemon-configuration}-Parameter} Portnummer peer-port" #. type: deftypevr -#: guix-git/doc/guix.texi:24584 +#: guix-git/doc/guix.texi:24946 msgid "The port on which to listen for peer connections when @code{peer-port-random-on-start?} is @code{#f}." msgstr "Auf welchem Port auf Verbindungsversuche anderer Netzwerkteilnehmer gelauscht wird, wenn @code{peer-port-random-on-start?} auf @code{#f} steht." #. type: deftypevr -#: guix-git/doc/guix.texi:24586 +#: guix-git/doc/guix.texi:24948 msgid "Defaults to @samp{51413}." msgstr "Die Vorgabe ist @samp{51413}." #. type: deftypevr -#: guix-git/doc/guix.texi:24589 +#: guix-git/doc/guix.texi:24951 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean port-forwarding-enabled?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck port-forwarding-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24593 +#: guix-git/doc/guix.texi:24955 msgid "If @code{#t}, the daemon will attempt to configure port-forwarding on an upstream gateway automatically using @acronym{UPnP} and @acronym{NAT-PMP}." msgstr "Wenn es @code{#t} ist, wird der Daemon versuchen, eine Weiterleitung benötigter Ports beim Internetzugang (Gateway), an dem der Rechner angeschlossen ist, automatisch über UPnP und NAT-PMP einzurichten." #. type: deftypevr -#: guix-git/doc/guix.texi:24598 +#: guix-git/doc/guix.texi:24960 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} encryption-mode encryption" msgstr "{@code{transmission-daemon-configuration}-Parameter} Verschlüsselungsmodus encryption" #. type: deftypevr -#: guix-git/doc/guix.texi:24603 +#: guix-git/doc/guix.texi:24965 msgid "The encryption preference for peer connections, one of @code{prefer-unencrypted-connections}, @code{prefer-encrypted-connections} or @code{require-encrypted-connections}." msgstr "Ob Verbindungen zu anderen Netzwerkteilnehmern (Peers) verschlüsselt werden sollen; entweder @code{prefer-unencrypted-connections} (unverschlüsselte Verbindungen bevorzugen), @code{prefer-encrypted-connections} (verschlüsselte Verbindungen bevorzugen) oder @code{require-encrypted-connections} (nur verschlüsselte Verbindungen benutzen)." #. type: deftypevr -#: guix-git/doc/guix.texi:24605 +#: guix-git/doc/guix.texi:24967 msgid "Defaults to @samp{prefer-encrypted-connections}." msgstr "Die Vorgabe ist @samp{prefer-encrypted-connections}." #. type: deftypevr -#: guix-git/doc/guix.texi:24608 +#: guix-git/doc/guix.texi:24970 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string peer-congestion-algorithm" msgstr "{@code{transmission-daemon-configuration}-Parameter} Vielleicht-Zeichenkette peer-congestion-algorithm" #. type: deftypevr -#: guix-git/doc/guix.texi:24613 +#: guix-git/doc/guix.texi:24975 msgid "The TCP congestion-control algorithm to use for peer connections, specified using a string recognized by the operating system in calls to @code{setsockopt} (or set to @code{disabled}, in which case the operating-system default is used)." msgstr "Der Algorithmus zur TCP-Staukontrolle, der für Verbindungen zu anderen Netzwerkteilnehmern (Peers) verwendet werden soll. Anzugeben ist eine Zeichenkette, die das Betriebssystem für Aufrufe an @code{setsockopt} zulässt (oder @code{disabled}, damit die Voreinstellung des Betriebssystems angewandt wird)." #. type: deftypevr -#: guix-git/doc/guix.texi:24622 +#: guix-git/doc/guix.texi:24984 msgid "Note that on GNU/Linux systems, the kernel must be configured to allow processes to use a congestion-control algorithm not in the default set; otherwise, it will deny these requests with ``Operation not permitted''. To see which algorithms are available on your system and which are currently permitted for use, look at the contents of the files @file{tcp_available_congestion_control} and @file{tcp_allowed_congestion_control} in the @file{/proc/sys/net/ipv4} directory." msgstr "Es ist anzumerken, dass der Kernel auf GNU/Linux-Systemen so konfiguriert werden muss, dass Prozesse zur Nutzung eines nicht standardmäßigen Algorithmus zur Staukontrolle berechtigt sind, andernfalls wird er solche Anfragen mit „Die Operation ist nicht erlaubt“ ablehnen. Um die auf Ihrem System verfügbaren und zur Nutzung freigegebenen Algorithmen zu sehen, schauen Sie sich den Inhalt der Dateien @file{tcp_available_congestion_control} und @file{tcp_allowed_congestion_control} im Verzeichnis @file{/proc/sys/net/ipv4} an." #. type: deftypevr -#: guix-git/doc/guix.texi:24630 +#: guix-git/doc/guix.texi:24992 msgid "As an example, to have Transmission Daemon use @uref{http://www-ece.rice.edu/networks/TCP-LP/,the TCP Low Priority congestion-control algorithm}, you'll need to modify your kernel configuration to build in support for the algorithm, then update your operating-system configuration to allow its use by adding a @code{sysctl-service-type} service (or updating the existing one's configuration) with lines like the following:" msgstr "Wenn Sie zum Beispiel den Transmission-Daemon zusammen mit dem @uref{http://www-ece.rice.edu/networks/TCP-LP/,TCP-LP-Algorithmus} („TCP Low Priority“) zur Staukontrolle benutzen möchten, müssen Sie Ihre Kernelkonfiguration anpassen, damit Unterstützung für den Algorithmus eingebaut wird. Anschließend müssen Sie Ihre Betriebssystemkonfiguration anpassen, um dessen Nutzung zu erlauben, indem Sie einen Dienst des Typs @code{sysctl-service-type} hinzufügen (bzw.@: die Konfiguration des bestehenden Dienstes anpassen). Fügen Sie Zeilen ähnlich der folgenden hinzu:" #. type: lisp -#: guix-git/doc/guix.texi:24637 +#: guix-git/doc/guix.texi:24999 #, no-wrap msgid "" "(service sysctl-service-type\n" @@ -46139,529 +46799,529 @@ msgstr "" " \"reno cubic lp\"))))\n" #. type: deftypevr -#: guix-git/doc/guix.texi:24640 +#: guix-git/doc/guix.texi:25002 msgid "The Transmission Daemon configuration can then be updated with" msgstr "Dann können Sie die Konfiguration des Transmission-Daemons aktualisieren zu" #. type: lisp -#: guix-git/doc/guix.texi:24643 +#: guix-git/doc/guix.texi:25005 #, no-wrap msgid "(peer-congestion-algorithm \"lp\")\n" msgstr "(peer-congestion-algorithm \"lp\")\n" #. type: deftypevr -#: guix-git/doc/guix.texi:24646 +#: guix-git/doc/guix.texi:25008 msgid "and the system reconfigured to have the changes take effect." msgstr "und das System rekonfigurieren, damit die Änderungen in Kraft treten." #. type: deftypevr -#: guix-git/doc/guix.texi:24651 +#: guix-git/doc/guix.texi:25013 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} tcp-type-of-service peer-socket-tos" msgstr "{@code{transmission-daemon-configuration}-Parameter} TCP-Type-Of-Service peer-socket-tos" #. type: deftypevr -#: guix-git/doc/guix.texi:24655 +#: guix-git/doc/guix.texi:25017 msgid "The type of service to request in outgoing @acronym{TCP} packets, one of @code{default}, @code{low-cost}, @code{throughput}, @code{low-delay} and @code{reliability}." msgstr "Welcher Type-Of-Service in ausgehenden TCP-Paketen angefragt werden soll; entweder @code{default}, @code{low-cost}, @code{throughput}, @code{low-delay} oder @code{reliability}." #. type: deftypevr -#: guix-git/doc/guix.texi:24657 +#: guix-git/doc/guix.texi:25019 msgid "Defaults to @samp{default}." msgstr "Die Vorgabe ist @samp{default}." #. type: deftypevr -#: guix-git/doc/guix.texi:24660 +#: guix-git/doc/guix.texi:25022 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-limit-global" msgstr "{@code{transmission-daemon-configuration}-Parameter} Nichtnegative-ganze-Zahl peer-limit-global" #. type: deftypevr -#: guix-git/doc/guix.texi:24662 +#: guix-git/doc/guix.texi:25024 msgid "The global limit on the number of connected peers." msgstr "Die globale Höchstgrenze für die Anzahl verbundener Netzwerkteilnehmer (Peers)." #. type: deftypevr -#: guix-git/doc/guix.texi:24664 +#: guix-git/doc/guix.texi:25026 msgid "Defaults to @samp{200}." msgstr "Die Vorgabe ist @samp{200}." #. type: deftypevr -#: guix-git/doc/guix.texi:24667 +#: guix-git/doc/guix.texi:25029 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-limit-per-torrent" msgstr "{@code{transmission-daemon-configuration}-Parameter} Nichtnegative-ganze-Zahl peer-limit-per-torrent" #. type: deftypevr -#: guix-git/doc/guix.texi:24669 +#: guix-git/doc/guix.texi:25031 msgid "The per-torrent limit on the number of connected peers." msgstr "Die Höchstgrenze pro Torrent für die Anzahl verbundener Netzwerkteilnehmer (Peers)." #. type: deftypevr -#: guix-git/doc/guix.texi:24674 +#: guix-git/doc/guix.texi:25036 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer upload-slots-per-torrent" msgstr "{@code{transmission-daemon-configuration}-Parameter} Nichtnegative-ganze-Zahl upload-slots-per-torrent" #. type: deftypevr -#: guix-git/doc/guix.texi:24677 +#: guix-git/doc/guix.texi:25039 msgid "The maximum number of peers to which the daemon will upload data simultaneously for each torrent." msgstr "An wie viele Netzwerkteilnehmer der Daemon höchstens für denselben Torrent gleichzeitig Daten hochlädt." #. type: deftypevr -#: guix-git/doc/guix.texi:24679 +#: guix-git/doc/guix.texi:25041 msgid "Defaults to @samp{14}." msgstr "Die Vorgabe ist @samp{14}." #. type: deftypevr -#: guix-git/doc/guix.texi:24682 +#: guix-git/doc/guix.texi:25044 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-id-ttl-hours" msgstr "{@code{transmission-daemon-configuration}-Parameter} Nichtnegative-ganze-Zahl peer-id-ttl-hours" #. type: deftypevr -#: guix-git/doc/guix.texi:24685 +#: guix-git/doc/guix.texi:25047 msgid "The maximum lifespan, in hours, of the peer ID associated with each public torrent before it is regenerated." msgstr "Wie viele Stunden die jedem öffentlichen Torrent zugewiesene Peer-ID höchstens benutzt wird, bevor sie neu erzeugt wird." #. type: deftypevr -#: guix-git/doc/guix.texi:24687 +#: guix-git/doc/guix.texi:25049 msgid "Defaults to @samp{6}." msgstr "Die Vorgabe ist @samp{6}." #. type: deftypevr -#: guix-git/doc/guix.texi:24690 +#: guix-git/doc/guix.texi:25052 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean blocklist-enabled?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck blocklist-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24693 +#: guix-git/doc/guix.texi:25055 msgid "When @code{#t}, the daemon will ignore peers mentioned in the blocklist it has most recently downloaded from @code{blocklist-url}." msgstr "Wenn es @code{#t} ist, wird der Daemon in der Sperrliste vorkommende Netzwerkteilnehmer ignorieren. Die Sperrliste lädt er von der @code{blocklist-url} herunter." #. type: deftypevr -#: guix-git/doc/guix.texi:24698 +#: guix-git/doc/guix.texi:25060 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string blocklist-url" msgstr "{@code{transmission-daemon-configuration}-Parameter} Vielleicht-Zeichenkette blocklist-url" #. type: deftypevr -#: guix-git/doc/guix.texi:24702 +#: guix-git/doc/guix.texi:25064 msgid "The URL of a peer blocklist (in @acronym{P2P}-plaintext or eMule @file{.dat} format) to be periodically downloaded and applied when @code{blocklist-enabled?} is @code{#t}." msgstr "Die URL zu einer Filterliste zu sperrender Netzwerkteilnehmer (Peers) im P2P-Plaintext-Format oder im eMule-@file{.dat}-Format. Sie wird regelmäßig neu heruntergeladen und angewandt, wenn @code{blocklist-enabled?} auf @code{#t} gesetzt ist." #. type: deftypevr -#: guix-git/doc/guix.texi:24707 +#: guix-git/doc/guix.texi:25069 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean download-queue-enabled?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck download-queue-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24710 +#: guix-git/doc/guix.texi:25072 msgid "If @code{#t}, the daemon will be limited to downloading at most @code{download-queue-size} non-stalled torrents simultaneously." msgstr "Wenn es @code{#t} ist, wird der Daemon höchstens @code{download-queue-size} @emph{nicht} stillstehende Torrents gleichzeitig herunterladen." #. type: deftypevr -#: guix-git/doc/guix.texi:24715 +#: guix-git/doc/guix.texi:25077 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer download-queue-size" msgstr "{@code{transmission-daemon-configuration}-Parameter} Nichtnegative-ganze-Zahl download-queue-size" #. type: deftypevr -#: guix-git/doc/guix.texi:24719 +#: guix-git/doc/guix.texi:25081 msgid "The size of the daemon's download queue, which limits the number of non-stalled torrents it will download at any one time when @code{download-queue-enabled?} is @code{#t}." msgstr "Die Größe der Warteschlange herunterzuladender Torrents. Sie ist die Höchstzahl @emph{nicht} stillstehender Torrents, die gleichzeitig heruntergeladen werden, wenn @code{download-queue-enabled?} auf @code{#t} gesetzt ist." #. type: deftypevr -#: guix-git/doc/guix.texi:24724 +#: guix-git/doc/guix.texi:25086 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean seed-queue-enabled?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck seed-queue-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24727 +#: guix-git/doc/guix.texi:25089 msgid "If @code{#t}, the daemon will be limited to seeding at most @code{seed-queue-size} non-stalled torrents simultaneously." msgstr "Wenn es @code{#t} ist, wird der Daemon höchstens @code{seed-queue-size} @emph{nicht} stillstehende Torrents gleichzeitig verteilen („seeden“)." #. type: deftypevr -#: guix-git/doc/guix.texi:24732 +#: guix-git/doc/guix.texi:25094 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer seed-queue-size" msgstr "{@code{transmission-daemon-configuration}-Parameter} Nichtnegative-ganze-Zahl seed-queue-size" #. type: deftypevr -#: guix-git/doc/guix.texi:24736 +#: guix-git/doc/guix.texi:25098 msgid "The size of the daemon's seed queue, which limits the number of non-stalled torrents it will seed at any one time when @code{seed-queue-enabled?} is @code{#t}." msgstr "Die Größe der Warteschlange zu verteilender Torrents. Sie ist die Höchstzahl @emph{nicht} stillstehender Torrents, die gleichzeitig verteilt werden, wenn @code{seed-queue-enabled?} auf @code{#t} gesetzt ist." #. type: deftypevr -#: guix-git/doc/guix.texi:24741 +#: guix-git/doc/guix.texi:25103 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean queue-stalled-enabled?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck queue-stalled-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24746 +#: guix-git/doc/guix.texi:25108 msgid "When @code{#t}, the daemon will consider torrents for which it has not shared data in the past @code{queue-stalled-minutes} minutes to be stalled and not count them against its @code{download-queue-size} and @code{seed-queue-size} limits." msgstr "Wenn es @code{#t} ist, wird der Daemon solche Torrents als stillstehend erachten, für die er in den letzten @code{queue-stalled-minutes} Minuten @emph{keine} Daten geteilt hat, und diese bei Beachtung der Beschränkungen in @code{download-queue-size} und @code{seed-queue-size} @emph{nicht} berücksichtigen." #. type: deftypevr -#: guix-git/doc/guix.texi:24751 +#: guix-git/doc/guix.texi:25113 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer queue-stalled-minutes" msgstr "{@code{transmission-daemon-configuration}-Parameter} Nichtnegative-ganze-Zahl queue-stalled-minutes" #. type: deftypevr -#: guix-git/doc/guix.texi:24755 +#: guix-git/doc/guix.texi:25117 msgid "The maximum period, in minutes, a torrent may be idle before it is considered to be stalled, when @code{queue-stalled-enabled?} is @code{#t}." msgstr "Für wie viele Minuten ein Torrent höchstens inaktiv sein darf, bevor er als stillstehend gilt, sofern @code{queue-stalled-enabled?} auf @code{#t} steht." #. type: deftypevr -#: guix-git/doc/guix.texi:24760 +#: guix-git/doc/guix.texi:25122 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean ratio-limit-enabled?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck ratio-limit-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24763 +#: guix-git/doc/guix.texi:25125 msgid "When @code{#t}, a torrent being seeded will automatically be paused once it reaches the ratio specified by @code{ratio-limit}." msgstr "Wenn es @code{#t} ist, werden Torrents, die verteilt („geseedet“) werden, automatisch pausiert, sobald das in @code{ratio-limit} festgelegte Verhältnis erreicht ist." #. type: deftypevr -#: guix-git/doc/guix.texi:24768 +#: guix-git/doc/guix.texi:25130 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-rational ratio-limit" msgstr "{@code{transmission-daemon-configuration}-Parameter} Nichtnegative-rationale-Zahl ratio-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:24771 +#: guix-git/doc/guix.texi:25133 msgid "The ratio at which a torrent being seeded will be paused, when @code{ratio-limit-enabled?} is @code{#t}." msgstr "Das Verhältnis, ab dem ein Torrent, der verteilt wird, pausiert wird, wenn @code{ratio-limit-enabled?} auf @code{#t} gesetzt ist." #. type: deftypevr -#: guix-git/doc/guix.texi:24773 +#: guix-git/doc/guix.texi:25135 msgid "Defaults to @samp{2.0}." msgstr "Die Vorgabe ist @samp{2.0}." #. type: deftypevr -#: guix-git/doc/guix.texi:24776 +#: guix-git/doc/guix.texi:25138 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean idle-seeding-limit-enabled?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck idle-seeding-limit-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24779 +#: guix-git/doc/guix.texi:25141 msgid "When @code{#t}, a torrent being seeded will automatically be paused once it has been idle for @code{idle-seeding-limit} minutes." msgstr "Wenn es @code{#t} ist, werden Torrents, die verteilt werden, automatisch pausiert, sobald sie für @code{idle-seeding-limit} Minuten inaktiv waren." #. type: deftypevr -#: guix-git/doc/guix.texi:24784 +#: guix-git/doc/guix.texi:25146 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer idle-seeding-limit" msgstr "{@code{transmission-daemon-configuration}-Parameter} Nichtnegative-ganze-Zahl idle-seeding-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:24788 +#: guix-git/doc/guix.texi:25150 msgid "The maximum period, in minutes, a torrent being seeded may be idle before it is paused, when @code{idle-seeding-limit-enabled?} is @code{#t}." msgstr "Wie viele Minuten ein Torrent, der verteilt wird, höchstens inaktiv sein darf, bevor er pausiert wird, wenn @code{idle-seeding-limit-enabled?} auf @code{#t} gesetzt ist." #. type: deftypevr -#: guix-git/doc/guix.texi:24793 +#: guix-git/doc/guix.texi:25155 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean dht-enabled?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck dht-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24797 +#: guix-git/doc/guix.texi:25159 msgid "Enable @uref{http://bittorrent.org/beps/bep_0005.html,the distributed hash table (@acronym{DHT}) protocol}, which supports the use of trackerless torrents." msgstr "Das @uref{http://bittorrent.org/beps/bep_0005.html,DHT-Protokoll} zum Einsatz einer verteilten Hashtabelle (Distributed Hash Table, DHT) zur Unterstützung trackerloser Torrents aktivieren." #. type: deftypevr -#: guix-git/doc/guix.texi:24802 +#: guix-git/doc/guix.texi:25164 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean lpd-enabled?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck lpd-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24807 +#: guix-git/doc/guix.texi:25169 msgid "Enable @uref{https://en.wikipedia.org/wiki/Local_Peer_Discovery,local peer discovery} (@acronym{LPD}), which allows the discovery of peers on the local network and may reduce the amount of data sent over the public Internet." msgstr "@uref{https://en.wikipedia.org/wiki/Local_Peer_Discovery,Local Peer Discovery} (LPD) aktivieren, d.h.@: Netzwerkteilnehmer im lokalen Netz werden ermittelt, wodurch vielleicht weniger Daten über das öffentliche Internet gesendet werden müssen." #. type: deftypevr -#: guix-git/doc/guix.texi:24812 +#: guix-git/doc/guix.texi:25174 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean pex-enabled?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck pex-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24816 +#: guix-git/doc/guix.texi:25178 msgid "Enable @uref{https://en.wikipedia.org/wiki/Peer_exchange,peer exchange} (@acronym{PEX}), which reduces the daemon's reliance on external trackers and may improve its performance." msgstr "@uref{https://en.wikipedia.org/wiki/Peer_exchange,Peer Exchange} (PEX) aktivieren, wodurch der Daemon weniger von externen Trackern abhängt und vielleicht schneller ist." #. type: deftypevr -#: guix-git/doc/guix.texi:24821 +#: guix-git/doc/guix.texi:25183 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean utp-enabled?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck utp-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24826 +#: guix-git/doc/guix.texi:25188 msgid "Enable @uref{http://bittorrent.org/beps/bep_0029.html,the micro transport protocol} (@acronym{uTP}), which aims to reduce the impact of BitTorrent traffic on other users of the local network while maintaining full utilization of the available bandwidth." msgstr "Das @uref{http://bittorrent.org/beps/bep_0029.html,Mikro-Transport-Protokoll} (uTP) aktivieren, damit BitTorrent-Datenverkehr andere Netzwerknutzungen im lokalen Netzwerk weniger beeinträchtigt, die verfügbare Bandbreite aber möglichst voll ausgeschöpft wird." #. type: deftypevr -#: guix-git/doc/guix.texi:24831 +#: guix-git/doc/guix.texi:25193 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-enabled?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck rpc-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24836 +#: guix-git/doc/guix.texi:25198 msgid "If @code{#t}, enable the remote procedure call (@acronym{RPC}) interface, which allows remote control of the daemon via its Web interface, the @command{transmission-remote} command-line client, and similar tools." msgstr "Wenn es @code{#t} ist, wird die Fernsteuerung des Daemons über die Schnittstelle entfernter Prozeduraufrufe (Remote Procedure Call, RPC) zugelassen. Dadurch kann man ihn über seine Weboberfläche, über den Befehlszeilen-Client @command{transmission-remote} oder über ähnliche Werkzeuge steuern." #. type: deftypevr -#: guix-git/doc/guix.texi:24841 +#: guix-git/doc/guix.texi:25203 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string rpc-bind-address" msgstr "{@code{transmission-daemon-configuration}-Parameter} Zeichenkette rpc-bind-address" #. type: deftypevr -#: guix-git/doc/guix.texi:24844 +#: guix-git/doc/guix.texi:25206 msgid "The IP address at which to listen for @acronym{RPC} connections, or ``0.0.0.0'' to listen at all available IP addresses." msgstr "Auf welcher IP-Adresse auf RPC-Verbindungen gelauscht wird. Benutzen Sie „@code{0.0.0.0}“, wenn auf allen verfügbaren IP-Adressen gelauscht werden soll." #. type: deftypevr -#: guix-git/doc/guix.texi:24849 +#: guix-git/doc/guix.texi:25211 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number rpc-port" msgstr "{@code{transmission-daemon-configuration}-Parameter} Portnummer rpc-port" #. type: deftypevr -#: guix-git/doc/guix.texi:24851 +#: guix-git/doc/guix.texi:25213 msgid "The port on which to listen for @acronym{RPC} connections." msgstr "Auf welchem Port auf RPC-Verbindungen gelauscht werden soll." #. type: deftypevr -#: guix-git/doc/guix.texi:24853 +#: guix-git/doc/guix.texi:25215 msgid "Defaults to @samp{9091}." msgstr "Die Vorgabe ist @samp{9091}." #. type: deftypevr -#: guix-git/doc/guix.texi:24856 +#: guix-git/doc/guix.texi:25218 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string rpc-url" msgstr "{@code{transmission-daemon-configuration}-Parameter} Zeichenkette rpc-url" #. type: deftypevr -#: guix-git/doc/guix.texi:24858 +#: guix-git/doc/guix.texi:25220 msgid "The path prefix to use in the @acronym{RPC}-endpoint @acronym{URL}." msgstr "Das Präfix für die Pfade in den URLs des RPC-Endpunkts." #. type: deftypevr -#: guix-git/doc/guix.texi:24860 +#: guix-git/doc/guix.texi:25222 msgid "Defaults to @samp{\"/transmission/\"}." msgstr "Die Vorgabe ist @samp{\"/transmission/\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:24863 +#: guix-git/doc/guix.texi:25225 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-authentication-required?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck rpc-authentication-required?" #. type: deftypevr -#: guix-git/doc/guix.texi:24868 +#: guix-git/doc/guix.texi:25230 msgid "When @code{#t}, clients must authenticate (see @code{rpc-username} and @code{rpc-password}) when using the @acronym{RPC} interface. Note this has the side effect of disabling host-name whitelisting (see @code{rpc-host-whitelist-enabled?}." msgstr "Wenn es @code{#t} ist, müssen sich Clients bei der RPC-Schnittstelle authentifizieren (siehe @code{rpc-username} und @code{rpc-password}). Anzumerken ist, dass dann die Liste erlaubter Rechnernamen ignoriert wird (siehe @code{rpc-host-whitelist-enabled?}." #. type: deftypevr -#: guix-git/doc/guix.texi:24873 +#: guix-git/doc/guix.texi:25235 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string rpc-username" msgstr "{@code{transmission-daemon-configuration}-Parameter} Vielleicht-Zeichenkette rpc-username" #. type: deftypevr -#: guix-git/doc/guix.texi:24876 +#: guix-git/doc/guix.texi:25238 msgid "The username required by clients to access the @acronym{RPC} interface when @code{rpc-authentication-required?} is @code{#t}." msgstr "Welchen Benutzernamen Clients verwenden müssen, um über die RPC-Schnittstelle zugreifen zu dürfen, wenn @code{rpc-authentication-required?} auf @code{#t} gesetzt ist." #. type: deftypevr -#: guix-git/doc/guix.texi:24881 +#: guix-git/doc/guix.texi:25243 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-transmission-password-hash rpc-password" msgstr "{@code{transmission-daemon-configuration}-Parameter} Vielleicht-Transmissionpasswort-Hash rpc-password" #. type: deftypevr -#: guix-git/doc/guix.texi:24887 +#: guix-git/doc/guix.texi:25249 msgid "The password required by clients to access the @acronym{RPC} interface when @code{rpc-authentication-required?} is @code{#t}. This must be specified using a password hash in the format recognized by Transmission clients, either copied from an existing @file{settings.json} file or generated using the @code{transmission-password-hash} procedure." msgstr "Welches Passwort Clients brauchen, um über die RPC-Schnittstelle zugreifen zu dürfen, wenn @code{rpc-authentication-required?} auf @code{#t} gesetzt ist. Es muss als Passwort-Hash im von Transmission-Clients erkannten Format angegeben werden. Kopieren Sie es entweder aus einer bestehenden @file{settings.json}-Datei oder lassen Sie es mit der Prozedur @code{transmission-password-hash} erzeugen." #. type: deftypevr -#: guix-git/doc/guix.texi:24892 +#: guix-git/doc/guix.texi:25254 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-whitelist-enabled?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck rpc-whitelist-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24895 +#: guix-git/doc/guix.texi:25257 msgid "When @code{#t}, @acronym{RPC} requests will be accepted only when they originate from an address specified in @code{rpc-whitelist}." msgstr "Wenn es @code{#t} ist, werden RPC-Anfragen nur dann akzeptiert, wenn sie von einer in @code{rpc-whitelist} angegebenen Adresse kommen." #. type: deftypevr -#: guix-git/doc/guix.texi:24900 +#: guix-git/doc/guix.texi:25262 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string-list rpc-whitelist" msgstr "{@code{transmission-daemon-configuration}-Parameter} Zeichenketten-Liste rpc-whitelist" #. type: deftypevr -#: guix-git/doc/guix.texi:24904 +#: guix-git/doc/guix.texi:25266 msgid "The list of IP and IPv6 addresses from which @acronym{RPC} requests will be accepted when @code{rpc-whitelist-enabled?} is @code{#t}. Wildcards may be specified using @samp{*}." msgstr "Die Liste der IP- und IPv6-Adressen, von denen RPC-Anfragen angenommen werden, wenn @code{rpc-whitelist-enabled?} auf @code{#t} gesetzt ist. Hierbei kann @samp{*} als Platzhalter verwendet werden." #. type: deftypevr -#: guix-git/doc/guix.texi:24906 +#: guix-git/doc/guix.texi:25268 msgid "Defaults to @samp{(\"127.0.0.1\" \"::1\")}." msgstr "Die Vorgabe ist @samp{(\"127.0.0.1\" \"::1\")}." #. type: deftypevr -#: guix-git/doc/guix.texi:24909 +#: guix-git/doc/guix.texi:25271 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-host-whitelist-enabled?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck rpc-host-whitelist-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24914 +#: guix-git/doc/guix.texi:25276 msgid "When @code{#t}, @acronym{RPC} requests will be accepted only when they are addressed to a host named in @code{rpc-host-whitelist}. Note that requests to ``localhost'' or ``localhost.'', or to a numeric address, are always accepted regardless of these settings." msgstr "Wenn es @code{#t} ist, werden RPC-Anfragen nur dann angenommen, wenn sie an einen Rechnernamen aus der Liste @code{rpc-host-whitelist} adressiert sind. Allerdings werden Anfragen an „localhost“ oder „localhost.“ oder eine numerische Adresse immer angenommen, egal was hier eingestellt ist." #. type: deftypevr -#: guix-git/doc/guix.texi:24917 +#: guix-git/doc/guix.texi:25279 msgid "Note also this functionality is disabled when @code{rpc-authentication-required?} is @code{#t}." msgstr "Anzumerken ist, dass diese Funktionalität ignoriert wird, wenn @code{rpc-authentication-required?} auf @code{#t} gesetzt ist." #. type: deftypevr -#: guix-git/doc/guix.texi:24922 +#: guix-git/doc/guix.texi:25284 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string-list rpc-host-whitelist" msgstr "{@code{transmission-daemon-configuration}-Parameter} Zeichenketten-Liste rpc-host-whitelist" #. type: deftypevr -#: guix-git/doc/guix.texi:24925 +#: guix-git/doc/guix.texi:25287 msgid "The list of host names recognized by the @acronym{RPC} server when @code{rpc-host-whitelist-enabled?} is @code{#t}." msgstr "Die Liste der Rechnernamen, auf die der RPC-Server reagiert, wenn @code{rpc-host-whitelist-enabled?} auf @code{#t} gesetzt ist." #. type: deftypevr -#: guix-git/doc/guix.texi:24930 +#: guix-git/doc/guix.texi:25292 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} message-level message-level" msgstr "{@code{transmission-daemon-configuration}-Parameter} Meldungsstufe message-level" #. type: deftypevr -#: guix-git/doc/guix.texi:24934 +#: guix-git/doc/guix.texi:25296 msgid "The minimum severity level of messages to be logged (to @file{/var/log/transmission.log}) by the daemon, one of @code{none} (no logging), @code{error}, @code{info} and @code{debug}." msgstr "Ab welcher Schwerestufe der Daemon Meldungen ins Protokoll (in @file{/var/log/transmission.log}) aufnimmt, entweder @code{none} (gar nicht), @code{error} (nur Fehler), @code{info} oder @code{debug}." #. type: deftypevr -#: guix-git/doc/guix.texi:24939 +#: guix-git/doc/guix.texi:25301 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean start-added-torrents?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck start-added-torrents?" #. type: deftypevr -#: guix-git/doc/guix.texi:24942 +#: guix-git/doc/guix.texi:25304 msgid "When @code{#t}, torrents are started as soon as they are added; otherwise, they are added in ``paused'' state." msgstr "Wenn es @code{#t} ist, werden Torrents gestartet, sobald sie hinzugefügt wurden, ansonsten sind sie nach dem Hinzufügen im pausierten Zustand." #. type: deftypevr -#: guix-git/doc/guix.texi:24947 +#: guix-git/doc/guix.texi:25309 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean script-torrent-done-enabled?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck script-torrent-done-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24951 +#: guix-git/doc/guix.texi:25313 msgid "When @code{#t}, the script specified by @code{script-torrent-done-filename} will be invoked each time a torrent completes." msgstr "Wenn es @code{#t} ist, wird immer dann, wenn ein Torrent abgeschlossen wurde, das durch @code{script-torrent-done-filename} angegebene Skript aufgerufen." #. type: deftypevr -#: guix-git/doc/guix.texi:24956 +#: guix-git/doc/guix.texi:25318 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-file-object script-torrent-done-filename" msgstr "{@code{transmission-daemon-configuration}-Parameter} Vielleicht-Dateiobjekt script-torrent-done-filename" #. type: deftypevr -#: guix-git/doc/guix.texi:24960 +#: guix-git/doc/guix.texi:25322 msgid "A file name or file-like object specifying a script to run each time a torrent completes, when @code{script-torrent-done-enabled?} is @code{#t}." msgstr "Ein Dateiname oder ein dateiartiges Objekt eines Skripts, das nach Abschluss eines Torrents aufgerufen werden soll, wenn @code{script-torrent-done-enabled?} auf @code{#t} gesetzt ist." #. type: deftypevr -#: guix-git/doc/guix.texi:24965 +#: guix-git/doc/guix.texi:25327 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean scrape-paused-torrents-enabled?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck scrape-paused-torrents-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24968 +#: guix-git/doc/guix.texi:25330 msgid "When @code{#t}, the daemon will scrape trackers for a torrent even when the torrent is paused." msgstr "Wenn es @code{#t} ist, wird der Daemon selbst dann auf Trackern nach einem Torrent suchen, wenn der Torrent pausiert ist." #. type: deftypevr -#: guix-git/doc/guix.texi:24973 +#: guix-git/doc/guix.texi:25335 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer cache-size-mb" msgstr "{@code{transmission-daemon-configuration}-Parameter} Nichtnegative-ganze-Zahl cache-size-mb" #. type: deftypevr -#: guix-git/doc/guix.texi:24977 +#: guix-git/doc/guix.texi:25339 msgid "The amount of memory, in megabytes, to allocate for the daemon's in-memory cache. A larger value may increase performance by reducing the frequency of disk I/O." msgstr "Wie viele Megabyte Speicher für den im Arbeitsspeicher liegenden Zwischenspeicher des Daemons reserviert werden sollen. Ein größerer Wert kann eine höhere Leistung bedeuten, indem weniger oft auf die Platte zugegriffen werden muss." #. type: deftypevr -#: guix-git/doc/guix.texi:24979 +#: guix-git/doc/guix.texi:25341 msgid "Defaults to @samp{4}." msgstr "Die Vorgabe ist @samp{4}." #. type: deftypevr -#: guix-git/doc/guix.texi:24982 +#: guix-git/doc/guix.texi:25344 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean prefetch-enabled?" msgstr "{@code{transmission-daemon-configuration}-Parameter} Boolescher-Ausdruck prefetch-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24986 +#: guix-git/doc/guix.texi:25348 msgid "When @code{#t}, the daemon will try to improve I/O performance by hinting to the operating system which data is likely to be read next from disk to satisfy requests from peers." msgstr "Wenn es @code{#t} ist, wird der Daemon versuchen, die Ein-/Ausgabeleistung zu verbessern, indem er dem Betriebssystem Hinweise gibt, auf welche Daten er wahrscheinlich als Nächstes zugreift, um den Anfragen anderer Netzwerkteilnehmer nachzukommen." #. type: subsubheading -#: guix-git/doc/guix.texi:24999 +#: guix-git/doc/guix.texi:25361 #, no-wrap msgid "Tailon Service" msgstr "Tailon-Dienst" #. type: Plain text -#: guix-git/doc/guix.texi:25003 +#: guix-git/doc/guix.texi:25365 msgid "@uref{https://tailon.readthedocs.io/, Tailon} is a web application for viewing and searching log files." msgstr "@uref{https://tailon.readthedocs.io/, Tailon} ist eine Web-Anwendung, um Protokolldateien zu betrachten und zu durchsuchen." #. type: Plain text -#: guix-git/doc/guix.texi:25006 +#: guix-git/doc/guix.texi:25368 msgid "The following example will configure the service with default values. By default, Tailon can be accessed on port 8080 (@code{http://localhost:8080})." msgstr "Das folgende Beispiel zeigt, wie Sie den Dienst mit den Vorgabewerten konfigurieren. Nach Vorgabe kann auf Tailon auf Port 8080 zugegriffen werden (@code{http://localhost:8080})." #. type: lisp -#: guix-git/doc/guix.texi:25009 +#: guix-git/doc/guix.texi:25371 #, no-wrap msgid "(service tailon-service-type)\n" msgstr "(service tailon-service-type)\n" #. type: Plain text -#: guix-git/doc/guix.texi:25013 +#: guix-git/doc/guix.texi:25375 msgid "The following example customises more of the Tailon configuration, adding @command{sed} to the list of allowed commands." msgstr "Im folgenden Beispiel werden mehr Anpassungen an der Tailon-Konfiguration vorgenommen: @command{sed} gehört dort auch zur Liste der erlaubten Befehle dazu." #. type: lisp -#: guix-git/doc/guix.texi:25020 +#: guix-git/doc/guix.texi:25382 #, no-wrap msgid "" "(service tailon-service-type\n" @@ -46677,34 +47337,34 @@ msgstr "" " (allowed-commands '(\"tail\" \"grep\" \"awk\" \"sed\"))))))\n" #. type: deftp -#: guix-git/doc/guix.texi:25023 +#: guix-git/doc/guix.texi:25385 #, no-wrap msgid "{Data Type} tailon-configuration" msgstr "{Datentyp} tailon-configuration" #. type: deftp -#: guix-git/doc/guix.texi:25026 +#: guix-git/doc/guix.texi:25388 msgid "Data type representing the configuration of Tailon. This type has the following parameters:" msgstr "Der Datentyp, der die Konfiguration von Tailon repräsentiert. Dieser Typ verfügt über die folgenden Parameter:" #. type: item -#: guix-git/doc/guix.texi:25028 +#: guix-git/doc/guix.texi:25390 #, no-wrap msgid "@code{config-file} (default: @code{(tailon-configuration-file)})" msgstr "@code{config-file} (Vorgabe: @code{(tailon-configuration-file)})" #. type: table -#: guix-git/doc/guix.texi:25032 +#: guix-git/doc/guix.texi:25394 msgid "The configuration file to use for Tailon. This can be set to a @dfn{tailon-configuration-file} record value, or any gexp (@pxref{G-Expressions})." msgstr "Die Konfigurationsdatei, die für Tailon benutzt werden soll. Als Wert kann ein @dfn{tailon-configuration-file}-Verbundsobjekt oder ein beliebiger G-Ausdruck dienen (siehe @ref{G-Expressions})." #. type: table -#: guix-git/doc/guix.texi:25035 +#: guix-git/doc/guix.texi:25397 msgid "For example, to instead use a local file, the @code{local-file} function can be used:" msgstr "Um zum Beispiel stattdessen eine lokale Datei zu benutzen, kann von der Funktion @code{local-file} Gebrauch gemacht werden." #. type: lisp -#: guix-git/doc/guix.texi:25040 +#: guix-git/doc/guix.texi:25402 #, no-wrap msgid "" "(service tailon-service-type\n" @@ -46716,144 +47376,144 @@ msgstr "" " (config-file (local-file \"./my-tailon.conf\"))))\n" #. type: item -#: guix-git/doc/guix.texi:25042 +#: guix-git/doc/guix.texi:25404 #, no-wrap msgid "@code{package} (default: @code{tailon})" msgstr "@code{package} (Vorgabe: @code{tailon})" #. type: table -#: guix-git/doc/guix.texi:25044 +#: guix-git/doc/guix.texi:25406 msgid "The tailon package to use." msgstr "Das tailon-Paket, das benutzt werden soll." #. type: deftp -#: guix-git/doc/guix.texi:25048 +#: guix-git/doc/guix.texi:25410 #, no-wrap msgid "{Data Type} tailon-configuration-file" msgstr "{Datentyp} tailon-configuration-file" #. type: deftp -#: guix-git/doc/guix.texi:25051 +#: guix-git/doc/guix.texi:25413 msgid "Data type representing the configuration options for Tailon. This type has the following parameters:" msgstr "Datentyp, der die Konfigurationsoptionen für Tailon repräsentiert. Dieser Typ verfügt über die folgenden Parameter:" #. type: item -#: guix-git/doc/guix.texi:25053 +#: guix-git/doc/guix.texi:25415 #, no-wrap msgid "@code{files} (default: @code{(list \"/var/log\")})" msgstr "@code{files} (Vorgabe: @code{(list \"/var/log\")})" #. type: table -#: guix-git/doc/guix.texi:25058 +#: guix-git/doc/guix.texi:25420 msgid "List of files to display. The list can include strings for a single file or directory, or a list, where the first item is the name of a subsection, and the remaining items are the files or directories in that subsection." msgstr "Die Liste der anzuzeigenden Dateien. In der Liste dürfen Zeichenketten stehen, die jeweils für eine einzelne Datei oder ein Verzeichnis stehen, oder auch Listen, deren erstes Element den Namen eines Unterbereichs angibt und deren übrige Elemente die Dateien oder Verzeichnisse in diesem Unterbereich benennen." #. type: item -#: guix-git/doc/guix.texi:25059 +#: guix-git/doc/guix.texi:25421 #, no-wrap msgid "@code{bind} (default: @code{\"localhost:8080\"})" msgstr "@code{bind} (Vorgabe: @code{\"localhost:8080\"})" #. type: table -#: guix-git/doc/guix.texi:25061 +#: guix-git/doc/guix.texi:25423 msgid "Address and port to which Tailon should bind on." msgstr "Adresse und Port, an die sich Tailon binden soll." #. type: item -#: guix-git/doc/guix.texi:25062 +#: guix-git/doc/guix.texi:25424 #, no-wrap msgid "@code{relative-root} (default: @code{#f})" msgstr "@code{relative-root} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:25064 +#: guix-git/doc/guix.texi:25426 msgid "URL path to use for Tailon, set to @code{#f} to not use a path." msgstr "Welcher URL-Pfad für Tailon benutzt werden soll. Wenn Sie hierfür @code{#f} angeben, wird kein Pfad benutzt." #. type: item -#: guix-git/doc/guix.texi:25065 +#: guix-git/doc/guix.texi:25427 #, no-wrap msgid "@code{allow-transfers?} (default: @code{#t})" msgstr "@code{allow-transfers?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:25067 +#: guix-git/doc/guix.texi:25429 msgid "Allow downloading the log files in the web interface." msgstr "Ob es möglich sein soll, die Protokolldateien über die Weboberfläche herunterzuladen." #. type: item -#: guix-git/doc/guix.texi:25068 +#: guix-git/doc/guix.texi:25430 #, no-wrap msgid "@code{follow-names?} (default: @code{#t})" msgstr "@code{follow-names?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:25070 +#: guix-git/doc/guix.texi:25432 msgid "Allow tailing of not-yet existent files." msgstr "Ob noch nicht existierende Dateien „getailt“ werden können." #. type: item -#: guix-git/doc/guix.texi:25071 +#: guix-git/doc/guix.texi:25433 #, no-wrap msgid "@code{tail-lines} (default: @code{200})" msgstr "@code{tail-lines} (Vorgabe: @code{200})" #. type: table -#: guix-git/doc/guix.texi:25073 +#: guix-git/doc/guix.texi:25435 msgid "Number of lines to read initially from each file." msgstr "Wie viele Zeilen am Anfang aus jeder Datei gelesen werden." #. type: item -#: guix-git/doc/guix.texi:25074 +#: guix-git/doc/guix.texi:25436 #, no-wrap msgid "@code{allowed-commands} (default: @code{(list \"tail\" \"grep\" \"awk\")})" msgstr "@code{allowed-commands} (Vorgabe: @code{(list \"tail\" \"grep\" \"awk\")})" #. type: table -#: guix-git/doc/guix.texi:25076 +#: guix-git/doc/guix.texi:25438 msgid "Commands to allow running. By default, @code{sed} is disabled." msgstr "Welche Befehle ausgeführt werden dürfen. Nach Vorgabe wird @code{sed} @emph{nicht} erlaubt." #. type: table -#: guix-git/doc/guix.texi:25079 +#: guix-git/doc/guix.texi:25441 msgid "Set @code{debug?} to @code{#t} to show debug messages." msgstr "Legen Sie @code{debug?} als @code{#t} fest, um Nachrichten zur Fehlersuche anzuzeigen." #. type: item -#: guix-git/doc/guix.texi:25080 +#: guix-git/doc/guix.texi:25442 #, no-wrap msgid "@code{wrap-lines} (default: @code{#t})" msgstr "@code{wrap-lines} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:25084 +#: guix-git/doc/guix.texi:25446 msgid "Initial line wrapping state in the web interface. Set to @code{#t} to initially wrap lines (the default), or to @code{#f} to initially not wrap lines." msgstr "Ob lange Zeilen nach der Anfangseinstellung in der Weboberfläche umgebrochen werden sollen. Setzen Sie es auf @code{#t}, werden Zeilen in der Anfangseinstellung umgebrochen (die Vorgabe), bei @code{#f} werden sie anfänglich nicht umgebrochen." #. type: item -#: guix-git/doc/guix.texi:25085 +#: guix-git/doc/guix.texi:25447 #, no-wrap msgid "@code{http-auth} (default: @code{#f})" msgstr "@code{http-auth} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:25089 +#: guix-git/doc/guix.texi:25451 msgid "HTTP authentication type to use. Set to @code{#f} to disable authentication (the default). Supported values are @code{\"digest\"} or @code{\"basic\"}." msgstr "Welcher HTTP-Authentifizierungstyp benutzt werden soll. Setzen Sie dies auf @code{#f}, damit sich Benutzer nicht authentisieren müssen (die Vorgabe). Unterstützte Werte sind @code{\"digest\"} oder @code{\"basic\"}." #. type: item -#: guix-git/doc/guix.texi:25090 +#: guix-git/doc/guix.texi:25452 #, no-wrap msgid "@code{users} (default: @code{#f})" msgstr "@code{users} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:25095 +#: guix-git/doc/guix.texi:25457 msgid "If HTTP authentication is enabled (see @code{http-auth}), access will be restricted to the credentials provided here. To configure users, use a list of pairs, where the first element of the pair is the username, and the 2nd element of the pair is the password." msgstr "Wenn HTTP-Authentifizierung aktiviert ist (siehe @code{http-auth}), wird der Zugriff nur gewährt, nachdem die hier angegebenen Zugangsinformationen eingegeben wurden. Um Nutzer hinzuzufügen, geben Sie hier eine Liste von Paaren an, deren erstes Element jeweils der Benutzername und deren zweites Element das Passwort ist." #. type: lisp -#: guix-git/doc/guix.texi:25101 +#: guix-git/doc/guix.texi:25463 #, no-wrap msgid "" "(tailon-configuration-file\n" @@ -46867,35 +47527,35 @@ msgstr "" " (\"benutzer2\" . \"passwort2\"))))\n" #. type: subsubheading -#: guix-git/doc/guix.texi:25107 +#: guix-git/doc/guix.texi:25469 #, no-wrap msgid "Darkstat Service" msgstr "Darkstat-Dienst" #. type: cindex -#: guix-git/doc/guix.texi:25108 +#: guix-git/doc/guix.texi:25470 #, no-wrap msgid "darkstat" msgstr "darkstat" #. type: Plain text -#: guix-git/doc/guix.texi:25111 +#: guix-git/doc/guix.texi:25473 msgid "Darkstat is a packet sniffer that captures network traffic, calculates statistics about usage, and serves reports over HTTP." msgstr "Darkstat ist ein Netzwerkanalyseprogramm, das Pakete im Datenverkehr aufzeichnet, Statistiken zur Netzwerknutzung berechnet und über HTTP Berichte dazu bereitstellt." #. type: defvar -#: guix-git/doc/guix.texi:25112 +#: guix-git/doc/guix.texi:25474 #, no-wrap msgid "{Scheme Variable} darkstat-service-type" msgstr "{Scheme-Variable} darkstat-service-type" #. type: defvar -#: guix-git/doc/guix.texi:25117 +#: guix-git/doc/guix.texi:25479 msgid "This is the service type for the @uref{https://unix4lyfe.org/darkstat/, darkstat} service, its value must be a @code{darkstat-configuration} record as in this example:" msgstr "Dies ist der Diensttyp für den @uref{https://unix4lyfe.org/darkstat/, darkstat-Dienst}. Sein Wert muss ein @code{darkstat-configuration}-Verbundsobjekt sein, wie in diesem Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:25122 +#: guix-git/doc/guix.texi:25484 #, no-wrap msgid "" "(service darkstat-service-type\n" @@ -46907,715 +47567,740 @@ msgstr "" " (interface \"eno1\")))\n" #. type: deftp -#: guix-git/doc/guix.texi:25125 +#: guix-git/doc/guix.texi:25487 #, no-wrap msgid "{Data Type} darkstat-configuration" msgstr "{Datentyp} darkstat-configuration" #. type: deftp -#: guix-git/doc/guix.texi:25127 +#: guix-git/doc/guix.texi:25489 msgid "Data type representing the configuration of @command{darkstat}." msgstr "Datentyp, der die Konfiguration von @command{darkstat} repräsentiert." #. type: item -#: guix-git/doc/guix.texi:25129 +#: guix-git/doc/guix.texi:25491 #, no-wrap msgid "@code{package} (default: @code{darkstat})" msgstr "@code{package} (Vorgabe: @code{darkstat})" #. type: table -#: guix-git/doc/guix.texi:25131 +#: guix-git/doc/guix.texi:25493 msgid "The darkstat package to use." msgstr "Welches darkstat-Paket verwendet werden soll." #. type: code{#1} -#: guix-git/doc/guix.texi:25132 +#: guix-git/doc/guix.texi:25494 #, no-wrap msgid "interface" msgstr "interface" #. type: table -#: guix-git/doc/guix.texi:25134 +#: guix-git/doc/guix.texi:25496 msgid "Capture traffic on the specified network interface." msgstr "Datenverkehr an der angegebenen Netzwerkschnittstelle mitschneiden." #. type: item -#: guix-git/doc/guix.texi:25135 +#: guix-git/doc/guix.texi:25497 #, no-wrap msgid "@code{port} (default: @code{\"667\"})" msgstr "@code{port} (Vorgabe: @code{\"667\"})" #. type: table -#: guix-git/doc/guix.texi:25137 +#: guix-git/doc/guix.texi:25499 msgid "Bind the web interface to the specified port." msgstr "Bindet die Weboberfläche an den angegebenen Port." #. type: table -#: guix-git/doc/guix.texi:25140 guix-git/doc/guix.texi:25175 +#: guix-git/doc/guix.texi:25502 guix-git/doc/guix.texi:25537 msgid "Bind the web interface to the specified address." msgstr "Bindet die Weboberfläche an die angegebene Adresse." #. type: item -#: guix-git/doc/guix.texi:25141 +#: guix-git/doc/guix.texi:25503 #, no-wrap msgid "@code{base} (default: @code{\"/\"})" msgstr "@code{base} (Vorgabe: @code{\"/\"})" #. type: table -#: guix-git/doc/guix.texi:25144 +#: guix-git/doc/guix.texi:25506 msgid "Specify the path of the base URL@. This can be useful if @command{darkstat} is accessed via a reverse proxy." msgstr "Geben Sie den Pfad der Basis-URL an. Das kann nützlich sein, wenn auf @command{darkstat} über einen inversen Proxy („Reverse Proxy“) zugegriffen wird." #. type: subsubheading -#: guix-git/doc/guix.texi:25148 +#: guix-git/doc/guix.texi:25510 #, no-wrap msgid "Prometheus Node Exporter Service" msgstr "Prometheus-Node-Exporter-Dienst" #. type: cindex -#: guix-git/doc/guix.texi:25150 +#: guix-git/doc/guix.texi:25512 #, no-wrap msgid "prometheus-node-exporter" msgstr "prometheus-node-exporter" #. type: Plain text -#: guix-git/doc/guix.texi:25155 +#: guix-git/doc/guix.texi:25517 msgid "The Prometheus ``node exporter'' makes hardware and operating system statistics provided by the Linux kernel available for the Prometheus monitoring system. This service should be deployed on all physical nodes and virtual machines, where monitoring these statistics is desirable." msgstr "Der Prometheus-„Node-Exporter“ stellt Statistiken über Hardware und Betriebssystem für das Prometheus-Systemüberwachungssystem bereit, die vom Linux-Kernel geliefert werden. Dieser Dienst sollte auf allen physischen Netzwerkknoten und virtuellen Maschinen installiert werden, für die eine Überwachung ihrer Statistiken gewünscht wird." #. type: defvar -#: guix-git/doc/guix.texi:25156 +#: guix-git/doc/guix.texi:25518 #, no-wrap msgid "{Scheme variable} prometheus-node-exporter-service-type" msgstr "{Scheme-Variable} prometheus-node-exporter-service-type" #. type: defvar -#: guix-git/doc/guix.texi:25160 +#: guix-git/doc/guix.texi:25522 msgid "This is the service type for the @uref{https://github.com/prometheus/node_exporter/, prometheus-node-exporter} service, its value must be a @code{prometheus-node-exporter-configuration}." msgstr "Dies ist der Diensttyp für den @uref{https://github.com/prometheus/node_exporter/, „prometheus-node-exporter“-Dienst}. Sein Wert muss ein @code{prometheus-node-exporter-configuration}-Verbundsobjekt sein." #. type: lisp -#: guix-git/doc/guix.texi:25163 +#: guix-git/doc/guix.texi:25525 #, no-wrap msgid "(service prometheus-node-exporter-service-type)\n" msgstr "(service prometheus-node-exporter-service-type)\n" #. type: deftp -#: guix-git/doc/guix.texi:25166 +#: guix-git/doc/guix.texi:25528 #, no-wrap msgid "{Data Type} prometheus-node-exporter-configuration" msgstr "{Datentyp} prometheus-node-exporter-configuration" #. type: deftp -#: guix-git/doc/guix.texi:25168 +#: guix-git/doc/guix.texi:25530 msgid "Data type representing the configuration of @command{node_exporter}." msgstr "Repräsentiert die Konfiguration von @command{node_exporter}." #. type: item -#: guix-git/doc/guix.texi:25170 +#: guix-git/doc/guix.texi:25532 #, no-wrap msgid "@code{package} (default: @code{go-github-com-prometheus-node-exporter})" msgstr "@code{package} (Vorgabe: @code{go-github-com-prometheus-node-exporter})" #. type: table -#: guix-git/doc/guix.texi:25172 +#: guix-git/doc/guix.texi:25534 msgid "The prometheus-node-exporter package to use." msgstr "Das Paket für den prometheus-node-exporter, was benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:25173 +#: guix-git/doc/guix.texi:25535 #, no-wrap msgid "@code{web-listen-address} (default: @code{\":9100\"})" msgstr "@code{web-listen-address} (Vorgabe: @code{\":9100\"})" #. type: item -#: guix-git/doc/guix.texi:25176 +#: guix-git/doc/guix.texi:25538 #, no-wrap msgid "@code{textfile-directory} (default: @code{\"/var/lib/prometheus/node-exporter\"})" msgstr "@code{textfile-directory} (Vorgabe: @code{\"/var/lib/prometheus/node-exporter\"})" #. type: table -#: guix-git/doc/guix.texi:25180 +#: guix-git/doc/guix.texi:25542 msgid "This directory can be used to export metrics specific to this machine. Files containing metrics in the text format, with the filename ending in @code{.prom} should be placed in this directory." msgstr "In dieses Verzeichnis können maschinenspezifische Metriken exportiert werden. Hier hinein sollten Dateien mit Metriken im Textformat platziert werden, die die Dateiendung @code{.prom} haben." #. type: table -#: guix-git/doc/guix.texi:25183 +#: guix-git/doc/guix.texi:25545 msgid "Extra options to pass to the Prometheus node exporter." msgstr "Zusätzliche Befehlszeilenoptionen, die an den prometheus-node-exporter übergeben werden sollen." #. type: subsubheading -#: guix-git/doc/guix.texi:25187 +#: guix-git/doc/guix.texi:25549 #, no-wrap msgid "Zabbix server" msgstr "Zabbix-Server" #. type: cindex -#: guix-git/doc/guix.texi:25188 +#: guix-git/doc/guix.texi:25550 #, no-wrap msgid "zabbix zabbix-server" msgstr "Zabbix, Zabbix-Server" #. type: Plain text -#: guix-git/doc/guix.texi:25191 +#: guix-git/doc/guix.texi:25553 msgid "Zabbix provides monitoring metrics, among others network utilization, CPU load and disk space consumption:" msgstr "Zabbix stellt Metriken zur Systemüberwachung zur Verfügung, unter anderem die Netzwerk- und Prozessorauslastung sowie den Plattenplatzverbrauch, und bietet dabei:" #. type: item -#: guix-git/doc/guix.texi:25193 +#: guix-git/doc/guix.texi:25555 #, no-wrap msgid "High performance, high capacity (able to monitor hundreds of thousands of devices)." msgstr "Hohe Leistungsfähigkeit und hohe Kapazität (hunderttausende Geräte können überwacht werden)." #. type: item -#: guix-git/doc/guix.texi:25194 +#: guix-git/doc/guix.texi:25556 #, no-wrap msgid "Auto-discovery of servers and network devices and interfaces." msgstr "Automatische Erkennung von Servern, Netzwerkgeräten und -schnittstellen." #. type: item -#: guix-git/doc/guix.texi:25195 +#: guix-git/doc/guix.texi:25557 #, no-wrap msgid "Low-level discovery, allows to automatically start monitoring new items, file systems or network interfaces among others." msgstr "Systemnahe Erkennung, wodurch automatisch mit der Überwachung neuer Objekte, Dateisysteme, Netzwerkschnittstellen und anderer Dinge begonnen werden kann." #. type: item -#: guix-git/doc/guix.texi:25196 +#: guix-git/doc/guix.texi:25558 #, no-wrap msgid "Distributed monitoring with centralized web administration." msgstr "Verteilte Überwachung mit zentralisierter Web-Administrierbarkeit." #. type: item -#: guix-git/doc/guix.texi:25197 +#: guix-git/doc/guix.texi:25559 #, no-wrap msgid "Native high performance agents." msgstr "Native Hochleistungsagenten." #. type: item -#: guix-git/doc/guix.texi:25198 +#: guix-git/doc/guix.texi:25560 #, no-wrap msgid "SLA, and ITIL KPI metrics on reporting." msgstr "Berichte zum SLA und über ITIL-KPI-Metriken." #. type: item -#: guix-git/doc/guix.texi:25199 +#: guix-git/doc/guix.texi:25561 #, no-wrap msgid "High-level (business) view of monitored resources through user-defined visual console screens and dashboards." msgstr "Überblickssicht (geschäftlich) auf die überwachten Ressourcen über benutzerdefinierte visuelle Konsolenbildschirme und Dashboards." #. type: item -#: guix-git/doc/guix.texi:25200 +#: guix-git/doc/guix.texi:25562 #, no-wrap msgid "Remote command execution through Zabbix proxies." msgstr "Entfernte Befehlsausführung über Zabbix-Proxys." #. type: Plain text -#: guix-git/doc/guix.texi:25206 +#: guix-git/doc/guix.texi:25568 msgid "Available @code{zabbix-server-configuration} fields are:" msgstr "Verfügbare @code{zabbix-server-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:25207 +#: guix-git/doc/guix.texi:25569 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} package zabbix-server" msgstr "{@code{zabbix-server-configuration}-Parameter} „package“ zabbix-server" #. type: deftypevr -#: guix-git/doc/guix.texi:25209 +#: guix-git/doc/guix.texi:25571 msgid "The zabbix-server package." msgstr "Das zabbix-server-Paket." #. type: deftypevr -#: guix-git/doc/guix.texi:25212 +#: guix-git/doc/guix.texi:25574 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string user" msgstr "{@code{zabbix-server-configuration}-Parameter} Zeichenkette user" #. type: deftypevr -#: guix-git/doc/guix.texi:25214 +#: guix-git/doc/guix.texi:25576 msgid "User who will run the Zabbix server." msgstr "Das Benutzerkonto, mit dem der Zabbix-Server ausgeführt wird." #. type: deftypevr -#: guix-git/doc/guix.texi:25216 guix-git/doc/guix.texi:25223 -#: guix-git/doc/guix.texi:25237 guix-git/doc/guix.texi:25244 -#: guix-git/doc/guix.texi:25345 guix-git/doc/guix.texi:25352 -#: guix-git/doc/guix.texi:25463 guix-git/doc/guix.texi:25470 +#: guix-git/doc/guix.texi:25578 guix-git/doc/guix.texi:25585 +#: guix-git/doc/guix.texi:25599 guix-git/doc/guix.texi:25606 +#: guix-git/doc/guix.texi:25707 guix-git/doc/guix.texi:25714 msgid "Defaults to @samp{\"zabbix\"}." msgstr "Die Vorgabe ist @samp{\"zabbix\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25219 +#: guix-git/doc/guix.texi:25581 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} group group" msgstr "{@code{zabbix-server-configuration}-Parameter} Gruppe group" #. type: deftypevr -#: guix-git/doc/guix.texi:25221 +#: guix-git/doc/guix.texi:25583 msgid "Group who will run the Zabbix server." msgstr "Die Gruppe, mit der der Zabbix-Server ausgeführt wird." #. type: deftypevr -#: guix-git/doc/guix.texi:25226 +#: guix-git/doc/guix.texi:25588 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-host" msgstr "{@code{zabbix-server-configuration}-Parameter} Zeichenkette db-host" -#. type: deftypevr -#: guix-git/doc/guix.texi:25228 guix-git/doc/guix.texi:25447 +#. type: table +#: guix-git/doc/guix.texi:25590 guix-git/doc/guix.texi:25813 msgid "Database host name." msgstr "Rechnername der Datenbank." #. type: deftypevr -#: guix-git/doc/guix.texi:25230 +#: guix-git/doc/guix.texi:25592 msgid "Defaults to @samp{\"127.0.0.1\"}." msgstr "Die Vorgabe ist @samp{\"127.0.0.1\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25233 +#: guix-git/doc/guix.texi:25595 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-name" msgstr "{@code{zabbix-server-configuration}-Parameter} Zeichenkette db-name" -#. type: deftypevr -#: guix-git/doc/guix.texi:25235 guix-git/doc/guix.texi:25461 +#. type: table +#: guix-git/doc/guix.texi:25597 guix-git/doc/guix.texi:25819 msgid "Database name." msgstr "Datenbankname." #. type: deftypevr -#: guix-git/doc/guix.texi:25240 +#: guix-git/doc/guix.texi:25602 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-user" msgstr "{@code{zabbix-server-configuration}-Parameter} Zeichenkette db-user" -#. type: deftypevr -#: guix-git/doc/guix.texi:25242 guix-git/doc/guix.texi:25468 +#. type: table +#: guix-git/doc/guix.texi:25604 guix-git/doc/guix.texi:25822 msgid "Database user." msgstr "Benutzerkonto der Datenbank." #. type: deftypevr -#: guix-git/doc/guix.texi:25247 +#: guix-git/doc/guix.texi:25609 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-password" msgstr "{@code{zabbix-server-configuration}-Parameter} Zeichenkette db-password" #. type: deftypevr -#: guix-git/doc/guix.texi:25250 +#: guix-git/doc/guix.texi:25612 msgid "Database password. Please, use @code{include-files} with @code{DBPassword=SECRET} inside a specified file instead." msgstr "Das Datenbankpasswort. Bitte benutzen Sie stattdessen @code{include-files} mit @code{DBPassword=SECRET} in einer angegebenen Datei." #. type: deftypevr -#: guix-git/doc/guix.texi:25255 +#: guix-git/doc/guix.texi:25617 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} number db-port" msgstr "{@code{zabbix-server-configuration}-Parameter} Zahl db-port" -#. type: deftypevr -#: guix-git/doc/guix.texi:25257 guix-git/doc/guix.texi:25454 +#. type: table +#: guix-git/doc/guix.texi:25619 guix-git/doc/guix.texi:25816 msgid "Database port." msgstr "Datenbank-Portnummer." #. type: deftypevr -#: guix-git/doc/guix.texi:25259 guix-git/doc/guix.texi:25456 +#: guix-git/doc/guix.texi:25621 msgid "Defaults to @samp{5432}." msgstr "Die Vorgabe ist @samp{5432}." #. type: deftypevr -#: guix-git/doc/guix.texi:25262 +#: guix-git/doc/guix.texi:25624 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string log-type" msgstr "{@code{zabbix-server-configuration}-Parameter} Zeichenkette log-type" #. type: deftypevr -#: guix-git/doc/guix.texi:25264 guix-git/doc/guix.texi:25365 +#: guix-git/doc/guix.texi:25626 guix-git/doc/guix.texi:25727 msgid "Specifies where log messages are written to:" msgstr "Gibt an, wohin Protokollnachrichten geschrieben werden." #. type: itemize -#: guix-git/doc/guix.texi:25268 guix-git/doc/guix.texi:25369 +#: guix-git/doc/guix.texi:25630 guix-git/doc/guix.texi:25731 msgid "@code{system} - syslog." msgstr "@code{system} - Syslog." #. type: itemize -#: guix-git/doc/guix.texi:25271 guix-git/doc/guix.texi:25372 +#: guix-git/doc/guix.texi:25633 guix-git/doc/guix.texi:25734 msgid "@code{file} - file specified with @code{log-file} parameter." msgstr "@code{file} - Die im @code{log-file}-Parameter angegebene Datei." #. type: itemize -#: guix-git/doc/guix.texi:25274 guix-git/doc/guix.texi:25375 +#: guix-git/doc/guix.texi:25636 guix-git/doc/guix.texi:25737 msgid "@code{console} - standard output." msgstr "@code{console} - Standardausgabe." #. type: deftypevr -#: guix-git/doc/guix.texi:25281 +#: guix-git/doc/guix.texi:25643 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string log-file" msgstr "{@code{zabbix-server-configuration}-Parameter} Zeichenkette log-file" #. type: deftypevr -#: guix-git/doc/guix.texi:25283 guix-git/doc/guix.texi:25384 +#: guix-git/doc/guix.texi:25645 guix-git/doc/guix.texi:25746 msgid "Log file name for @code{log-type} @code{file} parameter." msgstr "Protokolldateiname für den @code{file}-Parameter von @code{log-type}." #. type: deftypevr -#: guix-git/doc/guix.texi:25285 +#: guix-git/doc/guix.texi:25647 msgid "Defaults to @samp{\"/var/log/zabbix/server.log\"}." msgstr "Die Vorgabe ist @samp{\"/var/log/zabbix/server.log\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25288 +#: guix-git/doc/guix.texi:25650 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string pid-file" msgstr "{@code{zabbix-server-configuration}-Parameter} Zeichenkette pid-file" #. type: deftypevr -#: guix-git/doc/guix.texi:25290 guix-git/doc/guix.texi:25391 +#: guix-git/doc/guix.texi:25652 guix-git/doc/guix.texi:25753 msgid "Name of PID file." msgstr "Name der PID-Datei." #. type: deftypevr -#: guix-git/doc/guix.texi:25292 +#: guix-git/doc/guix.texi:25654 msgid "Defaults to @samp{\"/var/run/zabbix/zabbix_server.pid\"}." msgstr "Die Vorgabe ist @samp{\"/var/run/zabbix/zabbix_server.pid\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25295 +#: guix-git/doc/guix.texi:25657 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string ssl-ca-location" msgstr "{@code{zabbix-server-configuration}-Parameter} Zeichenkette ssl-ca-location" #. type: deftypevr -#: guix-git/doc/guix.texi:25298 +#: guix-git/doc/guix.texi:25660 msgid "The location of certificate authority (CA) files for SSL server certificate verification." msgstr "Der Ort mit den Dateien über die Zertifikatsautoritäten (Certificate Authoritys, CAs) zur Prüfung der SSL-Serverzertifikate." #. type: deftypevr -#: guix-git/doc/guix.texi:25300 +#: guix-git/doc/guix.texi:25662 msgid "Defaults to @samp{\"/etc/ssl/certs/ca-certificates.crt\"}." msgstr "Die Vorgabe ist @samp{\"/etc/ssl/certs/ca-certificates.crt\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25303 +#: guix-git/doc/guix.texi:25665 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string ssl-cert-location" msgstr "{@code{zabbix-server-configuration}-Parameter} Zeichenkette ssl-cert-location" #. type: deftypevr -#: guix-git/doc/guix.texi:25305 +#: guix-git/doc/guix.texi:25667 msgid "Location of SSL client certificates." msgstr "Der Ort mit den SSL-Client-Zertifikaten." #. type: deftypevr -#: guix-git/doc/guix.texi:25307 +#: guix-git/doc/guix.texi:25669 msgid "Defaults to @samp{\"/etc/ssl/certs\"}." msgstr "Die Vorgabe ist @samp{\"/etc/ssl/certs\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25310 +#: guix-git/doc/guix.texi:25672 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string extra-options" msgstr "{@code{zabbix-server-configuration}-Parameter} Zeichenkette extra-options" #. type: deftypevr -#: guix-git/doc/guix.texi:25312 guix-git/doc/guix.texi:25416 +#: guix-git/doc/guix.texi:25674 guix-git/doc/guix.texi:25778 msgid "Extra options will be appended to Zabbix server configuration file." msgstr "Zusätzliche Optionen werden an die Zabbix-Server-Konfigurationsdatei angehängt." #. type: deftypevr -#: guix-git/doc/guix.texi:25317 +#: guix-git/doc/guix.texi:25679 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} include-files include-files" msgstr "{@code{zabbix-server-configuration}-Parameter} Einzubindende-Dateien include-files" #. type: deftypevr -#: guix-git/doc/guix.texi:25320 guix-git/doc/guix.texi:25424 +#: guix-git/doc/guix.texi:25682 guix-git/doc/guix.texi:25786 msgid "You may include individual files or all files in a directory in the configuration file." msgstr "Sie können einzelne Dateien oder alle Dateien in einem Verzeichnis in die Konfigurationsdatei einbinden." #. type: subsubheading -#: guix-git/doc/guix.texi:25327 +#: guix-git/doc/guix.texi:25689 #, no-wrap msgid "Zabbix agent" msgstr "Zabbix-Agent" #. type: cindex -#: guix-git/doc/guix.texi:25328 +#: guix-git/doc/guix.texi:25690 #, no-wrap msgid "zabbix zabbix-agent" msgstr "Zabbix, Zabbix-Agent" #. type: Plain text -#: guix-git/doc/guix.texi:25331 +#: guix-git/doc/guix.texi:25693 msgid "Zabbix agent gathers information for Zabbix server." msgstr "Der Zabbix-Agent sammelt Informationen für den Zabbix-Server." #. type: Plain text -#: guix-git/doc/guix.texi:25335 +#: guix-git/doc/guix.texi:25697 msgid "Available @code{zabbix-agent-configuration} fields are:" msgstr "Verfügbare @code{zabbix-agent-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:25336 +#: guix-git/doc/guix.texi:25698 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} package zabbix-agent" msgstr "{@code{zabbix-agent-configuration}-Parameter} „package“ zabbix-agent" #. type: deftypevr -#: guix-git/doc/guix.texi:25338 +#: guix-git/doc/guix.texi:25700 msgid "The zabbix-agent package." msgstr "Das zabbix-agent-Paket." #. type: deftypevr -#: guix-git/doc/guix.texi:25341 +#: guix-git/doc/guix.texi:25703 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string user" msgstr "{@code{zabbix-agent-configuration}-Parameter} Zeichenkette user" #. type: deftypevr -#: guix-git/doc/guix.texi:25343 +#: guix-git/doc/guix.texi:25705 msgid "User who will run the Zabbix agent." msgstr "Das Benutzerkonto, mit dem der Zabbix-Agent ausgeführt wird." #. type: deftypevr -#: guix-git/doc/guix.texi:25348 +#: guix-git/doc/guix.texi:25710 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} group group" msgstr "{@code{zabbix-agent-configuration}-Parameter} Gruppe group" #. type: deftypevr -#: guix-git/doc/guix.texi:25350 +#: guix-git/doc/guix.texi:25712 msgid "Group who will run the Zabbix agent." msgstr "Die Gruppe, mit der der Zabbix-Agent ausgeführt wird." #. type: deftypevr -#: guix-git/doc/guix.texi:25355 +#: guix-git/doc/guix.texi:25717 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string hostname" msgstr "{@code{zabbix-agent-configuration}-Parameter} Zeichenkette hostname" #. type: deftypevr -#: guix-git/doc/guix.texi:25358 +#: guix-git/doc/guix.texi:25720 msgid "Unique, case sensitive hostname which is required for active checks and must match hostname as configured on the server." msgstr "Der eindeutige Rechnername in richtiger Groß-/Kleinschreibung, der für aktive Überprüfungen benötigt wird und dem im Server eingestellten Rechnernamen entsprechen muss." #. type: deftypevr -#: guix-git/doc/guix.texi:25363 +#: guix-git/doc/guix.texi:25725 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string log-type" msgstr "{@code{zabbix-agent-configuration}-Parameter} Zeichenkette log-type" #. type: deftypevr -#: guix-git/doc/guix.texi:25382 +#: guix-git/doc/guix.texi:25744 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string log-file" msgstr "{@code{zabbix-agent-configuration}-Parameter} Zeichenkette log-file" #. type: deftypevr -#: guix-git/doc/guix.texi:25386 +#: guix-git/doc/guix.texi:25748 msgid "Defaults to @samp{\"/var/log/zabbix/agent.log\"}." msgstr "Die Vorgabe ist @samp{\"/var/log/zabbix/agent.log\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25389 +#: guix-git/doc/guix.texi:25751 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string pid-file" msgstr "{@code{zabbix-agent-configuration}-Parameter} Zeichenkette pid-file" #. type: deftypevr -#: guix-git/doc/guix.texi:25393 +#: guix-git/doc/guix.texi:25755 msgid "Defaults to @samp{\"/var/run/zabbix/zabbix_agent.pid\"}." msgstr "Die Vorgabe ist @samp{\"/var/run/zabbix/zabbix_agent.pid\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25396 +#: guix-git/doc/guix.texi:25758 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} list server" msgstr "{@code{zabbix-agent-configuration}-Parameter} Liste server" #. type: deftypevr -#: guix-git/doc/guix.texi:25400 +#: guix-git/doc/guix.texi:25762 msgid "List of IP addresses, optionally in CIDR notation, or hostnames of Zabbix servers and Zabbix proxies. Incoming connections will be accepted only from the hosts listed here." msgstr "Die Liste der IP-Adressen, optional in CIDR-Notation angegeben, oder die Rechnernamen von Zabbix-Servern und Zabbix-Proxys. Eingehende Verbindungen werden nur dann angenommen, wenn sie von hier angegebenen Rechnern stammen." #. type: deftypevr -#: guix-git/doc/guix.texi:25402 guix-git/doc/guix.texi:25411 +#: guix-git/doc/guix.texi:25764 guix-git/doc/guix.texi:25773 msgid "Defaults to @samp{(\"127.0.0.1\")}." msgstr "Die Vorgabe ist @samp{(\"127.0.0.1\")}." #. type: deftypevr -#: guix-git/doc/guix.texi:25405 +#: guix-git/doc/guix.texi:25767 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} list server-active" msgstr "{@code{zabbix-agent-configuration}-Parameter} Liste server-active" #. type: deftypevr -#: guix-git/doc/guix.texi:25409 +#: guix-git/doc/guix.texi:25771 msgid "List of IP:port (or hostname:port) pairs of Zabbix servers and Zabbix proxies for active checks. If port is not specified, default port is used. If this parameter is not specified, active checks are disabled." msgstr "Die Liste aus IP:Port-Paaren (oder Rechnername:Port-Paaren) von Zabbix-Servern und Zabbix-Proxys für aktive Überprüfungen. Wenn kein Port angegeben wurde, wird der Vorgabeport benutzt. Wenn dieser Parameter @emph{nicht} angegeben wird, werden aktive Überprüfungen deaktiviert." #. type: deftypevr -#: guix-git/doc/guix.texi:25414 +#: guix-git/doc/guix.texi:25776 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string extra-options" msgstr "{@code{zabbix-agent-configuration}-Parameter} Zeichenkette extra-options" #. type: deftypevr -#: guix-git/doc/guix.texi:25421 +#: guix-git/doc/guix.texi:25783 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} include-files include-files" msgstr "{@code{zabbix-agent-configuration}-Parameter} Einzubindende-Dateien include-files" #. type: subsubheading -#: guix-git/doc/guix.texi:25431 +#: guix-git/doc/guix.texi:25793 #, no-wrap msgid "Zabbix front-end" msgstr "Zabbix-Frontend" #. type: cindex -#: guix-git/doc/guix.texi:25432 +#: guix-git/doc/guix.texi:25794 #, no-wrap msgid "zabbix zabbix-front-end" msgstr "Zabbix, Zabbix-Frontend" #. type: Plain text -#: guix-git/doc/guix.texi:25435 +#: guix-git/doc/guix.texi:25797 msgid "This service provides a WEB interface to Zabbix server." msgstr "Dieser Dienst stellt eine Weboberfläche als Vordergrundsystem (@dfn{Frontend}) für den Zabbix-Server zur Verfügung." -#. type: Plain text -#: guix-git/doc/guix.texi:25439 +#. type: deftp +#: guix-git/doc/guix.texi:25800 +#, fuzzy, no-wrap +#| msgid "{Data Type} inetd-configuration" +msgid "{Data Type} zabbix-front-end-configuration" +msgstr "{Datentyp} inetd-configuration" + +#. type: deftp +#: guix-git/doc/guix.texi:25802 msgid "Available @code{zabbix-front-end-configuration} fields are:" msgstr "Verfügbare @code{zabbix-front-end-configuration}-Felder sind:" -#. type: deftypevr -#: guix-git/doc/guix.texi:25440 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} nginx-server-configuration-list nginx" -msgstr "{@code{zabbix-front-end-configuration}-Parameter} „nginx-server-configuration“-Liste nginx" +#. type: item +#: guix-git/doc/guix.texi:25804 +#, fuzzy, no-wrap +#| msgid "@code{server} (default: @code{xorg-server})" +msgid "@code{zabbix-server} (default: @code{zabbix-server}) (type: file-like)" +msgstr "@code{server} (Vorgabe: @code{xorg-server})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25442 guix-git/doc/guix.texi:31735 -msgid "NGINX configuration." -msgstr "NGINX-Konfiguration." +#. type: table +#: guix-git/doc/guix.texi:25806 +#, fuzzy +#| msgid "The zabbix-server package." +msgid "The Zabbix server package to use." +msgstr "Das zabbix-server-Paket." -#. type: deftypevr -#: guix-git/doc/guix.texi:25445 +#. type: item +#: guix-git/doc/guix.texi:25807 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-host" -msgstr "{@code{zabbix-front-end-configuration}-Parameter} Zeichenkette db-host" +msgid "@code{fastcgi-params} (type: list)" +msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25452 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} number db-port" -msgstr "{@code{zabbix-front-end-configuration}-Parameter} Zahl db-port" +#. type: table +#: guix-git/doc/guix.texi:25810 +#, fuzzy +#| msgid "Raw content that will be added to the configuration file." +msgid "List of FastCGI parameter pairs that will be included in the NGINX configuration." +msgstr "„Roher Inhalt“, der so, wie er ist, an die Konfigurationsdatei angefügt wird." -#. type: deftypevr -#: guix-git/doc/guix.texi:25459 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-name" -msgstr "{@code{zabbix-front-end-configuration}-Parameter} Zeichenkette db-name" +#. type: item +#: guix-git/doc/guix.texi:25811 +#, fuzzy, no-wrap +#| msgid "@code{host} (default: @code{\"localhost\"})" +msgid "@code{db-host} (default: @code{\\\"localhost\\\"}) (type: string)" +msgstr "@code{host} (Vorgabe: @code{\"localhost\"})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25466 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-user" -msgstr "{@code{zabbix-front-end-configuration}-Parameter} Zeichenkette db-user" +#. type: item +#: guix-git/doc/guix.texi:25814 +#, fuzzy, no-wrap +#| msgid "@code{port} (default: @code{5432})" +msgid "@code{db-port} (default: @code{5432}) (type: number)" +msgstr "@code{port} (Vorgabe: @code{5432})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25473 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-password" -msgstr "{@code{zabbix-front-end-configuration}-Parameter} Zeichenkette db-password" +#. type: item +#: guix-git/doc/guix.texi:25817 +#, fuzzy, no-wrap +#| msgid "@code{name-server-uri} (default: @code{disabled}) (type: maybe-string)" +msgid "@code{db-name} (default: @code{\\\"zabbix\\\"}) (type: string)" +msgstr "@code{name-server-uri} (Vorgabe: @code{disabled}) (Typ: Vielleicht-Zeichenkette)" -#. type: deftypevr -#: guix-git/doc/guix.texi:25475 +#. type: item +#: guix-git/doc/guix.texi:25820 +#, fuzzy, no-wrap +#| msgid "@code{dbus} (default: @code{dbus}) (type: package)" +msgid "@code{db-user} (default: @code{\\\"zabbix\\\"}) (type: string)" +msgstr "@code{dbus} (Vorgabe: @code{dbus}) (Typ: „package“)" + +#. type: item +#: guix-git/doc/guix.texi:25823 +#, fuzzy, no-wrap +#| msgid "@code{password} (default: @code{\"\"})" +msgid "@code{db-password} (default: @code{\\\"\\\"}) (type: string)" +msgstr "@code{password} (Vorgabe: @code{\"\"})" + +#. type: table +#: guix-git/doc/guix.texi:25825 msgid "Database password. Please, use @code{db-secret-file} instead." msgstr "Das Datenbankpasswort. Bitte benutzen Sie stattdessen @code{db-secret-file}." -#. type: deftypevr -#: guix-git/doc/guix.texi:25480 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-secret-file" -msgstr "{@code{zabbix-front-end-configuration}-Parameter} Zeichenkette db-secret-file" +#. type: item +#: guix-git/doc/guix.texi:25826 +#, fuzzy, no-wrap +#| msgid "@code{bash-profile} (default: @code{()}) (type: text-config)" +msgid "@code{db-secret-file} (default: @code{\\\"\\\"}) (type: string)" +msgstr "@code{bash-profile} (Vorgabe: @code{()}) (Typ: Konfigurationstexte)" -#. type: deftypevr -#: guix-git/doc/guix.texi:25485 -msgid "Secret file containing the credentials for the Zabbix front-end. The value must be a local file name, not a G-expression. You are expected to create this file manually. Its contents will be copied into @file{zabbix.conf.php} as the value of @code{$DB['PASSWORD']}." -msgstr "In welcher Datei die geheimen Anmeldedaten für das Vordergrundsystem von Zabbix stehen. Als Wert muss ein lokaler Dateiname angegeben werden und @emph{kein} G-Ausdruck. Es wird erwartet, dass Sie diese Datei manuell erstellen. Ihr Inhalt wird als Wert von @code{$DB['PASSWORD']} in die @file{zabbix.conf.php} kopiert." +#. type: table +#: guix-git/doc/guix.texi:25830 +msgid "Secret file which will be appended to @file{zabbix.conf.php} file. This file contains credentials for use by Zabbix front-end. You are expected to create it manually." +msgstr "Die Datei mit den Geheimnis-Informationen, die an die @file{zabbix.conf.php}-Datei angehängt wird. Diese Datei enthält Zugangsdaten für die Nutzung durch das Zabbix-Frontend. Es wird von Ihnen erwartet, dass Sie sie manuell erzeugen." -#. type: deftypevr -#: guix-git/doc/guix.texi:25490 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string zabbix-host" -msgstr "{@code{zabbix-front-end-configuration}-Parameter} Zeichenkette zabbix-host" +#. type: item +#: guix-git/doc/guix.texi:25831 +#, fuzzy, no-wrap +#| msgid "@code{host} (default: @code{\"localhost\"})" +msgid "@code{zabbix-host} (default: @code{\\\"localhost\\\"}) (type: string)" +msgstr "@code{host} (Vorgabe: @code{\"localhost\"})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25492 +#. type: table +#: guix-git/doc/guix.texi:25833 msgid "Zabbix server hostname." msgstr "Zabbix-Server-Rechnername." -#. type: deftypevr -#: guix-git/doc/guix.texi:25497 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} number zabbix-port" -msgstr "{@code{zabbix-front-end-configuration}-Parameter} Zahl zabbix-port" +#. type: item +#: guix-git/doc/guix.texi:25834 +#, fuzzy, no-wrap +#| msgid "@code{xdg-flavor?} (default: @code{#t}) (type: boolean)" +msgid "@code{zabbix-port} (default: @code{10051}) (type: number)" +msgstr "@code{xdg-flavor?} (Vorgabe: @code{#t}) (Typ: Boolescher-Ausdruck)" -#. type: deftypevr -#: guix-git/doc/guix.texi:25499 +#. type: table +#: guix-git/doc/guix.texi:25836 msgid "Zabbix server port." msgstr "Zabbix-Server-Port." -#. type: deftypevr -#: guix-git/doc/guix.texi:25501 -msgid "Defaults to @samp{10051}." -msgstr "Die Vorgabe ist @samp{10051}." - #. type: cindex -#: guix-git/doc/guix.texi:25509 +#: guix-git/doc/guix.texi:25846 #, no-wrap msgid "Kerberos" msgstr "Kerberos" #. type: Plain text -#: guix-git/doc/guix.texi:25513 +#: guix-git/doc/guix.texi:25850 msgid "The @code{(gnu services kerberos)} module provides services relating to the authentication protocol @dfn{Kerberos}." msgstr "Das @code{(gnu services kerberos)}-Modul stellt Dienste zur Verfügung, die mit dem Authentifizierungsprotokoll @dfn{Kerberos} zu tun haben." #. type: subsubheading -#: guix-git/doc/guix.texi:25514 +#: guix-git/doc/guix.texi:25851 #, no-wrap msgid "Krb5 Service" msgstr "Krb5-Dienst" #. type: Plain text -#: guix-git/doc/guix.texi:25521 +#: guix-git/doc/guix.texi:25858 msgid "Programs using a Kerberos client library normally expect a configuration file in @file{/etc/krb5.conf}. This service generates such a file from a definition provided in the operating system declaration. It does not cause any daemon to be started." msgstr "Programme, die eine Kerberos-Clientbibliothek benutzen, erwarten meist, dass sich eine Konfigurationsdatei in @file{/etc/krb5.conf} befindet. Dieser Dienst erzeugt eine solche Datei aus einer Definition, die in der Betriebssystemdeklaration angegebenen wurde. Durch ihn wird kein Daemon gestartet." #. type: Plain text -#: guix-git/doc/guix.texi:25525 +#: guix-git/doc/guix.texi:25862 msgid "No ``keytab'' files are provided by this service---you must explicitly create them. This service is known to work with the MIT client library, @code{mit-krb5}. Other implementations have not been tested." msgstr "Keine „Schlüsseltabellen“-Dateien werden durch diesen Dienst zur Verfügung gestellt@tie{}— Sie müssen sie ausdrücklich selbst anlegen. Dieser Dienst funktioniert bekanntermaßen mit der MIT-Clientbibliothek @code{mit-krb5}. Andere Implementierungen wurden nicht getestet." #. type: defvr -#: guix-git/doc/guix.texi:25526 +#: guix-git/doc/guix.texi:25863 #, no-wrap msgid "{Scheme Variable} krb5-service-type" msgstr "{Scheme-Variable} krb5-service-type" #. type: defvr -#: guix-git/doc/guix.texi:25528 +#: guix-git/doc/guix.texi:25865 msgid "A service type for Kerberos 5 clients." msgstr "Ein Diensttyp für Kerberos-5-Clients." #. type: Plain text -#: guix-git/doc/guix.texi:25532 +#: guix-git/doc/guix.texi:25869 msgid "Here is an example of its use:" msgstr "Hier ist ein Beispiel, wie man ihn benutzt:" #. type: lisp -#: guix-git/doc/guix.texi:25546 +#: guix-git/doc/guix.texi:25883 #, no-wrap msgid "" "(service krb5-service-type\n" @@ -47647,206 +48332,206 @@ msgstr "" " (kdc \"keys.argrx.edu\"))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:25550 +#: guix-git/doc/guix.texi:25887 msgid "This example provides a Kerberos@tie{}5 client configuration which:" msgstr "Dieses Beispiel stellt eine Client-Konfiguration für Kerberos@tie{}5 zur Verfügung, mit der:" #. type: item -#: guix-git/doc/guix.texi:25551 +#: guix-git/doc/guix.texi:25888 #, no-wrap msgid "Recognizes two realms, @i{viz:} ``EXAMPLE.COM'' and ``ARGRX.EDU'', both" msgstr "Zwei Administrationsbereiche erkannt werden, nämlich: „EXAMPLE.COM“" #. type: itemize -#: guix-git/doc/guix.texi:25553 +#: guix-git/doc/guix.texi:25890 msgid "of which have distinct administration servers and key distribution centers;" msgstr "und „ARGRX.EDU“, die beide verschiedene Administrationsserver und Schlüsselverteilungszentren haben," #. type: item -#: guix-git/doc/guix.texi:25553 +#: guix-git/doc/guix.texi:25890 #, no-wrap msgid "Will default to the realm ``EXAMPLE.COM'' if the realm is not explicitly" msgstr "als Vorgabe der Administrationsbereich „EXAMPLE.COM“ verwendet wird," #. type: itemize -#: guix-git/doc/guix.texi:25555 +#: guix-git/doc/guix.texi:25892 msgid "specified by clients;" msgstr "falls der Administrationsbereich von Clients nicht ausdrücklich angegeben wurde, und" #. type: item -#: guix-git/doc/guix.texi:25555 +#: guix-git/doc/guix.texi:25892 #, no-wrap msgid "Accepts services which only support encryption types known to be weak." msgstr "auch Dienste angenommen werden, die nur Verschlüsselungstypen unterstützen, die bekanntermaßen schwach sind." #. type: Plain text -#: guix-git/doc/guix.texi:25563 +#: guix-git/doc/guix.texi:25900 msgid "The @code{krb5-realm} and @code{krb5-configuration} types have many fields. Only the most commonly used ones are described here. For a full list, and more detailed explanation of each, see the MIT @uref{https://web.mit.edu/kerberos/krb5-devel/doc/admin/conf_files/krb5_conf.html,,krb5.conf} documentation." msgstr "Die Typen @code{krb5-realm} und @code{krb5-configuration} haben viele Felder. Hier werden nur die am häufigsten benutzten beschrieben. Eine vollständige Liste und jeweils detailliertere Erklärungen finden Sie in der Dokumentation von @uref{https://web.mit.edu/kerberos/krb5-devel/doc/admin/conf_files/krb5_conf.html,,krb5.conf} vom MIT." #. type: deftp -#: guix-git/doc/guix.texi:25565 +#: guix-git/doc/guix.texi:25902 #, no-wrap msgid "{Data Type} krb5-realm" msgstr "{Datentyp} krb5-realm" #. type: cindex -#: guix-git/doc/guix.texi:25566 +#: guix-git/doc/guix.texi:25903 #, no-wrap msgid "realm, kerberos" msgstr "Administrationsbereich, Kerberos" #. type: table -#: guix-git/doc/guix.texi:25572 +#: guix-git/doc/guix.texi:25909 msgid "This field is a string identifying the name of the realm. A common convention is to use the fully qualified DNS name of your organization, converted to upper case." msgstr "Dieses Feld enthält eine Zeichenkette, die den Namen des Administrationsbereichs bezeichnet. Üblich ist, den vollständigen DNS-Namen („Fully Qualified DNS Name“) Ihrer Organisation nur in Großbuchstaben zu benutzen." #. type: code{#1} -#: guix-git/doc/guix.texi:25573 +#: guix-git/doc/guix.texi:25910 #, no-wrap msgid "admin-server" msgstr "admin-server" #. type: table -#: guix-git/doc/guix.texi:25576 +#: guix-git/doc/guix.texi:25913 msgid "This field is a string identifying the host where the administration server is running." msgstr "Dieses Feld enthält eine Zeichenkette, die den Rechner benennt, auf dem der Administrationsserver läuft." #. type: code{#1} -#: guix-git/doc/guix.texi:25577 +#: guix-git/doc/guix.texi:25914 #, no-wrap msgid "kdc" msgstr "kdc" #. type: table -#: guix-git/doc/guix.texi:25580 +#: guix-git/doc/guix.texi:25917 msgid "This field is a string identifying the key distribution center for the realm." msgstr "Dieses Feld enthält eine Zeichenkette, die das Schlüsselverteilungszentrum für den Administrationsbereich angibt." #. type: deftp -#: guix-git/doc/guix.texi:25583 +#: guix-git/doc/guix.texi:25920 #, no-wrap msgid "{Data Type} krb5-configuration" msgstr "{Datentyp} krb5-configuration" #. type: item -#: guix-git/doc/guix.texi:25586 +#: guix-git/doc/guix.texi:25923 #, no-wrap msgid "@code{allow-weak-crypto?} (default: @code{#f})" msgstr "@code{allow-weak-crypto?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:25589 +#: guix-git/doc/guix.texi:25926 msgid "If this flag is @code{#t} then services which only offer encryption algorithms known to be weak will be accepted." msgstr "Wenn diese Option auf @code{#t} gesetzt ist, werden auch Dienste akzeptiert, die nur Verschlüsselungsalgorithmen anbieten, die bekanntermaßen schwach sind." #. type: item -#: guix-git/doc/guix.texi:25590 +#: guix-git/doc/guix.texi:25927 #, no-wrap msgid "@code{default-realm} (default: @code{#f})" msgstr "@code{default-realm} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:25597 +#: guix-git/doc/guix.texi:25934 msgid "This field should be a string identifying the default Kerberos realm for the client. You should set this field to the name of your Kerberos realm. If this value is @code{#f} then a realm must be specified with every Kerberos principal when invoking programs such as @command{kinit}." msgstr "Dieses Feld sollte eine Zeichenkette enthalten, die den voreingestellten Kerberos-Administrationsbereich für den Client angibt. Sie sollten in diesem Feld den Namen Ihres Kerberos-Administrationsbereichs eintragen. Wenn der Wert @code{#f} ist, dann muss ein Administrationsbereich mit jedem Kerberos-Prinzipal zusammen angegeben werden, wenn Programme wie @command{kinit} aufgerufen werden." #. type: code{#1} -#: guix-git/doc/guix.texi:25598 +#: guix-git/doc/guix.texi:25935 #, no-wrap msgid "realms" msgstr "realms" #. type: table -#: guix-git/doc/guix.texi:25603 +#: guix-git/doc/guix.texi:25940 msgid "This should be a non-empty list of @code{krb5-realm} objects, which clients may access. Normally, one of them will have a @code{name} field matching the @code{default-realm} field." msgstr "Hierin sollte eine nichtleere Liste von je einem @code{krb5-realm}-Objekt pro Administrationsbereich stehen, auf den Clients zugreifen können. Normalerweise hat einer davon ein @code{name}-Feld, das mit dem @code{default-realm}-Feld übereinstimmt." #. type: subsubheading -#: guix-git/doc/guix.texi:25607 +#: guix-git/doc/guix.texi:25944 #, no-wrap msgid "PAM krb5 Service" msgstr "PAM-krb5-Dienst" #. type: cindex -#: guix-git/doc/guix.texi:25608 +#: guix-git/doc/guix.texi:25945 #, no-wrap msgid "pam-krb5" msgstr "pam-krb5" #. type: Plain text -#: guix-git/doc/guix.texi:25614 +#: guix-git/doc/guix.texi:25951 msgid "The @code{pam-krb5} service allows for login authentication and password management via Kerberos. You will need this service if you want PAM enabled applications to authenticate users using Kerberos." msgstr "Der @code{pam-krb5}-Dienst ermöglicht es, bei der Anmeldung und Passwortverwaltung Benutzer über Kerberos zu authentifizieren. Sie brauchen diesen Dienst, damit Anwendungen, die PAM benutzen können, Nutzer über Kerberos authentifizieren können." #. type: defvr -#: guix-git/doc/guix.texi:25615 +#: guix-git/doc/guix.texi:25952 #, no-wrap msgid "{Scheme Variable} pam-krb5-service-type" msgstr "{Scheme-Variable} pam-krb5-service-type" #. type: defvr -#: guix-git/doc/guix.texi:25617 +#: guix-git/doc/guix.texi:25954 msgid "A service type for the Kerberos 5 PAM module." msgstr "Ein Diensttyp für das PAM-Modul zu Kerberos@tie{}5." #. type: deftp -#: guix-git/doc/guix.texi:25619 +#: guix-git/doc/guix.texi:25956 #, no-wrap msgid "{Data Type} pam-krb5-configuration" msgstr "{Datentyp} pam-krb5-configuration" #. type: deftp -#: guix-git/doc/guix.texi:25622 +#: guix-git/doc/guix.texi:25959 msgid "Data type representing the configuration of the Kerberos 5 PAM module. This type has the following parameters:" msgstr "Der Datentyp, der die Konfiguration des PAM-Moduls für Kerberos 5 repräsentiert. Dieser Typ hat die folgenden Parameter:" #. type: item -#: guix-git/doc/guix.texi:25623 +#: guix-git/doc/guix.texi:25960 #, no-wrap msgid "@code{pam-krb5} (default: @code{pam-krb5})" msgstr "@code{pam-krb5} (Vorgabe: @code{pam-krb5})" #. type: table -#: guix-git/doc/guix.texi:25625 +#: guix-git/doc/guix.texi:25962 msgid "The pam-krb5 package to use." msgstr "Das pam-krb5-Paket, das benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:25626 +#: guix-git/doc/guix.texi:25963 #, no-wrap msgid "@code{minimum-uid} (default: @code{1000})" msgstr "@code{minimum-uid} (Vorgabe: @code{1000})" #. type: table -#: guix-git/doc/guix.texi:25629 +#: guix-git/doc/guix.texi:25966 msgid "The smallest user ID for which Kerberos authentications should be attempted. Local accounts with lower values will silently fail to authenticate." msgstr "Der kleinste Benutzeridentifikator (UID), für den Authentifizierung über Kerberos versucht werden soll. Lokale Benutzerkonten mit niedrigeren Zahlwerten können sich nicht authentisieren und bekommen dazu keine Meldung angezeigt." #. type: cindex -#: guix-git/doc/guix.texi:25635 +#: guix-git/doc/guix.texi:25972 #, no-wrap msgid "LDAP" msgstr "LDAP" #. type: cindex -#: guix-git/doc/guix.texi:25636 +#: guix-git/doc/guix.texi:25973 #, no-wrap msgid "nslcd, LDAP service" msgstr "nslcd, LDAP-Dienst" #. type: Plain text -#: guix-git/doc/guix.texi:25643 +#: guix-git/doc/guix.texi:25980 msgid "The @code{(gnu services authentication)} module provides the @code{nslcd-service-type}, which can be used to authenticate against an LDAP server. In addition to configuring the service itself, you may want to add @code{ldap} as a name service to the Name Service Switch. @xref{Name Service Switch} for detailed information." msgstr "Das Modul @code{(gnu services authentication)} stellt den Diensttyp @code{nslcd-service-type} zur Verfügung, mit dem sich Benutzer gegenüber einem LDAP-Server authentisieren können. Sie möchten dabei wahrscheinlich nicht nur den Dienst konfigurieren, sondern auch @code{ldap} als einen Namensdienst („Name Service“) für den Name Service Switch hinzufügen. Siehe @ref{Name Service Switch} für Details." #. type: Plain text -#: guix-git/doc/guix.texi:25647 +#: guix-git/doc/guix.texi:25984 msgid "Here is a simple operating system declaration with a default configuration of the @code{nslcd-service-type} and a Name Service Switch configuration that consults the @code{ldap} name service last:" msgstr "Hier ist ein Beispiel für eine einfache Betriebssystemdeklaration mit einer der Vorgabe entsprechenden Konfiguration des @code{nslcd-service-type} und einer Konfiguration des Name Service Switch, die den @code{ldap}-Namensdienst zuletzt prüft:" #. type: lisp -#: guix-git/doc/guix.texi:25670 +#: guix-git/doc/guix.texi:26007 #, no-wrap msgid "" "(use-service-modules authentication)\n" @@ -47894,643 +48579,643 @@ msgstr "" " (gshadow services)))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:25675 +#: guix-git/doc/guix.texi:26012 msgid "Available @code{nslcd-configuration} fields are:" msgstr "Verfügbare @code{nslcd-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:25676 +#: guix-git/doc/guix.texi:26013 #, no-wrap msgid "{@code{nslcd-configuration} parameter} package nss-pam-ldapd" msgstr "{@code{nslcd-configuration}-Parameter} „package“ nss-pam-ldapd" #. type: deftypevr -#: guix-git/doc/guix.texi:25678 +#: guix-git/doc/guix.texi:26015 msgid "The @code{nss-pam-ldapd} package to use." msgstr "Das @code{nss-pam-ldapd}-Paket, was benutzt werden soll." #. type: deftypevr -#: guix-git/doc/guix.texi:25681 +#: guix-git/doc/guix.texi:26018 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number threads" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zahl threads" #. type: deftypevr -#: guix-git/doc/guix.texi:25685 +#: guix-git/doc/guix.texi:26022 msgid "The number of threads to start that can handle requests and perform LDAP queries. Each thread opens a separate connection to the LDAP server. The default is to start 5 threads." msgstr "Die Anzahl zu startender Threads, die Anfragen bearbeiten und LDAP-Abfragen durchführen können. Jeder Thread öffnet eine separate Verbindung zum LDAP-Server. Die Vorgabe ist, 5 Threads zu starten." #. type: deftypevr -#: guix-git/doc/guix.texi:25690 +#: guix-git/doc/guix.texi:26027 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string uid" msgstr "{@code{nslcd-configuration}-Parameter} Zeichenkette uid" #. type: deftypevr -#: guix-git/doc/guix.texi:25692 +#: guix-git/doc/guix.texi:26029 msgid "This specifies the user id with which the daemon should be run." msgstr "Gibt den Benutzeridentifikator an, unter dem der Daemon ausgeführt werden soll." #. type: deftypevr -#: guix-git/doc/guix.texi:25694 guix-git/doc/guix.texi:25701 +#: guix-git/doc/guix.texi:26031 guix-git/doc/guix.texi:26038 msgid "Defaults to @samp{\"nslcd\"}." msgstr "Die Vorgabe ist @samp{\"nslcd\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25697 +#: guix-git/doc/guix.texi:26034 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string gid" msgstr "{@code{nslcd-configuration}-Parameter} Zeichenkette gid" #. type: deftypevr -#: guix-git/doc/guix.texi:25699 +#: guix-git/doc/guix.texi:26036 msgid "This specifies the group id with which the daemon should be run." msgstr "Gibt den Gruppenidentifikator an, unter dem der Daemon ausgeführt werden soll." #. type: deftypevr -#: guix-git/doc/guix.texi:25704 +#: guix-git/doc/guix.texi:26041 #, no-wrap msgid "{@code{nslcd-configuration} parameter} log-option log" msgstr "{@code{nslcd-configuration}-Parameter} Protokolleinstellung log" #. type: deftypevr -#: guix-git/doc/guix.texi:25712 +#: guix-git/doc/guix.texi:26049 msgid "This option controls the way logging is done via a list containing SCHEME and LEVEL@. The SCHEME argument may either be the symbols @samp{none} or @samp{syslog}, or an absolute file name. The LEVEL argument is optional and specifies the log level. The log level may be one of the following symbols: @samp{crit}, @samp{error}, @samp{warning}, @samp{notice}, @samp{info} or @samp{debug}. All messages with the specified log level or higher are logged." msgstr "Diese Einstellung steuert über eine Liste aus SCHEMA und STUFE, wie protokolliert wird. Als SCHEMA-Argument darf entweder eines der Symbole @samp{none} (keines) oder @samp{syslog} angegeben werden oder ein absoluter Dateiname. Das Argument STUFE ist optional und legt die Protokollierungsstufe fest. Die Protokollierungsstufe kann als eines der folgenden Symbole angegeben werden: @samp{crit} (kritisch), @samp{error} (Fehler), @samp{warning} (Warnung), @samp{notice} (Benachrichtigung), @samp{info} (Information) oder @samp{debug} (Fehlersuche). Alle Mitteilungen mit der angegebenen Protokollierungsstufe oder einer höheren werden protokolliert." #. type: deftypevr -#: guix-git/doc/guix.texi:25714 +#: guix-git/doc/guix.texi:26051 msgid "Defaults to @samp{(\"/var/log/nslcd\" info)}." msgstr "Die Vorgabe ist @samp{(\"/var/log/nslcd\" info)}." #. type: deftypevr -#: guix-git/doc/guix.texi:25717 +#: guix-git/doc/guix.texi:26054 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list uri" msgstr "{@code{nslcd-configuration}-Parameter} Liste uri" #. type: deftypevr -#: guix-git/doc/guix.texi:25720 +#: guix-git/doc/guix.texi:26057 msgid "The list of LDAP server URIs. Normally, only the first server will be used with the following servers as fall-back." msgstr "Die Liste der LDAP-Server-URIs. Normalerweise wird nur der erste Server benutzt; nachfolgende Server dienen als Ersatz." #. type: deftypevr -#: guix-git/doc/guix.texi:25722 +#: guix-git/doc/guix.texi:26059 msgid "Defaults to @samp{(\"ldap://localhost:389/\")}." msgstr "Die Vorgabe ist @samp{(\"ldap://localhost:389/\")}." #. type: deftypevr -#: guix-git/doc/guix.texi:25725 +#: guix-git/doc/guix.texi:26062 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string ldap-version" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zeichenkette ldap-version" #. type: deftypevr -#: guix-git/doc/guix.texi:25728 +#: guix-git/doc/guix.texi:26065 msgid "The version of the LDAP protocol to use. The default is to use the maximum version supported by the LDAP library." msgstr "Die zu benutzende Version des LDAP-Protokolls. Nach Vorgabe wird die höchste Version benutzt, die von der LDAP-Bibliothek unterstützt wird." #. type: deftypevr -#: guix-git/doc/guix.texi:25733 +#: guix-git/doc/guix.texi:26070 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string binddn" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zeichenkette binddn" #. type: deftypevr -#: guix-git/doc/guix.texi:25736 +#: guix-git/doc/guix.texi:26073 msgid "Specifies the distinguished name with which to bind to the directory server for lookups. The default is to bind anonymously." msgstr "Gibt den „Distinguished Name“ an, der an den Verzeichnisserver („Directory Server“) gebunden wird, um Einträge aufzulösen. Nach Vorgabe wird anonym gebunden." #. type: deftypevr -#: guix-git/doc/guix.texi:25741 +#: guix-git/doc/guix.texi:26078 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string bindpw" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zeichenkette bindpw" #. type: deftypevr -#: guix-git/doc/guix.texi:25744 +#: guix-git/doc/guix.texi:26081 msgid "Specifies the credentials with which to bind. This option is only applicable when used with binddn." msgstr "Gibt die Zugangsinformationen an, mit denen gebunden wird. Diese Einstellung ist nur dann wirksam, wenn sie mit binddn benutzt wird." #. type: deftypevr -#: guix-git/doc/guix.texi:25749 +#: guix-git/doc/guix.texi:26086 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string rootpwmoddn" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zeichenkette rootpwmoddn" #. type: deftypevr -#: guix-git/doc/guix.texi:25752 +#: guix-git/doc/guix.texi:26089 msgid "Specifies the distinguished name to use when the root user tries to modify a user's password using the PAM module." msgstr "Gibt den „Distinguished Name“ an, der benutzt wird, wenn der Administratornutzer „root“ versucht, das Passwort eines Benutzers mit Hilfe des PAM-Moduls zu verändern." #. type: deftypevr -#: guix-git/doc/guix.texi:25757 +#: guix-git/doc/guix.texi:26094 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string rootpwmodpw" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zeichenkette rootpwmodpw" #. type: deftypevr -#: guix-git/doc/guix.texi:25761 +#: guix-git/doc/guix.texi:26098 msgid "Specifies the credentials with which to bind if the root user tries to change a user's password. This option is only applicable when used with rootpwmoddn" msgstr "Gibt die Zugangsinformationen an, die benutzt werden, wenn der Administratornutzer „root“ versucht, das Passwort eines Benutzers zu verändern. Diese Einstellung ist nur dann wirksam, wenn sie mit rootpwmoddn benutzt wird." #. type: deftypevr -#: guix-git/doc/guix.texi:25766 +#: guix-git/doc/guix.texi:26103 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-mech" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zeichenkette sasl-mech" #. type: deftypevr -#: guix-git/doc/guix.texi:25769 +#: guix-git/doc/guix.texi:26106 msgid "Specifies the SASL mechanism to be used when performing SASL authentication." msgstr "Gibt an, welcher SASL-Mechanismus benutzt werden soll, um Authentifizierung über SASL durchzuführen." #. type: deftypevr -#: guix-git/doc/guix.texi:25774 +#: guix-git/doc/guix.texi:26111 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-realm" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zeichenkette sasl-realm" #. type: deftypevr -#: guix-git/doc/guix.texi:25776 +#: guix-git/doc/guix.texi:26113 msgid "Specifies the SASL realm to be used when performing SASL authentication." msgstr "Gibt den SASL-Administrationsbereich an, um Authentifizierungen über SASL durchzuführen." #. type: deftypevr -#: guix-git/doc/guix.texi:25781 +#: guix-git/doc/guix.texi:26118 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-authcid" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zeichenkette sasl-authcid" #. type: deftypevr -#: guix-git/doc/guix.texi:25784 +#: guix-git/doc/guix.texi:26121 msgid "Specifies the authentication identity to be used when performing SASL authentication." msgstr "Gibt die Authentisierungsidentität an, um Authentifizierungen über SASL durchzuführen." #. type: deftypevr -#: guix-git/doc/guix.texi:25789 +#: guix-git/doc/guix.texi:26126 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-authzid" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zeichenkette sasl-authzid" #. type: deftypevr -#: guix-git/doc/guix.texi:25792 +#: guix-git/doc/guix.texi:26129 msgid "Specifies the authorization identity to be used when performing SASL authentication." msgstr "Gibt die Autorisierungsidentität an, um Authentifizierungen über SASL durchzuführen." #. type: deftypevr -#: guix-git/doc/guix.texi:25797 +#: guix-git/doc/guix.texi:26134 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean sasl-canonicalize?" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Boolescher-Ausdruck sasl-canonicalize?" #. type: deftypevr -#: guix-git/doc/guix.texi:25802 +#: guix-git/doc/guix.texi:26139 msgid "Determines whether the LDAP server host name should be canonicalised. If this is enabled the LDAP library will do a reverse host name lookup. By default, it is left up to the LDAP library whether this check is performed or not." msgstr "Legt fest, ob der kanonische Rechnername („Hostname“) des LDAP-Servers ermittelt werden soll. Wenn ja, wird die LDAP-Bibliothek eine inverse Auflösung („Reverse Lookup“) des Rechnernamens durchführen. Die Vorgabe ist, es der LDAP-Bibliothek zu überlassen, ob eine solche Überprüfung durchgeführt wird." #. type: deftypevr -#: guix-git/doc/guix.texi:25807 +#: guix-git/doc/guix.texi:26144 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string krb5-ccname" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zeichenkette krb5-ccname" #. type: deftypevr -#: guix-git/doc/guix.texi:25809 +#: guix-git/doc/guix.texi:26146 msgid "Set the name for the GSS-API Kerberos credentials cache." msgstr "Legt den Namen für den Zwischenspeicher der GSS-API-Kerberos-Zugangsdaten fest." #. type: deftypevr -#: guix-git/doc/guix.texi:25814 +#: guix-git/doc/guix.texi:26151 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string base" msgstr "{@code{nslcd-configuration}-Parameter} Zeichenkette base" #. type: deftypevr -#: guix-git/doc/guix.texi:25816 +#: guix-git/doc/guix.texi:26153 msgid "The directory search base." msgstr "Basis für die Verzeichnissuche." #. type: deftypevr -#: guix-git/doc/guix.texi:25818 +#: guix-git/doc/guix.texi:26155 msgid "Defaults to @samp{\"dc=example,dc=com\"}." msgstr "Vorgegeben ist @samp{\"dc=example,dc=com\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25821 +#: guix-git/doc/guix.texi:26158 #, no-wrap msgid "{@code{nslcd-configuration} parameter} scope-option scope" msgstr "{@code{nslcd-configuration}-Parameter} Suchbereichs-Einstellung scope" #. type: deftypevr -#: guix-git/doc/guix.texi:25825 +#: guix-git/doc/guix.texi:26162 msgid "Specifies the search scope (subtree, onelevel, base or children). The default scope is subtree; base scope is almost never useful for name service lookups; children scope is not supported on all servers." msgstr "Legt den Suchbereich fest als subtree (Teilbaum), onelevel (eine Ebene), base (Basis) oder children (Kinder). Die Vorgabe für den Suchbereich ist subtree; base ist fast nie geeignet für Namensdienstauflösungen; children wird nicht auf allen Servern unterstützt." #. type: deftypevr -#: guix-git/doc/guix.texi:25827 +#: guix-git/doc/guix.texi:26164 msgid "Defaults to @samp{(subtree)}." msgstr "Die Vorgabe ist @samp{(subtree)}." #. type: deftypevr -#: guix-git/doc/guix.texi:25830 +#: guix-git/doc/guix.texi:26167 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-deref-option deref" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Deref-Einstellung deref" #. type: deftypevr -#: guix-git/doc/guix.texi:25833 +#: guix-git/doc/guix.texi:26170 msgid "Specifies the policy for dereferencing aliases. The default policy is to never dereference aliases." msgstr "Legt die Richtlinie für das Dereferenzieren von Alias-Namen fest. Die vorgegebene Richtlinie ist, Alias-Namen niemals zu dereferenzieren." #. type: deftypevr -#: guix-git/doc/guix.texi:25838 +#: guix-git/doc/guix.texi:26175 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean referrals" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Boolescher-Ausdruck referrals" #. type: deftypevr -#: guix-git/doc/guix.texi:25841 +#: guix-git/doc/guix.texi:26178 msgid "Specifies whether automatic referral chasing should be enabled. The default behaviour is to chase referrals." msgstr "Gibt an, ob Verweise („Referrals“) automatisch verfolgt werden sollen. Das vorgegebene Verhalten ist, sie zu verfolgen." #. type: deftypevr -#: guix-git/doc/guix.texi:25846 +#: guix-git/doc/guix.texi:26183 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list-of-map-entries maps" msgstr "{@code{nslcd-configuration}-Parameter} Liste-von-Abbildungseinträgen maps" #. type: deftypevr -#: guix-git/doc/guix.texi:25851 +#: guix-git/doc/guix.texi:26188 msgid "This option allows for custom attributes to be looked up instead of the default RFC 2307 attributes. It is a list of maps, each consisting of the name of a map, the RFC 2307 attribute to match and the query expression for the attribute as it is available in the directory." msgstr "Diese Option ermöglicht es, eigene Attribute bei der Auflösung anstelle der vorgegebenen RFC-2307-Attribute zu verwenden. Es ist eine Liste von Abbildungen („Maps“), von denen jede aus dem Namen der Abbildung, dem abzubildenden RFC-2307-Attribut und einem Anfrageausdruck besteht, mit dem es anhand des Verzeichnisses aufgelöst wird." #. type: deftypevr -#: guix-git/doc/guix.texi:25856 +#: guix-git/doc/guix.texi:26193 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list-of-filter-entries filters" msgstr "{@code{nslcd-configuration}-Parameter} Liste-von-Filtereinträgen filters" #. type: deftypevr -#: guix-git/doc/guix.texi:25859 +#: guix-git/doc/guix.texi:26196 msgid "A list of filters consisting of the name of a map to which the filter applies and an LDAP search filter expression." msgstr "Eine Liste von Filtern, von denen jeder aus dem Namen einer Abbildung, auf die sich der Filter auswirkt, und einem LDAP-Suchfilter-Ausdruck besteht." #. type: deftypevr -#: guix-git/doc/guix.texi:25864 +#: guix-git/doc/guix.texi:26201 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number bind-timelimit" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zahl bind-timelimit" #. type: deftypevr -#: guix-git/doc/guix.texi:25867 +#: guix-git/doc/guix.texi:26204 msgid "Specifies the time limit in seconds to use when connecting to the directory server. The default value is 10 seconds." msgstr "Gibt die Zeitbeschränkung in Sekunden an, wie lange eine Verbindung zum Verzeichnisserver dauern darf. Die Vorgabe ist 10 Sekunden." #. type: deftypevr -#: guix-git/doc/guix.texi:25872 +#: guix-git/doc/guix.texi:26209 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number timelimit" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zahl timelimit" #. type: deftypevr -#: guix-git/doc/guix.texi:25876 +#: guix-git/doc/guix.texi:26213 msgid "Specifies the time limit (in seconds) to wait for a response from the LDAP server. A value of zero, which is the default, is to wait indefinitely for searches to be completed." msgstr "Gibt die Zeitbeschränkung (in Sekunden) an, wie lange auf eine Antwort vom LDAP-Server gewartet wird. Ein Wert von null, was die Vorgabe ist, bewirkt, dass beliebig lange gewartet wird, bis Suchen abgeschlossen sind." #. type: deftypevr -#: guix-git/doc/guix.texi:25881 +#: guix-git/doc/guix.texi:26218 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number idle-timelimit" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zahl idle-timelimit" #. type: deftypevr -#: guix-git/doc/guix.texi:25885 +#: guix-git/doc/guix.texi:26222 msgid "Specifies the period if inactivity (in seconds) after which the con‐ nection to the LDAP server will be closed. The default is not to time out connections." msgstr "Gibt an, wie lange bei Inaktivität gewartet wird (in Sekunden), bis die Verbindung zum LDAP-Server geschlossen wird. Die Vorgabe ist, dass es zu keiner Zeitüberschreitung bei Verbindungen kommen kann." #. type: deftypevr -#: guix-git/doc/guix.texi:25890 +#: guix-git/doc/guix.texi:26227 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number reconnect-sleeptime" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zahl reconnect-sleeptime" #. type: deftypevr -#: guix-git/doc/guix.texi:25894 +#: guix-git/doc/guix.texi:26231 msgid "Specifies the number of seconds to sleep when connecting to all LDAP servers fails. By default one second is waited between the first failure and the first retry." msgstr "Gibt die Anzahl an Sekunden an, wie lange „schlafend“ gewartet wird, wenn zu @emph{keinem} LDAP-Server eine Verbindung hergestellt werden kann. Die Vorgabe ist, zwischen dem ersten Fehlversuch und dem ersten neuen Versuch 1@tie{}Sekunde zu warten." #. type: deftypevr -#: guix-git/doc/guix.texi:25899 +#: guix-git/doc/guix.texi:26236 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number reconnect-retrytime" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zahl reconnect-retrytime" #. type: deftypevr -#: guix-git/doc/guix.texi:25903 +#: guix-git/doc/guix.texi:26240 msgid "Specifies the time after which the LDAP server is considered to be permanently unavailable. Once this time is reached retries will be done only once per this time period. The default value is 10 seconds." msgstr "Gibt an, nach wie viel Zeit der LDAP-Server als dauerhaft nicht verfügbar angesehen wird. Sobald dieser Fall eintritt, wird eine Verbindungsaufnahme nur noch einmal pro weiterem Ablauf dieser Zeitperiode versucht. Der Vorgabewert beträgt 10@tie{}Sekunden." #. type: deftypevr -#: guix-git/doc/guix.texi:25908 +#: guix-git/doc/guix.texi:26245 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-ssl-option ssl" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-SSL-Einstellung ssl" #. type: deftypevr -#: guix-git/doc/guix.texi:25912 +#: guix-git/doc/guix.texi:26249 msgid "Specifies whether to use SSL/TLS or not (the default is not to). If 'start-tls is specified then StartTLS is used rather than raw LDAP over SSL." msgstr "Gibt an, ob SSL/TLS benutzt werden soll oder nicht (die Vorgabe ist, es @emph{nicht} zu benutzen). Wenn 'start-tls angegeben wird, dann wird StartTLS statt schlichtem LDAP über SSL benutzt." #. type: deftypevr -#: guix-git/doc/guix.texi:25917 +#: guix-git/doc/guix.texi:26254 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-tls-reqcert-option tls-reqcert" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-„tls-reqcert“-Einstellung tls-reqcert" #. type: deftypevr -#: guix-git/doc/guix.texi:25920 +#: guix-git/doc/guix.texi:26257 msgid "Specifies what checks to perform on a server-supplied certificate. The meaning of the values is described in the ldap.conf(5) manual page." msgstr "Gibt an, welche Überprüfungen auf einem vom Server empfangenen Zertifikat durchgeführt werden sollen. Die Bedeutung der Werte wird auf der Handbuchseite zu ldap.conf(5) beschrieben." #. type: deftypevr -#: guix-git/doc/guix.texi:25925 +#: guix-git/doc/guix.texi:26262 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cacertdir" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zeichenkette tls-cacertdir" #. type: deftypevr -#: guix-git/doc/guix.texi:25928 +#: guix-git/doc/guix.texi:26265 msgid "Specifies the directory containing X.509 certificates for peer authen‐ tication. This parameter is ignored when using GnuTLS." msgstr "Gibt das Verzeichnis an, das X.509-Zertifikate zur Authentifikation von Kommunikationspartnern enthält. Dieser Parameter wird ignoriert, wenn Sie GnuTLS benutzen lassen." #. type: deftypevr -#: guix-git/doc/guix.texi:25933 +#: guix-git/doc/guix.texi:26270 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cacertfile" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zeichenkette tls-cacertfile" #. type: deftypevr -#: guix-git/doc/guix.texi:25935 +#: guix-git/doc/guix.texi:26272 msgid "Specifies the path to the X.509 certificate for peer authentication." msgstr "Gibt den Dateipfad zu dem X.509-Zertifikat zur Authentifikation von Kommunikationspartnern an." #. type: deftypevr -#: guix-git/doc/guix.texi:25940 +#: guix-git/doc/guix.texi:26277 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-randfile" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zeichenkette tls-randfile" #. type: deftypevr -#: guix-git/doc/guix.texi:25943 +#: guix-git/doc/guix.texi:26280 msgid "Specifies the path to an entropy source. This parameter is ignored when using GnuTLS." msgstr "Gibt den Pfad zu einer Entropiequelle an. Dieser Parameter wird ignoriert, wenn Sie GnuTLS benutzen lassen." #. type: deftypevr -#: guix-git/doc/guix.texi:25948 +#: guix-git/doc/guix.texi:26285 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-ciphers" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zeichenkette tls-ciphers" #. type: deftypevr -#: guix-git/doc/guix.texi:25950 +#: guix-git/doc/guix.texi:26287 msgid "Specifies the ciphers to use for TLS as a string." msgstr "Gibt als eine Zeichenkette an, welche Ciphers für TLS benutzt werden sollen." #. type: deftypevr -#: guix-git/doc/guix.texi:25955 +#: guix-git/doc/guix.texi:26292 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cert" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zeichenkette tls-cert" #. type: deftypevr -#: guix-git/doc/guix.texi:25958 +#: guix-git/doc/guix.texi:26295 msgid "Specifies the path to the file containing the local certificate for client TLS authentication." msgstr "Gibt den Pfad zu der Datei an, die das lokale Zertifikat zur TLS-Authentisierung als Client enthält." #. type: deftypevr -#: guix-git/doc/guix.texi:25963 +#: guix-git/doc/guix.texi:26300 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-key" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zeichenkette tls-key" #. type: deftypevr -#: guix-git/doc/guix.texi:25966 +#: guix-git/doc/guix.texi:26303 msgid "Specifies the path to the file containing the private key for client TLS authentication." msgstr "Gibt den Pfad zu der Datei an, die den privaten Schlüssel zur TLS-Authentisierung als Client enthält." #. type: deftypevr -#: guix-git/doc/guix.texi:25971 +#: guix-git/doc/guix.texi:26308 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number pagesize" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zahl pagesize" #. type: deftypevr -#: guix-git/doc/guix.texi:25975 +#: guix-git/doc/guix.texi:26312 msgid "Set this to a number greater than 0 to request paged results from the LDAP server in accordance with RFC2696. The default (0) is to not request paged results." msgstr "Geben Sie hier eine Zahl größer als 0 an, um beim LDAP-Server seitenweise Antworten anzufordern, entsprechend RFC2696. Die Vorgabe (0) fordert alle Ergebnisse auf einmal an." #. type: deftypevr -#: guix-git/doc/guix.texi:25980 +#: guix-git/doc/guix.texi:26317 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-ignore-users-option nss-initgroups-ignoreusers" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-„ignore-users“-Einstellung nss-initgroups-ignoreusers" #. type: deftypevr -#: guix-git/doc/guix.texi:25984 +#: guix-git/doc/guix.texi:26321 msgid "This option prevents group membership lookups through LDAP for the specified users. Alternatively, the value 'all-local may be used. With that value nslcd builds a full list of non-LDAP users on startup." msgstr "Diese Einstellung verhindert, dass für die angegebenen Benutzer die Gruppenmitgliedschaft über LDAP aufgelöst wird. Alternativ kann der Wert 'all-local verwendet werden. Für diesen Wert erzeugt nslcd eine vollständige Liste aller Nicht-LDAP-Benutzer, wenn es startet." #. type: deftypevr -#: guix-git/doc/guix.texi:25989 +#: guix-git/doc/guix.texi:26326 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-min-uid" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zahl nss-min-uid" #. type: deftypevr -#: guix-git/doc/guix.texi:25992 +#: guix-git/doc/guix.texi:26329 msgid "This option ensures that LDAP users with a numeric user id lower than the specified value are ignored." msgstr "Diese Einstellung lässt sicherstellen, dass LDAP-Benutzer, deren numerischer Benutzeridentifikator kleiner als der angegebene Wert ist, ignoriert werden." #. type: deftypevr -#: guix-git/doc/guix.texi:25997 +#: guix-git/doc/guix.texi:26334 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-uid-offset" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zahl nss-uid-offset" #. type: deftypevr -#: guix-git/doc/guix.texi:26000 +#: guix-git/doc/guix.texi:26337 msgid "This option specifies an offset that is added to all LDAP numeric user ids. This can be used to avoid user id collisions with local users." msgstr "Diese Einstellung gibt einen Versatz an, der auf den numerischen Benutzeridentifikator jedes LDAP-Nutzers aufaddiert wird. Damit können Konflikte zwischen den Benutzeridentifikatoren lokaler Benutzerkonten und LDAP vermieden werden." #. type: deftypevr -#: guix-git/doc/guix.texi:26005 +#: guix-git/doc/guix.texi:26342 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-gid-offset" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zahl nss-gid-offset" #. type: deftypevr -#: guix-git/doc/guix.texi:26008 +#: guix-git/doc/guix.texi:26345 msgid "This option specifies an offset that is added to all LDAP numeric group ids. This can be used to avoid user id collisions with local groups." msgstr "Diese Einstellung gibt einen Versatz an, der auf den numerischen Gruppenidentifikator jedes LDAP-Nutzers aufaddiert wird. Damit können Konflikte zwischen den Gruppenidentifikatoren lokaler Gruppen und LDAP vermieden werden." #. type: deftypevr -#: guix-git/doc/guix.texi:26013 +#: guix-git/doc/guix.texi:26350 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-nested-groups" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Boolescher-Ausdruck nss-nested-groups" #. type: deftypevr -#: guix-git/doc/guix.texi:26019 +#: guix-git/doc/guix.texi:26356 msgid "If this option is set, the member attribute of a group may point to another group. Members of nested groups are also returned in the higher level group and parent groups are returned when finding groups for a specific user. The default is not to perform extra searches for nested groups." msgstr "Wenn diese Einstellung aktiviert ist, können die Attribute einer Gruppe auch wieder Verweise auf eine andere Gruppe sein. Attribute darin verschachtelter („nested“) Gruppen werden für die Gruppe auf höherer Ebene ebenfalls zurückgeliefert und Elterngruppen werden zurückgeliefert, wenn nach den Gruppen eines bestimmten Nutzers gesucht wird. Die Vorgabe ist, keine zusätzlichen Suchen nach verschachtelten Gruppen durchzuführen." #. type: deftypevr -#: guix-git/doc/guix.texi:26024 +#: guix-git/doc/guix.texi:26361 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-getgrent-skipmembers" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Boolescher-Ausdruck nss-getgrent-skipmembers" #. type: deftypevr -#: guix-git/doc/guix.texi:26029 +#: guix-git/doc/guix.texi:26366 msgid "If this option is set, the group member list is not retrieved when looking up groups. Lookups for finding which groups a user belongs to will remain functional so the user will likely still get the correct groups assigned on login." msgstr "Wenn diese Einstellung aktiviert ist, wird die Liste der Gruppenmitglieder beim Auflösen von Gruppen nicht angefragt. Zu welchen Gruppen ein Benutzer gehört, kann weiterhin angefragt werden, damit dem Benutzer bei der Anmeldung wahrscheinlich dennoch die richtigen Gruppen zugeordnet werden." #. type: deftypevr -#: guix-git/doc/guix.texi:26034 +#: guix-git/doc/guix.texi:26371 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-disable-enumeration" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Boolescher-Ausdruck nss-disable-enumeration" #. type: deftypevr -#: guix-git/doc/guix.texi:26040 +#: guix-git/doc/guix.texi:26377 msgid "If this option is set, functions which cause all user/group entries to be loaded from the directory will not succeed in doing so. This can dramatically reduce LDAP server load in situations where there are a great number of users and/or groups. This option is not recommended for most configurations." msgstr "Wenn diese Einstellung aktiviert ist, scheitern Funktionen, die alle Benutzer-/Gruppeneinträge aus dem Verzeichnis zu laden versuchen. Dadurch kann die Auslastung von LDAP-Servern wesentlich reduziert werden, wenn es eine große Anzahl von Benutzern und/oder Gruppen gibt. Diese Einstellung wird für die meisten Konfigurationen @emph{nicht} empfohlen." #. type: deftypevr -#: guix-git/doc/guix.texi:26045 +#: guix-git/doc/guix.texi:26382 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string validnames" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zeichenkette validnames" #. type: deftypevr -#: guix-git/doc/guix.texi:26049 +#: guix-git/doc/guix.texi:26386 msgid "This option can be used to specify how user and group names are verified within the system. This pattern is used to check all user and group names that are requested and returned from LDAP." msgstr "Mit dieser Einstellung kann festgelegt werden, wie Benutzer- und Gruppennamen vom System geprüft werden. Das angegebene Muster wird zur Prüfung aller Benutzer- und Gruppennamen benutzt, die über LDAP angefragt und zurückgeliefert werden." #. type: deftypevr -#: guix-git/doc/guix.texi:26054 +#: guix-git/doc/guix.texi:26391 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean ignorecase" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Boolescher-Ausdruck ignorecase" #. type: deftypevr -#: guix-git/doc/guix.texi:26059 +#: guix-git/doc/guix.texi:26396 msgid "This specifies whether or not to perform searches using case-insensitive matching. Enabling this could open up the system to authorization bypass vulnerabilities and introduce nscd cache poisoning vulnerabilities which allow denial of service." msgstr "Hiermit wird festgelegt, ob bei Suchen nach passenden Einträgen @emph{nicht} auf Groß- und Kleinschreibung geachtet wird. Wenn Sie dies aktivieren, könnte es zu Sicherheitslücken kommen, mit denen Autorisierungen umgangen („Authorization Bypass“) oder der nscd-Zwischenspeicher vergiftet werden kann („Cache Poisoning“), was gezielte Überlastungen ermöglichen würde („Denial of Service“)." #. type: deftypevr -#: guix-git/doc/guix.texi:26064 +#: guix-git/doc/guix.texi:26401 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean pam-authc-ppolicy" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Boolescher-Ausdruck pam-authc-ppolicy" #. type: deftypevr -#: guix-git/doc/guix.texi:26067 +#: guix-git/doc/guix.texi:26404 msgid "This option specifies whether password policy controls are requested and handled from the LDAP server when performing user authentication." msgstr "Mit dieser Einstellung wird festgelegt, ob Passwortrichtliniensteuerung vom LDAP-Server angefragt und behandelt wird, wenn Nutzer authentifiziert werden." #. type: deftypevr -#: guix-git/doc/guix.texi:26072 +#: guix-git/doc/guix.texi:26409 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-authc-search" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zeichenkette pam-authc-search" #. type: deftypevr -#: guix-git/doc/guix.texi:26078 +#: guix-git/doc/guix.texi:26415 msgid "By default nslcd performs an LDAP search with the user's credentials after BIND (authentication) to ensure that the BIND operation was successful. The default search is a simple check to see if the user's DN exists. A search filter can be specified that will be used instead. It should return at least one entry." msgstr "Nach Vorgabe führt nslcd eine LDAP-Suche nach jeder BIND-Operation (zur Authentisierung) durch, um sicherzustellen, dass die BIND-Operation erfolgreich durchgeführt wurde. Die vorgegebene Suche ist eine einfache Überprüfung, ob der DN eines Benutzers existiert. Hier kann ein Suchfilter angegeben werden, der stattdessen benutzt werden soll. Er sollte mindestens einen Eintrag liefern." #. type: deftypevr -#: guix-git/doc/guix.texi:26083 +#: guix-git/doc/guix.texi:26420 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-authz-search" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zeichenkette pam-authz-search" #. type: deftypevr -#: guix-git/doc/guix.texi:26087 +#: guix-git/doc/guix.texi:26424 msgid "This option allows flexible fine tuning of the authorisation check that should be performed. The search filter specified is executed and if any entries match, access is granted, otherwise access is denied." msgstr "Diese Einstellung ermöglicht flexible Feineinstellungen an der durchzuführenden Autorisierungsprüfung. Der angegebene Suchfilter wird ausgeführt, woraufhin Zugriff gewährt wird, wenn mindestens ein Eintrag passt, andernfall wird der Zugriff verweigert." #. type: deftypevr -#: guix-git/doc/guix.texi:26092 +#: guix-git/doc/guix.texi:26429 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-password-prohibit-message" msgstr "{@code{nslcd-configuration}-Parameter} Vielleicht-Zeichenkette pam-password-prohibit-message" #. type: deftypevr -#: guix-git/doc/guix.texi:26097 +#: guix-git/doc/guix.texi:26434 msgid "If this option is set password modification using pam_ldap will be denied and the specified message will be presented to the user instead. The message can be used to direct the user to an alternative means of changing their password." msgstr "Wenn diese Einstellung festgelegt wurde, werden Passwortänderungen über pam_ldap abgelehnt und dem Anwender wird stattdessen die festgelegte Nachricht gezeigt. Die Nachricht kann benutzt werden, um den Anwender auf alternative Methoden aufmerksam zu machen, wie er sein Passwort ändern kann." #. type: deftypevr -#: guix-git/doc/guix.texi:26102 +#: guix-git/doc/guix.texi:26439 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list pam-services" msgstr "{@code{nslcd-configuration}-Parameter} Liste pam-services" #. type: deftypevr -#: guix-git/doc/guix.texi:26104 +#: guix-git/doc/guix.texi:26441 msgid "List of pam service names for which LDAP authentication should suffice." msgstr "Die Liste der PAM-Dienstnamen, für die eine LDAP-Authentisierung als ausreichend gilt." #. type: cindex -#: guix-git/doc/guix.texi:26115 +#: guix-git/doc/guix.texi:26452 #, no-wrap msgid "web" msgstr "Web" #. type: cindex -#: guix-git/doc/guix.texi:26116 +#: guix-git/doc/guix.texi:26453 #, no-wrap msgid "www" msgstr "WWW" #. type: cindex -#: guix-git/doc/guix.texi:26117 +#: guix-git/doc/guix.texi:26454 #, no-wrap msgid "HTTP" msgstr "HTTP" #. type: Plain text -#: guix-git/doc/guix.texi:26120 +#: guix-git/doc/guix.texi:26457 msgid "The @code{(gnu services web)} module provides the Apache HTTP Server, the nginx web server, and also a fastcgi wrapper daemon." msgstr "Das Modul @code{(gnu services web)} stellt den Apache-HTTP-Server, den nginx-Webserver und auch einen fastcgi-Wrapperdienst bereit." #. type: subsubheading -#: guix-git/doc/guix.texi:26121 +#: guix-git/doc/guix.texi:26458 #, no-wrap msgid "Apache HTTP Server" msgstr "Apache-HTTP-Server" #. type: deffn -#: guix-git/doc/guix.texi:26123 +#: guix-git/doc/guix.texi:26460 #, no-wrap msgid "{Scheme Variable} httpd-service-type" msgstr "{Scheme-Variable} httpd-service-type" #. type: deffn -#: guix-git/doc/guix.texi:26127 +#: guix-git/doc/guix.texi:26464 msgid "Service type for the @uref{https://httpd.apache.org/,Apache HTTP} server (@dfn{httpd}). The value for this service type is a @code{httpd-configuration} record." msgstr "Diensttyp für den @uref{https://httpd.apache.org/,Apache-HTTP-Server} @dfn{httpd}. Der Wert dieses Diensttyps ist ein @code{httpd-configuration}-Verbund." #. type: deffn -#: guix-git/doc/guix.texi:26129 guix-git/doc/guix.texi:26311 +#: guix-git/doc/guix.texi:26466 guix-git/doc/guix.texi:26648 msgid "A simple example configuration is given below." msgstr "Es folgt ein einfaches Beispiel der Konfiguration." #. type: lisp -#: guix-git/doc/guix.texi:26137 +#: guix-git/doc/guix.texi:26474 #, no-wrap msgid "" "(service httpd-service-type\n" @@ -48548,12 +49233,12 @@ msgstr "" " (document-root \"/srv/http/www.example.com\")))))\n" #. type: deffn -#: guix-git/doc/guix.texi:26141 +#: guix-git/doc/guix.texi:26478 msgid "Other services can also extend the @code{httpd-service-type} to add to the configuration." msgstr "Andere Dienste können den @code{httpd-service-type} auch erweitern, um etwas zur Konfiguration hinzuzufügen." #. type: lisp -#: guix-git/doc/guix.texi:26150 guix-git/doc/guix.texi:26290 +#: guix-git/doc/guix.texi:26487 guix-git/doc/guix.texi:26627 #, no-wrap msgid "" "(simple-service 'www.example.com-server httpd-service-type\n" @@ -48573,115 +49258,115 @@ msgstr "" " \"\\n\")))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:26156 +#: guix-git/doc/guix.texi:26493 msgid "The details for the @code{httpd-configuration}, @code{httpd-module}, @code{httpd-config-file} and @code{httpd-virtualhost} record types are given below." msgstr "Nun folgt eine Beschreibung der Verbundstypen @code{httpd-configuration}, @code{httpd-module}, @code{httpd-config-file} und @code{httpd-virtualhost}." #. type: deffn -#: guix-git/doc/guix.texi:26157 +#: guix-git/doc/guix.texi:26494 #, no-wrap msgid "{Data Type} httpd-configuration" msgstr "{Datentyp} httpd-configuration" #. type: deffn -#: guix-git/doc/guix.texi:26159 +#: guix-git/doc/guix.texi:26496 msgid "This data type represents the configuration for the httpd service." msgstr "Dieser Datentyp repräsentiert die Konfiguration des httpd-Dienstes." #. type: item -#: guix-git/doc/guix.texi:26161 +#: guix-git/doc/guix.texi:26498 #, no-wrap msgid "@code{package} (default: @code{httpd})" msgstr "@code{package} (Vorgabe: @code{httpd})" #. type: table -#: guix-git/doc/guix.texi:26163 +#: guix-git/doc/guix.texi:26500 msgid "The httpd package to use." msgstr "Das zu benutzende httpd-Paket." #. type: item -#: guix-git/doc/guix.texi:26164 guix-git/doc/guix.texi:26253 +#: guix-git/doc/guix.texi:26501 guix-git/doc/guix.texi:26590 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/httpd\"})" msgstr "@code{pid-file} (Vorgabe: @code{\"/var/run/httpd\"})" #. type: table -#: guix-git/doc/guix.texi:26166 +#: guix-git/doc/guix.texi:26503 msgid "The pid file used by the shepherd-service." msgstr "Die vom Shepherd-Dienst benutzte PID-Datei." #. type: item -#: guix-git/doc/guix.texi:26167 +#: guix-git/doc/guix.texi:26504 #, no-wrap msgid "@code{config} (default: @code{(httpd-config-file)})" msgstr "@code{config} (Vorgabe: @code{(httpd-config-file)})" #. type: table -#: guix-git/doc/guix.texi:26172 +#: guix-git/doc/guix.texi:26509 msgid "The configuration file to use with the httpd service. The default value is a @code{httpd-config-file} record, but this can also be a different G-expression that generates a file, for example a @code{plain-file}. A file outside of the store can also be specified through a string." msgstr "Die vom httpd-Dienst zu benutzende Konfigurationsdatei. Vorgegeben ist ein @code{httpd-config-file}-Verbundsobjekt, aber als Wert kann auch ein anderer G-Ausdruck benutzt werden, der eine Datei erzeugt, zum Beispiel ein @code{plain-file}. Es kann auch eine Datei außerhalb des Stores mit einer Zeichenkette angegeben werden." #. type: deffn -#: guix-git/doc/guix.texi:26176 +#: guix-git/doc/guix.texi:26513 #, no-wrap msgid "{Data Type} httpd-module" msgstr "{Datentyp} httpd-module" #. type: deffn -#: guix-git/doc/guix.texi:26178 +#: guix-git/doc/guix.texi:26515 msgid "This data type represents a module for the httpd service." msgstr "Dieser Datentyp steht für ein Modul des httpd-Dienstes." #. type: table -#: guix-git/doc/guix.texi:26182 +#: guix-git/doc/guix.texi:26519 msgid "The name of the module." msgstr "Der Name des Moduls." #. type: table -#: guix-git/doc/guix.texi:26188 +#: guix-git/doc/guix.texi:26525 msgid "The file for the module. This can be relative to the httpd package being used, the absolute location of a file, or a G-expression for a file within the store, for example @code{(file-append mod-wsgi \"/modules/mod_wsgi.so\")}." msgstr "Die Datei, in der das Modul steht. Sie kann relativ zum benutzten httpd-Paket oder als absoluter Pfad einer Datei oder als ein G-Ausdruck für eine Datei im Store angegeben werden, zum Beispiel @code{(file-append mod-wsgi \"/modules/mod_wsgi.so\")}." #. type: defvr -#: guix-git/doc/guix.texi:26192 +#: guix-git/doc/guix.texi:26529 #, no-wrap msgid "{Scheme Variable} %default-httpd-modules" msgstr "{Scheme-Variable} %default-httpd-modules" #. type: defvr -#: guix-git/doc/guix.texi:26194 +#: guix-git/doc/guix.texi:26531 msgid "A default list of @code{httpd-module} objects." msgstr "Eine vorgegebene Liste von @code{httpd-module}-Objekten." #. type: deffn -#: guix-git/doc/guix.texi:26196 +#: guix-git/doc/guix.texi:26533 #, no-wrap msgid "{Data Type} httpd-config-file" msgstr "{Datentyp} httpd-config-file" #. type: deffn -#: guix-git/doc/guix.texi:26198 +#: guix-git/doc/guix.texi:26535 msgid "This data type represents a configuration file for the httpd service." msgstr "Dieser Datentyp repräsentiert eine Konfigurationsdatei für den httpd-Dienst." #. type: item -#: guix-git/doc/guix.texi:26200 +#: guix-git/doc/guix.texi:26537 #, no-wrap msgid "@code{modules} (default: @code{%default-httpd-modules})" msgstr "@code{modules} (Vorgabe: @code{%default-httpd-modules})" #. type: table -#: guix-git/doc/guix.texi:26203 +#: guix-git/doc/guix.texi:26540 msgid "The modules to load. Additional modules can be added here, or loaded by additional configuration." msgstr "Welche Module geladen werden sollen. Zusätzliche Module können hier eingetragen werden oder durch eine zusätzliche Konfigurationsangabe geladen werden." #. type: table -#: guix-git/doc/guix.texi:26206 +#: guix-git/doc/guix.texi:26543 msgid "For example, in order to handle requests for PHP files, you can use Apache’s @code{mod_proxy_fcgi} module along with @code{php-fpm-service-type}:" msgstr "Um zum Beispiel Anfragen nach PHP-Dateien zu behandeln, können Sie das Modul @code{mod_proxy_fcgi} von Apache zusammen mit @code{php-fpm-service-type} benutzen:" #. type: lisp -#: guix-git/doc/guix.texi:26228 +#: guix-git/doc/guix.texi:26565 #, no-wrap msgid "" "(service httpd-service-type\n" @@ -48727,165 +49412,165 @@ msgstr "" " (socket-group \"httpd\")))\n" #. type: item -#: guix-git/doc/guix.texi:26230 +#: guix-git/doc/guix.texi:26567 #, no-wrap msgid "@code{server-root} (default: @code{httpd})" msgstr "@code{server-root} (Vorgabe: @code{httpd})" #. type: table -#: guix-git/doc/guix.texi:26234 +#: guix-git/doc/guix.texi:26571 msgid "The @code{ServerRoot} in the configuration file, defaults to the httpd package. Directives including @code{Include} and @code{LoadModule} are taken as relative to the server root." msgstr "Die @code{ServerRoot} in der Konfigurationsdatei, vorgegeben ist das httpd-Paket. Direktiven wie @code{Include} und @code{LoadModule} werden relativ zur ServerRoot interpretiert." #. type: item -#: guix-git/doc/guix.texi:26235 +#: guix-git/doc/guix.texi:26572 #, no-wrap msgid "@code{server-name} (default: @code{#f})" msgstr "@code{server-name} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:26239 +#: guix-git/doc/guix.texi:26576 msgid "The @code{ServerName} in the configuration file, used to specify the request scheme, hostname and port that the server uses to identify itself." msgstr "Der @code{ServerName} in der Konfigurationsdatei, mit dem das Anfrageschema (Request Scheme), der Rechnername (Hostname) und Port angegeben wird, mit denen sich der Server identifiziert." #. type: table -#: guix-git/doc/guix.texi:26243 +#: guix-git/doc/guix.texi:26580 msgid "This doesn't need to be set in the server config, and can be specified in virtual hosts. The default is @code{#f} to not specify a @code{ServerName}." msgstr "Es muss nicht als Teil der Server-Konfiguration festgelegt werden, sondern kann auch in virtuellen Rechnern (Virtual Hosts) festgelegt werden. Vorgegeben ist @code{#f}, wodurch kein @code{ServerName} festgelegt wird." #. type: item -#: guix-git/doc/guix.texi:26244 +#: guix-git/doc/guix.texi:26581 #, no-wrap msgid "@code{document-root} (default: @code{\"/srv/http\"})" msgstr "@code{document-root} (Vorgabe: @code{\"/srv/http\"})" #. type: table -#: guix-git/doc/guix.texi:26246 +#: guix-git/doc/guix.texi:26583 msgid "The @code{DocumentRoot} from which files will be served." msgstr "Das @code{DocumentRoot}-Verzeichnis, in dem sich die Dateien befinden, die man vom Server abrufen kann." #. type: item -#: guix-git/doc/guix.texi:26247 +#: guix-git/doc/guix.texi:26584 #, no-wrap msgid "@code{listen} (default: @code{'(\"80\")})" msgstr "@code{listen} (Vorgabe: @code{'(\"80\")})" #. type: table -#: guix-git/doc/guix.texi:26252 +#: guix-git/doc/guix.texi:26589 msgid "The list of values for the @code{Listen} directives in the config file. The value should be a list of strings, when each string can specify the port number to listen on, and optionally the IP address and protocol to use." msgstr "Die Liste der Werte für die @code{Listen}-Direktive in der Konfigurationsdatei. Als Wert sollte eine Liste von Zeichenketten angegeben werden, die jeweils die Portnummer, auf der gelauscht wird, und optional auch die zu benutzende IP-Adresse und das Protokoll angeben." #. type: table -#: guix-git/doc/guix.texi:26257 +#: guix-git/doc/guix.texi:26594 msgid "The @code{PidFile} to use. This should match the @code{pid-file} set in the @code{httpd-configuration} so that the Shepherd service is configured correctly." msgstr "Hiermit wird die PID-Datei als @code{PidFile}-Direktive angegeben. Der Wert sollte mit der @code{pid-file}-Datei in der @code{httpd-configuration} übereinstimmen, damit der Shepherd-Dienst richtig konfiguriert ist." #. type: item -#: guix-git/doc/guix.texi:26258 +#: guix-git/doc/guix.texi:26595 #, no-wrap msgid "@code{error-log} (default: @code{\"/var/log/httpd/error_log\"})" msgstr "@code{error-log} (Vorgabe: @code{\"/var/log/httpd/error_log\"})" #. type: table -#: guix-git/doc/guix.texi:26260 +#: guix-git/doc/guix.texi:26597 msgid "The @code{ErrorLog} to which the server will log errors." msgstr "Der Ort, an den der Server mit der @code{ErrorLog}-Direktive Fehlerprotokolle schreibt." #. type: item -#: guix-git/doc/guix.texi:26261 guix-git/doc/guix.texi:26823 +#: guix-git/doc/guix.texi:26598 guix-git/doc/guix.texi:27160 #, no-wrap msgid "@code{user} (default: @code{\"httpd\"})" msgstr "@code{user} (Vorgabe: @code{\"httpd\"})" #. type: table -#: guix-git/doc/guix.texi:26263 +#: guix-git/doc/guix.texi:26600 msgid "The @code{User} which the server will answer requests as." msgstr "Der Benutzer, als der der Server durch die @code{User}-Direktive Anfragen beantwortet." #. type: item -#: guix-git/doc/guix.texi:26264 +#: guix-git/doc/guix.texi:26601 #, no-wrap msgid "@code{group} (default: @code{\"httpd\"})" msgstr "@code{group} (Vorgabe: @code{\"httpd\"})" #. type: table -#: guix-git/doc/guix.texi:26266 +#: guix-git/doc/guix.texi:26603 msgid "The @code{Group} which the server will answer requests as." msgstr "Die Gruppe, mit der der Server durch die @code{Group}-Direktive Anfragen beantwortet." #. type: item -#: guix-git/doc/guix.texi:26267 +#: guix-git/doc/guix.texi:26604 #, no-wrap msgid "@code{extra-config} (default: @code{(list \"TypesConfig etc/httpd/mime.types\")})" msgstr "@code{extra-config} (Vorgabe: @code{(list \"TypesConfig etc/httpd/mime.types\")})" #. type: table -#: guix-git/doc/guix.texi:26270 +#: guix-git/doc/guix.texi:26607 msgid "A flat list of strings and G-expressions which will be added to the end of the configuration file." msgstr "Eine flache Liste von Zeichenketten und G-Ausdrücken, die am Ende der Konfigurationsdatei hinzugefügt werden." #. type: table -#: guix-git/doc/guix.texi:26273 +#: guix-git/doc/guix.texi:26610 msgid "Any values which the service is extended with will be appended to this list." msgstr "Alle Werte, mit denen dieser Dienst erweitert wird, werden an die Liste angehängt." #. type: deffn -#: guix-git/doc/guix.texi:26277 +#: guix-git/doc/guix.texi:26614 #, no-wrap msgid "{Data Type} httpd-virtualhost" msgstr "{Datentyp} httpd-virtualhost" #. type: deffn -#: guix-git/doc/guix.texi:26279 +#: guix-git/doc/guix.texi:26616 msgid "This data type represents a virtualhost configuration block for the httpd service." msgstr "Dieser Datentyp repräsentiert einen Konfigurationsblock für einen virtuellen Rechner (Virtual Host) des httpd-Dienstes." #. type: deffn -#: guix-git/doc/guix.texi:26281 +#: guix-git/doc/guix.texi:26618 msgid "These should be added to the extra-config for the httpd-service." msgstr "Sie sollten zur zusätzlichen Konfiguration extra-config des httpd-Dienstes hinzugefügt werden." #. type: code{#1} -#: guix-git/doc/guix.texi:26293 +#: guix-git/doc/guix.texi:26630 #, no-wrap msgid "addresses-and-ports" msgstr "addresses-and-ports" #. type: table -#: guix-git/doc/guix.texi:26295 +#: guix-git/doc/guix.texi:26632 msgid "The addresses and ports for the @code{VirtualHost} directive." msgstr "Adressen und Ports für die @code{VirtualHost}-Direktive." #. type: code{#1} -#: guix-git/doc/guix.texi:26296 +#: guix-git/doc/guix.texi:26633 #, no-wrap msgid "contents" msgstr "contents" #. type: table -#: guix-git/doc/guix.texi:26299 +#: guix-git/doc/guix.texi:26636 msgid "The contents of the @code{VirtualHost} directive, this should be a list of strings and G-expressions." msgstr "Der Inhalt der @code{VirtualHost}-Direktive. Er sollte als Liste von Zeichenketten und G-Ausdrücken angegeben werden." #. type: subsubheading -#: guix-git/doc/guix.texi:26304 +#: guix-git/doc/guix.texi:26641 #, no-wrap msgid "NGINX" msgstr "NGINX" #. type: deffn -#: guix-git/doc/guix.texi:26306 +#: guix-git/doc/guix.texi:26643 #, no-wrap msgid "{Scheme Variable} nginx-service-type" msgstr "{Scheme-Variable} nginx-service-type" #. type: deffn -#: guix-git/doc/guix.texi:26309 +#: guix-git/doc/guix.texi:26646 msgid "Service type for the @uref{https://nginx.org/,NGinx} web server. The value for this service type is a @code{} record." msgstr "Diensttyp für den @uref{https://nginx.org/,NGinx-Webserver}. Der Wert des Dienstes ist ein @code{}-Verbundsobjekt." #. type: lisp -#: guix-git/doc/guix.texi:26319 guix-git/doc/guix.texi:26373 +#: guix-git/doc/guix.texi:26656 guix-git/doc/guix.texi:26710 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -48903,12 +49588,12 @@ msgstr "" " (root \"/srv/http/www.example.com\"))))))\n" #. type: deffn -#: guix-git/doc/guix.texi:26324 +#: guix-git/doc/guix.texi:26661 msgid "In addition to adding server blocks to the service configuration directly, this service can be extended by other services to add server blocks, as in this example:" msgstr "Außer durch direktes Hinzufügen von Server-Blöcken zur Dienstkonfiguration kann der Dienst auch durch andere Dienste erweitert werden, um Server-Blöcke hinzuzufügen, wie man im folgenden Beispiel sieht:" #. type: lisp -#: guix-git/doc/guix.texi:26330 +#: guix-git/doc/guix.texi:26667 #, no-wrap msgid "" "(simple-service 'my-extra-server nginx-service-type\n" @@ -48922,88 +49607,88 @@ msgstr "" " (try-files (list \"$uri\" \"$uri/index.html\")))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:26341 +#: guix-git/doc/guix.texi:26678 msgid "At startup, @command{nginx} has not yet read its configuration file, so it uses a default file to log error messages. If it fails to load its configuration file, that is where error messages are logged. After the configuration file is loaded, the default error log file changes as per configuration. In our case, startup error messages can be found in @file{/var/run/nginx/logs/error.log}, and after configuration in @file{/var/log/nginx/error.log}. The second location can be changed with the @var{log-directory} configuration option." msgstr "Beim Starten hat @command{nginx} seine Konfigurationsdatei noch nicht gelesen und benutzt eine vorgegebene Datei, um Fehlermeldungen zu protokollieren. Wenn er seine Konfigurationsdatei nicht laden kann, landen Fehlermeldungen also dort. Nachdem die Konfigurationsdatei geladen ist, werden Fehlerprotokolle nach Voreinstellung in die Datei geschrieben, die in der Konfiguration angegeben ist. In unserem Fall können Sie Fehlermeldungen beim Starten in @file{/var/run/nginx/logs/error.log} finden und nachdem die Konfiguration eingelesen wurde, finden Sie sie in @file{/var/log/nginx/error.log}. Letzterer Ort kann mit der Konfigurationsoption @var{log-directory} geändert werden." #. type: deffn -#: guix-git/doc/guix.texi:26342 +#: guix-git/doc/guix.texi:26679 #, no-wrap msgid "{Data Type} nginx-configuration" msgstr "{Datentyp} nginx-configuration" #. type: deffn -#: guix-git/doc/guix.texi:26346 +#: guix-git/doc/guix.texi:26683 msgid "This data type represents the configuration for NGinx. Some configuration can be done through this and the other provided record types, or alternatively, a config file can be provided." msgstr "Dieser Datentyp repräsentiert die Konfiguration von NGinx. Ein Teil der Konfiguration kann hierüber und über die anderen zu Ihrer Verfügung stehenden Verbundstypen geschehen, alternativ können Sie eine Konfigurationsdatei mitgeben." #. type: item -#: guix-git/doc/guix.texi:26348 +#: guix-git/doc/guix.texi:26685 #, no-wrap msgid "@code{nginx} (default: @code{nginx})" msgstr "@code{nginx} (Vorgabe: @code{nginx})" #. type: table -#: guix-git/doc/guix.texi:26350 +#: guix-git/doc/guix.texi:26687 msgid "The nginx package to use." msgstr "Das zu benutzende nginx-Paket." #. type: item -#: guix-git/doc/guix.texi:26351 +#: guix-git/doc/guix.texi:26688 #, no-wrap msgid "@code{log-directory} (default: @code{\"/var/log/nginx\"})" msgstr "@code{log-directory} (Vorgabe: @code{\"/var/log/nginx\"})" #. type: table -#: guix-git/doc/guix.texi:26353 +#: guix-git/doc/guix.texi:26690 msgid "The directory to which NGinx will write log files." msgstr "In welches Verzeichnis NGinx Protokolldateien schreiben wird." #. type: item -#: guix-git/doc/guix.texi:26354 +#: guix-git/doc/guix.texi:26691 #, no-wrap msgid "@code{run-directory} (default: @code{\"/var/run/nginx\"})" msgstr "@code{run-directory} (Vorgabe: @code{\"/var/run/nginx\"})" #. type: table -#: guix-git/doc/guix.texi:26357 +#: guix-git/doc/guix.texi:26694 msgid "The directory in which NGinx will create a pid file, and write temporary files." msgstr "In welchem Verzeichnis NGinx eine PID-Datei anlegen und temporäre Dateien ablegen wird." #. type: item -#: guix-git/doc/guix.texi:26358 +#: guix-git/doc/guix.texi:26695 #, no-wrap msgid "@code{server-blocks} (default: @code{'()})" msgstr "@code{server-blocks} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26362 +#: guix-git/doc/guix.texi:26699 msgid "A list of @dfn{server blocks} to create in the generated configuration file, the elements should be of type @code{}." msgstr "Eine Liste von @dfn{Server-Blöcken}, die in der erzeugten Konfigurationsdatei stehen sollen. Die Elemente davon sollten den Typ @code{} haben." #. type: table -#: guix-git/doc/guix.texi:26366 +#: guix-git/doc/guix.texi:26703 msgid "The following example would setup NGinx to serve @code{www.example.com} from the @code{/srv/http/www.example.com} directory, without using HTTPS." msgstr "Im folgenden Beispiel wäre NGinx so eingerichtet, dass Anfragen an @code{www.example.com} mit Dateien aus dem Verzeichnis @code{/srv/http/www.example.com} beantwortet werden, ohne HTTPS zu benutzen." #. type: item -#: guix-git/doc/guix.texi:26375 +#: guix-git/doc/guix.texi:26712 #, no-wrap msgid "@code{upstream-blocks} (default: @code{'()})" msgstr "@code{upstream-blocks} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26379 +#: guix-git/doc/guix.texi:26716 msgid "A list of @dfn{upstream blocks} to create in the generated configuration file, the elements should be of type @code{}." msgstr "Eine Liste von @dfn{Upstream-Blöcken}, die in der erzeugten Konfigurationsdatei stehen sollen. Ihre Elemente sollten den Typ @code{} haben." #. type: table -#: guix-git/doc/guix.texi:26386 +#: guix-git/doc/guix.texi:26723 msgid "Configuring upstreams through the @code{upstream-blocks} can be useful when combined with @code{locations} in the @code{} records. The following example creates a server configuration with one location configuration, that will proxy requests to a upstream configuration, which will handle requests with two servers." msgstr "Upstreams als @code{upstream-blocks} zu konfigurieren, kann hilfreich sein, wenn es mit @code{locations} in @code{} verbunden wird. Das folgende Beispiel erzeugt eine Server-Konfiguration mit einer Location-Konfiguration, bei der Anfragen als Proxy entsprechend einer Upstream-Konfiguration weitergeleitet werden, wodurch zwei Server diese beantworten können." #. type: lisp -#: guix-git/doc/guix.texi:26405 +#: guix-git/doc/guix.texi:26742 #, no-wrap msgid "" "(service\n" @@ -49043,44 +49728,44 @@ msgstr "" " \"server2.example.com\")))))))\n" #. type: table -#: guix-git/doc/guix.texi:26413 +#: guix-git/doc/guix.texi:26750 msgid "If a configuration @var{file} is provided, this will be used, rather than generating a configuration file from the provided @code{log-directory}, @code{run-directory}, @code{server-blocks} and @code{upstream-blocks}. For proper operation, these arguments should match what is in @var{file} to ensure that the directories are created when the service is activated." msgstr "Wenn eine Konfigurationsdatei als @var{file} angegeben wird, dann wird diese benutzt und @emph{keine} Konfigurationsdatei anhand der angegebenen @code{log-directory}, @code{run-directory}, @code{server-blocks} und @code{upstream-blocks} erzeugt. Trotzdem sollten diese Argumente bei einer richtigen Konfiguration mit denen in der Datei @var{file} übereinstimmen, damit die Verzeichnisse bei Aktivierung des Dienstes erzeugt werden." #. type: table -#: guix-git/doc/guix.texi:26417 +#: guix-git/doc/guix.texi:26754 msgid "This can be useful if you have an existing configuration file, or it's not possible to do what is required through the other parts of the nginx-configuration record." msgstr "Das kann nützlich sein, wenn Sie schon eine bestehende Konfigurationsdatei haben oder das, was Sie brauchen, nicht mit anderen Teilen eines nginx-configuration-Verbundsobjekts umgesetzt werden kann." #. type: item -#: guix-git/doc/guix.texi:26418 +#: guix-git/doc/guix.texi:26755 #, no-wrap msgid "@code{server-names-hash-bucket-size} (default: @code{#f})" msgstr "@code{server-names-hash-bucket-size} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:26421 +#: guix-git/doc/guix.texi:26758 msgid "Bucket size for the server names hash tables, defaults to @code{#f} to use the size of the processors cache line." msgstr "Größe der Behälter (englisch „Buckets“) für die Hashtabelle der Servernamen; vorgegeben ist @code{#f}, wodurch die Größe der Cache-Lines des Prozessors verwendet wird." #. type: item -#: guix-git/doc/guix.texi:26422 +#: guix-git/doc/guix.texi:26759 #, no-wrap msgid "@code{server-names-hash-bucket-max-size} (default: @code{#f})" msgstr "@code{server-names-hash-bucket-max-size} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:26424 +#: guix-git/doc/guix.texi:26761 msgid "Maximum bucket size for the server names hash tables." msgstr "Maximale Behältergröße für die Hashtabelle der Servernamen." #. type: table -#: guix-git/doc/guix.texi:26428 +#: guix-git/doc/guix.texi:26765 msgid "List of nginx dynamic modules to load. This should be a list of file names of loadable modules, as in this example:" msgstr "Die Liste zu ladender dynamisch gebundener Module für nginx. Die dynamischen Module sollten als Liste von Dateinamen ladbarer Module angegeben werden. Zum Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:26436 +#: guix-git/doc/guix.texi:26773 #, no-wrap msgid "" "(modules\n" @@ -49098,18 +49783,18 @@ msgstr "" "/etc/nginx/modules/ngx_http_lua_module.so\")))\n" #. type: item -#: guix-git/doc/guix.texi:26438 +#: guix-git/doc/guix.texi:26775 #, no-wrap msgid "@code{lua-package-path} (default: @code{'()})" msgstr "@code{lua-package-path} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26441 +#: guix-git/doc/guix.texi:26778 msgid "List of nginx lua packages to load. This should be a list of package names of loadable lua modules, as in this example:" msgstr "Die Liste zu ladender nginx-Lua-Pakete. Hier sollte eine Liste von Paketnamen ladbarer Lua-Module angegeben werden. Zum Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:26448 +#: guix-git/doc/guix.texi:26785 #, no-wrap msgid "" "(lua-package-path (list lua-resty-core\n" @@ -49125,35 +49810,35 @@ msgstr "" " lua-resty-shell))\n" #. type: item -#: guix-git/doc/guix.texi:26450 +#: guix-git/doc/guix.texi:26787 #, no-wrap msgid "@code{lua-package-cpath} (default: @code{'()})" msgstr "@code{lua-package-cpath} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26453 +#: guix-git/doc/guix.texi:26790 msgid "List of nginx lua C packages to load. This should be a list of package names of loadable lua C modules, as in this example:" msgstr "Die Liste zu ladender nginx-Lua-C-Pakete. Hier sollte eine Liste von Paketnamen ladbarer Lua-C-Module angegeben werden. Zum Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:26456 +#: guix-git/doc/guix.texi:26793 #, no-wrap msgid "(lua-package-cpath (list lua-resty-signal))\n" msgstr "(lua-package-cpath (list lua-resty-signal))\n" #. type: item -#: guix-git/doc/guix.texi:26458 +#: guix-git/doc/guix.texi:26795 #, no-wrap msgid "@code{global-directives} (default: @code{'((events . ()))})" msgstr "@code{global-directives} (Vorgabe: @code{'((events . ()))})" #. type: table -#: guix-git/doc/guix.texi:26461 +#: guix-git/doc/guix.texi:26798 msgid "Association list of global directives for the top level of the nginx configuration. Values may themselves be association lists." msgstr "Assoziative Liste von globalen Direktiven für die oberste Ebene der nginx-Konfiguration. Als Werte können wiederum assoziative Listen angegeben werden." #. type: lisp -#: guix-git/doc/guix.texi:26467 +#: guix-git/doc/guix.texi:26804 #, no-wrap msgid "" "(global-directives\n" @@ -49167,312 +49852,312 @@ msgstr "" " (events . ((worker_connections . 1024)))))\n" #. type: table -#: guix-git/doc/guix.texi:26472 +#: guix-git/doc/guix.texi:26809 msgid "Extra content for the @code{http} block. Should be string or a string valued G-expression." msgstr "Zusätzlicher Inhalt des @code{http}-Blocks. Er sollte eine Zeichenkette oder ein zeichenkettenwertiger G-Ausdruck." #. type: deftp -#: guix-git/doc/guix.texi:26476 +#: guix-git/doc/guix.texi:26813 #, no-wrap msgid "{Data Type} nginx-server-configuration" msgstr "{Datentyp} nginx-server-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26479 +#: guix-git/doc/guix.texi:26816 msgid "Data type representing the configuration of an nginx server block. This type has the following parameters:" msgstr "Der Datentyp, der die Konfiguration eines nginx-Serverblocks repräsentiert. Dieser Typ hat die folgenden Parameter:" #. type: item -#: guix-git/doc/guix.texi:26481 +#: guix-git/doc/guix.texi:26818 #, no-wrap msgid "@code{listen} (default: @code{'(\"80\" \"443 ssl\")})" msgstr "@code{listen} (Vorgabe: @code{'(\"80\" \"443 ssl\")})" #. type: table -#: guix-git/doc/guix.texi:26486 +#: guix-git/doc/guix.texi:26823 msgid "Each @code{listen} directive sets the address and port for IP, or the path for a UNIX-domain socket on which the server will accept requests. Both address and port, or only address or only port can be specified. An address may also be a hostname, for example:" msgstr "Jede @code{listen}-Direktive legt Adresse und Port für eine IP fest oder gibt einen Unix-Socket an, auf dem der Server Anfragen beantwortet. Es können entweder sowohl Adresse als auch Port oder nur die Adresse oder nur der Port angegeben werden. Als Adresse kann auch ein Rechnername („Hostname“) angegeben werden, zum Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:26489 +#: guix-git/doc/guix.texi:26826 #, no-wrap msgid "'(\"127.0.0.1:8000\" \"127.0.0.1\" \"8000\" \"*:8000\" \"localhost:8000\")\n" msgstr "'(\"127.0.0.1:8000\" \"127.0.0.1\" \"8000\" \"*:8000\" \"localhost:8000\")\n" #. type: item -#: guix-git/doc/guix.texi:26491 +#: guix-git/doc/guix.texi:26828 #, no-wrap msgid "@code{server-name} (default: @code{(list 'default)})" msgstr "@code{server-name} (Vorgabe: @code{(list 'default)})" #. type: table -#: guix-git/doc/guix.texi:26494 +#: guix-git/doc/guix.texi:26831 msgid "A list of server names this server represents. @code{'default} represents the default server for connections matching no other server." msgstr "Eine Liste von Servernamen, die dieser Server repräsentiert. @code{'default} repräsentiert den voreingestellten Server, der für Verbindungen verwendet wird, die zu keinem anderen Server passen." #. type: item -#: guix-git/doc/guix.texi:26495 +#: guix-git/doc/guix.texi:26832 #, no-wrap msgid "@code{root} (default: @code{\"/srv/http\"})" msgstr "@code{root} (Vorgabe: @code{\"/srv/http\"})" #. type: table -#: guix-git/doc/guix.texi:26497 +#: guix-git/doc/guix.texi:26834 msgid "Root of the website nginx will serve." msgstr "Wurzelverzeichnis des Webauftritts, der über nginx abgerufen werden kann." #. type: item -#: guix-git/doc/guix.texi:26498 +#: guix-git/doc/guix.texi:26835 #, no-wrap msgid "@code{locations} (default: @code{'()})" msgstr "@code{locations} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26502 +#: guix-git/doc/guix.texi:26839 msgid "A list of @dfn{nginx-location-configuration} or @dfn{nginx-named-location-configuration} records to use within this server block." msgstr "Eine Liste von @dfn{nginx-location-configuration}- oder @dfn{nginx-named-location-configuration}-Verbundsobjekten, die innerhalb des Serverblocks benutzt werden." #. type: item -#: guix-git/doc/guix.texi:26503 +#: guix-git/doc/guix.texi:26840 #, no-wrap msgid "@code{index} (default: @code{(list \"index.html\")})" msgstr "@code{index} (Vorgabe: @code{(list \"index.html\")})" #. type: table -#: guix-git/doc/guix.texi:26506 +#: guix-git/doc/guix.texi:26843 msgid "Index files to look for when clients ask for a directory. If it cannot be found, Nginx will send the list of files in the directory." msgstr "Index-Dateien, mit denen Anfragen nach einem Verzeichnis beantwortet werden. Wenn @emph{keine} davon gefunden wird, antwortet Nginx mit der Liste der Dateien im Verzeichnis." #. type: item -#: guix-git/doc/guix.texi:26507 +#: guix-git/doc/guix.texi:26844 #, no-wrap msgid "@code{try-files} (default: @code{'()})" msgstr "@code{try-files} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26510 +#: guix-git/doc/guix.texi:26847 msgid "A list of files whose existence is checked in the specified order. @code{nginx} will use the first file it finds to process the request." msgstr "Eine Liste der Dateien, bei denen in der angegebenen Reihenfolge geprüft wird, ob sie existieren. @code{nginx} beantwortet die Anfrage mit der ersten Datei, die es findet." #. type: item -#: guix-git/doc/guix.texi:26511 +#: guix-git/doc/guix.texi:26848 #, no-wrap msgid "@code{ssl-certificate} (default: @code{#f})" msgstr "@code{ssl-certificate} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:26514 +#: guix-git/doc/guix.texi:26851 msgid "Where to find the certificate for secure connections. Set it to @code{#f} if you don't have a certificate or you don't want to use HTTPS." msgstr "Wo das Zertifikat für sichere Verbindungen gespeichert ist. Sie sollten es auf @code{#f} setzen, wenn Sie kein Zertifikat haben oder kein HTTPS benutzen möchten." #. type: item -#: guix-git/doc/guix.texi:26515 +#: guix-git/doc/guix.texi:26852 #, no-wrap msgid "@code{ssl-certificate-key} (default: @code{#f})" msgstr "@code{ssl-certificate-key} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:26518 +#: guix-git/doc/guix.texi:26855 msgid "Where to find the private key for secure connections. Set it to @code{#f} if you don't have a key or you don't want to use HTTPS." msgstr "Wo der private Schlüssel für sichere Verbindungen gespeichert ist. Sie sollten ihn auf @code{#f} setzen, wenn Sie keinen Schlüssel haben oder kein HTTPS benutzen möchten." #. type: item -#: guix-git/doc/guix.texi:26519 +#: guix-git/doc/guix.texi:26856 #, no-wrap msgid "@code{server-tokens?} (default: @code{#f})" msgstr "@code{server-tokens?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:26521 +#: guix-git/doc/guix.texi:26858 msgid "Whether the server should add its configuration to response." msgstr "Ob der Server Informationen über seine Konfiguration bei Antworten beilegen soll." #. type: item -#: guix-git/doc/guix.texi:26522 +#: guix-git/doc/guix.texi:26859 #, no-wrap msgid "@code{raw-content} (default: @code{'()})" msgstr "@code{raw-content} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26524 +#: guix-git/doc/guix.texi:26861 msgid "A list of raw lines added to the server block." msgstr "Eine Liste von Zeilen, die unverändert in den Serverblock eingefügt werden." #. type: deftp -#: guix-git/doc/guix.texi:26528 +#: guix-git/doc/guix.texi:26865 #, no-wrap msgid "{Data Type} nginx-upstream-configuration" msgstr "{Datentyp} nginx-upstream-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26531 +#: guix-git/doc/guix.texi:26868 msgid "Data type representing the configuration of an nginx @code{upstream} block. This type has the following parameters:" msgstr "Der Datentyp, der die Konfiguration eines nginx-@code{upstream}-Blocks repräsentiert. Dieser Typ hat folgende Parameter:" #. type: table -#: guix-git/doc/guix.texi:26535 +#: guix-git/doc/guix.texi:26872 msgid "Name for this group of servers." msgstr "Der Name dieser Servergruppe." #. type: code{#1} -#: guix-git/doc/guix.texi:26536 +#: guix-git/doc/guix.texi:26873 #, no-wrap msgid "servers" msgstr "servers" #. type: table -#: guix-git/doc/guix.texi:26543 +#: guix-git/doc/guix.texi:26880 msgid "Specify the addresses of the servers in the group. The address can be specified as a IP address (e.g.@: @samp{127.0.0.1}), domain name (e.g.@: @samp{backend1.example.com}) or a path to a UNIX socket using the prefix @samp{unix:}. For addresses using an IP address or domain name, the default port is 80, and a different port can be specified explicitly." msgstr "Gibt die Adressen der Server in der Gruppe an. Die Adresse kann als IP-Adresse (z.B.@: @samp{127.0.0.1}), Domänenname (z.B.@: @samp{backend1.example.com}) oder als Pfad eines Unix-Sockets mit dem vorangestellten Präfix @samp{unix:} angegeben werden. Wenn Adressen eine IP-Adresse oder einen Domänennamen benutzen, ist der voreingestellte Port 80, aber ein abweichender Port kann auch explizit angegeben werden." #. type: deftp -#: guix-git/doc/guix.texi:26547 +#: guix-git/doc/guix.texi:26884 #, no-wrap msgid "{Data Type} nginx-location-configuration" msgstr "{Datentyp} nginx-location-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26550 +#: guix-git/doc/guix.texi:26887 msgid "Data type representing the configuration of an nginx @code{location} block. This type has the following parameters:" msgstr "Der Datentyp, der die Konfiguration eines nginx-@code{location}-Blocks angibt. Der Typ hat die folgenden Parameter:" #. type: table -#: guix-git/doc/guix.texi:26554 +#: guix-git/doc/guix.texi:26891 msgid "URI which this location block matches." msgstr "Die URI, die auf diesen Block passt." #. type: anchor{#1} -#: guix-git/doc/guix.texi:26556 +#: guix-git/doc/guix.texi:26893 msgid "nginx-location-configuration body" msgstr "nginx-location-configuration body" #. type: code{#1} -#: guix-git/doc/guix.texi:26556 guix-git/doc/guix.texi:26577 +#: guix-git/doc/guix.texi:26893 guix-git/doc/guix.texi:26914 #, no-wrap msgid "body" msgstr "body" #. type: table -#: guix-git/doc/guix.texi:26563 +#: guix-git/doc/guix.texi:26900 msgid "Body of the location block, specified as a list of strings. This can contain many configuration directives. For example, to pass requests to a upstream server group defined using an @code{nginx-upstream-configuration} block, the following directive would be specified in the body @samp{(list \"proxy_pass http://upstream-name;\")}." msgstr "Der Rumpf des location-Blocks, der als eine Liste von Zeichenketten angegeben werden muss. Er kann viele Konfigurationsdirektiven enthalten, zum Beispiel können Anfragen an eine Upstream-Servergruppe weitergeleitet werden, die mit einem @code{nginx-upstream-configuration}-Block angegeben wurde, indem diese Direktive im Rumpf angegeben wird: @samp{(list \"proxy_pass http://upstream-name;\")}." #. type: deftp -#: guix-git/doc/guix.texi:26567 +#: guix-git/doc/guix.texi:26904 #, no-wrap msgid "{Data Type} nginx-named-location-configuration" msgstr "{Datentyp} nginx-named-location-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26572 +#: guix-git/doc/guix.texi:26909 msgid "Data type representing the configuration of an nginx named location block. Named location blocks are used for request redirection, and not used for regular request processing. This type has the following parameters:" msgstr "Der Datentyp repräsentiert die Konfiguration eines mit Namen versehenen nginx-location-Blocks („Named Location Block“). Ein mit Namen versehener location-Block wird zur Umleitung von Anfragen benutzt und nicht für die normale Anfrageverarbeitung. Dieser Typ hat die folgenden Parameter:" #. type: table -#: guix-git/doc/guix.texi:26576 +#: guix-git/doc/guix.texi:26913 msgid "Name to identify this location block." msgstr "Der Name, mit dem dieser location-Block identifiziert wird." #. type: table -#: guix-git/doc/guix.texi:26582 +#: guix-git/doc/guix.texi:26919 msgid "@xref{nginx-location-configuration body}, as the body for named location blocks can be used in a similar way to the @code{nginx-location-configuration body}. One restriction is that the body of a named location block cannot contain location blocks." msgstr "Siehe @ref{nginx-location-configuration body}, weil der Rumpf („Body“) eines mit Namen versehenen location-Blocks wie ein @code{nginx-location-configuration body} benutzt werden kann. Eine Einschränkung ist, dass der Rumpf eines mit Namen versehenen location-Blocks keine location-Blöcke enthalten kann." #. type: subsubheading -#: guix-git/doc/guix.texi:26586 +#: guix-git/doc/guix.texi:26923 #, no-wrap msgid "Varnish Cache" msgstr "Varnish Cache" #. type: cindex -#: guix-git/doc/guix.texi:26587 +#: guix-git/doc/guix.texi:26924 #, no-wrap msgid "Varnish" msgstr "Varnish" #. type: Plain text -#: guix-git/doc/guix.texi:26592 +#: guix-git/doc/guix.texi:26929 msgid "Varnish is a fast cache server that sits in between web applications and end users. It proxies requests from clients and caches the accessed URLs such that multiple requests for the same resource only creates one request to the back-end." msgstr "Varnish ist ein schneller zwischenspeichernder Server, der zwischen Web-Anwendungen und deren Endbenutzern sitzt. Er leitet Anfragen von Clients weiter und lagert die URLs, auf die zugegriffen wird, in einen Zwischenspeicher ein, damit bei mehreren Anfragen auf dieselbe Ressource nur eine Anfrage an die Hintergrundanwendung gestellt wird." #. type: defvr -#: guix-git/doc/guix.texi:26593 +#: guix-git/doc/guix.texi:26930 #, no-wrap msgid "{Scheme Variable} varnish-service-type" msgstr "{Scheme-Variable} varnish-service-type" #. type: defvr -#: guix-git/doc/guix.texi:26595 +#: guix-git/doc/guix.texi:26932 msgid "Service type for the Varnish daemon." msgstr "Diensttyp für den Varnish-Daemon." #. type: deftp -#: guix-git/doc/guix.texi:26597 +#: guix-git/doc/guix.texi:26934 #, no-wrap msgid "{Data Type} varnish-configuration" msgstr "{Datentyp} varnish-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26600 +#: guix-git/doc/guix.texi:26937 msgid "Data type representing the @code{varnish} service configuration. This type has the following parameters:" msgstr "Der Datentyp, der die Konfiguration des @code{varnish}-Dienstes repräsentiert. Dieser Typ hat die folgenden Parameter:" #. type: item -#: guix-git/doc/guix.texi:26602 +#: guix-git/doc/guix.texi:26939 #, no-wrap msgid "@code{package} (default: @code{varnish})" msgstr "@code{package} (Vorgabe: @code{varnish})" #. type: table -#: guix-git/doc/guix.texi:26604 +#: guix-git/doc/guix.texi:26941 msgid "The Varnish package to use." msgstr "Das Varnish-Paket, was benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:26605 +#: guix-git/doc/guix.texi:26942 #, no-wrap msgid "@code{name} (default: @code{\"default\"})" msgstr "@code{name} (Vorgabe: @code{\"default\"})" #. type: table -#: guix-git/doc/guix.texi:26610 +#: guix-git/doc/guix.texi:26947 msgid "A name for this Varnish instance. Varnish will create a directory in @file{/var/varnish/} with this name and keep temporary files there. If the name starts with a forward slash, it is interpreted as an absolute directory name." msgstr "Ein Name für diese Varnish-Instanz. Varnish wird ein Verzeichnis in @file{/var/varnish/} mit diesem Namen erzeugen und dort temporäre Dateien speichern. Wenn der Name mit einem Schrägstrich beginnt, wird er als absoluter Verzeichnispfad interpretiert." #. type: table -#: guix-git/doc/guix.texi:26613 +#: guix-git/doc/guix.texi:26950 msgid "Pass the @code{-n} argument to other Varnish programs to connect to the named instance, e.g.@: @command{varnishncsa -n default}." msgstr "Übergeben Sie die Befehlszeilenoption @code{-n} an andere Varnish-Programme, um sich mit der Instanz diesen Namens zu verbinden, z.B.@: @command{varnishncsa -n default}." #. type: item -#: guix-git/doc/guix.texi:26614 +#: guix-git/doc/guix.texi:26951 #, no-wrap msgid "@code{backend} (default: @code{\"localhost:8080\"})" msgstr "@code{backend} (Vorgabe: @code{\"localhost:8080\"})" #. type: table -#: guix-git/doc/guix.texi:26616 +#: guix-git/doc/guix.texi:26953 msgid "The backend to use. This option has no effect if @code{vcl} is set." msgstr "Welcher Hintergrunddienst benutzt werden soll. Diese Option wird ignoriert, wenn @code{vcl} gesetzt ist." #. type: item -#: guix-git/doc/guix.texi:26617 +#: guix-git/doc/guix.texi:26954 #, no-wrap msgid "@code{vcl} (default: #f)" msgstr "@code{vcl} (Vorgabe: #f)" #. type: table -#: guix-git/doc/guix.texi:26622 +#: guix-git/doc/guix.texi:26959 msgid "The @dfn{VCL} (Varnish Configuration Language) program to run. If this is @code{#f}, Varnish will proxy @code{backend} using the default configuration. Otherwise this must be a file-like object with valid VCL syntax." msgstr "Das @dfn{VCL}-Programm (in der Varnish Configuration Language), das ausgeführt werden soll. Ist dies auf @code{#f} gesetzt, fungiert Varnish als Proxy für den Hintergrunddienst @code{backend} mit der voreingestellten Konfiguration. Andernfalls muss dies ein dateiartiges Objekt mit gültiger VCL-Syntax sein." #. type: table -#: guix-git/doc/guix.texi:26626 +#: guix-git/doc/guix.texi:26963 msgid "For example, to mirror @url{https://www.gnu.org,www.gnu.org} with VCL you can do something along these lines:" msgstr "Um zum Beispiel mit VCL einen Spiegelserver für @url{https://www.gnu.org,www.gnu.org} einzurichten, können Sie so etwas benutzen:" #. type: lisp -#: guix-git/doc/guix.texi:26632 +#: guix-git/doc/guix.texi:26969 #, no-wrap msgid "" "(define %gnu-mirror\n" @@ -49488,7 +50173,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:26640 +#: guix-git/doc/guix.texi:26977 #, no-wrap msgid "" "(operating-system\n" @@ -49508,82 +50193,82 @@ msgstr "" " %base-services)))\n" #. type: table -#: guix-git/doc/guix.texi:26644 +#: guix-git/doc/guix.texi:26981 msgid "The configuration of an already running Varnish instance can be inspected and changed using the @command{varnishadm} program." msgstr "Die Konfiguration einer bereits laufenden Varnish-Instanz kann mit dem Programm @command{varnishadm} eingesehen und verändert werden." #. type: table -#: guix-git/doc/guix.texi:26648 +#: guix-git/doc/guix.texi:26985 msgid "Consult the @url{https://varnish-cache.org/docs/,Varnish User Guide} and @url{https://book.varnish-software.com/4.0/,Varnish Book} for comprehensive documentation on Varnish and its configuration language." msgstr "Ziehen Sie die @url{https://varnish-cache.org/docs/,Varnish User Guide} und das @url{https://book.varnish-software.com/4.0/,Varnish Book} zu Rate, wenn Sie eine umfassende Dokumentation zu Varnish und seiner Konfigurationssprache suchen." #. type: item -#: guix-git/doc/guix.texi:26649 +#: guix-git/doc/guix.texi:26986 #, no-wrap msgid "@code{listen} (default: @code{'(\"localhost:80\")})" msgstr "@code{listen} (Vorgabe: @code{'(\"localhost:80\")})" #. type: table -#: guix-git/doc/guix.texi:26651 +#: guix-git/doc/guix.texi:26988 msgid "List of addresses Varnish will listen on." msgstr "Liste der Adressen, auf denen Varnish lauschen soll." #. type: item -#: guix-git/doc/guix.texi:26652 +#: guix-git/doc/guix.texi:26989 #, no-wrap msgid "@code{storage} (default: @code{'(\"malloc,128m\")})" msgstr "@code{storage} (Vorgabe: @code{'(\"malloc,128m\")})" #. type: table -#: guix-git/doc/guix.texi:26654 +#: guix-git/doc/guix.texi:26991 msgid "List of storage backends that will be available in VCL." msgstr "Liste der Speicher-Hintergrunddienste („Storage Backends“), die von der VCL aus benutzt werden können." #. type: item -#: guix-git/doc/guix.texi:26655 +#: guix-git/doc/guix.texi:26992 #, no-wrap msgid "@code{parameters} (default: @code{'()})" msgstr "@code{parameters} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26657 +#: guix-git/doc/guix.texi:26994 msgid "List of run-time parameters in the form @code{'((\"parameter\" . \"value\"))}." msgstr "Liste der Laufzeitparameter von der Form @code{'((\"Parameter\" . \"Wert\"))}." #. type: table -#: guix-git/doc/guix.texi:26660 +#: guix-git/doc/guix.texi:26997 msgid "Additional arguments to pass to the @command{varnishd} process." msgstr "Zusätzliche Argumente, die an den @command{varnishd}-Prozess übergeben werden." #. type: cindex -#: guix-git/doc/guix.texi:26664 guix-git/doc/guix.texi:26665 +#: guix-git/doc/guix.texi:27001 guix-git/doc/guix.texi:27002 #, no-wrap msgid "Patchwork" msgstr "Patchwork" #. type: Plain text -#: guix-git/doc/guix.texi:26668 +#: guix-git/doc/guix.texi:27005 msgid "Patchwork is a patch tracking system. It can collect patches sent to a mailing list, and display them in a web interface." msgstr "Patchwork ist ein System, um eingereichten Patches zu folgen. Es kann an eine Mailing-Liste geschickte Patches sammeln und auf einer Web-Oberfläche anzeigen." #. type: defvr -#: guix-git/doc/guix.texi:26669 +#: guix-git/doc/guix.texi:27006 #, no-wrap msgid "{Scheme Variable} patchwork-service-type" msgstr "{Scheme-Variable} patchwork-service-type" #. type: defvr -#: guix-git/doc/guix.texi:26671 +#: guix-git/doc/guix.texi:27008 msgid "Service type for Patchwork." msgstr "Diensttyp für Patchwork." #. type: Plain text -#: guix-git/doc/guix.texi:26675 +#: guix-git/doc/guix.texi:27012 msgid "The following example is an example of a minimal service for Patchwork, for the @code{patchwork.example.com} domain." msgstr "Es folgt ein Minimalbeispiel für einen Patchwork-Dienst, der auf der Domain @code{patchwork.example.com} läuft." #. type: lisp -#: guix-git/doc/guix.texi:26695 +#: guix-git/doc/guix.texi:27032 #, no-wrap msgid "" "(service patchwork-service-type\n" @@ -49627,806 +50312,806 @@ msgstr "" "\n" #. type: Plain text -#: guix-git/doc/guix.texi:26701 +#: guix-git/doc/guix.texi:27038 msgid "There are three records for configuring the Patchwork service. The @code{} relates to the configuration for Patchwork within the HTTPD service." msgstr "Der Patchwork-Dienst wird über drei Verbundsobjekte konfiguriert. Die @code{} hat mit der Konfiguration von Patchwork innerhalb des HTTPD-Dienstes zu tun." #. type: Plain text -#: guix-git/doc/guix.texi:26705 +#: guix-git/doc/guix.texi:27042 msgid "The @code{settings-module} field within the @code{} record can be populated with the @code{} record, which describes a settings module that is generated within the Guix store." msgstr "Das @code{settings-module}-Feld innerhalb des @code{}-Verbundsobjekts kann mit einem @code{}-Verbundsobjekt ausgefüllt werden, das ein im Guix-Store angelegtes Einstellungsmodul beschreibt." #. type: Plain text -#: guix-git/doc/guix.texi:26709 +#: guix-git/doc/guix.texi:27046 msgid "For the @code{database-configuration} field within the @code{}, the @code{} must be used." msgstr "Für das @code{database-configuration}-Feld innerhalb des @code{} muss eine @code{} benutzt werden." #. type: deftp -#: guix-git/doc/guix.texi:26710 +#: guix-git/doc/guix.texi:27047 #, no-wrap msgid "{Data Type} patchwork-configuration" msgstr "{Datentyp} patchwork-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26713 +#: guix-git/doc/guix.texi:27050 msgid "Data type representing the Patchwork service configuration. This type has the following parameters:" msgstr "Der Datentyp, der die Konfiguration des Patchwork-Dienstes repräsentiert. Dieser Typ hat die folgenden Parameter:" #. type: item -#: guix-git/doc/guix.texi:26715 +#: guix-git/doc/guix.texi:27052 #, no-wrap msgid "@code{patchwork} (default: @code{patchwork})" msgstr "@code{patchwork} (Vorgabe: @code{patchwork})" #. type: table -#: guix-git/doc/guix.texi:26717 +#: guix-git/doc/guix.texi:27054 msgid "The Patchwork package to use." msgstr "Welches Patchwork-Paket benutzt werden soll." #. type: code{#1} -#: guix-git/doc/guix.texi:26718 +#: guix-git/doc/guix.texi:27055 #, no-wrap msgid "domain" msgstr "domain" #. type: table -#: guix-git/doc/guix.texi:26721 +#: guix-git/doc/guix.texi:27058 msgid "The domain to use for Patchwork, this is used in the HTTPD service virtual host." msgstr "Welche Domain für Patchwork benutzt werden soll. Sie findet Verwendung in Patchworks virtuellen Rechner („Virtual Host“) für den HTTPD-Dienst." #. type: code{#1} -#: guix-git/doc/guix.texi:26722 +#: guix-git/doc/guix.texi:27059 #, no-wrap msgid "settings-module" msgstr "settings-module" #. type: table -#: guix-git/doc/guix.texi:26728 +#: guix-git/doc/guix.texi:27065 msgid "The settings module to use for Patchwork. As a Django application, Patchwork is configured with a Python module containing the settings. This can either be an instance of the @code{} record, any other record that represents the settings in the store, or a directory outside of the store." msgstr "Das durch Patchwork benutzte Einstellungsmodul. Als eine Django-Anwendung wird Patchwork mit einem Python-Modul konfiguriert, das die Einstellungen speichert. Es kann entweder eine Instanz des @code{}-Verbundstyps sein, ein beliebiges anderes Verbundsobjekt sein, das die Einstellungen im Store repräsentiert, oder ein Verzeichnis außerhalb des Stores." #. type: item -#: guix-git/doc/guix.texi:26729 +#: guix-git/doc/guix.texi:27066 #, no-wrap msgid "@code{static-path} (default: @code{\"/static/\"})" msgstr "@code{static-path} (Vorgabe: @code{\"/static/\"})" #. type: table -#: guix-git/doc/guix.texi:26731 +#: guix-git/doc/guix.texi:27068 msgid "The path under which the HTTPD service should serve the static files." msgstr "Der Pfad, auf dem der HTTPD-Dienst die statischen Dateien anbieten soll." #. type: code{#1} -#: guix-git/doc/guix.texi:26732 +#: guix-git/doc/guix.texi:27069 #, no-wrap msgid "getmail-retriever-config" msgstr "getmail-retriever-config" #. type: table -#: guix-git/doc/guix.texi:26736 +#: guix-git/doc/guix.texi:27073 msgid "The getmail-retriever-configuration record value to use with Patchwork. Getmail will be configured with this value, the messages will be delivered to Patchwork." msgstr "Das durch Patchwork benutzte getmail-retriever-configuration-Verbundsobjekt. Getmail wird mit diesem Wert konfiguriert. Die Mitteilungen werden mit Patchwork als Empfänger zugestellt." #. type: deftp -#: guix-git/doc/guix.texi:26740 +#: guix-git/doc/guix.texi:27077 #, no-wrap msgid "{Data Type} patchwork-settings-module" msgstr "{Datentyp} patchwork-settings-module" #. type: deftp -#: guix-git/doc/guix.texi:26745 +#: guix-git/doc/guix.texi:27082 msgid "Data type representing a settings module for Patchwork. Some of these settings relate directly to Patchwork, but others relate to Django, the web framework used by Patchwork, or the Django Rest Framework library. This type has the following parameters:" msgstr "Der Datentyp, der das Einstellungsmodul für Patchwork repräsentiert. Manche dieser Einstellungen haben direkt mit Patchwork zu tun, andere beziehen sich auf Django, dem Web-Framework auf dem Patchwork aufsetzt, oder dessen Django-Rest-Framework-Bibliothek. Dieser Typ verfügt über die folgenden Parameter:" #. type: item -#: guix-git/doc/guix.texi:26747 +#: guix-git/doc/guix.texi:27084 #, no-wrap msgid "@code{database-configuration} (default: @code{(patchwork-database-configuration)})" msgstr "@code{database-configuration} (Vorgabe: @code{(patchwork-database-configuration)})" #. type: table -#: guix-git/doc/guix.texi:26750 +#: guix-git/doc/guix.texi:27087 msgid "The database connection settings used for Patchwork. See the @code{} record type for more information." msgstr "Die für Patchwork benutzten Datenbankverbindungseinstellungen. Siehe den @code{}-Verbundstyp für weitere Informationen." #. type: item -#: guix-git/doc/guix.texi:26751 +#: guix-git/doc/guix.texi:27088 #, no-wrap msgid "@code{secret-key-file} (default: @code{\"/etc/patchwork/django-secret-key\"})" msgstr "@code{secret-key-file} (Vorgabe: @code{\"/etc/patchwork/django-secret-key\"})" #. type: table -#: guix-git/doc/guix.texi:26754 +#: guix-git/doc/guix.texi:27091 msgid "Patchwork, as a Django web application uses a secret key for cryptographically signing values. This file should contain a unique unpredictable value." msgstr "Patchwork benutzt als eine Django-Webanwendung einen geheimen Schlüssel, um Werte kryptographisch zu signieren. Diese Datei sollte einen einzigartigen, unvorhersehbaren Wert enthalten." #. type: table -#: guix-git/doc/guix.texi:26757 +#: guix-git/doc/guix.texi:27094 msgid "If this file does not exist, it will be created and populated with a random value by the patchwork-setup shepherd service." msgstr "Wenn diese Datei nicht existiert, wird sie erzeugt und ein zufälliger Wert wird durch den Shepherd-Dienst für patchwork-setup hineingeschrieben." #. type: table -#: guix-git/doc/guix.texi:26759 +#: guix-git/doc/guix.texi:27096 msgid "This setting relates to Django." msgstr "Diese Einstellung bezieht sich auf Django." #. type: code{#1} -#: guix-git/doc/guix.texi:26760 +#: guix-git/doc/guix.texi:27097 #, no-wrap msgid "allowed-hosts" msgstr "allowed-hosts" #. type: table -#: guix-git/doc/guix.texi:26763 +#: guix-git/doc/guix.texi:27100 msgid "A list of valid hosts for this Patchwork service. This should at least include the domain specified in the @code{} record." msgstr "Eine Liste zulässiger Netzwerkschnittstellen (Hosts), auf denen dieser Patchwork-Dienst antwortet. Sie sollte wenigstens die im @code{}-Verbundsobjekt genannte Domain enthalten." #. type: table -#: guix-git/doc/guix.texi:26765 guix-git/doc/guix.texi:26779 -#: guix-git/doc/guix.texi:26785 guix-git/doc/guix.texi:26791 +#: guix-git/doc/guix.texi:27102 guix-git/doc/guix.texi:27116 +#: guix-git/doc/guix.texi:27122 guix-git/doc/guix.texi:27128 msgid "This is a Django setting." msgstr "Dies ist eine Django-Einstellung." #. type: code{#1} -#: guix-git/doc/guix.texi:26766 +#: guix-git/doc/guix.texi:27103 #, no-wrap msgid "default-from-email" msgstr "default-from-email" #. type: table -#: guix-git/doc/guix.texi:26768 +#: guix-git/doc/guix.texi:27105 msgid "The email address from which Patchwork should send email by default." msgstr "Die E-Mail-Adresse, von der aus Patchwork nach Voreinstellung E-Mails verschicken soll." #. type: table -#: guix-git/doc/guix.texi:26770 guix-git/doc/guix.texi:26796 -#: guix-git/doc/guix.texi:26801 guix-git/doc/guix.texi:26806 +#: guix-git/doc/guix.texi:27107 guix-git/doc/guix.texi:27133 +#: guix-git/doc/guix.texi:27138 guix-git/doc/guix.texi:27143 msgid "This is a Patchwork setting." msgstr "Dies ist eine Patchwork-Einstellung." #. type: item -#: guix-git/doc/guix.texi:26771 +#: guix-git/doc/guix.texi:27108 #, no-wrap msgid "@code{static-url} (default: @code{#f})" msgstr "@code{static-url} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:26774 +#: guix-git/doc/guix.texi:27111 msgid "The URL to use when serving static assets. It can be part of a URL, or a full URL, but must end in a @code{/}." msgstr "Die URL, über die statische Dokumente angeboten werden. Es kann eine teilweise URL oder eine vollständige URL angegeben werden, aber sie muss auf @code{/} enden." #. type: table -#: guix-git/doc/guix.texi:26777 +#: guix-git/doc/guix.texi:27114 msgid "If the default value is used, the @code{static-path} value from the @code{} record will be used." msgstr "Wenn der Vorgabewert benutzt wird, wird der @code{static-path}-Wert aus dem @code{}-Verbundsobjekt benutzt." #. type: item -#: guix-git/doc/guix.texi:26780 +#: guix-git/doc/guix.texi:27117 #, no-wrap msgid "@code{admins} (default: @code{'()})" msgstr "@code{admins} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26783 +#: guix-git/doc/guix.texi:27120 msgid "Email addresses to send the details of errors that occur. Each value should be a list containing two elements, the name and then the email address." msgstr "Die E-Mail-Adressen, an die Details zu auftretenden Fehlern versendet werden. Jeder Wert sollte eine zweielementige Liste mit dem Namen und der E-Mail-Adresse sein." #. type: table -#: guix-git/doc/guix.texi:26789 +#: guix-git/doc/guix.texi:27126 msgid "Whether to run Patchwork in debug mode. If set to @code{#t}, detailed error messages will be shown." msgstr "Ob Patchwork im Fehlersuchmodus („Debug Mode“) ausgeführt werden soll. Wenn dies auf @code{#t} steht, werden detaillierte Fehlermeldungen angezeigt." #. type: item -#: guix-git/doc/guix.texi:26792 +#: guix-git/doc/guix.texi:27129 #, no-wrap msgid "@code{enable-rest-api?} (default: @code{#t})" msgstr "@code{enable-rest-api?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:26794 +#: guix-git/doc/guix.texi:27131 msgid "Whether to enable the Patchwork REST API." msgstr "Ob Patchworks REST-Programmschnittstelle („REST-API“) aktiviert werden soll." #. type: item -#: guix-git/doc/guix.texi:26797 +#: guix-git/doc/guix.texi:27134 #, no-wrap msgid "@code{enable-xmlrpc?} (default: @code{#t})" msgstr "@code{enable-xmlrpc?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:26799 +#: guix-git/doc/guix.texi:27136 msgid "Whether to enable the XML RPC API." msgstr "Ob die XML-Programmschnittstelle für entfernte Prozeduraufrufe („XML-RPC-API“) aktiviert werden soll." #. type: item -#: guix-git/doc/guix.texi:26802 +#: guix-git/doc/guix.texi:27139 #, no-wrap msgid "@code{force-https-links?} (default: @code{#t})" msgstr "@code{force-https-links?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:26804 +#: guix-git/doc/guix.texi:27141 msgid "Whether to use HTTPS links on Patchwork pages." msgstr "Ob auf den Webseiten von Patchwork die Verweise auf andere Seiten HTTPS verwenden sollen." #. type: table -#: guix-git/doc/guix.texi:26809 +#: guix-git/doc/guix.texi:27146 msgid "Extra code to place at the end of the Patchwork settings module." msgstr "Zusätzlicher Code, der am Ende des Patchwork-Einstellungsmoduls platziert werden soll." #. type: deftp -#: guix-git/doc/guix.texi:26813 +#: guix-git/doc/guix.texi:27150 #, no-wrap msgid "{Data Type} patchwork-database-configuration" msgstr "{Datentyp} patchwork-database-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26815 +#: guix-git/doc/guix.texi:27152 msgid "Data type representing the database configuration for Patchwork." msgstr "Der Datentyp, der die Datenbankkonfiguration für Patchwork repräsentiert." #. type: item -#: guix-git/doc/guix.texi:26817 +#: guix-git/doc/guix.texi:27154 #, no-wrap msgid "@code{engine} (default: @code{\"django.db.backends.postgresql_psycopg2\"})" msgstr "@code{engine} (Vorgabe: @code{\"django.db.backends.postgresql_psycopg2\"})" #. type: table -#: guix-git/doc/guix.texi:26819 +#: guix-git/doc/guix.texi:27156 msgid "The database engine to use." msgstr "Welcher Datenbanktreiber („Engine“) benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:26820 +#: guix-git/doc/guix.texi:27157 #, no-wrap msgid "@code{name} (default: @code{\"patchwork\"})" msgstr "@code{name} (Vorgabe: @code{\"patchwork\"})" #. type: table -#: guix-git/doc/guix.texi:26822 +#: guix-git/doc/guix.texi:27159 msgid "The name of the database to use." msgstr "Der Name der zu benutzenden Datenbank." #. type: table -#: guix-git/doc/guix.texi:26825 +#: guix-git/doc/guix.texi:27162 msgid "The user to connect to the database as." msgstr "Der Benutzer, als der sich Patchwork mit der Datenbank verbindet." #. type: item -#: guix-git/doc/guix.texi:26826 +#: guix-git/doc/guix.texi:27163 #, no-wrap msgid "@code{password} (default: @code{\"\"})" msgstr "@code{password} (Vorgabe: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:26828 +#: guix-git/doc/guix.texi:27165 msgid "The password to use when connecting to the database." msgstr "Das Passwort, das zum Herstellen einer Verbindung zur Datenbank verwendet werden soll." #. type: item -#: guix-git/doc/guix.texi:26829 +#: guix-git/doc/guix.texi:27166 #, no-wrap msgid "@code{host} (default: @code{\"\"})" msgstr "@code{host} (Vorgabe: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:26831 +#: guix-git/doc/guix.texi:27168 msgid "The host to make the database connection to." msgstr "Der Rechner, mit dem die Datenbankverbindung hergestellt wird." #. type: item -#: guix-git/doc/guix.texi:26832 +#: guix-git/doc/guix.texi:27169 #, no-wrap msgid "@code{port} (default: @code{\"\"})" msgstr "@code{port} (Vorgabe: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:26834 +#: guix-git/doc/guix.texi:27171 msgid "The port on which to connect to the database." msgstr "Der Port, auf dem sich Patchwork mit der Datenbank verbindet." #. type: subsubheading -#: guix-git/doc/guix.texi:26838 +#: guix-git/doc/guix.texi:27175 #, no-wrap msgid "Mumi" msgstr "Mumi" #. type: cindex -#: guix-git/doc/guix.texi:26840 +#: guix-git/doc/guix.texi:27177 #, no-wrap msgid "Mumi, Debbugs Web interface" msgstr "Mumi, Weboberfläche für Debbugs" #. type: cindex -#: guix-git/doc/guix.texi:26841 +#: guix-git/doc/guix.texi:27178 #, no-wrap msgid "Debbugs, Mumi Web interface" msgstr "Debbugs, Mumi-Weboberfläche" #. type: Plain text -#: guix-git/doc/guix.texi:26846 +#: guix-git/doc/guix.texi:27183 msgid "@uref{https://git.elephly.net/gitweb.cgi?p=software/mumi.git, Mumi} is a Web interface to the Debbugs bug tracker, by default for @uref{https://bugs.gnu.org, the GNU instance}. Mumi is a Web server, but it also fetches and indexes mail retrieved from Debbugs." msgstr "@uref{https://git.elephly.net/gitweb.cgi?p=software/mumi.git, Mumi} ist eine Weboberfläche für Debbugs, einem System, um Fehlerberichte zu verwalten. Nach Vorgabe zeigt es @uref{https://bugs.gnu.org, die bei GNU angebotene Debbugs-Instanz}. Mumi ist ein Web-Server, er lädt aber auch E-Mails von Debbugs herunter und indiziert diese." #. type: defvr -#: guix-git/doc/guix.texi:26847 +#: guix-git/doc/guix.texi:27184 #, no-wrap msgid "{Scheme Variable} mumi-service-type" msgstr "{Scheme-Variable} mumi-service-type" #. type: defvr -#: guix-git/doc/guix.texi:26849 +#: guix-git/doc/guix.texi:27186 msgid "This is the service type for Mumi." msgstr "Dies ist der Diensttyp für Mumi." #. type: deftp -#: guix-git/doc/guix.texi:26851 +#: guix-git/doc/guix.texi:27188 #, no-wrap msgid "{Data Type} mumi-configuration" msgstr "{Datentyp} mumi-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26854 +#: guix-git/doc/guix.texi:27191 msgid "Data type representing the Mumi service configuration. This type has the following fields:" msgstr "Der Datentyp, der die Konfiguration des Mumi-Dienstes repräsentiert. Dieser Typ hat die folgenden Felder:" #. type: item -#: guix-git/doc/guix.texi:26856 +#: guix-git/doc/guix.texi:27193 #, no-wrap msgid "@code{mumi} (default: @code{mumi})" msgstr "@code{mumi} (Vorgabe: @code{mumi})" #. type: table -#: guix-git/doc/guix.texi:26858 +#: guix-git/doc/guix.texi:27195 msgid "The Mumi package to use." msgstr "Das zu verwendende Mumi-Paket." #. type: item -#: guix-git/doc/guix.texi:26859 +#: guix-git/doc/guix.texi:27196 #, no-wrap msgid "@code{mailer?} (default: @code{#true})" msgstr "@code{mailer?} (Vorgabe: @code{#true})" #. type: table -#: guix-git/doc/guix.texi:26861 +#: guix-git/doc/guix.texi:27198 msgid "Whether to enable or disable the mailer component." msgstr "Ob die Komponente zum Mailversand aktiviert sein soll oder nicht." #. type: code{#1} -#: guix-git/doc/guix.texi:26862 +#: guix-git/doc/guix.texi:27199 #, no-wrap msgid "mumi-configuration-sender" msgstr "mumi-configuration-sender" #. type: table -#: guix-git/doc/guix.texi:26864 +#: guix-git/doc/guix.texi:27201 msgid "The email address used as the sender for comments." msgstr "Die E-Mail-Adresse, die bei Kommentaren als Absender angegeben wird." #. type: code{#1} -#: guix-git/doc/guix.texi:26865 +#: guix-git/doc/guix.texi:27202 #, no-wrap msgid "mumi-configuration-smtp" msgstr "mumi-configuration-smtp" #. type: table -#: guix-git/doc/guix.texi:26870 +#: guix-git/doc/guix.texi:27207 msgid "A URI to configure the SMTP settings for Mailutils. This could be something like @code{sendmail:///path/to/bin/msmtp} or any other URI supported by Mailutils. @xref{SMTP Mailboxes, SMTP Mailboxes,, mailutils, GNU@tie{}Mailutils}." msgstr "Eine URI, um die SMTP-Einstellungen für Mailutils einzurichten. Hierfür könnte etwas wie @code{sendmail:///path/to/bin/msmtp} angegeben werden, oder eine beliebige andere URI, die von Mailutils unterstützt wird. Siehe @ref{SMTP Mailboxes, SMTP-Postfächer,, mailutils, GNU@tie{}Mailutils}." #. type: subsubheading -#: guix-git/doc/guix.texi:26875 +#: guix-git/doc/guix.texi:27212 #, no-wrap msgid "FastCGI" msgstr "FastCGI" #. type: cindex -#: guix-git/doc/guix.texi:26876 +#: guix-git/doc/guix.texi:27213 #, no-wrap msgid "fastcgi" msgstr "fastcgi" #. type: cindex -#: guix-git/doc/guix.texi:26877 +#: guix-git/doc/guix.texi:27214 #, no-wrap msgid "fcgiwrap" msgstr "fcgiwrap" #. type: Plain text -#: guix-git/doc/guix.texi:26884 +#: guix-git/doc/guix.texi:27221 msgid "FastCGI is an interface between the front-end and the back-end of a web service. It is a somewhat legacy facility; new web services should generally just talk HTTP between the front-end and the back-end. However there are a number of back-end services such as PHP or the optimized HTTP Git repository access that use FastCGI, so we have support for it in Guix." msgstr "FastCGI ist eine Schnittstelle zwischen den Anwendungen im Vordergrund („Front-End“) und Hintergrund („Back-End“) eines Webdienstes. Die Rolle, die es ausübt, ist nicht mehr ganz aktuell, weil neue Webdienste im Allgemeinen einfach über HTTP zwischen Vorder- und Hintergrund kommunizieren sollten. Allerdings gibt es eine Menge von Hintergrunddiensten wie PHP oder den optimierten Git-Repository-Zugang über HTTP, welche FastCGI benutzen, also wird es auch in Guix unterstützt." #. type: Plain text -#: guix-git/doc/guix.texi:26891 +#: guix-git/doc/guix.texi:27228 msgid "To use FastCGI, you configure the front-end web server (e.g., nginx) to dispatch some subset of its requests to the fastcgi backend, which listens on a local TCP or UNIX socket. There is an intermediary @code{fcgiwrap} program that sits between the actual backend process and the web server. The front-end indicates which backend program to run, passing that information to the @code{fcgiwrap} process." msgstr "Um FastCGI zu benutzen, konfigurieren Sie den Webserver im Vordergrund (z.B.@: nginx) so, dass er eine Teilmenge der Anfragen an die fastcgi-Hintergrundanwendung weiterleitet, dass auf einem lokalen TCP- oder Unix-Socket lauscht. Ein dazwischenliegendes @code{fcgiwrap}-Programm sitzt zwischen dem eigentlichen Hintergrundprozess und dem Webserver. Vom Vordergrund wird angezeigt, welches Hintergrundprogramm ausgeführt werden soll. Diese Informationen werden an den @code{fcgiwrap}-Prozess übermittelt." #. type: defvr -#: guix-git/doc/guix.texi:26892 +#: guix-git/doc/guix.texi:27229 #, no-wrap msgid "{Scheme Variable} fcgiwrap-service-type" msgstr "{Scheme-Variable} fcgiwrap-service-type" #. type: defvr -#: guix-git/doc/guix.texi:26894 +#: guix-git/doc/guix.texi:27231 msgid "A service type for the @code{fcgiwrap} FastCGI proxy." msgstr "Ein Diensttyp für den @code{fcgiwrap}-FastCGI-Proxy." #. type: deftp -#: guix-git/doc/guix.texi:26896 +#: guix-git/doc/guix.texi:27233 #, no-wrap msgid "{Data Type} fcgiwrap-configuration" msgstr "{Datentyp} fcgiwrap-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26899 +#: guix-git/doc/guix.texi:27236 msgid "Data type representing the configuration of the @code{fcgiwrap} service. This type has the following parameters:" msgstr "Der Datentyp, der die Konfiguration des @code{fcgiwrap}-Dienstes repräsentiert. Dieser Typ hat die folgenden Parameter:" #. type: item -#: guix-git/doc/guix.texi:26900 +#: guix-git/doc/guix.texi:27237 #, no-wrap msgid "@code{package} (default: @code{fcgiwrap})" msgstr "@code{package} (Vorgabe: @code{fcgiwrap})" #. type: table -#: guix-git/doc/guix.texi:26902 +#: guix-git/doc/guix.texi:27239 msgid "The fcgiwrap package to use." msgstr "Welches fcgiwrap-Paket benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:26903 +#: guix-git/doc/guix.texi:27240 #, no-wrap msgid "@code{socket} (default: @code{tcp:127.0.0.1:9000})" msgstr "@code{socket} (Vorgabe: @code{tcp:127.0.0.1:9000})" #. type: table -#: guix-git/doc/guix.texi:26909 +#: guix-git/doc/guix.texi:27246 msgid "The socket on which the @code{fcgiwrap} process should listen, as a string. Valid @var{socket} values include @code{unix:@var{/path/to/unix/socket}}, @code{tcp:@var{dot.ted.qu.ad}:@var{port}} and @code{tcp6:[@var{ipv6_addr}]:port}." msgstr "Der Socket, auf dem der @code{fcgiwrap}-Prozess lauschen soll, als eine Zeichenkette. Gültige Werte für @var{socket} wären unter anderem @code{unix:@var{/pfad/zum/unix/socket}}, @code{tcp:@var{vier.teile.gepunkt.et}:@var{Port}} und @code{tcp6:[@var{IPv6-Adresse}]:Port}." #. type: item -#: guix-git/doc/guix.texi:26910 +#: guix-git/doc/guix.texi:27247 #, no-wrap msgid "@code{user} (default: @code{fcgiwrap})" msgstr "@code{user} (Vorgabe: @code{fcgiwrap})" #. type: itemx -#: guix-git/doc/guix.texi:26911 +#: guix-git/doc/guix.texi:27248 #, no-wrap msgid "@code{group} (default: @code{fcgiwrap})" msgstr "@code{group} (Vorgabe: @code{fcgiwrap})" #. type: table -#: guix-git/doc/guix.texi:26916 +#: guix-git/doc/guix.texi:27253 msgid "The user and group names, as strings, under which to run the @code{fcgiwrap} process. The @code{fastcgi} service will ensure that if the user asks for the specific user or group names @code{fcgiwrap} that the corresponding user and/or group is present on the system." msgstr "Die Benutzerkonten- und Gruppennamen als Zeichenketten, unter denen der @code{fcgiwrap}-Prozess ausgeführt werden soll. Der @code{fastcgi}-Dienst wird sicherstellen, dass, wenn der Nutzer den Benutzer- oder Gruppennamen @code{fcgiwrap} verlangt, der entsprechende Benutzer und/oder Gruppe auch auf dem System existiert." #. type: table -#: guix-git/doc/guix.texi:26923 +#: guix-git/doc/guix.texi:27260 msgid "It is possible to configure a FastCGI-backed web service to pass HTTP authentication information from the front-end to the back-end, and to allow @code{fcgiwrap} to run the back-end process as a corresponding local user. To enable this capability on the back-end, run @code{fcgiwrap} as the @code{root} user and group. Note that this capability also has to be configured on the front-end as well." msgstr "Es ist möglich, einen FastCGI-gestützten Webdienst so zu konfigurieren, dass er HTTP-Authentisierungsinformationen vom Vordergrundserver an das Hintergrundsystem weiterreicht und es @code{fcgiwrap} möglich macht, den Hintergrundprozess als ein entsprechender lokaler Nutzer auszuführen. Um dem Hintergrundsystem diese Funktionalität anzubieten, lassen Sie @code{fcgiwrap} als der Administratornutzer @code{root} mit selbiger Gruppe ausführen. Beachten Sie, dass die Funktionalität auch auf dem Vordergrundsystem erst eingerichtet werden muss." #. type: cindex -#: guix-git/doc/guix.texi:26926 +#: guix-git/doc/guix.texi:27263 #, no-wrap msgid "php-fpm" msgstr "php-fpm" #. type: Plain text -#: guix-git/doc/guix.texi:26929 +#: guix-git/doc/guix.texi:27266 msgid "PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI implementation with some additional features useful for sites of any size." msgstr "PHP-FPM (FastCGI Process Manager) ist eine alternative PHP-FastCGI-Implementierung, die über einige zusätzliche Funktionalitäten verfügt, die für Webauftritte jeder Größe nützlich sind." #. type: Plain text -#: guix-git/doc/guix.texi:26931 +#: guix-git/doc/guix.texi:27268 msgid "These features include:" msgstr "Zu diesen Funktionalitäten gehören:" #. type: item -#: guix-git/doc/guix.texi:26932 +#: guix-git/doc/guix.texi:27269 #, no-wrap msgid "Adaptive process spawning" msgstr "Prozesserzeugung nach Bedarf" #. type: item -#: guix-git/doc/guix.texi:26933 +#: guix-git/doc/guix.texi:27270 #, no-wrap msgid "Basic statistics (similar to Apache's mod_status)" msgstr "Grundlegende Statistiken (ähnlich wie Apaches mod_status)" #. type: item -#: guix-git/doc/guix.texi:26934 +#: guix-git/doc/guix.texi:27271 #, no-wrap msgid "Advanced process management with graceful stop/start" msgstr "Fortschrittliche Prozessverwaltung mit sanftem Stoppen und Starten" #. type: item -#: guix-git/doc/guix.texi:26935 +#: guix-git/doc/guix.texi:27272 #, no-wrap msgid "Ability to start workers with different uid/gid/chroot/environment" msgstr "Die Möglichkeit, Arbeiter-Threads mit verschiedenen UIDs, GIDs, Chroot- oder Umgebungseinstellungen zu starten" #. type: itemize -#: guix-git/doc/guix.texi:26937 +#: guix-git/doc/guix.texi:27274 msgid "and different php.ini (replaces safe_mode)" msgstr "und mit verschiedener php.ini (als Ersatz für safe_mode)" #. type: item -#: guix-git/doc/guix.texi:26937 +#: guix-git/doc/guix.texi:27274 #, no-wrap msgid "Stdout & stderr logging" msgstr "Protokollierung der Standard- und Standardfehlerausgabe" #. type: item -#: guix-git/doc/guix.texi:26938 +#: guix-git/doc/guix.texi:27275 #, no-wrap msgid "Emergency restart in case of accidental opcode cache destruction" msgstr "Neustart im Notfall einer ungewollten Zerstörung des Befehlscode-Zwischenspeichers" #. type: item -#: guix-git/doc/guix.texi:26939 +#: guix-git/doc/guix.texi:27276 #, no-wrap msgid "Accelerated upload support" msgstr "Unterstützung für beschleunigtes Hochladen" #. type: item -#: guix-git/doc/guix.texi:26940 +#: guix-git/doc/guix.texi:27277 #, no-wrap msgid "Support for a \"slowlog\"" msgstr "Unterstützung für „langsames Protokollieren“ („slowlog“)" #. type: item -#: guix-git/doc/guix.texi:26941 +#: guix-git/doc/guix.texi:27278 #, no-wrap msgid "Enhancements to FastCGI, such as fastcgi_finish_request() -" msgstr "Verbesserungen gegenüber FastCGI, wie z.B.@: fastcgi_finish_request()@tie{}—" #. type: itemize -#: guix-git/doc/guix.texi:26944 +#: guix-git/doc/guix.texi:27281 msgid "a special function to finish request & flush all data while continuing to do something time-consuming (video converting, stats processing, etc.)" msgstr "eine besondere Funktion, um eine Anfrage fertig abzuarbeiten und alle Daten zu Ende zu verarbeiten, während etwas Zeitintensives abläuft (Videokonvertierung, Statistikverarbeitung usw.)" #. type: Plain text -#: guix-git/doc/guix.texi:26946 +#: guix-git/doc/guix.texi:27283 msgid "...@: and much more." msgstr "…@: und vieles mehr." #. type: defvr -#: guix-git/doc/guix.texi:26947 +#: guix-git/doc/guix.texi:27284 #, no-wrap msgid "{Scheme Variable} php-fpm-service-type" msgstr "{Scheme-Variable} php-fpm-service-type" #. type: defvr -#: guix-git/doc/guix.texi:26949 +#: guix-git/doc/guix.texi:27286 msgid "A Service type for @code{php-fpm}." msgstr "Ein Diensttyp für @code{php-fpm}." #. type: deftp -#: guix-git/doc/guix.texi:26951 +#: guix-git/doc/guix.texi:27288 #, no-wrap msgid "{Data Type} php-fpm-configuration" msgstr "{Datentyp} php-fpm-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26953 +#: guix-git/doc/guix.texi:27290 msgid "Data Type for php-fpm service configuration." msgstr "Datentyp für die Konfiguration des php-fpm-Dienstes." #. type: item -#: guix-git/doc/guix.texi:26954 +#: guix-git/doc/guix.texi:27291 #, no-wrap msgid "@code{php} (default: @code{php})" msgstr "@code{php} (Vorgabe: @code{php})" #. type: table -#: guix-git/doc/guix.texi:26956 +#: guix-git/doc/guix.texi:27293 msgid "The php package to use." msgstr "Das zu benutzende PHP-Paket." #. type: item -#: guix-git/doc/guix.texi:26956 +#: guix-git/doc/guix.texi:27293 #, no-wrap msgid "@code{socket} (default: @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.sock\")})" msgstr "@code{socket} (Vorgabe: @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.sock\")})" #. type: table -#: guix-git/doc/guix.texi:26958 +#: guix-git/doc/guix.texi:27295 msgid "The address on which to accept FastCGI requests. Valid syntaxes are:" msgstr "Die Adresse, auf der FastCGI-Anfragen angenommen werden. Gültige Syntax hierfür ist:" #. type: code{#1} -#: guix-git/doc/guix.texi:26959 +#: guix-git/doc/guix.texi:27296 #, no-wrap msgid "\"ip.add.re.ss:port\"" msgstr "\"ip.ad.res.se:Port\"" #. type: table -#: guix-git/doc/guix.texi:26961 +#: guix-git/doc/guix.texi:27298 msgid "Listen on a TCP socket to a specific address on a specific port." msgstr "Lässt auf einem TCP-Socket auf der angegebenen Adresse auf dem angegebenen Port lauschen." #. type: code{#1} -#: guix-git/doc/guix.texi:26961 +#: guix-git/doc/guix.texi:27298 #, no-wrap msgid "\"port\"" msgstr "\"port\"" #. type: table -#: guix-git/doc/guix.texi:26963 +#: guix-git/doc/guix.texi:27300 msgid "Listen on a TCP socket to all addresses on a specific port." msgstr "Lässt auf einem TCP-Socket auf allen Adressen auf dem angegebenen Port lauschen." #. type: code{#1} -#: guix-git/doc/guix.texi:26963 +#: guix-git/doc/guix.texi:27300 #, no-wrap msgid "\"/path/to/unix/socket\"" msgstr "\"/pfad/zum/unix/socket\"" #. type: table -#: guix-git/doc/guix.texi:26965 +#: guix-git/doc/guix.texi:27302 msgid "Listen on a unix socket." msgstr "Lässt auf einem Unix-Socket lauschen." #. type: item -#: guix-git/doc/guix.texi:26967 +#: guix-git/doc/guix.texi:27304 #, no-wrap msgid "@code{user} (default: @code{php-fpm})" msgstr "@code{user} (Vorgabe: @code{php-fpm})" #. type: table -#: guix-git/doc/guix.texi:26969 +#: guix-git/doc/guix.texi:27306 msgid "User who will own the php worker processes." msgstr "Der Benutzer, dem die PHP-Arbeiterprozesse gehören werden." #. type: item -#: guix-git/doc/guix.texi:26969 +#: guix-git/doc/guix.texi:27306 #, no-wrap msgid "@code{group} (default: @code{php-fpm})" msgstr "@code{group} (Vorgabe: @code{php-fpm})" #. type: table -#: guix-git/doc/guix.texi:26971 +#: guix-git/doc/guix.texi:27308 msgid "Group of the worker processes." msgstr "Die Gruppe für die Arbeiterprozesse." #. type: item -#: guix-git/doc/guix.texi:26971 +#: guix-git/doc/guix.texi:27308 #, no-wrap msgid "@code{socket-user} (default: @code{php-fpm})" msgstr "@code{socket-user} (Vorgabe: @code{php-fpm})" #. type: table -#: guix-git/doc/guix.texi:26973 +#: guix-git/doc/guix.texi:27310 msgid "User who can speak to the php-fpm socket." msgstr "Der Benutzer, der mit dem php-fpm-Socket kommunizieren kann." #. type: item -#: guix-git/doc/guix.texi:26973 +#: guix-git/doc/guix.texi:27310 #, no-wrap msgid "@code{socket-group} (default: @code{nginx})" msgstr "@code{socket-group} (Vorgabe: @code{nginx})" #. type: table -#: guix-git/doc/guix.texi:26975 +#: guix-git/doc/guix.texi:27312 msgid "Group that can speak to the php-fpm socket." msgstr "Die Gruppe, die mit dem php-fpm-Socket kommunizieren kann." #. type: item -#: guix-git/doc/guix.texi:26975 +#: guix-git/doc/guix.texi:27312 #, no-wrap msgid "@code{pid-file} (default: @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.pid\")})" msgstr "@code{pid-file} (Vorgabe: @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.pid\")})" #. type: table -#: guix-git/doc/guix.texi:26978 +#: guix-git/doc/guix.texi:27315 msgid "The process id of the php-fpm process is written to this file once the service has started." msgstr "Der Prozessidentifikator des php-fpm-Prozesses wird in diese Datei geschrieben, sobald der Dienst gestartet wurde." #. type: item -#: guix-git/doc/guix.texi:26978 +#: guix-git/doc/guix.texi:27315 #, no-wrap msgid "@code{log-file} (default: @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.log\")})" msgstr "@code{log-file} (Vorgabe: @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.log\")})" #. type: table -#: guix-git/doc/guix.texi:26980 +#: guix-git/doc/guix.texi:27317 msgid "Log for the php-fpm master process." msgstr "Wohin das Protokoll für den php-fpm-Hauptprozess geschrieben wird." #. type: item -#: guix-git/doc/guix.texi:26980 +#: guix-git/doc/guix.texi:27317 #, no-wrap msgid "@code{process-manager} (default: @code{(php-fpm-dynamic-process-manager-configuration)})" msgstr "@code{process-manager} (Vorgabe: @code{(php-fpm-dynamic-process-manager-configuration)})" #. type: table -#: guix-git/doc/guix.texi:26983 +#: guix-git/doc/guix.texi:27320 msgid "Detailed settings for the php-fpm process manager. Must be one of:" msgstr "Detaillierte Einstellungen für die php-fpm-Prozessverwaltung. Sie müssen eines der Folgenden sein:" #. type: code{#1} -#: guix-git/doc/guix.texi:26984 +#: guix-git/doc/guix.texi:27321 #, no-wrap msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26985 +#: guix-git/doc/guix.texi:27322 #, no-wrap msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26986 +#: guix-git/doc/guix.texi:27323 #, no-wrap msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26988 +#: guix-git/doc/guix.texi:27325 #, no-wrap msgid "@code{display-errors} (default @code{#f})" msgstr "@code{display-errors} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:26993 +#: guix-git/doc/guix.texi:27330 msgid "Determines whether php errors and warning should be sent to clients and displayed in their browsers. This is useful for local php development, but a security risk for public sites, as error messages can reveal passwords and personal data." msgstr "Legt fest, ob PHP-Fehler und Warnungen an Clients geschickt und in ihren Browsern angezeigt werden. Dies ist nützlich für lokale PHP-Entwicklung, aber ein Sicherheitsrisiko für öffentliche Webauftritte, weil Fehlermeldungen Passwörter und Passwortdaten offenlegen können." #. type: item -#: guix-git/doc/guix.texi:26993 +#: guix-git/doc/guix.texi:27330 #, no-wrap msgid "@code{timezone} (default @code{#f})" msgstr "@code{timezone} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:26995 +#: guix-git/doc/guix.texi:27332 msgid "Specifies @code{php_admin_value[date.timezone]} parameter." msgstr "Legt den Parameter @code{php_admin_value[date.timezone]} fest." #. type: item -#: guix-git/doc/guix.texi:26995 +#: guix-git/doc/guix.texi:27332 #, no-wrap msgid "@code{workers-logfile} (default @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.www.log\")})" msgstr "@code{workers-logfile} (Vorgabe: @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.www.log\")})" #. type: table -#: guix-git/doc/guix.texi:26998 +#: guix-git/doc/guix.texi:27335 msgid "This file will log the @code{stderr} outputs of php worker processes. Can be set to @code{#f} to disable logging." msgstr "In dieser Datei werden @code{stderr}-Ausgaben von PHP-Arbeiterprozessen protokolliert. Das Feld kann auf @code{#f} gesetzt werden, damit nicht protokolliert wird." #. type: item -#: guix-git/doc/guix.texi:26998 +#: guix-git/doc/guix.texi:27335 #, no-wrap msgid "@code{file} (default @code{#f})" msgstr "@code{file} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27001 +#: guix-git/doc/guix.texi:27338 msgid "An optional override of the whole configuration. You can use the @code{mixed-text-file} function or an absolute filepath for it." msgstr "Optional kann hier ein vorrangig benutzter Ersatz für die gesamte Konfigurationsdatei angegeben werden. Sie können dafür die @code{mixed-text-file}-Funktion oder einen absoluten Dateipfad verwenden." #. type: item -#: guix-git/doc/guix.texi:27001 +#: guix-git/doc/guix.texi:27338 #, no-wrap msgid "@code{php-ini-file} (default @code{#f})" msgstr "@code{php-ini-file} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27005 +#: guix-git/doc/guix.texi:27342 msgid "An optional override of the default php settings. It may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). You can use the @code{mixed-text-file} function or an absolute filepath for it." msgstr "Hier können optional die PHP-Voreinstellungen geändert werden. Geben Sie dazu eine beliebige Art von „dateiartigem“ Objekt an (siehe @ref{G-Expressions, dateiartige Objekte}). Sie können dafür die @code{mixed-text-file}-Funktion oder einen absoluten Dateipfad verwenden." #. type: table -#: guix-git/doc/guix.texi:27009 +#: guix-git/doc/guix.texi:27346 msgid "For local development it is useful to set a higher timeout and memory limit for spawned php processes. This be accomplished with the following operating system configuration snippet:" msgstr "Bei der Entwicklung mit dem lokalen Rechner bietet es sich an, die Zeit- und Speicherbegrenzung erzeugter PHP-Prozesse anzuheben. Benutzen Sie dazu folgndes Code-Schnipsel in Ihrer Betriebssystemkonfiguration:" #. type: lisp -#: guix-git/doc/guix.texi:27014 +#: guix-git/doc/guix.texi:27351 #, no-wrap msgid "" "(define %local-php-ini\n" @@ -50442,7 +51127,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:27021 +#: guix-git/doc/guix.texi:27358 #, no-wrap msgid "" "(operating-system\n" @@ -50460,118 +51145,118 @@ msgstr "" " %base-services)))\n" #. type: table -#: guix-git/doc/guix.texi:27026 +#: guix-git/doc/guix.texi:27363 msgid "Consult the @url{https://www.php.net/manual/en/ini.core.php,core php.ini directives} for comprehensive documentation on the acceptable @file{php.ini} directives." msgstr "Umfassende Dokumentation dazu, welche Direktiven Sie in der @file{php.ini} verwenden dürfen, sollten Sie unter den @url{https://www.php.net/manual/en/ini.core.php,php.ini-Kerndirektiven} nachschlagen." #. type: deftp -#: guix-git/doc/guix.texi:27029 +#: guix-git/doc/guix.texi:27366 #, no-wrap msgid "{Data type} php-fpm-dynamic-process-manager-configuration" msgstr "{Datentyp} php-fpm-dynamic-process-manager-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27033 +#: guix-git/doc/guix.texi:27370 msgid "Data Type for the @code{dynamic} php-fpm process manager. With the @code{dynamic} process manager, spare worker processes are kept around based on its configured limits." msgstr "Datentyp für die @emph{dynamische} Prozessverwaltung durch php-fpm. Bei der @emph{dynamischen} Prozessverwaltung bleiben Arbeiterprozesse nach Abschluss ihrer Aufgabe weiterhin erhalten, solange die konfigurierten Beschränkungen eingehalten werden." #. type: item -#: guix-git/doc/guix.texi:27034 guix-git/doc/guix.texi:27050 -#: guix-git/doc/guix.texi:27060 +#: guix-git/doc/guix.texi:27371 guix-git/doc/guix.texi:27387 +#: guix-git/doc/guix.texi:27397 #, no-wrap msgid "@code{max-children} (default: @code{5})" msgstr "@code{max-children} (Vorgabe: @code{5})" #. type: table -#: guix-git/doc/guix.texi:27036 guix-git/doc/guix.texi:27052 -#: guix-git/doc/guix.texi:27062 +#: guix-git/doc/guix.texi:27373 guix-git/doc/guix.texi:27389 +#: guix-git/doc/guix.texi:27399 msgid "Maximum of worker processes." msgstr "Die maximale Anzahl an Arbeiterprozessen." #. type: item -#: guix-git/doc/guix.texi:27036 +#: guix-git/doc/guix.texi:27373 #, no-wrap msgid "@code{start-servers} (default: @code{2})" msgstr "@code{start-servers} (Vorgabe: @code{2})" #. type: table -#: guix-git/doc/guix.texi:27038 +#: guix-git/doc/guix.texi:27375 msgid "How many worker processes should be started on start-up." msgstr "Wie viele Arbeiterprozesse gleich zu Beginn gestartet werden sollen." #. type: item -#: guix-git/doc/guix.texi:27038 +#: guix-git/doc/guix.texi:27375 #, no-wrap msgid "@code{min-spare-servers} (default: @code{1})" msgstr "@code{min-spare-servers} (Vorgabe: @code{1})" #. type: table -#: guix-git/doc/guix.texi:27040 +#: guix-git/doc/guix.texi:27377 msgid "How many spare worker processes should be kept around at minimum." msgstr "Wie viele untätige Arbeiterprozesse mindestens weiterhin vorgehalten bleiben sollen." #. type: item -#: guix-git/doc/guix.texi:27040 +#: guix-git/doc/guix.texi:27377 #, no-wrap msgid "@code{max-spare-servers} (default: @code{3})" msgstr "@code{max-spare-servers} (Vorgabe: @code{3})" #. type: table -#: guix-git/doc/guix.texi:27042 +#: guix-git/doc/guix.texi:27379 msgid "How many spare worker processes should be kept around at maximum." msgstr "Wie viele untätige Arbeiterprozesse höchstens weiterhin vorgehalten bleiben sollen." #. type: deftp -#: guix-git/doc/guix.texi:27045 +#: guix-git/doc/guix.texi:27382 #, no-wrap msgid "{Data type} php-fpm-static-process-manager-configuration" msgstr "{Datentyp} php-fpm-static-process-manager-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27049 +#: guix-git/doc/guix.texi:27386 msgid "Data Type for the @code{static} php-fpm process manager. With the @code{static} process manager, an unchanging number of worker processes are created." msgstr "Datentyp für die @emph{statische} Prozessverwaltung durch php-fpm. Bei der @emph{statischen} Prozessverwaltung wird eine unveränderliche Anzahl an Arbeiterprozessen erzeugt." #. type: deftp -#: guix-git/doc/guix.texi:27055 +#: guix-git/doc/guix.texi:27392 #, no-wrap msgid "{Data type} php-fpm-on-demand-process-manager-configuration" msgstr "{Datentyp} php-fpm-on-demand-process-manager-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27059 +#: guix-git/doc/guix.texi:27396 msgid "Data Type for the @code{on-demand} php-fpm process manager. With the @code{on-demand} process manager, worker processes are only created as requests arrive." msgstr "Datentyp für die Prozessverwaltung @emph{nach Bedarf} durch php-fpm. Bei der Prozessverwaltung @emph{nach Bedarf} werden Arbeiterprozesse erst erzeugt, wenn Anfragen vorliegen." #. type: item -#: guix-git/doc/guix.texi:27062 +#: guix-git/doc/guix.texi:27399 #, no-wrap msgid "@code{process-idle-timeout} (default: @code{10})" msgstr "@code{process-idle-timeout} (Vorgabe: @code{10})" #. type: table -#: guix-git/doc/guix.texi:27064 +#: guix-git/doc/guix.texi:27401 msgid "The time in seconds after which a process with no requests is killed." msgstr "Die Zeit in Sekunden, nach der ein Prozess ohne Anfragen abgewürgt wird." #. type: deffn -#: guix-git/doc/guix.texi:27068 +#: guix-git/doc/guix.texi:27405 #, no-wrap msgid "{Scheme Procedure} nginx-php-location @" msgstr "{Scheme-Prozedur} nginx-php-location @" #. type: deffn -#: guix-git/doc/guix.texi:27074 +#: guix-git/doc/guix.texi:27411 msgid "[#:nginx-package nginx] @ [socket (string-append \"/var/run/php\" @ (version-major (package-version php)) @ \"-fpm.sock\")] A helper function to quickly add php to an @code{nginx-server-configuration}." msgstr "[#:nginx-package nginx] @ [socket (string-append \"/var/run/php\" @ (version-major (package-version php)) @ \"-fpm.sock\")] Eine Hilfsfunktion, mit der in kurzer Zeit PHP zu einer @code{nginx-server-configuration} hinzugefügt werden kann." #. type: Plain text -#: guix-git/doc/guix.texi:27077 +#: guix-git/doc/guix.texi:27414 msgid "A simple services setup for nginx with php can look like this:" msgstr "Eine einfache Art, die Dienste für nginx mit PHP einzurichten, kann so aussehen:" #. type: lisp -#: guix-git/doc/guix.texi:27090 +#: guix-git/doc/guix.texi:27427 #, no-wrap msgid "" "(services (cons* (service dhcp-client-service-type)\n" @@ -50601,34 +51286,34 @@ msgstr "" " %base-services))\n" #. type: cindex -#: guix-git/doc/guix.texi:27092 +#: guix-git/doc/guix.texi:27429 #, no-wrap msgid "cat-avatar-generator" msgstr "cat-avatar-generator" #. type: Plain text -#: guix-git/doc/guix.texi:27096 +#: guix-git/doc/guix.texi:27433 msgid "The cat avatar generator is a simple service to demonstrate the use of php-fpm in @code{Nginx}. It is used to generate cat avatar from a seed, for instance the hash of a user's email address." msgstr "Der Cat Avatar Generator („Katzenavatargenerator“) ist ein einfacher Dienst, um die Nutzung von php-fpm in @code{Nginx} zu demonstrieren. Mit ihm können Katzenavatarbilder aus einem Startwert („Seed“) heraus erzeugt werden, zum Beispiel aus dem Hash der E-Mail-Adresse eines Benutzers." #. type: deffn -#: guix-git/doc/guix.texi:27097 +#: guix-git/doc/guix.texi:27434 #, no-wrap msgid "{Scheme Procedure} cat-avatar-generator-service @" msgstr "{Scheme-Prozedur} cat-avatar-generator-service @" #. type: deffn -#: guix-git/doc/guix.texi:27105 +#: guix-git/doc/guix.texi:27442 msgid "[#:cache-dir \"/var/cache/cat-avatar-generator\"] @ [#:package cat-avatar-generator] @ [#:configuration (nginx-server-configuration)] Returns an nginx-server-configuration that inherits @code{configuration}. It extends the nginx configuration to add a server block that serves @code{package}, a version of cat-avatar-generator. During execution, cat-avatar-generator will be able to use @code{cache-dir} as its cache directory." msgstr "[#:cache-dir \"/var/cache/cat-avatar-generator\"] @ [#:package cat-avatar-generator] @ [#:configuration (nginx-server-configuration)] Liefert ein nginx-server-configuration-Objekt, das von der in @code{configuration} angegebenen Konfiguration erbt. Es erweitert die Nginx-Konfiguration, indem es einen Server-Block hinzufügt, der die in @code{package} angegebene Version vom cat-avatar-generator anbietet. Bei der Ausführung wird dem cat-avatar-generator Zugriff auf sein in @code{cache-dir} angegebenes Zwischenspeicherverzeichnis gewährt." #. type: Plain text -#: guix-git/doc/guix.texi:27108 +#: guix-git/doc/guix.texi:27445 msgid "A simple setup for cat-avatar-generator can look like this:" msgstr "Eine einfache Konfiguration des cat-avatar-generator kann so aussehen:" #. type: lisp -#: guix-git/doc/guix.texi:27115 +#: guix-git/doc/guix.texi:27452 #, no-wrap msgid "" "(services (cons* (cat-avatar-generator-service\n" @@ -50646,177 +51331,177 @@ msgstr "" " %base-services))\n" #. type: subsubheading -#: guix-git/doc/guix.texi:27117 +#: guix-git/doc/guix.texi:27454 #, no-wrap msgid "Hpcguix-web" msgstr "Hpcguix-web" #. type: cindex -#: guix-git/doc/guix.texi:27119 +#: guix-git/doc/guix.texi:27456 #, no-wrap msgid "hpcguix-web" msgstr "hpcguix-web" #. type: Plain text -#: guix-git/doc/guix.texi:27124 +#: guix-git/doc/guix.texi:27461 msgid "The @uref{https://github.com/UMCUGenetics/hpcguix-web/, hpcguix-web} program is a customizable web interface to browse Guix packages, initially designed for users of high-performance computing (HPC) clusters." msgstr "Das Programm @uref{https://github.com/UMCUGenetics/hpcguix-web/, hpcguix-web} ist eine anpassbare Weboberfläche, um Guix-Pakete zu suchen. Am Anfang war es für Nutzer von Hochleistungs-Rechenclustern gedacht („High-Performance Computing“, kurz HPC)." #. type: defvr -#: guix-git/doc/guix.texi:27125 +#: guix-git/doc/guix.texi:27462 #, no-wrap msgid "{Scheme Variable} hpcguix-web-service-type" msgstr "{Scheme-Variable} hpcguix-web-service-type" #. type: defvr -#: guix-git/doc/guix.texi:27127 +#: guix-git/doc/guix.texi:27464 msgid "The service type for @code{hpcguix-web}." msgstr "Der Diensttyp für @code{hpcguix-web}." #. type: deftp -#: guix-git/doc/guix.texi:27129 +#: guix-git/doc/guix.texi:27466 #, no-wrap msgid "{Data Type} hpcguix-web-configuration" msgstr "{Datentyp} hpcguix-web-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27131 +#: guix-git/doc/guix.texi:27468 msgid "Data type for the hpcguix-web service configuration." msgstr "Datentyp für die Konfiguration des hpcguix-web-Dienstes." #. type: code{#1} -#: guix-git/doc/guix.texi:27133 +#: guix-git/doc/guix.texi:27470 #, no-wrap msgid "specs" msgstr "specs" #. type: table -#: guix-git/doc/guix.texi:27136 +#: guix-git/doc/guix.texi:27473 msgid "A gexp (@pxref{G-Expressions}) specifying the hpcguix-web service configuration. The main items available in this spec are:" msgstr "Ein G-Ausdruck (siehe @ref{G-Expressions}), der die Konfiguration des hpcguix-web-Dienstes festlegt. In dieser Spezifikation („Spec“) sollten vor allem diese Sachen angegeben werden:" #. type: item -#: guix-git/doc/guix.texi:27138 +#: guix-git/doc/guix.texi:27475 #, no-wrap msgid "@code{title-prefix} (default: @code{\"hpcguix | \"})" msgstr "@code{title-prefix} (Vorgabe: @code{\"hpcguix | \"})" #. type: table -#: guix-git/doc/guix.texi:27140 +#: guix-git/doc/guix.texi:27477 msgid "The page title prefix." msgstr "Das Präfix der Webseitentitel." #. type: item -#: guix-git/doc/guix.texi:27141 +#: guix-git/doc/guix.texi:27478 #, no-wrap msgid "@code{guix-command} (default: @code{\"guix\"})" msgstr "@code{guix-command} (Vorgabe: @code{\"guix\"})" #. type: table -#: guix-git/doc/guix.texi:27143 +#: guix-git/doc/guix.texi:27480 msgid "The @command{guix} command." msgstr "Der @command{guix}-Befehl." #. type: item -#: guix-git/doc/guix.texi:27144 +#: guix-git/doc/guix.texi:27481 #, no-wrap msgid "@code{package-filter-proc} (default: @code{(const #t)})" msgstr "@code{package-filter-proc} (Vorgabe: @code{(const #t)})" #. type: table -#: guix-git/doc/guix.texi:27146 +#: guix-git/doc/guix.texi:27483 msgid "A procedure specifying how to filter packages that are displayed." msgstr "Eine Prozedur, die festlegt, wie anzuzeigende Pakete gefiltert werden." #. type: item -#: guix-git/doc/guix.texi:27147 +#: guix-git/doc/guix.texi:27484 #, no-wrap msgid "@code{package-page-extension-proc} (default: @code{(const '())})" msgstr "@code{package-page-extension-proc} (Vorgabe: @code{(const '())})" #. type: table -#: guix-git/doc/guix.texi:27149 +#: guix-git/doc/guix.texi:27486 msgid "Extension package for @code{hpcguix-web}." msgstr "Erweiterungspaket für @code{hpcguix-web}." #. type: item -#: guix-git/doc/guix.texi:27150 +#: guix-git/doc/guix.texi:27487 #, no-wrap msgid "@code{menu} (default: @code{'()})" msgstr "@code{menu} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27152 +#: guix-git/doc/guix.texi:27489 msgid "Additional entry in page @code{menu}." msgstr "Zusätzlicher Eintrag auf der Menüseite." #. type: item -#: guix-git/doc/guix.texi:27153 +#: guix-git/doc/guix.texi:27490 #, no-wrap msgid "@code{channels} (default: @code{%default-channels})" msgstr "@code{channels} (Vorgabe: @code{%default-channels})" #. type: table -#: guix-git/doc/guix.texi:27155 +#: guix-git/doc/guix.texi:27492 msgid "List of channels from which the package list is built (@pxref{Channels})." msgstr "Liste der Kanäle, aus denen die Paketliste erstellt wird (siehe @ref{Channels})." #. type: item -#: guix-git/doc/guix.texi:27156 +#: guix-git/doc/guix.texi:27493 #, no-wrap msgid "@code{package-list-expiration} (default: @code{(* 12 3600)})" msgstr "@code{package-list-expiration} (Vorgabe: @code{(* 12 3600)})" #. type: table -#: guix-git/doc/guix.texi:27159 +#: guix-git/doc/guix.texi:27496 msgid "The expiration time, in seconds, after which the package list is rebuilt from the latest instances of the given channels." msgstr "Nach wie viel Zeit in Sekunden die Paketliste aus den neuesten Instanzen der angegebenen Kanäle neu erzeugt wird." #. type: table -#: guix-git/doc/guix.texi:27164 +#: guix-git/doc/guix.texi:27501 msgid "See the hpcguix-web repository for a @uref{https://github.com/UMCUGenetics/hpcguix-web/blob/master/hpcweb-configuration.scm, complete example}." msgstr "Siehe das Repository von hpcguix-web für ein @uref{https://github.com/UMCUGenetics/hpcguix-web/blob/master/hpcweb-configuration.scm, vollständiges Beispiel}." #. type: item -#: guix-git/doc/guix.texi:27165 +#: guix-git/doc/guix.texi:27502 #, no-wrap msgid "@code{package} (default: @code{hpcguix-web})" msgstr "@code{package} (Vorgabe: @code{hpcguix-web})" #. type: table -#: guix-git/doc/guix.texi:27167 +#: guix-git/doc/guix.texi:27504 msgid "The hpcguix-web package to use." msgstr "Das hpcguix-web-Paket, was benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:27168 +#: guix-git/doc/guix.texi:27505 #, no-wrap msgid "@code{address} (default: @code{\"127.0.0.1\"})" msgstr "@code{address} (Vorgabe: @code{\"127.0.0.1\"})" #. type: table -#: guix-git/doc/guix.texi:27170 +#: guix-git/doc/guix.texi:27507 msgid "The IP address to listen to." msgstr "Die IP-Adresse, auf die gelauscht werden soll." #. type: item -#: guix-git/doc/guix.texi:27171 +#: guix-git/doc/guix.texi:27508 #, no-wrap msgid "@code{port} (default: @code{5000})" msgstr "@code{port} (Vorgabe: @code{5000})" #. type: table -#: guix-git/doc/guix.texi:27173 +#: guix-git/doc/guix.texi:27510 msgid "The port number to listen to." msgstr "Die Portnummer, auf der gelauscht werden soll." #. type: Plain text -#: guix-git/doc/guix.texi:27177 +#: guix-git/doc/guix.texi:27514 msgid "A typical hpcguix-web service declaration looks like this:" msgstr "Eine typische Deklaration eines hpcguix-web-Dienstes sieht so aus:" #. type: lisp -#: guix-git/doc/guix.texi:27186 +#: guix-git/doc/guix.texi:27523 #, no-wrap msgid "" "(service hpcguix-web-service-type\n" @@ -50836,39 +51521,39 @@ msgstr "" " (menu '((\"/about\" \"ABOUT\"))))))))\n" #. type: quotation -#: guix-git/doc/guix.texi:27193 +#: guix-git/doc/guix.texi:27530 msgid "The hpcguix-web service periodically updates the package list it publishes by pulling channels from Git. To that end, it needs to access X.509 certificates so that it can authenticate Git servers when communicating over HTTPS, and it assumes that @file{/etc/ssl/certs} contains those certificates." msgstr "Der hpcguix-web-Dienst aktualisiert die Liste der Pakete, die er veröffentlicht, periodisch, indem er die Kanäle über einen Git-„Pull“ lädt. Dazu muss er auf X.509-Zertifikate zugreifen, damit Git-Server authentifiziert werden können, wenn mit diesen über HTTPS kommuniziert wird, wofür der Dienst davon ausgeht, dass sich jene Zertifikate in @file{/etc/ssl/certs} befinden." #. type: quotation -#: guix-git/doc/guix.texi:27197 +#: guix-git/doc/guix.texi:27534 msgid "Thus, make sure to add @code{nss-certs} or another certificate package to the @code{packages} field of your configuration. @ref{X.509 Certificates}, for more information on X.509 certificates." msgstr "Stellen Sie also sicher, dass @code{nss-certs} oder ein anderes Zertifikatspaket im @code{packages}-Feld ihrer Konfiguration steht. Siehe @ref{X.509 Certificates} für weitere Informationen zu X.509-Zertifikaten." #. type: cindex -#: guix-git/doc/guix.texi:27199 guix-git/doc/guix.texi:27201 +#: guix-git/doc/guix.texi:27536 guix-git/doc/guix.texi:27538 #, no-wrap msgid "gmnisrv" msgstr "gmnisrv" #. type: Plain text -#: guix-git/doc/guix.texi:27204 +#: guix-git/doc/guix.texi:27541 msgid "The @uref{https://git.sr.ht/~sircmpwn/gmnisrv, gmnisrv} program is a simple @uref{https://gemini.circumlunar.space/, Gemini} protocol server." msgstr "Das Programm @uref{https://git.sr.ht/~sircmpwn/gmnisrv, gmnisrv} ist ein einfacher Server für das @uref{https://gemini.circumlunar.space/, Gemini-Protokoll}." #. type: deffn -#: guix-git/doc/guix.texi:27205 +#: guix-git/doc/guix.texi:27542 #, no-wrap msgid "{Scheme Variable} gmnisrv-service-type" msgstr "{Scheme-Variable} gmnisrv-service-type" #. type: deffn -#: guix-git/doc/guix.texi:27208 +#: guix-git/doc/guix.texi:27545 msgid "This is the type of the gmnisrv service, whose value should be a @code{gmnisrv-configuration} object, as in this example:" msgstr "Dies ist der Diensttyp des gmnisrv-Dienstes, dessen Wert ein @code{gmnisrv-configuration}-Objekt wie in diesem Beispiel sein sollte:" #. type: lisp -#: guix-git/doc/guix.texi:27213 +#: guix-git/doc/guix.texi:27550 #, no-wrap msgid "" "(service gmnisrv-service-type\n" @@ -50880,68 +51565,68 @@ msgstr "" " (config-file (local-file \"./my-gmnisrv.ini\"))))\n" #. type: deftp -#: guix-git/doc/guix.texi:27216 +#: guix-git/doc/guix.texi:27553 #, no-wrap msgid "{Data Type} gmnisrv-configuration" msgstr "{Datentyp} gmnisrv-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27218 +#: guix-git/doc/guix.texi:27555 msgid "Data type representing the configuration of gmnisrv." msgstr "Datentyp, der die Konfiguration von gmnisrv repräsentiert." #. type: item -#: guix-git/doc/guix.texi:27220 +#: guix-git/doc/guix.texi:27557 #, no-wrap msgid "@code{package} (default: @var{gmnisrv})" msgstr "@code{package} (Vorgabe: @var{gmnisrv})" #. type: table -#: guix-git/doc/guix.texi:27222 +#: guix-git/doc/guix.texi:27559 msgid "Package object of the gmnisrv server." msgstr "Das Paketobjekt des gmnisrv-Servers." #. type: item -#: guix-git/doc/guix.texi:27223 +#: guix-git/doc/guix.texi:27560 #, no-wrap msgid "@code{config-file} (default: @code{%default-gmnisrv-config-file})" msgstr "@code{config-file} (Vorgabe: @code{%default-gmnisrv-config-file})" #. type: table -#: guix-git/doc/guix.texi:27229 +#: guix-git/doc/guix.texi:27566 msgid "File-like object of the gmnisrv configuration file to use. The default configuration listens on port 1965 and serves files from @file{/srv/gemini}. Certificates are stored in @file{/var/lib/gemini/certs}. For more information, run @command{man gmnisrv} and @command{man gmnisrv.ini}." msgstr "Ein dateiartiges Objekt mit der zu nutzenden gmnisrv-Konfigurationsdatei. Die Vorgabekonfiguration lauscht auf Port 1965 und bietet die Dateien in @file{/srv/gemini} an. Zertifikate werden in @file{/var/lib/gemini/certs} gespeichert. Führen Sie für mehr Informationen @command{man gmnisrv} und @command{man gmnisrv.ini} aus." #. type: subsubheading -#: guix-git/doc/guix.texi:27233 +#: guix-git/doc/guix.texi:27570 #, no-wrap msgid "Agate" msgstr "Agate" #. type: cindex -#: guix-git/doc/guix.texi:27235 +#: guix-git/doc/guix.texi:27572 #, no-wrap msgid "agate" msgstr "agate" #. type: Plain text -#: guix-git/doc/guix.texi:27240 +#: guix-git/doc/guix.texi:27577 msgid "The @uref{gemini://qwertqwefsday.eu/agate.gmi, Agate} (@uref{https://github.com/mbrubeck/agate, GitHub page over HTTPS}) program is a simple @uref{https://gemini.circumlunar.space/, Gemini} protocol server written in Rust." msgstr "Das Programm @uref{gemini://qwertqwefsday.eu/agate.gmi, Agate} (@uref{https://github.com/mbrubeck/agate, GitHub-Seite über HTTPS}) ist ein einfacher Server für das @uref{https://gemini.circumlunar.space/, Gemini-Protokoll}, der in Rust geschrieben ist." #. type: deffn -#: guix-git/doc/guix.texi:27241 +#: guix-git/doc/guix.texi:27578 #, no-wrap msgid "{Scheme Variable} agate-service-type" msgstr "{Scheme-Variable} agate-service-type" #. type: deffn -#: guix-git/doc/guix.texi:27244 +#: guix-git/doc/guix.texi:27581 msgid "This is the type of the agate service, whose value should be an @code{agate-service-type} object, as in this example:" msgstr "Dies ist der Diensttyp des agate-Dienstes, dessen Wert ein @code{agate-configuration}-Objekt wie in diesem Beispiel sein sollte:" #. type: lisp -#: guix-git/doc/guix.texi:27251 +#: guix-git/doc/guix.texi:27588 #, no-wrap msgid "" "(service agate-service-type\n" @@ -50957,17 +51642,17 @@ msgstr "" " (key \"/srv/key.rsa\")))\n" #. type: deffn -#: guix-git/doc/guix.texi:27256 +#: guix-git/doc/guix.texi:27593 msgid "The example above represents the minimal tweaking necessary to get Agate up and running. Specifying the path to the certificate and key is always necessary, as the Gemini protocol requires TLS by default." msgstr "Das obige Beispiel steht für die minimalen Abänderungen, um Agate lauffähig zu machen. Den Pfad zum Zertifikat und zum Schlüssel anzugeben, ist auf jeden Fall nötig, denn das Gemini-Protokoll setzt standardmäßig TLS voraus." #. type: deffn -#: guix-git/doc/guix.texi:27259 +#: guix-git/doc/guix.texi:27596 msgid "To obtain a certificate and a key, you could, for example, use OpenSSL, running a command similar to the following example:" msgstr "Um ein Zertifikat und einen Schlüssel zu bekommen, können Sie zum Beispiel OpenSSL benutzen. Das ginge mit einem Befehl ähnlich zu diesem Beispiel hier:" #. type: example -#: guix-git/doc/guix.texi:27263 +#: guix-git/doc/guix.texi:27600 #, no-wrap msgid "" "openssl req -x509 -newkey rsa:4096 -keyout key.rsa -out cert.pem \\\n" @@ -50977,220 +51662,220 @@ msgstr "" " -days 3650 -nodes -subj \"/CN=beispiel.com\"\n" #. type: deffn -#: guix-git/doc/guix.texi:27268 +#: guix-git/doc/guix.texi:27605 msgid "Of course, you'll have to replace @i{example.com} with your own domain name, and then point the Agate configuration towards the path of the generated key and certificate." msgstr "Natürlich müssen Sie statt @i{beispiel.com} Ihren eigenen Domainnamen angeben und dann die Konfiguration von Agate auf den Pfad des damit erzeugten Schlüssels und Zertifikats verweisen lassen." #. type: deftp -#: guix-git/doc/guix.texi:27271 +#: guix-git/doc/guix.texi:27608 #, no-wrap msgid "{Data Type} agate-configuration" msgstr "{Datentyp} agate-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27273 +#: guix-git/doc/guix.texi:27610 msgid "Data type representing the configuration of Agate." msgstr "Der Datentyp, der die Konfiguration von Agate repräsentiert." #. type: item -#: guix-git/doc/guix.texi:27275 +#: guix-git/doc/guix.texi:27612 #, no-wrap msgid "@code{package} (default: @code{agate})" msgstr "@code{package} (Vorgabe: @code{agate})" #. type: table -#: guix-git/doc/guix.texi:27277 +#: guix-git/doc/guix.texi:27614 msgid "The package object of the Agate server." msgstr "Das Paketobjekt des Agate-Servers." #. type: item -#: guix-git/doc/guix.texi:27278 +#: guix-git/doc/guix.texi:27615 #, no-wrap msgid "@code{content} (default: @file{\"/srv/gemini\"})" msgstr "@code{content} (Vorgabe: @file{\"/srv/gemini\"})" #. type: table -#: guix-git/doc/guix.texi:27280 +#: guix-git/doc/guix.texi:27617 msgid "The directory from which Agate will serve files." msgstr "Aus welchem Verzeichnis Agate Dateien anbieten soll." #. type: item -#: guix-git/doc/guix.texi:27281 +#: guix-git/doc/guix.texi:27618 #, no-wrap msgid "@code{cert} (default: @code{#f})" msgstr "@code{cert} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27284 +#: guix-git/doc/guix.texi:27621 msgid "The path to the TLS certificate PEM file to be used for encrypted connections. Must be filled in with a value from the user." msgstr "Der Pfad zur PEM-Datei mit dem TLS-Zertifikat, das verschlüsselte Verbindungen ermöglicht. Hier muss ein Wert angegeben werden." #. type: item -#: guix-git/doc/guix.texi:27285 guix-git/doc/guix.texi:27721 +#: guix-git/doc/guix.texi:27622 guix-git/doc/guix.texi:28058 #, no-wrap msgid "@code{key} (default: @code{#f})" msgstr "@code{key} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27288 +#: guix-git/doc/guix.texi:27625 msgid "The path to the PKCS8 private key file to be used for encrypted connections. Must be filled in with a value from the user." msgstr "Dateipfad zur Datei mit dem privaten PKCS8-Schlüssel, der für verschlüsselte Verbindungen benutzt wird. Hier muss ein Wert angegeben werden." #. type: item -#: guix-git/doc/guix.texi:27289 +#: guix-git/doc/guix.texi:27626 #, no-wrap msgid "@code{addr} (default: @code{'(\"0.0.0.0:1965\" \"[::]:1965\")})" msgstr "@code{addr} (Vorgabe: @code{'(\"0.0.0.0:1965\" \"[::]:1965\")})" #. type: table -#: guix-git/doc/guix.texi:27291 +#: guix-git/doc/guix.texi:27628 msgid "A list of the addresses to listen on." msgstr "Liste der Adressen, auf denen gelauscht werden soll." #. type: table -#: guix-git/doc/guix.texi:27294 +#: guix-git/doc/guix.texi:27631 msgid "The domain name of this Gemini server. Optional." msgstr "Der Domainname dieses Gemini-Servers. Optional." #. type: item -#: guix-git/doc/guix.texi:27295 +#: guix-git/doc/guix.texi:27632 #, no-wrap msgid "@code{lang} (default: @code{#f})" msgstr "@code{lang} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27297 +#: guix-git/doc/guix.texi:27634 msgid "RFC 4646 language code(s) for text/gemini documents. Optional." msgstr "RFC-4646-Sprachcode(s) für Dokumente des Typs text/gemini. Optional." #. type: item -#: guix-git/doc/guix.texi:27298 +#: guix-git/doc/guix.texi:27635 #, no-wrap msgid "@code{silent?} (default: @code{#f})" msgstr "@code{silent?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27300 +#: guix-git/doc/guix.texi:27637 msgid "Set to @code{#t} to disable logging output." msgstr "Setzen Sie dies auf @code{#t}, um Protokollausgaben auszuschalten." #. type: item -#: guix-git/doc/guix.texi:27301 +#: guix-git/doc/guix.texi:27638 #, no-wrap msgid "@code{serve-secret?} (default: @code{#f})" msgstr "@code{serve-secret?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27304 +#: guix-git/doc/guix.texi:27641 msgid "Set to @code{#t} to serve secret files (files/directories starting with a dot)." msgstr "Setzen Sie dies auf @code{#t}, um geheime Dateien (mit einem Punkt beginnende Dateien und Verzeichnisse) anzubieten." #. type: item -#: guix-git/doc/guix.texi:27305 +#: guix-git/doc/guix.texi:27642 #, no-wrap msgid "@code{log-ip?} (default: @code{#t})" msgstr "@code{log-ip?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:27307 +#: guix-git/doc/guix.texi:27644 msgid "Whether or not to output IP addresses when logging." msgstr "Ob in die Protokolle auch IP-Adressen geschrieben werden sollen." #. type: item -#: guix-git/doc/guix.texi:27308 +#: guix-git/doc/guix.texi:27645 #, no-wrap msgid "@code{user} (default: @code{\"agate\"})" msgstr "@code{user} (Vorgabe: @code{\"agate\"})" #. type: table -#: guix-git/doc/guix.texi:27310 +#: guix-git/doc/guix.texi:27647 msgid "Owner of the @code{agate} process." msgstr "Besitzer des @code{agate}-Prozesses." #. type: item -#: guix-git/doc/guix.texi:27311 +#: guix-git/doc/guix.texi:27648 #, no-wrap msgid "@code{group} (default: @code{\"agate\"})" msgstr "@code{group} (Vorgabe: @code{\"agate\"})" #. type: table -#: guix-git/doc/guix.texi:27313 +#: guix-git/doc/guix.texi:27650 msgid "Owner's group of the @code{agate} process." msgstr "Gruppe des Besitzers des @code{agate}-Prozesses." #. type: item -#: guix-git/doc/guix.texi:27314 +#: guix-git/doc/guix.texi:27651 #, no-wrap msgid "@code{log-file} (default: @file{\"/var/log/agate.log\"})" msgstr "@code{log-file} (Vorgabe: @file{\"/var/log/agate.log\"})" #. type: table -#: guix-git/doc/guix.texi:27316 +#: guix-git/doc/guix.texi:27653 msgid "The file which should store the logging output of Agate." msgstr "Die Datei, in die die Protokollierung von Agate ausgegeben werden soll." #. type: cindex -#: guix-git/doc/guix.texi:27323 +#: guix-git/doc/guix.texi:27660 #, no-wrap msgid "Web" msgstr "Web" #. type: cindex -#: guix-git/doc/guix.texi:27324 +#: guix-git/doc/guix.texi:27661 #, no-wrap msgid "HTTP, HTTPS" msgstr "HTTP, HTTPS" #. type: cindex -#: guix-git/doc/guix.texi:27325 +#: guix-git/doc/guix.texi:27662 #, no-wrap msgid "Let's Encrypt" msgstr "Let's Encrypt" #. type: cindex -#: guix-git/doc/guix.texi:27326 +#: guix-git/doc/guix.texi:27663 #, no-wrap msgid "TLS certificates" msgstr "TLS-Zertifikate" #. type: Plain text -#: guix-git/doc/guix.texi:27333 +#: guix-git/doc/guix.texi:27670 msgid "The @code{(gnu services certbot)} module provides a service to automatically obtain a valid TLS certificate from the Let's Encrypt certificate authority. These certificates can then be used to serve content securely over HTTPS or other TLS-based protocols, with the knowledge that the client will be able to verify the server's authenticity." msgstr "Das Modul @code{(gnu services certbot)} stellt einen Dienst zur Verfügung, um automatisch ein gültiges TLS-Zertifikat von der Zertifikatsautorität Let’s Encrypt zu beziehen. Mit diesen Zertifikaten können Informationen sicher über HTTPS oder andere TLS-basierte Protokolle übertragen werden, im Wissen, dass der Client die Authentizität des Servers überprüfen wird können." #. type: Plain text -#: guix-git/doc/guix.texi:27345 +#: guix-git/doc/guix.texi:27682 msgid "@url{https://letsencrypt.org/, Let's Encrypt} provides the @code{certbot} tool to automate the certification process. This tool first securely generates a key on the server. It then makes a request to the Let's Encrypt certificate authority (CA) to sign the key. The CA checks that the request originates from the host in question by using a challenge-response protocol, requiring the server to provide its response over HTTP@. If that protocol completes successfully, the CA signs the key, resulting in a certificate. That certificate is valid for a limited period of time, and therefore to continue to provide TLS services, the server needs to periodically ask the CA to renew its signature." msgstr "@url{https://letsencrypt.org/, Let’s Encrypt} macht das @code{certbot}-Werkzeug verfügbar, mit dem der Zertifizierungsvorgang automatisiert werden kann. Das Werkzeug erzeugt zunächst auf sichere Weise einen Schlüssel auf dem Server und stellt dann eine Anfrage an die Let’s-Encrypt-Zertifikatsautorität („Certificate Authority“, kurz CA), den Schlüssel zu signieren. Die Zertifikatsautorität prüft mit einem Challenge-Response-Protokoll, dass die Anfrage auch wirklich vom fraglichen Rechner (auch „Host“ genannt) kommt, wozu der Server über HTTP seine Antwort geben muss. Wenn dieses Protokoll erfolgreich befolgt wurde, signiert die Zertifikatsautorität den Schlüssel, woraus sich ein Zertifikat ergibt. Dieses Zertifikat ist eine begrenzte Zeit lang gültig, daher muss der Server für eine andauernde Bereitstellung von TLS-Leistungen immer wieder neu der Zertifikatsautorität eine Bitte um die Erneuerung der Signatur zukommen lassen." #. type: Plain text -#: guix-git/doc/guix.texi:27352 +#: guix-git/doc/guix.texi:27689 msgid "The certbot service automates this process: the initial key generation, the initial certification request to the Let's Encrypt service, the web server challenge/response integration, writing the certificate to disk, the automated periodic renewals, and the deployment tasks associated with the renewal (e.g.@: reloading services, copying keys with different permissions)." msgstr "Mit dem certbot-Dienst wird dieser Prozess automatisiert. Er sorgt dafür, dass am Anfang Schlüssel erzeugt werden und eine erste Zertifizierungsanfrage an den Dienst von Let’s Encrypt gestellt wird. Weiterhin ist das Challenge-/Response-Verfahren per Web-Server integriert. Das Zertifikat wird auf die Platte geschrieben und automatisch periodisch erneuert und bei der Erneuerung anfallende Aufgaben werden erledigt (z.B.@: das Neuladen von Diensten und das Kopieren von Schlüsseln mit entsprechenden Berechtigungen)." #. type: Plain text -#: guix-git/doc/guix.texi:27358 +#: guix-git/doc/guix.texi:27695 msgid "Certbot is run twice a day, at a random minute within the hour. It won't do anything until your certificates are due for renewal or revoked, but running it regularly would give your service a chance of staying online in case a Let's Encrypt-initiated revocation happened for some reason." msgstr "Certbot wird zweimal täglich zu einer zufälligen Minute der Stunde ausgeführt. Es tut so lange nichts, bis eine Erneuerung Ihrer Zertifikate fällig wird oder sie gesperrt wurden, durch regelmäßige Ausführung bekommen Sie aber die Chance, dass Ihr Server am Netz bleibt, wenn Let’s Encrypt eine Sperrung aus irgendeinem Grund anordnet." #. type: Plain text -#: guix-git/doc/guix.texi:27362 +#: guix-git/doc/guix.texi:27699 msgid "By using this service, you agree to the ACME Subscriber Agreement, which can be found there: @url{https://acme-v01.api.letsencrypt.org/directory}." msgstr "Durch die Nutzung dieses Dienstes stimmen Sie dem „ACME Subscriber Agreement“ zu, das Sie hier finden:: @url{https://acme-v01.api.letsencrypt.org/directory}." #. type: defvr -#: guix-git/doc/guix.texi:27363 +#: guix-git/doc/guix.texi:27700 #, no-wrap msgid "{Scheme Variable} certbot-service-type" msgstr "{Scheme-Variable} certbot-service-type" #. type: defvr -#: guix-git/doc/guix.texi:27366 +#: guix-git/doc/guix.texi:27703 msgid "A service type for the @code{certbot} Let's Encrypt client. Its value must be a @code{certbot-configuration} record as in this example:" msgstr "Ein Diensttyp für den @code{certbot}-Client für Let’s Encrypt. Sein Wert muss ein @code{certbot-configuration}-Verbundsobjekt wie in diesem Beispiel sein:" #. type: lisp -#: guix-git/doc/guix.texi:27373 +#: guix-git/doc/guix.texi:27710 #, no-wrap msgid "" "(define %nginx-deploy-hook\n" @@ -51208,7 +51893,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:27384 +#: guix-git/doc/guix.texi:27721 #, no-wrap msgid "" "(service certbot-service-type\n" @@ -51234,241 +51919,241 @@ msgstr "" " (domains '(\"bar.example.net\")))))))\n" #. type: defvr -#: guix-git/doc/guix.texi:27387 +#: guix-git/doc/guix.texi:27724 msgid "See below for details about @code{certbot-configuration}." msgstr "Siehe unten für Details zur @code{certbot-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:27389 +#: guix-git/doc/guix.texi:27726 #, no-wrap msgid "{Data Type} certbot-configuration" msgstr "{Datentyp} certbot-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27392 +#: guix-git/doc/guix.texi:27729 msgid "Data type representing the configuration of the @code{certbot} service. This type has the following parameters:" msgstr "Datentyp, der die Konfiguration des @code{certbot}-Dienstes repräsentiert. Dieser Typ verfügt über die folgenden Parameter:" #. type: item -#: guix-git/doc/guix.texi:27394 +#: guix-git/doc/guix.texi:27731 #, no-wrap msgid "@code{package} (default: @code{certbot})" msgstr "@code{package} (Vorgabe: @code{certbot})" #. type: table -#: guix-git/doc/guix.texi:27396 +#: guix-git/doc/guix.texi:27733 msgid "The certbot package to use." msgstr "Das certbot-Paket, das benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:27397 +#: guix-git/doc/guix.texi:27734 #, no-wrap msgid "@code{webroot} (default: @code{/var/www})" msgstr "@code{webroot} (Vorgabe: @code{/var/www})" #. type: table -#: guix-git/doc/guix.texi:27400 +#: guix-git/doc/guix.texi:27737 msgid "The directory from which to serve the Let's Encrypt challenge/response files." msgstr "Das Verzeichnis, aus dem heraus die Dateien für den Challenge-/Response-Prozess von Let’s Encrypt angeboten werden sollen." #. type: item -#: guix-git/doc/guix.texi:27401 +#: guix-git/doc/guix.texi:27738 #, no-wrap msgid "@code{certificates} (default: @code{()})" msgstr "@code{certificates} (Vorgabe: @code{()})" #. type: table -#: guix-git/doc/guix.texi:27405 +#: guix-git/doc/guix.texi:27742 msgid "A list of @code{certificates-configuration}s for which to generate certificates and request signatures. Each certificate has a @code{name} and several @code{domains}." msgstr "Eine Liste der @code{certificates-configuration}-Objekte, für die Zertifikate und Anfragesignaturen erzeugt werden. Für jedes Zertifikat gibt es einen @code{name}-Eintrag und mehrere @code{domains}." #. type: item -#: guix-git/doc/guix.texi:27406 +#: guix-git/doc/guix.texi:27743 #, no-wrap msgid "@code{email} (default: @code{#f})" msgstr "@code{email} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27410 +#: guix-git/doc/guix.texi:27747 msgid "Optional email address used for registration and recovery contact. Setting this is encouraged as it allows you to receive important notifications about the account and issued certificates." msgstr "Optional die E-Mail-Adresse, die als Kontakt für die Registrierung und das Wiedererlangen dienen soll. Es wird empfohlen, sie anzugeben, weil Sie darüber wichtige Mitteilungen über Ihr Konto und ausgestellte Zertifikate mitbekommen können." #. type: item -#: guix-git/doc/guix.texi:27411 guix-git/doc/guix.texi:29158 +#: guix-git/doc/guix.texi:27748 guix-git/doc/guix.texi:29495 #, no-wrap msgid "@code{server} (default: @code{#f})" msgstr "@code{server} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27414 +#: guix-git/doc/guix.texi:27751 msgid "Optional URL of ACME server. Setting this overrides certbot's default, which is the Let's Encrypt server." msgstr "Optional eine andere URL des ACME-Servers. Wenn sie festgelegt wird, ersetzt sie die Voreinstellung von Certbot, nämlich die URL des Let’s-Encrypt-Servers." #. type: item -#: guix-git/doc/guix.texi:27415 +#: guix-git/doc/guix.texi:27752 #, no-wrap msgid "@code{rsa-key-size} (default: @code{2048})" msgstr "@code{rsa-key-size} (Vorgabe: @code{2048})" #. type: table -#: guix-git/doc/guix.texi:27417 +#: guix-git/doc/guix.texi:27754 msgid "Size of the RSA key." msgstr "Wie groß der RSA-Schlüssel sein soll." #. type: item -#: guix-git/doc/guix.texi:27418 +#: guix-git/doc/guix.texi:27755 #, no-wrap msgid "@code{default-location} (default: @i{see below})" msgstr "@code{default-location} (Vorgabe: @i{siehe unten})" #. type: table -#: guix-git/doc/guix.texi:27427 +#: guix-git/doc/guix.texi:27764 msgid "The default @code{nginx-location-configuration}. Because @code{certbot} needs to be able to serve challenges and responses, it needs to be able to run a web server. It does so by extending the @code{nginx} web service with an @code{nginx-server-configuration} listening on the @var{domains} on port 80, and which has a @code{nginx-location-configuration} for the @code{/.well-known/} URI path subspace used by Let's Encrypt. @xref{Web Services}, for more on these nginx configuration data types." msgstr "Die vorgegebene @code{nginx-location-configuration}. Weil @code{certbot} „Challenges“ und „Responses“ anbieten muss, muss durch ihn ein Web-Server ausgeführt werden können. Das tut er, indem er den @code{nginx}-Webdienst mit einer @code{nginx-server-configuration} erweitert, die auf den @var{domains} auf Port 80 lauscht und eine @code{nginx-location-configuration} für den URI-Pfad-Teilraum @code{/.well-known/} umfasst, der von Let’s Encrypt benutzt wird. Siehe @ref{Web Services} für mehr Informationen über diese nginx-Konfigurationsdatentypen." #. type: table -#: guix-git/doc/guix.texi:27431 +#: guix-git/doc/guix.texi:27768 msgid "Requests to other URL paths will be matched by the @code{default-location}, which if present is added to all @code{nginx-server-configuration}s." msgstr "Anfragen an andere URL-Pfade werden mit der @code{default-location} abgeglichen. Wenn sie angegeben wurde, wird sie zu jeder @code{nginx-server-configuration} hinzugefügt." #. type: table -#: guix-git/doc/guix.texi:27435 +#: guix-git/doc/guix.texi:27772 msgid "By default, the @code{default-location} will issue a redirect from @code{http://@var{domain}/...} to @code{https://@var{domain}/...}, leaving you to define what to serve on your site via @code{https}." msgstr "Nach Vorgabe stellt die @code{default-location} eine Weiterleitung von @code{http://@var{domain}/…} nach @code{https://@var{domain}/…} her. Sie müssen dann nur noch festlegen, was Sie auf Ihrem Webauftritt über @code{https} anbieten wollen." #. type: table -#: guix-git/doc/guix.texi:27437 +#: guix-git/doc/guix.texi:27774 msgid "Pass @code{#f} to not issue a default location." msgstr "Übergeben Sie @code{#f}, um keine @code{default-location} vorzugeben." #. type: deftp -#: guix-git/doc/guix.texi:27440 +#: guix-git/doc/guix.texi:27777 #, no-wrap msgid "{Data Type} certificate-configuration" msgstr "{Datentyp} certificate-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27443 +#: guix-git/doc/guix.texi:27780 msgid "Data type representing the configuration of a certificate. This type has the following parameters:" msgstr "Der Datentyp, der die Konfiguration eines Zertifikats repräsentiert. Dieser Typ hat die folgenden Parameter:" #. type: item -#: guix-git/doc/guix.texi:27445 +#: guix-git/doc/guix.texi:27782 #, no-wrap msgid "@code{name} (default: @i{see below})" msgstr "@code{name} (Vorgabe: @i{siehe unten})" #. type: table -#: guix-git/doc/guix.texi:27449 +#: guix-git/doc/guix.texi:27786 msgid "This name is used by Certbot for housekeeping and in file paths; it doesn't affect the content of the certificate itself. To see certificate names, run @code{certbot certificates}." msgstr "Dieser Name wird vom Certbot intern zum Aufräumen und in Dateipfaden benutzt; er hat keinen Einfluss auf den Inhalt des erzeugten Zertifikats. Um Zertifikatsnamen einzusehen, führen Sie @code{certbot certificates} aus." #. type: table -#: guix-git/doc/guix.texi:27451 +#: guix-git/doc/guix.texi:27788 msgid "Its default is the first provided domain." msgstr "Die Vorgabe ist die erste angegebene Domain." #. type: item -#: guix-git/doc/guix.texi:27452 +#: guix-git/doc/guix.texi:27789 #, no-wrap msgid "@code{domains} (default: @code{()})" msgstr "@code{domains} (Vorgabe: @code{()})" #. type: table -#: guix-git/doc/guix.texi:27455 +#: guix-git/doc/guix.texi:27792 msgid "The first domain provided will be the subject CN of the certificate, and all domains will be Subject Alternative Names on the certificate." msgstr "Die erste angegebene Domain wird als Name des Zertifikatseigentümers („Subject CN“) benutzt und alle Domains werden als alternative Namen („Subject Alternative Names“) auf dem Zertifikat stehen." #. type: item -#: guix-git/doc/guix.texi:27456 +#: guix-git/doc/guix.texi:27793 #, no-wrap msgid "@code{challenge} (default: @code{#f})" msgstr "@code{challenge} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27463 +#: guix-git/doc/guix.texi:27800 msgid "The challenge type that has to be run by certbot. If @code{#f} is specified, default to the HTTP challenge. If a value is specified, defaults to the manual plugin (see @code{authentication-hook}, @code{cleanup-hook} and the documentation at @url{https://certbot.eff.org/docs/using.html#hooks}), and gives Let's Encrypt permission to log the public IP address of the requesting machine." msgstr "Welche Art von Challenge durch den Certbot ausgeführt wird. Wenn @code{#f} angegeben wird, wird die HTTP-Challenge voreingestellt. Wenn ein Wert angegeben wird, wird das Plugin benutzt, das auch bei manuellen Ausführungen benutzt wird (siehe @code{authentication-hook}, @code{cleanup-hook} und die Dokumentation unter @url{https://certbot.eff.org/docs/using.html#hooks}), und Let’s Encrypt wird dazu berechtigt, die öffentliche IP-Adresse der anfordernden Maschine in seinem Protokoll zu speichern." #. type: item -#: guix-git/doc/guix.texi:27464 +#: guix-git/doc/guix.texi:27801 #, no-wrap msgid "@code{csr} (default: @code{#f})" msgstr "@code{csr} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27471 +#: guix-git/doc/guix.texi:27808 msgid "File name of Certificate Signing Request (CSR) in DER or PEM format. If @code{#f} is specified, this argument will not be passed to certbot. If a value is specified, certbot will use it to obtain a certificate, instead of using a self-generated CSR. The domain-name(s) mentioned in @code{domains}, must be consistent with the domain-name(s) mentioned in CSR file." msgstr "Der Dateiname der Zertifizierungsanfrage („Certificate Signing Request“, CSR) im DER- oder PEM-Format. Wenn @code{#f} angegeben wird, wird kein solches Argument an den Certbot übermittelt. Wenn ein Wert angegeben wird, wird der Certbot ihn anstelle einer selbsterstellten CSR verwenden. Die in @code{domains} genannten Domänen müssen dabei konsistent sein mit denen, die in der CSR-Datei aufgeführt werden." #. type: item -#: guix-git/doc/guix.texi:27472 +#: guix-git/doc/guix.texi:27809 #, no-wrap msgid "@code{authentication-hook} (default: @code{#f})" msgstr "@code{authentication-hook} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27478 +#: guix-git/doc/guix.texi:27815 msgid "Command to be run in a shell once for each certificate challenge to be answered. For this command, the shell variable @code{$CERTBOT_DOMAIN} will contain the domain being authenticated, @code{$CERTBOT_VALIDATION} contains the validation string and @code{$CERTBOT_TOKEN} contains the file name of the resource requested when performing an HTTP-01 challenge." msgstr "Welcher Befehl in einer Shell zum Antworten auf eine Zertifikats-„Challenge“ einmalig ausgeführt wird. Für diesen Befehl wird die Shell-Variable @code{$CERTBOT_DOMAIN} die Domain enthalten, für die sich der Certbot authentisiert, @code{$CERTBOT_VALIDATION} enthält die Validierungs-Zeichenkette und @code{$CERTBOT_TOKEN} enthält den Dateinamen der bei einer HTTP-01-Challenge angefragten Ressource." #. type: item -#: guix-git/doc/guix.texi:27479 +#: guix-git/doc/guix.texi:27816 #, no-wrap msgid "@code{cleanup-hook} (default: @code{#f})" msgstr "@code{cleanup-hook} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27485 +#: guix-git/doc/guix.texi:27822 msgid "Command to be run in a shell once for each certificate challenge that have been answered by the @code{auth-hook}. For this command, the shell variables available in the @code{auth-hook} script are still available, and additionally @code{$CERTBOT_AUTH_OUTPUT} will contain the standard output of the @code{auth-hook} script." msgstr "Welcher Befehl in einer Shell für jede Zertifikat-„Challenge“ einmalig ausgeführt wird, die vom @code{auth-hook} beantwortet wurde. Für diesen Befehl bleiben die Shell-Variablen weiterhin verfügbar, die im @code{auth-hook}-Skript zur Verfügung standen, und außerdem wird @code{$CERTBOT_AUTH_OUTPUT} die Standardausgabe des @code{auth-hook}-Skripts enthalten." #. type: item -#: guix-git/doc/guix.texi:27486 +#: guix-git/doc/guix.texi:27823 #, no-wrap msgid "@code{deploy-hook} (default: @code{#f})" msgstr "@code{deploy-hook} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27494 +#: guix-git/doc/guix.texi:27831 msgid "Command to be run in a shell once for each successfully issued certificate. For this command, the shell variable @code{$RENEWED_LINEAGE} will point to the config live subdirectory (for example, @samp{\"/etc/letsencrypt/live/example.com\"}) containing the new certificates and keys; the shell variable @code{$RENEWED_DOMAINS} will contain a space-delimited list of renewed certificate domains (for example, @samp{\"example.com www.example.com\"}." msgstr "Welcher Befehl in einer Shell für jedes erfolgreich ausgestellte Zertifikat einmalig ausgeführt wird. Bei diesem Befehl wird die Shell-Variable @code{$RENEWED_LINEAGE} auf das Unterverzeichnis für die aktuelle Konfiguration zeigen (zum Beispiel @samp{\"/etc/letsencrypt/live/example.com\"}), in dem sich die neuen Zertifikate und Schlüssel befinden. Die Shell-Variable @code{$RENEWED_DOMAINS} wird eine leerzeichengetrennte Liste der erneuerten Zertifikatsdomänen enthalten (zum Beispiel @samp{\"example.com www.example.com\"}." #. type: Plain text -#: guix-git/doc/guix.texi:27501 +#: guix-git/doc/guix.texi:27838 msgid "For each @code{certificate-configuration}, the certificate is saved to @code{/etc/letsencrypt/live/@var{name}/fullchain.pem} and the key is saved to @code{/etc/letsencrypt/live/@var{name}/privkey.pem}." msgstr "Für jede @code{certificate-configuration} wird das Zertifikat in @code{/etc/letsencrypt/live/@var{name}/fullchain.pem} und der Schlüssel in @code{/etc/letsencrypt/live/@var{name}/privkey.pem} gespeichert." #. type: cindex -#: guix-git/doc/guix.texi:27503 +#: guix-git/doc/guix.texi:27840 #, no-wrap msgid "DNS (domain name system)" msgstr "DNS (Domain Name System)" #. type: cindex -#: guix-git/doc/guix.texi:27504 +#: guix-git/doc/guix.texi:27841 #, no-wrap msgid "domain name system (DNS)" msgstr "Domain Name System (DNS)" #. type: Plain text -#: guix-git/doc/guix.texi:27512 +#: guix-git/doc/guix.texi:27849 msgid "The @code{(gnu services dns)} module provides services related to the @dfn{domain name system} (DNS). It provides a server service for hosting an @emph{authoritative} DNS server for multiple zones, slave or master. This service uses @uref{https://www.knot-dns.cz/, Knot DNS}. And also a caching and forwarding DNS server for the LAN, which uses @uref{http://www.thekelleys.org.uk/dnsmasq/doc.html, dnsmasq}." msgstr "Das Modul @code{(gnu services dns)} stellt Dienste zur Verfügung, die mit dem @dfn{Domain Name System} (DNS) zu tun haben. Es bietet einen Server-Dienst an, mit dem ein @emph{autoritativer} DNS-Server für mehrere Zonen betrieben werden kann, jeweils als untergeordneter „Slave“ oder als „Master“. Dieser Dienst benutzt @uref{https://www.knot-dns.cz/, Knot DNS}. Außerdem wird ein zwischenspeichernder und weiterleitender DNS-Server für das LAN bereitgestellt, der @uref{http://www.thekelleys.org.uk/dnsmasq/doc.html, dnsmasq} benutzt." #. type: subsubheading -#: guix-git/doc/guix.texi:27513 +#: guix-git/doc/guix.texi:27850 #, no-wrap msgid "Knot Service" msgstr "Knot-Dienst" #. type: Plain text -#: guix-git/doc/guix.texi:27517 +#: guix-git/doc/guix.texi:27854 msgid "An example configuration of an authoritative server for two zones, one master and one slave, is:" msgstr "Eine Beispielkonfiguration eines autoritativen Servers für zwei Zonen, eine „Master“, eine „Slave“, wäre:" #. type: lisp -#: guix-git/doc/guix.texi:27524 +#: guix-git/doc/guix.texi:27861 #, no-wrap msgid "" "(define-zone-entries example.org.zone\n" @@ -51486,7 +52171,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:27531 +#: guix-git/doc/guix.texi:27868 #, no-wrap msgid "" "(define master-zone\n" @@ -51506,7 +52191,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:27537 +#: guix-git/doc/guix.texi:27874 #, no-wrap msgid "" "(define slave-zone\n" @@ -51524,7 +52209,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:27542 +#: guix-git/doc/guix.texi:27879 #, no-wrap msgid "" "(define plop-master\n" @@ -51540,7 +52225,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:27551 +#: guix-git/doc/guix.texi:27888 #, no-wrap msgid "" "(operating-system\n" @@ -51562,857 +52247,857 @@ msgstr "" " %base-services)))\n" #. type: deffn -#: guix-git/doc/guix.texi:27553 +#: guix-git/doc/guix.texi:27890 #, no-wrap msgid "{Scheme Variable} knot-service-type" msgstr "{Scheme-Variable} knot-service-type" #. type: deffn -#: guix-git/doc/guix.texi:27555 +#: guix-git/doc/guix.texi:27892 msgid "This is the type for the Knot DNS server." msgstr "Dies ist der Diensttyp für den Knot-DNS-Server." #. type: deffn -#: guix-git/doc/guix.texi:27563 +#: guix-git/doc/guix.texi:27900 msgid "Knot DNS is an authoritative DNS server, meaning that it can serve multiple zones, that is to say domain names you would buy from a registrar. This server is not a resolver, meaning that it can only resolve names for which it is authoritative. This server can be configured to serve zones as a master server or a slave server as a per-zone basis. Slave zones will get their data from masters, and will serve it as an authoritative server. From the point of view of a resolver, there is no difference between master and slave." msgstr "Knot DNS ist ein autoritativer DNS-Server, das heißt, er kann mehrere Zonen bedienen, also mehrere Domainnamen, die Sie von einem Registrar kaufen würden. Dieser Server ist kein „Resolver“, er dient also nur zur Auflösung von Namen, für die er autoritativ ist. Dieser Server kann so konfiguriert werden, dass er Zonen als „Master“-Server oder als „Slave“-Server bereitstellt, je nachdem, wie er für die jeweilige Zone eingestellt ist. Server für „Slave“-Zonen erhalten ihre Daten von „Master“-Servern und stellen mit ihnen einen autoritativen Server zur Verfügung. Für einen „Resolver“ macht es keinen Unterschied, ob er Namen auflöst, indem er einen „Master“ oder einen „Slave“ danach fragt." #. type: deffn -#: guix-git/doc/guix.texi:27565 +#: guix-git/doc/guix.texi:27902 msgid "The following data types are used to configure the Knot DNS server:" msgstr "Die folgenden Datentypen werden benutzt, um den Knot-DNS-Server zu konfigurieren:" #. type: deftp -#: guix-git/doc/guix.texi:27567 +#: guix-git/doc/guix.texi:27904 #, no-wrap msgid "{Data Type} knot-key-configuration" msgstr "{Datentyp} knot-key-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27570 +#: guix-git/doc/guix.texi:27907 msgid "Data type representing a key. This type has the following parameters:" msgstr "Datentyp, der einen Schlüssel repräsentiert. Dieser Typ hat die folgenden Parameter:" #. type: item -#: guix-git/doc/guix.texi:27572 guix-git/doc/guix.texi:27592 -#: guix-git/doc/guix.texi:27707 guix-git/doc/guix.texi:27733 -#: guix-git/doc/guix.texi:27768 +#: guix-git/doc/guix.texi:27909 guix-git/doc/guix.texi:27929 +#: guix-git/doc/guix.texi:28044 guix-git/doc/guix.texi:28070 +#: guix-git/doc/guix.texi:28105 #, no-wrap msgid "@code{id} (default: @code{\"\"})" msgstr "@code{id} (Vorgabe: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:27575 guix-git/doc/guix.texi:27595 +#: guix-git/doc/guix.texi:27912 guix-git/doc/guix.texi:27932 msgid "An identifier for other configuration fields to refer to this key. IDs must be unique and must not be empty." msgstr "Ein Identifikator, mit dem sich andere Konfigurationsfelder auf diesen Schlüssel beziehen können. IDs müssen eindeutig sein und dürfen @emph{nicht} leer sein." #. type: item -#: guix-git/doc/guix.texi:27576 +#: guix-git/doc/guix.texi:27913 #, no-wrap msgid "@code{algorithm} (default: @code{#f})" msgstr "@code{algorithm} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27580 +#: guix-git/doc/guix.texi:27917 msgid "The algorithm to use. Choose between @code{#f}, @code{'hmac-md5}, @code{'hmac-sha1}, @code{'hmac-sha224}, @code{'hmac-sha256}, @code{'hmac-sha384} and @code{'hmac-sha512}." msgstr "Der Algorithmus, der benutzt werden soll. Wählen Sie zwischen @code{#f}, @code{'hmac-md5}, @code{'hmac-sha1}, @code{'hmac-sha224}, @code{'hmac-sha256}, @code{'hmac-sha384} und @code{'hmac-sha512}." #. type: item -#: guix-git/doc/guix.texi:27581 +#: guix-git/doc/guix.texi:27918 #, no-wrap msgid "@code{secret} (default: @code{\"\"})" msgstr "@code{secret} (Vorgabe: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:27583 +#: guix-git/doc/guix.texi:27920 msgid "The secret key itself." msgstr "Was dabei der geheime Schlüssel sein soll." #. type: deftp -#: guix-git/doc/guix.texi:27587 +#: guix-git/doc/guix.texi:27924 #, no-wrap msgid "{Data Type} knot-acl-configuration" msgstr "{Datentyp} knot-acl-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27590 +#: guix-git/doc/guix.texi:27927 msgid "Data type representing an Access Control List (ACL) configuration. This type has the following parameters:" msgstr "Datentyp, der die Konfiguration einer Zugriffssteuerungsliste („Access Control List“, ACL) repräsentiert. Dieser Typ hat die folgenden Parameter:" #. type: item -#: guix-git/doc/guix.texi:27596 guix-git/doc/guix.texi:27711 +#: guix-git/doc/guix.texi:27933 guix-git/doc/guix.texi:28048 #, no-wrap msgid "@code{address} (default: @code{'()})" msgstr "@code{address} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27600 +#: guix-git/doc/guix.texi:27937 msgid "An ordered list of IP addresses, network subnets, or network ranges represented with strings. The query must match one of them. Empty value means that address match is not required." msgstr "Eine geordnete Liste aus IP-Adresse, Netzwerk-Subnetzen oder Netzwerkbereichen, die jeweils als Zeichenketten angegeben werden. Die Anfrage muss zu einem davon passen. Ein leerer Wert bedeutet, dass die Adresse nicht passen muss." #. type: item -#: guix-git/doc/guix.texi:27601 +#: guix-git/doc/guix.texi:27938 #, no-wrap msgid "@code{key} (default: @code{'()})" msgstr "@code{key} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27605 +#: guix-git/doc/guix.texi:27942 msgid "An ordered list of references to keys represented with strings. The string must match a key ID defined in a @code{knot-key-configuration}. No key means that a key is not require to match that ACL." msgstr "Eine geordnete Liste von Referenzen auf Schlüssel, die jeweils als Zeichenketten angegeben werden. Die Zeichenkette muss zu einem Schlüsselidentifikator passen, der in einem der @code{knot-key-configuration}-Objekte definiert wurde. Wenn kein Schlüssel angegeben wird, bedeutet das, dass kein Schlüssel zu dieser Zugriffssteuerungsliste passen muss." #. type: item -#: guix-git/doc/guix.texi:27606 +#: guix-git/doc/guix.texi:27943 #, no-wrap msgid "@code{action} (default: @code{'()})" msgstr "@code{action} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27610 +#: guix-git/doc/guix.texi:27947 msgid "An ordered list of actions that are permitted or forbidden by this ACL@. Possible values are lists of zero or more elements from @code{'transfer}, @code{'notify} and @code{'update}." msgstr "Eine geordete Liste der Aktionen, die von dieser Zugriffssteuerungsliste zugelassen oder gesperrt werden. Mögliche Werte sind Listen aus null oder mehr Elementen, die jeweils @code{'transfer}, @code{'notify} oder @code{'update} sind." #. type: item -#: guix-git/doc/guix.texi:27611 +#: guix-git/doc/guix.texi:27948 #, no-wrap msgid "@code{deny?} (default: @code{#f})" msgstr "@code{deny?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27614 +#: guix-git/doc/guix.texi:27951 msgid "When true, the ACL defines restrictions. Listed actions are forbidden. When false, listed actions are allowed." msgstr "Wenn dies auf wahr steht, werden mit der Zugriffssteuerungsliste Einschränkungen festgelegt, d.h.@: aufgelistet Aktionen werden gesperrt. Steht es auf falsch, werden aufgelistete Aktionen zugelassen." #. type: deftp -#: guix-git/doc/guix.texi:27618 +#: guix-git/doc/guix.texi:27955 #, no-wrap msgid "{Data Type} zone-entry" msgstr "{Datentyp} zone-entry" #. type: deftp -#: guix-git/doc/guix.texi:27621 +#: guix-git/doc/guix.texi:27958 msgid "Data type representing a record entry in a zone file. This type has the following parameters:" msgstr "Datentyp, der einen Eintrag in einer Zonendatei repräsentiert. Dieser Typ verfügt über die folgenden Parameter:" #. type: item -#: guix-git/doc/guix.texi:27623 +#: guix-git/doc/guix.texi:27960 #, no-wrap msgid "@code{name} (default: @code{\"@@\"})" msgstr "@code{name} (Vorgabe: @code{\"@@\"})" #. type: table -#: guix-git/doc/guix.texi:27629 +#: guix-git/doc/guix.texi:27966 msgid "The name of the record. @code{\"@@\"} refers to the origin of the zone. Names are relative to the origin of the zone. For example, in the @code{example.org} zone, @code{\"ns.example.org\"} actually refers to @code{ns.example.org.example.org}. Names ending with a dot are absolute, which means that @code{\"ns.example.org.\"} refers to @code{ns.example.org}." msgstr "Der Name des Eintrags. @code{\"@@\"} bezieht sich auf den Ursprung der Zone. Namen sind relativ zum Ursprung der Zone. Zum Beispiel bezieht sich in einer Zone @code{example.org} der Eintrag @code{\"ns.example.org\"} tatsächlich auf @code{ns.example.org.example.org}. Namen, die auf einen Punkt enden, sind absolut. Das bedeutet, dass sich @code{\"ns.example.org.\"} auf @code{ns.example.org} bezieht." #. type: item -#: guix-git/doc/guix.texi:27630 +#: guix-git/doc/guix.texi:27967 #, no-wrap msgid "@code{ttl} (default: @code{\"\"})" msgstr "@code{ttl} (Vorgabe: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:27632 +#: guix-git/doc/guix.texi:27969 msgid "The Time-To-Live (TTL) of this record. If not set, the default TTL is used." msgstr "Wie lange dieser Eintrag zwischengespeichert werden darf, d.h.@: seine „Time-To-Live“ (TTL). Ist sie nicht festgelegt, wird die voreingestellte TTL benutzt." #. type: item -#: guix-git/doc/guix.texi:27633 +#: guix-git/doc/guix.texi:27970 #, no-wrap msgid "@code{class} (default: @code{\"IN\"})" msgstr "@code{class} (Vorgabe: @code{\"IN\"})" #. type: table -#: guix-git/doc/guix.texi:27636 +#: guix-git/doc/guix.texi:27973 msgid "The class of the record. Knot currently supports only @code{\"IN\"} and partially @code{\"CH\"}." msgstr "Welche Klasse der Eintrag hat. Derzeit unterstützt Knot nur @code{\"IN\"} und teilweise @code{\"CH\"}." #. type: item -#: guix-git/doc/guix.texi:27637 +#: guix-git/doc/guix.texi:27974 #, no-wrap msgid "@code{type} (default: @code{\"A\"})" msgstr "@code{type} (Vorgabe: @code{\"A\"})" #. type: table -#: guix-git/doc/guix.texi:27641 +#: guix-git/doc/guix.texi:27978 msgid "The type of the record. Common types include A (IPv4 address), AAAA (IPv6 address), NS (Name Server) and MX (Mail eXchange). Many other types are defined." msgstr "Der Typ des Eintrags. Zu den üblichen Typen gehören A (für eine IPv4-Adresse), AAAA (für eine IPv6-Adresse), NS (der Namens-Server) und MX („Mail eXchange“ für E-Mails). Viele andere Typen sind auch definiert." #. type: item -#: guix-git/doc/guix.texi:27642 +#: guix-git/doc/guix.texi:27979 #, no-wrap msgid "@code{data} (default: @code{\"\"})" msgstr "@code{data} (Vorgabe: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:27646 +#: guix-git/doc/guix.texi:27983 msgid "The data contained in the record. For instance an IP address associated with an A record, or a domain name associated with an NS record. Remember that domain names are relative to the origin unless they end with a dot." msgstr "Die Daten, die im Eintrag stehen, zum Beispiel eine IP-Adresse bei einem A-Eintrag oder ein Domain-Name bei einem NS-Eintrag. Bedenken Sie, dass Domain-Namen relativ zum Ursprung angegeben werden, außer wenn sie auf einen Punkt enden." #. type: deftp -#: guix-git/doc/guix.texi:27650 +#: guix-git/doc/guix.texi:27987 #, no-wrap msgid "{Data Type} zone-file" msgstr "{Datentyp} zone-file" #. type: deftp -#: guix-git/doc/guix.texi:27653 +#: guix-git/doc/guix.texi:27990 msgid "Data type representing the content of a zone file. This type has the following parameters:" msgstr "Datentyp, der den Inhalt einer Zonendatei repräsentiert. Dieser Typ verfügt über die folgenden Parameter:" #. type: table -#: guix-git/doc/guix.texi:27662 +#: guix-git/doc/guix.texi:27999 msgid "The list of entries. The SOA record is taken care of, so you don't need to put it in the list of entries. This list should probably contain an entry for your primary authoritative DNS server. Other than using a list of entries directly, you can use @code{define-zone-entries} to define a object containing the list of entries more easily, that you can later pass to the @code{entries} field of the @code{zone-file}." msgstr "Die Liste der Einträge. Für den SOA-Eintrag wird automatisch gesorgt, also müssen Sie ihn nicht zur Liste der Einträge hinzufügen. In der Liste sollte vermutlich ein Eintrag für Ihren primären autoritativen DNS-Server stehen. Abgesehen vom direkten Aufzählen der Einträge können Sie @code{define-zone-entries} verwenden, um ein Objekt zu definieren, worin eine Liste von Einträgen leichter angegeben werden kann, und was sie dann im @code{entries}-Feld des @code{zone-file} angeben können." #. type: item -#: guix-git/doc/guix.texi:27663 +#: guix-git/doc/guix.texi:28000 #, no-wrap msgid "@code{origin} (default: @code{\"\"})" msgstr "@code{origin} (Vorgabe: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:27665 +#: guix-git/doc/guix.texi:28002 msgid "The name of your zone. This parameter cannot be empty." msgstr "Der Name Ihrer Zone. Dieser Parameter darf nicht leer sein." #. type: item -#: guix-git/doc/guix.texi:27666 +#: guix-git/doc/guix.texi:28003 #, no-wrap msgid "@code{ns} (default: @code{\"ns\"})" msgstr "@code{ns} (Vorgabe: @code{\"ns\"})" #. type: table -#: guix-git/doc/guix.texi:27671 +#: guix-git/doc/guix.texi:28008 msgid "The domain of your primary authoritative DNS server. The name is relative to the origin, unless it ends with a dot. It is mandatory that this primary DNS server corresponds to an NS record in the zone and that it is associated to an IP address in the list of entries." msgstr "Die Domain Ihres primären autoritativen DNS-Servers. Der Name wird relativ zum Ursprung angegeben, außer wenn er auf einen Punkt endet. Dieser primäre DNS-Server @emph{muss} verpflichtend einem NS-Eintrag in der Zone entsprechen, dem eine IP-Adresse in der Liste der Einträge zugeordnet werden muss." #. type: item -#: guix-git/doc/guix.texi:27672 +#: guix-git/doc/guix.texi:28009 #, no-wrap msgid "@code{mail} (default: @code{\"hostmaster\"})" msgstr "@code{mail} (Vorgabe: @code{\"hostmaster\"})" #. type: table -#: guix-git/doc/guix.texi:27675 +#: guix-git/doc/guix.texi:28012 msgid "An email address people can contact you at, as the owner of the zone. This is translated as @code{@@}." msgstr "Eine E-Mail-Adresse, unter der man Sie als für diese Zone Verantwortlichen („Besitzer“/„Owner“) kontaktieren kann. Sie wird zu @code{@@} umgeschrieben." #. type: item -#: guix-git/doc/guix.texi:27676 +#: guix-git/doc/guix.texi:28013 #, no-wrap msgid "@code{serial} (default: @code{1})" msgstr "@code{serial} (Vorgabe: @code{1})" #. type: table -#: guix-git/doc/guix.texi:27680 +#: guix-git/doc/guix.texi:28017 msgid "The serial number of the zone. As this is used to keep track of changes by both slaves and resolvers, it is mandatory that it @emph{never} decreases. Always increment it when you make a change in your zone." msgstr "Die Seriennummer der Zone. Da sie von sowohl „Slaves“ als auch „Resolvern“ benutzt wird, um bei Änderungen auf dem Laufenden zu bleiben, ist es notwendig, dass sie @emph{niemals} kleiner gemacht wird. Erhöhen Sie sie, wann immer Sie eine Änderung an Ihrer Zone durchführen." #. type: item -#: guix-git/doc/guix.texi:27681 +#: guix-git/doc/guix.texi:28018 #, no-wrap msgid "@code{refresh} (default: @code{(* 2 24 3600)})" msgstr "@code{refresh} (Vorgabe: @code{(* 2 24 3600)})" #. type: table -#: guix-git/doc/guix.texi:27685 +#: guix-git/doc/guix.texi:28022 msgid "The frequency at which slaves will do a zone transfer. This value is a number of seconds. It can be computed by multiplications or with @code{(string->duration)}." msgstr "Die Häufigkeit, wie oft Slaves eine Zonenübertragung („Zone Transfer“) durchführen. Als Wert wird eine Anzahl von Sekunden angegeben. Sie kann über eine Multiplikation oder mit @code{(string->duration)} angegeben werden." #. type: item -#: guix-git/doc/guix.texi:27686 +#: guix-git/doc/guix.texi:28023 #, no-wrap msgid "@code{retry} (default: @code{(* 15 60)})" msgstr "@code{retry} (Vorgabe: @code{(* 15 60)})" #. type: table -#: guix-git/doc/guix.texi:27689 +#: guix-git/doc/guix.texi:28026 msgid "The period after which a slave will retry to contact its master when it fails to do so a first time." msgstr "Nach welcher Zeitperiode ein Slave versuchen wird, Kontakt mit seinem Master aufzunehmen, wenn er ihn beim ersten Mal nicht erreichen kann." #. type: item -#: guix-git/doc/guix.texi:27690 +#: guix-git/doc/guix.texi:28027 #, no-wrap msgid "@code{expiry} (default: @code{(* 14 24 3600)})" msgstr "@code{expiry} (Vorgabe: @code{(* 14 24 3600)})" #. type: table -#: guix-git/doc/guix.texi:27694 +#: guix-git/doc/guix.texi:28031 msgid "Default TTL of records. Existing records are considered correct for at most this amount of time. After this period, resolvers will invalidate their cache and check again that it still exists." msgstr "Die Voreinstellung, welche TTL für Einträge verwendet werden soll. Bestehende Einträge werden für höchstens diese Zeitspanne als korrekt angesehen. Nach Ablauf dieser Zeitspanne werden „Resolver“ ihren Zwischenspeicher als ungültig markieren und erneut prüfen, ob der Eintrag noch existiert." #. type: item -#: guix-git/doc/guix.texi:27695 +#: guix-git/doc/guix.texi:28032 #, no-wrap msgid "@code{nx} (default: @code{3600})" msgstr "@code{nx} (Vorgabe: @code{3600})" #. type: table -#: guix-git/doc/guix.texi:27698 +#: guix-git/doc/guix.texi:28035 msgid "Default TTL of inexistent records. This delay is usually short because you want your new domains to reach everyone quickly." msgstr "Die voreingestellte TTL der @emph{nicht} existierenden Einträge. Sie stellt normalerweise eine kurze Verzögerung dar, weil Sie möchten, dass neue Domains für jeden schnell erkannt werden." #. type: deftp -#: guix-git/doc/guix.texi:27702 +#: guix-git/doc/guix.texi:28039 #, no-wrap msgid "{Data Type} knot-remote-configuration" msgstr "{Datentyp} knot-remote-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27705 +#: guix-git/doc/guix.texi:28042 msgid "Data type representing a remote configuration. This type has the following parameters:" msgstr "Datentyp, der die Konfiguration eines entfernten Servers („Remote“) repräsentiert. Dieser Typ verfügt über die folgenden Parameter:" #. type: table -#: guix-git/doc/guix.texi:27710 +#: guix-git/doc/guix.texi:28047 msgid "An identifier for other configuration fields to refer to this remote. IDs must be unique and must not be empty." msgstr "Ein Identifikator, mit dem man sich in anderen Konfigurationsfeldern auf diesen entfernten Server („Remote“) beziehen kann. IDs müssen eindeutig sein und dürfen @emph{nicht} leer sein." #. type: table -#: guix-git/doc/guix.texi:27715 +#: guix-git/doc/guix.texi:28052 msgid "An ordered list of destination IP addresses. Addresses are tried in sequence. An optional port can be given with the @@ separator. For instance: @code{(list \"1.2.3.4\" \"2.3.4.5@@53\")}. Default port is 53." msgstr "Eine geordnete Liste der Empfänger-IP-Adressen. Adressen werden der Reihe nach durchprobiert. Optional kann eine Portnummer nach dem Trennzeichen @@ angegeben werden, zum Beispiel als @code{(list \"1.2.3.4\" \"2.3.4.5@@53\")}. Die Vorgabe ist 53." #. type: item -#: guix-git/doc/guix.texi:27716 +#: guix-git/doc/guix.texi:28053 #, no-wrap msgid "@code{via} (default: @code{'()})" msgstr "@code{via} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27720 +#: guix-git/doc/guix.texi:28057 msgid "An ordered list of source IP addresses. An empty list will have Knot choose an appropriate source IP@. An optional port can be given with the @@ separator. The default is to choose at random." msgstr "Eine geordnete Liste der Quell-IP-Adressen. Eine leere Liste wird Knot eine sinnvolle Quell-IP-Adresse auswählen lassen. Optional kann eine Portnummer nach dem Trennzeichen @@ angegeben werden. Die Vorgabe wird zufällig ausgewählt." #. type: table -#: guix-git/doc/guix.texi:27724 +#: guix-git/doc/guix.texi:28061 msgid "A reference to a key, that is a string containing the identifier of a key defined in a @code{knot-key-configuration} field." msgstr "Ein Verweis auf einen Schlüssel („Key“), also eine Zeichenkette, die den Identifikator eines Schlüssels enthält, der in einem @code{knot-key-configuration}-Feld festgelegt wurde." #. type: deftp -#: guix-git/doc/guix.texi:27728 +#: guix-git/doc/guix.texi:28065 #, no-wrap msgid "{Data Type} knot-keystore-configuration" msgstr "{Datentyp} knot-keystore-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27731 +#: guix-git/doc/guix.texi:28068 msgid "Data type representing a keystore to hold dnssec keys. This type has the following parameters:" msgstr "Datentyp, der einen Schlüsselspeicher („Keystore“) repräsentiert, um DNSSEC-Schlüssel zu fassen. Dieser Typ verfügt über die folgenden Parameter:" #. type: table -#: guix-git/doc/guix.texi:27735 +#: guix-git/doc/guix.texi:28072 msgid "The id of the keystore. It must not be empty." msgstr "Der Identifikator des Schlüsselspeichers. Er darf nicht leer gelassen werden." #. type: item -#: guix-git/doc/guix.texi:27736 +#: guix-git/doc/guix.texi:28073 #, no-wrap msgid "@code{backend} (default: @code{'pem})" msgstr "@code{backend} (Vorgabe: @code{'pem})" #. type: table -#: guix-git/doc/guix.texi:27738 +#: guix-git/doc/guix.texi:28075 msgid "The backend to store the keys in. Can be @code{'pem} or @code{'pkcs11}." msgstr "Die Art von Hintergrundspeicher, in dem Schlüssel eingetragen werden. Sie kann @code{'pem} oder @code{'pkcs11} sein." #. type: item -#: guix-git/doc/guix.texi:27739 +#: guix-git/doc/guix.texi:28076 #, no-wrap msgid "@code{config} (default: @code{\"/var/lib/knot/keys/keys\"})" msgstr "@code{config} (Vorgabe: @code{\"/var/lib/knot/keys/keys\"})" #. type: table -#: guix-git/doc/guix.texi:27743 +#: guix-git/doc/guix.texi:28080 msgid "The configuration string of the backend. An example for the PKCS#11 is: @code{\"pkcs11:token=knot;pin-value=1234 /gnu/store/.../lib/pkcs11/libsofthsm2.so\"}. For the pem backend, the string represents a path in the file system." msgstr "Die Zeichenkette mit der Konfiguration des Hintergrundspeichers. Ein Beispiel für die PKCS#11 ist @code{\"pkcs11:token=knot;pin-value=1234 /gnu/store/…/lib/pkcs11/libsofthsm2.so\"}. Für pem als Hintergrundspeicher repräsentiert die Zeichenkette einen Pfad im Dateisystem." #. type: deftp -#: guix-git/doc/guix.texi:27747 +#: guix-git/doc/guix.texi:28084 #, no-wrap msgid "{Data Type} knot-policy-configuration" msgstr "{Datentyp} knot-policy-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27751 +#: guix-git/doc/guix.texi:28088 msgid "Data type representing a dnssec policy. Knot DNS is able to automatically sign your zones. It can either generate and manage your keys automatically or use keys that you generate." msgstr "Datentyp, der die DNSSEC-Richtlinie repräsentiert. Knot DNS kann Ihre Zonen automatisch signieren. Der Dienst kann Ihre Schlüssel automatisch erzeugen und verwalten oder Schlüssel benutzen, die Sie selbst erzeugen." #. type: deftp -#: guix-git/doc/guix.texi:27758 +#: guix-git/doc/guix.texi:28095 msgid "Dnssec is usually implemented using two keys: a Key Signing Key (KSK) that is used to sign the second, and a Zone Signing Key (ZSK) that is used to sign the zone. In order to be trusted, the KSK needs to be present in the parent zone (usually a top-level domain). If your registrar supports dnssec, you will have to send them your KSK's hash so they can add a DS record in their zone. This is not automated and need to be done each time you change your KSK." msgstr "DNSSEC wird in der Regel mit zwei Schlüsseln implementiert: Ein Schlüssel, mit dem Schlüssel signiert werden („Key Signing Key“, KSK), signiert den zweiten Schlüssel, einen Schlüssel, der Zonen signiert („Zone Signing Key“, ZSK), mit dem die Zone signiert wird. Damit er als vertrauenswürdig angesehen wird, muss der KSK in der Elternzone stehen (meistens ist das eine Top-Level-Domain). Wenn Ihr Registrar DNSSEC unterstützt, müssen Sie ihm den Hash Ihres KSK übermitteln, damit er einen DS-Eintrag für Ihre Zone hinzufügen kann. Das passiert nicht automatisch und muss jedes Mal wiederholt werden, wenn Sie Ihren KSK ändern." #. type: deftp -#: guix-git/doc/guix.texi:27764 +#: guix-git/doc/guix.texi:28101 msgid "The policy also defines the lifetime of keys. Usually, ZSK can be changed easily and use weaker cryptographic functions (they use lower parameters) in order to sign records quickly, so they are changed often. The KSK however requires manual interaction with the registrar, so they are changed less often and use stronger parameters because they sign only one record." msgstr "Die Richtlinie legt auch fest, wie lange Ihre Schlüssel gültig bleiben. Normalerweise kann der ZSK leicht geändert werden und benutzt kryptografisch schwächere Funktionen (also niedrigere Parameter), damit Einträge schnell signiert werden können, wodurch man sie oft verändern kann. Der KSK setzt jedoch eine manuelle Interaktion mit dem Registrar voraus, also werden sie weniger oft geändert und verwenden stärkere Parameter, weil mit ihnen nur ein einziger Eintrag signiert wird." #. type: deftp -#: guix-git/doc/guix.texi:27766 +#: guix-git/doc/guix.texi:28103 msgid "This type has the following parameters:" msgstr "Dieser Typ verfügt über die folgenden Parameter:" #. type: table -#: guix-git/doc/guix.texi:27770 +#: guix-git/doc/guix.texi:28107 msgid "The id of the policy. It must not be empty." msgstr "Der Identifikator der Richtlinie. Er darf nicht leer sein." #. type: item -#: guix-git/doc/guix.texi:27771 +#: guix-git/doc/guix.texi:28108 #, no-wrap msgid "@code{keystore} (default: @code{\"default\"})" msgstr "@code{keystore} (Vorgabe: @code{\"default\"})" #. type: table -#: guix-git/doc/guix.texi:27776 +#: guix-git/doc/guix.texi:28113 msgid "A reference to a keystore, that is a string containing the identifier of a keystore defined in a @code{knot-keystore-configuration} field. The @code{\"default\"} identifier means the default keystore (a kasp database that was setup by this service)." msgstr "Eine Referenz auf einen Schlüsselspeicher („Keystore“), also eine Zeichenkette, die den Identifikator eines Schlüsselspeichers enthält, der in einem @code{knot-keystore-configuration}-Feld gespeichert ist. Der Identifikator @code{\"default\"} sorgt dafür, dass der vorgegebene Schlüsselspeicher verwendet wird (eine KASP-Datenbank, die durch diesen Dienst eingerichtet wurde)." #. type: item -#: guix-git/doc/guix.texi:27777 +#: guix-git/doc/guix.texi:28114 #, no-wrap msgid "@code{manual?} (default: @code{#f})" msgstr "@code{manual?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27779 +#: guix-git/doc/guix.texi:28116 msgid "Whether the key management is manual or automatic." msgstr "Ob Schlüssel manuell verwaltet werden sollen; andernfalls werden sie automatisch verwaltet." #. type: item -#: guix-git/doc/guix.texi:27780 +#: guix-git/doc/guix.texi:28117 #, no-wrap msgid "@code{single-type-signing?} (default: @code{#f})" msgstr "@code{single-type-signing?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27782 +#: guix-git/doc/guix.texi:28119 msgid "When @code{#t}, use the Single-Type Signing Scheme." msgstr "Wenn es auf @code{#t} steht, werden dieselben Schlüssel als KSK und ZSK verwendet („Single-Type Signing Scheme“)." #. type: item -#: guix-git/doc/guix.texi:27783 +#: guix-git/doc/guix.texi:28120 #, no-wrap msgid "@code{algorithm} (default: @code{\"ecdsap256sha256\"})" msgstr "@code{algorithm} (Vorgabe: @code{\"ecdsap256sha256\"})" #. type: table -#: guix-git/doc/guix.texi:27785 +#: guix-git/doc/guix.texi:28122 msgid "An algorithm of signing keys and issued signatures." msgstr "Ein Algorithmus für zum Signieren verwendete Schlüssel und ausgestellte Signaturen." #. type: item -#: guix-git/doc/guix.texi:27786 +#: guix-git/doc/guix.texi:28123 #, no-wrap msgid "@code{ksk-size} (default: @code{256})" msgstr "@code{ksk-size} (Vorgabe: @code{256})" #. type: table -#: guix-git/doc/guix.texi:27789 +#: guix-git/doc/guix.texi:28126 msgid "The length of the KSK@. Note that this value is correct for the default algorithm, but would be unsecure for other algorithms." msgstr "Die Länge des KSK@. Beachten Sie, dass dieser Wert für den vorgegebenen Algorithmus korrekt ist, aber für andere Algorithmen @emph{nicht} sicher wäre." #. type: item -#: guix-git/doc/guix.texi:27790 +#: guix-git/doc/guix.texi:28127 #, no-wrap msgid "@code{zsk-size} (default: @code{256})" msgstr "@code{zsk-size} (Vorgabe: @code{256})" #. type: table -#: guix-git/doc/guix.texi:27793 +#: guix-git/doc/guix.texi:28130 msgid "The length of the ZSK@. Note that this value is correct for the default algorithm, but would be unsecure for other algorithms." msgstr "Die Länge des ZSK@. Beachten Sie, dass dieser Wert für den vorgegebenen Algorithmus korrekt ist, aber für andere Algorithmen @emph{nicht} sicher wäre." #. type: item -#: guix-git/doc/guix.texi:27794 +#: guix-git/doc/guix.texi:28131 #, no-wrap msgid "@code{dnskey-ttl} (default: @code{'default})" msgstr "@code{dnskey-ttl} (Vorgabe: @code{'default})" #. type: table -#: guix-git/doc/guix.texi:27797 +#: guix-git/doc/guix.texi:28134 msgid "The TTL value for DNSKEY records added into zone apex. The special @code{'default} value means same as the zone SOA TTL." msgstr "Der TTL-Wert für DNSKEY-Einträge, die die Wurzel der Zone betreffen. Der besondere Wert @code{'default} bedeutet, dass dieselbe TTL wie für den SOA-Eintrag der Zone verwendet wird." #. type: item -#: guix-git/doc/guix.texi:27798 +#: guix-git/doc/guix.texi:28135 #, no-wrap msgid "@code{zsk-lifetime} (default: @code{(* 30 24 3600)})" msgstr "@code{zsk-lifetime} (Vorgabe: @code{(* 30 24 3600)})" #. type: table -#: guix-git/doc/guix.texi:27800 +#: guix-git/doc/guix.texi:28137 msgid "The period between ZSK publication and the next rollover initiation." msgstr "Die Zeitspanne zwischen der Veröffentlichung eines ZSK und dem Anfang des nächsten Schlüsselübergangs („Key Rollover“)." #. type: item -#: guix-git/doc/guix.texi:27801 +#: guix-git/doc/guix.texi:28138 #, no-wrap msgid "@code{propagation-delay} (default: @code{(* 24 3600)})" msgstr "@code{propagation-delay} (Vorgabe: @code{(* 24 3600)})" #. type: table -#: guix-git/doc/guix.texi:27804 +#: guix-git/doc/guix.texi:28141 msgid "An extra delay added for each key rollover step. This value should be high enough to cover propagation of data from the master server to all slaves." msgstr "Eine zusätzliche Verlängerung, die bei jedem Schritt im Schlüsselübergang („Key Rollover“) gewartet wird. Dieser Wert sollte hoch genug sein, damit in dieser Zeit Daten vom Master-Server alle Slaves erreichen." #. type: item -#: guix-git/doc/guix.texi:27805 +#: guix-git/doc/guix.texi:28142 #, no-wrap msgid "@code{rrsig-lifetime} (default: @code{(* 14 24 3600)})" msgstr "@code{rrsig-lifetime} (Vorgabe: @code{(* 14 24 3600)})" #. type: table -#: guix-git/doc/guix.texi:27807 +#: guix-git/doc/guix.texi:28144 msgid "A validity period of newly issued signatures." msgstr "Wie lange neu ausgestellte Signaturen gültig bleiben." #. type: item -#: guix-git/doc/guix.texi:27808 +#: guix-git/doc/guix.texi:28145 #, no-wrap msgid "@code{rrsig-refresh} (default: @code{(* 7 24 3600)})" msgstr "@code{rrsig-refresh} (Vorgabe: @code{(* 7 24 3600)})" #. type: table -#: guix-git/doc/guix.texi:27810 +#: guix-git/doc/guix.texi:28147 msgid "A period how long before a signature expiration the signature will be refreshed." msgstr "Wie lange im Voraus vor einem Auslaufen der Signatur diese Signatur erneuert werden soll." #. type: item -#: guix-git/doc/guix.texi:27811 +#: guix-git/doc/guix.texi:28148 #, no-wrap msgid "@code{nsec3?} (default: @code{#f})" msgstr "@code{nsec3?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27813 +#: guix-git/doc/guix.texi:28150 msgid "When @code{#t}, NSEC3 will be used instead of NSEC." msgstr "Ist es auf @code{#t} gesetzt, wird NSEC3 statt NSEC benutzt." #. type: item -#: guix-git/doc/guix.texi:27814 +#: guix-git/doc/guix.texi:28151 #, no-wrap msgid "@code{nsec3-iterations} (default: @code{5})" msgstr "@code{nsec3-iterations} (Vorgabe: @code{5})" #. type: table -#: guix-git/doc/guix.texi:27816 +#: guix-git/doc/guix.texi:28153 msgid "The number of additional times the hashing is performed." msgstr "Wie oft zusätzlich gehasht werden soll." #. type: item -#: guix-git/doc/guix.texi:27817 +#: guix-git/doc/guix.texi:28154 #, no-wrap msgid "@code{nsec3-salt-length} (default: @code{8})" msgstr "@code{nsec3-salt-length} (Vorgabe: @code{8})" #. type: table -#: guix-git/doc/guix.texi:27820 +#: guix-git/doc/guix.texi:28157 msgid "The length of a salt field in octets, which is appended to the original owner name before hashing." msgstr "Wie lange das kryptografische „Salt“ sein soll, als Anzahl von Oktetten. Es wird vor dem Hashen an den Namen des ursprünglichen Besitzers angehängt." #. type: item -#: guix-git/doc/guix.texi:27821 +#: guix-git/doc/guix.texi:28158 #, no-wrap msgid "@code{nsec3-salt-lifetime} (default: @code{(* 30 24 3600)})" msgstr "@code{nsec3-salt-lifetime} (Vorgabe: @code{(* 30 24 3600)})" #. type: table -#: guix-git/doc/guix.texi:27823 +#: guix-git/doc/guix.texi:28160 msgid "The validity period of newly issued salt field." msgstr "Wie lange das neu ausgestellte Salt-Feld gültig bleiben soll." #. type: deftp -#: guix-git/doc/guix.texi:27827 +#: guix-git/doc/guix.texi:28164 #, no-wrap msgid "{Data Type} knot-zone-configuration" msgstr "{Datentyp} knot-zone-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27830 +#: guix-git/doc/guix.texi:28167 msgid "Data type representing a zone served by Knot. This type has the following parameters:" msgstr "Datentyp, der eine durch Knot verfügbar gemachte Zone repräsentiert. Dieser Typ verfügt über die folgenden Parameter:" #. type: item -#: guix-git/doc/guix.texi:27832 +#: guix-git/doc/guix.texi:28169 #, no-wrap msgid "@code{domain} (default: @code{\"\"})" msgstr "@code{domain} (Vorgabe: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:27834 +#: guix-git/doc/guix.texi:28171 msgid "The domain served by this configuration. It must not be empty." msgstr "Die Domain, die durch diese Konfiguration zur Verfügung gestellt wird. Sie darf nicht leer sein." #. type: item -#: guix-git/doc/guix.texi:27835 +#: guix-git/doc/guix.texi:28172 #, no-wrap msgid "@code{file} (default: @code{\"\"})" msgstr "@code{file} (Vorgabe: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:27838 +#: guix-git/doc/guix.texi:28175 msgid "The file where this zone is saved. This parameter is ignored by master zones. Empty means default location that depends on the domain name." msgstr "Die Datei, in der diese Zone abgespeichert wird. Dieser Parameter wird bei Master-Zonen ignoriert. Bleibt er leer, wird die vom Domain-Namen abhängige Voreinstellung benutzt." #. type: item -#: guix-git/doc/guix.texi:27839 +#: guix-git/doc/guix.texi:28176 #, no-wrap msgid "@code{zone} (default: @code{(zone-file)})" msgstr "@code{zone} (Vorgabe: @code{(zone-file)})" #. type: table -#: guix-git/doc/guix.texi:27842 +#: guix-git/doc/guix.texi:28179 msgid "The content of the zone file. This parameter is ignored by slave zones. It must contain a zone-file record." msgstr "Der Inhalt der Zonendatei. Dieser Parameter wird bei Slave-Zonen ignoriert. Er muss ein Verbundsobjekt vom Typ @code{zone-file} enthalten." #. type: item -#: guix-git/doc/guix.texi:27843 +#: guix-git/doc/guix.texi:28180 #, no-wrap msgid "@code{master} (default: @code{'()})" msgstr "@code{master} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27846 +#: guix-git/doc/guix.texi:28183 msgid "A list of master remotes. When empty, this zone is a master. When set, this zone is a slave. This is a list of remotes identifiers." msgstr "Eine Liste von als „Master“ geltenden entfernten Servern. Ist sie leer, ist diese Zone ein Master, sonst ein Slave. Es handelt sich um eine Liste von Identifikatoren entfernter Server („Remotes“)." #. type: item -#: guix-git/doc/guix.texi:27847 +#: guix-git/doc/guix.texi:28184 #, no-wrap msgid "@code{ddns-master} (default: @code{#f})" msgstr "@code{ddns-master} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27850 +#: guix-git/doc/guix.texi:28187 msgid "The main master. When empty, it defaults to the first master in the list of masters." msgstr "Der vorrangige „Master“. Ist dies leer, wird hierfür der erste Master aus der Liste der Master benutzt." #. type: item -#: guix-git/doc/guix.texi:27851 +#: guix-git/doc/guix.texi:28188 #, no-wrap msgid "@code{notify} (default: @code{'()})" msgstr "@code{notify} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27853 +#: guix-git/doc/guix.texi:28190 msgid "A list of slave remote identifiers." msgstr "Eine Liste der Identifikatoren von entfernten Slave-Servern („Remotes“)." #. type: item -#: guix-git/doc/guix.texi:27854 +#: guix-git/doc/guix.texi:28191 #, no-wrap msgid "@code{acl} (default: @code{'()})" msgstr "@code{acl} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27856 +#: guix-git/doc/guix.texi:28193 msgid "A list of acl identifiers." msgstr "Eine Liste von Identifikatoren von Zugriffssteuerungslisten." #. type: item -#: guix-git/doc/guix.texi:27857 +#: guix-git/doc/guix.texi:28194 #, no-wrap msgid "@code{semantic-checks?} (default: @code{#f})" msgstr "@code{semantic-checks?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27859 +#: guix-git/doc/guix.texi:28196 msgid "When set, this adds more semantic checks to the zone." msgstr "Wenn dies festgelegt ist, werden für die Zone mehr semantische Überprüfungen durchgeführt." #. type: item -#: guix-git/doc/guix.texi:27860 +#: guix-git/doc/guix.texi:28197 #, no-wrap msgid "@code{zonefile-sync} (default: @code{0})" msgstr "@code{zonefile-sync} (Vorgabe: @code{0})" #. type: table -#: guix-git/doc/guix.texi:27863 +#: guix-git/doc/guix.texi:28200 msgid "The delay between a modification in memory and on disk. 0 means immediate synchronization." msgstr "Wie lange nach einer Änderung der im Arbeitsspeicher zwischengespeicherten Daten gewartet wird, bis die Daten auf die Platte geschrieben werden. Bei 0 werden sie sofort synchronisiert." #. type: item -#: guix-git/doc/guix.texi:27864 +#: guix-git/doc/guix.texi:28201 #, no-wrap msgid "@code{zonefile-load} (default: @code{#f})" msgstr "@code{zonefile-load} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27867 +#: guix-git/doc/guix.texi:28204 msgid "The way the zone file contents are applied during zone load. Possible values are:" msgstr "Wie die in der Zonendatei gespeicherten Daten benutzt werden, wenn die Zone geladen wird. Mögliche Werte sind:" #. type: item -#: guix-git/doc/guix.texi:27869 +#: guix-git/doc/guix.texi:28206 #, no-wrap msgid "@code{#f} for using the default value from Knot," msgstr "@code{#f} sorgt dafür, dass nach der Voreinstellung von Knot verfahren wird," #. type: item -#: guix-git/doc/guix.texi:27870 +#: guix-git/doc/guix.texi:28207 #, no-wrap msgid "@code{'none} for not using the zone file at all," msgstr "@code{'none} bewirkt, dass die Zonendatei überhaupt nicht benutzt wird," #. type: item -#: guix-git/doc/guix.texi:27871 +#: guix-git/doc/guix.texi:28208 #, no-wrap msgid "@code{'difference} for computing the difference between already available" msgstr "@code{'difference} lässt den Unterschied zwischen den bereits vorliegenden" #. type: itemize -#: guix-git/doc/guix.texi:27873 +#: guix-git/doc/guix.texi:28210 msgid "contents and zone contents and applying it to the current zone contents," msgstr "Daten und dem gespeicherten Inhalt der Zone berechnen, welcher dann zum vorliegenden Zoneninhalt hinzugenommen wird," #. type: item -#: guix-git/doc/guix.texi:27873 +#: guix-git/doc/guix.texi:28210 #, no-wrap msgid "@code{'difference-no-serial} for the same as @code{'difference}, but" msgstr "@code{'difference-no-serial} für dasselbe wie bei @code{'difference}," #. type: itemize -#: guix-git/doc/guix.texi:27876 +#: guix-git/doc/guix.texi:28213 msgid "ignoring the SOA serial in the zone file, while the server takes care of it automatically." msgstr "aber die SOA-Seriennummer in der Zonendatei wird ignoriert und der Server kümmert sich automatisch darum." #. type: item -#: guix-git/doc/guix.texi:27876 +#: guix-git/doc/guix.texi:28213 #, no-wrap msgid "@code{'whole} for loading zone contents from the zone file." msgstr "@code{'whole} lässt den ganzen Inhalt der Zone aus der Zonendatei auslesen." #. type: item -#: guix-git/doc/guix.texi:27879 +#: guix-git/doc/guix.texi:28216 #, no-wrap msgid "@code{journal-content} (default: @code{#f})" msgstr "@code{journal-content} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27884 +#: guix-git/doc/guix.texi:28221 msgid "The way the journal is used to store zone and its changes. Possible values are @code{'none} to not use it at all, @code{'changes} to store changes and @code{'all} to store contents. @code{#f} does not set this option, so the default value from Knot is used." msgstr "Wie in den Aufzeichnungen die Zone und Änderungen daran gespeichert werden sollen. Mögliche Werte sind @code{'none}, um keine Aufzeichnungen zu führen, @code{'changes}, um Änderungen zu speichern, und @code{'all}, wodurch der gesamte Inhalt gespeichert wird. Für @code{#f} wird dieser Wert nicht gesetzt, so dass der in Knot voreingestellte Wert benutzt wird." #. type: item -#: guix-git/doc/guix.texi:27885 +#: guix-git/doc/guix.texi:28222 #, no-wrap msgid "@code{max-journal-usage} (default: @code{#f})" msgstr "@code{max-journal-usage} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27888 +#: guix-git/doc/guix.texi:28225 msgid "The maximum size for the journal on disk. @code{#f} does not set this option, so the default value from Knot is used." msgstr "Die maximale Größe, die Aufzeichnungen für die Wiederherstellbarkeit („Journal“) auf der Platte einnehmen können. Für @code{#f} wird dieser Wert nicht gesetzt, so dass der in Knot voreingestellte Wert benutzt wird." #. type: item -#: guix-git/doc/guix.texi:27889 +#: guix-git/doc/guix.texi:28226 #, no-wrap msgid "@code{max-journal-depth} (default: @code{#f})" msgstr "@code{max-journal-depth} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27892 +#: guix-git/doc/guix.texi:28229 msgid "The maximum size of the history. @code{#f} does not set this option, so the default value from Knot is used." msgstr "Wie viele Aufzeichnungen höchstens im Änderungsverlauf gespeichert werden. Für @code{#f} wird dieser Wert nicht gesetzt, so dass der in Knot voreingestellte Wert benutzt wird." #. type: item -#: guix-git/doc/guix.texi:27893 +#: guix-git/doc/guix.texi:28230 #, no-wrap msgid "@code{max-zone-size} (default: @code{#f})" msgstr "@code{max-zone-size} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27897 +#: guix-git/doc/guix.texi:28234 msgid "The maximum size of the zone file. This limit is enforced for incoming transfer and updates. @code{#f} does not set this option, so the default value from Knot is used." msgstr "Die maximale Größe der Zonendatei. Diese Beschränkung wird auf eingehende Übertragungen und Aktualisierungen angewandt. Für @code{#f} wird dieser Wert nicht gesetzt, so dass der in Knot voreingestellte Wert benutzt wird." #. type: item -#: guix-git/doc/guix.texi:27898 +#: guix-git/doc/guix.texi:28235 #, no-wrap msgid "@code{dnssec-policy} (default: @code{#f})" msgstr "@code{dnssec-policy} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27902 +#: guix-git/doc/guix.texi:28239 msgid "A reference to a @code{knot-policy-configuration} record, or the special name @code{\"default\"}. If the value is @code{#f}, there is no dnssec signing on this zone." msgstr "Ein Verweis auf ein @code{knot-policy-configuration}-Verbundsobjekt oder der besondere Name @code{\"default\"}, um die Voreinstellung von Knot zu verwenden. Wenn dies als der Wert @code{#f} angegeben wurde, findet in dieser Zone kein Signieren mit DNSSEC statt." #. type: item -#: guix-git/doc/guix.texi:27903 +#: guix-git/doc/guix.texi:28240 #, no-wrap msgid "@code{serial-policy} (default: @code{'increment})" msgstr "@code{serial-policy} (Vorgabe: @code{'increment})" #. type: table -#: guix-git/doc/guix.texi:27905 +#: guix-git/doc/guix.texi:28242 msgid "A policy between @code{'increment} and @code{'unixtime}." msgstr "Eine Richtlinie; entweder @code{'increment} (Seriennummer hochzählen) oder @code{'unixtime} (Unix-Zeitstempel verwenden)." #. type: deftp -#: guix-git/doc/guix.texi:27909 +#: guix-git/doc/guix.texi:28246 #, no-wrap msgid "{Data Type} knot-configuration" msgstr "{Datentyp} knot-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27912 +#: guix-git/doc/guix.texi:28249 msgid "Data type representing the Knot configuration. This type has the following parameters:" msgstr "Datentyp, der die Konfiguration von Knot repräsentiert. Dieser Typ verfügt über die folgenden Parameter:" #. type: item -#: guix-git/doc/guix.texi:27914 +#: guix-git/doc/guix.texi:28251 #, no-wrap msgid "@code{knot} (default: @code{knot})" msgstr "@code{knot} (Vorgabe: @code{knot})" #. type: table -#: guix-git/doc/guix.texi:27916 +#: guix-git/doc/guix.texi:28253 msgid "The Knot package." msgstr "Das Knot-Paket." #. type: item -#: guix-git/doc/guix.texi:27917 +#: guix-git/doc/guix.texi:28254 #, no-wrap msgid "@code{run-directory} (default: @code{\"/var/run/knot\"})" msgstr "@code{run-directory} (Vorgabe: @code{\"/var/run/knot\"})" #. type: table -#: guix-git/doc/guix.texi:27919 +#: guix-git/doc/guix.texi:28256 msgid "The run directory. This directory will be used for pid file and sockets." msgstr "Das Laufzeit-Verzeichnis („run“-Verzeichnis). In diesem Verzeichnis werden die PID-Datei mit dem Prozessidentifikator und Sockets gespeichert." #. type: item -#: guix-git/doc/guix.texi:27920 +#: guix-git/doc/guix.texi:28257 #, no-wrap msgid "@code{includes} (default: @code{'()})" msgstr "@code{includes} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27923 +#: guix-git/doc/guix.texi:28260 msgid "A list of strings or file-like objects denoting other files that must be included at the top of the configuration file." msgstr "Eine flache Liste von Zeichenketten oder dateiartigen Objekten, die oben in der Konfigurationsdatei eingebunden werden müssen." #. type: cindex -#: guix-git/doc/guix.texi:27924 +#: guix-git/doc/guix.texi:28261 #, no-wrap msgid "secrets, Knot service" msgstr "Geheimnisse, Knot-Dienst" #. type: table -#: guix-git/doc/guix.texi:27930 +#: guix-git/doc/guix.texi:28267 msgid "This can be used to manage secrets out-of-band. For example, secret keys may be stored in an out-of-band file not managed by Guix, and thus not visible in @file{/gnu/store}---e.g., you could store secret key configuration in @file{/etc/knot/secrets.conf} and add this file to the @code{includes} list." msgstr "Hiermit können Geheimnisse abseits von Guix’ Zuständigkeitsbereich gespeichert werden. Zum Beispiel können Sie geheime Schlüssel so in einer externen Datei speichern, die nicht von Guix verwaltet und daher auch nicht von jedem in @file{/gnu/store} ausgelesen werden kann@tie{}— Sie können etwa Ihre geheime Schlüsselkonfiguration in @file{/etc/knot/secrets.conf} speichern und diese Datei dann zu Ihrer @code{includes}-Liste hinzufügen." #. type: table -#: guix-git/doc/guix.texi:27935 +#: guix-git/doc/guix.texi:28272 msgid "One can generate a secret tsig key (for nsupdate and zone transfers with the keymgr command from the knot package. Note that the package is not automatically installed by the service. The following example shows how to generate a new tsig key:" msgstr "Sie können mit dem Schlüsselverwaltungsprogramm @code{keymgr} aus dem Knot-Paket einen geheimen TSIG-Schlüssel erzeugen lassen (für @code{nsupdate} und Zonentransfers). Beachten Sie, dass das Paket @emph{nicht} automatisch durch den Dienst installiert wird. Das folgende Beispiel zeigt, wie man einen neuen TSIG-Schlüssel erzeugen lässt:" #. type: example -#: guix-git/doc/guix.texi:27939 +#: guix-git/doc/guix.texi:28276 #, no-wrap msgid "" "keymgr -t mysecret > /etc/knot/secrets.conf\n" @@ -52422,106 +53107,106 @@ msgstr "" "chmod 600 /etc/knot/secrets.conf\n" #. type: table -#: guix-git/doc/guix.texi:27945 +#: guix-git/doc/guix.texi:28282 msgid "Also note that the generated key will be named @var{mysecret}, so it is the name that needs to be used in the @var{key} field of the @code{knot-acl-configuration} record and in other places that need to refer to that key." msgstr "Außerdem sollten Sie bedenken, dass der erzeugte Schlüssel den Namen @var{meingeheimnis} bekommt, dieser Name also auch im @var{key}-Feld des @code{knot-acl-configuration}-Verbundsobjekts und an anderen Stellen verwendet werden muss, wo auf den Schlüssel verwiesen wird." #. type: table -#: guix-git/doc/guix.texi:27947 +#: guix-git/doc/guix.texi:28284 msgid "It can also be used to add configuration not supported by this interface." msgstr "Sie können die @code{includes} auch benutzen, um von der Guix-Schnittstelle nicht unterstützte Einstellungen festzulegen." #. type: item -#: guix-git/doc/guix.texi:27948 +#: guix-git/doc/guix.texi:28285 #, no-wrap msgid "@code{listen-v4} (default: @code{\"0.0.0.0\"})" msgstr "@code{listen-v4} (Vorgabe: @code{\"0.0.0.0\"})" #. type: table -#: guix-git/doc/guix.texi:27950 guix-git/doc/guix.texi:27953 +#: guix-git/doc/guix.texi:28287 guix-git/doc/guix.texi:28290 msgid "An ip address on which to listen." msgstr "Eine IP-Adresse, auf der gelauscht werden soll." #. type: item -#: guix-git/doc/guix.texi:27951 +#: guix-git/doc/guix.texi:28288 #, no-wrap msgid "@code{listen-v6} (default: @code{\"::\"})" msgstr "@code{listen-v6} (Vorgabe: @code{\"::\"})" #. type: item -#: guix-git/doc/guix.texi:27954 +#: guix-git/doc/guix.texi:28291 #, no-wrap msgid "@code{listen-port} (default: @code{53})" msgstr "@code{listen-port} (Vorgabe: @code{53})" #. type: table -#: guix-git/doc/guix.texi:27956 +#: guix-git/doc/guix.texi:28293 msgid "A port on which to listen." msgstr "Ein Port, auf dem gelauscht werden soll." #. type: item -#: guix-git/doc/guix.texi:27957 +#: guix-git/doc/guix.texi:28294 #, no-wrap msgid "@code{keys} (default: @code{'()})" msgstr "@code{keys} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27959 +#: guix-git/doc/guix.texi:28296 msgid "The list of knot-key-configuration used by this configuration." msgstr "Die Liste der @code{knot-key-configuration}-Objekte, die von dieser Konfiguration benutzt werden sollen." #. type: item -#: guix-git/doc/guix.texi:27960 +#: guix-git/doc/guix.texi:28297 #, no-wrap msgid "@code{acls} (default: @code{'()})" msgstr "@code{acls} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27962 +#: guix-git/doc/guix.texi:28299 msgid "The list of knot-acl-configuration used by this configuration." msgstr "Die Liste der @code{knot-acl-configuration}-Objekte, die von dieser Konfiguration benutzt werden sollen." #. type: item -#: guix-git/doc/guix.texi:27963 +#: guix-git/doc/guix.texi:28300 #, no-wrap msgid "@code{remotes} (default: @code{'()})" msgstr "@code{remotes} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27965 +#: guix-git/doc/guix.texi:28302 msgid "The list of knot-remote-configuration used by this configuration." msgstr "Die Liste der @code{knot-remote-configuration}-Objekte, die von dieser Konfiguration benutzt werden sollen." #. type: item -#: guix-git/doc/guix.texi:27966 +#: guix-git/doc/guix.texi:28303 #, no-wrap msgid "@code{zones} (default: @code{'()})" msgstr "@code{zones} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27968 +#: guix-git/doc/guix.texi:28305 msgid "The list of knot-zone-configuration used by this configuration." msgstr "Die Liste der @code{knot-zone-configuration}-Objekte, die von dieser Konfiguration benutzt werden sollen." #. type: subsubheading -#: guix-git/doc/guix.texi:27972 +#: guix-git/doc/guix.texi:28309 #, no-wrap msgid "Knot Resolver Service" msgstr "Knot-Resolver-Dienst" #. type: deffn -#: guix-git/doc/guix.texi:27974 +#: guix-git/doc/guix.texi:28311 #, no-wrap msgid "{Scheme Variable} knot-resolver-service-type" msgstr "{Scheme-Variable} knot-resolver-service-type" #. type: deffn -#: guix-git/doc/guix.texi:27977 +#: guix-git/doc/guix.texi:28314 msgid "This is the type of the knot resolver service, whose value should be an @code{knot-resolver-configuration} object as in this example:" msgstr "Dies ist der Diensttyp des Knot-Resolver-Dienstes, dessen Wert ein @code{knot-resolver-configuration}-Objekt wie in diesem Beispiel sein sollte:" #. type: lisp -#: guix-git/doc/guix.texi:27987 +#: guix-git/doc/guix.texi:28324 #, no-wrap msgid "" "(service knot-resolver-service-type\n" @@ -52543,73 +53228,73 @@ msgstr "" "\"))))\n" #. type: deffn -#: guix-git/doc/guix.texi:27990 +#: guix-git/doc/guix.texi:28327 msgid "For more information, refer its @url{https://knot-resolver.readthedocs.org/en/stable/daemon.html#configuration, manual}." msgstr "Weitere Informationen finden Sie in seinem @url{https://knot-resolver.readthedocs.org/en/stable/daemon.html#configuration, Handbuch}." #. type: deftp -#: guix-git/doc/guix.texi:27992 +#: guix-git/doc/guix.texi:28329 #, no-wrap msgid "{Data Type} knot-resolver-configuration" msgstr "{Datentyp} knot-resolver-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27994 +#: guix-git/doc/guix.texi:28331 msgid "Data type representing the configuration of knot-resolver." msgstr "Der Datentyp, der die Konfiguration von knot-resolver repräsentiert." #. type: item -#: guix-git/doc/guix.texi:27996 +#: guix-git/doc/guix.texi:28333 #, no-wrap msgid "@code{package} (default: @var{knot-resolver})" msgstr "@code{package} (Vorgabe: @var{knot-resolver})" #. type: table -#: guix-git/doc/guix.texi:27998 +#: guix-git/doc/guix.texi:28335 msgid "Package object of the knot DNS resolver." msgstr "Das Paketobjekt des Knot-DNS-Resolvers." #. type: item -#: guix-git/doc/guix.texi:27999 +#: guix-git/doc/guix.texi:28336 #, no-wrap msgid "@code{kresd-config-file} (default: %kresd.conf)" msgstr "@code{kresd-config-file} (Vorgabe: %kresd.conf)" #. type: table -#: guix-git/doc/guix.texi:28002 +#: guix-git/doc/guix.texi:28339 msgid "File-like object of the kresd configuration file to use, by default it will listen on @code{127.0.0.1} and @code{::1}." msgstr "Dateiartiges Objekt der zu nutzenden kresd-Konfigurationsdatei. Nach Vorgabe lauscht der Knot-Resolver auf @code{127.0.0.1} und @code{::1}." #. type: item -#: guix-git/doc/guix.texi:28003 +#: guix-git/doc/guix.texi:28340 #, no-wrap msgid "@code{garbage-collection-interval} (default: 1000)" msgstr "@code{garbage-collection-interval} (Vorgabe: 1000)" #. type: table -#: guix-git/doc/guix.texi:28005 +#: guix-git/doc/guix.texi:28342 msgid "Number of milliseconds for @code{kres-cache-gc} to periodically trim the cache." msgstr "Wie viele Millisekunden @code{kres-cache-gc} zwischen Bereinigungen seines Zwischenspeichers wartet." #. type: subsubheading -#: guix-git/doc/guix.texi:28010 +#: guix-git/doc/guix.texi:28347 #, no-wrap msgid "Dnsmasq Service" msgstr "Dnsmasq-Dienst" #. type: deffn -#: guix-git/doc/guix.texi:28012 +#: guix-git/doc/guix.texi:28349 #, no-wrap msgid "{Scheme Variable} dnsmasq-service-type" msgstr "{Scheme-Variable} dnsmasq-service-type" #. type: deffn -#: guix-git/doc/guix.texi:28015 +#: guix-git/doc/guix.texi:28352 msgid "This is the type of the dnsmasq service, whose value should be an @code{dnsmasq-configuration} object as in this example:" msgstr "Dies ist der Diensttyp des dnsmasq-Dienstes, dessen Wert ein @code{dnsmasq-configuration}-Objekt wie in diesem Beispiel sein sollte:" #. type: lisp -#: guix-git/doc/guix.texi:28021 +#: guix-git/doc/guix.texi:28358 #, no-wrap msgid "" "(service dnsmasq-service-type\n" @@ -52623,122 +53308,122 @@ msgstr "" " (servers '(\"192.168.1.1\"))))\n" #. type: deftp -#: guix-git/doc/guix.texi:28024 +#: guix-git/doc/guix.texi:28361 #, no-wrap msgid "{Data Type} dnsmasq-configuration" msgstr "{Datentyp} dnsmasq-configuration" #. type: deftp -#: guix-git/doc/guix.texi:28026 +#: guix-git/doc/guix.texi:28363 msgid "Data type representing the configuration of dnsmasq." msgstr "Repräsentiert die dnsmasq-Konfiguration." #. type: item -#: guix-git/doc/guix.texi:28028 +#: guix-git/doc/guix.texi:28365 #, no-wrap msgid "@code{package} (default: @var{dnsmasq})" msgstr "@code{package} (Vorgabe: @var{dnsmasq})" #. type: table -#: guix-git/doc/guix.texi:28030 +#: guix-git/doc/guix.texi:28367 msgid "Package object of the dnsmasq server." msgstr "Paketobjekt des dnsmasq-Servers." #. type: item -#: guix-git/doc/guix.texi:28031 +#: guix-git/doc/guix.texi:28368 #, no-wrap msgid "@code{no-hosts?} (default: @code{#f})" msgstr "@code{no-hosts?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28033 +#: guix-git/doc/guix.texi:28370 msgid "When true, don't read the hostnames in /etc/hosts." msgstr "Ist es auf wahr gesetzt, werden keine Rechnernamen („Hostnames“) aus /etc/hosts ausgelesen." #. type: item -#: guix-git/doc/guix.texi:28034 +#: guix-git/doc/guix.texi:28371 #, no-wrap msgid "@code{port} (default: @code{53})" msgstr "@code{port} (Vorgabe: @code{53})" #. type: table -#: guix-git/doc/guix.texi:28037 +#: guix-git/doc/guix.texi:28374 msgid "The port to listen on. Setting this to zero completely disables DNS responses, leaving only DHCP and/or TFTP functions." msgstr "Der Port, auf dem gelauscht werden soll. Wird dies auf null gesetzt, werden keinerlei DNS-Anfragen beantwortet und es bleiben nur DHCP- und/oder TFTP-Funktionen." #. type: item -#: guix-git/doc/guix.texi:28038 +#: guix-git/doc/guix.texi:28375 #, no-wrap msgid "@code{local-service?} (default: @code{#t})" msgstr "@code{local-service?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:28041 +#: guix-git/doc/guix.texi:28378 msgid "Accept DNS queries only from hosts whose address is on a local subnet, ie a subnet for which an interface exists on the server." msgstr "DNS-Anfragen nur von Rechnern akzeptieren, deren Adresse auf einem lokalen Subnetz liegt, d.h.@: einem Subnetz, für dem auf dem Server eine Schnittstelle existiert." #. type: item -#: guix-git/doc/guix.texi:28042 +#: guix-git/doc/guix.texi:28379 #, no-wrap msgid "@code{listen-addresses} (default: @code{'()})" msgstr "@code{listen-addresses} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:28044 +#: guix-git/doc/guix.texi:28381 msgid "Listen on the given IP addresses." msgstr "Lässt auf den angegebenen IP-Adressen lauschen." #. type: item -#: guix-git/doc/guix.texi:28045 +#: guix-git/doc/guix.texi:28382 #, no-wrap msgid "@code{resolv-file} (default: @code{\"/etc/resolv.conf\"})" msgstr "@code{resolv-file} (Vorgabe: @code{\"/etc/resolv.conf\"})" #. type: table -#: guix-git/doc/guix.texi:28047 +#: guix-git/doc/guix.texi:28384 msgid "The file to read the IP address of the upstream nameservers from." msgstr "Aus welcher Datei die IP-Adresse der zu verwendenden Namensserver gelesen werden sollen." #. type: item -#: guix-git/doc/guix.texi:28048 +#: guix-git/doc/guix.texi:28385 #, no-wrap msgid "@code{no-resolv?} (default: @code{#f})" msgstr "@code{no-resolv?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28050 +#: guix-git/doc/guix.texi:28387 msgid "When true, don't read @var{resolv-file}." msgstr "Wenn es auf wahr steht, wird das @var{resolv-file} nicht gelesen." #. type: item -#: guix-git/doc/guix.texi:28051 +#: guix-git/doc/guix.texi:28388 #, no-wrap msgid "@code{servers} (default: @code{'()})" msgstr "@code{servers} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:28053 +#: guix-git/doc/guix.texi:28390 msgid "Specify IP address of upstream servers directly." msgstr "Geben Sie die IP-Adresse von anzufragenden Servern direkt an." #. type: item -#: guix-git/doc/guix.texi:28054 +#: guix-git/doc/guix.texi:28391 #, no-wrap msgid "@code{addresses} (default: @code{'()})" msgstr "@code{addresses} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:28058 +#: guix-git/doc/guix.texi:28395 msgid "For each entry, specify an IP address to return for any host in the given domains. Queries in the domains are never forwarded and always replied to with the specified IP address." msgstr "Geben Sie in jedem Eintrag eine IP-Adresse an, die für jeden Rechner mit einer der angegebenen Domains zurückgeliefert werden soll. Anfragen nach den Domains werden niemals weitergegeben, sondern werden immer mit der festgelegten IP-Adresse beantwortet." #. type: table -#: guix-git/doc/guix.texi:28060 +#: guix-git/doc/guix.texi:28397 msgid "This is useful for redirecting hosts locally, for example:" msgstr "Dies ist nützlich, um für Rechnernamen lokale Umleitungen einzurichten, wie in diesem Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:28069 +#: guix-git/doc/guix.texi:28406 #, no-wrap msgid "" "(service dnsmasq-service-type\n" @@ -52758,1007 +53443,1007 @@ msgstr "" " \"/subdomain.example.org/192.168.1.42\"))))\n" #. type: table -#: guix-git/doc/guix.texi:28072 +#: guix-git/doc/guix.texi:28409 msgid "Note that rules in @file{/etc/hosts} take precedence over this." msgstr "Beachten Sie, dass die Regeln in @file{/etc/hosts} Vorrang haben." #. type: item -#: guix-git/doc/guix.texi:28073 +#: guix-git/doc/guix.texi:28410 #, no-wrap msgid "@code{cache-size} (default: @code{150})" msgstr "@code{cache-size} (Vorgabe: @code{150})" #. type: table -#: guix-git/doc/guix.texi:28076 +#: guix-git/doc/guix.texi:28413 msgid "Set the size of dnsmasq's cache. Setting the cache size to zero disables caching." msgstr "Bestimmt die Größe des Zwischenspeichers von dnsmasq. Wird die Zwischenspeichergröße auf null festgelegt, wird kein Zwischenspeicher benutzt." #. type: item -#: guix-git/doc/guix.texi:28077 +#: guix-git/doc/guix.texi:28414 #, no-wrap msgid "@code{negative-cache?} (default: @code{#t})" msgstr "@code{negative-cache?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:28079 +#: guix-git/doc/guix.texi:28416 msgid "When false, disable negative caching." msgstr "Ist dies auf falsch gesetzt, werden Negativergebnisse nicht zwischengespeichert." #. type: item -#: guix-git/doc/guix.texi:28080 +#: guix-git/doc/guix.texi:28417 #, no-wrap msgid "@code{tftp-enable?} (default: @code{#f})" msgstr "@code{tftp-enable?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28082 +#: guix-git/doc/guix.texi:28419 msgid "Whether to enable the built-in TFTP server." msgstr "Ob der eingebaute TFTP-Server aktiviert werden soll." #. type: item -#: guix-git/doc/guix.texi:28083 +#: guix-git/doc/guix.texi:28420 #, no-wrap msgid "@code{tftp-no-fail?} (default: @code{#f})" msgstr "@code{tftp-no-fail?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28085 +#: guix-git/doc/guix.texi:28422 msgid "If true, does not fail dnsmasq if the TFTP server could not start up." msgstr "Wenn dies wahr ist und der TFTP-Server nicht gestartet werden kann, gilt dnsmasq trotzdem @emph{nicht} als fehlgeschlagen." #. type: item -#: guix-git/doc/guix.texi:28086 +#: guix-git/doc/guix.texi:28423 #, no-wrap msgid "@code{tftp-single-port?} (default: @code{#f})" msgstr "@code{tftp-single-port?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28088 +#: guix-git/doc/guix.texi:28425 msgid "Whether to use only one single port for TFTP." msgstr "Ob nur ein einzelner Port für TFTP benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:28089 +#: guix-git/doc/guix.texi:28426 #, no-wrap msgid "@code{tftp-secure?} (default: @code{#f})" msgstr "@code{tftp-secure?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28091 +#: guix-git/doc/guix.texi:28428 msgid "If true, only files owned by the user running the dnsmasq process are accessible." msgstr "Wenn dies wahr ist, kann nur auf solche Dateien zugegriffen werden, die dem Benutzerkonto gehören, das den dnsmasq-Prozess ausführt." #. type: table -#: guix-git/doc/guix.texi:28095 +#: guix-git/doc/guix.texi:28432 msgid "If dnsmasq is being run as root, different rules apply: @code{tftp-secure?} has no effect, but only files which have the world-readable bit set are accessible." msgstr "Wird dnsmasq durch den Administratornutzer root ausgeführt, gelten andere Regeln: @code{tftp-secure?} wirkt sich nicht aus, aber es kann nur auf Dateien zugegriffen werden, auf die jeder Benutzer zugreifen darf (das „world-readable bit“ ist gesetzt)." #. type: item -#: guix-git/doc/guix.texi:28096 +#: guix-git/doc/guix.texi:28433 #, no-wrap msgid "@code{tftp-max} (default: @code{#f})" msgstr "@code{tftp-max} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28098 +#: guix-git/doc/guix.texi:28435 msgid "If set, sets the maximal number of concurrent connections allowed." msgstr "Wenn dies gesetzt ist, gibt es die Maximalzahl gleichzeitig zugelassener Verbindungen an." #. type: item -#: guix-git/doc/guix.texi:28099 +#: guix-git/doc/guix.texi:28436 #, no-wrap msgid "@code{tftp-mtu} (default: @code{#f})" msgstr "@code{tftp-mtu} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28101 +#: guix-git/doc/guix.texi:28438 msgid "If set, sets the MTU for TFTP packets to that value." msgstr "Wenn es gesetzt ist, gibt es die MTU für TFTP-Pakete an, also die Maximalgröße für Netzwerkschnittstellen." #. type: item -#: guix-git/doc/guix.texi:28102 +#: guix-git/doc/guix.texi:28439 #, no-wrap msgid "@code{tftp-no-blocksize?} (default: @code{#f})" msgstr "@code{tftp-no-blocksize?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28104 +#: guix-git/doc/guix.texi:28441 msgid "If true, stops the TFTP server from negotiating the blocksize with a client." msgstr "Steht es auf wahr, wird der TFTP-Server die Blockgröße @emph{nicht} mit dem Client aushandeln." #. type: item -#: guix-git/doc/guix.texi:28105 +#: guix-git/doc/guix.texi:28442 #, no-wrap msgid "@code{tftp-lowercase?} (default: @code{#f})" msgstr "@code{tftp-lowercase?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28107 +#: guix-git/doc/guix.texi:28444 msgid "Whether to convert all filenames in TFTP requests to lowercase." msgstr "Ob alle Dateinamen in TFTP-Anfragen in Kleinbuchstaben umgesetzt werden sollen." #. type: item -#: guix-git/doc/guix.texi:28108 +#: guix-git/doc/guix.texi:28445 #, no-wrap msgid "@code{tftp-port-range} (default: @code{#f})" msgstr "@code{tftp-port-range} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28111 +#: guix-git/doc/guix.texi:28448 msgid "If set, fixes the dynamical ports (one per client) to the given range (@code{\",\"})." msgstr "Wenn es gesetzt ist, wird jeder dynamische Port (einer pro Client) aus dem angegebenen Bereich (@code{\",\"}) genommen." #. type: item -#: guix-git/doc/guix.texi:28112 +#: guix-git/doc/guix.texi:28449 #, no-wrap msgid "@code{tftp-root} (default: @code{/var/empty,lo})" msgstr "@code{tftp-root} (Vorgabe: @code{/var/empty,lo})" #. type: table -#: guix-git/doc/guix.texi:28119 +#: guix-git/doc/guix.texi:28456 msgid "Look for files to transfer using TFTP relative to the given directory. When this is set, TFTP paths which include @samp{..} are rejected, to stop clients getting outside the specified root. Absolute paths (starting with @samp{/}) are allowed, but they must be within the TFTP-root. If the optional interface argument is given, the directory is only used for TFTP requests via that interface." msgstr "Relativ zu welchem Verzeichnis die Dateien für die Übertragung per TFTP gesucht werden. Wenn dies gesetzt ist, werden TFTP-Pfade, die @samp{..} enthalten, abgelehnt, damit Clients keinen Zugriff auf Dateien außerhalb des angegebenen Wurzelverzeichnisses haben. Absolute Pfade (solche, die mit @samp{/} beginnen) sind erlaubt, aber sie müssen in der TFTP-Root liegen. Wenn das optionale Argument @code{interface} angegeben wird, wird das Verzeichnis nur für TFTP-Anfragen über diese Schnittstelle benutzt." #. type: item -#: guix-git/doc/guix.texi:28120 +#: guix-git/doc/guix.texi:28457 #, no-wrap msgid "@code{tftp-unique-root} (default: @code{#f})" msgstr "@code{tftp-unique-root} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28125 +#: guix-git/doc/guix.texi:28462 msgid "If set, add the IP or hardware address of the TFTP client as a path component on the end of the TFTP-root. Only valid if a TFTP root is set and the directory exists. Defaults to adding IP address (in standard dotted-quad format)." msgstr "Wenn es gesetzt ist, wird entsprechend die IP- oder Hardware-Adresse des TFTP-Clients als eine Pfadkomponente ans Ende der TFTP-Root angehängt. Das ist nur gültig, wenn eine TFTP-Root gesetzt ist und das Verzeichnis existiert. Die Voreinstellung ist, die IP-Adresse anzuhängen (wie üblich als punktgetrenntes Quadrupel)." #. type: table -#: guix-git/doc/guix.texi:28134 +#: guix-git/doc/guix.texi:28471 msgid "For instance, if @option{--tftp-root} is @samp{/tftp} and client @samp{1.2.3.4} requests file @file{myfile} then the effective path will be @file{/tftp/1.2.3.4/myfile} if @file{/tftp/1.2.3.4} exists or @file{/tftp/myfile} otherwise. When @samp{=mac} is specified it will append the MAC address instead, using lowercase zero padded digits separated by dashes, e.g.: @samp{01-02-03-04-aa-bb}. Note that resolving MAC addresses is only possible if the client is in the local network or obtained a DHCP lease from dnsmasq." msgstr "Ist zum Beispiel @code{tftp-root} @samp{/tftp} und fragt Client @samp{1.2.3.4} die Datei @file{meinedatei} an, dann wird effektiv als Pfad @file{/tftp/1.2.3.4/meinedatei} abgerufen, wenn @file{/tftp/1.2.3.4} existiert, oder @file{/tftp/meinedatei} andernfalls. Wird @samp{=mac} angegeben, wird stattdessen die MAC-Adresse angehängt (in Kleinbuchstaben und durch Striche getrennt, aufgefüllt mit der Ziffer null), z.B.@: @samp{01-02-03-04-aa-bb}. Beachten Sie, dass MAC-Adressen nur aufgelöst werden können, wenn sich der Client im lokalen Netzwerk befindet oder von dnsmasq eine Adresse per DHCP zugewiesen bekommen hat." #. type: subsubheading -#: guix-git/doc/guix.texi:28138 +#: guix-git/doc/guix.texi:28475 #, no-wrap msgid "ddclient Service" msgstr "ddclient-Dienst" #. type: cindex -#: guix-git/doc/guix.texi:28140 +#: guix-git/doc/guix.texi:28477 #, no-wrap msgid "ddclient" msgstr "ddclient" #. type: Plain text -#: guix-git/doc/guix.texi:28144 +#: guix-git/doc/guix.texi:28481 msgid "The ddclient service described below runs the ddclient daemon, which takes care of automatically updating DNS entries for service providers such as @uref{https://dyn.com/dns/, Dyn}." msgstr "Der im Folgenden beschriebene ddclient-Dienst führt den ddclient-Daemon aus, der dafür sorgt, dass DNS-Einträge für Dienstanbieter wie @uref{https://dyn.com/dns/, Dyn} automatisch aktualisiert werden." #. type: Plain text -#: guix-git/doc/guix.texi:28147 +#: guix-git/doc/guix.texi:28484 msgid "The following example show instantiates the service with its default configuration:" msgstr "Das folgende Beispiel zeigt, wie man den Dienst mit seiner Vorgabekonfiguration instanziiert:" #. type: lisp -#: guix-git/doc/guix.texi:28150 +#: guix-git/doc/guix.texi:28487 #, no-wrap msgid "(service ddclient-service-type)\n" msgstr "(service ddclient-service-type)\n" #. type: Plain text -#: guix-git/doc/guix.texi:28159 +#: guix-git/doc/guix.texi:28496 msgid "Note that ddclient needs to access credentials that are stored in a @dfn{secret file}, by default @file{/etc/ddclient/secrets} (see @code{secret-file} below). You are expected to create this file manually, in an ``out-of-band'' fashion (you @emph{could} make this file part of the service configuration, for instance by using @code{plain-file}, but it will be world-readable @i{via} @file{/gnu/store}). See the examples in the @file{share/ddclient} directory of the @code{ddclient} package." msgstr "Beachten Sie, dass der ddclient auf Zugangsdaten zugreifen muss, die in einer @dfn{Geheimnisdatei} („Secret File“) stehen; nach Vorgabe wird sie in @file{/etc/ddclient/secrets} gesucht (siehe @code{secret-file} unten). Es wird erwartet, dass Sie diese Datei manuell erstellen, ohne Guix dafür zu benutzen (theoretisch @emph{könnten} Sie die Datei zu einem Teil Ihrer Dienstkonfiguration machen, indem Sie z.B.@: @code{plain-file} benutzen, aber dann könnte jeder über @file{/gnu/store} ihren Inhalt einsehen). Siehe die Beispiele im Verzeichnis @file{share/ddclient} des @code{ddclient}-Pakets." #. type: Plain text -#: guix-git/doc/guix.texi:28163 +#: guix-git/doc/guix.texi:28500 msgid "Available @code{ddclient-configuration} fields are:" msgstr "Verfügbare @code{ddclient-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:28164 +#: guix-git/doc/guix.texi:28501 #, no-wrap msgid "{@code{ddclient-configuration} parameter} package ddclient" msgstr "{@code{ddclient-configuration}-Parameter} „package“ ddclient" #. type: deftypevr -#: guix-git/doc/guix.texi:28166 +#: guix-git/doc/guix.texi:28503 msgid "The ddclient package." msgstr "Das ddclient-Paket." #. type: deftypevr -#: guix-git/doc/guix.texi:28169 +#: guix-git/doc/guix.texi:28506 #, no-wrap msgid "{@code{ddclient-configuration} parameter} integer daemon" msgstr "{@code{ddclient-configuration}-Parameter} Ganze-Zahl daemon" #. type: deftypevr -#: guix-git/doc/guix.texi:28171 +#: guix-git/doc/guix.texi:28508 msgid "The period after which ddclient will retry to check IP and domain name." msgstr "Nach wie viel Zeit ddclient erneut versuchen wird, IP und Domain-Namen zu überprüfen." #. type: deftypevr -#: guix-git/doc/guix.texi:28173 +#: guix-git/doc/guix.texi:28510 msgid "Defaults to @samp{300}." msgstr "Die Vorgabe ist @samp{300}." #. type: deftypevr -#: guix-git/doc/guix.texi:28176 +#: guix-git/doc/guix.texi:28513 #, no-wrap msgid "{@code{ddclient-configuration} parameter} boolean syslog" msgstr "{@code{ddclient-configuration}-Parameter} Boolescher-Ausdruck syslog" #. type: deftypevr -#: guix-git/doc/guix.texi:28178 +#: guix-git/doc/guix.texi:28515 msgid "Use syslog for the output." msgstr "Ob die Ausgabe an Syslog gehen soll." #. type: deftypevr -#: guix-git/doc/guix.texi:28183 +#: guix-git/doc/guix.texi:28520 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string mail" msgstr "{@code{ddclient-configuration}-Parameter} Zeichenkette mail" #. type: deftypevr -#: guix-git/doc/guix.texi:28185 +#: guix-git/doc/guix.texi:28522 msgid "Mail to user." msgstr "An welchen Benutzer Mitteilungen gemailt werden sollen." #. type: deftypevr -#: guix-git/doc/guix.texi:28187 guix-git/doc/guix.texi:28194 -#: guix-git/doc/guix.texi:29996 +#: guix-git/doc/guix.texi:28524 guix-git/doc/guix.texi:28531 +#: guix-git/doc/guix.texi:30361 msgid "Defaults to @samp{\"root\"}." msgstr "Die Vorgabe ist @samp{\"root\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28190 +#: guix-git/doc/guix.texi:28527 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string mail-failure" msgstr "{@code{ddclient-configuration}-Parameter} Zeichenkette mail-failure" #. type: deftypevr -#: guix-git/doc/guix.texi:28192 +#: guix-git/doc/guix.texi:28529 msgid "Mail failed update to user." msgstr "Den Nutzer per Mail bei fehlgeschlagenen Aktualisierungen benachrichtigen." #. type: deftypevr -#: guix-git/doc/guix.texi:28197 +#: guix-git/doc/guix.texi:28534 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string pid" msgstr "{@code{ddclient-configuration}-Parameter} Zeichenkette pid" #. type: deftypevr -#: guix-git/doc/guix.texi:28199 +#: guix-git/doc/guix.texi:28536 msgid "The ddclient PID file." msgstr "PID-Datei für den ddclient." #. type: deftypevr -#: guix-git/doc/guix.texi:28201 +#: guix-git/doc/guix.texi:28538 msgid "Defaults to @samp{\"/var/run/ddclient/ddclient.pid\"}." msgstr "Die Vorgabe ist @samp{\"/var/run/ddclient/ddclient.pid\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28204 +#: guix-git/doc/guix.texi:28541 #, no-wrap msgid "{@code{ddclient-configuration} parameter} boolean ssl" msgstr "{@code{ddclient-configuration}-Parameter} Boolescher-Ausdruck ssl" #. type: deftypevr -#: guix-git/doc/guix.texi:28206 +#: guix-git/doc/guix.texi:28543 msgid "Enable SSL support." msgstr "SSL-Unterstützung aktivieren." #. type: deftypevr -#: guix-git/doc/guix.texi:28211 +#: guix-git/doc/guix.texi:28548 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string user" msgstr "{@code{ddclient-configuration}-Parameter} Zeichenkette user" #. type: deftypevr -#: guix-git/doc/guix.texi:28214 +#: guix-git/doc/guix.texi:28551 msgid "Specifies the user name or ID that is used when running ddclient program." msgstr "Gibt den Namen oder Identifikator des Benutzerkontos an, unter dem das ddclient-Programm laufen soll." #. type: deftypevr -#: guix-git/doc/guix.texi:28216 guix-git/doc/guix.texi:28223 +#: guix-git/doc/guix.texi:28553 guix-git/doc/guix.texi:28560 msgid "Defaults to @samp{\"ddclient\"}." msgstr "Die Vorgabe ist @samp{\"ddclient\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28219 +#: guix-git/doc/guix.texi:28556 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string group" msgstr "{@code{ddclient-configuration}-Parameter} Zeichenkette group" #. type: deftypevr -#: guix-git/doc/guix.texi:28221 +#: guix-git/doc/guix.texi:28558 msgid "Group of the user who will run the ddclient program." msgstr "Die Gruppe des Benutzers, mit dem das ddclient-Programm läuft." #. type: deftypevr -#: guix-git/doc/guix.texi:28226 +#: guix-git/doc/guix.texi:28563 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string secret-file" msgstr "{@code{ddclient-configuration}-Parameter} Zeichenkette secret-file" #. type: deftypevr -#: guix-git/doc/guix.texi:28230 +#: guix-git/doc/guix.texi:28567 msgid "Secret file which will be appended to @file{ddclient.conf} file. This file contains credentials for use by ddclient. You are expected to create it manually." msgstr "Die Geheimnisdatei („Secret File“), die an die erzeugte @file{ddclient.conf}-Datei angehängt wird. Diese Datei enthält die Zugangsdaten, die ddclient benutzen soll. Es wird erwartet, dass Sie sie manuell erzeugen." #. type: deftypevr -#: guix-git/doc/guix.texi:28232 +#: guix-git/doc/guix.texi:28569 msgid "Defaults to @samp{\"/etc/ddclient/secrets.conf\"}." msgstr "Die Vorgabe ist @samp{\"/etc/ddclient/secrets.conf\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28235 +#: guix-git/doc/guix.texi:28572 #, no-wrap msgid "{@code{ddclient-configuration} parameter} list extra-options" msgstr "{@code{ddclient-configuration}-Parameter} Liste extra-options" #. type: deftypevr -#: guix-git/doc/guix.texi:28237 +#: guix-git/doc/guix.texi:28574 msgid "Extra options will be appended to @file{ddclient.conf} file." msgstr "Zusätzliche Einstellungsoptionen, die an die @file{ddclient.conf}-Datei angehängt werden." #. type: cindex -#: guix-git/doc/guix.texi:28248 +#: guix-git/doc/guix.texi:28585 #, no-wrap msgid "VPN (virtual private network)" msgstr "VPN (Virtual Private Network)" #. type: cindex -#: guix-git/doc/guix.texi:28249 +#: guix-git/doc/guix.texi:28586 #, no-wrap msgid "virtual private network (VPN)" msgstr "Virtual Private Network (VPN)" #. type: Plain text -#: guix-git/doc/guix.texi:28253 +#: guix-git/doc/guix.texi:28590 msgid "The @code{(gnu services vpn)} module provides services related to @dfn{virtual private networks} (VPNs)." msgstr "Das Modul @code{(gnu services vpn)} stellt Dienste zur Verfügung, die mit @dfn{Virtual Private Networks} (VPNs) zu tun haben." #. type: subsubheading -#: guix-git/doc/guix.texi:28254 +#: guix-git/doc/guix.texi:28591 #, no-wrap msgid "Bitmask" msgstr "Bitmask" #. type: defvr -#: guix-git/doc/guix.texi:28256 +#: guix-git/doc/guix.texi:28593 #, no-wrap msgid "{Scheme Variable} bitmask-service-type" msgstr "{Scheme-Variable} bitmask-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28261 +#: guix-git/doc/guix.texi:28598 msgid "A service type for the @uref{https://bitmask.net, Bitmask} VPN client. It makes the client available in the system and loads its polkit policy. Please note that the client expects an active polkit-agent, which is either run by your desktop-environment or should be run manually." msgstr "Ein Diensttyp für den VPN-Client @uref{https://bitmask.net, Bitmask}. Damit wird der Client systemweit verfügbar gemacht und dessen Polkit-Richtlinie geladen. Beachten Sie, dass der Client nur mit einem laufenden polkit-agent funktioniert, der entweder von Ihrer „Desktop“-Arbeitsumgebung oder von Ihnen manuell gestartet wird." #. type: subsubheading -#: guix-git/doc/guix.texi:28263 +#: guix-git/doc/guix.texi:28600 #, no-wrap msgid "OpenVPN" msgstr "OpenVPN" #. type: Plain text -#: guix-git/doc/guix.texi:28267 +#: guix-git/doc/guix.texi:28604 msgid "It provides a @emph{client} service for your machine to connect to a VPN, and a @emph{server} service for your machine to host a VPN@." msgstr "Hiermit wird ein @emph{Client}-Dienst angeboten, mit dem sich Ihre Maschine mit einem VPN verbinden kann, sowie ein @emph{Server}-Dienst, mit dem Sie auf Ihrer Maschine ein VPN betreiben können." #. type: deffn -#: guix-git/doc/guix.texi:28268 +#: guix-git/doc/guix.texi:28605 #, no-wrap msgid "{Scheme Procedure} openvpn-client-service @" msgstr "{Scheme-Prozedur} openvpn-client-service @" #. type: deffn -#: guix-git/doc/guix.texi:28270 +#: guix-git/doc/guix.texi:28607 msgid "[#:config (openvpn-client-configuration)]" msgstr "[#:config (openvpn-client-configuration)]" #. type: deffn -#: guix-git/doc/guix.texi:28272 +#: guix-git/doc/guix.texi:28609 msgid "Return a service that runs @command{openvpn}, a VPN daemon, as a client." msgstr "Liefert einen Dienst, der den VPN-Daemon @command{openvpn} als Client ausführt." #. type: deffn -#: guix-git/doc/guix.texi:28274 +#: guix-git/doc/guix.texi:28611 #, no-wrap msgid "{Scheme Procedure} openvpn-server-service @" msgstr "{Scheme-Prozedur} openvpn-server-service @" #. type: deffn -#: guix-git/doc/guix.texi:28276 +#: guix-git/doc/guix.texi:28613 msgid "[#:config (openvpn-server-configuration)]" msgstr "[#:config (openvpn-server-configuration)]" #. type: deffn -#: guix-git/doc/guix.texi:28278 +#: guix-git/doc/guix.texi:28615 msgid "Return a service that runs @command{openvpn}, a VPN daemon, as a server." msgstr "Liefert einen Dienst, der den VPN-Daemon @command{openvpn} als Server ausführt." #. type: deffn -#: guix-git/doc/guix.texi:28280 +#: guix-git/doc/guix.texi:28617 msgid "Both can be run simultaneously." msgstr "Beide können zeitgleich laufen gelassen werden." #. type: Plain text -#: guix-git/doc/guix.texi:28285 +#: guix-git/doc/guix.texi:28622 msgid "Available @code{openvpn-client-configuration} fields are:" msgstr "Verfügbare @code{openvpn-client-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:28286 +#: guix-git/doc/guix.texi:28623 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} package openvpn" msgstr "{@code{openvpn-client-configuration}-Parameter} „package“ openvpn" #. type: deftypevr -#: guix-git/doc/guix.texi:28288 guix-git/doc/guix.texi:28443 +#: guix-git/doc/guix.texi:28625 guix-git/doc/guix.texi:28780 msgid "The OpenVPN package." msgstr "Das OpenVPN-Paket." #. type: deftypevr -#: guix-git/doc/guix.texi:28291 +#: guix-git/doc/guix.texi:28628 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} string pid-file" msgstr "{@code{openvpn-client-configuration}-Parameter} Zeichenkette pid-file" #. type: deftypevr -#: guix-git/doc/guix.texi:28293 guix-git/doc/guix.texi:28448 +#: guix-git/doc/guix.texi:28630 guix-git/doc/guix.texi:28785 msgid "The OpenVPN pid file." msgstr "Die Datei für den Prozessidentifikator („PID“) von OpenVPN." #. type: deftypevr -#: guix-git/doc/guix.texi:28295 guix-git/doc/guix.texi:28450 +#: guix-git/doc/guix.texi:28632 guix-git/doc/guix.texi:28787 msgid "Defaults to @samp{\"/var/run/openvpn/openvpn.pid\"}." msgstr "Die Vorgabe ist @samp{\"/var/run/openvpn/openvpn.pid\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28298 +#: guix-git/doc/guix.texi:28635 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} proto proto" msgstr "{@code{openvpn-client-configuration}-Parameter} Protokoll proto" #. type: deftypevr -#: guix-git/doc/guix.texi:28301 guix-git/doc/guix.texi:28456 +#: guix-git/doc/guix.texi:28638 guix-git/doc/guix.texi:28793 msgid "The protocol (UDP or TCP) used to open a channel between clients and servers." msgstr "Das Protokoll (UDP oder TCP), das benutzt werden soll, um einen Kommunikationskanal zwischen Clients und Servern herzustellen." #. type: deftypevr -#: guix-git/doc/guix.texi:28303 guix-git/doc/guix.texi:28458 +#: guix-git/doc/guix.texi:28640 guix-git/doc/guix.texi:28795 msgid "Defaults to @samp{udp}." msgstr "Die Vorgabe ist @samp{udp}." #. type: deftypevr -#: guix-git/doc/guix.texi:28306 +#: guix-git/doc/guix.texi:28643 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} dev dev" msgstr "{@code{openvpn-client-configuration}-Parameter} Gerät dev" #. type: deftypevr -#: guix-git/doc/guix.texi:28308 guix-git/doc/guix.texi:28463 +#: guix-git/doc/guix.texi:28645 guix-git/doc/guix.texi:28800 msgid "The device type used to represent the VPN connection." msgstr "Der Gerätetyp, mit dem die VPN-Verbindung repräsentiert werden soll." #. type: deftypevr -#: guix-git/doc/guix.texi:28310 guix-git/doc/guix.texi:28465 +#: guix-git/doc/guix.texi:28647 guix-git/doc/guix.texi:28802 msgid "Defaults to @samp{tun}." msgstr "Die Vorgabe ist @samp{tun}." #. type: Plain text -#: guix-git/doc/guix.texi:28316 guix-git/doc/guix.texi:28471 +#: guix-git/doc/guix.texi:28653 guix-git/doc/guix.texi:28808 msgid "If you do not have some of these files (eg.@: you use a username and password), you can disable any of the following three fields by setting it to @code{'disabled}." msgstr "Wenn Ihnen einige dieser Dateien fehlen (etwa weil Sie stattdessen Benutzername und Passwort benutzen), dann können Sie jedes der folgenden drei Felder unterdrücken, indem Sie dafür @code{'disabled} angeben." #. type: deftypevr -#: guix-git/doc/guix.texi:28317 +#: guix-git/doc/guix.texi:28654 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string ca" msgstr "{@code{openvpn-client-configuration}-Parameter} Vielleicht-Zeichenkette ca" #. type: deftypevr -#: guix-git/doc/guix.texi:28319 guix-git/doc/guix.texi:28474 +#: guix-git/doc/guix.texi:28656 guix-git/doc/guix.texi:28811 msgid "The certificate authority to check connections against." msgstr "Die Zertifikatsautorität, mit der Verbindungen geprüft werden." #. type: deftypevr -#: guix-git/doc/guix.texi:28321 guix-git/doc/guix.texi:28476 +#: guix-git/doc/guix.texi:28658 guix-git/doc/guix.texi:28813 msgid "Defaults to @samp{\"/etc/openvpn/ca.crt\"}." msgstr "Die Vorgabe ist @samp{\"/etc/openvpn/ca.crt\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28324 +#: guix-git/doc/guix.texi:28661 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string cert" msgstr "{@code{openvpn-client-configuration}-Parameter} Vielleicht-Zeichenkette cert" #. type: deftypevr -#: guix-git/doc/guix.texi:28327 guix-git/doc/guix.texi:28482 +#: guix-git/doc/guix.texi:28664 guix-git/doc/guix.texi:28819 msgid "The certificate of the machine the daemon is running on. It should be signed by the authority given in @code{ca}." msgstr "Das Zertifikat der Maschine, auf der der Daemon läuft. Es sollte von der in @code{ca} angegebenen Zertifikatsautorität signiert sein." #. type: deftypevr -#: guix-git/doc/guix.texi:28329 guix-git/doc/guix.texi:28484 +#: guix-git/doc/guix.texi:28666 guix-git/doc/guix.texi:28821 msgid "Defaults to @samp{\"/etc/openvpn/client.crt\"}." msgstr "Die Vorgabe ist @samp{\"/etc/openvpn/client.crt\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28332 +#: guix-git/doc/guix.texi:28669 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string key" msgstr "{@code{openvpn-client-configuration}-Parameter} Vielleicht-Zeichenkette key" #. type: deftypevr -#: guix-git/doc/guix.texi:28335 guix-git/doc/guix.texi:28490 +#: guix-git/doc/guix.texi:28672 guix-git/doc/guix.texi:28827 msgid "The key of the machine the daemon is running on. It must be the key whose certificate is @code{cert}." msgstr "Der Schlüssel der Maschine, auf der der Daemon läuft. Er muss der Schlüssel zum in @code{cert} angegebenen Zertifikat sein." #. type: deftypevr -#: guix-git/doc/guix.texi:28337 guix-git/doc/guix.texi:28492 +#: guix-git/doc/guix.texi:28674 guix-git/doc/guix.texi:28829 msgid "Defaults to @samp{\"/etc/openvpn/client.key\"}." msgstr "Die Vorgabe ist @samp{\"/etc/openvpn/client.key\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28340 +#: guix-git/doc/guix.texi:28677 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean comp-lzo?" msgstr "{@code{openvpn-client-configuration}-Parameter} Boolescher-Ausdruck comp-lzo?" #. type: deftypevr -#: guix-git/doc/guix.texi:28342 guix-git/doc/guix.texi:28497 +#: guix-git/doc/guix.texi:28679 guix-git/doc/guix.texi:28834 msgid "Whether to use the lzo compression algorithm." msgstr "Ob der Kompressionsalgorithmus lzo benutzt werden soll." #. type: deftypevr -#: guix-git/doc/guix.texi:28347 +#: guix-git/doc/guix.texi:28684 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean persist-key?" msgstr "{@code{openvpn-client-configuration}-Parameter} Boolescher-Ausdruck persist-key?" #. type: deftypevr -#: guix-git/doc/guix.texi:28349 guix-git/doc/guix.texi:28504 +#: guix-git/doc/guix.texi:28686 guix-git/doc/guix.texi:28841 msgid "Don't re-read key files across SIGUSR1 or --ping-restart." msgstr "Die Schlüsseldateien nach Auftreten von SIGUSR1 oder --ping-restart @emph{nicht} erneut einlesen." #. type: deftypevr -#: guix-git/doc/guix.texi:28354 +#: guix-git/doc/guix.texi:28691 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean persist-tun?" msgstr "{@code{openvpn-client-configuration}-Parameter} Boolescher-Ausdruck persist-tun?" #. type: deftypevr -#: guix-git/doc/guix.texi:28357 guix-git/doc/guix.texi:28512 +#: guix-git/doc/guix.texi:28694 guix-git/doc/guix.texi:28849 msgid "Don't close and reopen TUN/TAP device or run up/down scripts across SIGUSR1 or --ping-restart restarts." msgstr "Nach dem Auftreten von SIGUSR1 oder --ping-restart TUN/TAP-Geräte @emph{nicht} schließen und wieder öffnen und auch keine Start-/Stop-Skripte ausführen." #. type: deftypevr -#: guix-git/doc/guix.texi:28362 +#: guix-git/doc/guix.texi:28699 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean fast-io?" msgstr "{@code{openvpn-client-configuration}-Parameter} Boolescher-Ausdruck fast-io?" #. type: deftypevr -#: guix-git/doc/guix.texi:28365 guix-git/doc/guix.texi:28520 +#: guix-git/doc/guix.texi:28702 guix-git/doc/guix.texi:28857 msgid "(Experimental) Optimize TUN/TAP/UDP I/O writes by avoiding a call to poll/epoll/select prior to the write operation." msgstr "(Experimentell) Schreibzugriffe durch Datenverkehr bei TUN/TAP/UDP optimieren, indem ein Aufruf von poll/epoll/select vor der Schreiboperation eingespart wird." #. type: deftypevr -#: guix-git/doc/guix.texi:28369 +#: guix-git/doc/guix.texi:28706 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} number verbosity" msgstr "{@code{openvpn-client-configuration}-Parameter} Zahl verbosity" #. type: deftypevr -#: guix-git/doc/guix.texi:28371 guix-git/doc/guix.texi:28526 +#: guix-git/doc/guix.texi:28708 guix-git/doc/guix.texi:28863 msgid "Verbosity level." msgstr "Ausführlichkeitsstufe." #. type: deftypevr -#: guix-git/doc/guix.texi:28373 guix-git/doc/guix.texi:28528 -#: guix-git/doc/guix.texi:30264 guix-git/doc/guix.texi:30488 +#: guix-git/doc/guix.texi:28710 guix-git/doc/guix.texi:28865 +#: guix-git/doc/guix.texi:30629 guix-git/doc/guix.texi:30853 msgid "Defaults to @samp{3}." msgstr "Die Vorgabe ist @samp{3}." #. type: deftypevr -#: guix-git/doc/guix.texi:28376 +#: guix-git/doc/guix.texi:28713 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} tls-auth-client tls-auth" msgstr "{@code{openvpn-client-configuration}-Parameter} „tls-auth“-Clienteinstellung tls-auth" #. type: deftypevr -#: guix-git/doc/guix.texi:28379 guix-git/doc/guix.texi:28534 +#: guix-git/doc/guix.texi:28716 guix-git/doc/guix.texi:28871 msgid "Add an additional layer of HMAC authentication on top of the TLS control channel to protect against DoS attacks." msgstr "Eine weitere HMAC-Authentifizierung zusätzlich zum TLS-Steuerungskanal einsetzen, um das System vor gezielten Überlastungsangriffen („Denial of Service“) zu schützen." #. type: deftypevr -#: guix-git/doc/guix.texi:28384 +#: guix-git/doc/guix.texi:28721 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string auth-user-pass" msgstr "{@code{openvpn-client-configuration}-Parameter} Vielleicht-Zeichenkette auth-user-pass" #. type: deftypevr -#: guix-git/doc/guix.texi:28388 +#: guix-git/doc/guix.texi:28725 msgid "Authenticate with server using username/password. The option is a file containing username/password on 2 lines. Do not use a file-like object as it would be added to the store and readable by any user." msgstr "Beim Server eine Authentisierung über Benutzername/Passwort durchführen. Die Option nimmt eine Datei, welche Benutzername und Passwort auf zwei Zeilen enthält. Benutzen Sie dafür @emph{kein} dateiartiges Objekt, weil es in den Store eingelagert würde, wo es jeder Benutzer einsehen könnte." #. type: deftypevr -#: guix-git/doc/guix.texi:28390 +#: guix-git/doc/guix.texi:28727 msgid "Defaults to @samp{'disabled}." msgstr "Der Vorgabewert ist @samp{'disabled} (d.h.@: deaktiviert)." #. type: deftypevr -#: guix-git/doc/guix.texi:28392 +#: guix-git/doc/guix.texi:28729 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} key-usage verify-key-usage?" msgstr "{@code{openvpn-client-configuration}-Parameter} Schlüsselprüfung verify-key-usage?" #. type: deftypevr -#: guix-git/doc/guix.texi:28394 +#: guix-git/doc/guix.texi:28731 msgid "Whether to check the server certificate has server usage extension." msgstr "Ob sichergestellt werden soll, dass das Server-Zertifikat auch über eine Erweiterung („Extension“) verfügt, dass es für die Nutzung als Server gültig ist." #. type: deftypevr -#: guix-git/doc/guix.texi:28399 +#: guix-git/doc/guix.texi:28736 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} bind bind?" msgstr "{@code{openvpn-client-configuration}-Parameter} bind bind?" #. type: deftypevr -#: guix-git/doc/guix.texi:28401 +#: guix-git/doc/guix.texi:28738 msgid "Bind to a specific local port number." msgstr "Ob an immer dieselbe, feste lokale Portnummer gebunden wird." #. type: deftypevr -#: guix-git/doc/guix.texi:28406 +#: guix-git/doc/guix.texi:28743 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} resolv-retry resolv-retry?" msgstr "{@code{openvpn-client-configuration}-Parameter} Erneut-Auflösen resolv-retry?" #. type: deftypevr -#: guix-git/doc/guix.texi:28408 +#: guix-git/doc/guix.texi:28745 msgid "Retry resolving server address." msgstr "Ob, wenn die Server-Adresse nicht aufgelöst werden konnte, die Auflösung erneut versucht wird." #. type: deftypevr -#: guix-git/doc/guix.texi:28413 +#: guix-git/doc/guix.texi:28750 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} openvpn-remote-list remote" msgstr "{@code{openvpn-client-configuration}-Parameter} „openvpn-remote-configuration“-Liste remote" #. type: deftypevr -#: guix-git/doc/guix.texi:28415 +#: guix-git/doc/guix.texi:28752 msgid "A list of remote servers to connect to." msgstr "Eine Liste entfernter Server, mit denen eine Verbindung hergestellt werden soll." #. type: deftypevr -#: guix-git/doc/guix.texi:28419 +#: guix-git/doc/guix.texi:28756 msgid "Available @code{openvpn-remote-configuration} fields are:" msgstr "Verfügbare @code{openvpn-remote-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:28420 +#: guix-git/doc/guix.texi:28757 #, no-wrap msgid "{@code{openvpn-remote-configuration} parameter} string name" msgstr "{@code{openvpn-remote-configuration}-Parameter} Zeichenkette name" #. type: deftypevr -#: guix-git/doc/guix.texi:28422 +#: guix-git/doc/guix.texi:28759 msgid "Server name." msgstr "Der Servername." #. type: deftypevr -#: guix-git/doc/guix.texi:28424 +#: guix-git/doc/guix.texi:28761 msgid "Defaults to @samp{\"my-server\"}." msgstr "Die Vorgabe ist @samp{\"my-server\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28427 +#: guix-git/doc/guix.texi:28764 #, no-wrap msgid "{@code{openvpn-remote-configuration} parameter} number port" msgstr "{@code{openvpn-remote-configuration}-Parameter} Zahl port" #. type: deftypevr -#: guix-git/doc/guix.texi:28429 +#: guix-git/doc/guix.texi:28766 msgid "Port number the server listens to." msgstr "Die Portnummer, auf der der Server lauscht." #. type: deftypevr -#: guix-git/doc/guix.texi:28431 guix-git/doc/guix.texi:28543 +#: guix-git/doc/guix.texi:28768 guix-git/doc/guix.texi:28880 msgid "Defaults to @samp{1194}." msgstr "Die Vorgabe ist @samp{1194}." #. type: Plain text -#: guix-git/doc/guix.texi:28440 +#: guix-git/doc/guix.texi:28777 msgid "Available @code{openvpn-server-configuration} fields are:" msgstr "Verfügbare @code{openvpn-server-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:28441 +#: guix-git/doc/guix.texi:28778 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} package openvpn" msgstr "{@code{openvpn-server-configuration}-Parameter} „package“ openvpn" #. type: deftypevr -#: guix-git/doc/guix.texi:28446 +#: guix-git/doc/guix.texi:28783 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string pid-file" msgstr "{@code{openvpn-server-configuration}-Parameter} Zeichenkette pid-file" #. type: deftypevr -#: guix-git/doc/guix.texi:28453 +#: guix-git/doc/guix.texi:28790 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} proto proto" msgstr "{@code{openvpn-server-configuration}-Parameter} Protokoll proto" #. type: deftypevr -#: guix-git/doc/guix.texi:28461 +#: guix-git/doc/guix.texi:28798 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} dev dev" msgstr "{@code{openvpn-server-configuration}-Parameter} Gerät dev" #. type: deftypevr -#: guix-git/doc/guix.texi:28472 +#: guix-git/doc/guix.texi:28809 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string ca" msgstr "{@code{openvpn-server-configuration}-Parameter} Vielleicht-Zeichenkette ca" #. type: deftypevr -#: guix-git/doc/guix.texi:28479 +#: guix-git/doc/guix.texi:28816 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string cert" msgstr "{@code{openvpn-server-configuration}-Parameter} Vielleicht-Zeichenkette cert" #. type: deftypevr -#: guix-git/doc/guix.texi:28487 +#: guix-git/doc/guix.texi:28824 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string key" msgstr "{@code{openvpn-server-configuration}-Parameter} Vielleicht-Zeichenkette key" #. type: deftypevr -#: guix-git/doc/guix.texi:28495 +#: guix-git/doc/guix.texi:28832 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean comp-lzo?" msgstr "{@code{openvpn-server-configuration}-Parameter} Boolescher-Ausdruck comp-lzo?" #. type: deftypevr -#: guix-git/doc/guix.texi:28502 +#: guix-git/doc/guix.texi:28839 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean persist-key?" msgstr "{@code{openvpn-server-configuration}-Parameter} Boolescher-Ausdruck persist-key?" #. type: deftypevr -#: guix-git/doc/guix.texi:28509 +#: guix-git/doc/guix.texi:28846 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean persist-tun?" msgstr "{@code{openvpn-server-configuration}-Parameter} Boolescher-Ausdruck persist-tun?" #. type: deftypevr -#: guix-git/doc/guix.texi:28517 +#: guix-git/doc/guix.texi:28854 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean fast-io?" msgstr "{@code{openvpn-server-configuration}-Parameter} Boolescher-Ausdruck fast-io?" #. type: deftypevr -#: guix-git/doc/guix.texi:28524 +#: guix-git/doc/guix.texi:28861 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number verbosity" msgstr "{@code{openvpn-server-configuration}-Parameter} Zahl verbosity" #. type: deftypevr -#: guix-git/doc/guix.texi:28531 +#: guix-git/doc/guix.texi:28868 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} tls-auth-server tls-auth" msgstr "{@code{openvpn-server-configuration}-Parameter} „tls-auth“-Servereinstellung tls-auth" #. type: deftypevr -#: guix-git/doc/guix.texi:28539 +#: guix-git/doc/guix.texi:28876 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number port" msgstr "{@code{openvpn-server-configuration}-Parameter} Zahl port" #. type: deftypevr -#: guix-git/doc/guix.texi:28541 +#: guix-git/doc/guix.texi:28878 msgid "Specifies the port number on which the server listens." msgstr "Gibt die Portnummer an, auf der der Server lauscht." #. type: deftypevr -#: guix-git/doc/guix.texi:28546 +#: guix-git/doc/guix.texi:28883 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} ip-mask server" msgstr "{@code{openvpn-server-configuration}-Parameter} IP-und-Maske server" #. type: deftypevr -#: guix-git/doc/guix.texi:28548 +#: guix-git/doc/guix.texi:28885 msgid "An ip and mask specifying the subnet inside the virtual network." msgstr "Eine IP-Adresse gefolgt von deren Maske, die das Subnetz im virtuellen Netzwerk angibt." #. type: deftypevr -#: guix-git/doc/guix.texi:28550 +#: guix-git/doc/guix.texi:28887 msgid "Defaults to @samp{\"10.8.0.0 255.255.255.0\"}." msgstr "Die Vorgabe ist @samp{\"10.8.0.0 255.255.255.0\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28553 +#: guix-git/doc/guix.texi:28890 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} cidr6 server-ipv6" msgstr "{@code{openvpn-server-configuration}-Parameter} cidr6 server-ipv6" #. type: deftypevr -#: guix-git/doc/guix.texi:28555 +#: guix-git/doc/guix.texi:28892 msgid "A CIDR notation specifying the IPv6 subnet inside the virtual network." msgstr "Eine CIDR-Notation, mit der das IPv6-Subnetz im virtuellen Netzwerk angegeben wird." #. type: deftypevr -#: guix-git/doc/guix.texi:28560 +#: guix-git/doc/guix.texi:28897 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string dh" msgstr "{@code{openvpn-server-configuration}-Parameter} Zeichenkette dh" #. type: deftypevr -#: guix-git/doc/guix.texi:28562 +#: guix-git/doc/guix.texi:28899 msgid "The Diffie-Hellman parameters file." msgstr "Die Datei mit den Diffie-Hellman-Parametern." #. type: deftypevr -#: guix-git/doc/guix.texi:28564 +#: guix-git/doc/guix.texi:28901 msgid "Defaults to @samp{\"/etc/openvpn/dh2048.pem\"}." msgstr "Die Vorgabe ist @samp{\"/etc/openvpn/dh2048.pem\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28567 +#: guix-git/doc/guix.texi:28904 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string ifconfig-pool-persist" msgstr "{@code{openvpn-server-configuration}-Parameter} Zeichenkette ifconfig-pool-persist" #. type: deftypevr -#: guix-git/doc/guix.texi:28569 +#: guix-git/doc/guix.texi:28906 msgid "The file that records client IPs." msgstr "Die Datei, in der Client-IPs eingetragen werden." #. type: deftypevr -#: guix-git/doc/guix.texi:28571 +#: guix-git/doc/guix.texi:28908 msgid "Defaults to @samp{\"/etc/openvpn/ipp.txt\"}." msgstr "Die Vorgabe ist @samp{\"/etc/openvpn/ipp.txt\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28574 +#: guix-git/doc/guix.texi:28911 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} gateway redirect-gateway?" msgstr "{@code{openvpn-server-configuration}-Parameter} Zugang redirect-gateway?" #. type: deftypevr -#: guix-git/doc/guix.texi:28576 +#: guix-git/doc/guix.texi:28913 msgid "When true, the server will act as a gateway for its clients." msgstr "Wenn dies auf wahr steht, fungiert der Server als Zugang („Gateway“) für seine Clients." #. type: deftypevr -#: guix-git/doc/guix.texi:28581 +#: guix-git/doc/guix.texi:28918 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean client-to-client?" msgstr "{@code{openvpn-server-configuration}-Parameter} Boolescher-Ausdruck client-to-client?" #. type: deftypevr -#: guix-git/doc/guix.texi:28583 +#: guix-git/doc/guix.texi:28920 msgid "When true, clients are allowed to talk to each other inside the VPN." msgstr "Wenn dies auf wahr steht, ist es zugelassen, dass Clients untereinander innerhalb des VPNs kommunizieren." #. type: deftypevr -#: guix-git/doc/guix.texi:28588 +#: guix-git/doc/guix.texi:28925 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} keepalive keepalive" msgstr "{@code{openvpn-server-configuration}-Parameter} Aufrechterhaltung keepalive" #. type: deftypevr -#: guix-git/doc/guix.texi:28594 +#: guix-git/doc/guix.texi:28931 msgid "Causes ping-like messages to be sent back and forth over the link so that each side knows when the other side has gone down. @code{keepalive} requires a pair. The first element is the period of the ping sending, and the second element is the timeout before considering the other side down." msgstr "Lässt ping-artige Nachrichtigen in beide Richtungen über die Leitung übertragen, damit beide Seiten bemerken, wenn der Kommunikationspartner offline geht. Für @code{keepalive} muss ein Paar angegeben werden. Das erste Element ist die Periode, nach der das Pingsignal wieder gesendet werden soll, und das zweite ist eine Zeitbegrenzung, in der eines ankommen muss, damit die andere Seite nicht als offline gilt." #. type: deftypevr -#: guix-git/doc/guix.texi:28597 +#: guix-git/doc/guix.texi:28934 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number max-clients" msgstr "{@code{openvpn-server-configuration}-Parameter} Zahl max-clients" #. type: deftypevr -#: guix-git/doc/guix.texi:28599 +#: guix-git/doc/guix.texi:28936 msgid "The maximum number of clients." msgstr "Wie viele Clients es höchstens geben kann." #. type: deftypevr -#: guix-git/doc/guix.texi:28604 +#: guix-git/doc/guix.texi:28941 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string status" msgstr "{@code{openvpn-server-configuration}-Parameter} Zeichenkette status" #. type: deftypevr -#: guix-git/doc/guix.texi:28607 +#: guix-git/doc/guix.texi:28944 msgid "The status file. This file shows a small report on current connection. It is truncated and rewritten every minute." msgstr "Die Datei für einen Zustandsbericht („Status File“). Diese Datei enthält einen kurzen Bericht über die momentane Verbindung. Sie wird jede Minute gekürzt und neu geschrieben." #. type: deftypevr -#: guix-git/doc/guix.texi:28609 +#: guix-git/doc/guix.texi:28946 msgid "Defaults to @samp{\"/var/run/openvpn/status\"}." msgstr "Die Vorgabe ist @samp{\"/var/run/openvpn/status\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28612 +#: guix-git/doc/guix.texi:28949 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} openvpn-ccd-list client-config-dir" msgstr "{@code{openvpn-server-configuration}-Parameter} „openvpn-ccd-configuration“-Liste client-config-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:28614 +#: guix-git/doc/guix.texi:28951 msgid "The list of configuration for some clients." msgstr "Die Liste der Konfigurationen für einige Clients." #. type: deftypevr -#: guix-git/doc/guix.texi:28618 +#: guix-git/doc/guix.texi:28955 msgid "Available @code{openvpn-ccd-configuration} fields are:" msgstr "Verfügbare @code{openvpn-ccd-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:28619 +#: guix-git/doc/guix.texi:28956 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} string name" msgstr "{@code{openvpn-ccd-configuration}-Parameter} Zeichenkette name" #. type: deftypevr -#: guix-git/doc/guix.texi:28621 +#: guix-git/doc/guix.texi:28958 msgid "Client name." msgstr "Der Client-Name." #. type: deftypevr -#: guix-git/doc/guix.texi:28623 +#: guix-git/doc/guix.texi:28960 msgid "Defaults to @samp{\"client\"}." msgstr "Die Vorgabe ist @samp{\"client\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28626 +#: guix-git/doc/guix.texi:28963 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} ip-mask iroute" msgstr "{@code{openvpn-ccd-configuration}-Parameter} IP-und-Maske iroute" #. type: deftypevr -#: guix-git/doc/guix.texi:28628 +#: guix-git/doc/guix.texi:28965 msgid "Client own network" msgstr "Das eigene Netzwerk des Clients." #. type: deftypevr -#: guix-git/doc/guix.texi:28633 +#: guix-git/doc/guix.texi:28970 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} ip-mask ifconfig-push" msgstr "{@code{openvpn-ccd-configuration}-Parameter} IP-und-Maske ifconfig-push" #. type: deftypevr -#: guix-git/doc/guix.texi:28635 +#: guix-git/doc/guix.texi:28972 msgid "Client VPN IP." msgstr "VPN-IP-Adresse des Clients." #. type: subheading -#: guix-git/doc/guix.texi:28644 +#: guix-git/doc/guix.texi:28981 #, no-wrap msgid "strongSwan" msgstr "strongSwan" #. type: Plain text -#: guix-git/doc/guix.texi:28648 +#: guix-git/doc/guix.texi:28985 msgid "Currently, the strongSwan service only provides legacy-style configuration with @file{ipsec.conf} and @file{ipsec.secrets} files." msgstr "Derzeit unterstützt der strongSwan-Dienst nur die alte Art der Konfiguration über die Dateien @file{ipsec.conf} und @file{ipsec.secrets}." #. type: defvr -#: guix-git/doc/guix.texi:28649 +#: guix-git/doc/guix.texi:28986 #, no-wrap msgid "{Scheme Variable} strongswan-service-type" msgstr "{Scheme-Variable} strongswan-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28653 +#: guix-git/doc/guix.texi:28990 msgid "A service type for configuring strongSwan for IPsec @acronym{VPN, Virtual Private Networking}. Its value must be a @code{strongswan-configuration} record as in this example:" msgstr "Ein Diensttyp, um mit strongSwan @acronym{VPN, Virtual Private Networking} über IPsec einzurichten. Als Wert muss ein @code{strongswan-configuration}-Verbundsobjekt angegeben werden, wie im folgenden Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:28659 +#: guix-git/doc/guix.texi:28996 #, no-wrap msgid "" "(service strongswan-service-type\n" @@ -53772,68 +54457,68 @@ msgstr "" " (ipsec-secrets \"/etc/ipsec.secrets\")))\n" #. type: deftp -#: guix-git/doc/guix.texi:28663 +#: guix-git/doc/guix.texi:29000 #, no-wrap msgid "{Data Type} strongswan-configuration" msgstr "{Datentyp} strongswan-configuration" #. type: deftp -#: guix-git/doc/guix.texi:28665 +#: guix-git/doc/guix.texi:29002 msgid "Data type representing the configuration of the StrongSwan service." msgstr "Der Datentyp, der die Konfiguration des strongSwan-Dienstes repräsentiert." #. type: code{#1} -#: guix-git/doc/guix.texi:28667 +#: guix-git/doc/guix.texi:29004 #, no-wrap msgid "strongswan" msgstr "strongswan" #. type: table -#: guix-git/doc/guix.texi:28669 +#: guix-git/doc/guix.texi:29006 msgid "The strongSwan package to use for this service." msgstr "Das strongSwan-Paket, was für diesen Dienst benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:28670 +#: guix-git/doc/guix.texi:29007 #, no-wrap msgid "@code{ipsec-conf} (default: @code{#f})" msgstr "@code{ipsec-conf} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28673 +#: guix-git/doc/guix.texi:29010 msgid "The file name of your @file{ipsec.conf}. If not @code{#f}, then this and @code{ipsec-secrets} must both be strings." msgstr "Der Dateiname Ihrer @file{ipsec.conf}. Wenn es wahr ist, muss hierfür und für @code{ipsec-secrets} jeweils eine Zeichenkette angegeben werden." #. type: item -#: guix-git/doc/guix.texi:28674 +#: guix-git/doc/guix.texi:29011 #, no-wrap msgid "@code{ipsec-secrets} (default @code{#f})" msgstr "@code{ipsec-secrets} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28677 +#: guix-git/doc/guix.texi:29014 msgid "The file name of your @file{ipsec.secrets}. If not @code{#f}, then this and @code{ipsec-conf} must both be strings." msgstr "Der Dateiname Ihrer @file{ipsec.secrets}. Wenn es wahr ist, muss hierfür und für @code{ipsec-conf} jeweils eine Zeichenkette angegeben werden." #. type: subsubheading -#: guix-git/doc/guix.texi:28681 +#: guix-git/doc/guix.texi:29018 #, no-wrap msgid "Wireguard" msgstr "Wireguard" #. type: defvr -#: guix-git/doc/guix.texi:28683 +#: guix-git/doc/guix.texi:29020 #, no-wrap msgid "{Scheme Variable} wireguard-service-type" msgstr "{Scheme-Variable} wireguard-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28686 +#: guix-git/doc/guix.texi:29023 msgid "A service type for a Wireguard tunnel interface. Its value must be a @code{wireguard-configuration} record as in this example:" msgstr "Ein Diensttyp für eine Schnittstelle über einen Wireguard-Tunnel. Sein Wert muss ein @code{wireguard-configuration}-Verbundsobjekt wie in diesem Beispiel sein:" #. type: lisp -#: guix-git/doc/guix.texi:28697 +#: guix-git/doc/guix.texi:29034 #, no-wrap msgid "" "(service wireguard-service-type\n" @@ -53857,250 +54542,250 @@ msgstr "" " (allowed-ips '(\"10.0.0.2/32\")))))))\n" #. type: deftp -#: guix-git/doc/guix.texi:28701 +#: guix-git/doc/guix.texi:29038 #, no-wrap msgid "{Data Type} wireguard-configuration" msgstr "{Datentyp} wireguard-configuration" #. type: deftp -#: guix-git/doc/guix.texi:28703 +#: guix-git/doc/guix.texi:29040 msgid "Data type representing the configuration of the Wireguard service." msgstr "Der Datentyp, der die Konfiguration des Wireguard-Dienstes repräsentiert." #. type: code{#1} -#: guix-git/doc/guix.texi:28705 +#: guix-git/doc/guix.texi:29042 #, no-wrap msgid "wireguard" msgstr "wireguard" #. type: table -#: guix-git/doc/guix.texi:28707 +#: guix-git/doc/guix.texi:29044 msgid "The wireguard package to use for this service." msgstr "Das Wireguard-Paket, was für diesen Dienst benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:28708 +#: guix-git/doc/guix.texi:29045 #, no-wrap msgid "@code{interface} (default: @code{\"wg0\"})" msgstr "@code{interface} (Vorgabe: @code{\"wg0\"})" #. type: table -#: guix-git/doc/guix.texi:28710 +#: guix-git/doc/guix.texi:29047 msgid "The interface name for the VPN." msgstr "Der Name der VPN-Schnittstelle." #. type: item -#: guix-git/doc/guix.texi:28711 +#: guix-git/doc/guix.texi:29048 #, no-wrap msgid "@code{addresses} (default: @code{'(\"10.0.0.1/32\")})" msgstr "@code{addresses} (Vorgabe: @code{'(\"10.0.0.1/32\")})" #. type: table -#: guix-git/doc/guix.texi:28713 +#: guix-git/doc/guix.texi:29050 msgid "The IP addresses to be assigned to the above interface." msgstr "Welche IP-Adressen obiger Schnittstelle zugeordnet werden." #. type: item -#: guix-git/doc/guix.texi:28714 +#: guix-git/doc/guix.texi:29051 #, no-wrap msgid "@code{port} (default: @code{51820})" msgstr "@code{port} (Vorgabe: @code{51820})" #. type: table -#: guix-git/doc/guix.texi:28716 +#: guix-git/doc/guix.texi:29053 msgid "The port on which to listen for incoming connections." msgstr "Auf welchem Port auf eingehende Verbindungen gelauscht werden soll." #. type: item -#: guix-git/doc/guix.texi:28717 +#: guix-git/doc/guix.texi:29054 #, no-wrap msgid "@code{dns} (default: @code{#f})" msgstr "@code{dns} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28719 +#: guix-git/doc/guix.texi:29056 msgid "The DNS server(s) to announce to VPN clients via DHCP." msgstr "Die DNS-Server, die den VPN-Clients per DHCP mitgeteilt werden." #. type: item -#: guix-git/doc/guix.texi:28720 +#: guix-git/doc/guix.texi:29057 #, no-wrap msgid "@code{private-key} (default: @code{\"/etc/wireguard/private.key\"})" msgstr "@code{private-key} (Vorgabe: @code{\"/etc/wireguard/private.key\"})" #. type: table -#: guix-git/doc/guix.texi:28723 +#: guix-git/doc/guix.texi:29060 msgid "The private key file for the interface. It is automatically generated if the file does not exist." msgstr "Die Datei mit dem privaten Schlüssel für die Schnittstelle. Wenn die angegebene Datei nicht existiert, wird sie automatisch erzeugt." #. type: item -#: guix-git/doc/guix.texi:28724 +#: guix-git/doc/guix.texi:29061 #, no-wrap msgid "@code{peers} (default: @code{'()})" msgstr "@code{peers} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:28727 +#: guix-git/doc/guix.texi:29064 msgid "The authorized peers on this interface. This is a list of @var{wireguard-peer} records." msgstr "Die zugelassenen Netzwerkteilnehmer auf dieser Schnittstelle. Dies ist eine Liste von @var{wireguard-peer}-Verbundsobjekten." #. type: deftp -#: guix-git/doc/guix.texi:28731 +#: guix-git/doc/guix.texi:29068 #, no-wrap msgid "{Data Type} wireguard-peer" msgstr "{Datentyp} wireguard-peer" #. type: deftp -#: guix-git/doc/guix.texi:28733 +#: guix-git/doc/guix.texi:29070 msgid "Data type representing a Wireguard peer attached to a given interface." msgstr "Der Datentyp, der einen an die angegebene Schnittstelle angeschlossenen Netzwerkteilnehmer („Peer“) repräsentiert." #. type: table -#: guix-git/doc/guix.texi:28737 +#: guix-git/doc/guix.texi:29074 msgid "The peer name." msgstr "Die Bezeichnung für den Netzwerkteilnehmer." #. type: item -#: guix-git/doc/guix.texi:28738 +#: guix-git/doc/guix.texi:29075 #, no-wrap msgid "@code{endpoint} (default: @code{#f})" msgstr "@code{endpoint} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28741 +#: guix-git/doc/guix.texi:29078 msgid "The optional endpoint for the peer, such as @code{\"demo.wireguard.com:51820\"}." msgstr "Optional der Endpunkt des Netzwerkteilnehmers, etwa @code{\"demo.wireguard.com:51820\"}." #. type: itemx -#: guix-git/doc/guix.texi:28742 guix-git/doc/guix.texi:29137 -#: guix-git/doc/guix.texi:29174 guix-git/doc/guix.texi:34305 +#: guix-git/doc/guix.texi:29079 guix-git/doc/guix.texi:29474 +#: guix-git/doc/guix.texi:29511 guix-git/doc/guix.texi:34744 #, no-wrap msgid "public-key" msgstr "public-key" #. type: table -#: guix-git/doc/guix.texi:28744 +#: guix-git/doc/guix.texi:29081 msgid "The peer public-key represented as a base64 string." msgstr "Der öffentliche Schlüssel des Netzwerkteilnehmers, dargestellt als eine base64-kodierte Zeichenkette." #. type: code{#1} -#: guix-git/doc/guix.texi:28745 +#: guix-git/doc/guix.texi:29082 #, no-wrap msgid "allowed-ips" msgstr "allowed-ips" #. type: table -#: guix-git/doc/guix.texi:28748 +#: guix-git/doc/guix.texi:29085 msgid "A list of IP addresses from which incoming traffic for this peer is allowed and to which incoming traffic for this peer is directed." msgstr "Eine Liste der IP-Adressen, von denen für diesen Netzwerkteilnehmer eingehende Kommunikation zugelassen wird und an die ausgehende Kommunikation für diesen Netzwerkteilnehmer gerichtet wird." #. type: item -#: guix-git/doc/guix.texi:28749 +#: guix-git/doc/guix.texi:29086 #, no-wrap msgid "@code{keep-alive} (default: @code{#f})" msgstr "@code{keep-alive} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28754 +#: guix-git/doc/guix.texi:29091 msgid "An optional time interval in seconds. A packet will be sent to the server endpoint once per time interval. This helps receiving incoming connections from this peer when you are behind a NAT or a firewall." msgstr "Optional ein Zeitintervall in Sekunden. Einmal pro Zeitintervall wird ein Paket an den Serverendpunkt geschickt. Das hilft beim Empfangen eingehender Verbindungen von diesem Netzwerkteilnehmer, wenn Sie nur über eine Netzwerkadressübersetzung („NAT“) oder hinter einer Firewall erreichbar sind." #. type: cindex -#: guix-git/doc/guix.texi:28760 +#: guix-git/doc/guix.texi:29097 #, no-wrap msgid "NFS" msgstr "NFS" #. type: Plain text -#: guix-git/doc/guix.texi:28765 +#: guix-git/doc/guix.texi:29102 msgid "The @code{(gnu services nfs)} module provides the following services, which are most commonly used in relation to mounting or exporting directory trees as @dfn{network file systems} (NFS)." msgstr "Das Modul @code{(gnu services nfs)} stellt die folgenden Dienste zur Verfügung, die meistens dazu benutzt werden, Verzeichnisbäume als Netzwerkdateisysteme, englisch @dfn{Network File Systems} (NFS), einzubinden oder an andere zu exportieren." #. type: Plain text -#: guix-git/doc/guix.texi:28769 +#: guix-git/doc/guix.texi:29106 msgid "While it is possible to use the individual components that together make up a Network File System service, we recommended to configure an NFS server with the @code{nfs-service-type}." msgstr "Obwohl man auch die einzelnen Komponenten eines Network-File-System-Dienstes separat einrichten kann, raten wir dazu, einen NFS-Server mittels @code{nfs-service-type} zu konfigurieren." #. type: subsubheading -#: guix-git/doc/guix.texi:28770 +#: guix-git/doc/guix.texi:29107 #, no-wrap msgid "NFS Service" msgstr "NFS-Dienst" #. type: cindex -#: guix-git/doc/guix.texi:28771 +#: guix-git/doc/guix.texi:29108 #, no-wrap msgid "NFS, server" msgstr "NFS, Server" #. type: Plain text -#: guix-git/doc/guix.texi:28776 +#: guix-git/doc/guix.texi:29113 msgid "The NFS service takes care of setting up all NFS component services, kernel configuration file systems, and installs configuration files in the locations that NFS expects." msgstr "Der NFS-Dienst sorgt dafür, dass alle NFS-Komponentendienste, die Konfiguration des NFS-Kernels und Dateisysteme eingerichtet werden, und er installiert an den von NFS erwarteten Orten Konfigurationsdateien." #. type: defvr -#: guix-git/doc/guix.texi:28777 +#: guix-git/doc/guix.texi:29114 #, no-wrap msgid "{Scheme Variable} nfs-service-type" msgstr "{Scheme-Variable} nfs-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28779 +#: guix-git/doc/guix.texi:29116 msgid "A service type for a complete NFS server." msgstr "Ein Diensttyp für einen vollständigen NFS-Server." #. type: deftp -#: guix-git/doc/guix.texi:28781 +#: guix-git/doc/guix.texi:29118 #, no-wrap msgid "{Data Type} nfs-configuration" msgstr "{Datentyp} nfs-configuration" #. type: deftp -#: guix-git/doc/guix.texi:28784 +#: guix-git/doc/guix.texi:29121 msgid "This data type represents the configuration of the NFS service and all of its subsystems." msgstr "Dieser Datentyp repräsentiert die Konfiguration des NFS-Dienstes und all seiner Subsysteme." #. type: deftp -#: guix-git/doc/guix.texi:28786 +#: guix-git/doc/guix.texi:29123 msgid "It has the following parameters:" msgstr "Er hat folgende Parameter:" #. type: item -#: guix-git/doc/guix.texi:28787 guix-git/doc/guix.texi:28912 -#: guix-git/doc/guix.texi:28937 +#: guix-git/doc/guix.texi:29124 guix-git/doc/guix.texi:29249 +#: guix-git/doc/guix.texi:29274 #, no-wrap msgid "@code{nfs-utils} (default: @code{nfs-utils})" msgstr "@code{nfs-utils} (Vorgabe: @code{nfs-utils})" #. type: table -#: guix-git/doc/guix.texi:28789 +#: guix-git/doc/guix.texi:29126 msgid "The nfs-utils package to use." msgstr "Das nfs-utils-Paket, was benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:28790 +#: guix-git/doc/guix.texi:29127 #, no-wrap msgid "@code{nfs-versions} (default: @code{'(\"4.2\" \"4.1\" \"4.0\")})" msgstr "@code{nfs-versions} (Vorgabe: @code{'(\"4.2\" \"4.1\" \"4.0\")})" #. type: table -#: guix-git/doc/guix.texi:28793 +#: guix-git/doc/guix.texi:29130 msgid "If a list of string values is provided, the @command{rpc.nfsd} daemon will be limited to supporting the given versions of the NFS protocol." msgstr "Wenn eine Liste von Zeichenketten angegeben wird, beschränkt sich der @command{rpc.nfsd}-Daemon auf die Unterstützung der angegebenen Versionen des NFS-Protokolls." #. type: item -#: guix-git/doc/guix.texi:28794 +#: guix-git/doc/guix.texi:29131 #, no-wrap msgid "@code{exports} (default: @code{'()})" msgstr "@code{exports} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:28799 +#: guix-git/doc/guix.texi:29136 msgid "This is a list of directories the NFS server should export. Each entry is a list consisting of two elements: a directory name and a string containing all options. This is an example in which the directory @file{/export} is served to all NFS clients as a read-only share:" msgstr "Diese Liste von Verzeichnissen soll der NFS-Server exportieren. Jeder Eintrag ist eine Liste, die zwei Elemente enthält: den Namen eines Verzeichnisses und eine Zeichenkette mit allen Optionen. Ein Beispiel, wo das Verzeichnis @file{/export} an alle NFS-Clients nur mit Lesezugriff freigegeben wird, sieht so aus:" #. type: lisp -#: guix-git/doc/guix.texi:28805 +#: guix-git/doc/guix.texi:29142 #, no-wrap msgid "" "(nfs-configuration\n" @@ -54114,384 +54799,384 @@ msgstr "" " \"*(ro,insecure,no_subtree_check,crossmnt,fsid=0)\"))))\n" #. type: item -#: guix-git/doc/guix.texi:28807 +#: guix-git/doc/guix.texi:29144 #, no-wrap msgid "@code{rpcmountd-port} (default: @code{#f})" msgstr "@code{rpcmountd-port} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28809 +#: guix-git/doc/guix.texi:29146 msgid "The network port that the @command{rpc.mountd} daemon should use." msgstr "Welchen Netzwerk-Port der @command{rpc.mountd}-Daemon benutzen soll." #. type: item -#: guix-git/doc/guix.texi:28810 +#: guix-git/doc/guix.texi:29147 #, no-wrap msgid "@code{rpcstatd-port} (default: @code{#f})" msgstr "@code{rpcstatd-port} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28812 +#: guix-git/doc/guix.texi:29149 msgid "The network port that the @command{rpc.statd} daemon should use." msgstr "Welchen Netzwerk-Port der @command{rpc.statd}-Daemon benutzen soll." #. type: item -#: guix-git/doc/guix.texi:28813 guix-git/doc/guix.texi:28861 +#: guix-git/doc/guix.texi:29150 guix-git/doc/guix.texi:29198 #, no-wrap msgid "@code{rpcbind} (default: @code{rpcbind})" msgstr "@code{rpcbind} (Vorgabe: @code{rpcbind})" #. type: table -#: guix-git/doc/guix.texi:28815 guix-git/doc/guix.texi:28863 +#: guix-git/doc/guix.texi:29152 guix-git/doc/guix.texi:29200 msgid "The rpcbind package to use." msgstr "Das rpcbind-Paket, das benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:28816 +#: guix-git/doc/guix.texi:29153 #, no-wrap msgid "@code{idmap-domain} (default: @code{\"localdomain\"})" msgstr "@code{idmap-domain} (Vorgabe: @code{\"localdomain\"})" #. type: table -#: guix-git/doc/guix.texi:28818 +#: guix-git/doc/guix.texi:29155 msgid "The local NFSv4 domain name." msgstr "Der lokale NFSv4-Domainname." #. type: item -#: guix-git/doc/guix.texi:28819 +#: guix-git/doc/guix.texi:29156 #, no-wrap msgid "@code{nfsd-port} (default: @code{2049})" msgstr "@code{nfsd-port} (Vorgabe: @code{2049})" #. type: table -#: guix-git/doc/guix.texi:28821 +#: guix-git/doc/guix.texi:29158 msgid "The network port that the @command{nfsd} daemon should use." msgstr "Welchen Netzwerk-Port der @command{nfsd}-Daemon benutzen soll." #. type: item -#: guix-git/doc/guix.texi:28822 +#: guix-git/doc/guix.texi:29159 #, no-wrap msgid "@code{nfsd-threads} (default: @code{8})" msgstr "@code{nfsd-threads} (Vorgabe: @code{8})" #. type: table -#: guix-git/doc/guix.texi:28824 +#: guix-git/doc/guix.texi:29161 msgid "The number of threads used by the @command{nfsd} daemon." msgstr "Wie viele Threads der @command{rpc.statd}-Daemon benutzen soll." #. type: item -#: guix-git/doc/guix.texi:28825 +#: guix-git/doc/guix.texi:29162 #, no-wrap msgid "@code{nfsd-tcp?} (default: @code{#t})" msgstr "@code{nfsd-tcp?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:28827 +#: guix-git/doc/guix.texi:29164 msgid "Whether the @command{nfsd} daemon should listen on a TCP socket." msgstr "Ob der @command{nfsd}-Daemon auf einem TCP-Socket lauschen soll." #. type: item -#: guix-git/doc/guix.texi:28828 +#: guix-git/doc/guix.texi:29165 #, no-wrap msgid "@code{nfsd-udp?} (default: @code{#f})" msgstr "@code{nfsd-udp?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28830 +#: guix-git/doc/guix.texi:29167 msgid "Whether the @command{nfsd} daemon should listen on a UDP socket." msgstr "Ob der @command{nfsd}-Daemon auf einem UDP-Socket lauschen soll." #. type: item -#: guix-git/doc/guix.texi:28831 guix-git/doc/guix.texi:28915 -#: guix-git/doc/guix.texi:28940 +#: guix-git/doc/guix.texi:29168 guix-git/doc/guix.texi:29252 +#: guix-git/doc/guix.texi:29277 #, no-wrap msgid "@code{pipefs-directory} (default: @code{\"/var/lib/nfs/rpc_pipefs\"})" msgstr "@code{pipefs-directory} (Vorgabe: @code{\"/var/lib/nfs/rpc_pipefs\"})" #. type: table -#: guix-git/doc/guix.texi:28833 guix-git/doc/guix.texi:28917 -#: guix-git/doc/guix.texi:28942 +#: guix-git/doc/guix.texi:29170 guix-git/doc/guix.texi:29254 +#: guix-git/doc/guix.texi:29279 msgid "The directory where the pipefs file system is mounted." msgstr "Das Verzeichnis, unter dem das Pipefs-Dateisystem eingebunden wurde." #. type: item -#: guix-git/doc/guix.texi:28834 +#: guix-git/doc/guix.texi:29171 #, no-wrap msgid "@code{debug} (default: @code{'()\"})" msgstr "@code{debug} (Vorgabe: @code{'()\"})" #. type: table -#: guix-git/doc/guix.texi:28838 +#: guix-git/doc/guix.texi:29175 msgid "A list of subsystems for which debugging output should be enabled. This is a list of symbols. Any of these symbols are valid: @code{nfsd}, @code{nfs}, @code{rpc}, @code{idmap}, @code{statd}, or @code{mountd}." msgstr "Eine Liste der Subsysteme, für die Informationen zur Fehlersuche bereitgestellt werden sollen, als Liste von Symbolen. Jedes der folgenden Symbole ist gültig: @code{nfsd}, @code{nfs}, @code{rpc}, @code{idmap}, @code{statd} oder @code{mountd}." #. type: Plain text -#: guix-git/doc/guix.texi:28843 +#: guix-git/doc/guix.texi:29180 msgid "If you don't need a complete NFS service or prefer to build it yourself you can use the individual component services that are documented below." msgstr "Wenn Sie keinen vollständigen NFS-Dienst benötigen oder ihn selbst einrichten wollen, können Sie stattdessen die im Folgenden dokumentierten Komponentendienste benutzen." #. type: subsubheading -#: guix-git/doc/guix.texi:28844 +#: guix-git/doc/guix.texi:29181 #, no-wrap msgid "RPC Bind Service" msgstr "RPC-Bind-Dienst" #. type: cindex -#: guix-git/doc/guix.texi:28845 +#: guix-git/doc/guix.texi:29182 #, no-wrap msgid "rpcbind" msgstr "rpcbind" #. type: Plain text -#: guix-git/doc/guix.texi:28851 +#: guix-git/doc/guix.texi:29188 msgid "The RPC Bind service provides a facility to map program numbers into universal addresses. Many NFS related services use this facility. Hence it is automatically started when a dependent service starts." msgstr "Mit dem RPC-Bind-Dienst können Programmnummern auf universelle Adressen abgebildet werden. Viele Dienste, die mit dem NFS zu tun haben, benutzen diese Funktion, daher wird sie automatisch gestartet, sobald ein davon abhängiger Dienst startet." #. type: defvr -#: guix-git/doc/guix.texi:28852 +#: guix-git/doc/guix.texi:29189 #, no-wrap msgid "{Scheme Variable} rpcbind-service-type" msgstr "{Scheme-Variable} rpcbind-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28854 +#: guix-git/doc/guix.texi:29191 msgid "A service type for the RPC portmapper daemon." msgstr "Ein Diensttyp für den RPC-Portplaner-Daemon („Portmapper“)." #. type: deftp -#: guix-git/doc/guix.texi:28857 +#: guix-git/doc/guix.texi:29194 #, no-wrap msgid "{Data Type} rpcbind-configuration" msgstr "{Datentyp} rpcbind-configuration" #. type: deftp -#: guix-git/doc/guix.texi:28860 +#: guix-git/doc/guix.texi:29197 msgid "Data type representing the configuration of the RPC Bind Service. This type has the following parameters:" msgstr "Datentyp, der die Konfiguration des RPC-Bind-Dienstes repräsentiert. Dieser Typ verfügt über die folgenden Parameter:" #. type: item -#: guix-git/doc/guix.texi:28864 +#: guix-git/doc/guix.texi:29201 #, no-wrap msgid "@code{warm-start?} (default: @code{#t})" msgstr "@code{warm-start?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:28868 +#: guix-git/doc/guix.texi:29205 msgid "If this parameter is @code{#t}, then the daemon will read a state file on startup thus reloading state information saved by a previous instance." msgstr "Wenn dieser Parameter @code{#t} ist, wird der Daemon beim Starten eine Zustandsdatei („State File“) lesen, aus der er die von der vorherigen Instanz gespeicherten Zustandsinformationen wiederherstellt." #. type: subsubheading -#: guix-git/doc/guix.texi:28872 +#: guix-git/doc/guix.texi:29209 #, no-wrap msgid "Pipefs Pseudo File System" msgstr "Pipefs-Pseudodateisystem" #. type: cindex -#: guix-git/doc/guix.texi:28873 +#: guix-git/doc/guix.texi:29210 #, no-wrap msgid "pipefs" msgstr "pipefs" #. type: cindex -#: guix-git/doc/guix.texi:28874 +#: guix-git/doc/guix.texi:29211 #, no-wrap msgid "rpc_pipefs" msgstr "rpc_pipefs" #. type: Plain text -#: guix-git/doc/guix.texi:28878 +#: guix-git/doc/guix.texi:29215 msgid "The pipefs file system is used to transfer NFS related data between the kernel and user space programs." msgstr "Mit dem Pipefs-Dateisystem können NFS-bezogene Daten zwischen dem Kernel und Programmen auf der Anwendungsebene (dem „User Space“) übertragen werden." #. type: defvr -#: guix-git/doc/guix.texi:28879 +#: guix-git/doc/guix.texi:29216 #, no-wrap msgid "{Scheme Variable} pipefs-service-type" msgstr "{Scheme-Variable} pipefs-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28881 +#: guix-git/doc/guix.texi:29218 msgid "A service type for the pipefs pseudo file system." msgstr "Ein Diensttyp für das Pseudodateisystem „Pipefs“." #. type: deftp -#: guix-git/doc/guix.texi:28883 +#: guix-git/doc/guix.texi:29220 #, no-wrap msgid "{Data Type} pipefs-configuration" msgstr "{Datentyp} pipefs-configuration" #. type: deftp -#: guix-git/doc/guix.texi:28886 +#: guix-git/doc/guix.texi:29223 msgid "Data type representing the configuration of the pipefs pseudo file system service. This type has the following parameters:" msgstr "Datentyp, der die Konfiguration des Pipefs-Pseudodateisystemdienstes repräsentiert. Dieser Typ verfügt über die folgenden Parameter:" #. type: item -#: guix-git/doc/guix.texi:28887 +#: guix-git/doc/guix.texi:29224 #, no-wrap msgid "@code{mount-point} (default: @code{\"/var/lib/nfs/rpc_pipefs\"})" msgstr "@code{mount-point} (Vorgabe: @code{\"/var/lib/nfs/rpc_pipefs\"})" #. type: table -#: guix-git/doc/guix.texi:28889 +#: guix-git/doc/guix.texi:29226 msgid "The directory to which the file system is to be attached." msgstr "Das Verzeichnis, unter dem das Dateisystem eingebunden werden soll." #. type: subsubheading -#: guix-git/doc/guix.texi:28893 +#: guix-git/doc/guix.texi:29230 #, no-wrap msgid "GSS Daemon Service" msgstr "GSS-Daemon-Dienst" #. type: cindex -#: guix-git/doc/guix.texi:28894 +#: guix-git/doc/guix.texi:29231 #, no-wrap msgid "GSSD" msgstr "GSSD" #. type: cindex -#: guix-git/doc/guix.texi:28895 +#: guix-git/doc/guix.texi:29232 #, no-wrap msgid "GSS" msgstr "GSS" #. type: cindex -#: guix-git/doc/guix.texi:28896 +#: guix-git/doc/guix.texi:29233 #, no-wrap msgid "global security system" msgstr "Global Security System" #. type: Plain text -#: guix-git/doc/guix.texi:28903 +#: guix-git/doc/guix.texi:29240 msgid "The @dfn{global security system} (GSS) daemon provides strong security for RPC based protocols. Before exchanging RPC requests an RPC client must establish a security context. Typically this is done using the Kerberos command @command{kinit} or automatically at login time using PAM services (@pxref{Kerberos Services})." msgstr "Der Daemon des @dfn{Global Security System} (GSS) ermöglicht starke Informationssicherheit für RPC-basierte Protokolle. Vor dem Austausch von Anfragen über entfernte Prozeduraufrufe („Remote Procedure Calls“, kurz RPC) muss ein RPC-Client einen Sicherheitskontext („Security Context“) herstellen. Typischerweise wird dazu der @command{kinit}-Befehl von Kerberos benutzt, oder er wird automatisch bei der Anmeldung über PAM-Dienste hergestellt (siehe @ref{Kerberos Services})." #. type: defvr -#: guix-git/doc/guix.texi:28904 +#: guix-git/doc/guix.texi:29241 #, no-wrap msgid "{Scheme Variable} gss-service-type" msgstr "{Scheme-Variable} gss-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28906 +#: guix-git/doc/guix.texi:29243 msgid "A service type for the Global Security System (GSS) daemon." msgstr "Ein Diensttyp für den Daemon des Global Security System (GSS)." #. type: deftp -#: guix-git/doc/guix.texi:28908 +#: guix-git/doc/guix.texi:29245 #, no-wrap msgid "{Data Type} gss-configuration" msgstr "{Datentyp} gss-configuration" #. type: deftp -#: guix-git/doc/guix.texi:28911 +#: guix-git/doc/guix.texi:29248 msgid "Data type representing the configuration of the GSS daemon service. This type has the following parameters:" msgstr "Datentyp, der die Konfiguration des GSS-Daemon-Dienstes repräsentiert. Dieser Typ verfügt über die folgenden Parameter:" #. type: table -#: guix-git/doc/guix.texi:28914 +#: guix-git/doc/guix.texi:29251 msgid "The package in which the @command{rpc.gssd} command is to be found." msgstr "Das Paket, in dem der Befehl @command{rpc.gssd} gesucht werden soll." #. type: subsubheading -#: guix-git/doc/guix.texi:28922 +#: guix-git/doc/guix.texi:29259 #, no-wrap msgid "IDMAP Daemon Service" msgstr "IDMAP-Daemon-Dienst" #. type: cindex -#: guix-git/doc/guix.texi:28923 +#: guix-git/doc/guix.texi:29260 #, no-wrap msgid "idmapd" msgstr "idmapd" #. type: cindex -#: guix-git/doc/guix.texi:28924 +#: guix-git/doc/guix.texi:29261 #, no-wrap msgid "name mapper" msgstr "Name-Mapper" #. type: Plain text -#: guix-git/doc/guix.texi:28928 +#: guix-git/doc/guix.texi:29265 msgid "The idmap daemon service provides mapping between user IDs and user names. Typically it is required in order to access file systems mounted via NFSv4." msgstr "Der idmap-Daemon-Dienst ermöglicht eine Abbildung zwischen Benutzeridentifikatoren und Benutzernamen. Er wird in der Regel dafür benötigt, auf über NFSv4 eingebundene Dateisysteme zuzugreifen." #. type: defvr -#: guix-git/doc/guix.texi:28929 +#: guix-git/doc/guix.texi:29266 #, no-wrap msgid "{Scheme Variable} idmap-service-type" msgstr "{Scheme-Variable} idmap-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28931 +#: guix-git/doc/guix.texi:29268 msgid "A service type for the Identity Mapper (IDMAP) daemon." msgstr "Ein Diensttyp für den Identity-Mapper-Daemon (IDMAP)." #. type: deftp -#: guix-git/doc/guix.texi:28933 +#: guix-git/doc/guix.texi:29270 #, no-wrap msgid "{Data Type} idmap-configuration" msgstr "{Datentyp} idmap-configuration" #. type: deftp -#: guix-git/doc/guix.texi:28936 +#: guix-git/doc/guix.texi:29273 msgid "Data type representing the configuration of the IDMAP daemon service. This type has the following parameters:" msgstr "Datentyp, der die Konfiguration des IDMAP-Daemon-Dienstes repräsentiert. Dieser Typ verfügt über die folgenden Parameter:" #. type: table -#: guix-git/doc/guix.texi:28939 +#: guix-git/doc/guix.texi:29276 msgid "The package in which the @command{rpc.idmapd} command is to be found." msgstr "Das Paket, in dem der Befehl @command{rpc.idmapd} gesucht werden soll." #. type: item -#: guix-git/doc/guix.texi:28943 +#: guix-git/doc/guix.texi:29280 #, no-wrap msgid "@code{domain} (default: @code{#f})" msgstr "@code{domain} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28947 +#: guix-git/doc/guix.texi:29284 msgid "The local NFSv4 domain name. This must be a string or @code{#f}. If it is @code{#f} then the daemon will use the host's fully qualified domain name." msgstr "Der lokale NFSv4-Domain-Name. Für ihn muss eine Zeichenkette oder @code{#f} angegeben werden. Wenn @code{#f} angegeben wird, benutzt der Daemon den vollständigen Domain-Namen („Fully Qualified Domain Name“) des Rechners." #. type: item -#: guix-git/doc/guix.texi:28948 +#: guix-git/doc/guix.texi:29285 #, no-wrap msgid "@code{verbosity} (default: @code{0})" msgstr "@code{verbosity} (Vorgabe: @code{0})" #. type: table -#: guix-git/doc/guix.texi:28950 +#: guix-git/doc/guix.texi:29287 msgid "The verbosity level of the daemon." msgstr "Die Ausführlichkeitsstufe des Daemons." #. type: Plain text -#: guix-git/doc/guix.texi:28961 +#: guix-git/doc/guix.texi:29298 msgid "@uref{https://guix.gnu.org/cuirass/, Cuirass} is a continuous integration tool for Guix. It can be used both for development and for providing substitutes to others (@pxref{Substitutes})." msgstr "@uref{https://guix.gnu.org/cuirass/, Cuirass} ist ein Werkzeug zur kontinuierlichen Integration für Guix. Es kann sowohl bei der Entwicklung helfen als auch beim Anbieten von Substituten für andere (siehe @ref{Substitutes})." #. type: Plain text -#: guix-git/doc/guix.texi:28963 +#: guix-git/doc/guix.texi:29300 msgid "The @code{(gnu services cuirass)} module provides the following service." msgstr "Das Modul @code{(gnu services cuirass)} stellt den folgenden Dienst zur Verfügung:" #. type: defvr -#: guix-git/doc/guix.texi:28964 +#: guix-git/doc/guix.texi:29301 #, no-wrap msgid "{Scheme Procedure} cuirass-service-type" msgstr "{Scheme-Prozedur} cuirass-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28967 +#: guix-git/doc/guix.texi:29304 msgid "The type of the Cuirass service. Its value must be a @code{cuirass-configuration} object, as described below." msgstr "Der Diensttyp des Cuirass-Dienstes. Sein Wert muss ein @code{cuirass-configuration}-Verbundsobjekt sein, wie im Folgenden beschrieben." #. type: Plain text -#: guix-git/doc/guix.texi:28972 +#: guix-git/doc/guix.texi:29309 msgid "To add build jobs, you have to set the @code{specifications} field of the configuration. For instance, the following example will build all the packages provided by the @code{my-channel} channel." msgstr "Um Erstellungsaufträge („Build Jobs“) hinzuzufügen, müssen Sie sie im @code{specifications}-Feld der Konfiguration eintragen. Mit dem folgenden Beispiel würden alle Pakete aus dem Kanal @code{my-channel} erstellt." #. type: lisp -#: guix-git/doc/guix.texi:28983 +#: guix-git/doc/guix.texi:29320 #, no-wrap msgid "" "(define %cuirass-specs\n" @@ -54517,7 +55202,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:28987 guix-git/doc/guix.texi:29001 +#: guix-git/doc/guix.texi:29324 guix-git/doc/guix.texi:29338 #, no-wrap msgid "" "(service cuirass-service-type\n" @@ -54529,12 +55214,12 @@ msgstr "" " (specifications %cuirass-specs)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:28991 +#: guix-git/doc/guix.texi:29328 msgid "To build the @code{linux-libre} package defined by the default Guix channel, one can use the following configuration." msgstr "Um das Paket @code{linux-libre}, das im vorgegebenen Guix-Kanal definiert ist, zu erstellen, schreibe man die folgende Konfiguration." #. type: lisp -#: guix-git/doc/guix.texi:28997 +#: guix-git/doc/guix.texi:29334 #, no-wrap msgid "" "(define %cuirass-specs\n" @@ -54550,572 +55235,572 @@ msgstr "" "\n" #. type: Plain text -#: guix-git/doc/guix.texi:29006 +#: guix-git/doc/guix.texi:29343 msgid "The other configuration possibilities, as well as the specification record itself are described in the Cuirass manual (@pxref{Specifications,,, cuirass, Cuirass})." msgstr "Für eine Beschreibung der anderen Konfigurationsmöglichkeiten und des Spezifikations-Verbundsobjektes selbst, siehe das @ref{Specifications,,, cuirass, Handbuch zu Cuirass}." #. type: Plain text -#: guix-git/doc/guix.texi:29010 +#: guix-git/doc/guix.texi:29347 msgid "While information related to build jobs is located directly in the specifications, global settings for the @command{cuirass} process are accessible in other @code{cuirass-configuration} fields." msgstr "Die Informationen, die sich auf Erstellungsaufträge beziehen, werden direkt in deren Spezifikation festgelegt, aber globale Einstellungen des @command{cuirass}-Prozesses sind über andere Felder der @code{cuirass-configuration} zugänglich." #. type: deftp -#: guix-git/doc/guix.texi:29011 +#: guix-git/doc/guix.texi:29348 #, no-wrap msgid "{Data Type} cuirass-configuration" msgstr "{Datentyp} cuirass-configuration" #. type: deftp -#: guix-git/doc/guix.texi:29013 +#: guix-git/doc/guix.texi:29350 msgid "Data type representing the configuration of Cuirass." msgstr "Datentyp, der die Konfiguration von Cuirass repräsentiert." #. type: item -#: guix-git/doc/guix.texi:29015 guix-git/doc/guix.texi:29152 +#: guix-git/doc/guix.texi:29352 guix-git/doc/guix.texi:29489 #, no-wrap msgid "@code{cuirass} (default: @code{cuirass})" msgstr "@code{cuirass} (Vorgabe: @code{cuirass})" #. type: table -#: guix-git/doc/guix.texi:29017 guix-git/doc/guix.texi:29154 +#: guix-git/doc/guix.texi:29354 guix-git/doc/guix.texi:29491 msgid "The Cuirass package to use." msgstr "Das Cuirass-Paket, das benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:29018 +#: guix-git/doc/guix.texi:29355 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass.log\"})" msgstr "@code{log-file} (Vorgabe: @code{\"/var/log/cuirass.log\"})" #. type: table -#: guix-git/doc/guix.texi:29020 guix-git/doc/guix.texi:29124 -#: guix-git/doc/guix.texi:29167 +#: guix-git/doc/guix.texi:29357 guix-git/doc/guix.texi:29461 +#: guix-git/doc/guix.texi:29504 msgid "Location of the log file." msgstr "An welchen Ort die Protokolldatei geschrieben wird." #. type: item -#: guix-git/doc/guix.texi:29021 +#: guix-git/doc/guix.texi:29358 #, no-wrap msgid "@code{web-log-file} (default: @code{\"/var/log/cuirass-web.log\"})" msgstr "@code{web-log-file} (Vorgabe: @code{\"/var/log/cuirass-web.log\"})" #. type: table -#: guix-git/doc/guix.texi:29023 +#: guix-git/doc/guix.texi:29360 msgid "Location of the log file used by the web interface." msgstr "An welchem Ort die Protokolldatei der Weboberfläche gespeichert wird." #. type: item -#: guix-git/doc/guix.texi:29024 +#: guix-git/doc/guix.texi:29361 #, no-wrap msgid "@code{cache-directory} (default: @code{\"/var/cache/cuirass\"})" msgstr "@code{cache-directory} (Vorgabe: @code{\"/var/cache/cuirass\"})" #. type: table -#: guix-git/doc/guix.texi:29026 +#: guix-git/doc/guix.texi:29363 msgid "Location of the repository cache." msgstr "Ort, wo Repositorys zwischengespeichert werden." #. type: item -#: guix-git/doc/guix.texi:29027 +#: guix-git/doc/guix.texi:29364 #, no-wrap msgid "@code{user} (default: @code{\"cuirass\"})" msgstr "@code{user} (Vorgabe: @code{\"cuirass\"})" #. type: table -#: guix-git/doc/guix.texi:29029 +#: guix-git/doc/guix.texi:29366 msgid "Owner of the @code{cuirass} process." msgstr "Besitzer des @code{cuirass}-Prozesses." #. type: item -#: guix-git/doc/guix.texi:29030 +#: guix-git/doc/guix.texi:29367 #, no-wrap msgid "@code{group} (default: @code{\"cuirass\"})" msgstr "@code{group} (Vorgabe: @code{\"cuirass\"})" #. type: table -#: guix-git/doc/guix.texi:29032 +#: guix-git/doc/guix.texi:29369 msgid "Owner's group of the @code{cuirass} process." msgstr "Gruppe des Besitzers des @code{cuirass}-Prozesses." #. type: item -#: guix-git/doc/guix.texi:29033 +#: guix-git/doc/guix.texi:29370 #, no-wrap msgid "@code{interval} (default: @code{60})" msgstr "@code{interval} (Vorgabe: @code{60})" #. type: table -#: guix-git/doc/guix.texi:29036 +#: guix-git/doc/guix.texi:29373 msgid "Number of seconds between the poll of the repositories followed by the Cuirass jobs." msgstr "Anzahl der Sekunden, bevor ein Repository wieder neu geladen wird und danach Cuirass-Aufträge behandelt werden." #. type: item -#: guix-git/doc/guix.texi:29037 +#: guix-git/doc/guix.texi:29374 #, no-wrap msgid "@code{parameters} (default: @code{#f})" msgstr "@code{parameters} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29040 +#: guix-git/doc/guix.texi:29377 msgid "Read parameters from the given @var{parameters} file. The supported parameters are described here (@pxref{Parameters,,, cuirass, Cuirass})." msgstr "Parameter aus der angegebenen Parameterdatei lesen. Die unterstützten Parameter werden im @ref{Parameters,,, cuirass, Cuirass-Handbuch} beschrieben." #. type: item -#: guix-git/doc/guix.texi:29041 +#: guix-git/doc/guix.texi:29378 #, no-wrap msgid "@code{remote-server} (default: @code{#f})" msgstr "@code{remote-server} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29044 +#: guix-git/doc/guix.texi:29381 msgid "A @code{cuirass-remote-server-configuration} record to use the build remote mechanism or @code{#f} to use the default build mechanism." msgstr "Ein @code{cuirass-remote-server-configuration}-Verbundsobjekt, um den Mechanismus für entfernte Erstellungen zu benutzen, oder @code{#f}, um den voreingestellten Erstellungsmechanismus zu benutzen." #. type: item -#: guix-git/doc/guix.texi:29045 +#: guix-git/doc/guix.texi:29382 #, no-wrap msgid "@code{database} (default: @code{\"dbname=cuirass host=/var/run/postgresql\"})" msgstr "@code{database} (Vorgabe: @code{\"dbname=cuirass host=/var/run/postgresql\"})" #. type: table -#: guix-git/doc/guix.texi:29050 +#: guix-git/doc/guix.texi:29387 msgid "Use @var{database} as the database containing the jobs and the past build results. Since Cuirass uses PostgreSQL as a database engine, @var{database} must be a string such as @code{\"dbname=cuirass host=localhost\"}." msgstr "@var{database} als die Datenbank mit den Aufträgen und bisherigen Erstellungsergebnissen benutzen. Weil Cuirass als Datenbanktreiber PostgreSQL benutzt, muss @var{database} eine Zeichenkette sein wie @code{\"dbname=cuirass host=localhost\"}." #. type: item -#: guix-git/doc/guix.texi:29051 +#: guix-git/doc/guix.texi:29388 #, no-wrap msgid "@code{port} (default: @code{8081})" msgstr "@code{port} (Vorgabe: @code{8081})" #. type: table -#: guix-git/doc/guix.texi:29053 +#: guix-git/doc/guix.texi:29390 msgid "Port number used by the HTTP server." msgstr "Portnummer, die vom HTTP-Server benutzt wird." #. type: table -#: guix-git/doc/guix.texi:29057 +#: guix-git/doc/guix.texi:29394 msgid "Listen on the network interface for @var{host}. The default is to accept connections from localhost." msgstr "Auf der Netzwerkschnittstelle für den Rechnernamen @var{host} lauschen. Nach Vorgabe werden Verbindungen vom lokalen Rechner @code{localhost} akzeptiert." #. type: item -#: guix-git/doc/guix.texi:29058 +#: guix-git/doc/guix.texi:29395 #, no-wrap msgid "@code{specifications} (default: @code{#~'()})" msgstr "@code{specifications} (Vorgabe: @code{#~'()})" #. type: table -#: guix-git/doc/guix.texi:29062 +#: guix-git/doc/guix.texi:29399 msgid "A gexp (@pxref{G-Expressions}) that evaluates to a list of specifications records. The specification record is described in the Cuirass manual (@pxref{Specifications,,, cuirass, Cuirass})." msgstr "Ein G-Ausdruck (siehe @ref{G-Expressions}), der zu einer Liste von Spezifikations-Verbundsobjekten ausgewertet wird. Spezifikations-Verbundsobjekte werden im @ref{Specifications,,, cuirass, Cuirass-Handbuch} beschrieben." #. type: item -#: guix-git/doc/guix.texi:29063 +#: guix-git/doc/guix.texi:29400 #, no-wrap msgid "@code{use-substitutes?} (default: @code{#f})" msgstr "@code{use-substitutes?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29066 +#: guix-git/doc/guix.texi:29403 msgid "This allows using substitutes to avoid building every dependencies of a job from source." msgstr "Hierdurch wird zugelassen, Substitute zu benutzen, damit @emph{nicht} jede Abhängigkeit eines Auftrags erst aus ihrem Quellcode heraus erstellt werden muss." #. type: item -#: guix-git/doc/guix.texi:29067 guix-git/doc/guix.texi:36336 +#: guix-git/doc/guix.texi:29404 guix-git/doc/guix.texi:36826 #, no-wrap msgid "@code{one-shot?} (default: @code{#f})" msgstr "@code{one-shot?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29069 +#: guix-git/doc/guix.texi:29406 msgid "Only evaluate specifications and build derivations once." msgstr "Spezifikationen nur einmal auswerten und Ableitungen nur einmal erstellen." #. type: item -#: guix-git/doc/guix.texi:29070 +#: guix-git/doc/guix.texi:29407 #, no-wrap msgid "@code{fallback?} (default: @code{#f})" msgstr "@code{fallback?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29073 +#: guix-git/doc/guix.texi:29410 msgid "When substituting a pre-built binary fails, fall back to building packages locally." msgstr "Pakete lokal erstellen, wenn das Substituieren einer vorerstellten Binärdatei fehlschlägt." #. type: table -#: guix-git/doc/guix.texi:29076 +#: guix-git/doc/guix.texi:29413 msgid "Extra options to pass when running the Cuirass processes." msgstr "Zusätzliche Befehlszeilenoptionen, die beim Ausführen des Cuirass-Prozesses mitgegeben werden sollen." #. type: cindex -#: guix-git/doc/guix.texi:29080 +#: guix-git/doc/guix.texi:29417 #, no-wrap msgid "remote build" msgstr "entfernte Erstellung" #. type: subsubheading -#: guix-git/doc/guix.texi:29081 +#: guix-git/doc/guix.texi:29418 #, no-wrap msgid "Cuirass remote building" msgstr "Cuirass, entfernte Erstellung mit" #. type: Plain text -#: guix-git/doc/guix.texi:29084 +#: guix-git/doc/guix.texi:29421 msgid "Cuirass supports two mechanisms to build derivations." msgstr "Cuirass kennt zwei Mechanismen, wie damit Ableitungen erstellt werden können." #. type: item -#: guix-git/doc/guix.texi:29086 +#: guix-git/doc/guix.texi:29423 #, no-wrap msgid "Using the local Guix daemon." msgstr "Den lokalen Guix-Daemon benutzen." #. type: itemize -#: guix-git/doc/guix.texi:29090 +#: guix-git/doc/guix.texi:29427 msgid "This is the default build mechanism. Once the build jobs are evaluated, they are sent to the local Guix daemon. Cuirass then listens to the Guix daemon output to detect the various build events." msgstr "Dies ist der voreingestellte Erstellungsmechanismus. Sobald Erstellungsaufträge ausgewertet wurden, werden sie an den Guix-Daemon auf dem lokalen Rechner geschickt. Cuirass lauscht dann auf die Ausgabe des Guix-Daemons, um die verschiedenen Ereignisse bei der Erstellung zu erkennen." #. type: item -#: guix-git/doc/guix.texi:29091 +#: guix-git/doc/guix.texi:29428 #, no-wrap msgid "Using the remote build mechanism." msgstr "Den Mechanismus für entfernte Erstellungen benutzen." #. type: itemize -#: guix-git/doc/guix.texi:29095 +#: guix-git/doc/guix.texi:29432 msgid "The build jobs are not submitted to the local Guix daemon. Instead, a remote server dispatches build requests to the connect remote workers, according to the build priorities." msgstr "Die Erstellungsaufträge werden @emph{nicht} beim lokalen Guix-Daemon eingereicht. Stattdessen teilt ein entfernter Server die Erstellungsanfragen den verbundenen entfernten Arbeitermaschinen zu, entsprechend ihren Erstellungsprioritäten." #. type: Plain text -#: guix-git/doc/guix.texi:29102 +#: guix-git/doc/guix.texi:29439 msgid "To enable this build mode a @code{cuirass-remote-server-configuration} record must be passed as @code{remote-server} argument of the @code{cuirass-configuration} record. The @code{cuirass-remote-server-configuration} record is described below." msgstr "Um diesen Erstellungsmodus zu aktivieren, übergeben Sie ein @code{cuirass-remote-server-configuration}-Verbundsobjekt für das Argument @code{remote-server} des @code{cuirass-configuration}-Verbundsobjektes. Der @code{cuirass-remote-server-configuration}-Verbund wird im Folgenden beschrieben." #. type: Plain text -#: guix-git/doc/guix.texi:29107 +#: guix-git/doc/guix.texi:29444 msgid "This build mode scales way better than the default build mode. This is the build mode that is used on the GNU Guix build farm at @url{https://ci.guix.gnu.org}. It should be preferred when using Cuirass to build large amount of packages." msgstr "Dieser Erstellungsmodus skaliert wesentlich besser als der Vorgabemodus. Mit diesem Erstellungsmodus wird auch die Erstellungfarm von GNU Guix auf @url{https://ci.guix.gnu.org} betrieben. Er sollte dann bevorzugt werden, wenn Sie mit Cuirass eine große Anzahl von Paketen erstellen möchten." #. type: deftp -#: guix-git/doc/guix.texi:29108 +#: guix-git/doc/guix.texi:29445 #, no-wrap msgid "{Data Type} cuirass-remote-server-configuration" msgstr "{Datentyp} cuirass-remote-server-configuration" #. type: deftp -#: guix-git/doc/guix.texi:29110 +#: guix-git/doc/guix.texi:29447 msgid "Data type representing the configuration of the Cuirass remote-server." msgstr "Der Datentyp, der die Konfiguration des Cuirass-„remote-server“-Prozesses repräsentiert." #. type: item -#: guix-git/doc/guix.texi:29112 +#: guix-git/doc/guix.texi:29449 #, no-wrap msgid "@code{backend-port} (default: @code{5555})" msgstr "@code{backend-port} (Vorgabe: @code{5555})" #. type: table -#: guix-git/doc/guix.texi:29115 +#: guix-git/doc/guix.texi:29452 msgid "The TCP port for communicating with @code{remote-worker} processes using ZMQ. It defaults to @code{5555}." msgstr "Der TCP-Port, um mit @code{remote-worker}-Prozessen mit ZMQ zu kommunizieren." #. type: item -#: guix-git/doc/guix.texi:29116 +#: guix-git/doc/guix.texi:29453 #, no-wrap msgid "@code{log-port} (default: @code{5556})" msgstr "@code{log-port} (Vorgabe: @code{5556})" #. type: table -#: guix-git/doc/guix.texi:29118 +#: guix-git/doc/guix.texi:29455 msgid "The TCP port of the log server. It defaults to @code{5556}." msgstr "Der TCP-Port des Protokollservers." #. type: item -#: guix-git/doc/guix.texi:29119 +#: guix-git/doc/guix.texi:29456 #, no-wrap msgid "@code{publish-port} (default: @code{5557})" msgstr "@code{publish-port} (Vorgabe: @code{5557})" #. type: table -#: guix-git/doc/guix.texi:29121 +#: guix-git/doc/guix.texi:29458 msgid "The TCP port of the publish server. It defaults to @code{5557}." msgstr "Der TCP-Port des „Publish“-Servers, um Substitute mit anderen zu teilen." #. type: item -#: guix-git/doc/guix.texi:29122 +#: guix-git/doc/guix.texi:29459 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass-remote-server.log\"})" msgstr "@code{log-file} (Vorgabe: @code{\"/var/log/cuirass-remote-server.log\"})" #. type: item -#: guix-git/doc/guix.texi:29125 +#: guix-git/doc/guix.texi:29462 #, no-wrap msgid "@code{cache} (default: @code{\"/var/cache/cuirass/remote\"})" msgstr "@code{cache} (Vorgabe: @code{\"/var/cache/cuirass/remote\"})" #. type: table -#: guix-git/doc/guix.texi:29127 +#: guix-git/doc/guix.texi:29464 msgid "Use @var{cache} directory to cache build log files." msgstr "Im @var{cache}-Verzeichnis Erstellungsprotokolldateien speichern." #. type: item -#: guix-git/doc/guix.texi:29128 +#: guix-git/doc/guix.texi:29465 #, no-wrap msgid "@code{trigger-url} (default: @code{#f})" msgstr "@code{trigger-url} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29131 +#: guix-git/doc/guix.texi:29468 msgid "Once a substitute is successfully fetched, trigger substitute baking at @var{trigger-url}." msgstr "Sobald ein Substitut erfolgreich heruntergeladen wurde, wird dessen Einlagerung als Narinfo („bake the substitute“) auf @var{trigger-url} direkt ausgelöst." #. type: table -#: guix-git/doc/guix.texi:29136 +#: guix-git/doc/guix.texi:29473 msgid "If set to false, do not start a publish server and ignore the @code{publish-port} argument. This can be useful if there is already a standalone publish server standing next to the remote server." msgstr "Wenn dies auf falsch gesetzt ist, wird kein „Publish“-Server gestartet und das @code{publish-port}-Argument ignoriert. Verwenden Sie es, wenn bereits ein eigenständiger „Publish“-Server für den „remote-server“ läuft." #. type: code{#1} -#: guix-git/doc/guix.texi:29138 guix-git/doc/guix.texi:29175 +#: guix-git/doc/guix.texi:29475 guix-git/doc/guix.texi:29512 #, no-wrap msgid "private-key" msgstr "private-key" #. type: Plain text -#: guix-git/doc/guix.texi:29147 +#: guix-git/doc/guix.texi:29484 msgid "At least one remote worker must also be started on any machine of the local network to actually perform the builds and report their status." msgstr "Mindestens eine entfernte Arbeitermaschine („remote worker“) muss auf irgendeiner Maschine im lokalen Netzwerk gestartet werden, damit tatsächlich Erstellungen durchgeführt werden und deren Status gemeldet wird." #. type: deftp -#: guix-git/doc/guix.texi:29148 +#: guix-git/doc/guix.texi:29485 #, no-wrap msgid "{Data Type} cuirass-remote-worker-configuration" msgstr "{Datentyp} cuirass-remote-worker-configuration" #. type: deftp -#: guix-git/doc/guix.texi:29150 +#: guix-git/doc/guix.texi:29487 msgid "Data type representing the configuration of the Cuirass remote-worker." msgstr "Der Datentyp, der die Konfiguration des Cuirass-„remote-worker“-Prozesses repräsentiert." #. type: item -#: guix-git/doc/guix.texi:29155 +#: guix-git/doc/guix.texi:29492 #, no-wrap msgid "@code{workers} (default: @code{1})" msgstr "@code{workers} (Vorgabe: @code{1})" #. type: table -#: guix-git/doc/guix.texi:29157 +#: guix-git/doc/guix.texi:29494 msgid "Start @var{workers} parallel workers." msgstr "@var{workers}-viele parallele Arbeiterprozesse starten." #. type: table -#: guix-git/doc/guix.texi:29161 +#: guix-git/doc/guix.texi:29498 msgid "Do not use Avahi discovery and connect to the given @code{server} IP address instead." msgstr "Keine Maschinen über Avahi ermitteln, sondern stattdessen eine Verbindung zum Server unter der in @code{server} angegebenen IP-Adresse aufbauen." #. type: item -#: guix-git/doc/guix.texi:29162 +#: guix-git/doc/guix.texi:29499 #, no-wrap msgid "@code{systems} (default: @code{(list (%current-system))})" msgstr "@code{systems} (Vorgabe: @code{(list (%current-system))})" #. type: table -#: guix-git/doc/guix.texi:29164 +#: guix-git/doc/guix.texi:29501 msgid "Only request builds for the given @var{systems}." msgstr "Nur Erstellungen für die in @var{systems} angegebenen Systeme anfragen." #. type: item -#: guix-git/doc/guix.texi:29165 +#: guix-git/doc/guix.texi:29502 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass-remote-worker.log\"})" msgstr "@code{log-file} (Vorgabe: @code{\"/var/log/cuirass-remote-worker.log\"})" #. type: item -#: guix-git/doc/guix.texi:29168 +#: guix-git/doc/guix.texi:29505 #, no-wrap msgid "@code{publish-port} (default: @code{5558})" msgstr "@code{publish-port} (Vorgabe: @code{5558})" #. type: table -#: guix-git/doc/guix.texi:29170 +#: guix-git/doc/guix.texi:29507 msgid "The TCP port of the publish server. It defaults to @code{5558}." msgstr "Der TCP-Port des „Publish“-Servers, um Substitute mit anderen zu teilen." #. type: subsubheading -#: guix-git/doc/guix.texi:29182 +#: guix-git/doc/guix.texi:29519 #, no-wrap msgid "Laminar" msgstr "Laminar" #. type: Plain text -#: guix-git/doc/guix.texi:29187 +#: guix-git/doc/guix.texi:29524 msgid "@uref{https://laminar.ohwg.net/, Laminar} is a lightweight and modular Continuous Integration service. It doesn't have a configuration web UI instead uses version-controllable configuration files and scripts." msgstr "@uref{https://laminar.ohwg.net/, Laminar} ist ein sparsamer und modularer Dienst zur Kontinuierlichen Integration. Statt einer Weboberfläche zur Konfiguration werden versionskontrollierte Konfigurationsdateien und Skripte verwendet." #. type: Plain text -#: guix-git/doc/guix.texi:29190 +#: guix-git/doc/guix.texi:29527 msgid "Laminar encourages the use of existing tools such as bash and cron instead of reinventing them." msgstr "Laminar ermutigt dazu, bestehende Werkzeuge wie bash und cron zu benutzen statt das Rad neu zu erfinden." #. type: defvr -#: guix-git/doc/guix.texi:29191 +#: guix-git/doc/guix.texi:29528 #, no-wrap msgid "{Scheme Procedure} laminar-service-type" msgstr "{Scheme-Prozedur} laminar-service-type" #. type: defvr -#: guix-git/doc/guix.texi:29194 +#: guix-git/doc/guix.texi:29531 msgid "The type of the Laminar service. Its value must be a @code{laminar-configuration} object, as described below." msgstr "Der Diensttyp des Laminar-Dienstes. Sein Wert muss ein @code{laminar-configuration}-Verbundsobjekt sein, wie im Folgenden beschrieben." #. type: defvr -#: guix-git/doc/guix.texi:29198 +#: guix-git/doc/guix.texi:29535 msgid "All configuration values have defaults, a minimal configuration to get Laminar running is shown below. By default, the web interface is available on port 8080." msgstr "Alle Konfigurationswerte haben bereits vorgegebene Einstellungen. Eine minimale Konfiguration, um Laminar aufzusetzen, sehen Sie unten. Nach Vorgabe läuft die Weboberfläche auf Port 8080." #. type: lisp -#: guix-git/doc/guix.texi:29201 +#: guix-git/doc/guix.texi:29538 #, no-wrap msgid "(service laminar-service-type)\n" msgstr "(service laminar-service-type)\n" #. type: deftp -#: guix-git/doc/guix.texi:29204 +#: guix-git/doc/guix.texi:29541 #, no-wrap msgid "{Data Type} laminar-configuration" msgstr "{Datentyp} laminar-configuration" #. type: deftp -#: guix-git/doc/guix.texi:29206 +#: guix-git/doc/guix.texi:29543 msgid "Data type representing the configuration of Laminar." msgstr "Datentyp, der die Konfiguration von Laminar repräsentiert." #. type: item -#: guix-git/doc/guix.texi:29208 +#: guix-git/doc/guix.texi:29545 #, no-wrap msgid "@code{laminar} (default: @code{laminar})" msgstr "@code{laminar} (Vorgabe: @code{laminar})" #. type: table -#: guix-git/doc/guix.texi:29210 +#: guix-git/doc/guix.texi:29547 msgid "The Laminar package to use." msgstr "Das Laminar-Paket, das benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:29211 +#: guix-git/doc/guix.texi:29548 #, no-wrap msgid "@code{home-directory} (default: @code{\"/var/lib/laminar\"})" msgstr "@code{home-directory} (Vorgabe: @code{\"/var/lib/laminar\"})" #. type: table -#: guix-git/doc/guix.texi:29213 +#: guix-git/doc/guix.texi:29550 msgid "The directory for job configurations and run directories." msgstr "Das Verzeichnis mit Auftragskonfigurationen und Verzeichnissen, in denen Aufträge ausgeführt werden („run“-Verzeichnissen)." #. type: item -#: guix-git/doc/guix.texi:29214 +#: guix-git/doc/guix.texi:29551 #, no-wrap msgid "@code{bind-http} (default: @code{\"*:8080\"})" msgstr "@code{bind-http} (Vorgabe: @code{\"*:8080\"})" #. type: table -#: guix-git/doc/guix.texi:29217 +#: guix-git/doc/guix.texi:29554 msgid "The interface/port or unix socket on which laminard should listen for incoming connections to the web frontend." msgstr "Die Netzwerkschnittstelle mit Port oder der Unix-Socket, wo laminard auf eingehende Verbindungen zur Web-Oberfläche lauschen soll." #. type: item -#: guix-git/doc/guix.texi:29218 +#: guix-git/doc/guix.texi:29555 #, no-wrap msgid "@code{bind-rpc} (default: @code{\"unix-abstract:laminar\"})" msgstr "@code{bind-rpc} (Vorgabe: @code{\"unix-abstract:laminar\"})" #. type: table -#: guix-git/doc/guix.texi:29221 +#: guix-git/doc/guix.texi:29558 msgid "The interface/port or unix socket on which laminard should listen for incoming commands such as build triggers." msgstr "Die Netzwerkschnittstelle mit Port oder der Unix-Socket, wo laminard auf eingehende Befehle z.B.@: zum Auslösen einer Erstellung lauschen soll." #. type: item -#: guix-git/doc/guix.texi:29222 +#: guix-git/doc/guix.texi:29559 #, no-wrap msgid "@code{title} (default: @code{\"Laminar\"})" msgstr "@code{title} (Vorgabe: @code{\"Laminar\"})" #. type: table -#: guix-git/doc/guix.texi:29224 +#: guix-git/doc/guix.texi:29561 msgid "The page title to show in the web frontend." msgstr "Der Seitentitel, der auf der Web-Oberfläche angezeigt wird." #. type: item -#: guix-git/doc/guix.texi:29225 +#: guix-git/doc/guix.texi:29562 #, no-wrap msgid "@code{keep-rundirs} (default: @code{0})" msgstr "@code{keep-rundirs} (Vorgabe: @code{0})" #. type: table -#: guix-git/doc/guix.texi:29229 +#: guix-git/doc/guix.texi:29566 msgid "Set to an integer defining how many rundirs to keep per job. The lowest-numbered ones will be deleted. The default is 0, meaning all run dirs will be immediately deleted." msgstr "Setzen Sie dies auf eine ganze Zahl, die festlegt, wie viele Ausführungsverzeichnisse pro Auftrag vorgehalten werden. Die mit der niedrigsten Nummer werden gelöscht. Die Vorgabe ist 0, d.h.@: alle Ausführungsverzeichnisse werden sofort gelöscht." #. type: item -#: guix-git/doc/guix.texi:29230 +#: guix-git/doc/guix.texi:29567 #, no-wrap msgid "@code{archive-url} (default: @code{#f})" msgstr "@code{archive-url} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29233 +#: guix-git/doc/guix.texi:29570 msgid "The web frontend served by laminard will use this URL to form links to artefacts archived jobs." msgstr "Die von laminard angebotene Weboberfläche wird aus dieser URL die Verweise auf Artefakte archivierter Aufträge zusammensetzen." #. type: item -#: guix-git/doc/guix.texi:29234 +#: guix-git/doc/guix.texi:29571 #, no-wrap msgid "@code{base-url} (default: @code{#f})" msgstr "@code{base-url} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29236 +#: guix-git/doc/guix.texi:29573 msgid "Base URL to use for links to laminar itself." msgstr "Was Laminar in Verweisen auf eigene Seiten als Basis-URL verwenden soll." #. type: cindex -#: guix-git/doc/guix.texi:29243 +#: guix-git/doc/guix.texi:29580 #, no-wrap msgid "tlp" msgstr "TLP" #. type: cindex -#: guix-git/doc/guix.texi:29244 +#: guix-git/doc/guix.texi:29581 #, no-wrap msgid "power management with TLP" msgstr "Stromverbrauch mit TLP verwalten" #. type: subsubheading -#: guix-git/doc/guix.texi:29245 +#: guix-git/doc/guix.texi:29582 #, no-wrap msgid "TLP daemon" msgstr "TLP-Daemon" #. type: Plain text -#: guix-git/doc/guix.texi:29249 +#: guix-git/doc/guix.texi:29586 msgid "The @code{(gnu services pm)} module provides a Guix service definition for the Linux power management tool TLP." msgstr "Das Modul @code{(gnu services pm)} stellt eine Guix-Dienstdefinition für das Linux-Werkzeug TLP zur Stromverbrauchsverwaltung zur Verfügung." #. type: Plain text -#: guix-git/doc/guix.texi:29255 +#: guix-git/doc/guix.texi:29592 msgid "TLP enables various powersaving modes in userspace and kernel. Contrary to @code{upower-service}, it is not a passive, monitoring tool, as it will apply custom settings each time a new power source is detected. More information can be found at @uref{https://linrunner.de/en/tlp/tlp.html, TLP home page}." msgstr "TLP macht mehrere Stromspar-Modi auf Anwendungsebene („User Space“) und im Kernel verfügbar. Im Gegensatz zum @code{upower-service} handelt es sich um kein passives Werkzeug zur Überwachung, sondern TLP passt selbst jedes Mal Einstellungen an, wenn eine neue Stromquelle erkannt wird. Mehr Informationen finden Sie auf der @uref{https://linrunner.de/en/tlp/tlp.html, TLP-Homepage}." #. type: deffn -#: guix-git/doc/guix.texi:29256 +#: guix-git/doc/guix.texi:29593 #, no-wrap msgid "{Scheme Variable} tlp-service-type" msgstr "{Scheme-Variable} tlp-service-type" #. type: deffn -#: guix-git/doc/guix.texi:29260 +#: guix-git/doc/guix.texi:29597 msgid "The service type for the TLP tool. The default settings are optimised for battery life on most systems, but you can tweak them to your heart's content by adding a valid @code{tlp-configuration}:" msgstr "Der Diensttyp für das TLP-Werkzeug. In der Vorgabeeinstellung wird die Akkulaufzeit für die meisten Systeme optimiert, aber Sie können sie nach Belieben anpassen, indem Sie eine gültige @code{tlp-configuration} hinzufügen:" #. type: lisp -#: guix-git/doc/guix.texi:29265 +#: guix-git/doc/guix.texi:29602 #, no-wrap msgid "" "(service tlp-service-type\n" @@ -55129,889 +55814,937 @@ msgstr "" " (sched-powersave-on-bat? #t)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:29273 +#: guix-git/doc/guix.texi:29610 msgid "Each parameter definition is preceded by its type; for example, @samp{boolean foo} indicates that the @code{foo} parameter should be specified as a boolean. Types starting with @code{maybe-} denote parameters that won't show up in TLP config file when their value is @code{'disabled}." msgstr "Im Folgenden ist jeder Parameterdefinition ihr Typ vorangestellt. Zum Beispiel bedeutet @samp{Boolescher-Ausdruck foo}, dass der Parameter @code{foo} als boolescher Ausdruck festgelegt werden sollte. Typen, die mit @code{Vielleicht-} beginnen, bezeichnen Parameter, die nicht in der TLP-Konfigurationsdatei vorkommen, wenn @code{'disabled} als ihr Wert angegeben wurde." #. type: Plain text -#: guix-git/doc/guix.texi:29283 +#: guix-git/doc/guix.texi:29620 msgid "Available @code{tlp-configuration} fields are:" msgstr "Verfügbare @code{tlp-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:29284 +#: guix-git/doc/guix.texi:29621 #, no-wrap msgid "{@code{tlp-configuration} parameter} package tlp" msgstr "{@code{tlp-configuration}-Parameter} „package“ tlp" #. type: deftypevr -#: guix-git/doc/guix.texi:29286 +#: guix-git/doc/guix.texi:29623 msgid "The TLP package." msgstr "Das TLP-Paket." #. type: deftypevr -#: guix-git/doc/guix.texi:29289 +#: guix-git/doc/guix.texi:29626 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean tlp-enable?" msgstr "{@code{tlp-configuration}-Parameter} Boolescher-Ausdruck tlp-enable?" #. type: deftypevr -#: guix-git/doc/guix.texi:29291 +#: guix-git/doc/guix.texi:29628 msgid "Set to true if you wish to enable TLP." msgstr "Setzen Sie dies auf wahr, wenn Sie TLP aktivieren möchten." #. type: deftypevr -#: guix-git/doc/guix.texi:29296 +#: guix-git/doc/guix.texi:29633 #, no-wrap msgid "{@code{tlp-configuration} parameter} string tlp-default-mode" msgstr "{@code{tlp-configuration}-Parameter} Zeichenkette tlp-default-mode" #. type: deftypevr -#: guix-git/doc/guix.texi:29299 +#: guix-git/doc/guix.texi:29636 msgid "Default mode when no power supply can be detected. Alternatives are AC and BAT." msgstr "Der vorgegebene Modus, wenn keine Stromversorgung gefunden werden kann. Angegeben werden können AC (am Stromnetz) und BAT (Batterie/Akku)." #. type: deftypevr -#: guix-git/doc/guix.texi:29301 +#: guix-git/doc/guix.texi:29638 msgid "Defaults to @samp{\"AC\"}." msgstr "Die Vorgabe ist @samp{\"AC\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29304 +#: guix-git/doc/guix.texi:29641 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer disk-idle-secs-on-ac" msgstr "{@code{tlp-configuration}-Parameter} Nichtnegative-ganze-Zahl disk-idle-secs-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29307 +#: guix-git/doc/guix.texi:29644 msgid "Number of seconds Linux kernel has to wait after the disk goes idle, before syncing on AC." msgstr "Die Anzahl an Sekunden, die der Linux-Kernel warten muss, bis er sich mit dem Plattenspeicher synchronisiert, wenn die Stromversorgung auf AC steht." #. type: deftypevr -#: guix-git/doc/guix.texi:29312 +#: guix-git/doc/guix.texi:29649 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer disk-idle-secs-on-bat" msgstr "{@code{tlp-configuration}-Parameter} Nichtnegative-ganze-Zahl disk-idle-secs-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29314 +#: guix-git/doc/guix.texi:29651 msgid "Same as @code{disk-idle-ac} but on BAT mode." msgstr "Wie @code{disk-idle-ac}, aber für den BAT-Modus." #. type: deftypevr -#: guix-git/doc/guix.texi:29316 +#: guix-git/doc/guix.texi:29653 msgid "Defaults to @samp{2}." msgstr "Die Vorgabe ist @samp{2}." #. type: deftypevr -#: guix-git/doc/guix.texi:29319 +#: guix-git/doc/guix.texi:29656 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer max-lost-work-secs-on-ac" msgstr "{@code{tlp-configuration}-Parameter} Nichtnegative-ganze-Zahl max-lost-work-secs-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29321 +#: guix-git/doc/guix.texi:29658 msgid "Dirty pages flushing periodicity, expressed in seconds." msgstr "Periodizität, mit der im Zwischenspeicher geänderte Speicherseiten („Dirty Pages“) synchronisiert werden („Cache Flush“), ausgedrückt in Sekunden." #. type: deftypevr -#: guix-git/doc/guix.texi:29323 guix-git/doc/guix.texi:29546 -#: guix-git/doc/guix.texi:31814 guix-git/doc/guix.texi:31822 +#: guix-git/doc/guix.texi:29660 guix-git/doc/guix.texi:29883 +#: guix-git/doc/guix.texi:32179 guix-git/doc/guix.texi:32187 msgid "Defaults to @samp{15}." msgstr "Die Vorgabe ist @samp{15}." #. type: deftypevr -#: guix-git/doc/guix.texi:29326 +#: guix-git/doc/guix.texi:29663 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer max-lost-work-secs-on-bat" msgstr "{@code{tlp-configuration}-Parameter} Nichtnegative-ganze-Zahl max-lost-work-secs-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29328 +#: guix-git/doc/guix.texi:29665 msgid "Same as @code{max-lost-work-secs-on-ac} but on BAT mode." msgstr "Wie @code{max-lost-work-secs-on-ac}, aber für den BAT-Modus." #. type: deftypevr -#: guix-git/doc/guix.texi:29330 +#: guix-git/doc/guix.texi:29667 msgid "Defaults to @samp{60}." msgstr "Die Vorgabe ist @samp{60}." #. type: deftypevr -#: guix-git/doc/guix.texi:29333 +#: guix-git/doc/guix.texi:29670 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list cpu-scaling-governor-on-ac" msgstr "{@code{tlp-configuration}-Parameter} Vielleicht-Leerzeichengetrennte-Zeichenketten-Liste cpu-scaling-governor-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29337 +#: guix-git/doc/guix.texi:29674 msgid "CPU frequency scaling governor on AC mode. With intel_pstate driver, alternatives are powersave and performance. With acpi-cpufreq driver, alternatives are ondemand, powersave, performance and conservative." msgstr "Regulator der Frequenzskalierung der CPUs („Frequency Scaling Governor“) im AC-Modus. Beim intel_pstate-Treiber stehen powersave (stromsparend) und performance (leistungsfähig) zur Auswahl. Beim acpi-cpufreq-Treiber stehen ondemand, powersave, performance und conservative zur Auswahl." #. type: deftypevr -#: guix-git/doc/guix.texi:29342 +#: guix-git/doc/guix.texi:29679 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list cpu-scaling-governor-on-bat" msgstr "{@code{tlp-configuration}-Parameter} Vielleicht-Leerzeichengetrennte-Zeichenketten-Liste cpu-scaling-governor-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29344 +#: guix-git/doc/guix.texi:29681 msgid "Same as @code{cpu-scaling-governor-on-ac} but on BAT mode." msgstr "Wie @code{cpu-scaling-governor-on-ac}, aber für den BAT-Modus." #. type: deftypevr -#: guix-git/doc/guix.texi:29349 +#: guix-git/doc/guix.texi:29686 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-min-freq-on-ac" msgstr "{@code{tlp-configuration}-Parameter} Vielleicht-Nichtnegative-ganze-Zahl cpu-scaling-min-freq-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29351 +#: guix-git/doc/guix.texi:29688 msgid "Set the min available frequency for the scaling governor on AC." msgstr "Legt die minimale verfügbare Frequenz für den Skalierungsregulator im AC-Modus fest." #. type: deftypevr -#: guix-git/doc/guix.texi:29356 +#: guix-git/doc/guix.texi:29693 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-max-freq-on-ac" msgstr "{@code{tlp-configuration}-Parameter} Vielleicht-Nichtnegative-ganze-Zahl cpu-scaling-max-freq-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29358 +#: guix-git/doc/guix.texi:29695 msgid "Set the max available frequency for the scaling governor on AC." msgstr "Legt die maximale verfügbare Frequenz für den Skalierungsregulator im AC-Modus fest." #. type: deftypevr -#: guix-git/doc/guix.texi:29363 +#: guix-git/doc/guix.texi:29700 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-min-freq-on-bat" msgstr "{@code{tlp-configuration}-Parameter} Vielleicht-Nichtnegative-ganze-Zahl cpu-scaling-min-freq-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29365 +#: guix-git/doc/guix.texi:29702 msgid "Set the min available frequency for the scaling governor on BAT." msgstr "Legt die minimale verfügbare Frequenz für den Skalierungsregulator im BAT-Modus fest." #. type: deftypevr -#: guix-git/doc/guix.texi:29370 +#: guix-git/doc/guix.texi:29707 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-max-freq-on-bat" msgstr "{@code{tlp-configuration}-Parameter} Vielleicht-Nichtnegative-ganze-Zahl cpu-scaling-max-freq-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29372 +#: guix-git/doc/guix.texi:29709 msgid "Set the max available frequency for the scaling governor on BAT." msgstr "Legt die maximale verfügbare Frequenz für den Skalierungsregulator im BAT-Modus fest." #. type: deftypevr -#: guix-git/doc/guix.texi:29377 +#: guix-git/doc/guix.texi:29714 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-min-perf-on-ac" msgstr "{@code{tlp-configuration}-Parameter} Vielleicht-Nichtnegative-ganze-Zahl cpu-min-perf-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29380 +#: guix-git/doc/guix.texi:29717 msgid "Limit the min P-state to control the power dissipation of the CPU, in AC mode. Values are stated as a percentage of the available performance." msgstr "Beschränkt den minimalen Leistungszustand („P-State“), um die Stromverteilung („Power Dissipation“) der CPU im AC-Modus zu regulieren. Werte können als Prozentsatz bezüglich der verfügbaren Leistung angegeben werden." #. type: deftypevr -#: guix-git/doc/guix.texi:29385 +#: guix-git/doc/guix.texi:29722 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-ac" msgstr "{@code{tlp-configuration}-Parameter} Vielleicht-Nichtnegative-ganze-Zahl cpu-max-perf-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29388 +#: guix-git/doc/guix.texi:29725 msgid "Limit the max P-state to control the power dissipation of the CPU, in AC mode. Values are stated as a percentage of the available performance." msgstr "Beschränkt den maximalen Leistungszustand („P-State“), um die Stromverteilung („Power Dissipation“) der CPU im AC-Modus zu regulieren. Werte können als Prozentsatz bezüglich der verfügbaren Leistung angegeben werden." #. type: deftypevr -#: guix-git/doc/guix.texi:29393 +#: guix-git/doc/guix.texi:29730 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-min-perf-on-bat" msgstr "{@code{tlp-configuration}-Parameter} Vielleicht-Nichtnegative-ganze-Zahl cpu-min-perf-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29395 +#: guix-git/doc/guix.texi:29732 msgid "Same as @code{cpu-min-perf-on-ac} on BAT mode." msgstr "Wie @code{cpu-min-perf-on-ac} im BAT-Modus." #. type: deftypevr -#: guix-git/doc/guix.texi:29400 +#: guix-git/doc/guix.texi:29737 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-bat" msgstr "{@code{tlp-configuration}-Parameter} Vielleicht-Nichtnegative-ganze-Zahl cpu-max-perf-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29402 +#: guix-git/doc/guix.texi:29739 msgid "Same as @code{cpu-max-perf-on-ac} on BAT mode." msgstr "Wie @code{cpu-max-perf-on-ac} im BAT-Modus." #. type: deftypevr -#: guix-git/doc/guix.texi:29407 +#: guix-git/doc/guix.texi:29744 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean cpu-boost-on-ac?" msgstr "{@code{tlp-configuration}-Parameter} Vielleicht-Boolescher-Ausdruck cpu-boost-on-ac?" #. type: deftypevr -#: guix-git/doc/guix.texi:29409 +#: guix-git/doc/guix.texi:29746 msgid "Enable CPU turbo boost feature on AC mode." msgstr "Die CPU-Turbo-Boost-Funktionen im AC-Modus aktivieren." #. type: deftypevr -#: guix-git/doc/guix.texi:29414 +#: guix-git/doc/guix.texi:29751 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean cpu-boost-on-bat?" msgstr "{@code{tlp-configuration}-Parameter} Vielleicht-Boolescher-Ausdruck cpu-boost-on-bat?" #. type: deftypevr -#: guix-git/doc/guix.texi:29416 +#: guix-git/doc/guix.texi:29753 msgid "Same as @code{cpu-boost-on-ac?} on BAT mode." msgstr "Wie @code{cpu-boost-on-ac?} im BAT-Modus." #. type: deftypevr -#: guix-git/doc/guix.texi:29421 +#: guix-git/doc/guix.texi:29758 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean sched-powersave-on-ac?" msgstr "{@code{tlp-configuration}-Parameter} Boolescher-Ausdruck sched-powersave-on-ac?" #. type: deftypevr -#: guix-git/doc/guix.texi:29424 +#: guix-git/doc/guix.texi:29761 msgid "Allow Linux kernel to minimize the number of CPU cores/hyper-threads used under light load conditions." msgstr "Dem Linux-Kernel erlauben, die Anzahl benutzter CPU-Kerne und Hyperthreads anzupassen, wenn er unter leichter Last steht." #. type: deftypevr -#: guix-git/doc/guix.texi:29429 +#: guix-git/doc/guix.texi:29766 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean sched-powersave-on-bat?" msgstr "{@code{tlp-configuration}-Parameter} Boolescher-Ausdruck sched-powersave-on-bat?" #. type: deftypevr -#: guix-git/doc/guix.texi:29431 +#: guix-git/doc/guix.texi:29768 msgid "Same as @code{sched-powersave-on-ac?} but on BAT mode." msgstr "Wie @code{sched-powersave-on-ac?}, aber für den BAT-Modus." #. type: deftypevr -#: guix-git/doc/guix.texi:29436 +#: guix-git/doc/guix.texi:29773 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean nmi-watchdog?" msgstr "{@code{tlp-configuration}-Parameter} Boolescher-Ausdruck nmi-watchdog?" #. type: deftypevr -#: guix-git/doc/guix.texi:29438 +#: guix-git/doc/guix.texi:29775 msgid "Enable Linux kernel NMI watchdog." msgstr "Ob die rechtzeitige Behandlung nichtmaskierbarer Unterbrechungen durch den „NMI-Watchdog“ des Linux-Kernels überprüft werden soll." #. type: deftypevr -#: guix-git/doc/guix.texi:29443 +#: guix-git/doc/guix.texi:29780 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string phc-controls" msgstr "{@code{tlp-configuration}-Parameter} Vielleicht-Zeichenkette phc-controls" #. type: deftypevr -#: guix-git/doc/guix.texi:29446 +#: guix-git/doc/guix.texi:29783 msgid "For Linux kernels with PHC patch applied, change CPU voltages. An example value would be @samp{\"F:V F:V F:V F:V\"}." msgstr "Auf Linux-Kernels, auf die der PHC-Patch angewandt wurde, wird hierdurch die Prozessorspannung angepasst. Ein Beispielwert wäre @samp{\"F:V F:V F:V F:V\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29451 +#: guix-git/doc/guix.texi:29788 #, no-wrap msgid "{@code{tlp-configuration} parameter} string energy-perf-policy-on-ac" msgstr "{@code{tlp-configuration}-Parameter} Zeichenkette energy-perf-policy-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29454 +#: guix-git/doc/guix.texi:29791 msgid "Set CPU performance versus energy saving policy on AC@. Alternatives are performance, normal, powersave." msgstr "Legt das Verhältnis von Prozessorleistung zu Stromsparsamkeit im AC-Modus fest. Angegeben werden können performance (hohe Leistung), normal, powersave (wenig Stromverbrauch)." #. type: deftypevr -#: guix-git/doc/guix.texi:29456 guix-git/doc/guix.texi:29554 -#: guix-git/doc/guix.texi:29584 +#: guix-git/doc/guix.texi:29793 guix-git/doc/guix.texi:29891 +#: guix-git/doc/guix.texi:29949 msgid "Defaults to @samp{\"performance\"}." msgstr "Die Vorgabe ist @samp{\"performance\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29459 +#: guix-git/doc/guix.texi:29796 #, no-wrap msgid "{@code{tlp-configuration} parameter} string energy-perf-policy-on-bat" msgstr "{@code{tlp-configuration}-Parameter} Zeichenkette energy-perf-policy-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29461 +#: guix-git/doc/guix.texi:29798 msgid "Same as @code{energy-perf-policy-ac} but on BAT mode." msgstr "Wie @code{energy-perf-policy-ac}, aber für den BAT-Modus." #. type: deftypevr -#: guix-git/doc/guix.texi:29463 guix-git/doc/guix.texi:29561 +#: guix-git/doc/guix.texi:29800 guix-git/doc/guix.texi:29898 msgid "Defaults to @samp{\"powersave\"}." msgstr "Die Vorgabe ist @samp{\"powersave\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29466 +#: guix-git/doc/guix.texi:29803 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disks-devices" msgstr "{@code{tlp-configuration}-Parameter} Leerzeichengetrennte-Zeichenketten-Liste disks-devices" #. type: deftypevr -#: guix-git/doc/guix.texi:29468 +#: guix-git/doc/guix.texi:29805 msgid "Hard disk devices." msgstr "Festplattengeräte." #. type: deftypevr -#: guix-git/doc/guix.texi:29471 +#: guix-git/doc/guix.texi:29808 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disk-apm-level-on-ac" msgstr "{@code{tlp-configuration}-Parameter} Leerzeichengetrennte-Zeichenketten-Liste disk-apm-level-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29473 +#: guix-git/doc/guix.texi:29810 msgid "Hard disk advanced power management level." msgstr "Stufe für das „Advanced Power Management“ auf Festplatten." #. type: deftypevr -#: guix-git/doc/guix.texi:29476 +#: guix-git/doc/guix.texi:29813 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disk-apm-level-on-bat" msgstr "{@code{tlp-configuration}-Parameter} Leerzeichengetrennte-Zeichenketten-Liste disk-apm-level-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29478 +#: guix-git/doc/guix.texi:29815 msgid "Same as @code{disk-apm-bat} but on BAT mode." msgstr "Wie @code{disk-apm-bat}, aber für den BAT-Modus." #. type: deftypevr -#: guix-git/doc/guix.texi:29481 +#: guix-git/doc/guix.texi:29818 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-spindown-timeout-on-ac" msgstr "{@code{tlp-configuration}-Parameter} Vielleicht-Leerzeichengetrennte-Zeichenketten-Liste disk-spindown-timeout-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29484 +#: guix-git/doc/guix.texi:29821 msgid "Hard disk spin down timeout. One value has to be specified for each declared hard disk." msgstr "Zeitspanne, bis die Festplatte inaktiv wird (ein „Spin-Down“). Für jede deklarierte Festplatte muss hier je ein Wert angegeben werden." #. type: deftypevr -#: guix-git/doc/guix.texi:29489 +#: guix-git/doc/guix.texi:29826 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-spindown-timeout-on-bat" msgstr "{@code{tlp-configuration}-Parameter} Vielleicht-Leerzeichengetrennte-Zeichenketten-Liste disk-spindown-timeout-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29491 +#: guix-git/doc/guix.texi:29828 msgid "Same as @code{disk-spindown-timeout-on-ac} but on BAT mode." msgstr "Wie @code{disk-spindown-timeout-on-ac}, aber für den BAT-Modus." #. type: deftypevr -#: guix-git/doc/guix.texi:29496 +#: guix-git/doc/guix.texi:29833 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-iosched" msgstr "{@code{tlp-configuration}-Parameter} Vielleicht-Leerzeichengetrennte-Zeichenketten-Liste disk-iosched" #. type: deftypevr -#: guix-git/doc/guix.texi:29500 +#: guix-git/doc/guix.texi:29837 msgid "Select IO scheduler for disk devices. One value has to be specified for each declared hard disk. Example alternatives are cfq, deadline and noop." msgstr "Ein-/Ausgaben-Planungsprogramm für Plattengeräte auswählen. Für jede deklarierte Festplatte muss ein Wert angegeben werden. Möglich sind zum Beispiel cfq, deadline und noop." #. type: deftypevr -#: guix-git/doc/guix.texi:29505 +#: guix-git/doc/guix.texi:29842 #, no-wrap msgid "{@code{tlp-configuration} parameter} string sata-linkpwr-on-ac" msgstr "{@code{tlp-configuration}-Parameter} Zeichenkette sata-linkpwr-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29508 +#: guix-git/doc/guix.texi:29845 msgid "SATA aggressive link power management (ALPM) level. Alternatives are min_power, medium_power, max_performance." msgstr "Stufe des „Aggressive Link Power Management“ (ALPM) für SATA@. Angegeben werden können min_power (wenigster Stromverbrauch), medium_power (mittlerer Stromverbrauch), max_performance (maximale Leistung)." #. type: deftypevr -#: guix-git/doc/guix.texi:29510 +#: guix-git/doc/guix.texi:29847 msgid "Defaults to @samp{\"max_performance\"}." msgstr "Die Vorgabe ist @samp{\"max_performance\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29513 +#: guix-git/doc/guix.texi:29850 #, no-wrap msgid "{@code{tlp-configuration} parameter} string sata-linkpwr-on-bat" msgstr "{@code{tlp-configuration}-Parameter} Zeichenkette sata-linkpwr-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29515 +#: guix-git/doc/guix.texi:29852 msgid "Same as @code{sata-linkpwr-ac} but on BAT mode." msgstr "Wie @code{sata-linkpwr-ac}, aber für den BAT-Modus." #. type: deftypevr -#: guix-git/doc/guix.texi:29517 +#: guix-git/doc/guix.texi:29854 msgid "Defaults to @samp{\"min_power\"}." msgstr "Die Vorgabe ist @samp{\"min_power\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29520 +#: guix-git/doc/guix.texi:29857 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string sata-linkpwr-blacklist" msgstr "{@code{tlp-configuration}-Parameter} Vielleicht-Zeichenkette sata-linkpwr-blacklist" #. type: deftypevr -#: guix-git/doc/guix.texi:29522 +#: guix-git/doc/guix.texi:29859 msgid "Exclude specified SATA host devices for link power management." msgstr "Bestimmte SATA-Geräte („SATA-Host-Devices“) vom Link Power Management ausschließen." #. type: deftypevr -#: guix-git/doc/guix.texi:29527 +#: guix-git/doc/guix.texi:29864 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-on-off-boolean ahci-runtime-pm-on-ac?" msgstr "{@code{tlp-configuration}-Parameter} Vielleicht-An-Aus-Boolescher-Ausdruck ahci-runtime-pm-on-ac?" #. type: deftypevr -#: guix-git/doc/guix.texi:29530 +#: guix-git/doc/guix.texi:29867 msgid "Enable Runtime Power Management for AHCI controller and disks on AC mode." msgstr "Verwaltung des Stromverbrauchs zur Laufzeit für AHCI-Steuerungseinheiten („Controller“) und AHCI-Platten im AC-Modus aktivieren." #. type: deftypevr -#: guix-git/doc/guix.texi:29535 +#: guix-git/doc/guix.texi:29872 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-on-off-boolean ahci-runtime-pm-on-bat?" msgstr "{@code{tlp-configuration}-Parameter} Vielleicht-An-Aus-Boolescher-Ausdruck ahci-runtime-pm-on-bat?" #. type: deftypevr -#: guix-git/doc/guix.texi:29537 +#: guix-git/doc/guix.texi:29874 msgid "Same as @code{ahci-runtime-pm-on-ac} on BAT mode." msgstr "Wie @code{ahci-runtime-pm-on-ac} im BAT-Modus." #. type: deftypevr -#: guix-git/doc/guix.texi:29542 +#: guix-git/doc/guix.texi:29879 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer ahci-runtime-pm-timeout" msgstr "{@code{tlp-configuration}-Parameter} Nichtnegative-ganze-Zahl ahci-runtime-pm-timeout" #. type: deftypevr -#: guix-git/doc/guix.texi:29544 +#: guix-git/doc/guix.texi:29881 msgid "Seconds of inactivity before disk is suspended." msgstr "Nach wie vielen Sekunden der Inaktivität die Platten in den Ruhezustand gehen („Suspended“)." #. type: deftypevr -#: guix-git/doc/guix.texi:29549 +#: guix-git/doc/guix.texi:29886 #, no-wrap msgid "{@code{tlp-configuration} parameter} string pcie-aspm-on-ac" msgstr "{@code{tlp-configuration}-Parameter} Zeichenkette pcie-aspm-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29552 +#: guix-git/doc/guix.texi:29889 msgid "PCI Express Active State Power Management level. Alternatives are default, performance, powersave." msgstr "Stufe des „PCI Express Active State Power Management“. Zur Auswahl stehen default (Voreinstellung), performance (hohe Leistung), powersave (wenig Stromverbrauch)." #. type: deftypevr -#: guix-git/doc/guix.texi:29557 +#: guix-git/doc/guix.texi:29894 #, no-wrap msgid "{@code{tlp-configuration} parameter} string pcie-aspm-on-bat" msgstr "{@code{tlp-configuration}-Parameter} Zeichenkette pcie-aspm-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29559 +#: guix-git/doc/guix.texi:29896 msgid "Same as @code{pcie-aspm-ac} but on BAT mode." msgstr "Wie @code{pcie-aspm-ac}, aber für den BAT-Modus." #. type: deftypevr -#: guix-git/doc/guix.texi:29564 +#: guix-git/doc/guix.texi:29901 +#, fuzzy, no-wrap +#| msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-bat" +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer start-charge-thresh-bat0" +msgstr "{@code{tlp-configuration}-Parameter} Vielleicht-Nichtnegative-ganze-Zahl cpu-max-perf-on-bat" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29903 +msgid "Percentage when battery 0 should begin charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29908 +#, fuzzy, no-wrap +#| msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-bat" +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer stop-charge-thresh-bat0" +msgstr "{@code{tlp-configuration}-Parameter} Vielleicht-Nichtnegative-ganze-Zahl cpu-max-perf-on-bat" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29910 +msgid "Percentage when battery 0 should stop charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29915 +#, fuzzy, no-wrap +#| msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-bat" +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer start-charge-thresh-bat1" +msgstr "{@code{tlp-configuration}-Parameter} Vielleicht-Nichtnegative-ganze-Zahl cpu-max-perf-on-bat" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29917 +msgid "Percentage when battery 1 should begin charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29922 +#, fuzzy, no-wrap +#| msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-bat" +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer stop-charge-thresh-bat1" +msgstr "{@code{tlp-configuration}-Parameter} Vielleicht-Nichtnegative-ganze-Zahl cpu-max-perf-on-bat" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29924 +msgid "Percentage when battery 1 should stop charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29929 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-power-profile-on-ac" msgstr "{@code{tlp-configuration}-Parameter} Zeichenkette radeon-power-profile-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29567 +#: guix-git/doc/guix.texi:29932 msgid "Radeon graphics clock speed level. Alternatives are low, mid, high, auto, default." msgstr "Taktgeschwindigkeitsstufe („Clock Speed Level“) für Radeon-Grafik. Zur Auswahl stehen low (niedrig), mid (mittel), high (hoch), auto (automatisch), default (Voreinstellung)." #. type: deftypevr -#: guix-git/doc/guix.texi:29569 +#: guix-git/doc/guix.texi:29934 msgid "Defaults to @samp{\"high\"}." msgstr "Die Vorgabe ist @samp{\"high\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29572 +#: guix-git/doc/guix.texi:29937 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-power-profile-on-bat" msgstr "{@code{tlp-configuration}-Parameter} Zeichenkette radeon-power-profile-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29574 +#: guix-git/doc/guix.texi:29939 msgid "Same as @code{radeon-power-ac} but on BAT mode." msgstr "Wie @code{radeon-power-ac}, aber für den BAT-Modus." #. type: deftypevr -#: guix-git/doc/guix.texi:29576 +#: guix-git/doc/guix.texi:29941 msgid "Defaults to @samp{\"low\"}." msgstr "Die Vorgabe ist @samp{\"low\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29579 +#: guix-git/doc/guix.texi:29944 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-state-on-ac" msgstr "{@code{tlp-configuration}-Parameter} Zeichenkette radeon-dpm-state-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29582 +#: guix-git/doc/guix.texi:29947 msgid "Radeon dynamic power management method (DPM). Alternatives are battery, performance." msgstr "Methode für die dynamische Energieverwaltung („Dynamic Power Management“, DPM) auf Radeon. Zur Auswahl stehen battery (Batterie), performance (Leistung)." #. type: deftypevr -#: guix-git/doc/guix.texi:29587 +#: guix-git/doc/guix.texi:29952 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-state-on-bat" msgstr "{@code{tlp-configuration}-Parameter} Zeichenkette radeon-dpm-state-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29589 +#: guix-git/doc/guix.texi:29954 msgid "Same as @code{radeon-dpm-state-ac} but on BAT mode." msgstr "Wie @code{radeon-dpm-state-ac}, aber für den BAT-Modus." #. type: deftypevr -#: guix-git/doc/guix.texi:29591 +#: guix-git/doc/guix.texi:29956 msgid "Defaults to @samp{\"battery\"}." msgstr "Die Vorgabe ist @samp{\"battery\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29594 +#: guix-git/doc/guix.texi:29959 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-perf-level-on-ac" msgstr "{@code{tlp-configuration}-Parameter} Zeichenkette radeon-dpm-perf-level-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29596 +#: guix-git/doc/guix.texi:29961 msgid "Radeon DPM performance level. Alternatives are auto, low, high." msgstr "Leistungsstufe („Performance Level“) des Radeon-DPM@. Zur Auswahl stehen auto (automatisch), low (niedrig), high (hoch)." #. type: deftypevr -#: guix-git/doc/guix.texi:29598 guix-git/doc/guix.texi:29605 -#: guix-git/doc/guix.texi:29679 +#: guix-git/doc/guix.texi:29963 guix-git/doc/guix.texi:29970 +#: guix-git/doc/guix.texi:30044 msgid "Defaults to @samp{\"auto\"}." msgstr "Die Voreinstellung ist @samp{\"auto\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29601 +#: guix-git/doc/guix.texi:29966 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-perf-level-on-bat" msgstr "{@code{tlp-configuration}-Parameter} Zeichenkette radeon-dpm-perf-level-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29603 +#: guix-git/doc/guix.texi:29968 msgid "Same as @code{radeon-dpm-perf-ac} but on BAT mode." msgstr "Wie @code{radeon-dpm-perf-ac}, aber für den BAT-Modus." #. type: deftypevr -#: guix-git/doc/guix.texi:29608 +#: guix-git/doc/guix.texi:29973 #, no-wrap msgid "{@code{tlp-configuration} parameter} on-off-boolean wifi-pwr-on-ac?" msgstr "{@code{tlp-configuration}-Parameter} An-Aus-Boolescher-Ausdruck wifi-pwr-on-ac?" #. type: deftypevr -#: guix-git/doc/guix.texi:29610 +#: guix-git/doc/guix.texi:29975 msgid "Wifi power saving mode." msgstr "WLAN-Stromsparmodus." #. type: deftypevr -#: guix-git/doc/guix.texi:29615 +#: guix-git/doc/guix.texi:29980 #, no-wrap msgid "{@code{tlp-configuration} parameter} on-off-boolean wifi-pwr-on-bat?" msgstr "{@code{tlp-configuration}-Parameter} An-Aus-Boolescher-Ausdruck wifi-pwr-on-bat?" #. type: deftypevr -#: guix-git/doc/guix.texi:29617 +#: guix-git/doc/guix.texi:29982 msgid "Same as @code{wifi-power-ac?} but on BAT mode." msgstr "Wie @code{wifi-power-ac?}, aber für den BAT-Modus." #. type: deftypevr -#: guix-git/doc/guix.texi:29622 +#: guix-git/doc/guix.texi:29987 #, no-wrap msgid "{@code{tlp-configuration} parameter} y-n-boolean wol-disable?" msgstr "{@code{tlp-configuration}-Parameter} Ja-Nein-Boolescher-Ausdruck wol-disable?" #. type: deftypevr -#: guix-git/doc/guix.texi:29624 +#: guix-git/doc/guix.texi:29989 msgid "Disable wake on LAN." msgstr "Rechnerstart nach Netzwerkanforderung („Wake on LAN“) deaktivieren." #. type: deftypevr -#: guix-git/doc/guix.texi:29629 +#: guix-git/doc/guix.texi:29994 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer sound-power-save-on-ac" msgstr "{@code{tlp-configuration}-Parameter} Nichtnegative-ganze-Zahl sound-power-save-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29632 +#: guix-git/doc/guix.texi:29997 msgid "Timeout duration in seconds before activating audio power saving on Intel HDA and AC97 devices. A value of 0 disables power saving." msgstr "Nach wie vielen Sekunden der Stromsparmodus für die Audioverarbeitung auf Intel-HDA- und AC97-Geräten aktiviert wird. Ein Wert von 0 deaktiviert den Stromsparmodus." #. type: deftypevr -#: guix-git/doc/guix.texi:29637 +#: guix-git/doc/guix.texi:30002 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer sound-power-save-on-bat" msgstr "{@code{tlp-configuration}-Parameter} Nichtnegative-ganze-Zahl sound-power-save-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29639 +#: guix-git/doc/guix.texi:30004 msgid "Same as @code{sound-powersave-ac} but on BAT mode." msgstr "Wie @code{sound-powersave-ac}, aber für den BAT-Modus." #. type: deftypevr -#: guix-git/doc/guix.texi:29644 +#: guix-git/doc/guix.texi:30009 #, no-wrap msgid "{@code{tlp-configuration} parameter} y-n-boolean sound-power-save-controller?" msgstr "{@code{tlp-configuration}-Parameter} Ja-Nein-Boolescher-Ausdruck sound-power-save-controller?" #. type: deftypevr -#: guix-git/doc/guix.texi:29646 +#: guix-git/doc/guix.texi:30011 msgid "Disable controller in powersaving mode on Intel HDA devices." msgstr "Steuerungseinheit („Controller“) im Stromsparmodus auf Intel-HDA-Geräten deaktivieren." #. type: deftypevr -#: guix-git/doc/guix.texi:29651 +#: guix-git/doc/guix.texi:30016 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean bay-poweroff-on-bat?" msgstr "{@code{tlp-configuration}-Parameter} Boolescher-Ausdruck bay-poweroff-on-bat?" #. type: deftypevr -#: guix-git/doc/guix.texi:29655 +#: guix-git/doc/guix.texi:30020 msgid "Enable optical drive in UltraBay/MediaBay on BAT mode. Drive can be powered on again by releasing (and reinserting) the eject lever or by pressing the disc eject button on newer models." msgstr "Optisches Laufwerk in einer UltraBay/MediaBay im BAT-Modus aktivieren. Laufwerke können erneut gestartet werden, indem Sie den Hebel zum Auswerfen lösen (und wieder einsetzen) oder, auf neueren Modellen, indem Sie den Knopf zum Auswerfen des eingelegten Datenträgers drücken." #. type: deftypevr -#: guix-git/doc/guix.texi:29660 +#: guix-git/doc/guix.texi:30025 #, no-wrap msgid "{@code{tlp-configuration} parameter} string bay-device" msgstr "{@code{tlp-configuration}-Parameter} Zeichenkette bay-device" #. type: deftypevr -#: guix-git/doc/guix.texi:29662 +#: guix-git/doc/guix.texi:30027 msgid "Name of the optical drive device to power off." msgstr "Name des Geräts für das optische Laufwerk, das gestartet werden soll." #. type: deftypevr -#: guix-git/doc/guix.texi:29664 +#: guix-git/doc/guix.texi:30029 msgid "Defaults to @samp{\"sr0\"}." msgstr "Die Vorgabe ist @samp{\"sr0\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29667 +#: guix-git/doc/guix.texi:30032 #, no-wrap msgid "{@code{tlp-configuration} parameter} string runtime-pm-on-ac" msgstr "{@code{tlp-configuration}-Parameter} Zeichenkette runtime-pm-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29670 +#: guix-git/doc/guix.texi:30035 msgid "Runtime Power Management for PCI(e) bus devices. Alternatives are on and auto." msgstr "Laufzeitenergieverwaltung („Runtime Power Management“) von PCI(e)-Bus-Geräten. Zur Auswahl stehen on (angeschaltet) und auto (automatisch)." #. type: deftypevr -#: guix-git/doc/guix.texi:29672 +#: guix-git/doc/guix.texi:30037 msgid "Defaults to @samp{\"on\"}." msgstr "Die Vorgabe ist @samp{\"on\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29675 +#: guix-git/doc/guix.texi:30040 #, no-wrap msgid "{@code{tlp-configuration} parameter} string runtime-pm-on-bat" msgstr "{@code{tlp-configuration}-Parameter} Zeichenkette runtime-pm-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29677 +#: guix-git/doc/guix.texi:30042 msgid "Same as @code{runtime-pm-ac} but on BAT mode." msgstr "Wie @code{runtime-pm-ac}, aber für den BAT-Modus." #. type: deftypevr -#: guix-git/doc/guix.texi:29682 +#: guix-git/doc/guix.texi:30047 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean runtime-pm-all?" msgstr "{@code{tlp-configuration}-Parameter} Boolescher-Ausdruck runtime-pm-all?" # TODO This option does not seem to exist anymore. #. type: deftypevr -#: guix-git/doc/guix.texi:29685 +#: guix-git/doc/guix.texi:30050 msgid "Runtime Power Management for all PCI(e) bus devices, except blacklisted ones." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29690 +#: guix-git/doc/guix.texi:30055 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list runtime-pm-blacklist" msgstr "{@code{tlp-configuration}-Parameter} Vielleicht-Leerzeichengetrennte-Zeichenketten-Liste runtime-pm-blacklist" #. type: deftypevr -#: guix-git/doc/guix.texi:29692 +#: guix-git/doc/guix.texi:30057 msgid "Exclude specified PCI(e) device addresses from Runtime Power Management." msgstr "Die angegebenen PCI(e)-Geräteadressen von der Laufzeitenergieverwaltung („Runtime Power Management“) ausnehmen." #. type: deftypevr -#: guix-git/doc/guix.texi:29697 +#: guix-git/doc/guix.texi:30062 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list runtime-pm-driver-blacklist" msgstr "{@code{tlp-configuration}-Parameter} Leerzeichengetrennte-Zeichenketten-Liste runtime-pm-driver-blacklist" #. type: deftypevr -#: guix-git/doc/guix.texi:29700 +#: guix-git/doc/guix.texi:30065 msgid "Exclude PCI(e) devices assigned to the specified drivers from Runtime Power Management." msgstr "PCI(e)-Geräte von der Laufzeitenergieverwaltung („Runtime Power Management“) ausnehmen, wenn sie den angegebenen Treibern zugeordnet sind." #. type: deftypevr -#: guix-git/doc/guix.texi:29703 +#: guix-git/doc/guix.texi:30068 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean usb-autosuspend?" msgstr "{@code{tlp-configuration}-Parameter} Boolescher-Ausdruck usb-autosuspend?" #. type: deftypevr -#: guix-git/doc/guix.texi:29705 +#: guix-git/doc/guix.texi:30070 msgid "Enable USB autosuspend feature." msgstr "USB-Geräte automatisch in den Ruhezustand versetzen („USB-Autosuspend“)." #. type: deftypevr -#: guix-git/doc/guix.texi:29710 +#: guix-git/doc/guix.texi:30075 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string usb-blacklist" msgstr "{@code{tlp-configuration}-Parameter} Vielleicht-Zeichenkette usb-blacklist" #. type: deftypevr -#: guix-git/doc/guix.texi:29712 +#: guix-git/doc/guix.texi:30077 msgid "Exclude specified devices from USB autosuspend." msgstr "Die angegebenen Geräte vom USB-Autosuspend ausnehmen." #. type: deftypevr -#: guix-git/doc/guix.texi:29717 +#: guix-git/doc/guix.texi:30082 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean usb-blacklist-wwan?" msgstr "{@code{tlp-configuration}-Parameter} Boolescher-Ausdruck usb-blacklist-wwan?" #. type: deftypevr -#: guix-git/doc/guix.texi:29719 +#: guix-git/doc/guix.texi:30084 msgid "Exclude WWAN devices from USB autosuspend." msgstr "WWAN-Geräte vom USB-Autosuspend ausnehmen." #. type: deftypevr -#: guix-git/doc/guix.texi:29724 +#: guix-git/doc/guix.texi:30089 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string usb-whitelist" msgstr "{@code{tlp-configuration}-Parameter} Vielleicht-Zeichenkette usb-whitelist" #. type: deftypevr -#: guix-git/doc/guix.texi:29727 +#: guix-git/doc/guix.texi:30092 msgid "Include specified devices into USB autosuspend, even if they are already excluded by the driver or via @code{usb-blacklist-wwan?}." msgstr "Für die angegebenen Geräte USB-Autosuspend aktivieren, selbst wenn Autosuspend durch den Treiber oder wegen @code{usb-blacklist-wwan?} deaktiviert werden würde." #. type: deftypevr -#: guix-git/doc/guix.texi:29732 +#: guix-git/doc/guix.texi:30097 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean usb-autosuspend-disable-on-shutdown?" msgstr "{@code{tlp-configuration}-Parameter} Vielleicht-Boolescher-Ausdruck usb-autosuspend-disable-on-shutdown?" #. type: deftypevr -#: guix-git/doc/guix.texi:29734 +#: guix-git/doc/guix.texi:30099 msgid "Enable USB autosuspend before shutdown." msgstr "USB-Autosuspend vor dem Herunterfahren aktivieren." #. type: deftypevr -#: guix-git/doc/guix.texi:29739 +#: guix-git/doc/guix.texi:30104 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean restore-device-state-on-startup?" msgstr "{@code{tlp-configuration}-Parameter} Boolescher-Ausdruck restore-device-state-on-startup?" #. type: deftypevr -#: guix-git/doc/guix.texi:29742 +#: guix-git/doc/guix.texi:30107 msgid "Restore radio device state (bluetooth, wifi, wwan) from previous shutdown on system startup." msgstr "Zustand von funkfähigen Geräten (Bluetooth, WLAN, WWAN) vom letzten Herunterfahren beim Hochfahren des Systems wiederherstellen." #. type: cindex -#: guix-git/doc/guix.texi:29747 +#: guix-git/doc/guix.texi:30112 #, no-wrap msgid "thermald" msgstr "thermald" #. type: cindex -#: guix-git/doc/guix.texi:29748 +#: guix-git/doc/guix.texi:30113 #, no-wrap msgid "CPU frequency scaling with thermald" msgstr "CPU-Frequenzskalierung mit Thermald" #. type: subsubheading -#: guix-git/doc/guix.texi:29749 +#: guix-git/doc/guix.texi:30114 #, no-wrap msgid "Thermald daemon" msgstr "Thermald-Daemon" #. type: Plain text -#: guix-git/doc/guix.texi:29753 +#: guix-git/doc/guix.texi:30118 msgid "The @code{(gnu services pm)} module provides an interface to thermald, a CPU frequency scaling service which helps prevent overheating." msgstr "Das Modul @code{(gnu services pm)} stellt eine Schnittstelle zu Thermald zur Verfügung, einem Dienst zur CPU-Frequenzskalierung („CPU Frequency Scaling“), mit dem Überhitzung verhindert wird." #. type: defvr -#: guix-git/doc/guix.texi:29754 +#: guix-git/doc/guix.texi:30119 #, no-wrap msgid "{Scheme Variable} thermald-service-type" msgstr "{Scheme-Variable} thermald-service-type" #. type: defvr -#: guix-git/doc/guix.texi:29759 +#: guix-git/doc/guix.texi:30124 msgid "This is the service type for @uref{https://01.org/linux-thermal-daemon/, thermald}, the Linux Thermal Daemon, which is responsible for controlling the thermal state of processors and preventing overheating." msgstr "Dies ist der Diensttyp für @uref{https://01.org/linux-thermal-daemon/, Thermald}, den @dfn{Linux Thermal Daemon}, der für die Hitzeregulierung von Prozessoren zuständig ist. Er ändert deren thermischen Zustand („Thermal State“) und verhindert, dass sie überhitzen." #. type: deftp -#: guix-git/doc/guix.texi:29761 +#: guix-git/doc/guix.texi:30126 #, no-wrap msgid "{Data Type} thermald-configuration" msgstr "{Datentyp} thermald-configuration" #. type: deftp -#: guix-git/doc/guix.texi:29763 +#: guix-git/doc/guix.texi:30128 msgid "Data type representing the configuration of @code{thermald-service-type}." msgstr "Datentyp, der die Konfiguration des @code{thermald-service-type} repräsentiert." #. type: item -#: guix-git/doc/guix.texi:29765 +#: guix-git/doc/guix.texi:30130 #, no-wrap msgid "@code{ignore-cpuid-check?} (default: @code{#f})" msgstr "@code{ignore-cpuid-check?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29767 +#: guix-git/doc/guix.texi:30132 msgid "Ignore cpuid check for supported CPU models." msgstr "Ergebnis der Prüfung per CPUID auf unterstützte Prozessormodelle ignorieren." #. type: item -#: guix-git/doc/guix.texi:29768 +#: guix-git/doc/guix.texi:30133 #, no-wrap msgid "@code{thermald} (default: @var{thermald})" msgstr "@code{thermald} (Vorgabe: @var{thermald})" #. type: table -#: guix-git/doc/guix.texi:29770 +#: guix-git/doc/guix.texi:30135 msgid "Package object of thermald." msgstr "Paketobjekt von thermald." #. type: Plain text -#: guix-git/doc/guix.texi:29779 +#: guix-git/doc/guix.texi:30144 msgid "The @code{(gnu services audio)} module provides a service to start MPD (the Music Player Daemon)." msgstr "Das Modul @code{(gnu services audio)} stellt einen Dienst zur Verfügung, um MPD (den Music Player Daemon) zu starten." #. type: cindex -#: guix-git/doc/guix.texi:29780 +#: guix-git/doc/guix.texi:30145 #, no-wrap msgid "mpd" msgstr "mpd" #. type: subsubheading -#: guix-git/doc/guix.texi:29781 +#: guix-git/doc/guix.texi:30146 #, no-wrap msgid "Music Player Daemon" msgstr "Music Player Daemon" #. type: Plain text -#: guix-git/doc/guix.texi:29786 +#: guix-git/doc/guix.texi:30151 msgid "The Music Player Daemon (MPD) is a service that can play music while being controlled from the local machine or over the network by a variety of clients." msgstr "Der Music Player Daemon (MPD) ist ein Dienst, der Musik abspielen kann und der dabei vom lokalen Rechner oder über das Netzwerk durch verschiedene Clients angesteuert werden kann." #. type: Plain text -#: guix-git/doc/guix.texi:29789 +#: guix-git/doc/guix.texi:30154 msgid "The following example shows how one might run @code{mpd} as user @code{\"bob\"} on port @code{6666}. It uses pulseaudio for output." msgstr "Das folgende Beispiel zeigt, wie man @code{mpd} als Benutzer @code{\"bob\"} auf Port @code{6666} ausführen könnte. Dabei wird Pulseaudio zur Ausgabe verwendet." #. type: lisp -#: guix-git/doc/guix.texi:29795 +#: guix-git/doc/guix.texi:30160 #, no-wrap msgid "" "(service mpd-service-type\n" @@ -56025,215 +56758,215 @@ msgstr "" " (port \"6666\")))\n" #. type: defvr -#: guix-git/doc/guix.texi:29797 +#: guix-git/doc/guix.texi:30162 #, no-wrap msgid "{Scheme Variable} mpd-service-type" msgstr "{Scheme-Variable} mpd-service-type" #. type: defvr -#: guix-git/doc/guix.texi:29799 +#: guix-git/doc/guix.texi:30164 msgid "The service type for @command{mpd}" msgstr "Der Diensttyp für @command{mpd}." #. type: deftp -#: guix-git/doc/guix.texi:29801 +#: guix-git/doc/guix.texi:30166 #, no-wrap msgid "{Data Type} mpd-configuration" msgstr "{Datentyp} mpd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:29803 +#: guix-git/doc/guix.texi:30168 msgid "Data type representing the configuration of @command{mpd}." msgstr "Datentyp, der die Konfiguration von @command{mpd} repräsentiert." #. type: item -#: guix-git/doc/guix.texi:29805 +#: guix-git/doc/guix.texi:30170 #, no-wrap msgid "@code{user} (default: @code{\"mpd\"})" msgstr "@code{user} (Vorgabe: @code{\"mpd\"})" #. type: table -#: guix-git/doc/guix.texi:29807 +#: guix-git/doc/guix.texi:30172 msgid "The user to run mpd as." msgstr "Das Benutzerkonto, mit dem mpd ausgeführt wird." #. type: item -#: guix-git/doc/guix.texi:29808 +#: guix-git/doc/guix.texi:30173 #, no-wrap msgid "@code{music-dir} (default: @code{\"~/Music\"})" msgstr "@code{music-dir} (Vorgabe: @code{\"~/Music\"})" #. type: table -#: guix-git/doc/guix.texi:29810 +#: guix-git/doc/guix.texi:30175 msgid "The directory to scan for music files." msgstr "Das Verzeichis, in dem nach Musikdateien gesucht wird." #. type: item -#: guix-git/doc/guix.texi:29811 +#: guix-git/doc/guix.texi:30176 #, no-wrap msgid "@code{playlist-dir} (default: @code{\"~/.mpd/playlists\"})" msgstr "@code{playlist-dir} (Vorgabe: @code{\"~/.mpd/playlists\"})" #. type: table -#: guix-git/doc/guix.texi:29813 +#: guix-git/doc/guix.texi:30178 msgid "The directory to store playlists." msgstr "Das Verzeichnis, um Wiedergabelisten („Playlists“) zu speichern." #. type: item -#: guix-git/doc/guix.texi:29814 +#: guix-git/doc/guix.texi:30179 #, no-wrap msgid "@code{db-file} (default: @code{\"~/.mpd/tag_cache\"})" msgstr "@code{db-file} (Vorgabe: @code{\"~/.mpd/tag_cache\"})" #. type: table -#: guix-git/doc/guix.texi:29816 +#: guix-git/doc/guix.texi:30181 msgid "The location of the music database." msgstr "Der Ort, an dem die Musikdatenbank gespeichert wird." #. type: item -#: guix-git/doc/guix.texi:29817 +#: guix-git/doc/guix.texi:30182 #, no-wrap msgid "@code{state-file} (default: @code{\"~/.mpd/state\"})" msgstr "@code{state-file} (Vorgabe: @code{\"~/.mpd/state\"})" #. type: table -#: guix-git/doc/guix.texi:29819 +#: guix-git/doc/guix.texi:30184 msgid "The location of the file that stores current MPD's state." msgstr "Der Ort, an dem die Datei mit dem aktuellen Zustand von MPD gespeichert wird." #. type: item -#: guix-git/doc/guix.texi:29820 +#: guix-git/doc/guix.texi:30185 #, no-wrap msgid "@code{sticker-file} (default: @code{\"~/.mpd/sticker.sql\"})" msgstr "@code{sticker-file} (Vorgabe: @code{\"~/.mpd/sticker.sql\"})" #. type: table -#: guix-git/doc/guix.texi:29822 +#: guix-git/doc/guix.texi:30187 msgid "The location of the sticker database." msgstr "Der Ort, an dem die Sticker-Datenbank gespeichert wird." #. type: item -#: guix-git/doc/guix.texi:29823 +#: guix-git/doc/guix.texi:30188 #, no-wrap msgid "@code{port} (default: @code{\"6600\"})" msgstr "@code{port} (Vorgabe: @code{\"6600\"})" #. type: table -#: guix-git/doc/guix.texi:29825 +#: guix-git/doc/guix.texi:30190 msgid "The port to run mpd on." msgstr "Der Port, auf dem mpd ausgeführt wird." #. type: item -#: guix-git/doc/guix.texi:29826 +#: guix-git/doc/guix.texi:30191 #, no-wrap msgid "@code{address} (default: @code{\"any\"})" msgstr "@code{address} (Vorgabe: @code{\"any\"})" #. type: table -#: guix-git/doc/guix.texi:29829 +#: guix-git/doc/guix.texi:30194 msgid "The address that mpd will bind to. To use a Unix domain socket, an absolute path can be specified here." msgstr "Die Adresse, an die sich mpd binden wird. Um einen Unix-Socket zu benutzen, kann hier ein absoluter Pfad angegeben werden." #. type: item -#: guix-git/doc/guix.texi:29830 +#: guix-git/doc/guix.texi:30195 #, no-wrap msgid "@code{outputs} (default: @code{\"(list (mpd-output))\"})" msgstr "@code{outputs} (Vorgabe: @code{\"(list (mpd-output))\"})" #. type: table -#: guix-git/doc/guix.texi:29832 +#: guix-git/doc/guix.texi:30197 msgid "The audio outputs that MPD can use. By default this is a single output using pulseaudio." msgstr "Welche Tonausgaben MPD benutzen kann. Vorgegeben ist eine einzelne Ausgabe, die Pulseaudio benutzt." #. type: deftp -#: guix-git/doc/guix.texi:29836 +#: guix-git/doc/guix.texi:30201 #, no-wrap msgid "{Data Type} mpd-output" msgstr "{Datentyp} mpd-output" #. type: deftp -#: guix-git/doc/guix.texi:29838 +#: guix-git/doc/guix.texi:30203 msgid "Data type representing an @command{mpd} audio output." msgstr "Datentyp, der eine Tonausgabe von @command{mpd} repräsentiert." #. type: item -#: guix-git/doc/guix.texi:29840 +#: guix-git/doc/guix.texi:30205 #, no-wrap msgid "@code{name} (default: @code{\"MPD\"})" msgstr "@code{name} (Vorgabe: @code{\"MPD\"})" #. type: table -#: guix-git/doc/guix.texi:29842 +#: guix-git/doc/guix.texi:30207 msgid "The name of the audio output." msgstr "Der Name der Tonausgabe." #. type: item -#: guix-git/doc/guix.texi:29843 +#: guix-git/doc/guix.texi:30208 #, no-wrap msgid "@code{type} (default: @code{\"pulse\"})" msgstr "@code{type} (Vorgabe: @code{\"pulse\"})" #. type: table -#: guix-git/doc/guix.texi:29845 +#: guix-git/doc/guix.texi:30210 msgid "The type of audio output." msgstr "Der Typ der Tonausgabe." #. type: item -#: guix-git/doc/guix.texi:29846 +#: guix-git/doc/guix.texi:30211 #, no-wrap msgid "@code{enabled?} (default: @code{#t})" msgstr "@code{enabled?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:29851 +#: guix-git/doc/guix.texi:30216 msgid "Specifies whether this audio output is enabled when MPD is started. By default, all audio outputs are enabled. This is just the default setting when there is no state file; with a state file, the previous state is restored." msgstr "Gibt an, ob diese Tonausgabe aktiviert sein soll, wenn MPD gestartet wird. Vorgegeben ist, alle Tonausgaben zu aktivieren. Das entspricht der Voreinstellung, wenn keine Zustandsdatei existiert; mit Zustandsdatei wird der Zustand von früher wiederhergestellt." #. type: item -#: guix-git/doc/guix.texi:29852 +#: guix-git/doc/guix.texi:30217 #, no-wrap msgid "@code{tags?} (default: @code{#t})" msgstr "@code{tags?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:29856 +#: guix-git/doc/guix.texi:30221 msgid "If set to @code{#f}, then MPD will not send tags to this output. This is only useful for output plugins that can receive tags, for example the @code{httpd} output plugin." msgstr "Wenn es auf @code{#f} steht, sendet MPD keine Tags an diese Ausgabe. Dies wird nur berücksichtigt, wenn das Ausgabe-Plugin Tags empfangen kann, wie beim @code{httpd}-Ausgabe-Plugin." #. type: item -#: guix-git/doc/guix.texi:29857 +#: guix-git/doc/guix.texi:30222 #, no-wrap msgid "@code{always-on?} (default: @code{#f})" msgstr "@code{always-on?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29861 +#: guix-git/doc/guix.texi:30226 msgid "If set to @code{#t}, then MPD attempts to keep this audio output always open. This may be useful for streaming servers, when you don’t want to disconnect all listeners even when playback is accidentally stopped." msgstr "Wenn es auf @code{#t} steht, versucht MPD, diese Tonausgabe immer offen zu lassen. Das kann bei Streaming-Servern helfen, wo man @emph{nicht} will, dass die Verbindung zu allen Zuhörern abbricht, nur weil das Abspielen aus irgendeinem Grund angehalten wurde." #. type: code{#1} -#: guix-git/doc/guix.texi:29862 +#: guix-git/doc/guix.texi:30227 #, no-wrap msgid "mixer-type" msgstr "mixer-type" #. type: table -#: guix-git/doc/guix.texi:29868 +#: guix-git/doc/guix.texi:30233 msgid "This field accepts a symbol that specifies which mixer should be used for this audio output: the @code{hardware} mixer, the @code{software} mixer, the @code{null} mixer (allows setting the volume, but with no effect; this can be used as a trick to implement an external mixer External Mixer) or no mixer (@code{none})." msgstr "Für dieses Feld wird ein Symbol akzeptiert, das das für diese Tonausgabe zu benutzende Mischpult („Mixer“) bezeichnet. Zur Wahl stehen das @code{hardware}-Mischpult, das @code{software}-Mischpult, das @code{null}-Mischpult oder kein Mischpult (@code{none}). Mit dem @code{null}-Mischpult kann die Lautstärke eingestellt werden, aber ohne Auswirkung; das kann als Trick benutzt werden, um ein externes Mischpult zu implementieren." #. type: table -#: guix-git/doc/guix.texi:29872 +#: guix-git/doc/guix.texi:30237 msgid "An association list of option symbols to string values to be appended to the audio output configuration." msgstr "Eine assoziative Liste, die Optionssymbole auf Zeichenketten abbildet. Sie wird an die Tonausgabenkonfiguration angehängt." #. type: Plain text -#: guix-git/doc/guix.texi:29878 +#: guix-git/doc/guix.texi:30243 msgid "The following example shows a configuration of @code{mpd} that provides an HTTP audio streaming output." msgstr "Das folgende Beispiel zeigt eine Konfiguration von @code{mpd}, die eine HTTP-Audiostreaming-Tonausgabe anbietet." #. type: lisp -#: guix-git/doc/guix.texi:29890 +#: guix-git/doc/guix.texi:30255 #, no-wrap msgid "" "(service mpd-service-type\n" @@ -56259,34 +56992,34 @@ msgstr "" " (port . \"8080\"))))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:29899 +#: guix-git/doc/guix.texi:30264 msgid "The @code{(gnu services virtualization)} module provides services for the libvirt and virtlog daemons, as well as other virtualization-related services." msgstr "Das Modul @code{(gnu services virtualization)} bietet Dienste für die Daemons von libvirt und virtlog, sowie andere virtualisierungsbezogene Dienste." #. type: subsubheading -#: guix-git/doc/guix.texi:29900 +#: guix-git/doc/guix.texi:30265 #, no-wrap msgid "Libvirt daemon" msgstr "Libvirt-Daemon" #. type: Plain text -#: guix-git/doc/guix.texi:29905 +#: guix-git/doc/guix.texi:30270 msgid "@code{libvirtd} is the server side daemon component of the libvirt virtualization management system. This daemon runs on host servers and performs required management tasks for virtualized guests." msgstr "@code{libvirtd} ist die serverseitige Daemon-Komponente des libvirt-Systems zur Virtualisierungsverwaltung. Dieser Daemon läuft auf als Wirt dienenden Servern und führt anfallende Verwaltungsaufgaben für virtualisierte Gäste durch." #. type: deffn -#: guix-git/doc/guix.texi:29906 +#: guix-git/doc/guix.texi:30271 #, no-wrap msgid "{Scheme Variable} libvirt-service-type" msgstr "{Scheme-Variable} libvirt-service-type" #. type: deffn -#: guix-git/doc/guix.texi:29909 +#: guix-git/doc/guix.texi:30274 msgid "This is the type of the @uref{https://libvirt.org, libvirt daemon}. Its value must be a @code{libvirt-configuration}." msgstr "Dies ist der Diensttyp des @uref{https://libvirt.org, libvirt-Daemons}. Sein Wert muss ein @code{libvirt-configuration}-Verbundsobjekt sein." #. type: lisp -#: guix-git/doc/guix.texi:29915 +#: guix-git/doc/guix.texi:30280 #, no-wrap msgid "" "(service libvirt-service-type\n" @@ -56300,870 +57033,870 @@ msgstr "" " (tls-port \"16555\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:29920 +#: guix-git/doc/guix.texi:30285 msgid "Available @code{libvirt-configuration} fields are:" msgstr "Verfügbare @code{libvirt-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:29921 +#: guix-git/doc/guix.texi:30286 #, no-wrap msgid "{@code{libvirt-configuration} parameter} package libvirt" msgstr "{@code{libvirt-configuration}-Parameter} „package“ libvirt" #. type: deftypevr -#: guix-git/doc/guix.texi:29923 +#: guix-git/doc/guix.texi:30288 msgid "Libvirt package." msgstr "Libvirt-Paket." #. type: deftypevr -#: guix-git/doc/guix.texi:29926 +#: guix-git/doc/guix.texi:30291 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean listen-tls?" msgstr "{@code{libvirt-configuration}-Parameter} Boolescher-Ausdruck listen-tls?" #. type: deftypevr -#: guix-git/doc/guix.texi:29929 +#: guix-git/doc/guix.texi:30294 msgid "Flag listening for secure TLS connections on the public TCP/IP port. You must set @code{listen} for this to have any effect." msgstr "Option zum Lauschen auf sichere TLS-Verbindungen über den öffentlichen TCP/IP-Port. @code{listen} muss gesetzt sein, damit dies eine Wirkung hat." #. type: deftypevr -#: guix-git/doc/guix.texi:29932 +#: guix-git/doc/guix.texi:30297 msgid "It is necessary to setup a CA and issue server certificates before using this capability." msgstr "Bevor Sie diese Funktionalität nutzen können, muss eine Zertifikatsautorität eingerichtet worden sein und Server-Zertifikate ausgestellt worden sein." #. type: deftypevr -#: guix-git/doc/guix.texi:29937 +#: guix-git/doc/guix.texi:30302 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean listen-tcp?" msgstr "{@code{libvirt-configuration}-Parameter} Boolescher-Ausdruck listen-tcp?" #. type: deftypevr -#: guix-git/doc/guix.texi:29940 +#: guix-git/doc/guix.texi:30305 msgid "Listen for unencrypted TCP connections on the public TCP/IP port. You must set @code{listen} for this to have any effect." msgstr "Auf unverschlüsselte TCP-Verbindungen auf dem öffentlichen TCP/IP-Port lauschen. @code{listen} muss gesetzt sein, damit dies eine Wirkung hat." #. type: deftypevr -#: guix-git/doc/guix.texi:29944 +#: guix-git/doc/guix.texi:30309 msgid "Using the TCP socket requires SASL authentication by default. Only SASL mechanisms which support data encryption are allowed. This is DIGEST_MD5 and GSSAPI (Kerberos5)." msgstr "Nach Voreinstellung kann auf dem TCP-Socket nur gelauscht werden, wenn SASL-Authentifizierung möglich ist. Nur solche SASL-Mechanismen, die Datenverschlüsselung unterstützen, sind zugelassen. Das sind DIGEST_MD5 und GSSAPI (Kerberos5)." #. type: deftypevr -#: guix-git/doc/guix.texi:29949 +#: guix-git/doc/guix.texi:30314 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tls-port" msgstr "{@code{libvirt-configuration}-Parameter} Zeichenkette tls-port" #. type: deftypevr -#: guix-git/doc/guix.texi:29952 +#: guix-git/doc/guix.texi:30317 msgid "Port for accepting secure TLS connections. This can be a port number, or service name." msgstr "Der Port, um sichere TLS-Verbindungen zu akzeptieren. Dies kann eine Portnummer oder ein Dienstname sein." #. type: deftypevr -#: guix-git/doc/guix.texi:29954 +#: guix-git/doc/guix.texi:30319 msgid "Defaults to @samp{\"16514\"}." msgstr "Die Vorgabe ist @samp{\"16514\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29957 +#: guix-git/doc/guix.texi:30322 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tcp-port" msgstr "{@code{libvirt-configuration}-Parameter} Zeichenkette tcp-port" #. type: deftypevr -#: guix-git/doc/guix.texi:29960 +#: guix-git/doc/guix.texi:30325 msgid "Port for accepting insecure TCP connections. This can be a port number, or service name." msgstr "Der Port, um unsichere TCP-Verbindungen zu akzeptieren. Dies kann eine Portnummer oder ein Dienstname sein." #. type: deftypevr -#: guix-git/doc/guix.texi:29962 +#: guix-git/doc/guix.texi:30327 msgid "Defaults to @samp{\"16509\"}." msgstr "Die Vorgabe ist @samp{\"16509\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29965 +#: guix-git/doc/guix.texi:30330 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string listen-addr" msgstr "{@code{libvirt-configuration}-Parameter} Zeichenkette listen-addr" #. type: deftypevr -#: guix-git/doc/guix.texi:29967 +#: guix-git/doc/guix.texi:30332 msgid "IP address or hostname used for client connections." msgstr "IP-Adresse oder Rechnername („Hostname“), der für von Clients ausgehende Verbindungen benutzt wird." #. type: deftypevr -#: guix-git/doc/guix.texi:29972 +#: guix-git/doc/guix.texi:30337 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean mdns-adv?" msgstr "{@code{libvirt-configuration}-Parameter} Boolescher-Ausdruck mdns-adv?" #. type: deftypevr -#: guix-git/doc/guix.texi:29974 +#: guix-git/doc/guix.texi:30339 msgid "Flag toggling mDNS advertisement of the libvirt service." msgstr "Einstellung, ob der libvirt-Dienst mDNS-Mitteilungen sendet." #. type: deftypevr -#: guix-git/doc/guix.texi:29977 +#: guix-git/doc/guix.texi:30342 msgid "Alternatively can disable for all services on a host by stopping the Avahi daemon." msgstr "Dies kann alternativ für alle Dienste auf einem Rechner deaktiviert werden, indem man den Avahi-Daemon anhält." #. type: deftypevr -#: guix-git/doc/guix.texi:29982 +#: guix-git/doc/guix.texi:30347 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string mdns-name" msgstr "{@code{libvirt-configuration}-Parameter} Zeichenkette mdns-name" #. type: deftypevr -#: guix-git/doc/guix.texi:29985 +#: guix-git/doc/guix.texi:30350 msgid "Default mDNS advertisement name. This must be unique on the immediate broadcast network." msgstr "Der voreingestellte Name in mDNS-Mitteilungen. Er muss auf dem direkten Broadcast-Netzwerk eindeutig sein." #. type: deftypevr -#: guix-git/doc/guix.texi:29987 +#: guix-git/doc/guix.texi:30352 msgid "Defaults to @samp{\"Virtualization Host \"}." msgstr "Die Vorgabe ist @samp{\"Virtualization Host \"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29990 +#: guix-git/doc/guix.texi:30355 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-group" msgstr "{@code{libvirt-configuration}-Parameter} Zeichenkette unix-sock-group" #. type: deftypevr -#: guix-git/doc/guix.texi:29994 +#: guix-git/doc/guix.texi:30359 msgid "UNIX domain socket group ownership. This can be used to allow a 'trusted' set of users access to management capabilities without becoming root." msgstr "Besitzergruppe des UNIX-Sockets. Diese Einstellung kann benutzt werden, um einer als vertrauenswürdig geltenden Gruppe von Benutzern Zugriff auf Verwaltungsfunktionen zu gewähren, ohne dass diese als Administratornutzer root ausgeführt werden müssen." #. type: deftypevr -#: guix-git/doc/guix.texi:29999 +#: guix-git/doc/guix.texi:30364 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-ro-perms" msgstr "{@code{libvirt-configuration}-Parameter} Zeichenkette unix-sock-ro-perms" #. type: deftypevr -#: guix-git/doc/guix.texi:30002 +#: guix-git/doc/guix.texi:30367 msgid "UNIX socket permissions for the R/O socket. This is used for monitoring VM status only." msgstr "UNIX-Socket-Berechtigungen für den Socket nur mit Lesezugriff („read only“). Dies wird nur zur Überwachung des Zustands der VM benutzt." #. type: deftypevr -#: guix-git/doc/guix.texi:30004 guix-git/doc/guix.texi:30022 +#: guix-git/doc/guix.texi:30369 guix-git/doc/guix.texi:30387 msgid "Defaults to @samp{\"0777\"}." msgstr "Die Vorgabe ist @samp{\"0777\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30007 +#: guix-git/doc/guix.texi:30372 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-rw-perms" msgstr "{@code{libvirt-configuration}-Parameter} Zeichenkette unix-sock-rw-perms" #. type: deftypevr -#: guix-git/doc/guix.texi:30011 +#: guix-git/doc/guix.texi:30376 msgid "UNIX socket permissions for the R/W socket. Default allows only root. If PolicyKit is enabled on the socket, the default will change to allow everyone (eg, 0777)" msgstr "UNIX-Socket-Berechtigungen für den Socket mit Schreib- und Lesezugriff („read/write“). Nach Vorgabe kann nur der Administratornutzer root zugreifen. Wenn auf dem Socket PolicyKit aktiviert ist, wird die Vorgabe geändert, dass jeder zugreifen kann (z.B.@: zu 0777)" #. type: deftypevr -#: guix-git/doc/guix.texi:30013 +#: guix-git/doc/guix.texi:30378 msgid "Defaults to @samp{\"0770\"}." msgstr "Die Vorgabe ist @samp{\"0770\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30016 +#: guix-git/doc/guix.texi:30381 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-admin-perms" msgstr "{@code{libvirt-configuration}-Parameter} Zeichenkette unix-sock-admin-perms" #. type: deftypevr -#: guix-git/doc/guix.texi:30020 +#: guix-git/doc/guix.texi:30385 msgid "UNIX socket permissions for the admin socket. Default allows only owner (root), do not change it unless you are sure to whom you are exposing the access to." msgstr "UNIX-Socket-Berechtigungen für den Administrator-Socket. Nach Vorgabg hat nur der Besitzer (der Administratornutzer root) hierauf Zugriff; ändern Sie es nur, wenn Sie sicher wissen, wer dann alles Zugriff bekommt." #. type: deftypevr -#: guix-git/doc/guix.texi:30025 +#: guix-git/doc/guix.texi:30390 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-dir" msgstr "{@code{libvirt-configuration}-Parameter} Zeichenkette unix-sock-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:30027 +#: guix-git/doc/guix.texi:30392 msgid "The directory in which sockets will be found/created." msgstr "Das Verzeichnis, in dem Sockets gefunden werden können bzw. erstellt werden." #. type: deftypevr -#: guix-git/doc/guix.texi:30029 +#: guix-git/doc/guix.texi:30394 msgid "Defaults to @samp{\"/var/run/libvirt\"}." msgstr "Die Vorgabe ist @samp{\"/var/run/libvirt\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30032 +#: guix-git/doc/guix.texi:30397 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-unix-ro" msgstr "{@code{libvirt-configuration}-Parameter} Zeichenkette auth-unix-ro" #. type: deftypevr -#: guix-git/doc/guix.texi:30035 +#: guix-git/doc/guix.texi:30400 msgid "Authentication scheme for UNIX read-only sockets. By default socket permissions allow anyone to connect" msgstr "Authentifizierungsschema für nur lesbare UNIX-Sockets. Nach Vorgabe gestatten es die Socket-Berechtigungen jedem Nutzer, sich zu verbinden." #. type: deftypevr -#: guix-git/doc/guix.texi:30037 guix-git/doc/guix.texi:30046 +#: guix-git/doc/guix.texi:30402 guix-git/doc/guix.texi:30411 msgid "Defaults to @samp{\"polkit\"}." msgstr "Die Vorgabe ist @samp{\"polkit\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30040 +#: guix-git/doc/guix.texi:30405 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-unix-rw" msgstr "{@code{libvirt-configuration}-Parameter} Zeichenkette auth-unix-rw" #. type: deftypevr -#: guix-git/doc/guix.texi:30044 +#: guix-git/doc/guix.texi:30409 msgid "Authentication scheme for UNIX read-write sockets. By default socket permissions only allow root. If PolicyKit support was compiled into libvirt, the default will be to use 'polkit' auth." msgstr "Authentifizierungsschema für UNIX-Sockets mit Schreib- und Lesezugriff. Nach Vorgabe erlauben die Socket-Berechtigungen nur dem Administratornutzer root Zugriff. Wenn libvirt mit Unterstützung für PolicyKit kompiliert wurde, ist die Vorgabe, Authentifizierung über „polkit“ durchzuführen." #. type: deftypevr -#: guix-git/doc/guix.texi:30049 +#: guix-git/doc/guix.texi:30414 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-tcp" msgstr "{@code{libvirt-configuration}-Parameter} Zeichenkette auth-tcp" #. type: deftypevr -#: guix-git/doc/guix.texi:30053 +#: guix-git/doc/guix.texi:30418 msgid "Authentication scheme for TCP sockets. If you don't enable SASL, then all TCP traffic is cleartext. Don't do this outside of a dev/test scenario." msgstr "Authentifizierungsschema für TCP-Sockets. Wenn Sie SASL nicht aktivieren, dann wird alle TCP-Kommunikation im Klartext verschickt. Tun Sie dies @emph{nicht}, außer Sie benutzen libvirt nur als Entwickler oder zum Testen." #. type: deftypevr -#: guix-git/doc/guix.texi:30055 +#: guix-git/doc/guix.texi:30420 msgid "Defaults to @samp{\"sasl\"}." msgstr "Die Vorgabe ist @samp{\"sasl\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30058 +#: guix-git/doc/guix.texi:30423 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-tls" msgstr "{@code{libvirt-configuration}-Parameter} Zeichenkette auth-tls" #. type: deftypevr -#: guix-git/doc/guix.texi:30062 +#: guix-git/doc/guix.texi:30427 msgid "Authentication scheme for TLS sockets. TLS sockets already have encryption provided by the TLS layer, and limited authentication is done by certificates." msgstr "Authentifizierungsschema für TLS-Sockets. Für TLS-Sockets wird bereits durch die TLS-Schicht Verschlüsselung bereitgestellt und eingeschränkte Authentifizierung wird über Zertifikate durchgeführt." #. type: deftypevr -#: guix-git/doc/guix.texi:30065 +#: guix-git/doc/guix.texi:30430 msgid "It is possible to make use of any SASL authentication mechanism as well, by using 'sasl' for this option" msgstr "Es ist möglich, auch hier den SASL-Authentifizierungsmechanismus anzuwenden, indem Sie für diese Option „sasl“ eintragen." #. type: deftypevr -#: guix-git/doc/guix.texi:30067 +#: guix-git/doc/guix.texi:30432 msgid "Defaults to @samp{\"none\"}." msgstr "Die Vorgabe ist @samp{\"none\"}, d.h.@: keine zusätzliche Authentifizierung." #. type: deftypevr -#: guix-git/doc/guix.texi:30070 +#: guix-git/doc/guix.texi:30435 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list access-drivers" msgstr "{@code{libvirt-configuration}-Parameter} Optional-nichtleere-Liste access-drivers" #. type: deftypevr -#: guix-git/doc/guix.texi:30072 +#: guix-git/doc/guix.texi:30437 msgid "API access control scheme." msgstr "Welche Schemata zur Zugriffskontrolle auf Programmierschnittstellen (APIs) benutzt werden." #. type: deftypevr -#: guix-git/doc/guix.texi:30075 +#: guix-git/doc/guix.texi:30440 msgid "By default an authenticated user is allowed access to all APIs. Access drivers can place restrictions on this." msgstr "Nach Vorgabe kann ein authentifizierter Nutzer auf alle Programmierschnittstellen zugreifen. Zugriffstreiber können dies einschränken." #. type: deftypevr -#: guix-git/doc/guix.texi:30080 +#: guix-git/doc/guix.texi:30445 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string key-file" msgstr "{@code{libvirt-configuration}-Parameter} Zeichenkette key-file" #. type: deftypevr -#: guix-git/doc/guix.texi:30083 +#: guix-git/doc/guix.texi:30448 msgid "Server key file path. If set to an empty string, then no private key is loaded." msgstr "Pfad zur Schlüsseldatei für den Server. Wenn er auf eine leere Zeichenkette gesetzt ist, dann wird kein privater Schlüssel geladen." #. type: deftypevr -#: guix-git/doc/guix.texi:30088 +#: guix-git/doc/guix.texi:30453 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string cert-file" msgstr "{@code{libvirt-configuration}-Parameter} Zeichenkette cert-file" #. type: deftypevr -#: guix-git/doc/guix.texi:30091 +#: guix-git/doc/guix.texi:30456 msgid "Server key file path. If set to an empty string, then no certificate is loaded." msgstr "Pfad zur Zertifikatsdatei für den Server. Wenn er auf eine leere Zeichenkette gesetzt ist, dann wird kein Zertifikat geladen." #. type: deftypevr -#: guix-git/doc/guix.texi:30096 +#: guix-git/doc/guix.texi:30461 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string ca-file" msgstr "{@code{libvirt-configuration}-Parameter} Zeichenkette ca-file" #. type: deftypevr -#: guix-git/doc/guix.texi:30099 +#: guix-git/doc/guix.texi:30464 msgid "Server key file path. If set to an empty string, then no CA certificate is loaded." msgstr "Pfad zur Datei mit dem Zertifikat der Zertifikatsautorität. Wenn er auf eine leere Zeichenkette gesetzt ist, dann wird kein Zertifikat der Zertifikatsautorität geladen." #. type: deftypevr -#: guix-git/doc/guix.texi:30104 +#: guix-git/doc/guix.texi:30469 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string crl-file" msgstr "{@code{libvirt-configuration}-Parameter} Zeichenkette crl-file" #. type: deftypevr -#: guix-git/doc/guix.texi:30107 +#: guix-git/doc/guix.texi:30472 msgid "Certificate revocation list path. If set to an empty string, then no CRL is loaded." msgstr "Pfad zur Zertifikatssperrliste („Certificate Revocation List“). Wenn er auf eine leere Zeichenkette gesetzt ist, dann wird keine Zertifikatssperrliste geladen." #. type: deftypevr -#: guix-git/doc/guix.texi:30112 +#: guix-git/doc/guix.texi:30477 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean tls-no-sanity-cert" msgstr "{@code{libvirt-configuration}-Parameter} Boolescher-Ausdruck tls-no-sanity-cert" #. type: deftypevr -#: guix-git/doc/guix.texi:30114 +#: guix-git/doc/guix.texi:30479 msgid "Disable verification of our own server certificates." msgstr "Keine Überprüfung unseres eigenen Serverzertifikats durchführen." #. type: deftypevr -#: guix-git/doc/guix.texi:30117 +#: guix-git/doc/guix.texi:30482 msgid "When libvirtd starts it performs some sanity checks against its own certificates." msgstr "Beim Start vom libvirtd prüft dieser, ob bei seinem eigenen Zertifikat alles in Ordnung ist." #. type: deftypevr -#: guix-git/doc/guix.texi:30122 +#: guix-git/doc/guix.texi:30487 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean tls-no-verify-cert" msgstr "{@code{libvirt-configuration}-Parameter} Boolescher-Ausdruck tls-no-verify-cert" #. type: deftypevr -#: guix-git/doc/guix.texi:30124 +#: guix-git/doc/guix.texi:30489 msgid "Disable verification of client certificates." msgstr "Keine Überprüfung von Clientzertifikaten durchführen." #. type: deftypevr -#: guix-git/doc/guix.texi:30128 +#: guix-git/doc/guix.texi:30493 msgid "Client certificate verification is the primary authentication mechanism. Any client which does not present a certificate signed by the CA will be rejected." msgstr "Die Überprüfung des Zertifikats eines Clients ist der primäre Authentifizierungsmechanismus. Jeder Client, der kein von der Zertifikatsautorität signiertes Zertifikat vorweist, wird abgelehnt." #. type: deftypevr -#: guix-git/doc/guix.texi:30133 +#: guix-git/doc/guix.texi:30498 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list tls-allowed-dn-list" msgstr "{@code{libvirt-configuration}-Parameter} Optional-nichtleere-Liste tls-allowed-dn-list" #. type: deftypevr -#: guix-git/doc/guix.texi:30135 +#: guix-git/doc/guix.texi:30500 msgid "Whitelist of allowed x509 Distinguished Name." msgstr "Liste der erlaubten Einträge für den „Distinguished Name“ bei x509." #. type: deftypevr -#: guix-git/doc/guix.texi:30140 +#: guix-git/doc/guix.texi:30505 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list sasl-allowed-usernames" msgstr "{@code{libvirt-configuration}-Parameter} Optional-nichtleere-Liste sasl-allowed-usernames" #. type: deftypevr -#: guix-git/doc/guix.texi:30143 +#: guix-git/doc/guix.texi:30508 msgid "Whitelist of allowed SASL usernames. The format for username depends on the SASL authentication mechanism." msgstr "Liste der erlaubten Einträge für SASL-Benutzernamen. Wie Benutzernamen aussehen müssen, ist abhängig vom jeweiligen SASL-Mechanismus." #. type: deftypevr -#: guix-git/doc/guix.texi:30148 +#: guix-git/doc/guix.texi:30513 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tls-priority" msgstr "{@code{libvirt-configuration}-Parameter} Zeichenkette tls-priority" #. type: deftypevr -#: guix-git/doc/guix.texi:30152 +#: guix-git/doc/guix.texi:30517 msgid "Override the compile time default TLS priority string. The default is usually @samp{\"NORMAL\"} unless overridden at build time. Only set this is it is desired for libvirt to deviate from the global default settings." msgstr "Dies wird vorrangig statt der beim Kompilieren voreingestellten TLS-Prioritätszeichenkette verwendet. Die Voreinstellung ist in der Regel @samp{\"NORMAL\"}, solange dies nicht bei der Erstellung geändert wurde. Ändern Sie dies nur, wenn die Einstellungen für libvirt von den globalen Voreinstellungen abweichen sollen." #. type: deftypevr -#: guix-git/doc/guix.texi:30154 +#: guix-git/doc/guix.texi:30519 msgid "Defaults to @samp{\"NORMAL\"}." msgstr "Die Vorgabe @samp{\"NORMAL\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30157 +#: guix-git/doc/guix.texi:30522 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-clients" msgstr "{@code{libvirt-configuration}-Parameter} Ganze-Zahl max-clients" #. type: deftypevr -#: guix-git/doc/guix.texi:30160 guix-git/doc/guix.texi:30584 +#: guix-git/doc/guix.texi:30525 guix-git/doc/guix.texi:30949 msgid "Maximum number of concurrent client connections to allow over all sockets combined." msgstr "Maximalzahl gleichzeitiger Client-Verbindungen, die für alle Sockets zusammen zugelassen werden sollen." #. type: deftypevr -#: guix-git/doc/guix.texi:30162 +#: guix-git/doc/guix.texi:30527 msgid "Defaults to @samp{5000}." msgstr "Die Vorgabe ist @samp{5000}." #. type: deftypevr -#: guix-git/doc/guix.texi:30165 +#: guix-git/doc/guix.texi:30530 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-queued-clients" msgstr "{@code{libvirt-configuration}-Parameter} Ganze-Zahl max-queued-clients" #. type: deftypevr -#: guix-git/doc/guix.texi:30169 +#: guix-git/doc/guix.texi:30534 msgid "Maximum length of queue of connections waiting to be accepted by the daemon. Note, that some protocols supporting retransmission may obey this so that a later reattempt at connection succeeds." msgstr "Maximale Länge der Warteschlange für Verbindungen, die darauf warten, vom Daemon angenommen zu werden. Beachten Sie, dass sich manche Protokolle, die Neuübertragung unterstützen, danach richten könnten, damit ein erneuter Verbindungsversuch angenommen wird." #. type: deftypevr -#: guix-git/doc/guix.texi:30174 +#: guix-git/doc/guix.texi:30539 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-anonymous-clients" msgstr "{@code{libvirt-configuration}-Parameter} Ganze-Zahl max-anonymous-clients" #. type: deftypevr -#: guix-git/doc/guix.texi:30177 +#: guix-git/doc/guix.texi:30542 msgid "Maximum length of queue of accepted but not yet authenticated clients. Set this to zero to turn this feature off" msgstr "Maximale Länge der Warteschlange für Clients, die angenommen wurden, aber noch nicht authentifiziert wurden. Setzen Sie dies auf null, um diese Funktionalität abzuschalten." #. type: deftypevr -#: guix-git/doc/guix.texi:30179 guix-git/doc/guix.texi:30197 -#: guix-git/doc/guix.texi:30213 +#: guix-git/doc/guix.texi:30544 guix-git/doc/guix.texi:30562 +#: guix-git/doc/guix.texi:30578 msgid "Defaults to @samp{20}." msgstr "Die Vorgabe ist @samp{20}." #. type: deftypevr -#: guix-git/doc/guix.texi:30182 +#: guix-git/doc/guix.texi:30547 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer min-workers" msgstr "{@code{libvirt-configuration}-Parameter} Ganze-Zahl min-workers" #. type: deftypevr -#: guix-git/doc/guix.texi:30184 +#: guix-git/doc/guix.texi:30549 msgid "Number of workers to start up initially." msgstr "Anzahl an Arbeiter-Threads, die am Anfang gestartet werden sollen." #. type: deftypevr -#: guix-git/doc/guix.texi:30189 +#: guix-git/doc/guix.texi:30554 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-workers" msgstr "{@code{libvirt-configuration}-Parameter} Ganze-Zahl max-workers" #. type: deftypevr -#: guix-git/doc/guix.texi:30191 +#: guix-git/doc/guix.texi:30556 msgid "Maximum number of worker threads." msgstr "Maximale Anzahl an Arbeiter-Threads." #. type: deftypevr -#: guix-git/doc/guix.texi:30195 +#: guix-git/doc/guix.texi:30560 msgid "If the number of active clients exceeds @code{min-workers}, then more threads are spawned, up to max_workers limit. Typically you'd want max_workers to equal maximum number of clients allowed." msgstr "Wenn die Anzahl aktiver Clients die @code{min-workers} übersteigt, werden weitere Threads erzeugt, bis die max_workers-Beschränkung erreicht wurde. Typischerweise würden Sie für max_workers die maximale Anzahl zugelassener Clients angeben." #. type: deftypevr -#: guix-git/doc/guix.texi:30200 +#: guix-git/doc/guix.texi:30565 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer prio-workers" msgstr "{@code{libvirt-configuration}-Parameter} Ganze-Zahl prio-workers" #. type: deftypevr -#: guix-git/doc/guix.texi:30204 +#: guix-git/doc/guix.texi:30569 msgid "Number of priority workers. If all workers from above pool are stuck, some calls marked as high priority (notably domainDestroy) can be executed in this pool." msgstr "Die Anzahl priorisierter Arbeiter-Threads. Wenn alle Arbeiter aus diesem Pool festhängen, können manche, mit hoher Priorität versehene Aufrufe (speziell domainDestroy) in diesem Pool hier ausgeführt werden." #. type: deftypevr -#: guix-git/doc/guix.texi:30209 +#: guix-git/doc/guix.texi:30574 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-requests" msgstr "{@code{libvirt-configuration}-Parameter} Ganze-Zahl max-requests" #. type: deftypevr -#: guix-git/doc/guix.texi:30211 +#: guix-git/doc/guix.texi:30576 msgid "Total global limit on concurrent RPC calls." msgstr "Wie viele nebenläufige RPC-Aufrufe global ausgeführt werden können." #. type: deftypevr -#: guix-git/doc/guix.texi:30216 +#: guix-git/doc/guix.texi:30581 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-client-requests" msgstr "{@code{libvirt-configuration}-Parameter} Ganze-Zahl max-client-requests" #. type: deftypevr -#: guix-git/doc/guix.texi:30220 +#: guix-git/doc/guix.texi:30585 msgid "Limit on concurrent requests from a single client connection. To avoid one client monopolizing the server this should be a small fraction of the global max_requests and max_workers parameter." msgstr "Wie viele nebenläufige Anfragen von einer einzelnen Client-Verbindung ausgehen können. Um zu verhindern, dass ein einzelner Client den gesamten Server für sich beansprucht, sollte der Wert hier nur einen kleinen Teil der globalen max_requests- und max_workers-Parameter ausmachen." #. type: deftypevr -#: guix-git/doc/guix.texi:30225 +#: guix-git/doc/guix.texi:30590 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-min-workers" msgstr "{@code{libvirt-configuration}-Parameter} Ganze-Zahl admin-min-workers" #. type: deftypevr -#: guix-git/doc/guix.texi:30227 +#: guix-git/doc/guix.texi:30592 msgid "Same as @code{min-workers} but for the admin interface." msgstr "Wie bei @code{min-workers}, aber für die Administratorschnittstelle." #. type: deftypevr -#: guix-git/doc/guix.texi:30232 +#: guix-git/doc/guix.texi:30597 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-workers" msgstr "{@code{libvirt-configuration}-Parameter} Ganze-Zahl admin-max-workers" #. type: deftypevr -#: guix-git/doc/guix.texi:30234 +#: guix-git/doc/guix.texi:30599 msgid "Same as @code{max-workers} but for the admin interface." msgstr "Wie bei @code{max-workers}, aber für die Administratorschnittstelle." #. type: deftypevr -#: guix-git/doc/guix.texi:30239 +#: guix-git/doc/guix.texi:30604 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-clients" msgstr "{@code{libvirt-configuration}-Parameter} Ganze-Zahl admin-max-clients" #. type: deftypevr -#: guix-git/doc/guix.texi:30241 +#: guix-git/doc/guix.texi:30606 msgid "Same as @code{max-clients} but for the admin interface." msgstr "Wie bei @code{max-clients}, aber für die Administratorschnittstelle." #. type: deftypevr -#: guix-git/doc/guix.texi:30246 +#: guix-git/doc/guix.texi:30611 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-queued-clients" msgstr "{@code{libvirt-configuration}-Parameter} Ganze-Zahl admin-max-queued-clients" #. type: deftypevr -#: guix-git/doc/guix.texi:30248 +#: guix-git/doc/guix.texi:30613 msgid "Same as @code{max-queued-clients} but for the admin interface." msgstr "Wie bei @code{max-queued-clients}, aber für die Administratorschnittstelle." #. type: deftypevr -#: guix-git/doc/guix.texi:30253 +#: guix-git/doc/guix.texi:30618 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-client-requests" msgstr "{@code{libvirt-configuration}-Parameter} Ganze-Zahl admin-max-client-requests" #. type: deftypevr -#: guix-git/doc/guix.texi:30255 +#: guix-git/doc/guix.texi:30620 msgid "Same as @code{max-client-requests} but for the admin interface." msgstr "Wie bei @code{max-client-requests}, aber für die Administratorschnittstelle." #. type: deftypevr -#: guix-git/doc/guix.texi:30260 +#: guix-git/doc/guix.texi:30625 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer log-level" msgstr "{@code{libvirt-configuration}-Parameter} Ganze-Zahl log-level" #. type: deftypevr -#: guix-git/doc/guix.texi:30262 guix-git/doc/guix.texi:30486 +#: guix-git/doc/guix.texi:30627 guix-git/doc/guix.texi:30851 msgid "Logging level. 4 errors, 3 warnings, 2 information, 1 debug." msgstr "Protokollstufe. 4 für Fehler, 3 für Warnungen, 2 für Informationen, 1 zur Fehlersuche." #. type: deftypevr -#: guix-git/doc/guix.texi:30267 +#: guix-git/doc/guix.texi:30632 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string log-filters" msgstr "{@code{libvirt-configuration}-Parameter} Zeichenkette log-filters" #. type: deftypevr -#: guix-git/doc/guix.texi:30269 guix-git/doc/guix.texi:30493 +#: guix-git/doc/guix.texi:30634 guix-git/doc/guix.texi:30858 msgid "Logging filters." msgstr "Protokollfilter." #. type: deftypevr -#: guix-git/doc/guix.texi:30272 +#: guix-git/doc/guix.texi:30637 msgid "A filter allows to select a different logging level for a given category of logs. The format for a filter is one of:" msgstr "Ein Filter ermöglicht es, für eine bestimmte Kategorie von Protokollen eine andere Protokollierungsstufe festzulegen. Filter müssen eines der folgenden Formate haben:" #. type: itemize -#: guix-git/doc/guix.texi:30276 guix-git/doc/guix.texi:30500 +#: guix-git/doc/guix.texi:30641 guix-git/doc/guix.texi:30865 msgid "x:name" msgstr "x:Name" #. type: itemize -#: guix-git/doc/guix.texi:30279 guix-git/doc/guix.texi:30503 +#: guix-git/doc/guix.texi:30644 guix-git/doc/guix.texi:30868 msgid "x:+name" msgstr "x:+Name" #. type: deftypevr -#: guix-git/doc/guix.texi:30290 +#: guix-git/doc/guix.texi:30655 msgid "where @code{name} is a string which is matched against the category given in the @code{VIR_LOG_INIT()} at the top of each libvirt source file, e.g., @samp{\"remote\"}, @samp{\"qemu\"}, or @samp{\"util.json\"} (the name in the filter can be a substring of the full category name, in order to match multiple similar categories), the optional @samp{\"+\"} prefix tells libvirt to log stack trace for each message matching name, and @code{x} is the minimal level where matching messages should be logged:" msgstr "wobei @code{Name} eine Zeichenkette ist, die zu einer in der Umgebungsvariablen @code{VIR_LOG_INIT()} am Anfang jeder Quelldatei von libvirt angegebenen Kategorie passen muss, z.B.@: @samp{\"remote\"}, @samp{\"qemu\"} oder @samp{\"util.json\"} (der Name im Filter kann auch nur ein Teil des vollständigen Kategoriennamens sein, wodurch mehrere, ähnliche passende Kategoriennamen möglich sind). Das optionale Präfix „+“ bedeutet, dass libvirt eine Rückverfolgung (d.h.@: ein „Stack Trace“) für jede zum Namen passende Nachricht ins Protokoll schreiben soll. @code{x} benennt jeweils die kleinste Stufe, deren passende Nachrichten protokolliert werden sollen." #. type: itemize -#: guix-git/doc/guix.texi:30294 guix-git/doc/guix.texi:30339 -#: guix-git/doc/guix.texi:30517 guix-git/doc/guix.texi:30562 +#: guix-git/doc/guix.texi:30659 guix-git/doc/guix.texi:30704 +#: guix-git/doc/guix.texi:30882 guix-git/doc/guix.texi:30927 msgid "1: DEBUG" msgstr "1: Fehlersuche („DEBUG“)" #. type: itemize -#: guix-git/doc/guix.texi:30297 guix-git/doc/guix.texi:30342 -#: guix-git/doc/guix.texi:30520 guix-git/doc/guix.texi:30565 +#: guix-git/doc/guix.texi:30662 guix-git/doc/guix.texi:30707 +#: guix-git/doc/guix.texi:30885 guix-git/doc/guix.texi:30930 msgid "2: INFO" msgstr "2: Informationen („INFO“)" #. type: itemize -#: guix-git/doc/guix.texi:30300 guix-git/doc/guix.texi:30345 -#: guix-git/doc/guix.texi:30523 guix-git/doc/guix.texi:30568 +#: guix-git/doc/guix.texi:30665 guix-git/doc/guix.texi:30710 +#: guix-git/doc/guix.texi:30888 guix-git/doc/guix.texi:30933 msgid "3: WARNING" msgstr "3: Warnungen („WARNING“)" #. type: itemize -#: guix-git/doc/guix.texi:30303 guix-git/doc/guix.texi:30348 -#: guix-git/doc/guix.texi:30526 guix-git/doc/guix.texi:30571 +#: guix-git/doc/guix.texi:30668 guix-git/doc/guix.texi:30713 +#: guix-git/doc/guix.texi:30891 guix-git/doc/guix.texi:30936 msgid "4: ERROR" msgstr "4: Fehler („ERROR“)" #. type: deftypevr -#: guix-git/doc/guix.texi:30308 guix-git/doc/guix.texi:30531 +#: guix-git/doc/guix.texi:30673 guix-git/doc/guix.texi:30896 msgid "Multiple filters can be defined in a single filters statement, they just need to be separated by spaces." msgstr "Mehrere Filter können in einer einzelnen Filteranweisung definiert werden; sie müssen nur durch Leerzeichen voneinander getrennt werden." #. type: deftypevr -#: guix-git/doc/guix.texi:30310 guix-git/doc/guix.texi:30533 +#: guix-git/doc/guix.texi:30675 guix-git/doc/guix.texi:30898 msgid "Defaults to @samp{\"3:remote 4:event\"}." msgstr "Die Vorgabe ist @samp{\"3:remote 4:event\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30313 +#: guix-git/doc/guix.texi:30678 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string log-outputs" msgstr "{@code{libvirt-configuration}-Parameter} Zeichenkette log-outputs" #. type: deftypevr -#: guix-git/doc/guix.texi:30315 guix-git/doc/guix.texi:30538 +#: guix-git/doc/guix.texi:30680 guix-git/doc/guix.texi:30903 msgid "Logging outputs." msgstr "Ausgaben für die Protokollierung." #. type: deftypevr -#: guix-git/doc/guix.texi:30318 +#: guix-git/doc/guix.texi:30683 msgid "An output is one of the places to save logging information. The format for an output can be:" msgstr "Eine Ausgabe ist einer der Orte, wohin Informationen aus der Protokollierung gespeichert werden. Eine Ausgabe kann auf eine der folgenden Arten angegeben werden:" #. type: item -#: guix-git/doc/guix.texi:30320 guix-git/doc/guix.texi:30543 +#: guix-git/doc/guix.texi:30685 guix-git/doc/guix.texi:30908 #, no-wrap msgid "x:stderr" msgstr "x:stderr" #. type: table -#: guix-git/doc/guix.texi:30322 guix-git/doc/guix.texi:30545 +#: guix-git/doc/guix.texi:30687 guix-git/doc/guix.texi:30910 msgid "output goes to stderr" msgstr "Protokolle werden auf der Standardausgabe („Stderr“) ausgegeben." #. type: item -#: guix-git/doc/guix.texi:30323 guix-git/doc/guix.texi:30546 +#: guix-git/doc/guix.texi:30688 guix-git/doc/guix.texi:30911 #, no-wrap msgid "x:syslog:name" msgstr "x:syslog:Name" #. type: table -#: guix-git/doc/guix.texi:30325 guix-git/doc/guix.texi:30548 +#: guix-git/doc/guix.texi:30690 guix-git/doc/guix.texi:30913 msgid "use syslog for the output and use the given name as the ident" msgstr "Syslog wird zur Ausgabe benutzt. Der Name dient dabei als Identifikator für libvirt-Protokolle." #. type: item -#: guix-git/doc/guix.texi:30326 guix-git/doc/guix.texi:30549 +#: guix-git/doc/guix.texi:30691 guix-git/doc/guix.texi:30914 #, no-wrap msgid "x:file:file_path" msgstr "x:file:Dateipfad" #. type: table -#: guix-git/doc/guix.texi:30328 guix-git/doc/guix.texi:30551 +#: guix-git/doc/guix.texi:30693 guix-git/doc/guix.texi:30916 msgid "output to a file, with the given filepath" msgstr "Protokolle werden in die Datei unter dem angegebenen Dateipfad ausgegeben." #. type: item -#: guix-git/doc/guix.texi:30329 guix-git/doc/guix.texi:30552 +#: guix-git/doc/guix.texi:30694 guix-git/doc/guix.texi:30917 #, no-wrap msgid "x:journald" msgstr "x:journald" #. type: table -#: guix-git/doc/guix.texi:30331 guix-git/doc/guix.texi:30554 +#: guix-git/doc/guix.texi:30696 guix-git/doc/guix.texi:30919 msgid "output to journald logging system" msgstr "Die Ausgabe läuft über das journald-Protokollsystem." #. type: deftypevr -#: guix-git/doc/guix.texi:30335 guix-git/doc/guix.texi:30558 +#: guix-git/doc/guix.texi:30700 guix-git/doc/guix.texi:30923 msgid "In all case the x prefix is the minimal level, acting as a filter" msgstr "In allen Fällen steht das x vorne für die kleinste Stufe und wirkt als Filter." #. type: deftypevr -#: guix-git/doc/guix.texi:30353 guix-git/doc/guix.texi:30576 +#: guix-git/doc/guix.texi:30718 guix-git/doc/guix.texi:30941 msgid "Multiple outputs can be defined, they just need to be separated by spaces." msgstr "Mehrere Ausgaben können definiert werden, dazu müssen sie nur durch Leerzeichen getrennt hier angegeben werden." #. type: deftypevr -#: guix-git/doc/guix.texi:30355 guix-git/doc/guix.texi:30578 +#: guix-git/doc/guix.texi:30720 guix-git/doc/guix.texi:30943 msgid "Defaults to @samp{\"3:stderr\"}." msgstr "Die Vorgabe ist @samp{\"3:stderr\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30358 +#: guix-git/doc/guix.texi:30723 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer audit-level" msgstr "{@code{libvirt-configuration}-Parameter} Ganze-Zahl audit-level" #. type: deftypevr -#: guix-git/doc/guix.texi:30360 +#: guix-git/doc/guix.texi:30725 msgid "Allows usage of the auditing subsystem to be altered" msgstr "Ermöglicht Anpassungen am Auditierungs-Subsystem." #. type: itemize -#: guix-git/doc/guix.texi:30364 +#: guix-git/doc/guix.texi:30729 msgid "0: disable all auditing" msgstr "0: Jegliche Auditierung deaktivieren." #. type: itemize -#: guix-git/doc/guix.texi:30367 +#: guix-git/doc/guix.texi:30732 msgid "1: enable auditing, only if enabled on host" msgstr "1: Auditierung nur aktivieren, wenn sie beim Wirtssystem aktiviert ist." #. type: itemize -#: guix-git/doc/guix.texi:30370 +#: guix-git/doc/guix.texi:30735 msgid "2: enable auditing, and exit if disabled on host." msgstr "2: Auditierung aktivieren. Beenden, wenn das Wirtssystem Auditierung deaktiviert hat." #. type: deftypevr -#: guix-git/doc/guix.texi:30377 +#: guix-git/doc/guix.texi:30742 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean audit-logging" msgstr "{@code{libvirt-configuration}-Parameter} Boolescher-Ausdruck audit-logging" #. type: deftypevr -#: guix-git/doc/guix.texi:30379 +#: guix-git/doc/guix.texi:30744 msgid "Send audit messages via libvirt logging infrastructure." msgstr "Audit-Nachrichten über die Protokollinfrastruktur von libvirt versenden." #. type: deftypevr -#: guix-git/doc/guix.texi:30384 +#: guix-git/doc/guix.texi:30749 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-string host-uuid" msgstr "{@code{libvirt-configuration}-Parameter} Optional-nichtleere-Zeichenkette host-uuid" #. type: deftypevr -#: guix-git/doc/guix.texi:30386 +#: guix-git/doc/guix.texi:30751 msgid "Host UUID@. UUID must not have all digits be the same." msgstr "Für das Wirtssystem zu verwendende UUID@. Bei der UUID dürfen nicht alle Ziffern gleich sein." #. type: deftypevr -#: guix-git/doc/guix.texi:30391 +#: guix-git/doc/guix.texi:30756 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string host-uuid-source" msgstr "{@code{libvirt-configuration}-Parameter} Zeichenkette host-uuid-source" #. type: deftypevr -#: guix-git/doc/guix.texi:30393 +#: guix-git/doc/guix.texi:30758 msgid "Source to read host UUID." msgstr "Die Quelle, von der die UUID des Wirtssystems genommen wird." #. type: itemize -#: guix-git/doc/guix.texi:30397 +#: guix-git/doc/guix.texi:30762 msgid "@code{smbios}: fetch the UUID from @code{dmidecode -s system-uuid}" msgstr "@code{smbios}: Die UUID von @code{dmidecode -s system-uuid} holen." #. type: itemize -#: guix-git/doc/guix.texi:30400 +#: guix-git/doc/guix.texi:30765 msgid "@code{machine-id}: fetch the UUID from @code{/etc/machine-id}" msgstr "@code{machine-id}: Die UUID aus @code{/etc/machine-id} holen." #. type: deftypevr -#: guix-git/doc/guix.texi:30405 +#: guix-git/doc/guix.texi:30770 msgid "If @code{dmidecode} does not provide a valid UUID a temporary UUID will be generated." msgstr "Falls @code{dmidecode} keine gültige UUID liefert, wird eine temporäre UUID generiert." #. type: deftypevr -#: guix-git/doc/guix.texi:30407 +#: guix-git/doc/guix.texi:30772 msgid "Defaults to @samp{\"smbios\"}." msgstr "Die Vorgabe ist @samp{\"smbios\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30410 +#: guix-git/doc/guix.texi:30775 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer keepalive-interval" msgstr "{@code{libvirt-configuration}-Parameter} Ganze-Zahl keepalive-interval" #. type: deftypevr -#: guix-git/doc/guix.texi:30415 +#: guix-git/doc/guix.texi:30780 msgid "A keepalive message is sent to a client after @code{keepalive_interval} seconds of inactivity to check if the client is still responding. If set to -1, libvirtd will never send keepalive requests; however clients can still send them and the daemon will send responses." msgstr "Einem Client wird eine Nachricht zum Aufrechterhalten der Verbindung gesendet, nachdem @code{keepalive_interval} Sekunden lang keine Aktivität stattgefunden hat. Damit kann überprüft werden, ob der Client noch antwortet. Wird dieses Feld auf -1 gesetzt, wird libvirtd niemals Aufrechterhaltungsanfragen senden; Clients können diese aber weiterhin dem Daemon schicken und er wird auf diese antworten." #. type: deftypevr -#: guix-git/doc/guix.texi:30420 +#: guix-git/doc/guix.texi:30785 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer keepalive-count" msgstr "{@code{libvirt-configuration}-Parameter} Ganze-Zahl keepalive-count" #. type: deftypevr -#: guix-git/doc/guix.texi:30424 +#: guix-git/doc/guix.texi:30789 msgid "Maximum number of keepalive messages that are allowed to be sent to the client without getting any response before the connection is considered broken." msgstr "Wie viele Aufrechterhaltungsnachrichten höchstens zum Client geschickt werden dürfen, ohne dass eine Antwort zurückgekommen ist, bevor die Verbindung als abgebrochen gilt." #. type: deftypevr -#: guix-git/doc/guix.texi:30431 +#: guix-git/doc/guix.texi:30796 msgid "In other words, the connection is automatically closed approximately after @code{keepalive_interval * (keepalive_count + 1)} seconds since the last message received from the client. When @code{keepalive-count} is set to 0, connections will be automatically closed after @code{keepalive-interval} seconds of inactivity without sending any keepalive messages." msgstr "Mit anderen Worten wird die Verbindung ungefähr dann automatisch geschlossen, wenn @code{keepalive_interval * (keepalive_count + 1)} Sekunden seit der letzten vom Client empfangenen Nachricht vergangen sind. Wenn @code{keepalive-count} auf 0 gesetzt ist, werden Verbindungen dann automatisch geschlossen, wenn @code{keepalive-interval} Sekunden der Inaktivität vorausgegangen sind, ohne dass eine Aufrechterhaltungsnachricht versandt wurde." #. type: deftypevr -#: guix-git/doc/guix.texi:30436 +#: guix-git/doc/guix.texi:30801 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-keepalive-interval" msgstr "{@code{libvirt-configuration}-Parameter} Ganze-Zahl admin-keepalive-interval" #. type: deftypevr -#: guix-git/doc/guix.texi:30438 guix-git/doc/guix.texi:30445 +#: guix-git/doc/guix.texi:30803 guix-git/doc/guix.texi:30810 msgid "Same as above but for admin interface." msgstr "Wie oben, aber für die Administratorschnittstelle." #. type: deftypevr -#: guix-git/doc/guix.texi:30443 +#: guix-git/doc/guix.texi:30808 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-keepalive-count" msgstr "{@code{libvirt-configuration}-Parameter} Ganze-Zahl admin-keepalive-count" #. type: deftypevr -#: guix-git/doc/guix.texi:30450 +#: guix-git/doc/guix.texi:30815 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer ovs-timeout" msgstr "{@code{libvirt-configuration}-Parameter} Ganze-Zahl ovs-timeout" #. type: deftypevr -#: guix-git/doc/guix.texi:30452 +#: guix-git/doc/guix.texi:30817 msgid "Timeout for Open vSwitch calls." msgstr "Zeitbeschränkung für Aufrufe über Open vSwitch." #. type: deftypevr -#: guix-git/doc/guix.texi:30456 +#: guix-git/doc/guix.texi:30821 msgid "The @code{ovs-vsctl} utility is used for the configuration and its timeout option is set by default to 5 seconds to avoid potential infinite waits blocking libvirt." msgstr "Das Werkzeug @code{ovs-vsctl} wird zur Konfiguration benutzt; die dort eingestellte Zeitbeschränkung ist nach Voreinstellung auf 5 Sekunden festgelegt, um zu verhindern, dass libvirt durch unbegrenztes Warten blockiert werden kann." #. type: subsubheading -#: guix-git/doc/guix.texi:30463 +#: guix-git/doc/guix.texi:30828 #, no-wrap msgid "Virtlog daemon" msgstr "Virtlog-Daemon" #. type: Plain text -#: guix-git/doc/guix.texi:30466 +#: guix-git/doc/guix.texi:30831 msgid "The virtlogd service is a server side daemon component of libvirt that is used to manage logs from virtual machine consoles." msgstr "Der virtlogd-Dienst ist eine serverseitige Daemon-Komponente von libvirt, die benutzt wird, um Protokolle der Konsolen von virtuellen Maschinen zu verwalten." #. type: Plain text -#: guix-git/doc/guix.texi:30472 +#: guix-git/doc/guix.texi:30837 msgid "This daemon is not used directly by libvirt client applications, rather it is called on their behalf by @code{libvirtd}. By maintaining the logs in a standalone daemon, the main @code{libvirtd} daemon can be restarted without risk of losing logs. The @code{virtlogd} daemon has the ability to re-exec() itself upon receiving @code{SIGUSR1}, to allow live upgrades without downtime." msgstr "Dieser Daemon wird von libvirt-Clientanwendungen nicht direkt benutzt, sondern wird an deren Stelle vom @code{libvirtd} aufgerufen. Indem die Protokolle in einem eigenständigen Daemon vorgehalten werden, kann der eigentliche @code{libvirtd}-Daemon neu gestartet werden, ohne dass man riskiert, Protokolle zu verlieren. Der @code{virtlogd}-Daemon hat die Fähigkeit, sich selbst erneut mit exec() zu starten, wenn er @code{SIGUSR1} empfängt, damit Aktualisierungen ohne Ausfall möglich sind." #. type: deffn -#: guix-git/doc/guix.texi:30473 +#: guix-git/doc/guix.texi:30838 #, no-wrap msgid "{Scheme Variable} virtlog-service-type" msgstr "{Scheme-Variable} virtlog-service-type" #. type: deffn -#: guix-git/doc/guix.texi:30476 +#: guix-git/doc/guix.texi:30841 msgid "This is the type of the virtlog daemon. Its value must be a @code{virtlog-configuration}." msgstr "Dies ist der Diensttyp des virtlog-Daemons. Sein Wert muss eine @code{virtlog-configuration} sein." #. type: lisp -#: guix-git/doc/guix.texi:30481 +#: guix-git/doc/guix.texi:30846 #, no-wrap msgid "" "(service virtlog-service-type\n" @@ -57175,122 +57908,122 @@ msgstr "" " (max-clients 1000)))\n" #. type: deftypevr -#: guix-git/doc/guix.texi:30484 +#: guix-git/doc/guix.texi:30849 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer log-level" msgstr "{@code{virtlog-configuration}-Parameter} Ganze-Zahl log-level" #. type: deftypevr -#: guix-git/doc/guix.texi:30491 +#: guix-git/doc/guix.texi:30856 #, no-wrap msgid "{@code{virtlog-configuration} parameter} string log-filters" msgstr "{@code{virtlog-configuration}-Parameter} Zeichenkette log-filters" #. type: deftypevr -#: guix-git/doc/guix.texi:30496 +#: guix-git/doc/guix.texi:30861 msgid "A filter allows to select a different logging level for a given category of logs The format for a filter is one of:" msgstr "Ein Filter ermöglicht es, für eine bestimmte Kategorie von Protokollen eine andere Protokollierungsstufe festzulegen. Filter müssen eines der folgenden Formate haben:" #. type: deftypevr -#: guix-git/doc/guix.texi:30513 +#: guix-git/doc/guix.texi:30878 msgid "where @code{name} is a string which is matched against the category given in the @code{VIR_LOG_INIT()} at the top of each libvirt source file, e.g., \"remote\", \"qemu\", or \"util.json\" (the name in the filter can be a substring of the full category name, in order to match multiple similar categories), the optional \"+\" prefix tells libvirt to log stack trace for each message matching name, and @code{x} is the minimal level where matching messages should be logged:" msgstr "wobei @code{Name} eine Zeichenkette ist, die zu einer in der Umgebungsvariablen @code{VIR_LOG_INIT()} am Anfang jeder Quelldatei von libvirt angegebenen Kategorie passen muss, z.B.@: „remote“, „qemu“ oder „util.json“ (der Name im Filter kann auch nur ein Teil des vollständigen Kategoriennamens sein, wodurch mehrere, ähnliche passende Kategoriennamen möglich sind). Das optionale Präfix „+“ bedeutet, dass libvirt eine Rückverfolgung (d.h.@: ein „Stack Trace“) für jede zum Namen passende Nachricht ins Protokoll schreiben soll. @code{x} benennt jeweils die kleinste Stufe, deren passende Nachrichten protokolliert werden sollen." #. type: deftypevr -#: guix-git/doc/guix.texi:30536 +#: guix-git/doc/guix.texi:30901 #, no-wrap msgid "{@code{virtlog-configuration} parameter} string log-outputs" msgstr "{@code{virtlog-configuration}-Parameter} Zeichenkette log-outputs" #. type: deftypevr -#: guix-git/doc/guix.texi:30541 +#: guix-git/doc/guix.texi:30906 msgid "An output is one of the places to save logging information The format for an output can be:" msgstr "Als Ausgabe bezeichnen wir einen der Orte, an denen Protokollinformationen gespeichert werden. Eine Ausgabe wird auf eine der folgenden Arten angegeben:" #. type: deftypevr -#: guix-git/doc/guix.texi:30581 +#: guix-git/doc/guix.texi:30946 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-clients" msgstr "{@code{virtlog-configuration}-Parameter} Ganze-Zahl max-clients" #. type: deftypevr -#: guix-git/doc/guix.texi:30586 +#: guix-git/doc/guix.texi:30951 msgid "Defaults to @samp{1024}." msgstr "Die Vorgabe ist @samp{1024}." #. type: deftypevr -#: guix-git/doc/guix.texi:30589 +#: guix-git/doc/guix.texi:30954 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-size" msgstr "{@code{virtlog-configuration}-Parameter} Ganze-Zahl max-size" #. type: deftypevr -#: guix-git/doc/guix.texi:30591 +#: guix-git/doc/guix.texi:30956 msgid "Maximum file size before rolling over." msgstr "Wie groß eine Protokolldatei werden darf, bevor eine neue begonnen wird." #. type: deftypevr -#: guix-git/doc/guix.texi:30593 +#: guix-git/doc/guix.texi:30958 msgid "Defaults to @samp{2MB}" msgstr "Die Vorgabe ist @samp{2MB}." #. type: deftypevr -#: guix-git/doc/guix.texi:30596 +#: guix-git/doc/guix.texi:30961 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-backups" msgstr "{@code{virtlog-configuration}-Parameter} Ganze-Zahl max-backups" #. type: deftypevr -#: guix-git/doc/guix.texi:30598 +#: guix-git/doc/guix.texi:30963 msgid "Maximum number of backup files to keep." msgstr "Wie viele Dateien mit Sicherungskopien gespeichert bleiben sollen." #. type: deftypevr -#: guix-git/doc/guix.texi:30600 +#: guix-git/doc/guix.texi:30965 msgid "Defaults to @samp{3}" msgstr "Die Vorgabe ist @samp{3}." #. type: anchor{#1} -#: guix-git/doc/guix.texi:30604 +#: guix-git/doc/guix.texi:30969 msgid "transparent-emulation-qemu" msgstr "transparent-emulation-qemu" #. type: subsubheading -#: guix-git/doc/guix.texi:30604 +#: guix-git/doc/guix.texi:30969 #, no-wrap msgid "Transparent Emulation with QEMU" msgstr "Transparente Emulation mit QEMU" #. type: cindex -#: guix-git/doc/guix.texi:30606 guix-git/doc/guix.texi:30686 +#: guix-git/doc/guix.texi:30971 guix-git/doc/guix.texi:31051 #, no-wrap msgid "emulation" msgstr "Emulation" #. type: code{#1} -#: guix-git/doc/guix.texi:30607 +#: guix-git/doc/guix.texi:30972 #, no-wrap msgid "binfmt_misc" msgstr "binfmt_misc" #. type: Plain text -#: guix-git/doc/guix.texi:30615 +#: guix-git/doc/guix.texi:30980 msgid "@code{qemu-binfmt-service-type} provides support for transparent emulation of program binaries built for different architectures---e.g., it allows you to transparently execute an ARMv7 program on an x86_64 machine. It achieves this by combining the @uref{https://www.qemu.org, QEMU} emulator and the @code{binfmt_misc} feature of the kernel Linux. This feature only allows you to emulate GNU/Linux on a different architecture, but see below for GNU/Hurd support." msgstr "Mit @code{qemu-binfmt-service-type} wird transparente Emulation von Programm-Binärdateien, die für unterschiedliche Architekturen erstellt wurden, ermöglicht. Z.B.@: können Sie ein ARMv7-Programm „einfach so“ transparent auf einer x86_64-Maschine ausführen. Dazu wird der @uref{https://www.qemu.org, QEMU-Emulator} mit der @code{binfmt_misc}-Funktionalität des Kernels Linux kombiniert. Mit dieser Funktionalität können Sie jedoch nur ein GNU/Linux-System, das auf einer anderen Architektur läuft, emulieren. Unterstützung für GNU/Hurd ist auch möglich, lesen Sie dazu unten weiter." #. type: defvr -#: guix-git/doc/guix.texi:30616 +#: guix-git/doc/guix.texi:30981 #, no-wrap msgid "{Scheme Variable} qemu-binfmt-service-type" msgstr "{Scheme-Variable} qemu-binfmt-service-type" #. type: defvr -#: guix-git/doc/guix.texi:30621 +#: guix-git/doc/guix.texi:30986 msgid "This is the type of the QEMU/binfmt service for transparent emulation. Its value must be a @code{qemu-binfmt-configuration} object, which specifies the QEMU package to use as well as the architecture we want to emulated:" msgstr "Dies ist der Diensttyp des QEMU/binfmt-Dienstes für transparente Emulation. Sein Wert muss ein @code{qemu-binfmt-configuration}-Objekt sein, das das QEMU-Paket angibt, das benutzt werden soll, sowie die Architektur, die wir emulieren möchten." #. type: lisp -#: guix-git/doc/guix.texi:30626 +#: guix-git/doc/guix.texi:30991 #, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -57302,39 +58035,39 @@ msgstr "" " (platforms (lookup-qemu-platforms \"arm\" \"aarch64\"))))\n" #. type: defvr -#: guix-git/doc/guix.texi:30632 +#: guix-git/doc/guix.texi:30997 msgid "In this example, we enable transparent emulation for the ARM and aarch64 platforms. Running @code{herd stop qemu-binfmt} turns it off, and running @code{herd start qemu-binfmt} turns it back on (@pxref{Invoking herd, the @command{herd} command,, shepherd, The GNU Shepherd Manual})." msgstr "In diesem Beispiel aktivieren wir transparente Emulation für die Plattformen ARM und aarch64. Wenn wir @code{herd stop qemu-binfmt} ausführen, wird diese abgeschaltet, und mit @code{herd start qemu-binfmt} wird sie wieder aktiv (siehe @ref{Invoking herd, den @command{herd}-Befehl,, shepherd, The GNU Shepherd Manual})." #. type: deftp -#: guix-git/doc/guix.texi:30634 +#: guix-git/doc/guix.texi:30999 #, no-wrap msgid "{Data Type} qemu-binfmt-configuration" msgstr "{Datentyp} qemu-binfmt-configuration" #. type: deftp -#: guix-git/doc/guix.texi:30636 +#: guix-git/doc/guix.texi:31001 msgid "This is the configuration for the @code{qemu-binfmt} service." msgstr "Dies ist die Konfiguration des @code{qemu-binfmt}-Dienstes." #. type: item -#: guix-git/doc/guix.texi:30638 +#: guix-git/doc/guix.texi:31003 #, no-wrap msgid "@code{platforms} (default: @code{'()})" msgstr "@code{platforms} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:30641 +#: guix-git/doc/guix.texi:31006 msgid "The list of emulated QEMU platforms. Each item must be a @dfn{platform object} as returned by @code{lookup-qemu-platforms} (see below)." msgstr "Die Liste der emulierten QEMU-Plattformen. Jeder Eintrag muss ein @dfn{Plattformobjekt} sein, wie @code{lookup-qemu-platforms} eines zurückliefert (siehe unten)." #. type: table -#: guix-git/doc/guix.texi:30644 +#: guix-git/doc/guix.texi:31009 msgid "For example, let's suppose you're on an x86_64 machine and you have this service:" msgstr "Wenn wir zum Beispiel annehmen, Sie arbeiten auf einer x86_64-Maschine und haben diesen Dienst eingerichtet:" #. type: lisp -#: guix-git/doc/guix.texi:30649 +#: guix-git/doc/guix.texi:31014 #, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -57346,79 +58079,79 @@ msgstr "" " (platforms (lookup-qemu-platforms \"arm\"))))\n" #. type: table -#: guix-git/doc/guix.texi:30652 +#: guix-git/doc/guix.texi:31017 msgid "You can run:" msgstr "Dann können Sie das hier ausführen:" #. type: example -#: guix-git/doc/guix.texi:30655 +#: guix-git/doc/guix.texi:31020 #, no-wrap msgid "guix build -s armhf-linux inkscape\n" msgstr "guix build -s armhf-linux inkscape\n" #. type: table -#: guix-git/doc/guix.texi:30662 +#: guix-git/doc/guix.texi:31027 msgid "and it will build Inkscape for ARMv7 @emph{as if it were a native build}, transparently using QEMU to emulate the ARMv7 CPU@. Pretty handy if you'd like to test a package build for an architecture you don't have access to!" msgstr "und alles verhält sich so, als würden Sie Inkscape für ARMv7 @emph{wie „nativ“ auf einem ARM-Rechner erstellen}, wozu QEMU transparent benutzt wird, um den ARMv7-Prozessor zu emulieren. Das ist ganz schön praktisch, wenn Sie testen wollen, ob ein Paket für eine Architektur erstellt werden kann, die Ihnen nicht zur Verfügung steht." #. type: item -#: guix-git/doc/guix.texi:30663 +#: guix-git/doc/guix.texi:31028 #, no-wrap msgid "@code{qemu} (default: @code{qemu})" msgstr "@code{qemu} (Vorgabe: @code{qemu})" #. type: table -#: guix-git/doc/guix.texi:30665 guix-git/doc/guix.texi:30723 -#: guix-git/doc/guix.texi:30805 +#: guix-git/doc/guix.texi:31030 guix-git/doc/guix.texi:31088 +#: guix-git/doc/guix.texi:31170 msgid "The QEMU package to use." msgstr "Das QEMU-Paket, das benutzt werden soll." #. type: deffn -#: guix-git/doc/guix.texi:30668 +#: guix-git/doc/guix.texi:31033 #, no-wrap msgid "{Scheme Procedure} lookup-qemu-platforms @var{platforms}@dots{}" msgstr "{Scheme-Prozedur} lookup-qemu-platforms @var{Plattformen}…" #. type: deffn -#: guix-git/doc/guix.texi:30673 +#: guix-git/doc/guix.texi:31038 msgid "Return the list of QEMU platform objects corresponding to @var{platforms}@dots{}. @var{platforms} must be a list of strings corresponding to platform names, such as @code{\"arm\"}, @code{\"sparc\"}, @code{\"mips64el\"}, and so on." msgstr "Liefert die Liste der QEMU-Plattformobjekte, die den @var{Plattformen}…@: entsprechen. @var{Plattformen} muss eine Liste von Zeichenketten sein, die den Namen der Plattformen entsprechen, wie z.B.@: @code{\"arm\"}, @code{\"sparc\"}, @code{\"mips64el\"} und so weiter." #. type: deffn -#: guix-git/doc/guix.texi:30675 +#: guix-git/doc/guix.texi:31040 #, no-wrap msgid "{Scheme Procedure} qemu-platform? @var{obj}" msgstr "{Scheme-Prozedur} qemu-platform? @var{Objekt}" #. type: deffn -#: guix-git/doc/guix.texi:30677 +#: guix-git/doc/guix.texi:31042 msgid "Return true if @var{obj} is a platform object." msgstr "Liefert wahr, wenn das @var{Objekt} ein Plattformobjekt ist." #. type: deffn -#: guix-git/doc/guix.texi:30679 +#: guix-git/doc/guix.texi:31044 #, no-wrap msgid "{Scheme Procedure} qemu-platform-name @var{platform}" msgstr "{Scheme-Prozedur} qemu-platform-name @var{Plattform}" #. type: deffn -#: guix-git/doc/guix.texi:30681 +#: guix-git/doc/guix.texi:31046 msgid "Return the name of @var{platform}---a string such as @code{\"arm\"}." msgstr "Liefert den Namen der @var{Plattform}, also eine Zeichenkette wie z.B.@: @code{\"arm\"}." #. type: subsubheading -#: guix-git/doc/guix.texi:30684 +#: guix-git/doc/guix.texi:31049 #, no-wrap msgid "QEMU Guest Agent" msgstr "QEMU Guest Agent" #. type: Plain text -#: guix-git/doc/guix.texi:30692 +#: guix-git/doc/guix.texi:31057 msgid "The QEMU guest agent provides control over the emulated system to the host. The @code{qemu-guest-agent} service runs the agent on Guix guests. To control the agent from the host, open a socket by invoking QEMU with the following arguments:" msgstr "Mit dem QEMU Guest Agent kann das emulierte System vom Wirtssystem aus gesteuert werden. Der Dienst für den @code{qemu-guest-agent} führt den Agenten auf einem Guix-basierten Gastsystem aus. Um den Agenten vom Wirt aus zu steuern, öffnen Sie einen Socket, indem Sie QEMU mit folgenden Argumenten aufrufen:" #. type: example -#: guix-git/doc/guix.texi:30699 +#: guix-git/doc/guix.texi:31064 #, no-wrap msgid "" "qemu-system-x86_64 \\\n" @@ -57434,12 +58167,12 @@ msgstr "" "\t…\n" #. type: Plain text -#: guix-git/doc/guix.texi:30703 +#: guix-git/doc/guix.texi:31068 msgid "This creates a socket at @file{/tmp/qga.sock} on the host. Once the guest agent is running, you can issue commands with @code{socat}:" msgstr "Dadurch wird auf dem Wirtssystem ein Socket unter @file{/tmp/qga.sock} angelegt. Sobald der Guest Agent gestartet hat, können Sie mit @code{socat} Befehle erteilen:" #. type: example -#: guix-git/doc/guix.texi:30708 +#: guix-git/doc/guix.texi:31073 #, no-wrap msgid "" "$ guix shell socat -- socat unix-connect:/tmp/qga.sock stdio\n" @@ -57451,74 +58184,74 @@ msgstr "" "@{\"return\": @{\"host-name\": \"guix\"@}@}\n" #. type: Plain text -#: guix-git/doc/guix.texi:30712 +#: guix-git/doc/guix.texi:31077 msgid "See @url{https://wiki.qemu.org/Features/GuestAgent,QEMU guest agent documentation} for more options and commands." msgstr "Siehe die @url{https://wiki.qemu.org/Features/GuestAgent,Dokumentation zum QEMU Guest Agent} für mehr Optionen und Befehle." #. type: defvr -#: guix-git/doc/guix.texi:30713 +#: guix-git/doc/guix.texi:31078 #, no-wrap msgid "{Scheme Variable} qemu-guest-agent-service-type" msgstr "{Scheme-Variable} qemu-guest-agent-service-type" #. type: defvr -#: guix-git/doc/guix.texi:30715 +#: guix-git/doc/guix.texi:31080 msgid "Service type for the QEMU guest agent service." msgstr "Diensttyp des Dienstes für den QEMU Guest Agent." #. type: deftp -#: guix-git/doc/guix.texi:30717 +#: guix-git/doc/guix.texi:31082 #, no-wrap msgid "{Data Type} qemu-guest-agent-configuration" msgstr "{Datentyp} qemu-guest-agent-configuration" #. type: deftp -#: guix-git/doc/guix.texi:30719 +#: guix-git/doc/guix.texi:31084 msgid "Configuration for the @code{qemu-guest-agent} service." msgstr "Die Konfiguration des @code{qemu-guest-agent}-Dienstes." #. type: item -#: guix-git/doc/guix.texi:30721 guix-git/doc/guix.texi:30803 +#: guix-git/doc/guix.texi:31086 guix-git/doc/guix.texi:31168 #, no-wrap msgid "@code{qemu} (default: @code{qemu-minimal})" msgstr "@code{qemu} (Vorgabe: @code{qemu-minimal})" #. type: item -#: guix-git/doc/guix.texi:30724 +#: guix-git/doc/guix.texi:31089 #, no-wrap msgid "@code{device} (default: @code{\"\"})" msgstr "@code{device} (Vorgabe: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:30727 +#: guix-git/doc/guix.texi:31092 msgid "File name of the device or socket the agent uses to communicate with the host. If empty, QEMU uses a default file name." msgstr "Der Dateiname des Geräts bzw.@: Sockets, über das der Agent mit dem Wirtssystem kommuniziert. Wird nichts angegeben, verwendet QEMU einen voreingestellten Dateinamen." #. type: subsubheading -#: guix-git/doc/guix.texi:30731 +#: guix-git/doc/guix.texi:31096 #, no-wrap msgid "The Hurd in a Virtual Machine" msgstr "GNU@tie{}Hurd in einer virtuellen Maschine" #. type: cindex -#: guix-git/doc/guix.texi:30734 +#: guix-git/doc/guix.texi:31099 #, no-wrap msgid "the Hurd" msgstr "Hurd" #. type: cindex -#: guix-git/doc/guix.texi:30735 +#: guix-git/doc/guix.texi:31100 #, no-wrap msgid "childhurd" msgstr "childhurd" #. type: Plain text -#: guix-git/doc/guix.texi:30743 +#: guix-git/doc/guix.texi:31108 msgid "Service @code{hurd-vm} provides support for running GNU/Hurd in a virtual machine (VM), a so-called @dfn{childhurd}. This service is meant to be used on GNU/Linux and the given GNU/Hurd operating system configuration is cross-compiled. The virtual machine is a Shepherd service that can be referred to by the names @code{hurd-vm} and @code{childhurd} and be controlled with commands such as:" msgstr "Der @code{hurd-vm}-Dienst bietet Unterstützung, um GNU/Hurd in einer virtuellen Maschine (VM) laufen zu lassen, als eine sogenannte „Kind-Hurd“, englisch @dfn{Childhurd}. Der Dienst ist für die Nutzung mit GNU/Linux-Systemen gedacht; die angegebene GNU/Hurd-Konfiguration wird cross-kompiliert. Die virtuelle Maschine läuft als ein Shepherd-Dienst, der durch Namen wie @code{hurd-vm} und @code{childhurd} bezeichnet wird und mit Befehlen wie den folgenden gesteuert werden kann:" #. type: example -#: guix-git/doc/guix.texi:30747 +#: guix-git/doc/guix.texi:31112 #, no-wrap msgid "" "herd start hurd-vm\n" @@ -57528,50 +58261,50 @@ msgstr "" "herd stop childhurd\n" #. type: Plain text -#: guix-git/doc/guix.texi:30751 +#: guix-git/doc/guix.texi:31116 msgid "When the service is running, you can view its console by connecting to it with a VNC client, for example with:" msgstr "Während der Dienst läuft, können Sie seine Konsole anzeigen lassen, indem Sie sich über einen VNC-Client mit ihm verbinden, z.B.@: durch den Befehl:" #. type: example -#: guix-git/doc/guix.texi:30754 +#: guix-git/doc/guix.texi:31119 #, no-wrap msgid "guix shell tigervnc-client -- vncviewer localhost:5900\n" msgstr "guix shell tigervnc-client -- vncviewer localhost:5900\n" #. type: Plain text -#: guix-git/doc/guix.texi:30760 +#: guix-git/doc/guix.texi:31125 msgid "The default configuration (see @code{hurd-vm-configuration} below) spawns a secure shell (SSH) server in your GNU/Hurd system, which QEMU (the virtual machine emulator) redirects to port 10222 on the host. Thus, you can connect over SSH to the childhurd with:" msgstr "Die Vorgabekonfiguration (siehe @code{hurd-vm-configuration} unten) lässt einen Server für Secure Shell (SSH) in Ihrem GNU/Hurd-System laufen, welchen QEMU (der Emulator für virtuelle Maschinen) an Port 10222 des Wirtssystems weitergibt. So können Sie sich mit der Childhurd über SSH verbinden:" #. type: example -#: guix-git/doc/guix.texi:30763 +#: guix-git/doc/guix.texi:31128 #, no-wrap msgid "ssh root@@localhost -p 10022\n" msgstr "ssh root@@localhost -p 10022\n" #. type: Plain text -#: guix-git/doc/guix.texi:30772 +#: guix-git/doc/guix.texi:31137 msgid "The childhurd is volatile and stateless: it starts with a fresh root file system every time you restart it. By default though, all the files under @file{/etc/childhurd} on the host are copied as is to the root file system of the childhurd when it boots. This allows you to initialize ``secrets'' inside the VM: SSH host keys, authorized substitute keys, and so on---see the explanation of @code{secret-root} below." msgstr "Die Childhurd ist flüchtig und zustandslos: Jedes Mal, wenn Sie sie neu starten, hat sie wieder ihr ursprüngliches Wurzeldateisystem. Nur die Dateien unter @file{/etc/childhurd} im Wirtssystem werden nach Vorgabe in das Wurzeldateisystem der Childhurd übernommen, wenn sie startet. So können Sie einen Startwert für „Geheimnisse“ in der VM angeben: SSH-Rechnerschlüssel („Host Keys“), Autorisierungsschlüssel für Substitute und so weiter@tie{}— siehe die Erklärung zu @code{secret-root} unten." #. type: defvr -#: guix-git/doc/guix.texi:30773 +#: guix-git/doc/guix.texi:31138 #, no-wrap msgid "{Scheme Variable} hurd-vm-service-type" msgstr "{Scheme-Variable} hurd-vm-service-type" #. type: defvr -#: guix-git/doc/guix.texi:30779 +#: guix-git/doc/guix.texi:31144 msgid "This is the type of the Hurd in a Virtual Machine service. Its value must be a @code{hurd-vm-configuration} object, which specifies the operating system (@pxref{operating-system Reference}) and the disk size for the Hurd Virtual Machine, the QEMU package to use as well as the options for running it." msgstr "Dies ist der Diensttyp zum Hurd-in-einer-virtuellen-Maschine-Dienst. Dessen Wert muss ein @code{hurd-vm-configuration}-Objekt sein, das das Betriebssystem festlegt (siehe @ref{operating-system Reference}) und die Plattengröße für die virtuelle Hurd-Maschine, das zu nutzende QEMU-Paket sowie die Befehlszeilenoptionen, um sie auszuführen." #. type: defvr -#: guix-git/doc/guix.texi:30781 +#: guix-git/doc/guix.texi:31146 msgid "For example:" msgstr "Zum Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:30787 +#: guix-git/doc/guix.texi:31152 #, no-wrap msgid "" "(service hurd-vm-service-type\n" @@ -57585,99 +58318,99 @@ msgstr "" " (memory-size 1024))) ;1024MiB\n" #. type: defvr -#: guix-git/doc/guix.texi:30791 +#: guix-git/doc/guix.texi:31156 msgid "would create a disk image big enough to build GNU@tie{}Hello, with some extra memory." msgstr "würde zur Erzeugung eines Disk-Images führen, dessen Größe für die Erstellung von GNU@tie{}Hello ausreichend ist und das noch ein wenig zusätzlichen Arbeitsspeicher zur Verfügung stellt." #. type: deftp -#: guix-git/doc/guix.texi:30793 +#: guix-git/doc/guix.texi:31158 #, no-wrap msgid "{Data Type} hurd-vm-configuration" msgstr "{Datentyp} hurd-vm-configuration" #. type: deftp -#: guix-git/doc/guix.texi:30796 +#: guix-git/doc/guix.texi:31161 msgid "The data type representing the configuration for @code{hurd-vm-service-type}." msgstr "Der Datentyp, der die Konfiguration des @code{hurd-vm-service-type} repräsentiert." #. type: item -#: guix-git/doc/guix.texi:30798 +#: guix-git/doc/guix.texi:31163 #, no-wrap msgid "@code{os} (default: @var{%hurd-vm-operating-system})" msgstr "@code{os} (Vorgabe: @var{%hurd-vm-operating-system})" #. type: table -#: guix-git/doc/guix.texi:30802 +#: guix-git/doc/guix.texi:31167 msgid "The operating system to instantiate. This default is bare-bones with a permissive OpenSSH secure shell daemon listening on port 2222 (@pxref{Networking Services, @code{openssh-service-type}})." msgstr "Welches Betriebssystem instanziiert werden soll. Nach Vorgabe wird ein minimales „Bare-Bones“-System mit uneingeschränktem OpenSSH-Secure-Shell-Daemon, der auf Port 2222 lauscht (siehe @ref{Networking Services, @code{openssh-service-type}})." #. type: item -#: guix-git/doc/guix.texi:30806 +#: guix-git/doc/guix.texi:31171 #, no-wrap msgid "@code{image} (default: @var{hurd-vm-disk-image})" msgstr "@code{image} (Vorgabe: @var{hurd-vm-disk-image})" #. type: table -#: guix-git/doc/guix.texi:30809 +#: guix-git/doc/guix.texi:31174 msgid "The procedure used to build the disk-image built from this configuration." msgstr "Die Prozedur, um das Disk-Image aus dieser Konfiguration zu erstellen." #. type: item -#: guix-git/doc/guix.texi:30810 +#: guix-git/doc/guix.texi:31175 #, no-wrap msgid "@code{disk-size} (default: @code{'guess})" msgstr "@code{disk-size} (Vorgabe: @code{'guess})" #. type: table -#: guix-git/doc/guix.texi:30812 +#: guix-git/doc/guix.texi:31177 msgid "The size of the disk image." msgstr "Die Größe des Disk-Images." #. type: item -#: guix-git/doc/guix.texi:30813 +#: guix-git/doc/guix.texi:31178 #, no-wrap msgid "@code{memory-size} (default: @code{512})" msgstr "@code{memory-size} (Vorgabe: @code{512})" #. type: table -#: guix-git/doc/guix.texi:30815 +#: guix-git/doc/guix.texi:31180 msgid "The memory size of the Virtual Machine in mebibytes." msgstr "Die Größe des Arbeitsspeichers der virtuellen Maschine in Mebibyte." #. type: item -#: guix-git/doc/guix.texi:30816 +#: guix-git/doc/guix.texi:31181 #, no-wrap msgid "@code{options} (default: @code{'(\"--snapshot\")})" msgstr "@code{options} (Vorgabe: @code{'(\"--snapshot\")})" #. type: table -#: guix-git/doc/guix.texi:30818 +#: guix-git/doc/guix.texi:31183 msgid "The extra options for running QEMU." msgstr "Weitere Befehlszeilenoptionen, mit denen QEMU ausgeführt wird." #. type: table -#: guix-git/doc/guix.texi:30823 +#: guix-git/doc/guix.texi:31188 msgid "If set, a non-zero positive integer used to parameterize Childhurd instances. It is appended to the service's name, e.g. @code{childhurd1}." msgstr "Wenn das Feld gesetzt ist, muss es eine positive ganze Zahl größer null sein, womit Childhurd-Instanzen parametrisiert werden. Es wird an den Dienstnamen angehängt, z.B.@: @code{childhurd1}." #. type: item -#: guix-git/doc/guix.texi:30824 +#: guix-git/doc/guix.texi:31189 #, no-wrap msgid "@code{net-options} (default: @var{hurd-vm-net-options})" msgstr "@code{net-options} (Vorgabe: @var{hurd-vm-net-options})" #. type: table -#: guix-git/doc/guix.texi:30826 +#: guix-git/doc/guix.texi:31191 msgid "The procedure used to produce the list of QEMU networking options." msgstr "Die Prozedur, um die Liste der QEMU-Netzwerkoptionen zu erzeugen." #. type: table -#: guix-git/doc/guix.texi:30828 +#: guix-git/doc/guix.texi:31193 msgid "By default, it produces" msgstr "Nach Vorgabe liefert sie" #. type: lisp -#: guix-git/doc/guix.texi:30836 +#: guix-git/doc/guix.texi:31201 #, no-wrap msgid "" "'(\"--device\" \"rtl8139,netdev=net0\"\n" @@ -57695,12 +58428,12 @@ msgstr "" " \"hostfwd=tcp:127.0.0.1:@var{vnc-port}-:5900\"))\n" #. type: table -#: guix-git/doc/guix.texi:30839 +#: guix-git/doc/guix.texi:31204 msgid "with forwarded ports:" msgstr "mit Portweiterleitungen:" #. type: example -#: guix-git/doc/guix.texi:30844 +#: guix-git/doc/guix.texi:31209 #, no-wrap msgid "" "@var{secrets-port}: @code{(+ 11004 (* 1000 @var{ID}))}\n" @@ -57712,28 +58445,28 @@ msgstr "" "@var{vnc-port}: @code{(+ 15900 (* 1000 @var{ID}))}\n" #. type: item -#: guix-git/doc/guix.texi:30846 +#: guix-git/doc/guix.texi:31211 #, no-wrap msgid "@code{secret-root} (default: @file{/etc/childhurd})" msgstr "@code{secret-root} (Vorgabe: @file{/etc/childhurd})" #. type: table -#: guix-git/doc/guix.texi:30851 +#: guix-git/doc/guix.texi:31216 msgid "The root directory with out-of-band secrets to be installed into the childhurd once it runs. Childhurds are volatile which means that on every startup, secrets such as the SSH host keys and Guix signing key are recreated." msgstr "Das Wurzelverzeichnis von Geheimnissen, die auf der Childhurd „out of band“, d.h.@: abseits vom Zuständigkeitsbereich der Childhurd, installiert werden sollen, sobald sie gestartet wurde. Childhurds sind flüchtig, d.h.@: bei jedem Start würden Geheimnisse wie die SSH-Rechnerschlüssel und Signierschlüssel von Guix neu angelegt." #. type: table -#: guix-git/doc/guix.texi:30855 +#: guix-git/doc/guix.texi:31220 msgid "If the @file{/etc/childhurd} directory does not exist, the @code{secret-service} running in the Childhurd will be sent an empty list of secrets." msgstr "Wenn das Verzeichnis @file{/etc/childhurd} @emph{nicht} existiert, wird dem im Childhurd laufenden @code{secret-service}-Dienst eine leere Liste von Geheimnissen geschickt." #. type: table -#: guix-git/doc/guix.texi:30858 +#: guix-git/doc/guix.texi:31223 msgid "By default, the service automatically populates @file{/etc/childhurd} with the following non-volatile secrets, unless they already exist:" msgstr "Üblicherweise wird er benutzt, um in @file{\"/etc/childhurd\"} einen Dateibaum aus @emph{nicht} flüchtigen Geheimnissen einzufügen, wenn diese noch @emph{nicht} existieren:" #. type: example -#: guix-git/doc/guix.texi:30867 +#: guix-git/doc/guix.texi:31232 #, no-wrap msgid "" "/etc/childhurd/etc/guix/acl\n" @@ -57753,34 +58486,34 @@ msgstr "" "/etc/childhurd/etc/ssh/ssh_host_ecdsa_key.pub\n" #. type: table -#: guix-git/doc/guix.texi:30871 +#: guix-git/doc/guix.texi:31236 msgid "These files are automatically sent to the guest Hurd VM when it boots, including permissions." msgstr "Diese Dateien werden automatisch an die Gast-Hurd-VM geschickt, wenn sie bootet, einschließlich der Dateiberechtigungen." #. type: cindex -#: guix-git/doc/guix.texi:30872 +#: guix-git/doc/guix.texi:31237 #, no-wrap msgid "childhurd, offloading" msgstr "Childhurd, Auslagern auf" #. type: cindex -#: guix-git/doc/guix.texi:30873 +#: guix-git/doc/guix.texi:31238 #, no-wrap msgid "Hurd, offloading" msgstr "Hurd, Auslagern auf" #. type: table -#: guix-git/doc/guix.texi:30877 +#: guix-git/doc/guix.texi:31242 msgid "Having these files in place means that only a couple of things are missing to allow the host to offload @code{i586-gnu} builds to the childhurd:" msgstr "Wenn diese Dateien platziert wurden, fehlen nur noch wenige Dinge, damit das Wirtssystem @code{i586-gnu}-Erstellungen auf die Childhurd auslagern kann:" #. type: enumerate -#: guix-git/doc/guix.texi:30882 +#: guix-git/doc/guix.texi:31247 msgid "Authorizing the childhurd's key on the host so that the host accepts build results coming from the childhurd, which can be done like so:" msgstr "Der Schlüssel der Childhurd muss auf dem Wirtssystem authentifiziert werden, damit das Wirtssystem von der Childhurd stammende Erstellungsergebnisse annimmt. Das geht so:" #. type: example -#: guix-git/doc/guix.texi:30886 +#: guix-git/doc/guix.texi:31251 #, no-wrap msgid "" "guix archive --authorize < \\\n" @@ -57790,22 +58523,22 @@ msgstr "" " /etc/childhurd/etc/guix/signing-key.pub\n" #. type: enumerate -#: guix-git/doc/guix.texi:30891 +#: guix-git/doc/guix.texi:31256 msgid "Adding the childhurd to @file{/etc/guix/machines.scm} (@pxref{Daemon Offload Setup})." msgstr "Die Childhurd muss zu @file{/etc/guix/machines.scm} hinzugefügt werden (siehe @ref{Daemon Offload Setup})." #. type: table -#: guix-git/doc/guix.texi:30895 +#: guix-git/doc/guix.texi:31260 msgid "We're working towards making that happen automatically---get in touch with us at @email{guix-devel@@gnu.org} to discuss it!" msgstr "Wir arbeiten daran, dass das automatisch passiert. Reden Sie mit uns unter @email{guix-devel@@gnu.org}, wenn Sie dabei mitdiskutieren möchten!" #. type: Plain text -#: guix-git/doc/guix.texi:30902 +#: guix-git/doc/guix.texi:31267 msgid "Note that by default the VM image is volatile, i.e., once stopped the contents are lost. If you want a stateful image instead, override the configuration's @code{image} and @code{options} without the @code{--snapshot} flag using something along these lines:" msgstr "Beachten Sie, dass nach Vorgabe ein flüchtiges Abbild für die virtuelle Maschine benutzt wird, also dessen Inhalt verloren geht, sobald sie gestoppt wurde. Wenn Sie stattdessen ein zustandsbehaftetes Abbild möchten, ändern Sie die Felder @code{image} und @code{options} in der Konfiguration, so dass keine @code{--snapshot}-Befehlszeilenoption übergeben wird, z.B.@: so:" #. type: lisp -#: guix-git/doc/guix.texi:30908 +#: guix-git/doc/guix.texi:31273 #, no-wrap msgid "" "(service hurd-vm-service-type\n" @@ -57819,34 +58552,34 @@ msgstr "" " (options '())))\n" #. type: subsubheading -#: guix-git/doc/guix.texi:30910 +#: guix-git/doc/guix.texi:31275 #, no-wrap msgid "Ganeti" msgstr "Ganeti" #. type: cindex -#: guix-git/doc/guix.texi:30912 +#: guix-git/doc/guix.texi:31277 #, no-wrap msgid "ganeti" msgstr "ganeti" #. type: quotation -#: guix-git/doc/guix.texi:30919 +#: guix-git/doc/guix.texi:31284 msgid "This service is considered experimental. Configuration options may be changed in a backwards-incompatible manner, and not all features have been thorougly tested. Users of this service are encouraged to share their experience at @email{guix-devel@@gnu.org}." msgstr "Dieser Dienst gilt als experimentell. Die Konfigurationsoptionen könnten in Zukunft noch auf eine Weise abgeändert werden, die keine Kompatibilität mit dem momentanen Verhalten gewährleistet, und nicht alle Funktionalitäten wurden gründlich getestet. Wenn Sie ihn benutzen, ermutigen wir Sie, Ihre Erfahrungen mit uns über @email{guix-devel@@gnu.org} zu teilen." #. type: Plain text -#: guix-git/doc/guix.texi:30929 +#: guix-git/doc/guix.texi:31294 msgid "Ganeti is a virtual machine management system. It is designed to keep virtual machines running on a cluster of servers even in the event of hardware failures, and to make maintenance and recovery tasks easy. It consists of multiple services which are described later in this section. In addition to the Ganeti service, you will need the OpenSSH service (@pxref{Networking Services, @code{openssh-service-type}}), and update the @file{/etc/hosts} file (@pxref{operating-system Reference, @code{hosts-file}}) with the cluster name and address (or use a DNS server)." msgstr "Ganeti ist ein System zur Verwaltung virtueller Maschinen. Es ist dafür gedacht, virtuelle Maschinen auf einem Server-Cluster am Laufen zu halten, selbst wenn Hardware ausfällt, und deren Wartung und Wiederherstellung einfach zu machen. Es besteht aus mehreren Diensten, die später in diesem Abschnitt beschrieben werden. Zusätzlich zum Ganeti-Dienst brauchen Sie den OpenSSH-Dienst (siehe @ref{Networking Services, @code{openssh-service-type}}) und müssen in die Datei @file{/etc/hosts} (siehe @ref{operating-system Reference, @code{hosts-file}}) den Namen des Clusters mit Adresse eintragen lassen (oder Sie verwenden einen eigenen DNS-Server)." #. type: Plain text -#: guix-git/doc/guix.texi:30934 +#: guix-git/doc/guix.texi:31299 msgid "All nodes participating in a Ganeti cluster should have the same Ganeti and @file{/etc/hosts} configuration. Here is an example configuration for a Ganeti cluster node that supports multiple storage backends, and installs the @code{debootstrap} and @code{guix} @dfn{OS providers}:" msgstr "Alle Knoten, die an einem Ganeti-Cluster teilnehmen, sollten dieselbe Konfiguration von Ganeti und @file{/etc/hosts} aufweisen. Hier ist eine Beispielkonfiguration für einen Ganeti-Clusterknoten, der mehrere Hintergrundsysteme für Speichergeräte unterstützt und die @dfn{Betriebssystemanbieter} („OS providers“) @code{debootstrap} sowie @code{guix} installiert hat:" #. type: lisp -#: guix-git/doc/guix.texi:30944 +#: guix-git/doc/guix.texi:31309 #, no-wrap msgid "" "(use-package-modules virtualization)\n" @@ -57870,7 +58603,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:30949 +#: guix-git/doc/guix.texi:31314 #, no-wrap msgid "" "192.168.1.200 ganeti.example.com\n" @@ -57886,7 +58619,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:30970 +#: guix-git/doc/guix.texi:31335 #, no-wrap msgid "" " ;; Install QEMU so we can use KVM-based instances, and LVM, DRBD and Ceph\n" @@ -57935,7 +58668,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:30975 +#: guix-git/doc/guix.texi:31340 #, no-wrap msgid "" " ;; Ganeti uses SSH to communicate between nodes.\n" @@ -57951,7 +58684,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:30985 +#: guix-git/doc/guix.texi:31350 #, no-wrap msgid "" " (service ganeti-service-type\n" @@ -57977,120 +58710,120 @@ msgstr "" " %base-services)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:30993 +#: guix-git/doc/guix.texi:31358 msgid "Users are advised to read the @url{http://docs.ganeti.org/ganeti/master/html/admin.html,Ganeti administrators guide} to learn about the various cluster options and day-to-day operations. There is also a @url{https://guix.gnu.org/blog/2020/running-a-ganeti-cluster-on-guix/,blog post} describing how to configure and initialize a small cluster." msgstr "Benutzern wird geraten, die @url{http://docs.ganeti.org/ganeti/master/html/admin.html,Anleitung für Ganeti-Administratoren} zu lesen, um die verschiedenen Optionen für Ganeti-Cluster und die häufigen Operationen zu erlernen. Es gibt auch einen @url{https://guix.gnu.org/blog/2020/running-a-ganeti-cluster-on-guix/,Blogeintrag}, der beschreibt, wie man einen kleinen Cluster konfiguriert und initialisiert." #. type: defvr -#: guix-git/doc/guix.texi:30994 +#: guix-git/doc/guix.texi:31359 #, no-wrap msgid "{Scheme Variable} ganeti-service-type" msgstr "{Scheme-Variable} ganeti-service-type" #. type: defvr -#: guix-git/doc/guix.texi:30997 +#: guix-git/doc/guix.texi:31362 msgid "This is a service type that includes all the various services that Ganeti nodes should run." msgstr "Dieser Diensttyp umfasst all die verschiedenen Dienste, die auf Ganeti-Knoten ausgeführt werden sollen." #. type: defvr -#: guix-git/doc/guix.texi:31002 +#: guix-git/doc/guix.texi:31367 msgid "Its value is a @code{ganeti-configuration} object that defines the package to use for CLI operations, as well as configuration for the various daemons. Allowed file storage paths and available guest operating systems are also configured through this data type." msgstr "Sein Wert ist ein @code{ganeti-configuration}-Objekt, das das Paket für den Betrieb über die Befehlszeile sowie die Konfiguration der einzelnen Daemons festlegt. Auch werden zulässige Pfade für die Speicherung in Dateien sowie verfügbare Gastbetriebssysteme über diesen Datentyp konfiguriert." #. type: deftp -#: guix-git/doc/guix.texi:31004 +#: guix-git/doc/guix.texi:31369 #, no-wrap msgid "{Data Type} ganeti-configuration" msgstr "{Datentyp} ganeti-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31006 +#: guix-git/doc/guix.texi:31371 msgid "The @code{ganeti} service takes the following configuration options:" msgstr "Der @code{ganeti}-Dienst akzeptiert folgende Konfigurationsoptionen:" #. type: item -#: guix-git/doc/guix.texi:31008 guix-git/doc/guix.texi:31236 -#: guix-git/doc/guix.texi:31286 guix-git/doc/guix.texi:31316 -#: guix-git/doc/guix.texi:31343 guix-git/doc/guix.texi:31375 -#: guix-git/doc/guix.texi:31428 guix-git/doc/guix.texi:31448 -#: guix-git/doc/guix.texi:31474 guix-git/doc/guix.texi:31507 -#: guix-git/doc/guix.texi:31547 +#: guix-git/doc/guix.texi:31373 guix-git/doc/guix.texi:31601 +#: guix-git/doc/guix.texi:31651 guix-git/doc/guix.texi:31681 +#: guix-git/doc/guix.texi:31708 guix-git/doc/guix.texi:31740 +#: guix-git/doc/guix.texi:31793 guix-git/doc/guix.texi:31813 +#: guix-git/doc/guix.texi:31839 guix-git/doc/guix.texi:31872 +#: guix-git/doc/guix.texi:31912 #, no-wrap msgid "@code{ganeti} (default: @code{ganeti})" msgstr "@code{ganeti} (Vorgabe: @code{ganeti})" #. type: table -#: guix-git/doc/guix.texi:31013 +#: guix-git/doc/guix.texi:31378 msgid "The @code{ganeti} package to use. It will be installed to the system profile and make @command{gnt-cluster}, @command{gnt-instance}, etc available. Note that the value specified here does not affect the other services as each refer to a specific @code{ganeti} package (see below)." msgstr "Welches @code{ganeti}-Paket benutzt werden soll. Es wird ins Systemprofil installiert und macht die Befehlszeilenwerkzeuge @command{gnt-cluster}, @command{gnt-instance} usw.@: verfügbar. Beachten Sie, dass der hier angegebene Wert keinen Einfluss auf die anderen Dienste hat; jeder legt sein eigenes @code{ganeti}-Paket fest (siehe unten)." #. type: item -#: guix-git/doc/guix.texi:31014 +#: guix-git/doc/guix.texi:31379 #, no-wrap msgid "@code{noded-configuration} (default: @code{(ganeti-noded-configuration)})" msgstr "@code{noded-configuration} (Vorgabe: @code{(ganeti-noded-configuration)})" #. type: itemx -#: guix-git/doc/guix.texi:31015 +#: guix-git/doc/guix.texi:31380 #, no-wrap msgid "@code{confd-configuration} (default: @code{(ganeti-confd-configuration)})" msgstr "@code{confd-configuration} (Vorgabe: @code{(ganeti-confd-configuration)})" #. type: itemx -#: guix-git/doc/guix.texi:31016 +#: guix-git/doc/guix.texi:31381 #, no-wrap msgid "@code{wconfd-configuration} (default: @code{(ganeti-wconfd-configuration)})" msgstr "@code{wconfd-configuration} (Vorgabe: @code{(ganeti-wconfd-configuration)})" #. type: itemx -#: guix-git/doc/guix.texi:31017 +#: guix-git/doc/guix.texi:31382 #, no-wrap msgid "@code{luxid-configuration} (default: @code{(ganeti-luxid-configuration)})" msgstr "@code{luxid-configuration} (Vorgabe: @code{(ganeti-luxid-configuration)})" #. type: itemx -#: guix-git/doc/guix.texi:31018 +#: guix-git/doc/guix.texi:31383 #, no-wrap msgid "@code{rapi-configuration} (default: @code{(ganeti-rapi-configuration)})" msgstr "@code{rapi-configuration} (Vorgabe: @code{(ganeti-rapi-configuration)})" #. type: itemx -#: guix-git/doc/guix.texi:31019 +#: guix-git/doc/guix.texi:31384 #, no-wrap msgid "@code{kvmd-configuration} (default: @code{(ganeti-kvmd-configuration)})" msgstr "@code{kvmd-configuration} (Vorgabe: @code{(ganeti-kvmd-configuration)})" #. type: itemx -#: guix-git/doc/guix.texi:31020 +#: guix-git/doc/guix.texi:31385 #, no-wrap msgid "@code{mond-configuration} (default: @code{(ganeti-mond-configuration)})" msgstr "@code{mond-configuration} (Vorgabe: @code{(ganeti-mond-configuration)})" #. type: itemx -#: guix-git/doc/guix.texi:31021 +#: guix-git/doc/guix.texi:31386 #, no-wrap msgid "@code{metad-configuration} (default: @code{(ganeti-metad-configuration)})" msgstr "@code{metad-configuration} (Vorgabe: @code{(ganeti-metad-configuration)})" #. type: itemx -#: guix-git/doc/guix.texi:31022 +#: guix-git/doc/guix.texi:31387 #, no-wrap msgid "@code{watcher-configuration} (default: @code{(ganeti-watcher-configuration)})" msgstr "@code{watcher-configuration} (Vorgabe: @code{(ganeti-watcher-configuration)})" #. type: itemx -#: guix-git/doc/guix.texi:31023 +#: guix-git/doc/guix.texi:31388 #, no-wrap msgid "@code{cleaner-configuration} (default: @code{(ganeti-cleaner-configuration)})" msgstr "@code{cleaner-configuration} (Vorgabe: @code{(ganeti-cleaner-configuration)})" #. type: table -#: guix-git/doc/guix.texi:31028 +#: guix-git/doc/guix.texi:31393 msgid "These options control the various daemons and cron jobs that are distributed with Ganeti. The possible values for these are described in detail below. To override a setting, you must use the configuration type for that service:" msgstr "Mit diesen Optionen stellen Sie die verschiedenen Daemons und Cron-Aufträge ein, die mit Ganeti eingerichtet werden. Die möglichen Werte dafür werden im Folgenden genau beschrieben. Um eine Einstellung zu ändern, müssen Sie den Konfigurationstyp für den jeweiligen Dienst verwenden:" #. type: lisp -#: guix-git/doc/guix.texi:31038 +#: guix-git/doc/guix.texi:31403 #, no-wrap msgid "" "(service ganeti-service-type\n" @@ -58112,34 +58845,34 @@ msgstr "" " (rapi-ip \"10.0.0.1\"))))\n" #. type: item -#: guix-git/doc/guix.texi:31040 +#: guix-git/doc/guix.texi:31405 #, no-wrap msgid "@code{file-storage-paths} (default: @code{'()})" msgstr "@code{file-storage-paths} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:31042 +#: guix-git/doc/guix.texi:31407 msgid "List of allowed directories for file storage backend." msgstr "Liste zulässiger Verzeichnisse für das in Dateien speichernde Hintergrundsystem („File Storage Backend“)." #. type: item -#: guix-git/doc/guix.texi:31043 +#: guix-git/doc/guix.texi:31408 #, no-wrap msgid "@code{os} (default: @code{%default-ganeti-os})" msgstr "@code{os} (Vorgabe: @code{%default-ganeti-os})" #. type: table -#: guix-git/doc/guix.texi:31045 +#: guix-git/doc/guix.texi:31410 msgid "List of @code{} records." msgstr "Liste von @code{}-Verbundsobjekten." #. type: deftp -#: guix-git/doc/guix.texi:31049 +#: guix-git/doc/guix.texi:31414 msgid "In essence @code{ganeti-service-type} is shorthand for declaring each service individually:" msgstr "Im Kern ist @code{ganeti-service-type} eine Kurzform davon, jeden Dienst einzeln zu deklarieren:" #. type: lisp -#: guix-git/doc/guix.texi:31060 +#: guix-git/doc/guix.texi:31425 #, no-wrap msgid "" "(service ganeti-noded-service-type)\n" @@ -58163,297 +58896,297 @@ msgstr "" "(service ganeti-cleaner-service-type)\n" #. type: deftp -#: guix-git/doc/guix.texi:31064 +#: guix-git/doc/guix.texi:31429 msgid "Plus a service extension for @code{etc-service-type} that configures the file storage backend and OS variants." msgstr "Außerdem enthalten ist eine Diensterweiterung für den @code{etc-service-type}, der das Hintergrundsystem für die Speicherung in Dateien und die Betriebssystemvarianten festlegt." #. type: deftp -#: guix-git/doc/guix.texi:31067 +#: guix-git/doc/guix.texi:31432 #, no-wrap msgid "{Data Type} ganeti-os" msgstr "{Datentyp} ganeti-os" #. type: deftp -#: guix-git/doc/guix.texi:31070 +#: guix-git/doc/guix.texi:31435 msgid "This data type is suitable for passing to the @code{os} parameter of @code{ganeti-configuration}. It takes the following parameters:" msgstr "Dieser Datentyp wird verwendet, um ihn an den @code{os}-Parameter der @code{ganeti-configuration} zu übergeben. Er umfasst die folgenden Parameter:" #. type: table -#: guix-git/doc/guix.texi:31076 +#: guix-git/doc/guix.texi:31441 msgid "The name for this OS provider. It is only used to specify where the configuration ends up. Setting it to ``debootstrap'' will create @file{/etc/ganeti/instance-debootstrap}." msgstr "Der Name dieses Betriebssystemanbieters. Sein einziger Zweck ist, anzugeben, wohin die Konfigurationsdateien geschrieben werden. Wird „debootstrap“ angegeben, wird @file{/etc/ganeti/instance-debootstrap} erstellt." #. type: code{#1} -#: guix-git/doc/guix.texi:31077 +#: guix-git/doc/guix.texi:31442 #, no-wrap msgid "extension" msgstr "extension" #. type: table -#: guix-git/doc/guix.texi:31080 +#: guix-git/doc/guix.texi:31445 msgid "The file extension for variants of this OS type. For example @file{.conf} or @file{.scm}." msgstr "Welche Dateinamenserweiterung die Varianten dieser Art von Betriebssystem benutzen, zum Beispiel @file{.conf} oder @file{.scm}." #. type: item -#: guix-git/doc/guix.texi:31081 +#: guix-git/doc/guix.texi:31446 #, no-wrap msgid "@code{variants} (default: @code{'()})" msgstr "@code{variants} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:31083 +#: guix-git/doc/guix.texi:31448 msgid "List of @code{ganeti-os-variant} objects for this OS." msgstr "Die Liste der @code{ganeti-os-variant}-Objekte für dieses Betriebssystem." #. type: deftp -#: guix-git/doc/guix.texi:31087 +#: guix-git/doc/guix.texi:31452 #, no-wrap msgid "{Data Type} ganeti-os-variant" msgstr "{Datentyp} ganeti-os-variant" #. type: deftp -#: guix-git/doc/guix.texi:31090 +#: guix-git/doc/guix.texi:31455 msgid "This is the data type for a Ganeti OS variant. It takes the following parameters:" msgstr "Der Datentyp für eine Variante einer Art von Betriebssystem. Er nimmt die folgenden Parameter:" #. type: table -#: guix-git/doc/guix.texi:31094 +#: guix-git/doc/guix.texi:31459 msgid "The name of this variant." msgstr "Der Name dieser Variante." #. type: code{#1} -#: guix-git/doc/guix.texi:31095 +#: guix-git/doc/guix.texi:31460 #, no-wrap msgid "configuration" msgstr "configuration" #. type: table -#: guix-git/doc/guix.texi:31097 +#: guix-git/doc/guix.texi:31462 msgid "A configuration file for this variant." msgstr "Eine Konfigurationsdatei für diese Variante." #. type: defvr -#: guix-git/doc/guix.texi:31100 +#: guix-git/doc/guix.texi:31465 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-hooks" msgstr "{Scheme-Variable} %default-debootstrap-hooks" #. type: defvr -#: guix-git/doc/guix.texi:31102 +#: guix-git/doc/guix.texi:31467 msgid "This variable contains hooks to configure networking and the GRUB bootloader." msgstr "Diese Variable enthält Anknüpfungspunkte („Hooks“), um das Netzwerk zu konfigurieren und den GRUB-Bootloader einzurichten." #. type: defvr -#: guix-git/doc/guix.texi:31104 +#: guix-git/doc/guix.texi:31469 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-extra-pkgs" msgstr "{Scheme-Variable} %default-debootstrap-extra-pkgs" #. type: defvr -#: guix-git/doc/guix.texi:31106 +#: guix-git/doc/guix.texi:31471 msgid "This variable contains a list of packages suitable for a fully-virtualized guest." msgstr "Diese Variable führt eine Liste von Paketen auf, die für ein gänzlich virtualisiertes Gastsystem sinnvoll sind." #. type: deftp -#: guix-git/doc/guix.texi:31108 +#: guix-git/doc/guix.texi:31473 #, no-wrap msgid "{Data Type} debootstrap-configuration" msgstr "{Datentyp} debootstrap-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31111 +#: guix-git/doc/guix.texi:31476 msgid "This data type creates configuration files suitable for the debootstrap OS provider." msgstr "Mit diesem Datentyp werden Konfigurationsdateien erzeugt, die für den debootstrap-Betriebssystemanbieter geeignet sind." #. type: item -#: guix-git/doc/guix.texi:31113 +#: guix-git/doc/guix.texi:31478 #, no-wrap msgid "@code{hooks} (default: @code{%default-debootstrap-hooks})" msgstr "@code{hooks} (Vorgabe: @code{%default-debootstrap-hooks})" #. type: table -#: guix-git/doc/guix.texi:31117 +#: guix-git/doc/guix.texi:31482 msgid "When not @code{#f}, this must be a G-expression that specifies a directory with scripts that will run when the OS is installed. It can also be a list of @code{(name . file-like)} pairs. For example:" msgstr "Wenn es nicht auf @code{#f} steht, muss hier ein G-Ausdruck angegeben werden, der ein Verzeichnis mit Scripts (sogenannten „Hooks“, d.h.@: Anknüpfungspunkte) festlegt, welche bei der Installation des Betriebssystems ausgeführt werden. Es kann auch eine Liste von Paaren der Form @code{(Name . dateiartiges-Objekt)} angegeben werden. Zum Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:31120 +#: guix-git/doc/guix.texi:31485 #, no-wrap msgid "`((99-hello-world . ,(plain-file \"#!/bin/sh\\necho Hello, World\")))\n" msgstr "`((99-hallo-welt . ,(plain-file \"#!/bin/sh\\necho Hallo Welt\")))\n" #. type: table -#: guix-git/doc/guix.texi:31125 +#: guix-git/doc/guix.texi:31490 msgid "That will create a directory with one executable named @code{99-hello-world} and run it every time this variant is installed. If set to @code{#f}, hooks in @file{/etc/ganeti/instance-debootstrap/hooks} will be used, if any." msgstr "Damit wird ein Verzeichnis mit einer ausführbaren Datei namens @code{99-hallo-welt} festgelegt, die jedes Mal ausgeführt wird, wenn diese Variante installiert wird. Wird hier @code{#f} angegeben, werden die in @file{/etc/ganeti/instance-debootstrap/hooks} vorgefundenen Anknüpfungspunkte benutzt, falls vorhanden." #. type: item -#: guix-git/doc/guix.texi:31125 +#: guix-git/doc/guix.texi:31490 #, no-wrap msgid "@code{proxy} (default: @code{#f})" msgstr "@code{proxy} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31127 +#: guix-git/doc/guix.texi:31492 msgid "Optional HTTP proxy to use." msgstr "Optional; welcher HTTP-Proxy genutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:31127 +#: guix-git/doc/guix.texi:31492 guix-git/doc/guix.texi:33685 #, no-wrap msgid "@code{mirror} (default: @code{#f})" msgstr "@code{mirror} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31130 +#: guix-git/doc/guix.texi:31495 msgid "The Debian mirror. Typically something like @code{http://ftp.no.debian.org/debian}. The default varies depending on the distribution." msgstr "Der Spiegelserver für Debian. Üblicherweise wird etwas wie @code{http://ftp.no.debian.org/debian} angegeben. Die Voreinstellung hängt von der Distribution ab." #. type: item -#: guix-git/doc/guix.texi:31130 +#: guix-git/doc/guix.texi:31495 #, no-wrap msgid "@code{arch} (default: @code{#f})" msgstr "@code{arch} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31133 +#: guix-git/doc/guix.texi:31498 msgid "The dpkg architecture. Set to @code{armhf} to debootstrap an ARMv7 instance on an AArch64 host. Default is to use the current system architecture." msgstr "Die dpkg-Architektur. Setzen Sie dies z.B.@: auf @code{armhf}, um eine ARMv7-Instanz auf einem AArch64-Wirtssystem @i{via} debootstrap einzurichten. Bei der Vorgabeeinstellung wird die aktuelle Systemarchitektur übernommen." #. type: item -#: guix-git/doc/guix.texi:31133 +#: guix-git/doc/guix.texi:31498 #, no-wrap msgid "@code{suite} (default: @code{\"stable\"})" msgstr "@code{suite} (Vorgabe: @code{\"stable\"})" #. type: table -#: guix-git/doc/guix.texi:31136 +#: guix-git/doc/guix.texi:31501 msgid "When set, this must be a Debian distribution ``suite'' such as @code{buster} or @code{focal}. If set to @code{#f}, the default for the OS provider is used." msgstr "Wenn dieses Feld gesetzt ist, muss dafür eine Debian-Distributions-„Suite“ wie @code{buster} oder @code{focal} angegeben werden. Steht es auf @code{#f}, wird die Voreinstellung für den Betriebssystemanbieter benutzt." #. type: item -#: guix-git/doc/guix.texi:31136 +#: guix-git/doc/guix.texi:31501 #, no-wrap msgid "@code{extra-pkgs} (default: @code{%default-debootstrap-extra-pkgs})" msgstr "@code{extra-pkgs} (Vorgabe: @code{%default-debootstrap-extra-pkgs})" #. type: table -#: guix-git/doc/guix.texi:31139 +#: guix-git/doc/guix.texi:31504 msgid "List of extra packages that will get installed by dpkg in addition to the minimal system." msgstr "Liste zusätzlicher Pakete, die durch dpkg zusätzlich zum minimalen System installiert werden." #. type: item -#: guix-git/doc/guix.texi:31139 +#: guix-git/doc/guix.texi:31504 #, no-wrap msgid "@code{components} (default: @code{#f})" msgstr "@code{components} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31142 +#: guix-git/doc/guix.texi:31507 msgid "When set, must be a list of Debian repository ``components''. For example @code{'(\"main\" \"contrib\")}." msgstr "Ist dies gesetzt, muss es eine Liste von Bereichen eines Debian-Repositorys sein, etwa @code{'(\"main\" \"contrib\")}." #. type: item -#: guix-git/doc/guix.texi:31142 +#: guix-git/doc/guix.texi:31507 #, no-wrap msgid "@code{generate-cache?} (default: @code{#t})" msgstr "@code{generate-cache?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:31144 +#: guix-git/doc/guix.texi:31509 msgid "Whether to automatically cache the generated debootstrap archive." msgstr "Ob das generierte debootstrap-Archiv automatisch zwischengespeichert werden soll." #. type: item -#: guix-git/doc/guix.texi:31144 +#: guix-git/doc/guix.texi:31509 #, no-wrap msgid "@code{clean-cache} (default: @code{14})" msgstr "@code{clean-cache} (Vorgabe: @code{14})" #. type: table -#: guix-git/doc/guix.texi:31147 +#: guix-git/doc/guix.texi:31512 msgid "Discard the cache after this amount of days. Use @code{#f} to never clear the cache." msgstr "Nach wie vielen Tagen der Zwischenspeicher verworfen werden soll. Geben Sie @code{#f} an, damit der Zwischenspeicher niemals bereinigt wird." #. type: item -#: guix-git/doc/guix.texi:31147 +#: guix-git/doc/guix.texi:31512 #, no-wrap msgid "@code{partition-style} (default: @code{'msdos})" msgstr "@code{partition-style} (Vorgabe: @code{'msdos})" #. type: table -#: guix-git/doc/guix.texi:31150 +#: guix-git/doc/guix.texi:31515 msgid "The type of partition to create. When set, it must be one of @code{'msdos}, @code{'none} or a string." msgstr "Der Partitionstyp der anzulegenden Partition. Wenn er festgelegt ist, muss er entweder @code{'msdos} oder @code{'none} lauten oder eine Zeichenkette angegeben werden." #. type: item -#: guix-git/doc/guix.texi:31150 +#: guix-git/doc/guix.texi:31515 #, no-wrap msgid "@code{partition-alignment} (default: @code{2048})" msgstr "@code{partition-alignment} (Vorgabe: @code{2048})" #. type: table -#: guix-git/doc/guix.texi:31152 +#: guix-git/doc/guix.texi:31517 msgid "Alignment of the partition in sectors." msgstr "Auf wie viele Sektoren die Partition ausgerichtet werden soll." #. type: deffn -#: guix-git/doc/guix.texi:31155 +#: guix-git/doc/guix.texi:31520 #, no-wrap msgid "{Scheme Procedure} debootstrap-variant @var{name} @var{configuration}" msgstr "{Scheme-Prozedur} debootstrap-variant @var{Name} @var{Konfiguration}" #. type: deffn -#: guix-git/doc/guix.texi:31158 +#: guix-git/doc/guix.texi:31523 msgid "This is a helper procedure that creates a @code{ganeti-os-variant} record. It takes two parameters: a name and a @code{debootstrap-configuration} object." msgstr "Diese Hilfsprozedur erzeugt ein @code{ganeti-os-variant}-Verbundsobjekt. Sie nimmt zwei Parameter entgegen: einen Namen und ein @code{debootstrap-configuration}-Objekt." #. type: deffn -#: guix-git/doc/guix.texi:31160 +#: guix-git/doc/guix.texi:31525 #, no-wrap msgid "{Scheme Procedure} debootstrap-os @var{variants}@dots{}" msgstr "{Scheme-Prozedur} debootstrap-os @var{Varianten}…" #. type: deffn -#: guix-git/doc/guix.texi:31163 +#: guix-git/doc/guix.texi:31528 msgid "This is a helper procedure that creates a @code{ganeti-os} record. It takes a list of variants created with @code{debootstrap-variant}." msgstr "Diese Hilfsprozedur erzeugt ein @code{ganeti-os}-Verbundsobjekt. Sie nimmt eine Liste von mit @code{debootstrap-variant} erzeugten Varianten entgegen." #. type: deffn -#: guix-git/doc/guix.texi:31165 +#: guix-git/doc/guix.texi:31530 #, no-wrap msgid "{Scheme Procedure} guix-variant @var{name} @var{configuration}" msgstr "{Scheme-Prozedur} guix-variant @var{Name} @var{Konfiguration}" #. type: deffn -#: guix-git/doc/guix.texi:31170 +#: guix-git/doc/guix.texi:31535 msgid "This is a helper procedure that creates a @code{ganeti-os-variant} record for use with the Guix OS provider. It takes a name and a G-expression that returns a ``file-like'' (@pxref{G-Expressions, file-like objects}) object containing a Guix System configuration." msgstr "Diese Hilfsprozedur erzeugt ein @code{ganeti-os-variant}-Verbundsobjekt, das für den vorgegebenen Guix-Betriebssystemanbieter gedacht ist. Als Parameter anzugeben sind ein Name und ein G-Ausdruck, der ein „dateiartiges“ Objekt (siehe @ref{G-Expressions, dateiartige Objekte}) mit einer Konfiguration für Guix System liefert." #. type: deffn -#: guix-git/doc/guix.texi:31172 +#: guix-git/doc/guix.texi:31537 #, no-wrap msgid "{Scheme Procedure} guix-os @var{variants}@dots{}" msgstr "{Scheme-Prozedur} guix-os @var{Varianten}…" #. type: deffn -#: guix-git/doc/guix.texi:31175 +#: guix-git/doc/guix.texi:31540 msgid "This is a helper procedure that creates a @code{ganeti-os} record. It takes a list of variants produced by @code{guix-variant}." msgstr "Diese Hilfsprozedur erzeugt ein @code{ganeti-os}-Verbundsobjekt. Sie nimmt eine Liste von durch @code{guix-variant} erzeugten Varianten entgegen." #. type: defvr -#: guix-git/doc/guix.texi:31177 +#: guix-git/doc/guix.texi:31542 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-variants" msgstr "{Scheme-Variable} %default-debootstrap-variants" #. type: defvr -#: guix-git/doc/guix.texi:31181 +#: guix-git/doc/guix.texi:31546 msgid "This is a convenience variable to make the debootstrap provider work ``out of the box'' without users having to declare variants manually. It contains a single debootstrap variant with the default configuration:" msgstr "Zur Erleichterung kann diese Variable benutzt werden, damit der debootstrap-Anbieter sofort funktioniert, ohne dass seine Nutzer Varianten selbst deklarieren müssen. Enthalten ist eine einzige debootstrap-Variante mit der Standardkonfiguration:" #. type: lisp -#: guix-git/doc/guix.texi:31186 +#: guix-git/doc/guix.texi:31551 #, no-wrap msgid "" "(list (debootstrap-variant\n" @@ -58465,18 +59198,18 @@ msgstr "" " (debootstrap-configuration)))\n" #. type: defvr -#: guix-git/doc/guix.texi:31189 +#: guix-git/doc/guix.texi:31554 #, no-wrap msgid "{Scheme Variable} %default-guix-variants" msgstr "{Scheme-Variable} %default-guix-variants" #. type: defvr -#: guix-git/doc/guix.texi:31193 +#: guix-git/doc/guix.texi:31558 msgid "This is a convenience variable to make the Guix OS provider work without additional configuration. It creates a virtual machine that has an SSH server, a serial console, and authorizes the Ganeti hosts SSH keys." msgstr "Zur Erleichterung kann diese Variable benutzt werden, damit der Guix-Betriebssystemanbieter sofort und ohne weitere Konfiguration funktioniert. Damit wird eine virtuelle Maschine mit einem SSH-Server, einer seriellen Konsole und bereits autorisierten Ganeti-Wirts-SSH-Schlüsseln erzeugt." #. type: lisp -#: guix-git/doc/guix.texi:31199 +#: guix-git/doc/guix.texi:31564 #, no-wrap msgid "" "(list (guix-variant\n" @@ -58490,12 +59223,12 @@ msgstr "" " \"/share/doc/ganeti-instance-guix/examples/dynamic.scm\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:31205 +#: guix-git/doc/guix.texi:31570 msgid "Users can implement support for OS providers unbeknownst to Guix by extending the @code{ganeti-os} and @code{ganeti-os-variant} records appropriately. For example:" msgstr "Benutzer können die Unterstützung für Guix @emph{nicht} bekannte Betriebssystemanbieter implementieren, indem sie entsprechende Erweiterungen für die @code{ganeti-os}- und @code{ganeti-os-variant}-Verbundstypen implementieren. Ein Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:31214 +#: guix-git/doc/guix.texi:31579 #, no-wrap msgid "" "(ganeti-os\n" @@ -58515,726 +59248,726 @@ msgstr "" " (configuration (plain-file \"bar\" \"das genügt\"))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:31219 +#: guix-git/doc/guix.texi:31584 msgid "That creates @file{/etc/ganeti/instance-custom/variants/foo.conf} which points to a file in the store with contents @code{this is fine}. It also creates @file{/etc/ganeti/instance-custom/variants/variants.list} with contents @code{foo}." msgstr "Damit wird @file{/etc/ganeti/instance-eigenes-os/variants/foo.conf} erzeugt, das auf eine Datei im Store mit dem Inhalt @code{das genügt} verweist. Außerdem wird @file{/etc/ganeti/instance-eigenes-os/variants/variants.list} mit dem Inhalt @code{foo} erzeugt." #. type: Plain text -#: guix-git/doc/guix.texi:31222 +#: guix-git/doc/guix.texi:31587 msgid "Obviously this may not work for all OS providers out there. If you find the interface limiting, please reach out to @email{guix-devel@@gnu.org}." msgstr "Natürlich kann man Betriebssystemanbieter finden, für die das nicht ausreicht. Wenn Sie sich durch die Schnittstelle in Ihren Möglichkeiten eingeschränkt fühlen, schreiben Sie bitte an @email{guix-devel@@gnu.org}." #. type: Plain text -#: guix-git/doc/guix.texi:31225 +#: guix-git/doc/guix.texi:31590 msgid "The rest of this section documents the various services that are included by @code{ganeti-service-type}." msgstr "Der übrige Teil dieses Abschnitts beschreibt die verschiedenen Dienste, aus denen sich der @code{ganeti-service-type} zusammensetzt." #. type: defvr -#: guix-git/doc/guix.texi:31226 +#: guix-git/doc/guix.texi:31591 #, no-wrap msgid "{Scheme Variable} ganeti-noded-service-type" msgstr "{Scheme-Variable} ganeti-noded-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31230 +#: guix-git/doc/guix.texi:31595 msgid "@command{ganeti-noded} is the daemon responsible for node-specific functions within the Ganeti system. The value of this service must be a @code{ganeti-noded-configuration} object." msgstr "@command{ganeti-noded} ist der Daemon, der für knotenbezogene Funktionen des Ganeti-Systems da ist. Sein Wert muss ein @code{ganeti-noded-configuration}-Objekt sein." #. type: deftp -#: guix-git/doc/guix.texi:31232 +#: guix-git/doc/guix.texi:31597 #, no-wrap msgid "{Data Type} ganeti-noded-configuration" msgstr "{Datentyp} ganeti-noded-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31234 +#: guix-git/doc/guix.texi:31599 msgid "This is the configuration for the @code{ganeti-noded} service." msgstr "Dies ist die Konfiguration des @code{ganeti-noded}-Dienstes für Ganetis Knoten-Daemon." #. type: table -#: guix-git/doc/guix.texi:31238 guix-git/doc/guix.texi:31288 -#: guix-git/doc/guix.texi:31318 guix-git/doc/guix.texi:31345 -#: guix-git/doc/guix.texi:31377 guix-git/doc/guix.texi:31430 -#: guix-git/doc/guix.texi:31450 guix-git/doc/guix.texi:31476 -#: guix-git/doc/guix.texi:31509 +#: guix-git/doc/guix.texi:31603 guix-git/doc/guix.texi:31653 +#: guix-git/doc/guix.texi:31683 guix-git/doc/guix.texi:31710 +#: guix-git/doc/guix.texi:31742 guix-git/doc/guix.texi:31795 +#: guix-git/doc/guix.texi:31815 guix-git/doc/guix.texi:31841 +#: guix-git/doc/guix.texi:31874 msgid "The @code{ganeti} package to use for this service." msgstr "Das @code{ganeti}-Paket, was für diesen Dienst benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:31239 +#: guix-git/doc/guix.texi:31604 #, no-wrap msgid "@code{port} (default: @code{1811})" msgstr "@code{port} (Vorgabe: @code{8081})" #. type: table -#: guix-git/doc/guix.texi:31241 +#: guix-git/doc/guix.texi:31606 msgid "The TCP port on which the node daemon listens for network requests." msgstr "Der TCP-Port, auf dem der Knoten-Daemon (@code{noded}) auf Netzwerkanfragen lauscht." #. type: item -#: guix-git/doc/guix.texi:31242 guix-git/doc/guix.texi:31292 -#: guix-git/doc/guix.texi:31384 guix-git/doc/guix.texi:31454 +#: guix-git/doc/guix.texi:31607 guix-git/doc/guix.texi:31657 +#: guix-git/doc/guix.texi:31749 guix-git/doc/guix.texi:31819 #, no-wrap msgid "@code{address} (default: @code{\"0.0.0.0\"})" msgstr "@code{address} (Vorgabe: @code{\"0.0.0.0\"})" #. type: table -#: guix-git/doc/guix.texi:31245 +#: guix-git/doc/guix.texi:31610 msgid "The network address that the daemon will bind to. The default address means bind to all available addresses." msgstr "An welche Netzwerkadresse sich der Daemon binden wird. Die Vorgabeeinstellung bedeutet, sich an alle verfügbaren Adressen zu binden." #. type: table -#: guix-git/doc/guix.texi:31249 +#: guix-git/doc/guix.texi:31614 msgid "When this is set, it must be a specific network interface (e.g.@: @code{eth0}) that the daemon will bind to." msgstr "Wenn dieses Feld gesetzt ist, muss es eine bestimmte Netzwerkschnittstelle angeben (z.B.@: @code{eth0}), an die sich der Daemon binden wird." #. type: item -#: guix-git/doc/guix.texi:31250 guix-git/doc/guix.texi:31392 +#: guix-git/doc/guix.texi:31615 guix-git/doc/guix.texi:31757 #, no-wrap msgid "@code{max-clients} (default: @code{20})" msgstr "@code{max-clients} (Vorgabe: @code{20})" #. type: table -#: guix-git/doc/guix.texi:31254 +#: guix-git/doc/guix.texi:31619 msgid "This sets a limit on the maximum number of simultaneous client connections that the daemon will handle. Connections above this count are accepted, but no responses will be sent until enough connections have closed." msgstr "Legt eine Maximalzahl gleichzeitiger Client-Verbindungen fest, um die sich der Daemon kümmert. Darüber hinaus werden Verbindungen zwar akzeptiert, aber erst beantwortet, wenn genügend viele Verbindungen wieder geschlossen wurden." #. type: item -#: guix-git/doc/guix.texi:31255 guix-git/doc/guix.texi:31397 +#: guix-git/doc/guix.texi:31620 guix-git/doc/guix.texi:31762 #, no-wrap msgid "@code{ssl?} (default: @code{#t})" msgstr "@code{ssl?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:31259 +#: guix-git/doc/guix.texi:31624 msgid "Whether to use SSL/TLS to encrypt network communications. The certificate is automatically provisioned by the cluster and can be rotated with @command{gnt-cluster renew-crypto}." msgstr "Ob SSL/TLS benutzt werden soll, um Netzwerkkommunikation zu verschlüsseln. Das Zertifikat wird automatisch vom Cluster eingespielt und kann über @command{gnt-cluster renew-crypto} rotiert werden." #. type: item -#: guix-git/doc/guix.texi:31260 guix-git/doc/guix.texi:31400 +#: guix-git/doc/guix.texi:31625 guix-git/doc/guix.texi:31765 #, no-wrap msgid "@code{ssl-key} (default: @file{\"/var/lib/ganeti/server.pem\"})" msgstr "@code{ssl-key} (Vorgabe: @file{\"/var/lib/ganeti/server.pem\"})" #. type: table -#: guix-git/doc/guix.texi:31262 guix-git/doc/guix.texi:31402 +#: guix-git/doc/guix.texi:31627 guix-git/doc/guix.texi:31767 msgid "This can be used to provide a specific encryption key for TLS communications." msgstr "Hiermit kann ein bestimmter Schlüssel für mit TLS verschlüsselte Kommunikation festgelegt werden." #. type: item -#: guix-git/doc/guix.texi:31263 guix-git/doc/guix.texi:31403 +#: guix-git/doc/guix.texi:31628 guix-git/doc/guix.texi:31768 #, no-wrap msgid "@code{ssl-cert} (default: @file{\"/var/lib/ganeti/server.pem\"})" msgstr "@code{ssl-cert} (Vorgabe: @file{\"/var/lib/ganeti/server.pem\"})" #. type: table -#: guix-git/doc/guix.texi:31265 guix-git/doc/guix.texi:31405 +#: guix-git/doc/guix.texi:31630 guix-git/doc/guix.texi:31770 msgid "This can be used to provide a specific certificate for TLS communications." msgstr "Hiermit kann ein bestimmtes Zertifikat für mit TLS verschlüsselte Kommunikation festgelegt werden." #. type: table -#: guix-git/doc/guix.texi:31269 guix-git/doc/guix.texi:31409 +#: guix-git/doc/guix.texi:31634 guix-git/doc/guix.texi:31774 msgid "When true, the daemon performs additional logging for debugging purposes. Note that this will leak encryption details to the log files, use with caution." msgstr "Steht dies auf wahr, führt der Daemon zum Zweck der Fehlersuche ausführlichere Protokolle. Beachten Sie, dass dadurch Details der Verschlüsselung in die Protokolldateien fließen können. Seien Sie vorsichtig!" #. type: defvr -#: guix-git/doc/guix.texi:31273 +#: guix-git/doc/guix.texi:31638 #, no-wrap msgid "{Scheme Variable} ganeti-confd-service-type" msgstr "{Scheme-Variable} ganeti-confd-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31279 +#: guix-git/doc/guix.texi:31644 msgid "@command{ganeti-confd} answers queries related to the configuration of a Ganeti cluster. The purpose of this daemon is to have a highly available and fast way to query cluster configuration values. It is automatically active on all @dfn{master candidates}. The value of this service must be a @code{ganeti-confd-configuration} object." msgstr "@command{ganeti-confd} beantwortet Anfragen, die mit der Konfiguration eines Ganeti-Clusters zu tun haben. Der Zweck dieses Daemons ist, eine hochverfügbare und schnelle Methode zum Anfragen von Cluster-Konfigurationswerten zu bieten. Er wird automatisch auf allen Kandidaten für die Rolle des „Master“-Knotens aktiviert. Der Wert dieses Dienstes muss ein @code{ganeti-confd-configuration}-Objekt sein." #. type: deftp -#: guix-git/doc/guix.texi:31282 +#: guix-git/doc/guix.texi:31647 #, no-wrap msgid "{Data Type} ganeti-confd-configuration" msgstr "{Datentyp} ganeti-confd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31284 +#: guix-git/doc/guix.texi:31649 msgid "This is the configuration for the @code{ganeti-confd} service." msgstr "Dies ist die Konfiguration des @code{ganeti-confd}-Dienstes." #. type: item -#: guix-git/doc/guix.texi:31289 +#: guix-git/doc/guix.texi:31654 #, no-wrap msgid "@code{port} (default: @code{1814})" msgstr "@code{port} (Vorgabe: @code{8081})" #. type: table -#: guix-git/doc/guix.texi:31291 +#: guix-git/doc/guix.texi:31656 msgid "The UDP port on which to listen for network requests." msgstr "Der UDP-Port, auf dem auf Netzwerkanfragen gelauscht werden soll." #. type: table -#: guix-git/doc/guix.texi:31294 +#: guix-git/doc/guix.texi:31659 msgid "Network address that the daemon will bind to." msgstr "An welche Netzwerkadresse sich der Daemon binden soll." #. type: table -#: guix-git/doc/guix.texi:31297 guix-git/doc/guix.texi:31326 -#: guix-git/doc/guix.texi:31353 guix-git/doc/guix.texi:31433 -#: guix-git/doc/guix.texi:31460 guix-git/doc/guix.texi:31486 +#: guix-git/doc/guix.texi:31662 guix-git/doc/guix.texi:31691 +#: guix-git/doc/guix.texi:31718 guix-git/doc/guix.texi:31798 +#: guix-git/doc/guix.texi:31825 guix-git/doc/guix.texi:31851 msgid "When true, the daemon performs additional logging for debugging purposes." msgstr "Steht es auf wahr, wird der Daemon zum Zweck der Fehlersuche ausführlicher protokollieren." #. type: defvr -#: guix-git/doc/guix.texi:31301 +#: guix-git/doc/guix.texi:31666 #, no-wrap msgid "{Scheme Variable} ganeti-wconfd-service-type" msgstr "{Scheme-Variable} ganeti-wconfd-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31307 +#: guix-git/doc/guix.texi:31672 msgid "@command{ganeti-wconfd} is the daemon that has authoritative knowledge about the cluster configuration and is the only entity that can accept changes to it. All jobs that need to modify the configuration will do so by sending appropriate requests to this daemon. It only runs on the @dfn{master node} and will automatically disable itself on other nodes." msgstr "@command{ganeti-wconfd} ist der Daemon, der mit autoritativem Wissen über die Cluster-Konfiguration ausgestattet ist, und die einzige Entität, die Änderungen daran akzeptieren kann. Alle Aufträge, die die Konfiguration ändern müssen, tun dies, indem sie entsprechende Anfragen an den Daemon stellen. Er läuft nur auf dem „Master“-Knoten und deaktiviert sich auf allen anderen Knoten automatisch." #. type: defvr -#: guix-git/doc/guix.texi:31310 +#: guix-git/doc/guix.texi:31675 msgid "The value of this service must be a @code{ganeti-wconfd-configuration} object." msgstr "Der Wert dieses Dienstes muss ein @code{ganeti-wconfd-configuration}-Objekt sein." #. type: deftp -#: guix-git/doc/guix.texi:31312 +#: guix-git/doc/guix.texi:31677 #, no-wrap msgid "{Data Type} ganeti-wconfd-configuration" msgstr "{Datentyp} ganeti-wconfd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31314 +#: guix-git/doc/guix.texi:31679 msgid "This is the configuration for the @code{ganeti-wconfd} service." msgstr "Dies ist die Konfiguration des @code{ganeti-wconfd}-Dienstes." #. type: item -#: guix-git/doc/guix.texi:31319 guix-git/doc/guix.texi:31346 +#: guix-git/doc/guix.texi:31684 guix-git/doc/guix.texi:31711 #, no-wrap msgid "@code{no-voting?} (default: @code{#f})" msgstr "@code{no-voting?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31323 +#: guix-git/doc/guix.texi:31688 msgid "The daemon will refuse to start if the majority of cluster nodes does not agree that it is running on the master node. Set to @code{#t} to start even if a quorum can not be reached (dangerous, use with caution)." msgstr "Der Daemon wird das Starten verweigern, sofern die Mehrheit der Knoten @emph{nicht} anerkennt, dass er auf dem Master-Knoten läuft. Setzen Sie dies auf @code{#t}, um ihn selbst dann zu starten, wenn sich keine Mehrheit dafür findet (das ist gefährlich; hoffentlich wissen Sie, was Sie tun)." #. type: defvr -#: guix-git/doc/guix.texi:31330 +#: guix-git/doc/guix.texi:31695 #, no-wrap msgid "{Scheme Variable} ganeti-luxid-service-type" msgstr "{Scheme-Variable} ganeti-luxid-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31335 +#: guix-git/doc/guix.texi:31700 msgid "@command{ganeti-luxid} is a daemon used to answer queries related to the configuration and the current live state of a Ganeti cluster. Additionally, it is the authoritative daemon for the Ganeti job queue. Jobs can be submitted via this daemon and it schedules and starts them." msgstr "Der Daemon @command{ganeti-luxid} ist dazu da, Anfragen zur Konfiguration und zum aktuellen Zustand des laufenden Ganeti-Clusters zu beantworten. Des Weiteren ist es der autoritative Daemon für Ganetis Auftragsliste. Aufträge können über diesen Daemon eingereicht werden und werden von ihm geplant und gestartet." #. type: defvr -#: guix-git/doc/guix.texi:31337 +#: guix-git/doc/guix.texi:31702 msgid "It takes a @code{ganeti-luxid-configuration} object." msgstr "Er nimmt ein @code{ganeti-luxid-configuration}-Objekt entgegen." #. type: deftp -#: guix-git/doc/guix.texi:31339 +#: guix-git/doc/guix.texi:31704 #, no-wrap msgid "{Data Type} ganeti-luxid-configuration" msgstr "{Datentyp} ganeti-luxid-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31341 +#: guix-git/doc/guix.texi:31706 msgid "This is the configuration for the @code{ganeti-luxid} service." msgstr "Dies ist die Konfiguration des @code{ganeti-luxid}-Dienstes." #. type: table -#: guix-git/doc/guix.texi:31350 +#: guix-git/doc/guix.texi:31715 msgid "The daemon will refuse to start if it cannot verify that the majority of cluster nodes believes that it is running on the master node. Set to @code{#t} to ignore such checks and start anyway (this can be dangerous)." msgstr "Der Daemon verweigert das Starten, wenn er sich nicht sicher sein kann, dass die Mehrheit der Cluster-Knoten überzeugt ist, dass er auf dem Master-Knoten läuft. Setzen Sie dies auf @code{#t}, um solche Hinweise zu ignorieren (das kann gefährlich sein!)." #. type: defvr -#: guix-git/doc/guix.texi:31357 +#: guix-git/doc/guix.texi:31722 #, no-wrap msgid "{Scheme Variable} ganeti-rapi-service-type" msgstr "{Scheme-Variable} ganeti-rapi-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31361 +#: guix-git/doc/guix.texi:31726 msgid "@command{ganeti-rapi} provides a remote API for Ganeti clusters. It runs on the master node and can be used to perform cluster actions programmatically via a JSON-based RPC protocol." msgstr "@command{ganeti-rapi} bietet eine Schnittstelle für entfernte Aufrufe (englisch @dfn{Remote API}) für Ganeti-Cluster. Sie läuft auf dem Master-Knoten und mit ihr können Aktionen auf dem Cluster programmatisch mittels eines JSON-basierten Protokolls für entfernte Prozeduraufrufe durchgeführt werden." #. type: defvr -#: guix-git/doc/guix.texi:31367 +#: guix-git/doc/guix.texi:31732 msgid "Most query operations are allowed without authentication (unless @var{require-authentication?} is set), whereas write operations require explicit authorization via the @file{/var/lib/ganeti/rapi/users} file. See the @url{http://docs.ganeti.org/ganeti/master/html/rapi.html, Ganeti Remote API documentation} for more information." msgstr "Die meisten Anfrageoperationen werden ohne Authentisierung zugelassen (außer wenn @var{require-authentication?} gesetzt ist), wohingegen Schreibzugriffe einer ausdrücklichen Authentisierung durch die Datei @file{/var/lib/ganeti/rapi/users} bedürfen. Siehe die @url{http://docs.ganeti.org/ganeti/master/html/rapi.html, Dokumentation der Ganeti Remote API} für mehr Informationen." #. type: defvr -#: guix-git/doc/guix.texi:31369 +#: guix-git/doc/guix.texi:31734 msgid "The value of this service must be a @code{ganeti-rapi-configuration} object." msgstr "Der Wert dieses Dienstes muss ein @code{ganeti-rapi-configuration}-Objekt sein." #. type: deftp -#: guix-git/doc/guix.texi:31371 +#: guix-git/doc/guix.texi:31736 #, no-wrap msgid "{Data Type} ganeti-rapi-configuration" msgstr "{Datentyp} ganeti-rapi-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31373 +#: guix-git/doc/guix.texi:31738 msgid "This is the configuration for the @code{ganeti-rapi} service." msgstr "Dies ist die Konfiguration des @code{ganeti-rapi}-Dienstes." #. type: item -#: guix-git/doc/guix.texi:31378 +#: guix-git/doc/guix.texi:31743 #, no-wrap msgid "@code{require-authentication?} (default: @code{#f})" msgstr "@code{require-authentication?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31380 +#: guix-git/doc/guix.texi:31745 msgid "Whether to require authentication even for read-only operations." msgstr "Ob selbst für Nur-Lese-Operationen eine Authentisierung verlangt werden soll." #. type: item -#: guix-git/doc/guix.texi:31381 +#: guix-git/doc/guix.texi:31746 #, no-wrap msgid "@code{port} (default: @code{5080})" msgstr "@code{port} (Vorgabe: @code{5080})" #. type: table -#: guix-git/doc/guix.texi:31383 +#: guix-git/doc/guix.texi:31748 msgid "The TCP port on which to listen to API requests." msgstr "Der TCP-Port, auf dem auf API-Anfragen gelauscht werden soll." #. type: table -#: guix-git/doc/guix.texi:31387 +#: guix-git/doc/guix.texi:31752 msgid "The network address that the service will bind to. By default it listens on all configured addresses." msgstr "An welche Netzwerkadresse sich der Dienst binden soll. Nach Vorgabe wird auf allen konfigurierten Adressen gelauscht." #. type: table -#: guix-git/doc/guix.texi:31391 +#: guix-git/doc/guix.texi:31756 msgid "When set, it must specify a specific network interface such as @code{eth0} that the daemon will bind to." msgstr "Wenn dies gesetzt ist, muss es eine bestimmte Netzwerkschnittstelle angeben wie z.B.@: @code{eth0}, an die sich der Daemon binden wird." #. type: table -#: guix-git/doc/guix.texi:31396 +#: guix-git/doc/guix.texi:31761 msgid "The maximum number of simultaneous client requests to handle. Further connections are allowed, but no responses are sent until enough connections have closed." msgstr "Die Maximalzahl gleichzeitiger Verbindungen, um die sich der Dienst kümmern darf. Weitere Verbindungen sind möglich, über sie wird aber erst dann geantwortet, wenn genügend viele Verbindungen wieder geschlossen wurden." #. type: table -#: guix-git/doc/guix.texi:31399 +#: guix-git/doc/guix.texi:31764 msgid "Whether to use SSL/TLS encryption on the RAPI port." msgstr "Ob SSL-/TLS-Verschlüsselung auf dem RAPI-Port eingesetzt werden soll." #. type: defvr -#: guix-git/doc/guix.texi:31413 +#: guix-git/doc/guix.texi:31778 #, no-wrap msgid "{Scheme Variable} ganeti-kvmd-service-type" msgstr "{Scheme-Variable} ganeti-kvmd-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31421 +#: guix-git/doc/guix.texi:31786 msgid "@command{ganeti-kvmd} is responsible for determining whether a given KVM instance was shut down by an administrator or a user. Normally Ganeti will restart an instance that was not stopped through Ganeti itself. If the cluster option @code{user_shutdown} is true, this daemon monitors the @code{QMP} socket provided by QEMU and listens for shutdown events, and marks the instance as @dfn{USER_down} instead of @dfn{ERROR_down} when it shuts down gracefully by itself." msgstr "@command{ganeti-kvmd} ist dafür verantwortlich, festzustellen, wenn eine gegebene KVM-Instanz durch einen Administrator oder Nutzer geschlossen wurde. Normalerweise wird Ganeti Instanzen neu starten, die nicht über ihn selbst gestoppt wurden. Wenn die Cluster-Option @code{user_shutdown} wahr ist, beobachtet der Daemon den durch QEMU bereitgestellten @code{QMP}-Socket und lauscht auf Abschalteereignisse. Solche Instanzen werden von ihm als durch den Benutzer heruntergefahren (@dfn{USER_down}) markiert statt als durch Fehler beendet (@dfn{ERROR_down}), wenn sie von selbst ordnungsgemäß heruntergefahren sind." #. type: defvr -#: guix-git/doc/guix.texi:31423 +#: guix-git/doc/guix.texi:31788 msgid "It takes a @code{ganeti-kvmd-configuration} object." msgstr "Der Dienst benutzt ein @code{ganeti-kvmd-configuration}-Objekt." #. type: deftp -#: guix-git/doc/guix.texi:31425 +#: guix-git/doc/guix.texi:31790 #, no-wrap msgid "{Data Type} ganeti-kvmd-configuration" msgstr "{Datentyp} ganeti-kvmd-configuration" #. type: defvr -#: guix-git/doc/guix.texi:31437 +#: guix-git/doc/guix.texi:31802 #, no-wrap msgid "{Scheme Variable} ganeti-mond-service-type" msgstr "{Scheme-Variable} ganeti-mond-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31441 +#: guix-git/doc/guix.texi:31806 msgid "@command{ganeti-mond} is an optional daemon that provides Ganeti monitoring functionality. It is responsible for running data collectors and publish the collected information through a HTTP interface." msgstr "@command{ganeti-mond} ist ein optionaler Daemon, mit dem Ganetis Überwachungsfunktionalität gewährleistet wird. Er ist dafür verantwortlich, Datensammler auszuführen und die gesammelten Informationen über eine HTTP-Schnittstelle bereitzustellen." #. type: defvr -#: guix-git/doc/guix.texi:31443 +#: guix-git/doc/guix.texi:31808 msgid "It takes a @code{ganeti-mond-configuration} object." msgstr "Der Dienst benutzt ein @code{ganeti-mond-configuration}-Objekt." #. type: deftp -#: guix-git/doc/guix.texi:31445 +#: guix-git/doc/guix.texi:31810 #, no-wrap msgid "{Data Type} ganeti-mond-configuration" msgstr "{Datentyp} ganeti-mond-configuration" #. type: item -#: guix-git/doc/guix.texi:31451 +#: guix-git/doc/guix.texi:31816 #, no-wrap msgid "@code{port} (default: @code{1815})" msgstr "@code{port} (Vorgabe: @code{1815})" #. type: table -#: guix-git/doc/guix.texi:31453 guix-git/doc/guix.texi:31479 +#: guix-git/doc/guix.texi:31818 guix-git/doc/guix.texi:31844 msgid "The port on which the daemon will listen." msgstr "Der Port, auf dem der Daemon lauschen wird." #. type: table -#: guix-git/doc/guix.texi:31457 +#: guix-git/doc/guix.texi:31822 msgid "The network address that the daemon will bind to. By default it binds to all available interfaces." msgstr "Die Netzwerkadresse, an die sich der Daemon binden soll, nach Vorgabe an alle verfügbaren." #. type: defvr -#: guix-git/doc/guix.texi:31464 +#: guix-git/doc/guix.texi:31829 #, no-wrap msgid "{Scheme Variable} ganeti-metad-service-type" msgstr "{Scheme-Variable} ganeti-metad-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31467 +#: guix-git/doc/guix.texi:31832 msgid "@command{ganeti-metad} is an optional daemon that can be used to provide information about the cluster to instances or OS install scripts." msgstr "@command{ganeti-metad} ist ein optionaler Daemon, der benutzt werden kann, um Informationen über den Cluster an Instanzen oder an Betriebssysteminstallationsskripte weiterzugeben." #. type: defvr -#: guix-git/doc/guix.texi:31469 +#: guix-git/doc/guix.texi:31834 msgid "It takes a @code{ganeti-metad-configuration} object." msgstr "Dazu nimmt er ein @code{ganeti-metad-configuration}-Objekt." #. type: deftp -#: guix-git/doc/guix.texi:31471 +#: guix-git/doc/guix.texi:31836 #, no-wrap msgid "{Data Type} ganeti-metad-configuration" msgstr "{Datentyp} ganeti-metad-configuration" #. type: table -#: guix-git/doc/guix.texi:31483 +#: guix-git/doc/guix.texi:31848 msgid "If set, the daemon will bind to this address only. If left unset, the behavior depends on the cluster configuration." msgstr "Wenn es gesetzt ist, wird sich der Daemon nur an diese Adresse binden. Ist es @emph{nicht} gesetzt, hängt das Verhalten von der Cluster-Konfiguration ab." #. type: defvr -#: guix-git/doc/guix.texi:31490 +#: guix-git/doc/guix.texi:31855 #, no-wrap msgid "{Scheme Variable} ganeti-watcher-service-type" msgstr "{Scheme-Variable} ganeti-watcher-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31498 +#: guix-git/doc/guix.texi:31863 msgid "@command{ganeti-watcher} is a script designed to run periodically and ensure the health of a cluster. It will automatically restart instances that have stopped without Ganeti's consent, and repairs DRBD links in case a node has rebooted. It also archives old cluster jobs and restarts Ganeti daemons that are not running. If the cluster parameter @code{ensure_node_health} is set, the watcher will also shutdown instances and DRBD devices if the node it is running on is declared offline by known master candidates." msgstr "@command{ganeti-watcher} ist ein Skript, das dafür gedacht ist, regelmäßig ausgeführt zu werden und die Verfügbarkeit des Clusters sicherzustellen. Instanzen, die ohne Ganetis Zustimmung abgebrochen sind, werden durch es automatisch neu gestartet und DRBD-Verbindungen werden repariert, wenn ein Knoten neu gestartet wurde. Außerdem werden alte Cluster-Aufträge archiviert und nicht laufende Ganeti-Daemons erneut gestartet. Wenn der Cluster-Parameter @code{ensure_node_health} gesetzt ist, wird der Watcher auch Instanzen und DRBD-Geräte herunterfahren, wenn der Knoten zwar läuft, aber von bekannten Kandidaten auf die Rolle des Master-Knotens als offline deklariert wurde." #. type: defvr -#: guix-git/doc/guix.texi:31500 +#: guix-git/doc/guix.texi:31865 msgid "It can be paused on all nodes with @command{gnt-cluster watcher pause}." msgstr "Er kann mit @command{gnt-cluster watcher pause} auf allen Knoten pausiert werden." #. type: defvr -#: guix-git/doc/guix.texi:31502 +#: guix-git/doc/guix.texi:31867 msgid "The service takes a @code{ganeti-watcher-configuration} object." msgstr "Der Dienst benutzt ein @code{ganeti-watcher-configuration}-Objekt." #. type: deftp -#: guix-git/doc/guix.texi:31504 +#: guix-git/doc/guix.texi:31869 #, no-wrap msgid "{Data Type} ganeti-watcher-configuration" msgstr "{Datentyp} ganeti-watcher-configuration" #. type: item -#: guix-git/doc/guix.texi:31510 +#: guix-git/doc/guix.texi:31875 #, no-wrap msgid "@code{schedule} (default: @code{'(next-second-from (next-minute (range 0 60 5)))})" msgstr "@code{schedule} (Vorgabe: @code{'(next-second-from (next-minute (range 0 60 5)))})" #. type: table -#: guix-git/doc/guix.texi:31512 +#: guix-git/doc/guix.texi:31877 msgid "How often to run the script. The default is every five minutes." msgstr "Wie oft das Skript ausgeführt werden soll. Nach Vorgabe läuft es alle fünf Minuten." #. type: item -#: guix-git/doc/guix.texi:31513 +#: guix-git/doc/guix.texi:31878 #, no-wrap msgid "@code{rapi-ip} (default: @code{#f})" msgstr "@code{rapi-ip} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31516 +#: guix-git/doc/guix.texi:31881 msgid "This option needs to be specified only if the RAPI daemon is configured to use a particular interface or address. By default the cluster address is used." msgstr "Diese Option muss nur dann angegeben werden, wenn der RAPI-Daemon so konfiguriert wurde, dass er eine bestimmte Schnittstelle oder Adresse verwenden soll. Nach Vorgabe wird die Adresse des Clusters verwendet." #. type: item -#: guix-git/doc/guix.texi:31517 +#: guix-git/doc/guix.texi:31882 #, no-wrap msgid "@code{job-age} (default: @code{(* 6 3600)})" msgstr "@code{job-age} (Vorgabe: @code{(* 6 3600)})" #. type: table -#: guix-git/doc/guix.texi:31520 +#: guix-git/doc/guix.texi:31885 msgid "Archive cluster jobs older than this age, specified in seconds. The default is 6 hours. This keeps @command{gnt-job list} manageable." msgstr "Cluster-Aufträge archivieren, die älter als diese Anzahl Sekunden sind. Die Vorgabe beträgt 6@tie{}Stunden. Dadurch wird gewährleistet, dass man @command{gnt-job list} noch sinnvoll bedienen kann." #. type: item -#: guix-git/doc/guix.texi:31521 +#: guix-git/doc/guix.texi:31886 #, no-wrap msgid "@code{verify-disks?} (default: @code{#t})" msgstr "@code{verify-disks?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:31525 +#: guix-git/doc/guix.texi:31890 msgid "If this is @code{#f}, the watcher will not try to repair broken DRBD links automatically. Administrators will need to use @command{gnt-cluster verify-disks} manually instead." msgstr "Steht dies auf @code{#f}, wird der Watcher @emph{nicht} versuchen, fehlgeschlagene DRBD-Verbindungen automatisch zu reparieren. Administratoren müssen stattdessen @command{gnt-cluster verify-disks} manuell aufrufen." #. type: table -#: guix-git/doc/guix.texi:31528 +#: guix-git/doc/guix.texi:31893 msgid "When @code{#t}, the script performs additional logging for debugging purposes." msgstr "Steht dies auf @code{#t}, so führt das Skript zum Zweck der Fehlersuche ausführlichere Protokolle." #. type: defvr -#: guix-git/doc/guix.texi:31532 +#: guix-git/doc/guix.texi:31897 #, no-wrap msgid "{Scheme Variable} ganeti-cleaner-service-type" msgstr "{Scheme-Variable} ganeti-cleaner-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31540 +#: guix-git/doc/guix.texi:31905 msgid "@command{ganeti-cleaner} is a script designed to run periodically and remove old files from the cluster. This service type controls two @dfn{cron jobs}: one intended for the master node that permanently purges old cluster jobs, and one intended for every node that removes expired X509 certificates, keys, and outdated @command{ganeti-watcher} information. Like all Ganeti services, it is safe to include even on non-master nodes as it will disable itself as necessary." msgstr "@command{ganeti-cleaner} ist ein Skript, das regelmaßig ausgeführt werden soll, um alte Dateien vom Cluster zu entfernen. Dieser Diensttyp steuert zwei @dfn{cron-Aufträge} (@dfn{cron jobs}): einer, um alte Cluster-Aufträge auf dem Master-Knoten andauernd zu löschen, und einer, der auf allen Knoten ausgelaufene X509-Zertifikate, -Schlüssel sowie veraltete Informationen des @command{ganeti-watcher} entfernt. Wie alle Ganeti-Dienste kann man ihn ohne Probleme auch auf Nicht-Master-Knoten in die Konfiguration mit aufnehmen, denn er deaktiviert sich selbst, wenn er nicht gebraucht wird." #. type: defvr -#: guix-git/doc/guix.texi:31542 +#: guix-git/doc/guix.texi:31907 msgid "It takes a @code{ganeti-cleaner-configuration} object." msgstr "Der Dienst benutzt ein @code{ganeti-cleaner-configuration}-Objekt." #. type: deftp -#: guix-git/doc/guix.texi:31544 +#: guix-git/doc/guix.texi:31909 #, no-wrap msgid "{Data Type} ganeti-cleaner-configuration" msgstr "{Datentyp} ganeti-cleaner-configuration" #. type: table -#: guix-git/doc/guix.texi:31549 +#: guix-git/doc/guix.texi:31914 msgid "The @code{ganeti} package to use for the @command{gnt-cleaner} command." msgstr "Welches @code{ganeti}-Paket für den Befehl @command{gnt-cleaner} benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:31550 +#: guix-git/doc/guix.texi:31915 #, no-wrap msgid "@code{master-schedule} (default: @code{\"45 1 * * *\"})" msgstr "@code{master-schedule} (Vorgabe: @code{\"45 1 * * *\"})" #. type: table -#: guix-git/doc/guix.texi:31553 +#: guix-git/doc/guix.texi:31918 msgid "How often to run the master cleaning job. The default is once per day, at 01:45:00." msgstr "Wie oft der Bereinigungsauftrag für den Master durchgeführt werden soll. Vorgegeben ist einmal täglich um 01:45:00 Uhr." #. type: item -#: guix-git/doc/guix.texi:31554 +#: guix-git/doc/guix.texi:31919 #, no-wrap msgid "@code{node-schedule} (default: @code{\"45 2 * * *\"})" msgstr "@code{node-schedule} (Vorgabe: @code{\"45 2 * * *\"})" #. type: table -#: guix-git/doc/guix.texi:31557 +#: guix-git/doc/guix.texi:31922 msgid "How often to run the node cleaning job. The default is once per day, at 02:45:00." msgstr "Wie oft der Bereinigungsauftrag für Knoten durchgeführt werden soll. Vorgegeben ist einmal täglich um 02:45:00 Uhr." #. type: Plain text -#: guix-git/doc/guix.texi:31571 +#: guix-git/doc/guix.texi:31936 msgid "The @code{(gnu services version-control)} module provides a service to allow remote access to local Git repositories. There are three options: the @code{git-daemon-service}, which provides access to repositories via the @code{git://} unsecured TCP-based protocol, extending the @code{nginx} web server to proxy some requests to @code{git-http-backend}, or providing a web interface with @code{cgit-service-type}." msgstr "Das Modul @code{(gnu services version-control)} stellt einen Dienst zur Verfügung, der einen Fernzugriff auf lokale Git-Repositorys ermöglicht. Dafür gibt es drei Möglichkeiten: den @code{git-daemon-service}, der Zugang zu Repositorys über das ungesicherte, TCP-basierte @code{git://}-Protokoll gewährt, das Erweitern des @code{nginx}-Webservers, um ihn als Proxy für Anfragen an das @code{git-http-backend} einzusetzen, oder mit dem @code{cgit-service-type} eine Weboberfläche zur Verfügung zu stellen." #. type: deffn -#: guix-git/doc/guix.texi:31572 +#: guix-git/doc/guix.texi:31937 #, no-wrap msgid "{Scheme Procedure} git-daemon-service [#:config (git-daemon-configuration)]" msgstr "{Scheme-Prozedur} git-daemon-service [#:config (git-daemon-configuration)]" #. type: deffn -#: guix-git/doc/guix.texi:31576 +#: guix-git/doc/guix.texi:31941 msgid "Return a service that runs @command{git daemon}, a simple TCP server to expose repositories over the Git protocol for anonymous access." msgstr "Liefert einen Dienst, der @command{git daemon} ausführt. Der Befehl startet den Git-Daemon, einen einfachen TCP-Server, um Repositorys über das Git-Protokoll für anonymen Zugriff zugänglich zu machen." #. type: deffn -#: guix-git/doc/guix.texi:31582 +#: guix-git/doc/guix.texi:31947 msgid "The optional @var{config} argument should be a @code{} object, by default it allows read-only access to exported@footnote{By creating the magic file @file{git-daemon-export-ok} in the repository directory.} repositories under @file{/srv/git}." msgstr "Das optionale Argument @var{config} sollte ein @code{}-Objekt sein. Nach Vorgabe wird Lese-Zugriff auf exportierte@footnote{Das geschieht, indem die magische Datei @file{git-daemon-export-ok} im Repository erzeugt wird.} Repositorys in @file{/srv/git} gewährt." #. type: deftp -#: guix-git/doc/guix.texi:31585 +#: guix-git/doc/guix.texi:31950 #, no-wrap msgid "{Data Type} git-daemon-configuration" msgstr "{Datentyp} git-daemon-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31587 +#: guix-git/doc/guix.texi:31952 msgid "Data type representing the configuration for @code{git-daemon-service}." msgstr "Datentyp, der die Konfiguration für @code{git-daemon-service} repräsentiert." #. type: item -#: guix-git/doc/guix.texi:31589 +#: guix-git/doc/guix.texi:31954 #, no-wrap msgid "@code{package} (default: @code{git})" msgstr "@code{package} (Vorgabe: @code{git})" #. type: table -#: guix-git/doc/guix.texi:31591 guix-git/doc/guix.texi:31651 +#: guix-git/doc/guix.texi:31956 guix-git/doc/guix.texi:32016 msgid "Package object of the Git distributed version control system." msgstr "Paketobjekt des verteilten Versionskontrollsystems Git." #. type: item -#: guix-git/doc/guix.texi:31592 guix-git/doc/guix.texi:31655 +#: guix-git/doc/guix.texi:31957 guix-git/doc/guix.texi:32020 #, no-wrap msgid "@code{export-all?} (default: @code{#f})" msgstr "@code{export-all?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31595 +#: guix-git/doc/guix.texi:31960 msgid "Whether to allow access for all Git repositories, even if they do not have the @file{git-daemon-export-ok} file." msgstr "Ob Zugriff auf alle Git-Repositorys gewährt werden soll, selbst wenn keine @file{git-daemon-export-ok}-Datei in ihrem Verzeichnis gefunden wird." #. type: item -#: guix-git/doc/guix.texi:31596 +#: guix-git/doc/guix.texi:31961 #, no-wrap msgid "@code{base-path} (default: @file{/srv/git})" msgstr "@code{base-path} (Vorgabe: @file{/srv/git})" #. type: table -#: guix-git/doc/guix.texi:31602 +#: guix-git/doc/guix.texi:31967 msgid "Whether to remap all the path requests as relative to the given path. If you run @command{git daemon} with @code{(base-path \"/srv/git\")} on @samp{example.com}, then if you later try to pull @indicateurl{git://example.com/hello.git}, git daemon will interpret the path as @file{/srv/git/hello.git}." msgstr "Ob alle Pfadanfragen behandelt werden sollen, als wären sie relativ zum angegebenen Pfad. Wenn Sie @command{git daemon} mit @code{(base-path \"/srv/git\")} auf @samp{example.com} ausführen und später versuchen, @indicateurl{git://example.com/hello.git} zu pullen, wird der Git-Daemon den Pfad als @file{/srv/git/hello.git} interpretieren." #. type: item -#: guix-git/doc/guix.texi:31603 +#: guix-git/doc/guix.texi:31968 #, no-wrap msgid "@code{user-path} (default: @code{#f})" msgstr "@code{user-path} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31611 +#: guix-git/doc/guix.texi:31976 msgid "Whether to allow @code{~user} notation to be used in requests. When specified with empty string, requests to @indicateurl{git://host/~alice/foo} is taken as a request to access @code{foo} repository in the home directory of user @code{alice}. If @code{(user-path \"@var{path}\")} is specified, the same request is taken as a request to access @file{@var{path}/foo} repository in the home directory of user @code{alice}." msgstr "Ob die @code{~benutzerkonto}-Notation in Anfragen verwendet werden darf. Wird hier die leere Zeichenkette angegeben, werden Anfragen an @indicateurl{git://host/~alice/foo} als Anfragen verstanden, auf das @code{foo}-Repository im Persönlichen Verzeichnis des @code{alice}-Benutzerkontos verstanden. Wird @code{(user-path \"pfad\")} angegeben, wird dieselbe Anfrage als eine Anfrage verstanden, auf das @file{@var{pfad}/foo}-Repository im Persönlichen Verzeichnis des @code{alice}-Benutzerkontos zuzugreifen." #. type: item -#: guix-git/doc/guix.texi:31612 +#: guix-git/doc/guix.texi:31977 #, no-wrap msgid "@code{listen} (default: @code{'()})" msgstr "@code{listen} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:31615 +#: guix-git/doc/guix.texi:31980 msgid "Whether to listen on specific IP addresses or hostnames, defaults to all." msgstr "Ob auf bestimmte IP-Adressen oder Rechnernamen („Hostnames“) gelauscht werden soll. Vorgegeben ist auf allen." #. type: item -#: guix-git/doc/guix.texi:31616 +#: guix-git/doc/guix.texi:31981 #, no-wrap msgid "@code{port} (default: @code{#f})" msgstr "@code{port} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31618 +#: guix-git/doc/guix.texi:31983 msgid "Whether to listen on an alternative port, which defaults to 9418." msgstr "Ob auf einer alternativen Portnummer gelauscht werden soll. Vorgegeben ist 9418." #. type: item -#: guix-git/doc/guix.texi:31619 +#: guix-git/doc/guix.texi:31984 #, no-wrap msgid "@code{whitelist} (default: @code{'()})" msgstr "@code{whitelist} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:31621 +#: guix-git/doc/guix.texi:31986 msgid "If not empty, only allow access to this list of directories." msgstr "Wenn dies nicht leer gelassen wird, wird nur der Zugriff auf die aufgelisteten Verzeichnisse gewährt." #. type: table -#: guix-git/doc/guix.texi:31625 +#: guix-git/doc/guix.texi:31990 msgid "Extra options will be passed to @command{git daemon}, please run @command{man git-daemon} for more information." msgstr "Zusätzliche Befehlszeilenoptionen, die dem @command{git daemon} mitgegeben werden sollen. Bitte führen Sie @command{man git-daemon} aus, um weitere Informationen zu erhalten." #. type: Plain text -#: guix-git/doc/guix.texi:31639 +#: guix-git/doc/guix.texi:32004 msgid "The @code{git://} protocol lacks authentication. When you pull from a repository fetched via @code{git://}, you don't know whether the data you receive was modified or is even coming from the specified host, and your connection is subject to eavesdropping. It's better to use an authenticated and encrypted transport, such as @code{https}. Although Git allows you to serve repositories using unsophisticated file-based web servers, there is a faster protocol implemented by the @code{git-http-backend} program. This program is the back-end of a proper Git web service. It is designed to sit behind a FastCGI proxy. @xref{Web Services}, for more on running the necessary @code{fcgiwrap} daemon." msgstr "Zugriffe über das @code{git://}-Protokoll werden nicht authentifiziert. Wenn Sie von einem Repository pullen, dass Sie über @code{git://} geholt haben, wissen Sie nicht, ob die empfangenen Daten modifiziert wurden oder auch nur vom angegebenen Rechner kommen, und Ihre Verbindung kann abgehört werden. Es ist besser, eine authentifizierte und verschlüsselte Übertragungsart zu verwenden, zum Beispiel @code{https}. Obwohl Git es Ihnen ermöglicht, Repositorys über schlichte dateibasierte Webserver anzubieten, gibt es ein schnelleres Protokoll, das vom @code{git-http-backend}-Programm implementiert wird. Dieses Programm dient als Hintergrundsystem für einen ordentlichen Git-Webdienst. Es wurde so konstruiert, dass es über einen FastCGI-Proxy abrufbar ist. Siehe @ref{Web Services} für weitere Informationen, wie Sie den benötigten @code{fcgiwrap}-Daemon ausführen." #. type: Plain text -#: guix-git/doc/guix.texi:31642 +#: guix-git/doc/guix.texi:32007 msgid "Guix has a separate configuration data type for serving Git repositories over HTTP." msgstr "Guix hat einen separaten Konfigurationsdatentyp, um Git-Repositorys über HTTP anzubieten." #. type: deftp -#: guix-git/doc/guix.texi:31643 +#: guix-git/doc/guix.texi:32008 #, no-wrap msgid "{Data Type} git-http-configuration" msgstr "{Datentyp} git-http-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31647 +#: guix-git/doc/guix.texi:32012 msgid "Data type representing the configuration for a future @code{git-http-service-type}; can currently be used to configure Nginx through @code{git-http-nginx-location-configuration}." msgstr "Datentyp, der in Zukunft die Konfiguration eines @code{git-http-service-type} repräsentieren soll; zurzeit kann damit Nginx über @code{git-http-nginx-location-configuration} eingerichtet werden." #. type: item -#: guix-git/doc/guix.texi:31649 +#: guix-git/doc/guix.texi:32014 #, no-wrap msgid "@code{package} (default: @var{git})" msgstr "@code{package} (Vorgabe: @var{git})" #. type: item -#: guix-git/doc/guix.texi:31652 +#: guix-git/doc/guix.texi:32017 #, no-wrap msgid "@code{git-root} (default: @file{/srv/git})" msgstr "@code{git-root} (Vorgabe: @file{/srv/git})" #. type: table -#: guix-git/doc/guix.texi:31654 +#: guix-git/doc/guix.texi:32019 msgid "Directory containing the Git repositories to expose to the world." msgstr "Das Verzeichnis, das die Git-Repositorys enthält, die der Allgemeinheit zugänglich gemacht werden sollen." #. type: table -#: guix-git/doc/guix.texi:31658 +#: guix-git/doc/guix.texi:32023 msgid "Whether to expose access for all Git repositories in @var{git-root}, even if they do not have the @file{git-daemon-export-ok} file." msgstr "Ob alle Git-Repositorys in @var{git-root} zugänglich gemacht werden sollen, selbst wenn keine @file{git-daemon-export-ok}-Datei in ihrem Verzeichnis gefunden wird." #. type: item -#: guix-git/doc/guix.texi:31659 +#: guix-git/doc/guix.texi:32024 #, no-wrap msgid "@code{uri-path} (default: @samp{/git/})" msgstr "@code{uri-path} (Vorgabe: @samp{/git/})" #. type: table -#: guix-git/doc/guix.texi:31664 +#: guix-git/doc/guix.texi:32029 msgid "Path prefix for Git access. With the default @samp{/git/} prefix, this will map @indicateurl{http://@var{server}/git/@var{repo}.git} to @file{/srv/git/@var{repo}.git}. Requests whose URI paths do not begin with this prefix are not passed on to this Git instance." msgstr "Präfix für Pfade beim Git-Zugriff. Beim vorgegebenen Präfix @samp{/git/} wird @indicateurl{http://@var{server}/git/@var{repo}.git} auf @file{/srv/git/@var{repo}.git} abgebildet. Anfragen, deren URI-Pfade nicht mit dem Präfix beginnen, werden nicht an die Git-Instanz weitergereicht." #. type: item -#: guix-git/doc/guix.texi:31665 +#: guix-git/doc/guix.texi:32030 #, no-wrap msgid "@code{fcgiwrap-socket} (default: @code{127.0.0.1:9000})" msgstr "@code{fcgiwrap-socket} (Vorgabe: @code{127.0.0.1:9000})" #. type: table -#: guix-git/doc/guix.texi:31668 +#: guix-git/doc/guix.texi:32033 msgid "The socket on which the @code{fcgiwrap} daemon is listening. @xref{Web Services}." msgstr "Der Socket, auf dem der @code{fcgiwrap}-Daemon lauscht. Siehe @ref{Web Services}." #. type: Plain text -#: guix-git/doc/guix.texi:31675 +#: guix-git/doc/guix.texi:32040 msgid "There is no @code{git-http-service-type}, currently; instead you can create an @code{nginx-location-configuration} from a @code{git-http-configuration} and then add that location to a web server." msgstr "Es gibt zurzeit keinen @code{git-http-service-type}, stattdessen können Sie eine @code{nginx-location-configuration} aus einer @code{git-http-configuration} heraus erstellen und als Location zu einem Webserver hinzufügen." #. type: deffn -#: guix-git/doc/guix.texi:31676 +#: guix-git/doc/guix.texi:32041 #, no-wrap msgid "{Scheme Procedure} git-http-nginx-location-configuration @" msgstr "{Scheme-Prozedur} git-http-nginx-location-configuration @" #. type: deffn -#: guix-git/doc/guix.texi:31681 +#: guix-git/doc/guix.texi:32046 msgid "[config=(git-http-configuration)] Compute an @code{nginx-location-configuration} that corresponds to the given Git http configuration. An example nginx service definition to serve the default @file{/srv/git} over HTTPS might be:" msgstr "[config=(git-http-configuration)] Eine @code{nginx-location-configuration} berechnen, die der angegebenen Git-HTTP-Konfiguration entspricht. Ein Beispiel für eine nginx-Dienstdefinition, um das vorgegebene @file{/srv/git}-Verzeichnis über HTTPS anzubieten, könnte so aussehen:" #. type: lisp -#: guix-git/doc/guix.texi:31698 +#: guix-git/doc/guix.texi:32063 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -59270,1414 +60003,1419 @@ msgstr "" " (git-http-configuration (uri-path \"/\"))))))))))\n" #. type: deffn -#: guix-git/doc/guix.texi:31705 +#: guix-git/doc/guix.texi:32070 msgid "This example assumes that you are using Let's Encrypt to get your TLS certificate. @xref{Certificate Services}. The default @code{certbot} service will redirect all HTTP traffic on @code{git.my-host.org} to HTTPS@. You will also need to add an @code{fcgiwrap} proxy to your system services. @xref{Web Services}." msgstr "Für dieses Beispiel nehmen wir an, dass Sie Ihr TLS-Zertifikat über Let’s Encrypt beziehen. Siehe @ref{Certificate Services}. Der vorgegebene @code{certbot}-Dienst leitet alle HTTP-Anfragen nach @code{git.mein-rechner.org} auf HTTPS um. Zu Ihren Systemdiensten werden Sie auch einen @code{fcgiwrap}-Proxy hinzufügen müssen. Siehe @ref{Web Services}." #. type: subsubheading -#: guix-git/doc/guix.texi:31707 +#: guix-git/doc/guix.texi:32072 #, no-wrap msgid "Cgit Service" msgstr "Cgit-Dienst" #. type: cindex -#: guix-git/doc/guix.texi:31709 +#: guix-git/doc/guix.texi:32074 #, no-wrap msgid "Cgit service" msgstr "Cgit-Dienst" #. type: cindex -#: guix-git/doc/guix.texi:31710 +#: guix-git/doc/guix.texi:32075 #, no-wrap msgid "Git, web interface" msgstr "Git, Weboberfläche" #. type: Plain text -#: guix-git/doc/guix.texi:31713 +#: guix-git/doc/guix.texi:32078 msgid "@uref{https://git.zx2c4.com/cgit/, Cgit} is a web frontend for Git repositories written in C." msgstr "@uref{https://git.zx2c4.com/cgit/, Cgit} ist eine in C geschriebene Weboberfläche als Vordergrundsystem für Git-Repositorys." #. type: Plain text -#: guix-git/doc/guix.texi:31716 +#: guix-git/doc/guix.texi:32081 msgid "The following example will configure the service with default values. By default, Cgit can be accessed on port 80 (@code{http://localhost:80})." msgstr "Im folgenden Beispiel wird der Dienst mit den vorgegebenen Werten eingerichtet. Nach Vorgabe kann auf Cgit auf Port 80 unter @code{http://localhost:80} zugegriffen werden." #. type: lisp -#: guix-git/doc/guix.texi:31719 +#: guix-git/doc/guix.texi:32084 #, no-wrap msgid "(service cgit-service-type)\n" msgstr "(service cgit-service-type)\n" #. type: Plain text -#: guix-git/doc/guix.texi:31723 +#: guix-git/doc/guix.texi:32088 msgid "The @code{file-object} type designates either a file-like object (@pxref{G-Expressions, file-like objects}) or a string." msgstr "Der Typ @code{Dateiobjekt} bezeichnet entweder ein dateiartiges Objekt (siehe @ref{G-Expressions, dateiartige Objekte}) oder eine Zeichenkette." #. type: Plain text -#: guix-git/doc/guix.texi:31727 +#: guix-git/doc/guix.texi:32092 msgid "Available @code{cgit-configuration} fields are:" msgstr "Verfügbare @code{cgit-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:31728 +#: guix-git/doc/guix.texi:32093 #, no-wrap msgid "{@code{cgit-configuration} parameter} package package" msgstr "{@code{cgit-configuration}-Parameter} „package“ package" #. type: deftypevr -#: guix-git/doc/guix.texi:31730 +#: guix-git/doc/guix.texi:32095 msgid "The CGIT package." msgstr "Das CGIT-Paket." #. type: deftypevr -#: guix-git/doc/guix.texi:31733 +#: guix-git/doc/guix.texi:32098 #, no-wrap msgid "{@code{cgit-configuration} parameter} nginx-server-configuration-list nginx" msgstr "{@code{cgit-configuration}-Parameter} „nginx-server-configuration-list“ nginx" #. type: deftypevr -#: guix-git/doc/guix.texi:31738 +#: guix-git/doc/guix.texi:32100 +msgid "NGINX configuration." +msgstr "NGINX-Konfiguration." + +#. type: deftypevr +#: guix-git/doc/guix.texi:32103 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object about-filter" msgstr "{@code{cgit-configuration}-Parameter} Dateiobjekt about-filter" #. type: deftypevr -#: guix-git/doc/guix.texi:31741 +#: guix-git/doc/guix.texi:32106 msgid "Specifies a command which will be invoked to format the content of about pages (both top-level and for each repository)." msgstr "Gibt einen Befehl an, der zur Formatierung des Inhalts der Übersichtsseiten aufgerufen wird (sowohl auf oberster Ebene und für jedes Repository)." #. type: deftypevr -#: guix-git/doc/guix.texi:31746 +#: guix-git/doc/guix.texi:32111 #, no-wrap msgid "{@code{cgit-configuration} parameter} string agefile" msgstr "{@code{cgit-configuration}-Parameter} Zeichenkette agefile" #. type: deftypevr -#: guix-git/doc/guix.texi:31749 +#: guix-git/doc/guix.texi:32114 msgid "Specifies a path, relative to each repository path, which can be used to specify the date and time of the youngest commit in the repository." msgstr "Gibt einen Pfad relativ zu jedem Repository-Pfad an, unter dem eine Datei gespeichert sein kann, die Datum und Uhrzeit des jüngsten Commits im Repository angibt." #. type: deftypevr -#: guix-git/doc/guix.texi:31754 +#: guix-git/doc/guix.texi:32119 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object auth-filter" msgstr "{@code{cgit-configuration}-Parameter} Dateiobjekt auth-filter" #. type: deftypevr -#: guix-git/doc/guix.texi:31757 +#: guix-git/doc/guix.texi:32122 msgid "Specifies a command that will be invoked for authenticating repository access." msgstr "Gibt einen Befehl an, der aufgerufen wird, um Benutzer zu authentifizieren." #. type: deftypevr -#: guix-git/doc/guix.texi:31762 +#: guix-git/doc/guix.texi:32127 #, no-wrap msgid "{@code{cgit-configuration} parameter} string branch-sort" msgstr "{@code{cgit-configuration}-Parameter} Zeichenkette branch-sort" #. type: deftypevr -#: guix-git/doc/guix.texi:31765 +#: guix-git/doc/guix.texi:32130 msgid "Flag which, when set to @samp{age}, enables date ordering in the branch ref list, and when set @samp{name} enables ordering by branch name." msgstr "Wenn diese Option auf @samp{age} gesetzt wurde, wird die Liste der Branch-Referenzen nach Datum sortiert, und wenn sie auf @samp{name} gesetzt wurde, wird nach dem Branch-Namen sortiert." #. type: deftypevr -#: guix-git/doc/guix.texi:31767 +#: guix-git/doc/guix.texi:32132 msgid "Defaults to @samp{\"name\"}." msgstr "Die Vorgabe ist @samp{\"name\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:31770 +#: guix-git/doc/guix.texi:32135 #, no-wrap msgid "{@code{cgit-configuration} parameter} string cache-root" msgstr "{@code{cgit-configuration}-Parameter} Zeichenkette cache-root" #. type: deftypevr -#: guix-git/doc/guix.texi:31772 +#: guix-git/doc/guix.texi:32137 msgid "Path used to store the cgit cache entries." msgstr "Pfad, unter dem Cgit-Zwischenspeichereinträge abgelegt werden." #. type: deftypevr -#: guix-git/doc/guix.texi:31774 +#: guix-git/doc/guix.texi:32139 msgid "Defaults to @samp{\"/var/cache/cgit\"}." msgstr "Die Vorgabe ist @samp{\"/var/cache/cgit\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:31777 +#: guix-git/doc/guix.texi:32142 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-static-ttl" msgstr "{@code{cgit-configuration}-Parameter} Ganze-Zahl cache-static-ttl" #. type: deftypevr -#: guix-git/doc/guix.texi:31780 +#: guix-git/doc/guix.texi:32145 msgid "Number which specifies the time-to-live, in minutes, for the cached version of repository pages accessed with a fixed SHA1." msgstr "Zahl, die angibt, wie viele Minuten die Zwischenspeicherungen für Repository-Seiten mit fester SHA1-Summe gültig bleiben, auf die zugegriffen wird („Time-to-live“)." #. type: deftypevr -#: guix-git/doc/guix.texi:31782 guix-git/doc/guix.texi:32225 +#: guix-git/doc/guix.texi:32147 guix-git/doc/guix.texi:32590 msgid "Defaults to @samp{-1}." msgstr "Die Vorgabe ist @samp{-1}." #. type: deftypevr -#: guix-git/doc/guix.texi:31785 +#: guix-git/doc/guix.texi:32150 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-dynamic-ttl" msgstr "{@code{cgit-configuration}-Parameter} Ganze-Zahl cache-dynamic-ttl" #. type: deftypevr -#: guix-git/doc/guix.texi:31788 +#: guix-git/doc/guix.texi:32153 msgid "Number which specifies the time-to-live, in minutes, for the cached version of repository pages accessed without a fixed SHA1." msgstr "Zahl, die angibt, wie viele Minuten die Zwischenspeicherungen für Repository-Seiten mit veränderlicher SHA1-Summe gültig bleiben, auf die zugegriffen wird.<" #. type: deftypevr -#: guix-git/doc/guix.texi:31793 +#: guix-git/doc/guix.texi:32158 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-repo-ttl" msgstr "{@code{cgit-configuration}-Parameter} Ganze-Zahl cache-repo-ttl" #. type: deftypevr -#: guix-git/doc/guix.texi:31796 +#: guix-git/doc/guix.texi:32161 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository summary page." msgstr "Zahl, die angibt, wie viele Minuten die Zwischenspeicherungen für die Übersichtsseiten („summary“) von Repositorys gültig bleiben." #. type: deftypevr -#: guix-git/doc/guix.texi:31801 +#: guix-git/doc/guix.texi:32166 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-root-ttl" msgstr "{@code{cgit-configuration}-Parameter} Ganze-Zahl cache-root-ttl" #. type: deftypevr -#: guix-git/doc/guix.texi:31804 +#: guix-git/doc/guix.texi:32169 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository index page." msgstr "Zahl, die angibt, wie viele Minuten die Zwischenspeicherung der Seite mit dem Repository-Index gültig bleibt." #. type: deftypevr -#: guix-git/doc/guix.texi:31809 +#: guix-git/doc/guix.texi:32174 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-scanrc-ttl" msgstr "{@code{cgit-configuration}-Parameter} Ganze-Zahl cache-scanrc-ttl" #. type: deftypevr -#: guix-git/doc/guix.texi:31812 +#: guix-git/doc/guix.texi:32177 msgid "Number which specifies the time-to-live, in minutes, for the result of scanning a path for Git repositories." msgstr "Zahl, die angibt, wie viele Minuten die Zwischenspeicherung des Ergebnisses einer Suche in einem Pfad nach Git-Repositorys gültig bleibt." #. type: deftypevr -#: guix-git/doc/guix.texi:31817 +#: guix-git/doc/guix.texi:32182 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-about-ttl" msgstr "{@code{cgit-configuration}-Parameter} Ganze-Zahl cache-about-ttl" #. type: deftypevr -#: guix-git/doc/guix.texi:31820 +#: guix-git/doc/guix.texi:32185 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository about page." msgstr "Zahl, die angibt, wie viele Minuten die Zwischenspeicherungen für die Beschreibungsseiten („about“) von Repositorys gültig bleiben." #. type: deftypevr -#: guix-git/doc/guix.texi:31825 +#: guix-git/doc/guix.texi:32190 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-snapshot-ttl" msgstr "{@code{cgit-configuration}-Parameter} Ganze-Zahl cache-snapshot-ttl" #. type: deftypevr -#: guix-git/doc/guix.texi:31828 +#: guix-git/doc/guix.texi:32193 msgid "Number which specifies the time-to-live, in minutes, for the cached version of snapshots." msgstr "Zahl, die angibt, wie viele Minuten die Zwischenspeicherungen für die Snapshots von Repositorys gültig bleiben." #. type: deftypevr -#: guix-git/doc/guix.texi:31833 +#: guix-git/doc/guix.texi:32198 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-size" msgstr "{@code{cgit-configuration}-Parameter} Ganze-Zahl cache-size" #. type: deftypevr -#: guix-git/doc/guix.texi:31836 +#: guix-git/doc/guix.texi:32201 msgid "The maximum number of entries in the cgit cache. When set to @samp{0}, caching is disabled." msgstr "Wie viele Einträge der Cgit-Zwischenspeicher höchstens haben kann. Wird @samp{0} festgelegt, wird @emph{nicht} zwischengespeichert." #. type: deftypevr -#: guix-git/doc/guix.texi:31841 +#: guix-git/doc/guix.texi:32206 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean case-sensitive-sort?" msgstr "{@code{cgit-configuration}-Parameter} Boolescher-Ausdruck case-sensitive-sort?" #. type: deftypevr -#: guix-git/doc/guix.texi:31843 +#: guix-git/doc/guix.texi:32208 msgid "Sort items in the repo list case sensitively." msgstr "Ob beim Sortieren von Objekten in der Repository-Liste die Groß-/Kleinschreibung beachtet werden soll." #. type: deftypevr -#: guix-git/doc/guix.texi:31848 +#: guix-git/doc/guix.texi:32213 #, no-wrap msgid "{@code{cgit-configuration} parameter} list clone-prefix" msgstr "{@code{cgit-configuration}-Parameter} Liste clone-prefix" #. type: deftypevr -#: guix-git/doc/guix.texi:31851 +#: guix-git/doc/guix.texi:32216 msgid "List of common prefixes which, when combined with a repository URL, generates valid clone URLs for the repository." msgstr "Liste gemeinsamer Präfixe, von denen ein Repository geklont werden kann. D.h.@: dass, wenn eines mit einer Repository-URL kombiniert wird, eine gültige URL zum Klonen des Repositorys entsteht." #. type: deftypevr -#: guix-git/doc/guix.texi:31856 +#: guix-git/doc/guix.texi:32221 #, no-wrap msgid "{@code{cgit-configuration} parameter} list clone-url" msgstr "{@code{cgit-configuration}-Parameter} Liste clone-url" #. type: deftypevr -#: guix-git/doc/guix.texi:31858 +#: guix-git/doc/guix.texi:32223 msgid "List of @code{clone-url} templates." msgstr "Liste von Schablonen, aus denen eine @code{clone-url} entsteht." #. type: deftypevr -#: guix-git/doc/guix.texi:31863 +#: guix-git/doc/guix.texi:32228 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object commit-filter" msgstr "{@code{cgit-configuration}-Parameter} Dateiobjekt commit-filter" #. type: deftypevr -#: guix-git/doc/guix.texi:31865 +#: guix-git/doc/guix.texi:32230 msgid "Command which will be invoked to format commit messages." msgstr "Befehl, mit dem Commit-Nachrichten formatiert werden." #. type: deftypevr -#: guix-git/doc/guix.texi:31870 +#: guix-git/doc/guix.texi:32235 #, no-wrap msgid "{@code{cgit-configuration} parameter} string commit-sort" msgstr "{@code{cgit-configuration}-Parameter} Zeichenkette commit-sort" #. type: deftypevr -#: guix-git/doc/guix.texi:31874 guix-git/doc/guix.texi:32432 +#: guix-git/doc/guix.texi:32239 guix-git/doc/guix.texi:32797 msgid "Flag which, when set to @samp{date}, enables strict date ordering in the commit log, and when set to @samp{topo} enables strict topological ordering." msgstr "Wenn diese Option als @samp{date} festgelegt wird, wird das Commit-Log streng nach Datum geordnet. Wenn sie auf @samp{topo} gesetzt ist, wird es streng topologisch geordnet." # TODO This does not make sense. #. type: deftypevr -#: guix-git/doc/guix.texi:31876 +#: guix-git/doc/guix.texi:32241 msgid "Defaults to @samp{\"git log\"}." msgstr "Die Vorgabe ist @samp{\"git log\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:31879 +#: guix-git/doc/guix.texi:32244 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object css" msgstr "{@code{cgit-configuration}-Parameter} Dateiobjekt css" #. type: deftypevr -#: guix-git/doc/guix.texi:31881 +#: guix-git/doc/guix.texi:32246 msgid "URL which specifies the css document to include in all cgit pages." msgstr "URL, die angibt, welches CSS-Dokument von jeder Cgit-Seite eingebunden werden soll." #. type: deftypevr -#: guix-git/doc/guix.texi:31883 +#: guix-git/doc/guix.texi:32248 msgid "Defaults to @samp{\"/share/cgit/cgit.css\"}." msgstr "Die Vorgabe ist @samp{\"/share/cgit/cgit.css\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:31886 +#: guix-git/doc/guix.texi:32251 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object email-filter" msgstr "{@code{cgit-configuration}-Parameter} Dateiobjekt email-filter" #. type: deftypevr -#: guix-git/doc/guix.texi:31890 +#: guix-git/doc/guix.texi:32255 msgid "Specifies a command which will be invoked to format names and email address of committers, authors, and taggers, as represented in various places throughout the cgit interface." msgstr "Gibt einen Befehl an, um die Namen und E-Mail-Adressen der Commiter, Autoren und Tagger zu formatieren, die an verschiedenen Stellen in der Oberfläche von Cgit vorkommen." #. type: deftypevr -#: guix-git/doc/guix.texi:31895 +#: guix-git/doc/guix.texi:32260 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean embedded?" msgstr "{@code{cgit-configuration}-Parameter} Boolescher-Ausdruck embedded?" #. type: deftypevr -#: guix-git/doc/guix.texi:31898 +#: guix-git/doc/guix.texi:32263 msgid "Flag which, when set to @samp{#t}, will make cgit generate a HTML fragment suitable for embedding in other HTML pages." msgstr "Wenn diese Option auf @samp{#t} gesetzt ist, wird Cgit ein HTML-Fragment erzeugen, das für die Einbettung in andere HTML-Seiten geeignet ist." #. type: deftypevr -#: guix-git/doc/guix.texi:31903 +#: guix-git/doc/guix.texi:32268 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-commit-graph?" msgstr "{@code{cgit-configuration}-Parameter} Boolescher-Ausdruck enable-commit-graph?" #. type: deftypevr -#: guix-git/doc/guix.texi:31907 +#: guix-git/doc/guix.texi:32272 msgid "Flag which, when set to @samp{#t}, will make cgit print an ASCII-art commit history graph to the left of the commit messages in the repository log page." msgstr "Wenn diese Option auf @samp{#t} gesetzt ist, wird Cgit den Graphen der Commit-Historie links von den Commit-Nachrichten auf den Commit-Log-Seiten mit ASCII-Zeichen darstellen." #. type: deftypevr -#: guix-git/doc/guix.texi:31912 +#: guix-git/doc/guix.texi:32277 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-filter-overrides?" msgstr "{@code{cgit-configuration}-Parameter} Boolescher-Ausdruck enable-filter-overrides?" #. type: deftypevr -#: guix-git/doc/guix.texi:31915 +#: guix-git/doc/guix.texi:32280 msgid "Flag which, when set to @samp{#t}, allows all filter settings to be overridden in repository-specific cgitrc files." msgstr "Wenn diese Option auf @samp{#t} gesetzt ist, können alle Filtereinstellungen durch die cgitrc-Dateien für das jeweilige Repository geändert werden." #. type: deftypevr -#: guix-git/doc/guix.texi:31920 +#: guix-git/doc/guix.texi:32285 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-follow-links?" msgstr "{@code{cgit-configuration}-Parameter} Boolescher-Ausdruck enable-follow-links?" #. type: deftypevr -#: guix-git/doc/guix.texi:31923 +#: guix-git/doc/guix.texi:32288 msgid "Flag which, when set to @samp{#t}, allows users to follow a file in the log view." msgstr "Wenn diese Option auf @samp{#t} gesetzt ist, können Benutzer in der Log-Ansicht einer Datei folgen („--follow“)." #. type: deftypevr -#: guix-git/doc/guix.texi:31928 +#: guix-git/doc/guix.texi:32293 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-http-clone?" msgstr "{@code{cgit-configuration}-Parameter} Boolescher-Ausdruck enable-http-clone?" #. type: deftypevr -#: guix-git/doc/guix.texi:31931 +#: guix-git/doc/guix.texi:32296 msgid "If set to @samp{#t}, cgit will act as an dumb HTTP endpoint for Git clones." msgstr "Wenn es auf @samp{#t} gesetzt ist, kann Cgit als Endpunkt für eine Dumb-HTTP-Übertragung mit „git clone“ benutzt werden." #. type: deftypevr -#: guix-git/doc/guix.texi:31936 +#: guix-git/doc/guix.texi:32301 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-index-links?" msgstr "{@code{cgit-configuration}-Parameter} Boolescher-Ausdruck enable-index-links?" #. type: deftypevr -#: guix-git/doc/guix.texi:31939 +#: guix-git/doc/guix.texi:32304 msgid "Flag which, when set to @samp{#t}, will make cgit generate extra links \"summary\", \"commit\", \"tree\" for each repo in the repository index." msgstr "Wenn diese Option auf @samp{#t} gesetzt ist, legt Cgit für jedes Repository zusätzlich Hyperlinks „summary“, „commit“, „tree“ im Repository-Index an." #. type: deftypevr -#: guix-git/doc/guix.texi:31944 +#: guix-git/doc/guix.texi:32309 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-index-owner?" msgstr "{@code{cgit-configuration}-Parameter} Boolescher-Ausdruck enable-index-owner?" #. type: deftypevr -#: guix-git/doc/guix.texi:31947 +#: guix-git/doc/guix.texi:32312 msgid "Flag which, when set to @samp{#t}, will make cgit display the owner of each repo in the repository index." msgstr "Wenn diese Option auf @samp{#t} gesetzt ist, zeigt Cgit den Besitzer für jedes Repository im Repository-Index an." #. type: deftypevr -#: guix-git/doc/guix.texi:31952 +#: guix-git/doc/guix.texi:32317 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-log-filecount?" msgstr "{@code{cgit-configuration}-Parameter} Boolescher-Ausdruck enable-log-filecount?" #. type: deftypevr -#: guix-git/doc/guix.texi:31955 +#: guix-git/doc/guix.texi:32320 msgid "Flag which, when set to @samp{#t}, will make cgit print the number of modified files for each commit on the repository log page." msgstr "Wenn diese Option auf @samp{#t} gesetzt ist, zeigt Cgit für jeden Commit auf den Repository-Log-Seiten die geänderten Dateien an." #. type: deftypevr -#: guix-git/doc/guix.texi:31960 +#: guix-git/doc/guix.texi:32325 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-log-linecount?" msgstr "{@code{cgit-configuration}-Parameter} Boolescher-Ausdruck enable-log-linecount?" #. type: deftypevr -#: guix-git/doc/guix.texi:31963 +#: guix-git/doc/guix.texi:32328 msgid "Flag which, when set to @samp{#t}, will make cgit print the number of added and removed lines for each commit on the repository log page." msgstr "Wenn diese Option auf @samp{#t} gesetzt ist, zeigt Cgit für jeden Commit auf den Repository-Log-Seiten die Anzahl der hinzugefügten und entfernten Zeilen an." #. type: deftypevr -#: guix-git/doc/guix.texi:31968 +#: guix-git/doc/guix.texi:32333 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-remote-branches?" msgstr "{@code{cgit-configuration}-Parameter} Boolescher-Ausdruck enable-remote-branches?" #. type: deftypevr -#: guix-git/doc/guix.texi:31971 guix-git/doc/guix.texi:32495 +#: guix-git/doc/guix.texi:32336 guix-git/doc/guix.texi:32860 msgid "Flag which, when set to @code{#t}, will make cgit display remote branches in the summary and refs views." msgstr "Wenn diese Option auf @samp{#t} gesetzt ist, zeigt Cgit unter den „summary“- und „ref“-Seiten entfernte Branches an." #. type: deftypevr -#: guix-git/doc/guix.texi:31976 +#: guix-git/doc/guix.texi:32341 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-subject-links?" msgstr "{@code{cgit-configuration}-Parameter} Boolescher-Ausdruck enable-subject-links?" #. type: deftypevr -#: guix-git/doc/guix.texi:31980 +#: guix-git/doc/guix.texi:32345 msgid "Flag which, when set to @code{1}, will make cgit use the subject of the parent commit as link text when generating links to parent commits in commit view." msgstr "Wenn diese Option auf @samp{#t} gesetzt ist, zeigt Cgit für Links auf Eltern-Commits die Betreffzeile des Eltern-Commits als Linktext in der Commit-Ansicht an." #. type: deftypevr -#: guix-git/doc/guix.texi:31985 +#: guix-git/doc/guix.texi:32350 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-html-serving?" msgstr "{@code{cgit-configuration}-Parameter} Boolescher-Ausdruck enable-html-serving?" # TODO This is not the description for this option. #. type: deftypevr -#: guix-git/doc/guix.texi:31989 +#: guix-git/doc/guix.texi:32354 msgid "Flag which, when set to @samp{#t}, will make cgit use the subject of the parent commit as link text when generating links to parent commits in commit view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31994 +#: guix-git/doc/guix.texi:32359 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-tree-linenumbers?" msgstr "{@code{cgit-configuration}-Parameter} Boolescher-Ausdruck enable-tree-linenumbers?" #. type: deftypevr -#: guix-git/doc/guix.texi:31997 +#: guix-git/doc/guix.texi:32362 msgid "Flag which, when set to @samp{#t}, will make cgit generate linenumber links for plaintext blobs printed in the tree view." msgstr "Wenn diese Option auf @samp{#t} gesetzt ist, zeigt Cgit für jeden Blob aus reinem Text Links auf dessen Zeilennummern in der Baumansicht („tree“) an." #. type: deftypevr -#: guix-git/doc/guix.texi:32002 +#: guix-git/doc/guix.texi:32367 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-git-config?" msgstr "{@code{cgit-configuration}-Parameter} Boolescher-Ausdruck enable-git-config?" # TODO This description seems to be wrong. #. type: deftypevr -#: guix-git/doc/guix.texi:32005 +#: guix-git/doc/guix.texi:32370 msgid "Flag which, when set to @samp{#f}, will allow cgit to use Git config to set any repo specific settings." msgstr "" # TODO It seems this should not be a file-object. #. type: deftypevr -#: guix-git/doc/guix.texi:32010 +#: guix-git/doc/guix.texi:32375 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object favicon" msgstr "{@code{cgit-configuration}-Parameter} Dateiobjekt favicon" #. type: deftypevr -#: guix-git/doc/guix.texi:32012 +#: guix-git/doc/guix.texi:32377 msgid "URL used as link to a shortcut icon for cgit." msgstr "URL, auf der ein Cgit-Symbol für die Anzeige in einem Webbrowser zu finden ist." #. type: deftypevr -#: guix-git/doc/guix.texi:32014 +#: guix-git/doc/guix.texi:32379 msgid "Defaults to @samp{\"/favicon.ico\"}." msgstr "Die Vorgabe ist @samp{\"/favicon.ico\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:32017 +#: guix-git/doc/guix.texi:32382 #, no-wrap msgid "{@code{cgit-configuration} parameter} string footer" msgstr "{@code{cgit-configuration}-Parameter} Zeichenkette footer" #. type: deftypevr -#: guix-git/doc/guix.texi:32021 +#: guix-git/doc/guix.texi:32386 msgid "The content of the file specified with this option will be included verbatim at the bottom of all pages (i.e.@: it replaces the standard \"generated by...\"@: message)." msgstr "Der Inhalt der für diese Option angegebenen Datei wird wortwörtlich am Ende jeder Seite eingefügt (d.h.@: er ersetzt die vorgegebene Mitteilung „generated by …“)." #. type: deftypevr -#: guix-git/doc/guix.texi:32026 +#: guix-git/doc/guix.texi:32391 #, no-wrap msgid "{@code{cgit-configuration} parameter} string head-include" msgstr "{@code{cgit-configuration}-Parameter} Zeichenkette head-include" #. type: deftypevr -#: guix-git/doc/guix.texi:32029 +#: guix-git/doc/guix.texi:32394 msgid "The content of the file specified with this option will be included verbatim in the HTML HEAD section on all pages." msgstr "Der Inhalt der für diese Option angegebenen Datei wird wortwörtlich im HTML-HEAD-Bereich jeder Seite eingefügt." #. type: deftypevr -#: guix-git/doc/guix.texi:32034 +#: guix-git/doc/guix.texi:32399 #, no-wrap msgid "{@code{cgit-configuration} parameter} string header" msgstr "{@code{cgit-configuration}-Parameter} Zeichenkette header" #. type: deftypevr -#: guix-git/doc/guix.texi:32037 +#: guix-git/doc/guix.texi:32402 msgid "The content of the file specified with this option will be included verbatim at the top of all pages." msgstr "Der Inhalt der für diese Option angegebenen Datei wird wortwörtlich am Anfang jeder Seite eingefügt." #. type: deftypevr -#: guix-git/doc/guix.texi:32042 +#: guix-git/doc/guix.texi:32407 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object include" msgstr "{@code{cgit-configuration}-Parameter} Dateiobjekt include" #. type: deftypevr -#: guix-git/doc/guix.texi:32045 +#: guix-git/doc/guix.texi:32410 msgid "Name of a configfile to include before the rest of the current config- file is parsed." msgstr "Der Name einer Konfigurationsdatei, deren Inhalt eingefügt werden soll, bevor die übrige hier angegebene Konfiguration eingelesen wird." #. type: deftypevr -#: guix-git/doc/guix.texi:32050 +#: guix-git/doc/guix.texi:32415 #, no-wrap msgid "{@code{cgit-configuration} parameter} string index-header" msgstr "{@code{cgit-configuration}-Parameter} Zeichenkette index-header" #. type: deftypevr -#: guix-git/doc/guix.texi:32053 +#: guix-git/doc/guix.texi:32418 msgid "The content of the file specified with this option will be included verbatim above the repository index." msgstr "Der Inhalt der mit dieser Option angegebenen Datei wird wortwörtlich oberhalb des Repository-Index eingefügt." #. type: deftypevr -#: guix-git/doc/guix.texi:32058 +#: guix-git/doc/guix.texi:32423 #, no-wrap msgid "{@code{cgit-configuration} parameter} string index-info" msgstr "{@code{cgit-configuration}-Parameter} Zeichenkette index-info" #. type: deftypevr -#: guix-git/doc/guix.texi:32061 +#: guix-git/doc/guix.texi:32426 msgid "The content of the file specified with this option will be included verbatim below the heading on the repository index page." msgstr "Der Inhalt der mit dieser Option angegebenen Datei wird wortwörtlich unterhalb der Überschrift auf jeder Repository-Index-Seite eingefügt." #. type: deftypevr -#: guix-git/doc/guix.texi:32066 +#: guix-git/doc/guix.texi:32431 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean local-time?" msgstr "{@code{cgit-configuration}-Parameter} Boolescher-Ausdruck local-time?" #. type: deftypevr -#: guix-git/doc/guix.texi:32069 +#: guix-git/doc/guix.texi:32434 msgid "Flag which, if set to @samp{#t}, makes cgit print commit and tag times in the servers timezone." msgstr "Wenn diese Option auf @samp{#t} gesetzt ist, gibt Cgit die Zeitstempel von Commits und Tags in der Zeitzone des Servers an." # TODO It seems this should not be a file-object. #. type: deftypevr -#: guix-git/doc/guix.texi:32074 +#: guix-git/doc/guix.texi:32439 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object logo" msgstr "{@code{cgit-configuration}-Parameter} Dateiobjekt logo" #. type: deftypevr -#: guix-git/doc/guix.texi:32077 +#: guix-git/doc/guix.texi:32442 msgid "URL which specifies the source of an image which will be used as a logo on all cgit pages." msgstr "URL, unter der ein Bild zu finden ist, das auf allen Cgit-Seiten als Logo zu sehen sein wird." #. type: deftypevr -#: guix-git/doc/guix.texi:32079 +#: guix-git/doc/guix.texi:32444 msgid "Defaults to @samp{\"/share/cgit/cgit.png\"}." msgstr "Die Vorgabe ist @samp{\"/share/cgit/cgit.png\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:32082 +#: guix-git/doc/guix.texi:32447 #, no-wrap msgid "{@code{cgit-configuration} parameter} string logo-link" msgstr "{@code{cgit-configuration}-Parameter} Zeichenkette logo-link" #. type: deftypevr -#: guix-git/doc/guix.texi:32084 guix-git/doc/guix.texi:32541 +#: guix-git/doc/guix.texi:32449 guix-git/doc/guix.texi:32906 msgid "URL loaded when clicking on the cgit logo image." msgstr "URL, die geladen wird, wenn jemand auf das Logo-Bild klickt." #. type: deftypevr -#: guix-git/doc/guix.texi:32089 +#: guix-git/doc/guix.texi:32454 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object owner-filter" msgstr "{@code{cgit-configuration}-Parameter} Dateiobjekt owner-filter" #. type: deftypevr -#: guix-git/doc/guix.texi:32092 +#: guix-git/doc/guix.texi:32457 msgid "Command which will be invoked to format the Owner column of the main page." msgstr "Befehl, der aufgerufen wird, um die Besitzerspalte auf der Hauptseite zu formatieren." #. type: deftypevr -#: guix-git/doc/guix.texi:32097 +#: guix-git/doc/guix.texi:32462 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-atom-items" msgstr "{@code{cgit-configuration}-Parameter} Ganze-Zahl max-atom-items" #. type: deftypevr -#: guix-git/doc/guix.texi:32099 +#: guix-git/doc/guix.texi:32464 msgid "Number of items to display in atom feeds view." msgstr "Anzahl der Objekte, die in der Atom-Feed-Ansicht angezeigt werden sollen." #. type: deftypevr -#: guix-git/doc/guix.texi:32104 +#: guix-git/doc/guix.texi:32469 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-commit-count" msgstr "{@code{cgit-configuration}-Parameter} Ganze-Zahl max-commit-count" #. type: deftypevr -#: guix-git/doc/guix.texi:32106 +#: guix-git/doc/guix.texi:32471 msgid "Number of entries to list per page in \"log\" view." msgstr "Anzahl der Einträge, die in der Log-Ansicht pro Seite angezeigt werden sollen." #. type: deftypevr -#: guix-git/doc/guix.texi:32111 +#: guix-git/doc/guix.texi:32476 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-message-length" msgstr "{@code{cgit-configuration}-Parameter} Ganze-Zahl max-message-length" #. type: deftypevr -#: guix-git/doc/guix.texi:32113 +#: guix-git/doc/guix.texi:32478 msgid "Number of commit message characters to display in \"log\" view." msgstr "Anzahl der Zeichen, die in der Log-Ansicht von jeder Commit-Nachricht angezeigt werden sollen." #. type: deftypevr -#: guix-git/doc/guix.texi:32115 guix-git/doc/guix.texi:32131 +#: guix-git/doc/guix.texi:32480 guix-git/doc/guix.texi:32496 msgid "Defaults to @samp{80}." msgstr "Die Vorgabe ist @samp{80}." #. type: deftypevr -#: guix-git/doc/guix.texi:32118 +#: guix-git/doc/guix.texi:32483 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-repo-count" msgstr "{@code{cgit-configuration}-Parameter} Ganze-Zahl max-repo-count" #. type: deftypevr -#: guix-git/doc/guix.texi:32121 +#: guix-git/doc/guix.texi:32486 msgid "Specifies the number of entries to list per page on the repository index page." msgstr "Gibt an, wie viele Einträge auf jeder Seite der Repository-Index-Seiten stehen." #. type: deftypevr -#: guix-git/doc/guix.texi:32126 +#: guix-git/doc/guix.texi:32491 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-repodesc-length" msgstr "{@code{cgit-configuration}-Parameter} Ganze-Zahl max-repodesc-length" #. type: deftypevr -#: guix-git/doc/guix.texi:32129 +#: guix-git/doc/guix.texi:32494 msgid "Specifies the maximum number of repo description characters to display on the repository index page." msgstr "Gibt die maximale Anzahl der Zeichen an, die von jeder Repository-Beschreibung auf den Repository-Index-Seiten angezeigt werden sollen." #. type: deftypevr -#: guix-git/doc/guix.texi:32134 +#: guix-git/doc/guix.texi:32499 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-blob-size" msgstr "{@code{cgit-configuration}-Parameter} Ganze-Zahl max-blob-size" #. type: deftypevr -#: guix-git/doc/guix.texi:32136 +#: guix-git/doc/guix.texi:32501 msgid "Specifies the maximum size of a blob to display HTML for in KBytes." msgstr "Gibt die maximale Größe eines Blobs in Kilobytes an, für den HTML angezeigt werden soll." #. type: deftypevr -#: guix-git/doc/guix.texi:32141 +#: guix-git/doc/guix.texi:32506 #, no-wrap msgid "{@code{cgit-configuration} parameter} string max-stats" msgstr "{@code{cgit-configuration}-Parameter} Zeichenkette max-stats" #. type: deftypevr -#: guix-git/doc/guix.texi:32144 +#: guix-git/doc/guix.texi:32509 msgid "Maximum statistics period. Valid values are @samp{week},@samp{month}, @samp{quarter} and @samp{year}." msgstr "Maximaler Zeitraum für Statistiken. Gültige Werte sind @samp{week} (Woche), @samp{month} (Monat), @samp{quarter} (Quartal) und @samp{year} (Jahr)." #. type: deftypevr -#: guix-git/doc/guix.texi:32149 +#: guix-git/doc/guix.texi:32514 #, no-wrap msgid "{@code{cgit-configuration} parameter} mimetype-alist mimetype" msgstr "{@code{cgit-configuration}-Parameter} Mimetype-Assoziative-Liste mimetype" #. type: deftypevr -#: guix-git/doc/guix.texi:32151 +#: guix-git/doc/guix.texi:32516 msgid "Mimetype for the specified filename extension." msgstr "Mimetype je für die angegebene Dateinamenserweiterung." #. type: deftypevr -#: guix-git/doc/guix.texi:32155 +#: guix-git/doc/guix.texi:32520 msgid "Defaults to @samp{((gif \"image/gif\") (html \"text/html\") (jpg \"image/jpeg\") (jpeg \"image/jpeg\") (pdf \"application/pdf\") (png \"image/png\") (svg \"image/svg+xml\"))}." msgstr "Die Vorgabe ist @samp{((gif \"image/gif\") (html \"text/html\") (jpg \"image/jpeg\") (jpeg \"image/jpeg\") (pdf \"application/pdf\") (png \"image/png\") (svg \"image/svg+xml\"))}." #. type: deftypevr -#: guix-git/doc/guix.texi:32158 +#: guix-git/doc/guix.texi:32523 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object mimetype-file" msgstr "{@code{cgit-configuration}-Parameter} Dateiobjekt mimetype-file" #. type: deftypevr -#: guix-git/doc/guix.texi:32160 +#: guix-git/doc/guix.texi:32525 msgid "Specifies the file to use for automatic mimetype lookup." msgstr "Gibt an, welche Datei zur automatischen Auflösung des Mimetypes benutzt werden soll." #. type: deftypevr -#: guix-git/doc/guix.texi:32165 +#: guix-git/doc/guix.texi:32530 #, no-wrap msgid "{@code{cgit-configuration} parameter} string module-link" msgstr "{@code{cgit-configuration}-Parameter} Zeichenkette module-link" #. type: deftypevr -#: guix-git/doc/guix.texi:32168 +#: guix-git/doc/guix.texi:32533 msgid "Text which will be used as the formatstring for a hyperlink when a submodule is printed in a directory listing." msgstr "Text, der als Formatzeichenkette für einen Hyperlink benutzt wird, wenn in einer Verzeichnisauflistung ein Submodul ausgegeben wird." #. type: deftypevr -#: guix-git/doc/guix.texi:32173 +#: guix-git/doc/guix.texi:32538 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean nocache?" msgstr "{@code{cgit-configuration}-Parameter} Boolescher-Ausdruck nocache?" #. type: deftypevr -#: guix-git/doc/guix.texi:32175 +#: guix-git/doc/guix.texi:32540 msgid "If set to the value @samp{#t} caching will be disabled." msgstr "Wenn dies auf @samp{#t} gesetzt ist, wird nicht zwischengespeichert." #. type: deftypevr -#: guix-git/doc/guix.texi:32180 +#: guix-git/doc/guix.texi:32545 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean noplainemail?" msgstr "{@code{cgit-configuration}-Parameter} Boolescher-Ausdruck noplainemail?" #. type: deftypevr -#: guix-git/doc/guix.texi:32183 +#: guix-git/doc/guix.texi:32548 msgid "If set to @samp{#t} showing full author email addresses will be disabled." msgstr "Wenn dies auf @samp{#t} gesetzt ist, werden keine vollen E-Mail-Adressen angezeigt." #. type: deftypevr -#: guix-git/doc/guix.texi:32188 +#: guix-git/doc/guix.texi:32553 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean noheader?" msgstr "{@code{cgit-configuration}-Parameter} Boolescher-Ausdruck noheader?" #. type: deftypevr -#: guix-git/doc/guix.texi:32191 +#: guix-git/doc/guix.texi:32556 msgid "Flag which, when set to @samp{#t}, will make cgit omit the standard header on all pages." msgstr "Wenn diese Option auf @samp{#t} gesetzt ist, wird Cgit die Standardseitenkopf auf allen Seiten weglassen." #. type: deftypevr -#: guix-git/doc/guix.texi:32196 +#: guix-git/doc/guix.texi:32561 #, no-wrap msgid "{@code{cgit-configuration} parameter} project-list project-list" msgstr "{@code{cgit-configuration}-Parameter} Projektliste project-list" #. type: deftypevr -#: guix-git/doc/guix.texi:32200 +#: guix-git/doc/guix.texi:32565 msgid "A list of subdirectories inside of @code{repository-directory}, relative to it, that should loaded as Git repositories. An empty list means that all subdirectories will be loaded." msgstr "Eine Liste der Unterverzeichnisse innerhalb des mit @code{repository-directory} festgelegten Verzeichnisses, relativ dazu angegeben, die als Git-Repositorys geladen werden sollen. Eine leere Liste bedeutet, dass alle Unterverzeichnisse geladen werden." #. type: deftypevr -#: guix-git/doc/guix.texi:32205 +#: guix-git/doc/guix.texi:32570 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object readme" msgstr "{@code{cgit-configuration}-Parameter} Dateiobjekt readme" #. type: deftypevr -#: guix-git/doc/guix.texi:32207 +#: guix-git/doc/guix.texi:32572 msgid "Text which will be used as default value for @code{cgit-repo-readme}." msgstr "Text, der als voreingestellter Wert für @code{cgit-repo-readme} benutzt wird." #. type: deftypevr -#: guix-git/doc/guix.texi:32212 +#: guix-git/doc/guix.texi:32577 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean remove-suffix?" msgstr "{@code{cgit-configuration}-Parameter} Boolescher-Ausdruck remove-suffix?" #. type: deftypevr -#: guix-git/doc/guix.texi:32216 +#: guix-git/doc/guix.texi:32581 msgid "If set to @code{#t} and @code{repository-directory} is enabled, if any repositories are found with a suffix of @code{.git}, this suffix will be removed for the URL and name." msgstr "Wenn es auf @code{#t} gesetzt ist und @code{repository-directory} aktiviert ist, wird, wenn Repositorys mit einem Suffix von @code{.git} gefunden werden, dieses Suffix von der URL und dem Namen weggelassen." #. type: deftypevr -#: guix-git/doc/guix.texi:32221 +#: guix-git/doc/guix.texi:32586 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer renamelimit" msgstr "{@code{cgit-configuration}-Parameter} Ganze-Zahl renamelimit" #. type: deftypevr -#: guix-git/doc/guix.texi:32223 +#: guix-git/doc/guix.texi:32588 msgid "Maximum number of files to consider when detecting renames." msgstr "Maximale Anzahl der Dateien, die bei der Erkennung von Umbenennungen berücksichtigt werden." #. type: deftypevr -#: guix-git/doc/guix.texi:32228 +#: guix-git/doc/guix.texi:32593 #, no-wrap msgid "{@code{cgit-configuration} parameter} string repository-sort" msgstr "{@code{cgit-configuration}-Parameter} Zeichenkette repository-sort" #. type: deftypevr -#: guix-git/doc/guix.texi:32230 +#: guix-git/doc/guix.texi:32595 msgid "The way in which repositories in each section are sorted." msgstr "Auf welche Art Repositorys in jedem Abschnitt sortiert werden." #. type: deftypevr -#: guix-git/doc/guix.texi:32235 +#: guix-git/doc/guix.texi:32600 #, no-wrap msgid "{@code{cgit-configuration} parameter} robots-list robots" msgstr "{@code{cgit-configuration}-Parameter} Robots-Liste robots" #. type: deftypevr -#: guix-git/doc/guix.texi:32237 +#: guix-git/doc/guix.texi:32602 msgid "Text used as content for the @code{robots} meta-tag." msgstr "Text, der als Inhalt des @code{robots}-Meta-Tags dienen soll." #. type: deftypevr -#: guix-git/doc/guix.texi:32239 +#: guix-git/doc/guix.texi:32604 msgid "Defaults to @samp{(\"noindex\" \"nofollow\")}." msgstr "Die Vorgabe ist @samp{(\"noindex\" \"nofollow\")}." #. type: deftypevr -#: guix-git/doc/guix.texi:32242 +#: guix-git/doc/guix.texi:32607 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-desc" msgstr "{@code{cgit-configuration}-Parameter} Zeichenkette root-desc" #. type: deftypevr -#: guix-git/doc/guix.texi:32244 +#: guix-git/doc/guix.texi:32609 msgid "Text printed below the heading on the repository index page." msgstr "Welcher Text unterhalb der Überschrift auf Repository-Index-Seiten ausgegeben wird." #. type: deftypevr -#: guix-git/doc/guix.texi:32246 +#: guix-git/doc/guix.texi:32611 msgid "Defaults to @samp{\"a fast webinterface for the git dscm\"}." msgstr "Die Vorgabe ist @samp{\"a fast webinterface for the git dscm\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:32249 +#: guix-git/doc/guix.texi:32614 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-readme" msgstr "{@code{cgit-configuration}-Parameter} Zeichenkette root-readme" #. type: deftypevr -#: guix-git/doc/guix.texi:32252 +#: guix-git/doc/guix.texi:32617 msgid "The content of the file specified with this option will be included verbatim below the ``about'' link on the repository index page." msgstr "Der Inhalt der mit dieser Option angegebenen Datei wird wortwörtlich unter dem „about“-Link auf der Repository-Index-Seite angezeigt." #. type: deftypevr -#: guix-git/doc/guix.texi:32257 +#: guix-git/doc/guix.texi:32622 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-title" msgstr "{@code{cgit-configuration}-Parameter} Zeichenkette root-title" #. type: deftypevr -#: guix-git/doc/guix.texi:32259 +#: guix-git/doc/guix.texi:32624 msgid "Text printed as heading on the repository index page." msgstr "Welcher Text als Überschrift auf Repository-Index-Seiten ausgegeben werden soll." #. type: deftypevr -#: guix-git/doc/guix.texi:32264 +#: guix-git/doc/guix.texi:32629 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean scan-hidden-path" msgstr "{@code{cgit-configuration}-Parameter} Boolescher-Ausdruck scan-hidden-path" #. type: deftypevr -#: guix-git/doc/guix.texi:32270 +#: guix-git/doc/guix.texi:32635 msgid "If set to @samp{#t} and repository-directory is enabled, repository-directory will recurse into directories whose name starts with a period. Otherwise, repository-directory will stay away from such directories, considered as ``hidden''. Note that this does not apply to the @file{.git} directory in non-bare repos." msgstr "Wenn es auf @samp{#t} gesetzt ist und repository-directory aktiviert ist, wird repository-directory in Verzeichnissen rekursiv schauen, deren Name mit einem Punkt beginnt. Ansonsten werden solche Verzeichnisse unter repository-directory als „versteckt“ betrachtet und ignoriert. Beachten Sie, dass dies keine Wirkung auf das @file{.git}-Verzeichnis in @emph{nicht} auf „bare“ gestellten Repositorys hat." #. type: deftypevr -#: guix-git/doc/guix.texi:32275 +#: guix-git/doc/guix.texi:32640 #, no-wrap msgid "{@code{cgit-configuration} parameter} list snapshots" msgstr "{@code{cgit-configuration}-Parameter} Liste snapshots" #. type: deftypevr -#: guix-git/doc/guix.texi:32278 +#: guix-git/doc/guix.texi:32643 msgid "Text which specifies the default set of snapshot formats that cgit generates links for." msgstr "Dieser Text gibt an, für welche Snapshot-Formate Cgit Links erzeugt." #. type: deftypevr -#: guix-git/doc/guix.texi:32283 +#: guix-git/doc/guix.texi:32648 #, no-wrap msgid "{@code{cgit-configuration} parameter} repository-directory repository-directory" msgstr "{@code{cgit-configuration}-Parameter} Repository-Verzeichnis repository-directory" #. type: deftypevr -#: guix-git/doc/guix.texi:32286 +#: guix-git/doc/guix.texi:32651 msgid "Name of the directory to scan for repositories (represents @code{scan-path})." msgstr "Der Name des Verzeichnisses, in dem nach Repositorys gesucht wird (wird als @code{scan-path} in die Einstellungen übernommen)." #. type: deftypevr -#: guix-git/doc/guix.texi:32288 +#: guix-git/doc/guix.texi:32653 msgid "Defaults to @samp{\"/srv/git\"}." msgstr "Die Vorgabe ist @samp{\"/srv/git\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:32291 +#: guix-git/doc/guix.texi:32656 #, no-wrap msgid "{@code{cgit-configuration} parameter} string section" msgstr "{@code{cgit-configuration}-Parameter} Zeichenkette section" #. type: deftypevr -#: guix-git/doc/guix.texi:32294 guix-git/doc/guix.texi:32610 +#: guix-git/doc/guix.texi:32659 guix-git/doc/guix.texi:32975 msgid "The name of the current repository section - all repositories defined after this option will inherit the current section name." msgstr "Der Name des aktuellen Abschnitts („section“) für Repositorys@tie{}— alle später definierten Repositorys werden den aktuellen Abschnittsnamen erben." #. type: deftypevr -#: guix-git/doc/guix.texi:32299 +#: guix-git/doc/guix.texi:32664 #, no-wrap msgid "{@code{cgit-configuration} parameter} string section-sort" msgstr "{@code{cgit-configuration}-Parameter} Zeichenkette section-sort" #. type: deftypevr -#: guix-git/doc/guix.texi:32302 +#: guix-git/doc/guix.texi:32667 msgid "Flag which, when set to @samp{1}, will sort the sections on the repository listing by name." msgstr "Wenn diese Option auf @samp{#t} gesetzt wird, werden die Abschnitte in Repository-Auflistungen nach Namen sortiert." #. type: deftypevr -#: guix-git/doc/guix.texi:32307 +#: guix-git/doc/guix.texi:32672 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer section-from-path" msgstr "{@code{cgit-configuration}-Parameter} Ganze-Zahl section-from-path" #. type: deftypevr -#: guix-git/doc/guix.texi:32310 +#: guix-git/doc/guix.texi:32675 msgid "A number which, if defined prior to repository-directory, specifies how many path elements from each repo path to use as a default section name." msgstr "Wenn diese Zahl vor „repository-directory“ definiert wurde, gibt sie an, wie viele Pfadelemente jedes Repository-Pfads für den Abschnittsnamen voreingestellt verwendet werden." #. type: deftypevr -#: guix-git/doc/guix.texi:32315 +#: guix-git/doc/guix.texi:32680 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean side-by-side-diffs?" msgstr "{@code{cgit-configuration}-Parameter} Boolescher-Ausdruck side-by-side-diffs?" #. type: deftypevr -#: guix-git/doc/guix.texi:32318 +#: guix-git/doc/guix.texi:32683 msgid "If set to @samp{#t} shows side-by-side diffs instead of unidiffs per default." msgstr "Wenn es auf @samp{#t} gesetzt ist, werden Diffs nach Voreinstellung in Nebeneinanderdarstellung („side by side“) statt als zusammengeführte „Unidiffs“ angezeigt." #. type: deftypevr -#: guix-git/doc/guix.texi:32323 +#: guix-git/doc/guix.texi:32688 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object source-filter" msgstr "{@code{cgit-configuration}-Parameter} Dateiobjekt source-filter" #. type: deftypevr -#: guix-git/doc/guix.texi:32326 +#: guix-git/doc/guix.texi:32691 msgid "Specifies a command which will be invoked to format plaintext blobs in the tree view." msgstr "Gibt einen Befehl an, der aufgerufen wird, um Klartext-Blobs in der Baumansicht („tree“) zu formatieren." #. type: deftypevr -#: guix-git/doc/guix.texi:32331 +#: guix-git/doc/guix.texi:32696 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-branches" msgstr "{@code{cgit-configuration}-Parameter} Ganze-Zahl summary-branches" #. type: deftypevr -#: guix-git/doc/guix.texi:32334 +#: guix-git/doc/guix.texi:32699 msgid "Specifies the number of branches to display in the repository ``summary'' view." msgstr "Gibt die Anzahl der Branches an, die in der „summary“-Ansicht eines Repositorys zu sehen sein sollen." #. type: deftypevr -#: guix-git/doc/guix.texi:32339 +#: guix-git/doc/guix.texi:32704 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-log" msgstr "{@code{cgit-configuration}-Parameter} Ganze-Zahl summary-log" #. type: deftypevr -#: guix-git/doc/guix.texi:32342 +#: guix-git/doc/guix.texi:32707 msgid "Specifies the number of log entries to display in the repository ``summary'' view." msgstr "Gibt die Anzahl der Log-Einträge an, die in der „summary“-Ansicht eines Repositorys zu sehen sein sollen." #. type: deftypevr -#: guix-git/doc/guix.texi:32347 +#: guix-git/doc/guix.texi:32712 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-tags" msgstr "{@code{cgit-configuration}-Parameter} Ganze-Zahl summary-tags" #. type: deftypevr -#: guix-git/doc/guix.texi:32350 +#: guix-git/doc/guix.texi:32715 msgid "Specifies the number of tags to display in the repository ``summary'' view." msgstr "Gibt die Anzahl in der „summary“-Ansicht eines Repositorys anzuzeigender Tags an." #. type: deftypevr -#: guix-git/doc/guix.texi:32355 +#: guix-git/doc/guix.texi:32720 #, no-wrap msgid "{@code{cgit-configuration} parameter} string strict-export" msgstr "{@code{cgit-configuration}-Parameter} Zeichenkette strict-export" #. type: deftypevr -#: guix-git/doc/guix.texi:32358 +#: guix-git/doc/guix.texi:32723 msgid "Filename which, if specified, needs to be present within the repository for cgit to allow access to that repository." msgstr "Wenn dieser Dateiname angegeben wird, muss eine Datei diesen Namens in einem Repository enthalten sein, damit es angezeigt wird." #. type: deftypevr -#: guix-git/doc/guix.texi:32363 +#: guix-git/doc/guix.texi:32728 #, no-wrap msgid "{@code{cgit-configuration} parameter} string virtual-root" msgstr "{@code{cgit-configuration}-Parameter} Zeichenkette virtual-root" #. type: deftypevr -#: guix-git/doc/guix.texi:32365 +#: guix-git/doc/guix.texi:32730 msgid "URL which, if specified, will be used as root for all cgit links." msgstr "Wird diese URL angegeben, wird sie als Wurzel für alle Cgit-Links verwendet." #. type: deftypevr -#: guix-git/doc/guix.texi:32367 +#: guix-git/doc/guix.texi:32732 msgid "Defaults to @samp{\"/\"}." msgstr "Die Vorgabe ist @samp{\"/\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:32370 +#: guix-git/doc/guix.texi:32735 #, no-wrap msgid "{@code{cgit-configuration} parameter} repository-cgit-configuration-list repositories" msgstr "{@code{cgit-configuration}-Parameter} „repository-cgit-configuration“-Liste repositories" #. type: deftypevr -#: guix-git/doc/guix.texi:32372 +#: guix-git/doc/guix.texi:32737 msgid "A list of @dfn{cgit-repo} records to use with config." msgstr "Eine Liste von @dfn{cgit-repo}-Verbundsobjekten, die innerhalb der Konfiguration benutzt werden sollen." #. type: deftypevr -#: guix-git/doc/guix.texi:32376 +#: guix-git/doc/guix.texi:32741 msgid "Available @code{repository-cgit-configuration} fields are:" msgstr "Verfügbare @code{repository-cgit-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:32377 +#: guix-git/doc/guix.texi:32742 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list snapshots" msgstr "{@code{repository-cgit-configuration}-Parameter} Repo-Liste snapshots" #. type: deftypevr -#: guix-git/doc/guix.texi:32380 +#: guix-git/doc/guix.texi:32745 msgid "A mask of snapshot formats for this repo that cgit generates links for, restricted by the global @code{snapshots} setting." msgstr "Eine Maske, die für dieses Repository auf die Snapshots gelegt wird, für die Cgit Links erzeugt. Dadurch kann die globale Einstellung @code{snapshots} eingeschränkt werden." #. type: deftypevr -#: guix-git/doc/guix.texi:32385 +#: guix-git/doc/guix.texi:32750 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object source-filter" msgstr "{@code{repository-cgit-configuration}-Parameter} Repo-Dateiobjekt source-filter" #. type: deftypevr -#: guix-git/doc/guix.texi:32387 +#: guix-git/doc/guix.texi:32752 msgid "Override the default @code{source-filter}." msgstr "Die Voreinstellung für @code{source-filter} ersetzen." #. type: deftypevr -#: guix-git/doc/guix.texi:32392 +#: guix-git/doc/guix.texi:32757 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string url" msgstr "{@code{repository-cgit-configuration}-Parameter} Repo-Zeichenkette url" #. type: deftypevr -#: guix-git/doc/guix.texi:32394 +#: guix-git/doc/guix.texi:32759 msgid "The relative URL used to access the repository." msgstr "Die relative URL, mit der auf das Repository zugegriffen wird." #. type: deftypevr -#: guix-git/doc/guix.texi:32399 +#: guix-git/doc/guix.texi:32764 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object about-filter" msgstr "{@code{repository-cgit-configuration}-Parameter} Repo-Dateiobjekt about-filter" #. type: deftypevr -#: guix-git/doc/guix.texi:32401 +#: guix-git/doc/guix.texi:32766 msgid "Override the default @code{about-filter}." msgstr "Die Voreinstellung für @code{about-filter} ersetzen." #. type: deftypevr -#: guix-git/doc/guix.texi:32406 +#: guix-git/doc/guix.texi:32771 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string branch-sort" msgstr "{@code{repository-cgit-configuration}-Parameter} Repo-Zeichenkette branch-sort" #. type: deftypevr -#: guix-git/doc/guix.texi:32409 +#: guix-git/doc/guix.texi:32774 msgid "Flag which, when set to @samp{age}, enables date ordering in the branch ref list, and when set to @samp{name} enables ordering by branch name." msgstr "Wenn diese Option auf @samp{age} gesetzt wurde, wird die Liste der Branch-Referenzen nach Datum sortiert, und wenn sie auf @samp{name} gesetzt wurde, wird nach dem Branch-Namen sortiert." #. type: deftypevr -#: guix-git/doc/guix.texi:32414 +#: guix-git/doc/guix.texi:32779 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list clone-url" msgstr "{@code{repository-cgit-configuration}-Parameter} Repo-Liste clone-url" #. type: deftypevr -#: guix-git/doc/guix.texi:32416 +#: guix-git/doc/guix.texi:32781 msgid "A list of URLs which can be used to clone repo." msgstr "Eine Liste von URLs, von denen das Repository geklont werden kann." #. type: deftypevr -#: guix-git/doc/guix.texi:32421 +#: guix-git/doc/guix.texi:32786 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object commit-filter" msgstr "{@code{repository-cgit-configuration}-Parameter} Repo-Dateiobjekt commit-filter" #. type: deftypevr -#: guix-git/doc/guix.texi:32423 +#: guix-git/doc/guix.texi:32788 msgid "Override the default @code{commit-filter}." msgstr "Die Voreinstellung für @code{commit-filter} ersetzen." #. type: deftypevr -#: guix-git/doc/guix.texi:32428 +#: guix-git/doc/guix.texi:32793 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string commit-sort" msgstr "{@code{repository-cgit-configuration}-Parameter} Repo-Dateiobjekt commit-sort" #. type: deftypevr -#: guix-git/doc/guix.texi:32437 +#: guix-git/doc/guix.texi:32802 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string defbranch" msgstr "{@code{repository-cgit-configuration}-Parameter} Repo-Zeichenkette defbranch" #. type: deftypevr -#: guix-git/doc/guix.texi:32442 +#: guix-git/doc/guix.texi:32807 msgid "The name of the default branch for this repository. If no such branch exists in the repository, the first branch name (when sorted) is used as default instead. By default branch pointed to by HEAD, or ``master'' if there is no suitable HEAD." msgstr "Der Name des voreingestellten Branches dieses Repositorys. Wenn kein solcher Branch im Repository existiert, wird der erste Branchname in sortierter Reihenfolge voreingestellt. Nach Vorgabe wird der Branch voreingestellt, auf den HEAD zeigt, oder „master“, wenn es keinen passenden HEAD gibt." #. type: deftypevr -#: guix-git/doc/guix.texi:32447 +#: guix-git/doc/guix.texi:32812 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string desc" msgstr "{@code{repository-cgit-configuration}-Parameter} Repo-Zeichenkette desc" #. type: deftypevr -#: guix-git/doc/guix.texi:32449 +#: guix-git/doc/guix.texi:32814 msgid "The value to show as repository description." msgstr "Der Wert, der als Repository-Beschreibung angezeigt werden soll." #. type: deftypevr -#: guix-git/doc/guix.texi:32454 +#: guix-git/doc/guix.texi:32819 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string homepage" msgstr "{@code{repository-cgit-configuration}-Parameter} Repo-Zeichenkette homepage" #. type: deftypevr -#: guix-git/doc/guix.texi:32456 +#: guix-git/doc/guix.texi:32821 msgid "The value to show as repository homepage." msgstr "Der Wert, der als Repository-Homepage angezeigt werden soll." #. type: deftypevr -#: guix-git/doc/guix.texi:32461 +#: guix-git/doc/guix.texi:32826 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object email-filter" msgstr "{@code{repository-cgit-configuration}-Parameter} Repo-Dateiobjekt email-filter" #. type: deftypevr -#: guix-git/doc/guix.texi:32463 +#: guix-git/doc/guix.texi:32828 msgid "Override the default @code{email-filter}." msgstr "Die Voreinstellung für @code{email-filter} ersetzen." #. type: deftypevr -#: guix-git/doc/guix.texi:32468 +#: guix-git/doc/guix.texi:32833 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-commit-graph?" msgstr "{@code{repository-cgit-configuration}-Parameter} Vielleicht-Repo-Boolescher-Ausdruck enable-commit-graph?" #. type: deftypevr -#: guix-git/doc/guix.texi:32471 +#: guix-git/doc/guix.texi:32836 msgid "A flag which can be used to disable the global setting @code{enable-commit-graph?}." msgstr "Eine Option, mit der die globale Einstellung für @code{enable-commit-graph?} deaktiviert werden kann." #. type: deftypevr -#: guix-git/doc/guix.texi:32476 +#: guix-git/doc/guix.texi:32841 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-log-filecount?" msgstr "{@code{repository-cgit-configuration}-Parameter} Vielleicht-Repo-Boolescher-Ausdruck enable-log-filecount?" #. type: deftypevr -#: guix-git/doc/guix.texi:32479 +#: guix-git/doc/guix.texi:32844 msgid "A flag which can be used to disable the global setting @code{enable-log-filecount?}." msgstr "Eine Option, mit der die globale Einstellung für @code{enable-log-filecount?} deaktiviert werden kann." #. type: deftypevr -#: guix-git/doc/guix.texi:32484 +#: guix-git/doc/guix.texi:32849 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-log-linecount?" msgstr "{@code{repository-cgit-configuration}-Parameter} Vielleicht-Repo-Boolescher-Ausdruck enable-log-linecount?" #. type: deftypevr -#: guix-git/doc/guix.texi:32487 +#: guix-git/doc/guix.texi:32852 msgid "A flag which can be used to disable the global setting @code{enable-log-linecount?}." msgstr "Eine Option, mit der die globale Einstellung für @code{enable-log-linecount?} deaktiviert werden kann." #. type: deftypevr -#: guix-git/doc/guix.texi:32492 +#: guix-git/doc/guix.texi:32857 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-remote-branches?" msgstr "{@code{repository-cgit-configuration}-Parameter} Vielleicht-Repo-Boolescher-Ausdruck enable-remote-branches?" #. type: deftypevr -#: guix-git/doc/guix.texi:32500 +#: guix-git/doc/guix.texi:32865 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-subject-links?" msgstr "{@code{repository-cgit-configuration}-Parameter} Vielleicht-Repo-Boolescher-Ausdruck enable-subject-links?" #. type: deftypevr -#: guix-git/doc/guix.texi:32503 +#: guix-git/doc/guix.texi:32868 msgid "A flag which can be used to override the global setting @code{enable-subject-links?}." msgstr "Eine Option, mit der die globale Einstellung für @code{enable-subject-links?} deaktiviert werden kann." #. type: deftypevr -#: guix-git/doc/guix.texi:32508 +#: guix-git/doc/guix.texi:32873 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-html-serving?" msgstr "{@code{repository-cgit-configuration}-Parameter} Vielleicht-Repo-Boolescher-Ausdruck enable-html-serving?" #. type: deftypevr -#: guix-git/doc/guix.texi:32511 +#: guix-git/doc/guix.texi:32876 msgid "A flag which can be used to override the global setting @code{enable-html-serving?}." msgstr "Eine Option, mit der die globale Einstellung für @code{enable-html-serving?} deaktiviert werden kann." #. type: deftypevr -#: guix-git/doc/guix.texi:32516 +#: guix-git/doc/guix.texi:32881 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-boolean hide?" msgstr "{@code{repository-cgit-configuration}-Parameter} Repo-Boolescher-Ausdruck hide?" #. type: deftypevr -#: guix-git/doc/guix.texi:32519 +#: guix-git/doc/guix.texi:32884 msgid "Flag which, when set to @code{#t}, hides the repository from the repository index." msgstr "Wenn diese Option auf @code{#t} gesetzt ist, wird das Repository im Repository-Index verborgen." #. type: deftypevr -#: guix-git/doc/guix.texi:32524 +#: guix-git/doc/guix.texi:32889 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-boolean ignore?" msgstr "{@code{repository-cgit-configuration}-Parameter} Repo-Boolescher-Ausdruck ignore?" #. type: deftypevr -#: guix-git/doc/guix.texi:32526 +#: guix-git/doc/guix.texi:32891 msgid "Flag which, when set to @samp{#t}, ignores the repository." msgstr "Wenn diese Option auf @code{#t} gesetzt ist, wird das Repository ignoriert." #. type: deftypevr -#: guix-git/doc/guix.texi:32531 +#: guix-git/doc/guix.texi:32896 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object logo" msgstr "{@code{repository-cgit-configuration}-Parameter} Repo-Dateiobjekt logo" #. type: deftypevr -#: guix-git/doc/guix.texi:32534 +#: guix-git/doc/guix.texi:32899 msgid "URL which specifies the source of an image which will be used as a logo on this repo’s pages." msgstr "URL, unter der ein Bild zu finden ist, das auf allen Seiten dieses Repositorys als Logo zu sehen sein wird." #. type: deftypevr -#: guix-git/doc/guix.texi:32539 +#: guix-git/doc/guix.texi:32904 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string logo-link" msgstr "{@code{repository-cgit-configuration}-Parameter} Repo-Zeichenkette logo-link" #. type: deftypevr -#: guix-git/doc/guix.texi:32546 +#: guix-git/doc/guix.texi:32911 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object owner-filter" msgstr "{@code{repository-cgit-configuration}-Parameter} Repo-Dateiobjekt owner-filter" #. type: deftypevr -#: guix-git/doc/guix.texi:32548 +#: guix-git/doc/guix.texi:32913 msgid "Override the default @code{owner-filter}." msgstr "Die Voreinstellung für @code{owner-filter} ersetzen." #. type: deftypevr -#: guix-git/doc/guix.texi:32553 +#: guix-git/doc/guix.texi:32918 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string module-link" msgstr "{@code{repository-cgit-configuration}-Parameter} Repo-Zeichenkette module-link" #. type: deftypevr -#: guix-git/doc/guix.texi:32557 +#: guix-git/doc/guix.texi:32922 msgid "Text which will be used as the formatstring for a hyperlink when a submodule is printed in a directory listing. The arguments for the formatstring are the path and SHA1 of the submodule commit." msgstr "Text, der als Formatzeichenkette für einen Hyperlink benutzt wird, wenn in einer Verzeichnisauflistung ein Submodul ausgegeben wird. Die Argumente für diese Formatzeichenkette sind Pfad und SHA1 des Submodul-Commits." #. type: deftypevr -#: guix-git/doc/guix.texi:32562 +#: guix-git/doc/guix.texi:32927 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} module-link-path module-link-path" msgstr "{@code{repository-cgit-configuration}-Parameter} module-link-Pfad module-link-path" #. type: deftypevr -#: guix-git/doc/guix.texi:32566 +#: guix-git/doc/guix.texi:32931 msgid "Text which will be used as the formatstring for a hyperlink when a submodule with the specified subdirectory path is printed in a directory listing." msgstr "Text, der als Formatzeichenkette für einen Hyperlink benutzt wird, wenn in einer Verzeichnisauflistung ein Submodul mit dem angegebenen Unterverzeichnispfad ausgegeben wird." #. type: deftypevr -#: guix-git/doc/guix.texi:32571 +#: guix-git/doc/guix.texi:32936 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string max-stats" msgstr "{@code{repository-cgit-configuration}-Parameter} Repo-Zeichenkette max-stats" #. type: deftypevr -#: guix-git/doc/guix.texi:32573 +#: guix-git/doc/guix.texi:32938 msgid "Override the default maximum statistics period." msgstr "Die Voreinstellung für den maximalen Zeitraum für Statistiken ersetzen." #. type: deftypevr -#: guix-git/doc/guix.texi:32578 +#: guix-git/doc/guix.texi:32943 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string name" msgstr "{@code{repository-cgit-configuration}-Parameter} Repo-Zeichenkette name" #. type: deftypevr -#: guix-git/doc/guix.texi:32580 +#: guix-git/doc/guix.texi:32945 msgid "The value to show as repository name." msgstr "Welcher Wert als Repository-Name angezeigt werden soll." #. type: deftypevr -#: guix-git/doc/guix.texi:32585 +#: guix-git/doc/guix.texi:32950 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string owner" msgstr "{@code{repository-cgit-configuration}-Parameter} Repo-Zeichenkette owner" #. type: deftypevr -#: guix-git/doc/guix.texi:32587 +#: guix-git/doc/guix.texi:32952 msgid "A value used to identify the owner of the repository." msgstr "Ein Wert, um den Besitzer des Repositorys zu identifizieren." #. type: deftypevr -#: guix-git/doc/guix.texi:32592 +#: guix-git/doc/guix.texi:32957 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string path" msgstr "{@code{repository-cgit-configuration}-Parameter} Repo-Zeichenkette path" #. type: deftypevr -#: guix-git/doc/guix.texi:32594 +#: guix-git/doc/guix.texi:32959 msgid "An absolute path to the repository directory." msgstr "Ein absoluter Pfad zum Repository-Verzeichnis." #. type: deftypevr -#: guix-git/doc/guix.texi:32599 +#: guix-git/doc/guix.texi:32964 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string readme" msgstr "{@code{repository-cgit-configuration}-Parameter} Repo-Zeichenkette readme" #. type: deftypevr -#: guix-git/doc/guix.texi:32602 +#: guix-git/doc/guix.texi:32967 msgid "A path (relative to repo) which specifies a file to include verbatim as the ``About'' page for this repo." msgstr "Ein Pfad (relativ zum Repository), der eine Datei angibt, deren Inhalt wortwörtlich auf der „About“-Seite dieses Repositorys eingefügt werden soll." #. type: deftypevr -#: guix-git/doc/guix.texi:32607 +#: guix-git/doc/guix.texi:32972 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string section" msgstr "{@code{repository-cgit-configuration}-Parameter} Repo-Zeichenkette section" #. type: deftypevr -#: guix-git/doc/guix.texi:32615 +#: guix-git/doc/guix.texi:32980 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list extra-options" msgstr "{@code{repository-cgit-configuration}-Parameter} Repo-Liste extra-options" #. type: deftypevr -#: guix-git/doc/guix.texi:32617 guix-git/doc/guix.texi:32626 +#: guix-git/doc/guix.texi:32982 guix-git/doc/guix.texi:32991 msgid "Extra options will be appended to cgitrc file." msgstr "Zusätzliche Optionen werden an die cgitrc-Datei angehängt." #. type: deftypevr -#: guix-git/doc/guix.texi:32624 +#: guix-git/doc/guix.texi:32989 #, no-wrap msgid "{@code{cgit-configuration} parameter} list extra-options" msgstr "{@code{cgit-configuration}-Parameter} Liste extra-options" #. type: Plain text -#: guix-git/doc/guix.texi:32638 +#: guix-git/doc/guix.texi:33003 msgid "However, it could be that you just want to get a @code{cgitrc} up and running. In that case, you can pass an @code{opaque-cgit-configuration} as a record to @code{cgit-service-type}. As its name indicates, an opaque configuration does not have easy reflective capabilities." msgstr "Aber es könnte auch sein, dass Sie schon eine @code{cgitrc} haben und zum Laufen bringen wollen. In diesem Fall können Sie eine @code{opaque-cgit-configuration} als Verbundsobjekt an @code{cgit-service-type} übergeben. Wie der Name schon sagt, bietet eine opake Konfiguration keinerlei Unterstützung für Reflexion." #. type: Plain text -#: guix-git/doc/guix.texi:32640 +#: guix-git/doc/guix.texi:33005 msgid "Available @code{opaque-cgit-configuration} fields are:" msgstr "Verfügbare @code{opaque-cgit-configuration}-Felder sind:" #. type: deftypevr -#: guix-git/doc/guix.texi:32641 +#: guix-git/doc/guix.texi:33006 #, no-wrap msgid "{@code{opaque-cgit-configuration} parameter} package cgit" msgstr "{@code{opaque-cgit-configuration}-Parameter} „package“ cgit" #. type: deftypevr -#: guix-git/doc/guix.texi:32643 +#: guix-git/doc/guix.texi:33008 msgid "The cgit package." msgstr "Das cgit-Paket." #. type: deftypevr -#: guix-git/doc/guix.texi:32645 +#: guix-git/doc/guix.texi:33010 #, no-wrap msgid "{@code{opaque-cgit-configuration} parameter} string string" msgstr "{@code{opaque-cgit-configuration}-Parameter} Zeichenkette string" #. type: deftypevr -#: guix-git/doc/guix.texi:32647 +#: guix-git/doc/guix.texi:33012 msgid "The contents of the @code{cgitrc}, as a string." msgstr "Der Inhalt für @code{cgitrc} als eine Zeichenkette." #. type: Plain text -#: guix-git/doc/guix.texi:32651 +#: guix-git/doc/guix.texi:33016 msgid "For example, if your @code{cgitrc} is just the empty string, you could instantiate a cgit service like this:" msgstr "Wenn zum Beispiel Ihre @code{cgitrc} nur aus der leeren Zeichenkette bestehen soll, könnten Sie einen Cgit-Dienst auf diese Weise instanziieren:" #. type: lisp -#: guix-git/doc/guix.texi:32656 +#: guix-git/doc/guix.texi:33021 #, no-wrap msgid "" "(service cgit-service-type\n" @@ -60689,40 +61427,40 @@ msgstr "" " (cgitrc \"\")))\n" #. type: subsubheading -#: guix-git/doc/guix.texi:32658 +#: guix-git/doc/guix.texi:33023 #, no-wrap msgid "Gitolite Service" msgstr "Gitolite-Dienst" #. type: cindex -#: guix-git/doc/guix.texi:32660 +#: guix-git/doc/guix.texi:33025 #, no-wrap msgid "Gitolite service" msgstr "Gitolite-Dienst" #. type: cindex -#: guix-git/doc/guix.texi:32661 +#: guix-git/doc/guix.texi:33026 #, no-wrap msgid "Git, hosting" msgstr "Git, Server anbieten („hosten“)" #. type: Plain text -#: guix-git/doc/guix.texi:32664 +#: guix-git/doc/guix.texi:33029 msgid "@uref{https://gitolite.com/gitolite/, Gitolite} is a tool for hosting Git repositories on a central server." msgstr "@uref{https://gitolite.com/gitolite/, Gitolite} ist ein Werkzeug, um Git-Repositorys anderen auf einem zentralen Server anzubieten." #. type: Plain text -#: guix-git/doc/guix.texi:32667 +#: guix-git/doc/guix.texi:33032 msgid "Gitolite can handle multiple repositories and users, and supports flexible configuration of the permissions for the users on the repositories." msgstr "Gitolite kann mehrere Nutzer mit mehreren Repositorys bedienen und unterstützt flexible Konfigurationsmöglichkeiten der Berechtigungen der Repository-Nutzer." #. type: Plain text -#: guix-git/doc/guix.texi:32670 +#: guix-git/doc/guix.texi:33035 msgid "The following example will configure Gitolite using the default @code{git} user, and the provided SSH public key." msgstr "Das folgende Beispiel richtet Gitolite für den voreingestellten @code{git}-Benutzer und den angegebenen öffentlichen SSH-Schlüssel ein." #. type: lisp -#: guix-git/doc/guix.texi:32677 +#: guix-git/doc/guix.texi:33042 #, no-wrap msgid "" "(service gitolite-service-type\n" @@ -60738,220 +61476,220 @@ msgstr "" " \"ssh-rsa AAAA…@: guix@@example.com\"))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:32682 +#: guix-git/doc/guix.texi:33047 msgid "Gitolite is configured through a special admin repository which you can clone, for example, if you setup Gitolite on @code{example.com}, you would run the following command to clone the admin repository." msgstr "Sie konfigurieren Gitolite, indem Sie ein besonderes Admin-Repository anpassen. Sie können es zum Beispiel klonen, indem Sie, wenn Sie Gitolite auf @code{example.com} eingerichtet haben, den folgenden Befehl zum Klonen des Admin-Repositorys ausführen:" #. type: example -#: guix-git/doc/guix.texi:32685 +#: guix-git/doc/guix.texi:33050 #, no-wrap msgid "git clone git@@example.com:gitolite-admin\n" msgstr "git clone git@@example.com:gitolite-admin\n" #. type: Plain text -#: guix-git/doc/guix.texi:32691 +#: guix-git/doc/guix.texi:33056 msgid "When the Gitolite service is activated, the provided @code{admin-pubkey} will be inserted in to the @file{keydir} directory in the gitolite-admin repository. If this results in a change in the repository, it will be committed using the message ``gitolite setup by GNU Guix''." msgstr "Wenn der Gitolite-Dienst aktiviert wird, wird der mitgegebene @code{admin-pubkey} ins @file{keydir}-Verzeichnis vom „gitolite-admin“-Repository eingefügt. Wenn sich dadurch das Repository ändert, wird die Änderung mit der Commit-Nachricht „gitolite setup by GNU Guix“ commitet." #. type: deftp -#: guix-git/doc/guix.texi:32692 +#: guix-git/doc/guix.texi:33057 #, no-wrap msgid "{Data Type} gitolite-configuration" msgstr "{Datentyp} gitolite-configuration" #. type: deftp -#: guix-git/doc/guix.texi:32694 +#: guix-git/doc/guix.texi:33059 msgid "Data type representing the configuration for @code{gitolite-service-type}." msgstr "Repräsentiert die Konfiguration vom @code{gitolite-service-type}." #. type: item -#: guix-git/doc/guix.texi:32696 +#: guix-git/doc/guix.texi:33061 #, no-wrap msgid "@code{package} (default: @var{gitolite})" msgstr "@code{package} (Vorgabe: @var{gitolite})" #. type: table -#: guix-git/doc/guix.texi:32698 +#: guix-git/doc/guix.texi:33063 msgid "Gitolite package to use." msgstr "Welches Gitolite-Paket benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:32699 +#: guix-git/doc/guix.texi:33064 #, no-wrap msgid "@code{user} (default: @var{git})" msgstr "@code{user} (Vorgabe: @var{git})" #. type: table -#: guix-git/doc/guix.texi:32702 +#: guix-git/doc/guix.texi:33067 msgid "User to use for Gitolite. This will be user that you use when accessing Gitolite over SSH." msgstr "Welches Benutzerkonto für Gitolite benutzt werden soll. Mit diesem Benutzer werden Sie über SSH auf Gitolite zugreifen." #. type: item -#: guix-git/doc/guix.texi:32703 +#: guix-git/doc/guix.texi:33068 #, no-wrap msgid "@code{group} (default: @var{git})" msgstr "@code{group} (Vorgabe: @var{git})" #. type: table -#: guix-git/doc/guix.texi:32705 +#: guix-git/doc/guix.texi:33070 msgid "Group to use for Gitolite." msgstr "Gruppe für Gitolite." #. type: item -#: guix-git/doc/guix.texi:32706 +#: guix-git/doc/guix.texi:33071 #, no-wrap msgid "@code{home-directory} (default: @var{\"/var/lib/gitolite\"})" msgstr "@code{home-directory} (Vorgabe: @var{\"/var/lib/gitolite\"})" #. type: table -#: guix-git/doc/guix.texi:32708 +#: guix-git/doc/guix.texi:33073 msgid "Directory in which to store the Gitolite configuration and repositories." msgstr "Das Verzeichnis, in dem die Gitolite-Konfiguration und Repositorys gespeichert werden sollen." #. type: item -#: guix-git/doc/guix.texi:32709 +#: guix-git/doc/guix.texi:33074 #, no-wrap msgid "@code{rc-file} (default: @var{(gitolite-rc-file)})" msgstr "@code{rc-file} (Vorgabe: @var{(gitolite-rc-file)})" #. type: table -#: guix-git/doc/guix.texi:32712 +#: guix-git/doc/guix.texi:33077 msgid "A ``file-like'' object (@pxref{G-Expressions, file-like objects}), representing the configuration for Gitolite." msgstr "Ein dateiartiges Objekt (siehe @ref{G-Expressions, dateiartige Objekte}), das die Konfiguration für Gitolite repräsentiert." #. type: item -#: guix-git/doc/guix.texi:32713 +#: guix-git/doc/guix.texi:33078 #, no-wrap msgid "@code{admin-pubkey} (default: @var{#f})" msgstr "@code{admin-pubkey} (Vorgabe: @var{#f})" #. type: table -#: guix-git/doc/guix.texi:32717 +#: guix-git/doc/guix.texi:33082 msgid "A ``file-like'' object (@pxref{G-Expressions, file-like objects}) used to setup Gitolite. This will be inserted in to the @file{keydir} directory within the gitolite-admin repository." msgstr "Ein dateiartiges Objekt (siehe @ref{G-Expressions, dateiartige Objekte}), mit dem Gitolite eingerichtet werden kann. Er wird in das @file{keydir}-Verzeichnis im „gitolite-admin“-Repository eingefügt." #. type: table -#: guix-git/doc/guix.texi:32719 +#: guix-git/doc/guix.texi:33084 msgid "To specify the SSH key as a string, use the @code{plain-file} function." msgstr "Um einen SSH-Schlüssel als Zeichenkette anzugeben, benutzen Sie die @code{plain-file}-Funktion." #. type: lisp -#: guix-git/doc/guix.texi:32722 +#: guix-git/doc/guix.texi:33087 #, no-wrap msgid "(plain-file \"yourname.pub\" \"ssh-rsa AAAA... guix@@example.com\")\n" msgstr "(plain-file \"ihrname.pub\" \"ssh-rsa AAAA…@: guix@@example.com\")\n" #. type: deftp -#: guix-git/doc/guix.texi:32727 +#: guix-git/doc/guix.texi:33092 #, no-wrap msgid "{Data Type} gitolite-rc-file" msgstr "{Datentyp} gitolite-rc-file" #. type: deftp -#: guix-git/doc/guix.texi:32729 +#: guix-git/doc/guix.texi:33094 msgid "Data type representing the Gitolite RC file." msgstr "Repräsentiert die Gitolie-RC-Datei." #. type: item -#: guix-git/doc/guix.texi:32731 +#: guix-git/doc/guix.texi:33096 #, no-wrap msgid "@code{umask} (default: @code{#o0077})" msgstr "@code{umask} (Vorgabe: @code{#o0077})" #. type: table -#: guix-git/doc/guix.texi:32734 +#: guix-git/doc/guix.texi:33099 msgid "This controls the permissions Gitolite sets on the repositories and their contents." msgstr "Dies legt fest, welche Berechtigungen Gitolite an die Repositorys und deren Inhalt vergibt." #. type: table -#: guix-git/doc/guix.texi:32738 +#: guix-git/doc/guix.texi:33103 msgid "A value like @code{#o0027} will give read access to the group used by Gitolite (by default: @code{git}). This is necessary when using Gitolite with software like cgit or gitweb." msgstr "Für einen Wert wie @code{#o0027} wird die Gruppe, die Gitolite benutzt (nach Vorgabe: @code{git}) Lesezugriff erhalten. Das ist nötig, wenn Sie Gitolite mit Software wie Cgit oder Gitweb kombinieren." #. type: item -#: guix-git/doc/guix.texi:32739 +#: guix-git/doc/guix.texi:33104 #, no-wrap msgid "@code{unsafe-pattern} (default: @code{#f})" msgstr "@code{unsafe-pattern} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:32744 +#: guix-git/doc/guix.texi:33109 msgid "An optional Perl regular expression for catching unsafe configurations in the configuration file. See @uref{https://gitolite.com/gitolite/git-config.html#compensating-for-unsafe_patt, Gitolite's documentation} for more information." msgstr "Optional ein Perl-kompatibler regulärer Ausdruck, um unsichere Konfigurationen in der Konfigurationsdatei zu unterbinden. Siehe @uref{https://gitolite.com/gitolite/git-config.html#compensating-for-unsafe_patt, die Dokumentation von Gitolite} für weitere Informationen." #. type: table -#: guix-git/doc/guix.texi:32751 +#: guix-git/doc/guix.texi:33116 msgid "When the value is not @code{#f}, it should be a string containing a Perl regular expression, such as @samp{\"[`~#\\$\\&()|;<>]\"}, which is the default value used by gitolite. It rejects any special character in configuration that might be interpreted by a shell, which is useful when sharing the administration burden with other people that do not otherwise have shell access on the server." msgstr "Wenn als Wert @emph{nicht} @code{#f} angegeben wird, muss es eine Zeichenkette mit einem Perl-kompatiblen regulären Ausdruck sein wie @samp{\"[`~#\\$\\&()|;<>]\"}, was der Voreinstellung von Gitolite entspricht. Damit wird unterbunden, jegliche Sonderzeichen in die Konfiguration zu schreiben, die von einer Shell interpretiert werden könnten, damit die Administration auch auf andere Leute übertragen werden kann, die sonst keinen Shell-Zugriff auf dem Server haben." #. type: item -#: guix-git/doc/guix.texi:32752 +#: guix-git/doc/guix.texi:33117 #, no-wrap msgid "@code{git-config-keys} (default: @code{\"\"})" msgstr "@code{git-config-keys} (Vorgabe: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:32755 +#: guix-git/doc/guix.texi:33120 msgid "Gitolite allows you to set git config values using the @samp{config} keyword. This setting allows control over the config keys to accept." msgstr "Mit Gitolite können Sie Werte für Git-Konfigurationen über das @samp{config}-Schlüsselwort festlegen. Mit dieser Einstellung können Sie steuern, welche Konfigurationsschlüssel akzeptiert werden." #. type: item -#: guix-git/doc/guix.texi:32756 +#: guix-git/doc/guix.texi:33121 #, no-wrap msgid "@code{roles} (default: @code{'((\"READERS\" . 1) (\"WRITERS\" . ))})" msgstr "@code{roles} (Vorgabe: @code{'((\"READERS\" . 1) (\"WRITERS\" . ))})" #. type: table -#: guix-git/doc/guix.texi:32758 +#: guix-git/doc/guix.texi:33123 msgid "Set the role names allowed to be used by users running the perms command." msgstr "Legt fest, welche Rollennamen für Nutzer möglich sind, wenn Sie den Befehl perms ausführen." #. type: item -#: guix-git/doc/guix.texi:32759 +#: guix-git/doc/guix.texi:33124 #, no-wrap msgid "@code{enable} (default: @code{'(\"help\" \"desc\" \"info\" \"perms\" \"writable\" \"ssh-authkeys\" \"git-config\" \"daemon\" \"gitweb\")})" msgstr "@code{enable} (Vorgabe: @code{'(\"help\" \"desc\" \"info\" \"perms\" \"writable\" \"ssh-authkeys\" \"git-config\" \"daemon\" \"gitweb\")})" #. type: table -#: guix-git/doc/guix.texi:32761 +#: guix-git/doc/guix.texi:33126 msgid "This setting controls the commands and features to enable within Gitolite." msgstr "Diese Einstellung legt die innerhalb von Gitolite zur Verfügung gestellten Befehle fest." #. type: subsubheading -#: guix-git/doc/guix.texi:32766 +#: guix-git/doc/guix.texi:33131 #, no-wrap msgid "Gitile Service" msgstr "Gitile-Dienst" #. type: cindex -#: guix-git/doc/guix.texi:32768 +#: guix-git/doc/guix.texi:33133 #, no-wrap msgid "Gitile service" msgstr "Gitile-Dienst" #. type: cindex -#: guix-git/doc/guix.texi:32769 +#: guix-git/doc/guix.texi:33134 #, no-wrap msgid "Git, forge" msgstr "Git, Forge" #. type: Plain text -#: guix-git/doc/guix.texi:32772 +#: guix-git/doc/guix.texi:33137 msgid "@uref{https://git.lepiller.eu/gitile, Gitile} is a Git forge for viewing public git repository contents from a web browser." msgstr "Mit @uref{https://git.lepiller.eu/gitile, Gitile} kann eine eigene Git-„Forge“ aufgesetzt werden, wo sich jeder über einen Web-Browser den Inhalt von Git-Repositorys ansehen kann." #. type: Plain text -#: guix-git/doc/guix.texi:32778 +#: guix-git/doc/guix.texi:33143 msgid "Gitile works best in collaboration with Gitolite, and will serve the public repositories from Gitolite by default. The service should listen only on a local port, and a webserver should be configured to serve static resources. The gitile service provides an easy way to extend the Nginx service for that purpose (@pxref{NGINX})." msgstr "Am besten kombiniert man Gitile mit Gitolite, und Gitile bietet nach Voreinstellung die für die Öffentlichkeit bestimmten Repositorys von Gitolite an. Der Dienst sollte auf einem lokalen Port lauschen, und ein Webserver sollte eingerichtet werden, um Gitiles statische Ressourcen anzubieten. Für den Gitile-Dienst kann der Nginx-Dienst einfach zu diesem Zweck erweitert werden (siehe @ref{NGINX})." #. type: Plain text -#: guix-git/doc/guix.texi:32782 +#: guix-git/doc/guix.texi:33147 msgid "The following example will configure Gitile to serve repositories from a custom location, with some default messages for the home page and the footers." msgstr "Im Folgenden sehen Sie ein Beispiel, wie Gitile konfiguriert wird, um Repositorys von einem selbst ausgewählten Ort anzubieten, zusammen mit etwas Text für die Hauptseite und Fußzeilen." #. type: lisp -#: guix-git/doc/guix.texi:32805 +#: guix-git/doc/guix.texi:33170 #, no-wrap msgid "" "(service gitile-service-type\n" @@ -60999,12 +61737,12 @@ msgstr "" " (git-root \"/var/lib/gitolite/repositories\")))))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:32814 +#: guix-git/doc/guix.texi:33179 msgid "In addition to the configuration record, you should configure your git repositories to contain some optional information. First, your public repositories need to contain the @file{git-daemon-export-ok} magic file that allows Git to export the repository. Gitile uses the presence of this file to detect public repositories it should make accessible. To do so with Gitolite for instance, modify your @file{conf/gitolite.conf} to include this in the repositories you want to make public:" msgstr "Neben dem Konfigurations-Verbundsobjekt sollten Sie auch bei Ihren Git-Repositorys ein paar optionale Informationen darüber eintragen. Zunächst werden Repositorys nur für die Allgemeinheit zugänglich, wenn sie die magische Datei @file{git-daemon-export-ok} enthalten. Gitile erkennt daran, welche Repositorys öffentlich sind und zugänglich gemacht werden sollen. Bei Gitolite heißt das zum Beispiel, Sie ändern Ihre @file{conf/gitolite.conf}, dass dort für die öffentlich zu machenden Repositorys Folgendes steht:" #. type: example -#: guix-git/doc/guix.texi:32818 +#: guix-git/doc/guix.texi:33183 #, no-wrap msgid "" "repo foo\n" @@ -61014,12 +61752,12 @@ msgstr "" " R = daemon\n" #. type: Plain text -#: guix-git/doc/guix.texi:32824 +#: guix-git/doc/guix.texi:33189 msgid "In addition, Gitile can read the repository configuration to display more information on the repository. Gitile uses the gitweb namespace for its configuration. As an example, you can use the following in your @file{conf/gitolite.conf}:" msgstr "Zusätzlich kann Gitile aus der Repository-Konfiguration weitere Informationen über das Repository auslesen und anzeigen. Gitile verwendet für seine Konfiguration den gitweb-Namensraum. Zum Beispiel kann Ihre @file{conf/gitolite.conf} Folgendes enthalten:" #. type: example -#: guix-git/doc/guix.texi:32831 +#: guix-git/doc/guix.texi:33196 #, no-wrap msgid "" "repo foo\n" @@ -61035,12 +61773,12 @@ msgstr "" " config gitweb.synopsis = Eine kurze Beschreibung für die Hauptseite des Projekts\n" #. type: Plain text -#: guix-git/doc/guix.texi:32837 +#: guix-git/doc/guix.texi:33202 msgid "Do not forget to commit and push these changes once you are satisfied. You may need to change your gitolite configuration to allow the previous configuration options to be set. One way to do that is to add the following service definition:" msgstr "Denken Sie daran, die Änderungen auch zu commiten und zu pushen, sobald Sie zufrieden sind. Vielleicht müssen Sie Ihre gitolite-Konfiguration anpassen, damit die genannten Konfigurationsoptionen zulässig sind. Eine Möglichkeit ist folgende Dienstdefinition:" #. type: lisp -#: guix-git/doc/guix.texi:32849 +#: guix-git/doc/guix.texi:33214 #, no-wrap msgid "" "(service gitolite-service-type\n" @@ -61066,243 +61804,243 @@ msgstr "" " (unsafe-patt \"^$\")))))\n" #. type: deftp -#: guix-git/doc/guix.texi:32851 +#: guix-git/doc/guix.texi:33216 #, no-wrap msgid "{Data Type} gitile-configuration" msgstr "{Datentyp} gitile-configuration" #. type: deftp -#: guix-git/doc/guix.texi:32853 +#: guix-git/doc/guix.texi:33218 msgid "Data type representing the configuration for @code{gitile-service-type}." msgstr "Repräsentiert die Konfiguration vom @code{gitile-service-type}." #. type: item -#: guix-git/doc/guix.texi:32855 +#: guix-git/doc/guix.texi:33220 #, no-wrap msgid "@code{package} (default: @var{gitile})" msgstr "@code{package} (Vorgabe: @var{gitile})" #. type: table -#: guix-git/doc/guix.texi:32857 +#: guix-git/doc/guix.texi:33222 msgid "Gitile package to use." msgstr "Welches Gitile-Paket benutzt werden soll." #. type: table -#: guix-git/doc/guix.texi:32860 +#: guix-git/doc/guix.texi:33225 msgid "The host on which gitile is listening." msgstr "Der Rechnername, auf den Gitile lauscht." #. type: item -#: guix-git/doc/guix.texi:32861 +#: guix-git/doc/guix.texi:33226 #, no-wrap msgid "@code{port} (default: @code{8080})" msgstr "@code{port} (Vorgabe: @code{8080})" #. type: table -#: guix-git/doc/guix.texi:32863 +#: guix-git/doc/guix.texi:33228 msgid "The port on which gitile is listening." msgstr "Der Port, auf dem Gitile lauscht." #. type: item -#: guix-git/doc/guix.texi:32864 +#: guix-git/doc/guix.texi:33229 #, no-wrap msgid "@code{database} (default: @code{\"/var/lib/gitile/gitile-db.sql\"})" msgstr "@code{database} (Vorgabe: @code{\"/var/lib/gitile/gitile-db.sql\"})" #. type: table -#: guix-git/doc/guix.texi:32866 +#: guix-git/doc/guix.texi:33231 msgid "The location of the database." msgstr "Wo die Datenbank liegt." #. type: item -#: guix-git/doc/guix.texi:32867 +#: guix-git/doc/guix.texi:33232 #, no-wrap msgid "@code{repositories} (default: @code{\"/var/lib/gitolite/repositories\"})" msgstr "@code{repositories} (Vorgabe: @code{\"/var/lib/gitolite/repositories\"})" #. type: table -#: guix-git/doc/guix.texi:32871 +#: guix-git/doc/guix.texi:33236 msgid "The location of the repositories. Note that only public repositories will be shown by Gitile. To make a repository public, add an empty @file{git-daemon-export-ok} file at the root of that repository." msgstr "Wo die Repositorys zu finden sind. Beachten Sie: Gitile zeigt nur öffentliche Repositorys an. Um ein Repository öffentlich zu machen, fügen Sie eine leere Datei @file{git-daemon-export-ok} in das Wurzelverzeichnis des Repositorys ein." #. type: code{#1} -#: guix-git/doc/guix.texi:32872 +#: guix-git/doc/guix.texi:33237 #, no-wrap msgid "base-git-url" msgstr "base-git-url" #. type: table -#: guix-git/doc/guix.texi:32874 +#: guix-git/doc/guix.texi:33239 msgid "The base git url that will be used to show clone commands." msgstr "Die Basis-Git-URL, von der angezeigt wird, dass man Befehle zum Klonen darauf ausführen kann." #. type: item -#: guix-git/doc/guix.texi:32875 +#: guix-git/doc/guix.texi:33240 #, no-wrap msgid "@code{index-title} (default: @code{\"Index\"})" msgstr "@code{index-title} (Vorgabe: @code{\"Index\"})" #. type: table -#: guix-git/doc/guix.texi:32877 +#: guix-git/doc/guix.texi:33242 msgid "The page title for the index page that lists all the available repositories." msgstr "Der Seitentitel der Index-Seite mit der Liste aller verfügbaren Repositorys." #. type: item -#: guix-git/doc/guix.texi:32878 +#: guix-git/doc/guix.texi:33243 #, no-wrap msgid "@code{intro} (default: @code{'()})" msgstr "@code{intro} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:32881 +#: guix-git/doc/guix.texi:33246 msgid "The intro content, as a list of sxml expressions. This is shown above the list of repositories, on the index page." msgstr "Der Inhalt der Einführung als Liste von SXML-Ausdrücken. Sie wird über der Liste der Repositorys auf der Index-Seite angezeigt." #. type: item -#: guix-git/doc/guix.texi:32882 +#: guix-git/doc/guix.texi:33247 #, no-wrap msgid "@code{footer} (default: @code{'()})" msgstr "@code{footer} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:32885 +#: guix-git/doc/guix.texi:33250 msgid "The footer content, as a list of sxml expressions. This is shown on every page served by Gitile." msgstr "Der Inhalt der Fußzeile als Liste von SXML-Ausdrücken. Sie wird unter jeder von Gitile angebotenen Seite angezeigt." #. type: code{#1} -#: guix-git/doc/guix.texi:32886 +#: guix-git/doc/guix.texi:33251 #, no-wrap msgid "nginx-server-block" msgstr "nginx-server-block" #. type: table -#: guix-git/doc/guix.texi:32889 +#: guix-git/doc/guix.texi:33254 msgid "An nginx server block that will be extended and used as a reverse proxy by Gitile to serve its pages, and as a normal web server to serve its assets." msgstr "Ein Server-Block für NGinx. NGinx wird durch Gitile erweitert und als inverser Proxy („Reverse Proxy“) verwendet, um dessen Seiten anzubieten, und es wird als einfacher Web-Server verwendet, um statische Dateien und Grafiken anzubieten." #. type: table -#: guix-git/doc/guix.texi:32893 +#: guix-git/doc/guix.texi:33258 msgid "You can use this block to add more custom URLs to your domain, such as a @code{/git/} URL for anonymous clones, or serving any other files you would like to serve." msgstr "Über diesen Block können Sie weitere eigene URLs auf Ihrer Domain anbieten lassen wie z.B.@: eine @code{/git/}-URL zum „anonymen“ Klonen ohne Anmeldung oder sonstige Dateien, die Sie anbieten möchten." #. type: subsubheading -#: guix-git/doc/guix.texi:32900 +#: guix-git/doc/guix.texi:33265 #, no-wrap msgid "The Battle for Wesnoth Service" msgstr "„The Battle for Wesnoth“-Dienst" #. type: cindex -#: guix-git/doc/guix.texi:32901 +#: guix-git/doc/guix.texi:33266 #, no-wrap msgid "wesnothd" msgstr "wesnothd" #. type: Plain text -#: guix-git/doc/guix.texi:32905 +#: guix-git/doc/guix.texi:33270 msgid "@uref{https://wesnoth.org, The Battle for Wesnoth} is a fantasy, turn based tactical strategy game, with several single player campaigns, and multiplayer games (both networked and local)." msgstr "@uref{https://wesnoth.org, The Battle for Wesnoth} ist ein in einer Fantasy-Welt angesiedeltes, rundenbasiertes, taktisches Strategiespiel. Es verfügt über mehrere Einzelspielerkampagnen und Mehrspielerspiele (über das Netzwerk und lokal)." #. type: defvar -#: guix-git/doc/guix.texi:32906 +#: guix-git/doc/guix.texi:33271 #, no-wrap msgid "{Scheme Variable} wesnothd-service-type" msgstr "{Scheme-Variable} wesnothd-service-type" #. type: defvar -#: guix-git/doc/guix.texi:32910 +#: guix-git/doc/guix.texi:33275 msgid "Service type for the wesnothd service. Its value must be a @code{wesnothd-configuration} object. To run wesnothd in the default configuration, instantiate it as:" msgstr "Diensttyp für den wesnothd-Dienst. Als Wert muss ein @code{wesnothd-configuration}-Objekt benutzt werden. Um wesnothd mit seiner Vorgabekonfiguration auszuführen, instanziieren Sie es als:" #. type: lisp -#: guix-git/doc/guix.texi:32913 +#: guix-git/doc/guix.texi:33278 #, no-wrap msgid "(service wesnothd-service-type)\n" msgstr "(service wesnothd-service-type)\n" #. type: deftp -#: guix-git/doc/guix.texi:32916 +#: guix-git/doc/guix.texi:33281 #, no-wrap msgid "{Data Type} wesnothd-configuration" msgstr "{Datentyp} wesnothd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:32918 +#: guix-git/doc/guix.texi:33283 msgid "Data type representing the configuration of @command{wesnothd}." msgstr "Datentyp, der die Konfiguration von @command{wesnothd} repräsentiert." #. type: item -#: guix-git/doc/guix.texi:32920 +#: guix-git/doc/guix.texi:33285 #, no-wrap msgid "@code{package} (default: @code{wesnoth-server})" msgstr "@code{package} (Vorgabe: @code{wesnoth-server})" #. type: table -#: guix-git/doc/guix.texi:32922 +#: guix-git/doc/guix.texi:33287 msgid "The wesnoth server package to use." msgstr "Das Paket, das für den Wesnoth-Server benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:32923 +#: guix-git/doc/guix.texi:33288 #, no-wrap msgid "@code{port} (default: @code{15000})" msgstr "@code{port} (Vorgabe: @code{15000})" #. type: table -#: guix-git/doc/guix.texi:32925 +#: guix-git/doc/guix.texi:33290 guix-git/doc/guix.texi:33681 msgid "The port to bind the server to." msgstr "Der Port, an den der Server gebunden wird." #. type: cindex -#: guix-git/doc/guix.texi:32931 +#: guix-git/doc/guix.texi:33296 #, no-wrap msgid "pam-mount" msgstr "pam-mount" #. type: Plain text -#: guix-git/doc/guix.texi:32936 +#: guix-git/doc/guix.texi:33301 msgid "The @code{(gnu services pam-mount)} module provides a service allowing users to mount volumes when they log in. It should be able to mount any volume format supported by the system." msgstr "Das Modul @code{(gnu services pam-mount)} stellt einen Dienst zur Verfügung, mit dem Benutzer Datenträger beim Anmelden einbinden können. Damit sollte es möglich sein, jedes vom System unterstützte Datenträgerformat einzubinden." #. type: defvar -#: guix-git/doc/guix.texi:32937 +#: guix-git/doc/guix.texi:33302 #, no-wrap msgid "{Scheme Variable} pam-mount-service-type" msgstr "{Scheme-Variable} pam-mount-service-type" #. type: defvar -#: guix-git/doc/guix.texi:32939 +#: guix-git/doc/guix.texi:33304 msgid "Service type for PAM Mount support." msgstr "Diensttyp für PAM-Einbindeunterstützung." #. type: deftp -#: guix-git/doc/guix.texi:32941 +#: guix-git/doc/guix.texi:33306 #, no-wrap msgid "{Data Type} pam-mount-configuration" msgstr "{Datentyp} pam-mount-configuration" #. type: deftp -#: guix-git/doc/guix.texi:32943 +#: guix-git/doc/guix.texi:33308 msgid "Data type representing the configuration of PAM Mount." msgstr "Datentyp, der die Konfiguration für PAM-Einbindungen („PAM Mount“) repräsentiert." #. type: code{#1} -#: guix-git/doc/guix.texi:32947 +#: guix-git/doc/guix.texi:33312 #, no-wrap msgid "rules" msgstr "rules" #. type: table -#: guix-git/doc/guix.texi:32950 +#: guix-git/doc/guix.texi:33315 msgid "The configuration rules that will be used to generate @file{/etc/security/pam_mount.conf.xml}." msgstr "Die Konfigurationsregeln, um @file{/etc/security/pam_mount.conf.xml} zu erzeugen." #. type: table -#: guix-git/doc/guix.texi:32954 +#: guix-git/doc/guix.texi:33319 msgid "The configuration rules are SXML elements (@pxref{SXML,,, guile, GNU Guile Reference Manual}), and the default ones don't mount anything for anyone at login:" msgstr "Die Konfigurationsregeln sind SXML-Elemente (siehe @ref{SXML,,, guile, Referenzhandbuch zu GNU Guile}) und nach Vorgabe wird für niemanden etwas beim Anmelden eingebunden:" #. type: lisp -#: guix-git/doc/guix.texi:32969 +#: guix-git/doc/guix.texi:33334 #, no-wrap msgid "" "`((debug (@@ (enable \"0\")))\n" @@ -61334,12 +62072,12 @@ msgstr "" " (remove \"true\"))))\n" #. type: table -#: guix-git/doc/guix.texi:32975 +#: guix-git/doc/guix.texi:33340 msgid "Some @code{volume} elements must be added to automatically mount volumes at login. Here's an example allowing the user @code{alice} to mount her encrypted @env{HOME} directory and allowing the user @code{bob} to mount the partition where he stores his data:" msgstr "Es müssen @code{volume}-Elemente eingefügt werden, um Datenträger automatisch bei der Anmeldung einzubinden. Hier ist ein Beispiel, mit dem die Benutzerin @code{alice} ihr verschlüsseltes @env{HOME}-Verzeichnis einbinden kann, und der Benutzer @code{bob} die Partition einbinden kann, wo er seine Daten abspeichert." #. type: lisp -#: guix-git/doc/guix.texi:33000 +#: guix-git/doc/guix.texi:33365 #, no-wrap msgid "" "(define pam-mount-rules\n" @@ -61393,7 +62131,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:33004 +#: guix-git/doc/guix.texi:33369 #, no-wrap msgid "" "(service pam-mount-service-type\n" @@ -61405,770 +62143,928 @@ msgstr "" " (rules pam-mount-rules)))\n" #. type: table -#: guix-git/doc/guix.texi:33008 +#: guix-git/doc/guix.texi:33373 msgid "The complete list of possible options can be found in the man page for @uref{http://pam-mount.sourceforge.net/pam_mount.conf.5.html, pam_mount.conf}." msgstr "Die vollständige Liste möglicher Optionen finden Sie in der Handbuchseite („man page“) für @uref{http://pam-mount.sourceforge.net/pam_mount.conf.5.html, pam_mount.conf}." #. type: subsubheading -#: guix-git/doc/guix.texi:33015 +#: guix-git/doc/guix.texi:33380 #, no-wrap msgid "Guix Build Coordinator" msgstr "Guix-Erstellungskoordinator" #. type: Plain text -#: guix-git/doc/guix.texi:33021 +#: guix-git/doc/guix.texi:33386 msgid "The @uref{https://git.cbaines.net/guix/build-coordinator/,Guix Build Coordinator} aids in distributing derivation builds among machines running an @dfn{agent}. The build daemon is still used to build the derivations, but the Guix Build Coordinator manages allocating builds and working with the results." msgstr "Der @uref{https://git.cbaines.net/guix/build-coordinator/,Guix-Erstellungskoordinator} („Guix Build Coordinator“) hilft dabei, Erstellungen von Ableitungen auf Maschinen zu verteilen, auf denen ein @dfn{Agent} läuft. Der Erstellungs-Daemon wird weiterhin benutzt, um die Ableitungen zu erstellen, der Guix-Erstellungskoordinator verwaltet nur die Zuteilung der Erstellungen und den Umgang mit den Ergebnissen." #. type: Plain text -#: guix-git/doc/guix.texi:33027 +#: guix-git/doc/guix.texi:33392 msgid "The Guix Build Coordinator consists of one @dfn{coordinator}, and one or more connected @dfn{agent} processes. The coordinator process handles clients submitting builds, and allocating builds to agents. The agent processes talk to a build daemon to actually perform the builds, then send the results back to the coordinator." msgstr "Der Guix-Erstellungskoordinator setzt sich aus einem @dfn{Koordinator} und mindestens einem verbundenen @dfn{Agentenprozess} zusammen. Der Koordinatorprozess kümmert sich um Clients, die Erstellungen einreichen, und teilt Erstellungen den Agenten zu. Die Agentenprozesse kommunizieren mit einem Erstellungs-Daemon, welcher die Erstellungen eigentlich durchführt und die Ergebnisse an den Koordinator zurückgibt." #. type: Plain text -#: guix-git/doc/guix.texi:33031 +#: guix-git/doc/guix.texi:33396 msgid "There is a script to run the coordinator component of the Guix Build Coordinator, but the Guix service uses a custom Guile script instead, to provide better integration with G-expressions used in the configuration." msgstr "Es gibt ein Skript, um die Koordinatorkomponente des Guix-Erstellungskoordinators auszuführen, aber der Dienst für Guix benutzt stattdessen sein eigenes Guile-Skript, was in der Konfiguration benutzte G-Ausdrücke besser integriert." #. type: defvar -#: guix-git/doc/guix.texi:33032 +#: guix-git/doc/guix.texi:33397 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-service-type" msgstr "{Scheme-Variable} guix-build-coordinator-service-type" #. type: defvar -#: guix-git/doc/guix.texi:33035 +#: guix-git/doc/guix.texi:33400 msgid "Service type for the Guix Build Coordinator. Its value must be a @code{guix-build-coordinator-configuration} object." msgstr "Diensttyp für den Guix-Erstellungskoordinator. Sein Wert muss ein @code{guix-build-coordinator-configuration}-Objekt sein." #. type: deftp -#: guix-git/doc/guix.texi:33037 +#: guix-git/doc/guix.texi:33402 #, no-wrap msgid "{Data Type} guix-build-coordinator-configuration" msgstr "{Datentyp} guix-build-coordinator-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33039 +#: guix-git/doc/guix.texi:33404 msgid "Data type representing the configuration of the Guix Build Coordinator." msgstr "Der Datentyp, der die Konfiguration des Guix-Erstellungskoordinators repräsentiert." #. type: item -#: guix-git/doc/guix.texi:33041 guix-git/doc/guix.texi:33211 +#: guix-git/doc/guix.texi:33406 guix-git/doc/guix.texi:33576 #, no-wrap msgid "@code{package} (default: @code{guix-build-coordinator})" msgstr "@code{package} (Vorgabe: @code{guix-build-coordinator})" #. type: table -#: guix-git/doc/guix.texi:33043 guix-git/doc/guix.texi:33087 -#: guix-git/doc/guix.texi:33213 +#: guix-git/doc/guix.texi:33408 guix-git/doc/guix.texi:33452 +#: guix-git/doc/guix.texi:33578 msgid "The Guix Build Coordinator package to use." msgstr "Das zu verwendende Guix-Erstellungskoordinator-Paket." #. type: item -#: guix-git/doc/guix.texi:33044 +#: guix-git/doc/guix.texi:33409 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator\"})" msgstr "@code{user} (Vorgabe: @code{\"guix-build-coordinator\"})" #. type: table -#: guix-git/doc/guix.texi:33046 guix-git/doc/guix.texi:33090 -#: guix-git/doc/guix.texi:33216 guix-git/doc/guix.texi:33262 +#: guix-git/doc/guix.texi:33411 guix-git/doc/guix.texi:33455 +#: guix-git/doc/guix.texi:33581 guix-git/doc/guix.texi:33627 +#: guix-git/doc/guix.texi:33675 msgid "The system user to run the service as." msgstr "Das Systembenutzerkonto, mit dem der Dienst ausgeführt wird." #. type: item -#: guix-git/doc/guix.texi:33047 +#: guix-git/doc/guix.texi:33412 #, no-wrap msgid "@code{group} (default: @code{\"guix-build-coordinator\"})" msgstr "@code{group} (Vorgabe: @code{\"guix-build-coordinator\"})" #. type: table -#: guix-git/doc/guix.texi:33049 guix-git/doc/guix.texi:33265 +#: guix-git/doc/guix.texi:33414 guix-git/doc/guix.texi:33630 +#: guix-git/doc/guix.texi:33678 msgid "The system group to run the service as." msgstr "Die Systembenutzergruppe, mit der der Dienst ausgeführt wird." #. type: item -#: guix-git/doc/guix.texi:33050 +#: guix-git/doc/guix.texi:33415 #, no-wrap msgid "@code{database-uri-string} (default: @code{\"sqlite:///var/lib/guix-build-coordinator/guix_build_coordinator.db\"})" msgstr "@code{database-uri-string} (Vorgabe: @code{\"sqlite:///var/lib/guix-build-coordinator/guix_build_coordinator.db\"})" #. type: table -#: guix-git/doc/guix.texi:33052 +#: guix-git/doc/guix.texi:33417 msgid "The URI to use for the database." msgstr "Die URI für die Datenbank." #. type: item -#: guix-git/doc/guix.texi:33053 +#: guix-git/doc/guix.texi:33418 #, no-wrap msgid "@code{agent-communication-uri} (default: @code{\"http://0.0.0.0:8745\"})" msgstr "@code{agent-communication-uri} (Vorgabe: @code{\"http://0.0.0.0:8745\"})" #. type: table -#: guix-git/doc/guix.texi:33055 +#: guix-git/doc/guix.texi:33420 msgid "The URI describing how to listen to requests from agent processes." msgstr "Die URI, die beschreibt, wie auf Anfragen von Agentenprozessen gelauscht wird." #. type: item -#: guix-git/doc/guix.texi:33056 +#: guix-git/doc/guix.texi:33421 #, no-wrap msgid "@code{client-communication-uri} (default: @code{\"http://127.0.0.1:8746\"})" msgstr "@code{client-communication-uri} (Vorgabe: @code{\"http://127.0.0.1:8746\"})" #. type: table -#: guix-git/doc/guix.texi:33060 +#: guix-git/doc/guix.texi:33425 msgid "The URI describing how to listen to requests from clients. The client API allows submitting builds and currently isn't authenticated, so take care when configuring this value." msgstr "Die URI, die beschreibt, wie auf Anfragen von Clients gelauscht wird. Mit der Client-API können Erstellungen eingereicht werden und derzeit findet dabei keine Authentifizierung statt. Das sollten Sie bedenken, wenn Sie hieran Einstellungen vornehmen." #. type: item -#: guix-git/doc/guix.texi:33061 +#: guix-git/doc/guix.texi:33426 #, no-wrap msgid "@code{allocation-strategy} (default: @code{#~basic-build-allocation-strategy})" msgstr "@code{allocation-strategy} (Vorgabe: @code{#~basic-build-allocation-strategy})" #. type: table -#: guix-git/doc/guix.texi:33065 +#: guix-git/doc/guix.texi:33430 msgid "A G-expression for the allocation strategy to be used. This is a procedure that takes the datastore as an argument and populates the allocation plan in the database." msgstr "Ein G-Ausdruck für die zu nutzende Zuteilungsstrategie. Angegeben wird eine Prozedur, die den Datenspeicher als Argument nimmt und in den Zuteilungsplan in der Datenbank einfügt." #. type: item -#: guix-git/doc/guix.texi:33066 +#: guix-git/doc/guix.texi:33431 #, no-wrap msgid "@code{hooks} (default: @var{'()})" msgstr "@code{hooks} (Vorgabe: @var{'()})" #. type: table -#: guix-git/doc/guix.texi:33069 +#: guix-git/doc/guix.texi:33434 msgid "An association list of hooks. These provide a way to execute arbitrary code upon certain events, like a build result being processed." msgstr "Eine assoziative Liste mit Hooks. Mit ihnen kann infolge bestimmter Ereignisse beliebiger Code ausgeführt werden, z.B.@: wenn ein Erstellungsergebnis verarbeitet wird." #. type: item -#: guix-git/doc/guix.texi:33070 +#: guix-git/doc/guix.texi:33435 #, no-wrap msgid "@code{guile} (default: @code{guile-3.0-latest})" msgstr "@code{guile} (Vorgabe: @code{guile-3.0-latest})" #. type: table -#: guix-git/doc/guix.texi:33072 +#: guix-git/doc/guix.texi:33437 msgid "The Guile package with which to run the Guix Build Coordinator." msgstr "Mit welchem Guile-Paket der Guix-Erstellungskoordinator ausgeführt wird." #. type: defvar -#: guix-git/doc/guix.texi:33076 +#: guix-git/doc/guix.texi:33441 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-agent-service-type" msgstr "{Scheme-Variable} guix-build-coordinator-agent-service-type" #. type: defvar -#: guix-git/doc/guix.texi:33079 +#: guix-git/doc/guix.texi:33444 msgid "Service type for a Guix Build Coordinator agent. Its value must be a @code{guix-build-coordinator-agent-configuration} object." msgstr "Diensttyp für einen Guix-Erstellungskoordinator-Agenten. Als Wert muss ein @code{guix-build-coordinator-agent-configuration}-Objekt angegeben werden." #. type: deftp -#: guix-git/doc/guix.texi:33081 +#: guix-git/doc/guix.texi:33446 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-configuration" msgstr "{Datentyp} guix-build-coordinator-agent-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33083 +#: guix-git/doc/guix.texi:33448 msgid "Data type representing the configuration a Guix Build Coordinator agent." msgstr "Der Datentyp, der die Konfiguration eines Guix-Erstellungskoordinator-Agenten repräsentiert." #. type: item -#: guix-git/doc/guix.texi:33085 +#: guix-git/doc/guix.texi:33450 #, no-wrap msgid "@code{package} (default: @code{guix-build-coordinator/agent-only})" msgstr "@code{package} (Vorgabe: @code{guix-build-coordinator/agent-only})" #. type: item -#: guix-git/doc/guix.texi:33088 +#: guix-git/doc/guix.texi:33453 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator-agent\"})" msgstr "@code{user} (Vorgabe: @code{\"guix-build-coordinator-agent\"})" #. type: item -#: guix-git/doc/guix.texi:33091 +#: guix-git/doc/guix.texi:33456 #, no-wrap msgid "@code{coordinator} (default: @code{\"http://localhost:8745\"})" msgstr "@code{coordinator} (Vorgabe: @code{\"http://localhost:8745\"})" #. type: table -#: guix-git/doc/guix.texi:33093 guix-git/doc/guix.texi:33219 +#: guix-git/doc/guix.texi:33458 guix-git/doc/guix.texi:33584 msgid "The URI to use when connecting to the coordinator." msgstr "Das Passwort, das zum Herstellen einer Verbindung mit dem Koordinator verwendet werden soll." #. type: code{#1} -#: guix-git/doc/guix.texi:33094 +#: guix-git/doc/guix.texi:33459 #, no-wrap msgid "authentication" msgstr "authentication" #. type: table -#: guix-git/doc/guix.texi:33097 +#: guix-git/doc/guix.texi:33462 msgid "Record describing how this agent should authenticate with the coordinator. Possible record types are described below." msgstr "Ein Verbundsobjekt, das beschreibt, wie sich dieser Agent beim Koordinator authentisiert. Mögliche Verbundsfelder werden im Folgenden beschrieben." #. type: item -#: guix-git/doc/guix.texi:33098 guix-git/doc/guix.texi:33220 +#: guix-git/doc/guix.texi:33463 guix-git/doc/guix.texi:33585 #, no-wrap msgid "@code{systems} (default: @code{#f})" msgstr "@code{systems} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33101 +#: guix-git/doc/guix.texi:33466 msgid "The systems for which this agent should fetch builds. The agent process will use the current system it's running on as the default." msgstr "Die Systeme, für die dieser Agent Erstellungen übernehmen soll. Voreingestellt verwendet der Agentenprozess den Systemtyp, auf dem er aktuell läuft." #. type: item -#: guix-git/doc/guix.texi:33102 +#: guix-git/doc/guix.texi:33467 #, no-wrap msgid "@code{max-parallel-builds} (default: @code{1})" msgstr "@code{max-parallel-builds} (Vorgabe: @code{1})" #. type: table -#: guix-git/doc/guix.texi:33104 +#: guix-git/doc/guix.texi:33469 msgid "The number of builds to perform in parallel." msgstr "Die Anzahl der Erstellungen, die parallel ausgeführt werden sollen." #. type: item -#: guix-git/doc/guix.texi:33105 +#: guix-git/doc/guix.texi:33470 #, no-wrap msgid "@code{max-1min-load-average} (default: @code{#f})" msgstr "@code{max-1min-load-average} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33109 +#: guix-git/doc/guix.texi:33474 msgid "Load average value to look at when considering starting new builds, if the 1 minute load average exceeds this value, the agent will wait before starting new builds." msgstr "Die durchschnittliche Last (Load Average), die bestimmt, ob der Koordinatoragent mit neuen Erstellungen beginnt. Wenn die Load Average über 1@tie{}Minute den angegebenen Wert übersteigt, wartet der Agent und beginnt keine zusätzlichen Erstellungen." #. type: table -#: guix-git/doc/guix.texi:33113 +#: guix-git/doc/guix.texi:33478 msgid "This will be unspecified if the value is @code{#f}, and the agent will use the number of cores reported by the system as the max 1 minute load average." msgstr "Wenn als Wert @code{#f} angegeben wird, wird die Einstellung nicht festgelegt und der Agent verwendet die Anzahl der Kerne, die das System meldet, als maximaler Load Average über 1@tie{}Minute." #. type: item -#: guix-git/doc/guix.texi:33114 +#: guix-git/doc/guix.texi:33479 #, no-wrap msgid "@code{derivation-substitute-urls} (default: @code{#f})" msgstr "@code{derivation-substitute-urls} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33117 +#: guix-git/doc/guix.texi:33482 msgid "URLs from which to attempt to fetch substitutes for derivations, if the derivations aren't already available." msgstr "URLs, von denen versucht werden soll, Substitute für Ableitungen herunterzuladen, wenn die Ableitungen noch nicht vorliegen." #. type: item -#: guix-git/doc/guix.texi:33118 +#: guix-git/doc/guix.texi:33483 #, no-wrap msgid "@code{non-derivation-substitute-urls} (default: @code{#f})" msgstr "@code{non-derivation-substitute-urls} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33121 +#: guix-git/doc/guix.texi:33486 msgid "URLs from which to attempt to fetch substitutes for build inputs, if the input store items aren't already available." msgstr "URLs, von denen versucht werden soll, Substitute für Erstellungseingaben herunterzuladen, wenn die Eingabe-Store-Objekte noch nicht vorliegen." #. type: deftp -#: guix-git/doc/guix.texi:33125 +#: guix-git/doc/guix.texi:33490 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-password-auth" msgstr "{Datentyp} guix-build-coordinator-agent-password-auth" #. type: deftp -#: guix-git/doc/guix.texi:33128 +#: guix-git/doc/guix.texi:33493 msgid "Data type representing an agent authenticating with a coordinator via a UUID and password." msgstr "Der Datentyp, der einen Agenten repräsentiert, der sich bei einem Koordinator über eine UUID und ein Passwort authentisiert." #. type: table -#: guix-git/doc/guix.texi:33134 guix-git/doc/guix.texi:33150 +#: guix-git/doc/guix.texi:33499 guix-git/doc/guix.texi:33515 msgid "The UUID of the agent. This should be generated by the coordinator process, stored in the coordinator database, and used by the intended agent." msgstr "Die UUID des Agenten. Sie sollte durch den Koordinatorprozess erzeugt worden sein, in der Datenbank des Koordinators eingetragen sein und von dem Agenten benutzt werden, für den sie gedacht ist." #. type: table -#: guix-git/doc/guix.texi:33137 +#: guix-git/doc/guix.texi:33502 msgid "The password to use when connecting to the coordinator." msgstr "Das Passwort, das zum Herstellen einer Verbindung mit dem Koordinator verwendet werden soll." #. type: deftp -#: guix-git/doc/guix.texi:33141 +#: guix-git/doc/guix.texi:33506 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-password-file-auth" msgstr "{Datentyp} guix-build-coordinator-agent-password-file-auth" #. type: deftp -#: guix-git/doc/guix.texi:33144 +#: guix-git/doc/guix.texi:33509 msgid "Data type representing an agent authenticating with a coordinator via a UUID and password read from a file." msgstr "Der Datentyp, der einen Agenten repräsentiert, der sich bei einem Koordinator über eine UUID und ein aus einer Datei gelesenes Passwort authentisiert." #. type: code{#1} -#: guix-git/doc/guix.texi:33151 +#: guix-git/doc/guix.texi:33516 #, no-wrap msgid "password-file" msgstr "password-file" #. type: table -#: guix-git/doc/guix.texi:33154 +#: guix-git/doc/guix.texi:33519 msgid "A file containing the password to use when connecting to the coordinator." msgstr "Eine Datei mit dem Passwort, um sich mit dem Koordinator zu verbinden." #. type: deftp -#: guix-git/doc/guix.texi:33158 +#: guix-git/doc/guix.texi:33523 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-dynamic-auth" msgstr "{Datentyp} guix-build-coordinator-agent-dynamic-auth" #. type: deftp -#: guix-git/doc/guix.texi:33161 +#: guix-git/doc/guix.texi:33526 msgid "Data type representing an agent authenticating with a coordinator via a dynamic auth token and agent name." msgstr "Der Datentyp, der einen Agenten repräsentiert, der sich bei einem Koordinator über einen dynamischen Authentisierungs-Token und den Agentennamen authentisiert." #. type: code{#1} -#: guix-git/doc/guix.texi:33163 guix-git/doc/guix.texi:33180 +#: guix-git/doc/guix.texi:33528 guix-git/doc/guix.texi:33545 #, no-wrap msgid "agent-name" msgstr "agent-name" #. type: table -#: guix-git/doc/guix.texi:33167 guix-git/doc/guix.texi:33184 +#: guix-git/doc/guix.texi:33532 guix-git/doc/guix.texi:33549 msgid "Name of an agent, this is used to match up to an existing entry in the database if there is one. When no existing entry is found, a new entry is automatically added." msgstr "Der Name des Agenten. Er wird benutzt, um den passenden Eintrag in der Datenbank für ihn zu finden. Gibt es noch keinen Eintrag, wird automatisch einer hinzugefügt." #. type: code{#1} -#: guix-git/doc/guix.texi:33168 +#: guix-git/doc/guix.texi:33533 #, no-wrap msgid "token" msgstr "token" #. type: table -#: guix-git/doc/guix.texi:33171 +#: guix-git/doc/guix.texi:33536 msgid "Dynamic auth token, this is created and stored in the coordinator database, and is used by the agent to authenticate." msgstr "Dynamischer Authentisierungs-Token. Er wird in der Datenbank des Koordinators erzeugt und vom Agenten zur Authentisierung benutzt." #. type: deftp -#: guix-git/doc/guix.texi:33175 +#: guix-git/doc/guix.texi:33540 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-dynamic-auth-with-file" msgstr "{Datentyp} guix-build-coordinator-agent-dynamic-auth-with-file" #. type: deftp -#: guix-git/doc/guix.texi:33178 +#: guix-git/doc/guix.texi:33543 msgid "Data type representing an agent authenticating with a coordinator via a dynamic auth token read from a file and agent name." msgstr "Der Datentyp, der einen Agenten repräsentiert, der sich bei einem Koordinator über einen aus einer Datei gelesenen dynamischen Authentisierungs-Token und den Agentennamen authentisiert." #. type: code{#1} -#: guix-git/doc/guix.texi:33185 +#: guix-git/doc/guix.texi:33550 #, no-wrap msgid "token-file" msgstr "token-file" #. type: table -#: guix-git/doc/guix.texi:33188 +#: guix-git/doc/guix.texi:33553 msgid "File containing the dynamic auth token, this is created and stored in the coordinator database, and is used by the agent to authenticate." msgstr "Eine Datei, in der der dynamische Authentisierungs-Token enthalten ist. Er wird in der Datenbank des Koordinators erzeugt und vom Agenten zur Authentisierung benutzt." #. type: Plain text -#: guix-git/doc/guix.texi:33198 +#: guix-git/doc/guix.texi:33563 msgid "The Guix Build Coordinator package contains a script to query an instance of the Guix Data Service for derivations to build, and then submit builds for those derivations to the coordinator. The service type below assists in running this script. This is an additional tool that may be useful when building derivations contained within an instance of the Guix Data Service." msgstr "Das Paket des Guix-Erstellungskoordinators enthält ein Skript, mit dem eine Instanz des Guix-Datendienstes („Guix Data Service“) nach zu erstellenden Ableitungen angefragt werden kann, woraufhin Erstellungen für selbige Ableitungen beim Koordinator eingereicht werden. Der folgende Diensttyp hilft dabei, dieses Skript einzusetzen. Es ist ein weiteres Werkzeug, das beim Erstellen von Ableitungen von Nutzen sein kann, die in einer Instanz des Guix-Datendienstes vorhanden sind." #. type: defvar -#: guix-git/doc/guix.texi:33199 +#: guix-git/doc/guix.texi:33564 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-queue-builds-service-type" msgstr "{Scheme-Variable} guix-build-coordinator-queue-builds-service-type" #. type: defvar -#: guix-git/doc/guix.texi:33204 +#: guix-git/doc/guix.texi:33569 msgid "Service type for the guix-build-coordinator-queue-builds-from-guix-data-service script. Its value must be a @code{guix-build-coordinator-queue-builds-configuration} object." msgstr "Der Diensttyp für das Skript guix-build-coordinator-queue-builds-from-guix-data-service. Als Wert muss ein @code{guix-build-coordinator-queue-builds-configuration}-Objekt benutzt werden." #. type: deftp -#: guix-git/doc/guix.texi:33206 +#: guix-git/doc/guix.texi:33571 #, no-wrap msgid "{Data Type} guix-build-coordinator-queue-builds-configuration" msgstr "{Datentyp} guix-build-coordinator-queue-builds-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33209 +#: guix-git/doc/guix.texi:33574 msgid "Data type representing the options to the queue builds from guix data service script." msgstr "Der Datentyp, der die Optionen an das Skript guix-build-coordinator-queue-builds-from-guix-data-service repräsentiert." #. type: item -#: guix-git/doc/guix.texi:33214 +#: guix-git/doc/guix.texi:33579 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator-queue-builds\"})" msgstr "@code{user} (Vorgabe: @code{\"guix-build-coordinator-queue-builds\"})" #. type: item -#: guix-git/doc/guix.texi:33217 +#: guix-git/doc/guix.texi:33582 #, no-wrap msgid "@code{coordinator} (default: @code{\"http://localhost:8746\"})" msgstr "@code{coordinator} (Vorgabe: @code{\"http://localhost:8746\"})" #. type: table -#: guix-git/doc/guix.texi:33222 +#: guix-git/doc/guix.texi:33587 msgid "The systems for which to fetch derivations to build." msgstr "Für welche Systeme zu erstellende Ableitungen übernommen werden sollen." #. type: item -#: guix-git/doc/guix.texi:33223 +#: guix-git/doc/guix.texi:33588 #, no-wrap msgid "@code{systems-and-targets} (default: @code{#f})" msgstr "@code{systems-and-targets} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33226 +#: guix-git/doc/guix.texi:33591 msgid "An association list of system and target pairs for which to fetch derivations to build." msgstr "Eine assoziative Liste aus Paaren aus System und Zielplattform, für die zu erstellende Ableitungen übernommen werden sollen." #. type: item -#: guix-git/doc/guix.texi:33227 +#: guix-git/doc/guix.texi:33592 #, no-wrap msgid "@code{guix-data-service} (default: @code{\"https://data.guix.gnu.org\"})" msgstr "@code{guix-data-service} (Vorgabe: @code{\"https://data.guix.gnu.org\"})" #. type: table -#: guix-git/doc/guix.texi:33230 +#: guix-git/doc/guix.texi:33595 msgid "The Guix Data Service instance from which to query to find out about derivations to build." msgstr "Die Instanz des Guix-Datendienstes, die nach zu erstellenden Ableitungen angefragt werden soll." #. type: item -#: guix-git/doc/guix.texi:33231 +#: guix-git/doc/guix.texi:33596 #, no-wrap msgid "@code{processed-commits-file} (default: @code{\"/var/cache/guix-build-coordinator-queue-builds/processed-commits\"})" msgstr "@code{processed-commits-file} (Vorgabe: @code{\"/var/cache/guix-build-coordinator-queue-builds/processed-commits\"})" #. type: table -#: guix-git/doc/guix.texi:33234 +#: guix-git/doc/guix.texi:33599 msgid "A file to record which commits have been processed, to avoid needlessly processing them again if the service is restarted." msgstr "Eine Datei, in die gespeichert wird, welche Commits bereits verarbeitet wurden, um sie nicht unnötig ein weiteres Mal zu verarbeiten, wenn der Dienst neu gestartet wird." #. type: subsubheading -#: guix-git/doc/guix.texi:33238 +#: guix-git/doc/guix.texi:33603 #, no-wrap msgid "Guix Data Service" msgstr "Guix-Datendienst" #. type: Plain text -#: guix-git/doc/guix.texi:33242 +#: guix-git/doc/guix.texi:33607 msgid "The @uref{http://data.guix.gnu.org,Guix Data Service} processes, stores and provides data about GNU Guix. This includes information about packages, derivations and lint warnings." msgstr "Der @uref{http://data.guix.gnu.org,Guix-Datendienst} („Guix Data Service“) verarbeitet und speichert Daten über GNU Guix und stellt diese zur Verfügung. Dazu gehören Informationen über Pakete, Ableitungen sowie durch Linting erkannte Paketfehler." #. type: Plain text -#: guix-git/doc/guix.texi:33245 +#: guix-git/doc/guix.texi:33610 msgid "The data is stored in a PostgreSQL database, and available through a web interface." msgstr "Die Daten werden in einer PostgreSQL-Datenbank gespeichert und stehen über eine Weboberfläche zur Verfügung." #. type: defvar -#: guix-git/doc/guix.texi:33246 +#: guix-git/doc/guix.texi:33611 #, no-wrap msgid "{Scheme Variable} guix-data-service-type" msgstr "{Scheme-Variable} guix-data-service-type" #. type: defvar -#: guix-git/doc/guix.texi:33251 +#: guix-git/doc/guix.texi:33616 msgid "Service type for the Guix Data Service. Its value must be a @code{guix-data-service-configuration} object. The service optionally extends the getmail service, as the guix-commits mailing list is used to find out about changes in the Guix git repository." msgstr "Diensttyp für den Guix-Datendienst. Sein Wert muss ein @code{guix-data-service-configuration}-Objekt sein. Der Dienst kann optional den getmail-Dienst erweitern und die guix-commits-Mailing-Liste benutzen, um bei Änderungen am Guix-Git-Repository auf dem Laufenden zu bleiben." #. type: deftp -#: guix-git/doc/guix.texi:33253 +#: guix-git/doc/guix.texi:33618 #, no-wrap msgid "{Data Type} guix-data-service-configuration" msgstr "{Datentyp} guix-data-service-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33255 +#: guix-git/doc/guix.texi:33620 guix-git/doc/guix.texi:33668 msgid "Data type representing the configuration of the Guix Data Service." msgstr "Der Datentyp, der die Konfiguration des Guix-Datendienstes repräsentiert." #. type: item -#: guix-git/doc/guix.texi:33257 +#: guix-git/doc/guix.texi:33622 #, no-wrap msgid "@code{package} (default: @code{guix-data-service})" msgstr "@code{package} (Vorgabe: @code{guix-data-service})" #. type: table -#: guix-git/doc/guix.texi:33259 +#: guix-git/doc/guix.texi:33624 msgid "The Guix Data Service package to use." msgstr "Das zu verwendende Guix-Datendienst-Paket." #. type: item -#: guix-git/doc/guix.texi:33260 +#: guix-git/doc/guix.texi:33625 #, no-wrap msgid "@code{user} (default: @code{\"guix-data-service\"})" msgstr "@code{user} (Vorgabe: @code{\"guix-data-service\"})" #. type: item -#: guix-git/doc/guix.texi:33263 +#: guix-git/doc/guix.texi:33628 #, no-wrap msgid "@code{group} (default: @code{\"guix-data-service\"})" msgstr "@code{group} (Vorgabe: @code{\"guix-data-service\"})" #. type: item -#: guix-git/doc/guix.texi:33266 +#: guix-git/doc/guix.texi:33631 #, no-wrap msgid "@code{port} (default: @code{8765})" msgstr "@code{port} (Vorgabe: @code{8765})" #. type: table -#: guix-git/doc/guix.texi:33268 +#: guix-git/doc/guix.texi:33633 msgid "The port to bind the web service to." msgstr "Der Port, an den der Webdienst gebunden wird." #. type: item -#: guix-git/doc/guix.texi:33269 +#: guix-git/doc/guix.texi:33634 guix-git/doc/guix.texi:33682 #, no-wrap msgid "@code{host} (default: @code{\"127.0.0.1\"})" msgstr "@code{host} (Vorgabe: @code{\"127.0.0.1\"})" #. type: table -#: guix-git/doc/guix.texi:33271 +#: guix-git/doc/guix.texi:33636 msgid "The host to bind the web service to." msgstr "Die Netzwerkschnittstelle („Host“), an die der Webdienst gebunden wird." #. type: item -#: guix-git/doc/guix.texi:33272 +#: guix-git/doc/guix.texi:33637 #, no-wrap msgid "@code{getmail-idle-mailboxes} (default: @code{#f})" msgstr "@code{getmail-idle-mailboxes} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33275 +#: guix-git/doc/guix.texi:33640 msgid "If set, this is the list of mailboxes that the getmail service will be configured to listen to." msgstr "Wenn es festgelegt ist, wird es als Liste der Postfächer („Mailboxes“) eingerichtet, die der getmail-Dienst beobachtet." #. type: item -#: guix-git/doc/guix.texi:33276 +#: guix-git/doc/guix.texi:33641 #, no-wrap msgid "@code{commits-getmail-retriever-configuration} (default: @code{#f})" msgstr "@code{commits-getmail-retriever-configuration} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33280 +#: guix-git/doc/guix.texi:33645 msgid "If set, this is the @code{getmail-retriever-configuration} object with which to configure getmail to fetch mail from the guix-commits mailing list." msgstr "Wenn es festgelegt ist, bezeichnet dies das @code{getmail-retriever-configuration}-Objekt, mit dem getmail eingerichtet wird, um E-Mails von der „guix-commits“-Mailing-Liste zu beziehen." #. type: item -#: guix-git/doc/guix.texi:33281 +#: guix-git/doc/guix.texi:33646 #, no-wrap msgid "@code{extra-options} (default: @var{'()})" msgstr "@code{extra-options} (Vorgabe: @var{'()})" #. type: table -#: guix-git/doc/guix.texi:33283 +#: guix-git/doc/guix.texi:33648 msgid "Extra command line options for @code{guix-data-service}." msgstr "Zusätzliche Befehlszeilenoptionen für @code{guix-data-service}." #. type: item -#: guix-git/doc/guix.texi:33284 +#: guix-git/doc/guix.texi:33649 #, no-wrap msgid "@code{extra-process-jobs-options} (default: @var{'()})" msgstr "@code{extra-process-jobs-options} (Vorgabe: @var{'()})" #. type: table -#: guix-git/doc/guix.texi:33286 +#: guix-git/doc/guix.texi:33651 msgid "Extra command line options for @code{guix-data-service-process-jobs}." msgstr "Zusätzliche Befehlszeilenoptionen für @code{guix-data-service-process-jobs}." +#. type: subsubheading +#: guix-git/doc/guix.texi:33655 +#, no-wrap +msgid "Nar Herder" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:33658 +msgid "The @uref{https://git.cbaines.net/guix/nar-herder/about/,Nar Herder} is a utility for managing a collection of nars." +msgstr "" + +#. type: defvar +#: guix-git/doc/guix.texi:33659 +#, fuzzy, no-wrap +#| msgid "{Scheme Variable} ntp-service-type" +msgid "{Scheme Variable} nar-herder-type" +msgstr "{Scheme-Variable} ntp-service-type" + +#. type: defvar +#: guix-git/doc/guix.texi:33664 +#, fuzzy +#| msgid "Service type for the Guix Data Service. Its value must be a @code{guix-data-service-configuration} object. The service optionally extends the getmail service, as the guix-commits mailing list is used to find out about changes in the Guix git repository." +msgid "Service type for the Guix Data Service. Its value must be a @code{nar-herder-configuration} object. The service optionally extends the getmail service, as the guix-commits mailing list is used to find out about changes in the Guix git repository." +msgstr "Diensttyp für den Guix-Datendienst. Sein Wert muss ein @code{guix-data-service-configuration}-Objekt sein. Der Dienst kann optional den getmail-Dienst erweitern und die guix-commits-Mailing-Liste benutzen, um bei Änderungen am Guix-Git-Repository auf dem Laufenden zu bleiben." + +#. type: deftp +#: guix-git/doc/guix.texi:33666 +#, fuzzy, no-wrap +#| msgid "{Data Type} inetd-configuration" +msgid "{Data Type} nar-herder-configuration" +msgstr "{Datentyp} inetd-configuration" + +#. type: item +#: guix-git/doc/guix.texi:33670 +#, fuzzy, no-wrap +#| msgid "@code{package} (default: @code{varnish})" +msgid "@code{package} (default: @code{nar-herder})" +msgstr "@code{package} (Vorgabe: @code{varnish})" + +#. type: table +#: guix-git/doc/guix.texi:33672 +#, fuzzy +#| msgid "The Hurd package to use." +msgid "The Nar Herder package to use." +msgstr "Das zu verwendende Hurd-Paket." + +#. type: item +#: guix-git/doc/guix.texi:33673 +#, fuzzy, no-wrap +#| msgid "@code{user} (default: @code{\"httpd\"})" +msgid "@code{user} (default: @code{\"nar-herder\"})" +msgstr "@code{user} (Vorgabe: @code{\"httpd\"})" + +#. type: item +#: guix-git/doc/guix.texi:33676 +#, fuzzy, no-wrap +#| msgid "@code{group} (default: @code{\"httpd\"})" +msgid "@code{group} (default: @code{\"nar-herder\"})" +msgstr "@code{group} (Vorgabe: @code{\"httpd\"})" + +#. type: item +#: guix-git/doc/guix.texi:33679 +#, fuzzy, no-wrap +#| msgid "@code{port} (default: @code{8765})" +msgid "@code{port} (default: @code{8734})" +msgstr "@code{port} (Vorgabe: @code{8765})" + +#. type: table +#: guix-git/doc/guix.texi:33684 +#, fuzzy +#| msgid "The port to bind the server to." +msgid "The host to bind the server to." +msgstr "Der Port, an den der Server gebunden wird." + +#. type: table +#: guix-git/doc/guix.texi:33689 +msgid "Optional URL of the other Nar Herder instance which should be mirrored. This means that this Nar Herder instance will download it's database, and keep it up to date." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33690 +#, fuzzy, no-wrap +#| msgid "@code{database} (default: @code{\"/var/lib/cuirass/cuirass.db\"})" +msgid "@code{database} (default: @code{\"/var/lib/nar-herder/nar_herder.db\"})" +msgstr "@code{database} (Vorgabe: @code{\"/var/lib/cuirass/cuirass.db\"})" + +#. type: table +#: guix-git/doc/guix.texi:33695 +msgid "Location for the database. If this Nar Herder instance is mirroring another, the database will be downloaded if it doesn't exist. If this Nar Herder instance isn't mirroring another, an empty database will be created." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33696 +#, fuzzy, no-wrap +#| msgid "@code{database} (default: @code{\"/var/lib/cuirass/cuirass.db\"})" +msgid "@code{database-dump} (default: @code{\"/var/lib/nar-herder/nar_herder_dump.db\"})" +msgstr "@code{database} (Vorgabe: @code{\"/var/lib/cuirass/cuirass.db\"})" + +#. type: table +#: guix-git/doc/guix.texi:33700 +msgid "Location of the database dump. This is created and regularly updated by taking a copy of the database. This is the version of the database that is available to download." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33701 +#, fuzzy, no-wrap +#| msgid "@code{source} (default: @code{#f})" +msgid "@code{storage} (default: @code{#f})" +msgstr "@code{source} (Vorgabe: @code{#f})" + +#. type: table +#: guix-git/doc/guix.texi:33703 +#, fuzzy +#| msgid "Directory in which to store the data." +msgid "Optional location in which to store nars." +msgstr "Das Verzeichnis, in dem die Daten gespeichert werden sollen." + +#. type: item +#: guix-git/doc/guix.texi:33704 +#, fuzzy, no-wrap +#| msgid "@code{secret} (default: @code{\"\"})" +msgid "@code{storage-limit} (default: @code{\"none\"})" +msgstr "@code{secret} (Vorgabe: @code{\"\"})" + +#. type: table +#: guix-git/doc/guix.texi:33707 +msgid "Limit in bytes for the nars stored in the storage location. This can also be set to ``none'' so that there is no limit." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33710 +msgid "When the storage location exceeds this size, nars are removed according to the nar removal criteria." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33711 +#, fuzzy, no-wrap +#| msgid "@code{server} (default: @code{'()})" +msgid "@code{storage-nar-removal-criteria} (default: @code{'()})" +msgstr "@code{server} (Vorgabe: @code{'()})" + +#. type: table +#: guix-git/doc/guix.texi:33714 +msgid "Criteria used to remove nars from the storage location. These are used in conjunction with the storage limit." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33719 +msgid "When the storage location exceeds the storage limit size, nars will be checked against the nar removal criteria and if any of the criteria match, they will be removed. This will continue until the storage location is below the storage limit size." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33723 +msgid "Each criteria is specified by a string, then an equals sign, then another string. Currently, only one criteria is supported, checking if a nar is stored on another Nar Herder instance." +msgstr "" + #. type: cindex -#: guix-git/doc/guix.texi:33293 +#: guix-git/doc/guix.texi:33730 #, no-wrap msgid "oom" msgstr "OOM" #. type: cindex -#: guix-git/doc/guix.texi:33294 +#: guix-git/doc/guix.texi:33731 #, no-wrap msgid "out of memory killer" msgstr "Out-Of-Memory-Killer" #. type: cindex -#: guix-git/doc/guix.texi:33295 +#: guix-git/doc/guix.texi:33732 #, no-wrap msgid "earlyoom" msgstr "earlyoom" #. type: cindex -#: guix-git/doc/guix.texi:33296 +#: guix-git/doc/guix.texi:33733 #, no-wrap msgid "early out of memory daemon" msgstr "Early-Out-Of-Memory-Daemon" #. type: subsubheading -#: guix-git/doc/guix.texi:33297 +#: guix-git/doc/guix.texi:33734 #, no-wrap msgid "Early OOM Service" msgstr "Early-OOM-Dienst" #. type: Plain text -#: guix-git/doc/guix.texi:33304 +#: guix-git/doc/guix.texi:33741 msgid "@uref{https://github.com/rfjakob/earlyoom,Early OOM}, also known as Earlyoom, is a minimalist out of memory (OOM) daemon that runs in user space and provides a more responsive and configurable alternative to the in-kernel OOM killer. It is useful to prevent the system from becoming unresponsive when it runs out of memory." msgstr "@uref{https://github.com/rfjakob/earlyoom,Early OOM}, auch bekannt als Earlyoom, ist ein minimalistischer Out-Of-Memory-Daemon (OOM), um auf Anwendungsebene („User Space“) Programme abzuwürgen, wenn einem der freie Arbeitsspeicher ausgeht (ein „OOM-Killer“). Er stellt eine Alternative zum im Kernel eingebauten OOM-Killer dar, mit der das System in einem solchen Fall besser weiterhin auf Benutzereingaben reagieren kann und die konfigurierbarer ist." #. type: deffn -#: guix-git/doc/guix.texi:33305 +#: guix-git/doc/guix.texi:33742 #, no-wrap msgid "{Scheme Variable} earlyoom-service-type" msgstr "{Scheme-Variable} earlyoom-service-type" #. type: deffn -#: guix-git/doc/guix.texi:33310 +#: guix-git/doc/guix.texi:33747 msgid "The service type for running @command{earlyoom}, the Early OOM daemon. Its value must be a @code{earlyoom-configuration} object, described below. The service can be instantiated in its default configuration with:" msgstr "Der Diensttyp, um @command{earlyoom}, den Early-OOM-Daemon, auszuführen. Als Wert muss ein @code{earlyoom-configuration}-Objekt angegeben werden, wie unten beschrieben. So kann der Dienst mit seiner Vorgabekonfiguration instanziieret werden:" #. type: lisp -#: guix-git/doc/guix.texi:33313 +#: guix-git/doc/guix.texi:33750 #, no-wrap msgid "(service earlyoom-service-type)\n" msgstr "(service earlyoom-service-type)\n" #. type: deftp -#: guix-git/doc/guix.texi:33316 +#: guix-git/doc/guix.texi:33753 #, no-wrap msgid "{Data Type} earlyoom-configuration" msgstr "{Datentyp} earlyoom-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33318 +#: guix-git/doc/guix.texi:33755 msgid "This is the configuration record for the @code{earlyoom-service-type}." msgstr "Dies ist das Verbundsobjekt mit der Konfiguration des @code{earlyoom-service-type}." #. type: item -#: guix-git/doc/guix.texi:33320 +#: guix-git/doc/guix.texi:33757 #, no-wrap msgid "@code{earlyoom} (default: @var{earlyoom})" msgstr "@code{earlyoom} (Vorgabe: @var{earlyoom})" #. type: table -#: guix-git/doc/guix.texi:33322 +#: guix-git/doc/guix.texi:33759 msgid "The Earlyoom package to use." msgstr "Das Earlyoom-Paket, das benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:33323 +#: guix-git/doc/guix.texi:33760 #, no-wrap msgid "@code{minimum-available-memory} (default: @code{10})" msgstr "@code{minimum-available-memory} (Vorgabe: @code{10})" #. type: table -#: guix-git/doc/guix.texi:33325 +#: guix-git/doc/guix.texi:33762 msgid "The threshold for the minimum @emph{available} memory, in percentages." msgstr "Der Schwellwert, wie viel Arbeitsspeicher mindestens @emph{verfügbar} bleiben muss, in Prozent." #. type: item -#: guix-git/doc/guix.texi:33326 +#: guix-git/doc/guix.texi:33763 #, no-wrap msgid "@code{minimum-free-swap} (default: @code{10})" msgstr "@code{minimum-free-swap} (Vorgabe: @code{10})" #. type: table -#: guix-git/doc/guix.texi:33328 +#: guix-git/doc/guix.texi:33765 msgid "The threshold for the minimum free swap memory, in percentages." msgstr "Der Schwellwert, wie viel Swap-Speicher mindestens frei bleiben muss, in Prozent." #. type: item -#: guix-git/doc/guix.texi:33329 +#: guix-git/doc/guix.texi:33766 #, no-wrap msgid "@code{prefer-regexp} (default: @code{#f})" msgstr "@code{prefer-regexp} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33332 +#: guix-git/doc/guix.texi:33769 msgid "A regular expression (as a string) to match the names of the processes that should be preferably killed." msgstr "Ein regulärer Ausdruck (als eine Zeichenkette), der auf die Namen jener Prozesse passt, die als Erste abgewürgt werden sollen." #. type: item -#: guix-git/doc/guix.texi:33333 +#: guix-git/doc/guix.texi:33770 #, no-wrap msgid "@code{avoid-regexp} (default: @code{#f})" msgstr "@code{avoid-regexp} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33336 +#: guix-git/doc/guix.texi:33773 msgid "A regular expression (as a string) to match the names of the processes that should @emph{not} be killed." msgstr "Ein regulärer Ausdruck (als eine Zeichenkette), der auf die Namen jener Prozesse passt, die @emph{nicht} abgewürgt werden sollen.<" #. type: item -#: guix-git/doc/guix.texi:33337 +#: guix-git/doc/guix.texi:33774 #, no-wrap msgid "@code{memory-report-interval} (default: @code{0})" msgstr "@code{memory-report-interval} (Vorgabe: @code{0})" #. type: table -#: guix-git/doc/guix.texi:33340 +#: guix-git/doc/guix.texi:33777 msgid "The interval in seconds at which a memory report is printed. It is disabled by default." msgstr "Das Intervall in Sekunden, in dem ein Bericht über den Speicher ausgegeben werden soll. Nach Vorgabe ist es deaktiviert." #. type: item -#: guix-git/doc/guix.texi:33341 +#: guix-git/doc/guix.texi:33778 #, no-wrap msgid "@code{ignore-positive-oom-score-adj?} (default: @code{#f})" msgstr "@code{ignore-positive-oom-score-adj?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33344 +#: guix-git/doc/guix.texi:33781 msgid "A boolean indicating whether the positive adjustments set in @file{/proc/*/oom_score_adj} should be ignored." msgstr "Ein boolescher Wert, der angibt, ob die in @file{/proc/*/oom_score_adj} festgelegten Anpassungen nach oben ignoriert werden sollen." #. type: item -#: guix-git/doc/guix.texi:33345 +#: guix-git/doc/guix.texi:33782 #, no-wrap msgid "@code{show-debug-messages?} (default: @code{#f})" msgstr "@code{show-debug-messages?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33348 +#: guix-git/doc/guix.texi:33785 msgid "A boolean indicating whether debug messages should be printed. The logs are saved at @file{/var/log/earlyoom.log}." msgstr "Ein boolescher Ausdruck, der angibt, ob Nachrichten zur Fehlersuche ausgegeben werden sollen. Die Protokolle werden unter @file{/var/log/earlyoom.log} gespeichert." #. type: item -#: guix-git/doc/guix.texi:33349 +#: guix-git/doc/guix.texi:33786 #, no-wrap msgid "@code{send-notification-command} (default: @code{#f})" msgstr "@code{send-notification-command} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33352 +#: guix-git/doc/guix.texi:33789 msgid "This can be used to provide a custom command used for sending notifications." msgstr "Hiermit kann ein eigener Befehl eingestellt werden, um Benachrichtigungen zu senden." #. type: cindex -#: guix-git/doc/guix.texi:33355 +#: guix-git/doc/guix.texi:33792 #, no-wrap msgid "modprobe" msgstr "modprobe" #. type: cindex -#: guix-git/doc/guix.texi:33356 +#: guix-git/doc/guix.texi:33793 #, no-wrap msgid "kernel module loader" msgstr "Kernelmodule laden" #. type: subsubheading -#: guix-git/doc/guix.texi:33357 +#: guix-git/doc/guix.texi:33794 #, no-wrap msgid "Kernel Module Loader Service" msgstr "Kernelmodul-Ladedienst" #. type: Plain text -#: guix-git/doc/guix.texi:33363 +#: guix-git/doc/guix.texi:33800 msgid "The kernel module loader service allows one to load loadable kernel modules at boot. This is especially useful for modules that don't autoload and need to be manually loaded, as is the case with @code{ddcci}." msgstr "Mit dem Kernelmodul-Ladedienst („Kernel Module Loader Service“) können Sie veranlassen, dass hinzuladbare Kernelmodule beim Systemstart geladen werden. Das bietet sich besonders für Module an, die nicht automatisch geladen werden („Autoload“), sondern manuell geladen werden müssen, wie es z.B.@: bei @code{ddcci} der Fall ist." #. type: deffn -#: guix-git/doc/guix.texi:33364 +#: guix-git/doc/guix.texi:33801 #, no-wrap msgid "{Scheme Variable} kernel-module-loader-service-type" msgstr "{Scheme-Variable} kernel-module-loader-service-type" #. type: deffn -#: guix-git/doc/guix.texi:33370 +#: guix-git/doc/guix.texi:33807 msgid "The service type for loading loadable kernel modules at boot with @command{modprobe}. Its value must be a list of strings representing module names. For example loading the drivers provided by @code{ddcci-driver-linux}, in debugging mode by passing some module parameters, can be done as follow:" msgstr "Der Diensttyp, um hinzuladbare Kernelmodule beim Systemstart über @command{modprobe} zu laden. Als Wert muss eine Liste von Zeichenketten angegeben werden, die den Modulnamen entsprechen. Um zum Beispiel die durch @code{ddcci-driver-linux} zur Verfügung gestellten Treiber zu laden und dabei durch Übergabe bestimmter Parameter den Modus zur Fehlersuche zu aktivieren, können Sie Folgendes benutzen:" #. type: lisp -#: guix-git/doc/guix.texi:33375 +#: guix-git/doc/guix.texi:33812 #, no-wrap msgid "" "(use-modules (gnu) (gnu services))\n" @@ -62182,7 +63078,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:33379 +#: guix-git/doc/guix.texi:33816 #, no-wrap msgid "" "(define ddcci-config\n" @@ -62196,7 +63092,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:33389 +#: guix-git/doc/guix.texi:33826 #, no-wrap msgid "" "(operating-system\n" @@ -62220,411 +63116,411 @@ msgstr "" " (kernel-loadable-modules (list ddcci-driver-linux)))\n" #. type: cindex -#: guix-git/doc/guix.texi:33392 +#: guix-git/doc/guix.texi:33829 #, no-wrap msgid "rasdaemon" msgstr "rasdaemon" #. type: cindex -#: guix-git/doc/guix.texi:33393 +#: guix-git/doc/guix.texi:33830 #, no-wrap msgid "Platform Reliability, Availability and Serviceability daemon" msgstr "Daemon für Reliability, Availability und Serviceability" #. type: subsubheading -#: guix-git/doc/guix.texi:33394 +#: guix-git/doc/guix.texi:33831 #, no-wrap msgid "Rasdaemon Service" msgstr "Rasdaemon-Dienst" #. type: Plain text -#: guix-git/doc/guix.texi:33399 +#: guix-git/doc/guix.texi:33836 msgid "The Rasdaemon service provides a daemon which monitors platform @acronym{RAS, Reliability@comma{} Availability@comma{} and Serviceability} reports from Linux kernel trace events, logging them to syslogd." msgstr "Mit dem Rasdaemon-Dienst steht Ihnen ein Daemon zur Verfügung, mit dem Trace-Ereignisse des Linux-Kernels bezüglich der Zuverlässigkeit (Reliability), Verfügbarkeit (Availability) und Wartbarkeit (Serviceability) der Plattform beobachtet werden. Sie werden in syslogd protokolliert." #. type: Plain text -#: guix-git/doc/guix.texi:33402 +#: guix-git/doc/guix.texi:33839 msgid "Reliability, Availability and Serviceability is a concept used on servers meant to measure their robustness." msgstr "Reliability, Availability, Serviceability ist ein Konzept auf Servern, um deren Robustheit zu messen." #. type: Plain text -#: guix-git/doc/guix.texi:33405 +#: guix-git/doc/guix.texi:33842 msgid "@strong{Relability} is the probability that a system will produce correct outputs:" msgstr "@strong{Relability} (Zuverlässigkeit) ist die Wahrscheinlichkeit, mit der ein System korrekte Ausgaben liefert:" #. type: item -#: guix-git/doc/guix.texi:33407 +#: guix-git/doc/guix.texi:33844 #, no-wrap msgid "Generally measured as Mean Time Between Failures (MTBF), and" msgstr "Im Allgemeinen wird sie durch die Mittlere Betriebsdauer zwischen Ausfällen (Mean Time Between Failures, MTBF) beziffert." #. type: item -#: guix-git/doc/guix.texi:33408 +#: guix-git/doc/guix.texi:33845 #, no-wrap msgid "Enhanced by features that help to avoid, detect and repair hardware" msgstr "Sie wird besser, wenn Hardware-Fehler vermieden, erkannt oder" #. type: itemize -#: guix-git/doc/guix.texi:33410 +#: guix-git/doc/guix.texi:33847 msgid "faults" msgstr "repariert werden können." #. type: Plain text -#: guix-git/doc/guix.texi:33414 +#: guix-git/doc/guix.texi:33851 msgid "@strong{Availability} is the probability that a system is operational at a given time:" msgstr "@strong{Availability} (Verfügbarkeit) ist die Wahrscheinlichkeit, dass ein System zu einem bestimmten Zeitpunkt betriebsbereit ist:" #. type: item -#: guix-git/doc/guix.texi:33416 +#: guix-git/doc/guix.texi:33853 #, no-wrap msgid "Generally measured as a percentage of downtime per a period of time, and" msgstr "Im Allgemeinen wird sie als Anteil der Ausfallzeit an der Gesamtzeit gemessen." #. type: item -#: guix-git/doc/guix.texi:33417 +#: guix-git/doc/guix.texi:33854 #, no-wrap msgid "Often uses mechanisms to detect and correct hardware faults in runtime." msgstr "Oft kommen hier Mechanismen zum Einsatz, um Hardware-Fehler im laufenden Betrieb zu erkennen und zu beheben." #. type: Plain text -#: guix-git/doc/guix.texi:33422 +#: guix-git/doc/guix.texi:33859 msgid "@strong{Serviceability} is the simplicity and speed with which a system can be repaired or maintained:" msgstr "@strong{Serviceability} (Wartbarkeit) bezeichnet, wie einfach und schnell ein System repariert und gepflegt werden kann:" #. type: item -#: guix-git/doc/guix.texi:33424 +#: guix-git/doc/guix.texi:33861 #, no-wrap msgid "Generally measured on Mean Time Between Repair (MTBR)." msgstr "Im Allgemeinen wird sie durch den Mittleren Abstand zwischen Reparaturen (Mean Time Between Repair, MTBR) gemessen." #. type: Plain text -#: guix-git/doc/guix.texi:33429 +#: guix-git/doc/guix.texi:33866 msgid "Among the monitoring measures, the most usual ones include:" msgstr "Zu den beobachtbaren Messwerten gehören für gewöhnlich:" #. type: item -#: guix-git/doc/guix.texi:33431 +#: guix-git/doc/guix.texi:33868 #, no-wrap msgid "CPU – detect errors at instruction execution and at L1/L2/L3 caches;" msgstr "Prozessor – Fehler erkennen bei der Befehlsausführung (Instruction Execution) und an den Prozessor-Caches (L1/L2/L3)," #. type: item -#: guix-git/doc/guix.texi:33432 +#: guix-git/doc/guix.texi:33869 #, no-wrap msgid "Memory – add error correction logic (ECC) to detect and correct errors;" msgstr "Arbeitsspeicher – Fehlerbehebungslogik wie ECC einbauen, um Fehler zu erkennen und zu beheben," #. type: item -#: guix-git/doc/guix.texi:33433 +#: guix-git/doc/guix.texi:33870 #, no-wrap msgid "I/O – add CRC checksums for transferred data;" msgstr "Ein-/Ausgabe – CRC-Prüfsummen für übertragene Daten einbauen," #. type: item -#: guix-git/doc/guix.texi:33434 +#: guix-git/doc/guix.texi:33871 #, no-wrap msgid "Storage – RAID, journal file systems, checksums, Self-Monitoring," msgstr "Massenspeicher – RAID, Journaling in Dateisystemen, Prüfsummen," #. type: itemize -#: guix-git/doc/guix.texi:33436 +#: guix-git/doc/guix.texi:33873 msgid "Analysis and Reporting Technology (SMART)." msgstr "Selbstüberwachung, Technologien zur Analyse und Berichterstattung (SMART)." #. type: Plain text -#: guix-git/doc/guix.texi:33442 +#: guix-git/doc/guix.texi:33879 msgid "By monitoring the number of occurrences of error detections, it is possible to identify if the probability of hardware errors is increasing, and, on such case, do a preventive maintenance to replace a degraded component while those errors are correctable." msgstr "Durch das Beobachten, wie oft Fehler erkannt werden, kann bestimmt werden, ob die Wahrscheinlichkeit von Hardware-Fehlern zunimmt, und in diesem Fall kann ein vorsorglicher Austausch der schwächelnden Komponente vorgenommen werden, solange die Fehler leicht zu beheben sind." #. type: Plain text -#: guix-git/doc/guix.texi:33446 +#: guix-git/doc/guix.texi:33883 msgid "For detailed information about the types of error events gathered and how to make sense of them, see the kernel administrator's guide at @url{https://www.kernel.org/doc/html/latest/admin-guide/ras.html}." msgstr "Genaue Informationen über die Arten der gesammelten Fehlerereignisse und was sie bedeuten finden Sie in der Anleitung für Kernel-Administratoren unter @url{https://www.kernel.org/doc/html/latest/admin-guide/ras.html}." #. type: defvr -#: guix-git/doc/guix.texi:33447 +#: guix-git/doc/guix.texi:33884 #, no-wrap msgid "{Scheme Variable} rasdaemon-service-type" msgstr "{Scheme-Variable} rasdaemon-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33450 +#: guix-git/doc/guix.texi:33887 msgid "Service type for the @command{rasdaemon} service. It accepts a @code{rasdaemon-configuration} object. Instantiating like" msgstr "Diensttyp für den @command{rasdaemon}-Dienst. Als Wert nimmt er ein @code{rasdaemon-configuration}-Objekt. Sie instanziieren ihn so:" #. type: lisp -#: guix-git/doc/guix.texi:33453 +#: guix-git/doc/guix.texi:33890 #, no-wrap msgid "(service rasdaemon-service-type)\n" msgstr "(service rasdaemon-service-type)\n" #. type: defvr -#: guix-git/doc/guix.texi:33457 +#: guix-git/doc/guix.texi:33894 msgid "will load with a default configuration, which monitors all events and logs to syslogd." msgstr "Dadurch wird die Vorgabekonfiguration geladen, mit der alle Ereignisse beobachtet und mit syslogd protokolliert werden." #. type: deftp -#: guix-git/doc/guix.texi:33459 +#: guix-git/doc/guix.texi:33896 #, no-wrap msgid "{Data Type} rasdaemon-configuration" msgstr "{Datentyp} rasdaemon-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33461 +#: guix-git/doc/guix.texi:33898 msgid "The data type representing the configuration of @command{rasdaemon}." msgstr "Repräsentiert die Konfiguration von @command{rasdaemon}." #. type: item -#: guix-git/doc/guix.texi:33463 +#: guix-git/doc/guix.texi:33900 #, no-wrap msgid "@code{record?} (default: @code{#f})" msgstr "@code{record?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33468 +#: guix-git/doc/guix.texi:33905 msgid "A boolean indicating whether to record the events in an SQLite database. This provides a more structured access to the information contained in the log file. The database location is hard-coded to @file{/var/lib/rasdaemon/ras-mc_event.db}." msgstr "Ein Boolescher Ausdruck, der anzeigt, ob die Ereignisse in eine SQLite-Datenbank geschrieben werden. Dadurch wird ein strukturierterer Zugang zu den Informationen aus der Protokolldatei ermöglicht. Der Ort für die Datenbank ist fest einprogrammiert als @file{/var/lib/rasdaemon/ras-mc_event.db}." #. type: cindex -#: guix-git/doc/guix.texi:33472 +#: guix-git/doc/guix.texi:33909 #, no-wrap msgid "zram" msgstr "zram" #. type: cindex -#: guix-git/doc/guix.texi:33473 +#: guix-git/doc/guix.texi:33910 #, no-wrap msgid "compressed swap" msgstr "komprimierter Swap-Speicher" #. type: cindex -#: guix-git/doc/guix.texi:33474 +#: guix-git/doc/guix.texi:33911 #, no-wrap msgid "Compressed RAM-based block devices" msgstr "komprimierte Blockgeräte im Arbeitsspeicher („RAM“)" #. type: subsubheading -#: guix-git/doc/guix.texi:33475 +#: guix-git/doc/guix.texi:33912 #, no-wrap msgid "Zram Device Service" msgstr "Dienst für Zram-Geräte" #. type: Plain text -#: guix-git/doc/guix.texi:33481 +#: guix-git/doc/guix.texi:33918 msgid "The Zram device service provides a compressed swap device in system memory. The Linux Kernel documentation has more information about @uref{https://www.kernel.org/doc/html/latest/admin-guide/blockdev/zram.html,zram} devices." msgstr "Der Dienst für Zram-Geräte macht ein komprimiertes Swap-Gerät im Arbeitsspeicher verfügbar. Mehr Informationen finden Sie in der Linux-Kernel-Dokumentation @uref{https://www.kernel.org/doc/html/latest/admin-guide/blockdev/zram.html,über Zram-Geräte}." #. type: deffn -#: guix-git/doc/guix.texi:33482 +#: guix-git/doc/guix.texi:33919 #, no-wrap msgid "{Scheme Variable} zram-device-service-type" msgstr "{Scheme-Variable} zram-device-service-type" #. type: deffn -#: guix-git/doc/guix.texi:33486 +#: guix-git/doc/guix.texi:33923 msgid "This service creates the zram block device, formats it as swap and enables it as a swap device. The service's value is a @code{zram-device-configuration} record." msgstr "Dieser Dienst erzeugt das Zram-Blockgerät, formatiert es als Swap-Speicher und aktiviert es als ein Swap-Gerät. Der Wert des Dienstes ist ein @code{zram-device-configuration}-Verbundsobjekt." #. type: deftp -#: guix-git/doc/guix.texi:33487 +#: guix-git/doc/guix.texi:33924 #, no-wrap msgid "{Data Type} zram-device-configuration" msgstr "{Datentyp} zram-device-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33490 +#: guix-git/doc/guix.texi:33927 msgid "This is the data type representing the configuration for the zram-device service." msgstr "Dieser Datentyp repräsentiert die Konfiguration des zram-device-Dienstes." #. type: item -#: guix-git/doc/guix.texi:33492 +#: guix-git/doc/guix.texi:33929 #, no-wrap msgid "@code{size} (default @code{\"1G\"})" msgstr "@code{size} (Vorgabe: @code{\"1G\"})" #. type: table -#: guix-git/doc/guix.texi:33496 +#: guix-git/doc/guix.texi:33933 msgid "This is the amount of space you wish to provide for the zram device. It accepts a string and can be a number of bytes or use a suffix, eg.: @code{\"512M\"} or @code{1024000}." msgstr "Wie viel Speicher Sie für das Zram-Gerät verfügbar machen möchten. Angegeben werden kann eine Zeichenkette oder eine Zahl mit der Anzahl Bytes oder mit einem Suffix, z.B.@: @code{\"512M\"} oder @code{1024000}." #. type: item -#: guix-git/doc/guix.texi:33496 +#: guix-git/doc/guix.texi:33933 #, no-wrap msgid "@code{compression-algorithm} (default @code{'lzo})" msgstr "@code{compression-algorithm} (Vorgabe: @code{'lzo})" #. type: table -#: guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:33937 msgid "This is the compression algorithm you wish to use. It is difficult to list all the possible compression options, but common ones supported by Guix's Linux Libre Kernel include @code{'lzo}, @code{'lz4} and @code{'zstd}." msgstr "Welchen Kompressionsalgorithmus Sie verwenden möchten. Alle Konfigurationsmöglichkeiten lassen sich hier nicht aufzählen, aber der Linux-Libre-Kernel von Guix unterstützt unter anderem die häufig benutzten @code{'lzo}, @code{'lz4} und @code{'zstd}." #. type: item -#: guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:33937 #, no-wrap msgid "@code{memory-limit} (default @code{0})" msgstr "@code{memory-limit} (Vorgabe: @code{0})" #. type: table -#: guix-git/doc/guix.texi:33507 +#: guix-git/doc/guix.texi:33944 msgid "This is the maximum amount of memory which the zram device can use. Setting it to '0' disables the limit. While it is generally expected that compression will be 2:1, it is possible that uncompressable data can be written to swap and this is a method to limit how much memory can be used. It accepts a string and can be a number of bytes or use a suffix, eg.: @code{\"2G\"}." msgstr "Wie viel Arbeitsspeicher dem Zram-Gerät höchstens zur Verfügung steht. Wenn es auf 0 steht, entfällt die Beschränkung. Obwohl im Allgemeinen von einem Kompressionsverhältnis von 2:1 ausgegangen wird, kann es passieren, dass @emph{nicht} komprimierbare Daten den Swap-Speicher füllen. Mit diesem Feld kann das begrenzt werden. Es nimmt eine Zeichenkette oder eine Anzahl Bytes; ein Suffix kann angegeben werden, z.B.@: @code{\"2G\"}." #. type: item -#: guix-git/doc/guix.texi:33507 +#: guix-git/doc/guix.texi:33944 #, no-wrap msgid "@code{priority} (default @code{-1})" msgstr "@code{priority} (Vorgabe: @code{-1})" #. type: table -#: guix-git/doc/guix.texi:33512 +#: guix-git/doc/guix.texi:33949 msgid "This is the priority of the swap device created from the zram device. @code{swapon} accepts values between -1 and 32767, with higher values indicating higher priority. Higher priority swap will generally be used first." msgstr "Die Priorität des Swap-Geräts, das aus dem Zram-Gerät erzeugt wird. @code{swapon} akzeptiert Werte zwischen -1 und 32767, dabei stehen höhere Werte für eine höhere Priorität. Höher priorisierter Speicher wird in der Regel zuerst benutzt." #. type: defvr -#: guix-git/doc/guix.texi:33520 +#: guix-git/doc/guix.texi:33957 #, no-wrap msgid "{Scheme Variable} hurd-console-service-type" msgstr "{Scheme-Variable} hurd-console-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33522 +#: guix-git/doc/guix.texi:33959 msgid "This service starts the fancy @code{VGA} console client on the Hurd." msgstr "Diensttyp, mit dem der fantastische @code{VGA}-Konsolen-Client auf Hurd ausgeführt wird." #. type: defvr -#: guix-git/doc/guix.texi:33524 +#: guix-git/doc/guix.texi:33961 msgid "The service's value is a @code{hurd-console-configuration} record." msgstr "Der Wert des Dienstes ist ein @code{hurd-console-configuration}-Verbundsobjekt." #. type: deftp -#: guix-git/doc/guix.texi:33526 +#: guix-git/doc/guix.texi:33963 #, no-wrap msgid "{Data Type} hurd-console-configuration" msgstr "{Datentyp} hurd-console-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33529 +#: guix-git/doc/guix.texi:33966 msgid "This is the data type representing the configuration for the hurd-console-service." msgstr "Dieser Datentyp repräsentiert die Konfiguration des hurd-console-Dienstes." #. type: item -#: guix-git/doc/guix.texi:33531 guix-git/doc/guix.texi:33547 +#: guix-git/doc/guix.texi:33968 guix-git/doc/guix.texi:33984 #, no-wrap msgid "@code{hurd} (default: @var{hurd})" msgstr "@code{hurd} (Vorgabe: @var{hurd})" #. type: table -#: guix-git/doc/guix.texi:33533 guix-git/doc/guix.texi:33549 +#: guix-git/doc/guix.texi:33970 guix-git/doc/guix.texi:33986 msgid "The Hurd package to use." msgstr "Das zu verwendende Hurd-Paket." #. type: defvr -#: guix-git/doc/guix.texi:33536 +#: guix-git/doc/guix.texi:33973 #, no-wrap msgid "{Scheme Variable} hurd-getty-service-type" msgstr "{Scheme-Variable} hurd-getty-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33538 +#: guix-git/doc/guix.texi:33975 msgid "This service starts a tty using the Hurd @code{getty} program." msgstr "Der Diensttyp, um ein TTY über Hurds @code{getty}-Programm zu starten." #. type: defvr -#: guix-git/doc/guix.texi:33540 +#: guix-git/doc/guix.texi:33977 msgid "The service's value is a @code{hurd-getty-configuration} record." msgstr "Der Wert des Dienstes ist ein @code{hurd-getty-configuration}-Verbundsobjekt." #. type: deftp -#: guix-git/doc/guix.texi:33542 +#: guix-git/doc/guix.texi:33979 #, no-wrap msgid "{Data Type} hurd-getty-configuration" msgstr "{Datentyp} hurd-getty-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33545 +#: guix-git/doc/guix.texi:33982 msgid "This is the data type representing the configuration for the hurd-getty-service." msgstr "Dieser Datentyp repräsentiert die Konfiguration des hurd-getty-Dienstes." #. type: table -#: guix-git/doc/guix.texi:33552 +#: guix-git/doc/guix.texi:33989 msgid "The name of the console this Getty runs on---e.g., @code{\"tty1\"}." msgstr "Der Name der Konsole, auf der dieses Getty läuft@tie{}— z.B.@: @code{\"tty1\"}." #. type: item -#: guix-git/doc/guix.texi:33553 +#: guix-git/doc/guix.texi:33990 #, no-wrap msgid "@code{baud-rate} (default: @code{38400})" msgstr "@code{baud-rate} (Vorgabe: @code{38400})" #. type: table -#: guix-git/doc/guix.texi:33555 +#: guix-git/doc/guix.texi:33992 msgid "An integer specifying the baud rate of the tty." msgstr "Eine ganze Zahl, die die Baud-Rate des TTYs angibt." #. type: cindex -#: guix-git/doc/guix.texi:33562 +#: guix-git/doc/guix.texi:33999 #, no-wrap msgid "fingerprint" msgstr "Fingerabdruck" #. type: subsubheading -#: guix-git/doc/guix.texi:33563 +#: guix-git/doc/guix.texi:34000 #, no-wrap msgid "Fingerprint Service" msgstr "Fingerabdrucklese-Dienst" #. type: Plain text -#: guix-git/doc/guix.texi:33567 +#: guix-git/doc/guix.texi:34004 msgid "The @code{(gnu services authentication)} module provides a DBus service to read and identify fingerprints via a fingerprint sensor." msgstr "Das Modul @code{(gnu services authentication)} stellt einen DBus-Dienst zur Verfügung, mit dem Fingerabdrücke mit Hilfe eines Fingerabdrucksensors gelesen und identifiziert werden können." #. type: defvr -#: guix-git/doc/guix.texi:33568 +#: guix-git/doc/guix.texi:34005 #, no-wrap msgid "{Scheme Variable} fprintd-service-type" msgstr "{Scheme-Variable} fprintd-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33571 +#: guix-git/doc/guix.texi:34008 msgid "The service type for @command{fprintd}, which provides the fingerprint reading capability." msgstr "Der Diensttyp für @command{fprintd}, mit dem Fingerabdrücke gelesen werden können." #. type: lisp -#: guix-git/doc/guix.texi:33574 +#: guix-git/doc/guix.texi:34011 #, no-wrap msgid "(service fprintd-service-type)\n" msgstr "(service fprintd-service-type)\n" #. type: cindex -#: guix-git/doc/guix.texi:33577 +#: guix-git/doc/guix.texi:34014 #, no-wrap msgid "sysctl" msgstr "sysctl" #. type: subsubheading -#: guix-git/doc/guix.texi:33578 +#: guix-git/doc/guix.texi:34015 #, no-wrap msgid "System Control Service" msgstr "Systemsteuerungsdienst" #. type: Plain text -#: guix-git/doc/guix.texi:33582 +#: guix-git/doc/guix.texi:34019 msgid "The @code{(gnu services sysctl)} provides a service to configure kernel parameters at boot." msgstr "Das Modul @code{(gnu services sysctl)} stellt einen Dienst zur Verfügung, um Kernelparameter zur Boot-Zeit einzustellen." #. type: defvr -#: guix-git/doc/guix.texi:33583 +#: guix-git/doc/guix.texi:34020 #, no-wrap msgid "{Scheme Variable} sysctl-service-type" msgstr "{Scheme-Variable} sysctl-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33587 +#: guix-git/doc/guix.texi:34024 msgid "The service type for @command{sysctl}, which modifies kernel parameters under @file{/proc/sys/}. To enable IPv4 forwarding, it can be instantiated as:" msgstr "Der Diensttyp für @command{sysctl}, das Kernel-Parameter unter @file{/proc/sys/} anpasst. Um IPv4-Weiterleitung („Forwarding“) zu aktivieren, kann er auf diese Weise instanziiert werden:" #. type: lisp -#: guix-git/doc/guix.texi:33592 +#: guix-git/doc/guix.texi:34029 #, no-wrap msgid "" "(service sysctl-service-type\n" @@ -62636,12 +63532,12 @@ msgstr "" " (settings '((\"net.ipv4.ip_forward\" . \"1\")))))\n" #. type: defvr -#: guix-git/doc/guix.texi:33599 +#: guix-git/doc/guix.texi:34036 msgid "Since @code{sysctl-service-type} is used in the default lists of services, @code{%base-services} and @code{%desktop-services}, you can use @code{modify-services} to change its configuration and add the kernel parameters that you want (@pxref{Service Reference, @code{modify-services}})." msgstr "Weil @code{sysctl-service-type} in den Listen vorgegebener Dienste vorkommt, sowohl in @code{%base-services} als auch in @code{%desktop-services}, können Sie @code{modify-services} benutzen, um seine Konfiguration zu ändern und die Kernel-Parameter einzutragen, die Sie möchten (siehe @ref{Service Reference, @code{modify-services}})." #. type: lisp -#: guix-git/doc/guix.texi:33606 +#: guix-git/doc/guix.texi:34043 #, no-wrap msgid "" "(modify-services %base-services\n" @@ -62657,463 +63553,463 @@ msgstr "" " %default-sysctl-settings)))))\n" #. type: deftp -#: guix-git/doc/guix.texi:33610 +#: guix-git/doc/guix.texi:34047 #, no-wrap msgid "{Data Type} sysctl-configuration" msgstr "{Datentyp} sysctl-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33612 +#: guix-git/doc/guix.texi:34049 msgid "The data type representing the configuration of @command{sysctl}." msgstr "Der Datentyp, der die Konfiguration von @command{sysctl} repräsentiert." #. type: item -#: guix-git/doc/guix.texi:33614 +#: guix-git/doc/guix.texi:34051 #, no-wrap msgid "@code{sysctl} (default: @code{(file-append procps \"/sbin/sysctl\"})" msgstr "@code{sysctl} (Vorgabe: @code{(file-append procps \"/sbin/sysctl\"})" #. type: table -#: guix-git/doc/guix.texi:33616 +#: guix-git/doc/guix.texi:34053 msgid "The @command{sysctl} executable to use." msgstr "Die ausführbare Datei für @command{sysctl}, die benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:33617 +#: guix-git/doc/guix.texi:34054 #, no-wrap msgid "@code{settings} (default: @code{%default-sysctl-settings})" msgstr "@code{settings} (Vorgabe: @code{%default-sysctl-settings})" #. type: table -#: guix-git/doc/guix.texi:33619 +#: guix-git/doc/guix.texi:34056 msgid "An association list specifies kernel parameters and their values." msgstr "Eine assoziative Liste, die Kernel-Parameter und ihre Werte festlegt." #. type: defvr -#: guix-git/doc/guix.texi:33622 +#: guix-git/doc/guix.texi:34059 #, no-wrap msgid "{Scheme Variable} %default-sysctl-settings" msgstr "{Scheme-Variable} %default-sysctl-settings" #. type: defvr -#: guix-git/doc/guix.texi:33625 +#: guix-git/doc/guix.texi:34062 msgid "An association list specifying the default @command{sysctl} parameters on Guix System." msgstr "Eine assoziative Liste, die die vorgegebenen @command{sysctl}-Parameter auf Guix System enthält." #. type: cindex -#: guix-git/doc/guix.texi:33627 +#: guix-git/doc/guix.texi:34064 #, no-wrap msgid "pcscd" msgstr "pcscd" #. type: subsubheading -#: guix-git/doc/guix.texi:33628 +#: guix-git/doc/guix.texi:34065 #, no-wrap msgid "PC/SC Smart Card Daemon Service" msgstr "PC/SC-Smart-Card-Daemon-Dienst" #. type: Plain text -#: guix-git/doc/guix.texi:33635 +#: guix-git/doc/guix.texi:34072 msgid "The @code{(gnu services security-token)} module provides the following service to run @command{pcscd}, the PC/SC Smart Card Daemon. @command{pcscd} is the daemon program for pcsc-lite and the MuscleCard framework. It is a resource manager that coordinates communications with smart card readers, smart cards and cryptographic tokens that are connected to the system." msgstr "Das Modul @code{(gnu services security-token)} stellt den folgenden Dienst zur Verfügung, um @command{pcscd} auszuführen, den PC/SC-Smart-Card-Daemon. @command{pcscd} ist das Daemonprogramm für die Rahmensysteme pcsc-lite und MuscleCard. Es handelt sich um einen Ressourcenverwaltungsdienst, der die Kommunikation mit Smart-Card-Lesegeräten, Smart Cards und kryptographischen Tokens steuert, die mit dem System verbunden sind." #. type: defvr -#: guix-git/doc/guix.texi:33636 +#: guix-git/doc/guix.texi:34073 #, no-wrap msgid "{Scheme Variable} pcscd-service-type" msgstr "{Scheme-Variable} pcscd-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33640 +#: guix-git/doc/guix.texi:34077 msgid "Service type for the @command{pcscd} service. Its value must be a @code{pcscd-configuration} object. To run pcscd in the default configuration, instantiate it as:" msgstr "Diensttyp für den @command{pcscd}-Dienst. Als Wert muss ein @code{pcscd-configuration}-Objekt angegeben werden. Um pcscd mit seiner Vorgabekonfiguration auszuführen, instanziieren Sie ihn als:" #. type: lisp -#: guix-git/doc/guix.texi:33643 +#: guix-git/doc/guix.texi:34080 #, no-wrap msgid "(service pcscd-service-type)\n" msgstr "(service pcscd-service-type)\n" #. type: deftp -#: guix-git/doc/guix.texi:33646 +#: guix-git/doc/guix.texi:34083 #, no-wrap msgid "{Data Type} pcscd-configuration" msgstr "{Datentyp} pcscd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33648 +#: guix-git/doc/guix.texi:34085 msgid "The data type representing the configuration of @command{pcscd}." msgstr "Repräsentiert die Konfiguration von @command{pcscd}." #. type: item -#: guix-git/doc/guix.texi:33650 +#: guix-git/doc/guix.texi:34087 #, no-wrap msgid "@code{pcsc-lite} (default: @code{pcsc-lite})" msgstr "@code{pcsc-lite} (Vorgabe: @code{pcsc-lite})" #. type: table -#: guix-git/doc/guix.texi:33652 +#: guix-git/doc/guix.texi:34089 msgid "The pcsc-lite package that provides pcscd." msgstr "Das „pcsc-lite“-Paket, das pcscd zur Verfügung stellt." #. type: item -#: guix-git/doc/guix.texi:33652 +#: guix-git/doc/guix.texi:34089 #, no-wrap msgid "@code{usb-drivers} (default: @code{(list ccid)})" msgstr "@code{usb-drivers} (Vorgabe: @code{(list ccid)})" #. type: table -#: guix-git/doc/guix.texi:33655 +#: guix-git/doc/guix.texi:34092 msgid "List of packages that provide USB drivers to pcscd. Drivers are expected to be under @file{pcsc/drivers} in the store directory of the package." msgstr "Die Liste der Pakete, die USB-Treiber für pcscd zur Verfügung stellen. Es wird erwartet, dass sich Treiber unter @file{pcsc/drivers} innerhalb des Store-Verzeichnisses des Pakets befinden." #. type: cindex -#: guix-git/doc/guix.texi:33658 +#: guix-git/doc/guix.texi:34095 #, no-wrap msgid "lirc" msgstr "lirc" #. type: subsubheading -#: guix-git/doc/guix.texi:33659 +#: guix-git/doc/guix.texi:34096 #, no-wrap msgid "Lirc Service" msgstr "Lirc-Dienst" #. type: Plain text -#: guix-git/doc/guix.texi:33662 +#: guix-git/doc/guix.texi:34099 msgid "The @code{(gnu services lirc)} module provides the following service." msgstr "Das Modul @code{(gnu services lirc)} stellt den folgenden Dienst zur Verfügung." #. type: deffn -#: guix-git/doc/guix.texi:33663 +#: guix-git/doc/guix.texi:34100 #, no-wrap msgid "{Scheme Procedure} lirc-service [#:lirc lirc] @" msgstr "{Scheme-Prozedur} lirc-service [#:lirc lirc] @" #. type: deffn -#: guix-git/doc/guix.texi:33668 +#: guix-git/doc/guix.texi:34105 msgid "[#:device #f] [#:driver #f] [#:config-file #f] @ [#:extra-options '()] Return a service that runs @url{http://www.lirc.org,LIRC}, a daemon that decodes infrared signals from remote controls." msgstr "[#:device #f] [#:driver #f] [#:config-file #f] @ [#:extra-options '()] Liefert einen Dienst, der @url{http://www.lirc.org,LIRC} ausführt, einen Dienst zum Dekodieren von Infrarot-Signalen aus Fernbedienungen." #. type: deffn -#: guix-git/doc/guix.texi:33672 +#: guix-git/doc/guix.texi:34109 msgid "Optionally, @var{device}, @var{driver} and @var{config-file} (configuration file name) may be specified. See @command{lircd} manual for details." msgstr "Optional können @var{device} (Gerät), @var{driver} (Treiber) und @var{config-file} (Name der Konfigurationsdatei) festgelegt werden. Siehe das Handbuch von @command{lircd} für Details." #. type: deffn -#: guix-git/doc/guix.texi:33675 +#: guix-git/doc/guix.texi:34112 msgid "Finally, @var{extra-options} is a list of additional command-line options passed to @command{lircd}." msgstr "Schließlich enthält @var{extra-options} eine Liste zusätzlicher Befehlszeilenoptionen, die an @command{lircd} übergeben werden." #. type: cindex -#: guix-git/doc/guix.texi:33677 +#: guix-git/doc/guix.texi:34114 #, no-wrap msgid "spice" msgstr "spice" #. type: subsubheading -#: guix-git/doc/guix.texi:33678 +#: guix-git/doc/guix.texi:34115 #, no-wrap msgid "Spice Service" msgstr "Spice-Dienst" #. type: Plain text -#: guix-git/doc/guix.texi:33681 +#: guix-git/doc/guix.texi:34118 msgid "The @code{(gnu services spice)} module provides the following service." msgstr "Das Modul @code{(gnu services spice)} stellt den folgenden Dienst bereit." #. type: deffn -#: guix-git/doc/guix.texi:33682 +#: guix-git/doc/guix.texi:34119 #, no-wrap msgid "{Scheme Procedure} spice-vdagent-service [#:spice-vdagent]" msgstr "{Scheme-Prozedur} spice-vdagent-service [#:spice-vdagent]" #. type: deffn -#: guix-git/doc/guix.texi:33686 +#: guix-git/doc/guix.texi:34123 msgid "Returns a service that runs @url{https://www.spice-space.org,VDAGENT}, a daemon that enables sharing the clipboard with a vm and setting the guest display resolution when the graphical console window resizes." msgstr "Liefert einen Dienst, der @url{https://www.spice-space.org,VDAGENT} ausführt, einen Daemon, um die Zwischenablage mit einer virtuellen Maschine zu teilen und die Auflösung des Anzeigegeräts des Gastsystems umzustellen, wenn sich die Größe des grafischen Konsolenfensters ändert." #. type: cindex -#: guix-git/doc/guix.texi:33688 +#: guix-git/doc/guix.texi:34125 #, no-wrap msgid "inputattach" msgstr "inputattach" #. type: subsubheading -#: guix-git/doc/guix.texi:33689 +#: guix-git/doc/guix.texi:34126 #, no-wrap msgid "inputattach Service" msgstr "inputattach-Dienst" #. type: cindex -#: guix-git/doc/guix.texi:33691 +#: guix-git/doc/guix.texi:34128 #, no-wrap msgid "tablet input, for Xorg" msgstr "Tablett-Eingaben, für Xorg" #. type: cindex -#: guix-git/doc/guix.texi:33692 +#: guix-git/doc/guix.texi:34129 #, no-wrap msgid "touchscreen input, for Xorg" msgstr "Tastbildschirm-Eingaben, für Xorg" #. type: Plain text -#: guix-git/doc/guix.texi:33696 +#: guix-git/doc/guix.texi:34133 msgid "The @uref{https://linuxwacom.github.io/, inputattach} service allows you to use input devices such as Wacom tablets, touchscreens, or joysticks with the Xorg display server." msgstr "Der @uref{https://linuxwacom.github.io/, inputattach-Dienst} macht es Ihnen möglich, Eingabegeräte wie Wacom-Tabletts, Tastbildschirme („Touchscreens“) oder Joysticks mit dem Xorg-Anzeigeserver zu benutzen." #. type: deffn -#: guix-git/doc/guix.texi:33697 +#: guix-git/doc/guix.texi:34134 #, no-wrap msgid "{Scheme Variable} inputattach-service-type" msgstr "{Scheme-Variable} inputattach-service-type" #. type: deffn -#: guix-git/doc/guix.texi:33700 +#: guix-git/doc/guix.texi:34137 msgid "Type of a service that runs @command{inputattach} on a device and dispatches events from it." msgstr "Der Diensttyp für den Dienst, der @command{inputattach} auf einem Gerät ausführt und Ereignisse davon weiterleitet." #. type: deftp -#: guix-git/doc/guix.texi:33702 +#: guix-git/doc/guix.texi:34139 #, no-wrap msgid "{Data Type} inputattach-configuration" msgstr "{Datentyp} inputattach-configuration" #. type: item -#: guix-git/doc/guix.texi:33704 +#: guix-git/doc/guix.texi:34141 #, no-wrap msgid "@code{device-type} (default: @code{\"wacom\"})" msgstr "@code{device-type} (Vorgabe: @code{\"wacom\"})" #. type: table -#: guix-git/doc/guix.texi:33707 +#: guix-git/doc/guix.texi:34144 msgid "The type of device to connect to. Run @command{inputattach --help}, from the @code{inputattach} package, to see the list of supported device types." msgstr "Der Typ des Geräts, mit dem eine Verbindung hergestellt werden soll. Führen Sie @command{inputattach --help} aus dem @code{inputattach}-Paket aus, um eine Liste unterstützter Gerätetypen zu sehen." #. type: item -#: guix-git/doc/guix.texi:33708 +#: guix-git/doc/guix.texi:34145 #, no-wrap msgid "@code{device} (default: @code{\"/dev/ttyS0\"})" msgstr "@code{device} (Vorgabe: @code{\"/dev/ttyS0\"})" #. type: table -#: guix-git/doc/guix.texi:33710 +#: guix-git/doc/guix.texi:34147 msgid "The device file to connect to the device." msgstr "Die Gerätedatei, um sich mit dem Gerät zu verbinden." #. type: table -#: guix-git/doc/guix.texi:33714 +#: guix-git/doc/guix.texi:34151 msgid "Baud rate to use for the serial connection. Should be a number or @code{#f}." msgstr "Welche Baudrate für die serielle Verbindung benutzt werden soll. Es sollte eine Zahl oder @code{#f} angegeben werden." #. type: item -#: guix-git/doc/guix.texi:33715 +#: guix-git/doc/guix.texi:34152 #, no-wrap msgid "@code{log-file} (default: @code{#f})" msgstr "@code{log-file} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33717 +#: guix-git/doc/guix.texi:34154 msgid "If true, this must be the name of a file to log messages to." msgstr "Wenn es wahr ist, muss es der Name einer Datei sein, in die Protokollnachrichten geschrieben werden sollen." #. type: subsubheading -#: guix-git/doc/guix.texi:33720 +#: guix-git/doc/guix.texi:34157 #, no-wrap msgid "Dictionary Service" msgstr "Wörterbuchdienst" #. type: cindex -#: guix-git/doc/guix.texi:33721 +#: guix-git/doc/guix.texi:34158 #, no-wrap msgid "dictionary" msgstr "Wörterbuch" #. type: Plain text -#: guix-git/doc/guix.texi:33723 +#: guix-git/doc/guix.texi:34160 msgid "The @code{(gnu services dict)} module provides the following service:" msgstr "Das Modul @code{(gnu services dict)} stellt den folgenden Dienst zur Verfügung:" #. type: defvr -#: guix-git/doc/guix.texi:33724 +#: guix-git/doc/guix.texi:34161 #, no-wrap msgid "{Scheme Variable} dicod-service-type" msgstr "{Scheme-Variable} dicod-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33727 +#: guix-git/doc/guix.texi:34164 msgid "This is the type of the service that runs the @command{dicod} daemon, an implementation of DICT server (@pxref{Dicod,,, dico, GNU Dico Manual})." msgstr "Dies ist der Diensttyp für einen Dienst, der den @command{dicod}-Daemon ausführt. Dabei handelt es sich um eine Implementierung eines DICT-Servers (siehe das @ref{Dicod,,, dico, Handbuch von GNU Dico})." #. type: deffn -#: guix-git/doc/guix.texi:33729 +#: guix-git/doc/guix.texi:34166 #, no-wrap msgid "{Scheme Procedure} dicod-service [#:config (dicod-configuration)]" msgstr "{Scheme-Prozedur} dicod-service [#:config (dicod-configuration)]" #. type: deffn -#: guix-git/doc/guix.texi:33732 +#: guix-git/doc/guix.texi:34169 msgid "Return a service that runs the @command{dicod} daemon, an implementation of DICT server (@pxref{Dicod,,, dico, GNU Dico Manual})." msgstr "Liefert einen Dienst, der den @command{dicod}-Daemon ausführt. Dabei handelt es sich um eine Implementierung eines DICT-Servers (siehe das @ref{Dicod,,, dico, Handbuch von GNU Dico})." #. type: deffn -#: guix-git/doc/guix.texi:33736 +#: guix-git/doc/guix.texi:34173 msgid "The optional @var{config} argument specifies the configuration for @command{dicod}, which should be a @code{} object, by default it serves the GNU Collaborative International Dictionary of English." msgstr "Das optionale Argument @var{config} gibt die Konfiguration für @command{dicod} an, welche ein @code{}-Objekt sein sollte. Nach Vorgabe wird als Wörterbuch das „GNU Collaborative International Dictionary of English“ angeboten." #. type: deffn -#: guix-git/doc/guix.texi:33740 +#: guix-git/doc/guix.texi:34177 msgid "You can add @command{open localhost} to your @file{~/.dico} file to make @code{localhost} the default server for @command{dico} client (@pxref{Initialization File,,, dico, GNU Dico Manual})." msgstr "Sie können in Ihre @file{~/.dico}-Datei @command{open localhost} eintragen, damit @code{localhost} zum voreingestellten Server des @command{dico}-Clients wird (siehe das @ref{Initialization File,,, dico, Handbuch von GNU Dico})." #. type: deftp -#: guix-git/doc/guix.texi:33742 +#: guix-git/doc/guix.texi:34179 #, no-wrap msgid "{Data Type} dicod-configuration" msgstr "{Datentyp} dicod-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33744 +#: guix-git/doc/guix.texi:34181 msgid "Data type representing the configuration of dicod." msgstr "Der Datentyp, der die Konfiguration von dicod repräsentiert." #. type: item -#: guix-git/doc/guix.texi:33746 +#: guix-git/doc/guix.texi:34183 #, no-wrap msgid "@code{dico} (default: @var{dico})" msgstr "@code{dico} (Vorgabe: @var{dico})" #. type: table -#: guix-git/doc/guix.texi:33748 +#: guix-git/doc/guix.texi:34185 msgid "Package object of the GNU Dico dictionary server." msgstr "Paketobjekt des GNU-Dico-Wörterbuchservers." #. type: item -#: guix-git/doc/guix.texi:33749 +#: guix-git/doc/guix.texi:34186 #, no-wrap msgid "@code{interfaces} (default: @var{'(\"localhost\")})" msgstr "@code{interfaces} (Vorgabe: @var{'(\"localhost\")})" #. type: table -#: guix-git/doc/guix.texi:33753 +#: guix-git/doc/guix.texi:34190 msgid "This is the list of IP addresses and ports and possibly socket file names to listen to (@pxref{Server Settings, @code{listen} directive,, dico, GNU Dico Manual})." msgstr "Hierfür muss die Liste der IP-Adressen, Ports und möglicherweise auch Socket-Dateinamen angegeben werden, auf die gelauscht werden soll (siehe @ref{Server Settings, @code{listen} directive,, dico, Handbuch von GNU Dico})." #. type: item -#: guix-git/doc/guix.texi:33754 +#: guix-git/doc/guix.texi:34191 #, no-wrap msgid "@code{handlers} (default: @var{'()})" msgstr "@code{handlers} (Vorgabe: @var{'()})" #. type: table -#: guix-git/doc/guix.texi:33756 +#: guix-git/doc/guix.texi:34193 msgid "List of @code{} objects denoting handlers (module instances)." msgstr "Liste der @code{}-Objekte, die Handler (Modulinstanzen) bezeichnen." #. type: item -#: guix-git/doc/guix.texi:33757 +#: guix-git/doc/guix.texi:34194 #, no-wrap msgid "@code{databases} (default: @var{(list %dicod-database:gcide)})" msgstr "@code{databases} (Vorgabe: @var{(list %dicod-database:gcide)})" #. type: table -#: guix-git/doc/guix.texi:33759 +#: guix-git/doc/guix.texi:34196 msgid "List of @code{} objects denoting dictionaries to be served." msgstr "Liste der @code{}-Objekte, die anzubietende Wörterbücher bezeichnen." #. type: deftp -#: guix-git/doc/guix.texi:33762 +#: guix-git/doc/guix.texi:34199 #, no-wrap msgid "{Data Type} dicod-handler" msgstr "{Datentyp} dicod-handler" #. type: deftp -#: guix-git/doc/guix.texi:33764 +#: guix-git/doc/guix.texi:34201 msgid "Data type representing a dictionary handler (module instance)." msgstr "Der Datentyp, der einen Wörterbuch-Handler (eine Modulinstanz) repräsentiert." #. type: table -#: guix-git/doc/guix.texi:33768 +#: guix-git/doc/guix.texi:34205 msgid "Name of the handler (module instance)." msgstr "Der Name des Handlers (der Modulinstanz)." #. type: item -#: guix-git/doc/guix.texi:33769 +#: guix-git/doc/guix.texi:34206 #, no-wrap msgid "@code{module} (default: @var{#f})" msgstr "@code{module} (Vorgabe: @var{#f})" #. type: table -#: guix-git/doc/guix.texi:33773 +#: guix-git/doc/guix.texi:34210 msgid "Name of the dicod module of the handler (instance). If it is @code{#f}, the module has the same name as the handler. (@pxref{Modules,,, dico, GNU Dico Manual})." msgstr "Der Name des dicod-Moduls (der Instanz) des Handlers. Wenn er @code{#f} ist, heißt das, das Modul hat denselben Namen wie der Handler (siehe @ref{Modules,,, dico, Handbuch von GNU Dico})." #. type: table -#: guix-git/doc/guix.texi:33776 +#: guix-git/doc/guix.texi:34213 msgid "List of strings or gexps representing the arguments for the module handler" msgstr "Liste der Zeichenketten oder G-Ausdrücke, die die Argumente für den Modul-Handler repräsentieren." #. type: deftp -#: guix-git/doc/guix.texi:33779 +#: guix-git/doc/guix.texi:34216 #, no-wrap msgid "{Data Type} dicod-database" msgstr "{Datentyp} dicod-database" #. type: deftp -#: guix-git/doc/guix.texi:33781 +#: guix-git/doc/guix.texi:34218 msgid "Data type representing a dictionary database." msgstr "Datentyp, der eine Wörterbuchdatenbank repräsentiert." #. type: table -#: guix-git/doc/guix.texi:33785 +#: guix-git/doc/guix.texi:34222 msgid "Name of the database, will be used in DICT commands." msgstr "Der Name der Datenbank, der in DICT-Befehlen benutzt wird." #. type: code{#1} -#: guix-git/doc/guix.texi:33786 +#: guix-git/doc/guix.texi:34223 #, no-wrap msgid "handler" msgstr "handler" #. type: table -#: guix-git/doc/guix.texi:33789 +#: guix-git/doc/guix.texi:34226 msgid "Name of the dicod handler (module instance) used by this database (@pxref{Handlers,,, dico, GNU Dico Manual})." msgstr "Der Name des dicod-Handlers (der Modulinstanz), die von dieser Datenbank benutzt wird (siehe @ref{Handlers,,, dico, Handbuch von GNU Dico})." #. type: item -#: guix-git/doc/guix.texi:33790 +#: guix-git/doc/guix.texi:34227 #, no-wrap msgid "@code{complex?} (default: @var{#f})" msgstr "@code{complex?} (Vorgabe: @var{#f})" #. type: table -#: guix-git/doc/guix.texi:33793 +#: guix-git/doc/guix.texi:34230 msgid "Whether the database configuration complex. The complex configuration will need a corresponding @code{} object, otherwise not." msgstr "Ob die Datenbankkonfiguration komplex ist. In diesem Fall muss für die komplexe Konfiguration auch ein entsprechendes @code{}-Objekt existieren, ansonsten nicht." #. type: table -#: guix-git/doc/guix.texi:33797 +#: guix-git/doc/guix.texi:34234 msgid "List of strings or gexps representing the arguments for the database (@pxref{Databases,,, dico, GNU Dico Manual})." msgstr "Liste der Zeichenketten oder G-Ausdrücke, die die Argumente für die Datenbank repräsentiert (siehe @ref{Databases,,, dico, Handbuch von GNU Dico})." #. type: defvr -#: guix-git/doc/guix.texi:33800 +#: guix-git/doc/guix.texi:34237 #, no-wrap msgid "{Scheme Variable} %dicod-database:gcide" msgstr "{Scheme-Variable} %dicod-database:gcide" #. type: defvr -#: guix-git/doc/guix.texi:33803 +#: guix-git/doc/guix.texi:34240 msgid "A @code{} object serving the GNU Collaborative International Dictionary of English using the @code{gcide} package." msgstr "Ein @code{}-Objekt, um das „GNU Collaborative International Dictionary of English“ anzubieten. Dazu wird das @code{gcide}-Paket benutzt." #. type: Plain text -#: guix-git/doc/guix.texi:33806 +#: guix-git/doc/guix.texi:34243 msgid "The following is an example @code{dicod-service} configuration." msgstr "Im Folgenden sehen Sie eine Beispielkonfiguration für einen @code{dicod-service}." #. type: lisp -#: guix-git/doc/guix.texi:33821 +#: guix-git/doc/guix.texi:34258 #, no-wrap msgid "" "(dicod-service #:config\n" @@ -63145,139 +64041,139 @@ msgstr "" " %dicod-database:gcide))))\n" #. type: cindex -#: guix-git/doc/guix.texi:33823 +#: guix-git/doc/guix.texi:34260 #, no-wrap msgid "Docker" msgstr "Docker" #. type: subsubheading -#: guix-git/doc/guix.texi:33824 +#: guix-git/doc/guix.texi:34261 #, no-wrap msgid "Docker Service" msgstr "Docker-Dienst" #. type: Plain text -#: guix-git/doc/guix.texi:33827 +#: guix-git/doc/guix.texi:34264 msgid "The @code{(gnu services docker)} module provides the following services." msgstr "Das Modul @code{(gnu services docker)} stellt die folgenden Dienste zur Verfügung." #. type: defvr -#: guix-git/doc/guix.texi:33828 +#: guix-git/doc/guix.texi:34265 #, no-wrap msgid "{Scheme Variable} docker-service-type" msgstr "{Scheme-Variable} docker-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33833 +#: guix-git/doc/guix.texi:34270 msgid "This is the type of the service that runs @url{https://www.docker.com,Docker}, a daemon that can execute application bundles (sometimes referred to as ``containers'') in isolated environments." msgstr "Dies ist der Diensttyp des Dienstes, um @url{https://www.docker.com,Docker} auszuführen, einen Daemon, der Anwendungsbündel in isolierten Umgebungen ausführen kann (manchmal auch als „Container“ bezeichnet)." #. type: deftp -#: guix-git/doc/guix.texi:33836 +#: guix-git/doc/guix.texi:34273 #, no-wrap msgid "{Data Type} docker-configuration" msgstr "{Datentyp} docker-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33838 +#: guix-git/doc/guix.texi:34275 msgid "This is the data type representing the configuration of Docker and Containerd." msgstr "Dies ist der Datentyp, der die Konfiguration von Docker und Containerd repräsentiert." #. type: item -#: guix-git/doc/guix.texi:33841 +#: guix-git/doc/guix.texi:34278 #, no-wrap msgid "@code{docker} (default: @code{docker})" msgstr "@code{docker} (Vorgabe: @code{docker})" #. type: table -#: guix-git/doc/guix.texi:33843 +#: guix-git/doc/guix.texi:34280 msgid "The Docker daemon package to use." msgstr "Das Docker-Daemon-Paket, was benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:33844 +#: guix-git/doc/guix.texi:34281 #, no-wrap msgid "@code{docker-cli} (default: @code{docker-cli})" msgstr "@code{docker-cli} (Vorgabe: @code{docker-cli})" #. type: table -#: guix-git/doc/guix.texi:33846 +#: guix-git/doc/guix.texi:34283 msgid "The Docker client package to use." msgstr "Das Docker-Client-Paket, was benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:33847 +#: guix-git/doc/guix.texi:34284 #, no-wrap msgid "@code{containerd} (default: @var{containerd})" msgstr "@code{containerd} (Vorgabe: @var{containerd})" #. type: table -#: guix-git/doc/guix.texi:33849 +#: guix-git/doc/guix.texi:34286 msgid "The Containerd package to use." msgstr "Das Containerd-Paket, was benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:33850 +#: guix-git/doc/guix.texi:34287 #, no-wrap msgid "@code{proxy} (default @var{docker-libnetwork-cmd-proxy})" msgstr "@code{proxy} (Vorgabe: @var{docker-libnetwork-cmd-proxy})" #. type: table -#: guix-git/doc/guix.texi:33852 +#: guix-git/doc/guix.texi:34289 msgid "The Docker user-land networking proxy package to use." msgstr "Das Paket des mit Benutzerrechten (im „User-Land“) ausgeführten Docker-Netzwerkproxys, das verwendet werden soll." #. type: item -#: guix-git/doc/guix.texi:33853 +#: guix-git/doc/guix.texi:34290 #, no-wrap msgid "@code{enable-proxy?} (default @code{#t})" msgstr "@code{enable-proxy?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:33855 +#: guix-git/doc/guix.texi:34292 msgid "Enable or disable the use of the Docker user-land networking proxy." msgstr "Den mit Benutzerrechten (im „User-Land“) ausgeführten Docker-Netzwerkproxy an- oder abschalten." #. type: item -#: guix-git/doc/guix.texi:33856 +#: guix-git/doc/guix.texi:34293 #, no-wrap msgid "@code{debug?} (default @code{#f})" msgstr "@code{debug?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33858 +#: guix-git/doc/guix.texi:34295 msgid "Enable or disable debug output." msgstr "Ausgaben zur Fehlersuche an- oder abschalten." #. type: item -#: guix-git/doc/guix.texi:33859 +#: guix-git/doc/guix.texi:34296 #, no-wrap msgid "@code{enable-iptables?} (default @code{#t})" msgstr "@code{enable-iptables?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:33861 +#: guix-git/doc/guix.texi:34298 msgid "Enable or disable the addition of iptables rules." msgstr "Das Hinzufügen von iptables-Regeln durch Docker an- oder abschalten." #. type: item -#: guix-git/doc/guix.texi:33862 +#: guix-git/doc/guix.texi:34299 #, no-wrap msgid "@code{environment-variables} (default: @code{()})" msgstr "@code{environment-variables} (Vorgabe: @code{()})" #. type: table -#: guix-git/doc/guix.texi:33864 +#: guix-git/doc/guix.texi:34301 msgid "List of environment variables to set for @command{dockerd}." msgstr "Liste Umgebungsvariabler, mit denen @command{dockerd} gestartet wird." #. type: table -#: guix-git/doc/guix.texi:33867 +#: guix-git/doc/guix.texi:34304 msgid "This must be a list of strings where each string has the form @samp{@var{key}=@var{value}} as in this example:" msgstr "Hier muss eine Liste von Zeichenketten angegeben werden, die jeweils der Form @samp{@var{Schlüssel}=@var{Wert}} genügen wie in diesem Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:33871 +#: guix-git/doc/guix.texi:34308 #, no-wrap msgid "" "(list \"LANGUAGE=eo:ca:eu\"\n" @@ -63287,196 +64183,196 @@ msgstr "" " \"TMPDIR=/tmp/dockerd\")\n" #. type: cindex -#: guix-git/doc/guix.texi:33876 +#: guix-git/doc/guix.texi:34313 #, no-wrap msgid "Singularity, container service" msgstr "Singularity, Dienst für Anwendungsbündel/Container" #. type: defvr -#: guix-git/doc/guix.texi:33877 +#: guix-git/doc/guix.texi:34314 #, no-wrap msgid "{Scheme Variable} singularity-service-type" msgstr "{Scheme-Variable} singularity-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33882 +#: guix-git/doc/guix.texi:34319 msgid "This is the type of the service that allows you to run @url{https://www.sylabs.io/singularity/, Singularity}, a Docker-style tool to create and run application bundles (aka. ``containers''). The value for this service is the Singularity package to use." msgstr "Dies ist der Diensttyp für den Dienst, mit dem Sie @url{https://www.sylabs.io/singularity/, Singularity} ausführen können, ein Docker-ähnliches Werkzeug, um Anwendungsbündel (auch bekannt als „Container“) auszuführen. Der Wert für diesen Dienst ist das Singularity-Paket, das benutzt werden soll." #. type: defvr -#: guix-git/doc/guix.texi:33886 +#: guix-git/doc/guix.texi:34323 msgid "The service does not install a daemon; instead, it installs helper programs as setuid-root (@pxref{Setuid Programs}) such that unprivileged users can invoke @command{singularity run} and similar commands." msgstr "Der Dienst installiert keinen Daemon, sondern er installiert Hilfsprogramme als setuid-root (siehe @ref{Setuid Programs}), damit auch „unprivilegierte“ Nutzer ohne besondere Berechtigungen @command{singularity run} und ähnliche Befehle ausführen können." #. type: cindex -#: guix-git/doc/guix.texi:33888 +#: guix-git/doc/guix.texi:34325 #, no-wrap msgid "Audit" msgstr "Audit" #. type: subsubheading -#: guix-git/doc/guix.texi:33889 +#: guix-git/doc/guix.texi:34326 #, no-wrap msgid "Auditd Service" msgstr "Auditd-Dienst" #. type: Plain text -#: guix-git/doc/guix.texi:33892 +#: guix-git/doc/guix.texi:34329 msgid "The @code{(gnu services auditd)} module provides the following service." msgstr "Das Modul @code{(gnu services auditd)} stellt den folgenden Dienst zur Verfügung." #. type: defvr -#: guix-git/doc/guix.texi:33893 +#: guix-git/doc/guix.texi:34330 #, no-wrap msgid "{Scheme Variable} auditd-service-type" msgstr "{Scheme-Variable} auditd-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33898 +#: guix-git/doc/guix.texi:34335 msgid "This is the type of the service that runs @url{https://people.redhat.com/sgrubb/audit/,auditd}, a daemon that tracks security-relevant information on your system." msgstr "Dies ist der Diensttyp des Dienstes, mit dem @url{https://people.redhat.com/sgrubb/audit/,auditd} ausgeführt wird, ein Daemon, der sicherheitsrelevante Informationen auf Ihrem System sammelt." #. type: defvr -#: guix-git/doc/guix.texi:33900 +#: guix-git/doc/guix.texi:34337 msgid "Examples of things that can be tracked:" msgstr "Beispiele für Dinge, über die Informationen gesammelt werden sollen:" #. type: enumerate -#: guix-git/doc/guix.texi:33904 +#: guix-git/doc/guix.texi:34341 msgid "File accesses" msgstr "Dateizugriffe" #. type: enumerate -#: guix-git/doc/guix.texi:33906 +#: guix-git/doc/guix.texi:34343 msgid "System calls" msgstr "Betriebssystemaufrufe („System Calls“)" #. type: enumerate -#: guix-git/doc/guix.texi:33908 +#: guix-git/doc/guix.texi:34345 msgid "Invoked commands" msgstr "Aufgerufene Befehle" #. type: enumerate -#: guix-git/doc/guix.texi:33910 +#: guix-git/doc/guix.texi:34347 msgid "Failed login attempts" msgstr "Fehlgeschlagene Anmeldeversuche" #. type: enumerate -#: guix-git/doc/guix.texi:33912 +#: guix-git/doc/guix.texi:34349 msgid "Firewall filtering" msgstr "Filterung durch die Firewall" #. type: enumerate -#: guix-git/doc/guix.texi:33914 +#: guix-git/doc/guix.texi:34351 msgid "Network access" msgstr "Netzwerkzugriff" #. type: defvr -#: guix-git/doc/guix.texi:33925 +#: guix-git/doc/guix.texi:34362 msgid "@command{auditctl} from the @code{audit} package can be used in order to add or remove events to be tracked (until the next reboot). In order to permanently track events, put the command line arguments of auditctl into a file called @code{audit.rules} in the configuration directory (see below). @command{aureport} from the @code{audit} package can be used in order to view a report of all recorded events. The audit daemon by default logs into the file @file{/var/log/audit.log}." msgstr "@command{auditctl} aus dem @code{audit}-Paket kann benutzt werden, um zu überwachende Ereignisse (bis zum nächsten Neustart) hinzuzufügen oder zu entfernen. Um über Ereignisse dauerhaft Informationen sammeln zu lassen, schreiben Sie die Befehlszeilenargumente für auditctl in eine Datei namens @file{audit.rules} im Verzeichnis für Konfigurationen (siehe unten). @command{aureport} aus dem @code{audit}-Paket kann benutzt werden, um einen Bericht über alle aufgezeichneten Ereignisse anzuzeigen. Nach Vorgabe speichert der Audit-Daemon Protokolle in die Datei @file{/var/log/audit.log}." #. type: deftp -#: guix-git/doc/guix.texi:33928 +#: guix-git/doc/guix.texi:34365 #, no-wrap msgid "{Data Type} auditd-configuration" msgstr "{Datentyp} auditd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33930 +#: guix-git/doc/guix.texi:34367 msgid "This is the data type representing the configuration of auditd." msgstr "Dies ist der Datentyp, der die Konfiguration von auditd repräsentiert." #. type: item -#: guix-git/doc/guix.texi:33933 +#: guix-git/doc/guix.texi:34370 #, no-wrap msgid "@code{audit} (default: @code{audit})" msgstr "@code{audit} (Vorgabe: @code{audit})" #. type: table -#: guix-git/doc/guix.texi:33935 +#: guix-git/doc/guix.texi:34372 msgid "The audit package to use." msgstr "Das zu verwendende audit-Paket." #. type: item -#: guix-git/doc/guix.texi:33936 +#: guix-git/doc/guix.texi:34373 #, no-wrap msgid "@code{configuration-directory} (default: @code{%default-auditd-configuration-directory})" msgstr "@code{configuration-directory} (Vorgabe: @code{%default-auditd-configuration-directory})" #. type: table -#: guix-git/doc/guix.texi:33940 +#: guix-git/doc/guix.texi:34377 msgid "The directory containing the configuration file for the audit package, which must be named @code{auditd.conf}, and optionally some audit rules to instantiate on startup." msgstr "Das Verzeichnis mit der Konfigurationsdatei für das audit-Paket. Sie muss den Namen @code{auditd.conf} tragen und optional kann sie ein paar Audit-Regeln enthalten, die beim Start instanziiert werden sollen." #. type: cindex -#: guix-git/doc/guix.texi:33944 +#: guix-git/doc/guix.texi:34381 #, no-wrap msgid "rshiny" msgstr "rshiny" #. type: subsubheading -#: guix-git/doc/guix.texi:33945 +#: guix-git/doc/guix.texi:34382 #, no-wrap msgid "R-Shiny service" msgstr "R-Shiny-Dienst" #. type: Plain text -#: guix-git/doc/guix.texi:33948 +#: guix-git/doc/guix.texi:34385 msgid "The @code{(gnu services science)} module provides the following service." msgstr "Das Modul @code{(gnu services science)} stellt den folgenden Dienst bereit." #. type: defvr -#: guix-git/doc/guix.texi:33949 +#: guix-git/doc/guix.texi:34386 #, no-wrap msgid "{Scheme Variable} rshiny-service-type" msgstr "{Scheme-Variable} rshiny-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33954 +#: guix-git/doc/guix.texi:34391 msgid "This is a type of service which is used to run a webapp created with @code{r-shiny}. This service sets the @env{R_LIBS_USER} environment variable and runs the provided script to call @code{runApp}." msgstr "Dies ist der Diensttyp eines Dienstes, um eine mit @code{r-shiny} erzeugte Web-Anwendung („Webapp“) auszuführen. Dieser Dienst legt die Umgebungsvariable @env{R_LIBS_USER} fest und führt das eingestellte Skript aus, um @code{runApp} aufzurufen." #. type: deftp -#: guix-git/doc/guix.texi:33955 +#: guix-git/doc/guix.texi:34392 #, no-wrap msgid "{Data Type} rshiny-configuration" msgstr "{Datentyp} rshiny-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33957 +#: guix-git/doc/guix.texi:34394 msgid "This is the data type representing the configuration of rshiny." msgstr "Dies ist der Datentyp, der die Konfiguration von rshiny repräsentiert." #. type: item -#: guix-git/doc/guix.texi:33960 +#: guix-git/doc/guix.texi:34397 #, no-wrap msgid "@code{package} (default: @code{r-shiny})" msgstr "@code{package} (Vorgabe: @code{r-shiny})" #. type: table -#: guix-git/doc/guix.texi:33962 +#: guix-git/doc/guix.texi:34399 msgid "The package to use." msgstr "Das zu benutzende Paket." #. type: item -#: guix-git/doc/guix.texi:33963 +#: guix-git/doc/guix.texi:34400 #, no-wrap msgid "@code{binary} (defaunlt @code{\"rshiny\"})" msgstr "@code{binary} (Vorgabe: @code{\"rshiny\"})" #. type: table -#: guix-git/doc/guix.texi:33966 +#: guix-git/doc/guix.texi:34403 msgid "The name of the binary or shell script located at @code{package/bin/} to run when the service is run." msgstr "Der Name der Binärdatei oder des Shell-Skripts, das sich in @code{Paket/bin/} befindet und beim Starten des Dienstes ausgeführt werden soll." #. type: table -#: guix-git/doc/guix.texi:33968 +#: guix-git/doc/guix.texi:34405 msgid "The common way to create this file is as follows:" msgstr "Die übliche Art, diese Datei erzeugen zu lassen, ist folgende:" #. type: lisp -#: guix-git/doc/guix.texi:33985 +#: guix-git/doc/guix.texi:34422 #, no-wrap msgid "" "@dots{}\n" @@ -63512,35 +64408,35 @@ msgstr "" " Rbin targetdir))))\n" #. type: cindex -#: guix-git/doc/guix.texi:33991 +#: guix-git/doc/guix.texi:34428 #, no-wrap msgid "Nix" msgstr "Nix" #. type: subsubheading -#: guix-git/doc/guix.texi:33992 +#: guix-git/doc/guix.texi:34429 #, no-wrap msgid "Nix service" msgstr "Nix-Dienst" #. type: Plain text -#: guix-git/doc/guix.texi:33995 +#: guix-git/doc/guix.texi:34432 msgid "The @code{(gnu services nix)} module provides the following service." msgstr "Das Modul @code{(gnu services nix)} stellt den folgenden Dienst zur Verfügung:" #. type: defvr -#: guix-git/doc/guix.texi:33996 +#: guix-git/doc/guix.texi:34433 #, no-wrap msgid "{Scheme Variable} nix-service-type" msgstr "{Scheme-Variable} nix-service-type" #. type: defvr -#: guix-git/doc/guix.texi:34001 +#: guix-git/doc/guix.texi:34438 msgid "This is the type of the service that runs build daemon of the @url{https://nixos.org/nix/, Nix} package manager. Here is an example showing how to use it:" msgstr "Dies ist der Diensttyp für den Dienst, der den Erstellungs-Daemon der @url{https://nixos.org/nix/, Nix-Paketverwaltung} ausführt. Hier ist ein Beispiel, wie man ihn benutzt:" #. type: lisp -#: guix-git/doc/guix.texi:34006 +#: guix-git/doc/guix.texi:34443 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -63554,7 +64450,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:34011 +#: guix-git/doc/guix.texi:34448 #, no-wrap msgid "" "(operating-system\n" @@ -63570,7 +64466,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:34014 +#: guix-git/doc/guix.texi:34451 #, no-wrap msgid "" " (services (append (list (service nix-service-type))\n" @@ -63580,29 +64476,29 @@ msgstr "" " %base-services)))\n" #. type: defvr -#: guix-git/doc/guix.texi:34017 +#: guix-git/doc/guix.texi:34454 msgid "After @command{guix system reconfigure} configure Nix for your user:" msgstr "Nach @command{guix system reconfigure} können Sie Nix für Ihr Benutzerkonto konfigurieren:" #. type: item -#: guix-git/doc/guix.texi:34019 +#: guix-git/doc/guix.texi:34456 #, no-wrap msgid "Add a Nix channel and update it. See" msgstr "Fügen Sie einen Nix-Kanal ein und aktualisieren Sie ihn. Siehe" #. type: itemize -#: guix-git/doc/guix.texi:34021 +#: guix-git/doc/guix.texi:34458 msgid "@url{https://nixos.org/nix/manual/, Nix Package Manager Guide}." msgstr "@url{https://nixos.org/nix/manual/, Nix Package Manager Guide}." #. type: item -#: guix-git/doc/guix.texi:34022 +#: guix-git/doc/guix.texi:34459 #, no-wrap msgid "Create a symlink to your profile and activate Nix profile:" msgstr "Erzeugen Sie eine symbolische Verknüpfung zu Ihrem Profil und aktivieren Sie das Nix-Profil:" #. type: example -#: guix-git/doc/guix.texi:34028 +#: guix-git/doc/guix.texi:34465 #, no-wrap msgid "" "$ ln -s \"/nix/var/nix/profiles/per-user/$USER/profile\" ~/.nix-profile\n" @@ -63612,258 +64508,250 @@ msgstr "" "$ source /run/current-system/profile/etc/profile.d/nix.sh\n" #. type: deftp -#: guix-git/doc/guix.texi:34032 +#: guix-git/doc/guix.texi:34469 #, no-wrap msgid "{Data Type} nix-configuration" msgstr "{Datentyp} nix-configuration" #. type: deftp -#: guix-git/doc/guix.texi:34034 +#: guix-git/doc/guix.texi:34471 msgid "This data type represents the configuration of the Nix daemon." msgstr "Dieser Datentyp repräsentiert die Konfiguration des Nix-Daemons." #. type: item -#: guix-git/doc/guix.texi:34036 +#: guix-git/doc/guix.texi:34473 #, no-wrap msgid "@code{nix} (default: @code{nix})" msgstr "@code{nix} (Vorgabe: @code{nix})" #. type: table -#: guix-git/doc/guix.texi:34038 +#: guix-git/doc/guix.texi:34475 msgid "The Nix package to use." msgstr "Das zu verwendende Nix-Paket." #. type: item -#: guix-git/doc/guix.texi:34039 +#: guix-git/doc/guix.texi:34476 #, no-wrap msgid "@code{sandbox} (default: @code{#t})" msgstr "@code{sandbox} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:34041 +#: guix-git/doc/guix.texi:34478 msgid "Specifies whether builds are sandboxed by default." msgstr "Gibt an, ob Erstellungen nach Voreinstellung in einer isolierten Umgebung („Sandbox“) durchgeführt werden sollen." #. type: item -#: guix-git/doc/guix.texi:34042 +#: guix-git/doc/guix.texi:34479 #, no-wrap msgid "@code{build-sandbox-items} (default: @code{'()})" msgstr "@code{build-sandbox-items} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:34045 +#: guix-git/doc/guix.texi:34482 msgid "This is a list of strings or objects appended to the @code{build-sandbox-items} field of the configuration file." msgstr "Dies ist eine Liste von Zeichenketten oder Objekten, die an das @code{build-sandbox-items}-Feld der Konfigurationsdatei angehängt werden." #. type: table -#: guix-git/doc/guix.texi:34053 +#: guix-git/doc/guix.texi:34490 msgid "Extra command line options for @code{nix-service-type}." msgstr "Zusätzliche Befehlszeilenoptionen für @code{nix-service-type}." #. type: cindex -#: guix-git/doc/guix.texi:34059 +#: guix-git/doc/guix.texi:34496 #, no-wrap msgid "setuid programs" msgstr "setuid-Programme" #. type: Plain text -#: guix-git/doc/guix.texi:34069 +#: guix-git/doc/guix.texi:34506 msgid "Some programs need to run with ``root'' privileges, even when they are launched by unprivileged users. A notorious example is the @command{passwd} program, which users can run to change their password, and which needs to access the @file{/etc/passwd} and @file{/etc/shadow} files---something normally restricted to root, for obvious security reasons. To address that, these executables are @dfn{setuid-root}, meaning that they always run with root privileges (@pxref{How Change Persona,,, libc, The GNU C Library Reference Manual}, for more info about the setuid mechanism)." msgstr "Manche Programme müssen mit Administratorrechten (also den Berechtigungen des „root“-Benutzers) ausgeführt werden, selbst wenn Nutzer ohne besondere Berechtigungen sie starten. Ein bekanntes Beispiel ist das Programm @command{passwd}, womit Nutzer ihr Passwort ändern können, wozu das Programm auf die Dateien @file{/etc/passwd} und @file{/etc/shadow} zugreifen muss@tie{}— was normalerweise nur der „root“-Nutzer darf, aus offensichtlichen Gründen der Informationssicherheit. Deswegen sind diese ausführbaren Programmdateien @dfn{setuid-root}, d.h.@: sie laufen immer mit den Administratorrechten des root-Nutzers, egal wer sie startet (siehe @ref{How Change Persona,,, libc, Referenzhandbuch der GNU-C-Bibliothek} für mehr Informationen über den setuid-Mechanismus)." #. type: Plain text -#: guix-git/doc/guix.texi:34076 +#: guix-git/doc/guix.texi:34513 msgid "The store itself @emph{cannot} contain setuid programs: that would be a security issue since any user on the system can write derivations that populate the store (@pxref{The Store}). Thus, a different mechanism is used: instead of changing the setuid bit directly on files that are in the store, we let the system administrator @emph{declare} which programs should be setuid root." msgstr "Der Store selbst kann @emph{keine} setuid-Programme enthalten: Das wäre eine Sicherheitslücke, weil dann jeder Nutzer auf dem System Ableitungen schreiben könnte, die in den Store solche Dateien einfügen würden (siehe @ref{The Store}). Wir benutzen also einen anderen Mechanismus: Statt auf den ausführbaren Dateien im Store selbst deren setuid-Bit zu setzen, lassen wir den Systemadministrator @emph{deklarieren}, welche Programme mit setuid-root gestartet werden." #. type: Plain text -#: guix-git/doc/guix.texi:34083 -#, fuzzy -#| msgid "The @code{setuid-programs} field of an @code{operating-system} declaration contains a list of @code{} denoting the names of programs to have a setuid or setgid bit set (@pxref{Using the Configuration System}). For instance, the @command{passwd} program, which is part of the Shadow package, with a setuid root can be designated like this:" +#: guix-git/doc/guix.texi:34520 msgid "The @code{setuid-programs} field of an @code{operating-system} declaration contains a list of @code{} denoting the names of programs to have a setuid or setgid bit set (@pxref{Using the Configuration System}). For instance, the @command{mount.nfs} program, which is part of the nfs-utils package, with a setuid root can be designated like this:" -msgstr "Das Feld @code{setuid-programs} einer @code{operating-system}-Deklaration enthält eine Liste von @code{}-Objekten, die die Namen der Programme angeben, deren setuid- oder setgid-Bits gesetzt werden sollen (siehe @ref{Using the Configuration System}). Zum Beispiel kann das Programm @command{passwd}, was Teil des Shadow-Pakets ist, so setuid-root werden:" +msgstr "Das Feld @code{setuid-programs} einer @code{operating-system}-Deklaration enthält eine Liste von @code{}-Objekten, die die Namen der Programme angeben, deren setuid- oder setgid-Bits gesetzt werden sollen (siehe @ref{Using the Configuration System}). Zum Beispiel kann das Programm @command{mount.nfs}, was Teil des Pakets nfs-utils ist, so setuid-root werden:" -#. type: example -#: guix-git/doc/guix.texi:34087 -#, fuzzy, no-wrap -#| msgid "" -#| "(setuid-program\n" -#| " (program (file-append shadow \"/bin/passwd\")))\n" +#. type: lisp +#: guix-git/doc/guix.texi:34524 +#, no-wrap msgid "" "(setuid-program\n" " (program (file-append nfs-utils \"/sbin/mount.nfs\")))\n" msgstr "" "(setuid-program\n" -" (program (file-append shadow \"/bin/passwd\")))\n" +" (program (file-append nfs-utils \"/sbin/mount.nfs\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:34092 -#, fuzzy -#| msgid "And then it can be added to your operating system declaration by appending it to @code{%setuid-programs} like this:" +#: guix-git/doc/guix.texi:34529 msgid "And then, to make @command{mount.nfs} setuid on your system, add the previous example to your operating system declaration by appending it to @code{%setuid-programs} like this:" -msgstr "Daraufhin tragen Sie es in Ihre Betriebssystemdeklaration ein, indem Sie es an @code{%setuid-programs} anhängen wie hier:" +msgstr "Um @command{mount.nfs} also mit setuid auszuführen, tragen Sie das vorige Beispiel in Ihre Betriebssystemdeklaration ein, indem Sie es an @code{%setuid-programs} anhängen wie hier:" -#. type: example -#: guix-git/doc/guix.texi:34098 -#, fuzzy, no-wrap -#| msgid "" -#| "(setuid-programs\n" -#| " (append (list (setuid-program\n" -#| " (program (file-append swaylock \"/bin/swaylock\"))))\n" -#| " %setuid-programs))\n" +#. type: lisp +#: guix-git/doc/guix.texi:34537 +#, no-wrap msgid "" -"(setuid-programs\n" -" (append (list (setuid-program\n" -" (program (file-append nfs-utils \"/sbin/mount.nfs\"))))\n" -" %setuid-programs))\n" +"(operating-system\n" +" ;; Some fields omitted...\n" +" (setuid-programs\n" +" (append (list (setuid-program\n" +" (program (file-append nfs-utils \"/sbin/mount.nfs\")))\n" +" %setuid-programs))))\n" msgstr "" -"(setuid-programs\n" -" (append (list (setuid-program\n" -" (program (file-append swaylock \"/bin/swaylock\"))))\n" -" %setuid-programs))\n" +"(operating-system\n" +" ;; Davor stehen andere Felder …\n" +" (setuid-programs\n" +" (append (list (setuid-program\n" +" (program (file-append nfs-utils \"/sbin/mount.nfs\")))\n" +" %setuid-programs))))\n" #. type: deftp -#: guix-git/doc/guix.texi:34100 +#: guix-git/doc/guix.texi:34539 #, no-wrap msgid "{Data Type} setuid-program" msgstr "{Datentyp} setuid-program" #. type: deftp -#: guix-git/doc/guix.texi:34102 +#: guix-git/doc/guix.texi:34541 msgid "This data type represents a program with a setuid or setgid bit set." msgstr "Dieser Datentyp steht für ein Programm, bei dem das setuid- oder setgid-Bit gesetzt werden soll." #. type: code{#1} -#: guix-git/doc/guix.texi:34104 +#: guix-git/doc/guix.texi:34543 #, no-wrap msgid "program" msgstr "program" #. type: table -#: guix-git/doc/guix.texi:34106 +#: guix-git/doc/guix.texi:34545 msgid "A file-like object having its setuid and/or setgid bit set." msgstr "Ein dateiartiges Objekt, dessen setuid- und/oder setgid-Bit gesetzt werden soll." #. type: item -#: guix-git/doc/guix.texi:34107 +#: guix-git/doc/guix.texi:34546 #, no-wrap msgid "@code{setuid?} (default: @code{#t})" msgstr "@code{setuid?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:34109 +#: guix-git/doc/guix.texi:34548 msgid "Whether to set user setuid bit." msgstr "Ob das setuid-Bit für den Benutzer gesetzt werden soll." #. type: item -#: guix-git/doc/guix.texi:34110 +#: guix-git/doc/guix.texi:34549 #, no-wrap msgid "@code{setgid?} (default: @code{#f})" msgstr "@code{setgid?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:34112 +#: guix-git/doc/guix.texi:34551 msgid "Whether to set group setgid bit." msgstr "Ob das setgid-Bit für die Benutzergruppe gesetzt werden soll." #. type: item -#: guix-git/doc/guix.texi:34113 +#: guix-git/doc/guix.texi:34552 #, no-wrap msgid "@code{user} (default: @code{0})" msgstr "@code{user} (Vorgabe: @code{0})" #. type: table -#: guix-git/doc/guix.texi:34116 +#: guix-git/doc/guix.texi:34555 msgid "UID (integer) or user name (string) for the user owner of the program, defaults to root." msgstr "Benutzeridentifikator (UID, als ganze Zahl) oder Benutzername (als Zeichenkette) des Benutzers, dem das Programm gehören soll, nach Vorgabe der Administratornutzer root." #. type: item -#: guix-git/doc/guix.texi:34117 +#: guix-git/doc/guix.texi:34556 #, no-wrap msgid "@code{group} (default: @code{0})" msgstr "@code{group} (Vorgabe: @code{0})" #. type: table -#: guix-git/doc/guix.texi:34120 +#: guix-git/doc/guix.texi:34559 msgid "GID (integer) goup name (string) for the group owner of the program, defaults to root." msgstr "GID (als ganze Zahl) oder Gruppenname (als Zeichenkette) der Benutzergruppe, der das Programm gehört, nach Vorgabe die Benutzergruppe root." #. type: Plain text -#: guix-git/doc/guix.texi:34126 +#: guix-git/doc/guix.texi:34565 msgid "A default set of setuid programs is defined by the @code{%setuid-programs} variable of the @code{(gnu system)} module." msgstr "Eine vorgegebene Menge von setuid-Programmen wird durch die Variable @code{%setuid-programs} aus dem Modul @code{(gnu system)} definiert." #. type: defvr -#: guix-git/doc/guix.texi:34127 +#: guix-git/doc/guix.texi:34566 #, no-wrap msgid "{Scheme Variable} %setuid-programs" msgstr "{Scheme-Variable} %setuid-programs" #. type: defvr -#: guix-git/doc/guix.texi:34130 +#: guix-git/doc/guix.texi:34569 msgid "A list of @code{} denoting common programs that are setuid-root." msgstr "Eine Liste von @code{}-Objekten, die übliche Programme angeben, die setuid-root sein müssen." #. type: defvr -#: guix-git/doc/guix.texi:34133 +#: guix-git/doc/guix.texi:34572 msgid "The list includes commands such as @command{passwd}, @command{ping}, @command{su}, and @command{sudo}." msgstr "Die Liste enthält Befehle wie @command{passwd}, @command{ping}, @command{su} und @command{sudo}." #. type: Plain text -#: guix-git/doc/guix.texi:34139 +#: guix-git/doc/guix.texi:34578 msgid "Under the hood, the actual setuid programs are created in the @file{/run/setuid-programs} directory at system activation time. The files in this directory refer to the ``real'' binaries, which are in the store." msgstr "Intern erzeugt Guix die eigentlichen setuid-Programme im Verzeichnis @file{/run/setuid-programs}, wenn das System aktiviert wird. Die Dateien in diesem Verzeichnis verweisen auf die „echten“ Binärdateien im Store." #. type: cindex -#: guix-git/doc/guix.texi:34143 +#: guix-git/doc/guix.texi:34582 #, no-wrap msgid "HTTPS, certificates" msgstr "HTTPS, Zertifikate" #. type: cindex -#: guix-git/doc/guix.texi:34144 +#: guix-git/doc/guix.texi:34583 #, no-wrap msgid "X.509 certificates" msgstr "X.509-Zertifikate" #. type: cindex -#: guix-git/doc/guix.texi:34145 +#: guix-git/doc/guix.texi:34584 #, no-wrap msgid "TLS" msgstr "TLS" #. type: Plain text -#: guix-git/doc/guix.texi:34152 +#: guix-git/doc/guix.texi:34591 msgid "Web servers available over HTTPS (that is, HTTP over the transport-layer security mechanism, TLS) send client programs an @dfn{X.509 certificate} that the client can then use to @emph{authenticate} the server. To do that, clients verify that the server's certificate is signed by a so-called @dfn{certificate authority} (CA). But to verify the CA's signature, clients must have first acquired the CA's certificate." msgstr "Über HTTPS verfügbare Webserver (also HTTP mit gesicherter Transportschicht, englisch „Transport-Layer Security“, kurz TLS) senden Client-Programmen ein @dfn{X.509-Zertifikat}, mit dem der Client den Server dann @emph{authentifizieren} kann. Dazu verifiziert der Client, dass das Zertifikat des Servers von einer sogenannten Zertifizierungsstelle signiert wurde (@dfn{Certificate Authority}, kurz CA). Damit er aber die Signatur der Zertifizierungsstelle verifizieren kann, muss jeder Client das Zertifikat der Zertifizierungsstelle besitzen." #. type: Plain text -#: guix-git/doc/guix.texi:34156 +#: guix-git/doc/guix.texi:34595 msgid "Web browsers such as GNU@tie{}IceCat include their own set of CA certificates, such that they are able to verify CA signatures out-of-the-box." msgstr "Web-Browser wie GNU@tie{}IceCat liefern ihre eigenen CA-Zertifikate mit, damit sie von Haus aus Zertifikate verifizieren können." #. type: Plain text -#: guix-git/doc/guix.texi:34160 +#: guix-git/doc/guix.texi:34599 msgid "However, most other programs that can talk HTTPS---@command{wget}, @command{git}, @command{w3m}, etc.---need to be told where CA certificates can be found." msgstr "Den meisten anderen Programmen, die HTTPS sprechen können@tie{}— @command{wget}, @command{git}, @command{w3m} etc.@:@tie{}— muss allerdings erst mitgeteilt werden, wo die CA-Zertifikate installiert sind." #. type: Plain text -#: guix-git/doc/guix.texi:34167 +#: guix-git/doc/guix.texi:34606 msgid "In Guix, this is done by adding a package that provides certificates to the @code{packages} field of the @code{operating-system} declaration (@pxref{operating-system Reference}). Guix includes one such package, @code{nss-certs}, which is a set of CA certificates provided as part of Mozilla's Network Security Services." msgstr "In Guix müssen Sie dazu ein Paket, das Zertifikate enthält, in das @code{packages}-Feld der @code{operating-system}-Deklaration des Betriebssystems hinzufügen (siehe @ref{operating-system Reference}). Guix liefert ein solches Paket mit, @code{nss-certs}, was als Teil von Mozillas „Network Security Services“ angeboten wird." #. type: Plain text -#: guix-git/doc/guix.texi:34172 +#: guix-git/doc/guix.texi:34611 msgid "Note that it is @emph{not} part of @code{%base-packages}, so you need to explicitly add it. The @file{/etc/ssl/certs} directory, which is where most applications and libraries look for certificates by default, points to the certificates installed globally." msgstr "Beachten Sie, dass es @emph{nicht} zu den @code{%base-packages} gehört, Sie es also ausdrücklich hinzufügen müssen. Das Verzeichnis @file{/etc/ssl/certs}, wo die meisten Anwendungen und Bibliotheken ihren Voreinstellungen entsprechend nach Zertifikaten suchen, verweist auf die global installierten Zertifikate." #. type: Plain text -#: guix-git/doc/guix.texi:34182 +#: guix-git/doc/guix.texi:34621 msgid "Unprivileged users, including users of Guix on a foreign distro, can also install their own certificate package in their profile. A number of environment variables need to be defined so that applications and libraries know where to find them. Namely, the OpenSSL library honors the @env{SSL_CERT_DIR} and @env{SSL_CERT_FILE} variables. Some applications add their own environment variables; for instance, the Git version control system honors the certificate bundle pointed to by the @env{GIT_SSL_CAINFO} environment variable. Thus, you would typically run something like:" msgstr "Unprivilegierte Benutzer, wie die, die Guix auf einer Fremddistribution benutzen, können sich auch lokal ihre eigenen Pakete mit Zertifikaten in ihr Profil installieren. Eine Reihe von Umgebungsvariablen muss dazu definiert werden, damit Anwendungen und Bibliotheken wissen, wo diese Zertifikate zu finden sind. Und zwar folgt die OpenSSL-Bibliothek den Umgebungsvariablen @env{SSL_CERT_DIR} und @env{SSL_CERT_FILE}, manche Anwendungen benutzen stattdessen aber ihre eigenen Umgebungsvariablen. Das Versionskontrollsystem Git liest den Ort zum Beispiel aus der Umgebungsvariablen @env{GIT_SSL_CAINFO} aus. Sie würden typischerweise also so etwas ausführen:" #. type: example -#: guix-git/doc/guix.texi:34188 +#: guix-git/doc/guix.texi:34627 #, no-wrap msgid "" "guix install nss-certs\n" @@ -63877,12 +64765,12 @@ msgstr "" "export GIT_SSL_CAINFO=\"$SSL_CERT_FILE\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:34193 +#: guix-git/doc/guix.texi:34632 msgid "As another example, R requires the @env{CURL_CA_BUNDLE} environment variable to point to a certificate bundle, so you would have to run something like this:" msgstr "Ein weiteres Beispiel ist R, was voraussetzt, dass die Umgebungsvariable @env{CURL_CA_BUNDLE} auf ein Zertifikatsbündel verweist, weshalb Sie etwas wie hier ausführen müssten:" #. type: example -#: guix-git/doc/guix.texi:34197 +#: guix-git/doc/guix.texi:34636 #, no-wrap msgid "" "guix install nss-certs\n" @@ -63892,51 +64780,51 @@ msgstr "" "export CURL_CA_BUNDLE=\"$HOME/.guix-profile/etc/ssl/certs/ca-certificates.crt\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:34201 +#: guix-git/doc/guix.texi:34640 msgid "For other applications you may want to look up the required environment variable in the relevant documentation." msgstr "Für andere Anwendungen möchten Sie die Namen der benötigten Umgebungsvariablen vielleicht in deren Dokumentation nachschlagen." #. type: cindex -#: guix-git/doc/guix.texi:34206 +#: guix-git/doc/guix.texi:34645 #, no-wrap msgid "name service switch" msgstr "Name Service Switch" #. type: cindex -#: guix-git/doc/guix.texi:34207 +#: guix-git/doc/guix.texi:34646 #, no-wrap msgid "NSS" msgstr "NSS" #. type: Plain text -#: guix-git/doc/guix.texi:34216 +#: guix-git/doc/guix.texi:34655 msgid "The @code{(gnu system nss)} module provides bindings to the configuration file of the libc @dfn{name service switch} or @dfn{NSS} (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference Manual}). In a nutshell, the NSS is a mechanism that allows libc to be extended with new ``name'' lookup methods for system databases, which includes host names, service names, user accounts, and more (@pxref{Name Service Switch, System Databases and Name Service Switch,, libc, The GNU C Library Reference Manual})." msgstr "Das Modul @code{(gnu system nss)} enthält Anbindungen für die Konfiguration des @dfn{Name Service Switch} (NSS) der libc (siehe @ref{NSS Configuration File,,, libc, Referenzhandbuch der GNU-C-Bibliothek}). Kurz gesagt ist der NSS ein Mechanismus, mit dem die libc um neue „Namens“-Auflösungsmethoden für Systemdatenbanken erweitert werden kann; dazu gehören Rechnernamen (auch bekannt als „Host“-Namen), Dienstnamen, Benutzerkonten und mehr (siehe @ref{Name Service Switch, Systemdatenbanken und der Name Service Switch,, libc, Referenzhandbuch der GNU-C-Bibliothek})." #. type: Plain text -#: guix-git/doc/guix.texi:34223 +#: guix-git/doc/guix.texi:34662 msgid "The NSS configuration specifies, for each system database, which lookup method is to be used, and how the various methods are chained together---for instance, under which circumstances NSS should try the next method in the list. The NSS configuration is given in the @code{name-service-switch} field of @code{operating-system} declarations (@pxref{operating-system Reference, @code{name-service-switch}})." msgstr "Die NSS-Konfiguration legt für jede Systemdatenbank fest, mit welcher Methode der Name nachgeschlagen („aufgelöst“) werden kann und welche Methoden zusammenhängen@tie{}— z.B.@: unter welchen Umständen der NSS es mit der nächsten Methode auf seiner Liste versuchen sollte. Die NSS-Konfiguration wird im Feld @code{name-service-switch} von @code{operating-system}-Deklarationen angegeben (siehe @ref{operating-system Reference, @code{name-service-switch}})." #. type: cindex -#: guix-git/doc/guix.texi:34224 +#: guix-git/doc/guix.texi:34663 #, no-wrap msgid "nss-mdns" msgstr "nss-mdns" #. type: cindex -#: guix-git/doc/guix.texi:34225 +#: guix-git/doc/guix.texi:34664 #, no-wrap msgid ".local, host name lookup" msgstr ".local, Rechnernamensauflösung" #. type: Plain text -#: guix-git/doc/guix.texi:34230 +#: guix-git/doc/guix.texi:34669 msgid "As an example, the declaration below configures the NSS to use the @uref{https://0pointer.de/lennart/projects/nss-mdns/, @code{nss-mdns} back-end}, which supports host name lookups over multicast DNS (mDNS) for host names ending in @code{.local}:" msgstr "Zum Beispiel konfigurieren die folgenden Deklarationen den NSS so, dass er das @uref{https://0pointer.de/lennart/projects/nss-mdns/, @code{nss-mdns}-Backend} benutzt, wodurch er auf @code{.local} endende Rechnernamen über Multicast-DNS (mDNS) auflöst:" #. type: lisp -#: guix-git/doc/guix.texi:34234 +#: guix-git/doc/guix.texi:34673 #, no-wrap msgid "" "(name-service-switch\n" @@ -63948,7 +64836,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:34239 +#: guix-git/doc/guix.texi:34678 #, no-wrap msgid "" " ;; If the above did not succeed, try\n" @@ -63964,7 +64852,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:34245 +#: guix-git/doc/guix.texi:34684 #, no-wrap msgid "" " ;; 'mdns_minimal' is authoritative for\n" @@ -63984,7 +64872,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:34249 +#: guix-git/doc/guix.texi:34688 #, no-wrap msgid "" " ;; Then fall back to DNS.\n" @@ -63998,7 +64886,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:34253 +#: guix-git/doc/guix.texi:34692 #, no-wrap msgid "" " ;; Finally, try with the \"full\" 'mdns'.\n" @@ -64011,151 +64899,151 @@ msgstr "" " (name \"mdns\")))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:34258 +#: guix-git/doc/guix.texi:34697 msgid "Do not worry: the @code{%mdns-host-lookup-nss} variable (see below) contains this configuration, so you will not have to type it if all you want is to have @code{.local} host lookup working." msgstr "Keine Sorge: Die Variable @code{%mdns-host-lookup-nss} (siehe unten) enthält diese Konfiguration bereits. Statt das alles selst einzutippen, können Sie sie benutzen, wenn alles, was Sie möchten, eine funktionierende Namensauflösung für @code{.local}-Rechner ist." #. type: Plain text -#: guix-git/doc/guix.texi:34266 +#: guix-git/doc/guix.texi:34705 msgid "Note that, in this case, in addition to setting the @code{name-service-switch} of the @code{operating-system} declaration, you also need to use @code{avahi-service-type} (@pxref{Networking Services, @code{avahi-service-type}}), or @code{%desktop-services}, which includes it (@pxref{Desktop Services}). Doing this makes @code{nss-mdns} accessible to the name service cache daemon (@pxref{Base Services, @code{nscd-service}})." msgstr "Beachten Sie dabei, dass es zusätzlich zum Festlegen des @code{name-service-switch} in der @code{operating-system}-Deklaration auch erforderlich ist, den @code{avahi-service-type} zu benutzen (siehe @ref{Networking Services, @code{avahi-service-type}}). Es genügt auch, wenn Sie die @code{%desktop-services} benutzen, weil er darin enthalten ist (siehe @ref{Desktop Services}). Dadurch wird @code{nss-mdns} für den Name Service Cache Daemon nutzbar (siehe @ref{Base Services, @code{nscd-service}})." #. type: Plain text -#: guix-git/doc/guix.texi:34269 +#: guix-git/doc/guix.texi:34708 msgid "For convenience, the following variables provide typical NSS configurations." msgstr "Um sich eine lange Konfiguration zu ersparen, können Sie auch einfach die folgenden Variablen für typische NSS-Konfigurationen benutzen." #. type: defvr -#: guix-git/doc/guix.texi:34270 +#: guix-git/doc/guix.texi:34709 #, no-wrap msgid "{Scheme Variable} %default-nss" msgstr "{Scheme-Variable} %default-nss" #. type: defvr -#: guix-git/doc/guix.texi:34273 +#: guix-git/doc/guix.texi:34712 msgid "This is the default name service switch configuration, a @code{name-service-switch} object." msgstr "Die vorgegebene Konfiguration des Name Service Switch als ein @code{name-service-switch}-Objekt." #. type: defvr -#: guix-git/doc/guix.texi:34275 +#: guix-git/doc/guix.texi:34714 #, no-wrap msgid "{Scheme Variable} %mdns-host-lookup-nss" msgstr "{Scheme-Variable} %mdns-host-lookup-nss" #. type: defvr -#: guix-git/doc/guix.texi:34278 +#: guix-git/doc/guix.texi:34717 msgid "This is the name service switch configuration with support for host name lookup over multicast DNS (mDNS) for host names ending in @code{.local}." msgstr "Die Name-Service-Switch-Konfiguration mit Unterstützung für Rechnernamensauflösung über „Multicast DNS“ (mDNS) für auf @code{.local} endende Rechnernamen." #. type: Plain text -#: guix-git/doc/guix.texi:34288 +#: guix-git/doc/guix.texi:34727 msgid "The reference for name service switch configuration is given below. It is a direct mapping of the configuration file format of the C library , so please refer to the C library manual for more information (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference Manual}). Compared to the configuration file format of libc NSS, it has the advantage not only of adding this warm parenthetic feel that we like, but also static checks: you will know about syntax errors and typos as soon as you run @command{guix system}." msgstr "Im Folgenden finden Sie eine Referenz, wie eine Name-Service-Switch-Konfiguration aussehen muss. Sie hat eine direkte Entsprechung zum Konfigurationsdateiformat der C-Bibliothek, lesen Sie weitere Informationen also bitte im Handbuch der C-Bibliothek nach (siehe @ref{NSS Configuration File,,, libc, Referenzhandbuch der GNU-C-Bibliothek}). Gegenüber dem Konfigurationsdateiformat des libc-NSS bekommen Sie mit unserer Syntax nicht nur ein warm umklammerndes Gefühl, sondern auch eine statische Analyse: Wenn Sie Syntax- und Schreibfehler machen, werden Sie darüber benachrichtigt, sobald Sie @command{guix system} aufrufen." #. type: deftp -#: guix-git/doc/guix.texi:34289 +#: guix-git/doc/guix.texi:34728 #, no-wrap msgid "{Data Type} name-service-switch" msgstr "{Datentyp} name-service-switch" #. type: deftp -#: guix-git/doc/guix.texi:34294 +#: guix-git/doc/guix.texi:34733 msgid "This is the data type representation the configuration of libc's name service switch (NSS). Each field below represents one of the supported system databases." msgstr "Der Datentyp, der die Konfiguration des Name Service Switch (NSS) der libc repräsentiert. Jedes im Folgenden aufgeführte Feld repräsentiert eine der unterstützten Systemdatenbanken." #. type: item -#: guix-git/doc/guix.texi:34296 +#: guix-git/doc/guix.texi:34735 #, no-wrap msgid "aliases" msgstr "aliases" #. type: itemx -#: guix-git/doc/guix.texi:34297 +#: guix-git/doc/guix.texi:34736 #, no-wrap msgid "ethers" msgstr "ethers" #. type: itemx -#: guix-git/doc/guix.texi:34299 +#: guix-git/doc/guix.texi:34738 #, no-wrap msgid "gshadow" msgstr "gshadow" #. type: itemx -#: guix-git/doc/guix.texi:34300 +#: guix-git/doc/guix.texi:34739 #, no-wrap msgid "hosts" msgstr "hosts" #. type: itemx -#: guix-git/doc/guix.texi:34301 +#: guix-git/doc/guix.texi:34740 #, no-wrap msgid "initgroups" msgstr "initgroups" #. type: itemx -#: guix-git/doc/guix.texi:34302 +#: guix-git/doc/guix.texi:34741 #, no-wrap msgid "netgroup" msgstr "netgroup" #. type: itemx -#: guix-git/doc/guix.texi:34303 +#: guix-git/doc/guix.texi:34742 #, no-wrap msgid "networks" msgstr "networks" #. type: itemx -#: guix-git/doc/guix.texi:34306 +#: guix-git/doc/guix.texi:34745 #, no-wrap msgid "rpc" msgstr "rpc" #. type: itemx -#: guix-git/doc/guix.texi:34308 +#: guix-git/doc/guix.texi:34747 #, no-wrap msgid "shadow" msgstr "shadow" #. type: table -#: guix-git/doc/guix.texi:34311 +#: guix-git/doc/guix.texi:34750 msgid "The system databases handled by the NSS@. Each of these fields must be a list of @code{} objects (see below)." msgstr "Das sind die Systemdatenbanken, um die sich NSS kümmern kann. Jedes dieser Felder muss eine Liste aus @code{}-Objekten sein (siehe unten)." #. type: deftp -#: guix-git/doc/guix.texi:34314 +#: guix-git/doc/guix.texi:34753 #, no-wrap msgid "{Data Type} name-service" msgstr "{Datentyp} name-service" #. type: deftp -#: guix-git/doc/guix.texi:34318 +#: guix-git/doc/guix.texi:34757 msgid "This is the data type representing an actual name service and the associated lookup action." msgstr "Der einen eigentlichen Namensdienst repräsentierende Datentyp zusammen mit der zugehörigen Auflösungsaktion." #. type: table -#: guix-git/doc/guix.texi:34323 +#: guix-git/doc/guix.texi:34762 msgid "A string denoting the name service (@pxref{Services in the NSS configuration,,, libc, The GNU C Library Reference Manual})." msgstr "Eine Zeichenkette, die den Namensdienst bezeichnet (siehe @ref{Services in the NSS configuration,,, libc, Referenzhandbuch der GNU-C-Bibliothek})." #. type: table -#: guix-git/doc/guix.texi:34328 +#: guix-git/doc/guix.texi:34767 msgid "Note that name services listed here must be visible to nscd. This is achieved by passing the @code{#:name-services} argument to @code{nscd-service} the list of packages providing the needed name services (@pxref{Base Services, @code{nscd-service}})." msgstr "Beachten Sie, dass hier aufgeführte Namensdienste für den nscd sichtbar sein müssen. Dazu übergeben Sie im Argument @code{#:name-services} des @code{nscd-service} die Liste der Pakete, die die entsprechenden Namensdienste anbieten (siehe @ref{Base Services, @code{nscd-service}})." #. type: item -#: guix-git/doc/guix.texi:34329 +#: guix-git/doc/guix.texi:34768 #, no-wrap msgid "reaction" msgstr "reaction" #. type: table -#: guix-git/doc/guix.texi:34333 +#: guix-git/doc/guix.texi:34772 msgid "An action specified using the @code{lookup-specification} macro (@pxref{Actions in the NSS configuration,,, libc, The GNU C Library Reference Manual}). For example:" msgstr "Eine mit Hilfe des Makros @code{lookup-specification} angegebene Aktion (siehe @ref{Actions in the NSS configuration,,, libc, Referenzhandbuch der GNU-C-Bibliothek}). Zum Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:34337 +#: guix-git/doc/guix.texi:34776 #, no-wrap msgid "" "(lookup-specification (unavailable => continue)\n" @@ -64165,17 +65053,17 @@ msgstr "" " (success => return))\n" #. type: Plain text -#: guix-git/doc/guix.texi:34351 +#: guix-git/doc/guix.texi:34790 msgid "For bootstrapping purposes, the Linux-Libre kernel is passed an @dfn{initial RAM disk}, or @dfn{initrd}. An initrd contains a temporary root file system as well as an initialization script. The latter is responsible for mounting the real root file system, and for loading any kernel modules that may be needed to achieve that." msgstr "Um ihn zu initialisieren (zu „bootstrappen“), wird für den Kernel Linux-Libre eine @dfn{initiale RAM-Disk} angegeben (kurz @dfn{initrd}). Eine initrd enthält ein temporäres Wurzeldateisystem sowie ein Skript zur Initialisierung. Letzteres ist dafür zuständig, das echte Wurzeldateisystem einzubinden und alle Kernel-Module zu laden, die dafür nötig sein könnten." #. type: Plain text -#: guix-git/doc/guix.texi:34360 +#: guix-git/doc/guix.texi:34799 msgid "The @code{initrd-modules} field of an @code{operating-system} declaration allows you to specify Linux-libre kernel modules that must be available in the initrd. In particular, this is where you would list modules needed to actually drive the hard disk where your root partition is---although the default value of @code{initrd-modules} should cover most use cases. For example, assuming you need the @code{megaraid_sas} module in addition to the default modules to be able to access your root file system, you would write:" msgstr "Mit dem Feld @code{initrd-modules} einer @code{operating-system}-Deklaration können Sie angeben, welche Kernel-Module für Linux-libre in der initrd verfügbar sein müssen. Insbesondere müssen hier die Module aufgeführt werden, um die Festplatte zu betreiben, auf der sich Ihre Wurzelpartition befindet@tie{}— allerdings sollte der vorgegebene Wert der @code{initrd-modules} in dem meisten Fällen genügen. Wenn Sie aber zum Beispiel das Kernel-Modul @code{megaraid_sas} zusätzlich zu den vorgegebenen Modulen brauchen, um auf Ihr Wurzeldateisystem zugreifen zu können, würden Sie das so schreiben:" #. type: lisp -#: guix-git/doc/guix.texi:34365 +#: guix-git/doc/guix.texi:34804 #, no-wrap msgid "" "(operating-system\n" @@ -64187,28 +65075,28 @@ msgstr "" " (initrd-modules (cons \"megaraid_sas\" %base-initrd-modules)))\n" #. type: defvr -#: guix-git/doc/guix.texi:34367 +#: guix-git/doc/guix.texi:34806 #, no-wrap msgid "{Scheme Variable} %base-initrd-modules" msgstr "{Scheme-Variable} %base-initrd-modules" #. type: defvr -#: guix-git/doc/guix.texi:34369 +#: guix-git/doc/guix.texi:34808 msgid "This is the list of kernel modules included in the initrd by default." msgstr "Der Vorgabewert für die Liste der Kernel-Module, die in der initrd enthalten sein sollen." #. type: Plain text -#: guix-git/doc/guix.texi:34377 +#: guix-git/doc/guix.texi:34816 msgid "Furthermore, if you need lower-level customization, the @code{initrd} field of an @code{operating-system} declaration allows you to specify which initrd you would like to use. The @code{(gnu system linux-initrd)} module provides three ways to build an initrd: the high-level @code{base-initrd} procedure and the low-level @code{raw-initrd} and @code{expression->initrd} procedures." msgstr "Wenn Sie noch systemnähere Anpassungen durchführen wollen, können Sie im Feld @code{initrd} einer @code{operating-system}-Deklaration angeben, was für eine Art von initrd Sie benutzen möchten. Das Modul @code{(gnu system linux-initrd)} enthält drei Arten, eine initrd zu erstellen: die abstrakte Prozedur @code{base-initrd} und die systemnahen Prozeduren @code{raw-initrd} und @code{expression->initrd}." #. type: Plain text -#: guix-git/doc/guix.texi:34382 +#: guix-git/doc/guix.texi:34821 msgid "The @code{base-initrd} procedure is intended to cover most common uses. For example, if you want to add a bunch of kernel modules to be loaded at boot time, you can define the @code{initrd} field of the operating system declaration like this:" msgstr "Mit der Prozedur @code{base-initrd} sollten Sie die häufigsten Anwendungszwecke abdecken können. Wenn Sie zum Beispiel ein paar Kernel-Module zur Boot-Zeit laden lassen möchten, können Sie das @code{initrd}-Feld auf diese Art definieren:" #. type: lisp -#: guix-git/doc/guix.texi:34390 +#: guix-git/doc/guix.texi:34829 #, no-wrap msgid "" "(initrd (lambda (file-systems . rest)\n" @@ -64227,449 +65115,449 @@ msgstr "" " rest)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:34395 +#: guix-git/doc/guix.texi:34834 msgid "The @code{base-initrd} procedure also handles common use cases that involves using the system as a QEMU guest, or as a ``live'' system with volatile root file system." msgstr "Die Prozedur @code{base-initrd} kann auch mit üblichen Anwendungszwecken umgehen, um das System als QEMU-Gastsystem zu betreiben oder als ein „Live“-System ohne ein dauerhaft gespeichertes Wurzeldateisystem." #. type: Plain text -#: guix-git/doc/guix.texi:34402 +#: guix-git/doc/guix.texi:34841 msgid "The @code{base-initrd} procedure is built from @code{raw-initrd} procedure. Unlike @code{base-initrd}, @code{raw-initrd} doesn't do anything high-level, such as trying to guess which kernel modules and packages should be included to the initrd. An example use of @code{raw-initrd} is when a user has a custom Linux kernel configuration and default kernel modules included by @code{base-initrd} are not available." msgstr "Die Prozedur @code{base-initrd} baut auf der Prozedur @code{raw-initrd} auf. Anders als @code{base-initrd} hat @code{raw-initrd} keinerlei Zusatzfunktionalitäten: Es wird kein Versuch unternommen, für die initrd notwendige Kernel-Module und Pakete automatisch hinzuzunehmen. @code{raw-initrd} kann zum Beispiel benutzt werden, wenn ein Nutzer eine eigene Konfiguration des Linux-Kernels verwendet und die Standard-Kernel-Module, die mit @code{base-initrd} hinzugenommen würden, nicht verfügbar sind." #. type: Plain text -#: guix-git/doc/guix.texi:34407 +#: guix-git/doc/guix.texi:34846 msgid "The initial RAM disk produced by @code{base-initrd} or @code{raw-initrd} honors several options passed on the Linux kernel command line (that is, arguments passed @i{via} the @code{linux} command of GRUB, or the @code{-append} option of QEMU), notably:" msgstr "Die initiale RAM-Disk, wie sie von @code{base-initrd} oder @code{raw-initrd} erzeugt wird, richtet sich nach verschiedenen Optionen, die auf der Kernel-Befehlszeile übergeben werden (also über GRUBs @code{linux}-Befehl oder die @code{-append}-Befehlszeilenoption von QEMU). Erwähnt werden sollten:" #. type: item -#: guix-git/doc/guix.texi:34409 +#: guix-git/doc/guix.texi:34848 #, no-wrap msgid "--load=@var{boot}" msgstr "--load=@var{boot}" #. type: table -#: guix-git/doc/guix.texi:34412 +#: guix-git/doc/guix.texi:34851 msgid "Tell the initial RAM disk to load @var{boot}, a file containing a Scheme program, once it has mounted the root file system." msgstr "Die initiale RAM-Disk eine Datei @var{boot}, in der ein Scheme-Programm steht, laden lassen, nachdem das Wurzeldateisystem eingebunden wurde." #. type: table -#: guix-git/doc/guix.texi:34416 +#: guix-git/doc/guix.texi:34855 msgid "Guix uses this option to yield control to a boot program that runs the service activation programs and then spawns the GNU@tie{}Shepherd, the initialization system." msgstr "Guix übergibt mit dieser Befehlszeilenoption die Kontrolle an ein Boot-Programm, das die Dienstaktivierungsprogramme ausführt und anschließend den GNU@tie{}Shepherd startet, das Initialisierungssystem („init“-System) von Guix System." #. type: item -#: guix-git/doc/guix.texi:34417 +#: guix-git/doc/guix.texi:34856 #, no-wrap msgid "--root=@var{root}" msgstr "--root=@var{Wurzel}" #. type: table -#: guix-git/doc/guix.texi:34422 +#: guix-git/doc/guix.texi:34861 msgid "Mount @var{root} as the root file system. @var{root} can be a device name like @code{/dev/sda1}, a file system label, or a file system UUID. When unspecified, the device name from the root file system of the operating system declaration is used." msgstr "Das mit @var{Wurzel} bezeichnete Dateisystem als Wurzeldateisystem einbinden. @var{Wurzel} kann ein Geratename wie @code{/dev/sda1}, eine Dateisystembezeichnung (d.h.@: ein Dateisystem-„Label“) oder eine Dateisystem-UUID sein. Wird nichts angegeben, wird der Gerätename aus dem Wurzeldateisystem der Betriebssystemdeklaration benutzt." #. type: item -#: guix-git/doc/guix.texi:34423 +#: guix-git/doc/guix.texi:34862 #, no-wrap msgid "fsck.mode=@var{mode}" msgstr "fsck.mode=@var{Modus}" #. type: table -#: guix-git/doc/guix.texi:34429 +#: guix-git/doc/guix.texi:34868 msgid "Whether to check the @var{root} file system for errors before mounting it. @var{mode} is one of @code{skip} (never check), @code{force} (always check), or @code{auto} to respect the root file-system object's 'check?' setting (@pxref{File Systems}) and run a full scan only if the file system was not cleanly shut down." msgstr "Ob das mit @var{Wurzel} bezeichnete Dateisystem vor dem Einbinden auf Fehler geprüft werden soll. Als @var{Modus} geben Sie entweder @code{skip} (nie prüfen), @code{force} (immer prüfen) oder @code{auto} an. Bei @code{auto} wird die „check?“-Einstellung des Dateisystemobjekts für @var{Wurzel} verwendet (siehe @ref{File Systems}) und eine Dateisystemüberprüfung nur durchgeführt, wenn das Dateisystem nicht ordnungsgemäß heruntergefahren wurde." #. type: table -#: guix-git/doc/guix.texi:34432 +#: guix-git/doc/guix.texi:34871 msgid "@code{auto} is the default if this option is not present or if @var{mode} is not one of the above." msgstr "Die Voreinstellung ist @code{auto}, wenn diese Option nicht angegeben wird oder @var{Modus} keinem der genannten Werte entspricht." #. type: item -#: guix-git/doc/guix.texi:34433 +#: guix-git/doc/guix.texi:34872 #, no-wrap msgid "fsck.repair=@var{level}" msgstr "fsck.repair=@var{Stufe}" #. type: table -#: guix-git/doc/guix.texi:34438 +#: guix-git/doc/guix.texi:34877 msgid "The level of repairs to perform automatically if errors are found in the @var{root} file system. @var{level} is one of @code{no} (do not write to @var{root} at all if possible), @code{yes} (repair as much as possible), or @code{preen} to repair problems considered safe to repair automatically." msgstr "Die Stufe gibt an, wie erkannte Fehler im Wurzeldateisystem @var{Wurzel} automatisch repariert werden sollen. @var{Stufe} darf @code{no} sein (nichts an @var{Wurzel} ändern, wenn möglich), @code{yes} (so viele Fehler wie möglich beheben) oder @code{preen}. Letzteres repariert solche Probleme, wo die automatische Reparatur als unbedenklich eingeschätzt wird." #. type: table -#: guix-git/doc/guix.texi:34441 +#: guix-git/doc/guix.texi:34880 msgid "@code{preen} is the default if this option is not present or if @var{level} is not one of the above." msgstr "Wenn Sie diese Option weglassen oder als @var{Stufe} keine der genannten angeben, wird als Voreinstellung so verfahren, als hätten Sie @code{preen} angegeben." #. type: table -#: guix-git/doc/guix.texi:34445 +#: guix-git/doc/guix.texi:34884 msgid "Have @file{/run/booted-system} and @file{/run/current-system} point to @var{system}." msgstr "@file{/run/booted-system} und @file{/run/current-system} auf das @var{System} zeigen lassen." #. type: item -#: guix-git/doc/guix.texi:34446 +#: guix-git/doc/guix.texi:34885 #, no-wrap msgid "modprobe.blacklist=@var{modules}@dots{}" msgstr "modprobe.blacklist=@var{Module}…" #. type: cindex -#: guix-git/doc/guix.texi:34447 +#: guix-git/doc/guix.texi:34886 #, no-wrap msgid "module, black-listing" msgstr "Kernel-Module, Sperrliste" #. type: cindex -#: guix-git/doc/guix.texi:34448 +#: guix-git/doc/guix.texi:34887 #, no-wrap msgid "black list, of kernel modules" msgstr "Sperrliste, von Kernel-Modulen" #. type: table -#: guix-git/doc/guix.texi:34453 +#: guix-git/doc/guix.texi:34892 msgid "Instruct the initial RAM disk as well as the @command{modprobe} command (from the kmod package) to refuse to load @var{modules}. @var{modules} must be a comma-separated list of module names---e.g., @code{usbkbd,9pnet}." msgstr "Die initiale RAM-Disk sowie den Befehl @command{modprobe} (aus dem kmod-Paket) anweisen, das Laden der angegebenen @var{Module} zu verweigern. Als @var{Module} muss eine kommagetrennte Liste von Kernel-Modul-Namen angegeben werden@tie{}— z.B.@: @code{usbkbd,9pnet}." #. type: item -#: guix-git/doc/guix.texi:34454 +#: guix-git/doc/guix.texi:34893 #, no-wrap msgid "--repl" msgstr "--repl" #. type: table -#: guix-git/doc/guix.texi:34460 +#: guix-git/doc/guix.texi:34899 msgid "Start a read-eval-print loop (REPL) from the initial RAM disk before it tries to load kernel modules and to mount the root file system. Our marketing team calls it @dfn{boot-to-Guile}. The Schemer in you will love it. @xref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}, for more information on Guile's REPL." msgstr "Eine Lese-Auswerten-Schreiben-Schleife (englisch „Read-Eval-Print Loop“, kurz REPL) von der initialen RAM-Disk starten, bevor diese die Kernel-Module zu laden versucht und das Wurzeldateisystem einbindet. Unsere Marketingabteilung nennt das @dfn{boot-to-Guile}. Der Schemer in Ihnen wird das lieben. Siehe @ref{Using Guile Interactively,,, guile, Referenzhandbuch zu GNU Guile} für mehr Informationen über die REPL von Guile." #. type: Plain text -#: guix-git/doc/guix.texi:34466 +#: guix-git/doc/guix.texi:34905 msgid "Now that you know all the features that initial RAM disks produced by @code{base-initrd} and @code{raw-initrd} provide, here is how to use it and customize it further." msgstr "Jetzt wo Sie wissen, was für Funktionalitäten eine durch @code{base-initrd} und @code{raw-initrd} erzeugte initiale RAM-Disk so haben kann, möchten Sie vielleicht auch wissen, wie man sie benutzt und weiter anpasst:" #. type: deffn -#: guix-git/doc/guix.texi:34469 +#: guix-git/doc/guix.texi:34908 #, no-wrap msgid "{Scheme Procedure} raw-initrd @var{file-systems} @" msgstr "{Scheme-Prozedur} raw-initrd @var{Dateisysteme} @" #. type: deffn -#: guix-git/doc/guix.texi:34483 +#: guix-git/doc/guix.texi:34922 msgid "[#:linux-modules '()] [#:mapped-devices '()] @ [#:keyboard-layout #f] @ [#:helper-packages '()] [#:qemu-networking? #f] [#:volatile-root? #f] Return a derivation that builds a raw initrd. @var{file-systems} is a list of file systems to be mounted by the initrd, possibly in addition to the root file system specified on the kernel command line via @option{--root}. @var{linux-modules} is a list of kernel modules to be loaded at boot time. @var{mapped-devices} is a list of device mappings to realize before @var{file-systems} are mounted (@pxref{Mapped Devices}). @var{helper-packages} is a list of packages to be copied in the initrd. It may include @code{e2fsck/static} or other packages needed by the initrd to check the root file system." msgstr "[#:linux-modules '()] [#:mapped-devices '()] @ [#:keyboard-layout #f] @ [#:helper-packages '()] [#:qemu-networking? #f] [#:volatile-root? #f] Liefert eine Ableitung, die eine rohe („raw“) initrd erstellt. @var{Dateisysteme} bezeichnet eine Liste von durch die initrd einzubindenden Dateisystemen, unter Umständen zusätzlich zum auf der Kernel-Befehlszeile mit @option{--root} angegebenen Wurzeldateisystem. @var{linux-modules} ist eine Liste von Kernel-Modulen, die zur Boot-Zeit geladen werden sollen. @var{mapped-devices} ist eine Liste von Gerätezuordnungen, die hergestellt sein müssen, bevor die unter @var{file-systems} aufgeführten Dateisysteme eingebunden werden (siehe @ref{Mapped Devices}). @var{helper-packages} ist eine Liste von Paketen, die in die initrd kopiert werden. Darunter kann @code{e2fsck/static} oder andere Pakete aufgeführt werden, mit denen durch die initrd das Wurzeldateisystem auf Fehler hin geprüft werden kann." #. type: deffn -#: guix-git/doc/guix.texi:34489 guix-git/doc/guix.texi:34513 +#: guix-git/doc/guix.texi:34928 guix-git/doc/guix.texi:34952 msgid "When true, @var{keyboard-layout} is a @code{} record denoting the desired console keyboard layout. This is done before @var{mapped-devices} are set up and before @var{file-systems} are mounted such that, should the user need to enter a passphrase or use the REPL, this happens using the intended keyboard layout." msgstr "Ist es auf einen wahren Wert gesetzt, dann muss @var{keyboard-layout} eine Tastaturbelegung als @code{}-Verbundsobjekt angeben, die die gewünschte Tastaturbelegung für die Konsole bezeichnet. Sie wird verwendet, noch bevor die Gerätezuordnungen in @var{mapped-devices} hergestellt werden und bevor die Dateisysteme in @var{file-systems} eingebunden werden, damit der Anwender dabei die gewollte Tastaturbelegung beim Eingeben einer Passphrase und bei der Nutzung einer REPL verwenden kann." #. type: deffn -#: guix-git/doc/guix.texi:34493 +#: guix-git/doc/guix.texi:34932 msgid "When @var{qemu-networking?} is true, set up networking with the standard QEMU parameters. When @var{virtio?} is true, load additional modules so that the initrd can be used as a QEMU guest with para-virtualized I/O drivers." msgstr "Wenn @var{qemu-networking?} wahr ist, wird eine Netzwerkverbindung mit den Standard-QEMU-Parametern hergestellt. Wenn @var{virtio?} wahr ist, werden zusätzliche Kernel-Module geladen, damit die initrd als ein QEMU-Gast paravirtualisierte Ein-/Ausgabetreiber benutzen kann." #. type: deffn -#: guix-git/doc/guix.texi:34496 +#: guix-git/doc/guix.texi:34935 msgid "When @var{volatile-root?} is true, the root file system is writable but any changes to it are lost." msgstr "Wenn @var{volatile-root?} wahr ist, ist Schreiben auf das Wurzeldateisystem möglich, aber Änderungen daran bleiben nicht erhalten." #. type: deffn -#: guix-git/doc/guix.texi:34498 +#: guix-git/doc/guix.texi:34937 #, no-wrap msgid "{Scheme Procedure} base-initrd @var{file-systems} @" msgstr "{Scheme-Prozedur} base-initrd @var{Dateisysteme} @" #. type: deffn -#: guix-git/doc/guix.texi:34507 +#: guix-git/doc/guix.texi:34946 msgid "[#:mapped-devices '()] [#:keyboard-layout #f] @ [#:qemu-networking? #f] [#:volatile-root? #f] @ [#:linux-modules '()] Return as a file-like object a generic initrd, with kernel modules taken from @var{linux}. @var{file-systems} is a list of file-systems to be mounted by the initrd, possibly in addition to the root file system specified on the kernel command line via @option{--root}. @var{mapped-devices} is a list of device mappings to realize before @var{file-systems} are mounted." msgstr "[#:mapped-devices '()] [#:keyboard-layout #f] @ [#:qemu-networking? #f] [#:volatile-root? #f] @ [#:linux-modules '()] Liefert eine allgemein anwendbare, generische initrd als dateiartiges Objekt mit den Kernel-Modulen aus @var{linux}. Die @var{file-systems} sind eine Liste von durch die initrd einzubindenden Dateisystemen, unter Umständen zusätzlich zum Wurzeldateisystem, das auf der Kernel-Befehlszeile mit @option{--root} angegeben wurde. Die @var{mapped-devices} sind eine Liste von Gerätezuordnungen, die hergestellt sein müssen, bevor die @var{file-systems} eingebunden werden." #. type: deffn -#: guix-git/doc/guix.texi:34515 +#: guix-git/doc/guix.texi:34954 msgid "@var{qemu-networking?} and @var{volatile-root?} behaves as in @code{raw-initrd}." msgstr "@var{qemu-networking?} und @var{volatile-root?} verhalten sich wie bei @code{raw-initrd}." #. type: deffn -#: guix-git/doc/guix.texi:34520 +#: guix-git/doc/guix.texi:34959 msgid "The initrd is automatically populated with all the kernel modules necessary for @var{file-systems} and for the given options. Additional kernel modules can be listed in @var{linux-modules}. They will be added to the initrd, and loaded at boot time in the order in which they appear." msgstr "In die initrd werden automatisch alle Kernel-Module eingefügt, die für die unter @var{file-systems} angegebenen Dateisysteme und die angegebenen Optionen nötig sind. Zusätzliche Kernel-Module können unter den @var{linux-modules} aufgeführt werden. Diese werden zur initrd hinzugefügt und zur Boot-Zeit in der Reihenfolge geladen, in der sie angegeben wurden." #. type: Plain text -#: guix-git/doc/guix.texi:34527 +#: guix-git/doc/guix.texi:34966 msgid "Needless to say, the initrds we produce and use embed a statically-linked Guile, and the initialization program is a Guile program. That gives a lot of flexibility. The @code{expression->initrd} procedure builds such an initrd, given the program to run in that initrd." msgstr "Selbstverständlich betten die hier erzeugten und benutzten initrds ein statisch gebundenes Guile ein und das Initialisierungsprogramm ist ein Guile-Programm. Dadurch haben wir viel Flexibilität. Die Prozedur @code{expression->initrd} erstellt eine solche initrd für ein an sie übergebenes Programm." #. type: deffn -#: guix-git/doc/guix.texi:34528 +#: guix-git/doc/guix.texi:34967 #, no-wrap msgid "{Scheme Procedure} expression->initrd @var{exp} @" msgstr "{Scheme-Prozedur} expression->initrd @var{G-Ausdruck} @" #. type: deffn -#: guix-git/doc/guix.texi:34534 +#: guix-git/doc/guix.texi:34973 msgid "[#:guile %guile-static-stripped] [#:name \"guile-initrd\"] Return as a file-like object a Linux initrd (a gzipped cpio archive) containing @var{guile} and that evaluates @var{exp}, a G-expression, upon booting. All the derivations referenced by @var{exp} are automatically copied to the initrd." msgstr "[#:guile %guile-static-stripped] [#:name \"guile-initrd\"] Liefert eine Linux-initrd (d.h.@: ein gzip-komprimiertes cpio-Archiv) als dateiartiges Objekt, in dem @var{guile} enthalten ist, womit der @var{G-Ausdruck} nach dem Booten ausgewertet wird. Alle vom @var{G-Ausdruck} referenzierten Ableitungen werden automatisch in die initrd kopiert." #. type: cindex -#: guix-git/doc/guix.texi:34540 +#: guix-git/doc/guix.texi:34979 #, no-wrap msgid "boot loader" msgstr "Bootloader" #. type: Plain text -#: guix-git/doc/guix.texi:34547 +#: guix-git/doc/guix.texi:34986 msgid "The operating system supports multiple bootloaders. The bootloader is configured using @code{bootloader-configuration} declaration. All the fields of this structure are bootloader agnostic except for one field, @code{bootloader} that indicates the bootloader to be configured and installed." msgstr "Das Betriebssystem unterstützt mehrere Bootloader. Der gewünschte Bootloader wird mit der @code{bootloader-configuration}-Deklaration konfiguriert. Alle Felder dieser Struktur sind für alle Bootloader gleich außer dem einen Feld @code{bootloader}, das angibt, welcher Bootloader konfiguriert und installiert werden soll." #. type: Plain text -#: guix-git/doc/guix.texi:34552 +#: guix-git/doc/guix.texi:34991 msgid "Some of the bootloaders do not honor every field of @code{bootloader-configuration}. For instance, the extlinux bootloader does not support themes and thus ignores the @code{theme} field." msgstr "Manche der Bootloader setzen nicht alle Felder einer @code{bootloader-configuration} um. Zum Beispiel ignoriert der extlinux-Bootloader das @code{theme}-Feld, weil er keine eigenen Themen unterstützt." #. type: deftp -#: guix-git/doc/guix.texi:34553 +#: guix-git/doc/guix.texi:34992 #, no-wrap msgid "{Data Type} bootloader-configuration" msgstr "{Datentyp} bootloader-configuration" #. type: deftp -#: guix-git/doc/guix.texi:34555 +#: guix-git/doc/guix.texi:34994 msgid "The type of a bootloader configuration declaration." msgstr "Der Typ der Deklaration einer Bootloader-Konfiguration." #. type: cindex -#: guix-git/doc/guix.texi:34559 +#: guix-git/doc/guix.texi:34998 #, no-wrap msgid "EFI, bootloader" msgstr "EFI, Bootloader" #. type: cindex -#: guix-git/doc/guix.texi:34560 +#: guix-git/doc/guix.texi:34999 #, no-wrap msgid "UEFI, bootloader" msgstr "UEFI, Bootloader" #. type: cindex -#: guix-git/doc/guix.texi:34561 +#: guix-git/doc/guix.texi:35000 #, no-wrap msgid "BIOS, bootloader" msgstr "BIOS, Bootloader" #. type: table -#: guix-git/doc/guix.texi:34566 +#: guix-git/doc/guix.texi:35005 msgid "The bootloader to use, as a @code{bootloader} object. For now @code{grub-bootloader}, @code{grub-efi-bootloader}, @code{grub-efi-netboot-bootloader}, @code{extlinux-bootloader} and @code{u-boot-bootloader} are supported." msgstr "Der zu benutzende Bootloader als ein @code{bootloader}-Objekt. Zurzeit werden @code{grub-bootloader}, @code{grub-efi-bootloader}, @code{grub-efi-netboot-bootloader}, @code{extlinux-bootloader} und @code{u-boot-bootloader} unterstützt." #. type: cindex -#: guix-git/doc/guix.texi:34567 +#: guix-git/doc/guix.texi:35006 #, no-wrap msgid "ARM, bootloaders" msgstr "ARM, Bootloader" #. type: cindex -#: guix-git/doc/guix.texi:34568 +#: guix-git/doc/guix.texi:35007 #, no-wrap msgid "AArch64, bootloaders" msgstr "AArch64, Bootloader" #. type: table -#: guix-git/doc/guix.texi:34573 +#: guix-git/doc/guix.texi:35012 msgid "Available bootloaders are described in @code{(gnu bootloader @dots{})} modules. In particular, @code{(gnu bootloader u-boot)} contains definitions of bootloaders for a wide range of ARM and AArch64 systems, using the @uref{https://www.denx.de/wiki/U-Boot/, U-Boot bootloader}." msgstr "Verfügbare Bootloader werden in den Modulen @code{(gnu bootloader …)} beschrieben. Insbesondere enthält @code{(gnu bootloader u-boot)} Definitionen für eine Vielzahl von ARM- und AArch64-Systemen, die den @uref{https://www.denx.de/wiki/U-Boot/, U-Boot-Bootloader} benutzen." #. type: table -#: guix-git/doc/guix.texi:34579 +#: guix-git/doc/guix.texi:35018 msgid "@code{grub-efi-bootloader} allows to boot on modern systems using the @dfn{Unified Extensible Firmware Interface} (UEFI). This is what you should use if the installation image contains a @file{/sys/firmware/efi} directory when you boot it on your system." msgstr "@code{grub-efi-bootloader} macht es möglich, auf modernen Systemen mit @dfn{Unified Extensible Firmware Interface} (UEFI) zu booten. Sie sollten das hier benutzen, wenn im Installationsabbild ein Verzeichnis @file{/sys/firmware/efi} vorhanden ist, wenn Sie davon auf Ihrem System booten." #. type: table -#: guix-git/doc/guix.texi:34583 +#: guix-git/doc/guix.texi:35022 msgid "@code{grub-bootloader} allows you to boot in particular Intel-based machines in ``legacy'' BIOS mode." msgstr "Mit @code{grub-bootloader} können Sie vor allem auf Intel-basierten Maschinen im alten „Legacy“-BIOS-Modus booten." #. type: vindex -#: guix-git/doc/guix.texi:34584 +#: guix-git/doc/guix.texi:35023 #, no-wrap msgid "grub-efi-netboot-bootloader" msgstr "grub-efi-netboot-bootloader" #. type: table -#: guix-git/doc/guix.texi:34588 +#: guix-git/doc/guix.texi:35027 msgid "@code{grub-efi-netboot-bootloader} allows you to boot your system over network through TFTP@. In combination with an NFS root file system this allows you to build a diskless Guix system." msgstr "Mit @code{grub-efi-netboot-bootloader} können Sie Ihr System @i{via} TFTP über das Netzwerk booten. Zusammen mit einem über NFS eingebundenen Wurzeldateisystem können Sie damit ein Guix-System ohne Plattenlaufwerk einrichten." #. type: table -#: guix-git/doc/guix.texi:34594 +#: guix-git/doc/guix.texi:35033 msgid "The installation of the @code{grub-efi-netboot-bootloader} generates the content of the TFTP root directory at @code{targets} (@pxref{Bootloader Configuration, @code{targets}}), to be served by a TFTP server. You may want to mount your TFTP server directories onto the @code{targets} to move the required files to the TFTP server automatically." msgstr "Bei der Installation des @code{grub-efi-netboot-bootloader} wird der Inhalt der bei @code{targets} angegebenen TFTP-Wurzelverzeichnisse erzeugt (siehe @ref{Bootloader Configuration, @code{targets}}), so dass eines von einem TFTP-Server bereitgestellt werden kann. Vielleicht möchten Sie dazu Ihre TFTP-Serververzeichnisse zuvor als @code{targets} einbinden, damit die benötigten Dateien direkt auf den TFTP-Server aufgespielt werden." #. type: table -#: guix-git/doc/guix.texi:34603 +#: guix-git/doc/guix.texi:35042 msgid "If you plan to use an NFS root file system as well (actually if you mount the store from an NFS share), then the TFTP server needs to serve the file @file{/boot/grub/grub.cfg} and other files from the store (like GRUBs background image, the kernel (@pxref{operating-system Reference, @code{kernel}}) and the initrd (@pxref{operating-system Reference, @code{initrd}})), too. All these files from the store will be accessed by GRUB through TFTP with their normal store path, for example as @file{tftp://tftp-server/gnu/store/…-initrd/initrd.cpio.gz}." msgstr "" "Wenn Sie außerdem vorhaben, ein NFS-Wurzeldateisystem zu benutzen (eigentlich auch, wenn Sie bloß den Store von einer NFS-Freigabe laden möchten), dann muss der TFTP-Server auch die Datei @file{/boot/grub/grub.cfg} und die anderen Dateien vom Store zur Verfügung stellen, etwa GRUBs Hintergrundbild, den Kernel (siehe\n" "@ref{operating-system Reference, @code{kernel}}) und auch die initrd (siehe @ref{operating-system Reference, @code{initrd}}). Auf all diese Store-Dateien greift GRUB @i{via} TFTP über ihren normalen Store-Pfad zu, z.B.@: über @file{tftp://tftp-server/gnu/store/…-initrd/initrd.cpio.gz}." #. type: table -#: guix-git/doc/guix.texi:34612 +#: guix-git/doc/guix.texi:35051 msgid "Two symlinks are created to make this possible. For each target in the @code{targets} field, the first symlink is @samp{target}@file{/efi/Guix/boot/grub/grub.cfg} pointing to @file{../../../boot/grub/grub.cfg}, where @samp{target} may be @file{/boot}. In this case the link is not leaving the served TFTP root directory, but otherwise it does. The second link is @samp{target}@file{/gnu/store} and points to @file{../gnu/store}. This link is leaving the served TFTP root directory." msgstr "Um das möglich zu machen, erzeugt Guix zwei symbolische Verknüpfungen. Für jedes Ziel im Feld @code{targets} ist die erste Verknüpfung @samp{Ziel}@file{/efi/Guix/boot/grub/grub.cfg}, die auf @file{../../../boot/grub/grub.cfg} zeigt, wobei das @samp{Ziel} dem Pfad @file{/boot} entsprechen kann. In diesem Fall verlässt die Verknüpfung das zugänglich gemachte TFTP-Wurzelverzeichnis @emph{nicht}, in den anderen Fällen schon. Die zweite Verknüpfung ist @samp{Ziel}@file{/gnu/store} und zeigt auf @file{../gnu/store}. Diese Verknüpfung verlässt das zugänglich gemachte TFTP-Wurzelverzeichnis." #. type: table -#: guix-git/doc/guix.texi:34618 +#: guix-git/doc/guix.texi:35057 msgid "The assumption behind all this is that you have an NFS server exporting the root file system for your Guix system, and additionally a TFTP server exporting your @code{targets} directories—usually a single @file{/boot}—from that same root file system for your Guix system. In this constellation the symlinks will work." msgstr "Die Annahme hinter all dem ist, dass Sie einen NFS-Server haben, der das Wurzelverzeichnis für Ihr Guix-System exportiert, und außerdem einen TFTP-Server haben, der die als @code{targets} angegebenen Verzeichnisse liefert@tie{}— normalerweise ist das ein einzelnes Verzeichnis @file{/boot}@tie{}—, was in demselben Wurzelverzeichnis Ihres Guix-Systems gespeichert vorliegt. In dieser Konstellation werden die symbolischen Verknüpfungen funktionieren." #. type: table -#: guix-git/doc/guix.texi:34623 +#: guix-git/doc/guix.texi:35062 msgid "For other constellations you will have to program your own bootloader installer, which then takes care to make necessary files from the store accessible through TFTP, for example by copying them into the TFTP root directory to your @code{targets}." msgstr "Bei anderen Konstellationen werden Sie Ihre eigene Bootloader-Installationsprozedur programmieren müssen, die sich darum kümmert, die nötigen Dateien aus dem Store über TFTP zugänglich zu machen, zum Beispiel indem diese in das TFTP-Wurzeldateisystem unter jedem der @code{targets} kopiert werden." #. type: table -#: guix-git/doc/guix.texi:34628 +#: guix-git/doc/guix.texi:35067 msgid "It is important to note that symlinks pointing outside the TFTP root directory may need to be allowed in the configuration of your TFTP server. Further the store link exposes the whole store through TFTP@. Both points need to be considered carefully for security aspects." msgstr "Es ist wichtig, anzumerken, dass symbolische Verknüpfungen nach außerhalb des TFTP-Wurzelverzeichnisses vielleicht erst in der Konfiguration zugelassen werden müssen. Außerdem wird durch die Store-Verknüpfung der gesamte Store über TFTP offengelegt. Beides hat Auswirkungen auf die Informationssicherheit, welche Sie bedenken sollten." #. type: table -#: guix-git/doc/guix.texi:34633 +#: guix-git/doc/guix.texi:35072 msgid "Beside the @code{grub-efi-netboot-bootloader}, the already mentioned TFTP and NFS servers, you also need a properly configured DHCP server to make the booting over netboot possible. For all this we can currently only recommend you to look for instructions about @acronym{PXE, Preboot eXecution Environment}." msgstr "Abgesehen vom @code{grub-efi-netboot-bootloader} und den bereits erwähnten TFTP- und NFS-Servern brauchen Sie auch einen passend eingerichteten DHCP-Server, der das Booten über das Netzwerk möglich macht. Derzeit können wir Ihnen bei all dem nur empfehlen, Anleitungen über die @acronym{PXE, Preboot eXecution Environment} ausfindig zu machen." #. type: table -#: guix-git/doc/guix.texi:34637 +#: guix-git/doc/guix.texi:35076 msgid "This is a list of strings denoting the targets onto which to install the bootloader." msgstr "Eine Liste von Zeichenketten, die angibt, auf welche Ziele der Bootloader installiert werden soll." #. type: table -#: guix-git/doc/guix.texi:34647 +#: guix-git/doc/guix.texi:35086 msgid "The interpretation of targets depends on the bootloader in question. For @code{grub-bootloader}, for example, they should be device names understood by the bootloader @command{installer} command, such as @code{/dev/sda} or @code{(hd0)} (@pxref{Invoking grub-install,,, grub, GNU GRUB Manual}). For @code{grub-efi-bootloader}, they should be mount points of the EFI file system, usually @file{/boot/efi}. For @code{grub-efi-netboot-bootloader}, @code{targets} should be the mount points corresponding to TFTP root directories served by your TFTP server." msgstr "Was @code{targets} bedeutet, hängt vom jeweiligen Bootloader ab. Für @code{grub-bootloader} sollten hier zum Beispiel Gerätenamen angegeben werden, die vom @command{installer}-Befehl des Bootloaders verstanden werden, etwa @code{/dev/sda} oder @code{(hd0)} (siehe @ref{Invoking grub-install,,, grub, GNU GRUB Manual}). Für @code{grub-efi-bootloader} sollten die Einhängepunkte des EFI-Dateisystems angegeben werden, in der Regel @file{/boot/efi}. Für @code{grub-efi-netboot-bootloader} sollten @code{targets} der oder die Einhängepunkte sein, unter denen das TFTP-Wurzelverzeichnis Ihres TFTP-Servers erreichbar ist." #. type: item -#: guix-git/doc/guix.texi:34648 +#: guix-git/doc/guix.texi:35087 #, no-wrap msgid "@code{menu-entries} (default: @code{()})" msgstr "@code{menu-entries} (Vorgabe: @code{()})" #. type: table -#: guix-git/doc/guix.texi:34652 +#: guix-git/doc/guix.texi:35091 msgid "A possibly empty list of @code{menu-entry} objects (see below), denoting entries to appear in the bootloader menu, in addition to the current system entry and the entry pointing to previous system generations." msgstr "Eine möglicherweise leere Liste von @code{menu-entry}-Objekten (siehe unten), die für Menüeinträge stehen, die im Bootloader-Menü auftauchen sollen, zusätzlich zum aktuellen Systemeintrag und dem auf vorherige Systemgenerationen verweisenden Eintrag." #. type: item -#: guix-git/doc/guix.texi:34653 +#: guix-git/doc/guix.texi:35092 #, no-wrap msgid "@code{default-entry} (default: @code{0})" msgstr "@code{default-entry} (Vorgabe: @code{0})" #. type: table -#: guix-git/doc/guix.texi:34656 +#: guix-git/doc/guix.texi:35095 msgid "The index of the default boot menu entry. Index 0 is for the entry of the current system." msgstr "Die Position des standardmäßig ausgewählten Bootmenü-Eintrags. An Position 0 steht der Eintrag der aktuellen Systemgeneration." #. type: item -#: guix-git/doc/guix.texi:34657 +#: guix-git/doc/guix.texi:35096 #, no-wrap msgid "@code{timeout} (default: @code{5})" msgstr "@code{timeout} (Vorgabe: @code{5})" #. type: table -#: guix-git/doc/guix.texi:34660 +#: guix-git/doc/guix.texi:35099 msgid "The number of seconds to wait for keyboard input before booting. Set to 0 to boot immediately, and to -1 to wait indefinitely." msgstr "Wie viele Sekunden lang im Menü auf eine Tastatureingabe gewartet wird, bevor gebootet wird. 0 steht für sofortiges Booten, für -1 wird ohne Zeitbeschränkung gewartet." #. type: cindex -#: guix-git/doc/guix.texi:34661 +#: guix-git/doc/guix.texi:35100 #, no-wrap msgid "keyboard layout, for the bootloader" msgstr "Tastaturbelegung, beim Bootloader" #. type: table -#: guix-git/doc/guix.texi:34665 +#: guix-git/doc/guix.texi:35104 msgid "If this is @code{#f}, the bootloader's menu (if any) uses the default keyboard layout, usually US@tie{}English (``qwerty'')." msgstr "Wenn dies auf @code{#f} gesetzt ist, verwendet das Menü des Bootloaders (falls vorhanden) die Vorgabe-Tastaturbelegung, normalerweise US@tie{}English („qwerty“)." #. type: table -#: guix-git/doc/guix.texi:34668 +#: guix-git/doc/guix.texi:35107 msgid "Otherwise, this must be a @code{keyboard-layout} object (@pxref{Keyboard Layout})." msgstr "Andernfalls muss es ein @code{keyboard-layout}-Objekt sein (siehe @ref{Keyboard Layout})." #. type: quotation -#: guix-git/doc/guix.texi:34672 +#: guix-git/doc/guix.texi:35111 msgid "This option is currently ignored by bootloaders other than @code{grub} and @code{grub-efi}." msgstr "Dieses Feld wird derzeit von Bootloadern außer @code{grub} und @code{grub-efi} ignoriert." #. type: item -#: guix-git/doc/guix.texi:34674 +#: guix-git/doc/guix.texi:35113 #, no-wrap msgid "@code{theme} (default: @var{#f})" msgstr "@code{theme} (Vorgabe: @var{#f})" #. type: table -#: guix-git/doc/guix.texi:34678 +#: guix-git/doc/guix.texi:35117 msgid "The bootloader theme object describing the theme to use. If no theme is provided, some bootloaders might use a default theme, that's true for GRUB." msgstr "Ein Objekt für das im Bootloader anzuzeigende Thema. Wird kein Thema angegeben, benutzen manche Bootloader vielleicht ein voreingestelltes Thema; GRUB zumindest macht es so." #. type: item -#: guix-git/doc/guix.texi:34679 +#: guix-git/doc/guix.texi:35118 #, no-wrap msgid "@code{terminal-outputs} (default: @code{'(gfxterm)})" msgstr "@code{terminal-outputs} (Vorgabe: @code{'(gfxterm)})" #. type: table -#: guix-git/doc/guix.texi:34686 +#: guix-git/doc/guix.texi:35125 msgid "The output terminals used for the bootloader boot menu, as a list of symbols. GRUB accepts the values: @code{console}, @code{serial}, @code{serial_@{0-3@}}, @code{gfxterm}, @code{vga_text}, @code{mda_text}, @code{morse}, and @code{pkmodem}. This field corresponds to the GRUB variable @code{GRUB_TERMINAL_OUTPUT} (@pxref{Simple configuration,,, grub,GNU GRUB manual})." msgstr "Die Ausgabeterminals, die für das Boot-Menü des Bootloaders benutzt werden, als eine Liste von Symbolen. GRUB akzeptiert hier diese Werte: @code{console}, @code{serial}, @code{serial_@{0–3@}}, @code{gfxterm}, @code{vga_text}, @code{mda_text}, @code{morse} und @code{pkmodem}. Dieses Feld entspricht der GRUB-Variablen @code{GRUB_TERMINAL_OUTPUT} (siehe @ref{Simple configuration,,, grub,Handbuch von GNU GRUB})." #. type: item -#: guix-git/doc/guix.texi:34687 +#: guix-git/doc/guix.texi:35126 #, no-wrap msgid "@code{terminal-inputs} (default: @code{'()})" msgstr "@code{terminal-inputs} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:34695 +#: guix-git/doc/guix.texi:35134 msgid "The input terminals used for the bootloader boot menu, as a list of symbols. For GRUB, the default is the native platform terminal as determined at run-time. GRUB accepts the values: @code{console}, @code{serial}, @code{serial_@{0-3@}}, @code{at_keyboard}, and @code{usb_keyboard}. This field corresponds to the GRUB variable @code{GRUB_TERMINAL_INPUT} (@pxref{Simple configuration,,, grub,GNU GRUB manual})." msgstr "Die Eingabeterminals, die für das Boot-Menü des Bootloaders benutzt werden, als eine Liste von Symbolen. GRUB verwendet hier das zur Laufzeit bestimmte Standardterminal. GRUB akzeptiert sonst diese Werte: @code{console}, @code{serial}, @code{serial_@{0-3@}}, @code{at_keyboard} und @code{usb_keyboard}. Dieses Feld entspricht der GRUB-Variablen @code{GRUB_TERMINAL_INPUT} (siehe @ref{Simple configuration,,, grub,Handbuch von GNU GRUB})." #. type: item -#: guix-git/doc/guix.texi:34696 +#: guix-git/doc/guix.texi:35135 #, no-wrap msgid "@code{serial-unit} (default: @code{#f})" msgstr "@code{serial-unit} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:34700 +#: guix-git/doc/guix.texi:35139 msgid "The serial unit used by the bootloader, as an integer from 0 to 3. For GRUB, it is chosen at run-time; currently GRUB chooses 0, which corresponds to COM1 (@pxref{Serial terminal,,, grub,GNU GRUB manual})." msgstr "Die serielle Einheit, die der Bootloader benutzt, als eine ganze Zahl zwischen 0 und 3, einschließlich. Für GRUB wird sie automatisch zur Laufzeit ausgewählt; derzeit wählt GRUB die 0 aus, die COM1 entspricht (siehe @ref{Serial terminal,,, grub,Handbuch von GNU GRUB})." #. type: item -#: guix-git/doc/guix.texi:34701 +#: guix-git/doc/guix.texi:35140 #, no-wrap msgid "@code{serial-speed} (default: @code{#f})" msgstr "@code{serial-speed} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:34705 +#: guix-git/doc/guix.texi:35144 msgid "The speed of the serial interface, as an integer. For GRUB, the default value is chosen at run-time; currently GRUB chooses 9600@tie{}bps (@pxref{Serial terminal,,, grub,GNU GRUB manual})." msgstr "Die Geschwindigkeit der seriellen Schnittstelle als eine ganze Zahl. GRUB bestimmt den Wert standardmäßig zur Laufzeit; derzeit wählt GRUB 9600@tie{}bps (siehe @ref{Serial terminal,,, grub,Handbuch von GNU GRUB})." #. type: cindex -#: guix-git/doc/guix.texi:34709 +#: guix-git/doc/guix.texi:35148 #, no-wrap msgid "dual boot" msgstr "Dual-Boot" #. type: cindex -#: guix-git/doc/guix.texi:34710 +#: guix-git/doc/guix.texi:35149 #, no-wrap msgid "boot menu" msgstr "Bootmenü" #. type: Plain text -#: guix-git/doc/guix.texi:34716 +#: guix-git/doc/guix.texi:35155 msgid "Should you want to list additional boot menu entries @i{via} the @code{menu-entries} field above, you will need to create them with the @code{menu-entry} form. For example, imagine you want to be able to boot another distro (hard to imagine!), you can define a menu entry along these lines:" msgstr "Sollten Sie zusätzliche Bootmenü-Einträge über das oben beschriebene @code{menu-entries}-Feld hinzufügen möchten, müssen Sie diese mit der @code{menu-entry}-Form erzeugen. Stellen Sie sich zum Beispiel vor, Sie wollten noch eine andere Distribution booten können (schwer vorstellbar!), dann könnten Sie einen Menüeintrag wie den Folgenden definieren:" #. type: lisp -#: guix-git/doc/guix.texi:34723 +#: guix-git/doc/guix.texi:35162 #, no-wrap msgid "" "(menu-entry\n" @@ -64685,132 +65573,132 @@ msgstr "" " (initrd \"/boot/old/initrd\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:34726 +#: guix-git/doc/guix.texi:35165 msgid "Details below." msgstr "Details finden Sie unten." #. type: deftp -#: guix-git/doc/guix.texi:34727 +#: guix-git/doc/guix.texi:35166 #, no-wrap msgid "{Data Type} menu-entry" msgstr "{Datentyp} menu-entry" #. type: deftp -#: guix-git/doc/guix.texi:34729 +#: guix-git/doc/guix.texi:35168 msgid "The type of an entry in the bootloader menu." msgstr "Der Typ eines Eintrags im Bootloadermenü." #. type: table -#: guix-git/doc/guix.texi:34734 +#: guix-git/doc/guix.texi:35173 msgid "The label to show in the menu---e.g., @code{\"GNU\"}." msgstr "Die Beschriftung, die im Menü gezeigt werden soll@tie{}— z.B.@: @code{\"GNU\"}." #. type: item -#: guix-git/doc/guix.texi:34735 +#: guix-git/doc/guix.texi:35174 #, no-wrap msgid "@code{linux} (default: @code{#f})" msgstr "@code{linux} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:34737 +#: guix-git/doc/guix.texi:35176 msgid "The Linux kernel image to boot, for example:" msgstr "Das Linux-Kernel-Abbild, was gebootet werden soll, zum Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:34740 +#: guix-git/doc/guix.texi:35179 #, no-wrap msgid "(file-append linux-libre \"/bzImage\")\n" msgstr "(file-append linux-libre \"/bzImage\")\n" #. type: table -#: guix-git/doc/guix.texi:34745 +#: guix-git/doc/guix.texi:35184 msgid "For GRUB, it is also possible to specify a device explicitly in the file path using GRUB's device naming convention (@pxref{Naming convention,,, grub, GNU GRUB manual}), for example:" msgstr "Für GRUB kann hier auch ein Gerät ausdrücklich zum Dateipfad angegeben werden, unter Verwendung von GRUBs Konventionen zur Gerätebenennung (siehe @ref{Naming convention,,, grub, Handbuch von GNU GRUB}), zum Beispiel:" #. type: example -#: guix-git/doc/guix.texi:34748 +#: guix-git/doc/guix.texi:35187 #, no-wrap msgid "\"(hd0,msdos1)/boot/vmlinuz\"\n" msgstr "\"(hd0,msdos1)/boot/vmlinuz\"\n" #. type: table -#: guix-git/doc/guix.texi:34752 +#: guix-git/doc/guix.texi:35191 msgid "If the device is specified explicitly as above, then the @code{device} field is ignored entirely." msgstr "Wenn das Gerät auf diese Weise ausdrücklich angegeben wird, wird das @code{device}-Feld gänzlich ignoriert." #. type: item -#: guix-git/doc/guix.texi:34753 +#: guix-git/doc/guix.texi:35192 #, no-wrap msgid "@code{linux-arguments} (default: @code{()})" msgstr "@code{linux-arguments} (Vorgabe: @code{()})" #. type: table -#: guix-git/doc/guix.texi:34756 +#: guix-git/doc/guix.texi:35195 msgid "The list of extra Linux kernel command-line arguments---e.g., @code{(\"console=ttyS0\")}." msgstr "Die Liste zusätzlicher Linux-Kernel-Befehlszeilenargumente@tie{}— z.B.@: @code{(\"console=ttyS0\")}." #. type: item -#: guix-git/doc/guix.texi:34757 +#: guix-git/doc/guix.texi:35196 #, no-wrap msgid "@code{initrd} (default: @code{#f})" msgstr "@code{initrd} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:34760 +#: guix-git/doc/guix.texi:35199 msgid "A G-Expression or string denoting the file name of the initial RAM disk to use (@pxref{G-Expressions})." msgstr "Ein G-Ausdruck oder eine Zeichenkette, die den Dateinamen der initialen RAM-Disk angibt, die benutzt werden soll (siehe @ref{G-Expressions})." #. type: table -#: guix-git/doc/guix.texi:34764 +#: guix-git/doc/guix.texi:35203 msgid "The device where the kernel and initrd are to be found---i.e., for GRUB, @dfn{root} for this menu entry (@pxref{root,,, grub, GNU GRUB manual})." msgstr "Das Gerät, auf dem Kernel und initrd zu finden sind@tie{}— d.h.@: bei GRUB die Wurzel (@dfn{root}) dieses Menüeintrags (siehe @ref{root,,, grub, Handbuch von GNU GRUB})." #. type: table -#: guix-git/doc/guix.texi:34770 +#: guix-git/doc/guix.texi:35209 msgid "This may be a file system label (a string), a file system UUID (a bytevector, @pxref{File Systems}), or @code{#f}, in which case the bootloader will search the device containing the file specified by the @code{linux} field (@pxref{search,,, grub, GNU GRUB manual}). It must @emph{not} be an OS device name such as @file{/dev/sda1}." msgstr "Dies kann eine Dateisystembezeichnung (als Zeichenkette), eine Dateisystem-UUID (als Bytevektor, siehe @ref{File Systems}) oder @code{#f} sein, im letzten Fall wird der Bootloader auf dem Gerät suchen, das die vom @code{linux}-Feld benannte Datei enthält (siehe @ref{search,,, grub, Handbuch von GNU GRUB}). Ein vom Betriebssystem vergebener Gerätename wie @file{/dev/sda1} ist aber @emph{nicht} erlaubt." #. type: item -#: guix-git/doc/guix.texi:34771 +#: guix-git/doc/guix.texi:35210 #, no-wrap msgid "@code{multiboot-kernel} (default: @code{#f})" msgstr "@code{multiboot-kernel} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:34775 +#: guix-git/doc/guix.texi:35214 msgid "The kernel to boot in Multiboot-mode (@pxref{multiboot,,, grub, GNU GRUB manual}). When this field is set, a Multiboot menu-entry is generated. For example:" msgstr "Der Kernel, der im Multiboot-Modus gebootet werden soll (siehe @ref{multiboot,,, grub, GNU GRUB manual}). Wenn dieses Feld gesetzt ist, wird ein Multiboot-Menüeintrag erzeugt. Zum Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:34778 +#: guix-git/doc/guix.texi:35217 #, no-wrap msgid "(file-append mach \"/boot/gnumach\")\n" msgstr "(file-append mach \"/boot/gnumach\")\n" #. type: item -#: guix-git/doc/guix.texi:34780 +#: guix-git/doc/guix.texi:35219 #, no-wrap msgid "@code{multiboot-arguments} (default: @code{()})" msgstr "@code{multiboot-arguments} (Vorgabe: @code{()})" #. type: table -#: guix-git/doc/guix.texi:34782 +#: guix-git/doc/guix.texi:35221 msgid "The list of extra command-line arguments for the multiboot-kernel." msgstr "Liste zusätzlicher Befehlszeilenoptionen für den Multiboot-Kernel." #. type: item -#: guix-git/doc/guix.texi:34783 +#: guix-git/doc/guix.texi:35222 #, no-wrap msgid "@code{multiboot-modules} (default: @code{()})" msgstr "@code{multiboot-modules} (Vorgabe: @code{()})" #. type: table -#: guix-git/doc/guix.texi:34785 +#: guix-git/doc/guix.texi:35224 msgid "The list of commands for loading Multiboot modules. For example:" msgstr "Die Liste der Befehle zum Laden von Multiboot-Modulen. Zum Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:34791 +#: guix-git/doc/guix.texi:35230 #, no-wrap msgid "" "(list (list (file-append hurd \"/hurd/ext2fs.static\") \"ext2fs\"\n" @@ -64824,73 +65712,73 @@ msgstr "" " …))\n" #. type: cindex -#: guix-git/doc/guix.texi:34796 guix-git/doc/guix.texi:34855 +#: guix-git/doc/guix.texi:35235 guix-git/doc/guix.texi:35294 #, no-wrap msgid "HDPI" msgstr "HDPI" #. type: cindex -#: guix-git/doc/guix.texi:34797 guix-git/doc/guix.texi:34856 +#: guix-git/doc/guix.texi:35236 guix-git/doc/guix.texi:35295 #, no-wrap msgid "HiDPI" msgstr "HiDPI" #. type: cindex -#: guix-git/doc/guix.texi:34798 guix-git/doc/guix.texi:34857 +#: guix-git/doc/guix.texi:35237 guix-git/doc/guix.texi:35296 #, no-wrap msgid "resolution" msgstr "Auflösung" #. type: Plain text -#: guix-git/doc/guix.texi:34802 +#: guix-git/doc/guix.texi:35241 msgid "For now only GRUB has theme support. GRUB themes are created using the @code{grub-theme} form, which is not fully documented yet." msgstr "Zurzeit lässt nur GRUB sein Aussehen durch Themen anpassen. GRUB-Themen werden mit der @code{grub-theme}-Form erzeugt, die hier noch nicht vollständig dokumentiert ist." #. type: deftp -#: guix-git/doc/guix.texi:34803 +#: guix-git/doc/guix.texi:35242 #, no-wrap msgid "{Data Type} grub-theme" msgstr "{Datentyp} grub-theme" #. type: deftp -#: guix-git/doc/guix.texi:34805 +#: guix-git/doc/guix.texi:35244 msgid "Data type representing the configuration of the GRUB theme." msgstr "Der Datentyp, der die Konfiguration des GRUB-Themas repräsentiert." #. type: item -#: guix-git/doc/guix.texi:34807 +#: guix-git/doc/guix.texi:35246 #, no-wrap msgid "@code{gfxmode} (default: @code{'(\"auto\")})" msgstr "@code{gfxmode} (Vorgabe: @code{'(\"auto\")})" #. type: table -#: guix-git/doc/guix.texi:34810 +#: guix-git/doc/guix.texi:35249 msgid "The GRUB @code{gfxmode} to set (a list of screen resolution strings, @pxref{gfxmode,,, grub, GNU GRUB manual})." msgstr "Welcher @code{gfxmode} für GRUB eingestellt werden soll (als eine Liste von Zeichenketten mit Bildschirmauflösungen, siehe @ref{gfxmode,,, grub, Handbuch von GNU GRUB})." #. type: deffn -#: guix-git/doc/guix.texi:34813 +#: guix-git/doc/guix.texi:35252 #, no-wrap msgid "{Scheme Procedure} grub-theme" msgstr "{Scheme-Prozedur} grub-theme" #. type: deffn -#: guix-git/doc/guix.texi:34817 +#: guix-git/doc/guix.texi:35256 msgid "Return the default GRUB theme used by the operating system if no @code{theme} field is specified in @code{bootloader-configuration} record." msgstr "Liefert das vorgegebene GRUB-Thema, das vom Betriebssystem benutzt wird, wenn kein @code{theme}-Feld im @code{bootloader-configuration}-Verbundsobjekt angegeben wurde." #. type: deffn -#: guix-git/doc/guix.texi:34820 +#: guix-git/doc/guix.texi:35259 msgid "It comes with a fancy background image displaying the GNU and Guix logos." msgstr "Es wird von einem feschen Hintergrundbild begleitet, das die Logos von GNU und Guix zeigt." #. type: Plain text -#: guix-git/doc/guix.texi:34824 +#: guix-git/doc/guix.texi:35263 msgid "For example, to override the default resolution, you may use something like" msgstr "Um zum Beispiel eine andere Auflösung als vorgegeben zu verwenden, würden Sie so etwas schreiben:" #. type: lisp -#: guix-git/doc/guix.texi:34832 +#: guix-git/doc/guix.texi:35271 #, no-wrap msgid "" "(bootloader\n" @@ -64908,40 +65796,40 @@ msgstr "" " (gfxmode '(\"1024x786x32\" \"auto\"))))))\n" #. type: section -#: guix-git/doc/guix.texi:34835 +#: guix-git/doc/guix.texi:35274 #, no-wrap msgid "Invoking @code{guix system}" msgstr "@code{guix system} aufrufen" #. type: Plain text -#: guix-git/doc/guix.texi:34840 +#: guix-git/doc/guix.texi:35279 msgid "Once you have written an operating system declaration as seen in the previous section, it can be @dfn{instantiated} using the @command{guix system} command. The synopsis is:" msgstr "Sobald Sie eine Betriebssystemdeklaration geschrieben haben, wie wir sie in den vorangehenden Abschnitten gesehen haben, kann diese @dfn{instanziiert} werden, indem Sie den Befehl @command{guix system} aufrufen. Zusammengefasst:" #. type: example -#: guix-git/doc/guix.texi:34843 +#: guix-git/doc/guix.texi:35282 #, no-wrap msgid "guix system @var{options}@dots{} @var{action} @var{file}\n" msgstr "guix system @var{Optionen}…@: @var{Aktion} @var{Datei}\n" #. type: Plain text -#: guix-git/doc/guix.texi:34849 +#: guix-git/doc/guix.texi:35288 msgid "@var{file} must be the name of a file containing an @code{operating-system} declaration. @var{action} specifies how the operating system is instantiated. Currently the following values are supported:" msgstr "@var{Datei} muss der Name einer Datei sein, in der eine Betriebssystemdeklaration als @code{operating-system}-Objekt steht. @var{Aktion} gibt an, wie das Betriebssystem instanziiert wird. Derzeit werden folgende Werte dafür unterstützt:" #. type: item -#: guix-git/doc/guix.texi:34851 guix-git/doc/guix.texi:37496 +#: guix-git/doc/guix.texi:35290 guix-git/doc/guix.texi:37992 #, no-wrap msgid "search" msgstr "search" #. type: table -#: guix-git/doc/guix.texi:34854 +#: guix-git/doc/guix.texi:35293 msgid "Display available service type definitions that match the given regular expressions, sorted by relevance:" msgstr "Verfügbare Diensttypendefinitionen anzeigen, die zum angegebenen regulären Ausdruck passen, sortiert nach Relevanz:" #. type: example -#: guix-git/doc/guix.texi:34876 +#: guix-git/doc/guix.texi:35315 #, no-wrap msgid "" "$ guix system search console\n" @@ -64983,7 +65871,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:34882 +#: guix-git/doc/guix.texi:35321 #, no-wrap msgid "" "name: mingetty\n" @@ -65001,7 +65889,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:34889 +#: guix-git/doc/guix.texi:35328 #, no-wrap msgid "" "name: login\n" @@ -65021,72 +65909,72 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:34891 guix-git/doc/guix.texi:37549 +#: guix-git/doc/guix.texi:35330 guix-git/doc/guix.texi:38028 #, no-wrap msgid "@dots{}\n" msgstr "…\n" #. type: table -#: guix-git/doc/guix.texi:34896 guix-git/doc/guix.texi:37554 +#: guix-git/doc/guix.texi:35335 msgid "As for @command{guix package --search}, the result is written in @code{recutils} format, which makes it easy to filter the output (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "Wie auch bei @command{guix package --search} wird das Ergebnis im @code{recutils}-Format geliefert, so dass es leicht ist, die Ausgabe zu filtern (siehe @ref{Top, GNU-recutils-Datenbanken,, recutils, Handbuch von GNU recutils})." #. type: item -#: guix-git/doc/guix.texi:34897 guix-git/doc/guix.texi:37555 +#: guix-git/doc/guix.texi:35336 guix-git/doc/guix.texi:38034 #, no-wrap msgid "reconfigure" msgstr "reconfigure" #. type: table -#: guix-git/doc/guix.texi:34902 +#: guix-git/doc/guix.texi:35341 msgid "Build the operating system described in @var{file}, activate it, and switch to it@footnote{This action (and the related actions @code{switch-generation} and @code{roll-back}) are usable only on systems already running Guix System.}." msgstr "Das in der @var{Datei} beschriebene Betriebssystem erstellen, aktivieren und zu ihm wechseln@footnote{Diese Aktion (und die dazu ähnlichen Aktionen @code{switch-generation} und @code{roll-back}) sind nur auf Systemen nutzbar, auf denen „Guix System“ bereits läuft.}." #. type: quotation -#: guix-git/doc/guix.texi:34910 +#: guix-git/doc/guix.texi:35349 msgid "It is highly recommended to run @command{guix pull} once before you run @command{guix system reconfigure} for the first time (@pxref{Invoking guix pull}). Failing to do that you would see an older version of Guix once @command{reconfigure} has completed." msgstr "Es ist sehr zu empfehlen, @command{guix pull} einmal auszuführen, bevor Sie @command{guix system reconfigure} zum ersten Mal aufrufen (siehe @ref{Invoking guix pull}). Wenn Sie das nicht tun, könnten Sie nach dem Abschluss von @command{reconfigure} eine ältere Version von Guix vorfinden, als Sie vorher hatten." #. type: table -#: guix-git/doc/guix.texi:34918 +#: guix-git/doc/guix.texi:35357 msgid "This effects all the configuration specified in @var{file}: user accounts, system services, global package list, setuid programs, etc. The command starts system services specified in @var{file} that are not currently running; if a service is currently running this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop X} or @code{herd restart X})." msgstr "Dieser Befehl setzt die in der @var{Datei} festgelegte Konfiguration vollständig um: Benutzerkonten, Systemdienste, die Liste globaler Pakete, setuid-Programme und so weiter. Der Befehl startet die in der @var{Datei} angegebenen Systemdienste, die aktuell nicht laufen; bei aktuell laufenden Diensten wird sichergestellt, dass sie aktualisiert werden, sobald sie das nächste Mal angehalten wurden (z.B.@: durch @code{herd stop X} oder @code{herd restart X})." #. type: table -#: guix-git/doc/guix.texi:34924 +#: guix-git/doc/guix.texi:35363 msgid "This command creates a new generation whose number is one greater than the current generation (as reported by @command{guix system list-generations}). If that generation already exists, it will be overwritten. This behavior mirrors that of @command{guix package} (@pxref{Invoking guix package})." msgstr "Dieser Befehl erzeugt eine neue Generation, deren Nummer (wie @command{guix system list-generations} sie anzeigt) um eins größer als die der aktuellen Generation ist. Wenn die so nummerierte Generation bereits existiert, wird sie überschrieben. Dieses Verhalten entspricht dem von @command{guix package} (siehe @ref{Invoking guix package})." #. type: table -#: guix-git/doc/guix.texi:34929 +#: guix-git/doc/guix.texi:35368 msgid "It also adds a bootloader menu entry for the new OS configuration, ---unless @option{--no-bootloader} is passed. For GRUB, it moves entries for older configurations to a submenu, allowing you to choose an older system generation at boot time should you need it." msgstr "Des Weiteren wird für den Bootloader ein Menüeintrag für die neue Betriebssystemkonfiguration hinzugefügt, außer die Befehlszeilenoption @option{--no-bootloader} wurde übergeben. Bei GRUB werden Einträge für ältere Konfigurationen in ein Untermenü verschoben, so dass Sie auch eine ältere Systemgeneration beim Booten noch hochfahren können, falls es notwendig wird." #. type: cindex -#: guix-git/doc/guix.texi:34930 guix-git/doc/guix.texi:35261 -#: guix-git/doc/guix.texi:36223 +#: guix-git/doc/guix.texi:35369 guix-git/doc/guix.texi:35705 +#: guix-git/doc/guix.texi:36713 #, no-wrap msgid "provenance tracking, of the operating system" msgstr "Provenienzverfolgung, des Betriebssystems" #. type: table -#: guix-git/doc/guix.texi:34935 +#: guix-git/doc/guix.texi:35374 msgid "Upon completion, the new system is deployed under @file{/run/current-system}. This directory contains @dfn{provenance meta-data}: the list of channels in use (@pxref{Channels}) and @var{file} itself, when available. You can view it by running:" msgstr "Nach Abschluss wird das neue System unter @file{/run/current-system} verfügbar gemacht. Das Verzeichnis enthält @dfn{Provenienz-Metadaten}: Dazu gehören die Liste der Kanäle, die benutzt wurden (siehe @ref{Channels}) und die @var{Datei} selbst, wenn sie verfügbar ist. Sie können sie auf diese Weise ansehen:" #. type: example -#: guix-git/doc/guix.texi:34938 +#: guix-git/doc/guix.texi:35377 #, no-wrap msgid "guix system describe\n" msgstr "guix system describe\n" #. type: table -#: guix-git/doc/guix.texi:34944 +#: guix-git/doc/guix.texi:35383 msgid "This information is useful should you later want to inspect how this particular generation was built. In fact, assuming @var{file} is self-contained, you can later rebuild generation @var{n} of your operating system with:" msgstr "Diese Informationen sind nützlich, falls Sie später inspizieren möchten, wie diese spezielle Generation erstellt wurde. Falls die @var{Datei} eigenständig ist, also keine anderen Dateien zum Funktionieren braucht, dann können Sie tatsächlich die Generation @var{n} Ihres Betriebssystems später erneut erstellen mit:" #. type: example -#: guix-git/doc/guix.texi:34950 +#: guix-git/doc/guix.texi:35389 #, no-wrap msgid "" "guix time-machine \\\n" @@ -65100,233 +65988,238 @@ msgstr "" " /var/guix/profiles/system-@var{n}-link/configuration.scm\n" #. type: table -#: guix-git/doc/guix.texi:34956 +#: guix-git/doc/guix.texi:35395 msgid "You can think of it as some sort of built-in version control! Your system is not just a binary artifact: @emph{it carries its own source}. @xref{Service Reference, @code{provenance-service-type}}, for more information on provenance tracking." msgstr "Sie können sich das als eine Art eingebaute Versionskontrolle vorstellen! Ihr System ist nicht nur ein binäres Erzeugnis: @emph{Es enthält seinen eigenen Quellcode}. Siehe @ref{Service Reference, @code{provenance-service-type}} für mehr Informationen zur Provenienzverfolgung." #. type: table -#: guix-git/doc/guix.texi:34962 +#: guix-git/doc/guix.texi:35401 msgid "By default, @command{reconfigure} @emph{prevents you from downgrading your system}, which could (re)introduce security vulnerabilities and also cause problems with ``stateful'' services such as database management systems. You can override that behavior by passing @option{--allow-downgrades}." msgstr "Nach Voreinstellung können Sie durch @command{reconfigure} Ihr System @emph{nicht auf eine ältere Version aktualisieren} und somit herabstufen, denn dadurch könnten Sicherheitslücken eingeführt und Probleme mit „zustandsbehafteten“ Diensten wie z.B.@: Datenbankverwaltungssystemen ausgelöst werden. Sie können das Verhalten ändern, indem Sie @option{--allow-downgrades} übergeben." #. type: item -#: guix-git/doc/guix.texi:34963 guix-git/doc/guix.texi:37614 +#: guix-git/doc/guix.texi:35402 guix-git/doc/guix.texi:38093 #, no-wrap msgid "switch-generation" msgstr "switch-generation" #. type: table -#: guix-git/doc/guix.texi:34972 +#: guix-git/doc/guix.texi:35411 msgid "Switch to an existing system generation. This action atomically switches the system profile to the specified system generation. It also rearranges the system's existing bootloader menu entries. It makes the menu entry for the specified system generation the default, and it moves the entries for the other generations to a submenu, if supported by the bootloader being used. The next time the system boots, it will use the specified system generation." msgstr "Zu einer bestehenden Systemgeneration wechseln. Diese Aktion wechselt das Systemprofil atomar auf die angegebene Systemgeneration. Hiermit werden auch die bestehenden Menüeinträge des Bootloaders umgeordnet. Der Menüeintrag für die angegebene Systemgeneration wird voreingestellt und die Einträge der anderen Generationen werden in ein Untermenü verschoben, sofern der verwendete Bootloader dies unterstützt. Das nächste Mal, wenn das System gestartet wird, wird die hier angegebene Systemgeneration hochgefahren." #. type: table -#: guix-git/doc/guix.texi:34976 +#: guix-git/doc/guix.texi:35415 msgid "The bootloader itself is not being reinstalled when using this command. Thus, the installed bootloader is used with an updated configuration file." msgstr "Der Bootloader selbst wird durch diesen Befehl @emph{nicht} neu installiert. Es wird also lediglich der bereits installierte Bootloader mit einer neuen Konfigurationsdatei benutzt werden." #. type: table -#: guix-git/doc/guix.texi:34980 +#: guix-git/doc/guix.texi:35419 msgid "The target generation can be specified explicitly by its generation number. For example, the following invocation would switch to system generation 7:" msgstr "Die Zielgeneration kann ausdrücklich über ihre Generationsnummer angegeben werden. Zum Beispiel würde folgender Aufruf einen Wechsel zur Systemgeneration 7 bewirken:" #. type: example -#: guix-git/doc/guix.texi:34983 +#: guix-git/doc/guix.texi:35422 #, no-wrap msgid "guix system switch-generation 7\n" msgstr "guix system switch-generation 7\n" #. type: table -#: guix-git/doc/guix.texi:34991 guix-git/doc/guix.texi:37633 +#: guix-git/doc/guix.texi:35430 guix-git/doc/guix.texi:38112 msgid "The target generation can also be specified relative to the current generation with the form @code{+N} or @code{-N}, where @code{+3} means ``3 generations ahead of the current generation,'' and @code{-1} means ``1 generation prior to the current generation.'' When specifying a negative value such as @code{-1}, you must precede it with @code{--} to prevent it from being parsed as an option. For example:" msgstr "Die Zielgeneration kann auch relativ zur aktuellen Generation angegeben werden, in der Form @code{+N} oder @code{-N}, wobei @code{+3} zum Beispiel „3 Generationen weiter als die aktuelle Generation“ bedeuten würde und @code{-1} „1 Generation vor der aktuellen Generation“ hieße. Wenn Sie einen negativen Wert wie @code{-1} angeben, müssen Sie @code{--} der Befehlszeilenoption voranstellen, damit die negative Zahl nicht selbst als Befehlszeilenoption aufgefasst wird. Zum Beispiel:" #. type: example -#: guix-git/doc/guix.texi:34994 +#: guix-git/doc/guix.texi:35433 #, no-wrap msgid "guix system switch-generation -- -1\n" msgstr "guix system switch-generation -- -1\n" #. type: table -#: guix-git/doc/guix.texi:35002 +#: guix-git/doc/guix.texi:35441 msgid "Currently, the effect of invoking this action is @emph{only} to switch the system profile to an existing generation and rearrange the bootloader menu entries. To actually start using the target system generation, you must reboot after running this action. In the future, it will be updated to do the same things as @command{reconfigure}, like activating and deactivating services." msgstr "Zurzeit bewirkt ein Aufruf dieser Aktion @emph{nur} einen Wechsel des Systemprofils auf eine bereits existierende Generation und ein Umordnen der Bootloader-Menüeinträge. Um die Ziel-Systemgeneration aber tatsächlich zu benutzen, müssen Sie Ihr System neu hochfahren, nachdem Sie diese Aktion ausgeführt haben. In einer zukünftigen Version von Guix wird diese Aktion einmal dieselben Dinge tun, wie @command{reconfigure}, also etwa Dienste aktivieren und deaktivieren." #. type: table -#: guix-git/doc/guix.texi:35004 guix-git/doc/guix.texi:37639 +#: guix-git/doc/guix.texi:35443 guix-git/doc/guix.texi:38118 msgid "This action will fail if the specified generation does not exist." msgstr "Diese Aktion schlägt fehl, wenn die angegebene Generation nicht existiert." #. type: item -#: guix-git/doc/guix.texi:35005 guix-git/doc/guix.texi:37640 +#: guix-git/doc/guix.texi:35444 guix-git/doc/guix.texi:38119 #, no-wrap msgid "roll-back" msgstr "roll-back" #. type: table -#: guix-git/doc/guix.texi:35011 +#: guix-git/doc/guix.texi:35450 msgid "Switch to the preceding system generation. The next time the system boots, it will use the preceding system generation. This is the inverse of @command{reconfigure}, and it is exactly the same as invoking @command{switch-generation} with an argument of @code{-1}." msgstr "Zur vorhergehenden Systemgeneration wechseln. Wenn das System das nächste Mal hochgefahren wird, wird es die vorhergehende Systemgeneration benutzen. Dies ist die Umkehrung von @command{reconfigure} und tut genau dasselbe wie @command{switch-generation} mit dem Argument @code{-1} aufzurufen." #. type: table -#: guix-git/doc/guix.texi:35015 +#: guix-git/doc/guix.texi:35454 msgid "Currently, as with @command{switch-generation}, you must reboot after running this action to actually start using the preceding system generation." msgstr "Wie auch bei @command{switch-generation} müssen Sie derzeit, nachdem Sie diese Aktion aufgerufen haben, Ihr System neu starten, um die vorhergehende Systemgeneration auch tatsächlich zu benutzen." #. type: item -#: guix-git/doc/guix.texi:35016 guix-git/doc/guix.texi:37646 +#: guix-git/doc/guix.texi:35455 guix-git/doc/guix.texi:38125 #, no-wrap msgid "delete-generations" msgstr "delete-generations" #. type: cindex -#: guix-git/doc/guix.texi:35017 +#: guix-git/doc/guix.texi:35456 #, no-wrap msgid "deleting system generations" msgstr "Löschen von Systemgenerationen" #. type: cindex -#: guix-git/doc/guix.texi:35018 guix-git/doc/guix.texi:37648 +#: guix-git/doc/guix.texi:35457 guix-git/doc/guix.texi:38127 #, no-wrap msgid "saving space" msgstr "Platz sparen" #. type: table -#: guix-git/doc/guix.texi:35022 +#: guix-git/doc/guix.texi:35461 msgid "Delete system generations, making them candidates for garbage collection (@pxref{Invoking guix gc}, for information on how to run the ``garbage collector'')." msgstr "Systemgenerationen löschen, wodurch diese zu Kandidaten für den Müllsammler werden (siehe @ref{Invoking guix gc} für Informationen, wie Sie den „Müllsammler“ laufen lassen)." #. type: table -#: guix-git/doc/guix.texi:35026 +#: guix-git/doc/guix.texi:35465 msgid "This works in the same way as @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). With no arguments, all system generations but the current one are deleted:" msgstr "Es funktioniert auf die gleiche Weise wie @samp{guix package --delete-generations} (siehe @ref{Invoking guix package, @option{--delete-generations}}). Wenn keine Argumente angegeben werden, werden alle Systemgenerationen außer der aktuellen gelöscht:" #. type: example -#: guix-git/doc/guix.texi:35029 +#: guix-git/doc/guix.texi:35468 #, no-wrap msgid "guix system delete-generations\n" msgstr "guix system delete-generations\n" #. type: table -#: guix-git/doc/guix.texi:35033 +#: guix-git/doc/guix.texi:35472 msgid "You can also select the generations you want to delete. The example below deletes all the system generations that are more than two months old:" msgstr "Sie können auch eine Auswahl treffen, welche Generationen Sie löschen möchten. Das folgende Beispiel hat die Löschung aller Systemgenerationen zur Folge, die älter als zwei Monate sind:" #. type: example -#: guix-git/doc/guix.texi:35036 +#: guix-git/doc/guix.texi:35475 #, no-wrap msgid "guix system delete-generations 2m\n" msgstr "guix system delete-generations 2m\n" #. type: table -#: guix-git/doc/guix.texi:35041 +#: guix-git/doc/guix.texi:35480 msgid "Running this command automatically reinstalls the bootloader with an updated list of menu entries---e.g., the ``old generations'' sub-menu in GRUB no longer lists the generations that have been deleted." msgstr "Wenn Sie diesen Befehl ausführen, wird automatisch der Bootloader mit einer aktualisierten Liste von Menüeinträgen neu erstellt@tie{}— z.B.@: werden im Untermenü für die „alten Generationen“ in GRUB die gelöschten Generationen nicht mehr aufgeführt." #. type: table -#: guix-git/doc/guix.texi:35046 +#: guix-git/doc/guix.texi:35485 msgid "Build the derivation of the operating system, which includes all the configuration files and programs needed to boot and run the system. This action does not actually install anything." msgstr "Die Ableitung des Betriebssystems erstellen, einschließlich aller Konfigurationsdateien und Programme, die zum Booten und Starten benötigt werden. Diese Aktion installiert jedoch nichts davon." #. type: item -#: guix-git/doc/guix.texi:35047 +#: guix-git/doc/guix.texi:35486 #, no-wrap msgid "init" msgstr "init" #. type: table -#: guix-git/doc/guix.texi:35051 +#: guix-git/doc/guix.texi:35490 msgid "Populate the given directory with all the files necessary to run the operating system specified in @var{file}. This is useful for first-time installations of Guix System. For instance:" msgstr "In das angegebene Verzeichnis alle Dateien einfügen, um das in der @var{Datei} angegebene Betriebssystem starten zu können. Dies ist nützlich bei erstmaligen Installationen von „Guix System“. Zum Beispiel:" #. type: example -#: guix-git/doc/guix.texi:35054 +#: guix-git/doc/guix.texi:35493 #, no-wrap msgid "guix system init my-os-config.scm /mnt\n" msgstr "guix system init my-os-config.scm /mnt\n" #. type: table -#: guix-git/doc/guix.texi:35061 +#: guix-git/doc/guix.texi:35500 msgid "copies to @file{/mnt} all the store items required by the configuration specified in @file{my-os-config.scm}. This includes configuration files, packages, and so on. It also creates other essential files needed for the system to operate correctly---e.g., the @file{/etc}, @file{/var}, and @file{/run} directories, and the @file{/bin/sh} file." msgstr "Hiermit werden alle Store-Objekte nach @file{/mnt} kopiert, die von der in @file{my-os-config.scm} angegebenen Konfiguration vorausgesetzt werden. Dazu gehören Konfigurationsdateien, Pakete und so weiter. Auch andere essenzielle Dateien, die auf dem System vorhanden sein müssen, damit es richtig funktioniert, werden erzeugt@tie{}— z.B.@: die Verzeichnisse @file{/etc}, @file{/var} und @file{/run} und die Datei @file{/bin/sh}." #. type: table -#: guix-git/doc/guix.texi:35065 +#: guix-git/doc/guix.texi:35504 msgid "This command also installs bootloader on the targets specified in @file{my-os-config}, unless the @option{--no-bootloader} option was passed." msgstr "Dieser Befehl installiert auch den Bootloader auf jedem in @file{my-os-config} mit @code{targets} angegebenen Ziel, außer die Befehlszeilenoption @option{--no-bootloader} wurde übergeben." #. type: item -#: guix-git/doc/guix.texi:35066 +#: guix-git/doc/guix.texi:35505 #, no-wrap msgid "vm" msgstr "vm" #. type: cindex -#: guix-git/doc/guix.texi:35067 guix-git/doc/guix.texi:35634 +#: guix-git/doc/guix.texi:35506 guix-git/doc/guix.texi:36124 #, no-wrap msgid "virtual machine" msgstr "virtuelle Maschine" #. type: cindex -#: guix-git/doc/guix.texi:35068 +#: guix-git/doc/guix.texi:35507 #, no-wrap msgid "VM" msgstr "VM" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35072 +#: guix-git/doc/guix.texi:35511 msgid "guix system vm" msgstr "guix system vm" #. type: table -#: guix-git/doc/guix.texi:35072 +#: guix-git/doc/guix.texi:35511 msgid "Build a virtual machine (VM) that contains the operating system declared in @var{file}, and return a script to run that VM." msgstr "Eine virtuelle Maschine (VM) erstellen, die das in der @var{Datei} deklarierte Betriebssystem enthält, und ein Skript liefern, das diese virtuelle Maschine startet." #. type: quotation -#: guix-git/doc/guix.texi:35080 +#: guix-git/doc/guix.texi:35519 msgid "The @code{vm} action and others below can use KVM support in the Linux-libre kernel. Specifically, if the machine has hardware virtualization support, the corresponding KVM kernel module should be loaded, and the @file{/dev/kvm} device node must exist and be readable and writable by the user and by the build users of the daemon (@pxref{Build Environment Setup})." msgstr "Die Aktion @code{vm} sowie solche, die weiter unten genannt werden, können KVM-Unterstützung im Kernel Linux-libre ausnutzen. Insbesondere sollte, wenn die Maschine Hardware-Virtualisierung unterstützt, das entsprechende KVM-Kernelmodul geladen sein und das Gerät @file{/dev/kvm} muss dann existieren und dem Benutzer und den Erstellungsbenutzern des Daemons müssen Berechtigungen zum Lesen und Schreiben darauf gegeben werden (siehe @ref{Build Environment Setup})." #. type: table -#: guix-git/doc/guix.texi:35085 +#: guix-git/doc/guix.texi:35524 msgid "Arguments given to the script are passed to QEMU as in the example below, which enables networking and requests 1@tie{}GiB of RAM for the emulated machine:" msgstr "An das Skript übergebene Argumente werden an QEMU weitergereicht, wie Sie am folgenden Beispiel sehen können. Damit würde eine Netzwerkverbindung aktiviert und 1@tie{}GiB an RAM für die emulierte Maschine angefragt:" #. type: example -#: guix-git/doc/guix.texi:35088 +#: guix-git/doc/guix.texi:35527 #, no-wrap msgid "$ /gnu/store/@dots{}-run-vm.sh -m 1024 -smp 2 -nic user,model=virtio-net-pci\n" msgstr "$ /gnu/store/…-run-vm.sh -m 1024 -smp 2 -nic user,model=virtio-net-pci\n" #. type: table -#: guix-git/doc/guix.texi:35091 +#: guix-git/doc/guix.texi:35530 msgid "It's possible to combine the two steps into one:" msgstr "Beide Schritte können zu einem kombiniert werden:" #. type: example -#: guix-git/doc/guix.texi:35094 +#: guix-git/doc/guix.texi:35533 #, no-wrap msgid "$ $(guix system vm my-config.scm) -m 1024 -smp 2 -nic user,model=virtio-net-pci\n" msgstr "$ $(guix system vm my-config.scm) -m 1024 -smp 2 -nic user,model=virtio-net-pci\n" #. type: table -#: guix-git/doc/guix.texi:35097 +#: guix-git/doc/guix.texi:35536 msgid "The VM shares its store with the host system." msgstr "Die virtuelle Maschine verwendet denselben Store wie das Wirtssystem." #. type: table -#: guix-git/doc/guix.texi:35102 +#: guix-git/doc/guix.texi:35541 +msgid "By default, the root file system of the VM is mounted volatile; the @option{--persistent} option can be provided to make it persistent instead. In that case, the VM disk-image file will be copied from the store to the @env{TMPDIR} directory to make it writable." +msgstr "Vorgegeben ist, für die VM das Wurzeldateisystem als flüchtig („volatile“) einzubinden. Mit der Befehlszeilenoption @option{--persistent} werden Änderungen stattdessen dauerhaft. In diesem Fall wird das Disk-Image der VM aus dem Store in das Verzeichnis @env{TMPDIR} kopiert, damit Schreibzugriff darauf besteht." + +#. type: table +#: guix-git/doc/guix.texi:35546 msgid "Additional file systems can be shared between the host and the VM using the @option{--share} and @option{--expose} command-line options: the former specifies a directory to be shared with write access, while the latter provides read-only access to the shared directory." msgstr "Mit den Befehlszeilenoptionen @option{--share} und @option{--expose} können weitere Dateisysteme zwischen dem Wirtssystem und der VM geteilt werden: Der erste Befehl gibt ein mit Schreibzugriff zu teilendes Verzeichnis an, während der letzte Befehl nur Lesezugriff auf das gemeinsame Verzeichnis gestattet." #. type: table -#: guix-git/doc/guix.texi:35106 +#: guix-git/doc/guix.texi:35550 msgid "The example below creates a VM in which the user's home directory is accessible read-only, and where the @file{/exchange} directory is a read-write mapping of @file{$HOME/tmp} on the host:" msgstr "Im folgenden Beispiel wird eine virtuelle Maschine erzeugt, die auf das Persönliche Verzeichnis des Benutzers nur Lesezugriff hat, wo das Verzeichnis @file{/austausch} aber mit Lese- und Schreibzugriff dem Verzeichnis @file{$HOME/tmp} auf dem Wirtssystem zugeordnet wurde:" #. type: example -#: guix-git/doc/guix.texi:35110 +#: guix-git/doc/guix.texi:35554 #, no-wrap msgid "" "guix system vm my-config.scm \\\n" @@ -65336,56 +66229,56 @@ msgstr "" " --expose=$HOME --share=$HOME/tmp=/austausch\n" #. type: table -#: guix-git/doc/guix.texi:35115 +#: guix-git/doc/guix.texi:35559 msgid "On GNU/Linux, the default is to boot directly to the kernel; this has the advantage of requiring only a very tiny root disk image since the store of the host can then be mounted." msgstr "Für GNU/Linux ist das vorgegebene Verhalten, direkt in den Kernel zu booten, wodurch nur ein sehr winziges „Disk-Image“ (eine Datei mit einem Abbild des Plattenspeichers der virtuellen Maschine) für das Wurzeldateisystem nötig wird, weil der Store des Wirtssystems davon eingebunden werden kann." #. type: table -#: guix-git/doc/guix.texi:35120 +#: guix-git/doc/guix.texi:35564 msgid "The @option{--full-boot} option forces a complete boot sequence, starting with the bootloader. This requires more disk space since a root image containing at least the kernel, initrd, and bootloader data files must be created." msgstr "Mit der Befehlszeilenoption @option{--full-boot} wird erzwungen, einen vollständigen Bootvorgang durchzuführen, angefangen mit dem Bootloader. Dadurch wird mehr Plattenplatz verbraucht, weil dazu ein Disk-Image mindestens mit dem Kernel, initrd und Bootloader-Datendateien erzeugt werden muss." #. type: table -#: guix-git/doc/guix.texi:35123 +#: guix-git/doc/guix.texi:35567 msgid "The @option{--image-size} option can be used to specify the size of the image." msgstr "Mit der Befehlszeilenoption @option{--image-size} kann die Größe des Disk-Images angegeben werden." #. type: table -#: guix-git/doc/guix.texi:35130 +#: guix-git/doc/guix.texi:35574 msgid "The @option{--no-graphic} option will instruct @command{guix system} to spawn a headless VM that will use the invoking tty for IO. Among other things, this enables copy-pasting, and scrollback. Use the @kbd{ctrl-a} prefix to issue QEMU commands; e.g. @kbd{ctrl-a h} prints a help, @kbd{ctrl-a x} quits the VM, and @kbd{ctrl-a c} switches between the QEMU monitor and the VM." msgstr "Mit der Befehlszeilenoption @option{--no-graphic} wird @command{guix system} angewiesen, eine VM ohne Oberfläche anzulegen, bei der die Konsole für Ein-/Ausgabe benutzt wird, über die die VM gestartet wurde. Unter anderem wird damit eine Zwischenablage zum Kopieren und Einfügen und ein Zeilenpuffer (Scrollback) angeboten. Wenn Sie @kbd{strg-a} zuvor drücken, können Sie QEMU-Befehle angeben, z.B. zeigt @kbd{strg-a h} eine Hilfe an und @kbd{strg-a x} beendet die VM; mit @kbd{strg-a c} wechseln Sie zwischen der QEMU-Anzeige und der VM." #. type: cindex -#: guix-git/doc/guix.texi:35131 +#: guix-git/doc/guix.texi:35575 #, no-wrap msgid "System images, creation in various formats" msgstr "System-Disk-Images, Erstellung in verschiedenen Formaten" #. type: cindex -#: guix-git/doc/guix.texi:35132 +#: guix-git/doc/guix.texi:35576 #, no-wrap msgid "Creating system images in various formats" msgstr "Erzeugen von System-Disk-Images in verschiedenen Formaten" #. type: item -#: guix-git/doc/guix.texi:35133 +#: guix-git/doc/guix.texi:35577 #, no-wrap msgid "image" msgstr "image" #. type: cindex -#: guix-git/doc/guix.texi:35134 +#: guix-git/doc/guix.texi:35578 #, no-wrap msgid "image, creating disk images" msgstr "image, Disk-Images erzeugen" #. type: table -#: guix-git/doc/guix.texi:35146 +#: guix-git/doc/guix.texi:35590 msgid "The @code{image} command can produce various image types. The image type can be selected using the @option{--image-type} option. It defaults to @code{efi-raw}. When its value is @code{iso9660}, the @option{--label} option can be used to specify a volume ID with @code{image}. By default, the root file system of a disk image is mounted non-volatile; the @option{--volatile} option can be provided to make it volatile instead. When using @code{image}, the bootloader installed on the generated image is taken from the provided @code{operating-system} definition. The following example demonstrates how to generate an image that uses the @code{grub-efi-bootloader} bootloader and boot it with QEMU:" msgstr "Mit dem Befehl @code{image} können mehrere Abbildtypen erzeugt werden. Der Abbildtyp kann durch die Befehlszeilenoption @option{--image-type} ausgewählt werden. Vorgegeben ist @code{efi-raw}. Für den Wert @code{iso9660} kann mit der Befehlszeilenoption @option{--label} eine Datenträgerkennung („Volume ID“) angegeben werden. Nach Vorgabe wird das Wurzeldateisystem eines Abbilds als nicht-flüchtig eingebunden. Wenn die Befehlszeilenoption @option{--volatile} angegeben wird, dann sind Änderungen daran bloß flüchtig. Bei der Verwendung von @code{image} wird auf dem erzeugten Abbild derjenige Bootloader installiert, der in der @code{operating-system}-Definition angegeben wurde. Das folgende Beispiel zeigt, wie Sie ein Abbild erzeugen, das als Bootloader @code{grub-efi-bootloader} benutzt, und es mit QEMU starten:" #. type: example -#: guix-git/doc/guix.texi:35154 +#: guix-git/doc/guix.texi:35598 #, no-wrap msgid "" "image=$(guix system image --image-type=qcow2 \\\n" @@ -65403,45 +66296,45 @@ msgstr "" " -bios $(guix build ovmf)/share/firmware/ovmf_x64.bin\n" #. type: table -#: guix-git/doc/guix.texi:35160 +#: guix-git/doc/guix.texi:35604 msgid "When using the @code{efi-raw} image type, a raw disk image is produced; it can be copied as is to a USB stick, for instance. Assuming @code{/dev/sdc} is the device corresponding to a USB stick, one can copy the image to it using the following command:" msgstr "Wenn Sie den Abbildtyp @code{efi-raw} anfordern, wird ein rohes Disk-Image hergestellt; es kann zum Beispiel auf einen USB-Stick kopiert werden. Angenommen @code{/dev/sdc} ist das dem USB-Stick entsprechende Gerät, dann kann das Disk-Image mit dem folgenden Befehls darauf kopiert werden:" #. type: example -#: guix-git/doc/guix.texi:35163 +#: guix-git/doc/guix.texi:35607 #, no-wrap msgid "# dd if=$(guix system image my-os.scm) of=/dev/sdc status=progress\n" msgstr "# dd if=$(guix system image my-os.scm) of=/dev/sdc status=progress\n" #. type: table -#: guix-git/doc/guix.texi:35167 +#: guix-git/doc/guix.texi:35611 msgid "The @code{--list-image-types} command lists all the available image types." msgstr "Durch die Befehlszeilenoption @code{--list-image-types} werden alle verfügbaren Abbildtypen aufgelistet." #. type: cindex -#: guix-git/doc/guix.texi:35168 +#: guix-git/doc/guix.texi:35612 #, no-wrap msgid "creating virtual machine images" msgstr "Abbilder für virtuelle Maschinen erzeugen" #. type: table -#: guix-git/doc/guix.texi:35177 +#: guix-git/doc/guix.texi:35621 msgid "When using the @code{qcow2} image type, the returned image is in qcow2 format, which the QEMU emulator can efficiently use. @xref{Running Guix in a VM}, for more information on how to run the image in a virtual machine. The @code{grub-bootloader} bootloader is always used independently of what is declared in the @code{operating-system} file passed as argument. This is to make it easier to work with QEMU, which uses the SeaBIOS BIOS by default, expecting a bootloader to be installed in the Master Boot Record (MBR)." msgstr "Wenn Sie den Abbildtypen @code{qcow2} benutzen, wird ein Abbild im qcow2-Format geliefert, das vom QEMU-Emulator effizient benutzt werden kann. Siehe @ref{Running Guix in a VM} für weitere Informationen, wie Sie das Abbild in einer virtuellen Maschine ausführen. Als Bootloader wird immer @code{grub-bootloader} benutzt, egal was in der als Argument übergebenen @code{operating-system}-Datei deklariert wurde. Der Grund dafür ist, dass dieser besser mit QEMU funktioniert, das als BIOS nach Voreinstellung SeaBIOS benutzt, wo erwartet wird, dass ein Bootloader in den Master Boot Record (MBR) installiert wurde." #. type: cindex -#: guix-git/doc/guix.texi:35178 +#: guix-git/doc/guix.texi:35622 #, no-wrap msgid "docker-image, creating docker images" msgstr "docker-image, Abbilder für Docker erzeugen" #. type: table -#: guix-git/doc/guix.texi:35184 +#: guix-git/doc/guix.texi:35628 msgid "When using the @code{docker} image type, a Docker image is produced. Guix builds the image from scratch, not from a pre-existing Docker base image. As a result, it contains @emph{exactly} what you define in the operating system configuration file. You can then load the image and launch a Docker container using commands like the following:" msgstr "Wenn Sie den Abbildtyp @code{docker} anfordern, wird ein Abbild für Docker hergestellt. Guix erstellt das Abbild von Grund auf und @emph{nicht} aus einem vorerstellten Docker-Basisabbild heraus, daher enthält es @emph{exakt} das, was Sie in der Konfigurationsdatei für das Betriebssystem angegeben haben. Sie können das Abbild dann wie folgt laden und einen Docker-Container damit erzeugen:" #. type: example -#: guix-git/doc/guix.texi:35189 +#: guix-git/doc/guix.texi:35633 #, no-wrap msgid "" "image_id=\"$(docker load < guix-system-docker-image.tar.gz)\"\n" @@ -65453,43 +66346,43 @@ msgstr "" "docker start $container_id\n" #. type: table -#: guix-git/doc/guix.texi:35196 +#: guix-git/doc/guix.texi:35640 msgid "This command starts a new Docker container from the specified image. It will boot the Guix system in the usual manner, which means it will start any services you have defined in the operating system configuration. You can get an interactive shell running in the container using @command{docker exec}:" msgstr "Dieser Befehl startet einen neuen Docker-Container aus dem angegebenen Abbild. Damit wird das Guix-System auf die normale Weise hochgefahren, d.h.@: zunächst werden alle Dienste gestartet, die Sie in der Konfiguration des Betriebssystems angegeben haben. Sie können eine interaktive Shell in dieser isolierten Umgebung bekommen, indem Sie @command{docker exec} benutzen:" #. type: example -#: guix-git/doc/guix.texi:35199 +#: guix-git/doc/guix.texi:35643 #, no-wrap msgid "docker exec -ti $container_id /run/current-system/profile/bin/bash --login\n" msgstr "docker exec -ti $container_id /run/current-system/profile/bin/bash --login\n" #. type: table -#: guix-git/doc/guix.texi:35206 +#: guix-git/doc/guix.texi:35650 msgid "Depending on what you run in the Docker container, it may be necessary to give the container additional permissions. For example, if you intend to build software using Guix inside of the Docker container, you may need to pass the @option{--privileged} option to @code{docker create}." msgstr "Je nachdem, was Sie im Docker-Container ausführen, kann es nötig sein, dass Sie ihn mit weitergehenden Berechtigungen ausstatten. Wenn Sie zum Beispiel Software mit Guix innerhalb des Docker-Containers erstellen wollen, müssen Sie an @code{docker create} die Befehlszeilenoption @option{--privileged} übergeben." #. type: table -#: guix-git/doc/guix.texi:35210 +#: guix-git/doc/guix.texi:35654 msgid "Last, the @option{--network} option applies to @command{guix system docker-image}: it produces an image where network is supposedly shared with the host, and thus without services like nscd or NetworkManager." msgstr "Zuletzt bewirkt die Befehlszeilenoption @option{--network}, dass durch @command{guix system docker-image} ein Abbild erzeugt wird, was sein Netzwerk mit dem Wirtssystem teilt und daher auf Dienste wie nscd oder NetworkManager verzichten sollte." #. type: table -#: guix-git/doc/guix.texi:35218 +#: guix-git/doc/guix.texi:35662 msgid "Return a script to run the operating system declared in @var{file} within a container. Containers are a set of lightweight isolation mechanisms provided by the kernel Linux-libre. Containers are substantially less resource-demanding than full virtual machines since the kernel, shared objects, and other resources can be shared with the host system; this also means they provide thinner isolation." msgstr "Liefert ein Skript, um das in der @var{Datei} deklarierte Betriebssystem in einem Container auszuführen. Mit Container wird hier eine Reihe ressourcenschonender Isolierungsmechanismen im Kernel Linux-libre bezeichnet. Container beanspruchen wesentlich weniger Ressourcen als vollumfängliche virtuelle Maschinen, weil der Kernel, Bibliotheken in gemeinsam nutzbaren Objektdateien („Shared Objects“) sowie andere Ressourcen mit dem Wirtssystem geteilt werden können. Damit ist also eine „dünnere“ Isolierung möglich." #. type: table -#: guix-git/doc/guix.texi:35222 +#: guix-git/doc/guix.texi:35666 msgid "Currently, the script must be run as root in order to support more than a single user and group. The container shares its store with the host system." msgstr "Zurzeit muss das Skript als Administratornutzer „root“ ausgeführt werden, damit darin mehr als nur ein einzelner Benutzer und eine Benutzergruppe unterstützt wird. Der Container teilt seinen Store mit dem Wirtssystem." #. type: table -#: guix-git/doc/guix.texi:35226 +#: guix-git/doc/guix.texi:35670 msgid "As with the @code{vm} action (@pxref{guix system vm}), additional file systems to be shared between the host and container can be specified using the @option{--share} and @option{--expose} options:" msgstr "Wie bei der Aktion @code{vm} (siehe @ref{guix system vm}) können zusätzlich weitere Dateisysteme zwischen Wirt und Container geteilt werden, indem man die Befehlszeilenoptionen @option{--share} und @option{--expose} verwendet:" #. type: example -#: guix-git/doc/guix.texi:35230 +#: guix-git/doc/guix.texi:35674 #, no-wrap msgid "" "guix system container my-config.scm \\\n" @@ -65499,319 +66392,331 @@ msgstr "" " --expose=$HOME --share=$HOME/tmp=/austausch\n" #. type: quotation -#: guix-git/doc/guix.texi:35234 +#: guix-git/doc/guix.texi:35678 msgid "This option requires Linux-libre 3.19 or newer." msgstr "Diese Befehlszeilenoption funktioniert nur mit Linux-libre 3.19 oder neuer." #. type: Plain text -#: guix-git/doc/guix.texi:35241 guix-git/doc/guix.texi:37710 +#: guix-git/doc/guix.texi:35685 guix-git/doc/guix.texi:38189 msgid "@var{options} can contain any of the common build options (@pxref{Common Build Options}). In addition, @var{options} can contain one of the following:" msgstr "Unter den @var{Optionen} können beliebige gemeinsame Erstellungsoptionen aufgeführt werden (siehe @ref{Common Build Options}). Des Weiteren kann als @var{Optionen} Folgendes angegeben werden:" #. type: table -#: guix-git/doc/guix.texi:35250 +#: guix-git/doc/guix.texi:35694 msgid "Consider the operating-system @var{expr} evaluates to. This is an alternative to specifying a file which evaluates to an operating system. This is used to generate the Guix system installer @pxref{Building the Installation Image})." msgstr "Als Konfiguration des Betriebssystems das @code{operating-system}-Objekt betrachten, zu dem der @var{Ausdruck} ausgewertet wird. Dies ist eine Alternative dazu, die Konfiguration in einer Datei festzulegen. Hiermit wird auch das Installationsabbild des Guix-Systems erstellt, siehe @ref{Building the Installation Image})." #. type: table -#: guix-git/doc/guix.texi:35255 +#: guix-git/doc/guix.texi:35699 msgid "Attempt to build for @var{system} instead of the host system type. This works as per @command{guix build} (@pxref{Invoking guix build})." msgstr "Versuchen, für das angegebene @var{System} statt für denselben Systemtyp wie auf dem Wirtssystem zu erstellen. Dies funktioniert wie bei @command{guix build} (siehe @ref{Invoking guix build})." #. type: table -#: guix-git/doc/guix.texi:35260 +#: guix-git/doc/guix.texi:35704 msgid "Return the derivation file name of the given operating system without building anything." msgstr "Liefert den Namen der Ableitungsdatei für das angegebene Betriebssystem, ohne dazu etwas zu erstellen." #. type: table -#: guix-git/doc/guix.texi:35269 +#: guix-git/doc/guix.texi:35713 msgid "As discussed above, @command{guix system init} and @command{guix system reconfigure} always save provenance information @i{via} a dedicated service (@pxref{Service Reference, @code{provenance-service-type}}). However, other commands don't do that by default. If you wish to, say, create a virtual machine image that contains provenance information, you can run:" msgstr "Wie zuvor erläutert, speichern @command{guix system init} und @command{guix system reconfigure} Provenienzinformationen immer über einen dedizierten Dienst (siehe @ref{Service Reference, @code{provenance-service-type}}). Andere Befehle tun das nach Voreinstellung jedoch @emph{nicht}. Wenn Sie zum Beispiel ein Abbild für eine virtuelle Maschine mitsamt Provenienzinformationen erzeugen möchten, können Sie dies ausführen:" #. type: example -#: guix-git/doc/guix.texi:35272 +#: guix-git/doc/guix.texi:35716 #, no-wrap msgid "guix system image -t qcow2 --save-provenance config.scm\n" msgstr "guix system image -t qcow2 --save-provenance config.scm\n" #. type: table -#: guix-git/doc/guix.texi:35279 +#: guix-git/doc/guix.texi:35723 msgid "That way, the resulting image will effectively ``embed its own source'' in the form of meta-data in @file{/run/current-system}. With that information, one can rebuild the image to make sure it really contains what it pretends to contain; or they could use that to derive a variant of the image." msgstr "Auf diese Weise wird im erzeugten Abbild im Prinzip „sein eigener Quellcode eingebettet“, in Form von Metadaten in @file{/run/current-system}. Mit diesen Informationen kann man das Abbild neu erzeugen, um sicherzugehen, dass es tatsächlich das enthält, was davon behauptet wird. Man könnte damit auch eine Abwandlung des Abbilds erzeugen." #. type: item -#: guix-git/doc/guix.texi:35280 +#: guix-git/doc/guix.texi:35724 #, no-wrap msgid "--image-type=@var{type}" msgstr "--image-type=@var{Typ}" #. type: table -#: guix-git/doc/guix.texi:35283 +#: guix-git/doc/guix.texi:35727 msgid "For the @code{image} action, create an image with given @var{type}." msgstr "Für die Aktion @code{image} wird ein Abbild des angegebenen @var{Typ}s erzeugt." #. type: table -#: guix-git/doc/guix.texi:35286 +#: guix-git/doc/guix.texi:35730 msgid "When this option is omitted, @command{guix system} uses the @code{efi-raw} image type." msgstr "Wird diese Befehlszeilenoption nicht angegeben, so benutzt @command{guix system} den Abbildtyp @code{efi-raw}." #. type: cindex -#: guix-git/doc/guix.texi:35287 +#: guix-git/doc/guix.texi:35731 #, no-wrap msgid "ISO-9660 format" msgstr "ISO-9660-Format" #. type: cindex -#: guix-git/doc/guix.texi:35288 +#: guix-git/doc/guix.texi:35732 #, no-wrap msgid "CD image format" msgstr "CD-Abbild-Format" #. type: cindex -#: guix-git/doc/guix.texi:35289 +#: guix-git/doc/guix.texi:35733 #, no-wrap msgid "DVD image format" msgstr "DVD-Abbild-Format" #. type: table -#: guix-git/doc/guix.texi:35292 +#: guix-git/doc/guix.texi:35736 msgid "@option{--image-type=iso9660} produces an ISO-9660 image, suitable for burning on CDs and DVDs." msgstr "@option{--image-type=iso9660} erzeugt ein Abbild im Format ISO-9660, was für das Brennen auf CDs und DVDs geeignet ist." #. type: item -#: guix-git/doc/guix.texi:35293 +#: guix-git/doc/guix.texi:35737 #, no-wrap msgid "--image-size=@var{size}" msgstr "--image-size=@var{Größe}" #. type: table -#: guix-git/doc/guix.texi:35298 +#: guix-git/doc/guix.texi:35742 msgid "For the @code{image} action, create an image of the given @var{size}. @var{size} may be a number of bytes, or it may include a unit as a suffix (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." msgstr "Für die Aktion @code{image} wird hiermit festgelegt, dass ein Abbild der angegebenen @var{Größe} erstellt werden soll. Die @var{Größe} kann als Zahl die Anzahl Bytes angeben oder mit einer Einheit als Suffix versehen werden (siehe @ref{Block size, Größenangaben,, coreutils, GNU Coreutils})." #. type: table -#: guix-git/doc/guix.texi:35302 +#: guix-git/doc/guix.texi:35746 msgid "When this option is omitted, @command{guix system} computes an estimate of the image size as a function of the size of the system declared in @var{file}." msgstr "Wird keine solche Befehlszeilenoption angegeben, berechnet @command{guix system} eine Schätzung der Abbildgröße anhand der Größe des in der @var{Datei} deklarierten Systems." #. type: table -#: guix-git/doc/guix.texi:35307 +#: guix-git/doc/guix.texi:35751 msgid "For the @code{container} action, allow containers to access the host network, that is, do not create a network namespace." msgstr "Für die Aktion @code{container} dürfen isolierte Umgebungen (auch bekannt als „Container“) auf das Wirtsnetzwerk zugreifen, d.h.@: es wird kein Netzwerknamensraum für sie erzeugt." #. type: item -#: guix-git/doc/guix.texi:35313 +#: guix-git/doc/guix.texi:35757 #, no-wrap msgid "--skip-checks" msgstr "--skip-checks" #. type: table -#: guix-git/doc/guix.texi:35315 +#: guix-git/doc/guix.texi:35759 msgid "Skip pre-installation safety checks." msgstr "Die Konfiguration @emph{nicht} vor der Installation zur Sicherheit auf Fehler prüfen." #. type: table -#: guix-git/doc/guix.texi:35322 +#: guix-git/doc/guix.texi:35766 msgid "By default, @command{guix system init} and @command{guix system reconfigure} perform safety checks: they make sure the file systems that appear in the @code{operating-system} declaration actually exist (@pxref{File Systems}), and that any Linux kernel modules that may be needed at boot time are listed in @code{initrd-modules} (@pxref{Initial RAM Disk}). Passing this option skips these tests altogether." msgstr "Das vorgegebene Verhalten von @command{guix system init} und @command{guix system reconfigure} sieht vor, die Konfiguration zur Sicherheit auf Fehler hin zu überprüfen, die ihr Autor übersehen haben könnte: Es wird sichergestellt, dass die in der @code{operating-system}-Deklaration erwähnten Dateisysteme tatsächlich existieren (siehe @ref{File Systems}) und dass alle Linux-Kernelmodule, die beim Booten benötigt werden könnten, auch im @code{initrd-modules}-Feld aufgeführt sind (siehe @ref{Initial RAM Disk}). Mit dieser Befehlszeilenoption werden diese Tests allesamt übersprungen." #. type: table -#: guix-git/doc/guix.texi:35325 +#: guix-git/doc/guix.texi:35769 msgid "Instruct @command{guix system reconfigure} to allow system downgrades." msgstr "An @command{guix system reconfigure} die Anweisung erteilen, Systemherabstufungen zuzulassen." #. type: table -#: guix-git/doc/guix.texi:35333 +#: guix-git/doc/guix.texi:35777 msgid "By default, @command{reconfigure} prevents you from downgrading your system. It achieves that by comparing the provenance info of your system (shown by @command{guix system describe}) with that of your @command{guix} command (shown by @command{guix describe}). If the commits for @command{guix} are not descendants of those used for your system, @command{guix system reconfigure} errors out. Passing @option{--allow-downgrades} allows you to bypass these checks." msgstr "Nach Voreinstellung können Sie mit @command{reconfigure} Ihr System nicht auf eine ältere Version aktualisieren und somit herabstufen. Dazu werden die Provenienzinformationen Ihres Systems herangezogen (wie sie auch von @command{guix system describe} angezeigt werden) und mit denen aus Ihrem @command{guix}-Befehl verglichen (wie sie @command{guix describe} anzeigt). Wenn die Commits von @command{guix} nicht Nachfolger derer Ihres Systems sind, dann bricht @command{guix system reconfigure} mit einer Fehlermeldung ab. Wenn Sie @option{--allow-downgrades} übergeben, können Sie diese Sicherheitsüberprüfungen umgehen." #. type: cindex -#: guix-git/doc/guix.texi:35339 +#: guix-git/doc/guix.texi:35783 #, no-wrap msgid "on-error" msgstr "on-error" #. type: cindex -#: guix-git/doc/guix.texi:35340 +#: guix-git/doc/guix.texi:35784 #, no-wrap msgid "on-error strategy" msgstr "on-error-Strategie" #. type: cindex -#: guix-git/doc/guix.texi:35341 +#: guix-git/doc/guix.texi:35785 #, no-wrap msgid "error strategy" msgstr "Fehlerstrategie" #. type: item -#: guix-git/doc/guix.texi:35342 +#: guix-git/doc/guix.texi:35786 #, no-wrap msgid "--on-error=@var{strategy}" msgstr "--on-error=@var{Strategie}" #. type: table -#: guix-git/doc/guix.texi:35345 +#: guix-git/doc/guix.texi:35789 msgid "Apply @var{strategy} when an error occurs when reading @var{file}. @var{strategy} may be one of the following:" msgstr "Beim Auftreten eines Fehlers beim Einlesen der @var{Datei} die angegebene @var{Strategie} verfolgen. Als @var{Strategie} dient eine der Folgenden:" #. type: item -#: guix-git/doc/guix.texi:35347 +#: guix-git/doc/guix.texi:35791 #, no-wrap msgid "nothing-special" msgstr "nothing-special" #. type: table -#: guix-git/doc/guix.texi:35349 +#: guix-git/doc/guix.texi:35793 msgid "Report the error concisely and exit. This is the default strategy." msgstr "Nichts besonderes; der Fehler wird kurz gemeldet und der Vorgang abgebrochen. Dies ist die vorgegebene Strategie." #. type: item -#: guix-git/doc/guix.texi:35350 +#: guix-git/doc/guix.texi:35794 #, no-wrap msgid "backtrace" msgstr "backtrace" #. type: table -#: guix-git/doc/guix.texi:35352 +#: guix-git/doc/guix.texi:35796 msgid "Likewise, but also display a backtrace." msgstr "Ebenso, aber zusätzlich wird eine Rückverfolgung des Fehlers (ein „Backtrace“) angezeigt." #. type: item -#: guix-git/doc/guix.texi:35353 +#: guix-git/doc/guix.texi:35797 #, no-wrap msgid "debug" msgstr "debug" #. type: table -#: guix-git/doc/guix.texi:35359 +#: guix-git/doc/guix.texi:35803 msgid "Report the error and enter Guile's debugger. From there, you can run commands such as @code{,bt} to get a backtrace, @code{,locals} to display local variable values, and more generally inspect the state of the program. @xref{Debug Commands,,, guile, GNU Guile Reference Manual}, for a list of available debugging commands." msgstr "Nach dem Melden des Fehlers wird der Debugger von Guile zur Fehlersuche gestartet. Von dort können Sie Befehle ausführen, zum Beispiel können Sie sich mit @code{,bt} eine Rückverfolgung („Backtrace“) anzeigen lassen und mit @code{,locals} die Werte lokaler Variabler anzeigen lassen. Im Allgemeinen können Sie mit Befehlen den Zustand des Programms inspizieren. Siehe @ref{Debug Commands,,, guile, Referenzhandbuch zu GNU Guile} für eine Liste verfügbarer Befehle zur Fehlersuche." #. type: Plain text -#: guix-git/doc/guix.texi:35366 +#: guix-git/doc/guix.texi:35810 msgid "Once you have built, configured, re-configured, and re-re-configured your Guix installation, you may find it useful to list the operating system generations available on disk---and that you can choose from the bootloader boot menu:" msgstr "Sobald Sie Ihre Guix-Installation erstellt, konfiguriert, neu konfiguriert und nochmals neu konfiguriert haben, finden Sie es vielleicht hilfreich, sich die auf der Platte verfügbaren@tie{}— und im Bootmenü des Bootloaders auswählbaren@tie{}— Systemgenerationen auflisten zu lassen:" #. type: item -#: guix-git/doc/guix.texi:35369 guix-git/doc/guix.texi:37673 +#: guix-git/doc/guix.texi:35813 guix-git/doc/guix.texi:38152 #, no-wrap msgid "describe" msgstr "describe" #. type: table -#: guix-git/doc/guix.texi:35372 -msgid "Describe the current system generation: its file name, the kernel and bootloader used, etc., as well as provenance information when available." +#: guix-git/doc/guix.texi:35816 +#, fuzzy +#| msgid "Describe the current system generation: its file name, the kernel and bootloader used, etc., as well as provenance information when available." +msgid "Describe the running system generation: its file name, the kernel and bootloader used, etc., as well as provenance information when available." msgstr "Die aktuelle Systemgeneration beschreiben: ihren Dateinamen, den Kernel und den benutzten Bootloader etc.@: sowie Provenienzinformationen, falls verfügbar." +#. type: quotation +#: guix-git/doc/guix.texi:35823 +msgid "The @emph{running} system generation---referred to by @file{/run/current-system}---is not necessarily the @emph{current} system generation---referred to by @file{/var/guix/profiles/system}: it differs when, for instance, you chose from the bootloader menu to boot an older generation." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:35827 +msgid "It can also differ from the @emph{booted} system generation---referred to by @file{/run/booted-system}---for instance because you reconfigured the system in the meantime." +msgstr "" + #. type: item -#: guix-git/doc/guix.texi:35373 guix-git/doc/guix.texi:37677 +#: guix-git/doc/guix.texi:35829 guix-git/doc/guix.texi:38156 #, no-wrap msgid "list-generations" msgstr "list-generations" #. type: table -#: guix-git/doc/guix.texi:35378 +#: guix-git/doc/guix.texi:35834 msgid "List a summary of each generation of the operating system available on disk, in a human-readable way. This is similar to the @option{--list-generations} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "Eine für Menschen verständliche Zusammenfassung jeder auf der Platte verfügbaren Generation des Betriebssystems ausgeben. Dies ähnelt der Befehlszeilenoption @option{--list-generations} von @command{guix package} (siehe @ref{Invoking guix package})." #. type: table -#: guix-git/doc/guix.texi:35383 guix-git/doc/guix.texi:37687 +#: guix-git/doc/guix.texi:35839 guix-git/doc/guix.texi:38166 msgid "Optionally, one can specify a pattern, with the same syntax that is used in @command{guix package --list-generations}, to restrict the list of generations displayed. For instance, the following command displays generations that are up to 10 days old:" msgstr "Optional kann ein Muster angegeben werden, was dieselbe Syntax wie @command{guix package --list-generations} benutzt, um damit die Liste anzuzeigender Generationen einzuschränken. Zum Beispiel zeigt der folgende Befehl Generationen an, die bis zu 10 Tage alt sind:" #. type: example -#: guix-git/doc/guix.texi:35386 +#: guix-git/doc/guix.texi:35842 #, no-wrap msgid "$ guix system list-generations 10d\n" msgstr "$ guix system list-generations 10d\n" #. type: Plain text -#: guix-git/doc/guix.texi:35393 +#: guix-git/doc/guix.texi:35849 msgid "The @command{guix system} command has even more to offer! The following sub-commands allow you to visualize how your system services relate to each other:" msgstr "Der Befehl @command{guix system} hat sogar noch mehr zu bieten! Mit folgenden Unterbefehlen wird Ihnen visualisiert, wie Ihre Systemdienste voneinander abhängen:" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35395 +#: guix-git/doc/guix.texi:35851 msgid "system-extension-graph" msgstr "system-extension-graph" #. type: item -#: guix-git/doc/guix.texi:35397 +#: guix-git/doc/guix.texi:35853 #, no-wrap msgid "extension-graph" msgstr "extension-graph" #. type: table -#: guix-git/doc/guix.texi:35404 +#: guix-git/doc/guix.texi:35860 msgid "Emit to standard output the @dfn{service extension graph} of the operating system defined in @var{file} (@pxref{Service Composition}, for more information on service extensions). By default the output is in Dot/Graphviz format, but you can choose a different format with @option{--graph-backend}, as with @command{guix graph} (@pxref{Invoking guix graph, @option{--backend}}):" msgstr "Auf die Standardausgabe den @dfn{Diensterweiterungsgraphen} des in der @var{Datei} definierten Betriebssystems ausgeben (siehe @ref{Service Composition} für mehr Informationen zu Diensterweiterungen). Vorgegeben ist, ihn im Dot-/Graphviz-Format auszugeben, aber Sie können ein anderes Format mit @option{--graph-backend} auswählen, genau wie bei @command{guix graph} (siehe @ref{Invoking guix graph, @option{--backend}}):" #. type: table -#: guix-git/doc/guix.texi:35406 +#: guix-git/doc/guix.texi:35862 msgid "The command:" msgstr "Der Befehl:" #. type: example -#: guix-git/doc/guix.texi:35409 +#: guix-git/doc/guix.texi:35865 #, no-wrap msgid "$ guix system extension-graph @var{file} | xdot -\n" msgstr "$ guix system extension-graph @var{Datei} | xdot -\n" #. type: table -#: guix-git/doc/guix.texi:35412 +#: guix-git/doc/guix.texi:35868 msgid "shows the extension relations among services." msgstr "zeigt die Erweiterungsrelation unter Diensten an." #. type: anchor{#1} -#: guix-git/doc/guix.texi:35414 +#: guix-git/doc/guix.texi:35870 msgid "system-shepherd-graph" msgstr "system-shepherd-graph" #. type: item -#: guix-git/doc/guix.texi:35414 +#: guix-git/doc/guix.texi:35870 #, no-wrap msgid "shepherd-graph" msgstr "shepherd-graph" #. type: table -#: guix-git/doc/guix.texi:35419 +#: guix-git/doc/guix.texi:35875 msgid "Emit to standard output the @dfn{dependency graph} of shepherd services of the operating system defined in @var{file}. @xref{Shepherd Services}, for more information and for an example graph." msgstr "Auf die Standardausgabe den @dfn{Abhängigkeitsgraphen} der Shepherd-Dienste des in der @var{Datei} definierten Betriebssystems ausgeben. Siehe @ref{Shepherd Services} für mehr Informationen sowie einen Beispielgraphen." #. type: table -#: guix-git/doc/guix.texi:35422 +#: guix-git/doc/guix.texi:35878 msgid "Again, the default output format is Dot/Graphviz, but you can pass @option{--graph-backend} to select a different one." msgstr "Auch hier wird nach Vorgabe die Ausgabe im Dot-/Graphviz-Format sein, aber Sie können ein anderes Format mit @option{--graph-backend} auswählen." #. type: section -#: guix-git/doc/guix.texi:35426 +#: guix-git/doc/guix.texi:35882 #, no-wrap msgid "Invoking @code{guix deploy}" msgstr "@command{guix deploy} aufrufen" #. type: Plain text -#: guix-git/doc/guix.texi:35434 +#: guix-git/doc/guix.texi:35890 msgid "We've already seen @code{operating-system} declarations used to manage a machine's configuration locally. Suppose you need to configure multiple machines, though---perhaps you're managing a service on the web that's comprised of several servers. @command{guix deploy} enables you to use those same @code{operating-system} declarations to manage multiple remote hosts at once as a logical ``deployment''." msgstr "Wir haben bereits gesehen, wie die Konfiguration einer Maschine mit @code{operating-system}-Deklarationen lokal verwaltet werden kann. Doch was ist, wenn Sie mehrere Maschinen konfigurieren möchten? Vielleicht kümmern Sie sich um einen Dienst im Web, der über mehrere Server verteilt ist. Mit @command{guix deploy} können Sie ebensolche @code{operating-system}-Deklarationen verwenden, um mehrere entfernte Rechner („Hosts“) gleichzeitig in einer logischen Bereitstellung (einem „Deployment“) zu verwalten." #. type: quotation -#: guix-git/doc/guix.texi:35439 guix-git/doc/guix.texi:36900 +#: guix-git/doc/guix.texi:35895 guix-git/doc/guix.texi:37390 msgid "The functionality described in this section is still under development and is subject to change. Get in touch with us on @email{guix-devel@@gnu.org}!" msgstr "Die in diesem Abschnitt beschriebenen Funktionalitäten befinden sich noch in der Entwicklung und können sich ändern. Kontaktieren Sie uns auf @email{guix-devel@@gnu.org}!" #. type: example -#: guix-git/doc/guix.texi:35443 +#: guix-git/doc/guix.texi:35899 #, no-wrap msgid "guix deploy @var{file}\n" msgstr "guix deploy @var{Datei}\n" #. type: Plain text -#: guix-git/doc/guix.texi:35447 +#: guix-git/doc/guix.texi:35903 msgid "Such an invocation will deploy the machines that the code within @var{file} evaluates to. As an example, @var{file} might contain a definition like this:" msgstr "Mit einem solchen Aufruf werden diejenigen „Maschinen“ bereitgestellt, zu denen der Code in der @var{Datei} ausgewertet wird. Zum Beispiel könnte die @var{Datei} eine solche Definition enthalten:" #. type: lisp -#: guix-git/doc/guix.texi:35454 +#: guix-git/doc/guix.texi:35910 #, no-wrap msgid "" ";; This is a Guix deployment of a \"bare bones\" setup, with\n" @@ -65829,7 +66734,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:35457 +#: guix-git/doc/guix.texi:35913 #, no-wrap msgid "" "(use-service-modules networking ssh)\n" @@ -65841,7 +66746,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:35478 +#: guix-git/doc/guix.texi:35934 #, no-wrap msgid "" "(define %system\n" @@ -65889,7 +66794,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:35488 +#: guix-git/doc/guix.texi:35944 #, no-wrap msgid "" "(list (machine\n" @@ -65913,33 +66818,33 @@ msgstr "" " (port 2222)))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:35501 +#: guix-git/doc/guix.texi:35957 msgid "The file should evaluate to a list of @var{machine} objects. This example, upon being deployed, will create a new generation on the remote system realizing the @code{operating-system} declaration @code{%system}. @code{environment} and @code{configuration} specify how the machine should be provisioned---that is, how the computing resources should be created and managed. The above example does not create any resources, as a @code{'managed-host} is a machine that is already running the Guix system and available over the network. This is a particularly simple case; a more complex deployment may involve, for example, starting virtual machines through a Virtual Private Server (VPS) provider. In such a case, a different @var{environment} type would be used." msgstr "Die Datei sollte zu einer Liste von @var{machine}-Objekten ausgewertet werden. Wenn dieses Beispiel aufgespielt wird, befindet sich danach eine neue Generation auf dem entfernten System, die der @code{operating-system}-Deklaration @code{%system} entspricht. Mit @code{environment} und @code{configuration} wird die Methode zur Belieferung der Maschine („Provisioning“) angegeben, d.h.@: wie sie angesteuert werden soll, um dort Rechenressourcen anzulegen und zu verwalten. Im obigen Beispiel werden keine Ressourcen angelegt, weil @code{'managed-host} für eine Maschine mit bereits laufendem Guix-System steht, auf die über das Netzwerk zugegriffen werden kann. Das ist ein besonders einfacher Fall; zu einer komplexeren Bereitstellung könnte das Starten virtueller Maschinen über einen Anbieter für „Virtual Private Servers“ (VPS) gehören. In einem solchen Fall würde eine andere Art von Umgebung als @var{environment} angegeben werden." #. type: Plain text -#: guix-git/doc/guix.texi:35506 +#: guix-git/doc/guix.texi:35962 msgid "Do note that you first need to generate a key pair on the coordinator machine to allow the daemon to export signed archives of files from the store (@pxref{Invoking guix archive}), though this step is automatic on Guix System:" msgstr "Beachten Sie, dass Sie zunächst ein Schlüsselpaar auf der Koordinatormaschine erzeugen lassen müssen, damit der Daemon signierte Archive mit Dateien aus dem Store exportieren kann (siehe @ref{Invoking guix archive}). Auf Guix System geschieht dies automatisch." #. type: Plain text -#: guix-git/doc/guix.texi:35514 +#: guix-git/doc/guix.texi:35970 msgid "Each target machine must authorize the key of the master machine so that it accepts store items it receives from the coordinator:" msgstr "Jede Zielmaschine muss den Schlüssel der Hauptmaschine autorisieren, damit diese Store-Objekte von der Koordinatormaschine empfangen kann:" #. type: example -#: guix-git/doc/guix.texi:35517 +#: guix-git/doc/guix.texi:35973 #, no-wrap msgid "# guix archive --authorize < coordinator-public-key.txt\n" msgstr "# guix archive --authorize < öffentlicher-schlüssel-koordinatormaschine.txt\n" #. type: Plain text -#: guix-git/doc/guix.texi:35528 +#: guix-git/doc/guix.texi:35984 msgid "@code{user}, in this example, specifies the name of the user account to log in as to perform the deployment. Its default value is @code{root}, but root login over SSH may be forbidden in some cases. To work around this, @command{guix deploy} can log in as an unprivileged user and employ @code{sudo} to escalate privileges. This will only work if @code{sudo} is currently installed on the remote and can be invoked non-interactively as @code{user}. That is, the line in @code{sudoers} granting @code{user} the ability to use @code{sudo} must contain the @code{NOPASSWD} tag. This can be accomplished with the following operating system configuration snippet:" msgstr "In dem Beispiel wird unter @code{user} der Name des Benutzerkontos angegeben, mit dem Sie sich zum Aufspielen auf der Maschine anmelden. Der Vorgabewert ist @code{root}, jedoch wird eine Anmeldung als root über SSH manchmal nicht zugelassen. Als Ausweg kann @command{guix deploy} Sie erst mit einem „unprivilegierten“ Benutzerkonto ohne besondere Berechtigungen anmelden, um danach automatisch mit @code{sudo} die Berechtigungen auszuweiten. Damit das funktioniert, muss @code{sudo} auf der entfernten Maschine installiert und durch das @code{user}-Konto ohne Nutzerinteraktion aufrufbar sein; mit anderen Worten muss die Zeile in @code{sudoers}, die das @code{user}-Benutzerkonto zum Aufruf von @code{sudo} berechtigt, mit dem @code{NOPASSWD}-Tag versehen sein. Dazu kann das folgende Schnipsel in die Betriebssystemkonfiguration eingefügt werden:" #. type: lisp -#: guix-git/doc/guix.texi:35532 +#: guix-git/doc/guix.texi:35988 #, no-wrap msgid "" "(use-modules ...\n" @@ -65951,7 +66856,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:35534 +#: guix-git/doc/guix.texi:35990 #, no-wrap msgid "" "(define %user \"username\")\n" @@ -65961,7 +66866,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:35542 +#: guix-git/doc/guix.texi:35998 #, no-wrap msgid "" "(operating-system\n" @@ -65983,235 +66888,285 @@ msgstr "" "\n" #. type: Plain text -#: guix-git/doc/guix.texi:35547 +#: guix-git/doc/guix.texi:36003 msgid "For more information regarding the format of the @file{sudoers} file, consult @command{man sudoers}." msgstr "Weitere Informationen über das Format der @file{sudoers}-Datei erhalten Sie, wenn Sie @command{man sudoers} ausführen." +#. type: Plain text +#: guix-git/doc/guix.texi:36008 +msgid "Once you've deployed a system on a set of machines, you may find it useful to run a command on all of them. The @option{--execute} or @option{-x} option lets you do that; the example below runs @command{uname -a} on all the machines listed in the deployment file:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:36011 +#, fuzzy, no-wrap +#| msgid "guix deploy @var{file}\n" +msgid "guix deploy @var{file} -x -- uname -a\n" +msgstr "guix deploy @var{Datei}\n" + +#. type: Plain text +#: guix-git/doc/guix.texi:36015 +msgid "One thing you may often need to do after deployment is restart specific services on all the machines, which you can do like so:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:36018 +#, no-wrap +msgid "guix deploy @var{file} -x -- herd restart @var{service}\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36022 +msgid "The @command{guix deploy -x} command returns zero if and only if the command succeeded on all the machines." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36027 +msgid "Below are the data types you need to know about when writing a deployment file." +msgstr "" + #. type: deftp -#: guix-git/doc/guix.texi:35548 +#: guix-git/doc/guix.texi:36028 #, no-wrap msgid "{Data Type} machine" msgstr "{Datentyp} machine" #. type: deftp -#: guix-git/doc/guix.texi:35551 +#: guix-git/doc/guix.texi:36031 msgid "This is the data type representing a single machine in a heterogeneous Guix deployment." msgstr "Dieser Datentyp steht für eine einzelne Maschine beim Bereitstellen auf mehrere verschiedene Maschinen." #. type: table -#: guix-git/doc/guix.texi:35555 +#: guix-git/doc/guix.texi:36035 msgid "The object of the operating system configuration to deploy." msgstr "Das Objekt mit der aufzuspielenden Betriebssystemkonfiguration." #. type: code{#1} -#: guix-git/doc/guix.texi:35556 +#: guix-git/doc/guix.texi:36036 #, no-wrap msgid "environment" msgstr "environment" #. type: table -#: guix-git/doc/guix.texi:35558 +#: guix-git/doc/guix.texi:36038 msgid "An @code{environment-type} describing how the machine should be provisioned." msgstr "Auf welcher Art von Umgebung die Maschine läuft. Der hier angegebene @code{environment-type} steht dafür, wie die Maschine beliefert wird („Provisioning“)." #. type: item -#: guix-git/doc/guix.texi:35559 +#: guix-git/doc/guix.texi:36039 #, no-wrap msgid "@code{configuration} (default: @code{#f})" msgstr "@code{configuration} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:35564 +#: guix-git/doc/guix.texi:36044 msgid "An object describing the configuration for the machine's @code{environment}. If the @code{environment} has a default configuration, @code{#f} may be used. If @code{#f} is used for an environment with no default configuration, however, an error will be thrown." msgstr "Dieses Objekt gibt die bestimmte Konfiguration der Umgebung (@code{environment}) der Maschine an. Falls es für diese Umgebung eine Vorgabekonfiguration gibt, kann auch @code{#f} benutzt werden. Wenn @code{#f} für eine Umgebung ohne Vorgabekonfiguration benutzt wird, wird ein Fehler ausgelöst." #. type: deftp -#: guix-git/doc/guix.texi:35567 +#: guix-git/doc/guix.texi:36047 #, no-wrap msgid "{Data Type} machine-ssh-configuration" msgstr "{Datentyp} machine-ssh-configuration" #. type: deftp -#: guix-git/doc/guix.texi:35570 +#: guix-git/doc/guix.texi:36050 msgid "This is the data type representing the SSH client parameters for a machine with an @code{environment} of @code{managed-host-environment-type}." msgstr "Dieser Datentyp repräsentiert die SSH-Client-Parameter einer Maschine, deren Umgebung (@code{environment}) vom Typ @code{managed-host-environment-type} ist." #. type: item -#: guix-git/doc/guix.texi:35573 +#: guix-git/doc/guix.texi:36053 #, no-wrap msgid "@code{build-locally?} (default: @code{#t})" msgstr "@code{build-locally?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:35575 +#: guix-git/doc/guix.texi:36055 msgid "If false, system derivations will be built on the machine being deployed to." msgstr "Wenn es falsch ist, werden Ableitungen für das System auf der Maschine erstellt, auf die es aufgespielt wird." #. type: code{#1} -#: guix-git/doc/guix.texi:35575 +#: guix-git/doc/guix.texi:36055 #, no-wrap msgid "system" msgstr "system" #. type: table -#: guix-git/doc/guix.texi:35578 +#: guix-git/doc/guix.texi:36058 msgid "The system type describing the architecture of the machine being deployed to---e.g., @code{\"x86_64-linux\"}." msgstr "Der Systemtyp, der die Architektur der Maschine angibt, auf die aufgespielt wird@tie{}— z.B. @code{\"x86_64-linux\"}." #. type: item -#: guix-git/doc/guix.texi:35578 +#: guix-git/doc/guix.texi:36058 #, no-wrap msgid "@code{authorize?} (default: @code{#t})" msgstr "@code{authorize?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:35581 +#: guix-git/doc/guix.texi:36061 msgid "If true, the coordinator's signing key will be added to the remote's ACL keyring." msgstr "Wenn es wahr ist, wird der Signierschlüssel des Koordinators zum ACL-Schlüsselbund (der Access Control List, deutsch Zugriffssteuerungsliste) der entfernten Maschine hinzugefügt." #. type: item -#: guix-git/doc/guix.texi:35583 +#: guix-git/doc/guix.texi:36063 #, no-wrap msgid "@code{identity} (default: @code{#f})" msgstr "@code{identity} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:35586 +#: guix-git/doc/guix.texi:36066 msgid "If specified, the path to the SSH private key to use to authenticate with the remote host." msgstr "Wenn dies angegeben wird, ist es der Pfad zum privaten SSH-Schlüssel, um sich beim entfernten Rechner zu authentisieren." #. type: item -#: guix-git/doc/guix.texi:35587 +#: guix-git/doc/guix.texi:36067 #, no-wrap msgid "@code{host-key} (default: @code{#f})" msgstr "@code{host-key} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:35589 +#: guix-git/doc/guix.texi:36069 msgid "This should be the SSH host key of the machine, which looks like this:" msgstr "Hierfür sollte der SSH-Rechnerschlüssel der Maschine angegeben werden. Er sieht so aus:" #. type: example -#: guix-git/doc/guix.texi:35592 +#: guix-git/doc/guix.texi:36072 #, no-wrap msgid "ssh-ed25519 AAAAC3Nz@dots{} root@@example.org\n" msgstr "ssh-ed25519 AAAAC3Nz…@: root@@example.org\n" #. type: table -#: guix-git/doc/guix.texi:35597 +#: guix-git/doc/guix.texi:36077 msgid "When @code{host-key} is @code{#f}, the server is authenticated against the @file{~/.ssh/known_hosts} file, just like the OpenSSH @command{ssh} client does." msgstr "Wenn @code{#f} als @code{host-key} angegeben wird, wird der Server gegen die Datei @file{~/.ssh/known_hosts} geprüft, genau wie es der @command{ssh}-Client von OpenSSH tut." #. type: item -#: guix-git/doc/guix.texi:35598 +#: guix-git/doc/guix.texi:36078 #, no-wrap msgid "@code{allow-downgrades?} (default: @code{#f})" msgstr "@code{allow-downgrades?} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:35600 +#: guix-git/doc/guix.texi:36080 msgid "Whether to allow potential downgrades." msgstr "Ob mögliche Herabstufungen zugelassen werden sollen." #. type: table -#: guix-git/doc/guix.texi:35608 +#: guix-git/doc/guix.texi:36088 msgid "Like @command{guix system reconfigure}, @command{guix deploy} compares the channel commits currently deployed on the remote host (as returned by @command{guix system describe}) to those currently in use (as returned by @command{guix describe}) to determine whether commits currently in use are descendants of those deployed. When this is not the case and @code{allow-downgrades?} is false, it raises an error. This ensures you do not accidentally downgrade remote machines." msgstr "Genau wie @command{guix system reconfigure} vergleicht auch @command{guix deploy} die Commits auf den momentan eingespielten Kanälen am entfernten Rechner (wie sie von @command{guix system describe} gemeldet werden) mit denen, die zurzeit verwendet werden (wie sie @command{guix describe} anzeigt), um festzustellen, ob aktuell verwendete Commits Nachfolger der aufgespielten sind. Ist das @emph{nicht} der Fall und steht @code{allow-downgrades?} auf falsch, wird ein Fehler gemeldet. Dadurch kann gewährleistet werden, dass Sie nicht aus Versehen die entfernte Maschine auf eine alte Version herabstufen." +#. type: item +#: guix-git/doc/guix.texi:36089 +#, fuzzy, no-wrap +#| msgid "@code{check?} (default: @code{#t})" +msgid "@code{safety-checks?} (default: @code{#t})" +msgstr "@code{check?} (Vorgabe: @code{#t})" + +#. type: table +#: guix-git/doc/guix.texi:36095 +msgid "Whether to perform ``safety checks'' before deployment. This includes verifying that devices and file systems referred to in the operating system configuration actually exist on the target machine, and making sure that Linux modules required to access storage devices at boot time are listed in the @code{initrd-modules} field of the operating system." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:36098 +msgid "These safety checks ensure that you do not inadvertently deploy a system that would fail to boot. Be careful before turning them off!" +msgstr "" + #. type: deftp -#: guix-git/doc/guix.texi:35611 +#: guix-git/doc/guix.texi:36101 #, no-wrap msgid "{Data Type} digital-ocean-configuration" msgstr "{Datentyp} digital-ocean-configuration" #. type: deftp -#: guix-git/doc/guix.texi:35614 +#: guix-git/doc/guix.texi:36104 msgid "This is the data type describing the Droplet that should be created for a machine with an @code{environment} of @code{digital-ocean-environment-type}." msgstr "Dieser Datentyp beschreibt das Droplet, das für eine Maschine erzeugt werden soll, deren Umgebung (@code{environment}) vom Typ @code{digital-ocean-environment-type} ist." #. type: code{#1} -#: guix-git/doc/guix.texi:35616 +#: guix-git/doc/guix.texi:36106 #, no-wrap msgid "ssh-key" msgstr "ssh-key" #. type: table -#: guix-git/doc/guix.texi:35619 +#: guix-git/doc/guix.texi:36109 msgid "The path to the SSH private key to use to authenticate with the remote host. In the future, this field may not exist." msgstr "Der Pfad zum privaten SSH-Schlüssel, um sich beim entfernten Rechner zu authentisieren. In Zukunft wird es dieses Feld vielleicht nicht mehr geben." #. type: code{#1} -#: guix-git/doc/guix.texi:35619 +#: guix-git/doc/guix.texi:36109 #, no-wrap msgid "tags" msgstr "tags" #. type: table -#: guix-git/doc/guix.texi:35622 +#: guix-git/doc/guix.texi:36112 msgid "A list of string ``tags'' that uniquely identify the machine. Must be given such that no two machines in the deployment have the same set of tags." msgstr "Eine Liste von „Tags“ als Zeichenketten, die die Maschine eindeutig identifizieren. Sie müssen angegeben werden, damit keine zwei Maschinen in der Bereitstellung dieselbe Menge an Tags haben." #. type: code{#1} -#: guix-git/doc/guix.texi:35622 +#: guix-git/doc/guix.texi:36112 #, no-wrap msgid "region" msgstr "region" #. type: table -#: guix-git/doc/guix.texi:35624 +#: guix-git/doc/guix.texi:36114 msgid "A Digital Ocean region slug, such as @code{\"nyc3\"}." msgstr "Ein Digital-Ocean-„Region Slug“ (Regionskürzel), zum Beispiel @code{\"nyc3\"}." #. type: table -#: guix-git/doc/guix.texi:35626 +#: guix-git/doc/guix.texi:36116 msgid "A Digital Ocean size slug, such as @code{\"s-1vcpu-1gb\"}" msgstr "Ein Digital-Ocean-„Size Slug“ (Größenkürzel), zum Beispiel @code{\"s-1vcpu-1gb\"}" #. type: code{#1} -#: guix-git/doc/guix.texi:35626 +#: guix-git/doc/guix.texi:36116 #, no-wrap msgid "enable-ipv6?" msgstr "enable-ipv6?" #. type: table -#: guix-git/doc/guix.texi:35628 +#: guix-git/doc/guix.texi:36118 msgid "Whether or not the droplet should be created with IPv6 networking." msgstr "Ob das Droplet mit IPv6-Netzanbindung erzeugt werden soll." #. type: section -#: guix-git/doc/guix.texi:35632 +#: guix-git/doc/guix.texi:36122 #, no-wrap msgid "Running Guix in a Virtual Machine" msgstr "Guix in einer virtuellen Maschine betreiben" #. type: Plain text -#: guix-git/doc/guix.texi:35640 +#: guix-git/doc/guix.texi:36130 msgid "To run Guix in a virtual machine (VM), one can use the pre-built Guix VM image distributed at @url{@value{BASE-URL}/guix-system-vm-image-@value{VERSION}.x86_64-linux.qcow2}. This image is a compressed image in QCOW format. You can pass it to an emulator such as @uref{https://qemu.org/, QEMU} (see below for details)." msgstr "Um Guix in einer virtuellen Maschine (VM) auszuführen, können Sie das vorerstellte Guix-VM-Abbild benutzen, das auf @url{@value{BASE-URL}/guix-system-vm-image-@value{VERSION}.x86_64-linux.qcow2} angeboten wird. Das Abbild ist ein komprimiertes Abbild im QCOW-Format. Sie können es an einen Emulator wie QEMU übergeben (siehe unten für Details)." #. type: Plain text -#: guix-git/doc/guix.texi:35647 +#: guix-git/doc/guix.texi:36137 msgid "This image boots the Xfce graphical environment and it contains some commonly used tools. You can install more software in the image by running @command{guix package} in a terminal (@pxref{Invoking guix package}). You can also reconfigure the system based on its initial configuration file available as @file{/run/current-system/configuration.scm} (@pxref{Using the Configuration System})." msgstr "Dieses Abbild startet eine grafische Xfce-Umgebung und enthält einige oft genutzte Werkzeuge. Sie können im Abbild mehr Software installieren, indem Sie @command{guix package} in einem Terminal ausführen (siehe @ref{Invoking guix package}). Sie können das System im Abbild auch rekonfigurieren, basierend auf seiner anfänglichen Konfigurationsdatei, die als @file{/run/current-system/configuration.scm} verfügbar ist (siehe @ref{Using the Configuration System})." #. type: Plain text -#: guix-git/doc/guix.texi:35650 +#: guix-git/doc/guix.texi:36140 msgid "Instead of using this pre-built image, one can also build their own image using @command{guix system image} (@pxref{Invoking guix system})." msgstr "Statt dieses vorerstellte Abbild zu benutzen, können Sie auch Ihr eigenes Abbild erstellen, indem Sie @command{guix system image} benutzen (siehe @ref{Invoking guix system})." #. type: cindex -#: guix-git/doc/guix.texi:35651 +#: guix-git/doc/guix.texi:36141 #, no-wrap msgid "QEMU" msgstr "QEMU" #. type: Plain text -#: guix-git/doc/guix.texi:35658 +#: guix-git/doc/guix.texi:36148 msgid "If you built your own image, you must copy it out of the store (@pxref{The Store}) and give yourself permission to write to the copy before you can use it. When invoking QEMU, you must choose a system emulator that is suitable for your hardware platform. Here is a minimal QEMU invocation that will boot the result of @command{guix system image -t qcow2} on x86_64 hardware:" msgstr "Wenn Sie Ihr eigenes Abbild erstellen haben lassen, müssen Sie es aus dem Store herauskopieren (siehe @ref{The Store}) und sich darauf Schreibberechtigung geben, um die Kopie benutzen zu können. Wenn Sie QEMU aufrufen, müssen Sie einen Systememulator angeben, der für Ihre Hardware-Plattform passend ist. Hier ist ein minimaler QEMU-Aufruf, der das Ergebnis von @command{guix system image -t qcow2} auf x86_64-Hardware bootet:" #. type: example -#: guix-git/doc/guix.texi:35665 +#: guix-git/doc/guix.texi:36155 #, no-wrap msgid "" "$ qemu-system-x86_64 \\\n" @@ -66227,137 +67182,137 @@ msgstr "" " -drive if=none,file=/tmp/qemu-image,id=myhd\n" #. type: Plain text -#: guix-git/doc/guix.texi:35668 +#: guix-git/doc/guix.texi:36158 msgid "Here is what each of these options means:" msgstr "Die Bedeutung jeder dieser Befehlszeilenoptionen ist folgende:" #. type: item -#: guix-git/doc/guix.texi:35670 +#: guix-git/doc/guix.texi:36160 #, no-wrap msgid "qemu-system-x86_64" msgstr "qemu-system-x86_64" #. type: table -#: guix-git/doc/guix.texi:35673 +#: guix-git/doc/guix.texi:36163 msgid "This specifies the hardware platform to emulate. This should match the host." msgstr "Hiermit wird die zu emulierende Hardware-Plattform angegeben. Sie sollte zum Wirtsrechner passen." #. type: item -#: guix-git/doc/guix.texi:35674 +#: guix-git/doc/guix.texi:36164 #, no-wrap msgid "-nic user,model=virtio-net-pci" msgstr "-nic user,model=virtio-net-pci" #. type: table -#: guix-git/doc/guix.texi:35682 +#: guix-git/doc/guix.texi:36172 msgid "Enable the unprivileged user-mode network stack. The guest OS can access the host but not vice versa. This is the simplest way to get the guest OS online. @code{model} specifies which network device to emulate: @code{virtio-net-pci} is a special device made for virtualized operating systems and recommended for most uses. Assuming your hardware platform is x86_64, you can get a list of available NIC models by running @command{qemu-system-x86_64 -nic model=help}." msgstr "Den als Nutzer ausgeführten Netzwerkstapel („User-Mode Network Stack“) ohne besondere Berechtigungen benutzen. Mit dieser Art von Netzwerkanbindung kann das Gast-Betriebssystem eine Verbindung zum Wirt aufbauen, aber nicht andersherum. Es ist die einfachste Art, das Gast-Betriebssystem mit dem Internet zu verbinden. Das @code{model} gibt das Modell eines zu emulierenden Netzwerkgeräts an: @code{virtio-net-pci} ist ein besonderes Gerät, das für virtualisierte Betriebssysteme gedacht ist und für die meisten Anwendungsfälle empfohlen wird. Falls Ihre Hardware-Plattform x86_64 ist, können Sie eine Liste verfügbarer Modelle von Netzwerkkarten (englisch „Network Interface Card“, kurz NIC) einsehen, indem Sie @command{qemu-system-x86_64 -net nic,model=help} ausführen." #. type: item -#: guix-git/doc/guix.texi:35683 +#: guix-git/doc/guix.texi:36173 #, no-wrap msgid "-enable-kvm" msgstr "-enable-kvm" #. type: table -#: guix-git/doc/guix.texi:35687 +#: guix-git/doc/guix.texi:36177 msgid "If your system has hardware virtualization extensions, enabling the virtual machine support (KVM) of the Linux kernel will make things run faster." msgstr "Wenn Ihr System über Erweiterungen zur Hardware-Virtualisierung verfügt, beschleunigt es die Dinge, wenn Sie die Virtualisierungsunterstützung „KVM“ des Linux-Kernels benutzen lassen." #. type: item -#: guix-git/doc/guix.texi:35689 +#: guix-git/doc/guix.texi:36179 #, no-wrap msgid "-m 1024" msgstr "-m 1024" #. type: table -#: guix-git/doc/guix.texi:35692 +#: guix-git/doc/guix.texi:36182 msgid "RAM available to the guest OS, in mebibytes. Defaults to 128@tie{}MiB, which may be insufficient for some operations." msgstr "Die Menge an Arbeitsspeicher (RAM), die dem Gastbetriebssystem zur Verfügung stehen soll, in Mebibytes. Vorgegeben wären 128@tie{}MiB, was für einige Operationen zu wenig sein könnte." #. type: item -#: guix-git/doc/guix.texi:35693 +#: guix-git/doc/guix.texi:36183 #, no-wrap msgid "-device virtio-blk,drive=myhd" msgstr "-device virtio-blk,drive=myhd" #. type: table -#: guix-git/doc/guix.texi:35698 +#: guix-git/doc/guix.texi:36188 msgid "Create a @code{virtio-blk} drive called ``myhd''. @code{virtio-blk} is a ``paravirtualization'' mechanism for block devices that allows QEMU to achieve better performance than if it were emulating a complete disk drive. See the QEMU and KVM documentation for more info." msgstr "Ein @code{virtio-blk}-Laufwerk namens „myhd“ erzeugen. @code{virtio-blk} ist ein Mechanismus zur „Paravirtualisierung“ von Blockgeräten, wodurch QEMU diese effizienter benutzen kann, als wenn es ein Laufwerk vollständig emulieren würde. Siehe die Dokumentation von QEMU und KVM für mehr Informationen." #. type: item -#: guix-git/doc/guix.texi:35699 +#: guix-git/doc/guix.texi:36189 #, no-wrap msgid "-drive if=none,file=/tmp/qemu-image,id=myhd" msgstr "-drive if=none,file=/tmp/qemu-image,id=myhd" #. type: table -#: guix-git/doc/guix.texi:35702 +#: guix-git/doc/guix.texi:36192 msgid "Use our QCOW image, the @file{/tmp/qemu-image} file, as the backing store of the ``myhd'' drive." msgstr "Unser QCOW-Abbild in der Datei @file{/tmp/qemu-image} soll als Inhalt des „myhd“-Laufwerks herhalten." #. type: Plain text -#: guix-git/doc/guix.texi:35712 +#: guix-git/doc/guix.texi:36202 msgid "The default @command{run-vm.sh} script that is returned by an invocation of @command{guix system vm} does not add a @command{-nic user} flag by default. To get network access from within the vm add the @code{(dhcp-client-service)} to your system definition and start the VM using @command{$(guix system vm config.scm) -nic user}. An important caveat of using @command{-nic user} for networking is that @command{ping} will not work, because it uses the ICMP protocol. You'll have to use a different command to check for network connectivity, for example @command{guix download}." msgstr "Das voreingestellte @command{run-vm.sh}-Skript, das durch einen Aufruf von @command{guix system vm} erzeugt wird, fügt keine Befehlszeilenoption @command{-nic user} an. Um innerhalb der virtuellen Maschine Netzwerkzugang zu haben, fügen Sie den @code{(dhcp-client-service)} zu Ihrer Systemdefinition hinzu und starten Sie die VM mit @command{$(guix system vm config.scm) -nic user}. Erwähnt werden sollte der Nachteil, dass bei Verwendung von @command{-nic user} zur Netzanbindung der @command{ping}-Befehl @emph{nicht} funktionieren wird, weil dieser das ICMP-Protokoll braucht. Sie werden also einen anderen Befehl benutzen müssen, um auszuprobieren, ob Sie mit dem Netzwerk verbunden sind, zum Beispiel @command{guix download}." #. type: subsection -#: guix-git/doc/guix.texi:35713 +#: guix-git/doc/guix.texi:36203 #, no-wrap msgid "Connecting Through SSH" msgstr "Verbinden über SSH" #. type: Plain text -#: guix-git/doc/guix.texi:35721 +#: guix-git/doc/guix.texi:36211 msgid "To enable SSH inside a VM you need to add an SSH server like @code{openssh-service-type} to your VM (@pxref{Networking Services, @code{openssh-service-type}}). In addition you need to forward the SSH port, 22 by default, to the host. You can do this with" msgstr "Um SSH in der virtuellen Maschine zu aktivieren, müssen Sie einen SSH-Server wie @code{openssh-service-type} zu ihr hinzufügen (siehe @ref{Networking Services, @code{openssh-service-type}}). Des Weiteren müssen Sie den SSH-Port für das Wirtssystem freigeben (standardmäßig hat er die Portnummer 22). Das geht zum Beispiel so:" #. type: example -#: guix-git/doc/guix.texi:35724 +#: guix-git/doc/guix.texi:36214 #, no-wrap msgid "$(guix system vm config.scm) -nic user,model=virtio-net-pci,hostfwd=tcp::10022-:22\n" msgstr "$(guix system vm config.scm) -nic user,model=virtio-net-pci,hostfwd=tcp::10022-:22\n" #. type: Plain text -#: guix-git/doc/guix.texi:35727 +#: guix-git/doc/guix.texi:36217 msgid "To connect to the VM you can run" msgstr "Um sich mit der virtuellen Maschine zu verbinden, benutzen Sie diesen Befehl:" #. type: example -#: guix-git/doc/guix.texi:35730 +#: guix-git/doc/guix.texi:36220 #, no-wrap msgid "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 10022 localhost\n" msgstr "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 10022 localhost\n" #. type: Plain text -#: guix-git/doc/guix.texi:35737 +#: guix-git/doc/guix.texi:36227 msgid "The @command{-p} tells @command{ssh} the port you want to connect to. @command{-o UserKnownHostsFile=/dev/null} prevents @command{ssh} from complaining every time you modify your @command{config.scm} file and the @command{-o StrictHostKeyChecking=no} prevents you from having to allow a connection to an unknown host every time you connect." msgstr "Mit @command{-p} wird @command{ssh} der Port mitgeteilt, über den eine Verbindung hergestellt werden soll. @command{-o UserKnownHostsFile=/dev/null} verhindert, dass @command{ssh} sich bei jeder Modifikation Ihrer @command{config.scm}-Datei beschwert, ein anderer bekannter Rechner sei erwartet worden, und @command{-o StrictHostKeyChecking=no} verhindert, dass Sie die Verbindung zu unbekannten Rechnern jedes Mal bestätigen müssen, wenn Sie sich verbinden." #. type: quotation -#: guix-git/doc/guix.texi:35743 +#: guix-git/doc/guix.texi:36233 msgid "If you find the above @samp{hostfwd} example not to be working (e.g., your SSH client hangs attempting to connect to the mapped port of your VM), make sure that your Guix System VM has networking support, such as by using the @code{dhcp-client-service-type} service type." msgstr "Wenn dieses Beispiel zu @samp{hostfwd} bei Ihnen nicht funktioniert (weil z.B.@: sich Ihr SSH-Client aufhängt, wenn Sie versuchen, sich mit dem zugeordneten Port auf Ihrer VM zu verbinden), dann überprüfen Sie nochmal, ob Ihre Guix-System-VM auch mit Netzwerkunterstützung konfiguriert wurde, also etwas wie der Diensttyp @code{dhcp-client-service-type} angegeben wurde." #. type: subsection -#: guix-git/doc/guix.texi:35745 +#: guix-git/doc/guix.texi:36235 #, no-wrap msgid "Using @command{virt-viewer} with Spice" msgstr "@command{virt-viewer} mit Spice benutzen" #. type: Plain text -#: guix-git/doc/guix.texi:35751 +#: guix-git/doc/guix.texi:36241 msgid "As an alternative to the default @command{qemu} graphical client you can use the @command{remote-viewer} from the @command{virt-viewer} package. To connect pass the @command{-spice port=5930,disable-ticketing} flag to @command{qemu}. See previous section for further information on how to do this." msgstr "Eine Alternative zur grafischen Schnittstelle des standardmäßigen @command{qemu} ist, sich mit Hilfe des @command{remote-viewer} aus dem Paket @command{virt-viewer} zu verbinden. Um eine Verbindung herzustellen, übergeben Sie die Befehlszeilenoption @command{-spice port=5930,disable-ticketing} an @command{qemu}. Siehe den vorherigen Abschnitt für weitere Informationen, wie Sie das übergeben." #. type: Plain text -#: guix-git/doc/guix.texi:35754 +#: guix-git/doc/guix.texi:36244 msgid "Spice also allows you to do some nice stuff like share your clipboard with your VM@. To enable that you'll also have to pass the following flags to @command{qemu}:" msgstr "Spice macht es auch möglich, ein paar nette Hilfestellungen zu benutzen, zum Beispiel können Sie Ihren Zwischenspeicher zum Kopieren und Einfügen (Ihr „Clipboard“) mit Ihrer virtuellen Maschine teilen. Um das zu aktivieren, werden Sie die folgenden Befehlszeilennoptionen zusätzlich an @command{qemu} übergeben müssen:" #. type: example -#: guix-git/doc/guix.texi:35760 +#: guix-git/doc/guix.texi:36250 #, no-wrap msgid "" "-device virtio-serial-pci,id=virtio-serial0,max_ports=16,bus=pci.0,addr=0x5\n" @@ -66371,81 +67326,81 @@ msgstr "" "name=com.redhat.spice.0\n" #. type: Plain text -#: guix-git/doc/guix.texi:35764 +#: guix-git/doc/guix.texi:36254 msgid "You'll also need to add the @code{(spice-vdagent-service)} to your system definition (@pxref{Miscellaneous Services, Spice service})." msgstr "Sie werden auch den @code{(spice-vdagent-service)} zu Ihrer Systemdefinition hinzufügen müssen (siehe @ref{Miscellaneous Services, Spice-Dienst})." #. type: Plain text -#: guix-git/doc/guix.texi:35771 +#: guix-git/doc/guix.texi:36261 msgid "The previous sections show the available services and how one can combine them in an @code{operating-system} declaration. But how do we define them in the first place? And what is a service anyway?" msgstr "Der vorhergehende Abschnitt präsentiert die verfügbaren Dienste und wie man sie in einer @code{operating-system}-Deklaration kombiniert. Aber wie definieren wir solche Dienste eigentlich? Und was ist überhaupt ein Dienst?" #. type: cindex -#: guix-git/doc/guix.texi:35784 +#: guix-git/doc/guix.texi:36274 #, no-wrap msgid "daemons" msgstr "Daemons" #. type: Plain text -#: guix-git/doc/guix.texi:35797 +#: guix-git/doc/guix.texi:36287 msgid "Here we define a @dfn{service} as, broadly, something that extends the functionality of the operating system. Often a service is a process---a @dfn{daemon}---started when the system boots: a secure shell server, a Web server, the Guix build daemon, etc. Sometimes a service is a daemon whose execution can be triggered by another daemon---e.g., an FTP server started by @command{inetd} or a D-Bus service activated by @command{dbus-daemon}. Occasionally, a service does not map to a daemon. For instance, the ``account'' service collects user accounts and makes sure they exist when the system runs; the ``udev'' service collects device management rules and makes them available to the eudev daemon; the @file{/etc} service populates the @file{/etc} directory of the system." msgstr "Wir definieren hier einen @dfn{Dienst} (englisch „Service“) als, grob gesagt, etwas, das die Funktionalität des Betriebssystems erweitert. Oft ist ein Dienst ein Prozess@tie{}— ein sogenannter @dfn{Daemon}@tie{}—, der beim Hochfahren des Systems gestartet wird: ein Secure-Shell-Server, ein Web-Server, der Guix-Erstellungsdaemon usw. Manchmal ist ein Dienst ein Daemon, dessen Ausführung von einem anderen Daemon ausgelöst wird@tie{}— zum Beispiel wird ein FTP-Server von @command{inetd} gestartet oder ein D-Bus-Dienst durch @command{dbus-daemon} aktiviert. Manchmal entspricht ein Dienst aber auch keinem Daemon. Zum Beispiel nimmt sich der Benutzerkonten-Dienst („account service“) die Benutzerkonten und sorgt dafür, dass sie existieren, wenn das System läuft. Der „udev“-Dienst sammelt die Regeln zur Geräteverwaltung an und macht diese für den eudev-Daemon verfügbar. Der @file{/etc}-Dienst fügt Dateien in das Verzeichnis @file{/etc} des Systems ein." #. type: cindex -#: guix-git/doc/guix.texi:35798 +#: guix-git/doc/guix.texi:36288 #, no-wrap msgid "service extensions" msgstr "Diensterweiterungen" #. type: Plain text -#: guix-git/doc/guix.texi:35810 +#: guix-git/doc/guix.texi:36300 msgid "Guix system services are connected by @dfn{extensions}. For instance, the secure shell service @emph{extends} the Shepherd---the initialization system, running as PID@tie{}1---by giving it the command lines to start and stop the secure shell daemon (@pxref{Networking Services, @code{openssh-service-type}}); the UPower service extends the D-Bus service by passing it its @file{.service} specification, and extends the udev service by passing it device management rules (@pxref{Desktop Services, @code{upower-service}}); the Guix daemon service extends the Shepherd by passing it the command lines to start and stop the daemon, and extends the account service by passing it a list of required build user accounts (@pxref{Base Services})." msgstr "Dienste des Guix-Systems werden durch @dfn{Erweiterungen} („Extensions“) miteinander verbunden. Zum Beispiel @emph{erweitert} der Secure-Shell-Dienst den Shepherd@tie{}— Shepherd ist das Initialisierungssystem (auch „init“-System genannt), was als PID@tie{}1 läuft@tie{}—, indem es ihm die Befehlszeilen zum Starten und Stoppen des Secure-Shell-Daemons übergibt (siehe @ref{Networking Services, @code{openssh-service-type}}). Der UPower-Dienst erweitert den D-Bus-Dienst, indem es ihm seine @file{.service}-Spezifikation übergibt, und erweitert den udev-Dienst, indem es ihm Geräteverwaltungsregeln übergibt (siehe @ref{Desktop Services, @code{upower-service}}). Der Guix-Daemon-Dienst erweitert den Shepherd, indem er ihm die Befehlszeilen zum Starten und Stoppen des Daemons übergibt, und er erweitert den Benutzerkontendienst („account service“), indem er ihm eine Liste der benötigten Erstellungsbenutzerkonten übergibt (siehe @ref{Base Services})." #. type: Plain text -#: guix-git/doc/guix.texi:35814 +#: guix-git/doc/guix.texi:36304 msgid "All in all, services and their ``extends'' relations form a directed acyclic graph (DAG). If we represent services as boxes and extensions as arrows, a typical system might provide something like this:" msgstr "Alles in allem bilden Dienste und ihre „Erweitert“-Relationen einen gerichteten azyklischen Graphen (englisch „Directed Acyclic Graph“, kurz DAG). Wenn wir Dienste als Kästen und Erweiterungen als Pfeile darstellen, könnte ein typisches System so etwas hier anbieten:" #. type: Plain text -#: guix-git/doc/guix.texi:35816 +#: guix-git/doc/guix.texi:36306 msgid "@image{images/service-graph,,5in,Typical service extension graph.}" msgstr "@image{images/service-graph,,5in,Typischer Diensterweiterungsgraph}" #. type: cindex -#: guix-git/doc/guix.texi:35817 +#: guix-git/doc/guix.texi:36307 #, no-wrap msgid "system service" msgstr "Systemdienst" #. type: Plain text -#: guix-git/doc/guix.texi:35825 +#: guix-git/doc/guix.texi:36315 msgid "At the bottom, we see the @dfn{system service}, which produces the directory containing everything to run and boot the system, as returned by the @command{guix system build} command. @xref{Service Reference}, to learn about the other service types shown here. @xref{system-extension-graph, the @command{guix system extension-graph} command}, for information on how to generate this representation for a particular operating system definition." msgstr "Ganz unten sehen wir den @dfn{Systemdienst}, der das Verzeichnis erzeugt, in dem alles zum Ausführen und Hochfahren enthalten ist, so wie es der Befehl @command{guix system build} liefert. Siehe @ref{Service Reference}, um mehr über die anderen hier gezeigten Diensttypen zu erfahren. Beim @ref{system-extension-graph, Befehl @command{guix system extension-graph}} finden Sie Informationen darüber, wie Sie diese Darstellung für eine Betriebssystemdefinition Ihrer Wahl generieren lassen." #. type: cindex -#: guix-git/doc/guix.texi:35826 +#: guix-git/doc/guix.texi:36316 #, no-wrap msgid "service types" msgstr "Diensttypen" #. type: Plain text -#: guix-git/doc/guix.texi:35832 +#: guix-git/doc/guix.texi:36322 msgid "Technically, developers can define @dfn{service types} to express these relations. There can be any number of services of a given type on the system---for instance, a system running two instances of the GNU secure shell server (lsh) has two instances of @code{lsh-service-type}, with different parameters." msgstr "Technisch funktioniert es so, dass Entwickler @dfn{Diensttypen} definieren können, um diese Beziehungen auszudrücken. Im System kann es beliebig viele Dienste zu jedem Typ geben@tie{}— zum Beispiel können auf einem System zwei Instanzen des GNU-Secure-Shell-Servers (lsh) laufen, mit zwei Instanzen des Diensttyps @code{lsh-service-type} mit je unterschiedlichen Parametern." #. type: Plain text -#: guix-git/doc/guix.texi:35835 +#: guix-git/doc/guix.texi:36325 msgid "The following section describes the programming interface for service types and services." msgstr "Der folgende Abschnitt beschreibt die Programmierschnittstelle für Diensttypen und Dienste." #. type: Plain text -#: guix-git/doc/guix.texi:35842 +#: guix-git/doc/guix.texi:36332 msgid "A @dfn{service type} is a node in the DAG described above. Let us start with a simple example, the service type for the Guix build daemon (@pxref{Invoking guix-daemon}):" msgstr "Ein @dfn{Diensttyp} („service type“) ist ein Knoten im oben beschriebenen ungerichteten azyklischen Graphen (DAG). Fangen wir an mit einem einfachen Beispiel: dem Diensttyp für den Guix-Erstellungsdaemon (siehe @ref{Invoking guix-daemon}):" #. type: lisp -#: guix-git/doc/guix.texi:35852 +#: guix-git/doc/guix.texi:36342 #, no-wrap msgid "" "(define guix-service-type\n" @@ -66467,75 +67422,75 @@ msgstr "" " (default-value (guix-configuration))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:35856 +#: guix-git/doc/guix.texi:36346 msgid "It defines three things:" msgstr "Damit sind drei Dinge definiert:" #. type: enumerate -#: guix-git/doc/guix.texi:35860 +#: guix-git/doc/guix.texi:36350 msgid "A name, whose sole purpose is to make inspection and debugging easier." msgstr "Ein Name, der nur dazu da ist, dass man leichter die Abläufe verstehen und Fehler suchen kann." #. type: enumerate -#: guix-git/doc/guix.texi:35865 +#: guix-git/doc/guix.texi:36355 msgid "A list of @dfn{service extensions}, where each extension designates the target service type and a procedure that, given the parameters of the service, returns a list of objects to extend the service of that type." msgstr "Eine Liste von @dfn{Diensterweiterungen} („service extensions“). Jede Erweiterung gibt den Ziel-Diensttyp an sowie eine Prozedur, die für gegebene Parameter für den Dienst eine Liste von Objekten zurückliefert, um den Dienst dieses Typs zu erweitern." #. type: enumerate -#: guix-git/doc/guix.texi:35868 +#: guix-git/doc/guix.texi:36358 msgid "Every service type has at least one service extension. The only exception is the @dfn{boot service type}, which is the ultimate service." msgstr "Jeder Diensttyp benutzt mindestens eine Diensterweiterung. Die einzige Ausnahme ist der @dfn{boot service type}, der die Grundlage aller Dienste ist." #. type: enumerate -#: guix-git/doc/guix.texi:35871 +#: guix-git/doc/guix.texi:36361 msgid "Optionally, a default value for instances of this type." msgstr "Optional kann ein Vorgabewert für Instanzen dieses Typs angegeben werden." #. type: Plain text -#: guix-git/doc/guix.texi:35874 +#: guix-git/doc/guix.texi:36364 msgid "In this example, @code{guix-service-type} extends three services:" msgstr "In diesem Beispiel werden durch @code{guix-service-type} drei Dienste erweitert:" #. type: item -#: guix-git/doc/guix.texi:35876 +#: guix-git/doc/guix.texi:36366 #, no-wrap msgid "shepherd-root-service-type" msgstr "shepherd-root-service-type" #. type: table -#: guix-git/doc/guix.texi:35881 +#: guix-git/doc/guix.texi:36371 msgid "The @code{guix-shepherd-service} procedure defines how the Shepherd service is extended. Namely, it returns a @code{} object that defines how @command{guix-daemon} is started and stopped (@pxref{Shepherd Services})." msgstr "Die Prozedur @code{guix-shepherd-service} definiert, wie der Shepherd-Dienst erweitert wird, und zwar liefert sie ein @code{}-Objekt, womit definiert wird, wie der @command{guix-daemon} gestartet und gestoppt werden kann (siehe @ref{Shepherd Services})." #. type: item -#: guix-git/doc/guix.texi:35882 +#: guix-git/doc/guix.texi:36372 #, no-wrap msgid "account-service-type" msgstr "account-service-type" #. type: table -#: guix-git/doc/guix.texi:35887 +#: guix-git/doc/guix.texi:36377 msgid "This extension for this service is computed by @code{guix-accounts}, which returns a list of @code{user-group} and @code{user-account} objects representing the build user accounts (@pxref{Invoking guix-daemon})." msgstr "Diese Erweiterung des Dienstes wird durch @code{guix-accounts} berechnet, eine Prozedur, die eine Liste von @code{user-group}- und @code{user-account}-Objekten liefert, die die Erstellungsbenutzerkonten repräsentieren (siehe @ref{Invoking guix-daemon})." #. type: item -#: guix-git/doc/guix.texi:35888 +#: guix-git/doc/guix.texi:36378 #, no-wrap msgid "activation-service-type" msgstr "activation-service-type" #. type: table -#: guix-git/doc/guix.texi:35892 +#: guix-git/doc/guix.texi:36382 msgid "Here @code{guix-activation} is a procedure that returns a gexp, which is a code snippet to run at ``activation time''---e.g., when the service is booted." msgstr "Hier ist @code{guix-activation} eine Prozedur, die einen G-Ausdruck liefert. Dieser ist ein Code-Schnipsel, das zur „Aktivierungszeit“ ausgeführt werden soll@tie{}— z.B.@: wenn der Dienst hochgefahren wird." #. type: Plain text -#: guix-git/doc/guix.texi:35895 +#: guix-git/doc/guix.texi:36385 msgid "A service of this type is instantiated like this:" msgstr "Ein Dienst dieses Typs wird dann so instanziiert:" #. type: lisp -#: guix-git/doc/guix.texi:35901 +#: guix-git/doc/guix.texi:36391 #, no-wrap msgid "" "(service guix-service-type\n" @@ -66549,28 +67504,28 @@ msgstr "" " (extra-options '(\"--gc-keep-derivations\"))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:35909 +#: guix-git/doc/guix.texi:36399 msgid "The second argument to the @code{service} form is a value representing the parameters of this specific service instance. @xref{guix-configuration-type, @code{guix-configuration}}, for information about the @code{guix-configuration} data type. When the value is omitted, the default value specified by @code{guix-service-type} is used:" msgstr "Das zweite Argument an die @code{service}-Form ist ein Wert, der die Parameter dieser bestimmten Dienstinstanz repräsentiert. Siehe @ref{guix-configuration-type, @code{guix-configuration}} für Informationen über den @code{guix-configuration}-Datentyp. Wird kein Wert angegeben, wird die Vorgabe verwendet, die im @code{guix-service-type} angegeben wurde:" #. type: lisp -#: guix-git/doc/guix.texi:35912 +#: guix-git/doc/guix.texi:36402 #, no-wrap msgid "(service guix-service-type)\n" msgstr "(service guix-service-type)\n" #. type: Plain text -#: guix-git/doc/guix.texi:35916 +#: guix-git/doc/guix.texi:36406 msgid "@code{guix-service-type} is quite simple because it extends other services but is not extensible itself." msgstr "@code{guix-service-type} ist ziemlich einfach, weil es andere Dienste erweitert, aber selbst nicht erweitert werden kann." #. type: Plain text -#: guix-git/doc/guix.texi:35920 +#: guix-git/doc/guix.texi:36410 msgid "The service type for an @emph{extensible} service looks like this:" msgstr "Der Diensttyp eines @emph{erweiterbaren} Dienstes sieht ungefähr so aus:" #. type: lisp -#: guix-git/doc/guix.texi:35927 +#: guix-git/doc/guix.texi:36417 #, no-wrap msgid "" "(define udev-service-type\n" @@ -66588,7 +67543,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:35935 +#: guix-git/doc/guix.texi:36425 #, no-wrap msgid "" " (compose concatenate) ;concatenate the list of rules\n" @@ -66608,96 +67563,96 @@ msgstr "" " (rules (append initial-rules rules)))))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:35941 +#: guix-git/doc/guix.texi:36431 msgid "This is the service type for the @uref{https://wiki.gentoo.org/wiki/Project:Eudev, eudev device management daemon}. Compared to the previous example, in addition to an extension of @code{shepherd-root-service-type}, we see two new fields:" msgstr "Dies ist der Diensttyp für den @uref{https://wiki.gentoo.org/wiki/Project:Eudev, Geräteverwaltungsdaemon eudev}. Verglichen mit dem vorherigen Beispiel sehen wir neben einer Erweiterung des @code{shepherd-root-service-type} auch zwei neue Felder." #. type: item -#: guix-git/doc/guix.texi:35943 +#: guix-git/doc/guix.texi:36433 #, no-wrap msgid "compose" msgstr "compose" #. type: table -#: guix-git/doc/guix.texi:35946 +#: guix-git/doc/guix.texi:36436 msgid "This is the procedure to @dfn{compose} the list of extensions to services of this type." msgstr "Die Prozedur, um die Liste der jeweiligen Erweiterungen für den Dienst dieses Typs zu einem Objekt zusammenzustellen (zu „komponieren“, englisch @dfn{compose})." #. type: table -#: guix-git/doc/guix.texi:35949 +#: guix-git/doc/guix.texi:36439 msgid "Services can extend the udev service by passing it lists of rules; we compose those extensions simply by concatenating them." msgstr "Dienste können den udev-Dienst erweitern, indem sie eine Liste von Regeln („Rules“) an ihn übergeben; wir komponieren mehrere solche Erweiterungen, indem wir die Listen einfach zusammenfügen." #. type: item -#: guix-git/doc/guix.texi:35950 +#: guix-git/doc/guix.texi:36440 #, no-wrap msgid "extend" msgstr "extend" #. type: table -#: guix-git/doc/guix.texi:35953 +#: guix-git/doc/guix.texi:36443 msgid "This procedure defines how the value of the service is @dfn{extended} with the composition of the extensions." msgstr "Diese Prozedur definiert, wie der Wert des Dienstes um die Komposition mit Erweiterungen erweitert („extended“) werden kann." #. type: table -#: guix-git/doc/guix.texi:35958 +#: guix-git/doc/guix.texi:36448 msgid "Udev extensions are composed into a list of rules, but the udev service value is itself a @code{} record. So here, we extend that record by appending the list of rules it contains to the list of contributed rules." msgstr "Udev-Erweiterungen werden zu einer einzigen Liste von Regeln komponiert, aber der Wert des udev-Dienstes ist ein @code{}-Verbundsobjekt. Deshalb erweitern wir diesen Verbund, indem wir die Liste der von Erweiterungen beigetragenen Regeln an die im Verbund gespeicherte Liste der Regeln anhängen." #. type: table -#: guix-git/doc/guix.texi:35964 +#: guix-git/doc/guix.texi:36454 msgid "This is a string giving an overview of the service type. The string can contain Texinfo markup (@pxref{Overview,,, texinfo, GNU Texinfo}). The @command{guix system search} command searches these strings and displays them (@pxref{Invoking guix system})." msgstr "Diese Zeichenkette gibt einen Überblick über den Systemtyp. Die Zeichenkette darf mit Texinfo ausgezeichnet werden (siehe @ref{Overview,,, texinfo, GNU Texinfo}). Der Befehl @command{guix system search} durchsucht diese Zeichenketten und zeigt sie an (siehe @ref{Invoking guix system})." #. type: Plain text -#: guix-git/doc/guix.texi:35969 +#: guix-git/doc/guix.texi:36459 msgid "There can be only one instance of an extensible service type such as @code{udev-service-type}. If there were more, the @code{service-extension} specifications would be ambiguous." msgstr "Es kann nur eine Instanz eines erweiterbaren Diensttyps wie @code{udev-service-type} geben. Wenn es mehrere gäbe, wäre es mehrdeutig, welcher Dienst durch die @code{service-extension} erweitert werden soll." #. type: Plain text -#: guix-git/doc/guix.texi:35972 +#: guix-git/doc/guix.texi:36462 msgid "Still here? The next section provides a reference of the programming interface for services." msgstr "Sind Sie noch da? Der nächste Abschnitt gibt Ihnen eine Referenz der Programmierschnittstelle für Dienste." #. type: Plain text -#: guix-git/doc/guix.texi:35980 +#: guix-git/doc/guix.texi:36470 msgid "We have seen an overview of service types (@pxref{Service Types and Services}). This section provides a reference on how to manipulate services and service types. This interface is provided by the @code{(gnu services)} module." msgstr "Wir haben bereits einen Überblick über Diensttypen gesehen (siehe @ref{Service Types and Services}). Dieser Abschnitt hier stellt eine Referenz dar, wie Dienste und Diensttypen manipuliert werden können. Diese Schnittstelle wird vom Modul @code{(gnu services)} angeboten." #. type: deffn -#: guix-git/doc/guix.texi:35981 +#: guix-git/doc/guix.texi:36471 #, no-wrap msgid "{Scheme Procedure} service @var{type} [@var{value}]" msgstr "{Scheme-Prozedur} service @var{Typ} [@var{Wert}]" #. type: deffn -#: guix-git/doc/guix.texi:35985 +#: guix-git/doc/guix.texi:36475 msgid "Return a new service of @var{type}, a @code{} object (see below). @var{value} can be any object; it represents the parameters of this particular service instance." msgstr "Liefert einen neuen Dienst des angegebenen @var{Typ}s. Der @var{Typ} muss als @code{}-Objekt angegeben werden (siehe unten). Als @var{Wert} kann ein beliebiges Objekt angegeben werden, das die Parameter dieser bestimmten Instanz dieses Dienstes repräsentiert." #. type: deffn -#: guix-git/doc/guix.texi:35989 +#: guix-git/doc/guix.texi:36479 msgid "When @var{value} is omitted, the default value specified by @var{type} is used; if @var{type} does not specify a default value, an error is raised." msgstr "Wenn kein @var{Wert} angegeben wird, wird der vom @var{Typ} festgelegte Vorgabewert verwendet; verfügt der @var{Typ} über keinen Vorgabewert, dann wird ein Fehler gemeldet." #. type: deffn -#: guix-git/doc/guix.texi:35991 +#: guix-git/doc/guix.texi:36481 msgid "For instance, this:" msgstr "Zum Beispiel bewirken Sie hiermit:" #. type: lisp -#: guix-git/doc/guix.texi:35994 +#: guix-git/doc/guix.texi:36484 #, no-wrap msgid "(service openssh-service-type)\n" msgstr "(service openssh-service-type)\n" #. type: deffn -#: guix-git/doc/guix.texi:35998 +#: guix-git/doc/guix.texi:36488 msgid "is equivalent to this:" msgstr "dasselbe wie mit:" #. type: lisp -#: guix-git/doc/guix.texi:36002 +#: guix-git/doc/guix.texi:36492 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -66707,50 +67662,50 @@ msgstr "" " (openssh-configuration))\n" #. type: deffn -#: guix-git/doc/guix.texi:36006 +#: guix-git/doc/guix.texi:36496 msgid "In both cases the result is an instance of @code{openssh-service-type} with the default configuration." msgstr "In beiden Fällen ist das Ergebnis eine Instanz von @code{openssh-service-type} mit der vorgegebenen Konfiguration." #. type: deffn -#: guix-git/doc/guix.texi:36008 +#: guix-git/doc/guix.texi:36498 #, no-wrap msgid "{Scheme Procedure} service? @var{obj}" msgstr "{Scheme-Prozedur} service? @var{Objekt}" #. type: deffn -#: guix-git/doc/guix.texi:36010 +#: guix-git/doc/guix.texi:36500 msgid "Return true if @var{obj} is a service." msgstr "Liefert wahr zurück, wenn das @var{Objekt} ein Dienst ist." #. type: deffn -#: guix-git/doc/guix.texi:36012 +#: guix-git/doc/guix.texi:36502 #, no-wrap msgid "{Scheme Procedure} service-kind @var{service}" msgstr "{Scheme-Prozedur} service-kind @var{Dienst}" #. type: deffn -#: guix-git/doc/guix.texi:36014 +#: guix-git/doc/guix.texi:36504 msgid "Return the type of @var{service}---i.e., a @code{} object." msgstr "Liefert den Typ des @var{Dienst}es@tie{}— d.h.@: ein @code{}-Objekt." #. type: deffn -#: guix-git/doc/guix.texi:36016 +#: guix-git/doc/guix.texi:36506 #, no-wrap msgid "{Scheme Procedure} service-value @var{service}" msgstr "{Scheme-Prozedur} service-value @var{Dienst}" #. type: deffn -#: guix-git/doc/guix.texi:36019 +#: guix-git/doc/guix.texi:36509 msgid "Return the value associated with @var{service}. It represents its parameters." msgstr "Liefert den Wert, der mit dem @var{Dienst} assoziiert wurde. Er repräsentiert die Parameter des @var{Dienst}es." #. type: Plain text -#: guix-git/doc/guix.texi:36022 +#: guix-git/doc/guix.texi:36512 msgid "Here is an example of how a service is created and manipulated:" msgstr "Hier ist ein Beispiel, wie ein Dienst erzeugt und manipuliert werden kann:" #. type: lisp -#: guix-git/doc/guix.texi:36031 +#: guix-git/doc/guix.texi:36521 #, no-wrap msgid "" "(define s\n" @@ -66772,7 +67727,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36034 +#: guix-git/doc/guix.texi:36524 #, no-wrap msgid "" "(service? s)\n" @@ -66784,7 +67739,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36037 +#: guix-git/doc/guix.texi:36527 #, no-wrap msgid "" "(eq? (service-kind s) nginx-service-type)\n" @@ -66794,210 +67749,210 @@ msgstr "" "@result{} #t\n" #. type: Plain text -#: guix-git/doc/guix.texi:36047 +#: guix-git/doc/guix.texi:36537 msgid "The @code{modify-services} form provides a handy way to change the parameters of some of the services of a list such as @code{%base-services} (@pxref{Base Services, @code{%base-services}}). It evaluates to a list of services. Of course, you could always use standard list combinators such as @code{map} and @code{fold} to do that (@pxref{SRFI-1, List Library,, guile, GNU Guile Reference Manual}); @code{modify-services} simply provides a more concise form for this common pattern." msgstr "Die Form @code{modify-services} ist eine nützliche Methode, die Parameter von einigen der Dienste aus einer Liste wie @code{%base-services} abzuändern (siehe @ref{Base Services, @code{%base-services}}). Sie wird zu einer Liste von Diensten ausgewertet. Natürlich können Sie dazu auch die üblichen Listenkombinatoren wie @code{map} und @code{fold} benutzen (siehe @ref{SRFI-1, List Library,, guile, Referenzhandbuch zu GNU Guile}), @code{modify-services} soll dieses häufig benutzte Muster lediglich durch eine knappere Syntax unterstützen." #. type: deffn -#: guix-git/doc/guix.texi:36048 +#: guix-git/doc/guix.texi:36538 #, no-wrap msgid "{Scheme Syntax} modify-services @var{services} @" msgstr "{Scheme-Syntax} modify-services @var{Dienste} @" #. type: deffn -#: guix-git/doc/guix.texi:36050 +#: guix-git/doc/guix.texi:36540 msgid "(@var{type} @var{variable} => @var{body}) @dots{}" msgstr "(@var{Typ} @var{Variable} => @var{Rumpf}) …" #. type: deffn -#: guix-git/doc/guix.texi:36053 +#: guix-git/doc/guix.texi:36543 msgid "Modify the services listed in @var{services} according to the given clauses. Each clause has the form:" msgstr "Passt die von @var{Dienste} bezeichnete Dienst-Liste entsprechend den angegebenen Klauseln an. Jede Klausel hat die Form:" #. type: example -#: guix-git/doc/guix.texi:36056 +#: guix-git/doc/guix.texi:36546 #, no-wrap msgid "(@var{type} @var{variable} => @var{body})\n" msgstr "(@var{Typ} @var{Variable} => @var{Rumpf})\n" #. type: deffn -#: guix-git/doc/guix.texi:36063 +#: guix-git/doc/guix.texi:36553 msgid "where @var{type} is a service type---e.g., @code{guix-service-type}---and @var{variable} is an identifier that is bound within the @var{body} to the service parameters---e.g., a @code{guix-configuration} instance---of the original service of that @var{type}." msgstr "wobei @var{Typ} einen Diensttyp („service type“) bezeichnet@tie{}— wie zum Beispiel @code{guix-service-type}@tie{}— und @var{Variable} ein Bezeichner ist, der im @var{Rumpf} an die Dienst-Parameter@tie{}— z.B.@: eine @code{guix-configuration}-Instanz@tie{}— des ursprünglichen Dienstes mit diesem @var{Typ} gebunden wird." #. type: deffn -#: guix-git/doc/guix.texi:36070 +#: guix-git/doc/guix.texi:36560 msgid "The @var{body} should evaluate to the new service parameters, which will be used to configure the new service. This new service will replace the original in the resulting list. Because a service's service parameters are created using @code{define-record-type*}, you can write a succinct @var{body} that evaluates to the new service parameters by using the @code{inherit} feature that @code{define-record-type*} provides." msgstr "Der @var{Rumpf} muss zu den neuen Dienst-Parametern ausgewertet werden, welche benutzt werden, um den neuen Dienst zu konfigurieren. Dieser neue Dienst wird das Original in der resultierenden Liste ersetzen. Weil die Dienstparameter eines Dienstes mit @code{define-record-type*} erzeugt werden, können Sie einen kurzen @var{Rumpf} schreiben, der zu den neuen Dienstparametern ausgewertet wird, indem Sie die Funktionalität namens @code{inherit} benutzen, die von @code{define-record-type*} bereitgestellt wird." #. type: deffn -#: guix-git/doc/guix.texi:36072 +#: guix-git/doc/guix.texi:36562 msgid "Clauses can also have the following form:" msgstr "Klauseln können auch die folgende Form annehmen:" #. type: lisp -#: guix-git/doc/guix.texi:36075 +#: guix-git/doc/guix.texi:36565 #, no-wrap msgid "(delete @var{type})\n" msgstr "(delete @var{Diensttyp})\n" #. type: deffn -#: guix-git/doc/guix.texi:36079 +#: guix-git/doc/guix.texi:36569 msgid "Such a clause removes all services of the given @var{type} from @var{services}." msgstr "Mit so einer Klausel werden alle Dienste mit dem angegebenen @var{Diensttyp} aus der Liste der @var{Dienste} weggelassen." #. type: deffn -#: guix-git/doc/guix.texi:36081 +#: guix-git/doc/guix.texi:36571 msgid "@xref{Using the Configuration System}, for example usage." msgstr "Siehe @ref{Using the Configuration System} für ein Anwendungsbeispiel." #. type: Plain text -#: guix-git/doc/guix.texi:36088 +#: guix-git/doc/guix.texi:36578 msgid "Next comes the programming interface for service types. This is something you want to know when writing new service definitions, but not necessarily when simply looking for ways to customize your @code{operating-system} declaration." msgstr "Als Nächstes ist die Programmierschnittstelle für Diensttypen an der Reihe. Sie ist etwas, was Sie kennen werden wollen, wenn Sie neue Dienstdefinitionen schreiben, aber wenn Sie nur Ihre @code{operating-system}-Deklaration anpassen möchten, brauchen Sie diese Schnittstelle wahrscheinlich nicht." #. type: deftp -#: guix-git/doc/guix.texi:36089 +#: guix-git/doc/guix.texi:36579 #, no-wrap msgid "{Data Type} service-type" msgstr "{Datentyp} service-type" #. type: cindex -#: guix-git/doc/guix.texi:36090 +#: guix-git/doc/guix.texi:36580 #, no-wrap msgid "service type" msgstr "Diensttyp" #. type: deftp -#: guix-git/doc/guix.texi:36093 +#: guix-git/doc/guix.texi:36583 msgid "This is the representation of a @dfn{service type} (@pxref{Service Types and Services})." msgstr "Die Repräsentation eines @dfn{Diensttypen} (siehe @ref{Service Types and Services})." #. type: table -#: guix-git/doc/guix.texi:36097 +#: guix-git/doc/guix.texi:36587 msgid "This is a symbol, used only to simplify inspection and debugging." msgstr "Dieses Symbol wird nur verwendet, um die Abläufe im System anzuzeigen und die Fehlersuche zu erleichtern." #. type: code{#1} -#: guix-git/doc/guix.texi:36098 +#: guix-git/doc/guix.texi:36588 #, no-wrap msgid "extensions" msgstr "extensions" #. type: table -#: guix-git/doc/guix.texi:36100 +#: guix-git/doc/guix.texi:36590 msgid "A non-empty list of @code{} objects (see below)." msgstr "Eine nicht-leere Liste von @code{}-Objekten (siehe unten)." #. type: item -#: guix-git/doc/guix.texi:36101 +#: guix-git/doc/guix.texi:36591 #, no-wrap msgid "@code{compose} (default: @code{#f})" msgstr "@code{compose} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:36105 +#: guix-git/doc/guix.texi:36595 msgid "If this is @code{#f}, then the service type denotes services that cannot be extended---i.e., services that do not receive ``values'' from other services." msgstr "Wenn es auf @code{#f} gesetzt ist, dann definiert der Diensttyp Dienste, die nicht erweitert werden können@tie{}— d.h.@: diese Dienste erhalten ihren Wert nicht von anderen Diensten." #. type: table -#: guix-git/doc/guix.texi:36109 +#: guix-git/doc/guix.texi:36599 msgid "Otherwise, it must be a one-argument procedure. The procedure is called by @code{fold-services} and is passed a list of values collected from extensions. It may return any single value." msgstr "Andernfalls muss es eine Prozedur sein, die ein einziges Argument entgegennimmt. Die Prozedur wird durch @code{fold-services} aufgerufen und ihr wird die Liste von aus den Erweiterungen angesammelten Werten übergeben. Sie gibt daraufhin einen einzelnen Wert zurück." #. type: item -#: guix-git/doc/guix.texi:36110 +#: guix-git/doc/guix.texi:36600 #, no-wrap msgid "@code{extend} (default: @code{#f})" msgstr "@code{extend} (Vorgabe: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:36112 +#: guix-git/doc/guix.texi:36602 msgid "If this is @code{#f}, services of this type cannot be extended." msgstr "Ist dies auf @code{#f} gesetzt, dann können Dienste dieses Typs nicht erweitert werden." #. type: table -#: guix-git/doc/guix.texi:36118 +#: guix-git/doc/guix.texi:36608 msgid "Otherwise, it must be a two-argument procedure: @code{fold-services} calls it, passing it the initial value of the service as the first argument and the result of applying @code{compose} to the extension values as the second argument. It must return a value that is a valid parameter value for the service instance." msgstr "Andernfalls muss es eine zwei Argumente nehmende Prozedur sein, die von @code{fold-services} mit dem anfänglichen Wert für den Dienst als erstes Argument und dem durch Anwendung von @code{compose} gelieferten Wert als zweites Argument aufgerufen wird. Als Ergebnis muss ein Wert geliefert werden, der einen zulässigen neuen Parameterwert für die Dienstinstanz darstellt." #. type: table -#: guix-git/doc/guix.texi:36124 +#: guix-git/doc/guix.texi:36614 msgid "This is a string, possibly using Texinfo markup, describing in a couple of sentences what the service is about. This string allows users to find about the service through @command{guix system search} (@pxref{Invoking guix system})." msgstr "Eine Zeichenkette, womöglich geschrieben als Texinfo-Markup, die in ein paar Sätzen beschreibt, wofür der Dienst gut ist. Diese Zeichenkette ermöglicht es Nutzern, mittels @command{guix system search} Informationen über den Dienst zu bekommen (siehe @ref{Invoking guix system})." #. type: item -#: guix-git/doc/guix.texi:36125 +#: guix-git/doc/guix.texi:36615 #, no-wrap msgid "@code{default-value} (default: @code{&no-default-value})" msgstr "@code{default-value} (Vorgabe: @code{&no-default-value})" #. type: table -#: guix-git/doc/guix.texi:36128 +#: guix-git/doc/guix.texi:36618 msgid "The default value associated for instances of this service type. This allows users to use the @code{service} form without its second argument:" msgstr "Der Vorgabewert, der für Instanzen dieses Diensttyps verwendet wird. Dadurch können Nutzer die @code{service}-Form ohne ihr zweites Argument benutzen:" #. type: lisp -#: guix-git/doc/guix.texi:36131 +#: guix-git/doc/guix.texi:36621 #, no-wrap msgid "(service @var{type})\n" msgstr "(service @var{Diensttyp})\n" #. type: table -#: guix-git/doc/guix.texi:36135 +#: guix-git/doc/guix.texi:36625 msgid "The returned service in this case has the default value specified by @var{type}." msgstr "Der zurückgelieferte Dienst hat dann den durch den @var{Diensttyp} vorgegebenen Vorgabewert." #. type: deftp -#: guix-git/doc/guix.texi:36138 +#: guix-git/doc/guix.texi:36628 msgid "@xref{Service Types and Services}, for examples." msgstr "Siehe den Abschnitt @ref{Service Types and Services} für Beispiele." #. type: deffn -#: guix-git/doc/guix.texi:36140 +#: guix-git/doc/guix.texi:36630 #, no-wrap msgid "{Scheme Procedure} service-extension @var{target-type} @" msgstr "{Scheme-Prozedur} service-extension @var{Zieltyp} @" #. type: deffn -#: guix-git/doc/guix.texi:36146 +#: guix-git/doc/guix.texi:36636 msgid "@var{compute} Return a new extension for services of type @var{target-type}. @var{compute} must be a one-argument procedure: @code{fold-services} calls it, passing it the value associated with the service that provides the extension; it must return a valid value for the target service." msgstr "@var{Berechner} Liefert eine neue Erweiterung für den Dienst mit dem @var{Zieltyp}. Als @var{Berechner} muss eine Prozedur angegeben werden, die ein einzelnes Argument nimmt: @code{fold-services} ruft sie auf und übergibt an sie den Wert des erweiternden Dienstes, sie muss dafür einen zulässigen Wert für den @var{Zieltyp} liefern." #. type: deffn -#: guix-git/doc/guix.texi:36148 +#: guix-git/doc/guix.texi:36638 #, no-wrap msgid "{Scheme Procedure} service-extension? @var{obj}" msgstr "{Scheme-Prozedur} service-extension? @var{Objekt}" #. type: deffn -#: guix-git/doc/guix.texi:36150 +#: guix-git/doc/guix.texi:36640 msgid "Return true if @var{obj} is a service extension." msgstr "Liefert wahr zurück, wenn das @var{Objekt} eine Diensterweiterung ist." #. type: Plain text -#: guix-git/doc/guix.texi:36156 +#: guix-git/doc/guix.texi:36646 msgid "Occasionally, you might want to simply extend an existing service. This involves creating a new service type and specifying the extension of interest, which can be verbose; the @code{simple-service} procedure provides a shorthand for this." msgstr "Manchmal wollen Sie vielleicht einfach nur einen bestehenden Dienst erweitern. Dazu müssten Sie einen neuen Diensttyp definieren und die Erweiterung definieren, für die Sie sich interessieren, was ganz schön wortreich werden kann. Mit der Prozedur @code{simple-service} können Sie es kürzer fassen." #. type: deffn -#: guix-git/doc/guix.texi:36157 +#: guix-git/doc/guix.texi:36647 #, no-wrap msgid "{Scheme Procedure} simple-service @var{name} @var{target} @var{value}" msgstr "{Scheme-Prozedur} simple-service @var{Name} @var{Zieltyp} @var{Wert}" #. type: deffn -#: guix-git/doc/guix.texi:36161 +#: guix-git/doc/guix.texi:36651 msgid "Return a service that extends @var{target} with @var{value}. This works by creating a singleton service type @var{name}, of which the returned service is an instance." msgstr "Liefert einen Dienst, der den Dienst mit dem @var{Zieltyp} um den @var{Wert} erweitert. Dazu wird ein Diensttyp mit dem @var{Name}n für den einmaligen Gebrauch erzeugt, den der zurückgelieferte Dienst instanziiert." #. type: deffn -#: guix-git/doc/guix.texi:36164 +#: guix-git/doc/guix.texi:36654 msgid "For example, this extends mcron (@pxref{Scheduled Job Execution}) with an additional job:" msgstr "Zum Beispiel kann mcron (siehe @ref{Scheduled Job Execution}) so um einen zusätzlichen Auftrag erweitert werden:" #. type: lisp -#: guix-git/doc/guix.texi:36168 +#: guix-git/doc/guix.texi:36658 #, no-wrap msgid "" "(simple-service 'my-mcron-job mcron-service-type\n" @@ -67007,185 +67962,185 @@ msgstr "" " #~(job '(next-hour (3)) \"guix gc -F 2G\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:36178 +#: guix-git/doc/guix.texi:36668 msgid "At the core of the service abstraction lies the @code{fold-services} procedure, which is responsible for ``compiling'' a list of services down to a single directory that contains everything needed to boot and run the system---the directory shown by the @command{guix system build} command (@pxref{Invoking guix system}). In essence, it propagates service extensions down the service graph, updating each node parameters on the way, until it reaches the root node." msgstr "Den Kern dieses abstrakten Modells für Dienste bildet die Prozedur @code{fold-services}, die für das „Kompilieren“ einer Liste von Diensten hin zu einem einzelnen Verzeichnis verantwortlich ist, in welchem alles enthalten ist, was Sie zum Booten und Hochfahren des Systems brauchen@tie{}— d.h.@: das Verzeichnis, das der Befehl @command{guix system build} anzeigt (siehe @ref{Invoking guix system}). Einfach ausgedrückt propagiert @code{fold-services} Diensterweiterungen durch den Dienstgraphen nach unten und aktualisiert dabei in jedem Knoten des Graphen dessen Parameter, bis nur noch der Wurzelknoten übrig bleibt." #. type: deffn -#: guix-git/doc/guix.texi:36179 +#: guix-git/doc/guix.texi:36669 #, no-wrap msgid "{Scheme Procedure} fold-services @var{services} @" msgstr "{Scheme-Prozedur} fold-services @var{Dienste} @" #. type: deffn -#: guix-git/doc/guix.texi:36183 +#: guix-git/doc/guix.texi:36673 msgid "[#:target-type @var{system-service-type}] Fold @var{services} by propagating their extensions down to the root of type @var{target-type}; return the root service adjusted accordingly." msgstr "[#:target-type @var{system-service-type}] Faltet die @var{Dienste} wie die funktionale Prozedur @code{fold} zu einem einzigen zusammen, indem ihre Erweiterungen nach unten propagiert werden, bis eine Wurzel vom @var{target-type} als Diensttyp erreicht wird; dieser so angepasste Wurzeldienst wird zurückgeliefert." #. type: Plain text -#: guix-git/doc/guix.texi:36187 +#: guix-git/doc/guix.texi:36677 msgid "Lastly, the @code{(gnu services)} module also defines several essential service types, some of which are listed below." msgstr "Als Letztes definiert das Modul @code{(gnu services)} noch mehrere essenzielle Diensttypen, von denen manche im Folgenden aufgelistet sind:" #. type: defvr -#: guix-git/doc/guix.texi:36188 +#: guix-git/doc/guix.texi:36678 #, no-wrap msgid "{Scheme Variable} system-service-type" msgstr "{Scheme-Variable} system-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36191 +#: guix-git/doc/guix.texi:36681 msgid "This is the root of the service graph. It produces the system directory as returned by the @command{guix system build} command." msgstr "Die Wurzel des Dienstgraphen. Davon wird das Systemverzeichnis erzeugt, wie es vom Befehl @command{guix system build} zurückgeliefert wird." #. type: defvr -#: guix-git/doc/guix.texi:36193 +#: guix-git/doc/guix.texi:36683 #, no-wrap msgid "{Scheme Variable} boot-service-type" msgstr "{Scheme-Variable} boot-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36196 +#: guix-git/doc/guix.texi:36686 msgid "The type of the ``boot service'', which produces the @dfn{boot script}. The boot script is what the initial RAM disk runs when booting." msgstr "Der Typ des „Boot-Dienstes“, der das @dfn{Boot-Skript} erzeugt. Das Boot-Skript ist das, was beim Booten durch die initiale RAM-Disk ausgeführt wird." #. type: defvr -#: guix-git/doc/guix.texi:36198 +#: guix-git/doc/guix.texi:36688 #, no-wrap msgid "{Scheme Variable} etc-service-type" msgstr "{Scheme-Variable} etc-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36202 +#: guix-git/doc/guix.texi:36692 msgid "The type of the @file{/etc} service. This service is used to create files under @file{/etc} and can be extended by passing it name/file tuples such as:" msgstr "Der Typ des @file{/etc}-Dienstes. Dieser Dienst wird benutzt, um im @file{/etc}-Verzeichnis Dateien zu platzieren. Er kann erweitert werden, indem man Name-Datei-Tupel an ihn übergibt wie in diesem Beispiel:" #. type: lisp -#: guix-git/doc/guix.texi:36205 +#: guix-git/doc/guix.texi:36695 #, no-wrap msgid "(list `(\"issue\" ,(plain-file \"issue\" \"Welcome!\\n\")))\n" msgstr "(list `(\"issue\" ,(plain-file \"issue\" \"Willkommen!\\n\")))\n" #. type: defvr -#: guix-git/doc/guix.texi:36209 +#: guix-git/doc/guix.texi:36699 msgid "In this example, the effect would be to add an @file{/etc/issue} file pointing to the given file." msgstr "Dieses Beispiel würde bewirken, dass eine Datei @file{/etc/issue} auf die angegebene Datei verweist." #. type: defvr -#: guix-git/doc/guix.texi:36211 +#: guix-git/doc/guix.texi:36701 #, no-wrap msgid "{Scheme Variable} setuid-program-service-type" msgstr "{Scheme-Variable} setuid-program-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36215 +#: guix-git/doc/guix.texi:36705 msgid "Type for the ``setuid-program service''. This service collects lists of executable file names, passed as gexps, and adds them to the set of setuid-root programs on the system (@pxref{Setuid Programs})." msgstr "Der Typ des Dienstes für setuid-Programme, der eine Liste von ausführbaren Dateien ansammelt, die jeweils als G-Ausdrücke übergeben werden und dann zur Menge der setuid-gesetzten Programme auf dem System hinzugefügt werden (siehe @ref{Setuid Programs})." #. type: defvr -#: guix-git/doc/guix.texi:36217 +#: guix-git/doc/guix.texi:36707 #, no-wrap msgid "{Scheme Variable} profile-service-type" msgstr "{Scheme-Variable} profile-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36221 +#: guix-git/doc/guix.texi:36711 msgid "Type of the service that populates the @dfn{system profile}---i.e., the programs under @file{/run/current-system/profile}. Other services can extend it by passing it lists of packages to add to the system profile." msgstr "Der Typ des Dienstes zum Einfügen von Dateien ins @dfn{Systemprofil}@tie{}— d.h.@: die Programme unter @file{/run/current-system/profile}. Andere Dienste können ihn erweitern, indem sie ihm Listen von ins Systemprofil zu installierenden Paketen übergeben." #. type: anchor{#1} -#: guix-git/doc/guix.texi:36225 +#: guix-git/doc/guix.texi:36715 msgid "provenance-service-type" msgstr "provenance-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36225 +#: guix-git/doc/guix.texi:36715 #, no-wrap msgid "{Scheme Variable} provenance-service-type" msgstr "{Scheme-Variable} provenance-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36229 +#: guix-git/doc/guix.texi:36719 msgid "This is the type of the service that records @dfn{provenance meta-data} in the system itself. It creates several files under @file{/run/current-system}:" msgstr "Dies ist der Diensttyp des Dienstes, um @dfn{Provenienz-Metadaten} zusammen mit dem eigentlichen System zu speichern. Dazu werden mehrere Dateien unter @file{/run/current-system} erstellt:" #. type: item -#: guix-git/doc/guix.texi:36231 +#: guix-git/doc/guix.texi:36721 #, no-wrap msgid "channels.scm" msgstr "channels.scm" #. type: table -#: guix-git/doc/guix.texi:36236 +#: guix-git/doc/guix.texi:36726 msgid "This is a ``channel file'' that can be passed to @command{guix pull -C} or @command{guix time-machine -C}, and which describes the channels used to build the system, if that information was available (@pxref{Channels})." msgstr "Sie ist eine „Kanaldatei“, wie sie an @command{guix pull -C} oder @command{guix time-machine -C} übergeben werden kann, die die zum Erstellen des Systems notwendigen Kanäle beschreibt, sofern diese Information zur Verfügung gestanden hat (siehe @ref{Channels})." #. type: item -#: guix-git/doc/guix.texi:36237 +#: guix-git/doc/guix.texi:36727 #, no-wrap msgid "configuration.scm" msgstr "configuration.scm" #. type: table -#: guix-git/doc/guix.texi:36242 +#: guix-git/doc/guix.texi:36732 msgid "This is the file that was passed as the value for this @code{provenance-service-type} service. By default, @command{guix system reconfigure} automatically passes the OS configuration file it received on the command line." msgstr "Jene Datei entspricht derjenigen, die als Wert für diesen @code{provenance-service-type}-Dienst mitgegeben wurde. Nach Vorgabe übergibt @command{guix system reconfigure} automatisch die Betriebssystemkonfigurationsdatei, die es auf der Befehlszeile bekommen hat." #. type: item -#: guix-git/doc/guix.texi:36243 +#: guix-git/doc/guix.texi:36733 #, no-wrap msgid "provenance" msgstr "provenance" #. type: table -#: guix-git/doc/guix.texi:36246 +#: guix-git/doc/guix.texi:36736 msgid "This contains the same information as the two other files but in a format that is more readily processable." msgstr "Hierin sind dieselben Informationen enthalten, die auch in den anderen beiden Dateien stehen, aber in einem leichter zu verarbeitenden Format." #. type: defvr -#: guix-git/doc/guix.texi:36250 +#: guix-git/doc/guix.texi:36740 msgid "In general, these two pieces of information (channels and configuration file) are enough to reproduce the operating system ``from source''." msgstr "Im Allgemeinen genügen diese zwei Informationen (Kanäle und Konfigurationsdatei), um das Betriebssystem „aus seinem Quellcode heraus“ zu reproduzieren." #. type: quotation -#: guix-git/doc/guix.texi:36251 +#: guix-git/doc/guix.texi:36741 #, no-wrap msgid "Caveats" msgstr "Einschränkungen" #. type: quotation -#: guix-git/doc/guix.texi:36258 +#: guix-git/doc/guix.texi:36748 msgid "This information is necessary to rebuild your operating system, but it is not always sufficient. In particular, @file{configuration.scm} itself is insufficient if it is not self-contained---if it refers to external Guile modules or to extra files. If you want @file{configuration.scm} to be self-contained, we recommend that modules or files it refers to be part of a channel." msgstr "Sie benötigen diese Informationen, um Ihr Betriebssystem erneut zu erstellen, aber sie alleine @emph{reichen nicht immer aus}. Insbesondere ist @file{configuration.scm} alleine nicht hinreichend, wenn es @emph{nicht} eigenständig ist, sondern auf externe Guile-Module oder andere Dateien verweist. Wenn Sie erreichen wollen, dass @file{configuration.scm} eigenständig wird, empfehlen wir, alle darin verwendeten Module oder Dateien zu Bestandteilen eines Kanals zu machen." #. type: quotation -#: guix-git/doc/guix.texi:36266 +#: guix-git/doc/guix.texi:36756 msgid "Besides, provenance meta-data is ``silent'' in the sense that it does not change the bits contained in your system, @emph{except for the meta-data bits themselves}. Two different OS configurations or sets of channels can lead to the same system, bit-for-bit; when @code{provenance-service-type} is used, these two systems will have different meta-data and thus different store file names, which makes comparison less trivial." msgstr "Übrigens sind Provenienzmetadaten „still“ in dem Sinn, dass ihr Vorhandensein nichts an den Bits ändert, die Ihr System ausmachen, @emph{abgesehen von den die Metadaten ausmachenden Bits}. Zwei verschiedene Betriebssystemkonfigurationen und Kanalangaben können also Bit für Bit dasselbe System erzeugen, aber wenn der @code{provenance-service-type} benutzt wird, enthalten die beiden Systeme trotzdem unterschiedliche Metadaten und damit nicht mehr den gleichen Dateinamen im Store, was es schwerer macht, ihre Gleichheit zu erkennen." #. type: defvr -#: guix-git/doc/guix.texi:36271 +#: guix-git/doc/guix.texi:36761 msgid "This service is automatically added to your operating system configuration when you use @command{guix system reconfigure}, @command{guix system init}, or @command{guix deploy}." msgstr "Dieser Dienst wird automatisch zu Ihrer Betriebssystemkonfiguration hinzugefügt, wenn Sie @command{guix system reconfigure}, @command{guix system init} oder @command{guix deploy} benutzen." #. type: defvr -#: guix-git/doc/guix.texi:36273 +#: guix-git/doc/guix.texi:36763 #, no-wrap msgid "{Scheme Variable} linux-loadable-module-service-type" msgstr "{Scheme-Variable} linux-loadable-module-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36277 +#: guix-git/doc/guix.texi:36767 msgid "Type of the service that collects lists of packages containing kernel-loadable modules, and adds them to the set of kernel-loadable modules." msgstr "Der Diensttyp des Dienstes, der Listen von Paketen mit Kernel-Modulen, die der Kernel laden können soll, sammelt und dafür sorgt, dass der Kernel sie laden kann." #. type: defvr -#: guix-git/doc/guix.texi:36280 +#: guix-git/doc/guix.texi:36770 msgid "This service type is intended to be extended by other service types, such as below:" msgstr "Der Diensttyp ist dazu gedacht, von anderen Diensttypen erweitert zu werden, etwa so:" #. type: lisp -#: guix-git/doc/guix.texi:36286 +#: guix-git/doc/guix.texi:36776 #, no-wrap msgid "" "(simple-service 'installing-module\n" @@ -67199,192 +68154,192 @@ msgstr "" " module-to-install-2))\n" #. type: defvr -#: guix-git/doc/guix.texi:36290 +#: guix-git/doc/guix.texi:36780 msgid "This does not actually load modules at bootup, only adds it to the kernel profile so that it @emph{can} be loaded by other means." msgstr "Die Module werden @emph{nicht} geladen. Sie werden nur zum Kernel-Profil hinzugefügt, damit sie mit anderen Werkzeugen überhaupt erst geladen werden @emph{können}." #. type: cindex -#: guix-git/doc/guix.texi:36295 guix-git/doc/guix.texi:37447 +#: guix-git/doc/guix.texi:36785 #, no-wrap msgid "shepherd services" msgstr "Dienste, mit Shepherd" #. type: cindex -#: guix-git/doc/guix.texi:36296 +#: guix-git/doc/guix.texi:36786 #, no-wrap msgid "PID 1" msgstr "PID 1" #. type: cindex -#: guix-git/doc/guix.texi:36297 +#: guix-git/doc/guix.texi:36787 #, no-wrap msgid "init system" msgstr "init-System" #. type: Plain text -#: guix-git/doc/guix.texi:36303 +#: guix-git/doc/guix.texi:36793 msgid "The @code{(gnu services shepherd)} module provides a way to define services managed by the GNU@tie{}Shepherd, which is the initialization system---the first process that is started when the system boots, also known as PID@tie{}1 (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual})." msgstr "Das Modul @code{(gnu services shepherd)} gibt eine Methode an, mit der Dienste definiert werden können, die von GNU@tie{}Shepherd verwaltet werden, was das Initialisierungssystem (das „init“-System) ist@tie{}— es ist der erste Prozess, der gestartet wird, wenn das System gebootet wird, auch bekannt als PID@tie{}1 (siehe @ref{Introduction,,, shepherd, The GNU Shepherd Manual})." #. type: Plain text -#: guix-git/doc/guix.texi:36309 +#: guix-git/doc/guix.texi:36799 msgid "Services in the Shepherd can depend on each other. For instance, the SSH daemon may need to be started after the syslog daemon has been started, which in turn can only happen once all the file systems have been mounted. The simple operating system defined earlier (@pxref{Using the Configuration System}) results in a service graph like this:" msgstr "Dienste unter dem Shepherd können voneinander abhängen. Zum Beispiel kann es sein, dass der SSH-Daemon erst gestartet werden darf, nachdem der Syslog-Daemon gestartet wurde, welcher wiederum erst gestartet werden kann, sobald alle Dateisysteme eingebunden wurden. Das einfache Betriebssystem, dessen Definition wir zuvor gesehen haben (siehe @ref{Using the Configuration System}), ergibt folgenden Dienstgraphen:" #. type: Plain text -#: guix-git/doc/guix.texi:36311 +#: guix-git/doc/guix.texi:36801 msgid "@image{images/shepherd-graph,,5in,Typical shepherd service graph.}" msgstr "@image{images/shepherd-graph,,5in,Typischer Shepherd-Dienstgraph}" #. type: Plain text -#: guix-git/doc/guix.texi:36315 +#: guix-git/doc/guix.texi:36805 msgid "You can actually generate such a graph for any operating system definition using the @command{guix system shepherd-graph} command (@pxref{system-shepherd-graph, @command{guix system shepherd-graph}})." msgstr "Sie können so einen Graphen tatsächlich für jedes Betriebssystem erzeugen lassen, indem Sie den Befehl @command{guix system shepherd-graph} benutzen (siehe @ref{system-shepherd-graph, @command{guix system shepherd-graph}})." #. type: Plain text -#: guix-git/doc/guix.texi:36319 +#: guix-git/doc/guix.texi:36809 msgid "The @code{%shepherd-root-service} is a service object representing PID@tie{}1, of type @code{shepherd-root-service-type}; it can be extended by passing it lists of @code{} objects." msgstr "Der @code{%shepherd-root-service} ist ein Dienstobjekt, das diesen Prozess mit PID@tie{}1 repräsentiert. Der Dienst hat den Typ @code{shepherd-root-service-type}. Sie können ihn erweitern, indem Sie eine Liste von @code{}-Objekten an ihn übergeben." #. type: deftp -#: guix-git/doc/guix.texi:36320 +#: guix-git/doc/guix.texi:36810 #, no-wrap msgid "{Data Type} shepherd-service" msgstr "{Datentyp} shepherd-service" #. type: deftp -#: guix-git/doc/guix.texi:36322 +#: guix-git/doc/guix.texi:36812 msgid "The data type representing a service managed by the Shepherd." msgstr "Der Datentyp, der einen von Shepherd verwalteten Dienst repräsentiert." #. type: code{#1} -#: guix-git/doc/guix.texi:36324 +#: guix-git/doc/guix.texi:36814 #, no-wrap msgid "provision" msgstr "provision" #. type: table -#: guix-git/doc/guix.texi:36326 +#: guix-git/doc/guix.texi:36816 msgid "This is a list of symbols denoting what the service provides." msgstr "Diese Liste von Symbolen gibt an, was vom Dienst angeboten wird." #. type: table -#: guix-git/doc/guix.texi:36331 +#: guix-git/doc/guix.texi:36821 msgid "These are the names that may be passed to @command{herd start}, @command{herd status}, and similar commands (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual}). @xref{Slots of services, the @code{provides} slot,, shepherd, The GNU Shepherd Manual}, for details." msgstr "Das bedeutet, es sind die Namen, die an @command{herd start}, @command{herd status} und ähnliche Befehle übergeben werden können (siehe @ref{Invoking herd,,, shepherd, The GNU Shepherd Manual}). Siehe @ref{Slots of services, den @code{provides}-Slot,, shepherd, The GNU Shepherd Manual} für Details." #. type: item -#: guix-git/doc/guix.texi:36332 +#: guix-git/doc/guix.texi:36822 #, no-wrap msgid "@code{requirement} (default: @code{'()})" msgstr "@code{requirement} (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:36334 +#: guix-git/doc/guix.texi:36824 msgid "List of symbols denoting the Shepherd services this one depends on." msgstr "Eine Liste von Symbolen, die angegeben, von welchen anderen Shepherd-Diensten dieser hier abhängt." #. type: cindex -#: guix-git/doc/guix.texi:36335 +#: guix-git/doc/guix.texi:36825 #, no-wrap msgid "one-shot services, for the Shepherd" msgstr "einmalig ausgeführte Dienste, für Shepherd" #. type: table -#: guix-git/doc/guix.texi:36340 +#: guix-git/doc/guix.texi:36830 msgid "Whether this service is @dfn{one-shot}. One-shot services stop immediately after their @code{start} action has completed. @xref{Slots of services,,, shepherd, The GNU Shepherd Manual}, for more info." msgstr "Gibt an, ob dieser Dienst nur einmal ausgeführt wird („one-shot“). Einmalig ausgeführte Dienste werden gestoppt, sobald ihre @code{start}-Aktion abgeschlossen wurde. Siehe @ref{Slots of services,,, shepherd, The GNU Shepherd Manual} für weitere Informationen." #. type: item -#: guix-git/doc/guix.texi:36341 +#: guix-git/doc/guix.texi:36831 #, no-wrap msgid "@code{respawn?} (default: @code{#t})" msgstr "@code{respawn?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:36344 +#: guix-git/doc/guix.texi:36834 msgid "Whether to restart the service when it stops, for instance when the underlying process dies." msgstr "Ob der Dienst neu gestartet werden soll, nachdem er gestoppt wurde, zum Beispiel wenn der ihm zu Grunde liegende Prozess terminiert wird." #. type: code{#1} -#: guix-git/doc/guix.texi:36345 +#: guix-git/doc/guix.texi:36835 #, no-wrap msgid "start" msgstr "start" #. type: itemx -#: guix-git/doc/guix.texi:36346 +#: guix-git/doc/guix.texi:36836 #, no-wrap msgid "@code{stop} (default: @code{#~(const #f)})" msgstr "@code{stop} (Vorgabe: @code{#~(const #f)})" #. type: table -#: guix-git/doc/guix.texi:36352 +#: guix-git/doc/guix.texi:36842 msgid "The @code{start} and @code{stop} fields refer to the Shepherd's facilities to start and stop processes (@pxref{Service De- and Constructors,,, shepherd, The GNU Shepherd Manual}). They are given as G-expressions that get expanded in the Shepherd configuration file (@pxref{G-Expressions})." msgstr "Die Felder @code{start} und @code{stop} beziehen sich auf Shepherds Funktionen zum Starten und Stoppen von Prozessen (siehe @ref{Service De- and Constructors,,, shepherd, The GNU Shepherd Manual}). Sie enthalten G-Ausdrücke, die in eine Shepherd-Konfigurationdatei umgeschrieben werden (siehe @ref{G-Expressions})." #. type: item -#: guix-git/doc/guix.texi:36353 +#: guix-git/doc/guix.texi:36843 #, no-wrap msgid "@code{actions} (default: @code{'()})" msgstr "@code{actions} (Vorgabe: @code{'()})" #. type: cindex -#: guix-git/doc/guix.texi:36354 +#: guix-git/doc/guix.texi:36844 #, no-wrap msgid "actions, of Shepherd services" msgstr "Aktionen, bei Shepherd-Diensten" #. type: table -#: guix-git/doc/guix.texi:36359 +#: guix-git/doc/guix.texi:36849 msgid "This is a list of @code{shepherd-action} objects (see below) defining @dfn{actions} supported by the service, in addition to the standard @code{start} and @code{stop} actions. Actions listed here become available as @command{herd} sub-commands:" msgstr "Dies ist eine Liste von @code{shepherd-action}-Objekten (siehe unten), die vom Dienst zusätzlich unterstützte @dfn{Aktionen} neben den Standardaktionen @code{start} und @code{stop} angeben. Hier aufgeführte Aktionen werden als @command{herd}-Unterbefehle verfügbar gemacht:" #. type: example -#: guix-git/doc/guix.texi:36362 +#: guix-git/doc/guix.texi:36852 #, no-wrap msgid "herd @var{action} @var{service} [@var{arguments}@dots{}]\n" msgstr "herd @var{Aktion} @var{Dienst} [@var{Argumente}…]\n" #. type: item -#: guix-git/doc/guix.texi:36364 +#: guix-git/doc/guix.texi:36854 #, no-wrap msgid "@code{auto-start?} (default: @code{#t})" msgstr "@code{auto-start?} (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:36367 +#: guix-git/doc/guix.texi:36857 msgid "Whether this service should be started automatically by the Shepherd. If it is @code{#f} the service has to be started manually with @code{herd start}." msgstr "Ob dieser Dienst automatisch durch Shepherd gestartet werden soll. Wenn es auf @code{#f} steht, muss der Dienst manuell über @code{herd start} gestartet werden." #. type: table -#: guix-git/doc/guix.texi:36370 +#: guix-git/doc/guix.texi:36860 msgid "A documentation string, as shown when running:" msgstr "Eine Zeichenkette zur Dokumentation, die angezeigt wird, wenn man dies ausführt:" #. type: example -#: guix-git/doc/guix.texi:36373 +#: guix-git/doc/guix.texi:36863 #, no-wrap msgid "herd doc @var{service-name}\n" msgstr "herd doc @var{Dienstname}\n" #. type: table -#: guix-git/doc/guix.texi:36377 +#: guix-git/doc/guix.texi:36867 msgid "where @var{service-name} is one of the symbols in @code{provision} (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual})." msgstr "wobei der @var{Dienstname} eines der Symbole aus der @code{provision}-Liste sein muss (siehe @ref{Invoking herd,,, shepherd, The GNU Shepherd Manual})." #. type: table -#: guix-git/doc/guix.texi:36381 +#: guix-git/doc/guix.texi:36871 msgid "This is the list of modules that must be in scope when @code{start} and @code{stop} are evaluated." msgstr "Dies ist die Liste der Module, die in den Sichtbarkeitsbereich geladen sein müssen, wenn @code{start} und @code{stop} ausgewertet werden." #. type: Plain text -#: guix-git/doc/guix.texi:36389 +#: guix-git/doc/guix.texi:36879 msgid "The example below defines a Shepherd service that spawns @command{syslogd}, the system logger from the GNU Networking Utilities (@pxref{syslogd invocation, @command{syslogd},, inetutils, GNU Inetutils}):" msgstr "Im folgenden Beispiel wird ein Shepherd-Dienst definiert, der @command{syslogd}, den Systemprotokollier-Daemon aus den GNU Networking Utilities, startet (siehe @ref{syslogd invocation, @command{syslogd},, inetutils, GNU Inetutils}):" #. type: example -#: guix-git/doc/guix.texi:36401 +#: guix-git/doc/guix.texi:36891 #, no-wrap msgid "" "(let ((config (plain-file \"syslogd.conf\" \"@dots{}\")))\n" @@ -67410,55 +68365,55 @@ msgstr "" " (stop #~(make-kill-destructor))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:36416 +#: guix-git/doc/guix.texi:36906 msgid "Key elements in this example are the @code{start} and @code{stop} fields: they are @dfn{staged} code snippets that use the @code{make-forkexec-constructor} procedure provided by the Shepherd and its dual, @code{make-kill-destructor} (@pxref{Service De- and Constructors,,, shepherd, The GNU Shepherd Manual}). The @code{start} field will have @command{shepherd} spawn @command{syslogd} with the given option; note that we pass @code{config} after @option{--rcfile}, which is a configuration file declared above (contents of this file are omitted). Likewise, the @code{stop} field tells how this service is to be stopped; in this case, it is stopped by making the @code{kill} system call on its PID@. Code staging is achieved using G-expressions: @code{#~} stages code, while @code{#$} ``escapes'' back to host code (@pxref{G-Expressions})." msgstr "Die Kernelemente in diesem Beispiel sind die Felder @code{start} und @code{stop}: Es sind Code-Schnipsel, die erst später ausgewertet werden; wir sagen, sie sind @dfn{staged}. Sie benutzen die von Shepherd bereitgestellte Prozedur @code{make-forkexec-constructor} und ihr duales Gegenstück, @code{make-kill-destructor} (siehe das @ref{Service De- and Constructors,,, shepherd, Handbuch von GNU Shepherd}). Durch das @code{start}-Feld wird @command{shepherd} das @command{syslogd}-Programm mit den angegebenen Befehlszeilenoptionen starten; beachten Sie, dass wir @code{config} nach @option{--rcfile} angeben; dabei handelt es sich um eine vorher im Code deklarierte Konfigurationsdatei (deren Inhalt wir hier nicht erklären). Entsprechend wird mit dem Feld @code{stop} ausgesagt, wie dieser Dienst gestoppt werden kann; in diesem Fall wird er über den Systemaufruf @code{kill} gestoppt, dem die PID des Prozesses übergeben wird. Code-Staging wird über G-Ausdrücke umgesetzt: Mit @code{#~} beginnt der später ausgeführte „staged Code“, und @code{#$} beendet dies und der Code darin wird wirtsseitig hier und jetzt ausgewertet (siehe @ref{G-Expressions})." #. type: deftp -#: guix-git/doc/guix.texi:36417 +#: guix-git/doc/guix.texi:36907 #, no-wrap msgid "{Data Type} shepherd-action" msgstr "{Datentyp} shepherd-action" #. type: deftp -#: guix-git/doc/guix.texi:36420 +#: guix-git/doc/guix.texi:36910 msgid "This is the data type that defines additional actions implemented by a Shepherd service (see above)." msgstr "Dieser Datentyp definiert zusätzliche Aktionen, die ein Shepherd-Dienst implementiert (siehe oben)." #. type: table -#: guix-git/doc/guix.texi:36424 +#: guix-git/doc/guix.texi:36914 msgid "Symbol naming the action." msgstr "Die Aktion bezeichnendes Symbol." #. type: table -#: guix-git/doc/guix.texi:36427 +#: guix-git/doc/guix.texi:36917 msgid "This is a documentation string for the action. It can be viewed by running:" msgstr "Diese Zeichenkette ist die Dokumentation für die Aktion. Sie können sie sehen, wenn Sie dies ausführen:" #. type: example -#: guix-git/doc/guix.texi:36430 +#: guix-git/doc/guix.texi:36920 #, no-wrap msgid "herd doc @var{service} action @var{action}\n" msgstr "herd doc @var{Dienst} action @var{Aktion}\n" #. type: item -#: guix-git/doc/guix.texi:36432 +#: guix-git/doc/guix.texi:36922 #, no-wrap msgid "procedure" msgstr "procedure" #. type: table -#: guix-git/doc/guix.texi:36436 +#: guix-git/doc/guix.texi:36926 msgid "This should be a gexp that evaluates to a procedure of at least one argument, which is the ``running value'' of the service (@pxref{Slots of services,,, shepherd, The GNU Shepherd Manual})." msgstr "Dies sollte ein G-Ausdruck sein, der zu einer mindestens ein Argument nehmenden Prozedur ausgewertet wird. Das Argument ist der „running“-Wert des Dienstes (siehe @ref{Slots of services,,, shepherd, The GNU Shepherd Manual})." #. type: deftp -#: guix-git/doc/guix.texi:36440 +#: guix-git/doc/guix.texi:36930 msgid "The following example defines an action called @code{say-hello} that kindly greets the user:" msgstr "Das folgende Beispiel definiert eine Aktion namens @code{sag-hallo}, die den Benutzer freundlich begrüßt:" #. type: lisp -#: guix-git/doc/guix.texi:36449 +#: guix-git/doc/guix.texi:36939 #, no-wrap msgid "" "(shepherd-action\n" @@ -67478,12 +68433,12 @@ msgstr "" " #t)))\n" #. type: deftp -#: guix-git/doc/guix.texi:36452 +#: guix-git/doc/guix.texi:36942 msgid "Assuming this action is added to the @code{example} service, then you can do:" msgstr "Wenn wir annehmen, dass wir die Aktion zum Dienst @code{beispiel} hinzufügen, können Sie Folgendes ausführen:" #. type: example -#: guix-git/doc/guix.texi:36458 +#: guix-git/doc/guix.texi:36948 #, no-wrap msgid "" "# herd say-hello example\n" @@ -67497,66 +68452,66 @@ msgstr "" "Hallo, Freund! Argumente: (\"a\" \"b\" \"c\")\n" #. type: deftp -#: guix-git/doc/guix.texi:36463 +#: guix-git/doc/guix.texi:36953 msgid "This, as you can see, is a fairly sophisticated way to say hello. @xref{Service Convenience,,, shepherd, The GNU Shepherd Manual}, for more info on actions." msgstr "Wie Sie sehen können, ist das eine sehr ausgeklügelte Art, Hallo zu sagen. Siehe @ref{Service Convenience,,, shepherd, The GNU Shepherd Manual} für mehr Informationen zu Aktionen." #. type: defvr -#: guix-git/doc/guix.texi:36465 +#: guix-git/doc/guix.texi:36955 #, no-wrap msgid "{Scheme Variable} shepherd-root-service-type" msgstr "{Scheme-Variable} shepherd-root-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36467 +#: guix-git/doc/guix.texi:36957 msgid "The service type for the Shepherd ``root service''---i.e., PID@tie{}1." msgstr "Der Diensttyp für den Shepherd-„Wurzeldienst“@tie{}— also für PID@tie{}1." #. type: defvr -#: guix-git/doc/guix.texi:36472 +#: guix-git/doc/guix.texi:36962 msgid "This is the service type that extensions target when they want to create shepherd services (@pxref{Service Types and Services}, for an example). Each extension must pass a list of @code{}. Its value must be a @code{shepherd-configuration}, as described below." msgstr "Dieser Diensttyp stellt das Ziel für Diensterweiterungen dar, die Shepherd-Dienste erzeugen sollen (siehe @ref{Service Types and Services} für ein Beispiel). Jede Erweiterung muss eine Liste von @code{}-Objekten übergeben. Sein Wert muss eine @code{shepherd-configuration} sein, wie im Folgenden beschrieben." #. type: deftp -#: guix-git/doc/guix.texi:36474 +#: guix-git/doc/guix.texi:36964 #, no-wrap msgid "{Data Type} shepherd-configuration" msgstr "{Datentyp} shepherd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:36476 guix-git/doc/guix.texi:37463 +#: guix-git/doc/guix.texi:36966 guix-git/doc/guix.texi:37959 msgid "This data type represents the Shepherd's configuration." msgstr "Dieser Datentyp repräsentiert die Konfiguration von Shepherd." #. type: item -#: guix-git/doc/guix.texi:36478 guix-git/doc/guix.texi:37465 +#: guix-git/doc/guix.texi:36968 guix-git/doc/guix.texi:37961 #, no-wrap msgid "shepherd (default: @code{shepherd})" msgstr "shepherd (Vorgabe: @code{shepherd})" #. type: table -#: guix-git/doc/guix.texi:36480 guix-git/doc/guix.texi:37467 +#: guix-git/doc/guix.texi:36970 guix-git/doc/guix.texi:37963 msgid "The Shepherd package to use." msgstr "Das zu benutzende Shepherd-Paket." #. type: item -#: guix-git/doc/guix.texi:36481 guix-git/doc/guix.texi:37471 +#: guix-git/doc/guix.texi:36971 guix-git/doc/guix.texi:37967 #, no-wrap msgid "services (default: @code{'()})" msgstr "services (Vorgabe: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:36485 guix-git/doc/guix.texi:37475 +#: guix-git/doc/guix.texi:36975 guix-git/doc/guix.texi:37971 msgid "A list of @code{} to start. You should probably use the service extension mechanism instead (@pxref{Shepherd Services})." msgstr "Eine Liste zu startender Shepherd-Dienste als @code{}-Objekte. Wahrscheinlich sollten Sie stattdessen den Mechanismus zur Diensterweiterung benutzen (siehe @ref{Shepherd Services})." #. type: Plain text -#: guix-git/doc/guix.texi:36490 +#: guix-git/doc/guix.texi:36980 msgid "The following example specifies the Shepherd package for the operating system:" msgstr "Im folgenden Beispiel wird ein anderes Shepherd-Paket für das Betriebssystem festgelegt:" #. type: lisp -#: guix-git/doc/guix.texi:36505 +#: guix-git/doc/guix.texi:36995 #, no-wrap msgid "" "(operating-system\n" @@ -67588,50 +68543,50 @@ msgstr "" " (shepherd my-shepherd))))))\n" #. type: defvr -#: guix-git/doc/guix.texi:36507 +#: guix-git/doc/guix.texi:36997 #, no-wrap msgid "{Scheme Variable} %shepherd-root-service" msgstr "{Scheme-Variable} %shepherd-root-service" #. type: defvr -#: guix-git/doc/guix.texi:36509 +#: guix-git/doc/guix.texi:36999 msgid "This service represents PID@tie{}1." msgstr "Dieser Dienst repräsentiert PID@tie{}1." #. type: cindex -#: guix-git/doc/guix.texi:36513 +#: guix-git/doc/guix.texi:37003 #, no-wrap msgid "complex configurations" msgstr "komplizierte Konfigurationen" #. type: Plain text -#: guix-git/doc/guix.texi:36518 +#: guix-git/doc/guix.texi:37008 msgid "Some programs might have rather complex configuration files or formats, and to make it easier to create Scheme bindings for these configuration files, you can use the utilities defined in the @code{(gnu services configuration)} module." msgstr "Einige Programme haben vielleicht ziemlich komplizierte Konfigurationsdateien oder -formate. Sie können die Hilfsmittel, die in dem Modul @code{(gnu services configuration)} definiert sind, benutzen, um das Erstellen von Scheme-Anbindungen für diese Konfigurationsdateien leichter zu machen." #. type: Plain text -#: guix-git/doc/guix.texi:36526 +#: guix-git/doc/guix.texi:37016 msgid "The main utility is the @code{define-configuration} macro, which you will use to define a Scheme record type (@pxref{Record Overview,,, guile, GNU Guile Reference Manual}). The Scheme record will be serialized to a configuration file by using @dfn{serializers}, which are procedures that take some kind of Scheme value and returns a G-expression (@pxref{G-Expressions}), which should, once serialized to the disk, return a string. More details are listed below." msgstr "Das Werkzeug der Wahl ist das Makro @code{define-configuration}, mit dem Sie einen Scheme-Verbundstyp definieren (siehe @ref{Record Overview,,, guile, Referenzhandbuch zu GNU Guile}). Ein Scheme-Verbund dieses Typs wird zu einer Konfigurationsdatei serialisiert, indem @dfn{Serialisierer} aufgerufen werden. Das sind Prozeduren, die einen Scheme-Wert nehmen und einen G-Ausdruck zurückliefern (siehe @ref{G-Expressions}), der wiederum schließlich, nachdem er auf die Platte serialisiert wurde, eine Zeichenkette liefern sollte. Details folgen." #. type: deffn -#: guix-git/doc/guix.texi:36527 +#: guix-git/doc/guix.texi:37017 #, no-wrap msgid "{Scheme Syntax} define-configuration @var{name} @var{clause1} @" msgstr "{Scheme-Syntax} define-configuration @var{Name} @var{Klausel1} @" #. type: deffn -#: guix-git/doc/guix.texi:36531 +#: guix-git/doc/guix.texi:37021 msgid "@var{clause2} ... Create a record type named @code{@var{name}} that contains the fields found in the clauses." msgstr "@var{Klausel2} ... Einen Verbundstyp mit dem Namen @code{@var{Name}} erstellen, der die in den Klauseln gefundenen Felder enthalten wird." #. type: deffn -#: guix-git/doc/guix.texi:36533 +#: guix-git/doc/guix.texi:37023 msgid "A clause can have one of the following forms:" msgstr "Eine Klausel kann eine der folgenden Formen annehmen:" #. type: example -#: guix-git/doc/guix.texi:36538 +#: guix-git/doc/guix.texi:37028 #, no-wrap msgid "" "(@var{field-name}\n" @@ -67645,7 +68600,7 @@ msgstr "" " \n" #. type: example -#: guix-git/doc/guix.texi:36543 +#: guix-git/doc/guix.texi:37033 #, no-wrap msgid "" "(@var{field-name}\n" @@ -67661,7 +68616,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:36547 +#: guix-git/doc/guix.texi:37037 #, no-wrap msgid "" "(@var{field-name}\n" @@ -67675,7 +68630,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:36552 +#: guix-git/doc/guix.texi:37042 #, no-wrap msgid "" "(@var{field-name}\n" @@ -67689,37 +68644,37 @@ msgstr "" " @var{Serialisierer})\n" #. type: deffn -#: guix-git/doc/guix.texi:36556 +#: guix-git/doc/guix.texi:37046 msgid "@var{field-name} is an identifier that denotes the name of the field in the generated record." msgstr "@var{Feldname} ist ein Bezeichner, der als Name des Feldes im erzeugten Verbund verwendet werden wird." #. type: deffn -#: guix-git/doc/guix.texi:36564 +#: guix-git/doc/guix.texi:37054 msgid "@var{type} is the type of the value corresponding to @var{field-name}; since Guile is untyped, a predicate procedure---@code{@var{type}?}---will be called on the value corresponding to the field to ensure that the value is of the correct type. This means that if say, @var{type} is @code{package}, then a procedure named @code{package?} will be applied on the value to make sure that it is indeed a @code{} object." msgstr "Mit @var{Typ} wird benannt, was als Typ des Werts für @var{Feldname} gelten soll. Weil Guile typenlos ist, muss es eine entsprechend benannte Prädikatprozedur @code{@var{Typ}?} geben, die auf dem Wert für das Feld aufgerufen werden wird und prüft, dass der Wert des Feldes den geltenden Typ hat. Wenn zum Beispiel @code{package} als @var{Typ} angegeben wird, wird eine Prozedur namens @code{package?} auf den für das Feld angegebenen Wert angewandt werden. Sie muss zurückliefern, ob es sich wirklich um ein @code{}-Objekt handelt." #. type: deffn -#: guix-git/doc/guix.texi:36568 +#: guix-git/doc/guix.texi:37058 msgid "@var{default-value} is the default value corresponding to the field; if none is specified, the user is forced to provide a value when creating an object of the record type." msgstr "@var{Vorgabewert} ist der Standardwert für das Feld; wenn keiner festgelegt wird, muss der Benutzer einen Wert angeben, wenn er ein Objekt mit dem Verbundstyp erzeugt." #. type: deffn -#: guix-git/doc/guix.texi:36573 +#: guix-git/doc/guix.texi:37063 msgid "@var{documentation} is a string formatted with Texinfo syntax which should provide a description of what setting this field does." msgstr "@var{Dokumentation} ist eine Zeichenkette, die mit Texinfo-Syntax formatiert ist. Sie sollte eine Beschreibung des Feldes enthalten." #. type: deffn -#: guix-git/doc/guix.texi:36580 +#: guix-git/doc/guix.texi:37070 msgid "@var{serializer} is the name of a procedure which takes two arguments, the first is the name of the field, and the second is the value corresponding to the field. The procedure should return a string or G-expression (@pxref{G-Expressions}) that represents the content that will be serialized to the configuration file. If none is specified, a procedure of the name @code{serialize-@var{type}} will be used." msgstr "@var{Serialisierer} ist der Name einer Prozedur, die zwei Argumente nimmt, erstens den Namen des Feldes und zweitens den Wert für das Feld, und eine Zeichenkette oder einen G-Ausdruck (siehe @ref{G-Expressions}) zurückliefern sollte, welcher Inhalt dafür in die Konfigurationsdatei serialisiert wird. Wenn kein Serialisierer angegeben wird, wird eine Prozedur namens @code{serialize-@var{Typ}} dafür aufgerufen." #. type: deffn -#: guix-git/doc/guix.texi:36582 +#: guix-git/doc/guix.texi:37072 msgid "A simple serializer procedure could look like this:" msgstr "Eine einfache Serialisiererprozedur könnte so aussehen:" #. type: lisp -#: guix-git/doc/guix.texi:36587 +#: guix-git/doc/guix.texi:37077 #, no-wrap msgid "" "(define (serialize-boolean field-name value)\n" @@ -67731,12 +68686,12 @@ msgstr "" " #~(string-append #$field-name #$value)))\n" #. type: deffn -#: guix-git/doc/guix.texi:36598 +#: guix-git/doc/guix.texi:37088 msgid "In some cases multiple different configuration records might be defined in the same file, but their serializers for the same type might have to be different, because they have different configuration formats. For example, the @code{serialize-boolean} procedure for the Getmail service would have to be different for the one for the Transmission service. To make it easier to deal with this situation, one can specify a serializer prefix by using the @code{prefix} literal in the @code{define-configuration} form. This means that one doesn't have to manually specify a custom @var{serializer} for every field." msgstr "Es kommt vor, dass in derselben Datei mehrere Arten von Konfigurationsverbund definiert werden, deren Serialisierer sich für denselben Typ unterscheiden, weil ihre Konfigurationen verschieden formatiert werden müssen. Zum Beispiel braucht es eine andere @code{serialize-boolean}-Prozedur für einen Getmail-Dienst als für einen Transmission-Dienst. Um leichter mit so einer Situation fertig zu werden, können Sie ein Serialisierer-Präfix nach dem Literal @code{prefix} in der @code{define-configuration}-Form angeben. Dann müssen Sie den eigenen @var{Serialisierer} @emph{nicht} für jedes Feld angeben." #. type: lisp -#: guix-git/doc/guix.texi:36602 +#: guix-git/doc/guix.texi:37092 #, no-wrap msgid "" "(define (foo-serialize-string field-name value)\n" @@ -67748,7 +68703,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36605 +#: guix-git/doc/guix.texi:37095 #, no-wrap msgid "" "(define (bar-serialize-string field-name value)\n" @@ -67760,7 +68715,7 @@ msgstr "" " \n" #. type: lisp -#: guix-git/doc/guix.texi:36611 +#: guix-git/doc/guix.texi:37101 #, no-wrap msgid "" "(define-configuration foo-configuration\n" @@ -67778,7 +68733,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36617 +#: guix-git/doc/guix.texi:37107 #, no-wrap msgid "" "(define-configuration bar-configuration\n" @@ -67794,12 +68749,12 @@ msgstr "" " (prefix bar-))\n" #. type: deffn -#: guix-git/doc/guix.texi:36623 +#: guix-git/doc/guix.texi:37113 msgid "However, in some cases you might not want to serialize any of the values of the record, to do this, you can use the @code{no-serialization} literal. There is also the @code{define-configuration/no-serialization} macro which is a shorthand of this." msgstr "In manchen Fällen wollen Sie vielleicht überhaupt gar keinen Wert aus dem Verbund serialisieren. Dazu geben Sie das Literal @code{no-serialization} an. Auch können Sie das Makro @code{define-configuration/no-serialization} benutzen, was eine Kurzschreibweise dafür ist." #. type: lisp -#: guix-git/doc/guix.texi:36631 +#: guix-git/doc/guix.texi:37121 #, no-wrap msgid "" ";; Nothing will be serialized to disk.\n" @@ -67819,7 +68774,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36637 +#: guix-git/doc/guix.texi:37127 #, no-wrap msgid "" ";; The same thing as above.\n" @@ -67835,23 +68790,23 @@ msgstr "" " \"Some documentation.\"))\n" #. type: deffn -#: guix-git/doc/guix.texi:36640 +#: guix-git/doc/guix.texi:37130 #, no-wrap msgid "{Scheme Syntax} define-maybe @var{type}" msgstr "{Scheme-Syntax} define-maybe @var{Typ}" #. type: deffn -#: guix-git/doc/guix.texi:36645 +#: guix-git/doc/guix.texi:37135 msgid "Sometimes a field should not be serialized if the user doesn’t specify a value. To achieve this, you can use the @code{define-maybe} macro to define a ``maybe type''; if the value of a maybe type is set to the @code{disabled}, it will not be serialized." msgstr "Manchmal soll ein Feld dann @emph{nicht} serialisiert werden, wenn der Benutzer keinen Wert dafür angibt. Um das zu erreichen, können Sie das Makro @code{define-maybe} benutzen, um einen „maybe type“, zu Deutsch „Vielleicht-Typ“, zu definieren. Wenn der Wert eines Vielleicht-Typs auf @code{disabled} gesetzt ist, wird er nicht serialisiert." #. type: deffn -#: guix-git/doc/guix.texi:36652 +#: guix-git/doc/guix.texi:37142 msgid "When defining a ``maybe type'', the corresponding serializer for the regular type will be used by default. For example, a field of type @code{maybe-string} will be serialized using the @code{serialize-string} procedure by default, you can of course change this by specifying a custom serializer procedure. Likewise, the type of the value would have to be a string, unless it is set to the @code{disabled} symbol." msgstr "Beim Definieren eines „Vielleicht-Typs“ ist die Voreinstellung, den dem Grundtyp entsprechenden Serialisierer zu benutzen. Zum Beispiel wird ein Feld vom Typ @code{maybe-string} nach Voreinstellung mit der Prozedur @code{serialize-string} serialisiert. Natürlich können Sie stattdessen eine eigene Serialisiererprozedur festlegen. Ebenso muss der Wert entweder den Typ „string“ (also Zeichenkette) aufweisen oder das Symbol @code{disabled} sein." #. type: lisp -#: guix-git/doc/guix.texi:36655 +#: guix-git/doc/guix.texi:37145 #, no-wrap msgid "" "(define-maybe string)\n" @@ -67861,7 +68816,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36658 +#: guix-git/doc/guix.texi:37148 #, no-wrap msgid "" "(define (serialize-string field-name value)\n" @@ -67873,7 +68828,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36665 +#: guix-git/doc/guix.texi:37155 #, no-wrap msgid "" "(define-configuration baz-configuration\n" @@ -67892,12 +68847,12 @@ msgstr "" " \"The name of this module.\"))\n" #. type: deffn -#: guix-git/doc/guix.texi:36669 +#: guix-git/doc/guix.texi:37159 msgid "Like with @code{define-configuration}, one can set a prefix for the serializer name by using the @code{prefix} literal." msgstr "Wie bei @code{define-configuration} kann man ein Präfix für Serialisierernamen als Literal mit @code{prefix} angeben." #. type: lisp -#: guix-git/doc/guix.texi:36673 +#: guix-git/doc/guix.texi:37163 #, no-wrap msgid "" "(define-maybe integer\n" @@ -67909,7 +68864,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36676 +#: guix-git/doc/guix.texi:37166 #, no-wrap msgid "" "(define (baz-serialize-interger field-name value)\n" @@ -67919,12 +68874,12 @@ msgstr "" " …)\n" #. type: deffn -#: guix-git/doc/guix.texi:36683 +#: guix-git/doc/guix.texi:37173 msgid "There is also the @code{no-serialization} literal, which when set means that no serializer will be defined for the ``maybe type'', regardless of its value is @code{disabled} or not. @code{define-maybe/no-serialization} is a shorthand for specifying the @code{no-serialization} literal." msgstr "Auch gibt es das Literal @code{no-serialization}. Wenn es angegeben wird, bedeutet das, es wird kein Serialisierer für den Vielleicht-Typ eingesetzt, ganz gleich ob als Wert @code{disabled} gesetzt wurde oder nicht. @code{define-maybe/no-serialization} ist eine Kurzschreibweise, um das Literal @code{no-serialization} festzulegen." #. type: lisp -#: guix-git/doc/guix.texi:36686 +#: guix-git/doc/guix.texi:37176 #, no-wrap msgid "" "(define-maybe/no-serialization symbol)\n" @@ -67934,7 +68889,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36691 +#: guix-git/doc/guix.texi:37181 #, no-wrap msgid "" "(define-configuration/no-serialization test-configuration\n" @@ -67948,66 +68903,66 @@ msgstr "" " \"Docstring.\"))\n" #. type: deffn -#: guix-git/doc/guix.texi:36694 +#: guix-git/doc/guix.texi:37184 #, no-wrap msgid "{Scheme Procedure} serialize-configuration @var{configuration} @" msgstr "{Scheme-Prozedur} serialize-configuration @var{Konfiguration} @" #. type: deffn -#: guix-git/doc/guix.texi:36700 +#: guix-git/doc/guix.texi:37190 msgid "@var{fields} Return a G-expression that contains the values corresponding to the @var{fields} of @var{configuration}, a record that has been generated by @code{define-configuration}. The G-expression can then be serialized to disk by using something like @code{mixed-text-file}." msgstr "@var{Felder} Liefert einen G-Ausdruck mit den Werten zu jedem der @var{Felder} im Verbundsobjekt @var{Konfiguration}, das mit @code{define-configuration} erzeugt wurde. Der G-Ausdruck kann mit z.B.@: @code{mixed-text-file} auf die Platte serialisiert werden." #. type: deffn -#: guix-git/doc/guix.texi:36702 +#: guix-git/doc/guix.texi:37192 #, no-wrap msgid "{Scheme Procedure} validate-configuration @var{configuration}" msgstr "{Scheme-Prozedur} validate-configuration @var{Konfiguration}" #. type: deffn -#: guix-git/doc/guix.texi:36706 +#: guix-git/doc/guix.texi:37196 msgid "@var{fields} Type-check @var{fields}, a list of field names of @var{configuration}, a configuration record created by @code{define-configuration}." msgstr "@var{Felder} Die Typen der @var{Felder} prüfen. @var{Felder} muss eine Liste der Namen der Felder der @var{Konfiguration} sein. @var{Konfiguration} muss ein Konfigurationsverbundsobjekt sein, das mit @code{define-configuration} erzeugt wurde." #. type: deffn -#: guix-git/doc/guix.texi:36708 +#: guix-git/doc/guix.texi:37198 #, no-wrap msgid "{Scheme Procedure} empty-serializer @var{field-name} @var{value}" msgstr "{Scheme-Prozedur} empty-serializer @var{Feldname} @var{Wert}" #. type: deffn -#: guix-git/doc/guix.texi:36711 +#: guix-git/doc/guix.texi:37201 msgid "A serializer that just returns an empty string. The @code{serialize-package} procedure is an alias for this." msgstr "Ein Serialisierer, der nur die leere Zeichenkette zurückliefert. Die Prozedur @code{serialize-package} ist als anderer Name dafür vordefiniert." #. type: Plain text -#: guix-git/doc/guix.texi:36716 +#: guix-git/doc/guix.texi:37206 msgid "Once you have defined a configuration record, you will most likely also want to document it so that other people know to use it. To help with that, there are two procedures, both of which are documented below." msgstr "Nachdem Sie einen Konfigurationsverbundstyp definiert haben, haben Sie bestimmt auch die Absicht, die Dokumentation dafür zu schreiben, um anderen Leuten zu erklären, wie man ihn benutzt. Dabei helfen Ihnen die folgenden zwei Prozeduren, die hier dokumentiert sind." #. type: deffn -#: guix-git/doc/guix.texi:36717 +#: guix-git/doc/guix.texi:37207 #, no-wrap msgid "{Scheme Procedure} generate-documentation @var{documentation} @" msgstr "{Scheme-Prozedur} generate-documentation @var{Dokumentation} @" #. type: deffn -#: guix-git/doc/guix.texi:36724 +#: guix-git/doc/guix.texi:37214 msgid "@var{documentation-name} Generate a Texinfo fragment from the docstrings in @var{documentation}, a list of @code{(@var{label} @var{fields} @var{sub-documentation} ...)}. @var{label} should be a symbol and should be the name of the configuration record. @var{fields} should be a list of all the fields available for the configuration record." msgstr "@var{Dokumentationsname} Ein Stück Texinfo aus den Docstrings in der @var{Dokumentation} erzeugen. Als @var{Dokumentation} geben Sie eine Liste aus @code{(@var{Bezeichnung} @var{Felder} @var{Unterdokumentation} ...)} an. @var{Bezeichnung} ist ein Symbol und gibt den Namen des Konfigurationsverbunds an. @var{Felder} ist eine Liste aller Felder des Konfigurationsverbunds." #. type: deffn -#: guix-git/doc/guix.texi:36729 +#: guix-git/doc/guix.texi:37219 msgid "@var{sub-documentation} is a @code{(@var{field-name} @var{configuration-name})} tuple. @var{field-name} is the name of the field which takes another configuration record as its value, and @var{configuration-name} is the name of that configuration record." msgstr "@var{Unterdokumentation} ist ein Tupel @code{(@var{Feldname} @var{Konfigurationsname})}. @var{Feldname} ist der Name des Feldes, das einen anderen Konfigurationsverbund als Wert hat. @var{Konfigurationsname} ist der Name dessen Konfigurationsverbundstyps." #. type: deffn -#: guix-git/doc/guix.texi:36736 +#: guix-git/doc/guix.texi:37226 msgid "@var{sub-documentation} is only needed if there are nested configuration records. For example, the @code{getmail-configuration} record (@pxref{Mail Services}) accepts a @code{getmail-configuration-file} record in one of its @code{rcfile} field, therefore documentation for @code{getmail-configuration-file} is nested in @code{getmail-configuration}." msgstr "Eine @var{Unterdokumentation} müssen Sie nur angeben, wenn es verschachtelte Verbundstypen gibt. Zum Beispiel braucht ein Verbundsobjekt @code{getmail-configuration} (siehe @ref{Mail Services}) ein Verbundsobjekt @code{getmail-configuration-file} in seinem @code{rcfile}-Feld, daher ist die Dokumentation für @code{getmail-configuration-file} verschachtelt in der von @code{getmail-configuration}." #. type: lisp -#: guix-git/doc/guix.texi:36743 +#: guix-git/doc/guix.texi:37233 #, no-wrap msgid "" "(generate-documentation\n" @@ -68023,33 +68978,33 @@ msgstr "" " 'getmail-configuration)\n" #. type: deffn -#: guix-git/doc/guix.texi:36747 +#: guix-git/doc/guix.texi:37237 msgid "@var{documentation-name} should be a symbol and should be the name of the configuration record." msgstr "Für @var{Dokumentationsname} geben Sie ein Symbol mit dem Namen des Konfigurationsverbundstyps an." #. type: deffn -#: guix-git/doc/guix.texi:36750 +#: guix-git/doc/guix.texi:37240 #, no-wrap msgid "{Scheme Procedure} configuration->documentation" msgstr "{Scheme-Prozedur} configuration->documentation" #. type: deffn -#: guix-git/doc/guix.texi:36757 +#: guix-git/doc/guix.texi:37247 msgid "@var{configuration-symbol} Take @var{configuration-symbol}, the symbol corresponding to the name used when defining a configuration record with @code{define-configuration}, and print the Texinfo documentation of its fields. This is useful if there aren’t any nested configuration records since it only prints the documentation for the top-level fields." msgstr "@var{Konfigurationssymbol} Für @var{Konfigurationssymbol}, ein Symbol mit dem Namen, der beim Definieren des Konfigurationsverbundstyp mittels @code{define-configuration} benutzt wurde, gibt diese Prozedur die Texinfo-Dokumentation seiner Felder aus. Wenn es keine verschachtelten Konfigurationsfelder gibt, bietet sich diese Prozedur an, mit der Sie ausschließlich die Dokumentation der obersten Ebene von Feldern ausgegeben bekommen." #. type: Plain text -#: guix-git/doc/guix.texi:36765 +#: guix-git/doc/guix.texi:37255 msgid "As of right now, there is no automated way to generate documentation for configuration records and put them in the manual. Instead, every time you make a change to the docstrings of a configuration record, you have to manually call @code{generate-documentation} or @code{configuration->documentation}, and paste the output into the @file{doc/guix.texi} file." msgstr "Gegenwärtig gibt es kein automatisiertes Verfahren, um die Dokumentation zu Konfigurationsverbundstypen zu erzeugen und gleich ins Handbuch einzutragen. Stattdessen würden Sie jedes Mal, wenn Sie etwas an den Docstrings eines Konfigurationsverbundstyps ändern, aufs Neue @code{generate-documentation} oder @code{configuration->documentation} von Hand aufrufen und die Ausgabe in die Datei @file{doc/guix.texi} einfügen." #. type: Plain text -#: guix-git/doc/guix.texi:36769 +#: guix-git/doc/guix.texi:37259 msgid "Below is an example of a record type created using @code{define-configuration} and friends." msgstr "Nun folgt ein Beispiel, wo ein Verbundstyp mit @code{define-configuration} usw.@: erzeugt wird." #. type: lisp -#: guix-git/doc/guix.texi:36776 +#: guix-git/doc/guix.texi:37266 #, no-wrap msgid "" "(use-modules (gnu services)\n" @@ -68067,7 +69022,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36784 +#: guix-git/doc/guix.texi:37274 #, no-wrap msgid "" ";; Turn field names, which are Scheme symbols into strings\n" @@ -68089,7 +69044,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36787 +#: guix-git/doc/guix.texi:37277 #, no-wrap msgid "" "(define (serialize-string field-name value)\n" @@ -68101,7 +69056,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36790 +#: guix-git/doc/guix.texi:37280 #, no-wrap msgid "" "(define (serialize-integer field-name value)\n" @@ -68113,7 +69068,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36793 +#: guix-git/doc/guix.texi:37283 #, no-wrap msgid "" "(define (serialize-boolean field-name value)\n" @@ -68125,7 +69080,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36796 +#: guix-git/doc/guix.texi:37286 #, no-wrap msgid "" "(define (serialize-contact-name field-name value)\n" @@ -68137,7 +69092,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36799 +#: guix-git/doc/guix.texi:37289 #, no-wrap msgid "" "(define (list-of-contact-configurations? lst)\n" @@ -68149,7 +69104,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36804 +#: guix-git/doc/guix.texi:37294 #, no-wrap msgid "" "(define (serialize-list-of-contact-configurations field-name value)\n" @@ -68165,7 +69120,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36811 +#: guix-git/doc/guix.texi:37301 #, no-wrap msgid "" "(define (serialize-contacts-list-configuration configuration)\n" @@ -68185,7 +69140,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36814 +#: guix-git/doc/guix.texi:37304 #, no-wrap msgid "" "(define-maybe integer)\n" @@ -68197,7 +69152,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36829 +#: guix-git/doc/guix.texi:37319 #, no-wrap msgid "" "(define-configuration contact-configuration\n" @@ -68233,7 +69188,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36841 +#: guix-git/doc/guix.texi:37331 #, no-wrap msgid "" "(define-configuration contacts-list-configuration\n" @@ -68261,12 +69216,12 @@ msgstr "" "information about all your contacts.\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:36844 +#: guix-git/doc/guix.texi:37334 msgid "A contacts list configuration could then be created like this:" msgstr "Eine Kontaktelistekonfiguration könnte dann wie folgt erzeugt werden:" #. type: lisp -#: guix-git/doc/guix.texi:36860 +#: guix-git/doc/guix.texi:37350 #, no-wrap msgid "" "(define my-contacts\n" @@ -68300,12 +69255,12 @@ msgstr "" " (married? #t))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:36864 +#: guix-git/doc/guix.texi:37354 msgid "After serializing the configuration to disk, the resulting file would look like this:" msgstr "Wenn Sie diese Konfiguration auf die Platte serialisierten, ergäbe sich so eine Datei:" #. type: example -#: guix-git/doc/guix.texi:36869 +#: guix-git/doc/guix.texi:37359 #, no-wrap msgid "" "[owner]\n" @@ -68319,7 +69274,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:36874 +#: guix-git/doc/guix.texi:37364 #, no-wrap msgid "" "[Bob]\n" @@ -68335,7 +69290,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:36878 +#: guix-git/doc/guix.texi:37368 #, no-wrap msgid "" "[Charlie]\n" @@ -68347,202 +69302,202 @@ msgstr "" "is-married = true\n" #. type: cindex -#: guix-git/doc/guix.texi:36883 +#: guix-git/doc/guix.texi:37373 #, no-wrap msgid "home configuration" msgstr "Persönliche Home-Umgebung konfigurieren" #. type: Plain text -#: guix-git/doc/guix.texi:36895 +#: guix-git/doc/guix.texi:37385 msgid "Guix supports declarative configuration of @dfn{home environments} by utilizing the configuration mechanism described in the previous chapter (@pxref{Defining Services}), but for user's dotfiles and packages. It works both on Guix System and foreign distros and allows users to declare all the packages and services that should be installed and configured for the user. Once a user has written a file containing @code{home-environment} record, such a configuration can be @dfn{instantiated} by an unprivileged user with the @command{guix home} command (@pxref{Invoking guix home})." msgstr "Die Umgebung in Ihrem Persönlichen Verzeichnis können Sie mit Guix einrichten, über eine deklarative Konfiguration dieser @dfn{Persönlichen Umgebung} in einem @code{home-environment}-Objekt. Wir verwenden die Konfigurationsmechanismen, die im vorangehenden Kapitel beschrieben wurden (siehe @ref{Defining Services}), wenden diese aber auf die Konfigurationsdateien („Dotfiles“) und Pakete des Benutzers an. Das geht sowohl auf Guix System als auch auf Fremddistributionen. Jeder Benutzer kann so alle Pakete und Dienste, die für ihn installiert und eingerichtet sein sollen, deklarieren. Sobald man eine Datei mit einem @code{home-environment}-Verbundsobjekt hat, kann man diese Konfiguration @dfn{instanziieren} lassen, ohne besondere Berechtigungen auf dem System zu haben. Dazu rufen Sie den Befehl @command{guix home} auf (siehe @ref{Invoking guix home})." #. type: Plain text -#: guix-git/doc/guix.texi:36912 +#: guix-git/doc/guix.texi:37402 msgid "The user's home environment usually consists of three basic parts: software, configuration, and state. Software in mainstream distros are usually installed system-wide, but with GNU Guix most software packages can be installed on a per-user basis without needing root privileges, and are thus considered part of the user’s @dfn{home environment}. Packages on their own not very useful in many cases, because often they require some additional configuration, usually config files that reside in @env{XDG_CONFIG_HOME} (@file{~/.config} by default) or other directories. Everything else can be considered state, like media files, application databases, and logs." msgstr "Die Persönliche Umgebung eines Benutzers setzt sich für gewöhnlich aus drei Grundbestandteilen zusammen: Software, Konfiguration und Zustand. In den gängigsten Distributionen wird Software normalerweise systemweit für alle Nutzer installiert, dagegen können die meisten Software-Pakete bei GNU@tie{}Guix durch jeden Benutzer selbst installiert werden, ohne Administratorrechte vorauszusetzen. Seine Software ist daher nur ein weiterer Teil der Persönlichen Umgebung des Benutzers. Aber Pakete alleine machen nicht glücklich, oft müssen sie erst noch konfiguriert werden, in der Regel mit Konfigurationsdateien in @env{XDG_CONFIG_HOME} (nach Voreinstellung bedeutet das in @file{~/.config}) oder anderen Verzeichnissen. Übrig sind verschiedene Arten von Zustand, etwa Mediendateien, Anwendungsdatenbanken und Protokolldateien." #. type: Plain text -#: guix-git/doc/guix.texi:36915 +#: guix-git/doc/guix.texi:37405 msgid "Using Guix for managing home environments provides a number of advantages:" msgstr "Persönliche Umgebungen mit Guix zu verwalten bringt einige Vorteile:" #. type: item -#: guix-git/doc/guix.texi:36918 +#: guix-git/doc/guix.texi:37408 #, no-wrap msgid "All software can be configured in one language (Guile Scheme)," msgstr "Alle Software kann in derselben Sprache konfiguriert werden" #. type: itemize -#: guix-git/doc/guix.texi:36921 +#: guix-git/doc/guix.texi:37411 msgid "this gives users the ability to share values between configurations of different programs." msgstr "(Guile Scheme), wodurch Nutzer in die Lage versetzt werden, dieselben Werte in die Konfigurationen verschiedener Programme einzusetzen." #. type: item -#: guix-git/doc/guix.texi:36922 +#: guix-git/doc/guix.texi:37412 #, no-wrap msgid "A well-defined home environment is self-contained and can be" msgstr "Eine wohldefinierte Persönliche Umgebung ist eigenständig" #. type: itemize -#: guix-git/doc/guix.texi:36925 +#: guix-git/doc/guix.texi:37415 msgid "created in a declarative and reproducible way---there is no need to grab external binaries or manually edit some configuration file." msgstr "und kann deklarativ und reproduzierbar verfasst werden. Binärdateien von anderswo herunterzuladen oder eine Konfigurationsdatei von Hand zu bearbeiten ist unnötig." #. type: item -#: guix-git/doc/guix.texi:36926 +#: guix-git/doc/guix.texi:37416 #, no-wrap msgid "After every @command{guix home reconfigure} invocation, a new home" msgstr "Nach jedem Aufruf von @command{guix home reconfigure} wird eine neue" #. type: itemize -#: guix-git/doc/guix.texi:36930 +#: guix-git/doc/guix.texi:37420 msgid "environment generation will be created. This means that users can rollback to a previous home environment generation so they don’t have to worry about breaking their configuration." msgstr "Generation der Persönlichen Umgebung erzeugt. Dadurch können Benutzer zu einer vorherigen Generation der Persönlichen Umgebung zurückwechseln, d.h.@: sie müssen keine Sorgen haben, dass nach einer Änderung ihre Konfiguration nicht mehr funktioniert." #. type: item -#: guix-git/doc/guix.texi:36931 +#: guix-git/doc/guix.texi:37421 #, no-wrap msgid "It is possible to manage stateful data with Guix Home, this" msgstr "Sie können sogar zustandsbehaftete Daten über Guix Home" #. type: itemize -#: guix-git/doc/guix.texi:36936 +#: guix-git/doc/guix.texi:37426 msgid "includes the ability to automatically clone Git repositories on the initial setup of the machine, and periodically running commands like @command{rsync} to sync data with another host. This functionality is still in an experimental stage, though." msgstr "verwalten. Dazu gehört etwa, Git-Repositorys automatisch zu klonen, wenn Sie die Maschine zum ersten Mal einrichten, oder auch Befehle wie @command{rsync} regelmäßig zu starten, um die Daten mit einem anderen Rechner abzugleichen. Diese Funktionalität befindet sich jedoch noch auf einer experimentellen Entwicklungsstufe." #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:36946 -#: guix-git/doc/guix.texi:36947 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37436 +#: guix-git/doc/guix.texi:37437 #, no-wrap msgid "Declaring the Home Environment" msgstr "Deklaration der Persönlichen Umgebung" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 msgid "Customizing your Home." msgstr "Die Persönliche Umgebung einrichten." #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:37014 -#: guix-git/doc/guix.texi:37015 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37504 +#: guix-git/doc/guix.texi:37505 #, no-wrap msgid "Configuring the Shell" msgstr "Shell-Konfiguration" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 msgid "Enabling home environment." msgstr "Die Persönliche Umgebung aktivieren." #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:37061 -#: guix-git/doc/guix.texi:37062 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37551 +#: guix-git/doc/guix.texi:37552 #, no-wrap msgid "Home Services" msgstr "Persönliche Dienste" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 msgid "Specifying home services." msgstr "Dienste der Persönlichen Umgebung festlegen." #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 msgid "Instantiating a home configuration." msgstr "Die Konfiguration einer Persönlichen Umgebung instanziieren." #. type: Plain text -#: guix-git/doc/guix.texi:36953 +#: guix-git/doc/guix.texi:37443 msgid "The home environment is configured by providing a @code{home-environment} declaration in a file that can be passed to the @command{guix home} command (@pxref{Invoking guix home}). The easiest way to get started is by generating an initial configuration with @command{guix home import}:" msgstr "Die Persönliche Umgebung können Sie konfigurieren, indem Sie eine @code{home-environment}-Deklaration in einer Datei speichern, die Sie dem Befehl @command{guix home} übergeben (siehe @ref{Invoking guix home}). Der einfachste Einstieg gelingt, indem Sie mit @command{guix home import} eine anfängliche Konfiguration erzeugen lassen:" #. type: example -#: guix-git/doc/guix.texi:36956 +#: guix-git/doc/guix.texi:37446 #, no-wrap msgid "guix home import ~/src/guix-config\n" msgstr "guix home import ~/src/guix-config\n" #. type: Plain text -#: guix-git/doc/guix.texi:36964 +#: guix-git/doc/guix.texi:37454 msgid "The @command{guix home import} command reads some of the ``dot files'' such as @file{~/.bashrc} found in your home directory and copies them to the given directory, @file{~/src/guix-config} in this case; it also reads the contents of your profile, @file{~/.guix-profile}, and, based on that, it populates @file{~/src/guix-config/home-configuration.scm} with a Home configuration that resembles your current configuration." msgstr "Durch den Befehl @command{guix home import} werden einige dieser „Dotfiles“ wie @file{~/.bashrc} aus Ihrem Persönlichen Verzeichnis gelesen und in das angegebene Verzeichnis kopiert. In diesem Beispiel ist das @file{~/src/guix-config}. Auch der Inhalt Ihres Profils in @file{~/.guix-profile} wird gelesen und anhand davon wird eine Konfiguration Ihrer Persönlichen Umgebung in @file{~/src/guix-config/home-configuration.scm} erzeugt, die Ihrer momentanen Konfiguration nachempfunden ist." #. type: Plain text -#: guix-git/doc/guix.texi:36970 +#: guix-git/doc/guix.texi:37460 msgid "A simple setup can include Bash and a custom text configuration, like in the example below. Don't be afraid to declare home environment parts, which overlaps with your current dot files: before installing any configuration files, Guix Home will back up existing config files to a separate place in the home directory." msgstr "Zu einer einfachen Konfiguration kann z.B.@: Bash gehören zusammen mit einer eigenen Textdatei wie im folgenden Beispiel. Zögern Sie nicht damit, in der Persönlichen Umgebung etwas zu deklarieren, was mit Ihren bestehenden Dotfiles überlappt, denn bevor irgendeine Konfigurationsdatei installiert wird, legt Guix Home eine Sicherungskopie an einer anderen Stelle im Persönlichen Verzeichnis ab." #. type: quotation -#: guix-git/doc/guix.texi:36976 +#: guix-git/doc/guix.texi:37466 msgid "It is highly recommended that you manage your shell or shells with Guix Home, because it will make sure that all the necessary scripts are sourced by the shell configuration file. Otherwise you will need to do it manually. (@pxref{Configuring the Shell})." msgstr "Wir empfehlen sehr, Ihre Shell oder Shells mit Guix Home zu verwalten, weil dadurch sicherlich alle vorausgesetzten Skripte über @code{source}-Befehle in die Shell-Konfiguration eingebunden werden. Andernfalls müssten Sie sie von Hand einbinden (siehe @ref{Configuring the Shell})." #. type: findex -#: guix-git/doc/guix.texi:36978 +#: guix-git/doc/guix.texi:37468 #, no-wrap msgid "home-environment" msgstr "home-environment" #. type: include -#: guix-git/doc/guix.texi:36980 +#: guix-git/doc/guix.texi:37470 #, no-wrap msgid "he-config-bare-bones.scm" msgstr "he-config-bare-bones.scm" #. type: Plain text -#: guix-git/doc/guix.texi:36987 +#: guix-git/doc/guix.texi:37477 msgid "The @code{packages} field should be self-explanatory, it will install the list of packages into the user's profile. The most important field is @code{services}, it contains a list of @dfn{home services}, which are the basic building blocks of a home environment." msgstr "Was das @code{packages}-Feld tut, sollte klar sein: Dadurch werden die aufgelisteten Pakete in das Profil des Benutzers installiert. Das wichtigste Feld ist @code{services}, was eine Liste @dfn{Persönlicher Dienste} zu enthalten hat. Sie stellen die Grundbausteine einer Persönlichen Umgebung dar." #. type: Plain text -#: guix-git/doc/guix.texi:36995 +#: guix-git/doc/guix.texi:37485 msgid "There is no daemon (at least not necessarily) related to a home service, a home service is just an element that is used to declare part of home environment and extend other parts of it. The extension mechanism discussed in the previous chapter (@pxref{Defining Services}) should not be confused with Shepherd services (@pxref{Shepherd Services}). Using this extension mechanism and some Scheme code that glues things together gives the user the freedom to declare their own, very custom, home environments." msgstr "Für Persönliche Dienste gibt es keinen Daemon (zumindest nicht zwingend). Ein Persönlicher Dienst stellt nur ein Element dar, um einen Aspekt einer Persönlichen Umgebung zu deklarieren bzw.@: andere Aspekte zu erweitern. Dieser im vorherigen Kapitel erörterte Erweiterungsmechanismus (siehe @ref{Defining Services}) sollte nicht verwechselt werden mit Shepherd-Diensten (siehe @ref{Shepherd Services}). Mit dem Erweiterungsmechanismus und etwas Scheme-Code, um die Dinge zusammenzubringen, haben Sie als Nutzer die Freiheit, eigens auf Sie abgestimmte Persönliche Umgebungen zu entwerfen." #. type: Plain text -#: guix-git/doc/guix.texi:36998 +#: guix-git/doc/guix.texi:37488 msgid "Once you have a configuration file that suits your needs, you can reconfigure your home by running:" msgstr "Wenn Ihre Konfigurationsdatei so weit fertig ist und Ihrem Bedarf entspricht, wird es Zeit, Ihre Persönliche Umgebung zu rekonfigurieren, indem Sie diesen Befehl geben:" #. type: example -#: guix-git/doc/guix.texi:37001 +#: guix-git/doc/guix.texi:37491 #, no-wrap msgid "guix home reconfigure config.scm\n" msgstr "guix home reconfigure config.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:37005 +#: guix-git/doc/guix.texi:37495 msgid "This ``builds'' your home environment and creates @file{~/.guix-home} pointing to it. Voilà!" msgstr "Dadurch wird Ihre Persönliche Umgebung @dfn{erstellt} und von @file{~/.guix-home} darauf verwiesen. Geschafft!" #. type: quotation -#: guix-git/doc/guix.texi:37012 +#: guix-git/doc/guix.texi:37502 msgid "Make sure the operating system has elogind, systemd, or a similar mechanism to create the XDG run-time directory and has the @env{XDG_RUNTIME_DIR} variable set. Failing that, the @file{on-first-login} script will not execute anything, and processes like user Shepherd and its descendants will not start." msgstr "Achten Sie darauf, dass Ihr Betriebssystem mit elogind, systemd oder einem entsprechenden Mechanismus das XDG-Laufzeitverzeichnis anlegt und die Variable @env{XDG_RUNTIME_DIR} festlegt. Wenn nicht, kann das Skript @file{on-first-login} nichts starten und Prozesse wie der benutzereigene Shepherd und alles, was davon abhängt, fahren nicht hoch." #. type: Plain text -#: guix-git/doc/guix.texi:37018 +#: guix-git/doc/guix.texi:37508 msgid "This section is safe to skip if your shell or shells are managed by Guix Home. Otherwise, read it carefully." msgstr "Sie können den folgenden Abschnitt problemlos überspringen, wenn Ihre Shell oder Shells mit Guix Home verwaltet werden. Wenn nicht, lesen Sie ihn bitte genau." #. type: Plain text -#: guix-git/doc/guix.texi:37025 +#: guix-git/doc/guix.texi:37515 msgid "There are a few scripts that must be evaluated by a login shell to activate the home environment. The shell startup files only read by login shells often have @code{profile} suffix. For more information about login shells see @ref{Invoking Bash,,, bash, The GNU Bash Reference Manual} and see @ref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}." msgstr "Es gibt ein paar Skripte, die eine Login-Shell auswerten muss, damit die Persönliche Umgebung aktiv wird. Die Dateien, die nur beim Starten von Login-Shells geladen werden, tragen am Ende das Suffix @code{profile}. Mehr Informationen über Login-Shells finden Sie in dem Referenzhandbuch von GNU@tie{}Bash @ref{Invoking Bash,,, bash, hier} und @ref{Bash Startup Files,,, bash, hier}." #. type: Plain text -#: guix-git/doc/guix.texi:37032 +#: guix-git/doc/guix.texi:37522 msgid "The first script that needs to be sourced is @file{setup-environment}, which sets all the necessary environment variables (including variables declared by the user) and the second one is @file{on-first-login}, which starts Shepherd for the current user and performs actions declared by other home services that extends @code{home-run-on-first-login-service-type}." msgstr "Als Erstes wird @file{setup-environment} gesourcet, wodurch alle nötigen Umgebungsvariablen festgelegt werden (einschließlich vom Benutzer festgelegter Variabler) und als Zweites wird mit @file{on-first-login} Shepherd für den angemeldeten Benutzer gestartet und die über andere Persönliche Dienste deklarierten Aktionen durchgeführt, wenn die Dienste @code{home-run-on-first-login-service-type} erweitern." #. type: Plain text -#: guix-git/doc/guix.texi:37035 +#: guix-git/doc/guix.texi:37525 msgid "Guix Home will always create @file{~/.profile}, which contains the following lines:" msgstr "Guix Home wird immer @file{~/.profile} mit den folgenden Zeilen darin anlegen:" #. type: example -#: guix-git/doc/guix.texi:37040 +#: guix-git/doc/guix.texi:37530 #, no-wrap msgid "" "HOME_ENVIRONMENT=$HOME/.guix-home\n" @@ -68554,107 +69509,107 @@ msgstr "" "$HOME_ENVIRONMENT/on-first-login\n" #. type: Plain text -#: guix-git/doc/guix.texi:37050 +#: guix-git/doc/guix.texi:37540 msgid "This makes POSIX compliant login shells activate the home environment. However, in most cases this file won't be read by most modern shells, because they are run in non POSIX mode by default and have their own @file{*profile} startup files. For example Bash will prefer @file{~/.bash_profile} in case it exists and only if it doesn't will it fallback to @file{~/.profile}. Zsh (if no additional options are specified) will ignore @file{~/.profile}, even if @file{~/.zprofile} doesn't exist." msgstr "Dadurch werden POSIX-konforme Login-Shells die Persönliche Umgebung aktivieren. Jedoch wird diese Datei in der Regel von den meisten modernen Shells @emph{nicht} gelesen, weil sie nach Voreinstellung @emph{nicht} im POSIX-Modus laufen und stattdessen ihre eigenen @file{*profile}-Dateien beim Start laden. Zum Beispiel wird Bash der Datei @file{~/.bash_profile} den Vorzug geben, wenn diese existiert, und nur falls sie @emph{nicht} existiert, liest Bash die Datei @file{~/.profile}. Zsh (wenn ihr keine zusätzlichen Argumente übergeben wurden) ignoriert @file{~/.profile} grundsätzlich, auch wenn @file{~/.zprofile} fehlt." #. type: Plain text -#: guix-git/doc/guix.texi:37055 +#: guix-git/doc/guix.texi:37545 msgid "To make your shell respect @file{~/.profile}, add @code{. ~/.profile} or @code{source ~/profile} to the startup file for the login shell. In case of Bash, it is @file{~/.bash_profile}, and in case of Zsh, it is @file{~/.zprofile}." msgstr "Damit Ihre Shell @file{~/.profile} doch beachtet, tragen Sie @code{. ~/.profile} oder @code{source ~/profile} in die beim Start gelesene Datei der Login-Shell ein. Im Fall von Bash ist dies @file{~/.bash_profile} und für Zsh ist es @file{~/.zprofile}." #. type: quotation -#: guix-git/doc/guix.texi:37059 +#: guix-git/doc/guix.texi:37549 msgid "This step is only required if your shell is NOT managed by Guix Home. Otherwise, everything will be done automatically." msgstr "Dieser Schritt fällt weg, wenn Sie Guix Home Ihre Shell verwalten lassen. Dann nämlich liefe all das vollautomatisch ab." #. type: cindex -#: guix-git/doc/guix.texi:37063 +#: guix-git/doc/guix.texi:37553 #, no-wrap msgid "home services" msgstr "Persönliche Dienste" #. type: Plain text -#: guix-git/doc/guix.texi:37072 +#: guix-git/doc/guix.texi:37562 msgid "A @dfn{home service} is not necessarily something that has a daemon and is managed by Shepherd (@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}), in most cases it doesn't. It's a simple building block of the home environment, often declaring a set of packages to be installed in the home environment profile, a set of config files to be symlinked into @env{XDG_CONFIG_HOME} (@file{~/.config} by default), and environment variables to be set by a login shell." msgstr "Als @dfn{Persönlichen Dienst} (englisch „Home Service“) bezeichnen wir nicht nur Software, die über einen durch Shepherd verwalteten Daemon gestartet wird (siehe @ref{Jump Start,,, shepherd, Handbuch von GNU Shepherd}), denn darum geht es meistens gar nicht. Ein Persönlicher Dienst bedeutet lediglich ein Baustein der Persönlichen Umgebung, mit dem so etwas deklariert wird wie eine Auswahl in die Persönliche Umgebung zu installierender Pakete, eine Reihe von Konfigurationsdateien, für die symbolische Verknüpfungen in @env{XDG_CONFIG_HOME} (nach Voreinstellung ist @file{~/.config} gemeint) angelegt werden oder für Login-Shells festgelegte Umgebungsvariable." #. type: Plain text -#: guix-git/doc/guix.texi:37080 +#: guix-git/doc/guix.texi:37570 msgid "There is a service extension mechanism (@pxref{Service Composition}) which allows home services to extend other home services and utilize capabilities they provide; for example: declare mcron jobs (@pxref{Top,,, mcron, GNU@tie{}Mcron}) by extending @ref{Mcron Home Service}; declare daemons by extending @ref{Shepherd Home Service}; add commands, which will be invoked on by the Bash by extending @ref{Shells Home Services, @code{home-bash-service-type}}." msgstr "Ein Diensterweiterungsmechanismus (siehe @ref{Service Composition}) ermöglicht es Persönlichen Diensten, andere Persönliche Dienste zu erweitern und so auf die von ihnen bereits angebotenen Fähigkeiten zurückzugreifen. Beispielsweise kann für einen Dienst ein mcron-Auftrag (siehe @ref{Top,,, mcron, GNU@tie{}Mcron}) deklariert werden, indem man ihn den Persönlichen Mcron-Dienst erweitern lässt (siehe @ref{Mcron Home Service}); ein Daemon wird deklariert, indem man ihn den Persönlichen Shepherd-Dienst erweitern lässt (siehe @ref{Shepherd Home Service}); für Bash werden neue Befehle festgelegt, indem man den Persönlichen Shell-Dienst für Bash erweitern lässt (siehe @ref{Shells Home Services, @code{home-bash-service-type}}." #. type: Plain text -#: guix-git/doc/guix.texi:37091 -msgid "A good way to discover avaliable home services is using the @command{guix home search} command (@pxref{Invoking guix home}). After the required home services are found, include its module with the @code{use-modules} form (@pxref{use-modules,, Using Guile Modules, guile, The GNU Guile Reference Manual}), or the @code{#:use-modules} directive (@pxref{define-module,, Creating Guile Modules, guile, The GNU Guile Reference Manual}) and declare a home service using the @code{service} function, or extend a service type by declaring a new service with the @code{simple-service} procedure from @code{(gnu services)}." -msgstr "Über die verfügbaren Persönlichen Dienste können Sie sich mit dem Befehl @command{guix home search} informieren (siehe @ref{Invoking guix home}). Wenn Sie die gewünschten Persönlichen Dienste gefunden haben, fügen Sie das entsprechende Modul ein, indem Sie die @code{use-modules}-Form für das Modul angeben (siehe @pxref{use-modules,, Using Guile Modules, guile, Referenzhandbuch von GNU Guile}) oder alternativ das Modul in der @code{#:use-modules}-Direktive Ihres eigenen Moduls nennen (siehe @ref{define-module,, Creating Guile Modules, guile, Referenzhandbuch zu GNU Guile}). Dann deklarieren Sie einen Persönlichen Dienst über die Funktion @code{service} oder Sie erweitern einen Dienst über die Prozedur @code{simple-service} aus @code{(gnu services)}." +#: guix-git/doc/guix.texi:37581 +msgid "A good way to discover available home services is using the @command{guix home search} command (@pxref{Invoking guix home}). After the required home services are found, include its module with the @code{use-modules} form (@pxref{use-modules,, Using Guile Modules, guile, The GNU Guile Reference Manual}), or the @code{#:use-modules} directive (@pxref{define-module,, Creating Guile Modules, guile, The GNU Guile Reference Manual}) and declare a home service using the @code{service} function, or extend a service type by declaring a new service with the @code{simple-service} procedure from @code{(gnu services)}." +msgstr "Über die verfügbaren Persönlichen Dienste können Sie sich mit dem Befehl @command{guix home search} informieren (siehe @ref{Invoking guix home}). Wenn Sie die gewünschten Persönlichen Dienste gefunden haben, fügen Sie das entsprechende Modul ein, indem Sie die @code{use-modules}-Form für das Modul angeben (siehe @ref{use-modules,, Using Guile Modules, guile, Referenzhandbuch von GNU Guile}) oder alternativ das Modul in der @code{#:use-modules}-Direktive Ihres eigenen Moduls nennen (siehe @ref{define-module,, Creating Guile Modules, guile, Referenzhandbuch zu GNU Guile}). Dann deklarieren Sie einen Persönlichen Dienst über die Funktion @code{service} oder Sie erweitern einen Dienst über die Prozedur @code{simple-service} aus @code{(gnu services)}." #. type: subsection -#: guix-git/doc/guix.texi:37097 guix-git/doc/guix.texi:37100 -#: guix-git/doc/guix.texi:37101 +#: guix-git/doc/guix.texi:37587 guix-git/doc/guix.texi:37590 +#: guix-git/doc/guix.texi:37591 #, no-wrap msgid "Essential Home Services" msgstr "Essenzielle Persönliche Dienste" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Environment variables, packages, on-* scripts." msgstr "Umgebungsvariable, Pakete, on-*-Skripte." #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Shells: Shells Home Services" msgstr "Shells: Persönliche Shell-Dienste" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "POSIX shells, Bash, Zsh." msgstr "POSIX-Shells, Bash, Zsh." #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Mcron: Mcron Home Service" msgstr "Mcron: Persönlicher Mcron-Dienst" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Scheduled User's Job Execution." msgstr "Geplante Auftragsausführung durch Benutzer." #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Shepherd: Shepherd Home Service" msgstr "Shepherd: Persönlicher Shepherd-Dienst" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Managing User's Daemons." msgstr "Des Benutzers Daemons verwalten." #. type: Plain text -#: guix-git/doc/guix.texi:37106 +#: guix-git/doc/guix.texi:37596 msgid "There are a few essential home services defined in @code{(gnu services)}, they are mostly for internal use and are required to build a home environment, but some of them will be useful for the end user." msgstr "Ein paar grundlegende Persönliche Dienste sind auch in @code{(gnu services)} definiert; sie sind in erster Linie zur internen Nutzung und für die Erstellung der Persönlichen Umgebung gedacht, aber manche sind auch für Endanwender interessant." #. type: cindex -#: guix-git/doc/guix.texi:37107 +#: guix-git/doc/guix.texi:37597 #, no-wrap msgid "environment variables" msgstr "Umgebungsvariable" #. type: defvr -#: guix-git/doc/guix.texi:37109 +#: guix-git/doc/guix.texi:37599 #, no-wrap msgid "{Scheme Variable} home-environment-variables-service-type" msgstr "{Scheme-Variable} home-environment-variables-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37114 +#: guix-git/doc/guix.texi:37604 msgid "The service of this type will be instantiated by every home environment automatically by default, there is no need to define it, but someone may want to extend it with a list of pairs to set some environment variables." msgstr "Der Dienst mit diesem Diensttyp wird von jeder Persönlichen Umgebung automatisch instanziiert; so sind die Vorgabeeinstellungen. Sie müssen ihn also nicht definieren, aber vielleicht möchten Sie Ihn erweitern mit einer Liste von Paaren zum Festlegen von Umgebungsvariablen (englisch „Environment Variables“)." #. type: lisp -#: guix-git/doc/guix.texi:37118 +#: guix-git/doc/guix.texi:37608 #, no-wrap msgid "" "(list (\"ENV_VAR1\" . \"value1\")\n" @@ -68664,12 +69619,12 @@ msgstr "" " (\"ENV_VAR2\" . \"Wert2\"))\n" #. type: defvr -#: guix-git/doc/guix.texi:37123 +#: guix-git/doc/guix.texi:37613 msgid "The easiest way to extend a service type, without defining new service type is to use the @code{simple-service} helper from @code{(gnu services)}." msgstr "Es ist am einfachsten, ihn zu erweitern, ohne einen neuen Dienst zu definieren, nämlich indem Sie das @code{simple-service}-Helferlein aus dem Modul @code{(gnu services)} einsetzen." #. type: lisp -#: guix-git/doc/guix.texi:37131 +#: guix-git/doc/guix.texi:37621 #, no-wrap msgid "" "(simple-service 'some-useful-env-vars-service\n" @@ -68687,12 +69642,12 @@ msgstr "" " (\"_JAVA_AWT_WM_NONREPARENTING\" . #t)))\n" #. type: defvr -#: guix-git/doc/guix.texi:37136 +#: guix-git/doc/guix.texi:37626 msgid "If you include such a service in you home environment definition, it will add the following content to the @file{setup-environment} script (which is expected to be sourced by the login shell):" msgstr "Wenn Sie einen solchen Dienst in die Definition Ihrer Persönlichen Umgebung aufnehmen, fügt das folgenden Inhalt in Ihr @file{setup-environment}-Skript ein (das von Ihrer Login-Shell gesourcet werden dürfte):" #. type: example -#: guix-git/doc/guix.texi:37141 +#: guix-git/doc/guix.texi:37631 #, no-wrap msgid "" "export LESSHISTFILE=$XDG_CACHE_HOME/.lesshst\n" @@ -68704,702 +69659,678 @@ msgstr "" "export _JAVA_AWT_WM_NONREPARENTING\n" #. type: quotation -#: guix-git/doc/guix.texi:37148 +#: guix-git/doc/guix.texi:37638 msgid "Make sure that module @code{(gnu packages shells)} is imported with @code{use-modules} or any other way, this namespace contains the definition of the @code{zsh} packages, which is used in the example above." msgstr "Achten Sie darauf, dass das Modul @code{(gnu packages shells)} mit @code{use-modules} oder Ähnlichem importiert wird, denn durch den @code{(gnu packages shells)}-Namensraum wird die Definition des @code{zsh}-Pakets verfügbar gemacht, auf die obiges Beispiel Bezug nimmt." #. type: defvr -#: guix-git/doc/guix.texi:37161 +#: guix-git/doc/guix.texi:37651 msgid "The association list (@pxref{Association Lists, alists, Association Lists, guile, The GNU Guile Reference manual}) is a data structure containing key-value pairs, for @code{home-environment-variables-service-type} the key is always a string, the value can be a string, string-valued gexp (@pxref{G-Expressions}), file-like object (@pxref{G-Expressions, file-like object}) or boolean. For gexps, the variable will be set to the value of the gexp; for file-like objects, it will be set to the path of the file in the store (@pxref{The Store}); for @code{#t}, it will export the variable without any value; and for @code{#f}, it will omit variable." msgstr "Wir verwenden hier eine assoziative Liste (siehe @ref{Association Lists, alists, Association Lists, guile, Referenzhandbuch von GNU Guile}). Das ist eine Datenstruktur aus Schlüssel-Wert-Paaren und für @code{home-environment-variables-service-type} ist der Schlüssel immer eine Zeichenkette und der Wert entweder eine Zeichenkette, ein G-Ausdruck für Zeichenketten (siehe @ref{G-Expressions}), ein dateiartiges Objekt (siehe @ref{G-Expressions, dateiartige Objekte}) oder ein Boolescher Ausdruck. Im Fall von G-Ausdrücken wird die Variable auf den Wert des G-Ausdrucks festgelegt, bei dateiartigen Objekten auf den Pfad der Datei im Store (siehe @ref{The Store}), bei @code{#t} wird die Variable ohne Wert exportiert und bei @code{#f} wird sie ganz weggelassen." #. type: defvr -#: guix-git/doc/guix.texi:37164 +#: guix-git/doc/guix.texi:37654 #, no-wrap msgid "{Scheme Variable} home-profile-service-type" msgstr "{Scheme-Variable} home-profile-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37170 -msgid "The service of this type will be instantiated by every home environment automatically, there is no need to define it, but you may want to extend it with a list of packages if you want to install additional packages into your profile. Other services, which need to make some programs avaliable to the user will also extend this service type." +#: guix-git/doc/guix.texi:37660 +msgid "The service of this type will be instantiated by every home environment automatically, there is no need to define it, but you may want to extend it with a list of packages if you want to install additional packages into your profile. Other services, which need to make some programs available to the user will also extend this service type." msgstr "Der Dienst dieses Typs wird durch jede Persönliche Umgebung automatisch instanziiert. Sie müssen ihn nicht erst definieren. Vielleicht wollen Sie ihn aber um eine Liste von Paketen erweitern, wenn Sie weitere Pakete in Ihr Profil installieren wollen. Wenn andere Dienste Programme für den Nutzer verfügbar machen müssen, erweitern diese dazu auch diesen Diensttyp." #. type: defvr -#: guix-git/doc/guix.texi:37172 +#: guix-git/doc/guix.texi:37662 msgid "The extension value is just a list of packages:" msgstr "Als Wert der Erweiterung muss eine Liste von Paketen angegeben werden:" #. type: lisp -#: guix-git/doc/guix.texi:37175 +#: guix-git/doc/guix.texi:37665 #, no-wrap msgid "(list htop vim emacs)\n" msgstr "(list htop vim emacs)\n" #. type: defvr -#: guix-git/doc/guix.texi:37185 +#: guix-git/doc/guix.texi:37675 msgid "The same approach as @code{simple-service} (@pxref{Service Reference, simple-service}) for @code{home-environment-variables-service-type} can be used here, too. Make sure that modules containing the specified packages are imported with @code{use-modules}. To find a package or information about its module use @command{guix search} (@pxref{Invoking guix package}). Alternatively, @code{specification->package} can be used to get the package record from string without importing related module." msgstr "Hier können Sie den gleichen Ansatz wie bei @code{simple-service} (siehe @ref{Service Reference, simple-service}) für @code{home-environment-variables-service-type} fahren. Achten Sie darauf, die Module mit den angegebenen Paketen über etwas wie @code{use-modules} zu importieren. Um ein Paket oder Informationen über das es enthaltende Modul zu finden, hilft Ihnen @command{guix search} (siehe @ref{Invoking guix package}). Alternativ können Sie @code{specification->package} einsetzen, um das Paketverbundsobjekt anhand einer Zeichenkette zu spezifizieren; dann brauchen Sie auch das zugehörige Modul @emph{nicht} zu laden." #. type: Plain text -#: guix-git/doc/guix.texi:37189 +#: guix-git/doc/guix.texi:37679 msgid "There are few more essential services, but users are not expected to extend them." msgstr "Es gibt noch mehr essenzielle Dienste, von denen wir aber nicht erwarten, dass Nutzer sie erweitern." #. type: defvr -#: guix-git/doc/guix.texi:37190 +#: guix-git/doc/guix.texi:37680 #, no-wrap msgid "{Scheme Variable} home-service-type" msgstr "{Scheme-Variable} home-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37195 +#: guix-git/doc/guix.texi:37685 msgid "The root of home services DAG, it generates a folder, which later will be symlinked to @file{~/.guix-home}, it contains configurations, profile with binaries and libraries, and some necessary scripts to glue things together." msgstr "Die Wurzel des gerichteten azyklischen Graphen aus Persönlichen Diensten. Damit wird ein Verzeichnis erzeugt, auf das später die symbolische Verknüpfung @file{~/.guix-home} verweist und das Konfigurationsdateien, das Profil mit Binärdateien und Bibliotheken sowie ein paar notwendige Skripte enthält, die die Dinge zusammenhalten." #. type: defvr -#: guix-git/doc/guix.texi:37197 +#: guix-git/doc/guix.texi:37687 #, no-wrap msgid "{Scheme Variable} home-run-on-first-login-service-type" msgstr "{Scheme-Variable} home-run-on-first-login-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37202 +#: guix-git/doc/guix.texi:37692 msgid "The service of this type generates a Guile script, which is expected to be executed by the login shell. It is only executed if the special flag file inside @env{XDG_RUNTIME_DIR} hasn't been created, this prevents redundant executions of the script if multiple login shells are spawned." msgstr "Mit dem Dienst dieses Diensttyps wird ein Guile-Skript erzeugt, das von der Login-Shell ausgeführt werden soll. Es wird dabei nur dann ausgeführt, wenn eine besondere Signaldatei in @env{XDG_RUNTIME_DIR} @emph{nicht} vorgefunden wird, wodurch das Skript nicht unnötig ausgeführt wird, wenn mehrere Login-Shells geöffnet werden." #. type: defvr -#: guix-git/doc/guix.texi:37208 -#, fuzzy -#| msgid "It can be extended with a gexp. However, to autostart an application, users @emph{should not} use this service, in most cases it's better to extend @code{home-shpeherd-service-type} with a Shepherd service (@pxref{Shepherd Services}), or extend the shell's startup file with required command using the appropriate service type." +#: guix-git/doc/guix.texi:37698 msgid "It can be extended with a gexp. However, to autostart an application, users @emph{should not} use this service, in most cases it's better to extend @code{home-shepherd-service-type} with a Shepherd service (@pxref{Shepherd Services}), or extend the shell's startup file with the required command using the appropriate service type." msgstr "Man kann den Diensttyp mit einem G-Ausdruck erweitern. Allerdings sollten Nutzer diesen Dienst @emph{nicht} dazu gebrauchen, Anwendungen automatisch zu starten, denn das macht man besser über Erweiterungen des @code{home-shepherd-service-type} durch einen Shepherd-Dienst (siehe @ref{Shepherd Services}) oder über eine Erweiterung der von der Shell beim Start geladenen Datei um den benötigten Befehl und mittels des für diese Art Shell geeigneten Diensttyps." #. type: defvr -#: guix-git/doc/guix.texi:37210 +#: guix-git/doc/guix.texi:37700 #, no-wrap msgid "{Scheme Variable} home-activation-service-type" msgstr "{Scheme-Variable} home-activation-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37214 +#: guix-git/doc/guix.texi:37704 msgid "The service of this type generates a guile script, which runs on every @command{guix home reconfigure} invocation or any other action, which leads to the activation of the home environment." msgstr "Mit dem Dienst dieses Diensttyps wird ein Guile-Skript erzeugt, das bei jedem Aufruf von @command{guix home reconfigure} und jeder anderen Aktion ausgeführt wird. Damit wird die Persönliche Umgebung aktiviert." #. type: node -#: guix-git/doc/guix.texi:37216 +#: guix-git/doc/guix.texi:37706 #, no-wrap msgid "Shells Home Services" msgstr "Persönliche Shell-Dienste" #. type: subsection -#: guix-git/doc/guix.texi:37217 +#: guix-git/doc/guix.texi:37707 #, no-wrap msgid "Shells" msgstr "Shells" #. type: cindex -#: guix-git/doc/guix.texi:37219 guix-git/doc/guix.texi:37500 +#: guix-git/doc/guix.texi:37709 guix-git/doc/guix.texi:37996 #, no-wrap msgid "shell" msgstr "shell" #. type: cindex -#: guix-git/doc/guix.texi:37220 +#: guix-git/doc/guix.texi:37710 #, no-wrap msgid "login shell" msgstr "Login-Shell" #. type: cindex -#: guix-git/doc/guix.texi:37221 +#: guix-git/doc/guix.texi:37711 #, no-wrap msgid "interactive shell" msgstr "interaktive Shell" #. type: cindex -#: guix-git/doc/guix.texi:37222 guix-git/doc/guix.texi:37502 +#: guix-git/doc/guix.texi:37712 guix-git/doc/guix.texi:37998 #, no-wrap msgid "bash" msgstr "bash" #. type: cindex -#: guix-git/doc/guix.texi:37223 guix-git/doc/guix.texi:37503 +#: guix-git/doc/guix.texi:37713 guix-git/doc/guix.texi:37999 #, no-wrap msgid "zsh" msgstr "zsh" #. type: Plain text -#: guix-git/doc/guix.texi:37229 +#: guix-git/doc/guix.texi:37719 msgid "Shells play a quite important role in the environment initialization process, you can configure them manually as described in section @ref{Configuring the Shell}, but the recommended way is to use home services listed below. It's both easier and more reliable." msgstr "Shells spielen eine ziemlich wichtige Rolle bei der Initialisierung der Umgebung. Sie können Ihre Shells selbst einrichten, wie im Abschnitt @ref{Configuring the Shell} beschrieben, aber empfehlen tun wir, dass Sie die folgend aufgeführten Dienste benutzen. Das ist sowohl leichter als auch zuverlässiger." #. type: Plain text -#: guix-git/doc/guix.texi:37239 +#: guix-git/doc/guix.texi:37729 msgid "Each home environment instantiates @code{home-shell-profile-service-type}, which creates a @file{~/.profile} startup file for all POSIX-compatible shells. This file contains all the necessary steps to properly initialize the environment, but many modern shells like Bash or Zsh prefer their own startup files, that's why the respective home services (@code{home-bash-service-type} and @code{home-zsh-service-type}) ensure that @file{~/.profile} is sourced by @file{~/.bash_profile} and @file{~/.zprofile}, respectively." msgstr "Jede Persönliche Umgebung instanziiert @code{home-shell-profile-service-type}, was eine Datei @file{~/.profile} erzeugt, die von allen POSIX-kompatiblen Shells geladen wird. In der Datei sind alle Schritte enthalten, die nötig sind, um die Umgebung ordnungsgemäß zu initialisieren. Allerdings bevorzugen viele moderne Shells wie Bash oder Zsh, ihre eigenen Dateien beim Starten zu laden. Darum brauchen wir für diese jeweils einen Persönlichen Dienst (@code{home-bash-service-type} und @code{home-zsh-service-type}), um dafür zu sorgen, dass @file{~/.profile} durch @file{~/.bash_profile} bzw.@: @file{~/.zprofile} gesourcet werden." #. type: subsubheading -#: guix-git/doc/guix.texi:37240 +#: guix-git/doc/guix.texi:37730 #, no-wrap msgid "Shell Profile Service" msgstr "Shell-Profil-Dienst" #. type: deftp -#: guix-git/doc/guix.texi:37242 +#: guix-git/doc/guix.texi:37732 #, no-wrap msgid "{Data Type} home-shell-profile-configuration" msgstr "{Datentyp} home-shell-profile-configuration" #. type: deftp -#: guix-git/doc/guix.texi:37244 +#: guix-git/doc/guix.texi:37734 msgid "Available @code{home-shell-profile-configuration} fields are:" msgstr "Verfügbare @code{home-shell-profile-configuration}-Felder sind:" #. type: item -#: guix-git/doc/guix.texi:37246 +#: guix-git/doc/guix.texi:37736 #, no-wrap msgid "@code{profile} (default: @code{()}) (type: text-config)" msgstr "@code{profile} (Vorgabe: @code{()}) (Typ: Konfigurationstexte)" #. type: table -#: guix-git/doc/guix.texi:37256 -msgid "@code{home-shell-profile} is instantiated automatically by @code{home-environment}, DO NOT create this service manually, it can only be extended. @code{profile} is a list of file-like objects, which will go to @file{~/.profile}. By default @file{~/.profile} contains the initialization code, which have to be evaluated by login shell to make home-environment's profile avaliable to the user, but other commands can be added to the file if it is really necessary. In most cases shell's configuration files are preferred places for user's customizations. Extend home-shell-profile service only if you really know what you do." +#: guix-git/doc/guix.texi:37746 +msgid "@code{home-shell-profile} is instantiated automatically by @code{home-environment}, DO NOT create this service manually, it can only be extended. @code{profile} is a list of file-like objects, which will go to @file{~/.profile}. By default @file{~/.profile} contains the initialization code which must be evaluated by the login shell to make home-environment's profile available to the user, but other commands can be added to the file if it is really necessary. In most cases shell's configuration files are preferred places for user's customizations. Extend home-shell-profile service only if you really know what you do." msgstr "Ein @code{home-shell-profile}-Dienst wird durch die Persönliche Umgebung automatisch instanziiert. Legen Sie den Dienst also @emph{bloß nicht} manuell an; Sie können ihn lediglich erweitern. Für @code{profile} wird eine Liste dateiartiger Objekte erwartet, die in die Datei @file{~/.profile} aufgenommen werden. Nach Vorgabe enthält @file{~/.profile} nur den Code zur Initialisierung, der von Login-Shells ausgeführt werden muss, um die Persönliche Umgebung für den Benutzer verfügbar zu machen. Andere Befehle können hier auch in die Datei eingefügt werden, wenn sie wirklich unbedingt dort stehen müssen. In den meisten Fällen schreibt man sie besser in die Konfigurationsdateien der Shell, wenn man eigene Anpassungen wünscht. Erweitern Sie den @code{home-shell-profile}-Dienst nur dann, wenn Sie wissen, was Sie tun." #. type: subsubheading -#: guix-git/doc/guix.texi:37261 +#: guix-git/doc/guix.texi:37751 #, no-wrap msgid "Bash Home Service" msgstr "Persönlicher Bash-Dienst" #. type: anchor{#1} -#: guix-git/doc/guix.texi:37264 +#: guix-git/doc/guix.texi:37754 msgid "home-bash-configuration" msgstr "home-bash-configuration" #. type: deftp -#: guix-git/doc/guix.texi:37264 +#: guix-git/doc/guix.texi:37754 #, no-wrap msgid "{Data Type} home-bash-configuration" msgstr "{Datentyp} home-bash-configuration" #. type: deftp -#: guix-git/doc/guix.texi:37266 +#: guix-git/doc/guix.texi:37756 msgid "Available @code{home-bash-configuration} fields are:" msgstr "Verfügbare @code{home-bash-configuration}-Felder sind:" #. type: item -#: guix-git/doc/guix.texi:37268 +#: guix-git/doc/guix.texi:37758 #, no-wrap msgid "@code{package} (default: @code{bash}) (type: package)" msgstr "@code{package} (Vorgabe: @code{bash}) (Typ: „package“)" #. type: table -#: guix-git/doc/guix.texi:37270 +#: guix-git/doc/guix.texi:37760 msgid "The Bash package to use." msgstr "Das Bash-Paket, was benutzt werden soll." #. type: item -#: guix-git/doc/guix.texi:37271 +#: guix-git/doc/guix.texi:37761 #, no-wrap msgid "@code{guix-defaults?} (default: @code{#t}) (type: boolean)" msgstr "@code{guix-defaults?} (Vorgabe: @code{#t}) (Typ: Boolescher-Ausdruck)" #. type: table -#: guix-git/doc/guix.texi:37274 +#: guix-git/doc/guix.texi:37764 msgid "Add sane defaults like reading @file{/etc/bashrc} and coloring the output of @command{ls} to the end of the @file{.bashrc} file." msgstr "Ob vernünftige Voreinstellungen ans Ende der Datei @file{.bashrc} angefügt werden sollen, wie @file{/etc/bashrc} zu lesen und die Ausgaben von @command{ls} einzufärben." #. type: item -#: guix-git/doc/guix.texi:37275 guix-git/doc/guix.texi:37329 -#: guix-git/doc/guix.texi:37368 +#: guix-git/doc/guix.texi:37765 guix-git/doc/guix.texi:37819 +#: guix-git/doc/guix.texi:37858 #, no-wrap msgid "@code{environment-variables} (default: @code{()}) (type: alist)" msgstr "@code{environment-variables} (Vorgabe: @code{()}) (Typ: Assoziative-Liste)" #. type: table -#: guix-git/doc/guix.texi:37280 +#: guix-git/doc/guix.texi:37770 msgid "Association list of environment variables to set for the Bash session. The rules for the @code{home-environment-variables-service-type} apply here (@pxref{Essential Home Services}). The contents of this field will be added after the contents of the @code{bash-profile} field." msgstr "Eine assoziative Liste der Umgebungsvariablen, die für die Bash-Sitzung gesetzt sein sollen. Dieselben Regeln wie für den @code{home-environment-variables-service-type} gelten auch hier (siehe @ref{Essential Home Services}). Der Inhalt dieses Felds wird anschließend an das, was im @code{bash-profile}-Feld steht, angefügt." #. type: item -#: guix-git/doc/guix.texi:37281 guix-git/doc/guix.texi:37334 +#: guix-git/doc/guix.texi:37771 guix-git/doc/guix.texi:37824 #, no-wrap msgid "@code{aliases} (default: @code{()}) (type: alist)" msgstr "@code{aliases} (Vorgabe: @code{()}) (Typ: Assoziative-Liste)" #. type: table -#: guix-git/doc/guix.texi:37286 +#: guix-git/doc/guix.texi:37776 msgid "Association list of aliases to set for the Bash session. The aliases will be defined after the contents of the @code{bashrc} field has been put in the @file{.bashrc} file. The alias will automatically be quoted, so something line this:" msgstr "Assoziative Liste der Alias-Namen, welche für die Bash-Sitzung eingerichtet werden sollen. Die Alias-Namen werden nach dem Inhalt des @code{bashrc}-Feldes in der Datei @file{.bashrc} definiert. Jeder Alias-Name wird automatisch maskiert, d.h.@: ein Eintrag wie:" #. type: lisp -#: guix-git/doc/guix.texi:37289 +#: guix-git/doc/guix.texi:37779 #, no-wrap msgid "'((\\\"ls\\\" . \\\"ls -alF\\\"))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37292 +#: guix-git/doc/guix.texi:37782 msgid "turns into" msgstr "wird zu" #. type: example -#: guix-git/doc/guix.texi:37295 +#: guix-git/doc/guix.texi:37785 #, no-wrap msgid "alias ls=\\\"ls -alF\\\"\n" msgstr "alias ls=\\\"ls -alF\\\"\n" #. type: item -#: guix-git/doc/guix.texi:37297 guix-git/doc/guix.texi:37338 +#: guix-git/doc/guix.texi:37787 guix-git/doc/guix.texi:37828 #, no-wrap msgid "@code{bash-profile} (default: @code{()}) (type: text-config)" msgstr "@code{bash-profile} (Vorgabe: @code{()}) (Typ: Konfigurationstexte)" #. type: table -#: guix-git/doc/guix.texi:37302 +#: guix-git/doc/guix.texi:37792 msgid "List of file-like objects, which will be added to @file{.bash_profile}. Used for executing user's commands at start of login shell (In most cases the shell started on tty just after login). @file{.bash_login} won't be ever read, because @file{.bash_profile} always present." msgstr "Eine Liste dateiartiger Objekte, die in @file{.bash_profile} eingefügt werden. Damit können benutzereigene Befehle beim Start der Login-Shell ausgeführt werden. (In der Regel handelt es sich um die Shell, die gestartet wird, direkt nachdem man sich auf der Konsole (TTY) anmeldet.) @file{.bash_login} wird niemals gelesen, weil @file{.bash_profile} immer existiert." #. type: item -#: guix-git/doc/guix.texi:37303 guix-git/doc/guix.texi:37342 +#: guix-git/doc/guix.texi:37793 guix-git/doc/guix.texi:37832 #, no-wrap msgid "@code{bashrc} (default: @code{()}) (type: text-config)" msgstr "@code{bashrc} (Vorgabe: @code{()}) (Typ: Konfigurationstexte)" #. type: table -#: guix-git/doc/guix.texi:37308 +#: guix-git/doc/guix.texi:37798 msgid "List of file-like objects, which will be added to @file{.bashrc}. Used for executing user's commands at start of interactive shell (The shell for interactive usage started by typing @code{bash} or by terminal app or any other program)." msgstr "Eine Liste dateiartiger Objekte, die in @file{.bashrc} eingefügt werden. Damit können benutzereigene Befehle beim Start einer interaktiven Shell ausgeführt werden. (Interaktive Shells sind Shells für interaktive Nutzung, die man startet, indem man @code{bash} eintippt oder die durch Terminal-Anwendungen oder andere Programme gestartet werden.)" #. type: item -#: guix-git/doc/guix.texi:37309 guix-git/doc/guix.texi:37346 +#: guix-git/doc/guix.texi:37799 guix-git/doc/guix.texi:37836 #, no-wrap msgid "@code{bash-logout} (default: @code{()}) (type: text-config)" msgstr "@code{bash-logout} (Vorgabe: @code{()}) (Typ: Konfigurationstexte)" #. type: table -#: guix-git/doc/guix.texi:37314 +#: guix-git/doc/guix.texi:37804 msgid "List of file-like objects, which will be added to @file{.bash_logout}. Used for executing user's commands at the exit of login shell. It won't be read in some cases (if the shell terminates by exec'ing another process for example)." msgstr "Eine Liste dateiartiger Objekte, die zu @file{.bash_logout} hinzugefügt werden. Damit können benutzereigene Befehle beim Verlassen der Login-Shell ausgeführt werden. Die Datei wird in manchen Fällen @emph{nicht} gelesen (wenn die Shell zum Beispiel durch exec eines anderen Prozesses terminiert)." #. type: Plain text -#: guix-git/doc/guix.texi:37324 +#: guix-git/doc/guix.texi:37814 msgid "You can extend the Bash service by using the @code{home-bash-extension} configuration record, whose fields most mirror that of @code{home-bash-configuration} (@pxref{home-bash-configuration}). The contents of the extensions will be added to the end of the corresponding Bash configuration files (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}." msgstr "Sie können den Bash-Dienst mit Hilfe einer Konfiguration im Verbundsobjekt @code{home-bash-extension} erweitern. Dessen Felder spiegeln meistens die von @code{home-bash-configuration} (siehe @ref{home-bash-configuration}). Die Inhalte der Erweiterungen werden ans Ende der zugehörigen Bash-Konfigurationsdateien angehängt (siehe @ref{Bash Startup Files,,, bash, Referenzhandbuch von GNU Bash}." #. type: deftp -#: guix-git/doc/guix.texi:37325 +#: guix-git/doc/guix.texi:37815 #, no-wrap msgid "{Data Type} home-bash-extension" msgstr "{Datentyp} home-bash-extension" #. type: deftp -#: guix-git/doc/guix.texi:37327 +#: guix-git/doc/guix.texi:37817 msgid "Available @code{home-bash-extension} fields are:" msgstr "Verfügbare @code{home-bash-extension}-Felder sind:" #. type: table -#: guix-git/doc/guix.texi:37333 +#: guix-git/doc/guix.texi:37823 msgid "Additional environment variables to set. These will be combined with the environment variables from other extensions and the base service to form one coherent block of environment variables." msgstr "Zusätzliche Umgebungsvariable, die festgelegt werden sollen. Diese werden mit den Umgebungsvariablen anderer Erweiterungen und denen des zugrunde liegenden Dienstes zu einem zusammenhängenden Block aus Umgebungsvariablen vereint." #. type: table -#: guix-git/doc/guix.texi:37337 +#: guix-git/doc/guix.texi:37827 msgid "Additional aliases to set. These will be combined with the aliases from other extensions and the base service." msgstr "Zusätzliche Alias-Namen, die festgelegt werden sollen. Diese werden mit den Alias-Namen anderer Erweiterungen und denen des zugrunde liegenden Dienstes zusammengelegt." #. type: table -#: guix-git/doc/guix.texi:37341 +#: guix-git/doc/guix.texi:37831 msgid "Additional text blocks to add to @file{.bash_profile}, which will be combined with text blocks from other extensions and the base service." msgstr "Zusätzliche Textblöcke, die zu @file{.bash_profile} hinzugefügt werden sollen. Diese werden zu den Textblöcken anderer Erweiterungen und denen des zugrunde liegenden Dienstes hinzugenommen." #. type: table -#: guix-git/doc/guix.texi:37345 +#: guix-git/doc/guix.texi:37835 msgid "Additional text blocks to add to @file{.bashrc}, which will be combined with text blocks from other extensions and the base service." msgstr "Zusätzliche Textblöcke, die zu @file{.bashrc} hinzugefügt werden sollen. Diese werden zu den Textblöcken anderer Erweiterungen und denen des zugrunde liegenden Dienstes hinzugenommen." #. type: table -#: guix-git/doc/guix.texi:37349 +#: guix-git/doc/guix.texi:37839 msgid "Additional text blocks to add to @file{.bash_logout}, which will be combined with text blocks from other extensions and the base service." msgstr "Zusätzliche Textblöcke, die zu @file{.bash_logout} hinzugefügt werden sollen. Diese werden zu den Textblöcken anderer Erweiterungen und denen des zugrunde liegenden Dienstes hinzugenommen." #. type: subsubheading -#: guix-git/doc/guix.texi:37353 +#: guix-git/doc/guix.texi:37843 #, no-wrap msgid "Zsh Home Service" msgstr "Persönlicher Zsh-Dienst" #. type: deftp -#: guix-git/doc/guix.texi:37355 +#: guix-git/doc/guix.texi:37845 #, no-wrap msgid "{Data Type} home-zsh-configuration" msgstr "{Datentyp} home-zsh-configuration" #. type: deftp -#: guix-git/doc/guix.texi:37357 +#: guix-git/doc/guix.texi:37847 msgid "Available @code{home-zsh-configuration} fields are:" msgstr "Verfügbare @code{home-zsh-configuration}-Felder sind:" #. type: item -#: guix-git/doc/guix.texi:37359 +#: guix-git/doc/guix.texi:37849 #, no-wrap msgid "@code{package} (default: @code{zsh}) (type: package)" msgstr "@code{package} (Vorgabe: @code{zsh}) (Typ: „package“)" #. type: table -#: guix-git/doc/guix.texi:37361 +#: guix-git/doc/guix.texi:37851 msgid "The Zsh package to use." msgstr "Das zu benutzende Zsh-Paket." #. type: item -#: guix-git/doc/guix.texi:37362 +#: guix-git/doc/guix.texi:37852 #, no-wrap msgid "@code{xdg-flavor?} (default: @code{#t}) (type: boolean)" msgstr "@code{xdg-flavor?} (Vorgabe: @code{#t}) (Typ: Boolescher-Ausdruck)" #. type: table -#: guix-git/doc/guix.texi:37367 +#: guix-git/doc/guix.texi:37857 msgid "Place all the configs to @file{$XDG_CONFIG_HOME/zsh}. Makes @file{~/.zshenv} to set @env{ZDOTDIR} to @file{$XDG_CONFIG_HOME/zsh}. Shell startup process will continue with @file{$XDG_CONFIG_HOME/zsh/.zshenv}." msgstr "Ob alle Konfigurationsdateien in @file{$XDG_CONFIG_HOME/zsh} platziert werden sollen. Auch wird @file{~/.zshenv} dann @env{ZDOTDIR} auf @file{$XDG_CONFIG_HOME/zsh} festlegen. Der Startvorgang der Shell wird mit @file{$XDG_CONFIG_HOME/zsh/.zshenv} fortgeführt." #. type: table -#: guix-git/doc/guix.texi:37370 +#: guix-git/doc/guix.texi:37860 msgid "Association list of environment variables to set for the Zsh session." msgstr "Eine assoziative Liste, welche Umgebungsvariable in der Zsh-Sitzung festgelegt sein sollen." #. type: item -#: guix-git/doc/guix.texi:37371 +#: guix-git/doc/guix.texi:37861 #, no-wrap msgid "@code{zshenv} (default: @code{()}) (type: text-config)" msgstr "@code{zshenv} (Vorgabe: @code{()}) (Typ: Konfigurationstexte)" #. type: table -#: guix-git/doc/guix.texi:37376 +#: guix-git/doc/guix.texi:37866 msgid "List of file-like objects, which will be added to @file{.zshenv}. Used for setting user's shell environment variables. Must not contain commands assuming the presence of tty or producing output. Will be read always. Will be read before any other file in @env{ZDOTDIR}." msgstr "Eine Liste dateiartiger Objekte, die zu @file{.zshenv} hinzugefügt werden. Damit können benutzereigene Shell-Umgebungsvariable festgelegt werden. Enthaltene Befehle dürfen @emph{kein} vorhandenes TTY voraussetzen und sie dürfen @emph{nichts} ausgeben. Die Datei wird immer gelesen. Sie wird vor jeder anderen Datei in @env{ZDOTDIR} gelesen." #. type: item -#: guix-git/doc/guix.texi:37377 +#: guix-git/doc/guix.texi:37867 #, no-wrap msgid "@code{zprofile} (default: @code{()}) (type: text-config)" msgstr "@code{zprofile} (Vorgabe: @code{()}) (Typ: Konfigurationstexte)" #. type: table -#: guix-git/doc/guix.texi:37382 +#: guix-git/doc/guix.texi:37872 msgid "List of file-like objects, which will be added to @file{.zprofile}. Used for executing user's commands at start of login shell (In most cases the shell started on tty just after login). Will be read before @file{.zlogin}." msgstr "Eine Liste dateiartiger Objekte, die in @file{.zprofile} eingefügt werden. Damit können benutzereigene Befehle beim Start der Login-Shell ausgeführt werden. (In der Regel handelt es sich um die Shell, die gestartet wird, direkt nachdem man sich auf der Konsole (TTY) anmeldet.) @file{.zprofile} wird vor @file{.zlogin} gelesen." #. type: item -#: guix-git/doc/guix.texi:37383 +#: guix-git/doc/guix.texi:37873 #, no-wrap msgid "@code{zshrc} (default: @code{()}) (type: text-config)" msgstr "@code{zshrc} (Vorgabe: @code{()}) (Typ: Konfigurationstexte)" #. type: table -#: guix-git/doc/guix.texi:37388 +#: guix-git/doc/guix.texi:37878 msgid "List of file-like objects, which will be added to @file{.zshrc}. Used for executing user's commands at start of interactive shell (The shell for interactive usage started by typing @code{zsh} or by terminal app or any other program)." msgstr "Eine Liste dateiartiger Objekte, die in @file{.zshrc} eingefügt werden. Damit können benutzereigene Befehle beim Start einer interaktiven Shell ausgeführt werden. (Interaktive Shells sind Shells für interaktive Nutzung, die man startet, indem man @code{zsh} eintippt oder die durch Terminal-Anwendungen oder andere Programme gestartet werden.)" #. type: item -#: guix-git/doc/guix.texi:37389 +#: guix-git/doc/guix.texi:37879 #, no-wrap msgid "@code{zlogin} (default: @code{()}) (type: text-config)" msgstr "@code{zlogin} (Vorgabe: @code{()}) (Typ: Konfigurationstexte)" #. type: table -#: guix-git/doc/guix.texi:37393 +#: guix-git/doc/guix.texi:37883 msgid "List of file-like objects, which will be added to @file{.zlogin}. Used for executing user's commands at the end of starting process of login shell." msgstr "Eine Liste dateiartiger Objekte, die in @file{.zlogin} eingefügt werden. Damit können benutzereigene Befehle am Ende des Startvorgangs der Login-Shell ausgeführt werden." #. type: item -#: guix-git/doc/guix.texi:37394 +#: guix-git/doc/guix.texi:37884 #, no-wrap msgid "@code{zlogout} (default: @code{()}) (type: text-config)" msgstr "@code{zlogout} (Vorgabe: @code{()}) (Typ: Konfigurationstexte)" #. type: table -#: guix-git/doc/guix.texi:37399 +#: guix-git/doc/guix.texi:37889 msgid "List of file-like objects, which will be added to @file{.zlogout}. Used for executing user's commands at the exit of login shell. It won't be read in some cases (if the shell terminates by exec'ing another process for example)." msgstr "Eine Liste dateiartiger Objekte, die zu @file{.zlogout} hinzugefügt werden. Damit können benutzereigene Befehle beim Verlassen der Login-Shell ausgeführt werden. Die Datei wird in manchen Fällen @emph{nicht} gelesen (wenn die Shell zum Beispiel durch exec eines anderen Prozesses terminiert)." #. type: node -#: guix-git/doc/guix.texi:37404 +#: guix-git/doc/guix.texi:37894 #, no-wrap msgid "Mcron Home Service" msgstr "Persönlicher Mcron-Dienst" #. type: subsection -#: guix-git/doc/guix.texi:37405 +#: guix-git/doc/guix.texi:37895 #, no-wrap msgid "Scheduled User's Job Execution" msgstr "Geplante Auftragsausführung durch Benutzer" #. type: Plain text -#: guix-git/doc/guix.texi:37418 +#: guix-git/doc/guix.texi:37908 msgid "The @code{(gnu home services mcron)} module provides an interface to GNU@tie{}mcron, a daemon to run jobs at scheduled times (@pxref{Top,,, mcron, GNU@tie{}mcron}). The information about system's mcron is applicable here (@pxref{Scheduled Job Execution}), the only difference for home services is that they have to be declared in a @code{home-envirnoment} record instead of an @code{operating-system} record." msgstr "Das Modul @code{(gnu home services mcron)} enthält eine Schnittstelle zu GNU@tie{}mcron, einem Daemon, der gemäß einem vorher festgelegten Zeitplan Aufträge (sogenannte „Jobs“) ausführt (siehe @ref{Top,,, mcron, GNU@tie{}mcron}). Es gelten hier dieselben Informationen wie beim mcron für Guix System (siehe @ref{Scheduled Job Execution}), außer dass Persönliche mcron-Dienste in einem @code{home-envirnoment}-Verbundsobjekt deklariert werden statt in einem @code{operating-system}-Verbundsobjekt." #. type: defvr -#: guix-git/doc/guix.texi:37419 +#: guix-git/doc/guix.texi:37909 #, no-wrap msgid "{Scheme Variable} home-mcron-service-type" msgstr "{Scheme-Variable} home-mcron-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37423 +#: guix-git/doc/guix.texi:37913 msgid "This is the type of the @code{mcron} home service, whose value is an @code{home-mcron-configuration} object. It allows to manage scheduled tasks." msgstr "Dies ist der Diensttyp des Persönlichen @code{mcron}-Dienstes. Als Wert verwendet er ein @code{home-mcron-configuration}-Objekt. Hiermit können zu geplanten Zeiten Aufgaben durchgeführt werden." #. type: deftp -#: guix-git/doc/guix.texi:37430 +#: guix-git/doc/guix.texi:37920 #, no-wrap msgid "{Data Type} home-mcron-configuration" msgstr "{Datentyp} home-mcron-configuration" #. type: node -#: guix-git/doc/guix.texi:37444 +#: guix-git/doc/guix.texi:37934 #, no-wrap msgid "Shepherd Home Service" msgstr "Persönlicher Shepherd-Dienst" #. type: subsection -#: guix-git/doc/guix.texi:37445 -#, no-wrap -msgid "Managing User's Daemons" +#: guix-git/doc/guix.texi:37935 +#, fuzzy, no-wrap +#| msgid "Managing User's Daemons" +msgid "Managing User Daemons" msgstr "Des Benutzers Daemons verwalten" +#. type: cindex +#: guix-git/doc/guix.texi:37937 +#, fuzzy, no-wrap +#| msgid "shepherd services" +msgid "shepherd services, for users" +msgstr "Dienste, mit Shepherd" + +#. type: Plain text +#: guix-git/doc/guix.texi:37944 +msgid "The @code{(gnu home services shepherd)} module supports the definitions of per-user Shepherd services (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}). You extend @code{home-shepherd-service-type} with new services; Guix Home then takes care of starting the @code{shepherd} daemon for you when you log in, which in turns starts the services you asked for." +msgstr "" + #. type: defvr -#: guix-git/doc/guix.texi:37449 +#: guix-git/doc/guix.texi:37945 #, no-wrap msgid "{Scheme Variable} home-shepherd-service-type" msgstr "{Scheme-Variable} home-shepherd-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37454 +#: guix-git/doc/guix.texi:37950 msgid "The service type for the userland Shepherd, which allows one to manage long-running processes or one-shot tasks. User's Shepherd is not an init process (PID 1), but almost all other information described in (@pxref{Shepherd Services}) is applicable here too." msgstr "Der Diensttyp für das als normaler Benutzer ausgeführte Shepherd, womit man sowohl durchgängig laufende Prozesse als auch einmalig ausgeführte Aufgaben verwalten. Mit Benutzerrechten ausgeführte Shepherd-Prozesse sind @emph{keine} „init“-Prozesse (PID 1), aber ansonsten sind fast alle Informationen aus @ref{Shepherd Services} auch für sie anwendbar." #. type: defvr -#: guix-git/doc/guix.texi:37459 +#: guix-git/doc/guix.texi:37955 msgid "This is the service type that extensions target when they want to create shepherd services (@pxref{Service Types and Services}, for an example). Each extension must pass a list of @code{}. Its value must be a @code{home-shepherd-configuration}, as described below." msgstr "Dieser Diensttyp stellt das Ziel für Diensterweiterungen dar, die Shepherd-Dienste erzeugen sollen (siehe @ref{Service Types and Services} für ein Beispiel). Jede Erweiterung muss eine Liste von @code{}-Objekten übergeben. Sein Wert muss eine @code{home-shepherd-configuration} sein, wie im Folgenden beschrieben." #. type: deftp -#: guix-git/doc/guix.texi:37461 +#: guix-git/doc/guix.texi:37957 #, no-wrap msgid "{Data Type} home-shepherd-configuration" msgstr "{Datentyp} home-shepherd-configuration" #. type: item -#: guix-git/doc/guix.texi:37468 +#: guix-git/doc/guix.texi:37964 #, no-wrap msgid "auto-start? (default: @code{#t})" msgstr "auto-start? (Vorgabe: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:37470 +#: guix-git/doc/guix.texi:37966 msgid "Whether or not to start Shepherd on first login." msgstr "Ob Shepherd bei einer ersten Anmeldung gestartet werden soll." #. type: section -#: guix-git/doc/guix.texi:37479 +#: guix-git/doc/guix.texi:37975 #, no-wrap msgid "Invoking @code{guix home}" msgstr "@code{guix home} aufrufen" #. type: Plain text -#: guix-git/doc/guix.texi:37484 +#: guix-git/doc/guix.texi:37980 msgid "Once you have written a home environment declaration (@pxref{Declaring the Home Environment,,,,}, it can be @dfn{instantiated} using the @command{guix home} command. The synopsis is:" msgstr "Sobald Sie eine Deklaration Ihrer Persönlichen Umgebung haben (siehe @ref{Declaring the Home Environment,,,,}), kann diese @dfn{instanziiert} werden, indem Sie den Befehl @command{guix home} aufrufen. Zusammengefasst:" #. type: example -#: guix-git/doc/guix.texi:37487 +#: guix-git/doc/guix.texi:37983 #, no-wrap msgid "guix home @var{options}@dots{} @var{action} @var{file}\n" msgstr "guix home @var{Optionen}…@: @var{Aktion} @var{Datei}\n" #. type: Plain text -#: guix-git/doc/guix.texi:37494 +#: guix-git/doc/guix.texi:37990 msgid "@var{file} must be the name of a file containing a @code{home-environment} declaration. @var{action} specifies how the home environment is instantiated, but there are few auxiliary actions which don't instantiate it. Currently the following values are supported:" msgstr "@var{Datei} muss der Name einer Datei sein, in der eine Persönliche Umgebung als @code{home-environment}-Objekt steht. @var{Aktion} gibt an, wie das Betriebssystem instanziiert wird (abgesehen von unterstützenden Aktionen, wo nichts instanziiert wird). Derzeit werden folgende Werte dafür unterstützt:" #. type: table -#: guix-git/doc/guix.texi:37499 +#: guix-git/doc/guix.texi:37995 msgid "Display available home service type definitions that match the given regular expressions, sorted by relevance:" msgstr "Verfügbare Definitionen Persönlicher Dienste anzeigen, die zum angegebenen regulären Ausdruck passen, sortiert nach Relevanz:" #. type: cindex -#: guix-git/doc/guix.texi:37501 +#: guix-git/doc/guix.texi:37997 #, no-wrap msgid "shell-profile" msgstr "Shell-Profil" #. type: example -#: guix-git/doc/guix.texi:37513 +#: guix-git/doc/guix.texi:38008 #, no-wrap msgid "" "$ guix home search shell\n" "name: home-shell-profile\n" -"location: gnu/home/services/shells.scm:73:2\n" +"location: gnu/home/services/shells.scm:100:2\n" "extends: home-files\n" -"description: Create `~/.profile', which is used for environment initialization\n" -"+ of POSIX compatible login shells. Can be extended with a list of strings or\n" -"+ gexps.\n" +"description: Create `~/.profile', which is used for environment initialization of POSIX compliant login shells.\n" +"+ This service type can be extended with a list of file-like objects.\n" "relevance: 6\n" "\n" msgstr "" "$ guix home search shell\n" "name: home-shell-profile\n" -"location: gnu/home/services/shells.scm:73:2\n" +"location: gnu/home/services/shells.scm:100:2\n" "extends: home-files\n" -"description: Create `~/.profile', which is used for environment initialization\n" -"+ of POSIX compatible login shells. Can be extended with a list of strings or\n" -"+ gexps.\n" +"description: Create `~/.profile', which is used for environment initialization of POSIX compliant login shells.\n" +"+ This service type can be extended with a list of file-like objects.\n" "relevance: 6\n" "\n" #. type: example -#: guix-git/doc/guix.texi:37519 -#, no-wrap -msgid "" -"name: home-zsh-plugin-manager\n" -"location: gnu/home/services/shellutils.scm:28:2\n" -"extends: home-zsh home-profile\n" -"description: Install plugins in profile and configure Zsh to load them.\n" -"relevance: 1\n" -"\n" -msgstr "" -"name: home-zsh-plugin-manager\n" -"location: gnu/home/services/shellutils.scm:28:2\n" -"extends: home-zsh home-profile\n" -"description: Install plugins in profile and configure Zsh to load them.\n" -"relevance: 1\n" -"\n" - -#. type: example -#: guix-git/doc/guix.texi:37526 -#, no-wrap -msgid "" -"name: home-zsh-direnv\n" -"location: gnu/home/services/shellutils.scm:69:2\n" -"extends: home-profile home-zsh\n" -"description: Enables `direnv' for `zsh'. Adds hook to `.zshrc' and installs a\n" -"+ package in the profile.\n" -"relevance: 1\n" -"\n" -msgstr "" -"name: home-zsh-direnv\n" -"location: gnu/home/services/shellutils.scm:69:2\n" -"extends: home-profile home-zsh\n" -"description: Enables `direnv' for `zsh'. Adds hook to `.zshrc' and installs a\n" -"+ package in the profile.\n" -"relevance: 1\n" -"\n" - -#. type: example -#: guix-git/doc/guix.texi:37535 +#: guix-git/doc/guix.texi:38014 #, no-wrap msgid "" -"name: home-zsh-autosuggestions\n" -"location: gnu/home/services/shellutils.scm:43:2\n" -"extends: home-zsh-plugin-manager home-zsh\n" -"description: Enables Fish-like fast/unobtrusive autosuggestions for `zsh' and\n" -"+ sets reasonable default values for some plugin's variables to improve perfomance\n" -"+ and adjust behavior: `(history completion)' is set for strategy, manual rebind\n" -"+ and async are enabled.\n" -"relevance: 1\n" +"name: home-fish\n" +"location: gnu/home/services/shells.scm:640:2\n" +"extends: home-files home-profile\n" +"description: Install and configure Fish, the friendly interactive shell.\n" +"relevance: 3\n" "\n" msgstr "" -"name: home-zsh-autosuggestions\n" -"location: gnu/home/services/shellutils.scm:43:2\n" -"extends: home-zsh-plugin-manager home-zsh\n" -"description: Enables Fish-like fast/unobtrusive autosuggestions for `zsh' and\n" -"+ sets reasonable default values for some plugin's variables to improve perfomance\n" -"+ and adjust behavior: `(history completion)' is set for strategy, manual rebind\n" -"+ and async are enabled.\n" -"relevance: 1\n" +"name: home-fish\n" +"location: gnu/home/services/shells.scm:640:2\n" +"extends: home-files home-profile\n" +"description: Install and configure Fish, the friendly interactive shell.\n" +"relevance: 3\n" "\n" #. type: example -#: guix-git/doc/guix.texi:37541 +#: guix-git/doc/guix.texi:38020 #, no-wrap msgid "" "name: home-zsh\n" -"location: gnu/home/services/shells.scm:236:2\n" +"location: gnu/home/services/shells.scm:290:2\n" "extends: home-files home-profile\n" "description: Install and configure Zsh.\n" "relevance: 1\n" "\n" msgstr "" "name: home-zsh\n" -"location: gnu/home/services/shells.scm:236:2\n" +"location: gnu/home/services/shells.scm:290:2\n" "extends: home-files home-profile\n" "description: Install and configure Zsh.\n" "relevance: 1\n" "\n" #. type: example -#: guix-git/doc/guix.texi:37547 +#: guix-git/doc/guix.texi:38026 #, no-wrap msgid "" "name: home-bash\n" -"location: gnu/home/services/shells.scm:388:2\n" +"location: gnu/home/services/shells.scm:508:2\n" "extends: home-files home-profile\n" -"description: Install and configure Bash.\n" +"description: Install and configure GNU Bash.\n" "relevance: 1\n" "\n" msgstr "" "name: home-bash\n" -"location: gnu/home/services/shells.scm:388:2\n" +"location: gnu/home/services/shells.scm:508:2\n" "extends: home-files home-profile\n" -"description: Install and configure Bash.\n" +"description: Install and configure GNU Bash.\n" "relevance: 1\n" "\n" #. type: table -#: guix-git/doc/guix.texi:37563 -msgid "Build the home environment described in @var{file}, and switch to it. Switching means that the activation script will be evaluated and (in basic scenario) symlinks to configuration files generated from @code{home-environment} declaration will be created in @file{~}. If the file with the same path already exists in home folder it will be moved to @file{~/TIMESTAMP-guix-home-legacy-configs-backup}, where TIMESTAMP is a current UNIX epoch time." +#: guix-git/doc/guix.texi:38033 +#, fuzzy +#| msgid "As for @command{guix package --search}, the result is written in @code{recutils} format, which makes it easy to filter the output (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." +msgid "As for @command{guix search}, the result is written in @code{recutils} format, which makes it easy to filter the output (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." +msgstr "Wie auch bei @command{guix package --search} wird das Ergebnis im @code{recutils}-Format geliefert, so dass es leicht ist, die Ausgabe zu filtern (siehe @ref{Top, GNU-recutils-Datenbanken,, recutils, Handbuch von GNU recutils})." + +#. type: table +#: guix-git/doc/guix.texi:38042 +#, fuzzy +#| msgid "Build the home environment described in @var{file}, and switch to it. Switching means that the activation script will be evaluated and (in basic scenario) symlinks to configuration files generated from @code{home-environment} declaration will be created in @file{~}. If the file with the same path already exists in home folder it will be moved to @file{~/TIMESTAMP-guix-home-legacy-configs-backup}, where TIMESTAMP is a current UNIX epoch time." +msgid "Build the home environment described in @var{file}, and switch to it. Switching means that the activation script will be evaluated and (in basic scenario) symlinks to configuration files generated from @code{home-environment} declaration will be created in @file{~}. If the file with the same path already exists in home folder it will be moved to @file{~/@var{timestamp}-guix-home-legacy-configs-backup}, where @var{timestamp} is a current UNIX epoch time." msgstr "Die in der @var{Datei} beschriebene Persönliche Umgebung erstellen und zu ihr wechseln. Wechseln bedeutet, dass das Aktivierungsskript ausgewertet wird und (in der Grundeinstellung) symbolische Verknüpfungen auf Konfigurationsdateien, die anhand der Deklaration der Persönlichen Umgebung im @code{home-environment}-Objekt erzeugt werden, in @file{~} angelegt werden. Wenn die Datei mit demselben Pfad bereits im Persönlichen Verzeichnis existiert, wird sie nach @file{~/ZEITSTEMPEL-guix-home-legacy-configs-backup} verschoben. Dabei ist ZEITSTEMPEL eine Zeitangabe seit der UNIX-Epoche." #. type: quotation -#: guix-git/doc/guix.texi:37568 +#: guix-git/doc/guix.texi:38047 msgid "It is highly recommended to run @command{guix pull} once before you run @command{guix home reconfigure} for the first time (@pxref{Invoking guix pull})." msgstr "Es ist sehr zu empfehlen, @command{guix pull} einmal auszuführen, bevor Sie @command{guix home reconfigure} zum ersten Mal aufrufen (siehe @ref{Invoking guix pull})." #. type: table -#: guix-git/doc/guix.texi:37575 -msgid "This effects all the configuration specified in @var{file}. The command starts Shepherd services specified in @var{file} that are not currently running; if a service is currently running, this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop X} or @code{herd restart X})." +#: guix-git/doc/guix.texi:38054 +#, fuzzy +#| msgid "This effects all the configuration specified in @var{file}. The command starts Shepherd services specified in @var{file} that are not currently running; if a service is currently running, this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop X} or @code{herd restart X})." +msgid "This effects all the configuration specified in @var{file}. The command starts Shepherd services specified in @var{file} that are not currently running; if a service is currently running, this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop @var{service}} or @code{herd restart @var{service}})." msgstr "Dieser Befehl setzt die in der @var{Datei} festgelegte Konfiguration vollständig um. Der Befehl startet die in der @var{Datei} angegebenen Shepherd-Dienste, die aktuell nicht laufen; bei aktuell laufenden Diensten wird sichergestellt, dass sie aktualisiert werden, sobald sie das nächste Mal angehalten wurden (z.B.@: durch @code{herd stop X} oder @code{herd restart X})." #. type: table -#: guix-git/doc/guix.texi:37581 +#: guix-git/doc/guix.texi:38060 msgid "This command creates a new generation whose number is one greater than the current generation (as reported by @command{guix home list-generations}). If that generation already exists, it will be overwritten. This behavior mirrors that of @command{guix package} (@pxref{Invoking guix package})." msgstr "Dieser Befehl erzeugt eine neue Generation, deren Nummer (wie @command{guix home list-generations} sie anzeigt) um eins größer als die der aktuellen Generation ist. Wenn die so nummerierte Generation bereits existiert, wird sie überschrieben. Dieses Verhalten entspricht dem von @command{guix package} (siehe @ref{Invoking guix package})." #. type: cindex -#: guix-git/doc/guix.texi:37582 +#: guix-git/doc/guix.texi:38061 #, no-wrap msgid "provenance tracking, of the home environment" msgstr "Provenienzverfolgung, der Persönlichen Umgebung" #. type: table -#: guix-git/doc/guix.texi:37587 +#: guix-git/doc/guix.texi:38066 msgid "Upon completion, the new home is deployed under @file{~/.guix-home}. This directory contains @dfn{provenance meta-data}: the list of channels in use (@pxref{Channels}) and @var{file} itself, when available. You can view the provenance information by running:" msgstr "Nach Abschluss wird die neue Persönliche Umgebung unter @file{~/.guix-home} verfügbar gemacht. Das Verzeichnis enthält @dfn{Provenienz-Metadaten}: Dazu gehören die Liste der Kanäle, die benutzt wurden (siehe @ref{Channels}) und die @var{Datei} selbst, wenn sie verfügbar ist. Sie können die Provenienzinformationen auf diese Weise ansehen:" #. type: example -#: guix-git/doc/guix.texi:37590 +#: guix-git/doc/guix.texi:38069 #, no-wrap msgid "guix home describe\n" msgstr "guix home describe\n" #. type: table -#: guix-git/doc/guix.texi:37596 +#: guix-git/doc/guix.texi:38075 msgid "This information is useful should you later want to inspect how this particular generation was built. In fact, assuming @var{file} is self-contained, you can later rebuild generation @var{n} of your home environment with:" msgstr "Diese Informationen sind nützlich, falls Sie später inspizieren möchten, wie diese spezielle Generation erstellt wurde. Falls die @var{Datei} eigenständig ist, also keine anderen Dateien zum Funktionieren braucht, dann können Sie tatsächlich die Generation @var{n} Ihrer Persönlichen Umgebung später erneut erstellen mit:" #. type: example -#: guix-git/doc/guix.texi:37602 +#: guix-git/doc/guix.texi:38081 #, no-wrap msgid "" "guix time-machine \\\n" @@ -69415,110 +70346,110 @@ msgstr "" "\n" #. type: table -#: guix-git/doc/guix.texi:37609 +#: guix-git/doc/guix.texi:38088 msgid "You can think of it as some sort of built-in version control! Your home is not just a binary artifact: @emph{it carries its own source}." msgstr "Sie können sich das als eine Art eingebaute Versionskontrolle vorstellen! Ihre Persönliche Umgebung ist nicht nur ein binäres Erzeugnis: @emph{Es enthält seinen eigenen Quellcode}." #. type: cindex -#: guix-git/doc/guix.texi:37615 +#: guix-git/doc/guix.texi:38094 #, no-wrap msgid "home generations" msgstr "Generationen von Persönlichen Umgebungen" #. type: table -#: guix-git/doc/guix.texi:37618 +#: guix-git/doc/guix.texi:38097 msgid "Switch to an existing home generation. This action atomically switches the home profile to the specified home generation." msgstr "Zu einer bestehenden Generation der Persönlichen Umgebung wechseln. Diese Aktion wechselt das Profil der Persönlichen Umgebung atomar auf die angegebene Generation der Persönlichen Umgebung." #. type: table -#: guix-git/doc/guix.texi:37622 +#: guix-git/doc/guix.texi:38101 msgid "The target generation can be specified explicitly by its generation number. For example, the following invocation would switch to home generation 7:" msgstr "Die Zielgeneration kann ausdrücklich über ihre Generationsnummer angegeben werden. Zum Beispiel würde folgender Aufruf einen Wechsel zur Generation 7 der Persönlichen Umgebung bewirken:" #. type: example -#: guix-git/doc/guix.texi:37625 +#: guix-git/doc/guix.texi:38104 #, no-wrap msgid "guix home switch-generation 7\n" msgstr "guix home switch-generation 7\n" #. type: example -#: guix-git/doc/guix.texi:37636 +#: guix-git/doc/guix.texi:38115 #, no-wrap msgid "guix home switch-generation -- -1\n" msgstr "guix home switch-generation -- -1\n" #. type: table -#: guix-git/doc/guix.texi:37645 +#: guix-git/doc/guix.texi:38124 msgid "Switch to the preceding home generation. This is the inverse of @command{reconfigure}, and it is exactly the same as invoking @command{switch-generation} with an argument of @code{-1}." msgstr "Zur vorhergehenden Generation der Persönlichen Umgebung wechseln. Dies ist die Umkehrung von @command{reconfigure} und tut genau dasselbe wie @command{switch-generation} mit dem Argument @code{-1} aufzurufen." #. type: cindex -#: guix-git/doc/guix.texi:37647 +#: guix-git/doc/guix.texi:38126 #, no-wrap msgid "deleting home generations" msgstr "Löschen von Generationen der Persönlichen Umgebung" #. type: table -#: guix-git/doc/guix.texi:37652 +#: guix-git/doc/guix.texi:38131 msgid "Delete home generations, making them candidates for garbage collection (@pxref{Invoking guix gc}, for information on how to run the ``garbage collector'')." msgstr "Generationen der Persönlichen Umgebung löschen, wodurch diese zu Kandidaten für den Müllsammler werden (siehe @ref{Invoking guix gc} für Informationen, wie Sie den „Müllsammler“ laufen lassen)." #. type: table -#: guix-git/doc/guix.texi:37656 +#: guix-git/doc/guix.texi:38135 msgid "This works in the same way as @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). With no arguments, all home generations but the current one are deleted:" msgstr "Es funktioniert auf die gleiche Weise wie @samp{guix package --delete-generations} (siehe @ref{Invoking guix package, @option{--delete-generations}}). Wenn keine Argumente angegeben werden, werden alle Generationen der Persönlichen Umgebung außer der aktuellen gelöscht:" #. type: example -#: guix-git/doc/guix.texi:37659 +#: guix-git/doc/guix.texi:38138 #, no-wrap msgid "guix home delete-generations\n" msgstr "guix home delete-generations\n" #. type: table -#: guix-git/doc/guix.texi:37663 +#: guix-git/doc/guix.texi:38142 msgid "You can also select the generations you want to delete. The example below deletes all the home generations that are more than two months old:" msgstr "Sie können auch eine Auswahl treffen, welche Generationen Sie löschen möchten. Das folgende Beispiel hat die Löschung aller Generationen der Persönlichen Umgebung zur Folge, die älter als zwei Monate sind:" #. type: example -#: guix-git/doc/guix.texi:37666 +#: guix-git/doc/guix.texi:38145 #, no-wrap msgid "guix home delete-generations 2m\n" msgstr "guix home delete-generations 2m\n" #. type: table -#: guix-git/doc/guix.texi:37672 +#: guix-git/doc/guix.texi:38151 msgid "Build the derivation of the home environment, which includes all the configuration files and programs needed. This action does not actually install anything." msgstr "Die Ableitung der Persönlichen Umgebung erstellen, einschließlich aller Konfigurationsdateien und Programme, die benötigt werden. Diese Aktion installiert jedoch nichts davon." #. type: table -#: guix-git/doc/guix.texi:37676 +#: guix-git/doc/guix.texi:38155 msgid "Describe the current home generation: its file name, as well as provenance information when available." msgstr "Die aktuelle Generation der Persönlichen Umgebung beschreiben: ihren Dateinamen sowie Provenienzinformationen, falls verfügbar." #. type: table -#: guix-git/doc/guix.texi:37682 +#: guix-git/doc/guix.texi:38161 msgid "List a summary of each generation of the home environment available on disk, in a human-readable way. This is similar to the @option{--list-generations} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "Eine für Menschen verständliche Zusammenfassung jeder auf der Platte verfügbaren Generation der Persönlichen Umgebung ausgeben. Dies ähnelt der Befehlszeilenoption @option{--list-generations} von @command{guix package} (siehe @ref{Invoking guix package})." #. type: example -#: guix-git/doc/guix.texi:37690 +#: guix-git/doc/guix.texi:38169 #, no-wrap msgid "$ guix home list-generations 10d\n" msgstr "$ guix home list-generations 10d\n" #. type: item -#: guix-git/doc/guix.texi:37692 +#: guix-git/doc/guix.texi:38171 #, no-wrap msgid "import" msgstr "import" #. type: table -#: guix-git/doc/guix.texi:37699 +#: guix-git/doc/guix.texi:38178 msgid "Generate a @dfn{home environment} from the packages in the default profile and configuration files found in the user's home directory. The configuration files will be copied to the specified directory, and a @file{home-configuration.scm} will be populated with the home environment. Note that not every home service that exists is supported (@pxref{Home Services})." msgstr "Eine Deklaration der Persönlichen Umgebung anhand der Pakete im Standardprofil und der Konfigurationsdateien im Persönlichen Verzeichnis des Benutzers anlegen. Dabei werden die Konfigurationsdateien in das angegebene Verzeichnis kopiert und eine @file{home-configuration.scm} wird darin mit dem, was die Persönliche Umgebung ausmacht, gefüllt. Beachten Sie, dass @code{guix home import} nicht alle Persönlichen Dienste, die es gibt, unterstützt (siehe @ref{Home Services})." #. type: example -#: guix-git/doc/guix.texi:37703 +#: guix-git/doc/guix.texi:38182 #, no-wrap msgid "" "$ guix home import ~/guix-config\n" @@ -69528,52 +70459,64 @@ msgstr "" "guix home: Alle Konfigurationsdateien für die Persönliche Umgebung wurden in „/home/alice/guix-config“ geschrieben\n" #. type: table -#: guix-git/doc/guix.texi:37718 +#: guix-git/doc/guix.texi:38197 msgid "Consider the home-environment @var{expr} evaluates to. This is an alternative to specifying a file which evaluates to a home environment." msgstr "Als Konfiguration der Persönlichen Umgebung das @code{home-environment}-Objekt betrachten, zu dem der @var{Ausdruck} ausgewertet wird. Dies ist eine Alternative dazu, die Konfiguration in einer Datei festzulegen." +#. type: table +#: guix-git/doc/guix.texi:38200 +#, fuzzy +#| msgid "Instruct @command{guix system reconfigure} to allow system downgrades." +msgid "Instruct @command{guix home reconfigure} to allow system downgrades." +msgstr "An @command{guix system reconfigure} die Anweisung erteilen, Systemherabstufungen zuzulassen." + +#. type: table +#: guix-git/doc/guix.texi:38207 +msgid "Just like @command{guix system}, @command{guix home reconfigure}, by default, prevents you from downgrading your home to older or unrelated revisions compared to the channel revisions that were used to deploy it---those shown by @command{guix home describe}. Using @option{--allow-downgrades} allows you to bypass that check, at the risk of downgrading your home---be careful!" +msgstr "" + #. type: cindex -#: guix-git/doc/guix.texi:37724 +#: guix-git/doc/guix.texi:38213 #, no-wrap msgid "documentation, searching for" msgstr "Dokumentation, Suche danach" #. type: cindex -#: guix-git/doc/guix.texi:37725 +#: guix-git/doc/guix.texi:38214 #, no-wrap msgid "searching for documentation" msgstr "Suchen nach Dokumentation" #. type: cindex -#: guix-git/doc/guix.texi:37726 +#: guix-git/doc/guix.texi:38215 #, no-wrap msgid "Info, documentation format" msgstr "Info, Dokumentationsformat" #. type: cindex -#: guix-git/doc/guix.texi:37727 +#: guix-git/doc/guix.texi:38216 #, no-wrap msgid "man pages" msgstr "man-Pages (Handbuchseiten)" #. type: cindex -#: guix-git/doc/guix.texi:37728 +#: guix-git/doc/guix.texi:38217 #, no-wrap msgid "manual pages" msgstr "Handbuchseiten („Man-Pages“)" #. type: Plain text -#: guix-git/doc/guix.texi:37735 +#: guix-git/doc/guix.texi:38224 msgid "In most cases packages installed with Guix come with documentation. There are two main documentation formats: ``Info'', a browsable hypertext format used for GNU software, and ``manual pages'' (or ``man pages''), the linear documentation format traditionally found on Unix. Info manuals are accessed with the @command{info} command or with Emacs, and man pages are accessed using @command{man}." msgstr "In den meisten Fällen liegt den mit Guix installierten Paketen auch Dokumentation bei, die diese beschreibt. Die zwei üblichsten Formate für Dokumentation sind „Info“, ein durchsuchbares Hypertextformat, das für GNU-Software benutzt wird, und sogenannte „Handbuchseiten“ (englisch „Manual Pages“, kurz Man-Pages), das linear aufgebaute Dokumentationsformat, das auf Unix traditionell mitgeliefert wird. Info-Handbücher können mit dem Befehl @command{info} oder mit Emacs abgerufen werden, auf Handbuchseiten kann mit dem Befehl @command{man} zugegriffen werden." #. type: Plain text -#: guix-git/doc/guix.texi:37739 +#: guix-git/doc/guix.texi:38228 msgid "You can look for documentation of software installed on your system by keyword. For example, the following command searches for information about ``TLS'' in Info manuals:" msgstr "Sie können die Dokumentation von auf Ihrem System installierter Software nach einem Schlüsselwort durchsuchen. Zum Beispiel suchen Sie mit folgendem Befehl in den Info-Handbüchern nach „TLS“." #. type: example -#: guix-git/doc/guix.texi:37747 +#: guix-git/doc/guix.texi:38236 #, no-wrap msgid "" "$ info -k TLS\n" @@ -69591,12 +70534,12 @@ msgstr "" "…\n" #. type: Plain text -#: guix-git/doc/guix.texi:37753 +#: guix-git/doc/guix.texi:38242 msgid "The command below searches for the same keyword in man pages@footnote{The database searched by @command{man -k} is only created in profiles that contain the @code{man-db} package.}:" msgstr "Mit folgendem Befehl suchen Sie dasselbe Schlüsselwort in Handbuchseiten@footnote{Die von @command{man -k} durchsuchte Datenbank wird nur erstellt, wenn Ihre Umgebung das Paket @code{man-db} enthält.}:" #. type: example -#: guix-git/doc/guix.texi:37759 +#: guix-git/doc/guix.texi:38248 #, no-wrap msgid "" "$ man -k TLS\n" @@ -69610,97 +70553,97 @@ msgstr "" "…\n" #. type: Plain text -#: guix-git/doc/guix.texi:37765 +#: guix-git/doc/guix.texi:38254 msgid "These searches are purely local to your computer so you have the guarantee that documentation you find corresponds to what you have actually installed, you can access it off-line, and your privacy is respected." msgstr "Diese Suchvorgänge finden ausschließlich lokal auf Ihrem Rechner statt, wodurch gewährleistet ist, dass die Fundstellen zur von Ihnen auch tatsächlich installierten Software passen, Sie für den Zugriff keine Internetverbindung brauchen und Datenschutz gewährleistet bleibt." #. type: Plain text -#: guix-git/doc/guix.texi:37768 +#: guix-git/doc/guix.texi:38257 msgid "Once you have these results, you can view the relevant documentation by running, say:" msgstr "Sobald Sie die Fundstellen kennen, können Sie zum Beispiel so die entsprechende Dokumentation anzeigen lassen:" #. type: example -#: guix-git/doc/guix.texi:37771 +#: guix-git/doc/guix.texi:38260 #, no-wrap msgid "$ info \"(gnutls)Core TLS API\"\n" msgstr "$ info \"(gnutls)Core TLS API\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:37775 +#: guix-git/doc/guix.texi:38264 msgid "or:" msgstr "oder" #. type: example -#: guix-git/doc/guix.texi:37778 +#: guix-git/doc/guix.texi:38267 #, no-wrap msgid "$ man certtool\n" msgstr "$ man certtool\n" #. type: Plain text -#: guix-git/doc/guix.texi:37786 +#: guix-git/doc/guix.texi:38275 msgid "Info manuals contain sections and indices as well as hyperlinks like those found in Web pages. The @command{info} reader (@pxref{Top, Info reader,, info-stnd, Stand-alone GNU Info}) and its Emacs counterpart (@pxref{Misc Help,,, emacs, The GNU Emacs Manual}) provide intuitive key bindings to navigate manuals. @xref{Getting Started,,, info, Info: An Introduction}, for an introduction to Info navigation." msgstr "Info-Handbücher sind in Abschnitte unterteilt und verfügen über Register sowie Hyperlinks, wie jene, die Sie auch von Webseiten kennen. Der @command{info}-Betrachter (siehe @ref{Top, Info-Betrachter,, info-stnd, Stand-alone GNU Info}) und sein Gegenstück für Emacs (siehe @ref{Misc Help,,, emacs, The GNU Emacs Manual}) verfügen über leicht erlernbare Tastenkürzel, mit denen Sie in Handbüchern navigieren können. Siehe @ref{Getting Started,,, info, Info: An Introduction} für eine Einführung in die Info-Navigation." #. type: cindex -#: guix-git/doc/guix.texi:37790 +#: guix-git/doc/guix.texi:38279 #, no-wrap msgid "debugging files" msgstr "Dateien zur Fehlersuche" #. type: Plain text -#: guix-git/doc/guix.texi:37796 +#: guix-git/doc/guix.texi:38285 msgid "Program binaries, as produced by the GCC compilers for instance, are typically written in the ELF format, with a section containing @dfn{debugging information}. Debugging information is what allows the debugger, GDB, to map binary code to source code; it is required to debug a compiled program in good conditions." msgstr "Die Binärdateien von Programmen, wie sie zum Beispiel von den GCC-Compilern erzeugt werden, sind in der Regel im ELF-Format gespeichert und enthalten eine Sektion mit @dfn{Informationen zur Fehlersuche} (englisch „Debugging Information“). Informationen zur Fehlersuche machen es möglich, dass der Debugger, GDB, Binärcode dem Quellcode zuordnen kann. Das ist nötig, damit es mit etwas Glück leicht ist, Fehler in einem kompilierten Programm zu suchen." #. type: Plain text -#: guix-git/doc/guix.texi:37800 +#: guix-git/doc/guix.texi:38289 msgid "This chapter explains how to use separate debug info when packages provide it, and how to rebuild packages with debug info when it's missing." msgstr "Dieses Kapitel erklärt, wie abgetrennte Informationen zur Fehlersuche („Debug“-Informationen) verwendet werden können, wenn Pakete solche anbieten, und wie Pakete mit Informationen zur Fehlersuche neu erstellt werden können, wenn die Pakete keine anbieten." #. type: Plain text -#: guix-git/doc/guix.texi:37816 +#: guix-git/doc/guix.texi:38305 msgid "The problem with debugging information is that is takes up a fair amount of disk space. For example, debugging information for the GNU C Library weighs in at more than 60 MiB@. Thus, as a user, keeping all the debugging info of all the installed programs is usually not an option. Yet, space savings should not come at the cost of an impediment to debugging---especially in the GNU system, which should make it easier for users to exert their computing freedom (@pxref{GNU Distribution})." msgstr "Das Problem bei Informationen zur Fehlersuche ist, dass dadurch einiges an Plattenplatz verbraucht wird. Zum Beispiel steuern die Informationen zur Fehlersuche in der GNU-C-Bibliothek mehr als 60 MiB bei. Als ein Nutzer ist es deswegen in der Regel nicht möglich, sämtliche Fehlersuchinformationen für alle installierten Programme zu speichern. Andererseits sollten Platzeinsparnisse nicht auf Kosten der Fehlersuche gehen@tie{}— besonders im GNU-System, wo es Nutzern leicht fallen sollte, ihre Freiheit, wie sie ihre Rechner benutzen, auszuüben (siehe @ref{GNU Distribution})." #. type: Plain text -#: guix-git/doc/guix.texi:37823 +#: guix-git/doc/guix.texi:38312 msgid "Thankfully, the GNU Binary Utilities (Binutils) and GDB provide a mechanism that allows users to get the best of both worlds: debugging information can be stripped from the binaries and stored in separate files. GDB is then able to load debugging information from those files, when they are available (@pxref{Separate Debug Files,,, gdb, Debugging with GDB})." msgstr "Glücklicherweise gibt es in den GNU Binary Utilities (Binutils) und GDB einen Mechanismus, mit dem Nutzer das Beste aus beiden Welten bekommen: Informationen zur Fehlersuche können von den davon beschriebenen Binärdateien losgelöst und in separaten Dateien gespeichert werden. GDB kann dann Fehlersuchinformationen laden, wenn diese Dateien verfügbar sind (siehe @ref{Separate Debug Files,,, gdb, Debugging with GDB})." #. type: Plain text -#: guix-git/doc/guix.texi:37831 +#: guix-git/doc/guix.texi:38320 msgid "The GNU distribution takes advantage of this by storing debugging information in the @code{lib/debug} sub-directory of a separate package output unimaginatively called @code{debug} (@pxref{Packages with Multiple Outputs}). Users can choose to install the @code{debug} output of a package when they need it. For instance, the following command installs the debugging information for the GNU C Library and for GNU Guile:" msgstr "Die GNU-Distribution nutzt diesen Mechanismus aus, indem sie Informationen zur Fehlersuche im Unterverzeichnis @code{lib/debug} einer separaten Paketausgabe speichert, die den fantasielosen Namen @code{debug} trägt. Mit dem folgenden Befehl können Sie zum Beispiel Informationen zur Fehlersuche für die GNU-C-Bibliothek und für GNU Guile installieren:" #. type: example -#: guix-git/doc/guix.texi:37834 +#: guix-git/doc/guix.texi:38323 #, no-wrap msgid "guix install glibc:debug guile:debug\n" msgstr "guix install glibc:debug guile:debug\n" #. type: Plain text -#: guix-git/doc/guix.texi:37840 +#: guix-git/doc/guix.texi:38329 msgid "GDB must then be told to look for debug files in the user's profile, by setting the @code{debug-file-directory} variable (consider setting it from the @file{~/.gdbinit} file, @pxref{Startup,,, gdb, Debugging with GDB}):" msgstr "GDB muss dann angewiesen werden, im Profil des Nutzers nach Informationen zur Fehlersuche zu schauen, indem Sie die Variable @code{debug-file-directory} entsprechend setzen (vielleicht möchsten Sie die Variable in der Datei @file{~/.gdbinit} festlegen, siehe @ref{Startup,,, gdb, Debugging with GDB}):" #. type: example -#: guix-git/doc/guix.texi:37843 +#: guix-git/doc/guix.texi:38332 #, no-wrap msgid "(gdb) set debug-file-directory ~/.guix-profile/lib/debug\n" msgstr "(gdb) set debug-file-directory ~/.guix-profile/lib/debug\n" #. type: Plain text -#: guix-git/doc/guix.texi:37847 +#: guix-git/doc/guix.texi:38336 msgid "From there on, GDB will pick up debugging information from the @file{.debug} files under @file{~/.guix-profile/lib/debug}." msgstr "Von da an wird GDB auch aus den @file{.debug}-Dateien unter @file{~/.guix-profile/lib/debug} auslesbare Informationen zur Fehlersuche verwenden." #. type: Plain text -#: guix-git/doc/guix.texi:37852 +#: guix-git/doc/guix.texi:38341 msgid "Below is an alternative GDB script which is useful when working with other profiles. It takes advantage of the optional Guile integration in GDB. This snippet is included by default on Guix System in the @file{~/.gdbinit} file." msgstr "Im Folgenden sehen Sie ein alternatives GDB-Skript, um mit anderen Profilen zu arbeiten. Es macht Gebrauch von der optionalen Guile-Einbindung in GDB. Dieses Schnipsel wird auf Guix System nach Voreinstellung in der @file{~/.gdbinit}-Datei zur Verfügung gestellt." #. type: example -#: guix-git/doc/guix.texi:37860 +#: guix-git/doc/guix.texi:38349 #, no-wrap msgid "" "guile\n" @@ -69718,32 +70661,32 @@ msgstr "" "end\n" #. type: Plain text -#: guix-git/doc/guix.texi:37868 +#: guix-git/doc/guix.texi:38357 msgid "In addition, you will most likely want GDB to be able to show the source code being debugged. To do that, you will have to unpack the source code of the package of interest (obtained with @code{guix build --source}, @pxref{Invoking guix build}), and to point GDB to that source directory using the @code{directory} command (@pxref{Source Path, @code{directory},, gdb, Debugging with GDB})." msgstr "Des Weiteren werden Sie höchstwahrscheinlich wollen, dass GDB den Quellcode, der auf Fehler untersucht wird, anzeigen kann. Dazu müssen sie den Quellcodes des Pakets, für das Sie sich interessieren (laden Sie ihn mit @code{guix build --source} herunter; siehe @ref{Invoking guix build}), und dann weisen Sie GDB an, in dem Verzeichnis zu suchen, indem Sie den @code{directory}-Befehl benutzen (siehe @ref{Source Path, @code{directory},, gdb, Debugging with GDB})." #. type: Plain text -#: guix-git/doc/guix.texi:37876 +#: guix-git/doc/guix.texi:38365 msgid "The @code{debug} output mechanism in Guix is implemented by the @code{gnu-build-system} (@pxref{Build Systems}). Currently, it is opt-in---debugging information is available only for the packages with definitions explicitly declaring a @code{debug} output. To check whether a package has a @code{debug} output, use @command{guix package --list-available} (@pxref{Invoking guix package})." msgstr "Der Mechanismus mit der @code{debug}-Ausgabe wird in Guix als Teil des @code{gnu-build-system} implementiert (siehe @ref{Build Systems}). Zurzeit ist sie optional@tie{}— nur für Pakete, in deren Definition ausdrücklich eine @code{debug}-Ausgabe deklariert wurde, sind Informationen zur Fehlersuche verfügbar. Um zu überprüfen, ob Pakete eine @code{debug}-Ausgabe mit Informationen zur Fehlersuche haben, benutzen Sie @command{guix package --list-available} (siehe @ref{Invoking guix package})." #. type: Plain text -#: guix-git/doc/guix.texi:37878 +#: guix-git/doc/guix.texi:38367 msgid "Read on for how to deal with packages lacking a @code{debug} output." msgstr "Lesen Sie weiter, um zu erfahren, wie Sie mit Paketen ohne eine @code{debug}-Ausgabe umgehen können." #. type: Plain text -#: guix-git/doc/guix.texi:37890 +#: guix-git/doc/guix.texi:38379 msgid "As we saw above, some packages, but not all, provide debugging info in a @code{debug} output. What can you do when debugging info is missing? The @option{--with-debug-info} option provides a solution to that: it allows you to rebuild the package(s) for which debugging info is missing---and only those---and to graft those onto the application you're debugging. Thus, while it's not as fast as installing a @code{debug} output, it is relatively inexpensive." msgstr "Wie wir oben gesehen haben, bieten manche Pakete, aber nicht alle, Informationen zur Fehlersuche in einer @code{debug}-Ausgabe an. Doch was tut man mit denen ohne Fehlersuchinformationen? Die Befehlszeilenoption @option{--with-debug-info} stellt eine Lösung dafür da: Mit ihr kann jedes Paket, für das solche Debug-Informationen fehlen,@tie{}— und nur solche@tie{}— neu erstellt werden und die Anwendung, in der Sie Fehler suchen, wird damit veredelt. Obwohl es also nicht so schnell geht wie eine @code{debug}-Ausgabe zu installieren, ist es doch ein verhältnismäßig kleiner Aufwand." #. type: Plain text -#: guix-git/doc/guix.texi:37895 +#: guix-git/doc/guix.texi:38384 msgid "Let's illustrate that. Suppose you're experiencing a bug in Inkscape and would like to see what's going on in GLib, a library that's deep down in its dependency graph. As it turns out, GLib does not have a @code{debug} output and the backtrace GDB shows is all sadness:" msgstr "Schauen wir uns das näher an. Angenommen, Sie erleben einen Fehler in Inkscape und würden gerne wissen, was dabei in GLib passiert. GLib ist eine Bibliothek, die tief im Abhängigkeitsgraphen von GLib liegt. Wie sich herausstellt, verfügt GLib über keine @code{debug}-Ausgabe. Die Rückverfolgung („Backtrace“), die GDB anzeigt, ist zu nichts nütze:" #. type: example -#: guix-git/doc/guix.texi:37906 +#: guix-git/doc/guix.texi:38395 #, no-wrap msgid "" "(gdb) bt\n" @@ -69767,17 +70710,17 @@ msgstr "" " at dl-init.c:118\n" #. type: Plain text -#: guix-git/doc/guix.texi:37910 +#: guix-git/doc/guix.texi:38399 msgid "To address that, you install Inkscape linked against a variant GLib that contains debug info:" msgstr "Dagegen hilft, wenn Sie Inkscape so installieren, dass es an eine Variante von GLib gebunden ist, die Informationen zur Fehlersuche enthält." #. type: Plain text -#: guix-git/doc/guix.texi:37916 +#: guix-git/doc/guix.texi:38405 msgid "This time, debugging will be a whole lot nicer:" msgstr "Und schon sieht die Fehlersuche wesentlich besser aus:" #. type: example -#: guix-git/doc/guix.texi:37934 +#: guix-git/doc/guix.texi:38423 #, no-wrap msgid "" "$ gdb --args sh -c 'exec inkscape'\n" @@ -69815,28 +70758,28 @@ msgstr "" "…\n" #. type: Plain text -#: guix-git/doc/guix.texi:37937 +#: guix-git/doc/guix.texi:38426 msgid "Much better!" msgstr "Viel besser!" #. type: Plain text -#: guix-git/doc/guix.texi:37941 +#: guix-git/doc/guix.texi:38430 msgid "Note that there can be packages for which @option{--with-debug-info} will not have the desired effect. @xref{Package Transformation Options, @option{--with-debug-info}}, for more information." msgstr "Beachten Sie, dass es Pakete geben kann, für die sich @option{--with-debug-info} nicht wie gewünscht auswirkt. Siehe @ref{Package Transformation Options, @option{--with-debug-info}} für mehr Informationen." #. type: cindex -#: guix-git/doc/guix.texi:37945 +#: guix-git/doc/guix.texi:38434 #, no-wrap msgid "security updates" msgstr "Sicherheitsaktualisierungen" #. type: Plain text -#: guix-git/doc/guix.texi:37954 +#: guix-git/doc/guix.texi:38443 msgid "Occasionally, important security vulnerabilities are discovered in software packages and must be patched. Guix developers try hard to keep track of known vulnerabilities and to apply fixes as soon as possible in the @code{master} branch of Guix (we do not yet provide a ``stable'' branch containing only security updates). The @command{guix lint} tool helps developers find out about vulnerable versions of software packages in the distribution:" msgstr "Ab und zu werden wichtige Sicherheitsschwachstellen in Software-Paketen entdeckt, die mit Patches behoben werden müssen. Guix-Entwickler geben ihr Bestes, bezüglich bekannter Schwachstellen auf dem Laufenden zu bleiben und so bald wie möglich Patches dafür auf den @code{master}-Branch von Guix aufzuspielen (einen stabilen „stable“-Branch ohne riskante Änderungen haben wir noch nicht). Das Werkzeug @command{guix lint} hilft Entwicklern dabei, verwundbare Versionen von Softwarepaketen in der Distribution zu finden:" #. type: smallexample -#: guix-git/doc/guix.texi:37961 +#: guix-git/doc/guix.texi:38450 #, no-wrap msgid "" "$ guix lint -c cve\n" @@ -69852,39 +70795,39 @@ msgstr "" "…\n" #. type: Plain text -#: guix-git/doc/guix.texi:37964 +#: guix-git/doc/guix.texi:38453 msgid "@xref{Invoking guix lint}, for more information." msgstr "Siehe @ref{Invoking guix lint} für weitere Informationen." #. type: Plain text -#: guix-git/doc/guix.texi:37973 +#: guix-git/doc/guix.texi:38462 msgid "Guix follows a functional package management discipline (@pxref{Introduction}), which implies that, when a package is changed, @emph{every package that depends on it} must be rebuilt. This can significantly slow down the deployment of fixes in core packages such as libc or Bash, since basically the whole distribution would need to be rebuilt. Using pre-built binaries helps (@pxref{Substitutes}), but deployment may still take more time than desired." msgstr "Guix verfolgt eine funktionale Disziplin bei der Paketverwaltung (siehe @ref{Introduction}), was impliziert, dass bei jeder Änderung an einem Paket @emph{jedes davon abhängige Paket} neu erstellt werden muss. Ohne einen Mechanismus würde das Ausliefern von Sicherheitsaktualisierungen in Kernpaketen wie libc oder Bash dadurch deutlich verlangsamt@tie{}— schließlich müsste quasi die gesamte Distribution neu erstellt werden. Vorerstellte Binärdateien zu benutzen, wäre schon einmal eine Hilfe (siehe @ref{Substitutes}), aber die Auslieferung wäre immer noch laangsamer, als wir es uns wünschen." #. type: cindex -#: guix-git/doc/guix.texi:37974 +#: guix-git/doc/guix.texi:38463 #, no-wrap msgid "grafts" msgstr "Veredelungen" #. type: Plain text -#: guix-git/doc/guix.texi:37982 +#: guix-git/doc/guix.texi:38471 msgid "To address this, Guix implements @dfn{grafts}, a mechanism that allows for fast deployment of critical updates without the costs associated with a whole-distribution rebuild. The idea is to rebuild only the package that needs to be patched, and then to ``graft'' it onto packages explicitly installed by the user and that were previously referring to the original package. The cost of grafting is typically very low, and order of magnitudes lower than a full rebuild of the dependency chain." msgstr "Als Gegenmittel sind in Guix @dfn{Veredelungen} implementiert. Diese stellen einen Mechanismus dar, mit dem kritische Aktualisierungen schnell an Guix’ Benutzer ausgeliefert werden können, ohne die Nachteile, zu denen es käme, wenn wir die gesamte Distribution neu erstellen müssten. Die Idee dahinter ist, nur das Paket, das einen Patch braucht, neu zu erstellen, und damit dann Pakete, die der Nutzer ausdrücklich installiert hat und die vorher Referenzen auf das alte Paket enthielten, zu „veredeln“. So eine Veredelung kostet typischerweise nur sehr wenig, d.h.@: um Größenordnungen weniger, als die ganze Abhängigkeitskette neu zu erstellen." #. type: cindex -#: guix-git/doc/guix.texi:37983 +#: guix-git/doc/guix.texi:38472 #, no-wrap msgid "replacements of packages, for grafts" msgstr "Ersetzungen von Paketen, bei Veredelungen" #. type: Plain text -#: guix-git/doc/guix.texi:37989 +#: guix-git/doc/guix.texi:38478 msgid "For instance, suppose a security update needs to be applied to Bash. Guix developers will provide a package definition for the ``fixed'' Bash, say @code{bash-fixed}, in the usual way (@pxref{Defining Packages}). Then, the original package definition is augmented with a @code{replacement} field pointing to the package containing the bug fix:" msgstr "Nehmen wir also an, eine Sicherheitsaktualisierung müsste auf Bash angewandt werden. Guix-Entwickler schreiben dann eine Paketdefinition für die „reparierte“ Bash, sagen wir @code{bash-fixed}, auf die gleiche Art wie immer (siehe @ref{Defining Packages}). Dann wird die ursprüngliche Paketdefinition um ein @code{replacement}-Feld (zu Deutsch „Ersetzung“) erweitert, das auf das Paket verweist, in dem der Fehler behoben wurde:" #. type: lisp -#: guix-git/doc/guix.texi:37996 +#: guix-git/doc/guix.texi:38485 #, no-wrap msgid "" "(define bash\n" @@ -69900,190 +70843,190 @@ msgstr "" " (replacement bash-fixed)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:38006 +#: guix-git/doc/guix.texi:38495 msgid "From there on, any package depending directly or indirectly on Bash---as reported by @command{guix gc --requisites} (@pxref{Invoking guix gc})---that is installed is automatically ``rewritten'' to refer to @code{bash-fixed} instead of @code{bash}. This grafting process takes time proportional to the size of the package, usually less than a minute for an ``average'' package on a recent machine. Grafting is recursive: when an indirect dependency requires grafting, then grafting ``propagates'' up to the package that the user is installing." msgstr "Ab diesem Zeitpunkt wird jedes Paket, das Sie installieren und das direkt oder indirekt von Bash abhängt@tie{}— also die von @command{guix gc --requisites} ausgegebenen Pakete (siehe @ref{Invoking guix gc})@tie{}—, automatisch „umgeschrieben“, so dass es @code{bash-fixed} referenziert, wo es vorher @code{bash} referenziert hatte. Die Dauer dieses Veredelungsprozesses ist proportional zur Größe des Pakets und liegt auf einer neuen Maschine für ein „durchschnittliches“ Paket bei unter einer Minute. Veredeln ist rekursiv: Wenn eine indirekte Abhängigkeit veredelt werden muss, „propagiert“ der Veredelungsprozess durch die abhängigen Pakete und endet mit dem Paket, das der Nutzer installiert." #. type: Plain text -#: guix-git/doc/guix.texi:38014 +#: guix-git/doc/guix.texi:38503 msgid "Currently, the length of the name and version of the graft and that of the package it replaces (@code{bash-fixed} and @code{bash} in the example above) must be equal. This restriction mostly comes from the fact that grafting works by patching files, including binary files, directly. Other restrictions may apply: for instance, when adding a graft to a package providing a shared library, the original shared library and its replacement must have the same @code{SONAME} and be binary-compatible." msgstr "Zurzeit muss der Name und die Version einer Veredelung gleichlang wie die beim ersetzten Paket sein (also bei @code{bash-fixed} und @code{bash} im Beispiel oben). Diese Einschränkung kommt daher, dass beim Veredeln der Inhalt von Dateien, einschließlich Binärdateien, durch einfache Ersetzungen „geflickt“ wird. Es gibt noch mehr Einschränkungen: Wenn zum Beispiel ein Paket veredelt wird, das eine gemeinsame Bibliothek („Shared Library“) verwendet, muss der @code{SONAME} von Original und Ersatz derselbe sein und die beiden müssen binär kompatibel sein." #. type: Plain text -#: guix-git/doc/guix.texi:38018 +#: guix-git/doc/guix.texi:38507 msgid "The @option{--no-grafts} command-line option allows you to forcefully avoid grafting (@pxref{Common Build Options, @option{--no-grafts}}). Thus, the command:" msgstr "Mit der Befehlszeilenoption @option{--no-grafts} können Sie den Veredelungsmechanismus zwingend abschalten (siehe @ref{Common Build Options, @option{--no-grafts}}). Der Befehl" #. type: example -#: guix-git/doc/guix.texi:38021 +#: guix-git/doc/guix.texi:38510 #, no-wrap msgid "guix build bash --no-grafts\n" msgstr "guix build bash --no-grafts\n" #. type: Plain text -#: guix-git/doc/guix.texi:38025 +#: guix-git/doc/guix.texi:38514 msgid "returns the store file name of the original Bash, whereas:" msgstr "liefert also den Namen der Store-Datei mit der ursprünglichen Bash, während" #. type: example -#: guix-git/doc/guix.texi:38028 +#: guix-git/doc/guix.texi:38517 #, no-wrap msgid "guix build bash\n" msgstr "guix build bash\n" #. type: Plain text -#: guix-git/doc/guix.texi:38033 +#: guix-git/doc/guix.texi:38522 msgid "returns the store file name of the ``fixed'', replacement Bash. This allows you to distinguish between the two variants of Bash." msgstr "den Namen der Store-Datei für die „reparierte“ Ersatz-Bash liefert. Dadurch können Sie zwischen den beiden Varianten von Bash unterscheiden." #. type: Plain text -#: guix-git/doc/guix.texi:38036 +#: guix-git/doc/guix.texi:38525 msgid "To verify which Bash your whole profile refers to, you can run (@pxref{Invoking guix gc}):" msgstr "Um zu prüfen, welche Bash Ihr gesamtes Profil referenziert, können Sie diesen Befehl hier laufen lassen (siehe @ref{Invoking guix gc}):" #. type: example -#: guix-git/doc/guix.texi:38039 +#: guix-git/doc/guix.texi:38528 #, no-wrap msgid "guix gc -R $(readlink -f ~/.guix-profile) | grep bash\n" msgstr "guix gc -R $(readlink -f ~/.guix-profile) | grep bash\n" #. type: Plain text -#: guix-git/doc/guix.texi:38044 +#: guix-git/doc/guix.texi:38533 msgid "@dots{} and compare the store file names that you get with those above. Likewise for a complete Guix system generation:" msgstr "Dann vergleichen Sie die Namen der Store-Objekte, die Sie ausgegeben bekommen, mit den beiden Bash-Paketnamen oben. Ebenso können Sie eine ganze Guix-Systemgeneration überprüfen:" #. type: example -#: guix-git/doc/guix.texi:38047 +#: guix-git/doc/guix.texi:38536 #, no-wrap msgid "guix gc -R $(guix system build my-config.scm) | grep bash\n" msgstr "guix gc -R $(guix system build my-config.scm) | grep bash\n" #. type: Plain text -#: guix-git/doc/guix.texi:38051 +#: guix-git/doc/guix.texi:38540 msgid "Lastly, to check which Bash running processes are using, you can use the @command{lsof} command:" msgstr "Zum Schluss können Sie mit dem Befehl @command{lsof} überprüfen, welches von den Bash-Paketen die laufenden Prozesse benutzen:" #. type: example -#: guix-git/doc/guix.texi:38054 +#: guix-git/doc/guix.texi:38543 #, no-wrap msgid "lsof | grep /gnu/store/.*bash\n" msgstr "lsof | grep /gnu/store/.*bash\n" #. type: cindex -#: guix-git/doc/guix.texi:38062 +#: guix-git/doc/guix.texi:38551 #, no-wrap msgid "bootstrapping" msgstr "Bootstrapping" #. type: Plain text -#: guix-git/doc/guix.texi:38069 +#: guix-git/doc/guix.texi:38558 msgid "Bootstrapping in our context refers to how the distribution gets built ``from nothing''. Remember that the build environment of a derivation contains nothing but its declared inputs (@pxref{Introduction}). So there's an obvious chicken-and-egg problem: how does the first package get built? How does the first compiler get compiled?" msgstr "Wenn wir von Bootstrapping sprechen, meinen wir damit, wie die Distribution „aus dem Nichts“ erstellt werden kann. Erinnern Sie sich, wie die Erstellungsumgebung für eine Ableitung nichts außer ihren deklarierten Eingaben enthält (siehe @ref{Introduction})? Daraus ergibt sich ein Henne-Ei-Problem: Wie kann so das allererste Paket entstehen? Womit wird der Compiler kompiliert?" #. type: Plain text -#: guix-git/doc/guix.texi:38077 +#: guix-git/doc/guix.texi:38566 msgid "It is tempting to think of this question as one that only die-hard hackers may care about. However, while the answer to that question is technical in nature, its implications are wide-ranging. How the distribution is bootstrapped defines the extent to which we, as individuals and as a collective of users and hackers, can trust the software we run. It is a central concern from the standpoint of @emph{security} and from a @emph{user freedom} viewpoint." msgstr "Man könnte auf die Idee kommen, diese Frage sei nur für eingefleischte Hacker interessant. Doch auch wenn die Antwort darauf technischer Natur ist, hat sie weitreichende Implikationen. Vom Bootstrapping der Distribution hängt ab, wie sehr wir, als Individuen und als Kollektiv aus Nutzern und Hackern, der Software vertrauen können, die wir verwenden. Es ist ein zentrales Anliegen vom Standpunkt der @emph{Informationssicherheit}, aber auch im Hinblick auf die @emph{Freiheit} der Benutzer." #. type: cindex -#: guix-git/doc/guix.texi:38078 guix-git/doc/guix.texi:38290 +#: guix-git/doc/guix.texi:38567 guix-git/doc/guix.texi:38779 #, no-wrap msgid "bootstrap binaries" msgstr "Bootstrap-Binärdateien" #. type: Plain text -#: guix-git/doc/guix.texi:38088 +#: guix-git/doc/guix.texi:38577 msgid "The GNU system is primarily made of C code, with libc at its core. The GNU build system itself assumes the availability of a Bourne shell and command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and `grep'. Furthermore, build programs---programs that run @code{./configure}, @code{make}, etc.---are written in Guile Scheme (@pxref{Derivations}). Consequently, to be able to build anything at all, from scratch, Guix relies on pre-built binaries of Guile, GCC, Binutils, libc, and the other packages mentioned above---the @dfn{bootstrap binaries}." msgstr "Das GNU-System besteht in erster Linie aus C-Code, dessen Kern die libc ist. Das GNU-Erstellungssystem selbst setzt voraus, dass eine Bourne-Shell und die Kommandozeilenwerkzeuge der GNU-Coreutils, Awk, Findutils, „sed“ und „grep“ verfügbar sind. Des Weiteren sind Programme für die Erstellung@tie{}— also Programme, die @code{./configure}, @code{make}, etc.@: ausführen@tie{}— in Guile Scheme geschrieben (siehe @ref{Derivations}). Folglich ist es erforderlich, dass, damit überhaupt irgendetwas erstellt werden kann, Guix vorerstellte Binärdateien von Guile, GCC, Binutils, libc und den anderen oben genannten Paketen verwendet. Diese bezeichnen wir als die @dfn{Bootstrap-Binärdateien}." #. type: Plain text -#: guix-git/doc/guix.texi:38092 +#: guix-git/doc/guix.texi:38581 msgid "These bootstrap binaries are ``taken for granted'', though we can also re-create them if needed (@pxref{Preparing to Use the Bootstrap Binaries})." msgstr "Diese Bootstrap-Binärdateien werden als „gegeben“ angenommen, obwohl wir sie auch neu erzeugen können, falls nötig (siehe @ref{Preparing to Use the Bootstrap Binaries})." #. type: section -#: guix-git/doc/guix.texi:38099 +#: guix-git/doc/guix.texi:38588 #, no-wrap msgid "The Reduced Binary Seed Bootstrap" msgstr "Das Bootstrapping mit kleinerem Seed" #. type: Plain text -#: guix-git/doc/guix.texi:38106 +#: guix-git/doc/guix.texi:38595 msgid "Guix---like other GNU/Linux distributions---is traditionally bootstrapped from a set of bootstrap binaries: Bourne shell, command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and `grep' and Guile, GCC, Binutils, and the GNU C Library (@pxref{Bootstrapping}). Usually, these bootstrap binaries are ``taken for granted.''" msgstr "Guix wird@tie{}— wie andere GNU/Linux-Distributionen auch@tie{}— traditionell aus einer Menge von Bootstrap-Binärdateien heraus erstellt: der Bourne-Shell, den Befehlszeilenwerkzeugen der GNU Coreutils, Awk, Findutils, „sed“ und „grep“ sowie Guile, GCC, Binutils und der GNU-C-Bibliothek (siehe @ref{Bootstrapping}). Normalerweise werden diese Bootstrap-Binärdateien „stillschweigend vorausgesetzt“." #. type: Plain text -#: guix-git/doc/guix.texi:38112 +#: guix-git/doc/guix.texi:38601 msgid "Taking the bootstrap binaries for granted means that we consider them to be a correct and trustworthy ``seed'' for building the complete system. Therein lies a problem: the combined size of these bootstrap binaries is about 250MB (@pxref{Bootstrappable Builds,,, mes, GNU Mes}). Auditing or even inspecting these is next to impossible." msgstr "Die Bootstrap-Binärdateien stillschweigend vorauszusetzen bedeutet, dass wir sie als korrekte und vertrauenswürdige Grundlage ansehen, als „Seed“, aus dem heraus das komplette System erstellt wird. Darin liegt ein Problem: Die Gesamtgröße all dieser Bootstrapping-Binärdateien beträgt um die 250MB (siehe @ref{Bootstrappable Builds,,, mes, GNU Mes}). Ein Audit oder auch nur eine Inspektion davon ist praktisch unmöglich." #. type: Plain text -#: guix-git/doc/guix.texi:38117 +#: guix-git/doc/guix.texi:38606 msgid "For @code{i686-linux} and @code{x86_64-linux}, Guix now features a ``Reduced Binary Seed'' bootstrap @footnote{We would like to say: ``Full Source Bootstrap'' and while we are working towards that goal it would be hyperbole to use that term for what we do now.}." msgstr "Für @code{i686-linux} und @code{x86_64-linux} unterstützt Guix jetzt ein Bootstrapping „mit kleinerem Seed“ @footnote{Gerne würden wir „Bootstrapping aus dem Quellcode allein“ sagen und wir arbeiten auch daran, aber das schon jetzt zu sagen, wäre eine Übertreibung.}." #. type: Plain text -#: guix-git/doc/guix.texi:38123 +#: guix-git/doc/guix.texi:38612 msgid "The Reduced Binary Seed bootstrap removes the most critical tools---from a trust perspective---from the bootstrap binaries: GCC, Binutils and the GNU C Library are replaced by: @code{bootstrap-mescc-tools} (a tiny assembler and linker) and @code{bootstrap-mes} (a small Scheme Interpreter and a C compiler written in Scheme and the Mes C Library, built for TinyCC and for GCC)." msgstr "Beim Bootstrapping mit kleinerem Seed gehören die kritischsten Werkzeuge@tie{}— was Vertrauenswürdigkeit angeht@tie{}— nicht mehr zu den Bootstrapping-Binärdateien: Anstelle von GCC, Binutils und der GNU-C-Bibliothek bleiben nur @code{bootstrap-mescc-tools} (ein winziger Assembler und Binder) und @code{bootstrap-mes} (ein kleiner Scheme-Interpretierer sowie ein C-Compiler, der in Scheme geschrieben wurde, und die Mes-C-Bibliothek, mit der TinyCC und GCC erstellt werden können)." #. type: Plain text -#: guix-git/doc/guix.texi:38128 +#: guix-git/doc/guix.texi:38617 msgid "Using these new binary seeds the ``missing'' Binutils, GCC, and the GNU C Library are built from source. From here on the more traditional bootstrap process resumes. This approach has reduced the bootstrap binaries in size to about 145MB in Guix v1.1." msgstr "Mit Hilfe dieser neuen Seed-Binärdateien werden die „fehlenden“ Binutils, GCC und die GNU-C-Bibliothek aus dem Quellcode heraus erstellt. Von hier an kann der traditionellere Bootstrapping-Vorgang wie gewohnt weiterlaufen. Durch diesen Ansatz machen die kleineren Bootstrapping-Binärdateien in Guix-Version@tie{}1.1 nur noch ungefähr 145MB aus." #. type: Plain text -#: guix-git/doc/guix.texi:38136 +#: guix-git/doc/guix.texi:38625 msgid "The next step that Guix has taken is to replace the shell and all its utilities with implementations in Guile Scheme, the @emph{Scheme-only bootstrap}. Gash (@pxref{Gash,,, gash, The Gash manual}) is a POSIX-compatible shell that replaces Bash, and it comes with Gash Utils which has minimalist replacements for Awk, the GNU Core Utilities, Grep, Gzip, Sed, and Tar. The rest of the bootstrap binary seeds that were removed are now built from source." msgstr "Der nächste Schritt war es, die Shell und all ihre Werkzeuge durch in Guile Scheme verfasste Implementierungen zu ersetzen. Nun haben wir ein @emph{Bootstrapping nur in Scheme}. Gash (siehe @ref{Gash,,, gash, The Gash manual}) ist eine POSIX-kompatible Shell, die Bash ersetzt, und mit ihr kommen die Gash Utils als minimalistischer Ersatz für Awk, die GNU Core Utilities, Grep, Gzip, Sed und Tar. Die übrigen Binärdateien unter den Bootstrapping-Seeds wurden entfernt und werden jetzt aus ihrem Quellcode heraus erstellt." #. type: Plain text -#: guix-git/doc/guix.texi:38146 +#: guix-git/doc/guix.texi:38635 msgid "Building the GNU System from source is currently only possible by adding some historical GNU packages as intermediate steps@footnote{Packages such as @code{gcc-2.95.3}, @code{binutils-2.14}, @code{glibc-2.2.5}, @code{gzip-1.2.4}, @code{tar-1.22}, and some others. For details, see @file{gnu/packages/commencement.scm}.}. As Gash and Gash Utils mature, and GNU packages become more bootstrappable again (e.g., new releases of GNU Sed will also ship as gzipped tarballs again, as alternative to the hard to bootstrap @code{xz}-compression), this set of added packages can hopefully be reduced again." msgstr "Das Erstellen des GNU-Systems aus seinem Quellcode heraus ist derzeit nur möglich, wenn wir ein paar historische GNU-Pakete als Zwischenschritte hinzufügen@footnote{Dazu gehören Pakete wie @code{gcc-2.95.3}, @code{binutils-2.14}, @code{glibc-2.2.5}, @code{gzip-1.2.4}, @code{tar-1.22} und noch ein paar andere. Details finden Sie in @file{gnu/packages/commencement.scm}.}. Mit dem Heranreifen von Gash und Gash Utils und der Entwicklung von GNU-Paketen hin zu mehr Bootstrapbarkeit (z.B.@: wird es neue Veröffentlichungen von GNU Sed auch wieder als Gzip-komprimierte Tarballs geben, einer Alternative zur schwer zu bootstrappenden @code{xz}-Kompression), wird dieser Satz zusätzlicher Pakete hoffentlich noch einmal reduziert werden können." #. type: Plain text -#: guix-git/doc/guix.texi:38150 +#: guix-git/doc/guix.texi:38639 msgid "The graph below shows the resulting dependency graph for @code{gcc-core-mesboot0}, the bootstrap compiler used for the traditional bootstrap of the rest of the Guix System." msgstr "Im folgenden Graphen sehen Sie den sich ergebenden Abhängigkeitsgraphen für @code{gcc-core-mesboot0}, den Bootstrapping-Compiler, mit dem das traditionelle Bootstrapping für den Rest von Guix System vollzogen wird." #. type: Plain text -#: guix-git/doc/guix.texi:38153 +#: guix-git/doc/guix.texi:38642 msgid "@image{images/gcc-core-mesboot0-graph,6in,,Dependency graph of gcc-core-mesboot0}" msgstr "@image{images/gcc-core-mesboot0-graph,6in,,Abhängigkeitsgraph des gcc-core-mesboot0}" #. type: Plain text -#: guix-git/doc/guix.texi:38160 +#: guix-git/doc/guix.texi:38649 msgid "The only significant binary bootstrap seeds that remain@footnote{ Ignoring the 68KB @code{mescc-tools}; that will be removed later, together with @code{mes}.} are a Scheme interpreter and a Scheme compiler: GNU Mes and GNU Guile@footnote{Not shown in this graph are the static binaries for @file{bash}, @code{tar}, and @code{xz} that are used to get Guile running.}." msgstr "Die einzig bedeutsamen verbleibenden Binärdateien unter den Bootstrapping-Seeds@footnote{Wenn wir die 68KB-großen @code{mescc-tools} ignorieren, die wir später noch zusammen mit @code{mes} entfernen werden.} sind ein Scheme-Intepretierer und ein Scheme-Compiler: GNU Mes und GNU Guile@footnote{In diesem Graphen werden die statischen Binärdateien für @file{bash}, @code{tar} und @code{xz} nicht gezeigt, die wir benutzen, um Guile zum Laufen zu bringen.}." #. type: Plain text -#: guix-git/doc/guix.texi:38163 +#: guix-git/doc/guix.texi:38652 msgid "This further reduction has brought down the size of the binary seed to about 60MB for @code{i686-linux} and @code{x86_64-linux}." msgstr "Nach dieser weiteren Reduktion macht der binäre Seed nur noch ungefähr 60MB aus für @code{i686-linux} und @code{x86_64-linux}." #. type: Plain text -#: guix-git/doc/guix.texi:38168 +#: guix-git/doc/guix.texi:38657 msgid "Work is ongoing to remove all binary blobs from our free software bootstrap stack, working towards a Full Source Bootstrap. Also ongoing is work to bring these bootstraps to the @code{arm-linux} and @code{aarch64-linux} architectures and to the Hurd." msgstr "Wir arbeiten daran, alle binären „Blobs“ aus unserem Freie-Software-Bootstrapping zu entfernen, um nur aus Quellcode heraus bootstrappen zu können („Full Source Bootstrap“). Auch ist Arbeit im Gange, ein solches Bootstrapping für die @code{arm-linux}- und @code{aarch64-linux}-Architekturen und GNU@tie{}Hurd anzubieten." #. type: Plain text -#: guix-git/doc/guix.texi:38172 +#: guix-git/doc/guix.texi:38661 msgid "If you are interested, join us on @samp{#bootstrappable} on the Freenode IRC network or discuss on @email{bug-mes@@gnu.org} or @email{gash-devel@@nongnu.org}." msgstr "Wenn Sie daran Interesse haben, dann machen Sie bei uns mit auf @code{#bootstrappable} auf dem Freenode-IRC-Netzwerk oder diskutieren Sie mit auf @email{bug-mes@@gnu.org} oder @email{gash-devel@@nongnu.org}." #. type: Plain text -#: guix-git/doc/guix.texi:38179 +#: guix-git/doc/guix.texi:38668 msgid "@image{images/bootstrap-graph,6in,,Dependency graph of the early bootstrap derivations}" msgstr "@image{images/bootstrap-graph,6in,,Abhängigkeitsgraph der frühen Bootstrap-Ableitungen}" #. type: Plain text -#: guix-git/doc/guix.texi:38184 +#: guix-git/doc/guix.texi:38673 msgid "The figure above shows the very beginning of the dependency graph of the distribution, corresponding to the package definitions of the @code{(gnu packages bootstrap)} module. A similar figure can be generated with @command{guix graph} (@pxref{Invoking guix graph}), along the lines of:" msgstr "Die Abbildung oben zeigt den Anfang des Abhängigkeitsgraphen der Distribution und entspricht den Paketdefinitionen im @code{(gnu package bootstrap)}-Modul. Eine ähnliche Grafik kann mit @command{guix graph} (siehe @ref{Invoking guix graph}) erzeugt werden:" #. type: example -#: guix-git/doc/guix.texi:38189 +#: guix-git/doc/guix.texi:38678 #, no-wrap msgid "" "guix graph -t derivation \\\n" @@ -70095,12 +71038,12 @@ msgstr "" " | dot -Tps > gcc.ps\n" #. type: Plain text -#: guix-git/doc/guix.texi:38192 +#: guix-git/doc/guix.texi:38681 msgid "or, for the further Reduced Binary Seed bootstrap" msgstr "oder für das Bootstrapping mit noch kleinerem Seed:" #. type: example -#: guix-git/doc/guix.texi:38197 +#: guix-git/doc/guix.texi:38686 #, no-wrap msgid "" "guix graph -t derivation \\\n" @@ -70112,43 +71055,43 @@ msgstr "" " | dot -Tps > mes.ps\n" #. type: Plain text -#: guix-git/doc/guix.texi:38206 +#: guix-git/doc/guix.texi:38695 msgid "At this level of detail, things are slightly complex. First, Guile itself consists of an ELF executable, along with many source and compiled Scheme files that are dynamically loaded when it runs. This gets stored in the @file{guile-2.0.7.tar.xz} tarball shown in this graph. This tarball is part of Guix's ``source'' distribution, and gets inserted into the store with @code{add-to-store} (@pxref{The Store})." msgstr "Bei diesem Detaillierungsgrad sind die Dinge recht komplex. Guile selbst besteht aus einer ausführbaren ELF-Datei neben vielen Quelldateien und kompilierten Scheme-Dateien, die dynamisch bei der Ausführung geladen werden. Das wird in dem im Graph gezeigten @file{guile-2.0.7.tar.xz}-Archiv gespeichert. Das Archiv ist Teil von Guix’ „Quelldistribution“ und wird in den Store mit @code{add-to-store} (siehe @ref{The Store}) eingefügt." #. type: Plain text -#: guix-git/doc/guix.texi:38215 +#: guix-git/doc/guix.texi:38704 msgid "But how do we write a derivation that unpacks this tarball and adds it to the store? To solve this problem, the @code{guile-bootstrap-2.0.drv} derivation---the first one that gets built---uses @code{bash} as its builder, which runs @code{build-bootstrap-guile.sh}, which in turn calls @code{tar} to unpack the tarball. Thus, @file{bash}, @file{tar}, @file{xz}, and @file{mkdir} are statically-linked binaries, also part of the Guix source distribution, whose sole purpose is to allow the Guile tarball to be unpacked." msgstr "Doch wie schreibt man eine Ableitung, die dieses Tarball-Archiv entpackt und in den Store einfügt? Um dieses Problem zu lösen, benutzt die @code{guile-bootstrap-2.0.drv}-Ableitung@tie{}— die erste, die erstellt wird@tie{}— @code{bash} als Ersteller, welche wiederum @code{build-bootstrap-guile.sh} ausführt, was über einen Aufruf von @code{tar} den Tarball entpackt. Deswegen sind @file{bash}, @file{tar}, @file{xz} und @file{mkdir} als statisch gebundene Binärdateien auch Teil der Guix-Quelldistribution, die nur dazu da sind, dass der Guile-Tarball entpackt werden kann." #. type: Plain text -#: guix-git/doc/guix.texi:38227 +#: guix-git/doc/guix.texi:38716 msgid "Once @code{guile-bootstrap-2.0.drv} is built, we have a functioning Guile that can be used to run subsequent build programs. Its first task is to download tarballs containing the other pre-built binaries---this is what the @file{.tar.xz.drv} derivations do. Guix modules such as @code{ftp-client.scm} are used for this purpose. The @code{module-import.drv} derivations import those modules in a directory in the store, using the original layout. The @code{module-import-compiled.drv} derivations compile those modules, and write them in an output directory with the right layout. This corresponds to the @code{#:modules} argument of @code{build-expression->derivation} (@pxref{Derivations})." msgstr "Sobald @code{guile-bootstrap-2.0.drv} erstellt worden ist, haben wir ein funktionierendes Guile zur Hand, mit dem nachfolgende Erstellungsprogramme ausgeführt werden können. Sein erster Auftrag ist, Tarballs mit den anderen vorerstellten Binärdateien herunterzuladen@tie{}— das ist die Tätigkeit der @file{.tar.xz.drv}-Ableitungen. Wir verwenden zu diesem Zweck Guix-Module wie @code{ftp-client.scm}. Die @code{module-import.drv}-Ableitungen importieren solche Module und schreiben sie in derselben Verzeichnisstruktur in ein Verzeichnis im Store. Die @code{module-import-compiled.drv}-Ableitungen kompilieren die Module und schreiben sie in der richtigen Struktur in ein Ausgabeverzeichnis. Dies entspricht dem @code{#:modules}-Argument von @code{build-expression->derivation} (siehe @ref{Derivations})." #. type: Plain text -#: guix-git/doc/guix.texi:38232 +#: guix-git/doc/guix.texi:38721 msgid "Finally, the various tarballs are unpacked by the derivations @code{gcc-bootstrap-0.drv}, @code{glibc-bootstrap-0.drv}, or @code{bootstrap-mes-0.drv} and @code{bootstrap-mescc-tools-0.drv}, at which point we have a working C tool chain." msgstr "Schließlich werden die verschiedenen Tarballs durch die Ableitungen @code{gcc-bootstrap-0.drv}, @code{glibc-bootstrap-0.drv}, oder @code{bootstrap-mes-0.drv} und @code{bootstrap-mescc-tools-0.drv}, entpackt. Zu diesem Zeitpunkt haben wir eine fertige Toolchain für C." #. type: unnumberedsec -#: guix-git/doc/guix.texi:38233 +#: guix-git/doc/guix.texi:38722 #, no-wrap msgid "Building the Build Tools" msgstr "Die Erstellungswerkzeuge erstellen" #. type: Plain text -#: guix-git/doc/guix.texi:38242 +#: guix-git/doc/guix.texi:38731 msgid "Bootstrapping is complete when we have a full tool chain that does not depend on the pre-built bootstrap tools discussed above. This no-dependency requirement is verified by checking whether the files of the final tool chain contain references to the @file{/gnu/store} directories of the bootstrap inputs. The process that leads to this ``final'' tool chain is described by the package definitions found in the @code{(gnu packages commencement)} module." msgstr "Das Bootstrapping ist abgeschlossen, sobald eine vollständige Toolchain vorliegt, die von den oben erläuterten vorerstellten Bootstrapping-Werkzeugen @emph{nicht} abhängt. Diese Voraussetzung, keine Abhängigkeiten zu haben, überprüft man, indem man schaut, ob die Dateien der endgültigen Toolchain frei von Referenzen auf die @file{/gnu/store}-Verzeichnisse der Bootstrapping-Eingaben sind. Der Vorgang, diese „finale“ Toolchain zu bekommen, wird von den Paketdefinitionen beschrieben, die Sie im Modul @code{(gnu packages commencement)} finden." #. type: Plain text -#: guix-git/doc/guix.texi:38249 +#: guix-git/doc/guix.texi:38738 msgid "The @command{guix graph} command allows us to ``zoom out'' compared to the graph above, by looking at the level of package objects instead of individual derivations---remember that a package may translate to several derivations, typically one derivation to download its source, one to build the Guile modules it needs, and one to actually build the package from source. The command:" msgstr "Mit dem Befehl @command{guix graph} können wir gegenüber dem obigen Graphen „herauszoomen“, indem wir alles auf der Ebene von Paketobjekten statt auf der von einzelnen Ableitungen betrachten@tie{}— denken Sie daran, dass ein Paket zu mehreren Ableitungen führen kann; normalerweise einer, die seine Quelldateien herunterlädt, einer, die die benötigten Guile-Module erstellt, und einer, die das Paket dann tatsächlich aus seinem Quellcode heraus erstellt. Der Befehl" #. type: example -#: guix-git/doc/guix.texi:38254 +#: guix-git/doc/guix.texi:38743 #, no-wrap msgid "" "guix graph -t bag \\\n" @@ -70160,168 +71103,269 @@ msgstr "" " glibc-final-with-bootstrap-bash)' | xdot -\n" #. type: Plain text -#: guix-git/doc/guix.texi:38261 +#: guix-git/doc/guix.texi:38750 msgid "displays the dependency graph leading to the ``final'' C library@footnote{You may notice the @code{glibc-intermediate} label, suggesting that it is not @emph{quite} final, but as a good approximation, we will consider it final.}, depicted below." msgstr "zeigt den Abhängigkeitsgraphen, der zur „finalen“ C-Bibliothek@footnote{Ihnen könnte die @code{glibc-intermediate}-Markierung auffallen, die darauf hindeutet, dass sie @emph{noch nicht ganz} final ist, aber annäherungsweise betrachten wir sie als final.} führt. Hier sehen Sie ihn:" #. type: Plain text -#: guix-git/doc/guix.texi:38263 +#: guix-git/doc/guix.texi:38752 msgid "@image{images/bootstrap-packages,6in,,Dependency graph of the early packages}" msgstr "@image{images/bootstrap-packages,6in,,Abhängigkeitsgraph der frühen Pakete}" #. type: Plain text -#: guix-git/doc/guix.texi:38269 +#: guix-git/doc/guix.texi:38758 msgid "The first tool that gets built with the bootstrap binaries is GNU@tie{}Make---noted @code{make-boot0} above---which is a prerequisite for all the following packages. From there Findutils and Diffutils get built." msgstr "Das erste Werkzeug, das mit den Bootstrapping-Binärdateien erstellt wird, ist GNU@tie{}Make@tie{}— beachten Sie das oben sichtbare @code{make-boot0}@tie{}—, das eine Voraussetzung aller folgenden Pakete ist. Von da aus werden Findutils und Diffutils erstellt." #. type: Plain text -#: guix-git/doc/guix.texi:38274 +#: guix-git/doc/guix.texi:38763 msgid "Then come the first-stage Binutils and GCC, built as pseudo cross tools---i.e., with @option{--target} equal to @option{--host}. They are used to build libc. Thanks to this cross-build trick, this libc is guaranteed not to hold any reference to the initial tool chain." msgstr "Es folgt die erste Stufe der Binutils und GCC, die pseudo-crosskompiliert werden@tie{}— d.h.@: die @option{--target}-Befehlszeilenoption entspricht der @option{--host}-Option. Mit ihnen wird libc erstellt. Dank den Crosskompilierungstricks ist garantiert, dass diese libc keine Referenzen auf die anfängliche Toolchain enthält." #. type: Plain text -#: guix-git/doc/guix.texi:38280 +#: guix-git/doc/guix.texi:38769 msgid "From there the final Binutils and GCC (not shown above) are built. GCC uses @command{ld} from the final Binutils, and links programs against the just-built libc. This tool chain is used to build the other packages used by Guix and by the GNU Build System: Guile, Bash, Coreutils, etc." msgstr "Damit werden die finalen Binutils und GCC erstellt (sie sind oben nicht zu sehen). GCC benutzt den @command{ld} aus den finalen Binutils und bindet Programme an die gerade erstellte libc. Mit dieser Toolchain erstellen wir die anderen Pakete, die Guix und das GNU-Erstellungssystem benutzen: Guile, Bash, Coreutils, etc." #. type: Plain text -#: guix-git/doc/guix.texi:38286 +#: guix-git/doc/guix.texi:38775 msgid "And voilà! At this point we have the complete set of build tools that the GNU Build System expects. These are in the @code{%final-inputs} variable of the @code{(gnu packages commencement)} module, and are implicitly used by any package that uses @code{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}})." msgstr "Und voilà! Wenn das geschafft ist, haben wir die vollständige Menge von Erstellungswerkzeugen, die das GNU-Erstellungssystem erwartet. Sie sind in der Variablen @code{%final-inputs} des Moduls @code{(gnu packages commencement)} zu finden und werden von jedem Paket implizit benutzt, das das @code{gnu-build-system} verwendet (siehe @ref{Build Systems, @code{gnu-build-system}})." #. type: unnumberedsec -#: guix-git/doc/guix.texi:38288 +#: guix-git/doc/guix.texi:38777 #, no-wrap msgid "Building the Bootstrap Binaries" msgstr "Die Bootstrapping-Binärdateien erstellen" #. type: Plain text -#: guix-git/doc/guix.texi:38295 +#: guix-git/doc/guix.texi:38784 msgid "Because the final tool chain does not depend on the bootstrap binaries, those rarely need to be updated. Nevertheless, it is useful to have an automated way to produce them, should an update occur, and this is what the @code{(gnu packages make-bootstrap)} module provides." msgstr "Weil die finale Toolchain nicht von den Bootstrapping-Binärdateien abhängt, müssen diese nur selten aktualisiert werden. Es ist dennoch sinnvoll, sie automatisiert erzeugen zu können, wenn sie doch aktualisiert werden. Das Modul @code{(gnu packages make-bootstrap)} ermöglicht dies." #. type: Plain text -#: guix-git/doc/guix.texi:38301 +#: guix-git/doc/guix.texi:38790 msgid "The following command builds the tarballs containing the bootstrap binaries (Binutils, GCC, glibc, for the traditional bootstrap and linux-libre-headers, bootstrap-mescc-tools, bootstrap-mes for the Reduced Binary Seed bootstrap, and Guile, and a tarball containing a mixture of Coreutils and other basic command-line tools):" msgstr "Mit dem folgenden Befehl werden die Tarball-Archive erstellt, die die Bootstrapping-Binärdateien enthalten (beim traditionellen Bootstrapping sind das Binutils, GCC und glibc; beim Bootstrapping mit kleinerem Seed sind es linux-libre-headers, bootstrap-mescc-tools, bootstrap-mes; dazu kommen Guile sowie ein Tarball mit einer Mischung aus Coreutils und anderen grundlegenden Befehlszeilenwerkzeugen):" #. type: example -#: guix-git/doc/guix.texi:38304 +#: guix-git/doc/guix.texi:38793 #, no-wrap msgid "guix build bootstrap-tarballs\n" msgstr "guix build bootstrap-tarballs\n" #. type: Plain text -#: guix-git/doc/guix.texi:38309 +#: guix-git/doc/guix.texi:38798 msgid "The generated tarballs are those that should be referred to in the @code{(gnu packages bootstrap)} module mentioned at the beginning of this section." msgstr "Die erzeugten Tarballs sind es, auf die im Modul @code{(gnu packages bootstrap)} verwiesen werden sollte, das am Anfang dieses Abschnitts erwähnt wurde." #. type: Plain text -#: guix-git/doc/guix.texi:38315 +#: guix-git/doc/guix.texi:38804 msgid "Still here? Then perhaps by now you've started to wonder: when do we reach a fixed point? That is an interesting question! The answer is unknown, but if you would like to investigate further (and have significant computational and storage resources to do so), then let us know." msgstr "Können Sie noch folgen? Dann haben Sie vielleicht schon angefangen, sich zu fragen, wann wir denn einen Fixpunkt erreichen. Das ist eine interessante Frage! Leider wissen wir es nicht, aber wenn Sie es herausfinden wollen (und Ihnen die nennenswerten Rechen- und Speicherkapazitäten dafür zur Verfügung stehen), dann lassen Sie es uns wissen." #. type: unnumberedsec -#: guix-git/doc/guix.texi:38316 +#: guix-git/doc/guix.texi:38805 #, no-wrap msgid "Reducing the Set of Bootstrap Binaries" msgstr "Die Menge an Bootstrapping-Binärdateien verkleinern" #. type: Plain text -#: guix-git/doc/guix.texi:38324 +#: guix-git/doc/guix.texi:38813 msgid "Our traditional bootstrap includes GCC, GNU Libc, Guile, etc. That's a lot of binary code! Why is that a problem? It's a problem because these big chunks of binary code are practically non-auditable, which makes it hard to establish what source code produced them. Every unauditable binary also leaves us vulnerable to compiler backdoors as described by Ken Thompson in the 1984 paper @emph{Reflections on Trusting Trust}." msgstr "Zu unserem traditionellen Bootstrapping gehören GCC, GNU Libc, Guile, etc. Das ist ganz schön viel binärer Code! Warum ist das ein Problem? Es ist deswegen ein Problem, weil es praktisch unmöglich ist, solch große Klumpen binären Codes einem Audit zu unterziehen. Dadurch wird es schwer, nachzuvollziehen, welcher Quellcode ihn erzeugt hat. Jede ausführbare Binärdatei, für die kein Audit möglich ist, macht uns verwundbar gegenüber Hintertüren in Compilern, wie Ken Thompson sie in seiner Arbeit von 1984, @emph{Reflections on Trusting Trust}, beschrieben hat." #. type: Plain text -#: guix-git/doc/guix.texi:38330 +#: guix-git/doc/guix.texi:38819 msgid "This is mitigated by the fact that our bootstrap binaries were generated from an earlier Guix revision. Nevertheless it lacks the level of transparency that we get in the rest of the package dependency graph, where Guix always gives us a source-to-binary mapping. Thus, our goal is to reduce the set of bootstrap binaries to the bare minimum." msgstr "Wir senken das Risiko, indem wir unsere Bootstrapping-Binärdateien immer mit einer früheren Guix-Version erzeugen. Trotzdem fehlt uns das Niveau an Transparenz, das wir am übrigen Paketabhängigkeitsgraphen wertschätzen, wo Guix immer vom Quellcode eindeutig auf die Binärdateien abbildet. Unser Ziel ist also, die Menge an Bootstrapping-Binärdateien so weit wie möglich zu verkleinern." #. type: Plain text -#: guix-git/doc/guix.texi:38336 +#: guix-git/doc/guix.texi:38825 msgid "The @uref{https://bootstrappable.org, Bootstrappable.org web site} lists on-going projects to do that. One of these is about replacing the bootstrap GCC with a sequence of assemblers, interpreters, and compilers of increasing complexity, which could be built from source starting from a simple and auditable assembler." msgstr "Auf dem @uref{https://bootstrappable.org, Webauftritt von Bootstrappable.org} werden laufende Projekte mit diesem Zweck aufgeführt. Bei einem davon geht es darum, den Bootstrapping-GCC durch eine Folge von Assemblern, Interpretierern und Compilern zunehmender Komplexität zu ersetzen, die von Anfang an aus Quellcode heraus erstellt werden kann, angefangen bei einem einfachen, überprüfbaren Assembler." #. type: Plain text -#: guix-git/doc/guix.texi:38345 +#: guix-git/doc/guix.texi:38834 msgid "Our first major achievement is the replacement of of GCC, the GNU C Library and Binutils by MesCC-Tools (a simple hex linker and macro assembler) and Mes (@pxref{Top, GNU Mes Reference Manual,, mes, GNU Mes}, a Scheme interpreter and C compiler in Scheme). Neither MesCC-Tools nor Mes can be fully bootstrapped yet and thus we inject them as binary seeds. We call this the Reduced Binary Seed bootstrap, as it has halved the size of our bootstrap binaries! Also, it has eliminated the C compiler binary; i686-linux and x86_64-linux Guix packages are now bootstrapped without any binary C compiler." msgstr "Unsere erste große Leistung stellt die Ersetzung von GCC, der GNU-C-Bibliothek und der Binutils durch die MesCC-Tools (einem einfachen Binder für hexadezimal dargestellte Maschinenprogramme und einem Makro-Assembler) und Mes dar (siehe @ref{Top, Referenzhandbuch zu GNU Mes,, mes, GNU Mes}, einem Scheme-Interpretierer und in Scheme geschriebenen C-Compiler). Weder MesCC-Tools noch Mes können bereits von Grund auf gebootstrapt werden, daher schleusen wir sie als binäre Seeds ein. Wir nennen das unser Bootstrapping mit kleinerem Seed, weil es die Größe unserer Bootstrapping-Binärdateien halbiert hat! Außerdem haben wir damit keinerlei Binärdatei für einen C-Compiler; auf i686-linux und x86_64-linux werden Guix-Pakete ganz ohne binären C-Compiler gebootstrapt." #. type: Plain text -#: guix-git/doc/guix.texi:38348 +#: guix-git/doc/guix.texi:38837 msgid "Work is ongoing to make MesCC-Tools and Mes fully bootstrappable and we are also looking at any other bootstrap binaries. Your help is welcome!" msgstr "Wir arbeiten daran, MesCC-Tools und Mes vollständig bootstrappen zu können, und behalten auch andere Bootstrapping-Binärdateien im Blick. Ihre Unterstützung ist willkommen!" #. type: chapter -#: guix-git/doc/guix.texi:38350 +#: guix-git/doc/guix.texi:38839 #, no-wrap msgid "Porting to a New Platform" msgstr "Auf eine neue Plattform portieren" #. type: Plain text -#: guix-git/doc/guix.texi:38359 +#: guix-git/doc/guix.texi:38848 msgid "As discussed above, the GNU distribution is self-contained, and self-containment is achieved by relying on pre-built ``bootstrap binaries'' (@pxref{Bootstrapping}). These binaries are specific to an operating system kernel, CPU architecture, and application binary interface (ABI). Thus, to port the distribution to a platform that is not yet supported, one must build those bootstrap binaries, and update the @code{(gnu packages bootstrap)} module to use them on that platform." msgstr "Wie oben beschrieben ist die GNU-Distribution eigenständig und diese Eigenständigkeit wird erreicht, indem sie aus vorerstellten „Bootstrap-Binärdateien“ heraus erstellt werden kann (siehe @ref{Bootstrapping}). Diese Binärdateien unterscheiden sich je nach verwendetem Betriebssystem-Kernel, nach der Prozessorarchitektur und der Anwendungsbinärschnittstelle („Application Binary Interface“, kurz ABI). Um die Distribution also auf eine noch nicht unterstützte Plattform zu portieren, muss man diese Bootstrap-Binärdateien für diese Plattform erstellen und das Modul @code{(gnu packages bootstrap)} aktualisieren, damit es sie benutzt." #. type: Plain text -#: guix-git/doc/guix.texi:38364 +#: guix-git/doc/guix.texi:38853 msgid "Fortunately, Guix can @emph{cross compile} those bootstrap binaries. When everything goes well, and assuming the GNU tool chain supports the target platform, this can be as simple as running a command like this one:" msgstr "Zum Glück kann Guix diese Bootstrap-Binärdateien @emph{cross-kompilieren}. Wenn alles gut geht, und vorausgesetzt, die GNU-Werkzeuge (zusammen werden sie als GNU-„Toolchain“ bezeichnet) unterstützen diese Zielplattform auch, dann kann es völlig ausreichen, dass Sie einen Befehl wie hier ausführen:" #. type: example -#: guix-git/doc/guix.texi:38367 +#: guix-git/doc/guix.texi:38856 #, no-wrap msgid "guix build --target=armv5tel-linux-gnueabi bootstrap-tarballs\n" msgstr "guix build --target=armv5tel-linux-gnueabi bootstrap-tarballs\n" #. type: Plain text -#: guix-git/doc/guix.texi:38374 +#: guix-git/doc/guix.texi:38863 msgid "For this to work, the @code{glibc-dynamic-linker} procedure in @code{(gnu packages bootstrap)} must be augmented to return the right file name for libc's dynamic linker on that platform; likewise, @code{system->linux-architecture} in @code{(gnu packages linux)} must be taught about the new platform." msgstr "Damit das funktioniert, muss erst die @code{glibc-dynamic-linker}-Prozedur in @code{(gnu packages bootstrap)} angepasst werden, damit sie den richtigen Dateinamen für den dynamischen Binder von libc auf dieser Plattform liefert; ebenso muss @code{system->linux-architecture} in @code{(gnu packages linux)} mit den Informationen über die neue Plattform versorgt werden." #. type: Plain text -#: guix-git/doc/guix.texi:38383 +#: guix-git/doc/guix.texi:38872 msgid "Once these are built, the @code{(gnu packages bootstrap)} module needs to be updated to refer to these binaries on the target platform. That is, the hashes and URLs of the bootstrap tarballs for the new platform must be added alongside those of the currently supported platforms. The bootstrap Guile tarball is treated specially: it is expected to be available locally, and @file{gnu/local.mk} has rules to download it for the supported architectures; a rule for the new platform must be added as well." msgstr "Sobald diese erstellt wurden, muss das Modul @code{(gnu packages bootstrap)} aktualisiert werden, damit es diese Binärdateien für die Zielplattform benutzt. Das heißt, die Hashes und URLs der Bootstrap-Tarballs für die neue Plattform müssen neben denen für die bisher unterstützten Plattformen aufgeführt werden. Der Bootstrap-Guile-Tarball wird besonders behandelt: Von ihm wird erwartet, dass er lokal verfügbar ist, und @file{gnu/local.mk} enthält Regeln, um ihn für die unterstützten Architekturen herunterzuladen; eine Regel muss auch für die neue Plattform hinzugefügt werden." #. type: Plain text -#: guix-git/doc/guix.texi:38392 +#: guix-git/doc/guix.texi:38881 msgid "In practice, there may be some complications. First, it may be that the extended GNU triplet that specifies an ABI (like the @code{eabi} suffix above) is not recognized by all the GNU tools. Typically, glibc recognizes some of these, whereas GCC uses an extra @option{--with-abi} configure flag (see @code{gcc.scm} for examples of how to handle this). Second, some of the required packages could fail to build for that platform. Lastly, the generated binaries could be broken for some reason." msgstr "In der Praxis kann es einige Schwierigkeiten geben. Erstens kann es sein, dass das erweiterte GNU-Tripel, das eine Anwendungsbinärschnittstelle (ABI) festlegt (wie es das @code{eabi}-Suffix oben tut) nicht von allen GNU-Werkzeugen erkannt wird. Typischerweise erkennt glibc manche davon, während für GCC eine zusätzliche Befehlszeilenoption @option{--with-abi} an configure übergeben werden muss (siehe @code{gcc.scm} für Beispiele, wie man das macht). Zweitens könnte es sein, dass manche der notwendige Pakete für diese Plattform nicht erfolgreich erstellt werden können. Zuletzt könnten die generierten Binärdateien aus dem einen oder anderen Grund fehlerhaft sein." #. type: include -#: guix-git/doc/guix.texi:38394 +#: guix-git/doc/guix.texi:38883 #, no-wrap msgid "contributing.texi" msgstr "contributing.de.texi" #. type: Plain text -#: guix-git/doc/guix.texi:38407 +#: guix-git/doc/guix.texi:38896 msgid "Guix is based on the @uref{https://nixos.org/nix/, Nix package manager}, which was designed and implemented by Eelco Dolstra, with contributions from other people (see the @file{nix/AUTHORS} file in Guix). Nix pioneered functional package management, and promoted unprecedented features, such as transactional package upgrades and rollbacks, per-user profiles, and referentially transparent build processes. Without this work, Guix would not exist." msgstr "Guix baut auf dem @uref{https://nixos.org/nix/, Nix-Paketverwaltungsprogramm} auf, das von Eelco Dolstra entworfen und entwickelt wurde, mit Beiträgen von anderen Leuten (siehe die Datei @file{nix/AUTHORS} in Guix). Nix hat für die funktionale Paketverwaltung die Pionierarbeit geleistet und noch nie dagewesene Funktionalitäten vorangetrieben wie transaktionsbasierte Paketaktualisierungen und die Rücksetzbarkeit selbiger, eigene Paketprofile für jeden Nutzer und referenziell transparente Erstellungsprozesse. Ohne diese Arbeit gäbe es Guix nicht." #. type: Plain text -#: guix-git/doc/guix.texi:38410 +#: guix-git/doc/guix.texi:38899 msgid "The Nix-based software distributions, Nixpkgs and NixOS, have also been an inspiration for Guix." msgstr "Die Nix-basierten Software-Distributionen Nixpkgs und NixOS waren auch eine Inspiration für Guix." #. type: Plain text -#: guix-git/doc/guix.texi:38416 +#: guix-git/doc/guix.texi:38905 msgid "GNU@tie{}Guix itself is a collective work with contributions from a number of people. See the @file{AUTHORS} file in Guix for more information on these fine people. The @file{THANKS} file lists people who have helped by reporting bugs, taking care of the infrastructure, providing artwork and themes, making suggestions, and more---thank you!" msgstr "GNU@tie{}Guix ist selbst das Produkt kollektiver Arbeit mit Beiträgen durch eine Vielzahl von Leuten. Siehe die Datei @file{AUTHORS} in Guix für mehr Informationen, wer diese wunderbaren Menschen sind. In der Datei @file{THANKS} finden Sie eine Liste der Leute, die uns geholfen haben, indem Sie Fehler gemeldet, sich um unsere Infrastruktur gekümmert, künstlerische Arbeit und schön gestaltete Themen beigesteuert, Vorschläge gemacht und noch vieles mehr getan haben@tie{}— vielen Dank!" #. type: cindex -#: guix-git/doc/guix.texi:38421 +#: guix-git/doc/guix.texi:38910 #, no-wrap msgid "license, GNU Free Documentation License" msgstr "Lizenz, GNU-Lizenz für freie Dokumentation" #. type: include -#: guix-git/doc/guix.texi:38422 +#: guix-git/doc/guix.texi:38911 #, no-wrap msgid "fdl-1.3.texi" msgstr "fdl-1.3.texi" +#~ msgid "{@code{zabbix-front-end-configuration} parameter} nginx-server-configuration-list nginx" +#~ msgstr "{@code{zabbix-front-end-configuration}-Parameter} „nginx-server-configuration“-Liste nginx" + +#~ msgid "{@code{zabbix-front-end-configuration} parameter} string db-host" +#~ msgstr "{@code{zabbix-front-end-configuration}-Parameter} Zeichenkette db-host" + +#~ msgid "{@code{zabbix-front-end-configuration} parameter} number db-port" +#~ msgstr "{@code{zabbix-front-end-configuration}-Parameter} Zahl db-port" + +#~ msgid "{@code{zabbix-front-end-configuration} parameter} string db-name" +#~ msgstr "{@code{zabbix-front-end-configuration}-Parameter} Zeichenkette db-name" + +#~ msgid "{@code{zabbix-front-end-configuration} parameter} string db-user" +#~ msgstr "{@code{zabbix-front-end-configuration}-Parameter} Zeichenkette db-user" + +#~ msgid "{@code{zabbix-front-end-configuration} parameter} string db-password" +#~ msgstr "{@code{zabbix-front-end-configuration}-Parameter} Zeichenkette db-password" + +#~ msgid "{@code{zabbix-front-end-configuration} parameter} string db-secret-file" +#~ msgstr "{@code{zabbix-front-end-configuration}-Parameter} Zeichenkette db-secret-file" + +#~ msgid "Secret file containing the credentials for the Zabbix front-end. The value must be a local file name, not a G-expression. You are expected to create this file manually. Its contents will be copied into @file{zabbix.conf.php} as the value of @code{$DB['PASSWORD']}." +#~ msgstr "In welcher Datei die geheimen Anmeldedaten für das Vordergrundsystem von Zabbix stehen. Als Wert muss ein lokaler Dateiname angegeben werden und @emph{kein} G-Ausdruck. Es wird erwartet, dass Sie diese Datei manuell erstellen. Ihr Inhalt wird als Wert von @code{$DB['PASSWORD']} in die @file{zabbix.conf.php} kopiert." + +#~ msgid "{@code{zabbix-front-end-configuration} parameter} string zabbix-host" +#~ msgstr "{@code{zabbix-front-end-configuration}-Parameter} Zeichenkette zabbix-host" + +#~ msgid "{@code{zabbix-front-end-configuration} parameter} number zabbix-port" +#~ msgstr "{@code{zabbix-front-end-configuration}-Parameter} Zahl zabbix-port" + +#~ msgid "Defaults to @samp{10051}." +#~ msgstr "Die Vorgabe ist @samp{10051}." + +#~ msgid "When using @option{--manifest}, @option{--file}, or when invoked without arguments, @command{guix shell} caches the environment so that subsequent uses are instantaneous. The cache is invalidated anytime the file is modified." +#~ msgstr "Wenn Sie eine der Befehlszeilenoptionen @option{--manifest} oder @option{--file} angeben oder wenn Sie @command{guix shell} ohne weitere Argumente aufrufen, wird die Umgebung von @command{guix shell} zwischengespeichert, damit weitere Aufrufe sie ohne Verzögerung verwenden können. Wenn die Datei abgeändert wurde, wird der Zwischenspeicher ungültig." + +#~ msgid "" +#~ "name: home-zsh-plugin-manager\n" +#~ "location: gnu/home/services/shellutils.scm:28:2\n" +#~ "extends: home-zsh home-profile\n" +#~ "description: Install plugins in profile and configure Zsh to load them.\n" +#~ "relevance: 1\n" +#~ "\n" +#~ msgstr "" +#~ "name: home-zsh-plugin-manager\n" +#~ "location: gnu/home/services/shellutils.scm:28:2\n" +#~ "extends: home-zsh home-profile\n" +#~ "description: Install plugins in profile and configure Zsh to load them.\n" +#~ "relevance: 1\n" +#~ "\n" + +#~ msgid "" +#~ "name: home-zsh-direnv\n" +#~ "location: gnu/home/services/shellutils.scm:69:2\n" +#~ "extends: home-profile home-zsh\n" +#~ "description: Enables `direnv' for `zsh'. Adds hook to `.zshrc' and installs a\n" +#~ "+ package in the profile.\n" +#~ "relevance: 1\n" +#~ "\n" +#~ msgstr "" +#~ "name: home-zsh-direnv\n" +#~ "location: gnu/home/services/shellutils.scm:69:2\n" +#~ "extends: home-profile home-zsh\n" +#~ "description: Enables `direnv' for `zsh'. Adds hook to `.zshrc' and installs a\n" +#~ "+ package in the profile.\n" +#~ "relevance: 1\n" +#~ "\n" + +#~ msgid "" +#~ "name: home-zsh-autosuggestions\n" +#~ "location: gnu/home/services/shellutils.scm:43:2\n" +#~ "extends: home-zsh-plugin-manager home-zsh\n" +#~ "description: Enables Fish-like fast/unobtrusive autosuggestions for `zsh' and\n" +#~ "+ sets reasonable default values for some plugin's variables to improve perfomance\n" +#~ "+ and adjust behavior: `(history completion)' is set for strategy, manual rebind\n" +#~ "+ and async are enabled.\n" +#~ "relevance: 1\n" +#~ "\n" +#~ msgstr "" +#~ "name: home-zsh-autosuggestions\n" +#~ "location: gnu/home/services/shellutils.scm:43:2\n" +#~ "extends: home-zsh-plugin-manager home-zsh\n" +#~ "description: Enables Fish-like fast/unobtrusive autosuggestions for `zsh' and\n" +#~ "+ sets reasonable default values for some plugin's variables to improve perfomance\n" +#~ "+ and adjust behavior: `(history completion)' is set for strategy, manual rebind\n" +#~ "+ and async are enabled.\n" +#~ "relevance: 1\n" +#~ "\n" + +#~ msgid "./etc/indent-code.el gnu/packages/@var{file}.scm @var{package}\n" +#~ msgstr "./etc/indent-code.el gnu/packages/@var{Datei}.scm @var{Paket}\n" + +#~ msgid "This automatically indents the definition of @var{package} in @file{gnu/packages/@var{file}.scm} by running Emacs in batch mode. To indent a whole file, omit the second argument:" +#~ msgstr "Dadurch wird die Definition von @var{Paket} in @file{gnu/packages/@var{Datei}.scm} automatisch eingerückt, indem Emacs im Batch-Modus läuft. Um die Einrückung in einer gesamten Datei vorzunehmen, lassen Sie das zweite Argument weg:" + +#~ msgid "./etc/indent-code.el gnu/services/@var{file}.scm\n" +#~ msgstr "./etc/indent-code.el gnu/services/@var{Datei}.scm\n" + +#~ msgid "Some older packages that aren't using @file{Package.toml} yet, will require this file to be created, too. The function @code{julia-create-package-toml} helps creating the file. You need to pass the outputs and the source of the package, its name (the same as the @code{file-name} parameter), the package uuid, the package version, and a list of dependencies specified by their name and their uuid." +#~ msgstr "Für manche ältere Pakete, die noch keine @file{Package.toml} benutzen, muss auch diese Datei erstellt werden. Die Funktion @code{julia-create-package-toml} hilft dabei. Sie müssen ihr nur die Ausgaben und die Quelle des Pakets übergeben sowie seinen Namen (derselbe wie beim Parameter @code{file-name}), die Paket-UUID, die Paketversion und eine Liste von Abhängigkeiten, jeweils angegeben über ihren Namen und ihre UUID." + #~ msgid "" #~ " (build-machine\n" #~ " (name \"armeight.example.org\")\n" @@ -70716,9 +71760,6 @@ msgstr "fdl-1.3.texi" #~ msgid "Size of the database writer queue." #~ msgstr "Der Name der zu benutzenden Datenbank." -#~ msgid "@code{database} (default: @code{\"/var/lib/cuirass/cuirass.db\"})" -#~ msgstr "@code{database} (Vorgabe: @code{\"/var/lib/cuirass/cuirass.db\"})" - #~ msgid "Location of sqlite database which contains the build results and previously added specifications." #~ msgstr "An welchem Ort sich die sqlite-Datenbank befinden soll, die die Erstellungsergebnisse und bisher hinzugefügte Spezifikationen speichert." @@ -70856,9 +71897,6 @@ msgstr "fdl-1.3.texi" #~ msgid "{@code{cups-configuration} parameter} package-list extensions" #~ msgstr "{@code{cups-configuration}-Parameter} „package“-Liste extensions" -#~ msgid "Secret file which will be appended to @file{zabbix.conf.php} file. This file contains credentials for use by Zabbix front-end. You are expected to create it manually." -#~ msgstr "Die Datei mit den Geheimnis-Informationen, die an die @file{zabbix.conf.php}-Datei angehängt wird. Diese Datei enthält Zugangsdaten für die Nutzung durch das Zabbix-Frontend. Es wird von Ihnen erwartet, dass Sie sie manuell erzeugen." - #~ msgid "@code{systems} (default: @var{#f})" #~ msgstr "@code{systems} (Vorgabe: @var{#f})" diff --git a/po/doc/guix-manual.es.po b/po/doc/guix-manual.es.po index 982d0d91f2..f2521c86d7 100644 --- a/po/doc/guix-manual.es.po +++ b/po/doc/guix-manual.es.po @@ -6,8 +6,9 @@ # ###################################################################### # * archivo, no fichero. # * equipo, no ordenador. -# Emilio Herrera , 2021. +# Emilio Herrera , 2021, 2022. # Reynaldo Cordero , 2021. +# Julien Lepiller , 2022. # # * MAC (mandatory access control): ¿control de acceso mandatorio? # Me suena fatal. @@ -51,8 +52,8 @@ msgid "" msgstr "" "Project-Id-Version: guix-manual 1.2.0-pre3\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2021-12-21 15:18+0000\n" -"PO-Revision-Date: 2021-10-31 16:05+0000\n" +"POT-Creation-Date: 2022-02-02 15:18+0000\n" +"PO-Revision-Date: 2022-01-27 19:16+0000\n" "Last-Translator: Emilio Herrera \n" "Language-Team: Spanish \n" "Language: es\n" @@ -60,7 +61,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.8\n" +"X-Generator: Weblate 4.10.1\n" "X-Bugs: Report translation errors to the Language-Team address.\n" #. #-#-#-#-# contributing.pot (guix manual checkout) #-#-#-#-# @@ -113,8 +114,8 @@ msgid "The latest and greatest." msgstr "Lo último y mejor." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:161 -#: guix-git/doc/contributing.texi:162 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:173 +#: guix-git/doc/contributing.texi:174 #, no-wrap msgid "Running Guix Before It Is Installed" msgstr "Ejecución de Guix antes de estar instalado" @@ -125,8 +126,8 @@ msgid "Hacker tricks." msgstr "Trucos de hacker." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:235 -#: guix-git/doc/contributing.texi:236 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:265 +#: guix-git/doc/contributing.texi:266 #, no-wrap msgid "The Perfect Setup" msgstr "La configuración perfecta" @@ -137,8 +138,8 @@ msgid "The right tools." msgstr "Las herramientas adecuadas." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:326 -#: guix-git/doc/contributing.texi:327 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:356 +#: guix-git/doc/contributing.texi:357 #, no-wrap msgid "Packaging Guidelines" msgstr "Pautas de empaquetamiento" @@ -149,8 +150,8 @@ msgid "Growing the distribution." msgstr "Crecimiento de la distribución." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:890 -#: guix-git/doc/contributing.texi:891 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:920 +#: guix-git/doc/contributing.texi:921 #, no-wrap msgid "Coding Style" msgstr "Estilo de codificación" @@ -161,8 +162,8 @@ msgid "Hygiene of the contributor." msgstr "Higiene de la contribuidora." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:989 -#: guix-git/doc/contributing.texi:990 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1013 +#: guix-git/doc/contributing.texi:1014 #, no-wrap msgid "Submitting Patches" msgstr "Envío de parches" @@ -174,8 +175,8 @@ msgstr "Comparta su trabajo." # FUZZY #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1270 -#: guix-git/doc/contributing.texi:1271 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1298 +#: guix-git/doc/contributing.texi:1299 #, no-wrap msgid "Tracking Bugs and Patches" msgstr "Seguimiento de errores y parches" @@ -183,11 +184,11 @@ msgstr "Seguimiento de errores y parches" #. type: menuentry #: guix-git/doc/contributing.texi:33 msgid "Keeping it all organized." -msgstr "" +msgstr "Mantenerlo todo organizado." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1385 -#: guix-git/doc/contributing.texi:1386 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1413 +#: guix-git/doc/contributing.texi:1414 #, no-wrap msgid "Commit Access" msgstr "Acceso al repositorio" @@ -198,8 +199,8 @@ msgid "Pushing to the official repository." msgstr "Subida de revisiones al repositorio oficial." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1611 -#: guix-git/doc/contributing.texi:1612 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1644 +#: guix-git/doc/contributing.texi:1645 #, no-wrap msgid "Updating the Guix Package" msgstr "Actualizar el paquete Guix" @@ -210,8 +211,8 @@ msgid "Updating the Guix package definition." msgstr "Actualización de la definición del paquete Guix." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1652 -#: guix-git/doc/contributing.texi:1653 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1686 #, no-wrap msgid "Translating Guix" msgstr "Traduciendo Guix" @@ -283,17 +284,14 @@ msgstr "El modo más fácil de preparar un entorno de desarrollo para Guix es, p #. type: example #: guix-git/doc/contributing.texi:77 -#, fuzzy, no-wrap -#| msgid "guix environment guix --pure\n" +#, no-wrap msgid "guix shell -D guix --pure\n" -msgstr "guix environment guix --pure\n" +msgstr "guix shell -D guix --pure\n" #. type: Plain text #: guix-git/doc/contributing.texi:80 -#, fuzzy -#| msgid "@xref{Invoking guix environment}, for more information on that command." msgid "@xref{Invoking guix shell}, for more information on that command." -msgstr "@xref{Invoking guix environment}, para más información sobre dicha orden." +msgstr "@xref{Invoking guix shell}, para más información sobre este comando." #. type: Plain text #: guix-git/doc/contributing.texi:84 @@ -338,17 +336,14 @@ msgstr "@url{https://www.gnu.org/software/help2man/, GNU Help2man (opcional)}." #. type: Plain text #: guix-git/doc/contributing.texi:96 -#, fuzzy -#| msgid "On Guix, extra dependencies can be added by instead running @command{guix environment} with @option{--ad-hoc}:" msgid "On Guix, extra dependencies can be added by instead running @command{guix shell}:" -msgstr "En Guix se pueden añadir las dependencias opcionales ejecutando @command{guix environment} con @option{--ad-hoc}:" +msgstr "En Guix se pueden añadir dependencias adicionales ejecutando en su lugar @command{guix shell}:" #. type: example #: guix-git/doc/contributing.texi:99 -#, fuzzy, no-wrap -#| msgid "guix environment guix --pure --ad-hoc help2man git strace\n" +#, no-wrap msgid "guix shell -D guix help2man git strace --pure\n" -msgstr "guix environment guix --pure --ad-hoc help2man git strace\n" +msgstr "guix shell -D guix help2man git strace --pure\n" #. type: Plain text #: guix-git/doc/contributing.texi:103 @@ -417,30 +412,31 @@ msgid "make authenticate GUIX_GIT_KEYRING=myremote/keyring\n" msgstr "make authenticate GUIX_GIT_KEYRING=miremoto/keyring\n" #. type: quotation -#: guix-git/doc/contributing.texi:154 guix-git/doc/contributing.texi:1463 -#: guix-git/doc/guix.texi:594 guix-git/doc/guix.texi:643 -#: guix-git/doc/guix.texi:833 guix-git/doc/guix.texi:1813 -#: guix-git/doc/guix.texi:2060 guix-git/doc/guix.texi:2244 -#: guix-git/doc/guix.texi:2465 guix-git/doc/guix.texi:2677 -#: guix-git/doc/guix.texi:3807 guix-git/doc/guix.texi:4548 -#: guix-git/doc/guix.texi:4562 guix-git/doc/guix.texi:4644 -#: guix-git/doc/guix.texi:4874 guix-git/doc/guix.texi:5615 -#: guix-git/doc/guix.texi:6082 guix-git/doc/guix.texi:6333 -#: guix-git/doc/guix.texi:6454 guix-git/doc/guix.texi:6482 -#: guix-git/doc/guix.texi:6535 guix-git/doc/guix.texi:9391 -#: guix-git/doc/guix.texi:9461 guix-git/doc/guix.texi:11198 -#: guix-git/doc/guix.texi:11238 guix-git/doc/guix.texi:11512 -#: guix-git/doc/guix.texi:11524 guix-git/doc/guix.texi:14000 -#: guix-git/doc/guix.texi:14631 guix-git/doc/guix.texi:15521 -#: guix-git/doc/guix.texi:16507 guix-git/doc/guix.texi:19140 -#: guix-git/doc/guix.texi:19310 guix-git/doc/guix.texi:27188 -#: guix-git/doc/guix.texi:30914 guix-git/doc/guix.texi:34669 -#: guix-git/doc/guix.texi:34903 guix-git/doc/guix.texi:35073 -#: guix-git/doc/guix.texi:35232 guix-git/doc/guix.texi:35334 -#: guix-git/doc/guix.texi:35435 guix-git/doc/guix.texi:35738 -#: guix-git/doc/guix.texi:36896 guix-git/doc/guix.texi:36971 -#: guix-git/doc/guix.texi:37006 guix-git/doc/guix.texi:37056 -#: guix-git/doc/guix.texi:37143 guix-git/doc/guix.texi:37564 +#: guix-git/doc/contributing.texi:154 guix-git/doc/contributing.texi:1496 +#: guix-git/doc/guix.texi:605 guix-git/doc/guix.texi:654 +#: guix-git/doc/guix.texi:844 guix-git/doc/guix.texi:1830 +#: guix-git/doc/guix.texi:2077 guix-git/doc/guix.texi:2261 +#: guix-git/doc/guix.texi:2482 guix-git/doc/guix.texi:2694 +#: guix-git/doc/guix.texi:3825 guix-git/doc/guix.texi:4566 +#: guix-git/doc/guix.texi:4580 guix-git/doc/guix.texi:4662 +#: guix-git/doc/guix.texi:4892 guix-git/doc/guix.texi:5633 +#: guix-git/doc/guix.texi:6119 guix-git/doc/guix.texi:6376 +#: guix-git/doc/guix.texi:6497 guix-git/doc/guix.texi:6525 +#: guix-git/doc/guix.texi:6578 guix-git/doc/guix.texi:9581 +#: guix-git/doc/guix.texi:9705 guix-git/doc/guix.texi:9775 +#: guix-git/doc/guix.texi:11512 guix-git/doc/guix.texi:11552 +#: guix-git/doc/guix.texi:11826 guix-git/doc/guix.texi:11838 +#: guix-git/doc/guix.texi:14357 guix-git/doc/guix.texi:14988 +#: guix-git/doc/guix.texi:15878 guix-git/doc/guix.texi:16864 +#: guix-git/doc/guix.texi:19502 guix-git/doc/guix.texi:19672 +#: guix-git/doc/guix.texi:27525 guix-git/doc/guix.texi:31279 +#: guix-git/doc/guix.texi:35108 guix-git/doc/guix.texi:35342 +#: guix-git/doc/guix.texi:35512 guix-git/doc/guix.texi:35676 +#: guix-git/doc/guix.texi:35778 guix-git/doc/guix.texi:35817 +#: guix-git/doc/guix.texi:35891 guix-git/doc/guix.texi:36228 +#: guix-git/doc/guix.texi:37386 guix-git/doc/guix.texi:37461 +#: guix-git/doc/guix.texi:37496 guix-git/doc/guix.texi:37546 +#: guix-git/doc/guix.texi:37633 guix-git/doc/guix.texi:38043 #, no-wrap msgid "Note" msgstr "Nota" @@ -451,29 +447,47 @@ msgid "You are advised to run @command{make authenticate} after every @command{g msgstr "Se recomienda que ejecute @command{make authenticate} tras cada ejecución de @command{git pull}. Así se asegura de que está recibiendo cambios válidos del repositorio." #. type: Plain text -#: guix-git/doc/contributing.texi:168 +#: guix-git/doc/contributing.texi:162 +msgid "After updating the repository, @command{make} might fail with an error similar to the following example:" +msgstr "" + +#. type: example +#: guix-git/doc/contributing.texi:166 +#, no-wrap +msgid "" +"error: failed to load 'gnu/packages/dunst.scm':\n" +"ice-9/eval.scm:293:34: In procedure abi-check: #>: record ABI mismatch; recompilation needed\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:172 +msgid "This means that one of the record types that Guix defines (in this example, the @code{origin} record) has changed, and all of guix needs to be recompiled to take that change into account. To do so, run @command{make clean-go} followed by @command{make}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:180 msgid "In order to keep a sane working environment, you will find it useful to test the changes made in your local source tree checkout without actually installing them. So that you can distinguish between your ``end-user'' hat and your ``motley'' costume." msgstr "Para mantener un entorno de trabajo estable, encontrará útil probar los cambios hechos en su copia de trabajo local sin instalarlos realmente. De esa manera, puede distinguir entre su sombrero de ``usuaria final'' y el traje de ``harapos''." # FUZZY #. type: Plain text -#: guix-git/doc/contributing.texi:179 +#: guix-git/doc/contributing.texi:191 msgid "To that end, all the command-line tools can be used even if you have not run @code{make install}. To do that, you first need to have an environment with all the dependencies available (@pxref{Building from Git}), and then simply prefix each command with @command{./pre-inst-env} (the @file{pre-inst-env} script lives in the top build tree of Guix; it is generated by running @command{./bootstrap} followed by @command{./configure}). As an example, here is how you would build the @code{hello} package as defined in your working tree (this assumes @command{guix-daemon} is already running on your system; it's OK if it's a different version):" msgstr "Para dicho fin, todas las herramientas de línea de comandos pueden ser usadas incluso si no ha ejecutado @code{make install}. Para hacerlo, primero necesita tener un entorno con todas las dependencias disponibles (@pxref{Building from Git}) y entonces añada al inicio de cada orden @command{./pre-inst-env} (el guión @file{pre-inst-env} se encuentra en la raíz del árbol de compilación de Guix; se genera ejecutando @command{./bootstrap} seguido de @command{./configure}). A modo de ejemplo puede ver a continuación cómo construiría el paquete @code{hello} que se encuentre definido en su directorio de trabajo (esto asume que @command{guix daemon} se esté ejecutando en su sistema; no es un problema que la versión sea diferente):" #. type: example -#: guix-git/doc/contributing.texi:182 +#: guix-git/doc/contributing.texi:194 #, no-wrap msgid "$ ./pre-inst-env guix build hello\n" msgstr "$ ./pre-inst-env guix build hello\n" #. type: Plain text -#: guix-git/doc/contributing.texi:186 +#: guix-git/doc/contributing.texi:198 msgid "Similarly, an example for a Guile session using the Guix modules:" msgstr "De manera similar, un ejemplo de una sesión de Guile con los módulos Guix disponibles:" #. type: example -#: guix-git/doc/contributing.texi:189 +#: guix-git/doc/contributing.texi:201 #, no-wrap msgid "" "$ ./pre-inst-env guile -c '(use-modules (guix utils)) (pk (%current-system))'\n" @@ -483,30 +497,30 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/contributing.texi:191 +#: guix-git/doc/contributing.texi:203 #, no-wrap msgid ";;; (\"x86_64-linux\")\n" msgstr ";;; (\"x86_64-linux\")\n" #. type: cindex -#: guix-git/doc/contributing.texi:194 +#: guix-git/doc/contributing.texi:206 #, no-wrap msgid "REPL" msgstr "REPL" #. type: cindex -#: guix-git/doc/contributing.texi:195 +#: guix-git/doc/contributing.texi:207 #, no-wrap msgid "read-eval-print loop" msgstr "sesión interactiva" #. type: Plain text -#: guix-git/doc/contributing.texi:198 +#: guix-git/doc/contributing.texi:210 msgid "@dots{} and for a REPL (@pxref{Using Guile Interactively,,, guile, Guile Reference Manual}):" msgstr "@dots{} y para un entorno interactivo (REPL) (@pxref{Using Guile Interactively,,, guile, Guile Reference Manual}):" #. type: example -#: guix-git/doc/contributing.texi:213 +#: guix-git/doc/contributing.texi:225 #, no-wrap msgid "" "$ ./pre-inst-env guile\n" @@ -539,44 +553,67 @@ msgstr "" # FUZZY #. type: Plain text -#: guix-git/doc/contributing.texi:221 +#: guix-git/doc/contributing.texi:233 msgid "If you are hacking on the daemon and its supporting code or if @command{guix-daemon} is not already running on your system, you can launch it straight from the build tree@footnote{The @option{-E} flag to @command{sudo} guarantees that @code{GUILE_LOAD_PATH} is correctly set such that @command{guix-daemon} and the tools it uses can find the Guile modules they need.}:" msgstr "Si modifica el código del daemon o código auxiliar, o si @command{guix-daemon} no se está ejecutando todavía en su sistema, puede ejecutarlo desde el árbol de construción@footnote{La opción @option{-E} a @command{sudo} asegura que @code{GUILE_LOAD_PATH} contiene la información correcta para que @command{guix-daemon} y las herramientas que usa puedan encontrar los módulos Guile que necesitan.}:" #. type: example -#: guix-git/doc/contributing.texi:224 +#: guix-git/doc/contributing.texi:236 #, no-wrap msgid "$ sudo -E ./pre-inst-env guix-daemon --build-users-group=guixbuild\n" msgstr "$ sudo -E ./pre-inst-env guix-daemon --build-users-group=guixbuild\n" #. type: Plain text -#: guix-git/doc/contributing.texi:228 +#: guix-git/doc/contributing.texi:240 msgid "The @command{pre-inst-env} script sets up all the environment variables necessary to support this, including @env{PATH} and @env{GUILE_LOAD_PATH}." msgstr "El guión @command{pre-inst-env} proporciona valor a todas las variables de entorno necesarias para permitirlo, incluyendo @env{PATH} y @env{GUILE_LOAD_PATH}." #. type: Plain text -#: guix-git/doc/contributing.texi:233 +#: guix-git/doc/contributing.texi:245 msgid "Note that @command{./pre-inst-env guix pull} does @emph{not} upgrade the local source tree; it simply updates the @file{~/.config/guix/current} symlink (@pxref{Invoking guix pull}). Run @command{git pull} instead if you want to upgrade your local source tree." msgstr "Fíjese que la orden @command{./pre-inst-env guix pull} @emph{no} actualiza el árbol de fuentes local; simplemente actualiza el enlace @file{~/.config/guix/latest} (@pxref{Invoking guix pull}). Ejecute @command{git pull} si quiere actualizar su árbol de fuentes local." #. type: Plain text -#: guix-git/doc/contributing.texi:243 +#: guix-git/doc/contributing.texi:249 +msgid "Sometimes, especially if you have recently updated your repository, running @command{./pre-inst-env} will print a message similar to the following example:" +msgstr "" + +#. type: example +#: guix-git/doc/contributing.texi:253 +#, no-wrap +msgid "" +";;; note: source file /home/user/projects/guix/guix/progress.scm\n" +";;; newer than compiled /home/user/projects/guix/guix/progress.go\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:259 +msgid "This is only a note and you can safely ignore it. You can get rid of the message by running @command{make -j4}. Until you do, Guile will run slightly slower because it will interpret the code instead of using prepared Guile object (@file{.go}) files." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:264 +msgid "You can run @command{make} automatically as you work using @command{watchexec} from the @code{watchexec} package. For example, to build again each time you update a package file, you can run @samp{watchexec -w gnu/packages make -j4}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:273 msgid "The Perfect Setup to hack on Guix is basically the perfect setup used for Guile hacking (@pxref{Using Guile in Emacs,,, guile, Guile Reference Manual}). First, you need more than an editor, you need @url{https://www.gnu.org/software/emacs, Emacs}, empowered by the wonderful @url{https://nongnu.org/geiser/, Geiser}. To set that up, run:" msgstr "La configuración perfecta para hackear en Guix es básicamente la configuración perfecta para hacerlo en Guile (@pxref{Using Guile in Emacs,,, guile, Guile Reference Manual}). Primero, necesita más que un editor, necesita @url{https://www.gnu.org/software/emacs, Emacs}, con su potencia aumentada gracias al maravilloso @url{https://nongnu.org/geiser, Geiser}. Para conseguir esta configuración ejecute:" #. type: example -#: guix-git/doc/contributing.texi:246 +#: guix-git/doc/contributing.texi:276 #, no-wrap msgid "guix package -i emacs guile emacs-geiser emacs-geiser-guile\n" msgstr "guix package -i emacs guile emacs-geiser emacs-geiser-guile\n" #. type: Plain text -#: guix-git/doc/contributing.texi:255 +#: guix-git/doc/contributing.texi:285 msgid "Geiser allows for interactive and incremental development from within Emacs: code compilation and evaluation from within buffers, access to on-line documentation (docstrings), context-sensitive completion, @kbd{M-.} to jump to an object definition, a REPL to try out your code, and more (@pxref{Introduction,,, geiser, Geiser User Manual}). For convenient Guix development, make sure to augment Guile’s load path so that it finds source files from your checkout:" msgstr "Geiser permite desarrollo incremental e interactivo dentro de Emacs: compilación y evaluación de código dentro de los buffers, acceso a documentación en línea (docstrings), completado dependiente del contexto, @kbd{M-.} para saltar a la definición de un objeto, una consola interactiva (REPL) para probar su código, y más (@pxref{Introduction,,, geiser, Geiser User Manual}). Para desarrollar Guix adecuadamente, asegúrese de aumentar la ruta de carga de Guile (load-path) para que encuentre los archivos fuente de su copia de trabajo:" #. type: lisp -#: guix-git/doc/contributing.texi:260 +#: guix-git/doc/contributing.texi:290 #, no-wrap msgid "" ";; @r{Assuming the Guix checkout is in ~/src/guix.}\n" @@ -589,18 +626,18 @@ msgstr "" # TODO: (MAAV) ¿Neat? ¿Qué traducción hay? #. type: Plain text -#: guix-git/doc/contributing.texi:268 +#: guix-git/doc/contributing.texi:298 msgid "To actually edit the code, Emacs already has a neat Scheme mode. But in addition to that, you must not miss @url{https://www.emacswiki.org/emacs/ParEdit, Paredit}. It provides facilities to directly operate on the syntax tree, such as raising an s-expression or wrapping it, swallowing or rejecting the following s-expression, etc." msgstr "Para realmente editar el código, Emacs tiene un modo para Scheme muy limpio. Pero además de eso, no debe perderse @url{http://www.emacswiki.org/emacs/ParEdit, Paredit}. Provee de facilidades para operar directamente en el árbol sintáctico como elevar una expresión-S o recubrirla, embeber o expulsar la siguiente expresión-S, etc." #. type: cindex -#: guix-git/doc/contributing.texi:269 +#: guix-git/doc/contributing.texi:299 #, no-wrap msgid "code snippets" msgstr "fragmentos de código" #. type: cindex -#: guix-git/doc/contributing.texi:270 +#: guix-git/doc/contributing.texi:300 #, no-wrap msgid "templates" msgstr "plantillas" @@ -608,18 +645,18 @@ msgstr "plantillas" # FUZZY # TODO: (MAAV) ¿Boilerplate? #. type: cindex -#: guix-git/doc/contributing.texi:271 +#: guix-git/doc/contributing.texi:301 #, no-wrap msgid "reducing boilerplate" msgstr "reducir la verborrea" #. type: Plain text -#: guix-git/doc/contributing.texi:278 +#: guix-git/doc/contributing.texi:308 msgid "We also provide templates for common git commit messages and package definitions in the @file{etc/snippets} directory. These templates can be used with @url{https://joaotavora.github.io/yasnippet/, YASnippet} to expand short trigger strings to interactive text snippets. You may want to add the snippets directory to the @var{yas-snippet-dirs} variable in Emacs." msgstr "También proporcionamos plantillas para los mensajes de revisión de git comunes y definiciones de paquetes en el directorio @file{etc/snippets}. Estas plantillas pueden ser usadas con @url{https://joaotavora.github.io/yasnippet, YASnippet} para expandir mnemotécnicos a fragmentos interactivos de texto. Puedes querer añadir el directorio de fragmentos a la variable @var{yas-snippet-dirs} en Emacs." #. type: lisp -#: guix-git/doc/contributing.texi:283 +#: guix-git/doc/contributing.texi:313 #, no-wrap msgid "" ";; @r{Assuming the Guix checkout is in ~/src/guix.}\n" @@ -631,40 +668,40 @@ msgstr "" " (add-to-list 'yas-snippet-dirs \"~/src/guix/etc/snippets\"))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:291 +#: guix-git/doc/contributing.texi:321 msgid "The commit message snippets depend on @url{https://magit.vc/, Magit} to display staged files. When editing a commit message type @code{add} followed by @kbd{TAB} to insert a commit message template for adding a package; type @code{update} followed by @kbd{TAB} to insert a template for updating a package; type @code{https} followed by @kbd{TAB} to insert a template for changing the home page URI of a package to HTTPS." msgstr "Los fragmentos de mensajes de la revisión dependen de @url{https://magit.vc/, Magit} para mostrar los archivos preparados. En la edición del mensaje de la revisión teclee @code{add} seguido de @kbd{TAB} (el tabulador) para insertar la plantilla del mensaje de la revisión de adición de un paquete; teclee @code{update} seguido de @kbd{TAB} para insertar una plantilla de actualización de un paquete; teclee @code{https} seguido de @kbd{TAB} para insertar una plantilla para cambiar la URI de la página de un paquete a HTTPS." #. type: Plain text -#: guix-git/doc/contributing.texi:297 +#: guix-git/doc/contributing.texi:327 msgid "The main snippet for @code{scheme-mode} is triggered by typing @code{package...} followed by @kbd{TAB}. This snippet also inserts the trigger string @code{origin...}, which can be expanded further. The @code{origin} snippet in turn may insert other trigger strings ending on @code{...}, which also can be expanded further." msgstr "El fragmento principal para @code{scheme-mode} es activado al teclear @code{package...} seguido de @kbd{TAB}. Este fragmento también inserta el lanzador @code{origin...} que puede ser expandido de nuevo. El fragmento @code{origin} puede a su vez insertar otros identificadores de lanzado terminando en @code{...}, que pueden ser expandidos de nuevo." #. type: cindex -#: guix-git/doc/contributing.texi:298 +#: guix-git/doc/contributing.texi:328 #, no-wrap msgid "insert or update copyright" msgstr "introduce o actualiza el copyright" #. type: code{#1} -#: guix-git/doc/contributing.texi:299 +#: guix-git/doc/contributing.texi:329 #, no-wrap msgid "M-x guix-copyright" msgstr "M-x guix-copyright" #. type: code{#1} -#: guix-git/doc/contributing.texi:300 +#: guix-git/doc/contributing.texi:330 #, no-wrap msgid "M-x copyright-update" msgstr "M-x copyright-update" #. type: Plain text -#: guix-git/doc/contributing.texi:304 +#: guix-git/doc/contributing.texi:334 msgid "We additionally provide insertion and automatic update of a copyright in @file{etc/copyright.el}. You may want to set your full name, mail, and load a file." msgstr "También proporcionamos herramientas para la inserción y actualización automática del copyright en @file{etc/copyright.el}. Puede proporcionar su nombre completo, correo electrónico y cargar el archivo." #. type: lisp -#: guix-git/doc/contributing.texi:310 +#: guix-git/doc/contributing.texi:340 #, no-wrap msgid "" "(setq user-full-name \"Alice Doe\")\n" @@ -678,17 +715,17 @@ msgstr "" "(load-file \"~/src/guix/etc/copyright.el\")\n" #. type: Plain text -#: guix-git/doc/contributing.texi:313 +#: guix-git/doc/contributing.texi:343 msgid "To insert a copyright at the current line invoke @code{M-x guix-copyright}." msgstr "Para insertar el aviso de copyright en la línea actual invoque @code{M-x guix-copyright}." #. type: Plain text -#: guix-git/doc/contributing.texi:315 +#: guix-git/doc/contributing.texi:345 msgid "To update a copyright you need to specify a @code{copyright-names-regexp}." msgstr "Para actualizar el aviso de copyright debe especificar una expresión regular de nombres en la variable @code{copyright-names-regexp}." #. type: lisp -#: guix-git/doc/contributing.texi:319 +#: guix-git/doc/contributing.texi:349 #, no-wrap msgid "" "(setq copyright-names-regexp\n" @@ -698,38 +735,38 @@ msgstr "" " (format \"%s <%s>\" user-full-name user-mail-address))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:325 +#: guix-git/doc/contributing.texi:355 msgid "You can check if your copyright is up to date by evaluating @code{M-x copyright-update}. If you want to do it automatically after each buffer save then add @code{(add-hook 'after-save-hook 'copyright-update)} in Emacs." msgstr "Puede comprobar si su copyright está actualizado evaluando @code{M-x copyright-update}. Si desea hacerlo de manera automática tras guardar un archivo añada @code{(add-hook 'after-save-hook 'copyright-update)} en Emacs." #. type: cindex -#: guix-git/doc/contributing.texi:329 +#: guix-git/doc/contributing.texi:359 #, no-wrap msgid "packages, creating" msgstr "paquetes, creación" #. type: Plain text -#: guix-git/doc/contributing.texi:333 +#: guix-git/doc/contributing.texi:363 msgid "The GNU distribution is nascent and may well lack some of your favorite packages. This section describes how you can help make the distribution grow." msgstr "La distribución GNU es reciente y puede no disponer de alguno de sus paquetes favoritos. Esta sección describe cómo puede ayudar a hacer crecer la distribución." #. type: Plain text -#: guix-git/doc/contributing.texi:341 +#: guix-git/doc/contributing.texi:371 msgid "Free software packages are usually distributed in the form of @dfn{source code tarballs}---typically @file{tar.gz} files that contain all the source files. Adding a package to the distribution means essentially two things: adding a @dfn{recipe} that describes how to build the package, including a list of other packages required to build it, and adding @dfn{package metadata} along with that recipe, such as a description and licensing information." msgstr "Los paquetes de software libre habitualmente se distribuyen en forma de @dfn{archivadores de código fuente}---típicamente archivos @file{tar.gz} que contienen todos los archivos fuente. Añadir un paquete a la distribución significa esencialmente dos cosas: añadir una @dfn{receta} que describe cómo construir el paquete, la que incluye una lista de otros paquetes necesarios para la construcción, y añadir @dfn{metadatos del paquete} junto a dicha receta, como la descripción y la información de licencias." #. type: Plain text -#: guix-git/doc/contributing.texi:350 +#: guix-git/doc/contributing.texi:380 msgid "In Guix all this information is embodied in @dfn{package definitions}. Package definitions provide a high-level view of the package. They are written using the syntax of the Scheme programming language; in fact, for each package we define a variable bound to the package definition, and export that variable from a module (@pxref{Package Modules}). However, in-depth Scheme knowledge is @emph{not} a prerequisite for creating packages. For more information on package definitions, @pxref{Defining Packages}." msgstr "En Guix toda esta información está contenida en @dfn{definiciones de paquete}. Las definiciones de paquete proporcionan una vista de alto nivel del paquete. Son escritas usando la sintaxis del lenguaje de programación Scheme; de hecho, definimos una variable por cada paquete enlazada a su definición y exportamos esa variable desde un módulo (@pxref{Package Modules}). No obstante, un conocimiento profundo de Scheme @emph{no} es un pre-requisito para la creación de paquetes. Para más información obre las definiciones de paquetes, @pxref{Defining Packages}." #. type: Plain text -#: guix-git/doc/contributing.texi:356 +#: guix-git/doc/contributing.texi:386 msgid "Once a package definition is in place, stored in a file in the Guix source tree, it can be tested using the @command{guix build} command (@pxref{Invoking guix build}). For example, assuming the new package is called @code{gnew}, you may run this command from the Guix build tree (@pxref{Running Guix Before It Is Installed}):" msgstr "Una vez que una definición de paquete está en su lugar, almacenada en un archivo del árbol de fuentes de Guix, puede probarse usando la orden @command{guix build} (@pxref{Invoking guix build}). Por ejemplo, asumiendo que el nuevo paquete se llama @code{gnuevo}, puede ejecutar esta orden desde el árbol de construcción de Guix (@pxref{Running Guix Before It Is Installed}):" #. type: example -#: guix-git/doc/contributing.texi:359 +#: guix-git/doc/contributing.texi:389 #, no-wrap msgid "./pre-inst-env guix build gnew --keep-failed\n" msgstr "./pre-inst-env guix build gnuevo --keep-failed\n" @@ -737,153 +774,153 @@ msgstr "./pre-inst-env guix build gnuevo --keep-failed\n" # FUZZY # MAAV: Log #. type: Plain text -#: guix-git/doc/contributing.texi:365 +#: guix-git/doc/contributing.texi:395 msgid "Using @code{--keep-failed} makes it easier to debug build failures since it provides access to the failed build tree. Another useful command-line option when debugging is @code{--log-file}, to access the build log." msgstr "El uso de @code{--keep-failed} facilita la depuración de errores de construcción ya que proporciona acceso al árbol de la construcción fallida. Otra opción útil de línea de órdenes para la depuración es @code{--log-file}, para acceder al log de construcción." #. type: Plain text -#: guix-git/doc/contributing.texi:370 +#: guix-git/doc/contributing.texi:400 msgid "If the package is unknown to the @command{guix} command, it may be that the source file contains a syntax error, or lacks a @code{define-public} clause to export the package variable. To figure it out, you may load the module from Guile to get more information about the actual error:" msgstr "Si el paquete resulta desconocido para la orden @command{guix}, puede ser que el archivo fuente contenga un error de sintaxis, o no tenga una cláusula @code{define-public} para exportar la variable del paquete. Para encontrar el problema puede cargar el módulo desde Guile para obtener más información sobre el error real:" #. type: example -#: guix-git/doc/contributing.texi:373 +#: guix-git/doc/contributing.texi:403 #, no-wrap msgid "./pre-inst-env guile -c '(use-modules (gnu packages gnew))'\n" msgstr "./pre-inst-env guile -c '(use-modules (gnu packages gnuevo))'\n" #. type: Plain text -#: guix-git/doc/contributing.texi:380 +#: guix-git/doc/contributing.texi:410 #, fuzzy #| msgid "Once your package builds correctly, please send us a patch (@pxref{Submitting Patches}). Well, if you need help, we will be happy to help you too. Once the patch is committed in the Guix repository, the new package automatically gets built on the supported platforms by @url{@value{SUBSTITUTE-URL}, our continuous integration system}." msgid "Once your package builds correctly, please send us a patch (@pxref{Submitting Patches}). Well, if you need help, we will be happy to help you too. Once the patch is committed in the Guix repository, the new package automatically gets built on the supported platforms by @url{https://@value{SUBSTITUTE-SERVER-1}, our continuous integration system}." msgstr "Una vez que se construya correctamente su paquete, por favor, envíenos un parche (@pxref{Submitting Patches}). En cualquier caso, si necesita ayuda también estaremos felices de ayudarle. Una vez el parche se haya incorporado al repositorio de Guix, el nuevo paquete se construye automáticamente en las plataformas disponibles por @url{@value{SUBSTITUTE-URL}, nuestro sistema de integración continua}." #. type: cindex -#: guix-git/doc/contributing.texi:381 +#: guix-git/doc/contributing.texi:411 #, no-wrap msgid "substituter" msgstr "servidor de sustituciones" #. type: Plain text -#: guix-git/doc/contributing.texi:388 +#: guix-git/doc/contributing.texi:418 #, fuzzy #| msgid "Users can obtain the new package definition simply by running @command{guix pull} (@pxref{Invoking guix pull}). When @code{@value{SUBSTITUTE-SERVER}} is done building the package, installing the package automatically downloads binaries from there (@pxref{Substitutes}). The only place where human intervention is needed is to review and apply the patch." msgid "Users can obtain the new package definition simply by running @command{guix pull} (@pxref{Invoking guix pull}). When @code{@value{SUBSTITUTE-SERVER-1}} is done building the package, installing the package automatically downloads binaries from there (@pxref{Substitutes}). The only place where human intervention is needed is to review and apply the patch." msgstr "Las usuarias pueden obtener la nueva definición de paquete ejecutando simplemente @command{guix pull} (@pxref{Invoking guix pull}). Cuando @code{@value{SUBSTITUTE-SERVER}} ha terminado de construir el paquete, la instalación del paquete descarga automáticamente los binarios desde allí (@pxref{Substitutes}). El único lugar donde la intervención humana es necesaria es en la revisión y aplicación del parche." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:404 -#: guix-git/doc/contributing.texi:405 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:434 +#: guix-git/doc/contributing.texi:435 #, no-wrap msgid "Software Freedom" msgstr "Libertad del software" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "What may go into the distribution." msgstr "Qué puede entrar en la distribución." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:432 -#: guix-git/doc/contributing.texi:433 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:462 +#: guix-git/doc/contributing.texi:463 #, no-wrap msgid "Package Naming" msgstr "Nombrado de paquetes" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "What's in a name?" msgstr "¿Qué hay en un nombre?" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:465 -#: guix-git/doc/contributing.texi:466 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:495 +#: guix-git/doc/contributing.texi:496 #, no-wrap msgid "Version Numbers" msgstr "Versiones numéricas" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "When the name is not enough." msgstr "Cuando el nombre no es suficiente." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:572 -#: guix-git/doc/contributing.texi:573 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:602 +#: guix-git/doc/contributing.texi:603 #, no-wrap msgid "Synopses and Descriptions" msgstr "Sinopsis y descripciones" # FUZZY #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Helping users find the right package." msgstr "Ayuda para que las usuarias encuentren el paquete correcto." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:651 -#: guix-git/doc/contributing.texi:652 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:681 +#: guix-git/doc/contributing.texi:682 #, no-wrap msgid "Snippets versus Phases" msgstr "@code{snippets} frente a fases" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Whether to use a snippet, or a build phase." msgstr "¿Debo usar @code{snippet} o una fase de construcción?" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:666 -#: guix-git/doc/contributing.texi:667 guix-git/doc/guix.texi:1995 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:696 +#: guix-git/doc/contributing.texi:697 guix-git/doc/guix.texi:2012 #, no-wrap msgid "Emacs Packages" msgstr "Paquetes Emacs" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Your Elisp fix." msgstr "Su corrección Elisp." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:706 -#: guix-git/doc/contributing.texi:707 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:736 +#: guix-git/doc/contributing.texi:737 #, no-wrap msgid "Python Modules" msgstr "Módulos Python" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "A touch of British comedy." msgstr "Un toque de comedia británica." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:782 -#: guix-git/doc/contributing.texi:783 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:812 +#: guix-git/doc/contributing.texi:813 #, no-wrap msgid "Perl Modules" msgstr "Módulos Perl" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Little pearls." msgstr "Pequeñas perlas." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:798 -#: guix-git/doc/contributing.texi:799 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:828 +#: guix-git/doc/contributing.texi:829 #, no-wrap msgid "Java Packages" msgstr "Paquetes Java" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Coffee break." msgstr "La parada del café." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:818 -#: guix-git/doc/contributing.texi:819 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:848 +#: guix-git/doc/contributing.texi:849 #, no-wrap msgid "Rust Crates" msgstr "Crates de Rust" @@ -891,25 +928,25 @@ msgstr "Crates de Rust" # MAAV: Esta broma se pierde en la traducción completamente (rust-óxido) # :( #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Beware of oxidation." msgstr "Sistema de paquetes de Rust." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:852 -#: guix-git/doc/contributing.texi:853 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:882 +#: guix-git/doc/contributing.texi:883 #, no-wrap msgid "Fonts" msgstr "Tipografías" # XXX: (MAAV) Mmmm, es difícil traducir esta... #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Fond of fonts." msgstr "Amor por las letras." #. type: cindex -#: guix-git/doc/contributing.texi:408 +#: guix-git/doc/contributing.texi:438 #, no-wrap msgid "free software" msgstr "software libre" @@ -917,78 +954,78 @@ msgstr "software libre" # FUZZY # MAAV: Comprobar traducción de la página de GNU #. type: Plain text -#: guix-git/doc/contributing.texi:416 +#: guix-git/doc/contributing.texi:446 msgid "The GNU operating system has been developed so that users can have freedom in their computing. GNU is @dfn{free software}, meaning that users have the @url{https://www.gnu.org/philosophy/free-sw.html,four essential freedoms}: to run the program, to study and change the program in source code form, to redistribute exact copies, and to distribute modified versions. Packages found in the GNU distribution provide only software that conveys these four freedoms." msgstr "El sistema operativo GNU se ha desarrollado para que las usuarias puedan ejercitar su libertad de computación. GNU es @dfn{software libre}, lo que significa ue las usuarias tienen las @url{https://www.gnu.org/philosophy/free-sw.html,cuatro libertades esenciales}: para ejecutar el programa, para estudiar y modificar el programa en la forma de código fuente, para redistribuir copias exactas y para distribuir versiones modificadas. Los paquetes encontrados en la distribución GNU contienen únicamente software que proporciona estas cuatro libertades." # FUZZY # MAAV: Comprobar traducción de la página de GNU #. type: Plain text -#: guix-git/doc/contributing.texi:422 +#: guix-git/doc/contributing.texi:452 msgid "In addition, the GNU distribution follow the @url{https://www.gnu.org/distros/free-system-distribution-guidelines.html,free software distribution guidelines}. Among other things, these guidelines reject non-free firmware, recommendations of non-free software, and discuss ways to deal with trademarks and patents." msgstr "Además, la distribución GNU sigue las @url{https://www.gnu.org/distros/free-system-distribution-guidelines.html,directrices de distribución de software libre}. Entre otras cosas, estas directrices rechazan firmware no-libre, recomendaciones de software no-libre, y tienen en cuenta formas de tratar con marcas registradas y patentes." # FUZZY # MAAV: Comprobar traducción de la página de GNU #. type: Plain text -#: guix-git/doc/contributing.texi:430 +#: guix-git/doc/contributing.texi:460 msgid "Some otherwise free upstream package sources contain a small and optional subset that violates the above guidelines, for instance because this subset is itself non-free code. When that happens, the offending items are removed with appropriate patches or code snippets in the @code{origin} form of the package (@pxref{Defining Packages}). This way, @code{guix build --source} returns the ``freed'' source rather than the unmodified upstream source." msgstr "Algunos paquetes originales, que serían de otra manera software libre, contienen un subconjunto pequeño y opcional que viola estas directrices, por ejemplo debido a que ese subconjunto sea en sí código no-libre. Cuando esto sucede, las partes indeseadas son eliminadas con parches o fragmentos de código en la forma @code{origin} del paquete (@pxref{Defining Packages}). De este modo, @code{guix build --source} devuelve las fuentes ``liberadas'' en vez de la versión original de las fuentes." #. type: cindex -#: guix-git/doc/contributing.texi:435 +#: guix-git/doc/contributing.texi:465 #, no-wrap msgid "package name" msgstr "nombre de paquete" #. type: Plain text -#: guix-git/doc/contributing.texi:443 +#: guix-git/doc/contributing.texi:473 msgid "A package actually has two names associated with it. First, there is the name of the @emph{Scheme variable}, the one following @code{define-public}. By this name, the package can be made known in the Scheme code, for instance as input to another package. Second, there is the string in the @code{name} field of a package definition. This name is used by package management commands such as @command{guix package} and @command{guix build}." msgstr "Un paquete tiene actualmente dos nombre asociados con él. Primero el nombre de la @emph{Variable Scheme}, seguido de @code{define-public}. Por este nombre, el paquete se puede conocer por este nombre en el código Scheme, por ejemplo como entrada a otro paquete. El segundo es la cadena en el campo @code{nombre} de la definición de paquete. Este nombre es el utilizado por los comandos de administración de paquetes como @command{guix package} y @command{guix build}." #. type: Plain text -#: guix-git/doc/contributing.texi:448 +#: guix-git/doc/contributing.texi:478 msgid "Both are usually the same and correspond to the lowercase conversion of the project name chosen upstream, with underscores replaced with hyphens. For instance, GNUnet is available as @code{gnunet}, and SDL_net as @code{sdl-net}." msgstr "Ambos normalmente son iguales y corresponden a la conversión a minúsculas del nombre de proyecto elegido por sus creadoras, con los guiones bajos sustituidos por guiones. Por ejemplo, GNUnet está disponible como @code{gnunet}, y SDL_net como @code{sdl-net}." #. type: Plain text -#: guix-git/doc/contributing.texi:456 +#: guix-git/doc/contributing.texi:486 msgid "A noteworthy exception to this rule is when the project name is only a single character, or if an older maintained project with the same name already exists---regardless of whether it has already been packaged for Guix. Use common sense to make such names unambiguous and meaningful. For example, Guix's package for the shell called ``s'' upstream is @code{s-shell} and @emph{not} @code{s}. Feel free to ask your fellow hackers for inspiration." msgstr "Una excepción notable a esta regla es cuando el nombre del proyecto es un sólo carácter o si existe un proyecto más antiguo mantenido con el mismo nombre ---sin importar si ha sido empaquetado para Guix. Utilice el sentido común para hacer que estos nombre no sean ambiguos y tengan significado. Por ejemplo, el paquete de Guix para la shell llamado ``s'' hacia arriba es @code{s-shell} y @emph{not} @code{s}. No dude en pedir inspiración a sus compañeros hackers." #. type: Plain text -#: guix-git/doc/contributing.texi:461 +#: guix-git/doc/contributing.texi:491 msgid "We do not add @code{lib} prefixes for library packages, unless these are already part of the official project name. But @pxref{Python Modules} and @ref{Perl Modules} for special rules concerning modules for the Python and Perl languages." msgstr "No añadimos prefijos @code{lib} para paquetes de bibliotecas, a menos que sean parte del nombre oficial del proyecto. Pero vea @ref{Python Modules} y @ref{Perl Modules} para reglas especiales que conciernen a los módulos de los lenguajes Python y Perl." #. type: Plain text -#: guix-git/doc/contributing.texi:463 +#: guix-git/doc/contributing.texi:493 msgid "Font package names are handled differently, @pxref{Fonts}." msgstr "Los nombres de paquetes de tipografías se manejan de forma diferente, @pxref{Fonts}." #. type: cindex -#: guix-git/doc/contributing.texi:468 +#: guix-git/doc/contributing.texi:498 #, no-wrap msgid "package version" msgstr "versión de paquete" #. type: Plain text -#: guix-git/doc/contributing.texi:477 +#: guix-git/doc/contributing.texi:507 msgid "We usually package only the latest version of a given free software project. But sometimes, for instance for incompatible library versions, two (or more) versions of the same package are needed. These require different Scheme variable names. We use the name as defined in @ref{Package Naming} for the most recent version; previous versions use the same name, suffixed by @code{-} and the smallest prefix of the version number that may distinguish the two versions." msgstr "Normalmente empaquetamos únicamente la última versión de un proyecto dado de software libre. Pero a veces, por ejemplo para versiones de bibliotecas incompatibles, se necesitan dos (o más) versiones del mismo paquete. Estas necesitan nombres diferentes para las variables Scheme. Usamos el nombre como se define en @ref{Package Naming} para la versión más reciente; las versiones previas usan el mismo nombre, añadiendo un @code{-} y el prefijo menor del número de versión que permite distinguir las dos versiones." #. type: Plain text -#: guix-git/doc/contributing.texi:480 +#: guix-git/doc/contributing.texi:510 msgid "The name inside the package definition is the same for all versions of a package and does not contain any version number." msgstr "El nombre dentro de la definición de paquete es el mismo para todas las versiones de un paquete y no contiene ningún número de versión." #. type: Plain text -#: guix-git/doc/contributing.texi:482 +#: guix-git/doc/contributing.texi:512 msgid "For instance, the versions 2.24.20 and 3.9.12 of GTK+ may be packaged as follows:" msgstr "Por ejemplo, las versiones 2.24.20 y 3.9.12 de GTK+ pueden empaquetarse como sigue:" #. type: lisp -#: guix-git/doc/contributing.texi:494 +#: guix-git/doc/contributing.texi:524 #, no-wrap msgid "" "(define-public gtk+\n" @@ -1014,12 +1051,12 @@ msgstr "" " ...))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:496 +#: guix-git/doc/contributing.texi:526 msgid "If we also wanted GTK+ 3.8.2, this would be packaged as" msgstr "Si también deseásemos GTK+3.8.2, se empaquetaría como" #. type: lisp -#: guix-git/doc/contributing.texi:502 +#: guix-git/doc/contributing.texi:532 #, no-wrap msgid "" "(define-public gtk+-3.8\n" @@ -1035,23 +1072,23 @@ msgstr "" " ...))\n" #. type: cindex -#: guix-git/doc/contributing.texi:506 +#: guix-git/doc/contributing.texi:536 #, no-wrap msgid "version number, for VCS snapshots" msgstr "número de versión, para revisiones de VCS" #. type: Plain text -#: guix-git/doc/contributing.texi:512 +#: guix-git/doc/contributing.texi:542 msgid "Occasionally, we package snapshots of upstream's version control system (VCS) instead of formal releases. This should remain exceptional, because it is up to upstream developers to clarify what the stable release is. Yet, it is sometimes necessary. So, what should we put in the @code{version} field?" msgstr "De manera ocasional, empaquetamos instantáneas del sistema de control de versiones (VCS) de las desarrolladoras originales en vez de publicaciones formales. Esto debería permanecer como algo excepcional, ya que son las desarrolladoras originales quienes deben clarificar cual es la entrega estable. No obstante, a veces es necesario. Por tanto, ¿qué deberíamos poner en el campo @code{version}?" #. type: Plain text -#: guix-git/doc/contributing.texi:520 +#: guix-git/doc/contributing.texi:550 msgid "Clearly, we need to make the commit identifier of the VCS snapshot visible in the version string, but we also need to make sure that the version string is monotonically increasing so that @command{guix package --upgrade} can determine which version is newer. Since commit identifiers, notably with Git, are not monotonically increasing, we add a revision number that we increase each time we upgrade to a newer snapshot. The resulting version string looks like this:" msgstr "Claramente, tenemos que hacer visible el identificador de la revisión en el VCS en la cadena de versión, pero también debemos asegurarnos que la cadena de versión incrementa monotónicamente de manera que @command{guix package --upgrade} pueda determinar qué versión es más moderna. Ya que los identificadores de revisión, notablemente en Git, no incrementan monotónicamente, añadimos un número de revisión que se incrementa cada vez que actualizamos a una nueva instantánea. La versión que resulta debería ser así:" #. type: example -#: guix-git/doc/contributing.texi:529 +#: guix-git/doc/contributing.texi:559 #, no-wrap msgid "" "2.0.11-3.cabba9e\n" @@ -1071,14 +1108,14 @@ msgstr "" "última versión de publicación\n" #. type: Plain text -#: guix-git/doc/contributing.texi:539 +#: guix-git/doc/contributing.texi:569 #, fuzzy #| msgid "It is a good idea to strip commit identifiers in the @code{version} field to, say, 7 digits. It avoids an aesthetic annoyance (assuming aesthetics have a role to play here) as well as problems related to OS limits such as the maximum shebang length (127 bytes for the Linux kernel). It is best to use the full commit identifiers in @code{origin}s, though, to avoid ambiguities. A typical package definition may look like this:" msgid "It is a good idea to strip commit identifiers in the @code{version} field to, say, 7 digits. It avoids an aesthetic annoyance (assuming aesthetics have a role to play here) as well as problems related to OS limits such as the maximum shebang length (127 bytes for the Linux kernel). There are helper functions for doing this for packages using @code{git-fetch} or @code{hg-fetch} (see below). It is best to use the full commit identifiers in @code{origin}s, though, to avoid ambiguities. A typical package definition may look like this:" msgstr "Es una buena idea recortar los identificadores de revisión en el campo @code{version} a, digamos, 7 dígitos. Esto evita una molestia estética (asumiendo que la estética tiene importancia aquí) así como problemas relacionados con los límites del sistema operativo como la longitud máxima de una cadena de ejecución #! (127 bytes en el núcleo Linux). Es mejor usar el identificador de revisión completo en @code{origin}, no obstante, para evitar ambigüedades. Una definición típica de paquete sería así:" #. type: lisp -#: guix-git/doc/contributing.texi:556 +#: guix-git/doc/contributing.texi:586 #, no-wrap msgid "" "(define my-package\n" @@ -1112,21 +1149,21 @@ msgstr "" " )))\n" #. type: deffn -#: guix-git/doc/contributing.texi:558 +#: guix-git/doc/contributing.texi:588 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} git-fetch @var{ref} @var{hash-algo} @var{hash}" msgid "{Scheme Procedure} git-version @var{VERSION} @var{REVISION} @var{COMMIT}" msgstr "{Procedimiento Scheme} git-fetch @var{url} @var{algo-hash} @var{hash}" #. type: deffn -#: guix-git/doc/contributing.texi:560 +#: guix-git/doc/contributing.texi:590 #, fuzzy #| msgid "Return the list of packages known to @var{inferior}." msgid "Return the version string for packages using @code{git-fetch}." msgstr "Devuelve la lista de paquetes conocida por @var{inferior}." #. type: lisp -#: guix-git/doc/contributing.texi:564 +#: guix-git/doc/contributing.texi:594 #, no-wrap msgid "" "(git-version \"0.2.3\" \"0\" \"93818c936ee7e2f1ba1b315578bde363a7d43d05\")\n" @@ -1134,74 +1171,74 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/contributing.texi:567 +#: guix-git/doc/contributing.texi:597 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} derivation @var{store} @var{name} @var{builder} @" msgid "{Scheme Procedure} hg-version @var{VERSION} @var{REVISION} @var{CHANGESET}" msgstr "{Procedimiento Scheme} derivation @var{almacén} @var{nombre} @var{constructor} @" #. type: deffn -#: guix-git/doc/contributing.texi:570 +#: guix-git/doc/contributing.texi:600 msgid "Return the version string for packages using @code{hg-fetch}. It works in the same way as @code{git-version}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:575 +#: guix-git/doc/contributing.texi:605 #, no-wrap msgid "package description" msgstr "descripción de paquete" #. type: cindex -#: guix-git/doc/contributing.texi:576 +#: guix-git/doc/contributing.texi:606 #, no-wrap msgid "package synopsis" msgstr "sinopsis de paquete" #. type: Plain text -#: guix-git/doc/contributing.texi:583 +#: guix-git/doc/contributing.texi:613 msgid "As we have seen before, each package in GNU@tie{}Guix includes a synopsis and a description (@pxref{Defining Packages}). Synopses and descriptions are important: They are what @command{guix package --search} searches, and a crucial piece of information to help users determine whether a given package suits their needs. Consequently, packagers should pay attention to what goes into them." msgstr "Como hemos visto previamente, cada paquete en GNU@tie{}Guix incluye una sinopsis y una descripción (@pxref{Defining Packages}). Las sinopsis y descripciones son importantes: son en lo que @command{guix package --search} busca, y una pieza crucial de información para ayudar a las usuarias a determinar si un paquete dado cubre sus necesidades. Consecuentemente, las empaquetadoras deben prestar atención a qué se incluye en ellas." # FUZZY #. type: Plain text -#: guix-git/doc/contributing.texi:591 +#: guix-git/doc/contributing.texi:621 msgid "Synopses must start with a capital letter and must not end with a period. They must not start with ``a'' or ``the'', which usually does not bring anything; for instance, prefer ``File-frobbing tool'' over ``A tool that frobs files''. The synopsis should say what the package is---e.g., ``Core GNU utilities (file, text, shell)''---or what it is used for---e.g., the synopsis for GNU@tie{}grep is ``Print lines matching a pattern''." msgstr "Las sinopsis deben empezar con mayúscula y no deben terminar con punto. No deben empezar con un artículo que habitualmente no aporta nada; por ejemplo, se prefiere ``Herramienta para chiribizar'' sobre ``Una herramienta que chiribiza archivos''. La sinopsis debe decir qué es el paquete---por ejemplo, ``Utilidades básicas GNU (archivos, texto, intérprete de consola)''---o para qué se usa---por ejemplo, la sinopsis de GNU@tie{}grep es ``Imprime líneas aceptadas por un patrón''." #. type: Plain text -#: guix-git/doc/contributing.texi:601 +#: guix-git/doc/contributing.texi:631 msgid "Keep in mind that the synopsis must be meaningful for a very wide audience. For example, ``Manipulate alignments in the SAM format'' might make sense for a seasoned bioinformatics researcher, but might be fairly unhelpful or even misleading to a non-specialized audience. It is a good idea to come up with a synopsis that gives an idea of the application domain of the package. In this example, this might give something like ``Manipulate nucleotide sequence alignments'', which hopefully gives the user a better idea of whether this is what they are looking for." msgstr "Tenga en cuenta que las sinopsis deben tener un claro significado para una audiencia muy amplia. Por ejemplo, ``Manipula la alineación en el formato SAM'' puede tener sentido para una investigadora de bioinformática con experiencia, pero puede ser de poca ayuda o incluso llevar a confusión a una audiencia no-especializada. Es una buena idea proporcionar una sinopsis que da una idea del dominio de aplicación del paquete. En ese ejemplo, esto podría ser algo como ``Manipula la alineación de secuencias de nucleótidos'', lo que con suerte proporcionará a la usuaria una mejor idea sobre si esto es lo que está buscando." #. type: Plain text -#: guix-git/doc/contributing.texi:609 +#: guix-git/doc/contributing.texi:639 msgid "Descriptions should take between five and ten lines. Use full sentences, and avoid using acronyms without first introducing them. Please avoid marketing phrases such as ``world-leading'', ``industrial-strength'', and ``next-generation'', and avoid superlatives like ``the most advanced''---they are not helpful to users looking for a package and may even sound suspicious. Instead, try to be factual, mentioning use cases and features." msgstr "Las descripciones deben tener entre cinco y diez líneas. Use frases completas, y evite usar acrónimos sin introducirlos previamente. Por favor evite frases comerciales como ``líder mundial'', ``de potencia industrial'' y ``siguiente generación'', y evite superlativos como ``el más avanzado''---no son útiles para las usuarias que buscan un paquete e incluso pueden sonar sospechosas. En vez de eso, intente ceñirse a los hechos, mencionando casos de uso y características." #. type: cindex -#: guix-git/doc/contributing.texi:610 +#: guix-git/doc/contributing.texi:640 #, no-wrap msgid "Texinfo markup, in package descriptions" msgstr "marcado Texinfo, en descripciones de paquetes" #. type: Plain text -#: guix-git/doc/contributing.texi:619 +#: guix-git/doc/contributing.texi:649 msgid "Descriptions can include Texinfo markup, which is useful to introduce ornaments such as @code{@@code} or @code{@@dfn}, bullet lists, or hyperlinks (@pxref{Overview,,, texinfo, GNU Texinfo}). However you should be careful when using some characters for example @samp{@@} and curly braces which are the basic special characters in Texinfo (@pxref{Special Characters,,, texinfo, GNU Texinfo}). User interfaces such as @command{guix package --show} take care of rendering it appropriately." msgstr "Las descripciones pueden incluir marcado Texinfo, lo que es útil para introducir ornamentos como @code{@@code} o @code{@@dfn}, listas de puntos o enlaces (@pxref{Overview,,, texinfo, GNU Texinfo}). Por consiguiente, debe ser cuidadosa cuando use algunos caracteres, por ejemplo @samp{@@} y llaves, que son los caracteres especiales básicos en Texinfo (@pxref{Special Characters,,, texinfo, GNU Texinfo}). Las interfaces de usuaria como @command{guix package --show} se encargan de su correcta visualización." #. type: Plain text -#: guix-git/doc/contributing.texi:625 +#: guix-git/doc/contributing.texi:655 #, fuzzy msgid "Synopses and descriptions are translated by volunteers @uref{https://translate.fedoraproject.org/projects/guix/packages, at Weblate} so that as many users as possible can read them in their native language. User interfaces search them and display them in the language specified by the current locale." msgstr "Las sinopsis y descripciones son traducidas por voluntarias @uref{https://translationproject.org/domain/guix-packages.html, en Translation Project} para que todas las usuarias posibles puedan leerlas en su lengua nativa. Las interfaces de usuaria las buscan y las muestran en el idioma especificado por la localización actual." #. type: Plain text -#: guix-git/doc/contributing.texi:630 +#: guix-git/doc/contributing.texi:660 msgid "To allow @command{xgettext} to extract them as translatable strings, synopses and descriptions @emph{must be literal strings}. This means that you cannot use @code{string-append} or @code{format} to construct these strings:" msgstr "Para permitir a @command{xgettext} extraerlas como cadenas traducibles, las sinopsis y descripciones @emph{deben ser cadenas literales}. Esto significa que no puede usar @code{string-append} o @code{format} para construir estas cadenas:" #. type: lisp -#: guix-git/doc/contributing.texi:636 +#: guix-git/doc/contributing.texi:666 #, no-wrap msgid "" "(package\n" @@ -1215,12 +1252,12 @@ msgstr "" " (description (string-append \"Esto \" \"*no*\" \" es traducible.\")))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:644 +#: guix-git/doc/contributing.texi:674 msgid "Translation is a lot of work so, as a packager, please pay even more attention to your synopses and descriptions as every change may entail additional work for translators. In order to help them, it is possible to make recommendations or instructions visible to them by inserting special comments like this (@pxref{xgettext Invocation,,, gettext, GNU Gettext}):" msgstr "La traducción requiere mucho trabajo, por lo que, como empaquetadora, le rogamos que ponga incluso más atención a sus sinopsis y descripciones ya que cada cambio puede suponer trabajo adicional para las traductoras. Para ayudarlas, es posible hacer recomendaciones o instrucciones insertando comentarios especiales como este (@pxref{xgettext Invocation,,, gettext, GNU Gettext}):" #. type: lisp -#: guix-git/doc/contributing.texi:649 +#: guix-git/doc/contributing.texi:679 #, no-wrap msgid "" ";; TRANSLATORS: \"X11 resize-and-rotate\" should not be translated.\n" @@ -1232,454 +1269,457 @@ msgstr "" "for the X11 resize-and-rotate (RandR) extension. @dots{}\")\n" #. type: cindex -#: guix-git/doc/contributing.texi:654 +#: guix-git/doc/contributing.texi:684 #, no-wrap msgid "snippets, when to use" msgstr "snippets, cuándo usar" # FUZZY #. type: Plain text -#: guix-git/doc/contributing.texi:665 +#: guix-git/doc/contributing.texi:695 msgid "The boundary between using an origin snippet versus a build phase to modify the sources of a package can be elusive. Origin snippets are typically used to remove unwanted files such as bundled libraries, nonfree sources, or to apply simple substitutions. The source derived from an origin should produce a source that can be used to build the package on any system that the upstream package supports (i.e., act as the corresponding source). In particular, origin snippets must not embed store items in the sources; such patching should rather be done using build phases. Refer to the @code{origin} record documentation for more information (@pxref{origin Reference})." msgstr "La frontera entre el uso de un fragmento de código para la modificación de un origen (@code{snippet}) frente a una fase de construcción puede ser ténue. Los fragmentos de código para el origen se usan habitualmente para eliminar archivos no deseados, como bibliotecas incluidas, fuentes no libres, o simplemente para aplicar sustituciones simples. Las fuentes que derivan de un origen deben producir unas fuentes capaces de compilar en cualquier sistema que permita el paquete original (es decir, actuar como la fuente correspondiente). En particular, los @code{snippet} del campo @code{origin} no deben incluir elementos del almacén en las fuentes; esos parches deben llevarse a cabo en las fases de construcción. Véase el registro @code{origin} para obtener más información (@pxref{origin Reference})." #. type: cindex -#: guix-git/doc/contributing.texi:669 +#: guix-git/doc/contributing.texi:699 #, fuzzy, no-wrap msgid "emacs, packaging" msgstr "Paquetes Emacs" #. type: cindex -#: guix-git/doc/contributing.texi:670 +#: guix-git/doc/contributing.texi:700 #, fuzzy, no-wrap msgid "elisp, packaging" msgstr "licencia, de paquetes" #. type: Plain text -#: guix-git/doc/contributing.texi:682 +#: guix-git/doc/contributing.texi:712 msgid "Emacs packages should preferably use the Emacs build system (@pxref{emacs-build-system}), for uniformity and the benefits provided by its build phases, such as the auto-generation of the autoloads file and the byte compilation of the sources. Because there is no standardized way to run a test suite for Emacs packages, tests are disabled by default. When a test suite is available, it should be enabled by setting the @code{#:tests?} argument to @code{#true}. By default, the command to run the test is @command{make check}, but any command can be specified via the @code{#:test-command} argument. The @code{#:test-command} argument expects a list containing a command and its arguments, to be invoked during the @code{check} phase." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:687 +#: guix-git/doc/contributing.texi:717 msgid "The Elisp dependencies of Emacs packages are typically provided as @code{propagated-inputs} when required at run time. As for other packages, build or test dependencies should be specified as @code{native-inputs}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:696 +#: guix-git/doc/contributing.texi:726 msgid "Emacs packages sometimes depend on resources directories that should be installed along the Elisp files. The @code{#:include} argument can be used for that purpose, by specifying a list of regexps to match. The best practice when using the @code{#:include} argument is to extend rather than override its default value (accessible via the @code{%default-include} variable). As an example, a yasnippet extension package typically include a @file{snippets} directory, which could be copied to the installation directory using:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:699 +#: guix-git/doc/contributing.texi:729 #, no-wrap msgid "#:include (cons \"^snippets/\" %default-include)\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:705 +#: guix-git/doc/contributing.texi:735 msgid "When encountering problems, it is wise to check for the presence of the @code{Package-Requires} extension header in the package main source file, and whether any dependencies and their versions listed therein are satisfied." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:709 +#: guix-git/doc/contributing.texi:739 #, no-wrap msgid "python" msgstr "python" #. type: Plain text -#: guix-git/doc/contributing.texi:715 +#: guix-git/doc/contributing.texi:745 msgid "We currently package Python 2 and Python 3, under the Scheme variable names @code{python-2} and @code{python} as explained in @ref{Version Numbers}. To avoid confusion and naming clashes with other programming languages, it seems desirable that the name of a package for a Python module contains the word @code{python}." msgstr "Actualmente empaquetamos Python 2 y Python 3, bajo los nombres de variable Scheme @code{python-2} y @code{python} como se explica en @ref{Version Numbers}. Para evitar confusiones y conflictos de nombres con otros lenguajes de programación, parece deseable que el nombre de paquete para un módulo Python contenga la palabra @code{python}." #. type: Plain text -#: guix-git/doc/contributing.texi:722 +#: guix-git/doc/contributing.texi:752 msgid "Some modules are compatible with only one version of Python, others with both. If the package Foo is compiled with Python 3, we name it @code{python-foo}. If it is compiled with Python 2, we name it @code{python2-foo}. Packages should be added when they are necessary; we don't add Python 2 variants of the package unless we are going to use them." msgstr "Algunos módulos son compatibles únicamente con una versión de Python, otros con ambas. Si el paquete Foo se compila únicamente con Python 3, lo llamamos @code{python-foo}. Si se compila con Python 2, lo llamamos @code{python2-foo}. Los paquetes deben añadirse cuando sean necesarios; no añadimos la variante de Python 2 del paquete a menos que vayamos a usarla." #. type: Plain text -#: guix-git/doc/contributing.texi:728 +#: guix-git/doc/contributing.texi:758 msgid "If a project already contains the word @code{python}, we drop this; for instance, the module python-dateutil is packaged under the names @code{python-dateutil} and @code{python2-dateutil}. If the project name starts with @code{py} (e.g.@: @code{pytz}), we keep it and prefix it as described above." msgstr "Si un proyecto ya contiene la palabra @code{python}, la eliminamos; por ejemplo, el módulo python-dateutil se empaqueta con los nombres @code{python-dateutil} y @code{python2-dateutil}. Si el nombre del proyecto empieza con @code{py} (por ejemplo @code{pytz}), este se mantiene y el prefijo es el especificado anteriormente.." #. type: subsubsection -#: guix-git/doc/contributing.texi:729 +#: guix-git/doc/contributing.texi:759 #, no-wrap msgid "Specifying Dependencies" msgstr "Especificación de dependencias" #. type: cindex -#: guix-git/doc/contributing.texi:730 +#: guix-git/doc/contributing.texi:760 #, no-wrap msgid "inputs, for Python packages" msgstr "entradas, para paquetes Python" #. type: Plain text -#: guix-git/doc/contributing.texi:735 +#: guix-git/doc/contributing.texi:765 msgid "Dependency information for Python packages is usually available in the package source tree, with varying degrees of accuracy: in the @file{setup.py} file, in @file{requirements.txt}, or in @file{tox.ini}." msgstr "La información de dependencias para paquetes Python está disponible habitualmente en el árbol de fuentes, con varios grados de precisión: en el archivo @file{setup.py}, en @file{requirements.txt} o en @file{tox.ini}." #. type: Plain text -#: guix-git/doc/contributing.texi:741 +#: guix-git/doc/contributing.texi:771 msgid "Your mission, when writing a recipe for a Python package, is to map these dependencies to the appropriate type of ``input'' (@pxref{package Reference, inputs}). Although the @code{pypi} importer normally does a good job (@pxref{Invoking guix import}), you may want to check the following check list to determine which dependency goes where." msgstr "Su misión, cuando escriba una receta para un paquete Python, es asociar estas dependencias con el tipo apropiado de ``entrada'' (@pxref{package Reference, inputs}). Aunque el importador de @code{pypi} normalmente hace un buen trabajo (@pxref{Invoking guix import}), puede querer comprobar la siguiente lista para determinar qué dependencia va dónde." #. type: itemize -#: guix-git/doc/contributing.texi:749 +#: guix-git/doc/contributing.texi:779 msgid "We currently package Python 2 with @code{setuptools} and @code{pip} installed like Python 3.4 has per default. Thus you don't need to specify either of these as an input. @command{guix lint} will warn you if you do." msgstr "Actualmente empaquetamos con @code{setuptools} y @code{pip} instalados como Python 3.4 tiene por defecto. Por tanto no necesita especificar ninguno de ellos como entrada. @command{guix lint} le avisará si lo hace." #. type: itemize -#: guix-git/doc/contributing.texi:755 +#: guix-git/doc/contributing.texi:785 msgid "Python dependencies required at run time go into @code{propagated-inputs}. They are typically defined with the @code{install_requires} keyword in @file{setup.py}, or in the @file{requirements.txt} file." msgstr "Las dependencias Python requeridas en tiempo de ejecución van en @code{propagated-inputs}. Típicamente están definidas con la palabra clave @code{install_requires} en @file{setup.py}, o en el archivo @file{requirements.txt}." #. type: itemize -#: guix-git/doc/contributing.texi:763 +#: guix-git/doc/contributing.texi:793 msgid "Python packages required only at build time---e.g., those listed with the @code{setup_requires} keyword in @file{setup.py}---or only for testing---e.g., those in @code{tests_require}---go into @code{native-inputs}. The rationale is that (1) they do not need to be propagated because they are not needed at run time, and (2) in a cross-compilation context, it's the ``native'' input that we'd want." msgstr "Los paquetes Python requeridos únicamente durante la construcción---por ejemplo, aquellos listados con la palabra clave @code{setup_requires} en @file{setup.py}---o únicamente para pruebas---por ejemplo, aquellos en @code{tests_require}---van en @code{native-inputs}. La razón es que (1) no necesitan ser propagados ya que no se requieren en tiempo de ejecución, y (2) en un entorno de compilación cruzada lo que necesitamos es la entrada ``nativa''." #. type: itemize -#: guix-git/doc/contributing.texi:767 +#: guix-git/doc/contributing.texi:797 msgid "Examples are the @code{pytest}, @code{mock}, and @code{nose} test frameworks. Of course if any of these packages is also required at run-time, it needs to go to @code{propagated-inputs}." msgstr "Ejemplos son las bibliotecas de pruebas @code{pytest}, @code{mock} y @code{nose}. Por supuesto, si alguno de estos paquetes también se necesita en tiempo de ejecución, necesita ir en @code{propagated-inputs}." #. type: itemize -#: guix-git/doc/contributing.texi:772 +#: guix-git/doc/contributing.texi:802 msgid "Anything that does not fall in the previous categories goes to @code{inputs}, for example programs or C libraries required for building Python packages containing C extensions." msgstr "Todo lo que no caiga en las categorías anteriores va a @code{inputs}, por ejemplo programas o bibliotecas C requeridas para construir los paquetes Python que contienen extensiones C." #. type: itemize -#: guix-git/doc/contributing.texi:778 +#: guix-git/doc/contributing.texi:808 msgid "If a Python package has optional dependencies (@code{extras_require}), it is up to you to decide whether to add them or not, based on their usefulness/overhead ratio (@pxref{Submitting Patches, @command{guix size}})." msgstr "Si un paquete Python tiene dependencias opcionales (@code{extras_require}), queda en su mano decidir si las añade o no, en base a la relación utilidad/sobrecarga (@pxref{Submitting Patches, @command{guix size}})." #. type: cindex -#: guix-git/doc/contributing.texi:785 +#: guix-git/doc/contributing.texi:815 #, no-wrap msgid "perl" msgstr "perl" #. type: Plain text -#: guix-git/doc/contributing.texi:796 +#: guix-git/doc/contributing.texi:826 msgid "Perl programs standing for themselves are named as any other package, using the lowercase upstream name. For Perl packages containing a single class, we use the lowercase class name, replace all occurrences of @code{::} by dashes and prepend the prefix @code{perl-}. So the class @code{XML::Parser} becomes @code{perl-xml-parser}. Modules containing several classes keep their lowercase upstream name and are also prepended by @code{perl-}. Such modules tend to have the word @code{perl} somewhere in their name, which gets dropped in favor of the prefix. For instance, @code{libwww-perl} becomes @code{perl-libwww}." msgstr "Los programas ejecutables Perl se nombran como cualquier otro paquete, mediante el uso del nombre oficial en minúsculas. Para paquetes Perl que contienen una única clase, usamos el nombre en minúsculas de la clase, substituyendo todas las ocurrencias de @code{::} por guiones y agregando el prefijo @code{perl-}. Por tanto la clase @code{XML::Parser} se convierte en @code{perl-xml-parser}. Los módulos que contienen varias clases mantienen su nombre oficial en minúsculas y también se agrega @code{perl-} al inicio. Dichos módulos tienden a tener la palabra @code{perl} en alguna parte de su nombre, la cual se elimina en favor del prefijo. Por ejemplo, @code{libwww-perl} se convierte en @code{perl-libwww}." #. type: cindex -#: guix-git/doc/contributing.texi:801 +#: guix-git/doc/contributing.texi:831 #, no-wrap msgid "java" msgstr "java" #. type: Plain text -#: guix-git/doc/contributing.texi:804 +#: guix-git/doc/contributing.texi:834 msgid "Java programs standing for themselves are named as any other package, using the lowercase upstream name." msgstr "Los programas Java ejecutables se nombran como cualquier otro paquete, mediante el uso del nombre oficial en minúsculas." #. type: Plain text -#: guix-git/doc/contributing.texi:810 +#: guix-git/doc/contributing.texi:840 msgid "To avoid confusion and naming clashes with other programming languages, it is desirable that the name of a package for a Java package is prefixed with @code{java-}. If a project already contains the word @code{java}, we drop this; for instance, the package @code{ngsjava} is packaged under the name @code{java-ngs}." msgstr "Para evitar confusión y colisiones de nombres con otros lenguajes de programación, es deseable que el nombre del paquete para un paquete Java contenga el prefijo @code{java-}. Si el proyecto ya tiene la palabra @code{java}, eliminamos esta; por ejemplo, el paquete @code{ngsjaga} se empaqueta bajo el nombre @code{java-ngs}." #. type: Plain text -#: guix-git/doc/contributing.texi:816 +#: guix-git/doc/contributing.texi:846 msgid "For Java packages containing a single class or a small class hierarchy, we use the lowercase class name, replace all occurrences of @code{.} by dashes and prepend the prefix @code{java-}. So the class @code{apache.commons.cli} becomes package @code{java-apache-commons-cli}." msgstr "Para los paquetes Java que contienen una clase única o una jerarquía pequeña, usamos el nombre de clase en minúsculas, substituyendo todas las ocurrencias de @code{.} por guiones y agregando el prefijo @code{java-}. Por tanto la clase @code{apache.commons.cli} se convierte en el paquete @code{java-apache-commons-cli}." #. type: cindex -#: guix-git/doc/contributing.texi:821 +#: guix-git/doc/contributing.texi:851 #, no-wrap msgid "rust" msgstr "rust" #. type: Plain text -#: guix-git/doc/contributing.texi:824 +#: guix-git/doc/contributing.texi:854 msgid "Rust programs standing for themselves are named as any other package, using the lowercase upstream name." msgstr "Los programas Rust ejecutables se nombran como cualquier otro paquete, mediante el uso del nombre oficial en minúsculas." # FUZZY FUZZY #. type: Plain text -#: guix-git/doc/contributing.texi:828 +#: guix-git/doc/contributing.texi:858 msgid "To prevent namespace collisions we prefix all other Rust packages with the @code{rust-} prefix. The name should be changed to lowercase as appropriate and dashes should remain in place." msgstr "Para evitar colisiones en el espacio de nombres añadimos @code{rust-} como prefijo al resto de paquetes de Rust. El nombre debe cambiarse a letras minúsculas cuando sea apropiado y los guiones deben mantenerse." # FUZZY FUZZY FUZZY #. type: Plain text -#: guix-git/doc/contributing.texi:834 +#: guix-git/doc/contributing.texi:864 #, fuzzy msgid "In the rust ecosystem it is common for multiple incompatible versions of a package to be used at any given time, so all package definitions should have a versioned suffix. The versioned suffix is the left-most non-zero digit (and any leading zeros, of course). This follows the ``caret'' version scheme intended by Cargo. Examples@: @code{rust-clap-2}, @code{rust-rand-0.6}." msgstr "En el ecosistema de rust es común que se usen al mismo tiempo múltiples versiones de un paquete incompatibles entre ellas, por lo que todos los paquetes tienen que incorporar una referencia a su versión como sufijo. Si un paquete ha superado la versión 1.0.0, el número de superior de versión es suficiente (por ejemplo @code{rust-clap-2}), en otro caso se deben incorporar tanto el número de versión superior como el siguiente (por ejemplo @code{rust-rand-0.6})." #. type: Plain text -#: guix-git/doc/contributing.texi:844 +#: guix-git/doc/contributing.texi:874 msgid "Because of the difficulty in reusing rust packages as pre-compiled inputs for other packages the Cargo build system (@pxref{Build Systems, @code{cargo-build-system}}) presents the @code{#:cargo-inputs} and @code{cargo-development-inputs} keywords as build system arguments. It would be helpful to think of these as similar to @code{propagated-inputs} and @code{native-inputs}. Rust @code{dependencies} and @code{build-dependencies} should go in @code{#:cargo-inputs}, and @code{dev-dependencies} should go in @code{#:cargo-development-inputs}. If a Rust package links to other libraries then the standard placement in @code{inputs} and the like should be used." msgstr "Debido a la dificultad a la hora de reusar paquetes de rust como entradas pre-compiladas de otros paquetes, el sistema de construcción de Cargo (@pxref{Build Systems, @code{cargo-build-system}}) presenta las palabras clave @code{#:cargo-inputs} y @code{cargo-development-inputs} como parámetros del sistema de construcción. Puede servir de ayuda pensar en estos parámetros de manera similar a @code{propagated-inputs} y @code{native-inputs}. Las dependencias de rust de @code{dependencies} y @code{build-dependencies} deben proporcionarse a través de @code{#:cargo-inputs}, y @code{dev-dependencies} deben proporcionarse a través de @code{#:cargo-development-inputs}. Si un paquete de Rust se enlaza con otras bibliotecas deben proporcionarse como habitualmente en @code{inputs} y otros campos relacionados." # FUZZY FUZZY # MAAV: ¿Atrofiado? #. type: Plain text -#: guix-git/doc/contributing.texi:850 +#: guix-git/doc/contributing.texi:880 msgid "Care should be taken to ensure the correct version of dependencies are used; to this end we try to refrain from skipping the tests or using @code{#:skip-build?} when possible. Of course this is not always possible, as the package may be developed for a different Operating System, depend on features from the Nightly Rust compiler, or the test suite may have atrophied since it was released." msgstr "Se debe tener cuidado a la hora de asegurar que se usan las versiones correctas de las dependencias; para ello intentamos no evitar la ejecución de pruebas o la construcción completa con @code{#:skip-build?} cuando sea posible. Por supuesto, no siempre es posible, ya que el paquete puede desarrollarse para un sistema operativo distinto, depender de características del compilador de Rust que se construye a diario (Nightly), o la batería de pruebas puede haberse atrofiado desde su lanzamiento." #. type: cindex -#: guix-git/doc/contributing.texi:855 guix-git/doc/guix.texi:1930 +#: guix-git/doc/contributing.texi:885 guix-git/doc/guix.texi:1947 #, no-wrap msgid "fonts" msgstr "tipografías" #. type: Plain text -#: guix-git/doc/contributing.texi:861 +#: guix-git/doc/contributing.texi:891 msgid "For fonts that are in general not installed by a user for typesetting purposes, or that are distributed as part of a larger software package, we rely on the general packaging rules for software; for instance, this applies to the fonts delivered as part of the X.Org system or fonts that are part of TeX Live." msgstr "Para tipografías que no se instalan generalmente por una usuaria para propósitos tipográficos, o que se distribuyen como parte de un paquete de software más grande, seguimos las reglas generales de empaquetamiento de software; por ejemplo, esto aplica a las tipografías distribuidas como parte del sistema X.Org o las tipografías que son parte de TeX Live." #. type: Plain text -#: guix-git/doc/contributing.texi:865 +#: guix-git/doc/contributing.texi:895 msgid "To make it easier for a user to search for fonts, names for other packages containing only fonts are constructed as follows, independently of the upstream package name." msgstr "Para facilitar a las usuarias la búsqueda de tipografías, los nombres para otros paquetes que contienen únicamente tipografías se construyen como sigue, independientemente del nombre de paquete oficial." #. type: Plain text -#: guix-git/doc/contributing.texi:873 +#: guix-git/doc/contributing.texi:903 msgid "The name of a package containing only one font family starts with @code{font-}; it is followed by the foundry name and a dash @code{-} if the foundry is known, and the font family name, in which spaces are replaced by dashes (and as usual, all upper case letters are transformed to lower case). For example, the Gentium font family by SIL is packaged under the name @code{font-sil-gentium}." msgstr "El nombre de un paquete que contiene únicamente una familia tipográfica comienza con @code{font-}; seguido por el nombre de la tipografía y un guión si la tipografía es conocida, y el nombre de la familia tipográfica, donde los espacios se sustituyen por guiones (y como es habitual, todas las letras mayúsculas se transforman a minúsculas). Por ejemplo, la familia de tipografías Gentium de SIL se empaqueta bajo el nombre de @code{font-sil-gentium}." #. type: Plain text -#: guix-git/doc/contributing.texi:882 +#: guix-git/doc/contributing.texi:912 msgid "For a package containing several font families, the name of the collection is used in the place of the font family name. For instance, the Liberation fonts consist of three families, Liberation Sans, Liberation Serif and Liberation Mono. These could be packaged separately under the names @code{font-liberation-sans} and so on; but as they are distributed together under a common name, we prefer to package them together as @code{font-liberation}." msgstr "Para un paquete que contenga varias familias tipográficas, el nombre de la colección se usa en vez del nombre de la familia tipográfica. Por ejemplo, las tipografías Liberation consisten en tres familias: Liberation Sans, Liberation Serif y Liberation Mono. Estas se podrían empaquetar por separado bajo los nombres @code{font-liberation-sans}, etcétera; pero como se distribuyen de forma conjunta bajo un nombre común, preferimos empaquetarlas conjuntamente como @code{font-liberation}." #. type: Plain text -#: guix-git/doc/contributing.texi:888 +#: guix-git/doc/contributing.texi:918 msgid "In the case where several formats of the same font family or font collection are packaged separately, a short form of the format, prepended by a dash, is added to the package name. We use @code{-ttf} for TrueType fonts, @code{-otf} for OpenType fonts and @code{-type1} for PostScript Type 1 fonts." msgstr "En el caso de que varios formatos de la misma familia o colección tipográfica se empaqueten de forma separada, una forma corta del formato, precedida por un guión, se añade al nombre del paquete. Usamos @code{-ttf} para tipografías TrueType, @code{-otf} para tipografías OpenType y @code{-type1} para tipografías Tipo 1 PostScript." #. type: Plain text -#: guix-git/doc/contributing.texi:896 +#: guix-git/doc/contributing.texi:926 msgid "In general our code follows the GNU Coding Standards (@pxref{Top,,, standards, GNU Coding Standards}). However, they do not say much about Scheme, so here are some additional rules." msgstr "En general nuestro código sigue los Estándares de codificación GNU (@pxref{Top,,, standards, GNU Coding Standards}). No obstante, no dicen mucho de Scheme, así que aquí están algunas reglas adicionales." #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:904 -#: guix-git/doc/contributing.texi:905 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:934 +#: guix-git/doc/contributing.texi:935 #, no-wrap msgid "Programming Paradigm" msgstr "Paradigma de programación" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "How to compose your elements." msgstr "Cómo componer sus elementos." #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:911 -#: guix-git/doc/contributing.texi:912 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:941 +#: guix-git/doc/contributing.texi:942 #, no-wrap msgid "Modules" msgstr "Módulos" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Where to store your code?" msgstr "¿Dónde almacenar su código?" #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:922 -#: guix-git/doc/contributing.texi:923 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:952 +#: guix-git/doc/contributing.texi:953 #, no-wrap msgid "Data Types and Pattern Matching" msgstr "Tipos de datos y reconocimiento de patrones" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Implementing data structures." msgstr "Implementación de estructuras de datos." #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:937 -#: guix-git/doc/contributing.texi:938 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:967 +#: guix-git/doc/contributing.texi:968 #, no-wrap msgid "Formatting Code" msgstr "Formato del código" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Writing conventions." msgstr "Convenciones de escritura." #. type: Plain text -#: guix-git/doc/contributing.texi:910 +#: guix-git/doc/contributing.texi:940 msgid "Scheme code in Guix is written in a purely functional style. One exception is code that involves input/output, and procedures that implement low-level concepts, such as the @code{memoize} procedure." msgstr "El código scheme en Guix está escrito en un estilo puramente funcional. Una excepción es el código que incluye entrada/salida, y procedimientos que implementan conceptos de bajo nivel, como el procedimiento @code{memoize}." # TODO: (MAAV) builder/host. Comprobar constancia en el texto. #. type: Plain text -#: guix-git/doc/contributing.texi:918 +#: guix-git/doc/contributing.texi:948 msgid "Guile modules that are meant to be used on the builder side must live in the @code{(guix build @dots{})} name space. They must not refer to other Guix or GNU modules. However, it is OK for a ``host-side'' module to use a build-side module." msgstr "Los módulos Guile que están destinados a ser usados en el lado del constructor deben encontrarse en el espacio de nombres @code{(guix build @dots{})}. No deben hacer referencia a otros módulos Guix o GNU. No obstante, no hay problema en usar un módulo del lado del constructor en un módulo ``del lado del cliente''." #. type: Plain text -#: guix-git/doc/contributing.texi:921 +#: guix-git/doc/contributing.texi:951 msgid "Modules that deal with the broader GNU system should be in the @code{(gnu @dots{})} name space rather than @code{(guix @dots{})}." msgstr "Los módulos que tratan con el sistema GNU más amplio deben estar en el espacio de nombres @code{(gnu @dots{})} en vez de en @code{(guix @dots{})}." #. type: Plain text -#: guix-git/doc/contributing.texi:930 +#: guix-git/doc/contributing.texi:960 msgid "The tendency in classical Lisp is to use lists to represent everything, and then to browse them ``by hand'' using @code{car}, @code{cdr}, @code{cadr}, and co. There are several problems with that style, notably the fact that it is hard to read, error-prone, and a hindrance to proper type error reports." msgstr "La tendencia en el Lisp clásico es usar listas para representar todo, y recorrerlas ``a mano'' usando @code{car}, @code{cdr}, @code{cadr} y compañía. Hay varios problemas con este estilo, notablemente el hecho de que es difícil de leer, propenso a errores y una carga para informes adecuados de errores de tipado." #. type: Plain text -#: guix-git/doc/contributing.texi:936 +#: guix-git/doc/contributing.texi:966 #, fuzzy msgid "Guix code should define appropriate data types (for instance, using @code{define-record-type*}) rather than abuse lists. In addition, it should use pattern matching, via Guile’s @code{(ice-9 match)} module, especially when matching lists (@pxref{Pattern Matching,,, guile, GNU Guile Reference Manual})." msgstr "El código de Guix debe definir tipos de datos apropiados (por ejemplo, mediante el uso @code{define-record-type*}) en vez de abusar de las listas. Además debe usarse el reconocimiento de patrones, vía el módulo de Guile @code{(ice-9 match)}, especialmente cuando se analizan listas." #. type: cindex -#: guix-git/doc/contributing.texi:940 +#: guix-git/doc/contributing.texi:970 #, no-wrap msgid "formatting code" msgstr "dar formato al código" #. type: cindex -#: guix-git/doc/contributing.texi:941 +#: guix-git/doc/contributing.texi:971 #, no-wrap msgid "coding style" msgstr "estilo de codificación" #. type: Plain text -#: guix-git/doc/contributing.texi:948 +#: guix-git/doc/contributing.texi:978 msgid "When writing Scheme code, we follow common wisdom among Scheme programmers. In general, we follow the @url{https://mumble.net/~campbell/scheme/style.txt, Riastradh's Lisp Style Rules}. This document happens to describe the conventions mostly used in Guile’s code too. It is very thoughtful and well written, so please do read it." msgstr "Cuando escribimos código Scheme, seguimos la sabiduría común entre las programadoras Scheme. En general, seguimos las @url{https://mumble.net/~campbell/scheme/style.txt, Reglas de estilo Lisp de Riastradh}. Este documento resulta que también describe las convenciones más usadas en el código Guile. Está lleno de ideas y bien escrito, así que recomendamos encarecidamente su lectura." #. type: Plain text -#: guix-git/doc/contributing.texi:955 +#: guix-git/doc/contributing.texi:985 msgid "Some special forms introduced in Guix, such as the @code{substitute*} macro, have special indentation rules. These are defined in the @file{.dir-locals.el} file, which Emacs automatically uses. Also note that Emacs-Guix provides @code{guix-devel-mode} mode that indents and highlights Guix code properly (@pxref{Development,,, emacs-guix, The Emacs-Guix Reference Manual})." msgstr "Algunas formas especiales introducidas en Guix, como el macro @code{substitute*} tienen reglas de indentación especiales. Estas están definidas en el archivo @file{.dir-locals.el}, el cual Emacs usa automáticamente. Fíjese que además Emacs-Guix proporciona el modo @code{guix-devel-mode} que indenta y resalta adecuadamente el código de Guix (@pxref{Development,,, emacs-guix, The Emacs-Guix Reference Manual})." #. type: cindex -#: guix-git/doc/contributing.texi:956 +#: guix-git/doc/contributing.texi:986 #, no-wrap msgid "indentation, of code" msgstr "indentación, de código" #. type: cindex -#: guix-git/doc/contributing.texi:957 +#: guix-git/doc/contributing.texi:987 #, no-wrap msgid "formatting, of code" msgstr "formato, de código" #. type: Plain text -#: guix-git/doc/contributing.texi:960 +#: guix-git/doc/contributing.texi:990 msgid "If you do not use Emacs, please make sure to let your editor knows these rules. To automatically indent a package definition, you can also run:" msgstr "Si no usa Emacs, por favor asegúrese de que su editor conoce esas reglas. Para indentar automáticamente una definición de paquete también puede ejecutar:" -# XXX: (MAAV) ¿@var se traduce? #. type: example -#: guix-git/doc/contributing.texi:963 -#, no-wrap -msgid "./etc/indent-code.el gnu/packages/@var{file}.scm @var{package}\n" -msgstr "./etc/indent-code.el gnu/packages/@var{archivo}.scm @var{paquete}\n" +#: guix-git/doc/contributing.texi:993 +#, fuzzy, no-wrap +#| msgid "guix install @var{package}\n" +msgid "./pre-inst-env guix style @var{package}\n" +msgstr "guix install @var{paquete}\n" #. type: Plain text -#: guix-git/doc/contributing.texi:969 -msgid "This automatically indents the definition of @var{package} in @file{gnu/packages/@var{file}.scm} by running Emacs in batch mode. To indent a whole file, omit the second argument:" -msgstr "Esto indenta automáticamente la definición de @var{paquete} en @file{gnu/packages/@var{archivo}.scm} ejecutando Emacs en modo de procesamiento de lotes. Para indentar un archivo completo, omita el segundo parámetro:" - -#. type: example -#: guix-git/doc/contributing.texi:972 -#, no-wrap -msgid "./etc/indent-code.el gnu/services/@var{file}.scm\n" -msgstr "./etc/indent-code.el gnu/services/@var{archivo}.scm\n" +#: guix-git/doc/contributing.texi:997 +#, fuzzy +#| msgid "@xref{Invoking guix pull}, for more information." +msgid "@xref{Invoking guix style}, for more information." +msgstr "@xref{Invoking guix pull}, para más información." #. type: cindex -#: guix-git/doc/contributing.texi:974 +#: guix-git/doc/contributing.texi:998 #, no-wrap msgid "Vim, Scheme code editing" msgstr "Vim, edición de código Scheme" #. type: Plain text -#: guix-git/doc/contributing.texi:980 +#: guix-git/doc/contributing.texi:1004 msgid "If you are editing code with Vim, we recommend that you run @code{:set autoindent} so that your code is automatically indented as you type. Additionally, @uref{https://www.vim.org/scripts/script.php?script_id=3998, @code{paredit.vim}} may help you deal with all these parentheses." msgstr "Si está editando código con Vim, le recomendamos ejecutar @code{:set autoindent} para que el código se indente automáticamente mientras escribe. Adicionalmente, @uref{https://www.vim.org/scripts/script.php?script_id=3998, @code{paredit.vim}} puede ayudar a manejar todos estos paréntesis." #. type: Plain text -#: guix-git/doc/contributing.texi:984 +#: guix-git/doc/contributing.texi:1008 msgid "We require all top-level procedures to carry a docstring. This requirement can be relaxed for simple private procedures in the @code{(guix build @dots{})} name space, though." msgstr "Requerimos que todos los procedimientos del nivel superior tengan una cadena de documentación. Este requisito puede relajarse para procedimientos simples privados en el espacio de nombres @code{(guix build @dots{})} no obstante." #. type: Plain text -#: guix-git/doc/contributing.texi:987 +#: guix-git/doc/contributing.texi:1011 msgid "Procedures should not have more than four positional parameters. Use keyword parameters for procedures that take more than four parameters." msgstr "Los procedimientos no deben tener más de cuatro parámetros posicionales. Use parámetros con palabras clave para procedimientos que toman más de cuatro parámetros." #. type: Plain text -#: guix-git/doc/contributing.texi:1001 +#: guix-git/doc/contributing.texi:1025 #, fuzzy #| msgid "Development is done using the Git distributed version control system. Thus, access to the repository is not strictly necessary. We welcome contributions in the form of patches as produced by @code{git format-patch} sent to the @email{guix-patches@@gnu.org} mailing list. Seasoned Guix developers may also want to look at the section on commit access (@pxref{Commit Access})." msgid "Development is done using the Git distributed version control system. Thus, access to the repository is not strictly necessary. We welcome contributions in the form of patches as produced by @code{git format-patch} sent to the @email{guix-patches@@gnu.org} mailing list (@pxref{submitting patches,, Submitting patches to a project, git, Git User Manual}). Contributors are encouraged to take a moment to set some Git repository options (@pxref{Configuring Git}) first, which can improve the readability of patches. Seasoned Guix developers may also want to look at the section on commit access (@pxref{Commit Access})." msgstr "El desarrollo se lleva a cabo usando el sistema de control de versiones distribuido Git. Por lo tanto, no es estrictamente necesario el acceso al repositorio. Son bienvenidas las contribuciones en forma de parches como los producidos por @code{git format-patch} enviadas a la lista de correo @email{guix-patches@@gnu.org}. Las desarrolladoras de Guix que lleven un tiempo en ello puede que también quieran leer la sección sobre el acceso al repositorio (@pxref{Commit Access})." #. type: Plain text -#: guix-git/doc/contributing.texi:1008 +#: guix-git/doc/contributing.texi:1032 msgid "This mailing list is backed by a Debbugs instance, which allows us to keep track of submissions (@pxref{Tracking Bugs and Patches}). Each message sent to that mailing list gets a new tracking number assigned; people can then follow up on the submission by sending email to @code{@var{NNN}@@debbugs.gnu.org}, where @var{NNN} is the tracking number (@pxref{Sending a Patch Series})." msgstr "Esta lista de correo está respaldada por una instancia de Debbugs accesible en @uref{https://bugs.gnu.org/guix-patches}, la cual nos permite mantener el seguimiento de los envíos. A cada mensaje enviado a esa lista de correo se le asigna un número de seguimiento; la gente puede realizar aportaciones sobre el tema mediante el envío de correos electrónicos a @code{@var{NNN}@@debbugs.gnu.org}, donde @var{NNN} es el número de seguimiento (@pxref{Sending a Patch Series})." #. type: Plain text -#: guix-git/doc/contributing.texi:1012 +#: guix-git/doc/contributing.texi:1036 msgid "Please write commit logs in the ChangeLog format (@pxref{Change Logs,,, standards, GNU Coding Standards}); you can check the commit history for examples." msgstr "Le rogamos que escriba los mensajes de revisiones en formato ChangeLog (@pxref{Change Logs,,, standards, GNU Coding Standards}); puede comprobar la historia de revisiones en busca de ejemplos." #. type: Plain text -#: guix-git/doc/contributing.texi:1015 +#: guix-git/doc/contributing.texi:1039 msgid "Before submitting a patch that adds or modifies a package definition, please run through this check list:" msgstr "Antes de enviar un parche que añade o modifica una definición de un paquete, por favor recorra esta lista de comprobaciones:" #. type: code{#1} -#: guix-git/doc/contributing.texi:1017 guix-git/doc/contributing.texi:1223 +#: guix-git/doc/contributing.texi:1041 guix-git/doc/contributing.texi:1251 #, no-wrap msgid "git format-patch" msgstr "" #. type: code{#1} -#: guix-git/doc/contributing.texi:1018 +#: guix-git/doc/contributing.texi:1042 #, fuzzy, no-wrap #| msgid "git-fetch" msgid "git-format-patch" msgstr "git-fetch" #. type: enumerate -#: guix-git/doc/contributing.texi:1025 +#: guix-git/doc/contributing.texi:1049 msgid "When generating your patches with @code{git format-patch} or @code{git send-email}, we recommend using the option @code{--base=}, perhaps with the value @code{auto}. This option adds a note to the patch stating which commit the patch is based on. This helps reviewers understand how to apply and review your patches." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1031 +#: guix-git/doc/contributing.texi:1055 msgid "If the authors of the packaged software provide a cryptographic signature for the release tarball, make an effort to verify the authenticity of the archive. For a detached GPG signature file this would be done with the @code{gpg --verify} command." msgstr "Si las autoras del paquete software proporcionan una firma criptográfica para el archivo de la versión, haga un esfuerzo para verificar la autenticidad del archivo. Para un archivo de firma GPG separado esto puede hacerse con la orden @code{gpg --verify}." #. type: enumerate -#: guix-git/doc/contributing.texi:1035 +#: guix-git/doc/contributing.texi:1059 msgid "Take some time to provide an adequate synopsis and description for the package. @xref{Synopses and Descriptions}, for some guidelines." msgstr "Dedique algún tiempo a proporcionar una sinopsis y descripción adecuadas para el paquete. @xref{Synopses and Descriptions}, para algunas directrices." #. type: enumerate -#: guix-git/doc/contributing.texi:1040 +#: guix-git/doc/contributing.texi:1064 msgid "Run @code{guix lint @var{package}}, where @var{package} is the name of the new or modified package, and fix any errors it reports (@pxref{Invoking guix lint})." msgstr "Ejecute @code{guix lint @var{paquete}}, donde @var{paquete} es el nombre del paquete nuevo o modificado, y corrija cualquier error del que informe (@pxref{Invoking guix lint})." #. type: enumerate -#: guix-git/doc/contributing.texi:1044 +#: guix-git/doc/contributing.texi:1068 +#, fuzzy +#| msgid "Run @code{guix lint @var{package}}, where @var{package} is the name of the new or modified package, and fix any errors it reports (@pxref{Invoking guix lint})." +msgid "Run @code{guix style @var{package}} to format the new package definition according to the project's conventions (@pxref{Invoking guix style})." +msgstr "Ejecute @code{guix lint @var{paquete}}, donde @var{paquete} es el nombre del paquete nuevo o modificado, y corrija cualquier error del que informe (@pxref{Invoking guix lint})." + +#. type: enumerate +#: guix-git/doc/contributing.texi:1072 msgid "Make sure the package builds on your platform, using @code{guix build @var{package}}." msgstr "Asegúrese de que el paquete compile en su plataforma, usando @code{guix build @var{package}}." #. type: enumerate -#: guix-git/doc/contributing.texi:1052 +#: guix-git/doc/contributing.texi:1080 #, fuzzy #| msgid "We recommend you also try building the package on other supported platforms. As you may not have access to actual hardware platforms, we recommend using the @code{qemu-binfmt-service-type} to emulate them. In order to enable it, add the following service to the list of services in your @code{operating-system} configuration:" msgid "We recommend you also try building the package on other supported platforms. As you may not have access to actual hardware platforms, we recommend using the @code{qemu-binfmt-service-type} to emulate them. In order to enable it, add the @code{virtualization} service module and the following service to the list of services in your @code{operating-system} configuration:" msgstr "También le recomendamos que pruebe a construir el paquete en otras plataformas disponibles. Como puede no disponer de acceso a dichas plataformas hardware físicamente, le recomendamos el uso de @code{qemu-binfmt-service-type} para emularlas. Para activarlo, añada el siguiente servicio a la lista de servicios en su configuración @code{operating-system}:" #. type: lisp -#: guix-git/doc/contributing.texi:1057 +#: guix-git/doc/contributing.texi:1085 #, fuzzy, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -1691,19 +1731,19 @@ msgstr "" " (platforms (lookup-qemu-platforms \"arm\" \"aarch64\"))))\n" #. type: enumerate -#: guix-git/doc/contributing.texi:1060 +#: guix-git/doc/contributing.texi:1088 msgid "Then reconfigure your system." msgstr "Una vez hecho esto, reconfigure su sistema." #. type: enumerate -#: guix-git/doc/contributing.texi:1065 +#: guix-git/doc/contributing.texi:1093 #, fuzzy #| msgid "You can then build packages for different platforms by specifying the @code{--system} option. For example, to build the \"hello\" package for the armhf, aarch64, or mips64 architectures, you would run the following commands, respectively:" msgid "You can then build packages for different platforms by specifying the @code{--system} option. For example, to build the \"hello\" package for the armhf or aarch64 architectures, you would run the following commands, respectively:" msgstr "Entonces podrá construir paquetes para diferentes plataformas mediante la opción @code{--system}. Por ejemplo, para la construcción del paquete \"hello\" para las arquitecturas armhf, aarch64 o mips64 ejecutaría las siguientes órdenes, respectivamente:" #. type: example -#: guix-git/doc/contributing.texi:1068 +#: guix-git/doc/contributing.texi:1096 #, no-wrap msgid "" "guix build --system=armhf-linux --rounds=2 hello\n" @@ -1714,135 +1754,135 @@ msgstr "" # FUZZY #. type: cindex -#: guix-git/doc/contributing.texi:1071 +#: guix-git/doc/contributing.texi:1099 #, no-wrap msgid "bundling" msgstr "empaquetamientos" #. type: enumerate -#: guix-git/doc/contributing.texi:1074 +#: guix-git/doc/contributing.texi:1102 msgid "Make sure the package does not use bundled copies of software already available as separate packages." msgstr "Asegúrese de que el paquete no usa copias empaquetadas de software ya disponible como paquetes separados." #. type: enumerate -#: guix-git/doc/contributing.texi:1083 +#: guix-git/doc/contributing.texi:1111 msgid "Sometimes, packages include copies of the source code of their dependencies as a convenience for users. However, as a distribution, we want to make sure that such packages end up using the copy we already have in the distribution, if there is one. This improves resource usage (the dependency is built and stored only once), and allows the distribution to make transverse changes such as applying security updates for a given software package in a single place and have them affect the whole system---something that bundled copies prevent." msgstr "A veces, paquetes incluyen copias embebidas del código fuente de sus dependencias para conveniencia de las usuarias. No obstante, como distribución, queremos asegurar que dichos paquetes efectivamente usan la copia que ya tenemos en la distribución si hay ya una. Esto mejora el uso de recursos (la dependencia es construida y almacenada una sola vez), y permite a la distribución hacer cambios transversales como aplicar actualizaciones de seguridad para un software dado en un único lugar y que afecte a todo el sistema---algo que esas copias embebidas impiden." #. type: enumerate -#: guix-git/doc/contributing.texi:1092 +#: guix-git/doc/contributing.texi:1120 #, fuzzy msgid "Take a look at the profile reported by @command{guix size} (@pxref{Invoking guix size}). This will allow you to notice references to other packages unwillingly retained. It may also help determine whether to split the package (@pxref{Packages with Multiple Outputs}), and which optional dependencies should be used. In particular, avoid adding @code{texlive} as a dependency: because of its extreme size, use the @code{texlive-tiny} package or @code{texlive-union} procedure instead." msgstr "Eche un vistazo al perfil mostrado por @command{guix size} (@pxref{Invoking guix size}). Esto le permitirá darse cuenta de referencias a otros paquetes retenidas involuntariamente. También puede ayudar a determinar si se debe dividir el paquete (@pxref{Packages with Multiple Outputs}), y qué dependencias opcionales deben usarse. En particular, evite añadir @code{texlive} como una dependencia: debido a su tamaño extremo, use @code{texlive-tiny} o @code{texlive-union}." #. type: enumerate -#: guix-git/doc/contributing.texi:1097 +#: guix-git/doc/contributing.texi:1125 #, fuzzy #| msgid "For important changes, check that dependent package (if applicable) are not affected by the change; @code{guix refresh --list-dependent @var{package}} will help you do that (@pxref{Invoking guix refresh})." msgid "For important changes, check that dependent packages (if applicable) are not affected by the change; @code{guix refresh --list-dependent @var{package}} will help you do that (@pxref{Invoking guix refresh})." msgstr "Para cambios importantes, compruebe que los paquetes dependientes (si aplica) no se ven afectados por el cambio; @code{guix refresh --list-dependent @var{package}} le ayudará a hacerlo (@pxref{Invoking guix refresh})." #. type: cindex -#: guix-git/doc/contributing.texi:1099 +#: guix-git/doc/contributing.texi:1127 #, no-wrap msgid "branching strategy" msgstr "estrategia de ramas" #. type: cindex -#: guix-git/doc/contributing.texi:1100 +#: guix-git/doc/contributing.texi:1128 #, no-wrap msgid "rebuild scheduling strategy" msgstr "estrategia de planificación de reconstrucciones" #. type: enumerate -#: guix-git/doc/contributing.texi:1103 +#: guix-git/doc/contributing.texi:1131 msgid "Depending on the number of dependent packages and thus the amount of rebuilding induced, commits go to different branches, along these lines:" msgstr "En base al número de paquetes dependientes y, por tanto, del tamaño de la reconstrucción inducida, los revisiones van a ramas separadas, según estas líneas:" #. type: item -#: guix-git/doc/contributing.texi:1105 +#: guix-git/doc/contributing.texi:1133 #, no-wrap msgid "300 dependent packages or less" msgstr "300 paquetes dependientes o menos" #. type: table -#: guix-git/doc/contributing.texi:1107 +#: guix-git/doc/contributing.texi:1135 msgid "@code{master} branch (non-disruptive changes)." msgstr "rama @code{master} (cambios no disruptivos)." #. type: item -#: guix-git/doc/contributing.texi:1108 +#: guix-git/doc/contributing.texi:1136 #, no-wrap msgid "between 300 and 1,800 dependent packages" msgstr "entre 300 y 1.800 paquetes dependientes" #. type: table -#: guix-git/doc/contributing.texi:1114 +#: guix-git/doc/contributing.texi:1142 #, fuzzy #| msgid "@code{staging} branch (non-disruptive changes). This branch is intended to be merged in @code{master} every 6 weeks or so. Topical changes (e.g., an update of the GNOME stack) can instead go to a specific branch (say, @code{gnome-updates})." msgid "@code{staging} branch (non-disruptive changes). This branch is intended to be merged in @code{master} every 6 weeks or so. Topical changes (e.g., an update of the GNOME stack) can instead go to a specific branch (say, @code{gnome-updates}). This branch is not expected to be buildable or usable until late in its development process." msgstr "rama @code{staging} (cambios no disruptivos). Esta rama está pensada para ser incorporada en @code{master} cada 6 semanas más o menos. Ramas temáticas (por ejemplo, una actualización de la pila de GNOME) pueden ir en una rama específica (digamos, @code{gnome-updates})." #. type: item -#: guix-git/doc/contributing.texi:1115 +#: guix-git/doc/contributing.texi:1143 #, no-wrap msgid "more than 1,800 dependent packages" msgstr "más de 1.800 paquetes dependientes" #. type: table -#: guix-git/doc/contributing.texi:1120 +#: guix-git/doc/contributing.texi:1148 #, fuzzy #| msgid "@code{core-updates} branch (may include major and potentially disruptive changes). This branch is intended to be merged in @code{master} every 6 months or so." msgid "@code{core-updates} branch (may include major and potentially disruptive changes). This branch is intended to be merged in @code{master} every 6 months or so. This branch is not expected to be buildable or usable until late in its development process." msgstr "rama @code{core-updates} (puede incluir cambios mayores y potencialmente disruptivos). Esta rama está pensada para ser mezclada en @code{master} cada 6 meses más o menos." #. type: enumerate -#: guix-git/doc/contributing.texi:1127 +#: guix-git/doc/contributing.texi:1155 #, fuzzy #| msgid "All these branches are @uref{@value{SUBSTITUTE-URL}, tracked by our build farm} and merged into @code{master} once everything has been successfully built. This allows us to fix issues before they hit users, and to reduce the window during which pre-built binaries are not available." msgid "All these branches are @uref{https://@value{SUBSTITUTE-SERVER-1}, tracked by our build farm} and merged into @code{master} once everything has been successfully built. This allows us to fix issues before they hit users, and to reduce the window during which pre-built binaries are not available." msgstr "Todas estas ramas son @uref{@value{SUBSTITUTE-URL}, seguidas por nuestra granja de construcción} e incluidas en @code{master} una vez todo se ha construido satisfactoriamente. Esto nos permite corregir errores antes de que afecten a usuarias, y reducir la ventana durante la cual los binarios preconstruidos no están disponibles." #. type: enumerate -#: guix-git/doc/contributing.texi:1136 +#: guix-git/doc/contributing.texi:1164 msgid "When we decide to start building the @code{staging} or @code{core-updates} branches, they will be forked and renamed with the suffix @code{-frozen}, at which time only bug fixes may be pushed to the frozen branches. The @code{core-updates} and @code{staging} branches will remain open to accept patches for the next cycle. Please ask on the mailing list or IRC if unsure where to place a patch." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1138 +#: guix-git/doc/contributing.texi:1166 #, no-wrap msgid "determinism, of build processes" msgstr "determinismo, del proceso de construcción" #. type: cindex -#: guix-git/doc/contributing.texi:1139 +#: guix-git/doc/contributing.texi:1167 #, no-wrap msgid "reproducible builds, checking" msgstr "construcciones reproducibles, comprobar" #. type: enumerate -#: guix-git/doc/contributing.texi:1143 +#: guix-git/doc/contributing.texi:1171 msgid "Check whether the package's build process is deterministic. This typically means checking whether an independent build of the package yields the exact same result that you obtained, bit for bit." msgstr "Compruebe si el proceso de construcción de un paquete es determinista. Esto significa típicamente comprobar si una construcción independiente del paquete ofrece exactamente el mismo resultado que usted obtuvo, bit a bit." #. type: enumerate -#: guix-git/doc/contributing.texi:1146 +#: guix-git/doc/contributing.texi:1174 msgid "A simple way to do that is by building the same package several times in a row on your machine (@pxref{Invoking guix build}):" msgstr "Una forma simple de hacerlo es construyendo el mismo paquete varias veces seguidas en su máquina (@pxref{Invoking guix build}):" #. type: example -#: guix-git/doc/contributing.texi:1149 +#: guix-git/doc/contributing.texi:1177 #, no-wrap msgid "guix build --rounds=2 my-package\n" msgstr "guix build --rounds=2 mi-paquete\n" #. type: enumerate -#: guix-git/doc/contributing.texi:1153 +#: guix-git/doc/contributing.texi:1181 msgid "This is enough to catch a class of common non-determinism issues, such as timestamps or randomly-generated output in the build result." msgstr "Esto es suficiente una clase común de problemas de no-determinismo, como las marcas de tiempo o salida generada aleatoriamente en el resultado de la construcción." #. type: enumerate -#: guix-git/doc/contributing.texi:1163 +#: guix-git/doc/contributing.texi:1191 #, fuzzy #| msgid "Another option is to use @command{guix challenge} (@pxref{Invoking guix challenge}). You may run it once the package has been committed and built by @code{@value{SUBSTITUTE-SERVER}} to check whether it obtains the same result as you did. Better yet: Find another machine that can build it and run @command{guix publish}. Since the remote build machine is likely different from yours, this can catch non-determinism issues related to the hardware---e.g., use of different instruction set extensions---or to the operating system kernel---e.g., reliance on @code{uname} or @file{/proc} files." msgid "Another option is to use @command{guix challenge} (@pxref{Invoking guix challenge}). You may run it once the package has been committed and built by @code{@value{SUBSTITUTE-SERVER-1}} to check whether it obtains the same result as you did. Better yet: Find another machine that can build it and run @command{guix publish}. Since the remote build machine is likely different from yours, this can catch non-determinism issues related to the hardware---e.g., use of different instruction set extensions---or to the operating system kernel---e.g., reliance on @code{uname} or @file{/proc} files." @@ -1850,110 +1890,112 @@ msgstr "Otra opción es el uso de @command{guix challenge} (@pxref{Invoking guix # TODO (MAAV): And so forth? #. type: enumerate -#: guix-git/doc/contributing.texi:1169 +#: guix-git/doc/contributing.texi:1197 msgid "When writing documentation, please use gender-neutral wording when referring to people, such as @uref{https://en.wikipedia.org/wiki/Singular_they, singular ``they''@comma{} ``their''@comma{} ``them''}, and so forth." msgstr "Cuando escriba documentación, por favor use construcciones neutrales de género para referirse a la gente@footnote{NdT: En esta traducción se ha optado por usar el femenino para referirse a @emph{personas}, ya que es el género gramatical de dicha palabra. Aunque las construcciones impersonales pueden adoptarse en la mayoría de casos, también pueden llegar a ser muy artificiales en otros usos del castellano; en ocasiones son directamente imposibles. Algunas construcciones que proponen la neutralidad de género dificultan la lectura automática (-x), o bien dificultan la corrección automática (-e), o bien aumentan significativamente la redundancia y reducen del mismo modo la velocidad en la lectura (-as/os, -as y -os). No obstante, la adopción del genero neutro heredado del latín, el que en castellano se ha unido con el masculino, como construcción neutral de género se considera inaceptable, ya que sería equivalente al ``it'' en inglés, nada más lejos de la intención de las autoras originales del texto.}, como @uref{https://en.wikipedia.org/wiki/Singular_they, singular ``they''@comma{} ``their''@comma{} ``them''} y demás." #. type: enumerate -#: guix-git/doc/contributing.texi:1173 +#: guix-git/doc/contributing.texi:1201 msgid "Verify that your patch contains only one set of related changes. Bundling unrelated changes together makes reviewing harder and slower." msgstr "Compruebe que su parche contiene únicamente un conjunto relacionado de cambios. Agrupando cambios sin relación dificulta y ralentiza la revisión." #. type: enumerate -#: guix-git/doc/contributing.texi:1176 +#: guix-git/doc/contributing.texi:1204 msgid "Examples of unrelated changes include the addition of several packages, or a package update along with fixes to that package." msgstr "Ejemplos de cambios sin relación incluyen la adición de varios paquetes, o una actualización de un paquete junto a correcciones a ese paquete." #. type: enumerate -#: guix-git/doc/contributing.texi:1181 -msgid "Please follow our code formatting rules, possibly running the @command{etc/indent-code.el} script to do that automatically for you (@pxref{Formatting Code})." +#: guix-git/doc/contributing.texi:1209 +#, fuzzy +#| msgid "Please follow our code formatting rules, possibly running the @command{etc/indent-code.el} script to do that automatically for you (@pxref{Formatting Code})." +msgid "Please follow our code formatting rules, possibly running @command{guix style} script to do that automatically for you (@pxref{Formatting Code})." msgstr "Por favor, siga nuestras reglas de formato de código, posiblemente ejecutando el guión @command{etc/indent-code.el} para que lo haga automáticamente por usted (@pxref{Formatting Code})." #. type: enumerate -#: guix-git/doc/contributing.texi:1189 +#: guix-git/doc/contributing.texi:1217 msgid "When possible, use mirrors in the source URL (@pxref{Invoking guix download}). Use reliable URLs, not generated ones. For instance, GitHub archives are not necessarily identical from one generation to the next, so in this case it's often better to clone the repository. Don't use the @command{name} field in the URL: it is not very useful and if the name changes, the URL will probably be wrong." msgstr "Cuando sea posible, use espejos en la URL de las fuentes (@pxref{Invoking guix download}). Use URL fiables, no generadas. Por ejemplo, los archivos de GitHub no son necesariamente idénticos de una generación a la siguiente, así que en este caso es normalmente mejor clonar el repositorio. No use el campo @command{name} en la URL: no es muy útil y si el nombre cambia, la URL probablemente estará mal." #. type: enumerate -#: guix-git/doc/contributing.texi:1193 +#: guix-git/doc/contributing.texi:1221 msgid "Check if Guix builds (@pxref{Building from Git}) and address the warnings, especially those about use of undefined symbols." msgstr "Comprueba si Guix se puede construir correctamente (@pxref{Building from Git}) y trata los avisos, especialmente aquellos acerca del uso de símbolos sin definición." #. type: enumerate -#: guix-git/doc/contributing.texi:1196 +#: guix-git/doc/contributing.texi:1224 msgid "Make sure your changes do not break Guix and simulate a @code{guix pull} with:" msgstr "Asegúrese de que sus cambios no rompen Guix y simule @code{guix pull} con:" #. type: example -#: guix-git/doc/contributing.texi:1198 +#: guix-git/doc/contributing.texi:1226 #, no-wrap msgid "guix pull --url=/path/to/your/checkout --profile=/tmp/guix.master\n" msgstr "guix pull --url=/ruta/a/su/copia --profile=/tmp/guix.master\n" # FUZZY #. type: Plain text -#: guix-git/doc/contributing.texi:1211 +#: guix-git/doc/contributing.texi:1239 msgid "When posting a patch to the mailing list, use @samp{[PATCH] @dots{}} as a subject, if your patch is to be applied on a branch other than @code{master}, say @code{core-updates}, specify it in the subject like @samp{[PATCH core-updates] @dots{}}. You may use your email client or the @command{git send-email} command (@pxref{Sending a Patch Series}). We prefer to get patches in plain text messages, either inline or as MIME attachments. You are advised to pay attention if your email client changes anything like line breaks or indentation which could potentially break the patches." msgstr "Cuando publique un parche en la lista de correo, use @samp{[PATCH] @dots{}} como el asunto, si su parche debe aplicarse sobre una rama distinta a @code{master}, digamos @code{core-updates}, especifíquelo en el asunto usando @samp{[PATCH core-updates] @dots{}}. Puede usar su cliente de correo o la orden @command{git send-email} (@pxref{Sending a Patch Series}). Preferimos recibir los parches en texto plano, ya sea en línea o como adjuntos MIME. Se le recomienda que preste atención por si su cliente de correo cambia algo como los saltos de línea o la indentación, lo que podría potencialmente romper los parches." #. type: Plain text -#: guix-git/doc/contributing.texi:1216 +#: guix-git/doc/contributing.texi:1244 msgid "Expect some delay when you submit your very first patch to @email{guix-patches@@gnu.org}. You have to wait until you get an acknowledgement with the assigned tracking number. Future acknowledgements should not be delayed." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1219 +#: guix-git/doc/contributing.texi:1247 msgid "When a bug is resolved, please close the thread by sending an email to @email{@var{NNN}-done@@debbugs.gnu.org}." msgstr "Cuando un error es resuelto, por favor cierre el hilo enviando un correo a @email{@var{NNN}-done@@debbugs.gnu.org}." #. type: subsection -#: guix-git/doc/contributing.texi:1220 guix-git/doc/contributing.texi:1221 +#: guix-git/doc/contributing.texi:1248 guix-git/doc/contributing.texi:1249 #, fuzzy, no-wrap #| msgid "Configuring the boot loader." msgid "Configuring Git" msgstr "Configurar el gestor de arranque." #. type: cindex -#: guix-git/doc/contributing.texi:1222 +#: guix-git/doc/contributing.texi:1250 #, fuzzy, no-wrap #| msgid "configuration" msgid "git configuration" msgstr "configuration" #. type: code{#1} -#: guix-git/doc/contributing.texi:1224 guix-git/doc/contributing.texi:1259 +#: guix-git/doc/contributing.texi:1252 guix-git/doc/contributing.texi:1287 #, no-wrap msgid "git send-email" msgstr "git send-email" #. type: Plain text -#: guix-git/doc/contributing.texi:1232 +#: guix-git/doc/contributing.texi:1260 msgid "If you have not done so already, you may wish to set a name and email that will be associated with your commits (@pxref{telling git your name, , Telling Git your name, git, Git User Manual}). If you wish to use a different name or email just for commits in this repository, you can use @command{git config --local}, or edit @file{.git/config} in the repository instead of @file{~/.gitconfig}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1238 +#: guix-git/doc/contributing.texi:1266 msgid "We provide some default settings in @file{etc/git/gitconfig} which modify how patches are generated, making them easier to read and apply. These settings can be applied by manually copying them to @file{.git/config} in your checkout, or by telling Git to include the whole file:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1241 +#: guix-git/doc/contributing.texi:1269 #, no-wrap msgid "git config --local include.path ../etc/git/gitconfig\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1245 +#: guix-git/doc/contributing.texi:1273 msgid "From then on, any changes to @file{etc/git/gitconfig} would automatically take effect." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1250 +#: guix-git/doc/contributing.texi:1278 msgid "Since the first patch in a series must be sent separately (@pxref{Sending a Patch Series}), it can also be helpful to tell @command{git format-patch} to handle the e-mail threading instead of @command{git send-email}:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1254 +#: guix-git/doc/contributing.texi:1282 #, no-wrap msgid "" "git config --local format.thread shallow\n" @@ -1961,194 +2003,194 @@ msgid "" msgstr "" #. type: anchor{#1} -#: guix-git/doc/contributing.texi:1256 guix-git/doc/contributing.texi:1258 +#: guix-git/doc/contributing.texi:1284 guix-git/doc/contributing.texi:1286 #, no-wrap msgid "Sending a Patch Series" msgstr "Envío de una serie de parches" #. type: cindex -#: guix-git/doc/contributing.texi:1258 +#: guix-git/doc/contributing.texi:1286 #, no-wrap msgid "patch series" msgstr "series de parches" #. type: Plain text -#: guix-git/doc/contributing.texi:1269 +#: guix-git/doc/contributing.texi:1297 msgid "When sending a patch series (e.g., using @code{git send-email}), please first send one message to @email{guix-patches@@gnu.org}, and then send subsequent patches to @email{@var{NNN}@@debbugs.gnu.org} to make sure they are kept together. See @uref{https://debbugs.gnu.org/Advanced.html, the Debbugs documentation} for more information. You can install @command{git send-email} with @command{guix install git:send-email}." msgstr "Cuando envíe una serie de parches (por ejemplo, usando @code{git send-email}), por favor mande primero un mensaje a @email{guix-patches@@gnu.org}, y después mande los parches siguientes a @email{@var{NNN}@@debbugs.gnu.org} para asegurarse de que se mantienen juntos. Véase @uref{https://debbugs.gnu.org/Advanced.html, la documentación de Debbugs} para más información. Puede instalar @command{git send-email} con @command{guix install git:send-email}." #. type: Plain text -#: guix-git/doc/contributing.texi:1275 +#: guix-git/doc/contributing.texi:1303 msgid "This section describes how the Guix project tracks its bug reports and patch submissions." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1282 -#: guix-git/doc/contributing.texi:1283 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1310 +#: guix-git/doc/contributing.texi:1311 #, no-wrap msgid "The Issue Tracker" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "The official bug and patch tracker." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1296 -#: guix-git/doc/contributing.texi:1297 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1324 +#: guix-git/doc/contributing.texi:1325 #, fuzzy, no-wrap #| msgid "user interfaces" msgid "Debbugs User Interfaces" msgstr "interfaces de usuaria" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "Ways to interact with Debbugs." msgstr "" # FUZZY #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1336 -#: guix-git/doc/contributing.texi:1337 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1364 +#: guix-git/doc/contributing.texi:1365 #, fuzzy, no-wrap #| msgid "Debbugs, issue tracking system" msgid "Debbugs Usertags" msgstr "Debbugs, sistema de seguimiento de incidencias" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "Tag reports with custom labels." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1285 +#: guix-git/doc/contributing.texi:1313 #, no-wrap msgid "bug reports, tracking" msgstr "informes de errores, seguimiento" #. type: cindex -#: guix-git/doc/contributing.texi:1286 +#: guix-git/doc/contributing.texi:1314 #, no-wrap msgid "patch submissions, tracking" msgstr "envíos de parches, seguimiento" # FUZZY #. type: cindex -#: guix-git/doc/contributing.texi:1287 +#: guix-git/doc/contributing.texi:1315 #, no-wrap msgid "issue tracking" msgstr "seguimiento de incidencias" # FUZZY #. type: cindex -#: guix-git/doc/contributing.texi:1288 +#: guix-git/doc/contributing.texi:1316 #, no-wrap msgid "Debbugs, issue tracking system" msgstr "Debbugs, sistema de seguimiento de incidencias" # FUZZY #. type: Plain text -#: guix-git/doc/contributing.texi:1295 +#: guix-git/doc/contributing.texi:1323 msgid "Bug reports and patch submissions are currently tracked using the Debbugs instance at @uref{https://bugs.gnu.org}. Bug reports are filed against the @code{guix} ``package'' (in Debbugs parlance), by sending email to @email{bug-guix@@gnu.org}, while patch submissions are filed against the @code{guix-patches} package by sending email to @email{guix-patches@@gnu.org} (@pxref{Submitting Patches})." msgstr "El seguimiento de los informes de errores y los envíos de parches se realiza con una instancia de Debbugs en @uref{https://bugs.gnu.org}. Los informes de errores se abren para el ``paquete'' @code{guix} (en la jerga de Debbugs), enviando un correo a @email{bug-guix@@gnu.org}, mientras que para los envíos de parches se usa el paquete @code{guix-patches} enviando un correo a @email{guix-patches@@gnu.org} (@pxref{Submitting Patches})." #. type: Plain text -#: guix-git/doc/contributing.texi:1301 +#: guix-git/doc/contributing.texi:1329 msgid "A web interface (actually @emph{two} web interfaces!) are available to browse issues:" msgstr "Hay disponible una interfaz web (¡en realidad @emph{dos} interfaces web!) para la navegación por las incidencias:" #. type: itemize -#: guix-git/doc/contributing.texi:1310 +#: guix-git/doc/contributing.texi:1338 msgid "@url{https://issues.guix.gnu.org} provides a pleasant interface@footnote{The web interface at @url{https://issues.guix.gnu.org} is powered by Mumi, a nice piece of software written in Guile, and you can help! See @url{https://git.elephly.net/gitweb.cgi?p=software/mumi.git}.} to browse bug reports and patches, and to participate in discussions;" msgstr "@url{https://issues.guix.gnu.org} proporciona una agradable interfaz @footnote{La interfaz web en @url{https://issues.guix.gnu.org} implementada con Mumi, un interesante software escrito en Guile, ¡y en el que puede ayudar! Véase @url{https://git.elephly.net/gitweb.cgi?p=software/mumi.git}.} paranavegar por los informes de errores y parches, y para participar en las discusiones;" #. type: itemize -#: guix-git/doc/contributing.texi:1312 +#: guix-git/doc/contributing.texi:1340 msgid "@url{https://bugs.gnu.org/guix} lists bug reports;" msgstr "@url{https://bugs.gnu.org/guix} muestra informes de errores;" #. type: itemize -#: guix-git/doc/contributing.texi:1314 +#: guix-git/doc/contributing.texi:1342 msgid "@url{https://bugs.gnu.org/guix-patches} lists patch submissions." msgstr "@url{https://bugs.gnu.org/guix-patches} muestra parches enviados." #. type: Plain text -#: guix-git/doc/contributing.texi:1319 +#: guix-git/doc/contributing.texi:1347 msgid "To view discussions related to issue number @var{n}, go to @indicateurl{https://issues.guix.gnu.org/@var{n}} or @indicateurl{https://bugs.gnu.org/@var{n}}." msgstr "Para ver los hilos relacionados con la incidencia número @var{n}, visite @indicateurl{https://issues.guix.gnu.org/@var{n}} o @indicateurl{https://bugs.gnu.org/@var{n}}." # FUZZY #. type: Plain text -#: guix-git/doc/contributing.texi:1322 +#: guix-git/doc/contributing.texi:1350 msgid "If you use Emacs, you may find it more convenient to interact with issues using @file{debbugs.el}, which you can install with:" msgstr "Si usa Emacs, puede encontrar más conveniente la interacción con las incidencias mediante @file{debbugs.el}, que puede instalar con:" #. type: example -#: guix-git/doc/contributing.texi:1325 +#: guix-git/doc/contributing.texi:1353 #, no-wrap msgid "guix install emacs-debbugs\n" msgstr "guix install emacs-debbugs\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1328 +#: guix-git/doc/contributing.texi:1356 msgid "For example, to list all open issues on @code{guix-patches}, hit:" msgstr "Por ejemplo, para enumerar todos las incidencias abiertas en @code{guix-patches} pulse:" #. type: example -#: guix-git/doc/contributing.texi:1331 +#: guix-git/doc/contributing.texi:1359 #, no-wrap msgid "@kbd{C-u} @kbd{M-x} debbugs-gnu @kbd{RET} @kbd{RET} guix-patches @kbd{RET} n y\n" msgstr "@kbd{C-u} @kbd{M-x} debbugs-gnu @kbd{RET} @kbd{RET} guix-patches @kbd{RET} n y\n" # FUZZY #. type: Plain text -#: guix-git/doc/contributing.texi:1335 +#: guix-git/doc/contributing.texi:1363 msgid "@xref{Top,,, debbugs-ug, Debbugs User Guide}, for more information on this nifty tool!" msgstr "@xref{Top,,, debbugs-ug, Debbugs User Guide}, para más información sobre esta útil herramienta." #. type: cindex -#: guix-git/doc/contributing.texi:1339 +#: guix-git/doc/contributing.texi:1367 #, no-wrap msgid "usertags, for debbugs" msgstr "" # FUZZY #. type: cindex -#: guix-git/doc/contributing.texi:1340 +#: guix-git/doc/contributing.texi:1368 #, fuzzy, no-wrap #| msgid "Debbugs, issue tracking system" msgid "Debbugs usertags" msgstr "Debbugs, sistema de seguimiento de incidencias" #. type: Plain text -#: guix-git/doc/contributing.texi:1346 +#: guix-git/doc/contributing.texi:1374 msgid "Debbugs provides a feature called @dfn{usertags} that allows any user to tag any bug with an arbitrary label. Bugs can be searched by usertag, so this is a handy way to organize bugs@footnote{The list of usertags is public information, and anyone can modify any user's list of usertags, so keep that in mind if you choose to use this feature.}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1352 +#: guix-git/doc/contributing.texi:1380 msgid "For example, to view all the bug reports (or patches, in the case of @code{guix-patches}) tagged with the usertag @code{powerpc64le-linux} for the user @code{guix}, open a URL like the following in a web browser: @url{https://debbugs.gnu.org/cgi-bin/pkgreport.cgi?tag=powerpc64le-linux;users=guix}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1356 +#: guix-git/doc/contributing.texi:1384 msgid "For more information on how to use usertags, please refer to the documentation for Debbugs or the documentation for whatever tool you use to interact with Debbugs." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1361 +#: guix-git/doc/contributing.texi:1389 msgid "In Guix, we are experimenting with usertags to keep track of architecture-specific issues. To facilitate collaboration, all our usertags are associated with the single user @code{guix}. The following usertags currently exist for that user:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1364 guix-git/doc/guix.texi:556 +#: guix-git/doc/contributing.texi:1392 guix-git/doc/guix.texi:557 #, fuzzy, no-wrap msgid "powerpc64le-linux" msgstr "aarch64-linux" #. type: table -#: guix-git/doc/contributing.texi:1372 +#: guix-git/doc/contributing.texi:1400 msgid "The purpose of this usertag is to make it easy to find the issues that matter most for the @code{powerpc64le-linux} system type. Please assign this usertag to bugs or patches that affect @code{powerpc64le-linux} but not other system types. In addition, you may use it to identify issues that for some reason are particularly important for the @code{powerpc64le-linux} system type, even if the issue affects other system types, too." msgstr "" @@ -2156,40 +2198,40 @@ msgstr "" #. type: item #. #-#-#-#-# guix.pot (guix manual checkout) #-#-#-#-# #. type: cindex -#: guix-git/doc/contributing.texi:1373 guix-git/doc/guix.texi:3070 -#: guix-git/doc/guix.texi:4771 +#: guix-git/doc/contributing.texi:1401 guix-git/doc/guix.texi:3087 +#: guix-git/doc/guix.texi:4789 #, no-wrap msgid "reproducibility" msgstr "reproducibilidad" #. type: table -#: guix-git/doc/contributing.texi:1377 +#: guix-git/doc/contributing.texi:1405 msgid "For issues related to reproducibility. For example, it would be appropriate to assign this usertag to a bug report for a package that fails to build reproducibly." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1384 +#: guix-git/doc/contributing.texi:1412 msgid "If you're a committer and you want to add a usertag, just start using it with the @code{guix} user. If the usertag proves useful to you, consider updating this section of the manual so that others will know what your usertag means." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1388 +#: guix-git/doc/contributing.texi:1416 #, no-wrap msgid "commit access, for developers" msgstr "acceso al repositorio, para desarrolladoras" #. type: Plain text -#: guix-git/doc/contributing.texi:1394 -msgid "Everyone can contribute to Guix without having commit access (@pxref{Submitting Patches}). However, for frequent contributors, having write access to the repository can be convenient. Commit access should not be thought of as a ``badge of honor'' but rather as a responsibility a contributor is willing to take to help the project." +#: guix-git/doc/contributing.texi:1427 +msgid "Everyone can contribute to Guix without having commit access (@pxref{Submitting Patches}). However, for frequent contributors, having write access to the repository can be convenient. As a rule of thumb, a contributor should have accumulated fifty (50) reviewed commits to be considered as a committer and have sustained their activity in the project for at least 6 months. This ensures enough interactions with the contributor, which is essential for mentoring and assessing whether they are ready to become a committer. Commit access should not be thought of as a ``badge of honor'' but rather as a responsibility a contributor is willing to take to help the project." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1398 +#: guix-git/doc/contributing.texi:1431 msgid "The following sections explain how to get commit access, how to be ready to push commits, and the policies and community expectations for commits pushed upstream." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1399 +#: guix-git/doc/contributing.texi:1432 #, fuzzy, no-wrap #| msgid "Commit Access" msgid "Applying for Commit Access" @@ -2197,7 +2239,7 @@ msgstr "Acceso al repositorio" # FUZZY #. type: Plain text -#: guix-git/doc/contributing.texi:1403 +#: guix-git/doc/contributing.texi:1436 #, fuzzy #| msgid "For frequent contributors, having write access to the repository is convenient. When you deem it necessary, consider applying for commit access by following these steps:" msgid "When you deem it necessary, consider applying for commit access by following these steps:" @@ -2205,94 +2247,94 @@ msgstr "El acceso de escritura al repositorio es conveniente para personas que c # FUZZY #. type: enumerate -#: guix-git/doc/contributing.texi:1412 +#: guix-git/doc/contributing.texi:1445 msgid "Find three committers who would vouch for you. You can view the list of committers at @url{https://savannah.gnu.org/project/memberlist.php?group=guix}. Each of them should email a statement to @email{guix-maintainers@@gnu.org} (a private alias for the collective of maintainers), signed with their OpenPGP key." msgstr "Encuentre tres personas que contribuyan al proyecto que puedan respaldarle. Puede ver la lista de personas que contribuyen en @url{https://savannah.gnu.org/project/memberlist.php?group=guix}. Cada una de ellas deberá enviar un correo confirmando el respaldo a @email{guix-maintainers@@gnu.org} (un alias privado para el colectivo de personas que mantienen el proyecto), firmado con su clave OpenPGP." #. type: enumerate -#: guix-git/doc/contributing.texi:1418 +#: guix-git/doc/contributing.texi:1451 msgid "Committers are expected to have had some interactions with you as a contributor and to be able to judge whether you are sufficiently familiar with the project's practices. It is @emph{not} a judgment on the value of your work, so a refusal should rather be interpreted as ``let's try again later''." msgstr "Se espera que dichas personas hayan tenido algunas interacciones con usted en sus contribuciones y sean capaces de juzgar si es suficientemente familiar con las prácticas del proyecto. @emph{No} es un juicio sobre el valor de su trabajo, por lo que un rechazo debe ser interpretado más bien como un ``habrá que probar de nuevo más adelante''." #. type: enumerate -#: guix-git/doc/contributing.texi:1425 +#: guix-git/doc/contributing.texi:1458 msgid "Send @email{guix-maintainers@@gnu.org} a message stating your intent, listing the three committers who support your application, signed with the OpenPGP key you will use to sign commits, and giving its fingerprint (see below). See @uref{https://emailselfdefense.fsf.org/en/}, for an introduction to public-key cryptography with GnuPG." msgstr "Envíe un correo a @email{guix-maintainers@@gnu.org} expresando su intención, enumerando a las tres contribuidoras que respaldan su petición, firmado con su clave OpenPGP que usará para firmar las revisiones, y proporcionando su huella dactilar (véase a continuación). Véase @uref{https://emailselfdefense.fsf.org/es/} para una introducción a la criptografía de clave pública con GnuPG." #. type: enumerate -#: guix-git/doc/contributing.texi:1431 +#: guix-git/doc/contributing.texi:1464 msgid "Set up GnuPG such that it never uses the SHA1 hash algorithm for digital signatures, which is known to be unsafe since 2019, for instance by adding the following line to @file{~/.gnupg/gpg.conf} (@pxref{GPG Esoteric Options,,, gnupg, The GNU Privacy Guard Manual}):" msgstr "Configure GnuPG de modo que no use el algorítmo de hash SHA1 nunca para las firmas digitales, el cual se sabe que no es seguro desde 2019, añadiendo, por ejemplo, la siguiente línea en @file{~/.gnupg/gpg.conf} (@pxref{GPG Esoteric Options,,, gnupg, The GNU Privacy Guard Manual}):" #. type: example -#: guix-git/doc/contributing.texi:1434 +#: guix-git/doc/contributing.texi:1467 #, no-wrap msgid "digest-algo sha512\n" msgstr "digest-algo sha512\n" #. type: enumerate -#: guix-git/doc/contributing.texi:1439 +#: guix-git/doc/contributing.texi:1472 msgid "Maintainers ultimately decide whether to grant you commit access, usually following your referrals' recommendation." msgstr "Las personas que mantienen el proyecto decidirán en última instancia si conceder o no el acceso de escritura, habitualmente siguiendo las recomendaciones de las personas de referencia proporcionadas." #. type: cindex -#: guix-git/doc/contributing.texi:1441 +#: guix-git/doc/contributing.texi:1474 #, no-wrap msgid "OpenPGP, signed commits" msgstr "OpenPGP, revisiones firmadas" # FUZZY #. type: enumerate -#: guix-git/doc/contributing.texi:1446 +#: guix-git/doc/contributing.texi:1479 msgid "If and once you've been given access, please send a message to @email{guix-devel@@gnu.org} to say so, again signed with the OpenPGP key you will use to sign commits (do that before pushing your first commit). That way, everyone can notice and ensure you control that OpenPGP key." msgstr "Una vez haya conseguido acceso, en caso de hacerlo, por favor envíe un mensaje a @email{guix-devel@@gnu.org} para notificarlo, de nuevo firmado con la clave OpenPGP que vaya a usar para firmar las revisiones (hágalo antes de subir su primera revisión). De esta manera todo el mundo puede enterarse y asegurarse de que controla su clave OpenPGP." #. type: quotation -#: guix-git/doc/contributing.texi:1447 guix-git/doc/guix.texi:17972 +#: guix-git/doc/contributing.texi:1480 guix-git/doc/guix.texi:18334 #, no-wrap msgid "Important" msgstr "Importante" #. type: quotation -#: guix-git/doc/contributing.texi:1449 +#: guix-git/doc/contributing.texi:1482 msgid "Before you can push for the first time, maintainers must:" msgstr "Antes de que suba alguna revisión por primera vez, quienes mantienen Guix deben:" #. type: enumerate -#: guix-git/doc/contributing.texi:1453 +#: guix-git/doc/contributing.texi:1486 msgid "add your OpenPGP key to the @code{keyring} branch;" msgstr "añadir su clave OpenPGP a la rama @code{keyring};" #. type: enumerate -#: guix-git/doc/contributing.texi:1456 +#: guix-git/doc/contributing.texi:1489 msgid "add your OpenPGP fingerprint to the @file{.guix-authorizations} file of the branch(es) you will commit to." msgstr "añadir su firma OpenPGP al archivo @file{.guix-authorizations} de la(s) rama(s) a las que vaya a subir código." # FUZZY #. type: enumerate -#: guix-git/doc/contributing.texi:1461 +#: guix-git/doc/contributing.texi:1494 msgid "Make sure to read the rest of this section and... profit!" msgstr "Asegúrese de leer el resto de esta sección y... ¡a disfrutar!" # FUZZY: track record #. type: quotation -#: guix-git/doc/contributing.texi:1467 +#: guix-git/doc/contributing.texi:1500 msgid "Maintainers are happy to give commit access to people who have been contributing for some time and have a track record---don't be shy and don't underestimate your work!" msgstr "Quienes mantienen el proyecto están encantadas de proporcionar acceso al repositorio a personas que han contribuido durante algún tiempo y tienen buen registro---¡no sea tímida y no subestime su trabajo!" # FUZZY #. type: quotation -#: guix-git/doc/contributing.texi:1471 +#: guix-git/doc/contributing.texi:1504 msgid "However, note that the project is working towards a more automated patch review and merging system, which, as a consequence, may lead us to have fewer people with commit access to the main repository. Stay tuned!" msgstr "No obstante, tenga en cuenta que el proyecto está trabajando hacia la automatización de la revisión de parches y el sistema de mezclas, lo que, como consecuencia, puede hacer necesario que menos gente tenga acceso de escritura al repositorio principal. ¡Seguiremos informando!" #. type: Plain text -#: guix-git/doc/contributing.texi:1478 +#: guix-git/doc/contributing.texi:1511 msgid "All commits that are pushed to the central repository on Savannah must be signed with an OpenPGP key, and the public key should be uploaded to your user account on Savannah and to public key servers, such as @code{keys.openpgp.org}. To configure Git to automatically sign commits, run:" msgstr "Todas las revisiones que se suban al repositorio central de Savannah deben estar firmadas por una clave OpenPGP, y la clave pública debe subirse a su cuenta de usuaria en Savannah y a servidores públicos de claves, como @code{keys.openpgp.org}. Para configurar que Git firme automáticamente las revisiones ejecute:" #. type: example -#: guix-git/doc/contributing.texi:1481 +#: guix-git/doc/contributing.texi:1514 #, no-wrap msgid "" "git config commit.gpgsign true\n" @@ -2300,7 +2342,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1484 +#: guix-git/doc/contributing.texi:1517 #, fuzzy, no-wrap #| msgid "" #| "git config commit.gpgsign true\n" @@ -2314,20 +2356,20 @@ msgstr "" # FUZZY #. type: Plain text -#: guix-git/doc/contributing.texi:1489 +#: guix-git/doc/contributing.texi:1522 #, fuzzy #| msgid "You can prevent yourself from accidentally pushing unsigned commits to Savannah by using the pre-push Git hook called located at @file{etc/git/pre-push}:" msgid "You can prevent yourself from accidentally pushing unsigned commits to Savannah by using the pre-push Git hook located at @file{etc/git/pre-push}:" msgstr "Puede evitar la subida accidental de revisiones sin firma a Savannah mediante el uso del hook pre-push de Git que se encuentra en @file{etc/git/pre-push}:" #. type: example -#: guix-git/doc/contributing.texi:1492 +#: guix-git/doc/contributing.texi:1525 #, no-wrap msgid "cp etc/git/pre-push .git/hooks/pre-push\n" msgstr "cp etc/git/pre-push .git/hooks/pre-push\n" #. type: subsection -#: guix-git/doc/contributing.texi:1494 +#: guix-git/doc/contributing.texi:1527 #, fuzzy, no-wrap #| msgid "Commit Access" msgid "Commit Policy" @@ -2335,340 +2377,340 @@ msgstr "Acceso al repositorio" # FUZZY #. type: Plain text -#: guix-git/doc/contributing.texi:1499 +#: guix-git/doc/contributing.texi:1532 msgid "If you get commit access, please make sure to follow the policy below (discussions of the policy can take place on @email{guix-devel@@gnu.org})." msgstr "Si obtiene acceso, por favor asegúrese de seguir la política descrita a continuación (el debate sobre dicha política puede llevarse a cabo en @email{guix-devel@@gnu.org})." #. type: Plain text -#: guix-git/doc/contributing.texi:1504 +#: guix-git/doc/contributing.texi:1537 msgid "Non-trivial patches should always be posted to @email{guix-patches@@gnu.org} (trivial patches include fixing typos, etc.). This mailing list fills the patch-tracking database (@pxref{Tracking Bugs and Patches})." msgstr "Los parches no triviales deben enviarse siempre a @email{guix-patches@@gnu.org} (los parches triviales incluyen la corrección de errores tipográficos, etcétera). Esta lista de correo rellena la base de datos de seguimiento de parches (@pxref{Tracking Bugs and Patches})." # FUZZY #. type: Plain text -#: guix-git/doc/contributing.texi:1513 +#: guix-git/doc/contributing.texi:1546 msgid "For patches that just add a new package, and a simple one, it's OK to commit, if you're confident (which means you successfully built it in a chroot setup, and have done a reasonable copyright and license auditing). Likewise for package upgrades, except upgrades that trigger a lot of rebuilds (for example, upgrading GnuTLS or GLib). We have a mailing list for commit notifications (@email{guix-commits@@gnu.org}), so people can notice. Before pushing your changes, make sure to run @code{git pull --rebase}." msgstr "Para los parches que únicamente añaden un nuevo paquete, y uno simple, está bien subirlos directamente, si tiene confianza en ello (lo que significa que lo ha construido de manera correcta en un entorno chroot, y ha hecho un auditado razonable de derechos de copia y licencias). Lo mismo puede ser dicho de las actualizaciones de paquetes, excepto actualizaciones que desencadenen muchas reconstrucciones (por ejemplo, la actualización de GnuTLS o GLib). Tenemos una lista de correo para las notificaciones de revisiones (@email{guix-commits@@gnu.org}), de manera que la gente pueda enterarse. Antes de subir los cambios, asegúrese de ejecutar @code{git pull --rebase}." #. type: Plain text -#: guix-git/doc/contributing.texi:1518 +#: guix-git/doc/contributing.texi:1551 msgid "When pushing a commit on behalf of somebody else, please add a @code{Signed-off-by} line at the end of the commit log message---e.g., with @command{git am --signoff}. This improves tracking of who did what." msgstr "Cuando suba un commit en nombre de alguien, por favor añada una línea de @code{Signed-off-by} al final del mensaje de la revisión---por ejemplo con @command{git am --signoff}. Esto mejora el seguimiento sobre quién hizo qué." # FUZZY #. type: Plain text -#: guix-git/doc/contributing.texi:1522 +#: guix-git/doc/contributing.texi:1555 msgid "When adding channel news entries (@pxref{Channels, Writing Channel News}), make sure they are well-formed by running the following command right before pushing:" msgstr "Cuando añada entradas de noticias del canal (@pxref{Channels, Writing Channel News}), compruebe que tienen el formato correcto con la siguiente órden antes de subir los cambios al repositorio:" #. type: example -#: guix-git/doc/contributing.texi:1525 +#: guix-git/doc/contributing.texi:1558 #, no-wrap msgid "make check-channel-news\n" msgstr "make check-channel-news\n" # FUZZY #. type: Plain text -#: guix-git/doc/contributing.texi:1531 +#: guix-git/doc/contributing.texi:1564 msgid "For anything else, please post to @email{guix-patches@@gnu.org} and leave time for a review, without committing anything (@pxref{Submitting Patches}). If you didn’t receive any reply after two weeks, and if you're confident, it's OK to commit." msgstr "Para cualquier otra cosa, envíe un mensaje a @email{guix-patches@@gnu.org} y deje tiempo para que sea revisado, sin subir ningún cambio (@pxref{Submitting Patches}). Si no recibe ninguna respuesta después de dos semanas y tiene confianza en ello, está bien subir el cambio." #. type: Plain text -#: guix-git/doc/contributing.texi:1534 +#: guix-git/doc/contributing.texi:1567 msgid "That last part is subject to being adjusted, allowing individuals to commit directly on non-controversial changes on parts they’re familiar with." msgstr "Esta última parte está sujeta a revisión, para permitir a individualidades que suban cambios que no puedan generar controversia directamente en partes con las que estén familiarizadas." #. type: subsection -#: guix-git/doc/contributing.texi:1535 +#: guix-git/doc/contributing.texi:1568 #, no-wrap msgid "Addressing Issues" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1546 +#: guix-git/doc/contributing.texi:1579 msgid "Peer review (@pxref{Submitting Patches}) and tools such as @command{guix lint} (@pxref{Invoking guix lint}) and the test suite (@pxref{Running the Test Suite}) should catch issues before they are pushed. Yet, commits that ``break'' functionality might occasionally go through. When that happens, there are two priorities: mitigating the impact, and understanding what happened to reduce the chance of similar incidents in the future. The responsibility for both these things primarily lies with those involved, but like everything this is a group effort." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1551 +#: guix-git/doc/contributing.texi:1584 msgid "Some issues can directly affect all users---for instance because they make @command{guix pull} fail or break core functionality, because they break major packages (at build time or run time), or because they introduce known security vulnerabilities." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1552 +#: guix-git/doc/contributing.texi:1585 #, no-wrap msgid "reverting commits" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1558 +#: guix-git/doc/contributing.texi:1591 msgid "The people involved in authoring, reviewing, and pushing such commit(s) should be at the forefront to mitigate their impact in a timely fashion: by pushing a followup commit to fix it (if possible), or by reverting it to leave time to come up with a proper fix, and by communicating with other developers about the problem." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1564 +#: guix-git/doc/contributing.texi:1597 msgid "If these persons are unavailable to address the issue in time, other committers are entitled to revert the commit(s), explaining in the commit log and on the mailing list what the problem was, with the goal of leaving time to the original committer, reviewer(s), and author(s) to propose a way forward." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1573 +#: guix-git/doc/contributing.texi:1606 msgid "Once the problem has been dealt with, it is the responsibility of those involved to make sure the situation is understood. If you are working to understand what happened, focus on gathering information and avoid assigning any blame. Do ask those involved to describe what happened, do not ask them to explain the situation---this would implicitly blame them, which is unhelpful. Accountability comes from a consensus about the problem, learning from it and improving processes so that it's less likely to reoccur." msgstr "" # TODO: (MAAV) Comprobar otras traducciones. #. type: subsection -#: guix-git/doc/contributing.texi:1574 +#: guix-git/doc/contributing.texi:1607 #, fuzzy, no-wrap #| msgid "Log Rotation" msgid "Commit Revocation" msgstr "Rotación del registro de mensajes" #. type: Plain text -#: guix-git/doc/contributing.texi:1581 +#: guix-git/doc/contributing.texi:1614 msgid "In order to reduce the possibility of mistakes, committers will have their Savannah account removed from the Guix Savannah project and their key removed from @file{.guix-authorizations} after 12 months of inactivity; they can ask to regain commit access by emailing the maintainers, without going through the vouching process." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1591 +#: guix-git/doc/contributing.texi:1624 msgid "Maintainers@footnote{See @uref{https://guix.gnu.org/en/about} for the current list of maintainers. You can email them privately at @email{guix-maintainers@@gnu.org}.} may also revoke an individual's commit rights, as a last resort, if cooperation with the rest of the community has caused too much friction---even within the bounds of the project's code of conduct (@pxref{Contributing}). They would only do so after public or private discussion with the individual and a clear notice. Examples of behavior that hinders cooperation and could lead to such a decision include:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1593 +#: guix-git/doc/contributing.texi:1626 #, no-wrap msgid "repeated violation of the commit policy stated above;" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1594 +#: guix-git/doc/contributing.texi:1627 #, no-wrap msgid "repeated failure to take peer criticism into account;" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1595 +#: guix-git/doc/contributing.texi:1628 #, no-wrap msgid "breaching trust through a series of grave incidents." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1602 +#: guix-git/doc/contributing.texi:1635 msgid "When maintainers resort to such a decision, they notify developers on @email{guix-devel@@gnu.org}; inquiries may be sent to @email{guix-maintainers@@gnu.org}. Depending on the situation, the individual may still be welcome to contribute." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1603 +#: guix-git/doc/contributing.texi:1636 #, no-wrap msgid "Helping Out" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1610 +#: guix-git/doc/contributing.texi:1643 msgid "One last thing: the project keeps moving forward because committers not only push their own awesome changes, but also offer some of their time @emph{reviewing} and pushing other people's changes. As a committer, you're welcome to use your expertise and commit rights to help other contributors, too!" msgstr "Una última cosa: el proyecto sigue adelante porque las contribuidoras no solo suben sus cambios, sino que también ofrecen su tiempo @emph{revisando} y subiendo cambios de otras personas. Como contribuidora, también se agradece que use su experiencia y derechos de escritura en el repositorio para ayudar a otras personas que quieren contribuir." #. type: cindex -#: guix-git/doc/contributing.texi:1614 +#: guix-git/doc/contributing.texi:1647 #, no-wrap msgid "update-guix-package, updating the guix package" msgstr "update-guix-package, actualización del paquete guix" #. type: Plain text -#: guix-git/doc/contributing.texi:1620 +#: guix-git/doc/contributing.texi:1653 msgid "It is sometimes desirable to update the @code{guix} package itself (the package defined in @code{(gnu packages package-management)}), for example to make new daemon features available for use by the @code{guix-service-type} service type. In order to simplify this task, the following command can be used:" msgstr "A veces es deseable actualizar el propio paquete @code{guix} (el paquete definido en @code{(gnu packages package-management)}, por ejemplo para poner a disposición del tipo de servicio @code{guix-service-type} nuevas características disponibles en el daemon. Para simplificar esta tarea se puede usar la siguiente orden:" #. type: example -#: guix-git/doc/contributing.texi:1623 +#: guix-git/doc/contributing.texi:1656 #, no-wrap msgid "make update-guix-package\n" msgstr "make update-guix-package\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1630 +#: guix-git/doc/contributing.texi:1663 msgid "The @code{update-guix-package} make target will use the last known @emph{commit} corresponding to @code{HEAD} in your Guix checkout, compute the hash of the Guix sources corresponding to that commit and update the @code{commit}, @code{revision} and hash of the @code{guix} package definition." msgstr "El objetivo de make @code{update-guix-package} usa la última @emph{revisión} (commit en inglés) de @code{HEAD} en su copia local de Guix, calcula el hash correspondiente a las fuentes de Guix en dicho commit y actualiza los campos @code{commit}, @code{revision} y el hash de la definción del paquete @code{guix}." #. type: Plain text -#: guix-git/doc/contributing.texi:1634 +#: guix-git/doc/contributing.texi:1667 msgid "To validate that the updated @code{guix} package hashes are correct and that it can be built successfully, the following command can be run from the directory of your Guix checkout:" msgstr "Para validar que la actualización del hash del paquete @code{guix} es correcta y que se puede construir de manera satisfactoria se puede ejecutar la siguiente orden en el directorio de su copia de trabajo local de Guix:" #. type: example -#: guix-git/doc/contributing.texi:1637 +#: guix-git/doc/contributing.texi:1670 #, no-wrap msgid "./pre-inst-env guix build guix\n" msgstr "./pre-inst-env guix build guix\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1642 +#: guix-git/doc/contributing.texi:1675 msgid "To guard against accidentally updating the @code{guix} package to a commit that others can't refer to, a check is made that the commit used has already been pushed to the Savannah-hosted Guix git repository." msgstr "Para prevenir de actualizaciones accidentales del paquete @code{guix} a una revisión a la que otras personas no puedan hacer referencia se comprueba que dicha revisión se haya publicado ya en el repositorio git de Guix alojado en Savannah." #. type: Plain text -#: guix-git/doc/contributing.texi:1647 +#: guix-git/doc/contributing.texi:1680 #, fuzzy msgid "This check can be disabled, @emph{at your own peril}, by setting the @code{GUIX_ALLOW_ME_TO_USE_PRIVATE_COMMIT} environment variable. When this variable is set, the updated package source is also added to the store. This is used as part of the release process of Guix." msgstr "Esta comprobación se puede desactivar, @emph{bajo su cuenta y riesgo}, declarando la variable de entorno @code{GUIX_ALLOW_ME_TO_USE_PRIVATE_COMMIT}." #. type: cindex -#: guix-git/doc/contributing.texi:1648 +#: guix-git/doc/contributing.texi:1681 #, fuzzy, no-wrap #| msgid "transactions" msgid "translation" msgstr "transacciones" #. type: cindex -#: guix-git/doc/contributing.texi:1649 +#: guix-git/doc/contributing.texi:1682 #, no-wrap msgid "l10n" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1650 +#: guix-git/doc/contributing.texi:1683 #, no-wrap msgid "i18n" msgstr "" # FUZZY #. type: cindex -#: guix-git/doc/contributing.texi:1651 +#: guix-git/doc/contributing.texi:1684 #, fuzzy, no-wrap #| msgid "Working with languages supported by GCC." msgid "native language support" msgstr "Trabajo con lenguajes implementados por GCC." #. type: Plain text -#: guix-git/doc/contributing.texi:1661 +#: guix-git/doc/contributing.texi:1694 msgid "Writing code and packages is not the only way to provide a meaningful contribution to Guix. Translating to a language you speak is another example of a valuable contribution you can make. This section is designed to describe the translation process. It gives you advice on how you can get involved, what can be translated, what mistakes you should avoid and what we can do to help you!" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1667 +#: guix-git/doc/contributing.texi:1700 msgid "Guix is a big project that has multiple components that can be translated. We coordinate the translation effort on a @uref{https://translate.fedoraproject.org/projects/guix/,Weblate instance} hosted by our friends at Fedora. You will need an account to submit translations." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1674 +#: guix-git/doc/contributing.texi:1707 msgid "Some of the software packaged in Guix also contain translations. We do not host a translation platform for them. If you want to translate a package provided by Guix, you should contact their developers or find the information on their website. As an example, you can find the homepage of the @code{hello} package by typing @code{guix show hello}. On the ``homepage'' line, you will see @url{https://www.gnu.org/software/hello/} as the homepage." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1679 +#: guix-git/doc/contributing.texi:1712 msgid "Many GNU and non-GNU packages can be translated on the @uref{https://translationproject.org,Translation Project}. Some projects with multiple components have their own platform. For instance, GNOME has its own platform, @uref{https://l10n.gnome.org/,Damned Lies}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1681 +#: guix-git/doc/contributing.texi:1714 msgid "Guix has five components hosted on Weblate." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1683 +#: guix-git/doc/contributing.texi:1716 #, no-wrap msgid "@code{guix} contains all the strings from the Guix software (the" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1718 msgid "guided system installer, the package manager, etc), excluding packages." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1718 #, no-wrap msgid "@code{packages} contains the synopsis (single-sentence description" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1687 +#: guix-git/doc/contributing.texi:1720 msgid "of a package) and description (longer description) of packages in Guix." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1687 +#: guix-git/doc/contributing.texi:1720 #, no-wrap msgid "@code{website} contains the official Guix website, except for" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1689 +#: guix-git/doc/contributing.texi:1722 msgid "blog posts and multimedia content." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1689 +#: guix-git/doc/contributing.texi:1722 #, no-wrap msgid "@code{documentation-manual} corresponds to this manual." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1690 +#: guix-git/doc/contributing.texi:1723 #, no-wrap msgid "@code{documentation-cookbook} is the component for the cookbook." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1693 +#: guix-git/doc/contributing.texi:1726 #, fuzzy, no-wrap #| msgid "generations" msgid "General Directions" msgstr "generaciones" #. type: Plain text -#: guix-git/doc/contributing.texi:1701 +#: guix-git/doc/contributing.texi:1734 msgid "Once you get an account, you should be able to select a component from @uref{https://translate.fedoraproject.org/projects/guix/,the guix project}, and select a language. If your language does not appear in the list, go to the bottom and click on the ``Start new translation'' button. Select the language you want to translate to from the list, to start your new translation." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1706 +#: guix-git/doc/contributing.texi:1739 msgid "Like lots of other free software packages, Guix uses @uref{https://www.gnu.org/software/gettext,GNU Gettext} for its translations, with which translatable strings are extracted from the source code to so-called PO files." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1717 +#: guix-git/doc/contributing.texi:1750 msgid "Even though PO files are text files, changes should not be made with a text editor but with PO editing software. Weblate integrates PO editing functionality. Alternatively, translators can use any of various free-software tools for filling in translations, of which @uref{https://poedit.net/,Poedit} is one example, and (after logging in) @uref{https://docs.weblate.org/en/latest/user/files.html,upload} the changed file. There is also a special @uref{https://www.emacswiki.org/emacs/PoMode,PO editing mode} for users of GNU Emacs. Over time translators find out what software they are happy with and what features they need." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1722 +#: guix-git/doc/contributing.texi:1755 msgid "On Weblate, you will find various links to the editor, that will show various subsets (or all) of the strings. Have a look around and at the @uref{https://docs.weblate.org/en/latest/,documentation} to familiarize yourself with the platform." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1723 +#: guix-git/doc/contributing.texi:1756 #, no-wrap msgid "Translation Components" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1728 +#: guix-git/doc/contributing.texi:1761 msgid "In this section, we provide more detailed guidance on the translation process, as well as details on what you should or should not do. When in doubt, please contact us, we will be happy to help!" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1730 guix-git/doc/guix.texi:9420 +#: guix-git/doc/contributing.texi:1763 guix-git/doc/guix.texi:9734 #, no-wrap msgid "guix" msgstr "guix" #. type: table -#: guix-git/doc/contributing.texi:1735 +#: guix-git/doc/contributing.texi:1768 msgid "Guix is written in the Guile programming language, and some strings contain special formatting that is interpreted by Guile. These special formatting should be highlighted by Weblate. They start with @code{~} followed by one or more characters." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1744 +#: guix-git/doc/contributing.texi:1777 msgid "When printing the string, Guile replaces the special formatting symbols with actual values. For instance, the string @samp{ambiguous package specification `~a'} would be substituted to contain said package specification instead of @code{~a}. To properly translate this string, you must keep the formatting code in your translation, although you can place it where it makes sense in your language. For instance, the French translation says @samp{spécification du paquet « ~a » ambiguë} because the adjective needs to be placed in the end of the sentence." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1748 +#: guix-git/doc/contributing.texi:1781 msgid "If there are multiple formatting symbols, make sure to respect the order. Guile does not know in which order you intended the string to be read, so it will substitute the symbols in the same order as the English sentence." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1756 +#: guix-git/doc/contributing.texi:1789 msgid "As an example, you cannot translate @samp{package '~a' has been superseded by '~a'} by @samp{'~a' superseeds package '~a'}, because the meaning would be reversed. If @var{foo} is superseded by @var{bar}, the translation would read @samp{'foo' superseeds package 'bar'}. To work around this problem, it is possible to use more advanced formatting to select a given piece of data, instead of following the default English order. @xref{Formatted Output,,, guile, GNU Guile Reference Manual}, for more information on formatting in Guile." msgstr "" @@ -2676,100 +2718,100 @@ msgstr "" #. type: item #. #-#-#-#-# guix.pot (guix manual checkout) #-#-#-#-# #. type: cindex -#: guix-git/doc/contributing.texi:1757 guix-git/doc/guix.texi:2988 +#: guix-git/doc/contributing.texi:1790 guix-git/doc/guix.texi:3005 #, no-wrap msgid "packages" msgstr "paquetes" #. type: table -#: guix-git/doc/contributing.texi:1762 +#: guix-git/doc/contributing.texi:1795 msgid "Package descriptions occasionally contain Texinfo markup (@pxref{Synopses and Descriptions}). Texinfo markup looks like @samp{@@code@{rm -rf@}}, @samp{@@emph@{important@}}, etc. When translating, please leave markup as is." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1771 +#: guix-git/doc/contributing.texi:1804 msgid "The characters after ``@@'' form the name of the markup, and the text between ``@{'' and ``@}'' is its content. In general, you should not translate the content of markup like @code{@@code}, as it contains literal code that do not change with language. You can translate the content of formatting markup such as @code{@@emph}, @code{@@i}, @code{@@itemize}, @code{@@item}. However, do not translate the name of the markup, or it will not be recognized. Do not translate the word after @code{@@end}, it is the name of the markup that is closed at this position (e.g.@: @code{@@itemize ... @@end itemize})." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1772 +#: guix-git/doc/contributing.texi:1805 #, no-wrap msgid "documentation-manual and documentation-cookbook" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1776 +#: guix-git/doc/contributing.texi:1809 msgid "The first step to ensure a successful translation of the manual is to find and translate the following strings @emph{first}:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1778 +#: guix-git/doc/contributing.texi:1811 #, no-wrap msgid "@code{version.texi}: Translate this string as @code{version-xx.texi}," msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1781 +#: guix-git/doc/contributing.texi:1814 msgid "where @code{xx} is your language code (the one shown in the URL on weblate)." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1781 +#: guix-git/doc/contributing.texi:1814 #, fuzzy, no-wrap #| msgid "{@code{nslcd-configuration} parameter} string base" msgid "@code{contributing.texi}: Translate this string as" msgstr "{parámetro de @code{nslcd-configuration}} string base" #. type: itemize -#: guix-git/doc/contributing.texi:1783 +#: guix-git/doc/contributing.texi:1816 msgid "@code{contributing.xx.texi}, where @code{xx} is the same language code." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1783 +#: guix-git/doc/contributing.texi:1816 #, no-wrap msgid "@code{Top}: Do not translate this string, it is important for Texinfo." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1786 +#: guix-git/doc/contributing.texi:1819 msgid "If you translate it, the document will be empty (missing a Top node). Please look for it, and register @code{Top} as its translation." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1791 +#: guix-git/doc/contributing.texi:1824 msgid "Translating these strings first ensure we can include your translation in the guix repository without breaking the make process or the @command{guix pull} machinery." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1798 +#: guix-git/doc/contributing.texi:1831 msgid "The manual and the cookbook both use Texinfo. As for @code{packages}, please keep Texinfo markup as is. There are more possible markup types in the manual than in the package descriptions. In general, do not translate the content of @code{@@code}, @code{@@file}, @code{@@var}, @code{@@value}, etc. You should translate the content of formatting markup such as @code{@@emph}, @code{@@i}, etc." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1806 +#: guix-git/doc/contributing.texi:1839 msgid "The manual contains sections that can be referred to by name by @code{@@ref}, @code{@@xref} and @code{@@pxref}. We have a mechanism in place so you do not have to translate their content. If you keep the English title, we will automatically replace it with your translation of that title. This ensures that Texinfo will always be able to find the node. If you decide to change the translation of the title, the references will automatically be updated and you will not have to update them all yourself." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1816 +#: guix-git/doc/contributing.texi:1849 msgid "When translating references from the cookbook to the manual, you need to replace the name of the manual and the name of the section. For instance, to translate @code{@@pxref@{Defining Packages,,, guix, GNU Guix Reference Manual@}}, you would replace @code{Defining Packages} with the title of that section in the translated manual @emph{only} if that title is translated. If the title is not translated in your language yet, do not translate it here, or the link will be broken. Replace @code{guix} with @code{guix.xx} where @code{xx} is your language code. @code{GNU Guix Reference Manual} is the text of the link. You can translate it however you wish." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1817 +#: guix-git/doc/contributing.texi:1850 #, fuzzy, no-wrap #| msgid "official website" msgid "website" msgstr "sitio web oficial" #. type: table -#: guix-git/doc/contributing.texi:1824 +#: guix-git/doc/contributing.texi:1857 msgid "The website pages are written using SXML, an s-expression version of HTML, the basic language of the web. We have a process to extract translatable strings from the source, and replace complex s-expressions with a more familiar XML markup, where each markup is numbered. Translators can arbitrarily change the ordering, as in the following example." msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1831 +#: guix-git/doc/contributing.texi:1864 #, no-wrap msgid "" "#. TRANSLATORS: Defining Packages is a section name\n" @@ -2780,140 +2822,140 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1834 +#: guix-git/doc/contributing.texi:1867 msgid "Note that you need to include the same markups. You cannot skip any." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1842 +#: guix-git/doc/contributing.texi:1875 msgid "In case you make a mistake, the component might fail to build properly with your language, or even make guix pull fail. To prevent that, we have a process in place to check the content of the files before pushing to our repository. We will not be able to update the translation for your language in Guix, so we will notify you (through weblate and/or by email) so you get a chance to fix the issue." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1843 +#: guix-git/doc/contributing.texi:1876 #, no-wrap msgid "Outside of Weblate" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1846 +#: guix-git/doc/contributing.texi:1879 msgid "Currently, some parts of Guix cannot be translated on Weblate, help wanted!" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1848 +#: guix-git/doc/contributing.texi:1881 #, no-wrap msgid "@command{guix pull} news can be translated in @file{news.scm}, but is not" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1854 +#: guix-git/doc/contributing.texi:1887 msgid "available from Weblate. If you want to provide a translation, you can prepare a patch as described above, or simply send us your translation with the name of the news entry you translated and your language. @xref{Writing Channel News}, for more information about channel news." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1854 +#: guix-git/doc/contributing.texi:1887 #, no-wrap msgid "Guix blog posts cannot currently be translated." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1855 +#: guix-git/doc/contributing.texi:1888 #, no-wrap msgid "The installer script (for foreign distributions) is entirely in English." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1856 +#: guix-git/doc/contributing.texi:1889 #, no-wrap msgid "Some of the libraries Guix uses cannot be translated or are translated" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1858 +#: guix-git/doc/contributing.texi:1891 msgid "outside of the Guix project. Guile itself is not internationalized." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1858 +#: guix-git/doc/contributing.texi:1891 #, no-wrap msgid "Other manuals linked from this manual or the cookbook might not be" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1860 +#: guix-git/doc/contributing.texi:1893 #, fuzzy #| msgid "transitive" msgid "translated." msgstr "transitive" #. type: subsubheading -#: guix-git/doc/contributing.texi:1862 +#: guix-git/doc/contributing.texi:1895 #, no-wrap msgid "Translation Infrastructure" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1873 +#: guix-git/doc/contributing.texi:1906 msgid "Weblate is backed by a git repository from which it discovers new strings to translate and pushes new and updated translations. Normally, it would be enough to give it commit access to our repositories. However, we decided to use a separate repository for two reasons. First, we would have to give Weblate commit access and authorize its signing key, but we do not trust it in the same way we trust guix developers, especially since we do not manage the instance ourselves. Second, if translators mess something up, it can break the generation of the website and/or guix pull for all our users, independently of their language." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1877 +#: guix-git/doc/contributing.texi:1910 msgid "For these reasons, we use a dedicated repository to host translations, and we synchronize it with our guix and artworks repositories after checking no issue was introduced in the translation." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1883 +#: guix-git/doc/contributing.texi:1916 msgid "Developers can download the latest PO files from weblate in the Guix repository by running the @command{make download-po} command. It will automatically download the latest files from weblate, reformat them to a canonical form, and check they do not contain issues. The manual needs to be built again to check for additional issues that might crash Texinfo." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1887 +#: guix-git/doc/contributing.texi:1920 msgid "Before pushing new translation files, developers should add them to the make machinery so the translations are actually available. The process differs for the various components." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1889 +#: guix-git/doc/contributing.texi:1922 #, no-wrap msgid "New po files for the @code{guix} and @code{packages} components must" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1892 +#: guix-git/doc/contributing.texi:1925 msgid "be registered by adding the new language to @file{po/guix/LINGUAS} or @file{po/packages/LINGUAS}." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1892 +#: guix-git/doc/contributing.texi:1925 #, no-wrap msgid "New po files for the @code{documentation-manual} component must be" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1898 +#: guix-git/doc/contributing.texi:1931 msgid "registered by adding the file name to @code{DOC_PO_FILES} in @file{po/doc/local.mk}, the generated @file{%D%/guix.xx.texi} manual to @code{info_TEXINFOS} in @file{doc/local.mk} and the generated @file{%D%/guix.xx.texi} and @file{%D%/contributing.xx.texi} to @code{TRANSLATED_INFO} also in @file{doc/local.mk}." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1898 +#: guix-git/doc/contributing.texi:1931 #, no-wrap msgid "New po files for the @code{documentation-cookbook} component must be" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1904 +#: guix-git/doc/contributing.texi:1937 msgid "registered by adding the file name to @code{DOC_COOKBOOK_PO_FILES} in @file{po/doc/local.mk}, the generated @file{%D%/guix-cookbook.xx.texi} manual to @code{info_TEXINFOS} in @file{doc/local.mk} and the generated @file{%D%/guix-cookbook.xx.texi} to @code{TRANSLATED_INFO} also in @file{doc/local.mk}." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1904 +#: guix-git/doc/contributing.texi:1937 #, no-wrap msgid "New po files for the @code{website} component must be added to the" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1909 +#: guix-git/doc/contributing.texi:1942 msgid "@code{guix-artwork} repository, in @file{website/po/}. @file{website/po/LINGUAS} and @file{website/po/ietf-tags.scm} must be updated accordingly (see @file{website/i18n-howto.txt} for more information on the process)." msgstr "" @@ -2937,7 +2979,7 @@ msgstr "version-es.texi" #. type: copying #: guix-git/doc/guix.texi:103 #, fuzzy -msgid "Copyright @copyright{} 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" +msgid "Copyright @copyright{} 2012-2022 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021, 2022 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021, 2022 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021, 2022 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021, 2022 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" msgstr "" "Copyright @copyright{} 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès@*\n" "Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@*\n" @@ -3169,7 +3211,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:192 -#: guix-git/doc/guix.texi:402 guix-git/doc/guix.texi:403 +#: guix-git/doc/guix.texi:403 guix-git/doc/guix.texi:404 #, no-wrap msgid "Introduction" msgstr "Introducción" @@ -3181,7 +3223,7 @@ msgstr "¿Qué es esto de Guix?" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:197 -#: guix-git/doc/guix.texi:589 guix-git/doc/guix.texi:590 +#: guix-git/doc/guix.texi:600 guix-git/doc/guix.texi:601 #, no-wrap msgid "Installation" msgstr "Instalación" @@ -3193,7 +3235,7 @@ msgstr "Instalar Guix." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:213 -#: guix-git/doc/guix.texi:2049 guix-git/doc/guix.texi:2050 +#: guix-git/doc/guix.texi:2066 guix-git/doc/guix.texi:2067 #, no-wrap msgid "System Installation" msgstr "Instalación del sistema" @@ -3204,8 +3246,8 @@ msgid "Installing the whole operating system." msgstr "Instalar el sistema operativo completo." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:2777 -#: guix-git/doc/guix.texi:2778 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:2794 +#: guix-git/doc/guix.texi:2795 #, no-wrap msgid "Getting Started" msgstr "Empezando" @@ -3217,7 +3259,7 @@ msgstr "Sus primeros pasos." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:230 -#: guix-git/doc/guix.texi:2985 guix-git/doc/guix.texi:2986 +#: guix-git/doc/guix.texi:3002 guix-git/doc/guix.texi:3003 #, no-wrap msgid "Package Management" msgstr "Gestión de paquetes" @@ -3229,7 +3271,7 @@ msgstr "Instalación de paquetes, actualización, etc." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:253 -#: guix-git/doc/guix.texi:5053 guix-git/doc/guix.texi:5054 +#: guix-git/doc/guix.texi:5071 guix-git/doc/guix.texi:5072 #, no-wrap msgid "Channels" msgstr "Canales" @@ -3241,7 +3283,7 @@ msgstr "Personalizar el recolector de basura." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:267 -#: guix-git/doc/guix.texi:5581 guix-git/doc/guix.texi:5582 +#: guix-git/doc/guix.texi:5599 guix-git/doc/guix.texi:5600 #, no-wrap msgid "Development" msgstr "Desarrollo" @@ -3253,7 +3295,7 @@ msgstr "Desarrollo de software asistido por Guix." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:275 -#: guix-git/doc/guix.texi:6799 guix-git/doc/guix.texi:6800 +#: guix-git/doc/guix.texi:6842 guix-git/doc/guix.texi:6843 #, no-wrap msgid "Programming Interface" msgstr "Interfaz programática" @@ -3264,8 +3306,8 @@ msgid "Using Guix in Scheme." msgstr "Uso de Guix en Scheme." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:294 -#: guix-git/doc/guix.texi:10774 guix-git/doc/guix.texi:10775 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:295 +#: guix-git/doc/guix.texi:11088 guix-git/doc/guix.texi:11089 #, no-wrap msgid "Utilities" msgstr "Utilidades" @@ -3276,8 +3318,8 @@ msgid "Package management commands." msgstr "Órdenes de gestión de paquetes." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:320 -#: guix-git/doc/guix.texi:14278 guix-git/doc/guix.texi:14279 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:321 +#: guix-git/doc/guix.texi:14635 guix-git/doc/guix.texi:14636 #, no-wrap msgid "System Configuration" msgstr "Configuración del sistema" @@ -3288,8 +3330,8 @@ msgid "Configuring the operating system." msgstr "Configurar el sistema operativo." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:36881 -#: guix-git/doc/guix.texi:36882 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37371 +#: guix-git/doc/guix.texi:37372 #, fuzzy, no-wrap #| msgid "System Configuration" msgid "Home Configuration" @@ -3303,8 +3345,8 @@ msgid "Configuring the home environment." msgstr "Configurar el gestor de arranque." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37721 -#: guix-git/doc/guix.texi:37722 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38210 +#: guix-git/doc/guix.texi:38211 #, no-wrap msgid "Documentation" msgstr "Documentación" @@ -3315,8 +3357,8 @@ msgid "Browsing software user manuals." msgstr "Navegar por los manuales de usuaria del software." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:389 -#: guix-git/doc/guix.texi:37787 guix-git/doc/guix.texi:37788 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:390 +#: guix-git/doc/guix.texi:38276 guix-git/doc/guix.texi:38277 #, no-wrap msgid "Installing Debugging Files" msgstr "Instalación de archivos de depuración" @@ -3327,8 +3369,8 @@ msgid "Feeding the debugger." msgstr "Alimentación del depurador." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37942 -#: guix-git/doc/guix.texi:37943 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38431 +#: guix-git/doc/guix.texi:38432 #, no-wrap msgid "Security Updates" msgstr "Actualizaciones de seguridad" @@ -3339,8 +3381,8 @@ msgid "Deploying security fixes quickly." msgstr "Desplegar correcciones de seguridad rápidamente." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:394 -#: guix-git/doc/guix.texi:38057 guix-git/doc/guix.texi:38058 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:395 +#: guix-git/doc/guix.texi:38546 guix-git/doc/guix.texi:38547 #, no-wrap msgid "Bootstrapping" msgstr "Lanzamiento inicial" @@ -3352,7 +3394,7 @@ msgstr "GNU/Linux construido de cero." # TODO: (MAAV) A mejorar #. type: node -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38349 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38838 #, no-wrap msgid "Porting" msgstr "Transportar" @@ -3369,8 +3411,8 @@ msgid "Your help needed!" msgstr "¡Se necesita su ayuda!" #. type: chapter -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38397 -#: guix-git/doc/guix.texi:38398 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38886 +#: guix-git/doc/guix.texi:38887 #, no-wrap msgid "Acknowledgments" msgstr "Reconocimientos" @@ -3381,8 +3423,8 @@ msgid "Thanks!" msgstr "¡Gracias!" #. type: appendix -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38419 -#: guix-git/doc/guix.texi:38420 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38908 +#: guix-git/doc/guix.texi:38909 #, no-wrap msgid "GNU Free Documentation License" msgstr "Licencia de documentación libre GNU" @@ -3393,8 +3435,8 @@ msgid "The license of this manual." msgstr "La licencia de este manual." #. type: unnumbered -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38425 -#: guix-git/doc/guix.texi:38426 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38914 +#: guix-git/doc/guix.texi:38915 #, no-wrap msgid "Concept Index" msgstr "Índice de conceptos" @@ -3405,8 +3447,8 @@ msgid "Concepts." msgstr "Conceptos." #. type: unnumbered -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38429 -#: guix-git/doc/guix.texi:38430 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38918 +#: guix-git/doc/guix.texi:38919 #, no-wrap msgid "Programming Index" msgstr "Índice programático" @@ -3422,487 +3464,487 @@ msgid "--- The Detailed Node Listing ---" msgstr "--- La lista detallada de nodos ---" #. type: section -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 -#: guix-git/doc/guix.texi:431 guix-git/doc/guix.texi:432 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 +#: guix-git/doc/guix.texi:432 guix-git/doc/guix.texi:433 #, no-wrap msgid "Managing Software the Guix Way" msgstr "Gestión de software con Guix" #. type: menuentry -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 msgid "What's special." msgstr "Qué es especial." #. type: section -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 -#: guix-git/doc/guix.texi:486 guix-git/doc/guix.texi:487 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 +#: guix-git/doc/guix.texi:487 guix-git/doc/guix.texi:488 #, no-wrap msgid "GNU Distribution" msgstr "Distribución GNU" #. type: menuentry -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 msgid "The packages and tools." msgstr "Los paquetes y herramientas." #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:631 guix-git/doc/guix.texi:632 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:642 guix-git/doc/guix.texi:643 #, no-wrap msgid "Binary Installation" msgstr "Instalación binaria" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Getting Guix running in no time!" msgstr "¡Poner Guix en funcionamiento en nada de tiempo!" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:871 guix-git/doc/guix.texi:872 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:882 guix-git/doc/guix.texi:883 #, no-wrap msgid "Requirements" msgstr "Requisitos" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Software needed to build and run Guix." msgstr "Software necesario para construir y ejecutar Guix." #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:957 guix-git/doc/guix.texi:958 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:969 guix-git/doc/guix.texi:970 #, no-wrap msgid "Running the Test Suite" msgstr "Ejecución de la batería de pruebas" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Testing Guix." msgstr "Probar Guix." #. type: section #: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:207 -#: guix-git/doc/guix.texi:629 guix-git/doc/guix.texi:1054 -#: guix-git/doc/guix.texi:1055 +#: guix-git/doc/guix.texi:640 guix-git/doc/guix.texi:1066 +#: guix-git/doc/guix.texi:1067 #, no-wrap msgid "Setting Up the Daemon" msgstr "Preparación del daemon" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Preparing the build daemon's environment." msgstr "Preparar el entorno del daemon de construcción." #. type: node -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:1525 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:1542 #, no-wrap msgid "Invoking guix-daemon" msgstr "Invocación de guix-daemon" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Running the build daemon." msgstr "Ejecutar el daemon de construcción." #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:1827 guix-git/doc/guix.texi:1828 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:1844 guix-git/doc/guix.texi:1845 #, no-wrap msgid "Application Setup" msgstr "Configuración de la aplicación" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Application-specific setup." msgstr "Configuración específica de la aplicación." #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:2012 guix-git/doc/guix.texi:2013 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:2029 guix-git/doc/guix.texi:2030 #, no-wrap msgid "Upgrading Guix" msgstr "Actualizar Guix" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Upgrading Guix and its build daemon." msgstr "Actualizar Guix y su daemon de construcción." #. type: subsection -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1076 guix-git/doc/guix.texi:1077 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1088 guix-git/doc/guix.texi:1089 #, no-wrap msgid "Build Environment Setup" msgstr "Configuración del entorno de construcción" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Preparing the isolated build environment." msgstr "Preparar el entorno aislado de construcción." #. type: node -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1195 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1212 #, no-wrap msgid "Daemon Offload Setup" msgstr "Configuración de delegación del daemon" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Offloading builds to remote machines." msgstr "Delegar construcciones a máquinas remotas." #. type: subsection -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1434 guix-git/doc/guix.texi:1435 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1451 guix-git/doc/guix.texi:1452 #, no-wrap msgid "SELinux Support" msgstr "Soporte de SELinux" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Using an SELinux policy for the daemon." msgstr "Uso de una política SELinux para el daemon." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:1470 -#: guix-git/doc/guix.texi:2083 guix-git/doc/guix.texi:2085 -#: guix-git/doc/guix.texi:2086 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:1487 +#: guix-git/doc/guix.texi:2100 guix-git/doc/guix.texi:2102 +#: guix-git/doc/guix.texi:2103 #, no-wrap msgid "Limitations" msgstr "Limitaciones" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "What you can expect." msgstr "Qué puede esperar." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2111 guix-git/doc/guix.texi:2112 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2128 guix-git/doc/guix.texi:2129 #, no-wrap msgid "Hardware Considerations" msgstr "Consideraciones sobre el hardware" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Supported hardware." msgstr "Hardware soportado." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2146 guix-git/doc/guix.texi:2147 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2163 guix-git/doc/guix.texi:2164 #, no-wrap msgid "USB Stick and DVD Installation" msgstr "Instalación desde memoria USB y DVD" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Preparing the installation medium." msgstr "Preparar el medio de instalación." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2227 guix-git/doc/guix.texi:2228 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2244 guix-git/doc/guix.texi:2245 #, no-wrap msgid "Preparing for Installation" msgstr "Preparación para la instalación" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Networking, partitioning, etc." msgstr "Red, particionado, etc." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2250 guix-git/doc/guix.texi:2251 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2267 guix-git/doc/guix.texi:2268 #, no-wrap msgid "Guided Graphical Installation" msgstr "Instalación gráfica guiada" # TODO: Easy... #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Easy graphical installation." msgstr "Instalación gráfica fácil." #. type: section #: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:225 -#: guix-git/doc/guix.texi:2083 guix-git/doc/guix.texi:2281 -#: guix-git/doc/guix.texi:2282 +#: guix-git/doc/guix.texi:2100 guix-git/doc/guix.texi:2298 +#: guix-git/doc/guix.texi:2299 #, no-wrap msgid "Manual Installation" msgstr "Instalación manual" # FUZZY #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Manual installation for wizards." msgstr "Instalación manual para artistas del teclado." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2660 guix-git/doc/guix.texi:2661 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2677 guix-git/doc/guix.texi:2678 #, no-wrap msgid "After System Installation" msgstr "Tras la instalación del sistema" # FUZZY #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "When installation succeeded." msgstr "Cuando la instalación ha finalizado satisfactoriamente." #. type: node -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2694 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2711 #, no-wrap msgid "Installing Guix in a VM" msgstr "Instalación de Guix en una máquina virtual" # (MAAV): ¿Patio de recreo es internacional? #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Guix System playground." msgstr "El patio de recreo del sistema Guix." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2745 guix-git/doc/guix.texi:2746 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2762 guix-git/doc/guix.texi:2763 #, no-wrap msgid "Building the Installation Image" msgstr "Construcción de la imagen de instalación" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "How this comes to be." msgstr "Cómo esto llega a ser." # FUZZY #. type: node -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 -#: guix-git/doc/guix.texi:2301 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 +#: guix-git/doc/guix.texi:2318 #, no-wrap msgid "Keyboard Layout and Networking and Partitioning" msgstr "Distribución de teclado y red y particionado" #. type: menuentry -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 msgid "Initial setup." msgstr "Configuración inicial." #. type: subsection -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 -#: guix-git/doc/guix.texi:2571 guix-git/doc/guix.texi:2572 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 +#: guix-git/doc/guix.texi:2588 guix-git/doc/guix.texi:2589 #, no-wrap msgid "Proceeding with the Installation" msgstr "Procedimiento de instalación" #. type: menuentry -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 msgid "Installing." msgstr "Instalación." #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:3019 guix-git/doc/guix.texi:3020 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3036 guix-git/doc/guix.texi:3037 #, no-wrap msgid "Features" msgstr "Características" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "How Guix will make your life brighter." msgstr "Cómo Guix dará brillo a su vida." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:3109 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3126 #, no-wrap msgid "Invoking guix package" msgstr "Invocación de guix package" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Package installation, removal, etc." msgstr "Instalación de paquetes, borrado, etc." #. type: section #: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:243 -#: guix-git/doc/guix.texi:3017 guix-git/doc/guix.texi:3738 -#: guix-git/doc/guix.texi:3739 +#: guix-git/doc/guix.texi:3034 guix-git/doc/guix.texi:3756 +#: guix-git/doc/guix.texi:3757 #, no-wrap msgid "Substitutes" msgstr "Sustituciones" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Downloading pre-built binaries." msgstr "Descargar binarios pre-construidos." #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4074 guix-git/doc/guix.texi:4075 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4092 guix-git/doc/guix.texi:4093 #, no-wrap msgid "Packages with Multiple Outputs" msgstr "Paquetes con múltiples salidas" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Single source package, multiple outputs." msgstr "Un único paquete de fuentes, múltiples salidas." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4128 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4146 #, no-wrap msgid "Invoking guix gc" msgstr "Invocación de guix gc" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Running the garbage collector." msgstr "Ejecutar el recolector de basura." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4338 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4356 #, no-wrap msgid "Invoking guix pull" msgstr "Invocación de guix pull" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Fetching the latest Guix and distribution." msgstr "Obtener la última versión de Guix y la distribución." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4585 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4603 #, no-wrap msgid "Invoking guix time-machine" msgstr "Invocación de guix time-machine" # FUZZY #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Running an older revision of Guix." msgstr "Ejecutar una versión antigua de Guix." #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4640 guix-git/doc/guix.texi:4641 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4658 guix-git/doc/guix.texi:4659 #, no-wrap msgid "Inferiors" msgstr "Inferiores" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Interacting with another revision of Guix." msgstr "Interactuar con otra revisión de Guix." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4768 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4786 #, no-wrap msgid "Invoking guix describe" msgstr "Invocación de guix describe" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Display information about your Guix revision." msgstr "Muestra información acerca de su revisión de Guix." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4863 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4881 #, no-wrap msgid "Invoking guix archive" msgstr "Invocación de guix archive" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Exporting and importing store files." msgstr "Exportar e importar archivos del almacén." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3764 guix-git/doc/guix.texi:3765 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3782 guix-git/doc/guix.texi:3783 #, fuzzy, no-wrap #| msgid "Official Substitute Server" msgid "Official Substitute Servers" msgstr "Servidor oficial de sustituciones." #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "One particular source of substitutes." msgstr "Una fuente particular de sustituciones." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3794 guix-git/doc/guix.texi:3795 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3812 guix-git/doc/guix.texi:3813 #, no-wrap msgid "Substitute Server Authorization" msgstr "Autorización de servidores de sustituciones" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How to enable or disable substitutes." msgstr "Cómo activar o desactivar las sustituciones." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3864 guix-git/doc/guix.texi:3865 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3882 guix-git/doc/guix.texi:3883 #, no-wrap msgid "Getting Substitutes from Other Servers" msgstr "Obtención de sustiticiones desde otros servidores" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "Substitute diversity." msgstr "Diversidad en las sustituciones." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3969 guix-git/doc/guix.texi:3970 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3987 guix-git/doc/guix.texi:3988 #, no-wrap msgid "Substitute Authentication" msgstr "Verificación de sustituciones" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How Guix verifies substitutes." msgstr "Cómo verifica las sustituciones Guix." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4004 guix-git/doc/guix.texi:4005 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4022 guix-git/doc/guix.texi:4023 #, no-wrap msgid "Proxy Settings" msgstr "Configuración de la pasarela." #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How to get substitutes via proxy." msgstr "Cómo obtener sustituciones a través de una pasarela." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4016 guix-git/doc/guix.texi:4017 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4034 guix-git/doc/guix.texi:4035 #, no-wrap msgid "Substitution Failure" msgstr "Fallos en las sustituciones" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "What happens when substitution fails." msgstr "Qué pasa cuando una sustitución falla." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4044 guix-git/doc/guix.texi:4045 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4062 guix-git/doc/guix.texi:4063 #, no-wrap msgid "On Trusting Binaries" msgstr "Sobre la confianza en binarios" @@ -3910,771 +3952,786 @@ msgstr "Sobre la confianza en binarios" # XXX: MAAV, la traducción literal creo que refleja mejor la intención, # o puede que sea sólo la mía. #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How can you trust that binary blob?" msgstr "¿Cómo puede confiar en esa masa amorfa de datos binarios?" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5086 guix-git/doc/guix.texi:5087 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5104 guix-git/doc/guix.texi:5105 #, no-wrap msgid "Specifying Additional Channels" msgstr "Especificación de canales adicionales" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Extending the package collection." msgstr "Extensiones para la recolección de paquetes." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5136 guix-git/doc/guix.texi:5137 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5154 guix-git/doc/guix.texi:5155 #, no-wrap msgid "Using a Custom Guix Channel" msgstr "Uso de un canal de Guix personalizado" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Using a customized Guix." msgstr "Uso de un Guix personalizado." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5158 guix-git/doc/guix.texi:5159 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5176 guix-git/doc/guix.texi:5177 #, no-wrap msgid "Replicating Guix" msgstr "Replicación de Guix" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Running the @emph{exact same} Guix." msgstr "Ejecución de @emph{exáctamente el mismo} Guix." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5199 guix-git/doc/guix.texi:5200 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5217 guix-git/doc/guix.texi:5218 #, no-wrap msgid "Channel Authentication" msgstr "Verificación de canales" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How Guix verifies what it fetches." msgstr "Cómo verifica Guix lo que obtiene." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5239 guix-git/doc/guix.texi:5240 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5257 guix-git/doc/guix.texi:5258 #, fuzzy, no-wrap msgid "Channels with Substitutes" msgstr "Compartir sustituciones." #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Using channels with available substitutes." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5264 guix-git/doc/guix.texi:5265 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5282 guix-git/doc/guix.texi:5283 #, no-wrap msgid "Creating a Channel" msgstr "Creación de un canal" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How to write your custom channel." msgstr "Cómo escribir su canal personalizado." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5331 guix-git/doc/guix.texi:5332 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5349 guix-git/doc/guix.texi:5350 #, no-wrap msgid "Package Modules in a Sub-directory" msgstr "Módulos de paquetes en un subdirectorio" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Specifying the channel's package modules location." msgstr "Especificación de la localización de los módulos de paquetes del canal." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5345 guix-git/doc/guix.texi:5346 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5363 guix-git/doc/guix.texi:5364 #, no-wrap msgid "Declaring Channel Dependencies" msgstr "Declaración de dependencias de canales" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How to depend on other channels." msgstr "Cómo depender de otros canales." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5387 guix-git/doc/guix.texi:5388 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5405 guix-git/doc/guix.texi:5406 #, no-wrap msgid "Specifying Channel Authorizations" msgstr "Especificación de autorizaciones del canal" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Defining channel authors authorizations." msgstr "Definición de autorizaciones para autores de canales." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5488 guix-git/doc/guix.texi:5489 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5506 guix-git/doc/guix.texi:5507 #, no-wrap msgid "Primary URL" msgstr "URL primaria" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Distinguishing mirror to original." msgstr "Distinción entre un servidor espejo y el original." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5511 guix-git/doc/guix.texi:5512 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5529 guix-git/doc/guix.texi:5530 #, no-wrap msgid "Writing Channel News" msgstr "Escribir de noticias del canal" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Communicating information to channel's users." msgstr "Comunicar información a las usuarias del canal." #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:5603 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:5621 #, fuzzy, no-wrap #| msgid "Invoking guix size" msgid "Invoking guix shell" msgstr "Invocación de guix size" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 #, fuzzy #| msgid "replication, of software environments" msgid "Spawning one-off software environments." msgstr "replicación, de entornos de software" #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:5956 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:5993 #, no-wrap msgid "Invoking guix environment" msgstr "Invocación de guix environment" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Setting up development environments." msgstr "Configurar entornos de desarrollo." #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6325 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6368 #, no-wrap msgid "Invoking guix pack" msgstr "Invocación de guix pack" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Creating software bundles." msgstr "Creación de empaquetados de software." #. type: section -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6711 guix-git/doc/guix.texi:6712 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6754 guix-git/doc/guix.texi:6755 #, no-wrap msgid "The GCC toolchain" msgstr "La cadena de herramientas de GCC" # FUZZY #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Working with languages supported by GCC." msgstr "Trabajo con lenguajes implementados por GCC." #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6737 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6780 #, no-wrap msgid "Invoking guix git authenticate" msgstr "Invocación de guix git authenticate" # TODO: ¡Comprobar traducciones de auth! #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Authenticating Git repositories." msgstr "Verificación de repositorios de Git." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:6841 guix-git/doc/guix.texi:6842 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:6885 guix-git/doc/guix.texi:6886 #, no-wrap msgid "Package Modules" msgstr "Módulos de paquetes" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Packages from the programmer's viewpoint." msgstr "Paquetes bajo el punto de vista del programador." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:289 -#: guix-git/doc/guix.texi:6839 guix-git/doc/guix.texi:6903 -#: guix-git/doc/guix.texi:6904 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:290 +#: guix-git/doc/guix.texi:6883 guix-git/doc/guix.texi:6947 +#: guix-git/doc/guix.texi:6948 #, no-wrap msgid "Defining Packages" msgstr "Definición de paquetes" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Defining new packages." msgstr "Definir nuevos paquetes." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:7554 guix-git/doc/guix.texi:7555 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:7612 guix-git/doc/guix.texi:7613 #, no-wrap msgid "Defining Package Variants" msgstr "Definición de variantes de paquetes" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Customizing packages." msgstr "Personalización de paquetes." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:7821 guix-git/doc/guix.texi:7822 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:7879 guix-git/doc/guix.texi:7880 #, no-wrap msgid "Build Systems" msgstr "Sistemas de construcción" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Specifying how packages are built." msgstr "Especificar como se construyen los paquetes." #. type: subsection -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:8861 guix-git/doc/guix.texi:8862 -#: guix-git/doc/guix.texi:9292 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:8918 guix-git/doc/guix.texi:8919 +#: guix-git/doc/guix.texi:9427 #, no-wrap msgid "Build Phases" msgstr "Fases de construcción" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Phases of the build process of a package." msgstr "Fases del proceso de construcción de un paquete." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9055 guix-git/doc/guix.texi:9056 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9116 guix-git/doc/guix.texi:9117 #, no-wrap msgid "Build Utilities" msgstr "Utilidades de construcción" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Helpers for your package definitions and more." msgstr "Herramientas para sus definiciones de paquete y más." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9369 guix-git/doc/guix.texi:9370 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9504 guix-git/doc/guix.texi:9505 +#, fuzzy, no-wrap +#| msgid "search paths" +msgid "Search Paths" +msgstr "rutas de búsqueda" + +#. type: menuentry +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#, fuzzy +#| msgid "Preparing the isolated build environment." +msgid "Declaring search path environment variables." +msgstr "Preparar el entorno aislado de construcción." + +#. type: section +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9683 guix-git/doc/guix.texi:9684 #, no-wrap msgid "The Store" msgstr "El almacén" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Manipulating the package store." msgstr "Manipular el almacén de paquetes." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9522 guix-git/doc/guix.texi:9523 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9836 guix-git/doc/guix.texi:9837 #, no-wrap msgid "Derivations" msgstr "Derivaciones" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Low-level interface to package derivations." msgstr "Interfaz de bajo nivel de las derivaciones de los paquetes." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9716 guix-git/doc/guix.texi:9717 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10030 guix-git/doc/guix.texi:10031 #, no-wrap msgid "The Store Monad" msgstr "La mónada del almacén" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Purely functional interface to the store." msgstr "Interfaz puramente funcional del almacén." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:10035 guix-git/doc/guix.texi:10036 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10349 guix-git/doc/guix.texi:10350 #, no-wrap msgid "G-Expressions" msgstr "Expresiones-G" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Manipulating build expressions." msgstr "Manipular expresiones de construcción." #. type: node -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:10674 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10988 #, no-wrap msgid "Invoking guix repl" msgstr "Invocación de guix repl" #. type: menuentry -#: guix-git/doc/guix.texi:287 +#: guix-git/doc/guix.texi:288 msgid "Programming Guix in Guile." msgstr "Programación de Guix en Guile." #. type: node -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 -#: guix-git/doc/guix.texi:7103 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 +#: guix-git/doc/guix.texi:7147 #, no-wrap msgid "package Reference" msgstr "Referencia de package" #. type: menuentry -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 msgid "The package data type." msgstr "El tipo de datos de los paquetes." #. type: node -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 -#: guix-git/doc/guix.texi:7362 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 +#: guix-git/doc/guix.texi:7420 #, no-wrap msgid "origin Reference" msgstr "Referencia de origin" #. type: menuentry -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 msgid "The origin data type." msgstr "El tipo de datos de orígenes." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:10801 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:11115 #, no-wrap msgid "Invoking guix build" msgstr "Invocación de guix build" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Building packages from the command line." msgstr "Construir paquetes desde la línea de órdenes." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11699 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12013 #, no-wrap msgid "Invoking guix edit" msgstr "Invocación de guix edit" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Editing package definitions." msgstr "Editar las definiciones de paquetes." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11729 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12043 #, no-wrap msgid "Invoking guix download" msgstr "Invocación de guix download" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Downloading a file and printing its hash." msgstr "Descargar un archivo e imprimir su hash." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11787 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12101 #, no-wrap msgid "Invoking guix hash" msgstr "Invocación de guix hash" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Computing the cryptographic hash of a file." msgstr "Calcular el hash criptográfico de un archivo." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11877 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12192 #, no-wrap msgid "Invoking guix import" msgstr "Invocación de guix import" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Importing package definitions." msgstr "Importar definiciones de paquetes." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12412 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12727 #, no-wrap msgid "Invoking guix refresh" msgstr "Invocación de guix refresh" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Updating package definitions." msgstr "Actualizar definiciones de paquetes." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12784 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13099 #, fuzzy, no-wrap #| msgid "Invoking guix system" msgid "Invoking guix style" msgstr "Invocación de guix system" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 #, fuzzy #| msgid "Editing package definitions." msgid "Styling package definitions." msgstr "Editar las definiciones de paquetes." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12880 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13237 #, no-wrap msgid "Invoking guix lint" msgstr "Invocación de guix lint" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Finding errors in package definitions." msgstr "Encontrar errores en definiciones de paquetes." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13056 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13413 #, no-wrap msgid "Invoking guix size" msgstr "Invocación de guix size" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Profiling disk usage." msgstr "Perfilar el uso del disco." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13200 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13557 #, no-wrap msgid "Invoking guix graph" msgstr "Invocación de guix graph" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Visualizing the graph of packages." msgstr "Visualizar el grafo de paquetes." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13481 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13838 #, no-wrap msgid "Invoking guix publish" msgstr "Invocación de guix publish" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Sharing substitutes." msgstr "Compartir sustituciones." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13750 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14107 #, no-wrap msgid "Invoking guix challenge" msgstr "Invocación de guix challenge" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Challenging substitute servers." msgstr "Poner a prueba servidores de sustituciones." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13933 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14290 #, no-wrap msgid "Invoking guix copy" msgstr "Invocación de guix copy" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Copying to and from a remote store." msgstr "Copiar a y desde un almacén remoto." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13996 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14353 #, no-wrap msgid "Invoking guix container" msgstr "Invocación de guix container" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Process isolation." msgstr "Aislamiento de procesos." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:14050 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14407 #, no-wrap msgid "Invoking guix weather" msgstr "Invocación de guix weather" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Assessing substitute availability." msgstr "Comprobar la disponibilidad de sustituciones." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:14180 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14537 #, no-wrap msgid "Invoking guix processes" msgstr "Invocación de guix processes" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Listing client processes." msgstr "Enumerar los procesos cliente." #. type: section -#: guix-git/doc/guix.texi:313 guix-git/doc/guix.texi:10802 +#: guix-git/doc/guix.texi:314 guix-git/doc/guix.texi:11116 #, no-wrap msgid "Invoking @command{guix build}" msgstr "Invocación de @command{guix build}" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:10855 guix-git/doc/guix.texi:10856 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11169 guix-git/doc/guix.texi:11170 #, no-wrap msgid "Common Build Options" msgstr "Opciones comunes de construcción" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Build options for most commands." msgstr "Opciones de construcción para la mayoría de órdenes." #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11010 guix-git/doc/guix.texi:11011 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11324 guix-git/doc/guix.texi:11325 #, no-wrap msgid "Package Transformation Options" msgstr "Opciones de transformación de paquetes" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Creating variants of packages." msgstr "Crear variantes de paquetes." #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11381 guix-git/doc/guix.texi:11382 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11695 guix-git/doc/guix.texi:11696 #, no-wrap msgid "Additional Build Options" msgstr "Opciones de construcción adicionales" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Options specific to 'guix build'." msgstr "Opciones específicas de 'guix build'." #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11619 guix-git/doc/guix.texi:11620 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11933 guix-git/doc/guix.texi:11934 #, no-wrap msgid "Debugging Build Failures" msgstr "Depuración de fallos de construcción" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Real life packaging experience." msgstr "Experiencia de empaquetamiento en la vida real." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14324 guix-git/doc/guix.texi:14325 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:14681 guix-git/doc/guix.texi:14682 #, no-wrap msgid "Using the Configuration System" msgstr "Uso de la configuración del sistema" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Customizing your GNU system." msgstr "Personalizar su sistema GNU." #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14575 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:14932 #, no-wrap msgid "operating-system Reference" msgstr "Referencia de operating-system" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Detail of operating-system declarations." msgstr "Detalle de las declaraciones de sistema operativo." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14798 guix-git/doc/guix.texi:14799 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15155 guix-git/doc/guix.texi:15156 #, no-wrap msgid "File Systems" msgstr "Sistemas de archivos" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring file system mounts." msgstr "Configurar el montaje de sistemas de archivos." # TODO: (MAAV) Comprobar como se ha hecho en otros proyectos. #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15151 guix-git/doc/guix.texi:15152 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15508 guix-git/doc/guix.texi:15509 #, no-wrap msgid "Mapped Devices" msgstr "Dispositivos traducidos" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Block device extra processing." msgstr "Procesamiento adicional de dispositivos de bloques." # FUZZY #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15300 guix-git/doc/guix.texi:15301 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15657 guix-git/doc/guix.texi:15658 #, fuzzy, no-wrap #| msgid "swap space" msgid "Swap Space" msgstr "memoria de intercambio" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Backing RAM with disk space." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15400 guix-git/doc/guix.texi:15401 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15757 guix-git/doc/guix.texi:15758 #, no-wrap msgid "User Accounts" msgstr "Cuentas de usuaria" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Specifying user accounts." msgstr "Especificar las cuentas de usuaria." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:2308 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15581 -#: guix-git/doc/guix.texi:15582 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:2325 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:15938 +#: guix-git/doc/guix.texi:15939 #, no-wrap msgid "Keyboard Layout" msgstr "Distribución de teclado" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "How the system interprets key strokes." msgstr "Cómo interpreta el sistema las pulsaciones del teclado." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1835 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15727 -#: guix-git/doc/guix.texi:15728 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:1852 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:16084 +#: guix-git/doc/guix.texi:16085 #, no-wrap msgid "Locales" msgstr "Localizaciones" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Language and cultural convention settings." msgstr "Configuración de idioma y convenciones culturales." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:345 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15867 -#: guix-git/doc/guix.texi:15868 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:346 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:16224 +#: guix-git/doc/guix.texi:16225 #, no-wrap msgid "Services" msgstr "Servicios" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Specifying system services." msgstr "Especificar los servicios del sistema." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34056 guix-git/doc/guix.texi:34057 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34493 guix-git/doc/guix.texi:34494 #, no-wrap msgid "Setuid Programs" msgstr "Programas con setuid" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Programs running with root privileges." msgstr "Programas que se ejecutan con privilegios de root." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1984 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:34140 -#: guix-git/doc/guix.texi:34141 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:2001 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:34579 +#: guix-git/doc/guix.texi:34580 #, no-wrap msgid "X.509 Certificates" msgstr "Certificados X.509" # TODO: ¡Comprobar traducciones de auth! #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Authenticating HTTPS servers." msgstr "Verificar servidores HTTPS." # TODO: Comprobar traducción de libc #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1878 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:34203 -#: guix-git/doc/guix.texi:34204 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:1895 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:34642 +#: guix-git/doc/guix.texi:34643 #, no-wrap msgid "Name Service Switch" msgstr "Selector de servicios de nombres" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring libc's name service switch." msgstr "Configurar el selector de servicios de nombres de libc." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34341 guix-git/doc/guix.texi:34342 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34780 guix-git/doc/guix.texi:34781 #, no-wrap msgid "Initial RAM Disk" msgstr "Disco en RAM inicial" @@ -4682,929 +4739,941 @@ msgstr "Disco en RAM inicial" # TODO: (MAAV) Este bootstrap no es exactamente el mismo sentido que el # de compilar el sistema de 0, aunque la traducción pueda valer igual. #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Linux-Libre bootstrapping." msgstr "Arranque de Linux-Libre." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34536 guix-git/doc/guix.texi:34537 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34975 guix-git/doc/guix.texi:34976 #, no-wrap msgid "Bootloader Configuration" msgstr "Configuración del gestor de arranque" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring the boot loader." msgstr "Configurar el gestor de arranque." #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34834 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:35273 #, no-wrap msgid "Invoking guix system" msgstr "Invocación de guix system" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Instantiating a system configuration." msgstr "Instanciar una configuración del sistema." #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:35425 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:35881 #, no-wrap msgid "Invoking guix deploy" msgstr "Invocación de guix deploy" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Deploying a system configuration to a remote host." msgstr "Despliegue de una configuración del sistema en una máquina remota." #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:35631 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:36121 #, no-wrap msgid "Running Guix in a VM" msgstr "Ejecutar Guix en una máquina virtual" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "How to run Guix System in a virtual machine." msgstr "Cómo ejecutar el sistema Guix en una máquina virtual." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:381 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:35765 -#: guix-git/doc/guix.texi:35766 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:382 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:36255 +#: guix-git/doc/guix.texi:36256 #, no-wrap msgid "Defining Services" msgstr "Definición de servicios" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Adding new service definitions." msgstr "Añadir nuevas definiciones de servicios." #. type: menuentry -#: guix-git/doc/guix.texi:341 +#: guix-git/doc/guix.texi:342 #, fuzzy #| msgid "System Configuration" msgid "Home Environment Configuration" msgstr "Configuración del sistema" #. type: node -#: guix-git/doc/guix.texi:343 guix-git/doc/guix.texi:36944 -#: guix-git/doc/guix.texi:37478 +#: guix-git/doc/guix.texi:344 guix-git/doc/guix.texi:37434 +#: guix-git/doc/guix.texi:37974 #, fuzzy, no-wrap #| msgid "Invoking guix hash" msgid "Invoking guix home" msgstr "Invocación de guix hash" #. type: menuentry -#: guix-git/doc/guix.texi:343 +#: guix-git/doc/guix.texi:344 #, fuzzy #| msgid "Instantiating a system configuration." msgid "Instantiating a home environment configuration." msgstr "Instanciar una configuración del sistema." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:15953 guix-git/doc/guix.texi:15954 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:16310 guix-git/doc/guix.texi:16311 #, no-wrap msgid "Base Services" msgstr "Servicios base" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Essential system services." msgstr "Servicios esenciales del sistema." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:16880 guix-git/doc/guix.texi:16881 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17242 guix-git/doc/guix.texi:17243 #, no-wrap msgid "Scheduled Job Execution" msgstr "Ejecución de tareas programadas" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The mcron service." msgstr "El servicio mcron." # TODO: (MAAV) Comprobar otras traducciones. #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17030 guix-git/doc/guix.texi:17031 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17392 guix-git/doc/guix.texi:17393 #, no-wrap msgid "Log Rotation" msgstr "Rotación del registro de mensajes" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The rottlog service." msgstr "El servicio rottlog." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17143 guix-git/doc/guix.texi:17144 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17505 guix-git/doc/guix.texi:17506 #, fuzzy, no-wrap #| msgid "Networking" msgid "Networking Setup" msgstr "Red" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 #, fuzzy #| msgid "user interfaces" msgid "Setting up network interfaces." msgstr "interfaces de usuaria" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17561 guix-git/doc/guix.texi:17562 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17923 guix-git/doc/guix.texi:17924 #, no-wrap msgid "Networking Services" msgstr "Servicios de red" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 #, fuzzy #| msgid "Network setup, SSH daemon, etc." msgid "Firewall, SSH daemon, etc." msgstr "Configuración de red, daemon SSH, etc." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19020 guix-git/doc/guix.texi:19021 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19382 guix-git/doc/guix.texi:19383 #, no-wrap msgid "Unattended Upgrades" msgstr "Actualizaciones no-atendidas" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Automated system upgrades." msgstr "Actualizaciones del sistema automatizadas." # XXX: Dudas de traducción... #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19158 guix-git/doc/guix.texi:19159 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19520 guix-git/doc/guix.texi:19521 #, no-wrap msgid "X Window" msgstr "Sistema X Window" # XXX: (MAAV) No es muy literal, pero creo que se entiende. #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Graphical display." msgstr "Interfaz gráfica." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19556 guix-git/doc/guix.texi:19557 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19918 guix-git/doc/guix.texi:19919 #, no-wrap msgid "Printing Services" msgstr "Servicios de impresión" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Local and remote printer support." msgstr "Uso de impresoras locales y remotas." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:20409 guix-git/doc/guix.texi:20410 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:20771 guix-git/doc/guix.texi:20772 #, no-wrap msgid "Desktop Services" msgstr "Servicios de escritorio" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "D-Bus and desktop services." msgstr "D-Bus y servicios de escritorio." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:20928 guix-git/doc/guix.texi:20929 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21290 guix-git/doc/guix.texi:21291 #, no-wrap msgid "Sound Services" msgstr "Servicios de sonido" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "ALSA and Pulseaudio services." msgstr "Servicios de ALSA y Pulseaudio." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:21068 guix-git/doc/guix.texi:21069 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21430 guix-git/doc/guix.texi:21431 #, no-wrap msgid "Database Services" msgstr "Servicios de bases de datos" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "SQL databases, key-value stores, etc." msgstr "Bases de datos SQL, almacenes de clave-valor, etc." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:21403 guix-git/doc/guix.texi:21404 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21765 guix-git/doc/guix.texi:21766 #, no-wrap msgid "Mail Services" msgstr "Servicios de correo" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "IMAP, POP3, SMTP, and all that." msgstr "IMAP, POP3, SMTP y todo eso." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:23262 guix-git/doc/guix.texi:23263 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:23624 guix-git/doc/guix.texi:23625 #, no-wrap msgid "Messaging Services" msgstr "Servicios de mensajería" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Messaging services." msgstr "Servicios de mensajería." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:23765 guix-git/doc/guix.texi:23766 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:24127 guix-git/doc/guix.texi:24128 #, no-wrap msgid "Telephony Services" msgstr "Servicios de telefonía" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Telephony services." msgstr "Servicios de telefonía." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:24996 guix-git/doc/guix.texi:24997 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25358 guix-git/doc/guix.texi:25359 #, no-wrap msgid "Monitoring Services" msgstr "Servicios de monitorización" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Monitoring services." msgstr "Servicios de monitorización." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:25507 guix-git/doc/guix.texi:25508 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25844 guix-git/doc/guix.texi:25845 #, no-wrap msgid "Kerberos Services" msgstr "Servicios Kerberos" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Kerberos services." msgstr "Servicios Kerberos." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:25633 guix-git/doc/guix.texi:25634 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25970 guix-git/doc/guix.texi:25971 #, no-wrap msgid "LDAP Services" msgstr "Servicios LDAP" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "LDAP services." msgstr "Servicios LDAP." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:26112 guix-git/doc/guix.texi:26113 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:26449 guix-git/doc/guix.texi:26450 #, no-wrap msgid "Web Services" msgstr "Servicios Web" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Web servers." msgstr "Servidores Web." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:27320 guix-git/doc/guix.texi:27321 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:27657 guix-git/doc/guix.texi:27658 #, no-wrap msgid "Certificate Services" msgstr "Servicios de certificados" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "TLS certificates via Let's Encrypt." msgstr "Certificados TLS via Let's Encrypt." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:27501 guix-git/doc/guix.texi:27502 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:27838 guix-git/doc/guix.texi:27839 #, no-wrap msgid "DNS Services" msgstr "Servicios DNS" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "DNS daemons." msgstr "Daemon de DNS." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28246 guix-git/doc/guix.texi:28247 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:28583 guix-git/doc/guix.texi:28584 #, no-wrap msgid "VPN Services" msgstr "Servicios VPN" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "VPN daemons." msgstr "Daemon de VPN." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28758 guix-git/doc/guix.texi:28759 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29095 guix-git/doc/guix.texi:29096 #, no-wrap msgid "Network File System" msgstr "Sistema de archivos en red" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "NFS related services." msgstr "Servicios relacionados con NFS." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28954 guix-git/doc/guix.texi:28955 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29291 guix-git/doc/guix.texi:29292 #, no-wrap msgid "Continuous Integration" msgstr "Integración continua" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 #, fuzzy msgid "Cuirass and Laminar services." msgstr "El servicio Cuirass." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29240 guix-git/doc/guix.texi:29241 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29577 guix-git/doc/guix.texi:29578 #, no-wrap msgid "Power Management Services" msgstr "Servicios de gestión de energía" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Extending battery life." msgstr "Extender la vida de la batería." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29774 guix-git/doc/guix.texi:29775 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:30139 guix-git/doc/guix.texi:30140 #, no-wrap msgid "Audio Services" msgstr "Servicios de audio" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The MPD." msgstr "El MPD." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29893 guix-git/doc/guix.texi:29894 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:30258 guix-git/doc/guix.texi:30259 #, no-wrap msgid "Virtualization Services" msgstr "Servicios de virtualización" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Virtualization services." msgstr "Servicios de virtualización." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:31561 guix-git/doc/guix.texi:31562 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:31926 guix-git/doc/guix.texi:31927 #, no-wrap msgid "Version Control Services" msgstr "Servicios de control de versiones" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Providing remote access to Git repositories." msgstr "Proporcionar acceso remoto a repositorios Git." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:32897 guix-git/doc/guix.texi:32898 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33262 guix-git/doc/guix.texi:33263 #, no-wrap msgid "Game Services" msgstr "Servicios de juegos" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Game servers." msgstr "Servidores de juegos." # FUZZY #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:32929 guix-git/doc/guix.texi:32930 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33294 guix-git/doc/guix.texi:33295 #, no-wrap msgid "PAM Mount Service" msgstr "Servicio PAM Mount" # FUZZY #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Service to mount volumes when logging in." msgstr "Servicio de montado de volúmenes en el ingreso al sistema." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33012 guix-git/doc/guix.texi:33013 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33377 guix-git/doc/guix.texi:33378 #, no-wrap msgid "Guix Services" msgstr "Servicios de Guix" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services relating specifically to Guix." msgstr "Servicios relacionados específicamente con Guix." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33290 guix-git/doc/guix.texi:33291 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33727 guix-git/doc/guix.texi:33728 #, no-wrap msgid "Linux Services" msgstr "Servicios de Linux" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services tied to the Linux kernel." msgstr "Servicios asociados al núcleo Linux." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33517 guix-git/doc/guix.texi:33518 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33954 guix-git/doc/guix.texi:33955 #, no-wrap msgid "Hurd Services" msgstr "Servicios de Hurd" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services specific for a Hurd System." msgstr "Servicios específicos para un sistema Hurd." # FUZZY #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33559 guix-git/doc/guix.texi:33560 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33996 guix-git/doc/guix.texi:33997 #, no-wrap msgid "Miscellaneous Services" msgstr "Servicios misceláneos" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Other services." msgstr "Otros servicios." #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35780 guix-git/doc/guix.texi:35781 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36270 guix-git/doc/guix.texi:36271 #, no-wrap msgid "Service Composition" msgstr "Composición de servicios" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "The model for composing services." msgstr "El modelo para la composición de servicios." #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35836 guix-git/doc/guix.texi:35837 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36326 guix-git/doc/guix.texi:36327 #, no-wrap msgid "Service Types and Services" msgstr "Tipos de servicios y servicios" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "Types and services." msgstr "Tipos y servicios" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35973 guix-git/doc/guix.texi:35974 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36463 guix-git/doc/guix.texi:36464 #, no-wrap msgid "Service Reference" msgstr "Referencia de servicios" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "API reference." msgstr "Referencia de la API." #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:36292 guix-git/doc/guix.texi:36293 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36782 guix-git/doc/guix.texi:36783 #, no-wrap msgid "Shepherd Services" msgstr "Servicios de Shepherd" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "A particular type of service." msgstr "Un tipo de servicio particular." #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:36511 guix-git/doc/guix.texi:36512 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:37001 guix-git/doc/guix.texi:37002 #, fuzzy, no-wrap #| msgid "System Configuration" msgid "Complex Configurations" msgstr "Configuración del sistema" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 #, fuzzy #| msgid "Instantiating a system configuration." msgid "Defining bindings for complex configurations." msgstr "Instanciar una configuración del sistema." #. type: section -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 -#: guix-git/doc/guix.texi:37806 guix-git/doc/guix.texi:37807 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 +#: guix-git/doc/guix.texi:38295 guix-git/doc/guix.texi:38296 #, no-wrap msgid "Separate Debug Info" msgstr "Información separada para depuración" #. type: menuentry -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 msgid "Installing 'debug' outputs." msgstr "Instalación de las salidas 'debug'." #. type: section -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 -#: guix-git/doc/guix.texi:37879 guix-git/doc/guix.texi:37880 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 +#: guix-git/doc/guix.texi:38368 guix-git/doc/guix.texi:38369 #, no-wrap msgid "Rebuilding Debug Info" msgstr "Reconstrucción de la información para depuración" # FUZZY FUZZY #. type: menuentry -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 msgid "Building missing debug info." msgstr "Construir la información de depuración necesaria." # FUZZY #. type: node -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 -#: guix-git/doc/guix.texi:38098 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 +#: guix-git/doc/guix.texi:38587 #, no-wrap msgid "Reduced Binary Seed Bootstrap" msgstr "Lanzamiento inicial a partir de la semilla binaria reducida" # FUZZY #. type: menuentry -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 msgid "A Bootstrap worthy of GNU." msgstr "Un lanzamiento inicial a la altura de GNU." #. type: section -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 -#: guix-git/doc/guix.texi:38173 guix-git/doc/guix.texi:38174 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 +#: guix-git/doc/guix.texi:38662 guix-git/doc/guix.texi:38663 #, no-wrap msgid "Preparing to Use the Bootstrap Binaries" msgstr "Preparación para usar los binarios del lanzamiento inicial" # FUZZY #. type: menuentry -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 msgid "Building that what matters most." msgstr "Construcción de lo que más importa." #. type: cindex -#: guix-git/doc/guix.texi:405 +#: guix-git/doc/guix.texi:406 #, no-wrap msgid "purpose" msgstr "propósito" #. type: Plain text -#: guix-git/doc/guix.texi:413 +#: guix-git/doc/guix.texi:414 msgid "GNU Guix@footnote{``Guix'' is pronounced like ``geeks'', or ``ɡiːks'' using the international phonetic alphabet (IPA).} is a package management tool for and distribution of the GNU system. Guix makes it easy for unprivileged users to install, upgrade, or remove software packages, to roll back to a previous package set, to build packages from source, and generally assists with the creation and maintenance of software environments." msgstr "GNU Guix@footnote{``Guix'' se pronuncia tal y como se escribe en castellano, ``ɡiːks'' en el alfabeto fonético internacional (IPA).} es una herramienta de gestión de paquetes y una distribución del sistema GNU. Guix facilita a usuarias sin privilegios la instalación, actualización o borrado de paquetes de software, la vuelta a un conjunto de paquetes previo atómicamente, la construcción de paquetes desde las fuentes, y ayuda de forma general en la creación y mantenimiento de entornos software." #. type: cindex -#: guix-git/doc/guix.texi:414 guix-git/doc/guix.texi:489 +#: guix-git/doc/guix.texi:415 guix-git/doc/guix.texi:490 #, no-wrap msgid "Guix System" msgstr "Sistema Guix" # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:415 +#: guix-git/doc/guix.texi:416 #, no-wrap msgid "GuixSD, now Guix System" msgstr "GuixSD, ahora sistema Guix" #. type: cindex -#: guix-git/doc/guix.texi:416 +#: guix-git/doc/guix.texi:417 #, no-wrap msgid "Guix System Distribution, now Guix System" msgstr "Distribución de Sistema Guix, ahora sistema Guix" #. type: Plain text -#: guix-git/doc/guix.texi:425 +#: guix-git/doc/guix.texi:426 msgid "You can install GNU@tie{}Guix on top of an existing GNU/Linux system where it complements the available tools without interference (@pxref{Installation}), or you can use it as a standalone operating system distribution, @dfn{Guix@tie{}System}@footnote{We used to refer to Guix System as ``Guix System Distribution'' or ``GuixSD''. We now consider it makes more sense to group everything under the ``Guix'' banner since, after all, Guix System is readily available through the @command{guix system} command, even if you're using a different distro underneath!}. @xref{GNU Distribution}." msgstr "Puede instalar GNU@tie{}Guix sobre un sistema GNU/Linux existente, donde complementará las herramientas disponibles sin interferencias (@pxref{Installation}), o puede usarse como un sistema operativo en sí mismo, el @dfn{sistema@tie{}Guix}@footnote{Solíamos referirnos al sistema Guix como ``Distribución de sistema Guix'' o ``GuixSD''. Ahora consideramos que tiene más sentido agrupar todo bajo la etiqueta ``Guix'' ya que, después de todo, el sistema Guix está inmediatamente disponible a través de la orden @command{guix system}, ¡incluso cuando usa una distribución distinta por debajo!}. @xref{GNU Distribution}." #. type: cindex -#: guix-git/doc/guix.texi:434 +#: guix-git/doc/guix.texi:435 #, no-wrap msgid "user interfaces" msgstr "interfaces de usuaria" #. type: Plain text -#: guix-git/doc/guix.texi:440 +#: guix-git/doc/guix.texi:441 #, fuzzy msgid "Guix provides a command-line package management interface (@pxref{Package Management}), tools to help with software development (@pxref{Development}), command-line utilities for more advanced usage (@pxref{Utilities}), as well as Scheme programming interfaces (@pxref{Programming Interface})." msgstr "Guix proporciona una interfaz de gestión de paquetes de línea de ordenes (@pxref{Package Management}), un conjunto de utilidades de línea de órdenes (@pxref{Utilities}), así como interfaces programáticas Scheme (@pxref{Programming Interface})." #. type: cindex -#: guix-git/doc/guix.texi:440 +#: guix-git/doc/guix.texi:441 #, no-wrap msgid "build daemon" msgstr "daemon de construcción" # FIXME #. type: Plain text -#: guix-git/doc/guix.texi:444 +#: guix-git/doc/guix.texi:445 msgid "Its @dfn{build daemon} is responsible for building packages on behalf of users (@pxref{Setting Up the Daemon}) and for downloading pre-built binaries from authorized sources (@pxref{Substitutes})." msgstr "Su @dfn{daemon de construcción} es responsable de la construcción de paquetes en delegación de las usuarias (@pxref{Setting Up the Daemon}) y de la descarga de binarios preconstruidos de fuentes autorizadas (@pxref{Substitutes})" #. type: cindex -#: guix-git/doc/guix.texi:445 +#: guix-git/doc/guix.texi:446 #, no-wrap msgid "extensibility of the distribution" msgstr "extensibilidad de la distribución" #. type: cindex -#: guix-git/doc/guix.texi:446 guix-git/doc/guix.texi:6863 +#: guix-git/doc/guix.texi:447 guix-git/doc/guix.texi:6907 #, no-wrap msgid "customization, of packages" msgstr "personalización, de paquetes" #. type: Plain text -#: guix-git/doc/guix.texi:455 +#: guix-git/doc/guix.texi:456 msgid "Guix includes package definitions for many GNU and non-GNU packages, all of which @uref{https://www.gnu.org/philosophy/free-sw.html, respect the user's computing freedom}. It is @emph{extensible}: users can write their own package definitions (@pxref{Defining Packages}) and make them available as independent package modules (@pxref{Package Modules}). It is also @emph{customizable}: users can @emph{derive} specialized package definitions from existing ones, including from the command line (@pxref{Package Transformation Options})." msgstr "Guix incluye definiciones de paquetes para muchos paquetes GNU y no-GNU, todos los cuales @uref{https://www.gnu.org/philosophy/free-sw.html, respetan la libertad de computación de la usuaria}. Es @emph{extensible}: las usuarias pueden escribir sus propias definiciones de paquetes (@pxref{Defining Packages}) y hacerlas disponibles como módulos independientes de paquetes (@pxref{Package Modules}). También es @emph{personalizable}: las usuarias pueden @emph{derivar} definiciones de paquetes especializadas de las existentes, inclusive desde la línea de órdenes (@pxref{Package Transformation Options})." #. type: cindex -#: guix-git/doc/guix.texi:456 +#: guix-git/doc/guix.texi:457 #, no-wrap msgid "functional package management" msgstr "gestión de paquetes funcional" #. type: cindex -#: guix-git/doc/guix.texi:457 +#: guix-git/doc/guix.texi:458 #, no-wrap msgid "isolation" msgstr "aislamiento" #. type: Plain text -#: guix-git/doc/guix.texi:472 +#: guix-git/doc/guix.texi:473 msgid "Under the hood, Guix implements the @dfn{functional package management} discipline pioneered by Nix (@pxref{Acknowledgments}). In Guix, the package build and installation process is seen as a @emph{function}, in the mathematical sense. That function takes inputs, such as build scripts, a compiler, and libraries, and returns an installed package. As a pure function, its result depends solely on its inputs---for instance, it cannot refer to software or scripts that were not explicitly passed as inputs. A build function always produces the same result when passed a given set of inputs. It cannot alter the environment of the running system in any way; for instance, it cannot create, modify, or delete files outside of its build and installation directories. This is achieved by running build processes in isolated environments (or @dfn{containers}), where only their explicit inputs are visible." msgstr "En su implementación, Guix utiliza la disciplina de @dfn{gestión de paquetes funcional} en la que Nix fue pionero (@pxref{Acknowledgments}). En Guix, el proceso de construcción e instalación es visto como una @emph{función}, en el sentido matemático. Dicha función toma entradas, como los guiones de construcción, un compilador, unas bibliotecas y devuelve el paquete instalado. Como función pura, su resultado únicamente depende de sus entradas---por ejemplo, no puede hacer referencia a software o guiones que no fuesen pasados explícitamente como entrada. Una función de construcción siempre produce el mismo resultado cuando se le proporciona un conjunto de entradas dado. No puede modificar el entorno del sistema que la ejecuta de ninguna forma; por ejemplo, no puede crear, modificar o borrar archivos fuera de sus directorios de construcción e instalación. Esto se consigue ejecutando los procesos de construcción en entornos aislados (o @dfn{contenedores}), donde únicamente sus entradas explícitas son visibles." #. type: cindex -#: guix-git/doc/guix.texi:473 guix-git/doc/guix.texi:9372 +#: guix-git/doc/guix.texi:474 guix-git/doc/guix.texi:9686 #, no-wrap msgid "store" msgstr "almacén" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:480 +#: guix-git/doc/guix.texi:481 msgid "The result of package build functions is @dfn{cached} in the file system, in a special directory called @dfn{the store} (@pxref{The Store}). Each package is installed in a directory of its own in the store---by default under @file{/gnu/store}. The directory name contains a hash of all the inputs used to build that package; thus, changing an input yields a different directory name." msgstr "El resultado de las funciones de construcción de paquetes es @dfn{almacenado en la caché} en el sistema de archivos, en un directorio especial llamado @dfn{el almacén} (@pxref{The Store}). Cada paquete se instala en un directorio propio en el almacén---por defecto, bajo @file{/gnu/store}. El nombre del directorio contiene el hash de todas las entradas usadas para construir el paquete; por tanto, cambiar una entrada resulta en un nombre de directorio distinto." #. type: Plain text -#: guix-git/doc/guix.texi:484 +#: guix-git/doc/guix.texi:485 msgid "This approach is the foundation for the salient features of Guix: support for transactional package upgrade and rollback, per-user installation, and garbage collection of packages (@pxref{Features})." msgstr "Esta aproximación es el cimiento de las avanzadas características de Guix: capacidad para la actualización transaccional y vuelta-atrás de paquetes, instalación en el ámbito de la usuaria y recolección de basura de paquetes (@pxref{Features})." #. type: Plain text -#: guix-git/doc/guix.texi:499 +#: guix-git/doc/guix.texi:500 msgid "Guix comes with a distribution of the GNU system consisting entirely of free software@footnote{The term ``free'' here refers to the @url{https://www.gnu.org/philosophy/free-sw.html,freedom provided to users of that software}.}. The distribution can be installed on its own (@pxref{System Installation}), but it is also possible to install Guix as a package manager on top of an installed GNU/Linux system (@pxref{Installation}). When we need to distinguish between the two, we refer to the standalone distribution as Guix@tie{}System." msgstr "Guix viene con una distribución del sistema GNU consistente en su totalidad de software libre@footnote{El término ``libre'' aquí se refiere a la @url{https://www.gnu.org/philosophy/free-sw.html,libertad proporcionada a las usuarias de dicho software}.}. La distribución puede instalarse independientemente (@pxref{System Installation}), pero también es posible instalar Guix como un gestor de paquetes sobre un sistema GNU/Linux existente (@pxref{Installation}). Para distinguir entre las dos opciones, nos referimos a la distribución independiente como el sistema@tie{}Guix." #. type: Plain text -#: guix-git/doc/guix.texi:505 +#: guix-git/doc/guix.texi:506 msgid "The distribution provides core GNU packages such as GNU libc, GCC, and Binutils, as well as many GNU and non-GNU applications. The complete list of available packages can be browsed @url{https://www.gnu.org/software/guix/packages,on-line} or by running @command{guix package} (@pxref{Invoking guix package}):" msgstr "La distribución proporciona paquetes principales de GNU como GNU libc, GCC y Binutils, así como muchas aplicaciones GNU y no-GNU. La lista completa de paquetes disponibles se puede explorar @url{https://www.gnu.org/software/guix/packages,en línea} o ejecutando @command{guix package} (@pxref{Invoking guix package}):" #. type: example -#: guix-git/doc/guix.texi:508 +#: guix-git/doc/guix.texi:509 #, no-wrap msgid "guix package --list-available\n" msgstr "guix package --list-available\n" #. type: Plain text -#: guix-git/doc/guix.texi:514 +#: guix-git/doc/guix.texi:515 msgid "Our goal is to provide a practical 100% free software distribution of Linux-based and other variants of GNU, with a focus on the promotion and tight integration of GNU components, and an emphasis on programs and tools that help users exert that freedom." msgstr "Nuestro objetivo es proporcionar una distribución práctica con 100% software libre basada en Linux y otras variantes de GNU, con un enfoque en la promoción y la alta integración de componentes GNU, y un énfasis en programas y herramientas que ayuden a las usuarias a ejercitar esa libertad." #. type: Plain text -#: guix-git/doc/guix.texi:516 +#: guix-git/doc/guix.texi:517 msgid "Packages are currently available on the following platforms:" msgstr "Actualmente hay paquetes disponibles para las siguientes plataformas:" #. type: item -#: guix-git/doc/guix.texi:519 guix-git/doc/guix.texi:2155 +#: guix-git/doc/guix.texi:520 guix-git/doc/guix.texi:2172 #, no-wrap msgid "x86_64-linux" msgstr "x86_64-linux" #. type: table -#: guix-git/doc/guix.texi:521 +#: guix-git/doc/guix.texi:522 msgid "Intel/AMD @code{x86_64} architecture, Linux-Libre kernel." msgstr "Arquitectura @code{x86_64} de Intel/AMD, con núcleo Linux-Libre." #. type: item -#: guix-git/doc/guix.texi:522 guix-git/doc/guix.texi:2158 +#: guix-git/doc/guix.texi:523 guix-git/doc/guix.texi:2175 #, no-wrap msgid "i686-linux" msgstr "i686-linux" #. type: table -#: guix-git/doc/guix.texi:524 +#: guix-git/doc/guix.texi:525 msgid "Intel 32-bit architecture (IA32), Linux-Libre kernel." msgstr "Arquitectura de 32-bits Intel (IA32), con núcleo Linux-Libre." #. type: item -#: guix-git/doc/guix.texi:525 +#: guix-git/doc/guix.texi:526 #, no-wrap msgid "armhf-linux" msgstr "armhf-linux" #. type: table -#: guix-git/doc/guix.texi:529 +#: guix-git/doc/guix.texi:530 msgid "ARMv7-A architecture with hard float, Thumb-2 and NEON, using the EABI hard-float application binary interface (ABI), and Linux-Libre kernel." msgstr "Arquitectura ARMv7-A con coma flotante hardware, Thumb-2 y NEON, usando la interfaz binaria de aplicaciones (ABI) EABI con coma flotante hardware, y con el núcleo Linux-Libre." #. type: item -#: guix-git/doc/guix.texi:530 +#: guix-git/doc/guix.texi:531 #, no-wrap msgid "aarch64-linux" msgstr "aarch64-linux" #. type: table -#: guix-git/doc/guix.texi:532 +#: guix-git/doc/guix.texi:533 msgid "little-endian 64-bit ARMv8-A processors, Linux-Libre kernel." msgstr "procesadores ARMv8-A de 64 bits little-endian, con el núcleo Linux-Libre." #. type: item -#: guix-git/doc/guix.texi:533 +#: guix-git/doc/guix.texi:534 #, no-wrap msgid "i586-gnu" msgstr "i586-gnu" #. type: table -#: guix-git/doc/guix.texi:536 +#: guix-git/doc/guix.texi:537 msgid "@uref{https://hurd.gnu.org, GNU/Hurd} on the Intel 32-bit architecture (IA32)." msgstr "@uref{https://hurd.gnu.org, GNU/Hurd} en la arquitectura Intel de 32 bits (IA32)." #. type: table -#: guix-git/doc/guix.texi:542 +#: guix-git/doc/guix.texi:543 msgid "This configuration is experimental and under development. The easiest way for you to give it a try is by setting up an instance of @code{hurd-vm-service-type} on your GNU/Linux machine (@pxref{transparent-emulation-qemu, @code{hurd-vm-service-type}}). @xref{Contributing}, on how to help!" msgstr "Esta configuración es experimental y se encuentra en desarrollo. La forma más fácil de probarla es configurando una instancia del servicio @code{hurd-vm-service-type} en su máquina GNU/Linux (@pxref{transparent-emulation-qemu, @code{hurd-vm-service-type}}). ¡@xref{Contributing} para informarse sobre cómo ayudar!" #. type: item -#: guix-git/doc/guix.texi:543 +#: guix-git/doc/guix.texi:544 #, fuzzy, no-wrap #| msgid "mips64el-linux (deprecated)" msgid "mips64el-linux (unsupported)" msgstr "mips64el-linux (obsoleta)" #. type: table -#: guix-git/doc/guix.texi:549 +#: guix-git/doc/guix.texi:550 #, fuzzy msgid "little-endian 64-bit MIPS processors, specifically the Loongson series, n32 ABI, and Linux-Libre kernel. This configuration is no longer fully supported; in particular, there is no ongoing work to ensure that this architecture still works. Should someone decide they wish to revive this architecture then the code is still available." msgstr "procesadores MIPS 64-bits little-endian, específicamente las series Loongson, n32 ABI, y núcleo Linux-Libre. Esta configuración no se soporta completamente; en particular no se está llevando a cabo ningún trabajo para asegurar que esta arquitectura funcione todavía. En caso de que alguien decida revivir esta arquitectura el código está disponible." #. type: item -#: guix-git/doc/guix.texi:550 +#: guix-git/doc/guix.texi:551 #, no-wrap msgid "powerpc-linux (unsupported)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:555 +#: guix-git/doc/guix.texi:556 #, fuzzy msgid "big-endian 32-bit PowerPC processors, specifically the PowerPC G4 with AltiVec support, and Linux-Libre kernel. This configuration is not fully supported and there is no ongoing work to ensure this architecture works." msgstr "procesadores MIPS 64-bits little-endian, específicamente las series Loongson, n32 ABI, y núcleo Linux-Libre. Esta configuración no se soporta completamente; en particular no se está llevando a cabo ningún trabajo para asegurar que esta arquitectura funcione todavía. En caso de que alguien decida revivir esta arquitectura el código está disponible." #. type: table -#: guix-git/doc/guix.texi:566 +#: guix-git/doc/guix.texi:567 msgid "little-endian 64-bit Power ISA processors, Linux-Libre kernel. This includes POWER9 systems such as the @uref{https://www.fsf.org/news/talos-ii-mainboard-and-talos-ii-lite-mainboard-now-fsf-certified-to-respect-your-freedom, RYF Talos II mainboard}. This platform is available as a \"technology preview\": although it is supported, substitutes are not yet available from the build farm (@pxref{Substitutes}), and some packages may fail to build (@pxref{Tracking Bugs and Patches}). That said, the Guix community is actively working on improving this support, and now is a great time to try it and get involved!" msgstr "" -#. type: Plain text +#. type: item +#: guix-git/doc/guix.texi:568 +#, fuzzy, no-wrap +#| msgid "aarch64-linux" +msgid "riscv64-linux" +msgstr "aarch64-linux" + +#. type: table #: guix-git/doc/guix.texi:576 +msgid "little-endian 64-bit RISC-V processors, specifically RV64GC, and Linux-Libre kernel. This playform is available as a \"technology preview\": although it is supported, substitutes are not yet available from the build farm (@pxref{Substitutes}), and some packages may fail to build (@pxref{Tracking Bugs and Patches}). That said, the Guix community is actively working on improving this support, and now is a great time to try it and get involved!" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:586 msgid "With Guix@tie{}System, you @emph{declare} all aspects of the operating system configuration and Guix takes care of instantiating the configuration in a transactional, reproducible, and stateless fashion (@pxref{System Configuration}). Guix System uses the Linux-libre kernel, the Shepherd initialization system (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}), the well-known GNU utilities and tool chain, as well as the graphical environment or system services of your choice." msgstr "Con el sistema@tie{}Guix, @emph{declara} todos los aspectos de la configuración del sistema y Guix se hace cargo de instanciar la configuración de manera transaccional, reproducible y sin estado global (@pxref{System Configuration}). El sistema Guix usa el núcleo Linux-libre, el sistema de inicialización Shepherd (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}), las conocidas utilidades y herramientas de compilación GNU, así como el entorno gráfico o servicios del sistema de su elección. " #. type: Plain text -#: guix-git/doc/guix.texi:579 +#: guix-git/doc/guix.texi:590 #, fuzzy -msgid "Guix System is available on all the above platforms except @code{mips64el-linux} and @code{powerpc64le-linux}." +msgid "Guix System is available on all the above platforms except @code{mips64el-linux}, @code{powerpc-linux}, @code{powerpc64le-linux} and @code{riscv64-linux}." msgstr "El sistema Guix está disponible en todas las plataformas previas excepto @code{mips64el-linux}." #. type: Plain text -#: guix-git/doc/guix.texi:583 +#: guix-git/doc/guix.texi:594 msgid "For information on porting to other architectures or kernels, @pxref{Porting}." msgstr "Para información sobre el transporte a otras arquitecturas o núcleos, @pxref{Porting}." #. type: Plain text -#: guix-git/doc/guix.texi:586 +#: guix-git/doc/guix.texi:597 msgid "Building this distribution is a cooperative effort, and you are invited to join! @xref{Contributing}, for information about how you can help." msgstr "La construcción de esta distribución es un esfuerzo cooperativo, ¡y esta invitada a unirse! @xref{Contributing}, para información sobre cómo puede ayudar." #. type: cindex -#: guix-git/doc/guix.texi:592 +#: guix-git/doc/guix.texi:603 #, no-wrap msgid "installing Guix" msgstr "instalar Guix" # FUZZY #. type: quotation -#: guix-git/doc/guix.texi:604 +#: guix-git/doc/guix.texi:615 msgid "We recommend the use of this @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, shell installer script} to install Guix on top of a running GNU/Linux system, thereafter called a @dfn{foreign distro}.@footnote{This section is concerned with the installation of the package manager, which can be done on top of a running GNU/Linux system. If, instead, you want to install the complete GNU operating system, @pxref{System Installation}.} The script automates the download, installation, and initial configuration of Guix. It should be run as the root user." msgstr "Recomendamos el uso de este @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, guión de instalación} para instalar Guix sobre un sistema GNU/Linux en ejecución, de aquí en adelante referido como una @dfn{distribución distinta}.@footnote{Esta sección está dedicada a la instalación del gestor de paquetes, que puede realizarse sobre un sistema GNU/Linux ya en ejecución. Si, en vez de eso, desea instalar el sistema operativo GNU completo, @pxref{System Installation}.} El guión automatiza la descarga, instalación y configuración inicial de Guix. Debe ejecutarse como la usuaria de administración root." # TODO (MAAV): extranjera no es demasiado exacto #. type: cindex -#: guix-git/doc/guix.texi:606 guix-git/doc/guix.texi:1830 +#: guix-git/doc/guix.texi:617 guix-git/doc/guix.texi:1847 #, no-wrap msgid "foreign distro" msgstr "distribución distinta" #. type: cindex -#: guix-git/doc/guix.texi:607 +#: guix-git/doc/guix.texi:618 #, no-wrap msgid "directories related to foreign distro" msgstr "directorios relacionados con una distribución distinta" #. type: Plain text -#: guix-git/doc/guix.texi:612 +#: guix-git/doc/guix.texi:623 msgid "When installed on a foreign distro, GNU@tie{}Guix complements the available tools without interference. Its data lives exclusively in two directories, usually @file{/gnu/store} and @file{/var/guix}; other files on your system, such as @file{/etc}, are left untouched." msgstr "Cuando está instalado sobre una distribución distinta, GNU@tie{}Guix complementa las herramientas disponibles sin interferencias. Sus datos radican exclusivamente en dos directorios, normalmente @file{/gnu/store} y @file{/var/guix}; otros archivos en su sistema, como @file{/etc}, permanecen intactos." #. type: Plain text -#: guix-git/doc/guix.texi:615 +#: guix-git/doc/guix.texi:626 msgid "Once installed, Guix can be updated by running @command{guix pull} (@pxref{Invoking guix pull})." msgstr "Una vez instalado, Guix puede ser actualizado ejecutando @command{guix pull} (@pxref{Invoking guix pull}." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:620 +#: guix-git/doc/guix.texi:631 msgid "If you prefer to perform the installation steps manually or want to tweak them, you may find the following subsections useful. They describe the software requirements of Guix, as well as how to install it manually and get ready to use it." msgstr "Si prefiere realizar los pasos de instalación manualmente o desea personalizarlos, puede encontrar útiles las siguientes instrucciones. Describen los requisitos de software de Guix, así como su instalación manual y la preparación para su uso." #. type: cindex -#: guix-git/doc/guix.texi:634 +#: guix-git/doc/guix.texi:645 #, no-wrap msgid "installing Guix from binaries" msgstr "instalar Guix desde binarios" #. type: cindex -#: guix-git/doc/guix.texi:635 +#: guix-git/doc/guix.texi:646 #, no-wrap msgid "installer script" msgstr "guión del instalador" # TODO: (MAAV) repensar #. type: Plain text -#: guix-git/doc/guix.texi:641 +#: guix-git/doc/guix.texi:652 msgid "This section describes how to install Guix on an arbitrary system from a self-contained tarball providing binaries for Guix and for all its dependencies. This is often quicker than installing from source, which is described in the next sections. The only requirement is to have GNU@tie{}tar and Xz." msgstr "Esta sección describe cómo instalar Guix en un sistema arbitrario desde un archivador autocontenido que proporciona los binarios para Guix y todas sus dependencias. Esto es normalmente más rápido que una instalación desde las fuentes, la cual es descrita en las siguientes secciones. El único requisito es tener GNU@tie{}tar y Xz." #. type: quotation -#: guix-git/doc/guix.texi:649 +#: guix-git/doc/guix.texi:660 msgid "We recommend the use of this @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, shell installer script}. The script automates the download, installation, and initial configuration steps described below. It should be run as the root user. As root, you can thus run this:" msgstr "Le recomendamos el uso de este @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, guión de instalación}. Automatiza la descarga, instalación y los pasos iniciales de configuración descritos a continuación. Debe ser ejecutarse como root. Mediante el uso de dicha cuenta puede ejecutar esto:" #. type: example -#: guix-git/doc/guix.texi:655 +#: guix-git/doc/guix.texi:666 #, no-wrap msgid "" "cd /tmp\n" @@ -5618,35 +5687,35 @@ msgstr "" "./guix-install.sh\n" #. type: quotation -#: guix-git/doc/guix.texi:659 +#: guix-git/doc/guix.texi:670 msgid "When you're done, @pxref{Application Setup} for extra configuration you might need, and @ref{Getting Started} for your first steps!" msgstr "Cuando haya terminado, @pxref{Application Setup} para obtener información adicional que pueda necesitar, ¡y @ref{Getting Started} para sus primeros pasos!" # TODO: (MAAV) repensar #. type: Plain text -#: guix-git/doc/guix.texi:662 +#: guix-git/doc/guix.texi:673 msgid "Installing goes along these lines:" msgstr "La instalación consiste más o menos en los siguientes pasos:" #. type: cindex -#: guix-git/doc/guix.texi:665 +#: guix-git/doc/guix.texi:676 #, no-wrap msgid "downloading Guix binary" msgstr "descargar el binario de Guix" # FUZZY FUZZY #. type: enumerate -#: guix-git/doc/guix.texi:671 +#: guix-git/doc/guix.texi:682 msgid "Download the binary tarball from @indicateurl{@value{BASE-URL}/guix-binary-@value{VERSION}.x86_64-linux.tar.xz}, where @code{x86_64-linux} can be replaced with @code{i686-linux} for an @code{i686} (32-bits) machine already running the kernel Linux, and so on (@pxref{GNU Distribution})." msgstr "Descargue el archivador con los binarios de @indicateurl{@value{BASE-URL}/guix-binary-@value{VERSION}.x86_64-linux.tar.xz}, donde, por ejemplo, @code{x86_64-linux} puede sustituirse por @code{i686-linux} para una máquina @code{i686} (32 bits) que ejecute el núcleo Linux (@pxref{GNU Distribution})." #. type: enumerate -#: guix-git/doc/guix.texi:675 +#: guix-git/doc/guix.texi:686 msgid "Make sure to download the associated @file{.sig} file and to verify the authenticity of the tarball against it, along these lines:" msgstr "Asegúrese de descargar el archivo @file{.sig} asociado y de verificar la autenticidad del archivador con él, más o menos así:" #. type: example -#: guix-git/doc/guix.texi:679 +#: guix-git/doc/guix.texi:690 #, no-wrap msgid "" "$ wget @value{BASE-URL}/guix-binary-@value{VERSION}.x86_64-linux.tar.xz.sig\n" @@ -5656,12 +5725,12 @@ msgstr "" "$ gpg --verify guix-binary-@value{VERSION}.x86_64-linux.tar.xz.sig\n" #. type: Plain text -#: guix-git/doc/guix.texi:683 guix-git/doc/guix.texi:2173 +#: guix-git/doc/guix.texi:694 guix-git/doc/guix.texi:2190 msgid "If that command fails because you do not have the required public key, then run this command to import it:" msgstr "Si la orden falla porque no dispone de la clave pública necesaria, entonces ejecute esta otra orden para importarla:" #. type: example -#: guix-git/doc/guix.texi:687 +#: guix-git/doc/guix.texi:698 #, no-wrap msgid "" "$ wget '@value{OPENPGP-SIGNING-KEY-URL}' \\\n" @@ -5671,22 +5740,22 @@ msgstr "" " -qO - | gpg --import -\n" #. type: Plain text -#: guix-git/doc/guix.texi:691 guix-git/doc/guix.texi:2181 +#: guix-git/doc/guix.texi:702 guix-git/doc/guix.texi:2198 msgid "and rerun the @code{gpg --verify} command." msgstr "y vuelva a ejecutar la orden @code{gpg --verify}." #. type: Plain text -#: guix-git/doc/guix.texi:694 guix-git/doc/guix.texi:2184 +#: guix-git/doc/guix.texi:705 guix-git/doc/guix.texi:2201 msgid "Take note that a warning like ``This key is not certified with a trusted signature!'' is normal." msgstr "Tenga en cuenta que un aviso del tipo ``Esta clave no esta certificada con una firma de confianza'' es normal." #. type: enumerate -#: guix-git/doc/guix.texi:700 +#: guix-git/doc/guix.texi:711 msgid "Now, you need to become the @code{root} user. Depending on your distribution, you may have to run @code{su -} or @code{sudo -i}. As @code{root}, run:" msgstr "Ahora necesita convertirse en la usuaria @code{root}. Dependiendo de su distribución, puede que tenga que ejecutar @code{su -} o @code{sudo -i}. Como @code{root}, ejecute:" #. type: example -#: guix-git/doc/guix.texi:706 +#: guix-git/doc/guix.texi:717 #, no-wrap msgid "" "# cd /tmp\n" @@ -5700,28 +5769,28 @@ msgstr "" "# mv var/guix /var/ && mv gnu /\n" #. type: enumerate -#: guix-git/doc/guix.texi:711 +#: guix-git/doc/guix.texi:722 msgid "This creates @file{/gnu/store} (@pxref{The Store}) and @file{/var/guix}. The latter contains a ready-to-use profile for @code{root} (see next step)." msgstr "Esto crea @file{/gnu/store} (@pxref{The Store}) y @file{/var/guix}. El último contiene un perfil listo para usar para @code{root} (véase el siguiente paso)." #. type: enumerate -#: guix-git/doc/guix.texi:714 +#: guix-git/doc/guix.texi:725 msgid "Do @emph{not} unpack the tarball on a working Guix system since that would overwrite its own essential files." msgstr "@emph{No} extraiga el archivador en un sistema Guix ya funcionando ya que sobreescribiría sus propios archivos esenciales." # TODO (MAAV): Revisar #. type: enumerate -#: guix-git/doc/guix.texi:724 +#: guix-git/doc/guix.texi:735 msgid "The @option{--warning=no-timestamp} option makes sure GNU@tie{}tar does not emit warnings about ``implausibly old time stamps'' (such warnings were triggered by GNU@tie{}tar 1.26 and older; recent versions are fine). They stem from the fact that all the files in the archive have their modification time set to 1 (which means January 1st, 1970). This is done on purpose to make sure the archive content is independent of its creation time, thus making it reproducible." msgstr "La opción @option{--warning=no-timestamp} asegura que GNU@tie{}tar no emite avisos sobre ``marcas de tiempo imposibles'' (dichos avisos eran emitidos por GNU@tie{}tar 1.26 y anteriores; las versiones recientes están bien). Parten del hecho de que todos los archivos en el archivador tienen su tiempo de modificación con valor uno (que significa el 1 de enero de 1970). Esto se hace de manera voluntaria para asegurarse de que el contenido del archivador es independiente de su fecha de creación, haciendolo por tanto reproducible." #. type: enumerate -#: guix-git/doc/guix.texi:728 +#: guix-git/doc/guix.texi:739 msgid "Make the profile available under @file{~root/.config/guix/current}, which is where @command{guix pull} will install updates (@pxref{Invoking guix pull}):" msgstr "Ponga disponible el perfil en @file{~root/.config/guix/current}, que es donde @command{guix pull} instalará las actualizaciones (@pxref{Invoking guix pull}):" #. type: example -#: guix-git/doc/guix.texi:733 +#: guix-git/doc/guix.texi:744 #, no-wrap msgid "" "# mkdir -p ~root/.config/guix\n" @@ -5733,12 +5802,12 @@ msgstr "" " ~root/.config/guix/current\n" #. type: enumerate -#: guix-git/doc/guix.texi:737 +#: guix-git/doc/guix.texi:748 msgid "Source @file{etc/profile} to augment @env{PATH} and other relevant environment variables:" msgstr "Cargue @file{etc/profile} para aumentar @env{PATH} y otras variables de entorno relevantes:" #. type: example -#: guix-git/doc/guix.texi:741 +#: guix-git/doc/guix.texi:752 #, no-wrap msgid "" "# GUIX_PROFILE=\"`echo ~root`/.config/guix/current\" ; \\\n" @@ -5748,22 +5817,22 @@ msgstr "" " source $GUIX_PROFILE/etc/profile\n" #. type: enumerate -#: guix-git/doc/guix.texi:746 +#: guix-git/doc/guix.texi:757 msgid "Create the group and user accounts for build users as explained below (@pxref{Build Environment Setup})." msgstr "Cree el grupo y las cuentas de usuaria para las usuarias de construcción como se explica a continuación (@pxref{Build Environment Setup})." #. type: enumerate -#: guix-git/doc/guix.texi:749 +#: guix-git/doc/guix.texi:760 msgid "Run the daemon, and set it to automatically start on boot." msgstr "Ejecute el daemon, y configure su inicio automático durante el arranque." #. type: enumerate -#: guix-git/doc/guix.texi:752 +#: guix-git/doc/guix.texi:763 msgid "If your host distro uses the systemd init system, this can be achieved with these commands:" msgstr "Si su distribución anfitriona usa el sistema de inicio systemd, puede hacerlo con las siguientes órdenes:" #. type: example -#: guix-git/doc/guix.texi:765 +#: guix-git/doc/guix.texi:776 #, no-wrap msgid "" "# cp ~root/.config/guix/current/lib/systemd/system/gnu-store.mount \\\n" @@ -5777,12 +5846,12 @@ msgstr "" "# systemctl enable --now gnu-store.mount guix-daemon\n" #. type: enumerate -#: guix-git/doc/guix.texi:768 +#: guix-git/doc/guix.texi:779 msgid "You may also want to arrange for @command{guix gc} to run periodically:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:774 +#: guix-git/doc/guix.texi:785 #, fuzzy, no-wrap #| msgid "" #| "# cp ~root/.config/guix/current/lib/systemd/system/gnu-store.mount \\\n" @@ -5801,17 +5870,17 @@ msgstr "" "# systemctl enable --now gnu-store.mount guix-daemon\n" #. type: enumerate -#: guix-git/doc/guix.texi:778 +#: guix-git/doc/guix.texi:789 msgid "You may want to edit @file{guix-gc.service} to adjust the command line options to fit your needs (@pxref{Invoking guix gc})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:780 guix-git/doc/guix.texi:13740 +#: guix-git/doc/guix.texi:791 guix-git/doc/guix.texi:14097 msgid "If your host distro uses the Upstart init system:" msgstr "Si su distribución anfitriona usa el sistema de inicio Upstart:" #. type: example -#: guix-git/doc/guix.texi:786 +#: guix-git/doc/guix.texi:797 #, no-wrap msgid "" "# initctl reload-configuration\n" @@ -5825,12 +5894,12 @@ msgstr "" "# start guix-daemon\n" #. type: enumerate -#: guix-git/doc/guix.texi:789 +#: guix-git/doc/guix.texi:800 msgid "Otherwise, you can still start the daemon manually with:" msgstr "En otro caso, todavía puede iniciar el daemon manualmente con:" #. type: example -#: guix-git/doc/guix.texi:793 +#: guix-git/doc/guix.texi:804 #, no-wrap msgid "" "# ~root/.config/guix/current/bin/guix-daemon \\\n" @@ -5840,12 +5909,12 @@ msgstr "" " --build-users-group=guixbuild\n" #. type: enumerate -#: guix-git/doc/guix.texi:798 +#: guix-git/doc/guix.texi:809 msgid "Make the @command{guix} command available to other users on the machine, for instance with:" msgstr "Haga accesible la orden @command{guix} a otras usuarias de la máquina, por ejemplo con:" #. type: example -#: guix-git/doc/guix.texi:803 +#: guix-git/doc/guix.texi:814 #, no-wrap msgid "" "# mkdir -p /usr/local/bin\n" @@ -5857,12 +5926,12 @@ msgstr "" "# ln -s /var/guix/profiles/per-user/root/current-guix/bin/guix\n" #. type: enumerate -#: guix-git/doc/guix.texi:807 +#: guix-git/doc/guix.texi:818 msgid "It is also a good idea to make the Info version of this manual available there:" msgstr "Es también una buena idea poner disponible la versión Info de este manual ahí:" #. type: example -#: guix-git/doc/guix.texi:813 +#: guix-git/doc/guix.texi:824 #, no-wrap msgid "" "# mkdir -p /usr/local/share/info\n" @@ -5876,26 +5945,26 @@ msgstr "" " do ln -s $i ; done\n" #. type: enumerate -#: guix-git/doc/guix.texi:819 +#: guix-git/doc/guix.texi:830 msgid "That way, assuming @file{/usr/local/share/info} is in the search path, running @command{info guix} will open this manual (@pxref{Other Info Directories,,, texinfo, GNU Texinfo}, for more details on changing the Info search path)." msgstr "De este modo, asumiendo que @file{/usr/local/share/info} está en la ruta de búsqueda, ejecutar @command{info guix.es} abrirá este manual (@pxref{Other Info Directories,,, texinfo, GNU Texinfo}, para más detalles sobre cómo cambiar la ruta de búsqueda de Info)." #. type: cindex -#: guix-git/doc/guix.texi:821 guix-git/doc/guix.texi:3798 -#: guix-git/doc/guix.texi:16494 +#: guix-git/doc/guix.texi:832 guix-git/doc/guix.texi:3816 +#: guix-git/doc/guix.texi:16851 #, no-wrap msgid "substitutes, authorization thereof" msgstr "sustituciones, autorización de las mismas" #. type: enumerate -#: guix-git/doc/guix.texi:825 +#: guix-git/doc/guix.texi:836 #, fuzzy #| msgid "To use substitutes from @code{@value{SUBSTITUTE-SERVER}} or one of its mirrors (@pxref{Substitutes}), authorize them:" msgid "To use substitutes from @code{@value{SUBSTITUTE-SERVER-1}}, @code{@value{SUBSTITUTE-SERVER-2}} or a mirror (@pxref{Substitutes}), authorize them:" msgstr "Para usar sustituciones de @code{@value{SUBSTITUTE-SERVER}} o uno de sus espejos (@pxref{Substitutes}), debe autorizarlas:" #. type: example -#: guix-git/doc/guix.texi:831 +#: guix-git/doc/guix.texi:842 #, fuzzy, no-wrap #| msgid "" #| "# guix archive --authorize < \\\n" @@ -5910,49 +5979,49 @@ msgstr "" " ~root/.config/guix/current/share/guix/@value{SUBSTITUTE-SERVER}.pub\n" #. type: quotation -#: guix-git/doc/guix.texi:838 +#: guix-git/doc/guix.texi:849 msgid "If you do not enable substitutes, Guix will end up building @emph{everything} from source on your machine, making each installation and upgrade very expensive. @xref{On Trusting Binaries}, for a discussion of reasons why one might want do disable substitutes." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:843 +#: guix-git/doc/guix.texi:854 msgid "Each user may need to perform a few additional steps to make their Guix environment ready for use, @pxref{Application Setup}." msgstr "Cada usuaria puede necesitar dar algunos pasos adicionales para preparar su entorno de Guix para el uso diario, @pxref{Application Setup}." #. type: Plain text -#: guix-git/doc/guix.texi:846 +#: guix-git/doc/guix.texi:857 msgid "Voilà, the installation is complete!" msgstr "Voilà, ¡la instalación está completa!" #. type: Plain text -#: guix-git/doc/guix.texi:849 +#: guix-git/doc/guix.texi:860 msgid "You can confirm that Guix is working by installing a sample package into the root profile:" msgstr "Puede confirmar que Guix está funcionando instalando un paquete de ejemplo en su perfil de root:" #. type: example -#: guix-git/doc/guix.texi:852 +#: guix-git/doc/guix.texi:863 #, no-wrap msgid "# guix install hello\n" msgstr "# guix install hello\n" #. type: Plain text -#: guix-git/doc/guix.texi:856 +#: guix-git/doc/guix.texi:867 msgid "The binary installation tarball can be (re)produced and verified simply by running the following command in the Guix source tree:" msgstr "El archivador de la instalación binaria puede ser (re)producido y verificado simplemente ejecutando la siguiente orden en el árbol de fuentes de Guix:" #. type: example -#: guix-git/doc/guix.texi:859 +#: guix-git/doc/guix.texi:870 #, no-wrap msgid "make guix-binary.@var{system}.tar.xz\n" msgstr "make guix-binary.@var{sistema}.tar.xz\n" #. type: Plain text -#: guix-git/doc/guix.texi:863 +#: guix-git/doc/guix.texi:874 msgid "...@: which, in turn, runs:" msgstr "...@: que a su vez ejecuta:" #. type: example -#: guix-git/doc/guix.texi:867 +#: guix-git/doc/guix.texi:878 #, no-wrap msgid "" "guix pack -s @var{system} --localstatedir \\\n" @@ -5962,231 +6031,237 @@ msgstr "" " --profile-name=current-guix guix\n" #. type: Plain text -#: guix-git/doc/guix.texi:870 +#: guix-git/doc/guix.texi:881 msgid "@xref{Invoking guix pack}, for more info on this handy tool." msgstr "@xref{Invoking guix pack}, para más información sobre esta útil herramienta." #. type: Plain text -#: guix-git/doc/guix.texi:878 +#: guix-git/doc/guix.texi:889 msgid "This section lists requirements when building Guix from source. The build procedure for Guix is the same as for other GNU software, and is not covered here. Please see the files @file{README} and @file{INSTALL} in the Guix source tree for additional details." msgstr "Esta sección enumera los requisitos para construir Guix desde las fuentes. El procedimiento de construcción de Guix es el mismo que el de otro software GNU, y no está cubierto aquí. Por favor, eche un vistazo a los archivos @file{README} y @file{INSTALL} en el árbol de fuentes de Guix para obtener detalles adicionales." #. type: cindex -#: guix-git/doc/guix.texi:879 +#: guix-git/doc/guix.texi:890 #, no-wrap msgid "official website" msgstr "sitio web oficial" #. type: Plain text -#: guix-git/doc/guix.texi:882 +#: guix-git/doc/guix.texi:893 msgid "GNU Guix is available for download from its website at @url{https://www.gnu.org/software/guix/}." msgstr "GNU Guix está disponible para descarga desde su sitio web en @url{http://www.gnu.org/software/guix/}." #. type: Plain text -#: guix-git/doc/guix.texi:884 +#: guix-git/doc/guix.texi:895 msgid "GNU Guix depends on the following packages:" msgstr "GNU Guix depende de los siguientes paquetes:" #. type: item -#: guix-git/doc/guix.texi:886 +#: guix-git/doc/guix.texi:897 #, fuzzy, no-wrap #| msgid "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x or" -msgid "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x;" +msgid "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x," msgstr "@url{https://gnu.org/software/guile/, GNU Guile}, versión 3.0.x o" +#. type: itemize +#: guix-git/doc/guix.texi:899 +#, fuzzy +msgid "version 3.0.3 or later;" +msgstr "0.1.0 o posterior;" + #. type: item -#: guix-git/doc/guix.texi:887 +#: guix-git/doc/guix.texi:899 #, no-wrap msgid "@url{https://notabug.org/cwebber/guile-gcrypt, Guile-Gcrypt}, version" msgstr "@url{https://notabug.org/cwebber/guile-gcrypt, Guile-Gcrypt}, versión" #. type: itemize -#: guix-git/doc/guix.texi:889 +#: guix-git/doc/guix.texi:901 msgid "0.1.0 or later;" msgstr "0.1.0 o posterior;" # TODO: (MAAV): ¿bindings? #. type: itemize -#: guix-git/doc/guix.texi:893 +#: guix-git/doc/guix.texi:905 msgid "@uref{https://gnutls.org/, GnuTLS}, specifically its Guile bindings (@pxref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile});" msgstr "@uref{https://gnutls.org/, GnuTLS}, específicamente su API para Guile (@pxref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile});" #. type: itemize -#: guix-git/doc/guix.texi:896 +#: guix-git/doc/guix.texi:908 msgid "@uref{https://notabug.org/guile-sqlite3/guile-sqlite3, Guile-SQLite3}, version 0.1.0 or later;" msgstr "@uref{https://notabug.org/guile-sqlite3/guile-sqlite3, Guile-SQLite3}, versión 0.1.0 o posterior;" #. type: item -#: guix-git/doc/guix.texi:896 +#: guix-git/doc/guix.texi:908 #, fuzzy, no-wrap msgid "@uref{https://notabug.org/guile-zlib/guile-zlib, Guile-zlib}," msgstr "@uref{https://notabug.org/guile-zlib/guile-zlib, Guile-zlib};" #. type: itemize -#: guix-git/doc/guix.texi:898 +#: guix-git/doc/guix.texi:910 #, fuzzy msgid "version 0.1.0 or later;" msgstr "0.1.0 o posterior;" #. type: item -#: guix-git/doc/guix.texi:898 +#: guix-git/doc/guix.texi:910 #, no-wrap msgid "@uref{https://notabug.org/guile-lzlib/guile-lzlib, Guile-lzlib};" msgstr "@uref{https://notabug.org/guile-lzlib/guile-lzlib, Guile-lzlib};" #. type: item -#: guix-git/doc/guix.texi:899 +#: guix-git/doc/guix.texi:911 #, fuzzy, no-wrap msgid "@uref{https://www.nongnu.org/guile-avahi/, Guile-Avahi};" msgstr "@uref{https://notabug.org/guile-zlib/guile-zlib, Guile-zlib};" #. type: itemize -#: guix-git/doc/guix.texi:903 +#: guix-git/doc/guix.texi:915 #, fuzzy #| msgid "@uref{https://gitlab.com/guile-git/guile-git, Guile-Git}, version 0.3.0 or later;" msgid "@uref{https://gitlab.com/guile-git/guile-git, Guile-Git}, version 0.5.0 or later;" msgstr "@uref{https://gitlab.com/guile-git/guile-git, Guile-Git}, versión 0.3.0 o posterior;" #. type: item -#: guix-git/doc/guix.texi:903 +#: guix-git/doc/guix.texi:915 #, no-wrap msgid "@uref{https://savannah.nongnu.org/projects/guile-json/, Guile-JSON}" msgstr "@uref{https://savannah.nongnu.org/projects/guile-json/, Guile-JSON}" #. type: itemize -#: guix-git/doc/guix.texi:905 +#: guix-git/doc/guix.texi:917 msgid "4.3.0 or later;" msgstr "4.3.0 o posterior;" #. type: item -#: guix-git/doc/guix.texi:905 +#: guix-git/doc/guix.texi:917 #, no-wrap msgid "@url{https://www.gnu.org/software/make/, GNU Make}." msgstr "@url{https://www.gnu.org/software/make/, GNU Make}." #. type: Plain text -#: guix-git/doc/guix.texi:909 +#: guix-git/doc/guix.texi:921 msgid "The following dependencies are optional:" msgstr "Las siguientes dependencias son opcionales:" #. type: itemize -#: guix-git/doc/guix.texi:917 +#: guix-git/doc/guix.texi:929 msgid "Support for build offloading (@pxref{Daemon Offload Setup}) and @command{guix copy} (@pxref{Invoking guix copy}) depends on @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH}, version 0.13.0 or later." msgstr "La delegación de construcciones (@pxref{Daemon Offload Setup}) y @command{guix copy} (@pxref{Invoking guix copy}) dependen de @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH}, versión 0.13.0 o posterior." #. type: itemize -#: guix-git/doc/guix.texi:922 +#: guix-git/doc/guix.texi:934 msgid "@uref{https://notabug.org/guile-zstd/guile-zstd, Guile-zstd}, for zstd compression and decompression in @command{guix publish} and for substitutes (@pxref{Invoking guix publish})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:926 +#: guix-git/doc/guix.texi:938 msgid "@uref{https://ngyro.com/software/guile-semver.html, Guile-Semver} for the @code{crate} importer (@pxref{Invoking guix import})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:931 +#: guix-git/doc/guix.texi:943 msgid "@uref{https://www.nongnu.org/guile-lib/doc/ref/htmlprag/, Guile-Lib} for the @code{go} importer (@pxref{Invoking guix import}) and for some of the ``updaters'' (@pxref{Invoking guix refresh})." msgstr "" # TODO: (MAAV) log #. type: itemize -#: guix-git/doc/guix.texi:935 +#: guix-git/doc/guix.texi:947 msgid "When @url{http://www.bzip.org, libbz2} is available, @command{guix-daemon} can use it to compress build logs." msgstr "Cuando @url{http://www.bzip.org, libbz2} está disponible, @command{guix daemon} puede usarla para comprimir los registros de construcción." #. type: Plain text -#: guix-git/doc/guix.texi:939 +#: guix-git/doc/guix.texi:951 msgid "Unless @option{--disable-daemon} was passed to @command{configure}, the following packages are also needed:" msgstr "Si no se ha proporcionado @option{--disable-daemon} a @command{configure}, los siguientes paquetes también son necesarios:" #. type: item -#: guix-git/doc/guix.texi:941 +#: guix-git/doc/guix.texi:953 #, no-wrap msgid "@url{https://gnupg.org/, GNU libgcrypt};" msgstr "@url{https://gnupg.org/, GNU libgcrypt};" #. type: item -#: guix-git/doc/guix.texi:942 +#: guix-git/doc/guix.texi:954 #, no-wrap msgid "@url{https://sqlite.org, SQLite 3};" msgstr "@url{https://sqlite.org, SQLite 3};" # FUZZY #. type: item -#: guix-git/doc/guix.texi:943 +#: guix-git/doc/guix.texi:955 #, no-wrap msgid "@url{https://gcc.gnu.org, GCC's g++}, with support for the" msgstr "@url{https://gcc.gnu.org, g++ de GCC}, con implementación" #. type: itemize -#: guix-git/doc/guix.texi:945 +#: guix-git/doc/guix.texi:957 msgid "C++11 standard." msgstr "del estándar C++11" #. type: cindex -#: guix-git/doc/guix.texi:947 +#: guix-git/doc/guix.texi:959 #, no-wrap msgid "state directory" msgstr "directorio de estado" #. type: Plain text -#: guix-git/doc/guix.texi:956 +#: guix-git/doc/guix.texi:968 msgid "When configuring Guix on a system that already has a Guix installation, be sure to specify the same state directory as the existing installation using the @option{--localstatedir} option of the @command{configure} script (@pxref{Directory Variables, @code{localstatedir},, standards, GNU Coding Standards}). Usually, this @var{localstatedir} option is set to the value @file{/var}. The @command{configure} script protects against unintended misconfiguration of @var{localstatedir} so you do not inadvertently corrupt your store (@pxref{The Store})." msgstr "Cuando se configura Guix en un sistema que ya tiene una instalación de Guix, asegúrese de especificar el mismo directorio de estado que el de la instalación existente usando la opción @option{--localstatedir} al guión @command{configure} (@pxref{Directory Variables, @code{localstatedir},, standards, GNU Coding Standards}). Habitualmente, esta opción @var{localstatedir} tiene el valor @file{/var}. El guión @command{configure} le proteje ante una mala configuración no deseada de @var{localstatedir} de modo que no pueda corromper inadvertidamente su almacén (@pxref{The Store})." #. type: cindex -#: guix-git/doc/guix.texi:960 +#: guix-git/doc/guix.texi:972 #, no-wrap msgid "test suite" msgstr "batería de pruebas" #. type: Plain text -#: guix-git/doc/guix.texi:966 +#: guix-git/doc/guix.texi:978 msgid "After a successful @command{configure} and @code{make} run, it is a good idea to run the test suite. It can help catch issues with the setup or environment, or bugs in Guix itself---and really, reporting test failures is a good way to help improve the software. To run the test suite, type:" msgstr "Después de una ejecución exitosa de @command{configure} y @code{make}, es una buena idea ejecutar la batería de pruebas. Puede ayudar a encontrar problemas con la configuración o el entorno, o errores en el mismo Guix---e informar de fallos en las pruebas es realmente una buena forma de ayudar a mejorar el software. Para ejecutar la batería de pruebas, teclee:" #. type: example -#: guix-git/doc/guix.texi:969 +#: guix-git/doc/guix.texi:981 #, no-wrap msgid "make check\n" msgstr "make check\n" # TODO (MAAV): caché #. type: Plain text -#: guix-git/doc/guix.texi:976 +#: guix-git/doc/guix.texi:988 msgid "Test cases can run in parallel: you can use the @code{-j} option of GNU@tie{}make to speed things up. The first run may take a few minutes on a recent machine; subsequent runs will be faster because the store that is created for test purposes will already have various things in cache." msgstr "Los casos de prueba pueden ejecutarse en paralelo: puede usar la opción @code{-j} de GNU@tie{}make para acelerar las cosas. La primera ejecución puede tomar algunos minutos en una máquina reciente; las siguientes ejecuciones serán más rápidas puesto que el almacén creado para las pruebas ya tendrá varias cosas en la caché." #. type: Plain text -#: guix-git/doc/guix.texi:979 +#: guix-git/doc/guix.texi:991 msgid "It is also possible to run a subset of the tests by defining the @code{TESTS} makefile variable as in this example:" msgstr "También es posible ejecutar un subconjunto de las pruebas definiendo la variable de makefile @code{TESTS} como en el ejemplo:" #. type: example -#: guix-git/doc/guix.texi:982 +#: guix-git/doc/guix.texi:994 #, no-wrap msgid "make check TESTS=\"tests/store.scm tests/cpio.scm\"\n" msgstr "make check TESTS=\"tests/store.scm tests/cpio.scm\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:987 +#: guix-git/doc/guix.texi:999 msgid "By default, tests results are displayed at a file level. In order to see the details of every individual test cases, it is possible to define the @code{SCM_LOG_DRIVER_FLAGS} makefile variable as in this example:" msgstr "Por defecto, los resultados de las pruebas se muestran a nivel de archivo. Para ver los detalles de cada caso de prueba individual, es posible definir la variable de makefile @code{SCM_LOG_DRIVER_FLAGS} como en el ejemplo:" #. type: example -#: guix-git/doc/guix.texi:990 +#: guix-git/doc/guix.texi:1002 #, no-wrap msgid "make check TESTS=\"tests/base64.scm\" SCM_LOG_DRIVER_FLAGS=\"--brief=no\"\n" msgstr "make check TESTS=\"tests/base64.scm\" SCM_LOG_DRIVER_FLAGS=\"--brief=no\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:998 +#: guix-git/doc/guix.texi:1010 msgid "The underlying SRFI 64 custom Automake test driver used for the 'check' test suite (located at @file{build-aux/test-driver.scm}) also allows selecting which test cases to run at a finer level, via its @option{--select} and @option{--exclude} options. Here's an example, to run all the test cases from the @file{tests/packages.scm} test file whose names start with ``transaction-upgrade-entry'':" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1002 +#: guix-git/doc/guix.texi:1014 #, no-wrap msgid "" "export SCM_LOG_DRIVER_FLAGS=\"--select=^transaction-upgrade-entry\"\n" @@ -6194,116 +6269,116 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1008 +#: guix-git/doc/guix.texi:1020 msgid "Those wishing to inspect the results of failed tests directly from the command line can add the @option{--errors-only=yes} option to the @code{SCM_LOG_DRIVER_FLAGS} makefile variable and set the @code{VERBOSE} Automake makefile variable, as in:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1011 +#: guix-git/doc/guix.texi:1023 #, fuzzy, no-wrap msgid "make check SCM_LOG_DRIVER_FLAGS=\"--brief=no --errors-only=yes\" VERBOSE=1\n" msgstr "make check TESTS=\"tests/base64.scm\" SCM_LOG_DRIVER_FLAGS=\"--brief=no\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:1016 +#: guix-git/doc/guix.texi:1028 msgid "The @option{--show-duration=yes} option can be used to print the duration of the individual test cases, when used in combination with @option{--brief=no}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1019 +#: guix-git/doc/guix.texi:1031 #, fuzzy, no-wrap msgid "make check SCM_LOG_DRIVER_FLAGS=\"--brief=no --show-duration=yes\"\n" msgstr "make check TESTS=\"tests/base64.scm\" SCM_LOG_DRIVER_FLAGS=\"--brief=no\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:1023 +#: guix-git/doc/guix.texi:1035 msgid "@xref{Parallel Test Harness,,,automake,GNU Automake} for more information about the Automake Parallel Test Harness." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1028 +#: guix-git/doc/guix.texi:1040 msgid "Upon failure, please email @email{bug-guix@@gnu.org} and attach the @file{test-suite.log} file. Please specify the Guix version being used as well as version numbers of the dependencies (@pxref{Requirements}) in your message." msgstr "En caso de fallo, le rogamos que envíe un correo a @email{bug-guix@@gnu.org} y adjunte el archivo @file{test-suite.log}. Por favor, especifique la versión de Guix usada así como los números de versión de las dependencias (@pxref{Requirements}) en su mensaje." #. type: Plain text -#: guix-git/doc/guix.texi:1032 +#: guix-git/doc/guix.texi:1044 msgid "Guix also comes with a whole-system test suite that tests complete Guix System instances. It can only run on systems where Guix is already installed, using:" msgstr "Guix también viene como una batería de pruebas del sistema completo que prueban instancias completas del sistema Guix. Se puede ejecutar únicamente en sistemas donde Guix ya está instalado, usando:" #. type: example -#: guix-git/doc/guix.texi:1035 +#: guix-git/doc/guix.texi:1047 #, no-wrap msgid "make check-system\n" msgstr "make check-system\n" #. type: Plain text -#: guix-git/doc/guix.texi:1039 +#: guix-git/doc/guix.texi:1051 msgid "or, again, by defining @code{TESTS} to select a subset of tests to run:" msgstr "o, de nuevo, definiendo @code{TESTS} para seleccionar un subconjunto de las pruebas a ejecutar:" #. type: example -#: guix-git/doc/guix.texi:1042 +#: guix-git/doc/guix.texi:1054 #, no-wrap msgid "make check-system TESTS=\"basic mcron\"\n" msgstr "make check-system TESTS=\"basic mcron\"\n" # TODO: (MAAV) baratas? #. type: Plain text -#: guix-git/doc/guix.texi:1050 +#: guix-git/doc/guix.texi:1062 msgid "These system tests are defined in the @code{(gnu tests @dots{})} modules. They work by running the operating systems under test with lightweight instrumentation in a virtual machine (VM). They can be computationally intensive or rather cheap, depending on whether substitutes are available for their dependencies (@pxref{Substitutes}). Some of them require a lot of storage space to hold VM images." msgstr "Estas pruebas de sistema están definidas en los módulos @code{(gnu tests @dots{})}. Funcionan ejecutando el sistema operativo con una instrumentación ligera en una máquina virtual (VM). Pueden ser computacionalmente intensivas o bastante baratas, dependiendo de si hay sustituciones disponibles para sus dependencias (@pxref{Substitutes}). Algunas requieren mucho espacio de almacenamiento para alojar las imágenes de la máquina virtual." #. type: Plain text -#: guix-git/doc/guix.texi:1053 +#: guix-git/doc/guix.texi:1065 msgid "Again in case of test failures, please send @email{bug-guix@@gnu.org} all the details." msgstr "De nuevo, en caso de fallos en las pruebas, le rogamos que envíe a @email{bug-guix@@gnu.org} todos los detalles." #. type: cindex -#: guix-git/doc/guix.texi:1057 +#: guix-git/doc/guix.texi:1069 #, no-wrap msgid "daemon" msgstr "daemon" # TODO: (MAAV) repasar #. type: Plain text -#: guix-git/doc/guix.texi:1065 +#: guix-git/doc/guix.texi:1077 msgid "Operations such as building a package or running the garbage collector are all performed by a specialized process, the @dfn{build daemon}, on behalf of clients. Only the daemon may access the store and its associated database. Thus, any operation that manipulates the store goes through the daemon. For instance, command-line tools such as @command{guix package} and @command{guix build} communicate with the daemon (@i{via} remote procedure calls) to instruct it what to do." msgstr "Operaciones como la construcción de un paquete o la ejecución del recolector de basura son realizadas por un proceso especializado, el @dfn{daemon de construcción}, en delegación de sus clientes. Únicamente el daemon puede acceder al almacén y su base de datos asociada. Por tanto, cualquier operación que manipula el almacén se realiza a través del daemon. Por ejemplo, las herramientas de línea de órdenes como @command{guix package} y @command{guix build} se comunican con el daemon (@i{via} llamadas a procedimientos remotos) para indicarle qué hacer." #. type: Plain text -#: guix-git/doc/guix.texi:1069 +#: guix-git/doc/guix.texi:1081 msgid "The following sections explain how to prepare the build daemon's environment. See also @ref{Substitutes}, for information on how to allow the daemon to download pre-built binaries." msgstr "Las siguientes secciones explican cómo preparar el entorno del daemon de construcción. Véase también @ref{Substitutes}, para información sobre cómo permitir al daemon descargar binarios pre-construidos." #. type: cindex -#: guix-git/doc/guix.texi:1079 guix-git/doc/guix.texi:1542 +#: guix-git/doc/guix.texi:1091 guix-git/doc/guix.texi:1559 #, no-wrap msgid "build environment" msgstr "entorno de construcción" #. type: Plain text -#: guix-git/doc/guix.texi:1087 +#: guix-git/doc/guix.texi:1099 msgid "In a standard multi-user setup, Guix and its daemon---the @command{guix-daemon} program---are installed by the system administrator; @file{/gnu/store} is owned by @code{root} and @command{guix-daemon} runs as @code{root}. Unprivileged users may use Guix tools to build packages or otherwise access the store, and the daemon will do it on their behalf, ensuring that the store is kept in a consistent state, and allowing built packages to be shared among users." msgstr "En una configuración multiusuaria estándar, Guix y su daemon---el programa @command{guix-daemon}---son instalados por la administradora del sistema; @file{/gnu/store} pertenece a @code{root} y @command{guix-daemon} se ejecuta como @code{root}. Usuarias sin privilegios pueden usar las herramientas de Guix para construir paquetes o acceder al almacén de otro modo, y el daemon lo hará en delegación suya, asegurando que el almacén permanece en un estado consistente, y permitiendo compartir entre usuarias los paquetes construidos." #. type: cindex -#: guix-git/doc/guix.texi:1088 +#: guix-git/doc/guix.texi:1100 #, no-wrap msgid "build users" msgstr "usuarias de construcción" #. type: Plain text -#: guix-git/doc/guix.texi:1099 +#: guix-git/doc/guix.texi:1111 msgid "When @command{guix-daemon} runs as @code{root}, you may not want package build processes themselves to run as @code{root} too, for obvious security reasons. To avoid that, a special pool of @dfn{build users} should be created for use by build processes started by the daemon. These build users need not have a shell and a home directory: they will just be used when the daemon drops @code{root} privileges in build processes. Having several such users allows the daemon to launch distinct build processes under separate UIDs, which guarantees that they do not interfere with each other---an essential feature since builds are regarded as pure functions (@pxref{Introduction})." msgstr "Mientras que @command{guix-daemon} se ejecuta como @code{root}, puede que no desee que los procesos de construcción de paquetes se ejecuten como @code{root} también, por razones de seguridad obvias. Para evitarlo, una reserva especial de @dfn{usuarias de construcción} debe ser creada para ser usada por los procesos de construcción iniciados por el daemon. Estas usuarias de construcción no necesitan tener un intérprete ni un directorio home: simplemente serán usadas cuando el daemon se deshaga de los privilegios de @code{root} en los procesos de construcción. Tener varias de dichas usuarias permite al daemon lanzar distintos procesos de construcción bajo UID separados, lo que garantiza que no interferirán entre ellos---una característica esencial ya que las construcciones se caracterizan como funciones puras (@pxref{Introduction})." #. type: Plain text -#: guix-git/doc/guix.texi:1102 +#: guix-git/doc/guix.texi:1114 msgid "On a GNU/Linux system, a build user pool may be created like this (using Bash syntax and the @code{shadow} commands):" msgstr "En un sistema GNU/Linux, una reserva de usuarias de construcción puede ser creada así (usando la sintaxis de Bash y las órdenes de @code{shadow}):" #. type: example -#: guix-git/doc/guix.texi:1114 +#: guix-git/doc/guix.texi:1126 #, fuzzy, no-wrap msgid "" "# groupadd --system guixbuild\n" @@ -6325,144 +6400,149 @@ msgstr "" " done\n" #. type: Plain text -#: guix-git/doc/guix.texi:1124 +#: guix-git/doc/guix.texi:1136 msgid "The number of build users determines how many build jobs may run in parallel, as specified by the @option{--max-jobs} option (@pxref{Invoking guix-daemon, @option{--max-jobs}}). To use @command{guix system vm} and related commands, you may need to add the build users to the @code{kvm} group so they can access @file{/dev/kvm}, using @code{-G guixbuild,kvm} instead of @code{-G guixbuild} (@pxref{Invoking guix system})." msgstr "El número de usuarias de construcción determina cuantos trabajos de construcción se pueden ejecutar en paralelo, especificado por la opción @option{--max-jobs} (@pxref{Invoking guix-daemon, @option{--max-jobs}}). Para usar @command{guix system vm} y las órdenes relacionadas, puede necesitar añadir las usuarias de construcción al grupo @code{kvm} para que puedan acceder a @file{/dev/kvm}, usando @code{-G guixbuild,kvm} en vez de @code{-G guixbuild} (@pxref{Invoking guix system})." #. type: Plain text -#: guix-git/doc/guix.texi:1133 +#: guix-git/doc/guix.texi:1145 msgid "The @code{guix-daemon} program may then be run as @code{root} with the following command@footnote{If your machine uses the systemd init system, dropping the @file{@var{prefix}/lib/systemd/system/guix-daemon.service} file in @file{/etc/systemd/system} will ensure that @command{guix-daemon} is automatically started. Similarly, if your machine uses the Upstart init system, drop the @file{@var{prefix}/lib/upstart/system/guix-daemon.conf} file in @file{/etc/init}.}:" msgstr "El programa @code{guix-daemon} puede ser ejecutado entonces como @code{root} con la siguiente orden@footnote{Si su máquina usa el sistema de inicio systemd, copiando el archivo @file{@var{prefix}/lib/systemd/system/guix-daemon.service} en @file{/etc/systemd/system} asegurará que @command{guix-daemon} se arranca automáticamente. De igual modo, si su máquina usa el sistema de inicio Upstart, copie el archivo @file{@var{prefix}/lib/upstart/system/guix-daemon.conf} en @file{/etc/init}.}:" #. type: example -#: guix-git/doc/guix.texi:1136 guix-git/doc/guix.texi:1535 +#: guix-git/doc/guix.texi:1148 guix-git/doc/guix.texi:1552 #, no-wrap msgid "# guix-daemon --build-users-group=guixbuild\n" msgstr "# guix-daemon --build-users-group=guixbuild\n" #. type: cindex -#: guix-git/doc/guix.texi:1138 guix-git/doc/guix.texi:1540 +#: guix-git/doc/guix.texi:1150 guix-git/doc/guix.texi:1557 #, no-wrap msgid "chroot" msgstr "chroot" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:1143 +#: guix-git/doc/guix.texi:1155 msgid "This way, the daemon starts build processes in a chroot, under one of the @code{guixbuilder} users. On GNU/Linux, by default, the chroot environment contains nothing but:" msgstr "De este modo, el daemon inicia los procesos de construcción en un ``chroot'', bajo una de las usuarias @code{guixbuilder}. En GNU/Linux, por defecto, el entorno ``chroot'' contiene únicamente:" # FUZZY #. type: itemize -#: guix-git/doc/guix.texi:1151 +#: guix-git/doc/guix.texi:1163 msgid "a minimal @code{/dev} directory, created mostly independently from the host @code{/dev}@footnote{``Mostly'', because while the set of files that appear in the chroot's @code{/dev} is fixed, most of these files can only be created if the host has them.};" msgstr "un directorio @code{/dev} mínimo, creado en su mayor parte independientemente del @code{/dev} del sistema anfitrión@footnote{``En su mayor parte'' porque, mientras el conjunto de archivos que aparecen en @code{/dev} es fijo, la mayor parte de estos archivos solo pueden ser creados si el sistema anfitrión los tiene.};" #. type: itemize -#: guix-git/doc/guix.texi:1155 +#: guix-git/doc/guix.texi:1167 msgid "the @code{/proc} directory; it only shows the processes of the container since a separate PID name space is used;" msgstr "el directorio @code{/proc}; únicamente muestra los procesos del contenedor ya que se usa un espacio de nombres de PID separado;" #. type: itemize -#: guix-git/doc/guix.texi:1159 +#: guix-git/doc/guix.texi:1171 msgid "@file{/etc/passwd} with an entry for the current user and an entry for user @file{nobody};" msgstr "@file{/etc/passwd} con una entrada para la usuaria actual y una entrada para la usuaria @file{nobody};" #. type: itemize -#: guix-git/doc/guix.texi:1162 +#: guix-git/doc/guix.texi:1174 msgid "@file{/etc/group} with an entry for the user's group;" msgstr "@file{/etc/groups} con una entrada para el grupo de la usuaria;" #. type: itemize -#: guix-git/doc/guix.texi:1166 +#: guix-git/doc/guix.texi:1178 msgid "@file{/etc/hosts} with an entry that maps @code{localhost} to @code{127.0.0.1};" msgstr "@file{/etc/hosts} con una entrada que asocia @code{localhost} a @code{127.0.0.1};" #. type: itemize -#: guix-git/doc/guix.texi:1169 +#: guix-git/doc/guix.texi:1181 msgid "a writable @file{/tmp} directory." msgstr "un directorio @file{/tmp} con permisos de escritura." #. type: Plain text -#: guix-git/doc/guix.texi:1178 +#: guix-git/doc/guix.texi:1187 +msgid "The chroot does not contain a @file{/home} directory, and the @env{HOME} environment variable is set to the non-existent @file{/homeless-shelter}. This helps to highlight inappropriate uses of @env{HOME} in the build scripts of packages." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:1195 msgid "You can influence the directory where the daemon stores build trees @i{via} the @env{TMPDIR} environment variable. However, the build tree within the chroot is always called @file{/tmp/guix-build-@var{name}.drv-0}, where @var{name} is the derivation name---e.g., @code{coreutils-8.24}. This way, the value of @env{TMPDIR} does not leak inside build environments, which avoids discrepancies in cases where build processes capture the name of their build tree." msgstr "Puede influir en el directorio que el daemon utiliza para almacenar los árboles de construcción a través de la variable de entorno @env{TMPDIR}. No obstante, el árbol de construcción en el ``chroot'' siempre se llama @file{/tmp/guix-build-@var{nombre}.drv-0}, donde @var{nombre} es el nombre de la derivación---por ejemplo, @code{coreutils-8.24}. De este modo, el valor de @env{TMPDIR} no se escapa a los entornos de construcción, lo que evita discrepancias en caso de que los procesos de construcción capturen el nombre de su árbol de construcción." #. type: vindex -#: guix-git/doc/guix.texi:1179 guix-git/doc/guix.texi:4007 +#: guix-git/doc/guix.texi:1196 guix-git/doc/guix.texi:4025 #, no-wrap msgid "http_proxy" msgstr "http_proxy" #. type: vindex -#: guix-git/doc/guix.texi:1180 guix-git/doc/guix.texi:4008 +#: guix-git/doc/guix.texi:1197 guix-git/doc/guix.texi:4026 #, no-wrap msgid "https_proxy" msgstr "https_proxy" #. type: Plain text -#: guix-git/doc/guix.texi:1185 +#: guix-git/doc/guix.texi:1202 msgid "The daemon also honors the @env{http_proxy} and @env{https_proxy} environment variables for HTTP and HTTPS downloads it performs, be it for fixed-output derivations (@pxref{Derivations}) or for substitutes (@pxref{Substitutes})." msgstr "El daemon también respeta la variable de entorno @env{http_proxy} y @env{https_proxy} para las descargas HTTP y HTTPS que realiza, ya sea para derivaciones de salida fija (@pxref{Derivations}) o para sustituciones (@pxref{Substitutes})." #. type: Plain text -#: guix-git/doc/guix.texi:1193 +#: guix-git/doc/guix.texi:1210 msgid "If you are installing Guix as an unprivileged user, it is still possible to run @command{guix-daemon} provided you pass @option{--disable-chroot}. However, build processes will not be isolated from one another, and not from the rest of the system. Thus, build processes may interfere with each other, and may access programs, libraries, and other files available on the system---making it much harder to view them as @emph{pure} functions." msgstr "Si está instalando Guix como una usuaria sin privilegios, es posible todavía ejecutar @command{guix-daemon} siempre que proporcione el parámetro @option{--disable-chroot}. No obstante, los procesos de construcción no estarán aislados entre sí ni del resto del sistema. Por tanto, los procesos de construcción pueden interferir entre ellos y pueden acceder a programas, bibliotecas y otros archivos disponibles en el sistema---haciendo mucho más difícil verlos como funciones @emph{puras}." # FUZZY #. type: subsection -#: guix-git/doc/guix.texi:1196 +#: guix-git/doc/guix.texi:1213 #, no-wrap msgid "Using the Offload Facility" msgstr "Uso de la facilidad de delegación de trabajo" #. type: cindex -#: guix-git/doc/guix.texi:1198 guix-git/doc/guix.texi:1601 +#: guix-git/doc/guix.texi:1215 guix-git/doc/guix.texi:1618 #, no-wrap msgid "offloading" msgstr "delegación de trabajo" # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:1199 +#: guix-git/doc/guix.texi:1216 #, no-wrap msgid "build hook" msgstr "procedimiento de extensión de construcción" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:1218 +#: guix-git/doc/guix.texi:1235 msgid "When desired, the build daemon can @dfn{offload} derivation builds to other machines running Guix, using the @code{offload} @dfn{build hook}@footnote{This feature is available only when @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH} is present.}. When that feature is enabled, a list of user-specified build machines is read from @file{/etc/guix/machines.scm}; every time a build is requested, for instance via @code{guix build}, the daemon attempts to offload it to one of the machines that satisfy the constraints of the derivation, in particular its system types---e.g., @code{x86_64-linux}. A single machine can have multiple system types, either because its architecture natively supports it, via emulation (@pxref{transparent-emulation-qemu, Transparent Emulation with QEMU}), or both. Missing prerequisites for the build are copied over SSH to the target machine, which then proceeds with the build; upon success the output(s) of the build are copied back to the initial machine. The offload facility comes with a basic scheduler that attempts to select the best machine. The best machine is chosen among the available machines based on criteria such as:" msgstr "Cuando así se desee, el daemon de construcción puede @dfn{delegar} construcciones de derivación a otras máquinas ejecutando Guix, usando el @dfn{procedimiento de extensión de construcción} @code{offload}@footnote{Esta característica está únicamente disponible cuando @uref{https://github.com/artyom-potsov/guile-ssh, Guile-SSH} está presente.}. Cuando dicha característica es activada se lee una lista de máquinas de construcción especificadas por la usuaria desde @file{/etc/guix/machines.scm}; cada vez que se solicita una construcción, por ejemplo via @code{guix build}, el daemon intenta su delegación a una de las máquinas que satisfaga las condiciones de la derivación, en particular su tipo de sistema---por ejemplo, @code{x86_64-linux}. Una única máquina puede usarse para múltiples tipos de sistema, ya sea porque los implemente su arquitectura de manera nativa, a través de emulación (@pxref{transparent-emulation-qemu, Transparent Emulation with QEMU}), o ambas. Los prerrequisitos restantes para la construcción se copian a través de SSH a la máquina seleccionada, la cual procede con la construcción; con un resultado satisfactorio la o las salidas de la construcción son copiadas de vuelta a la máquina inicial. La facilidad de descarga de trabajo incorpora una planificación básica que intenta seleccionar la mejor máquina, la cual es seleccionada entre las máquinas disponibles en base a criterios como los siguientes:" #. type: enumerate -#: guix-git/doc/guix.texi:1224 +#: guix-git/doc/guix.texi:1241 msgid "The availability of a build slot. A build machine can have as many build slots (connections) as the value of the @code{parallel-builds} field of its @code{build-machine} object." msgstr "La disponibilidad de un puesto de construcción. Una máquina de construcción tiene el número de puestos de construcción (conexiones) que indique el valor de @code{parallel-builds} en su objeto @code{build-machine}." #. type: enumerate -#: guix-git/doc/guix.texi:1228 +#: guix-git/doc/guix.texi:1245 msgid "Its relative speed, as defined via the @code{speed} field of its @code{build-machine} object." msgstr "Su velocidad relativa, a través del campo @code{speed} de su objeto @code{build-machine}." #. type: enumerate -#: guix-git/doc/guix.texi:1233 +#: guix-git/doc/guix.texi:1250 msgid "Its load. The normalized machine load must be lower than a threshold value, configurable via the @code{overload-threshold} field of its @code{build-machine} object." msgstr "Su carga de trabajo. El valor normalizado de carga debe ser menor aun valor límite, configurable a través del campo @code{overload-threshold} de su objeto @code{build-machine}." #. type: enumerate -#: guix-git/doc/guix.texi:1236 +#: guix-git/doc/guix.texi:1253 msgid "Disk space availability. More than a 100 MiB must be available." msgstr "El espacio disponible en el disco. Debe haber más de 100 MiB disponibles." #. type: Plain text -#: guix-git/doc/guix.texi:1239 +#: guix-git/doc/guix.texi:1256 msgid "The @file{/etc/guix/machines.scm} file typically looks like this:" msgstr "El archivo @file{/etc/guix/machines.scm} normalmente tiene un contenido de este estilo:" #. type: lisp -#: guix-git/doc/guix.texi:1247 +#: guix-git/doc/guix.texi:1264 #, no-wrap msgid "" "(list (build-machine\n" @@ -6482,7 +6562,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:1253 +#: guix-git/doc/guix.texi:1270 #, fuzzy, no-wrap #| msgid "" #| "(list (build-machine\n" @@ -6509,7 +6589,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:1257 +#: guix-git/doc/guix.texi:1274 #, no-wrap msgid "" " ;; Remember 'guix offload' is spawned by\n" @@ -6518,98 +6598,98 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1263 +#: guix-git/doc/guix.texi:1280 msgid "In the example above we specify a list of two build machines, one for the @code{x86_64} and @code{i686} architectures and one for the @code{aarch64} architecture." msgstr "En el ejemplo anterior se especifica una lista de dos máquinas de construcción, una para las arquitecturas @code{x86_64} y @code{i686}, y otra para la arquitectura @code{aarch64}." #. type: Plain text -#: guix-git/doc/guix.texi:1272 +#: guix-git/doc/guix.texi:1289 msgid "In fact, this file is---not surprisingly!---a Scheme file that is evaluated when the @code{offload} hook is started. Its return value must be a list of @code{build-machine} objects. While this example shows a fixed list of build machines, one could imagine, say, using DNS-SD to return a list of potential build machines discovered in the local network (@pxref{Introduction, Guile-Avahi,, guile-avahi, Using Avahi in Guile Scheme Programs}). The @code{build-machine} data type is detailed below." msgstr "De hecho, este archivo es---¡sin sorpresa ninguna!---un archivo Scheme que se evalúa cuando el procedimiento de extensión @code{offload} se inicia. El valor que devuelve debe ser una lista de objetos @code{build-machine}. Mientras que este ejemplo muestra una lista fija de máquinas de construcción, una puede imaginarse, digamos, el uso de DNS-SD para devolver una lista de máquinas de construcción potenciales descubierta en la red local (@pxref{Introduction, Guile-Avahi,, guile-avahi, Using Avahi in Guile Scheme Programs}). El tipo de datos @code{build-machine} se detalla a continuación." #. type: deftp -#: guix-git/doc/guix.texi:1273 +#: guix-git/doc/guix.texi:1290 #, no-wrap msgid "{Data Type} build-machine" msgstr "{Tipo de datos} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:1276 +#: guix-git/doc/guix.texi:1293 msgid "This data type represents build machines to which the daemon may offload builds. The important fields are:" msgstr "Este tipo de datos representa las máquinas de construcción a las cuales el daemon puede delegar construcciones. Los campos importantes son:" #. type: item -#: guix-git/doc/guix.texi:1279 guix-git/doc/guix.texi:7113 -#: guix-git/doc/guix.texi:15446 guix-git/doc/guix.texi:15545 -#: guix-git/doc/guix.texi:15786 guix-git/doc/guix.texi:17314 -#: guix-git/doc/guix.texi:17935 guix-git/doc/guix.texi:18209 -#: guix-git/doc/guix.texi:21269 guix-git/doc/guix.texi:24179 -#: guix-git/doc/guix.texi:25568 guix-git/doc/guix.texi:26180 -#: guix-git/doc/guix.texi:26533 guix-git/doc/guix.texi:26574 -#: guix-git/doc/guix.texi:28735 guix-git/doc/guix.texi:31072 -#: guix-git/doc/guix.texi:31092 guix-git/doc/guix.texi:33766 -#: guix-git/doc/guix.texi:33783 guix-git/doc/guix.texi:34320 -#: guix-git/doc/guix.texi:36095 guix-git/doc/guix.texi:36422 +#: guix-git/doc/guix.texi:1296 guix-git/doc/guix.texi:7157 +#: guix-git/doc/guix.texi:15803 guix-git/doc/guix.texi:15902 +#: guix-git/doc/guix.texi:16143 guix-git/doc/guix.texi:17676 +#: guix-git/doc/guix.texi:18297 guix-git/doc/guix.texi:18571 +#: guix-git/doc/guix.texi:21631 guix-git/doc/guix.texi:24541 +#: guix-git/doc/guix.texi:25905 guix-git/doc/guix.texi:26517 +#: guix-git/doc/guix.texi:26870 guix-git/doc/guix.texi:26911 +#: guix-git/doc/guix.texi:29072 guix-git/doc/guix.texi:31437 +#: guix-git/doc/guix.texi:31457 guix-git/doc/guix.texi:34203 +#: guix-git/doc/guix.texi:34220 guix-git/doc/guix.texi:34759 +#: guix-git/doc/guix.texi:36585 guix-git/doc/guix.texi:36912 #, no-wrap msgid "name" msgstr "name" #. type: table -#: guix-git/doc/guix.texi:1281 +#: guix-git/doc/guix.texi:1298 msgid "The host name of the remote machine." msgstr "El nombre de red de la máquina remota." #. type: item -#: guix-git/doc/guix.texi:1282 +#: guix-git/doc/guix.texi:1299 #, no-wrap msgid "systems" msgstr "systems" #. type: table -#: guix-git/doc/guix.texi:1285 +#: guix-git/doc/guix.texi:1302 msgid "The system types the remote machine supports---e.g., @code{(list \"x86_64-linux\" \"i686-linux\")}." msgstr "Los tipos de sistema implementados por la máquina remota---por ejemplo, @code{(list \"x86_64-linux\" \"i686-linux\")}." #. type: code{#1} -#: guix-git/doc/guix.texi:1286 guix-git/doc/guix.texi:17945 +#: guix-git/doc/guix.texi:1303 guix-git/doc/guix.texi:18307 #, no-wrap msgid "user" msgstr "user" #. type: table -#: guix-git/doc/guix.texi:1290 +#: guix-git/doc/guix.texi:1307 msgid "The user account to use when connecting to the remote machine over SSH. Note that the SSH key pair must @emph{not} be passphrase-protected, to allow non-interactive logins." msgstr "La cuenta de usuaria usada para la conexión a la máquina remota por SSH. Tenga en cuenta que el par de claves SSH @emph{no} debe estar protegido por contraseña, para permitir ingresos al sistema no interactivos." #. type: item -#: guix-git/doc/guix.texi:1291 +#: guix-git/doc/guix.texi:1308 #, no-wrap msgid "host-key" msgstr "host-key" #. type: table -#: guix-git/doc/guix.texi:1295 +#: guix-git/doc/guix.texi:1312 msgid "This must be the machine's SSH @dfn{public host key} in OpenSSH format. This is used to authenticate the machine when we connect to it. It is a long string that looks like this:" msgstr "Este campo debe contener la @dfn{clave pública de la máquina} de SSH en formato OpenSSH. Es usado para autentificar la máquina cuando nos conectamos a ella. Es una cadena larga más o menos así:" #. type: example -#: guix-git/doc/guix.texi:1298 +#: guix-git/doc/guix.texi:1315 #, no-wrap msgid "ssh-ed25519 AAAAC3NzaC@dots{}mde+UhL hint@@example.org\n" msgstr "ssh-ed25519 AAAAC3NzaC@dots{}mde+UhL recordatorio@@example.org\n" #. type: table -#: guix-git/doc/guix.texi:1303 +#: guix-git/doc/guix.texi:1320 msgid "If the machine is running the OpenSSH daemon, @command{sshd}, the host key can be found in a file such as @file{/etc/ssh/ssh_host_ed25519_key.pub}." msgstr "Si la máquina está ejecutando el daemon OpenSSH, @command{sshd}, la clave pública de la máquina puede encontrarse en un archivo como @file{/etc/ssh/ssh_host_ed25519_key.pub}." #. type: table -#: guix-git/doc/guix.texi:1308 +#: guix-git/doc/guix.texi:1325 msgid "If the machine is running the SSH daemon of GNU@tie{}lsh, @command{lshd}, the host key is in @file{/etc/lsh/host-key.pub} or a similar file. It can be converted to the OpenSSH format using @command{lsh-export-key} (@pxref{Converting keys,,, lsh, LSH Manual}):" msgstr "Si la máquina está ejecutando el daemon SSH GNU@tie{}lsh, @command{lshd}, la clave de la máquina está en @file{/etc/lsh/host-key.pub} o un archivo similar. Puede convertirse a formato OpenSSH usando @command{lsh-export-key} (@pxref{Converting keys,,, lsh, LSH Manual}):" #. type: example -#: guix-git/doc/guix.texi:1312 +#: guix-git/doc/guix.texi:1329 #, no-wrap msgid "" "$ lsh-export-key --openssh < /etc/lsh/host-key.pub\n" @@ -6619,690 +6699,692 @@ msgstr "" "ssh-rsa AAAAB3NzaC1yc2EAAAAEOp8FoQAAAQEAs1eB46LV@dots{}\n" #. type: deftp -#: guix-git/doc/guix.texi:1317 +#: guix-git/doc/guix.texi:1334 msgid "A number of optional fields may be specified:" msgstr "Ciertos número de campos opcionales pueden ser especificados:" #. type: item -#: guix-git/doc/guix.texi:1320 guix-git/doc/guix.texi:35581 +#: guix-git/doc/guix.texi:1337 guix-git/doc/guix.texi:36061 #, no-wrap msgid "@code{port} (default: @code{22})" msgstr "@code{port} (predeterminado: @code{22})" #. type: table -#: guix-git/doc/guix.texi:1322 +#: guix-git/doc/guix.texi:1339 msgid "Port number of SSH server on the machine." msgstr "Número de puerto del servidor SSH en la máquina." #. type: item -#: guix-git/doc/guix.texi:1323 +#: guix-git/doc/guix.texi:1340 #, no-wrap msgid "@code{private-key} (default: @file{~root/.ssh/id_rsa})" msgstr "@code{private-key} (predeterminada: @file{~root/.ssh/id_rsa})" #. type: table -#: guix-git/doc/guix.texi:1326 +#: guix-git/doc/guix.texi:1343 msgid "The SSH private key file to use when connecting to the machine, in OpenSSH format. This key must not be protected with a passphrase." msgstr "El archivo de clave privada SSH usado para conectarse a la máquina, en formato OpenSSH. Esta clave no debe estar protegida con una contraseña." #. type: table -#: guix-git/doc/guix.texi:1329 +#: guix-git/doc/guix.texi:1346 msgid "Note that the default value is the private key @emph{of the root account}. Make sure it exists if you use the default." msgstr "Tenga en cuenta que el valor predeterminado es la clave privada @emph{de la cuenta de root}. Asegúrese de que existe si usa el valor predeterminado." #. type: item -#: guix-git/doc/guix.texi:1330 +#: guix-git/doc/guix.texi:1347 #, no-wrap msgid "@code{compression} (default: @code{\"zlib@@openssh.com,zlib\"})" msgstr "@code{compression} (predeterminado: @code{\"zlib@@openssh.com,zlib\"})" #. type: itemx -#: guix-git/doc/guix.texi:1331 +#: guix-git/doc/guix.texi:1348 #, no-wrap msgid "@code{compression-level} (default: @code{3})" msgstr "@code{compression-level} (predeterminado: @code{3})" #. type: table -#: guix-git/doc/guix.texi:1333 +#: guix-git/doc/guix.texi:1350 msgid "The SSH-level compression methods and compression level requested." msgstr "Los métodos de compresión y nivel de compresión a nivel SSH solicitados." #. type: table -#: guix-git/doc/guix.texi:1336 +#: guix-git/doc/guix.texi:1353 msgid "Note that offloading relies on SSH compression to reduce bandwidth usage when transferring files to and from build machines." msgstr "Tenga en cuenta que la delegación de carga depende de la compresión SSH para reducir el ancho de banda usado cuando se transfieren archivos hacia y desde máquinas de construcción." #. type: item -#: guix-git/doc/guix.texi:1337 +#: guix-git/doc/guix.texi:1354 #, no-wrap msgid "@code{daemon-socket} (default: @code{\"/var/guix/daemon-socket/socket\"})" msgstr "@code{daemon-socket} (predeterminado: @code{\"/var/guix/daemon-socket/socket\"})" # TODO (MAAV): Socket parece mejor que puerto... #. type: table -#: guix-git/doc/guix.texi:1340 +#: guix-git/doc/guix.texi:1357 msgid "File name of the Unix-domain socket @command{guix-daemon} is listening to on that machine." msgstr "Nombre de archivo del socket de dominio Unix en el que @command{guix-daemon} escucha en esa máquina." #. type: item -#: guix-git/doc/guix.texi:1341 +#: guix-git/doc/guix.texi:1358 #, no-wrap msgid "@code{overload-threshold} (default: @code{0.6})" msgstr "@code{overload-threshold} (predeterminado: @code{0.6})" #. type: table -#: guix-git/doc/guix.texi:1347 +#: guix-git/doc/guix.texi:1364 msgid "The load threshold above which a potential offload machine is disregarded by the offload scheduler. The value roughly translates to the total processor usage of the build machine, ranging from 0.0 (0%) to 1.0 (100%). It can also be disabled by setting @code{overload-threshold} to @code{#f}." msgstr "El límite superior de carga, el cual se usa en la planificación de delegación de tareas para descartar potenciales máquinas si superan dicho límite. Dicho valor más o menos representa el uso del procesador de la máquina, con un rango de 0.0 (0%) a 1.0 (100%). También se puede desactivar si se proporciona el valor @code{#f} en @code{overload-threshold}." #. type: item -#: guix-git/doc/guix.texi:1348 +#: guix-git/doc/guix.texi:1365 #, no-wrap msgid "@code{parallel-builds} (default: @code{1})" msgstr "@code{parallel-builds} (predeterminadas: @code{1})" #. type: table -#: guix-git/doc/guix.texi:1350 +#: guix-git/doc/guix.texi:1367 msgid "The number of builds that may run in parallel on the machine." msgstr "El número de construcciones que pueden ejecutarse en paralelo en la máquina." #. type: item -#: guix-git/doc/guix.texi:1351 +#: guix-git/doc/guix.texi:1368 #, no-wrap msgid "@code{speed} (default: @code{1.0})" msgstr "@code{speed} (predeterminado: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:1354 +#: guix-git/doc/guix.texi:1371 msgid "A ``relative speed factor''. The offload scheduler will tend to prefer machines with a higher speed factor." msgstr "Un ``factor de velocidad relativa''. El planificador de delegaciones tenderá a preferir máquinas con un factor de velocidad mayor." #. type: item -#: guix-git/doc/guix.texi:1355 +#: guix-git/doc/guix.texi:1372 #, no-wrap msgid "@code{features} (default: @code{'()})" msgstr "@code{features} (predeterminadas: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:1360 +#: guix-git/doc/guix.texi:1377 msgid "A list of strings denoting specific features supported by the machine. An example is @code{\"kvm\"} for machines that have the KVM Linux modules and corresponding hardware support. Derivations can request features by name, and they will be scheduled on matching build machines." msgstr "Una lista de cadenas denotando las características específicas permitidas por la máquina. Un ejemplo es @code{\"kvm\"} para máquinas que tienen los módulos KVM de Linux y las correspondientes características hardware. Las derivaciones pueden solicitar las características por nombre, y entonces se planificarán en las máquinas adecuadas." #. type: Plain text -#: guix-git/doc/guix.texi:1366 +#: guix-git/doc/guix.texi:1383 msgid "The @command{guix} command must be in the search path on the build machines. You can check whether this is the case by running:" msgstr "El ejecutable @code{guix} debe estar en la ruta de búsqueda de las máquinas de construcción. Puede comprobar si es el caso ejecutando:" #. type: example -#: guix-git/doc/guix.texi:1369 +#: guix-git/doc/guix.texi:1386 #, no-wrap msgid "ssh build-machine guix repl --version\n" msgstr "ssh build-machine guix repl --version\n" #. type: Plain text -#: guix-git/doc/guix.texi:1376 +#: guix-git/doc/guix.texi:1393 msgid "There is one last thing to do once @file{machines.scm} is in place. As explained above, when offloading, files are transferred back and forth between the machine stores. For this to work, you first need to generate a key pair on each machine to allow the daemon to export signed archives of files from the store (@pxref{Invoking guix archive}):" msgstr "Hay una última cosa por hacer una vez @file{machines.scm} está en su lugar. Como se ha explicado anteriormente, cuando se delega, los archivos se transfieren en ambas direcciones entre los almacenes de las máquinas. Para que esto funcione, primero debe generar un par de claves en cada máquina para permitir al daemon exportar los archivos firmados de archivos en el almacén (@pxref{Invoking guix archive}):" #. type: example -#: guix-git/doc/guix.texi:1379 guix-git/doc/guix.texi:35509 +#: guix-git/doc/guix.texi:1396 guix-git/doc/guix.texi:35965 #, no-wrap msgid "# guix archive --generate-key\n" msgstr "# guix archive --generate-key\n" #. type: Plain text -#: guix-git/doc/guix.texi:1384 +#: guix-git/doc/guix.texi:1401 msgid "Each build machine must authorize the key of the master machine so that it accepts store items it receives from the master:" msgstr "Cada máquina de construcción debe autorizar a la clave de la máquina maestra para que acepte elementos del almacén que reciba de la maestra:" #. type: example -#: guix-git/doc/guix.texi:1387 +#: guix-git/doc/guix.texi:1404 #, no-wrap msgid "# guix archive --authorize < master-public-key.txt\n" msgstr "# guix archive --authorize < clave-publica-maestra.txt\n" #. type: Plain text -#: guix-git/doc/guix.texi:1391 +#: guix-git/doc/guix.texi:1408 msgid "Likewise, the master machine must authorize the key of each build machine." msgstr "La máquina maestra debe autorizar la clave de cada máquina de construcción de la misma manera." #. type: Plain text -#: guix-git/doc/guix.texi:1397 +#: guix-git/doc/guix.texi:1414 msgid "All the fuss with keys is here to express pairwise mutual trust relations between the master and the build machines. Concretely, when the master receives files from a build machine (and @i{vice versa}), its build daemon can make sure they are genuine, have not been tampered with, and that they are signed by an authorized key." msgstr "Todo este lío con claves está ahí para expresar las mutuas relaciones de confianza entre pares de la máquina maestra y las máquinas de construcción. Concretamente, cuando la maestra recibe archivos de una máquina de construcción (y @i{vice versa}), su daemon de construcción puede asegurarse de que son genuinos, no han sido modificados, y que están firmados por una clave autorizada." #. type: cindex -#: guix-git/doc/guix.texi:1398 +#: guix-git/doc/guix.texi:1415 #, no-wrap msgid "offload test" msgstr "prueba de delegación" #. type: Plain text -#: guix-git/doc/guix.texi:1401 +#: guix-git/doc/guix.texi:1418 msgid "To test whether your setup is operational, run this command on the master node:" msgstr "Para comprobar si su configuración es operacional, ejecute esta orden en el nodo maestro:" #. type: example -#: guix-git/doc/guix.texi:1404 +#: guix-git/doc/guix.texi:1421 #, no-wrap msgid "# guix offload test\n" msgstr "# guix offload test\n" #. type: Plain text -#: guix-git/doc/guix.texi:1410 +#: guix-git/doc/guix.texi:1427 #, fuzzy msgid "This will attempt to connect to each of the build machines specified in @file{/etc/guix/machines.scm}, make sure Guix is available on each machine, attempt to export to the machine and import from it, and report any error in the process." msgstr "Esto intentará conectar con cada una de las máquinas de construcción especificadas en @file{/etc/guix/machines.scm}, comprobará que GUile y los módulos Guix están disponibles en cada máquina, intentará exportar a la máquina e importar de ella, e informará de cualquier error en el proceso." #. type: Plain text -#: guix-git/doc/guix.texi:1413 +#: guix-git/doc/guix.texi:1430 msgid "If you want to test a different machine file, just specify it on the command line:" msgstr "Si quiere probar un archivo de máquinas diferente, simplemente lo debe especificar en la línea de órdenes:" #. type: example -#: guix-git/doc/guix.texi:1416 +#: guix-git/doc/guix.texi:1433 #, no-wrap msgid "# guix offload test machines-qualif.scm\n" msgstr "# guix offload test otras-maquinas.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:1420 +#: guix-git/doc/guix.texi:1437 msgid "Last, you can test the subset of the machines whose name matches a regular expression like this:" msgstr "Por último, puede probar un subconjunto de máquinas cuyos nombres coincidan con una expresión regular así:" #. type: example -#: guix-git/doc/guix.texi:1423 +#: guix-git/doc/guix.texi:1440 #, no-wrap msgid "# guix offload test machines.scm '\\.gnu\\.org$'\n" msgstr "# guix offload test maquinas.scm '\\.gnu\\.org$'\n" #. type: cindex -#: guix-git/doc/guix.texi:1425 +#: guix-git/doc/guix.texi:1442 #, no-wrap msgid "offload status" msgstr "estado de delegación" #. type: Plain text -#: guix-git/doc/guix.texi:1428 +#: guix-git/doc/guix.texi:1445 msgid "To display the current load of all build hosts, run this command on the main node:" msgstr "Para mostrar la carga actual de todas las máquinas de construcción, ejecute esta orden en el nodo principal:" #. type: example -#: guix-git/doc/guix.texi:1431 +#: guix-git/doc/guix.texi:1448 #, no-wrap msgid "# guix offload status\n" msgstr "# guix offload status\n" #. type: cindex -#: guix-git/doc/guix.texi:1437 +#: guix-git/doc/guix.texi:1454 #, no-wrap msgid "SELinux, daemon policy" msgstr "SELinux, política del daemon" # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:1438 +#: guix-git/doc/guix.texi:1455 #, no-wrap msgid "mandatory access control, SELinux" msgstr "control de acceso mandatorio, SELinux" #. type: cindex -#: guix-git/doc/guix.texi:1439 +#: guix-git/doc/guix.texi:1456 #, no-wrap msgid "security, guix-daemon" msgstr "seguridad, guix-daemon" #. type: Plain text -#: guix-git/doc/guix.texi:1445 +#: guix-git/doc/guix.texi:1462 msgid "Guix includes an SELinux policy file at @file{etc/guix-daemon.cil} that can be installed on a system where SELinux is enabled, in order to label Guix files and to specify the expected behavior of the daemon. Since Guix System does not provide an SELinux base policy, the daemon policy cannot be used on Guix System." msgstr "Guix incluye un archivo de política SELinux en @file{etc/guix-daemon.cil} que puede ser instalado en un sistema donde SELinux está activado, para etiquetar los archivos Guix y especificar el comportamiento esperado del daemon. Ya que el sistema Guix no proporciona una política base de SELinux, la política del daemon no puede usarse en el sistema Guix." #. type: subsubsection -#: guix-git/doc/guix.texi:1446 +#: guix-git/doc/guix.texi:1463 #, no-wrap msgid "Installing the SELinux policy" msgstr "Instalación de la política de SELinux" #. type: cindex -#: guix-git/doc/guix.texi:1447 +#: guix-git/doc/guix.texi:1464 #, no-wrap msgid "SELinux, policy installation" msgstr "SELinux, instalación de la política" #. type: Plain text -#: guix-git/doc/guix.texi:1449 +#: guix-git/doc/guix.texi:1466 msgid "To install the policy run this command as root:" msgstr "Para instalar la política ejecute esta orden como root:" #. type: example -#: guix-git/doc/guix.texi:1452 +#: guix-git/doc/guix.texi:1469 #, no-wrap msgid "semodule -i etc/guix-daemon.cil\n" msgstr "semodule -i etc/guix-daemon.cil\n" #. type: Plain text -#: guix-git/doc/guix.texi:1456 +#: guix-git/doc/guix.texi:1473 msgid "Then relabel the file system with @code{restorecon} or by a different mechanism provided by your system." msgstr "Una vez hecho, vuelva a etiquetar el sistema de archivos con @code{restorecon} o con un mecanismo distinto que proporcione su sistema." #. type: Plain text -#: guix-git/doc/guix.texi:1461 +#: guix-git/doc/guix.texi:1478 msgid "Once the policy is installed, the file system has been relabeled, and the daemon has been restarted, it should be running in the @code{guix_daemon_t} context. You can confirm this with the following command:" msgstr "Una vez la política está instalada, el sistema de archivos ha sido re-etiquetado, y el daemon ha sido reiniciado, debería ejecutarse en el contexto @code{guix_daemon_t}. Puede confirmarlo con la siguiente orden:" #. type: example -#: guix-git/doc/guix.texi:1464 +#: guix-git/doc/guix.texi:1481 #, no-wrap msgid "ps -Zax | grep guix-daemon\n" msgstr "ps -Zax | grep guix-daemon\n" # TODO: (MAAV) Monitorice!! #. type: Plain text -#: guix-git/doc/guix.texi:1469 +#: guix-git/doc/guix.texi:1486 msgid "Monitor the SELinux log files as you run a command like @code{guix build hello} to convince yourself that SELinux permits all necessary operations." msgstr "Monitorice los archivos de log de SELinux mientras ejecuta una orden como @code{guix build hello} para convencerse que SELinux permite todas las operaciones necesarias." #. type: cindex -#: guix-git/doc/guix.texi:1471 +#: guix-git/doc/guix.texi:1488 #, no-wrap msgid "SELinux, limitations" msgstr "SELinux, limitaciones" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:1476 +#: guix-git/doc/guix.texi:1493 msgid "This policy is not perfect. Here is a list of limitations or quirks that should be considered when deploying the provided SELinux policy for the Guix daemon." msgstr "Esta política no es perfecta. Aquí está una lista de limitaciones o comportamientos extraños que deben ser considerados al desplegar la política SELinux provista para el daemon Guix." #. type: enumerate -#: guix-git/doc/guix.texi:1483 +#: guix-git/doc/guix.texi:1500 #, fuzzy msgid "@code{guix_daemon_socket_t} isn’t actually used. None of the socket operations involve contexts that have anything to do with @code{guix_daemon_socket_t}. It doesn’t hurt to have this unused label, but it would be preferable to define socket rules for only this label." msgstr "@code{guix_daemon_socket_t} no se usa realmente. Ninguna de las operaciones del socket implica contextos que tengan algo que ver con @code{guix_daemon_socket_t}. No hace daño tener esta etiqueta sin usar, pero sería preferible definir reglas del socket únicamente para esta etiqueta." #. type: enumerate -#: guix-git/doc/guix.texi:1494 +#: guix-git/doc/guix.texi:1511 msgid "@code{guix gc} cannot access arbitrary links to profiles. By design, the file label of the destination of a symlink is independent of the file label of the link itself. Although all profiles under $localstatedir are labelled, the links to these profiles inherit the label of the directory they are in. For links in the user’s home directory this will be @code{user_home_t}. But for links from the root user’s home directory, or @file{/tmp}, or the HTTP server’s working directory, etc, this won’t work. @code{guix gc} would be prevented from reading and following these links." msgstr "@code{guix gc} no puede acceder enlaces arbitrarios a los perfiles. Por diseño, la etiqueta del archivo del destino de un enlace simbólico es independiente de la etiqueta de archivo del archivo en sí. Aunque todos los perfiles bajo $localstatedir se etiquetan, los enlaces para estos perfiles heredan la etiqueta del directorio en el que están. Para enlaces en el directorio de la usuaria esto será @code{user_home_t}. Pero para los enlaces del directorio de root, o @file{/tmp}, o del directorio del servidor HTTP, etc., esto no funcionará. @code{guix gc} se verá incapacitado para leer y seguir dichos enlaces." #. type: enumerate -#: guix-git/doc/guix.texi:1499 +#: guix-git/doc/guix.texi:1516 msgid "The daemon’s feature to listen for TCP connections might no longer work. This might require extra rules, because SELinux treats network sockets differently from files." msgstr "La característica del daemon de esperar conexiones TCP puede que no funcione más. Esto puede requerir reglas adicionales, ya que SELinux trata los sockets de red de forma diferente a los archivos." #. type: enumerate -#: guix-git/doc/guix.texi:1510 +#: guix-git/doc/guix.texi:1527 msgid "Currently all files with a name matching the regular expression @code{/gnu/store/.+-(guix-.+|profile)/bin/guix-daemon} are assigned the label @code{guix_daemon_exec_t}; this means that @emph{any} file with that name in any profile would be permitted to run in the @code{guix_daemon_t} domain. This is not ideal. An attacker could build a package that provides this executable and convince a user to install and run it, which lifts it into the @code{guix_daemon_t} domain. At that point SELinux could not prevent it from accessing files that are allowed for processes in that domain." msgstr "Actualmente todos los archivos con un nombre coincidente con la expresión regular @code{/gnu/store.+-(gux-.+|profile)/bin/guix-daemon} tienen asignada la etiqueta @code{guix_daemon_exec_t}; esto significa que @emph{cualquier} archivo con ese nombre en cualquier perfil tendrá permitida la ejecución en el dominio @code{guix_daemon_t}. Esto no es ideal. Una atacante podría construir un paquete que proporcione este ejecutable y convencer a la usuaria para instalarlo y ejecutarlo, lo que lo eleva al dominio @code{guix_daemon_t}. Llegadas a este punto, SELinux no puede prevenir que acceda a los archivos permitidos para los procesos en dicho dominio." #. type: enumerate -#: guix-git/doc/guix.texi:1515 +#: guix-git/doc/guix.texi:1532 msgid "You will need to relabel the store directory after all upgrades to @file{guix-daemon}, such as after running @code{guix pull}. Assuming the store is in @file{/gnu}, you can do this with @code{restorecon -vR /gnu}, or by other means provided by your operating system." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1523 +#: guix-git/doc/guix.texi:1540 msgid "We could generate a much more restrictive policy at installation time, so that only the @emph{exact} file name of the currently installed @code{guix-daemon} executable would be labelled with @code{guix_daemon_exec_t}, instead of using a broad regular expression. The downside is that root would have to install or upgrade the policy at installation time whenever the Guix package that provides the effectively running @code{guix-daemon} executable is upgraded." msgstr "Podríamos generar una política mucho más restrictiva en tiempo de instalación, de modo que solo el nombre @emph{exacto} del archivo del ejecutable de @code{guix-daemon} actualmente instalado sea marcado como @code{guix_daemon_exec_t}, en vez de usar una expresión regular amplia. La desventaja es que root tendría que instalar o actualizar la política en tiempo de instalación cada vez que se actualizase el paquete de Guix que proporcione el ejecutable de @code{guix-daemon} realmente en ejecución." #. type: section -#: guix-git/doc/guix.texi:1526 +#: guix-git/doc/guix.texi:1543 #, no-wrap msgid "Invoking @command{guix-daemon}" msgstr "Invocación de @command{guix-daemon}" #. type: Plain text -#: guix-git/doc/guix.texi:1532 +#: guix-git/doc/guix.texi:1549 msgid "The @command{guix-daemon} program implements all the functionality to access the store. This includes launching build processes, running the garbage collector, querying the availability of a build result, etc. It is normally run as @code{root} like this:" msgstr "El programa @command{guix-daemon} implementa toda la funcionalidad para acceder al almacén. Esto incluye iniciar procesos de construcción, ejecutar el recolector de basura, comprobar la disponibilidad de un resultado de construcción, etc. Normalmente se ejecuta como @code{root} así:" #. type: Plain text -#: guix-git/doc/guix.texi:1539 +#: guix-git/doc/guix.texi:1556 msgid "For details on how to set it up, @pxref{Setting Up the Daemon}." msgstr "Para detalles obre como configurarlo, @pxref{Setting Up the Daemon}." #. type: cindex -#: guix-git/doc/guix.texi:1541 +#: guix-git/doc/guix.texi:1558 #, no-wrap msgid "container, build environment" msgstr "contenedor, entorno de construcción" #. type: cindex -#: guix-git/doc/guix.texi:1543 guix-git/doc/guix.texi:3071 -#: guix-git/doc/guix.texi:3988 guix-git/doc/guix.texi:13753 +#: guix-git/doc/guix.texi:1560 guix-git/doc/guix.texi:3088 +#: guix-git/doc/guix.texi:4006 guix-git/doc/guix.texi:14110 #, no-wrap msgid "reproducible builds" msgstr "construcciones reproducibles" #. type: Plain text -#: guix-git/doc/guix.texi:1555 +#: guix-git/doc/guix.texi:1572 msgid "By default, @command{guix-daemon} launches build processes under different UIDs, taken from the build group specified with @option{--build-users-group}. In addition, each build process is run in a chroot environment that only contains the subset of the store that the build process depends on, as specified by its derivation (@pxref{Programming Interface, derivation}), plus a set of specific system directories. By default, the latter contains @file{/dev} and @file{/dev/pts}. Furthermore, on GNU/Linux, the build environment is a @dfn{container}: in addition to having its own file system tree, it has a separate mount name space, its own PID name space, network name space, etc. This helps achieve reproducible builds (@pxref{Features})." msgstr "Por defecto, @command{guix-daemon} inicia los procesos de construcción bajo distintos UIDs, tomados del grupo de construcción especificado con @option{--build-users-group}. Además, cada proceso de construcción se ejecuta en un entorno ``chroot'' que únicamente contiene el subconjunto del almacén del que depende el proceso de construcción, como especifica su derivación (@pxref{Programming Interface, derivación}), más un conjunto específico de directorios del sistema. Por defecto, estos directorios contienen @file{/dev} y @file{/dev/pts}. Es más, sobre GNU/Linux, el entorno de construcción es un @dfn{contenedor}: además de tener su propio árbol del sistema de archivos, tiene un espacio de nombres de montado separado, su propio espacio de nombres de PID, de red, etc. Esto ayuda a obtener construcciones reproducibles (@pxref{Features})." #. type: Plain text -#: guix-git/doc/guix.texi:1561 +#: guix-git/doc/guix.texi:1578 msgid "When the daemon performs a build on behalf of the user, it creates a build directory under @file{/tmp} or under the directory specified by its @env{TMPDIR} environment variable. This directory is shared with the container for the duration of the build, though within the container, the build tree is always called @file{/tmp/guix-build-@var{name}.drv-0}." msgstr "Cuando el daemon realiza una construcción en delegación de la usuaria, crea un directorio de construcción bajo @file{/tmp} o bajo el directorio especificado por su variable de entorno @env{TMPDIR}. Este directorio se comparte con el contenedor durante toda la construcción, aunque dentro del contenedor el árbol de construcción siempre se llama @file{/tmp/guix-build-@var{nombre}.drv-0}." #. type: Plain text -#: guix-git/doc/guix.texi:1565 +#: guix-git/doc/guix.texi:1582 #, fuzzy msgid "The build directory is automatically deleted upon completion, unless the build failed and the client specified @option{--keep-failed} (@pxref{Common Build Options, @option{--keep-failed}})." msgstr "El directorio de construcción se borra automáticamente una vez completado el proceso, a menos que la construcción fallase y se especificase en el cliente @option{--keep-failed} (@pxref{Invoking guix build, @option{--keep-failed}})." #. type: Plain text -#: guix-git/doc/guix.texi:1571 +#: guix-git/doc/guix.texi:1588 msgid "The daemon listens for connections and spawns one sub-process for each session started by a client (one of the @command{guix} sub-commands). The @command{guix processes} command allows you to get an overview of the activity on your system by viewing each of the active sessions and clients. @xref{Invoking guix processes}, for more information." msgstr "El daemon espera conexiones y lanza un subproceso por sesión iniciada por cada cliente (una de las sub-órdenes de @command{guix}). La orden @command{guix processes} le permite tener una visión general de la actividad de su sistema mostrando clientes y sesiones activas. @xref{Invoking guix processes}, para más información." #. type: Plain text -#: guix-git/doc/guix.texi:1573 +#: guix-git/doc/guix.texi:1590 msgid "The following command-line options are supported:" msgstr "Se aceptan las siguientes opciones de línea de ordenes:" #. type: item -#: guix-git/doc/guix.texi:1575 +#: guix-git/doc/guix.texi:1592 #, no-wrap msgid "--build-users-group=@var{group}" msgstr "--build-users-group=@var{grupo}" #. type: table -#: guix-git/doc/guix.texi:1578 +#: guix-git/doc/guix.texi:1595 msgid "Take users from @var{group} to run build processes (@pxref{Setting Up the Daemon, build users})." msgstr "Toma las usuarias de @var{grupo} para ejecutar los procesos de construcción (@pxref{Setting Up the Daemon, build users})." #. type: item -#: guix-git/doc/guix.texi:1579 guix-git/doc/guix.texi:10915 +#: guix-git/doc/guix.texi:1596 guix-git/doc/guix.texi:11229 #, no-wrap msgid "--no-substitutes" msgstr "--no-substitutes" #. type: cindex -#: guix-git/doc/guix.texi:1580 guix-git/doc/guix.texi:3083 -#: guix-git/doc/guix.texi:3741 +#: guix-git/doc/guix.texi:1597 guix-git/doc/guix.texi:3100 +#: guix-git/doc/guix.texi:3759 #, no-wrap msgid "substitutes" msgstr "sustituciones" #. type: table -#: guix-git/doc/guix.texi:1584 guix-git/doc/guix.texi:10919 +#: guix-git/doc/guix.texi:1601 guix-git/doc/guix.texi:11233 msgid "Do not use substitutes for build products. That is, always build things locally instead of allowing downloads of pre-built binaries (@pxref{Substitutes})." msgstr "No usa sustituciones para la construcción de productos. Esto es, siempre realiza las construcciones localmente en vez de permitir la descarga de binarios pre-construidos (@pxref{Substitutes})." #. type: table -#: guix-git/doc/guix.texi:1588 +#: guix-git/doc/guix.texi:1605 msgid "When the daemon runs with @option{--no-substitutes}, clients can still explicitly enable substitution @i{via} the @code{set-build-options} remote procedure call (@pxref{The Store})." msgstr "Cuando el daemon se está ejecutando con la opción @option{--no-substitutes}, los clientes aún pueden activar explícitamente las sustituciones a través de la llamada de procedimiento remoto @code{set-build-options} (@pxref{The Store})." #. type: anchor{#1} -#: guix-git/doc/guix.texi:1590 +#: guix-git/doc/guix.texi:1607 msgid "daemon-substitute-urls" msgstr "daemon-substitute-urls" #. type: item -#: guix-git/doc/guix.texi:1590 guix-git/doc/guix.texi:10902 -#: guix-git/doc/guix.texi:13160 guix-git/doc/guix.texi:13899 -#: guix-git/doc/guix.texi:14124 +#: guix-git/doc/guix.texi:1607 guix-git/doc/guix.texi:11216 +#: guix-git/doc/guix.texi:13517 guix-git/doc/guix.texi:14256 +#: guix-git/doc/guix.texi:14481 #, no-wrap msgid "--substitute-urls=@var{urls}" msgstr "--substitute-urls=@var{urls}" #. type: table -#: guix-git/doc/guix.texi:1594 +#: guix-git/doc/guix.texi:1611 #, fuzzy #| msgid "Consider @var{urls} the default whitespace-separated list of substitute source URLs. When this option is omitted, @indicateurl{https://@value{SUBSTITUTE-SERVER}} is used." msgid "Consider @var{urls} the default whitespace-separated list of substitute source URLs. When this option is omitted, @indicateurl{@value{SUBSTITUTE-URLS}} is used." msgstr "Considera @var{urls} la lista separada por espacios predeterminada de URLs de sustituciones de fuentes. Cuando se omite esta opción, se usa @indicateurl{https://@value{SUBSTITUTE-SERVER}}." #. type: table -#: guix-git/doc/guix.texi:1597 +#: guix-git/doc/guix.texi:1614 msgid "This means that substitutes may be downloaded from @var{urls}, as long as they are signed by a trusted signature (@pxref{Substitutes})." msgstr "Esto significa que las sustituciones puede ser descargadas de @var{urls}, mientras estén firmadas por una firma de confianza (@pxref{Substitutes})." #. type: table -#: guix-git/doc/guix.texi:1600 +#: guix-git/doc/guix.texi:1617 msgid "@xref{Getting Substitutes from Other Servers}, for more information on how to configure the daemon to get substitutes from other servers." msgstr "@xref{Getting Substitutes from Other Servers} para obtener más información sobre cómo configurar el daemon para obtener sustituciones de otros servidores." #. type: item -#: guix-git/doc/guix.texi:1602 guix-git/doc/guix.texi:10938 +#: guix-git/doc/guix.texi:1619 guix-git/doc/guix.texi:11252 #, no-wrap msgid "--no-offload" msgstr "--no-offload" #. type: table -#: guix-git/doc/guix.texi:1606 guix-git/doc/guix.texi:10942 +#: guix-git/doc/guix.texi:1623 guix-git/doc/guix.texi:11256 msgid "Do not use offload builds to other machines (@pxref{Daemon Offload Setup}). That is, always build things locally instead of offloading builds to remote machines." msgstr "No usa la delegación de construcciones en otras máquinas (@pxref{Daemon Offload Setup}). Es decir, siempre realiza las construcciones de manera local en vez de delegar construcciones a máquinas remotas." #. type: item -#: guix-git/doc/guix.texi:1607 +#: guix-git/doc/guix.texi:1624 #, no-wrap msgid "--cache-failures" msgstr "--cache-failures" # FUZZY #. type: table -#: guix-git/doc/guix.texi:1609 +#: guix-git/doc/guix.texi:1626 msgid "Cache build failures. By default, only successful builds are cached." msgstr "Almacena en la caché los fallos de construcción. Por defecto, únicamente las construcciones satisfactorias son almacenadas en la caché." # FUZZY #. type: table -#: guix-git/doc/guix.texi:1614 +#: guix-git/doc/guix.texi:1631 msgid "When this option is used, @command{guix gc --list-failures} can be used to query the set of store items marked as failed; @command{guix gc --clear-failures} removes store items from the set of cached failures. @xref{Invoking guix gc}." msgstr "Cuando se usa esta opción, @command{guix gc --list-failures} puede usarse para consultar el conjunto de elementos del almacén marcados como fallidos; @command{guix gc --clear-failures} borra los elementos del almacén del conjunto de fallos existentes en la caché. @xref{Invoking guix gc}." #. type: item -#: guix-git/doc/guix.texi:1615 guix-git/doc/guix.texi:10968 +#: guix-git/doc/guix.texi:1632 guix-git/doc/guix.texi:11282 #, no-wrap msgid "--cores=@var{n}" msgstr "--cores=@var{n}" #. type: itemx -#: guix-git/doc/guix.texi:1616 guix-git/doc/guix.texi:10969 +#: guix-git/doc/guix.texi:1633 guix-git/doc/guix.texi:11283 #, no-wrap msgid "-c @var{n}" msgstr "-c @var{n}" #. type: table -#: guix-git/doc/guix.texi:1619 +#: guix-git/doc/guix.texi:1636 msgid "Use @var{n} CPU cores to build each derivation; @code{0} means as many as available." msgstr "Usa @var{n} núcleos de la CPU para construir cada derivación; @code{0} significa tantos como haya disponibles." #. type: table -#: guix-git/doc/guix.texi:1623 +#: guix-git/doc/guix.texi:1640 msgid "The default value is @code{0}, but it may be overridden by clients, such as the @option{--cores} option of @command{guix build} (@pxref{Invoking guix build})." msgstr "El valor predeterminado es @code{0}, pero puede ser sobreescrito por los clientes, como la opción @option{--cores} de @command{guix build} (@pxref{Invoking guix build})." #. type: table -#: guix-git/doc/guix.texi:1627 +#: guix-git/doc/guix.texi:1644 msgid "The effect is to define the @env{NIX_BUILD_CORES} environment variable in the build process, which can then use it to exploit internal parallelism---for instance, by running @code{make -j$NIX_BUILD_CORES}." msgstr "El efecto es definir la variable de entorno @env{NIX_BUILD_CORES} en el proceso de construcción, el cual puede usarla para explotar el paralelismo interno---por ejemplo, ejecutando @code{make -j$NIX_BUILD_CORES}." #. type: item -#: guix-git/doc/guix.texi:1628 guix-git/doc/guix.texi:10973 +#: guix-git/doc/guix.texi:1645 guix-git/doc/guix.texi:11287 #, no-wrap msgid "--max-jobs=@var{n}" msgstr "--max-jobs=@var{n}" #. type: itemx -#: guix-git/doc/guix.texi:1629 guix-git/doc/guix.texi:10974 +#: guix-git/doc/guix.texi:1646 guix-git/doc/guix.texi:11288 #, no-wrap msgid "-M @var{n}" msgstr "-M @var{n}" #. type: table -#: guix-git/doc/guix.texi:1634 +#: guix-git/doc/guix.texi:1651 msgid "Allow at most @var{n} build jobs in parallel. The default value is @code{1}. Setting it to @code{0} means that no builds will be performed locally; instead, the daemon will offload builds (@pxref{Daemon Offload Setup}), or simply fail." msgstr "Permite como máximo @var{n} trabajos de construcción en paralelo. El valor predeterminado es @code{1}. Fijarlo a @code{0} significa que ninguna construcción se realizará localmente; en vez de eso, el daemon delegará las construcciones (@pxref{Daemon Offload Setup}), o simplemente fallará." #. type: item -#: guix-git/doc/guix.texi:1635 guix-git/doc/guix.texi:10943 +#: guix-git/doc/guix.texi:1652 guix-git/doc/guix.texi:11257 #, no-wrap msgid "--max-silent-time=@var{seconds}" msgstr "--max-silent-time=@var{segundos}" #. type: table -#: guix-git/doc/guix.texi:1638 guix-git/doc/guix.texi:10946 +#: guix-git/doc/guix.texi:1655 guix-git/doc/guix.texi:11260 msgid "When the build or substitution process remains silent for more than @var{seconds}, terminate it and report a build failure." msgstr "Cuando la construcción o sustitución permanece en silencio más de @var{segundos}, la finaliza e informa de un fallo de construcción." #. type: table -#: guix-git/doc/guix.texi:1640 guix-git/doc/guix.texi:1649 +#: guix-git/doc/guix.texi:1657 guix-git/doc/guix.texi:1666 msgid "The default value is @code{0}, which disables the timeout." msgstr "El valor predeterminado es @code{0}, que desactiva los plazos." #. type: table -#: guix-git/doc/guix.texi:1643 +#: guix-git/doc/guix.texi:1660 msgid "The value specified here can be overridden by clients (@pxref{Common Build Options, @option{--max-silent-time}})." msgstr "El valor especificado aquí puede ser sobreescrito por clientes (@pxref{Common Build Options, @option{--max-silent-time}})." #. type: item -#: guix-git/doc/guix.texi:1644 guix-git/doc/guix.texi:10950 +#: guix-git/doc/guix.texi:1661 guix-git/doc/guix.texi:11264 #, no-wrap msgid "--timeout=@var{seconds}" msgstr "--timeout=@var{segundos}" #. type: table -#: guix-git/doc/guix.texi:1647 guix-git/doc/guix.texi:10953 +#: guix-git/doc/guix.texi:1664 guix-git/doc/guix.texi:11267 msgid "Likewise, when the build or substitution process lasts for more than @var{seconds}, terminate it and report a build failure." msgstr "Del mismo modo, cuando el proceso de construcción o sustitución dura más de @var{segundos}, lo termina e informa un fallo de construcción." #. type: table -#: guix-git/doc/guix.texi:1652 +#: guix-git/doc/guix.texi:1669 msgid "The value specified here can be overridden by clients (@pxref{Common Build Options, @option{--timeout}})." msgstr "El valor especificado aquí puede ser sobreescrito por los clientes (@pxref{Common Build Options, @option{--timeout}})." #. type: item -#: guix-git/doc/guix.texi:1653 +#: guix-git/doc/guix.texi:1670 #, no-wrap msgid "--rounds=@var{N}" msgstr "--rounds=@var{N}" #. type: table -#: guix-git/doc/guix.texi:1658 +#: guix-git/doc/guix.texi:1675 msgid "Build each derivation @var{n} times in a row, and raise an error if consecutive build results are not bit-for-bit identical. Note that this setting can be overridden by clients such as @command{guix build} (@pxref{Invoking guix build})." msgstr "Construye cada derivación @var{n} veces seguidas, y lanza un error si los resultados de las construcciones consecutivas no son idénticos bit-a-bit. Fíjese que esta configuración puede ser sobreescrita por clientes como @command{guix build} (@pxref{Invoking guix build})." #. type: table -#: guix-git/doc/guix.texi:1662 guix-git/doc/guix.texi:10937 -#: guix-git/doc/guix.texi:11561 +#: guix-git/doc/guix.texi:1679 guix-git/doc/guix.texi:11251 +#: guix-git/doc/guix.texi:11875 msgid "When used in conjunction with @option{--keep-failed}, the differing output is kept in the store, under @file{/gnu/store/@dots{}-check}. This makes it easy to look for differences between the two results." msgstr "Cuando se usa conjuntamente con @option{--keep-failed}, la salida que difiere se mantiene en el almacén, bajo @file{/gnu/store/@dots{}-check}. Esto hace fácil buscar diferencias entre los dos resultados." #. type: item -#: guix-git/doc/guix.texi:1663 +#: guix-git/doc/guix.texi:1680 #, no-wrap msgid "--debug" msgstr "--debug" #. type: table -#: guix-git/doc/guix.texi:1665 +#: guix-git/doc/guix.texi:1682 msgid "Produce debugging output." msgstr "Produce salida de depuración." # FUZZY: overridden #. type: table -#: guix-git/doc/guix.texi:1669 +#: guix-git/doc/guix.texi:1686 msgid "This is useful to debug daemon start-up issues, but then it may be overridden by clients, for example the @option{--verbosity} option of @command{guix build} (@pxref{Invoking guix build})." msgstr "Esto es útil para depurar problemas en el arranque del daemon, pero su comportamiento puede cambiarse en cada cliente, por ejemplo con la opción @option{--verbosity} de @command{guix build} (@pxref{Invoking guix build})." #. type: item -#: guix-git/doc/guix.texi:1670 +#: guix-git/doc/guix.texi:1687 #, no-wrap msgid "--chroot-directory=@var{dir}" msgstr "--chroot-directory=@var{dir}" # FUZZY: chroot! #. type: table -#: guix-git/doc/guix.texi:1672 +#: guix-git/doc/guix.texi:1689 msgid "Add @var{dir} to the build chroot." msgstr "Añade @var{dir} al chroot de construcción." #. type: table -#: guix-git/doc/guix.texi:1678 +#: guix-git/doc/guix.texi:1695 msgid "Doing this may change the result of build processes---for instance if they use optional dependencies found in @var{dir} when it is available, and not otherwise. For that reason, it is not recommended to do so. Instead, make sure that each derivation declares all the inputs that it needs." msgstr "Hacer esto puede cambiar el resultado del proceso de construcción---por ejemplo si usa dependencias opcionales, que se encuentren en @var{dir}, cuando están disponibles, y no de otra forma. Por esa razón, no se recomienda hacerlo. En vez de eso, asegúrese que cada derivación declara todas las entradas que necesita." #. type: item -#: guix-git/doc/guix.texi:1679 +#: guix-git/doc/guix.texi:1696 #, no-wrap msgid "--disable-chroot" msgstr "--disable-chroot" # FUZZY #. type: table -#: guix-git/doc/guix.texi:1681 +#: guix-git/doc/guix.texi:1698 msgid "Disable chroot builds." msgstr "Desactiva la construcción en un entorno chroot." #. type: table -#: guix-git/doc/guix.texi:1686 +#: guix-git/doc/guix.texi:1703 msgid "Using this option is not recommended since, again, it would allow build processes to gain access to undeclared dependencies. It is necessary, though, when @command{guix-daemon} is running under an unprivileged user account." msgstr "No se recomienda el uso de esta opción ya que, de nuevo, podría permitir a los procesos de construcción ganar acceso a dependencias no declaradas. Es necesario, no obstante, cuando @command{guix-daemon} se ejecuta bajo una cuenta de usuaria sin privilegios." #. type: item -#: guix-git/doc/guix.texi:1687 +#: guix-git/doc/guix.texi:1704 #, no-wrap msgid "--log-compression=@var{type}" msgstr "--log-compression=@var{tipo}" # FUZZY: Log #. type: table -#: guix-git/doc/guix.texi:1690 +#: guix-git/doc/guix.texi:1707 msgid "Compress build logs according to @var{type}, one of @code{gzip}, @code{bzip2}, or @code{none}." msgstr "Comprime los logs de construcción de acuerdo a @var{tipo}, que puede ser @code{gzip}, @code{bzip2} o @code{none}." #. type: table -#: guix-git/doc/guix.texi:1694 -msgid "Unless @option{--lose-logs} is used, all the build logs are kept in the @var{localstatedir}. To save space, the daemon automatically compresses them with Bzip2 by default." +#: guix-git/doc/guix.texi:1711 +#, fuzzy +#| msgid "Unless @option{--lose-logs} is used, all the build logs are kept in the @var{localstatedir}. To save space, the daemon automatically compresses them with Bzip2 by default." +msgid "Unless @option{--lose-logs} is used, all the build logs are kept in the @var{localstatedir}. To save space, the daemon automatically compresses them with gzip by default." msgstr "A menos que se use @option{--lose-logs}, todos los log de construcción se mantienen en @var{localstatedir}. Para ahorrar espacio, el daemon automáticamente los comprime con bzip2 por defecto." #. type: item -#: guix-git/doc/guix.texi:1695 +#: guix-git/doc/guix.texi:1712 #, no-wrap msgid "--discover[=yes|no]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1698 guix-git/doc/guix.texi:16563 +#: guix-git/doc/guix.texi:1715 guix-git/doc/guix.texi:16920 msgid "Whether to discover substitute servers on the local network using mDNS and DNS-SD." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1701 +#: guix-git/doc/guix.texi:1718 #, fuzzy msgid "This feature is still experimental. However, here are a few considerations." msgstr "Esta característica es experimental y únicamente está implementada para imágenes de disco." #. type: enumerate -#: guix-git/doc/guix.texi:1705 +#: guix-git/doc/guix.texi:1722 msgid "It might be faster/less expensive than fetching from remote servers;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1708 +#: guix-git/doc/guix.texi:1725 msgid "There are no security risks, only genuine substitutes will be used (@pxref{Substitute Authentication});" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1712 +#: guix-git/doc/guix.texi:1729 msgid "An attacker advertising @command{guix publish} on your LAN cannot serve you malicious binaries, but they can learn what software you’re installing;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1715 +#: guix-git/doc/guix.texi:1732 msgid "Servers may serve substitute over HTTP, unencrypted, so anyone on the LAN can see what software you’re installing." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1719 +#: guix-git/doc/guix.texi:1736 msgid "It is also possible to enable or disable substitute server discovery at run-time by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1723 +#: guix-git/doc/guix.texi:1740 #, no-wrap msgid "" "herd discover guix-daemon on\n" @@ -7310,239 +7392,239 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1725 +#: guix-git/doc/guix.texi:1742 #, no-wrap msgid "--disable-deduplication" msgstr "--disable-deduplication" #. type: cindex -#: guix-git/doc/guix.texi:1726 guix-git/doc/guix.texi:4326 +#: guix-git/doc/guix.texi:1743 guix-git/doc/guix.texi:4344 #, no-wrap msgid "deduplication" msgstr "deduplicación" #. type: table -#: guix-git/doc/guix.texi:1728 +#: guix-git/doc/guix.texi:1745 msgid "Disable automatic file ``deduplication'' in the store." msgstr "Desactiva la ``deduplicación'' automática en el almacén." #. type: table -#: guix-git/doc/guix.texi:1735 +#: guix-git/doc/guix.texi:1752 msgid "By default, files added to the store are automatically ``deduplicated'': if a newly added file is identical to another one found in the store, the daemon makes the new file a hard link to the other file. This can noticeably reduce disk usage, at the expense of slightly increased input/output load at the end of a build process. This option disables this optimization." msgstr "Por defecto, los archivos se añaden al almacén ``deduplicados'' automáticamente: si un nuevo archivo añadido es idéntico a otro que ya se encuentra en el almacén, el daemon introduce el nuevo archivo como un enlace duro al otro archivo. Esto puede reducir notablemente el uso del disco, a expensas de una carga de entrada/salida ligeramente incrementada al finalizar un proceso de construcción. Esta opción desactiva dicha optimización." #. type: item -#: guix-git/doc/guix.texi:1736 +#: guix-git/doc/guix.texi:1753 #, no-wrap msgid "--gc-keep-outputs[=yes|no]" msgstr "--gc-keep-outputs[=yes|no]" #. type: table -#: guix-git/doc/guix.texi:1739 +#: guix-git/doc/guix.texi:1756 msgid "Tell whether the garbage collector (GC) must keep outputs of live derivations." msgstr "Determina si el recolector de basura (GC) debe mantener salidas de las derivaciones vivas." #. type: cindex -#: guix-git/doc/guix.texi:1740 guix-git/doc/guix.texi:4139 +#: guix-git/doc/guix.texi:1757 guix-git/doc/guix.texi:4157 #, no-wrap msgid "GC roots" msgstr "GC, raíces del recolector de basura" #. type: cindex -#: guix-git/doc/guix.texi:1741 guix-git/doc/guix.texi:4140 +#: guix-git/doc/guix.texi:1758 guix-git/doc/guix.texi:4158 #, no-wrap msgid "garbage collector roots" msgstr "raíces del recolector de basura" #. type: table -#: guix-git/doc/guix.texi:1747 +#: guix-git/doc/guix.texi:1764 msgid "When set to @code{yes}, the GC will keep the outputs of any live derivation available in the store---the @file{.drv} files. The default is @code{no}, meaning that derivation outputs are kept only if they are reachable from a GC root. @xref{Invoking guix gc}, for more on GC roots." msgstr "Cuando se usa @code{yes}, el recolector de basura mantendrá las salidas de cualquier derivación viva disponible en el almacén---los archivos @code{.drv}. El valor predeterminado es @code{no}, lo que significa que las salidas de las derivaciones se mantienen únicamente si son alcanzables desde alguna raíz del recolector de basura. @xref{Invoking guix gc}, para más información sobre las raíces del recolector de basura." #. type: item -#: guix-git/doc/guix.texi:1748 +#: guix-git/doc/guix.texi:1765 #, no-wrap msgid "--gc-keep-derivations[=yes|no]" msgstr "--gc-keep-derivations[=yes|no]" #. type: table -#: guix-git/doc/guix.texi:1751 +#: guix-git/doc/guix.texi:1768 msgid "Tell whether the garbage collector (GC) must keep derivations corresponding to live outputs." msgstr "Determina si el recolector de basura (GC) debe mantener derivaciones correspondientes a salidas vivas." #. type: table -#: guix-git/doc/guix.texi:1757 +#: guix-git/doc/guix.texi:1774 msgid "When set to @code{yes}, as is the case by default, the GC keeps derivations---i.e., @file{.drv} files---as long as at least one of their outputs is live. This allows users to keep track of the origins of items in their store. Setting it to @code{no} saves a bit of disk space." msgstr "Cuando se usa @code{yes}, como es el caso predeterminado, el recolector de basura mantiene derivaciones---es decir, archivos @code{.drv}---mientras al menos una de sus salidas está viva. Esto permite a las usuarias seguir la pista de los orígenes de los elementos en el almacén. El uso de @code{no} aquí ahorra un poco de espacio en disco." #. type: table -#: guix-git/doc/guix.texi:1766 +#: guix-git/doc/guix.texi:1783 msgid "In this way, setting @option{--gc-keep-derivations} to @code{yes} causes liveness to flow from outputs to derivations, and setting @option{--gc-keep-outputs} to @code{yes} causes liveness to flow from derivations to outputs. When both are set to @code{yes}, the effect is to keep all the build prerequisites (the sources, compiler, libraries, and other build-time tools) of live objects in the store, regardless of whether these prerequisites are reachable from a GC root. This is convenient for developers since it saves rebuilds or downloads." msgstr "De este modo, usar @option{--gc-keep-derivations} con valor @code{yes} provoca que la vitalidad fluya de salidas a derivaciones, y usar @option{--gc-keep-outputs} con valor @code{yes} provoca que la vitalidad fluya de derivaciones a salidas. Cuando ambas tienen valor @code{yes}, el efecto es mantener todos los prerrequisitos de construcción (las fuentes, el compilador, las bibliotecas y otras herramientas de tiempo de construcción) de los objetos vivos del almacén, independientemente de que esos prerrequisitos sean alcanzables desde una raíz del recolector de basura. Esto es conveniente para desarrolladoras ya que evita reconstrucciones o descargas." #. type: item -#: guix-git/doc/guix.texi:1767 +#: guix-git/doc/guix.texi:1784 #, no-wrap msgid "--impersonate-linux-2.6" msgstr "--impersonate-linux-2.6" #. type: table -#: guix-git/doc/guix.texi:1770 +#: guix-git/doc/guix.texi:1787 msgid "On Linux-based systems, impersonate Linux 2.6. This means that the kernel's @command{uname} system call will report 2.6 as the release number." msgstr "En sistemas basados en Linux, suplanta a Linux 2.6. Esto significa que la llamada del sistema @command{uname} del núcleo indicará 2.6 como el número de versión de la publicación." #. type: table -#: guix-git/doc/guix.texi:1773 +#: guix-git/doc/guix.texi:1790 msgid "This might be helpful to build programs that (usually wrongfully) depend on the kernel version number." msgstr "Esto puede ser útil para construir programas que (habitualmente de forma incorrecta) dependen en el número de versión del núcleo." #. type: item -#: guix-git/doc/guix.texi:1774 +#: guix-git/doc/guix.texi:1791 #, no-wrap msgid "--lose-logs" msgstr "--lose-logs" #. type: table -#: guix-git/doc/guix.texi:1777 +#: guix-git/doc/guix.texi:1794 msgid "Do not keep build logs. By default they are kept under @file{@var{localstatedir}/guix/log}." msgstr "No guarda logs de construcción. De manera predeterminada se almacenan en el directorio @file{@var{localstatedir}/guix/log}." #. type: item -#: guix-git/doc/guix.texi:1778 guix-git/doc/guix.texi:4567 -#: guix-git/doc/guix.texi:5846 guix-git/doc/guix.texi:6229 -#: guix-git/doc/guix.texi:6629 guix-git/doc/guix.texi:11505 -#: guix-git/doc/guix.texi:13187 guix-git/doc/guix.texi:13452 -#: guix-git/doc/guix.texi:14129 guix-git/doc/guix.texi:34442 -#: guix-git/doc/guix.texi:35251 +#: guix-git/doc/guix.texi:1795 guix-git/doc/guix.texi:4585 +#: guix-git/doc/guix.texi:5859 guix-git/doc/guix.texi:6272 +#: guix-git/doc/guix.texi:6672 guix-git/doc/guix.texi:11819 +#: guix-git/doc/guix.texi:13544 guix-git/doc/guix.texi:13809 +#: guix-git/doc/guix.texi:14486 guix-git/doc/guix.texi:34881 +#: guix-git/doc/guix.texi:35695 #, no-wrap msgid "--system=@var{system}" msgstr "--system=@var{sistema}" #. type: table -#: guix-git/doc/guix.texi:1782 +#: guix-git/doc/guix.texi:1799 msgid "Assume @var{system} as the current system type. By default it is the architecture/kernel pair found at configure time, such as @code{x86_64-linux}." msgstr "Asume @var{sistema} como el tipo actual de sistema. Por defecto es el par de arquitectura/núcleo encontrado durante la configuración, como @code{x86_64-linux}." #. type: item -#: guix-git/doc/guix.texi:1783 guix-git/doc/guix.texi:10747 +#: guix-git/doc/guix.texi:1800 guix-git/doc/guix.texi:11061 #, no-wrap msgid "--listen=@var{endpoint}" msgstr "--listen=@var{destino}" #. type: table -#: guix-git/doc/guix.texi:1788 +#: guix-git/doc/guix.texi:1805 msgid "Listen for connections on @var{endpoint}. @var{endpoint} is interpreted as the file name of a Unix-domain socket if it starts with @code{/} (slash sign). Otherwise, @var{endpoint} is interpreted as a host name or host name and port to listen to. Here are a few examples:" msgstr "Espera conexiones en @var{destino}. @var{destino} se interpreta como el nombre del archivo del socket de dominio Unix si comienza on @code{/} (barra a la derecha). En otro caso, @var{destino} se interpreta como un nombre de máquina o un nombre de máquina y puerto a escuchar. Aquí van unos pocos ejemplos:" #. type: item -#: guix-git/doc/guix.texi:1790 +#: guix-git/doc/guix.texi:1807 #, no-wrap msgid "--listen=/gnu/var/daemon" msgstr "--listen=/gnu/var/daemon" #. type: table -#: guix-git/doc/guix.texi:1793 +#: guix-git/doc/guix.texi:1810 msgid "Listen for connections on the @file{/gnu/var/daemon} Unix-domain socket, creating it if needed." msgstr "Espera conexiones en el socket de dominio Unix @file{/gnu/var/daemon}, se crea si es necesario." #. type: item -#: guix-git/doc/guix.texi:1794 +#: guix-git/doc/guix.texi:1811 #, no-wrap msgid "--listen=localhost" msgstr "--listen=localhost" #. type: cindex -#: guix-git/doc/guix.texi:1795 guix-git/doc/guix.texi:9421 +#: guix-git/doc/guix.texi:1812 guix-git/doc/guix.texi:9735 #, no-wrap msgid "daemon, remote access" msgstr "daemon, acceso remoto" #. type: cindex -#: guix-git/doc/guix.texi:1796 guix-git/doc/guix.texi:9422 +#: guix-git/doc/guix.texi:1813 guix-git/doc/guix.texi:9736 #, no-wrap msgid "remote access to the daemon" msgstr "acceso remoto al daemon" # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:1797 guix-git/doc/guix.texi:9423 +#: guix-git/doc/guix.texi:1814 guix-git/doc/guix.texi:9737 #, no-wrap msgid "daemon, cluster setup" msgstr "daemon, configuración en cluster" # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:1798 guix-git/doc/guix.texi:9424 +#: guix-git/doc/guix.texi:1815 guix-git/doc/guix.texi:9738 #, no-wrap msgid "clusters, daemon setup" msgstr "daemon, configuración en cluster" #. type: table -#: guix-git/doc/guix.texi:1801 +#: guix-git/doc/guix.texi:1818 msgid "Listen for TCP connections on the network interface corresponding to @code{localhost}, on port 44146." msgstr "Espera conexiones TCP en la interfaz de red correspondiente a @code{localhost}, en el puerto 44146." #. type: item -#: guix-git/doc/guix.texi:1802 +#: guix-git/doc/guix.texi:1819 #, no-wrap msgid "--listen=128.0.0.42:1234" msgstr "--listen=128.0.0.42:1234" #. type: table -#: guix-git/doc/guix.texi:1805 +#: guix-git/doc/guix.texi:1822 msgid "Listen for TCP connections on the network interface corresponding to @code{128.0.0.42}, on port 1234." msgstr "Espera conexiones TCP en la interfaz de red correspondiente a @code{128.0.0.42}, en el puerto 1234." #. type: table -#: guix-git/doc/guix.texi:1812 +#: guix-git/doc/guix.texi:1829 msgid "This option can be repeated multiple times, in which case @command{guix-daemon} accepts connections on all the specified endpoints. Users can tell client commands what endpoint to connect to by setting the @env{GUIX_DAEMON_SOCKET} environment variable (@pxref{The Store, @env{GUIX_DAEMON_SOCKET}})." msgstr "Esta opción puede repetirse múltiples veces, en cuyo caso @command{guix-daemon} acepta conexiones en todos los destinos especificados. Las usuarias pueden indicar a los clientes a qué destino conectarse proporcionando el valor deseado a la variable de entorno @env{GUIX_DAEMON_SOCKET} (@pxref{The Store, @env{GUIX_DAEMON_SOCKET}})." #. type: quotation -#: guix-git/doc/guix.texi:1819 +#: guix-git/doc/guix.texi:1836 msgid "The daemon protocol is @emph{unauthenticated and unencrypted}. Using @option{--listen=@var{host}} is suitable on local networks, such as clusters, where only trusted nodes may connect to the build daemon. In other cases where remote access to the daemon is needed, we recommend using Unix-domain sockets along with SSH." msgstr "El protocolo del daemon @code{no está autentificado ni cifrado}. El uso de @option{--listen=@var{dirección}} es aceptable en redes locales, como clusters, donde únicamente los nodos de confianza pueden conectarse al daemon de construcción. En otros casos donde el acceso remoto al daemon es necesario, recomendamos usar sockets de dominio Unix junto a SSH." #. type: table -#: guix-git/doc/guix.texi:1824 +#: guix-git/doc/guix.texi:1841 msgid "When @option{--listen} is omitted, @command{guix-daemon} listens for connections on the Unix-domain socket located at @file{@var{localstatedir}/guix/daemon-socket/socket}." msgstr "Cuando se omite @option{--listen}, @command{guix-daemon} escucha conexiones en el socket de dominio Unix que se encuentra en @file{@var{localstatedir}/guix/daemon-socket/socket}." #. type: Plain text -#: guix-git/doc/guix.texi:1834 +#: guix-git/doc/guix.texi:1851 msgid "When using Guix on top of GNU/Linux distribution other than Guix System---a so-called @dfn{foreign distro}---a few additional steps are needed to get everything in place. Here are some of them." msgstr "Cuando se usa Guix sobre una distribución GNU/Linux distinta al sistema Guix---una @dfn{distribución distinta}---unos pocos pasos adicionales son necesarios para tener todo preparado. Aquí están algunos de ellos." #. type: anchor{#1} -#: guix-git/doc/guix.texi:1838 +#: guix-git/doc/guix.texi:1855 msgid "locales-and-locpath" msgstr "locales-and-locpath" #. type: cindex -#: guix-git/doc/guix.texi:1838 +#: guix-git/doc/guix.texi:1855 #, no-wrap msgid "locales, when not on Guix System" msgstr "localizaciones, cuando no se está en el sistema Guix" #. type: vindex -#: guix-git/doc/guix.texi:1839 guix-git/doc/guix.texi:15770 +#: guix-git/doc/guix.texi:1856 guix-git/doc/guix.texi:16127 #, no-wrap msgid "LOCPATH" msgstr "LOCPATH" #. type: vindex -#: guix-git/doc/guix.texi:1840 +#: guix-git/doc/guix.texi:1857 #, no-wrap msgid "GUIX_LOCPATH" msgstr "GUIX_LOCPATH" #. type: Plain text -#: guix-git/doc/guix.texi:1845 +#: guix-git/doc/guix.texi:1862 msgid "Packages installed @i{via} Guix will not use the locale data of the host system. Instead, you must first install one of the locale packages available with Guix and then define the @env{GUIX_LOCPATH} environment variable:" msgstr "Los paquetes instalados a través de Guix no usarán los datos de localización del sistema anfitrión. En vez de eso, debe instalar primero uno de los paquetes de localización disponibles con Guix y después definir la variable de entorno @env{GUIX_LOCPATH}:" #. type: example -#: guix-git/doc/guix.texi:1849 +#: guix-git/doc/guix.texi:1866 #, no-wrap msgid "" "$ guix install glibc-locales\n" @@ -7552,141 +7634,141 @@ msgstr "" "$ export GUIX_LOCPATH=$HOME/.guix-profile/lib/locale\n" #. type: Plain text -#: guix-git/doc/guix.texi:1855 +#: guix-git/doc/guix.texi:1872 #, fuzzy msgid "Note that the @code{glibc-locales} package contains data for all the locales supported by the GNU@tie{}libc and weighs in at around 917@tie{}MiB@. Alternatively, the @code{glibc-utf8-locales} is smaller but limited to a few UTF-8 locales." msgstr "Fíjese que el paquete @code{glibc-locales} contiene datos para todas las localizaciones que ofrece GNU@tie{}libc y pesa alrededor de 917@tie{}MiB. De manera alternativa, @code{glibc-utf8-locales} tiene menor tamaño pero está limitado a localizaciones UTF-8." #. type: Plain text -#: guix-git/doc/guix.texi:1859 +#: guix-git/doc/guix.texi:1876 msgid "The @env{GUIX_LOCPATH} variable plays a role similar to @env{LOCPATH} (@pxref{Locale Names, @env{LOCPATH},, libc, The GNU C Library Reference Manual}). There are two important differences though:" msgstr "La variable @env{GUIX_LOCPATH} juega un rol similar a @env{LOCPATH} (@pxref{Locale Names, @env{LOCPATH},, libc, The GNU C Library Reference Manual}). No obstante, hay dos diferencias importantes:" #. type: enumerate -#: guix-git/doc/guix.texi:1866 +#: guix-git/doc/guix.texi:1883 msgid "@env{GUIX_LOCPATH} is honored only by the libc in Guix, and not by the libc provided by foreign distros. Thus, using @env{GUIX_LOCPATH} allows you to make sure the programs of the foreign distro will not end up loading incompatible locale data." msgstr "@env{GUIX_LOCPATH} es respetada únicamente por la libc dentro de Guix, y no por la libc que proporcionan las distribuciones distintas. Por tanto, usar @env{GUIX_LOCPATH} le permite asegurarse de que los programas de la distribución distinta no cargarán datos de localización incompatibles." #. type: enumerate -#: guix-git/doc/guix.texi:1873 +#: guix-git/doc/guix.texi:1890 msgid "libc suffixes each entry of @env{GUIX_LOCPATH} with @code{/X.Y}, where @code{X.Y} is the libc version---e.g., @code{2.22}. This means that, should your Guix profile contain a mixture of programs linked against different libc version, each libc version will only try to load locale data in the right format." msgstr "libc añade un sufijo a cada entrada de @env{GUIX_LOCPATH} con @code{/X.Y}, donde @code{X.Y} es la versión de libc---por ejemplo, @code{2.22}. Esto significa que, en caso que su perfil Guix contenga una mezcla de programas enlazados contra diferentes versiones de libc, cada versión de libc únicamente intentará cargar datos de localización en el formato correcto." #. type: Plain text -#: guix-git/doc/guix.texi:1877 +#: guix-git/doc/guix.texi:1894 msgid "This is important because the locale data format used by different libc versions may be incompatible." msgstr "Esto es importante porque el formato de datos de localización usado por diferentes versiones de libc puede ser incompatible." # TODO: Comprobar traducción de libc #. type: cindex -#: guix-git/doc/guix.texi:1880 +#: guix-git/doc/guix.texi:1897 #, no-wrap msgid "name service switch, glibc" msgstr "selector de servicios de nombres, glibc" # TODO: Comprobar traducción de libc #. type: cindex -#: guix-git/doc/guix.texi:1881 +#: guix-git/doc/guix.texi:1898 #, no-wrap msgid "NSS (name service switch), glibc" msgstr "NSS (selector de servicios de nombres), glibc" # TODO: Comprobar traducción de libc #. type: cindex -#: guix-git/doc/guix.texi:1882 +#: guix-git/doc/guix.texi:1899 #, no-wrap msgid "nscd (name service caching daemon)" msgstr "ncsd (daemon de caché del servicio de nombres)" # TODO: Comprobar traducción de libc #. type: cindex -#: guix-git/doc/guix.texi:1883 +#: guix-git/doc/guix.texi:1900 #, no-wrap msgid "name service caching daemon (nscd)" msgstr "daemon de caché del servicio de nombres (ncsd)" #. type: Plain text -#: guix-git/doc/guix.texi:1890 +#: guix-git/doc/guix.texi:1907 msgid "When using Guix on a foreign distro, we @emph{strongly recommend} that the system run the GNU C library's @dfn{name service cache daemon}, @command{nscd}, which should be listening on the @file{/var/run/nscd/socket} socket. Failing to do that, applications installed with Guix may fail to look up host names or user accounts, or may even crash. The next paragraphs explain why." msgstr "Cuando se usa Guix en una distribución distinta, @emph{recomendamos encarecidamente} que el sistema ejecute el @dfn{daemon de caché del servicio de nombres} de la biblioteca de C de GNU, @command{ncsd}, que debe escuchar en el socket @file{/var/run/nscd/socket}. En caso de no hacerlo, las aplicaciones instaladas con Guix pueden fallar al buscar nombres de máquinas o cuentas de usuaria, o incluso pueden terminar abruptamente. Los siguientes párrafos explican por qué." #. type: file{#1} -#: guix-git/doc/guix.texi:1891 +#: guix-git/doc/guix.texi:1908 #, no-wrap msgid "nsswitch.conf" msgstr "nsswitch.conf" #. type: Plain text -#: guix-git/doc/guix.texi:1896 +#: guix-git/doc/guix.texi:1913 msgid "The GNU C library implements a @dfn{name service switch} (NSS), which is an extensible mechanism for ``name lookups'' in general: host name resolution, user accounts, and more (@pxref{Name Service Switch,,, libc, The GNU C Library Reference Manual})." msgstr "La biblioteca de C de GNU implementa un @dfn{selector de servicios de nombres} (NSS), que es un mecanismo extensible para ``búsquedas de nombres'' en general: resolución de nombres de máquinas, cuentas de usuaria y más (@pxref{Name Service Switch,,, libc, The GNU C Library Reference Manual})." #. type: cindex -#: guix-git/doc/guix.texi:1897 +#: guix-git/doc/guix.texi:1914 #, no-wrap msgid "Network information service (NIS)" msgstr "Servicio de información de red (NIS)" #. type: cindex -#: guix-git/doc/guix.texi:1898 +#: guix-git/doc/guix.texi:1915 #, no-wrap msgid "NIS (Network information service)" msgstr "NIS (servicio de información de red)" #. type: Plain text -#: guix-git/doc/guix.texi:1907 +#: guix-git/doc/guix.texi:1924 msgid "Being extensible, the NSS supports @dfn{plugins}, which provide new name lookup implementations: for example, the @code{nss-mdns} plugin allow resolution of @code{.local} host names, the @code{nis} plugin allows user account lookup using the Network information service (NIS), and so on. These extra ``lookup services'' are configured system-wide in @file{/etc/nsswitch.conf}, and all the programs running on the system honor those settings (@pxref{NSS Configuration File,,, libc, The GNU C Reference Manual})." msgstr "Al ser extensible, NSS permite el uso de @dfn{módulos}, los cuales proporcionan nuevas implementaciones de búsqueda de nombres: por ejemplo, el módulo @code{nss-mdns} permite la resolución de nombres de máquina @code{.local}, el módulo @code{nis} permite la búsqueda de cuentas de usuaria usando el servicio de información de red (NIS), etc. Estos ``servicios de búsqueda'' extra se configuran para todo el sistema en @file{/etc/nsswitch.conf}, y todos los programas en ejecución respetan esta configuración (@pxref{NSS Configuration File,,, libc, The GNU C Reference Manual})." #. type: Plain text -#: guix-git/doc/guix.texi:1917 +#: guix-git/doc/guix.texi:1934 msgid "When they perform a name lookup---for instance by calling the @code{getaddrinfo} function in C---applications first try to connect to the nscd; on success, nscd performs name lookups on their behalf. If the nscd is not running, then they perform the name lookup by themselves, by loading the name lookup services into their own address space and running it. These name lookup services---the @file{libnss_*.so} files---are @code{dlopen}'d, but they may come from the host system's C library, rather than from the C library the application is linked against (the C library coming from Guix)." msgstr "Cuando se realiza una búsqueda de nombres---por ejemplo, llamando a la función @code{getaddrinfo} en C---las aplicaciones primero intentarán conectar con nscd; en caso satisfactorio, nscd realiza la búsqueda de nombres en delegación suya. Si nscd no está ejecutándose, entonces realizan la búsqueda por ellas mismas, cargando los servicios de búsqueda de nombres en su propio espacio de direcciones y ejecutándola. Estos servicios de búsqueda de nombres---los archivos @file{libnss_*.so}---son abiertos con @code{dlopen}, pero pueden venir de la biblioteca de C del sistema, en vez de la biblioteca de C contra la que la aplicación está enlazada (la biblioteca de C que viene en Guix)." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:1922 +#: guix-git/doc/guix.texi:1939 msgid "And this is where the problem is: if your application is linked against Guix's C library (say, glibc 2.24) and tries to load NSS plugins from another C library (say, @code{libnss_mdns.so} for glibc 2.22), it will likely crash or have its name lookups fail unexpectedly." msgstr "Y aquí es donde está el problema: si su aplicación está enlazada contra la biblioteca de C de Guix (digamos, glibc 2.24) e intenta cargar módulos de otra biblioteca de C (digamos, @code{libnss_mdns.so} para glibc 2.22), probablemente terminará abruptamente o sus búsquedas de nombres fallarán inesperadamente. " #. type: Plain text -#: guix-git/doc/guix.texi:1927 +#: guix-git/doc/guix.texi:1944 msgid "Running @command{nscd} on the system, among other advantages, eliminates this binary incompatibility problem because those @code{libnss_*.so} files are loaded in the @command{nscd} process, not in applications themselves." msgstr "Ejecutar @command{nscd} en el sistema, entre otras ventajas, elimina este problema de incompatibilidad binaria porque esos archivos @code{libnss_*.so} se cargan en el proceso @command{nscd}, no en la aplicación misma." #. type: subsection -#: guix-git/doc/guix.texi:1928 +#: guix-git/doc/guix.texi:1945 #, no-wrap msgid "X11 Fonts" msgstr "Tipografías X11" #. type: Plain text -#: guix-git/doc/guix.texi:1938 +#: guix-git/doc/guix.texi:1955 #, fuzzy #| msgid "The majority of graphical applications use Fontconfig to locate and load fonts and perform X11-client-side rendering. The @code{fontconfig} package in Guix looks for fonts in @file{$HOME/.guix-profile} by default. Thus, to allow graphical applications installed with Guix to display fonts, you have to install fonts with Guix as well. Essential font packages include @code{gs-fonts}, @code{font-dejavu}, and @code{font-gnu-freefont}." msgid "The majority of graphical applications use Fontconfig to locate and load fonts and perform X11-client-side rendering. The @code{fontconfig} package in Guix looks for fonts in @file{$HOME/.guix-profile} by default. Thus, to allow graphical applications installed with Guix to display fonts, you have to install fonts with Guix as well. Essential font packages include @code{font-ghostscript}, @code{font-dejavu}, and @code{font-gnu-freefont}." msgstr "La mayoría de aplicaciones gráficas usan Fontconfig para encontrar y cargar tipografías y realizar la renderización del lado del cliente X11. El paquete @code{fontconfig} en Guix busca tipografías en @file{$HOME/.guix-profile} por defecto. Por tanto, para permitir a aplicaciones gráficas instaladas con Guix mostrar tipografías, tiene que instalar las tipografías también con Guix. Paquetes esenciales de tipografías incluyen @code{gs-fonts}, @code{font-dejavu} y @code{font-gnu-freefont}." #. type: code{#1} -#: guix-git/doc/guix.texi:1939 +#: guix-git/doc/guix.texi:1956 #, no-wrap msgid "fc-cache" msgstr "fc-cache" # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:1940 +#: guix-git/doc/guix.texi:1957 #, no-wrap msgid "font cache" msgstr "caché de tipografías" #. type: Plain text -#: guix-git/doc/guix.texi:1944 +#: guix-git/doc/guix.texi:1961 msgid "Once you have installed or removed fonts, or when you notice an application that does not find fonts, you may need to install Fontconfig and to force an update of its font cache by running:" msgstr "Una vez que haya instalado o borrado tipografías, o cuando se de cuenta de que una aplicación no encuentra las tipografías, puede que necesite instalar Fontconfig y forzar una actualización de su caché de tipografías ejecutando:" #. type: example -#: guix-git/doc/guix.texi:1948 +#: guix-git/doc/guix.texi:1965 #, no-wrap msgid "" "guix install fontconfig\n" @@ -7696,272 +7778,272 @@ msgstr "" "fc-cache -rv\n" #. type: Plain text -#: guix-git/doc/guix.texi:1956 +#: guix-git/doc/guix.texi:1973 msgid "To display text written in Chinese languages, Japanese, or Korean in graphical applications, consider installing @code{font-adobe-source-han-sans} or @code{font-wqy-zenhei}. The former has multiple outputs, one per language family (@pxref{Packages with Multiple Outputs}). For instance, the following command installs fonts for Chinese languages:" msgstr "Para mostrar texto escrito en lenguas chinas, Japonés o Coreano en aplicaciones gráficas, considere instalar @code{font-adobe-source-han-sans} o @code{font-wqy-zenhei}. La anterior tiene múltiples salidas, una por familia de lengua (@pxref{Packages with Multiple Outputs}). Por ejemplo, la siguiente orden instala tipografías para lenguas chinas:" #. type: example -#: guix-git/doc/guix.texi:1959 +#: guix-git/doc/guix.texi:1976 #, no-wrap msgid "guix install font-adobe-source-han-sans:cn\n" msgstr "guix install font-adobe-source-han-sans:cn\n" #. type: code{#1} -#: guix-git/doc/guix.texi:1961 +#: guix-git/doc/guix.texi:1978 #, no-wrap msgid "xterm" msgstr "xterm" #. type: Plain text -#: guix-git/doc/guix.texi:1965 +#: guix-git/doc/guix.texi:1982 msgid "Older programs such as @command{xterm} do not use Fontconfig and instead rely on server-side font rendering. Such programs require to specify a full name of a font using XLFD (X Logical Font Description), like this:" msgstr "Programas más antiguos como @command{xterm} no usan Fontconfig sino que dependen en el lado del servidor para realizar el renderizado de tipografías. Dichos programas requieren especificar un nombre completo de tipografía usando XLFD (Descripción lógica de tipografías X), como esta:" #. type: example -#: guix-git/doc/guix.texi:1968 +#: guix-git/doc/guix.texi:1985 #, no-wrap msgid "-*-dejavu sans-medium-r-normal-*-*-100-*-*-*-*-*-1\n" msgstr "-*-dejavu sans-medium-r-normal-*-*-100-*-*-*-*-*-1\n" #. type: Plain text -#: guix-git/doc/guix.texi:1972 +#: guix-git/doc/guix.texi:1989 msgid "To be able to use such full names for the TrueType fonts installed in your Guix profile, you need to extend the font path of the X server:" msgstr "Para ser capaz de usar estos nombres completos para las tipografías TrueType instaladas en su perfil Guix, necesita extender la ruta de fuentes del servidor X:" #. type: example -#: guix-git/doc/guix.texi:1977 +#: guix-git/doc/guix.texi:1994 #, no-wrap msgid "xset +fp $(dirname $(readlink -f ~/.guix-profile/share/fonts/truetype/fonts.dir))\n" msgstr "xset +fp $(dirname $(readlink -f ~/.guix-profile/share/fonts/truetype/fonts.dir))\n" #. type: code{#1} -#: guix-git/doc/guix.texi:1979 +#: guix-git/doc/guix.texi:1996 #, no-wrap msgid "xlsfonts" msgstr "xlsfonts" #. type: Plain text -#: guix-git/doc/guix.texi:1982 +#: guix-git/doc/guix.texi:1999 msgid "After that, you can run @code{xlsfonts} (from @code{xlsfonts} package) to make sure your TrueType fonts are listed there." msgstr "Después de eso, puede ejecutar @code{xlsfonts} (del paquete @code{xlsfonts}) para asegurarse que sus tipografías TrueType se enumeran aquí." #. type: code{#1} -#: guix-git/doc/guix.texi:1986 guix-git/doc/guix.texi:34161 +#: guix-git/doc/guix.texi:2003 guix-git/doc/guix.texi:34600 #, no-wrap msgid "nss-certs" msgstr "nss-certs" #. type: Plain text -#: guix-git/doc/guix.texi:1989 +#: guix-git/doc/guix.texi:2006 msgid "The @code{nss-certs} package provides X.509 certificates, which allow programs to authenticate Web servers accessed over HTTPS." msgstr "El paquete @code{nss-certs} proporciona certificados X.509, que permiten a los programas verificar los servidores accedidos por HTTPS." #. type: Plain text -#: guix-git/doc/guix.texi:1994 +#: guix-git/doc/guix.texi:2011 msgid "When using Guix on a foreign distro, you can install this package and define the relevant environment variables so that packages know where to look for certificates. @xref{X.509 Certificates}, for detailed information." msgstr "Cuando se usa Guix en una distribución distinta, puede instalar este paquete y definir las variables de entorno relevantes de modo que los paquetes sepan dónde buscar los certificados. @xref{X.509 Certificates}, para información detallada." #. type: code{#1} -#: guix-git/doc/guix.texi:1997 +#: guix-git/doc/guix.texi:2014 #, no-wrap msgid "emacs" msgstr "emacs" #. type: Plain text -#: guix-git/doc/guix.texi:2003 +#: guix-git/doc/guix.texi:2020 msgid "When you install Emacs packages with Guix, the Elisp files are placed under the @file{share/emacs/site-lisp/} directory of the profile in which they are installed. The Elisp libraries are made available to Emacs through the @env{EMACSLOADPATH} environment variable, which is set when installing Emacs itself." msgstr "Cuando instale paquetes de Emacs con Guix los archivos de Elisp se encuentran en el directorio @file{share/emacs/site-lisp/} del perfil en el que se instalen. Las bibliotecas de Elisp se ponen a disposición de Emacs a través de la variable de entorno @env{EMACSLOADPATH}, a la cual se le asigna un valor cuando se instale el propio Emacs." #. type: Plain text -#: guix-git/doc/guix.texi:2010 +#: guix-git/doc/guix.texi:2027 msgid "Additionally, autoload definitions are automatically evaluated at the initialization of Emacs, by the Guix-specific @code{guix-emacs-autoload-packages} procedure. If, for some reason, you want to avoid auto-loading the Emacs packages installed with Guix, you can do so by running Emacs with the @option{--no-site-file} option (@pxref{Init File,,, emacs, The GNU Emacs Manual})." msgstr "De manera adicional, las definiciones de carga automática se evaluan de manera automática en la inicialización de Emacs, mediante el procedimiento @code{guix-emacs-autoload-packages} específico de Guix. Si, por alguna razón, desea evitar la carga automática de paquetes Emacs instalados con Guix, puede hacerlo ejecutando Emacs con la opción @option{--no-site-file} (@pxref{Init File,,, emacs, The GNU Emacs Manual})." #. type: cindex -#: guix-git/doc/guix.texi:2015 +#: guix-git/doc/guix.texi:2032 #, no-wrap msgid "Upgrading Guix, on a foreign distro" msgstr "Actualizar Guix, en una distribución distinta" #. type: Plain text -#: guix-git/doc/guix.texi:2018 +#: guix-git/doc/guix.texi:2035 msgid "To upgrade Guix, run:" msgstr "Para actualizar Guix ejecute:" #. type: example -#: guix-git/doc/guix.texi:2021 guix-git/doc/guix.texi:2879 +#: guix-git/doc/guix.texi:2038 guix-git/doc/guix.texi:2896 #, no-wrap msgid "guix pull\n" msgstr "guix pull\n" #. type: Plain text -#: guix-git/doc/guix.texi:2024 +#: guix-git/doc/guix.texi:2041 msgid "@xref{Invoking guix pull}, for more information." msgstr "@xref{Invoking guix pull}, para más información." #. type: cindex -#: guix-git/doc/guix.texi:2025 +#: guix-git/doc/guix.texi:2042 #, no-wrap msgid "upgrading Guix for the root user, on a foreign distro" msgstr "actualizar Guix para la usuaria root, en una distribución distinta" #. type: cindex -#: guix-git/doc/guix.texi:2026 +#: guix-git/doc/guix.texi:2043 #, no-wrap msgid "upgrading the Guix daemon, on a foreign distro" msgstr "actualización del daemon de Guix, en una distribución distinta" #. type: cindex -#: guix-git/doc/guix.texi:2027 +#: guix-git/doc/guix.texi:2044 #, no-wrap msgid "@command{guix pull} for the root user, on a foreign distro" msgstr "@command{guix pull} para la usuaria root, en una distribución distinta" #. type: Plain text -#: guix-git/doc/guix.texi:2030 +#: guix-git/doc/guix.texi:2047 msgid "On a foreign distro, you can upgrade the build daemon by running:" msgstr "En una distribución distinta puede actualizar el daemon de construcción ejecutando:" #. type: example -#: guix-git/doc/guix.texi:2033 +#: guix-git/doc/guix.texi:2050 #, no-wrap msgid "sudo -i guix pull\n" msgstr "sudo -i guix pull\n" #. type: Plain text -#: guix-git/doc/guix.texi:2038 +#: guix-git/doc/guix.texi:2055 msgid "followed by (assuming your distro uses the systemd service management tool):" msgstr "seguido de (asumiendo que su distribución usa la herramienta de gestión de servicios systemd):" #. type: example -#: guix-git/doc/guix.texi:2041 +#: guix-git/doc/guix.texi:2058 #, no-wrap msgid "systemctl restart guix-daemon.service\n" msgstr "systemctl restart guix-daemon.service\n" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:2045 +#: guix-git/doc/guix.texi:2062 msgid "On Guix System, upgrading the daemon is achieved by reconfiguring the system (@pxref{Invoking guix system, @code{guix system reconfigure}})." msgstr "En el Sistema Guix, la actualización del daemon se lleva a cabo con la reconfiguración el sistema (@pxref{Invoking guix system, @code{guix system reconfigure}})." #. type: cindex -#: guix-git/doc/guix.texi:2052 +#: guix-git/doc/guix.texi:2069 #, no-wrap msgid "installing Guix System" msgstr "instalación del sistema Guix" #. type: cindex -#: guix-git/doc/guix.texi:2053 +#: guix-git/doc/guix.texi:2070 #, no-wrap msgid "Guix System, installation" msgstr "sistema Guix, instalación" #. type: Plain text -#: guix-git/doc/guix.texi:2058 +#: guix-git/doc/guix.texi:2075 msgid "This section explains how to install Guix System on a machine. Guix, as a package manager, can also be installed on top of a running GNU/Linux system, @pxref{Installation}." msgstr "Esta sección explica cómo instalar el sistema Guix en una máquina. Guix, como gestor de paquetes, puede instalarse sobre un sistema GNU/Linux en ejecución, @pxref{Installation}." #. type: quotation -#: guix-git/doc/guix.texi:2067 +#: guix-git/doc/guix.texi:2084 msgid "You are reading this documentation with an Info reader. For details on how to use it, hit the @key{RET} key (``return'' or ``enter'') on the link that follows: @pxref{Top, Info reader,, info-stnd, Stand-alone GNU Info}. Hit @kbd{l} afterwards to come back here." msgstr "Está leyendo esta documentación con un lector Info. Para obtener detalles sobre su uso, presione la tecla @key{RET} (``retorno de carro'' o ``intro'') en el siguiente enlace: @pxref{Top, Info reader,, info-stnd, Stand-alone GNU Info}. Presione después @kbd{l} para volver aquí." #. type: quotation -#: guix-git/doc/guix.texi:2070 +#: guix-git/doc/guix.texi:2087 msgid "Alternatively, run @command{info info} in another tty to keep the manual available." msgstr "De manera alternativa, ejecute @command{info info} en otro terminal para mantener el manual disponible." #. type: Plain text -#: guix-git/doc/guix.texi:2091 +#: guix-git/doc/guix.texi:2108 msgid "We consider Guix System to be ready for a wide range of ``desktop'' and server use cases. The reliability guarantees it provides---transactional upgrades and rollbacks, reproducibility---make it a solid foundation." msgstr "Consideramos que el sistema Guix está listo para un amplio rango de casos de uso, tanto de servidor como de escritorio. Las garantías que proporciona---actualizaciones transaccionales y vuelta atrás atómica, reproducibilidad---lo convierten en un cimiento sólido." #. type: Plain text -#: guix-git/doc/guix.texi:2094 +#: guix-git/doc/guix.texi:2111 msgid "Nevertheless, before you proceed with the installation, be aware of the following noteworthy limitations applicable to version @value{VERSION}:" msgstr "No obstante, antes de que proceda con la instalación, sea consciente de las siguientes limitaciones apreciables que se conocen en la versión @value{VERSION}:" #. type: itemize -#: guix-git/doc/guix.texi:2099 +#: guix-git/doc/guix.texi:2116 msgid "More and more system services are provided (@pxref{Services}), but some may be missing." msgstr "Se proporcionan más y más servicios del sistema (@pxref{Services}), pero pueden faltar algunos." #. type: itemize -#: guix-git/doc/guix.texi:2104 +#: guix-git/doc/guix.texi:2121 msgid "GNOME, Xfce, LXDE, and Enlightenment are available (@pxref{Desktop Services}), as well as a number of X11 window managers. However, KDE is currently missing." msgstr "Están disponibles GNOME, Xfce, LXDE y Enlightenment (@pxref{Desktop Services}), así como un número de gestores de ventanas X11. No obstante, actualmente falta KDE." #. type: Plain text -#: guix-git/doc/guix.texi:2109 +#: guix-git/doc/guix.texi:2126 msgid "More than a disclaimer, this is an invitation to report issues (and success stories!), and to join us in improving it. @xref{Contributing}, for more info." msgstr "Más que una descarga de responsabilidades es una invitación a informar de problemas (¡e historias satisfactorias!), y para unirse a nosotras en su mejora. @xref{Contributing}, para más información." # FUZZY # TODO (MAAV): Soporte #. type: cindex -#: guix-git/doc/guix.texi:2114 +#: guix-git/doc/guix.texi:2131 #, no-wrap msgid "hardware support on Guix System" msgstr "soporte de hardware en el sistema Guix" #. type: Plain text -#: guix-git/doc/guix.texi:2123 +#: guix-git/doc/guix.texi:2140 msgid "GNU@tie{}Guix focuses on respecting the user's computing freedom. It builds around the kernel Linux-libre, which means that only hardware for which free software drivers and firmware exist is supported. Nowadays, a wide range of off-the-shelf hardware is supported on GNU/Linux-libre---from keyboards to graphics cards to scanners and Ethernet controllers. Unfortunately, there are still areas where hardware vendors deny users control over their own computing, and such hardware is not supported on Guix System." msgstr "GNU@tie{}Guix se enfoca en respetar la libertad de computación de las usuarias. Se construye sobre el núcleo Linux-libre, lo que significa que únicamente funciona hardware para el que existen controladores y firmware libres. Hoy en día, un amplio rango del hardware común funciona con GNU/Linux-libre---desde teclados a tarjetas gráficas a escáneres y controladoras Ethernet. Desafortunadamente, todavía hay áreas donde los fabricantes de hardware deniegan a las usuarias el control de su propia computación, y dicho hardware no funciona en el sistema Guix." # FUZZY FUZZY # TODO (MAAV): Soporte #. type: cindex -#: guix-git/doc/guix.texi:2124 +#: guix-git/doc/guix.texi:2141 #, no-wrap msgid "WiFi, hardware support" msgstr "WiFi, soporte hardware" #. type: Plain text -#: guix-git/doc/guix.texi:2133 +#: guix-git/doc/guix.texi:2150 msgid "One of the main areas where free drivers or firmware are lacking is WiFi devices. WiFi devices known to work include those using Atheros chips (AR9271 and AR7010), which corresponds to the @code{ath9k} Linux-libre driver, and those using Broadcom/AirForce chips (BCM43xx with Wireless-Core Revision 5), which corresponds to the @code{b43-open} Linux-libre driver. Free firmware exists for both and is available out-of-the-box on Guix System, as part of @code{%base-firmware} (@pxref{operating-system Reference, @code{firmware}})." msgstr "Una de las áreas principales donde faltan controladores o firmware libre son los dispositivos WiFi. Los dispositivos WiFi que se sabe que funcionan incluyen aquellos que usan los chips Atheros (AR9271 y AR7010), que corresponden al controlador @code{ath9k} de Linux-libre, y aquellos que usan los chips Broadcom/AirForce (BCM43xx con Wireless-Core Revisión 5), que corresponden al controlador @code{b43-open} de Linux-libre. Existe firmware libre para ambos, y está disponible por defecto en el sistema Guix, como parte de @code{%base-firmware} (@pxref{operating-system Reference, @code{firmware}})." #. type: cindex -#: guix-git/doc/guix.texi:2134 +#: guix-git/doc/guix.texi:2151 #, no-wrap msgid "RYF, Respects Your Freedom" msgstr "RYF, Respeta Su Libertad" #. type: Plain text -#: guix-git/doc/guix.texi:2140 +#: guix-git/doc/guix.texi:2157 msgid "The @uref{https://www.fsf.org/, Free Software Foundation} runs @uref{https://www.fsf.org/ryf, @dfn{Respects Your Freedom}} (RYF), a certification program for hardware products that respect your freedom and your privacy and ensure that you have control over your device. We encourage you to check the list of RYF-certified devices." msgstr "La @uref{https://www.fsf.org/, Fundación del Software Libre} patrocina @uref{https://www.fsf.org/ryf, @dfn{Respeta Su Libertad}} (RYF), un programa de certificación para productos hardware que respetan su libertad y su privacidad y se aseguran de que usted tenga el control sobre su dispositivo. Le recomendamos que compruebe la lista de dispositivos certificados RYF." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:2144 +#: guix-git/doc/guix.texi:2161 msgid "Another useful resource is the @uref{https://www.h-node.org/, H-Node} web site. It contains a catalog of hardware devices with information about their support in GNU/Linux." msgstr "Otro recurso útil es el sitio web @uref{https://wwww.h-node.org/, H-Node}. Contiene un catálogo de dispositivos hardware con información acerca su funcionalidad con GNU/Linux." #. type: Plain text -#: guix-git/doc/guix.texi:2153 +#: guix-git/doc/guix.texi:2170 msgid "An ISO-9660 installation image that can be written to a USB stick or burnt to a DVD can be downloaded from @indicateurl{@value{BASE-URL}/guix-system-install-@value{VERSION}.x86_64-linux.iso}, where you can replace @code{x86_64-linux} with one of:" msgstr "Se puede descargar una imagen de instalación ISO-9660 que puede ser escrita en una memoria USB o grabada en un DVD desde @indicateurl{@value{BASE-URL}/guix-system-install-@value{VERSION}.x86_64-linux.iso}, donde puede sustituir @code{x86_64-linux} con uno de los siguientes valores:" #. type: table -#: guix-git/doc/guix.texi:2157 +#: guix-git/doc/guix.texi:2174 msgid "for a GNU/Linux system on Intel/AMD-compatible 64-bit CPUs;" msgstr "para un sistema GNU/Linux en CPUs compatibles con la arquitectura de 64-bits de Intel/AMD;" #. type: table -#: guix-git/doc/guix.texi:2160 +#: guix-git/doc/guix.texi:2177 msgid "for a 32-bit GNU/Linux system on Intel-compatible CPUs." msgstr "para un sistema GNU/Linux en CPUs compatibles con la arquitectura de 32-bits de Intel." #. type: Plain text -#: guix-git/doc/guix.texi:2165 +#: guix-git/doc/guix.texi:2182 msgid "Make sure to download the associated @file{.sig} file and to verify the authenticity of the image against it, along these lines:" msgstr "Asegúrese de descargar el archivo @file{.sig} asociado y de verificar la autenticidad de la imagen contra él, más o menos así:" #. type: example -#: guix-git/doc/guix.texi:2169 +#: guix-git/doc/guix.texi:2186 #, no-wrap msgid "" "$ wget @value{BASE-URL}/guix-system-install-@value{VERSION}.x86_64-linux.iso.sig\n" @@ -7971,7 +8053,7 @@ msgstr "" "$ gpg --verify guix-system-install-@value{VERSION}.x86_64-linux.iso.sig\n" #. type: example -#: guix-git/doc/guix.texi:2177 +#: guix-git/doc/guix.texi:2194 #, no-wrap msgid "" "$ wget @value{OPENPGP-SIGNING-KEY-URL} \\\n" @@ -7981,23 +8063,23 @@ msgstr "" " -qO - | gpg --import -\n" #. type: Plain text -#: guix-git/doc/guix.texi:2189 +#: guix-git/doc/guix.texi:2206 msgid "This image contains the tools necessary for an installation. It is meant to be copied @emph{as is} to a large-enough USB stick or DVD." msgstr "Esta imagen contiene las herramientas necesarias para una instalación. Está pensada ara ser copiada @emph{tal cual} a una memoria USB o DVD con espacio suficiente." #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2190 +#: guix-git/doc/guix.texi:2207 #, no-wrap msgid "Copying to a USB Stick" msgstr "Copiado en una memoria USB" #. type: Plain text -#: guix-git/doc/guix.texi:2195 +#: guix-git/doc/guix.texi:2212 msgid "Insert a USB stick of 1@tie{}GiB or more into your machine, and determine its device name. Assuming that the USB stick is known as @file{/dev/sdX}, copy the image with:" msgstr "Conecte una memoria USB de 1@tie{}GiB o más a su máquina, y determine su nombre de dispositivo. Asumiendo que la memoria USB es @file{/dev/sdX} copie la imagen con:" #. type: example -#: guix-git/doc/guix.texi:2199 +#: guix-git/doc/guix.texi:2216 #, no-wrap msgid "" "dd if=guix-system-install-@value{VERSION}.x86_64-linux.iso of=/dev/sdX status=progress\n" @@ -8007,128 +8089,128 @@ msgstr "" "sync\n" #. type: Plain text -#: guix-git/doc/guix.texi:2202 +#: guix-git/doc/guix.texi:2219 msgid "Access to @file{/dev/sdX} usually requires root privileges." msgstr "El acceso a @file{/dev/sdX} normalmente necesita privilegios de root." #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2203 +#: guix-git/doc/guix.texi:2220 #, no-wrap msgid "Burning on a DVD" msgstr "Grabación en un DVD" #. type: Plain text -#: guix-git/doc/guix.texi:2208 +#: guix-git/doc/guix.texi:2225 msgid "Insert a blank DVD into your machine, and determine its device name. Assuming that the DVD drive is known as @file{/dev/srX}, copy the image with:" msgstr "Introduzca un DVD en su máquina para grabarlo, y determine el nombre del dispositivo. Asumiendo que la unidad DVD es @file{/dev/srX}, copie la imagen con:" #. type: example -#: guix-git/doc/guix.texi:2211 +#: guix-git/doc/guix.texi:2228 #, no-wrap msgid "growisofs -dvd-compat -Z /dev/srX=guix-system-install-@value{VERSION}.x86_64-linux.iso\n" msgstr "growisofs -dvd-compat -Z /dev/srX=guix-system-install-@value{VERSION}.x86_64-linux.iso\n" #. type: Plain text -#: guix-git/doc/guix.texi:2214 +#: guix-git/doc/guix.texi:2231 msgid "Access to @file{/dev/srX} usually requires root privileges." msgstr "El acceso a @file{/dev/srX} normalmente necesita privilegios de root." #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2215 +#: guix-git/doc/guix.texi:2232 #, no-wrap msgid "Booting" msgstr "Arranque" #. type: Plain text -#: guix-git/doc/guix.texi:2222 +#: guix-git/doc/guix.texi:2239 #, fuzzy msgid "Once this is done, you should be able to reboot the system and boot from the USB stick or DVD@. The latter usually requires you to get in the BIOS or UEFI boot menu, where you can choose to boot from the USB stick. In order to boot from Libreboot, switch to the command mode by pressing the @kbd{c} key and type @command{search_grub usb}." msgstr "Una vez hecho esto, debe ser capaz de reiniciar el sistema y arrancar desde la memoria USB o el DVD. Para lo primero habitualmente es necesario introducirse en la BIOS o en el menú de arranque UEFI, donde se puede seleccionar el arranque desde la memoria USB. Para arrancar desde Libreboot, cambie a la línea de ordenes pulsando la tecla @kbd{c} y teclee @command{search_grub usb}." #. type: Plain text -#: guix-git/doc/guix.texi:2225 +#: guix-git/doc/guix.texi:2242 msgid "@xref{Installing Guix in a VM}, if, instead, you would like to install Guix System in a virtual machine (VM)." msgstr "@xref{Installing Guix in a VM}, si, en vez de esto, desea instalar el sistema Guix en una máquina virtual (VM)." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:2235 +#: guix-git/doc/guix.texi:2252 msgid "Once you have booted, you can use the guided graphical installer, which makes it easy to get started (@pxref{Guided Graphical Installation}). Alternatively, if you are already familiar with GNU/Linux and if you want more control than what the graphical installer provides, you can choose the ``manual'' installation process (@pxref{Manual Installation})." msgstr "Una vez que haya arrancado, puede usar el instalador gráfico guiado, el cual facilita la introducción al sistema (@pxref{Guided Graphical Installation}). Alternativamente, si ya es está familiarizada con GNU/Linux y desea más control que el que proporciona el instalador gráfico, puede seleccionar el proceso de instalación ``manual'' (@pxref{Manual Installation})." #. type: Plain text -#: guix-git/doc/guix.texi:2243 +#: guix-git/doc/guix.texi:2260 msgid "The graphical installer is available on TTY1. You can obtain root shells on TTYs 3 to 6 by hitting @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4}, etc. TTY2 shows this documentation and you can reach it with @kbd{ctrl-alt-f2}. Documentation is browsable using the Info reader commands (@pxref{Top,,, info-stnd, Stand-alone GNU Info}). The installation system runs the GPM mouse daemon, which allows you to select text with the left mouse button and to paste it with the middle button." msgstr "El instalador gráfico está disponible en TTY1. Puede obtener consolas de administración (``root'') en los TTY 3 a 6 pulsando @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4}, etc. TTY2 muestra esta documentación y se puede cambiar a dicha consola con @kbd{ctrl-alt-f2}. La documentación es explorable usando las órdenes del lector Info (@pxref{Top,,, info-stnd, Stand-alone GNU Info}). El sistema de instalación ejecuta el daemon GPM para ratones, el cual le permite seleccionar texto con el botón izquierdo y pegarlo con el botón central." #. type: quotation -#: guix-git/doc/guix.texi:2248 +#: guix-git/doc/guix.texi:2265 msgid "Installation requires access to the Internet so that any missing dependencies of your system configuration can be downloaded. See the ``Networking'' section below." msgstr "La instalación requiere acceso a Internet de modo que cualquier dependencia de su configuración de sistema no encontrada pueda ser descargada. Véase la sección ``Red'' más adelante." #. type: Plain text -#: guix-git/doc/guix.texi:2255 +#: guix-git/doc/guix.texi:2272 msgid "The graphical installer is a text-based user interface. It will guide you, with dialog boxes, through the steps needed to install GNU@tie{}Guix System." msgstr "El instalador gráfico es una interfaz de usuaria basada en texto. Le guiará, con cajas de diálogo, a través de los pasos necesarios para instalar el sistema GNU@tie{}Guix." #. type: Plain text -#: guix-git/doc/guix.texi:2260 +#: guix-git/doc/guix.texi:2277 msgid "The first dialog boxes allow you to set up the system as you use it during the installation: you can choose the language, keyboard layout, and set up networking, which will be used during the installation. The image below shows the networking dialog." msgstr "Las primeras cajas de diálogo le permiten configurar el sistema mientras lo usa durante la instalación: puede seleccionar el idioma, la distribución del teclado y configurar la red, la cual se usará durante la instalación. La siguiente imagen muestra el diálogo de configuración de red." #. type: Plain text -#: guix-git/doc/guix.texi:2262 +#: guix-git/doc/guix.texi:2279 msgid "@image{images/installer-network,5in,, networking setup with the graphical installer}" msgstr "@image{images/installer-network,5in,, configuración de red en la instalación gráfica}" #. type: Plain text -#: guix-git/doc/guix.texi:2267 +#: guix-git/doc/guix.texi:2284 msgid "Later steps allow you to partition your hard disk, as shown in the image below, to choose whether or not to use encrypted file systems, to enter the host name and root password, and to create an additional account, among other things." msgstr "Los siguientes pasos le permitirán particionar su disco duro, como se muestra en la siguiente imagen, elegir si se usarán o no sistemas de archivos cifrados, introducir el nombre de la máquina, la contraseña de root y crear cuentas adicionales, entre otras cosas." #. type: Plain text -#: guix-git/doc/guix.texi:2269 +#: guix-git/doc/guix.texi:2286 msgid "@image{images/installer-partitions,5in,, partitioning with the graphical installer}" msgstr "@image{images/installer-partitions,5in,, particionado en la instalación gráfica}" #. type: Plain text -#: guix-git/doc/guix.texi:2272 +#: guix-git/doc/guix.texi:2289 msgid "Note that, at any time, the installer allows you to exit the current installation step and resume at a previous step, as show in the image below." msgstr "Tenga en cuenta que, en cualquier momento, el instalador le permite salir de la instalación actual y retomarla en un paso previo, como se muestra en la siguiente imagen." #. type: Plain text -#: guix-git/doc/guix.texi:2274 +#: guix-git/doc/guix.texi:2291 msgid "@image{images/installer-resume,5in,, resuming the installation process}" msgstr "@image{images/installer-resume,5in,, retomado del proceso de instalación}" #. type: Plain text -#: guix-git/doc/guix.texi:2279 +#: guix-git/doc/guix.texi:2296 msgid "Once you're done, the installer produces an operating system configuration and displays it (@pxref{Using the Configuration System}). At that point you can hit ``OK'' and installation will proceed. On success, you can reboot into the new system and enjoy. @xref{After System Installation}, for what's next!" msgstr "Una vez haya finalizado, el instalador produce una configuración de sistema operativo y la muestra (@pxref{Using the Configuration System}). En este punto puede pulsar ``OK'' y la instalación procederá. En caso de finalización satisfactoria, puede reiniciar con el nuevo sistema y disfrutarlo. ¡@xref{After System Installation} para ver cómo proceder a continuación!" #. type: Plain text -#: guix-git/doc/guix.texi:2289 +#: guix-git/doc/guix.texi:2306 msgid "This section describes how you would ``manually'' install GNU@tie{}Guix System on your machine. This option requires familiarity with GNU/Linux, with the shell, and with common administration tools. If you think this is not for you, consider using the guided graphical installer (@pxref{Guided Graphical Installation})." msgstr "Esta sección describe como podría instalar ``manualmente'' el sistema GNU@tie{}Guix en su máquina. Esta opción requiere familiaridad con GNU/Linux, con el intérprete y con las herramientas de administración comunes. Si piensa que no es para usted, considere el uso del instalador gráfico guiado (@pxref{Guided Graphical Installation})." #. type: Plain text -#: guix-git/doc/guix.texi:2295 +#: guix-git/doc/guix.texi:2312 msgid "The installation system provides root shells on TTYs 3 to 6; press @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4}, and so on to reach them. It includes many common tools needed to install the system. But it is also a full-blown Guix System, which means that you can install additional packages, should you need it, using @command{guix package} (@pxref{Invoking guix package})." msgstr "El sistema de instalación proporciona consolas de administración (``root'') en los terminales virtuales (TTY) 3 a 6; pulse @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4} y sucesivas teclas para abrirlas. Incluye muchas herramientas comunes necesarias para la instalación del sistema. Pero es también un sistema Guix completo, lo que significa que puede instalar paquetes adicionales, en caso de necesitarlos, mediante el uso de @command{guix package} (@pxref{Invoking guix package})." #. type: subsection -#: guix-git/doc/guix.texi:2302 +#: guix-git/doc/guix.texi:2319 #, no-wrap msgid "Keyboard Layout, Networking, and Partitioning" msgstr "Distribución de teclado, red y particionado" #. type: Plain text -#: guix-git/doc/guix.texi:2307 +#: guix-git/doc/guix.texi:2324 msgid "Before you can install the system, you may want to adjust the keyboard layout, set up networking, and partition your target hard disk. This section will guide you through this." msgstr "Antes de instalar el sistema, puede desear ajustar la distribución del teclado, configurar la red y particionar el disco duro deseado. Esta sección le guiará durante este proceso." #. type: cindex -#: guix-git/doc/guix.texi:2310 guix-git/doc/guix.texi:15584 +#: guix-git/doc/guix.texi:2327 guix-git/doc/guix.texi:15941 #, no-wrap msgid "keyboard layout" msgstr "distribución de teclado" @@ -8136,115 +8218,115 @@ msgstr "distribución de teclado" # MAAV: Considero que este ejemplo es mucho más útil para los lectores # de esta versión del manual. #. type: Plain text -#: guix-git/doc/guix.texi:2314 +#: guix-git/doc/guix.texi:2331 msgid "The installation image uses the US qwerty keyboard layout. If you want to change it, you can use the @command{loadkeys} command. For example, the following command selects the Dvorak keyboard layout:" msgstr "La imagen de instalación usa la distribución de teclado QWERTY de los EEUU. Si desea cambiarla, puede usar la orden @command{loadkeys}. Por ejemplo, la siguiente orden selecciona la distribución de teclado para el castellano:" # MAAV: Considero que este ejemplo es mucho más útil para los lectores # de esta versión del manual. #. type: example -#: guix-git/doc/guix.texi:2317 +#: guix-git/doc/guix.texi:2334 #, no-wrap msgid "loadkeys dvorak\n" msgstr "loadkeys es\n" #. type: Plain text -#: guix-git/doc/guix.texi:2322 +#: guix-git/doc/guix.texi:2339 msgid "See the files under @file{/run/current-system/profile/share/keymaps} for a list of available keyboard layouts. Run @command{man loadkeys} for more information." msgstr "Véanse los archivos bajo @file{/run/current-system/profile/share/keymaps} para la obtención de una lista de distribuciones de teclado disponibles. Ejecute @command{man loadkeys} para más información." #. type: subsubsection -#: guix-git/doc/guix.texi:2323 +#: guix-git/doc/guix.texi:2340 #, no-wrap msgid "Networking" msgstr "Red" #. type: Plain text -#: guix-git/doc/guix.texi:2326 +#: guix-git/doc/guix.texi:2343 msgid "Run the following command to see what your network interfaces are called:" msgstr "Ejecute la siguiente orden para ver los nombres asignados a sus interfaces de red:" #. type: example -#: guix-git/doc/guix.texi:2329 +#: guix-git/doc/guix.texi:2346 #, no-wrap msgid "ifconfig -a\n" msgstr "ifconfig -a\n" #. type: table -#: guix-git/doc/guix.texi:2333 guix-git/doc/guix.texi:2355 +#: guix-git/doc/guix.texi:2350 guix-git/doc/guix.texi:2372 msgid "@dots{} or, using the GNU/Linux-specific @command{ip} command:" msgstr "@dots{} o, usando la orden específica de GNU/Linux @command{ip}:" #. type: example -#: guix-git/doc/guix.texi:2336 +#: guix-git/doc/guix.texi:2353 #, no-wrap msgid "ip address\n" msgstr "ip address\n" #. type: Plain text -#: guix-git/doc/guix.texi:2343 +#: guix-git/doc/guix.texi:2360 msgid "Wired interfaces have a name starting with @samp{e}; for example, the interface corresponding to the first on-board Ethernet controller is called @samp{eno1}. Wireless interfaces have a name starting with @samp{w}, like @samp{w1p2s0}." msgstr "El nombre de las interfaces de cable comienza con @samp{e}; por ejemplo, la interfaz que corresponde a la primera controladora Ethernet en la placa se llama @samp{eno1}. El nombre de las interfaces inalámbricas comienza con @samp{w}, como @samp{w1p2s0}." #. type: item -#: guix-git/doc/guix.texi:2345 +#: guix-git/doc/guix.texi:2362 #, no-wrap msgid "Wired connection" msgstr "Conexión por cable" #. type: table -#: guix-git/doc/guix.texi:2348 +#: guix-git/doc/guix.texi:2365 msgid "To configure a wired network run the following command, substituting @var{interface} with the name of the wired interface you want to use." msgstr "Para configurar una red por cable ejecute la siguiente orden, substituyendo @var{interfaz} con el nombre de la interfaz de cable que desea usar." #. type: example -#: guix-git/doc/guix.texi:2351 +#: guix-git/doc/guix.texi:2368 #, no-wrap msgid "ifconfig @var{interface} up\n" msgstr "ifconfig @var{interfaz} up\n" #. type: example -#: guix-git/doc/guix.texi:2358 +#: guix-git/doc/guix.texi:2375 #, no-wrap msgid "ip link set @var{interface} up\n" msgstr "ip link set @var{interfaz} up\n" #. type: item -#: guix-git/doc/guix.texi:2360 +#: guix-git/doc/guix.texi:2377 #, no-wrap msgid "Wireless connection" msgstr "Conexión sin cable" #. type: cindex -#: guix-git/doc/guix.texi:2361 guix-git/doc/guix.texi:17484 +#: guix-git/doc/guix.texi:2378 guix-git/doc/guix.texi:17846 #, no-wrap msgid "wireless" msgstr "sin cables" #. type: cindex -#: guix-git/doc/guix.texi:2362 guix-git/doc/guix.texi:17485 +#: guix-git/doc/guix.texi:2379 guix-git/doc/guix.texi:17847 #, no-wrap msgid "WiFi" msgstr "WiFi" #. type: table -#: guix-git/doc/guix.texi:2367 +#: guix-git/doc/guix.texi:2384 msgid "To configure wireless networking, you can create a configuration file for the @command{wpa_supplicant} configuration tool (its location is not important) using one of the available text editors such as @command{nano}:" msgstr "Para configurar una red inalámbrica, puede crear un archivo de configuración para la herramienta de configuración @command{wpa_supplicant} (su ruta no es importante) usando uno de los editores de texto disponibles como @command{nano}:" #. type: example -#: guix-git/doc/guix.texi:2370 +#: guix-git/doc/guix.texi:2387 #, no-wrap msgid "nano wpa_supplicant.conf\n" msgstr "nano wpa_supplicant.conf\n" #. type: table -#: guix-git/doc/guix.texi:2375 +#: guix-git/doc/guix.texi:2392 msgid "As an example, the following stanza can go to this file and will work for many wireless networks, provided you give the actual SSID and passphrase for the network you are connecting to:" msgstr "Como un ejemplo, la siguiente plantilla puede colocarse en este archivo y funcionará para muchas redes inalámbricas, siempre que se proporcione el SSID y la contraseña reales de la red a la que se va a conectar:" #. type: example -#: guix-git/doc/guix.texi:2382 +#: guix-git/doc/guix.texi:2399 #, no-wrap msgid "" "network=@{\n" @@ -8260,56 +8342,56 @@ msgstr "" "@}\n" #. type: table -#: guix-git/doc/guix.texi:2387 +#: guix-git/doc/guix.texi:2404 msgid "Start the wireless service and run it in the background with the following command (substitute @var{interface} with the name of the network interface you want to use):" msgstr "Inicie el servicio inalámbrico y lance su ejecución en segundo plano con la siguiente orden (sustituya @var{interfaz} por el nombre de la interfaz de red que desea usar):" #. type: example -#: guix-git/doc/guix.texi:2390 +#: guix-git/doc/guix.texi:2407 #, no-wrap msgid "wpa_supplicant -c wpa_supplicant.conf -i @var{interface} -B\n" msgstr "wpa_supplicant -c wpa_supplicant.conf -i @var{interfaz} -B\n" #. type: table -#: guix-git/doc/guix.texi:2393 +#: guix-git/doc/guix.texi:2410 msgid "Run @command{man wpa_supplicant} for more information." msgstr "Ejecute @command{man wpa_supplicant} para más información." #. type: cindex -#: guix-git/doc/guix.texi:2395 +#: guix-git/doc/guix.texi:2412 #, no-wrap msgid "DHCP" msgstr "DHCP" #. type: Plain text -#: guix-git/doc/guix.texi:2398 +#: guix-git/doc/guix.texi:2415 msgid "At this point, you need to acquire an IP address. On a network where IP addresses are automatically assigned @i{via} DHCP, you can run:" msgstr "En este punto, necesita obtener una dirección IP. En una red donde las direcciones IP se asignan automáticamente mediante DHCP, puede ejecutar:" #. type: example -#: guix-git/doc/guix.texi:2401 +#: guix-git/doc/guix.texi:2418 #, no-wrap msgid "dhclient -v @var{interface}\n" msgstr "dhclient -v @var{interfaz}\n" #. type: Plain text -#: guix-git/doc/guix.texi:2404 +#: guix-git/doc/guix.texi:2421 msgid "Try to ping a server to see if networking is up and running:" msgstr "Intente hacer ping a un servidor para comprobar si la red está funcionando correctamente:" #. type: example -#: guix-git/doc/guix.texi:2407 +#: guix-git/doc/guix.texi:2424 #, no-wrap msgid "ping -c 3 gnu.org\n" msgstr "ping -c 3 gnu.org\n" #. type: Plain text -#: guix-git/doc/guix.texi:2411 +#: guix-git/doc/guix.texi:2428 msgid "Setting up network access is almost always a requirement because the image does not contain all the software and tools that may be needed." msgstr "Configurar el acceso por red es casi siempre un requisito debido a que la imagen no contiene todo el software y las herramientas que puedan ser necesarias." #. type: cindex -#: guix-git/doc/guix.texi:2412 +#: guix-git/doc/guix.texi:2429 #, no-wrap msgid "proxy, during system installation" msgstr "" @@ -8317,178 +8399,178 @@ msgstr "" "@cindex pasarela (proxy), durante la instalación del sistema" #. type: Plain text -#: guix-git/doc/guix.texi:2415 +#: guix-git/doc/guix.texi:2432 msgid "If you need HTTP and HTTPS access to go through a proxy, run the following command:" msgstr "Si necesita que el acceso a HTTP y HTTPS se produzca a través de una pasarela (``proxy''), ejecute la siguiente orden:" #. type: example -#: guix-git/doc/guix.texi:2418 +#: guix-git/doc/guix.texi:2435 #, no-wrap msgid "herd set-http-proxy guix-daemon @var{URL}\n" msgstr "herd set-http-proxy guix-daemon @var{URL}\n" #. type: Plain text -#: guix-git/doc/guix.texi:2423 +#: guix-git/doc/guix.texi:2440 msgid "where @var{URL} is the proxy URL, for example @code{http://example.org:8118}." msgstr "donde @var{URL} es la URL de la pasarela, por ejemplo @code{http://example.org:8118}." #. type: cindex -#: guix-git/doc/guix.texi:2424 +#: guix-git/doc/guix.texi:2441 #, no-wrap msgid "installing over SSH" msgstr "instalación por SSH" #. type: Plain text -#: guix-git/doc/guix.texi:2427 +#: guix-git/doc/guix.texi:2444 msgid "If you want to, you can continue the installation remotely by starting an SSH server:" msgstr "Si lo desea, puede continuar la instalación de forma remota iniciando un servidor SSH:" #. type: example -#: guix-git/doc/guix.texi:2430 +#: guix-git/doc/guix.texi:2447 #, no-wrap msgid "herd start ssh-daemon\n" msgstr "herd start ssh-daemon\n" #. type: Plain text -#: guix-git/doc/guix.texi:2434 +#: guix-git/doc/guix.texi:2451 msgid "Make sure to either set a password with @command{passwd}, or configure OpenSSH public key authentication before logging in." msgstr "Asegúrese de establecer una contraseña con @command{passwd}, o configure la verificación de clave pública de OpenSSH antes de ingresar al sistema." #. type: subsubsection -#: guix-git/doc/guix.texi:2435 +#: guix-git/doc/guix.texi:2452 #, no-wrap msgid "Disk Partitioning" msgstr "Particionado de discos" #. type: Plain text -#: guix-git/doc/guix.texi:2439 +#: guix-git/doc/guix.texi:2456 msgid "Unless this has already been done, the next step is to partition, and then format the target partition(s)." msgstr "A menos que se haya realizado previamente, el siguiente paso es el particionado, y después dar formato a la/s partición/es deseadas." #. type: Plain text -#: guix-git/doc/guix.texi:2444 +#: guix-git/doc/guix.texi:2461 msgid "The installation image includes several partitioning tools, including Parted (@pxref{Overview,,, parted, GNU Parted User Manual}), @command{fdisk}, and @command{cfdisk}. Run it and set up your disk with the partition layout you want:" msgstr "La imagen de instalación contiene varias herramientas de particionado, incluyendo Parted (@pxref{Overview,,, parted, GNU Parted User Manual}), @command{fdisk} y @command{cfdisk}. Invoque su ejecución y configure el mapa de particiones deseado en su disco:" #. type: example -#: guix-git/doc/guix.texi:2447 +#: guix-git/doc/guix.texi:2464 #, no-wrap msgid "cfdisk\n" msgstr "cfdisk\n" #. type: Plain text -#: guix-git/doc/guix.texi:2453 +#: guix-git/doc/guix.texi:2470 msgid "If your disk uses the GUID Partition Table (GPT) format and you plan to install BIOS-based GRUB (which is the default), make sure a BIOS Boot Partition is available (@pxref{BIOS installation,,, grub, GNU GRUB manual})." msgstr "Si su disco usa el formato de tabla de particiones GUID (GPT) y tiene pensado instalar GRUB basado en BIOS (la opción predeterminada), asegúrese de tener una partición de arranque BIOS disponible (@pxref{BIOS installation,,, grub, GNU GRUB manual})." #. type: cindex -#: guix-git/doc/guix.texi:2454 +#: guix-git/doc/guix.texi:2471 #, no-wrap msgid "EFI, installation" msgstr "EFI, instalación" #. type: cindex -#: guix-git/doc/guix.texi:2455 +#: guix-git/doc/guix.texi:2472 #, no-wrap msgid "UEFI, installation" msgstr "UEFI, instalación" #. type: cindex -#: guix-git/doc/guix.texi:2456 +#: guix-git/doc/guix.texi:2473 #, no-wrap msgid "ESP, EFI system partition" msgstr "ESP, partición del sistema EFI" #. type: Plain text -#: guix-git/doc/guix.texi:2460 +#: guix-git/doc/guix.texi:2477 msgid "If you instead wish to use EFI-based GRUB, a FAT32 @dfn{EFI System Partition} (ESP) is required. This partition can be mounted at @file{/boot/efi} for instance and must have the @code{esp} flag set. E.g., for @command{parted}:" msgstr "Si en vez de eso desea GRUB basado en EFI, se requiere una @dfn{Partición del Sistema EFI} (ESP) con formato FAT32. Esta partición puede montarse en @file{/boot/efi} y debe tener la opción @code{esp} activa. Por ejemplo, en @command{parted}:" #. type: example -#: guix-git/doc/guix.texi:2463 +#: guix-git/doc/guix.texi:2480 #, no-wrap msgid "parted /dev/sda set 1 esp on\n" msgstr "parted /dev/sda set 1 esp on\n" #. type: vindex -#: guix-git/doc/guix.texi:2466 guix-git/doc/guix.texi:34580 +#: guix-git/doc/guix.texi:2483 guix-git/doc/guix.texi:35019 #, no-wrap msgid "grub-bootloader" msgstr "grub-bootloader" #. type: vindex -#: guix-git/doc/guix.texi:2467 guix-git/doc/guix.texi:34574 +#: guix-git/doc/guix.texi:2484 guix-git/doc/guix.texi:35013 #, no-wrap msgid "grub-efi-bootloader" msgstr "grub-efi-bootloader" #. type: quotation -#: guix-git/doc/guix.texi:2474 +#: guix-git/doc/guix.texi:2491 msgid "Unsure whether to use EFI- or BIOS-based GRUB? If the directory @file{/sys/firmware/efi} exists in the installation image, then you should probably perform an EFI installation, using @code{grub-efi-bootloader}. Otherwise you should use the BIOS-based GRUB, known as @code{grub-bootloader}. @xref{Bootloader Configuration}, for more info on bootloaders." msgstr "¿No esta segura si usar GRUB basado en EFI o en BIOS? Si el directorio @file{/sys/firmware/efi} existe en la imagen de instalación, probablemente debería realizar una instalación EFI, usando @code{grub-efi-bootloader}. En otro caso, debe usar GRUB basado en BIOS, conocido como @code{grub-bootloader}. @xref{Bootloader Configuration}, para más información sobre cargadores de arranque." #. type: Plain text -#: guix-git/doc/guix.texi:2482 +#: guix-git/doc/guix.texi:2499 #, fuzzy msgid "Once you are done partitioning the target hard disk drive, you have to create a file system on the relevant partition(s)@footnote{Currently Guix System only supports ext4, btrfs, JFS, F2FS, and XFS file systems. In particular, code that reads file system UUIDs and labels only works for these file system types.}. For the ESP, if you have one and assuming it is @file{/dev/sda1}, run:" msgstr "Una vez haya terminado con el particionado de la unidad de disco deseada, tiene que crear un sistema de archivos en la o las particiones relevantes@footnote{Actualmente el sistema Guix únicamente permite sistemas de archivos ext4, btrfs y JFS. En particular, el código que lee UUIDs del sistema de archivos y etiquetas únicamente funciona para dichos sistemas de archivos.}. Para la partición ESP, si tiene una y asumiendo que es @file{/dev/sda1}, ejecute:" #. type: example -#: guix-git/doc/guix.texi:2485 +#: guix-git/doc/guix.texi:2502 #, no-wrap msgid "mkfs.fat -F32 /dev/sda1\n" msgstr "mkfs.fat -F32 /dev/sda1\n" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:2492 +#: guix-git/doc/guix.texi:2509 msgid "For the root file system, ext4 is the most widely used format. Other file systems, such as Btrfs, support compression, which is reported to nicely complement file deduplication that the daemon performs independently of the file system (@pxref{Invoking guix-daemon, deduplication})." msgstr "El formato de sistema de archivos ext4 es el formato más ampliamente usado para el sistema de archivos raíz. Otros sistemas de archivos, como por ejemplo Btrfs, implementan compresión, la cual complementa adecuadamente la deduplicación de archivos que el daemon realiza de manera independiente al sistema de archivos(@pxref{Invoking guix-daemon, deduplicación})." #. type: Plain text -#: guix-git/doc/guix.texi:2499 +#: guix-git/doc/guix.texi:2516 msgid "Preferably, assign file systems a label so that you can easily and reliably refer to them in @code{file-system} declarations (@pxref{File Systems}). This is typically done using the @code{-L} option of @command{mkfs.ext4} and related commands. So, assuming the target root partition lives at @file{/dev/sda2}, a file system with the label @code{my-root} can be created with:" msgstr "Preferentemente, asigne una etiqueta a los sistemas de archivos de modo que pueda referirse a ellos de forma fácil y precisa en las declaraciones @code{file-system} (@pxref{File Systems}). Esto se consigue habitualmente con la opción @code{-L} de @command{mkfs.ext4} y las ordenes relacionadas. Por tanto, asumiendo que la partición de la raíz es @file{/dev/sda2}, se puede crear un sistema de archivos con la etiqueta @code{mi-raiz} de esta manera:" #. type: example -#: guix-git/doc/guix.texi:2502 +#: guix-git/doc/guix.texi:2519 #, no-wrap msgid "mkfs.ext4 -L my-root /dev/sda2\n" msgstr "mkfs.ext4 -L mi-raiz /dev/sda2\n" #. type: cindex -#: guix-git/doc/guix.texi:2504 guix-git/doc/guix.texi:14475 +#: guix-git/doc/guix.texi:2521 guix-git/doc/guix.texi:14832 #, no-wrap msgid "encrypted disk" msgstr "disco cifrado" #. type: Plain text -#: guix-git/doc/guix.texi:2509 +#: guix-git/doc/guix.texi:2526 #, fuzzy #| msgid "If you are instead planning to encrypt the root partition, you can use the Cryptsetup/LUKS utilities to do that (see @inlinefmtifelse{html, @uref{https://linux.die.net/man/8/cryptsetup, @code{man cryptsetup}}, @code{man cryptsetup}} for more information). Assuming you want to store the root partition on @file{/dev/sda2}, the command sequence would be along these lines:" msgid "If you are instead planning to encrypt the root partition, you can use the Cryptsetup/LUKS utilities to do that (see @inlinefmtifelse{html, @uref{https://linux.die.net/man/8/cryptsetup, @code{man cryptsetup}}, @code{man cryptsetup}} for more information)." msgstr "Si en vez de eso planea cifrar la partición raíz, puede usar las herramientas Crypsetup/LUKS para hacerlo (véase @inlinefmtifelse{html, @uref{https://linux.die.net/man/8/cryptsetup, @code{man cryptsetup}}, @code{man cryptsetup}} para más información). Asumiendo que quiere almacenar la partición raíz en @file{/dev/sda2}, la secuencia de ordenes sería más o menos así:" #. type: quotation -#: guix-git/doc/guix.texi:2510 guix-git/doc/guix.texi:5280 -#: guix-git/doc/guix.texi:6489 guix-git/doc/guix.texi:14601 -#: guix-git/doc/guix.texi:21013 guix-git/doc/guix.texi:21020 +#: guix-git/doc/guix.texi:2527 guix-git/doc/guix.texi:5298 +#: guix-git/doc/guix.texi:6532 guix-git/doc/guix.texi:14958 +#: guix-git/doc/guix.texi:21375 guix-git/doc/guix.texi:21382 #, no-wrap msgid "Warning" msgstr "Aviso" #. type: quotation -#: guix-git/doc/guix.texi:2517 +#: guix-git/doc/guix.texi:2534 msgid "Note that GRUB can unlock LUKS2 devices since version 2.06, but only supports the PBKDF2 key derivation function, which is not the default for @command{cryptsetup luksFormat}. You can check which key derivation function is being used by a device by running @command{cryptsetup luksDump @var{device}}, and looking for the PBKDF field of your keyslots." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2522 +#: guix-git/doc/guix.texi:2539 msgid "Assuming you want to store the root partition on @file{/dev/sda2}, the command sequence to format it as a LUKS2 partition would be along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2527 +#: guix-git/doc/guix.texi:2544 #, fuzzy, no-wrap #| msgid "" #| "cryptsetup luksFormat /dev/sda2\n" @@ -8504,30 +8586,30 @@ msgstr "" "mkfs.ext4 -L mi-raiz /dev/mapper/mi-particion\n" #. type: Plain text -#: guix-git/doc/guix.texi:2532 +#: guix-git/doc/guix.texi:2549 msgid "Once that is done, mount the target file system under @file{/mnt} with a command like (again, assuming @code{my-root} is the label of the root file system):" msgstr "Una vez hecho esto, monte el sistema de archivos deseado bajo @file{/mnt} con una orden como (de nuevo, asumiendo que @code{mi-raiz} es la etiqueta del sistema de archivos raíz):" #. type: example -#: guix-git/doc/guix.texi:2535 +#: guix-git/doc/guix.texi:2552 #, no-wrap msgid "mount LABEL=my-root /mnt\n" msgstr "mount LABEL=mi-raiz /mnt\n" #. type: Plain text -#: guix-git/doc/guix.texi:2541 +#: guix-git/doc/guix.texi:2558 msgid "Also mount any other file systems you would like to use on the target system relative to this path. If you have opted for @file{/boot/efi} as an EFI mount point for example, mount it at @file{/mnt/boot/efi} now so it is found by @code{guix system init} afterwards." msgstr "Monte también cualquier otro sistema de archivos que desee usar en el sistema resultante relativamente a esta ruta. Si ha optado por @file{/boot/efi} como el punto de montaje de EFI, por ejemplo, ahora debe ser montada en @file{/mnt/boot/efi} para que @code{guix system init} pueda encontrarla más adelante." #. type: Plain text -#: guix-git/doc/guix.texi:2545 +#: guix-git/doc/guix.texi:2562 #, fuzzy #| msgid "Finally, if you plan to use one or more swap partitions (@pxref{Memory Concepts, swap space,, libc, The GNU C Library Reference Manual}), make sure to initialize them with @command{mkswap}. Assuming you have one swap partition on @file{/dev/sda3}, you would run:" msgid "Finally, if you plan to use one or more swap partitions (@pxref{Swap Space}), make sure to initialize them with @command{mkswap}. Assuming you have one swap partition on @file{/dev/sda3}, you would run:" msgstr "Finalmente, si planea usar una o más particiones de intercambio (@pxref{Memory Concepts, swap space,, libc, The GNU C Library Reference Manual}), asegúrese de inicializarla con @command{mkswap}. Asumiendo que tuviese una partición de intercambio en @file{/dev/sda3}, ejecutaría:" #. type: example -#: guix-git/doc/guix.texi:2549 +#: guix-git/doc/guix.texi:2566 #, no-wrap msgid "" "mkswap /dev/sda3\n" @@ -8537,12 +8619,12 @@ msgstr "" "swapon /dev/sda3\n" #. type: Plain text -#: guix-git/doc/guix.texi:2557 +#: guix-git/doc/guix.texi:2574 msgid "Alternatively, you may use a swap file. For example, assuming that in the new system you want to use the file @file{/swapfile} as a swap file, you would run@footnote{This example will work for many types of file systems (e.g., ext4). However, for copy-on-write file systems (e.g., btrfs), the required steps may be different. For details, see the manual pages for @command{mkswap} and @command{swapon}.}:" msgstr "De manera alternativa, puede usar un archivo de intercambio. Por ejemplo, asumiendo que en el nuevo sistema desea usar el archivo @file{/archivo-de-intercambio} como tal, ejecutaría@footnote{Este ejemplo funcionará para muchos tipos de sistemas de archivos (por ejemplo, ext4). No obstante, para los sistemas de archivos con mecanismos de copia-durante-escritura (por ejemplo, btrfs) los pasos pueden ser diferentes. Para obtener más detalles, véanse las páginas de manual para @command{mkswap} y @command{swapon}.}:" #. type: example -#: guix-git/doc/guix.texi:2565 +#: guix-git/doc/guix.texi:2582 #, no-wrap msgid "" "# This is 10 GiB of swap space. Adjust \"count\" to change the size.\n" @@ -8562,40 +8644,40 @@ msgstr "" "swapon /mnt/swapfile\n" #. type: Plain text -#: guix-git/doc/guix.texi:2570 +#: guix-git/doc/guix.texi:2587 msgid "Note that if you have encrypted the root partition and created a swap file in its file system as described above, then the encryption also protects the swap file, just like any other file in that file system." msgstr "Fíjese que si ha cifrado la partición raíz y creado un archivo de intercambio en su sistema de archivos como se ha descrito anteriormente, el cifrado también protege al archivo de intercambio, como a cualquier archivo en dicho sistema de archivos." #. type: Plain text -#: guix-git/doc/guix.texi:2576 +#: guix-git/doc/guix.texi:2593 msgid "With the target partitions ready and the target root mounted on @file{/mnt}, we're ready to go. First, run:" msgstr "Con las particiones deseadas listas y la raíz deseada montada en @file{/mnt}, estamos preparadas para empezar. Primero, ejecute:" #. type: example -#: guix-git/doc/guix.texi:2579 +#: guix-git/doc/guix.texi:2596 #, no-wrap msgid "herd start cow-store /mnt\n" msgstr "herd start cow-store /mnt\n" #. type: Plain text -#: guix-git/doc/guix.texi:2586 +#: guix-git/doc/guix.texi:2603 msgid "This makes @file{/gnu/store} copy-on-write, such that packages added to it during the installation phase are written to the target disk on @file{/mnt} rather than kept in memory. This is necessary because the first phase of the @command{guix system init} command (see below) entails downloads or builds to @file{/gnu/store} which, initially, is an in-memory file system." msgstr "Esto activa la copia-durante-escritura en @file{/gnu/store}, de modo que los paquetes que se añadan durante la fase de instalación se escriban en el disco montado en @file{/mnt} en vez de permanecer en memoria. Esto es necesario debido a que la primera fase de la orden @command{guix system init} (vea más adelante) implica descargas o construcciones en @file{/gnu/store}, el cual, inicialmente, está un sistema de archivos en memoria." #. type: Plain text -#: guix-git/doc/guix.texi:2597 +#: guix-git/doc/guix.texi:2614 #, fuzzy #| msgid "Next, you have to edit a file and provide the declaration of the operating system to be installed. To that end, the installation system comes with three text editors. We recommend GNU nano (@pxref{Top,,, nano, GNU nano Manual}), which supports syntax highlighting and parentheses matching; other editors include GNU Zile (an Emacs clone), and nvi (a clone of the original BSD @command{vi} editor). We strongly recommend storing that file on the target root file system, say, as @file{/mnt/etc/config.scm}. Failing to do that, you will have lost your configuration file once you have rebooted into the newly-installed system." msgid "Next, you have to edit a file and provide the declaration of the operating system to be installed. To that end, the installation system comes with three text editors. We recommend GNU nano (@pxref{Top,,, nano, GNU nano Manual}), which supports syntax highlighting and parentheses matching; other editors include mg (an Emacs clone), and nvi (a clone of the original BSD @command{vi} editor). We strongly recommend storing that file on the target root file system, say, as @file{/mnt/etc/config.scm}. Failing to do that, you will have lost your configuration file once you have rebooted into the newly-installed system." msgstr "Después debe editar un archivo y proporcionar la declaración de sistema operativo a instalar. Para dicho fin, el sistema de instalación viene con tres editores de texto. Recomendamos GNU nano (@pxref{Top,,, nano, GNU nano Manual}), que permite el resaltado de sintaxis y correspondencia de paréntesis; los otros editores son GNU Zile (un clon de Emacs) y nvi (un clon del editor @command{vi} original de BSD). Le recomendamos encarecidamente almacenar ese archivo en el sistema de archivos raíz, digamos, como @file{/mnt/etc/config.scm}. En caso de no hacerlo, habrá perdido su configuración del sistema una vez arranque en el sistema recién instalado." #. type: Plain text -#: guix-git/doc/guix.texi:2604 +#: guix-git/doc/guix.texi:2621 msgid "@xref{Using the Configuration System}, for an overview of the configuration file. The example configurations discussed in that section are available under @file{/etc/configuration} in the installation image. Thus, to get started with a system configuration providing a graphical display server (a ``desktop'' system), you can run something along these lines:" msgstr "@xref{Using the Configuration System}, para hacerse una idea del archivo de configuración. Las configuraciones de ejemplo mencionadas en esa sección están disponibles bajo @file{/etc/configuration} en la imagen de instalación. Por tanto, para empezar con una configuración del sistema que proporcione un servidor gráfico (un sistema de ``escritorio''), puede ejecutar algo parecido a estas órdenes:" #. type: example -#: guix-git/doc/guix.texi:2609 +#: guix-git/doc/guix.texi:2626 #, no-wrap msgid "" "# mkdir /mnt/etc\n" @@ -8607,55 +8689,55 @@ msgstr "" "# nano /mnt/etc/config.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:2613 +#: guix-git/doc/guix.texi:2630 msgid "You should pay attention to what your configuration file contains, and in particular:" msgstr "Debe prestar atención a lo que su archivo de configuración contiene, y en particular:" #. type: itemize -#: guix-git/doc/guix.texi:2625 +#: guix-git/doc/guix.texi:2642 #, fuzzy #| msgid "Make sure the @code{bootloader-configuration} form refers to the target you want to install GRUB on. It should mention @code{grub-bootloader} if you are installing GRUB in the legacy way, or @code{grub-efi-bootloader} for newer UEFI systems. For legacy systems, the @code{target} field names a device, like @code{/dev/sda}; for UEFI systems it names a path to a mounted EFI partition, like @code{/boot/efi}; do make sure the path is currently mounted and a @code{file-system} entry is specified in your configuration." msgid "Make sure the @code{bootloader-configuration} form refers to the targets you want to install GRUB on. It should mention @code{grub-bootloader} if you are installing GRUB in the legacy way, or @code{grub-efi-bootloader} for newer UEFI systems. For legacy systems, the @code{targets} field contain the names of the devices, like @code{(list \"/dev/sda\")}; for UEFI systems it names the paths to mounted EFI partitions, like @code{(list \"/boot/efi\")}; do make sure the paths are currently mounted and a @code{file-system} entry is specified in your configuration." msgstr "Asegúrese que la forma @code{bootloader-configuration} especifica la localización deseada de la instalación de GRUB. Debe mencionar @code{grub-bootloader} si está usando GRUB con el arranque antiguo, o @code{grub-efi-bootloader} para sistemas más nuevos UEFI. Para los sistemas antiguos, el campo @code{target} denomina un dispositivo, como @code{/dev/sda}; para los sistemas UEFI denomina la ruta de una partición EFI montada, como @code{/boot/efi}; asegúrese de que la ruta está actualmente montada y haya una entrada @code{file-system} especificada en su configuración." #. type: itemize -#: guix-git/doc/guix.texi:2631 +#: guix-git/doc/guix.texi:2648 msgid "Be sure that your file system labels match the value of their respective @code{device} fields in your @code{file-system} configuration, assuming your @code{file-system} configuration uses the @code{file-system-label} procedure in its @code{device} field." msgstr "Asegúrese que las etiquetas de su sistema de archivos corresponden con el valor de sus campos @code{device} respectivos en su configuración @code{file-system}, asumiendo que su configuración @code{file-system} usa el procedimiento @code{file-system-label} en su campo @code{device}." #. type: itemize -#: guix-git/doc/guix.texi:2635 +#: guix-git/doc/guix.texi:2652 msgid "If there are encrypted or RAID partitions, make sure to add a @code{mapped-devices} field to describe them (@pxref{Mapped Devices})." msgstr "Si hay particiones cifradas o en RAID, asegúrese de añadir un campo @code{mapped-devices} para describirlas (@pxref{Mapped Devices})." #. type: Plain text -#: guix-git/doc/guix.texi:2640 +#: guix-git/doc/guix.texi:2657 msgid "Once you are done preparing the configuration file, the new system must be initialized (remember that the target root file system is mounted under @file{/mnt}):" msgstr "Una vez haya terminado de preparar el archivo de configuración, el nuevo sistema debe ser inicializado (recuerde que el sistema de archivos raíz deseado está montado bajo @file{/mnt}):" #. type: example -#: guix-git/doc/guix.texi:2643 +#: guix-git/doc/guix.texi:2660 #, no-wrap msgid "guix system init /mnt/etc/config.scm /mnt\n" msgstr "guix system init /mnt/etc/config.scm /mnt\n" #. type: Plain text -#: guix-git/doc/guix.texi:2650 +#: guix-git/doc/guix.texi:2667 msgid "This copies all the necessary files and installs GRUB on @file{/dev/sdX}, unless you pass the @option{--no-bootloader} option. For more information, @pxref{Invoking guix system}. This command may trigger downloads or builds of missing packages, which can take some time." msgstr "Esto copia todos los archivos necesarios e instala GRUB en @file{/dev/sdX}, a menos que proporcione la opción @option{--no-bootloader}. Para más información, @pxref{Invoking guix system}. Esta orden puede desencadenar descargas o construcciones de paquetes no encontrados, lo cual puede tomar algún tiempo." #. type: Plain text -#: guix-git/doc/guix.texi:2658 +#: guix-git/doc/guix.texi:2675 msgid "Once that command has completed---and hopefully succeeded!---you can run @command{reboot} and boot into the new system. The @code{root} password in the new system is initially empty; other users' passwords need to be initialized by running the @command{passwd} command as @code{root}, unless your configuration specifies otherwise (@pxref{user-account-password, user account passwords}). @xref{After System Installation}, for what's next!" msgstr "Una vez que la orden se complete---¡y, deseablemente, de forma satisfactoria!---puede ejecutar @command{reboot} y arrancar con el nuevo sistema. La contraseña de @code{root} en el nuevo sistema está vacía inicialmente; otras contraseñas de usuarias tienen que ser inicializadas ejecutando la orden @command{passwd} como @code{root}, a menos que en su configuración se especifique de otra manera (@pxref{user-account-password, contraseñas de cuentas de usuaria}). ¡@xref{After System Installation} para proceder a continuación!" #. type: Plain text -#: guix-git/doc/guix.texi:2665 +#: guix-git/doc/guix.texi:2682 msgid "Success, you've now booted into Guix System! From then on, you can update the system whenever you want by running, say:" msgstr "¡Éxito! ¡Ha arrancado en el sistema Guix! De ahora en adelante, puede actualizar el sistema cuando quiera mediante la ejecución de, digamos:" #. type: example -#: guix-git/doc/guix.texi:2669 +#: guix-git/doc/guix.texi:2686 #, no-wrap msgid "" "guix pull\n" @@ -8665,97 +8747,97 @@ msgstr "" "sudo guix system reconfigure /etc/config.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:2675 +#: guix-git/doc/guix.texi:2692 msgid "This builds a new system generation with the latest packages and services (@pxref{Invoking guix system}). We recommend doing that regularly so that your system includes the latest security updates (@pxref{Security Updates})." msgstr "Esto construye una nueva generación del sistema con los últimos paquetes y servicios (@pxref{Invoking guix system}). Recomendamos realizarlo de manera regular de modo que su sistema incluya las últimas actualizaciones de seguridad (@pxref{Security Updates})." #. type: cindex -#: guix-git/doc/guix.texi:2678 +#: guix-git/doc/guix.texi:2695 #, no-wrap msgid "sudo vs. @command{guix pull}" msgstr "sudo y @command{guix pull}" #. type: quotation -#: guix-git/doc/guix.texi:2682 +#: guix-git/doc/guix.texi:2699 msgid "Note that @command{sudo guix} runs your user's @command{guix} command and @emph{not} root's, because @command{sudo} leaves @env{PATH} unchanged. To explicitly run root's @command{guix}, type @command{sudo -i guix @dots{}}." msgstr "Tenga en cuenta que @command{sudo guix} ejecuta el ejecutable @command{guix} de su usuaria y @emph{no} el de root, ya que @command{sudo} no altera @env{PATH}. Para ejecutar explícitamente el ejecutable @command{guix} de root, escriba @command{sudo -i guix @dots{}}." # FUZZY FUZZY #. type: quotation -#: guix-git/doc/guix.texi:2687 +#: guix-git/doc/guix.texi:2704 #, fuzzy msgid "The difference matters here, because @command{guix pull} updates the @command{guix} command and package definitions only for the user it is run as. This means that if you choose to use @command{guix system reconfigure} in root's login shell, you'll need to @command{guix pull} separately." msgstr "La diferencia es importante aquí, puesto que @command{guix pull} actualiza la orden @command{guix} y las definiciones de paquetes únicamente para la usuaria que lo ejecute. Esto significa que si desea usar @command{guix system reconfigure} en un intérprete de ingreso al sistema de la cuenta de administración (``root''), deberá ejecutar de manera de manera separada @command{guix pull}." #. type: Plain text -#: guix-git/doc/guix.texi:2692 +#: guix-git/doc/guix.texi:2709 #, fuzzy #| msgid "Now, @pxref{Getting Started}, and join us on @code{#guix} on the Freenode IRC network or on @email{guix-devel@@gnu.org} to share your experience!" msgid "Now, @pxref{Getting Started}, and join us on @code{#guix} on the Libera Chat IRC network or on @email{guix-devel@@gnu.org} to share your experience!" msgstr "Ahora, @pxref{Getting Started}, ¡y únase a nosotras en @code{#guix} en la red IRC de Freenode o en @email{guix-devel@@gnu.org} para compartir su experiencia!" #. type: section -#: guix-git/doc/guix.texi:2695 +#: guix-git/doc/guix.texi:2712 #, no-wrap msgid "Installing Guix in a Virtual Machine" msgstr "Instalación de Guix en una máquina virtual" #. type: cindex -#: guix-git/doc/guix.texi:2697 +#: guix-git/doc/guix.texi:2714 #, no-wrap msgid "virtual machine, Guix System installation" msgstr "máquina virtual, instalación del sistema Guix" #. type: cindex -#: guix-git/doc/guix.texi:2698 +#: guix-git/doc/guix.texi:2715 #, no-wrap msgid "virtual private server (VPS)" msgstr "servidor virtual privado (VPS)" #. type: cindex -#: guix-git/doc/guix.texi:2699 +#: guix-git/doc/guix.texi:2716 #, no-wrap msgid "VPS (virtual private server)" msgstr "VPS (servidor virtual privado)" #. type: Plain text -#: guix-git/doc/guix.texi:2703 +#: guix-git/doc/guix.texi:2720 msgid "If you'd like to install Guix System in a virtual machine (VM) or on a virtual private server (VPS) rather than on your beloved machine, this section is for you." msgstr "Si desea instalar el sistema Guix en una máquina virtual (VM) o en un servidor privado virtual (VPS) en vez de en su preciada máquina, esta sección es para usted." #. type: Plain text -#: guix-git/doc/guix.texi:2706 +#: guix-git/doc/guix.texi:2723 msgid "To boot a @uref{https://qemu.org/,QEMU} VM for installing Guix System in a disk image, follow these steps:" msgstr "Si quiere arrancar una VM @uref{https://qemu.org/,QEMU} para instalar el sistema Guix en una imagen de disco, siga estos pasos:" #. type: enumerate -#: guix-git/doc/guix.texi:2711 +#: guix-git/doc/guix.texi:2728 msgid "First, retrieve and decompress the Guix system installation image as described previously (@pxref{USB Stick and DVD Installation})." msgstr "Primero, obtenga y descomprima la imagen de instalación del sistema Guix como se ha descrito previamente (@pxref{USB Stick and DVD Installation})." #. type: enumerate -#: guix-git/doc/guix.texi:2715 +#: guix-git/doc/guix.texi:2732 msgid "Create a disk image that will hold the installed system. To make a qcow2-formatted disk image, use the @command{qemu-img} command:" msgstr "Cree una imagen de disco que contendrá el sistema instalado. Para crear una imagen de disco con formato qcow2, use la orden @command{qemu-img}:" #. type: example -#: guix-git/doc/guix.texi:2718 +#: guix-git/doc/guix.texi:2735 #, no-wrap msgid "qemu-img create -f qcow2 guix-system.img 50G\n" msgstr "qemu-img create -f qcow2 guix-system.img 50G\n" #. type: enumerate -#: guix-git/doc/guix.texi:2722 +#: guix-git/doc/guix.texi:2739 msgid "The resulting file will be much smaller than 50 GB (typically less than 1 MB), but it will grow as the virtualized storage device is filled up." msgstr "El archivo que obtenga será mucho menor de 50GB (típicamente menos de 1MB), pero crecerá cuando el dispositivo de almacenamiento virtualizado se vaya llenando." #. type: enumerate -#: guix-git/doc/guix.texi:2725 +#: guix-git/doc/guix.texi:2742 msgid "Boot the USB installation image in an VM:" msgstr "Arranque la imagen de instalación USB en una máquina virtual:" #. type: example -#: guix-git/doc/guix.texi:2731 +#: guix-git/doc/guix.texi:2748 #, no-wrap msgid "" "qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \\\n" @@ -8769,117 +8851,117 @@ msgstr "" " -drive media=cdrom,file=guix-system-install-@value{VERSION}.@var{sistema}.iso\n" #. type: enumerate -#: guix-git/doc/guix.texi:2735 +#: guix-git/doc/guix.texi:2752 msgid "@code{-enable-kvm} is optional, but significantly improves performance, @pxref{Running Guix in a VM}." msgstr "@code{-enable-kvm} es opcional, pero mejora el rendimiento significativamente, @pxref{Running Guix in a VM}." #. type: enumerate -#: guix-git/doc/guix.texi:2739 +#: guix-git/doc/guix.texi:2756 msgid "You're now root in the VM, proceed with the installation process. @xref{Preparing for Installation}, and follow the instructions." msgstr "Ahora es root en la VM, prosiga con el procedimiento de instalación. @xref{Preparing for Installation}, y siga las instrucciones." #. type: Plain text -#: guix-git/doc/guix.texi:2744 +#: guix-git/doc/guix.texi:2761 msgid "Once installation is complete, you can boot the system that's on your @file{guix-system.img} image. @xref{Running Guix in a VM}, for how to do that." msgstr "Una vez complete la instalación, puede arrancar el sistema que está en la imagen @file{guix-system.img}. @xref{Running Guix in a VM}, para información sobre cómo hacerlo." #. type: cindex -#: guix-git/doc/guix.texi:2748 +#: guix-git/doc/guix.texi:2765 #, no-wrap msgid "installation image" msgstr "imagen de instalación" #. type: Plain text -#: guix-git/doc/guix.texi:2751 +#: guix-git/doc/guix.texi:2768 msgid "The installation image described above was built using the @command{guix system} command, specifically:" msgstr "La imagen de instalación descrita anteriormente se construyó usando la orden @command{guix system}, específicamente:" #. type: example -#: guix-git/doc/guix.texi:2754 +#: guix-git/doc/guix.texi:2771 #, fuzzy, no-wrap msgid "guix system image -t iso9660 gnu/system/install.scm\n" msgstr "guix system disk-image -t iso9660 gnu/system/install.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:2759 +#: guix-git/doc/guix.texi:2776 msgid "Have a look at @file{gnu/system/install.scm} in the source tree, and see also @ref{Invoking guix system} for more information about the installation image." msgstr "Eche un vistazo a @file{gnu/system/install.scm} en el árbol de fuentes, y vea también @ref{Invoking guix system} para más información acerca de la imagen de instalación." #. type: section -#: guix-git/doc/guix.texi:2760 +#: guix-git/doc/guix.texi:2777 #, no-wrap msgid "Building the Installation Image for ARM Boards" msgstr "Construcción de la imagen de instalación para placas ARM" #. type: Plain text -#: guix-git/doc/guix.texi:2764 +#: guix-git/doc/guix.texi:2781 msgid "Many ARM boards require a specific variant of the @uref{https://www.denx.de/wiki/U-Boot/, U-Boot} bootloader." msgstr "Muchos dispositivos con procesador ARM necesitan una variante específica del cargador de arranque @uref{https://www.denx.de/wiki/U-Boot/, U-Boot}." #. type: Plain text -#: guix-git/doc/guix.texi:2768 +#: guix-git/doc/guix.texi:2785 msgid "If you build a disk image and the bootloader is not available otherwise (on another boot drive etc), it's advisable to build an image that includes the bootloader, specifically:" msgstr "Si construye una imagen de disco y el cargador de arranque no está disponible de otro modo (en otra unidad de arranque, etc.), es recomendable construir una imagen que incluya el cargador, específicamente:" #. type: example -#: guix-git/doc/guix.texi:2771 +#: guix-git/doc/guix.texi:2788 #, fuzzy, no-wrap msgid "guix system image --system=armhf-linux -e '((@@ (gnu system install) os-with-u-boot) (@@ (gnu system install) installation-os) \"A20-OLinuXino-Lime2\")'\n" msgstr "guix system disk-image --system=armhf-linux -e '((@@ (gnu system install) os-with-u-boot) (@@ (gnu system install) installation-os) \"A20-OLinuXino-Lime2\")'\n" #. type: Plain text -#: guix-git/doc/guix.texi:2775 +#: guix-git/doc/guix.texi:2792 msgid "@code{A20-OLinuXino-Lime2} is the name of the board. If you specify an invalid board, a list of possible boards will be printed." msgstr "@code{A20-OLinuXino-Lime2} es el nombre de la placa. Si especifica una placa no válida, una lista de placas posibles será mostrada." # FUZZY FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:2785 +#: guix-git/doc/guix.texi:2802 msgid "Presumably, you've reached this section because either you have installed Guix on top of another distribution (@pxref{Installation}), or you've installed the standalone Guix System (@pxref{System Installation}). It's time for you to get started using Guix and this section aims to help you do that and give you a feel of what it's like." msgstr "Es probable que haya llegado a esta sección o bien porque haya instalado Guix sobre otra distribución (@pxref{Installation}), o bien porque haya instalado el sistema Guix completo (@pxref{System Installation}). Es hora de dar sus primeros pasos con Guix; esta sección intenta ser de ayuda con estos primeros pasos y proporcionar una primera impresión sobre Guix." #. type: Plain text -#: guix-git/doc/guix.texi:2789 +#: guix-git/doc/guix.texi:2806 msgid "Guix is about installing software, so probably the first thing you'll want to do is to actually look for software. Let's say you're looking for a text editor, you can run:" msgstr "Guix está orientado a instalar software, por lo que probablemente la primera cosa que deseará hacer es mirar el software disponible. Digamos, por ejemplo, que busca un editor de texto. Para ello puede ejecutar:" #. type: example -#: guix-git/doc/guix.texi:2792 +#: guix-git/doc/guix.texi:2809 #, no-wrap msgid "guix search text editor\n" msgstr "guix search texto editor\n" #. type: Plain text -#: guix-git/doc/guix.texi:2799 +#: guix-git/doc/guix.texi:2816 msgid "This command shows you a number of matching @dfn{packages}, each time showing the package's name, version, a description, and additional info. Once you've found out the one you want to use, let's say Emacs (ah ha!), you can go ahead and install it (run this command as a regular user, @emph{no need for root privileges}!):" msgstr "Esta orden le muestra cierto número de @dfn{paquetes} asociados a dicha búsqueda, mostrando con cada uno de ellos su nombre, versión, una descripción e información adicional. Una vez que ha encontrado el que quiere usar, digamos Emacs (je je je), puede seguir adelante e instalarlo (ejecute esta orden con su cuenta de usuaria habitual, @emph{¡no necesita privilegios de administración o usar la cuenta ``root''!}):" #. type: example -#: guix-git/doc/guix.texi:2802 +#: guix-git/doc/guix.texi:2819 #, no-wrap msgid "guix install emacs\n" msgstr "guix install emacs\n" #. type: cindex -#: guix-git/doc/guix.texi:2804 guix-git/doc/guix.texi:3116 -#: guix-git/doc/guix.texi:3168 +#: guix-git/doc/guix.texi:2821 guix-git/doc/guix.texi:3133 +#: guix-git/doc/guix.texi:3185 #, no-wrap msgid "profile" msgstr "perfil" #. type: Plain text -#: guix-git/doc/guix.texi:2812 +#: guix-git/doc/guix.texi:2829 #, fuzzy msgid "You've installed your first package, congrats! The package is now visible in your default @dfn{profile}, @file{$HOME/.guix-profile}---a profile is a directory containing installed packages. In the process, you've probably noticed that Guix downloaded pre-built binaries; or, if you explicitly chose to @emph{not} use pre-built binaries, then probably Guix is still building software (@pxref{Substitutes}, for more info)." msgstr "Ha instalado su primer paquete, ¡enhorabuena! En el proceso probablemente haya percibido que Guix ha descargado binarios preconstruidos; o si ha elegido explícitamente @emph{no} usar binarios preconstruidos probablemente Guix todavía esté construyendo software (@pxref{Substitutes}, para más información)." #. type: Plain text -#: guix-git/doc/guix.texi:2815 +#: guix-git/doc/guix.texi:2832 msgid "Unless you're using Guix System, the @command{guix install} command must have printed this hint:" msgstr "Si no está usando el sistema Guix, la orden @command{guix install} debe haber mostrado este consejo:" #. type: example -#: guix-git/doc/guix.texi:2818 +#: guix-git/doc/guix.texi:2835 #, no-wrap msgid "" "hint: Consider setting the necessary environment variables by running:\n" @@ -8887,7 +8969,7 @@ msgid "" msgstr "consejo: Considere proporcionar valor a las variables de entorno necesarias ejecutando:\n" #. type: example -#: guix-git/doc/guix.texi:2821 +#: guix-git/doc/guix.texi:2838 #, no-wrap msgid "" " GUIX_PROFILE=\"$HOME/.guix-profile\"\n" @@ -8899,80 +8981,80 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:2823 +#: guix-git/doc/guix.texi:2840 #, no-wrap msgid "Alternately, see `guix package --search-paths -p \"$HOME/.guix-profile\"'.\n" msgstr "Alternativamente, véase `guix package --search-paths -p \"$HOME/.guix-profile\"'.\n" #. type: Plain text -#: guix-git/doc/guix.texi:2837 +#: guix-git/doc/guix.texi:2854 #, fuzzy #| msgid "Indeed, you must now tell your shell where @command{emacs} and other programs installed with Guix are to be found. Pasting the two lines above will do just that: it will add @code{$HOME/.guix-profile/bin}---which is where the installed package is---to the @code{PATH} environment variable. You can paste these two lines in your shell so they take effect right away, but more importantly you should add them to @file{~/.bash_profile} (or equivalent file if you do not use Bash) so that environment variables are set next time you spawn a shell. You only need to do this once and other search paths environment variables will be taken care of similarly---e.g., if you eventually install @code{python} and Python libraries, @code{PYTHONPATH} will be defined." msgid "Indeed, you must now tell your shell where @command{emacs} and other programs installed with Guix are to be found. Pasting the two lines above will do just that: it will add @code{$HOME/.guix-profile/bin}---which is where the installed package is---to the @code{PATH} environment variable. You can paste these two lines in your shell so they take effect right away, but more importantly you should add them to @file{~/.bash_profile} (or equivalent file if you do not use Bash) so that environment variables are set next time you spawn a shell. You only need to do this once and other search paths environment variables will be taken care of similarly---e.g., if you eventually install @code{python} and Python libraries, @env{GUIX_PYTHONPATH} will be defined." msgstr "En efecto, ahora debe indicarle a su intérprete dónde se encuentran instalados @command{emacs} y otros programas. Pegar las dos lineas previas hará exactamente eso: @code{$HOME/.guix-profile/bin}---que es donde se encuentran instalados los paquetes---se añade a la variable de entorno @code{PATH}. Puede pegar estas dos líneas en su intérprete de modo que se hagan efectivas inmediatamente, pero aún más importante es añadirlas a @file{~/.bash_profile} (o el archivo equivalente si no usa Bash) de modo que las variables de entorno adquieran ese valor la próxima vez que lance una sesión de su intérprete. Únicamente es necesario hacerlo una vez y otras variables de entorno con rutas de búsqueda se actualizarán de la misma manera---por ejemplo, si en algún momento instala @code{python} y bibliotecas en este lenguaje se definirá la variable @code{PYTHONPATH}." #. type: Plain text -#: guix-git/doc/guix.texi:2840 +#: guix-git/doc/guix.texi:2857 msgid "You can go on installing packages at your will. To list installed packages, run:" msgstr "Puede continuar instalando paquetes cuando quiera. Para enumerar los paquetes instalados, ejecute:" #. type: example -#: guix-git/doc/guix.texi:2843 +#: guix-git/doc/guix.texi:2860 #, no-wrap msgid "guix package --list-installed\n" msgstr "guix package --list-installed\n" #. type: Plain text -#: guix-git/doc/guix.texi:2848 +#: guix-git/doc/guix.texi:2865 msgid "To remove a package, you would unsurprisingly run @command{guix remove}. A distinguishing feature is the ability to @dfn{roll back} any operation you made---installation, removal, upgrade---by simply typing:" msgstr "Para borrar un paquete, deberá ejecutar @command{guix remove}. Una característica distintiva es la capacidad de @dfn{revertir} cualquier operación que haya realizado---instalación, borrado, actualización---simplemente escribiendo:" #. type: example -#: guix-git/doc/guix.texi:2851 +#: guix-git/doc/guix.texi:2868 #, no-wrap msgid "guix package --roll-back\n" msgstr "guix package --roll-back\n" #. type: Plain text -#: guix-git/doc/guix.texi:2856 +#: guix-git/doc/guix.texi:2873 msgid "This is because each operation is in fact a @dfn{transaction} that creates a new @dfn{generation}. These generations and the difference between them can be displayed by running:" msgstr "Esto es debido al hecho de que cada operación en realidad es una @dfn{transacción} que crea una nueva @dfn{generación}. Estas generaciones y la diferencia entre ellas puede ser visualizada mediante la ejecución de:" #. type: example -#: guix-git/doc/guix.texi:2859 +#: guix-git/doc/guix.texi:2876 #, no-wrap msgid "guix package --list-generations\n" msgstr "guix package --list-generations\n" #. type: Plain text -#: guix-git/doc/guix.texi:2862 +#: guix-git/doc/guix.texi:2879 msgid "Now you know the basics of package management!" msgstr "¡Ahora ya conoce lo básico sobre gestión de paquetes!" #. type: quotation -#: guix-git/doc/guix.texi:2863 guix-git/doc/guix.texi:2922 +#: guix-git/doc/guix.texi:2880 guix-git/doc/guix.texi:2939 #, no-wrap msgid "Going further" msgstr "Más allá" # FUZZY #. type: quotation -#: guix-git/doc/guix.texi:2871 +#: guix-git/doc/guix.texi:2888 msgid "@xref{Package Management}, for more about package management. You may like @dfn{declarative} package management with @command{guix package --manifest}, managing separate @dfn{profiles} with @option{--profile}, deleting old generations, collecting garbage, and other nifty features that will come in handy as you become more familiar with Guix. If you are a developer, @pxref{Development} for additional tools. And if you're curious, @pxref{Features}, to peek under the hood." msgstr "@xref{Package Management}, para más información sobre gestión de paquetes. Puede que le guste la gestión @dfn{declarativa} de paquetes con @command{guix package --manifest}, la gestión de distintos @dfn{perfiles} con @option{--profile}, el borrado de generaciones antiguas, la recolección de basura y otras interesantes características que le serán útiles una vez que se familiarice con Guix. Si es desarrolladora, @pxref{Development} para herramientas adicionales. Y si simplemente tiene curiosidad, @pxref{Features}, para echar un vistazo a su funcionamiento interno." #. type: Plain text -#: guix-git/doc/guix.texi:2876 +#: guix-git/doc/guix.texi:2893 msgid "Once you've installed a set of packages, you will want to periodically @emph{upgrade} them to the latest and greatest version. To do that, you will first pull the latest revision of Guix and its package collection:" msgstr "Una vez que haya instalado un conjunto de paquetes, deseará @emph{actualizarlos} periódicamente a la última y mejor versión. Para hacerlo, primero debe obtener la última revisión de Guix y su colección de paquetes:" #. type: Plain text -#: guix-git/doc/guix.texi:2886 +#: guix-git/doc/guix.texi:2903 msgid "The end result is a new @command{guix} command, under @file{~/.config/guix/current/bin}. Unless you're on Guix System, the first time you run @command{guix pull}, be sure to follow the hint that the command prints and, similar to what we saw above, paste these two lines in your terminal and @file{.bash_profile}:" msgstr "El resultado final es un nuevo ejecutable @command{guix}, que se encuentra en @file{~/.config/guix/current/bin}. A menos que use el sistema Guix, asegúrese de seguir el consejo que la orden muestra y, al igual que vimos previamente, pegue estas dos líneas en su terminal y en @file{.bash_profile}:" #. type: example -#: guix-git/doc/guix.texi:2890 +#: guix-git/doc/guix.texi:2907 #, fuzzy, no-wrap msgid "" "GUIX_PROFILE=\"$HOME/.config/guix/current\"\n" @@ -8982,304 +9064,304 @@ msgstr "" ". \"$GUIX_PROFILE/etc/profile\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:2894 +#: guix-git/doc/guix.texi:2911 msgid "You must also instruct your shell to point to this new @command{guix}:" msgstr "También le debe indicar a su intérprete que haga referencia a este nuevo @command{guix}:" #. type: example -#: guix-git/doc/guix.texi:2897 +#: guix-git/doc/guix.texi:2914 #, no-wrap msgid "hash guix\n" msgstr "hash guix\n" #. type: Plain text -#: guix-git/doc/guix.texi:2901 +#: guix-git/doc/guix.texi:2918 msgid "At this point, you're running a brand new Guix. You can thus go ahead and actually upgrade all the packages you previously installed:" msgstr "En este momento ya está ejecutando una nueva instalación de Guix. Por lo tanto puede continuar y actualizar todos los paquetes que haya instalado previamente:" #. type: example -#: guix-git/doc/guix.texi:2904 +#: guix-git/doc/guix.texi:2921 #, no-wrap msgid "guix upgrade\n" msgstr "guix upgrade\n" #. type: Plain text -#: guix-git/doc/guix.texi:2910 +#: guix-git/doc/guix.texi:2927 msgid "As you run this command, you will see that binaries are downloaded (or perhaps some packages are built), and eventually you end up with the upgraded packages. Should one of these upgraded packages not be to your liking, remember you can always roll back!" msgstr "Mientras se ejecuta esta orden verá que se descargan binarios (o quizá que algunos paquetes se construyen) y tras cierto tiempo obtendrá los paquetes actualizados. ¡Recuerde que siempre puede revertir esta acción en caso de que uno de los paquetes no sea de su agrado!" #. type: Plain text -#: guix-git/doc/guix.texi:2913 +#: guix-git/doc/guix.texi:2930 msgid "You can display the exact revision of Guix you're currently using by running:" msgstr "Puede mostrar la revisión exacta de Guix que está ejecutando mediante la orden:" #. type: example -#: guix-git/doc/guix.texi:2916 +#: guix-git/doc/guix.texi:2933 #, no-wrap msgid "guix describe\n" msgstr "guix describe\n" #. type: Plain text -#: guix-git/doc/guix.texi:2921 +#: guix-git/doc/guix.texi:2938 msgid "The information it displays is @emph{all it takes to reproduce the exact same Guix}, be it at a different point in time or on a different machine." msgstr "La información que muestra contiene @emph{todo lo necesario para reproducir exactamente el mismo Guix}, ya sea en otro momento o en una máquina diferente." #. type: quotation -#: guix-git/doc/guix.texi:2927 +#: guix-git/doc/guix.texi:2944 msgid "@xref{Invoking guix pull}, for more information. @xref{Channels}, on how to specify additional @dfn{channels} to pull packages from, how to replicate Guix, and more. You may also find @command{time-machine} handy (@pxref{Invoking guix time-machine})." msgstr "@xref{Invoking guix pull}, para más información. @xref{Channels}, para saber cómo especificar @dfn{canales} adicionales de los que obtener paquetes, cómo replicar Guix y más información. La orden @command{time-machine} también le puede ser de utilidad (@pxref{Invoking guix time-machine})." #. type: Plain text -#: guix-git/doc/guix.texi:2932 +#: guix-git/doc/guix.texi:2949 msgid "If you installed Guix System, one of the first things you'll want to do is to upgrade your system. Once you've run @command{guix pull} to get the latest Guix, you can upgrade the system like this:" msgstr "Si ha instalado el sistema Guix, una de las primeras cosas que probablemente desee hacer es actualizar su sistema. Una vez que haya ejecutado @command{guix pull} con la última versión de Guix, puede actualizar su sistema de este modo:" #. type: example -#: guix-git/doc/guix.texi:2935 +#: guix-git/doc/guix.texi:2952 #, no-wrap msgid "sudo guix system reconfigure /etc/config.scm\n" msgstr "sudo guix system reconfigure /etc/config.scm\n" # TODO #. type: Plain text -#: guix-git/doc/guix.texi:2944 +#: guix-git/doc/guix.texi:2961 msgid "Upon completion, the system runs the latest versions of its software packages. When you eventually reboot, you'll notice a sub-menu in the bootloader that reads ``Old system generations'': it's what allows you to boot @emph{an older generation of your system}, should the latest generation be ``broken'' or otherwise unsatisfying. Just like for packages, you can always @emph{roll back} to a previous generation @emph{of the whole system}:" msgstr "Tras su finalización, el sistema ejecuta las últimas versiones de sus paquetes de software. Cuando reinicie el sistema verá un menú en el cargador de arranque que dice ``GNU system, old configurations...'': es lo que le permite arrancar @emph{una generación anterior de su sistema}, en caso de que la generación actual falle o resulte insatisfactoria de algún otro modo. Al igual que con los paquetes, siempre puede @emph{revertir el sistema completo} a una generación previa:" #. type: example -#: guix-git/doc/guix.texi:2947 +#: guix-git/doc/guix.texi:2964 #, no-wrap msgid "sudo guix system roll-back\n" msgstr "sudo guix system roll-back\n" #. type: Plain text -#: guix-git/doc/guix.texi:2954 +#: guix-git/doc/guix.texi:2971 msgid "There are many things you'll probably want to tweak on your system: adding new user accounts, adding new system services, fiddling with the configuration of those services, etc. The system configuration is @emph{entirely} described in the @file{/etc/config.scm} file. @xref{Using the Configuration System}, to learn how to change it." msgstr "Habrá muchas cosas que probablemente quiera modificar su sistema para que se adapte a sus necesidades: añadir nuevas cuentas de acceso, nuevos servicios del sistema, modificar la configuración de esos servicios, etcétera. La configuración del sistema se describe @emph{al completo} en el archivo @file{/etc/config.scm}. @xref{Using the Configuration System} para aprender cómo cambiarla." #. type: Plain text -#: guix-git/doc/guix.texi:2956 +#: guix-git/doc/guix.texi:2973 msgid "Now you know enough to get started!" msgstr "¡Ya sabe lo suficiente para empezar!" #. type: quotation -#: guix-git/doc/guix.texi:2957 +#: guix-git/doc/guix.texi:2974 #, no-wrap msgid "Resources" msgstr "Recursos" #. type: quotation -#: guix-git/doc/guix.texi:2960 +#: guix-git/doc/guix.texi:2977 msgid "The rest of this manual provides a reference for all things Guix. Here are some additional resources you may find useful:" msgstr "El resto de este manual proporciona una referencia para Guix al completo. Esta es una lista de recursos adicionales que le pueden resultar útiles:" #. type: itemize -#: guix-git/doc/guix.texi:2965 +#: guix-git/doc/guix.texi:2982 msgid "@xref{Top,,, guix-cookbook, The GNU Guix Cookbook}, for a list of ``how-to'' style of recipes for a variety of applications." msgstr "@xref{Top,,, guix-cookbook, The GNU Guix Cookbook}, que contiene una lista de recetas tipo ``cómo se hace'' para una variedad de casos." #. type: itemize -#: guix-git/doc/guix.texi:2970 +#: guix-git/doc/guix.texi:2987 msgid "The @uref{https://guix.gnu.org/guix-refcard.pdf, GNU Guix Reference Card} lists in two pages most of the commands and options you'll ever need." msgstr "La @uref{https://guix.gnu.org/guix-refcard.pdf, tarjeta de referencia de GNU Guix} enumera en dos páginas la mayor parte de las órdenes y opciones que pueda necesitar en cualquier momento." #. type: itemize -#: guix-git/doc/guix.texi:2975 +#: guix-git/doc/guix.texi:2992 msgid "The web site contains @uref{https://guix.gnu.org/en/videos/, instructional videos} covering topics such as everyday use of Guix, how to get help, and how to become a contributor." msgstr "La página web contiene @uref{https://guix.gnu.org/es/videos/, medios audiovisuales instructivos} sobre temas como el uso diario de Guix, cómo obtener ayuda y cómo contribuir." #. type: itemize -#: guix-git/doc/guix.texi:2979 +#: guix-git/doc/guix.texi:2996 msgid "@xref{Documentation}, to learn how to access documentation on your computer." msgstr "@xref{Documentation} para aprender cómo acceder a la documentación en su máquina." #. type: quotation -#: guix-git/doc/guix.texi:2982 +#: guix-git/doc/guix.texi:2999 msgid "We hope you will enjoy Guix as much as the community enjoys building it!" msgstr "¡Esperamos que disfrute Guix tanto como la comunidad disfruta en su construcción!" #. type: Plain text -#: guix-git/doc/guix.texi:2993 +#: guix-git/doc/guix.texi:3010 msgid "The purpose of GNU Guix is to allow users to easily install, upgrade, and remove software packages, without having to know about their build procedures or dependencies. Guix also goes beyond this obvious set of features." msgstr "El propósito de GNU Guix es permitir a las usuarias instalar, actualizar y borrar fácilmente paquetes de software, sin tener que conocer acerca de sus procedimientos de construcción o dependencias. Guix también va más allá de este conjunto obvio de características." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:3001 +#: guix-git/doc/guix.texi:3018 msgid "This chapter describes the main features of Guix, as well as the package management tools it provides. Along with the command-line interface described below (@pxref{Invoking guix package, @code{guix package}}), you may also use the Emacs-Guix interface (@pxref{Top,,, emacs-guix, The Emacs-Guix Reference Manual}), after installing @code{emacs-guix} package (run @kbd{M-x guix-help} command to start with it):" msgstr "Este capítulo describe las principales características de Guix, así como las herramientas de gestión de paquetes que ofrece. Junto a la interfaz de línea de órdenes descrita a continuación (@pxref{Invoking guix package, @code{guix package}}, también puede usar la interfaz Emacs-Guix (@pxref{Top,,, emacs-guix, The Emacs Guix Reference Manual}), tras la instalación del paquete @code{emacs-guix} (ejecute la orden @kbd{M-x guix-help} para iniciarse en su uso):" #. type: example -#: guix-git/doc/guix.texi:3004 +#: guix-git/doc/guix.texi:3021 #, no-wrap msgid "guix install emacs-guix\n" msgstr "guix install emacs-guix\n" # FUZZY FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:3025 +#: guix-git/doc/guix.texi:3042 msgid "Here we assume you've already made your first steps with Guix (@pxref{Getting Started}) and would like to get an overview about what's going on under the hood." msgstr "Se asume que ya ha dado sus primeros pasos con Guix (@pxref{Getting Started}) y desea obtener información general sobre cómo funciona la implementación internamente." #. type: Plain text -#: guix-git/doc/guix.texi:3029 +#: guix-git/doc/guix.texi:3046 msgid "When using Guix, each package ends up in the @dfn{package store}, in its own directory---something that resembles @file{/gnu/store/xxx-package-1.2}, where @code{xxx} is a base32 string." msgstr "Cuando se usa Guix, cada paquete se encuentra en el @dfn{almacén de paquetes}, en su propio directorio---algo que se asemeja a @file{/gnu/store/xxx-paquete-1.2}, donde @code{xxx} es una cadena en base32." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3051 msgid "Instead of referring to these directories, users have their own @dfn{profile}, which points to the packages that they actually want to use. These profiles are stored within each user's home directory, at @code{$HOME/.guix-profile}." msgstr "En vez de referirse a estos directorios, las usuarias tienen su propio @dfn{perfil}, el cual apunta a los paquetes que realmente desean usar. Estos perfiles se almacenan en el directorio de cada usuaria, en @code{$HOME/.guix-profile}." #. type: Plain text -#: guix-git/doc/guix.texi:3042 +#: guix-git/doc/guix.texi:3059 msgid "For example, @code{alice} installs GCC 4.7.2. As a result, @file{/home/alice/.guix-profile/bin/gcc} points to @file{/gnu/store/@dots{}-gcc-4.7.2/bin/gcc}. Now, on the same machine, @code{bob} had already installed GCC 4.8.0. The profile of @code{bob} simply continues to point to @file{/gnu/store/@dots{}-gcc-4.8.0/bin/gcc}---i.e., both versions of GCC coexist on the same system without any interference." msgstr "Por ejemplo, @code{alicia} instala GCC 4.7.2. Como resultado, @file{/home/alicia/.guix-profile/bin/gcc} apunta a @file{/gnu/store/@dots{}-gcc-4.7.2/bin/gcc}. Ahora, en la misma máquina, @code{rober} ha instalado ya GCC 4.8.0. El perfil de @code{rober} simplemente sigue apuntando a @file{/gnu/store/@dots{}-gcc-4.8.0/bin/gcc}---es decir, ambas versiones de GCC pueden coexistir en el mismo sistema sin ninguna interferencia." #. type: Plain text -#: guix-git/doc/guix.texi:3046 +#: guix-git/doc/guix.texi:3063 msgid "The @command{guix package} command is the central tool to manage packages (@pxref{Invoking guix package}). It operates on the per-user profiles, and can be used @emph{with normal user privileges}." msgstr "La orden @command{guix package} es la herramienta central para gestión de paquetes (@pxref{Invoking guix package}). Opera en los perfiles de usuaria, y puede ser usada @emph{con privilegios de usuaria normal}." #. type: cindex -#: guix-git/doc/guix.texi:3047 guix-git/doc/guix.texi:3130 +#: guix-git/doc/guix.texi:3064 guix-git/doc/guix.texi:3147 #, no-wrap msgid "transactions" msgstr "transacciones" #. type: Plain text -#: guix-git/doc/guix.texi:3054 +#: guix-git/doc/guix.texi:3071 msgid "The command provides the obvious install, remove, and upgrade operations. Each invocation is actually a @emph{transaction}: either the specified operation succeeds, or nothing happens. Thus, if the @command{guix package} process is terminated during the transaction, or if a power outage occurs during the transaction, then the user's profile remains in its previous state, and remains usable." msgstr "La orden proporciona las operaciones obvias de instalación, borrado y actualización. Cada invocación es en realidad una @emph{transacción}: o bien la operación especificada se realiza satisfactoriamente, o bien nada sucede. Por tanto, si el proceso @command{guix package} es finalizado durante una transacción, o un fallo eléctrico ocurre durante la transacción, el perfil de usuaria permanece en su estado previo, y permanece usable." #. type: Plain text -#: guix-git/doc/guix.texi:3062 +#: guix-git/doc/guix.texi:3079 msgid "In addition, any package transaction may be @emph{rolled back}. So, if, for example, an upgrade installs a new version of a package that turns out to have a serious bug, users may roll back to the previous instance of their profile, which was known to work well. Similarly, the global system configuration on Guix is subject to transactional upgrades and roll-back (@pxref{Using the Configuration System})." msgstr "Además, cualquier transacción de paquetes puede ser @emph{vuelta atrás}. Si, por ejemplo, una actualización instala una nueva versión de un paquete que resulta tener un error importante, las usuarias pueden volver a la instancia previa de su perfil, de la cual se tiene constancia que funcionaba bien. De igual modo, la configuración global del sistema en Guix está sujeta a actualizaciones transaccionales y vuelta atrás (@pxref{Using the Configuration System})." #. type: Plain text -#: guix-git/doc/guix.texi:3069 +#: guix-git/doc/guix.texi:3086 msgid "All packages in the package store may be @emph{garbage-collected}. Guix can determine which packages are still referenced by user profiles, and remove those that are provably no longer referenced (@pxref{Invoking guix gc}). Users may also explicitly remove old generations of their profile so that the packages they refer to can be collected." msgstr "Todos los paquetes en el almacén de paquetes pueden ser @emph{eliminados por el recolector de basura}. Guix puede determinar a qué paquetes hacen referencia todavía los perfiles de usuarias, y eliminar aquellos que, de forma demostrable, no se haga referencia en ningún perfil (@pxref{Invoking guix gc}). Las usuarias pueden también borrar explícitamente generaciones antiguas de su perfil para que los paquetes a los que hacen referencia puedan ser recolectados." #. type: Plain text -#: guix-git/doc/guix.texi:3082 +#: guix-git/doc/guix.texi:3099 msgid "Guix takes a @dfn{purely functional} approach to package management, as described in the introduction (@pxref{Introduction}). Each @file{/gnu/store} package directory name contains a hash of all the inputs that were used to build that package---compiler, libraries, build scripts, etc. This direct correspondence allows users to make sure a given package installation matches the current state of their distribution. It also helps maximize @dfn{build reproducibility}: thanks to the isolated build environments that are used, a given build is likely to yield bit-identical files when performed on different machines (@pxref{Invoking guix-daemon, container})." msgstr "Guix toma una aproximación @dfn{puramente funcional} en la gestión de paquetes, como se describe en la introducción (@pxref{Introduction}). Cada nombre de directorio de paquete en @file{/gnu/store} contiene un hash de todas las entradas que fueron usadas para construir el paquete---compilador, bibliotecas, guiones de construcción, etc. Esta correspondencia directa permite a las usuarias asegurarse que una instalación dada de un paquete corresponde al estado actual de su distribución. Esto también ayuda a maximizar la @dfn{reproducibilidad de la construcción}: gracias al uso de entornos aislados de construcción, una construcción dada probablemente generará archivos idénticos bit-a-bit cuando se realice en máquinas diferentes (@pxref{Invoking guix-daemon, container})." #. type: Plain text -#: guix-git/doc/guix.texi:3093 +#: guix-git/doc/guix.texi:3110 msgid "This foundation allows Guix to support @dfn{transparent binary/source deployment}. When a pre-built binary for a @file{/gnu/store} item is available from an external source---a @dfn{substitute}, Guix just downloads it and unpacks it; otherwise, it builds the package from source, locally (@pxref{Substitutes}). Because build results are usually bit-for-bit reproducible, users do not have to trust servers that provide substitutes: they can force a local build and @emph{challenge} providers (@pxref{Invoking guix challenge})." msgstr "Estos cimientos permiten a Guix ofrecer @dfn{despliegues transparentes de binarios/fuentes}. Cuando un binario pre-construido para un elemento de @file{/gnu/store} está disponible para descarga de una fuente externa---una @dfn{sustitución}, Guix simplemente lo descarga y desempaqueta; en otro caso construye el paquete de las fuentes, localmente (@pxref{Substitutes}). Debido a que los resultados de construcción son normalmente reproducibles bit-a-bit, las usuarias no tienen que confiar en los servidores que proporcionan sustituciones: pueden forzar una construcción local y @emph{retar} a las proveedoras (@pxref{Invoking guix challenge})." #. type: Plain text -#: guix-git/doc/guix.texi:3099 +#: guix-git/doc/guix.texi:3116 #, fuzzy #| msgid "Control over the build environment is a feature that is also useful for developers. The @command{guix environment} command allows developers of a package to quickly set up the right development environment for their package, without having to manually install the dependencies of the package into their profile (@pxref{Invoking guix environment})." msgid "Control over the build environment is a feature that is also useful for developers. The @command{guix shell} command allows developers of a package to quickly set up the right development environment for their package, without having to manually install the dependencies of the package into their profile (@pxref{Invoking guix shell})." msgstr "El control sobre el entorno de construcción es una característica que también es útil para desarrolladoras. La orden @command{guix environment} permite a desarrolladoras de un paquete configurar rápidamente el entorno de desarrollo correcto para su paquete, sin tener que instalar manualmente las dependencias del paquete en su perfil (@pxref{Invoking guix environment})." #. type: cindex -#: guix-git/doc/guix.texi:3100 +#: guix-git/doc/guix.texi:3117 #, no-wrap msgid "replication, of software environments" msgstr "replicación, de entornos de software" #. type: cindex -#: guix-git/doc/guix.texi:3101 +#: guix-git/doc/guix.texi:3118 #, no-wrap msgid "provenance tracking, of software artifacts" msgstr "seguimiento de procedencia, de artefactos de software" #. type: Plain text -#: guix-git/doc/guix.texi:3108 +#: guix-git/doc/guix.texi:3125 msgid "All of Guix and its package definitions is version-controlled, and @command{guix pull} allows you to ``travel in time'' on the history of Guix itself (@pxref{Invoking guix pull}). This makes it possible to replicate a Guix instance on a different machine or at a later point in time, which in turn allows you to @emph{replicate complete software environments}, while retaining precise @dfn{provenance tracking} of the software." msgstr "Todo Guix y sus definiciones de paquetes están bajo control de versiones, y @command{guix pull} le permite ``viajar en el tiempo'' por la historia del mismo Guix (@pxref{Invoking guix pull}). Esto hace posible replicar una instancia de Guix en una máquina diferente o en un punto posterior del tiempo, lo que a su vez le permite @emph{replicar entornos de software completos}, mientras que mantiene un preciso @dfn{seguimiento de la procedencia} del software." #. type: section -#: guix-git/doc/guix.texi:3110 +#: guix-git/doc/guix.texi:3127 #, no-wrap msgid "Invoking @command{guix package}" msgstr "Invocación de @command{guix package}" #. type: cindex -#: guix-git/doc/guix.texi:3112 +#: guix-git/doc/guix.texi:3129 #, no-wrap msgid "installing packages" msgstr "instalar paquetes" #. type: cindex -#: guix-git/doc/guix.texi:3113 +#: guix-git/doc/guix.texi:3130 #, no-wrap msgid "removing packages" msgstr "borrar paquetes" #. type: cindex -#: guix-git/doc/guix.texi:3114 +#: guix-git/doc/guix.texi:3131 #, no-wrap msgid "package installation" msgstr "instalación de paquetes" #. type: cindex -#: guix-git/doc/guix.texi:3115 +#: guix-git/doc/guix.texi:3132 #, no-wrap msgid "package removal" msgstr "borrado de paquetes" #. type: Plain text -#: guix-git/doc/guix.texi:3125 +#: guix-git/doc/guix.texi:3142 #, fuzzy msgid "The @command{guix package} command is the tool that allows users to install, upgrade, and remove packages, as well as rolling back to previous configurations. These operations work on a user @dfn{profile}---a directory of installed packages. Each user has a default profile in @file{$HOME/.guix-profile}. The command operates only on the user's own profile, and works with normal user privileges (@pxref{Features}). Its syntax is:" msgstr "La orden @command{guix package} es la herramienta que permite a las usuarias instalar, actualizar y borrar paquetes, así como volver a configuraciones previas. Opera únicamente en el perfil propio de la usuaria, y funciona con privilegios de usuaria normal (@pxref{Features}). Su sintaxis es:" #. type: example -#: guix-git/doc/guix.texi:3128 +#: guix-git/doc/guix.texi:3145 #, no-wrap msgid "guix package @var{options}\n" msgstr "guix package @var{opciones}\n" #. type: Plain text -#: guix-git/doc/guix.texi:3135 +#: guix-git/doc/guix.texi:3152 msgid "Primarily, @var{options} specifies the operations to be performed during the transaction. Upon completion, a new profile is created, but previous @dfn{generations} of the profile remain available, should the user want to roll back." msgstr "Primariamente, @var{opciones} especifica las operaciones a ser realizadas durante la transacción. Al completarse, un nuevo perfil es creado, pero las @dfn{generaciones} previas del perfil permanecen disponibles, en caso de que la usuaria quisiera volver atrás." #. type: Plain text -#: guix-git/doc/guix.texi:3138 +#: guix-git/doc/guix.texi:3155 msgid "For example, to remove @code{lua} and install @code{guile} and @code{guile-cairo} in a single transaction:" msgstr "Por ejemplo, para borrar @code{lua} e instalar @code{guile} y @code{guile-cairo} en una única transacción:" #. type: example -#: guix-git/doc/guix.texi:3141 +#: guix-git/doc/guix.texi:3158 #, no-wrap msgid "guix package -r lua -i guile guile-cairo\n" msgstr "guix package -r lua -i guile guile-cairo\n" # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:3143 +#: guix-git/doc/guix.texi:3160 #, no-wrap msgid "aliases, for @command{guix package}" msgstr "alias de @command{guix package}" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:3145 +#: guix-git/doc/guix.texi:3162 msgid "For your convenience, we also provide the following aliases:" msgstr "Para su conveniencia, también se proporcionan los siguientes alias:" #. type: itemize -#: guix-git/doc/guix.texi:3149 +#: guix-git/doc/guix.texi:3166 msgid "@command{guix search} is an alias for @command{guix package -s}," msgstr "@command{guix search} es un alias de @command{guix package -s}," #. type: itemize -#: guix-git/doc/guix.texi:3151 +#: guix-git/doc/guix.texi:3168 msgid "@command{guix install} is an alias for @command{guix package -i}," msgstr "@command{guix install} es un alias de @command{guix package -i}," #. type: itemize -#: guix-git/doc/guix.texi:3153 +#: guix-git/doc/guix.texi:3170 msgid "@command{guix remove} is an alias for @command{guix package -r}," msgstr "@command{guix remove} es un alias de @command{guix package -r}," @@ -9287,46 +9369,46 @@ msgstr "@command{guix remove} es un alias de @command{guix package -r}," # "coma de Oxford" en las enumeraciones. Mantener en el último elemento # de la lista únicamente. #. type: itemize -#: guix-git/doc/guix.texi:3155 +#: guix-git/doc/guix.texi:3172 msgid "@command{guix upgrade} is an alias for @command{guix package -u}," msgstr "@command{guix upgrade} es un alias de @command{guix package -u}" #. type: itemize -#: guix-git/doc/guix.texi:3157 +#: guix-git/doc/guix.texi:3174 msgid "and @command{guix show} is an alias for @command{guix package --show=}." msgstr "y @command{guix show} es un alias de @command{guix package --show=}." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:3162 +#: guix-git/doc/guix.texi:3179 msgid "These aliases are less expressive than @command{guix package} and provide fewer options, so in some cases you'll probably want to use @command{guix package} directly." msgstr "Estos alias tienen menos capacidad expresiva que @command{guix package} y proporcionan menos opciones, por lo que en algunos casos es probable que desee usar @command{guix package} directamente." #. type: Plain text -#: guix-git/doc/guix.texi:3167 +#: guix-git/doc/guix.texi:3184 msgid "@command{guix package} also supports a @dfn{declarative approach} whereby the user specifies the exact set of packages to be available and passes it @i{via} the @option{--manifest} option (@pxref{profile-manifest, @option{--manifest}})." msgstr "@command{guix package} también proporciona una @dfn{aproximación declarativa}, donde la usuaria especifica el conjunto exacto de paquetes a poner disponibles y la pasa a través de la opción @option{--manifest} (@pxref{profile-manifest, @option{--manifest}})." # TODO (MAAV): De nuevo "and so on". #. type: Plain text -#: guix-git/doc/guix.texi:3174 +#: guix-git/doc/guix.texi:3191 msgid "For each user, a symlink to the user's default profile is automatically created in @file{$HOME/.guix-profile}. This symlink always points to the current generation of the user's default profile. Thus, users can add @file{$HOME/.guix-profile/bin} to their @env{PATH} environment variable, and so on." msgstr "Para cada usuaria, un enlace simbólico al perfil predeterminado de la usuaria es creado en @file{$HOME/.guix-profile}. Este enlace simbólico siempre apunta a la generación actual del perfil predeterminado de la usuaria. Por lo tanto, las usuarias pueden añadir @file{$HOME/.guix-profile/bin} a su variable de entorno @env{PATH}, etcétera." #. type: cindex -#: guix-git/doc/guix.texi:3174 guix-git/doc/guix.texi:3418 +#: guix-git/doc/guix.texi:3191 guix-git/doc/guix.texi:3435 #, no-wrap msgid "search paths" msgstr "rutas de búsqueda" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:3179 +#: guix-git/doc/guix.texi:3196 msgid "If you are not using Guix System, consider adding the following lines to your @file{~/.bash_profile} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}) so that newly-spawned shells get all the right environment variable definitions:" msgstr "Si no está usando el sistema Guix, considere la adición de las siguientes líneas en su @file{~/.bash_profile} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}) de manera que los nuevos intérpretes que ejecute obtengan todas las definiciones correctas de las variables de entorno:" #. type: example -#: guix-git/doc/guix.texi:3183 +#: guix-git/doc/guix.texi:3200 #, fuzzy, no-wrap msgid "" "GUIX_PROFILE=\"$HOME/.guix-profile\" ; \\\n" @@ -9337,305 +9419,305 @@ msgstr "" "\n" #. type: Plain text -#: guix-git/doc/guix.texi:3194 +#: guix-git/doc/guix.texi:3211 msgid "In a multi-user setup, user profiles are stored in a place registered as a @dfn{garbage-collector root}, which @file{$HOME/.guix-profile} points to (@pxref{Invoking guix gc}). That directory is normally @code{@var{localstatedir}/guix/profiles/per-user/@var{user}}, where @var{localstatedir} is the value passed to @code{configure} as @option{--localstatedir}, and @var{user} is the user name. The @file{per-user} directory is created when @command{guix-daemon} is started, and the @var{user} sub-directory is created by @command{guix package}." msgstr "En una configuración multiusuaria, los perfiles de usuaria se almacenan en un lugar registrado como una @dfn{raíz del sistema de archivos}, a la que apunta @file{$HOME/.guix-profile} (@pxref{Invoking guix gc}). Ese directorio normalmente es @code{@var{localstatedir}/guix/profiles/per-user/@var{usuaria}}, donde @var{localstatedir} es el valor pasado a @code{configure} como @option{--localstatedir} y @var{usuaria} es el nombre de usuaria. El directorio @file{per-user} se crea cuando se lanza @command{guix-daemon}, y el subdirectorio @var{usuaria} es creado por @command{guix package}." #. type: Plain text -#: guix-git/doc/guix.texi:3196 +#: guix-git/doc/guix.texi:3213 msgid "The @var{options} can be among the following:" msgstr "Las @var{opciones} pueden ser las siguientes:" #. type: item -#: guix-git/doc/guix.texi:3199 +#: guix-git/doc/guix.texi:3216 #, no-wrap msgid "--install=@var{package} @dots{}" msgstr "--install=@var{paquete} @dots{}" #. type: itemx -#: guix-git/doc/guix.texi:3200 +#: guix-git/doc/guix.texi:3217 #, no-wrap msgid "-i @var{package} @dots{}" msgstr "-i @var{paquete} @dots{}" #. type: table -#: guix-git/doc/guix.texi:3202 +#: guix-git/doc/guix.texi:3219 msgid "Install the specified @var{package}s." msgstr "Instala los @var{paquete}s especificados." #. type: table -#: guix-git/doc/guix.texi:3207 +#: guix-git/doc/guix.texi:3224 msgid "Each @var{package} may specify either a simple package name, such as @code{guile}, or a package name followed by an at-sign and version number, such as @code{guile@@1.8.8} or simply @code{guile@@1.8} (in the latter case, the newest version prefixed by @code{1.8} is selected)." msgstr "Cada @var{paquete} puede especificar un nombre simple de paquete, como por ejemplo @code{guile}, o un nombre de paquete seguido por una arroba y el número de versión, como por ejemplo @code{guile@@1.8.8} o simplemente @code{guile@@1.8} (en el último caso la última versión con @code{1.8} como prefijo es seleccionada)." #. type: table -#: guix-git/doc/guix.texi:3215 +#: guix-git/doc/guix.texi:3232 msgid "If no version number is specified, the newest available version will be selected. In addition, @var{package} may contain a colon, followed by the name of one of the outputs of the package, as in @code{gcc:doc} or @code{binutils@@2.22:lib} (@pxref{Packages with Multiple Outputs}). Packages with a corresponding name (and optionally version) are searched for among the GNU distribution modules (@pxref{Package Modules})." msgstr "Si no se especifica un número de versión, la última versión disponible será seleccionada. Además, @var{paquete} puede contener dos puntos, seguido por el nombre de una de las salidas del paquete, como en @code{gcc:doc} o @code{binutils@@2.22:lib} (@pxref{Packages with Multiple Outputs}). Los paquetes con el nombre correspondiente (y opcionalmente la versión) se buscan entre los módulos de la distribución GNU (@pxref{Package Modules})." #. type: cindex -#: guix-git/doc/guix.texi:3216 +#: guix-git/doc/guix.texi:3233 #, no-wrap msgid "propagated inputs" msgstr "entradas propagadas" # TODO: ¡Comprobar traducción del enlace! #. type: table -#: guix-git/doc/guix.texi:3222 +#: guix-git/doc/guix.texi:3239 msgid "Sometimes packages have @dfn{propagated inputs}: these are dependencies that automatically get installed along with the required package (@pxref{package-propagated-inputs, @code{propagated-inputs} in @code{package} objects}, for information about propagated inputs in package definitions)." msgstr "A veces los paquetes tienen @dfn{entradas propagadas}: estas son las dependencias que se instalan automáticamente junto al paquete requerido (@pxref{package-propagated-inputs, @code{propagated-inputs} in @code{package} objects}, para información sobre las entradas propagadas en las definiciones de paquete)." #. type: anchor{#1} -#: guix-git/doc/guix.texi:3229 +#: guix-git/doc/guix.texi:3246 msgid "package-cmd-propagated-inputs" msgstr "package-cmd-propagated-inputs" #. type: table -#: guix-git/doc/guix.texi:3229 +#: guix-git/doc/guix.texi:3246 msgid "An example is the GNU MPC library: its C header files refer to those of the GNU MPFR library, which in turn refer to those of the GMP library. Thus, when installing MPC, the MPFR and GMP libraries also get installed in the profile; removing MPC also removes MPFR and GMP---unless they had also been explicitly installed by the user." msgstr "Un ejemplo es la biblioteca GNU MPC: sus archivos de cabecera C hacen referencia a los de la biblioteca GNU MPFR, que a su vez hacen referencia a los de la biblioteca GMP. Por tanto, cuando se instala MPC, las bibliotecas MPFR y GMP también se instalan en el perfil; borrar MPC también borra MPFR y GMP---a menos que también se hayan instalado explícitamente por la usuaria." # FUZZY #. type: table -#: guix-git/doc/guix.texi:3234 +#: guix-git/doc/guix.texi:3251 msgid "Besides, packages sometimes rely on the definition of environment variables for their search paths (see explanation of @option{--search-paths} below). Any missing or possibly incorrect environment variable definitions are reported here." msgstr "Por otra parte, los paquetes a veces dependen de la definición de variables de entorno para sus rutas de búsqueda (véase a continuación la explicación de @option{--seach-paths}). Cualquier definición de variable de entorno que falte o sea posiblemente incorrecta se informa aquí." #. type: item -#: guix-git/doc/guix.texi:3235 +#: guix-git/doc/guix.texi:3252 #, no-wrap msgid "--install-from-expression=@var{exp}" msgstr "--install-from-expression=@var{exp}" #. type: itemx -#: guix-git/doc/guix.texi:3236 +#: guix-git/doc/guix.texi:3253 #, no-wrap msgid "-e @var{exp}" msgstr "-e @var{exp}" #. type: table -#: guix-git/doc/guix.texi:3238 +#: guix-git/doc/guix.texi:3255 msgid "Install the package @var{exp} evaluates to." msgstr "Instala el paquete al que @var{exp} evalúa." #. type: table -#: guix-git/doc/guix.texi:3243 +#: guix-git/doc/guix.texi:3260 msgid "@var{exp} must be a Scheme expression that evaluates to a @code{} object. This option is notably useful to disambiguate between same-named variants of a package, with expressions such as @code{(@@ (gnu packages base) guile-final)}." msgstr "@var{exp} debe ser una expresión Scheme que evalúe a un objeto @code{}. Esta opción es notablemente útil para diferenciar entre variantes con el mismo nombre de paquete, con expresiones como @code{(@@ (gnu packages base) guile-final)}." #. type: table -#: guix-git/doc/guix.texi:3247 +#: guix-git/doc/guix.texi:3264 msgid "Note that this option installs the first output of the specified package, which may be insufficient when needing a specific output of a multiple-output package." msgstr "Fíjese que esta opción instala la primera salida del paquete especificado, lo cual puede ser insuficiente cuando se necesita una salida específica de un paquete con múltiples salidas." #. type: item -#: guix-git/doc/guix.texi:3248 +#: guix-git/doc/guix.texi:3265 #, no-wrap msgid "--install-from-file=@var{file}" msgstr "--install-from-file=@var{archivo}" #. type: itemx -#: guix-git/doc/guix.texi:3249 guix-git/doc/guix.texi:5781 -#: guix-git/doc/guix.texi:11396 +#: guix-git/doc/guix.texi:3266 guix-git/doc/guix.texi:5799 +#: guix-git/doc/guix.texi:11710 #, no-wrap msgid "-f @var{file}" msgstr "-f @var{archivo}" #. type: table -#: guix-git/doc/guix.texi:3251 +#: guix-git/doc/guix.texi:3268 msgid "Install the package that the code within @var{file} evaluates to." msgstr "Instala el paquete que resulta de evaluar el código en @var{archivo}." #. type: table -#: guix-git/doc/guix.texi:3254 guix-git/doc/guix.texi:5787 -#: guix-git/doc/guix.texi:6162 +#: guix-git/doc/guix.texi:3271 guix-git/doc/guix.texi:5805 +#: guix-git/doc/guix.texi:6199 msgid "As an example, @var{file} might contain a definition like this (@pxref{Defining Packages}):" msgstr "Como un ejemplo, @var{archivo} puede contener una definición como esta (@pxref{Defining Packages}):" #. type: include -#: guix-git/doc/guix.texi:3256 guix-git/doc/guix.texi:11404 +#: guix-git/doc/guix.texi:3273 guix-git/doc/guix.texi:11718 #, no-wrap msgid "package-hello.scm" msgstr "package-hello.scm" #. type: table -#: guix-git/doc/guix.texi:3263 +#: guix-git/doc/guix.texi:3280 #, fuzzy #| msgid "Developers may find it useful to include such a @file{guix.scm} file in the root of their project source tree that can be used to test development snapshots and create reproducible development environments (@pxref{Invoking guix environment})." msgid "Developers may find it useful to include such a @file{guix.scm} file in the root of their project source tree that can be used to test development snapshots and create reproducible development environments (@pxref{Invoking guix shell})." msgstr "Las desarrolladoras pueden encontrarlo útil para incluir un archivo @file{guix.scm} in la raíz del árbol de fuentes de su proyecto que puede ser usado para probar imágenes de desarrollo y crear entornos de desarrollo reproducibles (@pxref{Invoking guix environment})." #. type: table -#: guix-git/doc/guix.texi:3268 +#: guix-git/doc/guix.texi:3285 msgid "The @var{file} may also contain a JSON representation of one or more package definitions. Running @code{guix package -f} on @file{hello.json} with the following contents would result in installing the package @code{greeter} after building @code{myhello}:" msgstr "El @var{archivo} puede contener también una representación en JSON de una o más definiciones de paquetes. Ejecutar @code{guix package -f} en @file{hello.json} con el contenido mostrado a continuación provocará la instalación del paquete @code{greeter} tras la construcción de @code{myhello}:" #. type: example -#: guix-git/doc/guix.texi:3271 guix-git/doc/guix.texi:11414 +#: guix-git/doc/guix.texi:3288 guix-git/doc/guix.texi:11728 #, no-wrap msgid "@verbatiminclude package-hello.json\n" msgstr "@verbatiminclude package-hello.json\n" #. type: item -#: guix-git/doc/guix.texi:3273 +#: guix-git/doc/guix.texi:3290 #, no-wrap msgid "--remove=@var{package} @dots{}" msgstr "--remove=@var{paquete} @dots{}" #. type: itemx -#: guix-git/doc/guix.texi:3274 +#: guix-git/doc/guix.texi:3291 #, no-wrap msgid "-r @var{package} @dots{}" msgstr "-r @var{paquete} @dots{}" #. type: table -#: guix-git/doc/guix.texi:3276 +#: guix-git/doc/guix.texi:3293 msgid "Remove the specified @var{package}s." msgstr "Borra los @var{paquete}s especificados." #. type: table -#: guix-git/doc/guix.texi:3281 +#: guix-git/doc/guix.texi:3298 msgid "As for @option{--install}, each @var{package} may specify a version number and/or output name in addition to the package name. For instance, @samp{-r glibc:debug} would remove the @code{debug} output of @code{glibc}." msgstr "Como en @option{--install}, cada @var{paquete} puede especificar un número de versión y/o un nombre de salida además del nombre del paquete. Por ejemplo, @code{-r glibc:debug} eliminaría la salida @code{debug} de @code{glibc}." #. type: item -#: guix-git/doc/guix.texi:3282 +#: guix-git/doc/guix.texi:3299 #, no-wrap msgid "--upgrade[=@var{regexp} @dots{}]" msgstr "--upgrade[=@var{regexp} @dots{}]" #. type: itemx -#: guix-git/doc/guix.texi:3283 +#: guix-git/doc/guix.texi:3300 #, no-wrap msgid "-u [@var{regexp} @dots{}]" msgstr "-u [@var{regexp} @dots{}]" #. type: cindex -#: guix-git/doc/guix.texi:3284 +#: guix-git/doc/guix.texi:3301 #, no-wrap msgid "upgrading packages" msgstr "actualizar paquetes" #. type: table -#: guix-git/doc/guix.texi:3288 +#: guix-git/doc/guix.texi:3305 msgid "Upgrade all the installed packages. If one or more @var{regexp}s are specified, upgrade only installed packages whose name matches a @var{regexp}. Also see the @option{--do-not-upgrade} option below." msgstr "Actualiza todos los paquetes instalados. Si se especifica una o más expresiones regular @var{regexp}, actualiza únicamente los paquetes instalados cuyo nombre es aceptado por @var{regexp}. Véase también la opción @option{--do-not-upgrade} más adelante." #. type: table -#: guix-git/doc/guix.texi:3293 +#: guix-git/doc/guix.texi:3310 msgid "Note that this upgrades package to the latest version of packages found in the distribution currently installed. To update your distribution, you should regularly run @command{guix pull} (@pxref{Invoking guix pull})." msgstr "Tenga en cuenta que esto actualiza los paquetes a la última versión encontrada en la distribución instalada actualmente. Para actualizar su distribución, debe ejecutar regularmente @command{guix pull} (@pxref{Invoking guix pull})." #. type: cindex -#: guix-git/doc/guix.texi:3294 +#: guix-git/doc/guix.texi:3311 #, no-wrap msgid "package transformations, upgrades" msgstr "transformación de paquetes, actualizaciones" #. type: table -#: guix-git/doc/guix.texi:3299 +#: guix-git/doc/guix.texi:3316 msgid "When upgrading, package transformations that were originally applied when creating the profile are automatically re-applied (@pxref{Package Transformation Options}). For example, assume you first installed Emacs from the tip of its development branch with:" msgstr "Al actualizar, las transformaciones que se aplicaron originalmente al crear el perfil se aplican de nuevo de manera automática (@pxref{Package Transformation Options}). Por ejemplo, asumiendo que hubiese instalado Emacs a partir de la última revisión de su rama de desarrollo con:" #. type: example -#: guix-git/doc/guix.texi:3302 +#: guix-git/doc/guix.texi:3319 #, no-wrap msgid "guix install emacs-next --with-branch=emacs-next=master\n" msgstr "guix install emacs-next --with-branch=emacs-next=master\n" #. type: table -#: guix-git/doc/guix.texi:3307 +#: guix-git/doc/guix.texi:3324 msgid "Next time you run @command{guix upgrade}, Guix will again pull the tip of the Emacs development branch and build @code{emacs-next} from that checkout." msgstr "La próxima vez que ejecute @command{guix upgrade} Guix obtendrá de nuevo la última revisión de la rama de desarrollo de Emacs y construirá @code{emacs-next} a partir de ese código." #. type: table -#: guix-git/doc/guix.texi:3312 +#: guix-git/doc/guix.texi:3329 msgid "Note that transformation options such as @option{--with-branch} and @option{--with-source} depend on external state; it is up to you to ensure that they work as expected. You can also discard a transformations that apply to a package by running:" msgstr "Tenga en cuenta que las opciones de transformación, como por ejemplo @option{--with-branch} y @option{--with-source}, dependen de un estado externo; es su responsabilidad asegurarse de que funcionen de la manera esperada. También puede deshacer las transformaciones aplicadas a un paquete con la siguiente orden:" #. type: example -#: guix-git/doc/guix.texi:3315 +#: guix-git/doc/guix.texi:3332 #, no-wrap msgid "guix install @var{package}\n" msgstr "guix install @var{paquete}\n" #. type: item -#: guix-git/doc/guix.texi:3317 +#: guix-git/doc/guix.texi:3334 #, no-wrap msgid "--do-not-upgrade[=@var{regexp} @dots{}]" msgstr "--do-not-upgrade[=@var{regexp} @dots{}]" #. type: table -#: guix-git/doc/guix.texi:3322 +#: guix-git/doc/guix.texi:3339 msgid "When used together with the @option{--upgrade} option, do @emph{not} upgrade any packages whose name matches a @var{regexp}. For example, to upgrade all packages in the current profile except those containing the substring ``emacs'':" msgstr "Cuando se usa junto a la opción @option{--upgrade}, @emph{no} actualiza ningún paquete cuyo nombre sea aceptado por @var{regexp}. Por ejemplo, para actualizar todos los paquetes en el perfil actual excepto aquellos que contengan la cadena ``emacs'':" #. type: example -#: guix-git/doc/guix.texi:3325 +#: guix-git/doc/guix.texi:3342 #, no-wrap msgid "$ guix package --upgrade . --do-not-upgrade emacs\n" msgstr "$ guix package --upgrade . --do-not-upgrade emacs\n" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3327 +#: guix-git/doc/guix.texi:3344 #, no-wrap msgid "profile-manifest" msgstr "profile-manifest" #. type: item -#: guix-git/doc/guix.texi:3327 guix-git/doc/guix.texi:5799 -#: guix-git/doc/guix.texi:6167 guix-git/doc/guix.texi:6615 -#: guix-git/doc/guix.texi:12535 guix-git/doc/guix.texi:14135 +#: guix-git/doc/guix.texi:3344 guix-git/doc/guix.texi:5817 +#: guix-git/doc/guix.texi:6204 guix-git/doc/guix.texi:6658 +#: guix-git/doc/guix.texi:12850 guix-git/doc/guix.texi:14492 #, no-wrap msgid "--manifest=@var{file}" msgstr "--manifest=@var{archivo}" #. type: itemx -#: guix-git/doc/guix.texi:3328 guix-git/doc/guix.texi:5800 -#: guix-git/doc/guix.texi:6168 guix-git/doc/guix.texi:6616 -#: guix-git/doc/guix.texi:12536 +#: guix-git/doc/guix.texi:3345 guix-git/doc/guix.texi:5818 +#: guix-git/doc/guix.texi:6205 guix-git/doc/guix.texi:6659 +#: guix-git/doc/guix.texi:12851 #, no-wrap msgid "-m @var{file}" msgstr "-m @var{archivo}" #. type: cindex -#: guix-git/doc/guix.texi:3329 +#: guix-git/doc/guix.texi:3346 #, no-wrap msgid "profile declaration" msgstr "declaración del perfil" # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:3330 +#: guix-git/doc/guix.texi:3347 #, no-wrap msgid "profile manifest" msgstr "manifiesto del perfil" # FUZZY #. type: table -#: guix-git/doc/guix.texi:3334 +#: guix-git/doc/guix.texi:3351 msgid "Create a new generation of the profile from the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "Crea una nueva generación del perfil desde el objeto de manifiesto devuelto por el código Scheme en @var{archivo}. Esta opción puede repetirse varias veces, en cuyo caso los manifiestos se concatenan." # TODO (MAAV): And so on. #. type: table -#: guix-git/doc/guix.texi:3340 +#: guix-git/doc/guix.texi:3357 msgid "This allows you to @emph{declare} the profile's contents rather than constructing it through a sequence of @option{--install} and similar commands. The advantage is that @var{file} can be put under version control, copied to different machines to reproduce the same profile, and so on." msgstr "Esto le permite @emph{declarar} los contenidos del perfil en vez de construirlo a través de una secuencia de @option{--install} y órdenes similares. La ventaja es que @var{archivo} puede ponerse bajo control de versiones, copiarse a máquinas diferentes para reproducir el mismo perfil, y demás." #. type: table -#: guix-git/doc/guix.texi:3344 +#: guix-git/doc/guix.texi:3361 msgid "@var{file} must return a @dfn{manifest} object, which is roughly a list of packages:" msgstr "@var{archivo} debe devolver un objeto @dfn{manifest}, que es básicamente una lista de paquetes:" #. type: findex -#: guix-git/doc/guix.texi:3345 +#: guix-git/doc/guix.texi:3362 #, no-wrap msgid "packages->manifest" msgstr "packages->manifest" #. type: lisp -#: guix-git/doc/guix.texi:3348 +#: guix-git/doc/guix.texi:3365 #, no-wrap msgid "" "(use-package-modules guile emacs)\n" @@ -9645,7 +9727,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:3354 +#: guix-git/doc/guix.texi:3371 #, no-wrap msgid "" "(packages->manifest\n" @@ -9661,18 +9743,18 @@ msgstr "" " (list guile-2.0 \"debug\")))\n" #. type: findex -#: guix-git/doc/guix.texi:3356 +#: guix-git/doc/guix.texi:3373 #, no-wrap msgid "specifications->manifest" msgstr "specifications->manifest" #. type: table -#: guix-git/doc/guix.texi:3363 +#: guix-git/doc/guix.texi:3380 msgid "In this example we have to know which modules define the @code{emacs} and @code{guile-2.0} variables to provide the right @code{use-package-modules} line, which can be cumbersome. We can instead provide regular package specifications and let @code{specifications->manifest} look up the corresponding package objects, like this:" msgstr "En este ejemplo tenemos que conocer qué módulos definen las variables @code{emacs} y @code{guile-2.0} para proporcionar la línea @code{use-package-modules} correcta, lo cual puede ser complicado. En cambio podemos proporcionar especificaciones regulares de paquetes y dejar a @code{specifications->manifest} buscar los objetos de paquete correspondientes así:" #. type: lisp -#: guix-git/doc/guix.texi:3367 +#: guix-git/doc/guix.texi:3384 #, no-wrap msgid "" "(specifications->manifest\n" @@ -9682,7 +9764,7 @@ msgstr "" " '(\"emacs\" \"guile@@2.2\" \"guile@@2.2:debug\"))\n" #. type: findex -#: guix-git/doc/guix.texi:3369 +#: guix-git/doc/guix.texi:3386 #, fuzzy, no-wrap #| msgid "packages->manifest" msgid "package->development-manifest" @@ -9690,14 +9772,14 @@ msgstr "packages->manifest" # FUZZY #. type: table -#: guix-git/doc/guix.texi:3372 +#: guix-git/doc/guix.texi:3389 #, fuzzy #| msgid "It's also assumed that the union of all the dependencies of a package has no conflicting files." msgid "You might also want to create a manifest for all the dependencies of a package, rather than the package itself:" msgstr "También se asume que la unión de todas las dependencias de un paquete no tiene archivos en conflicto." #. type: lisp -#: guix-git/doc/guix.texi:3375 +#: guix-git/doc/guix.texi:3392 #, fuzzy, no-wrap #| msgid "" #| "(packages->manifest\n" @@ -9708,133 +9790,135 @@ msgstr "" " (list (transforma (specification->package \"guix\"))))\n" #. type: table -#: guix-git/doc/guix.texi:3379 +#: guix-git/doc/guix.texi:3396 msgid "The example above gives you all the software required to develop Emacs, similar to what @command{guix environment emacs} provides." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3382 +#: guix-git/doc/guix.texi:3399 msgid "@xref{export-manifest, @option{--export-manifest}}, to learn how to obtain a manifest file from an existing profile." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3383 guix-git/doc/guix.texi:4492 +#: guix-git/doc/guix.texi:3400 guix-git/doc/guix.texi:4510 #, no-wrap msgid "--roll-back" msgstr "--roll-back" #. type: cindex -#: guix-git/doc/guix.texi:3384 guix-git/doc/guix.texi:4493 -#: guix-git/doc/guix.texi:35006 guix-git/doc/guix.texi:37641 +#: guix-git/doc/guix.texi:3401 guix-git/doc/guix.texi:4511 +#: guix-git/doc/guix.texi:35445 guix-git/doc/guix.texi:38120 #, no-wrap msgid "rolling back" msgstr "revertir (``roll back'')" #. type: cindex -#: guix-git/doc/guix.texi:3385 guix-git/doc/guix.texi:4494 +#: guix-git/doc/guix.texi:3402 guix-git/doc/guix.texi:4512 #, no-wrap msgid "undoing transactions" msgstr "deshacer transacciones" #. type: cindex -#: guix-git/doc/guix.texi:3386 guix-git/doc/guix.texi:4495 +#: guix-git/doc/guix.texi:3403 guix-git/doc/guix.texi:4513 #, no-wrap msgid "transactions, undoing" msgstr "transacciones, deshacer" #. type: table -#: guix-git/doc/guix.texi:3389 +#: guix-git/doc/guix.texi:3406 msgid "Roll back to the previous @dfn{generation} of the profile---i.e., undo the last transaction." msgstr "Vuelve a la @dfn{generación} previa del perfil---es decir, revierte la última transacción." #. type: table -#: guix-git/doc/guix.texi:3392 +#: guix-git/doc/guix.texi:3409 msgid "When combined with options such as @option{--install}, roll back occurs before any other actions." msgstr "Cuando se combina con opciones como @option{--install}, la reversión atrás ocurre antes que cualquier acción." #. type: table -#: guix-git/doc/guix.texi:3396 +#: guix-git/doc/guix.texi:3413 msgid "When rolling back from the first generation that actually contains installed packages, the profile is made to point to the @dfn{zeroth generation}, which contains no files apart from its own metadata." msgstr "Cuando se vuelve atrás en la primera generación que realmente contiene paquetes instalados, se hace que el perfil apunte a la @dfn{generación cero}, la cual no contiene ningún archivo a excepción de sus propios metadatos." #. type: table -#: guix-git/doc/guix.texi:3400 +#: guix-git/doc/guix.texi:3417 msgid "After having rolled back, installing, removing, or upgrading packages overwrites previous future generations. Thus, the history of the generations in a profile is always linear." msgstr "Después de haber vuelto atrás, instalar, borrar o actualizar paquetes sobreescribe las generaciones futuras previas. Por tanto, la historia de las generaciones en un perfil es siempre linear." #. type: item -#: guix-git/doc/guix.texi:3401 guix-git/doc/guix.texi:4499 +#: guix-git/doc/guix.texi:3418 guix-git/doc/guix.texi:4517 #, no-wrap msgid "--switch-generation=@var{pattern}" msgstr "--switch-generation=@var{patrón}" #. type: itemx -#: guix-git/doc/guix.texi:3402 guix-git/doc/guix.texi:4500 +#: guix-git/doc/guix.texi:3419 guix-git/doc/guix.texi:4518 #, no-wrap msgid "-S @var{pattern}" msgstr "-S @var{patrón}" #. type: cindex -#: guix-git/doc/guix.texi:3403 guix-git/doc/guix.texi:3635 -#: guix-git/doc/guix.texi:4501 guix-git/doc/guix.texi:34964 +#: guix-git/doc/guix.texi:3420 guix-git/doc/guix.texi:3653 +#: guix-git/doc/guix.texi:4519 guix-git/doc/guix.texi:35403 #, no-wrap msgid "generations" msgstr "generaciones" #. type: table -#: guix-git/doc/guix.texi:3405 guix-git/doc/guix.texi:4503 +#: guix-git/doc/guix.texi:3422 guix-git/doc/guix.texi:4521 msgid "Switch to a particular generation defined by @var{pattern}." msgstr "Cambia a una generación particular definida por el @var{patrón}." #. type: table -#: guix-git/doc/guix.texi:3411 guix-git/doc/guix.texi:4509 +#: guix-git/doc/guix.texi:3428 guix-git/doc/guix.texi:4527 msgid "@var{pattern} may be either a generation number or a number prefixed with ``+'' or ``-''. The latter means: move forward/backward by a specified number of generations. For example, if you want to return to the latest generation after @option{--roll-back}, use @option{--switch-generation=+1}." msgstr "@var{patrón} puede ser tanto un número de generación como un número prefijado con ``+'' o ``-''. Esto último significa: mueve atrás/hacia delante el número especificado de generaciones. Por ejemplo, si quiere volver a la última generación antes de @option{--roll-back}, use @option{--switch-generation=+1}." #. type: table -#: guix-git/doc/guix.texi:3416 +#: guix-git/doc/guix.texi:3433 msgid "The difference between @option{--roll-back} and @option{--switch-generation=-1} is that @option{--switch-generation} will not make a zeroth generation, so if a specified generation does not exist, the current generation will not be changed." msgstr "La diferencia entre @option{--roll-back} y @option{--switch-generation=-1} es que @option{--switch-generation} no creará una generación cero, así que si la generación especificada no existe, la generación actual no se verá cambiada." #. type: item -#: guix-git/doc/guix.texi:3417 +#: guix-git/doc/guix.texi:3434 #, no-wrap msgid "--search-paths[=@var{kind}]" msgstr "--search-paths[=@var{tipo}]" #. type: table -#: guix-git/doc/guix.texi:3423 +#: guix-git/doc/guix.texi:3440 msgid "Report environment variable definitions, in Bash syntax, that may be needed in order to use the set of installed packages. These environment variables are used to specify @dfn{search paths} for files used by some of the installed packages." msgstr "Informa de variables de entorno, en sintaxis Bash, que pueden necesitarse para usar el conjunto de paquetes instalado. Estas variables de entorno se usan para especificar las @dfn{rutas de búsqueda} para archivos usadas por algunos de los paquetes." #. type: table -#: guix-git/doc/guix.texi:3431 -msgid "For example, GCC needs the @env{CPATH} and @env{LIBRARY_PATH} environment variables to be defined so it can look for headers and libraries in the user's profile (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C library are installed in the profile, then @option{--search-paths} will suggest setting these variables to @file{@var{profile}/include} and @file{@var{profile}/lib}, respectively." +#: guix-git/doc/guix.texi:3449 +#, fuzzy +#| msgid "For example, GCC needs the @env{CPATH} and @env{LIBRARY_PATH} environment variables to be defined so it can look for headers and libraries in the user's profile (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C library are installed in the profile, then @option{--search-paths} will suggest setting these variables to @file{@var{profile}/include} and @file{@var{profile}/lib}, respectively." +msgid "For example, GCC needs the @env{CPATH} and @env{LIBRARY_PATH} environment variables to be defined so it can look for headers and libraries in the user's profile (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C library are installed in the profile, then @option{--search-paths} will suggest setting these variables to @file{@var{profile}/include} and @file{@var{profile}/lib}, respectively (@pxref{Search Paths}, for info on search path specifications associated with packages.)" msgstr "Por ejemplo, GCC necesita que las variables de entorno @env{CPATH} y @env{LIBRARY_PATH} estén definidas para poder buscar cabeceras y bibliotecas en el perfil de la usuaria (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). Si GCC y, digamos, la biblioteca de C están instaladas en el perfil, entonces @option{--search-paths} sugerirá fijar dichas variables a @file{@var{perfil}/include} y @file{@var{perfil}/lib} respectivamente." #. type: table -#: guix-git/doc/guix.texi:3434 +#: guix-git/doc/guix.texi:3452 msgid "The typical use case is to define these environment variables in the shell:" msgstr "El caso de uso típico es para definir estas variables de entorno en el intérprete de consola:" #. type: example -#: guix-git/doc/guix.texi:3437 +#: guix-git/doc/guix.texi:3455 #, no-wrap msgid "$ eval `guix package --search-paths`\n" msgstr "$ eval `guix package --search-paths`\n" #. type: table -#: guix-git/doc/guix.texi:3443 +#: guix-git/doc/guix.texi:3461 msgid "@var{kind} may be one of @code{exact}, @code{prefix}, or @code{suffix}, meaning that the returned environment variable definitions will either be exact settings, or prefixes or suffixes of the current value of these variables. When omitted, @var{kind} defaults to @code{exact}." msgstr "@var{tipo} puede ser @code{exact}, @code{prefix} o @code{suffix}, lo que significa que las definiciones de variables de entorno devueltas serán respectivamente las configuraciones exactas, prefijos o sufijos del valor actual de dichas variables. Cuando se omite, el valor predeterminado de @var{tipo} es @code{exact}." #. type: table -#: guix-git/doc/guix.texi:3446 +#: guix-git/doc/guix.texi:3464 msgid "This option can also be used to compute the @emph{combined} search paths of several profiles. Consider this example:" msgstr "Esta opción puede usarse para calcular las rutas de búsqueda @emph{combinadas} de varios perfiles. Considere este ejemplo:" #. type: example -#: guix-git/doc/guix.texi:3451 +#: guix-git/doc/guix.texi:3469 #, no-wrap msgid "" "$ guix package -p foo -i guile\n" @@ -9846,42 +9930,44 @@ msgstr "" "$ guix package -p foo -p bar --search-paths\n" #. type: table -#: guix-git/doc/guix.texi:3456 +#: guix-git/doc/guix.texi:3474 msgid "The last command above reports about the @env{GUILE_LOAD_PATH} variable, even though, taken individually, neither @file{foo} nor @file{bar} would lead to that recommendation." msgstr "La última orden informa sobre la variable @env{GUILE_LOAD_PATH}, aunque, tomada individualmente, ni @file{foo} ni @file{bar} hubieran llevado a esa recomendación." #. type: cindex -#: guix-git/doc/guix.texi:3458 +#: guix-git/doc/guix.texi:3476 #, fuzzy, no-wrap msgid "profile, choosing" msgstr "colisiones del perfil" #. type: item -#: guix-git/doc/guix.texi:3459 guix-git/doc/guix.texi:4529 -#: guix-git/doc/guix.texi:4858 +#: guix-git/doc/guix.texi:3477 guix-git/doc/guix.texi:4547 +#: guix-git/doc/guix.texi:4876 guix-git/doc/guix.texi:5827 +#: guix-git/doc/guix.texi:6240 #, no-wrap msgid "--profile=@var{profile}" msgstr "--profile=@var{perfil}" #. type: itemx -#: guix-git/doc/guix.texi:3460 guix-git/doc/guix.texi:4530 -#: guix-git/doc/guix.texi:4859 +#: guix-git/doc/guix.texi:3478 guix-git/doc/guix.texi:4548 +#: guix-git/doc/guix.texi:4877 guix-git/doc/guix.texi:5828 +#: guix-git/doc/guix.texi:6241 #, no-wrap msgid "-p @var{profile}" msgstr "-p @var{perfil}" #. type: table -#: guix-git/doc/guix.texi:3462 +#: guix-git/doc/guix.texi:3480 msgid "Use @var{profile} instead of the user's default profile." msgstr "Usa @var{perfil} en vez del perfil predeterminado de la usuaria." #. type: table -#: guix-git/doc/guix.texi:3467 +#: guix-git/doc/guix.texi:3485 msgid "@var{profile} must be the name of a file that will be created upon completion. Concretely, @var{profile} will be a mere symbolic link (``symlink'') pointing to the actual profile where packages are installed:" msgstr "@var{perfil} debe ser el nombre de un archivo que se creará tras completar las tareas. Concretamente, @var{perfil} sera simplemente un enlace simbólico (``symlink'') que apunta al verdadero perfil en el que se instalan los paquetes:" #. type: example -#: guix-git/doc/guix.texi:3473 +#: guix-git/doc/guix.texi:3491 #, no-wrap msgid "" "$ guix install hello -p ~/code/my-profile\n" @@ -9895,29 +9981,29 @@ msgstr "" "¡Hola mundo!\n" #. type: table -#: guix-git/doc/guix.texi:3477 +#: guix-git/doc/guix.texi:3495 msgid "All it takes to get rid of the profile is to remove this symlink and its siblings that point to specific generations:" msgstr "Todo lo necesario para deshacerse del perfil es borrar dicho enlace simbólico y sus enlaces relacionados que apuntan a generaciones específicas:" #. type: example -#: guix-git/doc/guix.texi:3480 +#: guix-git/doc/guix.texi:3498 #, no-wrap msgid "$ rm ~/code/my-profile ~/code/my-profile-*-link\n" msgstr "$ rm ~/código/mi-perfil ~/código/mi-perfil-*-link\n" #. type: item -#: guix-git/doc/guix.texi:3482 +#: guix-git/doc/guix.texi:3500 #, no-wrap msgid "--list-profiles" msgstr "--list-profiles" #. type: table -#: guix-git/doc/guix.texi:3484 +#: guix-git/doc/guix.texi:3502 msgid "List all the user's profiles:" msgstr "Enumera los perfiles de la usuaria:" #. type: example -#: guix-git/doc/guix.texi:3491 +#: guix-git/doc/guix.texi:3509 #, no-wrap msgid "" "$ guix package --list-profiles\n" @@ -9933,96 +10019,96 @@ msgstr "" "/home/carlos/tmp/prueba\n" #. type: table -#: guix-git/doc/guix.texi:3494 +#: guix-git/doc/guix.texi:3512 msgid "When running as root, list all the profiles of all the users." msgstr "Cuando se ejecuta como root, enumera todos los perfiles de todas las usuarias." #. type: cindex -#: guix-git/doc/guix.texi:3495 +#: guix-git/doc/guix.texi:3513 #, no-wrap msgid "collisions, in a profile" msgstr "colisiones, en un perfil" #. type: cindex -#: guix-git/doc/guix.texi:3496 +#: guix-git/doc/guix.texi:3514 #, no-wrap msgid "colliding packages in profiles" msgstr "paquetes con colisiones en perfiles" #. type: cindex -#: guix-git/doc/guix.texi:3497 +#: guix-git/doc/guix.texi:3515 #, no-wrap msgid "profile collisions" msgstr "colisiones del perfil" #. type: item -#: guix-git/doc/guix.texi:3498 +#: guix-git/doc/guix.texi:3516 #, no-wrap msgid "--allow-collisions" msgstr "--allow-collisions" #. type: table -#: guix-git/doc/guix.texi:3500 +#: guix-git/doc/guix.texi:3518 msgid "Allow colliding packages in the new profile. Use at your own risk!" msgstr "Permite colisiones de paquetes en el nuevo perfil. ¡Úselo bajo su propio riesgo!" #. type: table -#: guix-git/doc/guix.texi:3504 +#: guix-git/doc/guix.texi:3522 msgid "By default, @command{guix package} reports as an error @dfn{collisions} in the profile. Collisions happen when two or more different versions or variants of a given package end up in the profile." msgstr "Por defecto, @command{guix package} informa como un error las @dfn{colisiones} en el perfil. Las colisiones ocurren cuando dos o más versiones diferentes o variantes de un paquete dado se han seleccionado para el perfil." #. type: item -#: guix-git/doc/guix.texi:3505 guix-git/doc/guix.texi:4572 -#: guix-git/doc/guix.texi:6701 +#: guix-git/doc/guix.texi:3523 guix-git/doc/guix.texi:4590 +#: guix-git/doc/guix.texi:6744 #, no-wrap msgid "--bootstrap" msgstr "--bootstrap" #. type: table -#: guix-git/doc/guix.texi:3508 +#: guix-git/doc/guix.texi:3526 msgid "Use the bootstrap Guile to build the profile. This option is only useful to distribution developers." msgstr "Use el Guile usado para el lanzamiento para construir el perfil. Esta opción es util únicamente a las desarrolladoras de la distribución." #. type: Plain text -#: guix-git/doc/guix.texi:3514 +#: guix-git/doc/guix.texi:3532 msgid "In addition to these actions, @command{guix package} supports the following options to query the current state of a profile, or the availability of packages:" msgstr "Además de estas acciones, @command{guix package} acepta las siguientes opciones para consultar el estado actual de un perfil, o la disponibilidad de paquetes:" #. type: item -#: guix-git/doc/guix.texi:3517 +#: guix-git/doc/guix.texi:3535 #, no-wrap msgid "--search=@var{regexp}" msgstr "--search=@var{regexp}" #. type: itemx -#: guix-git/doc/guix.texi:3518 +#: guix-git/doc/guix.texi:3536 #, no-wrap msgid "-s @var{regexp}" msgstr "-s @var{regexp}" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3520 +#: guix-git/doc/guix.texi:3538 msgid "guix-search" msgstr "guix-search" #. type: cindex -#: guix-git/doc/guix.texi:3520 +#: guix-git/doc/guix.texi:3538 #, no-wrap msgid "searching for packages" msgstr "buscar paquetes" #. type: table -#: guix-git/doc/guix.texi:3526 +#: guix-git/doc/guix.texi:3544 msgid "List the available packages whose name, synopsis, or description matches @var{regexp} (in a case-insensitive fashion), sorted by relevance. Print all the metadata of matching packages in @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "Enumera los paquetes disponibles cuyo nombre, sinopsis o descripción corresponde con @var{regexp} (sin tener en cuenta la capitalización), ordenados por relevancia. Imprime todos los metadatos de los paquetes coincidentes en formato @code{recutils} (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." #. type: table -#: guix-git/doc/guix.texi:3529 +#: guix-git/doc/guix.texi:3547 msgid "This allows specific fields to be extracted using the @command{recsel} command, for instance:" msgstr "Esto permite extraer campos específicos usando la orden @command{recsel}, por ejemplo:" #. type: example -#: guix-git/doc/guix.texi:3535 +#: guix-git/doc/guix.texi:3553 #, no-wrap msgid "" "$ guix package -s malloc | recsel -p name,version,relevance\n" @@ -10038,7 +10124,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:3539 +#: guix-git/doc/guix.texi:3557 #, no-wrap msgid "" "name: glibc\n" @@ -10052,7 +10138,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:3543 +#: guix-git/doc/guix.texi:3561 #, no-wrap msgid "" "name: libgc\n" @@ -10064,12 +10150,12 @@ msgstr "" "relevance: 1\n" #. type: table -#: guix-git/doc/guix.texi:3547 +#: guix-git/doc/guix.texi:3565 msgid "Similarly, to show the name of all the packages available under the terms of the GNU@tie{}LGPL version 3:" msgstr "De manera similar, para mostrar el nombre de todos los paquetes disponibles bajo los términos de la GNU@tie{}LGPL versión 3:" #. type: example -#: guix-git/doc/guix.texi:3551 +#: guix-git/doc/guix.texi:3569 #, no-wrap msgid "" "$ guix package -s \"\" | recsel -p name -e 'license ~ \"LGPL 3\"'\n" @@ -10081,7 +10167,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:3554 +#: guix-git/doc/guix.texi:3572 #, no-wrap msgid "" "name: gmp\n" @@ -10092,13 +10178,13 @@ msgstr "" # TODO: Revisar cuando guix-packages se traduzca... #. type: table -#: guix-git/doc/guix.texi:3560 +#: guix-git/doc/guix.texi:3578 msgid "It is also possible to refine search results using several @code{-s} flags to @command{guix package}, or several arguments to @command{guix search}. For example, the following command returns a list of board games (this time using the @command{guix search} alias):" msgstr "También es posible refinar los resultados de búsqueda mediante el uso de varias opciones @code{-s}, o varios parámetros a @command{guix search}. Por ejemplo, la siguiente orden devuelve un lista de juegos de mesa@footnote{NdT: board en inglés.} (esta vez mediante el uso del alias @command{guix search}:" # TODO: Revisar cuando guix-packages se traduzca... #. type: example -#: guix-git/doc/guix.texi:3565 +#: guix-git/doc/guix.texi:3583 #, no-wrap msgid "" "$ guix search '\\' game | recsel -p name\n" @@ -10111,17 +10197,17 @@ msgstr "" # TODO: Revisar cuando guix-packages se traduzca... #. type: table -#: guix-git/doc/guix.texi:3571 +#: guix-git/doc/guix.texi:3589 msgid "If we were to omit @code{-s game}, we would also get software packages that deal with printed circuit boards; removing the angle brackets around @code{board} would further add packages that have to do with keyboards." msgstr "Si omitimos @code{-s game}, también obtendríamos paquetes de software que tengan que ver con placas de circuitos impresos (\"circuit board\" en inglés); borrar los signos mayor y menor alrededor de @code{board} añadiría paquetes que tienen que ver con teclados (keyboard en inglés)." #. type: table -#: guix-git/doc/guix.texi:3575 +#: guix-git/doc/guix.texi:3593 msgid "And now for a more elaborate example. The following command searches for cryptographic libraries, filters out Haskell, Perl, Python, and Ruby libraries, and prints the name and synopsis of the matching packages:" msgstr "Y ahora para un ejemplo más elaborado. La siguiente orden busca bibliotecas criptográficas, descarta bibliotecas Haskell, Perl, Python y Ruby, e imprime el nombre y la sinopsis de los paquetes resultantes:" #. type: example -#: guix-git/doc/guix.texi:3579 +#: guix-git/doc/guix.texi:3597 #, no-wrap msgid "" "$ guix search crypto library | \\\n" @@ -10131,23 +10217,23 @@ msgstr "" " recsel -e '! (name ~ \"^(ghc|perl|python|ruby)\")' -p name,synopsis\n" #. type: table -#: guix-git/doc/guix.texi:3584 +#: guix-git/doc/guix.texi:3602 msgid "@xref{Selection Expressions,,, recutils, GNU recutils manual}, for more information on @dfn{selection expressions} for @code{recsel -e}." msgstr "@xref{Selection Expressions,,, recutils, GNU recutils manual}, para más información en @dfn{expresiones de selección} para @code{recsel -e}." #. type: item -#: guix-git/doc/guix.texi:3585 +#: guix-git/doc/guix.texi:3603 #, no-wrap msgid "--show=@var{package}" msgstr "--show=@var{paquete}" #. type: table -#: guix-git/doc/guix.texi:3589 +#: guix-git/doc/guix.texi:3607 msgid "Show details about @var{package}, taken from the list of available packages, in @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "Muestra los detalles del @var{paquete}, tomado de la lista disponible de paquetes, en formato @code{recutils} (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." #. type: example -#: guix-git/doc/guix.texi:3594 +#: guix-git/doc/guix.texi:3612 #, fuzzy, no-wrap #| msgid "" #| "$ guix package --show=python | recsel -p name,version\n" @@ -10166,7 +10252,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:3597 +#: guix-git/doc/guix.texi:3615 #, fuzzy, no-wrap #| msgid "" #| "name: python\n" @@ -10180,7 +10266,7 @@ msgstr "" "version: 3.3.5\n" #. type: example -#: guix-git/doc/guix.texi:3601 +#: guix-git/doc/guix.texi:3619 #, fuzzy, no-wrap #| msgid "" #| "name: glibc\n" @@ -10198,12 +10284,12 @@ msgstr "" "\n" #. type: table -#: guix-git/doc/guix.texi:3605 +#: guix-git/doc/guix.texi:3623 msgid "You may also specify the full name of a package to only get details about a specific version of it (this time using the @command{guix show} alias):" msgstr "También puede especificar el nombre completo de un paquete para únicamente obtener detalles sobre una versión específica (esta vez usando el alias @command{guix show}):" #. type: example -#: guix-git/doc/guix.texi:3609 +#: guix-git/doc/guix.texi:3627 #, fuzzy, no-wrap #| msgid "" #| "$ guix show python@@3.4 | recsel -p name,version\n" @@ -10219,247 +10305,247 @@ msgstr "" "version: 3.4.3\n" #. type: item -#: guix-git/doc/guix.texi:3611 +#: guix-git/doc/guix.texi:3629 #, no-wrap msgid "--list-installed[=@var{regexp}]" msgstr "--list-installed[=@var{regexp}]" #. type: itemx -#: guix-git/doc/guix.texi:3612 +#: guix-git/doc/guix.texi:3630 #, no-wrap msgid "-I [@var{regexp}]" msgstr "-I [@var{regexp}]" #. type: table -#: guix-git/doc/guix.texi:3616 +#: guix-git/doc/guix.texi:3634 msgid "List the currently installed packages in the specified profile, with the most recently installed packages shown last. When @var{regexp} is specified, list only installed packages whose name matches @var{regexp}." msgstr "Enumera los paquetes actualmente instalados en el perfil especificado, con los últimos paquetes instalados mostrados al final. Cuando se especifica @var{regexp}, enumera únicamente los paquetes instalados cuyos nombres son aceptados por @var{regexp}." #. type: table -#: guix-git/doc/guix.texi:3622 +#: guix-git/doc/guix.texi:3640 msgid "For each installed package, print the following items, separated by tabs: the package name, its version string, the part of the package that is installed (for instance, @code{out} for the default output, @code{include} for its headers, etc.), and the path of this package in the store." msgstr "Por cada paquete instalado, imprime los siguientes elementos, separados por tabuladores: el nombre del paquete, la cadena de versión, la parte del paquete que está instalada (por ejemplo, @code{out} para la salida predeterminada, @code{include} para sus cabeceras, etc.), y la ruta de este paquete en el almacén." #. type: item -#: guix-git/doc/guix.texi:3623 +#: guix-git/doc/guix.texi:3641 #, no-wrap msgid "--list-available[=@var{regexp}]" msgstr "--list-available[=@var{regexp}]" #. type: itemx -#: guix-git/doc/guix.texi:3624 +#: guix-git/doc/guix.texi:3642 #, no-wrap msgid "-A [@var{regexp}]" msgstr "-A [@var{regexp}]" #. type: table -#: guix-git/doc/guix.texi:3628 +#: guix-git/doc/guix.texi:3646 msgid "List packages currently available in the distribution for this system (@pxref{GNU Distribution}). When @var{regexp} is specified, list only available packages whose name matches @var{regexp}." msgstr "Enumera los paquetes disponibles actualmente en la distribución para este sistema (@pxref{GNU Distribution}). Cuando se especifica @var{regexp}, enumera únicamente paquetes disponibles cuyo nombre coincide con @var{regexp}." #. type: table -#: guix-git/doc/guix.texi:3632 +#: guix-git/doc/guix.texi:3650 msgid "For each package, print the following items separated by tabs: its name, its version string, the parts of the package (@pxref{Packages with Multiple Outputs}), and the source location of its definition." msgstr "Por cada paquete, imprime los siguientes elementos separados por tabuladores: su nombre, su cadena de versión, las partes del paquete (@pxref{Packages with Multiple Outputs}) y la dirección de las fuentes de su definición." #. type: item -#: guix-git/doc/guix.texi:3633 guix-git/doc/guix.texi:4485 +#: guix-git/doc/guix.texi:3651 guix-git/doc/guix.texi:4503 #, no-wrap msgid "--list-generations[=@var{pattern}]" msgstr "--list-generations[=@var{patrón}]" #. type: itemx -#: guix-git/doc/guix.texi:3634 guix-git/doc/guix.texi:4486 +#: guix-git/doc/guix.texi:3652 guix-git/doc/guix.texi:4504 #, no-wrap msgid "-l [@var{pattern}]" msgstr "-l [@var{patrón}]" #. type: table -#: guix-git/doc/guix.texi:3640 +#: guix-git/doc/guix.texi:3658 msgid "Return a list of generations along with their creation dates; for each generation, show the installed packages, with the most recently installed packages shown last. Note that the zeroth generation is never shown." msgstr "Devuelve una lista de generaciones junto a sus fechas de creación; para cada generación, muestra los paquetes instalados, con los paquetes instalados más recientemente mostrados los últimos. Fíjese que la generación cero nunca se muestra." #. type: table -#: guix-git/doc/guix.texi:3645 +#: guix-git/doc/guix.texi:3663 msgid "For each installed package, print the following items, separated by tabs: the name of a package, its version string, the part of the package that is installed (@pxref{Packages with Multiple Outputs}), and the location of this package in the store." msgstr "Por cada paquete instalado, imprime los siguientes elementos, separados por tabuladores: el nombre de un paquete, su cadena de versión, la parte del paquete que está instalada (@pxref{Packages with Multiple Outputs}), y la ruta de este paquete en el almacén." #. type: table -#: guix-git/doc/guix.texi:3648 +#: guix-git/doc/guix.texi:3666 msgid "When @var{pattern} is used, the command returns only matching generations. Valid patterns include:" msgstr "Cuando se usa @var{patrón}, la orden devuelve únicamente las generaciones que se ajustan al patrón. Entre los patrones adecuados se encuentran:" #. type: item -#: guix-git/doc/guix.texi:3650 +#: guix-git/doc/guix.texi:3668 #, no-wrap msgid "@emph{Integers and comma-separated integers}. Both patterns denote" msgstr "@emph{Enteros y enteros separados por comas}. Ambos patrones denotan" #. type: itemize -#: guix-git/doc/guix.texi:3653 +#: guix-git/doc/guix.texi:3671 msgid "generation numbers. For instance, @option{--list-generations=1} returns the first one." msgstr "números de generación. Por ejemplo, @option{--list-generations=1} devuelve la primera." #. type: itemize -#: guix-git/doc/guix.texi:3656 +#: guix-git/doc/guix.texi:3674 msgid "And @option{--list-generations=1,8,2} outputs three generations in the specified order. Neither spaces nor trailing commas are allowed." msgstr "Y @option{--list-generations=1,8,2} devuelve las tres generaciones en el orden especificado. No se permiten ni espacios ni una coma al final." #. type: item -#: guix-git/doc/guix.texi:3657 +#: guix-git/doc/guix.texi:3675 #, no-wrap msgid "@emph{Ranges}. @option{--list-generations=2..9} prints the" msgstr "@emph{Rangos}. @option{--list-generations=2..9} imprime" #. type: itemize -#: guix-git/doc/guix.texi:3660 +#: guix-git/doc/guix.texi:3678 msgid "specified generations and everything in between. Note that the start of a range must be smaller than its end." msgstr "las generaciones especificadas y todas las intermedias. Fíjese que el inicio de un rango debe ser menor a su fin." #. type: itemize -#: guix-git/doc/guix.texi:3664 +#: guix-git/doc/guix.texi:3682 msgid "It is also possible to omit the endpoint. For example, @option{--list-generations=2..}, returns all generations starting from the second one." msgstr "También es posible omitir el destino final. Por ejemplo, @option{--list-generations=2..} devuelve todas las generaciones empezando por la segunda." #. type: item -#: guix-git/doc/guix.texi:3665 +#: guix-git/doc/guix.texi:3683 #, no-wrap msgid "@emph{Durations}. You can also get the last @emph{N}@tie{}days, weeks," msgstr "@emph{Duraciones}. Puede también obtener los últimos @emph{N}@tie{}días, semanas," #. type: itemize -#: guix-git/doc/guix.texi:3669 +#: guix-git/doc/guix.texi:3687 msgid "or months by passing an integer along with the first letter of the duration. For example, @option{--list-generations=20d} lists generations that are up to 20 days old." msgstr "o meses pasando un entero junto a la primera letra de la duración. Por ejemplo, @option{--list-generations=20d} enumera las generaciones que tienen hasta 20 días de antigüedad." #. type: item -#: guix-git/doc/guix.texi:3671 guix-git/doc/guix.texi:4510 +#: guix-git/doc/guix.texi:3689 guix-git/doc/guix.texi:4528 #, no-wrap msgid "--delete-generations[=@var{pattern}]" msgstr "--delete-generations[=@var{patrón}]" #. type: itemx -#: guix-git/doc/guix.texi:3672 guix-git/doc/guix.texi:4511 +#: guix-git/doc/guix.texi:3690 guix-git/doc/guix.texi:4529 #, no-wrap msgid "-d [@var{pattern}]" msgstr "-d [@var{patrón}]" #. type: table -#: guix-git/doc/guix.texi:3675 guix-git/doc/guix.texi:4514 +#: guix-git/doc/guix.texi:3693 guix-git/doc/guix.texi:4532 msgid "When @var{pattern} is omitted, delete all generations except the current one." msgstr "Cuando se omite @var{patrón}, borra todas las generaciones excepto la actual." # XXX (MAAV): Revisar reescritura. #. type: table -#: guix-git/doc/guix.texi:3681 guix-git/doc/guix.texi:4520 +#: guix-git/doc/guix.texi:3699 guix-git/doc/guix.texi:4538 msgid "This command accepts the same patterns as @option{--list-generations}. When @var{pattern} is specified, delete the matching generations. When @var{pattern} specifies a duration, generations @emph{older} than the specified duration match. For instance, @option{--delete-generations=1m} deletes generations that are more than one month old." msgstr "Esta orden acepta los mismos patrones que @option{--list-generations}. Cuando se especifica un @var{patrón}, borra las generaciones coincidentes. Cuando el @var{patrón} especifica una duración, las generaciones @emph{más antiguas} que la duración especificada son las borradas. Por ejemplo, @option{--delete-generations=1m} borra las generaciones de más de un mes de antigüedad." #. type: table -#: guix-git/doc/guix.texi:3684 +#: guix-git/doc/guix.texi:3702 msgid "If the current generation matches, it is @emph{not} deleted. Also, the zeroth generation is never deleted." msgstr "Si la generación actual entra en el patrón, @emph{no} es borrada. Tampoco la generación cero es borrada nunca." #. type: table -#: guix-git/doc/guix.texi:3687 guix-git/doc/guix.texi:4525 +#: guix-git/doc/guix.texi:3705 guix-git/doc/guix.texi:4543 msgid "Note that deleting generations prevents rolling back to them. Consequently, this command must be used with care." msgstr "Preste atención a que el borrado de generaciones previas impide la reversión a su estado. Consecuentemente esta orden debe ser usada con cuidado." #. type: cindex -#: guix-git/doc/guix.texi:3688 +#: guix-git/doc/guix.texi:3706 #, no-wrap msgid "manifest, exporting" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3690 +#: guix-git/doc/guix.texi:3708 #, fuzzy msgid "export-manifest" msgstr "profile-manifest" #. type: item -#: guix-git/doc/guix.texi:3690 +#: guix-git/doc/guix.texi:3708 #, fuzzy, no-wrap msgid "--export-manifest" msgstr "profile-manifest" #. type: table -#: guix-git/doc/guix.texi:3693 +#: guix-git/doc/guix.texi:3711 msgid "Write to standard output a manifest suitable for @option{--manifest} corresponding to the chosen profile(s)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3697 +#: guix-git/doc/guix.texi:3715 msgid "This option is meant to help you migrate from the ``imperative'' operating mode---running @command{guix install}, @command{guix upgrade}, etc.---to the declarative mode that @option{--manifest} offers." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3702 +#: guix-git/doc/guix.texi:3720 msgid "Be aware that the resulting manifest @emph{approximates} what your profile actually contains; for instance, depending on how your profile was created, it can refer to packages or package versions that are not exactly what you specified." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3707 +#: guix-git/doc/guix.texi:3725 msgid "Keep in mind that a manifest is purely symbolic: it only contains package names and possibly versions, and their meaning varies over time. If you wish to ``pin'' channels to the revisions that were used to build the profile(s), see @option{--export-channels} below." msgstr "" # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:3708 +#: guix-git/doc/guix.texi:3726 #, fuzzy, no-wrap msgid "pinning, channel revisions of a profile" msgstr "Ejecutar una versión antigua de Guix." #. type: item -#: guix-git/doc/guix.texi:3709 +#: guix-git/doc/guix.texi:3727 #, fuzzy, no-wrap msgid "--export-channels" msgstr "%default-channels" #. type: table -#: guix-git/doc/guix.texi:3713 +#: guix-git/doc/guix.texi:3731 msgid "Write to standard output the list of channels used by the chosen profile(s), in a format suitable for @command{guix pull --channels} or @command{guix time-machine --channels} (@pxref{Channels})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3717 +#: guix-git/doc/guix.texi:3735 msgid "Together with @option{--export-manifest}, this option provides information allowing you to replicate the current profile (@pxref{Replicating Guix})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3725 +#: guix-git/doc/guix.texi:3743 msgid "However, note that the output of this command @emph{approximates} what was actually used to build this profile. In particular, a single profile might have been built from several different revisions of the same channel. In that case, @option{--export-manifest} chooses the last one and writes the list of other revisions in a comment. If you really need to pick packages from different channel revisions, you can use inferiors in your manifest to do so (@pxref{Inferiors})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3730 +#: guix-git/doc/guix.texi:3748 msgid "Together with @option{--export-manifest}, this is a good starting point if you are willing to migrate from the ``imperative'' model to the fully declarative model consisting of a manifest file along with a channels file pinning the exact channel revision(s) you want." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3737 +#: guix-git/doc/guix.texi:3755 #, fuzzy msgid "Finally, since @command{guix package} may actually start build processes, it supports all the common build options (@pxref{Common Build Options}). It also supports package transformation options, such as @option{--with-source}, and preserves them across upgrades (@pxref{Package Transformation Options})." msgstr "Finalmente, ya que @command{guix package} puede lanzar procesos de construcción en realidad, acepta todas las opciones comunes de construcción (@pxref{Common Build Options}). También acepta opciones de transformación de paquetes, como @option{--with-source} (@pxref{Package Transformation Options}). No obstante, fíjese que las transformaciones del paquete se pierden al actualizar; para preservar las transformaciones entre actualizaciones, debe definir su propia variante del paquete en un módulo Guile y añadirlo a @env{GUIX_PACKAGE_PATH} (@pxref{Defining Packages})." #. type: cindex -#: guix-git/doc/guix.texi:3742 +#: guix-git/doc/guix.texi:3760 #, no-wrap msgid "pre-built binaries" msgstr "binarios pre-construidos" #. type: Plain text -#: guix-git/doc/guix.texi:3748 +#: guix-git/doc/guix.texi:3766 msgid "Guix supports transparent source/binary deployment, which means that it can either build things locally, or download pre-built items from a server, or both. We call these pre-built items @dfn{substitutes}---they are substitutes for local build results. In many cases, downloading a substitute is much faster than building things locally." msgstr "Guix permite despliegues transparentes de fuentes/binarios, lo que significa que puede tanto construir cosas localmente, como descargar elementos preconstruidos de un servidor, o ambas. Llamamos a esos elementos preconstruidos @dfn{sustituciones}---son sustituciones de los resultados de construcciones locales. En muchos casos, descargar una sustitución es mucho más rápido que construirla localmente." #. type: Plain text -#: guix-git/doc/guix.texi:3753 +#: guix-git/doc/guix.texi:3771 msgid "Substitutes can be anything resulting from a derivation build (@pxref{Derivations}). Of course, in the common case, they are pre-built package binaries, but source tarballs, for instance, which also result from derivation builds, can be available as substitutes." msgstr "Las sustituciones pueden ser cualquier cosa que resulte de una construcción de una derivación (@pxref{Derivations}). Por supuesto, en el caso común, son paquetes binarios preconstruidos, pero los archivos de fuentes, por ejemplo, que también resultan de construcciones de derivaciones, pueden estar disponibles como sustituciones." #. type: cindex -#: guix-git/doc/guix.texi:3767 +#: guix-git/doc/guix.texi:3785 #, no-wrap msgid "build farm" msgstr "granja de construcción" @@ -10467,65 +10553,65 @@ msgstr "granja de construcción" # FUZZY: overridden # TODO: cliente #. type: Plain text -#: guix-git/doc/guix.texi:3778 +#: guix-git/doc/guix.texi:3796 #, fuzzy #| msgid "The @code{@value{SUBSTITUTE-SERVER}} server is a front-end to an official build farm that builds packages from Guix continuously for some architectures, and makes them available as substitutes. This is the default source of substitutes; it can be overridden by passing the @option{--substitute-urls} option either to @command{guix-daemon} (@pxref{daemon-substitute-urls,, @code{guix-daemon --substitute-urls}}) or to client tools such as @command{guix package} (@pxref{client-substitute-urls,, client @option{--substitute-urls} option})." msgid "@code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} are both front-ends to official build farms that build packages from Guix continuously for some architectures, and make them available as substitutes. These are the default source of substitutes; which can be overridden by passing the @option{--substitute-urls} option either to @command{guix-daemon} (@pxref{daemon-substitute-urls,, @code{guix-daemon --substitute-urls}}) or to client tools such as @command{guix package} (@pxref{client-substitute-urls,, client @option{--substitute-urls} option})." msgstr "El servidor @code{@value{SUBSTITUTE-SERVER}} es una fachada a una granja de construcción oficial que construye paquetes de Guix continuamente para algunas arquitecturas, y los pone disponibles como sustituciones. Esta es la fuente predeterminada de sustituciones; puede ser forzada a cambiar pasando la opción @option{--substitute-urls} bien a @command{guix-daemon} (@pxref{daemon-substitute-urls,, @code{guix-daemon --substitute-urls}}) o bien a herramientas cliente como @command{guix package} (@pxref{client-substitute-urls,, client @option{--substitute-urls} option})." #. type: Plain text -#: guix-git/doc/guix.texi:3784 +#: guix-git/doc/guix.texi:3802 msgid "Substitute URLs can be either HTTP or HTTPS. HTTPS is recommended because communications are encrypted; conversely, using HTTP makes all communications visible to an eavesdropper, who could use the information gathered to determine, for instance, whether your system has unpatched security vulnerabilities." msgstr "Las URLs de sustituciones pueden ser tanto HTTP como HTTPS. Se recomienda HTTPS porque las comunicaciones están cifradas; de modo contrario, usar HTTP hace visibles todas las comunicaciones para alguien que las intercepte, quien puede usar la información obtenida para determinar, por ejemplo, si su sistema tiene vulnerabilidades de seguridad sin parchear." #. type: Plain text -#: guix-git/doc/guix.texi:3793 +#: guix-git/doc/guix.texi:3811 #, fuzzy #| msgid "Substitutes from the official build farm are enabled by default when using Guix System (@pxref{GNU Distribution}). However, they are disabled by default when using Guix on a foreign distribution, unless you have explicitly enabled them via one of the recommended installation steps (@pxref{Installation}). The following paragraphs describe how to enable or disable substitutes for the official build farm; the same procedure can also be used to enable substitutes for any other substitute server." msgid "Substitutes from the official build farms are enabled by default when using Guix System (@pxref{GNU Distribution}). However, they are disabled by default when using Guix on a foreign distribution, unless you have explicitly enabled them via one of the recommended installation steps (@pxref{Installation}). The following paragraphs describe how to enable or disable substitutes for the official build farm; the same procedure can also be used to enable substitutes for any other substitute server." msgstr "El uso de sustituciones de la granja de construcción oficial se realiza de manera predeterminada cuando se usa el sistema Guix (@pxref{GNU Distribution}). No obstante, no se realiza de manera predeterminada cuando se usa Guix en una distribución anfitriona, a menos que las active explícitamente via uno de los pasos recomendados de instalación (@pxref{Installation}). Los siguientes párrafos describen como activar o desactivar las sustituciones para la granja oficial de construcción; el mismo procedimiento puede usarse para activar las sustituciones desde cualquier otro servidor que las proporcione." #. type: cindex -#: guix-git/doc/guix.texi:3797 +#: guix-git/doc/guix.texi:3815 #, no-wrap msgid "security" msgstr "seguridad" #. type: cindex -#: guix-git/doc/guix.texi:3799 +#: guix-git/doc/guix.texi:3817 #, no-wrap msgid "access control list (ACL), for substitutes" msgstr "listas de control de acceso (ACL), para sustituciones" #. type: cindex -#: guix-git/doc/guix.texi:3800 +#: guix-git/doc/guix.texi:3818 #, no-wrap msgid "ACL (access control list), for substitutes" msgstr "ACL (listas de control de acceso), para sustituciones" #. type: Plain text -#: guix-git/doc/guix.texi:3806 +#: guix-git/doc/guix.texi:3824 #, fuzzy #| msgid "To allow Guix to download substitutes from @code{@value{SUBSTITUTE-SERVER}} or a mirror thereof, you must add its public key to the access control list (ACL) of archive imports, using the @command{guix archive} command (@pxref{Invoking guix archive}). Doing so implies that you trust @code{@value{SUBSTITUTE-SERVER}} to not be compromised and to serve genuine substitutes." msgid "To allow Guix to download substitutes from @code{@value{SUBSTITUTE-SERVER-1}}, @code{@value{SUBSTITUTE-SERVER-2}} or a mirror, you must add the relevant public key to the access control list (ACL) of archive imports, using the @command{guix archive} command (@pxref{Invoking guix archive}). Doing so implies that you trust the substitute server to not be compromised and to serve genuine substitutes." msgstr "Para permitir a Guix descargar sustituciones de @code{@value{SUBSTITUTE-SERVER}} o un espejo suyo, debe añadir su clave pública a la lista de control de acceso (ACL) de las importaciones de archivos, mediante el uso de la orden @command{guix archive} (@pxref{Invoking guix archive}). Hacerlo implica que confía que @code{@value{SUBSTITUTE-SERVER}} no ha sido comprometido y proporciona sustituciones genuinas." #. type: quotation -#: guix-git/doc/guix.texi:3811 +#: guix-git/doc/guix.texi:3829 #, fuzzy #| msgid "If you are using Guix System, you can skip this section: Guix System authorizes substitutes from @code{@value{SUBSTITUTE-SERVER}} by default." msgid "If you are using Guix System, you can skip this section: Guix System authorizes substitutes from @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} by default." msgstr "Si usa el sistema Guix puede saltarse esta sección: el sistema Guix autoriza las sustituciones desde @code{@value{SUBSTITUTE-SERVER}} de manera predeterminada." #. type: Plain text -#: guix-git/doc/guix.texi:3819 +#: guix-git/doc/guix.texi:3837 #, fuzzy #| msgid "The public key for @code{@value{SUBSTITUTE-SERVER}} is installed along with Guix, in @code{@var{prefix}/share/guix/@value{SUBSTITUTE-SERVER}.pub}, where @var{prefix} is the installation prefix of Guix. If you installed Guix from source, make sure you checked the GPG signature of @file{guix-@value{VERSION}.tar.gz}, which contains this public key file. Then, you can run something like this:" msgid "The public keys for each of the project maintained substitute servers are installed along with Guix, in @code{@var{prefix}/share/guix/}, where @var{prefix} is the installation prefix of Guix. If you installed Guix from source, make sure you checked the GPG signature of @file{guix-@value{VERSION}.tar.gz}, which contains this public key file. Then, you can run something like this:" msgstr "La clave pública para @code{@value{SUBSTITUTE-SERVER}} se instala junto a Guix, en @code{@var{prefijo}/share/guix/@value{SUBSTITUTE-SERVER}.pub}, donde @var{prefijo} es el prefij de instalación de Guix. Si ha instalado Guix desde las fuentes, debe asegurarse de que comprobó la firma GPG de @file{guix-@value{VERSION}.tar.gz}, el cual contiene el archivo de clave pública. Una vez hecho, puede ejecutar algo así:" #. type: example -#: guix-git/doc/guix.texi:3823 +#: guix-git/doc/guix.texi:3841 #, fuzzy, no-wrap #| msgid "# guix archive --authorize < @var{prefix}/share/guix/@value{SUBSTITUTE-SERVER}.pub\n" msgid "" @@ -10534,12 +10620,12 @@ msgid "" msgstr "# guix archive --authorize < @var{prefijo}/share/guix/@value{SUBSTITUTE-SERVER}.pub\n" #. type: Plain text -#: guix-git/doc/guix.texi:3827 +#: guix-git/doc/guix.texi:3845 msgid "Once this is in place, the output of a command like @code{guix build} should change from something like:" msgstr "Una vez esté autorizada, la salida de una orden como @code{guix build} debería cambiar de algo como:" #. type: example -#: guix-git/doc/guix.texi:3836 +#: guix-git/doc/guix.texi:3854 #, no-wrap msgid "" "$ guix build emacs --dry-run\n" @@ -10559,12 +10645,12 @@ msgstr "" "@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:3840 +#: guix-git/doc/guix.texi:3858 msgid "to something like:" msgstr "a algo así:" #. type: example -#: guix-git/doc/guix.texi:3849 +#: guix-git/doc/guix.texi:3867 #, no-wrap msgid "" "$ guix build emacs --dry-run\n" @@ -10584,54 +10670,54 @@ msgstr "" "@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:3856 +#: guix-git/doc/guix.texi:3874 #, fuzzy #| msgid "The text changed from ``The following derivations would be built'' to ``112.3 MB would be downloaded''. This indicates that substitutes from @code{@value{SUBSTITUTE-SERVER}} are usable and will be downloaded, when possible, for future builds." msgid "The text changed from ``The following derivations would be built'' to ``112.3 MB would be downloaded''. This indicates that substitutes from the configured substitute servers are usable and will be downloaded, when possible, for future builds." msgstr "El texto ha cambiado de ``Se construirían las siguientes derivaciones'' a ``Se descargarían 112.3 MB''. Esto indica que las sustituciones de @code{@value{SUBSTITUTE-SERVER}} son usables y serán descargadas, cuando sea posible, en construcciones futuras." #. type: cindex -#: guix-git/doc/guix.texi:3857 +#: guix-git/doc/guix.texi:3875 #, no-wrap msgid "substitutes, how to disable" msgstr "sustituciones, cómo desactivar" #. type: Plain text -#: guix-git/doc/guix.texi:3863 +#: guix-git/doc/guix.texi:3881 msgid "The substitute mechanism can be disabled globally by running @code{guix-daemon} with @option{--no-substitutes} (@pxref{Invoking guix-daemon}). It can also be disabled temporarily by passing the @option{--no-substitutes} option to @command{guix package}, @command{guix build}, and other command-line tools." msgstr "El mecanismo de sustituciones puede ser desactivado globalmente ejecutando @code{guix-daemon} con @option{--no-subsitutes} (@pxref{Invoking guix-daemon}). También puede ser desactivado temporalmente pasando la opción @option{--no-substitutes} a @command{guix package}, @command{guix build} y otras herramientas de línea de órdenes." #. type: cindex -#: guix-git/doc/guix.texi:3867 +#: guix-git/doc/guix.texi:3885 #, no-wrap msgid "substitute servers, adding more" msgstr "servidores de sustituciones, añadir más" #. type: Plain text -#: guix-git/doc/guix.texi:3874 +#: guix-git/doc/guix.texi:3892 msgid "Guix can look up and fetch substitutes from several servers. This is useful when you are using packages from additional channels for which the official server does not have substitutes but another server provides them. Another situation where this is useful is when you would prefer to download from your organization's substitute server, resorting to the official server only as a fallback or dismissing it altogether." msgstr "Guix puede buscar y obtener sustituciones a partir de varios servidores. Esto es útil cuando se usan paquetes de canales adicionales para los que el servidor oficial no proporciona sustituciones pero otros servidores sí. Otra situación donde puede esta característica puede ser útil es en el caso de que prefiera realizar las descargas desde el servidor de sustituciones de su organización, accediendo al servidor oficial únicamente como mecanismo de salvaguarda o no usándolo en absoluto." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:3879 +#: guix-git/doc/guix.texi:3897 msgid "You can give Guix a list of substitute server URLs and it will check them in the specified order. You also need to explicitly authorize the public keys of substitute servers to instruct Guix to accept the substitutes they sign." msgstr "Puede proporcionarle a Guix una lista de URL de servidores de los que obtener sustituciones y las comprobará en el orden especificado. También es necesario que autorice explícitamente las claves públicas de los servidores de sustituciones para que Guix acepte las sustituciones firmadas por dichos claves." #. type: Plain text -#: guix-git/doc/guix.texi:3886 +#: guix-git/doc/guix.texi:3904 msgid "On Guix System, this is achieved by modifying the configuration of the @code{guix} service. Since the @code{guix} service is part of the default lists of services, @code{%base-services} and @code{%desktop-services}, you can use @code{modify-services} to change its configuration and add the URLs and substitute keys that you want (@pxref{Service Reference, @code{modify-services}})." msgstr "En el sistema Guix esto se consigue modificando la configuración del servicio @code{guix}. Puesto que el servicio @code{guix} es parte de las listas de servicios predeterminadas, @code{%base-services} y @code{%desktop-services}, puede usar @code{modify-services} para cambiar su configuración y añadir las URL y claves para sustituciones que desee (@pxref{Service Reference, @code{modify-services}})." #. type: Plain text -#: guix-git/doc/guix.texi:3892 +#: guix-git/doc/guix.texi:3910 #, fuzzy #| msgid "As an example, suppose you want to fetch substitutes from @code{guix.example.org} and to authorize the signing key of that server, in addition to the default @code{@value{SUBSTITUTE-SERVER}}. The resulting operating system configuration will look something like:" msgid "As an example, suppose you want to fetch substitutes from @code{guix.example.org} and to authorize the signing key of that server, in addition to the default @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}}. The resulting operating system configuration will look something like:" msgstr "Como ejemplo supongamos que desea obtener sustituciones desde @code{guix.example.org} y autorizar la clave de firma de dicho servidor, además del servidor @code{@value{SUBSTITUTE-SERVER}} predeterminado. La configuración de sistema operativo resultante sería más o menos así:" #. type: lisp -#: guix-git/doc/guix.texi:3909 +#: guix-git/doc/guix.texi:3927 #, no-wrap msgid "" "(operating-system\n" @@ -10667,12 +10753,12 @@ msgstr "" " %default-authorized-guix-keys)))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:3916 +#: guix-git/doc/guix.texi:3934 msgid "This assumes that the file @file{key.pub} contains the signing key of @code{guix.example.org}. With this change in place in your operating system configuration file (say @file{/etc/config.scm}), you can reconfigure and restart the @code{guix-daemon} service or reboot so the changes take effect:" msgstr "Esto asume que el archivo @file{clave.pub} contiene la clave de firma de @code{guix.example.org}. Cuando haya realizado este cambio en el archivo de configuración de su sistema operativo (digamos @file{/etc/config.scm}), puede reconfigurar y reiniciar el servicio @code{guix-daemon} o reiniciar la máquina para que los cambios se hagan efectivos:" #. type: example -#: guix-git/doc/guix.texi:3920 +#: guix-git/doc/guix.texi:3938 #, no-wrap msgid "" "$ sudo guix system reconfigure /etc/config.scm\n" @@ -10684,29 +10770,29 @@ msgstr "" # FUZZY # MAAV (TODO): foreign distro #. type: Plain text -#: guix-git/doc/guix.texi:3924 +#: guix-git/doc/guix.texi:3942 msgid "If you're running Guix on a ``foreign distro'', you would instead take the following steps to get substitutes from additional servers:" msgstr "Si por el contrario ejecuta Guix sobre una distribución distinta, deberá llevar a cabo los siguientes pasos para obtener sustituciones de servidores adicionales:" #. type: enumerate -#: guix-git/doc/guix.texi:3933 +#: guix-git/doc/guix.texi:3951 msgid "Edit the service configuration file for @code{guix-daemon}; when using systemd, this is normally @file{/etc/systemd/system/guix-daemon.service}. Add the @option{--substitute-urls} option on the @command{guix-daemon} command line and list the URLs of interest (@pxref{daemon-substitute-urls, @code{guix-daemon --substitute-urls}}):" msgstr "Edite el archivo de configuración para el servicio de @code{guix-daemon}; cuando use systemd normalmente se trata de @file{/etc/systemd/system/guix-daemon.service}. Añada la opción @option{--substitute-urls} en la línea de ordenes de @command{guix-daemon} y la lista de URL que desee (@pxref{daemon-substitute-urls, @code{guix-daemon --substitute-urls}}):" #. type: example -#: guix-git/doc/guix.texi:3936 +#: guix-git/doc/guix.texi:3954 #, fuzzy, no-wrap #| msgid "@dots{} --substitute-urls='https://guix.example.org https://@value{SUBSTITUTE-SERVER}'\n" msgid "@dots{} --substitute-urls='https://guix.example.org @value{SUBSTITUTE-URLS}'\n" msgstr "@dots{} --substitute-urls='https://guix.example.org https://@value{SUBSTITUTE-SERVER}'\n" #. type: enumerate -#: guix-git/doc/guix.texi:3940 +#: guix-git/doc/guix.texi:3958 msgid "Restart the daemon. For systemd, it goes like this:" msgstr "Reinicie el daemon. Con systemd estos son los pasos:" #. type: example -#: guix-git/doc/guix.texi:3944 +#: guix-git/doc/guix.texi:3962 #, no-wrap msgid "" "systemctl daemon-reload\n" @@ -10716,24 +10802,24 @@ msgstr "" "systemctl restart guix-daemon.service\n" #. type: enumerate -#: guix-git/doc/guix.texi:3948 +#: guix-git/doc/guix.texi:3966 msgid "Authorize the key of the new server (@pxref{Invoking guix archive}):" msgstr "Autorice la clave del nuevo servidor (@pxref{Invoking guix archive}):" #. type: example -#: guix-git/doc/guix.texi:3951 +#: guix-git/doc/guix.texi:3969 #, no-wrap msgid "guix archive --authorize < key.pub\n" msgstr "guix archive --authorize < clave.pub\n" #. type: enumerate -#: guix-git/doc/guix.texi:3955 +#: guix-git/doc/guix.texi:3973 msgid "Again this assumes @file{key.pub} contains the public key that @code{guix.example.org} uses to sign substitutes." msgstr "De nuevo se asume que @file{clave.pub} contiene la clave pública usada por @code{guix.example.org} para firmar las sustituciones." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:3964 +#: guix-git/doc/guix.texi:3982 #, fuzzy #| msgid "Now you're all set! Substitutes will be preferably taken from @code{https://guix.example.org}, using @code{@value{SUBSTITUTE-SERVER}} as a fallback. Of course you can list as many substitute servers as you like, with the caveat that substitute lookup can be slowed down if too many servers need to be contacted." msgid "Now you're all set! Substitutes will be preferably taken from @code{https://guix.example.org}, using @code{@value{SUBSTITUTE-SERVER-1}} then @code{@value{SUBSTITUTE-SERVER-2}} as fallback options. Of course you can list as many substitute servers as you like, with the caveat that substitute lookup can be slowed down if too many servers need to be contacted." @@ -10741,134 +10827,134 @@ msgstr "¡Ya lo tiene configurado! Las sustituciones se obtendrán a ser posible # FUZZY FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:3968 +#: guix-git/doc/guix.texi:3986 msgid "Note that there are also situations where one may want to add the URL of a substitute server @emph{without} authorizing its key. @xref{Substitute Authentication}, to understand this fine point." msgstr "Tenga en cuenta que existen situaciones en las que se puede desear añadir la URL de un servidor de sustitucines @emph{sin} autorizar su clave. @xref{Substitute Authentication} para entender este caso específico." #. type: cindex -#: guix-git/doc/guix.texi:3972 +#: guix-git/doc/guix.texi:3990 #, no-wrap msgid "digital signatures" msgstr "firmas digitales" #. type: Plain text -#: guix-git/doc/guix.texi:3976 +#: guix-git/doc/guix.texi:3994 msgid "Guix detects and raises an error when attempting to use a substitute that has been tampered with. Likewise, it ignores substitutes that are not signed, or that are not signed by one of the keys listed in the ACL." msgstr "Guix detecta y emite errores cuando se intenta usar una sustitución que ha sido adulterado. Del mismo modo, ignora las sustituciones que no están firmadas, o que no están firmadas por una de las firmas enumeradas en la ACL." #. type: Plain text -#: guix-git/doc/guix.texi:3982 +#: guix-git/doc/guix.texi:4000 msgid "There is one exception though: if an unauthorized server provides substitutes that are @emph{bit-for-bit identical} to those provided by an authorized server, then the unauthorized server becomes eligible for downloads. For example, assume we have chosen two substitute servers with this option:" msgstr "No obstante hay una excepción: si un servidor no autorizado proporciona sustituciones que son @emph{idénticas bit-a-bit} a aquellas proporcionadas por un servidor autorizado, entonces el servidor no autorizado puede ser usado para descargas. Por ejemplo, asumiendo que hemos seleccionado dos servidores de sustituciones con esta opción:" #. type: example -#: guix-git/doc/guix.texi:3985 +#: guix-git/doc/guix.texi:4003 #, no-wrap msgid "--substitute-urls=\"https://a.example.org https://b.example.org\"\n" msgstr "--substitute-urls=\"https://a.example.org https://b.example.org\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:3996 +#: guix-git/doc/guix.texi:4014 msgid "If the ACL contains only the key for @samp{b.example.org}, and if @samp{a.example.org} happens to serve the @emph{exact same} substitutes, then Guix will download substitutes from @samp{a.example.org} because it comes first in the list and can be considered a mirror of @samp{b.example.org}. In practice, independent build machines usually produce the same binaries, thanks to bit-reproducible builds (see below)." msgstr "Si la ACL contiene únicamente la clave para @samp{b.example.org}, y si @samp{a.example.org} resulta que proporciona @emph{exactamente las mismas} sustituciones, Guix descargará sustituciones de @samp{a.example.org} porque viene primero en la lista y puede ser considerado un espejo de @samp{b.example.org}. En la práctica, máquinas de construcción independientes producen habitualmente los mismos binarios, gracias a las construcciones reproducibles bit-a-bit (véase a continuación)." #. type: Plain text -#: guix-git/doc/guix.texi:4003 +#: guix-git/doc/guix.texi:4021 msgid "When using HTTPS, the server's X.509 certificate is @emph{not} validated (in other words, the server is not authenticated), contrary to what HTTPS clients such as Web browsers usually do. This is because Guix authenticates substitute information itself, as explained above, which is what we care about (whereas X.509 certificates are about authenticating bindings between domain names and public keys)." msgstr "Cuando se usa HTTPS, el certificado X.509 del servidor @emph{no} se valida (en otras palabras, el servidor no está verificado), lo contrario del comportamiento habitual de los navegadores Web. Esto es debido a que Guix verifica la información misma de las sustituciones, como se ha explicado anteriormente, lo cual nos concierne (mientras que los certificados X.509 tratan de verificar las conexiones entre nombres de dominio y claves públicas)." #. type: Plain text -#: guix-git/doc/guix.texi:4015 +#: guix-git/doc/guix.texi:4033 #, fuzzy msgid "Substitutes are downloaded over HTTP or HTTPS@. The @env{http_proxy} and @env{https_proxy} environment variables can be set in the environment of @command{guix-daemon} and are honored for downloads of substitutes. Note that the value of those environment variables in the environment where @command{guix build}, @command{guix package}, and other client commands are run has @emph{absolutely no effect}." msgstr "Las sustituciones se descargan por HTTP o HTTPS. Se puede asignar un valor a las variables @env{http_proxy} y @env{https_proxy} en el entorno de @command{guix-daemon}, el cual las usará para las descargas de sustituciones. Fíjese que el valor de dichas variables en el entorno en que @command{guix build}, @command{guix package} y otras aplicaciones cliente se ejecuten @emph{no tiene ningún efecto}." #. type: Plain text -#: guix-git/doc/guix.texi:4024 +#: guix-git/doc/guix.texi:4042 msgid "Even when a substitute for a derivation is available, sometimes the substitution attempt will fail. This can happen for a variety of reasons: the substitute server might be offline, the substitute may recently have been deleted, the connection might have been interrupted, etc." msgstr "Incluso cuando una sustitución de una derivación está disponible, a veces el intento de sustitución puede fallar. Esto puede suceder por varias razones: el servidor de sustituciones puede estar desconectado, la sustitución puede haber sido borrada, la conexión puede interrumpirse, etc." #. type: Plain text -#: guix-git/doc/guix.texi:4038 +#: guix-git/doc/guix.texi:4056 msgid "When substitutes are enabled and a substitute for a derivation is available, but the substitution attempt fails, Guix will attempt to build the derivation locally depending on whether or not @option{--fallback} was given (@pxref{fallback-option,, common build option @option{--fallback}}). Specifically, if @option{--fallback} was omitted, then no local build will be performed, and the derivation is considered to have failed. However, if @option{--fallback} was given, then Guix will attempt to build the derivation locally, and the success or failure of the derivation depends on the success or failure of the local build. Note that when substitutes are disabled or no substitute is available for the derivation in question, a local build will @emph{always} be performed, regardless of whether or not @option{--fallback} was given." msgstr "Cuando las sustituciones están activadas y una sustitución para una derivación está disponible, pero el intento de sustitución falla, Guix intentará construir la derivación localmente dependiendo si se proporcionó la opción @option{--fallback} (@pxref{fallback-option,, opción común de construcción @option{--fallback}}). Específicamente, si no se pasó @option{--fallback}, no se realizarán construcciones locales, y la derivación se considera se considera fallida. No obstante, si se pasó @option{--fallback}, Guix intentará construir la derivación localmente, y el éxito o fracaso de la derivación depende del éxito o fracaso de la construcción local. Fíjese que cuando las sustituciones están desactivadas o no hay sustituciones disponibles para la derivación en cuestión, la construcción local se realizará @emph{siempre}, independientemente de si se pasó la opción @option{--fallback}." #. type: Plain text -#: guix-git/doc/guix.texi:4043 +#: guix-git/doc/guix.texi:4061 msgid "To get an idea of how many substitutes are available right now, you can try running the @command{guix weather} command (@pxref{Invoking guix weather}). This command provides statistics on the substitutes provided by a server." msgstr "Para hacerse una idea de cuantas sustituciones hay disponibles en este momento, puede intentar ejecutar la orden @command{guix weather} (@pxref{Invoking guix weather}). Esta orden proporciona estadísticas de las sustituciones proporcionadas por un servidor." #. type: cindex -#: guix-git/doc/guix.texi:4047 +#: guix-git/doc/guix.texi:4065 #, no-wrap msgid "trust, of pre-built binaries" msgstr "confianza, de binarios pre-construidos" #. type: Plain text -#: guix-git/doc/guix.texi:4057 +#: guix-git/doc/guix.texi:4075 #, fuzzy #| msgid "Today, each individual's control over their own computing is at the mercy of institutions, corporations, and groups with enough power and determination to subvert the computing infrastructure and exploit its weaknesses. While using @code{@value{SUBSTITUTE-SERVER}} substitutes can be convenient, we encourage users to also build on their own, or even run their own build farm, such that @code{@value{SUBSTITUTE-SERVER}} is less of an interesting target. One way to help is by publishing the software you build using @command{guix publish} so that others have one more choice of server to download substitutes from (@pxref{Invoking guix publish})." msgid "Today, each individual's control over their own computing is at the mercy of institutions, corporations, and groups with enough power and determination to subvert the computing infrastructure and exploit its weaknesses. While using substitutes can be convenient, we encourage users to also build on their own, or even run their own build farm, such that the project run substitute servers are less of an interesting target. One way to help is by publishing the software you build using @command{guix publish} so that others have one more choice of server to download substitutes from (@pxref{Invoking guix publish})." msgstr "Hoy en día, el control individual sobre nuestra propia computación está a merced de instituciones, empresas y grupos con suficiente poder y determinación para subvertir la infraestructura de computación y explotar sus vulnerabilidades. Mientras que usar las sustituciones de @code{@value{SUBSTITUTE-SERVER}} puede ser conveniente, recomendamos a las usuarias también construir sus paquetes, o incluso mantener su propia granja de construcción, de modo que @code{@value{SUBSTITUTE-SERVER}} sea un objetivo menos interesante. Una manera de ayudar es publicando el software que construya usando @command{guix publish} de modo que otras tengan otro servidor más como opción para descargar sustituciones (@pxref{Invoking guix publish})." #. type: Plain text -#: guix-git/doc/guix.texi:4069 +#: guix-git/doc/guix.texi:4087 msgid "Guix has the foundations to maximize build reproducibility (@pxref{Features}). In most cases, independent builds of a given package or derivation should yield bit-identical results. Thus, through a diverse set of independent package builds, we can strengthen the integrity of our systems. The @command{guix challenge} command aims to help users assess substitute servers, and to assist developers in finding out about non-deterministic package builds (@pxref{Invoking guix challenge}). Similarly, the @option{--check} option of @command{guix build} allows users to check whether previously-installed substitutes are genuine by rebuilding them locally (@pxref{build-check, @command{guix build --check}})." msgstr "Guix tiene los cimientos para maximizar la reproducibilidad de las construcciones (@pxref{Features}). En la mayor parte de los casos, construcciones independientes de un paquete o derivación dada deben emitir resultados idénticos bit a bit. Por tanto, a través de un conjunto diverso de construcciones independientes de paquetes, podemos reforzar la integridad de nuestros sistemas. La orden @command{guix challenge} intenta ayudar a las usuarias en comprobar servidores de sustituciones, y asiste a las desarrolladoras encontrando construcciones no deterministas de paquetes (@pxref{Invoking guix challenge}). Similarmente, la opción @option{--check} de @command{guix build} permite a las usuarias si las sustituciones previamente instaladas son genuinas mediante su reconstrucción local (@pxref{build-check, @command{guix build --check}})." #. type: Plain text -#: guix-git/doc/guix.texi:4073 +#: guix-git/doc/guix.texi:4091 msgid "In the future, we want Guix to have support to publish and retrieve binaries to/from other users, in a peer-to-peer fashion. If you would like to discuss this project, join us on @email{guix-devel@@gnu.org}." msgstr "En el futuro, queremos que Guix permita la publicación y obtención de binarios hacia/desde otras usuarias, entre pares (P2P). En caso de interesarle hablar sobre este proyecto, unase a nosotras en @email{guix-devel@@gnu.org}." #. type: cindex -#: guix-git/doc/guix.texi:4077 +#: guix-git/doc/guix.texi:4095 #, no-wrap msgid "multiple-output packages" msgstr "paquetes de salida múltiple" #. type: cindex -#: guix-git/doc/guix.texi:4078 +#: guix-git/doc/guix.texi:4096 #, no-wrap msgid "package outputs" msgstr "salidas del paquete" #. type: cindex -#: guix-git/doc/guix.texi:4079 +#: guix-git/doc/guix.texi:4097 #, no-wrap msgid "outputs" msgstr "salidas" #. type: Plain text -#: guix-git/doc/guix.texi:4089 +#: guix-git/doc/guix.texi:4107 msgid "Often, packages defined in Guix have a single @dfn{output}---i.e., the source package leads to exactly one directory in the store. When running @command{guix install glibc}, one installs the default output of the GNU libc package; the default output is called @code{out}, but its name can be omitted as shown in this command. In this particular case, the default output of @code{glibc} contains all the C header files, shared libraries, static libraries, Info documentation, and other supporting files." msgstr "Habitualmente, los paquetes definidos en Guix tienen una @dfn{salida} única---es decir, el paquete de fuentes proporcionará exactamente un directorio en el almacén. Cuando se ejecuta @command{guix install glibc}, se instala la salida predeterminada del paquete GNU libc; la salida predeterminada se llama @code{out}, pero su nombre puede omitirse como se mostró en esta orden. En este caso particular, la salida predeterminada de @code{glibc} contiene todos archivos de cabecera C, bibliotecas dinámicas, bibliotecas estáticas, documentación Info y otros archivos auxiliares." #. type: Plain text -#: guix-git/doc/guix.texi:4097 +#: guix-git/doc/guix.texi:4115 msgid "Sometimes it is more appropriate to separate the various types of files produced from a single source package into separate outputs. For instance, the GLib C library (used by GTK+ and related packages) installs more than 20 MiB of reference documentation as HTML pages. To save space for users who do not need it, the documentation goes to a separate output, called @code{doc}. To install the main GLib output, which contains everything but the documentation, one would run:" msgstr "A veces es más apropiado separar varios tipos de archivos producidos por un paquete único de fuentes en salidas separadas. Por ejemplo, la biblioteca C GLib (usada por GTK+ y paquetes relacionados) instala más de 20 MiB de documentación de referencia como páginas HTML. Para ahorrar espacio para usuarias que no la necesiten, la documentación va a una salida separada, llamada @code{doc}. Para instalar la salida principal de GLib, que contiene todo menos la documentación, se debe ejecutar:" #. type: example -#: guix-git/doc/guix.texi:4100 +#: guix-git/doc/guix.texi:4118 #, no-wrap msgid "guix install glib\n" msgstr "guix install glib\n" #. type: item -#: guix-git/doc/guix.texi:4102 guix-git/doc/guix.texi:36368 -#: guix-git/doc/guix.texi:36425 +#: guix-git/doc/guix.texi:4120 guix-git/doc/guix.texi:36858 +#: guix-git/doc/guix.texi:36915 #, no-wrap msgid "documentation" msgstr "documentación" #. type: Plain text -#: guix-git/doc/guix.texi:4104 +#: guix-git/doc/guix.texi:4122 msgid "The command to install its documentation is:" msgstr "La orden que instala su documentación es:" #. type: example -#: guix-git/doc/guix.texi:4107 +#: guix-git/doc/guix.texi:4125 #, no-wrap msgid "guix install glib:doc\n" msgstr "guix install glib:doc\n" @@ -10877,35 +10963,35 @@ msgstr "guix install glib:doc\n" # # MAAV: No me gusta el término IGU en realidad... pero GUI no es mejor. #. type: Plain text -#: guix-git/doc/guix.texi:4118 +#: guix-git/doc/guix.texi:4136 msgid "Some packages install programs with different ``dependency footprints''. For instance, the WordNet package installs both command-line tools and graphical user interfaces (GUIs). The former depend solely on the C library, whereas the latter depend on Tcl/Tk and the underlying X libraries. In this case, we leave the command-line tools in the default output, whereas the GUIs are in a separate output. This allows users who do not need the GUIs to save space. The @command{guix size} command can help find out about such situations (@pxref{Invoking guix size}). @command{guix graph} can also be helpful (@pxref{Invoking guix graph})." msgstr "Algunos paquetes instalan programas con diferentes ``huellas de dependencias''. Por ejemplo, el paquete WordNet instala tanto herramientas de línea de órdenes como interfaces gráficas de usuaria (IGU). Las primeras dependen únicamente de la biblioteca de C, mientras que las últimas dependen en Tcl/Tk y las bibliotecas de X subyacentes. En este caso, dejamos las herramientas de línea de órdenes en la salida predeterminada, mientras que las IGU están en una salida separada. Esto permite a las usuarias que no necesitan una IGU ahorrar espacio. La orden @command{guix size} puede ayudar a exponer estas situaciones (@pxref{Invoking guix size}). @command{guix graph} también puede ser útil (@pxref{Invoking guix graph})." #. type: Plain text -#: guix-git/doc/guix.texi:4126 +#: guix-git/doc/guix.texi:4144 msgid "There are several such multiple-output packages in the GNU distribution. Other conventional output names include @code{lib} for libraries and possibly header files, @code{bin} for stand-alone programs, and @code{debug} for debugging information (@pxref{Installing Debugging Files}). The outputs of a packages are listed in the third column of the output of @command{guix package --list-available} (@pxref{Invoking guix package})." msgstr "Hay varios de estos paquetes con salida múltiple en la distribución GNU. Otros nombres de salida convencionales incluyen @code{lib} para bibliotecas y posiblemente archivos de cabecera, @code{bin} para programas independientes y @code{debug} para información de depuración (@pxref{Installing Debugging Files}). La salida de los paquetes se enumera en la tercera columna del resultado de @command{guix package --list-available} (@pxref{Invoking guix package})." #. type: section -#: guix-git/doc/guix.texi:4129 +#: guix-git/doc/guix.texi:4147 #, no-wrap msgid "Invoking @command{guix gc}" msgstr "Invocación de @command{guix gc}" #. type: cindex -#: guix-git/doc/guix.texi:4131 +#: guix-git/doc/guix.texi:4149 #, no-wrap msgid "garbage collector" msgstr "recolector de basura" #. type: cindex -#: guix-git/doc/guix.texi:4132 +#: guix-git/doc/guix.texi:4150 #, no-wrap msgid "disk space" msgstr "espacio en disco" #. type: Plain text -#: guix-git/doc/guix.texi:4138 +#: guix-git/doc/guix.texi:4156 msgid "Packages that are installed, but not used, may be @dfn{garbage-collected}. The @command{guix gc} command allows users to explicitly run the garbage collector to reclaim space from the @file{/gnu/store} directory. It is the @emph{only} way to remove files from @file{/gnu/store}---removing files or directories manually may break it beyond repair!" msgstr "Los paquetes instalados, pero no usados, pueden ser @dfn{recolectados}. La orden @command{guix gc} permite a las usuarias ejecutar explícitamente el recolector de basura para reclamar espacio del directorio @file{/gnu/store}---¡borrar archivos o directorios manualmente puede dañar el almacén sin reparación posible!" @@ -10914,469 +11000,469 @@ msgstr "Los paquetes instalados, pero no usados, pueden ser @dfn{recolectados}. # MAAV: GC es más conocido, RdB no lo es en absoluto, pero siempre hay # tiempo para crear tendencia... #. type: Plain text -#: guix-git/doc/guix.texi:4149 +#: guix-git/doc/guix.texi:4167 msgid "The garbage collector has a set of known @dfn{roots}: any file under @file{/gnu/store} reachable from a root is considered @dfn{live} and cannot be deleted; any other file is considered @dfn{dead} and may be deleted. The set of garbage collector roots (``GC roots'' for short) includes default user profiles; by default, the symlinks under @file{/var/guix/gcroots} represent these GC roots. New GC roots can be added with @command{guix build --root}, for example (@pxref{Invoking guix build}). The @command{guix gc --list-roots} command lists them." msgstr "El recolector de basura tiene un conjunto de @dfn{raíces} conocidas: cualquier archivo en @file{/gnu/store} alcanzable desde una raíz se considera @dfn{vivo} y no puede ser borrado; cualquier otro archivo se considera @dfn{muerto} y puede ser borrado. El conjunto de raíces del recolector de basura (``raíces del GC'' para abreviar) incluye los perfiles predeterminados de las usuarias; por defecto los enlaces bajo @file{/var/guix/gcroots} representan dichas raíces. Por ejemplo, nuevas raíces del GC pueden añadirse con @command{guix build --root} (@pxref{Invoking guix build}). La orden @command{guix gc --list-roots} las enumera." #. type: Plain text -#: guix-git/doc/guix.texi:4155 +#: guix-git/doc/guix.texi:4173 msgid "Prior to running @code{guix gc --collect-garbage} to make space, it is often useful to remove old generations from user profiles; that way, old package builds referenced by those generations can be reclaimed. This is achieved by running @code{guix package --delete-generations} (@pxref{Invoking guix package})." msgstr "Antes de ejecutar @code{guix gc --collect-garbage} para liberar espacio, habitualmente es útil borrar generaciones antiguas de los perfiles de usuaria; de ese modo, las construcciones antiguas de paquetes a las que dichas generaciones hacen referencia puedan ser reclamadas. Esto se consigue ejecutando @code{guix package --delete-generations} (@pxref{Invoking guix package})." #. type: Plain text -#: guix-git/doc/guix.texi:4159 +#: guix-git/doc/guix.texi:4177 msgid "Our recommendation is to run a garbage collection periodically, or when you are short on disk space. For instance, to guarantee that at least 5@tie{}GB are available on your disk, simply run:" msgstr "Nuestra recomendación es ejecutar una recolección de basura periódicamente, o cuando tenga poco espacio en el disco. Por ejemplo, para garantizar que al menos 5@tie{}GB están disponibles en su disco, simplemente ejecute:" #. type: example -#: guix-git/doc/guix.texi:4162 +#: guix-git/doc/guix.texi:4180 #, no-wrap msgid "guix gc -F 5G\n" msgstr "guix gc -F 5G\n" #. type: Plain text -#: guix-git/doc/guix.texi:4171 +#: guix-git/doc/guix.texi:4189 msgid "It is perfectly safe to run as a non-interactive periodic job (@pxref{Scheduled Job Execution}, for how to set up such a job). Running @command{guix gc} with no arguments will collect as much garbage as it can, but that is often inconvenient: you may find yourself having to rebuild or re-download software that is ``dead'' from the GC viewpoint but that is necessary to build other pieces of software---e.g., the compiler tool chain." msgstr "Es completamente seguro ejecutarla como un trabajo periódico no-interactivo (@pxref{Scheduled Job Execution}, para la configuración de un trabajo de ese tipo). La ejecución de @command{guix gc} sin ningún parámetro recolectará tanta basura como se pueda, pero eso es no es normalmente conveniente: puede encontrarse teniendo que reconstruir o volviendo a bajar software que está ``muerto'' desde el punto de vista del recolector pero que es necesario para construir otras piezas de software---por ejemplo, la cadena de herramientas de compilación." #. type: Plain text -#: guix-git/doc/guix.texi:4177 +#: guix-git/doc/guix.texi:4195 msgid "The @command{guix gc} command has three modes of operation: it can be used to garbage-collect any dead files (the default), to delete specific files (the @option{--delete} option), to print garbage-collector information, or for more advanced queries. The garbage collection options are as follows:" msgstr "La orden @command{guix gc} tiene tres modos de operación: puede ser usada para recolectar archivos muertos (predeterminado), para borrar archivos específicos (la opción @option{--delete}), para mostrar información sobre la recolección de basura o para consultas más avanzadas. Las opciones de recolección de basura son las siguientes:" #. type: item -#: guix-git/doc/guix.texi:4179 +#: guix-git/doc/guix.texi:4197 #, no-wrap msgid "--collect-garbage[=@var{min}]" msgstr "--collect-garbage[=@var{min}]" #. type: itemx -#: guix-git/doc/guix.texi:4180 +#: guix-git/doc/guix.texi:4198 #, no-wrap msgid "-C [@var{min}]" msgstr "-C [@var{min}]" #. type: table -#: guix-git/doc/guix.texi:4184 +#: guix-git/doc/guix.texi:4202 msgid "Collect garbage---i.e., unreachable @file{/gnu/store} files and sub-directories. This is the default operation when no option is specified." msgstr "Recolecta basura---es decir, archivos no alcanzables de @file{/gnu/store} y subdirectorios. Esta operación es la predeterminada cuando no se especifican opciones." #. type: table -#: guix-git/doc/guix.texi:4189 +#: guix-git/doc/guix.texi:4207 msgid "When @var{min} is given, stop once @var{min} bytes have been collected. @var{min} may be a number of bytes, or it may include a unit as a suffix, such as @code{MiB} for mebibytes and @code{GB} for gigabytes (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." msgstr "Cuando se proporciona @var{min}, para una vez que @var{min} bytes han sido recolectados. @var{min} puede ser un número de bytes, o puede incluir una unidad como sufijo, como @code{MiB} para mebibytes y @code{GB} para gigabytes (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." #. type: table -#: guix-git/doc/guix.texi:4191 +#: guix-git/doc/guix.texi:4209 msgid "When @var{min} is omitted, collect all the garbage." msgstr "Cuando se omite @var{min}, recolecta toda la basura." #. type: item -#: guix-git/doc/guix.texi:4192 +#: guix-git/doc/guix.texi:4210 #, no-wrap msgid "--free-space=@var{free}" msgstr "--free-space=@var{libre}" #. type: itemx -#: guix-git/doc/guix.texi:4193 +#: guix-git/doc/guix.texi:4211 #, no-wrap msgid "-F @var{free}" msgstr "-F @var{libre}" #. type: table -#: guix-git/doc/guix.texi:4197 +#: guix-git/doc/guix.texi:4215 msgid "Collect garbage until @var{free} space is available under @file{/gnu/store}, if possible; @var{free} denotes storage space, such as @code{500MiB}, as described above." msgstr "Recolecta basura hasta que haya espacio @var{libre} bajo @file{/gnu/store}, si es posible: @var{libre} denota espacio de almacenamiento, por ejemplo @code{500MiB}, como se ha descrito previamente." #. type: table -#: guix-git/doc/guix.texi:4200 +#: guix-git/doc/guix.texi:4218 msgid "When @var{free} or more is already available in @file{/gnu/store}, do nothing and exit immediately." msgstr "Cuando @var{libre} o más está ya disponible en @file{/gnu/store}, no hace nada y sale inmediatamente." #. type: item -#: guix-git/doc/guix.texi:4201 +#: guix-git/doc/guix.texi:4219 #, no-wrap msgid "--delete-generations[=@var{duration}]" msgstr "--delete-generations[=@var{duración}]" #. type: itemx -#: guix-git/doc/guix.texi:4202 +#: guix-git/doc/guix.texi:4220 #, no-wrap msgid "-d [@var{duration}]" msgstr "-d [@var{duración}]" #. type: table -#: guix-git/doc/guix.texi:4206 +#: guix-git/doc/guix.texi:4224 msgid "Before starting the garbage collection process, delete all the generations older than @var{duration}, for all the user profiles; when run as root, this applies to all the profiles @emph{of all the users}." msgstr "Antes de comenzar el proceso de recolección de basura, borra todas las generaciones anteriores a @var{duración}, para todos los perfiles de la usuaria; cuando se ejecuta como root esto aplica a los perfiles de @emph{todas las usuarias}." #. type: table -#: guix-git/doc/guix.texi:4210 +#: guix-git/doc/guix.texi:4228 msgid "For example, this command deletes all the generations of all your profiles that are older than 2 months (except generations that are current), and then proceeds to free space until at least 10 GiB are available:" msgstr "Por ejemplo, esta orden borra todas las generaciones de todos sus perfiles que tengan más de 2 meses de antigüedad (excepto generaciones que sean las actuales), y una vez hecho procede a liberar espacio hasta que al menos 10 GiB estén disponibles:" #. type: example -#: guix-git/doc/guix.texi:4213 +#: guix-git/doc/guix.texi:4231 #, no-wrap msgid "guix gc -d 2m -F 10G\n" msgstr "guix gc -d 2m -F 10G\n" #. type: item -#: guix-git/doc/guix.texi:4215 +#: guix-git/doc/guix.texi:4233 #, no-wrap msgid "--delete" msgstr "--delete" #. type: itemx -#: guix-git/doc/guix.texi:4216 guix-git/doc/guix.texi:5740 +#: guix-git/doc/guix.texi:4234 guix-git/doc/guix.texi:5758 #, no-wrap msgid "-D" msgstr "-D" #. type: table -#: guix-git/doc/guix.texi:4220 +#: guix-git/doc/guix.texi:4238 msgid "Attempt to delete all the store files and directories specified as arguments. This fails if some of the files are not in the store, or if they are still live." msgstr "Intenta borrar todos los archivos del almacén y directorios especificados como parámetros. Esto falla si alguno de los archivos no están en el almacén, o todavía están vivos." #. type: item -#: guix-git/doc/guix.texi:4221 +#: guix-git/doc/guix.texi:4239 #, no-wrap msgid "--list-failures" msgstr "--list-failures" # FUZZY #. type: table -#: guix-git/doc/guix.texi:4223 +#: guix-git/doc/guix.texi:4241 msgid "List store items corresponding to cached build failures." msgstr "Enumera los elementos del almacén correspondientes a construcciones fallidas existentes en la caché." #. type: table -#: guix-git/doc/guix.texi:4227 +#: guix-git/doc/guix.texi:4245 msgid "This prints nothing unless the daemon was started with @option{--cache-failures} (@pxref{Invoking guix-daemon, @option{--cache-failures}})." msgstr "Esto no muestra nada a menos que el daemon se haya ejecutado pasando @option{--cache-failures} (@pxref{Invoking guix-daemon, @option{--cache-failures}})." #. type: item -#: guix-git/doc/guix.texi:4228 +#: guix-git/doc/guix.texi:4246 #, no-wrap msgid "--list-roots" msgstr "--list-roots" # FUZZY #. type: table -#: guix-git/doc/guix.texi:4231 +#: guix-git/doc/guix.texi:4249 msgid "List the GC roots owned by the user; when run as root, list @emph{all} the GC roots." msgstr "Enumera las raíces del recolector de basura poseídas por la usuaria; cuando se ejecuta como root, enumera @emph{todas} las raíces del recolector de basura." #. type: item -#: guix-git/doc/guix.texi:4232 +#: guix-git/doc/guix.texi:4250 #, no-wrap msgid "--list-busy" msgstr "--list-busy" #. type: table -#: guix-git/doc/guix.texi:4235 +#: guix-git/doc/guix.texi:4253 msgid "List store items in use by currently running processes. These store items are effectively considered GC roots: they cannot be deleted." msgstr "Enumera los elementos del almacén que actualmente están siendo usados por procesos en ejecución. Estos elementos del almacén se consideran de manera efectiva raíces del recolector de basura: no pueden borrarse." #. type: item -#: guix-git/doc/guix.texi:4236 +#: guix-git/doc/guix.texi:4254 #, no-wrap msgid "--clear-failures" msgstr "--clear-failures" #. type: table -#: guix-git/doc/guix.texi:4238 +#: guix-git/doc/guix.texi:4256 msgid "Remove the specified store items from the failed-build cache." msgstr "Borra los elementos especificados del almacén de la caché de construcciones fallidas." #. type: table -#: guix-git/doc/guix.texi:4241 +#: guix-git/doc/guix.texi:4259 msgid "Again, this option only makes sense when the daemon is started with @option{--cache-failures}. Otherwise, it does nothing." msgstr "De nuevo, esta opción únicamente tiene sentido cuando el daemon se inicia con @option{--cache-failures}. De otro modo, no hace nada." #. type: item -#: guix-git/doc/guix.texi:4242 +#: guix-git/doc/guix.texi:4260 #, no-wrap msgid "--list-dead" msgstr "--list-dead" #. type: table -#: guix-git/doc/guix.texi:4245 +#: guix-git/doc/guix.texi:4263 msgid "Show the list of dead files and directories still present in the store---i.e., files and directories no longer reachable from any root." msgstr "Muestra la lista de archivos y directorios muertos todavía presentes en el almacén---es decir, archivos y directorios que ya no se pueden alcanzar desde ninguna raíz." #. type: item -#: guix-git/doc/guix.texi:4246 +#: guix-git/doc/guix.texi:4264 #, no-wrap msgid "--list-live" msgstr "--list-live" #. type: table -#: guix-git/doc/guix.texi:4248 +#: guix-git/doc/guix.texi:4266 msgid "Show the list of live store files and directories." msgstr "Muestra la lista de archivos y directorios del almacén vivos." #. type: Plain text -#: guix-git/doc/guix.texi:4252 +#: guix-git/doc/guix.texi:4270 msgid "In addition, the references among existing store files can be queried:" msgstr "Además, las referencias entre los archivos del almacén pueden ser consultadas:" #. type: item -#: guix-git/doc/guix.texi:4255 +#: guix-git/doc/guix.texi:4273 #, no-wrap msgid "--references" msgstr "--references" #. type: itemx -#: guix-git/doc/guix.texi:4256 +#: guix-git/doc/guix.texi:4274 #, no-wrap msgid "--referrers" msgstr "--referrers" #. type: cindex -#: guix-git/doc/guix.texi:4257 guix-git/doc/guix.texi:13205 +#: guix-git/doc/guix.texi:4275 guix-git/doc/guix.texi:13562 #, no-wrap msgid "package dependencies" msgstr "dependencias de un paquete" #. type: table -#: guix-git/doc/guix.texi:4260 +#: guix-git/doc/guix.texi:4278 msgid "List the references (respectively, the referrers) of store files given as arguments." msgstr "Enumera las referencias (o, respectivamente, los referentes) de los archivos del almacén pasados como parámetros." #. type: item -#: guix-git/doc/guix.texi:4261 +#: guix-git/doc/guix.texi:4279 #, no-wrap msgid "--requisites" msgstr "--requisites" #. type: itemx -#: guix-git/doc/guix.texi:4262 guix-git/doc/guix.texi:6501 +#: guix-git/doc/guix.texi:4280 guix-git/doc/guix.texi:6544 #, no-wrap msgid "-R" msgstr "-R" #. type: item -#: guix-git/doc/guix.texi:4263 guix-git/doc/guix.texi:13061 -#: guix-git/doc/guix.texi:13089 guix-git/doc/guix.texi:13170 +#: guix-git/doc/guix.texi:4281 guix-git/doc/guix.texi:13418 +#: guix-git/doc/guix.texi:13446 guix-git/doc/guix.texi:13527 #, no-wrap msgid "closure" msgstr "closure" #. type: table -#: guix-git/doc/guix.texi:4268 +#: guix-git/doc/guix.texi:4286 msgid "List the requisites of the store files passed as arguments. Requisites include the store files themselves, their references, and the references of these, recursively. In other words, the returned list is the @dfn{transitive closure} of the store files." msgstr "Enumera los requisitos los archivos del almacén pasados como parámetros. Los requisitos incluyen los mismos archivos del almacén, sus referencias, las referencias de estas, recursivamente. En otras palabras, la lista devuelta es la @dfn{clausura transitiva} de los archivos del almacén." #. type: table -#: guix-git/doc/guix.texi:4272 +#: guix-git/doc/guix.texi:4290 msgid "@xref{Invoking guix size}, for a tool to profile the size of the closure of an element. @xref{Invoking guix graph}, for a tool to visualize the graph of references." msgstr "@xref{Invoking guix size}, para una herramienta que perfila el tamaño de la clausura de un elemento. @xref{Invoking guix graph}, para una herramienta de visualización del grafo de referencias." #. type: item -#: guix-git/doc/guix.texi:4273 +#: guix-git/doc/guix.texi:4291 #, no-wrap msgid "--derivers" msgstr "--derivers" #. type: item -#: guix-git/doc/guix.texi:4274 guix-git/doc/guix.texi:6815 -#: guix-git/doc/guix.texi:12917 guix-git/doc/guix.texi:13314 +#: guix-git/doc/guix.texi:4292 guix-git/doc/guix.texi:6858 +#: guix-git/doc/guix.texi:13274 guix-git/doc/guix.texi:13671 #, no-wrap msgid "derivation" msgstr "derivation" #. type: table -#: guix-git/doc/guix.texi:4277 +#: guix-git/doc/guix.texi:4295 msgid "Return the derivation(s) leading to the given store items (@pxref{Derivations})." msgstr "Devuelve la/s derivación/es que conducen a los elementos del almacén dados (@pxref{Derivations})." #. type: table -#: guix-git/doc/guix.texi:4279 +#: guix-git/doc/guix.texi:4297 msgid "For example, this command:" msgstr "Por ejemplo, esta orden:" #. type: example -#: guix-git/doc/guix.texi:4282 +#: guix-git/doc/guix.texi:4300 #, fuzzy, no-wrap msgid "guix gc --derivers $(guix package -I ^emacs$ | cut -f4)\n" msgstr "guix gc --derivers `guix package -I ^emacs$ | cut -f4`\n" #. type: table -#: guix-git/doc/guix.texi:4287 +#: guix-git/doc/guix.texi:4305 msgid "returns the @file{.drv} file(s) leading to the @code{emacs} package installed in your profile." msgstr "devuelve el/los archivo/s @file{.drv} que conducen al paquete @code{emacs} instalado en su perfil." #. type: table -#: guix-git/doc/guix.texi:4291 +#: guix-git/doc/guix.texi:4309 msgid "Note that there may be zero matching @file{.drv} files, for instance because these files have been garbage-collected. There can also be more than one matching @file{.drv} due to fixed-output derivations." msgstr "Fíjese que puede haber cero archivos @file{.drv} encontrados, por ejemplo porque estos archivos han sido recolectados. Puede haber más de un archivo @file{.drv} encontrado debido a derivaciones de salida fija." #. type: Plain text -#: guix-git/doc/guix.texi:4295 +#: guix-git/doc/guix.texi:4313 msgid "Lastly, the following options allow you to check the integrity of the store and to control disk usage." msgstr "Por último, las siguientes opciones le permiten comprobar la integridad del almacén y controlar el uso del disco." #. type: item -#: guix-git/doc/guix.texi:4298 +#: guix-git/doc/guix.texi:4316 #, no-wrap msgid "--verify[=@var{options}]" msgstr "--verify[=@var{opciones}]" #. type: cindex -#: guix-git/doc/guix.texi:4299 +#: guix-git/doc/guix.texi:4317 #, no-wrap msgid "integrity, of the store" msgstr "integridad, del almacén" #. type: cindex -#: guix-git/doc/guix.texi:4300 +#: guix-git/doc/guix.texi:4318 #, no-wrap msgid "integrity checking" msgstr "comprobación de integridad" #. type: table -#: guix-git/doc/guix.texi:4302 +#: guix-git/doc/guix.texi:4320 msgid "Verify the integrity of the store." msgstr "Verifica la integridad del almacén." #. type: table -#: guix-git/doc/guix.texi:4305 +#: guix-git/doc/guix.texi:4323 msgid "By default, make sure that all the store items marked as valid in the database of the daemon actually exist in @file{/gnu/store}." msgstr "Por defecto, comprueba que todos los elementos del almacén marcados como válidos en la base de datos del daemon realmente existen en @file{/gnu/store}." #. type: table -#: guix-git/doc/guix.texi:4308 +#: guix-git/doc/guix.texi:4326 msgid "When provided, @var{options} must be a comma-separated list containing one or more of @code{contents} and @code{repair}." msgstr "Cuando se proporcionan, @var{opciones} debe ser una lista separada por comas que contenga uno o más valores @code{contents} and @code{repair}." #. type: table -#: guix-git/doc/guix.texi:4314 +#: guix-git/doc/guix.texi:4332 msgid "When passing @option{--verify=contents}, the daemon computes the content hash of each store item and compares it against its hash in the database. Hash mismatches are reported as data corruptions. Because it traverses @emph{all the files in the store}, this command can take a long time, especially on systems with a slow disk drive." msgstr "Cuando se usa @option{--verify=contents}, el daemon calcula el hash del contenido de cada elemento del almacén y lo compara contra el hash de su base de datos. Las incongruencias se muestran como corrupciones de datos. Debido a que recorre @emph{todos los archivos del almacén}, esta orden puede tomar mucho tiempo, especialmente en sistemas con una unidad de disco lenta." #. type: cindex -#: guix-git/doc/guix.texi:4315 +#: guix-git/doc/guix.texi:4333 #, no-wrap msgid "repairing the store" msgstr "reparar el almacén" #. type: cindex -#: guix-git/doc/guix.texi:4316 guix-git/doc/guix.texi:11564 +#: guix-git/doc/guix.texi:4334 guix-git/doc/guix.texi:11878 #, no-wrap msgid "corruption, recovering from" msgstr "corrupción, recuperarse de" #. type: table -#: guix-git/doc/guix.texi:4324 +#: guix-git/doc/guix.texi:4342 msgid "Using @option{--verify=repair} or @option{--verify=contents,repair} causes the daemon to try to repair corrupt store items by fetching substitutes for them (@pxref{Substitutes}). Because repairing is not atomic, and thus potentially dangerous, it is available only to the system administrator. A lightweight alternative, when you know exactly which items in the store are corrupt, is @command{guix build --repair} (@pxref{Invoking guix build})." msgstr "El uso de @option{--verify=repair} o @option{--verify=contents,repair} hace que el daemon intente reparar elementos corruptos del almacén obteniendo sustituciones para dichos elementos (@pxref{Substitutes}). Debido a que la reparación no es atómica, y por tanto potencialmente peligrosa, está disponible únicamente a la administradora del sistema. Una alternativa ligera, cuando sabe exactamente qué elementos del almacén están corruptos, es @command{guix build --repair} (@pxref{Invoking guix build})." #. type: item -#: guix-git/doc/guix.texi:4325 +#: guix-git/doc/guix.texi:4343 #, no-wrap msgid "--optimize" msgstr "--optimize" #. type: table -#: guix-git/doc/guix.texi:4329 +#: guix-git/doc/guix.texi:4347 msgid "Optimize the store by hard-linking identical files---this is @dfn{deduplication}." msgstr "Optimiza el almacén sustituyendo archivos idénticos por enlaces duros---esto es la @dfn{deduplicación}." #. type: table -#: guix-git/doc/guix.texi:4335 +#: guix-git/doc/guix.texi:4353 msgid "The daemon performs deduplication after each successful build or archive import, unless it was started with @option{--disable-deduplication} (@pxref{Invoking guix-daemon, @option{--disable-deduplication}}). Thus, this option is primarily useful when the daemon was running with @option{--disable-deduplication}." msgstr "El daemon realiza la deduplicación después de cada construcción satisfactoria o importación de archivos, a menos que se haya lanzado con la opción @option{--disable-deduplication} (@pxref{Invoking guix-daemon, @option{--disable-deduplication}}). Por tanto, esta opción es útil principalmente cuando el daemon se estaba ejecutando con @option{--disable-deduplication}." #. type: section -#: guix-git/doc/guix.texi:4339 +#: guix-git/doc/guix.texi:4357 #, no-wrap msgid "Invoking @command{guix pull}" msgstr "Invocación de @command{guix pull}" #. type: cindex -#: guix-git/doc/guix.texi:4341 +#: guix-git/doc/guix.texi:4359 #, no-wrap msgid "upgrading Guix" msgstr "actualizar Guix" #. type: cindex -#: guix-git/doc/guix.texi:4342 +#: guix-git/doc/guix.texi:4360 #, no-wrap msgid "updating Guix" msgstr "actualizar la versión de Guix" #. type: command{#1} -#: guix-git/doc/guix.texi:4343 +#: guix-git/doc/guix.texi:4361 #, no-wrap msgid "guix pull" msgstr "guix pull" #. type: cindex -#: guix-git/doc/guix.texi:4344 +#: guix-git/doc/guix.texi:4362 #, no-wrap msgid "pull" msgstr "pull" #. type: cindex -#: guix-git/doc/guix.texi:4345 +#: guix-git/doc/guix.texi:4363 #, no-wrap msgid "security, @command{guix pull}" msgstr "seguridad, @command{guix pull}" #. type: cindex -#: guix-git/doc/guix.texi:4346 +#: guix-git/doc/guix.texi:4364 #, no-wrap msgid "authenticity, of code obtained with @command{guix pull}" msgstr "veracidad, del código obtenido con @command{guix pull}" #. type: Plain text -#: guix-git/doc/guix.texi:4356 +#: guix-git/doc/guix.texi:4374 msgid "Packages are installed or upgraded to the latest version available in the distribution currently available on your local machine. To update that distribution, along with the Guix tools, you must run @command{guix pull}: the command downloads the latest Guix source code and package descriptions, and deploys it. Source code is downloaded from a @uref{https://git-scm.com, Git} repository, by default the official GNU@tie{}Guix repository, though this can be customized. @command{guix pull} ensures that the code it downloads is @emph{authentic} by verifying that commits are signed by Guix developers." msgstr "Los paquetes se instalan o actualizan con la última versión disponible en la distribución disponible actualmente en su máquina local. Para actualizar dicha distribución, junto a las herramientas de Guix, debe ejecutar @command{guix pull}: esta orden descarga el último código fuente de Guix y descripciones de paquetes, y lo despliega. El código fuente se descarga de un repositorio @uref{https://git-scm.com, Git}, por defecto el repositorio oficial de GNU@tie{}Guix, lo que no obstante puede ser personalizado. @command{guix pull} se asegura que el código que descarga es @emph{auténtico} verificando que revisiones están firmadas por desarrolladoras de Guix." #. type: Plain text -#: guix-git/doc/guix.texi:4359 +#: guix-git/doc/guix.texi:4377 msgid "Specifically, @command{guix pull} downloads code from the @dfn{channels} (@pxref{Channels}) specified by one of the followings, in this order:" msgstr "Específicamente, @command{guix pull} descarga código de los @dfn{canales} (@pxref{Channels}) especificados en una de las posibilidades siguientes, en este orden:" #. type: enumerate -#: guix-git/doc/guix.texi:4363 +#: guix-git/doc/guix.texi:4381 msgid "the @option{--channels} option;" msgstr "la opción @option{--channels};" #. type: enumerate -#: guix-git/doc/guix.texi:4365 +#: guix-git/doc/guix.texi:4383 msgid "the user's @file{~/.config/guix/channels.scm} file;" msgstr "el archivo @file{~/.config/guix/channels.scm} de la usuaria;" #. type: enumerate -#: guix-git/doc/guix.texi:4367 +#: guix-git/doc/guix.texi:4385 msgid "the system-wide @file{/etc/guix/channels.scm} file;" msgstr "el archivo @file{/etc/guix/channels.scm} común al sistema;" #. type: enumerate -#: guix-git/doc/guix.texi:4370 +#: guix-git/doc/guix.texi:4388 msgid "the built-in default channels specified in the @code{%default-channels} variable." msgstr "los canales predeterminados en código especificados en la variable @code{%default-channels}." #. type: Plain text -#: guix-git/doc/guix.texi:4377 +#: guix-git/doc/guix.texi:4395 msgid "On completion, @command{guix package} will use packages and package versions from this just-retrieved copy of Guix. Not only that, but all the Guix commands and Scheme modules will also be taken from that latest version. New @command{guix} sub-commands added by the update also become available." msgstr "Una vez completada, @command{guix package} usará paquetes y versiones de paquetes de esta copia recién obtenida de Guix. No solo eso, sino que todas las órdenes de Guix y los módulos Scheme también se tomarán de la última versión. Nuevas sub-órdenes @command{guix} incorporadas por la actualización también estarán disponibles." #. type: Plain text -#: guix-git/doc/guix.texi:4383 +#: guix-git/doc/guix.texi:4401 msgid "Any user can update their Guix copy using @command{guix pull}, and the effect is limited to the user who ran @command{guix pull}. For instance, when user @code{root} runs @command{guix pull}, this has no effect on the version of Guix that user @code{alice} sees, and vice versa." msgstr "Cualquier usuaria puede actualizar su copia de Guix usando @command{guix pull}, y el efecto está limitado a la usuaria que ejecute @command{guix pull}. Por ejemplo, cuando la usuaria @code{root} ejecuta @command{guix pull}, dicha acción no produce ningún efecto en la versión del Guix que la usuaria @code{alicia} ve, y viceversa." #. type: Plain text -#: guix-git/doc/guix.texi:4389 +#: guix-git/doc/guix.texi:4407 msgid "The result of running @command{guix pull} is a @dfn{profile} available under @file{~/.config/guix/current} containing the latest Guix. Thus, make sure to add it to the beginning of your search path so that you use the latest version, and similarly for the Info manual (@pxref{Documentation}):" msgstr "El resultado de ejecutar @command{guix pull} es un @dfn{perfil} disponible bajo @file{~/.config/guix/current} conteniendo el último Guix. Por tanto, asegúrese de añadirlo al inicio de sus rutas de búsqueda de modo que use la última versión, de modo similar para el manual Info(@pxref{Documentation})." #. type: example -#: guix-git/doc/guix.texi:4393 +#: guix-git/doc/guix.texi:4411 #, no-wrap msgid "" "export PATH=\"$HOME/.config/guix/current/bin:$PATH\"\n" @@ -11386,12 +11472,12 @@ msgstr "" "export INFOPATH=\"$HOME/.config/guix/current/share/info:$INFOPATH\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:4397 +#: guix-git/doc/guix.texi:4415 msgid "The @option{--list-generations} or @option{-l} option lists past generations produced by @command{guix pull}, along with details about their provenance:" msgstr "Las opciones @option{--list-generations} o @option{-l} enumeran las generaciones pasadas producidas por @command{guix pull}, junto a detalles de su procedencia:" #. type: example -#: guix-git/doc/guix.texi:4405 +#: guix-git/doc/guix.texi:4423 #, no-wrap msgid "" "$ guix pull -l\n" @@ -11411,7 +11497,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:4415 +#: guix-git/doc/guix.texi:4433 #, no-wrap msgid "" "Generation 2\tJun 11 2018 11:02:49\n" @@ -11437,7 +11523,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:4423 +#: guix-git/doc/guix.texi:4441 #, no-wrap msgid "" "Generation 3\tJun 13 2018 23:31:07\t(current)\n" @@ -11457,19 +11543,19 @@ msgstr "" " 69 paquetes actualizados: borg@@1.1.6, cheese@@3.28.0, @dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:4427 +#: guix-git/doc/guix.texi:4445 msgid "@xref{Invoking guix describe, @command{guix describe}}, for other ways to describe the current status of Guix." msgstr "@ref{Invoking guix describe, @command{guix describe}}, para otras formas de describir el estado actual de Guix." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:4432 +#: guix-git/doc/guix.texi:4450 #, fuzzy msgid "This @code{~/.config/guix/current} profile works exactly like the profiles created by @command{guix package} (@pxref{Invoking guix package}). That is, you can list generations, roll back to the previous generation---i.e., the previous Guix---and so on:" msgstr "El perfil @code{~/.config/guix/current} funciona exactamente igual que los perfiles creados por @command{guix package} (@pxref{Invoking guix package}). Es decir, puede enumerar generaciones, volver a una generación previa---esto es, la versión anterior de Guix---, etcétera:" #. type: example -#: guix-git/doc/guix.texi:4438 +#: guix-git/doc/guix.texi:4456 #, no-wrap msgid "" "$ guix pull --roll-back\n" @@ -11483,12 +11569,12 @@ msgstr "" "borrando /var/guix/profiles/per-user/carlos/current-guix-1-link\n" #. type: Plain text -#: guix-git/doc/guix.texi:4442 +#: guix-git/doc/guix.texi:4460 msgid "You can also use @command{guix package} (@pxref{Invoking guix package}) to manage the profile by naming it explicitly:" msgstr "También puede usar @command{guix package} (@pxref{Invoking guix package}) para gestionar el perfil proporcionando su nombre de manera específica:" #. type: example -#: guix-git/doc/guix.texi:4447 +#: guix-git/doc/guix.texi:4465 #, no-wrap msgid "" "$ guix package -p ~/.config/guix/current --roll-back\n" @@ -11502,357 +11588,358 @@ msgstr "" "borrando /var/guix/profiles/per-user/carlos/current-guix-1-link\n" #. type: Plain text -#: guix-git/doc/guix.texi:4451 +#: guix-git/doc/guix.texi:4469 msgid "The @command{guix pull} command is usually invoked with no arguments, but it supports the following options:" msgstr "La orden @command{guix pull} se invoca habitualmente sin parámetros, pero permite las siguientes opciones:" #. type: item -#: guix-git/doc/guix.texi:4453 guix-git/doc/guix.texi:4611 +#: guix-git/doc/guix.texi:4471 guix-git/doc/guix.texi:4629 #, no-wrap msgid "--url=@var{url}" msgstr "--url=@var{url}" #. type: itemx -#: guix-git/doc/guix.texi:4454 guix-git/doc/guix.texi:4612 +#: guix-git/doc/guix.texi:4472 guix-git/doc/guix.texi:4630 #, no-wrap msgid "--commit=@var{commit}" msgstr "--commit=@var{revisión}" #. type: itemx -#: guix-git/doc/guix.texi:4455 guix-git/doc/guix.texi:4613 +#: guix-git/doc/guix.texi:4473 guix-git/doc/guix.texi:4631 #, no-wrap msgid "--branch=@var{branch}" msgstr "--branch=@var{rama}" #. type: table -#: guix-git/doc/guix.texi:4459 +#: guix-git/doc/guix.texi:4477 msgid "Download code for the @code{guix} channel from the specified @var{url}, at the given @var{commit} (a valid Git commit ID represented as a hexadecimal string), or @var{branch}." msgstr "Descarga el código para el canal @code{guix} de la @var{url} especificada, en la @var{revisión} proporcionada (un ID de revisión Git representada como una cadena hexadecimal), o @var{rama}." #. type: cindex -#: guix-git/doc/guix.texi:4460 guix-git/doc/guix.texi:5057 +#: guix-git/doc/guix.texi:4478 guix-git/doc/guix.texi:5075 #, no-wrap msgid "@file{channels.scm}, configuration file" msgstr "@file{channels.scm}, archivo de configuración" #. type: cindex -#: guix-git/doc/guix.texi:4461 guix-git/doc/guix.texi:5058 +#: guix-git/doc/guix.texi:4479 guix-git/doc/guix.texi:5076 #, no-wrap msgid "configuration file for channels" msgstr "archivo de configuración de canales" #. type: table -#: guix-git/doc/guix.texi:4465 +#: guix-git/doc/guix.texi:4483 msgid "These options are provided for convenience, but you can also specify your configuration in the @file{~/.config/guix/channels.scm} file or using the @option{--channels} option (see below)." msgstr "Estas opciones se proporcionan por conveniencia, pero también puede especificar su configuración en el archivo @file{~/.config/guix/channels.scm} o usando la opción @option{--channels} (vea más adelante)." #. type: item -#: guix-git/doc/guix.texi:4466 guix-git/doc/guix.texi:4618 +#: guix-git/doc/guix.texi:4484 guix-git/doc/guix.texi:4636 #, no-wrap msgid "--channels=@var{file}" msgstr "--channels=@var{archivo}" #. type: itemx -#: guix-git/doc/guix.texi:4467 guix-git/doc/guix.texi:4619 +#: guix-git/doc/guix.texi:4485 guix-git/doc/guix.texi:4637 #, no-wrap msgid "-C @var{file}" msgstr "-C @var{archivo}" #. type: table -#: guix-git/doc/guix.texi:4473 +#: guix-git/doc/guix.texi:4491 msgid "Read the list of channels from @var{file} instead of @file{~/.config/guix/channels.scm} or @file{/etc/guix/channels.scm}. @var{file} must contain Scheme code that evaluates to a list of channel objects. @xref{Channels}, for more information." msgstr "Lee la lista de canales de @var{archivo} en vez de @file{~/.config/guix/channels.scm} o @file{/etc/guix/channels.scm}. @var{archivo} debe contener código Scheme que evalúe a una lista de objetos ``channel''. @xref{Channels}, para más información." #. type: cindex -#: guix-git/doc/guix.texi:4474 +#: guix-git/doc/guix.texi:4492 #, no-wrap msgid "channel news" msgstr "noticias de los canales" #. type: item -#: guix-git/doc/guix.texi:4475 +#: guix-git/doc/guix.texi:4493 #, no-wrap msgid "--news" msgstr "--news" #. type: itemx -#: guix-git/doc/guix.texi:4476 guix-git/doc/guix.texi:5864 -#: guix-git/doc/guix.texi:6247 guix-git/doc/guix.texi:35304 +#: guix-git/doc/guix.texi:4494 guix-git/doc/guix.texi:5877 +#: guix-git/doc/guix.texi:6290 guix-git/doc/guix.texi:35748 #, no-wrap msgid "-N" msgstr "-N" #. type: table -#: guix-git/doc/guix.texi:4480 +#: guix-git/doc/guix.texi:4498 msgid "Display the list of packages added or upgraded since the previous generation, as well as, occasionally, news written by channel authors for their users (@pxref{Channels, Writing Channel News})." msgstr "Muestra la lista de paquetes añadidos o actualizados desde la última generación, así como, ocasionalmente, noticias escritas por las autoras del canal para las usuarias (@pxref{Channels, Writing Channel News})." # FUZZY #. type: table -#: guix-git/doc/guix.texi:4484 +#: guix-git/doc/guix.texi:4502 msgid "The package information is the same as displayed upon @command{guix pull} completion, but without ellipses; it is also similar to the output of @command{guix pull -l} for the last generation (see below)." msgstr "La información del paquete es la misma que la que se muestra cuando termina @command{guix pull}, pero sin la elipsis; es también similar a la salida de @command{guix pull -l} para la última generación (véase a continuación)." #. type: table -#: guix-git/doc/guix.texi:4491 +#: guix-git/doc/guix.texi:4509 msgid "List all the generations of @file{~/.config/guix/current} or, if @var{pattern} is provided, the subset of generations that match @var{pattern}. The syntax of @var{pattern} is the same as with @code{guix package --list-generations} (@pxref{Invoking guix package})." msgstr "Enumera todas las generaciones de @file{~/.config/guix/current} o, si se proporciona un @var{patrón}, el subconjunto de generaciones que correspondan con el @var{patrón}. La sintaxis de @var{patrón} es la misma que @code{guix package --list-generations} (@pxref{Invoking guix package})." #. type: table -#: guix-git/doc/guix.texi:4498 +#: guix-git/doc/guix.texi:4516 msgid "Roll back to the previous @dfn{generation} of @file{~/.config/guix/current}---i.e., undo the last transaction." msgstr "Vuelve a la @dfn{generación} previa de @file{~/.config/guix/current}---es decir, deshace la última transacción." #. type: table -#: guix-git/doc/guix.texi:4522 +#: guix-git/doc/guix.texi:4540 msgid "If the current generation matches, it is @emph{not} deleted." msgstr "Si la generación actual entra en el patrón, @emph{no} será borrada." #. type: table -#: guix-git/doc/guix.texi:4528 +#: guix-git/doc/guix.texi:4546 msgid "@xref{Invoking guix describe}, for a way to display information about the current generation only." msgstr "@ref{Invoking guix describe}, para una forma de mostrar información sobre únicamente la generación actual." #. type: table -#: guix-git/doc/guix.texi:4532 +#: guix-git/doc/guix.texi:4550 msgid "Use @var{profile} instead of @file{~/.config/guix/current}." msgstr "Usa @var{perfil} en vez de @file{~/.config/guix/current}." #. type: item -#: guix-git/doc/guix.texi:4533 guix-git/doc/guix.texi:10893 -#: guix-git/doc/guix.texi:12836 +#: guix-git/doc/guix.texi:4551 guix-git/doc/guix.texi:11207 +#: guix-git/doc/guix.texi:13162 #, no-wrap msgid "--dry-run" msgstr "--dry-run" #. type: itemx -#: guix-git/doc/guix.texi:4534 guix-git/doc/guix.texi:10894 -#: guix-git/doc/guix.texi:12837 guix-git/doc/guix.texi:13043 +#: guix-git/doc/guix.texi:4552 guix-git/doc/guix.texi:11208 +#: guix-git/doc/guix.texi:13163 guix-git/doc/guix.texi:13400 #, no-wrap msgid "-n" msgstr "-n" #. type: table -#: guix-git/doc/guix.texi:4537 +#: guix-git/doc/guix.texi:4555 msgid "Show which channel commit(s) would be used and what would be built or substituted but do not actually do it." msgstr "Muestra qué revisión/es del canal serían usadas y qué se construiría o sustituiría, sin efectuar ninguna acción real." #. type: item -#: guix-git/doc/guix.texi:4538 guix-git/doc/guix.texi:35323 +#: guix-git/doc/guix.texi:4556 guix-git/doc/guix.texi:35767 +#: guix-git/doc/guix.texi:38198 #, no-wrap msgid "--allow-downgrades" msgstr "--allow-downgrades" #. type: table -#: guix-git/doc/guix.texi:4541 +#: guix-git/doc/guix.texi:4559 msgid "Allow pulling older or unrelated revisions of channels than those currently in use." msgstr "Permite obtener revisiones de los canales más antiguas o no relacionadas con aquellas que se encuentran en uso actualmente." #. type: cindex -#: guix-git/doc/guix.texi:4542 +#: guix-git/doc/guix.texi:4560 #, no-wrap msgid "downgrade attacks, protection against" msgstr "ataques de versión anterior, protección contra" #. type: table -#: guix-git/doc/guix.texi:4547 +#: guix-git/doc/guix.texi:4565 msgid "By default, @command{guix pull} protects against so-called ``downgrade attacks'' whereby the Git repository of a channel would be reset to an earlier or unrelated revision of itself, potentially leading you to install older, known-vulnerable versions of software packages." msgstr "De manera predeterminada @command{guix pull} proteje contra los llamados ``ataques de versión anterior'' en los que el repositorio Git de un canal se reinicia a una revisión anterior o no relacionada de sí mismo, provocando potencialmente la instalación de versiones más antiguas y con vulnerabilidades conocidas de paquetes de software." #. type: quotation -#: guix-git/doc/guix.texi:4551 guix-git/doc/guix.texi:35337 +#: guix-git/doc/guix.texi:4569 guix-git/doc/guix.texi:35781 msgid "Make sure you understand its security implications before using @option{--allow-downgrades}." msgstr "Asegúrese de entender las implicaciones de seguridad antes de usar la opción @option{--allow-downgrades}." #. type: item -#: guix-git/doc/guix.texi:4553 +#: guix-git/doc/guix.texi:4571 #, no-wrap msgid "--disable-authentication" msgstr "--disable-authentication" #. type: table -#: guix-git/doc/guix.texi:4555 +#: guix-git/doc/guix.texi:4573 msgid "Allow pulling channel code without authenticating it." msgstr "Permite obtener código de un canal sin verificarlo." # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:4556 guix-git/doc/guix.texi:5203 +#: guix-git/doc/guix.texi:4574 guix-git/doc/guix.texi:5221 #, no-wrap msgid "authentication, of channel code" msgstr "verificación, del código de un canal" #. type: table -#: guix-git/doc/guix.texi:4561 +#: guix-git/doc/guix.texi:4579 msgid "By default, @command{guix pull} authenticates code downloaded from channels by verifying that its commits are signed by authorized developers, and raises an error if this is not the case. This option instructs it to not perform any such verification." msgstr "De manera predeterminada, @command{guix pull} valida el código que descarga de los canales verificando que sus revisiones están firmadas por desarrolladoras autorizadas, y emite un error si no es el caso. Esta opción le indica que no debe realizar ninguna de esas verificaciones." #. type: quotation -#: guix-git/doc/guix.texi:4565 +#: guix-git/doc/guix.texi:4583 msgid "Make sure you understand its security implications before using @option{--disable-authentication}." msgstr "Asegúrese de entender las implicaciones de seguridad antes de usar la opción @option{--disable-authentication}." #. type: itemx -#: guix-git/doc/guix.texi:4568 guix-git/doc/guix.texi:5847 -#: guix-git/doc/guix.texi:6230 guix-git/doc/guix.texi:6630 -#: guix-git/doc/guix.texi:11506 guix-git/doc/guix.texi:13188 -#: guix-git/doc/guix.texi:13453 guix-git/doc/guix.texi:14130 -#: guix-git/doc/guix.texi:35252 +#: guix-git/doc/guix.texi:4586 guix-git/doc/guix.texi:5860 +#: guix-git/doc/guix.texi:6273 guix-git/doc/guix.texi:6673 +#: guix-git/doc/guix.texi:11820 guix-git/doc/guix.texi:13545 +#: guix-git/doc/guix.texi:13810 guix-git/doc/guix.texi:14487 +#: guix-git/doc/guix.texi:35696 #, no-wrap msgid "-s @var{system}" msgstr "-s @var{sistema}" #. type: table -#: guix-git/doc/guix.texi:4571 guix-git/doc/guix.texi:6633 +#: guix-git/doc/guix.texi:4589 guix-git/doc/guix.texi:6676 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of the system type of the build host." msgstr "Intenta construir paquetes para @var{sistema}---por ejemplo, @code{x86_64-linux}---en vez del tipo de sistema de la máquina de construcción." #. type: table -#: guix-git/doc/guix.texi:4575 +#: guix-git/doc/guix.texi:4593 msgid "Use the bootstrap Guile to build the latest Guix. This option is only useful to Guix developers." msgstr "Use el Guile usado para el lanzamiento para construir el último Guix. Esta opción es útil para las desarrolladoras de Guix únicamente." #. type: Plain text -#: guix-git/doc/guix.texi:4581 +#: guix-git/doc/guix.texi:4599 msgid "The @dfn{channel} mechanism allows you to instruct @command{guix pull} which repository and branch to pull from, as well as @emph{additional} repositories containing package modules that should be deployed. @xref{Channels}, for more information." msgstr "El mecanismo de @dfn{canales} le permite instruir a @command{guix pull} de qué repositorio y rama obtener los datos, así como repositorios @emph{adicionales} que contengan módulos de paquetes que deben ser desplegados. @xref{Channels}, para más información." #. type: Plain text -#: guix-git/doc/guix.texi:4584 +#: guix-git/doc/guix.texi:4602 msgid "In addition, @command{guix pull} supports all the common build options (@pxref{Common Build Options})." msgstr "Además, @command{guix pull} acepta todas las opciones de construcción comunes (@pxref{Common Build Options})." #. type: section -#: guix-git/doc/guix.texi:4586 +#: guix-git/doc/guix.texi:4604 #, no-wrap msgid "Invoking @command{guix time-machine}" msgstr "Invocación de @command{guix time-machine}" #. type: command{#1} -#: guix-git/doc/guix.texi:4588 +#: guix-git/doc/guix.texi:4606 #, no-wrap msgid "guix time-machine" msgstr "guix time-machine" #. type: cindex -#: guix-git/doc/guix.texi:4589 guix-git/doc/guix.texi:5161 +#: guix-git/doc/guix.texi:4607 guix-git/doc/guix.texi:5179 #, no-wrap msgid "pinning, channels" msgstr "clavar, canales" #. type: cindex -#: guix-git/doc/guix.texi:4590 guix-git/doc/guix.texi:4772 -#: guix-git/doc/guix.texi:5162 +#: guix-git/doc/guix.texi:4608 guix-git/doc/guix.texi:4790 +#: guix-git/doc/guix.texi:5180 #, no-wrap msgid "replicating Guix" msgstr "replicar Guix" #. type: cindex -#: guix-git/doc/guix.texi:4591 guix-git/doc/guix.texi:5163 +#: guix-git/doc/guix.texi:4609 guix-git/doc/guix.texi:5181 #, no-wrap msgid "reproducibility, of Guix" msgstr "reproducibilidad, de Guix" #. type: Plain text -#: guix-git/doc/guix.texi:4599 +#: guix-git/doc/guix.texi:4617 msgid "The @command{guix time-machine} command provides access to other revisions of Guix, for example to install older versions of packages, or to reproduce a computation in an identical environment. The revision of Guix to be used is defined by a commit or by a channel description file created by @command{guix describe} (@pxref{Invoking guix describe})." msgstr "La orden @command{guix time-machine} proporciona acceso a otras revisiones de Guix, por ejemplo para instalar versiones antiguas de un paquete, o para reproducir una computación en un entorno idéntico. La revisión de Guix que se usará se define por el identificador de una revisión o por un archivo de descripción de canales creado con @command{guix describe} (@pxref{Invoking guix describe})." #. type: Plain text -#: guix-git/doc/guix.texi:4601 guix-git/doc/guix.texi:5623 -#: guix-git/doc/guix.texi:5974 guix-git/doc/guix.texi:6753 -#: guix-git/doc/guix.texi:10689 guix-git/doc/guix.texi:10813 -#: guix-git/doc/guix.texi:11797 guix-git/doc/guix.texi:11892 -#: guix-git/doc/guix.texi:12825 guix-git/doc/guix.texi:13018 -#: guix-git/doc/guix.texi:13511 guix-git/doc/guix.texi:13884 -#: guix-git/doc/guix.texi:13973 guix-git/doc/guix.texi:14012 -#: guix-git/doc/guix.texi:14109 +#: guix-git/doc/guix.texi:4619 guix-git/doc/guix.texi:5641 +#: guix-git/doc/guix.texi:6011 guix-git/doc/guix.texi:6796 +#: guix-git/doc/guix.texi:11003 guix-git/doc/guix.texi:11127 +#: guix-git/doc/guix.texi:12111 guix-git/doc/guix.texi:12207 +#: guix-git/doc/guix.texi:13148 guix-git/doc/guix.texi:13375 +#: guix-git/doc/guix.texi:13868 guix-git/doc/guix.texi:14241 +#: guix-git/doc/guix.texi:14330 guix-git/doc/guix.texi:14369 +#: guix-git/doc/guix.texi:14466 msgid "The general syntax is:" msgstr "La sintaxis general es:" #. type: example -#: guix-git/doc/guix.texi:4604 +#: guix-git/doc/guix.texi:4622 #, no-wrap msgid "guix time-machine @var{options}@dots{} -- @var{command} @var {arg}@dots{}\n" msgstr "guix time-machine @var{opciones}@dots{} -- @var{orden} @var{param}@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:4609 +#: guix-git/doc/guix.texi:4627 msgid "where @var{command} and @var{arg}@dots{} are passed unmodified to the @command{guix} command of the specified revision. The @var{options} that define this revision are the same as for @command{guix pull} (@pxref{Invoking guix pull}):" msgstr "donde @var{orden} and @var{param}@dots{} se proporcionan sin modificar a la orden @command{guix} de la revisión especificada. Las @var{opciones} que definen esta revisión son las mismas que se usan con @command{guix pull} (@pxref{Invoking guix pull}):" #. type: table -#: guix-git/doc/guix.texi:4617 +#: guix-git/doc/guix.texi:4635 msgid "Use the @code{guix} channel from the specified @var{url}, at the given @var{commit} (a valid Git commit ID represented as a hexadecimal string), or @var{branch}." msgstr "Usa el canal @code{guix} de la @var{url} especificada, en la @var{revisión} proporcionada (un ID de revisión Git representada como una cadena hexadecimal), o @var{rama}." #. type: table -#: guix-git/doc/guix.texi:4623 +#: guix-git/doc/guix.texi:4641 msgid "Read the list of channels from @var{file}. @var{file} must contain Scheme code that evaluates to a list of channel objects. @xref{Channels} for more information." msgstr "Lee la lista de canales de @var{archivo}. @var{archivo} debe contener código Scheme que evalúe a una lista de objetos ``channel''. @xref{Channels}, para más información." #. type: Plain text -#: guix-git/doc/guix.texi:4627 +#: guix-git/doc/guix.texi:4645 #, fuzzy msgid "As for @command{guix pull}, the absence of any options means that the latest commit on the master branch will be used. The command" msgstr "Como con @command{guix pull}, la ausencia de opciones significa que se usará la última revisión de la rama master. Por tanto la orden" #. type: example -#: guix-git/doc/guix.texi:4630 +#: guix-git/doc/guix.texi:4648 #, no-wrap msgid "guix time-machine -- build hello\n" msgstr "guix time-machine -- build hello\n" #. type: Plain text -#: guix-git/doc/guix.texi:4635 +#: guix-git/doc/guix.texi:4653 msgid "will thus build the package @code{hello} as defined in the master branch, which is in general a newer revision of Guix than you have installed. Time travel works in both directions!" msgstr "construirá el paquete @code{hello} como esté definido en la rama master, que en general es la última revisión de Guix que haya instalado. ¡Los viajes temporales funcionan en ambas direcciones!" #. type: Plain text -#: guix-git/doc/guix.texi:4639 +#: guix-git/doc/guix.texi:4657 msgid "Note that @command{guix time-machine} can trigger builds of channels and their dependencies, and these are controlled by the standard build options (@pxref{Common Build Options})." msgstr "Tenga en cuenta que @command{guix time-machine} puede desencadenar construcciones de canales y sus dependencias, y que pueden controlarse mediante las opciones de construcción estándar (@pxref{Common Build Options})." #. type: quotation -#: guix-git/doc/guix.texi:4647 +#: guix-git/doc/guix.texi:4665 msgid "The functionality described here is a ``technology preview'' as of version @value{VERSION}. As such, the interface is subject to change." msgstr "La funcionalidad descrita aquí es una ``versión de evaluación tecnológica'' en la versión @value{VERSION}. Como tal, la interfaz está sujeta a cambios." #. type: cindex -#: guix-git/doc/guix.texi:4649 guix-git/doc/guix.texi:10726 +#: guix-git/doc/guix.texi:4667 guix-git/doc/guix.texi:11040 #, no-wrap msgid "inferiors" msgstr "inferiores" #. type: cindex -#: guix-git/doc/guix.texi:4650 +#: guix-git/doc/guix.texi:4668 #, no-wrap msgid "composition of Guix revisions" msgstr "composición de revisiones de Guix" #. type: Plain text -#: guix-git/doc/guix.texi:4655 +#: guix-git/doc/guix.texi:4673 msgid "Sometimes you might need to mix packages from the revision of Guix you're currently running with packages available in a different revision of Guix. Guix @dfn{inferiors} allow you to achieve that by composing different Guix revisions in arbitrary ways." msgstr "A veces necesita mezclar paquetes de revisiones de la revisión de Guix que está ejecutando actualmente con paquetes disponibles en una revisión diferente. Los @dfn{inferiores} de Guix le permiten conseguirlo componiendo diferentes revisiones de Guix de modo arbitrario." #. type: cindex -#: guix-git/doc/guix.texi:4656 guix-git/doc/guix.texi:4721 +#: guix-git/doc/guix.texi:4674 guix-git/doc/guix.texi:4739 #, no-wrap msgid "inferior packages" msgstr "paquetes inferiores" #. type: Plain text -#: guix-git/doc/guix.texi:4662 +#: guix-git/doc/guix.texi:4680 msgid "Technically, an ``inferior'' is essentially a separate Guix process connected to your main Guix process through a REPL (@pxref{Invoking guix repl}). The @code{(guix inferior)} module allows you to create inferiors and to communicate with them. It also provides a high-level interface to browse and manipulate the packages that an inferior provides---@dfn{inferior packages}." msgstr "Técnicamente, un ``inferior'' es esencialmente un proceso Guix separado conectado con su Guix principal a través de una sesión interactiva (@pxref{Invoking guix repl}). El módulo @code{(guix inferior)} le permite crear inferiores y comunicarse con ellos. También proporciona una interfaz de alto nivel para buscar y manipular los paquetes que un inferior proporciona---@dfn{paquetes de inferiores}." #. type: Plain text -#: guix-git/doc/guix.texi:4672 +#: guix-git/doc/guix.texi:4690 msgid "When combined with channels (@pxref{Channels}), inferiors provide a simple way to interact with a separate revision of Guix. For example, let's assume you want to install in your profile the current @code{guile} package, along with the @code{guile-json} as it existed in an older revision of Guix---perhaps because the newer @code{guile-json} has an incompatible API and you want to run your code against the old API@. To do that, you could write a manifest for use by @code{guix package --manifest} (@pxref{Invoking guix package}); in that manifest, you would create an inferior for that old Guix revision you care about, and you would look up the @code{guile-json} package in the inferior:" msgstr "Cuando se combina con los canales (@pxref{Channels}), los inferiores proporcionan una forma simple de interactuar con una revisión separada de Guix. Por ejemplo, asumamos que desea instalar en su perfil el paquete @code{guile} actual, junto al paquete @code{guile-json} como existía en una revisión más antigua de Guix---quizá porque las versiones nuevas de @code{guile-json} tienen un API incompatible y quiere ejecutar su código contra la API antigua. Para hacerlo, puede escribir un manifiesto para usarlo con @code{guix package --manifest} (@pxref{Invoking guix package}); en dicho manifiesto puede crear un inferior para esa versión antigua de Guix que le interesa, y buscará el paquete @code{guile-json} en el inferior:" #. type: lisp -#: guix-git/doc/guix.texi:4676 +#: guix-git/doc/guix.texi:4694 #, no-wrap msgid "" "(use-modules (guix inferior) (guix channels)\n" @@ -11864,7 +11951,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:4685 +#: guix-git/doc/guix.texi:4703 #, no-wrap msgid "" "(define channels\n" @@ -11888,7 +11975,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:4689 +#: guix-git/doc/guix.texi:4707 #, no-wrap msgid "" "(define inferior\n" @@ -11902,7 +11989,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:4695 +#: guix-git/doc/guix.texi:4713 #, no-wrap msgid "" ";; Now create a manifest with the current \"guile\" package\n" @@ -11918,160 +12005,160 @@ msgstr "" " (specification->package \"guile\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:4700 +#: guix-git/doc/guix.texi:4718 msgid "On its first run, @command{guix package --manifest} might have to build the channel you specified before it can create the inferior; subsequent runs will be much faster because the Guix revision will be cached." msgstr "En su primera ejecución, @command{guix package --manifest} puede tener que construir el canal que especificó antes de crear el inferior; las siguientes ejecuciones serán mucho más rápidas porque la revisión de Guix estará en la caché." #. type: Plain text -#: guix-git/doc/guix.texi:4703 +#: guix-git/doc/guix.texi:4721 msgid "The @code{(guix inferior)} module provides the following procedures to open an inferior:" msgstr "El módulo @code{(guix inferior)} proporciona los siguientes procedimientos para abrir un inferior:" #. type: deffn -#: guix-git/doc/guix.texi:4704 +#: guix-git/doc/guix.texi:4722 #, no-wrap msgid "{Scheme Procedure} inferior-for-channels @var{channels} @" msgstr "{Procedimiento Scheme} inferior-for-channels @var{canales} @" #. type: deffn -#: guix-git/doc/guix.texi:4709 +#: guix-git/doc/guix.texi:4727 msgid "[#:cache-directory] [#:ttl] Return an inferior for @var{channels}, a list of channels. Use the cache at @var{cache-directory}, where entries can be reclaimed after @var{ttl} seconds. This procedure opens a new connection to the build daemon." msgstr "" "[#:cache-directory] [#:ttl]\n" "Devuelve un inferior para @var{canales}, una lista de canales. Usa la caché en @var{cache-directory}, donde las entradas pueden ser reclamadas después de @var{ttl} segundos. Este procedimiento abre una nueva conexión al daemon de construcción." #. type: deffn -#: guix-git/doc/guix.texi:4712 +#: guix-git/doc/guix.texi:4730 msgid "As a side effect, this procedure may build or substitute binaries for @var{channels}, which can take time." msgstr "Como efecto secundario, este procedimiento puede construir o sustituir binarios para @var{canales}, lo cual puede tomar cierto tiempo." #. type: deffn -#: guix-git/doc/guix.texi:4714 +#: guix-git/doc/guix.texi:4732 #, no-wrap msgid "{Scheme Procedure} open-inferior @var{directory} @" msgstr "{Procedimiento Scheme} open-inferior @var{directorio} @" #. type: deffn -#: guix-git/doc/guix.texi:4719 +#: guix-git/doc/guix.texi:4737 msgid "[#:command \"bin/guix\"] Open the inferior Guix in @var{directory}, running @code{@var{directory}/@var{command} repl} or equivalent. Return @code{#f} if the inferior could not be launched." msgstr "" "[#:command \"bin/guix\"]\n" "Abre el Guix inferior en @var{directorio}, ejecutando @code{@var{directorio}/@var{command} repl} o su equivalente. Devuelve @code{#f} si el inferior no pudo ser ejecutado." #. type: Plain text -#: guix-git/doc/guix.texi:4724 +#: guix-git/doc/guix.texi:4742 msgid "The procedures listed below allow you to obtain and manipulate inferior packages." msgstr "Los procedimientos enumerados a continuación le permiten obtener y manipular paquetes de inferiores." #. type: deffn -#: guix-git/doc/guix.texi:4725 +#: guix-git/doc/guix.texi:4743 #, no-wrap msgid "{Scheme Procedure} inferior-packages @var{inferior}" msgstr "{Procedimiento Scheme} inferior-packages @var{inferior}" #. type: deffn -#: guix-git/doc/guix.texi:4727 +#: guix-git/doc/guix.texi:4745 msgid "Return the list of packages known to @var{inferior}." msgstr "Devuelve la lista de paquetes conocida por @var{inferior}." #. type: deffn -#: guix-git/doc/guix.texi:4729 +#: guix-git/doc/guix.texi:4747 #, no-wrap msgid "{Scheme Procedure} lookup-inferior-packages @var{inferior} @var{name} @" msgstr "{Procedimiento Scheme} lookup-inferior-packages @var{inferior} @var{nombre} @" #. type: deffn -#: guix-git/doc/guix.texi:4734 +#: guix-git/doc/guix.texi:4752 msgid "[@var{version}] Return the sorted list of inferior packages matching @var{name} in @var{inferior}, with highest version numbers first. If @var{version} is true, return only packages with a version number prefixed by @var{version}." msgstr "" "[@var{versión}]\n" "Devuelve la lista ordenada de paquetes del inferior que corresponden con @var{nombre} en @var{inferior}, con los números de versión más altos primero. Si @var{versión} tiene un valor verdadero, devuelve únicamente paquetes con un número de versión cuyo prefijo es @var{versión}." #. type: deffn -#: guix-git/doc/guix.texi:4736 +#: guix-git/doc/guix.texi:4754 #, no-wrap msgid "{Scheme Procedure} inferior-package? @var{obj}" msgstr "{Procedimiento Scheme} inferior-package? @var{obj}" #. type: deffn -#: guix-git/doc/guix.texi:4738 +#: guix-git/doc/guix.texi:4756 msgid "Return true if @var{obj} is an inferior package." msgstr "Devuelve verdadero si @var{obj} es un paquete inferior." #. type: deffn -#: guix-git/doc/guix.texi:4740 +#: guix-git/doc/guix.texi:4758 #, no-wrap msgid "{Scheme Procedure} inferior-package-name @var{package}" msgstr "{Procedimiento Scheme} inferior-package-name @var{paquete}" #. type: deffnx -#: guix-git/doc/guix.texi:4741 +#: guix-git/doc/guix.texi:4759 #, no-wrap msgid "{Scheme Procedure} inferior-package-version @var{package}" msgstr "{Procedimiento Scheme} inferior-package-version @var{paquete}" #. type: deffnx -#: guix-git/doc/guix.texi:4742 +#: guix-git/doc/guix.texi:4760 #, no-wrap msgid "{Scheme Procedure} inferior-package-synopsis @var{package}" msgstr "{Procedimiento Scheme} inferior-package-synopsis @var{paquete}" #. type: deffnx -#: guix-git/doc/guix.texi:4743 +#: guix-git/doc/guix.texi:4761 #, no-wrap msgid "{Scheme Procedure} inferior-package-description @var{package}" msgstr "{Procedimiento Scheme} inferior-package-description @var{paquete}" #. type: deffnx -#: guix-git/doc/guix.texi:4744 +#: guix-git/doc/guix.texi:4762 #, no-wrap msgid "{Scheme Procedure} inferior-package-home-page @var{package}" msgstr "{Procedimiento Scheme} inferior-package-home-page @var{paquete}" #. type: deffnx -#: guix-git/doc/guix.texi:4745 +#: guix-git/doc/guix.texi:4763 #, no-wrap msgid "{Scheme Procedure} inferior-package-location @var{package}" msgstr "{Procedimiento Scheme} inferior-package-location @var{paquete}" #. type: deffnx -#: guix-git/doc/guix.texi:4746 +#: guix-git/doc/guix.texi:4764 #, no-wrap msgid "{Scheme Procedure} inferior-package-inputs @var{package}" msgstr "{Procedimiento Scheme} inferior-package-inputs @var{paquete}" #. type: deffnx -#: guix-git/doc/guix.texi:4747 +#: guix-git/doc/guix.texi:4765 #, no-wrap msgid "{Scheme Procedure} inferior-package-native-inputs @var{package}" msgstr "{Procedimiento Scheme} inferior-package-native-inputs @var{paquete}" #. type: deffnx -#: guix-git/doc/guix.texi:4748 +#: guix-git/doc/guix.texi:4766 #, no-wrap msgid "{Scheme Procedure} inferior-package-propagated-inputs @var{package}" msgstr "{Procedimiento Scheme} inferior-package-propagated-inputs @var{paquete}" #. type: deffnx -#: guix-git/doc/guix.texi:4749 +#: guix-git/doc/guix.texi:4767 #, no-wrap msgid "{Scheme Procedure} inferior-package-transitive-propagated-inputs @var{package}" msgstr "{Procedimiento Scheme} inferior-package-transitive-propagated-inputs @var{paquete}" #. type: deffnx -#: guix-git/doc/guix.texi:4750 +#: guix-git/doc/guix.texi:4768 #, no-wrap msgid "{Scheme Procedure} inferior-package-native-search-paths @var{package}" msgstr "{Procedimiento Scheme} inferior-package-native-search-paths @var{paquete}" #. type: deffnx -#: guix-git/doc/guix.texi:4751 +#: guix-git/doc/guix.texi:4769 #, no-wrap msgid "{Scheme Procedure} inferior-package-transitive-native-search-paths @var{package}" msgstr "{Procedimiento Scheme} inferior-package-transitive-native-search-paths @var{paquete}" #. type: deffnx -#: guix-git/doc/guix.texi:4752 +#: guix-git/doc/guix.texi:4770 #, no-wrap msgid "{Scheme Procedure} inferior-package-search-paths @var{package}" msgstr "{Procedimiento Scheme} inferior-package-search-paths @var{paquete}" @@ -12079,34 +12166,34 @@ msgstr "{Procedimiento Scheme} inferior-package-search-paths @var{paquete}" # FUZZY # TODO: contraparte #. type: deffn -#: guix-git/doc/guix.texi:4757 +#: guix-git/doc/guix.texi:4775 msgid "These procedures are the counterpart of package record accessors (@pxref{package Reference}). Most of them work by querying the inferior @var{package} comes from, so the inferior must still be live when you call these procedures." msgstr "Estos procedimientos son la contraparte de los accesos a los registros de paquete (@pxref{package Reference}). La mayor parte funcionan interrogando al inferior del que @var{paquete} viene, por lo que el inferior debe estar vivo cuando llama a dichos procedimientos." #. type: Plain text -#: guix-git/doc/guix.texi:4767 +#: guix-git/doc/guix.texi:4785 #, fuzzy msgid "Inferior packages can be used transparently like any other package or file-like object in G-expressions (@pxref{G-Expressions}). They are also transparently handled by the @code{packages->manifest} procedure, which is commonly used in manifests (@pxref{Invoking guix package, the @option{--manifest} option of @command{guix package}}). Thus you can insert an inferior package pretty much anywhere you would insert a regular package: in manifests, in the @code{packages} field of your @code{operating-system} declaration, and so on." msgstr "Los paquetes de inferiores pueden ser usados transparentemente como cualquier otro paquete u objeto-tipo-archivo en expresiones-G (@pxref{G-Expressions}). También se manejan transparentemente por el procedimiento @code{packages->manifest}, el cual se usa habitualmente en los manifiestos (@pxref{Invoking guix package, the @option{--manifest} option of @command{guix package}}). Por tanto puede insertar un paquete de inferior prácticamente en cualquier lugar que pueda insertar un paquete normal: en manifiestos, en el campo @code{packages} de su declaración @code{operating-system}, etcétera." #. type: section -#: guix-git/doc/guix.texi:4769 +#: guix-git/doc/guix.texi:4787 #, no-wrap msgid "Invoking @command{guix describe}" msgstr "Invocación de @command{guix describe}" #. type: Plain text -#: guix-git/doc/guix.texi:4780 +#: guix-git/doc/guix.texi:4798 msgid "Often you may want to answer questions like: ``Which revision of Guix am I using?'' or ``Which channels am I using?'' This is useful information in many situations: if you want to @emph{replicate} an environment on a different machine or user account, if you want to report a bug or to determine what change in the channels you are using caused it, or if you want to record your system state for reproducibility purposes. The @command{guix describe} command answers these questions." msgstr "A menudo desea responder a preguntas como: ``¿Qué revisión de Guix estoy usando?'' o ``¿Qué canales estoy usando?'' Esto es una información muy útil en muchas situaciones: si quiere @emph{replicar} un entorno en una máquina diferente o cuenta de usuaria, si desea informar de un error o determinar qué cambio en los canales que usa lo causó, o si quiere almacenar el estado de su sistema por razones de reproducibilidad. La orden @command{guix describe} responde a estas preguntas." #. type: Plain text -#: guix-git/doc/guix.texi:4784 +#: guix-git/doc/guix.texi:4802 msgid "When run from a @command{guix pull}ed @command{guix}, @command{guix describe} displays the channel(s) that it was built from, including their repository URL and commit IDs (@pxref{Channels}):" msgstr "Cuando se ejecuta desde un @command{guix} bajado con @command{guix pull}, @command{guix describe} muestra el/los canal/es desde el/los que se construyó, incluyendo la URL de su repositorio y los IDs de las revisiones (@pxref{Channels}):" #. type: example -#: guix-git/doc/guix.texi:4792 +#: guix-git/doc/guix.texi:4810 #, no-wrap msgid "" "$ guix describe\n" @@ -12124,17 +12211,17 @@ msgstr "" " commit: e0fa68c7718fffd33d81af415279d6ddb518f727\n" #. type: Plain text -#: guix-git/doc/guix.texi:4801 +#: guix-git/doc/guix.texi:4819 msgid "If you're familiar with the Git version control system, this is similar in spirit to @command{git describe}; the output is also similar to that of @command{guix pull --list-generations}, but limited to the current generation (@pxref{Invoking guix pull, the @option{--list-generations} option}). Because the Git commit ID shown above unambiguously refers to a snapshot of Guix, this information is all it takes to describe the revision of Guix you're using, and also to replicate it." msgstr "Si está familiarizado con el sistema de control de versiones Git, esto es similar a @command{git describe}; la salida también es similar a la de @command{guix pull --list-generations}, pero limitada a la generación actual (@pxref{Invoking guix pull, the @option{--list-generations} option}). Debido a que el ID de revisión Git mostrado antes refiere sin ambigüedades al estado de Guix, esta información es todo lo necesario para describir la revisión de Guix que usa, y también para replicarla." #. type: Plain text -#: guix-git/doc/guix.texi:4804 +#: guix-git/doc/guix.texi:4822 msgid "To make it easier to replicate Guix, @command{guix describe} can also be asked to return a list of channels instead of the human-readable description above:" msgstr "Para facilitar la replicación de Guix, también se le puede solicitar a @command{guix describe} devolver una lista de canales en vez de la descripción legible por humanos mostrada antes:" #. type: example -#: guix-git/doc/guix.texi:4817 +#: guix-git/doc/guix.texi:4835 #, no-wrap msgid "" "$ guix describe -f channels\n" @@ -12162,190 +12249,190 @@ msgstr "" " \"BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA\")))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:4826 +#: guix-git/doc/guix.texi:4844 msgid "You can save this to a file and feed it to @command{guix pull -C} on some other machine or at a later point in time, which will instantiate @emph{this exact Guix revision} (@pxref{Invoking guix pull, the @option{-C} option}). From there on, since you're able to deploy the same revision of Guix, you can just as well @emph{replicate a complete software environment}. We humbly think that this is @emph{awesome}, and we hope you'll like it too!" msgstr "Puede almacenar esto en un archivo y se lo puede proporcionar a @command{guix pull -C} en otra máquina o en un momento futuro, lo que instanciará @emph{esta revisión exacta de Guix} (@pxref{Invoking guix pull, the @option{-C} option}). De aquí en adelante, ya que puede desplegar la misma revisión de Guix, puede también @emph{replicar un entorno completo de software}. Nosotras humildemente consideramos que esto es @emph{impresionante}, ¡y esperamos que le guste a usted también!" #. type: Plain text -#: guix-git/doc/guix.texi:4829 +#: guix-git/doc/guix.texi:4847 msgid "The details of the options supported by @command{guix describe} are as follows:" msgstr "Los detalles de las opciones aceptadas por @command{guix describe} son las siguientes:" #. type: item -#: guix-git/doc/guix.texi:4831 guix-git/doc/guix.texi:6431 -#: guix-git/doc/guix.texi:14242 +#: guix-git/doc/guix.texi:4849 guix-git/doc/guix.texi:6474 +#: guix-git/doc/guix.texi:14599 #, no-wrap msgid "--format=@var{format}" msgstr "--format=@var{formato}" #. type: itemx -#: guix-git/doc/guix.texi:4832 guix-git/doc/guix.texi:6432 -#: guix-git/doc/guix.texi:14243 +#: guix-git/doc/guix.texi:4850 guix-git/doc/guix.texi:6475 +#: guix-git/doc/guix.texi:14600 #, no-wrap msgid "-f @var{format}" msgstr "-f @var{formato}" #. type: table -#: guix-git/doc/guix.texi:4834 guix-git/doc/guix.texi:14245 +#: guix-git/doc/guix.texi:4852 guix-git/doc/guix.texi:14602 msgid "Produce output in the specified @var{format}, one of:" msgstr "Produce salida en el @var{formato} especificado, uno de:" #. type: item -#: guix-git/doc/guix.texi:4836 +#: guix-git/doc/guix.texi:4854 #, no-wrap msgid "human" msgstr "human" #. type: table -#: guix-git/doc/guix.texi:4838 +#: guix-git/doc/guix.texi:4856 msgid "produce human-readable output;" msgstr "produce salida legible por humanos;" #. type: cindex -#: guix-git/doc/guix.texi:4838 guix-git/doc/guix.texi:5056 +#: guix-git/doc/guix.texi:4856 guix-git/doc/guix.texi:5074 #, no-wrap msgid "channels" msgstr "channels" #. type: table -#: guix-git/doc/guix.texi:4842 +#: guix-git/doc/guix.texi:4860 msgid "produce a list of channel specifications that can be passed to @command{guix pull -C} or installed as @file{~/.config/guix/channels.scm} (@pxref{Invoking guix pull});" msgstr "produce una lista de especificaciones de canales que puede ser pasada a @command{guix pull -C} o instalada como @file{~/.config/guix/channels.scm} (@pxref{Invoking guix pull});" #. type: item -#: guix-git/doc/guix.texi:4842 +#: guix-git/doc/guix.texi:4860 #, no-wrap msgid "channels-sans-intro" msgstr "channels-sans-intro" #. type: table -#: guix-git/doc/guix.texi:4848 +#: guix-git/doc/guix.texi:4866 msgid "like @code{channels}, but omit the @code{introduction} field; use it to produce a channel specification suitable for Guix version 1.1.0 or earlier---the @code{introduction} field has to do with channel authentication (@pxref{Channels, Channel Authentication}) and is not supported by these older versions;" msgstr "como @code{channels}, pero se omite el campo @code{introduction}; se puede usar para producir una especificación de canal adecuada para la versión 1.1.0 de Guix y versiones anteriores---el campo @code{introduction} está relacionado con la verificación de canales (@pxref{Channels, Verificación de canales}) y no está implementado en dichas versiones;" #. type: item -#: guix-git/doc/guix.texi:4848 guix-git/doc/guix.texi:12109 +#: guix-git/doc/guix.texi:4866 guix-git/doc/guix.texi:12424 #, no-wrap msgid "json" msgstr "json" #. type: cindex -#: guix-git/doc/guix.texi:4849 +#: guix-git/doc/guix.texi:4867 #, no-wrap msgid "JSON" msgstr "JSON" #. type: table -#: guix-git/doc/guix.texi:4851 +#: guix-git/doc/guix.texi:4869 msgid "produce a list of channel specifications in JSON format;" msgstr "produce una lista de especificaciones de canales en formato JSON;" #. type: item -#: guix-git/doc/guix.texi:4851 guix-git/doc/guix.texi:14247 +#: guix-git/doc/guix.texi:4869 guix-git/doc/guix.texi:14604 #, no-wrap msgid "recutils" msgstr "recutils" #. type: table -#: guix-git/doc/guix.texi:4853 +#: guix-git/doc/guix.texi:4871 msgid "produce a list of channel specifications in Recutils format." msgstr "produce una lista de especificaciones de canales en formato Recutils." #. type: item -#: guix-git/doc/guix.texi:4855 +#: guix-git/doc/guix.texi:4873 #, no-wrap msgid "--list-formats" msgstr "--list-formats" #. type: table -#: guix-git/doc/guix.texi:4857 +#: guix-git/doc/guix.texi:4875 msgid "Display available formats for @option{--format} option." msgstr "Muestra los formatos disponibles para la opción @option{--format}." #. type: table -#: guix-git/doc/guix.texi:4861 +#: guix-git/doc/guix.texi:4879 msgid "Display information about @var{profile}." msgstr "Muestra información acerca del @var{perfil}." #. type: section -#: guix-git/doc/guix.texi:4864 +#: guix-git/doc/guix.texi:4882 #, no-wrap msgid "Invoking @command{guix archive}" msgstr "Invocación de @command{guix archive}" #. type: command{#1} -#: guix-git/doc/guix.texi:4866 +#: guix-git/doc/guix.texi:4884 #, no-wrap msgid "guix archive" msgstr "guix archive" #. type: cindex -#: guix-git/doc/guix.texi:4867 +#: guix-git/doc/guix.texi:4885 #, no-wrap msgid "archive" msgstr "archivo" #. type: Plain text -#: guix-git/doc/guix.texi:4873 +#: guix-git/doc/guix.texi:4891 msgid "The @command{guix archive} command allows users to @dfn{export} files from the store into a single archive, and to later @dfn{import} them on a machine that runs Guix. In particular, it allows store files to be transferred from one machine to the store on another machine." msgstr "La orden @command{guix archive} permite a las usuarias @dfn{exportar} archivos del almacén en un único archivador, e @dfn{importarlos} posteriormente en una máquina que ejecute Guix. En particular, permite que los archivos del almacén sean transferidos de una máquina al almacén de otra máquina." #. type: quotation -#: guix-git/doc/guix.texi:4877 +#: guix-git/doc/guix.texi:4895 msgid "If you're looking for a way to produce archives in a format suitable for tools other than Guix, @pxref{Invoking guix pack}." msgstr "Si está buscando una forma de producir archivos en un formato adecuado para herramientas distintas a Guix, @pxref{Invoking guix pack}." #. type: cindex -#: guix-git/doc/guix.texi:4879 +#: guix-git/doc/guix.texi:4897 #, no-wrap msgid "exporting store items" msgstr "exportar elementos del almacén" #. type: Plain text -#: guix-git/doc/guix.texi:4881 +#: guix-git/doc/guix.texi:4899 msgid "To export store files as an archive to standard output, run:" msgstr "Para exportar archivos del almacén como un archivo por la salida estándar, ejecute:" #. type: example -#: guix-git/doc/guix.texi:4884 +#: guix-git/doc/guix.texi:4902 #, no-wrap msgid "guix archive --export @var{options} @var{specifications}...\n" msgstr "guix archive --export @var{opciones} @var{especificaciones}...\n" #. type: Plain text -#: guix-git/doc/guix.texi:4891 +#: guix-git/doc/guix.texi:4909 msgid "@var{specifications} may be either store file names or package specifications, as for @command{guix package} (@pxref{Invoking guix package}). For instance, the following command creates an archive containing the @code{gui} output of the @code{git} package and the main output of @code{emacs}:" msgstr "@var{especificaciones} deben ser o bien nombres de archivos del almacén o especificaciones de paquetes, como las de @command{guix package} (@pxref{Invoking guix package}). Por ejemplo, la siguiente orden crea un archivo que contiene la salida @code{gui} del paquete @code{git} y la salida principal de @code{emacs}:" #. type: example -#: guix-git/doc/guix.texi:4894 +#: guix-git/doc/guix.texi:4912 #, no-wrap msgid "guix archive --export git:gui /gnu/store/...-emacs-24.3 > great.nar\n" msgstr "guix archive --export git:gui /gnu/store/...-emacs-24.3 > great.nar\n" #. type: Plain text -#: guix-git/doc/guix.texi:4899 +#: guix-git/doc/guix.texi:4917 msgid "If the specified packages are not built yet, @command{guix archive} automatically builds them. The build process may be controlled with the common build options (@pxref{Common Build Options})." msgstr "Si los paquetes especificados no están todavía construidos, @command{guix archive} los construye automáticamente. El proceso de construcción puede controlarse mediante las opciones de construcción comunes (@pxref{Common Build Options})." #. type: Plain text -#: guix-git/doc/guix.texi:4902 +#: guix-git/doc/guix.texi:4920 msgid "To transfer the @code{emacs} package to a machine connected over SSH, one would run:" msgstr "Para transferir el paquete @code{emacs} a una máquina conectada por SSH, se ejecutaría:" #. type: example -#: guix-git/doc/guix.texi:4905 +#: guix-git/doc/guix.texi:4923 #, no-wrap msgid "guix archive --export -r emacs | ssh the-machine guix archive --import\n" msgstr "guix archive --export -r emacs | ssh otra-maquina guix archive --import\n" #. type: Plain text -#: guix-git/doc/guix.texi:4910 +#: guix-git/doc/guix.texi:4928 msgid "Similarly, a complete user profile may be transferred from one machine to another like this:" msgstr "De manera similar, un perfil de usuaria completo puede transferirse de una máquina a otra de esta manera:" #. type: example -#: guix-git/doc/guix.texi:4914 +#: guix-git/doc/guix.texi:4932 #, no-wrap msgid "" "guix archive --export -r $(readlink -f ~/.guix-profile) | \\\n" @@ -12355,190 +12442,190 @@ msgstr "" " ssh otra-maquina guix archive --import\n" #. type: Plain text -#: guix-git/doc/guix.texi:4924 +#: guix-git/doc/guix.texi:4942 msgid "However, note that, in both examples, all of @code{emacs} and the profile as well as all of their dependencies are transferred (due to @option{-r}), regardless of what is already available in the store on the target machine. The @option{--missing} option can help figure out which items are missing from the target store. The @command{guix copy} command simplifies and optimizes this whole process, so this is probably what you should use in this case (@pxref{Invoking guix copy})." msgstr "No obstante, fíjese que, en ambos ejemplos, todo @code{emacs} y el perfil como también todas sus dependencias son transferidas (debido a la @option{-r}), independiente de lo que estuviese ya disponible en el almacén de la máquina objetivo. La opción @option{--missing} puede ayudar a esclarecer qué elementos faltan en el almacén objetivo. La orden @command{guix copy} simplifica y optimiza este proceso completo, así que probablemente es lo que debería usar en este caso (@pxref{Invoking guix copy})." #. type: cindex -#: guix-git/doc/guix.texi:4925 +#: guix-git/doc/guix.texi:4943 #, no-wrap msgid "nar, archive format" msgstr "nar, formato de archivo" #. type: cindex -#: guix-git/doc/guix.texi:4926 +#: guix-git/doc/guix.texi:4944 #, no-wrap msgid "normalized archive (nar)" msgstr "archivo normalizado (nar)" # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:4927 +#: guix-git/doc/guix.texi:4945 #, no-wrap msgid "nar bundle, archive format" msgstr "empaquetado nar, formato de archivo" #. type: Plain text -#: guix-git/doc/guix.texi:4932 +#: guix-git/doc/guix.texi:4950 msgid "Each store item is written in the @dfn{normalized archive} or @dfn{nar} format (described below), and the output of @command{guix archive --export} (and input of @command{guix archive --import}) is a @dfn{nar bundle}." msgstr "Cada elemento del almacén se escribe en formato de @dfn{archivo normalizado} o @dfn{nar} (descrito a continuación), y la salida de @command{guix archive --export} (y entrada de @command{guix archive --import}) es un @dfn{empaquetado nar}." #. type: Plain text -#: guix-git/doc/guix.texi:4942 +#: guix-git/doc/guix.texi:4960 msgid "The nar format is comparable in spirit to `tar', but with differences that make it more appropriate for our purposes. First, rather than recording all Unix metadata for each file, the nar format only mentions the file type (regular, directory, or symbolic link); Unix permissions and owner/group are dismissed. Second, the order in which directory entries are stored always follows the order of file names according to the C locale collation order. This makes archive production fully deterministic." msgstr "El formato ``nar'' es comparable a `tar' en el espíritu, pero con diferencias que lo hacen más apropiado para nuestro propósito. Primero, en vez de almacenar todos los metadatos Unix de cada archivo, el formato nar solo menciona el tipo de archivo (normal, directorio o enlace simbólico); los permisos Unix y el par propietario/grupo se descartan. En segundo lugar, el orden en el cual las entradas de directorios se almacenan siempre siguen el orden de los nombres de archivos de acuerdo a la ordenación de cadenas en la localización C. Esto hace la producción del archivo completamente determinista." #. type: Plain text -#: guix-git/doc/guix.texi:4946 +#: guix-git/doc/guix.texi:4964 msgid "That nar bundle format is essentially the concatenation of zero or more nars along with metadata for each store item it contains: its file name, references, corresponding derivation, and a digital signature." msgstr "El formato del empaquetado nar es esencialmente una concatenación de cero o más nar junto a metadatos para cada elemento del almacén que contiene: su nombre de archivo, referencias, derivación correspondiente y firma digital." #. type: Plain text -#: guix-git/doc/guix.texi:4952 +#: guix-git/doc/guix.texi:4970 msgid "When exporting, the daemon digitally signs the contents of the archive, and that digital signature is appended. When importing, the daemon verifies the signature and rejects the import in case of an invalid signature or if the signing key is not authorized." msgstr "Durante la exportación, el daemon firma digitalmente los contenidos del archivo, y la firma digital se adjunta. Durante la importación, el daemon verifica la firma y rechaza la importación en caso de una firma inválida o si la clave firmante no está autorizada." #. type: Plain text -#: guix-git/doc/guix.texi:4954 +#: guix-git/doc/guix.texi:4972 msgid "The main options are:" msgstr "Las opciones principales son:" #. type: item -#: guix-git/doc/guix.texi:4956 +#: guix-git/doc/guix.texi:4974 #, no-wrap msgid "--export" msgstr "--export" #. type: table -#: guix-git/doc/guix.texi:4959 +#: guix-git/doc/guix.texi:4977 msgid "Export the specified store files or packages (see below). Write the resulting archive to the standard output." msgstr "Exporta los archivos del almacén o paquetes (véase más adelante). Escribe el archivo resultante a la salida estándar." #. type: table -#: guix-git/doc/guix.texi:4962 +#: guix-git/doc/guix.texi:4980 msgid "Dependencies are @emph{not} included in the output, unless @option{--recursive} is passed." msgstr "Las dependencias @emph{no} están incluidas en la salida, a menos que se use @option{--recursive}." #. type: itemx -#: guix-git/doc/guix.texi:4963 guix-git/doc/guix.texi:11830 -#: guix-git/doc/guix.texi:11956 guix-git/doc/guix.texi:11981 -#: guix-git/doc/guix.texi:12013 guix-git/doc/guix.texi:12184 -#: guix-git/doc/guix.texi:12225 guix-git/doc/guix.texi:12276 -#: guix-git/doc/guix.texi:12301 guix-git/doc/guix.texi:12317 -#: guix-git/doc/guix.texi:12365 guix-git/doc/guix.texi:12401 +#: guix-git/doc/guix.texi:4981 guix-git/doc/guix.texi:12144 +#: guix-git/doc/guix.texi:12271 guix-git/doc/guix.texi:12296 +#: guix-git/doc/guix.texi:12328 guix-git/doc/guix.texi:12499 +#: guix-git/doc/guix.texi:12540 guix-git/doc/guix.texi:12591 +#: guix-git/doc/guix.texi:12616 guix-git/doc/guix.texi:12632 +#: guix-git/doc/guix.texi:12680 guix-git/doc/guix.texi:12716 #, no-wrap msgid "-r" msgstr "-r" #. type: item -#: guix-git/doc/guix.texi:4964 guix-git/doc/guix.texi:11829 -#: guix-git/doc/guix.texi:11955 guix-git/doc/guix.texi:11980 -#: guix-git/doc/guix.texi:12012 guix-git/doc/guix.texi:12183 -#: guix-git/doc/guix.texi:12224 guix-git/doc/guix.texi:12275 -#: guix-git/doc/guix.texi:12300 guix-git/doc/guix.texi:12316 -#: guix-git/doc/guix.texi:12364 guix-git/doc/guix.texi:12400 -#: guix-git/doc/guix.texi:12449 +#: guix-git/doc/guix.texi:4982 guix-git/doc/guix.texi:12143 +#: guix-git/doc/guix.texi:12270 guix-git/doc/guix.texi:12295 +#: guix-git/doc/guix.texi:12327 guix-git/doc/guix.texi:12498 +#: guix-git/doc/guix.texi:12539 guix-git/doc/guix.texi:12590 +#: guix-git/doc/guix.texi:12615 guix-git/doc/guix.texi:12631 +#: guix-git/doc/guix.texi:12679 guix-git/doc/guix.texi:12715 +#: guix-git/doc/guix.texi:12764 #, no-wrap msgid "--recursive" msgstr "--recursive" #. type: table -#: guix-git/doc/guix.texi:4969 +#: guix-git/doc/guix.texi:4987 msgid "When combined with @option{--export}, this instructs @command{guix archive} to include dependencies of the given items in the archive. Thus, the resulting archive is self-contained: it contains the closure of the exported store items." msgstr "Cuando se combina con @option{--export}, instruye a @command{guix archive} para incluir las dependencias de los elementos dados en el archivo. Por tanto, el archivo resultante está auto-contenido: contiene la clausura de los elementos exportados del almacén." #. type: item -#: guix-git/doc/guix.texi:4970 +#: guix-git/doc/guix.texi:4988 #, no-wrap msgid "--import" msgstr "--import" #. type: table -#: guix-git/doc/guix.texi:4975 +#: guix-git/doc/guix.texi:4993 msgid "Read an archive from the standard input, and import the files listed therein into the store. Abort if the archive has an invalid digital signature, or if it is signed by a public key not among the authorized keys (see @option{--authorize} below)." msgstr "Lee un archivo de la entrada estándar, e importa los archivos enumerados allí en el almacén. La operación se aborta si el archivo tiene una firma digital no válida, o si está firmado por una clave pública que no está entre las autorizadas (vea @option{--authorize} más adelante)." #. type: item -#: guix-git/doc/guix.texi:4976 +#: guix-git/doc/guix.texi:4994 #, no-wrap msgid "--missing" msgstr "--missing" #. type: table -#: guix-git/doc/guix.texi:4980 +#: guix-git/doc/guix.texi:4998 msgid "Read a list of store file names from the standard input, one per line, and write on the standard output the subset of these files missing from the store." msgstr "Lee una lista de nombres de archivos del almacén de la entrada estándar, uno por línea, y escribe en la salida estándar el subconjunto de estos archivos que faltan en el almacén." #. type: item -#: guix-git/doc/guix.texi:4981 +#: guix-git/doc/guix.texi:4999 #, no-wrap msgid "--generate-key[=@var{parameters}]" msgstr "--generate-key[=@var{parámetros}]" #. type: cindex -#: guix-git/doc/guix.texi:4982 +#: guix-git/doc/guix.texi:5000 #, no-wrap msgid "signing, archives" msgstr "firmar, archivos" #. type: table -#: guix-git/doc/guix.texi:4989 +#: guix-git/doc/guix.texi:5007 msgid "Generate a new key pair for the daemon. This is a prerequisite before archives can be exported with @option{--export}. This operation is usually instantaneous but it can take time if the system's entropy pool needs to be refilled. On Guix System, @code{guix-service-type} takes care of generating this key pair the first boot." msgstr "Genera un nuevo par de claves para el daemon. Esto es un prerrequisito antes de que los archivos puedan ser exportados con @option{--export}. Esta operación es habitualmente instantánea pero puede tomar tiempo si la piscina de entropía necesita tiene que rellenarse. En el sistema Guix @code{guix-service-type} se encarga de generar este par de claves en el primer arranque." #. type: table -#: guix-git/doc/guix.texi:4999 +#: guix-git/doc/guix.texi:5017 msgid "The generated key pair is typically stored under @file{/etc/guix}, in @file{signing-key.pub} (public key) and @file{signing-key.sec} (private key, which must be kept secret). When @var{parameters} is omitted, an ECDSA key using the Ed25519 curve is generated, or, for Libgcrypt versions before 1.6.0, it is a 4096-bit RSA key. Alternatively, @var{parameters} can specify @code{genkey} parameters suitable for Libgcrypt (@pxref{General public-key related Functions, @code{gcry_pk_genkey},, gcrypt, The Libgcrypt Reference Manual})." msgstr "El par de claves generado se almacena típicamente bajo @file{/etc/guix}, en @file{signing-key.pub} (clave pública) y @file{signing-key.sec} (clave privada, que se debe mantener secreta). Cuando @var{parámetros} se omite, se genera una clave ECDSA usando la curva Ed25519, o, en versiones de Libgcrypt previas a la 1.6.0, es una clave RSA de 4096 bits. De manera alternativa, los @var{parámetros} pueden especificar parámetros @code{genkey} adecuados para Libgcrypt (@pxref{General public-key related Functions, @code{gcry_pk_genkey},, gcrypt, The Libgcrypt Reference Manual})." #. type: item -#: guix-git/doc/guix.texi:5000 +#: guix-git/doc/guix.texi:5018 #, no-wrap msgid "--authorize" msgstr "--authorize" #. type: cindex -#: guix-git/doc/guix.texi:5001 +#: guix-git/doc/guix.texi:5019 #, no-wrap msgid "authorizing, archives" msgstr "autorizar, archivos" #. type: table -#: guix-git/doc/guix.texi:5005 +#: guix-git/doc/guix.texi:5023 msgid "Authorize imports signed by the public key passed on standard input. The public key must be in ``s-expression advanced format''---i.e., the same format as the @file{signing-key.pub} file." msgstr "Autoriza importaciones firmadas con la clave pública pasada por la entrada estándar. La clave pública debe estar en el ``formato avanzado de expresiones-s''---es decir, el mismo formato que el archivo @file{signing-key.pub}." #. type: table -#: guix-git/doc/guix.texi:5012 +#: guix-git/doc/guix.texi:5030 msgid "The list of authorized keys is kept in the human-editable file @file{/etc/guix/acl}. The file contains @url{https://people.csail.mit.edu/rivest/Sexp.txt, ``advanced-format s-expressions''} and is structured as an access-control list in the @url{https://theworld.com/~cme/spki.txt, Simple Public-Key Infrastructure (SPKI)}." msgstr "La lista de claves autorizadas se mantiene en el archivo editable por personas @file{/etc/guix/acl}. El archivo contiene @url{https://people.csail.mit.edu/rivest/Sexp.text, ``expresiones-s en formato avanzado''} y está estructurado como una lista de control de acceso en el formato @url{https://theworld.com/~cme/spki.txt, Infraestructura Simple de Clave Pública (SPKI)}." #. type: item -#: guix-git/doc/guix.texi:5013 +#: guix-git/doc/guix.texi:5031 #, no-wrap msgid "--extract=@var{directory}" msgstr "--extract=@var{directorio}" #. type: itemx -#: guix-git/doc/guix.texi:5014 +#: guix-git/doc/guix.texi:5032 #, no-wrap msgid "-x @var{directory}" msgstr "-x @var{directorio}" #. type: table -#: guix-git/doc/guix.texi:5018 +#: guix-git/doc/guix.texi:5036 msgid "Read a single-item archive as served by substitute servers (@pxref{Substitutes}) and extract it to @var{directory}. This is a low-level operation needed in only very narrow use cases; see below." msgstr "Lee un único elemento del archivo como es ofrecido por los servidores de sustituciones (@pxref{Substitutes}) y lo extrae a @var{directorio}. Esta es una operación de bajo nivel necesitada únicamente para casos muy concretos; véase a continuación." #. type: table -#: guix-git/doc/guix.texi:5021 +#: guix-git/doc/guix.texi:5039 #, fuzzy #| msgid "For example, the following command extracts the substitute for Emacs served by @code{@value{SUBSTITUTE-SERVER}} to @file{/tmp/emacs}:" msgid "For example, the following command extracts the substitute for Emacs served by @code{@value{SUBSTITUTE-SERVER-1}} to @file{/tmp/emacs}:" msgstr "Por ejemplo, la siguiente orden extrae la sustitución de Emacs ofrecida por @code{@value{SUBSTITUTE-SERVER}} en @file{/tmp/emacs}:" #. type: example -#: guix-git/doc/guix.texi:5026 +#: guix-git/doc/guix.texi:5044 #, fuzzy, no-wrap #| msgid "" #| "$ wget -O - \\\n" @@ -12554,35 +12641,35 @@ msgstr "" " | gunzip | guix archive -x /tmp/emacs\n" #. type: table -#: guix-git/doc/guix.texi:5033 +#: guix-git/doc/guix.texi:5051 msgid "Single-item archives are different from multiple-item archives produced by @command{guix archive --export}; they contain a single store item, and they do @emph{not} embed a signature. Thus this operation does @emph{no} signature verification and its output should be considered unsafe." msgstr "Los archivos de un único elemento son diferentes de los archivos de múltiples elementos producidos por @command{guix archive --export}; contienen un único elemento del almacén, y @emph{no} embeben una firma. Por tanto esta operación @emph{no} verifica la firma y su salida debe considerarse insegura." #. type: table -#: guix-git/doc/guix.texi:5037 +#: guix-git/doc/guix.texi:5055 msgid "The primary purpose of this operation is to facilitate inspection of archive contents coming from possibly untrusted substitute servers (@pxref{Invoking guix challenge})." msgstr "El propósito primario de esta operación es facilitar la inspección de los contenidos de un archivo que provenga probablemente de servidores de sustituciones en los que no se confía (@pxref{Invoking guix challenge})." #. type: item -#: guix-git/doc/guix.texi:5038 +#: guix-git/doc/guix.texi:5056 #, no-wrap msgid "--list" msgstr "--list" #. type: itemx -#: guix-git/doc/guix.texi:5039 guix-git/doc/guix.texi:12171 -#: guix-git/doc/guix.texi:12218 +#: guix-git/doc/guix.texi:5057 guix-git/doc/guix.texi:12486 +#: guix-git/doc/guix.texi:12533 #, no-wrap msgid "-t" msgstr "-t" #. type: table -#: guix-git/doc/guix.texi:5043 +#: guix-git/doc/guix.texi:5061 msgid "Read a single-item archive as served by substitute servers (@pxref{Substitutes}) and print the list of files it contains, as in this example:" msgstr "Lee un único elemento del archivo como es ofrecido por los servidores de sustituciones (@pxref{Substitutes}) e imprime la lista de archivos que contiene, como en este ejemplo:" #. type: example -#: guix-git/doc/guix.texi:5048 +#: guix-git/doc/guix.texi:5066 #, fuzzy, no-wrap #| msgid "" #| "$ wget -O - \\\n" @@ -12598,49 +12685,49 @@ msgstr "" " | lzip -d | guix archive -t\n" #. type: cindex -#: guix-git/doc/guix.texi:5059 +#: guix-git/doc/guix.texi:5077 #, no-wrap msgid "@command{guix pull}, configuration file" msgstr "@command{guix pull}, archivo de configuración" #. type: cindex -#: guix-git/doc/guix.texi:5060 +#: guix-git/doc/guix.texi:5078 #, no-wrap msgid "configuration of @command{guix pull}" msgstr "configuración de @command{guix pull}" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:5071 +#: guix-git/doc/guix.texi:5089 msgid "Guix and its package collection are updated by running @command{guix pull} (@pxref{Invoking guix pull}). By default @command{guix pull} downloads and deploys Guix itself from the official GNU@tie{}Guix repository. This can be customized by defining @dfn{channels} in the @file{~/.config/guix/channels.scm} file. A channel specifies a URL and branch of a Git repository to be deployed, and @command{guix pull} can be instructed to pull from one or more channels. In other words, channels can be used to @emph{customize} and to @emph{extend} Guix, as we will see below. Guix is able to take into account security concerns and deal with authenticated updates." msgstr "Guix y su colección de paquetes se actualizan ejecutando @command{guix pull} (@pxref{Invoking guix pull}). Por defecto @command{guix pull} descarga y despliega el mismo Guix del repositorio oficial de GNU@tie{}Guix. Esto se puede personalizar definiendo @dfn{canales} en el archivo @file{~/.config/guix/channels.scm}. Un canal especifica una URL y una rama de un repositorio Git que será desplegada, y @command{guix pull} puede ser instruido para tomar los datos de uno o más canales. En otras palabras, los canales se pueden usar para @emph{personalizar} y para @emph{extender} Guix, como vemos a continuación. Guix tiene en cuenta consideraciones de seguridad e implementa actualizaciones verificadas." #. type: cindex -#: guix-git/doc/guix.texi:5089 +#: guix-git/doc/guix.texi:5107 #, no-wrap msgid "extending the package collection (channels)" msgstr "extender la colección de paquetes (canales)" #. type: cindex -#: guix-git/doc/guix.texi:5090 +#: guix-git/doc/guix.texi:5108 #, no-wrap msgid "variant packages (channels)" msgstr "paquetes personalizados (canales)" #. type: Plain text -#: guix-git/doc/guix.texi:5094 +#: guix-git/doc/guix.texi:5112 #, fuzzy msgid "You can specify @emph{additional channels} to pull from. To use a channel, write @code{~/.config/guix/channels.scm} to instruct @command{guix pull} to pull from it @emph{in addition} to the default Guix channel(s):" msgstr "Puede especificar @emph{canales adicionales} de los que obtener nuevas versiones. Para usar un canal escriba @code{~/.config/guix/channels.scm}, lo que instruirá a @command{guix pull} para obtener datos de él @emph{además} del o los canales predeterminados de Guix:" #. type: vindex -#: guix-git/doc/guix.texi:5095 +#: guix-git/doc/guix.texi:5113 #, no-wrap msgid "%default-channels" msgstr "%default-channels" #. type: lisp -#: guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5120 #, no-wrap msgid "" ";; Add variant packages to those Guix provides.\n" @@ -12656,12 +12743,12 @@ msgstr "" " %default-channels)\n" #. type: Plain text -#: guix-git/doc/guix.texi:5112 +#: guix-git/doc/guix.texi:5130 msgid "Note that the snippet above is (as always!)@: Scheme code; we use @code{cons} to add a channel the list of channels that the variable @code{%default-channels} is bound to (@pxref{Pairs, @code{cons} and lists,, guile, GNU Guile Reference Manual}). With this file in place, @command{guix pull} builds not only Guix but also the package modules from your own repository. The result in @file{~/.config/guix/current} is the union of Guix with your own package modules:" msgstr "Fíjese que el fragmento previo es (¡como siempre!)@: código Scheme; usamos @code{cons} para añadir un canal a la lista de canales a la que la variable @code{%default-channels} hace referencia (@pxref{Pairs, @code{cons} and lists,, guile, GNU Guile Reference Manual}). Con el archivo en este lugar, @command{guix pull} no solo construye Guix sino también los módulos de paquetes de su propio repositorio. El resultado en @file{~/.config/guix/current} es la unión de Guix con sus propios módulos de paquetes:" #. type: example -#: guix-git/doc/guix.texi:5127 +#: guix-git/doc/guix.texi:5145 #, no-wrap msgid "" "$ guix pull --list-generations\n" @@ -12694,17 +12781,17 @@ msgstr "" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:5135 +#: guix-git/doc/guix.texi:5153 msgid "The output of @command{guix pull} above shows that Generation@tie{}19 includes both Guix and packages from the @code{variant-personal-packages} channel. Among the new and upgraded packages that are listed, some like @code{variant-gimp} and @code{variant-emacs-with-cool-features} might come from @code{variant-packages}, while others come from the Guix default channel." msgstr "La salida de @command{guix pull} previa muestra que la generación@tie{}19 incluye tanto Guix como paquetes del canal @code{paquetes-personalizados}. Entre los paquetes nuevos y actualizados que son enumerados, algunos como @code{mi-gimp} y @code{mi-emacs-con-cosas-bonitas} pueden venir de @code{paquetes-personalizados}, mientras que otros vienen del canal predeterminado de Guix." #. type: Plain text -#: guix-git/doc/guix.texi:5144 +#: guix-git/doc/guix.texi:5162 msgid "The channel called @code{guix} specifies where Guix itself---its command-line tools as well as its package collection---should be downloaded. For instance, suppose you want to update from another copy of the Guix repository at @code{example.org}, and specifically the @code{super-hacks} branch, you can write in @code{~/.config/guix/channels.scm} this specification:" msgstr "El canal llamado @code{guix} especifica de dónde debe descargarse el mismo Guix---sus herramientas de línea de órdenes y su colección de paquetes---. Por ejemplo, suponga que quiere actualizar de otra copia del repositorio Guix en @code{example.org}, y específicamente la rama @code{super-hacks}, para ello puede escribir en @code{~/.config/guix/channels.scm} esta especificación:" #. type: lisp -#: guix-git/doc/guix.texi:5151 +#: guix-git/doc/guix.texi:5169 #, no-wrap msgid "" ";; Tell 'guix pull' to use another repo.\n" @@ -12720,17 +12807,17 @@ msgstr "" " (branch \"super-hacks\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5157 +#: guix-git/doc/guix.texi:5175 msgid "From there on, @command{guix pull} will fetch code from the @code{super-hacks} branch of the repository at @code{example.org}. The authentication concern is addressed below ((@pxref{Channel Authentication})." msgstr "De aquí en adelante, @command{guix pull} obtendrá el código de la rama @code{super-hacks} del repositorio en @code{example.org}. Las cuestiones relacionadas con la verificación se tratan más adelante (@pxref{Channel Authentication})." #. type: Plain text -#: guix-git/doc/guix.texi:5168 +#: guix-git/doc/guix.texi:5186 msgid "The @command{guix pull --list-generations} output above shows precisely which commits were used to build this instance of Guix. We can thus replicate it, say, on another machine, by providing a channel specification in @file{~/.config/guix/channels.scm} that is ``pinned'' to these commits:" msgstr "La salida de @command{guix pull --list-generations} previa muestra precisamente qué revisiones se usaron para construir esta instancia de Guix. Por tanto podemos replicarla, digamos, en otra máquina, proporcionando una especificaciones de canales en @file{~/.config/guix/channels.scm} que está ``clavada'' en estas revisiones:" #. type: lisp -#: guix-git/doc/guix.texi:5179 +#: guix-git/doc/guix.texi:5197 #, no-wrap msgid "" ";; Deploy specific commits of my channels of interest.\n" @@ -12754,37 +12841,37 @@ msgstr "" " (branch \"dd3df5e2c8818760a8fc0bd699e55d3b69fef2bb\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5186 +#: guix-git/doc/guix.texi:5204 msgid "The @command{guix describe --format=channels} command can even generate this list of channels directly (@pxref{Invoking guix describe}). The resulting file can be used with the -C options of @command{guix pull} (@pxref{Invoking guix pull}) or @command{guix time-machine} (@pxref{Invoking guix time-machine})." msgstr "La orden @command{guix describe --format=channels} puede incluso generar esta lista de canales directamente (@pxref{Invoking guix describe}). El archivo resultante puede usarse con la opción -C de @command{guix pull} (@pxref{Invoking guix pull}) o @command{guix time-machine} (@pxref{Invoking guix time-machine})." #. type: Plain text -#: guix-git/doc/guix.texi:5193 +#: guix-git/doc/guix.texi:5211 msgid "At this point the two machines run the @emph{exact same Guix}, with access to the @emph{exact same packages}. The output of @command{guix build gimp} on one machine will be exactly the same, bit for bit, as the output of the same command on the other machine. It also means both machines have access to all the source code of Guix and, transitively, to all the source code of every package it defines." msgstr "En este punto las dos máquinas ejecutan @emph{exactamente el mismo Guix}, con acceso a @emph{exactamente los mismos paquetes}. La salida de @command{guix build gimp} en una máquina debe ser exactamente la misma, bit a bit, que la salida de la misma orden en la otra máquina. Esto también significa que ambas máquinas tienen acceso a todo el código fuente de Guix y, transitivamente, a todo el código fuente de cada paquete que define." #. type: Plain text -#: guix-git/doc/guix.texi:5198 +#: guix-git/doc/guix.texi:5216 msgid "This gives you super powers, allowing you to track the provenance of binary artifacts with very fine grain, and to reproduce software environments at will---some sort of ``meta reproducibility'' capabilities, if you will. @xref{Inferiors}, for another way to take advantage of these super powers." msgstr "Esto le proporciona superpoderes, lo que le permite seguir la pista de la procedencia de los artefactos binarios con un grano muy fino, y reproducir entornos de software a su voluntad---un tipo de capacidad de ``meta-reproducibilidad'', si lo desea. @xref{Inferiors}, para otro modo de tomar ventaja de estos superpoderes." #. type: anchor{#1} -#: guix-git/doc/guix.texi:5203 +#: guix-git/doc/guix.texi:5221 msgid "channel-authentication" msgstr "channel-authentication" #. type: Plain text -#: guix-git/doc/guix.texi:5209 +#: guix-git/doc/guix.texi:5227 msgid "The @command{guix pull} and @command{guix time-machine} commands @dfn{authenticate} the code retrieved from channels: they make sure each commit that is fetched is signed by an authorized developer. The goal is to protect from unauthorized modifications to the channel that would lead users to run malicious code." msgstr "Las órdenes @command{guix pull} y @command{guix time-machine} @dfn{verifican} el código obtenido de los canales: se aseguran de que cada commit que se obtenga se encuentre firmado por una desarrolladora autorizada. El objetivo es proteger de modificaciones no-autorizadas al canal que podrían provocar que las usuarias ejecuten código pernicioso." #. type: Plain text -#: guix-git/doc/guix.texi:5214 +#: guix-git/doc/guix.texi:5232 msgid "As a user, you must provide a @dfn{channel introduction} in your channels file so that Guix knows how to authenticate its first commit. A channel specification, including its introduction, looks something along these lines:" msgstr "Como usuaria, debe proporcionar una @dfn{presentación del canal} en su archivo de canales de modo que Guix sepa como verificar su primera revision. La especificación de una canal, incluyendo su introducción, es más o menos así:" #. type: lisp -#: guix-git/doc/guix.texi:5224 +#: guix-git/doc/guix.texi:5242 #, no-wrap msgid "" "(channel\n" @@ -12806,28 +12893,28 @@ msgstr "" " \"CABB A931 C0FF EEC6 900D 0CFB 090B 1199 3D9A EBB5\"))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5230 +#: guix-git/doc/guix.texi:5248 msgid "The specification above shows the name and URL of the channel. The call to @code{make-channel-introduction} above specifies that authentication of this channel starts at commit @code{6f0d8cc@dots{}}, which is signed by the OpenPGP key with fingerprint @code{CABB A931@dots{}}." msgstr "La especificación previa muestra el nombre y la URL del canal. La llamada a @code{make-channel-introduction} especifica que la identificación de este canal empieza en la revisión @code{6f0d8cc@dots{}}, que está firmada por la clave de OpenPGP que tiene la huella @code{CABB A931@dots{}}." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:5236 +#: guix-git/doc/guix.texi:5254 msgid "For the main channel, called @code{guix}, you automatically get that information from your Guix installation. For other channels, include the channel introduction provided by the channel authors in your @file{channels.scm} file. Make sure you retrieve the channel introduction from a trusted source since that is the root of your trust." msgstr "En el canal principal, llamado @code{guix}, obtiene esta información de manera automática desde su instalación de Guix. Para otros canales, incluya la presentación del canal proporcionada por sus autoras en su archivo @file{channels.scm}. Asegúrese de obtener la presentación del canal desde una fuente confiable ya que es la raíz de su confianza." #. type: Plain text -#: guix-git/doc/guix.texi:5238 +#: guix-git/doc/guix.texi:5256 msgid "If you're curious about the authentication mechanics, read on!" msgstr "Si tiene curiosidad sobre los mecanismos de identificación y verificación, ¡siga leyendo!" #. type: Plain text -#: guix-git/doc/guix.texi:5249 +#: guix-git/doc/guix.texi:5267 msgid "When running @command{guix pull}, Guix will first compile the definitions of every available package. This is an expensive operation for which substitutes (@pxref{Substitutes}) may be available. The following snippet in @file{channels.scm} will ensure that @command{guix pull} uses the latest commit with available substitutes for the package definitions: this is done by querying the continuous integration server at @url{https://ci.guix.gnu.org}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5252 +#: guix-git/doc/guix.texi:5270 #, fuzzy, no-wrap msgid "" "(use-modules (guix ci))\n" @@ -12837,7 +12924,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:5256 +#: guix-git/doc/guix.texi:5274 #, no-wrap msgid "" "(list (channel-with-substitutes-available\n" @@ -12846,75 +12933,75 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5263 +#: guix-git/doc/guix.texi:5281 msgid "Note that this does not mean that all the packages that you will install after running @command{guix pull} will have available substitutes. It only ensures that @command{guix pull} will not try to compile package definitions. This is particularly useful when using machines with limited resources." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5267 +#: guix-git/doc/guix.texi:5285 #, no-wrap msgid "personal packages (channels)" msgstr "paquetes personales (canales)" #. type: cindex -#: guix-git/doc/guix.texi:5268 +#: guix-git/doc/guix.texi:5286 #, no-wrap msgid "channels, for personal packages" msgstr "canales, para paquetes personales" #. type: Plain text -#: guix-git/doc/guix.texi:5276 +#: guix-git/doc/guix.texi:5294 msgid "Let's say you have a bunch of custom package variants or personal packages that you think would make little sense to contribute to the Guix project, but would like to have these packages transparently available to you at the command line. You would first write modules containing those package definitions (@pxref{Package Modules}), maintain them in a Git repository, and then you and anyone else can use it as an additional channel to get packages from. Neat, no?" msgstr "Digamos que tiene un montón de variaciones personalizadas de paquetes que piensa que no tiene mucho sentido contribuir al proyecto Guix, pero quiere tener esos paquetes disponibles en su línea de órdenes de manera transparente. Primero debería escribir módulos que contengan esas definiciones de paquete (@pxref{Package Modules}), mantenerlos en un repositorio Git, y de esta manera usted y cualquier otra persona podría usarlos como un canal adicional del que obtener paquetes. Limpio, ¿no?" #. type: quotation -#: guix-git/doc/guix.texi:5284 +#: guix-git/doc/guix.texi:5302 msgid "Before you, dear user, shout---``woow this is @emph{soooo coool}!''---and publish your personal channel to the world, we would like to share a few words of caution:" msgstr "Antes de que, querida usuaria, grite---``¡Guau, esto es @emph{la caña}!''---y publique su canal personal al mundo, nos gustaría compartir algunas palabras de precaución:" #. type: itemize -#: guix-git/doc/guix.texi:5292 +#: guix-git/doc/guix.texi:5310 msgid "Before publishing a channel, please consider contributing your package definitions to Guix proper (@pxref{Contributing}). Guix as a project is open to free software of all sorts, and packages in Guix proper are readily available to all Guix users and benefit from the project's quality assurance process." msgstr "Antes de publicar un canal, por favor considere contribuir sus definiciones de paquete al propio Guix (@pxref{Contributing}). Guix como proyecto es abierto a software libre de todo tipo, y los paquetes en el propio Guix están disponibles para todas las usuarias de Guix y se benefician del proceso de gestión de calidad del proyecto." #. type: itemize -#: guix-git/doc/guix.texi:5301 +#: guix-git/doc/guix.texi:5319 msgid "When you maintain package definitions outside Guix, we, Guix developers, consider that @emph{the compatibility burden is on you}. Remember that package modules and package definitions are just Scheme code that uses various programming interfaces (APIs). We want to remain free to change these APIs to keep improving Guix, possibly in ways that break your channel. We never change APIs gratuitously, but we will @emph{not} commit to freezing APIs either." msgstr "Cuando mantiene definiciones de paquete fuera de Guix, nosotras, las desarrolladoras de Guix, consideramos que @emph{la carga de la compatibilidad cae de su lado}. Recuerde que los módulos y definiciones de paquetes son solo código Scheme que usa varias interfaces programáticas (APIs). Queremos mantener la libertad de cambiar dichas interfaces para seguir mejorando Guix, posiblemente en formas que pueden romper su canal. Nunca cambiamos las interfaces gratuitamente, pero @emph{no} vamos tampoco a congelar las interfaces." #. type: itemize -#: guix-git/doc/guix.texi:5305 +#: guix-git/doc/guix.texi:5323 msgid "Corollary: if you're using an external channel and that channel breaks, please @emph{report the issue to the channel authors}, not to the Guix project." msgstr "Corolario: si está usando un canal externo y el canal se rompe, por favor @emph{informe del problema a las autoras del canal}, no al proyecto Guix." #. type: quotation -#: guix-git/doc/guix.texi:5312 +#: guix-git/doc/guix.texi:5330 msgid "You've been warned! Having said this, we believe external channels are a practical way to exert your freedom to augment Guix' package collection and to share your improvements, which are basic tenets of @uref{https://www.gnu.org/philosophy/free-sw.html, free software}. Please email us at @email{guix-devel@@gnu.org} if you'd like to discuss this." msgstr "¡Ha quedado advertida! Habiendo dicho esto, creemos que los canales externos son una forma práctica de ejercitar su libertad para aumentar la colección de paquetes de Guix y compartir su mejoras, que son pilares básicos del @uref{https://www.gnu.org/philosophy/free-sw.html, software libre}. Por favor, envíenos un correo a @email{guix-devel@@gnu.org} si quiere hablar sobre esto." #. type: Plain text -#: guix-git/doc/guix.texi:5324 +#: guix-git/doc/guix.texi:5342 msgid "To create a channel, create a Git repository containing your own package modules and make it available. The repository can contain anything, but a useful channel will contain Guile modules that export packages. Once you start using a channel, Guix will behave as if the root directory of that channel's Git repository has been added to the Guile load path (@pxref{Load Paths,,, guile, GNU Guile Reference Manual}). For example, if your channel contains a file at @file{my-packages/my-tools.scm} that defines a Guile module, then the module will be available under the name @code{(my-packages my-tools)}, and you will be able to use it like any other module (@pxref{Modules,,, guile, GNU Guile Reference Manual})." msgstr "Para crear un canal, cree un repositorio Git que contenga sus propios módulos de paquetes y haga que esté disponible. El repositorio puede contener cualquier cosa, pero un canal útil contendrá módulos Guile que exportan paquetes. Una vez comience a usar un canal, Guix se comportará como si el directorio raíz del repositorio Git de dicho canal hubiese sido añadido a la ruta de carga de Guile (@pxref{Load Paths,,, guile, GNU Guile Reference Manual}). Por ejemplo, si su canal contiene un archivo en @file{mis-paquetes/mis-herramientas.scm} que define un módulo, entonces dicho módulo estará disponible bajo el nombre @code{(mis-paquetes mis-herramientas)}, y podrá usarlo como cualquier otro módulo (@pxref{Modules,,, guile, GNU Guile Reference Manual})." #. type: Plain text -#: guix-git/doc/guix.texi:5329 +#: guix-git/doc/guix.texi:5347 msgid "As a channel author, consider bundling authentication material with your channel so that users can authenticate it. @xref{Channel Authentication}, and @ref{Specifying Channel Authorizations}, for info on how to do it." msgstr "Como autora de un canal, considere adjuntar el material para la identificación a su canal de modo que las usuarias puedan verificarlo. @xref{Channel Authentication}, y @ref{Specifying Channel Authorizations}, para obtener información sobre cómo hacerlo." #. type: cindex -#: guix-git/doc/guix.texi:5334 +#: guix-git/doc/guix.texi:5352 #, no-wrap msgid "subdirectory, channels" msgstr "subdirectorio, canales" #. type: Plain text -#: guix-git/doc/guix.texi:5338 +#: guix-git/doc/guix.texi:5356 msgid "As a channel author, you may want to keep your channel modules in a sub-directory. If your modules are in the sub-directory @file{guix}, you must add a meta-data file @file{.guix-channel} that contains:" msgstr "Como autora de un canal, es posible que desee mantener los módulos de su canal en un subdirectorio. Si sus módulos se encuentran en el subdirectorio @file{guix}, debe añadir un archivo @file{.guix-channel} de metadatos que contenga:" #. type: lisp -#: guix-git/doc/guix.texi:5343 +#: guix-git/doc/guix.texi:5361 #, no-wrap msgid "" "(channel\n" @@ -12926,29 +13013,29 @@ msgstr "" " (directory \"guix\"))\n" #. type: cindex -#: guix-git/doc/guix.texi:5348 +#: guix-git/doc/guix.texi:5366 #, no-wrap msgid "dependencies, channels" msgstr "dependencias, canales" #. type: cindex -#: guix-git/doc/guix.texi:5349 +#: guix-git/doc/guix.texi:5367 #, no-wrap msgid "meta-data, channels" msgstr "metadatos, canales" #. type: Plain text -#: guix-git/doc/guix.texi:5354 +#: guix-git/doc/guix.texi:5372 msgid "Channel authors may decide to augment a package collection provided by other channels. They can declare their channel to be dependent on other channels in a meta-data file @file{.guix-channel}, which is to be placed in the root of the channel repository." msgstr "Las autoras de canales pueden decidir aumentar una colección de paquetes proporcionada por otros canales. Pueden declarar su canal como dependiente de otros canales en el archivo de metadatos @file{.guix-channel}, que debe encontrarse en la raíz del repositorio del canal." #. type: Plain text -#: guix-git/doc/guix.texi:5356 +#: guix-git/doc/guix.texi:5374 msgid "The meta-data file should contain a simple S-expression like this:" msgstr "Este archivo de metadatos debe contener una expresión-S simple como esta:" #. type: lisp -#: guix-git/doc/guix.texi:5364 +#: guix-git/doc/guix.texi:5382 #, fuzzy, no-wrap msgid "" "(channel\n" @@ -12968,7 +13055,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:5376 +#: guix-git/doc/guix.texi:5394 #, fuzzy, no-wrap msgid "" " ;; The 'introduction' bit below is optional: you would\n" @@ -12996,34 +13083,34 @@ msgstr "" " (branch \"pruebas\"))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5382 +#: guix-git/doc/guix.texi:5400 msgid "In the above example this channel is declared to depend on two other channels, which will both be fetched automatically. The modules provided by the channel will be compiled in an environment where the modules of all these declared channels are available." msgstr "En el ejemplo previo, este canal se declara como dependiente de otros dos canales, que se obtendrán de manera automática. Los módulos proporcionados por el canal se compilarán en un entorno donde los módulos de todos estos canales declarados estén disponibles." #. type: Plain text -#: guix-git/doc/guix.texi:5386 +#: guix-git/doc/guix.texi:5404 msgid "For the sake of reliability and maintainability, you should avoid dependencies on channels that you don't control, and you should aim to keep the number of dependencies to a minimum." msgstr "De cara a la confianza proporcionada y el esfuerzo que supondrá su mantenimiento, debería evitar depender de canales que no controle, y debería intentar minimizar el número de dependencias." #. type: cindex -#: guix-git/doc/guix.texi:5390 +#: guix-git/doc/guix.texi:5408 #, no-wrap msgid "channel authorizations" msgstr "autorizaciones del canal" #. type: anchor{#1} -#: guix-git/doc/guix.texi:5404 +#: guix-git/doc/guix.texi:5422 msgid "channel-authorizations" msgstr "channel-authorizations" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:5404 +#: guix-git/doc/guix.texi:5422 msgid "As we saw above, Guix ensures the source code it pulls from channels comes from authorized developers. As a channel author, you need to specify the list of authorized developers in the @file{.guix-authorizations} file in the channel's Git repository. The authentication rule is simple: each commit must be signed by a key listed in the @file{.guix-authorizations} file of its parent commit(s)@footnote{Git commits form a @dfn{directed acyclic graph} (DAG). Each commit can have zero or more parents; ``regular'' commits have one parent and merge commits have two parent commits. Read @uref{https://eagain.net/articles/git-for-computer-scientists/, @i{Git for Computer Scientists}} for a great overview.} The @file{.guix-authorizations} file looks like this:" msgstr "Como hemos visto previamente, Guix se asegura de que el código fuente que obtiene de los canales proviene de desarrolladoras autorizadas. Como autora del canal, es necesario que especifique la lista de desarrolladoras autorizadas en el archivo @file{.guix-authorizations} del repositorio Git del canal. Las reglas para la verificación son simples: cada revisión debe firmarse con una de las claves enumeradas en el archivo @file{.guix-authorizations} de la revisión o revisiones anteriores@footnote{Las revisiones en Git forman un @dfn{grafo acíclico dirigido} (DAG). Cada revisión puede tener cero o más antecesores; las revisiones ``normales'' tienen un antecesor, y las revisiones de mezcla tienen dos antecesores. Lea el artículo en inglés @uref{https://eagain.net/articles/git-for-computer-scientists/, @i{Git for Computer Scientists}} para una buena introducción.} El archivo @file{.guix-authorizations} tiene está estructura básica:" #. type: lisp -#: guix-git/doc/guix.texi:5407 +#: guix-git/doc/guix.texi:5425 #, no-wrap msgid "" ";; Example '.guix-authorizations' file.\n" @@ -13033,7 +13120,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:5410 +#: guix-git/doc/guix.texi:5428 #, no-wrap msgid "" "(authorizations\n" @@ -13045,7 +13132,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:5417 +#: guix-git/doc/guix.texi:5435 #, no-wrap msgid "" " ((\"AD17 A21E F8AE D8F1 CC02 DBD9 F8AE D8F1 765C 61E3\"\n" @@ -13063,33 +13150,33 @@ msgstr "" " (name \"rober\"))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5421 +#: guix-git/doc/guix.texi:5439 msgid "Each fingerprint is followed by optional key/value pairs, as in the example above. Currently these key/value pairs are ignored." msgstr "Cada huella va seguida de pares clave/valor opcionales, como en el ejemplo siguiente. Actualmente se ignoran dichos pares." #. type: Plain text -#: guix-git/doc/guix.texi:5426 +#: guix-git/doc/guix.texi:5444 msgid "This authentication rule creates a chicken-and-egg issue: how do we authenticate the first commit? Related to that: how do we deal with channels whose repository history contains unsigned commits and lack @file{.guix-authorizations}? And how do we fork existing channels?" msgstr "Estas reglas de verificación dan lugar a un problema ``del huevo y la gallina'': ¿cómo se verifica la primera revisión? En relación con esto: ¿cómo se gestionan los canales cuyo repositorio tiene en su historia revisiones sin firmar y carece del archivo @file{.guix-authorizations}? ¿Y cómo creamos un nuevo canal separado en base a un canal ya existente?" #. type: cindex -#: guix-git/doc/guix.texi:5427 +#: guix-git/doc/guix.texi:5445 #, no-wrap msgid "channel introduction" msgstr "presentación del canal" #. type: Plain text -#: guix-git/doc/guix.texi:5434 +#: guix-git/doc/guix.texi:5452 msgid "Channel introductions answer these questions by describing the first commit of a channel that should be authenticated. The first time a channel is fetched with @command{guix pull} or @command{guix time-machine}, the command looks up the introductory commit and verifies that it is signed by the specified OpenPGP key. From then on, it authenticates commits according to the rule above." msgstr "La presentación de canales responde a estas preguntas describiendo la primera revisión de un canal que debe estar firmada. La primera vez que se obtiene un canal con @command{guix pull} o @command{guix time-machine}, la orden busca la revisión de la presentación y verifica que está firmada con la clave OpenPGP especificada. De ahí en adelante, verifica las revisiones de acuerdo con las reglas previas." #. type: Plain text -#: guix-git/doc/guix.texi:5441 +#: guix-git/doc/guix.texi:5459 msgid "Additionally, your channel must provide all the OpenPGP keys that were ever mentioned in @file{.guix-authorizations}, stored as @file{.key} files, which can be either binary or ``ASCII-armored''. By default, those @file{.key} files are searched for in the branch named @code{keyring} but you can specify a different branch name in @code{.guix-channel} like so:" msgstr "De manera adicional, su canal debe proporcionar todas las claves públicas que hayan sido mencionadas en @file{.guix-authorizations}, almacenadas como archivos @file{.key}, los cuales pueden ser binarios o tener ``armadura ASCII''. De manera predeterminada, esos archivos @file{.key} se buscan en la rama llamada @code{keyring} pero puede especificar una rama diferente en @code{.guix-channel} de este modo:" #. type: lisp -#: guix-git/doc/guix.texi:5446 +#: guix-git/doc/guix.texi:5464 #, no-wrap msgid "" "(channel\n" @@ -13101,59 +13188,59 @@ msgstr "" " (keyring-reference \"mi-rama-de-claves\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5450 +#: guix-git/doc/guix.texi:5468 msgid "To summarize, as the author of a channel, there are three things you have to do to allow users to authenticate your code:" msgstr "En resumen, como autora de un canal, hay tres cosas que debe hacer para permitir que las usuarias verifiquen su código:" #. type: enumerate -#: guix-git/doc/guix.texi:5456 +#: guix-git/doc/guix.texi:5474 msgid "Export the OpenPGP keys of past and present committers with @command{gpg --export} and store them in @file{.key} files, by default in a branch named @code{keyring} (we recommend making it an @dfn{orphan branch})." msgstr "Exportar las claves OpenPGP de quienes contribuyan en el presente y quienes hayan contribuido en el pasado con @command{gpg --export} y almacenarlas en archivos @file{.key}, de manera predeterminada en una rama llamada @code{keyring} (recomendamos que sea una @dfn{rama huérfana})." #. type: enumerate -#: guix-git/doc/guix.texi:5461 +#: guix-git/doc/guix.texi:5479 msgid "Introduce an initial @file{.guix-authorizations} in the channel's repository. Do that in a signed commit (@pxref{Commit Access}, for information on how to sign Git commits.)" msgstr "Introducir un archivo inicial @file{.guix-authorizations} en el repositorio del canal. Hágalo con una revisión firmada (@pxref{Commit Access}, para más información sobre cómo firmar revisiones)." #. type: enumerate -#: guix-git/doc/guix.texi:5467 +#: guix-git/doc/guix.texi:5485 msgid "Advertise the channel introduction, for instance on your channel's web page. The channel introduction, as we saw above, is the commit/key pair---i.e., the commit that introduced @file{.guix-authorizations}, and the fingerprint of the OpenPGP used to sign it." msgstr "Anuncie la presentación del canal, por ejemplo, en la página web de su canal. La presentación del canal, como hemos visto antes, es el par revisión/clave---es decir, la revisión que introdujo el archivo @file{.guix-authorizations}, y la huella de la clave de OpenPGP usada para firmarlo." #. type: Plain text -#: guix-git/doc/guix.texi:5472 +#: guix-git/doc/guix.texi:5490 msgid "Before pushing to your public Git repository, you can run @command{guix git-authenticate} to verify that you did sign all the commits you are about to push with an authorized key:" msgstr "Antes de que suba los cambios a su repositorio Git público puede ejecutar @command{guix git-authenticate} para verificar que ha firmado todas las revisiones que va a subir con una clave autorizada:" #. type: example -#: guix-git/doc/guix.texi:5475 +#: guix-git/doc/guix.texi:5493 #, no-wrap msgid "guix git authenticate @var{commit} @var{signer}\n" msgstr "guix git authenticate @var{revisión} @var{firma}\n" #. type: Plain text -#: guix-git/doc/guix.texi:5480 +#: guix-git/doc/guix.texi:5498 msgid "where @var{commit} and @var{signer} are your channel introduction. @xref{Invoking guix git authenticate}, for details." msgstr "donde @var{revisión} y @var{firma} son la presentación de su canal. @xref{Invoking guix git authenticate}, para obtener más detalles." #. type: Plain text -#: guix-git/doc/guix.texi:5487 +#: guix-git/doc/guix.texi:5505 msgid "Publishing a signed channel requires discipline: any mistake, such as an unsigned commit or a commit signed by an unauthorized key, will prevent users from pulling from your channel---well, that's the whole point of authentication! Pay attention to merges in particular: merge commits are considered authentic if and only if they are signed by a key present in the @file{.guix-authorizations} file of @emph{both} branches." msgstr "Publicar un canal firmado requiere disciplina: cualquier error, como una revisión sin firmar o una revisión firmada por una clave no autorizada, evitará que las usuarias obtengan nuevas versiones de su canal---bueno, ¡ese es principalmente el objetivo de la verificación! Preste especial atención a la mezcla de ramas: las revisiones de mezcla se consideran auténticas únicamente en caso de que la clave que firma esté presente en el archivo @file{.guix-authorizations} de @emph{ambas} ramas." #. type: cindex -#: guix-git/doc/guix.texi:5491 +#: guix-git/doc/guix.texi:5509 #, no-wrap msgid "primary URL, channels" msgstr "URL primaria, canales" #. type: Plain text -#: guix-git/doc/guix.texi:5494 +#: guix-git/doc/guix.texi:5512 msgid "Channel authors can indicate the primary URL of their channel's Git repository in the @file{.guix-channel} file, like so:" msgstr "Las autoras pueden declarar la URL primaria del repositorio Git de su canal en el archivo @file{.guix-channel} de esta manera:" #. type: lisp -#: guix-git/doc/guix.texi:5499 +#: guix-git/doc/guix.texi:5517 #, no-wrap msgid "" "(channel\n" @@ -13166,39 +13253,39 @@ msgstr "" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:5506 +#: guix-git/doc/guix.texi:5524 #, fuzzy msgid "This allows @command{guix pull} to determine whether it is pulling code from a mirror of the channel; when that is the case, it warns the user that the mirror might be stale and displays the primary URL@. That way, users cannot be tricked into fetching code from a stale mirror that does not receive security updates." msgstr "Esto permite a @command{guix pull} determinar si va a obtener el código de un servidor espejo del canal; y cuando este es el caso emitir un aviso para que la usuaria sea consciente de que el espejo puede estar desactualizado y muestra la URL principal. De esta manera no se puede engañar a las usuarias para que obtengan código de un repositorio desactualizado que no está recibiendo actualizaciones de seguridad." #. type: Plain text -#: guix-git/doc/guix.texi:5510 +#: guix-git/doc/guix.texi:5528 msgid "This feature only makes sense for authenticated repositories, such as the official @code{guix} channel, for which @command{guix pull} ensures the code it fetches is authentic." msgstr "Esta caraterística únicamente tiene sentido en repositorios verificables, como el canal oficial @code{guix}, en el que @command{guix pull} se asegura de verificar la autenticidad del código que obtiene." #. type: cindex -#: guix-git/doc/guix.texi:5514 +#: guix-git/doc/guix.texi:5532 #, no-wrap msgid "news, for channels" msgstr "noticias, para canales" #. type: Plain text -#: guix-git/doc/guix.texi:5518 +#: guix-git/doc/guix.texi:5536 msgid "Channel authors may occasionally want to communicate to their users information about important changes in the channel. You'd send them all an email, but that's not convenient." msgstr "Las autoras los canales pueden querer ocasionalmente comunicar información a sus usuarias acerca de cambios importantes en el canal. Podrían mandar un correo a todo el mundo, pero esto no es tan conveniente." #. type: Plain text -#: guix-git/doc/guix.texi:5523 +#: guix-git/doc/guix.texi:5541 msgid "Instead, channels can provide a @dfn{news file}; when the channel users run @command{guix pull}, that news file is automatically read and @command{guix pull --news} can display the announcements that correspond to the new commits that have been pulled, if any." msgstr "En vez de eso, los canales proporcionan un @dfn{archivo de noticias}; cuando las usuarias de un canal ejecutan @command{guix pull}, dicho archivo de noticias se lee automáticamente y @command{guix pull --news} puede mostrar los anuncios que correspondan a las nuevas revisiones que se han obtenido, si existen." #. type: Plain text -#: guix-git/doc/guix.texi:5526 +#: guix-git/doc/guix.texi:5544 msgid "To do that, channel authors must first declare the name of the news file in their @file{.guix-channel} file:" msgstr "Para hacerlo, las autoras del canal deben declarar primero el nombre del archivo de noticias en su archivo @file{.guix-channel}:" #. type: lisp -#: guix-git/doc/guix.texi:5531 +#: guix-git/doc/guix.texi:5549 #, no-wrap msgid "" "(channel\n" @@ -13210,12 +13297,12 @@ msgstr "" " (news-file \"etc/noticias.txt\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5535 +#: guix-git/doc/guix.texi:5553 msgid "The news file itself, @file{etc/news.txt} in this example, must look something like this:" msgstr "El archivo de noticias en sí, @file{etc/noticias.txt} en este ejemplo, debe ser similar a este:" #. type: lisp -#: guix-git/doc/guix.texi:5548 +#: guix-git/doc/guix.texi:5566 #, no-wrap msgid "" "(channel-news\n" @@ -13247,172 +13334,172 @@ msgstr "" " (es \"Atención a la versátil herramienta @@code@{hello@}\"))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5555 +#: guix-git/doc/guix.texi:5573 msgid "While the news file is using the Scheme syntax, avoid naming it with a @file{.scm} extension or else it will get picked up when building the channel and yield an error since it is not a valid module. Alternatively, you can move the channel module to a subdirectory and store the news file in another directory." msgstr "Aunque el archivo de noticias use sintaxis de Scheme evite nombrarlo con @file{.scm} como extensión o se usará cuando se construya el canal, lo que emitirá un error debido a que no es un módulo válido. También puede mover el módulo del canal a un subdirectorio y almacenar el archivo de noticias en otro directorio." #. type: Plain text -#: guix-git/doc/guix.texi:5560 +#: guix-git/doc/guix.texi:5578 msgid "The file consists of a list of @dfn{news entries}. Each entry is associated with a commit or tag: it describes changes made in this commit, possibly in preceding commits as well. Users see entries only the first time they obtain the commit the entry refers to." msgstr "Este archivo consiste en una lista de @dfn{entradas de noticias}. Cada entrada@footnote{NdT: ``entry'' en inglés} se asocia a una revisión o una etiqueta: describe los cambios llevados a cabo en ella, y posiblemente también en revisiones anteriores. Las usuarias ven las entradas únicamente la primera vez que obtienen la revisión a la que la entrada hace referencia." #. type: Plain text -#: guix-git/doc/guix.texi:5566 +#: guix-git/doc/guix.texi:5584 msgid "The @code{title} field should be a one-line summary while @code{body} can be arbitrarily long, and both can contain Texinfo markup (@pxref{Overview,,, texinfo, GNU Texinfo}). Both the title and body are a list of language tag/message tuples, which allows @command{guix pull} to display news in the language that corresponds to the user's locale." msgstr "El campo del título (@code{title}) debe ser un resumen de una línea mientras que el cuerpo de la noticia (@code{body}) puede ser arbitrariamente largo, y ambos pueden contener marcas de Texinfo (@pxref{Overview,,, texinfo, GNU Texinfo}). Tanto el título como el cuerpo son una lista de tuplas de etiqueta de lengua y mensaje, lo que permite a @command{guix pull} mostrar las noticias en la lengua que corresponde a la localización de la usuaria." #. type: Plain text -#: guix-git/doc/guix.texi:5572 +#: guix-git/doc/guix.texi:5590 msgid "If you want to translate news using a gettext-based workflow, you can extract translatable strings with @command{xgettext} (@pxref{xgettext Invocation,,, gettext, GNU Gettext Utilities}). For example, assuming you write news entries in English first, the command below creates a PO file containing the strings to translate:" msgstr "Si desea traducir las noticias siguiendo un flujo de trabajo basado en gettext, puede extraer las cadenas traducibles con @command{xgettext} (@pxref{xgettext Invocation,,, gettext, GNU Gettext Utilities}). Por ejemplo, asumiendo que escribe las entradas de noticias primero en inglés, la siguiente orden crea un archivo PO que contiene las cadenas a traducir:" #. type: example -#: guix-git/doc/guix.texi:5575 +#: guix-git/doc/guix.texi:5593 #, no-wrap msgid "xgettext -o news.po -l scheme -ken etc/news.txt\n" msgstr "xgettext -o news.po -l scheme -ken etc/news.txt\n" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:5579 +#: guix-git/doc/guix.texi:5597 msgid "To sum up, yes, you could use your channel as a blog. But beware, this is @emph{not quite} what your users might expect." msgstr "En resumen, sí, puede usar su canal como un blog. Pero tenga en cuenta que esto puede que @emph{no sea exactamente} lo que sus usuarias podrían esperar." #. type: cindex -#: guix-git/doc/guix.texi:5584 +#: guix-git/doc/guix.texi:5602 #, no-wrap msgid "software development" msgstr "desarrollo de software" #. type: Plain text -#: guix-git/doc/guix.texi:5588 +#: guix-git/doc/guix.texi:5606 msgid "If you are a software developer, Guix provides tools that you should find helpful---independently of the language you're developing in. This is what this chapter is about." msgstr "Si es una desarrolladora de software, Guix le proporciona herramientas que debería encontrar útiles---independientemente del lenguaje en el que desarrolle actualmente. Esto es sobre lo que trata este capítulo." #. type: Plain text -#: guix-git/doc/guix.texi:5594 +#: guix-git/doc/guix.texi:5612 #, fuzzy #| msgid "The @command{guix environment} command provides a convenient way to set up @dfn{development environments} containing all the dependencies and tools necessary to work on the software package of your choice. The @command{guix pack} command allows you to create @dfn{application bundles} that can be easily distributed to users who do not run Guix." msgid "The @command{guix shell} command provides a convenient way to set up one-off software environments, be it for development purposes or to run a command without installing it in your profile. The @command{guix pack} command allows you to create @dfn{application bundles} that can be easily distributed to users who do not run Guix." msgstr "La orden @command{guix environment} proporciona una manera conveniente de configurar un @dfn{entorno de desarrollo} que contenga todas las dependencias y herramientas necesarias para trabajar en el paquete de software de su elección. La orden @command{guix pack} le permite crear @dfn{aplicaciones empaquetadas} que pueden ser distribuidas con facilidad a usuarias que no usen Guix." #. type: section -#: guix-git/doc/guix.texi:5604 +#: guix-git/doc/guix.texi:5622 #, fuzzy, no-wrap #| msgid "Invoking @command{guix size}" msgid "Invoking @command{guix shell}" msgstr "Invocación de @command{guix size}" #. type: cindex -#: guix-git/doc/guix.texi:5606 +#: guix-git/doc/guix.texi:5624 #, no-wrap msgid "reproducible build environments" msgstr "entornos de construcción reproducibles" #. type: cindex -#: guix-git/doc/guix.texi:5607 +#: guix-git/doc/guix.texi:5625 #, no-wrap msgid "development environments" msgstr "entornos de desarrollo" #. type: command{#1} -#: guix-git/doc/guix.texi:5608 +#: guix-git/doc/guix.texi:5626 #, no-wrap msgid "guix environment" msgstr "guix environment" #. type: cindex -#: guix-git/doc/guix.texi:5609 +#: guix-git/doc/guix.texi:5627 #, no-wrap msgid "environment, package build environment" msgstr "entorno, entorno de construcción de paquetes" #. type: Plain text -#: guix-git/doc/guix.texi:5614 +#: guix-git/doc/guix.texi:5632 msgid "The purpose of @command{guix shell} is to make it easy to create one-off software environments, without changing one's profile. It is typically used to create development environments; it is also a convenient way to run applications without ``polluting'' your profile." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5620 +#: guix-git/doc/guix.texi:5638 msgid "The @command{guix shell} command was recently introduced to supersede @command{guix environment} (@pxref{Invoking guix environment}). If you are familiar with @command{guix environment}, you will notice that it is similar but also---we hope!---more convenient." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5626 +#: guix-git/doc/guix.texi:5644 #, fuzzy, no-wrap #| msgid "guix challenge @var{options} [@var{packages}@dots{}]\n" msgid "guix shell [@var{options}] [@var{package}@dots{}]\n" msgstr "guix challenge @var{opciones} [@var{paquetes}@dots{}]\n" #. type: Plain text -#: guix-git/doc/guix.texi:5631 +#: guix-git/doc/guix.texi:5649 msgid "The following example creates an environment containing Python and NumPy, building or downloading any missing package, and runs the @command{python3} command in that environment:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5634 +#: guix-git/doc/guix.texi:5652 #, fuzzy, no-wrap #| msgid "guix environment --ad-hoc python2-numpy python-2.7 -- python\n" msgid "guix shell python python-numpy -- python3\n" msgstr "guix environment --ad-hoc python2-numpy python-2.7 -- python\n" #. type: Plain text -#: guix-git/doc/guix.texi:5639 +#: guix-git/doc/guix.texi:5657 msgid "Development environments can be created as in the example below, which spawns an interactive shell containing all the dependencies and environment variables needed to work on Inkscape:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5642 +#: guix-git/doc/guix.texi:5660 #, fuzzy, no-wrap #| msgid "guix build -s armhf-linux inkscape\n" msgid "guix shell --development inkscape\n" msgstr "guix build -s armhf-linux inkscape\n" #. type: Plain text -#: guix-git/doc/guix.texi:5648 +#: guix-git/doc/guix.texi:5666 msgid "Exiting the shell places the user back in the original environment before @command{guix shell} was invoked. The next garbage collection (@pxref{Invoking guix gc}) may clean up packages that were installed in the environment and that are no longer used outside of it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5655 +#: guix-git/doc/guix.texi:5673 msgid "As an added convenience, when running from a directory that contains a @file{manifest.scm} or a @file{guix.scm} file (in this order), possibly in a parent directory, @command{guix shell} automatically loads the file---provided the directory is listed in @file{~/.config/guix/shell-authorized-directories}, and only for interactive use:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5658 +#: guix-git/doc/guix.texi:5676 #, fuzzy, no-wrap #| msgid "guix pull\n" msgid "guix shell\n" msgstr "guix pull\n" #. type: Plain text -#: guix-git/doc/guix.texi:5662 +#: guix-git/doc/guix.texi:5680 msgid "This provides an easy way to define, share, and enter development environments." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5673 +#: guix-git/doc/guix.texi:5691 msgid "By default, the shell session or command runs in an @emph{augmented} environment, where the new packages are added to search path environment variables such as @code{PATH}. You can, instead, choose to create an @emph{isolated} environment containing nothing but the packages you asked for. Passing the @option{--pure} option clears environment variable definitions found in the parent environment@footnote{Be sure to use the @option{--check} option the first time you use @command{guix shell} interactively to make sure the shell does not undo the effect of @option{--pure}.}; passing @option{--container} goes one step further by spawning a @dfn{container} isolated from the rest of the system:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5676 +#: guix-git/doc/guix.texi:5694 #, no-wrap msgid "guix shell --container emacs gcc-toolchain\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5684 +#: guix-git/doc/guix.texi:5702 msgid "The command above spawns an interactive shell in a container where nothing but @code{emacs}, @code{gcc-toolchain}, and their dependencies is available. The container lacks network access and shares no files other than the current working directory with the surrounding environment. This is useful to prevent access to system-wide resources such as @file{/usr/bin} on foreign distros." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5691 +#: guix-git/doc/guix.texi:5709 msgid "This @option{--container} option can also prove useful if you wish to run a security-sensitive application, such as a web browser, in an isolated environment. For example, the command below launches Ungoogled-Chromium in an isolated environment, this time sharing network access with the host and preserving its @code{DISPLAY} environment variable, but without even sharing the current directory:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5695 +#: guix-git/doc/guix.texi:5713 #, no-wrap msgid "" "guix shell --container --network --no-cwd ungoogled-chromium \\\n" @@ -13420,7 +13507,7 @@ msgid "" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:5697 guix-git/doc/guix.texi:6008 +#: guix-git/doc/guix.texi:5715 guix-git/doc/guix.texi:6045 #, no-wrap msgid "GUIX_ENVIRONMENT" msgstr "GUIX_ENVIRONMENT" @@ -13428,14 +13515,14 @@ msgstr "GUIX_ENVIRONMENT" # FUZZY # MAAV (TODO): Prompt, comprobar bash... #. type: Plain text -#: guix-git/doc/guix.texi:5703 +#: guix-git/doc/guix.texi:5721 #, fuzzy #| msgid "@command{guix environment} defines the @env{GUIX_ENVIRONMENT} variable in the shell it spawns; its value is the file name of the profile of this environment. This allows users to, say, define a specific prompt for development environments in their @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):" msgid "@command{guix shell} defines the @env{GUIX_ENVIRONMENT} variable in the shell it spawns; its value is the file name of the profile of this environment. This allows users to, say, define a specific prompt for development environments in their @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):" msgstr "@command{guix environment} define la variable @env{GUIX_ENVIRONMENT} en el shell que lanza; su valor es el nombre de archivo del perfil para este entorno. Esto permite a las usuarias, digamos, definir un prompt para entornos de desarrollo en su @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):" #. type: example -#: guix-git/doc/guix.texi:5709 guix-git/doc/guix.texi:6020 +#: guix-git/doc/guix.texi:5727 guix-git/doc/guix.texi:6057 #, no-wrap msgid "" "if [ -n \"$GUIX_ENVIRONMENT\" ]\n" @@ -13449,222 +13536,212 @@ msgstr "" "fi\n" #. type: Plain text -#: guix-git/doc/guix.texi:5713 guix-git/doc/guix.texi:6024 +#: guix-git/doc/guix.texi:5731 guix-git/doc/guix.texi:6061 msgid "...@: or to browse the profile:" msgstr "...@: o para explorar el perfil:" #. type: example -#: guix-git/doc/guix.texi:5716 guix-git/doc/guix.texi:6027 +#: guix-git/doc/guix.texi:5734 guix-git/doc/guix.texi:6064 #, no-wrap msgid "$ ls \"$GUIX_ENVIRONMENT/bin\"\n" msgstr "$ ls \"$GUIX_ENVIRONMENT/bin\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:5719 guix-git/doc/guix.texi:6103 +#: guix-git/doc/guix.texi:5737 guix-git/doc/guix.texi:6140 msgid "The available options are summarized below." msgstr "Las opciones disponibles se resumen a continuación." #. type: item -#: guix-git/doc/guix.texi:5721 guix-git/doc/guix.texi:6105 -#: guix-git/doc/guix.texi:11546 +#: guix-git/doc/guix.texi:5739 guix-git/doc/guix.texi:6142 +#: guix-git/doc/guix.texi:11860 #, no-wrap msgid "--check" msgstr "--check" #. type: table -#: guix-git/doc/guix.texi:5726 +#: guix-git/doc/guix.texi:5744 msgid "Set up the environment and check whether the shell would clobber environment variables. It's a good idea to use this option the first time you run @command{guix shell} for an interactive session to make sure your setup is correct." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5730 +#: guix-git/doc/guix.texi:5748 msgid "For example, if the shell modifies the @env{PATH} environment variable, report it since you would get a different environment than what you asked for." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5738 +#: guix-git/doc/guix.texi:5756 msgid "Such problems usually indicate that the shell startup files are unexpectedly modifying those environment variables. For example, if you are using Bash, make sure that environment variables are set or modified in @file{~/.bash_profile} and @emph{not} in @file{~/.bashrc}---the former is sourced only by log-in shells. @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for details on Bash start-up files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5739 +#: guix-git/doc/guix.texi:5757 #, fuzzy, no-wrap #| msgid "Development" msgid "--development" msgstr "Desarrollo" #. type: table -#: guix-git/doc/guix.texi:5746 +#: guix-git/doc/guix.texi:5764 msgid "Cause @command{guix shell} to include in the environment the dependencies of the following package rather than the package itself. This can be combined with other packages. For instance, the command below starts an interactive shell containing the build-time dependencies of GNU@tie{}Guile, plus Autoconf, Automake, and Libtool:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5749 +#: guix-git/doc/guix.texi:5767 #, no-wrap msgid "guix shell -D guile autoconf automake libtool\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5751 guix-git/doc/guix.texi:6126 -#: guix-git/doc/guix.texi:6607 guix-git/doc/guix.texi:11421 -#: guix-git/doc/guix.texi:12494 guix-git/doc/guix.texi:12845 -#: guix-git/doc/guix.texi:13442 guix-git/doc/guix.texi:35243 -#: guix-git/doc/guix.texi:37713 +#: guix-git/doc/guix.texi:5769 guix-git/doc/guix.texi:6163 +#: guix-git/doc/guix.texi:6650 guix-git/doc/guix.texi:11735 +#: guix-git/doc/guix.texi:12809 guix-git/doc/guix.texi:13201 +#: guix-git/doc/guix.texi:13799 guix-git/doc/guix.texi:35687 +#: guix-git/doc/guix.texi:38192 #, no-wrap msgid "--expression=@var{expr}" msgstr "--expression=@var{expr}" #. type: itemx -#: guix-git/doc/guix.texi:5752 guix-git/doc/guix.texi:6127 -#: guix-git/doc/guix.texi:6608 guix-git/doc/guix.texi:11422 -#: guix-git/doc/guix.texi:12495 guix-git/doc/guix.texi:12846 -#: guix-git/doc/guix.texi:13443 guix-git/doc/guix.texi:35244 -#: guix-git/doc/guix.texi:37714 +#: guix-git/doc/guix.texi:5770 guix-git/doc/guix.texi:6164 +#: guix-git/doc/guix.texi:6651 guix-git/doc/guix.texi:11736 +#: guix-git/doc/guix.texi:12810 guix-git/doc/guix.texi:13202 +#: guix-git/doc/guix.texi:13800 guix-git/doc/guix.texi:35688 +#: guix-git/doc/guix.texi:38193 #, no-wrap msgid "-e @var{expr}" msgstr "-e @var{expr}" #. type: table -#: guix-git/doc/guix.texi:5755 guix-git/doc/guix.texi:6130 +#: guix-git/doc/guix.texi:5773 guix-git/doc/guix.texi:6167 msgid "Create an environment for the package or list of packages that @var{expr} evaluates to." msgstr "Crea un entorno para el paquete o lista de paquetes a los que evalúa @var{expr}." #. type: table -#: guix-git/doc/guix.texi:5757 guix-git/doc/guix.texi:6132 -#: guix-git/doc/guix.texi:12850 +#: guix-git/doc/guix.texi:5775 guix-git/doc/guix.texi:6169 +#: guix-git/doc/guix.texi:13206 msgid "For example, running:" msgstr "Por ejemplo, ejecutando:" #. type: example -#: guix-git/doc/guix.texi:5760 +#: guix-git/doc/guix.texi:5778 #, fuzzy, no-wrap #| msgid "guix environment -e '(@@ (gnu packages maths) petsc-openmpi)'\n" msgid "guix shell -D -e '(@@ (gnu packages maths) petsc-openmpi)'\n" msgstr "guix environment -e '(@@ (gnu packages maths) petsc-openmpi)'\n" #. type: table -#: guix-git/doc/guix.texi:5764 guix-git/doc/guix.texi:6139 +#: guix-git/doc/guix.texi:5782 guix-git/doc/guix.texi:6176 msgid "starts a shell with the environment for this specific variant of the PETSc package." msgstr "inicia un shell con el entorno para esta variante específica del paquete PETSc." #. type: table -#: guix-git/doc/guix.texi:5766 guix-git/doc/guix.texi:6141 +#: guix-git/doc/guix.texi:5784 guix-git/doc/guix.texi:6178 msgid "Running:" msgstr "Ejecutar:" #. type: example -#: guix-git/doc/guix.texi:5769 +#: guix-git/doc/guix.texi:5787 #, fuzzy, no-wrap #| msgid "guix environment --ad-hoc -e '(@@ (gnu) %base-packages)'\n" msgid "guix shell -e '(@@ (gnu) %base-packages)'\n" msgstr "guix environment --ad-hoc -e '(@@ (gnu) %base-packages)'\n" #. type: table -#: guix-git/doc/guix.texi:5772 guix-git/doc/guix.texi:6147 +#: guix-git/doc/guix.texi:5790 guix-git/doc/guix.texi:6184 msgid "starts a shell with all the base system packages available." msgstr "inicia un shell con todos los paquetes básicos del sistema disponibles." #. type: table -#: guix-git/doc/guix.texi:5775 guix-git/doc/guix.texi:6150 +#: guix-git/doc/guix.texi:5793 guix-git/doc/guix.texi:6187 msgid "The above commands only use the default output of the given packages. To select other outputs, two element tuples can be specified:" msgstr "Las órdenes previas usan únicamente la salida predeterminada de los paquetes dados. Para seleccionar otras salidas, tuplas de dos elementos pueden ser especificadas:" #. type: example -#: guix-git/doc/guix.texi:5778 +#: guix-git/doc/guix.texi:5796 #, fuzzy, no-wrap #| msgid "guix environment --ad-hoc -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" msgid "guix shell -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" msgstr "guix environment --ad-hoc -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" #. type: item -#: guix-git/doc/guix.texi:5780 guix-git/doc/guix.texi:11395 +#: guix-git/doc/guix.texi:5798 guix-git/doc/guix.texi:11709 #, no-wrap msgid "--file=@var{file}" msgstr "--file=@var{archivo}" #. type: table -#: guix-git/doc/guix.texi:5784 +#: guix-git/doc/guix.texi:5802 #, fuzzy #| msgid "Create an environment for the package or list of packages that the code within @var{file} evaluates to." msgid "Create an environment containing the package or list of packages that the code within @var{file} evaluates to." msgstr "Crea un entorno para el paquete o la lista de paquetes a la que el código en @var{archivo} evalúa." #. type: lisp -#: guix-git/doc/guix.texi:5790 guix-git/doc/guix.texi:6165 +#: guix-git/doc/guix.texi:5808 guix-git/doc/guix.texi:6202 #, no-wrap msgid "@verbatiminclude environment-gdb.scm\n" msgstr "@verbatiminclude environment-gdb.scm\n" #. type: table -#: guix-git/doc/guix.texi:5794 +#: guix-git/doc/guix.texi:5812 msgid "With the file above, you can enter a development environment for GDB by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5797 +#: guix-git/doc/guix.texi:5815 #, no-wrap msgid "guix shell -D -f gdb-devel.scm\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5804 guix-git/doc/guix.texi:6172 +#: guix-git/doc/guix.texi:5822 guix-git/doc/guix.texi:6209 msgid "Create an environment for the packages contained in the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "Crea un entorno para los paquetes contenidos en el objeto manifest devuelto por el código Scheme en @var{file}. Esta opción se puede repetir varias veces, en cuyo caso los manifiestos se concatenan." #. type: table -#: guix-git/doc/guix.texi:5808 guix-git/doc/guix.texi:6176 +#: guix-git/doc/guix.texi:5826 guix-git/doc/guix.texi:6213 msgid "This is similar to the same-named option in @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) and uses the same manifest files." msgstr "Esto es similar a la opción del mismo nombre en @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) y usa los mismos archivos de manifiesto." -#. type: item -#: guix-git/doc/guix.texi:5809 -#, fuzzy, no-wrap -#| msgid "build-check" -msgid "--rebuild-cache" -msgstr "build-check" - -#. type: table -#: guix-git/doc/guix.texi:5814 -msgid "When using @option{--manifest}, @option{--file}, or when invoked without arguments, @command{guix shell} caches the environment so that subsequent uses are instantaneous. The cache is invalidated anytime the file is modified." -msgstr "" - #. type: table -#: guix-git/doc/guix.texi:5819 -msgid "The @option{--rebuild-cache} forces the cached environment to be refreshed even if the file has not changed. This is useful if the @command{guix.scm} or @command{manifest.scm} has external dependencies, or if its behavior depends, say, on environment variables." -msgstr "" +#: guix-git/doc/guix.texi:5832 guix-git/doc/guix.texi:6245 +#, fuzzy +#| msgid "You can also use @command{guix package} (@pxref{Invoking guix package}) to manage the profile by naming it explicitly:" +msgid "Create an environment containing the packages installed in @var{profile}. Use @command{guix package} (@pxref{Invoking guix package}) to create and manage profiles." +msgstr "También puede usar @command{guix package} (@pxref{Invoking guix package}) para gestionar el perfil proporcionando su nombre de manera específica:" #. type: item -#: guix-git/doc/guix.texi:5820 guix-git/doc/guix.texi:6203 +#: guix-git/doc/guix.texi:5833 guix-git/doc/guix.texi:6246 #, no-wrap msgid "--pure" msgstr "--pure" # FUZZY #. type: table -#: guix-git/doc/guix.texi:5824 guix-git/doc/guix.texi:6207 +#: guix-git/doc/guix.texi:5837 guix-git/doc/guix.texi:6250 msgid "Unset existing environment variables when building the new environment, except those specified with @option{--preserve} (see below). This has the effect of creating an environment in which search paths only contain package inputs." msgstr "Olvida las variables de entorno existentes cuando se construye un nuevo entorno, excepto aquellas especificadas con @option{--preserve} (véase más adelante). Esto tiene el efecto de crear un entorno en el que las rutas de búsqueda únicamente contienen las entradas del paquete." #. type: item -#: guix-git/doc/guix.texi:5825 guix-git/doc/guix.texi:6208 +#: guix-git/doc/guix.texi:5838 guix-git/doc/guix.texi:6251 #, no-wrap msgid "--preserve=@var{regexp}" msgstr "--preserve=@var{regexp}" #. type: itemx -#: guix-git/doc/guix.texi:5826 guix-git/doc/guix.texi:6209 +#: guix-git/doc/guix.texi:5839 guix-git/doc/guix.texi:6252 #, no-wrap msgid "-E @var{regexp}" msgstr "-E @var{regexp}" # FUZZY #. type: table -#: guix-git/doc/guix.texi:5831 guix-git/doc/guix.texi:6214 +#: guix-git/doc/guix.texi:5844 guix-git/doc/guix.texi:6257 msgid "When used alongside @option{--pure}, preserve the environment variables matching @var{regexp}---in other words, put them on a ``white list'' of environment variables that must be preserved. This option can be repeated several times." msgstr "Cuando se usa junto a @option{--pure}, preserva las variables de entorno que corresponden con @var{regexp}---en otras palabras, las pone en una lista de variables de entorno que deben preservarse. Esta opción puede repetirse varias veces." #. type: example -#: guix-git/doc/guix.texi:5835 +#: guix-git/doc/guix.texi:5848 #, fuzzy, no-wrap #| msgid "" #| "guix environment --pure --preserve=^SLURM --ad-hoc openmpi @dots{} \\\n" @@ -13677,120 +13754,120 @@ msgstr "" " -- mpirun @dots{}\n" #. type: table -#: guix-git/doc/guix.texi:5841 guix-git/doc/guix.texi:6224 +#: guix-git/doc/guix.texi:5854 guix-git/doc/guix.texi:6267 msgid "This example runs @command{mpirun} in a context where the only environment variables defined are @env{PATH}, environment variables whose name starts with @samp{SLURM}, as well as the usual ``precious'' variables (@env{HOME}, @env{USER}, etc.)." msgstr "Este ejemplo ejecuta @command{mpirun} en un contexto donde las únicas variables de entorno definidas son @env{PATH}, variables de entorno cuyo nombre empiece con @samp{SLURM}, así como las variables ``preciosas'' habituales (@env{HOME}, @env{USER}, etc.)." #. type: item -#: guix-git/doc/guix.texi:5842 guix-git/doc/guix.texi:6225 +#: guix-git/doc/guix.texi:5855 guix-git/doc/guix.texi:6268 #, no-wrap msgid "--search-paths" msgstr "--search-paths" # FUZZY #. type: table -#: guix-git/doc/guix.texi:5845 guix-git/doc/guix.texi:6228 +#: guix-git/doc/guix.texi:5858 guix-git/doc/guix.texi:6271 msgid "Display the environment variable definitions that make up the environment." msgstr "Muestra las definiciones de variables de entorno que componen el entorno." #. type: table -#: guix-git/doc/guix.texi:5849 guix-git/doc/guix.texi:6232 +#: guix-git/doc/guix.texi:5862 guix-git/doc/guix.texi:6275 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}." msgstr "Intenta construir para @var{sistema}---por ejemplo, @code{i686-linux}." #. type: item -#: guix-git/doc/guix.texi:5850 guix-git/doc/guix.texi:6233 +#: guix-git/doc/guix.texi:5863 guix-git/doc/guix.texi:6276 #, no-wrap msgid "--container" msgstr "--container" #. type: itemx -#: guix-git/doc/guix.texi:5851 guix-git/doc/guix.texi:6234 +#: guix-git/doc/guix.texi:5864 guix-git/doc/guix.texi:6277 #, no-wrap msgid "-C" msgstr "-C" #. type: item -#: guix-git/doc/guix.texi:5852 guix-git/doc/guix.texi:6069 -#: guix-git/doc/guix.texi:6235 guix-git/doc/guix.texi:13998 -#: guix-git/doc/guix.texi:35211 +#: guix-git/doc/guix.texi:5865 guix-git/doc/guix.texi:6106 +#: guix-git/doc/guix.texi:6278 guix-git/doc/guix.texi:14355 +#: guix-git/doc/guix.texi:35655 #, no-wrap msgid "container" msgstr "container" #. type: table -#: guix-git/doc/guix.texi:5858 guix-git/doc/guix.texi:6241 +#: guix-git/doc/guix.texi:5871 guix-git/doc/guix.texi:6284 msgid "Run @var{command} within an isolated container. The current working directory outside the container is mapped inside the container. Additionally, unless overridden with @option{--user}, a dummy home directory is created that matches the current user's home directory, and @file{/etc/passwd} is configured accordingly." msgstr "Ejecuta la @var{orden} en un contenedor aislado. El directorio actual fuera del contenedor es asociado al interior del contenedor. Adicionalmente, a menos que se fuerce con @option{--user}, un directorio de prueba de la usuaria se crea de forma que coincida con el directorio actual de la usuaria, y @file{/etc/passwd} se configura adecuadamente." #. type: table -#: guix-git/doc/guix.texi:5862 guix-git/doc/guix.texi:6245 +#: guix-git/doc/guix.texi:5875 guix-git/doc/guix.texi:6288 msgid "The spawned process runs as the current user outside the container. Inside the container, it has the same UID and GID as the current user, unless @option{--user} is passed (see below)." msgstr "El proceso lanzado se ejecuta como el usuario actual fuera del contenedor. Dentro del contenedor, tiene el mismo UID y GID que el usuario actual, a menos que se proporcione @option{--user} (véase más adelante)." #. type: item -#: guix-git/doc/guix.texi:5863 guix-git/doc/guix.texi:6246 -#: guix-git/doc/guix.texi:35303 +#: guix-git/doc/guix.texi:5876 guix-git/doc/guix.texi:6289 +#: guix-git/doc/guix.texi:35747 #, no-wrap msgid "--network" msgstr "--network" #. type: table -#: guix-git/doc/guix.texi:5868 guix-git/doc/guix.texi:6251 +#: guix-git/doc/guix.texi:5881 guix-git/doc/guix.texi:6294 msgid "For containers, share the network namespace with the host system. Containers created without this flag only have access to the loopback device." msgstr "Para contenedores, comparte el espacio de nombres de red con el sistema anfitrión. Los contenedores creados sin esta opción únicamente tienen acceso a la red local." #. type: item -#: guix-git/doc/guix.texi:5869 guix-git/doc/guix.texi:6252 +#: guix-git/doc/guix.texi:5882 guix-git/doc/guix.texi:6295 #, no-wrap msgid "--link-profile" msgstr "--link-profile" #. type: itemx -#: guix-git/doc/guix.texi:5870 guix-git/doc/guix.texi:6253 +#: guix-git/doc/guix.texi:5883 guix-git/doc/guix.texi:6296 #, no-wrap msgid "-P" msgstr "-P" #. type: table -#: guix-git/doc/guix.texi:5878 +#: guix-git/doc/guix.texi:5891 #, fuzzy #| msgid "For containers, link the environment profile to @file{~/.guix-profile} within the container and set @code{GUIX_ENVIRONMENT} to that. This is equivalent to making @file{~/.guix-profile} a symlink to the actual profile within the container. Linking will fail and abort the environment if the directory already exists, which will certainly be the case if @command{guix environment} was invoked in the user's home directory." msgid "For containers, link the environment profile to @file{~/.guix-profile} within the container and set @code{GUIX_ENVIRONMENT} to that. This is equivalent to making @file{~/.guix-profile} a symlink to the actual profile within the container. Linking will fail and abort the environment if the directory already exists, which will certainly be the case if @command{guix shell} was invoked in the user's home directory." msgstr "Para contenedores, enlaza el perfil del entorno a @file{~/.guix-profile} dentro del contenedor y asigna ese valor a @code{GUIX_ENVIRONMENT}. Es equivalente a que @file{~/.guix-profile} sea un enlace al perfil real dentro del contenedor. El enlace fallará e interrumpirá el entorno si el directorio ya existe, lo cual será probablemente el caso si @command{guix environment} se invocó en el directorio de la usuaria." #. type: table -#: guix-git/doc/guix.texi:5884 guix-git/doc/guix.texi:6267 +#: guix-git/doc/guix.texi:5897 guix-git/doc/guix.texi:6310 msgid "Certain packages are configured to look in @file{~/.guix-profile} for configuration files and data;@footnote{For example, the @code{fontconfig} package inspects @file{~/.guix-profile/share/fonts} for additional fonts.} @option{--link-profile} allows these programs to behave as expected within the environment." msgstr "Determinados paquetes se configuran para buscar en @file{~/.guix-profile} archivos de configuración y datos;@footnote{Por ejemplo, el paquete @code{fontconfig} inspecciona @file{~/.guix-profile/share/fonts} en busca de nuevas tipografías.} @option{--link-profile} permite a estos programas operar de la manera esperada dentro del entorno." #. type: item -#: guix-git/doc/guix.texi:5885 guix-git/doc/guix.texi:6268 -#: guix-git/doc/guix.texi:13575 +#: guix-git/doc/guix.texi:5898 guix-git/doc/guix.texi:6311 +#: guix-git/doc/guix.texi:13932 #, no-wrap msgid "--user=@var{user}" msgstr "--user=@var{usuaria}" #. type: itemx -#: guix-git/doc/guix.texi:5886 guix-git/doc/guix.texi:6269 -#: guix-git/doc/guix.texi:13576 +#: guix-git/doc/guix.texi:5899 guix-git/doc/guix.texi:6312 +#: guix-git/doc/guix.texi:13933 #, no-wrap msgid "-u @var{user}" msgstr "-u @var{usuaria}" # FUZZY #. type: table -#: guix-git/doc/guix.texi:5893 guix-git/doc/guix.texi:6276 +#: guix-git/doc/guix.texi:5906 guix-git/doc/guix.texi:6319 msgid "For containers, use the username @var{user} in place of the current user. The generated @file{/etc/passwd} entry within the container will contain the name @var{user}, the home directory will be @file{/home/@var{user}}, and no user GECOS data will be copied. Furthermore, the UID and GID inside the container are 1000. @var{user} need not exist on the system." msgstr "Para contenedores, usa el nombre de usuaria @var{usuaria} en vez de la actual. La entrada generada en @file{/etc/passwd} dentro del contenedor contendrá el nombre @var{usuaria}; su directorio será @file{/home/@var{usuaria}} y ningún dato GECOS de la usuaria se copiará. Más aún, el UID y GID dentro del contenedor son 1000. @var{usuaria} no debe existir en el sistema." #. type: table -#: guix-git/doc/guix.texi:5898 guix-git/doc/guix.texi:6281 +#: guix-git/doc/guix.texi:5911 guix-git/doc/guix.texi:6324 msgid "Additionally, any shared or exposed path (see @option{--share} and @option{--expose} respectively) whose target is within the current user's home directory will be remapped relative to @file{/home/USER}; this includes the automatic mapping of the current working directory." msgstr "Adicionalmente, cualquier ruta compartida o expuesta (véanse @option{--share} y @option{--expose} respectivamente) cuyo destino esté dentro de la carpeta actual de la usuaria será reasociada en relación a @file{/home/@var{usuaria}}; esto incluye la relación automática del directorio de trabajo actual." #. type: example -#: guix-git/doc/guix.texi:5905 +#: guix-git/doc/guix.texi:5918 #, fuzzy, no-wrap #| msgid "" #| "# will expose paths as /home/foo/wd, /home/foo/test, and /home/foo/target\n" @@ -13814,242 +13891,285 @@ msgstr "" # FUZZY # MAAV (TODO): ¿Cómo traducir el "not one in and of itself"? #. type: table -#: guix-git/doc/guix.texi:5910 guix-git/doc/guix.texi:6293 +#: guix-git/doc/guix.texi:5923 guix-git/doc/guix.texi:6336 msgid "While this will limit the leaking of user identity through home paths and each of the user fields, this is only one useful component of a broader privacy/anonymity solution---not one in and of itself." msgstr "Mientras esto limita el escape de la identidad de la usuaria a través de las rutas de sus directorios y cada uno de los campos de usuaria, esto es únicamente un componente útil de una solución de privacidad/anonimato más amplia---no una solución completa." #. type: item -#: guix-git/doc/guix.texi:5911 guix-git/doc/guix.texi:6294 +#: guix-git/doc/guix.texi:5924 guix-git/doc/guix.texi:6337 #, no-wrap msgid "--no-cwd" msgstr "--no-cwd" #. type: table -#: guix-git/doc/guix.texi:5918 guix-git/doc/guix.texi:6301 +#: guix-git/doc/guix.texi:5931 guix-git/doc/guix.texi:6344 msgid "For containers, the default behavior is to share the current working directory with the isolated container and immediately change to that directory within the container. If this is undesirable, @option{--no-cwd} will cause the current working directory to @emph{not} be automatically shared and will change to the user's home directory within the container instead. See also @option{--user}." msgstr "El comportamiento predeterminado con contenedores es compartir el directorio de trabajo actual con el contenedor aislado e inmediatamente cambiar a dicho directorio dentro del contenedor. Si no se desea este comportamiento, @option{--no-cwd} indica que el directorio actual @emph{no} se compartirá automáticamente y, en vez de cambiar a dicho directorio, se cambiará al directorio de la usuaria dentro del contenedor. Véase también @option{--user}." #. type: item -#: guix-git/doc/guix.texi:5919 guix-git/doc/guix.texi:6302 +#: guix-git/doc/guix.texi:5932 guix-git/doc/guix.texi:6345 #, no-wrap msgid "--expose=@var{source}[=@var{target}]" msgstr "--expose=@var{fuente}[=@var{destino}]" #. type: itemx -#: guix-git/doc/guix.texi:5920 guix-git/doc/guix.texi:6303 +#: guix-git/doc/guix.texi:5933 guix-git/doc/guix.texi:6346 #, no-wrap msgid "--share=@var{source}[=@var{target}]" msgstr "--share=@var{fuente}[=@var{destino}]" # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:5926 guix-git/doc/guix.texi:6309 +#: guix-git/doc/guix.texi:5939 guix-git/doc/guix.texi:6352 msgid "For containers, @option{--expose} (resp. @option{--share}) exposes the file system @var{source} from the host system as the read-only (resp. writable) file system @var{target} within the container. If @var{target} is not specified, @var{source} is used as the target mount point in the container." msgstr "En contenedores, la @option{--expose} expone el sistema de archivos @var{fuente} del sistema anfitrión como un sistema de archivos de solo-lectura @var{destino} dentro del contenedor. @option{--share} de la misma manera expone el sistema de archivos con posibilidad de escritura. Si no se especifica @var{destino}, @var{fuente} se usa como el punto de montaje en el contenedor." #. type: table -#: guix-git/doc/guix.texi:5930 guix-git/doc/guix.texi:6313 +#: guix-git/doc/guix.texi:5943 guix-git/doc/guix.texi:6356 msgid "The example below spawns a Guile REPL in a container in which the user's home directory is accessible read-only via the @file{/exchange} directory:" msgstr "El ejemplo a continuación lanza una sesión interactiva de Guile en un contenedor donde el directorio principal de la usuaria es accesible en modo solo-lectura a través del directorio @file{/intercambio}:" #. type: example -#: guix-git/doc/guix.texi:5933 +#: guix-git/doc/guix.texi:5946 #, fuzzy, no-wrap #| msgid "guix environment --container --expose=$HOME=/exchange --ad-hoc guile -- guile\n" msgid "guix shell --container --expose=$HOME=/exchange guile -- guile\n" msgstr "guix environment --container --expose=$HOME=/intercambio --ad-hoc guile -- guile\n" #. type: item -#: guix-git/doc/guix.texi:5935 guix-git/doc/guix.texi:6110 -#: guix-git/doc/guix.texi:6675 guix-git/doc/guix.texi:11575 -#: guix-git/doc/guix.texi:35308 +#: guix-git/doc/guix.texi:5948 +#, fuzzy, no-wrap +#| msgid "build-check" +msgid "--rebuild-cache" +msgstr "build-check" + +#. type: cindex +#: guix-git/doc/guix.texi:5949 +#, fuzzy, no-wrap +#| msgid "staging, of code" +msgid "caching, of profiles" +msgstr "preparación de código para otras fases de evaluación" + +#. type: cindex +#: guix-git/doc/guix.texi:5950 +#, fuzzy, no-wrap +#| msgid "Invoking @command{guix size}" +msgid "caching, in @command{guix shell}" +msgstr "Invocación de @command{guix size}" + +#. type: table +#: guix-git/doc/guix.texi:5956 +msgid "In most cases, @command{guix shell} caches the environment so that subsequent uses are instantaneous. Least-recently used cache entries are periodically removed. The cache is also invalidated, when using @option{--file} or @option{--manifest}, anytime the corresponding file is modified." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:5962 +msgid "The @option{--rebuild-cache} forces the cached environment to be refreshed. This is useful when using @option{--file} or @option{--manifest} and the @command{guix.scm} or @command{manifest.scm} file has external dependencies, or if its behavior depends, say, on environment variables." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:5963 guix-git/doc/guix.texi:6147 +#: guix-git/doc/guix.texi:6718 guix-git/doc/guix.texi:11889 +#: guix-git/doc/guix.texi:35752 #, no-wrap msgid "--root=@var{file}" msgstr "--root=@var{archivo}" #. type: itemx -#: guix-git/doc/guix.texi:5936 guix-git/doc/guix.texi:6111 -#: guix-git/doc/guix.texi:6676 guix-git/doc/guix.texi:11576 -#: guix-git/doc/guix.texi:35309 +#: guix-git/doc/guix.texi:5964 guix-git/doc/guix.texi:6148 +#: guix-git/doc/guix.texi:6719 guix-git/doc/guix.texi:11890 +#: guix-git/doc/guix.texi:35753 #, no-wrap msgid "-r @var{file}" msgstr "-r @var{archivo}" #. type: cindex -#: guix-git/doc/guix.texi:5937 guix-git/doc/guix.texi:6112 +#: guix-git/doc/guix.texi:5965 guix-git/doc/guix.texi:6149 #, no-wrap msgid "persistent environment" msgstr "entorno persistente" #. type: cindex -#: guix-git/doc/guix.texi:5938 guix-git/doc/guix.texi:6113 +#: guix-git/doc/guix.texi:5966 guix-git/doc/guix.texi:6150 #, no-wrap msgid "garbage collector root, for environments" msgstr "raíz del recolector de basura, para entornos" # FUZZY #. type: table -#: guix-git/doc/guix.texi:5941 guix-git/doc/guix.texi:6116 +#: guix-git/doc/guix.texi:5969 guix-git/doc/guix.texi:6153 msgid "Make @var{file} a symlink to the profile for this environment, and register it as a garbage collector root." msgstr "Hace que @var{archivo} sea un enlace simbólico al perfil para este entorno, y lo registra como una raíz del recolector de basura." #. type: table -#: guix-git/doc/guix.texi:5944 guix-git/doc/guix.texi:6119 +#: guix-git/doc/guix.texi:5972 guix-git/doc/guix.texi:6156 msgid "This is useful if you want to protect your environment from garbage collection, to make it ``persistent''." msgstr "Esto es útil si desea proteger su entorno de la recolección de basura, hacerlo ``persistente''." +#. type: table +#: guix-git/doc/guix.texi:5978 +msgid "When this option is omitted, @command{guix shell} caches profiles so that subsequent uses of the same environment are instantaneous---this is comparable to using @option{--root} except that @command{guix shell} takes care of periodically removing the least-recently used garbage collector roots." +msgstr "" + # FUZZY #. type: table -#: guix-git/doc/guix.texi:5950 +#: guix-git/doc/guix.texi:5985 #, fuzzy #| msgid "When this option is omitted, the environment is protected from garbage collection only for the duration of the @command{guix environment} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages. @xref{Invoking guix gc}, for more on GC roots." -msgid "When this option is omitted, the environment is protected from garbage collection only for the duration of the @command{guix shell} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages. @xref{Invoking guix gc}, for more on GC roots." +msgid "In some cases, @command{guix shell} does not cache profiles---e.g., if transformation options such as @option{--with-latest} are used. In those cases, the environment is protected from garbage collection only for the duration of the @command{guix shell} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages." msgstr "Cuando se omite esta opción, el entorno se protege de la recolección de basura únicamente por la duración de la sesión @command{guix environment}. Esto significa que la siguiente vez que vuelva a crear el mismo entorno, puede tener que reconstruir o volver a descargar paquetes. @xref{Invoking guix gc}, para más información sobre las raíces del recolector de basura." +#. type: table +#: guix-git/doc/guix.texi:5987 +#, fuzzy +#| msgid "@xref{Invoking guix pull}, for more information." +msgid "@xref{Invoking guix gc}, for more on GC roots." +msgstr "@xref{Invoking guix pull}, para más información." + #. type: Plain text -#: guix-git/doc/guix.texi:5955 +#: guix-git/doc/guix.texi:5992 #, fuzzy #| msgid "@command{guix environment} also supports all of the common build options that @command{guix build} supports (@pxref{Common Build Options}) as well as package transformation options (@pxref{Package Transformation Options})." msgid "@command{guix shell} also supports all of the common build options that @command{guix build} supports (@pxref{Common Build Options}) as well as package transformation options (@pxref{Package Transformation Options})." msgstr "Además, @command{guix environment} acepta todas las opciones comunes de construcción que permite @command{guix build} (@pxref{Common Build Options}) así como las opciones de transformación de paquetes (@pxref{Package Transformation Options})." #. type: section -#: guix-git/doc/guix.texi:5957 +#: guix-git/doc/guix.texi:5994 #, no-wrap msgid "Invoking @command{guix environment}" msgstr "Invocación de @command{guix environment}" #. type: Plain text -#: guix-git/doc/guix.texi:5961 +#: guix-git/doc/guix.texi:5998 msgid "The purpose of @command{guix environment} is to assist in creating development environments." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5962 +#: guix-git/doc/guix.texi:5999 #, no-wrap msgid "Deprecation warning" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5966 +#: guix-git/doc/guix.texi:6003 msgid "The @command{guix environment} command is deprecated in favor of @command{guix shell}, which performs similar functions but is more convenient to use. @xref{Invoking guix shell}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5971 +#: guix-git/doc/guix.texi:6008 msgid "Being deprecated, @command{guix environment} is slated for eventual removal, but the Guix project is committed to keeping it until May 1st, 2023. Please get in touch with us at @email{guix-devel@@gnu.org} if you would like to discuss it." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5977 +#: guix-git/doc/guix.texi:6014 #, no-wrap msgid "guix environment @var{options} @var{package}@dots{}\n" msgstr "guix environment @var{opciones} @var{paquete}@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:5981 +#: guix-git/doc/guix.texi:6018 msgid "The following example spawns a new shell set up for the development of GNU@tie{}Guile:" msgstr "El ejemplo siguiente lanza un nuevo shell preparado para el desarrollo de GNU@tie{}Guile:" #. type: example -#: guix-git/doc/guix.texi:5984 +#: guix-git/doc/guix.texi:6021 #, no-wrap msgid "guix environment guile\n" msgstr "guix environment guile\n" #. type: Plain text -#: guix-git/doc/guix.texi:6001 +#: guix-git/doc/guix.texi:6038 msgid "If the needed dependencies are not built yet, @command{guix environment} automatically builds them. The environment of the new shell is an augmented version of the environment that @command{guix environment} was run in. It contains the necessary search paths for building the given package added to the existing environment variables. To create a ``pure'' environment, in which the original environment variables have been unset, use the @option{--pure} option@footnote{Users sometimes wrongfully augment environment variables such as @env{PATH} in their @file{~/.bashrc} file. As a consequence, when @command{guix environment} launches it, Bash may read @file{~/.bashrc}, thereby introducing ``impurities'' in these environment variables. It is an error to define such environment variables in @file{.bashrc}; instead, they should be defined in @file{.bash_profile}, which is sourced only by log-in shells. @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for details on Bash start-up files.}." msgstr "Si las dependencias necesarias no están construidas todavía, @command{guix environment} las construye automáticamente. El entorno del nuevo shell es una versión aumentada del entorno en el que @command{guix environment} se ejecutó. Contiene las rutas de búsqueda necesarias para la construcción del paquete proporcionado añadidas a las variables ya existentes. Para crear un entorno ``puro'', donde las variables de entorno previas no existen, use la opción @option{--pure}@footnote{Las usuarias habitualmente aumentan de forma incorrecta las variables de entorno como @env{PATH} en su archivo @file{~/.bashrc}. Como consecuencia, cuando @code{guix environment} se ejecuta, Bash puede leer @file{~/.bashrc}, por tanto introduciendo ``impurezas'' en esas variables de entorno. Es un error definir dichas variables de entorno en @file{~/.bashrc}; en vez de ello deben definirse en @file{.bash_profile}, el cual es únicamente cargado por el shell de ingreso al sistema. @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, para detalles sobre los archivos de inicio de Bash.}." #. type: Plain text -#: guix-git/doc/guix.texi:6007 +#: guix-git/doc/guix.texi:6044 msgid "Exiting from a Guix environment is the same as exiting from the shell, and will place the user back in the old environment before @command{guix environment} was invoked. The next garbage collection (@pxref{Invoking guix gc}) will clean up packages that were installed from within the environment and are no longer used outside of it." msgstr "" # FUZZY # MAAV (TODO): Prompt, comprobar bash... #. type: Plain text -#: guix-git/doc/guix.texi:6014 +#: guix-git/doc/guix.texi:6051 msgid "@command{guix environment} defines the @env{GUIX_ENVIRONMENT} variable in the shell it spawns; its value is the file name of the profile of this environment. This allows users to, say, define a specific prompt for development environments in their @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):" msgstr "@command{guix environment} define la variable @env{GUIX_ENVIRONMENT} en el shell que lanza; su valor es el nombre de archivo del perfil para este entorno. Esto permite a las usuarias, digamos, definir un prompt para entornos de desarrollo en su @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):" #. type: Plain text -#: guix-git/doc/guix.texi:6033 +#: guix-git/doc/guix.texi:6070 msgid "Additionally, more than one package may be specified, in which case the union of the inputs for the given packages are used. For example, the command below spawns a shell where all of the dependencies of both Guile and Emacs are available:" msgstr "Adicionalmente, más de un paquete puede ser especificado, en cuyo caso se usa la unión de las entradas de los paquetes proporcionados. Por ejemplo, la siguiente orden lanza un shell donde todas las dependencias tanto de Guile como de Emacs están disponibles:" #. type: example -#: guix-git/doc/guix.texi:6036 +#: guix-git/doc/guix.texi:6073 #, no-wrap msgid "guix environment guile emacs\n" msgstr "guix environment guile emacs\n" #. type: Plain text -#: guix-git/doc/guix.texi:6041 +#: guix-git/doc/guix.texi:6078 msgid "Sometimes an interactive shell session is not desired. An arbitrary command may be invoked by placing the @code{--} token to separate the command from the rest of the arguments:" msgstr "A veces no se desea una sesión interactiva de shell. Una orden arbitraria se puede invocar usando el valor @code{--} para separar la orden del resto de los parámetros:" #. type: example -#: guix-git/doc/guix.texi:6044 +#: guix-git/doc/guix.texi:6081 #, no-wrap msgid "guix environment guile -- make -j4\n" msgstr "guix environment guile -- make -j4\n" #. type: Plain text -#: guix-git/doc/guix.texi:6050 +#: guix-git/doc/guix.texi:6087 #, fuzzy #| msgid "In other situations, it is more convenient to specify the list of packages needed in the environment. For example, the following command runs @command{python} from an environment containing Python@tie{}2.7 and NumPy:" msgid "In other situations, it is more convenient to specify the list of packages needed in the environment. For example, the following command runs @command{python} from an environment containing Python@tie{}3 and NumPy:" msgstr "En otras situaciones, es más conveniente especificar una lista de paquetes necesarios en el entorno. Por ejemplo, la siguiente orden ejecuta @command{python} desde un entorno que contiene Python@tie{}2.7 y NumPy:" #. type: example -#: guix-git/doc/guix.texi:6053 +#: guix-git/doc/guix.texi:6090 #, fuzzy, no-wrap #| msgid "guix environment --ad-hoc python2-numpy python-2.7 -- python\n" msgid "guix environment --ad-hoc python-numpy python -- python3\n" msgstr "guix environment --ad-hoc python2-numpy python-2.7 -- python\n" #. type: Plain text -#: guix-git/doc/guix.texi:6064 +#: guix-git/doc/guix.texi:6101 msgid "Furthermore, one might want the dependencies of a package and also some additional packages that are not build-time or runtime dependencies, but are useful when developing nonetheless. Because of this, the @option{--ad-hoc} flag is positional. Packages appearing before @option{--ad-hoc} are interpreted as packages whose dependencies will be added to the environment. Packages appearing after are interpreted as packages that will be added to the environment directly. For example, the following command creates a Guix development environment that additionally includes Git and strace:" msgstr "Es más, se pueden desear las dependencias de un paquete y también algunos paquetes adicionales que no son dependencias ni en tiempo de construcción ni en el de ejecución, pero son útiles no obstante para el desarrollo. Por esta razón, la opción @option{--ad-hoc} es posicional. Los paquetes que aparecen antes de @option{--ad-hoc} se interpretan como paquetes cuyas dependencias se añadirán al entorno. Los paquetes que aparecen después se interpretan como paquetes que se añadirán directamente al entorno. Por ejemplo, la siguiente orden crea un entorno de desarrollo Guix que incluye adicionalmente Git y strace:" #. type: example -#: guix-git/doc/guix.texi:6067 +#: guix-git/doc/guix.texi:6104 #, no-wrap msgid "guix environment --pure guix --ad-hoc git strace\n" msgstr "guix environment --pure guix --ad-hoc git strace\n" #. type: Plain text -#: guix-git/doc/guix.texi:6077 +#: guix-git/doc/guix.texi:6114 msgid "Sometimes it is desirable to isolate the environment as much as possible, for maximal purity and reproducibility. In particular, when using Guix on a host distro that is not Guix System, it is desirable to prevent access to @file{/usr/bin} and other system-wide resources from the development environment. For example, the following command spawns a Guile REPL in a ``container'' where only the store and the current working directory are mounted:" msgstr "En ocasiones es deseable aislar el entorno tanto como sea posible, para obtener la máxima pureza y reproducibilidad. En particular, cuando se usa Guix en una distribución anfitriona que no es el sistema Guix, es deseable prevenir acceso a @file{/usr/bin} y otros recursos del sistema desde el entorno de desarrollo. Por ejemplo, la siguiente orden lanza un REPL Guile en un ``contenedor'' donde únicamente el almacén y el directorio actual están montados:" #. type: example -#: guix-git/doc/guix.texi:6080 +#: guix-git/doc/guix.texi:6117 #, no-wrap msgid "guix environment --ad-hoc --container guile -- guile\n" msgstr "guix environment --ad-hoc --container guile -- guile\n" #. type: quotation -#: guix-git/doc/guix.texi:6084 +#: guix-git/doc/guix.texi:6121 msgid "The @option{--container} option requires Linux-libre 3.19 or newer." msgstr "La opción @option{--container} requiere Linux-libre 3.19 o posterior." #. type: cindex -#: guix-git/doc/guix.texi:6086 +#: guix-git/doc/guix.texi:6123 #, no-wrap msgid "certificates" msgstr "certificados" #. type: Plain text -#: guix-git/doc/guix.texi:6093 +#: guix-git/doc/guix.texi:6130 msgid "Another typical use case for containers is to run security-sensitive applications such as a web browser. To run Eolie, we must expose and share some files and directories; we include @code{nss-certs} and expose @file{/etc/ssl/certs/} for HTTPS authentication; finally we preserve the @env{DISPLAY} environment variable since containerized graphical applications won't display without it." msgstr "Otro caso de uso típico para los contenedores es la ejecución de aplicaciones sensibles como navegadores web. Para ejecutar Eolie, debemos exponer y compartir algunos archivos y directorios; incluimos @code{nss-certs} y exponemos @file{/etc/ssl/certs/} para la identificación HTTPS; por último preservamos la variable de entorno @env{DISPLAY} ya que las aplicaciones gráficas en el contenedor no se mostrarían sin ella." #. type: example -#: guix-git/doc/guix.texi:6100 +#: guix-git/doc/guix.texi:6137 #, no-wrap msgid "" "guix environment --preserve='^DISPLAY$' --container --network \\\n" @@ -14065,90 +14185,90 @@ msgstr "" " --ad-hoc eolie nss-certs dbus -- eolie\n" #. type: table -#: guix-git/doc/guix.texi:6109 +#: guix-git/doc/guix.texi:6146 msgid "Set up the environment and check whether the shell would clobber environment variables. @xref{Invoking guix shell, @option{--check}}, for more info." msgstr "" # FUZZY #. type: table -#: guix-git/doc/guix.texi:6125 +#: guix-git/doc/guix.texi:6162 msgid "When this option is omitted, the environment is protected from garbage collection only for the duration of the @command{guix environment} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages. @xref{Invoking guix gc}, for more on GC roots." msgstr "Cuando se omite esta opción, el entorno se protege de la recolección de basura únicamente por la duración de la sesión @command{guix environment}. Esto significa que la siguiente vez que vuelva a crear el mismo entorno, puede tener que reconstruir o volver a descargar paquetes. @xref{Invoking guix gc}, para más información sobre las raíces del recolector de basura." #. type: example -#: guix-git/doc/guix.texi:6135 +#: guix-git/doc/guix.texi:6172 #, no-wrap msgid "guix environment -e '(@@ (gnu packages maths) petsc-openmpi)'\n" msgstr "guix environment -e '(@@ (gnu packages maths) petsc-openmpi)'\n" #. type: example -#: guix-git/doc/guix.texi:6144 +#: guix-git/doc/guix.texi:6181 #, no-wrap msgid "guix environment --ad-hoc -e '(@@ (gnu) %base-packages)'\n" msgstr "guix environment --ad-hoc -e '(@@ (gnu) %base-packages)'\n" #. type: example -#: guix-git/doc/guix.texi:6153 +#: guix-git/doc/guix.texi:6190 #, no-wrap msgid "guix environment --ad-hoc -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" msgstr "guix environment --ad-hoc -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" #. type: item -#: guix-git/doc/guix.texi:6155 +#: guix-git/doc/guix.texi:6192 #, no-wrap msgid "--load=@var{file}" msgstr "--load=@var{archivo}" #. type: itemx -#: guix-git/doc/guix.texi:6156 +#: guix-git/doc/guix.texi:6193 #, no-wrap msgid "-l @var{file}" msgstr "-l @var{archivo}" #. type: table -#: guix-git/doc/guix.texi:6159 +#: guix-git/doc/guix.texi:6196 msgid "Create an environment for the package or list of packages that the code within @var{file} evaluates to." msgstr "Crea un entorno para el paquete o la lista de paquetes a la que el código en @var{archivo} evalúa." #. type: item -#: guix-git/doc/guix.texi:6177 +#: guix-git/doc/guix.texi:6214 #, no-wrap msgid "--ad-hoc" msgstr "--ad-hoc" #. type: table -#: guix-git/doc/guix.texi:6182 +#: guix-git/doc/guix.texi:6219 msgid "Include all specified packages in the resulting environment, as if an @i{ad hoc} package were defined with them as inputs. This option is useful for quickly creating an environment without having to write a package expression to contain the desired inputs." msgstr "Incluye todos los paquetes especificados en el entorno resultante, como si un paquete @i{ad hoc} hubiese sido definido con ellos como entradas. Esta opción es útil para la creación rápida un entorno sin tener que escribir una expresión de paquete que contenga las entradas deseadas." #. type: table -#: guix-git/doc/guix.texi:6184 +#: guix-git/doc/guix.texi:6221 msgid "For instance, the command:" msgstr "Por ejemplo, la orden:" #. type: example -#: guix-git/doc/guix.texi:6187 +#: guix-git/doc/guix.texi:6224 #, no-wrap msgid "guix environment --ad-hoc guile guile-sdl -- guile\n" msgstr "guix environment --ad-hoc guile guile-sdl -- guile\n" #. type: table -#: guix-git/doc/guix.texi:6191 +#: guix-git/doc/guix.texi:6228 msgid "runs @command{guile} in an environment where Guile and Guile-SDL are available." msgstr "ejecuta @command{guile} en un entorno donde están disponibles Guile y Guile-SDL." #. type: table -#: guix-git/doc/guix.texi:6196 +#: guix-git/doc/guix.texi:6233 msgid "Note that this example implicitly asks for the default output of @code{guile} and @code{guile-sdl}, but it is possible to ask for a specific output---e.g., @code{glib:bin} asks for the @code{bin} output of @code{glib} (@pxref{Packages with Multiple Outputs})." msgstr "Fíjese que este ejemplo solicita implícitamente la salida predeterminada de @code{guile} y @code{guile-sdl}, pero es posible solicitar una salida específica---por ejemplo, @code{glib:bin} solicita la salida @code{bin} de @code{glib} (@pxref{Packages with Multiple Outputs})." #. type: table -#: guix-git/doc/guix.texi:6202 +#: guix-git/doc/guix.texi:6239 msgid "This option may be composed with the default behavior of @command{guix environment}. Packages appearing before @option{--ad-hoc} are interpreted as packages whose dependencies will be added to the environment, the default behavior. Packages appearing after are interpreted as packages that will be added to the environment directly." msgstr "Esta opción puede componerse con el comportamiento predeterminado de @command{guix environment}. Los paquetes que aparecen antes de @option{--ad-hoc} se interpretan como paquetes cuyas dependencias se añadirán al entorno, el comportamiento predefinido. Los paquetes que aparecen después se interpretan como paquetes a añadir directamente al entorno." #. type: example -#: guix-git/doc/guix.texi:6218 +#: guix-git/doc/guix.texi:6261 #, no-wrap msgid "" "guix environment --pure --preserve=^SLURM --ad-hoc openmpi @dots{} \\\n" @@ -14158,12 +14278,12 @@ msgstr "" " -- mpirun @dots{}\n" #. type: table -#: guix-git/doc/guix.texi:6261 +#: guix-git/doc/guix.texi:6304 msgid "For containers, link the environment profile to @file{~/.guix-profile} within the container and set @code{GUIX_ENVIRONMENT} to that. This is equivalent to making @file{~/.guix-profile} a symlink to the actual profile within the container. Linking will fail and abort the environment if the directory already exists, which will certainly be the case if @command{guix environment} was invoked in the user's home directory." msgstr "Para contenedores, enlaza el perfil del entorno a @file{~/.guix-profile} dentro del contenedor y asigna ese valor a @code{GUIX_ENVIRONMENT}. Es equivalente a que @file{~/.guix-profile} sea un enlace al perfil real dentro del contenedor. El enlace fallará e interrumpirá el entorno si el directorio ya existe, lo cual será probablemente el caso si @command{guix environment} se invocó en el directorio de la usuaria." #. type: example -#: guix-git/doc/guix.texi:6288 +#: guix-git/doc/guix.texi:6331 #, no-wrap msgid "" "# will expose paths as /home/foo/wd, /home/foo/test, and /home/foo/target\n" @@ -14179,68 +14299,68 @@ msgstr "" " --expose=/tmp/objetivo=$HOME/objetivo\n" #. type: example -#: guix-git/doc/guix.texi:6316 +#: guix-git/doc/guix.texi:6359 #, no-wrap msgid "guix environment --container --expose=$HOME=/exchange --ad-hoc guile -- guile\n" msgstr "guix environment --container --expose=$HOME=/intercambio --ad-hoc guile -- guile\n" #. type: Plain text -#: guix-git/doc/guix.texi:6324 +#: guix-git/doc/guix.texi:6367 msgid "@command{guix environment} also supports all of the common build options that @command{guix build} supports (@pxref{Common Build Options}) as well as package transformation options (@pxref{Package Transformation Options})." msgstr "Además, @command{guix environment} acepta todas las opciones comunes de construcción que permite @command{guix build} (@pxref{Common Build Options}) así como las opciones de transformación de paquetes (@pxref{Package Transformation Options})." #. type: section -#: guix-git/doc/guix.texi:6326 +#: guix-git/doc/guix.texi:6369 #, no-wrap msgid "Invoking @command{guix pack}" msgstr "Invocación de @command{guix pack}" #. type: Plain text -#: guix-git/doc/guix.texi:6332 +#: guix-git/doc/guix.texi:6375 msgid "Occasionally you want to pass software to people who are not (yet!) lucky enough to be using Guix. You'd tell them to run @command{guix package -i @var{something}}, but that's not possible in this case. This is where @command{guix pack} comes in." msgstr "De manera ocasional querrá dar software a gente que (¡todavía!) no tiene la suerte de usar Guix. Usted les diría que ejecuten @command{guix package -i @var{algo}}, pero eso no es posible en este caso. Aquí es donde viene @command{guix pack}." #. type: quotation -#: guix-git/doc/guix.texi:6337 +#: guix-git/doc/guix.texi:6380 msgid "If you are looking for ways to exchange binaries among machines that already run Guix, @pxref{Invoking guix copy}, @ref{Invoking guix publish}, and @ref{Invoking guix archive}." msgstr "Si está buscando formas de intercambiar binarios entre máquinas que ya ejecutan Guix, @pxref{Invoking guix copy}, @ref{Invoking guix publish}, y @ref{Invoking guix archive}." #. type: cindex -#: guix-git/doc/guix.texi:6339 +#: guix-git/doc/guix.texi:6382 #, no-wrap msgid "pack" msgstr "pack" #. type: cindex -#: guix-git/doc/guix.texi:6340 +#: guix-git/doc/guix.texi:6383 #, no-wrap msgid "bundle" msgstr "empaquetado" #. type: cindex -#: guix-git/doc/guix.texi:6341 +#: guix-git/doc/guix.texi:6384 #, no-wrap msgid "application bundle" msgstr "aplicación empaquetada" #. type: cindex -#: guix-git/doc/guix.texi:6342 +#: guix-git/doc/guix.texi:6385 #, no-wrap msgid "software bundle" msgstr "empaquetado de software" #. type: Plain text -#: guix-git/doc/guix.texi:6351 +#: guix-git/doc/guix.texi:6394 msgid "The @command{guix pack} command creates a shrink-wrapped @dfn{pack} or @dfn{software bundle}: it creates a tarball or some other archive containing the binaries of the software you're interested in, and all its dependencies. The resulting archive can be used on any machine that does not have Guix, and people can run the exact same binaries as those you have with Guix. The pack itself is created in a bit-reproducible fashion, so anyone can verify that it really contains the build results that you pretend to be shipping." msgstr "La orden @command{guix pack} crea un @dfn{paquete} reducido o @dfn{empaquetado de software}: crea un archivador tar u otro tipo que contiene los binarios del software en el que está interesada y todas sus dependencias. El archivo resultante puede ser usado en una máquina que no tiene Guix, y la gente puede ejecutar exactamente los mismos binarios que usted tiene con Guix. El paquete en sí es creado de forma reproducible bit-a-bit, para que cualquiera pueda verificar que realmente contiene los resultados de construcción que pretende distribuir." #. type: Plain text -#: guix-git/doc/guix.texi:6354 +#: guix-git/doc/guix.texi:6397 msgid "For example, to create a bundle containing Guile, Emacs, Geiser, and all their dependencies, you can run:" msgstr "Por ejemplo, para crear un empaquetado que contenga Guile, Emacs, Geiser y todas sus dependencias, puede ejecutar:" #. type: example -#: guix-git/doc/guix.texi:6359 +#: guix-git/doc/guix.texi:6402 #, fuzzy, no-wrap #| msgid "" #| "$ guix pack guile emacs geiser\n" @@ -14256,62 +14376,62 @@ msgstr "" "/gnu/store/@dots{}-pack.tar.gz\n" #. type: Plain text -#: guix-git/doc/guix.texi:6367 +#: guix-git/doc/guix.texi:6410 msgid "The result here is a tarball containing a @file{/gnu/store} directory with all the relevant packages. The resulting tarball contains a @dfn{profile} with the three packages of interest; the profile is the same as would be created by @command{guix package -i}. It is this mechanism that is used to create Guix's own standalone binary tarball (@pxref{Binary Installation})." msgstr "El resultado aquí es un archivador tar que contiene un directorio de @file{/gnu/store} con todos los paquetes relevantes. El archivador resultante contiene un @dfn{perfil} con los tres paquetes de interés; el perfil es el mismo que se hubiera creado por @command{guix package -i}. Este es el mecanismo usado para crear el propio archivador de binarios separado de Guix (@pxref{Binary Installation})." #. type: Plain text -#: guix-git/doc/guix.texi:6372 +#: guix-git/doc/guix.texi:6415 msgid "Users of this pack would have to run @file{/gnu/store/@dots{}-profile/bin/guile} to run Guile, which you may find inconvenient. To work around it, you can create, say, a @file{/opt/gnu/bin} symlink to the profile:" msgstr "Las usuarias de este empaquetad tendrán que ejecutar @file{/gnu/store/@dots{}-profile/bin/guile} para ejecutar guile, lo que puede resultar inconveniente. Para evitarlo, puede crear, digamos, un enlace simbólico @file{/opt/gnu/bin} al perfil: " #. type: example -#: guix-git/doc/guix.texi:6375 +#: guix-git/doc/guix.texi:6418 #, fuzzy, no-wrap #| msgid "guix pack -S /opt/gnu/bin=bin guile emacs geiser\n" msgid "guix pack -S /opt/gnu/bin=bin guile emacs emacs-geiser\n" msgstr "guix pack -S /opt/gnu/bin=bin guile emacs geiser\n" #. type: Plain text -#: guix-git/doc/guix.texi:6379 +#: guix-git/doc/guix.texi:6422 msgid "That way, users can happily type @file{/opt/gnu/bin/guile} and enjoy." msgstr "De este modo, las usuarias pueden escribir alegremente @file{/opt/gnu/bin/guile} y disfrutar." #. type: cindex -#: guix-git/doc/guix.texi:6380 +#: guix-git/doc/guix.texi:6423 #, no-wrap msgid "relocatable binaries, with @command{guix pack}" msgstr "binarios reposicionables, con @command{guix pack}" #. type: Plain text -#: guix-git/doc/guix.texi:6388 +#: guix-git/doc/guix.texi:6431 msgid "What if the recipient of your pack does not have root privileges on their machine, and thus cannot unpack it in the root file system? In that case, you will want to use the @option{--relocatable} option (see below). This option produces @dfn{relocatable binaries}, meaning they they can be placed anywhere in the file system hierarchy: in the example above, users can unpack your tarball in their home directory and directly run @file{./opt/gnu/bin/guile}." msgstr "¿Qué pasa se la receptora de su paquete no tiene privilegios de root en su máquina y por lo tanto no puede desempaquetarlo en la raíz del sistema de archivos? En ese caso, lo que usted desea es usar la opción @option{--relocatable} (véase a continuación). Esta opción produce @dfn{binarios reposicionables}, significando que pueden ser colocados en cualquier lugar de la jerarquía del sistema de archivos: en el ejemplo anterior, las usuarias pueden desempaquetar el archivador en su directorio de usuaria y ejecutar directamente @file{./opt/gnu/bin/guile}." #. type: cindex -#: guix-git/doc/guix.texi:6389 +#: guix-git/doc/guix.texi:6432 #, no-wrap msgid "Docker, build an image with guix pack" msgstr "Docker, construir una imagen con guix pack" #. type: Plain text -#: guix-git/doc/guix.texi:6392 +#: guix-git/doc/guix.texi:6435 msgid "Alternatively, you can produce a pack in the Docker image format using the following command:" msgstr "De manera alternativa, puede producir un empaquetado en el formato de imagen Docker usando la siguiente orden:" #. type: example -#: guix-git/doc/guix.texi:6395 +#: guix-git/doc/guix.texi:6438 #, no-wrap msgid "guix pack -f docker -S /bin=bin guile guile-readline\n" msgstr "guix pack -f docker -S /bin=bin guile guile-readline\n" #. type: Plain text -#: guix-git/doc/guix.texi:6400 +#: guix-git/doc/guix.texi:6443 msgid "The result is a tarball that can be passed to the @command{docker load} command, followed by @code{docker run}:" msgstr "El resultado es un archivador ``tar'' que puede ser proporcionado a la orden @command{docker load}, seguida de @code{docker run}:" #. type: example -#: guix-git/doc/guix.texi:6404 +#: guix-git/doc/guix.texi:6447 #, no-wrap msgid "" "docker load < @var{file}\n" @@ -14323,67 +14443,67 @@ msgstr "" # FUZZY FUZZY # TODO: Comprobar image tag #. type: Plain text -#: guix-git/doc/guix.texi:6411 +#: guix-git/doc/guix.texi:6454 msgid "where @var{file} is the image returned by @var{guix pack}, and @code{guile-guile-readline} is its ``image tag''. See the @uref{https://docs.docker.com/engine/reference/commandline/load/, Docker documentation} for more information." msgstr "donde @var{archivo} es la imagen devuelta por @var{guix pack}, y @code{guile-guile-readline} es la ``etiqueta de imagen''. Véase la @uref{https://docs.docker.com/engine/reference/commandline/load/, documentación de Docker} para más información." #. type: cindex -#: guix-git/doc/guix.texi:6412 +#: guix-git/doc/guix.texi:6455 #, no-wrap msgid "Singularity, build an image with guix pack" msgstr "Singularity, construir una imagen con guix pack" #. type: cindex -#: guix-git/doc/guix.texi:6413 +#: guix-git/doc/guix.texi:6456 #, no-wrap msgid "SquashFS, build an image with guix pack" msgstr "SquashFS, construir una imagen con guix pack" #. type: Plain text -#: guix-git/doc/guix.texi:6416 +#: guix-git/doc/guix.texi:6459 msgid "Yet another option is to produce a SquashFS image with the following command:" msgstr "Otra opción más es producir una imagen SquashFS con la siguiente orden:" #. type: example -#: guix-git/doc/guix.texi:6419 +#: guix-git/doc/guix.texi:6462 #, fuzzy, no-wrap #| msgid "guix pack -f squashfs bash guile emacs geiser\n" msgid "guix pack -f squashfs bash guile emacs emacs-geiser\n" msgstr "guix pack -f squashfs bash guile emacs geiser\n" #. type: Plain text -#: guix-git/doc/guix.texi:6427 +#: guix-git/doc/guix.texi:6470 msgid "The result is a SquashFS file system image that can either be mounted or directly be used as a file system container image with the @uref{https://www.sylabs.io/docs/, Singularity container execution environment}, using commands like @command{singularity shell} or @command{singularity exec}." msgstr "El resultado es una imagen de sistema de archivos SquashFS que puede ser o bien montada, o bien usada directamente como una imagen contenedora de sistemas de archivos con el @uref{https://www.sylabs.io/docs/, entorno de ejecución de contenedores Singularity}, usando órdenes como @command{singularity shell} o @command{singularity exec}." #. type: Plain text -#: guix-git/doc/guix.texi:6429 +#: guix-git/doc/guix.texi:6472 msgid "Several command-line options allow you to customize your pack:" msgstr "Varias opciones de la línea de órdenes le permiten personalizar su empaquetado:" #. type: table -#: guix-git/doc/guix.texi:6434 +#: guix-git/doc/guix.texi:6477 msgid "Produce a pack in the given @var{format}." msgstr "Produce un empaquetado en el @var{formato} específico." #. type: table -#: guix-git/doc/guix.texi:6436 +#: guix-git/doc/guix.texi:6479 msgid "The available formats are:" msgstr "Los formatos disponibles son:" #. type: item -#: guix-git/doc/guix.texi:6438 +#: guix-git/doc/guix.texi:6481 #, no-wrap msgid "tarball" msgstr "tarball" #. type: table -#: guix-git/doc/guix.texi:6441 +#: guix-git/doc/guix.texi:6484 msgid "This is the default format. It produces a tarball containing all the specified binaries and symlinks." msgstr "Es el formato predeterminado. Produce un archivador que contiene todos los binarios y enlaces simbólicos especificados." #. type: item -#: guix-git/doc/guix.texi:6442 +#: guix-git/doc/guix.texi:6485 #, no-wrap msgid "docker" msgstr "docker" @@ -14391,28 +14511,28 @@ msgstr "docker" # FUZZY FUZZY # TODO: Comprobar nombre del repositorio #. type: table -#: guix-git/doc/guix.texi:6448 +#: guix-git/doc/guix.texi:6491 msgid "This produces a tarball that follows the @uref{https://github.com/docker/docker/blob/master/image/spec/v1.2.md, Docker Image Specification}. The ``repository name'' as it appears in the output of the @command{docker images} command is computed from package names passed on the command line or in the manifest file." msgstr "Produce un archivador que sigue la @uref{https://github.com/docker/docker/blob/master/image/spec/v1.2.md, especificación de imágenes Docker}. El ``nombre de repositorio'' como aparece en la salida de la orden @command{docker images} se calcula a partir de los nombres de paquete proporcionados en la línea de órdenes o en el archivo de manifiesto." #. type: item -#: guix-git/doc/guix.texi:6449 +#: guix-git/doc/guix.texi:6492 #, no-wrap msgid "squashfs" msgstr "squashfs" #. type: table -#: guix-git/doc/guix.texi:6453 +#: guix-git/doc/guix.texi:6496 msgid "This produces a SquashFS image containing all the specified binaries and symlinks, as well as empty mount points for virtual file systems like procfs." msgstr "Produce una imagen SquashFS que contiene todos los binarios y enlaces simbólicos especificados, así como puntos de montaje vacíos para sistemas de archivos virtuales como procfs." #. type: quotation -#: guix-git/doc/guix.texi:6459 +#: guix-git/doc/guix.texi:6502 msgid "Singularity @emph{requires} you to provide @file{/bin/sh} in the image. For that reason, @command{guix pack -f squashfs} always implies @code{-S /bin=bin}. Thus, your @command{guix pack} invocation must always start with something like:" msgstr "Singularity @emph{necesita} que proporcione @file{/bin/sh} en la imagen. Por esta razón, @command{guix pack -f squashfs} siempre implica @code{-S /bin=bin}. Por tanto, su invocación de @command{guix pack} debe siempre comenzar de manera similar a esta:" #. type: example -#: guix-git/doc/guix.texi:6462 +#: guix-git/doc/guix.texi:6505 #, no-wrap msgid "guix pack -f squashfs bash @dots{}\n" msgstr "guix pack -f squashfs bash @dots{}\n" @@ -14420,81 +14540,81 @@ msgstr "guix pack -f squashfs bash @dots{}\n" # FUZZY FUZZY # TODO #. type: quotation -#: guix-git/doc/guix.texi:6467 +#: guix-git/doc/guix.texi:6510 msgid "If you forget the @code{bash} (or similar) package, @command{singularity run} and @command{singularity exec} will fail with an unhelpful ``no such file or directory'' message." msgstr "Si se olvida del paquete @code{bash} (o similar), @command{singularity run} y @command{singularity exec} fallarán con el mensaje ``no existe el archivo o directorio'', lo que no sirve de ayuda." #. type: item -#: guix-git/doc/guix.texi:6469 +#: guix-git/doc/guix.texi:6512 #, fuzzy, no-wrap #| msgid "debug" msgid "deb" msgstr "debug" #. type: table -#: guix-git/doc/guix.texi:6477 +#: guix-git/doc/guix.texi:6520 msgid "This produces a Debian archive (a package with the @samp{.deb} file extension) containing all the specified binaries and symbolic links, that can be installed on top of any dpkg-based GNU(/Linux) distribution. Advanced options can be revealed via the @option{--help-deb-format} option. They allow embedding control files for more fine-grained control, such as activating specific triggers or providing a maintainer configure script to run arbitrary setup code upon installation." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6480 +#: guix-git/doc/guix.texi:6523 #, no-wrap msgid "guix pack -f deb -C xz -S /usr/bin/hello=bin/hello hello\n" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6487 +#: guix-git/doc/guix.texi:6530 msgid "Because archives produced with @command{guix pack} contain a collection of store items and because each @command{dpkg} package must not have conflicting files, in practice that means you likely won't be able to install more than one such archive on a given system." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6495 +#: guix-git/doc/guix.texi:6538 msgid "@command{dpkg} will assume ownership of any files contained in the pack that it does @emph{not} know about. It is unwise to install Guix-produced @samp{.deb} files on a system where @file{/gnu/store} is shared by other software, such as a Guix installation or other, non-deb packs." msgstr "" # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:6499 +#: guix-git/doc/guix.texi:6542 #, no-wrap msgid "relocatable binaries" msgstr "binarios reposicionables" #. type: item -#: guix-git/doc/guix.texi:6500 +#: guix-git/doc/guix.texi:6543 #, no-wrap msgid "--relocatable" msgstr "--relocatable" #. type: table -#: guix-git/doc/guix.texi:6504 +#: guix-git/doc/guix.texi:6547 msgid "Produce @dfn{relocatable binaries}---i.e., binaries that can be placed anywhere in the file system hierarchy and run from there." msgstr "Produce @dfn{binarios reposicionables}---es decir, binarios que se pueden encontrar en cualquier lugar de la jerarquía del sistema de archivos, y ejecutarse desde allí." # FUZZY # TODO: Comprobar si la referencia a PRoot sigue teniendo sentido. #. type: table -#: guix-git/doc/guix.texi:6512 +#: guix-git/doc/guix.texi:6555 msgid "When this option is passed once, the resulting binaries require support for @dfn{user namespaces} in the kernel Linux; when passed @emph{twice}@footnote{Here's a trick to memorize it: @code{-RR}, which adds PRoot support, can be thought of as the abbreviation of ``Really Relocatable''. Neat, isn't it?}, relocatable binaries fall to back to other techniques if user namespaces are unavailable, and essentially work anywhere---see below for the implications." msgstr "Cuando se proporciona una vez la opción, los binarios resultantes necesitan la implementación de @dfn{espacios de nombres de usuaria} del núcleo Linux; cuando se proporciona @emph{dos veces}@footnote{Este es un truco para memorizarlo: @code{-RR}, que añade PRoot, puede pensarse como ``Realmente Reposicionable''. Curioso, ¿no es cierto?}, los binarios reposicionables usan otras técnicas si los espacios de nombres de usuaria no están disponibles, y funcionan esencialmente en cualquier sitio---véase más adelante las implicaciones." #. type: table -#: guix-git/doc/guix.texi:6514 +#: guix-git/doc/guix.texi:6557 msgid "For example, if you create a pack containing Bash with:" msgstr "Por ejemplo, si crea un empaquetado que contiene Bash con:" #. type: example -#: guix-git/doc/guix.texi:6517 +#: guix-git/doc/guix.texi:6560 #, no-wrap msgid "guix pack -RR -S /mybin=bin bash\n" msgstr "guix pack -RR -S /mybin=bin bash\n" #. type: table -#: guix-git/doc/guix.texi:6522 +#: guix-git/doc/guix.texi:6565 msgid "...@: you can copy that pack to a machine that lacks Guix, and from your home directory as a normal user, run:" msgstr "...@: puede copiar ese empaquetado a una máquina que no tiene Guix, y desde su directorio, como una usuaria normal, ejecutar:" #. type: example -#: guix-git/doc/guix.texi:6526 +#: guix-git/doc/guix.texi:6569 #, no-wrap msgid "" "tar xf pack.tar.gz\n" @@ -14504,124 +14624,124 @@ msgstr "" "./mibin/sh\n" #. type: table -#: guix-git/doc/guix.texi:6534 +#: guix-git/doc/guix.texi:6577 msgid "In that shell, if you type @code{ls /gnu/store}, you'll notice that @file{/gnu/store} shows up and contains all the dependencies of @code{bash}, even though the machine actually lacks @file{/gnu/store} altogether! That is probably the simplest way to deploy Guix-built software on a non-Guix machine." msgstr "En ese shell, si escribe @code{ls /gnu/store}, notará que @file{/gnu/store} muestra y contiene todas las dependencias de @code{bash}, ¡incluso cuando la máquina no tiene el directorio @file{/gnu/store}! Esto es probablemente el modo más simple de desplegar software construido en Guix en una máquina no-Guix." #. type: quotation -#: guix-git/doc/guix.texi:6540 +#: guix-git/doc/guix.texi:6583 msgid "By default, relocatable binaries rely on the @dfn{user namespace} feature of the kernel Linux, which allows unprivileged users to mount or change root. Old versions of Linux did not support it, and some GNU/Linux distributions turn it off." msgstr "No obstante hay un punto a tener en cuenta: esta técnica descansa en la característica de @dfn{espacios de nombres de usuaria} del núcleo Linux, la cual permite a usuarias no privilegiadas montar o cambiar la raíz. Versiones antiguas de Linux no los implementan, y algunas distribuciones GNU/Linux los desactivan." # FUZZY #. type: quotation -#: guix-git/doc/guix.texi:6546 +#: guix-git/doc/guix.texi:6589 msgid "To produce relocatable binaries that work even in the absence of user namespaces, pass @option{--relocatable} or @option{-R} @emph{twice}. In that case, binaries will try user namespace support and fall back to another @dfn{execution engine} if user namespaces are not supported. The following execution engines are supported:" msgstr "Para producir binarios reposicionables que funcionen incluso en ausencia de espacios de nombre de usuaria, proporcione @option{--relocatable} o @option{-R} @emph{dos veces}. En ese caso, los binarios intentarán el uso de espacios de nombres de usuaria y usarán otro @dfn{motor de ejecución} si los espacios de nombres no están disponibles. Existe implementación para siguientes motores de ejecución:" #. type: item -#: guix-git/doc/guix.texi:6548 guix-git/doc/guix.texi:17371 +#: guix-git/doc/guix.texi:6591 guix-git/doc/guix.texi:17733 #, no-wrap msgid "default" msgstr "default" #. type: table -#: guix-git/doc/guix.texi:6551 +#: guix-git/doc/guix.texi:6594 msgid "Try user namespaces and fall back to PRoot if user namespaces are not supported (see below)." msgstr "Intenta usar espacios de nombres de usuaria y usa PRoot en caso de no estar disponibles (véase a continuación)." #. type: item -#: guix-git/doc/guix.texi:6552 +#: guix-git/doc/guix.texi:6595 #, no-wrap msgid "performance" msgstr "performance" #. type: table -#: guix-git/doc/guix.texi:6555 +#: guix-git/doc/guix.texi:6598 msgid "Try user namespaces and fall back to Fakechroot if user namespaces are not supported (see below)." msgstr "Intenta usar espacios de nombres de usuaria y usa Fakechroot en caso de no estar disponibles (véase a continuación)." #. type: item -#: guix-git/doc/guix.texi:6556 +#: guix-git/doc/guix.texi:6599 #, no-wrap msgid "userns" msgstr "userns" #. type: table -#: guix-git/doc/guix.texi:6559 +#: guix-git/doc/guix.texi:6602 msgid "Run the program through user namespaces and abort if they are not supported." msgstr "Usa espacios de nombres de usuaria o aborta el programa si no están disponibles." #. type: item -#: guix-git/doc/guix.texi:6560 +#: guix-git/doc/guix.texi:6603 #, no-wrap msgid "proot" msgstr "proot" #. type: table -#: guix-git/doc/guix.texi:6567 +#: guix-git/doc/guix.texi:6610 msgid "Run through PRoot. The @uref{https://proot-me.github.io/, PRoot} program provides the necessary support for file system virtualization. It achieves that by using the @code{ptrace} system call on the running program. This approach has the advantage to work without requiring special kernel support, but it incurs run-time overhead every time a system call is made." msgstr "Ejecución a través de PRoot. El programa @uref{https://proot-me.github.io/, PRoot} proporciona el soporte necesario para la virtualización del sistema de archivos. Lo consigue mediante el uso de la llamada al sistema @code{ptrace} en el programa en ejecución. Esta aproximación tiene la ventaja de funcionar sin soporte especial en el núcleo, pero incurre en una sobrecarga en el tiempo de ejecución cada vez que se realiza una llamada al sistema." #. type: item -#: guix-git/doc/guix.texi:6568 +#: guix-git/doc/guix.texi:6611 #, no-wrap msgid "fakechroot" msgstr "fakechroot" # FUZZY #. type: table -#: guix-git/doc/guix.texi:6576 +#: guix-git/doc/guix.texi:6619 msgid "Run through Fakechroot. @uref{https://github.com/dex4er/fakechroot/, Fakechroot} virtualizes file system accesses by intercepting calls to C library functions such as @code{open}, @code{stat}, @code{exec}, and so on. Unlike PRoot, it incurs very little overhead. However, it does not always work: for example, some file system accesses made from within the C library are not intercepted, and file system accesses made @i{via} direct syscalls are not intercepted either, leading to erratic behavior." msgstr "Ejecución a través de Fakechroot. @uref{https://github.com/dex4er/fakechroot/, Fakechroot} virtualiza los accesos al sistema de archivos interceptando las llamadas a las funciones de la biblioteca de C como @code{open}, @code{stat}, @code{exec}, etcétera. Al contrario que PRoot, el proceso se somete únicamente a una pequeña sobrecarga. No obstante, no siempre funciona: algunos accesos realizados dentro de la biblioteca de C no se interceptan, ni tampoco los accesos al sistema de archivos a través de llamadas al sistema directas, lo que puede provocar un comportamiento impredecible." #. type: vindex -#: guix-git/doc/guix.texi:6578 +#: guix-git/doc/guix.texi:6621 #, no-wrap msgid "GUIX_EXECUTION_ENGINE" msgstr "GUIX_EXECUTION_ENGINE" #. type: quotation -#: guix-git/doc/guix.texi:6582 +#: guix-git/doc/guix.texi:6625 msgid "When running a wrapped program, you can explicitly request one of the execution engines listed above by setting the @env{GUIX_EXECUTION_ENGINE} environment variable accordingly." msgstr "Cuando ejecute un programa recubierto puede solicitar explícitamente uno de los motores de ejecución enumerados previamente proporcionando el valor adecuado a la variable de entorno @env{GUIX_EXECUTION_ENGINE}." #. type: cindex -#: guix-git/doc/guix.texi:6584 +#: guix-git/doc/guix.texi:6627 #, no-wrap msgid "entry point, for Docker images" msgstr "punto de entrada, para imágenes de Docker" #. type: item -#: guix-git/doc/guix.texi:6585 +#: guix-git/doc/guix.texi:6628 #, no-wrap msgid "--entry-point=@var{command}" msgstr "--entry-point=@var{orden}" # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:6590 +#: guix-git/doc/guix.texi:6633 msgid "Use @var{command} as the @dfn{entry point} of the resulting pack, if the pack format supports it---currently @code{docker} and @code{squashfs} (Singularity) support it. @var{command} must be relative to the profile contained in the pack." msgstr "Usa @var{orden} como el @dfn{punto de entrada} del empaquetado resultante, si el formato de empaquetado lo permite---actualmente @code{docker} y @code{squashfs} (Singularity) lo permiten. @var{orden} debe ser una ruta relativa al perfil contenido en el empaquetado." #. type: table -#: guix-git/doc/guix.texi:6594 +#: guix-git/doc/guix.texi:6637 msgid "The entry point specifies the command that tools like @code{docker run} or @code{singularity run} automatically start by default. For example, you can do:" msgstr "El punto de entrada especifica la orden que herramientas como @code{docker run} o @code{singularity run} arrancan de manera automática de forma predeterminada. Por ejemplo, puede ejecutar:" #. type: example -#: guix-git/doc/guix.texi:6597 +#: guix-git/doc/guix.texi:6640 #, no-wrap msgid "guix pack -f docker --entry-point=bin/guile guile\n" msgstr "guix pack -f docker --entry-point=bin/guile guile\n" #. type: table -#: guix-git/doc/guix.texi:6601 +#: guix-git/doc/guix.texi:6644 msgid "The resulting pack can easily be loaded and @code{docker run} with no extra arguments will spawn @code{bin/guile}:" msgstr "El empaquetado resultante puede cargarse fácilmente y @code{docker run} sin parámetros adicionales lanzará @code{bin/guile}:" #. type: example -#: guix-git/doc/guix.texi:6605 +#: guix-git/doc/guix.texi:6648 #, no-wrap msgid "" "docker load -i pack.tar.gz\n" @@ -14631,403 +14751,403 @@ msgstr "" "docker run @var{image-id}\n" #. type: table -#: guix-git/doc/guix.texi:6610 guix-git/doc/guix.texi:12497 -#: guix-git/doc/guix.texi:13445 +#: guix-git/doc/guix.texi:6653 guix-git/doc/guix.texi:12812 +#: guix-git/doc/guix.texi:13802 msgid "Consider the package @var{expr} evaluates to." msgstr "Considera el paquete al que evalúa @var{expr}" #. type: table -#: guix-git/doc/guix.texi:6614 +#: guix-git/doc/guix.texi:6657 msgid "This has the same purpose as the same-named option in @command{guix build} (@pxref{Additional Build Options, @option{--expression} in @command{guix build}})." msgstr "Su propósito es idéntico a la opción del mismo nombre en @command{guix build} (@pxref{Additional Build Options, @option{--expression} en @command{guix build}})." #. type: table -#: guix-git/doc/guix.texi:6620 +#: guix-git/doc/guix.texi:6663 msgid "Use the packages contained in the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "Usa los paquetes contenidos en el objeto manifest devuelto por el código Scheme en @var{archivo}. Esta opción puede repetirse varias veces, en cuyo caso los manifiestos se concatenan." #. type: table -#: guix-git/doc/guix.texi:6628 +#: guix-git/doc/guix.texi:6671 msgid "This has a similar purpose as the same-named option in @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) and uses the same manifest files. It allows you to define a collection of packages once and use it both for creating profiles and for creating archives for use on machines that do not have Guix installed. Note that you can specify @emph{either} a manifest file @emph{or} a list of packages, but not both." msgstr "Esto tiene un propósito similar al de la opción del mismo nombre en @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) y usa los mismos archivos de manifiesto. Esto le permite definir una colección de paquetes una vez y usarla tanto para crear perfiles como para crear archivos en máquinas que no tienen instalado Guix. Fíjese que puede especificar @emph{o bien} un archivo de manifiesto @emph{o bien} una lista de paquetes, pero no ambas." #. type: item -#: guix-git/doc/guix.texi:6634 guix-git/doc/guix.texi:11539 +#: guix-git/doc/guix.texi:6677 guix-git/doc/guix.texi:11853 #, no-wrap msgid "--target=@var{triplet}" msgstr "--target=@var{tripleta}" #. type: cindex -#: guix-git/doc/guix.texi:6635 guix-git/doc/guix.texi:7080 -#: guix-git/doc/guix.texi:11540 +#: guix-git/doc/guix.texi:6678 guix-git/doc/guix.texi:7124 +#: guix-git/doc/guix.texi:11854 #, no-wrap msgid "cross-compilation" msgstr "compilación cruzada" #. type: table -#: guix-git/doc/guix.texi:6639 +#: guix-git/doc/guix.texi:6682 msgid "Cross-build for @var{triplet}, which must be a valid GNU triplet, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying target triplets, GNU configuration triplets,, autoconf, Autoconf})." msgstr "Compilación cruzada para la @var{tripleta}, que debe ser una tripleta GNU válida, cómo @code{\"aarch64-linux-gnu\"} (@pxref{Specifying target triplets, GNU configuration triplets,, autoconf, Autoconf})." #. type: item -#: guix-git/doc/guix.texi:6640 +#: guix-git/doc/guix.texi:6683 #, no-wrap msgid "--compression=@var{tool}" msgstr "--compression=@var{herramienta}" #. type: itemx -#: guix-git/doc/guix.texi:6641 +#: guix-git/doc/guix.texi:6684 #, no-wrap msgid "-C @var{tool}" msgstr "-C @var{herramienta}" #. type: table -#: guix-git/doc/guix.texi:6645 +#: guix-git/doc/guix.texi:6688 msgid "Compress the resulting tarball using @var{tool}---one of @code{gzip}, @code{zstd}, @code{bzip2}, @code{xz}, @code{lzip}, or @code{none} for no compression." msgstr "Comprime el archivador resultante usando @var{herramienta}---un valor que puede ser @code{gzip}, @code{zstd}, @code{bzip2}, @code{xz}, @code{lzip} o @code{none} para no usar compresión." #. type: item -#: guix-git/doc/guix.texi:6646 +#: guix-git/doc/guix.texi:6689 #, no-wrap msgid "--symlink=@var{spec}" msgstr "--symlink=@var{spec}" #. type: itemx -#: guix-git/doc/guix.texi:6647 +#: guix-git/doc/guix.texi:6690 #, no-wrap msgid "-S @var{spec}" msgstr "-S @var{spec}" #. type: table -#: guix-git/doc/guix.texi:6650 +#: guix-git/doc/guix.texi:6693 msgid "Add the symlinks specified by @var{spec} to the pack. This option can appear several times." msgstr "Añade los enlaces simbólicos especificados por @var{spec} al empaquetado. Esta opción puede aparecer varias veces." #. type: table -#: guix-git/doc/guix.texi:6654 +#: guix-git/doc/guix.texi:6697 msgid "@var{spec} has the form @code{@var{source}=@var{target}}, where @var{source} is the symlink that will be created and @var{target} is the symlink target." msgstr "La forma de @var{spec} es @code{@var{fuente}=@var{destino}}, donde @var{fuente} es el enlace simbólico que será creado y @var{destino} es el destino del enlace simbólico." #. type: table -#: guix-git/doc/guix.texi:6657 +#: guix-git/doc/guix.texi:6700 msgid "For instance, @code{-S /opt/gnu/bin=bin} creates a @file{/opt/gnu/bin} symlink pointing to the @file{bin} sub-directory of the profile." msgstr "Por ejemplo, @code{-S /opt/gnu/bin=bin} crea un enlace simbólico @file{/opt/gnu/bin} apuntando al subdirectorio @file{bin} del perfil." #. type: item -#: guix-git/doc/guix.texi:6658 guix-git/doc/guix.texi:35262 +#: guix-git/doc/guix.texi:6701 guix-git/doc/guix.texi:35706 #, no-wrap msgid "--save-provenance" msgstr "--save-provenance" #. type: table -#: guix-git/doc/guix.texi:6662 +#: guix-git/doc/guix.texi:6705 msgid "Save provenance information for the packages passed on the command line. Provenance information includes the URL and commit of the channels in use (@pxref{Channels})." msgstr "Almacena la información de procedencia para paquetes proporcionados en la línea de órdenes. La información de procedencia incluye la URL y revisión de los canales en uso (@pxref{Channels})." #. type: table -#: guix-git/doc/guix.texi:6668 +#: guix-git/doc/guix.texi:6711 msgid "Provenance information is saved in the @file{/gnu/store/@dots{}-profile/manifest} file in the pack, along with the usual package metadata---the name and version of each package, their propagated inputs, and so on. It is useful information to the recipient of the pack, who then knows how the pack was (supposedly) obtained." msgstr "La información de procedencia se almacena en el archivo @file{/gnu/store/@dots{}-profile/manifest} dentro del empaquetado, junto a los metadatos habituales del paquete---el nombre y la versión de cada paquete, sus entradas propagadas, etcétera. Es información útil para la parte receptora del empaquetado, quien de ese modo conoce como se obtuvo (supuestamente) dicho empaquetado." # FUZZY #. type: table -#: guix-git/doc/guix.texi:6674 +#: guix-git/doc/guix.texi:6717 msgid "This option is not enabled by default because, like timestamps, provenance information contributes nothing to the build process. In other words, there is an infinity of channel URLs and commit IDs that can lead to the same pack. Recording such ``silent'' metadata in the output thus potentially breaks the source-to-binary bitwise reproducibility property." msgstr "Esta opción no se usa de manera predeterminada debido a que, como las marcas de tiempo, la información de procedencia no aportan nada al proceso de construcción. En otras palabras, hay una infinidad de URL de canales e identificadores de revisiones que pueden llevar al mismo empaquetado. Almacenar estos metadatos ``silenciosos'' en la salida puede potencialmente romper la propiedad de reproducibilidad bit a bit entre fuentes y binarios." # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:6677 +#: guix-git/doc/guix.texi:6720 #, no-wrap msgid "garbage collector root, for packs" msgstr "raíces del recolector de basura, para empaquetados" # FUZZY #. type: table -#: guix-git/doc/guix.texi:6680 +#: guix-git/doc/guix.texi:6723 msgid "Make @var{file} a symlink to the resulting pack, and register it as a garbage collector root." msgstr "Hace que @var{archivo} sea un enlace simbólico al empaquetado resultante, y lo registra como una raíz del recolector de basura." #. type: item -#: guix-git/doc/guix.texi:6681 +#: guix-git/doc/guix.texi:6724 #, no-wrap msgid "--localstatedir" msgstr "--localstatedir" #. type: itemx -#: guix-git/doc/guix.texi:6682 +#: guix-git/doc/guix.texi:6725 #, no-wrap msgid "--profile-name=@var{name}" msgstr "--profile-name=@var{nombre}" #. type: table -#: guix-git/doc/guix.texi:6687 +#: guix-git/doc/guix.texi:6730 msgid "Include the ``local state directory'', @file{/var/guix}, in the resulting pack, and notably the @file{/var/guix/profiles/per-user/root/@var{name}} profile---by default @var{name} is @code{guix-profile}, which corresponds to @file{~root/.guix-profile}." msgstr "Incluye el ``directorio de estado local'', @file{/var/guix}, en el empaquetado resultante, y notablemente el perfil @file{/var/guix/profiles/per-user/root/@var{nombre}}---por defecto @var{nombre} es @code{guix-profile}, que corresponde con @file{~root/.guix-profile}." #. type: table -#: guix-git/doc/guix.texi:6693 +#: guix-git/doc/guix.texi:6736 msgid "@file{/var/guix} contains the store database (@pxref{The Store}) as well as garbage-collector roots (@pxref{Invoking guix gc}). Providing it in the pack means that the store is ``complete'' and manageable by Guix; not providing it pack means that the store is ``dead'': items cannot be added to it or removed from it after extraction of the pack." msgstr "@file{/var/guix} contiene la base de datos del almacén (@pxref{The Store}) así como las raíces del recolector de basura (@pxref{Invoking guix gc}). Proporcionarlo junto al empaquetado significa que el almacén está ``completo'' y Guix puede trabajar con él; no proporcionarlo significa que el almacén está ``muerto'': no se pueden añadir o borrar nuevos elementos después de la extracción del empaquetado." #. type: table -#: guix-git/doc/guix.texi:6696 +#: guix-git/doc/guix.texi:6739 msgid "One use case for this is the Guix self-contained binary tarball (@pxref{Binary Installation})." msgstr "Un caso de uso para esto es el archivador tar autocontenido de binarios de Guix (@pxref{Binary Installation})." #. type: item -#: guix-git/doc/guix.texi:6697 guix-git/doc/guix.texi:35256 +#: guix-git/doc/guix.texi:6740 guix-git/doc/guix.texi:35700 #, no-wrap msgid "--derivation" msgstr "--derivation" #. type: itemx -#: guix-git/doc/guix.texi:6698 guix-git/doc/guix.texi:11571 -#: guix-git/doc/guix.texi:35257 +#: guix-git/doc/guix.texi:6741 guix-git/doc/guix.texi:11885 +#: guix-git/doc/guix.texi:35701 #, no-wrap msgid "-d" msgstr "-d" #. type: table -#: guix-git/doc/guix.texi:6700 +#: guix-git/doc/guix.texi:6743 msgid "Print the name of the derivation that builds the pack." msgstr "Imprime el nombre de la derivación que construye el empaquetado." #. type: table -#: guix-git/doc/guix.texi:6704 +#: guix-git/doc/guix.texi:6747 msgid "Use the bootstrap binaries to build the pack. This option is only useful to Guix developers." msgstr "Usa los binarios del lanzamiento para construir el empaquetado. Esta opción es útil únicamente a las desarrolladoras de Guix." #. type: Plain text -#: guix-git/doc/guix.texi:6709 +#: guix-git/doc/guix.texi:6752 msgid "In addition, @command{guix pack} supports all the common build options (@pxref{Common Build Options}) and all the package transformation options (@pxref{Package Transformation Options})." msgstr "Además, @command{guix pack} acepta todas las opciones comunes de construcción (@pxref{Common Build Options}) y todas las opciones de transformación de paquetes (@pxref{Package Transformation Options})." #. type: cindex -#: guix-git/doc/guix.texi:6714 +#: guix-git/doc/guix.texi:6757 #, no-wrap msgid "GCC" msgstr "GCC" #. type: cindex -#: guix-git/doc/guix.texi:6715 +#: guix-git/doc/guix.texi:6758 #, no-wrap msgid "ld-wrapper" msgstr "ld-wrapper" #. type: cindex -#: guix-git/doc/guix.texi:6716 +#: guix-git/doc/guix.texi:6759 #, no-wrap msgid "linker wrapper" msgstr "recubrimiento del enlazador" #. type: cindex -#: guix-git/doc/guix.texi:6717 +#: guix-git/doc/guix.texi:6760 #, no-wrap msgid "toolchain, for C development" msgstr "cadena de herramientas de desarrollo, para C" #. type: cindex -#: guix-git/doc/guix.texi:6718 +#: guix-git/doc/guix.texi:6761 #, no-wrap msgid "toolchain, for Fortran development" msgstr "cadena de herramientas de desarrollo, para Fortran" #. type: Plain text -#: guix-git/doc/guix.texi:6725 +#: guix-git/doc/guix.texi:6768 msgid "If you need a complete toolchain for compiling and linking C or C++ source code, use the @code{gcc-toolchain} package. This package provides a complete GCC toolchain for C/C++ development, including GCC itself, the GNU C Library (headers and binaries, plus debugging symbols in the @code{debug} output), Binutils, and a linker wrapper." msgstr "Si necesita una cadena de herramientas de desarrollo completa para compilar y enlazar código fuente C o C++, use el paquete @code{gcc-toolchain}. Este paquete proporciona una cadena de herramientas GCC para desarrollo C/C++, incluyendo el propio GCC, la biblioteca de C GNU (cabeceras y binarios, más símbolos de depuración de la salida @code{debug}), Binutils y un recubrimiento del enlazador." #. type: Plain text -#: guix-git/doc/guix.texi:6731 +#: guix-git/doc/guix.texi:6774 msgid "The wrapper's purpose is to inspect the @code{-L} and @code{-l} switches passed to the linker, add corresponding @code{-rpath} arguments, and invoke the actual linker with this new set of arguments. You can instruct the wrapper to refuse to link against libraries not in the store by setting the @env{GUIX_LD_WRAPPER_ALLOW_IMPURITIES} environment variable to @code{no}." msgstr "El propósito del recubrimiento es inspeccionar las opciones @code{-L} y @code{-l} proporcionadas al enlazador, y los correspondientes parámetros @code{-rpath}, y llamar al enlazador real con este nuevo conjunto de parámetros. Puede instruir al recubrimiento para rechazar el enlace contra bibliotecas que no se encuentren en el almacén proporcionando el valor @code{no} a la variable de entorno @env{GUIX_LD_WRAPPER_ALLOW_IMPURITIES}." #. type: Plain text -#: guix-git/doc/guix.texi:6735 +#: guix-git/doc/guix.texi:6778 msgid "The package @code{gfortran-toolchain} provides a complete GCC toolchain for Fortran development. For other languages, please use @samp{guix search gcc toolchain} (@pxref{guix-search,, Invoking guix package})." msgstr "El paquete @code{gfortran-toolchain} proporciona una cadena de herramientas de desarrollo completa de GCC para desarrollo en Fortran. Para otros lenguajes por favor use @samp{guix search gcc toolchain} (@pxref{guix-search,, Invoking guix package})." #. type: section -#: guix-git/doc/guix.texi:6738 +#: guix-git/doc/guix.texi:6781 #, no-wrap msgid "Invoking @command{guix git authenticate}" msgstr "Invocación de @command{guix git authenticate}" #. type: Plain text -#: guix-git/doc/guix.texi:6746 +#: guix-git/doc/guix.texi:6789 msgid "The @command{guix git authenticate} command authenticates a Git checkout following the same rule as for channels (@pxref{channel-authentication, channel authentication}). That is, starting from a given commit, it ensures that all subsequent commits are signed by an OpenPGP key whose fingerprint appears in the @file{.guix-authorizations} file of its parent commit(s)." msgstr "La orden @command{guix git authenticate} verifica una revisión de Git siguiendo las mismas reglas que con los canales (@pxref{channel-authentication, verificación de canales}). Es decir, empezando en una revisión dada, se asegura que todas las revisiones posteriores están firmadas por una clave OpenPGP cuya huella aparece en el archivo @file{.guix-authorizations} de su revisión o revisiones antecesoras." #. type: Plain text -#: guix-git/doc/guix.texi:6751 +#: guix-git/doc/guix.texi:6794 msgid "You will find this command useful if you maintain a channel. But in fact, this authentication mechanism is useful in a broader context, so you might want to use it for Git repositories that have nothing to do with Guix." msgstr "Encontrará útil esta orden si mantiene un canal. Pero de hecho, este sistema de verificación es útil en un contexto más amplio, por lo que quizá quiera usarlo para repositorios de Git que no estén relacionados con Guix." #. type: example -#: guix-git/doc/guix.texi:6756 +#: guix-git/doc/guix.texi:6799 #, no-wrap msgid "guix git authenticate @var{commit} @var{signer} [@var{options}@dots{}]\n" msgstr "guix git authenticate @var{revisión} @var{firma} [@var{opciones}@dots{}]\n" #. type: Plain text -#: guix-git/doc/guix.texi:6765 +#: guix-git/doc/guix.texi:6808 msgid "By default, this command authenticates the Git checkout in the current directory; it outputs nothing and exits with exit code zero on success and non-zero on failure. @var{commit} above denotes the first commit where authentication takes place, and @var{signer} is the OpenPGP fingerprint of public key used to sign @var{commit}. Together, they form a ``channel introduction'' (@pxref{channel-authentication, channel introduction}). The options below allow you to fine-tune the process." msgstr "De manera predeterminada esta orden verifica la copia de trabajo de Git en el directorio actual; no muestra nada y termina con un código de salida cero en caso satisfactorio y con un valor distinto a cero en caso de fallo. @var{revisión} denota la primera revisión a partir de la cual la verificación tiene lugar, y @var{firma} es la huella de OpenPGP de la clave pública usada para firmar @var{revisión}. Juntas forman la ``presentación del canal'' (@pxref{channel-authentication, presentación del canal}). Las siguientes opciones le permiten controlar con más detalle el proceso." #. type: item -#: guix-git/doc/guix.texi:6767 +#: guix-git/doc/guix.texi:6810 #, no-wrap msgid "--repository=@var{directory}" msgstr "--repository=@var{directorio}" #. type: itemx -#: guix-git/doc/guix.texi:6768 +#: guix-git/doc/guix.texi:6811 #, no-wrap msgid "-r @var{directory}" msgstr "-r @var{directorio}" #. type: table -#: guix-git/doc/guix.texi:6771 +#: guix-git/doc/guix.texi:6814 msgid "Open the Git repository in @var{directory} instead of the current directory." msgstr "Usa el repositorio Git en @var{directorio} en vez del directorio actual." #. type: item -#: guix-git/doc/guix.texi:6772 +#: guix-git/doc/guix.texi:6815 #, no-wrap msgid "--keyring=@var{reference}" msgstr "--keyring=@var{referencia}" #. type: itemx -#: guix-git/doc/guix.texi:6773 +#: guix-git/doc/guix.texi:6816 #, no-wrap msgid "-k @var{reference}" msgstr "-k @var{referencia}" #. type: table -#: guix-git/doc/guix.texi:6779 +#: guix-git/doc/guix.texi:6822 msgid "Load OpenPGP keyring from @var{reference}, the reference of a branch such as @code{origin/keyring} or @code{my-keyring}. The branch must contain OpenPGP public keys in @file{.key} files, either in binary form or ``ASCII-armored''. By default the keyring is loaded from the branch named @code{keyring}." msgstr "Carga el anillo de claves desde @var{referencia}, la rama de referencia como por ejemplo @code{origin/keyring} o @code{mi-anillo-de-claves}. La rama debe contener las claves públicas de OpenPGP en archivos @file{.key}, binarios o con ``armadura ASCII'. De manera predeterminada el anillo de claves se carga de la rama con nombre @code{keyring}." #. type: item -#: guix-git/doc/guix.texi:6780 +#: guix-git/doc/guix.texi:6823 #, no-wrap msgid "--stats" msgstr "--stats" #. type: table -#: guix-git/doc/guix.texi:6782 +#: guix-git/doc/guix.texi:6825 msgid "Display commit signing statistics upon completion." msgstr "Muestra las estadísticas de firmas de revisiones tras finalizar." #. type: item -#: guix-git/doc/guix.texi:6783 +#: guix-git/doc/guix.texi:6826 #, no-wrap msgid "--cache-key=@var{key}" msgstr "--cache-key=@var{clave}" #. type: table -#: guix-git/doc/guix.texi:6787 +#: guix-git/doc/guix.texi:6830 msgid "Previously-authenticated commits are cached in a file under @file{~/.cache/guix/authentication}. This option forces the cache to be stored in file @var{key} in that directory." msgstr "Las revisiones verificadas previamente se almacenan en un archivo bajo @file{~/.cache/guix/authentication}. Esta opción fuerza el almacenamiento en el archivo @var{clave} de dicho directorio." #. type: item -#: guix-git/doc/guix.texi:6788 +#: guix-git/doc/guix.texi:6831 #, no-wrap msgid "--historical-authorizations=@var{file}" msgstr "--historical-authorizations=@var{archivo}" #. type: table -#: guix-git/doc/guix.texi:6795 +#: guix-git/doc/guix.texi:6838 msgid "By default, any commit whose parent commit(s) lack the @file{.guix-authorizations} file is considered inauthentic. In contrast, this option considers the authorizations in @var{file} for any commit that lacks @file{.guix-authorizations}. The format of @var{file} is the same as that of @file{.guix-authorizations} (@pxref{channel-authorizations, @file{.guix-authorizations} format})." msgstr "De manera predeterminada, cualquier revisión cuyo antecesor o antecesores carezcan del archivo @file{.guix-authorizations} no se considera auténtica. En contraste, esta opción considera las autorizaciones en @var{archivo} para cualquier revisión que carezca de @file{.guix-authorizations}. El formato de @var{archivo} es el mismo que el de @file{.guix-authorizations} (@pxref{channel-authorizations, formato de @file{.guix-authorizations}})." #. type: Plain text -#: guix-git/doc/guix.texi:6808 +#: guix-git/doc/guix.texi:6851 msgid "GNU Guix provides several Scheme programming interfaces (APIs) to define, build, and query packages. The first interface allows users to write high-level package definitions. These definitions refer to familiar packaging concepts, such as the name and version of a package, its build system, and its dependencies. These definitions can then be turned into concrete build actions." msgstr "GNU Guix proporciona viarias interfaces programáticas Scheme (APIs) para definir, construir y consultar paquetes. La primera interfaz permite a las usuarias escribir definiciones de paquetes a alto nivel. Estas definiciones referencian conceptos familiares de empaquetamiento, como el nombre y la versión de un paquete, su sistema de construcción y sus dependencias. Estas definiciones se pueden convertir en acciones concretas de construcción." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:6814 +#: guix-git/doc/guix.texi:6857 msgid "Build actions are performed by the Guix daemon, on behalf of users. In a standard setup, the daemon has write access to the store---the @file{/gnu/store} directory---whereas users do not. The recommended setup also has the daemon perform builds in chroots, under specific build users, to minimize interference with the rest of the system." msgstr "Las acciones de construcción son realizadas por el daemon Guix, en delegación de las usuarias. En una configuración estándar, el daemon tiene acceso de escritura al almacén---el directorio @file{/gnu/store}---mientras que las usuarias no. En la configuración recomendada el daemon también realiza las construcciones en chroots, bajo usuarias específicas de construcción, para minimizar la interferencia con el resto del sistema." #. type: Plain text -#: guix-git/doc/guix.texi:6823 +#: guix-git/doc/guix.texi:6866 msgid "Lower-level APIs are available to interact with the daemon and the store. To instruct the daemon to perform a build action, users actually provide it with a @dfn{derivation}. A derivation is a low-level representation of the build actions to be taken, and the environment in which they should occur---derivations are to package definitions what assembly is to C programs. The term ``derivation'' comes from the fact that build results @emph{derive} from them." msgstr "Las APIs de nivel más bajo están disponibles para interactuar con el daemon y el almacén. Para instruir al daemon para realizar una acción de construcción, las usuarias realmente proporcionan una @dfn{derivación}. Una derivación es una representación de bajo nivel de las acciones de construcción a tomar, y el entorno en el que deberían suceder---las derivaciones son a las definiciones de paquetes lo que es el ensamblador a los programas en C. El término ``derivación'' viene del hecho de que los resultados de la construcción @emph{derivan} de ellas." #. type: Plain text -#: guix-git/doc/guix.texi:6826 +#: guix-git/doc/guix.texi:6869 msgid "This chapter describes all these APIs in turn, starting from high-level package definitions." msgstr "Este capítulo describe todas estas APIs en orden, empezando por las definiciones de alto nivel de paquetes." #. type: menuentry -#: guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:6883 msgid "Programming Guix in Guile" msgstr "Programación de Guix en Guile" #. type: Plain text -#: guix-git/doc/guix.texi:6855 +#: guix-git/doc/guix.texi:6899 msgid "From a programming viewpoint, the package definitions of the GNU distribution are provided by Guile modules in the @code{(gnu packages @dots{})} name space@footnote{Note that packages under the @code{(gnu packages @dots{})} module name space are not necessarily ``GNU packages''. This module naming scheme follows the usual Guile module naming convention: @code{gnu} means that these modules are distributed as part of the GNU system, and @code{packages} identifies modules that define packages.} (@pxref{Modules, Guile modules,, guile, GNU Guile Reference Manual}). For instance, the @code{(gnu packages emacs)} module exports a variable named @code{emacs}, which is bound to a @code{} object (@pxref{Defining Packages})." msgstr "Desde un punto de vista programático, las definiciones de paquetes de la distribución GNU se proporcionan por módulos Guile en el espacio de nombres @code{(gnu packages @dots{})}@footnote{Fíjese que los paquetes bajo el espacio de nombres de módulo @code{(gnu packages @dots{})} no son necesariamente ``paquetes GNU''. Este esquema de nombrado de módulos sigue la convención habitual de Guile para el nombrado de módulos: @code{gnu} significa que estos módulos se distribuyen como parte del sistema GNU, y @code{packages} identifica módulos que definen paquetes.} (@pxref{Modules, Guile modules,, guile, GNU Guile Reference Manual}). Por ejemplo, el módulo @code{(gnu packages emacs)} exporta una variable con nombre @code{emacs}, que está asociada a un objeto @code{} (@pxref{Defining Packages})." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:6862 +#: guix-git/doc/guix.texi:6906 msgid "The @code{(gnu packages @dots{})} module name space is automatically scanned for packages by the command-line tools. For instance, when running @code{guix install emacs}, all the @code{(gnu packages @dots{})} modules are scanned until one that exports a package object whose name is @code{emacs} is found. This package search facility is implemented in the @code{(gnu packages)} module." msgstr "El espacio de nombres de módulos @code{(gnu packages @dots{})} se recorre automáticamente en busca de paquetes en las herramientas de línea de ordenes. Por ejemplo, cuando se ejecuta @code{guix install emacs}, todos los módulos @code{(gnu packages @dots{})} son procesados hasta encontrar uno que exporte un objeto de paquete cuyo nombre sea @code{emacs}. Esta búsqueda de paquetes se implementa en el módulo @code{(gnu packages)}." #. type: cindex -#: guix-git/doc/guix.texi:6864 +#: guix-git/doc/guix.texi:6908 #, no-wrap msgid "package module search path" msgstr "ruta de búsqueda de módulos de paquetes" #. type: Plain text -#: guix-git/doc/guix.texi:6873 +#: guix-git/doc/guix.texi:6917 msgid "Users can store package definitions in modules with different names---e.g., @code{(my-packages emacs)}@footnote{Note that the file name and module name must match. For instance, the @code{(my-packages emacs)} module must be stored in a @file{my-packages/emacs.scm} file relative to the load path specified with @option{--load-path} or @env{GUIX_PACKAGE_PATH}. @xref{Modules and the File System,,, guile, GNU Guile Reference Manual}, for details.}. There are two ways to make these package definitions visible to the user interfaces:" msgstr "Las usuarias pueden almacenar definiciones de paquetes en módulos con nombres diferentes---por ejemplo, @code{(mis-paquetes emacs)}@footnote{Fíjese que el nombre de archivo y el nombre de módulo deben coincidir. Por ejemplo, el módulo @code{(mis-paquetes emacs)} debe almacenarse en el archivo @file{mis-paquetes/emacs.scm} en relación con la ruta de carga especificada con @option{--load-path} o @env{GUIX_PACKAGE_PATH}. @xref{Modules and the File System,,, guile, GNU Guile Reference Manual}, para obtener detalles.}. Existen dos maneras de hacer visibles estas definiciones de paquetes a las interfaces de usuaria:" #. type: enumerate -#: guix-git/doc/guix.texi:6880 +#: guix-git/doc/guix.texi:6924 msgid "By adding the directory containing your package modules to the search path with the @code{-L} flag of @command{guix package} and other commands (@pxref{Common Build Options}), or by setting the @env{GUIX_PACKAGE_PATH} environment variable described below." msgstr "Mediante la adición del directorio que contiene sus módulos de paquetes a la ruta de búsqueda con la opción @code{-L} de @command{guix package} y otras órdenes (@pxref{Common Build Options}), o usando la variable de entorno @env{GUIX_PACKAGE_PATH} descrita a continuación." #. type: enumerate -#: guix-git/doc/guix.texi:6886 +#: guix-git/doc/guix.texi:6930 msgid "By defining a @dfn{channel} and configuring @command{guix pull} so that it pulls from it. A channel is essentially a Git repository containing package modules. @xref{Channels}, for more information on how to define and use channels." msgstr "Mediante la definición de un @dfn{canal} y la configuración de @command{guix pull} de manera que se actualice desde él. Un canal es esencialmente un repositorio Git que contiene módulos de paquetes. @xref{Channels}, para más información sobre cómo definir y usar canales." #. type: Plain text -#: guix-git/doc/guix.texi:6889 +#: guix-git/doc/guix.texi:6933 msgid "@env{GUIX_PACKAGE_PATH} works similarly to other search path variables:" msgstr "@env{GUIX_PACKAGE_PATH} funciona de forma similar a otras variables de rutas de búsqueda:" #. type: defvr -#: guix-git/doc/guix.texi:6890 +#: guix-git/doc/guix.texi:6934 #, no-wrap msgid "{Environment Variable} GUIX_PACKAGE_PATH" msgstr "{Variable de entorno} GUIX_PACKAGE_PATH" #. type: defvr -#: guix-git/doc/guix.texi:6894 +#: guix-git/doc/guix.texi:6938 msgid "This is a colon-separated list of directories to search for additional package modules. Directories listed in this variable take precedence over the own modules of the distribution." msgstr "Es una lista separada por dos puntos de directorios en los que se buscarán módulos de paquetes adicionales. Los directorios enumerados en esta variable tienen preferencia sobre los propios módulos de la distribución." #. type: Plain text -#: guix-git/doc/guix.texi:6902 +#: guix-git/doc/guix.texi:6946 msgid "The distribution is fully @dfn{bootstrapped} and @dfn{self-contained}: each package is built based solely on other packages in the distribution. The root of this dependency graph is a small set of @dfn{bootstrap binaries}, provided by the @code{(gnu packages bootstrap)} module. For more information on bootstrapping, @pxref{Bootstrapping}." msgstr "La distribución es @dfn{auto-contenida} y completamente @dfn{basada en el lanzamiento inicial}: cada paquete se construye basado únicamente en otros paquetes de la distribución. La raíz de este grafo de dependencias es un pequeño conjunto de @dfn{binarios del lanzamiento inicial}, proporcionados por el módulo @code{(gnu packages bootstrap)}. Para más información sobre el lanzamiento inicial, @pxref{Bootstrapping}." #. type: Plain text -#: guix-git/doc/guix.texi:6910 +#: guix-git/doc/guix.texi:6954 msgid "The high-level interface to package definitions is implemented in the @code{(guix packages)} and @code{(guix build-system)} modules. As an example, the package definition, or @dfn{recipe}, for the GNU Hello package looks like this:" msgstr "La interfaz de alto nivel de las definiciones de paquetes está implementada en los módulos @code{(guix packages)} y @code{(guix build-system)}. Como un ejemplo, la definición de paquete, o @dfn{receta}, para el paquete GNU Hello es como sigue:" #. type: lisp -#: guix-git/doc/guix.texi:6918 +#: guix-git/doc/guix.texi:6962 #, no-wrap msgid "" "(define-module (gnu packages hello)\n" @@ -15047,7 +15167,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:6937 +#: guix-git/doc/guix.texi:6981 #, fuzzy, no-wrap #| msgid "" #| "(define-public hello\n" @@ -15108,74 +15228,74 @@ msgstr "" " (license gpl3+)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:6947 +#: guix-git/doc/guix.texi:6991 msgid "Without being a Scheme expert, the reader may have guessed the meaning of the various fields here. This expression binds the variable @code{hello} to a @code{} object, which is essentially a record (@pxref{SRFI-9, Scheme records,, guile, GNU Guile Reference Manual}). This package object can be inspected using procedures found in the @code{(guix packages)} module; for instance, @code{(package-name hello)} returns---surprise!---@code{\"hello\"}." msgstr "Sin ser una experta en Scheme---pero conociendo un poco de inglés---, la lectora puede haber supuesto el significado de varios campos aquí. Esta expresión asocia la variable @code{hello} al objeto @code{}, que esencialmente es un registro (@pxref{SRFI-9, Scheme records,, guile, GNU Guile Reference Manual}). Este objeto de paquete puede ser inspeccionado usando los procedimientos encontrados en el módulo @code{(guix packages)}; por ejemplo, @code{(package-name hello)} devuelve---¡sorpresa!---@code{\"hello\"}." #. type: Plain text -#: guix-git/doc/guix.texi:6951 +#: guix-git/doc/guix.texi:6995 msgid "With luck, you may be able to import part or all of the definition of the package you are interested in from another repository, using the @code{guix import} command (@pxref{Invoking guix import})." msgstr "Con suerte, puede que sea capaz de importar parte o toda la definición del paquete de su interés de otro repositorio, usando la orden @code{guix import} (@pxref{Invoking guix import})." #. type: Plain text -#: guix-git/doc/guix.texi:6957 +#: guix-git/doc/guix.texi:7001 msgid "In the example above, @code{hello} is defined in a module of its own, @code{(gnu packages hello)}. Technically, this is not strictly necessary, but it is convenient to do so: all the packages defined in modules under @code{(gnu packages @dots{})} are automatically known to the command-line tools (@pxref{Package Modules})." msgstr "En el ejemplo previo, @code{hello} se define en un módulo para ella, @code{(gnu packages hello)}. Técnicamente, esto no es estrictamente necesario, pero es conveniente hacerlo: todos los paquetes definidos en módulos bajo @code{(gnu packages @dots{})} se reconocen automáticamente en las herramientas de línea de órdenes (@pxref{Package Modules})." #. type: Plain text -#: guix-git/doc/guix.texi:6959 +#: guix-git/doc/guix.texi:7003 msgid "There are a few points worth noting in the above package definition:" msgstr "Hay unos pocos puntos que merece la pena destacar de la definición de paquete previa:" #. type: itemize -#: guix-git/doc/guix.texi:6966 +#: guix-git/doc/guix.texi:7010 msgid "The @code{source} field of the package is an @code{} object (@pxref{origin Reference}, for the complete reference). Here, the @code{url-fetch} method from @code{(guix download)} is used, meaning that the source is a file to be downloaded over FTP or HTTP." msgstr "El campo @code{source} del paquete es un objeto @code{} (@pxref{origin Reference}, para la referencia completa). Aquí se usa el método @code{url-fetch} de @code{(guix download)}, lo que significa que la fuente es un archivo a descargar por FTP o HTTP." #. type: itemize -#: guix-git/doc/guix.texi:6969 +#: guix-git/doc/guix.texi:7013 msgid "The @code{mirror://gnu} prefix instructs @code{url-fetch} to use one of the GNU mirrors defined in @code{(guix download)}." msgstr "El prefijo @code{mirror://gnu} instruye a @code{url-fetch} para usar uno de los espejos GNU definidos en @code{(guix download)}." #. type: itemize -#: guix-git/doc/guix.texi:6976 +#: guix-git/doc/guix.texi:7020 msgid "The @code{sha256} field specifies the expected SHA256 hash of the file being downloaded. It is mandatory, and allows Guix to check the integrity of the file. The @code{(base32 @dots{})} form introduces the base32 representation of the hash. You can obtain this information with @code{guix download} (@pxref{Invoking guix download}) and @code{guix hash} (@pxref{Invoking guix hash})." msgstr "El campo @code{sha256} especifica el hash SHA256 esperado del archivo descargado. Es obligatorio, y permite a Guix comprobar la integridad del archivo. La forma @code{(base32 @dots{})} introduce la representación base32 del hash. Puede obtener esta información con @code{guix download} (@pxref{Invoking guix download}) y @code{guix hash} (@pxref{Invoking guix hash})." #. type: cindex -#: guix-git/doc/guix.texi:6977 +#: guix-git/doc/guix.texi:7021 #, no-wrap msgid "patches" msgstr "parches" #. type: itemize -#: guix-git/doc/guix.texi:6981 +#: guix-git/doc/guix.texi:7025 msgid "When needed, the @code{origin} form can also have a @code{patches} field listing patches to be applied, and a @code{snippet} field giving a Scheme expression to modify the source code." msgstr "Cuando sea necesario, la forma @code{origin} también puede tener un campo @code{patches} con la lista de parches a ser aplicados, y un campo @code{snippet} con una expresión Scheme para modificar el código fuente." #. type: cindex -#: guix-git/doc/guix.texi:6983 +#: guix-git/doc/guix.texi:7027 #, no-wrap msgid "GNU Build System" msgstr "Sistema de construcción GNU" #. type: itemize -#: guix-git/doc/guix.texi:6989 +#: guix-git/doc/guix.texi:7033 msgid "The @code{build-system} field specifies the procedure to build the package (@pxref{Build Systems}). Here, @code{gnu-build-system} represents the familiar GNU Build System, where packages may be configured, built, and installed with the usual @code{./configure && make && make check && make install} command sequence." msgstr "El campo @code{build-system} especifica el procedimiento de construcción del paquete (@pxref{Build Systems}). Aquí, @code{gnu-build-system} representa el familiar sistema de construcción GNU, donde los paquetes pueden configurarse, construirse e instalarse con la secuencia de ordenes habitual @code{./configure && make && make check && make install}." #. type: itemize -#: guix-git/doc/guix.texi:6993 +#: guix-git/doc/guix.texi:7037 msgid "When you start packaging non-trivial software, you may need tools to manipulate those build phases, manipulate files, and so on. @xref{Build Utilities}, for more on this." msgstr "Cuando comience a empaquetar software no trivial puede que necesite herramientas para manipular estas fases de construcción, manipular archivos, etcétera. @xref{Build Utilities} para obtener más información sobre este tema." #. type: itemize -#: guix-git/doc/guix.texi:6999 +#: guix-git/doc/guix.texi:7043 msgid "The @code{arguments} field specifies options for the build system (@pxref{Build Systems}). Here it is interpreted by @code{gnu-build-system} as a request run @file{configure} with the @option{--enable-silent-rules} flag." msgstr "El campo @code{arguments} especifica las opciones para el sistema de construcción (@pxref{Build Systems}). Aquí son interpretadas por @code{gnu-build-system} como una petición de ejecutar @file{configure} con la opción @option{--enable-silent-rules}." #. type: findex -#: guix-git/doc/guix.texi:7000 guix-git/doc/guix.texi:7003 +#: guix-git/doc/guix.texi:7044 guix-git/doc/guix.texi:7047 #, no-wrap msgid "quote" msgstr "quote" @@ -15183,265 +15303,265 @@ msgstr "quote" # FUZZY # MAAV: Es el concepto, pero no me convence. #. type: cindex -#: guix-git/doc/guix.texi:7001 +#: guix-git/doc/guix.texi:7045 #, no-wrap msgid "quoting" msgstr "literales, inhibición de la evaluación" #. type: findex -#: guix-git/doc/guix.texi:7002 +#: guix-git/doc/guix.texi:7046 #, no-wrap msgid "'" msgstr "'" #. type: cindex -#: guix-git/doc/guix.texi:7004 +#: guix-git/doc/guix.texi:7048 #, no-wrap msgid "backquote (quasiquote)" msgstr "acento grave (quasiquote)" #. type: findex -#: guix-git/doc/guix.texi:7005 +#: guix-git/doc/guix.texi:7049 #, no-wrap msgid "`" msgstr "`" #. type: findex -#: guix-git/doc/guix.texi:7006 +#: guix-git/doc/guix.texi:7050 #, no-wrap msgid "quasiquote" msgstr "quasiquote" #. type: cindex -#: guix-git/doc/guix.texi:7007 +#: guix-git/doc/guix.texi:7051 #, no-wrap msgid "comma (unquote)" msgstr "coma (unquote)" #. type: findex -#: guix-git/doc/guix.texi:7008 +#: guix-git/doc/guix.texi:7052 #, no-wrap msgid "," msgstr "," #. type: findex -#: guix-git/doc/guix.texi:7009 +#: guix-git/doc/guix.texi:7053 #, no-wrap msgid "unquote" msgstr "unquote" #. type: itemize -#: guix-git/doc/guix.texi:7019 +#: guix-git/doc/guix.texi:7063 #, fuzzy #| msgid "What about these quote (@code{'}) characters? They are Scheme syntax to introduce a literal list; @code{'} is synonymous with @code{quote}. @xref{Expression Syntax, quoting,, guile, GNU Guile Reference Manual}, for details. Here the value of the @code{arguments} field is a list of arguments passed to the build system down the road, as with @code{apply} (@pxref{Fly Evaluation, @code{apply},, guile, GNU Guile Reference Manual})." msgid "What about these quote (@code{'}) characters? They are Scheme syntax to introduce a literal list; @code{'} is synonymous with @code{quote}. Sometimes you'll also see @code{`} (a backquote, synonymous with @code{quasiquote}) and @code{,} (a comma, synonymous with @code{unquote}). @xref{Expression Syntax, quoting,, guile, GNU Guile Reference Manual}, for details. Here the value of the @code{arguments} field is a list of arguments passed to the build system down the road, as with @code{apply} (@pxref{Fly Evaluation, @code{apply},, guile, GNU Guile Reference Manual})." msgstr "¿Qué son estas comillas simples (@code{'})? Son sintaxis Scheme para introducir una lista literal; @code{'} es sinónimo de @code{quote}. @xref{Expression Syntax, quoting,, guile, GNU Guile Reference Manual}, para más detalles. Aquí el valor del campo @code{arguments} es una lista de parámetros pasada al sistema de construcción, como con @code{apply} (@pxref{Fly Evaluation, @code{apply},, guile, GNU Guile Reference Manual})." #. type: itemize -#: guix-git/doc/guix.texi:7025 +#: guix-git/doc/guix.texi:7069 msgid "The hash-colon (@code{#:}) sequence defines a Scheme @dfn{keyword} (@pxref{Keywords,,, guile, GNU Guile Reference Manual}), and @code{#:configure-flags} is a keyword used to pass a keyword argument to the build system (@pxref{Coding With Keywords,,, guile, GNU Guile Reference Manual})." msgstr "La secuencia almohadilla-dos puntos (@code{#:}) define una @dfn{palabra clave} Scheme (@pxref{Keywords,,, guile, GNU Guile Reference Manual}), y @code{#:configure-flags} es una palabra clave usada para pasar un parámetro nominal al sistema de construcción (@pxref{Coding With Keywords,,, guile, GNU Guile Reference Manual})." #. type: itemize -#: guix-git/doc/guix.texi:7031 +#: guix-git/doc/guix.texi:7075 #, fuzzy #| msgid "The @code{inputs} field specifies inputs to the build process---i.e., build-time or run-time dependencies of the package. Here, we define an input called @code{\"gawk\"} whose value is that of the @code{gawk} variable; @code{gawk} is itself bound to a @code{} object." msgid "The @code{inputs} field specifies inputs to the build process---i.e., build-time or run-time dependencies of the package. Here, we add an input, a reference to the @code{gawk} variable; @code{gawk} is itself bound to a @code{} object." msgstr "El campo @code{inputs} especifica las entradas al proceso de construcción---es decir, dependencias de tiempo de construcción o ejecución del paquete. Aquí, definimos una entrada llamada @code{\"gawk\"}, cuyo valor es el de la variable @code{gawk}; @code{gawk} en sí apunta a un objeto @code{}." #. type: itemize -#: guix-git/doc/guix.texi:7035 +#: guix-git/doc/guix.texi:7079 msgid "Note that GCC, Coreutils, Bash, and other essential tools do not need to be specified as inputs here. Instead, @code{gnu-build-system} takes care of ensuring that they are present (@pxref{Build Systems})." msgstr "Fíjese que no hace falta que GCC, Coreutils, Bash y otras herramientas esenciales se especifiquen como entradas aquí. En vez de eso, @code{gnu-build-system} se hace cargo de asegurar que están presentes (@pxref{Build Systems})." #. type: itemize -#: guix-git/doc/guix.texi:7039 +#: guix-git/doc/guix.texi:7083 msgid "However, any other dependencies need to be specified in the @code{inputs} field. Any dependency not specified here will simply be unavailable to the build process, possibly leading to a build failure." msgstr "No obstante, cualquier otra dependencia debe ser especificada en el campo @code{inputs}. Las dependencias no especificadas aquí simplemente no estarán disponibles para el proceso de construcción, provocando posiblemente un fallo de construcción." #. type: Plain text -#: guix-git/doc/guix.texi:7042 +#: guix-git/doc/guix.texi:7086 msgid "@xref{package Reference}, for a full description of possible fields." msgstr "@xref{package Reference}, para una descripción completa de los campos posibles." # MAAV (TODO): conformidad???? #. type: Plain text -#: guix-git/doc/guix.texi:7053 +#: guix-git/doc/guix.texi:7097 msgid "Once a package definition is in place, the package may actually be built using the @code{guix build} command-line tool (@pxref{Invoking guix build}), troubleshooting any build failures you encounter (@pxref{Debugging Build Failures}). You can easily jump back to the package definition using the @command{guix edit} command (@pxref{Invoking guix edit}). @xref{Packaging Guidelines}, for more information on how to test package definitions, and @ref{Invoking guix lint}, for information on how to check a definition for style conformance." msgstr "Una vez la definición de paquete esté en su lugar, el paquete puede ser construido realmente usando la herramienta de línea de órdenes @code{guix build} (@pxref{Invoking guix build}), pudiendo resolver cualquier fallo de construcción que encuentre (@pxref{Debugging Build Failures}). Puede volver a la definición del paquete fácilmente usando la orden @command{guix edit} (@pxref{Invoking guix edit}). @xref{Packaging Guidelines}, para más información sobre cómo probar definiciones de paquetes, y @ref{Invoking guix lint}, para información sobre cómo comprobar la consistencia del estilo de una definición." #. type: vindex -#: guix-git/doc/guix.texi:7053 +#: guix-git/doc/guix.texi:7097 #, no-wrap msgid "GUIX_PACKAGE_PATH" msgstr "GUIX_PACKAGE_PATH" #. type: Plain text -#: guix-git/doc/guix.texi:7057 +#: guix-git/doc/guix.texi:7101 msgid "Lastly, @pxref{Channels}, for information on how to extend the distribution by adding your own package definitions in a ``channel''." msgstr "Por último, @pxref{Channels}, para información sobre cómo extender la distribución añadiendo sus propias definiciones de paquetes en un ``canal''." #. type: Plain text -#: guix-git/doc/guix.texi:7061 +#: guix-git/doc/guix.texi:7105 msgid "Finally, updating the package definition to a new upstream version can be partly automated by the @command{guix refresh} command (@pxref{Invoking guix refresh})." msgstr "Finalmente, la actualización de la definición con una nueva versión oficial puede ser automatizada parcialmente por la orden @command{guix refresh} (@pxref{Invoking guix refresh})." #. type: Plain text -#: guix-git/doc/guix.texi:7067 +#: guix-git/doc/guix.texi:7111 msgid "Behind the scenes, a derivation corresponding to the @code{} object is first computed by the @code{package-derivation} procedure. That derivation is stored in a @file{.drv} file under @file{/gnu/store}. The build actions it prescribes may then be realized by using the @code{build-derivations} procedure (@pxref{The Store})." msgstr "Tras el telón, una derivación correspondiente al objeto @code{} se calcula primero mediante el procedimiento @code{package-derivation}. Esta derivación se almacena en un archivo @code{.drv} bajo @file{/gnu/store}. Las acciones de construcción que prescribe pueden entonces llevarse a cabo usando el procedimiento @code{build-derivations} (@pxref{The Store})." #. type: deffn -#: guix-git/doc/guix.texi:7068 +#: guix-git/doc/guix.texi:7112 #, no-wrap msgid "{Scheme Procedure} package-derivation @var{store} @var{package} [@var{system}]" msgstr "{Procedimiento Scheme} package-derivation @var{almacén} @var{paquete} [@var{sistema}]" #. type: deffn -#: guix-git/doc/guix.texi:7071 +#: guix-git/doc/guix.texi:7115 msgid "Return the @code{} object of @var{package} for @var{system} (@pxref{Derivations})." msgstr "Devuelve el objeto @code{} del @var{paquete} pra el @var{sistema} (@pxref{Derivations})." #. type: deffn -#: guix-git/doc/guix.texi:7077 +#: guix-git/doc/guix.texi:7121 msgid "@var{package} must be a valid @code{} object, and @var{system} must be a string denoting the target system type---e.g., @code{\"x86_64-linux\"} for an x86_64 Linux-based GNU system. @var{store} must be a connection to the daemon, which operates on the store (@pxref{The Store})." msgstr "@var{paquete} debe ser un objeto @code{} válido, y @var{sistema} debe ser una cadena que denote el tipo de sistema objetivo---por ejemplo, @code{\"x86_64-linux\"} para un sistema GNU x86_64 basado en Linux. @var{almacén} debe ser una conexión al daemon, que opera en el almacén (@pxref{The Store})." #. type: Plain text -#: guix-git/doc/guix.texi:7083 +#: guix-git/doc/guix.texi:7127 msgid "Similarly, it is possible to compute a derivation that cross-builds a package for some other system:" msgstr "De manera similar, es posible calcular una derivación que construye de forma cruzada un paquete para otro sistema:" #. type: deffn -#: guix-git/doc/guix.texi:7084 +#: guix-git/doc/guix.texi:7128 #, no-wrap msgid "{Scheme Procedure} package-cross-derivation @var{store} @" msgstr "{Procedimiento Scheme} package-cross-derivation @var{almacén} @" #. type: deffn -#: guix-git/doc/guix.texi:7088 +#: guix-git/doc/guix.texi:7132 msgid "@var{package} @var{target} [@var{system}] Return the @code{} object of @var{package} cross-built from @var{system} to @var{target}." msgstr "" "@var{paquete} @var{plataforma} [@var{sistema}]\n" "Devuelve el objeto @code{} de @var{paquete} compilado de forma cruzada desde @var{sistema} a @var{plataforma}." #. type: deffn -#: guix-git/doc/guix.texi:7092 +#: guix-git/doc/guix.texi:7136 msgid "@var{target} must be a valid GNU triplet denoting the target hardware and operating system, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying Target Triplets,,, autoconf, Autoconf})." msgstr "@var{plataforma} debe ser una tripleta GNU válida que identifique al hardware y el sistema operativo deseado, como por ejemplo @code{\"aarch64-linux-gnu\"} (@pxref{Specifying Target Triplets,,, autoconf, Autoconf})." #. type: Plain text -#: guix-git/doc/guix.texi:7096 +#: guix-git/doc/guix.texi:7140 msgid "Once you have package definitions, you can easily define @emph{variants} of those packages. @xref{Defining Package Variants}, for more on that." msgstr "Una vez tenga sus definiciones de paquetes puede definir facilmente @emph{variantes} de dichos paquetes. @xref{Defining Package Variants} para obtener más información sobre ello." #. type: subsection -#: guix-git/doc/guix.texi:7104 +#: guix-git/doc/guix.texi:7148 #, no-wrap msgid "@code{package} Reference" msgstr "Referencia de @code{package}" #. type: Plain text -#: guix-git/doc/guix.texi:7108 +#: guix-git/doc/guix.texi:7152 msgid "This section summarizes all the options available in @code{package} declarations (@pxref{Defining Packages})." msgstr "Esta sección resume todas las opciones disponibles en declaraciones @code{package} (@pxref{Defining Packages})." #. type: deftp -#: guix-git/doc/guix.texi:7109 +#: guix-git/doc/guix.texi:7153 #, no-wrap msgid "{Data Type} package" msgstr "{Tipo de datos} package" #. type: deftp -#: guix-git/doc/guix.texi:7111 +#: guix-git/doc/guix.texi:7155 msgid "This is the data type representing a package recipe." msgstr "Este es el tipo de datos que representa la receta de un paquete." #. type: table -#: guix-git/doc/guix.texi:7115 +#: guix-git/doc/guix.texi:7159 msgid "The name of the package, as a string." msgstr "El nombre del paquete, como una cadena." #. type: code{#1} -#: guix-git/doc/guix.texi:7116 +#: guix-git/doc/guix.texi:7160 #, no-wrap msgid "version" msgstr "version" #. type: table -#: guix-git/doc/guix.texi:7119 +#: guix-git/doc/guix.texi:7163 #, fuzzy #| msgid "The version of the package, as a string." msgid "The version of the package, as a string. @xref{Version Numbers}, for guidelines." msgstr "La versión del paquete, como una cadena." #. type: code{#1} -#: guix-git/doc/guix.texi:7120 guix-git/doc/guix.texi:12900 -#: guix-git/doc/guix.texi:15181 guix-git/doc/guix.texi:15790 +#: guix-git/doc/guix.texi:7164 guix-git/doc/guix.texi:13257 +#: guix-git/doc/guix.texi:15538 guix-git/doc/guix.texi:16147 #, no-wrap msgid "source" msgstr "source" #. type: table -#: guix-git/doc/guix.texi:7127 +#: guix-git/doc/guix.texi:7171 msgid "An object telling how the source code for the package should be acquired. Most of the time, this is an @code{origin} object, which denotes a file fetched from the Internet (@pxref{origin Reference}). It can also be any other ``file-like'' object such as a @code{local-file}, which denotes a file from the local file system (@pxref{G-Expressions, @code{local-file}})." msgstr "Un objeto que determina cómo se debería obtener el código fuente del paquete. La mayor parte del tiempo, es un objeto @code{origin}, que denota un archivo obtenido de Internet (@pxref{origin Reference}). También puede ser cualquier otro objeto ``tipo-archivo'' como @code{local-file}, que denota un archivo del sistema local de archivos (@pxref{G-Expressions, @code{local-file}})." #. type: code{#1} -#: guix-git/doc/guix.texi:7128 +#: guix-git/doc/guix.texi:7172 #, no-wrap msgid "build-system" msgstr "build-system" #. type: table -#: guix-git/doc/guix.texi:7131 +#: guix-git/doc/guix.texi:7175 msgid "The build system that should be used to build the package (@pxref{Build Systems})." msgstr "El sistema de construcción que debe ser usado para construir el paquete (@pxref{Build Systems})." #. type: item -#: guix-git/doc/guix.texi:7132 guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:7176 guix-git/doc/guix.texi:18315 #, no-wrap msgid "@code{arguments} (default: @code{'()})" msgstr "@code{arguments} (predeterminados: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:7135 +#: guix-git/doc/guix.texi:7179 msgid "The arguments that should be passed to the build system. This is a list, typically containing sequential keyword-value pairs." msgstr "Los parámetros que deben ser pasados al sistema de construcción. Es una lista que normalmente contiene una secuencia de pares de palabra clave y valor." #. type: item -#: guix-git/doc/guix.texi:7136 +#: guix-git/doc/guix.texi:7180 #, no-wrap msgid "@code{inputs} (default: @code{'()})" msgstr "@code{inputs} (predeterminadas: @code{'()})" #. type: itemx -#: guix-git/doc/guix.texi:7137 +#: guix-git/doc/guix.texi:7181 #, no-wrap msgid "@code{native-inputs} (default: @code{'()})" msgstr "@code{native-inputs} (predeterminadas: @code{'()})" #. type: itemx -#: guix-git/doc/guix.texi:7138 +#: guix-git/doc/guix.texi:7182 #, no-wrap msgid "@code{propagated-inputs} (default: @code{'()})" msgstr "@code{propagated-inputs} (predeterminadas: @code{'()})" #. type: cindex -#: guix-git/doc/guix.texi:7139 +#: guix-git/doc/guix.texi:7183 #, no-wrap msgid "inputs, of packages" msgstr "entradas, de paquetes" #. type: table -#: guix-git/doc/guix.texi:7146 +#: guix-git/doc/guix.texi:7190 #, fuzzy #| msgid "These fields list dependencies of the package. Each one is a list of tuples, where each tuple has a label for the input (a string) as its first element, a package, origin, or derivation as its second element, and optionally the name of the output thereof that should be used, which defaults to @code{\"out\"} (@pxref{Packages with Multiple Outputs}, for more on package outputs). For example, the list below specifies three inputs:" msgid "These fields list dependencies of the package. Each element of these lists is either a package, origin, or other ``file-like object'' (@pxref{G-Expressions}); to specify the output of that file-like object that should be used, pass a two-element list where the second element is the output (@pxref{Packages with Multiple Outputs}, for more on package outputs). For example, the list below specifies three inputs:" msgstr "Estos campos enumeran las dependencias del paquete. Cada uno es una lista de tuplas, donde cada tupla tiene una etiqueta para la entrada (una cadena) como su primer elemento, un paquete, origen o derivación como su segundo elemento, y opcionalmente el nombre de la salida que debe ser usada, cuyo valor predeterminado es @code{\"out\"} (@pxref{Packages with Multiple Outputs}, para más información sobre salidas de paquetes). Por ejemplo, la lista siguiente especifica tres entradas:" #. type: lisp -#: guix-git/doc/guix.texi:7150 +#: guix-git/doc/guix.texi:7194 #, fuzzy, no-wrap #| msgid "" #| "`((\"libffi\" ,libffi)\n" @@ -15456,26 +15576,26 @@ msgstr "" " (\"glib:bin\" ,glib \"bin\")) ;la salida \"bin\" de Glib\n" #. type: table -#: guix-git/doc/guix.texi:7154 +#: guix-git/doc/guix.texi:7198 msgid "In the example above, the @code{\"out\"} output of @code{libffi} and @code{libunistring} is used." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:7155 +#: guix-git/doc/guix.texi:7199 #, fuzzy, no-wrap #| msgid "Nix, compatibility" msgid "Compatibility Note" msgstr "Nix, compatibilidad" #. type: quotation -#: guix-git/doc/guix.texi:7162 +#: guix-git/doc/guix.texi:7206 #, fuzzy #| msgid "These fields list dependencies of the package. Each one is a list of tuples, where each tuple has a label for the input (a string) as its first element, a package, origin, or derivation as its second element, and optionally the name of the output thereof that should be used, which defaults to @code{\"out\"} (@pxref{Packages with Multiple Outputs}, for more on package outputs). For example, the list below specifies three inputs:" msgid "Until version 1.3.0, input lists were a list of tuples, where each tuple has a label for the input (a string) as its first element, a package, origin, or derivation as its second element, and optionally the name of the output thereof that should be used, which defaults to @code{\"out\"}. For example, the list below is equivalent to the one above, but using the @dfn{old input style}:" msgstr "Estos campos enumeran las dependencias del paquete. Cada uno es una lista de tuplas, donde cada tupla tiene una etiqueta para la entrada (una cadena) como su primer elemento, un paquete, origen o derivación como su segundo elemento, y opcionalmente el nombre de la salida que debe ser usada, cuyo valor predeterminado es @code{\"out\"} (@pxref{Packages with Multiple Outputs}, para más información sobre salidas de paquetes). Por ejemplo, la lista siguiente especifica tres entradas:" #. type: lisp -#: guix-git/doc/guix.texi:7168 +#: guix-git/doc/guix.texi:7212 #, fuzzy, no-wrap #| msgid "" #| "`((\"libffi\" ,libffi)\n" @@ -15492,179 +15612,191 @@ msgstr "" " (\"glib:bin\" ,glib \"bin\")) ;la salida \"bin\" de Glib\n" #. type: quotation -#: guix-git/doc/guix.texi:7174 +#: guix-git/doc/guix.texi:7218 msgid "This style is now deprecated; it is still supported but support will be removed in a future version. It should not be used for new package definitions. @xref{Invoking guix style}, on how to migrate to the new style." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7176 +#: guix-git/doc/guix.texi:7220 #, no-wrap msgid "cross compilation, package dependencies" msgstr "compilación cruzada, dependencias de paquetes" #. type: table -#: guix-git/doc/guix.texi:7182 +#: guix-git/doc/guix.texi:7226 msgid "The distinction between @code{native-inputs} and @code{inputs} is necessary when considering cross-compilation. When cross-compiling, dependencies listed in @code{inputs} are built for the @emph{target} architecture; conversely, dependencies listed in @code{native-inputs} are built for the architecture of the @emph{build} machine." msgstr "La distinción entre @code{native-inputs} y @code{inputs} es necesaria cuando se considera la compilación cruzada. Cuando se compila desde una arquitectura distinta, las dependencias enumeradas en @code{inputs} son construidas para la arquitectura @emph{objetivo}; de modo contrario, las dependencias enumeradas en @code{native-inputs} se construyen para la arquitectura de la máquina de @emph{construcción}." #. type: table -#: guix-git/doc/guix.texi:7187 +#: guix-git/doc/guix.texi:7231 msgid "@code{native-inputs} is typically used to list tools needed at build time, but not at run time, such as Autoconf, Automake, pkg-config, Gettext, or Bison. @command{guix lint} can report likely mistakes in this area (@pxref{Invoking guix lint})." msgstr "@code{native-inputs} se usa típicamente para enumerar herramientas necesarias en tiempo de construcción, pero no en tiempo de ejecución, como Autoconf, Automake, pkg-config, Gettext o Bison. @command{guix lint} puede informar de probables errores en este área (@pxref{Invoking guix lint})." #. type: anchor{#1} -#: guix-git/doc/guix.texi:7195 +#: guix-git/doc/guix.texi:7239 msgid "package-propagated-inputs" msgstr "package-propagated-inputs" #. type: table -#: guix-git/doc/guix.texi:7195 +#: guix-git/doc/guix.texi:7239 msgid "Lastly, @code{propagated-inputs} is similar to @code{inputs}, but the specified packages will be automatically installed to profiles (@pxref{Features, the role of profiles in Guix}) alongside the package they belong to (@pxref{package-cmd-propagated-inputs, @command{guix package}}, for information on how @command{guix package} deals with propagated inputs)." msgstr "Por último, @code{propagated-inputs} es similar a @code{inputs}, pero los paquetes especificados se instalarán automáticamente a los perfiles (@pxref{Features, el rol de los perfiles en Guix}) junto al paquete al que pertenecen (@pxref{package-cmd-propagated-inputs, @command{guix package}}, para información sobre cómo @command{guix package} gestiona las entradas propagadas)." #. type: table -#: guix-git/doc/guix.texi:7199 +#: guix-git/doc/guix.texi:7243 msgid "For example this is necessary when packaging a C/C++ library that needs headers of another library to compile, or when a pkg-config file refers to another one @i{via} its @code{Requires} field." msgstr "Por ejemplo esto es necesario cuando se empaqueta una biblioteca C/C++ que necesita cabeceras de otra biblioteca para compilar, o cuando un archivo pkg-config se refiere a otro a través de su campo @code{Requires}." # FUZZY #. type: table -#: guix-git/doc/guix.texi:7206 +#: guix-git/doc/guix.texi:7250 msgid "Another example where @code{propagated-inputs} is useful is for languages that lack a facility to record the run-time search path akin to the @code{RUNPATH} of ELF files; this includes Guile, Python, Perl, and more. When packaging libraries written in those languages, ensure they can find library code they depend on at run time by listing run-time dependencies in @code{propagated-inputs} rather than @code{inputs}." msgstr "Otro ejemplo donde @code{propagated-inputs} es útil es en lenguajes que carecen de la facilidad de almacenar la ruta de búsqueda de tiempo de ejecución de la misma manera que el campo @code{RUNPATH} de los archivos ELF; esto incluye Guile, Python, Perl y más. Cuando se empaquetan bibliotecas escritas en estos lenguajes, enumerar en @code{propagated-inputs} en vez de en @code{inputs} las dependencias de tiempo de ejecución permite asegurarse de encontrar el código de las bibliotecas de las que dependan en tiempo de ejecución." #. type: item -#: guix-git/doc/guix.texi:7207 +#: guix-git/doc/guix.texi:7251 #, no-wrap msgid "@code{outputs} (default: @code{'(\"out\")})" msgstr "@code{outputs} (predeterminada: @code{'(\"out\")})" #. type: table -#: guix-git/doc/guix.texi:7210 +#: guix-git/doc/guix.texi:7254 msgid "The list of output names of the package. @xref{Packages with Multiple Outputs}, for typical uses of additional outputs." msgstr "La lista de nombres de salidas del paquete. @xref{Packages with Multiple Outputs}, para usos típicos de salidas adicionales." #. type: item -#: guix-git/doc/guix.texi:7211 +#: guix-git/doc/guix.texi:7255 #, no-wrap msgid "@code{native-search-paths} (default: @code{'()})" msgstr "@code{native-search-paths} (predeterminadas: @code{'()})" #. type: itemx -#: guix-git/doc/guix.texi:7212 +#: guix-git/doc/guix.texi:7256 #, no-wrap msgid "@code{search-paths} (default: @code{'()})" msgstr "@code{search-paths} (predeterminadas: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:7215 -msgid "A list of @code{search-path-specification} objects describing search-path environment variables honored by the package." +#: guix-git/doc/guix.texi:7260 +#, fuzzy +#| msgid "A list of @code{search-path-specification} objects describing search-path environment variables honored by the package." +msgid "A list of @code{search-path-specification} objects describing search-path environment variables honored by the package. @xref{Search Paths}, for more on search path specifications." msgstr "Una lista de objetos @code{search-path-specification} describiendo las variables de entorno de rutas de búsqueda respetadas por el paquete." +#. type: table +#: guix-git/doc/guix.texi:7266 +msgid "As for inputs, the distinction between @code{native-search-paths} and @code{search-paths} only matters when cross-compiling. In a cross-compilation context, @code{native-search-paths} applies exclusively to native inputs whereas @code{search-paths} applies only to host inputs." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:7273 +msgid "Packages such as cross-compilers care about target inputs---for instance, our (modified) GCC cross-compiler has @env{CROSS_C_INCLUDE_PATH} in @code{search-paths}, which allows it to pick @file{.h} files for the target system and @emph{not} those of native inputs. For the majority of packages though, only @code{native-search-paths} makes sense." +msgstr "" + #. type: item -#: guix-git/doc/guix.texi:7216 +#: guix-git/doc/guix.texi:7274 #, no-wrap msgid "@code{replacement} (default: @code{#f})" msgstr "@code{replacement} (predeterminado: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:7220 +#: guix-git/doc/guix.texi:7278 msgid "This must be either @code{#f} or a package object that will be used as a @dfn{replacement} for this package. @xref{Security Updates, grafts}, for details." msgstr "Esto debe ser o bien @code{#f} o bien un objeto package que será usado como @dfn{reemplazo} para ete paquete. @xref{Security Updates, injertos}, para más detalles." #. type: item -#: guix-git/doc/guix.texi:7221 guix-git/doc/guix.texi:12892 +#: guix-git/doc/guix.texi:7279 guix-git/doc/guix.texi:13249 #, no-wrap msgid "synopsis" msgstr "synopsis" #. type: table -#: guix-git/doc/guix.texi:7223 +#: guix-git/doc/guix.texi:7281 msgid "A one-line description of the package." msgstr "Una descripción en una línea del paquete." #. type: code{#1} -#: guix-git/doc/guix.texi:7224 guix-git/doc/guix.texi:12893 -#: guix-git/doc/guix.texi:35959 guix-git/doc/guix.texi:36119 +#: guix-git/doc/guix.texi:7282 guix-git/doc/guix.texi:13250 +#: guix-git/doc/guix.texi:36449 guix-git/doc/guix.texi:36609 #, no-wrap msgid "description" msgstr "description" #. type: table -#: guix-git/doc/guix.texi:7226 +#: guix-git/doc/guix.texi:7284 msgid "A more elaborate description of the package." msgstr "Una descripción más elaborada del paquete." #. type: code{#1} -#: guix-git/doc/guix.texi:7227 +#: guix-git/doc/guix.texi:7285 #, no-wrap msgid "license" msgstr "license" #. type: cindex -#: guix-git/doc/guix.texi:7228 +#: guix-git/doc/guix.texi:7286 #, no-wrap msgid "license, of packages" msgstr "licencia, de paquetes" #. type: table -#: guix-git/doc/guix.texi:7231 +#: guix-git/doc/guix.texi:7289 msgid "The license of the package; a value from @code{(guix licenses)}, or a list of such values." msgstr "La licencia del paquete; un valor de @code{(guix licenses)}, o una lista de dichos valores." #. type: itemx -#: guix-git/doc/guix.texi:7232 guix-git/doc/guix.texi:12901 +#: guix-git/doc/guix.texi:7290 guix-git/doc/guix.texi:13258 #, no-wrap msgid "home-page" msgstr "home-page" #. type: table -#: guix-git/doc/guix.texi:7234 +#: guix-git/doc/guix.texi:7292 msgid "The URL to the home-page of the package, as a string." msgstr "La URL de la página principal del paquete, como una cadena." #. type: item -#: guix-git/doc/guix.texi:7235 +#: guix-git/doc/guix.texi:7293 #, no-wrap msgid "@code{supported-systems} (default: @code{%supported-systems})" msgstr "@code{supported-systems} (predeterminados: @code{%supported-systems})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:7238 +#: guix-git/doc/guix.texi:7296 msgid "The list of systems supported by the package, as strings of the form @code{architecture-kernel}, for example @code{\"x86_64-linux\"}." msgstr "La lista de sistemas en los que se mantiene el paquete, como cadenas de la forma @code{arquitectura-núcleo}, por ejemplo @code{\"x86_64-linux\"}." #. type: item -#: guix-git/doc/guix.texi:7239 +#: guix-git/doc/guix.texi:7297 #, no-wrap msgid "@code{location} (default: source location of the @code{package} form)" msgstr "@code{location} (predeterminada: la localización de los fuentes de la forma @code{package})" #. type: table -#: guix-git/doc/guix.texi:7243 +#: guix-git/doc/guix.texi:7301 msgid "The source location of the package. It is useful to override this when inheriting from another package, in which case this field is not automatically corrected." msgstr "La localización de las fuentes del paquete. Es útil forzar su valor cuando se hereda de otro paquete, en cuyo caso este campo no se corrige automáticamente." #. type: deffn -#: guix-git/doc/guix.texi:7246 +#: guix-git/doc/guix.texi:7304 #, no-wrap msgid "{Scheme Syntax} this-package" msgstr "{Sintaxis Scheme} this-package" #. type: deffn -#: guix-git/doc/guix.texi:7249 +#: guix-git/doc/guix.texi:7307 msgid "When used in the @emph{lexical scope} of a package field definition, this identifier resolves to the package being defined." msgstr "Cuando se usa en el @emph{ámbito léxico} de la definición de un paquete, este identificador resuelve al paquete que se está definiendo." # FUZZY #. type: deffn -#: guix-git/doc/guix.texi:7252 +#: guix-git/doc/guix.texi:7310 msgid "The example below shows how to add a package as a native input of itself when cross-compiling:" msgstr "El ejemplo previo muestra cómo añadir un paquete como su propia entrada nativa cuando se compila de forma cruzada:" #. type: lisp -#: guix-git/doc/guix.texi:7257 +#: guix-git/doc/guix.texi:7315 #, no-wrap msgid "" "(package\n" @@ -15678,7 +15810,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7263 +#: guix-git/doc/guix.texi:7321 #, fuzzy, no-wrap #| msgid "" #| " ;; When cross-compiled, Guile, for example, depends on\n" @@ -15700,55 +15832,55 @@ msgstr "" " '())))\n" #. type: deffn -#: guix-git/doc/guix.texi:7266 +#: guix-git/doc/guix.texi:7324 msgid "It is an error to refer to @code{this-package} outside a package definition." msgstr "Es un error hacer referencia a @code{this-package} fuera de la definición de un paquete." #. type: Plain text -#: guix-git/doc/guix.texi:7270 +#: guix-git/doc/guix.texi:7328 msgid "The following helper procedures are provided to help deal with package inputs." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7271 +#: guix-git/doc/guix.texi:7329 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} inferior-package-inputs @var{package}" msgid "{Scheme Procedure} lookup-package-input @var{package} @var{name}" msgstr "{Procedimiento Scheme} inferior-package-inputs @var{paquete}" #. type: deffnx -#: guix-git/doc/guix.texi:7272 +#: guix-git/doc/guix.texi:7330 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} inferior-package-native-inputs @var{package}" msgid "{Scheme Procedure} lookup-package-native-input @var{package} @var{name}" msgstr "{Procedimiento Scheme} inferior-package-native-inputs @var{paquete}" #. type: deffnx -#: guix-git/doc/guix.texi:7273 +#: guix-git/doc/guix.texi:7331 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} inferior-package-propagated-inputs @var{package}" msgid "{Scheme Procedure} lookup-package-propagated-input @var{package} @var{name}" msgstr "{Procedimiento Scheme} inferior-package-propagated-inputs @var{paquete}" #. type: deffnx -#: guix-git/doc/guix.texi:7274 +#: guix-git/doc/guix.texi:7332 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} inferior-package-native-inputs @var{package}" msgid "{Scheme Procedure} lookup-package-direct-input @var{package} @var{name}" msgstr "{Procedimiento Scheme} inferior-package-native-inputs @var{paquete}" #. type: deffn -#: guix-git/doc/guix.texi:7277 +#: guix-git/doc/guix.texi:7335 msgid "Look up @var{name} among @var{package}'s inputs (or native, propagated, or direct inputs). Return it if found, @code{#f} otherwise." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7280 +#: guix-git/doc/guix.texi:7338 msgid "@var{name} is the name of a package depended on. Here's how you might use it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7283 +#: guix-git/doc/guix.texi:7341 #, fuzzy, no-wrap #| msgid "" #| "(use-modules (guix gexp) (gnu packages base))\n" @@ -15761,7 +15893,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7286 +#: guix-git/doc/guix.texi:7344 #, no-wrap msgid "" "(lookup-package-direct-input coreutils \"gmp\")\n" @@ -15769,48 +15901,48 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7290 +#: guix-git/doc/guix.texi:7348 msgid "In this example we obtain the @code{gmp} package that is among the direct inputs of @code{coreutils}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7292 +#: guix-git/doc/guix.texi:7350 #, fuzzy, no-wrap #| msgid "inputs, of packages" msgid "development inputs, of a package" msgstr "entradas, de paquetes" #. type: cindex -#: guix-git/doc/guix.texi:7293 +#: guix-git/doc/guix.texi:7351 #, fuzzy, no-wrap #| msgid "inputs, of packages" msgid "implicit inputs, of a package" msgstr "entradas, de paquetes" #. type: Plain text -#: guix-git/doc/guix.texi:7298 +#: guix-git/doc/guix.texi:7356 msgid "Sometimes you will want to obtain the list of inputs needed to @emph{develop} a package---all the inputs that are visible when the package is compiled. This is what the @code{package-development-inputs} procedure returns." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7299 +#: guix-git/doc/guix.texi:7357 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} inferior-package-native-inputs @var{package}" msgid "{Scheme Procedure} package-development-inputs @var{package} @" msgstr "{Procedimiento Scheme} inferior-package-native-inputs @var{paquete}" #. type: deffn -#: guix-git/doc/guix.texi:7306 +#: guix-git/doc/guix.texi:7364 msgid "[@var{system}] [#:target #f] Return the list of inputs required by @var{package} for development purposes on @var{system}. When @var{target} is true, return the inputs needed to cross-compile @var{package} from @var{system} to @var{triplet}, where @var{triplet} is a triplet such as @code{\"aarch64-linux-gnu\"}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7310 +#: guix-git/doc/guix.texi:7368 msgid "Note that the result includes both explicit inputs and implicit inputs---inputs automatically added by the build system (@pxref{Build Systems}). Let us take the @code{hello} package to illustrate that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7313 +#: guix-git/doc/guix.texi:7371 #, fuzzy, no-wrap #| msgid "" #| "(use-modules (gnu packages))\n" @@ -15825,7 +15957,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7316 +#: guix-git/doc/guix.texi:7374 #, no-wrap msgid "" "hello\n" @@ -15834,7 +15966,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7319 +#: guix-git/doc/guix.texi:7377 #, no-wrap msgid "" "(package-direct-inputs hello)\n" @@ -15843,7 +15975,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7322 +#: guix-git/doc/guix.texi:7380 #, no-wrap msgid "" "(package-development-inputs hello)\n" @@ -15851,39 +15983,39 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7331 +#: guix-git/doc/guix.texi:7389 msgid "In this example, @code{package-direct-inputs} returns the empty list, because @code{hello} has zero explicit dependencies. Conversely, @code{package-development-inputs} includes inputs implicitly added by @code{gnu-build-system} that are required to build @code{hello}: tar, gzip, GCC, libc, Bash, and more. To visualize it, @command{guix graph hello} would show you explicit inputs, whereas @command{guix graph -t bag hello} would include implicit inputs (@pxref{Invoking guix graph})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7337 +#: guix-git/doc/guix.texi:7395 msgid "Because packages are regular Scheme objects that capture a complete dependency graph and associated build procedures, it is often useful to write procedures that take a package and return a modified version thereof according to some parameters. Below are a few examples." msgstr "Debido a que los paquetes son objetos Scheme normales que capturan un grafo de dependencias completo y se asocian a procedimientos de construcción, habitualmente es útil escribir procedimientos que toman un paquete y devuelven una versión modificada de acuerdo a ciertos parámetros. A continuación se muestran algunos ejemplos:" #. type: cindex -#: guix-git/doc/guix.texi:7338 +#: guix-git/doc/guix.texi:7396 #, no-wrap msgid "tool chain, choosing a package's tool chain" msgstr "cadena de herramientas de construcción, selección para un paquete" #. type: deffn -#: guix-git/doc/guix.texi:7339 +#: guix-git/doc/guix.texi:7397 #, no-wrap msgid "{Scheme Procedure} package-with-c-toolchain @var{package} @var{toolchain}" msgstr "{Procedimiento Scheme} package-with-c-toolchain @var{paquete} @var{cadena}" #. type: deffn -#: guix-git/doc/guix.texi:7344 +#: guix-git/doc/guix.texi:7402 msgid "Return a variant of @var{package} that uses @var{toolchain} instead of the default GNU C/C++ toolchain. @var{toolchain} must be a list of inputs (label/package tuples) providing equivalent functionality, such as the @code{gcc-toolchain} package." msgstr "Devuelve una variación de @var{paquete} que usa @var{cadena} en vez de la cadena de herramientas de construcción de C/C++ de GNU predeterminada. @var{cadena} debe ser una lista de entradas (tuplas etiqueta/paquete) que proporcionen una funcionalidad equivalente a la del paquete @code{gcc-toolchain}." #. type: deffn -#: guix-git/doc/guix.texi:7348 +#: guix-git/doc/guix.texi:7406 msgid "The example below returns a variant of the @code{hello} package built with GCC@tie{}10.x and the rest of the GNU tool chain (Binutils and the GNU C Library) instead of the default tool chain:" msgstr "El siguiente ejemplo devuelve una variación del paquete @code{hello} que se ha construido con GCC@tie{}10.x y el resto de la cadena de herramientas de construcción de GNU (Binutils y la biblioteca de C de GNU) en vez de la cadena de construcción predeterminada:" #. type: lisp -#: guix-git/doc/guix.texi:7352 +#: guix-git/doc/guix.texi:7410 #, no-wrap msgid "" "(let ((toolchain (specification->package \"gcc-toolchain@@10\")))\n" @@ -15894,168 +16026,168 @@ msgstr "" " (package-with-c-toolchain hello `((\"toolchain\" ,cadena))))\n" #. type: deffn -#: guix-git/doc/guix.texi:7360 +#: guix-git/doc/guix.texi:7418 msgid "The build tool chain is part of the @dfn{implicit inputs} of packages---it's usually not listed as part of the various ``inputs'' fields and is instead pulled in by the build system. Consequently, this procedure works by changing the build system of @var{package} so that it pulls in @var{toolchain} instead of the defaults. @ref{Build Systems}, for more on build systems." msgstr "La cadena de herramientas de construcción es parte de las @dfn{entradas impícitas} de los paquetes---habitualmente no se enumera como parte de los distintos campos de entrada (``inputs'') sino que el sistema de construcción es quién la incorpora. Por lo tanto este procedimiento funciona cambiando el sistema de construcción del @var{paquete} de modo que se incorpora @var{cadena} en vez de los valores predeterminados. @ref{Build Systems} para obtener más información sobre sistemas de construcción." #. type: subsection -#: guix-git/doc/guix.texi:7363 +#: guix-git/doc/guix.texi:7421 #, no-wrap msgid "@code{origin} Reference" msgstr "Referencia de @code{origin}" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:7371 +#: guix-git/doc/guix.texi:7429 msgid "This section documents @dfn{origins}. An @code{origin} declaration specifies data that must be ``produced''---downloaded, usually---and whose content hash is known in advance. Origins are primarily used to represent the source code of packages (@pxref{Defining Packages}). For that reason, the @code{origin} form allows you to declare patches to apply to the original source code as well as code snippets to modify it." msgstr "Esta sección documenta los @dfn{orígenes}. Una declaración de origen (@code{origin}) especifica datos que se deben ``producir''---descargandose, habitualmente---y el hash de su contenido se conoce de antemano. Los origenes se usan habitualmente para reprensentar el código fuente de los paquetes (@pxref{Defining Packages}). Por esta razón la forma sintáctica @code{origin} le permite declarar tanto parches para aplicar al código fuente original como fragmentos de código que para su modificación." #. type: deftp -#: guix-git/doc/guix.texi:7372 +#: guix-git/doc/guix.texi:7430 #, no-wrap msgid "{Data Type} origin" msgstr "{Tipo de datos} origin" #. type: deftp -#: guix-git/doc/guix.texi:7374 +#: guix-git/doc/guix.texi:7432 msgid "This is the data type representing a source code origin." msgstr "Este es el tipo de datos que representa un origen de código fuente." #. type: code{#1} -#: guix-git/doc/guix.texi:7376 guix-git/doc/guix.texi:26552 +#: guix-git/doc/guix.texi:7434 guix-git/doc/guix.texi:26889 #, no-wrap msgid "uri" msgstr "uri" #. type: table -#: guix-git/doc/guix.texi:7381 +#: guix-git/doc/guix.texi:7439 msgid "An object containing the URI of the source. The object type depends on the @code{method} (see below). For example, when using the @var{url-fetch} method of @code{(guix download)}, the valid @code{uri} values are: a URL represented as a string, or a list thereof." msgstr "Un objeto que contiene el URI de las fuentes. El tipo de objeto depende del valor de @code{method} (véase a continuación). Por ejemplo, cuando se usa el método @var{url-fetch} de @code{(guix download)}, los valores adecuados para @code{uri} son: una cadena que contiene una URL, o una lista de cadenas." #. type: cindex -#: guix-git/doc/guix.texi:7382 +#: guix-git/doc/guix.texi:7440 #, no-wrap msgid "fixed-output derivations, for download" msgstr "derivaciones de salida fija, para descarga" #. type: code{#1} -#: guix-git/doc/guix.texi:7383 +#: guix-git/doc/guix.texi:7441 #, no-wrap msgid "method" msgstr "method" # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:7390 +#: guix-git/doc/guix.texi:7448 #, fuzzy msgid "A monadic procedure that handles the given URI@. The procedure must accept at least three arguments: the value of the @code{uri} field and the hash algorithm and hash value specified by the @code{hash} field. It must return a store item or a derivation in the store monad (@pxref{The Store Monad}); most methods return a fixed-output derivation (@pxref{Derivations})." msgstr "Un proceimiento monádico que trata la URI proporcionada. El procedimiento debe aceptar al menos tres parámetros: el valor del campo @code{uri}, el algoritmo de hash y su valor especificados en el campo @code{hash}. Debe devolver un elemento del almacén o una derivación en la mónada del almacén (@pxref{The Store Monad}); la mayoría de los métodos devuelven una derivación de salida fija (@pxref{Derivations})." #. type: table -#: guix-git/doc/guix.texi:7394 +#: guix-git/doc/guix.texi:7452 msgid "Commonly used methods include @code{url-fetch}, which fetches data from a URL, and @code{git-fetch}, which fetches data from a Git repository (see below)." msgstr "Los métodos habitualmente usados incluyen @code{url-fetch}, que obtiene datos a partir de una URL, y @code{git-fetch}, que obtiene datos de un repositorio Git (véase a continuación)." #. type: code{#1} -#: guix-git/doc/guix.texi:7395 +#: guix-git/doc/guix.texi:7453 #, no-wrap msgid "sha256" msgstr "sha256" #. type: table -#: guix-git/doc/guix.texi:7399 +#: guix-git/doc/guix.texi:7457 msgid "A bytevector containing the SHA-256 hash of the source. This is equivalent to providing a @code{content-hash} SHA256 object in the @code{hash} field described below." msgstr "Un vector de bytes que contiene el hash SHA-256 de las fuentes. Es equivalente a proporcionar un objeto SHA256 @code{content-hash} en el campo @code{hash} descrito a continuación." #. type: code{#1} -#: guix-git/doc/guix.texi:7400 +#: guix-git/doc/guix.texi:7458 #, no-wrap msgid "hash" msgstr "hash" #. type: table -#: guix-git/doc/guix.texi:7403 +#: guix-git/doc/guix.texi:7461 msgid "The @code{content-hash} object of the source---see below for how to use @code{content-hash}." msgstr "El objeto @code{content-hash} de las fuentes---véase a continuación cómo usar @code{content-hash}." #. type: table -#: guix-git/doc/guix.texi:7407 +#: guix-git/doc/guix.texi:7465 msgid "You can obtain this information using @code{guix download} (@pxref{Invoking guix download}) or @code{guix hash} (@pxref{Invoking guix hash})." msgstr "Puede obtener esta información usando @code{guix download} (@pxref{Invoking guix download}) o @code{guix hash} (@pxref{Invoking guix hash})." #. type: item -#: guix-git/doc/guix.texi:7408 +#: guix-git/doc/guix.texi:7466 #, no-wrap msgid "@code{file-name} (default: @code{#f})" msgstr "@code{file-name} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:7414 +#: guix-git/doc/guix.texi:7472 msgid "The file name under which the source code should be saved. When this is @code{#f}, a sensible default value will be used in most cases. In case the source is fetched from a URL, the file name from the URL will be used. For version control checkouts, it is recommended to provide the file name explicitly because the default is not very descriptive." msgstr "El nombre de archivo bajo el que el código fuente se almacenará. Cuando este es @code{#f}, un valor predeterminado sensato se usará en la mayor parte de casos. En caso de que las fuentes se obtengan de una URL, el nombre de archivo de la URL se usará. Para copias de trabajo de sistemas de control de versiones, se recomienda proporcionar el nombre de archivo explícitamente ya que el predeterminado no es muy descriptivo." #. type: item -#: guix-git/doc/guix.texi:7415 +#: guix-git/doc/guix.texi:7473 #, no-wrap msgid "@code{patches} (default: @code{'()})" msgstr "@code{patches} (predeterminados: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:7418 +#: guix-git/doc/guix.texi:7476 msgid "A list of file names, origins, or file-like objects (@pxref{G-Expressions, file-like objects}) pointing to patches to be applied to the source." msgstr "Una lista de nombres de archivos, orígenes u objetos tipo-archivo (@pxref{G-Expressions, objetos ``tipo-archivo''}) apuntando a parches que deben ser aplicados a las fuentes." #. type: table -#: guix-git/doc/guix.texi:7422 +#: guix-git/doc/guix.texi:7480 msgid "This list of patches must be unconditional. In particular, it cannot depend on the value of @code{%current-system} or @code{%current-target-system}." msgstr "La lista de parches debe ser incondicional. En particular, no puede depender del valor de @code{%current-system} o @code{%current-target-system}." #. type: item -#: guix-git/doc/guix.texi:7423 +#: guix-git/doc/guix.texi:7481 #, no-wrap msgid "@code{snippet} (default: @code{#f})" msgstr "@code{snippet} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:7427 +#: guix-git/doc/guix.texi:7485 msgid "A G-expression (@pxref{G-Expressions}) or S-expression that will be run in the source directory. This is a convenient way to modify the source, sometimes more convenient than a patch." msgstr "Una expresión-G (@pxref{G-Expressions}) o expresión-S que se ejecutará en el directorio de fuentes. Esta es una forma conveniente de modificar el software, a veces más que un parche." #. type: item -#: guix-git/doc/guix.texi:7428 +#: guix-git/doc/guix.texi:7486 #, no-wrap msgid "@code{patch-flags} (default: @code{'(\"-p1\")})" msgstr "@code{patch-flags} (predeterminadas: @code{'(\"-p1\")})" #. type: table -#: guix-git/doc/guix.texi:7431 +#: guix-git/doc/guix.texi:7489 msgid "A list of command-line flags that should be passed to the @code{patch} command." msgstr "Una lista de opciones de línea de órdenes que deberían ser pasadas a la orden @code{patch}." #. type: item -#: guix-git/doc/guix.texi:7432 +#: guix-git/doc/guix.texi:7490 #, no-wrap msgid "@code{patch-inputs} (default: @code{#f})" msgstr "@code{patch-inputs} (predeterminada: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:7436 +#: guix-git/doc/guix.texi:7494 msgid "Input packages or derivations to the patching process. When this is @code{#f}, the usual set of inputs necessary for patching are provided, such as GNU@tie{}Patch." msgstr "Paquetes o derivaciones de entrada al proceso de aplicación de los parches. Cuando es @code{#f}, se proporciona el conjunto habitual de entradas necesarias para la aplicación de parches, como GNU@tie{}Patch." #. type: item -#: guix-git/doc/guix.texi:7437 guix-git/doc/guix.texi:26425 +#: guix-git/doc/guix.texi:7495 guix-git/doc/guix.texi:26762 #, no-wrap msgid "@code{modules} (default: @code{'()})" msgstr "@code{modules} (predeterminados: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:7440 +#: guix-git/doc/guix.texi:7498 msgid "A list of Guile modules that should be loaded during the patching process and while running the code in the @code{snippet} field." msgstr "Una lista de módulos Guile que debe ser cargada durante el proceso de aplicación de parches y mientras se ejecuta el código del campo @code{snippet}." #. type: item -#: guix-git/doc/guix.texi:7441 +#: guix-git/doc/guix.texi:7499 #, no-wrap msgid "@code{patch-guile} (default: @code{#f})" msgstr "@code{patch-guile} (predeterminado: @code{#f})" @@ -16063,33 +16195,33 @@ msgstr "@code{patch-guile} (predeterminado: @code{#f})" # FUZZY # MAAV: Sensible -> sensato no aporta mucho ni queda muy bien. #. type: table -#: guix-git/doc/guix.texi:7444 +#: guix-git/doc/guix.texi:7502 msgid "The Guile package that should be used in the patching process. When this is @code{#f}, a sensible default is used." msgstr "El paquete Guile que debe ser usado durante la aplicación de parches. Cuando es @code{#f} se usa un valor predeterminado." #. type: deftp -#: guix-git/doc/guix.texi:7447 +#: guix-git/doc/guix.texi:7505 #, no-wrap msgid "{Data Type} content-hash @var{value} [@var{algorithm}]" msgstr "{Tipo de datos} content-hash @var{valor} [@var{algoritmo}]" #. type: deftp -#: guix-git/doc/guix.texi:7451 +#: guix-git/doc/guix.texi:7509 msgid "Construct a content hash object for the given @var{algorithm}, and with @var{value} as its hash value. When @var{algorithm} is omitted, assume it is @code{sha256}." msgstr "Construye un objeto del hash del contenido para el @var{algoritmo} proporcionado, y con @var{valor} como su valor. Cuando se omite @var{algoritmo} se asume que es @code{sha256}." #. type: deftp -#: guix-git/doc/guix.texi:7454 +#: guix-git/doc/guix.texi:7512 msgid "@var{value} can be a literal string, in which case it is base32-decoded, or it can be a bytevector." msgstr "@var{valor} puede ser una cadena literal, en cuyo caso se decodifica en base32, o un vector de bytes." #. type: deftp -#: guix-git/doc/guix.texi:7456 +#: guix-git/doc/guix.texi:7514 msgid "The following forms are all equivalent:" msgstr "Las siguientes opciones equivalentes entre sí:" #. type: lisp -#: guix-git/doc/guix.texi:7465 +#: guix-git/doc/guix.texi:7523 #, no-wrap msgid "" "(content-hash \"05zxkyz9bv3j9h0xyid1rhvh3klhsmrpkf3bcs6frvlgyr2gwilj\")\n" @@ -16109,108 +16241,108 @@ msgstr "" " sha256)\n" #. type: deftp -#: guix-git/doc/guix.texi:7470 +#: guix-git/doc/guix.texi:7528 msgid "Technically, @code{content-hash} is currently implemented as a macro. It performs sanity checks at macro-expansion time, when possible, such as ensuring that @var{value} has the right size for @var{algorithm}." msgstr "Técnicamente, @code{content-hash} se implementa actualmente con un macro. Realiza comprobaciones de seguridad en tiempo de expansión, cuando es posible, como asegurarse de que @var{valor} tiene el tamaño adecuado para @var{algoritmo}." #. type: Plain text -#: guix-git/doc/guix.texi:7476 +#: guix-git/doc/guix.texi:7534 msgid "As we have seen above, how exactly the data an origin refers to is retrieved is determined by its @code{method} field. The @code{(guix download)} module provides the most common method, @code{url-fetch}, described below." msgstr "Como se ha visto previamente, la forma exacta en la que un origen hace referencia a los datos se determina por su campo @code{method}. El módulo @code{(guix download)} proporciona el método más común, @code{url-fetch}, descrito a continuación." #. type: deffn -#: guix-git/doc/guix.texi:7477 +#: guix-git/doc/guix.texi:7535 #, no-wrap msgid "{Scheme Procedure} url-fetch @var{url} @var{hash-algo} @var{hash} @" msgstr "{Procedimiento Scheme} url-fetch @var{url} @var{algo-hash} @var{hash} @" #. type: deffn -#: guix-git/doc/guix.texi:7485 +#: guix-git/doc/guix.texi:7543 msgid "[name] [#:executable? #f] Return a fixed-output derivation that fetches data from @var{url} (a string, or a list of strings denoting alternate URLs), which is expected to have hash @var{hash} of type @var{hash-algo} (a symbol). By default, the file name is the base name of URL; optionally, @var{name} can specify a different file name. When @var{executable?} is true, make the downloaded file executable." msgstr "" "[nombre] [#:executable? #f]\n" "Devuelve una derivación de salida fija que obtiene datos desde @var{url} (una cadena o una lista de cadenas indicando URL alternativas), la cual se espera que tenga el hash @var{hash} del tipo @var{algo-hash} (un símbolo). De manera predeterminada el nombre de archivo es el identificador final de la URL; de manera opcional se puede usar @var{nombre} para especificar un nombre de archivo diferente. Cuando @var{executable?} es verdadero se proporciona el permiso de ejecución al archivo descargado." #. type: deffn -#: guix-git/doc/guix.texi:7488 +#: guix-git/doc/guix.texi:7546 msgid "When one of the URL starts with @code{mirror://}, then its host part is interpreted as the name of a mirror scheme, taken from @file{%mirror-file}." msgstr "Cuando una de las URL comienza con @code{mirror://}, la parte de la máquina se interpreta como el nombre de un esquema de espejos, obtenido de @file{%mirror-file}." #. type: deffn -#: guix-git/doc/guix.texi:7491 +#: guix-git/doc/guix.texi:7549 msgid "Alternatively, when URL starts with @code{file://}, return the corresponding file name in the store." msgstr "De manera alternativa, cuando URL comienza con @code{file://}, devuelve el nombre de archivo del almacén correspondiente." #. type: Plain text -#: guix-git/doc/guix.texi:7497 +#: guix-git/doc/guix.texi:7555 msgid "Likewise, the @code{(guix git-download)} module defines the @code{git-fetch} origin method, which fetches data from a Git version control repository, and the @code{git-reference} data type to describe the repository and revision to fetch." msgstr "De igual modo el módulo @code{(guix git-download)} define el método de origen @code{git-fetch}, que descarga datos de un repositorio de control de versiones Git, y el tipo de datos @code{git-reference}, que describe el repositorio y la revisión que se debe obtener." #. type: deffn -#: guix-git/doc/guix.texi:7498 +#: guix-git/doc/guix.texi:7556 #, no-wrap msgid "{Scheme Procedure} git-fetch @var{ref} @var{hash-algo} @var{hash}" msgstr "{Procedimiento Scheme} git-fetch @var{url} @var{algo-hash} @var{hash}" #. type: deffn -#: guix-git/doc/guix.texi:7503 +#: guix-git/doc/guix.texi:7561 msgid "Return a fixed-output derivation that fetches @var{ref}, a @code{} object. The output is expected to have recursive hash @var{hash} of type @var{hash-algo} (a symbol). Use @var{name} as the file name, or a generic name if @code{#f}." msgstr "Devuelve una derivación de salida fija que obtiene @var{ref}, un objeto @code{}. El hash recursivo de la salida se espera que tenga el valor @var{hash} del tipo @var{algo-hash} (un símbolo). Se usa @var{nombre} para el nombre de archivo, o un nombre genérico si su valor es @code{#f}." #. type: deftp -#: guix-git/doc/guix.texi:7505 +#: guix-git/doc/guix.texi:7563 #, no-wrap msgid "{Data Type} git-reference" msgstr "{Tipo de datos} git-reference" #. type: deftp -#: guix-git/doc/guix.texi:7508 +#: guix-git/doc/guix.texi:7566 msgid "This data type represents a Git reference for @code{git-fetch} to retrieve." msgstr "Este es el tipo de datos que representa una referencia de Git que debe obtener el módulo @code{git-fetch}." #. type: code{#1} -#: guix-git/doc/guix.texi:7510 guix-git/doc/guix.texi:24186 +#: guix-git/doc/guix.texi:7568 guix-git/doc/guix.texi:24548 #, no-wrap msgid "url" msgstr "url" #. type: table -#: guix-git/doc/guix.texi:7512 +#: guix-git/doc/guix.texi:7570 msgid "The URL of the Git repository to clone." msgstr "La URL del repositorio Git que debe clonarse." # FUZZY #. type: code{#1} -#: guix-git/doc/guix.texi:7513 +#: guix-git/doc/guix.texi:7571 #, no-wrap msgid "commit" msgstr "commit" #. type: table -#: guix-git/doc/guix.texi:7518 +#: guix-git/doc/guix.texi:7576 #, fuzzy #| msgid "This string denotes either the commit to fetch (a hexadecimal string, either the full SHA1 commit or a ``short'' commit string; the latter is not recommended) or the tag to fetch." msgid "This string denotes either the commit to fetch (a hexadecimal string), or the tag to fetch. You can also use a ``short'' commit ID or a @command{git describe} style identifier such as @code{v1.0.1-10-g58d7909c97}." msgstr "Esta cadena indica o bien la revisión que se debe obtener (una cadena hexadecimal, o bien el hash SHA1 de la revisión o una cadena ``corta'' que la represente; esta última no está recomendada) o la etiqueta que se debe obtener." #. type: item -#: guix-git/doc/guix.texi:7519 +#: guix-git/doc/guix.texi:7577 #, no-wrap msgid "@code{recursive?} (default: @code{#f})" msgstr "@code{recursive?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:7521 +#: guix-git/doc/guix.texi:7579 msgid "This Boolean indicates whether to recursively fetch Git sub-modules." msgstr "Este valor booleano indica si se obtienen los sub-modulos de Git de manera recursiva." #. type: deftp -#: guix-git/doc/guix.texi:7525 +#: guix-git/doc/guix.texi:7583 msgid "The example below denotes the @code{v2.10} tag of the GNU@tie{}Hello repository:" msgstr "El siguiente ejemplo representa la etiqueta @code{v2.10} del repositorio de GNU@tie{}Hello:" #. type: lisp -#: guix-git/doc/guix.texi:7530 +#: guix-git/doc/guix.texi:7588 #, no-wrap msgid "" "(git-reference\n" @@ -16222,12 +16354,12 @@ msgstr "" " (commit \"v2.10\"))\n" #. type: deftp -#: guix-git/doc/guix.texi:7534 +#: guix-git/doc/guix.texi:7592 msgid "This is equivalent to the reference below, which explicitly names the commit:" msgstr "Es equivalente a la siguiente referencia, la cual nombra de manera explícita la revisión:" #. type: lisp -#: guix-git/doc/guix.texi:7539 +#: guix-git/doc/guix.texi:7597 #, no-wrap msgid "" "(git-reference\n" @@ -16239,60 +16371,60 @@ msgstr "" " (commit \"dc7dc56a00e48fe6f231a58f6537139fe2908fb9\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:7545 +#: guix-git/doc/guix.texi:7603 #, fuzzy msgid "For Mercurial repositories, the module @code{(guix hg-download)} defines the @code{hg-fetch} origin method and @code{hg-reference} data type for support of the Mercurial version control system." msgstr "De igual modo el módulo @code{(guix git-download)} define el método de origen @code{git-fetch}, que descarga datos de un repositorio de control de versiones Git, y el tipo de datos @code{git-reference}, que describe el repositorio y la revisión que se debe obtener." #. type: deffn -#: guix-git/doc/guix.texi:7546 +#: guix-git/doc/guix.texi:7604 #, fuzzy, no-wrap msgid "{Scheme Procedure} hg-fetch @var{ref} @var{hash-algo} @var{hash} @" msgstr "{Procedimiento Scheme} git-fetch @var{url} @var{algo-hash} @var{hash}" #. type: deffn -#: guix-git/doc/guix.texi:7552 +#: guix-git/doc/guix.texi:7610 #, fuzzy msgid "[name] Return a fixed-output derivation that fetches @var{ref}, a @code{} object. The output is expected to have recursive hash @var{hash} of type @var{hash-algo} (a symbol). Use @var{name} as the file name, or a generic name if @code{#false}." msgstr "Devuelve una derivación de salida fija que obtiene @var{ref}, un objeto @code{}. El hash recursivo de la salida se espera que tenga el valor @var{hash} del tipo @var{algo-hash} (un símbolo). Se usa @var{nombre} para el nombre de archivo, o un nombre genérico si su valor es @code{#f}." #. type: cindex -#: guix-git/doc/guix.texi:7557 +#: guix-git/doc/guix.texi:7615 #, no-wrap msgid "customizing packages" msgstr "personalización de paquetes" #. type: cindex -#: guix-git/doc/guix.texi:7558 +#: guix-git/doc/guix.texi:7616 #, no-wrap msgid "variants, of packages" msgstr "variantes de paquetes" # FUZZY FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:7568 +#: guix-git/doc/guix.texi:7626 msgid "One of the nice things with Guix is that, given a package definition, you can easily @emph{derive} variants of that package---for a different upstream version, with different dependencies, different compilation options, and so on. Some of these custom packages can be defined straight from the command line (@pxref{Package Transformation Options}). This section describes how to define package variants in code. This can be useful in ``manifests'' (@pxref{profile-manifest, @option{--manifest}}) and in your own package collection (@pxref{Creating a Channel}), among others!" msgstr "Una de las ventajas de Guix es que, dada una definición de paquete, puede @emph{derivar} fácilmente variantes de dicho paquete---para una versión diferente del origen, con dependencias u opciones de compilación diferentes, diferentes, etcétera. Algunos de estos paquetes personalizados se pueden definir directamente en la línea de ordenes (@pxref{Package Transformation Options}). Esta sección describe cómo definir variantes de paquetes en código. Esto puede ser útil en «manifiestos» (@pxref{profile-manifest, @option{--manifest}}) y con su propia colleción de paquetes (@pxref{Creating a Channel}) entre otros usos." #. type: cindex -#: guix-git/doc/guix.texi:7569 +#: guix-git/doc/guix.texi:7627 #, no-wrap msgid "inherit, for package definitions" msgstr "herencia, para definiciones de paquetes" #. type: Plain text -#: guix-git/doc/guix.texi:7576 +#: guix-git/doc/guix.texi:7634 msgid "As discussed earlier, packages are first-class objects in the Scheme language. The @code{(guix packages)} module provides the @code{package} construct to define new package objects (@pxref{package Reference}). The easiest way to define a package variant is using the @code{inherit} keyword together with @code{package}. This allows you to inherit from a package definition while overriding the fields you want." msgstr "Como se ha mostrado previamente, los paquetes son objetos de primera clase del lenguage Scheme. El módulo @code{(guix packages)} proporciona la forma sintáctica @code{package} para definir nuevos objetos de paquetes (@pxref{package Reference}). La forma más fácil de definir una variante de un paquete es usar la palabra clave @code{inherit} junto a @code{package}. Esto le permite heredar de una definición de paquete y modificar únicamente los campos que desee." # FUZZY FUZZY FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:7581 +#: guix-git/doc/guix.texi:7639 msgid "For example, given the @code{hello} variable, which contains a definition for the current version of GNU@tie{}Hello, here's how you would define a variant for version 2.2 (released in 2006, it's vintage!):" msgstr "Por ejemplo, a partir de la variable @code{hello}, que contiene la definición de la versión actual de GNU@tie{}Hello, podría definir de esta forma una variante para la versión 2.2 (publicada 2006, ¡con solera!):" #. type: lisp -#: guix-git/doc/guix.texi:7584 +#: guix-git/doc/guix.texi:7642 #, no-wrap msgid "" "(use-modules (gnu packages base)) ;for 'hello'\n" @@ -16302,7 +16434,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7596 +#: guix-git/doc/guix.texi:7654 #, no-wrap msgid "" "(define hello-2.2\n" @@ -16330,17 +16462,17 @@ msgstr "" " \"0lappv4slgb5spyqbh6yl5r013zv72yqg2pcl30mginf3wdqd8k9\"))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:7605 +#: guix-git/doc/guix.texi:7663 msgid "The example above corresponds to what the @option{--with-source} package transformation option does. Essentially @code{hello-2.2} preserves all the fields of @code{hello}, except @code{version} and @code{source}, which it overrides. Note that the original @code{hello} variable is still there, in the @code{(gnu packages base)} module, unchanged. When you define a custom package like this, you are really @emph{adding} a new package definition; the original one remains available." msgstr "El ejemplo previo es equivalente a lo que la opción de transformación de paquetes @option{--with-source} realiza. Esencialmente @code{hello-2.2} preserva todos los campos de @code{hello}, excepto @code{version} y @code{source}, los cuales se modifican. Tenca en cuenta que la variable original @code{hello} todavía está disponible en el módulo @code{(gnu packages base)} sin sufrir ningún cambio. Cuando define un paquete personalizado como este realmente está @emph{añadiendo} una nueva definición de paquete; la orignal sigue disponible." #. type: Plain text -#: guix-git/doc/guix.texi:7611 +#: guix-git/doc/guix.texi:7669 msgid "You can just as well define variants with a different set of dependencies than the original package. For example, the default @code{gdb} package depends on @code{guile}, but since that is an optional dependency, you can define a variant that removes that dependency like so:" msgstr "De igual manera puede definir variantes con un conjunto de dependencias distinto al del paquete original. Por ejemplo, el paquete @code{gdb} predeterminado depende de @code{guile} pero, puesto que es una dependencia opcional, podría definir una variante que elimina dicha dependencia de este modo:" #. type: lisp -#: guix-git/doc/guix.texi:7614 +#: guix-git/doc/guix.texi:7672 #, fuzzy, no-wrap #| msgid "" #| "(use-modules (gnu packages base)) ;for 'hello'\n" @@ -16353,7 +16485,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7620 +#: guix-git/doc/guix.texi:7678 #, fuzzy, no-wrap #| msgid "" #| "(define gdb-sans-guile\n" @@ -16375,67 +16507,67 @@ msgstr "" " (package-inputs gdb)))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:7626 +#: guix-git/doc/guix.texi:7684 msgid "The @code{modify-inputs} form above removes the @code{\"guile\"} package from the @code{inputs} field of @code{gdb}. The @code{modify-inputs} macro is a helper that can prove useful anytime you want to remove, add, or replace package inputs." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7627 +#: guix-git/doc/guix.texi:7685 #, fuzzy, no-wrap #| msgid "{Scheme Syntax} modify-phases @var{phases} @var{clause}@dots{}" msgid "{Scheme Syntax} modify-inputs @var{inputs} @var{clauses}" msgstr "{Sintaxis Scheme} modify-phases @var{fases} @var{cláusula}@dots{}" #. type: deffn -#: guix-git/doc/guix.texi:7631 +#: guix-git/doc/guix.texi:7689 #, fuzzy #| msgid "Modify the services listed in @var{services} according to the given clauses. Each clause has the form:" msgid "Modify the given package inputs, as returned by @code{package-inputs} & co., according to the given clauses. Each clause must have one of the following forms:" msgstr "Modifica los servicios listados en @var{servicios} de acuerdo a las cláusulas proporcionadas. Cada cláusula tiene la forma:" #. type: item -#: guix-git/doc/guix.texi:7633 +#: guix-git/doc/guix.texi:7691 #, fuzzy, no-wrap #| msgid "(service @var{type})\n" msgid "(delete @var{name}@dots{})" msgstr "(service @var{tipo})\n" #. type: table -#: guix-git/doc/guix.texi:7635 +#: guix-git/doc/guix.texi:7693 msgid "Delete from the inputs packages with the given @var{name}s (strings)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7636 +#: guix-git/doc/guix.texi:7694 #, fuzzy, no-wrap #| msgid "-i @var{package} @dots{}" msgid "(append @var{package}@dots{})" msgstr "-i @var{paquete} @dots{}" #. type: table -#: guix-git/doc/guix.texi:7638 +#: guix-git/doc/guix.texi:7696 msgid "Add @var{package}s to the end of the input list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7639 +#: guix-git/doc/guix.texi:7697 #, fuzzy, no-wrap #| msgid "-r @var{package} @dots{}" msgid "(prepend @var{package}@dots{})" msgstr "-r @var{paquete} @dots{}" #. type: table -#: guix-git/doc/guix.texi:7641 +#: guix-git/doc/guix.texi:7699 msgid "Add @var{package}s to the front of the input list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7645 +#: guix-git/doc/guix.texi:7703 msgid "The example below removes the GMP and ACL inputs of Coreutils and adds libcap to the back of the input list:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7650 +#: guix-git/doc/guix.texi:7708 #, no-wrap msgid "" "(modify-inputs (package-inputs coreutils)\n" @@ -16444,12 +16576,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7654 +#: guix-git/doc/guix.texi:7712 msgid "The example below replaces the @code{guile} package from the inputs of @code{guile-redis} with @code{guile-2.2}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7658 +#: guix-git/doc/guix.texi:7716 #, no-wrap msgid "" "(modify-inputs (package-inputs guile-redis)\n" @@ -16457,17 +16589,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7662 +#: guix-git/doc/guix.texi:7720 msgid "The last type of clause is @code{prepend}, to add inputs to the front of the list." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7671 +#: guix-git/doc/guix.texi:7729 msgid "In some cases, you may find it useful to write functions (``procedures'', in Scheme parlance) that return a package based on some parameters. For example, consider the @code{luasocket} library for the Lua programming language. We want to create @code{luasocket} packages for major versions of Lua. One way to do that is to define a procedure that takes a Lua package and returns a @code{luasocket} package that depends on it:" msgstr "En ciertos casos encontrará útil escribir funciones («procedimientos» en el vocabulario de Scheme) que devuelven un paquete en base a ciertos parámetros. Por ejemplo, considere la biblioteca @code{luasocket} para el lenguaje de programación Lua. Se desea crear paquetes de @code{luasocket} para las versiones mayores de Lua. Una forma de hacerlo es definir un procedimiento que recibe un paquete Lua y devuelve un paquete @code{luasocket} que depende de él:" #. type: lisp -#: guix-git/doc/guix.texi:7681 +#: guix-git/doc/guix.texi:7739 #, fuzzy, no-wrap #| msgid "" #| "(define (make-lua-socket name lua)\n" @@ -16503,7 +16635,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7684 +#: guix-git/doc/guix.texi:7742 #, no-wrap msgid "" "(define-public lua5.1-socket\n" @@ -16515,7 +16647,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7687 +#: guix-git/doc/guix.texi:7745 #, no-wrap msgid "" "(define-public lua5.2-socket\n" @@ -16525,34 +16657,34 @@ msgstr "" " (make-lua-socket \"lua5.2-socket\" lua-5.2))\n" #. type: Plain text -#: guix-git/doc/guix.texi:7695 +#: guix-git/doc/guix.texi:7753 msgid "Here we have defined packages @code{lua5.1-socket} and @code{lua5.2-socket} by calling @code{make-lua-socket} with different arguments. @xref{Procedures,,, guile, GNU Guile Reference Manual}, for more info on procedures. Having top-level public definitions for these two packages means that they can be referred to from the command line (@pxref{Package Modules})." msgstr "En este ejemplo se han definido los paquetes @code{lua5.1-socket} y @code{lua5.2-socket} llamando a @code{crea-lua-socket} con distintos parámetros. @xref{Procedures,,, guile, GNU Guile Reference Manual} para más información sobre procedimientos. El hecho de disponer de definiciones públicas de nivel superior de estos dos paquetes permite que se les haga referencia desde la línea de órdenes (@pxref{Package Modules})." #. type: cindex -#: guix-git/doc/guix.texi:7696 +#: guix-git/doc/guix.texi:7754 #, no-wrap msgid "package transformations" msgstr "transformación de paquetes" #. type: Plain text -#: guix-git/doc/guix.texi:7701 +#: guix-git/doc/guix.texi:7759 msgid "These are pretty simple package variants. As a convenience, the @code{(guix transformations)} module provides a high-level interface that directly maps to the more sophisticated package transformation options (@pxref{Package Transformation Options}):" msgstr "Estas son variantes muy simples. Para facilitar esta tarea, el módulo @code{(guix transformations)} proporciona una interfaz de alto nivel que se corresponde directamente con las opciones de transformación de paquetes más sofisticadas (@pxref{Package Transformation Options}):" #. type: deffn -#: guix-git/doc/guix.texi:7702 +#: guix-git/doc/guix.texi:7760 #, no-wrap msgid "{Scheme Procedure} options->transformation @var{opts}" msgstr "{Procedimiento Scheme} options->transformation @var{opciones}" #. type: deffn -#: guix-git/doc/guix.texi:7706 +#: guix-git/doc/guix.texi:7764 msgid "Return a procedure that, when passed an object to build (package, derivation, etc.), applies the transformations specified by @var{opts} and returns the resulting objects. @var{opts} must be a list of symbol/string pairs such as:" msgstr "Devuelve un procedimiento que, cuando se le proporciona un objeto que construir (paquete, derivación, etc.), aplica las transformaciones especificadas en @var{opciones} y devuelve los objetos resultantes. @var{opciones} debe ser una lista de pares símbolo/cadena como los siguientes:" #. type: lisp -#: guix-git/doc/guix.texi:7710 +#: guix-git/doc/guix.texi:7768 #, no-wrap msgid "" "((with-branch . \"guile-gcrypt=master\")\n" @@ -16562,17 +16694,17 @@ msgstr "" " (without-tests . \"libgcrypt\"))\n" #. type: deffn -#: guix-git/doc/guix.texi:7714 +#: guix-git/doc/guix.texi:7772 msgid "Each symbol names a transformation and the corresponding string is an argument to that transformation." msgstr "Cada símbolo nombra una transformación y la cadena correspondiente es el parámetro de dicha transformación." #. type: Plain text -#: guix-git/doc/guix.texi:7717 +#: guix-git/doc/guix.texi:7775 msgid "For instance, a manifest equivalent to this command:" msgstr "Por ejemplo, un manifiesto equivalente a esta orden:" #. type: example -#: guix-git/doc/guix.texi:7722 +#: guix-git/doc/guix.texi:7780 #, no-wrap msgid "" "guix build guix \\\n" @@ -16584,12 +16716,12 @@ msgstr "" " --with-debug-info=zlib\n" #. type: Plain text -#: guix-git/doc/guix.texi:7726 +#: guix-git/doc/guix.texi:7784 msgid "... would look like this:" msgstr "... sería algo parecido a esto:" #. type: lisp -#: guix-git/doc/guix.texi:7729 +#: guix-git/doc/guix.texi:7787 #, no-wrap msgid "" "(use-modules (guix transformations))\n" @@ -16599,7 +16731,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7735 +#: guix-git/doc/guix.texi:7793 #, no-wrap msgid "" "(define transform\n" @@ -16617,7 +16749,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7738 +#: guix-git/doc/guix.texi:7796 #, no-wrap msgid "" "(packages->manifest\n" @@ -16627,54 +16759,54 @@ msgstr "" " (list (transforma (specification->package \"guix\"))))\n" #. type: cindex -#: guix-git/doc/guix.texi:7740 +#: guix-git/doc/guix.texi:7798 #, no-wrap msgid "input rewriting" msgstr "reescritura de entradas" #. type: cindex -#: guix-git/doc/guix.texi:7741 +#: guix-git/doc/guix.texi:7799 #, no-wrap msgid "dependency graph rewriting" msgstr "reescritura del grafo de dependencias" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:7748 +#: guix-git/doc/guix.texi:7806 msgid "The @code{options->transformation} procedure is convenient, but it's perhaps also not as flexible as you may like. How is it implemented? The astute reader probably noticed that most package transformation options go beyond the superficial changes shown in the first examples of this section: they involve @dfn{input rewriting}, whereby the dependency graph of a package is rewritten by replacing specific inputs by others." msgstr "El procedimiento @code{options->transformation} es conveniente, pero quizá no es tan flexible como pudiese desear. ¿Cómo se ha implementado? Es posible que ya se haya percatado de que la mayoría de las opciones de transformación de paquetes van más allá de los cambios superficiales mostrados en los primeros ejemplos de esta sección: implican @dfn{reescritura de entradas}, lo que significa que el grafo de dependencias de un paquete se reescribe sustituyendo entradas específicas por otras." # FUZZY FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:7752 +#: guix-git/doc/guix.texi:7810 msgid "Dependency graph rewriting, for the purposes of swapping packages in the graph, is what the @code{package-input-rewriting} procedure in @code{(guix packages)} implements." msgstr "La reescritura del grafo de dependencias, con el propósito de reemplazar paquetes del grafo, es implementada por el procedimiento @code{package-input-rewriting} en @code{(guix packages)}." #. type: deffn -#: guix-git/doc/guix.texi:7753 +#: guix-git/doc/guix.texi:7811 #, no-wrap msgid "{Scheme Procedure} package-input-rewriting @var{replacements} @" msgstr "{Procedimiento Scheme} package-input-rewriting @var{reemplazos} @" #. type: deffn -#: guix-git/doc/guix.texi:7760 +#: guix-git/doc/guix.texi:7818 msgid "[@var{rewrite-name}] [#:deep? #t] Return a procedure that, when passed a package, replaces its direct and indirect dependencies, including implicit inputs when @var{deep?} is true, according to @var{replacements}. @var{replacements} is a list of package pairs; the first element of each pair is the package to replace, and the second one is the replacement." msgstr "" "[@var{nombre-reescrito}] [#:deep? #t]\n" "Devuelve un procedimiento que, cuando se le pasa un paquete, reemplaza sus dependencias directas e indirectas, incluyendo sus entradas implícitas cuando @var{deep?} es verdadero, de acuerdo a @var{reemplazos}. @var{reemplazos} es una lista de pares de paquetes; el primer elemento de cada par es el paquete a reemplazar, el segundo es el reemplazo." #. type: deffn -#: guix-git/doc/guix.texi:7763 +#: guix-git/doc/guix.texi:7821 msgid "Optionally, @var{rewrite-name} is a one-argument procedure that takes the name of a package and returns its new name after rewrite." msgstr "Opcionalmente, @var{nombre-reescrito} es un procedimiento de un parámetro que toma el nombre del paquete y devuelve su nuevo nombre tras la reescritura." #. type: table -#: guix-git/doc/guix.texi:7767 guix-git/doc/guix.texi:11216 +#: guix-git/doc/guix.texi:7825 guix-git/doc/guix.texi:11530 msgid "Consider this example:" msgstr "Considere este ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:7773 +#: guix-git/doc/guix.texi:7831 #, no-wrap msgid "" "(define libressl-instead-of-openssl\n" @@ -16690,7 +16822,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7776 +#: guix-git/doc/guix.texi:7834 #, no-wrap msgid "" "(define git-with-libressl\n" @@ -16700,34 +16832,34 @@ msgstr "" " (libressl-en-vez-de-openssl git))\n" #. type: Plain text -#: guix-git/doc/guix.texi:7784 +#: guix-git/doc/guix.texi:7842 msgid "Here we first define a rewriting procedure that replaces @var{openssl} with @var{libressl}. Then we use it to define a @dfn{variant} of the @var{git} package that uses @var{libressl} instead of @var{openssl}. This is exactly what the @option{--with-input} command-line option does (@pxref{Package Transformation Options, @option{--with-input}})." msgstr "Aquí primero definimos un procedimiento de reescritura que substituye @var{openssl} por @var{libressl}. Una vez hecho esto, lo usamos para definir una @dfn{variante} del paquete @var{git} que usa @var{libressl} en vez de @var{openssl}. Esto es exactamente lo que hace la opción de línea de órdenes @option{--with-input} (@pxref{Package Transformation Options, @option{--with-input}})." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:7787 +#: guix-git/doc/guix.texi:7845 msgid "The following variant of @code{package-input-rewriting} can match packages to be replaced by name rather than by identity." msgstr "La siguiente variante de @code{package-input-rewriting} puede encontrar paquetes a reemplazar por su nombre en vez de por su identidad." #. type: deffn -#: guix-git/doc/guix.texi:7788 +#: guix-git/doc/guix.texi:7846 #, no-wrap msgid "{Scheme Procedure} package-input-rewriting/spec @var{replacements} [#:deep? #t]" msgstr "{Procedimiento Scheme} package-input-rewriting/spec @var{reemplazos} [#:deep? #t]" #. type: deffn -#: guix-git/doc/guix.texi:7795 +#: guix-git/doc/guix.texi:7853 msgid "Return a procedure that, given a package, applies the given @var{replacements} to all the package graph, including implicit inputs unless @var{deep?} is false. @var{replacements} is a list of spec/procedures pair; each spec is a package specification such as @code{\"gcc\"} or @code{\"guile@@2\"}, and each procedure takes a matching package and returns a replacement for that package." msgstr "Devuelve un procedimiento que, proporcionado un paquete, realiza los @var{reemplazos} proporcionados sobre todo el grafo del paquete, incluyendo las entradas implícitas a menos que @var{deep?} sea falso. @var{reemplazos} es una lista de pares de especificación y procedimiento; cada especificación es una especificación de paquete como @code{\"gcc\"} o @code{\"guile@@2\"}, y cada procedimiento toma un paquete que corresponda con la especificación y devuelve un reemplazo para dicho paquete." #. type: Plain text -#: guix-git/doc/guix.texi:7798 +#: guix-git/doc/guix.texi:7856 msgid "The example above could be rewritten this way:" msgstr "El ejemplo previo podría ser reescrito de esta forma:" #. type: lisp -#: guix-git/doc/guix.texi:7803 +#: guix-git/doc/guix.texi:7861 #, no-wrap msgid "" "(define libressl-instead-of-openssl\n" @@ -16740,411 +16872,411 @@ msgstr "" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:7808 +#: guix-git/doc/guix.texi:7866 msgid "The key difference here is that, this time, packages are matched by spec and not by identity. In other words, any package in the graph that is called @code{openssl} will be replaced." msgstr "La diferencia principal en este caso es que, esta vez, los paquetes se buscan por su especificación y no por su identidad. En otras palabras, cualquier paquete en el grafo que se llame @code{openssl} será reemplazado." #. type: Plain text -#: guix-git/doc/guix.texi:7812 +#: guix-git/doc/guix.texi:7870 msgid "A more generic procedure to rewrite a package dependency graph is @code{package-mapping}: it supports arbitrary changes to nodes in the graph." msgstr "Un procedimiento más genérico para reescribir el grafo de dependencias de un paquete es @code{package-mapping}: acepta cambios arbitrarios sobre nodos del grafo." #. type: deffn -#: guix-git/doc/guix.texi:7813 +#: guix-git/doc/guix.texi:7871 #, no-wrap msgid "{Scheme Procedure} package-mapping @var{proc} [@var{cut?}] [#:deep? #f]" msgstr "{Scheme Procedure} package-mapping @var{proc} [@var{cortar?}] [#:deep? #f]" #. type: deffn -#: guix-git/doc/guix.texi:7818 +#: guix-git/doc/guix.texi:7876 msgid "Return a procedure that, given a package, applies @var{proc} to all the packages depended on and returns the resulting package. The procedure stops recursion when @var{cut?} returns true for a given package. When @var{deep?} is true, @var{proc} is applied to implicit inputs as well." msgstr "Devuelve un procedimiento que, dado un paquete, aplica @var{proc} a todos los paquetes de los que depende y devuelve el paquete resultante. El procedimiento para la recursión cuando @var{cortar?} devuelve verdadero para un paquete dado. Cuando @var{deep?} tiene valor verdadero, @var{proc} se aplica también a las entradas implícitas." #. type: cindex -#: guix-git/doc/guix.texi:7824 +#: guix-git/doc/guix.texi:7882 #, no-wrap msgid "build system" msgstr "sistema de construcción" #. type: Plain text -#: guix-git/doc/guix.texi:7829 +#: guix-git/doc/guix.texi:7887 msgid "Each package definition specifies a @dfn{build system} and arguments for that build system (@pxref{Defining Packages}). This @code{build-system} field represents the build procedure of the package, as well as implicit dependencies of that build procedure." msgstr "Cada definición de paquete especifica un @dfn{sistema de construcción} y parámetros para dicho sistema de construcción (@pxref{Defining Packages}). Este campo @code{build-system} representa el procedimiento de construcción del paquete, así como las dependencias implícitas de dicho procedimiento de construcción." #. type: Plain text -#: guix-git/doc/guix.texi:7833 +#: guix-git/doc/guix.texi:7891 msgid "Build systems are @code{} objects. The interface to create and manipulate them is provided by the @code{(guix build-system)} module, and actual build systems are exported by specific modules." msgstr "Los sistemas de construcción son objetos @code{}. La interfaz para crear y manipularlos se proporciona en el módulo @code{(guix build-system)}, y otros módulos exportan sistemas de construcción reales." #. type: cindex -#: guix-git/doc/guix.texi:7834 +#: guix-git/doc/guix.texi:7892 #, no-wrap msgid "bag (low-level package representation)" msgstr "bag (representación de paquetes de bajo nivel)" #. type: Plain text -#: guix-git/doc/guix.texi:7844 +#: guix-git/doc/guix.texi:7902 msgid "Under the hood, build systems first compile package objects to @dfn{bags}. A @dfn{bag} is like a package, but with less ornamentation---in other words, a bag is a lower-level representation of a package, which includes all the inputs of that package, including some that were implicitly added by the build system. This intermediate representation is then compiled to a derivation (@pxref{Derivations}). The @code{package-with-c-toolchain} is an example of a way to change the implicit inputs that a package's build system pulls in (@pxref{package Reference, @code{package-with-c-toolchain}})." msgstr "En su implementación, los sistemas de construcción primero compilan los objetos package a objetos @dfn{bag}. Una bolsa (traducción de @dfn{bag}) es como un paquete, pero con menos ornamentos---en otras palabras, una bolsa es una representación a un nivel más bajo de un paquete, que contiene todas las entradas de dicho paquete, incluyendo algunas implícitamente añadidas por el sistema de construcción. Esta representación intermedia se compila entonces a una derivación (@pxref{Derivations}). EL procedimiento @code{package-with-c-toolchain} es un ejemplo de una forma de cambiar las entradas implícitas que el sistema de construcción del paquete incluye (@pxref{package Reference, @code{package-with-c-toolchain}})." #. type: Plain text -#: guix-git/doc/guix.texi:7852 +#: guix-git/doc/guix.texi:7910 msgid "Build systems accept an optional list of @dfn{arguments}. In package definitions, these are passed @i{via} the @code{arguments} field (@pxref{Defining Packages}). They are typically keyword arguments (@pxref{Optional Arguments, keyword arguments in Guile,, guile, GNU Guile Reference Manual}). The value of these arguments is usually evaluated in the @dfn{build stratum}---i.e., by a Guile process launched by the daemon (@pxref{Derivations})." msgstr "Los sistemas de construcción aceptan una lista opcional de @dfn{parámetros}. En las definiciones de paquete, estos son pasados @i{vía} el campo @code{arguments} (@pxref{Defining Packages}). Normalmente son parámetros con palabras clave (@pxref{Optional Arguments, keyword arguments in Guile,, guile, GNU Guile Reference Manual}). El valor de estos parámetros normalmente se evalúa en la @dfn{capa de construcción}---es decir, por un proceso Guile lanzado por el daemon (@pxref{Derivations})." #. type: Plain text -#: guix-git/doc/guix.texi:7856 +#: guix-git/doc/guix.texi:7914 msgid "The main build system is @code{gnu-build-system}, which implements the standard build procedure for GNU and many other packages. It is provided by the @code{(guix build-system gnu)} module." msgstr "El sistema de construcción principal es @var{gnu-build-system}, el cual implementa el procedimiento estándar de construcción para GNU y muchos otros paquetes. Se proporciona por el módulo @code{(guix build-system gnu)}." #. type: defvr -#: guix-git/doc/guix.texi:7857 +#: guix-git/doc/guix.texi:7915 #, no-wrap msgid "{Scheme Variable} gnu-build-system" msgstr "{Variable Scheme} gnu-build-system" #. type: defvr -#: guix-git/doc/guix.texi:7861 +#: guix-git/doc/guix.texi:7919 msgid "@code{gnu-build-system} represents the GNU Build System, and variants thereof (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards})." msgstr "@var{gnu-build-system} representa el sistema de construcción GNU y sus variantes (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards})." #. type: cindex -#: guix-git/doc/guix.texi:7862 guix-git/doc/guix.texi:8812 -#: guix-git/doc/guix.texi:9294 +#: guix-git/doc/guix.texi:7920 guix-git/doc/guix.texi:8869 +#: guix-git/doc/guix.texi:9429 #, no-wrap msgid "build phases" msgstr "fases de construcción" #. type: defvr -#: guix-git/doc/guix.texi:7869 +#: guix-git/doc/guix.texi:7927 #, fuzzy msgid "In a nutshell, packages using it are configured, built, and installed with the usual @code{./configure && make && make check && make install} command sequence. In practice, a few additional steps are often needed. All these steps are split up in separate @dfn{phases}. @xref{Build Phases}, for more info on build phases and ways to customize them." msgstr "En resumen, los paquetes que lo usan se configuran, construyen e instalan con la habitual secuencia de órdenes @code{./configure && make && make check && make install}. En la práctica, algunos pasos adicionales son necesarios habitualmente. Todos estos pasos se dividen en @dfn{fases} separadas, notablemente@footnote{Rogamos que se inspeccionen los módulos @code{(guix build gnu-build-system)} para más detalles sobre las fases de construcción}:" #. type: defvr -#: guix-git/doc/guix.texi:7876 +#: guix-git/doc/guix.texi:7934 msgid "In addition, this build system ensures that the ``standard'' environment for GNU packages is available. This includes tools such as GCC, libc, Coreutils, Bash, Make, Diffutils, grep, and sed (see the @code{(guix build-system gnu)} module for a complete list). We call these the @dfn{implicit inputs} of a package, because package definitions do not have to mention them." msgstr "Además, este sistema de construcción asegura que el entorno ``estándar'' para paquetes GNU está disponible. Esto incluye herramientas como GCC, libc, Coreutils, Bash, Make, Diffutils, grep y sed (vea el módulo @code{(guix build system gnu)} para una lista completa). A estas las llamamos las @dfn{entradas implícitas} de un paquete, porque las definiciones de paquete no las mencionan." #. type: defvr -#: guix-git/doc/guix.texi:7880 +#: guix-git/doc/guix.texi:7938 msgid "This build system supports a number of keyword arguments, which can be passed @i{via} the @code{arguments} field of a package. Here are some of the main parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:7882 +#: guix-git/doc/guix.texi:7940 #, fuzzy, no-wrap msgid "#:phases" msgstr "fases de construcción" #. type: table -#: guix-git/doc/guix.texi:7885 +#: guix-git/doc/guix.texi:7943 #, fuzzy msgid "This argument specifies build-side code that evaluates to an alist of build phases. @xref{Build Phases}, for more information." msgstr "Lee la lista de canales de @var{archivo}. @var{archivo} debe contener código Scheme que evalúe a una lista de objetos ``channel''. @xref{Channels}, para más información." #. type: item -#: guix-git/doc/guix.texi:7886 +#: guix-git/doc/guix.texi:7944 #, fuzzy, no-wrap msgid "#:configure-flags" msgstr "configure" #. type: table -#: guix-git/doc/guix.texi:7889 +#: guix-git/doc/guix.texi:7947 msgid "This is a list of flags (strings) passed to the @command{configure} script. @xref{Defining Packages}, for an example." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7890 +#: guix-git/doc/guix.texi:7948 #, no-wrap msgid "#:make-flags" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7894 +#: guix-git/doc/guix.texi:7952 msgid "This list of strings contains flags passed as arguments to @command{make} invocations in the @code{build}, @code{check}, and @code{install} phases." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7895 +#: guix-git/doc/guix.texi:7953 #, fuzzy, no-wrap msgid "#:out-of-source?" msgstr "--source" #. type: table -#: guix-git/doc/guix.texi:7898 +#: guix-git/doc/guix.texi:7956 msgid "This Boolean, @code{#f} by default, indicates whether to run builds in a build directory separate from the source tree." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7903 +#: guix-git/doc/guix.texi:7961 msgid "When it is true, the @code{configure} phase creates a separate build directory, changes to that directory, and runs the @code{configure} script from there. This is useful for packages that require it, such as @code{glibc}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7904 +#: guix-git/doc/guix.texi:7962 #, no-wrap msgid "#:tests?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7907 +#: guix-git/doc/guix.texi:7965 msgid "This Boolean, @code{#t} by default, indicates whether the @code{check} phase should run the package's test suite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7908 +#: guix-git/doc/guix.texi:7966 #, fuzzy, no-wrap msgid "#:test-target" msgstr "target" #. type: table -#: guix-git/doc/guix.texi:7911 +#: guix-git/doc/guix.texi:7969 msgid "This string, @code{\"check\"} by default, gives the name of the makefile target used by the @code{check} phase." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7912 +#: guix-git/doc/guix.texi:7970 #, no-wrap msgid "#:parallel-build?" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7913 +#: guix-git/doc/guix.texi:7971 #, no-wrap msgid "#:parallel-tests?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7920 +#: guix-git/doc/guix.texi:7978 msgid "These Boolean values specify whether to build, respectively run the test suite, in parallel, with the @code{-j} flag of @command{make}. When they are true, @code{make} is passed @code{-j@var{n}}, where @var{n} is the number specified as the @option{--cores} option of @command{guix-daemon} or that of the @command{guix} client command (@pxref{Common Build Options, @option{--cores}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7921 +#: guix-git/doc/guix.texi:7979 #, no-wrap msgid "RUNPATH, validation" msgstr "" #. type: item -#: guix-git/doc/guix.texi:7922 +#: guix-git/doc/guix.texi:7980 #, fuzzy, no-wrap msgid "#:validate-runpath?" msgstr "fix-runpath" #. type: table -#: guix-git/doc/guix.texi:7926 +#: guix-git/doc/guix.texi:7984 msgid "This Boolean, @code{#t} by default, determines whether to ``validate'' the @code{RUNPATH} of ELF binaries (@code{.so} shared libraries as well as executables) previously installed by the @code{install} phase." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7934 +#: guix-git/doc/guix.texi:7992 msgid "This validation step consists in making sure that all the shared libraries needed by an ELF binary, which are listed as @code{DT_NEEDED} entries in its @code{PT_DYNAMIC} segment, appear in the @code{DT_RUNPATH} entry of that binary. In other words, it ensures that running or using those binaries will not result in a ``file not found'' error at run time. @xref{Options, @option{-rpath},, ld, The GNU Linker}, for more information on @code{RUNPATH}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7935 +#: guix-git/doc/guix.texi:7993 #, fuzzy, no-wrap msgid "#:substitutable?" msgstr "servidor de sustituciones" #. type: table -#: guix-git/doc/guix.texi:7939 +#: guix-git/doc/guix.texi:7997 msgid "This Boolean, @code{#t} by default, tells whether the package outputs should be substitutable---i.e., whether users should be able to obtain substitutes for them instead of building locally (@pxref{Substitutes})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7940 +#: guix-git/doc/guix.texi:7998 #, fuzzy, no-wrap msgid "#:allowed-references" msgstr "--references" #. type: itemx -#: guix-git/doc/guix.texi:7941 +#: guix-git/doc/guix.texi:7999 #, fuzzy, no-wrap msgid "#:disallowed-references" msgstr "--references" #. type: table -#: guix-git/doc/guix.texi:7946 +#: guix-git/doc/guix.texi:8004 msgid "When true, these arguments must be a list of dependencies that must not appear among the references of the build results. If, upon build completion, some of these references are retained, the build process fails." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7951 +#: guix-git/doc/guix.texi:8009 msgid "This is useful to ensure that a package does not erroneously keep a reference to some of it build-time inputs, in cases where doing so would, for example, unnecessarily increase its size (@pxref{Invoking guix size})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7954 +#: guix-git/doc/guix.texi:8012 msgid "Most other build systems support these keyword arguments." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7961 +#: guix-git/doc/guix.texi:8019 msgid "Other @code{} objects are defined to support other conventions and tools used by free software packages. They inherit most of @code{gnu-build-system}, and differ mainly in the set of inputs implicitly added to the build process, and in the list of phases executed. Some of these build systems are listed below." msgstr "Hay definidos otros objetos @code{} para implementar otras convenciones y herramientas usadas por paquetes de software libre. Heredan la mayor parte de @var{gnu-build-system}, y se diferencian principalmente en el conjunto de entradas implícitamente añadidas al proceso de construcción, y en la lista de fases ejecutadas. Algunos de estos sistemas de construcción se enumeran a continuación." #. type: defvr -#: guix-git/doc/guix.texi:7962 +#: guix-git/doc/guix.texi:8020 #, no-wrap msgid "{Scheme Variable} ant-build-system" msgstr "{Variable Scheme} ant-build-system" #. type: defvr -#: guix-git/doc/guix.texi:7966 +#: guix-git/doc/guix.texi:8024 msgid "This variable is exported by @code{(guix build-system ant)}. It implements the build procedure for Java packages that can be built with @url{https://ant.apache.org/, Ant build tool}." msgstr "@code{(guix build-system ant)} exporta esta variable. Implementa el procedimiento de construcción de paquetes Java que pueden construirse con @url{https://ant.apache.org/, la herramienta de construcción Ant}." #. type: defvr -#: guix-git/doc/guix.texi:7971 +#: guix-git/doc/guix.texi:8029 msgid "It adds both @code{ant} and the @dfn{Java Development Kit} (JDK) as provided by the @code{icedtea} package to the set of inputs. Different packages can be specified with the @code{#:ant} and @code{#:jdk} parameters, respectively." msgstr "Añade tanto @code{ant} como el @dfn{kit de desarrollo Java} (JDK), que proporciona el paquete @code{icedtea}, al conjunto de entradas. Se pueden especificar paquetes diferentes con los parámetros @code{#:ant} y @code{#:jdk}, respectivamente." #. type: defvr -#: guix-git/doc/guix.texi:7977 +#: guix-git/doc/guix.texi:8035 msgid "When the original package does not provide a suitable Ant build file, the parameter @code{#:jar-name} can be used to generate a minimal Ant build file @file{build.xml} with tasks to build the specified jar archive. In this case the parameter @code{#:source-dir} can be used to specify the source sub-directory, defaulting to ``src''." msgstr "Cuando el paquete original no proporciona un archivo Ant apropiado, el parámetro @code{#:jar-name} puede usarse para generar un archivo de construcción Ant @file{build.xml} mínimo con tareas para construir el archivo jar especificado. En este caso, el parámetro @code{#:source-dir} se puede usar para especificar el subdirectorio de fuentes, con ``src'' como valor predeterminado." #. type: defvr -#: guix-git/doc/guix.texi:7985 +#: guix-git/doc/guix.texi:8043 #, fuzzy msgid "The @code{#:main-class} parameter can be used with the minimal ant buildfile to specify the main class of the resulting jar. This makes the jar file executable. The @code{#:test-include} parameter can be used to specify the list of junit tests to run. It defaults to @code{(list \"**/*Test.java\")}. The @code{#:test-exclude} can be used to disable some tests. It defaults to @code{(list \"**/Abstract*.java\")}, because abstract classes cannot be run as tests." msgstr "El parámetro @code{#:main-class} puede usarse con el archivo de construcción Ant mínimo para especificar la clase main del archivo jar producido. Esto permite ejecutar el archivo jar. El parámetro @code{#:test-include} puede usarse para especificar la lista de tests junit a ejecutar. El valor predeterminado es @code{(list \"**/*Test.java\")}. @code{#:test-exclude} puede usarse para desactivar algunas pruebas. Su valor predeterminado es @code{(list \"**/Abstract*.java\")} ya que las clases abstractas no se pueden ejecutar como pruebas." #. type: defvr -#: guix-git/doc/guix.texi:7989 +#: guix-git/doc/guix.texi:8047 msgid "The parameter @code{#:build-target} can be used to specify the Ant task that should be run during the @code{build} phase. By default the ``jar'' task will be run." msgstr "El parámetro @code{#:build-target} se puede usar para especificar la tarea Ant que debe ser ejecutada durante la fase @code{build}. Por defecto se ejecuta la tarea ``jar''." #. type: defvr -#: guix-git/doc/guix.texi:7992 +#: guix-git/doc/guix.texi:8050 #, no-wrap msgid "{Scheme Variable} android-ndk-build-system" msgstr "{Variable Scheme} android-ndk-build-system" #. type: cindex -#: guix-git/doc/guix.texi:7993 +#: guix-git/doc/guix.texi:8051 #, no-wrap msgid "Android distribution" msgstr "distribución Android" #. type: cindex -#: guix-git/doc/guix.texi:7994 +#: guix-git/doc/guix.texi:8052 #, no-wrap msgid "Android NDK build system" msgstr "Sistema de construcción NDK de Android" #. type: defvr -#: guix-git/doc/guix.texi:7998 +#: guix-git/doc/guix.texi:8056 msgid "This variable is exported by @code{(guix build-system android-ndk)}. It implements a build procedure for Android NDK (native development kit) packages using a Guix-specific build process." msgstr "Esta variable es exportada por @code{(guix build-system android-ndk)}. Implementa un procedimiento de construcción para paquetes Android NDK (kit de desarrollo nativo) usando un proceso de construcción específico de Guix." #. type: defvr -#: guix-git/doc/guix.texi:8002 +#: guix-git/doc/guix.texi:8060 msgid "The build system assumes that packages install their public interface (header) files to the subdirectory @file{include} of the @code{out} output and their libraries to the subdirectory @file{lib} the @code{out} output." msgstr "El sistema de construcción asume que los paquetes instalan sus archivos de interfaz pública (cabeceras) en el subdirectorio @file{include} de la salida @code{out} y sus bibliotecas en el subdirectorio @file{lib} de la salida @code{out}\"." # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:8005 +#: guix-git/doc/guix.texi:8063 msgid "It's also assumed that the union of all the dependencies of a package has no conflicting files." msgstr "También se asume que la unión de todas las dependencias de un paquete no tiene archivos en conflicto." # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:8008 +#: guix-git/doc/guix.texi:8066 msgid "For the time being, cross-compilation is not supported - so right now the libraries and header files are assumed to be host tools." msgstr "En este momento no funciona la compilación cruzada - por lo que las bibliotecas y los archivos de cabecera se asumen que son locales." #. type: defvr -#: guix-git/doc/guix.texi:8011 +#: guix-git/doc/guix.texi:8069 #, no-wrap msgid "{Scheme Variable} asdf-build-system/source" msgstr "{Variable Scheme} asdf-build-system/source" #. type: defvrx -#: guix-git/doc/guix.texi:8012 +#: guix-git/doc/guix.texi:8070 #, no-wrap msgid "{Scheme Variable} asdf-build-system/sbcl" msgstr "{Variable Scheme} asdf-build-system/sbcl" #. type: defvrx -#: guix-git/doc/guix.texi:8013 +#: guix-git/doc/guix.texi:8071 #, no-wrap msgid "{Scheme Variable} asdf-build-system/ecl" msgstr "{Variable Scheme} asdf-build-system/ecl" #. type: defvr -#: guix-git/doc/guix.texi:8019 +#: guix-git/doc/guix.texi:8077 #, fuzzy msgid "These variables, exported by @code{(guix build-system asdf)}, implement build procedures for Common Lisp packages using @url{https://common-lisp.net/project/asdf/, ``ASDF''}. ASDF is a system definition facility for Common Lisp programs and libraries." msgstr "Estas variables, exportadas por @code{(guix build-system asdf)}, implementan procedimientos de construcción para paquetes Common Lisp usando @url{https://common-lisp.net/project/asdf, ``ASDF'''}. ASDF es una utilidad de definición de sistema para programas y bibliotecas Common Lisp." #. type: defvr -#: guix-git/doc/guix.texi:8026 +#: guix-git/doc/guix.texi:8084 #, fuzzy msgid "The @code{asdf-build-system/source} system installs the packages in source form, and can be loaded using any common lisp implementation, via ASDF@. The others, such as @code{asdf-build-system/sbcl}, install binary systems in the format which a particular implementation understands. These build systems can also be used to produce executable programs, or lisp images which contain a set of packages pre-loaded." msgstr "El sistema @code{asdf-build-system/source} instala los paquetes en forma de fuentes, y puede ser cargado usando cualquier implementación common lisp, vía ASDF. Los otros, como @code{asdf-build-system/sbcl}, instalan sistemas binarios en el formato entendido por una implementación particular. Estos sistemas de construcción también pueden usarse para producir programas ejecutables, o imágenes lisp que contengan un conjunto precargado de paquetes." #. type: defvr -#: guix-git/doc/guix.texi:8030 +#: guix-git/doc/guix.texi:8088 msgid "The build system uses naming conventions. For binary packages, the package name should be prefixed with the lisp implementation, such as @code{sbcl-} for @code{asdf-build-system/sbcl}." msgstr "El sistema de construcción usa convenciones de nombres. Para paquetes binarios, el paquete debería estar prefijado con la implementación lisp, como @code{sbcl-} para @code{asdf-build-system/sbcl}." #. type: defvr -#: guix-git/doc/guix.texi:8034 +#: guix-git/doc/guix.texi:8092 msgid "Additionally, the corresponding source package should be labeled using the same convention as python packages (see @ref{Python Modules}), using the @code{cl-} prefix." msgstr "Adicionalmente, el paquete de fuentes correspondiente debe etiquetarse usando la misma convención que los paquetes python (vea @ref{Python Modules}), usando el prefijo @code{cl-}." #. type: defvr -#: guix-git/doc/guix.texi:8042 +#: guix-git/doc/guix.texi:8100 #, fuzzy msgid "In order to create executable programs and images, the build-side procedures @code{build-program} and @code{build-image} can be used. They should be called in a build phase after the @code{create-asdf-configuration} phase, so that the system which was just built can be used within the resulting image. @code{build-program} requires a list of Common Lisp expressions to be passed as the @code{#:entry-program} argument." msgstr "Para crear programa ejecutables e imágenes, se pueden usar los procedimientos del lado de construcción @code{build-program} y @code{build-image}. Deben llamarse en la fase de construcción después de la fase @code{create-symlinks}, de modo que el sistema recién construido pueda ser usado dentro de la imagen resultante. @code{build-program} necesita una lista de expresiones Common Lisp a través del parámetro @code{#:entry-prgogram}." #. type: defvr -#: guix-git/doc/guix.texi:8051 +#: guix-git/doc/guix.texi:8109 #, fuzzy msgid "By default, all the @file{.asd} files present in the sources are read to find system definitions. The @code{#:asd-files} parameter can be used to specify the list of @file{.asd} files to read. Furthermore, if the package defines a system for its tests in a separate file, it will be loaded before the tests are run if it is specified by the @code{#:test-asd-file} parameter. If it is not set, the files @code{-tests.asd}, @code{-test.asd}, @code{tests.asd}, and @code{test.asd} will be tried if they exist." msgstr "Si el sistema no está definido en su propio archivo @file{.asd} del mismo nombre, entonces se debe usar el parámetro @code{#:asd-file} para especificar el archivo en el que se define el sistema. Más allá, si el paquete define un sistema para sus pruebas en su archivo separado, se cargará antes de la ejecución de las pruebas si se especifica el parámetro @code{#:test-asd-file}. Si no se especifica, se probarán los archivos @code{-tests.asd}, @code{-test.asd}, @code{tests.asd} y @code{test.asd} en caso de existir." #. type: defvr -#: guix-git/doc/guix.texi:8056 +#: guix-git/doc/guix.texi:8114 #, fuzzy msgid "If for some reason the package must be named in a different way than the naming conventions suggest, or if several systems must be compiled, the @code{#:asd-systems} parameter can be used to specify the list of system names." msgstr "Si por alguna razón el paquete debe ser nombrado de una forma diferente a la sugerida por las convenciones de nombres, el parámetro @code{#:asd-system-name} puede usarse para especificar el nombre del sistema." #. type: defvr -#: guix-git/doc/guix.texi:8059 +#: guix-git/doc/guix.texi:8117 #, no-wrap msgid "{Scheme Variable} cargo-build-system" msgstr "{Variable Scheme} cargo-build-system" #. type: cindex -#: guix-git/doc/guix.texi:8060 +#: guix-git/doc/guix.texi:8118 #, no-wrap msgid "Rust programming language" msgstr "lenguaje de programación Rust" #. type: cindex -#: guix-git/doc/guix.texi:8061 +#: guix-git/doc/guix.texi:8119 #, no-wrap msgid "Cargo (Rust build system)" msgstr "Cargo (sistema de construcción de Rust)" #. type: defvr -#: guix-git/doc/guix.texi:8065 +#: guix-git/doc/guix.texi:8123 msgid "This variable is exported by @code{(guix build-system cargo)}. It supports builds of packages using Cargo, the build tool of the @uref{https://www.rust-lang.org, Rust programming language}." msgstr "Esta variable se exporta en @code{(guix build-system cargo)}. Permite la construcción de paquetes usando Cargo, la herramienta de construcción del @uref{https://www.rust-lang.org, lenguaje de programación Rust}." #. type: defvr -#: guix-git/doc/guix.texi:8068 +#: guix-git/doc/guix.texi:8126 msgid "It adds @code{rustc} and @code{cargo} to the set of inputs. A different Rust package can be specified with the @code{#:rust} parameter." msgstr "Automáticamente añade @code{rustc} y @code{cargo} al conjunto de entradas. Se puede especificar el uso de un paquete Rust distinto con el parámetro @code{#:rust}." #. type: defvr -#: guix-git/doc/guix.texi:8078 +#: guix-git/doc/guix.texi:8136 #, fuzzy msgid "Regular cargo dependencies should be added to the package definition similarly to other packages; those needed only at build time to native-inputs, others to inputs. If you need to add source-only crates then you should add them to via the @code{#:cargo-inputs} parameter as a list of name and spec pairs, where the spec can be a package or a source definition. Note that the spec must evaluate to a path to a gzipped tarball which includes a @code{Cargo.toml} file at its root, or it will be ignored. Similarly, cargo dev-dependencies should be added to the package definition via the @code{#:cargo-development-inputs} parameter." msgstr "Las dependencias normales de cargo se añadirán a la definición del paquete a través del parámetro @code{#:cargo-inputs} como una lista de pares de nombre y especificación, donde la especificación puede ser un paquete o una definición de fuentes @code{source}. Tenga en cuenta que la especificación debe evaluar a una ruta o a un archivo comprimido con gzip que incluya un archivo @code{Cargo.toml} en su raíz, o será ignorado. De manera parecida, las dependencias de desarrollo de cargo deben añadirse a la definición del paquete a través del parámetro @code{#:cargo-development-inputs}." @@ -17153,485 +17285,485 @@ msgstr "Las dependencias normales de cargo se añadirán a la definición del pa # TODO (MAAV): Comprobar crate... # Informar de "any crate the binaries" #. type: defvr -#: guix-git/doc/guix.texi:8088 +#: guix-git/doc/guix.texi:8146 #, fuzzy msgid "In its @code{configure} phase, this build system will make any source inputs specified in the @code{#:cargo-inputs} and @code{#:cargo-development-inputs} parameters available to cargo. It will also remove an included @code{Cargo.lock} file to be recreated by @code{cargo} during the @code{build} phase. The @code{package} phase will run @code{cargo package} to create a source crate for future use. The @code{install} phase installs the binaries defined by the crate. Unless @code{install-source? #f} is defined it will also install a source crate repository of itself and unpacked sources, to ease in future hacking on rust packages." msgstr "En su fase @code{configure}, este sistema de construcción hará que cualquier fuente de entrada especificada en los parámetros @code{#:cargo-inputs} y @code{#:cargo-development-inputs} esté disponible para cargo. También borrará cualquier archivo @code{Cargo.lock} incluido para que sea recreado por @code{cargo} durante la fase @code{build} de construcción. La fase @code{install} instala los binarios que el ``crate'' haya definido." #. type: defvr -#: guix-git/doc/guix.texi:8090 +#: guix-git/doc/guix.texi:8148 #, fuzzy, no-wrap msgid "{Scheme Variable} chicken-build-system" msgstr "{Variable Scheme} cmake-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8095 +#: guix-git/doc/guix.texi:8153 msgid "This variable is exported by @code{(guix build-system chicken)}. It builds @uref{https://call-cc.org/, CHICKEN Scheme} modules, also called ``eggs'' or ``extensions''. CHICKEN generates C source code, which then gets compiled by a C compiler, in this case GCC." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8098 +#: guix-git/doc/guix.texi:8156 #, fuzzy msgid "This build system adds @code{chicken} to the package inputs, as well as the packages of @code{gnu-build-system}." msgstr "Este sistema de construcción añade las dos fases siguientes a las definidas en @var{gnu-build-system}:" #. type: defvr -#: guix-git/doc/guix.texi:8102 +#: guix-git/doc/guix.texi:8160 msgid "The build system can't (yet) deduce the egg's name automatically, so just like with @code{go-build-system} and its @code{#:import-path}, you should define @code{#:egg-name} in the package's @code{arguments} field." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8104 +#: guix-git/doc/guix.texi:8162 #, fuzzy msgid "For example, if you are packaging the @code{srfi-1} egg:" msgstr "Por ejemplo, si crea un empaquetado que contiene Bash con:" #. type: lisp -#: guix-git/doc/guix.texi:8107 +#: guix-git/doc/guix.texi:8165 #, no-wrap msgid "(arguments '(#:egg-name \"srfi-1\"))\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8112 +#: guix-git/doc/guix.texi:8170 msgid "Egg dependencies must be defined in @code{propagated-inputs}, not @code{inputs} because CHICKEN doesn't embed absolute references in compiled eggs. Test dependencies should go to @code{native-inputs}, as usual." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8114 +#: guix-git/doc/guix.texi:8172 #, no-wrap msgid "{Scheme Variable} copy-build-system" msgstr "{Variable Scheme} copy-build-system" # FUZZY FUZZY #. type: defvr -#: guix-git/doc/guix.texi:8118 +#: guix-git/doc/guix.texi:8176 msgid "This variable is exported by @code{(guix build-system copy)}. It supports builds of simple packages that don't require much compiling, mostly just moving files around." msgstr "Esta variable se exporta en @code{(guix build-system copy)}. Permite la construcción de paquetes simples que no necesitan mucha compilación y en su mayor parte dependen únicamente de la copia de archivos en distintas rutas." # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:8123 +#: guix-git/doc/guix.texi:8181 msgid "It adds much of the @code{gnu-build-system} packages to the set of inputs. Because of this, the @code{copy-build-system} does not require all the boilerplate code often needed for the @code{trivial-build-system}." msgstr "Añade gran parte de los paquetes de @code{gnu-build-system} al conjunto de entradas. Por esta razón, @code{copy-build-system} no necesita toda la verborrea que habitualmente requiere @code{trivial-build-system}." #. type: defvr -#: guix-git/doc/guix.texi:8128 +#: guix-git/doc/guix.texi:8186 msgid "To further simplify the file installation process, an @code{#:install-plan} argument is exposed to let the packager specify which files go where. The install plan is a list of @code{(@var{source} @var{target} [@var{filters}])}. @var{filters} are optional." msgstr "Para simplificar más aún el proceso de instalación de archivos, se expone un parámetro @code{#:install-plan} para permitir a quien genera el paquete especificar dónde van los distintos archivos. El plan de instalación (@code{#:install-plan}) es una lista de @code{(@var{fuente} @var{destino} [@var{filtro}])}. Los @var{filtro}s son opcionales." #. type: item -#: guix-git/doc/guix.texi:8130 +#: guix-git/doc/guix.texi:8188 #, no-wrap msgid "When @var{source} matches a file or directory without trailing slash, install it to @var{target}." msgstr "Cuando @var{fuente} corresponde con un archivo o un directorio sin la barra final, se instala en @var{destino}." #. type: item -#: guix-git/doc/guix.texi:8132 +#: guix-git/doc/guix.texi:8190 #, no-wrap msgid "If @var{target} has a trailing slash, install @var{source} basename beneath @var{target}." msgstr "Si @var{destino} contiene una barra al final, @var{fuente} se instala con su nombre de archivo en la ruta @var{destino}." #. type: item -#: guix-git/doc/guix.texi:8133 +#: guix-git/doc/guix.texi:8191 #, no-wrap msgid "Otherwise install @var{source} as @var{target}." msgstr "En otro caso se instala @var{fuente} como @var{destino}." #. type: item -#: guix-git/doc/guix.texi:8136 +#: guix-git/doc/guix.texi:8194 #, no-wrap msgid "When @var{source} is a directory with a trailing slash, or when @var{filters} are used," msgstr "Cuando @var{fuente} es un directorio terminado en una barra, o cuando se usa algún @var{filtro}," #. type: itemize -#: guix-git/doc/guix.texi:8139 +#: guix-git/doc/guix.texi:8197 msgid "the trailing slash of @var{target} is implied with the same meaning as above." msgstr "la barra al final de @var{destino} tiene el significado que se describió anteriormente." #. type: item -#: guix-git/doc/guix.texi:8140 +#: guix-git/doc/guix.texi:8198 #, no-wrap msgid "Without @var{filters}, install the full @var{source} @emph{content} to @var{target}." msgstr "Sin @var{filtros}, instala todo el @emph{contenido} de @var{fuente} en @var{destino}." #. type: item -#: guix-git/doc/guix.texi:8141 +#: guix-git/doc/guix.texi:8199 #, no-wrap msgid "With @var{filters} among @code{#:include}, @code{#:include-regexp}, @code{#:exclude}," msgstr "Cuando @var{filtro} contiene @code{#:include}, @code{#:include-regexp}, @code{#:exclude}," #. type: itemize -#: guix-git/doc/guix.texi:8144 +#: guix-git/doc/guix.texi:8202 msgid "@code{#:exclude-regexp}, only select files are installed depending on the filters. Each filters is specified by a list of strings." msgstr "@code{#:exclude-regexp}, únicamente se seleccionan los archivos instalados dependiendo de los filtros. Cada filtro se especifica como una lista de cadenas." #. type: item -#: guix-git/doc/guix.texi:8145 +#: guix-git/doc/guix.texi:8203 #, no-wrap msgid "With @code{#:include}, install all the files which the path suffix matches" msgstr "Con @code{#:include}, se instalan todos los archivos de la ruta cuyo sufijo" #. type: itemize -#: guix-git/doc/guix.texi:8147 +#: guix-git/doc/guix.texi:8205 msgid "at least one of the elements in the given list." msgstr "corresponda con al menos uno de los elementos de la lista proporcionada." #. type: item -#: guix-git/doc/guix.texi:8147 +#: guix-git/doc/guix.texi:8205 #, no-wrap msgid "With @code{#:include-regexp}, install all the files which the" msgstr "Con @code{#:include-regexp} se instalan todos los archivos cuyas" # FUZZY FUZZY #. type: itemize -#: guix-git/doc/guix.texi:8150 +#: guix-git/doc/guix.texi:8208 msgid "subpaths match at least one of the regular expressions in the given list." msgstr "rutas relativas correspondan con al menos una de las expresiones regulares en la lista proporcionada." #. type: item -#: guix-git/doc/guix.texi:8150 +#: guix-git/doc/guix.texi:8208 #, no-wrap msgid "The @code{#:exclude} and @code{#:exclude-regexp} filters" msgstr "Los filtros @code{#:exclude} y @code{#:exclude-regexp}" # FUZZY FUZZY FUZZY FUZZY #. type: itemize -#: guix-git/doc/guix.texi:8155 +#: guix-git/doc/guix.texi:8213 msgid "are the complement of their inclusion counterpart. Without @code{#:include} flags, install all files but those matching the exclusion filters. If both inclusions and exclusions are specified, the exclusions are done on top of the inclusions." msgstr "son complementarios a sus equivalentes inclusivos. Sin opciones @code{#:include}, se instalan todos los archivos excepto aquellos que correspondan con los filtros de exclusión. Si se proporcionan tanto inclusiones como exclusiones, las exclusiones tienen efecto sobre los resultados de las inclusiones." #. type: itemize -#: guix-git/doc/guix.texi:8159 +#: guix-git/doc/guix.texi:8217 msgid "In all cases, the paths relative to @var{source} are preserved within @var{target}." msgstr "En todos los casos, las rutas relativas a @var{fuente} se preservan dentro de @var{destino}." #. type: defvr -#: guix-git/doc/guix.texi:8162 +#: guix-git/doc/guix.texi:8220 msgid "Examples:" msgstr "Ejemplos:" #. type: item -#: guix-git/doc/guix.texi:8164 +#: guix-git/doc/guix.texi:8222 #, no-wrap msgid "@code{(\"foo/bar\" \"share/my-app/\")}: Install @file{bar} to @file{share/my-app/bar}." msgstr "@code{(\"foo/bar\" \"share/my-app/\")}: Instala @file{bar} en @file{share/my-app/bar}." #. type: item -#: guix-git/doc/guix.texi:8165 +#: guix-git/doc/guix.texi:8223 #, no-wrap msgid "@code{(\"foo/bar\" \"share/my-app/baz\")}: Install @file{bar} to @file{share/my-app/baz}." msgstr "@code{(\"foo/bar\" \"share/my-app/baz\")}: Instala @file{bar} en @file{share/my-app/baz}." #. type: item -#: guix-git/doc/guix.texi:8166 +#: guix-git/doc/guix.texi:8224 #, no-wrap msgid "@code{(\"foo/\" \"share/my-app\")}: Install the content of @file{foo} inside @file{share/my-app}," msgstr "@code{(\"foo/\" \"share/my-app\")}: Instala el contenido de @file{foo} dentro de @file{share/my-app}," #. type: itemize -#: guix-git/doc/guix.texi:8168 +#: guix-git/doc/guix.texi:8226 msgid "e.g., install @file{foo/sub/file} to @file{share/my-app/sub/file}." msgstr "por ejemplo, instala @file{foo/sub/file} en @file{share/my-app/sub/file}." #. type: item -#: guix-git/doc/guix.texi:8168 +#: guix-git/doc/guix.texi:8226 #, no-wrap msgid "@code{(\"foo/\" \"share/my-app\" #:include (\"sub/file\"))}: Install only @file{foo/sub/file} to" msgstr "@code{(\"foo/\" \"share/my-app\" #:include (\"sub/file\"))}: Instala únicamente @file{foo/sub/file} en" #. type: itemize -#: guix-git/doc/guix.texi:8170 +#: guix-git/doc/guix.texi:8228 msgid "@file{share/my-app/sub/file}." msgstr "@file{share/my-app/sub/file}." #. type: item -#: guix-git/doc/guix.texi:8170 +#: guix-git/doc/guix.texi:8228 #, no-wrap msgid "@code{(\"foo/sub\" \"share/my-app\" #:include (\"file\"))}: Install @file{foo/sub/file} to" msgstr "@code{(\"foo/sub\" \"share/my-app\" #:include (\"file\"))}: Instala @file{foo/sub/file} en" #. type: itemize -#: guix-git/doc/guix.texi:8172 +#: guix-git/doc/guix.texi:8230 msgid "@file{share/my-app/file}." msgstr "@file{share/my-app/file}." #. type: cindex -#: guix-git/doc/guix.texi:8176 +#: guix-git/doc/guix.texi:8234 #, no-wrap msgid "Clojure (programming language)" msgstr "Clojure (lenguaje de programación)" #. type: cindex -#: guix-git/doc/guix.texi:8177 +#: guix-git/doc/guix.texi:8235 #, no-wrap msgid "simple Clojure build system" msgstr "sistema de construcción simple de Clojure" #. type: defvr -#: guix-git/doc/guix.texi:8178 +#: guix-git/doc/guix.texi:8236 #, no-wrap msgid "{Scheme Variable} clojure-build-system" msgstr "{Variable Scheme} clojure-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8183 +#: guix-git/doc/guix.texi:8241 msgid "This variable is exported by @code{(guix build-system clojure)}. It implements a simple build procedure for @uref{https://clojure.org/, Clojure} packages using plain old @code{compile} in Clojure. Cross-compilation is not supported yet." msgstr "Esta variable se exporta en @code{(guix build-system clojure)}. Implementa un procedimiento de construcción simple para paquetes @uref{https://clojure.org/, Clojure} usando directamente @code{compile} en Clojure. La compilación cruzada no está disponible todavía." #. type: defvr -#: guix-git/doc/guix.texi:8187 +#: guix-git/doc/guix.texi:8245 msgid "It adds @code{clojure}, @code{icedtea} and @code{zip} to the set of inputs. Different packages can be specified with the @code{#:clojure}, @code{#:jdk} and @code{#:zip} parameters, respectively." msgstr "Añade @code{clojure}, @code{icedtea} y @code{zip} al conjunto de entradas. Se pueden especificar paquetes diferentes con los parámetros @code{#:clojure}, @code{#:jdk} y @code{#:zip}, respectivamente." #. type: defvr -#: guix-git/doc/guix.texi:8193 +#: guix-git/doc/guix.texi:8251 msgid "A list of source directories, test directories and jar names can be specified with the @code{#:source-dirs}, @code{#:test-dirs} and @code{#:jar-names} parameters, respectively. Compile directory and main class can be specified with the @code{#:compile-dir} and @code{#:main-class} parameters, respectively. Other parameters are documented below." msgstr "Una lista de directorios de fuentes, directorios de pruebas y nombres de jar pueden especificarse con los parámetros @code{#:source-dirs}, @code{#:test-dirs} y @code{#:jar-names}, respectivamente. El directorio de compilación y la clase principal pueden especificarse con los parámetros @code{#:compile-dir} y @code{#:main-class}, respectivamente. Otros parámetros se documentan más adelante." #. type: defvr -#: guix-git/doc/guix.texi:8196 +#: guix-git/doc/guix.texi:8254 msgid "This build system is an extension of @code{ant-build-system}, but with the following phases changed:" msgstr "Este sistema de construcción es una extensión de @var{ant-build-system}, pero con las siguientes fases cambiadas:" #. type: item -#: guix-git/doc/guix.texi:8199 guix-git/doc/guix.texi:8773 -#: guix-git/doc/guix.texi:8822 guix-git/doc/guix.texi:8891 -#: guix-git/doc/guix.texi:35042 guix-git/doc/guix.texi:37668 +#: guix-git/doc/guix.texi:8257 guix-git/doc/guix.texi:8830 +#: guix-git/doc/guix.texi:8879 guix-git/doc/guix.texi:8952 +#: guix-git/doc/guix.texi:35481 guix-git/doc/guix.texi:38147 #, no-wrap msgid "build" msgstr "build" #. type: table -#: guix-git/doc/guix.texi:8208 +#: guix-git/doc/guix.texi:8266 msgid "This phase calls @code{compile} in Clojure to compile source files and runs @command{jar} to create jars from both source files and compiled files according to the include list and exclude list specified in @code{#:aot-include} and @code{#:aot-exclude}, respectively. The exclude list has priority over the include list. These lists consist of symbols representing Clojure libraries or the special keyword @code{#:all} representing all Clojure libraries found under the source directories. The parameter @code{#:omit-source?} decides if source should be included into the jars." msgstr "Esta fase llama @code{compile} en Clojure para compilar los archivos de fuentes y ejecuta @command{jar} para crear archivadores jar tanto de archivos de fuentes y compilados de acuerdo con las listas de inclusión y exclusión especificadas en @code{#:aot-include} y @code{#:aot-exclude}, respectivamente. La lista de exclusión tiene prioridad sobre la de inclusión. Estas listas consisten en símbolos que representan bibliotecas Clojure o la palabra clave especial @code{#:all} que representa todas las bibliotecas encontradas en los directorios de fuentes. El parámetro @code{#:omit-source?} determina si las fuentes deben incluirse en los archivadores jar." #. type: item -#: guix-git/doc/guix.texi:8209 guix-git/doc/guix.texi:8777 -#: guix-git/doc/guix.texi:8896 +#: guix-git/doc/guix.texi:8267 guix-git/doc/guix.texi:8834 +#: guix-git/doc/guix.texi:8957 #, no-wrap msgid "check" msgstr "check" #. type: table -#: guix-git/doc/guix.texi:8216 +#: guix-git/doc/guix.texi:8274 msgid "This phase runs tests according to the include list and exclude list specified in @code{#:test-include} and @code{#:test-exclude}, respectively. Their meanings are analogous to that of @code{#:aot-include} and @code{#:aot-exclude}, except that the special keyword @code{#:all} now stands for all Clojure libraries found under the test directories. The parameter @code{#:tests?} decides if tests should be run." msgstr "Esta fase ejecuta las pruebas de acuerdo a las listas de inclusión y exclusión especificadas en @code{#:test-include} y @code{#:test-exclude}, respectivamente. Sus significados son análogos a los de @code{#:aot-include} y @code{#:aot-exclude}, excepto que la palabra clave especial @code{#:all} designa ahora a todas las bibliotecas Clojure encontradas en los directorios de pruebas. El parámetro @code{#:tests?} determina si se deben ejecutar las pruebas." #. type: item -#: guix-git/doc/guix.texi:8217 guix-git/doc/guix.texi:8783 -#: guix-git/doc/guix.texi:8826 guix-git/doc/guix.texi:8902 +#: guix-git/doc/guix.texi:8275 guix-git/doc/guix.texi:8840 +#: guix-git/doc/guix.texi:8883 guix-git/doc/guix.texi:8963 #, no-wrap msgid "install" msgstr "install" #. type: table -#: guix-git/doc/guix.texi:8219 +#: guix-git/doc/guix.texi:8277 msgid "This phase installs all jars built previously." msgstr "Esta fase instala todos los archivadores jar construidos previamente." #. type: defvr -#: guix-git/doc/guix.texi:8222 +#: guix-git/doc/guix.texi:8280 msgid "Apart from the above, this build system also contains an additional phase:" msgstr "Además de las previas, este sistema de construcción contiene una fase adicional:" #. type: item -#: guix-git/doc/guix.texi:8225 +#: guix-git/doc/guix.texi:8283 #, no-wrap msgid "install-doc" msgstr "install-doc" #. type: table -#: guix-git/doc/guix.texi:8230 +#: guix-git/doc/guix.texi:8288 msgid "This phase installs all top-level files with base name matching @code{%doc-regex}. A different regex can be specified with the @code{#:doc-regex} parameter. All files (recursively) inside the documentation directories specified in @code{#:doc-dirs} are installed as well." msgstr "Esta fase instala todos los archivos de nivel superior con un nombre que corresponda con @var{%doc-regex}. Una expresión regular diferente se puede especificar con el parámetro @code{#:doc-regex}. Todos los archivos dentro (recursivamente) de los directorios de documentación especificados en @code{#:doc-dirs} se instalan también." #. type: defvr -#: guix-git/doc/guix.texi:8233 +#: guix-git/doc/guix.texi:8291 #, no-wrap msgid "{Scheme Variable} cmake-build-system" msgstr "{Variable Scheme} cmake-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8237 +#: guix-git/doc/guix.texi:8295 msgid "This variable is exported by @code{(guix build-system cmake)}. It implements the build procedure for packages using the @url{https://www.cmake.org, CMake build tool}." msgstr "Esta variable se exporta en @code{(guix build-system cmake)}. Implementa el procedimiento de construcción para paquetes que usen la @url{https://www.cmake.org, herramienta de construcción CMake}." #. type: defvr -#: guix-git/doc/guix.texi:8241 +#: guix-git/doc/guix.texi:8299 msgid "It automatically adds the @code{cmake} package to the set of inputs. Which package is used can be specified with the @code{#:cmake} parameter." msgstr "Automáticamente añade el paquete @code{cmake} al conjunto de entradas. El paquete usado se puede especificar con el parámetro @code{#:cmake}." #. type: defvr -#: guix-git/doc/guix.texi:8248 +#: guix-git/doc/guix.texi:8306 msgid "The @code{#:configure-flags} parameter is taken as a list of flags passed to the @command{cmake} command. The @code{#:build-type} parameter specifies in abstract terms the flags passed to the compiler; it defaults to @code{\"RelWithDebInfo\"} (short for ``release mode with debugging information''), which roughly means that code is compiled with @code{-O2 -g}, as is the case for Autoconf-based packages by default." msgstr "El parámetro @code{#:configure-flags} se toma como una lista de opciones a pasar a @command{cmake}. El parámetro @code{#:build-type} especifica en términos abstractos las opciones pasadas al compilador; su valor predeterminado es @code{\"RelWithDebInfo\"} (quiere decir ``modo de entrega con información de depuración''), lo que aproximadamente significa que el código se compila con @code{-O2 -g}, lo cual es el caso predeterminado en paquetes basados en Autoconf." #. type: defvr -#: guix-git/doc/guix.texi:8250 +#: guix-git/doc/guix.texi:8308 #, no-wrap msgid "{Scheme Variable} dune-build-system" msgstr "{Variable Scheme} dune-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8257 +#: guix-git/doc/guix.texi:8315 msgid "This variable is exported by @code{(guix build-system dune)}. It supports builds of packages using @uref{https://dune.build/, Dune}, a build tool for the OCaml programming language. It is implemented as an extension of the @code{ocaml-build-system} which is described below. As such, the @code{#:ocaml} and @code{#:findlib} parameters can be passed to this build system." msgstr "Esta variable se exporta en @code{(guix build-system dune)}. Permite la construcción de paquetes mediante el uso de @uref{https://dune.build/, Dune}, una herramienta de construcción para el lenguaje de programación OCaml. Se implementa como una extensión de @code{ocaml-build-system} que se describe a continuación. Como tal, se pueden proporcionar los parámetros @code{#:ocaml} y @code{#:findlib} a este sistema de construcción." #. type: defvr -#: guix-git/doc/guix.texi:8261 +#: guix-git/doc/guix.texi:8319 msgid "It automatically adds the @code{dune} package to the set of inputs. Which package is used can be specified with the @code{#:dune} parameter." msgstr "Automáticamente añade el paquete @code{dune} al conjunto de entradas. El paquete usado se puede especificar con el parámetro @code{#:dune}." # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:8265 +#: guix-git/doc/guix.texi:8323 msgid "There is no @code{configure} phase because dune packages typically don't need to be configured. The @code{#:build-flags} parameter is taken as a list of flags passed to the @code{dune} command during the build." msgstr "No existe una fase @code{configure} debido a que los paquetes dune no necesitan ser configurados típicamente. El parámetro @code{#:build-flags} se toma como una lista de opciones proporcionadas a la orden @code{dune} durante la construcción." # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:8269 +#: guix-git/doc/guix.texi:8327 msgid "The @code{#:jbuild?} parameter can be passed to use the @code{jbuild} command instead of the more recent @code{dune} command while building a package. Its default value is @code{#f}." msgstr "El parámetro @code{#:jbuild?} puede proporcionarse para usar la orden @code{jbuild} en vez de la más reciente @code{dune} durante la construcción de un paquete. Su valor predeterminado es @code{#f}." # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:8274 +#: guix-git/doc/guix.texi:8332 msgid "The @code{#:package} parameter can be passed to specify a package name, which is useful when a package contains multiple packages and you want to build only one of them. This is equivalent to passing the @code{-p} argument to @code{dune}." msgstr "El parámetro @code{#:package} puede proporcionarse para especificar un nombre de paquete, lo que resulta útil cuando un paquete contiene múltiples paquetes y únicamente quiere construir uno de ellos. Es equivalente a proporcionar el parámetro @code{-p} a @code{dune}." #. type: defvr -#: guix-git/doc/guix.texi:8277 +#: guix-git/doc/guix.texi:8335 #, no-wrap msgid "{Scheme Variable} go-build-system" msgstr "{Variable Scheme} go-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8282 +#: guix-git/doc/guix.texi:8340 msgid "This variable is exported by @code{(guix build-system go)}. It implements a build procedure for Go packages using the standard @url{https://golang.org/cmd/go/#hdr-Compile_packages_and_dependencies, Go build mechanisms}." msgstr "Esta variable se exporta en @code{(guix build-system go)}. Implementa el procedimiento de construcción para paquetes Go usando los @url{https://golang.org/cmd/go/#hdr-Compile_packages_and_dependencies, mecanismos de construcción de Go} estándares." #. type: defvr -#: guix-git/doc/guix.texi:8293 +#: guix-git/doc/guix.texi:8351 msgid "The user is expected to provide a value for the key @code{#:import-path} and, in some cases, @code{#:unpack-path}. The @url{https://golang.org/doc/code.html#ImportPaths, import path} corresponds to the file system path expected by the package's build scripts and any referring packages, and provides a unique way to refer to a Go package. It is typically based on a combination of the package source code's remote URI and file system hierarchy structure. In some cases, you will need to unpack the package's source code to a different directory structure than the one indicated by the import path, and @code{#:unpack-path} should be used in such cases." msgstr "Se espera que la usuaria proporcione un valor para el parámetro @code{#:import-path} y, en algunos caso, @code{#:unpack-path}. La @url{https://golang.org/doc/code.html#ImportPaths, ruta de importación} corresponde a la ruta del sistema de archivos esperada por los guiones de construcción del paquete y los paquetes a los que hace referencia, y proporciona una forma de hacer referencia a un paquete Go unívocamente. Está basado típicamente en una combinación de la URI remota del paquete de archivos de fuente y la estructura jerárquica del sistema de archivos. En algunos casos, necesitará desempaquetar el código fuente del paquete en una estructura de directorios diferente a la indicada en la ruta de importación, y @code{#:unpack-path} debe usarse en dichos casos." # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:8298 +#: guix-git/doc/guix.texi:8356 msgid "Packages that provide Go libraries should install their source code into the built output. The key @code{#:install-source?}, which defaults to @code{#t}, controls whether or not the source code is installed. It can be set to @code{#f} for packages that only provide executable files." msgstr "Los paquetes que proporcionan bibliotecas Go deben instalar su código fuente en la salida de la construcción. El parámetro @code{#:install-source?}, cuyo valor por defecto es @code{#t}, controla si se instalará o no el código fuente. Puede proporcionarse @code{#f} en paquetes que proporcionan únicamente archivos ejecutables." #. type: defvr -#: guix-git/doc/guix.texi:8305 +#: guix-git/doc/guix.texi:8363 msgid "Packages can be cross-built, and if a specific architecture or operating system is desired then the keywords @code{#:goarch} and @code{#:goos} can be used to force the package to be built for that architecture and operating system. The combinations known to Go can be found @url{\"https://golang.org/doc/install/source#environment\", in their documentation}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8307 +#: guix-git/doc/guix.texi:8365 #, no-wrap msgid "{Scheme Variable} glib-or-gtk-build-system" msgstr "{Variable Scheme} glib-or-gtk-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8310 +#: guix-git/doc/guix.texi:8368 msgid "This variable is exported by @code{(guix build-system glib-or-gtk)}. It is intended for use with packages making use of GLib or GTK+." msgstr "Esta variable se exporta en @code{(guix build-system glib-or-gtk)}. Está pensada para usarse con paquetes que usan GLib o GTK+." #. type: defvr -#: guix-git/doc/guix.texi:8313 +#: guix-git/doc/guix.texi:8371 msgid "This build system adds the following two phases to the ones defined by @code{gnu-build-system}:" msgstr "Este sistema de construcción añade las dos fases siguientes a las definidas en @var{gnu-build-system}:" #. type: item -#: guix-git/doc/guix.texi:8315 guix-git/doc/guix.texi:8799 +#: guix-git/doc/guix.texi:8373 guix-git/doc/guix.texi:8856 #, no-wrap msgid "glib-or-gtk-wrap" msgstr "glib-or-gtk-wrap" #. type: table -#: guix-git/doc/guix.texi:8322 +#: guix-git/doc/guix.texi:8380 msgid "The phase @code{glib-or-gtk-wrap} ensures that programs in @file{bin/} are able to find GLib ``schemas'' and @uref{https://developer.gnome.org/gtk3/stable/gtk-running.html, GTK+ modules}. This is achieved by wrapping the programs in launch scripts that appropriately set the @env{XDG_DATA_DIRS} and @env{GTK_PATH} environment variables." msgstr "La fase @code{glib-or-gtk-wrap} se asegura de que los programas en @file{bin/} son capaces de encontrar los ``esquemas'' GLib y los @uref{https://developer.gnome.org/gtk3/stable/gtk-running.html, módulos GTK+}. Esto se consigue recubriendo los programas en guiones de lanzamiento que proporcionan valores apropiados para las variables de entorno @env{XDG_DATA_DIRS} y @env{GTK_PATH}." #. type: table -#: guix-git/doc/guix.texi:8329 +#: guix-git/doc/guix.texi:8387 msgid "It is possible to exclude specific package outputs from that wrapping process by listing their names in the @code{#:glib-or-gtk-wrap-excluded-outputs} parameter. This is useful when an output is known not to contain any GLib or GTK+ binaries, and where wrapping would gratuitously add a dependency of that output on GLib and GTK+." msgstr "Es posible excluir salidas específicas del paquete del proceso de recubrimiento enumerando sus nombres en el parámetro @code{#:glib-org-gtk-wrap-excluded-outputs}. Esto es útil cuando se sabe que una salida no contiene binarios GLib o GTK+, y cuando empaquetar gratuitamente añadiría una dependencia de dicha salida en GLib y GTK+." #. type: item -#: guix-git/doc/guix.texi:8330 guix-git/doc/guix.texi:8803 +#: guix-git/doc/guix.texi:8388 guix-git/doc/guix.texi:8860 #, no-wrap msgid "glib-or-gtk-compile-schemas" msgstr "glib-or-gtk-compile-schemas" #. type: table -#: guix-git/doc/guix.texi:8338 +#: guix-git/doc/guix.texi:8396 msgid "The phase @code{glib-or-gtk-compile-schemas} makes sure that all @uref{https://developer.gnome.org/gio/stable/glib-compile-schemas.html, GSettings schemas} of GLib are compiled. Compilation is performed by the @command{glib-compile-schemas} program. It is provided by the package @code{glib:bin} which is automatically imported by the build system. The @code{glib} package providing @command{glib-compile-schemas} can be specified with the @code{#:glib} parameter." msgstr "La fase @code{glib-or-gtk-compile-schemas} se asegura que todos los @uref{https://developer.gnome.org/gio/stable/glib-compile-schemas.html, esquemas GSettings} o GLib se compilan. La compilación la realiza el programa @command{glib-compile-schemas}. Lo proporciona el paquete @code{glib:bin} que se importa automáticamente por el sistema de construcción. El paquete @code{glib} que proporciona @command{glib-compile-schemas} puede especificarse con el parámetro @code{#:glib}." #. type: defvr -#: guix-git/doc/guix.texi:8341 +#: guix-git/doc/guix.texi:8399 msgid "Both phases are executed after the @code{install} phase." msgstr "Ambas fases se ejecutan tras la fase @code{install}." #. type: defvr -#: guix-git/doc/guix.texi:8343 +#: guix-git/doc/guix.texi:8401 #, no-wrap msgid "{Scheme Variable} guile-build-system" msgstr "{Variable Scheme} guile-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8350 +#: guix-git/doc/guix.texi:8408 msgid "This build system is for Guile packages that consist exclusively of Scheme code and that are so lean that they don't even have a makefile, let alone a @file{configure} script. It compiles Scheme code using @command{guild compile} (@pxref{Compilation,,, guile, GNU Guile Reference Manual}) and installs the @file{.scm} and @file{.go} files in the right place. It also installs documentation." msgstr "Este sistema de construcción es para paquetes Guile que consisten exclusivamente en código Scheme y son tan simples que no tienen ni siquiera un archivo Makefile, menos un guión @file{configure}. Compila código Scheme usando @command{guild compile} (@pxref{Compilation,,, guile, GNU Guile Reference Manual}) e instala los archivos @file{.scm} y @file{.go} en el lugar correcto. También instala documentación." #. type: defvr -#: guix-git/doc/guix.texi:8353 +#: guix-git/doc/guix.texi:8411 msgid "This build system supports cross-compilation by using the @option{--target} option of @samp{guild compile}." msgstr "Este sistema de construcción permite la compilación cruzada usando la opción @option{--target} de @command{guild compile}." #. type: defvr -#: guix-git/doc/guix.texi:8356 +#: guix-git/doc/guix.texi:8414 msgid "Packages built with @code{guile-build-system} must provide a Guile package in their @code{native-inputs} field." msgstr "Los paquetes construidos con @code{guile-build-system} deben proporcionar un paquete Guile en su campo @code{native-inputs}." #. type: defvr -#: guix-git/doc/guix.texi:8358 +#: guix-git/doc/guix.texi:8416 #, no-wrap msgid "{Scheme Variable} julia-build-system" msgstr "{Variable Scheme} julia-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8365 +#: guix-git/doc/guix.texi:8423 #, fuzzy msgid "This variable is exported by @code{(guix build-system julia)}. It implements the build procedure used by @uref{https://julialang.org/, julia} packages, which essentially is similar to running @samp{julia -e 'using Pkg; Pkg.add(package)'} in an environment where @env{JULIA_LOAD_PATH} contains the paths to all Julia package inputs. Tests are run by calling @code{/test/runtests.jl}." msgstr "Esta variable se exporta en @code{(guix build-system julia)}. Implementa el procedimiento de construcción usados por paquetes @uref{https://julialang.org/, julia}, lo que esencialmente es similar a la ejecución de @code{julia -e 'using Pkg; Pkg.add(package)'} en un entorno donde @env{JULIA_LOAD_PATH} contiene las rutas de todos los paquetes julia de entrada. Las pruebas se ejecutan con @code{Pkg.test}." #. type: defvr -#: guix-git/doc/guix.texi:8369 -msgid "The Julia package name is read from the file @file{Project.toml}. This value can be overridden by passing the argument @code{#:julia-package-name} (which must be correctly capitalized)." +#: guix-git/doc/guix.texi:8428 +msgid "The Julia package name and uuid is read from the file @file{Project.toml}. These values can be overridden by passing the argument @code{#:julia-package-name} (which must be correctly capitalized) or @code{#:julia-package-uuid}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8373 +#: guix-git/doc/guix.texi:8432 msgid "Julia packages usually manage their binary dependencies via @code{JLLWrappers.jl}, a Julia package that creates a module (named after the wrapped library followed by @code{_jll.jl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8378 +#: guix-git/doc/guix.texi:8437 msgid "To add the binary path @code{_jll.jl} packages, you need to patch the files under @file{src/wrappers/}, replacing the call to the macro @code{JLLWrappers.@@generate_wrapper_header}, adding as a second argument containing the store path the binary." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8382 +#: guix-git/doc/guix.texi:8441 msgid "As an example, in the MbedTLS Julia package, we add a build phase (@pxref{Build Phases}) to insert the absolute file name of the wrapped MbedTLS package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8394 +#: guix-git/doc/guix.texi:8453 #, no-wrap msgid "" "(add-after 'unpack 'override-binary-path\n" @@ -17647,681 +17779,692 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8402 -#, fuzzy -msgid "Some older packages that aren't using @file{Package.toml} yet, will require this file to be created, too. The function @code{julia-create-package-toml} helps creating the file. You need to pass the outputs and the source of the package, its name (the same as the @code{file-name} parameter), the package uuid, the package version, and a list of dependencies specified by their name and their uuid." -msgstr "Algunos paquetes antiguos que no usan todavía @file{Package.toml} también necesitan la creación de este archivo. La función @code{julia-create-package-toml} ayuda en la creación de dicho archivo. Debe proporcionarle las salidas y las fuentes del paquete, su nombre (el mismo que en el parámetro @code{file-name}), el uuid del paquete, la versión del paquete y una lista de dependencias especificadas a partir de su nombre y su uuid." +#: guix-git/doc/guix.texi:8459 +msgid "Some older packages that aren't using @file{Project.toml} yet, will require this file to be created, too. It is internally done if the arguments @code{#:julia-package-name} and @code{#:julia-package-uuid} are provided." +msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8404 +#: guix-git/doc/guix.texi:8461 #, no-wrap msgid "{Scheme Variable} maven-build-system" msgstr "{Variable Scheme} maven-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8411 +#: guix-git/doc/guix.texi:8468 msgid "This variable is exported by @code{(guix build-system maven)}. It implements a build procedure for @uref{https://maven.apache.org, Maven} packages. Maven is a dependency and lifecycle management tool for Java. A user of Maven specifies dependencies and plugins in a @file{pom.xml} file that Maven reads. When Maven does not have one of the dependencies or plugins in its repository, it will download them and use them to build the package." msgstr "Esta variable se exporta en @code{(guix build-system maven)}. Implementa un procedimiento de construcción para paquetes basados en @uref{https://maven.apache.org, Maven}. Maven es una herramienta para Java de gestión de dependencias y ciclo de vida. Las usuarias de Maven especifican las dependencias y módulos en un archivo @file{pom.xml} que Maven lee. Cuando Maven no dispone de una de dichas dependencias o módulos en su repositorio, las descarga y las usa para construir el paquete." #. type: defvr -#: guix-git/doc/guix.texi:8421 +#: guix-git/doc/guix.texi:8478 msgid "The maven build system ensures that maven will not try to download any dependency by running in offline mode. Maven will fail if a dependency is missing. Before running Maven, the @file{pom.xml} (and subprojects) are modified to specify the version of dependencies and plugins that match the versions available in the guix build environment. Dependencies and plugins must be installed in the fake maven repository at @file{lib/m2}, and are symlinked into a proper repository before maven is run. Maven is instructed to use that repository for the build and installs built artifacts there. Changed files are copied to the @file{lib/m2} directory of the package output." msgstr "El sistema de compilación de maven se asegura de que maven no intentará descargar ninguna dependencia ejecutándo maven en modo sin conexión. Maven fallará si falta alguna dependencia. Antes de ejecutar Maven, el archivo @file{pom.xml} (y los subproyectos) se modifican para especificar la versión de las dependencias y módulos que corresponden a las versiones disponibles en el entorno de construcción de guix. Las dependencias y los módulos se deben instalar en un repositorio de maven @i{ad hoc} en @file{lib/m2}, y se enlazan un repositorio real antes de que se ejecute maven. Se le indica a Maven que use ese repositorio para la construcción e instale los artefactos generados allí. Los archivos cambiados se copian del directorio @file{lib/m2} a la salida del paquete." #. type: defvr -#: guix-git/doc/guix.texi:8424 +#: guix-git/doc/guix.texi:8481 msgid "You can specify a @file{pom.xml} file with the @code{#:pom-file} argument, or let the build system use the default @file{pom.xml} file in the sources." msgstr "Puede especificar un archivo @file{pom.xml} con el parámetro @code{#:pom-file}, o dejar al sistema de construcción usar el archivo predeterminado @file{pom.xml} en las fuentes." #. type: defvr -#: guix-git/doc/guix.texi:8430 +#: guix-git/doc/guix.texi:8487 msgid "In case you need to specify a dependency's version manually, you can use the @code{#:local-packages} argument. It takes an association list where the key is the groupId of the package and its value is an association list where the key is the artifactId of the package and its value is the version you want to override in the @file{pom.xml}." msgstr "En caso de que necesite especificar la versión de una dependencia manualmente puede usar el parámetro @code{#:local-packages}. Toma como valor una lista asociativa donde la clave es el valor del campo ``groupId'' del paquete y su valor es una lista asociativa donde la clave es el campo ``artifactId'' del paquete y su valor la versión que quiere forzar en vez de la que se encuentra en @file{pom.xml}." #. type: defvr -#: guix-git/doc/guix.texi:8436 +#: guix-git/doc/guix.texi:8493 msgid "Some packages use dependencies or plugins that are not useful at runtime nor at build time in Guix. You can alter the @file{pom.xml} file to remove them using the @code{#:exclude} argument. Its value is an association list where the key is the groupId of the plugin or dependency you want to remove, and the value is a list of artifactId you want to remove." msgstr "Algunos paquetes usan dependencias o módulos que no son útiles en tiempo de ejecución ni en tiempo de construcción en Guix. Puede modificar el archivo @file{pom.xml} para eliminarlos usando el parámetro @code{#:exclude}. Su valor es una lista asociativa donde la clave es el valor del campo ``groupId'' del módulo o dependencia que quiere eliminar, y su valor es una lista de valores del campo ``artifactId'' que se eliminarán." #. type: defvr -#: guix-git/doc/guix.texi:8439 +#: guix-git/doc/guix.texi:8496 msgid "You can override the default @code{jdk} and @code{maven} packages with the corresponding argument, @code{#:jdk} and @code{#:maven}." msgstr "Puede usar valores distintos para los paquetes @code{jdk} y @code{maven} con el parámetro correspondiente, @code{#:jdk} y @code{#:maven}." #. type: defvr -#: guix-git/doc/guix.texi:8444 +#: guix-git/doc/guix.texi:8501 msgid "The @code{#:maven-plugins} argument is a list of maven plugins used during the build, with the same format as the @code{inputs} fields of the package declaration. Its default value is @code{(default-maven-plugins)} which is also exported." msgstr "El parámetro @code{#:maven-plugins} es una lista de módulos de maven usados durante la construcción, con el mismo formato que el campo @code{inputs} de la declaración del paquete. Su valor predeterminado es @code{(default-maven-plugins)} que también se exporta." #. type: defvr -#: guix-git/doc/guix.texi:8446 +#: guix-git/doc/guix.texi:8503 #, fuzzy, no-wrap #| msgid "{Scheme Variable} meson-build-system" msgid "{Scheme Variable} minetest-mod-build-system" msgstr "{Variable Scheme} meson-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8452 +#: guix-git/doc/guix.texi:8509 #, fuzzy #| msgid "This variable is exported by @code{(guix build-system ocaml)}. It implements a build procedure for @uref{https://ocaml.org, OCaml} packages, which consists of choosing the correct set of commands to run for each package. OCaml packages can expect many different commands to be run. This build system will try some of them." msgid "This variable is exported by @code{(guix build-system minetest)}. It implements a build procedure for @uref{https://www.minetest.net, Minetest} mods, which consists of copying Lua code, images and other resources to the location Minetest searches for mods. The build system also minimises PNG images and verifies that Minetest can load the mod without errors." msgstr "Esta variable se exporta en @code{(guix build-system ocaml)}. Implementa un procedimiento de construcción para paquetes @uref{https://ocaml.org, OCaml}, que consiste en seleccionar el conjunto correcto de órdenes a ejecutar para cada paquete. Los paquetes OCaml pueden esperar la ejecución de muchas ordenes diferentes. Este sistema de construcción probará algunas de ellas." #. type: defvr -#: guix-git/doc/guix.texi:8454 +#: guix-git/doc/guix.texi:8511 #, no-wrap msgid "{Scheme Variable} minify-build-system" msgstr "{Variable Scheme} minify-build-system" # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:8457 +#: guix-git/doc/guix.texi:8514 msgid "This variable is exported by @code{(guix build-system minify)}. It implements a minification procedure for simple JavaScript packages." msgstr "Esta variable se exporta en @code{(guix build-system minify)}. Implementa un procedimiento de minificación para paquetes JavaScript simples." # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:8463 +#: guix-git/doc/guix.texi:8520 msgid "It adds @code{uglify-js} to the set of inputs and uses it to compress all JavaScript files in the @file{src} directory. A different minifier package can be specified with the @code{#:uglify-js} parameter, but it is expected that the package writes the minified code to the standard output." msgstr "Añade @code{uglify-js} al conjunto de entradas y lo utiliza para comprimir todos los archivos JavaScript en el directorio @file{src}. Un paquete de minificación diferente puede especificarse con el parámetro @code{#:uglify-js}, pero se espera que el paquete escriba el código minificado en la salida estándar." # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:8467 +#: guix-git/doc/guix.texi:8524 msgid "When the input JavaScript files are not all located in the @file{src} directory, the parameter @code{#:javascript-files} can be used to specify a list of file names to feed to the minifier." msgstr "Cuando los archivos JavaScript de entrada no se encuentran en el directorio @file{src}, el parámetro @code{#:javascript-files} puede usarse para especificar una lista de nombres de archivo que proporcionar al minificador." #. type: defvr -#: guix-git/doc/guix.texi:8469 +#: guix-git/doc/guix.texi:8526 #, no-wrap msgid "{Scheme Variable} ocaml-build-system" msgstr "{Variable Scheme} ocaml-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8475 +#: guix-git/doc/guix.texi:8532 msgid "This variable is exported by @code{(guix build-system ocaml)}. It implements a build procedure for @uref{https://ocaml.org, OCaml} packages, which consists of choosing the correct set of commands to run for each package. OCaml packages can expect many different commands to be run. This build system will try some of them." msgstr "Esta variable se exporta en @code{(guix build-system ocaml)}. Implementa un procedimiento de construcción para paquetes @uref{https://ocaml.org, OCaml}, que consiste en seleccionar el conjunto correcto de órdenes a ejecutar para cada paquete. Los paquetes OCaml pueden esperar la ejecución de muchas ordenes diferentes. Este sistema de construcción probará algunas de ellas." # FUZZY # TODO: bypass #. type: defvr -#: guix-git/doc/guix.texi:8485 +#: guix-git/doc/guix.texi:8542 msgid "When the package has a @file{setup.ml} file present at the top-level, it will run @code{ocaml setup.ml -configure}, @code{ocaml setup.ml -build} and @code{ocaml setup.ml -install}. The build system will assume that this file was generated by @uref{http://oasis.forge.ocamlcore.org/, OASIS} and will take care of setting the prefix and enabling tests if they are not disabled. You can pass configure and build flags with the @code{#:configure-flags} and @code{#:build-flags}. The @code{#:test-flags} key can be passed to change the set of flags used to enable tests. The @code{#:use-make?} key can be used to bypass this system in the build and install phases." msgstr "Cuando el paquete tiene un archivo @file{setup.ml} presente en el nivel superior, se ejecuta @code{ocaml setup.ml -configure}, @code{ocaml setup.ml -build} y @code{ocaml setup.ml -install}. El sistema de construcción asumirá que este archivo se generó con @uref{http://oasis.forge.ocamlcore.org/ OASIS} y se encargará de establecer el prefijo y la activación de las pruebas si no se desactivaron. Puede pasar opciones de configuración y construcción con @code{#:configure-flags} y @code{#:build-flags}, respectivamente. El parámetro @code{#:test-flags} puede usarse para cambiar el conjunto de opciones usadas para activar las pruebas. El parámetro @code{#:use-make?} puede usarse para ignorar este sistema en las fases de construcción e instalación." #. type: defvr -#: guix-git/doc/guix.texi:8490 +#: guix-git/doc/guix.texi:8547 msgid "When the package has a @file{configure} file, it is assumed that it is a hand-made configure script that requires a different argument format than in the @code{gnu-build-system}. You can add more flags with the @code{#:configure-flags} key." msgstr "Cuando el paquete tiene un archivo @file{configure}, se asume que es un guión de configuración hecho a mano que necesita un formato de parámetros diferente a los del sistema @code{gnu-build-system}. Puede añadir más opciones con el parámetro @code{#:configure-flags}." #. type: defvr -#: guix-git/doc/guix.texi:8494 +#: guix-git/doc/guix.texi:8551 msgid "When the package has a @file{Makefile} file (or @code{#:use-make?} is @code{#t}), it will be used and more flags can be passed to the build and install phases with the @code{#:make-flags} key." msgstr "Cuando el paquete tiene un archivo @file{Makefile} (o @code{#:use-make?} es @code{#t}), será usado y se pueden proporcionar más opciones para las fases de construcción y e instalación con el parámetro @code{#:make-flags}." #. type: defvr -#: guix-git/doc/guix.texi:8502 +#: guix-git/doc/guix.texi:8559 msgid "Finally, some packages do not have these files and use a somewhat standard location for its build system. In that case, the build system will run @code{ocaml pkg/pkg.ml} or @code{ocaml pkg/build.ml} and take care of providing the path to the required findlib module. Additional flags can be passed via the @code{#:build-flags} key. Install is taken care of by @command{opam-installer}. In this case, the @code{opam} package must be added to the @code{native-inputs} field of the package definition." msgstr "Por último, algunos paquetes no tienen estos archivos y usan unas localizaciones de algún modo estándares para su sistema de construcción. En este caso, el sistema de construcción ejecutará @code{ocaml pkg/pkg.ml} o @code{ocaml pkg/build.ml} y se hará cargo de proporcionar la ruta del módulo findlib necesario. Se pueden pasar opciones adicionales con el parámetro @code{#:build-flags}. De la instalación se hace cargo @command{opam-installer}. En este caso, el paquete @code{opam} debe añadirse al campo @code{native-inputs} de la definición del paquete." # FUZZY # MAAV (TODO): Está un poco mal escrito... :( #. type: defvr -#: guix-git/doc/guix.texi:8510 +#: guix-git/doc/guix.texi:8567 msgid "Note that most OCaml packages assume they will be installed in the same directory as OCaml, which is not what we want in guix. In particular, they will install @file{.so} files in their module's directory, which is usually fine because it is in the OCaml compiler directory. In guix though, these libraries cannot be found and we use @env{CAML_LD_LIBRARY_PATH}. This variable points to @file{lib/ocaml/site-lib/stubslibs} and this is where @file{.so} libraries should be installed." msgstr "Fíjese que la mayoría de los paquetes OCaml asumen su instalación en el mismo directorio que OCaml, lo que no es el comportamiento deseado en guix. En particular, tratarán de instalar archivos @file{.so} en su directorio de módulos, lo que normalmente es aceptable puesto que está bajo el directorio del compilador de OCaml. No obstante, en guix estas bibliotecas no se pueden instalar ahí, por lo que se usa @env{CAML_LD_LIBRARY_PATH}. Esta variable apunta a @file{lib/ocaml/site-lib/stubslibs} y allí es donde se deben instalar las bibliotecas @file{.so}." #. type: defvr -#: guix-git/doc/guix.texi:8512 +#: guix-git/doc/guix.texi:8569 #, no-wrap msgid "{Scheme Variable} python-build-system" msgstr "{Variable Scheme} python-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8517 +#: guix-git/doc/guix.texi:8574 msgid "This variable is exported by @code{(guix build-system python)}. It implements the more or less standard build procedure used by Python packages, which consists in running @code{python setup.py build} and then @code{python setup.py install --prefix=/gnu/store/@dots{}}." msgstr "Esta variable se exporta en @code{(guix build-system python)}. Implementa el procedimiento más o menos estándar de construcción usado por paquetes Python, que consiste en la ejecución de @code{python setup.py build} y @code{python setup.py install --prefix=/gnu/store/@dots{}}." #. type: defvr -#: guix-git/doc/guix.texi:8522 +#: guix-git/doc/guix.texi:8579 #, fuzzy #| msgid "For packages that install stand-alone Python programs under @code{bin/}, it takes care of wrapping these programs so that their @env{PYTHONPATH} environment variable points to all the Python libraries they depend on." msgid "For packages that install stand-alone Python programs under @code{bin/}, it takes care of wrapping these programs so that their @env{GUIX_PYTHONPATH} environment variable points to all the Python libraries they depend on." msgstr "Para que instalan programas independientes Python bajo @code{bin/}, se encarga de envolver dichos programas de modo que su variable de entorno @env{PYTHONPATH} apunte a las bibliotecas Python de las que dependen." #. type: defvr -#: guix-git/doc/guix.texi:8528 +#: guix-git/doc/guix.texi:8585 msgid "Which Python package is used to perform the build can be specified with the @code{#:python} parameter. This is a useful way to force a package to be built for a specific version of the Python interpreter, which might be necessary if the package is only compatible with a single interpreter version." msgstr "Se puede especificar el paquete Python usado para llevar a cabo la construcción con el parámetro @code{#:python}. Esta es habitualmente una forma de forzar la construcción de un paquete para una versión específica del intérprete Python, lo que puede ser necesario si el paquete es compatible únicamente con una versión del intérprete." #. type: defvr -#: guix-git/doc/guix.texi:8533 +#: guix-git/doc/guix.texi:8590 msgid "By default guix calls @code{setup.py} under control of @code{setuptools}, much like @command{pip} does. Some packages are not compatible with setuptools (and pip), thus you can disable this by setting the @code{#:use-setuptools?} parameter to @code{#f}." msgstr "De manera predeterminada guix llama a @code{setup.py} bajo el control de @code{setuptools} de manera similar a lo realizado por @command{pip}. Algunos paquetes no son compatibles con setuptools (y pip), por lo que puede desactivar esta configuración estableciendo el parámetro @code{#:use-setuptools} a @code{#f}." #. type: defvr -#: guix-git/doc/guix.texi:8539 +#: guix-git/doc/guix.texi:8596 msgid "If a @code{\"python\"} output is available, the package is installed into it instead of the default @code{\"out\"} output. This is useful for packages that include a Python package as only a part of the software, and thus want to combine the phases of @code{python-build-system} with another build system. Python bindings are a common usecase." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8542 +#: guix-git/doc/guix.texi:8599 #, no-wrap msgid "{Scheme Variable} perl-build-system" msgstr "{Variable Scheme} perl-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8554 +#: guix-git/doc/guix.texi:8611 msgid "This variable is exported by @code{(guix build-system perl)}. It implements the standard build procedure for Perl packages, which either consists in running @code{perl Build.PL --prefix=/gnu/store/@dots{}}, followed by @code{Build} and @code{Build install}; or in running @code{perl Makefile.PL PREFIX=/gnu/store/@dots{}}, followed by @code{make} and @code{make install}, depending on which of @code{Build.PL} or @code{Makefile.PL} is present in the package distribution. Preference is given to the former if both @code{Build.PL} and @code{Makefile.PL} exist in the package distribution. This preference can be reversed by specifying @code{#t} for the @code{#:make-maker?} parameter." msgstr "Esta variable se exporta en @code{(guix build-system perl)}. Implementa el procedimiento de construcción estándar para paquetes Perl, lo que o bien consiste en la ejecución de @code{perl Build.PL --prefix=/gnu/store/@dots{}}, seguido de @code{Build} y @code{Build install}; o en la ejecución de @code{perl Makefile.PL PREFIX=/gnu/store/@dots{}}, seguida de @code{make} y @code{make install}, dependiendo de si @code{Build.PL} o @code{Makefile.PL} están presentes en la distribución del paquete. El primero tiene preferencia si existen tanto @code{Build.PL} como @code{Makefile.PL} en la distribución del paquete. Esta preferencia puede ser invertida mediante la especificación del valor @code{#t} en el parámetro @code{#:make-maker?}." #. type: defvr -#: guix-git/doc/guix.texi:8558 +#: guix-git/doc/guix.texi:8615 msgid "The initial @code{perl Makefile.PL} or @code{perl Build.PL} invocation passes flags specified by the @code{#:make-maker-flags} or @code{#:module-build-flags} parameter, respectively." msgstr "La invocación inicial de @code{perl Makefile.PL} o @code{perl Build.PL} pasa a su vez las opciones especificadas por los parámetros @code{#:make-maker-flags} o @code{#:module-build-flags}, respectivamente." #. type: defvr -#: guix-git/doc/guix.texi:8560 +#: guix-git/doc/guix.texi:8617 msgid "Which Perl package is used can be specified with @code{#:perl}." msgstr "El paquete Perl usado puede especificarse con @code{#:perl}." #. type: defvr -#: guix-git/doc/guix.texi:8562 +#: guix-git/doc/guix.texi:8619 #, fuzzy, no-wrap msgid "{Scheme Variable} renpy-build-system" msgstr "{Variable Scheme} r-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8566 +#: guix-git/doc/guix.texi:8623 #, fuzzy msgid "This variable is exported by @code{(guix build-system renpy)}. It implements the more or less standard build procedure used by Ren'py games, which consists of loading @code{#:game} once, thereby creating bytecode for it." msgstr "Esta variable se exporta en @code{(guix build-system python)}. Implementa el procedimiento más o menos estándar de construcción usado por paquetes Python, que consiste en la ejecución de @code{python setup.py build} y @code{python setup.py install --prefix=/gnu/store/@dots{}}." #. type: defvr -#: guix-git/doc/guix.texi:8569 +#: guix-git/doc/guix.texi:8626 msgid "It further creates a wrapper script in @code{bin/} and a desktop entry in @code{share/applications}, both of which can be used to launch the game." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8573 +#: guix-git/doc/guix.texi:8630 msgid "Which Ren'py package is used can be specified with @code{#:renpy}. Games can also be installed in outputs other than ``out'' by using @code{#:output}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8575 +#: guix-git/doc/guix.texi:8632 #, no-wrap msgid "{Scheme Variable} qt-build-system" msgstr "{Variable Scheme} qt-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8578 +#: guix-git/doc/guix.texi:8635 msgid "This variable is exported by @code{(guix build-system qt)}. It is intended for use with applications using Qt or KDE." msgstr "Esta variable se exporta en @code{(guix build-system qt)}. Está pensado para usarse con aplicaciones que usen Qt o KDE." #. type: defvr -#: guix-git/doc/guix.texi:8581 +#: guix-git/doc/guix.texi:8638 msgid "This build system adds the following two phases to the ones defined by @code{cmake-build-system}:" msgstr "Este sistema de construcción añade las dos fases siguientes a las definidas en @var{cmake-build-system}:" #. type: item -#: guix-git/doc/guix.texi:8583 +#: guix-git/doc/guix.texi:8640 #, no-wrap msgid "check-setup" msgstr "check-setup" # FUZZY #. type: table -#: guix-git/doc/guix.texi:8590 +#: guix-git/doc/guix.texi:8647 msgid "The phase @code{check-setup} prepares the environment for running the checks as commonly used by Qt test programs. For now this only sets some environment variables: @code{QT_QPA_PLATFORM=offscreen}, @code{DBUS_FATAL_WARNINGS=0} and @code{CTEST_OUTPUT_ON_FAILURE=1}." msgstr "La fase @code{check-setup} prepara el entorno para la ejecución de las comprobaciones usadas habitualmente por los programas de pruebas de Qt. Por ahora únicamente proporciona valor a algunas variables de entorno: @code{QT_QPA_PLATFORM=offscreen}, @code{DBUS_FATAL_WARNINGS=0} y @code{CTEST_OUTPUT_ON_FAILURE=1}." #. type: table -#: guix-git/doc/guix.texi:8593 +#: guix-git/doc/guix.texi:8650 msgid "This phase is added before the @code{check} phase. It's a separate phase to ease adjusting if necessary." msgstr "Esta fase se añade previamente a la fase @code{check}. Es una fase separada para facilitar el ajuste si fuese necesario." #. type: item -#: guix-git/doc/guix.texi:8594 +#: guix-git/doc/guix.texi:8651 #, no-wrap msgid "qt-wrap" msgstr "qt-wrap" # FUZZY #. type: table -#: guix-git/doc/guix.texi:8600 +#: guix-git/doc/guix.texi:8657 msgid "The phase @code{qt-wrap} searches for Qt5 plugin paths, QML paths and some XDG in the inputs and output. In case some path is found, all programs in the output's @file{bin/}, @file{sbin/}, @file{libexec/} and @file{lib/libexec/} directories are wrapped in scripts defining the necessary environment variables." msgstr "La fase @code{qt-wrap} busca las rutas de módulos de Qt5, las rutas de QML y algunas rutas XDG en las entradas y la salida. En caso de que alguna ruta se encuentra, todos los programas en los directorios @file{bin/}, @file{sbin/}, @file{libexec/} y @file{lib/libexec/} de la salida se envuelven en guiones que definen las variables de entorno necesarias." #. type: table -#: guix-git/doc/guix.texi:8606 +#: guix-git/doc/guix.texi:8663 msgid "It is possible to exclude specific package outputs from that wrapping process by listing their names in the @code{#:qt-wrap-excluded-outputs} parameter. This is useful when an output is known not to contain any Qt binaries, and where wrapping would gratuitously add a dependency of that output on Qt, KDE, or such." msgstr "Es posible excluir salidas específicas del paquete del proceso de recubrimiento enumerando sus nombres en el parámetro @code{#:qt-wrap-excluded-outputs}. Esto es útil cuando se sabe que una salida no contiene binarios que usen Qt, y cuando empaquetar gratuitamente añadiría una dependencia de dicha salida en Qt." #. type: table -#: guix-git/doc/guix.texi:8608 +#: guix-git/doc/guix.texi:8665 msgid "This phase is added after the @code{install} phase." msgstr "Ambas fases se añaden tras la fase @code{install}." #. type: defvr -#: guix-git/doc/guix.texi:8611 +#: guix-git/doc/guix.texi:8668 #, no-wrap msgid "{Scheme Variable} r-build-system" msgstr "{Variable Scheme} r-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8619 +#: guix-git/doc/guix.texi:8676 msgid "This variable is exported by @code{(guix build-system r)}. It implements the build procedure used by @uref{https://r-project.org, R} packages, which essentially is little more than running @samp{R CMD INSTALL --library=/gnu/store/@dots{}} in an environment where @env{R_LIBS_SITE} contains the paths to all R package inputs. Tests are run after installation using the R function @code{tools::testInstalledPackage}." msgstr "Esta variable se exporta en @code{(guix build-system r)}. Implementa el procedimiento de construcción usados por paquetes @uref{https://r-project.org, R}, lo que esencialmente es poco más que la ejecución de @samp{R CMD INSTALL --library=/gnu/store/@dots{}} en un entorno donde @env{R_LIBS_SITE} contiene las rutas de todos los paquetes R de entrada. Las pruebas se ejecutan tras la instalación usando la función R @code{tools::testInstalledPackage}." #. type: defvr -#: guix-git/doc/guix.texi:8621 +#: guix-git/doc/guix.texi:8678 #, no-wrap msgid "{Scheme Variable} rakudo-build-system" msgstr "{Variable Scheme} rakudo-build-system" # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:8629 +#: guix-git/doc/guix.texi:8686 #, fuzzy msgid "This variable is exported by @code{(guix build-system rakudo)}. It implements the build procedure used by @uref{https://rakudo.org/, Rakudo} for @uref{https://perl6.org/, Perl6} packages. It installs the package to @code{/gnu/store/@dots{}/NAME-VERSION/share/perl6} and installs the binaries, library files and the resources, as well as wrap the files under the @code{bin/} directory. Tests can be skipped by passing @code{#f} to the @code{tests?} parameter." msgstr "Esta variable se exporta en @code{(guix build-system rakudo)}. Implementa el procedimiento de construcción usado por @uref{https://rakudo.org/, Rakudo} para paquetes @uref{https://perl6.org/, Perl6}. Instala el paquete en @code{/gnu/store/@dots{}/NOMBRE-VERSIÓN/share/perl6} e instala los binarios, archivos de bibliotecas y recursos, así como recubre los archivos en el directorio @code{bin/}. Las pruebas pueden omitirse proporcionando @code{#f} en el parámetro @code{tests?}." #. type: defvr -#: guix-git/doc/guix.texi:8637 +#: guix-git/doc/guix.texi:8694 msgid "Which rakudo package is used can be specified with @code{rakudo}. Which perl6-tap-harness package used for the tests can be specified with @code{#:prove6} or removed by passing @code{#f} to the @code{with-prove6?} parameter. Which perl6-zef package used for tests and installing can be specified with @code{#:zef} or removed by passing @code{#f} to the @code{with-zef?} parameter." msgstr "El paquete rakudo en uso puede especificarse con @code{rakudo}. El paquete perl6-tap-harness en uso durante las pruebas puede especificarse con @code{#:prove6} o eliminarse proporcionando @code{#f} al parámetro @code{with-prove6?}. El paquete perl6-zef en uso durante las pruebas e instalación puede especificarse con @code{#:zef} o eliminarse proporcionando @code{#f} al parámetro @code{with-zef?}." #. type: defvr -#: guix-git/doc/guix.texi:8639 +#: guix-git/doc/guix.texi:8696 #, no-wrap msgid "{Scheme Variable} texlive-build-system" msgstr "{Variable Scheme} texlive-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8644 +#: guix-git/doc/guix.texi:8701 msgid "This variable is exported by @code{(guix build-system texlive)}. It is used to build TeX packages in batch mode with a specified engine. The build system sets the @env{TEXINPUTS} variable to find all TeX source files in the inputs." msgstr "Esta variable se exporta en @code{(guix build-system texlive)}. Se usa para construir paquetes TeX en modo de procesamiento de lotes con el motor especificado. El sistema de construcción proporciona valor a la variable @env{TEXINPUTS} para encontrar todos los archivos de fuentes TeX en las entradas." #. type: defvr -#: guix-git/doc/guix.texi:8653 +#: guix-git/doc/guix.texi:8710 msgid "By default it runs @code{luatex} on all files ending on @code{ins}. A different engine and format can be specified with the @code{#:tex-format} argument. Different build targets can be specified with the @code{#:build-targets} argument, which expects a list of file names. The build system adds only @code{texlive-bin} and @code{texlive-latex-base} (both from @code{(gnu packages tex}) to the inputs. Both can be overridden with the arguments @code{#:texlive-bin} and @code{#:texlive-latex-base}, respectively." msgstr "Por defecto ejecuta @code{luatex} en todos los archivos que terminan en @code{ins}. Un motor y formato diferente puede especificarse con el parámetro @code{#:tex-format}. Los diferentes objetivos de construcción pueden especificarse con el parámetro @code{#:build-targets}, que espera una lista de nombres de archivo. El sistema de construcción añade únicamente @code{texlive-bin} y @code{texlive-latex-base} (ambos desde @code{(gnu packages tex)} a las entradas. Ambos pueden forzarse con los parámetros @code{#:texlive-bin} y @code{#:texlive-latex-base} respectivamente." #. type: defvr -#: guix-git/doc/guix.texi:8656 +#: guix-git/doc/guix.texi:8713 msgid "The @code{#:tex-directory} parameter tells the build system where to install the built files under the texmf tree." msgstr "El parámetro @code{#:tex-directory} le dice al sistema de construcción dónde instalar los archivos construidos bajo el árbol texmf." #. type: defvr -#: guix-git/doc/guix.texi:8658 +#: guix-git/doc/guix.texi:8715 #, no-wrap msgid "{Scheme Variable} ruby-build-system" msgstr "{Variable Scheme} ruby-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8662 +#: guix-git/doc/guix.texi:8719 msgid "This variable is exported by @code{(guix build-system ruby)}. It implements the RubyGems build procedure used by Ruby packages, which involves running @code{gem build} followed by @code{gem install}." msgstr "Esta variable se exporta en @code{(guix build-system ruby)}. Implementa el procedimiento de construcción de RubyGems usado por los paquetes Ruby, que implica la ejecución de @code{gem build} seguida de @code{gem install}." #. type: defvr -#: guix-git/doc/guix.texi:8670 +#: guix-git/doc/guix.texi:8727 msgid "The @code{source} field of a package that uses this build system typically references a gem archive, since this is the format that Ruby developers use when releasing their software. The build system unpacks the gem archive, potentially patches the source, runs the test suite, repackages the gem, and installs it. Additionally, directories and tarballs may be referenced to allow building unreleased gems from Git or a traditional source release tarball." msgstr "El campo @code{source} de un paquete que usa este sistema de construcción típicamente se refiere a un archivo gem, ya que este es el formato usado por las desarrolladoras Ruby cuando publican su software. El sistema de construcción desempaqueta el archivo gem, potencialmente parchea las fuentes, ejecuta la batería de pruebas, vuelve a empaquetar el archivo gem y lo instala. Adicionalmente, se puede hacer referencia a directorios y archivadores tar para permitir la construcción de archivos gem no publicados desde Git o un archivador tar de publicación de fuentes tradicional." #. type: defvr -#: guix-git/doc/guix.texi:8674 +#: guix-git/doc/guix.texi:8731 msgid "Which Ruby package is used can be specified with the @code{#:ruby} parameter. A list of additional flags to be passed to the @command{gem} command can be specified with the @code{#:gem-flags} parameter." msgstr "Se puede especificar el paquete Ruby usado mediante el parámetro @code{#:ruby}. Una lista de opciones adicionales pueden pasarse a la orden @command{gem} en el parámetro @code{#:gem-flags}." #. type: defvr -#: guix-git/doc/guix.texi:8676 +#: guix-git/doc/guix.texi:8733 #, no-wrap msgid "{Scheme Variable} waf-build-system" msgstr "{Variable Scheme} waf-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8682 +#: guix-git/doc/guix.texi:8739 msgid "This variable is exported by @code{(guix build-system waf)}. It implements a build procedure around the @code{waf} script. The common phases---@code{configure}, @code{build}, and @code{install}---are implemented by passing their names as arguments to the @code{waf} script." msgstr "Esta variable se exporta en @code{(guix build-system waf)}. Implementa un procedimiento de construcción alrededor del guión @code{waf}. Las fases comunes---@code{configure}, @code{build} y @code{install}---se implementan pasando sus nombres como parámetros al guión @code{waf}." #. type: defvr -#: guix-git/doc/guix.texi:8686 +#: guix-git/doc/guix.texi:8743 msgid "The @code{waf} script is executed by the Python interpreter. Which Python package is used to run the script can be specified with the @code{#:python} parameter." msgstr "El guión @code{waf} es ejecutado por el intérprete Python. El paquete Python usado para la ejecución puede ser especificado con el parámetro @code{#:python}." #. type: defvr -#: guix-git/doc/guix.texi:8688 +#: guix-git/doc/guix.texi:8745 #, no-wrap msgid "{Scheme Variable} scons-build-system" msgstr "{Variable Scheme} scons-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8694 +#: guix-git/doc/guix.texi:8751 msgid "This variable is exported by @code{(guix build-system scons)}. It implements the build procedure used by the SCons software construction tool. This build system runs @code{scons} to build the package, @code{scons test} to run tests, and then @code{scons install} to install the package." msgstr "Esta variable se exporta en @code{(guix build-system scons)}. Implementa en procedimiento de construcción usado por la herramienta de construcción de software SCons. Este sistema de construcción ejecuta @code{scons} para construir el paquete, @code{scons test} para ejecutar las pruebas y después @code{scons install} para instalar el paquete." #. type: defvr -#: guix-git/doc/guix.texi:8701 +#: guix-git/doc/guix.texi:8758 msgid "Additional flags to be passed to @code{scons} can be specified with the @code{#:scons-flags} parameter. The default build and install targets can be overridden with @code{#:build-targets} and @code{#:install-targets} respectively. The version of Python used to run SCons can be specified by selecting the appropriate SCons package with the @code{#:scons} parameter." msgstr "Las opciones adicionales a pasar a @code{scons} se pueden especificar con el parámetro @code{#:scons-flags}. Los objetivos predeterminados de construcción (build) e instalación (install) pueden modificarse con @code{#:build-targets} y @code{#:install-targets} respectivamente. La versión de Python usada para ejecutar SCons puede especificarse seleccionando el paquete SCons apropiado con el parámetro @code{#:scons}." #. type: defvr -#: guix-git/doc/guix.texi:8703 +#: guix-git/doc/guix.texi:8760 #, no-wrap msgid "{Scheme Variable} haskell-build-system" msgstr "{Variable Scheme} haskell-build-system" # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:8717 +#: guix-git/doc/guix.texi:8774 msgid "This variable is exported by @code{(guix build-system haskell)}. It implements the Cabal build procedure used by Haskell packages, which involves running @code{runhaskell Setup.hs configure --prefix=/gnu/store/@dots{}} and @code{runhaskell Setup.hs build}. Instead of installing the package by running @code{runhaskell Setup.hs install}, to avoid trying to register libraries in the read-only compiler store directory, the build system uses @code{runhaskell Setup.hs copy}, followed by @code{runhaskell Setup.hs register}. In addition, the build system generates the package documentation by running @code{runhaskell Setup.hs haddock}, unless @code{#:haddock? #f} is passed. Optional Haddock parameters can be passed with the help of the @code{#:haddock-flags} parameter. If the file @code{Setup.hs} is not found, the build system looks for @code{Setup.lhs} instead." msgstr "Esta variable se exporta en @code{(guix build-system haskell)}. Implementa el procedimiento de construcción Cabal usado por paquetes Haskell, el cual implica la ejecución de @code{runhaskell Setup.hs configure --prefix=/gnu/store/@dots{}} y @code{runhaskell Setup.hs build}. En vez de instalar el paquete ejecutando @code{runhaskell Setup.hs install}, para evitar el intento de registro de bibliotecas en el directorio de solo-lectura del compilador en el almacén, el sistema de construcción usa @code{runhaskell Setup.hs copy}, seguido de @code{runhaskell Setup.hs register}. Además, el sistema de construcción genera la documentación del paquete ejecutando @code{runhaskell Setup.hs haddock}, a menos que se pasase @code{#:haddock? #f}. Parámetros opcionales de Haddock pueden proporcionarse con la ayuda del parámetro @code{#:haddock-flags}. Si el archivo @code{Setup.hs} no es encontrado, el sistema de construcción busca @code{Setup.lhs} a su vez." #. type: defvr -#: guix-git/doc/guix.texi:8720 +#: guix-git/doc/guix.texi:8777 msgid "Which Haskell compiler is used can be specified with the @code{#:haskell} parameter which defaults to @code{ghc}." msgstr "El compilador Haskell usado puede especificarse con el parámetro @code{#:haskell} cuyo valor predeterminado es @code{ghc}." #. type: defvr -#: guix-git/doc/guix.texi:8722 +#: guix-git/doc/guix.texi:8779 #, no-wrap msgid "{Scheme Variable} dub-build-system" msgstr "{Variable Scheme} dub-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8727 +#: guix-git/doc/guix.texi:8784 msgid "This variable is exported by @code{(guix build-system dub)}. It implements the Dub build procedure used by D packages, which involves running @code{dub build} and @code{dub run}. Installation is done by copying the files manually." msgstr "Esta variable se exporta en @code{(guix build-system dub)}. Implementa el procedimiento de construcción Dub usado por los paquetes D, que implica la ejecución de @code{dub build} y @code{dub run}. La instalación se lleva a cabo con la copia manual de los archivos." #. type: defvr -#: guix-git/doc/guix.texi:8730 +#: guix-git/doc/guix.texi:8787 msgid "Which D compiler is used can be specified with the @code{#:ldc} parameter which defaults to @code{ldc}." msgstr "El compilador D usado puede ser especificado con el parámetro @code{#:ldc} cuyo valor predeterminado es @code{ldc}." #. type: anchor{#1} -#: guix-git/doc/guix.texi:8733 +#: guix-git/doc/guix.texi:8790 msgid "emacs-build-system" msgstr "emacs-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8733 +#: guix-git/doc/guix.texi:8790 #, no-wrap msgid "{Scheme Variable} emacs-build-system" msgstr "{Variable Scheme} emacs-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8737 +#: guix-git/doc/guix.texi:8794 msgid "This variable is exported by @code{(guix build-system emacs)}. It implements an installation procedure similar to the packaging system of Emacs itself (@pxref{Packages,,, emacs, The GNU Emacs Manual})." msgstr "Esta variable se exporta en @code{(guix build-system emacs)}. Implementa un procedimiento de instalación similar al propio sistema de empaquetado de Emacs (@pxref{Packages,,, emacs, The GNU Emacs Manual})." #. type: defvr -#: guix-git/doc/guix.texi:8743 +#: guix-git/doc/guix.texi:8800 msgid "It first creates the @code{@code{package}-autoloads.el} file, then it byte compiles all Emacs Lisp files. Differently from the Emacs packaging system, the Info documentation files are moved to the standard documentation directory and the @file{dir} file is deleted. The Elisp package files are installed directly under @file{share/emacs/site-lisp}." msgstr "Primero crea el archivo @code{@var{paquete}-autoloads.el}, tras lo que compila todos los archivos Emacs Lisp. De manera diferente al sistema de paquetes de Emacs, los archivos de documentación Info se mueven al directorio estándar de documentación y se borra el archivo @file{dir}. Los archivos del paquete Elisp se instalan directamente en @file{share/emacs/site-lisp}." #. type: defvr -#: guix-git/doc/guix.texi:8745 +#: guix-git/doc/guix.texi:8802 #, no-wrap msgid "{Scheme Variable} font-build-system" msgstr "{Variable Scheme} font-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8751 +#: guix-git/doc/guix.texi:8808 msgid "This variable is exported by @code{(guix build-system font)}. It implements an installation procedure for font packages where upstream provides pre-compiled TrueType, OpenType, etc.@: font files that merely need to be copied into place. It copies font files to standard locations in the output directory." msgstr "Esta variable se exporta en @code{(guix build-system font)}. Implementa un procedimiento de instalación para paquetes de fuentes donde las proveedoras originales proporcionan archivos de tipografía TrueType, OpenType, etc.@: precompilados que simplemente necesitan copiarse en su lugar. Copia los archivos de tipografías a las localizaciones estándar en el directorio de salida." #. type: defvr -#: guix-git/doc/guix.texi:8753 +#: guix-git/doc/guix.texi:8810 #, no-wrap msgid "{Scheme Variable} meson-build-system" msgstr "{Variable Scheme} meson-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8757 +#: guix-git/doc/guix.texi:8814 msgid "This variable is exported by @code{(guix build-system meson)}. It implements the build procedure for packages that use @url{https://mesonbuild.com, Meson} as their build system." msgstr "Esta variable se exporta en @code{(guix build-system meson)}. Implementa el procedimiento de construcción para paquetes que usan @url{https://mesonbuild.com, Meson} como su sistema de construcción." #. type: defvr -#: guix-git/doc/guix.texi:8761 +#: guix-git/doc/guix.texi:8818 #, fuzzy #| msgid "It adds both Meson and @uref{https://ninja-build.org/, Ninja} to the set of inputs, and they can be changed with the parameters @code{#:meson} and @code{#:ninja} if needed. The default Meson is @code{meson-for-build}, which is special because it doesn't clear the @code{RUNPATH} of binaries and libraries when they are installed." msgid "It adds both Meson and @uref{https://ninja-build.org/, Ninja} to the set of inputs, and they can be changed with the parameters @code{#:meson} and @code{#:ninja} if needed." msgstr "Añade Meson y @uref{https://ninja-build.org/, Ninja} al conjunto de entradas, y pueden cambiarse con los parámetros @code{#:meson} y @code{#:ninja} en caso necesario. La versión de Meson predeterminada es @code{meson-for-build}, la cual es especial puesto que no limpia el @code{RUNPATH} de los binarios y bibliotecas durante la instalación." #. type: defvr -#: guix-git/doc/guix.texi:8764 +#: guix-git/doc/guix.texi:8821 msgid "This build system is an extension of @code{gnu-build-system}, but with the following phases changed to some specific for Meson:" msgstr "Este sistema de construcción es una extensión de @var{gnu-build-system}, pero con las siguientes fases cambiadas por otras específicas para Meson:" #. type: item -#: guix-git/doc/guix.texi:8767 guix-git/doc/guix.texi:8818 -#: guix-git/doc/guix.texi:8886 +#: guix-git/doc/guix.texi:8824 guix-git/doc/guix.texi:8875 +#: guix-git/doc/guix.texi:8947 #, no-wrap msgid "configure" msgstr "configure" #. type: table -#: guix-git/doc/guix.texi:8772 +#: guix-git/doc/guix.texi:8829 msgid "The phase runs @code{meson} with the flags specified in @code{#:configure-flags}. The flag @option{--buildtype} is always set to @code{debugoptimized} unless something else is specified in @code{#:build-type}." msgstr "Esta fase ejecuta @code{meson} con las opciones especificadas en @code{#:configure-flags}. La opción @option{--buildtype} recibe el valor @code{debugoptimized} excepto cuando se especifique algo distinto en @code{#:build-type}." #. type: table -#: guix-git/doc/guix.texi:8776 +#: guix-git/doc/guix.texi:8833 msgid "The phase runs @code{ninja} to build the package in parallel by default, but this can be changed with @code{#:parallel-build?}." msgstr "Esta fase ejecuta @code{ninja} para construir el paquete en paralelo por defecto, pero esto puede cambiarse con @code{#:parallel-build?}." #. type: table -#: guix-git/doc/guix.texi:8782 +#: guix-git/doc/guix.texi:8839 msgid "The phase runs @samp{meson test} with a base set of options that cannot be overridden. This base set of options can be extended via the @code{#:test-options} argument, for example to select or skip a specific test suite." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8785 +#: guix-git/doc/guix.texi:8842 msgid "The phase runs @code{ninja install} and can not be changed." msgstr "Esta fase ejecuta @code{ninja install} y no puede cambiarse." #. type: defvr -#: guix-git/doc/guix.texi:8788 +#: guix-git/doc/guix.texi:8845 msgid "Apart from that, the build system also adds the following phases:" msgstr "Aparte de estas, el sistema de ejecución también añade las siguientes fases:" #. type: item -#: guix-git/doc/guix.texi:8791 +#: guix-git/doc/guix.texi:8848 #, no-wrap msgid "fix-runpath" msgstr "fix-runpath" #. type: table -#: guix-git/doc/guix.texi:8798 +#: guix-git/doc/guix.texi:8855 #, fuzzy #| msgid "This phase ensures that all binaries can find the libraries they need. It searches for required libraries in subdirectories of the package being built, and adds those to @code{RUNPATH} where needed. It also removes references to libraries left over from the build phase by @code{meson-for-build}, such as test dependencies, that aren't actually required for the program to run." msgid "This phase ensures that all binaries can find the libraries they need. It searches for required libraries in subdirectories of the package being built, and adds those to @code{RUNPATH} where needed. It also removes references to libraries left over from the build phase by @code{meson}, such as test dependencies, that aren't actually required for the program to run." msgstr "Esta fase se asegura de que todos los binarios pueden encontrar las bibliotecas que necesitan. Busca las bibliotecas necesarias en subdirectorios del paquete en construcción, y añade estas a @code{RUNPATH} en caso necesario. También elimina referencias a bibliotecas introducidas en la fase de construcción por @code{meson-for-build}, como las dependencias de las pruebas, que no se necesitan realmente para la ejecución del programa." #. type: table -#: guix-git/doc/guix.texi:8802 guix-git/doc/guix.texi:8806 +#: guix-git/doc/guix.texi:8859 guix-git/doc/guix.texi:8863 msgid "This phase is the phase provided by @code{glib-or-gtk-build-system}, and it is not enabled by default. It can be enabled with @code{#:glib-or-gtk?}." msgstr "Esta fase es la fase proporcionada por @code{glib-or-gtk-build-system}, y no está activa por defecto. Puede activarse con @code{#:glib-or-gtk}." #. type: defvr -#: guix-git/doc/guix.texi:8809 +#: guix-git/doc/guix.texi:8866 #, no-wrap msgid "{Scheme Variable} linux-module-build-system" msgstr "{Variable Scheme} linux-module-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8811 +#: guix-git/doc/guix.texi:8868 msgid "@code{linux-module-build-system} allows building Linux kernel modules." msgstr "@var{linux-module-build-system} permite la construcción de módulos del núcleo Linux." #. type: defvr -#: guix-git/doc/guix.texi:8815 +#: guix-git/doc/guix.texi:8872 msgid "This build system is an extension of @code{gnu-build-system}, but with the following phases changed:" msgstr "Este sistema de construcción es una extensión de @var{gnu-build-system}, pero con las siguientes fases cambiadas:" #. type: table -#: guix-git/doc/guix.texi:8821 +#: guix-git/doc/guix.texi:8878 msgid "This phase configures the environment so that the Linux kernel's Makefile can be used to build the external kernel module." msgstr "Esta fase configura el entorno de modo que el Makefile del núcleo Linux pueda usarse para la construcción del módulo externo del núcleo." #. type: table -#: guix-git/doc/guix.texi:8825 +#: guix-git/doc/guix.texi:8882 msgid "This phase uses the Linux kernel's Makefile in order to build the external kernel module." msgstr "Esta fase usa el Makefile del núcleo Linux para construir el módulo externo del núcleo." #. type: table -#: guix-git/doc/guix.texi:8829 +#: guix-git/doc/guix.texi:8886 msgid "This phase uses the Linux kernel's Makefile in order to install the external kernel module." msgstr "Esta fase usa el Makefile del núcleo Linux para instalar el módulo externo del núcleo." # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:8834 +#: guix-git/doc/guix.texi:8891 msgid "It is possible and useful to specify the Linux kernel to use for building the module (in the @code{arguments} form of a package using the @code{linux-module-build-system}, use the key @code{#:linux} to specify it)." msgstr "Es posible y útil especificar el núcleo Linux usado para la construcción del módulo (para ello debe usar el parámetro @code{#:linux} a través de la forma @code{arguments} en un paquete que use @code{linux-module-build-system})." #. type: defvr -#: guix-git/doc/guix.texi:8836 +#: guix-git/doc/guix.texi:8893 #, no-wrap msgid "{Scheme Variable} node-build-system" msgstr "{Variable Scheme} node-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8841 +#: guix-git/doc/guix.texi:8898 msgid "This variable is exported by @code{(guix build-system node)}. It implements the build procedure used by @uref{https://nodejs.org, Node.js}, which implements an approximation of the @code{npm install} command, followed by an @code{npm test} command." msgstr "Esta variable se exporta en @code{(guix build-system node)}. Implementa el procedimiento de construcción usado por @uref{https://nodejs.org, Node.js}, que implementa una aproximación de la orden @code{npm install}, seguida de una orden @code{npm test}." #. type: defvr -#: guix-git/doc/guix.texi:8845 +#: guix-git/doc/guix.texi:8902 msgid "Which Node.js package is used to interpret the @code{npm} commands can be specified with the @code{#:node} parameter which defaults to @code{node}." msgstr "El paquete Node.js usado para interpretar las órdenes @code{npm} puede especificarse a través del parámetro @code{#:node} cuyo valor predeterminado es @code{node}." #. type: Plain text -#: guix-git/doc/guix.texi:8851 +#: guix-git/doc/guix.texi:8908 msgid "Lastly, for packages that do not need anything as sophisticated, a ``trivial'' build system is provided. It is trivial in the sense that it provides basically no support: it does not pull any implicit inputs, and does not have a notion of build phases." msgstr "Por último, para paquetes que no necesiten nada tan sofisticado se proporciona un sistema de construcción ``trivial''. Es trivial en el sentido de que no proporciona prácticamente funcionalidad: no incorpora entradas implícitas y no tiene una noción de fases de construcción." #. type: defvr -#: guix-git/doc/guix.texi:8852 +#: guix-git/doc/guix.texi:8909 #, no-wrap msgid "{Scheme Variable} trivial-build-system" msgstr "{Variable Scheme} trivial-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8854 +#: guix-git/doc/guix.texi:8911 msgid "This variable is exported by @code{(guix build-system trivial)}." msgstr "Esta variable se exporta en @code{(guix build-system trivial)}." #. type: defvr -#: guix-git/doc/guix.texi:8859 +#: guix-git/doc/guix.texi:8916 msgid "This build system requires a @code{#:builder} argument. This argument must be a Scheme expression that builds the package output(s)---as with @code{build-expression->derivation} (@pxref{Derivations, @code{build-expression->derivation}})." msgstr "Este sistema de construcción necesita un parámetro @code{#:builder}. Este parámetro debe ser una expresión Scheme que construya la(s) salida(s) del paquete---como en @code{build-expression->derivation} (@pxref{Derivations, @code{build-expression->derivation}})." #. type: cindex -#: guix-git/doc/guix.texi:8864 +#: guix-git/doc/guix.texi:8921 #, no-wrap msgid "build phases, for packages" msgstr "fases de construcción, para paquetes" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:8870 +#: guix-git/doc/guix.texi:8927 msgid "Almost all package build systems implement a notion @dfn{build phases}: a sequence of actions that the build system executes, when you build the package, leading to the installed byproducts in the store. A notable exception is the ``bare-bones'' @code{trivial-build-system} (@pxref{Build Systems})." msgstr "Prácticamente todos los sistemas de construcción de paquetes implementan una noción de @dfn{fases de construcción}: una secuencia de acciones ejecutadas por el sistema de construcción, cuando usted construya el paquete, que conducen a la instalación de su producción en el almacén. Una excepción notable es el sistema de construcción trivial @code{trivial-build-system} (@pxref{Build Systems})." #. type: Plain text -#: guix-git/doc/guix.texi:8874 +#: guix-git/doc/guix.texi:8931 msgid "As discussed in the previous section, those build systems provide a standard list of phases. For @code{gnu-build-system}, the main build phases are the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8876 +#: guix-git/doc/guix.texi:8933 +#, fuzzy, no-wrap +#| msgid "store paths" +msgid "set-paths" +msgstr "rutas del almacén" + +#. type: table +#: guix-git/doc/guix.texi:8936 +msgid "Define search path environment variables for all the input packages, including @env{PATH} (@pxref{Search Paths})." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:8937 #, no-wrap msgid "unpack" msgstr "unpack" #. type: table -#: guix-git/doc/guix.texi:8880 +#: guix-git/doc/guix.texi:8941 msgid "Unpack the source tarball, and change the current directory to the extracted source tree. If the source is actually a directory, copy it to the build tree, and enter that directory." msgstr "Extrae el archivador tar de la fuente, y cambia el directorio actual al directorio recién extraído. Si la fuente es realmente un directorio, lo copia al árbol de construcción y entra en ese directorio." #. type: item -#: guix-git/doc/guix.texi:8881 +#: guix-git/doc/guix.texi:8942 #, no-wrap msgid "patch-source-shebangs" msgstr "patch-source-shebangs" #. type: table -#: guix-git/doc/guix.texi:8885 +#: guix-git/doc/guix.texi:8946 msgid "Patch shebangs encountered in source files so they refer to the right store file names. For instance, this changes @code{#!/bin/sh} to @code{#!/gnu/store/@dots{}-bash-4.3/bin/sh}." msgstr "Sustituye secuencias ``#!'' encontradas al inicio de los archivos de fuentes para que hagan referencia a los nombres correctos de archivos del almacén. Por ejemplo, esto cambia @code{#!/bin/sh} por @code{#!/gnu/store/@dots{}-bash-4.3/bin/sh}." #. type: table -#: guix-git/doc/guix.texi:8890 +#: guix-git/doc/guix.texi:8951 msgid "Run the @file{configure} script with a number of default options, such as @option{--prefix=/gnu/store/@dots{}}, as well as the options specified by the @code{#:configure-flags} argument." msgstr "Ejecuta el guión @file{configure} con algunas opciones predeterminadas, como @option{--prefix=/gnu/store/@dots{}}, así como las opciones especificadas por el parámetro @code{#:configure-flags}." #. type: table -#: guix-git/doc/guix.texi:8895 +#: guix-git/doc/guix.texi:8956 msgid "Run @code{make} with the list of flags specified with @code{#:make-flags}. If the @code{#:parallel-build?} argument is true (the default), build with @code{make -j}." msgstr "Ejecuta @code{make} con la lista de opciones especificadas en @code{#:make-flags}. Si el parámetro @code{#:parallel-build?} es verdadero (por defecto), construye con @code{make -j}." #. type: table -#: guix-git/doc/guix.texi:8901 +#: guix-git/doc/guix.texi:8962 msgid "Run @code{make check}, or some other target specified with @code{#:test-target}, unless @code{#:tests? #f} is passed. If the @code{#:parallel-tests?} argument is true (the default), run @code{make check -j}." msgstr "Ejecuta @code{make check}, u otro objetivo especificado con @code{#:test-target}, a menos que se pasase @code{#:tests? #f}. Si el parámetro @code{#:parallel-tests?} es verdadero (por defecto), ejecuta @code{make check -j}." #. type: table -#: guix-git/doc/guix.texi:8904 +#: guix-git/doc/guix.texi:8965 msgid "Run @code{make install} with the flags listed in @code{#:make-flags}." msgstr "Ejecuta @code{make install} con las opciones enumeradas en @code{#:make-flags}." #. type: item -#: guix-git/doc/guix.texi:8905 +#: guix-git/doc/guix.texi:8966 #, no-wrap msgid "patch-shebangs" msgstr "patch-shebangs" #. type: table -#: guix-git/doc/guix.texi:8907 +#: guix-git/doc/guix.texi:8968 msgid "Patch shebangs on the installed executable files." msgstr "Sustituye las secuencias ``#!'' en los archivos ejecutables instalados." #. type: item -#: guix-git/doc/guix.texi:8908 +#: guix-git/doc/guix.texi:8969 #, no-wrap msgid "strip" msgstr "strip" #. type: table -#: guix-git/doc/guix.texi:8912 +#: guix-git/doc/guix.texi:8973 msgid "Strip debugging symbols from ELF files (unless @code{#:strip-binaries?} is false), copying them to the @code{debug} output when available (@pxref{Installing Debugging Files})." msgstr "Extrae los símbolos de depuración de archivos ELF (a menos que el valor de @code{#:strip-binaries?} sea falso), y los copia a la salida @code{debug} cuando esté disponible (@pxref{Installing Debugging Files})." #. type: Plain text -#: guix-git/doc/guix.texi:8921 +#: guix-git/doc/guix.texi:8982 #, fuzzy msgid "Other build systems have similar phases, with some variations. For example, @code{cmake-build-system} has same-named phases but its @code{configure} phases runs @code{cmake} instead of @code{./configure}. Others, such as @code{python-build-system}, have a wholly different list of standard phases. All this code runs on the @dfn{build side}: it is evaluated when you actually build the package, in a dedicated build process spawned by the build daemon (@pxref{Invoking guix-daemon})." msgstr "Como se ha tratado en las secciones anteriores, dichos sistemas de construcción proporcionan una lista de fases estándar. Las fáses estándar de @code{gnu-build-system} incluyen una fase @code{unpack} para desempaquetar el archivador de código fuente, una fase @command{configure} para ejecutar @code{./configure}, una fase @code{build} para ejecutar @command{make}, y (entre otras) una fase @code{install} para ejecutar @command{make install}; @pxref{Build Systems} para obtener una visión más detallada de estas fases. De igual modo @code{cmake-build-system} hereda estas fases, pero su fase @code{configure} ejecuta @command{cmake} en vez de @command{./configure}. Otros sistemas de construcción, como @code{python-build-system}, tienen una lista de fases de construcción completamente diferente. Todo este código se ejecuta en el @dfn{lado de la construcción}: se evalua cuando realmente construya el paquete, en un proceso de construcción dedicado que lanza el daemon de construcción (@pxref{Invoking guix-daemon})." #. type: Plain text -#: guix-git/doc/guix.texi:8928 +#: guix-git/doc/guix.texi:8989 msgid "Build phases are represented as association lists or ``alists'' (@pxref{Association Lists,,, guile, GNU Guile Reference Manual}) where each key is a symbol for the name of the phase and the associated value is a procedure that accepts an arbitrary number of arguments. By convention, those procedures receive information about the build in the form of @dfn{keyword parameters}, which they can use or ignore." msgstr "Las fases de construcción se representan como listas asociativas o ``alists'' (@pxref{Association Lists,,, guile, GNU Guile Reference Manual}) donde cada clave es un símbolo que nombra a la fase y el valor asociado es un procedimiento que acepta un número arbitrario de parámetros. Por convención, estos procedimientos reciben información sobre la construcción en forma de @dfn{parámetros que usan palabras clave}, de los cuales pueden hacer uso o ignorarlos." #. type: vindex -#: guix-git/doc/guix.texi:8929 +#: guix-git/doc/guix.texi:8990 #, no-wrap msgid "%standard-phases" msgstr "%standard-phases" #. type: Plain text -#: guix-git/doc/guix.texi:8935 +#: guix-git/doc/guix.texi:8996 msgid "For example, here is how @code{(guix build gnu-build-system)} defines @code{%standard-phases}, the variable holding its alist of build phases@footnote{We present a simplified view of those build phases, but do take a look at @code{(guix build gnu-build-system)} to see all the details!}:" msgstr "Por ejemplo, esta es la forma en la que @code{(guix build gnu-build-system)} define @code{%standard-phases}, la variable que contiene su lista asociativa de fases de construcción@footnote{Presentamos una visión simplificada de las fases de dichas construcción, ¡eche un vistazo al módulo @code{(guix build gnu-build-system)} para ver todos los detalles!}:" #. type: lisp -#: guix-git/doc/guix.texi:8938 +#: guix-git/doc/guix.texi:8999 #, no-wrap msgid "" ";; The build phases of 'gnu-build-system'.\n" @@ -18331,7 +18474,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:8942 +#: guix-git/doc/guix.texi:9003 #, no-wrap msgid "" "(define* (unpack #:key source #:allow-other-keys)\n" @@ -18345,7 +18488,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:8948 +#: guix-git/doc/guix.texi:9009 #, no-wrap msgid "" "(define* (configure #:key outputs #:allow-other-keys)\n" @@ -18364,7 +18507,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:8952 +#: guix-git/doc/guix.texi:9013 #, no-wrap msgid "" "(define* (build #:allow-other-keys)\n" @@ -18378,7 +18521,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:8959 +#: guix-git/doc/guix.texi:9020 #, no-wrap msgid "" "(define* (check #:key (test-target \"check\") (tests? #true)\n" @@ -18398,7 +18541,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:8963 +#: guix-git/doc/guix.texi:9024 #, no-wrap msgid "" "(define* (install #:allow-other-keys)\n" @@ -18413,7 +18556,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:8972 +#: guix-git/doc/guix.texi:9033 #, no-wrap msgid "" "(define %standard-phases\n" @@ -18435,39 +18578,39 @@ msgstr "" " (cons 'install install)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:8982 +#: guix-git/doc/guix.texi:9043 msgid "This shows how @code{%standard-phases} is defined as a list of symbol/procedure pairs (@pxref{Pairs,,, guile, GNU Guile Reference Manual}). The first pair associates the @code{unpack} procedure with the @code{unpack} symbol---a name; the second pair defines the @code{configure} phase similarly, and so on. When building a package that uses @code{gnu-build-system} with its default list of phases, those phases are executed sequentially. You can see the name of each phase started and completed in the build log of packages that you build." msgstr "Aquí se muestra como @code{%standard-phases} se define como una lista de pares símbolo/procedimiento (@pxref{Pairs,,, guile, GNU Guile Reference Manual}). El primer par asocia el procedimiento @code{unpack} con el símbolo @code{unpack}---un nombre; el segundo par define de manera similar la fase @code{configure}, etcétera. Cuando se construye un paquete que usa @code{gnu-build-system}, con su lista predeterminada de fases, estas fases se ejecutan de manera secuencial. Puede ver el nombre de cada fase a su inicio y tras su finalización en el registro de construcción de los paquetes que construya." #. type: Plain text -#: guix-git/doc/guix.texi:8988 +#: guix-git/doc/guix.texi:9049 msgid "Let's now look at the procedures themselves. Each one is defined with @code{define*}: @code{#:key} lists keyword parameters the procedure accepts, possibly with a default value, and @code{#:allow-other-keys} specifies that other keyword parameters are ignored (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual})." msgstr "Echemos un vistazo a los propios procedimientos. Cada uno se define con @code{define*}: @code{#:key} enumera parámetros con palabras clave que el procedimiento acepta, con la posibilidad de proporcionar un valor predeterminado, y @code{#:allow-other-keys} especifica que se ignora cualquier otra palabra clave en los parámetros (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual})." #. type: Plain text -#: guix-git/doc/guix.texi:9004 +#: guix-git/doc/guix.texi:9065 msgid "The @code{unpack} procedure honors the @code{source} parameter, which the build system uses to pass the file name of the source tarball (or version control checkout), and it ignores other parameters. The @code{configure} phase only cares about the @code{outputs} parameter, an alist mapping package output names to their store file name (@pxref{Packages with Multiple Outputs}). It extracts the file name of for @code{out}, the default output, and passes it to @command{./configure} as the installation prefix, meaning that @command{make install} will eventually copy all the files in that directory (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards}). @code{build} and @code{install} ignore all their arguments. @code{check} honors the @code{test-target} argument, which specifies the name of the Makefile target to run tests; it prints a message and skips tests when @code{tests?} is false." msgstr "El procedimiento @code{unpack} utiliza el valor proporcionado al parámetro @code{source}, usado por el sistema de construcción usa para proporcionar el nombre de archivo del archivador de fuentes (o la copia de trabajo del sistema de control de versiones), e ignora otros parámetros. La fase @code{configure} únicamente tiene en cuenta el parámetro @code{outputs}, una lista asociativa de nombres de salida de paquetes con su nombre de archivo en el almacén (@pxref{Packages with Multiple Outputs}). Para ello se extrae el nombre de archivo de @code{out}, la salida predeterminada, y se lo proporciona a la orden @command{./configure} como el prefijo de la instalación (@code{./configure --prefix=@var{out}}), lo que significa que @command{make install} acabará copiando todos los archivos en dicho directorio (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards}). Tanto @code{build} como @code{install} ignoran todos los parámetros. @code{check} utiliza el parámetro @code{test-target}, que especifica el nombre del objetivo del archivo Makefile que debe ejecutarse para ejecutar las pruebas; se imprime un mensaje y se omiten las pruebas cuando el parámetro @code{tests?} tiene falso como valor." #. type: cindex -#: guix-git/doc/guix.texi:9005 +#: guix-git/doc/guix.texi:9066 #, no-wrap msgid "build phases, customizing" msgstr "fases de construcción, personalización" # FUZZY FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:9014 +#: guix-git/doc/guix.texi:9075 msgid "The list of phases used for a particular package can be changed with the @code{#:phases} parameter of the build system. Changing the set of build phases boils down to building a new alist of phases based on the @code{%standard-phases} alist described above. This can be done with standard alist procedures such as @code{alist-delete} (@pxref{SRFI-1 Association Lists,,, guile, GNU Guile Reference Manual}); however, it is more convenient to do so with @code{modify-phases} (@pxref{Build Utilities, @code{modify-phases}})." msgstr "Se puede cambiar con el parámetro @code{#:phases} la lista de fases usada por el sistema de construcción para un paquete en particular. El cambio del conjunto de fases de construcción se realiza mediante la construcción de una nueva lista asociativa basada en la lista asociativa @code{%standard-phases} descrita previamente. Esto se puede llevar a cabo con procedimientos estándar para la manipulación de listas asociativas como @code{alist-delete} (@pxref{SRFI-1 Association Lists,,, guile, GNU Guile Reference Manual}); no obstante es más conveniente hacerlo con @code{modify-phases} (@pxref{Build Utilities, @code{modify-phases}})." #. type: Plain text -#: guix-git/doc/guix.texi:9019 +#: guix-git/doc/guix.texi:9080 msgid "Here is an example of a package definition that removes the @code{configure} phase of @code{%standard-phases} and inserts a new phase before the @code{build} phase, called @code{set-prefix-in-makefile}:" msgstr "Aquí se encuentra un ejemplo de una definición de paquete que borra la fase @code{configure} de @code{%standard-phases} e inserta una nueva fase antes de la fase @code{build}, llamada @code{proporciona-prefijo-en-makefile}:" #. type: lisp -#: guix-git/doc/guix.texi:9039 +#: guix-git/doc/guix.texi:9100 #, no-wrap msgid "" "(define-public example\n" @@ -18509,44 +18652,44 @@ msgstr "" " #true))))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:9045 +#: guix-git/doc/guix.texi:9106 msgid "The new phase that is inserted is written as an anonymous procedure, introduced with @code{lambda*}; it honors the @code{outputs} parameter we have seen before. @xref{Build Utilities}, for more about the helpers used by this phase, and for more examples of @code{modify-phases}." msgstr "La nueva fase insertada se escribe como un procedimiento anónimo, generado con @code{lambda*}; usa el parámetro @code{outputs} visto anteriormente. @xref{Build Utilities} para obtener más información sobre las funciones auxiliares usadas en esta fase y donde encontrará más ejemplos de uso de @code{modify-phases}." #. type: cindex -#: guix-git/doc/guix.texi:9046 guix-git/doc/guix.texi:10046 +#: guix-git/doc/guix.texi:9107 guix-git/doc/guix.texi:10360 #, no-wrap msgid "code staging" msgstr "fases de evaluación, preparación de código para otras" #. type: cindex -#: guix-git/doc/guix.texi:9047 guix-git/doc/guix.texi:10047 +#: guix-git/doc/guix.texi:9108 guix-git/doc/guix.texi:10361 #, no-wrap msgid "staging, of code" msgstr "preparación de código para otras fases de evaluación" #. type: Plain text -#: guix-git/doc/guix.texi:9054 +#: guix-git/doc/guix.texi:9115 msgid "Keep in mind that build phases are code evaluated at the time the package is actually built. This explains why the whole @code{modify-phases} expression above is quoted (it comes after the @code{'} or apostrophe): it is @dfn{staged} for later execution. @xref{G-Expressions}, for an explanation of code staging and the @dfn{code strata} involved." msgstr "Tenga en cuenta que las fases de construcción son código que se evalúa cuando se realiza la construcción real del paquete. Esto explica por qué la expresión @code{modify-phases} al completo se encuentra escapada (viene precedida de @code{'}, un apóstrofe): se ha @dfn{preparado} para una ejecución posterior. @xref{G-Expressions} para obener una explicación sobre esta preparación del código para las distintas fases de ejecución y los distintos @dfn{estratos de código} implicados." #. type: Plain text -#: guix-git/doc/guix.texi:9064 +#: guix-git/doc/guix.texi:9125 msgid "As soon as you start writing non-trivial package definitions (@pxref{Defining Packages}) or other build actions (@pxref{G-Expressions}), you will likely start looking for helpers for ``shell-like'' actions---creating directories, copying and deleting files recursively, manipulating build phases, and so on. The @code{(guix build utils)} module provides such utility procedures." msgstr "En cuanto empiece a escribir definiciones de paquete no-triviales (@pxref{Defining Packages}) u otras acciones de construcción (@pxref{G-Expressions}), es probable que empiece a buscar funciones auxiliares parecidas a las habituales en el intérprete de ordenes---creación de directorios, borrado y copia recursiva de archivos, manipulación de fases de construcción, etcétera. El módulo @code{(guix build utils)} proporciona dichos procedimientos auxiliares." #. type: Plain text -#: guix-git/doc/guix.texi:9068 +#: guix-git/doc/guix.texi:9129 msgid "Most build systems load @code{(guix build utils)} (@pxref{Build Systems}). Thus, when writing custom build phases for your package definitions, you can usually assume those procedures are in scope." msgstr "La mayoría de sistemas de construcción cargan @code{(guix build utils)} (@pxref{Build Systems}). Por tanto, cuando construya fases de construcción personalizadas para sus definiciones de paquetes, habitualmente puede asumir que dichos procedimientos ya han sido incorporados al ámbito de ejecución." #. type: Plain text -#: guix-git/doc/guix.texi:9073 +#: guix-git/doc/guix.texi:9134 msgid "When writing G-expressions, you can import @code{(guix build utils)} on the ``build side'' using @code{with-imported-modules} and then put it in scope with the @code{use-modules} form (@pxref{Using Guile Modules,,, guile, GNU Guile Reference Manual}):" msgstr "Cuando escriba G-expressions, puede importar @code{(guix build utils)} en el ``lado de la construcción'' mediante el uso @code{with-imported-modules} e importandolos al ámbito actual con la forma sintáctica @code{use-modules} (@pxref{Using Guile Modules,,, guile, GNU Guile Reference Manual}):" #. type: lisp -#: guix-git/doc/guix.texi:9080 +#: guix-git/doc/guix.texi:9141 #, no-wrap msgid "" "(with-imported-modules '((guix build utils)) ;import it\n" @@ -18564,7 +18707,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:9083 +#: guix-git/doc/guix.texi:9144 #, no-wrap msgid "" " ;; Happily use its 'mkdir-p' procedure.\n" @@ -18574,211 +18717,211 @@ msgstr "" " (mkdir-p (string-append #$output \"/a/b/c\")))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:9087 +#: guix-git/doc/guix.texi:9148 msgid "The remainder of this section is the reference for most of the utility procedures provided by @code{(guix build utils)}." msgstr "El resto de esta sección es la referencia de la mayoría de las procedimientos de utilidad proporcionados por @code{(guix build utils)}." #. type: subsection -#: guix-git/doc/guix.texi:9090 +#: guix-git/doc/guix.texi:9151 #, no-wrap msgid "Dealing with Store File Names" msgstr "Tratamiento de nombres de archivo del almacén" #. type: Plain text -#: guix-git/doc/guix.texi:9093 +#: guix-git/doc/guix.texi:9154 msgid "This section documents procedures that deal with store file names." msgstr "Esta sección documenta procedimientos para el manejo de nombres de archivo del almacén." #. type: deffn -#: guix-git/doc/guix.texi:9094 +#: guix-git/doc/guix.texi:9155 #, no-wrap msgid "{Scheme Procedure} %store-directory" msgstr "{Procedimiento Scheme} %store-directory" #. type: deffn -#: guix-git/doc/guix.texi:9096 +#: guix-git/doc/guix.texi:9157 msgid "Return the directory name of the store." msgstr "Devuelve el nombre del directorio del almacén." #. type: deffn -#: guix-git/doc/guix.texi:9098 +#: guix-git/doc/guix.texi:9159 #, no-wrap msgid "{Scheme Procedure} store-file-name? @var{file}" msgstr "{Procedimiento Scheme} store-file-name? @var{archivo}" #. type: deffn -#: guix-git/doc/guix.texi:9100 +#: guix-git/doc/guix.texi:9161 msgid "Return true if @var{file} is in the store." msgstr "Devuelve verdadero si @var{archivo} está en el almacén." #. type: deffn -#: guix-git/doc/guix.texi:9102 +#: guix-git/doc/guix.texi:9163 #, no-wrap msgid "{Scheme Procedure} strip-store-file-name @var{file}" msgstr "{Procedimiento Scheme} strip-store-file-name @var{archivo}" #. type: deffn -#: guix-git/doc/guix.texi:9105 +#: guix-git/doc/guix.texi:9166 msgid "Strip the @file{/gnu/store} and hash from @var{file}, a store file name. The result is typically a @code{\"@var{package}-@var{version}\"} string." msgstr "Elimina @file{/gnu/store} y el hash de @var{archivo}, un nombre de archivo del almacén. El resultado es habitualmente una cadena @code{\"@var{paquete}-@var{versión}\"}." #. type: deffn -#: guix-git/doc/guix.texi:9107 +#: guix-git/doc/guix.texi:9168 #, no-wrap msgid "{Scheme Procedure} package-name->name+version @var{name}" msgstr "{Procedimiento Scheme} package-name>name+version @var{nombre}" #. type: deffn -#: guix-git/doc/guix.texi:9112 +#: guix-git/doc/guix.texi:9173 msgid "Given @var{name}, a package name like @code{\"foo-0.9.1b\"}, return two values: @code{\"foo\"} and @code{\"0.9.1b\"}. When the version part is unavailable, @var{name} and @code{#f} are returned. The first hyphen followed by a digit is considered to introduce the version part." msgstr "Cuando se proporciona @var{nombre}, un nombre de paquete como @code{\"foo-0.9.1b\"}, devuelve dos valores: @code{\"foo\"} y @code{\"0.9.1b\"}. Cuando la perte de la versión no está disponible, se devuelve @var{nombre} y @code{#f}. Se considera que el primer guión seguido de un dígito introduce la parte de la versión." #. type: subsection -#: guix-git/doc/guix.texi:9114 +#: guix-git/doc/guix.texi:9175 #, no-wrap msgid "File Types" msgstr "Tipos de archivo" #. type: Plain text -#: guix-git/doc/guix.texi:9117 +#: guix-git/doc/guix.texi:9178 msgid "The procedures below deal with files and file types." msgstr "Los siguientes procedimientos tratan con archivos y tipos de archivos." #. type: deffn -#: guix-git/doc/guix.texi:9118 +#: guix-git/doc/guix.texi:9179 #, no-wrap msgid "{Scheme Procedure} directory-exists? @var{dir}" msgstr "{Procedimiento Scheme} directory-exists? @var{dir}" #. type: deffn -#: guix-git/doc/guix.texi:9120 +#: guix-git/doc/guix.texi:9181 msgid "Return @code{#t} if @var{dir} exists and is a directory." msgstr "Devuelve @code{#t} si @var{dir} existe y es un directorio." #. type: deffn -#: guix-git/doc/guix.texi:9122 +#: guix-git/doc/guix.texi:9183 #, no-wrap msgid "{Scheme Procedure} executable-file? @var{file}" msgstr "{Procedimiento Scheme} executable-file @var{archivo}" #. type: deffn -#: guix-git/doc/guix.texi:9124 +#: guix-git/doc/guix.texi:9185 msgid "Return @code{#t} if @var{file} exists and is executable." msgstr "Devuelve @code{#t} si @var{archivo} existe y es ejecutable." #. type: deffn -#: guix-git/doc/guix.texi:9126 +#: guix-git/doc/guix.texi:9187 #, no-wrap msgid "{Scheme Procedure} symbolic-link? @var{file}" msgstr "{Procedimiento Scheme} symbolic-link= @var{archivo}" #. type: deffn -#: guix-git/doc/guix.texi:9128 +#: guix-git/doc/guix.texi:9189 msgid "Return @code{#t} if @var{file} is a symbolic link (aka. a ``symlink'')." msgstr "Devuelve @code{#t} si @var{archivo} es enlace simbólico (``symlink'')." #. type: deffn -#: guix-git/doc/guix.texi:9130 +#: guix-git/doc/guix.texi:9191 #, no-wrap msgid "{Scheme Procedure} elf-file? @var{file}" msgstr "{Procedimiento Scheme} elf-file? @var{archivo}" #. type: deffnx -#: guix-git/doc/guix.texi:9131 +#: guix-git/doc/guix.texi:9192 #, no-wrap msgid "{Scheme Procedure} ar-file? @var{file}" msgstr "{Procedimiento Scheme} ar-file? @var{archivo}" #. type: deffnx -#: guix-git/doc/guix.texi:9132 +#: guix-git/doc/guix.texi:9193 #, no-wrap msgid "{Scheme Procedure} gzip-file? @var{file}" msgstr "{Procedimiento Scheme} gzip-file? @var{archivo}" #. type: deffn -#: guix-git/doc/guix.texi:9135 +#: guix-git/doc/guix.texi:9196 msgid "Return @code{#t} if @var{file} is, respectively, an ELF file, an @code{ar} archive (such as a @file{.a} static library), or a gzip file." msgstr "Devuelve @code{#t} si @var{archivo} es, respectivamente, un archivo ELF, un archivador @code{ar} (como una biblioteca estática @file{.a}), o un archivo comprimido con gzip." #. type: deffn -#: guix-git/doc/guix.texi:9137 +#: guix-git/doc/guix.texi:9198 #, no-wrap msgid "{Scheme Procedure} reset-gzip-timestamp @var{file} [#:keep-mtime? #t]" msgstr "{Procedimiento Scheme} reset-gzip-timestamp @var{archivo} [#:keep-mtime? #t]" #. type: deffn -#: guix-git/doc/guix.texi:9141 +#: guix-git/doc/guix.texi:9202 msgid "If @var{file} is a gzip file, reset its embedded timestamp (as with @command{gzip --no-name}) and return true. Otherwise return @code{#f}. When @var{keep-mtime?} is true, preserve @var{file}'s modification time." msgstr "Si @var{archivo} es un archivo gzip, reinicia su marca de tiempo embebida (como con @command{gzip --no-name}) y devuelve un valor verdadero. En otro caso devuelve @code{#f}. Cuando @var{keep-mtime?} es verdadero, se preserva el tiempo de modificación del @var{archivo}." #. type: subsection -#: guix-git/doc/guix.texi:9143 +#: guix-git/doc/guix.texi:9204 #, no-wrap msgid "File Manipulation" msgstr "Manipulación de archivos" #. type: Plain text -#: guix-git/doc/guix.texi:9150 +#: guix-git/doc/guix.texi:9211 msgid "The following procedures and macros help create, modify, and delete files. They provide functionality comparable to common shell utilities such as @command{mkdir -p}, @command{cp -r}, @command{rm -r}, and @command{sed}. They complement Guile's extensive, but low-level, file system interface (@pxref{POSIX,,, guile, GNU Guile Reference Manual})." msgstr "Los siguientes procedimientos y macros sirven de ayuda en la creación, modificación y borrado de archivos. Proporcionan funcionalidades comparables con las herrambientas comunes del intérprete de órdenes como @command{mkdir -p}, @command{cp -r}, @command{rm -r} y @command{sed}. Sirven de complemento a la interfaz de sistema de archivos de Guile, la cual es extensa pero de bajo nivel (@pxref{POSIX,,, guile, GNU Guile Reference Manual})." #. type: deffn -#: guix-git/doc/guix.texi:9151 +#: guix-git/doc/guix.texi:9212 #, no-wrap msgid "{Scheme Syntax} with-directory-excursion @var{directory} @var{body}@dots{}" msgstr "{Sintaxis Scheme} with-directory-excursion @var{directorio} @var{cuerpo}@dots{}" #. type: deffn -#: guix-git/doc/guix.texi:9153 +#: guix-git/doc/guix.texi:9214 msgid "Run @var{body} with @var{directory} as the process's current directory." msgstr "Ejecuta @var{cuerpo} con @var{directorio} como el directorio actual del proceso." #. type: deffn -#: guix-git/doc/guix.texi:9160 +#: guix-git/doc/guix.texi:9221 msgid "Essentially, this macro changes the current directory to @var{directory} before evaluating @var{body}, using @code{chdir} (@pxref{Processes,,, guile, GNU Guile Reference Manual}). It changes back to the initial directory when the dynamic extent of @var{body} is left, be it @i{via} normal procedure return or @i{via} a non-local exit such as an exception." msgstr "Esecialmente este macro cambia el directorio actual a @var{directorio} antes de evaluar @var{cuerpo}, usando @code{chdir} (@pxref{Processes,,, guile, GNU Guile Reference Manual}). Se vuelve al directorio inicial en cuanto se abandone el ámbito dinámico de @var{cuerpo}, ya sea a través de su finalización normal o de una salida no-local como pueda ser una excepción." #. type: deffn -#: guix-git/doc/guix.texi:9162 +#: guix-git/doc/guix.texi:9223 #, no-wrap msgid "{Scheme Procedure} mkdir-p @var{dir}" msgstr "{Procedimiento Scheme} mkdir-p @var{dir}" #. type: deffn -#: guix-git/doc/guix.texi:9164 +#: guix-git/doc/guix.texi:9225 msgid "Create directory @var{dir} and all its ancestors." msgstr "Crea el directorio @var{dir} y todos sus predecesores." #. type: deffn -#: guix-git/doc/guix.texi:9166 +#: guix-git/doc/guix.texi:9227 #, no-wrap msgid "{Scheme Procedure} install-file @var{file} @var{directory}" msgstr "{Procedimiento Scheme} install-file @var{archivo} @var{directorio}" #. type: deffn -#: guix-git/doc/guix.texi:9169 +#: guix-git/doc/guix.texi:9230 msgid "Create @var{directory} if it does not exist and copy @var{file} in there under the same name." msgstr "Crea @var{directorio} si no existe y copia @var{archivo} allí con el mismo nombre." #. type: deffn -#: guix-git/doc/guix.texi:9171 +#: guix-git/doc/guix.texi:9232 #, no-wrap msgid "{Scheme Procedure} make-file-writable @var{file}" msgstr "{Procedimiento Scheme} make-file-writable @var{archivo}" #. type: deffn -#: guix-git/doc/guix.texi:9173 +#: guix-git/doc/guix.texi:9234 msgid "Make @var{file} writable for its owner." msgstr "Activa el permiso de escritura en @var{archivo} para su propietaria." #. type: deffn -#: guix-git/doc/guix.texi:9175 +#: guix-git/doc/guix.texi:9236 #, no-wrap msgid "{Scheme Procedure} copy-recursively @var{source} @var{destination} @" msgstr "{Procedimiento Scheme} copy-recursively @var{fuente} @var{destino} @" #. type: deffn -#: guix-git/doc/guix.texi:9184 +#: guix-git/doc/guix.texi:9245 #, fuzzy #| msgid "[#:log (current-output-port)] [#:follow-symlinks? #f] [#:keep-mtime? #f] Copy @var{source} directory to @var{destination}. Follow symlinks if @var{follow-symlinks?} is true; otherwise, just preserve them. When @var{keep-mtime?} is true, keep the modification time of the files in @var{source} on those of @var{destination}. Write verbose output to the @var{log} port." msgid "[#:log (current-output-port)] [#:follow-symlinks? #f] @ [#:copy-file copy-file] [#:keep-mtime? #f] [#:keep-permissions? #t] Copy @var{source} directory to @var{destination}. Follow symlinks if @var{follow-symlinks?} is true; otherwise, just preserve them. Call @var{copy-file} to copy regular files. When @var{keep-mtime?} is true, keep the modification time of the files in @var{source} on those of @var{destination}. When @var{keep-permissions?} is true, preserve file permissions. Write verbose output to the @var{log} port." @@ -18788,26 +18931,26 @@ msgstr "" "Copia el directorio @var{fuente} en @var{destino}. Sigue los enlaces simbólicos si @var{follow-symlinks?} es verdadero; en otro caso se preservan. Cuando @var{keep-mtime?} es verdadero se mantiene el tiempo de modificación de los archivos en @var{fuente} en aquellos copiados a @var{destino}. Muestra información detallada en el puerto @var{log}." #. type: deffn -#: guix-git/doc/guix.texi:9186 +#: guix-git/doc/guix.texi:9247 #, no-wrap msgid "{Scheme Procedure} delete-file-recursively @var{dir} @" msgstr "{Procedimiento Scheme} delete-file-recursively @var{dir} @" #. type: deffn -#: guix-git/doc/guix.texi:9191 +#: guix-git/doc/guix.texi:9252 msgid "[#:follow-mounts? #f] Delete @var{dir} recursively, like @command{rm -rf}, without following symlinks. Don't follow mount points either, unless @var{follow-mounts?} is true. Report but ignore errors." msgstr "" "[#:follow-mounts? #f]\n" "Borra @var{dir} recursivamente, como @command{rm -rf}, sin seguir los enlaces simbólicos. No atraviesa puntos de montaje tampoco, a no ser que @var{follow-mounts?} sea verdadero. Informa de los errores, pero no devuelve error por ellos." #. type: deffn -#: guix-git/doc/guix.texi:9193 +#: guix-git/doc/guix.texi:9254 #, no-wrap msgid "{Scheme Syntax} substitute* @var{file} @" msgstr "{Sintaxis Scheme} substitute @var{archivo} @" #. type: deffn -#: guix-git/doc/guix.texi:9198 +#: guix-git/doc/guix.texi:9259 msgid "((@var{regexp} @var{match-var}@dots{}) @var{body}@dots{}) @dots{} Substitute @var{regexp} in @var{file} by the string returned by @var{body}. @var{body} is evaluated with each @var{match-var} bound to the corresponding positional regexp sub-expression. For example:" msgstr "" "((@var{expreg} @var{var-encontrada}@dots{}) @var{cuerpo}@dots{}) @dots{}\n" @@ -18815,7 +18958,7 @@ msgstr "" "Sustituye @var{expreg} en @var{archivo} con la cadena que devuelve @var{cuerpo}. La evaluación de @var{cuerpo} se realiza con cada @var{var-encontrada} asociada con la subexpresión posicional correspondiente de la expresión regular. Por ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:9205 +#: guix-git/doc/guix.texi:9266 #, fuzzy, no-wrap #| msgid "" #| "(substitute* file\n" @@ -18837,73 +18980,73 @@ msgstr "" " (string-append \"cosa\" letras fin)))\n" #. type: deffn -#: guix-git/doc/guix.texi:9211 +#: guix-git/doc/guix.texi:9272 msgid "Here, anytime a line of @var{file} contains @code{hello}, it is replaced by @code{good morning}. Anytime a line of @var{file} matches the second regexp, @code{all} is bound to the complete match, @code{letters} is bound to the first sub-expression, and @code{end} is bound to the last one." msgstr "En este ejemplo, cada ver que una línea de @var{archivo} contiene @code{hola}, esto se sustituye por @code{buenos días}. Cada vez que una línea del @var{archivo} corresponde con la segunda expresión regular, @code{todo} se asocia con la cadena encontrada al completo, @code{letras} toma el valor de la primera sub-expresión, y @code{fin} se asocia con la última." #. type: deffn -#: guix-git/doc/guix.texi:9214 +#: guix-git/doc/guix.texi:9275 msgid "When one of the @var{match-var} is @code{_}, no variable is bound to the corresponding match substring." msgstr "Cuando una de las @var{var-encontrada} es @code{_}, no se asocia ninguna variable con la correspondiente subcadena." #. type: deffn -#: guix-git/doc/guix.texi:9217 +#: guix-git/doc/guix.texi:9278 msgid "Alternatively, @var{file} may be a list of file names, in which case they are all subject to the substitutions." msgstr "También puede proporcionarse una lista como @var{archivo}, en cuyo caso los nombres de archivo que contenga serán los que se sometan a las sustituciones." #. type: deffn -#: guix-git/doc/guix.texi:9220 +#: guix-git/doc/guix.texi:9281 msgid "Be careful about using @code{$} to match the end of a line; by itself it won't match the terminating newline of a line." msgstr "Tenga cuidado con el uso de @code{$} para marcar el final de una línea; la cadena encontrada no contiene el caracter de salto de línea al final." #. type: subsection -#: guix-git/doc/guix.texi:9222 +#: guix-git/doc/guix.texi:9283 #, no-wrap msgid "File Search" msgstr "Búsqueda de archivos" #. type: cindex -#: guix-git/doc/guix.texi:9224 +#: guix-git/doc/guix.texi:9285 #, no-wrap msgid "file, searching" msgstr "archivo, buscar" #. type: Plain text -#: guix-git/doc/guix.texi:9226 +#: guix-git/doc/guix.texi:9287 msgid "This section documents procedures to search and filter files." msgstr "Esta sección documenta procedimientos de búsqueda y filtrado de archivos." #. type: deffn -#: guix-git/doc/guix.texi:9227 +#: guix-git/doc/guix.texi:9288 #, no-wrap msgid "{Scheme Procedure} file-name-predicate @var{regexp}" msgstr "{Procedimiento Scheme} file-name-predicate @var{expreg}" #. type: deffn -#: guix-git/doc/guix.texi:9230 +#: guix-git/doc/guix.texi:9291 msgid "Return a predicate that returns true when passed a file name whose base name matches @var{regexp}." msgstr "Devuelve un predicado que devuelve un valor verdadero cuando el nombre del archivo proporcionado sin la parte del directorio corresponde con @var{expreg}." #. type: deffn -#: guix-git/doc/guix.texi:9232 +#: guix-git/doc/guix.texi:9293 #, no-wrap msgid "{Scheme Procedure} find-files @var{dir} [@var{pred}] @" msgstr "{Procedimiento Scheme} find-files @var{dir} [@var{pred}] @" #. type: deffn -#: guix-git/doc/guix.texi:9243 +#: guix-git/doc/guix.texi:9304 msgid "[#:stat lstat] [#:directories? #f] [#:fail-on-error? #f] Return the lexicographically sorted list of files under @var{dir} for which @var{pred} returns true. @var{pred} is passed two arguments: the absolute file name, and its stat buffer; the default predicate always returns true. @var{pred} can also be a regular expression, in which case it is equivalent to @code{(file-name-predicate @var{pred})}. @var{stat} is used to obtain file information; using @code{lstat} means that symlinks are not followed. If @var{directories?} is true, then directories will also be included. If @var{fail-on-error?} is true, raise an exception upon error." msgstr "" "[#:stat lstat] [#:directories? #f] [#:fail-on-error? #f]\n" "Devuelve una lista ordenada lexicográficamente de los archivos que se encuentran en @var{dir} para los cuales @var{pred} devuelve verdadero. Se le proporcionan dos parámetros a @var{pred}: la ruta absoluta del archivo y su búfer de stat; el predicado predeteminado siempre devuelve verdadero. @var{pred} también puede ser una expresión regular, en cuyo caso es equivalente a escribir @code{(file-name-predicate @var{pred})}. @var{stat} se usa para obtener información del archivo; el uso de @code{lstat} significa que no se siguen los enlaces simbólicos. Si @var{directories?} es verdadero se incluyen también los directorios. Si @var{fail-on-error?} es verdadero, se emite una excepción en caso de error." #. type: Plain text -#: guix-git/doc/guix.texi:9247 +#: guix-git/doc/guix.texi:9308 msgid "Here are a few examples where we assume that the current directory is the root of the Guix source tree:" msgstr "Aquí se pueden encontrar algunos ejemplos en los que se asume que el directorio actual es la raíz del arbol de fuentes de Guix:" #. type: lisp -#: guix-git/doc/guix.texi:9252 +#: guix-git/doc/guix.texi:9313 #, no-wrap msgid "" ";; List all the regular files in the current directory.\n" @@ -18917,7 +19060,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:9256 +#: guix-git/doc/guix.texi:9317 #, no-wrap msgid "" ";; List all the .scm files under gnu/services.\n" @@ -18931,7 +19074,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:9260 +#: guix-git/doc/guix.texi:9321 #, no-wrap msgid "" ";; List ar files in the current directory.\n" @@ -18943,47 +19086,47 @@ msgstr "" "@result{} (\"./libformat.a\" \"./libstore.a\" @dots{})\n" #. type: deffn -#: guix-git/doc/guix.texi:9262 +#: guix-git/doc/guix.texi:9323 #, no-wrap msgid "{Scheme Procedure} which @var{program}" msgstr "{Procedimiento Scheme} which @var{programa}" #. type: deffn -#: guix-git/doc/guix.texi:9265 +#: guix-git/doc/guix.texi:9326 msgid "Return the complete file name for @var{program} as found in @code{$PATH}, or @code{#f} if @var{program} could not be found." msgstr "Devuelve el nombre de archivo completo para @var{programa} tal y como se encuentra en @code{$PATH}, o @code{#f} si no se ha encontrado @var{programa}." #. type: deffn -#: guix-git/doc/guix.texi:9267 +#: guix-git/doc/guix.texi:9328 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} plain-file @var{name} @var{content}" msgid "{Scheme Procedure} search-input-file @var{inputs} @var{name}" msgstr "{Procedimiento Scheme} plain-file @var{nombre} @var{contenido}" #. type: deffnx -#: guix-git/doc/guix.texi:9268 +#: guix-git/doc/guix.texi:9329 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} directory-union @var{name} @var{things}" msgid "{Scheme Procedure} search-input-directory @var{inputs} @var{name}" msgstr "{Procedimiento Scheme} directory-union @var{nombre} @var{cosas}" #. type: deffn -#: guix-git/doc/guix.texi:9273 +#: guix-git/doc/guix.texi:9334 msgid "Return the complete file name for @var{name} as found in @var{inputs}; @code{search-input-file} searches for a regular file and @code{search-input-directory} searches for a directory. If @var{name} could not be found, an exception is raised." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9277 +#: guix-git/doc/guix.texi:9338 msgid "Here, @var{inputs} must be an association list like @code{inputs} and @code{native-inputs} as available to build phases (@pxref{Build Phases})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9281 +#: guix-git/doc/guix.texi:9342 msgid "Here is a (simplified) example of how @code{search-input-file} is used in a build phase of the @code{wireguard-tools} package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9290 +#: guix-git/doc/guix.texi:9351 #, no-wrap msgid "" "(add-after 'install 'wrap-wg-quick\n" @@ -18995,35 +19138,249 @@ msgid "" " `(\"PATH\" \":\" prefix ,(list coreutils))))))\n" msgstr "" +# TODO: (MAAV) Comprobar otras traducciones. +#. type: subsection +#: guix-git/doc/guix.texi:9353 +#, fuzzy, no-wrap +#| msgid "Log Rotation" +msgid "Program Invocation" +msgstr "Rotación del registro de mensajes" + +#. type: cindex +#: guix-git/doc/guix.texi:9355 +#, no-wrap +msgid "program invocation, from Scheme" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:9356 +#, no-wrap +msgid "invoking programs, from Scheme" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9360 +msgid "You'll find handy procedures to spawn processes in this module, essentially convenient wrappers around Guile's @code{system*} (@pxref{Processes, @code{system*},, guile, GNU Guile Reference Manual})." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9361 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} guix-os @var{variants}@dots{}" +msgid "{Scheme Procedure} invoke @var{program} @var{args}@dots{}" +msgstr "{Procedimiento Scheme} guix-os @var{variantes}@dots{}" + +#. type: deffn +#: guix-git/doc/guix.texi:9365 +msgid "Invoke @var{program} with the given @var{args}. Raise an @code{&invoke-error} exception if the exit code is non-zero; otherwise return @code{#t}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9369 +msgid "The advantage compared to @code{system*} is that you do not need to check the return value. This reduces boilerplate in shell-script-like snippets for instance in package build phases." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9371 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} inferior-package? @var{obj}" +msgid "{Scheme Procedure} invoke-error? @var{c}" +msgstr "{Procedimiento Scheme} inferior-package? @var{obj}" + +#. type: deffn +#: guix-git/doc/guix.texi:9373 +#, fuzzy +#| msgid "Return true if @var{obj} is an inferior package." +msgid "Return true if @var{c} is an @code{&invoke-error} condition." +msgstr "Devuelve verdadero si @var{obj} es un paquete inferior." + +#. type: deffn +#: guix-git/doc/guix.texi:9375 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} inferior-package? @var{obj}" +msgid "{Scheme Procedure} invoke-error-program @var{c}" +msgstr "{Procedimiento Scheme} inferior-package? @var{obj}" + +#. type: deffnx +#: guix-git/doc/guix.texi:9376 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} inferior-package-inputs @var{package}" +msgid "{Scheme Procedure} invoke-error-arguments @var{c}" +msgstr "{Procedimiento Scheme} inferior-package-inputs @var{paquete}" + +#. type: deffnx +#: guix-git/doc/guix.texi:9377 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} directory-exists? @var{dir}" +msgid "{Scheme Procedure} invoke-error-exit-status @var{c}" +msgstr "{Procedimiento Scheme} directory-exists? @var{dir}" + +#. type: deffnx +#: guix-git/doc/guix.texi:9378 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} inferior-package-name @var{package}" +msgid "{Scheme Procedure} invoke-error-term-signal @var{c}" +msgstr "{Procedimiento Scheme} inferior-package-name @var{paquete}" + +#. type: deffnx +#: guix-git/doc/guix.texi:9379 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} inferior-package-name @var{package}" +msgid "{Scheme Procedure} invoke-error-stop-signal @var{c}" +msgstr "{Procedimiento Scheme} inferior-package-name @var{paquete}" + +#. type: deffn +#: guix-git/doc/guix.texi:9381 +msgid "Access specific fields of @var{c}, an @code{&invoke-error} condition." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9383 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} screen-locker-service @var{package} [@var{program}]" +msgid "{Scheme Procedure} report-invoke-error @var{c} [@var{port}]" +msgstr "{Procedimiento Scheme} screen-locker-service @var{paquete} [@var{programa}]" + +#. type: deffn +#: guix-git/doc/guix.texi:9386 +msgid "Report to @var{port} (by default the current error port) about @var{c}, an @code{&invoke-error} condition, in a human-friendly way." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9388 +#, fuzzy +#| msgid "... would look like this:" +msgid "Typical usage would look like this:" +msgstr "... sería algo parecido a esto:" + +#. type: lisp +#: guix-git/doc/guix.texi:9392 +#, fuzzy, no-wrap +#| msgid "" +#| "(use-modules (guix utils)\n" +#| " (guix store)\n" +#| " (guix derivations))\n" +#| "\n" +msgid "" +"(use-modules (srfi srfi-34) ;for 'guard'\n" +" (guix build utils))\n" +"\n" +msgstr "" +"(use-modules (guix utils)\n" +" (guix store)\n" +" (guix derivations))\n" +"\n" + +#. type: lisp +#: guix-git/doc/guix.texi:9396 +#, no-wrap +msgid "" +"(guard (c ((invoke-error? c)\n" +" (report-invoke-error c)))\n" +" (invoke \"date\" \"--imaginary-option\"))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9398 +#, no-wrap +msgid "@print{} command \"date\" \"--imaginary-option\" failed with status 1\n" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9401 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} file-append @var{obj} @var{suffix} @dots{}" +msgid "{Scheme Procedure} invoke/quiet @var{program} @var{args}@dots{}" +msgstr "{Procedimientos Scheme} file-append @var{obj} @var{sufijo} @dots{}" + +#. type: deffn +#: guix-git/doc/guix.texi:9407 +msgid "Invoke @var{program} with @var{args} and capture @var{program}'s standard output and standard error. If @var{program} succeeds, print nothing and return the unspecified value; otherwise, raise a @code{&message} error condition that includes the status code and the output of @var{program}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9409 +#, fuzzy +#| msgid "Here's an example use:" +msgid "Here's an example:" +msgstr "Este es un ejemplo de su uso:" + +#. type: lisp +#: guix-git/doc/guix.texi:9414 +#, fuzzy, no-wrap +#| msgid "" +#| "(use-modules (guix utils)\n" +#| " (guix store)\n" +#| " (guix derivations))\n" +#| "\n" +msgid "" +"(use-modules (srfi srfi-34) ;for 'guard'\n" +" (srfi srfi-35) ;for 'message-condition?'\n" +" (guix build utils))\n" +"\n" +msgstr "" +"(use-modules (guix utils)\n" +" (guix store)\n" +" (guix derivations))\n" +"\n" + +#. type: lisp +#: guix-git/doc/guix.texi:9419 +#, no-wrap +msgid "" +"(guard (c ((message-condition? c)\n" +" (display (condition-message c))))\n" +" (invoke/quiet \"date\") ;all is fine\n" +" (invoke/quiet \"date\" \"--imaginary-option\"))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9421 +#, no-wrap +msgid "" +"@print{} 'date --imaginary-option' exited with status 1; output follows:\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9424 +#, no-wrap +msgid "" +" date: unrecognized option '--imaginary-option'\n" +" Try 'date --help' for more information.\n" +msgstr "" + #. type: Plain text -#: guix-git/doc/guix.texi:9301 +#: guix-git/doc/guix.texi:9436 msgid "The @code{(guix build utils)} also contains tools to manipulate build phases as used by build systems (@pxref{Build Systems}). Build phases are represented as association lists or ``alists'' (@pxref{Association Lists,,, guile, GNU Guile Reference Manual}) where each key is a symbol naming the phase and the associated value is a procedure (@pxref{Build Phases})." msgstr "@code{(guix build utils)} también contiene herramientas para la manipulación de las fases de construcción usadas por los sistemas de construcción (@pxref{Build Systems}). Las fases de construcción se representan como listas asociativas o ``alists'' (@pxref{Association Lists,,, guile, GNU Guile Reference Manual}) donde cada clave es un símbolo que nombra a la fase, y el valor asociado es un procedimiento (@pxref{Build Phases})." #. type: Plain text -#: guix-git/doc/guix.texi:9305 +#: guix-git/doc/guix.texi:9440 msgid "Guile core and the @code{(srfi srfi-1)} module both provide tools to manipulate alists. The @code{(guix build utils)} module complements those with tools written with build phases in mind." msgstr "Tanto el propio Guile como el módulo @code{(srfi srfi-1)} proporcionan herramientas para la manipulación de listas asociativas. El módulo @code{(guix build utils)} complementa estas con herramientas pensadas para las fases de construcción." #. type: cindex -#: guix-git/doc/guix.texi:9306 +#: guix-git/doc/guix.texi:9441 #, no-wrap msgid "build phases, modifying" msgstr "fases de construcción, modificación" #. type: deffn -#: guix-git/doc/guix.texi:9307 +#: guix-git/doc/guix.texi:9442 #, no-wrap msgid "{Scheme Syntax} modify-phases @var{phases} @var{clause}@dots{}" msgstr "{Sintaxis Scheme} modify-phases @var{fases} @var{cláusula}@dots{}" #. type: deffn -#: guix-git/doc/guix.texi:9310 +#: guix-git/doc/guix.texi:9445 msgid "Modify @var{phases} sequentially as per each @var{clause}, which may have one of the following forms:" msgstr "Modifica @var{fases} de manera secuencial com cada indique cada @var{cláusula}, que puede tener una de las siguentes formas:" #. type: lisp -#: guix-git/doc/guix.texi:9316 +#: guix-git/doc/guix.texi:9451 #, no-wrap msgid "" "(delete @var{old-phase-name})\n" @@ -19037,17 +19394,17 @@ msgstr "" "(add-after @var{nombre-fase} @var{nombre-nueva-fase} @var{nueva-fase})\n" #. type: deffn -#: guix-git/doc/guix.texi:9320 +#: guix-git/doc/guix.texi:9455 msgid "Where every @var{phase-name} above is an expression evaluating to a symbol, and @var{new-phase} an expression evaluating to a procedure." msgstr "Donde cada @var{nombre-fase} y @var{nombre-nueva-fase} es una expresión que evalúa aun símbolo, y @var{nueva-fase} es una expresión que evalúa a un procedimiento." #. type: Plain text -#: guix-git/doc/guix.texi:9331 +#: guix-git/doc/guix.texi:9466 msgid "The example below is taken from the definition of the @code{grep} package. It adds a phase to run after the @code{install} phase, called @code{fix-egrep-and-fgrep}. That phase is a procedure (@code{lambda*} is for anonymous procedures) that takes a @code{#:outputs} keyword argument and ignores extra keyword arguments (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual}, for more on @code{lambda*} and optional and keyword arguments.) The phase uses @code{substitute*} to modify the installed @file{egrep} and @file{fgrep} scripts so that they refer to @code{grep} by its absolute file name:" msgstr "El siguiente ejemplo se ha tomado de la definición del paquete @code{grep}. Añade una fase que se ejecuta tras la fase @code{install}, llamada @code{fix-egrep-and-fgrep}. Dicha fase es un procedimiento (@code{lambda*} genera procedimientos anónimos) que toma un parámetro de palabra clave @code{#:outputs} e ignora el resto (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual} para obtener más información sobre @code{lambda*} y los parámetros opcionales y de palabras clave). La fase usa @code{substitute*} para modificar los guiones @file{egrep} y @file{fgrep} instalados para que hagan referencia a @code{grep} con su ruta de archivo absoluta:" #. type: lisp -#: guix-git/doc/guix.texi:9345 +#: guix-git/doc/guix.texi:9480 #, no-wrap msgid "" "(modify-phases %standard-phases\n" @@ -19078,12 +19435,12 @@ msgstr "" " #t))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:9352 +#: guix-git/doc/guix.texi:9487 msgid "In the example below, phases are modified in two ways: the standard @code{configure} phase is deleted, presumably because the package does not have a @file{configure} script or anything similar, and the default @code{install} phase is replaced by one that manually copies the executable files to be installed:" msgstr "En el siguiente ejemplo se modifican las fases de dos maneras: se elimina la fase estándar @code{configure}, posiblemente porque el paquete no tiene un guión @file{configure} ni nada similar, y la fase @code{install} predeterminada se sustituye por una que copia manualmente el archivo ejecutable que se debe instalar:" #. type: lisp -#: guix-git/doc/guix.texi:9365 +#: guix-git/doc/guix.texi:9500 #, no-wrap msgid "" "(modify-phases %standard-phases\n" @@ -19112,233 +19469,475 @@ msgstr "" " #t))))\n" #. type: cindex -#: guix-git/doc/guix.texi:9373 +#: guix-git/doc/guix.texi:9507 +#, fuzzy, no-wrap +#| msgid "search paths" +msgid "search path" +msgstr "rutas de búsqueda" + +#. type: Plain text +#: guix-git/doc/guix.texi:9514 +msgid "Many programs and libraries look for input data in a @dfn{search path}, a list of directories: shells like Bash look for executables in the command search path, a C compiler looks for @file{.h} files in its header search path, the Python interpreter looks for @file{.py} files in its search path, the spell checker has a search path for dictionaries, and so on." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9522 +msgid "Search paths can usually be defined or overridden @i{via} environment variables (@pxref{Environment Variables,,, libc, The GNU C Library Reference Manual}). For example, the search paths mentioned above can be changed by defining the @env{PATH}, @env{C_INCLUDE_PATH}, @env{PYTHONPATH} (or @env{GUIX_PYTHONPATH}), and @env{DICPATH} environment variables---you know, all these something-PATH variables that you need to get right or things ``won't be found''." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9532 +msgid "You may have noticed from the command line that Guix ``knows'' which search path environment variables should be defined, and how. When you install packages in your default profile, the file @file{~/.guix-profile/etc/profile} is created, which you can ``source'' from the shell to set those variables. Likewise, if you ask @command{guix shell} to create an environment containing Python and NumPy, a Python library, and if you pass it the @option{--search-paths} option, it will tell you about @env{PATH} and @env{GUIX_PYTHONPATH} (@pxref{Invoking guix shell}):" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9537 +#, no-wrap +msgid "" +"$ guix shell python python-numpy --pure --search-paths\n" +"export PATH=\"/gnu/store/@dots{}-profile/bin\"\n" +"export GUIX_PYTHONPATH=\"/gnu/store/@dots{}-profile/lib/python3.9/site-packages\"\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9541 +msgid "When you omit @option{--search-paths}, it defines these environment variables right away, such that Python can readily find NumPy:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9550 +#, no-wrap +msgid "" +"$ guix shell python python-numpy -- python3\n" +"Python 3.9.6 (default, Jan 1 1970, 00:00:01)\n" +"[GCC 10.3.0] on linux\n" +"Type \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n" +">>> import numpy\n" +">>> numpy.version.version\n" +"'1.20.3'\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9555 +msgid "For this to work, the definition of the @code{python} package @emph{declares} the search path it cares about and its associated environment variable, @env{GUIX_PYTHONPATH}. It looks like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9565 +#, no-wrap +msgid "" +"(package\n" +" (name \"python\")\n" +" (version \"3.9.9\")\n" +" ;; some fields omitted...\n" +" (native-search-paths\n" +" (list (search-path-specification\n" +" (variable \"GUIX_PYTHONPATH\")\n" +" (files (list \"lib/python/3.9/site-packages\"))))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9580 +msgid "What this @code{native-search-paths} field says is that, when the @code{python} package is used, the @env{GUIX_PYTHONPATH} environment variable must be defined to include all the @file{lib/python/3.9/site-packages} sub-directories encountered in its environment. (The @code{native-} bit means that, if we are in a cross-compilation environment, only native inputs may be added to the search path; @pxref{package Reference, @code{search-paths}}.) In the NumPy example above, the profile where @code{python} appears contains exactly one such sub-directory, and @env{GUIX_PYTHONPATH} is set to that. When there are several @file{lib/python/3.9/site-packages}---this is the case in package build environments---they are all added to @env{GUIX_PYTHONPATH}, separated by colons (@code{:})." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9587 +msgid "Notice that @env{GUIX_PYTHONPATH} is specified as part of the definition of the @code{python} package, and @emph{not} as part of that of @code{python-numpy}. This is because this environment variable ``belongs'' to Python, not NumPy: Python actually reads the value of that variable and honors it." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9591 +msgid "Corollary: if you create a profile that does not contain @code{python}, @code{GUIX_PYTHONPATH} will @emph{not} be defined, even if it contains packages that provide @file{.py} files:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9595 +#, no-wrap +msgid "" +"$ guix shell python-numpy --search-paths --pure\n" +"export PATH=\"/gnu/store/@dots{}-profile/bin\"\n" +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9599 +msgid "This makes a lot of sense if we look at this profile in isolation: no software in this profile would read @env{GUIX_PYTHONPATH}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9609 +msgid "Of course, there are many variations on that theme: some packages honor more than one search path, some use separators other than colon, some accumulate several directories in their search path, and so on. A more complex example is the search path of libxml2: the value of the @env{XML_CATALOG_FILES} environment variable is space-separated, it must contain a list of @file{catalog.xml} files (not directories), which are to be found in @file{xml} sub-directories---nothing less. The search path specification looks like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9621 +#, no-wrap +msgid "" +"(package\n" +" (name \"libxml2\")\n" +" ;; some fields omitted\n" +" (native-search-paths\n" +" (list (search-path-specification\n" +" (variable \"XML_CATALOG_FILES\")\n" +" (separator \" \")\n" +" (files '(\"xml\"))\n" +" (file-pattern \"^catalog\\\\.xml$\")\n" +" (file-type 'regular)))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9624 +msgid "Worry not, search path specifications are usually not this tricky." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9628 +msgid "The @code{(guix search-paths)} module defines the data type of search path specifications and a number of helper procedures. Below is the reference of search path specifications." +msgstr "" + +#. type: deftp +#: guix-git/doc/guix.texi:9629 +#, fuzzy, no-wrap +#| msgid "{Data Type} avahi-configuration" +msgid "{Data Type} search-path-specification" +msgstr "{Tipo de datos} avahi-configuration" + +#. type: deftp +#: guix-git/doc/guix.texi:9631 +#, fuzzy +#| msgid "This is the data type for the NTP service configuration." +msgid "The data type for search path specifications." +msgstr "Este es el tipo de datos para la configuración del servicio NTP." + +#. type: code{#1} +#: guix-git/doc/guix.texi:9633 +#, fuzzy, no-wrap +#| msgid "iptables" +msgid "variable" +msgstr "iptables" + +# FUZZY +#. type: table +#: guix-git/doc/guix.texi:9635 +#, fuzzy +#| msgid "Passes the specified environment variable(s) to child processes; a list of strings." +msgid "The name of the environment variable for this search path (a string)." +msgstr "Proporciona la o las variables de entorno especificadas a los procesos iniciados; una lista de cadenas." + +#. type: code{#1} +#: guix-git/doc/guix.texi:9636 guix-git/doc/guix.texi:17482 +#, no-wrap +msgid "files" +msgstr "files" + +#. type: table +#: guix-git/doc/guix.texi:9639 +#, fuzzy +#| msgid "A list of command-line flags that should be passed to the @code{patch} command." +msgid "The list of sub-directories (strings) that should be added to the search path." +msgstr "Una lista de opciones de línea de órdenes que deberían ser pasadas a la orden @code{patch}." + +#. type: item +#: guix-git/doc/guix.texi:9640 +#, fuzzy, no-wrap +#| msgid "@code{secret} (default: @code{\"\"})" +msgid "@code{separator} (default: @code{\":\"})" +msgstr "@code{secret} (predeterminado: @code{\"\"})" + +#. type: table +#: guix-git/doc/guix.texi:9642 +msgid "The string used to separate search path components." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9650 +msgid "As a special case, a @code{separator} value of @code{#f} specifies a ``single-component search path''---in other words, a search path that cannot contain more than one element. This is useful in some cases, such as the @code{SSL_CERT_DIR} variable (honored by OpenSSL, cURL, and a few other packages) or the @code{ASPELL_DICT_DIR} variable (honored by the GNU Aspell spell checker), both of which must point to a single directory." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9651 +#, fuzzy, no-wrap +#| msgid "@code{type} (default: @code{'server})" +msgid "@code{file-type} (default: @code{'directory})" +msgstr "@code{type} (predeterminado: @code{'server})" + +#. type: table +#: guix-git/doc/guix.texi:9655 +msgid "The type of file being matched---@code{'directory} or @code{'regular}, though it can be any symbol returned by @code{stat:type} (@pxref{File System, @code{stat},, guile, GNU Guile Reference Manual})." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9658 +msgid "In the libxml2 example above, we would match regular files; in the Python example, we would match directories." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9659 +#, fuzzy, no-wrap +#| msgid "@code{user-path} (default: @code{#f})" +msgid "@code{file-pattern} (default: @code{#f})" +msgstr "@code{user-path} (predeterminado: @code{#f})" + +#. type: table +#: guix-git/doc/guix.texi:9663 +msgid "This must be either @code{#f} or a regular expression specifying files to be matched @emph{within} the sub-directories specified by the @code{files} field." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9665 +msgid "Again, the libxml2 example shows a situation where this is needed." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9671 +msgid "How do you turn search path specifications on one hand and a bunch of directories on the other hand in a set of environment variable definitions? That's the job of @code{evaluate-search-paths}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9672 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} inferior-package-search-paths @var{package}" +msgid "{Scheme Procedure} evaluate-search-paths @var{search-paths} @" +msgstr "{Procedimiento Scheme} inferior-package-search-paths @var{paquete}" + +#. type: deffn +#: guix-git/doc/guix.texi:9678 +msgid "@var{directories} [@var{getenv}] Evaluate @var{search-paths}, a list of search-path specifications, for @var{directories}, a list of directory names, and return a list of specification/value pairs. Use @var{getenv} to determine the current settings and report only settings not already effective." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9682 +msgid "The @code{(guix profiles)} provides a higher-level helper procedure, @code{load-profile}, that sets the environment variables of a profile." +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:9687 #, no-wrap msgid "store items" msgstr "elementos del almacén" #. type: cindex -#: guix-git/doc/guix.texi:9374 +#: guix-git/doc/guix.texi:9688 #, no-wrap msgid "store paths" msgstr "rutas del almacén" #. type: Plain text -#: guix-git/doc/guix.texi:9385 +#: guix-git/doc/guix.texi:9699 msgid "Conceptually, the @dfn{store} is the place where derivations that have been built successfully are stored---by default, @file{/gnu/store}. Sub-directories in the store are referred to as @dfn{store items} or sometimes @dfn{store paths}. The store has an associated database that contains information such as the store paths referred to by each store path, and the list of @emph{valid} store items---results of successful builds. This database resides in @file{@var{localstatedir}/guix/db}, where @var{localstatedir} is the state directory specified @i{via} @option{--localstatedir} at configure time, usually @file{/var}." msgstr "Conceptualmente, el @dfn{almacén} es el lugar donde se almacenan las derivaciones cuya construcción fue satisfactoria---por defecto, @file{/gnu/store}. Los subdirectorios en el almacén se denominan @dfn{elementos del almacén} o @dfn{rutas del almacén} en ocasiones. El almacén tiene una base de datos asociada que contiene información como las rutas del almacén a las que referencia cada ruta del almacén, y la lista de elementos @emph{válidos} del almacén---los resultados de las construcciones satisfactorias. Esta base de datos reside en @file{@var{localstatedir}/guix/db}, donde @var{localstatedir} es el directorio de estado especificado @i{vía} @option{--localstatedir} en tiempo de configuración, normalmente @file{/var}." #. type: Plain text -#: guix-git/doc/guix.texi:9390 +#: guix-git/doc/guix.texi:9704 msgid "The store is @emph{always} accessed by the daemon on behalf of its clients (@pxref{Invoking guix-daemon}). To manipulate the store, clients connect to the daemon over a Unix-domain socket, send requests to it, and read the result---these are remote procedure calls, or RPCs." msgstr "El almacén @emph{siempre} es accedido a través del daemon en delegación de sus clientes (@pxref{Invoking guix-daemon}). Para manipular el almacén, los clientes se conectan al daemon por un socket de dominio Unix, le envían peticiones y leen el resultado---esto son llamadas a procedimientos remotos, o RPC." #. type: quotation -#: guix-git/doc/guix.texi:9395 +#: guix-git/doc/guix.texi:9709 msgid "Users must @emph{never} modify files under @file{/gnu/store} directly. This would lead to inconsistencies and break the immutability assumptions of Guix's functional model (@pxref{Introduction})." msgstr "Las usuarias @emph{nunca} deben modificar archivos directamente bajo el directorio @file{/gnu/store}. Esto llevaría a inconsistencias y rompería las premisas de inmutabilidad del modelo funcional de Guix (@pxref{Introduction})." #. type: quotation -#: guix-git/doc/guix.texi:9399 +#: guix-git/doc/guix.texi:9713 msgid "@xref{Invoking guix gc, @command{guix gc --verify}}, for information on how to check the integrity of the store and attempt recovery from accidental modifications." msgstr "@xref{Invoking guix gc, @command{guix gc --verify}}, para información sobre cómo comprobar la integridad del almacén e intentar recuperarse de modificaciones accidentales." #. type: Plain text -#: guix-git/doc/guix.texi:9406 +#: guix-git/doc/guix.texi:9720 msgid "The @code{(guix store)} module provides procedures to connect to the daemon, and to perform RPCs. These are described below. By default, @code{open-connection}, and thus all the @command{guix} commands, connect to the local daemon or to the URI specified by the @env{GUIX_DAEMON_SOCKET} environment variable." msgstr "El módulo @code{(guix store)} proporciona procedimientos para conectarse al daemon y realizar RPCs. Estos se describen más adelante. Por defecto, @code{open-connection}, y por tanto todas las órdenes @command{guix}, se conectan al daemon local o a la URI especificada en la variable de entorno @env{GUIX_DAEMON_SOCKET}." #. type: defvr -#: guix-git/doc/guix.texi:9407 +#: guix-git/doc/guix.texi:9721 #, no-wrap msgid "{Environment Variable} GUIX_DAEMON_SOCKET" msgstr "{Variable de entorno} GUIX_DAEMON_SOCKET" #. type: defvr -#: guix-git/doc/guix.texi:9412 +#: guix-git/doc/guix.texi:9726 msgid "When set, the value of this variable should be a file name or a URI designating the daemon endpoint. When it is a file name, it denotes a Unix-domain socket to connect to. In addition to file names, the supported URI schemes are:" msgstr "Cuando se ha definido, el valor de esta variable debe ser un nombre de archivo o una URI designando el punto de conexión del daemon. Cuando es un nombre de archivo, denota un socket de dominio Unix al que conectarse. Además de nombres de archivos, los esquemas de URI aceptados son:" #. type: code{#1} -#: guix-git/doc/guix.texi:9414 guix-git/doc/guix.texi:26183 +#: guix-git/doc/guix.texi:9728 guix-git/doc/guix.texi:26520 #, no-wrap msgid "file" msgstr "file" #. type: itemx -#: guix-git/doc/guix.texi:9415 +#: guix-git/doc/guix.texi:9729 #, no-wrap msgid "unix" msgstr "unix" #. type: table -#: guix-git/doc/guix.texi:9419 +#: guix-git/doc/guix.texi:9733 msgid "These are for Unix-domain sockets. @code{file:///var/guix/daemon-socket/socket} is equivalent to @file{/var/guix/daemon-socket/socket}." msgstr "Estos son equivalentes a los sockets de dominio Unix. @code{file:///var/guix/daemon-socket/socket} es equivalente a @file{/var/guix/daemon-socket/socket}." #. type: table -#: guix-git/doc/guix.texi:9428 +#: guix-git/doc/guix.texi:9742 msgid "These URIs denote connections over TCP/IP, without encryption nor authentication of the remote host. The URI must specify the host name and optionally a port number (by default port 44146 is used):" msgstr "Estas URI denotan conexiones sobre TCP/IP, sin cifrado ni verificación de la máquina remota. La URI debe especificar el nombre de máquina y opcionalmente un número de puerto (por defecto se usa el puerto 44146):" #. type: example -#: guix-git/doc/guix.texi:9431 +#: guix-git/doc/guix.texi:9745 #, no-wrap msgid "guix://master.guix.example.org:1234\n" msgstr "guix://principal.guix.example.org:1234\n" #. type: table -#: guix-git/doc/guix.texi:9436 +#: guix-git/doc/guix.texi:9750 msgid "This setup is suitable on local networks, such as clusters, where only trusted nodes may connect to the build daemon at @code{master.guix.example.org}." msgstr "Esta configuración es apropiada para redes locales, como clusters, donde únicamente los nodos de confianza pueden conectarse al daemon de construcción en @code{principal.guix.example.org}." #. type: table -#: guix-git/doc/guix.texi:9440 +#: guix-git/doc/guix.texi:9754 msgid "The @option{--listen} option of @command{guix-daemon} can be used to instruct it to listen for TCP connections (@pxref{Invoking guix-daemon, @option{--listen}})." msgstr "La opción @option{--listen} de @command{guix-daemon} puede usarse para indicarle que escuche conexiones TCP (@pxref{Invoking guix-daemon, @option{--listen}})." #. type: item -#: guix-git/doc/guix.texi:9441 +#: guix-git/doc/guix.texi:9755 #, no-wrap msgid "ssh" msgstr "ssh" #. type: cindex -#: guix-git/doc/guix.texi:9442 +#: guix-git/doc/guix.texi:9756 #, no-wrap msgid "SSH access to build daemons" msgstr "acceso SSH a los daemons de construcción" #. type: table -#: guix-git/doc/guix.texi:9448 +#: guix-git/doc/guix.texi:9762 #, fuzzy msgid "These URIs allow you to connect to a remote daemon over SSH@. This feature requires Guile-SSH (@pxref{Requirements}) and a working @command{guile} binary in @env{PATH} on the destination machine. It supports public key and GSSAPI authentication. A typical URL might look like this:" msgstr "Estas URI le permiten conectarse a un daemon remoto sobre SSH. Esta característica necesita Guile-SSH (@pxref{Requirements}) y un binario @code{guile} funcional en @env{PATH} de la máquina destino. Permite la identificación mediante clave pública y GSSSAPI. Una URL típica podría ser así:" #. type: example -#: guix-git/doc/guix.texi:9451 +#: guix-git/doc/guix.texi:9765 #, no-wrap msgid "ssh://charlie@@guix.example.org:22\n" msgstr "ssh://carlos@@guix.example.org:22\n" #. type: table -#: guix-git/doc/guix.texi:9455 +#: guix-git/doc/guix.texi:9769 msgid "As for @command{guix copy}, the usual OpenSSH client configuration files are honored (@pxref{Invoking guix copy})." msgstr "Como con @command{guix copy}, se tienen en cuenta los archivos habituales de configuración del cliente OpenSSH (@pxref{Invoking guix copy})." #. type: defvr -#: guix-git/doc/guix.texi:9458 +#: guix-git/doc/guix.texi:9772 msgid "Additional URI schemes may be supported in the future." msgstr "Esquemas URI adicionales pueden ser aceptados en el futuro." #. type: quotation -#: guix-git/doc/guix.texi:9465 +#: guix-git/doc/guix.texi:9779 msgid "The ability to connect to remote build daemons is considered experimental as of @value{VERSION}. Please get in touch with us to share any problems or suggestions you may have (@pxref{Contributing})." msgstr "La conexión con daemon de construcción remotos se considera experimental en @value{VERSION}. Por favor, contacte con nosotras para compartir cualquier problema o sugerencias que pueda tener (@pxref{Contributing})." #. type: deffn -#: guix-git/doc/guix.texi:9468 +#: guix-git/doc/guix.texi:9782 #, no-wrap msgid "{Scheme Procedure} open-connection [@var{uri}] [#:reserve-space? #t]" msgstr "{Procedimiento Scheme} open-connection [@var{uri}] [#:reserve-space? #t]" # FUZZY #. type: deffn -#: guix-git/doc/guix.texi:9473 +#: guix-git/doc/guix.texi:9787 msgid "Connect to the daemon over the Unix-domain socket at @var{uri} (a string). When @var{reserve-space?} is true, instruct it to reserve a little bit of extra space on the file system so that the garbage collector can still operate should the disk become full. Return a server object." msgstr "Abre una conexión al daemon a través del socket de dominio Unix apuntado por @var{uri} (una cadena). Cuando @var{reserve-space?} es verdadero, le indica que reserve un poco de espacio extra en el sistema de archivos de modo que el recolector de basura pueda operar incluso cuando el disco se llene. Devuelve un objeto servidor." # FIXME! #. type: deffn -#: guix-git/doc/guix.texi:9476 +#: guix-git/doc/guix.texi:9790 msgid "@var{file} defaults to @code{%default-socket-path}, which is the normal location given the options that were passed to @command{configure}." msgstr "El valor por defecto de @var{uri} es @code{%default-socket-path}, que ese la ruta esperada según las opciones proporcionadas a @code{configure}." #. type: deffn -#: guix-git/doc/guix.texi:9478 +#: guix-git/doc/guix.texi:9792 #, no-wrap msgid "{Scheme Procedure} close-connection @var{server}" msgstr "{Procedimiento Scheme} close-connection @var{servidor}" #. type: deffn -#: guix-git/doc/guix.texi:9480 +#: guix-git/doc/guix.texi:9794 msgid "Close the connection to @var{server}." msgstr "Cierra la conexión al @var{servidor}." #. type: defvr -#: guix-git/doc/guix.texi:9482 +#: guix-git/doc/guix.texi:9796 #, no-wrap msgid "{Scheme Variable} current-build-output-port" msgstr "{Variable Scheme} current-build-output-port" #. type: defvr -#: guix-git/doc/guix.texi:9485 +#: guix-git/doc/guix.texi:9799 msgid "This variable is bound to a SRFI-39 parameter, which refers to the port where build and error logs sent by the daemon should be written." msgstr "Esta variable está enlazada a un parámetro SRFI-39, que referencia al puerto donde los logs de construcción y error enviados por el daemon deben escribirse." #. type: Plain text -#: guix-git/doc/guix.texi:9489 +#: guix-git/doc/guix.texi:9803 msgid "Procedures that make RPCs all take a server object as their first argument." msgstr "Los procedimientos que realizan RPCs toman todos como primer parámetro un objeto servidor." #. type: deffn -#: guix-git/doc/guix.texi:9490 +#: guix-git/doc/guix.texi:9804 #, no-wrap msgid "{Scheme Procedure} valid-path? @var{server} @var{path}" msgstr "{Procedimiento Scheme} valid-path? @var{servidor} @var{ruta}" #. type: cindex -#: guix-git/doc/guix.texi:9491 +#: guix-git/doc/guix.texi:9805 #, no-wrap msgid "invalid store items" msgstr "elementos del almacén no válidos" #. type: deffn -#: guix-git/doc/guix.texi:9496 +#: guix-git/doc/guix.texi:9810 msgid "Return @code{#t} when @var{path} designates a valid store item and @code{#f} otherwise (an invalid item may exist on disk but still be invalid, for instance because it is the result of an aborted or failed build)." msgstr "Devuelve @code{#t} cuando @var{ruta} designa un elemento válido del almacén y @code{#f} en otro caso (un elemento no-válido puede existir en el disco pero aun así no ser válido, por ejemplo debido a que es el resultado de una construcción que se interrumpió o falló)." #. type: deffn -#: guix-git/doc/guix.texi:9499 +#: guix-git/doc/guix.texi:9813 msgid "A @code{&store-protocol-error} condition is raised if @var{path} is not prefixed by the store directory (@file{/gnu/store})." msgstr "Una condición @code{&store-protocol-error} se eleva si @var{ruta} no contiene como prefijo el directorio del almacén (@file{/gnu/store})." #. type: deffn -#: guix-git/doc/guix.texi:9501 +#: guix-git/doc/guix.texi:9815 #, no-wrap msgid "{Scheme Procedure} add-text-to-store @var{server} @var{name} @var{text} [@var{references}]" msgstr "{Procedimiento Scheme} add-text-to-store @var{servidor} @var{nombre} @var{texto} [@var{referencias}]" #. type: deffn -#: guix-git/doc/guix.texi:9505 +#: guix-git/doc/guix.texi:9819 msgid "Add @var{text} under file @var{name} in the store, and return its store path. @var{references} is the list of store paths referred to by the resulting store path." msgstr "Añade @var{texto} bajo el archivo @var{nombre} en el almacén, y devuelve su ruta en el almacén. @var{referencias} es la lista de rutas del almacén a las que hace referencia la ruta del almacén resultante." #. type: deffn -#: guix-git/doc/guix.texi:9507 +#: guix-git/doc/guix.texi:9821 #, no-wrap msgid "{Scheme Procedure} build-derivations @var{store} @var{derivations} @" msgstr "{Procedimiento Scheme} build-derivations @var{almacén} @var{derivaciones} @" #. type: deffn -#: guix-git/doc/guix.texi:9512 +#: guix-git/doc/guix.texi:9826 msgid "[@var{mode}] Build @var{derivations}, a list of @code{} objects, @file{.drv} file names, or derivation/output pairs, using the specified @var{mode}---@code{(build-mode normal)} by default." msgstr "" "[@var{modo}]\n" "Construye @var{derivaciones}, una lista de objetos @code{}, nombres de archivo @file{.drv}, o pares derivación/salida, usando el @var{modo} especificado---@code{(build-mode normal)} en caso de omisión." #. type: Plain text -#: guix-git/doc/guix.texi:9518 +#: guix-git/doc/guix.texi:9832 msgid "Note that the @code{(guix monads)} module provides a monad as well as monadic versions of the above procedures, with the goal of making it more convenient to work with code that accesses the store (@pxref{The Store Monad})." msgstr "Fíjese que el módulo @code{(guix monads)} proporciona una mónada así como versiones monádicas de los procedimientos previos, con el objetivo de hacer más conveniente el trabajo con código que accede al almacén (@pxref{The Store Monad})." #. type: i{#1} -#: guix-git/doc/guix.texi:9521 +#: guix-git/doc/guix.texi:9835 msgid "This section is currently incomplete." msgstr "Esta sección actualmente está incompleta." #. type: cindex -#: guix-git/doc/guix.texi:9525 +#: guix-git/doc/guix.texi:9839 #, no-wrap msgid "derivations" msgstr "derivaciones" @@ -19346,106 +19945,106 @@ msgstr "derivaciones" # FUZZY # TODO: piece -> pieza... #. type: Plain text -#: guix-git/doc/guix.texi:9529 +#: guix-git/doc/guix.texi:9843 msgid "Low-level build actions and the environment in which they are performed are represented by @dfn{derivations}. A derivation contains the following pieces of information:" msgstr "Las acciones de construcción a bajo nivel y el entorno en el que se realizan se representan mediante @dfn{derivaciones}. Una derivación contiene las siguientes piezas de información:" #. type: itemize -#: guix-git/doc/guix.texi:9534 +#: guix-git/doc/guix.texi:9848 msgid "The outputs of the derivation---derivations produce at least one file or directory in the store, but may produce more." msgstr "Las salidas de la derivación---las derivaciones producen al menos un archivo o directorio en el almacén, pero pueden producir más." #. type: cindex -#: guix-git/doc/guix.texi:9536 +#: guix-git/doc/guix.texi:9850 #, no-wrap msgid "build-time dependencies" msgstr "tiempo de construcción, dependencias" #. type: cindex -#: guix-git/doc/guix.texi:9537 +#: guix-git/doc/guix.texi:9851 #, no-wrap msgid "dependencies, build-time" msgstr "dependencias, tiempo de construcción" #. type: itemize -#: guix-git/doc/guix.texi:9541 +#: guix-git/doc/guix.texi:9855 msgid "The inputs of the derivations---i.e., its build-time dependencies---which may be other derivations or plain files in the store (patches, build scripts, etc.)." msgstr "Las entradas de las derivaciones---es decir, sus dependencias de tiempo de construcción---, que pueden ser otras derivaciones o simples archivos en el almacén (parches, guiones de construcción, etc.)." #. type: itemize -#: guix-git/doc/guix.texi:9544 +#: guix-git/doc/guix.texi:9858 msgid "The system type targeted by the derivation---e.g., @code{x86_64-linux}." msgstr "El tipo de sistema objetivo de la derivación---por ejemplo, @code{x86_64-linux}." #. type: itemize -#: guix-git/doc/guix.texi:9548 +#: guix-git/doc/guix.texi:9862 msgid "The file name of a build script in the store, along with the arguments to be passed." msgstr "El nombre de archivo del guión de construcción en el almacén, junto a los parámetros que se le deben pasar." #. type: itemize -#: guix-git/doc/guix.texi:9551 +#: guix-git/doc/guix.texi:9865 msgid "A list of environment variables to be defined." msgstr "Una lista de variables de entorno a ser definidas." #. type: cindex -#: guix-git/doc/guix.texi:9554 +#: guix-git/doc/guix.texi:9868 #, no-wrap msgid "derivation path" msgstr "ruta de derivación" #. type: Plain text -#: guix-git/doc/guix.texi:9562 +#: guix-git/doc/guix.texi:9876 msgid "Derivations allow clients of the daemon to communicate build actions to the store. They exist in two forms: as an in-memory representation, both on the client- and daemon-side, and as files in the store whose name end in @file{.drv}---these files are referred to as @dfn{derivation paths}. Derivations paths can be passed to the @code{build-derivations} procedure to perform the build actions they prescribe (@pxref{The Store})." msgstr "Las derivaciones permiten a los clientes del daemon comunicar acciones de construcción al almacén. Existen en dos formas: como una representación en memoria, tanto en el lado del cliente como el del daemon, y como archivos en el almacén cuyo nombre termina en @file{.drv}---estos archivos se conocen como @dfn{rutas de derivación}. Las rutas de derivación se pueden proporcionar al procedimiento @code{build-derivations} para que realice las acciones de construcción prescritas (@pxref{The Store})." #. type: cindex -#: guix-git/doc/guix.texi:9563 +#: guix-git/doc/guix.texi:9877 #, no-wrap msgid "fixed-output derivations" msgstr "derivaciones de salida fija" #. type: Plain text -#: guix-git/doc/guix.texi:9570 +#: guix-git/doc/guix.texi:9884 msgid "Operations such as file downloads and version-control checkouts for which the expected content hash is known in advance are modeled as @dfn{fixed-output derivations}. Unlike regular derivations, the outputs of a fixed-output derivation are independent of its inputs---e.g., a source code download produces the same result regardless of the download method and tools being used." msgstr "Operaciones como la descarga de archivos y las instantáneas de un control de versiones para las cuales el hash del contenido esperado se conoce previamente se modelan como @dfn{derivaciones de salida fija}. Al contrario que las derivaciones normales, las salidas de una derivación de salida fija son independientes de sus entradas---por ejemplo, la descarga del código fuente produce el mismo resultado independientemente del método de descarga y las herramientas usadas." #. type: item -#: guix-git/doc/guix.texi:9571 guix-git/doc/guix.texi:13341 +#: guix-git/doc/guix.texi:9885 guix-git/doc/guix.texi:13698 #, no-wrap msgid "references" msgstr "references" #. type: cindex -#: guix-git/doc/guix.texi:9572 +#: guix-git/doc/guix.texi:9886 #, no-wrap msgid "run-time dependencies" msgstr "tiempo de ejecución, dependencias" #. type: cindex -#: guix-git/doc/guix.texi:9573 +#: guix-git/doc/guix.texi:9887 #, no-wrap msgid "dependencies, run-time" msgstr "dependencias, tiempo de ejecución" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:9580 +#: guix-git/doc/guix.texi:9894 msgid "The outputs of derivations---i.e., the build results---have a set of @dfn{references}, as reported by the @code{references} RPC or the @command{guix gc --references} command (@pxref{Invoking guix gc}). References are the set of run-time dependencies of the build results. References are a subset of the inputs of the derivation; this subset is automatically computed by the build daemon by scanning all the files in the outputs." msgstr "Las derivaciones de salida---es decir, los resultados de construcción---tienen un conjunto de @dfn{referencias}, del que informa la RPC @code{references} o la orden @command{guix gc --references} (@pxref{Invoking guix gc}). Las referencias son el conjunto de dependencias en tiempo de ejecución de los resultados de construcción. Las referencias son un subconjunto de las entradas de la derivación; el daemon de construcción calcula este subconjunto de forma automática mediante el procesado de todos los archivos en las salidas." #. type: Plain text -#: guix-git/doc/guix.texi:9585 +#: guix-git/doc/guix.texi:9899 msgid "The @code{(guix derivations)} module provides a representation of derivations as Scheme objects, along with procedures to create and otherwise manipulate derivations. The lowest-level primitive to create a derivation is the @code{derivation} procedure:" msgstr "El módulo @code{(guix derivations)} proporciona una representación de derivaciones como objetos Scheme, junto a procedimientos para crear y manipular de otras formas derivaciones. La primitiva de más bajo nivel para crear una derivación es el procedimiento @code{derivation}:" #. type: deffn -#: guix-git/doc/guix.texi:9586 +#: guix-git/doc/guix.texi:9900 #, no-wrap msgid "{Scheme Procedure} derivation @var{store} @var{name} @var{builder} @" msgstr "{Procedimiento Scheme} derivation @var{almacén} @var{nombre} @var{constructor} @" #. type: deffn -#: guix-git/doc/guix.texi:9595 +#: guix-git/doc/guix.texi:9909 msgid "@var{args} [#:outputs '(\"out\")] [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:inputs '()] [#:env-vars '()] @ [#:system (%current-system)] [#:references-graphs #f] @ [#:allowed-references #f] [#:disallowed-references #f] @ [#:leaked-env-vars #f] [#:local-build? #f] @ [#:substitutable? #t] [#:properties '()] Build a derivation with the given arguments, and return the resulting @code{} object." msgstr "" "@var{args} [#:outputs '(\"out\")] [#:hash #f] [#:hash-algo #f] @\n" @@ -19457,47 +20056,47 @@ msgstr "" "Construye una derivación con los parámetros proporcionados, y devuelve el objeto @code{} resultante." #. type: deffn -#: guix-git/doc/guix.texi:9602 +#: guix-git/doc/guix.texi:9916 msgid "When @var{hash} and @var{hash-algo} are given, a @dfn{fixed-output derivation} is created---i.e., one whose result is known in advance, such as a file download. If, in addition, @var{recursive?} is true, then that fixed output may be an executable file or a directory and @var{hash} must be the hash of an archive containing this output." msgstr "Cuando se proporcionan @var{hash} y @var{hash-algo}, una @dfn{derivación de salida fija} se crea---es decir, una cuyo resultado se conoce de antemano, como la descarga de un archivo. Si, además, @var{recursive?} es verdadero, entonces la salida fijada puede ser un archivo ejecutable o un directorio y @var{hash} debe ser el hash de un archivador que contenga esta salida." #. type: deffn -#: guix-git/doc/guix.texi:9607 +#: guix-git/doc/guix.texi:9921 msgid "When @var{references-graphs} is true, it must be a list of file name/store path pairs. In that case, the reference graph of each store path is exported in the build environment in the corresponding file, in a simple text format." msgstr "Cuando @var{references-graphs} es verdadero, debe ser una lista de pares de nombre de archivo/ruta del almacén. En ese caso, el grafo de referencias de cada ruta del almacén se exporta en el entorno de construcción del archivo correspondiente, en un formato de texto simple." #. type: deffn -#: guix-git/doc/guix.texi:9612 +#: guix-git/doc/guix.texi:9926 msgid "When @var{allowed-references} is true, it must be a list of store items or outputs that the derivation's output may refer to. Likewise, @var{disallowed-references}, if true, must be a list of things the outputs may @emph{not} refer to." msgstr "Cuando @var{allowed-references} es verdadero, debe ser una lista de elementos del almacén o salidas a las que puede hacer referencia la salida de la derivación. Del mismo modo, @var{disallowed-references}, en caso de ser verdadero, debe ser una lista de cosas a las que las salidas @emph{no} pueden hacer referencia." #. type: deffn -#: guix-git/doc/guix.texi:9619 +#: guix-git/doc/guix.texi:9933 msgid "When @var{leaked-env-vars} is true, it must be a list of strings denoting environment variables that are allowed to ``leak'' from the daemon's environment to the build environment. This is only applicable to fixed-output derivations---i.e., when @var{hash} is true. The main use is to allow variables such as @code{http_proxy} to be passed to derivations that download files." msgstr "Cuando @var{leaked-env-vars} es verdadero, debe ser una lista de cadenas que denoten variables de entorno que se permite ``escapar'' del entorno del daemon al entorno de construcción. Esto es únicamente aplicable a derivaciones de salida fija---es decir, cuando @var{hash} es verdadero. El uso principal es permitir que variables como @code{http_proxy} sean pasadas a las derivaciones que descargan archivos." #. type: deffn -#: guix-git/doc/guix.texi:9624 +#: guix-git/doc/guix.texi:9938 msgid "When @var{local-build?} is true, declare that the derivation is not a good candidate for offloading and should rather be built locally (@pxref{Daemon Offload Setup}). This is the case for small derivations where the costs of data transfers would outweigh the benefits." msgstr "Cuando @var{local-build?} es verdadero, declara que la derivación no es una buena candidata para delegación y debe ser construida localmente (@pxref{Daemon Offload Setup}). Este es el caso para pequeñas derivaciones donde los costes de transferencia de datos sobrepasarían los beneficios." #. type: deffn -#: guix-git/doc/guix.texi:9629 +#: guix-git/doc/guix.texi:9943 msgid "When @var{substitutable?} is false, declare that substitutes of the derivation's output should not be used (@pxref{Substitutes}). This is useful, for instance, when building packages that capture details of the host CPU instruction set." msgstr "Cuando @var{substitutable?} es falso, declara que las sustituciones de la salida de la derivación no deben usarse (@pxref{Substitutes}). Esto es útil, por ejemplo, cuando se construyen paquetes que capturan detalles sobre el conjunto de instrucciones de la CPU anfitriona." #. type: deffn -#: guix-git/doc/guix.texi:9632 +#: guix-git/doc/guix.texi:9946 msgid "@var{properties} must be an association list describing ``properties'' of the derivation. It is kept as-is, uninterpreted, in the derivation." msgstr "@var{properties} debe ser una lista asociada que describe ``propiedades'' de la derivación. Debe mantenerse tal cual, sin interpretar, en la derivación." #. type: Plain text -#: guix-git/doc/guix.texi:9638 +#: guix-git/doc/guix.texi:9952 msgid "Here's an example with a shell script as its builder, assuming @var{store} is an open connection to the daemon, and @var{bash} points to a Bash executable in the store:" msgstr "Esto es un ejemplo con un guión de shell como constructor, asumiendo que @var{almacén} es una conexión abierta al daemon, @var{bash} apunta al ejecutable Bash en el almacén:" #. type: lisp -#: guix-git/doc/guix.texi:9643 +#: guix-git/doc/guix.texi:9957 #, no-wrap msgid "" "(use-modules (guix utils)\n" @@ -19511,7 +20110,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:9652 +#: guix-git/doc/guix.texi:9966 #, no-wrap msgid "" "(let ((builder ; add the Bash script to the store\n" @@ -19533,23 +20132,23 @@ msgstr "" "@result{} # /gnu/store/@dots{}-foo>\n" #. type: Plain text -#: guix-git/doc/guix.texi:9659 +#: guix-git/doc/guix.texi:9973 msgid "As can be guessed, this primitive is cumbersome to use directly. A better approach is to write build scripts in Scheme, of course! The best course of action for that is to write the build code as a ``G-expression'', and to pass it to @code{gexp->derivation}. For more information, @pxref{G-Expressions}." msgstr "Como puede suponerse, el uso directo de esta primitiva es algo enrevesado. Una mejor aproximación es escribir guiones de construcción en Scheme, ¡por supuesto! La mejor forma de hacerlo es escribir el código de construcción como una ``expresión-G'', y pasarla a @code{gexp->derivation}. Para más información, @pxref{G-Expressions}." #. type: Plain text -#: guix-git/doc/guix.texi:9664 +#: guix-git/doc/guix.texi:9978 msgid "Once upon a time, @code{gexp->derivation} did not exist and constructing derivations with build code written in Scheme was achieved with @code{build-expression->derivation}, documented below. This procedure is now deprecated in favor of the much nicer @code{gexp->derivation}." msgstr "En otros tiempos, @code{gexp->derivation} no existía y la creación de derivaciones con código de construcción escrito en Scheme se conseguía con @code{build-expression->derivation}, documentada más adelante. Este procedimiento está ahora obsoleto en favor del procedimiento @code{gexp->derivation} mucho más conveniente." #. type: deffn -#: guix-git/doc/guix.texi:9665 +#: guix-git/doc/guix.texi:9979 #, no-wrap msgid "{Scheme Procedure} build-expression->derivation @var{store} @" msgstr "{Procedimiento Scheme} build-expression->derivation @var{almacén} @" #. type: deffn -#: guix-git/doc/guix.texi:9681 +#: guix-git/doc/guix.texi:9995 msgid "@var{name} @var{exp} @ [#:system (%current-system)] [#:inputs '()] @ [#:outputs '(\"out\")] [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:env-vars '()] [#:modules '()] @ [#:references-graphs #f] [#:allowed-references #f] @ [#:disallowed-references #f] @ [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f] Return a derivation that executes Scheme expression @var{exp} as a builder for derivation @var{name}. @var{inputs} must be a list of @code{(name drv-path sub-drv)} tuples; when @var{sub-drv} is omitted, @code{\"out\"} is assumed. @var{modules} is a list of names of Guile modules from the current search path to be copied in the store, compiled, and made available in the load path during the execution of @var{exp}---e.g., @code{((guix build utils) (guix build gnu-build-system))}." msgstr "" "@var{nombre} @var{exp} @\n" @@ -19562,27 +20161,27 @@ msgstr "" "Devuelve una derivación que ejecuta la expresión Scheme @var{exp} como un constructor para la derivación @var{nombre}. @var{inputs} debe ser una lista de tuplas @code{(nombre ruta-drv sub-drv)}; cuando @var{sub-drv} se omite, se asume @code{\"out\"}. @var{modules} es una lista de nombres de módulos Guile de la ruta actual de búsqueda a copiar en el almacén, compilados, y poner a disposición en la ruta de carga durante la ejecución de @var{exp}---por ejemplo, @code{((guix build utils) (guix build gnu-build-system))}." #. type: deffn -#: guix-git/doc/guix.texi:9689 +#: guix-git/doc/guix.texi:10003 msgid "@var{exp} is evaluated in an environment where @code{%outputs} is bound to a list of output/path pairs, and where @code{%build-inputs} is bound to a list of string/output-path pairs made from @var{inputs}. Optionally, @var{env-vars} is a list of string pairs specifying the name and value of environment variables visible to the builder. The builder terminates by passing the result of @var{exp} to @code{exit}; thus, when @var{exp} returns @code{#f}, the build is considered to have failed." msgstr "@var{exp} se evalúa en un entorno donde @code{%outputs} está asociada a una lista de pares salida/ruta, y donde @code{%build-inputs} está asociada a una lista de pares cadena/ruta-de-salida que provienen de @var{inputs}. De manera opcional, @var{env-vars} es una lista de pares de cadenas que especifican el nombre y el valor de las variables de entorno visibles al constructor. El constructor termina pasando el resultado de @var{exp} a @code{exit}; por tanto, cuando @var{exp} devuelve @code{#f}, la construcción se considera fallida." #. type: deffn -#: guix-git/doc/guix.texi:9693 +#: guix-git/doc/guix.texi:10007 msgid "@var{exp} is built using @var{guile-for-build} (a derivation). When @var{guile-for-build} is omitted or is @code{#f}, the value of the @code{%guile-for-build} fluid is used instead." msgstr "@var{exp} se construye usando @var{guile-for-build} (una derivación). Cuando @var{guile-for-build} se omite o es @code{#f}, el valor del fluido @code{%guile-for-build} se usa en su lugar." #. type: deffn -#: guix-git/doc/guix.texi:9698 +#: guix-git/doc/guix.texi:10012 msgid "See the @code{derivation} procedure for the meaning of @var{references-graphs}, @var{allowed-references}, @var{disallowed-references}, @var{local-build?}, and @var{substitutable?}." msgstr "Véase el procedimiento @code{derivation} para el significado de @var{references-graphs}, @var{allowed-references}, @var{disallowed-references}, @var{local-build?} y @var{substitutable?}." #. type: Plain text -#: guix-git/doc/guix.texi:9703 +#: guix-git/doc/guix.texi:10017 msgid "Here's an example of a single-output derivation that creates a directory containing one file:" msgstr "Aquí está un ejemplo de derivación de salida única que crea un directorio que contiene un archivo:" #. type: lisp -#: guix-git/doc/guix.texi:9711 +#: guix-git/doc/guix.texi:10025 #, no-wrap msgid "" "(let ((builder '(let ((out (assoc-ref %outputs \"out\")))\n" @@ -19602,13 +20201,13 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:9713 +#: guix-git/doc/guix.texi:10027 #, no-wrap msgid "@result{} # @dots{}>\n" msgstr "@result{} # @dots{}>\n" #. type: cindex -#: guix-git/doc/guix.texi:9719 +#: guix-git/doc/guix.texi:10033 #, no-wrap msgid "monad" msgstr "mónada" @@ -19616,41 +20215,41 @@ msgstr "mónada" # FUZZY # TODO: Side effect #. type: Plain text -#: guix-git/doc/guix.texi:9725 +#: guix-git/doc/guix.texi:10039 msgid "The procedures that operate on the store described in the previous sections all take an open connection to the build daemon as their first argument. Although the underlying model is functional, they either have side effects or depend on the current state of the store." msgstr "Los procedimientos que operan en el almacén descritos en la sección previa toman todos una conexión abierta al daemon de construcción en su primer parámetro. Aunque el modelo subyacente es funcional, tienen o bien efectos secundarios o dependen del estado actual del almacén." # FUZZY # TODO: Side effect #. type: Plain text -#: guix-git/doc/guix.texi:9731 +#: guix-git/doc/guix.texi:10045 msgid "The former is inconvenient: the connection to the build daemon has to be carried around in all those functions, making it impossible to compose functions that do not take that parameter with functions that do. The latter can be problematic: since store operations have side effects and/or depend on external state, they have to be properly sequenced." msgstr "Lo anterior es inconveniente: la conexión al daemon de construcción tiene que proporcionarse en todas estas funciones, haciendo imposible la composición de funciones que no toman ese parámetro con funciones que sí lo hacen. Lo último puede ser problemático: ya que las operaciones del almacén tienen efectos secundarios y/o dependen del estado externo, deben ser secuenciadas de manera adecuada." #. type: cindex -#: guix-git/doc/guix.texi:9732 +#: guix-git/doc/guix.texi:10046 #, no-wrap msgid "monadic values" msgstr "valores monádicos" #. type: cindex -#: guix-git/doc/guix.texi:9733 +#: guix-git/doc/guix.texi:10047 #, no-wrap msgid "monadic functions" msgstr "funciones monádicas" #. type: Plain text -#: guix-git/doc/guix.texi:9743 +#: guix-git/doc/guix.texi:10057 msgid "This is where the @code{(guix monads)} module comes in. This module provides a framework for working with @dfn{monads}, and a particularly useful monad for our uses, the @dfn{store monad}. Monads are a construct that allows two things: associating ``context'' with values (in our case, the context is the store), and building sequences of computations (here computations include accesses to the store). Values in a monad---values that carry this additional context---are called @dfn{monadic values}; procedures that return such values are called @dfn{monadic procedures}." msgstr "Aquí es donde entra en juego el módulo @code{(guix monads)}. Este módulo proporciona un entorno para trabajar con @dfn{mónadas}, y una mónada particularmente útil para nuestros usos, la @dfn{mónada del almacén}. Las mónadas son una construcción que permite dos cosas: asociar ``contexto'' con valores (en nuestro caso, el contexto es el almacén), y la construcción de secuencias de computaciones (aquí computaciones incluye accesos al almacén). Los valores en una mónada---valores que transportan este contexto adicional---se llaman @dfn{valores monádicos}; los procedimientos que devuelven dichos valores se llaman @dfn{procedimientos monádicos}." #. type: Plain text -#: guix-git/doc/guix.texi:9745 +#: guix-git/doc/guix.texi:10059 msgid "Consider this ``normal'' procedure:" msgstr "Considere este procedimiento ``normal'':" #. type: lisp -#: guix-git/doc/guix.texi:9754 +#: guix-git/doc/guix.texi:10068 #, no-wrap msgid "" "(define (sh-symlink store)\n" @@ -19670,12 +20269,12 @@ msgstr "" " `(symlink ,sh %output))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:9758 +#: guix-git/doc/guix.texi:10072 msgid "Using @code{(guix monads)} and @code{(guix gexp)}, it may be rewritten as a monadic function:" msgstr "Mediante el uso de @code{(guix monads)} y @code{(guix gexp)}, puede reescribirse como una función monádica:" #. type: lisp -#: guix-git/doc/guix.texi:9766 +#: guix-git/doc/guix.texi:10080 #, no-wrap msgid "" "(define (sh-symlink)\n" @@ -19693,17 +20292,17 @@ msgstr "" " #$output))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:9773 +#: guix-git/doc/guix.texi:10087 msgid "There are several things to note in the second version: the @code{store} parameter is now implicit and is ``threaded'' in the calls to the @code{package->derivation} and @code{gexp->derivation} monadic procedures, and the monadic value returned by @code{package->derivation} is @dfn{bound} using @code{mlet} instead of plain @code{let}." msgstr "Hay varias cosas a tener en cuenta en la segunda versión: el parámetro @code{store} ahora es implícito y es ``hilado en las llamadas a los procedimientos monádicos @code{package->derivation} y @code{gexp->derivation}, y el valor monádico devuelto por @code{package->derivation} es @dfn{asociado} mediante el uso de @code{mlet} en vez de un simple @code{let}." #. type: Plain text -#: guix-git/doc/guix.texi:9777 +#: guix-git/doc/guix.texi:10091 msgid "As it turns out, the call to @code{package->derivation} can even be omitted since it will take place implicitly, as we will see later (@pxref{G-Expressions}):" msgstr "Al final, la llamada a @code{package->derivation} puede omitirse ya que tendrá lugar implícitamente, como veremos más adelante (@pxref{G-Expressions}):" #. type: lisp -#: guix-git/doc/guix.texi:9783 +#: guix-git/doc/guix.texi:10097 #, no-wrap msgid "" "(define (sh-symlink)\n" @@ -19719,12 +20318,12 @@ msgstr "" # FUZZY # TODO: Necesita repensarse. #. type: Plain text -#: guix-git/doc/guix.texi:9792 +#: guix-git/doc/guix.texi:10106 msgid "Calling the monadic @code{sh-symlink} has no effect. As someone once said, ``you exit a monad like you exit a building on fire: by running''. So, to exit the monad and get the desired effect, one must use @code{run-with-store}:" msgstr "La ejecución del procedimiento monádico @code{enlace-para-sh} no tiene ningún efecto. Como alguien dijo una vez, ``sales de una mónada como sales de un edificio en llamas: corriendo'' (run en inglés). Por tanto, para salir de la mónada y obtener el efecto deseado se debe usar @code{run-with-store}:" #. type: lisp -#: guix-git/doc/guix.texi:9796 +#: guix-git/doc/guix.texi:10110 #, no-wrap msgid "" "(run-with-store (open-connection) (sh-symlink))\n" @@ -19734,12 +20333,12 @@ msgstr "" "@result{} /gnu/store/...-enlace-para-sh\n" #. type: Plain text -#: guix-git/doc/guix.texi:9802 +#: guix-git/doc/guix.texi:10116 msgid "Note that the @code{(guix monad-repl)} module extends the Guile REPL with new ``meta-commands'' to make it easier to deal with monadic procedures: @code{run-in-store}, and @code{enter-store-monad}. The former is used to ``run'' a single monadic value through the store:" msgstr "Fíjese que el módulo @code{(guix monad-repl)} extiende la sesión interactiva de Guile con nuevas ``meta-órdenes'' para facilitar el trabajo con procedimientos monádicos: @code{run-in-store} y @code{enter-store-monad}. El primero se usa para ``ejecutar'' un valor monádico único a través del almacén:" #. type: example -#: guix-git/doc/guix.texi:9806 +#: guix-git/doc/guix.texi:10120 #, no-wrap msgid "" "scheme@@(guile-user)> ,run-in-store (package->derivation hello)\n" @@ -19749,12 +20348,12 @@ msgstr "" "$1 = # @dots{}>\n" #. type: Plain text -#: guix-git/doc/guix.texi:9810 +#: guix-git/doc/guix.texi:10124 msgid "The latter enters a recursive REPL, where all the return values are automatically run through the store:" msgstr "El último entra en un entorno interactivo recursivo, donde todos los valores devueltos se ejecutan automáticamente a través del almacén:" #. type: example -#: guix-git/doc/guix.texi:9819 +#: guix-git/doc/guix.texi:10133 #, no-wrap msgid "" "scheme@@(guile-user)> ,enter-store-monad\n" @@ -19774,50 +20373,50 @@ msgstr "" "scheme@@(guile-user)>\n" #. type: Plain text -#: guix-git/doc/guix.texi:9824 +#: guix-git/doc/guix.texi:10138 msgid "Note that non-monadic values cannot be returned in the @code{store-monad} REPL." msgstr "Fíjese que los valores no-monádicos no pueden devolverse en el entorno interactivo @code{store-monad}." #. type: Plain text -#: guix-git/doc/guix.texi:9827 +#: guix-git/doc/guix.texi:10141 msgid "The main syntactic forms to deal with monads in general are provided by the @code{(guix monads)} module and are described below." msgstr "Las formas sintácticas principales para tratar con mónadas en general se proporcionan por el módulo @code{(guix monads)} y se describen a continuación." #. type: deffn -#: guix-git/doc/guix.texi:9828 +#: guix-git/doc/guix.texi:10142 #, no-wrap msgid "{Scheme Syntax} with-monad @var{monad} @var{body} ..." msgstr "{Sintaxis Scheme} with-monad @var{mónada} @var{cuerpo} ..." #. type: deffn -#: guix-git/doc/guix.texi:9831 +#: guix-git/doc/guix.texi:10145 msgid "Evaluate any @code{>>=} or @code{return} forms in @var{body} as being in @var{monad}." msgstr "Evalúa cualquier forma @code{>>=} o @code{return} en @var{cuerpo} como estando en @var{mónada}." #. type: deffn -#: guix-git/doc/guix.texi:9833 +#: guix-git/doc/guix.texi:10147 #, no-wrap msgid "{Scheme Syntax} return @var{val}" msgstr "{Sintaxis Scheme} return @var{val}" #. type: deffn -#: guix-git/doc/guix.texi:9835 +#: guix-git/doc/guix.texi:10149 msgid "Return a monadic value that encapsulates @var{val}." msgstr "Devuelve el valor monádico que encapsula @var{val}." #. type: deffn -#: guix-git/doc/guix.texi:9837 +#: guix-git/doc/guix.texi:10151 #, no-wrap msgid "{Scheme Syntax} >>= @var{mval} @var{mproc} ..." msgstr "{Sintaxis Scheme} >>= @var{mval} @var{mproc} ..." #. type: deffn -#: guix-git/doc/guix.texi:9844 +#: guix-git/doc/guix.texi:10158 msgid "@dfn{Bind} monadic value @var{mval}, passing its ``contents'' to monadic procedures @var{mproc}@dots{}@footnote{This operation is commonly referred to as ``bind'', but that name denotes an unrelated procedure in Guile. Thus we use this somewhat cryptic symbol inherited from the Haskell language.}. There can be one @var{mproc} or several of them, as in this example:" msgstr "@dfn{Asocia} el valor monádico @var{mval}, pasando su ``contenido'' a los procedimientos monádicos @var{mproc}@dots{}@footnote{Esta operación es habitualmente conocida como ``bind'' (asociación), pero ese nombre denota un procedimiento no relacionado en Guile. Por tanto usamos este símbolo en cierto modo críptico heredado del lenguaje Haskell.}. Puede haber un @var{mproc} o varios, como en este ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:9852 +#: guix-git/doc/guix.texi:10166 #, no-wrap msgid "" "(run-with-state\n" @@ -19837,7 +20436,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:9855 +#: guix-git/doc/guix.texi:10169 #, no-wrap msgid "" "@result{} 4\n" @@ -19847,100 +20446,100 @@ msgstr "" "@result{} un-estado\n" #. type: deffn -#: guix-git/doc/guix.texi:9858 +#: guix-git/doc/guix.texi:10172 #, no-wrap msgid "{Scheme Syntax} mlet @var{monad} ((@var{var} @var{mval}) ...) @" msgstr "{Sintaxis Scheme} mlet @var{mónada} ((@var{var} @var{mval}) ...) @" #. type: deffn -#: guix-git/doc/guix.texi:9860 +#: guix-git/doc/guix.texi:10174 msgid "@var{body} ..." msgstr "@var{cuerpo} ..." #. type: deffnx -#: guix-git/doc/guix.texi:9860 +#: guix-git/doc/guix.texi:10174 #, no-wrap msgid "{Scheme Syntax} mlet* @var{monad} ((@var{var} @var{mval}) ...) @" msgstr "{Sintaxis Scheme} mlet* @var{mónada} ((@var{var} @var{mval}) ...) @" #. type: deffn -#: guix-git/doc/guix.texi:9872 +#: guix-git/doc/guix.texi:10186 msgid "@var{body} ... Bind the variables @var{var} to the monadic values @var{mval} in @var{body}, which is a sequence of expressions. As with the bind operator, this can be thought of as ``unpacking'' the raw, non-monadic value ``contained'' in @var{mval} and making @var{var} refer to that raw, non-monadic value within the scope of the @var{body}. The form (@var{var} -> @var{val}) binds @var{var} to the ``normal'' value @var{val}, as per @code{let}. The binding operations occur in sequence from left to right. The last expression of @var{body} must be a monadic expression, and its result will become the result of the @code{mlet} or @code{mlet*} when run in the @var{monad}." msgstr "@var{cuerpo} ... Asocia las variables @var{var} a los valores monádicos @var{mval} en @var{cuerpo}, el cual es una secuencia de expresiones. Como con el operador bind, esto puede pensarse como el ``desempaquetado'' del valor crudo no-monádico dentro del ámbito del @var{cuerpo}. La forma (@var{var} -> @var{val}) asocia @var{var} al valor ``normal'' @var{val}, como en @code{let}. Las operaciones de asociación ocurren en secuencia de izquierda a derecha. La última expresión de @var{cuerpo} debe ser una expresión monádica, y su resultado se convertirá en el resultado de @code{mlet} o @code{mlet*} cuando se ejecute en la @var{mónada}." #. type: deffn -#: guix-git/doc/guix.texi:9875 +#: guix-git/doc/guix.texi:10189 msgid "@code{mlet*} is to @code{mlet} what @code{let*} is to @code{let} (@pxref{Local Bindings,,, guile, GNU Guile Reference Manual})." msgstr "@code{mlet*} es a @code{mlet} lo que @code{let*} es a @code{let} (@pxref{Local Bindings,,, guile, GNU Guile Reference Manual})." #. type: deffn -#: guix-git/doc/guix.texi:9877 +#: guix-git/doc/guix.texi:10191 #, no-wrap msgid "{Scheme System} mbegin @var{monad} @var{mexp} ..." msgstr "{Sistema Scheme} mbegin @var{mónada} @var{mexp} ..." #. type: deffn -#: guix-git/doc/guix.texi:9881 +#: guix-git/doc/guix.texi:10195 msgid "Bind @var{mexp} and the following monadic expressions in sequence, returning the result of the last expression. Every expression in the sequence must be a monadic expression." msgstr "Asocia @var{mexp} y las siguientes expresiones monádicas en secuencia, devolviendo el resultado de la última expresión. Cada expresión en la secuencia debe ser una expresión monádica." #. type: deffn -#: guix-git/doc/guix.texi:9885 +#: guix-git/doc/guix.texi:10199 msgid "This is akin to @code{mlet}, except that the return values of the monadic expressions are ignored. In that sense, it is analogous to @code{begin}, but applied to monadic expressions." msgstr "Esto es similar a @code{mlet}, excepto que los valores devueltos por las expresiones monádicas se ignoran. En ese sentido el funcionamiento es análogo a @code{begin} pero aplicado a expresiones monádicas." #. type: deffn -#: guix-git/doc/guix.texi:9887 +#: guix-git/doc/guix.texi:10201 #, no-wrap msgid "{Scheme System} mwhen @var{condition} @var{mexp0} @var{mexp*} ..." msgstr "{Sistema Scheme} mwhen @var{condición} @var{mexp0} @var{mexp*} ..." #. type: deffn -#: guix-git/doc/guix.texi:9892 +#: guix-git/doc/guix.texi:10206 msgid "When @var{condition} is true, evaluate the sequence of monadic expressions @var{mexp0}..@var{mexp*} as in an @code{mbegin}. When @var{condition} is false, return @code{*unspecified*} in the current monad. Every expression in the sequence must be a monadic expression." msgstr "Cuando @var{condición} es verdadero, evalúa la secuencia de expresiones monádicas @var{mexp0}..@var{mexp*} como dentro de @code{mbegin}. Cuando @var{condición} es falso, devuelve @code{*unespecified*} en la mónada actual. Todas las expresiones en la secuencia deben ser expresiones monádicas." #. type: deffn -#: guix-git/doc/guix.texi:9894 +#: guix-git/doc/guix.texi:10208 #, no-wrap msgid "{Scheme System} munless @var{condition} @var{mexp0} @var{mexp*} ..." msgstr "{Sistema Scheme} munless @var{condición} @var{mexp0} @var{mexp*} ..." #. type: deffn -#: guix-git/doc/guix.texi:9899 +#: guix-git/doc/guix.texi:10213 msgid "When @var{condition} is false, evaluate the sequence of monadic expressions @var{mexp0}..@var{mexp*} as in an @code{mbegin}. When @var{condition} is true, return @code{*unspecified*} in the current monad. Every expression in the sequence must be a monadic expression." msgstr "Cuando @var{condición} es falso, evalúa la secuencia de expresiones monádicas @var{mexp0}..@var{mexp*} como dentro de @code{mbegin}. Cuando @var{condición} es verdadero, devuelve @code{*unespecified*} en la mónada actual. Todas las expresiones en la secuencia deben ser expresiones monádicas." # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:9901 +#: guix-git/doc/guix.texi:10215 #, no-wrap msgid "state monad" msgstr "mónada de estado" #. type: Plain text -#: guix-git/doc/guix.texi:9905 +#: guix-git/doc/guix.texi:10219 msgid "The @code{(guix monads)} module provides the @dfn{state monad}, which allows an additional value---the state---to be @emph{threaded} through monadic procedure calls." msgstr "El módulo @code{(guix monads)} proporciona la @dfn{mónada de estado}, que permite que un valor adicional---el estado---sea @emph{hilado} a través de las llamadas a procedimientos monádicos." #. type: defvr -#: guix-git/doc/guix.texi:9906 +#: guix-git/doc/guix.texi:10220 #, no-wrap msgid "{Scheme Variable} %state-monad" msgstr "{Variable Scheme} %state-monad" #. type: defvr -#: guix-git/doc/guix.texi:9909 +#: guix-git/doc/guix.texi:10223 msgid "The state monad. Procedures in the state monad can access and change the state that is threaded." msgstr "La mónada de estado. Procedimientos en la mónada de estado pueden acceder y cambiar el estado hilado." #. type: defvr -#: guix-git/doc/guix.texi:9913 +#: guix-git/doc/guix.texi:10227 msgid "Consider the example below. The @code{square} procedure returns a value in the state monad. It returns the square of its argument, but also increments the current state value:" msgstr "Considere el siguiente ejemplo. El procedimiento @code{cuadrado} devuelve un valor en la mónada de estado." #. type: lisp -#: guix-git/doc/guix.texi:9920 +#: guix-git/doc/guix.texi:10234 #, no-wrap msgid "" "(define (square x)\n" @@ -19958,7 +20557,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:9924 +#: guix-git/doc/guix.texi:10238 #, no-wrap msgid "" "(run-with-state (sequence %state-monad (map square (iota 3))) 0)\n" @@ -19970,149 +20569,149 @@ msgstr "" "@result{} 3\n" #. type: defvr -#: guix-git/doc/guix.texi:9928 +#: guix-git/doc/guix.texi:10242 msgid "When ``run'' through @code{%state-monad}, we obtain that additional state value, which is the number of @code{square} calls." msgstr "Cuando se ``ejecuta'' a través de @code{%state-monad}, obtenemos un valor adicional de estado, que es el número de llamadas a @code{cuadrado}." #. type: deffn -#: guix-git/doc/guix.texi:9930 +#: guix-git/doc/guix.texi:10244 #, no-wrap msgid "{Monadic Procedure} current-state" msgstr "{Procedimiento monádico} current-state" #. type: deffn -#: guix-git/doc/guix.texi:9932 +#: guix-git/doc/guix.texi:10246 msgid "Return the current state as a monadic value." msgstr "Devuelve el estado actual como un valor monádico." #. type: deffn -#: guix-git/doc/guix.texi:9934 +#: guix-git/doc/guix.texi:10248 #, no-wrap msgid "{Monadic Procedure} set-current-state @var{value}" msgstr "{Procedimiento monádico} set-current-state @var{valor}" #. type: deffn -#: guix-git/doc/guix.texi:9937 +#: guix-git/doc/guix.texi:10251 msgid "Set the current state to @var{value} and return the previous state as a monadic value." msgstr "Establece el estado actual a @var{valor} y devuelve el estado previo como un valor monádico." #. type: deffn -#: guix-git/doc/guix.texi:9939 +#: guix-git/doc/guix.texi:10253 #, no-wrap msgid "{Monadic Procedure} state-push @var{value}" msgstr "{Procedimiento monádico} state-push @var{valor}" #. type: deffn -#: guix-git/doc/guix.texi:9942 +#: guix-git/doc/guix.texi:10256 msgid "Push @var{value} to the current state, which is assumed to be a list, and return the previous state as a monadic value." msgstr "Apila @var{valor} al estado actual, que se asume que es una lista, y devuelve el estado previo como un valor monádico." #. type: deffn -#: guix-git/doc/guix.texi:9944 +#: guix-git/doc/guix.texi:10258 #, no-wrap msgid "{Monadic Procedure} state-pop" msgstr "{Procedimiento monádico} state-pop" #. type: deffn -#: guix-git/doc/guix.texi:9947 +#: guix-git/doc/guix.texi:10261 msgid "Pop a value from the current state and return it as a monadic value. The state is assumed to be a list." msgstr "Extrae un valor del estado actual y lo devuelve como un valor monádico. Se asume que el estado es una lista." #. type: deffn -#: guix-git/doc/guix.texi:9949 +#: guix-git/doc/guix.texi:10263 #, no-wrap msgid "{Scheme Procedure} run-with-state @var{mval} [@var{state}]" msgstr "{Procedimiento Scheme} run-with-state @var{mval} [@var{estado}]" #. type: deffn -#: guix-git/doc/guix.texi:9952 +#: guix-git/doc/guix.texi:10266 msgid "Run monadic value @var{mval} starting with @var{state} as the initial state. Return two values: the resulting value, and the resulting state." msgstr "Ejecuta un valor monádico @var{mval} comenzando con @var{estado} como el estado inicial. Devuelve dos valores: el valor resultante y el estado resultante." #. type: Plain text -#: guix-git/doc/guix.texi:9956 +#: guix-git/doc/guix.texi:10270 msgid "The main interface to the store monad, provided by the @code{(guix store)} module, is as follows." msgstr "La interfaz principal a la mónada del almacén, proporcionada por el módulo @code{(guix store)}, es como sigue." #. type: defvr -#: guix-git/doc/guix.texi:9957 +#: guix-git/doc/guix.texi:10271 #, no-wrap msgid "{Scheme Variable} %store-monad" msgstr "{Variable Scheme} %store-monad" #. type: defvr -#: guix-git/doc/guix.texi:9959 +#: guix-git/doc/guix.texi:10273 msgid "The store monad---an alias for @code{%state-monad}." msgstr "La mónada del almacén---un alias para @code{%state-monad}." #. type: defvr -#: guix-git/doc/guix.texi:9963 +#: guix-git/doc/guix.texi:10277 msgid "Values in the store monad encapsulate accesses to the store. When its effect is needed, a value of the store monad must be ``evaluated'' by passing it to the @code{run-with-store} procedure (see below)." msgstr "Los valores en la mónada del almacén encapsulan los accesos al almacén. Cuando su efecto es necesario, un valor de la mónada del almacén será ``evaluado'' cuando se proporcione al procedimiento @code{run-with-store} (véase a continuación)." #. type: deffn -#: guix-git/doc/guix.texi:9965 +#: guix-git/doc/guix.texi:10279 #, no-wrap msgid "{Scheme Procedure} run-with-store @var{store} @var{mval} [#:guile-for-build] [#:system (%current-system)]" msgstr "{Procedimiento Scheme} run-with-store @var{almacén} @var{mval} [#:guile-for-build] [#:system (%current-system)]" #. type: deffn -#: guix-git/doc/guix.texi:9968 +#: guix-git/doc/guix.texi:10282 msgid "Run @var{mval}, a monadic value in the store monad, in @var{store}, an open store connection." msgstr "Ejecuta @var{mval}, un valor monádico en la mónada del almacén, en @var{almacén}, una conexión abierta al almacén." #. type: deffn -#: guix-git/doc/guix.texi:9970 +#: guix-git/doc/guix.texi:10284 #, no-wrap msgid "{Monadic Procedure} text-file @var{name} @var{text} [@var{references}]" msgstr "{Procedimiento monádico} text-file @var{nombre} @var{texto} [@var{referencias}]" #. type: deffn -#: guix-git/doc/guix.texi:9974 +#: guix-git/doc/guix.texi:10288 msgid "Return as a monadic value the absolute file name in the store of the file containing @var{text}, a string. @var{references} is a list of store items that the resulting text file refers to; it defaults to the empty list." msgstr "Devuelve como un valor monádico el nombre absoluto del archivo en el almacén del archivo que contiene @var{ŧexto}, una cadena. @var{referencias} es una lista de elementos del almacén a los que el archivo de texto referencia; su valor predeterminado es la lista vacía." #. type: deffn -#: guix-git/doc/guix.texi:9976 +#: guix-git/doc/guix.texi:10290 #, no-wrap msgid "{Monadic Procedure} binary-file @var{name} @var{data} [@var{references}]" msgstr "{Procedimiento monádico} binary-file @var{nombre} @var{datos} [@var{referencias}]" #. type: deffn -#: guix-git/doc/guix.texi:9980 +#: guix-git/doc/guix.texi:10294 msgid "Return as a monadic value the absolute file name in the store of the file containing @var{data}, a bytevector. @var{references} is a list of store items that the resulting binary file refers to; it defaults to the empty list." msgstr "Devuelve como un valor monádico el nombre absoluto del archivo en el almacén del archivo que contiene @var{datos}, un vector de bytes. @var{referencias} es una lista de elementos del almacén a los que el archivo binario referencia; su valor predeterminado es la lista vacía." #. type: deffn -#: guix-git/doc/guix.texi:9982 +#: guix-git/doc/guix.texi:10296 #, no-wrap msgid "{Monadic Procedure} interned-file @var{file} [@var{name}] @" msgstr "{Procedimiento monádico} interned-file @var{archivo} [@var{nombre}] @" #. type: deffn -#: guix-git/doc/guix.texi:9987 +#: guix-git/doc/guix.texi:10301 msgid "[#:recursive? #t] [#:select? (const #t)] Return the name of @var{file} once interned in the store. Use @var{name} as its store name, or the basename of @var{file} if @var{name} is omitted." msgstr "" "[#:recursive? #t] [#:select? (const #t)]\n" "Devuelve el nombre del @var{archivo} una vez internado en el almacén. Usa @var{nombre} como su nombre del almacén, o el nombre base de @var{archivo} si @var{nombre} se omite." #. type: deffn -#: guix-git/doc/guix.texi:9991 guix-git/doc/guix.texi:10414 +#: guix-git/doc/guix.texi:10305 guix-git/doc/guix.texi:10728 msgid "When @var{recursive?} is true, the contents of @var{file} are added recursively; if @var{file} designates a flat file and @var{recursive?} is true, its contents are added, and its permission bits are kept." msgstr "Cuando @var{recursive?} es verdadero, los contenidos del @var{archivo} se añaden recursivamente; si @var{archivo} designa un archivo plano y @var{recursive?} es verdadero, sus contenidos se añaden, y sus bits de permisos se mantienen." #. type: deffn -#: guix-git/doc/guix.texi:9996 guix-git/doc/guix.texi:10419 +#: guix-git/doc/guix.texi:10310 guix-git/doc/guix.texi:10733 msgid "When @var{recursive?} is true, call @code{(@var{select?} @var{file} @var{stat})} for each directory entry, where @var{file} is the entry's absolute file name and @var{stat} is the result of @code{lstat}; exclude entries for which @var{select?} does not return true." msgstr "Cuando @var{recursive?} es verdadero, llama a @code{(@var{select?} @var{archivo} @var{stat})} por cada entrada del directorio, donde @var{archivo} es el nombre absoluto de archivo de la entrada y @var{stat} es el resultado de @code{lstat}; excluyendo las entradas para las cuales @var{select?} no devuelve verdadero." #. type: deffn -#: guix-git/doc/guix.texi:9998 +#: guix-git/doc/guix.texi:10312 msgid "The example below adds a file to the store, under two different names:" msgstr "El ejemplo siguiente añade un archivo al almacén, bajo dos nombres diferentes:" #. type: lisp -#: guix-git/doc/guix.texi:10004 +#: guix-git/doc/guix.texi:10318 #, no-wrap msgid "" "(run-with-store (open-connection)\n" @@ -20128,24 +20727,24 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:10006 +#: guix-git/doc/guix.texi:10320 #, no-wrap msgid "@result{} (\"/gnu/store/rwm@dots{}-README\" \"/gnu/store/44i@dots{}-LEGU-MIN\")\n" msgstr "@result{} (\"/gnu/store/rwm@dots{}-README\" \"/gnu/store/44i@dots{}-LEGU-MIN\")\n" #. type: Plain text -#: guix-git/doc/guix.texi:10012 +#: guix-git/doc/guix.texi:10326 msgid "The @code{(guix packages)} module exports the following package-related monadic procedures:" msgstr "El módulo @code{(guix packages)} exporta los siguientes procedimientos monádicos relacionados con paquetes:" #. type: deffn -#: guix-git/doc/guix.texi:10013 +#: guix-git/doc/guix.texi:10327 #, no-wrap msgid "{Monadic Procedure} package-file @var{package} [@var{file}] @" msgstr "{Procedimiento monádico} package-file @var{paquete} [@var{archivo}] @" #. type: deffn -#: guix-git/doc/guix.texi:10021 +#: guix-git/doc/guix.texi:10335 msgid "[#:system (%current-system)] [#:target #f] @ [#:output \"out\"] Return as a monadic value in the absolute file name of @var{file} within the @var{output} directory of @var{package}. When @var{file} is omitted, return the name of the @var{output} directory of @var{package}. When @var{target} is true, use it as a cross-compilation target triplet." msgstr "" "[#:system (%current-system)] [#:target #f] @\n" @@ -20153,101 +20752,101 @@ msgstr "" "Devuelve como un valor monádico el nombre absoluto de archivo de @var{archivo} dentro del directorio de salida @var{output} del @var{paquete}. Cuando se omite @var{archivo}, devuelve el nombre del directorio de salida @var{output} del @var{paquete}. Cuando @var{target} es verdadero, se usa como una tripleta de compilación cruzada." #. type: deffn -#: guix-git/doc/guix.texi:10025 +#: guix-git/doc/guix.texi:10339 msgid "Note that this procedure does @emph{not} build @var{package}. Thus, the result might or might not designate an existing file. We recommend not using this procedure unless you know what you are doing." msgstr "Tenga en cuenta que este procedimiento @emph{no} construye @var{paquete}. Por lo tanto, el resultado puede designar o no un archivo existente. Le recomendamos que no use este procedimiento a no ser que sepa qué está haciendo." #. type: deffn -#: guix-git/doc/guix.texi:10027 +#: guix-git/doc/guix.texi:10341 #, no-wrap msgid "{Monadic Procedure} package->derivation @var{package} [@var{system}]" msgstr "{Procedimiento monádico} package->derivation @var{paquete} [@var{sistema}]" #. type: deffnx -#: guix-git/doc/guix.texi:10028 +#: guix-git/doc/guix.texi:10342 #, no-wrap msgid "{Monadic Procedure} package->cross-derivation @var{package} @" msgstr "{Procedimiento monádico} package->cross-derivation @var{paquete} @" #. type: deffn -#: guix-git/doc/guix.texi:10032 +#: guix-git/doc/guix.texi:10346 msgid "@var{target} [@var{system}] Monadic version of @code{package-derivation} and @code{package-cross-derivation} (@pxref{Defining Packages})." msgstr "" "@var{objetivo} [@var{sistema}]\n" "Versión monádica de @code{package-derivation} y @code{package-cross-derivation} (@pxref{Defining Packages})." #. type: cindex -#: guix-git/doc/guix.texi:10038 +#: guix-git/doc/guix.texi:10352 #, no-wrap msgid "G-expression" msgstr "expresión-G" # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:10039 +#: guix-git/doc/guix.texi:10353 #, no-wrap msgid "build code quoting" msgstr "escape de código de construcción" #. type: Plain text -#: guix-git/doc/guix.texi:10045 +#: guix-git/doc/guix.texi:10359 msgid "So we have ``derivations'', which represent a sequence of build actions to be performed to produce an item in the store (@pxref{Derivations}). These build actions are performed when asking the daemon to actually build the derivations; they are run by the daemon in a container (@pxref{Invoking guix-daemon})." msgstr "Por tanto tenemos ``derivaciones'', que representan una secuencia de acciones de construcción a realizar para producir un elemento en el almacén (@pxref{Derivations}). Estas acciones de construcción se llevan a cabo cuando se solicita al daemon construir realmente la derivación; se ejecutan por el daemon en un contenedor (@pxref{Invoking guix-daemon})." #. type: cindex -#: guix-git/doc/guix.texi:10048 +#: guix-git/doc/guix.texi:10362 #, no-wrap msgid "strata of code" msgstr "estratos de código" #. type: Plain text -#: guix-git/doc/guix.texi:10060 +#: guix-git/doc/guix.texi:10374 msgid "It should come as no surprise that we like to write these build actions in Scheme. When we do that, we end up with two @dfn{strata} of Scheme code@footnote{The term @dfn{stratum} in this context was coined by Manuel Serrano et al.@: in the context of their work on Hop. Oleg Kiselyov, who has written insightful @url{http://okmij.org/ftp/meta-programming/#meta-scheme, essays and code on this topic}, refers to this kind of code generation as @dfn{staging}.}: the ``host code''---code that defines packages, talks to the daemon, etc.---and the ``build code''---code that actually performs build actions, such as making directories, invoking @command{make}, and so on (@pxref{Build Phases})." msgstr "No debería ser ninguna sorpresa que nos guste escribir estas acciones de construcción en Scheme. Cuando lo hacemos, terminamos con dos @dfn{estratos} de código Scheme@footnote{El término @dfn{estrato} en este contexto se debe a Manuel Serrano et al.@: en el contexto de su trabajo en Hop. Oleg Kiselyov, quien ha escrito profundos @url{http://okmij.org/ftp/meta-programming/#meta-scheme, ensayos sobre el tema}, se refiere a este tipo de generación de código como separación en etapas o @dfn{staging}.}: el ``código anfitrión''---código que define paquetes, habla al daemon, etc.---y el ``código de construcción''---código que realmente realiza las acciones de construcción, como la creación de directorios, la invocación de @command{make}, etcétera (@pxref{Build Phases})." #. type: Plain text -#: guix-git/doc/guix.texi:10067 +#: guix-git/doc/guix.texi:10381 msgid "To describe a derivation and its build actions, one typically needs to embed build code inside host code. It boils down to manipulating build code as data, and the homoiconicity of Scheme---code has a direct representation as data---comes in handy for that. But we need more than the normal @code{quasiquote} mechanism in Scheme to construct build expressions." msgstr "Para describir una derivación y sus acciones de construcción, típicamente se necesita embeber código de construcción dentro del código anfitrión. Se resume en la manipulación de código de construcción como datos, y la homoiconicidad de Scheme---el código tiene representación directa como datos---es útil para ello. Pero necesitamos más que el mecanismo normal de @code{quasiquote} en Scheme para construir expresiones de construcción." #. type: Plain text -#: guix-git/doc/guix.texi:10076 +#: guix-git/doc/guix.texi:10390 msgid "The @code{(guix gexp)} module implements @dfn{G-expressions}, a form of S-expressions adapted to build expressions. G-expressions, or @dfn{gexps}, consist essentially of three syntactic forms: @code{gexp}, @code{ungexp}, and @code{ungexp-splicing} (or simply: @code{#~}, @code{#$}, and @code{#$@@}), which are comparable to @code{quasiquote}, @code{unquote}, and @code{unquote-splicing}, respectively (@pxref{Expression Syntax, @code{quasiquote},, guile, GNU Guile Reference Manual}). However, there are major differences:" msgstr "El módulo @code{(guix gexp)} implementa las @dfn{expresiones-G}, una forma de expresiones-S adaptada para expresiones de construcción. Las expresiones-G, o @dfn{gexps}, consiste esencialmente en tres formas sintácticas: @code{gexp}, @code{ungexp} y @code{ungexp-splicing} (o simplemente: @code{#~}, @code{#$} y @code{#$@@}), que son comparables a @code{quasiquote}, @code{unquote} y @code{unquote-splicing}, respectivamente (@pxref{Expression Syntax, @code{quasiquote},, guile, GNU Guile Reference Manual}). No obstante, hay importantes diferencias:" #. type: itemize -#: guix-git/doc/guix.texi:10081 +#: guix-git/doc/guix.texi:10395 msgid "Gexps are meant to be written to a file and run or manipulated by other processes." msgstr "Las expresiones-G están destinadas a escribirse en un archivo y ser ejecutadas o manipuladas por otros procesos." #. type: itemize -#: guix-git/doc/guix.texi:10086 +#: guix-git/doc/guix.texi:10400 msgid "When a high-level object such as a package or derivation is unquoted inside a gexp, the result is as if its output file name had been introduced." msgstr "Cuando un objeto de alto nivel como un paquete o una derivación se expande dentro de una expresión-G, el resultado es el mismo que la introducción de su nombre de archivo de salida." #. type: itemize -#: guix-git/doc/guix.texi:10091 +#: guix-git/doc/guix.texi:10405 msgid "Gexps carry information about the packages or derivations they refer to, and these dependencies are automatically added as inputs to the build processes that use them." msgstr "Las expresiones-G transportan información acerca de los paquetes o derivaciones que referencian, y estas referencias se añaden automáticamente como entradas al proceso de construcción que las usa." #. type: cindex -#: guix-git/doc/guix.texi:10093 guix-git/doc/guix.texi:10650 +#: guix-git/doc/guix.texi:10407 guix-git/doc/guix.texi:10964 #, no-wrap msgid "lowering, of high-level objects in gexps" msgstr "bajada de nivel, de objetos de alto nivel en expresiones-G" #. type: Plain text -#: guix-git/doc/guix.texi:10103 +#: guix-git/doc/guix.texi:10417 msgid "This mechanism is not limited to package and derivation objects: @dfn{compilers} able to ``lower'' other high-level objects to derivations or files in the store can be defined, such that these objects can also be inserted into gexps. For example, a useful type of high-level objects that can be inserted in a gexp is ``file-like objects'', which make it easy to add files to the store and to refer to them in derivations and such (see @code{local-file} and @code{plain-file} below)." msgstr "Este mecanismo no se limita a objetos de paquete ni derivación: pueden definirse @dfn{compiladores} capaces de ``bajar el nivel'' de otros objetos de alto nivel a derivaciones o archivos en el almacén, de modo que esos objetos puedan introducirse también en expresiones-G. Por ejemplo, un tipo útil de objetos de alto nivel que pueden insertarse en una expresión-G son los ``objetos tipo-archivo'', los cuales facilitan la adición de archivos al almacén y su referencia en derivaciones y demás (vea @code{local-file} y @code{plain-file} más adelante)." #. type: Plain text -#: guix-git/doc/guix.texi:10105 +#: guix-git/doc/guix.texi:10419 msgid "To illustrate the idea, here is an example of a gexp:" msgstr "Para ilustrar la idea, aquí está un ejemplo de expresión-G:" #. type: lisp -#: guix-git/doc/guix.texi:10113 +#: guix-git/doc/guix.texi:10427 #, no-wrap msgid "" "(define build-exp\n" @@ -20265,34 +20864,34 @@ msgstr "" " \"enumera-archivos\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:10118 +#: guix-git/doc/guix.texi:10432 msgid "This gexp can be passed to @code{gexp->derivation}; we obtain a derivation that builds a directory containing exactly one symlink to @file{/gnu/store/@dots{}-coreutils-8.22/bin/ls}:" msgstr "Esta expresión-G puede pasarse a @code{gexp->derivation}; obtenemos una derivación que construye un directorio que contiene exactamente un enlace simbólico a @file{/gnu/store/@dots{}-coreutils-8.22/bin/ls}:" #. type: lisp -#: guix-git/doc/guix.texi:10121 +#: guix-git/doc/guix.texi:10435 #, no-wrap msgid "(gexp->derivation \"the-thing\" build-exp)\n" msgstr "(gexp->derivation \"la-cosa\" exp-construccion)\n" #. type: Plain text -#: guix-git/doc/guix.texi:10129 +#: guix-git/doc/guix.texi:10443 msgid "As one would expect, the @code{\"/gnu/store/@dots{}-coreutils-8.22\"} string is substituted to the reference to the @var{coreutils} package in the actual build code, and @var{coreutils} is automatically made an input to the derivation. Likewise, @code{#$output} (equivalent to @code{(ungexp output)}) is replaced by a string containing the directory name of the output of the derivation." msgstr "Como se puede esperar, la cadena @code{\"/gnu/store/@dots{}-coreutils-8.22\"} se sustituye por la referencia al paquete @var{coreutils} en el código de construcción real, y @var{coreutils} se marca automáticamente como una entrada a la derivación. Del mismo modo, @code{#$output} (equivalente a @code{(ungexp output)}) se reemplaza por una cadena que contiene el nombre del directorio de la salida de la derivación." #. type: cindex -#: guix-git/doc/guix.texi:10130 +#: guix-git/doc/guix.texi:10444 #, no-wrap msgid "cross compilation" msgstr "compilación cruzada" #. type: Plain text -#: guix-git/doc/guix.texi:10136 +#: guix-git/doc/guix.texi:10450 msgid "In a cross-compilation context, it is useful to distinguish between references to the @emph{native} build of a package---that can run on the host---versus references to cross builds of a package. To that end, the @code{#+} plays the same role as @code{#$}, but is a reference to a native package build:" msgstr "En un contexto de compilación cruzada, es útil distinguir entre referencias a construcciones @emph{nativas} del paquete---que pueden ejecutarse en el sistema anfitrión---de referencias de compilaciones cruzadas de un paquete. Para dicho fin, @code{#+} tiene el mismo papel que @code{#$}, pero es una referencia a una construcción nativa del paquete:" #. type: lisp -#: guix-git/doc/guix.texi:10147 +#: guix-git/doc/guix.texi:10461 #, no-wrap msgid "" "(gexp->derivation \"vi\"\n" @@ -20316,29 +20915,29 @@ msgstr "" " #:target \"aarch64-linux-gnu\")\n" #. type: Plain text -#: guix-git/doc/guix.texi:10153 +#: guix-git/doc/guix.texi:10467 msgid "In the example above, the native build of @var{coreutils} is used, so that @command{ln} can actually run on the host; but then the cross-compiled build of @var{emacs} is referenced." msgstr "En el ejemplo previo, se usa la construcción nativa de @var{coreutils}, de modo que @command{ln} pueda realmente ejecutarse en el anfitrión; pero se hace referencia a la construcción de compilación cruzada de @var{emacs}." #. type: cindex -#: guix-git/doc/guix.texi:10154 +#: guix-git/doc/guix.texi:10468 #, no-wrap msgid "imported modules, for gexps" msgstr "módulos importados, para expresiones-G" #. type: findex -#: guix-git/doc/guix.texi:10155 +#: guix-git/doc/guix.texi:10469 #, no-wrap msgid "with-imported-modules" msgstr "with-imported-modules" #. type: Plain text -#: guix-git/doc/guix.texi:10160 +#: guix-git/doc/guix.texi:10474 msgid "Another gexp feature is @dfn{imported modules}: sometimes you want to be able to use certain Guile modules from the ``host environment'' in the gexp, so those modules should be imported in the ``build environment''. The @code{with-imported-modules} form allows you to express that:" msgstr "Otra característica de las expresiones-G son los @dfn{módulos importados}: a veces deseará ser capaz de usar determinados módulos Guile del ``entorno anfitrión'' en la expresión-G, de modo que esos módulos deban ser importados en el ``entorno de construcción''. La forma @code{with-imported-modules} le permite expresarlo:" #. type: lisp -#: guix-git/doc/guix.texi:10171 +#: guix-git/doc/guix.texi:10485 #, no-wrap msgid "" "(let ((build (with-imported-modules '((guix build utils))\n" @@ -20362,29 +20961,29 @@ msgstr "" " #t)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:10177 +#: guix-git/doc/guix.texi:10491 msgid "In this example, the @code{(guix build utils)} module is automatically pulled into the isolated build environment of our gexp, such that @code{(use-modules (guix build utils))} works as expected." msgstr "En este ejemplo, el módulo @code{(guix build utils)} se incorpora automáticamente dentro del entorno de construcción aislado de nuestra expresión-G, de modo que @code{(use-modules (guix build utils))} funciona como se espera." #. type: cindex -#: guix-git/doc/guix.texi:10178 +#: guix-git/doc/guix.texi:10492 #, no-wrap msgid "module closure" msgstr "clausura de módulos" #. type: findex -#: guix-git/doc/guix.texi:10179 +#: guix-git/doc/guix.texi:10493 #, no-wrap msgid "source-module-closure" msgstr "source-module-closure" #. type: Plain text -#: guix-git/doc/guix.texi:10186 +#: guix-git/doc/guix.texi:10500 msgid "Usually you want the @emph{closure} of the module to be imported---i.e., the module itself and all the modules it depends on---rather than just the module; failing to do that, attempts to use the module will fail because of missing dependent modules. The @code{source-module-closure} procedure computes the closure of a module by looking at its source file headers, which comes in handy in this case:" msgstr "De manera habitual deseará que la @emph{clausura} del módulo se importe---es decir, el módulo en sí y todos los módulos de los que depende---en vez del módulo únicamente; si no se hace, cualquier intento de uso del módulo fallará porque faltan módulos dependientes. El procedimiento @code{source-module-closure} computa la clausura de un módulo mirando en las cabeceras de sus archivos de fuentes, lo que es útil en este caso:" #. type: lisp -#: guix-git/doc/guix.texi:10189 +#: guix-git/doc/guix.texi:10503 #, no-wrap msgid "" "(use-modules (guix modules)) ;for 'source-module-closure'\n" @@ -20394,7 +20993,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:10198 +#: guix-git/doc/guix.texi:10512 #, fuzzy, no-wrap #| msgid "" #| "(with-imported-modules (source-module-closure\n" @@ -20425,24 +21024,24 @@ msgstr "" " @dots{})))\n" #. type: cindex -#: guix-git/doc/guix.texi:10200 +#: guix-git/doc/guix.texi:10514 #, no-wrap msgid "extensions, for gexps" msgstr "extensiones, para expresiones G" #. type: findex -#: guix-git/doc/guix.texi:10201 +#: guix-git/doc/guix.texi:10515 #, no-wrap msgid "with-extensions" msgstr "with-extensions" #. type: Plain text -#: guix-git/doc/guix.texi:10206 +#: guix-git/doc/guix.texi:10520 msgid "In the same vein, sometimes you want to import not just pure-Scheme modules, but also ``extensions'' such as Guile bindings to C libraries or other ``full-blown'' packages. Say you need the @code{guile-json} package available on the build side, here's how you would do it:" msgstr "De la misma manera, a veces deseará importar no únicamente módulos puros de Scheme, pero también ``extensiones'' como enlaces Guile a bibliotecas C u otros paquetes ``completos''. Si, digamos, necesitase el paquete @code{guile-json} disponible en el lado de construcción, esta sería la forma de hacerlo:" #. type: lisp -#: guix-git/doc/guix.texi:10209 +#: guix-git/doc/guix.texi:10523 #, no-wrap msgid "" "(use-modules (gnu packages guile)) ;for 'guile-json'\n" @@ -20452,7 +21051,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:10215 +#: guix-git/doc/guix.texi:10529 #, no-wrap msgid "" "(with-extensions (list guile-json)\n" @@ -20468,184 +21067,184 @@ msgstr "" " @dots{})))\n" #. type: Plain text -#: guix-git/doc/guix.texi:10218 +#: guix-git/doc/guix.texi:10532 msgid "The syntactic form to construct gexps is summarized below." msgstr "La forma sintáctica para construir expresiones-G se resume a continuación." #. type: deffn -#: guix-git/doc/guix.texi:10219 +#: guix-git/doc/guix.texi:10533 #, no-wrap msgid "{Scheme Syntax} #~@var{exp}" msgstr "{Sintaxis Scheme} #~@var{exp}" #. type: deffnx -#: guix-git/doc/guix.texi:10220 +#: guix-git/doc/guix.texi:10534 #, no-wrap msgid "{Scheme Syntax} (gexp @var{exp})" msgstr "{Sintaxis Scheme} (gexp @var{exp})" #. type: deffn -#: guix-git/doc/guix.texi:10223 +#: guix-git/doc/guix.texi:10537 msgid "Return a G-expression containing @var{exp}. @var{exp} may contain one or more of the following forms:" msgstr "Devuelve una expresión-G que contiene @var{exp}. @var{exp} puede contener una o más de las siguientes formas:" #. type: item -#: guix-git/doc/guix.texi:10225 +#: guix-git/doc/guix.texi:10539 #, no-wrap msgid "#$@var{obj}" msgstr "#$@var{obj}" #. type: itemx -#: guix-git/doc/guix.texi:10226 +#: guix-git/doc/guix.texi:10540 #, no-wrap msgid "(ungexp @var{obj})" msgstr "(ungexp @var{obj})" #. type: table -#: guix-git/doc/guix.texi:10231 +#: guix-git/doc/guix.texi:10545 msgid "Introduce a reference to @var{obj}. @var{obj} may have one of the supported types, for example a package or a derivation, in which case the @code{ungexp} form is replaced by its output file name---e.g., @code{\"/gnu/store/@dots{}-coreutils-8.22}." msgstr "Introduce una referencia a @var{obj}. @var{obj} puede tener uno de los tipos permitidos, por ejemplo un paquete o derivación, en cuyo caso la forma @code{ungexp} se substituye por el nombre de archivo de su salida---por ejemplo, @code{\"/gnu/store/@dots{}-coreutils-8.22}." #. type: table -#: guix-git/doc/guix.texi:10234 +#: guix-git/doc/guix.texi:10548 msgid "If @var{obj} is a list, it is traversed and references to supported objects are substituted similarly." msgstr "Si @var{obj} es una lista, se recorre y las referencias a objetos permitidos se substituyen de manera similar." #. type: table -#: guix-git/doc/guix.texi:10237 +#: guix-git/doc/guix.texi:10551 msgid "If @var{obj} is another gexp, its contents are inserted and its dependencies are added to those of the containing gexp." msgstr "Si @var{obj} es otra expresión-G, su contenido se inserta y sus dependencias se añaden a aquellas de la expresión-G que la contiene." #. type: table -#: guix-git/doc/guix.texi:10239 +#: guix-git/doc/guix.texi:10553 msgid "If @var{obj} is another kind of object, it is inserted as is." msgstr "Si @var{obj} es otro tipo de objeto, se inserta tal cual es." #. type: item -#: guix-git/doc/guix.texi:10240 +#: guix-git/doc/guix.texi:10554 #, no-wrap msgid "#$@var{obj}:@var{output}" msgstr "#$@var{obj}:@var{salida}" #. type: itemx -#: guix-git/doc/guix.texi:10241 +#: guix-git/doc/guix.texi:10555 #, no-wrap msgid "(ungexp @var{obj} @var{output})" msgstr "(ungexp @var{obj} @var{salida})" #. type: table -#: guix-git/doc/guix.texi:10245 +#: guix-git/doc/guix.texi:10559 msgid "This is like the form above, but referring explicitly to the @var{output} of @var{obj}---this is useful when @var{obj} produces multiple outputs (@pxref{Packages with Multiple Outputs})." msgstr "Como la forma previa, pero referenciando explícitamente la @var{salida} de @var{obj}---esto es útil cuando @var{obj} produce múltiples salidas (@pxref{Packages with Multiple Outputs})." #. type: item -#: guix-git/doc/guix.texi:10246 +#: guix-git/doc/guix.texi:10560 #, no-wrap msgid "#+@var{obj}" msgstr "#+@var{obj}" #. type: itemx -#: guix-git/doc/guix.texi:10247 +#: guix-git/doc/guix.texi:10561 #, no-wrap msgid "#+@var{obj}:output" msgstr "#+@var{obj}:salida" #. type: itemx -#: guix-git/doc/guix.texi:10248 +#: guix-git/doc/guix.texi:10562 #, no-wrap msgid "(ungexp-native @var{obj})" msgstr "(ungexp-native @var{obj})" #. type: itemx -#: guix-git/doc/guix.texi:10249 +#: guix-git/doc/guix.texi:10563 #, no-wrap msgid "(ungexp-native @var{obj} @var{output})" msgstr "(ungexp-native @var{obj} @var{salida})" #. type: table -#: guix-git/doc/guix.texi:10252 +#: guix-git/doc/guix.texi:10566 msgid "Same as @code{ungexp}, but produces a reference to the @emph{native} build of @var{obj} when used in a cross compilation context." msgstr "Igual que @code{ungexp}, pero produce una referencia a la construcción @emph{nativa} de @var{obj} cuando se usa en un contexto de compilación cruzada." #. type: item -#: guix-git/doc/guix.texi:10253 +#: guix-git/doc/guix.texi:10567 #, no-wrap msgid "#$output[:@var{output}]" msgstr "#$output[:@var{salida}]" #. type: itemx -#: guix-git/doc/guix.texi:10254 +#: guix-git/doc/guix.texi:10568 #, no-wrap msgid "(ungexp output [@var{output}])" msgstr "(ungexp output [@var{salida}])" #. type: table -#: guix-git/doc/guix.texi:10257 +#: guix-git/doc/guix.texi:10571 msgid "Insert a reference to derivation output @var{output}, or to the main output when @var{output} is omitted." msgstr "Inserta una referencia a la salida de la derivación @var{salida}, o a la salida principal cuando @var{salida} se omite." #. type: table -#: guix-git/doc/guix.texi:10259 +#: guix-git/doc/guix.texi:10573 msgid "This only makes sense for gexps passed to @code{gexp->derivation}." msgstr "Esto únicamente tiene sentido para expresiones-G pasadas a @code{gexp->derivation}." #. type: item -#: guix-git/doc/guix.texi:10260 +#: guix-git/doc/guix.texi:10574 #, no-wrap msgid "#$@@@var{lst}" msgstr "#$@@@var{lst}" #. type: itemx -#: guix-git/doc/guix.texi:10261 +#: guix-git/doc/guix.texi:10575 #, no-wrap msgid "(ungexp-splicing @var{lst})" msgstr "(ungexp-splicing @var{lst})" #. type: table -#: guix-git/doc/guix.texi:10264 +#: guix-git/doc/guix.texi:10578 msgid "Like the above, but splices the contents of @var{lst} inside the containing list." msgstr "Lo mismo que la forma previa, pero expande el contenido de la lista @var{lst} como parte de la lista que la contiene." #. type: item -#: guix-git/doc/guix.texi:10265 +#: guix-git/doc/guix.texi:10579 #, no-wrap msgid "#+@@@var{lst}" msgstr "#+@@@var{lst}" #. type: itemx -#: guix-git/doc/guix.texi:10266 +#: guix-git/doc/guix.texi:10580 #, no-wrap msgid "(ungexp-native-splicing @var{lst})" msgstr "(ungexp-native-splicing @var{lst})" #. type: table -#: guix-git/doc/guix.texi:10269 +#: guix-git/doc/guix.texi:10583 msgid "Like the above, but refers to native builds of the objects listed in @var{lst}." msgstr "Lo mismo que la forma previa, pero hace referencia a las construcciones nativas de los objetos listados en @var{lst}." #. type: deffn -#: guix-git/doc/guix.texi:10274 +#: guix-git/doc/guix.texi:10588 msgid "G-expressions created by @code{gexp} or @code{#~} are run-time objects of the @code{gexp?} type (see below)." msgstr "Las expresiones-G creadas por @code{gexp} o @code{#~} son objetos del tipo @code{gexp?} en tiempo de ejecución (véase a continuación)." #. type: deffn -#: guix-git/doc/guix.texi:10276 +#: guix-git/doc/guix.texi:10590 #, no-wrap msgid "{Scheme Syntax} with-imported-modules @var{modules} @var{body}@dots{}" msgstr "{Sintaxis Scheme} with-imported-modules @var{módulos} @var{cuerpo}@dots{}" #. type: deffn -#: guix-git/doc/guix.texi:10279 +#: guix-git/doc/guix.texi:10593 msgid "Mark the gexps defined in @var{body}@dots{} as requiring @var{modules} in their execution environment." msgstr "Marca las expresiones-G definidas en el @var{cuerpo}@dots{} como si requiriesen @var{módulos} en su entorno de ejecución." #. type: deffn -#: guix-git/doc/guix.texi:10283 +#: guix-git/doc/guix.texi:10597 msgid "Each item in @var{modules} can be the name of a module, such as @code{(guix build utils)}, or it can be a module name, followed by an arrow, followed by a file-like object:" msgstr "Cada elemento en @var{módulos} puede ser el nombre de un módulo, como @code{(guix build utils)}, o puede ser el nombre de un módulo, seguido de una flecha, seguido de un objeto tipo-archivo:" #. type: lisp -#: guix-git/doc/guix.texi:10289 +#: guix-git/doc/guix.texi:10603 #, no-wrap msgid "" "`((guix build utils)\n" @@ -20659,55 +21258,55 @@ msgstr "" " #~(define-module @dots{}))))\n" #. type: deffn -#: guix-git/doc/guix.texi:10294 +#: guix-git/doc/guix.texi:10608 msgid "In the example above, the first two modules are taken from the search path, and the last one is created from the given file-like object." msgstr "En el ejemplo previo, los dos primeros módulos se toman de la ruta de búsqueda, y el último se crea desde el objeto tipo-archivo proporcionado." #. type: deffn -#: guix-git/doc/guix.texi:10298 +#: guix-git/doc/guix.texi:10612 msgid "This form has @emph{lexical} scope: it has an effect on the gexps directly defined in @var{body}@dots{}, but not on those defined, say, in procedures called from @var{body}@dots{}." msgstr "Esta forma tiene ámbito @emph{léxico}: tiene efecto en las expresiones-G definidas en @var{cuerpo}@dots{}, pero no en aquellas definidas, digamos, en procedimientos llamados por @var{cuerpo}@dots{}." #. type: deffn -#: guix-git/doc/guix.texi:10300 +#: guix-git/doc/guix.texi:10614 #, no-wrap msgid "{Scheme Syntax} with-extensions @var{extensions} @var{body}@dots{}" msgstr "{Sintaxis Scheme} with-extensions @var{extensiones} @var{cuerpo}@dots{}" #. type: deffn -#: guix-git/doc/guix.texi:10305 +#: guix-git/doc/guix.texi:10619 msgid "Mark the gexps defined in @var{body}@dots{} as requiring @var{extensions} in their build and execution environment. @var{extensions} is typically a list of package objects such as those defined in the @code{(gnu packages guile)} module." msgstr "Marca que las expresiones definidas en @var{cuerpo}@dots{} requieren @var{extensiones} en su entorno de construcción y ejecución. @var{extensiones} es típicamente una lista de objetos de paquetes como los que se definen en el módulo @code{(gnu packages guile)}." #. type: deffn -#: guix-git/doc/guix.texi:10310 +#: guix-git/doc/guix.texi:10624 msgid "Concretely, the packages listed in @var{extensions} are added to the load path while compiling imported modules in @var{body}@dots{}; they are also added to the load path of the gexp returned by @var{body}@dots{}." msgstr "De manera concreta, los paquetes listados en @var{extensiones} se añaden a la ruta de carga mientras se compilan los módulos importados en @var{cuerpo}@dots{}; también se añaden a la ruta de carga en la expresión-G devuelta por @var{cuerpo}@dots{}." #. type: deffn -#: guix-git/doc/guix.texi:10312 +#: guix-git/doc/guix.texi:10626 #, no-wrap msgid "{Scheme Procedure} gexp? @var{obj}" msgstr "{Procedimiento Scheme} gexp? @var{obj}" #. type: deffn -#: guix-git/doc/guix.texi:10314 +#: guix-git/doc/guix.texi:10628 msgid "Return @code{#t} if @var{obj} is a G-expression." msgstr "Devuelve @code{#t} si @var{obj} es una expresión-G." #. type: Plain text -#: guix-git/doc/guix.texi:10320 +#: guix-git/doc/guix.texi:10634 msgid "G-expressions are meant to be written to disk, either as code building some derivation, or as plain files in the store. The monadic procedures below allow you to do that (@pxref{The Store Monad}, for more information about monads)." msgstr "Las expresiones-G están destinadas a escribirse en disco, tanto en código que construye alguna derivación, como en archivos planos en el almacén. Los procedimientos monádicos siguientes le permiten hacerlo (@pxref{The Store Monad}, para más información sobre mónadas)." #. type: deffn -#: guix-git/doc/guix.texi:10321 +#: guix-git/doc/guix.texi:10635 #, no-wrap msgid "{Monadic Procedure} gexp->derivation @var{name} @var{exp} @" msgstr "{Procedimiento monádico} gexp->derivation @var{nombre} @var{exp} @" #. type: deffn -#: guix-git/doc/guix.texi:10339 +#: guix-git/doc/guix.texi:10653 msgid "[#:system (%current-system)] [#:target #f] [#:graft? #t] @ [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:env-vars '()] [#:modules '()] @ [#:module-path @code{%load-path}] @ [#:effective-version \"2.2\"] @ [#:references-graphs #f] [#:allowed-references #f] @ [#:disallowed-references #f] @ [#:leaked-env-vars #f] @ [#:script-name (string-append @var{name} \"-builder\")] @ [#:deprecation-warnings #f] @ [#:local-build? #f] [#:substitutable? #t] @ [#:properties '()] [#:guile-for-build #f] Return a derivation @var{name} that runs @var{exp} (a gexp) with @var{guile-for-build} (a derivation) on @var{system}; @var{exp} is stored in a file called @var{script-name}. When @var{target} is true, it is used as the cross-compilation target triplet for packages referred to by @var{exp}." msgstr "" "[#:system (%current-system)] [#:target #f] [#:graft? #t] @\n" @@ -20725,27 +21324,27 @@ msgstr "" "Devuelve una derivación @var{nombre} que ejecuta @var{exp} (una expresión-G) con @var{guile-for-build} (una derivación) en el sistema @var{system}; @var{exp} se almacena en un archivo llamado @var{script-name}. Cuando @var{target} tiene valor verdadero, se usa como tripleta de compilación cruzada para paquetes a los que haga referencia @var{exp}." #. type: deffn -#: guix-git/doc/guix.texi:10347 +#: guix-git/doc/guix.texi:10661 msgid "@var{modules} is deprecated in favor of @code{with-imported-modules}. Its meaning is to make @var{modules} available in the evaluation context of @var{exp}; @var{modules} is a list of names of Guile modules searched in @var{module-path} to be copied in the store, compiled, and made available in the load path during the execution of @var{exp}---e.g., @code{((guix build utils) (guix build gnu-build-system))}." msgstr "@var{modules} está obsoleto en favor de @code{with-imported-modules}. Su significado es hacer que los módulos @var{modules} estén disponibles en el contexto de evaluación de @var{exp}; @var{modules} es una lista de nombres de módulos Guile buscados en @var{module-path} para ser copiados al almacén, compilados y disponibles en la ruta de carga durante la ejecución de @var{exp}---por ejemplo, @code{((guix build utils) (gui build gnu-build-system))}." #. type: deffn -#: guix-git/doc/guix.texi:10350 +#: guix-git/doc/guix.texi:10664 msgid "@var{effective-version} determines the string to use when adding extensions of @var{exp} (see @code{with-extensions}) to the search path---e.g., @code{\"2.2\"}." msgstr "@var{effective-version} determina la cadena usada cuando se añaden las extensiones de @var{exp} (vea @code{with-extensions}) a la ruta de búsqueda---por ejemplo, @code{\"2.2\"}." #. type: deffn -#: guix-git/doc/guix.texi:10353 +#: guix-git/doc/guix.texi:10667 msgid "@var{graft?} determines whether packages referred to by @var{exp} should be grafted when applicable." msgstr "@var{graft?} determina si los paquetes a los que @var{exp} hace referencia deben ser injertados cuando sea posible." #. type: deffn -#: guix-git/doc/guix.texi:10356 +#: guix-git/doc/guix.texi:10670 msgid "When @var{references-graphs} is true, it must be a list of tuples of one of the following forms:" msgstr "Cuando @var{references-graphs} es verdadero, debe ser una lista de tuplas de una de las formas siguientes:" #. type: example -#: guix-git/doc/guix.texi:10363 +#: guix-git/doc/guix.texi:10677 #, no-wrap msgid "" "(@var{file-name} @var{package})\n" @@ -20761,39 +21360,39 @@ msgstr "" "(@var{nombre-archivo} @var{elemento-almacén})\n" #. type: deffn -#: guix-git/doc/guix.texi:10369 +#: guix-git/doc/guix.texi:10683 msgid "The right-hand-side of each element of @var{references-graphs} is automatically made an input of the build process of @var{exp}. In the build environment, each @var{file-name} contains the reference graph of the corresponding item, in a simple text format." msgstr "El lado derecho de cada elemento de @var{references-graphs} se convierte automáticamente en una entrada del proceso de construcción de @var{exp}. En el entorno de construcción, cada @var{nombre-archivo} contiene el grafo de referencias del elemento correspondiente, en un formato de texto simple." #. type: deffn -#: guix-git/doc/guix.texi:10375 +#: guix-git/doc/guix.texi:10689 msgid "@var{allowed-references} must be either @code{#f} or a list of output names and packages. In the latter case, the list denotes store items that the result is allowed to refer to. Any reference to another store item will lead to a build error. Similarly for @var{disallowed-references}, which can list items that must not be referenced by the outputs." msgstr "@var{allowed-references} debe ser o bien @code{#f} o una lista de nombres y paquetes de salida. En el último caso, la lista denota elementos del almacén a los que el resultado puede hacer referencia. Cualquier referencia a otro elemento del almacén produce un error de construcción. De igual manera con @var{disallowed-references}, que enumera elementos a los que las salidas no deben hacer referencia." #. type: deffn -#: guix-git/doc/guix.texi:10378 +#: guix-git/doc/guix.texi:10692 msgid "@var{deprecation-warnings} determines whether to show deprecation warnings while compiling modules. It can be @code{#f}, @code{#t}, or @code{'detailed}." msgstr "@var{deprecation-warnings} determina si mostrar avisos de obsolescencia durante la compilación de los módulos. Puede ser @code{#f}, @code{#t} o @code{'detailed}." #. type: deffn -#: guix-git/doc/guix.texi:10380 +#: guix-git/doc/guix.texi:10694 msgid "The other arguments are as for @code{derivation} (@pxref{Derivations})." msgstr "El resto de parámetros funcionan como en @code{derivation} (@pxref{Derivations})." #. type: cindex -#: guix-git/doc/guix.texi:10382 +#: guix-git/doc/guix.texi:10696 #, no-wrap msgid "file-like objects" msgstr "objetos tipo-archivo" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:10387 +#: guix-git/doc/guix.texi:10701 msgid "The @code{local-file}, @code{plain-file}, @code{computed-file}, @code{program-file}, and @code{scheme-file} procedures below return @dfn{file-like objects}. That is, when unquoted in a G-expression, these objects lead to a file in the store. Consider this G-expression:" msgstr "Los procedimientos @code{local-file}, @code{plain-file}, @code{computed-file}, @code{program-file} y @code{scheme-file} a continuación devuelven @dfn{objetos tipo-archivo}. Esto es, cuando se expanden en una expresión-G, estos objetos dirigen a un archivo en el almacén. Considere esta expresión-G:" #. type: lisp -#: guix-git/doc/guix.texi:10391 +#: guix-git/doc/guix.texi:10705 #, no-wrap msgid "" "#~(system* #$(file-append glibc \"/sbin/nscd\") \"-f\"\n" @@ -20803,82 +21402,82 @@ msgstr "" " #$(local-file \"/tmp/mi-nscd.conf\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:10400 +#: guix-git/doc/guix.texi:10714 msgid "The effect here is to ``intern'' @file{/tmp/my-nscd.conf} by copying it to the store. Once expanded, for instance @i{via} @code{gexp->derivation}, the G-expression refers to that copy under @file{/gnu/store}; thus, modifying or removing the file in @file{/tmp} does not have any effect on what the G-expression does. @code{plain-file} can be used similarly; it differs in that the file content is directly passed as a string." msgstr "El efecto aquí es el ``internamiento'' de @file{/tmp/mi-nscd.conf} mediante su copia al almacén. Una vez expandida, por ejemplo @i{vía} @code{gexp->derivation}, la expresión-G hace referencia a la copia bajo @file{/gnu/store}; por tanto, la modificación o el borrado del archivo en @file{/tmp} no tiene ningún efecto en lo que la expresión-G hace. @code{plain-file} puede usarse de manera similar; se diferencia en que el contenido del archivo se proporciona directamente como una cadena." #. type: deffn -#: guix-git/doc/guix.texi:10401 +#: guix-git/doc/guix.texi:10715 #, no-wrap msgid "{Scheme Procedure} local-file @var{file} [@var{name}] @" msgstr "{Procedimiento Scheme} local-file @var{archivo} [@var{nombre}] @" #. type: deffn -#: guix-git/doc/guix.texi:10410 +#: guix-git/doc/guix.texi:10724 msgid "[#:recursive? #f] [#:select? (const #t)] Return an object representing local file @var{file} to add to the store; this object can be used in a gexp. If @var{file} is a literal string denoting a relative file name, it is looked up relative to the source file where it appears; if @var{file} is not a literal string, it is looked up relative to the current working directory at run time. @var{file} will be added to the store under @var{name}--by default the base name of @var{file}." msgstr "" "[#:recursive? #f] [#:select? (const #t)]\n" "Devuelve un objeto que representa el archivo local @var{archivo} a añadir al almacén; este objeto puede usarse en una expresión-G. Si @var{archivo} es un nombre de archivo relativo, se busca de forma relativa al archivo fuente donde esta forma aparece; si @var{archivo} no es una cadena literal, se buscará de manera relativa al directorio de trabajo durante la ejecución. @var{archivo} se añadirá al almacén bajo @var{nombre}---de manera predeterminada el nombre de @var{archivo} sin los directorios." #. type: deffn -#: guix-git/doc/guix.texi:10422 +#: guix-git/doc/guix.texi:10736 msgid "This is the declarative counterpart of the @code{interned-file} monadic procedure (@pxref{The Store Monad, @code{interned-file}})." msgstr "Esta es la contraparte declarativa del procedimiento monádico @code{interned-file} (@pxref{The Store Monad, @code{interned-file}})." #. type: deffn -#: guix-git/doc/guix.texi:10424 +#: guix-git/doc/guix.texi:10738 #, no-wrap msgid "{Scheme Procedure} plain-file @var{name} @var{content}" msgstr "{Procedimiento Scheme} plain-file @var{nombre} @var{contenido}" #. type: deffn -#: guix-git/doc/guix.texi:10427 +#: guix-git/doc/guix.texi:10741 msgid "Return an object representing a text file called @var{name} with the given @var{content} (a string or a bytevector) to be added to the store." msgstr "Devuelve un objeto que representa un archivo de texto llamado @var{nombre} con el @var{contenido} proporcionado (una cadena o un vector de bytes) para ser añadido al almacén." #. type: deffn -#: guix-git/doc/guix.texi:10429 +#: guix-git/doc/guix.texi:10743 msgid "This is the declarative counterpart of @code{text-file}." msgstr "Esta es la contraparte declarativa de @code{text-file}." #. type: deffn -#: guix-git/doc/guix.texi:10431 +#: guix-git/doc/guix.texi:10745 #, no-wrap msgid "{Scheme Procedure} computed-file @var{name} @var{gexp} @" msgstr "{Procedimiento Scheme} computed-file @var{nombre} @var{gexp} @" #. type: deffn -#: guix-git/doc/guix.texi:10438 +#: guix-git/doc/guix.texi:10752 msgid "[#:local-build? #t] [#:options '()] Return an object representing the store item @var{name}, a file or directory computed by @var{gexp}. When @var{local-build?} is true (the default), the derivation is built locally. @var{options} is a list of additional arguments to pass to @code{gexp->derivation}." msgstr "" "[#:local-build? #t] [#:options '()]\n" "Devuelve un objeto que representa el elemento del almacén @var{nombre}, un archivo o un directorio computado por @var{gexp}. Cuando @var{local-build?} tiene valor verdadero (el caso predeterminado), la derivación se construye de manera local. @var{options} es una lista de parámetros adicionales proporcionados a @code{gexp->derivation}." #. type: deffn -#: guix-git/doc/guix.texi:10440 +#: guix-git/doc/guix.texi:10754 msgid "This is the declarative counterpart of @code{gexp->derivation}." msgstr "Esta es la contraparte declarativa de @code{gexp->derivation}." #. type: deffn -#: guix-git/doc/guix.texi:10442 +#: guix-git/doc/guix.texi:10756 #, no-wrap msgid "{Monadic Procedure} gexp->script @var{name} @var{exp} @" msgstr "{Procedimiento monádico} gexp->script @var{nombre} @var{exp} @" #. type: deffn -#: guix-git/doc/guix.texi:10448 +#: guix-git/doc/guix.texi:10762 msgid "[#:guile (default-guile)] [#:module-path %load-path] @ [#:system (%current-system)] [#:target #f] Return an executable script @var{name} that runs @var{exp} using @var{guile}, with @var{exp}'s imported modules in its search path. Look up @var{exp}'s modules in @var{module-path}." msgstr "" "[#:guile (default-guile)] [#:module-path %load-path] @ [#:system (%current-system)] [#:target #f]\n" "Devuelve un guión ejecutable @var{nombre} que ejecuta @var{exp} usando @var{guile}, con los módulos importados por @var{exp} en su ruta de búsqueda. Busca los módulos de @var{exp} en @var{module-path}." #. type: deffn -#: guix-git/doc/guix.texi:10451 +#: guix-git/doc/guix.texi:10765 msgid "The example below builds a script that simply invokes the @command{ls} command:" msgstr "El ejemplo siguiente construye un guión que simplemente invoca la orden @command{ls}:" #. type: lisp -#: guix-git/doc/guix.texi:10454 +#: guix-git/doc/guix.texi:10768 #, no-wrap msgid "" "(use-modules (guix gexp) (gnu packages base))\n" @@ -20888,7 +21487,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:10458 +#: guix-git/doc/guix.texi:10772 #, no-wrap msgid "" "(gexp->script \"list-files\"\n" @@ -20900,12 +21499,12 @@ msgstr "" " \"ls\"))\n" #. type: deffn -#: guix-git/doc/guix.texi:10463 +#: guix-git/doc/guix.texi:10777 msgid "When ``running'' it through the store (@pxref{The Store Monad, @code{run-with-store}}), we obtain a derivation that produces an executable file @file{/gnu/store/@dots{}-list-files} along these lines:" msgstr "Cuando se ejecuta a través del almacén (@pxref{The Store Monad, @code{run-with-store}}), obtenemos una derivación que produce un archivo ejecutable @file{/gnu/store/@dots{}-enumera-archivos} más o menos así:" #. type: example -#: guix-git/doc/guix.texi:10468 +#: guix-git/doc/guix.texi:10782 #, no-wrap msgid "" "#!/gnu/store/@dots{}-guile-2.0.11/bin/guile -ds\n" @@ -20917,25 +21516,25 @@ msgstr "" "(execl \"/gnu/store/@dots{}-coreutils-8.22\"/bin/ls\" \"ls\")\n" #. type: deffn -#: guix-git/doc/guix.texi:10471 +#: guix-git/doc/guix.texi:10785 #, no-wrap msgid "{Scheme Procedure} program-file @var{name} @var{exp} @" msgstr "{Procedimiento Scheme} program-file @var{nombre} @var{exp} @" #. type: deffn -#: guix-git/doc/guix.texi:10476 +#: guix-git/doc/guix.texi:10790 msgid "[#:guile #f] [#:module-path %load-path] Return an object representing the executable store item @var{name} that runs @var{gexp}. @var{guile} is the Guile package used to execute that script. Imported modules of @var{gexp} are looked up in @var{module-path}." msgstr "" "[#:guile #f] [#:module-path %load-path]\n" "Devuelve un objeto que representa el elemento ejecutable del almacén @var{nombre} que ejecuta @var{gexp}. @var{guile} es el paquete Guile usado para ejecutar el guión. Los módulos importados por @var{gexp} se buscan en @var{module-path}." #. type: deffn -#: guix-git/doc/guix.texi:10478 +#: guix-git/doc/guix.texi:10792 msgid "This is the declarative counterpart of @code{gexp->script}." msgstr "Esta es la contraparte declarativa de @code{gexp->script}." #. type: deffn -#: guix-git/doc/guix.texi:10480 +#: guix-git/doc/guix.texi:10794 #, no-wrap msgid "{Monadic Procedure} gexp->file @var{name} @var{exp} @" msgstr "{Procedimiento monádico} gexp->file @var{nombre} @var{exp} @" @@ -20943,7 +21542,7 @@ msgstr "{Procedimiento monádico} gexp->file @var{nombre} @var{exp} @" # FUZZY # MAAV: Splice no consigo encajarlo bien... #. type: deffn -#: guix-git/doc/guix.texi:10487 +#: guix-git/doc/guix.texi:10801 msgid "[#:set-load-path? #t] [#:module-path %load-path] @ [#:splice? #f] @ [#:guile (default-guile)] Return a derivation that builds a file @var{name} containing @var{exp}. When @var{splice?} is true, @var{exp} is considered to be a list of expressions that will be spliced in the resulting file." msgstr "" "[#:set-load-path? #t] [#:module-path %load-path] @\n" @@ -20952,51 +21551,51 @@ msgstr "" "Devuelve una derivación que construye un archivo @var{nombre} que contiene @var{exp}. Cuando @var{splice?} es verdadero, se considera que @var{exp} es una lista de expresiones que deben ser expandidas en el archivo resultante." #. type: deffn -#: guix-git/doc/guix.texi:10492 +#: guix-git/doc/guix.texi:10806 msgid "When @var{set-load-path?} is true, emit code in the resulting file to set @code{%load-path} and @code{%load-compiled-path} to honor @var{exp}'s imported modules. Look up @var{exp}'s modules in @var{module-path}." msgstr "Cuando @var{set-load-path} es verdadero, emite código en el archivo resultante para establecer @code{%load-path} y @code{%load-compiled-path} de manera que respeten los módulos importados por @var{exp}. Busca los módulos de @var{exp} en @var{module-path}." #. type: deffn -#: guix-git/doc/guix.texi:10495 +#: guix-git/doc/guix.texi:10809 msgid "The resulting file holds references to all the dependencies of @var{exp} or a subset thereof." msgstr "El archivo resultante hace referencia a todas las dependencias de @var{exp} o a un subconjunto de ellas." #. type: deffn -#: guix-git/doc/guix.texi:10497 +#: guix-git/doc/guix.texi:10811 #, no-wrap msgid "{Scheme Procedure} scheme-file @var{name} @var{exp} @" msgstr "{Procedimiento Scheme} scheme-file @var{nombre} @var{exp} @" #. type: deffn -#: guix-git/doc/guix.texi:10501 +#: guix-git/doc/guix.texi:10815 msgid "[#:splice? #f] [#:set-load-path? #t] Return an object representing the Scheme file @var{name} that contains @var{exp}." msgstr "" "[#:splice? #f] [#:set-load-path? #t]\n" "Devuelve un objeto que representa el archivo Scheme @var{nombre} que contiene @var{exp}." #. type: deffn -#: guix-git/doc/guix.texi:10503 +#: guix-git/doc/guix.texi:10817 msgid "This is the declarative counterpart of @code{gexp->file}." msgstr "Esta es la contraparte declarativa de @code{gexp->file}." #. type: deffn -#: guix-git/doc/guix.texi:10505 +#: guix-git/doc/guix.texi:10819 #, no-wrap msgid "{Monadic Procedure} text-file* @var{name} @var{text} @dots{}" msgstr "{Procedimiento monádico} text-file* @var{nombre} @var{texto} @dots{}" #. type: deffn -#: guix-git/doc/guix.texi:10511 +#: guix-git/doc/guix.texi:10825 msgid "Return as a monadic value a derivation that builds a text file containing all of @var{text}. @var{text} may list, in addition to strings, objects of any type that can be used in a gexp: packages, derivations, local file objects, etc. The resulting store file holds references to all these." msgstr "Devuelve como un valor monádico una derivación que construye un archivo de texto que contiene todo @var{texto}. @var{texto} puede ser una lista de, además de cadenas, objetos de cualquier tipo que pueda ser usado en expresiones-G: paquetes, derivaciones, archivos locales, objetos, etc. El archivo del almacén resultante hace referencia a todos ellos." #. type: deffn -#: guix-git/doc/guix.texi:10516 +#: guix-git/doc/guix.texi:10830 msgid "This variant should be preferred over @code{text-file} anytime the file to create will reference items from the store. This is typically the case when building a configuration file that embeds store file names, like this:" msgstr "Esta variante debe preferirse sobre @code{text-file} cuando el archivo a crear haga referencia a elementos del almacén. Esto es el caso típico cuando se construye un archivo de configuración que embebe nombres de archivos del almacén, como este:" #. type: lisp -#: guix-git/doc/guix.texi:10524 +#: guix-git/doc/guix.texi:10838 #, no-wrap msgid "" "(define (profile.sh)\n" @@ -21014,23 +21613,23 @@ msgstr "" " grep \"/bin:\" sed \"/bin\\n\"))\n" #. type: deffn -#: guix-git/doc/guix.texi:10529 +#: guix-git/doc/guix.texi:10843 msgid "In this example, the resulting @file{/gnu/store/@dots{}-profile.sh} file will reference @var{coreutils}, @var{grep}, and @var{sed}, thereby preventing them from being garbage-collected during its lifetime." msgstr "En este ejemplo, el archivo @file{/gnu/store/@dots{}-perfil.sh} resultante hará referencia a @var{coreutils}, @var{grep} y @var{sed}, por tanto evitando que se recolecten como basura durante su tiempo de vida." #. type: deffn -#: guix-git/doc/guix.texi:10531 +#: guix-git/doc/guix.texi:10845 #, no-wrap msgid "{Scheme Procedure} mixed-text-file @var{name} @var{text} @dots{}" msgstr "{Procedimiento Scheme} mixed-text-file @var{nombre} @var{texto} @dots{}" #. type: deffn -#: guix-git/doc/guix.texi:10535 +#: guix-git/doc/guix.texi:10849 msgid "Return an object representing store file @var{name} containing @var{text}. @var{text} is a sequence of strings and file-like objects, as in:" msgstr "Devuelve un objeto que representa el archivo del almacén @var{nombre} que contiene @var{texto}. @var{texto} es una secuencia de cadenas y objetos tipo-archivo, como en:" #. type: lisp -#: guix-git/doc/guix.texi:10539 +#: guix-git/doc/guix.texi:10853 #, no-wrap msgid "" "(mixed-text-file \"profile\"\n" @@ -21040,23 +21639,23 @@ msgstr "" " \"export PATH=\" coreutils \"/bin:\" grep \"/bin\")\n" #. type: deffn -#: guix-git/doc/guix.texi:10542 +#: guix-git/doc/guix.texi:10856 msgid "This is the declarative counterpart of @code{text-file*}." msgstr "Esta es la contraparte declarativa de @code{text-file*}." #. type: deffn -#: guix-git/doc/guix.texi:10544 +#: guix-git/doc/guix.texi:10858 #, no-wrap msgid "{Scheme Procedure} file-union @var{name} @var{files}" msgstr "{Procedimiento Scheme} file-union @var{nombre} @var{archivos}" #. type: deffn -#: guix-git/doc/guix.texi:10549 +#: guix-git/doc/guix.texi:10863 msgid "Return a @code{} that builds a directory containing all of @var{files}. Each item in @var{files} must be a two-element list where the first element is the file name to use in the new directory, and the second element is a gexp denoting the target file. Here's an example:" msgstr "Devuelve un @code{} que construye un directorio que contiene todos los @var{archivos}. Cada elemento en @var{archivos} debe ser una lista de dos elementos donde el primer elemento es el nombre de archivo usado en el nuevo directorio y el segundo elemento es una expresión-G que denota el archivo de destino. Aquí está un ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:10556 +#: guix-git/doc/guix.texi:10870 #, no-wrap msgid "" "(file-union \"etc\"\n" @@ -21072,50 +21671,50 @@ msgstr "" " \"alias ls='ls --color=auto'\"))))\n" #. type: deffn -#: guix-git/doc/guix.texi:10559 +#: guix-git/doc/guix.texi:10873 msgid "This yields an @code{etc} directory containing these two files." msgstr "Esto emite un directorio @code{etc} que contiene estos dos archivos." #. type: deffn -#: guix-git/doc/guix.texi:10561 +#: guix-git/doc/guix.texi:10875 #, no-wrap msgid "{Scheme Procedure} directory-union @var{name} @var{things}" msgstr "{Procedimiento Scheme} directory-union @var{nombre} @var{cosas}" #. type: deffn -#: guix-git/doc/guix.texi:10564 +#: guix-git/doc/guix.texi:10878 msgid "Return a directory that is the union of @var{things}, where @var{things} is a list of file-like objects denoting directories. For example:" msgstr "Devuelve un directorio que es la unión de @var{cosas}, donde @var{cosas} es una lista de objetos tipo-archivo que denotan directorios. Por ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:10567 +#: guix-git/doc/guix.texi:10881 #, no-wrap msgid "(directory-union \"guile+emacs\" (list guile emacs))\n" msgstr "(directory-union \"guile+emacs\" (list guile emacs))\n" #. type: deffn -#: guix-git/doc/guix.texi:10570 +#: guix-git/doc/guix.texi:10884 msgid "yields a directory that is the union of the @code{guile} and @code{emacs} packages." msgstr "emite un directorio que es la unión de los paquetes @code{guile} y @code{emacs}." #. type: deffn -#: guix-git/doc/guix.texi:10572 +#: guix-git/doc/guix.texi:10886 #, no-wrap msgid "{Scheme Procedure} file-append @var{obj} @var{suffix} @dots{}" msgstr "{Procedimientos Scheme} file-append @var{obj} @var{sufijo} @dots{}" #. type: deffn -#: guix-git/doc/guix.texi:10576 +#: guix-git/doc/guix.texi:10890 msgid "Return a file-like object that expands to the concatenation of @var{obj} and @var{suffix}, where @var{obj} is a lowerable object and each @var{suffix} is a string." msgstr "Devuelve un objeto tipo-archivo que se expande a la concatenación de @var{obj} y @var{sufijo}, donde @var{obj} es un objeto que se puede bajar de nivel y cada @var{sufijo} es una cadena." #. type: deffn -#: guix-git/doc/guix.texi:10578 +#: guix-git/doc/guix.texi:10892 msgid "As an example, consider this gexp:" msgstr "Como un ejemplo, considere esta expresión-G:" #. type: lisp -#: guix-git/doc/guix.texi:10583 +#: guix-git/doc/guix.texi:10897 #, no-wrap msgid "" "(gexp->script \"run-uname\"\n" @@ -21127,12 +21726,12 @@ msgstr "" " \"/bin/uname\")))\n" #. type: deffn -#: guix-git/doc/guix.texi:10586 +#: guix-git/doc/guix.texi:10900 msgid "The same effect could be achieved with:" msgstr "El mismo efecto podría conseguirse con:" #. type: lisp -#: guix-git/doc/guix.texi:10591 +#: guix-git/doc/guix.texi:10905 #, no-wrap msgid "" "(gexp->script \"run-uname\"\n" @@ -21144,41 +21743,41 @@ msgstr "" " \"/bin/uname\")))\n" #. type: deffn -#: guix-git/doc/guix.texi:10597 +#: guix-git/doc/guix.texi:10911 msgid "There is one difference though: in the @code{file-append} case, the resulting script contains the absolute file name as a string, whereas in the second case, the resulting script contains a @code{(string-append @dots{})} expression to construct the file name @emph{at run time}." msgstr "Hay una diferencia no obstante: en el caso de @code{file-append}, el guión resultante contiene una ruta absoluta de archivo como una cadena, mientras que en el segundo caso, el guión resultante contiene una expresión @code{(string-append @dots{})} para construir el nombre de archivo @emph{en tiempo de ejecución}." #. type: deffn -#: guix-git/doc/guix.texi:10599 +#: guix-git/doc/guix.texi:10913 #, no-wrap msgid "{Scheme Syntax} let-system @var{system} @var{body}@dots{}" msgstr "{Sintaxis Scheme} let-system @var{sistema} @var{cuerpo}@dots{}" #. type: deffnx -#: guix-git/doc/guix.texi:10600 +#: guix-git/doc/guix.texi:10914 #, no-wrap msgid "{Scheme Syntax} let-system (@var{system} @var{target}) @var{body}@dots{}" msgstr "{Sintaxis Scheme} let-system (@var{sistema} @var{objetivo}) @var{cuerpo}@dots{}" # FUZZY #. type: deffn -#: guix-git/doc/guix.texi:10603 +#: guix-git/doc/guix.texi:10917 msgid "Bind @var{system} to the currently targeted system---e.g., @code{\"x86_64-linux\"}---within @var{body}." msgstr "Asocia @var{sistema} al sistema objetivo actual---por ejemplo, @code{\"x86_64-linux\"}---dentro de @var{cuerpo}." # FUZZY #. type: deffn -#: guix-git/doc/guix.texi:10608 +#: guix-git/doc/guix.texi:10922 msgid "In the second case, additionally bind @var{target} to the current cross-compilation target---a GNU triplet such as @code{\"arm-linux-gnueabihf\"}---or @code{#f} if we are not cross-compiling." msgstr "En el segundo caso, asocia también @var{objetivo} al objetivo actual de compilación cruzada---una tripleta de GNU como @code{\"arm-linux-gnueabihf\"}---o @code{#f} si no se trata de una compilación cruzada." #. type: deffn -#: guix-git/doc/guix.texi:10611 +#: guix-git/doc/guix.texi:10925 msgid "@code{let-system} is useful in the occasional case where the object spliced into the gexp depends on the target system, as in this example:" msgstr "@code{let-system} es útil en el caso ocasional en el que el objeto introducido en la expresión-G depende del sistema objetivo, como en este ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:10622 +#: guix-git/doc/guix.texi:10936 #, no-wrap msgid "" "#~(system*\n" @@ -21202,25 +21801,25 @@ msgstr "" " \"-net\" \"user\" #$image)\n" #. type: deffn -#: guix-git/doc/guix.texi:10625 +#: guix-git/doc/guix.texi:10939 #, no-wrap msgid "{Scheme Syntax} with-parameters ((@var{parameter} @var{value}) @dots{}) @var{exp}" msgstr "{Sintaxis Scheme} with-parameters ((@var{parámetro} @var{valor} @dots{}) @var{exp}" # FUZZY FUZZY #. type: deffn -#: guix-git/doc/guix.texi:10631 +#: guix-git/doc/guix.texi:10945 msgid "This macro is similar to the @code{parameterize} form for dynamically-bound @dfn{parameters} (@pxref{Parameters,,, guile, GNU Guile Reference Manual}). The key difference is that it takes effect when the file-like object returned by @var{exp} is lowered to a derivation or store item." msgstr "Este macro es similar a la forma @code{parameterize} para @dfn{parámetros} asociados de forma dinámica (@pxref{Parameters,,, guile, GNU Guile Reference Manual}). La principal diferencia es que se hace efectivo cuando el objeto tipo-archivo devuelto por @var{exp} se baja de nivel a una derivación o un elemento del almacén." # FUZZY FUZZY FUZZY #. type: deffn -#: guix-git/doc/guix.texi:10634 +#: guix-git/doc/guix.texi:10948 msgid "A typical use of @code{with-parameters} is to force the system in effect for a given object:" msgstr "Un uso típico de @code{with-parameters} es para forzar el sistema efectivo de cierto objeto:" #. type: lisp -#: guix-git/doc/guix.texi:10638 +#: guix-git/doc/guix.texi:10952 #, no-wrap msgid "" "(with-parameters ((%current-system \"i686-linux\"))\n" @@ -21230,99 +21829,99 @@ msgstr "" " coreutils)\n" #. type: deffn -#: guix-git/doc/guix.texi:10642 +#: guix-git/doc/guix.texi:10956 msgid "The example above returns an object that corresponds to the i686 build of Coreutils, regardless of the current value of @code{%current-system}." msgstr "El ejemplo previo devuelve un objeto que corresponde a la construcción en i686 de Coreutils, independientemente del valor actual de @code{%current-system}." #. type: Plain text -#: guix-git/doc/guix.texi:10649 +#: guix-git/doc/guix.texi:10963 msgid "Of course, in addition to gexps embedded in ``host'' code, there are also modules containing build tools. To make it clear that they are meant to be used in the build stratum, these modules are kept in the @code{(guix build @dots{})} name space." msgstr "Por supuesto, además de expresiones-G embebidas en código ``anfitrión'', hay también módulos que contienen herramientas de construcción. Para clarificar que están destinados para su uso en el estrato de construcción, estos módulos se mantienen en el espacio de nombres @code{(guix build @dots{})}." #. type: Plain text -#: guix-git/doc/guix.texi:10655 +#: guix-git/doc/guix.texi:10969 msgid "Internally, high-level objects are @dfn{lowered}, using their compiler, to either derivations or store items. For instance, lowering a package yields a derivation, and lowering a @code{plain-file} yields a store item. This is achieved using the @code{lower-object} monadic procedure." msgstr "Internamente, los objetos de alto nivel se @dfn{bajan de nivel}, usando su compilador, a derivaciones o elementos del almacén. Por ejemplo, bajar de nivel un paquete emite una derivación, y bajar de nivel un @var{plain-file} emite un elemento del almacén. Esto se consigue usando el procedimiento monádico @code{lower-object}." #. type: deffn -#: guix-git/doc/guix.texi:10656 +#: guix-git/doc/guix.texi:10970 #, no-wrap msgid "{Monadic Procedure} lower-object @var{obj} [@var{system}] @" msgstr "{Procedimiento monádico} lower-object @var{obj} [@var{sistema}] @" #. type: deffn -#: guix-git/doc/guix.texi:10662 +#: guix-git/doc/guix.texi:10976 msgid "[#:target #f] Return as a value in @code{%store-monad} the derivation or store item corresponding to @var{obj} for @var{system}, cross-compiling for @var{target} if @var{target} is true. @var{obj} must be an object that has an associated gexp compiler, such as a @code{}." msgstr "" "[#:target #f]\n" "Devuelve como un valor en @code{%store-monad} la derivación o elemento del almacén que corresponde a @var{obj} en @var{sistema}, compilando de manera cruzada para @var{target} si @var{target} es verdadero. @var{obj} debe ser un objeto que tiene asociado un compilador de expresiones-G, como por ejemplo un objeto del tipo @code{}." #. type: deffn -#: guix-git/doc/guix.texi:10664 +#: guix-git/doc/guix.texi:10978 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} file-name-predicate @var{regexp}" msgid "{Procedure} gexp->approximate-sexp @var{gexp}" msgstr "{Procedimiento Scheme} file-name-predicate @var{expreg}" #. type: deffn -#: guix-git/doc/guix.texi:10672 +#: guix-git/doc/guix.texi:10986 msgid "Sometimes, it may be useful to convert a G-exp into a S-exp. For example, some linters (@pxref{Invoking guix lint}) peek into the build phases of a package to detect potential problems. This conversion can be achieved with this procedure. However, some information can be lost in the process. More specifically, lowerable objects will be silently replaced with some arbitrary object -- currently the list @code{(*approximate*)}, but this may change." msgstr "" #. type: section -#: guix-git/doc/guix.texi:10675 +#: guix-git/doc/guix.texi:10989 #, no-wrap msgid "Invoking @command{guix repl}" msgstr "Invocación de @command{guix repl}" # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:10677 +#: guix-git/doc/guix.texi:10991 #, no-wrap msgid "REPL, read-eval-print loop, script" msgstr "REPL, sesión interactiva, guión" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:10687 +#: guix-git/doc/guix.texi:11001 msgid "The @command{guix repl} command makes it easier to program Guix in Guile by launching a Guile @dfn{read-eval-print loop} (REPL) for interactive programming (@pxref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}), or by running Guile scripts (@pxref{Running Guile Scripts,,, guile, GNU Guile Reference Manual}). Compared to just launching the @command{guile} command, @command{guix repl} guarantees that all the Guix modules and all its dependencies are available in the search path." msgstr "La orden @command{guix repl} lanza una @dfn{sesión interactiva} Guile (REPL) para la programación interactiva (@pxref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}), o para la ejecución de guiones de Guile. Comparado a simplemente lanzar la orden @command{guile}, @command{guix repl} garantiza que todos los módulos Guix y todas sus dependencias están disponibles en la ruta de búsqueda." #. type: example -#: guix-git/doc/guix.texi:10692 +#: guix-git/doc/guix.texi:11006 #, no-wrap msgid "guix repl @var{options} [@var{file} @var{args}]\n" msgstr "guix repl @var{opciones} [@var{archivo} @var{parámetros}]\n" #. type: Plain text -#: guix-git/doc/guix.texi:10696 +#: guix-git/doc/guix.texi:11010 msgid "When a @var{file} argument is provided, @var{file} is executed as a Guile scripts:" msgstr "Cuando se proporciona @var{archivo}, @var{archivo} se ejecuta como un guión de Guile:" #. type: example -#: guix-git/doc/guix.texi:10699 +#: guix-git/doc/guix.texi:11013 #, no-wrap msgid "guix repl my-script.scm\n" msgstr "guix repl mi-guion.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:10703 +#: guix-git/doc/guix.texi:11017 msgid "To pass arguments to the script, use @code{--} to prevent them from being interpreted as arguments to @command{guix repl} itself:" msgstr "Para proporcionar parámetros al guión, use @code{--} para evitar que se interpreten como parámetros específicos de @command{guix repl}:" #. type: example -#: guix-git/doc/guix.texi:10706 +#: guix-git/doc/guix.texi:11020 #, no-wrap msgid "guix repl -- my-script.scm --input=foo.txt\n" msgstr "guix repl -- mi-guion.scm --input=foo.txt\n" #. type: Plain text -#: guix-git/doc/guix.texi:10711 +#: guix-git/doc/guix.texi:11025 msgid "To make a script executable directly from the shell, using the guix executable that is on the user's search path, add the following two lines at the top of the script:" msgstr "Pare hacer que un guión sea ejecutable directamente desde el shell, mediante el uso del ejecutable de guix que se encuentre en la ruta de búsqueda de la usuaria, escriba las siguientes dos líneas al inicio del archivo:" #. type: example -#: guix-git/doc/guix.texi:10715 +#: guix-git/doc/guix.texi:11029 #, no-wrap msgid "" "@code{#!/usr/bin/env -S guix repl --}\n" @@ -21332,12 +21931,12 @@ msgstr "" "@code{!#}\n" #. type: Plain text -#: guix-git/doc/guix.texi:10718 +#: guix-git/doc/guix.texi:11032 msgid "Without a file name argument, a Guile REPL is started:" msgstr "Si no se proporciona un nombre de archivo, se inicia una sesión interactiva (REPL) de Guile:" #. type: example -#: guix-git/doc/guix.texi:10724 +#: guix-git/doc/guix.texi:11038 #, no-wrap msgid "" "$ guix repl\n" @@ -21352,170 +21951,170 @@ msgstr "" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:10731 +#: guix-git/doc/guix.texi:11045 msgid "In addition, @command{guix repl} implements a simple machine-readable REPL protocol for use by @code{(guix inferior)}, a facility to interact with @dfn{inferiors}, separate processes running a potentially different revision of Guix." msgstr "Además, @command{guix repl} implementa un protocolo del REPL simple legible por máquinas para su uso por @code{(guix inferior)}, una facilidad para interactuar con @dfn{inferiores}, procesos separados que ejecutan una revisión de Guix potencialmente distinta." #. type: Plain text -#: guix-git/doc/guix.texi:10733 +#: guix-git/doc/guix.texi:11047 msgid "The available options are as follows:" msgstr "Las opciones disponibles son las siguientes:" #. type: item -#: guix-git/doc/guix.texi:10735 guix-git/doc/guix.texi:13411 +#: guix-git/doc/guix.texi:11049 guix-git/doc/guix.texi:13768 #, no-wrap msgid "--type=@var{type}" msgstr "--type=@var{tipo}" #. type: itemx -#: guix-git/doc/guix.texi:10736 guix-git/doc/guix.texi:13412 -#: guix-git/doc/guix.texi:35281 +#: guix-git/doc/guix.texi:11050 guix-git/doc/guix.texi:13769 +#: guix-git/doc/guix.texi:35725 #, no-wrap msgid "-t @var{type}" msgstr "-t @var{tipo}" #. type: table -#: guix-git/doc/guix.texi:10738 +#: guix-git/doc/guix.texi:11052 msgid "Start a REPL of the given @var{TYPE}, which can be one of the following:" msgstr "Inicia un REPL del @var{TIPO} dado, que puede ser uno de los siguientes:" #. type: item -#: guix-git/doc/guix.texi:10740 +#: guix-git/doc/guix.texi:11054 #, no-wrap msgid "guile" msgstr "guile" #. type: table -#: guix-git/doc/guix.texi:10742 +#: guix-git/doc/guix.texi:11056 msgid "This is default, and it spawns a standard full-featured Guile REPL." msgstr "Es el predeterminado, y lanza una sesión interactiva Guile estándar con todas las características." #. type: item -#: guix-git/doc/guix.texi:10742 +#: guix-git/doc/guix.texi:11056 #, no-wrap msgid "machine" msgstr "machine" #. type: table -#: guix-git/doc/guix.texi:10745 +#: guix-git/doc/guix.texi:11059 msgid "Spawn a REPL that uses the machine-readable protocol. This is the protocol that the @code{(guix inferior)} module speaks." msgstr "Lanza un REPL que usa el protocolo legible por máquinas. Este es el protocolo con el que el módulo @code{(guix inferior)} se comunica." #. type: table -#: guix-git/doc/guix.texi:10751 +#: guix-git/doc/guix.texi:11065 msgid "By default, @command{guix repl} reads from standard input and writes to standard output. When this option is passed, it will instead listen for connections on @var{endpoint}. Here are examples of valid options:" msgstr "Por defecto, @command{guix repl} lee de la entrada estándar y escribe en la salida estándar. Cuando se pasa esta opción, en vez de eso escuchará las conexiones en @var{destino}. Estos son ejemplos de opciones válidas:" #. type: item -#: guix-git/doc/guix.texi:10753 +#: guix-git/doc/guix.texi:11067 #, no-wrap msgid "--listen=tcp:37146" msgstr "--listen=tcp:37146" #. type: table -#: guix-git/doc/guix.texi:10755 +#: guix-git/doc/guix.texi:11069 msgid "Accept connections on localhost on port 37146." msgstr "Acepta conexiones locales por el puerto 37146." #. type: item -#: guix-git/doc/guix.texi:10756 +#: guix-git/doc/guix.texi:11070 #, no-wrap msgid "--listen=unix:/tmp/socket" msgstr "--listen=unix:/tmp/socket" #. type: table -#: guix-git/doc/guix.texi:10758 +#: guix-git/doc/guix.texi:11072 msgid "Accept connections on the Unix-domain socket @file{/tmp/socket}." msgstr "Acepta conexiones a través del socket de dominio Unix @file{/tmp/socket}." #. type: item -#: guix-git/doc/guix.texi:10760 guix-git/doc/guix.texi:10865 -#: guix-git/doc/guix.texi:12763 guix-git/doc/guix.texi:12840 -#: guix-git/doc/guix.texi:13046 guix-git/doc/guix.texi:13191 -#: guix-git/doc/guix.texi:13459 +#: guix-git/doc/guix.texi:11074 guix-git/doc/guix.texi:11179 +#: guix-git/doc/guix.texi:13078 guix-git/doc/guix.texi:13196 +#: guix-git/doc/guix.texi:13403 guix-git/doc/guix.texi:13548 +#: guix-git/doc/guix.texi:13816 #, no-wrap msgid "--load-path=@var{directory}" msgstr "--load-path=@var{directorio}" #. type: itemx -#: guix-git/doc/guix.texi:10761 guix-git/doc/guix.texi:10866 -#: guix-git/doc/guix.texi:12841 guix-git/doc/guix.texi:13047 -#: guix-git/doc/guix.texi:13192 guix-git/doc/guix.texi:13460 +#: guix-git/doc/guix.texi:11075 guix-git/doc/guix.texi:11180 +#: guix-git/doc/guix.texi:13197 guix-git/doc/guix.texi:13404 +#: guix-git/doc/guix.texi:13549 guix-git/doc/guix.texi:13817 #, no-wrap msgid "-L @var{directory}" msgstr "-L @var{directorio}" #. type: table -#: guix-git/doc/guix.texi:10764 guix-git/doc/guix.texi:10869 -#: guix-git/doc/guix.texi:12766 guix-git/doc/guix.texi:12844 -#: guix-git/doc/guix.texi:13050 guix-git/doc/guix.texi:13195 -#: guix-git/doc/guix.texi:13463 +#: guix-git/doc/guix.texi:11078 guix-git/doc/guix.texi:11183 +#: guix-git/doc/guix.texi:13081 guix-git/doc/guix.texi:13200 +#: guix-git/doc/guix.texi:13407 guix-git/doc/guix.texi:13552 +#: guix-git/doc/guix.texi:13820 msgid "Add @var{directory} to the front of the package module search path (@pxref{Package Modules})." msgstr "Añade @var{directorio} al frente de la ruta de búsqueda de módulos de paquetes (@pxref{Package Modules})." #. type: table -#: guix-git/doc/guix.texi:10767 +#: guix-git/doc/guix.texi:11081 msgid "This allows users to define their own packages and make them visible to the script or REPL." msgstr "Esto permite a las usuarias definir sus propios paquetes y hacerlos visibles al guión o a la sesión interactiva." #. type: itemx -#: guix-git/doc/guix.texi:10768 guix-git/doc/guix.texi:11390 +#: guix-git/doc/guix.texi:11082 guix-git/doc/guix.texi:11704 #, no-wrap msgid "-q" msgstr "-q" #. type: table -#: guix-git/doc/guix.texi:10771 +#: guix-git/doc/guix.texi:11085 msgid "Inhibit loading of the @file{~/.guile} file. By default, that configuration file is loaded when spawning a @code{guile} REPL." msgstr "Inhibe la carga del archivo @file{~/.guile}. De manera predeterminada, dicho archivo de configuración se carga al lanzar una sesión interactiva de @code{guile}." #. type: Plain text -#: guix-git/doc/guix.texi:10781 +#: guix-git/doc/guix.texi:11095 msgid "This section describes Guix command-line utilities. Some of them are primarily targeted at developers and users who write new package definitions, while others are more generally useful. They complement the Scheme programming interface of Guix in a convenient way." msgstr "Esta sección describe las utilidades de línea de órdenes de Guix. Algunas de ellas están orientadas principalmente para desarrolladoras y usuarias que escriban definiciones de paquetes nuevas, mientras que otras son útiles de manera más general. Complementan la interfaz programática Scheme de Guix de modo conveniente." #. type: cindex -#: guix-git/doc/guix.texi:10804 +#: guix-git/doc/guix.texi:11118 #, no-wrap msgid "package building" msgstr "construcción de paquetes" #. type: command{#1} -#: guix-git/doc/guix.texi:10805 +#: guix-git/doc/guix.texi:11119 #, no-wrap msgid "guix build" msgstr "guix build" #. type: Plain text -#: guix-git/doc/guix.texi:10811 +#: guix-git/doc/guix.texi:11125 msgid "The @command{guix build} command builds packages or derivations and their dependencies, and prints the resulting store paths. Note that it does not modify the user's profile---this is the job of the @command{guix package} command (@pxref{Invoking guix package}). Thus, it is mainly useful for distribution developers." msgstr "La orden @command{guix build} construye paquetes o derivaciones y sus dependencias, e imprime las rutas del almacén resultantes. Fíjese que no modifica el perfil de la usuaria---este es el trabajo de la orden @command{guix package} (@pxref{Invoking guix package}). Por tanto, es útil principalmente para las desarrolladoras de la distribución." #. type: example -#: guix-git/doc/guix.texi:10816 +#: guix-git/doc/guix.texi:11130 #, no-wrap msgid "guix build @var{options} @var{package-or-derivation}@dots{}\n" msgstr "guix build @var{opciones} @var{paquete-o-derivación}@dots{}\n" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:10821 +#: guix-git/doc/guix.texi:11135 msgid "As an example, the following command builds the latest versions of Emacs and of Guile, displays their build logs, and finally displays the resulting directories:" msgstr "Como ejemplo, la siguiente orden construye las últimas versiones de Emacs y Guile, muestra sus log de construcción, y finalmente muestra los directorios resultantes:" #. type: example -#: guix-git/doc/guix.texi:10824 +#: guix-git/doc/guix.texi:11138 #, no-wrap msgid "guix build emacs guile\n" msgstr "guix build emacs guile\n" #. type: Plain text -#: guix-git/doc/guix.texi:10827 +#: guix-git/doc/guix.texi:11141 msgid "Similarly, the following command builds all the available packages:" msgstr "De forma similar, la siguiente orden construye todos los paquetes disponibles:" #. type: example -#: guix-git/doc/guix.texi:10831 +#: guix-git/doc/guix.texi:11145 #, fuzzy, no-wrap msgid "" "guix build --quiet --keep-going \\\n" @@ -21525,158 +22124,158 @@ msgstr "" " `guix package -A | cut -f1,2 --output-delimiter=@@`\n" #. type: Plain text -#: guix-git/doc/guix.texi:10839 +#: guix-git/doc/guix.texi:11153 msgid "@var{package-or-derivation} may be either the name of a package found in the software distribution such as @code{coreutils} or @code{coreutils@@8.20}, or a derivation such as @file{/gnu/store/@dots{}-coreutils-8.19.drv}. In the former case, a package with the corresponding name (and optionally version) is searched for among the GNU distribution modules (@pxref{Package Modules})." msgstr "@var{paquete-o-derivación} puede ser tanto el nombre de un paquete que se encuentra en la distribución de software como @code{coreutils} o @code{coreutils@@8.20}, o una derivación como @file{/gnu/store/@dots{}-coreutils-8.19.drv}. En el primer caso, el paquete de nombre (y opcionalmente versión) correspondiente se busca entre los módulos de la distribución GNU (@pxref{Package Modules})." #. type: Plain text -#: guix-git/doc/guix.texi:10844 +#: guix-git/doc/guix.texi:11158 msgid "Alternatively, the @option{--expression} option may be used to specify a Scheme expression that evaluates to a package; this is useful when disambiguating among several same-named packages or package variants is needed." msgstr "De manera alternativa, la opción @option{--expression} puede ser usada para especificar una expresión Scheme que evalúa a un paquete; esto es útil para diferenciar entre varios paquetes con el mismo nombre o si se necesitan variaciones del paquete." #. type: Plain text -#: guix-git/doc/guix.texi:10847 +#: guix-git/doc/guix.texi:11161 msgid "There may be zero or more @var{options}. The available options are described in the subsections below." msgstr "Puede haber cero o más @var{opciones}. Las opciones disponibles se describen en la subsección siguiente." #. type: Plain text -#: guix-git/doc/guix.texi:10862 +#: guix-git/doc/guix.texi:11176 msgid "A number of options that control the build process are common to @command{guix build} and other commands that can spawn builds, such as @command{guix package} or @command{guix archive}. These are the following:" msgstr "Un número de opciones que controlan el proceso de construcción son comunes a @command{guix build} y otras órdenes que pueden lanzar construcciones, como @command{guix package} o @command{guix archive}. Son las siguientes:" #. type: table -#: guix-git/doc/guix.texi:10872 guix-git/doc/guix.texi:12769 -#: guix-git/doc/guix.texi:13053 guix-git/doc/guix.texi:13198 -#: guix-git/doc/guix.texi:13466 +#: guix-git/doc/guix.texi:11186 guix-git/doc/guix.texi:13084 +#: guix-git/doc/guix.texi:13410 guix-git/doc/guix.texi:13555 +#: guix-git/doc/guix.texi:13823 msgid "This allows users to define their own packages and make them visible to the command-line tools." msgstr "Esto permite a las usuarias definir sus propios paquetes y hacerlos visibles a las herramientas de línea de órdenes." #. type: item -#: guix-git/doc/guix.texi:10873 +#: guix-git/doc/guix.texi:11187 #, no-wrap msgid "--keep-failed" msgstr "--keep-failed" #. type: itemx -#: guix-git/doc/guix.texi:10874 +#: guix-git/doc/guix.texi:11188 #, no-wrap msgid "-K" msgstr "-K" # FUZZY #. type: table -#: guix-git/doc/guix.texi:10880 +#: guix-git/doc/guix.texi:11194 msgid "Keep the build tree of failed builds. Thus, if a build fails, its build tree is kept under @file{/tmp}, in a directory whose name is shown at the end of the build log. This is useful when debugging build issues. @xref{Debugging Build Failures}, for tips and tricks on how to debug build issues." msgstr "Mantiene los árboles de construcción de las construcciones fallidas. Por tanto, si una construcción falla, su árbol de construcción se mantiene bajo @file{/tmp}, en un directorio cuyo nombre se muestra al final del log de construcción. Esto es útil cuando se depuran problemas en la construcción. @xref{Debugging Build Failures}, para trucos y consejos sobre cómo depurar problemas en la construcción." #. type: table -#: guix-git/doc/guix.texi:10884 +#: guix-git/doc/guix.texi:11198 msgid "This option implies @option{--no-offload}, and it has no effect when connecting to a remote daemon with a @code{guix://} URI (@pxref{The Store, the @env{GUIX_DAEMON_SOCKET} variable})." msgstr "Esta opción implica @option{--no-offload}, y no tiene efecto cuando se conecta a un daemon remoto con una URI @code{guix://} (@pxref{The Store, la variable @env{GUIX_DAEMON_SOCKET}})." #. type: item -#: guix-git/doc/guix.texi:10885 +#: guix-git/doc/guix.texi:11199 #, no-wrap msgid "--keep-going" msgstr "--keep-going" #. type: itemx -#: guix-git/doc/guix.texi:10886 +#: guix-git/doc/guix.texi:11200 #, no-wrap msgid "-k" msgstr "-k" #. type: table -#: guix-git/doc/guix.texi:10889 +#: guix-git/doc/guix.texi:11203 msgid "Keep going when some of the derivations fail to build; return only once all the builds have either completed or failed." msgstr "Seguir adelante cuando alguna de las derivaciones de un fallo durante la construcción; devuelve una única vez todas las construcciones que se han completado o bien han fallado." #. type: table -#: guix-git/doc/guix.texi:10892 +#: guix-git/doc/guix.texi:11206 msgid "The default behavior is to stop as soon as one of the specified derivations has failed." msgstr "El comportamiento predeterminado es parar tan pronto una de las derivaciones especificadas falle." #. type: table -#: guix-git/doc/guix.texi:10896 +#: guix-git/doc/guix.texi:11210 msgid "Do not build the derivations." msgstr "No construye las derivaciones." #. type: anchor{#1} -#: guix-git/doc/guix.texi:10898 +#: guix-git/doc/guix.texi:11212 msgid "fallback-option" msgstr "fallback-option" #. type: item -#: guix-git/doc/guix.texi:10898 +#: guix-git/doc/guix.texi:11212 #, no-wrap msgid "--fallback" msgstr "--fallback" #. type: table -#: guix-git/doc/guix.texi:10901 +#: guix-git/doc/guix.texi:11215 msgid "When substituting a pre-built binary fails, fall back to building packages locally (@pxref{Substitution Failure})." msgstr "Cuando la sustitución de un binario preconstruido falle, intenta la construcción local de paquetes (@pxref{Substitution Failure})." #. type: anchor{#1} -#: guix-git/doc/guix.texi:10907 +#: guix-git/doc/guix.texi:11221 msgid "client-substitute-urls" msgstr "client-substitute-urls" #. type: table -#: guix-git/doc/guix.texi:10907 +#: guix-git/doc/guix.texi:11221 msgid "Consider @var{urls} the whitespace-separated list of substitute source URLs, overriding the default list of URLs of @command{guix-daemon} (@pxref{daemon-substitute-urls,, @command{guix-daemon} URLs})." msgstr "Considera @var{urls} la lista separada por espacios de URLs de fuentes de sustituciones, anulando la lista predeterminada de URLs de @command{guix-daemon} (@pxref{daemon-substitute-urls,, @command{guix-daemon URLs}})." #. type: table -#: guix-git/doc/guix.texi:10911 +#: guix-git/doc/guix.texi:11225 msgid "This means that substitutes may be downloaded from @var{urls}, provided they are signed by a key authorized by the system administrator (@pxref{Substitutes})." msgstr "Significa que las sustituciones puede ser descargadas de @var{urls}, mientras que estén firmadas por una clave autorizada por la administradora del sistema (@pxref{Substitutes})." #. type: table -#: guix-git/doc/guix.texi:10914 +#: guix-git/doc/guix.texi:11228 msgid "When @var{urls} is the empty string, substitutes are effectively disabled." msgstr "Cuando @var{urls} es la cadena vacía, las sustituciones están efectivamente desactivadas." #. type: item -#: guix-git/doc/guix.texi:10920 +#: guix-git/doc/guix.texi:11234 #, no-wrap msgid "--no-grafts" msgstr "--no-grafts" #. type: table -#: guix-git/doc/guix.texi:10924 +#: guix-git/doc/guix.texi:11238 msgid "Do not ``graft'' packages. In practice, this means that package updates available as grafts are not applied. @xref{Security Updates}, for more information on grafts." msgstr "No ``injerta'' paquetes. En la práctica esto significa que las actualizaciones de paquetes disponibles como injertos no se aplican. @xref{Security Updates}, para más información sobre los injertos." #. type: item -#: guix-git/doc/guix.texi:10925 +#: guix-git/doc/guix.texi:11239 #, no-wrap msgid "--rounds=@var{n}" msgstr "--rounds=@var{n}" #. type: table -#: guix-git/doc/guix.texi:10928 +#: guix-git/doc/guix.texi:11242 msgid "Build each derivation @var{n} times in a row, and raise an error if consecutive build results are not bit-for-bit identical." msgstr "Construye cada derivación @var{n} veces seguidas, y lanza un error si los resultados de las construcciones consecutivas no son idénticos bit-a-bit." #. type: table -#: guix-git/doc/guix.texi:10933 +#: guix-git/doc/guix.texi:11247 msgid "This is a useful way to detect non-deterministic builds processes. Non-deterministic build processes are a problem because they make it practically impossible for users to @emph{verify} whether third-party binaries are genuine. @xref{Invoking guix challenge}, for more." msgstr "Esto es útil para la detección de procesos de construcción no-deterministas. Los procesos de construcción no-deterministas son un problema puesto que prácticamente imposibilitan a las usuarias la @emph{verificación} de la autenticidad de binarios proporcionados por terceras partes. @xref{Invoking guix challenge}, para más sobre esto." #. type: table -#: guix-git/doc/guix.texi:10949 +#: guix-git/doc/guix.texi:11263 msgid "By default, the daemon's setting is honored (@pxref{Invoking guix-daemon, @option{--max-silent-time}})." msgstr "Por defecto, se respeta la configuración del daemon (@pxref{Invoking guix-daemon, @option{--max-silent-time}})." #. type: table -#: guix-git/doc/guix.texi:10956 +#: guix-git/doc/guix.texi:11270 msgid "By default, the daemon's setting is honored (@pxref{Invoking guix-daemon, @option{--timeout}})." msgstr "Por defecto, se respeta la configuración del daemon (@pxref{Invoking guix-daemon, @option{--timeout}})." # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:10959 +#: guix-git/doc/guix.texi:11273 #, no-wrap msgid "verbosity, of the command-line tools" msgstr "nivel de detalle de los mensajes, de las herramientas de línea de órdenes" @@ -21684,121 +22283,121 @@ msgstr "nivel de detalle de los mensajes, de las herramientas de línea de órde # FUZZY # TODO: (MAAV) Log #. type: cindex -#: guix-git/doc/guix.texi:10960 +#: guix-git/doc/guix.texi:11274 #, no-wrap msgid "build logs, verbosity" msgstr "registro de construcción, nivel de descripción" #. type: item -#: guix-git/doc/guix.texi:10961 +#: guix-git/doc/guix.texi:11275 #, no-wrap msgid "-v @var{level}" msgstr "-v @var{nivel}" #. type: itemx -#: guix-git/doc/guix.texi:10962 +#: guix-git/doc/guix.texi:11276 #, no-wrap msgid "--verbosity=@var{level}" msgstr "--verbosity=@var{nivel}" # FUZZY #. type: table -#: guix-git/doc/guix.texi:10967 +#: guix-git/doc/guix.texi:11281 #, fuzzy msgid "Use the given verbosity @var{level}, an integer. Choosing 0 means that no output is produced, 1 is for quiet output; 2 is similar to 1 but it additionally displays download URLs; 3 shows all the build log output on standard error." msgstr "Usa el @var{nivel} de detalle especificado, un entero. Seleccionar 0 significa que no se produce ninguna salida, 1 es para salida silenciosa y 2 muestra toda la salida del registro de construcción en la salida estándar de error." #. type: table -#: guix-git/doc/guix.texi:10972 +#: guix-git/doc/guix.texi:11286 msgid "Allow the use of up to @var{n} CPU cores for the build. The special value @code{0} means to use as many CPU cores as available." msgstr "Permite usar @var{n} núcleos de la CPU para la construcción. El valor especial @code{0} significa usar tantos como núcleos haya en la CPU." #. type: table -#: guix-git/doc/guix.texi:10978 +#: guix-git/doc/guix.texi:11292 msgid "Allow at most @var{n} build jobs in parallel. @xref{Invoking guix-daemon, @option{--max-jobs}}, for details about this option and the equivalent @command{guix-daemon} option." msgstr "Permite como máximo @var{n} trabajos de construcción en paralelo. @xref{Invoking guix-daemon, @option{--max-jobs}}, para detalles acerca de esta opción y la opción equivalente de @command{guix-daemon}." #. type: item -#: guix-git/doc/guix.texi:10979 +#: guix-git/doc/guix.texi:11293 #, no-wrap msgid "--debug=@var{level}" msgstr "--debug=@var{nivel}" #. type: table -#: guix-git/doc/guix.texi:10983 +#: guix-git/doc/guix.texi:11297 msgid "Produce debugging output coming from the build daemon. @var{level} must be an integer between 0 and 5; higher means more verbose output. Setting a level of 4 or more may be helpful when debugging setup issues with the build daemon." msgstr "Usa el nivel de detalle proporcionado en los mensajes procedentes del daemon de construcción. @var{nivel} debe ser un entero entre 0 y 5; valores mayores indican una salida más detallada. Establecer un nivel de 4 o superior puede ser útil en la depuración de problemas de configuración con el daemon de construcción." #. type: Plain text -#: guix-git/doc/guix.texi:10990 +#: guix-git/doc/guix.texi:11304 msgid "Behind the scenes, @command{guix build} is essentially an interface to the @code{package-derivation} procedure of the @code{(guix packages)} module, and to the @code{build-derivations} procedure of the @code{(guix derivations)} module." msgstr "Tras las cortinas, @command{guix build} es esencialmente una interfaz al procedimiento @code{package-derivation} del módulo @code{(guix packages)}, y al procedimiento @code{build-derivations} del módulo @code{(guix derivations)}." #. type: Plain text -#: guix-git/doc/guix.texi:10994 +#: guix-git/doc/guix.texi:11308 msgid "In addition to options explicitly passed on the command line, @command{guix build} and other @command{guix} commands that support building honor the @env{GUIX_BUILD_OPTIONS} environment variable." msgstr "Además de las opciones proporcionadas explícitamente en la línea de órdenes, @command{guix build} y otras órdenes @command{guix} que permiten la construcción respetan el contenido de la variable de entorno @env{GUIX_BUILD_OPTIONS}." #. type: defvr -#: guix-git/doc/guix.texi:10995 +#: guix-git/doc/guix.texi:11309 #, no-wrap msgid "{Environment Variable} GUIX_BUILD_OPTIONS" msgstr "{Variable de entorno} GUIX_BUILD_OPTIONS" #. type: defvr -#: guix-git/doc/guix.texi:11000 +#: guix-git/doc/guix.texi:11314 msgid "Users can define this variable to a list of command line options that will automatically be used by @command{guix build} and other @command{guix} commands that can perform builds, as in the example below:" msgstr "Las usuarias pueden definir esta variable para que contenga una lista de opciones de línea de órdenes que se usarán automáticamente por @command{guix build} y otras órdenes @command{guix} que puedan realizar construcciones, como en el ejemplo siguiente:" #. type: example -#: guix-git/doc/guix.texi:11003 +#: guix-git/doc/guix.texi:11317 #, no-wrap msgid "$ export GUIX_BUILD_OPTIONS=\"--no-substitutes -c 2 -L /foo/bar\"\n" msgstr "$ export GUIX_BUILD_OPTIONS=\"--no-substitutes -c 2 -L /foo/bar\"\n" #. type: defvr -#: guix-git/doc/guix.texi:11007 +#: guix-git/doc/guix.texi:11321 msgid "These options are parsed independently, and the result is appended to the parsed command-line options." msgstr "Estas opciones se analizan independientemente, y el resultado se añade a continuación de las opciones de línea de órdenes." #. type: cindex -#: guix-git/doc/guix.texi:11013 +#: guix-git/doc/guix.texi:11327 #, no-wrap msgid "package variants" msgstr "variaciones de paquetes" #. type: Plain text -#: guix-git/doc/guix.texi:11021 +#: guix-git/doc/guix.texi:11335 msgid "Another set of command-line options supported by @command{guix build} and also @command{guix package} are @dfn{package transformation options}. These are options that make it possible to define @dfn{package variants}---for instance, packages built from different source code. This is a convenient way to create customized packages on the fly without having to type in the definitions of package variants (@pxref{Defining Packages})." msgstr "Otro conjunto de opciones de línea de órdenes permitidas por @command{guix build} y también @command{guix package} son las @dfn{opciones de transformación de paquetes}. Son opciones que hacen posible la definición de @dfn{variaciones de paquetes}---por ejemplo, paquetes construidos con un código fuente diferente. Es una forma conveniente de crear paquetes personalizados al vuelo sin tener que escribir las definiciones de las variaciones del paquete (@pxref{Defining Packages})." #. type: Plain text -#: guix-git/doc/guix.texi:11025 +#: guix-git/doc/guix.texi:11339 msgid "Package transformation options are preserved across upgrades: @command{guix upgrade} attempts to apply transformation options initially used when creating the profile to the upgraded packages." msgstr "Las opciones de transformación del paquete se preservan con las actualizaciones: @command{guix upgrade} intenta aplicar las opciones de transformación usadas inicialmente al crear el perfil para actualizar los paquetes." # FUZZY FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:11030 +#: guix-git/doc/guix.texi:11344 msgid "The available options are listed below. Most commands support them and also support a @option{--help-transform} option that lists all the available options and a synopsis (these options are not shown in the @option{--help} output for brevity)." msgstr "Las opciones disponibles se enumeran a continuación. La mayor parte de las ordenes los aceptan, así como la opción @option{--help-transform} que enumera todas las opciones disponibles y una sinópsis (estas opciones no se muestran en la salida de @option{--help} por brevedad)." #. type: cindex -#: guix-git/doc/guix.texi:11033 +#: guix-git/doc/guix.texi:11347 #, fuzzy, no-wrap #| msgid "formatting code" msgid "performance, tuning code" msgstr "dar formato al código" #. type: cindex -#: guix-git/doc/guix.texi:11034 +#: guix-git/doc/guix.texi:11348 #, fuzzy, no-wrap #| msgid "customization, of packages" msgid "optimization, of package code" msgstr "personalización, de paquetes" #. type: cindex -#: guix-git/doc/guix.texi:11035 +#: guix-git/doc/guix.texi:11349 #, fuzzy, no-wrap #| msgid "inputs, of packages" msgid "tuning, of package code" @@ -21806,55 +22405,55 @@ msgstr "entradas, de paquetes" # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:11036 +#: guix-git/doc/guix.texi:11350 #, fuzzy, no-wrap #| msgid "sound support" msgid "SIMD support" msgstr "sonido" #. type: cindex -#: guix-git/doc/guix.texi:11037 +#: guix-git/doc/guix.texi:11351 #, fuzzy, no-wrap #| msgid "installing packages" msgid "tunable packages" msgstr "instalar paquetes" #. type: cindex -#: guix-git/doc/guix.texi:11038 +#: guix-git/doc/guix.texi:11352 #, fuzzy, no-wrap #| msgid "package version" msgid "package multi-versioning" msgstr "versión de paquete" #. type: item -#: guix-git/doc/guix.texi:11039 +#: guix-git/doc/guix.texi:11353 #, fuzzy, no-wrap #| msgid "--repl[=@var{port}]" msgid "--tune[=@var{cpu}]" msgstr "--repl[=@var{puerto}]" #. type: table -#: guix-git/doc/guix.texi:11043 +#: guix-git/doc/guix.texi:11357 msgid "Use versions of the packages marked as ``tunable'' optimized for @var{cpu}. When @var{cpu} is @code{native}, or when it is omitted, tune for the CPU on which the @command{guix} command is running." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11049 +#: guix-git/doc/guix.texi:11363 msgid "Valid @var{cpu} names are those recognized by the underlying compiler, by default the GNU Compiler Collection. On x86_64 processors, this includes CPU names such as @code{nehalem}, @code{haswell}, and @code{skylake} (@pxref{x86 Options, @code{-march},, gcc, Using the GNU Compiler Collection (GCC)})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11056 +#: guix-git/doc/guix.texi:11370 msgid "As new generations of CPUs come out, they augment the standard instruction set architecture (ISA) with additional instructions, in particular instructions for single-instruction/multiple-data (SIMD) parallel processing. For example, while Core2 and Skylake CPUs both implement the x86_64 ISA, only the latter supports AVX2 SIMD instructions." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11063 +#: guix-git/doc/guix.texi:11377 msgid "The primary gain one can expect from @option{--tune} is for programs that can make use of those SIMD capabilities @emph{and} that do not already have a mechanism to select the right optimized code at run time. Packages that have the @code{tunable?} property set are considered @dfn{tunable packages} by the @option{--tune} option; a package definition with the property set looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:11068 +#: guix-git/doc/guix.texi:11382 #, fuzzy, no-wrap #| msgid "" #| "(package\n" @@ -21873,7 +22472,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:11072 +#: guix-git/doc/guix.texi:11386 #, no-wrap msgid "" " ;; This package may benefit from SIMD extensions so\n" @@ -21882,87 +22481,87 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11077 +#: guix-git/doc/guix.texi:11391 msgid "Other packages are not considered tunable. This allows Guix to use generic binaries in the cases where tuning for a specific CPU is unlikely to provide any gain." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11083 +#: guix-git/doc/guix.texi:11397 msgid "Tuned packages are built with @code{-march=@var{CPU}}; under the hood, the @option{-march} option is passed to the actual wrapper by a compiler wrapper. Since the build machine may not be able to run code for the target CPU micro-architecture, the test suite is not run when building a tuned package." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11087 +#: guix-git/doc/guix.texi:11401 msgid "To reduce rebuilds to the minimum, tuned packages are @emph{grafted} onto packages that depend on them (@pxref{Security Updates, grafts}). Thus, using @option{--no-grafts} cancels the effect of @option{--tune}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11093 +#: guix-git/doc/guix.texi:11407 msgid "We call this technique @dfn{package multi-versioning}: several variants of tunable packages may be built, one for each CPU variant. It is the coarse-grain counterpart of @dfn{function multi-versioning} as implemented by the GNU tool chain (@pxref{Function Multiversioning,,, gcc, Using the GNU Compiler Collection (GCC)})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11094 +#: guix-git/doc/guix.texi:11408 #, no-wrap msgid "--with-source=@var{source}" msgstr "--with-source=@var{fuente}" #. type: itemx -#: guix-git/doc/guix.texi:11095 +#: guix-git/doc/guix.texi:11409 #, no-wrap msgid "--with-source=@var{package}=@var{source}" msgstr "--with-source=@var{paquete}=@var{fuente}" #. type: itemx -#: guix-git/doc/guix.texi:11096 +#: guix-git/doc/guix.texi:11410 #, no-wrap msgid "--with-source=@var{package}@@@var{version}=@var{source}" msgstr "--with-source=@var{paquete}@@@var{versión}=@var{fuente}" #. type: table -#: guix-git/doc/guix.texi:11101 +#: guix-git/doc/guix.texi:11415 msgid "Use @var{source} as the source of @var{package}, and @var{version} as its version number. @var{source} must be a file name or a URL, as for @command{guix download} (@pxref{Invoking guix download})." msgstr "Usa @var{fuente} como la fuente de @var{paquete}, y @var{versión} como su número de versión. @var{fuente} debe ser un nombre de archivo o una URL, como en @command{guix download} (@pxref{Invoking guix download})." #. type: table -#: guix-git/doc/guix.texi:11107 +#: guix-git/doc/guix.texi:11421 msgid "When @var{package} is omitted, it is taken to be the package name specified on the command line that matches the base of @var{source}---e.g., if @var{source} is @code{/src/guile-2.0.10.tar.gz}, the corresponding package is @code{guile}." msgstr "Cuando se omite @var{paquete}, se toma el nombre de paquete especificado en la línea de ordenes que coincide con el nombre base de @var{fuente}---por ejemplo, si @var{fuente} fuese @code{/src/guile-2.0.10.tar.gz}, el paquete correspondiente sería @code{guile}." #. type: table -#: guix-git/doc/guix.texi:11110 +#: guix-git/doc/guix.texi:11424 msgid "Likewise, when @var{version} is omitted, the version string is inferred from @var{source}; in the previous example, it is @code{2.0.10}." msgstr "Del mismo modo, si se omite @var{versión}, la cadena de versión se deduce de @var{đuente}; en el ejemplo previo sería @code{2.0.10}." #. type: table -#: guix-git/doc/guix.texi:11115 +#: guix-git/doc/guix.texi:11429 msgid "This option allows users to try out versions of packages other than the one provided by the distribution. The example below downloads @file{ed-1.7.tar.gz} from a GNU mirror and uses that as the source for the @code{ed} package:" msgstr "Esta opción permite a las usuarias probar versiones del paquete distintas a las proporcionadas en la distribución. El ejemplo siguiente descarga @file{ed-1.7.tar.gz} de un espejo GNU y lo usa como la fuente para el paquete @code{ed}:" #. type: example -#: guix-git/doc/guix.texi:11118 +#: guix-git/doc/guix.texi:11432 #, no-wrap msgid "guix build ed --with-source=mirror://gnu/ed/ed-1.7.tar.gz\n" msgstr "guix build ed --with-source=mirror://gnu/ed/ed-1.7.tar.gz\n" #. type: table -#: guix-git/doc/guix.texi:11122 +#: guix-git/doc/guix.texi:11436 msgid "As a developer, @option{--with-source} makes it easy to test release candidates:" msgstr "Como desarrolladora, @option{--with-source} facilita la prueba de versiones candidatas para la publicación:" #. type: example -#: guix-git/doc/guix.texi:11125 +#: guix-git/doc/guix.texi:11439 #, no-wrap msgid "guix build guile --with-source=../guile-2.0.9.219-e1bb7.tar.xz\n" msgstr "guix build guile --with-source=../guile-2.0.9.219-e1bb7.tar.xz\n" #. type: table -#: guix-git/doc/guix.texi:11128 +#: guix-git/doc/guix.texi:11442 msgid "@dots{} or to build from a checkout in a pristine environment:" msgstr "@dots{} o la construcción desde una revisión en un entorno limpio:" #. type: example -#: guix-git/doc/guix.texi:11132 +#: guix-git/doc/guix.texi:11446 #, no-wrap msgid "" "$ git clone git://git.sv.gnu.org/guix.git\n" @@ -21972,127 +22571,127 @@ msgstr "" "$ guix build guix --with-source=guix@@1.0=./guix\n" #. type: item -#: guix-git/doc/guix.texi:11134 +#: guix-git/doc/guix.texi:11448 #, no-wrap msgid "--with-input=@var{package}=@var{replacement}" msgstr "--with-input=@var{paquete}=@var{reemplazo}" #. type: table -#: guix-git/doc/guix.texi:11139 +#: guix-git/doc/guix.texi:11453 msgid "Replace dependency on @var{package} by a dependency on @var{replacement}. @var{package} must be a package name, and @var{replacement} must be a package specification such as @code{guile} or @code{guile@@1.8}." msgstr "Substituye dependencias de @var{paquete} por dependencias de @var{reemplazo}. @var{paquete} debe ser un nombre de paquete, y @var{reemplazo} debe ser una especificación de paquete como @code{guile} o @code{guile@@1.8}." #. type: table -#: guix-git/doc/guix.texi:11143 +#: guix-git/doc/guix.texi:11457 msgid "For instance, the following command builds Guix, but replaces its dependency on the current stable version of Guile with a dependency on the legacy version of Guile, @code{guile@@2.0}:" msgstr "Por ejemplo, la orden siguiente construye Guix, pero substituye su dependencia de la versión estable actual de Guile con una dependencia en la versión antigua de Guile, @code{guile@@2.0}:" #. type: example -#: guix-git/doc/guix.texi:11146 +#: guix-git/doc/guix.texi:11460 #, no-wrap msgid "guix build --with-input=guile=guile@@2.0 guix\n" msgstr "guix build --with-input=guile=guile@@2.0 guix\n" # FUZZY #. type: table -#: guix-git/doc/guix.texi:11151 +#: guix-git/doc/guix.texi:11465 msgid "This is a recursive, deep replacement. So in this example, both @code{guix} and its dependency @code{guile-json} (which also depends on @code{guile}) get rebuilt against @code{guile@@2.0}." msgstr "Esta sustitución se realiza de forma recursiva y en profundidad. Por lo que en este ejemplo, tanto @code{guix} como su dependencia @code{guile-json} (que también depende de @code{guile}) se reconstruyen contra @code{guile@@2.0}." #. type: table -#: guix-git/doc/guix.texi:11154 +#: guix-git/doc/guix.texi:11468 msgid "This is implemented using the @code{package-input-rewriting} Scheme procedure (@pxref{Defining Packages, @code{package-input-rewriting}})." msgstr "Se implementa usando el procedimiento Scheme @code{package-input-rewriting} (@pxref{Defining Packages, @code{package-input-rewriting}})." #. type: item -#: guix-git/doc/guix.texi:11155 +#: guix-git/doc/guix.texi:11469 #, no-wrap msgid "--with-graft=@var{package}=@var{replacement}" msgstr "--with-graft=@var{paquete}=@var{reemplazo}" #. type: table -#: guix-git/doc/guix.texi:11161 +#: guix-git/doc/guix.texi:11475 msgid "This is similar to @option{--with-input} but with an important difference: instead of rebuilding the whole dependency chain, @var{replacement} is built and then @dfn{grafted} onto the binaries that were initially referring to @var{package}. @xref{Security Updates}, for more information on grafts." msgstr "Es similar a @option{--with-input} pero con una diferencia importante: en vez de reconstruir la cadena de dependencias completa, @var{reemplazo} se construye y se @dfn{injerta} en los binarios que inicialmente hacían referencia a @var{paquete}. @xref{Security Updates}, para más información sobre injertos." #. type: table -#: guix-git/doc/guix.texi:11165 +#: guix-git/doc/guix.texi:11479 msgid "For example, the command below grafts version 3.5.4 of GnuTLS onto Wget and all its dependencies, replacing references to the version of GnuTLS they currently refer to:" msgstr "Por ejemplo, la orden siguiente injerta la versión 3.5.4 de GnuTLS en Wget y todas sus dependencias, substituyendo las referencias a la versión de GnuTLS que tienen actualmente:" #. type: example -#: guix-git/doc/guix.texi:11168 +#: guix-git/doc/guix.texi:11482 #, no-wrap msgid "guix build --with-graft=gnutls=gnutls@@3.5.4 wget\n" msgstr "guix build --with-graft=gnutls=gnutls@@3.5.4 wget\n" #. type: table -#: guix-git/doc/guix.texi:11177 +#: guix-git/doc/guix.texi:11491 msgid "This has the advantage of being much faster than rebuilding everything. But there is a caveat: it works if and only if @var{package} and @var{replacement} are strictly compatible---for example, if they provide a library, the application binary interface (ABI) of those libraries must be compatible. If @var{replacement} is somehow incompatible with @var{package}, then the resulting package may be unusable. Use with care!" msgstr "Esta opción tiene la ventaja de ser mucho más rápida que la reconstrucción de todo. Pero hay una trampa: funciona si y solo si @var{paquete} y @var{reemplazo} son estrictamente compatibles---por ejemplo, si proporcionan una biblioteca, la interfaz binaria de aplicación (ABI) de dichas bibliotecas debe ser compatible. Si @var{reemplazo} es incompatible de alguna manera con @var{paquete}, el paquete resultante puede no ser usable. ¡Úsela con precaución!" #. type: cindex -#: guix-git/doc/guix.texi:11178 guix-git/doc/guix.texi:37882 +#: guix-git/doc/guix.texi:11492 guix-git/doc/guix.texi:38371 #, no-wrap msgid "debugging info, rebuilding" msgstr "información de depuración, reconstrucción" #. type: item -#: guix-git/doc/guix.texi:11179 +#: guix-git/doc/guix.texi:11493 #, no-wrap msgid "--with-debug-info=@var{package}" msgstr "--with-debug-info=@var{paquete}" #. type: table -#: guix-git/doc/guix.texi:11184 +#: guix-git/doc/guix.texi:11498 msgid "Build @var{package} in a way that preserves its debugging info and graft it onto packages that depend on it. This is useful if @var{package} does not already provide debugging info as a @code{debug} output (@pxref{Installing Debugging Files})." msgstr "Construye @var{paquete} de modo que preserve su información de depuración y lo injerta en los paquetes que dependan de él. Es útil si @var{paquete} no proporciona ya información de depuración como una salida @code{debug} (@pxref{Installing Debugging Files})." #. type: table -#: guix-git/doc/guix.texi:11190 +#: guix-git/doc/guix.texi:11504 msgid "For example, suppose you're experiencing a crash in Inkscape and would like to see what's up in GLib, a library deep down in Inkscape's dependency graph. GLib lacks a @code{debug} output, so debugging is tough. Fortunately, you rebuild GLib with debugging info and tack it on Inkscape:" msgstr "Por ejemplo, supongamos que está experimentando un fallo en Inkscape y querría ver qué pasa en GLib, una biblioteca con mucha profundidad en el grafo de dependencias de Inkscape. GLib no tiene una salida @code{debug}, de modo que su depuración es difícil. Afortunadamente puede reconstruir GLib con información de depuración e incorporarla a Inkscape:" #. type: example -#: guix-git/doc/guix.texi:11193 guix-git/doc/guix.texi:37913 +#: guix-git/doc/guix.texi:11507 guix-git/doc/guix.texi:38402 #, no-wrap msgid "guix install inkscape --with-debug-info=glib\n" msgstr "guix install inkscape --with-debug-info=glib\n" #. type: table -#: guix-git/doc/guix.texi:11197 +#: guix-git/doc/guix.texi:11511 msgid "Only GLib needs to be recompiled so this takes a reasonable amount of time. @xref{Installing Debugging Files}, for more info." msgstr "Únicamente GLib necesita una reconstrucción por lo que esto tarda un tiempo razonable. @xref{Installing Debugging Files} para obtener más información." #. type: quotation -#: guix-git/doc/guix.texi:11203 +#: guix-git/doc/guix.texi:11517 msgid "Under the hood, this option works by passing the @samp{#:strip-binaries? #f} to the build system of the package of interest (@pxref{Build Systems}). Most build systems support that option but some do not. In that case, an error is raised." msgstr "Esta opción funciona en su implementación interna proporcionando @samp{#:strip-binaries? #f} al sistema de construcción del paquete en cuestión (@pxref{Build Systems}). La mayor parte de sistemas de construcción implementan dicha opción, pero algunos no lo hacen. En este caso caso se emite un error." #. type: quotation -#: guix-git/doc/guix.texi:11207 +#: guix-git/doc/guix.texi:11521 msgid "Likewise, if a C/C++ package is built without @code{-g} (which is rarely the case), debugging info will remain unavailable even when @code{#:strip-binaries?} is false." msgstr "De igual modo, si se construye un paquete C/C++ sin la opción @code{-g} (lo que no es habitual que ocurra), la información de depuración seguirá sin estar disponible incluso cuando @code{#:strip-binaries?} sea falso." #. type: cindex -#: guix-git/doc/guix.texi:11209 +#: guix-git/doc/guix.texi:11523 #, no-wrap msgid "tool chain, changing the build tool chain of a package" msgstr "cadena de herramientas de construcción, cambiar para un paquete la" #. type: item -#: guix-git/doc/guix.texi:11210 +#: guix-git/doc/guix.texi:11524 #, no-wrap msgid "--with-c-toolchain=@var{package}=@var{toolchain}" msgstr "--with-c-toolchain=@var{paquete}=@var{cadena}" #. type: table -#: guix-git/doc/guix.texi:11214 +#: guix-git/doc/guix.texi:11528 msgid "This option changes the compilation of @var{package} and everything that depends on it so that they get built with @var{toolchain} instead of the default GNU tool chain for C/C++." msgstr "Esta opción cambia la compilación de @var{paquete} y todo lo que dependa de él de modo que se constuya con @var{cadena} en vez de la cadena de herramientas de construcción para C/C++ de GNU predeterminada." #. type: example -#: guix-git/doc/guix.texi:11221 +#: guix-git/doc/guix.texi:11535 #, no-wrap msgid "" "guix build octave-cli \\\n" @@ -22104,17 +22703,17 @@ msgstr "" " --with-c-toolchain=fftwf=gcc-toolchain@@10\n" #. type: table -#: guix-git/doc/guix.texi:11228 +#: guix-git/doc/guix.texi:11542 msgid "The command above builds a variant of the @code{fftw} and @code{fftwf} packages using version 10 of @code{gcc-toolchain} instead of the default tool chain, and then builds a variant of the GNU@tie{}Octave command-line interface using them. GNU@tie{}Octave itself is also built with @code{gcc-toolchain@@10}." msgstr "La orden anterior construye una variante de los paquetes @code{fftw} y @code{fftwf} usando la versión 10 de @code{gcc-toolchain} en vez de la cadena de herramientas de construcción predeterminada, y construye una variante de la interfaz de línea de órdenes GNU@tie{}Octave que hace uso de ellos. El propio paquete de GNU@tie{}Octave también se construye con @code{gcc-toolchain@@10}." #. type: table -#: guix-git/doc/guix.texi:11232 +#: guix-git/doc/guix.texi:11546 msgid "This other example builds the Hardware Locality (@code{hwloc}) library and its dependents up to @code{intel-mpi-benchmarks} with the Clang C compiler:" msgstr "Este otro ejemplo construye la biblioteca Hardware Locality (@code{hwloc}) y los paquetes que dependan de ella hasta @code{intel-mpi-benchmarks} con el compilador de C Clang:" #. type: example -#: guix-git/doc/guix.texi:11236 +#: guix-git/doc/guix.texi:11550 #, no-wrap msgid "" "guix build --with-c-toolchain=hwloc=clang-toolchain \\\n" @@ -22125,41 +22724,41 @@ msgstr "" # FUZZY FUZZY FUZZY #. type: quotation -#: guix-git/doc/guix.texi:11245 +#: guix-git/doc/guix.texi:11559 #, fuzzy msgid "There can be application binary interface (ABI) incompatibilities among tool chains. This is particularly true of the C++ standard library and run-time support libraries such as that of OpenMP@. By rebuilding all dependents with the same tool chain, @option{--with-c-toolchain} minimizes the risks of incompatibility but cannot entirely eliminate them. Choose @var{package} wisely." msgstr "Puede haber incompatibilidades en la interfaz binaria de las aplicaciones (ABI) entre distintas cadenas de herramientas de construcción. Esto es verdadero particularmente con la biblioteca estándar de C++ y las bibliotecas auxiliares para tiempo de ejecución como OpenMP. Mediante la reconstrucción de toda la cadena de dependencias con la misma cadena de herramientas, @option{--with-c-toolchain} minimiza el riesgo de incompatibilidades pero no puede eliminarlas al completo. Elija @var{paquete} con cuidado." #. type: item -#: guix-git/doc/guix.texi:11247 +#: guix-git/doc/guix.texi:11561 #, no-wrap msgid "--with-git-url=@var{package}=@var{url}" msgstr "--with-git-url=@var{paquete}=@var{url}" #. type: cindex -#: guix-git/doc/guix.texi:11248 +#: guix-git/doc/guix.texi:11562 #, no-wrap msgid "Git, using the latest commit" msgstr "Git, usar la última revisión" #. type: cindex -#: guix-git/doc/guix.texi:11249 +#: guix-git/doc/guix.texi:11563 #, no-wrap msgid "latest commit, building" msgstr "última revisión, construcción" #. type: table -#: guix-git/doc/guix.texi:11253 +#: guix-git/doc/guix.texi:11567 msgid "Build @var{package} from the latest commit of the @code{master} branch of the Git repository at @var{url}. Git sub-modules of the repository are fetched, recursively." msgstr "Construye @var{paquete} desde la última revisión de la rama @code{master} del repositorio Git en @var{url}. Los submódulos del repositorio Git se obtienen de forma recursiva." #. type: table -#: guix-git/doc/guix.texi:11256 +#: guix-git/doc/guix.texi:11570 msgid "For example, the following command builds the NumPy Python library against the latest commit of the master branch of Python itself:" msgstr "Por ejemplo, la siguiente orden construye la biblioteca NumPy de Python contra la última revisión de la rama master de Python en sí:" #. type: example -#: guix-git/doc/guix.texi:11260 +#: guix-git/doc/guix.texi:11574 #, no-wrap msgid "" "guix build python-numpy \\\n" @@ -22169,328 +22768,328 @@ msgstr "" " --with-git-url=python=https://github.com/python/cpython\n" #. type: table -#: guix-git/doc/guix.texi:11264 +#: guix-git/doc/guix.texi:11578 msgid "This option can also be combined with @option{--with-branch} or @option{--with-commit} (see below)." msgstr "Esta opción también puede combinarse con @option{--with-branch} o @option{--with-commit} (véase más adelante)." #. type: cindex -#: guix-git/doc/guix.texi:11265 guix-git/doc/guix.texi:28957 +#: guix-git/doc/guix.texi:11579 guix-git/doc/guix.texi:29294 #, no-wrap msgid "continuous integration" msgstr "integración continua" #. type: table -#: guix-git/doc/guix.texi:11271 +#: guix-git/doc/guix.texi:11585 msgid "Obviously, since it uses the latest commit of the given branch, the result of such a command varies over time. Nevertheless it is a convenient way to rebuild entire software stacks against the latest commit of one or more packages. This is particularly useful in the context of continuous integration (CI)." msgstr "Obviamente, ya que se usa la última revisión de la rama proporcionada, el resultado de dicha orden varia con el tiempo. No obstante es una forma conveniente de reconstruir una pila completa de software contra las últimas revisiones de uno o varios paquetes. Esto es particularmente útil en el contexto de integración continua (CI)." # FUZZY #. type: table -#: guix-git/doc/guix.texi:11275 +#: guix-git/doc/guix.texi:11589 msgid "Checkouts are kept in a cache under @file{~/.cache/guix/checkouts} to speed up consecutive accesses to the same repository. You may want to clean it up once in a while to save disk space." msgstr "Los directorios de trabajo se conservan en caché en @file{~/.cache/guix/checkouts} para agilizar accesos consecutivos al mismo repositorio. Puede desear limpiarla de vez en cuando para ahorrar espacio en el disco." #. type: item -#: guix-git/doc/guix.texi:11276 +#: guix-git/doc/guix.texi:11590 #, no-wrap msgid "--with-branch=@var{package}=@var{branch}" msgstr "--with-branch=@var{paquete}=@var{rama}" #. type: table -#: guix-git/doc/guix.texi:11282 +#: guix-git/doc/guix.texi:11596 msgid "Build @var{package} from the latest commit of @var{branch}. If the @code{source} field of @var{package} is an origin with the @code{git-fetch} method (@pxref{origin Reference}) or a @code{git-checkout} object, the repository URL is taken from that @code{source}. Otherwise you have to use @option{--with-git-url} to specify the URL of the Git repository." msgstr "Construye @var{paquete} desde la última revisión de @var{rama}. Si el campo @code{source} de @var{paquete} es un origen con el método @code{git-fetch} (@pxref{origin Reference}) o un objeto @code{git-checkout}, la URL del repositorio se toma de dicho campo @code{source}. En otro caso, se debe especificar la URL del repositorio Git mediante el uso de @option{--with-git-url}." #. type: table -#: guix-git/doc/guix.texi:11287 +#: guix-git/doc/guix.texi:11601 msgid "For instance, the following command builds @code{guile-sqlite3} from the latest commit of its @code{master} branch, and then builds @code{guix} (which depends on it) and @code{cuirass} (which depends on @code{guix}) against this specific @code{guile-sqlite3} build:" msgstr "Por ejemplo, la siguiente orden construye @code{guile-sqlite3} desde la última revisión de su rama @code{master} y, una vez hecho, construye @code{guix} (que depende de él) y @code{cuirass} (que depende de @code{guix}) en base a esta construcción específica de @code{guile-sqlite3}:" #. type: example -#: guix-git/doc/guix.texi:11290 +#: guix-git/doc/guix.texi:11604 #, no-wrap msgid "guix build --with-branch=guile-sqlite3=master cuirass\n" msgstr "guix build --with-branch=guile-sqlite3=master cuirass\n" #. type: item -#: guix-git/doc/guix.texi:11292 +#: guix-git/doc/guix.texi:11606 #, no-wrap msgid "--with-commit=@var{package}=@var{commit}" msgstr "--with-commit=@var{paquete}=@var{revisión}" #. type: table -#: guix-git/doc/guix.texi:11297 +#: guix-git/doc/guix.texi:11611 #, fuzzy #| msgid "This is similar to @option{--with-branch}, except that it builds from @var{commit} rather than the tip of a branch. @var{commit} must be a valid Git commit SHA1 identifier or a tag." msgid "This is similar to @option{--with-branch}, except that it builds from @var{commit} rather than the tip of a branch. @var{commit} must be a valid Git commit SHA1 identifier, a tag, or a @command{git describe} style identifier such as @code{1.0-3-gabc123}." msgstr "Esta opción es similar a @option{--with-branch}, salvo que construye desde @var{revisión} en vez de usar la última revisión de la rama. @var{revisión} debe ser un identificador de revisión SHA1 de Git válido o una etiqueta." #. type: item -#: guix-git/doc/guix.texi:11298 +#: guix-git/doc/guix.texi:11612 #, fuzzy, no-wrap msgid "--with-patch=@var{package}=@var{file}" msgstr "--with-branch=@var{paquete}=@var{rama}" #. type: table -#: guix-git/doc/guix.texi:11305 +#: guix-git/doc/guix.texi:11619 msgid "Add @var{file} to the list of patches applied to @var{package}, where @var{package} is a spec such as @code{python@@3.8} or @code{glibc}. @var{file} must contain a patch; it is applied with the flags specified in the @code{origin} of @var{package} (@pxref{origin Reference}), which by default includes @code{-p1} (@pxref{patch Directories,,, diffutils, Comparing and Merging Files})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11308 +#: guix-git/doc/guix.texi:11622 msgid "As an example, the command below rebuilds Coreutils with the GNU C Library (glibc) patched with the given patch:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11311 +#: guix-git/doc/guix.texi:11625 #, no-wrap msgid "guix build coreutils --with-patch=glibc=./glibc-frob.patch\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11315 +#: guix-git/doc/guix.texi:11629 msgid "In this example, glibc itself as well as everything that leads to Coreutils in the dependency graph is rebuilt." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11316 +#: guix-git/doc/guix.texi:11630 #, fuzzy, no-wrap msgid "upstream, latest version" msgstr "versión de paquete" #. type: item -#: guix-git/doc/guix.texi:11317 +#: guix-git/doc/guix.texi:11631 #, fuzzy, no-wrap msgid "--with-latest=@var{package}" msgstr "--without-tests=@var{paquete}" #. type: table -#: guix-git/doc/guix.texi:11322 +#: guix-git/doc/guix.texi:11636 msgid "So you like living on the bleeding edge? This option is for you! It replaces occurrences of @var{package} in the dependency graph with its latest upstream version, as reported by @command{guix refresh} (@pxref{Invoking guix refresh})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11326 +#: guix-git/doc/guix.texi:11640 msgid "It does so by determining the latest upstream release of @var{package} (if possible), downloading it, and authenticating it @emph{if} it comes with an OpenPGP signature." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11329 +#: guix-git/doc/guix.texi:11643 msgid "As an example, the command below builds Guix against the latest version of Guile-JSON:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11332 +#: guix-git/doc/guix.texi:11646 #, fuzzy, no-wrap msgid "guix build guix --with-latest=guile-json\n" msgstr "guix build --with-input=guile=guile@@2.0 guix\n" #. type: table -#: guix-git/doc/guix.texi:11341 +#: guix-git/doc/guix.texi:11655 msgid "There are limitations. First, in cases where the tool cannot or does not know how to authenticate source code, you are at risk of running malicious code; a warning is emitted in this case. Second, this option simply changes the source used in the existing package definitions, which is not always sufficient: there might be additional dependencies that need to be added, patches to apply, and more generally the quality assurance work that Guix developers normally do will be missing." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11346 +#: guix-git/doc/guix.texi:11660 msgid "You've been warned! In all the other cases, it's a snappy way to stay on top. We encourage you to submit patches updating the actual package definitions once you have successfully tested an upgrade (@pxref{Contributing})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11347 +#: guix-git/doc/guix.texi:11661 #, no-wrap msgid "test suite, skipping" msgstr "batería de pruebas, omisión de la" #. type: item -#: guix-git/doc/guix.texi:11348 +#: guix-git/doc/guix.texi:11662 #, no-wrap msgid "--without-tests=@var{package}" msgstr "--without-tests=@var{paquete}" #. type: table -#: guix-git/doc/guix.texi:11354 +#: guix-git/doc/guix.texi:11668 msgid "Build @var{package} without running its tests. This can be useful in situations where you want to skip the lengthy test suite of a intermediate package, or if a package's test suite fails in a non-deterministic fashion. It should be used with care because running the test suite is a good way to ensure a package is working as intended." msgstr "Construye @var{paquete} sin ejecutar su batería de pruebas. Puede ser útil en situaciones en las que quiera omitir una larga batería de pruebas de un paquete intermedio, o si la batería de pruebas no falla de manera determinista. Debe usarse con cuidado, puesto que la ejecución de la batería de pruebas es una buena forma de asegurarse de que el paquete funciona como se espera." #. type: table -#: guix-git/doc/guix.texi:11358 +#: guix-git/doc/guix.texi:11672 msgid "Turning off tests leads to a different store item. Consequently, when using this option, anything that depends on @var{package} must be rebuilt, as in this example:" msgstr "La desactivación de las pruebas conduce a diferentes elementos en el almacén. Por tanto, cuando use esta opción, cualquier objeto que dependa de @var{paquete} debe ser reconstruido, como en este ejemplo:" #. type: example -#: guix-git/doc/guix.texi:11361 +#: guix-git/doc/guix.texi:11675 #, no-wrap msgid "guix install --without-tests=python python-notebook\n" msgstr "guix install --without-tests=python python-notebook\n" #. type: table -#: guix-git/doc/guix.texi:11367 +#: guix-git/doc/guix.texi:11681 msgid "The command above installs @code{python-notebook} on top of @code{python} built without running its test suite. To do so, it also rebuilds everything that depends on @code{python}, including @code{python-notebook} itself." msgstr "La orden anterior instala @code{python-notebook} sobre un paquete @code{python} construido sin ejecutar su batería de pruebas. Para hacerlo, también reconstruye todos los paquetes que dependen de @code{python}, incluyendo el propio @code{pyhton-notebook}." #. type: table -#: guix-git/doc/guix.texi:11373 +#: guix-git/doc/guix.texi:11687 msgid "Internally, @option{--without-tests} relies on changing the @code{#:tests?} option of a package's @code{check} phase (@pxref{Build Systems}). Note that some packages use a customized @code{check} phase that does not respect a @code{#:tests? #f} setting. Therefore, @option{--without-tests} has no effect on these packages." msgstr "De manera interna, @option{--without-tests} depende del cambio de la opción @code{#:tests?} de la fase @code{check} del paquete (@pxref{Build Systems}). Tenga en cuenta que algunos paquetes usan una fase @code{check} personalizada que no respeta el valor de configuración @code{#:tests? #f}. Por tanto, @option{--without-tests} no tiene ningún efecto en dichos paquetes." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:11380 +#: guix-git/doc/guix.texi:11694 msgid "Wondering how to achieve the same effect using Scheme code, for example in your manifest, or how to write your own package transformation? @xref{Defining Package Variants}, for an overview of the programming interfaces available." msgstr "¿Se pregunta cómo conseguir el mismo efecto usando código Scheme, por ejemplo en su manifiesto, o cómo escribir su propia transformación de paquetes? @xref{Defining Package Variants} para obtener una descripción de la interfaz programática disponible." #. type: Plain text -#: guix-git/doc/guix.texi:11386 +#: guix-git/doc/guix.texi:11700 msgid "The command-line options presented below are specific to @command{guix build}." msgstr "Las opciones de línea de ordenes presentadas a continuación son específicas de @command{guix build}." #. type: item -#: guix-git/doc/guix.texi:11389 +#: guix-git/doc/guix.texi:11703 #, no-wrap msgid "--quiet" msgstr "--quiet" # FUZZY #. type: table -#: guix-git/doc/guix.texi:11394 +#: guix-git/doc/guix.texi:11708 msgid "Build quietly, without displaying the build log; this is equivalent to @option{--verbosity=0}. Upon completion, the build log is kept in @file{/var} (or similar) and can always be retrieved using the @option{--log-file} option." msgstr "Construye silenciosamente, sin mostrar el registro de construcción; es equivalente a @option{--verbosity=0}. Al finalizar, el registro de construcción se mantiene en @file{/var} (o similar) y puede recuperarse siempre mediante el uso de la opción @option{--log-file}." #. type: table -#: guix-git/doc/guix.texi:11399 +#: guix-git/doc/guix.texi:11713 msgid "Build the package, derivation, or other file-like object that the code within @var{file} evaluates to (@pxref{G-Expressions, file-like objects})." msgstr "Construye el paquete, derivación u otro objeto tipo-archivo al que evalúa el código en @var{archivo} (@pxref{G-Expressions, objetos ``tipo-archivo''})." #. type: table -#: guix-git/doc/guix.texi:11402 +#: guix-git/doc/guix.texi:11716 msgid "As an example, @var{file} might contain a package definition like this (@pxref{Defining Packages}):" msgstr "Como un ejemplo, @var{archivo} puede contener una definición como esta (@pxref{Defining Packages}):" #. type: table -#: guix-git/doc/guix.texi:11411 +#: guix-git/doc/guix.texi:11725 msgid "The @var{file} may also contain a JSON representation of one or more package definitions. Running @code{guix build -f} on @file{hello.json} with the following contents would result in building the packages @code{myhello} and @code{greeter}:" msgstr "El @var{archivo} también puede contener una representación en JSON de una o más definiciones de paquete. Ejecutar @code{guix build -f} en @file{hello.json} con el siguiente contenido resultaría en la construcción de los paquetes @code{myhello} y @code{greeter}:" #. type: item -#: guix-git/doc/guix.texi:11416 +#: guix-git/doc/guix.texi:11730 #, no-wrap msgid "--manifest=@var{manifest}" msgstr "--manifest=@var{manifiesto}" #. type: itemx -#: guix-git/doc/guix.texi:11417 +#: guix-git/doc/guix.texi:11731 #, no-wrap msgid "-m @var{manifest}" msgstr "-m @var{manifiesto}" #. type: table -#: guix-git/doc/guix.texi:11420 +#: guix-git/doc/guix.texi:11734 msgid "Build all packages listed in the given @var{manifest} (@pxref{profile-manifest, @option{--manifest}})." msgstr "Construye todos los paquetes listados en el @var{manifiesto} proporcionado (@pxref{profile-manifest, @option{--manifest}})." #. type: table -#: guix-git/doc/guix.texi:11424 +#: guix-git/doc/guix.texi:11738 msgid "Build the package or derivation @var{expr} evaluates to." msgstr "Construye el paquete o derivación a la que evalúa @var{expr}." #. type: table -#: guix-git/doc/guix.texi:11428 +#: guix-git/doc/guix.texi:11742 msgid "For example, @var{expr} may be @code{(@@ (gnu packages guile) guile-1.8)}, which unambiguously designates this specific variant of version 1.8 of Guile." msgstr "Por ejemplo, @var{expr} puede ser @code{(@@ (gnu packages guile) guile-1.8)}, que designa sin ambigüedad a esta variante específica de la versión 1.8 de Guile." #. type: table -#: guix-git/doc/guix.texi:11432 +#: guix-git/doc/guix.texi:11746 msgid "Alternatively, @var{expr} may be a G-expression, in which case it is used as a build program passed to @code{gexp->derivation} (@pxref{G-Expressions})." msgstr "De manera alternativa, @var{expr} puede ser una expresión-G, en cuyo caso se usa como un programa de construcción pasado a @code{gexp->derivation} (@pxref{G-Expressions})." #. type: table -#: guix-git/doc/guix.texi:11436 +#: guix-git/doc/guix.texi:11750 msgid "Lastly, @var{expr} may refer to a zero-argument monadic procedure (@pxref{The Store Monad}). The procedure must return a derivation as a monadic value, which is then passed through @code{run-with-store}." msgstr "Por último, @var{expr} puede hacer referencia a un procedimiento mónadico sin parámetros (@pxref{The Store Monad}). El procedimiento debe devolver una derivación como un valor monádico, el cual después se pasa a través de @code{run-with-store}." #. type: item -#: guix-git/doc/guix.texi:11437 +#: guix-git/doc/guix.texi:11751 #, no-wrap msgid "--source" msgstr "--source" #. type: itemx -#: guix-git/doc/guix.texi:11438 guix-git/doc/guix.texi:11835 +#: guix-git/doc/guix.texi:11752 #, no-wrap msgid "-S" msgstr "-S" #. type: table -#: guix-git/doc/guix.texi:11441 +#: guix-git/doc/guix.texi:11755 msgid "Build the source derivations of the packages, rather than the packages themselves." msgstr "Construye las derivaciones de las fuentes de los paquetes, en vez de los paquetes mismos." #. type: table -#: guix-git/doc/guix.texi:11445 +#: guix-git/doc/guix.texi:11759 msgid "For instance, @code{guix build -S gcc} returns something like @file{/gnu/store/@dots{}-gcc-4.7.2.tar.bz2}, which is the GCC source tarball." msgstr "Por ejemplo, @code{guix build -S gcc} devuelve algo como @file{/gnu/store/@dots{}-gcc-4.7.2.tar.bz2}, el cual es el archivador tar de fuentes de GCC." # FUZZY #. type: table -#: guix-git/doc/guix.texi:11449 +#: guix-git/doc/guix.texi:11763 msgid "The returned source tarball is the result of applying any patches and code snippets specified in the package @code{origin} (@pxref{Defining Packages})." msgstr "El archivador tar devuelto es el resultado de aplicar cualquier parche y fragmento de código en el origen (campo @code{origin}) del paquete (@pxref{Defining Packages})." #. type: cindex -#: guix-git/doc/guix.texi:11450 +#: guix-git/doc/guix.texi:11764 #, no-wrap msgid "source, verification" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11456 +#: guix-git/doc/guix.texi:11770 msgid "As with other derivations, the result of building a source derivation can be verified using the @option{--check} option (@pxref{build-check}). This is useful to validate that a (potentially already built or substituted, thus cached) package source matches against its declared hash." msgstr "" # FUZZY #. type: table -#: guix-git/doc/guix.texi:11461 +#: guix-git/doc/guix.texi:11775 msgid "Note that @command{guix build -S} compiles the sources only of the specified packages. They do not include the sources of statically linked dependencies and by themselves are insufficient for reproducing the packages." msgstr "Tenga en cuenta que @command{guix build -S} compila las fuentes únicamente de los paquetes especificados. Esto no incluye las dependencias enlazadas estáticamente y por sí mismas son insuficientes para reproducir los paquetes." #. type: item -#: guix-git/doc/guix.texi:11462 +#: guix-git/doc/guix.texi:11776 #, no-wrap msgid "--sources" msgstr "--sources" # FUZZY #. type: table -#: guix-git/doc/guix.texi:11469 +#: guix-git/doc/guix.texi:11783 msgid "Fetch and return the source of @var{package-or-derivation} and all their dependencies, recursively. This is a handy way to obtain a local copy of all the source code needed to build @var{packages}, allowing you to eventually build them even without network access. It is an extension of the @option{--source} option and can accept one of the following optional argument values:" msgstr "Obtiene y devuelve las fuentes de @var{paquete-o-derivación} y todas sus dependencias, de manera recursiva. Esto es útil para obtener una copia local de todo el código fuente necesario para construir los @var{paquetes}, le permite construirlos llegado el momento sin acceso a la red. Es una extensión de la opción @option{--source} y puede aceptar uno de los siguientes valores opcionales como parámetro:" #. type: item -#: guix-git/doc/guix.texi:11471 guix-git/doc/guix.texi:13252 +#: guix-git/doc/guix.texi:11785 guix-git/doc/guix.texi:13609 #, no-wrap msgid "package" msgstr "package" # FUZZY #. type: table -#: guix-git/doc/guix.texi:11474 +#: guix-git/doc/guix.texi:11788 msgid "This value causes the @option{--sources} option to behave in the same way as the @option{--source} option." msgstr "Este valor hace que la opción @option{--sources} se comporte de la misma manera que la opción @option{--source}." #. type: item -#: guix-git/doc/guix.texi:11475 guix-git/doc/guix.texi:19682 +#: guix-git/doc/guix.texi:11789 guix-git/doc/guix.texi:20044 #, no-wrap msgid "all" msgstr "all" #. type: table -#: guix-git/doc/guix.texi:11478 +#: guix-git/doc/guix.texi:11792 msgid "Build the source derivations of all packages, including any source that might be listed as @code{inputs}. This is the default value." msgstr "Construye las derivaciones de las fuentes de todos los paquetes, incluyendo cualquier fuente que pueda enumerarse como entrada (campo @code{inputs}). Este es el valor predeterminado." # TODO: Actualizar cuando se traduzca guix #. type: example -#: guix-git/doc/guix.texi:11484 +#: guix-git/doc/guix.texi:11798 #, no-wrap msgid "" "$ guix build --sources tzdata\n" @@ -22504,19 +23103,19 @@ msgstr "" " /gnu/store/@dots{}-tzcode2015b.tar.gz.drv\n" #. type: item -#: guix-git/doc/guix.texi:11486 +#: guix-git/doc/guix.texi:11800 #, no-wrap msgid "transitive" msgstr "transitive" #. type: table -#: guix-git/doc/guix.texi:11490 +#: guix-git/doc/guix.texi:11804 msgid "Build the source derivations of all packages, as well of all transitive inputs to the packages. This can be used e.g.@: to prefetch package source for later offline building." msgstr "Construye las derivaciones de fuentes de todos los paquetes, así como todas las entradas transitivas de los paquetes. Esto puede usarse, por ejemplo, para obtener las fuentes de paquetes para una construcción posterior sin conexión a la red." # TODO: Actualizar cuando se traduzca guix #. type: example -#: guix-git/doc/guix.texi:11501 +#: guix-git/doc/guix.texi:11815 #, no-wrap msgid "" "$ guix build --sources=transitive tzdata\n" @@ -22541,127 +23140,127 @@ msgstr "" # FUZZY #. type: table -#: guix-git/doc/guix.texi:11511 +#: guix-git/doc/guix.texi:11825 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of the system type of the build host. The @command{guix build} command allows you to repeat this option several times, in which case it builds for all the specified systems; other commands ignore extraneous @option{-s} options." msgstr "Intenta la construcción para @var{sistema}---por ejemplo, @code{i686-linux}---en vez del tipo de sistema de la máquina de construcción. La orden @command{guix build} le permite repetir esta opción varias veces, en cuyo caso construye para todos los sistemas especificados; otras ordenes ignoran opciones @option{-s} extrañas." #. type: quotation -#: guix-git/doc/guix.texi:11516 +#: guix-git/doc/guix.texi:11830 msgid "The @option{--system} flag is for @emph{native} compilation and must not be confused with cross-compilation. See @option{--target} below for information on cross-compilation." msgstr "La opción @option{--system} es para compilación @emph{nativa} y no debe confundirse con la compilación cruzada. Véase @option{--target} más adelante para información sobre compilación cruzada." #. type: table -#: guix-git/doc/guix.texi:11523 +#: guix-git/doc/guix.texi:11837 msgid "An example use of this is on Linux-based systems, which can emulate different personalities. For instance, passing @option{--system=i686-linux} on an @code{x86_64-linux} system or @option{--system=armhf-linux} on an @code{aarch64-linux} system allows you to build packages in a complete 32-bit environment." msgstr "Un ejemplo de uso de esta opción es en sistemas basados en Linux, que pueden emular diferentes personalidades. Por ejemplo, proporcionar la opción @option{--system=i686-linux} en un sistema @code{x86_64-linux}, o la opción @option{--system=armhf-linux} en un sistema @code{aarch64-linux}, le permite construir paquetes en un entorno de 32-bits completo." # FUZZY #. type: quotation -#: guix-git/doc/guix.texi:11528 +#: guix-git/doc/guix.texi:11842 msgid "Building for an @code{armhf-linux} system is unconditionally enabled on @code{aarch64-linux} machines, although certain aarch64 chipsets do not allow for this functionality, notably the ThunderX." msgstr "La construcción para un sistema @code{armhf-linux} está disponible de manera incondicional en máquinas @code{aarch64-linux}, aunque determinadas familias de procesadores aarch64 no lo permitan, notablemente el ThunderX." #. type: table -#: guix-git/doc/guix.texi:11534 +#: guix-git/doc/guix.texi:11848 msgid "Similarly, when transparent emulation with QEMU and @code{binfmt_misc} is enabled (@pxref{Virtualization Services, @code{qemu-binfmt-service-type}}), you can build for any system for which a QEMU @code{binfmt_misc} handler is installed." msgstr "De manera similar, cuando la emulación transparente con QEMU y @code{binfmt_misc} está activada (@pxref{Virtualization Services, @code{qemu-binfmt-service-type}}), puede construir para cualquier sistema para el que un manejador QEMU de @code{binfmt_misc} esté instalado." #. type: table -#: guix-git/doc/guix.texi:11538 +#: guix-git/doc/guix.texi:11852 msgid "Builds for a system other than that of the machine you are using can also be offloaded to a remote machine of the right architecture. @xref{Daemon Offload Setup}, for more information on offloading." msgstr "Las construcciones para un sistema distinto al de la máquina que usa se pueden delegar también a una máquina remota de la arquitectura correcta. @xref{Daemon Offload Setup}, para más información sobre delegación." # FUZZY #. type: table -#: guix-git/doc/guix.texi:11544 +#: guix-git/doc/guix.texi:11858 msgid "Cross-build for @var{triplet}, which must be a valid GNU triplet, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying Target Triplets, GNU configuration triplets,, autoconf, Autoconf})." msgstr "Compilación cruzada para la @var{tripleta}, que debe ser una tripleta GNU válida, cómo @code{\"aarch64-linux-gnu\"} (@pxref{Specifying Target triplets, GNU configuration triplets,, autoconf, Autoconf})." #. type: anchor{#1} -#: guix-git/doc/guix.texi:11546 +#: guix-git/doc/guix.texi:11860 msgid "build-check" msgstr "build-check" #. type: cindex -#: guix-git/doc/guix.texi:11547 +#: guix-git/doc/guix.texi:11861 #, no-wrap msgid "determinism, checking" msgstr "determinismo, comprobación" #. type: cindex -#: guix-git/doc/guix.texi:11548 +#: guix-git/doc/guix.texi:11862 #, no-wrap msgid "reproducibility, checking" msgstr "reproducibilidad, comprobación" #. type: table -#: guix-git/doc/guix.texi:11552 +#: guix-git/doc/guix.texi:11866 msgid "Rebuild @var{package-or-derivation}, which are already available in the store, and raise an error if the build results are not bit-for-bit identical." msgstr "Reconstruye @var{paquete-o-derivación}, que ya está disponible en el almacén, y emite un error si los resultados de la construcción no son idénticos bit-a-bit." # FUZZY #. type: table -#: guix-git/doc/guix.texi:11557 +#: guix-git/doc/guix.texi:11871 msgid "This mechanism allows you to check whether previously installed substitutes are genuine (@pxref{Substitutes}), or whether the build result of a package is deterministic. @xref{Invoking guix challenge}, for more background information and tools." msgstr "Este mecanismo le permite comprobar si sustituciones previamente instaladas son genuinas (@pxref{Substitutes}), o si el resultado de la construcción de un paquete es determinista. @xref{Invoking guix challenge}, para más información de referencia y herramientas." #. type: item -#: guix-git/doc/guix.texi:11562 +#: guix-git/doc/guix.texi:11876 #, no-wrap msgid "--repair" msgstr "--repair" #. type: cindex -#: guix-git/doc/guix.texi:11563 +#: guix-git/doc/guix.texi:11877 #, no-wrap msgid "repairing store items" msgstr "reparar elementos del almacén" #. type: table -#: guix-git/doc/guix.texi:11567 +#: guix-git/doc/guix.texi:11881 msgid "Attempt to repair the specified store items, if they are corrupt, by re-downloading or rebuilding them." msgstr "Intenta reparar los elementos del almacén especificados, si están corruptos, volviendo a descargarlos o mediante su reconstrucción." #. type: table -#: guix-git/doc/guix.texi:11569 +#: guix-git/doc/guix.texi:11883 msgid "This operation is not atomic and thus restricted to @code{root}." msgstr "Esta operación no es atómica y por lo tanto está restringida a @code{root}." #. type: item -#: guix-git/doc/guix.texi:11570 +#: guix-git/doc/guix.texi:11884 #, no-wrap msgid "--derivations" msgstr "--derivations" #. type: table -#: guix-git/doc/guix.texi:11574 +#: guix-git/doc/guix.texi:11888 msgid "Return the derivation paths, not the output paths, of the given packages." msgstr "Devuelve las rutas de derivación, no las rutas de salida, de los paquetes proporcionados." #. type: cindex -#: guix-git/doc/guix.texi:11577 +#: guix-git/doc/guix.texi:11891 #, no-wrap msgid "GC roots, adding" msgstr "GC, añadir raíces" #. type: cindex -#: guix-git/doc/guix.texi:11578 +#: guix-git/doc/guix.texi:11892 #, no-wrap msgid "garbage collector roots, adding" msgstr "raíces del recolector de basura, añadir" #. type: table -#: guix-git/doc/guix.texi:11581 guix-git/doc/guix.texi:35312 +#: guix-git/doc/guix.texi:11895 guix-git/doc/guix.texi:35756 msgid "Make @var{file} a symlink to the result, and register it as a garbage collector root." msgstr "Hace que @var{archivo} sea un enlace simbólico al resultado, y lo registra como una raíz del recolector de basura." #. type: table -#: guix-git/doc/guix.texi:11587 +#: guix-git/doc/guix.texi:11901 msgid "Consequently, the results of this @command{guix build} invocation are protected from garbage collection until @var{file} is removed. When that option is omitted, build results are eligible for garbage collection as soon as the build completes. @xref{Invoking guix gc}, for more on GC roots." msgstr "Consecuentemente, los resultados de esta invocación de @command{guix build} se protegen de la recolección de basura hasta que @var{archivo} se elimine. Cuando se omite esa opción, los resultados son candidatos a la recolección de basura en cuanto la construcción se haya completado. @xref{Invoking guix gc}, para más sobre las raíces del recolector de basura." #. type: item -#: guix-git/doc/guix.texi:11588 +#: guix-git/doc/guix.texi:11902 #, no-wrap msgid "--log-file" msgstr "--log-file" @@ -22669,7 +23268,7 @@ msgstr "--log-file" # FUZZY # TODO: (MAAV) Log #. type: cindex -#: guix-git/doc/guix.texi:11589 +#: guix-git/doc/guix.texi:11903 #, no-wrap msgid "build logs, access" msgstr "logs de construcción, acceso" @@ -22677,17 +23276,17 @@ msgstr "logs de construcción, acceso" # FUZZY # TODO: (MAAV) Log #. type: table -#: guix-git/doc/guix.texi:11593 +#: guix-git/doc/guix.texi:11907 msgid "Return the build log file names or URLs for the given @var{package-or-derivation}, or raise an error if build logs are missing." msgstr "Devuelve los nombres de archivos o URL de los log de construcción para el @var{paquete-o-derivación} proporcionado, o emite un error si no se encuentran los log de construcción." #. type: table -#: guix-git/doc/guix.texi:11596 +#: guix-git/doc/guix.texi:11910 msgid "This works regardless of how packages or derivations are specified. For instance, the following invocations are equivalent:" msgstr "Esto funciona independientemente de cómo se especificasen los paquetes o derivaciones. Por ejemplo, las siguientes invocaciones son equivalentes:" #. type: example -#: guix-git/doc/guix.texi:11602 +#: guix-git/doc/guix.texi:11916 #, fuzzy, no-wrap msgid "" "guix build --log-file $(guix build -d guile)\n" @@ -22701,19 +23300,19 @@ msgstr "" "guix build --log-file -e '(@@ (gnu packages guile) guile-2.0)'\n" #. type: table -#: guix-git/doc/guix.texi:11607 +#: guix-git/doc/guix.texi:11921 msgid "If a log is unavailable locally, and unless @option{--no-substitutes} is passed, the command looks for a corresponding log on one of the substitute servers (as specified with @option{--substitute-urls})." msgstr "Si no está disponible un registro local, y a menos que se proporcione @option{--no-substitutes}, la orden busca el registro correspondiente en uno de los servidores de sustituciones (como se especificaron con @option{--substitute-urls})." # FUZZY # TODO: (MAAV) Log #. type: table -#: guix-git/doc/guix.texi:11610 +#: guix-git/doc/guix.texi:11924 msgid "So for instance, imagine you want to see the build log of GDB on MIPS, but you are actually on an @code{x86_64} machine:" msgstr "Por lo que dado el caso, imaginese que desea ver el log de construcción de GDB en MIPS, pero realmente está en una máquina @code{x86_64}:" #. type: example -#: guix-git/doc/guix.texi:11614 +#: guix-git/doc/guix.texi:11928 #, fuzzy, no-wrap #| msgid "" #| "$ guix build --log-file gdb -s aarch64-linux\n" @@ -22728,34 +23327,34 @@ msgstr "" # FUZZY # TODO: (MAAV) Log #. type: table -#: guix-git/doc/guix.texi:11617 +#: guix-git/doc/guix.texi:11931 msgid "You can freely access a huge library of build logs!" msgstr "¡Puede acceder libremente a una biblioteca inmensa de log de construcción!" #. type: cindex -#: guix-git/doc/guix.texi:11622 +#: guix-git/doc/guix.texi:11936 #, no-wrap msgid "build failures, debugging" msgstr "fallos de construcción, depuración" #. type: Plain text -#: guix-git/doc/guix.texi:11628 +#: guix-git/doc/guix.texi:11942 msgid "When defining a new package (@pxref{Defining Packages}), you will probably find yourself spending some time debugging and tweaking the build until it succeeds. To do that, you need to operate the build commands yourself in an environment as close as possible to the one the build daemon uses." msgstr "Cuando esté definiendo un paquete nuevo (@pxref{Defining Packages}), probablemente se encuentre que dedicando algún tiempo a depurar y afinar la construcción hasta obtener un resultado satisfactorio. Para hacerlo, tiene que lanzar manualmente las órdenes de construcción en un entorno tan similar como sea posible al que el daemon de construcción usa." #. type: Plain text -#: guix-git/doc/guix.texi:11633 +#: guix-git/doc/guix.texi:11947 #, fuzzy msgid "To that end, the first thing to do is to use the @option{--keep-failed} or @option{-K} option of @command{guix build}, which will keep the failed build tree in @file{/tmp} or whatever directory you specified as @env{TMPDIR} (@pxref{Common Build Options, @option{--keep-failed}})." msgstr "Para ello, la primera cosa a hacer es usar la opción @option{--keep-failed} o @option{-K} de @command{guix build}, lo que mantiene el árbol de la construcción fallida en @file{/tmp} o el directorio que especificase con @env{TMPDIR} (@pxref{Invoking guix build, @option{--keep-failed}})." #. type: Plain text -#: guix-git/doc/guix.texi:11639 +#: guix-git/doc/guix.texi:11953 msgid "From there on, you can @command{cd} to the failed build tree and source the @file{environment-variables} file, which contains all the environment variable definitions that were in place when the build failed. So let's say you're debugging a build failure in package @code{foo}; a typical session would look like this:" msgstr "De ahí en adelante, puede usar @command{cd} para ir al árbol de la construcción fallida y cargar el archivo @file{environment-variables}, que contiene todas las definiciones de variables de entorno que existían cuando la construcción falló. Digamos que está depurando un fallo en la construcción del paquete @code{foo}; una sesión típica sería así:" #. type: example -#: guix-git/doc/guix.texi:11646 +#: guix-git/doc/guix.texi:11960 #, no-wrap msgid "" "$ guix build foo -K\n" @@ -22771,22 +23370,22 @@ msgstr "" "$ cd foo-1.2\n" #. type: Plain text -#: guix-git/doc/guix.texi:11650 +#: guix-git/doc/guix.texi:11964 msgid "Now, you can invoke commands as if you were the daemon (almost) and troubleshoot your build process." msgstr "Ahora puede invocar órdenes (casi) como si fuese el daemon y encontrar los errores en su proceso de construcción." #. type: Plain text -#: guix-git/doc/guix.texi:11656 +#: guix-git/doc/guix.texi:11970 msgid "Sometimes it happens that, for example, a package's tests pass when you run them manually but they fail when the daemon runs them. This can happen because the daemon runs builds in containers where, unlike in our environment above, network access is missing, @file{/bin/sh} does not exist, etc. (@pxref{Build Environment Setup})." msgstr "A veces ocurre que, por ejemplo, las pruebas de un paquete pasan cuando las ejecuta manualmente pero fallan cuando el daemon las ejecuta. Esto puede suceder debido a que el daemon construye dentro de contenedores donde, al contrario que en nuestro entorno previo, el acceso a la red no está disponible, @file{/bin/sh} no existe, etc. (@pxref{Build Environment Setup})." #. type: Plain text -#: guix-git/doc/guix.texi:11659 +#: guix-git/doc/guix.texi:11973 msgid "In such cases, you may need to run inspect the build process from within a container similar to the one the build daemon creates:" msgstr "En esos casos, puede tener que inspeccionar el proceso de construcción desde un contenedor similar al creado por el daemon de construcción:" #. type: example -#: guix-git/doc/guix.texi:11667 +#: guix-git/doc/guix.texi:11981 #, fuzzy, no-wrap #| msgid "" #| "$ guix build -K foo\n" @@ -22811,751 +23410,764 @@ msgstr "" "[env]# cd foo-1.2\n" #. type: Plain text -#: guix-git/doc/guix.texi:11676 +#: guix-git/doc/guix.texi:11990 #, fuzzy #| msgid "Here, @command{guix environment -C} creates a container and spawns a new shell in it (@pxref{Invoking guix environment}). The @command{--ad-hoc strace gdb} part adds the @command{strace} and @command{gdb} commands to the container, which you may find handy while debugging. The @option{--no-grafts} option makes sure we get the exact same environment, with ungrafted packages (@pxref{Security Updates}, for more info on grafts)." msgid "Here, @command{guix shell -C} creates a container and spawns a new shell in it (@pxref{Invoking guix shell}). The @command{strace gdb} part adds the @command{strace} and @command{gdb} commands to the container, which you may find handy while debugging. The @option{--no-grafts} option makes sure we get the exact same environment, with ungrafted packages (@pxref{Security Updates}, for more info on grafts)." msgstr "Aquí, @command{guix environment -C} crea un contenedor y lanza un shell nuevo en él (@pxref{Invoking guix environment}). El fragmento @command{--ad-hoc strace gdb} añade las ordenes @command{strace} y @command{gdb} al contenedor, las cuales pueden resultar útiles durante la depuración. La opción @option{--no-grafts} asegura que obtenemos exactamente el mismo entorno, con paquetes sin injertos (@pxref{Security Updates}, para más información sobre los injertos)." #. type: Plain text -#: guix-git/doc/guix.texi:11679 +#: guix-git/doc/guix.texi:11993 msgid "To get closer to a container like that used by the build daemon, we can remove @file{/bin/sh}:" msgstr "Para acercarnos más al contenedor usado por el daemon de construcción, podemos eliminar @file{/bin/sh}:" #. type: example -#: guix-git/doc/guix.texi:11682 +#: guix-git/doc/guix.texi:11996 #, no-wrap msgid "[env]# rm /bin/sh\n" msgstr "[env]# rm /bin/sh\n" #. type: Plain text -#: guix-git/doc/guix.texi:11686 +#: guix-git/doc/guix.texi:12000 #, fuzzy #| msgid "(Don't worry, this is harmless: this is all happening in the throw-away container created by @command{guix environment}.)" msgid "(Don't worry, this is harmless: this is all happening in the throw-away container created by @command{guix shell}.)" msgstr "(No se preocupe, es inocuo: todo esto ocurre en el contenedor de usar y tirar creado por @command{guix environment})." #. type: Plain text -#: guix-git/doc/guix.texi:11689 +#: guix-git/doc/guix.texi:12003 msgid "The @command{strace} command is probably not in the search path, but we can run:" msgstr "La orden @command{strace} probablemente no esté en la ruta de búsqueda, pero podemos ejecutar:" #. type: example -#: guix-git/doc/guix.texi:11692 +#: guix-git/doc/guix.texi:12006 #, no-wrap msgid "[env]# $GUIX_ENVIRONMENT/bin/strace -f -o log make check\n" msgstr "[env]# $GUIX_ENVIRONMENT/bin/strace -f -o log make check\n" #. type: Plain text -#: guix-git/doc/guix.texi:11697 +#: guix-git/doc/guix.texi:12011 msgid "In this way, not only you will have reproduced the environment variables the daemon uses, you will also be running the build process in a container similar to the one the daemon uses." msgstr "De este modo, no solo habrá reproducido las variables de entorno que usa el daemon, también estará ejecutando el proceso de construcción en un contenedor similar al usado por el daemon." #. type: section -#: guix-git/doc/guix.texi:11700 +#: guix-git/doc/guix.texi:12014 #, no-wrap msgid "Invoking @command{guix edit}" msgstr "Invocación de @command{guix edit}" #. type: command{#1} -#: guix-git/doc/guix.texi:11702 +#: guix-git/doc/guix.texi:12016 #, no-wrap msgid "guix edit" msgstr "guix edit" #. type: cindex -#: guix-git/doc/guix.texi:11703 +#: guix-git/doc/guix.texi:12017 #, no-wrap msgid "package definition, editing" msgstr "definición de paquete, edición" #. type: Plain text -#: guix-git/doc/guix.texi:11708 +#: guix-git/doc/guix.texi:12022 msgid "So many packages, so many source files! The @command{guix edit} command facilitates the life of users and packagers by pointing their editor at the source file containing the definition of the specified packages. For instance:" msgstr "¡Tantos paquetes, tantos archivos de fuentes! La orden @command{guix edit} facilita la vida de las usuarias y empaquetadoras apuntando su editor al archivo de fuentes que contiene la definición de los paquetes especificados. Por ejemplo:" #. type: example -#: guix-git/doc/guix.texi:11711 +#: guix-git/doc/guix.texi:12025 #, no-wrap msgid "guix edit gcc@@4.9 vim\n" msgstr "guix edit gcc@@4.9 vim\n" #. type: Plain text -#: guix-git/doc/guix.texi:11717 +#: guix-git/doc/guix.texi:12031 msgid "launches the program specified in the @env{VISUAL} or in the @env{EDITOR} environment variable to view the recipe of GCC@tie{}4.9.3 and that of Vim." msgstr "ejecuta el programa especificado en la variable de entorno @env{VISUAL} o en @env{EDITOR} para ver la receta de GCC@tie{}4.9.3 y la de Vim." #. type: Plain text -#: guix-git/doc/guix.texi:11723 +#: guix-git/doc/guix.texi:12037 msgid "If you are using a Guix Git checkout (@pxref{Building from Git}), or have created your own packages on @env{GUIX_PACKAGE_PATH} (@pxref{Package Modules}), you will be able to edit the package recipes. In other cases, you will be able to examine the read-only recipes for packages currently in the store." msgstr "Si está usando una copia de trabajo de Git de Guix (@pxref{Building from Git}), o ha creado sus propios paquetes en @env{GUIX_PACKAGE_PATH} (@pxref{Package Modules}), será capaz de editar las recetas de los paquetes. En otros casos, podrá examinar las recetas en modo de lectura únicamente para paquetes actualmente en el almacén." #. type: Plain text -#: guix-git/doc/guix.texi:11728 +#: guix-git/doc/guix.texi:12042 msgid "Instead of @env{GUIX_PACKAGE_PATH}, the command-line option @option{--load-path=@var{directory}} (or in short @option{-L @var{directory}}) allows you to add @var{directory} to the front of the package module search path and so make your own packages visible." msgstr "En vez de @env{GUIX_PACKAGE_PATH}, la opción de línea de ordenes @option{--load-path=@var{directorio}} (o en versión corta @option{-L @var{directorio}}) le permite añadir @var{directorio} al inicio de la ruta de búsqueda de módulos de paquete y hacer visibles sus propios paquetes." #. type: section -#: guix-git/doc/guix.texi:11730 +#: guix-git/doc/guix.texi:12044 #, no-wrap msgid "Invoking @command{guix download}" msgstr "Invocación de @command{guix download}" #. type: command{#1} -#: guix-git/doc/guix.texi:11732 +#: guix-git/doc/guix.texi:12046 #, no-wrap msgid "guix download" msgstr "guix download" #. type: cindex -#: guix-git/doc/guix.texi:11733 +#: guix-git/doc/guix.texi:12047 #, no-wrap msgid "downloading package sources" msgstr "descargando las fuentes de paquetes" #. type: Plain text -#: guix-git/doc/guix.texi:11740 +#: guix-git/doc/guix.texi:12054 msgid "When writing a package definition, developers typically need to download a source tarball, compute its SHA256 hash, and write that hash in the package definition (@pxref{Defining Packages}). The @command{guix download} tool helps with this task: it downloads a file from the given URI, adds it to the store, and prints both its file name in the store and its SHA256 hash." msgstr "Durante la escritura de una definición de paquete, las desarrolladoras típicamente tienen que descargar un archivador tar de fuentes, calcular su hash SHA256 y escribir ese hash en la definición del paquete (@pxref{Defining Packages}). La herramienta @command{guix download} ayuda con esta tarea: descarga un archivo de la URI proporcionada, lo añade al almacén e imprime tanto su nombre de archivo en el almacén como su hash SHA256." #. type: Plain text -#: guix-git/doc/guix.texi:11747 +#: guix-git/doc/guix.texi:12061 msgid "The fact that the downloaded file is added to the store saves bandwidth: when the developer eventually tries to build the newly defined package with @command{guix build}, the source tarball will not have to be downloaded again because it is already in the store. It is also a convenient way to temporarily stash files, which may be deleted eventually (@pxref{Invoking guix gc})." msgstr "El hecho de que el archivo descargado se añada al almacén ahorra ancho de banda: cuando el desarrollador intenta construir el paquete recién definido con @command{guix build}, el archivador de fuentes no tiene que descargarse de nuevo porque ya está en el almacén. También es una forma conveniente de conservar archivos temporalmente, que pueden ser borrados en un momento dado (@pxref{Invoking guix gc})." #. type: Plain text -#: guix-git/doc/guix.texi:11755 +#: guix-git/doc/guix.texi:12069 msgid "The @command{guix download} command supports the same URIs as used in package definitions. In particular, it supports @code{mirror://} URIs. @code{https} URIs (HTTP over TLS) are supported @emph{provided} the Guile bindings for GnuTLS are available in the user's environment; when they are not available, an error is raised. @xref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile}, for more information." msgstr "La orden @command{guix download} acepta las mismas URI que las usadas en las definiciones de paquetes. En particular, permite URI @code{mirror://}. Las URI @code{https} (HTTP sobre TLS) se aceptan @emph{cuando} el enlace Guile con GnuTLS está disponible en el entorno de la usuaria; cuando no está disponible se emite un error. @xref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile}, para más información." #. type: Plain text -#: guix-git/doc/guix.texi:11760 +#: guix-git/doc/guix.texi:12074 msgid "@command{guix download} verifies HTTPS server certificates by loading the certificates of X.509 authorities from the directory pointed to by the @env{SSL_CERT_DIR} environment variable (@pxref{X.509 Certificates}), unless @option{--no-check-certificate} is used." msgstr "@command{guix download} verifica los certificados del servidor HTTPS cargando las autoridades X.509 del directorio al que apunta la variable de entorno @env{SSL_CERT_DIR} (@pxref{X.509 Certificates}), a menos que se use @option{--no-check-certificate}." #. type: Plain text -#: guix-git/doc/guix.texi:11762 guix-git/doc/guix.texi:13565 +#: guix-git/doc/guix.texi:12076 guix-git/doc/guix.texi:13922 msgid "The following options are available:" msgstr "Las siguientes opciones están disponibles:" #. type: item -#: guix-git/doc/guix.texi:11764 guix-git/doc/guix.texi:11808 +#: guix-git/doc/guix.texi:12078 guix-git/doc/guix.texi:12122 #, no-wrap msgid "--hash=@var{algorithm}" msgstr "--hash=@var{algoritmo}" #. type: itemx -#: guix-git/doc/guix.texi:11765 guix-git/doc/guix.texi:11809 +#: guix-git/doc/guix.texi:12079 guix-git/doc/guix.texi:12123 #, no-wrap msgid "-H @var{algorithm}" msgstr "-H @var{algoritmo}" #. type: table -#: guix-git/doc/guix.texi:11768 +#: guix-git/doc/guix.texi:12082 msgid "Compute a hash using the specified @var{algorithm}. @xref{Invoking guix hash}, for more information." msgstr "Calcula el resultado del hash usando el @var{algoritmo} proporcionado. @xref{Invoking guix hash}, para más información." #. type: item -#: guix-git/doc/guix.texi:11769 guix-git/doc/guix.texi:11818 +#: guix-git/doc/guix.texi:12083 guix-git/doc/guix.texi:12132 #, no-wrap msgid "--format=@var{fmt}" msgstr "--format=@var{fmt}" #. type: itemx -#: guix-git/doc/guix.texi:11770 guix-git/doc/guix.texi:11819 +#: guix-git/doc/guix.texi:12084 guix-git/doc/guix.texi:12133 #, no-wrap msgid "-f @var{fmt}" msgstr "-f @var{fmt}" #. type: table -#: guix-git/doc/guix.texi:11773 +#: guix-git/doc/guix.texi:12087 msgid "Write the hash in the format specified by @var{fmt}. For more information on the valid values for @var{fmt}, @pxref{Invoking guix hash}." msgstr "Escribe el hash en el formato especificado por @var{fmt}. Para más información sobre los valores aceptados en @var{fmt}, @pxref{Invoking guix hash}." #. type: item -#: guix-git/doc/guix.texi:11774 +#: guix-git/doc/guix.texi:12088 #, no-wrap msgid "--no-check-certificate" msgstr "--no-check-certificate" #. type: table -#: guix-git/doc/guix.texi:11776 +#: guix-git/doc/guix.texi:12090 msgid "Do not validate the X.509 certificates of HTTPS servers." msgstr "No valida los certificados X.509 de los servidores HTTPS." # FUZZY #. type: table -#: guix-git/doc/guix.texi:11780 +#: guix-git/doc/guix.texi:12094 msgid "When using this option, you have @emph{absolutely no guarantee} that you are communicating with the authentic server responsible for the given URL, which makes you vulnerable to ``man-in-the-middle'' attacks." msgstr "Cuando se usa esta opción, no tiene @emph{absolutamente ninguna garantía} de que está comunicando con el servidor responsable de la URL auténtico, lo que le hace vulnerables a ataques de interceptación (``man-in-the-middle'')." #. type: item -#: guix-git/doc/guix.texi:11781 +#: guix-git/doc/guix.texi:12095 #, no-wrap msgid "--output=@var{file}" msgstr "--output=@var{archivo}" #. type: itemx -#: guix-git/doc/guix.texi:11782 +#: guix-git/doc/guix.texi:12096 #, no-wrap msgid "-o @var{file}" msgstr "-o @var{archivo}" #. type: table -#: guix-git/doc/guix.texi:11785 +#: guix-git/doc/guix.texi:12099 msgid "Save the downloaded file to @var{file} instead of adding it to the store." msgstr "Almacena el archivo descargado en @var{archivo} en vez de añadirlo al almacén." #. type: section -#: guix-git/doc/guix.texi:11788 +#: guix-git/doc/guix.texi:12102 #, no-wrap msgid "Invoking @command{guix hash}" msgstr "Invocación de @command{guix hash}" #. type: command{#1} -#: guix-git/doc/guix.texi:11790 +#: guix-git/doc/guix.texi:12104 #, no-wrap msgid "guix hash" msgstr "guix hash" #. type: Plain text -#: guix-git/doc/guix.texi:11795 +#: guix-git/doc/guix.texi:12109 #, fuzzy #| msgid "The @command{guix hash} command computes the hash of a file. It is primarily a convenience tool for anyone contributing to the distribution: it computes the cryptographic hash of a file, which can be used in the definition of a package (@pxref{Defining Packages})." msgid "The @command{guix hash} command computes the hash of a file. It is primarily a convenience tool for anyone contributing to the distribution: it computes the cryptographic hash of one or more files, which can be used in the definition of a package (@pxref{Defining Packages})." msgstr "La orden @command{guix hash} calcula el hash de un archivo. Es principalmente una conveniente herramienta para cualquiera que contribuya a la distribución: calcula el hash criptográfico de un archivo, que puede usarse en la definición de un paquete (@pxref{Defining Packages})." #. type: example -#: guix-git/doc/guix.texi:11800 +#: guix-git/doc/guix.texi:12114 #, fuzzy, no-wrap #| msgid "guix hash @var{option} @var{file}\n" msgid "guix hash @var{option} @var{file} ...\n" msgstr "guix hash @var{opciones} @var{archivo}\n" #. type: Plain text -#: guix-git/doc/guix.texi:11805 +#: guix-git/doc/guix.texi:12119 msgid "When @var{file} is @code{-} (a hyphen), @command{guix hash} computes the hash of data read from standard input. @command{guix hash} has the following options:" msgstr "Cuando @var{archivo} es @code{-} (un guión), @command{guix hash} calcula el hash de los datos leídos por la entrada estándar. @command{guix hash} tiene las siguientes opciones:" #. type: table -#: guix-git/doc/guix.texi:11812 +#: guix-git/doc/guix.texi:12126 msgid "Compute a hash using the specified @var{algorithm}, @code{sha256} by default." msgstr "Calcula un hash usando el @var{algoritmo} especificado, @code{sha256} de manera predeterminada." #. type: table -#: guix-git/doc/guix.texi:11817 -msgid "@var{algorithm} must the name of a cryptographic hash algorithm supported by Libgcrypt @i{via} Guile-Gcrypt---e.g., @code{sha512} or @code{sha3-256} (@pxref{Hash Functions,,, guile-gcrypt, Guile-Gcrypt Reference Manual})." +#: guix-git/doc/guix.texi:12131 +#, fuzzy +#| msgid "@var{algorithm} must the name of a cryptographic hash algorithm supported by Libgcrypt @i{via} Guile-Gcrypt---e.g., @code{sha512} or @code{sha3-256} (@pxref{Hash Functions,,, guile-gcrypt, Guile-Gcrypt Reference Manual})." +msgid "@var{algorithm} must be the name of a cryptographic hash algorithm supported by Libgcrypt @i{via} Guile-Gcrypt---e.g., @code{sha512} or @code{sha3-256} (@pxref{Hash Functions,,, guile-gcrypt, Guile-Gcrypt Reference Manual})." msgstr "@var{algoritmo} debe ser el nombre de un algoritmo criptográfico de hash implementado por Libgcrypt a través de Guile-Gcrypt---por ejemplo @code{sha512} o @code{sha3-256} (@pxref{Hash Functions,,, guile-gcrypt, Guile-Gcrypt Reference Manual})." #. type: table -#: guix-git/doc/guix.texi:11821 +#: guix-git/doc/guix.texi:12135 msgid "Write the hash in the format specified by @var{fmt}." msgstr "Escribe el hash en el formato especificado por @var{fmt}." #. type: table -#: guix-git/doc/guix.texi:11824 +#: guix-git/doc/guix.texi:12138 msgid "Supported formats: @code{base64}, @code{nix-base32}, @code{base32}, @code{base16} (@code{hex} and @code{hexadecimal} can be used as well)." msgstr "Los formatos disponibles son: @code{base64}, @code{nix-base32}, @code{base32}, @code{base16} (se puede usar también @code{hex} y @code{hexadecimal})." #. type: table -#: guix-git/doc/guix.texi:11828 +#: guix-git/doc/guix.texi:12142 msgid "If the @option{--format} option is not specified, @command{guix hash} will output the hash in @code{nix-base32}. This representation is used in the definitions of packages." msgstr "Si no se especifica la opción @option{--format}, @command{guix hash} mostrará el hash en @code{nix-base32}. Esta representación es la usada en las definiciones de paquetes." #. type: table -#: guix-git/doc/guix.texi:11833 -msgid "This option is deprecated in favor of @option{--serializer}. It is a legacy alias for @var{type} sets to @code{nar}." +#: guix-git/doc/guix.texi:12148 +msgid "The @option{--recursive} option is deprecated in favor of @option{--serializer=nar} (see below); @option{-r} remains accepted as a convenient shorthand." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11834 +#: guix-git/doc/guix.texi:12149 #, fuzzy, no-wrap #| msgid "--type=@var{type}" msgid "--serializer=@var{type}" msgstr "--type=@var{tipo}" +#. type: itemx +#: guix-git/doc/guix.texi:12150 +#, fuzzy, no-wrap +#| msgid "-t @var{type}" +msgid "-S @var{type}" +msgstr "-t @var{tipo}" + #. type: table -#: guix-git/doc/guix.texi:11837 +#: guix-git/doc/guix.texi:12152 #, fuzzy #| msgid "Compute the hash on @var{file} recursively." msgid "Compute the hash on @var{file} using @var{type} serialization." msgstr "Calcula el hash de @var{archivo} recursivamente." #. type: table -#: guix-git/doc/guix.texi:11839 +#: guix-git/doc/guix.texi:12154 #, fuzzy #| msgid "The @var{options} can be among the following:" msgid "@var{type} may be one of the following:" msgstr "Las @var{opciones} pueden ser las siguientes:" #. type: item -#: guix-git/doc/guix.texi:11841 guix-git/doc/guix.texi:13918 -#: guix-git/doc/guix.texi:17405 guix-git/doc/guix.texi:19679 +#: guix-git/doc/guix.texi:12156 guix-git/doc/guix.texi:14275 +#: guix-git/doc/guix.texi:17767 guix-git/doc/guix.texi:20041 #, no-wrap msgid "none" msgstr "none" #. type: table -#: guix-git/doc/guix.texi:11843 +#: guix-git/doc/guix.texi:12158 msgid "This is the default: it computes the hash of a file's contents." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11844 +#: guix-git/doc/guix.texi:12159 #, no-wrap msgid "nar" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11854 +#: guix-git/doc/guix.texi:12169 #, fuzzy #| msgid "In this case, the hash is computed on an archive containing @var{file}, including its children if it is a directory. Some of the metadata of @var{file} is part of the archive; for instance, when @var{file} is a regular file, the hash is different depending on whether @var{file} is executable or not. Metadata such as time stamps has no impact on the hash (@pxref{Invoking guix archive})." -msgid "Compute the hash of a ``normalized archive'' (or ``nar'') containing @var{file}, including its children if it is a directory. Some of the metadata of @var{file} is part of the archive; for instance, when @var{file} is a regular file, the hash is different depending on whether @var{file} is executable or not. Metadata such as time stamps has no impact on the hash (@pxref{Invoking guix archive}, for more info on the nar format)." +msgid "Compute the hash of a ``normalized archive'' (or ``nar'') containing @var{file}, including its children if it is a directory. Some of the metadata of @var{file} is part of the archive; for instance, when @var{file} is a regular file, the hash is different depending on whether @var{file} is executable or not. Metadata such as time stamps have no impact on the hash (@pxref{Invoking guix archive}, for more info on the nar format)." msgstr "Es este caso el hash se calcula en un archivador que contiene @var{archivo}, incluyendo su contenido si es un directorio. Algunos de los metadatos de @var{archivo} son parte del archivador; por ejemplo, cuando @var{archivo} es un archivo normal, el hash es diferente dependiendo de si @var{archivo} es ejecutable o no. Los metadatos como las marcas de tiempo no influyen en el hash (@pxref{Invoking guix archive})." #. type: item -#: guix-git/doc/guix.texi:11855 +#: guix-git/doc/guix.texi:12170 #, fuzzy, no-wrap #| msgid "github" msgid "git" msgstr "github" #. type: table -#: guix-git/doc/guix.texi:11858 -msgid "Compute the has of the file or directory as a Git ``tree'', following the same method as the Git version control system." +#: guix-git/doc/guix.texi:12173 +msgid "Compute the hash of the file or directory as a Git ``tree'', following the same method as the Git version control system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11860 +#: guix-git/doc/guix.texi:12175 #, no-wrap msgid "--exclude-vcs" msgstr "--exclude-vcs" #. type: itemx -#: guix-git/doc/guix.texi:11861 guix-git/doc/guix.texi:13038 +#: guix-git/doc/guix.texi:12176 guix-git/doc/guix.texi:13395 #, no-wrap msgid "-x" msgstr "-x" #. type: table -#: guix-git/doc/guix.texi:11864 +#: guix-git/doc/guix.texi:12179 msgid "When combined with @option{--recursive}, exclude version control system directories (@file{.bzr}, @file{.git}, @file{.hg}, etc.)." msgstr "Cuando se combina con @option{--recursive}, excluye los directorios del sistema de control de versiones (@file{.bzr}, @file{.git}, @file{.hg}, etc.)." #. type: vindex -#: guix-git/doc/guix.texi:11865 +#: guix-git/doc/guix.texi:12180 #, no-wrap msgid "git-fetch" msgstr "git-fetch" #. type: table -#: guix-git/doc/guix.texi:11869 +#: guix-git/doc/guix.texi:12184 msgid "As an example, here is how you would compute the hash of a Git checkout, which is useful when using the @code{git-fetch} method (@pxref{origin Reference}):" msgstr "Como un ejemplo, así es como calcularía el hash de una copia de trabajo Git, lo cual es útil cuando se usa el método @code{git-fetch} (@pxref{origin Reference}):" #. type: example -#: guix-git/doc/guix.texi:11874 -#, no-wrap +#: guix-git/doc/guix.texi:12189 +#, fuzzy, no-wrap +#| msgid "" +#| "$ git clone http://example.org/foo.git\n" +#| "$ cd foo\n" +#| "$ guix hash -rx .\n" msgid "" "$ git clone http://example.org/foo.git\n" "$ cd foo\n" -"$ guix hash -rx .\n" +"$ guix hash -x --serializer=nar .\n" msgstr "" "$ git clone http://example.org/foo.git\n" "$ cd foo\n" "$ guix hash -rx .\n" #. type: cindex -#: guix-git/doc/guix.texi:11878 guix-git/doc/guix.texi:11883 +#: guix-git/doc/guix.texi:12193 guix-git/doc/guix.texi:12198 #, no-wrap msgid "Invoking @command{guix import}" msgstr "Invocación de @command{guix import}" #. type: cindex -#: guix-git/doc/guix.texi:11880 +#: guix-git/doc/guix.texi:12195 #, no-wrap msgid "importing packages" msgstr "importar paquetes" #. type: cindex -#: guix-git/doc/guix.texi:11881 +#: guix-git/doc/guix.texi:12196 #, no-wrap msgid "package import" msgstr "importación de un paquete" #. type: cindex -#: guix-git/doc/guix.texi:11882 +#: guix-git/doc/guix.texi:12197 #, no-wrap msgid "package conversion" msgstr "conversión de un paquete" #. type: Plain text -#: guix-git/doc/guix.texi:11890 +#: guix-git/doc/guix.texi:12205 msgid "The @command{guix import} command is useful for people who would like to add a package to the distribution with as little work as possible---a legitimate demand. The command knows of a few repositories from which it can ``import'' package metadata. The result is a package definition, or a template thereof, in the format we know (@pxref{Defining Packages})." msgstr "La orden @command{guix import} es útil para quienes desean añadir un paquete a la distribución con el menor trabajo posible---una demanda legítima. La orden conoce algunos repositorios de los que puede ``importar'' metadatos de paquetes. El resultado es una definición de paquete, o una plantilla de ella, en el formato que conocemos (@pxref{Defining Packages})." #. type: example -#: guix-git/doc/guix.texi:11895 +#: guix-git/doc/guix.texi:12210 #, no-wrap msgid "guix import @var{importer} @var{options}@dots{}\n" msgstr "guix import @var{importador} @var{opciones}@dots{}\n" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:11900 +#: guix-git/doc/guix.texi:12215 msgid "@var{importer} specifies the source from which to import package metadata, and @var{options} specifies a package identifier and other options specific to @var{importer}." msgstr "@var{importador} especifica la fuente de la que se importan los metadatos del paquete, @var{opciones} especifica un identificador de paquete y otras opciones específicas del @var{importador}." #. type: Plain text -#: guix-git/doc/guix.texi:11904 +#: guix-git/doc/guix.texi:12219 msgid "Some of the importers rely on the ability to run the @command{gpgv} command. For these, GnuPG must be installed and in @code{$PATH}; run @code{guix install gnupg} if needed." msgstr "Algunos de los importadores dependen de poder ejecutar la orden @command{gpgv}. Para ello, GnuPG debe estar instalado y en @code{$PATH}; ejecute @code{guix install gnupg} si es necesario." #. type: Plain text -#: guix-git/doc/guix.texi:11906 +#: guix-git/doc/guix.texi:12221 msgid "Currently, the available ``importers'' are:" msgstr "Actualmente los ``importadores'' disponibles son:" #. type: item -#: guix-git/doc/guix.texi:11908 guix-git/doc/guix.texi:12546 +#: guix-git/doc/guix.texi:12223 guix-git/doc/guix.texi:12861 #, no-wrap msgid "gnu" msgstr "gnu" # FUZZY #. type: table -#: guix-git/doc/guix.texi:11912 +#: guix-git/doc/guix.texi:12227 msgid "Import metadata for the given GNU package. This provides a template for the latest version of that GNU package, including the hash of its source tarball, and its canonical synopsis and description." msgstr "Importa los metadatos del paquete GNU seleccionado. Proporciona una plantilla para la última versión de dicho paquete GNU, incluyendo el hash de su archivador tar de fuentes, y su sinopsis y descripción canónica." # FUZZY #. type: table -#: guix-git/doc/guix.texi:11915 +#: guix-git/doc/guix.texi:12230 msgid "Additional information such as the package dependencies and its license needs to be figured out manually." msgstr "Información adicional como las dependencias del paquete y su licencia deben ser deducidas manualmente." #. type: table -#: guix-git/doc/guix.texi:11918 +#: guix-git/doc/guix.texi:12233 msgid "For example, the following command returns a package definition for GNU@tie{}Hello:" msgstr "Por ejemplo, la siguiente orden devuelve una definición de paquete para GNU@tie{}Hello." #. type: example -#: guix-git/doc/guix.texi:11921 +#: guix-git/doc/guix.texi:12236 #, no-wrap msgid "guix import gnu hello\n" msgstr "guix import gnu hello\n" #. type: table -#: guix-git/doc/guix.texi:11924 guix-git/doc/guix.texi:12165 -#: guix-git/doc/guix.texi:12215 guix-git/doc/guix.texi:12244 +#: guix-git/doc/guix.texi:12239 guix-git/doc/guix.texi:12480 +#: guix-git/doc/guix.texi:12530 guix-git/doc/guix.texi:12559 msgid "Specific command-line options are:" msgstr "Las opciones específicas de línea de ordenes son:" #. type: item -#: guix-git/doc/guix.texi:11926 guix-git/doc/guix.texi:12743 +#: guix-git/doc/guix.texi:12241 guix-git/doc/guix.texi:13058 #, no-wrap msgid "--key-download=@var{policy}" msgstr "--key-download=@var{política}" # FUZZY #. type: table -#: guix-git/doc/guix.texi:11930 +#: guix-git/doc/guix.texi:12245 msgid "As for @command{guix refresh}, specify the policy to handle missing OpenPGP keys when verifying the package signature. @xref{Invoking guix refresh, @option{--key-download}}." msgstr "Como en @command{guix refresh}, especifica la política de tratamiento de las claves OpenPGP no encontradas cuando se verifica la firma del paquete. @xref{Invoking guix refresh, @option{--key-download}}." #. type: item -#: guix-git/doc/guix.texi:11932 guix-git/doc/guix.texi:11933 -#: guix-git/doc/guix.texi:12570 +#: guix-git/doc/guix.texi:12247 guix-git/doc/guix.texi:12248 +#: guix-git/doc/guix.texi:12885 #, no-wrap msgid "pypi" msgstr "pypi" # FUZZY #. type: table -#: guix-git/doc/guix.texi:11940 +#: guix-git/doc/guix.texi:12255 msgid "Import metadata from the @uref{https://pypi.python.org/, Python Package Index}. Information is taken from the JSON-formatted description available at @code{pypi.python.org} and usually includes all the relevant information, including package dependencies. For maximum efficiency, it is recommended to install the @command{unzip} utility, so that the importer can unzip Python wheels and gather data from them." msgstr "Importa metadatos desde el @uref{https://pypi.python.org/, índice de paquetes Python (PyPI)}. La información se toma de la descripción con formato JSON disponible en @code{pypi.python.org} y habitualmente incluye toda la información relevante, incluyendo las dependencias del paquete. Para una máxima eficiencia, se recomienda la instalación de la utilidad @command{unzip}, de manera que el importador pueda extraer los archivos wheel de Python y obtener datos de ellos." #. type: table -#: guix-git/doc/guix.texi:11943 +#: guix-git/doc/guix.texi:12258 #, fuzzy #| msgid "The command below imports metadata for the @code{itsdangerous} Python package:" msgid "The command below imports metadata for the latest version of the @code{itsdangerous} Python package:" msgstr "La siguiente orden importa los metadatos para el paquete de Python @code{itsdangerous}:" #. type: example -#: guix-git/doc/guix.texi:11946 +#: guix-git/doc/guix.texi:12261 #, no-wrap msgid "guix import pypi itsdangerous\n" msgstr "guix import pypi itsdangerous\n" #. type: table -#: guix-git/doc/guix.texi:11949 guix-git/doc/guix.texi:12052 -#: guix-git/doc/guix.texi:12393 +#: guix-git/doc/guix.texi:12264 guix-git/doc/guix.texi:12367 +#: guix-git/doc/guix.texi:12708 #, fuzzy #| msgid "You can also specify several package names:" msgid "You can also ask for a specific version:" msgstr "Puede especificar también varios nombres de paquetes:" #. type: example -#: guix-git/doc/guix.texi:11952 +#: guix-git/doc/guix.texi:12267 #, fuzzy, no-wrap #| msgid "guix import pypi itsdangerous\n" msgid "guix import pypi itsdangerous@@1.1.0\n" msgstr "guix import pypi itsdangerous\n" #. type: table -#: guix-git/doc/guix.texi:11960 guix-git/doc/guix.texi:11985 -#: guix-git/doc/guix.texi:12017 guix-git/doc/guix.texi:12188 -#: guix-git/doc/guix.texi:12229 guix-git/doc/guix.texi:12280 -#: guix-git/doc/guix.texi:12305 guix-git/doc/guix.texi:12321 -#: guix-git/doc/guix.texi:12369 guix-git/doc/guix.texi:12405 +#: guix-git/doc/guix.texi:12275 guix-git/doc/guix.texi:12300 +#: guix-git/doc/guix.texi:12332 guix-git/doc/guix.texi:12503 +#: guix-git/doc/guix.texi:12544 guix-git/doc/guix.texi:12595 +#: guix-git/doc/guix.texi:12620 guix-git/doc/guix.texi:12636 +#: guix-git/doc/guix.texi:12684 guix-git/doc/guix.texi:12720 msgid "Traverse the dependency graph of the given upstream package recursively and generate package expressions for all those packages that are not yet in Guix." msgstr "Recorre el grafo de dependencias del paquete original proporcionado recursivamente y genera expresiones de paquete para todos aquellos paquetes que no estén todavía en Guix." #. type: item -#: guix-git/doc/guix.texi:11962 guix-git/doc/guix.texi:11963 -#: guix-git/doc/guix.texi:12572 +#: guix-git/doc/guix.texi:12277 guix-git/doc/guix.texi:12278 +#: guix-git/doc/guix.texi:12887 #, no-wrap msgid "gem" msgstr "gem" #. type: table -#: guix-git/doc/guix.texi:11972 +#: guix-git/doc/guix.texi:12287 msgid "Import metadata from @uref{https://rubygems.org/, RubyGems}. Information is taken from the JSON-formatted description available at @code{rubygems.org} and includes most relevant information, including runtime dependencies. There are some caveats, however. The metadata doesn't distinguish between synopses and descriptions, so the same string is used for both fields. Additionally, the details of non-Ruby dependencies required to build native extensions is unavailable and left as an exercise to the packager." msgstr "Importa metadatos desde @uref{https://rubygems.org/, RubyGems}. La información se extrae de la descripción en formato JSON disponible en @code{rubygems.org} e incluye la información más relevante, incluyendo las dependencias en tiempo de ejecución. Hay algunos puntos a tener en cuenta, no obstante. Los metadatos no distinguen entre sinopsis y descripción, por lo que se usa la misma cadena para ambos campos. Adicionalmente, los detalles de las dependencias no-Ruby necesarias para construir extensiones nativas no está disponible y se deja como ejercicio a la empaquetadora." #. type: table -#: guix-git/doc/guix.texi:11974 +#: guix-git/doc/guix.texi:12289 msgid "The command below imports metadata for the @code{rails} Ruby package:" msgstr "La siguiente orden importa los meta-datos para el paquete de Ruby @code{rails}:" #. type: example -#: guix-git/doc/guix.texi:11977 +#: guix-git/doc/guix.texi:12292 #, no-wrap msgid "guix import gem rails\n" msgstr "guix import gem rails\n" #. type: cindex -#: guix-git/doc/guix.texi:11987 guix-git/doc/guix.texi:11988 +#: guix-git/doc/guix.texi:12302 guix-git/doc/guix.texi:12303 #, fuzzy, no-wrap #| msgid "inetd" msgid "minetest" msgstr "inetd" #. type: cindex -#: guix-git/doc/guix.texi:11989 +#: guix-git/doc/guix.texi:12304 #, fuzzy, no-wrap #| msgid "contents" msgid "ContentDB" msgstr "contents" #. type: table -#: guix-git/doc/guix.texi:11998 +#: guix-git/doc/guix.texi:12313 #, fuzzy #| msgid "Import metadata from @uref{https://www.metacpan.org/, MetaCPAN}. Information is taken from the JSON-formatted metadata provided through @uref{https://fastapi.metacpan.org/, MetaCPAN's API} and includes most relevant information, such as module dependencies. License information should be checked closely. If Perl is available in the store, then the @code{corelist} utility will be used to filter core modules out of the list of dependencies." msgid "Import metadata from @uref{https://content.minetest.net, ContentDB}. Information is taken from the JSON-formatted metadata provided through @uref{https://content.minetest.net/help/api/, ContentDB's API} and includes most relevant information, including dependencies. There are some caveats, however. The license information is often incomplete. The commit hash is sometimes missing. The descriptions are in the Markdown format, but Guix uses Texinfo instead. Texture packs and subgames are unsupported." msgstr "Importa metadatos desde @uref{https://www.metacpan.org/, MetaCPAN}. La información se extrae de la descripción en formato JSON disponible a través del @uref{https://fastapi.metacpan.org/, API de MetaCPAN} e incluye la información más relevante, como las dependencias de otros módulos. La información de la licencia debe ser comprobada atentamente. Si Perl está disponible en el almacén, se usará la utilidad @code{corelist} para borrar los módulos básicos de la lista de dependencias." #. type: table -#: guix-git/doc/guix.texi:12000 +#: guix-git/doc/guix.texi:12315 #, fuzzy #| msgid "The command below imports metadata for the @code{rails} Ruby package:" msgid "The command below imports metadata for the Mesecons mod by Jeija:" msgstr "La siguiente orden importa los meta-datos para el paquete de Ruby @code{rails}:" #. type: example -#: guix-git/doc/guix.texi:12003 +#: guix-git/doc/guix.texi:12318 #, fuzzy, no-wrap #| msgid "guix import json hello.json\n" msgid "guix import minetest Jeija/mesecons\n" msgstr "guix import json hello.json\n" #. type: table -#: guix-git/doc/guix.texi:12006 +#: guix-git/doc/guix.texi:12321 msgid "The author name can also be left out:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12009 +#: guix-git/doc/guix.texi:12324 #, fuzzy, no-wrap #| msgid "guix import json hello.json\n" msgid "guix import minetest mesecons\n" msgstr "guix import json hello.json\n" #. type: item -#: guix-git/doc/guix.texi:12019 guix-git/doc/guix.texi:12568 +#: guix-git/doc/guix.texi:12334 guix-git/doc/guix.texi:12883 #, no-wrap msgid "cpan" msgstr "cpan" #. type: cindex -#: guix-git/doc/guix.texi:12020 +#: guix-git/doc/guix.texi:12335 #, no-wrap msgid "CPAN" msgstr "CPAN" #. type: table -#: guix-git/doc/guix.texi:12028 +#: guix-git/doc/guix.texi:12343 msgid "Import metadata from @uref{https://www.metacpan.org/, MetaCPAN}. Information is taken from the JSON-formatted metadata provided through @uref{https://fastapi.metacpan.org/, MetaCPAN's API} and includes most relevant information, such as module dependencies. License information should be checked closely. If Perl is available in the store, then the @code{corelist} utility will be used to filter core modules out of the list of dependencies." msgstr "Importa metadatos desde @uref{https://www.metacpan.org/, MetaCPAN}. La información se extrae de la descripción en formato JSON disponible a través del @uref{https://fastapi.metacpan.org/, API de MetaCPAN} e incluye la información más relevante, como las dependencias de otros módulos. La información de la licencia debe ser comprobada atentamente. Si Perl está disponible en el almacén, se usará la utilidad @code{corelist} para borrar los módulos básicos de la lista de dependencias." #. type: table -#: guix-git/doc/guix.texi:12031 +#: guix-git/doc/guix.texi:12346 msgid "The command command below imports metadata for the Acme::Boolean Perl module:" msgstr "La siguiente orden importa los metadatos del módulo Perl Acme::Boolean:" #. type: example -#: guix-git/doc/guix.texi:12034 +#: guix-git/doc/guix.texi:12349 #, no-wrap msgid "guix import cpan Acme::Boolean\n" msgstr "guix import cpan Acme::Boolean\n" #. type: item -#: guix-git/doc/guix.texi:12036 guix-git/doc/guix.texi:12564 +#: guix-git/doc/guix.texi:12351 guix-git/doc/guix.texi:12879 #, no-wrap msgid "cran" msgstr "cran" #. type: cindex -#: guix-git/doc/guix.texi:12037 +#: guix-git/doc/guix.texi:12352 #, no-wrap msgid "CRAN" msgstr "CRAN" #. type: cindex -#: guix-git/doc/guix.texi:12038 +#: guix-git/doc/guix.texi:12353 #, no-wrap msgid "Bioconductor" msgstr "Bioconductor" #. type: table -#: guix-git/doc/guix.texi:12042 +#: guix-git/doc/guix.texi:12357 msgid "Import metadata from @uref{https://cran.r-project.org/, CRAN}, the central repository for the @uref{https://r-project.org, GNU@tie{}R statistical and graphical environment}." msgstr "Importa metadatos desde @uref{https://cran.r-project.org/, CRAN}, el repositorio central para el @uref{https://r-project.org, entorno estadístico y gráfico GNU@tie{}R}." #. type: table -#: guix-git/doc/guix.texi:12044 +#: guix-git/doc/guix.texi:12359 msgid "Information is extracted from the @file{DESCRIPTION} file of the package." msgstr "La información se extrae del archivo @file{DESCRIPTION} del paquete." #. type: table -#: guix-git/doc/guix.texi:12046 +#: guix-git/doc/guix.texi:12361 msgid "The command command below imports metadata for the Cairo R package:" msgstr "La siguiente orden importa los metadatos del paquete de R Cairo:" #. type: example -#: guix-git/doc/guix.texi:12049 +#: guix-git/doc/guix.texi:12364 #, no-wrap msgid "guix import cran Cairo\n" msgstr "guix import cran Cairo\n" #. type: example -#: guix-git/doc/guix.texi:12055 +#: guix-git/doc/guix.texi:12370 #, fuzzy, no-wrap #| msgid "guix import cran Cairo\n" msgid "guix import cran rasterVis@@0.50.3\n" msgstr "guix import cran Cairo\n" #. type: table -#: guix-git/doc/guix.texi:12060 +#: guix-git/doc/guix.texi:12375 msgid "When @option{--recursive} is added, the importer will traverse the dependency graph of the given upstream package recursively and generate package expressions for all those packages that are not yet in Guix." msgstr "Cuando se añade @option{--recursive}, el importador recorrerá el grafo de dependencias del paquete original proporcionado recursivamente y generará expresiones de paquetes para todos aquellos que no estén todavía en Guix." #. type: table -#: guix-git/doc/guix.texi:12067 +#: guix-git/doc/guix.texi:12382 msgid "When @option{--style=specification} is added, the importer will generate package definitions whose inputs are package specifications instead of references to package variables. This is useful when generated package definitions are to be appended to existing user modules, as the list of used package modules need not be changed. The default is @option{--style=variable}." msgstr "" # FUZZY # MAAV (TODO): High-throughput #. type: table -#: guix-git/doc/guix.texi:12072 +#: guix-git/doc/guix.texi:12387 msgid "When @option{--archive=bioconductor} is added, metadata is imported from @uref{https://www.bioconductor.org/, Bioconductor}, a repository of R packages for the analysis and comprehension of high-throughput genomic data in bioinformatics." msgstr "Cuando se usa @option{--archive=bioconductor}, los metadatos se importan de @uref{https://www.bioconductor.org, Bioconductor}, un repositorio de paquetes R para el análisis y comprensión de datos genéticos de alto caudal en bioinformática." #. type: table -#: guix-git/doc/guix.texi:12075 +#: guix-git/doc/guix.texi:12390 msgid "Information is extracted from the @file{DESCRIPTION} file contained in the package archive." msgstr "La información se extrae del archivo @file{DESCRIPTION} contenido en el archivo del paquete." #. type: table -#: guix-git/doc/guix.texi:12077 +#: guix-git/doc/guix.texi:12392 msgid "The command below imports metadata for the GenomicRanges R package:" msgstr "La siguiente orden importa los metadatos del paquete de R GenomicRanges:" #. type: example -#: guix-git/doc/guix.texi:12080 +#: guix-git/doc/guix.texi:12395 #, no-wrap msgid "guix import cran --archive=bioconductor GenomicRanges\n" msgstr "guix import cran --archive=bioconductor GenomicRanges\n" #. type: table -#: guix-git/doc/guix.texi:12085 +#: guix-git/doc/guix.texi:12400 msgid "Finally, you can also import R packages that have not yet been published on CRAN or Bioconductor as long as they are in a git repository. Use @option{--archive=git} followed by the URL of the git repository:" msgstr "Por último, también puede importar paquetes de R que no se hayan publicado todavía en CRAN o en Bioconductor siempre que estén en un repositorio git. Use @option{--archive=git} seguido de la URL del repositorio git:" #. type: example -#: guix-git/doc/guix.texi:12088 +#: guix-git/doc/guix.texi:12403 #, no-wrap msgid "guix import cran --archive=git https://github.com/immunogenomics/harmony\n" msgstr "guix import cran --archive=git https://github.com/immunogenomics/harmony\n" #. type: item -#: guix-git/doc/guix.texi:12090 +#: guix-git/doc/guix.texi:12405 #, no-wrap msgid "texlive" msgstr "texlive" #. type: cindex -#: guix-git/doc/guix.texi:12091 +#: guix-git/doc/guix.texi:12406 #, no-wrap msgid "TeX Live" msgstr "Tex Live" #. type: cindex -#: guix-git/doc/guix.texi:12092 +#: guix-git/doc/guix.texi:12407 #, no-wrap msgid "CTAN" msgstr "CTAN" # FUZZY #. type: table -#: guix-git/doc/guix.texi:12096 +#: guix-git/doc/guix.texi:12411 #, fuzzy #| msgid "Import metadata from @uref{https://www.ctan.org/, CTAN}, the comprehensive TeX archive network for TeX packages that are part of the @uref{https://www.tug.org/texlive/, TeX Live distribution}." msgid "Import TeX package information from the TeX Live package database for TeX packages that are part of the @uref{https://www.tug.org/texlive/, TeX Live distribution}." msgstr "Importa metadatos desde @uref{https://www.ctan.org/, CTAN}, la completa red de archivos TeX para paquetes TeX que son parte de la @uref{https://www.tug.org/texlive/, distribución TeX Live}." #. type: table -#: guix-git/doc/guix.texi:12101 +#: guix-git/doc/guix.texi:12416 msgid "Information about the package is obtained from the TeX Live package database, a plain text file that is included in the @code{texlive-bin} package. The source code is downloaded from possibly multiple locations in the SVN repository of the Tex Live project." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12104 +#: guix-git/doc/guix.texi:12419 msgid "The command command below imports metadata for the @code{fontspec} TeX package:" msgstr "La siguiente orden importa los metadatos del paquete de TeX @code{fontspec}:" #. type: example -#: guix-git/doc/guix.texi:12107 +#: guix-git/doc/guix.texi:12422 #, no-wrap msgid "guix import texlive fontspec\n" msgstr "guix import texlive fontspec\n" #. type: cindex -#: guix-git/doc/guix.texi:12110 +#: guix-git/doc/guix.texi:12425 #, no-wrap msgid "JSON, import" msgstr "JSON, importación" #. type: table -#: guix-git/doc/guix.texi:12113 +#: guix-git/doc/guix.texi:12428 msgid "Import package metadata from a local JSON file. Consider the following example package definition in JSON format:" msgstr "Importa metadatos de paquetes desde un archivo JSON local. Considere el siguiente ejemplo de definición de paquete en formato JSON:" #. type: example -#: guix-git/doc/guix.texi:12126 +#: guix-git/doc/guix.texi:12441 #, no-wrap msgid "" "@{\n" @@ -23583,17 +24195,17 @@ msgstr "" "@}\n" #. type: table -#: guix-git/doc/guix.texi:12132 +#: guix-git/doc/guix.texi:12447 msgid "The field names are the same as for the @code{} record (@xref{Defining Packages}). References to other packages are provided as JSON lists of quoted package specification strings such as @code{guile} or @code{guile@@2.0}." msgstr "Los nombres de los campos son los mismos que para el registro @code{} (@xref{Defining Packages}). Las referencias a otros paquetes se proporcionan como listas JSON de cadenas de especificación de paquete entrecomilladas como @code{guile} o @code{guile@@2.0}." #. type: table -#: guix-git/doc/guix.texi:12135 +#: guix-git/doc/guix.texi:12450 msgid "The importer also supports a more explicit source definition using the common fields for @code{} records:" msgstr "El importador también permite una definición de fuentes más explícita usando los campos comunes de los registros @code{}:" #. type: example -#: guix-git/doc/guix.texi:12148 +#: guix-git/doc/guix.texi:12463 #, no-wrap msgid "" "@{\n" @@ -23621,384 +24233,384 @@ msgstr "" "@}\n" #. type: table -#: guix-git/doc/guix.texi:12152 +#: guix-git/doc/guix.texi:12467 msgid "The command below reads metadata from the JSON file @code{hello.json} and outputs a package expression:" msgstr "La siguiente orden importa los metadatos desde el archivo JSON @code{hello.json} y devuelve una expresión de ``package'':" #. type: example -#: guix-git/doc/guix.texi:12155 +#: guix-git/doc/guix.texi:12470 #, no-wrap msgid "guix import json hello.json\n" msgstr "guix import json hello.json\n" #. type: item -#: guix-git/doc/guix.texi:12157 guix-git/doc/guix.texi:12158 -#: guix-git/doc/guix.texi:12576 +#: guix-git/doc/guix.texi:12472 guix-git/doc/guix.texi:12473 +#: guix-git/doc/guix.texi:12891 #, no-wrap msgid "hackage" msgstr "hackage" #. type: table -#: guix-git/doc/guix.texi:12163 +#: guix-git/doc/guix.texi:12478 msgid "Import metadata from the Haskell community's central package archive @uref{https://hackage.haskell.org/, Hackage}. Information is taken from Cabal files and includes all the relevant information, including package dependencies." msgstr "Importa metadatos desde el archivo central de paquetes de la comunidad Haskell @uref{https://hackage.haskell.org/, Hackage}. La información se obtiene de archivos Cabal e incluye toda la información relevante, incluyendo las dependencias del paquete." #. type: item -#: guix-git/doc/guix.texi:12167 +#: guix-git/doc/guix.texi:12482 #, no-wrap msgid "--stdin" msgstr "--stdin" #. type: itemx -#: guix-git/doc/guix.texi:12168 +#: guix-git/doc/guix.texi:12483 #, no-wrap msgid "-s" msgstr "-s" #. type: table -#: guix-git/doc/guix.texi:12170 +#: guix-git/doc/guix.texi:12485 msgid "Read a Cabal file from standard input." msgstr "Lee un archivo Cabal por la entrada estándar." #. type: item -#: guix-git/doc/guix.texi:12170 guix-git/doc/guix.texi:12217 +#: guix-git/doc/guix.texi:12485 guix-git/doc/guix.texi:12532 #, no-wrap msgid "--no-test-dependencies" msgstr "--no-test-dependencies" #. type: table -#: guix-git/doc/guix.texi:12173 guix-git/doc/guix.texi:12220 +#: guix-git/doc/guix.texi:12488 guix-git/doc/guix.texi:12535 msgid "Do not include dependencies required only by the test suites." msgstr "No incluye las dependencias necesarias únicamente para las baterías de pruebas." #. type: item -#: guix-git/doc/guix.texi:12173 +#: guix-git/doc/guix.texi:12488 #, no-wrap msgid "--cabal-environment=@var{alist}" msgstr "--cabal-environment=@var{alist}" #. type: itemx -#: guix-git/doc/guix.texi:12174 +#: guix-git/doc/guix.texi:12489 #, no-wrap msgid "-e @var{alist}" msgstr "-e @var{alist}" #. type: table -#: guix-git/doc/guix.texi:12183 +#: guix-git/doc/guix.texi:12498 msgid "@var{alist} is a Scheme alist defining the environment in which the Cabal conditionals are evaluated. The accepted keys are: @code{os}, @code{arch}, @code{impl} and a string representing the name of a flag. The value associated with a flag has to be either the symbol @code{true} or @code{false}. The value associated with other keys has to conform to the Cabal file format definition. The default value associated with the keys @code{os}, @code{arch} and @code{impl} is @samp{linux}, @samp{x86_64} and @samp{ghc}, respectively." msgstr "@var{alist} es una lista asociativa Scheme que define el entorno en el que los condicionales Cabal se evalúan. Los valores aceptados son: @code{os}, @code{arch}, @code{impl} y una cadena que representa el nombre de la condición. El valor asociado a la condición tiene que ser o bien el símbolo @code{true} o bien @code{false}. Los valores predeterminados asociados a las claves @code{os}, @code{arch} y @code{impl} son @samp{linux}, @samp{x86_64} y @samp{ghc}, respectivamente." #. type: table -#: guix-git/doc/guix.texi:12193 +#: guix-git/doc/guix.texi:12508 msgid "The command below imports metadata for the latest version of the HTTP Haskell package without including test dependencies and specifying the value of the flag @samp{network-uri} as @code{false}:" msgstr "La siguiente orden importa los metadatos de la última versión del paquete Haskell HTTP sin incluir las dependencias de las pruebas y especificando la opción @samp{network-uri} con valor @code{false}:" #. type: example -#: guix-git/doc/guix.texi:12196 +#: guix-git/doc/guix.texi:12511 #, no-wrap msgid "guix import hackage -t -e \"'((\\\"network-uri\\\" . false))\" HTTP\n" msgstr "guix import hackage -t -e \"'((\\\"network-uri\\\" . false))\" HTTP\n" #. type: table -#: guix-git/doc/guix.texi:12200 +#: guix-git/doc/guix.texi:12515 msgid "A specific package version may optionally be specified by following the package name by an at-sign and a version number as in the following example:" msgstr "Se puede especificar opcionalmente una versión específica del paquete añadiendo al nombre del paquete una arroba y el número de versión como en el siguiente ejemplo:" #. type: example -#: guix-git/doc/guix.texi:12203 +#: guix-git/doc/guix.texi:12518 #, no-wrap msgid "guix import hackage mtl@@2.1.3.1\n" msgstr "guix import hackage mtl@@2.1.3.1\n" #. type: item -#: guix-git/doc/guix.texi:12205 guix-git/doc/guix.texi:12206 -#: guix-git/doc/guix.texi:12578 +#: guix-git/doc/guix.texi:12520 guix-git/doc/guix.texi:12521 +#: guix-git/doc/guix.texi:12893 #, no-wrap msgid "stackage" msgstr "stackage" #. type: table -#: guix-git/doc/guix.texi:12213 +#: guix-git/doc/guix.texi:12528 msgid "The @code{stackage} importer is a wrapper around the @code{hackage} one. It takes a package name, looks up the package version included in a long-term support (LTS) @uref{https://www.stackage.org, Stackage} release and uses the @code{hackage} importer to retrieve its metadata. Note that it is up to you to select an LTS release compatible with the GHC compiler used by Guix." msgstr "El importador @code{stackage} es un recubrimiento sobre el de @code{hackage}. Toma un nombre de paquete, busca la versión de paquete incluida en una publicación de la versión de mantenimiento extendido (LTS) @uref{https://www.stackage.org, Stackage} y usa el importador @code{hackage} para obtener sus metadatos. Fíjese que es su decisión seleccionar una publicación LTS compatible con el compilador GHC usado en Guix." #. type: item -#: guix-git/doc/guix.texi:12220 +#: guix-git/doc/guix.texi:12535 #, no-wrap msgid "--lts-version=@var{version}" msgstr "--lts-version=@var{versión}" #. type: itemx -#: guix-git/doc/guix.texi:12221 +#: guix-git/doc/guix.texi:12536 #, no-wrap msgid "-l @var{version}" msgstr "-l @var{versión}" #. type: table -#: guix-git/doc/guix.texi:12224 +#: guix-git/doc/guix.texi:12539 msgid "@var{version} is the desired LTS release version. If omitted the latest release is used." msgstr "@var{versión} es la versión LTS de publicación deseada. Si se omite se usa la última publicación." #. type: table -#: guix-git/doc/guix.texi:12233 +#: guix-git/doc/guix.texi:12548 msgid "The command below imports metadata for the HTTP Haskell package included in the LTS Stackage release version 7.18:" msgstr "La siguiente orden importa los metadatos del paquete Haskell HTTP incluido en la versión de publicación LTS de Stackage 7.18:" #. type: example -#: guix-git/doc/guix.texi:12236 +#: guix-git/doc/guix.texi:12551 #, no-wrap msgid "guix import stackage --lts-version=7.18 HTTP\n" msgstr "guix import stackage --lts-version=7.18 HTTP\n" #. type: item -#: guix-git/doc/guix.texi:12238 guix-git/doc/guix.texi:12239 -#: guix-git/doc/guix.texi:12562 +#: guix-git/doc/guix.texi:12553 guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12877 #, no-wrap msgid "elpa" msgstr "elpa" #. type: table -#: guix-git/doc/guix.texi:12242 +#: guix-git/doc/guix.texi:12557 msgid "Import metadata from an Emacs Lisp Package Archive (ELPA) package repository (@pxref{Packages,,, emacs, The GNU Emacs Manual})." msgstr "Importa metadatos desde el repositorio de archivos de paquetes Emacs Lisp (ELPA) (@pxref{Packages,,, emacs, The GNU Emacs Manual})." #. type: item -#: guix-git/doc/guix.texi:12246 +#: guix-git/doc/guix.texi:12561 #, no-wrap msgid "--archive=@var{repo}" msgstr "--archive=@var{repo}" #. type: itemx -#: guix-git/doc/guix.texi:12247 +#: guix-git/doc/guix.texi:12562 #, no-wrap msgid "-a @var{repo}" msgstr "-a @var{repo}" #. type: table -#: guix-git/doc/guix.texi:12251 +#: guix-git/doc/guix.texi:12566 msgid "@var{repo} identifies the archive repository from which to retrieve the information. Currently the supported repositories and their identifiers are:" msgstr "@var{repo} identifica el repositorio de archivos del que obtener la información. Actualmente los repositorios disponibles y sus identificadores son:" #. type: itemize -#: guix-git/doc/guix.texi:12255 +#: guix-git/doc/guix.texi:12570 msgid "@uref{https://elpa.gnu.org/packages, GNU}, selected by the @code{gnu} identifier. This is the default." msgstr "@uref{https://elpa.gnu.org/packages, GNU}, seleccionado con el identificador @code{gnu}. Utilizado de manera predeterminada." #. type: itemize -#: guix-git/doc/guix.texi:12261 +#: guix-git/doc/guix.texi:12576 msgid "Packages from @code{elpa.gnu.org} are signed with one of the keys contained in the GnuPG keyring at @file{share/emacs/25.1/etc/package-keyring.gpg} (or similar) in the @code{emacs} package (@pxref{Package Installation, ELPA package signatures,, emacs, The GNU Emacs Manual})." msgstr "Los paquetes de @code{elpa.gnu.org} están firmados con una de las claves que contiene el anillo de claves GnuPG en @file{share/emacs/25.1/etc/package-keyring.gpg} (o similar) en el paquete @code{emacs} (@pxref{Package Installation, ELPA package signatures,, emacs, The GNU Emacs Manual})." #. type: itemize -#: guix-git/doc/guix.texi:12265 +#: guix-git/doc/guix.texi:12580 #, fuzzy #| msgid "@uref{https://elpa.gnu.org/packages, GNU}, selected by the @code{gnu} identifier. This is the default." msgid "@uref{https://elpa.nongnu.org/nongnu/, NonGNU}, selected by the @code{nongnu} identifier." msgstr "@uref{https://elpa.gnu.org/packages, GNU}, seleccionado con el identificador @code{gnu}. Utilizado de manera predeterminada." #. type: itemize -#: guix-git/doc/guix.texi:12269 +#: guix-git/doc/guix.texi:12584 msgid "@uref{https://stable.melpa.org/packages, MELPA-Stable}, selected by the @code{melpa-stable} identifier." msgstr "@uref{https://stable.melpa.org/packages, MELPA-Stable}, seleccionado con el identificador @code{melpa-stable}." #. type: itemize -#: guix-git/doc/guix.texi:12273 +#: guix-git/doc/guix.texi:12588 msgid "@uref{https://melpa.org/packages, MELPA}, selected by the @code{melpa} identifier." msgstr "@uref{https://melpa.org/packages, MELPA}, seleccionado con el identificador @code{melpa}." #. type: item -#: guix-git/doc/guix.texi:12282 guix-git/doc/guix.texi:12283 -#: guix-git/doc/guix.texi:12580 +#: guix-git/doc/guix.texi:12597 guix-git/doc/guix.texi:12598 +#: guix-git/doc/guix.texi:12895 #, no-wrap msgid "crate" msgstr "crate" #. type: table -#: guix-git/doc/guix.texi:12286 +#: guix-git/doc/guix.texi:12601 msgid "Import metadata from the crates.io Rust package repository @uref{https://crates.io, crates.io}, as in this example:" msgstr "Importa metadatos desde el repositorio de paquetes Rust @uref{https://crates.io, crates.io}, como en este ejemplo:" #. type: example -#: guix-git/doc/guix.texi:12289 +#: guix-git/doc/guix.texi:12604 #, no-wrap msgid "guix import crate blake2-rfc\n" msgstr "guix import crate blake2-rfc\n" #. type: table -#: guix-git/doc/guix.texi:12292 +#: guix-git/doc/guix.texi:12607 msgid "The crate importer also allows you to specify a version string:" msgstr "El importador de crate también le permite especificar una cadena de versión:" #. type: example -#: guix-git/doc/guix.texi:12295 +#: guix-git/doc/guix.texi:12610 #, no-wrap msgid "guix import crate constant-time-eq@@0.1.0\n" msgstr "guix import crate constant-time-eq@@0.1.0\n" #. type: table -#: guix-git/doc/guix.texi:12298 guix-git/doc/guix.texi:12314 -#: guix-git/doc/guix.texi:12362 guix-git/doc/guix.texi:12399 +#: guix-git/doc/guix.texi:12613 guix-git/doc/guix.texi:12629 +#: guix-git/doc/guix.texi:12677 guix-git/doc/guix.texi:12714 msgid "Additional options include:" msgstr "La opciones adicionales incluyen:" #. type: item -#: guix-git/doc/guix.texi:12307 +#: guix-git/doc/guix.texi:12622 #, no-wrap msgid "opam" msgstr "opam" #. type: cindex -#: guix-git/doc/guix.texi:12308 +#: guix-git/doc/guix.texi:12623 #, no-wrap msgid "OPAM" msgstr "OPAM" #. type: cindex -#: guix-git/doc/guix.texi:12309 +#: guix-git/doc/guix.texi:12624 #, no-wrap msgid "OCaml" msgstr "OCaml" #. type: table -#: guix-git/doc/guix.texi:12312 +#: guix-git/doc/guix.texi:12627 msgid "Import metadata from the @uref{https://opam.ocaml.org/, OPAM} package repository used by the OCaml community." msgstr "Importa metadatos desde el repositorio de paquetes @uref{https://opam.ocaml.org/, OPAM} usado por la comunidad OCaml." #. type: item -#: guix-git/doc/guix.texi:12321 +#: guix-git/doc/guix.texi:12636 #, fuzzy, no-wrap msgid "--repo" msgstr "--repl" #. type: table -#: guix-git/doc/guix.texi:12325 +#: guix-git/doc/guix.texi:12640 msgid "By default, packages are searched in the official OPAM repository. This option, which can be used more than once, lets you add other repositories which will be searched for packages. It accepts as valid arguments:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12327 +#: guix-git/doc/guix.texi:12642 #, no-wrap msgid "the name of a known repository - can be one of @code{opam}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12330 +#: guix-git/doc/guix.texi:12645 msgid "@code{coq} (equivalent to @code{coq-released}), @code{coq-core-dev}, @code{coq-extra-dev} or @code{grew}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12330 +#: guix-git/doc/guix.texi:12645 #, fuzzy, no-wrap #| msgid "The URL of the Git repository to clone." msgid "the URL of a repository as expected by the" msgstr "La URL del repositorio Git que debe clonarse." #. type: itemize -#: guix-git/doc/guix.texi:12334 +#: guix-git/doc/guix.texi:12649 msgid "@code{opam repository add} command (for instance, the URL equivalent of the above @code{opam} name would be @uref{https://opam.ocaml.org})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12334 +#: guix-git/doc/guix.texi:12649 #, no-wrap msgid "the path to a local copy of a repository (a directory containing a" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12336 +#: guix-git/doc/guix.texi:12651 #, fuzzy #| msgid "Package Modules in a Sub-directory" msgid "@file{packages/} sub-directory)." msgstr "Módulos de paquetes en un subdirectorio" #. type: table -#: guix-git/doc/guix.texi:12341 +#: guix-git/doc/guix.texi:12656 msgid "Repositories are assumed to be passed to this option by order of preference. The additional repositories will not replace the default @code{opam} repository, which is always kept as a fallback." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12346 +#: guix-git/doc/guix.texi:12661 msgid "Also, please note that versions are not compared across repositories. The first repository (from left to right) that has at least one version of a given package will prevail over any others, and the version imported will be the latest one found @emph{in this repository only}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12349 guix-git/doc/guix.texi:12350 +#: guix-git/doc/guix.texi:12664 guix-git/doc/guix.texi:12665 #, no-wrap msgid "go" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12353 +#: guix-git/doc/guix.texi:12668 msgid "Import metadata for a Go module using @uref{https://proxy.golang.org, proxy.golang.org}." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12356 +#: guix-git/doc/guix.texi:12671 #, fuzzy, no-wrap msgid "guix import go gopkg.in/yaml.v2\n" msgstr "guix import gem rails\n" #. type: table -#: guix-git/doc/guix.texi:12360 +#: guix-git/doc/guix.texi:12675 msgid "It is possible to use a package specification with a @code{@@VERSION} suffix to import a specific version." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12369 +#: guix-git/doc/guix.texi:12684 #, fuzzy, no-wrap msgid "--pin-versions" msgstr "version" #. type: table -#: guix-git/doc/guix.texi:12377 +#: guix-git/doc/guix.texi:12692 msgid "When using this option, the importer preserves the exact versions of the Go modules dependencies instead of using their latest available versions. This can be useful when attempting to import packages that recursively depend on former versions of themselves to build. When using this mode, the symbol of the package is made by appending the version to its name, so that multiple versions of the same package can coexist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12379 guix-git/doc/guix.texi:12380 -#: guix-git/doc/guix.texi:12560 +#: guix-git/doc/guix.texi:12694 guix-git/doc/guix.texi:12695 +#: guix-git/doc/guix.texi:12875 #, no-wrap msgid "egg" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12387 +#: guix-git/doc/guix.texi:12702 msgid "Import metadata for @uref{https://wiki.call-cc.org/eggs, CHICKEN eggs}. The information is taken from @file{PACKAGE.egg} files found in the @uref{git://code.call-cc.org/eggs-5-all, eggs-5-all} Git repository. However, it does not provide all the information that we need, there is no ``description'' field, and the licenses used are not always precise (BSD is often used instead of BSD-N)." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12390 +#: guix-git/doc/guix.texi:12705 #, fuzzy, no-wrap #| msgid "guix import gnu hello\n" msgid "guix import egg sourcehut\n" msgstr "guix import gnu hello\n" #. type: example -#: guix-git/doc/guix.texi:12396 +#: guix-git/doc/guix.texi:12711 #, fuzzy, no-wrap #| msgid "guix import gem rails\n" msgid "guix import egg arrays@@1.0\n" msgstr "guix import gem rails\n" #. type: Plain text -#: guix-git/doc/guix.texi:12411 +#: guix-git/doc/guix.texi:12726 msgid "The structure of the @command{guix import} code is modular. It would be useful to have more importers for other package formats, and your help is welcome here (@pxref{Contributing})." msgstr "La estructura del código de @command{guix import} es modular. Sería útil tener más importadores para otros formatos de paquetes, y su ayuda es bienvenida aquí (@pxref{Contributing})." #. type: section -#: guix-git/doc/guix.texi:12413 +#: guix-git/doc/guix.texi:12728 #, no-wrap msgid "Invoking @command{guix refresh}" msgstr "Invocación de @command{guix refresh}" #. type: command{#1} -#: guix-git/doc/guix.texi:12415 +#: guix-git/doc/guix.texi:12730 #, no-wrap msgid "guix refresh" msgstr "guix refresh" #. type: Plain text -#: guix-git/doc/guix.texi:12423 +#: guix-git/doc/guix.texi:12738 #, fuzzy msgid "The primary audience of the @command{guix refresh} command is packagers. As a user, you may be interested in the @option{--with-latest} option, which can bring you package update superpowers built upon @command{guix refresh} (@pxref{Package Transformation Options, @option{--with-latest}}). By default, @command{guix refresh} reports any packages provided by the distribution that are outdated compared to the latest upstream version, like this:" msgstr "La principal audiencia de @command{guix refresh} son desarrolladoras de la distribución de software GNU. Por defecto, informa de cualquier paquete proporcionado por la distribución que esté anticuado comparado con la última versión oficial, de esta manera:" @@ -24006,7 +24618,7 @@ msgstr "La principal audiencia de @command{guix refresh} son desarrolladoras de # FUZZY # TODO: Actualizar cuando se traduzca guix #. type: example -#: guix-git/doc/guix.texi:12428 +#: guix-git/doc/guix.texi:12743 #, no-wrap msgid "" "$ guix refresh\n" @@ -24019,14 +24631,14 @@ msgstr "" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:12432 +#: guix-git/doc/guix.texi:12747 msgid "Alternatively, one can specify packages to consider, in which case a warning is emitted for packages that lack an updater:" msgstr "De manera alternativa, se pueden especificar los paquetes a considerar, en cuyo caso se emite un aviso para paquetes que carezcan de actualizador:" # FUZZY # TODO: Actualizar cuando se traduzcan las herramientas #. type: example -#: guix-git/doc/guix.texi:12437 +#: guix-git/doc/guix.texi:12752 #, no-wrap msgid "" "$ guix refresh coreutils guile guile-ssh\n" @@ -24040,18 +24652,18 @@ msgstr "" # FUZZY # MAAV: No me gusta esa última exclamación realmente... :( #. type: Plain text -#: guix-git/doc/guix.texi:12446 +#: guix-git/doc/guix.texi:12761 msgid "@command{guix refresh} browses the upstream repository of each package and determines the highest version number of the releases therein. The command knows how to update specific types of packages: GNU packages, ELPA packages, etc.---see the documentation for @option{--type} below. There are many packages, though, for which it lacks a method to determine whether a new upstream release is available. However, the mechanism is extensible, so feel free to get in touch with us to add a new method!" msgstr "@command{guix refresh} navega por los repositorios oficiales de cada paquete y determina el número de versión mayor entre las publicaciones encontradas. La orden sabe cómo actualizar tipos específicos de paquetes: paquetes GNU, paquetes ELPA, etc.---vea la documentación de @option{--type} más adelante. Hay muchos paquetes, no obstante, para los que carece de un método para determinar si está disponible una versión oficial posterior. No obstante, el mecanismo es extensible, ¡no tenga problema en contactar con nosotras para añadir un método nuevo!" #. type: table -#: guix-git/doc/guix.texi:12451 +#: guix-git/doc/guix.texi:12766 msgid "Consider the packages specified, and all the packages upon which they depend." msgstr "Considera los paquetes especificados, y todos los paquetes de los que dependen." # TODO: Traducción de la interfaz #. type: example -#: guix-git/doc/guix.texi:12459 +#: guix-git/doc/guix.texi:12774 #, fuzzy, no-wrap msgid "" "$ guix refresh --recursive coreutils\n" @@ -24069,12 +24681,12 @@ msgstr "" "@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:12467 +#: guix-git/doc/guix.texi:12782 msgid "Sometimes the upstream name differs from the package name used in Guix, and @command{guix refresh} needs a little help. Most updaters honor the @code{upstream-name} property in package definitions, which can be used to that effect:" msgstr "A veces el nombre oficial es diferente al nombre de paquete usado en Guix, y @command{guix refresh} necesita un poco de ayuda. La mayor parte de los actualizadores utilizan la propiedad @code{upstream-name} en las definiciones de paquetes, que puede usarse para obtener dicho efecto:" #. type: lisp -#: guix-git/doc/guix.texi:12474 +#: guix-git/doc/guix.texi:12789 #, no-wrap msgid "" "(define-public network-manager\n" @@ -24090,331 +24702,331 @@ msgstr "" " (properties '((upstream-name . \"NetworkManager\")))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:12483 +#: guix-git/doc/guix.texi:12798 msgid "When passed @option{--update}, it modifies distribution source files to update the version numbers and source tarball hashes of those package recipes (@pxref{Defining Packages}). This is achieved by downloading each package's latest source tarball and its associated OpenPGP signature, authenticating the downloaded tarball against its signature using @command{gpgv}, and finally computing its hash---note that GnuPG must be installed and in @code{$PATH}; run @code{guix install gnupg} if needed." msgstr "Cuando se proporciona @option{--update}, modifica los archivos de fuentes de la distribución para actualizar los números de versión y hash de los archivadores tar de fuentes en las recetas de los paquetes (@pxref{Defining Packages}). Esto se consigue con la descarga del último archivador de fuentes del paquete y su firma OpenPGP asociada, seguida de la verificación del archivador descargado y su firma mediante el uso de @command{gpg}, y finalmente con el cálculo de su hash---tenga en cuenta que GnuPG debe estar instalado y en @code{$PATH}; ejecute @code{guix install gnupg} si es necesario." #. type: Plain text -#: guix-git/doc/guix.texi:12489 +#: guix-git/doc/guix.texi:12804 msgid "When the public key used to sign the tarball is missing from the user's keyring, an attempt is made to automatically retrieve it from a public key server; when this is successful, the key is added to the user's keyring; otherwise, @command{guix refresh} reports an error." msgstr "Cuando la clave pública usada para firmar el archivador no se encuentra en el anillo de claves de la usuaria, se intenta automáticamente su obtención desde un servidor de claves públicas; cuando se encuentra, la clave se añade al anillo de claves de la usuaria; en otro caso, @command{guix refresh} informa de un error." #. type: Plain text -#: guix-git/doc/guix.texi:12491 +#: guix-git/doc/guix.texi:12806 msgid "The following options are supported:" msgstr "Se aceptan las siguientes opciones:" #. type: table -#: guix-git/doc/guix.texi:12499 guix-git/doc/guix.texi:13447 +#: guix-git/doc/guix.texi:12814 guix-git/doc/guix.texi:13804 msgid "This is useful to precisely refer to a package, as in this example:" msgstr "Es útil para hacer una referencia precisa de un paquete concreto, como en este ejemplo:" #. type: example -#: guix-git/doc/guix.texi:12502 +#: guix-git/doc/guix.texi:12817 #, no-wrap msgid "guix refresh -l -e '(@@@@ (gnu packages commencement) glibc-final)'\n" msgstr "guix refresh -l -e '(@@@@ (gnu packages commencement) glibc-final)'\n" #. type: table -#: guix-git/doc/guix.texi:12506 +#: guix-git/doc/guix.texi:12821 msgid "This command lists the dependents of the ``final'' libc (essentially all the packages)." msgstr "Esta orden enumera los paquetes que dependen de la libc ``final'' (esencialmente todos los paquetes)." #. type: item -#: guix-git/doc/guix.texi:12507 +#: guix-git/doc/guix.texi:12822 #, no-wrap msgid "--update" msgstr "--update" #. type: itemx -#: guix-git/doc/guix.texi:12508 +#: guix-git/doc/guix.texi:12823 #, no-wrap msgid "-u" msgstr "-u" #. type: table -#: guix-git/doc/guix.texi:12512 +#: guix-git/doc/guix.texi:12827 msgid "Update distribution source files (package recipes) in place. This is usually run from a checkout of the Guix source tree (@pxref{Running Guix Before It Is Installed}):" msgstr "Actualiza los archivos fuente de la distribución (recetas de paquetes) en su lugar. Esto se ejecuta habitualmente desde una copia de trabajo del árbol de fuentes de Guix (@pxref{Running Guix Before It Is Installed}):" #. type: example -#: guix-git/doc/guix.texi:12515 +#: guix-git/doc/guix.texi:12830 #, no-wrap msgid "$ ./pre-inst-env guix refresh -s non-core -u\n" msgstr "$ ./pre-inst-env guix refresh -s non-core -u\n" #. type: table -#: guix-git/doc/guix.texi:12518 +#: guix-git/doc/guix.texi:12833 msgid "@xref{Defining Packages}, for more information on package definitions." msgstr "@xref{Defining Packages}, para más información sobre la definición de paquetes." #. type: item -#: guix-git/doc/guix.texi:12519 +#: guix-git/doc/guix.texi:12834 #, no-wrap msgid "--select=[@var{subset}]" msgstr "--select=[@var{subconjunto}]" #. type: itemx -#: guix-git/doc/guix.texi:12520 +#: guix-git/doc/guix.texi:12835 #, no-wrap msgid "-s @var{subset}" msgstr "-s @var{subconjunto}" #. type: table -#: guix-git/doc/guix.texi:12523 +#: guix-git/doc/guix.texi:12838 msgid "Select all the packages in @var{subset}, one of @code{core} or @code{non-core}." msgstr "Selecciona todos los paquetes en @var{subconjunto}, o bien @code{core} o bien @code{non-core}." #. type: table -#: guix-git/doc/guix.texi:12530 +#: guix-git/doc/guix.texi:12845 msgid "The @code{core} subset refers to all the packages at the core of the distribution---i.e., packages that are used to build ``everything else''. This includes GCC, libc, Binutils, Bash, etc. Usually, changing one of these packages in the distribution entails a rebuild of all the others. Thus, such updates are an inconvenience to users in terms of build time or bandwidth used to achieve the upgrade." msgstr "El subconjunto @code{core} hace referencia a todos los paquetes en el núcleo de la distribución---es decir, paquetes que se usan para construir ``todo lo demás''. Esto incluye GCC, libc, Binutils, Bash, etc. Habitualmente, cambiar uno de esos paquetes en la distribución conlleva la reconstrucción de todos los demás. Por tanto, esas actualizaciones son una inconveniencia para las usuarias en términos de tiempo de construcción o ancho de banda usado por la actualización." #. type: table -#: guix-git/doc/guix.texi:12534 +#: guix-git/doc/guix.texi:12849 msgid "The @code{non-core} subset refers to the remaining packages. It is typically useful in cases where an update of the core packages would be inconvenient." msgstr "El subconjunto @code{non-core} hace referencia a los paquetes restantes. Es típicamente útil en casos donde una actualización de paquetes básicos no sería conveniente." #. type: table -#: guix-git/doc/guix.texi:12539 +#: guix-git/doc/guix.texi:12854 #, fuzzy msgid "Select all the packages from the manifest in @var{file}. This is useful to check if any packages of the user manifest can be updated." msgstr "Selecciona todos los paquetes del manifiesto en @var{archivo}. Es útil para comprobar si algún paquete del manifiesto puede actualizarse." #. type: item -#: guix-git/doc/guix.texi:12540 +#: guix-git/doc/guix.texi:12855 #, no-wrap msgid "--type=@var{updater}" msgstr "--type=@var{actualizador}" #. type: itemx -#: guix-git/doc/guix.texi:12541 +#: guix-git/doc/guix.texi:12856 #, no-wrap msgid "-t @var{updater}" msgstr "-t @var{actualizador}" #. type: table -#: guix-git/doc/guix.texi:12544 +#: guix-git/doc/guix.texi:12859 msgid "Select only packages handled by @var{updater} (may be a comma-separated list of updaters). Currently, @var{updater} may be one of:" msgstr "Selecciona únicamente paquetes manejados por @var{actualizador} (puede ser una lista separada por comas de actualizadores). Actualmente, @var{actualizador} puede ser:" #. type: table -#: guix-git/doc/guix.texi:12548 +#: guix-git/doc/guix.texi:12863 msgid "the updater for GNU packages;" msgstr "el actualizador de paquetes GNU;" #. type: item -#: guix-git/doc/guix.texi:12548 +#: guix-git/doc/guix.texi:12863 #, no-wrap msgid "savannah" msgstr "savannah" #. type: table -#: guix-git/doc/guix.texi:12550 +#: guix-git/doc/guix.texi:12865 msgid "the updater for packages hosted at @uref{https://savannah.gnu.org, Savannah};" msgstr "el actualizador para paquetes alojados en @uref{https://savannah.gnu.org, Savannah};" #. type: item -#: guix-git/doc/guix.texi:12550 +#: guix-git/doc/guix.texi:12865 #, fuzzy, no-wrap msgid "sourceforge" msgstr "source" #. type: table -#: guix-git/doc/guix.texi:12552 +#: guix-git/doc/guix.texi:12867 #, fuzzy msgid "the updater for packages hosted at @uref{https://sourceforge.net, SourceForge};" msgstr "el actualizador para paquetes alojados en @uref{https://savannah.gnu.org, Savannah};" #. type: item -#: guix-git/doc/guix.texi:12552 +#: guix-git/doc/guix.texi:12867 #, no-wrap msgid "gnome" msgstr "gnome" #. type: table -#: guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12869 msgid "the updater for GNOME packages;" msgstr "el actualizador para paquetes GNOME;" #. type: item -#: guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12869 #, no-wrap msgid "kde" msgstr "kde" #. type: table -#: guix-git/doc/guix.texi:12556 +#: guix-git/doc/guix.texi:12871 msgid "the updater for KDE packages;" msgstr "el actualizador para paquetes KDE;" #. type: item -#: guix-git/doc/guix.texi:12556 +#: guix-git/doc/guix.texi:12871 #, no-wrap msgid "xorg" msgstr "xorg" #. type: table -#: guix-git/doc/guix.texi:12558 +#: guix-git/doc/guix.texi:12873 msgid "the updater for X.org packages;" msgstr "el actualizador para paquetes X.org;" #. type: item -#: guix-git/doc/guix.texi:12558 +#: guix-git/doc/guix.texi:12873 #, no-wrap msgid "kernel.org" msgstr "kernel.org" #. type: table -#: guix-git/doc/guix.texi:12560 +#: guix-git/doc/guix.texi:12875 msgid "the updater for packages hosted on kernel.org;" msgstr "el actualizador para paquetes alojados en kernel.org;" #. type: table -#: guix-git/doc/guix.texi:12562 +#: guix-git/doc/guix.texi:12877 #, fuzzy #| msgid "the updater for @uref{https://www.cpan.org/, CPAN} packages;" msgid "the updater for @uref{https://wiki.call-cc.org/eggs/, Egg} packages;" msgstr "el actualizador para paquetes @uref{https://www.cpan.org/, CPAN};" #. type: table -#: guix-git/doc/guix.texi:12564 +#: guix-git/doc/guix.texi:12879 msgid "the updater for @uref{https://elpa.gnu.org/, ELPA} packages;" msgstr "el actualizador para paquetes @uref{https://elpa.gnu.org/, ELPA};" #. type: table -#: guix-git/doc/guix.texi:12566 +#: guix-git/doc/guix.texi:12881 msgid "the updater for @uref{https://cran.r-project.org/, CRAN} packages;" msgstr "el actualizador para paquetes @uref{https://cran.r-project.org/, CRAN};" #. type: item -#: guix-git/doc/guix.texi:12566 +#: guix-git/doc/guix.texi:12881 #, no-wrap msgid "bioconductor" msgstr "bioconductor" #. type: table -#: guix-git/doc/guix.texi:12568 +#: guix-git/doc/guix.texi:12883 msgid "the updater for @uref{https://www.bioconductor.org/, Bioconductor} R packages;" msgstr "el actualizador para paquetes R @uref{https://www.bioconductor.org/, Bioconductor};" #. type: table -#: guix-git/doc/guix.texi:12570 +#: guix-git/doc/guix.texi:12885 msgid "the updater for @uref{https://www.cpan.org/, CPAN} packages;" msgstr "el actualizador para paquetes @uref{https://www.cpan.org/, CPAN};" #. type: table -#: guix-git/doc/guix.texi:12572 +#: guix-git/doc/guix.texi:12887 msgid "the updater for @uref{https://pypi.python.org, PyPI} packages." msgstr "el actualizador para paquetes @uref{https://pypi.python.org, PyPI}." #. type: table -#: guix-git/doc/guix.texi:12574 +#: guix-git/doc/guix.texi:12889 msgid "the updater for @uref{https://rubygems.org, RubyGems} packages." msgstr "el actualizador para paquetes @uref{https://rubygems.org, RubyGems}." #. type: item -#: guix-git/doc/guix.texi:12574 +#: guix-git/doc/guix.texi:12889 #, no-wrap msgid "github" msgstr "github" #. type: table -#: guix-git/doc/guix.texi:12576 +#: guix-git/doc/guix.texi:12891 msgid "the updater for @uref{https://github.com, GitHub} packages." msgstr "el actualizador para paquetes @uref{https://github.com, GitHub}." #. type: table -#: guix-git/doc/guix.texi:12578 +#: guix-git/doc/guix.texi:12893 msgid "the updater for @uref{https://hackage.haskell.org, Hackage} packages." msgstr "el actualizador para paquetes @uref{https://hackage.haskell.org, Hackage}." #. type: table -#: guix-git/doc/guix.texi:12580 +#: guix-git/doc/guix.texi:12895 msgid "the updater for @uref{https://www.stackage.org, Stackage} packages." msgstr "el actualizador para paquetes @uref{https://www.stackage.org, Stackage}." #. type: table -#: guix-git/doc/guix.texi:12582 +#: guix-git/doc/guix.texi:12897 msgid "the updater for @uref{https://crates.io, Crates} packages." msgstr "el actualizador para paquetes @uref{https://crates.io, Crates}." #. type: item -#: guix-git/doc/guix.texi:12582 +#: guix-git/doc/guix.texi:12897 #, no-wrap msgid "launchpad" msgstr "launchpad" #. type: table -#: guix-git/doc/guix.texi:12584 +#: guix-git/doc/guix.texi:12899 msgid "the updater for @uref{https://launchpad.net, Launchpad} packages." msgstr "el actualizador para paquetes @uref{https://launchpad.net, Launchpad}." #. type: item -#: guix-git/doc/guix.texi:12584 +#: guix-git/doc/guix.texi:12899 #, no-wrap msgid "generic-html" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12587 +#: guix-git/doc/guix.texi:12902 msgid "a generic updater that crawls the HTML page where the source tarball of the package is hosted, when applicable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12588 +#: guix-git/doc/guix.texi:12903 #, no-wrap msgid "generic-git" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12593 +#: guix-git/doc/guix.texi:12908 msgid "a generic updater for packages hosted on Git repositories. It tries to be smart about parsing Git tag names, but if it is not able to parse the tag name and compare tags correctly, users can define the following properties for a package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12595 +#: guix-git/doc/guix.texi:12910 #, no-wrap msgid "@code{release-tag-prefix}: a regular expression for matching a prefix of" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12597 guix-git/doc/guix.texi:12600 +#: guix-git/doc/guix.texi:12912 guix-git/doc/guix.texi:12915 #, fuzzy #| msgid "The host name." msgid "the tag name." msgstr "El nombre de la máquina." #. type: item -#: guix-git/doc/guix.texi:12598 +#: guix-git/doc/guix.texi:12913 #, no-wrap msgid "@code{release-tag-suffix}: a regular expression for matching a suffix of" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12601 +#: guix-git/doc/guix.texi:12916 #, no-wrap msgid "@code{release-tag-version-delimiter}: a string used as the delimiter in" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12603 +#: guix-git/doc/guix.texi:12918 msgid "the tag name for separating the numbers of the version." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12604 +#: guix-git/doc/guix.texi:12919 #, no-wrap msgid "@code{accept-pre-releases}: by default, the updater will ignore" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12607 +#: guix-git/doc/guix.texi:12922 msgid "pre-releases; to make it also look for pre-releases, set the this property to @code{#t}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12618 +#: guix-git/doc/guix.texi:12933 #, no-wrap msgid "" "(package\n" @@ -24427,14 +25039,14 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12625 +#: guix-git/doc/guix.texi:12940 msgid "For instance, the following command only checks for updates of Emacs packages hosted at @code{elpa.gnu.org} and for updates of CRAN packages:" msgstr "Por ejemplo, la siguiente orden únicamente comprueba actualizaciones de paquetes Emacs alojados en @code{elpa.gnu.org} y actualizaciones de paquetes CRAN:" # FUZZY # TODO: Actualizar cuando se traduzca guix #. type: example -#: guix-git/doc/guix.texi:12630 +#: guix-git/doc/guix.texi:12945 #, no-wrap msgid "" "$ guix refresh --type=elpa,cran\n" @@ -24446,46 +25058,46 @@ msgstr "" "gnu/packages/emacs.scm:856:13: emacs-auctex would be upgraded from 11.88.6 to 11.88.9\n" #. type: item -#: guix-git/doc/guix.texi:12632 +#: guix-git/doc/guix.texi:12947 #, no-wrap msgid "--list-updaters" msgstr "--list-updaters" #. type: itemx -#: guix-git/doc/guix.texi:12633 +#: guix-git/doc/guix.texi:12948 #, no-wrap msgid "-L" msgstr "-L" #. type: table -#: guix-git/doc/guix.texi:12635 +#: guix-git/doc/guix.texi:12950 msgid "List available updaters and exit (see @option{--type} above)." msgstr "Enumera los actualizadores disponibles y finaliza (vea la opción previa @option{--type})." #. type: table -#: guix-git/doc/guix.texi:12638 +#: guix-git/doc/guix.texi:12953 msgid "For each updater, display the fraction of packages it covers; at the end, display the fraction of packages covered by all these updaters." msgstr "Para cada actualizador, muestra la fracción de paquetes que cubre; al final muestra la fracción de paquetes cubiertos por todos estos actualizadores." #. type: Plain text -#: guix-git/doc/guix.texi:12642 +#: guix-git/doc/guix.texi:12957 msgid "In addition, @command{guix refresh} can be passed one or more package names, as in this example:" msgstr "Además, @command{guix refresh} puede recibir uno o más nombres de paquetes, como en este ejemplo:" #. type: example -#: guix-git/doc/guix.texi:12645 +#: guix-git/doc/guix.texi:12960 #, no-wrap msgid "$ ./pre-inst-env guix refresh -u emacs idutils gcc@@4.8\n" msgstr "$ ./pre-inst-env guix refresh -u emacs idutils gcc@@4.8\n" #. type: Plain text -#: guix-git/doc/guix.texi:12652 +#: guix-git/doc/guix.texi:12967 #, fuzzy msgid "The command above specifically updates the @code{emacs} and @code{idutils} packages. The @option{--select} option would have no effect in this case. You might also want to update definitions that correspond to the packages installed in your profile:" msgstr "La orden previa actualiza específicamente los paquetes @code{emacs} y @code{idutils}. La opción @option{--select} no tendría ningún efecto en este caso." #. type: example -#: guix-git/doc/guix.texi:12656 +#: guix-git/doc/guix.texi:12971 #, fuzzy, no-wrap msgid "" "$ ./pre-inst-env guix refresh -u \\\n" @@ -24493,42 +25105,42 @@ msgid "" msgstr "$ ./pre-inst-env guix refresh -u emacs idutils gcc@@4.8\n" #. type: Plain text -#: guix-git/doc/guix.texi:12662 +#: guix-git/doc/guix.texi:12977 msgid "When considering whether to upgrade a package, it is sometimes convenient to know which packages would be affected by the upgrade and should be checked for compatibility. For this the following option may be used when passing @command{guix refresh} one or more package names:" msgstr "Cuando se considera la actualización de un paquete, a veces es conveniente conocer cuantos paquetes se verían afectados por la actualización y su compatibilidad debería comprobarse. Para ello la siguiente opción puede usarse cuando se proporcionan uno o más nombres de paquete a @command{guix refresh}:" #. type: item -#: guix-git/doc/guix.texi:12665 +#: guix-git/doc/guix.texi:12980 #, no-wrap msgid "--list-dependent" msgstr "--list-dependent" #. type: itemx -#: guix-git/doc/guix.texi:12666 guix-git/doc/guix.texi:13028 +#: guix-git/doc/guix.texi:12981 guix-git/doc/guix.texi:13385 #, no-wrap msgid "-l" msgstr "-l" #. type: table -#: guix-git/doc/guix.texi:12669 +#: guix-git/doc/guix.texi:12984 msgid "List top-level dependent packages that would need to be rebuilt as a result of upgrading one or more packages." msgstr "Enumera los paquetes de nivel superior dependientes que necesitarían una reconstrucción como resultado de la actualización de uno o más paquetes." # TODO: Check #. type: table -#: guix-git/doc/guix.texi:12673 +#: guix-git/doc/guix.texi:12988 msgid "@xref{Invoking guix graph, the @code{reverse-package} type of @command{guix graph}}, for information on how to visualize the list of dependents of a package." msgstr "@xref{Invoking guix graph, el tipo @code{reverse-package} de @command{guix graph}}, para información sobre cómo visualizar la lista de paquetes que dependen de un paquete." #. type: Plain text -#: guix-git/doc/guix.texi:12679 +#: guix-git/doc/guix.texi:12994 msgid "Be aware that the @option{--list-dependent} option only @emph{approximates} the rebuilds that would be required as a result of an upgrade. More rebuilds might be required under some circumstances." msgstr "Sea consciente de que la opción @option{--list-dependent} únicamente @emph{aproxima} las reconstrucciones necesarias como resultado de una actualización. Más reconstrucciones pueden ser necesarias bajo algunas circunstancias." # FUZZY # TODO: Actualizar cuando se traduzcan las herramientas #. type: example -#: guix-git/doc/guix.texi:12684 +#: guix-git/doc/guix.texi:12999 #, fuzzy, no-wrap #| msgid "" #| "$ guix refresh --list-dependent flex\n" @@ -24544,25 +25156,25 @@ msgstr "" "hop@@2.4.0 geiser@@0.4 notmuch@@0.18 mu@@0.9.9.5 cflow@@1.4 idutils@@4.6 @dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:12688 +#: guix-git/doc/guix.texi:13003 msgid "The command above lists a set of packages that could be built to check for compatibility with an upgraded @code{flex} package." msgstr "La orden previa enumera un conjunto de paquetes que puede ser construido para comprobar la compatibilidad con una versión actualizada del paquete @code{flex}." #. type: item -#: guix-git/doc/guix.texi:12691 +#: guix-git/doc/guix.texi:13006 #, no-wrap msgid "--list-transitive" msgstr "--list-transitive" # FUZZY #. type: table -#: guix-git/doc/guix.texi:12693 +#: guix-git/doc/guix.texi:13008 msgid "List all the packages which one or more packages depend upon." msgstr "Enumera todos los paquetes de los que uno o más paquetes dependen." # TODO: Traducción de la interfaz #. type: example -#: guix-git/doc/guix.texi:12698 +#: guix-git/doc/guix.texi:13013 #, no-wrap msgid "" "$ guix refresh --list-transitive flex\n" @@ -24574,60 +25186,60 @@ msgstr "" "bison@@3.0.5 indent@@2.2.10 tar@@1.30 gzip@@1.9 bzip2@@1.0.6 xz@@5.2.4 file@@5.33 @dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:12704 +#: guix-git/doc/guix.texi:13019 msgid "The command above lists a set of packages which, when changed, would cause @code{flex} to be rebuilt." msgstr "La orden previa enumera un conjunto de paquetes que, en caso de cambiar, causarían la reconstrucción de @code{flex}." #. type: Plain text -#: guix-git/doc/guix.texi:12706 +#: guix-git/doc/guix.texi:13021 msgid "The following options can be used to customize GnuPG operation:" msgstr "Las siguientes opciones pueden usarse para personalizar la operación de GnuPG:" #. type: item -#: guix-git/doc/guix.texi:12709 +#: guix-git/doc/guix.texi:13024 #, no-wrap msgid "--gpg=@var{command}" msgstr "--gpg=@var{orden}" #. type: table -#: guix-git/doc/guix.texi:12712 +#: guix-git/doc/guix.texi:13027 msgid "Use @var{command} as the GnuPG 2.x command. @var{command} is searched for in @code{$PATH}." msgstr "Use @var{orden} como la orden de GnuPG 2.x. Se busca @var{orden} en @code{PATH}." #. type: item -#: guix-git/doc/guix.texi:12713 +#: guix-git/doc/guix.texi:13028 #, no-wrap msgid "--keyring=@var{file}" msgstr "--keyring=@var{archivo}" #. type: table -#: guix-git/doc/guix.texi:12719 +#: guix-git/doc/guix.texi:13034 msgid "Use @var{file} as the keyring for upstream keys. @var{file} must be in the @dfn{keybox format}. Keybox files usually have a name ending in @file{.kbx} and the GNU@tie{}Privacy Guard (GPG) can manipulate these files (@pxref{kbxutil, @command{kbxutil},, gnupg, Using the GNU Privacy Guard}, for information on a tool to manipulate keybox files)." msgstr "Usa @var{archivo} como el anillo de claves para claves de proveedoras. @var{archivo} debe estar en el @dfn{formato keybox}. Los archivos Keybox normalmente tienen un nombre terminado en @file{.kbx} y GNU@tie{}Privacy Guard (GPG) puede manipular estos archivos (@pxref{kbxutil, @command{kbxutil},, gnupg, Using the GNU Privacy Guard}, para información sobre una herramienta para manipular archivos keybox)." #. type: table -#: guix-git/doc/guix.texi:12725 +#: guix-git/doc/guix.texi:13040 msgid "When this option is omitted, @command{guix refresh} uses @file{~/.config/guix/upstream/trustedkeys.kbx} as the keyring for upstream signing keys. OpenPGP signatures are checked against keys from this keyring; missing keys are downloaded to this keyring as well (see @option{--key-download} below)." msgstr "Cuando se omite esta opción, @command{guix refresh} usa @file{~/.config/guix/upstream/trustedkeys.kbx} como el anillo de claves para las firmas de proveedoras. Las firmas OpenPGP son comprobadas contra claves de este anillo; las claves que falten son descargadas a este anillo de claves también (véase @option{--key-download} a continuación)." #. type: table -#: guix-git/doc/guix.texi:12728 +#: guix-git/doc/guix.texi:13043 msgid "You can export keys from your default GPG keyring into a keybox file using commands like this one:" msgstr "Puede exportar claves de su anillo de claves GPG predeterminado en un archivo keybox usando órdenes como esta:" #. type: example -#: guix-git/doc/guix.texi:12731 +#: guix-git/doc/guix.texi:13046 #, no-wrap msgid "gpg --export rms@@gnu.org | kbxutil --import-openpgp >> mykeyring.kbx\n" msgstr "gpg --export rms@@gnu.org | kbxutil --import-openpgp >> mianillo.kbx\n" #. type: table -#: guix-git/doc/guix.texi:12734 +#: guix-git/doc/guix.texi:13049 msgid "Likewise, you can fetch keys to a specific keybox file like this:" msgstr "Del mismo modo, puede obtener claves de un archivo keybox específico así:" #. type: example -#: guix-git/doc/guix.texi:12738 +#: guix-git/doc/guix.texi:13053 #, no-wrap msgid "" "gpg --no-default-keyring --keyring mykeyring.kbx \\\n" @@ -24637,86 +25249,96 @@ msgstr "" " --recv-keys @value{OPENPGP-SIGNING-KEY-ID}\n" #. type: table -#: guix-git/doc/guix.texi:12742 +#: guix-git/doc/guix.texi:13057 #, fuzzy msgid "@xref{GPG Configuration Options, @option{--keyring},, gnupg, Using the GNU Privacy Guard}, for more information on GPG's @option{--keyring} option." msgstr "@ref{GPG Configuration Options, @option{--keyring},, gnupg, Using the GNU Privacy Guard}, para más información sobre la opción @option{--keyring} de GPG." #. type: table -#: guix-git/doc/guix.texi:12746 +#: guix-git/doc/guix.texi:13061 msgid "Handle missing OpenPGP keys according to @var{policy}, which may be one of:" msgstr "Maneja las claves no encontradas de acuerdo a la @var{política}, que puede ser una de:" #. type: item -#: guix-git/doc/guix.texi:12748 guix-git/doc/guix.texi:12871 -#: guix-git/doc/guix.texi:22249 +#: guix-git/doc/guix.texi:13063 guix-git/doc/guix.texi:13228 +#: guix-git/doc/guix.texi:22611 #, no-wrap msgid "always" msgstr "always" #. type: table -#: guix-git/doc/guix.texi:12751 +#: guix-git/doc/guix.texi:13066 msgid "Always download missing OpenPGP keys from the key server, and add them to the user's GnuPG keyring." msgstr "Siempre descarga las claves OpenPGP no encontradas del servidor de claves, y las añade al anillo de claves GnuPG de la usuaria." #. type: item -#: guix-git/doc/guix.texi:12752 guix-git/doc/guix.texi:22251 +#: guix-git/doc/guix.texi:13067 guix-git/doc/guix.texi:22613 #, no-wrap msgid "never" msgstr "never" #. type: table -#: guix-git/doc/guix.texi:12754 +#: guix-git/doc/guix.texi:13069 msgid "Never try to download missing OpenPGP keys. Instead just bail out." msgstr "Nunca intenta descargar claves OpenPGP no encontradas. Simplemente propaga el error." #. type: item -#: guix-git/doc/guix.texi:12755 +#: guix-git/doc/guix.texi:13070 #, no-wrap msgid "interactive" msgstr "interactive" #. type: table -#: guix-git/doc/guix.texi:12758 +#: guix-git/doc/guix.texi:13073 msgid "When a package signed with an unknown OpenPGP key is encountered, ask the user whether to download it or not. This is the default behavior." msgstr "Cuando se encuentra un paquete firmado por una clave OpenPGP desconocida, pregunta a la usuaria si descargarla o no. Este es el comportamiento predeterminado." #. type: item -#: guix-git/doc/guix.texi:12760 +#: guix-git/doc/guix.texi:13075 #, no-wrap msgid "--key-server=@var{host}" msgstr "--key-server=@var{dirección}" #. type: table -#: guix-git/doc/guix.texi:12762 +#: guix-git/doc/guix.texi:13077 msgid "Use @var{host} as the OpenPGP key server when importing a public key." msgstr "Use @var{dirección} como el servidor de claves OpenPGP cuando se importa una clave pública." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:12782 +#: guix-git/doc/guix.texi:13097 msgid "The @code{github} updater uses the @uref{https://developer.github.com/v3/, GitHub API} to query for new releases. When used repeatedly e.g.@: when refreshing all packages, GitHub will eventually refuse to answer any further API requests. By default 60 API requests per hour are allowed, and a full refresh on all GitHub packages in Guix requires more than this. Authentication with GitHub through the use of an API token alleviates these limits. To use an API token, set the environment variable @env{GUIX_GITHUB_TOKEN} to a token procured from @uref{https://github.com/settings/tokens} or otherwise." msgstr "El actualizador @code{github} usa la @uref{https://developer.github.com/v3/, API de GitHub} para consultar nuevas publicaciones. Cuando se usa repetidamente, por ejemplo al comprobar todos los paquetes, GitHub terminará rechazando las peticiones siguientes a través de su API. Por defecto se permiten 60 peticiones por hora a través de su API, y una actualización completa de todos los paquetes de GitHub en Guix necesita más que eso. La identificación con GitHub a través del uso de un identificador de su API (``token'') amplia esos límites. Para usar dicho identificador, establezca la variable de entorno @env{GUIX_GITHUB_TOKEN} al valor obtenido a través de @uref{https://github.com/settings/tokens} o de otra manera." #. type: section -#: guix-git/doc/guix.texi:12785 +#: guix-git/doc/guix.texi:13100 #, fuzzy, no-wrap #| msgid "Invoking @command{guix size}" msgid "Invoking @command{guix style}" msgstr "Invocación de @command{guix size}" #. type: Plain text -#: guix-git/doc/guix.texi:12791 -msgid "The @command{guix style} command helps packagers style their package definitions according to the latest fashionable trends. The command currently focuses on one aspect: the style of package inputs. It may eventually be extended to handle other stylistic matters." +#: guix-git/doc/guix.texi:13105 +msgid "The @command{guix style} command helps packagers style their package definitions according to the latest fashionable trends. The command currently provides the following styling rules:" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix.texi:13110 +msgid "formatting package definitions according to the project's conventions (@pxref{Formatting Code});" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix.texi:13113 +msgid "rewriting package inputs to the ``new style'', as explained below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12796 +#: guix-git/doc/guix.texi:13119 msgid "The way package inputs are written is going through a transition (@pxref{package Reference}, for more on package inputs). Until version 1.3.0, package inputs were written using the ``old style'', where each input was given an explicit label, most of the time the package name:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12803 +#: guix-git/doc/guix.texi:13126 #, no-wrap msgid "" "(package\n" @@ -24727,12 +25349,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12807 +#: guix-git/doc/guix.texi:13130 msgid "Today, the old style is deprecated and the preferred style looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12813 +#: guix-git/doc/guix.texi:13136 #, no-wrap msgid "" "(package\n" @@ -24742,277 +25364,345 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12818 +#: guix-git/doc/guix.texi:13141 msgid "Likewise, uses of @code{alist-delete} and friends to manipulate inputs is now deprecated in favor of @code{modify-inputs} (@pxref{Defining Package Variants}, for more info on @code{modify-inputs})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12823 -msgid "In the vast majority of cases, this is a purely mechanical change on the surface syntax that does not even incur a package rebuild. Running @command{guix style} can do that for you, whether you're working on packages in Guix proper or in an external channel." +#: guix-git/doc/guix.texi:13146 +msgid "In the vast majority of cases, this is a purely mechanical change on the surface syntax that does not even incur a package rebuild. Running @command{guix style -S inputs} can do that for you, whether you're working on packages in Guix proper or in an external channel." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12828 +#: guix-git/doc/guix.texi:13151 #, fuzzy, no-wrap #| msgid "guix challenge @var{options} [@var{packages}@dots{}]\n" msgid "guix style [@var{options}] @var{package}@dots{}\n" msgstr "guix challenge @var{opciones} [@var{paquetes}@dots{}]\n" #. type: Plain text -#: guix-git/doc/guix.texi:12834 -msgid "This causes @command{guix style} to analyze and rewrite the definition of @var{package}@dots{}. It does so in a conservative way: preserving comments and bailing out if it cannot make sense of the code that appears in an inputs field. The available options are listed below." +#: guix-git/doc/guix.texi:13158 +msgid "This causes @command{guix style} to analyze and rewrite the definition of @var{package}@dots{} or, when @var{package} is omitted, of @emph{all} the packages. The @option{--styling} or @option{-S} option allows you to select the style rule, the default rule being @code{format}---see below." msgstr "" +#. type: Plain text +#: guix-git/doc/guix.texi:13160 guix-git/doc/guix.texi:14479 +msgid "The available options are listed below." +msgstr "Las opciones disponibles se enumeran a continuación." + #. type: table -#: guix-git/doc/guix.texi:12839 +#: guix-git/doc/guix.texi:13165 msgid "Show source file locations that would be edited but do not modify them." msgstr "" +#. type: item +#: guix-git/doc/guix.texi:13166 +#, fuzzy, no-wrap +#| msgid "--keyring=@var{file}" +msgid "--styling=@var{rule}" +msgstr "--keyring=@var{archivo}" + +#. type: itemx +#: guix-git/doc/guix.texi:13167 +#, fuzzy, no-wrap +#| msgid "-S @var{spec}" +msgid "-S @var{rule}" +msgstr "-S @var{spec}" + +#. type: table +#: guix-git/doc/guix.texi:13169 +#, fuzzy +#| msgid "Sort lines according to @var{key}, one of the following options:" +msgid "Apply @var{rule}, one of the following styling rules:" +msgstr "Ordena las líneas de acuerdo a @var{clave}, una de las siguientes opciones:" + +#. type: item +#: guix-git/doc/guix.texi:13171 +#, fuzzy, no-wrap +#| msgid "formatting" +msgid "format" +msgstr "formatting" + +#. type: table +#: guix-git/doc/guix.texi:13176 +msgid "Format the given package definition(s)---this is the default styling rule. For example, a packager running Guix on a checkout (@pxref{Running Guix Before It Is Installed}) might want to reformat the definition of the Coreutils package like so:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:13179 +#, fuzzy, no-wrap +#| msgid "./pre-inst-env guix build guix\n" +msgid "./pre-inst-env guix style coreutils\n" +msgstr "./pre-inst-env guix build guix\n" + +#. type: item +#: guix-git/doc/guix.texi:13181 +#, fuzzy, no-wrap +#| msgid "outputs" +msgid "inputs" +msgstr "salidas" + +#. type: table +#: guix-git/doc/guix.texi:13185 +msgid "Rewrite package inputs to the ``new style'', as described above. This is how you would rewrite inputs of package @code{whatnot} in your own channel:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:13188 +#, no-wrap +msgid "guix style -L ~/my/channel -S inputs whatnot\n" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:13194 +msgid "Rewriting is done in a conservative way: preserving comments and bailing out if it cannot make sense of the code that appears in an inputs field. The @option{--input-simplification} option described below provides fine-grain control over when inputs should be simplified." +msgstr "" + #. type: table -#: guix-git/doc/guix.texi:12848 +#: guix-git/doc/guix.texi:13204 #, fuzzy #| msgid "Install the package @var{exp} evaluates to." msgid "Style the package @var{expr} evaluates to." msgstr "Instala el paquete al que @var{exp} evalúa." #. type: example -#: guix-git/doc/guix.texi:12853 +#: guix-git/doc/guix.texi:13209 #, fuzzy, no-wrap #| msgid "guix environment --ad-hoc -e '(@@ (gnu) %base-packages)'\n" msgid "guix style -e '(@@ (gnu packages gcc) gcc-5)'\n" msgstr "guix environment --ad-hoc -e '(@@ (gnu) %base-packages)'\n" #. type: table -#: guix-git/doc/guix.texi:12856 +#: guix-git/doc/guix.texi:13212 #, fuzzy #| msgid "Updating the Guix package definition." msgid "styles the @code{gcc-5} package definition." msgstr "Actualización de la definición del paquete Guix." #. type: item -#: guix-git/doc/guix.texi:12857 +#: guix-git/doc/guix.texi:13213 #, no-wrap msgid "--input-simplification=@var{policy}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12861 -msgid "Specify the package input simplification policy for cases where an input label does not match the corresponding package name. @var{policy} may be one of the following:" +#: guix-git/doc/guix.texi:13218 +msgid "When using the @code{inputs} styling rule, with @samp{-S inputs}, this option specifies the package input simplification policy for cases where an input label does not match the corresponding package name. @var{policy} may be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12863 +#: guix-git/doc/guix.texi:13220 #, no-wrap msgid "silent" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12866 +#: guix-git/doc/guix.texi:13223 msgid "Simplify inputs only when the change is ``silent'', meaning that the package does not need to be rebuilt (its derivation is unchanged)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12867 +#: guix-git/doc/guix.texi:13224 #, no-wrap msgid "safe" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12870 +#: guix-git/doc/guix.texi:13227 msgid "Simplify inputs only when that is ``safe'' to do: the package might need to be rebuilt, but the change is known to have no observable effect." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12874 +#: guix-git/doc/guix.texi:13231 msgid "Simplify inputs even when input labels do not match package names, and even if that might have an observable effect." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12878 +#: guix-git/doc/guix.texi:13235 msgid "The default is @code{silent}, meaning that input simplifications do not trigger any package rebuild." msgstr "" #. type: section -#: guix-git/doc/guix.texi:12881 +#: guix-git/doc/guix.texi:13238 #, no-wrap msgid "Invoking @command{guix lint}" msgstr "Invocación de @command{guix lint}" #. type: command{#1} -#: guix-git/doc/guix.texi:12883 +#: guix-git/doc/guix.texi:13240 #, no-wrap msgid "guix lint" msgstr "guix lint" #. type: cindex -#: guix-git/doc/guix.texi:12884 +#: guix-git/doc/guix.texi:13241 #, no-wrap msgid "package, checking for errors" msgstr "paquete, comprobación de errores" #. type: Plain text -#: guix-git/doc/guix.texi:12890 +#: guix-git/doc/guix.texi:13247 msgid "The @command{guix lint} command is meant to help package developers avoid common errors and use a consistent style. It runs a number of checks on a given set of packages in order to find common mistakes in their definitions. Available @dfn{checkers} include (see @option{--list-checkers} for a complete list):" msgstr "La orden @command{guix lint} sirve para ayudar a las desarrolladoras de paquetes a evitar errores comunes y usar un estilo consistente. Ejecuta un número de comprobaciones en un conjunto de paquetes proporcionado para encontrar errores comunes en sus definiciones. Las @dfn{comprobaciones} disponibles incluyen (véase @option{--list-checkers} para una lista completa):" #. type: table -#: guix-git/doc/guix.texi:12896 +#: guix-git/doc/guix.texi:13253 msgid "Validate certain typographical and stylistic rules about package descriptions and synopses." msgstr "Valida ciertas reglas tipográficas y de estilo en la descripción y sinopsis de cada paquete." #. type: item -#: guix-git/doc/guix.texi:12897 +#: guix-git/doc/guix.texi:13254 #, no-wrap msgid "inputs-should-be-native" msgstr "inputs-should-be-native" #. type: table -#: guix-git/doc/guix.texi:12899 +#: guix-git/doc/guix.texi:13256 msgid "Identify inputs that should most likely be native inputs." msgstr "Identifica entradas que probablemente deberían ser entradas nativas." #. type: itemx -#: guix-git/doc/guix.texi:12902 +#: guix-git/doc/guix.texi:13259 #, no-wrap msgid "mirror-url" msgstr "mirror-url" #. type: itemx -#: guix-git/doc/guix.texi:12903 +#: guix-git/doc/guix.texi:13260 #, no-wrap msgid "github-url" msgstr "github-url" #. type: itemx -#: guix-git/doc/guix.texi:12904 +#: guix-git/doc/guix.texi:13261 #, no-wrap msgid "source-file-name" msgstr "source-file-name" #. type: table -#: guix-git/doc/guix.texi:12911 +#: guix-git/doc/guix.texi:13268 #, fuzzy msgid "Probe @code{home-page} and @code{source} URLs and report those that are invalid. Suggest a @code{mirror://} URL when applicable. If the @code{source} URL redirects to a GitHub URL, recommend usage of the GitHub URL@. Check that the source file name is meaningful, e.g.@: is not just a version number or ``git-checkout'', without a declared @code{file-name} (@pxref{origin Reference})." msgstr "Comprueba las URL @code{home-page} y @code{source} e informa aquellas que no sean válidas. Sugiere una URL @code{mirror://} cuando sea aplicable. Si la URL @code{source} redirecciona a una URL GitHub, recomienda el uso de la URL GitHub. Comprueba que el nombre de archivo de las fuentes es significativo, por ejemplo que no es simplemente un número de versión o revisión git, sin un nombre @code{file-name} declarado (@pxref{origin Reference})." #. type: item -#: guix-git/doc/guix.texi:12912 +#: guix-git/doc/guix.texi:13269 #, no-wrap msgid "source-unstable-tarball" msgstr "source-unstable-tarball" #. type: table -#: guix-git/doc/guix.texi:12916 +#: guix-git/doc/guix.texi:13273 msgid "Parse the @code{source} URL to determine if a tarball from GitHub is autogenerated or if it is a release tarball. Unfortunately GitHub's autogenerated tarballs are sometimes regenerated." msgstr "Analiza la URL @code{source} para determinar si un archivador tar de GitHub se genera de forma automática o es una publicación oficial. Desafortunadamente los archivadores tar de GitHub a veces se regeneran." #. type: table -#: guix-git/doc/guix.texi:12920 +#: guix-git/doc/guix.texi:13277 msgid "Check that the derivation of the given packages can be successfully computed for all the supported systems (@pxref{Derivations})." msgstr "Comprueba que la derivación de los paquetes proporcionados pueden ser calculadas de manera satisfactoria en todos los sistemas implementados (@pxref{Derivations})." #. type: item -#: guix-git/doc/guix.texi:12921 +#: guix-git/doc/guix.texi:13278 #, no-wrap msgid "profile-collisions" msgstr "profile-collisions" #. type: table -#: guix-git/doc/guix.texi:12927 +#: guix-git/doc/guix.texi:13284 msgid "Check whether installing the given packages in a profile would lead to collisions. Collisions occur when several packages with the same name but a different version or a different store file name are propagated. @xref{package Reference, @code{propagated-inputs}}, for more information on propagated inputs." msgstr "Comprueba si la instalación de los paquetes proporcionados en el perfil provocaría colisiones. Las colisiones se producen cuando se propagan varios paquetes con el mismo nombre pero una versión diferente o un nombre de archivo del almacén. @xref{package Reference, @code{propagated-inputs}}, para más información sobre entradas propagadas." #. type: item -#: guix-git/doc/guix.texi:12928 +#: guix-git/doc/guix.texi:13285 #, no-wrap msgid "archival" msgstr "archival" #. type: cindex -#: guix-git/doc/guix.texi:12929 +#: guix-git/doc/guix.texi:13286 #, no-wrap msgid "Software Heritage, source code archive" msgstr "Software Heritage, archivo de código fuente" #. type: cindex -#: guix-git/doc/guix.texi:12930 +#: guix-git/doc/guix.texi:13287 #, no-wrap msgid "archival of source code, Software Heritage" msgstr "archivado de código fuente, Software Heritage" #. type: table -#: guix-git/doc/guix.texi:12933 +#: guix-git/doc/guix.texi:13290 msgid "Checks whether the package's source code is archived at @uref{https://www.softwareheritage.org, Software Heritage}." msgstr "Comprueba si el código fuente del paquete se encuentra archivado en @uref{https://www.softwareheritage.org, Software Heritage}." # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:12941 +#: guix-git/doc/guix.texi:13298 msgid "When the source code that is not archived comes from a version-control system (VCS)---e.g., it's obtained with @code{git-fetch}, send Software Heritage a ``save'' request so that it eventually archives it. This ensures that the source will remain available in the long term, and that Guix can fall back to Software Heritage should the source code disappear from its original host. The status of recent ``save'' requests can be @uref{https://archive.softwareheritage.org/save/#requests, viewed on-line}." msgstr "Cuando el código fuente que no se encuentra archivado proviene de un sistema de control de versiones@footnote{VCS en inglés}---por ejemplo, se ha obtenido con @code{git-fetch}---, envía a Software Heritage una petición de almacenamiento de manera que se archive cuando sea posible. Esto asegura que las fuentes permanecen disponibles a largo plazo, y que Guix puede usar Software Heritage como respaldo en caso de que el código fuente desapareciese de la máquina que lo almacenaba originalmente. El estado de las peticiones de almacenamiento recientes puede @uref{https://archive.softwareheritage.org/save/#requests, verse en su página web}." # FUZZY #. type: table -#: guix-git/doc/guix.texi:12946 +#: guix-git/doc/guix.texi:13303 msgid "When source code is a tarball obtained with @code{url-fetch}, simply print a message when it is not archived. As of this writing, Software Heritage does not allow requests to save arbitrary tarballs; we are working on ways to ensure that non-VCS source code is also archived." msgstr "Cuando el código fuente es un archivo comprimido que se obtiene con @code{url-fetch}, simplemente imprime un mensaje cuando no se encuentra archivado. En el momento de la escritura de este documento, Software Heritage no permite el almacenamiento de archivos comprimidos arbitrarios; estamos trabajando en formas de asegurar que también se archive el código que no se encuentra bajo control de versiones." # FUZZY #. type: table -#: guix-git/doc/guix.texi:12952 +#: guix-git/doc/guix.texi:13309 msgid "Software Heritage @uref{https://archive.softwareheritage.org/api/#rate-limiting, limits the request rate per IP address}. When the limit is reached, @command{guix lint} prints a message and the @code{archival} checker stops doing anything until that limit has been reset." msgstr "Software Heritage @uref{https://archive.softwareheritage.org/api/#rate-limiting, limita la tasa de peticiones por dirección IP}. Cuando se alcanza dicho límite, @command{guix lint} imprime un mensaje y la comprobación @code{archival} no hace nada hasta que dicho límite se reinicie." #. type: item -#: guix-git/doc/guix.texi:12953 +#: guix-git/doc/guix.texi:13310 #, no-wrap msgid "cve" msgstr "cve" #. type: cindex -#: guix-git/doc/guix.texi:12954 guix-git/doc/guix.texi:37946 +#: guix-git/doc/guix.texi:13311 guix-git/doc/guix.texi:38435 #, no-wrap msgid "security vulnerabilities" msgstr "vulnerabilidades de seguridad" #. type: cindex -#: guix-git/doc/guix.texi:12955 +#: guix-git/doc/guix.texi:13312 #, no-wrap msgid "CVE, Common Vulnerabilities and Exposures" msgstr "CVE, vulnerabilidades y exposiciones comunes" #. type: table -#: guix-git/doc/guix.texi:12960 +#: guix-git/doc/guix.texi:13317 msgid "Report known vulnerabilities found in the Common Vulnerabilities and Exposures (CVE) databases of the current and past year @uref{https://nvd.nist.gov/vuln/data-feeds, published by the US NIST}." msgstr "Informa de vulnerabilidades encontradas en las bases de datos de vulnerabilidades y exposiciones comunes (CVE) del año actual y el pasado @uref{https://nvd.nist.gov/vuln/data-feeds, publicadas por el NIST de EEUU}." #. type: table -#: guix-git/doc/guix.texi:12962 +#: guix-git/doc/guix.texi:13319 msgid "To view information about a particular vulnerability, visit pages such as:" msgstr "Para ver información acerca de una vulnerabilidad particular, visite páginas como:" #. type: indicateurl{#1} -#: guix-git/doc/guix.texi:12966 +#: guix-git/doc/guix.texi:13323 msgid "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-YYYY-ABCD" msgstr "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-YYYY-ABCD" #. type: indicateurl{#1} -#: guix-git/doc/guix.texi:12968 +#: guix-git/doc/guix.texi:13325 msgid "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-YYYY-ABCD" msgstr "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-YYYY-ABCD" #. type: table -#: guix-git/doc/guix.texi:12973 +#: guix-git/doc/guix.texi:13330 msgid "where @code{CVE-YYYY-ABCD} is the CVE identifier---e.g., @code{CVE-2015-7554}." msgstr "donde @code{CVE-YYYY-ABCD} es el identificador CVE---por ejemplo, @code{CVE-2015-7554}." #. type: table -#: guix-git/doc/guix.texi:12978 +#: guix-git/doc/guix.texi:13335 msgid "Package developers can specify in package recipes the @uref{https://nvd.nist.gov/products/cpe,Common Platform Enumeration (CPE)} name and version of the package when they differ from the name or version that Guix uses, as in this example:" msgstr "Las desarrolladoras de paquetes pueden especificar en las recetas del paquete el nombre y versión en la @uref{https://nvd.nist.gov/cpe.cfm, plataforma común de enumeración (CPE)} del paquete cuando el nombre o versión que usa Guix son diferentes, como en este ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:12986 +#: guix-git/doc/guix.texi:13343 #, no-wrap msgid "" "(package\n" @@ -25030,12 +25720,12 @@ msgstr "" " (cpe-version . \"2.3\"))))\n" #. type: table -#: guix-git/doc/guix.texi:12993 +#: guix-git/doc/guix.texi:13350 msgid "Some entries in the CVE database do not specify which version of a package they apply to, and would thus ``stick around'' forever. Package developers who found CVE alerts and verified they can be ignored can declare them as in this example:" msgstr "Algunas entradas en la base de datos CVE no especifican a qué versión del paquete hacen referencia, y por lo tanto ``permanecen visibles'' para siempre. Las desarrolladoras de paquetes que encuentren alertas CVE y verifiquen que pueden ignorarse, pueden declararlas como en este ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:13003 +#: guix-git/doc/guix.texi:13360 #, no-wrap msgid "" "(package\n" @@ -25058,126 +25748,126 @@ msgstr "" " \"CVE-2011-5244\")))))\n" #. type: item -#: guix-git/doc/guix.texi:13005 +#: guix-git/doc/guix.texi:13362 #, no-wrap msgid "formatting" msgstr "formatting" #. type: table -#: guix-git/doc/guix.texi:13008 +#: guix-git/doc/guix.texi:13365 msgid "Warn about obvious source code formatting issues: trailing white space, use of tabulations, etc." msgstr "Avisa de problemas de formato obvios en el código fuente: espacios en blanco al final de las líneas, uso de tabuladores, etc." #. type: item -#: guix-git/doc/guix.texi:13009 +#: guix-git/doc/guix.texi:13366 #, no-wrap msgid "input-labels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13015 +#: guix-git/doc/guix.texi:13372 msgid "Report old-style input labels that do not match the name of the corresponding package. This aims to help migrate from the ``old input style''. @xref{package Reference}, for more information on package inputs and input styles. @xref{Invoking guix style}, on how to migrate to the new style." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13021 +#: guix-git/doc/guix.texi:13378 #, no-wrap msgid "guix lint @var{options} @var{package}@dots{}\n" msgstr "guix lint @var{opciones} @var{paquete}@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:13025 +#: guix-git/doc/guix.texi:13382 msgid "If no package is given on the command line, then all packages are checked. The @var{options} may be zero or more of the following:" msgstr "Si no se proporciona ningún paquete en la linea de órdenes, todos los paquetes se comprueban. Las @var{opciones} pueden ser cero o más de las siguientes:" #. type: item -#: guix-git/doc/guix.texi:13027 +#: guix-git/doc/guix.texi:13384 #, no-wrap msgid "--list-checkers" msgstr "--list-checkers" #. type: table -#: guix-git/doc/guix.texi:13031 +#: guix-git/doc/guix.texi:13388 msgid "List and describe all the available checkers that will be run on packages and exit." msgstr "Enumera y describe todas las comprobaciones disponibles que se ejecutarán sobre los paquetes y finaliza." #. type: item -#: guix-git/doc/guix.texi:13032 +#: guix-git/doc/guix.texi:13389 #, no-wrap msgid "--checkers" msgstr "--checkers" #. type: itemx -#: guix-git/doc/guix.texi:13033 +#: guix-git/doc/guix.texi:13390 #, no-wrap msgid "-c" msgstr "-c" #. type: table -#: guix-git/doc/guix.texi:13036 +#: guix-git/doc/guix.texi:13393 msgid "Only enable the checkers specified in a comma-separated list using the names returned by @option{--list-checkers}." msgstr "Únicamente activa las comprobaciones especificadas en una lista separada por comas que use los nombres devueltos por @option{--list-checkers}." #. type: item -#: guix-git/doc/guix.texi:13037 +#: guix-git/doc/guix.texi:13394 #, no-wrap msgid "--exclude" msgstr "--exclude" #. type: table -#: guix-git/doc/guix.texi:13041 +#: guix-git/doc/guix.texi:13398 msgid "Only disable the checkers specified in a comma-separated list using the names returned by @option{--list-checkers}." msgstr "Únicamente desactiva las comprobaciones especificadas en una lista separada por comas que use los nombres devueltos por @option{--list-checkers}." #. type: item -#: guix-git/doc/guix.texi:13042 +#: guix-git/doc/guix.texi:13399 #, no-wrap msgid "--no-network" msgstr "--no-network" #. type: table -#: guix-git/doc/guix.texi:13045 +#: guix-git/doc/guix.texi:13402 msgid "Only enable the checkers that do not depend on Internet access." msgstr "Activa únicamente las comprobaciones que no dependen del acceso a internet." #. type: section -#: guix-git/doc/guix.texi:13057 +#: guix-git/doc/guix.texi:13414 #, no-wrap msgid "Invoking @command{guix size}" msgstr "Invocación de @command{guix size}" #. type: code{#1} -#: guix-git/doc/guix.texi:13059 guix-git/doc/guix.texi:35624 +#: guix-git/doc/guix.texi:13416 guix-git/doc/guix.texi:36114 #, no-wrap msgid "size" msgstr "size" #. type: cindex -#: guix-git/doc/guix.texi:13060 +#: guix-git/doc/guix.texi:13417 #, no-wrap msgid "package size" msgstr "tamaño del paquete" #. type: command{#1} -#: guix-git/doc/guix.texi:13062 +#: guix-git/doc/guix.texi:13419 #, no-wrap msgid "guix size" msgstr "guix size" #. type: Plain text -#: guix-git/doc/guix.texi:13069 +#: guix-git/doc/guix.texi:13426 msgid "The @command{guix size} command helps package developers profile the disk usage of packages. It is easy to overlook the impact of an additional dependency added to a package, or the impact of using a single output for a package that could easily be split (@pxref{Packages with Multiple Outputs}). Such are the typical issues that @command{guix size} can highlight." msgstr "La orden @command{guix size} ayuda a las desarrolladoras de paquetes a perfilar el uso de disco de los paquetes. Es fácil pasar por encima el impacto que produce añadir una dependencia adicional a un paquete, o el impacto del uso de una salida única para un paquete que puede ser dividido fácilmente (@pxref{Packages with Multiple Outputs}). Estos son los problemas típicos que @command{guix size} puede resaltar." #. type: Plain text -#: guix-git/doc/guix.texi:13074 +#: guix-git/doc/guix.texi:13431 msgid "The command can be passed one or more package specifications such as @code{gcc@@4.8} or @code{guile:debug}, or a file name in the store. Consider this example:" msgstr "Se le pueden proporcionar una o más especificaciones de paquete como @code{gcc@@4.8} o @code{guile:debug}, o un nombre de archivo en el almacén. Considere este ejemplo:" # FUZZY # TODO: Actualizar cuando se traduzca guix #. type: example -#: guix-git/doc/guix.texi:13087 +#: guix-git/doc/guix.texi:13444 #, no-wrap msgid "" "$ guix size coreutils\n" @@ -25205,12 +25895,12 @@ msgstr "" "total: 78.9 MiB\n" #. type: Plain text -#: guix-git/doc/guix.texi:13093 +#: guix-git/doc/guix.texi:13450 msgid "The store items listed here constitute the @dfn{transitive closure} of Coreutils---i.e., Coreutils and all its dependencies, recursively---as would be returned by:" msgstr "Los elementos del almacén enumerados aquí constituyen la @dfn{clausura transitiva} de Coreutils---es decir, Coreutils y todas sus dependencias, recursivamente---como sería devuelto por:" #. type: example -#: guix-git/doc/guix.texi:13096 +#: guix-git/doc/guix.texi:13453 #, no-wrap msgid "$ guix gc -R /gnu/store/@dots{}-coreutils-8.23\n" msgstr "$ guix gc -R /gnu/store/@dots{}-coreutils-8.23\n" @@ -25218,45 +25908,45 @@ msgstr "$ guix gc -R /gnu/store/@dots{}-coreutils-8.23\n" # FUZZY # TODO: Actualizar cuando se traduzca guix #. type: Plain text -#: guix-git/doc/guix.texi:13104 +#: guix-git/doc/guix.texi:13461 msgid "Here the output shows three columns next to store items. The first column, labeled ``total'', shows the size in mebibytes (MiB) of the closure of the store item---that is, its own size plus the size of all its dependencies. The next column, labeled ``self'', shows the size of the item itself. The last column shows the ratio of the size of the item itself to the space occupied by all the items listed here." msgstr "Aquí la salida muestra tres columnas junto a los elementos del almacén. La primera columna, etiquetada ``total'', muestra el tamaño en mebibytes (MiB) de la clausura del elemento del almacén---es decir, su propio tamaño sumado al tamaño de todas sus dependencias. La siguiente columna, etiquetada ``self'', muestra el tamaño del elemento en sí. La última columna muestra la relación entre el tamaño del elemento en sí frente al espacio ocupado por todos los elementos enumerados." #. type: Plain text -#: guix-git/doc/guix.texi:13110 +#: guix-git/doc/guix.texi:13467 msgid "In this example, we see that the closure of Coreutils weighs in at 79@tie{}MiB, most of which is taken by libc and GCC's run-time support libraries. (That libc and GCC's libraries represent a large fraction of the closure is not a problem @i{per se} because they are always available on the system anyway.)" msgstr "En este ejemplo, vemos que la clausura de Coreutils ocupa 79@tie{}MiB, cuya mayor parte son libc y las bibliotecas auxiliares de GCC para tiempo de ejecución. (Que libc y las bibliotecas de GCC representen una fracción grande de la clausura no es un problema en sí, puesto que siempre están disponibles en el sistema de todas maneras)." #. type: Plain text -#: guix-git/doc/guix.texi:13113 +#: guix-git/doc/guix.texi:13470 msgid "Since the command also accepts store file names, assessing the size of a build result is straightforward:" msgstr "Puesto que la orden también acepta nombres de archivo del almacén, comprobar el tamaño del resultado de una construcción es una operación directa:" #. type: example -#: guix-git/doc/guix.texi:13116 +#: guix-git/doc/guix.texi:13473 #, no-wrap msgid "guix size $(guix system build config.scm)\n" msgstr "guix size $(guix system build config.scm)\n" #. type: Plain text -#: guix-git/doc/guix.texi:13126 +#: guix-git/doc/guix.texi:13483 msgid "When the package(s) passed to @command{guix size} are available in the store@footnote{More precisely, @command{guix size} looks for the @emph{ungrafted} variant of the given package(s), as returned by @code{guix build @var{package} --no-grafts}. @xref{Security Updates}, for information on grafts.}, @command{guix size} queries the daemon to determine its dependencies, and measures its size in the store, similar to @command{du -ms --apparent-size} (@pxref{du invocation,,, coreutils, GNU Coreutils})." msgstr "Cuando los paquetes pasados a @command{guix size} están disponibles en el almacén@footnote{Más precisamente, @command{guix size} busca la variante @emph{sin injertos} de los paquetes, como el devuelto por @code{guix build @var{paquete} --no-grafts}. @xref{Security Updates}, para información sobre injertos.} consultando al daemon para determinar sus dependencias, y mide su tamaño en el almacén, de forma similar a @command{du -ms --apparent-size} (@pxref{du invocation,,, coreutils, GNU Coreutils})." #. type: Plain text -#: guix-git/doc/guix.texi:13131 +#: guix-git/doc/guix.texi:13488 msgid "When the given packages are @emph{not} in the store, @command{guix size} reports information based on the available substitutes (@pxref{Substitutes}). This makes it possible it to profile disk usage of store items that are not even on disk, only available remotely." msgstr "Cuando los paquetes proporcionados @emph{no} están en el almacén, @command{guix size} informa en base de las sustituciones disponibles (@pxref{Substitutes}). Esto hace posible perfilar el espacio en disco incluso de elementos del almacén que no están en el disco, únicamente disponibles de forma remota." #. type: Plain text -#: guix-git/doc/guix.texi:13133 +#: guix-git/doc/guix.texi:13490 msgid "You can also specify several package names:" msgstr "Puede especificar también varios nombres de paquetes:" # FUZZY # TODO: Actualizar cuando se traduzca guix #. type: example -#: guix-git/doc/guix.texi:13143 +#: guix-git/doc/guix.texi:13500 #, no-wrap msgid "" "$ guix size coreutils grep sed bash\n" @@ -25278,98 +25968,98 @@ msgstr "" "total: 102.3 MiB\n" #. type: Plain text -#: guix-git/doc/guix.texi:13149 +#: guix-git/doc/guix.texi:13506 msgid "In this example we see that the combination of the four packages takes 102.3@tie{}MiB in total, which is much less than the sum of each closure since they have a lot of dependencies in common." msgstr "En este ejemplo vemos que la combinación de los cuatro paquetes toma 102.3@tie{}MiB en total, lo cual es mucho menos que la suma de cada clausura, ya que tienen muchas dependencias en común." #. type: Plain text -#: guix-git/doc/guix.texi:13155 +#: guix-git/doc/guix.texi:13512 msgid "When looking at the profile returned by @command{guix size}, you may find yourself wondering why a given package shows up in the profile at all. To understand it, you can use @command{guix graph --path -t references} to display the shortest path between the two packages (@pxref{Invoking guix graph})." msgstr "Cuando tenga delante el perfil devuelto por @command{guix size} puede preguntarse cuál es la razón de que cierto paquete aparezca en el perfil. Para entenderlo puede usar @command{guix graph --path -t references} para mostrar la ruta más corta entre dos paquetes (@pxref{Invoking guix graph})." #. type: Plain text -#: guix-git/doc/guix.texi:13157 +#: guix-git/doc/guix.texi:13514 msgid "The available options are:" msgstr "Las opciones disponibles son:" #. type: table -#: guix-git/doc/guix.texi:13163 +#: guix-git/doc/guix.texi:13520 msgid "Use substitute information from @var{urls}. @xref{client-substitute-urls, the same option for @code{guix build}}." msgstr "Usa la información de sustituciones de @var{urls}. @xref{client-substitute-urls, la misma opción en @code{guix build}}." #. type: item -#: guix-git/doc/guix.texi:13164 +#: guix-git/doc/guix.texi:13521 #, no-wrap msgid "--sort=@var{key}" msgstr "--sort=@var{clave}" #. type: table -#: guix-git/doc/guix.texi:13166 +#: guix-git/doc/guix.texi:13523 msgid "Sort lines according to @var{key}, one of the following options:" msgstr "Ordena las líneas de acuerdo a @var{clave}, una de las siguientes opciones:" #. type: item -#: guix-git/doc/guix.texi:13168 +#: guix-git/doc/guix.texi:13525 #, no-wrap msgid "self" -msgstr "self" +msgstr "propio" #. type: table -#: guix-git/doc/guix.texi:13170 +#: guix-git/doc/guix.texi:13527 msgid "the size of each item (the default);" msgstr "el tamaño de cada elemento (predeterminada);" #. type: table -#: guix-git/doc/guix.texi:13172 +#: guix-git/doc/guix.texi:13529 msgid "the total size of the item's closure." msgstr "el tamaño total de la clausura del elemento." #. type: item -#: guix-git/doc/guix.texi:13174 +#: guix-git/doc/guix.texi:13531 #, no-wrap msgid "--map-file=@var{file}" msgstr "--map-file=@var{archivo}" #. type: table -#: guix-git/doc/guix.texi:13176 +#: guix-git/doc/guix.texi:13533 msgid "Write a graphical map of disk usage in PNG format to @var{file}." msgstr "Escribe un mapa gráfico del uso del disco en formato PNG en el @var{archivo}." #. type: table -#: guix-git/doc/guix.texi:13178 +#: guix-git/doc/guix.texi:13535 msgid "For the example above, the map looks like this:" msgstr "Para el ejemplo previo, el mapa tiene esta pinta:" #. type: table -#: guix-git/doc/guix.texi:13181 +#: guix-git/doc/guix.texi:13538 msgid "@image{images/coreutils-size-map,5in,, map of Coreutils disk usage produced by @command{guix size}}" msgstr "@image{images/coreutils-size-map,5in,, mapa del uso del disco de Coreutils producido por @command{guix size}}" # FUZZY #. type: table -#: guix-git/doc/guix.texi:13186 +#: guix-git/doc/guix.texi:13543 msgid "This option requires that @uref{https://wingolog.org/software/guile-charting/, Guile-Charting} be installed and visible in Guile's module search path. When that is not the case, @command{guix size} fails as it tries to load it." msgstr "Esta opción necesita que la biblioteca @uref{https://wingolog.org/software/guile-charting/, Guile-Charting} esté instalada y visible en la ruta de búsqueda de módulos Guile. Cuando no es el caso, @command{guix size} produce un error al intentar cargarla." #. type: table -#: guix-git/doc/guix.texi:13190 +#: guix-git/doc/guix.texi:13547 msgid "Consider packages for @var{system}---e.g., @code{x86_64-linux}." msgstr "Considera paquetes para @var{sistema}---por ejemplo, @code{x86_64-linux}." #. type: section -#: guix-git/doc/guix.texi:13201 +#: guix-git/doc/guix.texi:13558 #, no-wrap msgid "Invoking @command{guix graph}" msgstr "Invocación de @command{guix graph}" #. type: cindex -#: guix-git/doc/guix.texi:13203 +#: guix-git/doc/guix.texi:13560 #, no-wrap msgid "DAG" msgstr "GAD (DAG en inglés)" #. type: command{#1} -#: guix-git/doc/guix.texi:13204 +#: guix-git/doc/guix.texi:13561 #, no-wrap msgid "guix graph" msgstr "guix graph" @@ -25378,270 +26068,270 @@ msgstr "guix graph" # wikipedia a falta de mejor bibliografía, también puede entenderse como # diagrama de representación radial... :( #. type: Plain text -#: guix-git/doc/guix.texi:13219 +#: guix-git/doc/guix.texi:13576 #, fuzzy msgid "Packages and their dependencies form a @dfn{graph}, specifically a directed acyclic graph (DAG). It can quickly become difficult to have a mental model of the package DAG, so the @command{guix graph} command provides a visual representation of the DAG@. By default, @command{guix graph} emits a DAG representation in the input format of @uref{https://www.graphviz.org/, Graphviz}, so its output can be passed directly to the @command{dot} command of Graphviz. It can also emit an HTML page with embedded JavaScript code to display a ``chord diagram'' in a Web browser, using the @uref{https://d3js.org/, d3.js} library, or emit Cypher queries to construct a graph in a graph database supporting the @uref{https://www.opencypher.org/, openCypher} query language. With @option{--path}, it simply displays the shortest path between two packages. The general syntax is:" msgstr "Los paquetes y sus dependencias forman un @dfn{grafo}, específicamente un grafo acíclico dirigido (GAD, DAG en Inglés). Puede ser difícil crear un modelo mental del GAD del paquete de manera rápida, por lo que la orden @command{guix graph} proporciona una representación virtual del GAD. Por defecto, @command{guix graph} emite una representación en GAD en el formato de entrada de @uref{https://graphviz.org/,Graphviz}, por lo que su salida puede ser pasada directamente a la herramienta @command{dot} de Graphviz. También puede emitir una página HTMP con código JavaScript embebido para mostrar un diagrama de cuerdas en un navegador Web, usando la biblioteca @uref{https://d3js.org/, d3.js}, o emitir consultas Cypher para construir un grafo en una base de datos de grafos que acepte el lenguaje de consultas @uref{https://www.opencypher.org/, openCypher}. Con la opción @option{--path} simplemente muestra la ruta más corta entre dos paquetes. La sintaxis general es:" #. type: example -#: guix-git/doc/guix.texi:13222 +#: guix-git/doc/guix.texi:13579 #, no-wrap msgid "guix graph @var{options} @var{package}@dots{}\n" msgstr "guix graph @var{opciones} @var{paquete}@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:13227 +#: guix-git/doc/guix.texi:13584 msgid "For example, the following command generates a PDF file representing the package DAG for the GNU@tie{}Core Utilities, showing its build-time dependencies:" msgstr "Por ejemplo, la siguiente orden genera un archivo PDF que representa el GAD para GNU@tie{}Core Utilities, mostrando sus dependencias en tiempo de construcción:" #. type: example -#: guix-git/doc/guix.texi:13230 +#: guix-git/doc/guix.texi:13587 #, no-wrap msgid "guix graph coreutils | dot -Tpdf > dag.pdf\n" msgstr "guix graph coreutils | dot -Tpdf > gad.pdf\n" #. type: Plain text -#: guix-git/doc/guix.texi:13233 +#: guix-git/doc/guix.texi:13590 msgid "The output looks like this:" msgstr "La salida es algo así:" #. type: Plain text -#: guix-git/doc/guix.texi:13235 +#: guix-git/doc/guix.texi:13592 msgid "@image{images/coreutils-graph,2in,,Dependency graph of the GNU Coreutils}" msgstr "@image{images/coreutils-graph,2in,,Grafo de dependencias de GNU Coreutils}" #. type: Plain text -#: guix-git/doc/guix.texi:13237 +#: guix-git/doc/guix.texi:13594 msgid "Nice little graph, no?" msgstr "Bonito y pequeño grafo, ¿no?" #. type: Plain text -#: guix-git/doc/guix.texi:13240 +#: guix-git/doc/guix.texi:13597 msgid "You may find it more pleasant to navigate the graph interactively with @command{xdot} (from the @code{xdot} package):" msgstr "Puede encontrar más agradable la navegación interactiva del grafo con la orden @command{xdot} (del paquete @code{xdot}):" #. type: example -#: guix-git/doc/guix.texi:13243 +#: guix-git/doc/guix.texi:13600 #, no-wrap msgid "guix graph coreutils | xdot -\n" msgstr "guix graph coreutils | xdot -\n" #. type: Plain text -#: guix-git/doc/guix.texi:13250 +#: guix-git/doc/guix.texi:13607 msgid "But there is more than one graph! The one above is concise: it is the graph of package objects, omitting implicit inputs such as GCC, libc, grep, etc. It is often useful to have such a concise graph, but sometimes one may want to see more details. @command{guix graph} supports several types of graphs, allowing you to choose the level of detail:" msgstr "¡Pero hay más de un grafo! El grafo previo es conciso: es el grafo de los objetos package, omitiendo las entradas implícitas como GCC, libc, grep, etc. Es habitualmente útil tener un grafo conciso así, pero a veces una puede querer ver más detalles. @command{guix graph} implementa varios tipos de grafos, lo que le permite seleccionar el nivel de detalle:" #. type: table -#: guix-git/doc/guix.texi:13256 +#: guix-git/doc/guix.texi:13613 msgid "This is the default type used in the example above. It shows the DAG of package objects, excluding implicit dependencies. It is concise, but filters out many details." msgstr "Este es el tipo por defecto usado en el ejemplo previo. Muestra el GAD de objetos package, excluyendo dependencias implícitas. Es conciso, pero deja fuera muchos detalles." #. type: item -#: guix-git/doc/guix.texi:13257 +#: guix-git/doc/guix.texi:13614 #, no-wrap msgid "reverse-package" msgstr "reverse-package" #. type: table -#: guix-git/doc/guix.texi:13259 +#: guix-git/doc/guix.texi:13616 msgid "This shows the @emph{reverse} DAG of packages. For example:" msgstr "Esto muestra el GAD @emph{inverso} de paquetes. Por ejemplo:" #. type: example -#: guix-git/doc/guix.texi:13262 +#: guix-git/doc/guix.texi:13619 #, no-wrap msgid "guix graph --type=reverse-package ocaml\n" msgstr "guix graph --type=reverse-package ocaml\n" #. type: table -#: guix-git/doc/guix.texi:13267 +#: guix-git/doc/guix.texi:13624 msgid "...@: yields the graph of packages that @emph{explicitly} depend on OCaml (if you are also interested in cases where OCaml is an implicit dependency, see @code{reverse-bag} below)." msgstr "...@: emite el grafo de paquetes que dependen @emph{explícitamente} de OCaml (si también tiene interés en casos donde OCaml es una dependencia implícita, véase @code{reverse-bag} a continuación)." #. type: table -#: guix-git/doc/guix.texi:13272 +#: guix-git/doc/guix.texi:13629 msgid "Note that for core packages this can yield huge graphs. If all you want is to know the number of packages that depend on a given package, use @command{guix refresh --list-dependent} (@pxref{Invoking guix refresh, @option{--list-dependent}})." msgstr "Fíjese que esto puede producir grafos inmensos para los paquetes básicos. Si todo lo que quiere saber es el número de paquetes que dependen de uno determinado, use @command{guix refresh --list-dependent} (@pxref{Invoking guix refresh, @option{--list-dependent}})." #. type: item -#: guix-git/doc/guix.texi:13273 +#: guix-git/doc/guix.texi:13630 #, no-wrap msgid "bag-emerged" msgstr "bag-emerged" #. type: table -#: guix-git/doc/guix.texi:13275 +#: guix-git/doc/guix.texi:13632 msgid "This is the package DAG, @emph{including} implicit inputs." msgstr "Este es el GAD del paquete, @emph{incluyendo} entradas implícitas." #. type: table -#: guix-git/doc/guix.texi:13277 +#: guix-git/doc/guix.texi:13634 msgid "For instance, the following command:" msgstr "Por ejemplo, la siguiente orden:" #. type: example -#: guix-git/doc/guix.texi:13280 +#: guix-git/doc/guix.texi:13637 #, no-wrap msgid "guix graph --type=bag-emerged coreutils\n" msgstr "guix graph --type=bag-emerged coreutils\n" #. type: table -#: guix-git/doc/guix.texi:13283 +#: guix-git/doc/guix.texi:13640 msgid "...@: yields this bigger graph:" msgstr "...@: emite este grafo más grande:" #. type: table -#: guix-git/doc/guix.texi:13285 +#: guix-git/doc/guix.texi:13642 msgid "@image{images/coreutils-bag-graph,,5in,Detailed dependency graph of the GNU Coreutils}" msgstr "@image{images/coreutils-bag-graph,,5in,Grafo de dependencias detallado de GNU Coreutils}" #. type: table -#: guix-git/doc/guix.texi:13288 +#: guix-git/doc/guix.texi:13645 msgid "At the bottom of the graph, we see all the implicit inputs of @var{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}})." msgstr "En la parte inferior del grafo, vemos todas las entradas implícitas de @var{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}})." #. type: table -#: guix-git/doc/guix.texi:13292 +#: guix-git/doc/guix.texi:13649 msgid "Now, note that the dependencies of these implicit inputs---that is, the @dfn{bootstrap dependencies} (@pxref{Bootstrapping})---are not shown here, for conciseness." msgstr "Ahora bien, fíjese que las dependencias de estas entradas implícitas---es decir, las @dfn{dependencias del lanzamiento inicial} (@pxref{Bootstrapping})---no se muestran aquí para mantener una salida concisa." #. type: item -#: guix-git/doc/guix.texi:13293 +#: guix-git/doc/guix.texi:13650 #, no-wrap msgid "bag" msgstr "bag" #. type: table -#: guix-git/doc/guix.texi:13296 +#: guix-git/doc/guix.texi:13653 msgid "Similar to @code{bag-emerged}, but this time including all the bootstrap dependencies." msgstr "Similar a @code{bag-emerged}, pero esta vez incluye todas las dependencias del lanzamiento inicial." #. type: item -#: guix-git/doc/guix.texi:13297 +#: guix-git/doc/guix.texi:13654 #, no-wrap msgid "bag-with-origins" msgstr "bag-with-origins" #. type: table -#: guix-git/doc/guix.texi:13299 +#: guix-git/doc/guix.texi:13656 msgid "Similar to @code{bag}, but also showing origins and their dependencies." msgstr "Similar a @code{bag}, pero también muestra los orígenes y sus dependencias." #. type: item -#: guix-git/doc/guix.texi:13300 +#: guix-git/doc/guix.texi:13657 #, no-wrap msgid "reverse-bag" msgstr "reverse-bag" #. type: table -#: guix-git/doc/guix.texi:13303 +#: guix-git/doc/guix.texi:13660 msgid "This shows the @emph{reverse} DAG of packages. Unlike @code{reverse-package}, it also takes implicit dependencies into account. For example:" msgstr "Muestra el GAD @emph{inverso} de paquetes. Al contrario que @code{reverse-package}, también tiene en cuenta las dependencias implícitas. Por ejemplo:" #. type: example -#: guix-git/doc/guix.texi:13306 +#: guix-git/doc/guix.texi:13663 #, no-wrap msgid "guix graph -t reverse-bag dune\n" msgstr "guix graph -t reverse-bag dune\n" #. type: table -#: guix-git/doc/guix.texi:13313 +#: guix-git/doc/guix.texi:13670 msgid "...@: yields the graph of all packages that depend on Dune, directly or indirectly. Since Dune is an @emph{implicit} dependency of many packages @i{via} @code{dune-build-system}, this shows a large number of packages, whereas @code{reverse-package} would show very few if any." msgstr "...@: emite el grafo de tosos los paquetes que dependen de Dune, directa o indirectamente. Ya que Dune es una dependencia @emph{implícita} de muchos paquetes @i{vía} @code{dune-build-system}, esto mostrará un gran número de paquetes, mientras que @code{reverse-package} mostraría muy pocos si muestra alguno." #. type: table -#: guix-git/doc/guix.texi:13319 +#: guix-git/doc/guix.texi:13676 msgid "This is the most detailed representation: It shows the DAG of derivations (@pxref{Derivations}) and plain store items. Compared to the above representation, many additional nodes are visible, including build scripts, patches, Guile modules, etc." msgstr "Esta es la representación más detallada: muestra el GAD de derivaciones (@pxref{Derivations}) y elementos simples del almacén. Comparada con las representaciones previas, muchos nodos adicionales son visibles, incluyendo los guiones de construcción, parches, módulos Guile, etc." #. type: table -#: guix-git/doc/guix.texi:13322 +#: guix-git/doc/guix.texi:13679 msgid "For this type of graph, it is also possible to pass a @file{.drv} file name instead of a package name, as in:" msgstr "Para este tipo de grafo, también es posible pasar un nombre de archivo @file{.drv} en vez del nombre del paquete, como en:" #. type: example -#: guix-git/doc/guix.texi:13325 +#: guix-git/doc/guix.texi:13682 #, fuzzy, no-wrap msgid "guix graph -t derivation $(guix system build -d my-config.scm)\n" msgstr "guix graph -t derivation `guix system build -d mi-configuración.scm`\n" #. type: item -#: guix-git/doc/guix.texi:13327 +#: guix-git/doc/guix.texi:13684 #, no-wrap msgid "module" msgstr "module" #. type: table -#: guix-git/doc/guix.texi:13331 +#: guix-git/doc/guix.texi:13688 msgid "This is the graph of @dfn{package modules} (@pxref{Package Modules}). For example, the following command shows the graph for the package module that defines the @code{guile} package:" msgstr "Este es el grafo de los @dfn{módulos de paquete} (@pxref{Package Modules}). Por ejemplo, la siguiente orden muestra el grafo para el módulo de paquetes que define el paquete @code{guile}:" #. type: example -#: guix-git/doc/guix.texi:13334 +#: guix-git/doc/guix.texi:13691 #, no-wrap msgid "guix graph -t module guile | xdot -\n" msgstr "guix graph -t module guile | xdot -\n" #. type: Plain text -#: guix-git/doc/guix.texi:13339 +#: guix-git/doc/guix.texi:13696 msgid "All the types above correspond to @emph{build-time dependencies}. The following graph type represents the @emph{run-time dependencies}:" msgstr "Todos los tipos previos corresponden a las @emph{dependencias durante la construcción}. El grafo siguiente representa las @emph{dependencias en tiempo de ejecución}:" #. type: table -#: guix-git/doc/guix.texi:13344 +#: guix-git/doc/guix.texi:13701 msgid "This is the graph of @dfn{references} of a package output, as returned by @command{guix gc --references} (@pxref{Invoking guix gc})." msgstr "Este es el grafo de @dfn{referencias} de la salida de un paquete, como lo devuelve @command{guix gc --references} (@pxref{Invoking guix gc})." #. type: table -#: guix-git/doc/guix.texi:13347 +#: guix-git/doc/guix.texi:13704 msgid "If the given package output is not available in the store, @command{guix graph} attempts to obtain dependency information from substitutes." msgstr "Si la salida del paquete proporcionado no está disponible en el almacén, @command{guix graph} intenta obtener la información de dependencias desde las sustituciones." #. type: table -#: guix-git/doc/guix.texi:13351 +#: guix-git/doc/guix.texi:13708 msgid "Here you can also pass a store file name instead of a package name. For example, the command below produces the reference graph of your profile (which can be big!):" msgstr "Aquí también puede proporcionar un nombre de archivo del almacén en vez de un nombre de paquete. Por ejemplo, la siguiente orden produce el grafo de referencias de su perfil (¡el cuál puede ser grande!):" #. type: example -#: guix-git/doc/guix.texi:13354 +#: guix-git/doc/guix.texi:13711 #, fuzzy, no-wrap msgid "guix graph -t references $(readlink -f ~/.guix-profile)\n" msgstr "guix graph -t references `readlink -f ~/.guix-profile`\n" #. type: item -#: guix-git/doc/guix.texi:13356 +#: guix-git/doc/guix.texi:13713 #, no-wrap msgid "referrers" msgstr "referrers" #. type: table -#: guix-git/doc/guix.texi:13359 +#: guix-git/doc/guix.texi:13716 msgid "This is the graph of the @dfn{referrers} of a store item, as returned by @command{guix gc --referrers} (@pxref{Invoking guix gc})." msgstr "Este es el grafo de @dfn{referentes} de la salida de un paquete, como lo devuelve @command{guix gc --referrers} (@pxref{Invoking guix gc})." #. type: table -#: guix-git/doc/guix.texi:13365 +#: guix-git/doc/guix.texi:13722 msgid "This relies exclusively on local information from your store. For instance, let us suppose that the current Inkscape is available in 10 profiles on your machine; @command{guix graph -t referrers inkscape} will show a graph rooted at Inkscape and with those 10 profiles linked to it." msgstr "Depende exclusivamente de información en su almacén. Por ejemplo, supongamos que la versión actual de Inkscape está disponible en 10 perfiles en su máquina; @command{guix graph -t referrers inkscape} mostrará un grafo cuya raíz es Inkscape y con esos 10 perfiles enlazados a ella." #. type: table -#: guix-git/doc/guix.texi:13368 +#: guix-git/doc/guix.texi:13725 msgid "It can help determine what is preventing a store item from being garbage collected." msgstr "Puede ayudar a determinar qué impide que un elemento del almacén sea recolectado." #. type: cindex -#: guix-git/doc/guix.texi:13371 +#: guix-git/doc/guix.texi:13728 #, no-wrap msgid "shortest path, between packages" msgstr "ruta más corta, entre paquetes" #. type: Plain text -#: guix-git/doc/guix.texi:13378 +#: guix-git/doc/guix.texi:13735 msgid "Often, the graph of the package you are interested in does not fit on your screen, and anyway all you want to know is @emph{why} that package actually depends on some seemingly unrelated package. The @option{--path} option instructs @command{guix graph} to display the shortest path between two packages (or derivations, or store items, etc.):" msgstr "Habitualmente el grafo del paquete por el que tiene interés no entrará en su pantall, y en cualquier caso todo lo que quiere saber es @emph{por qué} dicho paquete depende de algún paquete que parece no tener relación. La opción @option{--path} le indica a @command{guix graph} que muestre la ruta más corta entre dos paquetes (o derivaciones, o elementos del almacén, etcétera):" #. type: example -#: guix-git/doc/guix.texi:13392 +#: guix-git/doc/guix.texi:13749 #, no-wrap msgid "" "$ guix graph --path emacs libunistring\n" @@ -25671,89 +26361,89 @@ msgstr "" "/gnu/store/@dots{}-libunistring-0.9.10\n" #. type: Plain text -#: guix-git/doc/guix.texi:13400 +#: guix-git/doc/guix.texi:13757 msgid "Sometimes you still want to visualize the graph but would like to trim it so it can actually be displayed. One way to do it is via the @option{--max-depth} (or @option{-M}) option, which lets you specify the maximum depth of the graph. In the example below, we visualize only @code{libreoffice} and the nodes whose distance to @code{libreoffice} is at most 2:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13403 +#: guix-git/doc/guix.texi:13760 #, fuzzy, no-wrap #| msgid "guix graph -t module guile | xdot -\n" msgid "guix graph -M 2 libreoffice | xdot -f fdp -\n" msgstr "guix graph -t module guile | xdot -\n" #. type: Plain text -#: guix-git/doc/guix.texi:13407 +#: guix-git/doc/guix.texi:13764 msgid "Mind you, that's still a big ball of spaghetti, but at least @command{dot} can render it quickly and it can be browsed somewhat." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13409 +#: guix-git/doc/guix.texi:13766 msgid "The available options are the following:" msgstr "Las opciones disponibles son las siguientes:" #. type: table -#: guix-git/doc/guix.texi:13415 +#: guix-git/doc/guix.texi:13772 msgid "Produce a graph output of @var{type}, where @var{type} must be one of the values listed above." msgstr "Produce un grafo de salida de @var{tipo}, donde @var{tipo} debe ser uno de los valores enumerados previamente." #. type: item -#: guix-git/doc/guix.texi:13416 +#: guix-git/doc/guix.texi:13773 #, no-wrap msgid "--list-types" msgstr "--list-types" #. type: table -#: guix-git/doc/guix.texi:13418 +#: guix-git/doc/guix.texi:13775 msgid "List the supported graph types." msgstr "Enumera los tipos de grafos implementados." #. type: item -#: guix-git/doc/guix.texi:13419 +#: guix-git/doc/guix.texi:13776 #, no-wrap msgid "--backend=@var{backend}" msgstr "--backend=@var{motor}" #. type: itemx -#: guix-git/doc/guix.texi:13420 +#: guix-git/doc/guix.texi:13777 #, no-wrap msgid "-b @var{backend}" msgstr "-b @var{motor}" #. type: table -#: guix-git/doc/guix.texi:13422 +#: guix-git/doc/guix.texi:13779 msgid "Produce a graph using the selected @var{backend}." msgstr "Produce un grafo usando el @var{motor} seleccionado." #. type: item -#: guix-git/doc/guix.texi:13423 +#: guix-git/doc/guix.texi:13780 #, no-wrap msgid "--list-backends" msgstr "--list-backends" #. type: table -#: guix-git/doc/guix.texi:13425 +#: guix-git/doc/guix.texi:13782 msgid "List the supported graph backends." msgstr "Enumera los motores de grafos implementados." #. type: table -#: guix-git/doc/guix.texi:13427 +#: guix-git/doc/guix.texi:13784 msgid "Currently, the available backends are Graphviz and d3.js." msgstr "Actualmente, los motores disponibles son Graphviz y d3.js." #. type: item -#: guix-git/doc/guix.texi:13428 +#: guix-git/doc/guix.texi:13785 #, no-wrap msgid "--path" msgstr "--path" #. type: table -#: guix-git/doc/guix.texi:13433 +#: guix-git/doc/guix.texi:13790 msgid "Display the shortest path between two nodes of the type specified by @option{--type}. The example below shows the shortest path between @code{libreoffice} and @code{llvm} according to the references of @code{libreoffice}:" msgstr "Muestra la ruta más corta entre dos nodos del tipo especificado por la opción @option{--type}. El ejemplo siguiente muestra la ruta más corta entre @code{libreoffice} y @code{llvm} de acuerdo con las referencias de @code{libreoffice}:" #. type: example -#: guix-git/doc/guix.texi:13440 +#: guix-git/doc/guix.texi:13797 #, no-wrap msgid "" "$ guix graph --path -t references libreoffice llvm\n" @@ -25769,276 +26459,276 @@ msgstr "" "/gnu/store/@dots{}-llvm-9.0.1\n" #. type: example -#: guix-git/doc/guix.texi:13450 +#: guix-git/doc/guix.texi:13807 #, no-wrap msgid "guix graph -e '(@@@@ (gnu packages commencement) gnu-make-final)'\n" msgstr "guix graph -e '(@@@@ (gnu packages commencement) gnu-make-final)'\n" #. type: table -#: guix-git/doc/guix.texi:13455 +#: guix-git/doc/guix.texi:13812 msgid "Display the graph for @var{system}---e.g., @code{i686-linux}." msgstr "Muestra el grafo para @var{sistema}---por ejemplo, @code{i686-linux}." #. type: table -#: guix-git/doc/guix.texi:13458 +#: guix-git/doc/guix.texi:13815 msgid "The package dependency graph is largely architecture-independent, but there are some architecture-dependent bits that this option allows you to visualize." msgstr "El grafo de dependencias del paquete es altamente independiente de la arquitectura, pero existen algunas partes dependientes de la arquitectura que esta opción le permite visualizar." #. type: Plain text -#: guix-git/doc/guix.texi:13474 +#: guix-git/doc/guix.texi:13831 msgid "On top of that, @command{guix graph} supports all the usual package transformation options (@pxref{Package Transformation Options}). This makes it easy to view the effect of a graph-rewriting transformation such as @option{--with-input}. For example, the command below outputs the graph of @code{git} once @code{openssl} has been replaced by @code{libressl} everywhere in the graph:" msgstr "Además de esto, @command{guix graph} permite todas las opciones habituales de transformación de paquetes (@pxref{Package Transformation Options}). Esto facilita la visualización del efecto de una transformación de reescritura de grafo como @option{--with-input}. Por ejemplo, la siguiente orden muestra el grafo de @code{git} una vez que @code{openssl} ha sido reemplazado por @code{libressl} en todos los nodos del grafo:" #. type: example -#: guix-git/doc/guix.texi:13477 +#: guix-git/doc/guix.texi:13834 #, no-wrap msgid "guix graph git --with-input=openssl=libressl\n" msgstr "guix graph git --with-input=openssl=libressl\n" #. type: Plain text -#: guix-git/doc/guix.texi:13480 +#: guix-git/doc/guix.texi:13837 msgid "So many possibilities, so much fun!" msgstr "¡Tantas posibilidades, tanta diversión!" #. type: section -#: guix-git/doc/guix.texi:13482 +#: guix-git/doc/guix.texi:13839 #, no-wrap msgid "Invoking @command{guix publish}" msgstr "Invocación de @command{guix publish}" #. type: command{#1} -#: guix-git/doc/guix.texi:13484 +#: guix-git/doc/guix.texi:13841 #, no-wrap msgid "guix publish" msgstr "guix publish" #. type: Plain text -#: guix-git/doc/guix.texi:13488 +#: guix-git/doc/guix.texi:13845 msgid "The purpose of @command{guix publish} is to enable users to easily share their store with others, who can then use it as a substitute server (@pxref{Substitutes})." msgstr "El propósito de @command{guix publish} es permitir a las usuarias compartir fácilmente su almacén con otras, quienes pueden usarlo como servidor de sustituciones (@pxref{Substitutes})." #. type: Plain text -#: guix-git/doc/guix.texi:13494 +#: guix-git/doc/guix.texi:13851 #, fuzzy #| msgid "When @command{guix publish} runs, it spawns an HTTP server which allows anyone with network access to obtain substitutes from it. This means that any machine running Guix can also act as if it were a build farm, since the HTTP interface is compatible with Cuirass, the software behind the @code{@value{SUBSTITUTE-SERVER}} build farm." msgid "When @command{guix publish} runs, it spawns an HTTP server which allows anyone with network access to obtain substitutes from it. This means that any machine running Guix can also act as if it were a build farm, since the HTTP interface is compatible with Cuirass, the software behind the @code{@value{SUBSTITUTE-SERVER-1}} build farm." msgstr "Cuando @command{guix publish} se ejecuta, lanza un servidor HTTP que permite a cualquiera que tenga acceso a través de la red obtener sustituciones de él. Esto significa que cualquier máquina que ejecute Guix puede actuar como si fuese una granja de construcción, ya que la interfaz HTTP es compatible con Cuirass, el software detrás de la granja de construcción @code{@value{SUBSTITUTE-SERVER}}." #. type: Plain text -#: guix-git/doc/guix.texi:13500 +#: guix-git/doc/guix.texi:13857 msgid "For security, each substitute is signed, allowing recipients to check their authenticity and integrity (@pxref{Substitutes}). Because @command{guix publish} uses the signing key of the system, which is only readable by the system administrator, it must be started as root; the @option{--user} option makes it drop root privileges early on." msgstr "Por seguridad, cada sustitución se firma, permitiendo a las receptoras comprobar su autenticidad e integridad (@pxref{Substitutes}). Debido a que @command{guix publish} usa la clave de firma del sistema, que es únicamente legible por la administradora del sistema, debe iniciarse como root; la opción @option{--user} hace que renuncie a sus privilegios tan pronto como sea posible." #. type: Plain text -#: guix-git/doc/guix.texi:13504 +#: guix-git/doc/guix.texi:13861 msgid "The signing key pair must be generated before @command{guix publish} is launched, using @command{guix archive --generate-key} (@pxref{Invoking guix archive})." msgstr "El par claves de firma debe generarse antes de ejecutar @command{guix publish}, usando @command{guix archive --generate-key} (@pxref{Invoking guix archive})." #. type: Plain text -#: guix-git/doc/guix.texi:13509 +#: guix-git/doc/guix.texi:13866 msgid "When the @option{--advertise} option is passed, the server advertises its availability on the local network using multicast DNS (mDNS) and DNS service discovery (DNS-SD), currently @i{via} Guile-Avahi (@pxref{Top,,, guile-avahi, Using Avahi in Guile Scheme Programs})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13514 +#: guix-git/doc/guix.texi:13871 #, no-wrap msgid "guix publish @var{options}@dots{}\n" msgstr "guix publish @var{opciones}@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:13518 +#: guix-git/doc/guix.texi:13875 msgid "Running @command{guix publish} without any additional arguments will spawn an HTTP server on port 8080:" msgstr "La ejecución de @command{guix publish} sin ningún parámetro adicional lanzará un servidor HTTP en el puerto 8080:" #. type: example -#: guix-git/doc/guix.texi:13521 +#: guix-git/doc/guix.texi:13878 #, no-wrap msgid "guix publish\n" msgstr "guix publish\n" #. type: Plain text -#: guix-git/doc/guix.texi:13525 +#: guix-git/doc/guix.texi:13882 msgid "Once a publishing server has been authorized, the daemon may download substitutes from it. @xref{Getting Substitutes from Other Servers}." msgstr "Una vez el servidor de publicación ha sido autorizado, el daemon puede descargar sustituciones de él. @xref{Getting Substitutes from Other Servers}." #. type: Plain text -#: guix-git/doc/guix.texi:13533 +#: guix-git/doc/guix.texi:13890 msgid "By default, @command{guix publish} compresses archives on the fly as it serves them. This ``on-the-fly'' mode is convenient in that it requires no setup and is immediately available. However, when serving lots of clients, we recommend using the @option{--cache} option, which enables caching of the archives before they are sent to clients---see below for details. The @command{guix weather} command provides a handy way to check what a server provides (@pxref{Invoking guix weather})." msgstr "Por defecto, @command{guix publish} comprime los archivos al vuelo cuando es necesario. Este modo ``al vuelo'' es conveniente ya que no necesita configuración y está disponible inmediatamente. No obstante, cuando se proporciona servicio a muchos clientes, se recomienda usar la opción @option{--cache}, que activa el almacenamiento en caché de los archivos antes de enviarlos a los clientes---véase a continuación para más detalles. La orden @command{guix weather} proporciona una forma fácil de comprobar lo que proporciona un servidor (@pxref{Invoking guix weather})." #. type: Plain text -#: guix-git/doc/guix.texi:13540 +#: guix-git/doc/guix.texi:13897 msgid "As a bonus, @command{guix publish} also serves as a content-addressed mirror for source files referenced in @code{origin} records (@pxref{origin Reference}). For instance, assuming @command{guix publish} is running on @code{example.org}, the following URL returns the raw @file{hello-2.10.tar.gz} file with the given SHA256 hash (represented in @code{nix-base32} format, @pxref{Invoking guix hash}):" msgstr "Además @command{guix publish} también sirve como un espejo de acceso por contenido a archivos de fuentes a los que los registros @code{origin} hacen referencia (@pxref{origin Reference}). Por ejemplo, si asumimos que @command{guix publish} se ejecuta en @code{example.org}, la siguiente URL devuelve directamente el archivo @file{hello-2.10.tar.gz} con el hash SHA256 proporcionado (representado en formato @code{nix-base32}, @pxref{Invoking guix hash})." #. type: example -#: guix-git/doc/guix.texi:13543 +#: guix-git/doc/guix.texi:13900 #, no-wrap msgid "http://example.org/file/hello-2.10.tar.gz/sha256/0ssi1@dots{}ndq1i\n" msgstr "http://example.org/file/hello-2.10.tar.gz/sha256/0ssi1@dots{}ndq1i\n" #. type: Plain text -#: guix-git/doc/guix.texi:13547 +#: guix-git/doc/guix.texi:13904 msgid "Obviously, these URLs only work for files that are in the store; in other cases, they return 404 (``Not Found'')." msgstr "Obviamente estas URL funcionan solamente para archivos que se encuentran en el almacén; en otros casos devuelven un 404 (``No encontrado'')." # TODO: (MAAV) Log #. type: cindex -#: guix-git/doc/guix.texi:13548 +#: guix-git/doc/guix.texi:13905 #, no-wrap msgid "build logs, publication" msgstr "logs de construcción, publicación" #. type: Plain text -#: guix-git/doc/guix.texi:13550 +#: guix-git/doc/guix.texi:13907 msgid "Build logs are available from @code{/log} URLs like:" msgstr "Los log de construcción están disponibles desde URL @code{/log} como:" #. type: example -#: guix-git/doc/guix.texi:13553 +#: guix-git/doc/guix.texi:13910 #, no-wrap msgid "http://example.org/log/gwspk@dots{}-guile-2.2.3\n" msgstr "http://example.org/log/gwspk@dots{}-guile-2.2.3\n" #. type: Plain text -#: guix-git/doc/guix.texi:13563 +#: guix-git/doc/guix.texi:13920 msgid "When @command{guix-daemon} is configured to save compressed build logs, as is the case by default (@pxref{Invoking guix-daemon}), @code{/log} URLs return the compressed log as-is, with an appropriate @code{Content-Type} and/or @code{Content-Encoding} header. We recommend running @command{guix-daemon} with @option{--log-compression=gzip} since Web browsers can automatically decompress it, which is not the case with Bzip2 compression." msgstr "Cuando @command{guix-daemon} está configurado para almacenar comprimidos los log de construcción, como sucede de forma predeterminada (@pxref{Invoking guix-daemon}), las URL @code{/log} devuelven los log igualmente comprimidos, con un @code{Content-Type} adecuado y/o una cabecera @code{Content-Encoding}. Recomendamos ejecutar @command{guix-daemon} con @option{--log-compression=gzip} ya que los navegadores Web pueden extraer el contenido automáticamente, lo cual no es el caso con la compresión bzip2." #. type: item -#: guix-git/doc/guix.texi:13567 +#: guix-git/doc/guix.texi:13924 #, no-wrap msgid "--port=@var{port}" msgstr "--port=@var{puerto}" #. type: itemx -#: guix-git/doc/guix.texi:13568 +#: guix-git/doc/guix.texi:13925 #, no-wrap msgid "-p @var{port}" msgstr "-p @var{puerto}" #. type: table -#: guix-git/doc/guix.texi:13570 +#: guix-git/doc/guix.texi:13927 msgid "Listen for HTTP requests on @var{port}." msgstr "Escucha peticiones HTTP en @var{puerto}." #. type: item -#: guix-git/doc/guix.texi:13571 +#: guix-git/doc/guix.texi:13928 #, no-wrap msgid "--listen=@var{host}" msgstr "--listen=@var{dirección}" #. type: table -#: guix-git/doc/guix.texi:13574 +#: guix-git/doc/guix.texi:13931 msgid "Listen on the network interface for @var{host}. The default is to accept connections from any interface." msgstr "Escucha en la interfaz de red de la @var{dirección}. El comportamiento predeterminado es aceptar conexiones de cualquier interfaz." #. type: table -#: guix-git/doc/guix.texi:13579 +#: guix-git/doc/guix.texi:13936 msgid "Change privileges to @var{user} as soon as possible---i.e., once the server socket is open and the signing key has been read." msgstr "Cambia los privilegios a los de @var{usuaria} tan pronto como sea posible---es decir, una vez el socket del servidor esté abierto y la clave de firma haya sido leída." #. type: item -#: guix-git/doc/guix.texi:13580 +#: guix-git/doc/guix.texi:13937 #, no-wrap msgid "--compression[=@var{method}[:@var{level}]]" msgstr "--compression[=@var{método}[:@var{nivel}]]" #. type: itemx -#: guix-git/doc/guix.texi:13581 +#: guix-git/doc/guix.texi:13938 #, no-wrap msgid "-C [@var{method}[:@var{level}]]" msgstr "-C [@var{método}[:@var{nivel}]]" #. type: table -#: guix-git/doc/guix.texi:13585 +#: guix-git/doc/guix.texi:13942 #, fuzzy msgid "Compress data using the given @var{method} and @var{level}. @var{method} is one of @code{lzip}, @code{zstd}, and @code{gzip}; when @var{method} is omitted, @code{gzip} is used." msgstr "Comprime los datos usando el @var{método} y @var{nivel} proporcionados. @var{método} es o bien @code{lzip} o bien @code{gzip}; cuando @var{método} se omite, se usa @code{gzip}." #. type: table -#: guix-git/doc/guix.texi:13589 +#: guix-git/doc/guix.texi:13946 msgid "When @var{level} is zero, disable compression. The range 1 to 9 corresponds to different compression levels: 1 is the fastest, and 9 is the best (CPU-intensive). The default is 3." msgstr "Cuando el @var{nivel} es cero, desactiva la compresión. El rango 1 a 9 corresponde a distintos niveles de compresión gzip: 1 es el más rápido, y 9 es el mejor (intensivo a nivel de CPU). El valor predeterminado es 3." #. type: table -#: guix-git/doc/guix.texi:13596 +#: guix-git/doc/guix.texi:13953 #, fuzzy msgid "Usually, @code{lzip} compresses noticeably better than @code{gzip} for a small increase in CPU usage; see @uref{https://nongnu.org/lzip/lzip_benchmark.html,benchmarks on the lzip Web page}. However, @code{lzip} achieves low decompression throughput (on the order of 50@tie{}MiB/s on modern hardware), which can be a bottleneck for someone who downloads over a fast network connection." msgstr "Habitualmente @code{lzip} comprime notablemente mejor que @code{gzip} a cambio de un pequeño incremento en el uso del procesador; véase @uref{https://nongnu.org/lzip/lzip_benchmark.html,las pruebas en la página web de lzip}." #. type: table -#: guix-git/doc/guix.texi:13600 +#: guix-git/doc/guix.texi:13957 msgid "The compression ratio of @code{zstd} is between that of @code{lzip} and that of @code{gzip}; its main advantage is a @uref{https://facebook.github.io/zstd/,high decompression speed}." msgstr "" # FUZZY #. type: table -#: guix-git/doc/guix.texi:13609 +#: guix-git/doc/guix.texi:13966 msgid "Unless @option{--cache} is used, compression occurs on the fly and the compressed streams are not cached. Thus, to reduce load on the machine that runs @command{guix publish}, it may be a good idea to choose a low compression level, to run @command{guix publish} behind a caching proxy, or to use @option{--cache}. Using @option{--cache} has the advantage that it allows @command{guix publish} to add @code{Content-Length} HTTP header to its responses." msgstr "A menos que se use @option{--cache}, la compresión ocurre al vuelo y los flujos comprimidos no se almacenan en caché. Por tanto, para reducir la carga en la máquina que ejecuta @command{guix publish}, puede ser una buena idea elegir un nivel de compresión bajo, ejecutar @command{guix publish} detrás de una pasarela con caché o usar @option{--cache}. El uso de @option{--cache} tiene la ventaja de que permite a @command{guix publish} añadir la cabecera HTTP @code{Content-Length} a sus respuestas." #. type: table -#: guix-git/doc/guix.texi:13614 +#: guix-git/doc/guix.texi:13971 msgid "This option can be repeated, in which case every substitute gets compressed using all the selected methods, and all of them are advertised. This is useful when users may not support all the compression methods: they can select the one they support." msgstr "Se puede repetir esta opción, en cuyo caso cada sustitución se comprime usando todos los métodos seleccionados, y todos son anunciados. Esto es útil cuando las usuarias pueden no implementar todos los métodos de compresión: pueden seleccionar el que implementan." #. type: item -#: guix-git/doc/guix.texi:13615 +#: guix-git/doc/guix.texi:13972 #, no-wrap msgid "--cache=@var{directory}" msgstr "--cache=@var{directorio}" #. type: itemx -#: guix-git/doc/guix.texi:13616 +#: guix-git/doc/guix.texi:13973 #, no-wrap msgid "-c @var{directory}" msgstr "-c @var{directorio}" # FUZZY #. type: table -#: guix-git/doc/guix.texi:13619 +#: guix-git/doc/guix.texi:13976 msgid "Cache archives and meta-data (@code{.narinfo} URLs) to @var{directory} and only serve archives that are in cache." msgstr "Almacena en caché los archivos y metadatos (URL @code{.narinfo}) en @var{directorio} y únicamente proporciona archivos que están en la caché." #. type: table -#: guix-git/doc/guix.texi:13627 +#: guix-git/doc/guix.texi:13984 msgid "When this option is omitted, archives and meta-data are created on-the-fly. This can reduce the available bandwidth, especially when compression is enabled, since this may become CPU-bound. Another drawback of the default mode is that the length of archives is not known in advance, so @command{guix publish} does not add a @code{Content-Length} HTTP header to its responses, which in turn prevents clients from knowing the amount of data being downloaded." msgstr "Cuando se omite esta opción, los archivos y metadatos se crean al vuelo. Esto puede reducir el ancho de banda disponible, especialmente cuando la compresión está activa, ya que se puede llegar al límite de la CPU. Otra desventaja del modo predeterminado es que la longitud de los archivos no se conoce con anterioridad, por lo que @command{guix publish} no puede añadir la cabecera HTTP @code{Content-Length} a sus respuestas, lo que a su vez previene que los clientes conozcan la cantidad de datos a descargar." #. type: table -#: guix-git/doc/guix.texi:13635 +#: guix-git/doc/guix.texi:13992 msgid "Conversely, when @option{--cache} is used, the first request for a store item (@i{via} a @code{.narinfo} URL) triggers a background process to @dfn{bake} the archive---computing its @code{.narinfo} and compressing the archive, if needed. Once the archive is cached in @var{directory}, subsequent requests succeed and are served directly from the cache, which guarantees that clients get the best possible bandwidth." msgstr "De manera contraria, cuando se usa @option{--cache}, la primera petición de un elemento del almacén (a través de una URL @code{.narinfo}) inicia un proceso en segundo plano para @dfn{cocinar} el archivo---calcular su @code{.narinfo} y comprimirlo, en caso necesario. Una vez el archivo está alojado en la caché de @var{directorio}, las siguientes peticiones obtendrán un resultado satisfactorio y se ofrecerá el contenido directamente desde la caché, lo que garantiza que los clientes obtienen el mejor ancho de banda posible." #. type: table -#: guix-git/doc/guix.texi:13642 +#: guix-git/doc/guix.texi:13999 msgid "That first @code{.narinfo} request nonetheless returns 200, provided the requested store item is ``small enough'', below the cache bypass threshold---see @option{--cache-bypass-threshold} below. That way, clients do not have to wait until the archive is baked. For larger store items, the first @code{.narinfo} request returns 404, meaning that clients have to wait until the archive is baked." msgstr "La primera petción de @code{.narinfo} devuelve no obstante el código 200, en el caso de que el elemento del almacén sea ``lo suficientemente pequeño'', es decir que su tamaño sea inferior al límite de bajo el que se ignora la caché---véase la opción @option{--cache-bypass-threshold} a continuación. De este modo, los clientes no deben esperar hasta que el archivo se haya cocinado. Con elementos del almacén de mayor tamaño la primera petición @code{.narinfo} devuelve el código 404, lo que significa que los clientes deben esperar hasta que el archivo se haya cocinado." #. type: table -#: guix-git/doc/guix.texi:13646 +#: guix-git/doc/guix.texi:14003 msgid "The ``baking'' process is performed by worker threads. By default, one thread per CPU core is created, but this can be customized. See @option{--workers} below." msgstr "El proceso de ``cocinado'' se realiza por hilos de trabajo. Por defecto, se crea un hilo por núcleo de la CPU, pero puede ser personalizado. Véase @option{--workers} a continuación." #. type: table -#: guix-git/doc/guix.texi:13649 +#: guix-git/doc/guix.texi:14006 msgid "When @option{--ttl} is used, cached entries are automatically deleted when they have expired." msgstr "Cuando se usa @option{--ttl}, las entradas en caché se borran automáticamente cuando hayan expirado." #. type: item -#: guix-git/doc/guix.texi:13650 +#: guix-git/doc/guix.texi:14007 #, no-wrap msgid "--workers=@var{N}" msgstr "--workers=@var{N}" #. type: table -#: guix-git/doc/guix.texi:13653 +#: guix-git/doc/guix.texi:14010 msgid "When @option{--cache} is used, request the allocation of @var{N} worker threads to ``bake'' archives." msgstr "Cuando se usa @option{--cache}, solicita la creación de @var{N} hilos de trabajo para ``cocinar'' archivos." #. type: item -#: guix-git/doc/guix.texi:13654 +#: guix-git/doc/guix.texi:14011 #, no-wrap msgid "--ttl=@var{ttl}" msgstr "--ttl=@var{ttl}" @@ -26046,135 +26736,135 @@ msgstr "--ttl=@var{ttl}" # FUZZY # TODO: ¿Habría que indicar que la duración es en inglés? #. type: table -#: guix-git/doc/guix.texi:13658 +#: guix-git/doc/guix.texi:14015 msgid "Produce @code{Cache-Control} HTTP headers that advertise a time-to-live (TTL) of @var{ttl}. @var{ttl} must denote a duration: @code{5d} means 5 days, @code{1m} means 1 month, and so on." msgstr "Produce cabeceras HTTP @code{Cache-Control} que anuncian un tiempo-de-vida (TTL) de @var{ttl}. @var{ttl} debe indicar una duración: @code{5d} significa 5 días, @code{1m} significa un mes, etc." # FUZZY #. type: table -#: guix-git/doc/guix.texi:13663 +#: guix-git/doc/guix.texi:14020 msgid "This allows the user's Guix to keep substitute information in cache for @var{ttl}. However, note that @code{guix publish} does not itself guarantee that the store items it provides will indeed remain available for as long as @var{ttl}." msgstr "Esto permite a la usuaria de Guix mantener información de sustituciones en la caché durante @var{ttl}. No obstante, fíjese que @code{guix publish} no garantiza en sí que los elementos del almacén que proporciona de hecho permanezcan disponibles hasta que @var{ttl} expire." #. type: table -#: guix-git/doc/guix.texi:13667 +#: guix-git/doc/guix.texi:14024 msgid "Additionally, when @option{--cache} is used, cached entries that have not been accessed for @var{ttl} and that no longer have a corresponding item in the store, may be deleted." msgstr "Adicionalmente, cuando se usa @option{--cache}, las entradas en caché que no hayan sido accedidas en @var{ttl} y no tengan un elemento correspondiente en el almacén pueden ser borradas." #. type: item -#: guix-git/doc/guix.texi:13668 +#: guix-git/doc/guix.texi:14025 #, fuzzy, no-wrap #| msgid "--ttl=@var{ttl}" msgid "--negative-ttl=@var{ttl}" msgstr "--ttl=@var{ttl}" #. type: table -#: guix-git/doc/guix.texi:13673 +#: guix-git/doc/guix.texi:14030 msgid "Similarly produce @code{Cache-Control} HTTP headers to advertise the time-to-live (TTL) of @emph{negative} lookups---missing store items, for which the HTTP 404 code is returned. By default, no negative TTL is advertised." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13677 +#: guix-git/doc/guix.texi:14034 msgid "This parameter can help adjust server load and substitute latency by instructing cooperating clients to be more or less patient when a store item is missing." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13678 +#: guix-git/doc/guix.texi:14035 #, no-wrap msgid "--cache-bypass-threshold=@var{size}" msgstr "--cache-bypass-threshold=@var{tamaño}" #. type: table -#: guix-git/doc/guix.texi:13683 +#: guix-git/doc/guix.texi:14040 msgid "When used in conjunction with @option{--cache}, store items smaller than @var{size} are immediately available, even when they are not yet in cache. @var{size} is a size in bytes, or it can be suffixed by @code{M} for megabytes and so on. The default is @code{10M}." msgstr "Cuando se usa en conjunto con la opción @option{--cache}, los elementos del almacén cuyo tamaño sea inferior a @var{tamaño} están disponibles de manera inmediata, incluso cuando no están todavía en la caché. @var{tamaño} es el número de bytes, o se puedem usar sufijos como @code{M} para megabytes, etcétera. El valor predeterminado es @code{10M}." #. type: table -#: guix-git/doc/guix.texi:13688 +#: guix-git/doc/guix.texi:14045 msgid "``Cache bypass'' allows you to reduce the publication delay for clients at the expense of possibly additional I/O and CPU use on the server side: depending on the client access patterns, those store items can end up being baked several times until a copy is available in cache." msgstr "La opción de omisión de la cache le permite reducir la latencia de publicación a los clientes a expensas de un posible incremento en el uso de E/S y procesador en el lado del servidor: dependiendo de los patrones de acceso de los clientes, dichos elementos del almacén pueden ser cocinados varias veces hasta que una copia se encuentre disponible en la caché." #. type: table -#: guix-git/doc/guix.texi:13692 +#: guix-git/doc/guix.texi:14049 msgid "Increasing the threshold may be useful for sites that have few users, or to guarantee that users get substitutes even for store items that are not popular." msgstr "Incrementar el valor límite puede ser útil para servidores que tengan pocas usuarias, o para garantizar que dichas usuarias obtienen sustituciones incluso con elementos del almacén que no son populares." #. type: item -#: guix-git/doc/guix.texi:13693 +#: guix-git/doc/guix.texi:14050 #, no-wrap msgid "--nar-path=@var{path}" msgstr "--nar-path=@var{ruta}" # TODO: Comprobar #. type: table -#: guix-git/doc/guix.texi:13696 +#: guix-git/doc/guix.texi:14053 msgid "Use @var{path} as the prefix for the URLs of ``nar'' files (@pxref{Invoking guix archive, normalized archives})." msgstr "Usa @var{ruta} como el prefijo para las URL de los archivos ``nar'' (@pxref{Invoking guix archive, archivadores normalizados})." #. type: table -#: guix-git/doc/guix.texi:13700 +#: guix-git/doc/guix.texi:14057 msgid "By default, nars are served at a URL such as @code{/nar/gzip/@dots{}-coreutils-8.25}. This option allows you to change the @code{/nar} part to @var{path}." msgstr "Por defecto, los archivos nar se proporcionan en una URL como @code{/nar/gzip/@dots{}-coreutils-8.25}. Esta opción le permite cambiar la parte @code{/nar} por @var{ruta}." #. type: item -#: guix-git/doc/guix.texi:13701 +#: guix-git/doc/guix.texi:14058 #, no-wrap msgid "--public-key=@var{file}" msgstr "--public-key=@var{archivo}" #. type: itemx -#: guix-git/doc/guix.texi:13702 +#: guix-git/doc/guix.texi:14059 #, no-wrap msgid "--private-key=@var{file}" msgstr "--private-key=@var{archivo}" #. type: table -#: guix-git/doc/guix.texi:13705 guix-git/doc/guix.texi:29141 -#: guix-git/doc/guix.texi:29178 +#: guix-git/doc/guix.texi:14062 guix-git/doc/guix.texi:29478 +#: guix-git/doc/guix.texi:29515 msgid "Use the specific @var{file}s as the public/private key pair used to sign the store items being published." msgstr "Usa los @var{archivo}s específicos como el par de claves pública y privada usadas para firmar los elementos del almacén publicados." #. type: table -#: guix-git/doc/guix.texi:13712 +#: guix-git/doc/guix.texi:14069 msgid "The files must correspond to the same key pair (the private key is used for signing and the public key is merely advertised in the signature metadata). They must contain keys in the canonical s-expression format as produced by @command{guix archive --generate-key} (@pxref{Invoking guix archive}). By default, @file{/etc/guix/signing-key.pub} and @file{/etc/guix/signing-key.sec} are used." msgstr "Los archivos deben corresponder al mismo par de claves (la clave privada se usa para la firma y la clave pública simplemente se anuncia en los metadatos de la firma). Deben contener claves en el formato canónico de expresiones-S como el producido por @command{guix archive --generate-key} (@pxref{Invoking guix archive}). Por defecto, se usan @file{/etc/guix/signing-key.pub} y @file{/etc/guix/signing-key.sec}." #. type: item -#: guix-git/doc/guix.texi:13713 +#: guix-git/doc/guix.texi:14070 #, no-wrap msgid "--repl[=@var{port}]" msgstr "--repl[=@var{puerto}]" #. type: itemx -#: guix-git/doc/guix.texi:13714 +#: guix-git/doc/guix.texi:14071 #, no-wrap msgid "-r [@var{port}]" msgstr "-r [@var{puerto}]" #. type: table -#: guix-git/doc/guix.texi:13718 +#: guix-git/doc/guix.texi:14075 msgid "Spawn a Guile REPL server (@pxref{REPL Servers,,, guile, GNU Guile Reference Manual}) on @var{port} (37146 by default). This is used primarily for debugging a running @command{guix publish} server." msgstr "Lanza un servidor REPL Guile (@pxref{REPL Servers,,, guile, GNU Guile Reference Manual}) en @var{puerto} (37146 por defecto). Esto se usa principalmente para la depuración de un servidor @command{guix publish} en ejecución." #. type: Plain text -#: guix-git/doc/guix.texi:13724 +#: guix-git/doc/guix.texi:14081 msgid "Enabling @command{guix publish} on Guix System is a one-liner: just instantiate a @code{guix-publish-service-type} service in the @code{services} field of the @code{operating-system} declaration (@pxref{guix-publish-service-type, @code{guix-publish-service-type}})." msgstr "Activar @command{guix publish} en el sistema Guix consiste en solo una línea: simplemente instancie un servicio @code{guix-publish-service-type} en el campo @code{services} de su declaración del sistema operativo @code{operating-system} (@pxref{guix-publish-service-type, @code{guix-publish-service-type}})" # FUZZY # MAAV (TODO): foreign distro #. type: Plain text -#: guix-git/doc/guix.texi:13727 +#: guix-git/doc/guix.texi:14084 msgid "If you are instead running Guix on a ``foreign distro'', follow these instructions:" msgstr "Si en vez de eso ejecuta Guix en una distribución distinta, siga estas instrucciones:" #. type: itemize -#: guix-git/doc/guix.texi:13731 +#: guix-git/doc/guix.texi:14088 msgid "If your host distro uses the systemd init system:" msgstr "Si su distribución anfitriona usa el sistema de inicio systemd:" #. type: example -#: guix-git/doc/guix.texi:13736 +#: guix-git/doc/guix.texi:14093 #, no-wrap msgid "" "# ln -s ~root/.guix-profile/lib/systemd/system/guix-publish.service \\\n" @@ -26186,7 +26876,7 @@ msgstr "" "# systemctl start guix-publish && systemctl enable guix-publish\n" #. type: example -#: guix-git/doc/guix.texi:13744 +#: guix-git/doc/guix.texi:14101 #, no-wrap msgid "" "# ln -s ~root/.guix-profile/lib/upstart/system/guix-publish.conf /etc/init/\n" @@ -26196,60 +26886,60 @@ msgstr "" "# start guix-publish\n" #. type: itemize -#: guix-git/doc/guix.texi:13748 +#: guix-git/doc/guix.texi:14105 msgid "Otherwise, proceed similarly with your distro's init system." msgstr "En otro caso, proceda de forma similar con el sistema de inicio de su distribución." #. type: section -#: guix-git/doc/guix.texi:13751 +#: guix-git/doc/guix.texi:14108 #, no-wrap msgid "Invoking @command{guix challenge}" msgstr "Invocación de @command{guix challenge}" #. type: cindex -#: guix-git/doc/guix.texi:13754 +#: guix-git/doc/guix.texi:14111 #, no-wrap msgid "verifiable builds" msgstr "construcciones verificables" #. type: command{#1} -#: guix-git/doc/guix.texi:13755 +#: guix-git/doc/guix.texi:14112 #, no-wrap msgid "guix challenge" msgstr "guix challenge" # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:13756 +#: guix-git/doc/guix.texi:14113 #, no-wrap msgid "challenge" msgstr "reto (challenge)" #. type: Plain text -#: guix-git/doc/guix.texi:13761 +#: guix-git/doc/guix.texi:14118 msgid "Do the binaries provided by this server really correspond to the source code it claims to build? Is a package build process deterministic? These are the questions the @command{guix challenge} command attempts to answer." msgstr "¿Los binarios que proporciona este servidor realmente corresponden al código fuente que dice construir? ¿Es determinista el proceso de construcción de un paquete? Estas son las preguntas que la orden @command{guix challenge} intenta responder." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:13769 +#: guix-git/doc/guix.texi:14126 msgid "The former is obviously an important question: Before using a substitute server (@pxref{Substitutes}), one had better @emph{verify} that it provides the right binaries, and thus @emph{challenge} it. The latter is what enables the former: If package builds are deterministic, then independent builds of the package should yield the exact same result, bit for bit; if a server provides a binary different from the one obtained locally, it may be either corrupt or malicious." msgstr "La primera es obviamente una cuestión importante: antes de usar un servidor de sustituciones (@pxref{Substitutes}), es importante haber @emph{verificado} que proporciona los binarios correctos, y por tanto @emph{ponerlo a prueba}@footnote{NdT: challenge en inglés.}. La segunda es lo que permite la primera: si las construcciones de los paquetes son deterministas, construcciones independientes deberían emitir el mismo resultado, bit a bit; si el servidor proporciona un binario diferente al obtenido localmente, o bien está corrupto o bien tiene intenciones perniciosas." #. type: Plain text -#: guix-git/doc/guix.texi:13778 +#: guix-git/doc/guix.texi:14135 msgid "We know that the hash that shows up in @file{/gnu/store} file names is the hash of all the inputs of the process that built the file or directory---compilers, libraries, build scripts, etc. (@pxref{Introduction}). Assuming deterministic build processes, one store file name should map to exactly one build output. @command{guix challenge} checks whether there is, indeed, a single mapping by comparing the build outputs of several independent builds of any given store item." msgstr "Sabemos que el hash que se muestra en los nombres de archivo en @file{/gnu/store} es el hash de todas las entradas del proceso que construyó el archivo o directorio---compiladores, bibliotecas, guiones de construcción, etc. (@pxref{Introduction}). Asumiendo procesos de construcción deterministas, un nombre de archivo del almacén debe corresponder exactamente a una salida de construcción. @command{guix challenge} comprueba si existe, realmente, una asociación unívoca comparando la salida de la construcción de varias construcciones independientes de cualquier elemento del almacén proporcionado." #. type: Plain text -#: guix-git/doc/guix.texi:13780 +#: guix-git/doc/guix.texi:14137 msgid "The command output looks like this:" msgstr "La salida de la orden muestra algo así:" # FUZZY # TODO: Actualizar cuando se traduzca guix #. type: smallexample -#: guix-git/doc/guix.texi:13792 +#: guix-git/doc/guix.texi:14149 #, fuzzy, no-wrap #| msgid "" #| "$ guix challenge --substitute-urls=\"https://@value{SUBSTITUTE-SERVER} https://guix.example.org\"\n" @@ -26289,7 +26979,7 @@ msgstr "" "\n" #. type: smallexample -#: guix-git/doc/guix.texi:13799 +#: guix-git/doc/guix.texi:14156 #, fuzzy, no-wrap #| msgid "" #| "/gnu/store/@dots{}-git-2.5.0 contents differ:\n" @@ -26317,7 +27007,7 @@ msgstr "" "\n" #. type: smallexample -#: guix-git/doc/guix.texi:13806 +#: guix-git/doc/guix.texi:14163 #, fuzzy, no-wrap #| msgid "" #| "/gnu/store/@dots{}-pius-2.1.1 contents differ:\n" @@ -26345,7 +27035,7 @@ msgstr "" "\n" #. type: smallexample -#: guix-git/doc/guix.texi:13808 +#: guix-git/doc/guix.texi:14165 #, no-wrap msgid "" "@dots{}\n" @@ -26355,7 +27045,7 @@ msgstr "" "\n" #. type: smallexample -#: guix-git/doc/guix.texi:13813 +#: guix-git/doc/guix.texi:14170 #, no-wrap msgid "" "6,406 store items were analyzed:\n" @@ -26369,30 +27059,30 @@ msgstr "" " - 1,132 (17.7%) no arrojaron resultados concluyentes\n" #. type: Plain text -#: guix-git/doc/guix.texi:13821 +#: guix-git/doc/guix.texi:14178 msgid "In this example, @command{guix challenge} first scans the store to determine the set of locally-built derivations---as opposed to store items that were downloaded from a substitute server---and then queries all the substitute servers. It then reports those store items for which the servers obtained a result different from the local build." msgstr "En este ejemplo, @command{guix challenge} primero recorre el almacén para determinar el conjunto de derivaciones construidas localmente---en oposición a elementos del almacén que fueron descargados de un servidor de sustituciones---y consulta a todos los servidores de sustituciones. Una vez hecho informa de los elementos del almacén para los cuales los servidores obtuvieron un resultado diferente de el obtenido en la construcción local." #. type: cindex -#: guix-git/doc/guix.texi:13822 +#: guix-git/doc/guix.texi:14179 #, no-wrap msgid "non-determinism, in package builds" msgstr "no-determinismo, en la construcción de paquetes" #. type: Plain text -#: guix-git/doc/guix.texi:13833 +#: guix-git/doc/guix.texi:14190 #, fuzzy #| msgid "As an example, @code{guix.example.org} always gets a different answer. Conversely, @code{@value{SUBSTITUTE-SERVER}} agrees with local builds, except in the case of Git. This might indicate that the build process of Git is non-deterministic, meaning that its output varies as a function of various things that Guix does not fully control, in spite of building packages in isolated environments (@pxref{Features}). Most common sources of non-determinism include the addition of timestamps in build results, the inclusion of random numbers, and directory listings sorted by inode number. See @uref{https://reproducible-builds.org/docs/}, for more information." msgid "As an example, @code{guix.example.org} always gets a different answer. Conversely, @code{@value{SUBSTITUTE-SERVER-1}} agrees with local builds, except in the case of Git. This might indicate that the build process of Git is non-deterministic, meaning that its output varies as a function of various things that Guix does not fully control, in spite of building packages in isolated environments (@pxref{Features}). Most common sources of non-determinism include the addition of timestamps in build results, the inclusion of random numbers, and directory listings sorted by inode number. See @uref{https://reproducible-builds.org/docs/}, for more information." msgstr "Como un ejemplo, @code{guix.example.org} siempre obtiene una respuesta diferente. Por otro modo, @code{@value{SUBSTITUTE-SERVER}} coincide con las construcciones locales, excepto en el caso de Git. Esto puede indicar que el proceso de construcción de Git no es determinista, lo que significa que su salida varia en función de varias cosas que Guix no controla completamente, aunque la construcción de paquetes se realice en entornos aislados (@pxref{Features}). Las fuentes más comunes de indeterminismo incluyen la adición de marcas de tiempo en los resultados de la construcción, la inclusión de números aleatorios y las enumeraciones de directorios ordenadas por número de nodos-i. Véase @uref{https://reproducible-builds.org/docs/} para más información." #. type: Plain text -#: guix-git/doc/guix.texi:13836 +#: guix-git/doc/guix.texi:14193 msgid "To find out what is wrong with this Git binary, the easiest approach is to run:" msgstr "Para encontrar cuál es el problema con este binario Git, la aproximación más fácil es ejecutar:" #. type: example -#: guix-git/doc/guix.texi:13841 +#: guix-git/doc/guix.texi:14198 #, fuzzy, no-wrap #| msgid "" #| "guix challenge git \\\n" @@ -26408,17 +27098,17 @@ msgstr "" " --substitute-urls=\"https://@value{SUBSTITUTE-SERVER} https://guix.example.org\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:13845 +#: guix-git/doc/guix.texi:14202 msgid "This automatically invokes @command{diffoscope}, which displays detailed information about files that differ." msgstr "Esto invoca automáticamente @command{diffoscope}, que muestra información detallada sobre los archivos que son diferentes." #. type: Plain text -#: guix-git/doc/guix.texi:13848 +#: guix-git/doc/guix.texi:14205 msgid "Alternatively, we can do something along these lines (@pxref{Invoking guix archive}):" msgstr "De manera alternativa, se puede hacer algo parecido a esto (@pxref{Invoking guix archive}):" #. type: example -#: guix-git/doc/guix.texi:13853 +#: guix-git/doc/guix.texi:14210 #, fuzzy, no-wrap #| msgid "" #| "$ wget -q -O - https://@value{SUBSTITUTE-SERVER}/nar/lzip/@dots{}-git-2.5.0 \\\n" @@ -26434,165 +27124,165 @@ msgstr "" "$ diff -ur --no-dereference /gnu/store/@dots{}-git.2.5.0 /tmp/git\n" #. type: Plain text -#: guix-git/doc/guix.texi:13862 +#: guix-git/doc/guix.texi:14219 #, fuzzy #| msgid "This command shows the difference between the files resulting from the local build, and the files resulting from the build on @code{@value{SUBSTITUTE-SERVER}} (@pxref{Overview, Comparing and Merging Files,, diffutils, Comparing and Merging Files}). The @command{diff} command works great for text files. When binary files differ, a better option is @uref{https://diffoscope.org/, Diffoscope}, a tool that helps visualize differences for all kinds of files." msgid "This command shows the difference between the files resulting from the local build, and the files resulting from the build on @code{@value{SUBSTITUTE-SERVER-1}} (@pxref{Overview, Comparing and Merging Files,, diffutils, Comparing and Merging Files}). The @command{diff} command works great for text files. When binary files differ, a better option is @uref{https://diffoscope.org/, Diffoscope}, a tool that helps visualize differences for all kinds of files." msgstr "Esta orden muestra la diferencia entre los archivos resultantes de la construcción local y los archivos resultantes de la construcción en @code{@value{SUBSTITUTE-SERVER}} (@pxref{Overview, Comparing and Merging Files,, diffutils, Comparing and Merging Files}). La orden @command{diff} funciona muy bien en archivos de texto. Cuando son binarios los archivos diferentes, una opción mejor es @uref{https://diffoscope.org/,Diffoscope}, una herramienta que ayuda en la visualización de diferencias en todo tipo de archivos." #. type: Plain text -#: guix-git/doc/guix.texi:13870 +#: guix-git/doc/guix.texi:14227 msgid "Once you have done that work, you can tell whether the differences are due to a non-deterministic build process or to a malicious server. We try hard to remove sources of non-determinism in packages to make it easier to verify substitutes, but of course, this is a process that involves not just Guix, but a large part of the free software community. In the meantime, @command{guix challenge} is one tool to help address the problem." msgstr "Una vez haya realizado este trabajo, puede determinar si las diferencias son debidas a un procedimiento de construcción no-determinista o a un servidor con intenciones ocultas. Intentamos duramente eliminar las fuentes de indeterminismo en los paquetes para facilitar la verificación de sustituciones, pero por supuesto es un proceso que implica no solo a Guix, sino a una gran parte de la comunidad del software libre. Entre tanto, @command{guix challenge} es una herramienta para ayudar a afrontar el problema." #. type: Plain text -#: guix-git/doc/guix.texi:13874 +#: guix-git/doc/guix.texi:14231 #, fuzzy #| msgid "If you are writing packages for Guix, you are encouraged to check whether @code{@value{SUBSTITUTE-SERVER}} and other substitute servers obtain the same build result as you did with:" msgid "If you are writing packages for Guix, you are encouraged to check whether @code{@value{SUBSTITUTE-SERVER-1}} and other substitute servers obtain the same build result as you did with:" msgstr "Si esta escribiendo paquetes para Guix, le recomendamos que compruebe si @code{@value{SUBSTITUTE-SERVER}} y otros servidores de sustituciones obtienen el mismo resultado de construcción que el obtenido por usted:" #. type: example -#: guix-git/doc/guix.texi:13877 +#: guix-git/doc/guix.texi:14234 #, no-wrap msgid "$ guix challenge @var{package}\n" msgstr "$ guix challenge @var{paquete}\n" #. type: Plain text -#: guix-git/doc/guix.texi:13882 +#: guix-git/doc/guix.texi:14239 msgid "where @var{package} is a package specification such as @code{guile@@2.0} or @code{glibc:debug}." msgstr "donde @var{paquete} es una especificación de paquete como @code{guile@@2.0} o @code{glibc:debug}." #. type: example -#: guix-git/doc/guix.texi:13887 +#: guix-git/doc/guix.texi:14244 #, no-wrap msgid "guix challenge @var{options} [@var{packages}@dots{}]\n" msgstr "guix challenge @var{opciones} [@var{paquetes}@dots{}]\n" #. type: Plain text -#: guix-git/doc/guix.texi:13894 +#: guix-git/doc/guix.texi:14251 msgid "When a difference is found between the hash of a locally-built item and that of a server-provided substitute, or among substitutes provided by different servers, the command displays it as in the example above and its exit code is 2 (other non-zero exit codes denote other kinds of errors)." msgstr "Cuando se encuentra una diferencia entre el hash de un elemento construido localmente y el proporcionado por un servidor de sustituciones; o entre las sustituciones proporcionadas por distintos servidores, esto es mostrado como en el ejemplo previo y el código de salida es 2 (otros valores código de salida distintos de cero denominan otros tipos de error)." #. type: Plain text -#: guix-git/doc/guix.texi:13896 +#: guix-git/doc/guix.texi:14253 msgid "The one option that matters is:" msgstr "La única opción de importancia es:" #. type: table -#: guix-git/doc/guix.texi:13902 +#: guix-git/doc/guix.texi:14259 msgid "Consider @var{urls} the whitespace-separated list of substitute source URLs to compare to." msgstr "Considera @var{urls} la lista separada por espacios de URL de fuentes de sustituciones con las que realizar la comparación." #. type: item -#: guix-git/doc/guix.texi:13903 +#: guix-git/doc/guix.texi:14260 #, no-wrap msgid "--diff=@var{mode}" msgstr "--diff=@var{modo}" #. type: table -#: guix-git/doc/guix.texi:13905 +#: guix-git/doc/guix.texi:14262 msgid "Upon mismatches, show differences according to @var{mode}, one of:" msgstr "Muestra las diferencias encontradas de acuerdo con @var{modo}, uno de los siguientes:" #. type: item -#: guix-git/doc/guix.texi:13907 +#: guix-git/doc/guix.texi:14264 #, no-wrap msgid "@code{simple} (the default)" msgstr "@code{simple} (el predeterminado)" #. type: table -#: guix-git/doc/guix.texi:13909 +#: guix-git/doc/guix.texi:14266 msgid "Show the list of files that differ." msgstr "Muestra la lista de archivos que son diferentes." #. type: code{#1} -#: guix-git/doc/guix.texi:13910 +#: guix-git/doc/guix.texi:14267 #, no-wrap msgid "diffoscope" msgstr "diffoscope" # FUZZY #. type: var{#1} -#: guix-git/doc/guix.texi:13911 +#: guix-git/doc/guix.texi:14268 #, no-wrap msgid "command" msgstr "orden" #. type: table -#: guix-git/doc/guix.texi:13914 +#: guix-git/doc/guix.texi:14271 msgid "Invoke @uref{https://diffoscope.org/, Diffoscope}, passing it two directories whose contents do not match." msgstr "Invoca @uref{https://diffoscope.org/, Diffoscope} y le proporciona los dos directorios cuyo contenido es diferente." #. type: table -#: guix-git/doc/guix.texi:13917 +#: guix-git/doc/guix.texi:14274 msgid "When @var{command} is an absolute file name, run @var{command} instead of Diffoscope." msgstr "Cuando @var{orden} es una ruta absoluta, ejecuta @var{orden} en vez de Diffoscope." #. type: table -#: guix-git/doc/guix.texi:13920 +#: guix-git/doc/guix.texi:14277 msgid "Do not show further details about the differences." msgstr "No muestra más detalles sobre las diferencias." #. type: table -#: guix-git/doc/guix.texi:13925 +#: guix-git/doc/guix.texi:14282 msgid "Thus, unless @option{--diff=none} is passed, @command{guix challenge} downloads the store items from the given substitute servers so that it can compare them." msgstr "Por tanto, a menos que se proporcione @option{--diff=none}, @command{guix challenge} descarga los contenidos de los elementos del almacén de los servidores de sustituciones proporcionados para poder compararlos." #. type: item -#: guix-git/doc/guix.texi:13926 +#: guix-git/doc/guix.texi:14283 #, no-wrap msgid "--verbose" msgstr "--verbose" #. type: itemx -#: guix-git/doc/guix.texi:13927 +#: guix-git/doc/guix.texi:14284 #, no-wrap msgid "-v" msgstr "-v" #. type: table -#: guix-git/doc/guix.texi:13930 +#: guix-git/doc/guix.texi:14287 msgid "Show details about matches (identical contents) in addition to information about mismatches." msgstr "Muestra detalles sobre coincidencias (contenidos idénticos) además de información sobre las discrepancias." #. type: section -#: guix-git/doc/guix.texi:13934 +#: guix-git/doc/guix.texi:14291 #, no-wrap msgid "Invoking @command{guix copy}" msgstr "Invocación de @command{guix copy}" #. type: cindex -#: guix-git/doc/guix.texi:13936 +#: guix-git/doc/guix.texi:14293 #, no-wrap msgid "copy, of store items, over SSH" msgstr "copiar, elementos del almacén, por SSH" #. type: cindex -#: guix-git/doc/guix.texi:13937 +#: guix-git/doc/guix.texi:14294 #, no-wrap msgid "SSH, copy of store items" msgstr "SSH, copiar elementos del almacén" #. type: cindex -#: guix-git/doc/guix.texi:13938 +#: guix-git/doc/guix.texi:14295 #, no-wrap msgid "sharing store items across machines" msgstr "compartir elementos del almacén entre máquinas" #. type: cindex -#: guix-git/doc/guix.texi:13939 +#: guix-git/doc/guix.texi:14296 #, no-wrap msgid "transferring store items across machines" msgstr "transferir elementos del almacén entre máquinas" #. type: Plain text -#: guix-git/doc/guix.texi:13946 +#: guix-git/doc/guix.texi:14303 msgid "The @command{guix copy} command copies items from the store of one machine to that of another machine over a secure shell (SSH) connection@footnote{This command is available only when Guile-SSH was found. @xref{Requirements}, for details.}. For example, the following command copies the @code{coreutils} package, the user's profile, and all their dependencies over to @var{host}, logged in as @var{user}:" msgstr "La orden @command{guix copy} copia elementos del almacén de una máquina al de otra a través de una conexión de shell seguro (SSH)@footnote{Esta orden únicamente está disponible cuando ha encontrado Guile-SSH. @xref{Requirements}, para detalles.}. Por ejemplo, la siguiente orden copia el paquete @code{coreutils}, el perfil de la usuaria y todas sus dependencias a @var{dirección}, ingresando en el sistema como @var{usuaria}:" #. type: example -#: guix-git/doc/guix.texi:13950 +#: guix-git/doc/guix.texi:14307 #, fuzzy, no-wrap msgid "" "guix copy --to=@var{user}@@@var{host} \\\n" @@ -26602,17 +27292,17 @@ msgstr "" " coreutils `readlink -f ~/.guix-profile`\n" #. type: Plain text -#: guix-git/doc/guix.texi:13954 +#: guix-git/doc/guix.texi:14311 msgid "If some of the items to be copied are already present on @var{host}, they are not actually sent." msgstr "Si alguno de los elementos del almacén a copiar ya están presentes en @var{dirección}, no se envían realmente." #. type: Plain text -#: guix-git/doc/guix.texi:13957 +#: guix-git/doc/guix.texi:14314 msgid "The command below retrieves @code{libreoffice} and @code{gimp} from @var{host}, assuming they are available there:" msgstr "La siguiente orden obtiene @code{libreoffice} y @code{gimp} de @var{dirección}, asumiendo que estén disponibles allí:" #. type: example -#: guix-git/doc/guix.texi:13960 +#: guix-git/doc/guix.texi:14317 #, no-wrap msgid "guix copy --from=@var{host} libreoffice gimp\n" msgstr "guix copy --from=@var{dirección} libreoffice gimp\n" @@ -26620,180 +27310,180 @@ msgstr "guix copy --from=@var{dirección} libreoffice gimp\n" # FUZZY # MAAV (TODO): Authentication -> ¿identificación aquí? #. type: Plain text -#: guix-git/doc/guix.texi:13965 +#: guix-git/doc/guix.texi:14322 msgid "The SSH connection is established using the Guile-SSH client, which is compatible with OpenSSH: it honors @file{~/.ssh/known_hosts} and @file{~/.ssh/config}, and uses the SSH agent for authentication." msgstr "La conexión SSH se establece usando el cliente Guile-SSH, que es compatible con OpenSSH: tiene en cuenta @file{~/.ssh/known_hosts} y @file{~/.ssh/config}, y usa el agente SSH para la identificación." #. type: Plain text -#: guix-git/doc/guix.texi:13971 +#: guix-git/doc/guix.texi:14328 msgid "The key used to sign items that are sent must be accepted by the remote machine. Likewise, the key used by the remote machine to sign items you are retrieving must be in @file{/etc/guix/acl} so it is accepted by your own daemon. @xref{Invoking guix archive}, for more information about store item authentication." msgstr "La clave usada para firmar los elementos enviados debe estar aceptada por la máquina remota. Del mismo modo, la clave usada por la máquina remota para firmar los elementos recibidos debe estar en @file{/etc/guix/acl} de modo que sea aceptada por su propio daemon. @xref{Invoking guix archive}, para más información sobre la verificación de elementos del almacén." #. type: example -#: guix-git/doc/guix.texi:13976 +#: guix-git/doc/guix.texi:14333 #, no-wrap msgid "guix copy [--to=@var{spec}|--from=@var{spec}] @var{items}@dots{}\n" msgstr "guix copy [--to=@var{spec}|--from=@var{spec}] @var{elementos}@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:13979 +#: guix-git/doc/guix.texi:14336 msgid "You must always specify one of the following options:" msgstr "Siempre debe especificar una de las siguientes opciones:" #. type: item -#: guix-git/doc/guix.texi:13981 +#: guix-git/doc/guix.texi:14338 #, no-wrap msgid "--to=@var{spec}" msgstr "--to=@var{spec}" #. type: itemx -#: guix-git/doc/guix.texi:13982 +#: guix-git/doc/guix.texi:14339 #, no-wrap msgid "--from=@var{spec}" msgstr "--from=@var{spec}" #. type: table -#: guix-git/doc/guix.texi:13986 +#: guix-git/doc/guix.texi:14343 msgid "Specify the host to send to or receive from. @var{spec} must be an SSH spec such as @code{example.org}, @code{charlie@@example.org}, or @code{charlie@@example.org:2222}." msgstr "Especifica la máquina a la que mandar o desde la que recibir. @var{spec} debe ser una especificación SSH como @code{example.org}, @code{carlos@@example.org}, or @code{carlos@@example.org:2222}." #. type: Plain text -#: guix-git/doc/guix.texi:13990 +#: guix-git/doc/guix.texi:14347 msgid "The @var{items} can be either package names, such as @code{gimp}, or store items, such as @file{/gnu/store/@dots{}-idutils-4.6}." msgstr "Los @var{elementos} pueden ser tanto nombres de paquetes, como @code{gimp}, como elementos del almacén, como @file{/gnu/store/@dots{}-idutils-4.6}." #. type: Plain text -#: guix-git/doc/guix.texi:13994 +#: guix-git/doc/guix.texi:14351 msgid "When specifying the name of a package to send, it is first built if needed, unless @option{--dry-run} was specified. Common build options are supported (@pxref{Common Build Options})." msgstr "Cuando se especifica el nombre del paquete a enviar, primero se construye si es necesario, a menos que se use @option{--dry-run}. Se aceptan las opciones comunes de construcción (@pxref{Common Build Options})." #. type: section -#: guix-git/doc/guix.texi:13997 +#: guix-git/doc/guix.texi:14354 #, no-wrap msgid "Invoking @command{guix container}" msgstr "Invocación de @command{guix container}" #. type: command{#1} -#: guix-git/doc/guix.texi:13999 +#: guix-git/doc/guix.texi:14356 #, no-wrap msgid "guix container" msgstr "guix container" #. type: quotation -#: guix-git/doc/guix.texi:14003 +#: guix-git/doc/guix.texi:14360 msgid "As of version @value{VERSION}, this tool is experimental. The interface is subject to radical change in the future." msgstr "En la versión @value{VERSION}, esta herramienta es experimental. La interfaz está sujeta a cambios radicales en el futuro." #. type: Plain text -#: guix-git/doc/guix.texi:14010 +#: guix-git/doc/guix.texi:14367 #, fuzzy #| msgid "The purpose of @command{guix container} is to manipulate processes running within an isolated environment, commonly known as a ``container'', typically created by the @command{guix environment} (@pxref{Invoking guix environment}) and @command{guix system container} (@pxref{Invoking guix system}) commands." msgid "The purpose of @command{guix container} is to manipulate processes running within an isolated environment, commonly known as a ``container'', typically created by the @command{guix shell} (@pxref{Invoking guix shell}) and @command{guix system container} (@pxref{Invoking guix system}) commands." msgstr "El propósito de @command{guix container} es la manipulación de procesos en ejecución dentro de entornos aislados, normalmente conocido como un ``contenedor'', típicamente creado por las órdenes @command{guix environment} (@pxref{Invoking guix environment}) y @command{guix system container} (@pxref{Invoking guix system})." #. type: example -#: guix-git/doc/guix.texi:14015 +#: guix-git/doc/guix.texi:14372 #, no-wrap msgid "guix container @var{action} @var{options}@dots{}\n" msgstr "guix container @var{acción} @var{opciones}@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:14019 +#: guix-git/doc/guix.texi:14376 msgid "@var{action} specifies the operation to perform with a container, and @var{options} specifies the context-specific arguments for the action." msgstr "@var{acción} especifica la operación a realizar con el contenedor, y @var{opcines} especifica los parámetros específicos del contexto para la acción." #. type: Plain text -#: guix-git/doc/guix.texi:14021 +#: guix-git/doc/guix.texi:14378 msgid "The following actions are available:" msgstr "Las siguientes acciones están disponibles:" #. type: item -#: guix-git/doc/guix.texi:14023 +#: guix-git/doc/guix.texi:14380 #, no-wrap msgid "exec" msgstr "exec" #. type: table -#: guix-git/doc/guix.texi:14025 +#: guix-git/doc/guix.texi:14382 msgid "Execute a command within the context of a running container." msgstr "Ejecute una orden en el contexto de un contenedor en ejecución." #. type: table -#: guix-git/doc/guix.texi:14027 +#: guix-git/doc/guix.texi:14384 msgid "The syntax is:" msgstr "La sintaxis es:" #. type: example -#: guix-git/doc/guix.texi:14030 +#: guix-git/doc/guix.texi:14387 #, no-wrap msgid "guix container exec @var{pid} @var{program} @var{arguments}@dots{}\n" msgstr "guix container exec @var{pid} @var{programa} @var{parámetros}@dots{}\n" #. type: table -#: guix-git/doc/guix.texi:14036 +#: guix-git/doc/guix.texi:14393 msgid "@var{pid} specifies the process ID of the running container. @var{program} specifies an executable file name within the root file system of the container. @var{arguments} are the additional options that will be passed to @var{program}." msgstr "@var{pid} especifica el ID del proceso del contenedor en ejecución. @var{programa} especifica el nombre del archivo ejecutable dentro del sistema de archivos raíz del contenedor. @var{parámetros} son opciones adicionales que se pasarán a @var{programa}." #. type: table -#: guix-git/doc/guix.texi:14040 +#: guix-git/doc/guix.texi:14397 msgid "The following command launches an interactive login shell inside a Guix system container, started by @command{guix system container}, and whose process ID is 9001:" msgstr "La siguiente orden lanza un shell interactivo de ingreso al sistema dentro de un contenedor del sistema, iniciado por @command{guix system container}, y cuyo ID de proceso es 9001:" #. type: example -#: guix-git/doc/guix.texi:14043 +#: guix-git/doc/guix.texi:14400 #, no-wrap msgid "guix container exec 9001 /run/current-system/profile/bin/bash --login\n" msgstr "guix container exec 9001 /run/current-system/profile/bin/bash --login\n" #. type: table -#: guix-git/doc/guix.texi:14047 +#: guix-git/doc/guix.texi:14404 msgid "Note that the @var{pid} cannot be the parent process of a container. It must be PID 1 of the container or one of its child processes." msgstr "Fíjese que el @var{pid} no puede ser el proceso creador del contenedor. Debe ser el PID 1 del contenedor o uno de sus procesos hijos." #. type: section -#: guix-git/doc/guix.texi:14051 +#: guix-git/doc/guix.texi:14408 #, no-wrap msgid "Invoking @command{guix weather}" msgstr "Invocación de @command{guix weather}" #. type: Plain text -#: guix-git/doc/guix.texi:14060 +#: guix-git/doc/guix.texi:14417 msgid "Occasionally you're grumpy because substitutes are lacking and you end up building packages by yourself (@pxref{Substitutes}). The @command{guix weather} command reports on substitute availability on the specified servers so you can have an idea of whether you'll be grumpy today. It can sometimes be useful info as a user, but it is primarily useful to people running @command{guix publish} (@pxref{Invoking guix publish})." msgstr "De manera ocasional tendrá un mal día al no estar las sustituciones disponibles y le toque construir los paquetes a usted misma (@pxref{Substitutes}). La orden @command{guix weather} informa de la disponibilidad de sustituciones en los servidores especificados de modo que pueda tener una idea sobre cómo será su día hoy. A veces puede ser una información útil como usuaria, pero es principalmente útil para quienes ejecuten @command{guix publish} (@pxref{Invoking guix publish})." #. type: cindex -#: guix-git/doc/guix.texi:14061 +#: guix-git/doc/guix.texi:14418 #, no-wrap msgid "statistics, for substitutes" msgstr "estadísticas, para sustituciones" #. type: cindex -#: guix-git/doc/guix.texi:14062 +#: guix-git/doc/guix.texi:14419 #, no-wrap msgid "availability of substitutes" msgstr "disponibilidad de sustituciones" #. type: cindex -#: guix-git/doc/guix.texi:14063 +#: guix-git/doc/guix.texi:14420 #, no-wrap msgid "substitute availability" msgstr "disponibilidad de sustituciones" #. type: cindex -#: guix-git/doc/guix.texi:14064 +#: guix-git/doc/guix.texi:14421 #, no-wrap msgid "weather, substitute availability" msgstr "weather, disponibilidad de sustituciones" #. type: Plain text -#: guix-git/doc/guix.texi:14066 +#: guix-git/doc/guix.texi:14423 msgid "Here's a sample run:" msgstr "Esta es una ejecución de ejemplo:" # FUZZY # TODO: Actualizar cuando se traduzca guix #. type: example -#: guix-git/doc/guix.texi:14078 +#: guix-git/doc/guix.texi:14435 #, no-wrap msgid "" "$ guix weather --substitute-urls=https://guix.example.org\n" @@ -26823,7 +27513,7 @@ msgstr "" # FUZZY # TODO: Actualizar cuando se traduzca guix #. type: example -#: guix-git/doc/guix.texi:14088 +#: guix-git/doc/guix.texi:14445 #, no-wrap msgid "" " 9.8% (342 out of 3,470) of the missing items are queued\n" @@ -26847,77 +27537,72 @@ msgstr "" " aarch64-linux: 6.41 builds per hour\n" #. type: cindex -#: guix-git/doc/guix.texi:14090 +#: guix-git/doc/guix.texi:14447 #, no-wrap msgid "continuous integration, statistics" msgstr "integración continua, estadísticas" #. type: Plain text -#: guix-git/doc/guix.texi:14101 +#: guix-git/doc/guix.texi:14458 msgid "As you can see, it reports the fraction of all the packages for which substitutes are available on the server---regardless of whether substitutes are enabled, and regardless of whether this server's signing key is authorized. It also reports the size of the compressed archives (``nars'') provided by the server, the size the corresponding store items occupy in the store (assuming deduplication is turned off), and the server's throughput. The second part gives continuous integration (CI) statistics, if the server supports it. In addition, using the @option{--coverage} option, @command{guix weather} can list ``important'' package substitutes missing on the server (see below)." msgstr "Como puede ver, informa de la fracción de todos los paquetes para los cuales hay sustituciones en el servidor---independientemente de que las sustituciones estén activadas, e independientemente de si la clave de firma del servidor está autorizada. También informa del tamaño de los archivos comprimidos (``nar'') proporcionados por el servidor, el tamaño que los elementos correspondientes del almacén ocupan en el almacén (asumiendo que la deduplicación está apagada) y el caudal de proceso del servidor. La segunda parte proporciona estadísticas de integración continua (CI), si el servidor lo permite. Además, mediante el uso de la opción @option{--coverage}, @command{guix weather} puede enumerar sustituciones de paquetes ``importantes'' que no se encuentren en el servidor (véase más adelante)." #. type: Plain text -#: guix-git/doc/guix.texi:14107 +#: guix-git/doc/guix.texi:14464 msgid "To achieve that, @command{guix weather} queries over HTTP(S) meta-data (@dfn{narinfos}) for all the relevant store items. Like @command{guix challenge}, it ignores signatures on those substitutes, which is innocuous since the command only gathers statistics and cannot install those substitutes." msgstr "Para conseguirlo, @command{guix weather} consulta los metadatos HTTP(S) (@dfn{narinfo}s) de todos los elementos relevantes del almacén. Como @command{guix challenge}, ignora las firmas en esas sustituciones, lo cual es inocuo puesto que la orden únicamente obtiene estadísticas y no puede instalar esas sustituciones." #. type: example -#: guix-git/doc/guix.texi:14112 +#: guix-git/doc/guix.texi:14469 #, no-wrap msgid "guix weather @var{options}@dots{} [@var{packages}@dots{}]\n" msgstr "guix weather @var{opciones}@dots{} [@var{paquetes}@dots{}]\n" #. type: Plain text -#: guix-git/doc/guix.texi:14120 +#: guix-git/doc/guix.texi:14477 msgid "When @var{packages} is omitted, @command{guix weather} checks the availability of substitutes for @emph{all} the packages, or for those specified with @option{--manifest}; otherwise it only considers the specified packages. It is also possible to query specific system types with @option{--system}. @command{guix weather} exits with a non-zero code when the fraction of available substitutes is below 100%." msgstr "Cuando se omite @var{paquetes}, @command{guix weather} comprueba la disponibilidad de sustituciones para @emph{todos} los paquetes, o para aquellos especificados con la opción @option{--manifest}; en otro caso considera únicamente los paquetes especificados. También es posible consultar tipos de sistema específicos con @option{--system}. @command{guix weather} termina con un código de salida distinto a cero cuando la fracción de sustituciones disponibles se encuentra por debajo del 100%." -#. type: Plain text -#: guix-git/doc/guix.texi:14122 -msgid "The available options are listed below." -msgstr "Las opciones disponibles se enumeran a continuación." - #. type: table -#: guix-git/doc/guix.texi:14128 +#: guix-git/doc/guix.texi:14485 msgid "@var{urls} is the space-separated list of substitute server URLs to query. When this option is omitted, the default set of substitute servers is queried." msgstr "@var{urls} es la lista separada por espacios de URL de servidores de sustituciones a consultar. Cuando se omite esta opción, el conjunto predeterminado de servidores de sustituciones es el consultado." #. type: table -#: guix-git/doc/guix.texi:14134 +#: guix-git/doc/guix.texi:14491 msgid "Query substitutes for @var{system}---e.g., @code{aarch64-linux}. This option can be repeated, in which case @command{guix weather} will query substitutes for several system types." msgstr "Consulta sustituciones para @var{sistema}---por ejemplo, @code{aarch64-linux}. Esta opción se puede repetir, en cuyo caso @command{guix weather} consultará las sustituciones para varios tipos de sistema." #. type: table -#: guix-git/doc/guix.texi:14140 +#: guix-git/doc/guix.texi:14497 msgid "Instead of querying substitutes for all the packages, only ask for those specified in @var{file}. @var{file} must contain a @dfn{manifest}, as with the @code{-m} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "En vez de consultar las sustituciones de todos los paquetes, consulta únicamente los especificados en @var{archivo}. @var{archivo} debe contener un @dfn{manifiesto}, como el usado en la opción @code{-m} de @command{guix package} (@pxref{Invoking guix package})." #. type: table -#: guix-git/doc/guix.texi:14143 +#: guix-git/doc/guix.texi:14500 msgid "This option can be repeated several times, in which case the manifests are concatenated." msgstr "Esta opción puede repetirse varias veces, en cuyo caso los manifiestos se concatenan." #. type: item -#: guix-git/doc/guix.texi:14144 +#: guix-git/doc/guix.texi:14501 #, no-wrap msgid "--coverage[=@var{count}]" msgstr "--coverage[=@var{numero}]" #. type: itemx -#: guix-git/doc/guix.texi:14145 +#: guix-git/doc/guix.texi:14502 #, no-wrap msgid "-c [@var{count}]" msgstr "-c [@var{numero}]" # FUZZY #. type: table -#: guix-git/doc/guix.texi:14151 +#: guix-git/doc/guix.texi:14508 msgid "Report on substitute coverage for packages: list packages with at least @var{count} dependents (zero by default) for which substitutes are unavailable. Dependent packages themselves are not listed: if @var{b} depends on @var{a} and @var{a} has no substitutes, only @var{a} is listed, even though @var{b} usually lacks substitutes as well. The result looks like this:" msgstr "Informa de la cobertura de sustituciones para paquetes: enumera paquetes con al menos @var{número} dependientes (cero por omisión) para los cuales no haya sustituciones disponibles. Los paquetes dependientes en sí no se enumeran: si @var{b} depende de @var{a} y @var{a} no tiene sustituciones disponibles, únicamente se muestra @var{a}, aunque @var{b} normalmente no tenga sustituciones tampoco. El resultado es más o menos así:" #. type: example -#: guix-git/doc/guix.texi:14165 +#: guix-git/doc/guix.texi:14522 #, fuzzy, no-wrap #| msgid "" #| "$ guix weather --substitute-urls=@value{SUBSTITUTE-URL} -c 10\n" @@ -26960,42 +27645,42 @@ msgstr "" " @dots{}\n" #. type: table -#: guix-git/doc/guix.texi:14171 +#: guix-git/doc/guix.texi:14528 #, fuzzy msgid "What this example shows is that @code{kcoreaddons} and presumably the 58 packages that depend on it have no substitutes at @code{@value{SUBSTITUTE-SERVER-1}}; likewise for @code{qgpgme} and the 46 packages that depend on it." msgstr "Lo que este ejemplo muestra es que @code{kcoreaddons} y presumiblemente los 58 paquetes que dependen de él no tienen sustituciones disponibles en @code{ci.guix.info}; del mismo modo que @code{qgpgme} y los 46 paquetes que dependen de él." #. type: table -#: guix-git/doc/guix.texi:14175 +#: guix-git/doc/guix.texi:14532 msgid "If you are a Guix developer, or if you are taking care of this build farm, you'll probably want to have a closer look at these packages: they may simply fail to build." msgstr "Si es una desarrolladora Guix, o si se encuentra a cargo de esta granja de construcción, probablemente quiera inspeccionar estos paquetes con más detalle: simplemente puede que su construcción falle." #. type: item -#: guix-git/doc/guix.texi:14176 +#: guix-git/doc/guix.texi:14533 #, no-wrap msgid "--display-missing" msgstr "--display-missing" #. type: table -#: guix-git/doc/guix.texi:14178 +#: guix-git/doc/guix.texi:14535 msgid "Display the list of store items for which substitutes are missing." msgstr "Muestra los elementos del almacén para los que faltan las sustituciones." #. type: section -#: guix-git/doc/guix.texi:14181 +#: guix-git/doc/guix.texi:14538 #, no-wrap msgid "Invoking @command{guix processes}" msgstr "Invocación de @command{guix processes}" #. type: Plain text -#: guix-git/doc/guix.texi:14189 +#: guix-git/doc/guix.texi:14546 msgid "The @command{guix processes} command can be useful to developers and system administrators, especially on multi-user machines and on build farms: it lists the current sessions (connections to the daemon), as well as information about the processes involved@footnote{Remote sessions, when @command{guix-daemon} is started with @option{--listen} specifying a TCP endpoint, are @emph{not} listed.}. Here's an example of the information it returns:" msgstr "La orden @command{guix processes} puede ser útil a desarrolladoras y administradoras de sistemas, especialmente en máquinas multiusuaria y en granjas de construcción: enumera las sesiones actuales (conexiones al daemon), así como información sobre los procesos envueltos@footnote{Las sesiones remotas, cuando @command{guix-daemon} se ha iniciado con @option{--listen} especificando un punto de conexión TCP, @emph{no} son enumeradas.}. A continuación puede verse un ejemplo de la información que devuelve:" # FUZZY # TODO: Actualizar cuando se traduzca guix #. type: example -#: guix-git/doc/guix.texi:14195 +#: guix-git/doc/guix.texi:14552 #, fuzzy, no-wrap #| msgid "" #| "$ sudo guix processes\n" @@ -27019,7 +27704,7 @@ msgstr "" # FUZZY # TODO: Actualizar cuando se traduzca guix #. type: example -#: guix-git/doc/guix.texi:14199 +#: guix-git/doc/guix.texi:14556 #, no-wrap msgid "" "SessionPID: 19402\n" @@ -27035,7 +27720,7 @@ msgstr "" # FUZZY # TODO: Actualizar cuando se traduzca guix #. type: example -#: guix-git/doc/guix.texi:14212 +#: guix-git/doc/guix.texi:14569 #, fuzzy, no-wrap msgid "" "SessionPID: 19444\n" @@ -27064,14 +27749,14 @@ msgstr "" # FUZZY # TODO: Actualizar cuando se traduzca guix #. type: Plain text -#: guix-git/doc/guix.texi:14219 +#: guix-git/doc/guix.texi:14576 msgid "In this example we see that @command{guix-daemon} has three clients: @command{guix environment}, @command{guix publish}, and the Cuirass continuous integration tool; their process identifier (PID) is given by the @code{ClientPID} field. The @code{SessionPID} field gives the PID of the @command{guix-daemon} sub-process of this particular session." msgstr "En este ejemplo vemos que @command{guix-daemon} tiene tres clientes: @command{guix environment}, @command{guix publish} y la herramienta de integración continua Cuirass; sus identificadores de proceso (PID) se muestran en el campo @code{ClientPID}. El campo @code{SessionPID} proporciona el PID del subproceso de @command{guix-daemon} de cada sesión en particular." # FUZZY # TODO: Actualizar cuando se traduzca guix #. type: Plain text -#: guix-git/doc/guix.texi:14226 +#: guix-git/doc/guix.texi:14583 #, fuzzy msgid "The @code{LockHeld} fields show which store items are currently locked by this session, which corresponds to store items being built or substituted (the @code{LockHeld} field is not displayed when @command{guix processes} is not running as root). Last, by looking at the @code{ChildPID} and @code{ChildCommand} fields, we understand that these three builds are being offloaded (@pxref{Daemon Offload Setup})." msgstr "El campo @code{LockHeld} muestra qué elementos del almacén están bloqueados actualmente por cada sesión, lo que corresponde a elementos del almacén en construcción o sustitución (el campo @code{LockHeld} no se muestra cuando @command{guix processes} no se ejecutó como root). Por último, mediante el campo @code{ChildProcess} entendemos que esas tres construcciones están siendo delegadas (@pxref{Daemon Offload Setup})." @@ -27079,14 +27764,14 @@ msgstr "El campo @code{LockHeld} muestra qué elementos del almacén están bloq # FUZZY # TODO: Actualizar cuando se traduzca guix #. type: Plain text -#: guix-git/doc/guix.texi:14231 +#: guix-git/doc/guix.texi:14588 msgid "The output is in Recutils format so we can use the handy @command{recsel} command to select sessions of interest (@pxref{Selection Expressions,,, recutils, GNU recutils manual}). As an example, the command shows the command line and PID of the client that triggered the build of a Perl package:" msgstr "La salida está en formato Recutils por lo que podemos usar la útil orden @command{recsel} para seleccionar sesiones de interés (@pxref{Selection Expressions,,, recutils, GNU recutils manual}). Como un ejemplo, la siguiente orden muestra la línea de órdenes y el PID del cliente que inició la construcción de un paquete Perl:" # FUZZY # TODO: Actualizar cuando se traduzca guix #. type: example -#: guix-git/doc/guix.texi:14237 +#: guix-git/doc/guix.texi:14594 #, no-wrap msgid "" "$ sudo guix processes | \\\n" @@ -27100,29 +27785,29 @@ msgstr "" "ClientCommand: cuirass --cache-directory /var/cache/cuirass @dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:14240 +#: guix-git/doc/guix.texi:14597 #, fuzzy msgid "Additional options are listed below." msgstr "Las opciones disponibles se enumeran a continuación." #. type: table -#: guix-git/doc/guix.texi:14250 +#: guix-git/doc/guix.texi:14607 msgid "The default option. It outputs a set of Session recutils records that include each @code{ChildProcess} as a field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14251 +#: guix-git/doc/guix.texi:14608 #, fuzzy, no-wrap msgid "normalized" msgstr "optimized" #. type: table -#: guix-git/doc/guix.texi:14258 +#: guix-git/doc/guix.texi:14615 msgid "Normalize the output records into record sets (@pxref{Record Sets,,, recutils, GNU recutils manual}). Normalizing into record sets allows joins across record types. The example below lists the PID of each @code{ChildProcess} and the associated PID for @code{Session} that spawned the @code{ChildProcess} where the @code{Session} was started using @command{guix build}." msgstr "" #. type: example -#: guix-git/doc/guix.texi:14268 +#: guix-git/doc/guix.texi:14625 #, no-wrap msgid "" "$ guix processes --format=normalized | \\\n" @@ -27137,7 +27822,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14271 +#: guix-git/doc/guix.texi:14628 #, no-wrap msgid "" "PID: 4554\n" @@ -27146,7 +27831,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14274 +#: guix-git/doc/guix.texi:14631 #, no-wrap msgid "" "PID: 4646\n" @@ -27154,90 +27839,90 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14281 +#: guix-git/doc/guix.texi:14638 #, no-wrap msgid "system configuration" msgstr "configuración del sistema" #. type: Plain text -#: guix-git/doc/guix.texi:14287 +#: guix-git/doc/guix.texi:14644 msgid "Guix System supports a consistent whole-system configuration mechanism. By that we mean that all aspects of the global system configuration---such as the available system services, timezone and locale settings, user accounts---are declared in a single place. Such a @dfn{system configuration} can be @dfn{instantiated}---i.e., effected." msgstr "El sistema Guix permite un mecanismo de configuración del sistema completo consistente. Con esto queremos decir que todos los aspectos de la configuración global del sistema---como los servicios disponibles, la zona horaria y la configuración de localización, las cuentas de usuarias---se declaran en un lugar único. Dicha @dfn{configuración del sistema} puede ser @dfn{instanciada}---es decir, hecha efectiva." #. type: Plain text -#: guix-git/doc/guix.texi:14297 +#: guix-git/doc/guix.texi:14654 msgid "One of the advantages of putting all the system configuration under the control of Guix is that it supports transactional system upgrades, and makes it possible to roll back to a previous system instantiation, should something go wrong with the new one (@pxref{Features}). Another advantage is that it makes it easy to replicate the exact same configuration across different machines, or at different points in time, without having to resort to additional administration tools layered on top of the own tools of the system." msgstr "Una de las ventajas de poner toda la configuración del sistema bajo el control de Guix es que permite actualizaciones transaccionales del sistema, y hace posible volver a una instanciación previa del sistema, en caso de que haya algún problema con la nueva (@pxref{Features}). Otra ventaja es que hace fácil replicar exactamente la misma configuración entre máquinas diferentes, o en diferentes momentos, sin tener que utilizar herramientas de administración adicionales sobre las propias herramientas del sistema." #. type: Plain text -#: guix-git/doc/guix.texi:14302 +#: guix-git/doc/guix.texi:14659 msgid "This section describes this mechanism. First we focus on the system administrator's viewpoint---explaining how the system is configured and instantiated. Then we show how this mechanism can be extended, for instance to support new system services." msgstr "Esta sección describe este mecanismo. Primero nos enfocaremos en el punto de vista de la administradora del sistema---explicando cómo se configura e instancia el sistema. Después mostraremos cómo puede extenderse este mecanismo, por ejemplo para añadir nuevos servicios del sistema." #. type: Plain text -#: guix-git/doc/guix.texi:14332 +#: guix-git/doc/guix.texi:14689 msgid "The operating system is configured by providing an @code{operating-system} declaration in a file that can then be passed to the @command{guix system} command (@pxref{Invoking guix system}). A simple setup, with the default system services, the default Linux-Libre kernel, initial RAM disk, and boot loader looks like this:" msgstr "El sistema operativo se configura proporcionando una declaración @code{operating-system} en un archivo que pueda ser proporcionado a la orden @command{guix system} (@pxref{Invoking guix system}). Una configuración simple, con los servicios predeterminados del sistema, el núcleo Linux-Libre predeterminado, un disco de RAM inicial y un cargador de arranque puede ser como sigue:" #. type: code{#1} -#: guix-git/doc/guix.texi:14333 guix-git/doc/guix.texi:35553 +#: guix-git/doc/guix.texi:14690 guix-git/doc/guix.texi:36033 #, no-wrap msgid "operating-system" msgstr "operating-system" #. type: include -#: guix-git/doc/guix.texi:14335 +#: guix-git/doc/guix.texi:14692 #, no-wrap msgid "os-config-bare-bones.texi" msgstr "os-config-bare-bones.texi" #. type: Plain text -#: guix-git/doc/guix.texi:14342 +#: guix-git/doc/guix.texi:14699 msgid "This example should be self-describing. Some of the fields defined above, such as @code{host-name} and @code{bootloader}, are mandatory. Others, such as @code{packages} and @code{services}, can be omitted, in which case they get a default value." msgstr "Este ejemplo debería ser auto-descriptivo. Algunos de los campos definidos anteriormente, como @code{host-name} y @code{bootloader}, son necesarios. Otros como @code{packages} y @code{services}, pueden omitirse, en cuyo caso obtienen un valor por defecto." #. type: Plain text -#: guix-git/doc/guix.texi:14347 +#: guix-git/doc/guix.texi:14704 msgid "Below we discuss the effect of some of the most important fields (@pxref{operating-system Reference}, for details about all the available fields), and how to @dfn{instantiate} the operating system using @command{guix system}." msgstr "Más adelante se muestran los efectos de algunos de los campos más importantes (@pxref{operating-system Reference}, para detalles acerca de todos los campos disponibles), y cómo @dfn{instanciar} el sistema operativo usando @command{guix system}." #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14348 +#: guix-git/doc/guix.texi:14705 #, no-wrap msgid "Bootloader" msgstr "Cargador de arranque" #. type: cindex -#: guix-git/doc/guix.texi:14350 +#: guix-git/doc/guix.texi:14707 #, no-wrap msgid "legacy boot, on Intel machines" msgstr "arranque obsoleto, en máquinas Intel" #. type: cindex -#: guix-git/doc/guix.texi:14351 +#: guix-git/doc/guix.texi:14708 #, no-wrap msgid "BIOS boot, on Intel machines" msgstr "arranque por BIOS, en máquinas Intel" #. type: cindex -#: guix-git/doc/guix.texi:14352 +#: guix-git/doc/guix.texi:14709 #, no-wrap msgid "UEFI boot" msgstr "arranque UEFI" #. type: cindex -#: guix-git/doc/guix.texi:14353 +#: guix-git/doc/guix.texi:14710 #, no-wrap msgid "EFI boot" msgstr "arranque EFI" #. type: Plain text -#: guix-git/doc/guix.texi:14359 +#: guix-git/doc/guix.texi:14716 msgid "The @code{bootloader} field describes the method that will be used to boot your system. Machines based on Intel processors can boot in ``legacy'' BIOS mode, as in the example above. However, more recent machines rely instead on the @dfn{Unified Extensible Firmware Interface} (UEFI) to boot. In that case, the @code{bootloader} field should contain something along these lines:" msgstr "El campo @code{bootloader} describe el método que será usado para arrancar su sistema. Las máquinas basadas en procesadores Intel pueden arrancar en el ``obsoleto'' modo BIOS, como en el ejemplo previo. No obstante, máquinas más recientes usan la @dfn{Interfaz Unificada Extensible de Firmware} (UEFI) para arrancar. En ese caso, el capo @code{bootloader} debe contener algo parecido a esto:" #. type: lisp -#: guix-git/doc/guix.texi:14364 +#: guix-git/doc/guix.texi:14721 #, fuzzy, no-wrap #| msgid "" #| "(bootloader-configuration\n" @@ -27253,31 +27938,31 @@ msgstr "" " (target \"/boot/efi\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:14368 +#: guix-git/doc/guix.texi:14725 msgid "@xref{Bootloader Configuration}, for more information on the available configuration options." msgstr "@xref{Bootloader Configuration}, para más información sobre las opciones de configuración disponibles." #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14369 +#: guix-git/doc/guix.texi:14726 #, no-wrap msgid "Globally-Visible Packages" msgstr "Paquetes visibles globalmente" #. type: vindex -#: guix-git/doc/guix.texi:14371 +#: guix-git/doc/guix.texi:14728 #, no-wrap msgid "%base-packages" msgstr "%base-packages" #. type: Plain text -#: guix-git/doc/guix.texi:14384 +#: guix-git/doc/guix.texi:14741 #, fuzzy #| msgid "The @code{packages} field lists packages that will be globally visible on the system, for all user accounts---i.e., in every user's @env{PATH} environment variable---in addition to the per-user profiles (@pxref{Invoking guix package}). The @code{%base-packages} variable provides all the tools one would expect for basic user and administrator tasks---including the GNU Core Utilities, the GNU Networking Utilities, the GNU Zile lightweight text editor, @command{find}, @command{grep}, etc. The example above adds GNU@tie{}Screen to those, taken from the @code{(gnu packages screen)} module (@pxref{Package Modules}). The @code{(list package output)} syntax can be used to add a specific output of a package:" msgid "The @code{packages} field lists packages that will be globally visible on the system, for all user accounts---i.e., in every user's @env{PATH} environment variable---in addition to the per-user profiles (@pxref{Invoking guix package}). The @code{%base-packages} variable provides all the tools one would expect for basic user and administrator tasks---including the GNU Core Utilities, the GNU Networking Utilities, the @command{mg} lightweight text editor, @command{find}, @command{grep}, etc. The example above adds GNU@tie{}Screen to those, taken from the @code{(gnu packages screen)} module (@pxref{Package Modules}). The @code{(list package output)} syntax can be used to add a specific output of a package:" msgstr "El campo @code{packages} enumera los paquetes que serán visibles globalmente en el sistema, para todas las cuentas de usuaria---es decir, en la variable de entorno @env{PATH} de cada usuaria---sin tener en cuenta los perfiles de cada usuaria (@pxref{Invoking guix package}). La variable @code{%base-packages} proporciona todas las herramientas esperadas para tareas básicas y de administración---incluyendo las utilidades básicas GNU, las herramientas de red GNU, el editor de texto ligero GNU Zile, @command{find}, @command{grep}, etc. El ejemplo previo se añade GNU@tie{}Screen a estos, tomado del módulo @code{(gnu packages screen)} (@pxref{Package Modules}). La sintaxis @code{(list package output)} puede usarse para añadir una salida específica de un paquete:" #. type: lisp -#: guix-git/doc/guix.texi:14388 +#: guix-git/doc/guix.texi:14745 #, no-wrap msgid "" "(use-modules (gnu packages))\n" @@ -27289,7 +27974,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:14393 +#: guix-git/doc/guix.texi:14750 #, fuzzy, no-wrap #| msgid "" #| "(operating-system\n" @@ -27308,20 +27993,20 @@ msgstr "" " %base-packages)))\n" #. type: findex -#: guix-git/doc/guix.texi:14395 +#: guix-git/doc/guix.texi:14752 #, no-wrap msgid "specification->package" msgstr "specification->package" #. type: Plain text -#: guix-git/doc/guix.texi:14404 +#: guix-git/doc/guix.texi:14761 #, fuzzy #| msgid "Referring to packages by variable name, like @code{bind} above, has the advantage of being unambiguous; it also allows typos and such to be diagnosed right away as ``unbound variables''. The downside is that one needs to know which module defines which package, and to augment the @code{use-package-modules} line accordingly. To avoid that, one can use the @code{specification->package} procedure of the @code{(gnu packages)} module, which returns the best package for a given name or name and version:" msgid "Referring to packages by variable name, like @code{isc-bind} above, has the advantage of being unambiguous; it also allows typos and such to be diagnosed right away as ``unbound variables''. The downside is that one needs to know which module defines which package, and to augment the @code{use-package-modules} line accordingly. To avoid that, one can use the @code{specification->package} procedure of the @code{(gnu packages)} module, which returns the best package for a given name or name and version:" msgstr "Referirse a los paquetes por nombre de variable, como antes a @code{bind}, tiene la ventaja de evitar ambigüedades; también permite que errores tipográficos y demás obtengan un diagnóstico directo como ``variables sin definir''. La parte problemática es que se necesita conocer qué módulo define qué paquete, y aumentar adecuadamente la línea de @code{use-package-modules}. Para evitar esto, se puede usar el procedimiento @code{specification->package} del módulo @code{(gnu packages)}, que devuelve el mejor paquete para un nombre dado, o nombre y versión:" #. type: lisp -#: guix-git/doc/guix.texi:14407 +#: guix-git/doc/guix.texi:14764 #, no-wrap msgid "" "(use-modules (gnu packages))\n" @@ -27331,7 +28016,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:14413 +#: guix-git/doc/guix.texi:14770 #, no-wrap msgid "" "(operating-system\n" @@ -27347,60 +28032,77 @@ msgstr "" " %base-packages)))\n" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14415 +#: guix-git/doc/guix.texi:14772 #, no-wrap msgid "System Services" msgstr "Servicios del sistema" #. type: cindex -#: guix-git/doc/guix.texi:14417 guix-git/doc/guix.texi:34307 -#: guix-git/doc/guix.texi:35783 +#: guix-git/doc/guix.texi:14774 guix-git/doc/guix.texi:34746 +#: guix-git/doc/guix.texi:36273 #, no-wrap msgid "services" msgstr "services" #. type: vindex -#: guix-git/doc/guix.texi:14418 +#: guix-git/doc/guix.texi:14775 #, no-wrap msgid "%base-services" msgstr "%base-services" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:14428 +#: guix-git/doc/guix.texi:14785 msgid "The @code{services} field lists @dfn{system services} to be made available when the system starts (@pxref{Services}). The @code{operating-system} declaration above specifies that, in addition to the basic services, we want the OpenSSH secure shell daemon listening on port 2222 (@pxref{Networking Services, @code{openssh-service-type}}). Under the hood, @code{openssh-service-type} arranges so that @command{sshd} is started with the right command-line options, possibly with supporting configuration files generated as needed (@pxref{Defining Services})." msgstr "El campo @code{services} enumera los @dfn{servicios del sistema} disponibles cuando el sistema arranque (@pxref{Services}). La declaración @code{operating-system} previa especifica que, además de los servicios básicos, queremos que el daemon de shell seguro OpenSSH espere conexiones por el puerto 2222 (@pxref{Networking Services, @code{openssh-service-type}}). En su implementación, @code{openssh-service-type} prepara todo para que @code{sshd} se inicie con las opciones de la línea de órdenes adecuadas, posiblemente generando bajo demanda los archivos de configuración necesarios (@pxref{Defining Services})." #. type: cindex -#: guix-git/doc/guix.texi:14429 +#: guix-git/doc/guix.texi:14786 #, no-wrap msgid "customization, of services" msgstr "personalización, de servicios" #. type: findex -#: guix-git/doc/guix.texi:14430 +#: guix-git/doc/guix.texi:14787 #, no-wrap msgid "modify-services" msgstr "modify-services" #. type: Plain text -#: guix-git/doc/guix.texi:14434 +#: guix-git/doc/guix.texi:14791 msgid "Occasionally, instead of using the base services as is, you will want to customize them. To do this, use @code{modify-services} (@pxref{Service Reference, @code{modify-services}}) to modify the list." msgstr "De manera ocasional, en vez de usar los servicios básicos tal y como vienen, puede querer personalizarlos. Para hacerlo, use @code{modify-services} (@pxref{Service Reference, @code{modify-services}}) para modificar la lista." #. type: anchor{#1} -#: guix-git/doc/guix.texi:14440 +#: guix-git/doc/guix.texi:14797 msgid "auto-login to TTY" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14440 +#: guix-git/doc/guix.texi:14797 msgid "For example, suppose you want to modify @code{guix-daemon} and Mingetty (the console log-in) in the @code{%base-services} list (@pxref{Base Services, @code{%base-services}}). To do that, you can write the following in your operating system declaration:" msgstr "Por ejemplo, supongamos que quiere modificar @code{guix-daemon} y Mingetty (el punto de acceso al sistema por consola) en la lista @code{%base-services} (@pxref{Base Services, @code{%base-services}}). Para hacerlo, puede escribir lo siguiente en su declaración de sistema operativo:" #. type: lisp -#: guix-git/doc/guix.texi:14457 -#, no-wrap +#: guix-git/doc/guix.texi:14814 +#, fuzzy, no-wrap +#| msgid "" +#| "(define %my-services\n" +#| " ;; My very own list of services.\n" +#| " (modify-services %base-services\n" +#| " (guix-service-type config =>\n" +#| " (guix-configuration\n" +#| " (inherit config)\n" +#| " ;; Fetch substitutes from example.org.\n" +#| " (substitute-urls\n" +#| " (list \"https://example.org/guix\"\n" +#| " \"https://ci.guix.gnu.org\"))))\n" +#| " (mingetty-service-type config =>\n" +#| " (mingetty-configuration\n" +#| " (inherit config)\n" +#| " ;; Automatially log in as \"guest\".\n" +#| " (auto-login \"guest\")))))\n" +#| "\n" msgid "" "(define %my-services\n" " ;; My very own list of services.\n" @@ -27415,7 +28117,7 @@ msgid "" " (mingetty-service-type config =>\n" " (mingetty-configuration\n" " (inherit config)\n" -" ;; Automatially log in as \"guest\".\n" +" ;; Automatically log in as \"guest\".\n" " (auto-login \"guest\")))))\n" "\n" msgstr "" @@ -27438,7 +28140,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:14461 +#: guix-git/doc/guix.texi:14818 #, no-wrap msgid "" "(operating-system\n" @@ -27450,54 +28152,54 @@ msgstr "" " (services %mis-servicios))\n" #. type: Plain text -#: guix-git/doc/guix.texi:14474 +#: guix-git/doc/guix.texi:14831 #, fuzzy #| msgid "This changes the configuration---i.e., the service parameters---of the @code{guix-service-type} instance, and that of all the @code{mingetty-service-type} instances in the @code{%base-services} list. Observe how this is accomplished: first, we arrange for the original configuration to be bound to the identifier @code{config} in the @var{body}, and then we write the @var{body} so that it evaluates to the desired configuration. In particular, notice how we use @code{inherit} to create a new configuration which has the same values as the old configuration, but with a few modifications." msgid "This changes the configuration---i.e., the service parameters---of the @code{guix-service-type} instance, and that of all the @code{mingetty-service-type} instances in the @code{%base-services} list (@pxref{Auto-Login to a Specific TTY, see the cookbook for how to auto-login one user to a specific TTY,, guix-cookbook, GNU Guix Cookbook})). Observe how this is accomplished: first, we arrange for the original configuration to be bound to the identifier @code{config} in the @var{body}, and then we write the @var{body} so that it evaluates to the desired configuration. In particular, notice how we use @code{inherit} to create a new configuration which has the same values as the old configuration, but with a few modifications." msgstr "Esto modifica la configuración---es decir, los parámetros de los servicios---de la instancia @code{guix-service-type}, y de todas las instancias de @code{mingetty-service-type} en la lista @code{%base-services}. Observe cómo se consigue: primero, enlazamos la configuración actual al identificador @code{config} en el @var{cuerpo}, y entonces escribimos el @var{cuerpo} de manera que evalúe a la configuración deseada. En particular, fíjese como se usa @code{inherit} para crear una nueva configuración que tiene los mismos valores que la configuración antigua, pero con unas pocas modificaciones." #. type: Plain text -#: guix-git/doc/guix.texi:14481 +#: guix-git/doc/guix.texi:14838 #, fuzzy #| msgid "The configuration for a typical ``desktop'' usage, with an encrypted root partition, the X11 display server, GNOME and Xfce (users can choose which of these desktop environments to use at the log-in screen by pressing @kbd{F1}), network management, power management, and more, would look like this:" msgid "The configuration for a typical ``desktop'' usage, with an encrypted root partition, a swap file on the root partition, the X11 display server, GNOME and Xfce (users can choose which of these desktop environments to use at the log-in screen by pressing @kbd{F1}), network management, power management, and more, would look like this:" msgstr "La configuración para un uso típico de ``escritorio'', con una partición de raíz cifrada, el servidor gráfico X11, GNOME y Xfce (las usuarias pueden escoger cual de estos entornos de escritorio usarán en la pantalla de inicio de sesión pulsando @kbd{F1}), gestión de red, gestión de energía y más, podría ser así:" #. type: include -#: guix-git/doc/guix.texi:14483 +#: guix-git/doc/guix.texi:14840 #, no-wrap msgid "os-config-desktop.texi" msgstr "os-config-desktop.texi" #. type: Plain text -#: guix-git/doc/guix.texi:14488 +#: guix-git/doc/guix.texi:14845 msgid "A graphical system with a choice of lightweight window managers instead of full-blown desktop environments would look like this:" msgstr "Un sistema gráfico con una selección de gestores de ventanas ligeros en vez de entornos de escritorio completos podría ser así:" #. type: include -#: guix-git/doc/guix.texi:14490 +#: guix-git/doc/guix.texi:14847 #, no-wrap msgid "os-config-lightweight-desktop.texi" msgstr "os-config-lightweight-desktop.texi" #. type: Plain text -#: guix-git/doc/guix.texi:14496 +#: guix-git/doc/guix.texi:14853 msgid "This example refers to the @file{/boot/efi} file system by its UUID, @code{1234-ABCD}. Replace this UUID with the right UUID on your system, as returned by the @command{blkid} command." msgstr "Este ejemplo se refiere al sistema de archivos @file{/boot/efi} por su UUID @code{1234-ABCD}. Substituya este UUID con el UUID correcto en su sistema, como el devuelto por la orden @command{blkid}." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:14500 +#: guix-git/doc/guix.texi:14857 msgid "@xref{Desktop Services}, for the exact list of services provided by @code{%desktop-services}. @xref{X.509 Certificates}, for background information about the @code{nss-certs} package that is used here." msgstr "@xref{Desktop Services}, para la lista exacta de servicios proporcionados por @code{%desktop-services}. @xref{X.509 Certificates}, para información sobre el paquete @code{nss-certs} usado aquí." #. type: Plain text -#: guix-git/doc/guix.texi:14507 +#: guix-git/doc/guix.texi:14864 msgid "Again, @code{%desktop-services} is just a list of service objects. If you want to remove services from there, you can do so using the procedures for list filtering (@pxref{SRFI-1 Filtering and Partitioning,,, guile, GNU Guile Reference Manual}). For instance, the following expression returns a list that contains all the services in @code{%desktop-services} minus the Avahi service:" msgstr "De nuevo, @code{%desktop-services} es simplemente una lista de objetos de servicios. Si desea borrar servicios de aquí, puede hacerlo usando procedimientos de filtrado de listas (@pxref{SRFI-1 Filtering and Partitioning,,, guile, GNU Guile Reference Manual}). Por ejemplo, la siguiente expresión devuelve una lista que contiene todos los servicios en @code{%desktop-services} excepto el servicio Avahi:" #. type: lisp -#: guix-git/doc/guix.texi:14512 +#: guix-git/doc/guix.texi:14869 #, no-wrap msgid "" "(remove (lambda (service)\n" @@ -27509,12 +28211,12 @@ msgstr "" " %desktop-services)\n" #. type: Plain text -#: guix-git/doc/guix.texi:14515 +#: guix-git/doc/guix.texi:14872 msgid "Alternatively, the @code{modify-services} macro can be used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14519 +#: guix-git/doc/guix.texi:14876 #, no-wrap msgid "" "(modify-services %desktop-services\n" @@ -27522,368 +28224,368 @@ msgid "" msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14522 +#: guix-git/doc/guix.texi:14879 #, no-wrap msgid "Instantiating the System" msgstr "Instanciación del sistema" #. type: Plain text -#: guix-git/doc/guix.texi:14529 +#: guix-git/doc/guix.texi:14886 msgid "Assuming the @code{operating-system} declaration is stored in the @file{my-system-config.scm} file, the @command{guix system reconfigure my-system-config.scm} command instantiates that configuration, and makes it the default GRUB boot entry (@pxref{Invoking guix system})." msgstr "Asumiendo que la declaración de @code{operating-system} se encuentra en el archivo @file{mi-configuración-del-sistema.scm}, la orden @command{guix system mi-conf-del-sistema.scm} instancia esa configuración, y la convierte en la entrada predeterminada de GRUB en el arranque (@pxref{Invoking guix system})." #. type: Plain text -#: guix-git/doc/guix.texi:14537 +#: guix-git/doc/guix.texi:14894 msgid "The normal way to change the system configuration is by updating this file and re-running @command{guix system reconfigure}. One should never have to touch files in @file{/etc} or to run commands that modify the system state such as @command{useradd} or @command{grub-install}. In fact, you must avoid that since that would not only void your warranty but also prevent you from rolling back to previous versions of your system, should you ever need to." msgstr "La manera habitual de cambiar la configuración del sistema es actualizar este archivo y volver a ejecutar @command{guix system reconfigure}. Nunca se deberían tocar los archivos en @file{/etc} o ejecutar órdenes que modifiquen el estado del sistema como @command{useradd} o @command{grub-install}. De hecho, debe evitarlo ya que no únicamente anularía su garantía sino que también le impediría volver a una versión previa de su sistema, en caso de necesitarlo." #. type: cindex -#: guix-git/doc/guix.texi:14538 +#: guix-git/doc/guix.texi:14895 #, no-wrap msgid "roll-back, of the operating system" msgstr "vuelta-atrás, del sistema operativo" #. type: Plain text -#: guix-git/doc/guix.texi:14548 +#: guix-git/doc/guix.texi:14905 msgid "Speaking of roll-back, each time you run @command{guix system reconfigure}, a new @dfn{generation} of the system is created---without modifying or deleting previous generations. Old system generations get an entry in the bootloader boot menu, allowing you to boot them in case something went wrong with the latest generation. Reassuring, no? The @command{guix system list-generations} command lists the system generations available on disk. It is also possible to roll back the system via the commands @command{guix system roll-back} and @command{guix system switch-generation}." msgstr "Hablando de vuelta atrás, cada vez que ejecuta @command{guix system reconfigure} se crea una nueva @dfn{generación} del sistema---sin modificar o borrar generaciones previas. Las generaciones previas tienen una entrada en el menú del cargador de arranque, lo que permite arrancarlas en caso de que algo funcionase mal en las últimas generaciones. Tranquilizador, ¿no? La orden @command{guix system list-generations} enumera las generaciones del sistema disponibles en el disco. Es también posible volver a una versión previa con las órdenes @command{guix system roll-back} y @command{guix system switch-generation}." #. type: Plain text -#: guix-git/doc/guix.texi:14554 +#: guix-git/doc/guix.texi:14911 msgid "Although the @command{guix system reconfigure} command will not modify previous generations, you must take care when the current generation is not the latest (e.g., after invoking @command{guix system roll-back}), since the operation might overwrite a later generation (@pxref{Invoking guix system})." msgstr "Aunque la orden @command{guix system reconfigure} no modificará las generaciones previas, debe tener cuidado cuando la generación actual no es la última (por ejemplo, después de invocar @command{guix system roll-back}), ya que la operación puede sobreescribir una generación posterior (@pxref{Invoking guix system})." #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14555 +#: guix-git/doc/guix.texi:14912 #, no-wrap msgid "The Programming Interface" msgstr "La interfaz programática" #. type: Plain text -#: guix-git/doc/guix.texi:14560 +#: guix-git/doc/guix.texi:14917 msgid "At the Scheme level, the bulk of an @code{operating-system} declaration is instantiated with the following monadic procedure (@pxref{The Store Monad}):" msgstr "A nivel Scheme, el grueso de una declaración @code{operating-system} se instancia con el siguiente procedimiento monádico (@pxref{The Store Monad}):" #. type: deffn -#: guix-git/doc/guix.texi:14561 +#: guix-git/doc/guix.texi:14918 #, no-wrap msgid "{Monadic Procedure} operating-system-derivation os" msgstr "{Procedimiento monádico} operating-system-derivation so" #. type: deffn -#: guix-git/doc/guix.texi:14564 +#: guix-git/doc/guix.texi:14921 msgid "Return a derivation that builds @var{os}, an @code{operating-system} object (@pxref{Derivations})." msgstr "Devuelve una derivación que construye @var{so}, un objeto @code{operating-system} (@pxref{Derivations})." #. type: deffn -#: guix-git/doc/guix.texi:14568 +#: guix-git/doc/guix.texi:14925 msgid "The output of the derivation is a single directory that refers to all the packages, configuration files, and other supporting files needed to instantiate @var{os}." msgstr "La salida de la derivación es un único directorio que hace referencia a todos los paquetes, archivos de configuración y otros archivos auxiliares necesarios para instanciar @var{so}." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:14573 +#: guix-git/doc/guix.texi:14930 msgid "This procedure is provided by the @code{(gnu system)} module. Along with @code{(gnu services)} (@pxref{Services}), this module contains the guts of Guix System. Make sure to visit it!" msgstr "Este procedimiento se proporciona por el módulo @code{(gnu system)}. Junto con @code{(gnu services)} (@pxref{Services}), este módulo contiene los entresijos del sistema Guix. ¡Asegúrese de echarle un vistazo!" #. type: section -#: guix-git/doc/guix.texi:14576 +#: guix-git/doc/guix.texi:14933 #, no-wrap msgid "@code{operating-system} Reference" msgstr "Referencia de @code{operating-system}" #. type: Plain text -#: guix-git/doc/guix.texi:14581 +#: guix-git/doc/guix.texi:14938 msgid "This section summarizes all the options available in @code{operating-system} declarations (@pxref{Using the Configuration System})." msgstr "Esta sección resume todas las opciones disponibles en las declaraciones de @code{operating-system} (@pxref{Using the Configuration System})." #. type: deftp -#: guix-git/doc/guix.texi:14582 +#: guix-git/doc/guix.texi:14939 #, no-wrap msgid "{Data Type} operating-system" msgstr "{Tipo de datos} operating-system" #. type: deftp -#: guix-git/doc/guix.texi:14586 +#: guix-git/doc/guix.texi:14943 msgid "This is the data type representing an operating system configuration. By that, we mean all the global system configuration, not per-user configuration (@pxref{Using the Configuration System})." msgstr "Este es el tipo de datos que representa la configuración del sistema operativo. Con ello queremos decir toda la configuración global del sistema, no la configuración específica de las usuarias (@pxref{Using the Configuration System})." #. type: item -#: guix-git/doc/guix.texi:14588 +#: guix-git/doc/guix.texi:14945 #, no-wrap msgid "@code{kernel} (default: @code{linux-libre})" msgstr "@code{kernel} (predeterminado: @code{linux-libre})" #. type: table -#: guix-git/doc/guix.texi:14593 +#: guix-git/doc/guix.texi:14950 msgid "The package object of the operating system kernel to use@footnote{Currently only the Linux-libre kernel is fully supported. Using GNU@tie{}mach with the GNU@tie{}Hurd is experimental and only available when building a virtual machine disk image.}." msgstr "El objeto del paquete del núcleo del sistema operativo usado@footnote{Actualmente únicamente está completamente implementado el núcleo Linux-libre. El uso de GNU@tie{}mach con GNU@tie{}Hurd es experimental y únicamente está disponible cuando se construye una imagen de disco para máquina virtual.}." #. type: code{#1} -#: guix-git/doc/guix.texi:14594 guix-git/doc/guix.texi:30733 +#: guix-git/doc/guix.texi:14951 guix-git/doc/guix.texi:31098 #, no-wrap msgid "hurd" msgstr "hurd" #. type: item -#: guix-git/doc/guix.texi:14595 +#: guix-git/doc/guix.texi:14952 #, no-wrap msgid "@code{hurd} (default: @code{#f})" msgstr "@code{hurd} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:14600 +#: guix-git/doc/guix.texi:14957 msgid "The package object of the Hurd to be started by the kernel. When this field is set, produce a GNU/Hurd operating system. In that case, @code{kernel} must also be set to the @code{gnumach} package---the microkernel the Hurd runs on." msgstr "El objeto del paquete de Hurd iniciado por el núcleo. Cuando se proporciona este campo, produce un sistema operativo GNU/Hurd. En ese caso, @code{kernel} también debe contener el paquete @code{gnumach}---el micronúcleo sobre el que se ejecuta Hurd." #. type: quotation -#: guix-git/doc/guix.texi:14603 +#: guix-git/doc/guix.texi:14960 msgid "This feature is experimental and only supported for disk images." msgstr "Esta característica es experimental y únicamente está implementada para imágenes de disco." #. type: item -#: guix-git/doc/guix.texi:14605 +#: guix-git/doc/guix.texi:14962 #, no-wrap msgid "@code{kernel-loadable-modules} (default: '())" msgstr "@code{kernel-loadable-modules} (predeterminados: @code{'()})" # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:14608 +#: guix-git/doc/guix.texi:14965 msgid "A list of objects (usually packages) to collect loadable kernel modules from--e.g. @code{(list ddcci-driver-linux)}." msgstr "Una lista de objetos (habitualmente paquetes) desde los que se obtendrán los módulos del núcleo--por ejemplo @code{(list ddcci-driver-linux)}." #. type: item -#: guix-git/doc/guix.texi:14609 +#: guix-git/doc/guix.texi:14966 #, no-wrap msgid "@code{kernel-arguments} (default: @code{%default-kernel-arguments})" msgstr "@code{kernel-arguments} (predeterminados: @code{%default-kernel-arguments})" #. type: table -#: guix-git/doc/guix.texi:14612 +#: guix-git/doc/guix.texi:14969 msgid "List of strings or gexps representing additional arguments to pass on the command-line of the kernel---e.g., @code{(\"console=ttyS0\")}." msgstr "Lista de cadenas o expresiones-G que representan parámetros adicionales a pasar en la línea de órdenes del núcleo---por ejemplo, @code{(\"console=ttyS0\")}." #. type: code{#1} -#: guix-git/doc/guix.texi:14613 guix-git/doc/guix.texi:34539 -#: guix-git/doc/guix.texi:34558 +#: guix-git/doc/guix.texi:14970 guix-git/doc/guix.texi:34978 +#: guix-git/doc/guix.texi:34997 #, no-wrap msgid "bootloader" msgstr "bootloader" #. type: table -#: guix-git/doc/guix.texi:14615 +#: guix-git/doc/guix.texi:14972 msgid "The system bootloader configuration object. @xref{Bootloader Configuration}." msgstr "El objeto de configuración del cargador de arranque del sistema. @xref{Bootloader Configuration}." #. type: code{#1} -#: guix-git/doc/guix.texi:14616 guix-git/doc/guix.texi:34732 +#: guix-git/doc/guix.texi:14973 guix-git/doc/guix.texi:35171 #, no-wrap msgid "label" msgstr "label" #. type: table -#: guix-git/doc/guix.texi:14619 +#: guix-git/doc/guix.texi:14976 msgid "This is the label (a string) as it appears in the bootloader's menu entry. The default label includes the kernel name and version." msgstr "Es una etiqueta (una cadena) con la que aparecerá en el menú del cargador de arranque. La etiqueta predeterminada incluye el nombre y la versión del núcleo." #. type: item -#: guix-git/doc/guix.texi:14620 guix-git/doc/guix.texi:16318 -#: guix-git/doc/guix.texi:19503 guix-git/doc/guix.texi:34662 +#: guix-git/doc/guix.texi:14977 guix-git/doc/guix.texi:16675 +#: guix-git/doc/guix.texi:19865 guix-git/doc/guix.texi:35101 #, no-wrap msgid "@code{keyboard-layout} (default: @code{#f})" msgstr "@code{keyboard-layout} (predeterminada: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:14625 +#: guix-git/doc/guix.texi:14982 #, fuzzy msgid "This field specifies the keyboard layout to use in the console. It can be either @code{#f}, in which case the default keyboard layout is used (usually US English), or a @code{} record. @xref{Keyboard Layout}, for more information." msgstr "Este campo especifica la distribución de teclado usada para la consola. Puede ser o bien @code{#f}, en cuyo caso se usa la distribución predeterminada (normalmente Inglés de EEUU), o un registro @code{}." #. type: table -#: guix-git/doc/guix.texi:14630 +#: guix-git/doc/guix.texi:14987 msgid "This keyboard layout is in effect as soon as the kernel has booted. For instance, it is the keyboard layout in effect when you type a passphrase if your root file system is on a @code{luks-device-mapping} mapped device (@pxref{Mapped Devices})." msgstr "Esta distribución de teclado se hace efectiva tan pronto el núcleo haya arrancado. Por ejemplo, la distribución de teclado está en efecto cuando introduzca una contraseña si su sistema de archivos raíz se encuentra en un dispositivo traducido @code{luks-device-mapping} (@pxref{Mapped Devices})." # FUZZY #. type: quotation -#: guix-git/doc/guix.texi:14637 +#: guix-git/doc/guix.texi:14994 msgid "This does @emph{not} specify the keyboard layout used by the bootloader, nor that used by the graphical display server. @xref{Bootloader Configuration}, for information on how to specify the bootloader's keyboard layout. @xref{X Window}, for information on how to specify the keyboard layout used by the X Window System." msgstr "Esto @emph{no} especifica la distribución de teclado usada por el cargador de arranque, ni tampoco la usada por el servidor gráfico. @xref{Bootloader Configuration}, para información sobre cómo especificar la distribución de teclado del cargador de arranque. @xref{X Window}, para información sobre cómo especificar la distribución de teclado usada por el sistema de ventanas X." #. type: item -#: guix-git/doc/guix.texi:14639 +#: guix-git/doc/guix.texi:14996 #, no-wrap msgid "@code{initrd-modules} (default: @code{%base-initrd-modules})" msgstr "@code{initrd-modules} (predeterminados: @code{%base-initrd-modules})" #. type: cindex -#: guix-git/doc/guix.texi:14640 guix-git/doc/guix.texi:34344 -#: guix-git/doc/guix.texi:34467 +#: guix-git/doc/guix.texi:14997 guix-git/doc/guix.texi:34783 +#: guix-git/doc/guix.texi:34906 #, no-wrap msgid "initrd" msgstr "initrd" #. type: cindex -#: guix-git/doc/guix.texi:14641 guix-git/doc/guix.texi:34345 -#: guix-git/doc/guix.texi:34468 +#: guix-git/doc/guix.texi:14998 guix-git/doc/guix.texi:34784 +#: guix-git/doc/guix.texi:34907 #, no-wrap msgid "initial RAM disk" msgstr "disco inicial en RAM" #. type: table -#: guix-git/doc/guix.texi:14644 +#: guix-git/doc/guix.texi:15001 msgid "The list of Linux kernel modules that need to be available in the initial RAM disk. @xref{Initial RAM Disk}." msgstr "La lista de módulos del núcleo Linux que deben estar disponibles en el disco inicial en RAM. @xref{Initial RAM Disk}." #. type: item -#: guix-git/doc/guix.texi:14645 +#: guix-git/doc/guix.texi:15002 #, no-wrap msgid "@code{initrd} (default: @code{base-initrd})" msgstr "@code{initrd} (predeterminado: @code{base-initrd})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:14649 +#: guix-git/doc/guix.texi:15006 msgid "A procedure that returns an initial RAM disk for the Linux kernel. This field is provided to support low-level customization and should rarely be needed for casual use. @xref{Initial RAM Disk}." msgstr "Un procedimiento que devuelve un disco inicial en RAM para el núcleo Linux. Este campo se proporciona para permitir personalizaciones de bajo nivel y no debería ser necesario para un uso habitual. @xref{Initial RAM Disk}." #. type: item -#: guix-git/doc/guix.texi:14650 +#: guix-git/doc/guix.texi:15007 #, no-wrap msgid "@code{firmware} (default: @code{%base-firmware})" msgstr "@code{firmware} (predeterminado: @code{%base-firmware})" #. type: cindex -#: guix-git/doc/guix.texi:14651 +#: guix-git/doc/guix.texi:15008 #, no-wrap msgid "firmware" msgstr "firmware" #. type: table -#: guix-git/doc/guix.texi:14653 +#: guix-git/doc/guix.texi:15010 msgid "List of firmware packages loadable by the operating system kernel." msgstr "Lista de paquetes de firmware que pueden ser cargados por el núcleo del sistema operativo." # FUZZY #. type: table -#: guix-git/doc/guix.texi:14658 +#: guix-git/doc/guix.texi:15015 msgid "The default includes firmware needed for Atheros- and Broadcom-based WiFi devices (Linux-libre modules @code{ath9k} and @code{b43-open}, respectively). @xref{Hardware Considerations}, for more info on supported hardware." msgstr "El valor predeterminado incluye el firmware necesario para dispositivos WiFi basados en Atheros y Broadcom (módulos Linux-libre @code{ath9k} y @code{b43-open}, respectivamente). @xref{Hardware Considerations}, para más información sobre hardware soportado." #. type: code{#1} -#: guix-git/doc/guix.texi:14659 guix-git/doc/guix.texi:35572 +#: guix-git/doc/guix.texi:15016 guix-git/doc/guix.texi:36052 #, no-wrap msgid "host-name" msgstr "host-name" #. type: table -#: guix-git/doc/guix.texi:14661 +#: guix-git/doc/guix.texi:15018 msgid "The host name." msgstr "El nombre de la máquina." #. type: code{#1} -#: guix-git/doc/guix.texi:14662 +#: guix-git/doc/guix.texi:15019 #, no-wrap msgid "hosts-file" msgstr "hosts-file" #. type: cindex -#: guix-git/doc/guix.texi:14663 +#: guix-git/doc/guix.texi:15020 #, no-wrap msgid "hosts file" msgstr "el archivo hosts" #. type: table -#: guix-git/doc/guix.texi:14668 +#: guix-git/doc/guix.texi:15025 msgid "A file-like object (@pxref{G-Expressions, file-like objects}) for use as @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). The default is a file with entries for @code{localhost} and @var{host-name}." msgstr "Un objeto tipo-archivo (@pxref{G-Expressions, objetos ``tipo-archivo''}) para ser usado como @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). El predeterminado es un archivo con entradas para @code{localhost} y @var{host-name}." #. type: item -#: guix-git/doc/guix.texi:14669 +#: guix-git/doc/guix.texi:15026 #, no-wrap msgid "@code{mapped-devices} (default: @code{'()})" msgstr "@code{mapped-devices} (predeterminados: @code{'()})" # TODO (MAAV): Comprobar. #. type: table -#: guix-git/doc/guix.texi:14671 +#: guix-git/doc/guix.texi:15028 msgid "A list of mapped devices. @xref{Mapped Devices}." msgstr "Una lista de dispositivos traducidos. @xref{Mapped Devices}." #. type: code{#1} -#: guix-git/doc/guix.texi:14672 +#: guix-git/doc/guix.texi:15029 #, no-wrap msgid "file-systems" msgstr "file-systems" #. type: table -#: guix-git/doc/guix.texi:14674 +#: guix-git/doc/guix.texi:15031 msgid "A list of file systems. @xref{File Systems}." msgstr "Una lista de sistemas de archivos. @xref{File Systems}." #. type: item -#: guix-git/doc/guix.texi:14675 +#: guix-git/doc/guix.texi:15032 #, no-wrap msgid "@code{swap-devices} (default: @code{'()})" msgstr "@code{swap-devices} (predeterminados: @code{'()})" # TODO: (MAAV) Comprobar como se ha hecho en otros proyectos. #. type: cindex -#: guix-git/doc/guix.texi:14676 +#: guix-git/doc/guix.texi:15033 #, no-wrap msgid "swap devices" msgstr "dispositivos de intercambio" # TODO (MAAV): Comprobar. #. type: table -#: guix-git/doc/guix.texi:14678 +#: guix-git/doc/guix.texi:15035 #, fuzzy #| msgid "A list of mapped devices. @xref{Mapped Devices}." msgid "A list of swap spaces. @xref{Swap Space}." msgstr "Una lista de dispositivos traducidos. @xref{Mapped Devices}." #. type: item -#: guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15036 #, no-wrap msgid "@code{users} (default: @code{%base-user-accounts})" msgstr "@code{users} (predeterminadas: @code{%base-user-accounts})" #. type: itemx -#: guix-git/doc/guix.texi:14680 +#: guix-git/doc/guix.texi:15037 #, no-wrap msgid "@code{groups} (default: @code{%base-groups})" msgstr "@code{groups} (predeterminados: @code{%base-groups})" #. type: table -#: guix-git/doc/guix.texi:14682 +#: guix-git/doc/guix.texi:15039 msgid "List of user accounts and groups. @xref{User Accounts}." msgstr "Lista de cuentas de usuaria y grupos. @xref{User Accounts}." #. type: table -#: guix-git/doc/guix.texi:14685 +#: guix-git/doc/guix.texi:15042 msgid "If the @code{users} list lacks a user account with UID@tie{}0, a ``root'' account with UID@tie{}0 is automatically added." msgstr "Si la lista de @code{usuarias} carece de una cuenta de usuaria con UID@tie{}0, una cuenta ``root'' con UID@tie{}0 se añade automáticamente." #. type: item -#: guix-git/doc/guix.texi:14686 +#: guix-git/doc/guix.texi:15043 #, no-wrap msgid "@code{skeletons} (default: @code{(default-skeletons)})" msgstr "@code{skeletons} (predeterminados: @code{(default-skeletons)})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:14690 +#: guix-git/doc/guix.texi:15047 msgid "A list of target file name/file-like object tuples (@pxref{G-Expressions, file-like objects}). These are the skeleton files that will be added to the home directory of newly-created user accounts." msgstr "Una lista de tuplas de nombre de archivo de destino/objeto tipo-archivo (@pxref{G-Expressions, objetos ``tipo-archivo''}). Estos son los archivos de esqueleto que se añadirán al directorio de las cuentas de usuaria que se creen." #. type: table -#: guix-git/doc/guix.texi:14692 +#: guix-git/doc/guix.texi:15049 msgid "For instance, a valid value may look like this:" msgstr "Por ejemplo, un valor válido puede parecer algo así:" #. type: lisp -#: guix-git/doc/guix.texi:14698 +#: guix-git/doc/guix.texi:15055 #, no-wrap msgid "" "`((\".bashrc\" ,(plain-file \"bashrc\" \"echo Hello\\n\"))\n" @@ -27897,29 +28599,29 @@ msgstr "" " (activate-readline)\")))\n" #. type: item -#: guix-git/doc/guix.texi:14700 +#: guix-git/doc/guix.texi:15057 #, no-wrap msgid "@code{issue} (default: @code{%default-issue})" msgstr "@code{issue} (predeterminado: @code{%default-issue})" #. type: table -#: guix-git/doc/guix.texi:14703 +#: guix-git/doc/guix.texi:15060 msgid "A string denoting the contents of the @file{/etc/issue} file, which is displayed when users log in on a text console." msgstr "Una cadena que denota el contenido del archivo @file{/etc/issue}, que se muestra cuando las usuarias ingresan al sistema en una consola de texto." #. type: item -#: guix-git/doc/guix.texi:14704 +#: guix-git/doc/guix.texi:15061 #, no-wrap msgid "@code{packages} (default: @code{%base-packages})" msgstr "@code{packages} (predeterminados: @code{%base-packages})" #. type: table -#: guix-git/doc/guix.texi:14708 +#: guix-git/doc/guix.texi:15065 msgid "A list of packages to be installed in the global profile, which is accessible at @file{/run/current-system/profile}. Each element is either a package variable or a package/output tuple. Here's a simple example of both:" msgstr "Una lista de paquetes instalados en el perfil global, que es accesible en @file{/run/current-system/profile}. Cada elemento debe ser una variable de paquete o una tupla paquete/salida. A continuación se muestra un ejemplo de ambos tipos:" #. type: lisp -#: guix-git/doc/guix.texi:14713 +#: guix-git/doc/guix.texi:15070 #, no-wrap msgid "" "(cons* git ; the default \"out\" output\n" @@ -27932,61 +28634,61 @@ msgstr "" # FUZZY #. type: table -#: guix-git/doc/guix.texi:14718 +#: guix-git/doc/guix.texi:15075 msgid "The default set includes core utilities and it is good practice to install non-core utilities in user profiles (@pxref{Invoking guix package})." msgstr "El conjunto predeterminado incluye utilidades básicas y es una buena práctica instalar utilidades no-básicas en los perfiles de las usuarias (@pxref{Invoking guix package})." #. type: code{#1} -#: guix-git/doc/guix.texi:14719 +#: guix-git/doc/guix.texi:15076 #, no-wrap msgid "timezone" msgstr "timezone" #. type: table -#: guix-git/doc/guix.texi:14721 +#: guix-git/doc/guix.texi:15078 msgid "A timezone identifying string---e.g., @code{\"Europe/Paris\"}." msgstr "Una cadena que identifica la zona horaria---por ejemplo, @code{\"Europe/Paris\"}." #. type: table -#: guix-git/doc/guix.texi:14725 +#: guix-git/doc/guix.texi:15082 msgid "You can run the @command{tzselect} command to find out which timezone string corresponds to your region. Choosing an invalid timezone name causes @command{guix system} to fail." msgstr "Puede ejecutar la orden @command{tzselect} para encontrar qué cadena de zona horaria corresponde con su región. Elegir una zona horaria no válida provoca un fallo en @command{guix system}." #. type: item -#: guix-git/doc/guix.texi:14726 guix-git/doc/guix.texi:21115 +#: guix-git/doc/guix.texi:15083 guix-git/doc/guix.texi:21477 #, no-wrap msgid "@code{locale} (default: @code{\"en_US.utf8\"})" msgstr "@code{locale} (predeterminado: @code{\"en_US.utf8\"})" #. type: table -#: guix-git/doc/guix.texi:14729 +#: guix-git/doc/guix.texi:15086 msgid "The name of the default locale (@pxref{Locale Names,,, libc, The GNU C Library Reference Manual}). @xref{Locales}, for more information." msgstr "El nombre de la localización predeterminada (@pxref{Locale Names,,, libc, The GNU C Library Reference Manual}). @xref{Locales}, para más información." #. type: item -#: guix-git/doc/guix.texi:14730 +#: guix-git/doc/guix.texi:15087 #, no-wrap msgid "@code{locale-definitions} (default: @code{%default-locale-definitions})" msgstr "@code{locale-definitions} (predeterminadas: @code{%default-locale-definitions})" #. type: table -#: guix-git/doc/guix.texi:14733 +#: guix-git/doc/guix.texi:15090 msgid "The list of locale definitions to be compiled and that may be used at run time. @xref{Locales}." msgstr "La lista de definiciones de localizaciones a compilar y que puede ser usada en tiempo de ejecución. @xref{Locales}." #. type: item -#: guix-git/doc/guix.texi:14734 +#: guix-git/doc/guix.texi:15091 #, no-wrap msgid "@code{locale-libcs} (default: @code{(list @var{glibc})})" msgstr "@code{locale-libcs} (predeterminadas: @code{(list @var{glibc})})" #. type: table -#: guix-git/doc/guix.texi:14738 +#: guix-git/doc/guix.texi:15095 msgid "The list of GNU@tie{}libc packages whose locale data and tools are used to build the locale definitions. @xref{Locales}, for compatibility considerations that justify this option." msgstr "La lista de paquetes GNU@tie{}libc cuyos datos de localización y herramientas son usadas para las definiciones de localizaciones. @xref{Locales}, para consideraciones de compatibilidad que justifican esta opción." #. type: item -#: guix-git/doc/guix.texi:14739 +#: guix-git/doc/guix.texi:15096 #, no-wrap msgid "@code{name-service-switch} (default: @code{%default-nss})" msgstr "@code{name-service-switch} (predeterminado: @code{%default-nss})" @@ -27994,47 +28696,47 @@ msgstr "@code{name-service-switch} (predeterminado: @code{%default-nss})" # FUZZY # TODO: Comprobar libc #. type: table -#: guix-git/doc/guix.texi:14743 +#: guix-git/doc/guix.texi:15100 msgid "Configuration of the libc name service switch (NSS)---a @code{} object. @xref{Name Service Switch}, for details." msgstr "Configuración del selector de servicios de nombres de libc (NSS)---un objeto @code{}. @xref{Name Service Switch}, para detalles." #. type: item -#: guix-git/doc/guix.texi:14744 +#: guix-git/doc/guix.texi:15101 #, no-wrap msgid "@code{services} (default: @code{%base-services})" msgstr "@code{services} (predeterminados: @code{%base-services})" #. type: table -#: guix-git/doc/guix.texi:14746 +#: guix-git/doc/guix.texi:15103 msgid "A list of service objects denoting system services. @xref{Services}." msgstr "Una lista de objetos service denotando los servicios del sistema. @xref{Services}." #. type: cindex -#: guix-git/doc/guix.texi:14747 +#: guix-git/doc/guix.texi:15104 #, no-wrap msgid "essential services" msgstr "servicios esenciales" #. type: item -#: guix-git/doc/guix.texi:14748 +#: guix-git/doc/guix.texi:15105 #, no-wrap msgid "@code{essential-services} (default: ...)" msgstr "@code{essential-services} (predeterminados: ...)" # FUZZY #. type: table -#: guix-git/doc/guix.texi:14753 +#: guix-git/doc/guix.texi:15110 msgid "The list of ``essential services''---i.e., things like instances of @code{system-service-type} and @code{host-name-service-type} (@pxref{Service Reference}), which are derived from the operating system definition itself. As a user you should @emph{never} need to touch this field." msgstr "La lista de ``servicios esenciales''---es decir, cosas como instancias de @code{system-service-type} y @code{host-name-service-type} (@pxref{Service Reference}), las cuales se derivan de su definición de sistema operativo en sí. Como usuaria @emph{nunca} debería modificar este campo." #. type: item -#: guix-git/doc/guix.texi:14754 +#: guix-git/doc/guix.texi:15111 #, no-wrap msgid "@code{pam-services} (default: @code{(base-pam-services)})" msgstr "@code{pam-services} (predeterminados: @code{(base-pam-services)})" #. type: cindex -#: guix-git/doc/guix.texi:14755 +#: guix-git/doc/guix.texi:15112 #, no-wrap msgid "PAM" msgstr "PAM" @@ -28042,71 +28744,71 @@ msgstr "PAM" # FUZZY # TODO: Comprobar PAM #. type: cindex -#: guix-git/doc/guix.texi:14756 +#: guix-git/doc/guix.texi:15113 #, no-wrap msgid "pluggable authentication modules" msgstr "módulos de identificación conectables" #. type: table -#: guix-git/doc/guix.texi:14759 +#: guix-git/doc/guix.texi:15116 msgid "Linux @dfn{pluggable authentication module} (PAM) services." msgstr "Servicios de los @dfn{módulos de identificación conectables} (PAM) de Linux." #. type: item -#: guix-git/doc/guix.texi:14760 +#: guix-git/doc/guix.texi:15117 #, no-wrap msgid "@code{setuid-programs} (default: @code{%setuid-programs})" msgstr "@code{setuid-programs} (predeterminados: @code{%setuid-programs})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:14763 +#: guix-git/doc/guix.texi:15120 #, fuzzy #| msgid "List of string-valued G-expressions denoting setuid programs. @xref{Setuid Programs}." msgid "List of @code{}. @xref{Setuid Programs}, for more information." msgstr "Lista de expresiones-G con valores de cadena que denotan los programas setuid. @xref{Setuid Programs}." #. type: item -#: guix-git/doc/guix.texi:14764 +#: guix-git/doc/guix.texi:15121 #, no-wrap msgid "@code{sudoers-file} (default: @code{%sudoers-specification})" msgstr "@code{sudoers-file} (predeterminado: @code{%sudoers-specification})" #. type: cindex -#: guix-git/doc/guix.texi:14765 +#: guix-git/doc/guix.texi:15122 #, no-wrap msgid "sudoers file" msgstr "archivo sudoers" #. type: table -#: guix-git/doc/guix.texi:14768 +#: guix-git/doc/guix.texi:15125 msgid "The contents of the @file{/etc/sudoers} file as a file-like object (@pxref{G-Expressions, @code{local-file} and @code{plain-file}})." msgstr "El contenido de @file{/etc/sudoers} como un objeto tipo-archivo (@pxref{G-Expressions, @code{local-file} y @code{plain-file}})." #. type: table -#: guix-git/doc/guix.texi:14773 +#: guix-git/doc/guix.texi:15130 msgid "This file specifies which users can use the @command{sudo} command, what they are allowed to do, and what privileges they may gain. The default is that only @code{root} and members of the @code{wheel} group may use @code{sudo}." msgstr "Este archivo especifica qué usuarias pueden usar la orden @command{sudo}, lo que se les permite hacer y qué privilegios pueden obtener. El comportamiento predefinido es que únicamente @code{root} y los miembros del grupo @code{wheel} pueden usar @code{sudo}." #. type: deffn -#: guix-git/doc/guix.texi:14776 +#: guix-git/doc/guix.texi:15133 #, no-wrap msgid "{Scheme Syntax} this-operating-system" msgstr "{Tipo de datos} this-operating-system" # FUZZY #. type: deffn -#: guix-git/doc/guix.texi:14779 +#: guix-git/doc/guix.texi:15136 msgid "When used in the @emph{lexical scope} of an operating system field definition, this identifier resolves to the operating system being defined." msgstr "Cuando se usa en el @emph{ámbito léxico} de un campo de una definición de sistema operativo, este identificador está enlazado al sistema operativo en definición." #. type: deffn -#: guix-git/doc/guix.texi:14782 +#: guix-git/doc/guix.texi:15139 msgid "The example below shows how to refer to the operating system being defined in the definition of the @code{label} field:" msgstr "El siguiente ejemplo muestra cómo hacer referencia al sistema operativo en definición en la definición del campo @code{label}:" #. type: lisp -#: guix-git/doc/guix.texi:14785 guix-git/doc/guix.texi:18711 +#: guix-git/doc/guix.texi:15142 guix-git/doc/guix.texi:19073 #, no-wrap msgid "" "(use-modules (gnu) (guix))\n" @@ -28116,7 +28818,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:14790 +#: guix-git/doc/guix.texi:15147 #, no-wrap msgid "" "(operating-system\n" @@ -28130,17 +28832,17 @@ msgstr "" " (operating-system-kernel this-operating-system))))\n" #. type: deffn -#: guix-git/doc/guix.texi:14794 +#: guix-git/doc/guix.texi:15151 msgid "It is an error to refer to @code{this-operating-system} outside an operating system definition." msgstr "Es un error hacer referencia a @code{this-operating-system} fuera de una definición de sistema operativo." #. type: Plain text -#: guix-git/doc/guix.texi:14805 +#: guix-git/doc/guix.texi:15162 msgid "The list of file systems to be mounted is specified in the @code{file-systems} field of the operating system declaration (@pxref{Using the Configuration System}). Each file system is declared using the @code{file-system} form, like this:" msgstr "La lista de sistemas de archivos que deben montarse se especifica en el campo @code{file-systems} de la declaración del sistema operativo (@pxref{Using the Configuration System}). Cada sistema de archivos se declara usando la forma @code{file-system}, como en el siguiente ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:14811 +#: guix-git/doc/guix.texi:15168 #, no-wrap msgid "" "(file-system\n" @@ -28154,69 +28856,69 @@ msgstr "" " (type \"ext4\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:14815 +#: guix-git/doc/guix.texi:15172 msgid "As usual, some of the fields are mandatory---those shown in the example above---while others can be omitted. These are described below." msgstr "Como es habitual, algunos de los campos son obligatorios---aquellos mostrados en el ejemplo previo---mientras que otros pueden omitirse. Se describen a continuación." #. type: deftp -#: guix-git/doc/guix.texi:14816 +#: guix-git/doc/guix.texi:15173 #, no-wrap msgid "{Data Type} file-system" msgstr "{Tipo de datos} file-system" #. type: deftp -#: guix-git/doc/guix.texi:14819 +#: guix-git/doc/guix.texi:15176 msgid "Objects of this type represent file systems to be mounted. They contain the following members:" msgstr "Objetos de este tipo representan los sistemas de archivos a montar. Contienen los siguientes campos:" #. type: item -#: guix-git/doc/guix.texi:14821 guix-git/doc/guix.texi:15201 -#: guix-git/doc/guix.texi:17317 +#: guix-git/doc/guix.texi:15178 guix-git/doc/guix.texi:15558 +#: guix-git/doc/guix.texi:17679 #, no-wrap msgid "type" msgstr "type" #. type: table -#: guix-git/doc/guix.texi:14824 +#: guix-git/doc/guix.texi:15181 msgid "This is a string specifying the type of the file system---e.g., @code{\"ext4\"}." msgstr "Este campo es una cadena que especifica el tipo de sistema de archivos---por ejemplo, @code{\"ext4\"}." #. type: code{#1} -#: guix-git/doc/guix.texi:14825 +#: guix-git/doc/guix.texi:15182 #, no-wrap msgid "mount-point" msgstr "mount-point" # FUZZY #. type: table -#: guix-git/doc/guix.texi:14827 +#: guix-git/doc/guix.texi:15184 msgid "This designates the place where the file system is to be mounted." msgstr "Designa la ruta donde el sistema de archivos debe montarse." #. type: item -#: guix-git/doc/guix.texi:14828 guix-git/doc/guix.texi:17267 +#: guix-git/doc/guix.texi:15185 guix-git/doc/guix.texi:17629 #, no-wrap msgid "device" msgstr "device" #. type: table -#: guix-git/doc/guix.texi:14838 +#: guix-git/doc/guix.texi:15195 msgid "This names the ``source'' of the file system. It can be one of three things: a file system label, a file system UUID, or the name of a @file{/dev} node. Labels and UUIDs offer a way to refer to file systems without having to hard-code their actual device name@footnote{Note that, while it is tempting to use @file{/dev/disk/by-uuid} and similar device names to achieve the same result, this is not recommended: These special device nodes are created by the udev daemon and may be unavailable at the time the device is mounted.}." msgstr "Nombra la ``fuente'' del sistema de archivos. Puede ser una de estas tres opciones: una etiqueta de sistema de archivos, un UUID de sistema de archivos o el nombre de un nodo @file{/dev}. Las etiquetas y UUID ofrecen una forma de hacer referencia a sistemas de archivos sin codificar su nombre de dispositivo actual@footnote{Fíjese que, aunque es tentador usa @file{/dev/disk/by-uuid} y nombres de dispositivo similares para obtener el mismo resultado, no es lo recomendado: estos nodo especiales de dispositivos se crean por el daemon udev y puede no estar disponible cuando el dispositivo sea montado.}." #. type: findex -#: guix-git/doc/guix.texi:14839 +#: guix-git/doc/guix.texi:15196 #, no-wrap msgid "file-system-label" msgstr "file-system-label" #. type: table -#: guix-git/doc/guix.texi:14844 +#: guix-git/doc/guix.texi:15201 msgid "File system labels are created using the @code{file-system-label} procedure, UUIDs are created using @code{uuid}, and @file{/dev} node are plain strings. Here's an example of a file system referred to by its label, as shown by the @command{e2label} command:" msgstr "Las etiquetas del sistema de archivos se crean mediante el uso del procedimiento @code{file-system-label}, los UUID se crean mediante el uso de @code{uuid} y los nodos @file{/dev} son simples cadenas. A continuación se proporciona un ejemplo de un sistema de archivos al que se hace referencia mediante su etiqueta, como es mostrada por la orden @command{e2label}:" #. type: lisp -#: guix-git/doc/guix.texi:14850 +#: guix-git/doc/guix.texi:15207 #, no-wrap msgid "" "(file-system\n" @@ -28230,19 +28932,19 @@ msgstr "" " (device (file-system-label \"mi-home\")))\n" #. type: code{#1} -#: guix-git/doc/guix.texi:14852 guix-git/doc/guix.texi:33130 -#: guix-git/doc/guix.texi:33146 +#: guix-git/doc/guix.texi:15209 guix-git/doc/guix.texi:33495 +#: guix-git/doc/guix.texi:33511 #, no-wrap msgid "uuid" msgstr "uuid" #. type: table -#: guix-git/doc/guix.texi:14860 +#: guix-git/doc/guix.texi:15217 msgid "UUIDs are converted from their string representation (as shown by the @command{tune2fs -l} command) using the @code{uuid} form@footnote{The @code{uuid} form expects 16-byte UUIDs as defined in @uref{https://tools.ietf.org/html/rfc4122, RFC@tie{}4122}. This is the form of UUID used by the ext2 family of file systems and others, but it is different from ``UUIDs'' found in FAT file systems, for instance.}, like this:" msgstr "Los UUID se convierten dede su representación en forma de cadena (como se muestra con la orden @command{tune2fs -l}) mediante el uso de la forma @code{uuid}@footnote{La forma @code{uuid} espera un UUID de 16 bytes como se define en la @uref{https://tools.ietf.org/html/rfc4122, RFC@tie{}4122}. Este es el formato de UUID que usan la familia de sistemas de archivos ext2 y otros, pero es diferente de los ``UUID'' de los sistemas de archivos FAT, por ejemplo.}, como sigue:" #. type: lisp -#: guix-git/doc/guix.texi:14866 +#: guix-git/doc/guix.texi:15223 #, no-wrap msgid "" "(file-system\n" @@ -28256,175 +28958,175 @@ msgstr "" " (device (uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\")))\n" #. type: table -#: guix-git/doc/guix.texi:14874 +#: guix-git/doc/guix.texi:15231 msgid "When the source of a file system is a mapped device (@pxref{Mapped Devices}), its @code{device} field @emph{must} refer to the mapped device name---e.g., @file{\"/dev/mapper/root-partition\"}. This is required so that the system knows that mounting the file system depends on having the corresponding device mapping established." msgstr "Cuando la fuente de un sistema de archivos es un dispositivo traducido (@pxref{Mapped Devices}), su campo @code{device} @emph{debe} hacer referencia al nombre del dispositivo traducido---por ejemplo, @file{\"/dev/mapper/particion-raiz\"}. Esto es necesario para que el sistema sepa que el montaje del sistema de archivos depende del establecimiento de la traducción de dispositivos correspondiente." #. type: item -#: guix-git/doc/guix.texi:14875 +#: guix-git/doc/guix.texi:15232 #, no-wrap msgid "@code{flags} (default: @code{'()})" msgstr "@code{flags} (predeterminadas: @code{'()})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:14885 +#: guix-git/doc/guix.texi:15242 msgid "This is a list of symbols denoting mount flags. Recognized flags include @code{read-only}, @code{bind-mount}, @code{no-dev} (disallow access to special files), @code{no-suid} (ignore setuid and setgid bits), @code{no-atime} (do not update file access times), @code{strict-atime} (update file access time), @code{lazy-time} (only update time on the in-memory version of the file inode), and @code{no-exec} (disallow program execution). @xref{Mount-Unmount-Remount,,, libc, The GNU C Library Reference Manual}, for more information on these flags." msgstr "Es una lista de símbolos que indican opciones del montado. Las opciones reconocidas incluyen @code{read-only}@footnote{NdT: modo de sólo lectura.}, @code{bind-mount}@footnote{NdT: montaje enlazado.}, @code{no-dev} (prohibición del acceso a archivos especiales), @code{no-suid} (ignora los bits setuid y setgid), @code{no-atime} (no actualiza la marca de tiempo del acceso a archivos), @code{strict-atime} (actualiza la marca de tiempo del acceso a archivos), @code{lazy-time} (únicamente actualiza la marca de tiempo en la versión en memoria del nodo-i) y @code{no-exec} (no permite de la ejecución de programas). @xref{Mount-Unmount-Remount,,, libc, The GNU C Library Reference Manual}, para más información sobre estas opciones." #. type: item -#: guix-git/doc/guix.texi:14886 +#: guix-git/doc/guix.texi:15243 #, no-wrap msgid "@code{options} (default: @code{#f})" msgstr "@code{options} (predeterminadas: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:14895 +#: guix-git/doc/guix.texi:15252 msgid "This is either @code{#f}, or a string denoting mount options passed to the file system driver. @xref{Mount-Unmount-Remount,,, libc, The GNU C Library Reference Manual}, for details and run @command{man 8 mount} for options for various file systems. Note that the @code{file-system-options->alist} and @code{alist->file-system-options} procedures from @code{(gnu system file-systems)} can be used to convert file system options given as an association list to the string representation, and vice-versa." msgstr "Es o bien @code{#f}, o bien una cadena que denota las opciones de montaje proporcionadas al controlador del sistema de archivos. @xref{Mount-Unmount-Remount,,, libc, The GNU C Library Reference Manual} para obtener detalles, y ejecute @command{man 8 mount} para conocer las opciones de varios sistemas de archivos. Tenga en cuenta los procedimientos @code{file-system-options->alist} y @code{alist->file-system-options} de @code{(gnu system file-systems)} pueden usarse para convertir las opciones de sistema de archivos proporcionadas como una lista asociativa a su representación en cadena y viceversa." #. type: item -#: guix-git/doc/guix.texi:14896 +#: guix-git/doc/guix.texi:15253 #, no-wrap msgid "@code{mount?} (default: @code{#t})" msgstr "@code{mount?} (predeterminado: @code{#t})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:14901 +#: guix-git/doc/guix.texi:15258 msgid "This value indicates whether to automatically mount the file system when the system is brought up. When set to @code{#f}, the file system gets an entry in @file{/etc/fstab} (read by the @command{mount} command) but is not automatically mounted." msgstr "Este valor indica si debe montarse el sistema de archivos automáticamente al iniciar el sistema. Cuando se establece como @code{#f}, el sistema de archivos tiene una entrada en @file{/etc/fstab} (el cual es leído por la orden @command{mount}) pero no se montará automáticamente." #. type: item -#: guix-git/doc/guix.texi:14902 +#: guix-git/doc/guix.texi:15259 #, no-wrap msgid "@code{needed-for-boot?} (default: @code{#f})" msgstr "@code{needed-for-boot?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:14907 +#: guix-git/doc/guix.texi:15264 msgid "This Boolean value indicates whether the file system is needed when booting. If that is true, then the file system is mounted when the initial RAM disk (initrd) is loaded. This is always the case, for instance, for the root file system." msgstr "Este valor lógico indica si el sistema de archivos es necesario para el arranque. Si es verdadero, el sistema de archivos se monta al cargar el disco inicial en RAM (initrd). Este es siempre el caso, por ejemplo, para el sistema de archivos raíz." #. type: item -#: guix-git/doc/guix.texi:14908 +#: guix-git/doc/guix.texi:15265 #, no-wrap msgid "@code{check?} (default: @code{#t})" msgstr "@code{check?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:14912 +#: guix-git/doc/guix.texi:15269 #, fuzzy #| msgid "This Boolean indicates whether the file system needs to be checked for errors before being mounted." msgid "This Boolean indicates whether the file system should be checked for errors before being mounted. How and when this happens can be further adjusted with the following options." msgstr "Este valor lógico indica si el sistema de archivos se debe comprobar en busca de errores antes de montarse." #. type: item -#: guix-git/doc/guix.texi:14913 +#: guix-git/doc/guix.texi:15270 #, fuzzy, no-wrap #| msgid "@code{check-files?} (default: @code{#t})" msgid "@code{skip-check-if-clean?} (default: @code{#t})" msgstr "@code{check-files?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:14918 +#: guix-git/doc/guix.texi:15275 msgid "When true, this Boolean indicates that a file system check triggered by @code{check?} may exit early if the file system is marked as ``clean'', meaning that it was previously correctly unmounted and should not contain errors." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14922 +#: guix-git/doc/guix.texi:15279 msgid "Setting this to false will always force a full consistency check when @code{check?} is true. This may take a very long time and is not recommended on healthy systems---in fact, it may reduce reliability!" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14926 +#: guix-git/doc/guix.texi:15283 msgid "Conversely, some primitive file systems like @code{fat} do not keep track of clean shutdowns and will perform a full scan regardless of the value of this option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14927 +#: guix-git/doc/guix.texi:15284 #, fuzzy, no-wrap #| msgid "@code{redis} (default: @code{redis})" msgid "@code{repair} (default: @code{'preen})" msgstr "@code{redis} (predeterminado: @code{redis})" #. type: table -#: guix-git/doc/guix.texi:14930 +#: guix-git/doc/guix.texi:15287 msgid "When @code{check?} finds errors, it can (try to) repair them and continue booting. This option controls when and how to do so." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14934 +#: guix-git/doc/guix.texi:15291 msgid "If false, try not to modify the file system at all. Checking certain file systems like @code{jfs} may still write to the device to replay the journal. No repairs will be attempted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14937 +#: guix-git/doc/guix.texi:15294 msgid "If @code{#t}, try to repair any errors found and assume ``yes'' to all questions. This will fix the most errors, but may be risky." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14941 +#: guix-git/doc/guix.texi:15298 msgid "If @code{'preen}, repair only errors that are safe to fix without human interaction. What that means is left up to the developers of each file system and may be equivalent to ``none'' or ``all''." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14942 +#: guix-git/doc/guix.texi:15299 #, no-wrap msgid "@code{create-mount-point?} (default: @code{#f})" msgstr "@code{create-mount-point?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:14944 +#: guix-git/doc/guix.texi:15301 msgid "When true, the mount point is created if it does not exist yet." msgstr "Cuando es verdadero, el punto de montaje es creado si no existía previamente." #. type: item -#: guix-git/doc/guix.texi:14945 +#: guix-git/doc/guix.texi:15302 #, no-wrap msgid "@code{mount-may-fail?} (default: @code{#f})" msgstr "@code{mount-may-fail?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:14950 +#: guix-git/doc/guix.texi:15307 msgid "When true, this indicates that mounting this file system can fail but that should not be considered an error. This is useful in unusual cases; an example of this is @code{efivarfs}, a file system that can only be mounted on EFI/UEFI systems." msgstr "Cuando tiene valor verdadero indica que el montaje de este sistema de archivos puede fallar pero no debe considerarse un error. Es útil en casos poco habituales; un ejemplo de esto es @code{efivarfs}, un sistema de archivos que únicamente puede montarse en sistemas EFI/UEFI." #. type: item -#: guix-git/doc/guix.texi:14951 guix-git/doc/guix.texi:15347 +#: guix-git/doc/guix.texi:15308 guix-git/doc/guix.texi:15704 #, no-wrap msgid "@code{dependencies} (default: @code{'()})" msgstr "@code{dependencies} (predeterminadas: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:14955 +#: guix-git/doc/guix.texi:15312 msgid "This is a list of @code{} or @code{} objects representing file systems that must be mounted or mapped devices that must be opened before (and unmounted or closed after) this one." msgstr "Una lista de objetos @code{} o @code{} que representan sistemas de archivos que deben montarse o dispositivos traducidos que se deben abrir antes (y desmontar o cerrar después) que el declarado." #. type: table -#: guix-git/doc/guix.texi:14959 +#: guix-git/doc/guix.texi:15316 msgid "As an example, consider a hierarchy of mounts: @file{/sys/fs/cgroup} is a dependency of @file{/sys/fs/cgroup/cpu} and @file{/sys/fs/cgroup/memory}." msgstr "Como ejemplo, considere la siguiente jerarquía de montajes: @file{/sys/fs/cgroup} es una dependencia de @file{/sys/fs/cgroup/cpu} y @file{/sys/fs/cgroup/memory}." #. type: table -#: guix-git/doc/guix.texi:14962 +#: guix-git/doc/guix.texi:15319 msgid "Another example is a file system that depends on a mapped device, for example for an encrypted partition (@pxref{Mapped Devices})." msgstr "Otro ejemplo es un sistema de archivos que depende de un dispositivo traducido, por ejemplo una partición cifrada (@pxref{Mapped Devices})." #. type: deffn -#: guix-git/doc/guix.texi:14965 +#: guix-git/doc/guix.texi:15322 #, no-wrap msgid "{Scheme Procedure} file-system-label @var{str}" msgstr "{Procedimiento Scheme} file-system-label @var{str}" #. type: deffn -#: guix-git/doc/guix.texi:14968 +#: guix-git/doc/guix.texi:15325 msgid "This procedure returns an opaque file system label from @var{str}, a string:" msgstr "Este procedimiento devuelve un objeto opaco de etiqueta del sistema de archivos a partir de @var{str}, una cadena:" #. type: lisp -#: guix-git/doc/guix.texi:14972 +#: guix-git/doc/guix.texi:15329 #, no-wrap msgid "" "(file-system-label \"home\")\n" @@ -28434,104 +29136,104 @@ msgstr "" "@result{} #\n" #. type: deffn -#: guix-git/doc/guix.texi:14976 +#: guix-git/doc/guix.texi:15333 msgid "File system labels are used to refer to file systems by label rather than by device name. See above for examples." msgstr "Las etiquetas del sistema de archivos se usan para hacer referencia a los sistemas de archivos por etiqueta en vez de por nombre de dispositivo. Puede haber encontrado previamente ejemplos en el texto." #. type: Plain text -#: guix-git/doc/guix.texi:14980 +#: guix-git/doc/guix.texi:15337 msgid "The @code{(gnu system file-systems)} exports the following useful variables." msgstr "El módulo @code{(gnu system file-systems)} exporta las siguientes variables útiles." #. type: defvr -#: guix-git/doc/guix.texi:14981 +#: guix-git/doc/guix.texi:15338 #, no-wrap msgid "{Scheme Variable} %base-file-systems" msgstr "{Variable Scheme} %base-file-systems" #. type: defvr -#: guix-git/doc/guix.texi:14986 +#: guix-git/doc/guix.texi:15343 msgid "These are essential file systems that are required on normal systems, such as @code{%pseudo-terminal-file-system} and @code{%immutable-store} (see below). Operating system declarations should always contain at least these." msgstr "Estos son los sistemas de archivos esenciales que se necesitan en sistemas normales, como @code{%pseudo-terminal-file-system} y @code{%immutable-store} (véase a continuación). Las declaraciones de sistemas operativos deben contener siempre estos al menos." #. type: defvr -#: guix-git/doc/guix.texi:14988 +#: guix-git/doc/guix.texi:15345 #, no-wrap msgid "{Scheme Variable} %pseudo-terminal-file-system" msgstr "{Variable Scheme} %pseudo-terminal-file-systems" #. type: defvr -#: guix-git/doc/guix.texi:14994 +#: guix-git/doc/guix.texi:15351 msgid "This is the file system to be mounted as @file{/dev/pts}. It supports @dfn{pseudo-terminals} created @i{via} @code{openpty} and similar functions (@pxref{Pseudo-Terminals,,, libc, The GNU C Library Reference Manual}). Pseudo-terminals are used by terminal emulators such as @command{xterm}." msgstr "El sistema de archivos que debe montarse como @file{/dev/pts}. Permite la creación de @dfn{pseudoterminales} a través de @code{openpty} y funciones similares (@pxref{Pseudo-Terminals,,, libc, The GNU C Library Reference Manual}). Los pseudoterminales son usados por emuladores de terminales como @command{xterm}." #. type: defvr -#: guix-git/doc/guix.texi:14996 +#: guix-git/doc/guix.texi:15353 #, no-wrap msgid "{Scheme Variable} %shared-memory-file-system" msgstr "{Variable Scheme} %shared-memory-file-system" #. type: defvr -#: guix-git/doc/guix.texi:15000 +#: guix-git/doc/guix.texi:15357 msgid "This file system is mounted as @file{/dev/shm} and is used to support memory sharing across processes (@pxref{Memory-mapped I/O, @code{shm_open},, libc, The GNU C Library Reference Manual})." msgstr "Este sistema de archivos se monta como @file{/dev/shm} y se usa para permitir el uso de memoria compartida entre procesos (@pxref{Memory-mapped I/O, @code{shm_open},, libc, The GNU C Library Reference Manual})." #. type: defvr -#: guix-git/doc/guix.texi:15002 +#: guix-git/doc/guix.texi:15359 #, no-wrap msgid "{Scheme Variable} %immutable-store" msgstr "{Variable Scheme} %immutable-store" #. type: defvr -#: guix-git/doc/guix.texi:15007 +#: guix-git/doc/guix.texi:15364 msgid "This file system performs a read-only ``bind mount'' of @file{/gnu/store}, making it read-only for all the users including @code{root}. This prevents against accidental modification by software running as @code{root} or by system administrators." msgstr "Este sistema de archivos crea un montaje enlazado (``bind-mount'') de @file{/gnu/store}, permitiendo solo el acceso de lectura para todas las usuarias incluyendo a @code{root}. Esto previene modificaciones accidentales por software que se ejecuta como @code{root} o por las administradoras del sistema." #. type: defvr -#: guix-git/doc/guix.texi:15010 +#: guix-git/doc/guix.texi:15367 msgid "The daemon itself is still able to write to the store: it remounts it read-write in its own ``name space.''" msgstr "El daemon sí es capaz de escribir en el almacén: vuelve a montar @file{/gnu/store} en modo lectura-escritura en su propio ``espacio de nombres''." #. type: defvr -#: guix-git/doc/guix.texi:15012 +#: guix-git/doc/guix.texi:15369 #, no-wrap msgid "{Scheme Variable} %binary-format-file-system" msgstr "{Variable Scheme} %binary-format-file-system" #. type: defvr -#: guix-git/doc/guix.texi:15016 +#: guix-git/doc/guix.texi:15373 msgid "The @code{binfmt_misc} file system, which allows handling of arbitrary executable file types to be delegated to user space. This requires the @code{binfmt.ko} kernel module to be loaded." msgstr "El sistema de archivos @code{binfmt_misc}, que permite que el manejo de tipos de archivos ejecutables arbitrarios se delegue al espacio de usuaria. Necesita la carga del módulo del núcleo @code{binfmt.ko}." #. type: defvr -#: guix-git/doc/guix.texi:15018 +#: guix-git/doc/guix.texi:15375 #, no-wrap msgid "{Scheme Variable} %fuse-control-file-system" msgstr "{Variable Scheme} %fuse-control-file-system" #. type: defvr -#: guix-git/doc/guix.texi:15022 +#: guix-git/doc/guix.texi:15379 msgid "The @code{fusectl} file system, which allows unprivileged users to mount and unmount user-space FUSE file systems. This requires the @code{fuse.ko} kernel module to be loaded." msgstr "El sistema de archivos @code{fusectl}, que permite a usuarias sin privilegios montar y desmontar sistemas de archivos de espacio de usuaria FUSE. Necesita la carga del módulo del núcleo @code{fuse.ko}." #. type: Plain text -#: guix-git/doc/guix.texi:15026 +#: guix-git/doc/guix.texi:15383 msgid "The @code{(gnu system uuid)} module provides tools to deal with file system ``unique identifiers'' (UUIDs)." msgstr "El módulo @code{(gnu system uuid)} proporciona herramientas para tratar con ``identificadores únicos'' de sistemas de archivos (UUID)." #. type: deffn -#: guix-git/doc/guix.texi:15027 +#: guix-git/doc/guix.texi:15384 #, no-wrap msgid "{Scheme Procedure} uuid @var{str} [@var{type}]" msgstr "{Procedimiento Scheme} uuid @var{str} [@var{tipo}]" #. type: deffn -#: guix-git/doc/guix.texi:15030 +#: guix-git/doc/guix.texi:15387 msgid "Return an opaque UUID (unique identifier) object of the given @var{type} (a symbol) by parsing @var{str} (a string):" msgstr "Devuelve un objeto opaco de UUID (identificador único) del @var{tipo} (un símbolo) procesando @var{str} (una cadena):" #. type: lisp -#: guix-git/doc/guix.texi:15034 +#: guix-git/doc/guix.texi:15391 #, no-wrap msgid "" "(uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\")\n" @@ -28543,7 +29245,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15037 +#: guix-git/doc/guix.texi:15394 #, no-wrap msgid "" "(uuid \"1234-ABCD\" 'fat)\n" @@ -28553,33 +29255,33 @@ msgstr "" "@result{} #< type: fat bv: @dots{}>\n" #. type: deffn -#: guix-git/doc/guix.texi:15041 +#: guix-git/doc/guix.texi:15398 msgid "@var{type} may be one of @code{dce}, @code{iso9660}, @code{fat}, @code{ntfs}, or one of the commonly found synonyms for these." msgstr "@var{tipo} puede ser @code{dce}, @code{iso9660}, @code{fat}, @code{ntfs}, o uno de sus sinónimos habitualmente usados para estos tipos." #. type: deffn -#: guix-git/doc/guix.texi:15044 +#: guix-git/doc/guix.texi:15401 msgid "UUIDs are another way to unambiguously refer to file systems in operating system configuration. See the examples above." msgstr "Los UUID son otra forma de hacer referencia de forma inequívoca a sistemas de archivos en la configuración de sistema operativo. Puede haber encontrado previamente ejemplos en el texto." #. type: subsection -#: guix-git/doc/guix.texi:15047 guix-git/doc/guix.texi:15048 +#: guix-git/doc/guix.texi:15404 guix-git/doc/guix.texi:15405 #, no-wrap msgid "Btrfs file system" msgstr "Sistema de archivos Btrfs" #. type: Plain text -#: guix-git/doc/guix.texi:15054 +#: guix-git/doc/guix.texi:15411 msgid "The Btrfs has special features, such as subvolumes, that merit being explained in more details. The following section attempts to cover basic as well as complex uses of a Btrfs file system with the Guix System." msgstr "El sistema de archivos Btrfs tiene características especiales, como los subvolúmenes, que merecen una explicación más detallada. La siguiente sección intenta cubrir usos básicos así como usos complejos del sistema de archivos Btrfs con el sistema Guix." #. type: Plain text -#: guix-git/doc/guix.texi:15057 +#: guix-git/doc/guix.texi:15414 msgid "In its simplest usage, a Btrfs file system can be described, for example, by:" msgstr "Con el uso más simple se puede describir un sistema de archivos Btrfs puede describirse, por ejemplo, del siguiente modo:" #. type: lisp -#: guix-git/doc/guix.texi:15063 +#: guix-git/doc/guix.texi:15420 #, no-wrap msgid "" "(file-system\n" @@ -28593,12 +29295,12 @@ msgstr "" " (device (file-system-label \"mi-home\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15069 +#: guix-git/doc/guix.texi:15426 msgid "The example below is more complex, as it makes use of a Btrfs subvolume, named @code{rootfs}. The parent Btrfs file system is labeled @code{my-btrfs-pool}, and is located on an encrypted device (hence the dependency on @code{mapped-devices}):" msgstr "El ejemplo siguiente es más complejo, ya que usa un subvolumen de Btrfs, llamado @code{rootfs}. El sistema de archivos tiene la etiqueta @code{mi-btrfs}, y se encuentra en un dispositivo cifrado (de aquí la dependencia de @code{mapped-devices}):" #. type: lisp -#: guix-git/doc/guix.texi:15077 +#: guix-git/doc/guix.texi:15434 #, no-wrap msgid "" "(file-system\n" @@ -28616,17 +29318,17 @@ msgstr "" " (dependencies mapped-devices))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15088 +#: guix-git/doc/guix.texi:15445 msgid "Some bootloaders, for example GRUB, only mount a Btrfs partition at its top level during the early boot, and rely on their configuration to refer to the correct subvolume path within that top level. The bootloaders operating in this way typically produce their configuration on a running system where the Btrfs partitions are already mounted and where the subvolume information is readily available. As an example, @command{grub-mkconfig}, the configuration generator command shipped with GRUB, reads @file{/proc/self/mountinfo} to determine the top-level path of a subvolume." msgstr "Algunos cargadores de arranque, por ejemplo GRUB, únicamente montan una partición Btrfs en su nivel superior durante los momentos iniciales del arranque, y dependen de que su configuración haga referencia a la ruta correcta del subvolumen dentro de dicho nivel superior. Los cargadores de arranque que operan de este modo producen habitualmente su configuración en un sistema en ejecución donde las particiones Btrfs ya se encuentran montadas y donde la información de subvolúmenes está disponible. Como un ejemplo, @command{grub-mkconfig}, la herramienta de generación de configuración que viene con GRUB, lee @file{/proc/self/mountinfo} para determinar la ruta desde el nivel superior de un subvolumen." #. type: Plain text -#: guix-git/doc/guix.texi:15096 +#: guix-git/doc/guix.texi:15453 msgid "The Guix System produces a bootloader configuration using the operating system configuration as its sole input; it is therefore necessary to extract the subvolume name on which @file{/gnu/store} lives (if any) from that operating system configuration. To better illustrate, consider a subvolume named 'rootfs' which contains the root file system data. In such situation, the GRUB bootloader would only see the top level of the root Btrfs partition, e.g.:" msgstr "El sistema Guix produce una configuración para el cargador de arranque usando la configuración del sistema operativo como su única entrada; por lo tanto es necesario extraer la información del subvolumen en el que se encuentra @file{/gnu/store} (en caso de estar en alguno) de la configuración del sistema operativo. Para ilustrar esta situación mejor, considere un subvolumen que se llama 'rootfs' el cual contiene el sistema de archivos raiz. En esta situación, el cargador de arranque GRUB únicamente vería el nivel superior de la partición de raíz de Btrfs, por ejemplo:" #. type: example -#: guix-git/doc/guix.texi:15103 +#: guix-git/doc/guix.texi:15460 #, no-wrap msgid "" "/ (top level)\n" @@ -28642,17 +29344,17 @@ msgstr "" "[...]\n" #. type: Plain text -#: guix-git/doc/guix.texi:15108 +#: guix-git/doc/guix.texi:15465 msgid "Thus, the subvolume name must be prepended to the @file{/gnu/store} path of the kernel, initrd binaries and any other files referred to in the GRUB configuration that must be found during the early boot." msgstr "Por lo tanto, el nombre del subvolumen debe añadirse al inicio de la ruta al núcleo, los binarios de initrd y otros archivos a los que haga referencia la configuración de GRUB en @file{/gnu/store}, para que puedan encontrarse en los momentos iniciales del arranque." #. type: Plain text -#: guix-git/doc/guix.texi:15111 +#: guix-git/doc/guix.texi:15468 msgid "The next example shows a nested hierarchy of subvolumes and directories:" msgstr "El siguiente ejemplo muestra una jerarquía anidada de subvolúmenes y directorios:" #. type: example -#: guix-git/doc/guix.texi:15118 +#: guix-git/doc/guix.texi:15475 #, no-wrap msgid "" "/ (top level)\n" @@ -28668,17 +29370,17 @@ msgstr "" "[...]\n" #. type: Plain text -#: guix-git/doc/guix.texi:15125 +#: guix-git/doc/guix.texi:15482 msgid "This scenario would work without mounting the 'store' subvolume. Mounting 'rootfs' is sufficient, since the subvolume name matches its intended mount point in the file system hierarchy. Alternatively, the 'store' subvolume could be referred to by setting the @code{subvol} option to either @code{/rootfs/gnu/store} or @code{rootfs/gnu/store}." msgstr "Este escenario funcionaría sin montar el subvolumen 'store'. Montar 'rootfs' es suficiente, puesto que el nombre del subvolumen corresponde con el punto de montaje deseado en la jerarquía del sistema de archivos. Alternativamente se puede hacer referencia el subvolumen 'store' proporcionando tanto el valor @code{/rootfs/gnu/store} como el valor @code{rootfs/gnu/store} a la opción @code{subvol}." #. type: Plain text -#: guix-git/doc/guix.texi:15127 +#: guix-git/doc/guix.texi:15484 msgid "Finally, a more contrived example of nested subvolumes:" msgstr "Por último, un ejemplo más elaborado de subvolúmenes anidados:" #. type: example -#: guix-git/doc/guix.texi:15134 +#: guix-git/doc/guix.texi:15491 #, no-wrap msgid "" "/ (top level)\n" @@ -28694,12 +29396,12 @@ msgstr "" "[...]\n" #. type: Plain text -#: guix-git/doc/guix.texi:15141 +#: guix-git/doc/guix.texi:15498 msgid "Here, the 'guix-store' subvolume doesn't match its intended mount point, so it is necessary to mount it. The subvolume must be fully specified, by passing its file name to the @code{subvol} option. To illustrate, the 'guix-store' subvolume could be mounted on @file{/gnu/store} by using a file system declaration such as:" msgstr "Aquí, el subvolumen 'guix-store' no corresponde con el punto de montaje deseado, por lo que es necesario montarlo. El subvolumen debe ser especificado completamente proporcionando su nombre de archivo a la opción @code{subvol}. Para ilustrar este ejemplo, el subvolumen 'guix-store' puede montarse en @file{/gnu/store} usando una declaración de sistema de archivos como la siguiente:" #. type: lisp -#: guix-git/doc/guix.texi:15149 +#: guix-git/doc/guix.texi:15506 #, no-wrap msgid "" "(file-system\n" @@ -28717,132 +29419,132 @@ msgstr "" "compress-force=zstd,space_cache=v2\"))\n" #. type: cindex -#: guix-git/doc/guix.texi:15154 +#: guix-git/doc/guix.texi:15511 #, no-wrap msgid "device mapping" msgstr "traducción de dispositivos" # TODO: (MAAV) Comprobar como se ha hecho en otros proyectos. #. type: cindex -#: guix-git/doc/guix.texi:15155 +#: guix-git/doc/guix.texi:15512 #, no-wrap msgid "mapped devices" msgstr "dispositivos traducidos" #. type: Plain text -#: guix-git/doc/guix.texi:15172 +#: guix-git/doc/guix.texi:15529 #, fuzzy msgid "The Linux kernel has a notion of @dfn{device mapping}: a block device, such as a hard disk partition, can be @dfn{mapped} into another device, usually in @code{/dev/mapper/}, with additional processing over the data that flows through it@footnote{Note that the GNU@tie{}Hurd makes no difference between the concept of a ``mapped device'' and that of a file system: both boil down to @emph{translating} input/output operations made on a file to operations on its backing store. Thus, the Hurd implements mapped devices, like file systems, using the generic @dfn{translator} mechanism (@pxref{Translators,,, hurd, The GNU Hurd Reference Manual}).}. A typical example is encryption device mapping: all writes to the mapped device are encrypted, and all reads are deciphered, transparently. Guix extends this notion by considering any device or set of devices that are @dfn{transformed} in some way to create a new device; for instance, RAID devices are obtained by @dfn{assembling} several other devices, such as hard disks or partitions, into a new one that behaves as one partition." msgstr "El núcleo Linux tiene una noción de @dfn{traducción de dispositivos}: un dispositivo de bloques, como una partición de disco duro, puede @dfn{traducirse} en otro dispositivo, habitualmente en @code{/dev/mapper/}, con un procesamiento adicional sobre los datos que fluyen a través de ella@footnote{Fíjese que GNU@tie{}Hurd no diferencia entre el concepto de un ``dispositivo traducido'' y el de un sistema de archivos: ambos se reducen a @emph{traducir} operaciones de entrada/salida realizadas en un archivo a operaciones en su almacenamiento subyacente. Por tanto, Hurd implementa dispositivos traducidos, como sistemas de archivos, usando el mecanismo genérico de @dfn{traducción} (@pxref{Translators,,, hurd, The GNU Hurd Reference Manual}).}. Un ejemplo típico es la traducción de dispositivos para el cifrado: todas las escrituras en el dispositivo traducido se cifran, y todas las lecturas se descifran, de forma transparente. Guix extiende esta noción considerando cualquier dispositivo o conjunto de dispositivos que son @dfn{transformados} de alguna manera para crear un nuevo dispositivo; por ejemplo, los dispositivos RAID se obtienen @dfn{ensamblando} otros dispositivos, como discos duros o particiones, en uno nuevo que se comporta como una partición. Otros ejemplos, todavía no implementados, son los volúmenes lógicos LVM." #. type: Plain text -#: guix-git/doc/guix.texi:15175 +#: guix-git/doc/guix.texi:15532 msgid "Mapped devices are declared using the @code{mapped-device} form, defined as follows; for examples, see below." msgstr "Los dispositivos traducidos se declaran mediante el uso de la forma @code{mapped-device}, definida a continuación; ejemplos más adelante." #. type: deftp -#: guix-git/doc/guix.texi:15176 +#: guix-git/doc/guix.texi:15533 #, no-wrap msgid "{Data Type} mapped-device" msgstr "{Tipo de datos} mapped-device" #. type: deftp -#: guix-git/doc/guix.texi:15179 +#: guix-git/doc/guix.texi:15536 msgid "Objects of this type represent device mappings that will be made when the system boots up." msgstr "Objetos de este tipo representan traducciones de dispositivo que se llevarán a cabo cuando el sistema arranque." #. type: table -#: guix-git/doc/guix.texi:15186 +#: guix-git/doc/guix.texi:15543 #, fuzzy msgid "This is either a string specifying the name of the block device to be mapped, such as @code{\"/dev/sda3\"}, or a list of such strings when several devices need to be assembled for creating a new one. In case of LVM this is a string specifying name of the volume group to be mapped." msgstr "Puede ser tanto una cadena que especifica el nombre de un dispositivo de bloques a traducir, como @code{\"/dev/sda3\"}, o una lista de dichas cadenas cuando varios dispositivos necesitan ser ensamblados para crear uno nuevo." #. type: code{#1} -#: guix-git/doc/guix.texi:15187 guix-git/doc/guix.texi:15342 +#: guix-git/doc/guix.texi:15544 guix-git/doc/guix.texi:15699 #, no-wrap msgid "target" msgstr "target" #. type: table -#: guix-git/doc/guix.texi:15196 +#: guix-git/doc/guix.texi:15553 #, fuzzy msgid "This string specifies the name of the resulting mapped device. For kernel mappers such as encrypted devices of type @code{luks-device-mapping}, specifying @code{\"my-partition\"} leads to the creation of the @code{\"/dev/mapper/my-partition\"} device. For RAID devices of type @code{raid-device-mapping}, the full device name such as @code{\"/dev/md0\"} needs to be given. LVM logical volumes of type @code{lvm-device-mapping} need to be specified as @code{\"VGNAME-LVNAME\"}." msgstr "Esta cadena especifica el nombre del dispositivo traducido resultante. Para traductores del núcleo como dispositivos de cifrado del tipo @code{luks-device-mapping}, especificar @code{\"mi-particion\"} produce la creación del dispositivo @code{\"/dev/mapper/mi-particion\"}. Para dispositivos RAID de tipo @code{raid-device-mapping}, el nombre del dispositivo completo como @code{\"/dev/md0\"} debe ser proporcionado." #. type: code{#1} -#: guix-git/doc/guix.texi:15197 guix-git/doc/guix.texi:34634 +#: guix-git/doc/guix.texi:15554 guix-git/doc/guix.texi:35073 #, fuzzy, no-wrap msgid "targets" msgstr "target" #. type: table -#: guix-git/doc/guix.texi:15200 +#: guix-git/doc/guix.texi:15557 msgid "This list of strings specifies names of the resulting mapped devices in case there are several. The format is identical to @var{target}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15204 +#: guix-git/doc/guix.texi:15561 msgid "This must be a @code{mapped-device-kind} object, which specifies how @var{source} is mapped to @var{target}." msgstr "Debe ser un objeto @code{mapped-device-kind}, que especifica cómo @var{source} se traduce a @var{target}." #. type: defvr -#: guix-git/doc/guix.texi:15207 +#: guix-git/doc/guix.texi:15564 #, no-wrap msgid "{Scheme Variable} luks-device-mapping" msgstr "{Variable Scheme} luks-device-mapping" #. type: defvr -#: guix-git/doc/guix.texi:15211 +#: guix-git/doc/guix.texi:15568 msgid "This defines LUKS block device encryption using the @command{cryptsetup} command from the package with the same name. It relies on the @code{dm-crypt} Linux kernel module." msgstr "Define el cifrado de bloques LUKS mediante el uso de la orden @command{cryptsetup} del paquete del mismo nombre. Depende del módulo @code{dm-crypt} del núcleo Linux." #. type: defvr -#: guix-git/doc/guix.texi:15213 +#: guix-git/doc/guix.texi:15570 #, no-wrap msgid "{Scheme Variable} raid-device-mapping" msgstr "{Variable Scheme} raid-device-mapping" #. type: defvr -#: guix-git/doc/guix.texi:15218 +#: guix-git/doc/guix.texi:15575 msgid "This defines a RAID device, which is assembled using the @code{mdadm} command from the package with the same name. It requires a Linux kernel module for the appropriate RAID level to be loaded, such as @code{raid456} for RAID-4, RAID-5 or RAID-6, or @code{raid10} for RAID-10." msgstr "Define un dispositivo RAID, el cual se ensambla mediante el uso de la orden @code{mdadm} del paquete del mismo nombre. Requiere la carga del módulo del núcleo Linux para el nivel RAID apropiado, como @code{raid456} para RAID-4, RAID-5 o RAID-6, o @code{raid10} para RAID-10." #. type: cindex -#: guix-git/doc/guix.texi:15220 +#: guix-git/doc/guix.texi:15577 #, fuzzy, no-wrap msgid "LVM, logical volume manager" msgstr "GNOME, gestor de ingreso al sistema" #. type: defvr -#: guix-git/doc/guix.texi:15221 +#: guix-git/doc/guix.texi:15578 #, fuzzy, no-wrap msgid "{Scheme Variable} lvm-device-mapping" msgstr "{Variable Scheme} luks-device-mapping" #. type: defvr -#: guix-git/doc/guix.texi:15226 +#: guix-git/doc/guix.texi:15583 msgid "This defines one or more logical volumes for the Linux @uref{https://www.sourceware.org/lvm2/, Logical Volume Manager (LVM)}. The volume group is activated by the @command{vgchange} command from the @code{lvm2} package." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15228 +#: guix-git/doc/guix.texi:15585 #, no-wrap msgid "disk encryption" msgstr "cifrado de disco" #. type: cindex -#: guix-git/doc/guix.texi:15229 +#: guix-git/doc/guix.texi:15586 #, no-wrap msgid "LUKS" msgstr "LUKS" #. type: Plain text -#: guix-git/doc/guix.texi:15237 +#: guix-git/doc/guix.texi:15594 msgid "The following example specifies a mapping from @file{/dev/sda3} to @file{/dev/mapper/home} using LUKS---the @url{https://gitlab.com/cryptsetup/cryptsetup,Linux Unified Key Setup}, a standard mechanism for disk encryption. The @file{/dev/mapper/home} device can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems})." msgstr "El siguiente ejemplo especifica una traducción de @file{/dev/sda3} a @file{/dev/mapper/home} mediante el uso de LUKS---la @url{https://gitlab.com/cryptsetup/cryptsetup,configuración de claves unificada de Linux}, un mecanismo estándar para cifrado de disco. El dispositivo @file{/dev/mapper/home} puede usarse entonces como el campo @code{device} de una declaración @code{file-system} (@pxref{File Systems})." #. type: lisp -#: guix-git/doc/guix.texi:15243 +#: guix-git/doc/guix.texi:15600 #, no-wrap msgid "" "(mapped-device\n" @@ -28856,23 +29558,23 @@ msgstr "" " (type luks-device-mapping))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15248 +#: guix-git/doc/guix.texi:15605 msgid "Alternatively, to become independent of device numbering, one may obtain the LUKS UUID (@dfn{unique identifier}) of the source device by a command like:" msgstr "De manera alternativa, para independizarse de la numeración de dispositivos, puede obtenerse el UUID LUKS (@dfn{identificador único}) del dispositivo fuente con una orden así:" #. type: example -#: guix-git/doc/guix.texi:15251 +#: guix-git/doc/guix.texi:15608 #, no-wrap msgid "cryptsetup luksUUID /dev/sda3\n" msgstr "cryptsetup luksUUID /dev/sda3\n" #. type: Plain text -#: guix-git/doc/guix.texi:15254 +#: guix-git/doc/guix.texi:15611 msgid "and use it as follows:" msgstr "y usarlo como sigue:" #. type: lisp -#: guix-git/doc/guix.texi:15260 +#: guix-git/doc/guix.texi:15617 #, no-wrap msgid "" "(mapped-device\n" @@ -28887,26 +29589,26 @@ msgstr "" # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:15262 +#: guix-git/doc/guix.texi:15619 #, no-wrap msgid "swap encryption" msgstr "cifrado del intercambio" # TODO: Comprobar traducción. #. type: Plain text -#: guix-git/doc/guix.texi:15269 +#: guix-git/doc/guix.texi:15626 #, fuzzy #| msgid "It is also desirable to encrypt swap space, since swap space may contain sensitive data. One way to accomplish that is to use a swap file in a file system on a device mapped via LUKS encryption. In this way, the swap file is encrypted because the entire device is encrypted. @xref{Preparing for Installation,,Disk Partitioning}, for an example." msgid "It is also desirable to encrypt swap space, since swap space may contain sensitive data. One way to accomplish that is to use a swap file in a file system on a device mapped via LUKS encryption. In this way, the swap file is encrypted because the entire device is encrypted. @xref{Swap Space}, or @xref{Preparing for Installation,,Disk Partitioning}, for an example." msgstr "También es deseable cifrar el espacio de intercambio, puesto que el espacio de intercambio puede contener información sensible. Una forma de conseguirlo es usar un archivo de intercambio en un sistema de archivos en un dispositivo traducido a través del cifrado LUKS. @xref{Preparing for Installation,,Particionado del disco}, para un ejemplo." #. type: Plain text -#: guix-git/doc/guix.texi:15272 +#: guix-git/doc/guix.texi:15629 msgid "A RAID device formed of the partitions @file{/dev/sda1} and @file{/dev/sdb1} may be declared as follows:" msgstr "Un dispositivo RAID formado por las particiones @file{/dev/sda1} y @file{/dev/sdb1} puede declararse como se muestra a continuación:" #. type: lisp -#: guix-git/doc/guix.texi:15278 +#: guix-git/doc/guix.texi:15635 #, no-wrap msgid "" "(mapped-device\n" @@ -28920,17 +29622,17 @@ msgstr "" " (type raid-device-mapping))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15285 +#: guix-git/doc/guix.texi:15642 msgid "The @file{/dev/md0} device can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems}). Note that the RAID level need not be given; it is chosen during the initial creation and formatting of the RAID device and is determined automatically later." msgstr "El dispositivo @file{/dev/md0} puede usarse entonces como el campo @code{device} de una declaración @code{file-system} (@pxref{File Systems}). Fíjese que no necesita proporcionar el nivel RAID; se selecciona durante la creación inicial y formato del dispositivo RAID y después se determina automáticamente." #. type: Plain text -#: guix-git/doc/guix.texi:15288 +#: guix-git/doc/guix.texi:15645 msgid "LVM logical volumes ``alpha'' and ``beta'' from volume group ``vg0'' can be declared as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15294 +#: guix-git/doc/guix.texi:15651 #, fuzzy, no-wrap msgid "" "(mapped-device\n" @@ -28944,111 +29646,111 @@ msgstr "" " (type luks-device-mapping))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15299 +#: guix-git/doc/guix.texi:15656 msgid "Devices @file{/dev/mapper/vg0-alpha} and @file{/dev/mapper/vg0-beta} can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems})." msgstr "" # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:15302 +#: guix-git/doc/guix.texi:15659 #, no-wrap msgid "swap space" msgstr "memoria de intercambio" #. type: Plain text -#: guix-git/doc/guix.texi:15312 +#: guix-git/doc/guix.texi:15669 msgid "Swap space, as it is commonly called, is a disk area specifically designated for paging: the process in charge of memory management (the Linux kernel or Hurd's default pager) can decide that some memory pages stored in RAM which belong to a running program but are unused should be stored on disk instead. It unloads those from the RAM, freeing up precious fast memory, and writes them to the swap space. If the program tries to access that very page, the memory management process loads it back into memory for the program to use." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15318 +#: guix-git/doc/guix.texi:15675 msgid "A common misconception about swap is that it is only useful when small amounts of RAM are available to the system. However, it should be noted that kernels often use all available RAM for disk access caching to make I/O faster, and thus paging out unused portions of program memory will expand the RAM available for such caching." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15322 +#: guix-git/doc/guix.texi:15679 msgid "For a more detailed description of how memory is managed from the viewpoint of a monolithic kernel, @xref{Memory Concepts,,, libc, The GNU C Library Reference Manual}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15331 +#: guix-git/doc/guix.texi:15688 msgid "The Linux kernel has support for swap partitions and swap files: the former uses a whole disk partition for paging, whereas the second uses a file on a file system for that (the file system driver needs to support it). On a comparable setup, both have the same performance, so one should consider ease of use when deciding between them. Partitions are ``simpler'' and do not need file system support, but need to be allocated at disk formatting time (logical volumes notwithstanding), whereas files can be allocated and deallocated at any time." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15336 +#: guix-git/doc/guix.texi:15693 msgid "Note that swap space is not zeroed on shutdown, so sensitive data (such as passwords) may linger on it if it was paged out. As such, you should consider having your swap reside on an encrypted device (@pxref{Mapped Devices})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15337 +#: guix-git/doc/guix.texi:15694 #, fuzzy, no-wrap #| msgid "{Data Type} package" msgid "{Data Type} swap-space" msgstr "{Tipo de datos} package" #. type: deftp -#: guix-git/doc/guix.texi:15340 +#: guix-git/doc/guix.texi:15697 #, fuzzy #| msgid "Objects of this type represent file systems to be mounted. They contain the following members:" msgid "Objects of this type represent swap spaces. They contain the following members:" msgstr "Objetos de este tipo representan los sistemas de archivos a montar. Contienen los siguientes campos:" #. type: table -#: guix-git/doc/guix.texi:15346 +#: guix-git/doc/guix.texi:15703 msgid "The device or file to use, either a UUID, a @code{file-system-label} or a string, as in the definition of a @code{file-system} (@pxref{File Systems})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15353 +#: guix-git/doc/guix.texi:15710 msgid "A list of @code{file-system} or @code{mapped-device} objects, upon which the availability of the space depends. Note that just like for @code{file-system} objects, dependencies which are needed for boot and mounted in early userspace are not managed by the Shepherd, and so automatically filtered out for you." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15354 +#: guix-git/doc/guix.texi:15711 #, fuzzy, no-wrap #| msgid "@code{port} (default: @code{#f})" msgid "@code{priority} (default: @code{#f})" msgstr "@code{port} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:15361 +#: guix-git/doc/guix.texi:15718 msgid "Only supported by the Linux kernel. Either @code{#f} to disable swap priority, or an integer between 0 and 32767. The kernel will first use swap spaces of higher priority when paging, and use same priority spaces on a round-robin basis. The kernel will use swap spaces without a set priority after prioritized spaces, and in the order that they appeared in (not round-robin)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15362 +#: guix-git/doc/guix.texi:15719 #, fuzzy, no-wrap msgid "@code{discard?} (default: @code{#f})" msgstr "@code{device} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:15366 +#: guix-git/doc/guix.texi:15723 msgid "Only supported by the Linux kernel. When true, the kernel will notify the disk controller of discarded pages, for example with the TRIM operation on Solid State Drives." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15371 +#: guix-git/doc/guix.texi:15728 #, fuzzy #| msgid "Here are a few examples:" msgid "Here are some examples:" msgstr "Estos son algunos ejemplos:" #. type: lisp -#: guix-git/doc/guix.texi:15374 +#: guix-git/doc/guix.texi:15731 #, fuzzy, no-wrap #| msgid "(list (uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\"))" msgid "(swap-space (target (uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\")))\n" msgstr "(list (uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\"))" #. type: Plain text -#: guix-git/doc/guix.texi:15379 +#: guix-git/doc/guix.texi:15736 #, fuzzy msgid "Use the swap partition with the given UUID@. You can learn the UUID of a Linux swap partition by running @command{swaplabel @var{device}}, where @var{device} is the @file{/dev} file name of that partition." msgstr "Se usa la partición de intercambio con el UUID proporcionado. Puede conocer el UUID de una partición de intercambio de Linux ejecutando @command{swaplabel @var{dispositivo}}, donde @var{dispositivo} es el nombre de archivo @file{/dev} de la partición." #. type: lisp -#: guix-git/doc/guix.texi:15384 +#: guix-git/doc/guix.texi:15741 #, no-wrap msgid "" "(swap-space\n" @@ -29057,14 +29759,14 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15390 +#: guix-git/doc/guix.texi:15747 #, fuzzy #| msgid "Use the partition with label @code{swap}. Again, the @command{swaplabel} command allows you to view and change the label of a Linux swap partition." msgid "Use the partition with label @code{swap}, which can be found after the @var{lvm-device} mapped device has been opened. Again, the @command{swaplabel} command allows you to view and change the label of a Linux swap partition." msgstr "Se usa la partición con etiqueta @code{intercambio}. De nuevo, la orden @command{swaplabel} le permite ver y cambiar la etiqueta de una partitición de intercambio de Linux." #. type: lisp -#: guix-git/doc/guix.texi:15395 +#: guix-git/doc/guix.texi:15752 #, no-wrap msgid "" "(swap-space\n" @@ -29073,37 +29775,37 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15399 +#: guix-git/doc/guix.texi:15756 #, fuzzy #| msgid "Use the file @file{/swapfile} as swap space." msgid "Use the file @file{/btrfs/swapfile} as swap space, which is present on the @var{btrfs-fs} filesystem." msgstr "Se usa el archivo @file{/archivo-de-intercambio} como espacio de intercambio." #. type: cindex -#: guix-git/doc/guix.texi:15403 +#: guix-git/doc/guix.texi:15760 #, no-wrap msgid "users" msgstr "usuarias" #. type: cindex -#: guix-git/doc/guix.texi:15404 +#: guix-git/doc/guix.texi:15761 #, no-wrap msgid "accounts" msgstr "cuentas" #. type: cindex -#: guix-git/doc/guix.texi:15405 +#: guix-git/doc/guix.texi:15762 #, no-wrap msgid "user accounts" msgstr "cuentas de usuaria" #. type: Plain text -#: guix-git/doc/guix.texi:15409 +#: guix-git/doc/guix.texi:15766 msgid "User accounts and groups are entirely managed through the @code{operating-system} declaration. They are specified with the @code{user-account} and @code{user-group} forms:" msgstr "Los grupos y cuentas de usuaria se gestionan completamente a través de la declaración @code{operating-system}. Se especifican con las formas @code{user-account} y @code{user-group}:" #. type: lisp -#: guix-git/doc/guix.texi:15419 +#: guix-git/doc/guix.texi:15776 #, no-wrap msgid "" "(user-account\n" @@ -29125,12 +29827,12 @@ msgstr "" " (comment \"hermana de Roberto\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15423 +#: guix-git/doc/guix.texi:15780 msgid "Here's a user account that uses a different shell and a custom home directory (the default would be @file{\"/home/bob\"}):" msgstr "Esta es una cuenta que usa un shell diferente y un directorio personalizado (el predeterminado sería @file{\"/home/rober\"}):" #. type: lisp -#: guix-git/doc/guix.texi:15431 +#: guix-git/doc/guix.texi:15788 #, no-wrap msgid "" "(user-account\n" @@ -29148,171 +29850,171 @@ msgstr "" " (home-directory \"/home/roberto\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15440 +#: guix-git/doc/guix.texi:15797 msgid "When booting or upon completion of @command{guix system reconfigure}, the system ensures that only the user accounts and groups specified in the @code{operating-system} declaration exist, and with the specified properties. Thus, account or group creations or modifications made by directly invoking commands such as @command{useradd} are lost upon reconfiguration or reboot. This ensures that the system remains exactly as declared." msgstr "Durante el arranque o tras la finalización de @command{guix system reconfigure}, el sistema se asegura de que únicamente las cuentas de usuaria y grupos especificados en la declaración @code{operating-system} existen, y con las propiedades especificadas. Por tanto, la creación o modificación de cuentas o grupos realizadas directamente invocando órdenes como @command{useradd} se pierden al reconfigurar o reiniciar el sistema. Esto asegura que el sistema permanece exactamente como se declaró." #. type: deftp -#: guix-git/doc/guix.texi:15441 +#: guix-git/doc/guix.texi:15798 #, no-wrap msgid "{Data Type} user-account" msgstr "{Tipo de datos} user-account" #. type: deftp -#: guix-git/doc/guix.texi:15444 +#: guix-git/doc/guix.texi:15801 msgid "Objects of this type represent user accounts. The following members may be specified:" msgstr "Objetos de este tipo representan cuentas de usuaria. Los siguientes miembros pueden ser especificados:" #. type: table -#: guix-git/doc/guix.texi:15448 +#: guix-git/doc/guix.texi:15805 msgid "The name of the user account." msgstr "El nombre de la cuenta de usuaria." #. type: itemx -#: guix-git/doc/guix.texi:15449 guix-git/doc/guix.texi:34298 +#: guix-git/doc/guix.texi:15806 guix-git/doc/guix.texi:34737 #, no-wrap msgid "group" msgstr "group" #. type: cindex -#: guix-git/doc/guix.texi:15450 guix-git/doc/guix.texi:15534 +#: guix-git/doc/guix.texi:15807 guix-git/doc/guix.texi:15891 #, no-wrap msgid "groups" msgstr "grupos" #. type: table -#: guix-git/doc/guix.texi:15453 +#: guix-git/doc/guix.texi:15810 msgid "This is the name (a string) or identifier (a number) of the user group this account belongs to." msgstr "Este es el nombre (una cadena) o identificador (un número) del grupo de usuarias al que esta cuenta pertenece." #. type: item -#: guix-git/doc/guix.texi:15454 +#: guix-git/doc/guix.texi:15811 #, no-wrap msgid "@code{supplementary-groups} (default: @code{'()})" msgstr "@code{supplementary-groups} (predeterminados: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:15457 +#: guix-git/doc/guix.texi:15814 msgid "Optionally, this can be defined as a list of group names that this account belongs to." msgstr "Opcionalmente, esto puede definirse como una lista de nombres de grupo a los que esta cuenta pertenece." #. type: item -#: guix-git/doc/guix.texi:15458 +#: guix-git/doc/guix.texi:15815 #, no-wrap msgid "@code{uid} (default: @code{#f})" msgstr "@code{uid} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:15462 +#: guix-git/doc/guix.texi:15819 msgid "This is the user ID for this account (a number), or @code{#f}. In the latter case, a number is automatically chosen by the system when the account is created." msgstr "Este es el ID de usuaria para esta cuenta (un número), o @code{#f}. En el último caso, un número es seleccionado automáticamente por el sistema cuando la cuenta es creada." #. type: item -#: guix-git/doc/guix.texi:15463 guix-git/doc/guix.texi:18217 +#: guix-git/doc/guix.texi:15820 guix-git/doc/guix.texi:18579 #, no-wrap msgid "@code{comment} (default: @code{\"\"})" msgstr "@code{comment} (predeterminado: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:15465 +#: guix-git/doc/guix.texi:15822 msgid "A comment about the account, such as the account owner's full name." msgstr "Un comentario sobre la cuenta, como el nombre completo de la propietaria." #. type: table -#: guix-git/doc/guix.texi:15470 +#: guix-git/doc/guix.texi:15827 msgid "Note that, for non-system accounts, users are free to change their real name as it appears in @file{/etc/passwd} using the @command{chfn} command. When they do, their choice prevails over the system administrator's choice; reconfiguring does @emph{not} change their name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:15471 +#: guix-git/doc/guix.texi:15828 #, no-wrap msgid "home-directory" msgstr "home-directory" #. type: table -#: guix-git/doc/guix.texi:15473 +#: guix-git/doc/guix.texi:15830 msgid "This is the name of the home directory for the account." msgstr "Este es el nombre del directorio de usuaria de la cuenta." #. type: item -#: guix-git/doc/guix.texi:15474 +#: guix-git/doc/guix.texi:15831 #, no-wrap msgid "@code{create-home-directory?} (default: @code{#t})" msgstr "@code{create-home-directory?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:15477 +#: guix-git/doc/guix.texi:15834 msgid "Indicates whether the home directory of this account should be created if it does not exist yet." msgstr "Indica si el directorio de usuaria de esta cuenta debe ser creado si no existe todavía." #. type: item -#: guix-git/doc/guix.texi:15478 +#: guix-git/doc/guix.texi:15835 #, no-wrap msgid "@code{shell} (default: Bash)" msgstr "@code{shell} (predeterminado: Bash)" #. type: table -#: guix-git/doc/guix.texi:15482 +#: guix-git/doc/guix.texi:15839 msgid "This is a G-expression denoting the file name of a program to be used as the shell (@pxref{G-Expressions}). For example, you would refer to the Bash executable like this:" msgstr "Esto es una expresión-G denotando el nombre de archivo de un programa que será usado como shell (@pxref{G-Expressions}). Por ejemplo, podría hacer referencia al ejecutable de Bash de este modo:" #. type: lisp -#: guix-git/doc/guix.texi:15485 +#: guix-git/doc/guix.texi:15842 #, no-wrap msgid "(file-append bash \"/bin/bash\")\n" msgstr "(file-append bash \"/bin/bash\")\n" #. type: table -#: guix-git/doc/guix.texi:15489 +#: guix-git/doc/guix.texi:15846 msgid "... and to the Zsh executable like that:" msgstr "... y al ejecutable de Zsh de este otro:" #. type: lisp -#: guix-git/doc/guix.texi:15492 +#: guix-git/doc/guix.texi:15849 #, no-wrap msgid "(file-append zsh \"/bin/zsh\")\n" msgstr "(file-append zsh \"/bin/zsh\")\n" #. type: item -#: guix-git/doc/guix.texi:15494 guix-git/doc/guix.texi:15552 +#: guix-git/doc/guix.texi:15851 guix-git/doc/guix.texi:15909 #, no-wrap msgid "@code{system?} (default: @code{#f})" msgstr "@code{system?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:15498 +#: guix-git/doc/guix.texi:15855 msgid "This Boolean value indicates whether the account is a ``system'' account. System accounts are sometimes treated specially; for instance, graphical login managers do not list them." msgstr "Este valor lógico indica si la cuenta es una cuenta ``del sistema''. Las cuentas del sistema se tratan a veces de forma especial; por ejemplo, los gestores gráficos de inicio no las enumeran." #. type: anchor{#1} -#: guix-git/doc/guix.texi:15500 +#: guix-git/doc/guix.texi:15857 msgid "user-account-password" msgstr "user-account-password" #. type: cindex -#: guix-git/doc/guix.texi:15500 +#: guix-git/doc/guix.texi:15857 #, no-wrap msgid "password, for user accounts" msgstr "contraseña, para cuentas de usuaria" #. type: item -#: guix-git/doc/guix.texi:15501 guix-git/doc/guix.texi:15556 +#: guix-git/doc/guix.texi:15858 guix-git/doc/guix.texi:15913 #, no-wrap msgid "@code{password} (default: @code{#f})" msgstr "@code{password} (predeterminada: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:15507 +#: guix-git/doc/guix.texi:15864 msgid "You would normally leave this field to @code{#f}, initialize user passwords as @code{root} with the @command{passwd} command, and then let users change it with @command{passwd}. Passwords set with @command{passwd} are of course preserved across reboot and reconfiguration." msgstr "Normalmente debería dejar este campo a @code{#f}, inicializar la contraseña de usuaria como @code{root} con la orden @command{passwd}, y entonces dejar a las usuarias cambiarla con @command{passwd}. Las contraseñas establecidas con @command{passwd} son, por supuesto, preservadas entre reinicio y reinicio, y entre reconfiguraciones." #. type: table -#: guix-git/doc/guix.texi:15511 +#: guix-git/doc/guix.texi:15868 msgid "If you @emph{do} want to set an initial password for an account, then this field must contain the encrypted password, as a string. You can use the @code{crypt} procedure for this purpose:" msgstr "Si usted @emph{realmente quiere} tener una contraseña prefijada para una cuenta, entonces este campo debe contener la contraseña cifrada, como una cadena. Puede usar el procedimiento @code{crypt} para este fin:" #. type: lisp -#: guix-git/doc/guix.texi:15516 +#: guix-git/doc/guix.texi:15873 #, no-wrap msgid "" "(user-account\n" @@ -29326,7 +30028,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15519 +#: guix-git/doc/guix.texi:15876 #, no-wrap msgid "" " ;; Specify a SHA-512-hashed initial password.\n" @@ -29336,92 +30038,92 @@ msgstr "" " (password (crypt \"ContraseñaInicial!\" \"$6$abc\")))\n" #. type: quotation -#: guix-git/doc/guix.texi:15525 +#: guix-git/doc/guix.texi:15882 msgid "The hash of this initial password will be available in a file in @file{/gnu/store}, readable by all the users, so this method must be used with care." msgstr "El hash de esta contraseña inicial estará disponible en un archivo en @file{/gnu/store}, legible por todas las usuarias, por lo que este método debe usarse con precaución." #. type: table -#: guix-git/doc/guix.texi:15530 +#: guix-git/doc/guix.texi:15887 msgid "@xref{Passphrase Storage,,, libc, The GNU C Library Reference Manual}, for more information on password encryption, and @ref{Encryption,,, guile, GNU Guile Reference Manual}, for information on Guile's @code{crypt} procedure." msgstr "@xref{Passphrase Storage,,, libc, The GNU C Library Reference Manual}, para más información sobre el cifrado de contraseñas, y @ref{Encryption,,, guile, GNU Guile Reference Manual}, para información sobre el procedimiento de Guile @code{crypt}." #. type: Plain text -#: guix-git/doc/guix.texi:15536 +#: guix-git/doc/guix.texi:15893 msgid "User group declarations are even simpler:" msgstr "Las declaraciones de grupos incluso son más simples:" #. type: lisp -#: guix-git/doc/guix.texi:15539 +#: guix-git/doc/guix.texi:15896 #, no-wrap msgid "(user-group (name \"students\"))\n" msgstr "(user-group (name \"estudiantes\"))\n" #. type: deftp -#: guix-git/doc/guix.texi:15541 +#: guix-git/doc/guix.texi:15898 #, no-wrap msgid "{Data Type} user-group" msgstr "{Tipo de datos} user-group" #. type: deftp -#: guix-git/doc/guix.texi:15543 +#: guix-git/doc/guix.texi:15900 msgid "This type is for, well, user groups. There are just a few fields:" msgstr "Este tipo es para grupos de usuarias. Hay únicamente unos pocos campos:" #. type: table -#: guix-git/doc/guix.texi:15547 +#: guix-git/doc/guix.texi:15904 msgid "The name of the group." msgstr "El nombre del grupo." #. type: item -#: guix-git/doc/guix.texi:15548 guix-git/doc/guix.texi:30819 +#: guix-git/doc/guix.texi:15905 guix-git/doc/guix.texi:31184 #, no-wrap msgid "@code{id} (default: @code{#f})" msgstr "@code{id} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:15551 +#: guix-git/doc/guix.texi:15908 msgid "The group identifier (a number). If @code{#f}, a new number is automatically allocated when the group is created." msgstr "El identificador del grupo (un número). Si es @code{#f}, un nuevo número es reservado automáticamente cuando se crea el grupo." #. type: table -#: guix-git/doc/guix.texi:15555 +#: guix-git/doc/guix.texi:15912 msgid "This Boolean value indicates whether the group is a ``system'' group. System groups have low numerical IDs." msgstr "Este valor booleano indica si el grupo es un grupo ``del sistema''. Los grupos del sistema tienen identificadores numéricos bajos." #. type: table -#: guix-git/doc/guix.texi:15559 +#: guix-git/doc/guix.texi:15916 msgid "What, user groups can have a password? Well, apparently yes. Unless @code{#f}, this field specifies the password of the group." msgstr "¿Qué? ¿Los grupos de usuarias pueden tener una contraseña? Bueno, aparentemente sí. A menos que sea @code{#f}, este campo especifica la contraseña del grupo." #. type: Plain text -#: guix-git/doc/guix.texi:15565 +#: guix-git/doc/guix.texi:15922 msgid "For convenience, a variable lists all the basic user groups one may expect:" msgstr "Por conveniencia, una variable contiene una lista con todos los grupos de usuarias básicos que se puede esperar:" #. type: defvr -#: guix-git/doc/guix.texi:15566 +#: guix-git/doc/guix.texi:15923 #, no-wrap msgid "{Scheme Variable} %base-groups" msgstr "{Variable Scheme} %base-groups" #. type: defvr -#: guix-git/doc/guix.texi:15571 +#: guix-git/doc/guix.texi:15928 msgid "This is the list of basic user groups that users and/or packages expect to be present on the system. This includes groups such as ``root'', ``wheel'', and ``users'', as well as groups used to control access to specific devices such as ``audio'', ``disk'', and ``cdrom''." msgstr "Esta es la lista de grupos de usuarias básicos que las usuarias y/o los paquetes esperan que estén presentes en el sistema. Esto incluye grupos como ``root'', ``wheel'' y ``users'', así como grupos usados para controlar el acceso a dispositivos específicos como ``audio'', ``disk'' y ``cdrom''." #. type: defvr -#: guix-git/doc/guix.texi:15573 +#: guix-git/doc/guix.texi:15930 #, no-wrap msgid "{Scheme Variable} %base-user-accounts" msgstr "{Variable Scheme} %base-user-accounts" #. type: defvr -#: guix-git/doc/guix.texi:15576 +#: guix-git/doc/guix.texi:15933 msgid "This is the list of basic system accounts that programs may expect to find on a GNU/Linux system, such as the ``nobody'' account." msgstr "Esta es la lista de cuentas de usuaria básicas que los programas pueden esperar encontrar en un sistema GNU/Linux, como la cuenta ``nobody''." #. type: defvr -#: guix-git/doc/guix.texi:15579 +#: guix-git/doc/guix.texi:15936 msgid "Note that the ``root'' account is not included here. It is a special-case and is automatically added whether or not it is specified." msgstr "Fíjese que la cuenta de ``root'' no se incluye aquí. Es un caso especial y se añade automáticamente esté o no especificada." @@ -29429,67 +30131,67 @@ msgstr "Fíjese que la cuenta de ``root'' no se incluye aquí. Es un caso especi # # MAAV: Suena fatal... :( #. type: cindex -#: guix-git/doc/guix.texi:15585 +#: guix-git/doc/guix.texi:15942 #, no-wrap msgid "keymap" msgstr "asociación de teclas" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:15593 +#: guix-git/doc/guix.texi:15950 msgid "To specify what each key of your keyboard does, you need to tell the operating system what @dfn{keyboard layout} you want to use. The default, when nothing is specified, is the US English QWERTY layout for 105-key PC keyboards. However, German speakers will usually prefer the German QWERTZ layout, French speakers will want the AZERTY layout, and so on; hackers might prefer Dvorak or bépo, and they might even want to further customize the effect of some of the keys. This section explains how to get that done." msgstr "Para especificar qué hace cada tecla de su teclado, necesita decirle al sistema operativo qué @dfn{distribución de teclado} desea usar. La predeterminada, cuando no se especifica ninguna, es la distribución QWERTY de 105 teclas para PC de teclado inglés estadounidense. No obstante, las personas germano-parlantes habitualmente prefieren la distribución QWERTZ alemana, las franco-parlantes desearán la distribución AZERTY, etcétera; las hackers pueden preferir Dvorak o bépo, y pueden incluso desear personalizar más aún el efecto de determinadas teclas. Esta sección explica cómo hacerlo." #. type: cindex -#: guix-git/doc/guix.texi:15594 +#: guix-git/doc/guix.texi:15951 #, no-wrap msgid "keyboard layout, definition" msgstr "distribución de teclado, definición" #. type: Plain text -#: guix-git/doc/guix.texi:15596 +#: guix-git/doc/guix.texi:15953 msgid "There are three components that will want to know about your keyboard layout:" msgstr "Hay tres componentes que desearán conocer la distribución de su teclado:" #. type: itemize -#: guix-git/doc/guix.texi:15603 +#: guix-git/doc/guix.texi:15960 msgid "The @emph{bootloader} may want to know what keyboard layout you want to use (@pxref{Bootloader Configuration, @code{keyboard-layout}}). This is useful if you want, for instance, to make sure that you can type the passphrase of your encrypted root partition using the right layout." msgstr "El @emph{cargador de arranque} puede desear conocer cual es la distribución de teclado que desea usar (@pxref{Bootloader Configuration, @code{keyboard-layout}}). Esto es útil si desea, por ejemplo, asegurarse de que puede introducir la contraseña de cifrado de su partición raíz usando la distribución correcta." #. type: itemize -#: guix-git/doc/guix.texi:15608 +#: guix-git/doc/guix.texi:15965 msgid "The @emph{operating system kernel}, Linux, will need that so that the console is properly configured (@pxref{operating-system Reference, @code{keyboard-layout}})." msgstr "El @emph{núcleo del sistema operativo}, Linux, la necesitará de manera que la consola se configure de manera adecuada (@pxref{operating-system Reference, @code{keyboard-layout}})." #. type: itemize -#: guix-git/doc/guix.texi:15612 +#: guix-git/doc/guix.texi:15969 msgid "The @emph{graphical display server}, usually Xorg, also has its own idea of the keyboard layout (@pxref{X Window, @code{keyboard-layout}})." msgstr "El @emph{servidor gráfico}, habitualmente Xorg, también tiene su propia idea de distribución de teclado (@pxref{X Window, @code{keyboard-layout}})." #. type: Plain text -#: guix-git/doc/guix.texi:15616 +#: guix-git/doc/guix.texi:15973 msgid "Guix allows you to configure all three separately but, fortunately, it allows you to share the same keyboard layout for all three components." msgstr "Guix le permite configurar las tres distribuciones por separado pero, afortunadamente, también le permite compartir la misma distribución de teclado para los tres componentes." #. type: cindex -#: guix-git/doc/guix.texi:15617 +#: guix-git/doc/guix.texi:15974 #, no-wrap msgid "XKB, keyboard layouts" msgstr "XKB, distribuciones de teclado" #. type: Plain text -#: guix-git/doc/guix.texi:15625 +#: guix-git/doc/guix.texi:15982 msgid "Keyboard layouts are represented by records created by the @code{keyboard-layout} procedure of @code{(gnu system keyboard)}. Following the X Keyboard extension (XKB), each layout has four attributes: a name (often a language code such as ``fi'' for Finnish or ``jp'' for Japanese), an optional variant name, an optional keyboard model name, and a possibly empty list of additional options. In most cases the layout name is all you care about." msgstr "Las distribuciones de teclado se representan mediante registros creados con el procedimiento @code{keyboard-layout} de @code{(gnu system keyboard)}. A imagen de la extensión de teclado de X (XKB), cada distribución tiene cuatro atributos: un nombre (habitualmente un código de idioma como ``fi'' para finés o ``jp'' para japonés), un nombre opcional de variante, un nombre opcional de modelo de teclado y una lista, puede que vacía, de opciones adicionales. En la mayor parte de los casos el nombre de la distribución es lo único que le interesará." #. type: deffn -#: guix-git/doc/guix.texi:15626 +#: guix-git/doc/guix.texi:15983 #, no-wrap msgid "{Scheme Procedure} keyboard-layout @var{name} [@var{variant}] @" msgstr "{Procedimiento Scheme} keyboard-layout @var{nombre} [@var{variante}] @" #. type: deffn -#: guix-git/doc/guix.texi:15629 +#: guix-git/doc/guix.texi:15986 msgid "[#:model] [#:options '()] Return a new keyboard layout with the given @var{name} and @var{variant}." msgstr "" "[#:model] [#:options '()]\n" @@ -29497,17 +30199,17 @@ msgstr "" # FUZZY FUZZY #. type: deffn -#: guix-git/doc/guix.texi:15633 +#: guix-git/doc/guix.texi:15990 msgid "@var{name} must be a string such as @code{\"fr\"}; @var{variant} must be a string such as @code{\"bepo\"} or @code{\"nodeadkeys\"}. See the @code{xkeyboard-config} package for valid options." msgstr "@var{nombre} debe ser una cadena como @code{\"fr\"}; @var{variante} debe ser una cadena como @code{\"bepo\"} o @code{\"nodeadkeys\"}. Véase el paquete @code{xkeyboard-config} para las opciones válidas." #. type: Plain text -#: guix-git/doc/guix.texi:15636 +#: guix-git/doc/guix.texi:15993 msgid "Here are a few examples:" msgstr "Estos son algunos ejemplos:" #. type: lisp -#: guix-git/doc/guix.texi:15641 +#: guix-git/doc/guix.texi:15998 #, no-wrap msgid "" ";; The German QWERTZ layout. Here we assume a standard\n" @@ -29521,7 +30223,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15644 +#: guix-git/doc/guix.texi:16001 #, no-wrap msgid "" ";; The bépo variant of the French layout.\n" @@ -29533,7 +30235,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15647 +#: guix-git/doc/guix.texi:16004 #, no-wrap msgid "" ";; The Catalan layout.\n" @@ -29545,7 +30247,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15650 +#: guix-git/doc/guix.texi:16007 #, no-wrap msgid "" ";; Arabic layout with \"Alt-Shift\" to switch to US layout.\n" @@ -29558,7 +30260,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15657 +#: guix-git/doc/guix.texi:16014 #, no-wrap msgid "" ";; The Latin American Spanish layout. In addition, the\n" @@ -29578,7 +30280,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15660 +#: guix-git/doc/guix.texi:16017 #, no-wrap msgid "" ";; The Russian layout for a ThinkPad keyboard.\n" @@ -29590,7 +30292,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15665 +#: guix-git/doc/guix.texi:16022 #, no-wrap msgid "" ";; The \"US international\" layout, which is the US layout plus\n" @@ -29605,29 +30307,29 @@ msgstr "" "(keyboard-layout \"us\" \"intl\" #:model \"macbook78\")\n" #. type: Plain text -#: guix-git/doc/guix.texi:15669 +#: guix-git/doc/guix.texi:16026 msgid "See the @file{share/X11/xkb} directory of the @code{xkeyboard-config} package for a complete list of supported layouts, variants, and models." msgstr "Véase el directorio @file{share/X11/xkb} del paquete @code{xkeyboard-config} para una lista completa de implementaciones de distribuciones, variantes y modelos." #. type: cindex -#: guix-git/doc/guix.texi:15670 +#: guix-git/doc/guix.texi:16027 #, no-wrap msgid "keyboard layout, configuration" msgstr "distribución de teclado, configuración" #. type: Plain text -#: guix-git/doc/guix.texi:15674 +#: guix-git/doc/guix.texi:16031 msgid "Let's say you want your system to use the Turkish keyboard layout throughout your system---bootloader, console, and Xorg. Here's what your system configuration would look like:" msgstr "Digamos que desea que su sistema use la distribución de teclado turca a lo largo de todo su sistema---cargador de arranque, consola y Xorg. Así es como sería su configuración del sistema:" #. type: findex -#: guix-git/doc/guix.texi:15675 +#: guix-git/doc/guix.texi:16032 #, no-wrap msgid "set-xorg-configuration" msgstr "set-xorg-configuration" #. type: lisp -#: guix-git/doc/guix.texi:15679 +#: guix-git/doc/guix.texi:16036 #, no-wrap msgid "" ";; Using the Turkish layout for the bootloader, the console,\n" @@ -29639,7 +30341,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15691 +#: guix-git/doc/guix.texi:16048 #, fuzzy, no-wrap #| msgid "" #| "(operating-system\n" @@ -29679,77 +30381,77 @@ msgstr "" " %desktop-services)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15698 +#: guix-git/doc/guix.texi:16055 msgid "In the example above, for GRUB and for Xorg, we just refer to the @code{keyboard-layout} field defined above, but we could just as well refer to a different layout. The @code{set-xorg-configuration} procedure communicates the desired Xorg configuration to the graphical log-in manager, by default GDM." msgstr "En el ejemplo previo, para GRUB y para Xorg, simplemente hemos hecho referencia al campo @code{keyboard-layout} definido previamente, pero también podíamos haber hecho referencia a una distribución diferente. El procedimiento @code{set-xorg-configuration} comunica la configuración de Xorg deseada al gestor gráfico de ingreso en el sistema, GDM por omisión." #. type: Plain text -#: guix-git/doc/guix.texi:15701 +#: guix-git/doc/guix.texi:16058 msgid "We've discussed how to specify the @emph{default} keyboard layout of your system when it starts, but you can also adjust it at run time:" msgstr "Hemos tratado cómo especificar la distribución @emph{predeterminada} del teclado de su sistema cuando arranca, pero también la puede modificar en tiempo de ejecución:" # FUZZY #. type: itemize -#: guix-git/doc/guix.texi:15706 +#: guix-git/doc/guix.texi:16063 msgid "If you're using GNOME, its settings panel has a ``Region & Language'' entry where you can select one or more keyboard layouts." msgstr "Si usa GNOME, su panel de configuración tiene una entrada de ``Región e Idioma'' donde puede seleccionar una o más distribuciones de teclado." #. type: itemize -#: guix-git/doc/guix.texi:15711 +#: guix-git/doc/guix.texi:16068 msgid "Under Xorg, the @command{setxkbmap} command (from the same-named package) allows you to change the current layout. For example, this is how you would change the layout to US Dvorak:" msgstr "En Xorg, la orden @command{setxkbmap} (del paquete con el mismo nombre) le permite cambiar la distribución en uso actualmente. Por ejemplo, así es como cambiaría a la distribución Dvorak estadounidense:" #. type: example -#: guix-git/doc/guix.texi:15714 +#: guix-git/doc/guix.texi:16071 #, no-wrap msgid "setxkbmap us dvorak\n" msgstr "setxkbmap us dvorak\n" #. type: itemize -#: guix-git/doc/guix.texi:15721 +#: guix-git/doc/guix.texi:16078 msgid "The @code{loadkeys} command changes the keyboard layout in effect in the Linux console. However, note that @code{loadkeys} does @emph{not} use the XKB keyboard layout categorization described above. The command below loads the French bépo layout:" msgstr "La orden @code{loadkeys} cambia la distribución de teclado en efecto en la consola Linux. No obstante, tenga en cuenta que @code{loadkeys} @emph{no} usa la categorización de distribuciones de XKB descrita previamente. La orden a continuación carga la distribución francesa bépo:" #. type: example -#: guix-git/doc/guix.texi:15724 +#: guix-git/doc/guix.texi:16081 #, no-wrap msgid "loadkeys fr-bepo\n" msgstr "loadkeys fr-bepo\n" #. type: cindex -#: guix-git/doc/guix.texi:15730 +#: guix-git/doc/guix.texi:16087 #, no-wrap msgid "locale" msgstr "localización" #. type: Plain text -#: guix-git/doc/guix.texi:15737 +#: guix-git/doc/guix.texi:16094 msgid "A @dfn{locale} defines cultural conventions for a particular language and region of the world (@pxref{Locales,,, libc, The GNU C Library Reference Manual}). Each locale has a name that typically has the form @code{@var{language}_@var{territory}.@var{codeset}}---e.g., @code{fr_LU.utf8} designates the locale for the French language, with cultural conventions from Luxembourg, and using the UTF-8 encoding." msgstr "Una @dfn{localización} define convenciones culturales para una lengua y región del mundo particular (@pxref{Locales,,, libc, The GNU C Library Reference Manual}). Cada localización tiene un nombre que típicamente tiene la forma de @code{@var{lengua}_@var{territorio}.@var{codificación}}---por ejemplo, @code{fr_LU.utf8} designa la localización para la lengua francesa, con las convenciones culturales de Luxemburgo, usando la codificación UTF-8." #. type: cindex -#: guix-git/doc/guix.texi:15738 +#: guix-git/doc/guix.texi:16095 #, no-wrap msgid "locale definition" msgstr "definición de localización" #. type: Plain text -#: guix-git/doc/guix.texi:15742 +#: guix-git/doc/guix.texi:16099 msgid "Usually, you will want to specify the default locale for the machine using the @code{locale} field of the @code{operating-system} declaration (@pxref{operating-system Reference, @code{locale}})." msgstr "Normalmente deseará especificar la localización predeterminada para la máquina usando el campo @code{locale} de la declaración @code{operating-system} (@pxref{operating-system Reference, @code{locale}})." #. type: Plain text -#: guix-git/doc/guix.texi:15751 +#: guix-git/doc/guix.texi:16108 msgid "The selected locale is automatically added to the @dfn{locale definitions} known to the system if needed, with its codeset inferred from its name---e.g., @code{bo_CN.utf8} will be assumed to use the @code{UTF-8} codeset. Additional locale definitions can be specified in the @code{locale-definitions} slot of @code{operating-system}---this is useful, for instance, if the codeset could not be inferred from the locale name. The default set of locale definitions includes some widely used locales, but not all the available locales, in order to save space." msgstr "La localización seleccionada es automáticamente añadida a las @dfn{definiciones de localización} conocidas en el sistema si es necesario, con su codificación inferida de su nombre---por ejemplo, se asume que @code{bo_CN.utf8} usa la codificación @code{UTF-8}. Definiciones de localización adicionales pueden ser especificadas en el campo @code{locale-definitions} de @code{operating-system}---esto es util, por ejemplo, si la codificación no puede ser inferida del nombre de la localización. El conjunto predeterminado de definiciones de localización incluye algunas localizaciones ampliamente usadas, pero no todas las disponibles, para ahorrar espacio." #. type: Plain text -#: guix-git/doc/guix.texi:15754 +#: guix-git/doc/guix.texi:16111 msgid "For instance, to add the North Frisian locale for Germany, the value of that field may be:" msgstr "Por ejemplo, para añadir la localización del frisio del norte para Alemania, el valor de dicho campo puede ser:" #. type: lisp -#: guix-git/doc/guix.texi:15759 +#: guix-git/doc/guix.texi:16116 #, no-wrap msgid "" "(cons (locale-definition\n" @@ -29761,12 +30463,12 @@ msgstr "" " %default-locale-definitions)\n" #. type: Plain text -#: guix-git/doc/guix.texi:15763 +#: guix-git/doc/guix.texi:16120 msgid "Likewise, to save space, one might want @code{locale-definitions} to list only the locales that are actually used, as in:" msgstr "De mismo modo, para ahorrar espacio, se puede desear que @code{locale-definitions} contenga únicamente las localizaciones que son realmente usadas, como en:" #. type: lisp -#: guix-git/doc/guix.texi:15768 +#: guix-git/doc/guix.texi:16125 #, no-wrap msgid "" "(list (locale-definition\n" @@ -29778,114 +30480,114 @@ msgstr "" " (charset \"EUC-JP\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15777 +#: guix-git/doc/guix.texi:16134 msgid "The compiled locale definitions are available at @file{/run/current-system/locale/X.Y}, where @code{X.Y} is the libc version, which is the default location where the GNU@tie{}libc provided by Guix looks for locale data. This can be overridden using the @env{LOCPATH} environment variable (@pxref{locales-and-locpath, @env{LOCPATH} and locale packages})." msgstr "Las definiciones de localización compiladas están disponibles en @file{/run/current-system/locale/X.Y}, donde @code{X.Y} es la versión de libc, que es la ruta donde la GNU@tie{}libc contenida en Guix buscará los datos de localización. Esto puede ser sobreescrito usando la variable de entorno @env{LOCPATH} (@pxref{locales-and-locpath, @env{LOCPATH} and locale packages})." #. type: Plain text -#: guix-git/doc/guix.texi:15780 +#: guix-git/doc/guix.texi:16137 msgid "The @code{locale-definition} form is provided by the @code{(gnu system locale)} module. Details are given below." msgstr "La forma @code{locale-definition} es proporcionada por el módulo @code{(gnu system locale)}. Los detalles se proporcionan a continuación." #. type: deftp -#: guix-git/doc/guix.texi:15781 +#: guix-git/doc/guix.texi:16138 #, no-wrap msgid "{Data Type} locale-definition" msgstr "{Tipo de datos} locale-definition" #. type: deftp -#: guix-git/doc/guix.texi:15783 +#: guix-git/doc/guix.texi:16140 msgid "This is the data type of a locale definition." msgstr "Este es el tipo de datos de una definición de localización." #. type: table -#: guix-git/doc/guix.texi:15789 +#: guix-git/doc/guix.texi:16146 msgid "The name of the locale. @xref{Locale Names,,, libc, The GNU C Library Reference Manual}, for more information on locale names." msgstr "El nombre de la localización. @xref{Locale Names,,, libc, The GNU C Library Reference Manual}, para más información sobre nombres de localizaciones." #. type: table -#: guix-git/doc/guix.texi:15793 +#: guix-git/doc/guix.texi:16150 msgid "The name of the source for that locale. This is typically the @code{@var{language}_@var{territory}} part of the locale name." msgstr "El nombre de la fuente para dicha localización. Habitualmente es la parte @code{@var{idioma}_@var{territorio}} del nombre de localización." #. type: item -#: guix-git/doc/guix.texi:15794 +#: guix-git/doc/guix.texi:16151 #, no-wrap msgid "@code{charset} (default: @code{\"UTF-8\"})" msgstr "@code{charset} (predeterminado: @code{\"UTF-8\"})" #. type: table -#: guix-git/doc/guix.texi:15798 +#: guix-git/doc/guix.texi:16155 msgid "The ``character set'' or ``code set'' for that locale, @uref{https://www.iana.org/assignments/character-sets, as defined by IANA}." msgstr "La ``codificación de caracteres'' o ``conjunto de caracteres'' para dicha localización, @uref{https://www.iana.org/assignments/character-sets, como lo define IANA}." #. type: defvr -#: guix-git/doc/guix.texi:15802 +#: guix-git/doc/guix.texi:16159 #, no-wrap msgid "{Scheme Variable} %default-locale-definitions" msgstr "{Variable Scheme} %default-locale-definitions" #. type: defvr -#: guix-git/doc/guix.texi:15806 +#: guix-git/doc/guix.texi:16163 msgid "A list of commonly used UTF-8 locales, used as the default value of the @code{locale-definitions} field of @code{operating-system} declarations." msgstr "Una lista de localizaciones UTF-8 usadas de forma común, usada como valor predeterminado del campo @code{locale-definitions} en las declaraciones @code{operating-system}." #. type: cindex -#: guix-git/doc/guix.texi:15807 +#: guix-git/doc/guix.texi:16164 #, no-wrap msgid "locale name" msgstr "nombre de localización" #. type: cindex -#: guix-git/doc/guix.texi:15808 +#: guix-git/doc/guix.texi:16165 #, no-wrap msgid "normalized codeset in locale names" msgstr "codificación normalizada en los nombres de localizaciones" #. type: defvr -#: guix-git/doc/guix.texi:15814 +#: guix-git/doc/guix.texi:16171 msgid "These locale definitions use the @dfn{normalized codeset} for the part that follows the dot in the name (@pxref{Using gettextized software, normalized codeset,, libc, The GNU C Library Reference Manual}). So for instance it has @code{uk_UA.utf8} but @emph{not}, say, @code{uk_UA.UTF-8}." msgstr "Estas definiciones de localizaciones usan la @dfn{codificación normalizada} para el fragmento tras el punto en el nombre (@pxref{Using gettextized software, normalized codeset,, libc, The GNU C Library Reference Manual}). Por lo que por ejemplo es válido @code{uk_UA.utf8} pero @emph{no}, digamos, @code{uk_UA.UTF-8}." #. type: subsection -#: guix-git/doc/guix.texi:15816 +#: guix-git/doc/guix.texi:16173 #, no-wrap msgid "Locale Data Compatibility Considerations" msgstr "Consideraciones sobre la compatibilidad de datos de localización" #. type: cindex -#: guix-git/doc/guix.texi:15818 +#: guix-git/doc/guix.texi:16175 #, no-wrap msgid "incompatibility, of locale data" msgstr "incompatibilidad, de datos de localización" #. type: Plain text -#: guix-git/doc/guix.texi:15825 +#: guix-git/doc/guix.texi:16182 msgid "@code{operating-system} declarations provide a @code{locale-libcs} field to specify the GNU@tie{}libc packages that are used to compile locale declarations (@pxref{operating-system Reference}). ``Why would I care?'', you may ask. Well, it turns out that the binary format of locale data is occasionally incompatible from one libc version to another." msgstr "Las declaraciones @code{operating-system} proporcionan un campo @code{locale-libcs} para especificar los paquetes GNU@tie{}libc que se usarán para compilar las declaraciones de localizaciones (@pxref{operating-system Reference}). ``¿Por qué debo preocuparme?'', puede preguntarse. Bueno, sucede que el formato binario de los datos de localización es ocasionalmente incompatible de una versión de libc a otra." #. type: Plain text -#: guix-git/doc/guix.texi:15837 +#: guix-git/doc/guix.texi:16194 msgid "For instance, a program linked against libc version 2.21 is unable to read locale data produced with libc 2.22; worse, that program @emph{aborts} instead of simply ignoring the incompatible locale data@footnote{Versions 2.23 and later of GNU@tie{}libc will simply skip the incompatible locale data, which is already an improvement.}. Similarly, a program linked against libc 2.22 can read most, but not all, of the locale data from libc 2.21 (specifically, @env{LC_COLLATE} data is incompatible); thus calls to @code{setlocale} may fail, but programs will not abort." msgstr "Por ejemplo, un programa enlazado con la versión 2.21 de libc no puede leer datos de localización producidos con libc 2.22; peor aún, ese programa @emph{aborta} en vez de simplemente ignorar los datos de localización incompatibles@footnote{Las versiones 2.23 y posteriores de GNU@tie{}libc simplemente ignorarán los datos de localización incompatibles, lo cual ya es un avance.}. De manera similar, un programa enlazado con libc 2.22 puede leer la mayor parte, pero no todo, de los datos de localización de libc 2.21 (específicamente, los datos @env{LC_COLLATE} son incompatibles); por tanto las llamadas a @code{setlocale} pueden fallar, pero los programas no abortarán." #. type: Plain text -#: guix-git/doc/guix.texi:15842 +#: guix-git/doc/guix.texi:16199 msgid "The ``problem'' with Guix is that users have a lot of freedom: They can choose whether and when to upgrade software in their profiles, and might be using a libc version different from the one the system administrator used to build the system-wide locale data." msgstr "El ``problema'' con Guix es que las usuarias tienen mucha libertad: pueden elegir cuando e incluso si actualizar el software en sus perfiles, y pueden estar usando una versión de libc diferente de la que la administradora del sistema usó para construir los datos de localización comunes a todo el sistema." #. type: Plain text -#: guix-git/doc/guix.texi:15846 +#: guix-git/doc/guix.texi:16203 msgid "Fortunately, unprivileged users can also install their own locale data and define @env{GUIX_LOCPATH} accordingly (@pxref{locales-and-locpath, @env{GUIX_LOCPATH} and locale packages})." msgstr "Por suerte, las usuarias sin privilegios también pueden instalar sus propios datos de localización y definir @env{GUIX_LOCPATH} de manera adecuada (@pxref{locales-and-locpath, @env{GUIX_LOCPATH} y paquetes de localizaciones})." #. type: Plain text -#: guix-git/doc/guix.texi:15853 +#: guix-git/doc/guix.texi:16210 msgid "Still, it is best if the system-wide locale data at @file{/run/current-system/locale} is built for all the libc versions actually in use on the system, so that all the programs can access it---this is especially crucial on a multi-user system. To do that, the administrator can specify several libc packages in the @code{locale-libcs} field of @code{operating-system}:" msgstr "No obstante, es mejor si los datos de localización globales del sistema en @file{/run/current-system/locale} se construyen para todas las versiones de libc realmente en uso en el sistema, de manera que todos los programas puedan acceder a ellos---esto es especialmente crucial en un sistema multiusuaria. Para hacerlo, la administradora puede especificar varios paquetes libc en el campo @code{locale-libcs} de @code{operating-system}:" #. type: lisp -#: guix-git/doc/guix.texi:15856 +#: guix-git/doc/guix.texi:16213 #, no-wrap msgid "" "(use-package-modules base)\n" @@ -29895,7 +30597,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15860 +#: guix-git/doc/guix.texi:16217 #, no-wrap msgid "" "(operating-system\n" @@ -29907,41 +30609,41 @@ msgstr "" " (locale-libcs (list glibc-2.21 (canonical-package glibc))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15865 +#: guix-git/doc/guix.texi:16222 msgid "This example would lead to a system containing locale definitions for both libc 2.21 and the current version of libc in @file{/run/current-system/locale}." msgstr "Este ejemplo llevaría a un sistema que contiene definiciones de localización tanto para libc 2.21 como para la versión actual de libc en @file{/run/current-system/locale}." #. type: cindex -#: guix-git/doc/guix.texi:15870 +#: guix-git/doc/guix.texi:16227 #, no-wrap msgid "system services" msgstr "servicios del sistema" #. type: Plain text -#: guix-git/doc/guix.texi:15876 +#: guix-git/doc/guix.texi:16233 msgid "An important part of preparing an @code{operating-system} declaration is listing @dfn{system services} and their configuration (@pxref{Using the Configuration System}). System services are typically daemons launched when the system boots, or other actions needed at that time---e.g., configuring network access." msgstr "Una parte importante de la preparación de una declaración @code{operating-system} es listar los @dfn{servicios del sistema} y su configuración (@pxref{Using the Configuration System}). Los servicios del sistema típicamente son daemon lanzados cuando el sistema arrancha, u otras acciones necesarias en ese momento---por ejemplo, configurar el acceso de red." #. type: Plain text -#: guix-git/doc/guix.texi:15883 +#: guix-git/doc/guix.texi:16240 msgid "Guix has a broad definition of ``service'' (@pxref{Service Composition}), but many services are managed by the GNU@tie{}Shepherd (@pxref{Shepherd Services}). On a running system, the @command{herd} command allows you to list the available services, show their status, start and stop them, or do other specific operations (@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}). For example:" msgstr "Guix tiene una definición amplia de ``servicio'' (@pxref{Service Composition}), pero muchos servicios se gestionan por GNU@tie{}Shepherd (@pxref{Shepherd Services}). En un sistema en ejecución, la orden @command{herd} le permite enumerar los servicios disponibles, mostrar su estado, arrancarlos y pararlos, o realizar otras acciones específicas (@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}). Por ejemplo:" #. type: example -#: guix-git/doc/guix.texi:15886 +#: guix-git/doc/guix.texi:16243 #, no-wrap msgid "# herd status\n" msgstr "# herd status\n" #. type: Plain text -#: guix-git/doc/guix.texi:15891 +#: guix-git/doc/guix.texi:16248 msgid "The above command, run as @code{root}, lists the currently defined services. The @command{herd doc} command shows a synopsis of the given service and its associated actions:" msgstr "La orden previa, ejecutada como @code{root}, enumera los servicios actualmente definidos. La orden @command{herd doc} muestra una sinopsis del servicio proporcionado y sus acciones asociadas:" # FUZZY # MAAV: Actualizar cuando se traduzcan los servicios. #. type: example -#: guix-git/doc/guix.texi:15895 +#: guix-git/doc/guix.texi:16252 #, no-wrap msgid "" "# herd doc nscd\n" @@ -29955,7 +30657,7 @@ msgstr "" # FUZZY # MAAV: Actualizar cuando se traduzcan los servicios. #. type: example -#: guix-git/doc/guix.texi:15898 +#: guix-git/doc/guix.texi:16255 #, no-wrap msgid "" "# herd doc nscd action invalidate\n" @@ -29965,14 +30667,14 @@ msgstr "" "invalidate: Invalidate the given cache--e.g., 'hosts' for host name lookups.\n" #. type: Plain text -#: guix-git/doc/guix.texi:15903 +#: guix-git/doc/guix.texi:16260 msgid "The @command{start}, @command{stop}, and @command{restart} sub-commands have the effect you would expect. For instance, the commands below stop the nscd service and restart the Xorg display server:" msgstr "Las ordenes internas @command{start}, @command{stop} y @command{restart} tienen el efecto de arrancar, parar y reiniciar el servicio, respectivamente. Por ejemplo, las siguientes órdenes paran el servicio nscd y reinician el servidor gráfico Xorg:" # FUZZY # MAAV: Actualizar cuando se traduzca shepherd #. type: example -#: guix-git/doc/guix.texi:15910 +#: guix-git/doc/guix.texi:16267 #, no-wrap msgid "" "# herd stop nscd\n" @@ -29988,46 +30690,46 @@ msgstr "" "Service xorg-server has been started.\n" #. type: Plain text -#: guix-git/doc/guix.texi:15915 +#: guix-git/doc/guix.texi:16272 msgid "The following sections document the available services, starting with the core services, that may be used in an @code{operating-system} declaration." msgstr "Las siguientes secciones documentan los servicios disponibles, comenzando con los servicios básicos, que pueden ser usados en una declaración @code{operating-system}." #. type: subsection -#: guix-git/doc/guix.texi:15951 guix-git/doc/guix.texi:24198 -#: guix-git/doc/guix.texi:24199 +#: guix-git/doc/guix.texi:16308 guix-git/doc/guix.texi:24560 +#: guix-git/doc/guix.texi:24561 #, fuzzy, no-wrap msgid "File-Sharing Services" msgstr "Servicios de mensajería" #. type: menuentry -#: guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:16308 #, fuzzy msgid "File-sharing services." msgstr "Servicios de mensajería." #. type: Plain text -#: guix-git/doc/guix.texi:15959 +#: guix-git/doc/guix.texi:16316 msgid "The @code{(gnu services base)} module provides definitions for the basic services that one expects from the system. The services exported by this module are listed below." msgstr "El módulo @code{(gnu services base)} proporciona definiciones para los servicios básicos que se esperan en el sistema. Los servicios exportados por este módulo se enumeran a continuación." #. type: defvr -#: guix-git/doc/guix.texi:15960 +#: guix-git/doc/guix.texi:16317 #, no-wrap msgid "{Scheme Variable} %base-services" msgstr "{Variable Scheme} %base-services" #. type: defvr -#: guix-git/doc/guix.texi:15966 +#: guix-git/doc/guix.texi:16323 msgid "This variable contains a list of basic services (@pxref{Service Types and Services}, for more information on service objects) one would expect from the system: a login service (mingetty) on each tty, syslogd, the libc name service cache daemon (nscd), the udev device manager, and more." msgstr "Esta variable contiene una lista de servicios básicos (@pxref{Service Types and Services}, para más información sobre los objetos servicio) que se pueden esperar en el sistema: un servicio de ingreso al sistema (mingetty) en cada tty, syslogd, el daemon de la caché del servicio de nombres (nscd), el gestor de dispositivos udev, y más." #. type: defvr -#: guix-git/doc/guix.texi:15971 +#: guix-git/doc/guix.texi:16328 msgid "This is the default value of the @code{services} field of @code{operating-system} declarations. Usually, when customizing a system, you will want to append services to @code{%base-services}, like this:" msgstr "Este es el valor predeterminado del campo @code{services} de las declaraciones @code{operating-system}. De manera habitual, cuando se personaliza el sistema, es deseable agregar servicios a @code{%base-services}, de esta forma:" #. type: lisp -#: guix-git/doc/guix.texi:15976 +#: guix-git/doc/guix.texi:16333 #, no-wrap msgid "" "(append (list (service avahi-service-type)\n" @@ -30039,58 +30741,58 @@ msgstr "" " %base-services)\n" #. type: defvr -#: guix-git/doc/guix.texi:15979 +#: guix-git/doc/guix.texi:16336 #, no-wrap msgid "{Scheme Variable} special-files-service-type" msgstr "{Variable Scheme} special-files-service-type" #. type: defvr -#: guix-git/doc/guix.texi:15982 +#: guix-git/doc/guix.texi:16339 msgid "This is the service that sets up ``special files'' such as @file{/bin/sh}; an instance of it is part of @code{%base-services}." msgstr "El servicio que establece ``archivos especiales'' como @file{/bin/sh}; una instancia suya es parte de @code{%base-services}." #. type: defvr -#: guix-git/doc/guix.texi:15986 +#: guix-git/doc/guix.texi:16343 msgid "The value associated with @code{special-files-service-type} services must be a list of tuples where the first element is the ``special file'' and the second element is its target. By default it is:" msgstr "El valor asociado con servicios @code{special-file-service-type} debe ser una lista de tuplas donde el primer elemento es el ``archivo especial'' y el segundo elemento es su destino. El valor predeterminado es:" #. type: file{#1} -#: guix-git/doc/guix.texi:15987 +#: guix-git/doc/guix.texi:16344 #, no-wrap msgid "/bin/sh" msgstr "/bin/sh" #. type: cindex -#: guix-git/doc/guix.texi:15988 +#: guix-git/doc/guix.texi:16345 #, no-wrap msgid "@file{sh}, in @file{/bin}" msgstr "@file{sh}, en @file{/bin}" #. type: lisp -#: guix-git/doc/guix.texi:15991 +#: guix-git/doc/guix.texi:16348 #, no-wrap msgid "`((\"/bin/sh\" ,(file-append bash \"/bin/sh\")))\n" msgstr "`((\"/bin/sh\" ,(file-append bash \"/bin/sh\")))\n" #. type: file{#1} -#: guix-git/doc/guix.texi:15993 +#: guix-git/doc/guix.texi:16350 #, no-wrap msgid "/usr/bin/env" msgstr "/usr/bin/env" #. type: cindex -#: guix-git/doc/guix.texi:15994 +#: guix-git/doc/guix.texi:16351 #, no-wrap msgid "@file{env}, in @file{/usr/bin}" msgstr "@file{env}, en @file{/usr/bin}" #. type: defvr -#: guix-git/doc/guix.texi:15997 +#: guix-git/doc/guix.texi:16354 msgid "If you want to add, say, @code{/usr/bin/env} to your system, you can change it to:" msgstr "Si quiere añadir, digamos, @code{/usr/bin/env} a su sistema, puede cambiar su valor por:" #. type: lisp -#: guix-git/doc/guix.texi:16001 +#: guix-git/doc/guix.texi:16358 #, no-wrap msgid "" "`((\"/bin/sh\" ,(file-append bash \"/bin/sh\"))\n" @@ -30100,28 +30802,28 @@ msgstr "" " (\"/usr/bin/env\" ,(file-append coreutils \"/bin/env\")))\n" #. type: defvr -#: guix-git/doc/guix.texi:16008 +#: guix-git/doc/guix.texi:16365 msgid "Since this is part of @code{%base-services}, you can use @code{modify-services} to customize the set of special files (@pxref{Service Reference, @code{modify-services}}). But the simple way to add a special file is @i{via} the @code{extra-special-file} procedure (see below)." msgstr "Ya que es parte de @code{%base-services}, puede usar @code{modify-services} para personalizar el conjunto de archivos especiales (@pxref{Service Reference, @code{modify-services}}). Pero una forma simple de añadir un archivo especial es usar el procedimiento @code{extra-special-file} (véase a continuación)." #. type: deffn -#: guix-git/doc/guix.texi:16010 +#: guix-git/doc/guix.texi:16367 #, no-wrap msgid "{Scheme Procedure} extra-special-file @var{file} @var{target}" msgstr "{Procedimiento Scheme} extra-special-file @var{archivo} @var{destino}" #. type: deffn -#: guix-git/doc/guix.texi:16012 +#: guix-git/doc/guix.texi:16369 msgid "Use @var{target} as the ``special file'' @var{file}." msgstr "Usa @var{destino} como el ``archivo especial'' @var{archivo}." #. type: deffn -#: guix-git/doc/guix.texi:16016 +#: guix-git/doc/guix.texi:16373 msgid "For example, adding the following lines to the @code{services} field of your operating system declaration leads to a @file{/usr/bin/env} symlink:" msgstr "Por ejemplo, la adición de las siguientes líneas al campo @code{services} de su declaración de sistema operativo genera @file{/usr/bin/env} como un enlace simbólico:" #. type: lisp -#: guix-git/doc/guix.texi:16020 +#: guix-git/doc/guix.texi:16377 #, no-wrap msgid "" "(extra-special-file \"/usr/bin/env\"\n" @@ -30131,29 +30833,29 @@ msgstr "" " (file-append coreutils \"/bin/env\"))\n" #. type: deffn -#: guix-git/doc/guix.texi:16023 +#: guix-git/doc/guix.texi:16380 #, no-wrap msgid "{Scheme Procedure} host-name-service @var{name}" msgstr "{Procedimiento Scheme} host-name-service @var{nombre}" #. type: deffn -#: guix-git/doc/guix.texi:16025 +#: guix-git/doc/guix.texi:16382 msgid "Return a service that sets the host name to @var{name}." msgstr "Devuelve un servicio que establece el nombre de máquina a @var{nombre}." #. type: defvr -#: guix-git/doc/guix.texi:16027 +#: guix-git/doc/guix.texi:16384 #, no-wrap msgid "{Scheme Variable} console-font-service-type" msgstr "{Variable Scheme} console-font-service-type" #. type: defvr -#: guix-git/doc/guix.texi:16032 +#: guix-git/doc/guix.texi:16389 msgid "Install the given fonts on the specified ttys (fonts are per virtual console on the kernel Linux). The value of this service is a list of tty/font pairs. The font can be the name of a font provided by the @code{kbd} package or any valid argument to @command{setfont}, as in this example:" msgstr "Instala las tipografías proporcionadas en las consolas virtuales (tty) especificados (las tipografías se asocian a cada consola virtual con el núcleo Linux). El valor de este servicio es una lista de pares tty/tipografía. La tipografía puede ser el nombre de alguna de las proporcionadas por el paquete @code{kbd} o cualquier parámetro válido para la orden @command{setfont}, como en este ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:16041 +#: guix-git/doc/guix.texi:16398 #, no-wrap msgid "" "`((\"tty1\" . \"LatGrkCyr-8x16\")\n" @@ -30173,193 +30875,193 @@ msgstr "" " \"/share/consolefonts/ter-132n\"))) ; para HDPI\n" #. type: deffn -#: guix-git/doc/guix.texi:16044 +#: guix-git/doc/guix.texi:16401 #, no-wrap msgid "{Scheme Procedure} login-service @var{config}" msgstr "{Procedimiento Scheme} login-service @var{config}" #. type: deffn -#: guix-git/doc/guix.texi:16048 +#: guix-git/doc/guix.texi:16405 msgid "Return a service to run login according to @var{config}, a @code{} object, which specifies the message of the day, among other things." msgstr "Devuelve un servicio para ejecutar el ingreso al sistema de acuerdo con @var{config}, un objeto @code{}, que especifica el mensaje del día, entre otras cosas." #. type: deftp -#: guix-git/doc/guix.texi:16050 +#: guix-git/doc/guix.texi:16407 #, no-wrap msgid "{Data Type} login-configuration" msgstr "{Tipo de datos} login-configuration" #. type: deftp -#: guix-git/doc/guix.texi:16052 +#: guix-git/doc/guix.texi:16409 msgid "This is the data type representing the configuration of login." msgstr "Este es el tipo de datos que representa la configuración del ingreso al sistema." #. type: code{#1} -#: guix-git/doc/guix.texi:16055 +#: guix-git/doc/guix.texi:16412 #, no-wrap msgid "motd" msgstr "motd" #. type: cindex -#: guix-git/doc/guix.texi:16056 +#: guix-git/doc/guix.texi:16413 #, no-wrap msgid "message of the day" msgstr "mensaje del día" #. type: table -#: guix-git/doc/guix.texi:16058 +#: guix-git/doc/guix.texi:16415 msgid "A file-like object containing the ``message of the day''." msgstr "Un objeto tipo-archivo que contiene el ``mensaje del día''." #. type: item -#: guix-git/doc/guix.texi:16059 guix-git/doc/guix.texi:19280 +#: guix-git/doc/guix.texi:16416 guix-git/doc/guix.texi:19642 #, no-wrap msgid "@code{allow-empty-passwords?} (default: @code{#t})" msgstr "@code{allow-empty-passwords?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:16062 +#: guix-git/doc/guix.texi:16419 msgid "Allow empty passwords by default so that first-time users can log in when the 'root' account has just been created." msgstr "Permite contraseñas vacías por defecto para que las primeras usuarias puedan ingresar en el sistema cuando la cuenta de ``root'' está recién creada." #. type: deffn -#: guix-git/doc/guix.texi:16066 +#: guix-git/doc/guix.texi:16423 #, no-wrap msgid "{Scheme Procedure} mingetty-service @var{config}" msgstr "{Procedimiento Scheme} mingetty-service @var{config}" #. type: deffn -#: guix-git/doc/guix.texi:16070 +#: guix-git/doc/guix.texi:16427 msgid "Return a service to run mingetty according to @var{config}, a @code{} object, which specifies the tty to run, among other things." msgstr "Devuelve un servicio para ejecutar mingetty de acuerdo con @var{config}, un objeto @code{}, que especifica el tty a ejecutar entre otras cosas." #. type: deftp -#: guix-git/doc/guix.texi:16072 +#: guix-git/doc/guix.texi:16429 #, no-wrap msgid "{Data Type} mingetty-configuration" msgstr "{Tipo de datos} mingetty-configuration" #. type: deftp -#: guix-git/doc/guix.texi:16075 +#: guix-git/doc/guix.texi:16432 msgid "This is the data type representing the configuration of Mingetty, which provides the default implementation of virtual console log-in." msgstr "Este es el tipo de datos que representa la configuración de Mingetty, el cual proporciona la implementación predeterminada de ingreso al sistema en las consolas virtuales." #. type: code{#1} -#: guix-git/doc/guix.texi:16078 guix-git/doc/guix.texi:16117 -#: guix-git/doc/guix.texi:33550 +#: guix-git/doc/guix.texi:16435 guix-git/doc/guix.texi:16474 +#: guix-git/doc/guix.texi:33987 #, no-wrap msgid "tty" msgstr "tty" #. type: table -#: guix-git/doc/guix.texi:16080 +#: guix-git/doc/guix.texi:16437 msgid "The name of the console this Mingetty runs on---e.g., @code{\"tty1\"}." msgstr "El nombre de la consola en la que se ejecuta este Mingetty---por ejemplo, @code{\"tty1\"}." #. type: item -#: guix-git/doc/guix.texi:16081 guix-git/doc/guix.texi:16146 -#: guix-git/doc/guix.texi:16305 +#: guix-git/doc/guix.texi:16438 guix-git/doc/guix.texi:16503 +#: guix-git/doc/guix.texi:16662 #, no-wrap msgid "@code{auto-login} (default: @code{#f})" msgstr "@code{auto-login} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:16085 +#: guix-git/doc/guix.texi:16442 msgid "When true, this field must be a string denoting the user name under which the system automatically logs in. When it is @code{#f}, a user name and password must be entered to log in." msgstr "Cuando sea verdadero, este campo debe ser una cadena que denote el nombre de usuaria bajo el cual el sistema ingresa automáticamente. Cuando es @code{#f}, se deben proporcionar un nombre de usuaria y una contraseña para ingresar en el sistema." #. type: item -#: guix-git/doc/guix.texi:16086 +#: guix-git/doc/guix.texi:16443 #, no-wrap msgid "@code{login-program} (default: @code{#f})" msgstr "@code{login-program} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16090 +#: guix-git/doc/guix.texi:16447 msgid "This must be either @code{#f}, in which case the default log-in program is used (@command{login} from the Shadow tool suite), or a gexp denoting the name of the log-in program." msgstr "Debe ser @code{#f}, en cuyo caso se usa el programa predeterminado de ingreso al sistema (@command{login} de las herramientas Shadow), o una expresión-G que determine el nombre del programa de ingreso al sistema." #. type: item -#: guix-git/doc/guix.texi:16091 +#: guix-git/doc/guix.texi:16448 #, no-wrap msgid "@code{login-pause?} (default: @code{#f})" msgstr "@code{login-pause?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16094 +#: guix-git/doc/guix.texi:16451 msgid "When set to @code{#t} in conjunction with @var{auto-login}, the user will have to press a key before the log-in shell is launched." msgstr "Cuando es @code{#t} en conjunción con @var{auto-login}, la usuaria deberá presionar una tecla para lanzar el shell de ingreso al sistema." #. type: item -#: guix-git/doc/guix.texi:16095 +#: guix-git/doc/guix.texi:16452 #, fuzzy, no-wrap msgid "@code{clear-on-logout?} (default: @code{#t})" msgstr "@code{cleanup-hook} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16097 +#: guix-git/doc/guix.texi:16454 #, fuzzy msgid "When set to @code{#t}, the screen will be cleared after logout." msgstr "Cuando es @code{#t}, agetty no limpiará la pantalla antes de mostrar el mensaje de ingreso al sistema." #. type: item -#: guix-git/doc/guix.texi:16098 +#: guix-git/doc/guix.texi:16455 #, no-wrap msgid "@code{mingetty} (default: @var{mingetty})" msgstr "@code{mingetty} (predeterminado: @var{mingetty})" #. type: table -#: guix-git/doc/guix.texi:16100 +#: guix-git/doc/guix.texi:16457 msgid "The Mingetty package to use." msgstr "El paquete Mingetty usado." #. type: deffn -#: guix-git/doc/guix.texi:16104 +#: guix-git/doc/guix.texi:16461 #, no-wrap msgid "{Scheme Procedure} agetty-service @var{config}" msgstr "{Procedure Scheme} agetty-service @var{config}" #. type: deffn -#: guix-git/doc/guix.texi:16108 +#: guix-git/doc/guix.texi:16465 msgid "Return a service to run agetty according to @var{config}, an @code{} object, which specifies the tty to run, among other things." msgstr "Devuelve un servicio para ejecutar agetty de acuerdo con @var{config}, un objeto @code{}, que especifica el tty a ejecutar entre otras cosas." #. type: deftp -#: guix-git/doc/guix.texi:16110 +#: guix-git/doc/guix.texi:16467 #, no-wrap msgid "{Data Type} agetty-configuration" msgstr "{Tipo de datos} agetty-configuration" #. type: deftp -#: guix-git/doc/guix.texi:16114 +#: guix-git/doc/guix.texi:16471 msgid "This is the data type representing the configuration of agetty, which implements virtual and serial console log-in. See the @code{agetty(8)} man page for more information." msgstr "Este es el tipo de datos que representa la configuración de agetty, que implementa el ingreso al sistema en las consolas virtuales y serie. Véase la página de manual @code{agetty(8)} para más información." # FUZZY #. type: table -#: guix-git/doc/guix.texi:16121 +#: guix-git/doc/guix.texi:16478 msgid "The name of the console this agetty runs on, as a string---e.g., @code{\"ttyS0\"}. This argument is optional, it will default to a reasonable default serial port used by the kernel Linux." msgstr "El nombre de la consola en la que se ejecuta este agetty, como una cadena---por ejemplo, @code{\"ttyS0\"}. Este parámetro es opcional, su valor predeterminado es un puerto serie razonable usado por el núcleo Linux." #. type: table -#: guix-git/doc/guix.texi:16125 +#: guix-git/doc/guix.texi:16482 msgid "For this, if there is a value for an option @code{agetty.tty} in the kernel command line, agetty will extract the device name of the serial port from it and use that." msgstr "Para ello, si hay un valor para una opción @code{agetty.tty} en la línea de órdenes del núcleo, agetty extraerá el nombre del dispositivo del puerto serie de allí y usará dicho valor." #. type: table -#: guix-git/doc/guix.texi:16129 +#: guix-git/doc/guix.texi:16486 msgid "If not and if there is a value for an option @code{console} with a tty in the Linux command line, agetty will extract the device name of the serial port from it and use that." msgstr "Si no y hay un valor para la opción @code{console} con un tty en la línea de órdenes de Linux, agetty extraerá el nombre del dispositivo del puerto serie de allí y usará dicho valor." # FUZZY #. type: table -#: guix-git/doc/guix.texi:16133 +#: guix-git/doc/guix.texi:16490 msgid "In both cases, agetty will leave the other serial device settings (baud rate etc.)@: alone---in the hope that Linux pinned them to the correct values." msgstr "En ambos casos, agetty dejará el resto de configuración de dispositivos serie (tasa de transmisión, etc.)@: sin modificar---con la esperanza de que Linux haya proporcionado ya los valores correctos." #. type: item -#: guix-git/doc/guix.texi:16134 guix-git/doc/guix.texi:33711 +#: guix-git/doc/guix.texi:16491 guix-git/doc/guix.texi:34148 #, no-wrap msgid "@code{baud-rate} (default: @code{#f})" msgstr "@code{baud-rate} (predeterminado: @code{#f})" @@ -30367,62 +31069,62 @@ msgstr "@code{baud-rate} (predeterminado: @code{#f})" # FUZZY # MAAV: Baud rate -> tasa de transmisión? #. type: table -#: guix-git/doc/guix.texi:16137 +#: guix-git/doc/guix.texi:16494 msgid "A string containing a comma-separated list of one or more baud rates, in descending order." msgstr "Una cadena que contenga una lista separada por comas de una o más tasas de transmisión, en orden descendiente." #. type: item -#: guix-git/doc/guix.texi:16138 +#: guix-git/doc/guix.texi:16495 #, no-wrap msgid "@code{term} (default: @code{#f})" msgstr "@code{term} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16141 +#: guix-git/doc/guix.texi:16498 msgid "A string containing the value used for the @env{TERM} environment variable." msgstr "Una cadena que contiene el valor usado para la variable de entorno @env{TERM}." #. type: item -#: guix-git/doc/guix.texi:16142 +#: guix-git/doc/guix.texi:16499 #, no-wrap msgid "@code{eight-bits?} (default: @code{#f})" msgstr "@code{eight-bits?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16145 +#: guix-git/doc/guix.texi:16502 msgid "When @code{#t}, the tty is assumed to be 8-bit clean, and parity detection is disabled." msgstr "En caso de ser @code{#t}, se asume que el tty permite el paso de 8 bits, y la detección de paridad está desactivada." #. type: table -#: guix-git/doc/guix.texi:16149 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:16506 guix-git/doc/guix.texi:16665 msgid "When passed a login name, as a string, the specified user will be logged in automatically without prompting for their login name or password." msgstr "Cuando se proporciona un nombre de ingreso al sistema, como una cadena, la usuaria especificada ingresará automáticamente sin solicitar su nombre de ingreso ni su contraseña." #. type: item -#: guix-git/doc/guix.texi:16150 +#: guix-git/doc/guix.texi:16507 #, no-wrap msgid "@code{no-reset?} (default: @code{#f})" msgstr "@code{no-reset?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16152 +#: guix-git/doc/guix.texi:16509 msgid "When @code{#t}, don't reset terminal cflags (control modes)." msgstr "En caso de ser @code{#t}, no reinicia los modos de control del terminal (cflags)." #. type: item -#: guix-git/doc/guix.texi:16153 +#: guix-git/doc/guix.texi:16510 #, no-wrap msgid "@code{host} (default: @code{#f})" msgstr "@code{host} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:16156 +#: guix-git/doc/guix.texi:16513 msgid "This accepts a string containing the ``login_host'', which will be written into the @file{/var/run/utmpx} file." msgstr "Acepta una cadena que contenga el ``nombre_de_máquina_de_ingreso'', que será escrito en el archivo @file{/var/run/utmpx}." #. type: item -#: guix-git/doc/guix.texi:16157 +#: guix-git/doc/guix.texi:16514 #, no-wrap msgid "@code{remote?} (default: @code{#f})" msgstr "@code{remote?} (predeterminado: @code{#f})" @@ -30430,282 +31132,282 @@ msgstr "@code{remote?} (predeterminado: @code{#f})" # FUZZY # TODO (MAAV): Fakehost #. type: table -#: guix-git/doc/guix.texi:16161 +#: guix-git/doc/guix.texi:16518 msgid "When set to @code{#t} in conjunction with @var{host}, this will add an @code{-r} fakehost option to the command line of the login program specified in @var{login-program}." msgstr "Cuando se fija a @code{#t} en conjunción con @var{host}, se añadirá una opción @code{-r} \"fakehost\" a la línea de órdenes del programa de ingreso al sistema especificado en @var{login-program}." #. type: item -#: guix-git/doc/guix.texi:16162 +#: guix-git/doc/guix.texi:16519 #, no-wrap msgid "@code{flow-control?} (default: @code{#f})" msgstr "@code{flow-control?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16164 +#: guix-git/doc/guix.texi:16521 msgid "When set to @code{#t}, enable hardware (RTS/CTS) flow control." msgstr "Cuando es @code{#t}, activa el control de flujo hardware (RTS/CTS)." #. type: item -#: guix-git/doc/guix.texi:16165 +#: guix-git/doc/guix.texi:16522 #, no-wrap msgid "@code{no-issue?} (default: @code{#f})" msgstr "@code{no-issue?} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:16168 +#: guix-git/doc/guix.texi:16525 msgid "When set to @code{#t}, the contents of the @file{/etc/issue} file will not be displayed before presenting the login prompt." msgstr "Cuando es @code{#t}, el contenido del archivo @file{/etc/issue} no se mostrará antes de presentar el mensaje de ingreso al sistema." #. type: item -#: guix-git/doc/guix.texi:16169 +#: guix-git/doc/guix.texi:16526 #, no-wrap msgid "@code{init-string} (default: @code{#f})" msgstr "@code{init-string} (predeterminada: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:16172 +#: guix-git/doc/guix.texi:16529 msgid "This accepts a string that will be sent to the tty or modem before sending anything else. It can be used to initialize a modem." msgstr "Esto acepta una cadena que se enviará al tty o módem antes de mandar nada más. Puede usarse para inicializar un modem." #. type: item -#: guix-git/doc/guix.texi:16173 +#: guix-git/doc/guix.texi:16530 #, no-wrap msgid "@code{no-clear?} (default: @code{#f})" msgstr "@code{no-clear?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16176 +#: guix-git/doc/guix.texi:16533 msgid "When set to @code{#t}, agetty will not clear the screen before showing the login prompt." msgstr "Cuando es @code{#t}, agetty no limpiará la pantalla antes de mostrar el mensaje de ingreso al sistema." #. type: item -#: guix-git/doc/guix.texi:16177 +#: guix-git/doc/guix.texi:16534 #, no-wrap msgid "@code{login-program} (default: (file-append shadow \"/bin/login\"))" msgstr "@code{login-program} (predeterminado: (file-append shadow \"/bin/login\"))" #. type: table -#: guix-git/doc/guix.texi:16181 +#: guix-git/doc/guix.texi:16538 msgid "This must be either a gexp denoting the name of a log-in program, or unset, in which case the default value is the @command{login} from the Shadow tool suite." msgstr "Esto debe ser o bien una expresión-g que denote el nombre del programa de ingreso al sistema, o no debe proporcionarse, en cuyo caso el valor predeterminado es @command{login} del conjunto de herramientas Shadow." #. type: item -#: guix-git/doc/guix.texi:16182 +#: guix-git/doc/guix.texi:16539 #, no-wrap msgid "@code{local-line} (default: @code{#f})" msgstr "@code{local-line} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16186 +#: guix-git/doc/guix.texi:16543 #, fuzzy msgid "Control the CLOCAL line flag. This accepts one of three symbols as arguments, @code{'auto}, @code{'always}, or @code{'never}. If @code{#f}, the default value chosen by agetty is @code{'auto}." msgstr "Controla el selector la línea CLOCAL. Acepta uno de estos tres símbolos como parámetros, @code{'auto}, @code{'always} (siempre) o @code{'never} (nunca). Si es @code{#f}, el valor predeterminado elegido por agetty es @code{'auto}." #. type: item -#: guix-git/doc/guix.texi:16187 +#: guix-git/doc/guix.texi:16544 #, no-wrap msgid "@code{extract-baud?} (default: @code{#f})" msgstr "@code{extract-baud?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16190 +#: guix-git/doc/guix.texi:16547 msgid "When set to @code{#t}, instruct agetty to try to extract the baud rate from the status messages produced by certain types of modems." msgstr "Cuando es @code{#t}, instruye a agetty para extraer la tasa de transmisión de los mensajes de estado producidos por ciertos tipos de módem." #. type: item -#: guix-git/doc/guix.texi:16191 +#: guix-git/doc/guix.texi:16548 #, no-wrap msgid "@code{skip-login?} (default: @code{#f})" msgstr "@code{skip-login?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16195 +#: guix-git/doc/guix.texi:16552 msgid "When set to @code{#t}, do not prompt the user for a login name. This can be used with @var{login-program} field to use non-standard login systems." msgstr "Cuando es @code{#t}, no solicita el nombre de la usuaria para el ingreso al sistema. Puede usarse con el campo @var{login-program} para usar sistemas de ingreso no estándar." #. type: item -#: guix-git/doc/guix.texi:16196 +#: guix-git/doc/guix.texi:16553 #, no-wrap msgid "@code{no-newline?} (default: @code{#f})" msgstr "@code{no-newline?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16199 +#: guix-git/doc/guix.texi:16556 msgid "When set to @code{#t}, do not print a newline before printing the @file{/etc/issue} file." msgstr "Cuando es @code{#t}, no imprime una nueva línea antes de imprimir el archivo @file{/etc/issue}." #. type: item -#: guix-git/doc/guix.texi:16201 +#: guix-git/doc/guix.texi:16558 #, no-wrap msgid "@code{login-options} (default: @code{#f})" msgstr "@code{login-options} (predeterminadas: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16206 +#: guix-git/doc/guix.texi:16563 msgid "This option accepts a string containing options that are passed to the login program. When used with the @var{login-program}, be aware that a malicious user could try to enter a login name containing embedded options that could be parsed by the login program." msgstr "Esta opción acepta una cadena que contenga opciones para proporcionar al programa de ingreso al sistema. Cuando se use con @var{login-program}, sea consciente de que una usuaria con malas intenciones podría intentar introducir un nombre que contuviese opciones embebidas que serían procesadas por el programa de ingreso." #. type: item -#: guix-git/doc/guix.texi:16207 +#: guix-git/doc/guix.texi:16564 #, no-wrap msgid "@code{login-pause} (default: @code{#f})" msgstr "@code{login-pause} (predeterminada: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:16211 +#: guix-git/doc/guix.texi:16568 msgid "When set to @code{#t}, wait for any key before showing the login prompt. This can be used in conjunction with @var{auto-login} to save memory by lazily spawning shells." msgstr "Cuando es @code{#t}, espera la pulsación de cualquier tecla antes de mostrar el mensaje de ingreso al sistema. Esto puede usarse en conjunción con @var{auto-login} para ahorrar memoria lanzando cada shell cuando sea necesario." #. type: item -#: guix-git/doc/guix.texi:16212 +#: guix-git/doc/guix.texi:16569 #, no-wrap msgid "@code{chroot} (default: @code{#f})" msgstr "@code{chroot} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16215 +#: guix-git/doc/guix.texi:16572 msgid "Change root to the specified directory. This option accepts a directory path as a string." msgstr "Cambia la raíz al directorio especificado. Esta opción acepta una ruta de directorio como una cadena." #. type: item -#: guix-git/doc/guix.texi:16216 +#: guix-git/doc/guix.texi:16573 #, no-wrap msgid "@code{hangup?} (default: @code{#f})" msgstr "@code{hangup?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16219 +#: guix-git/doc/guix.texi:16576 msgid "Use the Linux system call @code{vhangup} to do a virtual hangup of the specified terminal." msgstr "Usa la llamada del sistema Linux @code{vhangup} para colgar de forma virtual el terminal especificado." #. type: item -#: guix-git/doc/guix.texi:16220 +#: guix-git/doc/guix.texi:16577 #, no-wrap msgid "@code{keep-baud?} (default: @code{#f})" msgstr "@code{keep-baud?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16224 +#: guix-git/doc/guix.texi:16581 msgid "When set to @code{#t}, try to keep the existing baud rate. The baud rates from @var{baud-rate} are used when agetty receives a @key{BREAK} character." msgstr "Cuando es @code{#t}, prueba a mantener la tasa de transmisión existente. Las tasas de transmisión de @var{baud-rate} se usan cuando agetty recibe un carácter @key{BREAK}." #. type: item -#: guix-git/doc/guix.texi:16225 +#: guix-git/doc/guix.texi:16582 #, no-wrap msgid "@code{timeout} (default: @code{#f})" msgstr "@code{timeout} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16228 +#: guix-git/doc/guix.texi:16585 msgid "When set to an integer value, terminate if no user name could be read within @var{timeout} seconds." msgstr "Cuando sea un valor entero, termina si no se pudo leer ningún nombre de usuaria en @var{timeout} segundos." #. type: item -#: guix-git/doc/guix.texi:16229 +#: guix-git/doc/guix.texi:16586 #, no-wrap msgid "@code{detect-case?} (default: @code{#f})" msgstr "@code{detect-case?} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:16235 +#: guix-git/doc/guix.texi:16592 msgid "When set to @code{#t}, turn on support for detecting an uppercase-only terminal. This setting will detect a login name containing only uppercase letters as indicating an uppercase-only terminal and turn on some upper-to-lower case conversions. Note that this will not support Unicode characters." msgstr "Cuando es @code{#t}, activa la detección de terminales únicamente con mayúsculas. ESta configuración detectará un nombre de ingreso que contenga únicamente letras mayúsculas como un indicativo de un terminal con letras únicamente mayúsculas y activará las conversiones de mayúscula a minúscula. Tenga en cuenta que esto no permitirá caracteres Unicode." #. type: item -#: guix-git/doc/guix.texi:16236 +#: guix-git/doc/guix.texi:16593 #, no-wrap msgid "@code{wait-cr?} (default: @code{#f})" msgstr "@code{wait-cr?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16241 +#: guix-git/doc/guix.texi:16598 msgid "When set to @code{#t}, wait for the user or modem to send a carriage-return or linefeed character before displaying @file{/etc/issue} or login prompt. This is typically used with the @var{init-string} option." msgstr "Cuando es @code{#t}, espera hasta que la usuaria o el modem envíen un carácter de retorno de carro o de salto de línea antes de mostrar @file{/etc/issue} o el mensaje de ingreso. Se usa de forma típica junto a la opción @var{init-string}." #. type: item -#: guix-git/doc/guix.texi:16242 +#: guix-git/doc/guix.texi:16599 #, no-wrap msgid "@code{no-hints?} (default: @code{#f})" msgstr "@code{no-hints?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16245 +#: guix-git/doc/guix.texi:16602 msgid "When set to @code{#t}, do not print hints about Num, Caps, and Scroll locks." msgstr "Cuando es @code{#t}, no imprime avisos sobre el bloqueo numérico, las mayúsculas o el bloqueo del desplazamiento." #. type: item -#: guix-git/doc/guix.texi:16246 +#: guix-git/doc/guix.texi:16603 #, no-wrap msgid "@code{no-hostname?} (default: @code{#f})" msgstr "@code{no-hostname?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16249 +#: guix-git/doc/guix.texi:16606 msgid "By default, the hostname is printed. When this option is set to @code{#t}, no hostname will be shown at all." msgstr "El nombre de la máquina se imprime de forma predeterminada. Cuando esta opción es @code{#t}, no se mostrará ningún nombre de máquina." #. type: item -#: guix-git/doc/guix.texi:16250 +#: guix-git/doc/guix.texi:16607 #, no-wrap msgid "@code{long-hostname?} (default: @code{#f})" msgstr "@code{long-hostname?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16254 +#: guix-git/doc/guix.texi:16611 msgid "By default, the hostname is only printed until the first dot. When this option is set to @code{#t}, the fully qualified hostname by @code{gethostname} or @code{getaddrinfo} is shown." msgstr "El nombre de máquina se imprime de forma predeterminada únicamente hasta el primer punto. Cuando esta opción es @code{#t}, se muestra el nombre completamente cualificado de la máquina mostrado por @code{gethostname} o @code{getaddrinfo}." #. type: item -#: guix-git/doc/guix.texi:16255 +#: guix-git/doc/guix.texi:16612 #, no-wrap msgid "@code{erase-characters} (default: @code{#f})" msgstr "@code{erase-characters} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:16258 +#: guix-git/doc/guix.texi:16615 msgid "This option accepts a string of additional characters that should be interpreted as backspace when the user types their login name." msgstr "Esta opción acepta una cadena de caracteres adicionales que deben interpretarse como borrado del carácter anterior cuando la usuaria introduce su nombre de ingreso." #. type: item -#: guix-git/doc/guix.texi:16259 +#: guix-git/doc/guix.texi:16616 #, no-wrap msgid "@code{kill-characters} (default: @code{#f})" msgstr "@code{kill-characters} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16263 +#: guix-git/doc/guix.texi:16620 msgid "This option accepts a string that should be interpreted to mean ``ignore all previous characters'' (also called a ``kill'' character) when the user types their login name." msgstr "Esta opción acepta una cadena de que debe ser interpretada como ``ignora todos los caracteres anteriores'' (también llamado carácter ``kill'') cuando la usuaria introduce su nombre de ingreso." #. type: item -#: guix-git/doc/guix.texi:16264 +#: guix-git/doc/guix.texi:16621 #, no-wrap msgid "@code{chdir} (default: @code{#f})" msgstr "@code{chdir} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16267 +#: guix-git/doc/guix.texi:16624 msgid "This option accepts, as a string, a directory path that will be changed to before login." msgstr "Esta opción acepta, como una cadena, una ruta de directorio que a la que se cambiará antes del ingreso al sistema." #. type: item -#: guix-git/doc/guix.texi:16268 +#: guix-git/doc/guix.texi:16625 #, no-wrap msgid "@code{delay} (default: @code{#f})" msgstr "@code{delay} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16271 +#: guix-git/doc/guix.texi:16628 msgid "This options accepts, as an integer, the number of seconds to sleep before opening the tty and displaying the login prompt." msgstr "Esta opción acepta, como un entero, el número de segundos a esperar antes de abrir el tty y mostrar el mensaje de ingreso al sistema." #. type: item -#: guix-git/doc/guix.texi:16272 +#: guix-git/doc/guix.texi:16629 #, no-wrap msgid "@code{nice} (default: @code{#f})" msgstr "@code{nice} (predeterminado: @code{#f})" @@ -30714,310 +31416,310 @@ msgstr "@code{nice} (predeterminado: @code{#f})" # # TODO (MAAV): Nice #. type: table -#: guix-git/doc/guix.texi:16275 +#: guix-git/doc/guix.texi:16632 msgid "This option accepts, as an integer, the nice value with which to run the @command{login} program." msgstr "Esta opción acepta, como un entero, el valor ``nice'' con el que se ejecutará el programa @command{login}." #. type: item -#: guix-git/doc/guix.texi:16276 guix-git/doc/guix.texi:16564 -#: guix-git/doc/guix.texi:17478 guix-git/doc/guix.texi:25181 -#: guix-git/doc/guix.texi:26658 guix-git/doc/guix.texi:29074 -#: guix-git/doc/guix.texi:29869 guix-git/doc/guix.texi:31622 -#: guix-git/doc/guix.texi:34051 +#: guix-git/doc/guix.texi:16633 guix-git/doc/guix.texi:16921 +#: guix-git/doc/guix.texi:17840 guix-git/doc/guix.texi:25543 +#: guix-git/doc/guix.texi:26995 guix-git/doc/guix.texi:29411 +#: guix-git/doc/guix.texi:30234 guix-git/doc/guix.texi:31987 +#: guix-git/doc/guix.texi:34488 #, no-wrap msgid "@code{extra-options} (default: @code{'()})" msgstr "@code{extra-options} (predeterminadas: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:16279 +#: guix-git/doc/guix.texi:16636 msgid "This option provides an ``escape hatch'' for the user to provide arbitrary command-line arguments to @command{agetty} as a list of strings." msgstr "Esta opción proporciona una ``trampilla de escape'' para que la usuaria proporcione parámetros de línea de órdenes adicionales a @command{agetty} como una lista de cadenas." #. type: deffn -#: guix-git/doc/guix.texi:16283 +#: guix-git/doc/guix.texi:16640 #, no-wrap msgid "{Scheme Procedure} kmscon-service-type @var{config}" msgstr "{Procedimiento Scheme} kmscon-service-type @var{config}" #. type: deffn -#: guix-git/doc/guix.texi:16287 +#: guix-git/doc/guix.texi:16644 msgid "Return a service to run @uref{https://www.freedesktop.org/wiki/Software/kmscon,kmscon} according to @var{config}, a @code{} object, which specifies the tty to run, among other things." msgstr "Devuelve un servicio que ejecuta @uref{https://www.freedesktop.org/wiki/Software/kmscon,kmscon} de acuerdo a @var{config}, un objeto @code{}, que especifica el tty sobre el que se ejecutará, entre otras cosas." #. type: deftp -#: guix-git/doc/guix.texi:16289 +#: guix-git/doc/guix.texi:16646 #, no-wrap msgid "{Data Type} kmscon-configuration" msgstr "{Tipo de datos} kmscon-configuration" #. type: deftp -#: guix-git/doc/guix.texi:16292 +#: guix-git/doc/guix.texi:16649 msgid "This is the data type representing the configuration of Kmscon, which implements virtual console log-in." msgstr "Este es el tipo de datos que representa la configuración de Kmscon, que implementa el ingreso al sistema en consolas virtuales." #. type: code{#1} -#: guix-git/doc/guix.texi:16295 +#: guix-git/doc/guix.texi:16652 #, no-wrap msgid "virtual-terminal" msgstr "virtual-terminal" #. type: table -#: guix-git/doc/guix.texi:16297 +#: guix-git/doc/guix.texi:16654 msgid "The name of the console this Kmscon runs on---e.g., @code{\"tty1\"}." msgstr "El nombre de la consola en la que se ejecuta este Kmscon---por ejemplo, @code{\"tty1\"}." #. type: item -#: guix-git/doc/guix.texi:16298 +#: guix-git/doc/guix.texi:16655 #, no-wrap msgid "@code{login-program} (default: @code{#~(string-append #$shadow \"/bin/login\")})" msgstr "@code{login-program} (predeterminado: @code{#~(string-append #$shadow \"/bin/login\")})" #. type: table -#: guix-git/doc/guix.texi:16301 +#: guix-git/doc/guix.texi:16658 #, fuzzy msgid "A gexp denoting the name of the log-in program. The default log-in program is @command{login} from the Shadow tool suite." msgstr "Una expresión-g que denota el programa de ingreso al sistema. El programa de ingreso al sistema predeterminado es @command{login} del conjunto de herramientas Shadow." #. type: item -#: guix-git/doc/guix.texi:16302 +#: guix-git/doc/guix.texi:16659 #, no-wrap msgid "@code{login-arguments} (default: @code{'(\"-p\")})" msgstr "@code{login-arguments} (predeterminados: @code{'(\"-p\")})" #. type: table -#: guix-git/doc/guix.texi:16304 +#: guix-git/doc/guix.texi:16661 msgid "A list of arguments to pass to @command{login}." msgstr "Una lista de parámetros para proporcionar a @command{login}." #. type: item -#: guix-git/doc/guix.texi:16309 +#: guix-git/doc/guix.texi:16666 #, no-wrap msgid "@code{hardware-acceleration?} (default: #f)" msgstr "@code{hardware-acceleration?} (predeterminado: #f)" #. type: table -#: guix-git/doc/guix.texi:16311 +#: guix-git/doc/guix.texi:16668 msgid "Whether to use hardware acceleration." msgstr "Determina si se usará aceleración hardware." #. type: item -#: guix-git/doc/guix.texi:16312 +#: guix-git/doc/guix.texi:16669 #, fuzzy, no-wrap msgid "@code{font-engine} (default: @code{\"pango\"})" msgstr "@code{origin} (predeterminado: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:16314 +#: guix-git/doc/guix.texi:16671 msgid "Font engine used in Kmscon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16315 +#: guix-git/doc/guix.texi:16672 #, fuzzy, no-wrap msgid "@code{font-size} (default: @code{12})" msgstr "@code{memory-size} (predeterminado: @code{512})" #. type: table -#: guix-git/doc/guix.texi:16317 +#: guix-git/doc/guix.texi:16674 msgid "Font size used in Kmscon." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16321 +#: guix-git/doc/guix.texi:16678 #, fuzzy #| msgid "If this is @code{#f}, Xorg uses the default keyboard layout---usually US English (``qwerty'') for a 105-key PC keyboard." msgid "If this is @code{#f}, Kmscon uses the default keyboard layout---usually US English (``qwerty'') for a 105-key PC keyboard." msgstr "Si es @code{#f}, Xorg usa la distribución de teclado predeterminada---normalmente inglés de EEUU (``qwerty'') para un teclado de PC de 105 teclas." #. type: table -#: guix-git/doc/guix.texi:16325 +#: guix-git/doc/guix.texi:16682 #, fuzzy #| msgid "Otherwise this must be a @code{keyboard-layout} object specifying the keyboard layout in use when Xorg is running. @xref{Keyboard Layout}, for more information on how to specify the keyboard layout." msgid "Otherwise this must be a @code{keyboard-layout} object specifying the keyboard layout. @xref{Keyboard Layout}, for more information on how to specify the keyboard layout." msgstr "En otro caso, debe ser un objeto @code{keyboard-layout} que especifique la distribución de teclado usada para la ejecución de Xorg. @xref{Keyboard Layout}, para más información sobre cómo especificar la distribución de teclado." #. type: item -#: guix-git/doc/guix.texi:16326 +#: guix-git/doc/guix.texi:16683 #, no-wrap msgid "@code{kmscon} (default: @var{kmscon})" msgstr "@code{kmscon} (predeterminado: @var{kmscon})" #. type: table -#: guix-git/doc/guix.texi:16328 +#: guix-git/doc/guix.texi:16685 msgid "The Kmscon package to use." msgstr "El paquete Kmscon usado." # TODO: Comprobar traducción de libc #. type: cindex -#: guix-git/doc/guix.texi:16332 +#: guix-git/doc/guix.texi:16689 #, no-wrap msgid "name service cache daemon" msgstr "daemon de caché del servicio de nombres" #. type: cindex -#: guix-git/doc/guix.texi:16333 +#: guix-git/doc/guix.texi:16690 #, no-wrap msgid "nscd" msgstr "nscd" #. type: deffn -#: guix-git/doc/guix.texi:16334 +#: guix-git/doc/guix.texi:16691 #, no-wrap msgid "{Scheme Procedure} nscd-service [@var{config}] [#:glibc glibc] @" msgstr "{Procedimiento Scheme} nscd-service [@var{configuración}] [#:glibc glibc] @" #. type: deffn -#: guix-git/doc/guix.texi:16339 +#: guix-git/doc/guix.texi:16696 msgid "[#:name-services '()] Return a service that runs the libc name service cache daemon (nscd) with the given @var{config}---an @code{} object. @xref{Name Service Switch}, for an example." msgstr "" "[#:name-services '()]\n" "Devuelve un servicio que ejecuta el daemon de la caché del servicio de nombres (nscd) con la @var{configuración} proporcionada---un objeto @code{}. @xref{Name Service Switch}, para un ejemplo." #. type: deffn -#: guix-git/doc/guix.texi:16341 +#: guix-git/doc/guix.texi:16698 msgid "For convenience, the Shepherd service for nscd provides the following actions:" msgstr "Por conveniencia, el servicio ncsd de Shepherd proporciona las siguientes acciones:" #. type: item -#: guix-git/doc/guix.texi:16343 +#: guix-git/doc/guix.texi:16700 #, no-wrap msgid "invalidate" msgstr "invalidate" #. type: cindex -#: guix-git/doc/guix.texi:16344 +#: guix-git/doc/guix.texi:16701 #, no-wrap msgid "cache invalidation, nscd" msgstr "invalidación de caché, nscd" #. type: cindex -#: guix-git/doc/guix.texi:16345 +#: guix-git/doc/guix.texi:16702 #, no-wrap msgid "nscd, cache invalidation" msgstr "nscd, invalidación de caché" #. type: table -#: guix-git/doc/guix.texi:16347 +#: guix-git/doc/guix.texi:16704 msgid "This invalidate the given cache. For instance, running:" msgstr "Esto invalida la caché dada. Por ejemplo, ejecutar:" #. type: example -#: guix-git/doc/guix.texi:16350 +#: guix-git/doc/guix.texi:16707 #, no-wrap msgid "herd invalidate nscd hosts\n" msgstr "herd invalidate nscd hosts\n" #. type: table -#: guix-git/doc/guix.texi:16354 +#: guix-git/doc/guix.texi:16711 msgid "invalidates the host name lookup cache of nscd." msgstr "invalida la caché de búsqueda de nombres de máquinas de nscd." #. type: item -#: guix-git/doc/guix.texi:16355 +#: guix-git/doc/guix.texi:16712 #, no-wrap msgid "statistics" msgstr "statistics" #. type: table -#: guix-git/doc/guix.texi:16358 +#: guix-git/doc/guix.texi:16715 msgid "Running @command{herd statistics nscd} displays information about nscd usage and caches." msgstr "Ejecutar @command{herd statistics nscd} muestra información del uso nscd y la caché." #. type: defvr -#: guix-git/doc/guix.texi:16362 +#: guix-git/doc/guix.texi:16719 #, no-wrap msgid "{Scheme Variable} %nscd-default-configuration" msgstr "{Variable Scheme} %nscd-default-configuration" # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:16366 +#: guix-git/doc/guix.texi:16723 msgid "This is the default @code{} value (see below) used by @code{nscd-service}. It uses the caches defined by @code{%nscd-default-caches}; see below." msgstr "El valor del @code{} predeterminado (véase a continuación) usado por @code{nscd-service}. Usa los espacios de caché definidos por @code{%nscd-default-caches}; véase a continuación." #. type: deftp -#: guix-git/doc/guix.texi:16368 +#: guix-git/doc/guix.texi:16725 #, no-wrap msgid "{Data Type} nscd-configuration" msgstr "{Tipo de datos} nscd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:16371 +#: guix-git/doc/guix.texi:16728 msgid "This is the data type representing the name service cache daemon (nscd) configuration." msgstr "Este tipo de datos representa la configuración del daemon de caché del servicio de nombres (nscd)." #. type: item -#: guix-git/doc/guix.texi:16374 +#: guix-git/doc/guix.texi:16731 #, no-wrap msgid "@code{name-services} (default: @code{'()})" msgstr "@code{name-services} (predeterminados: @code{'()})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:16377 +#: guix-git/doc/guix.texi:16734 msgid "List of packages denoting @dfn{name services} that must be visible to the nscd---e.g., @code{(list @var{nss-mdns})}." msgstr "Lista de paquetes que indican los @dfn{servicios de nombres} que serán visibles al nscd---por ejemplo, @code{(list @var{nss-mdns})}." #. type: item -#: guix-git/doc/guix.texi:16378 +#: guix-git/doc/guix.texi:16735 #, no-wrap msgid "@code{glibc} (default: @var{glibc})" msgstr "@code{glibc} (predeterminada: @var{glibc})" #. type: table -#: guix-git/doc/guix.texi:16381 +#: guix-git/doc/guix.texi:16738 msgid "Package object denoting the GNU C Library providing the @command{nscd} command." msgstr "Paquete que denota la biblioteca C de GNU que proporciona la orden @command{nscd}." #. type: item -#: guix-git/doc/guix.texi:16382 +#: guix-git/doc/guix.texi:16739 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/nscd.log\"})" msgstr "@code{log-file} (predeterminado: @code{\"/var/log/nscd.log\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:16385 +#: guix-git/doc/guix.texi:16742 msgid "Name of the nscd log file. This is where debugging output goes when @code{debug-level} is strictly positive." msgstr "Nombre del archivo de registro de nscd. Aquí es donde se almacena la salida de depuración cuando @code{debug-level} es estrictamente positivo." #. type: item -#: guix-git/doc/guix.texi:16386 +#: guix-git/doc/guix.texi:16743 #, no-wrap msgid "@code{debug-level} (default: @code{0})" msgstr "@code{debug-level} (predeterminado: @code{0})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:16389 +#: guix-git/doc/guix.texi:16746 msgid "Integer denoting the debugging levels. Higher numbers mean that more debugging output is logged." msgstr "Entero que indica el nivel de depuración. Números mayores significan que se registra más salida de depuración." #. type: item -#: guix-git/doc/guix.texi:16390 +#: guix-git/doc/guix.texi:16747 #, no-wrap msgid "@code{caches} (default: @code{%nscd-default-caches})" msgstr "@code{caches} (predeterminado: @code{%nscd-default-caches})" #. type: table -#: guix-git/doc/guix.texi:16393 +#: guix-git/doc/guix.texi:16750 msgid "List of @code{} objects denoting things to be cached; see below." msgstr "Lista de objetos @code{} que indican cosas a mantener en caché; véase a continuación." #. type: deftp -#: guix-git/doc/guix.texi:16397 +#: guix-git/doc/guix.texi:16754 #, no-wrap msgid "{Data Type} nscd-cache" msgstr "{Tipo de datos} nscd-cache" # FUZZY #. type: deftp -#: guix-git/doc/guix.texi:16399 +#: guix-git/doc/guix.texi:16756 msgid "Data type representing a cache database of nscd and its parameters." msgstr "Tipo de datos que representa una base de datos de caché de nscd y sus parámetros." #. type: cindex -#: guix-git/doc/guix.texi:16402 guix-git/doc/guix.texi:21071 +#: guix-git/doc/guix.texi:16759 guix-git/doc/guix.texi:21433 #, no-wrap msgid "database" msgstr "base de datos" @@ -31025,18 +31727,18 @@ msgstr "base de datos" # FUZZY # TODO (MAAV): Caché #. type: table -#: guix-git/doc/guix.texi:16407 +#: guix-git/doc/guix.texi:16764 msgid "This is a symbol representing the name of the database to be cached. Valid values are @code{passwd}, @code{group}, @code{hosts}, and @code{services}, which designate the corresponding NSS database (@pxref{NSS Basics,,, libc, The GNU C Library Reference Manual})." msgstr "Es un símbolo que representa el nombre de la base de datos de la que se actúa como caché. Se aceptan los valores @code{passwd}, @code{group}, @code{hosts} y @code{services}, que designan las bases de datos NSS correspondientes (@pxref{NSS Basics,,, libc, The GNU C Library Reference Manual})." #. type: code{#1} -#: guix-git/doc/guix.texi:16408 +#: guix-git/doc/guix.texi:16765 #, no-wrap msgid "positive-time-to-live" msgstr "positive-time-to-live" #. type: itemx -#: guix-git/doc/guix.texi:16409 +#: guix-git/doc/guix.texi:16766 #, no-wrap msgid "@code{negative-time-to-live} (default: @code{20})" msgstr "@code{negative-time-to-live} (predeterminado: @code{20})" @@ -31044,62 +31746,62 @@ msgstr "@code{negative-time-to-live} (predeterminado: @code{20})" # FUZZY # TODO (MAAV): Caché #. type: table -#: guix-git/doc/guix.texi:16412 +#: guix-git/doc/guix.texi:16769 msgid "A number representing the number of seconds during which a positive or negative lookup result remains in cache." msgstr "Un número que representa el número de segundos durante los que una búsqueda positiva o negativa permanece en la caché." #. type: item -#: guix-git/doc/guix.texi:16413 +#: guix-git/doc/guix.texi:16770 #, no-wrap msgid "@code{check-files?} (default: @code{#t})" msgstr "@code{check-files?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:16416 +#: guix-git/doc/guix.texi:16773 msgid "Whether to check for updates of the files corresponding to @var{database}." msgstr "Si se comprobará en busca de actualizaciones los archivos que correspondan con @var{database}." # FUZZY #. type: table -#: guix-git/doc/guix.texi:16420 +#: guix-git/doc/guix.texi:16777 msgid "For instance, when @var{database} is @code{hosts}, setting this flag instructs nscd to check for updates in @file{/etc/hosts} and to take them into account." msgstr "Por ejemplo, cuando @var{database} es @code{hosts}, la activación de esta opción instruye a nscd para comprobar actualizaciones en @file{/etc/hosts} y tenerlas en cuenta." #. type: item -#: guix-git/doc/guix.texi:16421 +#: guix-git/doc/guix.texi:16778 #, no-wrap msgid "@code{persistent?} (default: @code{#t})" msgstr "@code{persistent?} (predeterminada: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:16423 +#: guix-git/doc/guix.texi:16780 msgid "Whether the cache should be stored persistently on disk." msgstr "Determina si la caché debe almacenarse de manera persistente en disco." #. type: item -#: guix-git/doc/guix.texi:16424 +#: guix-git/doc/guix.texi:16781 #, no-wrap msgid "@code{shared?} (default: @code{#t})" msgstr "@code{shared?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:16426 +#: guix-git/doc/guix.texi:16783 msgid "Whether the cache should be shared among users." msgstr "Determina si la caché debe compartirse entre las usuarias." #. type: item -#: guix-git/doc/guix.texi:16427 +#: guix-git/doc/guix.texi:16784 #, no-wrap msgid "@code{max-database-size} (default: 32@tie{}MiB)" msgstr "@code{max-database-size} (predeterminado: 32@tie{}MiB)" #. type: table -#: guix-git/doc/guix.texi:16429 +#: guix-git/doc/guix.texi:16786 msgid "Maximum size in bytes of the database cache." msgstr "Tamaño máximo en bytes de la caché de la base de datos." #. type: defvr -#: guix-git/doc/guix.texi:16436 +#: guix-git/doc/guix.texi:16793 #, no-wrap msgid "{Scheme Variable} %nscd-default-caches" msgstr "{Variable Scheme} %nscd-default-caches" @@ -31107,23 +31809,23 @@ msgstr "{Variable Scheme} %nscd-default-caches" # FUZZY # TODO (MAAV): Above... #. type: defvr -#: guix-git/doc/guix.texi:16439 +#: guix-git/doc/guix.texi:16796 msgid "List of @code{} objects used by default by @code{nscd-configuration} (see above)." msgstr "Lista de objetos @code{} usados por omisión por @code{nscd-configuration} (véase en la sección previa)" # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:16445 +#: guix-git/doc/guix.texi:16802 msgid "It enables persistent and aggressive caching of service and host name lookups. The latter provides better host name lookup performance, resilience in the face of unreliable name servers, and also better privacy---often the result of host name lookups is in local cache, so external name servers do not even need to be queried." msgstr "Activa el almacenamiento en caché persistente y agresivo de búsquedas de servicios y nombres de máquina. La última proporciona un mejor rendimiento en la búsqueda de nombres de máquina, resilencia en caso de nombres de servidor no confiables y también mejor privacidad---a menudo el resultado de las búsquedas de nombres de máquina está en la caché local, por lo que incluso ni es necesario consultar servidores de nombres externos." #. type: anchor{#1} -#: guix-git/doc/guix.texi:16448 +#: guix-git/doc/guix.texi:16805 msgid "syslog-configuration-type" msgstr "syslog-configuration-type" #. type: cindex -#: guix-git/doc/guix.texi:16448 guix-git/doc/guix.texi:16464 +#: guix-git/doc/guix.texi:16805 guix-git/doc/guix.texi:16821 #, no-wrap msgid "syslog" msgstr "syslog" @@ -31131,198 +31833,198 @@ msgstr "syslog" # FUZZY # MAAV (TODO): Log #. type: cindex -#: guix-git/doc/guix.texi:16449 guix-git/doc/guix.texi:17035 +#: guix-git/doc/guix.texi:16806 guix-git/doc/guix.texi:17397 #, no-wrap msgid "logging" msgstr "logging" #. type: deftp -#: guix-git/doc/guix.texi:16450 +#: guix-git/doc/guix.texi:16807 #, no-wrap msgid "{Data Type} syslog-configuration" msgstr "{Tipo de datos} syslog-configuration" #. type: deftp -#: guix-git/doc/guix.texi:16452 +#: guix-git/doc/guix.texi:16809 msgid "This data type represents the configuration of the syslog daemon." msgstr "Este tipo de datos representa la configuración del daemon syslog." #. type: item -#: guix-git/doc/guix.texi:16454 +#: guix-git/doc/guix.texi:16811 #, no-wrap msgid "@code{syslogd} (default: @code{#~(string-append #$inetutils \"/libexec/syslogd\")})" msgstr "@code{syslogd} (predeterminado: @code{#~(string-append #$inetutils \"/libexec/syslogd\")})" #. type: table -#: guix-git/doc/guix.texi:16456 +#: guix-git/doc/guix.texi:16813 msgid "The syslog daemon to use." msgstr "El daemon syslog usado." #. type: item -#: guix-git/doc/guix.texi:16457 +#: guix-git/doc/guix.texi:16814 #, no-wrap msgid "@code{config-file} (default: @code{%default-syslog.conf})" msgstr "@code{config-file} (predeterminado: @code{%default-syslog.conf})" #. type: table -#: guix-git/doc/guix.texi:16459 +#: guix-git/doc/guix.texi:16816 msgid "The syslog configuration file to use." msgstr "El archivo de configuración de syslog usado." #. type: anchor{#1} -#: guix-git/doc/guix.texi:16464 +#: guix-git/doc/guix.texi:16821 msgid "syslog-service" msgstr "syslog-service" #. type: deffn -#: guix-git/doc/guix.texi:16465 +#: guix-git/doc/guix.texi:16822 #, no-wrap msgid "{Scheme Procedure} syslog-service @var{config}" msgstr "{Procedimiento Scheme} syslog-service @var{config}" #. type: deffn -#: guix-git/doc/guix.texi:16467 +#: guix-git/doc/guix.texi:16824 msgid "Return a service that runs a syslog daemon according to @var{config}." msgstr "Devuelve un servicio que ejecuta el daemon de syslog de acuerdo a @var{config}." #. type: deffn -#: guix-git/doc/guix.texi:16470 +#: guix-git/doc/guix.texi:16827 msgid "@xref{syslogd invocation,,, inetutils, GNU Inetutils}, for more information on the configuration file syntax." msgstr "@xref{syslogd invocation,,, inetutils, GNU Inetutils}, para más información sobre la sintaxis del archivo de configuración." #. type: defvr -#: guix-git/doc/guix.texi:16472 +#: guix-git/doc/guix.texi:16829 #, no-wrap msgid "{Scheme Variable} guix-service-type" msgstr "{Variable Scheme} guix-service-type" #. type: defvr -#: guix-git/doc/guix.texi:16476 +#: guix-git/doc/guix.texi:16833 msgid "This is the type of the service that runs the build daemon, @command{guix-daemon} (@pxref{Invoking guix-daemon}). Its value must be a @code{guix-configuration} record as described below." msgstr "El tipo de servicio que ejecuta el daemon de construcción, @command{guix-daemon} (@pxref{Invoking guix-daemon}). Su valor debe ser un registro @code{guix-configuration} como se describe a continuación." #. type: anchor{#1} -#: guix-git/doc/guix.texi:16479 +#: guix-git/doc/guix.texi:16836 msgid "guix-configuration-type" msgstr "guix-configuration-type" #. type: deftp -#: guix-git/doc/guix.texi:16479 +#: guix-git/doc/guix.texi:16836 #, no-wrap msgid "{Data Type} guix-configuration" msgstr "{Tipo de datos} guix-configuration" #. type: deftp -#: guix-git/doc/guix.texi:16482 +#: guix-git/doc/guix.texi:16839 msgid "This data type represents the configuration of the Guix build daemon. @xref{Invoking guix-daemon}, for more information." msgstr "Este tipo de datos representa la configuración del daemon de construcción de Guix. @xref{Invoking guix-daemon}, para más información." #. type: item -#: guix-git/doc/guix.texi:16484 +#: guix-git/doc/guix.texi:16841 #, no-wrap msgid "@code{guix} (default: @var{guix})" msgstr "@code{guix} (predeterminado: @var{guix})" #. type: table -#: guix-git/doc/guix.texi:16486 guix-git/doc/guix.texi:16763 +#: guix-git/doc/guix.texi:16843 guix-git/doc/guix.texi:17120 msgid "The Guix package to use." msgstr "El paquete Guix usado." #. type: item -#: guix-git/doc/guix.texi:16487 +#: guix-git/doc/guix.texi:16844 #, no-wrap msgid "@code{build-group} (default: @code{\"guixbuild\"})" msgstr "@code{build-group} (predeterminado: @code{\"guixbuild\"})" #. type: table -#: guix-git/doc/guix.texi:16489 +#: guix-git/doc/guix.texi:16846 msgid "Name of the group for build user accounts." msgstr "El nombre del grupo de las cuentas de usuarias de construcción." #. type: item -#: guix-git/doc/guix.texi:16490 +#: guix-git/doc/guix.texi:16847 #, no-wrap msgid "@code{build-accounts} (default: @code{10})" msgstr "@code{build-accounts} (predeterminadas: @code{10})" #. type: table -#: guix-git/doc/guix.texi:16492 +#: guix-git/doc/guix.texi:16849 msgid "Number of build user accounts to create." msgstr "Número de cuentas de usuarias de construcción a crear." #. type: item -#: guix-git/doc/guix.texi:16493 +#: guix-git/doc/guix.texi:16850 #, no-wrap msgid "@code{authorize-key?} (default: @code{#t})" msgstr "@code{authorize-key?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:16500 +#: guix-git/doc/guix.texi:16857 #, fuzzy #| msgid "Whether to authorize the substitute keys listed in @code{authorized-keys}---by default that of @code{@value{SUBSTITUTE-SERVER}} (@pxref{Substitutes})." msgid "Whether to authorize the substitute keys listed in @code{authorized-keys}---by default that of @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} (@pxref{Substitutes})." msgstr "Determina si se autoriza las claves de sustituciones listadas en @code{authorized-keys}---predeterminada la de @code{@value{SUBSTITUTE-SERVER}} (@pxref{Substitutes})." #. type: table -#: guix-git/doc/guix.texi:16506 +#: guix-git/doc/guix.texi:16863 msgid "When @code{authorize-key?} is true, @file{/etc/guix/acl} cannot be changed by invoking @command{guix archive --authorize}. You must instead adjust @code{guix-configuration} as you wish and reconfigure the system. This ensures that your operating system configuration file is self-contained." msgstr "Cuando @code{authorize-key?} es verdadero, @file{/etc/guix/acl} no se puede cambiar a través de @command{guix archive --authorize}. En vez de eso debe ajustar @code{guix-configuration} como desee y reconfigurar el sistema. Esto asegura que la configuración de su sistema operativo es auto-contenida." #. type: quotation -#: guix-git/doc/guix.texi:16513 +#: guix-git/doc/guix.texi:16870 msgid "When booting or reconfiguring to a system where @code{authorize-key?} is true, the existing @file{/etc/guix/acl} file is backed up as @file{/etc/guix/acl.bak} if it was determined to be a manually modified file. This is to facilitate migration from earlier versions, which allowed for in-place modifications to @file{/etc/guix/acl}." msgstr "Cuando arranque o reconfigure a un sistema donde @code{authorize-key?} sea verdadero, se crea una copia de seguridad del archivo @file{/etc/guix/acl} existente como @file{/etc/guix/acl.bak} si se determina que el archivo se ha modificado de manera manual. Esto facilita la migración desde versiones anteriores, en las que se permitían las modificaciones directas del archivo @file{/etc/guix/acl}." #. type: vindex -#: guix-git/doc/guix.texi:16515 +#: guix-git/doc/guix.texi:16872 #, no-wrap msgid "%default-authorized-guix-keys" msgstr "%default-authorized-guix-keys" #. type: item -#: guix-git/doc/guix.texi:16516 +#: guix-git/doc/guix.texi:16873 #, no-wrap msgid "@code{authorized-keys} (default: @code{%default-authorized-guix-keys})" msgstr "@code{authorized-keys} (predeterminadas: @code{%default-authorized-guix-keys})" #. type: table -#: guix-git/doc/guix.texi:16522 +#: guix-git/doc/guix.texi:16879 #, fuzzy #| msgid "The list of authorized key files for archive imports, as a list of string-valued gexps (@pxref{Invoking guix archive}). By default, it contains that of @code{@value{SUBSTITUTE-SERVER}} (@pxref{Substitutes}). See @code{substitute-urls} below for an example on how to change it." msgid "The list of authorized key files for archive imports, as a list of string-valued gexps (@pxref{Invoking guix archive}). By default, it contains that of @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} (@pxref{Substitutes}). See @code{substitute-urls} below for an example on how to change it." msgstr "La lista de archivos de claves autorizadas para importaciones de archivos, como una lista de expresiones-G que evalúan a cadenas (@pxref{Invoking guix archive}). Por defecto, contiene las de @code{@value{SUBSTITUTE-SERVER}} (@pxref{Substitutes}). Véase @code{substitute-urls} a continuación para obtener un ejemplo de cómo cambiar este valor." #. type: item -#: guix-git/doc/guix.texi:16523 +#: guix-git/doc/guix.texi:16880 #, no-wrap msgid "@code{use-substitutes?} (default: @code{#t})" msgstr "@code{use-substitutes?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:16525 +#: guix-git/doc/guix.texi:16882 msgid "Whether to use substitutes." msgstr "Determina si se usarán sustituciones." #. type: item -#: guix-git/doc/guix.texi:16526 guix-git/doc/guix.texi:29171 +#: guix-git/doc/guix.texi:16883 guix-git/doc/guix.texi:29508 #, no-wrap msgid "@code{substitute-urls} (default: @code{%default-substitute-urls})" msgstr "@code{substitute-urls} (predeterminado: @code{%default-substitute-urls})" #. type: table -#: guix-git/doc/guix.texi:16528 guix-git/doc/guix.texi:29173 +#: guix-git/doc/guix.texi:16885 guix-git/doc/guix.texi:29510 msgid "The list of URLs where to look for substitutes by default." msgstr "La lista de URLs donde se buscarán sustituciones por defecto." #. type: table -#: guix-git/doc/guix.texi:16535 +#: guix-git/doc/guix.texi:16892 #, fuzzy #| msgid "Suppose you would like to fetch substitutes from @code{guix.example.org} in addition to @code{@value{SUBSTITUTE-SERVER}}. You will need to do two things: (1) add @code{guix.example.org} to @code{substitute-urls}, and (2) authorize its signing key, having done appropriate checks (@pxref{Substitute Server Authorization}). The configuration below does exactly that:" msgid "Suppose you would like to fetch substitutes from @code{guix.example.org} in addition to @code{@value{SUBSTITUTE-SERVER-1}}. You will need to do two things: (1) add @code{guix.example.org} to @code{substitute-urls}, and (2) authorize its signing key, having done appropriate checks (@pxref{Substitute Server Authorization}). The configuration below does exactly that:" msgstr "Supongamos que desea obtener sustituciones desde @code{guix.example.org} además de @code{@value{SUBSTITUTE-SERVER}}. Para ello debe hacer dos cosas: (1) añadir @code{guix.example.org} a @code{substitute-urls}, y (2) autorizar su clave de firma digital, tras realizar las comprobaciones adecuadas (@pxref{Substitute Server Authorization}). La siguiente configuración hace exáctamente eso:" #. type: lisp -#: guix-git/doc/guix.texi:16544 +#: guix-git/doc/guix.texi:16901 #, no-wrap msgid "" "(guix-configuration\n" @@ -31342,153 +32044,154 @@ msgstr "" " %default-authorized-guix-keys)))\n" #. type: table -#: guix-git/doc/guix.texi:16549 +#: guix-git/doc/guix.texi:16906 msgid "This example assumes that the file @file{./guix.example.org-key.pub} contains the public key that @code{guix.example.org} uses to sign substitutes." msgstr "Este ejemplo asume que el archivo @file{./guix.example.org-clave.pub} contiene la clave pública que @code{guix.example.org} usa para firmar las sustituciones." #. type: item -#: guix-git/doc/guix.texi:16550 +#: guix-git/doc/guix.texi:16907 #, no-wrap msgid "@code{max-silent-time} (default: @code{0})" msgstr "@code{max-silent-time} (predeterminado: @code{0})" #. type: itemx -#: guix-git/doc/guix.texi:16551 +#: guix-git/doc/guix.texi:16908 #, no-wrap msgid "@code{timeout} (default: @code{0})" msgstr "@code{timeout} (predeterminado: @code{0})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:16555 +#: guix-git/doc/guix.texi:16912 msgid "The number of seconds of silence and the number of seconds of activity, respectively, after which a build process times out. A value of zero disables the timeout." msgstr "El número de segundos de silencio y el número de segundos de actividad respectivamente, tras los cuales el proceso de construcción supera el plazo. Un valor de cero proporciona plazos ilimitados." #. type: item -#: guix-git/doc/guix.texi:16556 -#, no-wrap -msgid "@code{log-compression} (default: @code{'bzip2})" +#: guix-git/doc/guix.texi:16913 +#, fuzzy, no-wrap +#| msgid "@code{log-compression} (default: @code{'bzip2})" +msgid "@code{log-compression} (default: @code{'gzip})" msgstr "@code{log-compression} (predeterminado: @code{'bzip2})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:16559 +#: guix-git/doc/guix.texi:16916 msgid "The type of compression used for build logs---one of @code{gzip}, @code{bzip2}, or @code{none}." msgstr "El tipo de compresión usado en los log de construcción---o bien @code{gzip}, o bien @code{bzip2} o @code{none}." #. type: item -#: guix-git/doc/guix.texi:16560 +#: guix-git/doc/guix.texi:16917 #, fuzzy, no-wrap msgid "@code{discover?} (default: @code{#f})" msgstr "@code{device} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16566 +#: guix-git/doc/guix.texi:16923 msgid "List of extra command-line options for @command{guix-daemon}." msgstr "Lista de opciones de línea de órdenes adicionales para @command{guix-daemon}." #. type: item -#: guix-git/doc/guix.texi:16567 +#: guix-git/doc/guix.texi:16924 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/guix-daemon.log\"})" msgstr "@code{log-file} (predeterminado: @code{\"/var/log/guix-daemon.log\"})" #. type: table -#: guix-git/doc/guix.texi:16570 +#: guix-git/doc/guix.texi:16927 msgid "File where @command{guix-daemon}'s standard output and standard error are written." msgstr "Archivo al que se escriben la salida estándar y la salida estándar de error de @command{guix-daemon}." #. type: cindex -#: guix-git/doc/guix.texi:16571 +#: guix-git/doc/guix.texi:16928 #, no-wrap msgid "HTTP proxy, for @code{guix-daemon}" msgstr "HTTP, proxy para @code{guix-daemon}" #. type: cindex -#: guix-git/doc/guix.texi:16572 +#: guix-git/doc/guix.texi:16929 #, no-wrap msgid "proxy, for @code{guix-daemon} HTTP access" msgstr "proxy, para el acceso HTTP de @code{guix-daemon}" #. type: item -#: guix-git/doc/guix.texi:16573 +#: guix-git/doc/guix.texi:16930 #, no-wrap msgid "@code{http-proxy} (default: @code{#f})" msgstr "@code{http-proxy} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16576 +#: guix-git/doc/guix.texi:16933 msgid "The URL of the HTTP and HTTPS proxy used for downloading fixed-output derivations and substitutes." msgstr "La URL de los proxy HTTP y HTTPS que se usa para la descarga de derivaciones de salida fija y sustituciones." #. type: table -#: guix-git/doc/guix.texi:16579 +#: guix-git/doc/guix.texi:16936 msgid "It is also possible to change the daemon's proxy at run time through the @code{set-http-proxy} action, which restarts it:" msgstr "También es posible cambiar la pasarela del daemon en tiempo te ejecución con la acción @code{set-http-proxy}, la cual lo reinicia:" #. type: example -#: guix-git/doc/guix.texi:16582 +#: guix-git/doc/guix.texi:16939 #, no-wrap msgid "herd set-http-proxy guix-daemon http://localhost:8118\n" msgstr "herd set-http-proxy guix-daemon http://localhost:8118\n" # FUZZY #. type: table -#: guix-git/doc/guix.texi:16585 +#: guix-git/doc/guix.texi:16942 msgid "To clear the proxy settings, run:" msgstr "Para desactivar el uso actual de una pasarela ejecute:" #. type: example -#: guix-git/doc/guix.texi:16588 +#: guix-git/doc/guix.texi:16945 #, no-wrap msgid "herd set-http-proxy guix-daemon\n" msgstr "herd set-http-proxy guix-daemon\n" #. type: item -#: guix-git/doc/guix.texi:16590 +#: guix-git/doc/guix.texi:16947 #, no-wrap msgid "@code{tmpdir} (default: @code{#f})" msgstr "@code{tmpdir} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16592 +#: guix-git/doc/guix.texi:16949 msgid "A directory path where the @command{guix-daemon} will perform builds." msgstr "Una ruta de directorio donde @command{guix-daemon} realiza las construcciones." #. type: deffn -#: guix-git/doc/guix.texi:16596 +#: guix-git/doc/guix.texi:16953 #, no-wrap msgid "{Scheme Procedure} udev-service [#:udev @var{eudev} #:rules @code{'()}]" msgstr "{Procedimiento Scheme} udev-service [#:udev @var{eudev} #:rules @code{'()}]" #. type: deffn -#: guix-git/doc/guix.texi:16602 +#: guix-git/doc/guix.texi:16959 msgid "Run @var{udev}, which populates the @file{/dev} directory dynamically. udev rules can be provided as a list of files through the @var{rules} variable. The procedures @code{udev-rule}, @code{udev-rules-service} and @code{file->udev-rule} from @code{(gnu services base)} simplify the creation of such rule files." msgstr "Ejecuta @var{udev}, que gestiona el contenido del directorio @file{/dev} de forma dinámica. Se pueden proporcionar reglas de udev como una lista de archivos a través de la variable @var{rules}. Los procedimientos @code{udev-rule}, @code{udev-rules-service} y @code{file->udev-rule} de @code{(gnu services base)} simplifican la creación de dichos archivos de reglas." #. type: deffn -#: guix-git/doc/guix.texi:16605 +#: guix-git/doc/guix.texi:16962 msgid "The @command{herd rules udev} command, as root, returns the name of the directory containing all the active udev rules." msgstr "La orden @command{herd rules udev}, como root, devuelve el nombre del directorio que contiene todas las reglas udev activas." #. type: deffn -#: guix-git/doc/guix.texi:16607 +#: guix-git/doc/guix.texi:16964 #, no-wrap msgid "{Scheme Procedure} udev-rule [@var{file-name} @var{contents}]" msgstr "{Procedimiento Scheme} udev-rule [@var{nombre-archivo} @var{contenido}]" #. type: deffn -#: guix-git/doc/guix.texi:16610 +#: guix-git/doc/guix.texi:16967 msgid "Return a udev-rule file named @var{file-name} containing the rules defined by the @var{contents} literal." msgstr "Devuelve un archivo de reglas de udev con nombre @var{nombre-archivo} que contiene las reglas definidas en el literal @var{contenido}." #. type: deffn -#: guix-git/doc/guix.texi:16614 +#: guix-git/doc/guix.texi:16971 msgid "In the following example, a rule for a USB device is defined to be stored in the file @file{90-usb-thing.rules}. The rule runs a script upon detecting a USB device with a given product identifier." msgstr "En el ejemplo siguiente se define una regla para un dispositivo USB que será almacenada en el archivo @file{90-usb-cosa.rules}. Esta regla ejecuta un script cuando se detecta un dispositivo USB con un identificador de producto dado." #. type: lisp -#: guix-git/doc/guix.texi:16622 +#: guix-git/doc/guix.texi:16979 #, no-wrap msgid "" "(define %example-udev-rule\n" @@ -31506,26 +32209,26 @@ msgstr "" " \"RUN+=\\\"/ruta/al/ejecutable\\\"\")))\n" #. type: deffn -#: guix-git/doc/guix.texi:16625 +#: guix-git/doc/guix.texi:16982 #, no-wrap msgid "{Scheme Procedure} udev-rules-service [@var{name} @var{rules}] @" msgstr "{Procedimiento Scheme} udev-rules-service [@var{nombre} @var{reglas}] @" # FUZZY #. type: deffn -#: guix-git/doc/guix.texi:16632 +#: guix-git/doc/guix.texi:16989 msgid "[#:groups @var{groups}] Return a service that extends @code{udev-service-type } with @var{rules} and @code{account-service-type} with @var{groups} as system groups. This works by creating a singleton service type @code{@var{name}-udev-rules}, of which the returned service is an instance." msgstr "" "[#:groups @var{grupos}]\n" "Devuelve un servicio que extiende @code{udev-service-type} con @var{reglas} y @code{account-service-type} con @var{grupos} como grupos del sistema. Esto funciona creando una instancia única del tipo de servicio @code{@var{nombre}-udev-rules}, del cual el servicio devuelto es una instancia." #. type: deffn -#: guix-git/doc/guix.texi:16635 +#: guix-git/doc/guix.texi:16992 msgid "Here we show how it can be used to extend @code{udev-service-type} with the previously defined rule @code{%example-udev-rule}." msgstr "A continuación se muestra cómo se puede usar para extender @code{udev-service-type} con la regla @code{%regla-ejemplo-udev} definida previamente." #. type: lisp -#: guix-git/doc/guix.texi:16642 +#: guix-git/doc/guix.texi:16999 #, no-wrap msgid "" "(operating-system\n" @@ -31541,23 +32244,23 @@ msgstr "" " %desktop-services)))\n" #. type: deffn -#: guix-git/doc/guix.texi:16645 +#: guix-git/doc/guix.texi:17002 #, no-wrap msgid "{Scheme Procedure} file->udev-rule [@var{file-name} @var{file}]" msgstr "{Procedimiento Scheme} file->udev-rule [@var{nombre-archivo} @var{archivo}]" #. type: deffn -#: guix-git/doc/guix.texi:16648 +#: guix-git/doc/guix.texi:17005 msgid "Return a udev file named @var{file-name} containing the rules defined within @var{file}, a file-like object." msgstr "Devuelve un archivo de udev con nombre @var{nombre-archivo} que contiene las reglas definidas en @var{archivo}, un objeto tipo-archivo." #. type: deffn -#: guix-git/doc/guix.texi:16650 +#: guix-git/doc/guix.texi:17007 msgid "The following example showcases how we can use an existing rule file." msgstr "El ejemplo siguiente muestra cómo podemos usar un archivo de reglas existente." #. type: lisp -#: guix-git/doc/guix.texi:16655 +#: guix-git/doc/guix.texi:17012 #, no-wrap msgid "" "(use-modules (guix download) ;for url-fetch\n" @@ -31571,7 +32274,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:16666 +#: guix-git/doc/guix.texi:17023 #, no-wrap msgid "" "(define %android-udev-rules\n" @@ -31597,17 +32300,17 @@ msgstr "" " (base32 \"0lmmagpyb6xsq6zcr2w1cyx9qmjqmajkvrdbhjx32gqf1d9is003\"))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:16675 +#: guix-git/doc/guix.texi:17032 msgid "Additionally, Guix package definitions can be included in @var{rules} in order to extend the udev rules with the definitions found under their @file{lib/udev/rules.d} sub-directory. In lieu of the previous @var{file->udev-rule} example, we could have used the @var{android-udev-rules} package which exists in Guix in the @code{(gnu packages android)} module." msgstr "Adicionalmente, las definiciones de paquete Gui pueden ser incluidas en @var{rules} para extender las reglas udev con las definiciones encontradas bajo su subdirectorio @file{lib/udev/rules.d}. En vez del ejemplo previo de @var{file->udev-rule}, podíamos haber usado el paquete @var{android-udev-rules} que existe en Guix en el módulo @code{(gnu packages android)}." #. type: Plain text -#: guix-git/doc/guix.texi:16684 +#: guix-git/doc/guix.texi:17041 msgid "The following example shows how to use the @var{android-udev-rules} package so that the Android tool @command{adb} can detect devices without root privileges. It also details how to create the @code{adbusers} group, which is required for the proper functioning of the rules defined within the @code{android-udev-rules} package. To create such a group, we must define it both as part of the @code{supplementary-groups} of our @code{user-account} declaration, as well as in the @var{groups} of the @code{udev-rules-service} procedure." msgstr "El siguiente ejemplo muestra cómo usar el paquete @var{android-udev-rules} para que la herramienta de Android @command{adb} pueda detectar dispositivos sin privilegios de ``root''. También detalla como crear el grupo @code{adbusers}, el cual se requiere para el funcionamiento correcto de las reglas definidas dentro del paquete @code{android-udev-rules}. Para crear tal grupo, debemos definirlo tanto como parte de @var{supplementary-groups} de la declaración de nuestra cuenta de usuaria en @var{user-account}, así como en el parámetro @var{groups} del procedimiento @code{udev-rules-service}." #. type: lisp -#: guix-git/doc/guix.texi:16689 +#: guix-git/doc/guix.texi:17046 #, no-wrap msgid "" "(use-modules (gnu packages android) ;for android-udev-rules\n" @@ -31621,7 +32324,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:16702 +#: guix-git/doc/guix.texi:17059 #, no-wrap msgid "" "(operating-system\n" @@ -31651,214 +32354,214 @@ msgstr "" " %desktop-services)))\n" #. type: defvr -#: guix-git/doc/guix.texi:16704 +#: guix-git/doc/guix.texi:17061 #, no-wrap msgid "{Scheme Variable} urandom-seed-service-type" msgstr "{Variable Scheme} urandom-seed-service-type" # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:16709 +#: guix-git/doc/guix.texi:17066 msgid "Save some entropy in @code{%random-seed-file} to seed @file{/dev/urandom} when rebooting. It also tries to seed @file{/dev/urandom} from @file{/dev/hwrng} while booting, if @file{/dev/hwrng} exists and is readable." msgstr "Almacena alguna entropía en @code{%random-seed-file} para alimentar @file{/dev/urandom} cuando se reinicia. También intenta alimentar @file{/dev/urandom} con @file{/dev/hwrng} durante el arranque, si @file{/dev/hwrng} existe y se tienen permisos de lectura." #. type: defvr -#: guix-git/doc/guix.texi:16711 +#: guix-git/doc/guix.texi:17068 #, no-wrap msgid "{Scheme Variable} %random-seed-file" msgstr "{Variable Scheme} %random-seed-file" #. type: defvr -#: guix-git/doc/guix.texi:16715 +#: guix-git/doc/guix.texi:17072 msgid "This is the name of the file where some random bytes are saved by @var{urandom-seed-service} to seed @file{/dev/urandom} when rebooting. It defaults to @file{/var/lib/random-seed}." msgstr "Es el nombre del archivo donde algunos bytes aleatorios son almacenados por el servicio @var{urandom-seed-service} para alimentar @file{/dev/urandom} durante el reinicio. Su valor predeterminado es @file{/var/lib/random-seed}." #. type: cindex -#: guix-git/doc/guix.texi:16717 +#: guix-git/doc/guix.texi:17074 #, no-wrap msgid "mouse" msgstr "ratón" #. type: cindex -#: guix-git/doc/guix.texi:16718 +#: guix-git/doc/guix.texi:17075 #, no-wrap msgid "gpm" msgstr "gpm" #. type: defvr -#: guix-git/doc/guix.texi:16719 +#: guix-git/doc/guix.texi:17076 #, no-wrap msgid "{Scheme Variable} gpm-service-type" msgstr "{Variable Scheme} gpm-service-type" # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:16724 +#: guix-git/doc/guix.texi:17081 msgid "This is the type of the service that runs GPM, the @dfn{general-purpose mouse daemon}, which provides mouse support to the Linux console. GPM allows users to use the mouse in the console, notably to select, copy, and paste text." msgstr "Este es el tipo de servicio que ejecuta GPM, el @dfn{daemon de ratón de propósito general}, que permite el uso del ratón en la consola Linux. GPM permite a las usuarias el uso del ratón en la consola, notablemente la selección, copia y pegado de texto." #. type: defvr -#: guix-git/doc/guix.texi:16727 +#: guix-git/doc/guix.texi:17084 msgid "The value for services of this type must be a @code{gpm-configuration} (see below). This service is not part of @code{%base-services}." msgstr "El valor para servicios de este tipo debe ser un objeto @code{gpm-configuration} (véase a continuación). Este servicio no es parte de @code{%base-services}." #. type: deftp -#: guix-git/doc/guix.texi:16729 +#: guix-git/doc/guix.texi:17086 #, no-wrap msgid "{Data Type} gpm-configuration" msgstr "{Tipo de datos} gpm-configuration" #. type: deftp -#: guix-git/doc/guix.texi:16731 +#: guix-git/doc/guix.texi:17088 msgid "Data type representing the configuration of GPM." msgstr "Tipo de datos que representa la configuración de GPM." #. type: item -#: guix-git/doc/guix.texi:16733 +#: guix-git/doc/guix.texi:17090 #, no-wrap msgid "@code{options} (default: @code{%default-gpm-options})" msgstr "@code{opciones} (predeterminadas: @code{%default-gpm-options})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:16738 +#: guix-git/doc/guix.texi:17095 msgid "Command-line options passed to @command{gpm}. The default set of options instruct @command{gpm} to listen to mouse events on @file{/dev/input/mice}. @xref{Command Line,,, gpm, gpm manual}, for more information." msgstr "Opciones de línea de órdenes proporcionadas a @command{gpm}. El conjunto predeterminado de opciones instruye a @command{gpm} para esperar eventos de ratón en @file{/dev/input/mice}. @xref{Command Line,,, gpm, gpm manual}, para más información." #. type: item -#: guix-git/doc/guix.texi:16739 +#: guix-git/doc/guix.texi:17096 #, no-wrap msgid "@code{gpm} (default: @code{gpm})" msgstr "@code{gpm} (predeterminado: @code{gpm})" #. type: table -#: guix-git/doc/guix.texi:16741 +#: guix-git/doc/guix.texi:17098 msgid "The GPM package to use." msgstr "El paquete GPM usado." #. type: anchor{#1} -#: guix-git/doc/guix.texi:16746 +#: guix-git/doc/guix.texi:17103 msgid "guix-publish-service-type" msgstr "guix-publish-service-type" #. type: deffn -#: guix-git/doc/guix.texi:16746 +#: guix-git/doc/guix.texi:17103 #, no-wrap msgid "{Scheme Variable} guix-publish-service-type" msgstr "{Variable Scheme} guix-publish-service-type" #. type: deffn -#: guix-git/doc/guix.texi:16750 +#: guix-git/doc/guix.texi:17107 msgid "This is the service type for @command{guix publish} (@pxref{Invoking guix publish}). Its value must be a @code{guix-publish-configuration} object, as described below." msgstr "Este es el tipo de servicio para @command{guix publish} (@pxref{Invoking guix publish}). Su valor debe ser un objeto @code{guix-publish-configuration}, como se describe a continuación." # FUZZY #. type: deffn -#: guix-git/doc/guix.texi:16754 +#: guix-git/doc/guix.texi:17111 msgid "This assumes that @file{/etc/guix} already contains a signing key pair as created by @command{guix archive --generate-key} (@pxref{Invoking guix archive}). If that is not the case, the service will fail to start." msgstr "Se asume que @file{/etc/guix} ya contiene el par de claves de firma como @command{guix archive --generate-key} lo crea (@pxref{Invoking guix archive}). Si no es el caso, el servicio fallará al arrancar." #. type: deftp -#: guix-git/doc/guix.texi:16756 +#: guix-git/doc/guix.texi:17113 #, no-wrap msgid "{Data Type} guix-publish-configuration" msgstr "{Tipo de datos} guix-publish-configuration" #. type: deftp -#: guix-git/doc/guix.texi:16759 +#: guix-git/doc/guix.texi:17116 msgid "Data type representing the configuration of the @code{guix publish} service." msgstr "Tipo de datos que representa la configuración del servicio @code{guix publish}." #. type: item -#: guix-git/doc/guix.texi:16761 +#: guix-git/doc/guix.texi:17118 #, no-wrap msgid "@code{guix} (default: @code{guix})" msgstr "@code{guix} (predeterminado: @code{guix})" #. type: item -#: guix-git/doc/guix.texi:16764 guix-git/doc/guix.texi:31477 +#: guix-git/doc/guix.texi:17121 guix-git/doc/guix.texi:31842 #, no-wrap msgid "@code{port} (default: @code{80})" msgstr "@code{port} (predeterminado: @code{80})" #. type: table -#: guix-git/doc/guix.texi:16766 +#: guix-git/doc/guix.texi:17123 msgid "The TCP port to listen for connections." msgstr "El puerto TCP en el que se esperan conexiones." #. type: item -#: guix-git/doc/guix.texi:16767 guix-git/doc/guix.texi:29054 -#: guix-git/doc/guix.texi:32858 +#: guix-git/doc/guix.texi:17124 guix-git/doc/guix.texi:29391 +#: guix-git/doc/guix.texi:33223 #, no-wrap msgid "@code{host} (default: @code{\"localhost\"})" msgstr "@code{host} (predeterminado: @code{\"localhost\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:16770 +#: guix-git/doc/guix.texi:17127 msgid "The host (and thus, network interface) to listen to. Use @code{\"0.0.0.0\"} to listen on all the network interfaces." msgstr "La dirección de red (y, por tanto, la interfaz de red) en la que se esperarán conexiones. Use @code{\"0.0.0.0\"} para aceptar conexiones por todas las interfaces de red." #. type: item -#: guix-git/doc/guix.texi:16771 +#: guix-git/doc/guix.texi:17128 #, fuzzy, no-wrap msgid "@code{advertise?} (default: @code{#f})" msgstr "@code{device} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16774 +#: guix-git/doc/guix.texi:17131 #, fuzzy msgid "When true, advertise the service on the local network @i{via} the DNS-SD protocol, using Avahi." msgstr "Si el servidor debe anunciarse a sí mismo en la red local a través del protocolo ``bonjour''." #. type: table -#: guix-git/doc/guix.texi:16778 +#: guix-git/doc/guix.texi:17135 msgid "This allows neighboring Guix devices with discovery on (see @code{guix-configuration} above) to discover this @command{guix publish} instance and to automatically download substitutes from it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16779 +#: guix-git/doc/guix.texi:17136 #, fuzzy, no-wrap msgid "@code{compression} (default: @code{'((\"gzip\" 3) (\"zstd\" 3))})" msgstr "@code{compression} (predeterminada: @code{'((\"gzip\" 3))})" #. type: table -#: guix-git/doc/guix.texi:16783 +#: guix-git/doc/guix.texi:17140 msgid "This is a list of compression method/level tuple used when compressing substitutes. For example, to compress all substitutes with @emph{both} lzip at level 7 and gzip at level 9, write:" msgstr "Es una lista de tuplas método de compresión/nivel usadas para la compresión de sustituciones. Por ejemplo, para comprimir todas las sustituciones @emph{tanto con} lzip a nivel 8 @emph{como con} gzip a nivel 9, escriba:" #. type: lisp -#: guix-git/doc/guix.texi:16786 +#: guix-git/doc/guix.texi:17143 #, no-wrap msgid "'((\"lzip\" 7) (\"gzip\" 9))\n" msgstr "'((\"lzip\" 7) (\"gzip\" 9))\n" # FUZZY #. type: table -#: guix-git/doc/guix.texi:16792 +#: guix-git/doc/guix.texi:17149 #, fuzzy msgid "Level 9 achieves the best compression ratio at the expense of increased CPU usage, whereas level 1 achieves fast compression. @xref{Invoking guix publish}, for more information on the available compression methods and the tradeoffs involved." msgstr "El nivel 9 obtiene la mejor relación de compresión con un incremento en el uso del procesador, mientras que el nivel 1 realiza la compresión rápido." #. type: table -#: guix-git/doc/guix.texi:16794 +#: guix-git/doc/guix.texi:17151 msgid "An empty list disables compression altogether." msgstr "Una lista vacía desactiva completamente la compresión." #. type: item -#: guix-git/doc/guix.texi:16795 +#: guix-git/doc/guix.texi:17152 #, no-wrap msgid "@code{nar-path} (default: @code{\"nar\"})" msgstr "@code{nar-path} (predeterminado: @code{\"nar\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:16798 +#: guix-git/doc/guix.texi:17155 msgid "The URL path at which ``nars'' can be fetched. @xref{Invoking guix publish, @option{--nar-path}}, for details." msgstr "La ruta URL de la que se pueden obtener ``nars''. @xref{Invoking guix publish, @option{--nar-path}}, para más detalles." #. type: item -#: guix-git/doc/guix.texi:16799 +#: guix-git/doc/guix.texi:17156 #, no-wrap msgid "@code{cache} (default: @code{#f})" msgstr "@code{cache} (predeterminado: @code{#f})" @@ -31866,129 +32569,143 @@ msgstr "@code{cache} (predeterminado: @code{#f})" # FUZZY # TODO (MAAV): Tradeoff #. type: table -#: guix-git/doc/guix.texi:16805 +#: guix-git/doc/guix.texi:17162 msgid "When it is @code{#f}, disable caching and instead generate archives on demand. Otherwise, this should be the name of a directory---e.g., @code{\"/var/cache/guix/publish\"}---where @command{guix publish} caches archives and meta-data ready to be sent. @xref{Invoking guix publish, @option{--cache}}, for more information on the tradeoffs involved." msgstr "Cuando es @code{#f}, desactiva la caché y genera los archivos bajo demanda. De otro modo, debería ser el nombre de un directorio---por ejemplo, @code{\"/var/cache/guix/publish\"}---donde @command{guix pubish} almacena los archivos y metadatos en caché listos para ser enviados. @xref{Invoking guix publish, @option{--cache}}, para más información sobre sus ventajas e inconvenientes." #. type: item -#: guix-git/doc/guix.texi:16806 +#: guix-git/doc/guix.texi:17163 #, no-wrap msgid "@code{workers} (default: @code{#f})" msgstr "@code{workers} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16810 +#: guix-git/doc/guix.texi:17167 msgid "When it is an integer, this is the number of worker threads used for caching; when @code{#f}, the number of processors is used. @xref{Invoking guix publish, @option{--workers}}, for more information." msgstr "Cuando es un entero, es el número de hilos de trabajo usados para la caché; cuando es @code{#f}, se usa el número de procesadores. @xref{Invoking guix publish, @option{--workers}}, para más información." #. type: item -#: guix-git/doc/guix.texi:16811 +#: guix-git/doc/guix.texi:17168 #, no-wrap msgid "@code{cache-bypass-threshold} (default: 10 MiB)" msgstr "@code{cache-bypass-threshold} (predeterminado: 10 MiB)" # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:16816 +#: guix-git/doc/guix.texi:17173 msgid "When @code{cache} is true, this is the maximum size in bytes of a store item for which @command{guix publish} may bypass its cache in case of a cache miss. @xref{Invoking guix publish, @option{--cache-bypass-threshold}}, for more information." msgstr "Cuando @code{cache} es verdadero, su valor indica el tamaño máximo en bytes de un elemento del almacén hasta el cual @command{guix publish} puede ignorar un fallo de caché y realizar la petición directamente. @xref{Invoking guix publish, @option{--cache-bypass-threshold}} para obtener más información." #. type: item -#: guix-git/doc/guix.texi:16817 +#: guix-git/doc/guix.texi:17174 #, no-wrap msgid "@code{ttl} (default: @code{#f})" msgstr "@code{ttl} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16821 +#: guix-git/doc/guix.texi:17178 msgid "When it is an integer, this denotes the @dfn{time-to-live} in seconds of the published archives. @xref{Invoking guix publish, @option{--ttl}}, for more information." msgstr "Cuando es un entero, denota el @dfn{tiempo de vida} en segundos de los archivos publicados. @xref{Invoking guix publish, @option{--ttl}}, para más información." +#. type: item +#: guix-git/doc/guix.texi:17179 +#, fuzzy, no-wrap +#| msgid "@code{relative-root} (default: @code{#f})" +msgid "@code{negative-ttl} (default: @code{#f})" +msgstr "@code{relative-root} (predeterminado: @code{#f})" + +#. type: table +#: guix-git/doc/guix.texi:17183 +#, fuzzy +#| msgid "When it is an integer, this denotes the @dfn{time-to-live} in seconds of the published archives. @xref{Invoking guix publish, @option{--ttl}}, for more information." +msgid "When it is an integer, this denotes the @dfn{time-to-live} in seconds for the negative lookups. @xref{Invoking guix publish, @option{--negative-ttl}}, for more information." +msgstr "Cuando es un entero, denota el @dfn{tiempo de vida} en segundos de los archivos publicados. @xref{Invoking guix publish, @option{--ttl}}, para más información." + #. type: anchor{#1} -#: guix-git/doc/guix.texi:16825 +#: guix-git/doc/guix.texi:17187 msgid "rngd-service" msgstr "rngd-service" #. type: deffn -#: guix-git/doc/guix.texi:16825 +#: guix-git/doc/guix.texi:17187 #, no-wrap msgid "{Scheme Procedure} rngd-service [#:rng-tools @var{rng-tools}] @" msgstr "{Procedimiento Scheme} rngd-service [#:rng-tools @var{rng-tools}] @" # FUZZY #. type: deffn -#: guix-git/doc/guix.texi:16830 +#: guix-git/doc/guix.texi:17192 msgid "[#:device \"/dev/hwrng\"] Return a service that runs the @command{rngd} program from @var{rng-tools} to add @var{device} to the kernel's entropy pool. The service will fail if @var{device} does not exist." msgstr "" "[#:device \"/dev/hwrng\"]\n" "Devuelve un servicio que ejecuta el programa @command{rngd} de @var{rng-tools} para añadir @var{device} a la fuente de entropía del núcleo. El servicio emitirá un fallo si @var{device} no existe." #. type: anchor{#1} -#: guix-git/doc/guix.texi:16833 +#: guix-git/doc/guix.texi:17195 msgid "pam-limits-service" msgstr "pam-limits-service" #. type: cindex -#: guix-git/doc/guix.texi:16833 +#: guix-git/doc/guix.texi:17195 #, no-wrap msgid "session limits" msgstr "límites por sesión" #. type: cindex -#: guix-git/doc/guix.texi:16834 +#: guix-git/doc/guix.texi:17196 #, no-wrap msgid "ulimit" msgstr "ulimit" #. type: cindex -#: guix-git/doc/guix.texi:16835 +#: guix-git/doc/guix.texi:17197 #, no-wrap msgid "priority" msgstr "prioridad" #. type: cindex -#: guix-git/doc/guix.texi:16836 +#: guix-git/doc/guix.texi:17198 #, no-wrap msgid "realtime" msgstr "tiempo real" #. type: cindex -#: guix-git/doc/guix.texi:16837 +#: guix-git/doc/guix.texi:17199 #, no-wrap msgid "jackd" msgstr "jackd" #. type: cindex -#: guix-git/doc/guix.texi:16838 +#: guix-git/doc/guix.texi:17200 #, fuzzy, no-wrap msgid "nofile" msgstr "file" #. type: cindex -#: guix-git/doc/guix.texi:16839 +#: guix-git/doc/guix.texi:17201 #, fuzzy, no-wrap msgid "open file descriptors" msgstr "Sinopsis y descripciones" #. type: deffn -#: guix-git/doc/guix.texi:16840 +#: guix-git/doc/guix.texi:17202 #, no-wrap msgid "{Scheme Procedure} pam-limits-service [#:limits @code{'()}]" msgstr "{Procedimiento Scheme} pam-limits-service [#:limits @code{'()}]" #. type: deffn -#: guix-git/doc/guix.texi:16847 +#: guix-git/doc/guix.texi:17209 #, fuzzy msgid "Return a service that installs a configuration file for the @uref{http://linux-pam.org/Linux-PAM-html/sag-pam_limits.html, @code{pam_limits} module}. The procedure optionally takes a list of @code{pam-limits-entry} values, which can be used to specify @code{ulimit} limits and @code{nice} priority limits to user sessions." msgstr "Devuelve un servicio que instala un archivo de configuración para el @uref{http://linux-pam.org/Linux-PAM-html/sag-pam_limits.html, módulo @code{pam_limits}}. El procedimiento toma de manera opcional una lista de valores @code{pam-limits-entry}, que se pueden usar para especificar límites @code{ulimit} y limites de prioridad ``nice'' para sesiones de usuaria." #. type: deffn -#: guix-git/doc/guix.texi:16850 +#: guix-git/doc/guix.texi:17212 msgid "The following limits definition sets two hard and soft limits for all login sessions of users in the @code{realtime} group:" msgstr "Las siguientes definiciones de límites establecen dos límites ``hard'' y ``soft'' para todas las sesiones de ingreso al sistema de usuarias pertenecientes al grupo @code{realtime}:" #. type: lisp -#: guix-git/doc/guix.texi:16856 +#: guix-git/doc/guix.texi:17218 #, no-wrap msgid "" "(pam-limits-service\n" @@ -32003,17 +32720,17 @@ msgstr "" # FUZZY #. type: deffn -#: guix-git/doc/guix.texi:16862 +#: guix-git/doc/guix.texi:17224 msgid "The first entry increases the maximum realtime priority for non-privileged processes; the second entry lifts any restriction of the maximum address space that can be locked in memory. These settings are commonly used for real-time audio systems." msgstr "La primera entrada incrementa la prioridad máxima de tiempo real para procesos sin privilegios; la segunda entrada elimina cualquier restricción sobre el espacio de direcciones que puede bloquearse en memoria. Estas configuraciones se usan habitualmente para sistemas de sonido en tiempo real." #. type: deffn -#: guix-git/doc/guix.texi:16865 +#: guix-git/doc/guix.texi:17227 msgid "Another useful example is raising the maximum number of open file descriptors that can be used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16870 +#: guix-git/doc/guix.texi:17232 #, fuzzy, no-wrap msgid "" "(pam-limits-service\n" @@ -32026,40 +32743,40 @@ msgstr "" " (pam-limits-entry \"@@realtime\" 'both 'memlock 'unlimited)))\n" #. type: deffn -#: guix-git/doc/guix.texi:16878 +#: guix-git/doc/guix.texi:17240 msgid "In the above example, the asterisk means the limit should apply to any user. It is important to ensure the chosen value doesn't exceed the maximum system value visible in the @file{/proc/sys/fs/file-max} file, else the users would be prevented from login in. For more information about the Pluggable Authentication Module (PAM) limits, refer to the @samp{pam_limits} man page from the @code{linux-pam} package." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16883 guix-git/doc/guix.texi:37407 +#: guix-git/doc/guix.texi:17245 guix-git/doc/guix.texi:37897 #, no-wrap msgid "cron" msgstr "cron" #. type: cindex -#: guix-git/doc/guix.texi:16884 guix-git/doc/guix.texi:37408 +#: guix-git/doc/guix.texi:17246 guix-git/doc/guix.texi:37898 #, no-wrap msgid "mcron" msgstr "mcron" #. type: cindex -#: guix-git/doc/guix.texi:16885 guix-git/doc/guix.texi:37409 +#: guix-git/doc/guix.texi:17247 guix-git/doc/guix.texi:37899 #, no-wrap msgid "scheduling jobs" msgstr "planificación de trabajos" #. type: Plain text -#: guix-git/doc/guix.texi:16892 +#: guix-git/doc/guix.texi:17254 msgid "The @code{(gnu services mcron)} module provides an interface to GNU@tie{}mcron, a daemon to run jobs at scheduled times (@pxref{Top,,, mcron, GNU@tie{}mcron}). GNU@tie{}mcron is similar to the traditional Unix @command{cron} daemon; the main difference is that it is implemented in Guile Scheme, which provides a lot of flexibility when specifying the scheduling of jobs and their actions." msgstr "El módulo @code{(gnu services mcron)} proporciona una interfaz a GNU@tie{}mcron, un daemon para ejecutar trabajos planificados de antemano (@pxref{Top,,, mcron, GNU@tie{}mcron}). GNU@tie{}mcron es similar al daemon tradicional de Unix @command{cron}; la principal diferencia es que está implementado en Scheme Guile, que proporciona mucha flexibilidad cuando se especifica la planificación de trabajos y sus acciones." #. type: Plain text -#: guix-git/doc/guix.texi:16900 +#: guix-git/doc/guix.texi:17262 msgid "The example below defines an operating system that runs the @command{updatedb} (@pxref{Invoking updatedb,,, find, Finding Files}) and the @command{guix gc} commands (@pxref{Invoking guix gc}) daily, as well as the @command{mkid} command on behalf of an unprivileged user (@pxref{mkid invocation,,, idutils, ID Database Utilities}). It uses gexps to introduce job definitions that are passed to mcron (@pxref{G-Expressions})." msgstr "El siguiente ejemplo define un sistema operativo que ejecuta las órdenes @command{updatedb} (@pxref{Invoking updatedb,,, find, Finding Files}) y @command{guix gc} (@pxref{Invoking guix gc}) de manera diaria, así como la orden @command{mkid} como una usuaria sin privilegios (@pxref{mkid invocation,,, idutils, ID Database Utilitites}). Usa expresiones-g para introducir definiciones de trabajos que serán proporcionados a mcron (@pxref{G-Expressions})." #. type: lisp -#: guix-git/doc/guix.texi:16904 +#: guix-git/doc/guix.texi:17266 #, no-wrap msgid "" "(use-modules (guix) (gnu) (gnu services mcron))\n" @@ -32071,7 +32788,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:16914 +#: guix-git/doc/guix.texi:17276 #, fuzzy, no-wrap #| msgid "" #| "(define updatedb-job\n" @@ -32106,7 +32823,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:16920 +#: guix-git/doc/guix.texi:17282 #, no-wrap msgid "" "(define garbage-collector-job\n" @@ -32125,7 +32842,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:16927 +#: guix-git/doc/guix.texi:17289 #, no-wrap msgid "" "(define idutils-job\n" @@ -32145,7 +32862,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:16930 +#: guix-git/doc/guix.texi:17292 #, fuzzy, no-wrap msgid "" "(operating-system\n" @@ -32157,7 +32874,7 @@ msgstr "" " (services %mis-servicios))\n" #. type: lisp -#: guix-git/doc/guix.texi:16940 +#: guix-git/doc/guix.texi:17302 #, fuzzy, no-wrap msgid "" " ;; %BASE-SERVICES already includes an instance of\n" @@ -32180,25 +32897,25 @@ msgstr "" " %base-services)))\n" #. type: quotation -#: guix-git/doc/guix.texi:16942 +#: guix-git/doc/guix.texi:17304 #, fuzzy, no-wrap #| msgid "Top" msgid "Tip" msgstr "Top" #. type: quotation -#: guix-git/doc/guix.texi:16948 +#: guix-git/doc/guix.texi:17310 msgid "When providing the action of a job specification as a procedure, you should provide an explicit name for the job via the optional 3rd argument as done in the @code{updatedb-job} example above. Otherwise, the job would appear as ``Lambda function'' in the output of @command{herd schedule mcron}, which is not nearly descriptive enough!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16955 +#: guix-git/doc/guix.texi:17317 msgid "For more complex jobs defined in Scheme where you need control over the top level, for instance to introduce a @code{use-modules} form, you can move your code to a separate program using the @code{program-file} procedure of the @code{(guix gexp)} module (@pxref{G-Expressions}). The example below illustrates that." msgstr "Para trabajos más complejos definidos en Scheme donde necesita control en el ámbito global, por ejemplo para introducir una forma @code{use-modules}, puede mover su código a un programa separado usando el procedimiento @code{program-file} del módulo @code{(guix gexp)} (@pxref{G-Expressions}). El siguiente ejemplo ilustra este caso." # CHECK #. type: lisp -#: guix-git/doc/guix.texi:16971 +#: guix-git/doc/guix.texi:17333 #, no-wrap msgid "" "(define %battery-alert-job\n" @@ -32233,7 +32950,7 @@ msgstr "" " (srfi srfi-2))\n" #. type: lisp -#: guix-git/doc/guix.texi:16973 +#: guix-git/doc/guix.texi:17335 #, no-wrap msgid "" " (define %min-level 20)\n" @@ -32244,7 +32961,7 @@ msgstr "" # CHECK #. type: lisp -#: guix-git/doc/guix.texi:16984 +#: guix-git/doc/guix.texi:17346 #, no-wrap msgid "" " (setenv \"LC_ALL\" \"C\") ;ensure English output\n" @@ -32272,109 +32989,109 @@ msgstr "" " (invoke #$(file-append beep \"/bin/beep\") \"-r5\")))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:16989 +#: guix-git/doc/guix.texi:17351 msgid "@xref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron}, for more information on mcron job specifications. Below is the reference of the mcron service." msgstr "@xref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron}, para más información sobre las especificaciones de trabajos de mcron. A continuación se encuentra la referencia del servicio mcron." #. type: Plain text -#: guix-git/doc/guix.texi:16992 +#: guix-git/doc/guix.texi:17354 msgid "On a running system, you can use the @code{schedule} action of the service to visualize the mcron jobs that will be executed next:" msgstr "En un sistema en ejecución puede usar la acción @code{schedule} del servicio para visualizar los siguientes trabajos mcron que se ejecutarán:" #. type: example -#: guix-git/doc/guix.texi:16995 +#: guix-git/doc/guix.texi:17357 #, no-wrap msgid "# herd schedule mcron\n" msgstr "# herd schedule mcron\n" #. type: Plain text -#: guix-git/doc/guix.texi:17000 +#: guix-git/doc/guix.texi:17362 msgid "The example above lists the next five tasks that will be executed, but you can also specify the number of tasks to display:" msgstr "El ejemplo previo enumera las siguientes cinco tareas que se ejecutarán, pero también puede especificar el número de tareas a mostrar:" #. type: example -#: guix-git/doc/guix.texi:17003 +#: guix-git/doc/guix.texi:17365 #, no-wrap msgid "# herd schedule mcron 10\n" msgstr "# herd schedule mcron 10\n" #. type: defvr -#: guix-git/doc/guix.texi:17005 +#: guix-git/doc/guix.texi:17367 #, no-wrap msgid "{Scheme Variable} mcron-service-type" msgstr "{Variable Scheme} mcron-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17008 +#: guix-git/doc/guix.texi:17370 msgid "This is the type of the @code{mcron} service, whose value is an @code{mcron-configuration} object." msgstr "Este es el tipo del servicio @code{mcron}, cuyo valor es un objeto @code{mcron-configuration}." #. type: defvr -#: guix-git/doc/guix.texi:17013 guix-git/doc/guix.texi:37428 +#: guix-git/doc/guix.texi:17375 guix-git/doc/guix.texi:37918 #, fuzzy #| msgid "This service type can be the target of a service extension that provides it additional job specifications (@pxref{Service Composition}). In other words, it is possible to define services that provide additional mcron jobs to run." msgid "This service type can be the target of a service extension that provides additional job specifications (@pxref{Service Composition}). In other words, it is possible to define services that provide additional mcron jobs to run." msgstr "Este tipo de servicio puede ser objeto de una extensión de servicio que le proporciona especificaciones de trabajo adicionales (@pxref{Service Composition}). En otras palabras, es posible definir servicios que proporcionen trabajos mcron adicionales para su ejecución." #. type: deftp -#: guix-git/doc/guix.texi:17015 +#: guix-git/doc/guix.texi:17377 #, no-wrap msgid "{Data Type} mcron-configuration" msgstr "{Tipo de datos} mcron-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17017 guix-git/doc/guix.texi:37432 +#: guix-git/doc/guix.texi:17379 guix-git/doc/guix.texi:37922 msgid "Data type representing the configuration of mcron." msgstr "Tipo de datos que representa la configuración de mcron." #. type: item -#: guix-git/doc/guix.texi:17019 guix-git/doc/guix.texi:37434 +#: guix-git/doc/guix.texi:17381 guix-git/doc/guix.texi:37924 #, no-wrap msgid "@code{mcron} (default: @var{mcron})" msgstr "@code{mcron} (predeterminado: @var{mcron})" #. type: table -#: guix-git/doc/guix.texi:17021 guix-git/doc/guix.texi:37436 +#: guix-git/doc/guix.texi:17383 guix-git/doc/guix.texi:37926 msgid "The mcron package to use." msgstr "El paquete mcron usado." #. type: code{#1} -#: guix-git/doc/guix.texi:17022 guix-git/doc/guix.texi:17091 -#: guix-git/doc/guix.texi:37437 +#: guix-git/doc/guix.texi:17384 guix-git/doc/guix.texi:17453 +#: guix-git/doc/guix.texi:37927 #, no-wrap msgid "jobs" msgstr "jobs" #. type: table -#: guix-git/doc/guix.texi:17026 guix-git/doc/guix.texi:37441 +#: guix-git/doc/guix.texi:17388 guix-git/doc/guix.texi:37931 msgid "This is a list of gexps (@pxref{G-Expressions}), where each gexp corresponds to an mcron job specification (@pxref{Syntax, mcron job specifications,, mcron, GNU@tie{}mcron})." msgstr "Es una lista de expresiones-G (@pxref{G-Expressions}), donde cada expresión-G corresponde a una especificación de trabajo de mcron (@pxref{Syntax, mcron job specifications,, mcron, GNU@tie{}mcron})." #. type: cindex -#: guix-git/doc/guix.texi:17033 +#: guix-git/doc/guix.texi:17395 #, no-wrap msgid "rottlog" msgstr "rottlog" # TODO: (MAAV) Comprobar otras traducciones. #. type: cindex -#: guix-git/doc/guix.texi:17034 +#: guix-git/doc/guix.texi:17396 #, no-wrap msgid "log rotation" msgstr "rotación de logs" #. type: Plain text -#: guix-git/doc/guix.texi:17041 +#: guix-git/doc/guix.texi:17403 msgid "Log files such as those found in @file{/var/log} tend to grow endlessly, so it's a good idea to @dfn{rotate} them once in a while---i.e., archive their contents in separate files, possibly compressed. The @code{(gnu services admin)} module provides an interface to GNU@tie{}Rot[t]log, a log rotation tool (@pxref{Top,,, rottlog, GNU Rot[t]log Manual})." msgstr "Los archivos de registro como los encontrados en @file{/var/log} tienden a crecer indefinidamente, de modo que es buena idea @dfn{llevar a cabo una rotación} de vez en cuando---es decir, archivar su contenido en archivos distintos, posiblemente comprimidos. El módulo @code{(gnu services admin)} proporciona una interfaz con GNU@tie{}Rot[t]log, una herramienta de rotación de registros (@pxref{Top,,, rottlog, GNU Rot[t]log Manual})." #. type: Plain text -#: guix-git/doc/guix.texi:17047 +#: guix-git/doc/guix.texi:17409 msgid "This service is part of @code{%base-services}, and thus enabled by default, with the default settings, for commonly encountered log files. The example below shows how to extend it with an additional @dfn{rotation}, should you need to do that (usually, services that produce log files already take care of that):" msgstr "Este servicio es parte de @code{%base-services}, y por lo tanto se activa de manera predeterminada, con la configuración predeterminada, para archivos de registro que se pueden encontrar habitualmente. El siguiente ejemplo muestra como extenderlo con una @dfn{rotación} adicional, en caso de que deba hacerlo (habitualmente los servicios que producen archivos de registro ya lo hacen ellos mismos):" #. type: lisp -#: guix-git/doc/guix.texi:17051 +#: guix-git/doc/guix.texi:17413 #, no-wrap msgid "" "(use-modules (guix) (gnu))\n" @@ -32386,7 +33103,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:17055 +#: guix-git/doc/guix.texi:17417 #, no-wrap msgid "" "(define my-log-files\n" @@ -32400,7 +33117,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:17064 +#: guix-git/doc/guix.texi:17426 #, no-wrap msgid "" "(operating-system\n" @@ -32422,94 +33139,94 @@ msgstr "" " %base-services)))\n" #. type: defvr -#: guix-git/doc/guix.texi:17066 +#: guix-git/doc/guix.texi:17428 #, no-wrap msgid "{Scheme Variable} rottlog-service-type" msgstr "{Variable Scheme} rottlog-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17069 +#: guix-git/doc/guix.texi:17431 msgid "This is the type of the Rottlog service, whose value is a @code{rottlog-configuration} object." msgstr "Este es el tipo del servicio Rottlog, cuyo valor es un objeto @code{rottlog-configuration}." #. type: defvr -#: guix-git/doc/guix.texi:17072 +#: guix-git/doc/guix.texi:17434 msgid "Other services can extend this one with new @code{log-rotation} objects (see below), thereby augmenting the set of files to be rotated." msgstr "Otros servicios pueden extenderlo con nuevos objetos @code{log-rotation} (véase a continuación), aumentando de dicho modo el conjunto de archivos a rotar." #. type: defvr -#: guix-git/doc/guix.texi:17075 +#: guix-git/doc/guix.texi:17437 msgid "This service type can define mcron jobs (@pxref{Scheduled Job Execution}) to run the rottlog service." msgstr "Este servicio puede definir trabajos de mcron (@pxref{Scheduled Job Execution}) para ejecutar el servicio rottlog." #. type: deftp -#: guix-git/doc/guix.texi:17077 +#: guix-git/doc/guix.texi:17439 #, no-wrap msgid "{Data Type} rottlog-configuration" msgstr "{Tipo de datos} rottlog-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17079 +#: guix-git/doc/guix.texi:17441 msgid "Data type representing the configuration of rottlog." msgstr "Tipo de datos que representa la configuración de rottlog." #. type: item -#: guix-git/doc/guix.texi:17081 +#: guix-git/doc/guix.texi:17443 #, no-wrap msgid "@code{rottlog} (default: @code{rottlog})" msgstr "@code{rottlog} (predeterminado: @code{rottlog})" #. type: table -#: guix-git/doc/guix.texi:17083 +#: guix-git/doc/guix.texi:17445 msgid "The Rottlog package to use." msgstr "El paquete Rottlog usado." #. type: item -#: guix-git/doc/guix.texi:17084 +#: guix-git/doc/guix.texi:17446 #, no-wrap msgid "@code{rc-file} (default: @code{(file-append rottlog \"/etc/rc\")})" msgstr "@code{rc-file} (predeterminado: @code{(file-append rottlog \"/etc/rc\")})" #. type: table -#: guix-git/doc/guix.texi:17087 +#: guix-git/doc/guix.texi:17449 msgid "The Rottlog configuration file to use (@pxref{Mandatory RC Variables,,, rottlog, GNU Rot[t]log Manual})." msgstr "El archivo de configuración de Rottlog usado (@pxref{Mandatory RC Variables,,, rottlog, GNU Rot[t]log Manual})." #. type: item -#: guix-git/doc/guix.texi:17088 +#: guix-git/doc/guix.texi:17450 #, no-wrap msgid "@code{rotations} (default: @code{%default-rotations})" msgstr "@code{rotations} (predeterminadas: @code{%default-rotations})" #. type: table -#: guix-git/doc/guix.texi:17090 +#: guix-git/doc/guix.texi:17452 msgid "A list of @code{log-rotation} objects as defined below." msgstr "Una lista de objetos @code{log-rotation} como se define a continuación." #. type: table -#: guix-git/doc/guix.texi:17094 +#: guix-git/doc/guix.texi:17456 msgid "This is a list of gexps where each gexp corresponds to an mcron job specification (@pxref{Scheduled Job Execution})." msgstr "Esta es una lista de expresiones-G donde cada expresión-G corresponde a una especificación de trabajo de mcron (@pxref{Scheduled Job Execution})." #. type: deftp -#: guix-git/doc/guix.texi:17097 +#: guix-git/doc/guix.texi:17459 #, no-wrap msgid "{Data Type} log-rotation" msgstr "{Tipo de datos} log-rotation" # FUZZY #. type: deftp -#: guix-git/doc/guix.texi:17099 +#: guix-git/doc/guix.texi:17461 msgid "Data type representing the rotation of a group of log files." msgstr "Tipo de datos que representa la rotación de un grupo de archivos de log." #. type: deftp -#: guix-git/doc/guix.texi:17103 +#: guix-git/doc/guix.texi:17465 msgid "Taking an example from the Rottlog manual (@pxref{Period Related File Examples,,, rottlog, GNU Rot[t]log Manual}), a log rotation might be defined like this:" msgstr "Tomando el ejemplo del manual de Rottlog (@pxref{Period Related File Examples,,, rottlog, GNU Rot[t]log Manual}), una rotación de registros se podría definir de esta manera:" #. type: lisp -#: guix-git/doc/guix.texi:17112 +#: guix-git/doc/guix.texi:17474 #, no-wrap msgid "" "(log-rotation\n" @@ -32529,125 +33246,119 @@ msgstr "" " \"nocompress\")))\n" #. type: deftp -#: guix-git/doc/guix.texi:17115 +#: guix-git/doc/guix.texi:17477 msgid "The list of fields is as follows:" msgstr "La lista de campos es como sigue:" #. type: item -#: guix-git/doc/guix.texi:17117 +#: guix-git/doc/guix.texi:17479 #, no-wrap msgid "@code{frequency} (default: @code{'weekly})" msgstr "@code{frequency} (predeterminada: @code{'weekly})" #. type: table -#: guix-git/doc/guix.texi:17119 +#: guix-git/doc/guix.texi:17481 msgid "The log rotation frequency, a symbol." msgstr "La frecuencia de rotación de logs, un símbolo." -#. type: code{#1} -#: guix-git/doc/guix.texi:17120 -#, no-wrap -msgid "files" -msgstr "files" - # FUZZY #. type: table -#: guix-git/doc/guix.texi:17122 +#: guix-git/doc/guix.texi:17484 msgid "The list of files or file glob patterns to rotate." msgstr "La lista de archivos o patrones extendidos de archivo a rotar." #. type: item -#: guix-git/doc/guix.texi:17123 +#: guix-git/doc/guix.texi:17485 #, no-wrap msgid "@code{options} (default: @code{'()})" msgstr "@code{options} (predeterminadas: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17126 +#: guix-git/doc/guix.texi:17488 msgid "The list of rottlog options for this rotation (@pxref{Configuration parameters,,, rottlog, GNU Rot[t]lg Manual})." msgstr "La lista de opciones de rottlog para esta rotación (@pxref{Configuration parameters,,, rottlog, GNU Rot[t]log Manual})." #. type: item -#: guix-git/doc/guix.texi:17127 +#: guix-git/doc/guix.texi:17489 #, no-wrap msgid "@code{post-rotate} (default: @code{#f})" msgstr "@code{post-rotate} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17129 +#: guix-git/doc/guix.texi:17491 msgid "Either @code{#f} or a gexp to execute once the rotation has completed." msgstr "O bien @code{#f}, o bien una expresión-G que se ejecutará una vez la rotación se haya completado." #. type: defvr -#: guix-git/doc/guix.texi:17132 +#: guix-git/doc/guix.texi:17494 #, no-wrap msgid "{Scheme Variable} %default-rotations" msgstr "{Variable Scheme} %default-rotations" # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:17135 +#: guix-git/doc/guix.texi:17497 msgid "Specifies weekly rotation of @code{%rotated-files} and of @file{/var/log/guix-daemon.log}." msgstr "Especifica la rotación semanal de @code{%rotated-files} y de @file{/var/log/guix-daemon.log}." #. type: defvr -#: guix-git/doc/guix.texi:17137 +#: guix-git/doc/guix.texi:17499 #, no-wrap msgid "{Scheme Variable} %rotated-files" msgstr "{Variable Scheme} %rotated-files" #. type: defvr -#: guix-git/doc/guix.texi:17141 +#: guix-git/doc/guix.texi:17503 msgid "The list of syslog-controlled files to be rotated. By default it is: @code{'(\"/var/log/messages\" \"/var/log/secure\" \"/var/log/debug\" \\ \"/var/log/maillog\")}." msgstr "La lista de archivos controlados por syslog que deben ser rotados. De manera predeterminada es @code{'(\"/var/log/messages\" \"/var/log/secure\" \"/var/log/maillog\")}." #. type: Plain text -#: guix-git/doc/guix.texi:17154 +#: guix-git/doc/guix.texi:17516 msgid "The @code{(gnu services networking)} module provides services to configure network interfaces and set up networking on your machine. Those services provide different ways for you to set up your machine: by declaring a static network configuration, by running a Dynamic Host Configuration Protocol (DHCP) client, or by running daemons such as NetworkManager and Connman that automate the whole process, automatically adapt to connectivity changes, and provide a high-level user interface." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17160 +#: guix-git/doc/guix.texi:17522 msgid "On a laptop, NetworkManager and Connman are by far the most convenient options, which is why the default desktop services include NetworkManager (@pxref{Desktop Services, @code{%desktop-services}}). For a server, or for a virtual machine or a container, static network configuration or a simple DHCP client are often more appropriate." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17163 +#: guix-git/doc/guix.texi:17525 msgid "This section describes the various network setup services available, starting with static network configuration." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17164 +#: guix-git/doc/guix.texi:17526 #, no-wrap msgid "{Scheme Variable} static-networking-service-type" msgstr "{Variable Scheme} static-networking-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17169 +#: guix-git/doc/guix.texi:17531 msgid "This is the type for statically-configured network interfaces. Its value must be a list of @code{static-networking} records. Each of them declares a set of @dfn{addresses}, @dfn{routes}, and @dfn{links}, as show below." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17170 +#: guix-git/doc/guix.texi:17532 #, fuzzy, no-wrap #| msgid "Network interface on which to listen." msgid "network interface controller (NIC)" msgstr "La interfaz de red en la que se escucha." #. type: cindex -#: guix-git/doc/guix.texi:17171 +#: guix-git/doc/guix.texi:17533 #, fuzzy, no-wrap #| msgid "Network interface on which to listen." msgid "NIC, networking interface controller" msgstr "La interfaz de red en la que se escucha." #. type: defvr -#: guix-git/doc/guix.texi:17174 +#: guix-git/doc/guix.texi:17536 msgid "Here is the simplest configuration, with only one network interface controller (NIC) and only IPv4 connectivity:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17188 +#: guix-git/doc/guix.texi:17550 #, fuzzy, no-wrap #| msgid "" #| "(service mpd-service-type\n" @@ -32686,31 +33397,31 @@ msgstr "" " (port . \"8080\"))))))))\n" #. type: defvr -#: guix-git/doc/guix.texi:17197 +#: guix-git/doc/guix.texi:17559 msgid "The snippet above can be added to the @code{services} field of your operating system configuration (@pxref{Using the Configuration System}). It will configure your machine to have 10.0.2.15 as its IP address, with a 24-bit netmask for the local network---meaning that any 10.0.2.@var{x} address is on the local area network (LAN). Traffic to addresses outside the local network is routed @i{via} 10.0.2.2. Host names are resolved by sending domain name system (DNS) queries to 10.0.2.3." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17199 +#: guix-git/doc/guix.texi:17561 #, fuzzy, no-wrap #| msgid "{Data Type} ganeti-os-variant" msgid "{Data Type} static-networking" msgstr "{Tipo de datos} ganeti-os-variant" #. type: deftp -#: guix-git/doc/guix.texi:17201 +#: guix-git/doc/guix.texi:17563 #, fuzzy #| msgid "This is the data type representing the SDDM service configuration." msgid "This is the data type representing a static network configuration." msgstr "Tipo de datos que representa la configuración del servicio SDDM." #. type: deftp -#: guix-git/doc/guix.texi:17205 +#: guix-git/doc/guix.texi:17567 msgid "As an example, here is how you would declare the configuration of a machine with a single network interface controller (NIC) available as @code{eno1}, and with one IPv4 and one IPv6 address:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17222 +#: guix-git/doc/guix.texi:17584 #, no-wrap msgid "" ";; Network configuration for one NIC, IPv4 + IPv6.\n" @@ -32731,12 +33442,12 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17228 +#: guix-git/doc/guix.texi:17590 msgid "If you are familiar with the @command{ip} command of the @uref{https://wiki.linuxfoundation.org/networking/iproute2, @code{iproute2} package} found on Linux-based systems, the declaration above is equivalent to typing:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:17234 +#: guix-git/doc/guix.texi:17596 #, no-wrap msgid "" "ip address add 10.0.2.15/24 dev eno1\n" @@ -32746,12 +33457,12 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17239 +#: guix-git/doc/guix.texi:17601 msgid "Run @command{man 8 ip} for more info. Venerable GNU/Linux users will certainly know how to do it with @command{ifconfig} and @command{route}, but we'll spare you that." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17241 +#: guix-git/doc/guix.texi:17603 #, fuzzy #| msgid "The available options are as follows:" msgid "The available fields of this data type are as follows:" @@ -32759,355 +33470,355 @@ msgstr "Las opciones disponibles son las siguientes:" # FUZZY #. type: code{#1} -#: guix-git/doc/guix.texi:17243 +#: guix-git/doc/guix.texi:17605 #, fuzzy, no-wrap #| msgid "address" msgid "addresses" msgstr "address" #. type: itemx -#: guix-git/doc/guix.texi:17244 +#: guix-git/doc/guix.texi:17606 #, fuzzy, no-wrap #| msgid "@code{plugins} (default: @code{'()})" msgid "@code{links} (default: @code{'()})" msgstr "@code{plugins} (predeterminados: @code{'()})" #. type: itemx -#: guix-git/doc/guix.texi:17245 +#: guix-git/doc/guix.texi:17607 #, fuzzy, no-wrap #| msgid "@code{remotes} (default: @code{'()})" msgid "@code{routes} (default: @code{'()})" msgstr "@code{remotes} (predeterminada: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17248 +#: guix-git/doc/guix.texi:17610 msgid "The list of @code{network-address}, @code{network-link}, and @code{network-route} records for this network (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17249 +#: guix-git/doc/guix.texi:17611 #, fuzzy, no-wrap #| msgid "@code{name-services} (default: @code{'()})" msgid "@code{name-servers} (default: @code{'()})" msgstr "@code{name-services} (predeterminados: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17252 +#: guix-git/doc/guix.texi:17614 msgid "The list of IP addresses (strings) of domain name servers. These IP addresses go to @file{/etc/resolv.conf}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17253 +#: guix-git/doc/guix.texi:17615 #, fuzzy, no-wrap msgid "@code{provision} (default: @code{'(networking)})" msgstr "@code{options} (predeterminadas: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17256 +#: guix-git/doc/guix.texi:17618 msgid "If true, this should be a list of symbols for the Shepherd service corresponding to this network configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17257 +#: guix-git/doc/guix.texi:17619 #, fuzzy, no-wrap #| msgid "@code{requirement} (default: @code{'()})" msgid "@code{requirement} (default @code{'()})" msgstr "@code{requirement} (predeterminada: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17259 +#: guix-git/doc/guix.texi:17621 #, fuzzy #| msgid "actions, of Shepherd services" msgid "The list of Shepherd services depended on." msgstr "acciones, de servicios de Shepherd" #. type: deftp -#: guix-git/doc/guix.texi:17262 +#: guix-git/doc/guix.texi:17624 #, fuzzy, no-wrap #| msgid "{Data Type} ganeti-os" msgid "{Data Type} network-address" msgstr "{Tipo de datos} ganeti-os" #. type: deftp -#: guix-git/doc/guix.texi:17265 +#: guix-git/doc/guix.texi:17627 #, fuzzy #| msgid "This is the data type representing the SDDM service configuration." msgid "This is the data type representing the IP address of a network interface." msgstr "Tipo de datos que representa la configuración del servicio SDDM." #. type: table -#: guix-git/doc/guix.texi:17270 +#: guix-git/doc/guix.texi:17632 #, fuzzy #| msgid "The name of the console this Getty runs on---e.g., @code{\"tty1\"}." msgid "The name of the network interface for this address---e.g., @code{\"eno1\"}." msgstr "El nombre de la consola en la que se ejecuta este Getty---por ejemplo, @code{\"tty1\"}." #. type: item -#: guix-git/doc/guix.texi:17271 +#: guix-git/doc/guix.texi:17633 #, no-wrap msgid "value" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17275 +#: guix-git/doc/guix.texi:17637 msgid "The actual IP address and network mask, in @uref{https://en.wikipedia.org/wiki/CIDR#CIDR_notation, @acronym{CIDR, Classless Inter-Domain Routing} notation}, as a string." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17279 +#: guix-git/doc/guix.texi:17641 msgid "For example, @code{\"10.0.2.15/24\"} denotes IPv4 address 10.0.2.15 on a 24-bit sub-network---all 10.0.2.@var{x} addresses are on the same local network." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17280 +#: guix-git/doc/guix.texi:17642 #, no-wrap msgid "ipv6?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17283 +#: guix-git/doc/guix.texi:17645 msgid "Whether @code{value} denotes an IPv6 address. By default this is automatically determined." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17286 +#: guix-git/doc/guix.texi:17648 #, fuzzy, no-wrap #| msgid "{Data Type} user-group" msgid "{Data Type} network-route" msgstr "{Tipo de datos} user-group" #. type: deftp -#: guix-git/doc/guix.texi:17288 +#: guix-git/doc/guix.texi:17650 #, fuzzy #| msgid "This is the data type representing a package recipe." msgid "This is the data type representing a network route." msgstr "Este es el tipo de datos que representa la receta de un paquete." #. type: code{#1} -#: guix-git/doc/guix.texi:17290 +#: guix-git/doc/guix.texi:17652 #, fuzzy, no-wrap #| msgid "derivation" msgid "destination" msgstr "derivation" #. type: table -#: guix-git/doc/guix.texi:17293 +#: guix-git/doc/guix.texi:17655 msgid "The route destination (a string), either an IP address or @code{\"default\"} to denote the default route." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17294 +#: guix-git/doc/guix.texi:17656 #, fuzzy, no-wrap msgid "@code{source} (default: @code{#f})" msgstr "@code{ssl-cert} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17296 +#: guix-git/doc/guix.texi:17658 #, fuzzy #| msgid "The rottlog service." msgid "The route source." msgstr "El servicio rottlog." #. type: item -#: guix-git/doc/guix.texi:17297 guix-git/doc/guix.texi:34761 +#: guix-git/doc/guix.texi:17659 guix-git/doc/guix.texi:35200 #, no-wrap msgid "@code{device} (default: @code{#f})" msgstr "@code{device} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17299 +#: guix-git/doc/guix.texi:17661 #, fuzzy #| msgid "The label to show in the menu---e.g., @code{\"GNU\"}." msgid "The device used for this route---e.g., @code{\"eno2\"}." msgstr "La etiqueta a mostrar en el menú---por ejemplo, @code{\"GNU\"}." #. type: item -#: guix-git/doc/guix.texi:17300 +#: guix-git/doc/guix.texi:17662 #, fuzzy, no-wrap #| msgid "@code{ipv6?} (default: @code{#t})" msgid "@code{ipv6?} (default: auto)" msgstr "@code{ipv6?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:17303 +#: guix-git/doc/guix.texi:17665 msgid "Whether this is an IPv6 route. By default this is automatically determined based on @code{destination} or @code{gateway}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17304 +#: guix-git/doc/guix.texi:17666 #, fuzzy, no-wrap #| msgid "@code{delay} (default: @code{#f})" msgid "@code{gateway} (default: @code{#f})" msgstr "@code{delay} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17306 +#: guix-git/doc/guix.texi:17668 msgid "IP address (a string) through which traffic is routed." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17309 +#: guix-git/doc/guix.texi:17671 #, fuzzy, no-wrap #| msgid "{Data Type} origin" msgid "{Data Type} network-link" msgstr "{Tipo de datos} origin" #. type: deftp -#: guix-git/doc/guix.texi:17312 +#: guix-git/doc/guix.texi:17674 msgid "Data type for a network link (@pxref{Link,,, guile-netlink, Guile-Netlink Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17316 +#: guix-git/doc/guix.texi:17678 #, fuzzy #| msgid "The name of the console this Getty runs on---e.g., @code{\"tty1\"}." msgid "The name of the link---e.g., @code{\"v0p0\"}." msgstr "El nombre de la consola en la que se ejecuta este Getty---por ejemplo, @code{\"tty1\"}." #. type: table -#: guix-git/doc/guix.texi:17319 +#: guix-git/doc/guix.texi:17681 #, fuzzy #| msgid "This is a string specifying the type of the file system---e.g., @code{\"ext4\"}." msgid "A symbol denoting the type of the link---e.g., @code{'veth}." msgstr "Este campo es una cadena que especifica el tipo de sistema de archivos---por ejemplo, @code{\"ext4\"}." #. type: item -#: guix-git/doc/guix.texi:17320 +#: guix-git/doc/guix.texi:17682 #, no-wrap msgid "arguments" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17322 +#: guix-git/doc/guix.texi:17684 #, fuzzy #| msgid "A list of arguments to pass to @command{login}." msgid "List of arguments for this type of link." msgstr "Una lista de parámetros para proporcionar a @command{login}." #. type: cindex -#: guix-git/doc/guix.texi:17325 +#: guix-git/doc/guix.texi:17687 #, fuzzy, no-wrap #| msgid "Docker Service" msgid "loopback device" msgstr "Servicio Docker" #. type: defvr -#: guix-git/doc/guix.texi:17326 +#: guix-git/doc/guix.texi:17688 #, fuzzy, no-wrap #| msgid "{Scheme Variable} static-networking-service-type" msgid "{Scheme Variable} %loopback-static-networking" msgstr "{Variable Scheme} static-networking-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17330 +#: guix-git/doc/guix.texi:17692 msgid "This is the @code{static-networking} record representing the ``loopback device'', @code{lo}, for IP addresses 127.0.0.1 and ::1, and providing the @code{loopback} Shepherd service." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17332 +#: guix-git/doc/guix.texi:17694 #, no-wrap msgid "networking, with QEMU" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17333 +#: guix-git/doc/guix.texi:17695 #, fuzzy, no-wrap #| msgid "Networking" msgid "QEMU, networking" msgstr "Red" #. type: defvr -#: guix-git/doc/guix.texi:17334 +#: guix-git/doc/guix.texi:17696 #, fuzzy, no-wrap #| msgid "{Scheme Variable} static-networking-service-type" msgid "{Scheme Variable} %qemu-static-networking" msgstr "{Variable Scheme} static-networking-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17338 +#: guix-git/doc/guix.texi:17700 msgid "This is the @code{static-networking} record representing network setup when using QEMU's user-mode network stack on @code{eth0} (@pxref{Using the user mode network stack,,, QEMU, QEMU Documentation})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17340 +#: guix-git/doc/guix.texi:17702 #, no-wrap msgid "DHCP, networking service" msgstr "DHCP, servicio de red" #. type: defvr -#: guix-git/doc/guix.texi:17341 +#: guix-git/doc/guix.texi:17703 #, no-wrap msgid "{Scheme Variable} dhcp-client-service-type" msgstr "{Variable Scheme} dhcp-client-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17345 +#: guix-git/doc/guix.texi:17707 msgid "This is the type of services that run @var{dhcp}, a Dynamic Host Configuration Protocol (DHCP) client, on all the non-loopback network interfaces. Its value is the DHCP client package to use, @code{isc-dhcp} by default." msgstr "Este es el tipo de los servicios que ejecutan @var{dhcp}, un cliente del protocolo de configuración dinámica de máquinas DHCP, en todas las interfaces de red no locales. Su valor es el paquete del cliente DHCP, @code{isc-dhcp} de manera predeterminada." #. type: cindex -#: guix-git/doc/guix.texi:17347 +#: guix-git/doc/guix.texi:17709 #, no-wrap msgid "NetworkManager" msgstr "NetworkManager" #. type: defvr -#: guix-git/doc/guix.texi:17349 +#: guix-git/doc/guix.texi:17711 #, no-wrap msgid "{Scheme Variable} network-manager-service-type" msgstr "{Variable Scheme} network-manager-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17354 +#: guix-git/doc/guix.texi:17716 msgid "This is the service type for the @uref{https://wiki.gnome.org/Projects/NetworkManager, NetworkManager} service. The value for this service type is a @code{network-manager-configuration} record." msgstr "Este es el tipo de servicio para el servicio @uref{https://wiki.gnome.org/Projects/NetworkManager, NetworkManager}. El valor para este tipo de servicio es un registro @code{network-manager-configuration}." #. type: defvr -#: guix-git/doc/guix.texi:17357 guix-git/doc/guix.texi:17509 -#: guix-git/doc/guix.texi:17538 +#: guix-git/doc/guix.texi:17719 guix-git/doc/guix.texi:17871 +#: guix-git/doc/guix.texi:17900 msgid "This service is part of @code{%desktop-services} (@pxref{Desktop Services})." msgstr "Este servicio es parte de @code{%desktop-services} (@pxref{Desktop Services})." #. type: deftp -#: guix-git/doc/guix.texi:17359 +#: guix-git/doc/guix.texi:17721 #, no-wrap msgid "{Data Type} network-manager-configuration" msgstr "{Tipo de datos} network-manager-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17361 +#: guix-git/doc/guix.texi:17723 msgid "Data type representing the configuration of NetworkManager." msgstr "Tipo de datos que representa la configuración de NetworkManager." #. type: item -#: guix-git/doc/guix.texi:17363 +#: guix-git/doc/guix.texi:17725 #, no-wrap msgid "@code{network-manager} (default: @code{network-manager})" msgstr "@code{network-manager} (predeterminado: @code{network-manager})" #. type: table -#: guix-git/doc/guix.texi:17365 +#: guix-git/doc/guix.texi:17727 msgid "The NetworkManager package to use." msgstr "El paquete de NetworkManager usado." #. type: item -#: guix-git/doc/guix.texi:17366 +#: guix-git/doc/guix.texi:17728 #, no-wrap msgid "@code{dns} (default: @code{\"default\"})" msgstr "@code{dns} (predeterminado: @code{\"default\"})" #. type: table -#: guix-git/doc/guix.texi:17369 +#: guix-git/doc/guix.texi:17731 msgid "Processing mode for DNS, which affects how NetworkManager uses the @code{resolv.conf} configuration file." msgstr "Modo de procesamiento para DNS, que afecta la manera en la que NetworkManager usa el archivo de configuración @code{resolv.conf}." #. type: table -#: guix-git/doc/guix.texi:17374 +#: guix-git/doc/guix.texi:17736 msgid "NetworkManager will update @code{resolv.conf} to reflect the nameservers provided by currently active connections." msgstr "NetworkManager actualizará @code{resolv.conf} para reflejar los servidores de nombres proporcionados por las conexiones activas actualmente." #. type: item -#: guix-git/doc/guix.texi:17375 +#: guix-git/doc/guix.texi:17737 #, no-wrap msgid "dnsmasq" msgstr "dnsmasq" @@ -33115,22 +33826,22 @@ msgstr "dnsmasq" # FUZZY # TODO (MAAV): split DNS #. type: table -#: guix-git/doc/guix.texi:17379 +#: guix-git/doc/guix.texi:17741 msgid "NetworkManager will run @code{dnsmasq} as a local caching nameserver, using a @dfn{conditional forwarding} configuration if you are connected to a VPN, and then update @code{resolv.conf} to point to the local nameserver." msgstr "NetworkManager ejecutará @code{dnsmasq} como una caché local del servicio de nombres, mediante un @dfn{reenvío condicional} si se encuentra conectada a una VPN, y actualiza posteriormente @code{resolv.conf} para apuntar al servidor de nombres local." #. type: table -#: guix-git/doc/guix.texi:17385 +#: guix-git/doc/guix.texi:17747 msgid "With this setting, you can share your network connection. For example when you want to share your network connection to another laptop @i{via} an Ethernet cable, you can open @command{nm-connection-editor} and configure the Wired connection's method for IPv4 and IPv6 to be ``Shared to other computers'' and reestablish the connection (or reboot)." msgstr "Con esta configuración puede compartir su conexión de red. Por ejemplo, cuando desee compartir su conexión de red a otro equipo a través de un cable Ethernet, puede abrir @command{nm-connection-editor} y configurar el método de la conexión cableada para IPv4 y IPv6 ``Compartida con otros equipos'' y restablecer la conexión (o reiniciar)." #. type: table -#: guix-git/doc/guix.texi:17392 +#: guix-git/doc/guix.texi:17754 msgid "You can also set up a @dfn{host-to-guest connection} to QEMU VMs (@pxref{Installing Guix in a VM}). With a host-to-guest connection, you can e.g.@: access a Web server running on the VM (@pxref{Web Services}) from a Web browser on your host system, or connect to the VM @i{via} SSH (@pxref{Networking Services, @code{openssh-service-type}}). To set up a host-to-guest connection, run this command once:" msgstr "También puede configurar una @dfn{conexión anfitrión-invitado} a las máquinas virtuales de QEMU (@pxref{Installing Guix in a VM}). Con una conexión anfitrión-invitado puede, por ejemplo, acceder a un servidor web que se ejecute en la máquina virtual (@pxref{Web Services}) desde un navegador web en su sistema anfitrión, o conectarse a la máquina virtual a través de SSH (@pxref{Networking Services, @code{openssh-service-type}}). Para configurar una conexión anfitrión-invitado, ejecute esta orden una única vez:" #. type: example -#: guix-git/doc/guix.texi:17399 +#: guix-git/doc/guix.texi:17761 #, no-wrap msgid "" "nmcli connection add type tun \\\n" @@ -33146,50 +33857,50 @@ msgstr "" " ipv4.addresses 172.28.112.1/24\n" #. type: table -#: guix-git/doc/guix.texi:17404 +#: guix-git/doc/guix.texi:17766 msgid "Then each time you launch your QEMU VM (@pxref{Running Guix in a VM}), pass @option{-nic tap,ifname=tap0,script=no,downscript=no} to @command{qemu-system-...}." msgstr "Cada vez que arranque su máquina virtual de QEMU (@pxref{Running Guix in a VM}), proporcione @option{-nic tap,ifname=tap0,script=no,downscript=no} a @command{qemu-system-...}." #. type: table -#: guix-git/doc/guix.texi:17407 +#: guix-git/doc/guix.texi:17769 msgid "NetworkManager will not modify @code{resolv.conf}." msgstr "NetworkManager no modificará @code{resolv.conf}." #. type: item -#: guix-git/doc/guix.texi:17409 +#: guix-git/doc/guix.texi:17771 #, no-wrap msgid "@code{vpn-plugins} (default: @code{'()})" msgstr "@code{vpn-plugins} (predeterminados: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17413 +#: guix-git/doc/guix.texi:17775 msgid "This is the list of available plugins for virtual private networks (VPNs). An example of this is the @code{network-manager-openvpn} package, which allows NetworkManager to manage VPNs @i{via} OpenVPN." msgstr "Esta es la lista de módulos disponibles para redes privadas virtuales (VPN). Un ejemplo es el paquete @code{network-manager-openvpn}, que permite a NetworkManager la gestión de redes VPN a través de OpenVPN." #. type: cindex -#: guix-git/doc/guix.texi:17417 +#: guix-git/doc/guix.texi:17779 #, no-wrap msgid "Connman" msgstr "Connman" #. type: deffn -#: guix-git/doc/guix.texi:17418 +#: guix-git/doc/guix.texi:17780 #, no-wrap msgid "{Scheme Variable} connman-service-type" msgstr "{Variable Scheme} connman-service-type" #. type: deffn -#: guix-git/doc/guix.texi:17421 +#: guix-git/doc/guix.texi:17783 msgid "This is the service type to run @url{https://01.org/connman,Connman}, a network connection manager." msgstr "Este es el tipo de servicio para la ejecución de @url{https://01.org.connman,Connman}, un gestor de conexiones de red." #. type: deffn -#: guix-git/doc/guix.texi:17424 +#: guix-git/doc/guix.texi:17786 msgid "Its value must be an @code{connman-configuration} record as in this example:" msgstr "Su valor debe ser un registro @code{connman-configuration} como en este ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:17429 +#: guix-git/doc/guix.texi:17791 #, no-wrap msgid "" "(service connman-service-type\n" @@ -33201,314 +33912,314 @@ msgstr "" " (disable-vpn? #t)))\n" #. type: deffn -#: guix-git/doc/guix.texi:17432 +#: guix-git/doc/guix.texi:17794 msgid "See below for details about @code{connman-configuration}." msgstr "Véase a continuación más detalles sobre @code{connman-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:17434 +#: guix-git/doc/guix.texi:17796 #, no-wrap msgid "{Data Type} connman-configuration" msgstr "{Tipo de datos} connman-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17436 +#: guix-git/doc/guix.texi:17798 msgid "Data Type representing the configuration of connman." msgstr "Tipo de datos que representa la configuración de connman." #. type: item -#: guix-git/doc/guix.texi:17438 +#: guix-git/doc/guix.texi:17800 #, no-wrap msgid "@code{connman} (default: @var{connman})" msgstr "@code{connman} (predeterminado: @var{connman})" #. type: table -#: guix-git/doc/guix.texi:17440 +#: guix-git/doc/guix.texi:17802 msgid "The connman package to use." msgstr "El paquete connman usado." #. type: item -#: guix-git/doc/guix.texi:17441 +#: guix-git/doc/guix.texi:17803 #, no-wrap msgid "@code{disable-vpn?} (default: @code{#f})" msgstr "@code{disable-vpn?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17443 +#: guix-git/doc/guix.texi:17805 msgid "When true, disable connman's vpn plugin." msgstr "Cuando es verdadero, desactiva el módulo vpn de connman." #. type: cindex -#: guix-git/doc/guix.texi:17446 +#: guix-git/doc/guix.texi:17808 #, no-wrap msgid "WPA Supplicant" msgstr "WPA Supplicant" #. type: defvr -#: guix-git/doc/guix.texi:17447 +#: guix-git/doc/guix.texi:17809 #, no-wrap msgid "{Scheme Variable} wpa-supplicant-service-type" msgstr "{Variable Scheme} wpa-supplicant-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17451 +#: guix-git/doc/guix.texi:17813 msgid "This is the service type to run @url{https://w1.fi/wpa_supplicant/,WPA supplicant}, an authentication daemon required to authenticate against encrypted WiFi or ethernet networks." msgstr "Este es el tipo de servicio para la ejecución de @url{https://w1.fi/wpa_supplicant/,WPA supplicant}, un daemon de identificación necesario para la identificación en redes WiFi o ethernet cifradas." #. type: deftp -#: guix-git/doc/guix.texi:17453 +#: guix-git/doc/guix.texi:17815 #, no-wrap msgid "{Data Type} wpa-supplicant-configuration" msgstr "{Tipo de datos} wpa-supplicant-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17455 +#: guix-git/doc/guix.texi:17817 msgid "Data type representing the configuration of WPA Supplicant." msgstr "Tipo de datos que representa la configuración de WPA Supplicant." #. type: deftp -#: guix-git/doc/guix.texi:17457 guix-git/doc/guix.texi:32945 +#: guix-git/doc/guix.texi:17819 guix-git/doc/guix.texi:33310 msgid "It takes the following parameters:" msgstr "Toma los siguientes parámetros:" #. type: item -#: guix-git/doc/guix.texi:17459 +#: guix-git/doc/guix.texi:17821 #, no-wrap msgid "@code{wpa-supplicant} (default: @code{wpa-supplicant})" msgstr "@code{wpa-supplicant} (predeterminado: @code{wpa-supplicant})" #. type: table -#: guix-git/doc/guix.texi:17461 +#: guix-git/doc/guix.texi:17823 msgid "The WPA Supplicant package to use." msgstr "El paquete de WPA Supplicant usado." #. type: item -#: guix-git/doc/guix.texi:17462 +#: guix-git/doc/guix.texi:17824 #, no-wrap msgid "@code{requirement} (default: @code{'(user-processes loopback syslogd)}" msgstr "@code{requirement} (predeterminados: @code{'(user-processes loopback syslogd)}" #. type: table -#: guix-git/doc/guix.texi:17464 +#: guix-git/doc/guix.texi:17826 msgid "List of services that should be started before WPA Supplicant starts." msgstr "Lista de servicios que deben iniciarse antes del arranque de WPA Supplicant." #. type: item -#: guix-git/doc/guix.texi:17465 +#: guix-git/doc/guix.texi:17827 #, no-wrap msgid "@code{dbus?} (default: @code{#t})" msgstr "@code{dbus?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:17467 +#: guix-git/doc/guix.texi:17829 msgid "Whether to listen for requests on D-Bus." msgstr "Si se escuchan o no peticiones en D-Bus." #. type: item -#: guix-git/doc/guix.texi:17468 +#: guix-git/doc/guix.texi:17830 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/wpa_supplicant.pid\"})" msgstr "@code{pid-file} (predeterminado: @code{\"/var/run/wpa_supplicant.pid\"})" #. type: table -#: guix-git/doc/guix.texi:17470 +#: guix-git/doc/guix.texi:17832 msgid "Where to store the PID file." msgstr "Dónde se almacena el archivo con el PID." #. type: item -#: guix-git/doc/guix.texi:17471 guix-git/doc/guix.texi:31246 -#: guix-git/doc/guix.texi:31388 +#: guix-git/doc/guix.texi:17833 guix-git/doc/guix.texi:31611 +#: guix-git/doc/guix.texi:31753 #, no-wrap msgid "@code{interface} (default: @code{#f})" msgstr "@code{interface} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17474 +#: guix-git/doc/guix.texi:17836 msgid "If this is set, it must specify the name of a network interface that WPA supplicant will control." msgstr "En caso de proporcionarse un valor, debe especificar el nombre de la interfaz de red que WPA supplicant controlará." #. type: item -#: guix-git/doc/guix.texi:17475 guix-git/doc/guix.texi:17591 -#: guix-git/doc/guix.texi:22879 +#: guix-git/doc/guix.texi:17837 guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:23241 #, no-wrap msgid "@code{config-file} (default: @code{#f})" msgstr "@code{config-file} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17477 +#: guix-git/doc/guix.texi:17839 msgid "Optional configuration file to use." msgstr "Archivo de configuración opcional usado." #. type: table -#: guix-git/doc/guix.texi:17480 +#: guix-git/doc/guix.texi:17842 msgid "List of additional command-line arguments to pass to the daemon." msgstr "Lista de parámetros adicionales a pasar al daemon en la línea de órdenes." #. type: cindex -#: guix-git/doc/guix.texi:17483 +#: guix-git/doc/guix.texi:17845 #, no-wrap msgid "wicd" msgstr "wicd" #. type: cindex -#: guix-git/doc/guix.texi:17486 +#: guix-git/doc/guix.texi:17848 #, no-wrap msgid "network management" msgstr "gestión de red" #. type: deffn -#: guix-git/doc/guix.texi:17487 +#: guix-git/doc/guix.texi:17849 #, no-wrap msgid "{Scheme Procedure} wicd-service [#:wicd @var{wicd}]" msgstr "{Procedimiento Scheme} wicd-service [#:wicd @var{wicd}]" # FUZZY #. type: deffn -#: guix-git/doc/guix.texi:17490 +#: guix-git/doc/guix.texi:17852 msgid "Return a service that runs @url{https://launchpad.net/wicd,Wicd}, a network management daemon that aims to simplify wired and wireless networking." msgstr "Devuelve un servicio que ejecuta @url{https://launchpad.net/wicd,Wicd}, un daemon de gestión de red que intenta simplificar la gestión de redes cableadas e inalámbricas." #. type: deffn -#: guix-git/doc/guix.texi:17495 +#: guix-git/doc/guix.texi:17857 msgid "This service adds the @var{wicd} package to the global profile, providing several commands to interact with the daemon and configure networking: @command{wicd-client}, a graphical user interface, and the @command{wicd-cli} and @command{wicd-curses} user interfaces." msgstr "Este servicio añade @var{wicd} al perfil global, proporcionando varias ordenes destinadas a la interacción con el daemon y a la configuración de la red: @command{wicd-client}, una interfaz gráfica, y las interfaces de usuaria @command{wicd-cli} y @command{wicd-curses}." #. type: cindex -#: guix-git/doc/guix.texi:17497 +#: guix-git/doc/guix.texi:17859 #, no-wrap msgid "ModemManager" msgstr "ModemManager" #. type: Plain text -#: guix-git/doc/guix.texi:17500 +#: guix-git/doc/guix.texi:17862 msgid "Some networking devices such as modems require special care, and this is what the services below focus on." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17501 +#: guix-git/doc/guix.texi:17863 #, no-wrap msgid "{Scheme Variable} modem-manager-service-type" msgstr "{Variable Scheme} modem-manager-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17506 +#: guix-git/doc/guix.texi:17868 #, fuzzy msgid "This is the service type for the @uref{https://wiki.gnome.org/Projects/ModemManager, ModemManager} service. The value for this service type is a @code{modem-manager-configuration} record." msgstr "Este es el tipo de servicio para el servicio @uref{https://wiki.gnome.org/Projects/ModemManager, ModemManager}. El valor para este tipo de servicio es un registro @code{modem-manager-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:17511 +#: guix-git/doc/guix.texi:17873 #, no-wrap msgid "{Data Type} modem-manager-configuration" msgstr "{Tipo de datos} modem-manager-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17513 +#: guix-git/doc/guix.texi:17875 msgid "Data type representing the configuration of ModemManager." msgstr "Tipo de datos que representa la configuración de ModemManager." #. type: item -#: guix-git/doc/guix.texi:17515 +#: guix-git/doc/guix.texi:17877 #, no-wrap msgid "@code{modem-manager} (default: @code{modem-manager})" msgstr "@code{modem-manager} (predeterminado: @code{modem-manager})" #. type: table -#: guix-git/doc/guix.texi:17517 +#: guix-git/doc/guix.texi:17879 msgid "The ModemManager package to use." msgstr "El paquete de ModemManager usado." #. type: cindex -#: guix-git/doc/guix.texi:17521 +#: guix-git/doc/guix.texi:17883 #, no-wrap msgid "USB_ModeSwitch" msgstr "USB_ModeSwitch" #. type: cindex -#: guix-git/doc/guix.texi:17522 +#: guix-git/doc/guix.texi:17884 #, no-wrap msgid "Modeswitching" msgstr "Cambio de modo (modeswitch)" #. type: defvr -#: guix-git/doc/guix.texi:17524 +#: guix-git/doc/guix.texi:17886 #, no-wrap msgid "{Scheme Variable} usb-modeswitch-service-type" msgstr "{Variable Scheme} usb-modeswitch-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17529 +#: guix-git/doc/guix.texi:17891 #, fuzzy msgid "This is the service type for the @uref{https://www.draisberghof.de/usb_modeswitch/, USB_ModeSwitch} service. The value for this service type is a @code{usb-modeswitch-configuration} record." msgstr "Este es el tipo de servicio para el servicio @uref{https://www.draisberghof.de/usb_modeswitch/, USB_ModeSwitch}. El valor para este tipo de servicio es un registro @code{usb-modeswitch-configuration}." #. type: defvr -#: guix-git/doc/guix.texi:17535 +#: guix-git/doc/guix.texi:17897 msgid "When plugged in, some USB modems (and other USB devices) initially present themselves as a read-only storage medium and not as a modem. They need to be @dfn{modeswitched} before they are usable. The USB_ModeSwitch service type installs udev rules to automatically modeswitch these devices when they are plugged in." msgstr "Cuando se conectan, algunos modem USB (y otros dispositivos USB) se presentan inicialmente como medios de almacenamiento de sólo-lectura y no como un modem. Deben @dfn{cambiar de modo} antes de poder usarse. El tipo de servicio USB_ModeSwitch instala reglas de udev para cambiar automáticamente de modo cuando se conecten estos dispositivos." #. type: deftp -#: guix-git/doc/guix.texi:17540 +#: guix-git/doc/guix.texi:17902 #, no-wrap msgid "{Data Type} usb-modeswitch-configuration" msgstr "{Tipo de datos} usb-modeswitch-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17542 +#: guix-git/doc/guix.texi:17904 msgid "Data type representing the configuration of USB_ModeSwitch." msgstr "Tipo de datos que representa la configuración de USB_ModeSwitch." #. type: item -#: guix-git/doc/guix.texi:17544 +#: guix-git/doc/guix.texi:17906 #, no-wrap msgid "@code{usb-modeswitch} (default: @code{usb-modeswitch})" msgstr "@code{usb-modeswitch} (predeterminado: @code{usb-modeswitch})" #. type: table -#: guix-git/doc/guix.texi:17546 +#: guix-git/doc/guix.texi:17908 msgid "The USB_ModeSwitch package providing the binaries for modeswitching." msgstr "El paquete USB_ModeSwitch que proporciona los binarios para el cambio de modo." #. type: item -#: guix-git/doc/guix.texi:17547 +#: guix-git/doc/guix.texi:17909 #, no-wrap msgid "@code{usb-modeswitch-data} (default: @code{usb-modeswitch-data})" msgstr "@code{usb-modeswitch-data} (predeterminado: @code{usb-modeswitch-data})" #. type: table -#: guix-git/doc/guix.texi:17550 +#: guix-git/doc/guix.texi:17912 msgid "The package providing the device data and udev rules file used by USB_ModeSwitch." msgstr "El paquete que proporciona los datos de dispositivos y las reglas de udev usadas por USB_ModeSwitch." #. type: item -#: guix-git/doc/guix.texi:17551 +#: guix-git/doc/guix.texi:17913 #, no-wrap msgid "@code{config-file} (default: @code{#~(string-append #$usb-modeswitch:dispatcher \"/etc/usb_modeswitch.conf\")})" msgstr "@code{config-file} (predeterminado: @code{#~(string-append #$usb-modeswitch:dispatcher \"/etc/usb_modeswitch.conf\")})" #. type: table -#: guix-git/doc/guix.texi:17556 +#: guix-git/doc/guix.texi:17918 msgid "Which config file to use for the USB_ModeSwitch dispatcher. By default the config file shipped with USB_ModeSwitch is used which disables logging to @file{/var/log} among other default settings. If set to @code{#f}, no config file is used." msgstr "Archivo de configuración usado para el gestor de eventos (dispatcher) de USB_ModeSwitch. De manera predeterminada se usa el archivo que viene con USB_ModeSwitch, que deshabilita el registro en @file{/var/log} junto a otras configuraciones. Si se proporciona @code{#f} no se usa ningún archivo de configuración. " #. type: Plain text -#: guix-git/doc/guix.texi:17570 +#: guix-git/doc/guix.texi:17932 msgid "The @code{(gnu services networking)} module discussed in the previous section provides services for more advanced setups: providing a DHCP service for others to use, filtering packets with iptables or nftables, running a WiFi access point with @command{hostapd}, running the @command{inetd} ``superdaemon'', and more. This section describes those." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17571 +#: guix-git/doc/guix.texi:17933 #, no-wrap msgid "{Scheme Procedure} dhcpd-service-type" msgstr "{Procedimiento Scheme} dhcpd-service-type" #. type: deffn -#: guix-git/doc/guix.texi:17575 +#: guix-git/doc/guix.texi:17937 msgid "This type defines a service that runs a DHCP daemon. To create a service of this type, you must supply a @code{}. For example:" msgstr "Este tipo define un servicio que ejecuta el daemon DHCP. Para crear un servicio de este tipo debe proporcionar un objeto @code{}. Por ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:17581 +#: guix-git/doc/guix.texi:17943 #, no-wrap msgid "" "(service dhcpd-service-type\n" @@ -33522,98 +34233,98 @@ msgstr "" " (interfaces '(\"enp0s25\"))))\n" #. type: deftp -#: guix-git/doc/guix.texi:17584 +#: guix-git/doc/guix.texi:17946 #, no-wrap msgid "{Data Type} dhcpd-configuration" msgstr "{Tipo de datos} dhcpd-configuration" #. type: item -#: guix-git/doc/guix.texi:17586 +#: guix-git/doc/guix.texi:17948 #, no-wrap msgid "@code{package} (default: @code{isc-dhcp})" msgstr "@code{package} (predeterminado: @code{isc-dhcp})" #. type: table -#: guix-git/doc/guix.texi:17591 +#: guix-git/doc/guix.texi:17953 msgid "The package that provides the DHCP daemon. This package is expected to provide the daemon at @file{sbin/dhcpd} relative to its output directory. The default package is the @uref{https://www.isc.org/products/DHCP, ISC's DHCP server}." msgstr "El paquete que proporciona el daemon DHCP. Se espera que este paquete proporcione el daemon en @file{sbin/dhcpd} de manera relativa a su directorio de salida. El paquete predeterminado es el @uref{https://www.isc.org/products/DHCP, servidor DHCP de ISC}." # FUZZY #. type: table -#: guix-git/doc/guix.texi:17596 +#: guix-git/doc/guix.texi:17958 msgid "The configuration file to use. This is required. It will be passed to @code{dhcpd} via its @code{-cf} option. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). See @code{man dhcpd.conf} for details on the configuration file syntax." msgstr "El archivo de configuración usado. Esta opción es necesaria. Se le proporcionará a @code{dhcpd} a través de su opción @code{-cf}. Puede ser cualquier objeto ``tipo-archivo'' (@pxref{G-Expressions, objetos ``tipo-archivo''}). Véase @code{man dhcpd.conf} para detalles sobre la sintaxis del archivo de configuración." #. type: item -#: guix-git/doc/guix.texi:17596 +#: guix-git/doc/guix.texi:17958 #, no-wrap msgid "@code{version} (default: @code{\"4\"})" msgstr "@code{version} (predeterminada: @code{\"4\"})" #. type: table -#: guix-git/doc/guix.texi:17601 +#: guix-git/doc/guix.texi:17963 msgid "The DHCP version to use. The ISC DHCP server supports the values ``4'', ``6'', and ``4o6''. These correspond to the @code{dhcpd} program options @code{-4}, @code{-6}, and @code{-4o6}. See @code{man dhcpd} for details." msgstr "La versión DHCP usada. El servidor DHCP de ISC permite los valores ``4'', ``6'' y ``4o6''. Corresponden con las opciones @code{-4}, @code{-6} y @code{-4o6} del programa @code{dhcpd}. Véase @code{man dhcpd} para más detalles." #. type: item -#: guix-git/doc/guix.texi:17601 +#: guix-git/doc/guix.texi:17963 #, no-wrap msgid "@code{run-directory} (default: @code{\"/run/dhcpd\"})" msgstr "@code{run-directory} (predeterminado: @code{\"/run/dhcpd\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:17604 +#: guix-git/doc/guix.texi:17966 msgid "The run directory to use. At service activation time, this directory will be created if it does not exist." msgstr "El directorio de ejecución usado. Durante la activación del servicio se creará en caso de no existir." #. type: item -#: guix-git/doc/guix.texi:17604 +#: guix-git/doc/guix.texi:17966 #, no-wrap msgid "@code{pid-file} (default: @code{\"/run/dhcpd/dhcpd.pid\"})" msgstr "@code{pid-file} (predeterminado: @code{\"/run/dhcpd/dhcpd.pid\"})" #. type: table -#: guix-git/doc/guix.texi:17607 +#: guix-git/doc/guix.texi:17969 msgid "The PID file to use. This corresponds to the @code{-pf} option of @code{dhcpd}. See @code{man dhcpd} for details." msgstr "El archivo de PID usado. Corresponde con la opción @code{-pf} de @code{dhcpd}. Véase @code{man dhcpd} para más detalles." #. type: item -#: guix-git/doc/guix.texi:17607 +#: guix-git/doc/guix.texi:17969 #, no-wrap msgid "@code{interfaces} (default: @code{'()})" msgstr "@code{interfaces} (predeterminadas: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17613 +#: guix-git/doc/guix.texi:17975 msgid "The names of the network interfaces on which dhcpd should listen for broadcasts. If this list is not empty, then its elements (which must be strings) will be appended to the @code{dhcpd} invocation when starting the daemon. It may not be necessary to explicitly specify any interfaces here; see @code{man dhcpd} for details." msgstr "Los nombres de las interfaces de red en las que dhcpd debería esperar retransmisiones. Si la lista no está vacía, entonces sus elementos (que deben ser cadenas) se añadirá a la invocación de @code{dhcpd} cuando se inicie el daemon. Puede no ser necesaria la especificación explícita aquí de ninguna interfaz; véase @code{man dhcpd} para más detalles." #. type: cindex -#: guix-git/doc/guix.texi:17616 +#: guix-git/doc/guix.texi:17978 #, no-wrap msgid "hostapd service, for Wi-Fi access points" msgstr "hostapd, servicio para puntos de acceso inalámbricos" #. type: cindex -#: guix-git/doc/guix.texi:17617 +#: guix-git/doc/guix.texi:17979 #, no-wrap msgid "Wi-Fi access points, hostapd service" msgstr "puntos de acceso inalámbricos, servicio hostapd" #. type: defvr -#: guix-git/doc/guix.texi:17618 +#: guix-git/doc/guix.texi:17980 #, no-wrap msgid "{Scheme Variable} hostapd-service-type" msgstr "{Variable Scheme} hostapd-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17623 +#: guix-git/doc/guix.texi:17985 msgid "This is the service type to run the @uref{https://w1.fi/hostapd/, hostapd} daemon to set up WiFi (IEEE 802.11) access points and authentication servers. Its associated value must be a @code{hostapd-configuration} as shown below:" msgstr "Este es el tipo de servicio que ejecuta el daemon @uref{https://w1.fi/hostapd/, hostapd} para configurar puntos de acceso WiFi (IEEE 802.11) y servidores de identificación. Su valor debe ser un registro @code{hostapd-configuration} como en este ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:17631 +#: guix-git/doc/guix.texi:17993 #, no-wrap msgid "" ";; Use wlan1 to run the access point for \"My Network\".\n" @@ -33631,130 +34342,130 @@ msgstr "" " (channel 12)))\n" #. type: deftp -#: guix-git/doc/guix.texi:17634 +#: guix-git/doc/guix.texi:17996 #, no-wrap msgid "{Data Type} hostapd-configuration" msgstr "{Tipo de datos} hostapd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17637 +#: guix-git/doc/guix.texi:17999 msgid "This data type represents the configuration of the hostapd service, with the following fields:" msgstr "Este tipo de datos representa la configuración del servicio hostapd, y tiene los siguientes campos:" #. type: item -#: guix-git/doc/guix.texi:17639 +#: guix-git/doc/guix.texi:18001 #, no-wrap msgid "@code{package} (default: @code{hostapd})" msgstr "@code{package} (predeterminado: @code{hostapd})" #. type: table -#: guix-git/doc/guix.texi:17641 +#: guix-git/doc/guix.texi:18003 msgid "The hostapd package to use." msgstr "El paquete hostapd usado." #. type: item -#: guix-git/doc/guix.texi:17642 +#: guix-git/doc/guix.texi:18004 #, no-wrap msgid "@code{interface} (default: @code{\"wlan0\"})" msgstr "@code{interface} (predeterminado: @code{\"wlan0\"})" #. type: table -#: guix-git/doc/guix.texi:17644 +#: guix-git/doc/guix.texi:18006 msgid "The network interface to run the WiFi access point." msgstr "La interfaz de red en la que se establece el punto de acceso WiFi." #. type: code{#1} -#: guix-git/doc/guix.texi:17645 +#: guix-git/doc/guix.texi:18007 #, no-wrap msgid "ssid" msgstr "ssid" #. type: table -#: guix-git/doc/guix.texi:17648 +#: guix-git/doc/guix.texi:18010 msgid "The SSID (@dfn{service set identifier}), a string that identifies this network." msgstr "El SSID (@dfn{identificador del servicio}, del inglés ``service set identifier''), una cadena que identifica esta red." #. type: item -#: guix-git/doc/guix.texi:17649 +#: guix-git/doc/guix.texi:18011 #, no-wrap msgid "@code{broadcast-ssid?} (default: @code{#t})" msgstr "@code{broadcast-ssid?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:17651 +#: guix-git/doc/guix.texi:18013 msgid "Whether to broadcast this SSID." msgstr "Determina si se emite este SSID." #. type: item -#: guix-git/doc/guix.texi:17652 +#: guix-git/doc/guix.texi:18014 #, no-wrap msgid "@code{channel} (default: @code{1})" msgstr "@code{channel} (predeterminado: @code{1})" #. type: table -#: guix-git/doc/guix.texi:17654 +#: guix-git/doc/guix.texi:18016 msgid "The WiFi channel to use." msgstr "El canal WiFi usado." #. type: item -#: guix-git/doc/guix.texi:17655 +#: guix-git/doc/guix.texi:18017 #, no-wrap msgid "@code{driver} (default: @code{\"nl80211\"})" msgstr "@code{driver} (predeterminado: @code{\"nl80211\"})" #. type: table -#: guix-git/doc/guix.texi:17659 +#: guix-git/doc/guix.texi:18021 msgid "The driver interface type. @code{\"nl80211\"} is used with all Linux mac80211 drivers. Use @code{\"none\"} if building hostapd as a standalone RADIUS server that does # not control any wireless/wired driver." msgstr "El tipo de controlador de la interfaz. @code{\"nl80211\"} se usa con todos los controladores de mac80211 de Linux. Use @code{\"none\"} si está construyendo hostapd como un servidor RADIUS independiente que no controla ningún controlador de red cableada o inalámbrica." #. type: item -#: guix-git/doc/guix.texi:17660 guix-git/doc/guix.texi:23728 -#: guix-git/doc/guix.texi:26807 +#: guix-git/doc/guix.texi:18022 guix-git/doc/guix.texi:24090 +#: guix-git/doc/guix.texi:27144 #, no-wrap msgid "@code{extra-settings} (default: @code{\"\"})" msgstr "@code{extra-settings} (predeterminado: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:17664 +#: guix-git/doc/guix.texi:18026 msgid "Extra settings to append as-is to the hostapd configuration file. See @uref{https://w1.fi/cgit/hostap/plain/hostapd/hostapd.conf} for the configuration file reference." msgstr "Configuración adicional que se añade literalmente al archivo de configuración de hostapd. Véase @uref{https://w1.fi/cgit/hostap/plain/hostapd/hostapd.conf} para la referencia del archivo de configuración." #. type: defvr -#: guix-git/doc/guix.texi:17667 +#: guix-git/doc/guix.texi:18029 #, no-wrap msgid "{Scheme Variable} simulated-wifi-service-type" msgstr "{Variable Scheme} simulated-wifi-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17674 +#: guix-git/doc/guix.texi:18036 msgid "This is the type of a service to simulate WiFi networking, which can be useful in virtual machines for testing purposes. The service loads the Linux kernel @uref{https://www.kernel.org/doc/html/latest/networking/mac80211_hwsim/mac80211_hwsim.html, @code{mac80211_hwsim} module} and starts hostapd to create a pseudo WiFi network that can be seen on @code{wlan0}, by default." msgstr "Tipo de servicio que simula una red inalámbrica (``WiFi''), lo que puede ser útil en máquinas virtuales para realizar pruebas. El servicio carga el @uref{https://www.kernel.org/doc/html/latest/networking/mac80211_hwsim/mac80211_hwsim.html, módulo @code{mac80211_hwsim}} del núcleo Linux e inicia hostapd para crear una red inalámbrica virtual que puede verse en @code{wlan0}, de manera predeterminada." #. type: defvr -#: guix-git/doc/guix.texi:17676 +#: guix-git/doc/guix.texi:18038 msgid "The service's value is a @code{hostapd-configuration} record." msgstr "El valor de este servicio es un registro @code{hostapd-configuration}." #. type: cindex -#: guix-git/doc/guix.texi:17679 +#: guix-git/doc/guix.texi:18041 #, no-wrap msgid "iptables" msgstr "iptables" #. type: defvr -#: guix-git/doc/guix.texi:17680 +#: guix-git/doc/guix.texi:18042 #, no-wrap msgid "{Scheme Variable} iptables-service-type" msgstr "{Variable Scheme} iptables-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17686 +#: guix-git/doc/guix.texi:18048 msgid "This is the service type to set up an iptables configuration. iptables is a packet filtering framework supported by the Linux kernel. This service supports configuring iptables for both IPv4 and IPv6. A simple example configuration rejecting all incoming connections except those to the ssh port 22 is shown below." msgstr "Este es el tipo de servicio para la aplicación de configuración de iptables. iptables es un entorno de trabajo para el filtrado de paquetes implementado por el núcleo Linux. Este servicio permite la configuración de iptables tanto para IPv4 como IPv6. Un ejemplo simple de cómo rechazar todas las conexiones entrantes excepto aquellas al puerto 22 de ssh se muestra a continuación." # TODO: Revisar #. type: lisp -#: guix-git/doc/guix.texi:17708 +#: guix-git/doc/guix.texi:18070 #, fuzzy, no-wrap #| msgid "" #| "(service iptables-service-type\n" @@ -33817,247 +34528,247 @@ msgstr "" "\"))))\n" #. type: deftp -#: guix-git/doc/guix.texi:17711 +#: guix-git/doc/guix.texi:18073 #, no-wrap msgid "{Data Type} iptables-configuration" msgstr "{Tipo de datos} iptables-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17713 +#: guix-git/doc/guix.texi:18075 msgid "The data type representing the configuration of iptables." msgstr "El tipo de datos que representa la configuración de iptables." #. type: item -#: guix-git/doc/guix.texi:17715 +#: guix-git/doc/guix.texi:18077 #, no-wrap msgid "@code{iptables} (default: @code{iptables})" msgstr "@code{iptables} (predeterminado: @code{iptables})" #. type: table -#: guix-git/doc/guix.texi:17718 +#: guix-git/doc/guix.texi:18080 msgid "The iptables package that provides @code{iptables-restore} and @code{ip6tables-restore}." msgstr "El paquete iptables que proporciona @code{iptables-restore} y @code{ip6tables-restore}." #. type: item -#: guix-git/doc/guix.texi:17718 +#: guix-git/doc/guix.texi:18080 #, no-wrap msgid "@code{ipv4-rules} (default: @code{%iptables-accept-all-rules})" msgstr "@code{ipv4-rules} (predeterminado: @code{%iptables-accept-all-rules})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:17722 +#: guix-git/doc/guix.texi:18084 msgid "The iptables rules to use. It will be passed to @code{iptables-restore}. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "Las reglas de iptables usadas. Se le proporcionarán a @code{iptables-restore}. Puede ser cualquier objeto ``tipo-archivo'' (@pxref{G-Expressions, objetos ``tipo-archivo''})." #. type: item -#: guix-git/doc/guix.texi:17722 +#: guix-git/doc/guix.texi:18084 #, no-wrap msgid "@code{ipv6-rules} (default: @code{%iptables-accept-all-rules})" msgstr "@code{ipv6-rules} (predeterminadas: @code{%iptables-accept-all-rules})" #. type: table -#: guix-git/doc/guix.texi:17726 +#: guix-git/doc/guix.texi:18088 msgid "The ip6tables rules to use. It will be passed to @code{ip6tables-restore}. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "Las reglas de ip6tables usadas. Se le proporcionarán a @code{ip6tables-restore}. Puede ser cualquier objeto ``tipo-archivo'' (@pxref{G-Expressions, objetos ``tipo-archivo''})." #. type: cindex -#: guix-git/doc/guix.texi:17729 +#: guix-git/doc/guix.texi:18091 #, no-wrap msgid "nftables" msgstr "nftables" #. type: defvr -#: guix-git/doc/guix.texi:17730 +#: guix-git/doc/guix.texi:18092 #, no-wrap msgid "{Scheme Variable} nftables-service-type" msgstr "{Variable Scheme} nftables-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17738 +#: guix-git/doc/guix.texi:18100 #, fuzzy msgid "This is the service type to set up a nftables configuration. nftables is a netfilter project that aims to replace the existing iptables, ip6tables, arptables and ebtables framework. It provides a new packet filtering framework, a new user-space utility @command{nft}, and a compatibility layer for iptables. This service comes with a default ruleset @code{%default-nftables-ruleset} that rejecting all incoming connections except those to the ssh port 22. To use it, simply write:" msgstr "Es el tipo de servicio para levantar una configuración de nftables. nftables es un proyecto de netfilter que quiere reemplazar los entornos ya existentes iptables, ip6tables, arptables y ebtables. Proporciona un entorno de filtrado de paquetes nuevo, una utilidad @command{nft} de espacio de usuaria nueva y una capa de compatibilidad con iptables. El servicio viene con un conjunto de reglas predeterminado @code{%default-nftables-ruleset} que rechaza todas las conexiones entrantes excepto las del puerto 22. Para usarlo, simplemente escriba:" #. type: lisp -#: guix-git/doc/guix.texi:17741 +#: guix-git/doc/guix.texi:18103 #, no-wrap msgid "(service nftables-service-type)\n" msgstr "(service nftables-service-type)\n" #. type: deftp -#: guix-git/doc/guix.texi:17744 +#: guix-git/doc/guix.texi:18106 #, no-wrap msgid "{Data Type} nftables-configuration" msgstr "{Tipo de datos} nftables-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17746 +#: guix-git/doc/guix.texi:18108 msgid "The data type representing the configuration of nftables." msgstr "El tipo de datos que representa la configuración de nftables." #. type: item -#: guix-git/doc/guix.texi:17748 +#: guix-git/doc/guix.texi:18110 #, no-wrap msgid "@code{package} (default: @code{nftables})" msgstr "@code{package} (predeterminado: @code{nftables})" #. type: table -#: guix-git/doc/guix.texi:17750 +#: guix-git/doc/guix.texi:18112 msgid "The nftables package that provides @command{nft}." msgstr "El paquete nftables que proporciona @command{nft}." #. type: item -#: guix-git/doc/guix.texi:17750 +#: guix-git/doc/guix.texi:18112 #, no-wrap msgid "@code{ruleset} (default: @code{%default-nftables-ruleset})" msgstr "@code{ruleset} (predeterminados: @code{%default-nftables-ruleset})" #. type: table -#: guix-git/doc/guix.texi:17753 +#: guix-git/doc/guix.texi:18115 msgid "The nftables ruleset to use. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "El conjunto de reglas de nftables usado. Puede ser cualquier objeto ``tipo-archivo'' (@pxref{G-Expressions, objetos ``tipo-archivo''})." #. type: cindex -#: guix-git/doc/guix.texi:17756 +#: guix-git/doc/guix.texi:18118 #, no-wrap msgid "NTP (Network Time Protocol), service" msgstr "NTP (protocolo de tiempo de red), servicio" #. type: cindex -#: guix-git/doc/guix.texi:17757 +#: guix-git/doc/guix.texi:18119 #, no-wrap msgid "ntpd, service for the Network Time Protocol daemon" msgstr "ntpd, servicio para el daemon del protocolo de tiempo de red NTP" #. type: cindex -#: guix-git/doc/guix.texi:17758 +#: guix-git/doc/guix.texi:18120 #, no-wrap msgid "real time clock" msgstr "reloj de tiempo real" #. type: defvr -#: guix-git/doc/guix.texi:17759 +#: guix-git/doc/guix.texi:18121 #, no-wrap msgid "{Scheme Variable} ntp-service-type" msgstr "{Variable Scheme} ntp-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17763 +#: guix-git/doc/guix.texi:18125 msgid "This is the type of the service running the @uref{https://www.ntp.org, Network Time Protocol (NTP)} daemon, @command{ntpd}. The daemon will keep the system clock synchronized with that of the specified NTP servers." msgstr "Este es el tipo del servicio que ejecuta el daemon del @uref{https://www.ntp.org, protocolo de tiempo en red (NTP)}, @command{ntpd}. El daemon mantendrá el reloj del sistema sincronizado con el de los servidores NTP especificados." #. type: defvr -#: guix-git/doc/guix.texi:17766 +#: guix-git/doc/guix.texi:18128 msgid "The value of this service is an @code{ntpd-configuration} object, as described below." msgstr "El valor de este servicio es un objeto @code{ntpd-configuration}, como se describe a continuación." #. type: deftp -#: guix-git/doc/guix.texi:17768 +#: guix-git/doc/guix.texi:18130 #, no-wrap msgid "{Data Type} ntp-configuration" msgstr "{Tipo de datos} ntp-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17770 +#: guix-git/doc/guix.texi:18132 msgid "This is the data type for the NTP service configuration." msgstr "Este es el tipo de datos para la configuración del servicio NTP." #. type: item -#: guix-git/doc/guix.texi:17772 +#: guix-git/doc/guix.texi:18134 #, no-wrap msgid "@code{servers} (default: @code{%ntp-servers})" msgstr "@code{servers} (predeterminados: @code{%ntp-servers})" #. type: table -#: guix-git/doc/guix.texi:17776 +#: guix-git/doc/guix.texi:18138 msgid "This is the list of servers (@code{} records) with which @command{ntpd} will be synchronized. See the @code{ntp-server} data type definition below." msgstr "La lista de servidores (registros @code{}) con los que la herramienta @command{ntpd} se sincronizará. Véase la información sobre el tipo de datos @code{ntp-server} a continuación." #. type: item -#: guix-git/doc/guix.texi:17777 +#: guix-git/doc/guix.texi:18139 #, no-wrap msgid "@code{allow-large-adjustment?} (default: @code{#t})" msgstr "@code{allow-large-adjustment?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:17780 +#: guix-git/doc/guix.texi:18142 msgid "This determines whether @command{ntpd} is allowed to make an initial adjustment of more than 1,000 seconds." msgstr "Esto determina si se le permite a @command{ntpd} realizar un ajuste inicial de más de 1000 segundos." #. type: item -#: guix-git/doc/guix.texi:17781 +#: guix-git/doc/guix.texi:18143 #, no-wrap msgid "@code{ntp} (default: @code{ntp})" msgstr "@code{ntp} (predeterminado: @code{ntp})" #. type: table -#: guix-git/doc/guix.texi:17783 +#: guix-git/doc/guix.texi:18145 msgid "The NTP package to use." msgstr "El paquete NTP usado." #. type: defvr -#: guix-git/doc/guix.texi:17786 +#: guix-git/doc/guix.texi:18148 #, no-wrap msgid "{Scheme Variable} %ntp-servers" msgstr "{Variable Scheme} %ntp-servers" # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:17789 +#: guix-git/doc/guix.texi:18151 msgid "List of host names used as the default NTP servers. These are servers of the @uref{https://www.ntppool.org/en/, NTP Pool Project}." msgstr "Lista de nombres de máquinas usadas como servidores NTP predeterminados. Son servidores del @uref{https://www.ntppool.org/en/, NTP Pool Project}." #. type: deftp -#: guix-git/doc/guix.texi:17791 +#: guix-git/doc/guix.texi:18153 #, no-wrap msgid "{Data Type} ntp-server" msgstr "{Tipo de datos} ntp-server" #. type: deftp -#: guix-git/doc/guix.texi:17793 +#: guix-git/doc/guix.texi:18155 msgid "The data type representing the configuration of a NTP server." msgstr "Tipo de datos que representa la configuración de un servidor NTP." #. type: item -#: guix-git/doc/guix.texi:17795 +#: guix-git/doc/guix.texi:18157 #, no-wrap msgid "@code{type} (default: @code{'server})" msgstr "@code{type} (predeterminado: @code{'server})" #. type: table -#: guix-git/doc/guix.texi:17798 +#: guix-git/doc/guix.texi:18160 #, fuzzy msgid "The type of the NTP server, given as a symbol. One of @code{'pool}, @code{'server}, @code{'peer}, @code{'broadcast} or @code{'manycastclient}." msgstr "El tipo del servidor NTP, proporcionado como un símbolo. Puede ser @code{'pool}, @code{'server}, @code{'peer}, @code{'broadcast} o @code{'manycastclient}." # FUZZY #. type: code{#1} -#: guix-git/doc/guix.texi:17799 +#: guix-git/doc/guix.texi:18161 #, no-wrap msgid "address" msgstr "address" #. type: table -#: guix-git/doc/guix.texi:17801 +#: guix-git/doc/guix.texi:18163 msgid "The address of the server, as a string." msgstr "La dirección del servidor, como una cadena." #. type: code{#1} -#: guix-git/doc/guix.texi:17802 guix-git/doc/guix.texi:33774 -#: guix-git/doc/guix.texi:33794 +#: guix-git/doc/guix.texi:18164 guix-git/doc/guix.texi:34211 +#: guix-git/doc/guix.texi:34231 #, no-wrap msgid "options" msgstr "options" #. type: table -#: guix-git/doc/guix.texi:17807 +#: guix-git/doc/guix.texi:18169 #, fuzzy msgid "NTPD options to use with that specific server, given as a list of option names and/or of option names and values tuples. The following example define a server to use with the options @option{iburst} and @option{prefer}, as well as @option{version} 3 and a @option{maxpoll} time of 16 seconds." msgstr "Opciones de NTPD usadas en ese servidor específico, proporcionada como una lista de nombres de opciones y/o tuplas de nombre y valor. El siguiente ejemplo define un servidor con el que se usan las opciones @option{iburst} y @option{prefer}, así como @option{version} 3 y un tiempo de 16 segundos para @option{maxpoll}." #. type: example -#: guix-git/doc/guix.texi:17813 +#: guix-git/doc/guix.texi:18175 #, no-wrap msgid "" "(ntp-server\n" @@ -34071,24 +34782,24 @@ msgstr "" " (options `(iburst (version 3) (maxpoll 16) prefer))))\n" #. type: cindex -#: guix-git/doc/guix.texi:17817 +#: guix-git/doc/guix.texi:18179 #, no-wrap msgid "OpenNTPD" msgstr "OpenNTPD" #. type: deffn -#: guix-git/doc/guix.texi:17818 +#: guix-git/doc/guix.texi:18180 #, no-wrap msgid "{Scheme Procedure} openntpd-service-type" msgstr "{Procedimiento Scheme} openntpd-service-type" #. type: deffn -#: guix-git/doc/guix.texi:17822 +#: guix-git/doc/guix.texi:18184 msgid "Run the @command{ntpd}, the Network Time Protocol (NTP) daemon, as implemented by @uref{http://www.openntpd.org, OpenNTPD}. The daemon will keep the system clock synchronized with that of the given servers." msgstr "Ejecuta @command{ntpd}, el daemon del protocolo de tiempo en red (NTP), implementado por @uref{http://www.openntpd.org, OpenNTPD}. El daemon mantendrá el reloj del sistema sincronizado con el de los servidores proporcionados." #. type: lisp -#: guix-git/doc/guix.texi:17831 +#: guix-git/doc/guix.texi:18193 #, fuzzy, no-wrap msgid "" "(service\n" @@ -34111,91 +34822,91 @@ msgstr "" "\n" #. type: defvr -#: guix-git/doc/guix.texi:17835 +#: guix-git/doc/guix.texi:18197 #, no-wrap msgid "{Scheme Variable} %openntpd-servers" msgstr "{Variable Scheme} %openntpd-servers" #. type: defvr -#: guix-git/doc/guix.texi:17838 +#: guix-git/doc/guix.texi:18200 msgid "This variable is a list of the server addresses defined in @code{%ntp-servers}." msgstr "Esta variable es una lista de las direcciones de servidores definidos en @code{%ntp-servers}." #. type: deftp -#: guix-git/doc/guix.texi:17840 +#: guix-git/doc/guix.texi:18202 #, no-wrap msgid "{Data Type} openntpd-configuration" msgstr "{Tipo de datos} openntpd-configuration" #. type: item -#: guix-git/doc/guix.texi:17842 +#: guix-git/doc/guix.texi:18204 #, no-wrap msgid "@code{openntpd} (default: @code{(file-append openntpd \"/sbin/ntpd\")})" msgstr "@code{openntpd} (predeterminado: @code{(file-append openntpd \"/sbin/ntpd\")})" #. type: table -#: guix-git/doc/guix.texi:17844 +#: guix-git/doc/guix.texi:18206 msgid "The openntpd executable to use." msgstr "El ejecutable openntpd usado." #. type: item -#: guix-git/doc/guix.texi:17844 +#: guix-git/doc/guix.texi:18206 #, no-wrap msgid "@code{listen-on} (default: @code{'(\"127.0.0.1\" \"::1\")})" msgstr "@code{listen-on} (predeterminadas: @code{'(\"127.0.0.1\" \"::1\")})" #. type: table -#: guix-git/doc/guix.texi:17846 +#: guix-git/doc/guix.texi:18208 msgid "A list of local IP addresses or hostnames the ntpd daemon should listen on." msgstr "Una lista de direcciones IP o nombres de máquina en los que el daemon ntpd debe escuchar conexiones." #. type: item -#: guix-git/doc/guix.texi:17846 +#: guix-git/doc/guix.texi:18208 #, no-wrap msgid "@code{query-from} (default: @code{'()})" msgstr "@code{query-from} (predeterminadas: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17848 +#: guix-git/doc/guix.texi:18210 msgid "A list of local IP address the ntpd daemon should use for outgoing queries." msgstr "Una lista de direcciones IP locales que el daemon ntpd debe usar para consultas salientes." #. type: item -#: guix-git/doc/guix.texi:17848 +#: guix-git/doc/guix.texi:18210 #, no-wrap msgid "@code{sensor} (default: @code{'()})" msgstr "@code{sensor} (predeterminados: @code{'()})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:17853 +#: guix-git/doc/guix.texi:18215 msgid "Specify a list of timedelta sensor devices ntpd should use. @code{ntpd} will listen to each sensor that actually exists and ignore non-existent ones. See @uref{https://man.openbsd.org/ntpd.conf, upstream documentation} for more information." msgstr "Especifica una lista de dispositivos de sensores de tiempo de ntpd debería usar. @code{ntpd} escuchará cada sensor que realmente exista e ignora los que no. Véase la @uref{https://man.openbsd.org/ntpd.conf, documentación de las desarrolladoras originales} para más información." #. type: item -#: guix-git/doc/guix.texi:17853 +#: guix-git/doc/guix.texi:18215 #, no-wrap msgid "@code{server} (default: @code{'()})" msgstr "@code{server} (predeterminado: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17855 +#: guix-git/doc/guix.texi:18217 msgid "Specify a list of IP addresses or hostnames of NTP servers to synchronize to." msgstr "Especifica una lista de direcciones IP o nombres de máquina de servidores NTP con los que sincronizarse." #. type: item -#: guix-git/doc/guix.texi:17855 +#: guix-git/doc/guix.texi:18217 #, no-wrap msgid "@code{servers} (default: @code{%openntp-servers})" msgstr "@code{servers} (predeterminada: @code{%openntp-servers})" #. type: table -#: guix-git/doc/guix.texi:17857 +#: guix-git/doc/guix.texi:18219 msgid "Specify a list of IP addresses or hostnames of NTP pools to synchronize to." msgstr "Una lista de direcciones IP o nombres de máquina con los que el daemon ntpd se debe sincronizar." #. type: item -#: guix-git/doc/guix.texi:17857 +#: guix-git/doc/guix.texi:18219 #, no-wrap msgid "@code{constraint-from} (default: @code{'()})" msgstr "@code{constraint-from} (predeterminado: @code{'()})" @@ -34203,46 +34914,46 @@ msgstr "@code{constraint-from} (predeterminado: @code{'()})" # FUZZY # TODO (MAAV): Reescribir probablemente. #. type: table -#: guix-git/doc/guix.texi:17864 +#: guix-git/doc/guix.texi:18226 msgid "@code{ntpd} can be configured to query the ‘Date’ from trusted HTTPS servers via TLS. This time information is not used for precision but acts as an authenticated constraint, thereby reducing the impact of unauthenticated NTP man-in-the-middle attacks. Specify a list of URLs, IP addresses or hostnames of HTTPS servers to provide a constraint." msgstr "@code{ntpd} puede configurarse para que solicite la fecha a través del campo ``Date'' de servidores HTTPS en los que se confíe a través de TLS. Esta información de tiempo no se usa por precisión pero actúa como una condición verificada, por tanto reduciendo el impacto de ataques mediante la intervención del tráfico con servidores NTP no verificados. Especifica una lista de URL, direcciones IP o nombres de máquina de servidores HTTPS que proporcionarán la condición." #. type: item -#: guix-git/doc/guix.texi:17864 +#: guix-git/doc/guix.texi:18226 #, no-wrap msgid "@code{constraints-from} (default: @code{'()})" msgstr "@code{constraints-from} (predeterminadas: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17868 +#: guix-git/doc/guix.texi:18230 msgid "As with constraint from, specify a list of URLs, IP addresses or hostnames of HTTPS servers to provide a constraint. Should the hostname resolve to multiple IP addresses, @code{ntpd} will calculate a median constraint from all of them." msgstr "Como en @var{constraint-from}, proporciona una lista de URL, direcciones IP o nombres de máquina de servidores HTTP para proporcionar la condición. En caso de que el nombre de máquina resuelva en múltiples direcciones IP, @code{ntpd} calculará la condición mediana de todas ellas." #. type: cindex -#: guix-git/doc/guix.texi:17871 +#: guix-git/doc/guix.texi:18233 #, no-wrap msgid "inetd" msgstr "inetd" #. type: deffn -#: guix-git/doc/guix.texi:17872 +#: guix-git/doc/guix.texi:18234 #, no-wrap msgid "{Scheme variable} inetd-service-type" msgstr "{Variable Scheme} inetd-service-type" #. type: deffn -#: guix-git/doc/guix.texi:17877 +#: guix-git/doc/guix.texi:18239 msgid "This service runs the @command{inetd} (@pxref{inetd invocation,,, inetutils, GNU Inetutils}) daemon. @command{inetd} listens for connections on internet sockets, and lazily starts the specified server program when a connection is made on one of these sockets." msgstr "Este servicio ejecuta el daemon @command{inetd} (@pxref{inetd invocation,,, inetutils, GNU Inetutils}). @command{inetd} escucha conexiones en sockets de internet, e inicia bajo demanda el programa servidor cuando se realiza una conexión en uno de esos sockets." # FUZZY #. type: deffn -#: guix-git/doc/guix.texi:17883 +#: guix-git/doc/guix.texi:18245 msgid "The value of this service is an @code{inetd-configuration} object. The following example configures the @command{inetd} daemon to provide the built-in @command{echo} service, as well as an smtp service which forwards smtp traffic over ssh to a server @code{smtp-server} behind a gateway @code{hostname}:" msgstr "El valor de este servicio es un objeto @code{inetd-configuration}. El ejemplo siguiente configura el daemon @command{inetd} para proporcionar el servicio @command{echo} implementado por él mismo, así como un servicio smtp que reenvía el tráfico smtp por ssh a un servidor @code{servidor-smtp} tras la pasarela @code{máquina}:" #. type: lisp -#: guix-git/doc/guix.texi:17906 +#: guix-git/doc/guix.texi:18268 #, no-wrap msgid "" "(service\n" @@ -34290,206 +35001,206 @@ msgstr "" " \"-W\" \"servidor-smtp:25\" \"usuaria@@maquina\")))))))\n" #. type: deffn -#: guix-git/doc/guix.texi:17909 +#: guix-git/doc/guix.texi:18271 msgid "See below for more details about @code{inetd-configuration}." msgstr "A continuación se proporcionan más detalles acerca de @code{inetd-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:17911 +#: guix-git/doc/guix.texi:18273 #, no-wrap msgid "{Data Type} inetd-configuration" msgstr "{Tipo de datos} inetd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17913 +#: guix-git/doc/guix.texi:18275 msgid "Data type representing the configuration of @command{inetd}." msgstr "Tipo de datos que representa la configuración de @command{inetd}." #. type: item -#: guix-git/doc/guix.texi:17915 +#: guix-git/doc/guix.texi:18277 #, no-wrap msgid "@code{program} (default: @code{(file-append inetutils \"/libexec/inetd\")})" msgstr "@code{program} (predeterminado: @code{(file-append inetutils \"/libexec/inetd\")})" #. type: table -#: guix-git/doc/guix.texi:17917 +#: guix-git/doc/guix.texi:18279 msgid "The @command{inetd} executable to use." msgstr "El ejecutable @command{inetd} usado." #. type: item -#: guix-git/doc/guix.texi:17918 guix-git/doc/guix.texi:27655 +#: guix-git/doc/guix.texi:18280 guix-git/doc/guix.texi:27992 #, no-wrap msgid "@code{entries} (default: @code{'()})" msgstr "@code{entries} (predeterminadas: @code{'()})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:17921 +#: guix-git/doc/guix.texi:18283 msgid "A list of @command{inetd} service entries. Each entry should be created by the @code{inetd-entry} constructor." msgstr "Una lista de entradas de servicio de @command{inetd}. Cada entrada debe crearse con el constructor @code{inted-entry}." #. type: deftp -#: guix-git/doc/guix.texi:17924 +#: guix-git/doc/guix.texi:18286 #, no-wrap msgid "{Data Type} inetd-entry" msgstr "{Tipo de datos} inetd-entry" #. type: deftp -#: guix-git/doc/guix.texi:17928 +#: guix-git/doc/guix.texi:18290 msgid "Data type representing an entry in the @command{inetd} configuration. Each entry corresponds to a socket where @command{inetd} will listen for requests." msgstr "Tipo de datos que representa una entrada en la configuración de @command{inetd}. Cada entrada corresponde a un socket en el que @command{inetd} escuchará a la espera de peticiones." #. type: item -#: guix-git/doc/guix.texi:17930 +#: guix-git/doc/guix.texi:18292 #, no-wrap msgid "@code{node} (default: @code{#f})" msgstr "@code{node} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:17935 +#: guix-git/doc/guix.texi:18297 msgid "Optional string, a comma-separated list of local addresses @command{inetd} should use when listening for this service. @xref{Configuration file,,, inetutils, GNU Inetutils} for a complete description of all options." msgstr "Cadena opcional, una lista separada por comas de direcciones locales que @command{inetd} debería usar cuando se escuche para este servicio. @xref{Configuration file,,, inetutils, GNU Inetutils} para una descripción completa de todas las opciones." #. type: table -#: guix-git/doc/guix.texi:17937 +#: guix-git/doc/guix.texi:18299 msgid "A string, the name must correspond to an entry in @code{/etc/services}." msgstr "Una cadena, el nombre debe corresponder con una entrada en @code{/etc/services}." #. type: code{#1} -#: guix-git/doc/guix.texi:17937 +#: guix-git/doc/guix.texi:18299 #, no-wrap msgid "socket-type" msgstr "socket-type" #. type: table -#: guix-git/doc/guix.texi:17940 +#: guix-git/doc/guix.texi:18302 msgid "One of @code{'stream}, @code{'dgram}, @code{'raw}, @code{'rdm} or @code{'seqpacket}." msgstr "Puede ser @code{'stream}, @code{'dgram}, @code{'raw}, @code{'rdm} o @code{'seqpacket}." #. type: code{#1} -#: guix-git/doc/guix.texi:17940 +#: guix-git/doc/guix.texi:18302 #, no-wrap msgid "protocol" msgstr "protocol" # FUZZY #. type: table -#: guix-git/doc/guix.texi:17942 +#: guix-git/doc/guix.texi:18304 msgid "A string, must correspond to an entry in @code{/etc/protocols}." msgstr "Una cadena, debe corresponder con una entrada en @code{/etc/protocols}." #. type: item -#: guix-git/doc/guix.texi:17942 +#: guix-git/doc/guix.texi:18304 #, no-wrap msgid "@code{wait?} (default: @code{#t})" msgstr "@code{wait?} (predeterminado: @code{#t})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:17945 +#: guix-git/doc/guix.texi:18307 msgid "Whether @command{inetd} should wait for the server to exit before listening to new service requests." msgstr "Si @command{inetd} debe esperar la salida del servidor antes de reiniciar la escucha de nuevas peticiones de servicio." #. type: table -#: guix-git/doc/guix.texi:17950 +#: guix-git/doc/guix.texi:18312 msgid "A string containing the user (and, optionally, group) name of the user as whom the server should run. The group name can be specified in a suffix, separated by a colon or period, i.e.@: @code{\"user\"}, @code{\"user:group\"} or @code{\"user.group\"}." msgstr "Una cadena que contiene el nombre (y, opcionalmente, el grupo) de la usuaria como la que se deberá ejecutar el servidor. El nombe de grupo se puede especificar en un sufijo, separado por dos puntos o un punto normal, es decir @code{\"usuaria\"}, @code{\"usuaria:grupo\"} o @code{\"usuaria.grupo\"}." #. type: item -#: guix-git/doc/guix.texi:17950 +#: guix-git/doc/guix.texi:18312 #, no-wrap msgid "@code{program} (default: @code{\"internal\"})" msgstr "@code{program} (predeterminado: @code{\"internal\"})" #. type: table -#: guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:18315 msgid "The server program which will serve the requests, or @code{\"internal\"} if @command{inetd} should use a built-in service." msgstr "El programa servidor que recibirá las peticiones, o @code{\"internal\"} si @command{inetd} debería usar un servicio implementado internamente." #. type: table -#: guix-git/doc/guix.texi:17958 +#: guix-git/doc/guix.texi:18320 msgid "A list strings or file-like objects, which are the server program's arguments, starting with the zeroth argument, i.e.@: the name of the program itself. For @command{inetd}'s internal services, this entry must be @code{'()} or @code{'(\"internal\")}." msgstr "Una lista de cadenas u objetos ``tipo-archivo'', que serán los parámetros del programa servidor, empezando con el parámetro 0, es decir, el nombre del programa en sí mismo. Para los servicios internos de @command{inetd}, esta entrada debe ser @code{'()} o @code{'(\"internal\")}." #. type: deftp -#: guix-git/doc/guix.texi:17962 +#: guix-git/doc/guix.texi:18324 msgid "@xref{Configuration file,,, inetutils, GNU Inetutils} for a more detailed discussion of each configuration field." msgstr "@xref{Configuration file,,, inetutils, GNU Inetutils}, para una información más detallada sobre cada campo de la configuración." #. type: cindex -#: guix-git/doc/guix.texi:17964 +#: guix-git/doc/guix.texi:18326 #, no-wrap msgid "opendht, distributed hash table network service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17965 +#: guix-git/doc/guix.texi:18327 #, no-wrap msgid "dhtproxy, for use with jami" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17966 +#: guix-git/doc/guix.texi:18328 #, fuzzy, no-wrap #| msgid "{Scheme Variable} openssh-service-type" msgid "{Scheme Variable} opendht-service-type" msgstr "{Variable Scheme} openssh-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17971 +#: guix-git/doc/guix.texi:18333 msgid "This is the type of the service running a @uref{https://opendht.net, OpenDHT} node, @command{dhtnode}. The daemon can be used to host your own proxy service to the distributed hash table (DHT), for example to connect to with Jami, among other applications." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:17981 +#: guix-git/doc/guix.texi:18343 msgid "When using the OpenDHT proxy server, the IP addresses it ``sees'' from the clients should be addresses reachable from other peers. In practice this means that a publicly reachable address is best suited for a proxy server, outside of your private network. For example, hosting the proxy server on a IPv4 private local network and exposing it via port forwarding could work for external peers, but peers local to the proxy would have their private addresses shared with the external peers, leading to connectivity problems." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17985 +#: guix-git/doc/guix.texi:18347 #, fuzzy #| msgid "The value of this service is an @code{ntpd-configuration} object, as described below." msgid "The value of this service is a @code{opendht-configuration} object, as described below." msgstr "El valor de este servicio es un objeto @code{ntpd-configuration}, como se describe a continuación." #. type: deftp -#: guix-git/doc/guix.texi:17987 +#: guix-git/doc/guix.texi:18349 #, fuzzy, no-wrap #| msgid "{Data Type} openssh-configuration" msgid "{Data Type} opendht-configuration" msgstr "{Tipo de datos} openssh-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17989 +#: guix-git/doc/guix.texi:18351 #, fuzzy #| msgid "This is the data type for the NTP service configuration." msgid "This is the data type for the OpenDHT service configuration." msgstr "Este es el tipo de datos para la configuración del servicio NTP." #. type: deftp -#: guix-git/doc/guix.texi:17994 +#: guix-git/doc/guix.texi:18356 #, fuzzy #| msgid "Available @code{dict-configuration} fields are:" msgid "Available @code{opendht-configuration} fields are:" msgstr "Los campos disponibles de @code{dict-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:17995 +#: guix-git/doc/guix.texi:18357 #, fuzzy, no-wrap #| msgid "{@code{openvpn-client-configuration} parameter} package openvpn" msgid "{@code{opendht-configuration} parameter} package opendht" msgstr "{parámetro de @code{openvpn-client-configuration}} package openvpn" #. type: deftypevr -#: guix-git/doc/guix.texi:17997 +#: guix-git/doc/guix.texi:18359 #, fuzzy #| msgid "@code{webssh} package to use." msgid "The @code{opendht} package to use." msgstr "Paquete @code{webssh} usado." #. type: deftypevr -#: guix-git/doc/guix.texi:18000 +#: guix-git/doc/guix.texi:18362 #, fuzzy, no-wrap #| msgid "{@code{openvpn-client-configuration} parameter} boolean persist-key?" msgid "{@code{opendht-configuration} parameter} boolean peer-discovery?" @@ -34497,290 +35208,292 @@ msgstr "{parámetro de @code{openvpn-client-configuration}} boolean persist-key? # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:18002 +#: guix-git/doc/guix.texi:18364 #, fuzzy #| msgid "Whether to enable the built-in TFTP server." msgid "Whether to enable the multicast local peer discovery mechanism." msgstr "Determina si se activa el servidor TFTP incluido." #. type: deftypevr -#: guix-git/doc/guix.texi:18004 guix-git/doc/guix.texi:18012 -#: guix-git/doc/guix.texi:18020 guix-git/doc/guix.texi:19712 -#: guix-git/doc/guix.texi:19788 guix-git/doc/guix.texi:19830 -#: guix-git/doc/guix.texi:19850 guix-git/doc/guix.texi:19856 -#: guix-git/doc/guix.texi:19872 guix-git/doc/guix.texi:19960 -#: guix-git/doc/guix.texi:20048 guix-git/doc/guix.texi:20361 -#: guix-git/doc/guix.texi:20374 guix-git/doc/guix.texi:21492 -#: guix-git/doc/guix.texi:22970 guix-git/doc/guix.texi:23076 -#: guix-git/doc/guix.texi:23141 guix-git/doc/guix.texi:23150 -#: guix-git/doc/guix.texi:24383 guix-git/doc/guix.texi:24427 -#: guix-git/doc/guix.texi:24444 guix-git/doc/guix.texi:24452 -#: guix-git/doc/guix.texi:24467 guix-git/doc/guix.texi:24485 -#: guix-git/doc/guix.texi:24509 guix-git/doc/guix.texi:24562 -#: guix-git/doc/guix.texi:24695 guix-git/doc/guix.texi:24729 -#: guix-git/doc/guix.texi:24765 guix-git/doc/guix.texi:24781 -#: guix-git/doc/guix.texi:24809 guix-git/doc/guix.texi:24870 -#: guix-git/doc/guix.texi:24953 guix-git/doc/guix.texi:28367 -#: guix-git/doc/guix.texi:28381 guix-git/doc/guix.texi:28403 -#: guix-git/doc/guix.texi:28522 guix-git/doc/guix.texi:28536 -#: guix-git/doc/guix.texi:28557 guix-git/doc/guix.texi:28578 -#: guix-git/doc/guix.texi:28585 guix-git/doc/guix.texi:28630 -#: guix-git/doc/guix.texi:28637 guix-git/doc/guix.texi:29426 -#: guix-git/doc/guix.texi:29440 guix-git/doc/guix.texi:29612 -#: guix-git/doc/guix.texi:29657 guix-git/doc/guix.texi:29744 -#: guix-git/doc/guix.texi:29946 guix-git/doc/guix.texi:29979 -#: guix-git/doc/guix.texi:30119 guix-git/doc/guix.texi:30130 -#: guix-git/doc/guix.texi:30381 guix-git/doc/guix.texi:31900 -#: guix-git/doc/guix.texi:31909 guix-git/doc/guix.texi:31917 -#: guix-git/doc/guix.texi:31925 guix-git/doc/guix.texi:31941 -#: guix-git/doc/guix.texi:31957 guix-git/doc/guix.texi:31965 -#: guix-git/doc/guix.texi:31973 guix-git/doc/guix.texi:31982 -#: guix-git/doc/guix.texi:31991 guix-git/doc/guix.texi:32007 -#: guix-git/doc/guix.texi:32071 guix-git/doc/guix.texi:32177 -#: guix-git/doc/guix.texi:32185 guix-git/doc/guix.texi:32193 -#: guix-git/doc/guix.texi:32218 guix-git/doc/guix.texi:32272 -#: guix-git/doc/guix.texi:32320 guix-git/doc/guix.texi:32521 -#: guix-git/doc/guix.texi:32528 +#: guix-git/doc/guix.texi:18366 guix-git/doc/guix.texi:18374 +#: guix-git/doc/guix.texi:18382 guix-git/doc/guix.texi:20074 +#: guix-git/doc/guix.texi:20150 guix-git/doc/guix.texi:20192 +#: guix-git/doc/guix.texi:20212 guix-git/doc/guix.texi:20218 +#: guix-git/doc/guix.texi:20234 guix-git/doc/guix.texi:20322 +#: guix-git/doc/guix.texi:20410 guix-git/doc/guix.texi:20723 +#: guix-git/doc/guix.texi:20736 guix-git/doc/guix.texi:21854 +#: guix-git/doc/guix.texi:23332 guix-git/doc/guix.texi:23438 +#: guix-git/doc/guix.texi:23503 guix-git/doc/guix.texi:23512 +#: guix-git/doc/guix.texi:24745 guix-git/doc/guix.texi:24789 +#: guix-git/doc/guix.texi:24806 guix-git/doc/guix.texi:24814 +#: guix-git/doc/guix.texi:24829 guix-git/doc/guix.texi:24847 +#: guix-git/doc/guix.texi:24871 guix-git/doc/guix.texi:24924 +#: guix-git/doc/guix.texi:25057 guix-git/doc/guix.texi:25091 +#: guix-git/doc/guix.texi:25127 guix-git/doc/guix.texi:25143 +#: guix-git/doc/guix.texi:25171 guix-git/doc/guix.texi:25232 +#: guix-git/doc/guix.texi:25315 guix-git/doc/guix.texi:28704 +#: guix-git/doc/guix.texi:28718 guix-git/doc/guix.texi:28740 +#: guix-git/doc/guix.texi:28859 guix-git/doc/guix.texi:28873 +#: guix-git/doc/guix.texi:28894 guix-git/doc/guix.texi:28915 +#: guix-git/doc/guix.texi:28922 guix-git/doc/guix.texi:28967 +#: guix-git/doc/guix.texi:28974 guix-git/doc/guix.texi:29763 +#: guix-git/doc/guix.texi:29777 guix-git/doc/guix.texi:29977 +#: guix-git/doc/guix.texi:30022 guix-git/doc/guix.texi:30109 +#: guix-git/doc/guix.texi:30311 guix-git/doc/guix.texi:30344 +#: guix-git/doc/guix.texi:30484 guix-git/doc/guix.texi:30495 +#: guix-git/doc/guix.texi:30746 guix-git/doc/guix.texi:32265 +#: guix-git/doc/guix.texi:32274 guix-git/doc/guix.texi:32282 +#: guix-git/doc/guix.texi:32290 guix-git/doc/guix.texi:32306 +#: guix-git/doc/guix.texi:32322 guix-git/doc/guix.texi:32330 +#: guix-git/doc/guix.texi:32338 guix-git/doc/guix.texi:32347 +#: guix-git/doc/guix.texi:32356 guix-git/doc/guix.texi:32372 +#: guix-git/doc/guix.texi:32436 guix-git/doc/guix.texi:32542 +#: guix-git/doc/guix.texi:32550 guix-git/doc/guix.texi:32558 +#: guix-git/doc/guix.texi:32583 guix-git/doc/guix.texi:32637 +#: guix-git/doc/guix.texi:32685 guix-git/doc/guix.texi:32886 +#: guix-git/doc/guix.texi:32893 msgid "Defaults to @samp{#f}." msgstr "El valor predeterminado es @samp{#f}" #. type: deftypevr -#: guix-git/doc/guix.texi:18007 +#: guix-git/doc/guix.texi:18369 #, fuzzy, no-wrap #| msgid "{@code{cgit-configuration} parameter} boolean enable-git-config?" msgid "{@code{opendht-configuration} parameter} boolean enable-logging?" msgstr "{parámetro de @code{cgit-configuration}} boolean enable-git-config?" #. type: deftypevr -#: guix-git/doc/guix.texi:18010 +#: guix-git/doc/guix.texi:18372 msgid "Whether to enable logging messages to syslog. It is disabled by default as it is rather verbose." msgstr "" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:18015 +#: guix-git/doc/guix.texi:18377 #, fuzzy, no-wrap #| msgid "{@code{dovecot-configuration} parameter} boolean auth-debug?" msgid "{@code{opendht-configuration} parameter} boolean debug?" msgstr "{parámetro de @code{dovecot-configuration}} boolean auth-debug?" #. type: deftypevr -#: guix-git/doc/guix.texi:18018 +#: guix-git/doc/guix.texi:18380 msgid "Whether to enable debug-level logging messages. This has no effect if logging is disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18023 +#: guix-git/doc/guix.texi:18385 #, fuzzy, no-wrap #| msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cert" msgid "{@code{opendht-configuration} parameter} maybe-string bootstrap-host" msgstr "{parámetro de @code{nslcd-configuration}} maybe-string tls-cert" #. type: deftypevr -#: guix-git/doc/guix.texi:18029 +#: guix-git/doc/guix.texi:18391 msgid "The node host name that is used to make the first connection to the network. A specific port value can be provided by appending the @code{:PORT} suffix. By default, it uses the Jami bootstrap nodes, but any host can be specified here. It's also possible to disable bootsrapping by setting this to the @code{'disabled} symbol." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18031 +#: guix-git/doc/guix.texi:18393 #, fuzzy #| msgid "Defaults to @samp{\"optimized\"}." msgid "Defaults to @samp{\"bootstrap.jami.net:4222\"}." msgstr "Su valor predeterminado es @samp{\"optimized\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:18034 +#: guix-git/doc/guix.texi:18396 #, fuzzy, no-wrap #| msgid "{@code{nslcd-configuration} parameter} maybe-number threads" msgid "{@code{opendht-configuration} parameter} maybe-number port" msgstr "{parámetro de @code{nslcd-configuration}} maybe-number threads" #. type: deftypevr -#: guix-git/doc/guix.texi:18037 +#: guix-git/doc/guix.texi:18399 msgid "The UDP port to bind to. When set to @code{'disabled}, an available port is automatically selected." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18039 +#: guix-git/doc/guix.texi:18401 #, fuzzy msgid "Defaults to @samp{4222}." msgstr "El valor predeterminado es @samp{0}." #. type: deftypevr -#: guix-git/doc/guix.texi:18042 +#: guix-git/doc/guix.texi:18404 #, fuzzy, no-wrap #| msgid "{@code{nslcd-configuration} parameter} maybe-number reconnect-sleeptime" msgid "{@code{opendht-configuration} parameter} maybe-number proxy-server-port" msgstr "{parámetro de @code{nslcd-configuration}} maybe-number reconnect-sleeptime" #. type: deftypevr -#: guix-git/doc/guix.texi:18044 +#: guix-git/doc/guix.texi:18406 #, fuzzy #| msgid "Bind the web interface to the specified port." msgid "Spawn a proxy server listening on the specified port." msgstr "Asocia la interfaz web al puerto especificado." #. type: deftypevr -#: guix-git/doc/guix.texi:18046 guix-git/doc/guix.texi:18053 -#: guix-git/doc/guix.texi:24391 guix-git/doc/guix.texi:24435 -#: guix-git/doc/guix.texi:24648 guix-git/doc/guix.texi:24704 -#: guix-git/doc/guix.texi:24878 guix-git/doc/guix.texi:24889 -#: guix-git/doc/guix.texi:24962 guix-git/doc/guix.texi:25687 -#: guix-git/doc/guix.texi:25730 guix-git/doc/guix.texi:25738 -#: guix-git/doc/guix.texi:25746 guix-git/doc/guix.texi:25754 -#: guix-git/doc/guix.texi:25763 guix-git/doc/guix.texi:25771 -#: guix-git/doc/guix.texi:25778 guix-git/doc/guix.texi:25786 -#: guix-git/doc/guix.texi:25794 guix-git/doc/guix.texi:25804 -#: guix-git/doc/guix.texi:25811 guix-git/doc/guix.texi:25835 -#: guix-git/doc/guix.texi:25843 guix-git/doc/guix.texi:25869 -#: guix-git/doc/guix.texi:25878 guix-git/doc/guix.texi:25887 -#: guix-git/doc/guix.texi:25896 guix-git/doc/guix.texi:25905 -#: guix-git/doc/guix.texi:25914 guix-git/doc/guix.texi:25922 -#: guix-git/doc/guix.texi:25930 guix-git/doc/guix.texi:25937 -#: guix-git/doc/guix.texi:25945 guix-git/doc/guix.texi:25952 -#: guix-git/doc/guix.texi:25960 guix-git/doc/guix.texi:25968 -#: guix-git/doc/guix.texi:25977 guix-git/doc/guix.texi:25986 -#: guix-git/doc/guix.texi:25994 guix-git/doc/guix.texi:26002 -#: guix-git/doc/guix.texi:26010 guix-git/doc/guix.texi:26021 -#: guix-git/doc/guix.texi:26031 guix-git/doc/guix.texi:26042 -#: guix-git/doc/guix.texi:26051 guix-git/doc/guix.texi:26061 -#: guix-git/doc/guix.texi:26069 guix-git/doc/guix.texi:26080 -#: guix-git/doc/guix.texi:26089 guix-git/doc/guix.texi:26099 -#: guix-git/doc/guix.texi:29339 guix-git/doc/guix.texi:29346 -#: guix-git/doc/guix.texi:29353 guix-git/doc/guix.texi:29360 -#: guix-git/doc/guix.texi:29367 guix-git/doc/guix.texi:29374 -#: guix-git/doc/guix.texi:29382 guix-git/doc/guix.texi:29390 -#: guix-git/doc/guix.texi:29397 guix-git/doc/guix.texi:29404 -#: guix-git/doc/guix.texi:29411 guix-git/doc/guix.texi:29418 -#: guix-git/doc/guix.texi:29448 guix-git/doc/guix.texi:29486 -#: guix-git/doc/guix.texi:29493 guix-git/doc/guix.texi:29502 -#: guix-git/doc/guix.texi:29524 guix-git/doc/guix.texi:29532 -#: guix-git/doc/guix.texi:29539 guix-git/doc/guix.texi:29694 -#: guix-git/doc/guix.texi:29714 guix-git/doc/guix.texi:29729 -#: guix-git/doc/guix.texi:29736 guix-git/doc/guix.texi:32473 -#: guix-git/doc/guix.texi:32481 guix-git/doc/guix.texi:32489 -#: guix-git/doc/guix.texi:32497 guix-git/doc/guix.texi:32505 -#: guix-git/doc/guix.texi:32513 +#: guix-git/doc/guix.texi:18408 guix-git/doc/guix.texi:18415 +#: guix-git/doc/guix.texi:24753 guix-git/doc/guix.texi:24797 +#: guix-git/doc/guix.texi:25010 guix-git/doc/guix.texi:25066 +#: guix-git/doc/guix.texi:25240 guix-git/doc/guix.texi:25251 +#: guix-git/doc/guix.texi:25324 guix-git/doc/guix.texi:26024 +#: guix-git/doc/guix.texi:26067 guix-git/doc/guix.texi:26075 +#: guix-git/doc/guix.texi:26083 guix-git/doc/guix.texi:26091 +#: guix-git/doc/guix.texi:26100 guix-git/doc/guix.texi:26108 +#: guix-git/doc/guix.texi:26115 guix-git/doc/guix.texi:26123 +#: guix-git/doc/guix.texi:26131 guix-git/doc/guix.texi:26141 +#: guix-git/doc/guix.texi:26148 guix-git/doc/guix.texi:26172 +#: guix-git/doc/guix.texi:26180 guix-git/doc/guix.texi:26206 +#: guix-git/doc/guix.texi:26215 guix-git/doc/guix.texi:26224 +#: guix-git/doc/guix.texi:26233 guix-git/doc/guix.texi:26242 +#: guix-git/doc/guix.texi:26251 guix-git/doc/guix.texi:26259 +#: guix-git/doc/guix.texi:26267 guix-git/doc/guix.texi:26274 +#: guix-git/doc/guix.texi:26282 guix-git/doc/guix.texi:26289 +#: guix-git/doc/guix.texi:26297 guix-git/doc/guix.texi:26305 +#: guix-git/doc/guix.texi:26314 guix-git/doc/guix.texi:26323 +#: guix-git/doc/guix.texi:26331 guix-git/doc/guix.texi:26339 +#: guix-git/doc/guix.texi:26347 guix-git/doc/guix.texi:26358 +#: guix-git/doc/guix.texi:26368 guix-git/doc/guix.texi:26379 +#: guix-git/doc/guix.texi:26388 guix-git/doc/guix.texi:26398 +#: guix-git/doc/guix.texi:26406 guix-git/doc/guix.texi:26417 +#: guix-git/doc/guix.texi:26426 guix-git/doc/guix.texi:26436 +#: guix-git/doc/guix.texi:29676 guix-git/doc/guix.texi:29683 +#: guix-git/doc/guix.texi:29690 guix-git/doc/guix.texi:29697 +#: guix-git/doc/guix.texi:29704 guix-git/doc/guix.texi:29711 +#: guix-git/doc/guix.texi:29719 guix-git/doc/guix.texi:29727 +#: guix-git/doc/guix.texi:29734 guix-git/doc/guix.texi:29741 +#: guix-git/doc/guix.texi:29748 guix-git/doc/guix.texi:29755 +#: guix-git/doc/guix.texi:29785 guix-git/doc/guix.texi:29823 +#: guix-git/doc/guix.texi:29830 guix-git/doc/guix.texi:29839 +#: guix-git/doc/guix.texi:29861 guix-git/doc/guix.texi:29869 +#: guix-git/doc/guix.texi:29876 guix-git/doc/guix.texi:29905 +#: guix-git/doc/guix.texi:29912 guix-git/doc/guix.texi:29919 +#: guix-git/doc/guix.texi:29926 guix-git/doc/guix.texi:30059 +#: guix-git/doc/guix.texi:30079 guix-git/doc/guix.texi:30094 +#: guix-git/doc/guix.texi:30101 guix-git/doc/guix.texi:32838 +#: guix-git/doc/guix.texi:32846 guix-git/doc/guix.texi:32854 +#: guix-git/doc/guix.texi:32862 guix-git/doc/guix.texi:32870 +#: guix-git/doc/guix.texi:32878 msgid "Defaults to @samp{disabled}." msgstr "El valor predeterminado es @samp{disabled}." #. type: deftypevr -#: guix-git/doc/guix.texi:18049 +#: guix-git/doc/guix.texi:18411 #, fuzzy, no-wrap #| msgid "{@code{nslcd-configuration} parameter} maybe-number reconnect-sleeptime" msgid "{@code{opendht-configuration} parameter} maybe-number proxy-server-port-tls" msgstr "{parámetro de @code{nslcd-configuration}} maybe-number reconnect-sleeptime" #. type: deftypevr -#: guix-git/doc/guix.texi:18051 +#: guix-git/doc/guix.texi:18413 msgid "Spawn a proxy server listening to TLS connections on the specified port." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18057 +#: guix-git/doc/guix.texi:18419 #, no-wrap msgid "Tor" msgstr "Tor" #. type: defvr -#: guix-git/doc/guix.texi:18058 +#: guix-git/doc/guix.texi:18420 #, no-wrap msgid "{Scheme Variable} tor-service-type" msgstr "{Variable Scheme} tor-service-type" #. type: defvr -#: guix-git/doc/guix.texi:18063 +#: guix-git/doc/guix.texi:18425 msgid "This is the type for a service that runs the @uref{https://torproject.org, Tor} anonymous networking daemon. The service is configured using a @code{} record. By default, the Tor daemon runs as the @code{tor} unprivileged user, which is a member of the @code{tor} group." msgstr "Este es el tipo para un servicio que ejecuta el daemon de red anónima @uref{https://torproject.org, Tor}. El servicio se configura mediante un registro @code{}. De manera predeterminada, el daemon Tor se ejecuta como la usuaria sin privilegios @code{tor}, que es miembro del grupo @code{tor}." #. type: deftp -#: guix-git/doc/guix.texi:18066 +#: guix-git/doc/guix.texi:18428 #, no-wrap msgid "{Data Type} tor-configuration" msgstr "{Tipo de datos} tor-configuration" #. type: item -#: guix-git/doc/guix.texi:18068 +#: guix-git/doc/guix.texi:18430 #, no-wrap msgid "@code{tor} (default: @code{tor})" msgstr "@code{tor} (predeterminado: @code{tor})" #. type: table -#: guix-git/doc/guix.texi:18073 +#: guix-git/doc/guix.texi:18435 msgid "The package that provides the Tor daemon. This package is expected to provide the daemon at @file{bin/tor} relative to its output directory. The default package is the @uref{https://www.torproject.org, Tor Project's} implementation." msgstr "El paquete que proporciona el daemon Tor. Se espera que este paquete proporcione el daemon en @file{bin/tor} de manera relativa al directorio de su salida. El paquete predeterminado es la implementación del @uref{https://www.torproject.org, Proyecto Tor}." #. type: item -#: guix-git/doc/guix.texi:18074 +#: guix-git/doc/guix.texi:18436 #, no-wrap msgid "@code{config-file} (default: @code{(plain-file \"empty\" \"\")})" msgstr "@code{config-file} (predeterminado: @code{(plain-file \"empty\" \"\")})" #. type: table -#: guix-git/doc/guix.texi:18080 +#: guix-git/doc/guix.texi:18442 msgid "The configuration file to use. It will be appended to a default configuration file, and the final configuration file will be passed to @code{tor} via its @code{-f} option. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). See @code{man tor} for details on the configuration file syntax." msgstr "El archivo de configuración usado. Se agregará al final del archivo de configuración predeterminado, y se proporcionará el archivo de configuración resultante a @code{tor} a través de su opción @code{-f}. Puede ser cualquier objeto ``tipo-archivo'' (@pxref{G-Expressions, objetos ``tipo-archivo''}). Véase @code{man tor} para detalles sobre la sintaxis del archivo de configuración." #. type: item -#: guix-git/doc/guix.texi:18081 +#: guix-git/doc/guix.texi:18443 #, no-wrap msgid "@code{hidden-services} (default: @code{'()})" msgstr "@code{hidden-services} (predeterminados: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18087 +#: guix-git/doc/guix.texi:18449 msgid "The list of @code{} records to use. For any hidden service you include in this list, appropriate configuration to enable the hidden service will be automatically added to the default configuration file. You may conveniently create @code{} records using the @code{tor-hidden-service} procedure described below." msgstr "La lista de registros de servicios ocultos @code{} usados. Para cada servicio oculto que añada en esta lista, se activará la configuración apropiada para su activación en el archivo de configuración predeterminado. Puede crear registros @code{} de manera conveniente mediante el uso del procedimiento @code{tor-hidden-service} descrito a continuación." #. type: item -#: guix-git/doc/guix.texi:18088 +#: guix-git/doc/guix.texi:18450 #, no-wrap msgid "@code{socks-socket-type} (default: @code{'tcp})" msgstr "@code{socks-socket-type} (predeterminado: @code{'tcp})" #. type: table -#: guix-git/doc/guix.texi:18095 +#: guix-git/doc/guix.texi:18457 msgid "The default socket type that Tor should use for its SOCKS socket. This must be either @code{'tcp} or @code{'unix}. If it is @code{'tcp}, then by default Tor will listen on TCP port 9050 on the loopback interface (i.e., localhost). If it is @code{'unix}, then Tor will listen on the UNIX domain socket @file{/var/run/tor/socks-sock}, which will be made writable by members of the @code{tor} group." msgstr "El tipo socket predeterminado que Tor debe usar para su socket SOCKS. Debe ser @code{'tcp} i @code{'unix}. Si es @code{'tcp}, Tor escuchará en el puerto TCP 9050 de la interfaz local (es decir, localhost) de manera predeterminada. Si es @code{'unix}, tor escuchará en el socket de dominio de UNIX @file{/var/run/tor/socks-sock}, que tendrá permisos de escritura para miembros del grupo @code{tor}." # FUZZY # TODO (MAAV): Override. #. type: table -#: guix-git/doc/guix.texi:18100 +#: guix-git/doc/guix.texi:18462 msgid "If you want to customize the SOCKS socket in more detail, leave @code{socks-socket-type} at its default value of @code{'tcp} and use @code{config-file} to override the default by providing your own @code{SocksPort} option." msgstr "Si desea personalizar el socket SOCKS de manera más detallada, mantenga @code{socks-socket-type} con su valor predeterminado de @code{'tcp} y use @code{config-file} para modificar el valor predeterminado proporcionando su propia opción @code{SocksPort}." #. type: item -#: guix-git/doc/guix.texi:18101 +#: guix-git/doc/guix.texi:18463 #, fuzzy, no-wrap msgid "@code{control-socket?} (default: @code{#f})" msgstr "@code{no-reset?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18107 +#: guix-git/doc/guix.texi:18469 #, fuzzy msgid "Whether or not to provide a ``control socket'' by which Tor can be controlled to, for instance, dynamically instantiate tor onion services. If @code{#t}, Tor will listen for control commands on the UNIX domain socket @file{/var/run/tor/control-sock}, which will be made writable by members of the @code{tor} group." msgstr "El tipo socket predeterminado que Tor debe usar para su socket SOCKS. Debe ser @code{'tcp} i @code{'unix}. Si es @code{'tcp}, Tor escuchará en el puerto TCP 9050 de la interfaz local (es decir, localhost) de manera predeterminada. Si es @code{'unix}, tor escuchará en el socket de dominio de UNIX @file{/var/run/tor/socks-sock}, que tendrá permisos de escritura para miembros del grupo @code{tor}." #. type: cindex -#: guix-git/doc/guix.texi:18111 +#: guix-git/doc/guix.texi:18473 #, no-wrap msgid "hidden service" msgstr "servicio oculto" #. type: deffn -#: guix-git/doc/guix.texi:18112 +#: guix-git/doc/guix.texi:18474 #, no-wrap msgid "{Scheme Procedure} tor-hidden-service @var{name} @var{mapping}" msgstr "{Procedimiento Scheme} tor-hidden-service @var{nombre} @var{relación}" #. type: deffn -#: guix-git/doc/guix.texi:18115 +#: guix-git/doc/guix.texi:18477 msgid "Define a new Tor @dfn{hidden service} called @var{name} and implementing @var{mapping}. @var{mapping} is a list of port/host tuples, such as:" msgstr "Define un @dfn{servicio oculto} Tor llamado @var{nombre} y que implementa la @var{relación}. @var{relación} es una lista de tuplas puerto/máquina, como:" #. type: example -#: guix-git/doc/guix.texi:18119 +#: guix-git/doc/guix.texi:18481 #, no-wrap msgid "" " '((22 \"127.0.0.1:22\")\n" @@ -34790,45 +35503,45 @@ msgstr "" " (80 \"127.0.0.1:8080\"))\n" #. type: deffn -#: guix-git/doc/guix.texi:18123 +#: guix-git/doc/guix.texi:18485 msgid "In this example, port 22 of the hidden service is mapped to local port 22, and port 80 is mapped to local port 8080." msgstr "En este ejemplo, el puerto 22 del servicio oculto se asocia con el puerto 22 local, y el puerto 80 se asocia con el puerto 8080 local." #. type: deffn -#: guix-git/doc/guix.texi:18127 +#: guix-git/doc/guix.texi:18489 msgid "This creates a @file{/var/lib/tor/hidden-services/@var{name}} directory, where the @file{hostname} file contains the @code{.onion} host name for the hidden service." msgstr "Esto crea un directorio @file{/var/lib/tor/hidden-services/@var{nombre}}, donde el archivo @file{hostname} contiene el nombre de máquina @code{.onion} para el servicio oculto." #. type: deffn -#: guix-git/doc/guix.texi:18130 +#: guix-git/doc/guix.texi:18492 msgid "See @uref{https://www.torproject.org/docs/tor-hidden-service.html.en, the Tor project's documentation} for more information." msgstr "Véase @uref{https://www.torproject.org/docs/tor-hidden-service.html.en, la documentación del proyecto Tor} para más información." #. type: Plain text -#: guix-git/doc/guix.texi:18133 +#: guix-git/doc/guix.texi:18495 msgid "The @code{(gnu services rsync)} module provides the following services:" msgstr "El módulo @code{(gnu services rsync)} proporciona los siguientes servicios:" # FUZZY # TODO (MAAV): Descargar, subir... #. type: Plain text -#: guix-git/doc/guix.texi:18137 +#: guix-git/doc/guix.texi:18499 msgid "You might want an rsync daemon if you have files that you want available so anyone (or just yourself) can download existing files or upload new files." msgstr "Puede ser que desee un daemon rsync si tiene archivos que desee tener disponibles de modo que cualquiera (o simplemente usted) pueda descargar archivos existentes o subir nuevos archivos." #. type: deffn -#: guix-git/doc/guix.texi:18138 +#: guix-git/doc/guix.texi:18500 #, no-wrap msgid "{Scheme Variable} rsync-service-type" msgstr "{Variable Scheme} rsync-service-type" #. type: deffn -#: guix-git/doc/guix.texi:18142 +#: guix-git/doc/guix.texi:18504 msgid "This is the service type for the @uref{https://rsync.samba.org, rsync} daemon, The value for this service type is a @command{rsync-configuration} record as in this example:" msgstr "Este es el tipo de servicio para el daemon @uref{https://rsync.samba.org, rsync}. El valor tipo de servicio es un registro @command{rsync-configuration} como en este ejemplo." #. type: lisp -#: guix-git/doc/guix.texi:18155 +#: guix-git/doc/guix.texi:18517 #, fuzzy, no-wrap #| msgid "" #| "(service mpd-service-type\n" @@ -34866,47 +35579,47 @@ msgstr "" " (port . \"8080\"))))))))\n" #. type: deffn -#: guix-git/doc/guix.texi:18158 +#: guix-git/doc/guix.texi:18520 msgid "See below for details about @code{rsync-configuration}." msgstr "Véase a continuación para detalles sobre @code{rsync-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:18160 +#: guix-git/doc/guix.texi:18522 #, no-wrap msgid "{Data Type} rsync-configuration" msgstr "{Tipo de datos} rsync-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18162 +#: guix-git/doc/guix.texi:18524 msgid "Data type representing the configuration for @code{rsync-service}." msgstr "Tipo de datos que representa la configuración para @code{rsync-service}." #. type: item -#: guix-git/doc/guix.texi:18164 +#: guix-git/doc/guix.texi:18526 #, no-wrap msgid "@code{package} (default: @var{rsync})" msgstr "@code{package} (predeterminado: @var{rsync})" #. type: table -#: guix-git/doc/guix.texi:18166 +#: guix-git/doc/guix.texi:18528 msgid "@code{rsync} package to use." msgstr "Paquete @code{rsync} usado." #. type: item -#: guix-git/doc/guix.texi:18167 guix-git/doc/guix.texi:31480 +#: guix-git/doc/guix.texi:18529 guix-git/doc/guix.texi:31845 #, no-wrap msgid "@code{address} (default: @code{#f})" msgstr "@code{address} (predeterminada: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:18170 +#: guix-git/doc/guix.texi:18532 #, fuzzy msgid "IP address on which @command{rsync} listens for incoming connections. If unspecified, it defaults to listening on all available addresses." msgstr "La dirección de red (y, por tanto, la interfaz de red) en la que se esperarán conexiones. Use @code{\"0.0.0.0\"} para aceptar conexiones por todas las interfaces de red." #. type: item -#: guix-git/doc/guix.texi:18171 +#: guix-git/doc/guix.texi:18533 #, no-wrap msgid "@code{port-number} (default: @code{873})" msgstr "@code{port-number} (predeterminado: @code{873})" @@ -34915,70 +35628,70 @@ msgstr "@code{port-number} (predeterminado: @code{873})" # TODO (MAAV): ¿Esto es verdad? Juraría que es posible darle solo esa # capacidad a un programa al menos en linux... #. type: table -#: guix-git/doc/guix.texi:18175 +#: guix-git/doc/guix.texi:18537 msgid "TCP port on which @command{rsync} listens for incoming connections. If port is less than @code{1024} @command{rsync} needs to be started as the @code{root} user and group." msgstr "Puerto TCP en el que @command{rsync} escucha conexiones entrantes. Si el puerto es menor a @code{1024}, @command{rsync} necesita iniciarse como @code{root}, tanto usuaria como grupo." #. type: item -#: guix-git/doc/guix.texi:18176 +#: guix-git/doc/guix.texi:18538 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/rsyncd/rsyncd.pid\"})" msgstr "@code{pid-file} (predeterminado: @code{\"/var/run/rsyncd/rsyncd.pid\"})" #. type: table -#: guix-git/doc/guix.texi:18178 +#: guix-git/doc/guix.texi:18540 msgid "Name of the file where @command{rsync} writes its PID." msgstr "Nombre del archivo donde @command{rsync} escribe su PID." #. type: item -#: guix-git/doc/guix.texi:18179 +#: guix-git/doc/guix.texi:18541 #, no-wrap msgid "@code{lock-file} (default: @code{\"/var/run/rsyncd/rsyncd.lock\"})" msgstr "@code{lock-file} (predeterminado: @code{\"/var/run/rsyncd/rsyncd.lock\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:18181 +#: guix-git/doc/guix.texi:18543 msgid "Name of the file where @command{rsync} writes its lock file." msgstr "Nombre del archivo donde @command{rsync} escribe su archivo de bloqueo." #. type: item -#: guix-git/doc/guix.texi:18182 +#: guix-git/doc/guix.texi:18544 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/rsyncd.log\"})" msgstr "@code{log-file} (predeterminado: @code{\"/var/log/rsyncd.log\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:18184 +#: guix-git/doc/guix.texi:18546 msgid "Name of the file where @command{rsync} writes its log file." msgstr "Nombre del archivo donde @command{rsync} escribe su archivo de registros." #. type: item -#: guix-git/doc/guix.texi:18185 guix-git/doc/guix.texi:35582 +#: guix-git/doc/guix.texi:18547 guix-git/doc/guix.texi:36062 #, no-wrap msgid "@code{user} (default: @code{\"root\"})" msgstr "@code{user} (predeterminada: @code{\"root\"})" #. type: table -#: guix-git/doc/guix.texi:18187 +#: guix-git/doc/guix.texi:18549 msgid "Owner of the @code{rsync} process." msgstr "Propietaria del proceso @code{rsync}." #. type: item -#: guix-git/doc/guix.texi:18188 +#: guix-git/doc/guix.texi:18550 #, fuzzy, no-wrap #| msgid "@code{group} (default: @code{\"httpd\"})" msgid "@code{group} (default: @code{\"root\"})" msgstr "@code{group} (predeterminado: @code{\"httpd\"})" #. type: table -#: guix-git/doc/guix.texi:18190 +#: guix-git/doc/guix.texi:18552 msgid "Group of the @code{rsync} process." msgstr "Grupo del proceso @code{rsync}." #. type: item -#: guix-git/doc/guix.texi:18191 +#: guix-git/doc/guix.texi:18553 #, fuzzy, no-wrap #| msgid "@code{uid} (default: @var{\"rsyncd\"})" msgid "@code{uid} (default: @code{\"rsyncd\"})" @@ -34986,138 +35699,138 @@ msgstr "@code{uid} (predeterminado: @var{\"rsyncd\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:18194 +#: guix-git/doc/guix.texi:18556 msgid "User name or user ID that file transfers to and from that module should take place as when the daemon was run as @code{root}." msgstr "Nombre o ID de usuaria bajo la cual se efectúan las transferencias desde y hacia el módulo cuando el daemon se ejecuta como @code{root}." #. type: item -#: guix-git/doc/guix.texi:18195 +#: guix-git/doc/guix.texi:18557 #, fuzzy, no-wrap #| msgid "@code{gid} (default: @var{\"rsyncd\"})" msgid "@code{gid} (default: @code{\"rsyncd\"})" msgstr "@code{gid} (predeterminado: @var{\"rsyncd\"})" #. type: table -#: guix-git/doc/guix.texi:18197 guix-git/doc/guix.texi:18676 +#: guix-git/doc/guix.texi:18559 guix-git/doc/guix.texi:19038 msgid "Group name or group ID that will be used when accessing the module." msgstr "Nombre o ID de grupo que se usa cuando se accede al módulo." #. type: item -#: guix-git/doc/guix.texi:18198 guix-git/doc/guix.texi:36378 +#: guix-git/doc/guix.texi:18560 guix-git/doc/guix.texi:36868 #, no-wrap msgid "@code{modules} (default: @code{%default-modules})" msgstr "@code{modules} (predeterminados: @code{%default-modules})" #. type: table -#: guix-git/doc/guix.texi:18201 +#: guix-git/doc/guix.texi:18563 msgid "List of ``modules''---i.e., directories exported over rsync. Each element must be a @code{rsync-module} record, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18204 +#: guix-git/doc/guix.texi:18566 #, fuzzy, no-wrap #| msgid "{Data Type} httpd-module" msgid "{Data Type} rsync-module" msgstr "{Tipo de datos} httpd-module" #. type: deftp -#: guix-git/doc/guix.texi:18207 +#: guix-git/doc/guix.texi:18569 msgid "This is the data type for rsync ``modules''. A module is a directory exported over the rsync protocol. The available fields are as follows:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18213 +#: guix-git/doc/guix.texi:18575 msgid "The module name. This is the name that shows up in URLs. For example, if the module is called @code{music}, the corresponding URL will be @code{rsync://host.example.org/music}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18214 +#: guix-git/doc/guix.texi:18576 #, fuzzy, no-wrap #| msgid "source-file-name" msgid "file-name" msgstr "source-file-name" #. type: table -#: guix-git/doc/guix.texi:18216 +#: guix-git/doc/guix.texi:18578 #, fuzzy #| msgid "Return the directory name of the store." msgid "Name of the directory being exported." msgstr "Devuelve el nombre del directorio del almacén." #. type: table -#: guix-git/doc/guix.texi:18220 +#: guix-git/doc/guix.texi:18582 msgid "Comment associated with the module. Client user interfaces may display it when they obtain the list of available modules." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18221 +#: guix-git/doc/guix.texi:18583 #, fuzzy, no-wrap #| msgid "@code{respawn?} (default: @code{#t})" msgid "@code{read-only?} (default: @code{#t})" msgstr "@code{respawn?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18225 +#: guix-git/doc/guix.texi:18587 msgid "Whether or not client will be able to upload files. If this is false, the uploads will be authorized if permissions on the daemon side permit it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18226 +#: guix-git/doc/guix.texi:18588 #, fuzzy, no-wrap #| msgid "@code{chroot} (default: @code{#f})" msgid "@code{chroot?} (default: @code{#t})" msgstr "@code{chroot} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18230 +#: guix-git/doc/guix.texi:18592 msgid "When this is true, the rsync daemon changes root to the module's directory before starting file transfers with the client. This improves security, but requires rsync to run as root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18231 +#: guix-git/doc/guix.texi:18593 #, no-wrap msgid "@code{timeout} (default: @code{300})" msgstr "@code{timeout} (predeterminado: @code{300})" # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:18234 +#: guix-git/doc/guix.texi:18596 #, fuzzy #| msgid "The time in seconds after which a process with no requests is killed." msgid "Idle time in seconds after which the daemon closes a connection with the client." msgstr "El tiempo en segundos tras el cual un proceso sin peticiones será eliminado." #. type: Plain text -#: guix-git/doc/guix.texi:18238 +#: guix-git/doc/guix.texi:18600 #, fuzzy msgid "The @code{(gnu services syncthing)} module provides the following services:" msgstr "El módulo @code{(gnu services rsync)} proporciona los siguientes servicios:" #. type: cindex -#: guix-git/doc/guix.texi:18238 +#: guix-git/doc/guix.texi:18600 #, no-wrap msgid "syncthing" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18243 +#: guix-git/doc/guix.texi:18605 msgid "You might want a syncthing daemon if you have files between two or more computers and want to sync them in real time, safely protected from prying eyes." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18244 +#: guix-git/doc/guix.texi:18606 #, fuzzy, no-wrap msgid "{Scheme Variable} syncthing-service-type" msgstr "{Variable Scheme} rsync-service-type" #. type: deffn -#: guix-git/doc/guix.texi:18248 +#: guix-git/doc/guix.texi:18610 #, fuzzy msgid "This is the service type for the @uref{https://syncthing.net/, syncthing} daemon, The value for this service type is a @command{syncthing-configuration} record as in this example:" msgstr "Este es el tipo de servicio para el daemon @uref{https://rsync.samba.org, rsync}. El valor tipo de servicio es un registro @command{rsync-configuration} como en este ejemplo." #. type: lisp -#: guix-git/doc/guix.texi:18252 +#: guix-git/doc/guix.texi:18614 #, fuzzy, no-wrap msgid "" "(service syncthing-service-type\n" @@ -35127,121 +35840,121 @@ msgstr "" " (openssh-configuration))\n" #. type: deffn -#: guix-git/doc/guix.texi:18255 +#: guix-git/doc/guix.texi:18617 #, fuzzy msgid "See below for details about @code{syncthing-configuration}." msgstr "Véase a continuación para detalles sobre @code{rsync-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:18256 +#: guix-git/doc/guix.texi:18618 #, fuzzy, no-wrap msgid "{Data Type} syncthing-configuration" msgstr "{Tipo de datos} rsync-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18258 +#: guix-git/doc/guix.texi:18620 #, fuzzy msgid "Data type representing the configuration for @code{syncthing-service-type}." msgstr "Tipo de datos que representa la configuración para @code{rsync-service}." #. type: item -#: guix-git/doc/guix.texi:18260 +#: guix-git/doc/guix.texi:18622 #, fuzzy, no-wrap msgid "@code{syncthing} (default: @var{syncthing})" msgstr "@code{package} (predeterminado: @var{rsync})" #. type: table -#: guix-git/doc/guix.texi:18262 +#: guix-git/doc/guix.texi:18624 #, fuzzy msgid "@code{syncthing} package to use." msgstr "Paquete @code{rsync} usado." #. type: item -#: guix-git/doc/guix.texi:18263 +#: guix-git/doc/guix.texi:18625 #, fuzzy, no-wrap msgid "@code{arguments} (default: @var{'()})" msgstr "@code{arguments} (predeterminados: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18265 +#: guix-git/doc/guix.texi:18627 #, fuzzy msgid "List of command-line arguments passing to @code{syncthing} binary." msgstr "Lista de parámetros adicionales a pasar al daemon en la línea de órdenes." #. type: item -#: guix-git/doc/guix.texi:18266 +#: guix-git/doc/guix.texi:18628 #, fuzzy, no-wrap msgid "@code{logflags} (default: @var{0})" msgstr "@code{log-level} (predeterminado: @var{#f})" #. type: table -#: guix-git/doc/guix.texi:18269 +#: guix-git/doc/guix.texi:18631 msgid "Sum of logging flags, see @uref{https://docs.syncthing.net/users/syncthing.html#cmdoption-logflags, Syncthing documentation logflags}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18270 +#: guix-git/doc/guix.texi:18632 #, fuzzy, no-wrap msgid "@code{user} (default: @var{#f})" msgstr "@code{user-path} (predeterminado: @var{#f})" #. type: table -#: guix-git/doc/guix.texi:18273 +#: guix-git/doc/guix.texi:18635 #, fuzzy msgid "The user as which the Syncthing service is to be run. This assumes that the specified user exists." msgstr "La cuenta de usuaria con la cual se ejecuta el servicio AutoSSH. Se asume que existe dicha cuenta." #. type: item -#: guix-git/doc/guix.texi:18274 +#: guix-git/doc/guix.texi:18636 #, fuzzy, no-wrap msgid "@code{group} (default: @var{\"users\"})" msgstr "@code{group} (predeterminado: @var{\"root\"})" #. type: table -#: guix-git/doc/guix.texi:18277 +#: guix-git/doc/guix.texi:18639 #, fuzzy msgid "The group as which the Syncthing service is to be run. This assumes that the specified group exists." msgstr "La cuenta de usuaria con la cual se ejecuta el servicio AutoSSH. Se asume que existe dicha cuenta." #. type: item -#: guix-git/doc/guix.texi:18278 +#: guix-git/doc/guix.texi:18640 #, fuzzy, no-wrap msgid "@code{home} (default: @var{#f})" msgstr "@code{theme} (predeterminado: @var{#f})" #. type: table -#: guix-git/doc/guix.texi:18281 +#: guix-git/doc/guix.texi:18643 msgid "Common configuration and data directory. The default configuration directory is @file{$HOME} of the specified Syncthing @code{user}." msgstr "" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:18287 +#: guix-git/doc/guix.texi:18649 msgid "Furthermore, @code{(gnu services ssh)} provides the following services." msgstr "Es más, @code{(gnu services ssh)} proporciona los siguientes servicios." #. type: cindex -#: guix-git/doc/guix.texi:18287 guix-git/doc/guix.texi:18326 -#: guix-git/doc/guix.texi:35715 +#: guix-git/doc/guix.texi:18649 guix-git/doc/guix.texi:18688 +#: guix-git/doc/guix.texi:36205 #, no-wrap msgid "SSH" msgstr "SSH" #. type: cindex -#: guix-git/doc/guix.texi:18288 guix-git/doc/guix.texi:18327 -#: guix-git/doc/guix.texi:35716 +#: guix-git/doc/guix.texi:18650 guix-git/doc/guix.texi:18689 +#: guix-git/doc/guix.texi:36206 #, no-wrap msgid "SSH server" msgstr "servidor SSH" #. type: deffn -#: guix-git/doc/guix.texi:18290 +#: guix-git/doc/guix.texi:18652 #, no-wrap msgid "{Scheme Procedure} lsh-service [#:host-key \"/etc/lsh/host-key\"] @" msgstr "{Procedimiento Scheme} lsh-service [#:host-key \"/etc/lsh/host-key\"] @" #. type: deffn -#: guix-git/doc/guix.texi:18299 +#: guix-git/doc/guix.texi:18661 msgid "[#:daemonic? #t] [#:interfaces '()] [#:port-number 22] @ [#:allow-empty-passwords? #f] [#:root-login? #f] @ [#:syslog-output? #t] [#:x11-forwarding? #t] @ [#:tcp/ip-forwarding? #t] [#:password-authentication? #t] @ [#:public-key-authentication? #t] [#:initialize? #t] Run the @command{lshd} program from @var{lsh} to listen on port @var{port-number}. @var{host-key} must designate a file containing the host key, and readable only by root." msgstr "" "[#:daemonic? #t] [#:interfaces '()] [#:port-number 22] @\n" @@ -35252,49 +35965,49 @@ msgstr "" "Ejecuta el programa @command{lshd} de @var{lsh} para escuchar en el puerto @var{port-number}. @var{host-key} debe designar a un archivo que contiene la clave de la máquina, y que sea legible únicamente por root." #. type: deffn -#: guix-git/doc/guix.texi:18305 +#: guix-git/doc/guix.texi:18667 msgid "When @var{daemonic?} is true, @command{lshd} will detach from the controlling terminal and log its output to syslogd, unless one sets @var{syslog-output?} to false. Obviously, it also makes lsh-service depend on existence of syslogd service. When @var{pid-file?} is true, @command{lshd} writes its PID to the file called @var{pid-file}." msgstr "Cuando @var{daemonic?} es verdadero, @command{lshd} se desligará del terminal de control y registrará su salida con syslogd, a menos que se establezca @var{syslog-output?} a falso. Obviamente, esto hace que lsh-dependa de la existencia de un servicio syslogd. Cuando @var{pid-file?} es verdadero, @command{lshd} escribe su PID al archivo llamado @var{pid-file}." #. type: deffn -#: guix-git/doc/guix.texi:18309 +#: guix-git/doc/guix.texi:18671 msgid "When @var{initialize?} is true, automatically create the seed and host key upon service activation if they do not exist yet. This may take long and require interaction." msgstr "Cuando @var{initialize?} es verdadero, crea automáticamente una semilla una clave de máquina una vez se active el servicio si no existen todavía. Puede tomar un tiempo prolongado y necesita interacción." #. type: deffn -#: guix-git/doc/guix.texi:18314 +#: guix-git/doc/guix.texi:18676 msgid "When @var{initialize?} is false, it is up to the user to initialize the randomness generator (@pxref{lsh-make-seed,,, lsh, LSH Manual}), and to create a key pair with the private key stored in file @var{host-key} (@pxref{lshd basics,,, lsh, LSH Manual})." msgstr "Cuando @var{initialize?} es falso, es cuestión de la usuaria la inicialización del generador aleatorio (@pxref{lsh-make-seed,,, lsh, LSH Manual}), la creación de un par de claves y el almacenamiento de la clave privada en el archivo @var{host-key} (@pxref{lshd basics,,, lsh, LSH Manual})." #. type: deffn -#: guix-git/doc/guix.texi:18318 +#: guix-git/doc/guix.texi:18680 msgid "When @var{interfaces} is empty, lshd listens for connections on all the network interfaces; otherwise, @var{interfaces} must be a list of host names or addresses." msgstr "Cuando @var{interfaces} está vacío, lshd escucha conexiones en todas las interfaces de red; en otro caso, @var{interfaces} debe ser una lista de nombres de máquina o direcciones." #. type: deffn -#: guix-git/doc/guix.texi:18322 +#: guix-git/doc/guix.texi:18684 msgid "@var{allow-empty-passwords?} specifies whether to accept log-ins with empty passwords, and @var{root-login?} specifies whether to accept log-ins as root." msgstr "@var{allow-empty-passwords?} especifica si se aceptará el ingreso al sistema con una contraseña vacía y @var{root-login?} especifica si se acepta el ingreso al sistema como root." #. type: deffn -#: guix-git/doc/guix.texi:18324 +#: guix-git/doc/guix.texi:18686 msgid "The other options should be self-descriptive." msgstr "El resto de opciones deberían ser autodescriptivas." #. type: deffn -#: guix-git/doc/guix.texi:18328 +#: guix-git/doc/guix.texi:18690 #, no-wrap msgid "{Scheme Variable} openssh-service-type" msgstr "{Variable Scheme} openssh-service-type" # FUZZY #. type: deffn -#: guix-git/doc/guix.texi:18332 +#: guix-git/doc/guix.texi:18694 msgid "This is the type for the @uref{http://www.openssh.org, OpenSSH} secure shell daemon, @command{sshd}. Its value must be an @code{openssh-configuration} record as in this example:" msgstr "Este es el tipo para el daemon de shell seguro @uref{http://www.openssh.org, OpenSSH}, @command{sshd}. Su valor debe ser un registro @code{openssh-configuration} como en este ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:18341 +#: guix-git/doc/guix.texi:18703 #, fuzzy, no-wrap #| msgid "" #| "(service openssh-service-type\n" @@ -35322,17 +36035,17 @@ msgstr "" " (\"rober\" ,(local-file \"rober.pub\"))))))\n" #. type: deffn -#: guix-git/doc/guix.texi:18344 +#: guix-git/doc/guix.texi:18706 msgid "See below for details about @code{openssh-configuration}." msgstr "Véase a continuación detalles sobre @code{openssh-configuration}." #. type: deffn -#: guix-git/doc/guix.texi:18347 +#: guix-git/doc/guix.texi:18709 msgid "This service can be extended with extra authorized keys, as in this example:" msgstr "Este servicio se puede extender con claves autorizadas adicionales, como en este ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:18352 +#: guix-git/doc/guix.texi:18714 #, no-wrap msgid "" "(service-extension openssh-service-type\n" @@ -35344,106 +36057,106 @@ msgstr "" " ,(local-file \"carlos.pub\")))))\n" #. type: deftp -#: guix-git/doc/guix.texi:18355 +#: guix-git/doc/guix.texi:18717 #, no-wrap msgid "{Data Type} openssh-configuration" msgstr "{Tipo de datos} openssh-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18357 +#: guix-git/doc/guix.texi:18719 msgid "This is the configuration record for OpenSSH's @command{sshd}." msgstr "Este es el registro de configuración para @command{sshd} de OpenSSH." #. type: item -#: guix-git/doc/guix.texi:18359 +#: guix-git/doc/guix.texi:18721 #, no-wrap msgid "@code{openssh} (default @var{openssh})" msgstr "@code{openssh} (predeterminado: @var{openssh})" #. type: table -#: guix-git/doc/guix.texi:18361 +#: guix-git/doc/guix.texi:18723 msgid "The Openssh package to use." msgstr "El paquete OpenSSH usado." #. type: item -#: guix-git/doc/guix.texi:18362 +#: guix-git/doc/guix.texi:18724 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/sshd.pid\"})" msgstr "@code{pid-file} (predeterminado: @code{\"/var/run/sshd.pid\"})" #. type: table -#: guix-git/doc/guix.texi:18364 +#: guix-git/doc/guix.texi:18726 msgid "Name of the file where @command{sshd} writes its PID." msgstr "Nombre del archivo donde @command{sshd} escribe su PID." #. type: item -#: guix-git/doc/guix.texi:18365 +#: guix-git/doc/guix.texi:18727 #, no-wrap msgid "@code{port-number} (default: @code{22})" msgstr "@code{port-number} (predeterminado: @code{22})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:18367 +#: guix-git/doc/guix.texi:18729 msgid "TCP port on which @command{sshd} listens for incoming connections." msgstr "Puerto TCP en el que @command{sshd} espera conexiones entrantes." #. type: item -#: guix-git/doc/guix.texi:18368 +#: guix-git/doc/guix.texi:18730 #, no-wrap msgid "@code{permit-root-login} (default: @code{#f})" msgstr "@code{permit-root-login} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:18373 +#: guix-git/doc/guix.texi:18735 #, fuzzy #| msgid "This field determines whether and when to allow logins as root. If @code{#f}, root logins are disallowed; if @code{#t}, they are allowed. If it's the symbol @code{'without-password}, then root logins are permitted but not with password-based authentication." msgid "This field determines whether and when to allow logins as root. If @code{#f}, root logins are disallowed; if @code{#t}, they are allowed. If it's the symbol @code{'prohibit-password}, then root logins are permitted but not with password-based authentication." msgstr "Este archivo determina si y cuando se permite el ingreso al sistema como root. Si es @code{#f}, el ingreso como root no está permitido; si es @code{#f} está permitido. Si es el símbolo @code{'without-password}, se permite el ingreso al sistema como root pero no con identificación basada en contraseña." #. type: item -#: guix-git/doc/guix.texi:18374 guix-git/doc/guix.texi:18535 +#: guix-git/doc/guix.texi:18736 guix-git/doc/guix.texi:18897 #, no-wrap msgid "@code{allow-empty-passwords?} (default: @code{#f})" msgstr "@code{allow-empty-passwords?} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:18377 +#: guix-git/doc/guix.texi:18739 msgid "When true, users with empty passwords may log in. When false, they may not." msgstr "Cuando es verdadero, las usuarias con contraseñas vacías pueden ingresar en el sistema. Cuando es falso, no pueden." #. type: item -#: guix-git/doc/guix.texi:18378 guix-git/doc/guix.texi:18538 +#: guix-git/doc/guix.texi:18740 guix-git/doc/guix.texi:18900 #, no-wrap msgid "@code{password-authentication?} (default: @code{#t})" msgstr "@code{password-authentication?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18381 +#: guix-git/doc/guix.texi:18743 msgid "When true, users may log in with their password. When false, they have other authentication methods." msgstr "Cuando es verdadero, las usuarias pueden ingresar al sistema con su contraseña. En caso falso, tienen otros métodos de identificación." #. type: item -#: guix-git/doc/guix.texi:18382 +#: guix-git/doc/guix.texi:18744 #, no-wrap msgid "@code{public-key-authentication?} (default: @code{#t})" msgstr "@code{public-key-authentication?} (predeterminado: @code{#t})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:18385 +#: guix-git/doc/guix.texi:18747 msgid "When true, users may log in using public key authentication. When false, users have to use other authentication method." msgstr "Cuando es verdadero, las usuarias pueden ingresar en el sistema mediante el uso de clave publica para su identificación. Cuando es falso, las usuarias tienen que usar otros métodos de identificación." #. type: table -#: guix-git/doc/guix.texi:18388 +#: guix-git/doc/guix.texi:18750 msgid "Authorized public keys are stored in @file{~/.ssh/authorized_keys}. This is used only by protocol version 2." msgstr "Las claves públicas autorizadas se almacenan en @file{~/.ssh/authorized_keys}. Se usa únicamente por la versión 2 del protocolo." #. type: item -#: guix-git/doc/guix.texi:18389 +#: guix-git/doc/guix.texi:18751 #, no-wrap msgid "@code{x11-forwarding?} (default: @code{#f})" msgstr "@code{x11-forwarding?} (predeterminado: @code{#f})" @@ -35452,109 +36165,109 @@ msgstr "@code{x11-forwarding?} (predeterminado: @code{#f})" # TODO (MAAV): Forwarding -> retransmisión puede quedar # forzado. Repensar la frase al menos. #. type: table -#: guix-git/doc/guix.texi:18393 +#: guix-git/doc/guix.texi:18755 msgid "When true, forwarding of X11 graphical client connections is enabled---in other words, @command{ssh} options @option{-X} and @option{-Y} will work." msgstr "Cuando verdadero, la retransmisión de conexiones del cliente gráfico X11 está desactivada---en otras palabras, las opciones @option{-X} y @option{-Y} de @command{ssh} funcionarán." #. type: item -#: guix-git/doc/guix.texi:18394 +#: guix-git/doc/guix.texi:18756 #, no-wrap msgid "@code{allow-agent-forwarding?} (default: @code{#t})" msgstr "@code{allow-agent-forwarding?} (predeterminado: @code{#t})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:18396 +#: guix-git/doc/guix.texi:18758 msgid "Whether to allow agent forwarding." msgstr "Si se permite la retransmisión del agente de claves." #. type: item -#: guix-git/doc/guix.texi:18397 +#: guix-git/doc/guix.texi:18759 #, no-wrap msgid "@code{allow-tcp-forwarding?} (default: @code{#t})" msgstr "@code{allow-tcp-forwarding?} (predeterminado: @code{#t})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:18399 +#: guix-git/doc/guix.texi:18761 msgid "Whether to allow TCP forwarding." msgstr "Si se permite la retransmisión TCP." #. type: item -#: guix-git/doc/guix.texi:18400 +#: guix-git/doc/guix.texi:18762 #, no-wrap msgid "@code{gateway-ports?} (default: @code{#f})" msgstr "@code{gateway-ports?} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:18402 +#: guix-git/doc/guix.texi:18764 msgid "Whether to allow gateway ports." msgstr "Si se permiten los puertos pasarela." #. type: item -#: guix-git/doc/guix.texi:18403 +#: guix-git/doc/guix.texi:18765 #, no-wrap msgid "@code{challenge-response-authentication?} (default: @code{#f})" msgstr "@code{challenge-response-authentication?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18406 +#: guix-git/doc/guix.texi:18768 msgid "Specifies whether challenge response authentication is allowed (e.g.@: via PAM)." msgstr "Especifica si la identificación mediante respuesta de desafío está permitida (por ejemplo, a través de PAM)." #. type: item -#: guix-git/doc/guix.texi:18407 +#: guix-git/doc/guix.texi:18769 #, no-wrap msgid "@code{use-pam?} (default: @code{#t})" msgstr "@code{use-pam?} (predeterminado: @code{#t})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:18413 +#: guix-git/doc/guix.texi:18775 msgid "Enables the Pluggable Authentication Module interface. If set to @code{#t}, this will enable PAM authentication using @code{challenge-response-authentication?} and @code{password-authentication?}, in addition to PAM account and session module processing for all authentication types." msgstr "Permite el uso de la interfaz de módulos de identificación conectables (PAM). Si es @code{#t} se activará la identificación PAM mediante el uso de @code{challenge-response-authentication?} y @code{password-authentication?}, además del procesado de los módulos de cuenta usuaria y de sesión de PAM en todos los tipos de identificación." # FUZZY #. type: table -#: guix-git/doc/guix.texi:18418 +#: guix-git/doc/guix.texi:18780 msgid "Because PAM challenge response authentication usually serves an equivalent role to password authentication, you should disable either @code{challenge-response-authentication?} or @code{password-authentication?}." msgstr "Debido a que la identificación mediante respuesta de desafío de PAM tiene un rol equivalente a la identificación por contraseña habitualmente, debería desactivar @code{challenge-response-authentication?} o @code{password-authentication?}." #. type: item -#: guix-git/doc/guix.texi:18419 +#: guix-git/doc/guix.texi:18781 #, no-wrap msgid "@code{print-last-log?} (default: @code{#t})" msgstr "@code{print-last-log?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18422 +#: guix-git/doc/guix.texi:18784 msgid "Specifies whether @command{sshd} should print the date and time of the last user login when a user logs in interactively." msgstr "Especifica si @command{sshd} debe imprimir la fecha y hora del último ingreso al sistema de la usuaria cuando una usuaria ingresa interactivamente." #. type: item -#: guix-git/doc/guix.texi:18423 +#: guix-git/doc/guix.texi:18785 #, no-wrap msgid "@code{subsystems} (default: @code{'((\"sftp\" \"internal-sftp\"))})" msgstr "@code{subsystems} (predeterminados: @code{'((\"sftp\" \"internal-sftp\"))})" #. type: table -#: guix-git/doc/guix.texi:18425 +#: guix-git/doc/guix.texi:18787 msgid "Configures external subsystems (e.g.@: file transfer daemon)." msgstr "Configura subsistemas externos (por ejemplo, el daemon de transmisión de archivos)." #. type: table -#: guix-git/doc/guix.texi:18429 +#: guix-git/doc/guix.texi:18791 msgid "This is a list of two-element lists, each of which containing the subsystem name and a command (with optional arguments) to execute upon subsystem request." msgstr "Esta es una lista de listas de dos elementos, cada una de las cuales que contienen el nombre del subsistema y una orden (con parámetros opcionales) para ejecutar tras petición del subsistema." #. type: table -#: guix-git/doc/guix.texi:18432 +#: guix-git/doc/guix.texi:18794 msgid "The command @command{internal-sftp} implements an in-process SFTP server. Alternatively, one can specify the @command{sftp-server} command:" msgstr "La orden @command{internal-sftp} implementa un servidor SFTP dentro del mismo proceso. De manera alternativa, se puede especificar la orden @command{sftp-server}:" #. type: lisp -#: guix-git/doc/guix.texi:18437 +#: guix-git/doc/guix.texi:18799 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -35568,28 +36281,28 @@ msgstr "" " `((\"sftp\" ,(file-append openssh \"/libexec/sftp-server\"))))))\n" #. type: item -#: guix-git/doc/guix.texi:18439 +#: guix-git/doc/guix.texi:18801 #, no-wrap msgid "@code{accepted-environment} (default: @code{'()})" msgstr "@code{accepted-environment} (predeterminado: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18441 +#: guix-git/doc/guix.texi:18803 msgid "List of strings describing which environment variables may be exported." msgstr "Una lista de cadenas que describe qué variables de entorno pueden ser exportadas." #. type: table -#: guix-git/doc/guix.texi:18444 +#: guix-git/doc/guix.texi:18806 msgid "Each string gets on its own line. See the @code{AcceptEnv} option in @code{man sshd_config}." msgstr "Cada cadena obtiene su propia línea. Véase la opción @code{AcceptEnv} en @code{man sshd_config}." #. type: table -#: guix-git/doc/guix.texi:18449 +#: guix-git/doc/guix.texi:18811 msgid "This example allows ssh-clients to export the @env{COLORTERM} variable. It is set by terminal emulators, which support colors. You can use it in your shell's resource file to enable colors for the prompt and commands if this variable is set." msgstr "Este ejemplo permite a clientes ssh exportar la variable @env{COLORTERM}. La establecen emuladores de terminal que implementan colores. Puede usarla en su archivo de recursos del shell para permitir colores en la línea de órdenes y las propias ordenes si esta variable está definida." #. type: lisp -#: guix-git/doc/guix.texi:18454 +#: guix-git/doc/guix.texi:18816 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -35601,25 +36314,25 @@ msgstr "" " (accepted-environment '(\"COLORTERM\"))))\n" #. type: item -#: guix-git/doc/guix.texi:18456 +#: guix-git/doc/guix.texi:18818 #, no-wrap msgid "@code{authorized-keys} (default: @code{'()})" msgstr "@code{authorized-keys} (predeterminadas: @code{'()})" #. type: cindex -#: guix-git/doc/guix.texi:18457 +#: guix-git/doc/guix.texi:18819 #, no-wrap msgid "authorized keys, SSH" msgstr "claves autorizadas, SSH" #. type: cindex -#: guix-git/doc/guix.texi:18458 +#: guix-git/doc/guix.texi:18820 #, no-wrap msgid "SSH authorized keys" msgstr "SSH, claves autorizadas" #. type: table -#: guix-git/doc/guix.texi:18462 +#: guix-git/doc/guix.texi:18824 msgid "This is the list of authorized keys. Each element of the list is a user name followed by one or more file-like objects that represent SSH public keys. For example:" msgstr "Esta es la lista de claves autorizadas. Cada elemento de la lista es un nombre de usuaria seguido de uno o más objetos ``tipo-archivo'' que representan claves públicas SSH. Por ejemplo:" @@ -35630,7 +36343,7 @@ msgstr "Esta es la lista de claves autorizadas. Cada elemento de la lista es un # nadie... En cambio creo que estos nombres son de personas que # participan en el proyecto, por lo que los dejo tal cual. #. type: lisp -#: guix-git/doc/guix.texi:18469 +#: guix-git/doc/guix.texi:18831 #, no-wrap msgid "" "(openssh-configuration\n" @@ -35648,45 +36361,45 @@ msgstr "" # MAAV: Ya que son personas reales, evito la referencia a su género y # hablo únicamente de la cuenta. #. type: table -#: guix-git/doc/guix.texi:18474 +#: guix-git/doc/guix.texi:18836 msgid "registers the specified public keys for user accounts @code{rekado}, @code{chris}, and @code{root}." msgstr "registra las claves públicas especificadas para las cuentas @code{rekado}, @code{chris} y @code{root}." #. type: table -#: guix-git/doc/guix.texi:18477 +#: guix-git/doc/guix.texi:18839 msgid "Additional authorized keys can be specified @i{via} @code{service-extension}." msgstr "Se pueden especificar claves autorizadas adicionales a través de @code{service-extension}." #. type: table -#: guix-git/doc/guix.texi:18480 +#: guix-git/doc/guix.texi:18842 msgid "Note that this does @emph{not} interfere with the use of @file{~/.ssh/authorized_keys}." msgstr "Tenga en cuenta que esto @emph{no} interfiere con el uso de @file{~/.ssh/authorized_keys}." #. type: item -#: guix-git/doc/guix.texi:18481 guix-git/doc/guix.texi:18912 +#: guix-git/doc/guix.texi:18843 guix-git/doc/guix.texi:19274 #, no-wrap msgid "@code{log-level} (default: @code{'info})" msgstr "@code{log-level} (predeterminado: @code{'info})" #. type: table -#: guix-git/doc/guix.texi:18485 +#: guix-git/doc/guix.texi:18847 msgid "This is a symbol specifying the logging level: @code{quiet}, @code{fatal}, @code{error}, @code{info}, @code{verbose}, @code{debug}, etc. See the man page for @file{sshd_config} for the full list of level names." msgstr "Es un símbolo que especifica el nivel de detalle en los registros: @code{quiet}, @code{fatal}, @code{error}, @code{info}, @code{verbose}, @code{debug}, etc. Véase la página del manual de @file{sshd_config} para la lista completa de los nombres de nivel." #. type: item -#: guix-git/doc/guix.texi:18486 guix-git/doc/guix.texi:21328 -#: guix-git/doc/guix.texi:26469 +#: guix-git/doc/guix.texi:18848 guix-git/doc/guix.texi:21690 +#: guix-git/doc/guix.texi:26806 #, no-wrap msgid "@code{extra-content} (default: @code{\"\"})" msgstr "@code{extra-content} (predeterminado: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:18491 +#: guix-git/doc/guix.texi:18853 msgid "This field can be used to append arbitrary text to the configuration file. It is especially useful for elaborate configurations that cannot be expressed otherwise. This configuration, for example, would generally disable root logins, but permit them from one specific IP address:" msgstr "Este campo puede usarse para agregar un texto arbitrario al archivo de configuración. Es especialmente útil para configuraciones elaboradas que no se puedan expresar de otro modo. Esta configuración, por ejemplo, generalmente desactivaría el ingreso al sistema como root, pero lo permite para una dirección IP específica:" #. type: lisp -#: guix-git/doc/guix.texi:18497 +#: guix-git/doc/guix.texi:18859 #, no-wrap msgid "" "(openssh-configuration\n" @@ -35700,23 +36413,23 @@ msgstr "" " PermitRootLogin yes\"))\n" #. type: deffn -#: guix-git/doc/guix.texi:18502 +#: guix-git/doc/guix.texi:18864 #, no-wrap msgid "{Scheme Procedure} dropbear-service [@var{config}]" msgstr "{Procedimiento Scheme} dropbear-service [@var{config}]" #. type: deffn -#: guix-git/doc/guix.texi:18506 +#: guix-git/doc/guix.texi:18868 msgid "Run the @uref{https://matt.ucc.asn.au/dropbear/dropbear.html,Dropbear SSH daemon} with the given @var{config}, a @code{} object." msgstr "Ejecuta el @uref{https://matt.ucc.asn.au/dropbear/dropbear.html,daemon Dropbear SSH} con la @var{config}uración proporcionada, un objeto @code{}." #. type: deffn -#: guix-git/doc/guix.texi:18509 +#: guix-git/doc/guix.texi:18871 msgid "For example, to specify a Dropbear service listening on port 1234, add this call to the operating system's @code{services} field:" msgstr "Por ejemplo, para especificar un servicio Dropbear que escuche en el puerto 1234, añada esta llama al campo @code{services} de su sistema operativo:" #. type: lisp -#: guix-git/doc/guix.texi:18513 +#: guix-git/doc/guix.texi:18875 #, no-wrap msgid "" "(dropbear-service (dropbear-configuration\n" @@ -35726,110 +36439,110 @@ msgstr "" " (port-number 1234)))\n" #. type: deftp -#: guix-git/doc/guix.texi:18516 +#: guix-git/doc/guix.texi:18878 #, no-wrap msgid "{Data Type} dropbear-configuration" msgstr "{Tipo de datos} dropbear-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18518 +#: guix-git/doc/guix.texi:18880 msgid "This data type represents the configuration of a Dropbear SSH daemon." msgstr "Este tipo de datos representa la configuración del daemon Dropbear SSH." #. type: item -#: guix-git/doc/guix.texi:18520 +#: guix-git/doc/guix.texi:18882 #, no-wrap msgid "@code{dropbear} (default: @var{dropbear})" msgstr "@code{dropbear} (predeterminado: @var{dropbear})" #. type: table -#: guix-git/doc/guix.texi:18522 +#: guix-git/doc/guix.texi:18884 msgid "The Dropbear package to use." msgstr "El paquete de Dropbear usado." #. type: item -#: guix-git/doc/guix.texi:18523 +#: guix-git/doc/guix.texi:18885 #, no-wrap msgid "@code{port-number} (default: 22)" msgstr "@code{port-number} (predeterminado: 22)" #. type: table -#: guix-git/doc/guix.texi:18525 +#: guix-git/doc/guix.texi:18887 msgid "The TCP port where the daemon waits for incoming connections." msgstr "Puerto TCP donde el daemon espera conexiones entrantes." #. type: item -#: guix-git/doc/guix.texi:18526 +#: guix-git/doc/guix.texi:18888 #, no-wrap msgid "@code{syslog-output?} (default: @code{#t})" msgstr "@code{syslog-output?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18528 +#: guix-git/doc/guix.texi:18890 msgid "Whether to enable syslog output." msgstr "Determina si se envía la salida a syslog." #. type: item -#: guix-git/doc/guix.texi:18529 +#: guix-git/doc/guix.texi:18891 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/dropbear.pid\"})" msgstr "@code{pid-file} (predeterminado: @code{\"/var/run/dropbear.pid\"})" #. type: table -#: guix-git/doc/guix.texi:18531 +#: guix-git/doc/guix.texi:18893 msgid "File name of the daemon's PID file." msgstr "El nombre de archivo del archivo de PID del daemon." #. type: item -#: guix-git/doc/guix.texi:18532 +#: guix-git/doc/guix.texi:18894 #, no-wrap msgid "@code{root-login?} (default: @code{#f})" msgstr "@code{root-login?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18534 +#: guix-git/doc/guix.texi:18896 msgid "Whether to allow @code{root} logins." msgstr "Si se permite el ingreso al sistema como @code{root}." #. type: table -#: guix-git/doc/guix.texi:18537 +#: guix-git/doc/guix.texi:18899 msgid "Whether to allow empty passwords." msgstr "Si se permiten las contraseñas vacías." #. type: table -#: guix-git/doc/guix.texi:18540 +#: guix-git/doc/guix.texi:18902 msgid "Whether to enable password-based authentication." msgstr "Determina si se usará identificación basada en contraseña." #. type: cindex -#: guix-git/doc/guix.texi:18543 +#: guix-git/doc/guix.texi:18905 #, no-wrap msgid "AutoSSH" msgstr "AutoSSH" #. type: deffn -#: guix-git/doc/guix.texi:18544 +#: guix-git/doc/guix.texi:18906 #, no-wrap msgid "{Scheme Variable} autossh-service-type" msgstr "{Variable Scheme} autossh-service-type" #. type: deffn -#: guix-git/doc/guix.texi:18552 +#: guix-git/doc/guix.texi:18914 msgid "This is the type for the @uref{https://www.harding.motd.ca/autossh, AutoSSH} program that runs a copy of @command{ssh} and monitors it, restarting it as necessary should it die or stop passing traffic. AutoSSH can be run manually from the command-line by passing arguments to the binary @command{autossh} from the package @code{autossh}, but it can also be run as a Guix service. This latter use case is documented here." msgstr "Tipo del servicio para el programa @uref{https://www.harding.motd.ca/autossh, AutoSSH} que ejecuta una copia de @command{ssh} y la monitoriza, reiniciando la conexión en caso de que se rompa la conexión o deje de transmitir datos. AutoSSH puede ejecutarse manualmente en la línea de órdenes proporcionando los parámetros al binario @command{autossh} del paquete @code{autossh}, pero también se puede ejecutar como un servicio de Guix. Este último caso de uso se encuentra documentado aquí." #. type: deffn -#: guix-git/doc/guix.texi:18556 +#: guix-git/doc/guix.texi:18918 msgid "AutoSSH can be used to forward local traffic to a remote machine using an SSH tunnel, and it respects the @file{~/.ssh/config} of the user it is run as." msgstr "AutoSSH se puede usar para retransmitir tráfico local a una máquina remota usando un túnel SSH, y respeta el archivo de configuración @file{~/.ssh/config} de la cuenta bajo la que se ejecute." #. type: deffn -#: guix-git/doc/guix.texi:18561 +#: guix-git/doc/guix.texi:18923 msgid "For example, to specify a service running autossh as the user @code{pino} and forwarding all local connections to port @code{8081} to @code{remote:8081} using an SSH tunnel, add this call to the operating system's @code{services} field:" msgstr "Por ejemplo, para especificar un servicio que ejecute autossh con la cuenta @code{pino} y retransmita todas las conexiones locales al puerto @code{8081} hacia @code{remote:8081} usando un túnel SSH, añada esta llamada al campo @code{services} del sistema operativo:" #. type: lisp -#: guix-git/doc/guix.texi:18567 +#: guix-git/doc/guix.texi:18929 #, no-wrap msgid "" "(service autossh-service-type\n" @@ -35843,140 +36556,140 @@ msgstr "" " (ssh-options (list \"-T\" \"-N\" \"-L\" \"8081:localhost:8081\" \"remote.net\"))))\n" #. type: deftp -#: guix-git/doc/guix.texi:18570 +#: guix-git/doc/guix.texi:18932 #, no-wrap msgid "{Data Type} autossh-configuration" msgstr "{Tipo de datos} autossh-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18572 +#: guix-git/doc/guix.texi:18934 msgid "This data type represents the configuration of an AutoSSH service." msgstr "Este tipo de datos representa la configuración del servicio AutoSSH." #. type: item -#: guix-git/doc/guix.texi:18575 +#: guix-git/doc/guix.texi:18937 #, no-wrap msgid "@code{user} (default @code{\"autossh\"})" msgstr "@code{user} (predeterminado: @code{\"autossh\"})" #. type: table -#: guix-git/doc/guix.texi:18578 +#: guix-git/doc/guix.texi:18940 msgid "The user as which the AutoSSH service is to be run. This assumes that the specified user exists." msgstr "La cuenta de usuaria con la cual se ejecuta el servicio AutoSSH. Se asume que existe dicha cuenta." #. type: item -#: guix-git/doc/guix.texi:18579 +#: guix-git/doc/guix.texi:18941 #, no-wrap msgid "@code{poll} (default @code{600})" msgstr "@code{poll} (predeterminado: @code{600})" #. type: table -#: guix-git/doc/guix.texi:18581 +#: guix-git/doc/guix.texi:18943 msgid "Specifies the connection poll time in seconds." msgstr "Especifica el tiempo de comprobación de la conexión en segundos." #. type: item -#: guix-git/doc/guix.texi:18582 +#: guix-git/doc/guix.texi:18944 #, no-wrap msgid "@code{first-poll} (default @code{#f})" msgstr "@code{first-poll} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18588 +#: guix-git/doc/guix.texi:18950 msgid "Specifies how many seconds AutoSSH waits before the first connection test. After this first test, polling is resumed at the pace defined in @code{poll}. When set to @code{#f}, the first poll is not treated specially and will also use the connection poll specified in @code{poll}." msgstr "Especifica cuantos segundos espera AutoSSH antes de la primera prueba de conexión. Tras esta primera prueba las comprobaciones se realizan con la frecuencia definida en @code{poll}. Cuando se proporciona el valor @code{#f} la primera comprobación no se trata de manera especial y también usará el valor especificado en @code{poll}." #. type: item -#: guix-git/doc/guix.texi:18589 +#: guix-git/doc/guix.texi:18951 #, no-wrap msgid "@code{gate-time} (default @code{30})" msgstr "@code{gate-time} (predeterminado: @code{30})" #. type: table -#: guix-git/doc/guix.texi:18592 +#: guix-git/doc/guix.texi:18954 msgid "Specifies how many seconds an SSH connection must be active before it is considered successful." msgstr "Especifica cuantos segundos debe estar activa una conexión SSH antes de que se considere satisfactoria." #. type: item -#: guix-git/doc/guix.texi:18593 +#: guix-git/doc/guix.texi:18955 #, no-wrap msgid "@code{log-level} (default @code{1})" msgstr "@code{log-level} (predeterminado: @code{1})" #. type: table -#: guix-git/doc/guix.texi:18596 +#: guix-git/doc/guix.texi:18958 msgid "The log level, corresponding to the levels used by syslog---so @code{0} is the most silent while @code{7} is the chattiest." msgstr "El nivel de registro, corresponde con los niveles usados por---por lo que @code{0} es el más silencioso y @code{7} el que contiene más información." #. type: item -#: guix-git/doc/guix.texi:18597 +#: guix-git/doc/guix.texi:18959 #, no-wrap msgid "@code{max-start} (default @code{#f})" msgstr "@code{max-start} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18600 +#: guix-git/doc/guix.texi:18962 msgid "The maximum number of times SSH may be (re)started before AutoSSH exits. When set to @code{#f}, no maximum is configured and AutoSSH may restart indefinitely." msgstr "El número de veces máximo que puede lanzarse (o reiniciarse) SSH antes de que AutoSSH termine. Cuando se proporciona @code{#f}, no existe un máximo por lo que AutoSSH puede reiniciar la conexión indefinidamente." #. type: item -#: guix-git/doc/guix.texi:18601 +#: guix-git/doc/guix.texi:18963 #, no-wrap msgid "@code{message} (default @code{\"\"})" msgstr "@code{message} (predeterminado: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:18603 +#: guix-git/doc/guix.texi:18965 msgid "The message to append to the echo message sent when testing connections." msgstr "El mensaje que se añade al mensaje de eco que se envía cuando se prueban las conexiones." #. type: item -#: guix-git/doc/guix.texi:18604 +#: guix-git/doc/guix.texi:18966 #, no-wrap msgid "@code{port} (default @code{\"0\"})" msgstr "@code{port} (predeterminado: @code{\"0\"})" #. type: table -#: guix-git/doc/guix.texi:18614 +#: guix-git/doc/guix.texi:18976 msgid "The ports used for monitoring the connection. When set to @code{\"0\"}, monitoring is disabled. When set to @code{\"@var{n}\"} where @var{n} is a positive integer, ports @var{n} and @var{n}+1 are used for monitoring the connection, such that port @var{n} is the base monitoring port and @code{n+1} is the echo port. When set to @code{\"@var{n}:@var{m}\"} where @var{n} and @var{m} are positive integers, the ports @var{n} and @var{m} are used for monitoring the connection, such that port @var{n} is the base monitoring port and @var{m} is the echo port." msgstr "Los puertos usados para la monitorización de la conexión. Cuando se proporciona @code{\"0\"}, se desactiva la monitorización. Cuando se proporciona @code{\"@var{n}\"} donde @var{n} es un entero positivo, los puertos @var{n} y @var{n}+1 se usan para monitorizar la conexión, de tal modo que el puerto @var{n} es el puerto base de monitorización y @code{n+1} es el puerto de eco. Cuando se proporciona @code{\"@var{n}:@var{m}\"} donde @var{n} y @var{m} son enteros positivos, los puertos @var{n} y @var{m} se usan para monitorizar la conexión, de tal modo que @var{n} es el puerto base de monitorización y @var{m} es el puerto de eco." #. type: item -#: guix-git/doc/guix.texi:18615 +#: guix-git/doc/guix.texi:18977 #, no-wrap msgid "@code{ssh-options} (default @code{'()})" msgstr "@code{ssh-options} (predeterminados: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18619 +#: guix-git/doc/guix.texi:18981 msgid "The list of command-line arguments to pass to @command{ssh} when it is run. Options @option{-f} and @option{-M} are reserved for AutoSSH and may cause undefined behaviour." msgstr "Lista de parámetros de línea de órdenes proporcionados a @command{ssh} cuando se ejecuta. Las opciones @option{-f} y @option{-M} están reservadas para AutoSSH y pueden causar un comportamiento indefinido." #. type: cindex -#: guix-git/doc/guix.texi:18623 +#: guix-git/doc/guix.texi:18985 #, no-wrap msgid "WebSSH" msgstr "WebSSH" #. type: deffn -#: guix-git/doc/guix.texi:18624 +#: guix-git/doc/guix.texi:18986 #, no-wrap msgid "{Scheme Variable} webssh-service-type" msgstr "{Variable Scheme} webssh-service-type" #. type: deffn -#: guix-git/doc/guix.texi:18630 +#: guix-git/doc/guix.texi:18992 msgid "This is the type for the @uref{https://webssh.huashengdun.org/, WebSSH} program that runs a web SSH client. WebSSH can be run manually from the command-line by passing arguments to the binary @command{wssh} from the package @code{webssh}, but it can also be run as a Guix service. This latter use case is documented here." msgstr "Tipo para el programa @uref{https://webssh.huashengdun.org/, WebSSH} que ejecuta un cliente SSH web. WebSSH puede ejecutarse manualmente en la línea de órdenes proporcionando los parámetros al binario @command{wssh} del paquete @code{webssh}, pero también se puede ejecutar como un servicio de Guix. Este último caso de uso se encuentra documentado aquí." # FUZZY #. type: deffn -#: guix-git/doc/guix.texi:18636 +#: guix-git/doc/guix.texi:18998 msgid "For example, to specify a service running WebSSH on loopback interface on port @code{8888} with reject policy with a list of allowed to connection hosts, and NGINX as a reverse-proxy to this service listening for HTTPS connection, add this call to the operating system's @code{services} field:" msgstr "Por ejemplo, para especificar un servicio que ejecute WebSSH en la interfaz de red local sobre el puerto @code{8888} con una política de rechazo predeterminado con una lista de máquinas a las que se les permite explícitamente la conexión, y NGINX como pasarela inversa de este servicio a la escucha de conexiones HTTPS, añada esta llamada al campo @code{services} de su declaración de sistema operativo:" #. type: lisp -#: guix-git/doc/guix.texi:18644 +#: guix-git/doc/guix.texi:19006 #, no-wrap msgid "" "(service webssh-service-type\n" @@ -35996,7 +36709,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:18660 +#: guix-git/doc/guix.texi:19022 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -36032,133 +36745,133 @@ msgstr "" " (nginx-server-configuration-locations %webssh-configuration-nginx))))))))\n" #. type: deftp -#: guix-git/doc/guix.texi:18663 +#: guix-git/doc/guix.texi:19025 #, no-wrap msgid "{Data Type} webssh-configuration" msgstr "{Tipo de datos} webssh-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18665 +#: guix-git/doc/guix.texi:19027 msgid "Data type representing the configuration for @code{webssh-service}." msgstr "Tipo de datos que representa la configuración para @code{webssh-service}." #. type: item -#: guix-git/doc/guix.texi:18667 +#: guix-git/doc/guix.texi:19029 #, no-wrap msgid "@code{package} (default: @var{webssh})" msgstr "@code{package} (predeterminado: @var{webssh})" #. type: table -#: guix-git/doc/guix.texi:18669 +#: guix-git/doc/guix.texi:19031 msgid "@code{webssh} package to use." msgstr "Paquete @code{webssh} usado." #. type: item -#: guix-git/doc/guix.texi:18670 +#: guix-git/doc/guix.texi:19032 #, no-wrap msgid "@code{user-name} (default: @var{\"webssh\"})" msgstr "@code{user-name} (predeterminado: @var{\"webssh\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:18673 +#: guix-git/doc/guix.texi:19035 msgid "User name or user ID that file transfers to and from that module should take place." msgstr "Nombre o ID de usuaria bajo la cual se efectúan las transferencias desde y hacia el módulo." #. type: item -#: guix-git/doc/guix.texi:18674 +#: guix-git/doc/guix.texi:19036 #, no-wrap msgid "@code{group-name} (default: @var{\"webssh\"})" msgstr "@code{group-name} (predeterminado: @var{\"webssh\"})" #. type: item -#: guix-git/doc/guix.texi:18677 +#: guix-git/doc/guix.texi:19039 #, no-wrap msgid "@code{address} (default: @var{#f})" msgstr "@code{address} (predeterminada: @var{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:18679 +#: guix-git/doc/guix.texi:19041 msgid "IP address on which @command{webssh} listens for incoming connections." msgstr "Dirección IP en la que @command{webssh} espera conexiones entrantes." #. type: item -#: guix-git/doc/guix.texi:18680 +#: guix-git/doc/guix.texi:19042 #, no-wrap msgid "@code{port} (default: @var{8888})" msgstr "@code{port} (predeterminado: @var{8888})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:18682 +#: guix-git/doc/guix.texi:19044 msgid "TCP port on which @command{webssh} listens for incoming connections." msgstr "Puerto TCP en el que @command{webssh} espera conexiones entrantes." #. type: item -#: guix-git/doc/guix.texi:18683 +#: guix-git/doc/guix.texi:19045 #, no-wrap msgid "@code{policy} (default: @var{#f})" msgstr "@code{policy} (predeterminada: @var{#f})" #. type: table -#: guix-git/doc/guix.texi:18685 +#: guix-git/doc/guix.texi:19047 msgid "Connection policy. @var{reject} policy requires to specify @var{known-hosts}." msgstr "Política de conexión. La política @var{reject} necesita que se especifique un valor en @var{known-hosts}." #. type: item -#: guix-git/doc/guix.texi:18686 +#: guix-git/doc/guix.texi:19048 #, no-wrap msgid "@code{known-hosts} (default: @var{'()})" msgstr "@code{known-hosts} (predeterminada: @var{'()})" #. type: table -#: guix-git/doc/guix.texi:18688 +#: guix-git/doc/guix.texi:19050 msgid "List of hosts which allowed for SSH connection from @command{webssh}." msgstr "Lista de máquinas a las que se permite realizar conexiones SSH desde @command{webssh}." #. type: item -#: guix-git/doc/guix.texi:18689 +#: guix-git/doc/guix.texi:19051 #, no-wrap msgid "@code{log-file} (default: @file{\"/var/log/webssh.log\"})" msgstr "@code{log-file} (predeterminado: @file{\"/var/log/webssh.log\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:18691 +#: guix-git/doc/guix.texi:19053 #, fuzzy msgid "Name of the file where @command{webssh} writes its log file." msgstr "Nombre del archivo donde @command{rsync} escribe su archivo de registros." #. type: item -#: guix-git/doc/guix.texi:18692 +#: guix-git/doc/guix.texi:19054 #, no-wrap msgid "@code{log-level} (default: @var{#f})" msgstr "@code{log-level} (predeterminado: @var{#f})" #. type: table -#: guix-git/doc/guix.texi:18694 +#: guix-git/doc/guix.texi:19056 msgid "Logging level." msgstr "Nivel de registro." #. type: defvr -#: guix-git/doc/guix.texi:18698 +#: guix-git/doc/guix.texi:19060 #, no-wrap msgid "{Scheme Variable} %facebook-host-aliases" msgstr "{Variable Scheme} %facebook-host-aliases" #. type: defvr -#: guix-git/doc/guix.texi:18704 +#: guix-git/doc/guix.texi:19066 msgid "This variable contains a string for use in @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). Each line contains a entry that maps a known server name of the Facebook on-line service---e.g., @code{www.facebook.com}---to the local host---@code{127.0.0.1} or its IPv6 equivalent, @code{::1}." msgstr "Esta variable contiene una cadena para su uso en @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). Cada línea contiene una entrada que asocia un nombre de servidor conocido del servicio en línea Facebook---por ejemplo, @code{www.facebook.com}---a la máquina local---@code{127.0.0.1} o su equivalente IPv6, @code{::1}." #. type: defvr -#: guix-git/doc/guix.texi:18708 +#: guix-git/doc/guix.texi:19070 msgid "This variable is typically used in the @code{hosts-file} field of an @code{operating-system} declaration (@pxref{operating-system Reference, @file{/etc/hosts}}):" msgstr "Esta variable habitualmente se usa en el campo @code{hosts-file} de una declaración @code{operating-system} (@pxref{operating-system Reference, @file{/etc/hosts}}):" #. type: lisp -#: guix-git/doc/guix.texi:18721 +#: guix-git/doc/guix.texi:19083 #, no-wrap msgid "" "(operating-system\n" @@ -36182,91 +36895,91 @@ msgstr "" " %facebook-host-aliases))))\n" #. type: defvr -#: guix-git/doc/guix.texi:18725 +#: guix-git/doc/guix.texi:19087 msgid "This mechanism can prevent programs running locally, such as Web browsers, from accessing Facebook." msgstr "Este mecanismo puede impedir a los programas que se ejecutan localmente, como navegadores Web, el acceso a Facebook." #. type: Plain text -#: guix-git/doc/guix.texi:18728 +#: guix-git/doc/guix.texi:19090 msgid "The @code{(gnu services avahi)} provides the following definition." msgstr "El módulo @code{(gnu services avahi)} proporciona la siguiente definición." #. type: defvr -#: guix-git/doc/guix.texi:18729 +#: guix-git/doc/guix.texi:19091 #, no-wrap msgid "{Scheme Variable} avahi-service-type" msgstr "{Variable Scheme} avahi-service-type" # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:18734 +#: guix-git/doc/guix.texi:19096 msgid "This is the service that runs @command{avahi-daemon}, a system-wide mDNS/DNS-SD responder that allows for service discovery and ``zero-configuration'' host name lookups (see @uref{https://avahi.org/}). Its value must be an @code{avahi-configuration} record---see below." msgstr "Es el servicio que ejecuta @command{avahi-daemon}, un servidor mDNS/DNS-SD a nivel del sistema que permite el descubrimiento de servicios y la búsqueda de nombres de máquina ``sin configuración'' (``zero-configuration'', véase @uref{https://avahi.org/}). Su valor debe ser un registro @code{avahi-configuration}---véase a continuación. " # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:18739 +#: guix-git/doc/guix.texi:19101 msgid "This service extends the name service cache daemon (nscd) so that it can resolve @code{.local} host names using @uref{https://0pointer.de/lennart/projects/nss-mdns/, nss-mdns}. @xref{Name Service Switch}, for information on host name resolution." msgstr "Este servicio extiende el daemon de la caché del servicio de nombres (nscd) de manera que pueda resolver nombres de máquina @code{.local} mediante el uso de @uref{https://0pointer.de/lennart/projects/nss-mdns, nss-mds}. @xref{Name Service Switch}, para información sobre la resolución de nombres de máquina." # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:18742 +#: guix-git/doc/guix.texi:19104 msgid "Additionally, add the @var{avahi} package to the system profile so that commands such as @command{avahi-browse} are directly usable." msgstr "De manera adicional, añade el paquete @var{avahi} al perfil del sistema de manera que ordenes como @command{avahi-browse} estén disponibles de manera directa." #. type: deftp -#: guix-git/doc/guix.texi:18744 +#: guix-git/doc/guix.texi:19106 #, no-wrap msgid "{Data Type} avahi-configuration" msgstr "{Tipo de datos} avahi-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18746 +#: guix-git/doc/guix.texi:19108 msgid "Data type representation the configuration for Avahi." msgstr "Tipo de datos que representa la configuración de Avahi." #. type: item -#: guix-git/doc/guix.texi:18749 +#: guix-git/doc/guix.texi:19111 #, no-wrap msgid "@code{host-name} (default: @code{#f})" msgstr "@code{host-name} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18752 +#: guix-git/doc/guix.texi:19114 msgid "If different from @code{#f}, use that as the host name to publish for this machine; otherwise, use the machine's actual host name." msgstr "Si es diferente de @code{#f}, se usa como el nombre de máquina a publicar para esta máquina; en otro caso, usa el nombre actual de la máquina." #. type: item -#: guix-git/doc/guix.texi:18753 guix-git/doc/guix.texi:29132 +#: guix-git/doc/guix.texi:19115 guix-git/doc/guix.texi:29469 #, no-wrap msgid "@code{publish?} (default: @code{#t})" msgstr "@code{publish?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18756 +#: guix-git/doc/guix.texi:19118 msgid "When true, allow host names and services to be published (broadcast) over the network." msgstr "Cuando es verdadero, permite la publicación (retransmisión) de nombres de máquina y servicios a través de la red." #. type: item -#: guix-git/doc/guix.texi:18757 +#: guix-git/doc/guix.texi:19119 #, no-wrap msgid "@code{publish-workstation?} (default: @code{#t})" msgstr "@code{publish-workstation?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18761 +#: guix-git/doc/guix.texi:19123 msgid "When true, @command{avahi-daemon} publishes the machine's host name and IP address via mDNS on the local network. To view the host names published on your local network, you can run:" msgstr "Cuando es verdadero, @command{avahi-daemon} publica el nombre de máquina y la dirección IP a través de mDNS en la red local. Para ver los nombres de máquina publicados en su red local, puede ejecutar:" #. type: example -#: guix-git/doc/guix.texi:18764 +#: guix-git/doc/guix.texi:19126 #, no-wrap msgid "avahi-browse _workstation._tcp\n" msgstr "avahi-browse _workstation._tcp\n" #. type: item -#: guix-git/doc/guix.texi:18766 +#: guix-git/doc/guix.texi:19128 #, no-wrap msgid "@code{wide-area?} (default: @code{#f})" msgstr "@code{wide-area?} (predeterminado: @code{#f})" @@ -36275,91 +36988,91 @@ msgstr "@code{wide-area?} (predeterminado: @code{#f})" # TODO (MAAV): Necesito más conocimiento sobre el ámbito para poder # traducirlo bien... #. type: table -#: guix-git/doc/guix.texi:18768 +#: guix-git/doc/guix.texi:19130 msgid "When true, DNS-SD over unicast DNS is enabled." msgstr "Cuando es verdadero, se permite DNS-SD sobre DNS unicast." #. type: item -#: guix-git/doc/guix.texi:18769 +#: guix-git/doc/guix.texi:19131 #, no-wrap msgid "@code{ipv4?} (default: @code{#t})" msgstr "@code{ipv4?} (predeterminado: @code{#t})" #. type: itemx -#: guix-git/doc/guix.texi:18770 +#: guix-git/doc/guix.texi:19132 #, no-wrap msgid "@code{ipv6?} (default: @code{#t})" msgstr "@code{ipv6?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18772 +#: guix-git/doc/guix.texi:19134 msgid "These fields determine whether to use IPv4/IPv6 sockets." msgstr "Estos campos determinan si usar sockets IPv4/IPv6." #. type: item -#: guix-git/doc/guix.texi:18773 +#: guix-git/doc/guix.texi:19135 #, no-wrap msgid "@code{domains-to-browse} (default: @code{'()})" msgstr "@code{domains-to-browse} (predeterminado: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18775 +#: guix-git/doc/guix.texi:19137 msgid "This is a list of domains to browse." msgstr "Esta es la lista de dominios a explorar." #. type: deffn -#: guix-git/doc/guix.texi:18778 +#: guix-git/doc/guix.texi:19140 #, no-wrap msgid "{Scheme Variable} openvswitch-service-type" msgstr "{Variable Scheme} openvswitch-service-type" #. type: deffn -#: guix-git/doc/guix.texi:18782 +#: guix-git/doc/guix.texi:19144 msgid "This is the type of the @uref{https://www.openvswitch.org, Open vSwitch} service, whose value should be an @code{openvswitch-configuration} object." msgstr "Este es el tipo del servicio @uref{https://www.openvswitch.org, Open vSwitch}, cuyo valor debe ser un objeto @code{openvswitch-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:18784 +#: guix-git/doc/guix.texi:19146 #, no-wrap msgid "{Data Type} openvswitch-configuration" msgstr "{Tipo de datos} openvswitch-configuration" # FUZZY FUZZY FUZZY #. type: deftp -#: guix-git/doc/guix.texi:18788 +#: guix-git/doc/guix.texi:19150 msgid "Data type representing the configuration of Open vSwitch, a multilayer virtual switch which is designed to enable massive network automation through programmatic extension." msgstr "Tipo de datos que representa la configuración de Open vSwitch, un switch virtual multicapa que está diseñado para permitir una automatización masiva en la red a través de extensión programática." #. type: item -#: guix-git/doc/guix.texi:18790 +#: guix-git/doc/guix.texi:19152 #, no-wrap msgid "@code{package} (default: @var{openvswitch})" msgstr "@code{package} (predeterminado: @var{openvswitch})" #. type: table -#: guix-git/doc/guix.texi:18792 +#: guix-git/doc/guix.texi:19154 msgid "Package object of the Open vSwitch." msgstr "El objeto paquete de Open vSwitch." #. type: defvr -#: guix-git/doc/guix.texi:18796 +#: guix-git/doc/guix.texi:19158 #, no-wrap msgid "{Scheme Variable} pagekite-service-type" msgstr "{Variable Scheme} pagekite-service-type" # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:18801 +#: guix-git/doc/guix.texi:19163 msgid "This is the service type for the @uref{https://pagekite.net, PageKite} service, a tunneling solution for making localhost servers publicly visible, even from behind restrictive firewalls or NAT without forwarded ports. The value for this service type is a @code{pagekite-configuration} record." msgstr "El tipo de servicio para el servicio @uref{https://pagekite.net, PageKite}, una solución de encaminado para hacer servidores de la red local visibles públicamente, incluso detrás de cortafuegos restrictivos o NAT sin redirección de puertos. El valor para este servicio es un registro @code{pagekite-configuration}." #. type: defvr -#: guix-git/doc/guix.texi:18803 +#: guix-git/doc/guix.texi:19165 msgid "Here's an example exposing the local HTTP and SSH daemons:" msgstr "Este es un ejemplo que expone los daemon HTTP y SSH locales:" #. type: lisp -#: guix-git/doc/guix.texi:18810 +#: guix-git/doc/guix.texi:19172 #, no-wrap msgid "" "(service pagekite-service-type\n" @@ -36375,115 +37088,115 @@ msgstr "" " (extra-file \"/etc/pagekite.rc\")))\n" #. type: deftp -#: guix-git/doc/guix.texi:18813 +#: guix-git/doc/guix.texi:19175 #, no-wrap msgid "{Data Type} pagekite-configuration" msgstr "{Tipo de datos} pagekite-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18815 +#: guix-git/doc/guix.texi:19177 msgid "Data type representing the configuration of PageKite." msgstr "Tipo de datos que representa la configuración de PageKite." #. type: item -#: guix-git/doc/guix.texi:18817 +#: guix-git/doc/guix.texi:19179 #, no-wrap msgid "@code{package} (default: @var{pagekite})" msgstr "@code{package} (predeterminado: @var{pagekite})" #. type: table -#: guix-git/doc/guix.texi:18819 +#: guix-git/doc/guix.texi:19181 msgid "Package object of PageKite." msgstr "El objeto paquete de PageKite." #. type: item -#: guix-git/doc/guix.texi:18820 +#: guix-git/doc/guix.texi:19182 #, no-wrap msgid "@code{kitename} (default: @code{#f})" msgstr "@code{kitename} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:18822 +#: guix-git/doc/guix.texi:19184 msgid "PageKite name for authenticating to the frontend server." msgstr "Nombre de PageKite para la identificación con el servidor de fachada." #. type: item -#: guix-git/doc/guix.texi:18823 +#: guix-git/doc/guix.texi:19185 #, no-wrap msgid "@code{kitesecret} (default: @code{#f})" msgstr "@code{kitesecret} (predeterminado: @code{#f})" # FUZZY FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:18826 +#: guix-git/doc/guix.texi:19188 msgid "Shared secret for authenticating to the frontend server. You should probably put this inside @code{extra-file} instead." msgstr "Secreto compartido para la comunicación con el servidor. Probablemente debería almacenarlo dentro @code{extra-file} en vez de aquí." #. type: item -#: guix-git/doc/guix.texi:18827 +#: guix-git/doc/guix.texi:19189 #, no-wrap msgid "@code{frontend} (default: @code{#f})" msgstr "@code{frontend} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18830 +#: guix-git/doc/guix.texi:19192 msgid "Connect to the named PageKite frontend server instead of the @uref{https://pagekite.net,,pagekite.net} service." msgstr "Conecta al servidor de fachada de PageKite con este nombre en vez de al servicio de @uref{https://pagekite.net,,pagekite.net}." #. type: item -#: guix-git/doc/guix.texi:18831 +#: guix-git/doc/guix.texi:19193 #, no-wrap msgid "@code{kites} (default: @code{'(\"http:@@kitename:localhost:80:@@kitesecret\")})" msgstr "@code{kites} (predeterminados: @code{'(\"http:@@kitename:localhost:80:@@kitesecret\")})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:18834 +#: guix-git/doc/guix.texi:19196 #, fuzzy msgid "List of service kites to use. Exposes HTTP on port 80 by default. The format is @code{proto:kitename:host:port:secret}." msgstr "Lista de servicios de publicación (kite) usados. Expone HTTP en el puerto 80 de manera predeterminada. El formato es @code{protocolo:nombre-kite:máquina:puerto:secreto}." #. type: item -#: guix-git/doc/guix.texi:18835 +#: guix-git/doc/guix.texi:19197 #, no-wrap msgid "@code{extra-file} (default: @code{#f})" msgstr "@code{extra-file} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:18838 +#: guix-git/doc/guix.texi:19200 msgid "Extra configuration file to read, which you are expected to create manually. Use this to add additional options and manage shared secrets out-of-band." msgstr "Archivo adicional de configuración que debe leerse, el cual se espera que sea creado de forma manual. Úselo para añadir opciones adicionales y gestionar secretos compartidos fuera de banda." #. type: defvr -#: guix-git/doc/guix.texi:18842 +#: guix-git/doc/guix.texi:19204 #, fuzzy, no-wrap msgid "{Scheme Variable} yggdrasil-service-type" msgstr "{Variable Scheme} getmail-service-type" #. type: defvr -#: guix-git/doc/guix.texi:18846 +#: guix-git/doc/guix.texi:19208 msgid "The service type for connecting to the @uref{https://yggdrasil-network.github.io/, Yggdrasil network}, an early-stage implementation of a fully end-to-end encrypted IPv6 network." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:18853 +#: guix-git/doc/guix.texi:19215 msgid "Yggdrasil provides name-independent routing with cryptographically generated addresses. Static addressing means you can keep the same address as long as you want, even if you move to a new location, or generate a new address (by generating new keys) whenever you want. @uref{https://yggdrasil-network.github.io/2018/07/28/addressing.html}" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18857 +#: guix-git/doc/guix.texi:19219 msgid "Pass it a value of @code{yggdrasil-configuration} to connect it to public peers and/or local peers." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18861 +#: guix-git/doc/guix.texi:19223 msgid "Here is an example using public peers and a static address. The static signing and encryption keys are defined in @file{/etc/yggdrasil-private.conf} (the default value for @code{config-file})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18873 +#: guix-git/doc/guix.texi:19235 #, no-wrap msgid "" ";; part of the operating-system declaration\n" @@ -36499,7 +37212,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18880 +#: guix-git/doc/guix.texi:19242 #, no-wrap msgid "" "# sample content for /etc/yggdrasil-private.conf\n" @@ -36511,7 +37224,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18883 +#: guix-git/doc/guix.texi:19245 #, no-wrap msgid "" " # Your private encryption key. DO NOT share this with anyone!\n" @@ -36520,7 +37233,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18887 +#: guix-git/doc/guix.texi:19249 #, no-wrap msgid "" " # Your public signing key. You should not ordinarily need to share\n" @@ -36530,7 +37243,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18891 +#: guix-git/doc/guix.texi:19253 #, no-wrap msgid "" " # Your private signing key. DO NOT share this with anyone!\n" @@ -36539,126 +37252,126 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18894 +#: guix-git/doc/guix.texi:19256 #, fuzzy, no-wrap msgid "{Data Type} yggdrasil-configuration" msgstr "{Tipo de datos} mysql-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18896 +#: guix-git/doc/guix.texi:19258 #, fuzzy msgid "Data type representing the configuration of Yggdrasil." msgstr "Tipo de datos que representa la configuración de dnsmasq." #. type: item -#: guix-git/doc/guix.texi:18898 +#: guix-git/doc/guix.texi:19260 #, fuzzy, no-wrap msgid "@code{package} (default: @code{yggdrasil})" msgstr "@code{package} (predeterminado: @code{git})" #. type: table -#: guix-git/doc/guix.texi:18900 +#: guix-git/doc/guix.texi:19262 #, fuzzy msgid "Package object of Yggdrasil." msgstr "El objeto paquete de thermald." #. type: item -#: guix-git/doc/guix.texi:18901 +#: guix-git/doc/guix.texi:19263 #, fuzzy, no-wrap msgid "@code{json-config} (default: @code{'()})" msgstr "@code{extra-config} (predeterminada: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18907 +#: guix-git/doc/guix.texi:19269 msgid "Contents of @file{/etc/yggdrasil.conf}. Will be merged with @file{/etc/yggdrasil-private.conf}. Note that these settings are stored in the Guix store, which is readable to all users. @strong{Do not store your private keys in it}. See the output of @code{yggdrasil -genconf} for a quick overview of valid keys and their default values." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18908 +#: guix-git/doc/guix.texi:19270 #, fuzzy, no-wrap msgid "@code{autoconf?} (default: @code{#f})" msgstr "@code{auto-login?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18911 +#: guix-git/doc/guix.texi:19273 msgid "Whether to use automatic mode. Enabling it makes Yggdrasil use adynamic IP and peer with IPv6 neighbors." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18914 +#: guix-git/doc/guix.texi:19276 msgid "How much detail to include in logs. Use @code{'debug} for more detail." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18915 +#: guix-git/doc/guix.texi:19277 #, fuzzy, no-wrap msgid "@code{log-to} (default: @code{'stdout})" msgstr "@code{tor} (predeterminado: @code{tor})" #. type: table -#: guix-git/doc/guix.texi:18919 +#: guix-git/doc/guix.texi:19281 msgid "Where to send logs. By default, the service logs standard output to @file{/var/log/yggdrasil.log}. The alternative is @code{'syslog}, which sends output to the running syslog service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18920 +#: guix-git/doc/guix.texi:19282 #, fuzzy, no-wrap msgid "@code{config-file} (default: @code{\"/etc/yggdrasil-private.conf\"})" msgstr "@code{resolv-file} (predeterminado: @code{\"/etc/resolv.conf\"})" #. type: table -#: guix-git/doc/guix.texi:18927 +#: guix-git/doc/guix.texi:19289 msgid "What HJSON file to load sensitive data from. This is where private keys should be stored, which are necessary to specify if you don't want a randomized address after each restart. Use @code{#f} to disable. Options defined in this file take precedence over @code{json-config}. Use the output of @code{yggdrasil -genconf} as a starting point. To configure a static address, delete everything except these options:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18929 +#: guix-git/doc/guix.texi:19291 #, no-wrap msgid "EncryptionPublicKey" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18930 +#: guix-git/doc/guix.texi:19292 #, no-wrap msgid "EncryptionPrivateKey" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18931 +#: guix-git/doc/guix.texi:19293 #, no-wrap msgid "SigningPublicKey" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18932 +#: guix-git/doc/guix.texi:19294 #, no-wrap msgid "SigningPrivateKey" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18937 +#: guix-git/doc/guix.texi:19299 #, no-wrap msgid "IPFS" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18938 +#: guix-git/doc/guix.texi:19300 #, fuzzy, no-wrap msgid "{Scheme Variable} ipfs-service-type" msgstr "{Variable Scheme} pipefs-service-type" #. type: defvr -#: guix-git/doc/guix.texi:18942 +#: guix-git/doc/guix.texi:19304 msgid "The service type for connecting to the @uref{https://ipfs.io,IPFS network}, a global, versioned, peer-to-peer file system. Pass it a @code{ipfs-configuration} to change the ports used for the gateway and API." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18944 +#: guix-git/doc/guix.texi:19306 msgid "Here's an example configuration, using some non-standard ports:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18950 +#: guix-git/doc/guix.texi:19312 #, fuzzy, no-wrap msgid "" "(service ipfs-service-type\n" @@ -36672,72 +37385,72 @@ msgstr "" " (port \"6666\")))\n" #. type: deftp -#: guix-git/doc/guix.texi:18953 +#: guix-git/doc/guix.texi:19315 #, fuzzy, no-wrap msgid "{Data Type} ipfs-configuration" msgstr "{Tipo de datos} pipefs-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18955 +#: guix-git/doc/guix.texi:19317 #, fuzzy msgid "Data type representing the configuration of IPFS." msgstr "Tipo de datos que representa la configuración de GPM." #. type: item -#: guix-git/doc/guix.texi:18957 +#: guix-git/doc/guix.texi:19319 #, fuzzy, no-wrap msgid "@code{package} (default: @code{go-ipfs})" msgstr "@code{package} (predeterminado: @code{git})" #. type: table -#: guix-git/doc/guix.texi:18959 +#: guix-git/doc/guix.texi:19321 #, fuzzy msgid "Package object of IPFS." msgstr "El objeto paquete de PageKite." #. type: item -#: guix-git/doc/guix.texi:18960 +#: guix-git/doc/guix.texi:19322 #, fuzzy, no-wrap msgid "@code{gateway} (default: @code{\"/ip4/127.0.0.1/tcp/8082\"})" msgstr "@code{interface} (predeterminada: @code{\"127.0.0.1\"})" #. type: table -#: guix-git/doc/guix.texi:18962 +#: guix-git/doc/guix.texi:19324 msgid "Address of the gateway, in ‘multiaddress’ format." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18963 +#: guix-git/doc/guix.texi:19325 #, fuzzy, no-wrap msgid "@code{api} (default: @code{\"/ip4/127.0.0.1/tcp/5001\"})" msgstr "@code{bind} (predeterminada: @code{\"127.0.0.1\"})" #. type: table -#: guix-git/doc/guix.texi:18965 +#: guix-git/doc/guix.texi:19327 msgid "Address of the API endpoint, in ‘multiaddress’ format." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18968 +#: guix-git/doc/guix.texi:19330 #, fuzzy, no-wrap msgid "keepalived" msgstr "--keep-failed" #. type: deffn -#: guix-git/doc/guix.texi:18969 +#: guix-git/doc/guix.texi:19331 #, fuzzy, no-wrap msgid "{Scheme Variable} keepalived-service-type" msgstr "{Variable Scheme} mpd-service-type" # FUZZY #. type: deffn -#: guix-git/doc/guix.texi:18974 +#: guix-git/doc/guix.texi:19336 #, fuzzy msgid "This is the type for the @uref{https://www.keepalived.org/, Keepalived} routing software, @command{keepalived}. Its value must be an @code{keepalived-configuration} record as in this example for master machine:" msgstr "Este es el tipo para el daemon de shell seguro @uref{http://www.openssh.org, OpenSSH}, @command{sshd}. Su valor debe ser un registro @code{openssh-configuration} como en este ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:18979 +#: guix-git/doc/guix.texi:19341 #, fuzzy, no-wrap msgid "" "(service keepalived-service-type\n" @@ -36749,12 +37462,12 @@ msgstr "" " (config-file (local-file \"./mi-exim.conf\"))))\n" #. type: deffn -#: guix-git/doc/guix.texi:18982 +#: guix-git/doc/guix.texi:19344 msgid "where @file{keepalived-master.conf}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18994 +#: guix-git/doc/guix.texi:19356 #, no-wrap msgid "" "vrrp_instance my-group @{\n" @@ -36770,12 +37483,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18997 +#: guix-git/doc/guix.texi:19359 msgid "and for backup machine:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19002 +#: guix-git/doc/guix.texi:19364 #, fuzzy, no-wrap msgid "" "(service keepalived-service-type\n" @@ -36787,12 +37500,12 @@ msgstr "" " (config-file (local-file \"imap4d.conf\"))))\n" #. type: deffn -#: guix-git/doc/guix.texi:19005 +#: guix-git/doc/guix.texi:19367 msgid "where @file{keepalived-backup.conf}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:19017 +#: guix-git/doc/guix.texi:19379 #, no-wrap msgid "" "vrrp_instance my-group @{\n" @@ -36808,139 +37521,139 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19023 +#: guix-git/doc/guix.texi:19385 #, no-wrap msgid "unattended upgrades" msgstr "actualizaciones desatendidas" #. type: cindex -#: guix-git/doc/guix.texi:19024 +#: guix-git/doc/guix.texi:19386 #, no-wrap msgid "upgrades, unattended" msgstr "desatendidas, actualizaciones" #. type: Plain text -#: guix-git/doc/guix.texi:19029 +#: guix-git/doc/guix.texi:19391 msgid "Guix provides a service to perform @emph{unattended upgrades}: periodically, the system automatically reconfigures itself from the latest Guix. Guix System has several properties that make unattended upgrades safe:" msgstr "Guix proporciona un servicio para realizar @emph{actualizaciones desatendidas}: periodicamente el sistema se reconfigura automáticamente con la última revisión de Guix. El sistema Guix tiene varias propiedades que hacen que las actualizaciones desatendidas sean seguras:" #. type: itemize -#: guix-git/doc/guix.texi:19034 +#: guix-git/doc/guix.texi:19396 msgid "upgrades are transactional (either the upgrade succeeds or it fails, but you cannot end up with an ``in-between'' system state);" msgstr "las actualizaciones son transaccionales (o bien la actualización se lleva a cabo con éxito o bien falla, pero no puede acabar en un estado ``intermedio'' del sistema);" #. type: itemize -#: guix-git/doc/guix.texi:19038 +#: guix-git/doc/guix.texi:19400 msgid "the upgrade log is kept---you can view it with @command{guix system list-generations}---and you can roll back to any previous generation, should the upgraded system fail to behave as intended;" msgstr "el registro de actualizaciones se mantiene---puede acceder a dicho registro con @command{guix system list-generations}---y puede volver a una generación previa, en caso de que alguna generación no funcione como desee;" #. type: itemize -#: guix-git/doc/guix.texi:19041 +#: guix-git/doc/guix.texi:19403 msgid "channel code is authenticated so you know you can only run genuine code (@pxref{Channels});" msgstr "el código del canal se verifica de modo que únicamente pueda ejecutar código que ha sido firmado (@pxref{Channels});" # FUZZY #. type: itemize -#: guix-git/doc/guix.texi:19044 +#: guix-git/doc/guix.texi:19406 msgid "@command{guix system reconfigure} prevents downgrades, which makes it immune to @dfn{downgrade attacks}." msgstr "@command{guix system reconfigure} evita la instalación de versiones previas, que lo hace inmune a @dfn{ataques de versión anterior}." #. type: Plain text -#: guix-git/doc/guix.texi:19049 +#: guix-git/doc/guix.texi:19411 msgid "To set up unattended upgrades, add an instance of @code{unattended-upgrade-service-type} like the one below to the list of your operating system services:" msgstr "Para configurar las actualizaciones desatendidas, añada una instancia de @code{unattended-upgrade-service-type} como la que se muestra a continuación a la lista de servicios de su sistema operativo:" #. type: lisp -#: guix-git/doc/guix.texi:19052 +#: guix-git/doc/guix.texi:19414 #, no-wrap msgid "(service unattended-upgrade-service-type)\n" msgstr "(service unattended-upgrade-service-type)\n" #. type: Plain text -#: guix-git/doc/guix.texi:19059 +#: guix-git/doc/guix.texi:19421 msgid "The defaults above set up weekly upgrades: every Sunday at midnight. You do not need to provide the operating system configuration file: it uses @file{/run/current-system/configuration.scm}, which ensures it always uses your latest configuration---@pxref{provenance-service-type}, for more information about this file." msgstr "El valor predeterminado configura actualizaciones semanales: cada domingo a medianoche. No es necesario que proporcione el archivo de configuración de su sistema operativo: el servicio usa @file{/run/current-system/configuration.scm}, lo que asegura el uso de su última configuración---@pxref{provenance-service-type}, para obtener más información sobre este archivo." # FUZZY FUZZY # TODO (MAAV): as per #. type: Plain text -#: guix-git/doc/guix.texi:19065 +#: guix-git/doc/guix.texi:19427 msgid "There are several things that can be configured, in particular the periodicity and services (daemons) to be restarted upon completion. When the upgrade is successful, the service takes care of deleting system generations older that some threshold, as per @command{guix system delete-generations}. See the reference below for details." msgstr "Hay varios aspectos que se pueden configurar, en particular la periodicidad y los servicios (daemon) que se reiniciarán tras completar la actualización. Cuando la actualización se lleva a cabo satisfactoriamente el servicio se encarga de borrar las generaciones del sistema cuya antigüedad es superior a determinado valor, usando @command{guix system delete-generations}. Véase la referencia a continuación para obtener más detalles." #. type: Plain text -#: guix-git/doc/guix.texi:19069 +#: guix-git/doc/guix.texi:19431 msgid "To ensure that upgrades are actually happening, you can run @command{guix system describe}. To investigate upgrade failures, visit the unattended upgrade log file (see below)." msgstr "Para asegurar que las actualizaciones se están levando a cabo realmente, puede ejecutar @command{guix system describe}. Para investigar fallos en las actualizaciones, visite el archivo de registro de las actualizaciones desatendidas (véase a continuación)." #. type: defvr -#: guix-git/doc/guix.texi:19070 +#: guix-git/doc/guix.texi:19432 #, no-wrap msgid "{Scheme Variable} unattended-upgrade-service-type" msgstr "{Variable Scheme} unattended-upgrade-service-type" #. type: defvr -#: guix-git/doc/guix.texi:19074 +#: guix-git/doc/guix.texi:19436 msgid "This is the service type for unattended upgrades. It sets up an mcron job (@pxref{Scheduled Job Execution}) that runs @command{guix system reconfigure} from the latest version of the specified channels." msgstr "Es el tipo de servicio para las actualizaciones desatendidas. Configura un trabajo de mcron (@pxref{Scheduled Job Execution}) que ejecuta @command{guix system reconfigure} a partir de la última versión de los canales especificados." #. type: defvr -#: guix-git/doc/guix.texi:19077 +#: guix-git/doc/guix.texi:19439 msgid "Its value must be a @code{unattended-upgrade-configuration} record (see below)." msgstr "Su valor debe ser un registro @code{unattended-upgrade-configuration} (véase a continuación)." #. type: deftp -#: guix-git/doc/guix.texi:19079 +#: guix-git/doc/guix.texi:19441 #, no-wrap msgid "{Data Type} unattended-upgrade-configuration" msgstr "{Tipo de datos} unattended-upgrade-configuration" # FUZZY #. type: deftp -#: guix-git/doc/guix.texi:19082 +#: guix-git/doc/guix.texi:19444 msgid "This data type represents the configuration of the unattended upgrade service. The following fields are available:" msgstr "Este tipo de datos representa la configuración del servicio de actualizaciones desatendidas. Los siguientes campos están disponibles:" #. type: item -#: guix-git/doc/guix.texi:19084 +#: guix-git/doc/guix.texi:19446 #, no-wrap msgid "@code{schedule} (default: @code{\"30 01 * * 0\"})" msgstr "@code{schedule} (predeterminada: @code{\"30 01 * * 0\"})" #. type: table -#: guix-git/doc/guix.texi:19088 +#: guix-git/doc/guix.texi:19450 msgid "This is the schedule of upgrades, expressed as a gexp containing an mcron job schedule (@pxref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron})." msgstr "La planificación de las actualizaciones, expresada en una expresión-G que contiene una planificación de trabajo de mcron (@pxref{Syntax, mcron job specifications,, mcron, GNU@tie{}mcron})." #. type: item -#: guix-git/doc/guix.texi:19089 +#: guix-git/doc/guix.texi:19451 #, no-wrap msgid "@code{channels} (default: @code{#~%default-channels})" msgstr "@code{channels} (predeterminada: @code{#~%default-channels})" #. type: table -#: guix-git/doc/guix.texi:19093 +#: guix-git/doc/guix.texi:19455 msgid "This gexp specifies the channels to use for the upgrade (@pxref{Channels}). By default, the tip of the official @code{guix} channel is used." msgstr "Esta expresión-G especifica los canales usados para la actualización (@pxref{Channels}). De manera predeterminada, se usa la última revisión del canal oficial @code{guix}." #. type: item -#: guix-git/doc/guix.texi:19094 +#: guix-git/doc/guix.texi:19456 #, no-wrap msgid "@code{operating-system-file} (default: @code{\"/run/current-system/configuration.scm\"})" msgstr "@code{operating-system-file} (predeterminado: @code{\"/run/current-system/configuration.scm\"})" #. type: table -#: guix-git/doc/guix.texi:19097 +#: guix-git/doc/guix.texi:19459 msgid "This field specifies the operating system configuration file to use. The default is to reuse the config file of the current configuration." msgstr "Este campo especifica el archivo de configuración del sistema operativo usado. El valor predeterminado reutiliza el archivo de configuración de la configuración actual." #. type: table -#: guix-git/doc/guix.texi:19103 +#: guix-git/doc/guix.texi:19465 msgid "There are cases, though, where referring to @file{/run/current-system/configuration.scm} is not enough, for instance because that file refers to extra files (SSH public keys, extra configuration files, etc.) @i{via} @code{local-file} and similar constructs. For those cases, we recommend something along these lines:" msgstr "No obstante hay casos en los que no es suficiente hacer referencia a @file{/run/current-system/configuration.scm}, por ejemplo porque dicho archivo hace referencia a archivos adicionales (claves públicas de SSH, archivos de configuración adicionales, etcétera) a través de @code{local-file} y construcciones similares. Para estos casos recomendamos una configuración parecida a esta:" #. type: lisp -#: guix-git/doc/guix.texi:19109 +#: guix-git/doc/guix.texi:19471 #, no-wrap msgid "" "(unattended-upgrade-configuration\n" @@ -36954,157 +37667,157 @@ msgstr "" " \"/config.scm\")))\n" #. type: table -#: guix-git/doc/guix.texi:19116 +#: guix-git/doc/guix.texi:19478 msgid "The effect here is to import all of the current directory into the store, and to refer to @file{config.scm} within that directory. Therefore, uses of @code{local-file} within @file{config.scm} will work as expected. @xref{G-Expressions}, for information about @code{local-file} and @code{file-append}." msgstr "El efecto que esto tiene es la importación del directorio actual al completo en el almacén, y hace referencia a @file{config.scm} dentro de dicho directorio. Por lo tanto, los usos de @code{local-file} dentro de @file{config.scm} funcionarán como se espera. @xref{G-Expressions} para más información acerca de @code{local-file} y @code{file-append}." #. type: item -#: guix-git/doc/guix.texi:19117 +#: guix-git/doc/guix.texi:19479 #, no-wrap msgid "@code{services-to-restart} (default: @code{'(mcron)})" msgstr "@code{services-to-restart} (predeterminados: @code{'(mcron)})" #. type: table -#: guix-git/doc/guix.texi:19120 +#: guix-git/doc/guix.texi:19482 msgid "This field specifies the Shepherd services to restart when the upgrade completes." msgstr "Este campo especifica los servicios de Shepherd que se reiniciarán cuando se complete una actualización." #. type: table -#: guix-git/doc/guix.texi:19127 +#: guix-git/doc/guix.texi:19489 msgid "Those services are restarted right away upon completion, as with @command{herd restart}, which ensures that the latest version is running---remember that by default @command{guix system reconfigure} only restarts services that are not currently running, which is conservative: it minimizes disruption but leaves outdated services running." msgstr "Estos servicios se reinician tras completarse la actualización, como ejecutando @command{herd restart}, lo que asegura la ejecución de la última versión---recuerde que de manera predeterminada @command{guix system reconfigure} únicamente reinicia los servicios que no se están ejecutando en este momento, lo que es una aproximación conservadora: minimiza la disrupción pero mantiene servicios en ejecución con código previo a la actualización." #. type: table -#: guix-git/doc/guix.texi:19131 +#: guix-git/doc/guix.texi:19493 msgid "Use @command{herd status} to find out candidates for restarting. @xref{Services}, for general information about services. Common services to restart would include @code{ntpd} and @code{ssh-daemon}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19134 +#: guix-git/doc/guix.texi:19496 msgid "By default, the @code{mcron} service is restarted. This ensures that the latest version of the unattended upgrade job will be used next time." msgstr "De manera predeterminada se reinicia el servicio @code{mcron}. Esto asegura que la última versión del trabajo de actualización desatendida será la que se use la próxima vez." #. type: item -#: guix-git/doc/guix.texi:19135 +#: guix-git/doc/guix.texi:19497 #, no-wrap msgid "@code{system-expiration} (default: @code{(* 3 30 24 3600)})" msgstr "@code{system-expiration} (predeterminado: @code{(* 3 30 24 3600)})" #. type: table -#: guix-git/doc/guix.texi:19139 +#: guix-git/doc/guix.texi:19501 msgid "This is the expiration time in seconds for system generations. System generations older that this amount of time are deleted with @command{guix system delete-generations} when an upgrade completes." msgstr "Tiempo de expiración en segundos de las generaciones del sistema. Las generaciones del sistema cuya antigüedad sea mayor que esta cantidad de tiempo se borran con @command{guix system delete-generations} cuando se completa una actualización." #. type: quotation -#: guix-git/doc/guix.texi:19144 +#: guix-git/doc/guix.texi:19506 msgid "The unattended upgrade service does not run the garbage collector. You will probably want to set up your own mcron job to run @command{guix gc} periodically." msgstr "El servicio de actualizaciones desatendidas no ejecuta el proceso de recolección de basura. Probablemente quiera añadir su propio trabajo a mcron para ejecutar @command{guix gc} de manera periódica." #. type: item -#: guix-git/doc/guix.texi:19146 +#: guix-git/doc/guix.texi:19508 #, no-wrap msgid "@code{maximum-duration} (default: @code{3600})" msgstr "@code{maximum-duration} (predeterminado: @code{3600})" #. type: table -#: guix-git/doc/guix.texi:19149 +#: guix-git/doc/guix.texi:19511 msgid "Maximum duration in seconds for the upgrade; past that time, the upgrade aborts." msgstr "Duración máxima en segundos de la actualización; tras pasar este tiempo se aborta la actualización." #. type: table -#: guix-git/doc/guix.texi:19152 +#: guix-git/doc/guix.texi:19514 msgid "This is primarily useful to ensure the upgrade does not end up rebuilding or re-downloading ``the world''." msgstr "Esto es útil principalmente para asegurar que una actualización no reconstruye o vuelve a descargarse ``el mundo entero''." #. type: item -#: guix-git/doc/guix.texi:19153 +#: guix-git/doc/guix.texi:19515 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/unattended-upgrade.log\"})" msgstr "@code{log-file} (predeterminado: @code{\"/var/log/unattended-upgrade.log\"})" #. type: table -#: guix-git/doc/guix.texi:19155 +#: guix-git/doc/guix.texi:19517 msgid "File where unattended upgrades are logged." msgstr "Archivo donde se registran las actualizaciones desatendidas." #. type: cindex -#: guix-git/doc/guix.texi:19161 +#: guix-git/doc/guix.texi:19523 #, no-wrap msgid "X11" msgstr "X11" # XXX: Dudas de traducción... #. type: cindex -#: guix-git/doc/guix.texi:19162 +#: guix-git/doc/guix.texi:19524 #, no-wrap msgid "X Window System" msgstr "sistema X Window" #. type: cindex -#: guix-git/doc/guix.texi:19163 guix-git/doc/guix.texi:19436 +#: guix-git/doc/guix.texi:19525 guix-git/doc/guix.texi:19798 #, no-wrap msgid "login manager" msgstr "gestor de ingreso en el sistema" #. type: Plain text -#: guix-git/doc/guix.texi:19168 +#: guix-git/doc/guix.texi:19530 msgid "Support for the X Window graphical display system---specifically Xorg---is provided by the @code{(gnu services xorg)} module. Note that there is no @code{xorg-service} procedure. Instead, the X server is started by the @dfn{login manager}, by default the GNOME Display Manager (GDM)." msgstr "El sistema gráfico X Window---específicamente Xorg---se proporciona en el módulo @code{(gnu services xorg)}. Fíjese que no existe un procedimiento @code{xorg-service}. En vez de eso, el servidor X se inicia por el @dfn{gestor de ingreso al sistema}, de manera predeterminada el gestor de acceso de GNOME (GDM)." #. type: cindex -#: guix-git/doc/guix.texi:19169 +#: guix-git/doc/guix.texi:19531 #, no-wrap msgid "GDM" msgstr "GDM" #. type: cindex -#: guix-git/doc/guix.texi:19170 +#: guix-git/doc/guix.texi:19532 #, no-wrap msgid "GNOME, login manager" msgstr "GNOME, gestor de ingreso al sistema" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:19174 +#: guix-git/doc/guix.texi:19536 msgid "GDM of course allows users to log in into window managers and desktop environments other than GNOME; for those using GNOME, GDM is required for features such as automatic screen locking." msgstr "GDM por supuesto que permite a las usuarias ingresar al sistema con gestores de ventanas y entornos de escritorio distintos a GNOME; para aquellas que usan GNOME, GDM es necesario para características como el bloqueo automático de pantalla." #. type: cindex -#: guix-git/doc/guix.texi:19175 +#: guix-git/doc/guix.texi:19537 #, no-wrap msgid "window manager" msgstr "gestor de ventanas" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:19180 +#: guix-git/doc/guix.texi:19542 msgid "To use X11, you must install at least one @dfn{window manager}---for example the @code{windowmaker} or @code{openbox} packages---preferably by adding it to the @code{packages} field of your operating system definition (@pxref{operating-system Reference, system-wide packages})." msgstr "Para usar X11, debe instalar al menos un @dfn{gestor de ventanas}---por ejemplo los paquetes @code{windowmaker} o @code{openbox}---, preferiblemente añadiendo el que desee al campo @code{packages} de su definición de sistema operativo (@pxref{operating-system Reference, paquetes del sistema})." #. type: anchor{#1} -#: guix-git/doc/guix.texi:19186 +#: guix-git/doc/guix.texi:19548 msgid "wayland-gdm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19186 +#: guix-git/doc/guix.texi:19548 msgid "GDM also supports Wayland: it can itself use Wayland instead of X11 for its user interface, and it can also start Wayland sessions. The former is required for the latter, to enable, set @code{wayland?} to @code{#t} in @code{gdm-configuration}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19187 +#: guix-git/doc/guix.texi:19549 #, no-wrap msgid "{Scheme Variable} gdm-service-type" msgstr "{Variable Scheme} gdm-service-type" # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:19192 +#: guix-git/doc/guix.texi:19554 msgid "This is the type for the @uref{https://wiki.gnome.org/Projects/GDM/, GNOME Desktop Manager} (GDM), a program that manages graphical display servers and handles graphical user logins. Its value must be a @code{gdm-configuration} (see below)." msgstr "Este es el tipo para el @uref{https://wiki.gnome.org/Projects/GDM/, gestor de acceso de GNOME} (GDM), un programa que gestiona servidores gráficos y maneja de forma gráfica el ingreso al sistema de usuarias. Su valor debe ser un@code{gdm-configuration} (véase a continuación). " #. type: cindex -#: guix-git/doc/guix.texi:19193 +#: guix-git/doc/guix.texi:19555 #, fuzzy, no-wrap #| msgid "X11 session types" msgid "session types" @@ -37112,166 +37825,166 @@ msgstr "X11, tipos de sesión" # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:19201 +#: guix-git/doc/guix.texi:19563 #, fuzzy #| msgid "GDM looks for @dfn{session types} described by the @file{.desktop} files in @file{/run/current-system/profile/share/xsessions} and allows users to choose a session from the log-in screen. Packages such as @code{gnome}, @code{xfce}, and @code{i3} provide @file{.desktop} files; adding them to the system-wide set of packages automatically makes them available at the log-in screen." msgid "GDM looks for @dfn{session types} described by the @file{.desktop} files in @file{/run/current-system/profile/share/xsessions} (for X11 sessions) and @file{/run/current-system/profile/share/wayland-sessions} (for Wayland sessions) and allows users to choose a session from the log-in screen. Packages such as @code{gnome}, @code{xfce}, @code{i3} and @code{sway} provide @file{.desktop} files; adding them to the system-wide set of packages automatically makes them available at the log-in screen." msgstr "GDM busca @dfn{tipos de sesión} descritos por los archivos @file{.desktop} en @file{/run/current-system/profile/share/xsessions} y permite a las usuarias seleccionar una sesión en la pantalla de ingreso. Paquetes como @code{gnome}, @code{xfce} y @code{i3} proporcionan archivos @file{.desktop}; su adición a la lista global de paquetes hace que estén automáticamente disponibles en la pantalla de ingreso al sistema." #. type: defvr -#: guix-git/doc/guix.texi:19205 +#: guix-git/doc/guix.texi:19567 msgid "In addition, @file{~/.xsession} files are honored. When available, @file{~/.xsession} must be an executable that starts a window manager and/or other X clients." msgstr "Además, se respetan los archivos @file{~/.xsession}. Cuando esté disponible, @file{~/.xsession} debe ser un ejecutable que inicie un gestor de ventanas y/o otros clientes de X." #. type: deftp -#: guix-git/doc/guix.texi:19207 +#: guix-git/doc/guix.texi:19569 #, no-wrap msgid "{Data Type} gdm-configuration" msgstr "{Tipo de datos} gdm-configuration" #. type: item -#: guix-git/doc/guix.texi:19209 guix-git/doc/guix.texi:19291 +#: guix-git/doc/guix.texi:19571 guix-git/doc/guix.texi:19653 #, no-wrap msgid "@code{auto-login?} (default: @code{#f})" msgstr "@code{auto-login?} (predeterminado: @code{#f})" #. type: itemx -#: guix-git/doc/guix.texi:19210 +#: guix-git/doc/guix.texi:19572 #, no-wrap msgid "@code{default-user} (default: @code{#f})" msgstr "@code{default-user} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:19212 +#: guix-git/doc/guix.texi:19574 msgid "When @code{auto-login?} is false, GDM presents a log-in screen." msgstr "Cuando @code{auto-login?} es falso, GDM presenta una pantalla de ingreso." #. type: table -#: guix-git/doc/guix.texi:19215 +#: guix-git/doc/guix.texi:19577 msgid "When @code{auto-login?} is true, GDM logs in directly as @code{default-user}." msgstr "Cuando @code{auto-login?} es verdadero, GDM ingresa directamente al sistema como @code{default-user}." #. type: item -#: guix-git/doc/guix.texi:19216 guix-git/doc/guix.texi:25077 -#: guix-git/doc/guix.texi:26786 guix-git/doc/guix.texi:31266 -#: guix-git/doc/guix.texi:31295 guix-git/doc/guix.texi:31324 -#: guix-git/doc/guix.texi:31351 guix-git/doc/guix.texi:31406 -#: guix-git/doc/guix.texi:31431 guix-git/doc/guix.texi:31458 -#: guix-git/doc/guix.texi:31484 guix-git/doc/guix.texi:31526 +#: guix-git/doc/guix.texi:19578 guix-git/doc/guix.texi:25439 +#: guix-git/doc/guix.texi:27123 guix-git/doc/guix.texi:31631 +#: guix-git/doc/guix.texi:31660 guix-git/doc/guix.texi:31689 +#: guix-git/doc/guix.texi:31716 guix-git/doc/guix.texi:31771 +#: guix-git/doc/guix.texi:31796 guix-git/doc/guix.texi:31823 +#: guix-git/doc/guix.texi:31849 guix-git/doc/guix.texi:31891 #, no-wrap msgid "@code{debug?} (default: @code{#f})" msgstr "@code{debug?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:19218 +#: guix-git/doc/guix.texi:19580 msgid "When true, GDM writes debug messages to its log." msgstr "Cuando tiene valor verdadero, GDM escribe los mensajes de depuración en su registro." #. type: item -#: guix-git/doc/guix.texi:19219 +#: guix-git/doc/guix.texi:19581 #, no-wrap msgid "@code{gnome-shell-assets} (default: ...)" msgstr "@code{gnome-shell-assets} (predeterminados: ...)" # FUZZY FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:19221 +#: guix-git/doc/guix.texi:19583 msgid "List of GNOME Shell assets needed by GDM: icon theme, fonts, etc." msgstr "Lista de activos de GNOME Shell necesarios para GDM: tema de iconos, fuentes, etc.cc" #. type: item -#: guix-git/doc/guix.texi:19222 +#: guix-git/doc/guix.texi:19584 #, no-wrap msgid "@code{xorg-configuration} (default: @code{(xorg-configuration)})" msgstr "@code{xorg-configuration} (predeterminada: @code{(xorg-configuration)})" #. type: table -#: guix-git/doc/guix.texi:19224 guix-git/doc/guix.texi:19318 -#: guix-git/doc/guix.texi:19402 +#: guix-git/doc/guix.texi:19586 guix-git/doc/guix.texi:19680 +#: guix-git/doc/guix.texi:19764 msgid "Configuration of the Xorg graphical server." msgstr "Configuración del servidor gráfico Xorg." #. type: item -#: guix-git/doc/guix.texi:19225 +#: guix-git/doc/guix.texi:19587 #, no-wrap msgid "@code{xsession} (default: @code{(xinitrc)})" msgstr "@code{xsession} (predeterminado: @code{(xinitrc)})" #. type: table -#: guix-git/doc/guix.texi:19227 guix-git/doc/guix.texi:19417 +#: guix-git/doc/guix.texi:19589 guix-git/doc/guix.texi:19779 msgid "Script to run before starting a X session." msgstr "Guión a ejecutar antes de iniciar una sesión X." #. type: item -#: guix-git/doc/guix.texi:19228 +#: guix-git/doc/guix.texi:19590 #, no-wrap msgid "@code{dbus-daemon} (default: @code{dbus-daemon-wrapper})" msgstr "@code{dbus-daemon} (predeterminado: @code{dbus-daemon-wrapper})" #. type: table -#: guix-git/doc/guix.texi:19230 +#: guix-git/doc/guix.texi:19592 msgid "File name of the @code{dbus-daemon} executable." msgstr "El nombre de archivo del ejecutable @code{dbus-daemon}." #. type: item -#: guix-git/doc/guix.texi:19231 +#: guix-git/doc/guix.texi:19593 #, no-wrap msgid "@code{gdm} (default: @code{gdm})" msgstr "@code{gdm} (predeterminado: @code{gdm})" #. type: table -#: guix-git/doc/guix.texi:19233 +#: guix-git/doc/guix.texi:19595 msgid "The GDM package to use." msgstr "El paquete GDM usado." #. type: item -#: guix-git/doc/guix.texi:19234 +#: guix-git/doc/guix.texi:19596 #, fuzzy, no-wrap msgid "@code{wayland?} (default: @code{#f})" msgstr "@code{hangup?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:19236 +#: guix-git/doc/guix.texi:19598 msgid "When true, enables Wayland in GDM, necessary to use Wayland sessions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19237 +#: guix-git/doc/guix.texi:19599 #, fuzzy, no-wrap #| msgid "@code{dbus-daemon} (default: @code{dbus-daemon-wrapper})" msgid "@code{wayland-session} (default: @code{gdm-wayland-session-wrapper})" msgstr "@code{dbus-daemon} (predeterminado: @code{dbus-daemon-wrapper})" #. type: table -#: guix-git/doc/guix.texi:19240 +#: guix-git/doc/guix.texi:19602 msgid "The Wayland session wrapper to use, needed to setup the environment." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19243 +#: guix-git/doc/guix.texi:19605 #, no-wrap msgid "{Scheme Variable} slim-service-type" msgstr "{Variable Scheme} slim-service-type" # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:19245 +#: guix-git/doc/guix.texi:19607 msgid "This is the type for the SLiM graphical login manager for X11." msgstr "Este es el tipo para el gestor de ingreso al sistema gráfico para X11 SLiM." # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:19249 +#: guix-git/doc/guix.texi:19611 msgid "Like GDM, SLiM looks for session types described by @file{.desktop} files and allows users to choose a session from the log-in screen using @kbd{F1}. It also honors @file{~/.xsession} files." msgstr "Como GDM, SLiM busca tipos de sesión descritos por archivos @file{.desktop} y permite a las usuarias la selección de sesión en la pantalla de ingreso al sistema mediante el uso de @kbd{F1}. También respeta los archivos @file{~/.xsession}." #. type: defvr -#: guix-git/doc/guix.texi:19256 +#: guix-git/doc/guix.texi:19618 msgid "Unlike GDM, SLiM does not spawn the user session on a different VT after logging in, which means that you can only start one graphical session. If you want to be able to run multiple graphical sessions at the same time you have to add multiple SLiM services to your system services. The following example shows how to replace the default GDM service with two SLiM services on tty7 and tty8." msgstr "Al contrario que GDM, SLiM no lanza las sesiones de las usuarias en terminales virtuales diferentes al usado para el ingreso, lo que significa que únicamente puede iniciar una sesión gráfica. Si desea ejecutar varias sesiones gráficas de manera simultánea, debe añadir múltiples servicios de SLiM a los servicios de su sistema. El ejemplo siguiente muestra cómo sustituir el servicio GDM predeterminado con dos servicios de SLiM en tty7 y tty8." #. type: lisp -#: guix-git/doc/guix.texi:19261 +#: guix-git/doc/guix.texi:19623 #, fuzzy, no-wrap #| msgid "" #| "(use-modules (gnu services)\n" @@ -37292,7 +38005,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:19272 +#: guix-git/doc/guix.texi:19634 #, fuzzy, no-wrap msgid "" "(operating-system\n" @@ -37319,494 +38032,494 @@ msgstr "" " %desktop-services))))\n" #. type: deftp -#: guix-git/doc/guix.texi:19276 +#: guix-git/doc/guix.texi:19638 #, no-wrap msgid "{Data Type} slim-configuration" msgstr "{Tipo de datos} slim-configuration" #. type: deftp -#: guix-git/doc/guix.texi:19278 +#: guix-git/doc/guix.texi:19640 msgid "Data type representing the configuration of @code{slim-service-type}." msgstr "Tipo de datos que representa la configuración de @code{slim-service-type}." #. type: table -#: guix-git/doc/guix.texi:19282 +#: guix-git/doc/guix.texi:19644 msgid "Whether to allow logins with empty passwords." msgstr "Si se permite el ingreso al sistema con contraseñas vacías." #. type: item -#: guix-git/doc/guix.texi:19283 +#: guix-git/doc/guix.texi:19645 #, fuzzy, no-wrap #| msgid "@code{hangup?} (default: @code{#f})" msgid "@code{gnupg?} (default: @code{#f})" msgstr "@code{hangup?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:19290 +#: guix-git/doc/guix.texi:19652 msgid "If enabled, @code{pam-gnupg} will attempt to automatically unlock the user's GPG keys with the login password via @code{gpg-agent}. The keygrips of all keys to be unlocked should be written to @file{~/.pam-gnupg}, and can be queried with @code{gpg -K --with-keygrip}. Presetting passphrases must be enabled by adding @code{allow-preset-passphrase} in @file{~/.gnupg/gpg-agent.conf}." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:19292 +#: guix-git/doc/guix.texi:19654 #, no-wrap msgid "@code{default-user} (default: @code{\"\"})" msgstr "@code{default-user} (predeterminado: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:19294 +#: guix-git/doc/guix.texi:19656 msgid "When @code{auto-login?} is false, SLiM presents a log-in screen." msgstr "Cuando @code{auto-login?} es falso, SLiM presenta una pantalla de ingreso." #. type: table -#: guix-git/doc/guix.texi:19297 +#: guix-git/doc/guix.texi:19659 msgid "When @code{auto-login?} is true, SLiM logs in directly as @code{default-user}." msgstr "Cuando @code{auto-login?} es verdadero, SLiM ingresa en el sistema directamente como @code{default-user}." #. type: item -#: guix-git/doc/guix.texi:19298 +#: guix-git/doc/guix.texi:19660 #, no-wrap msgid "@code{theme} (default: @code{%default-slim-theme})" msgstr "@code{theme} (predeterminado: @code{%default-slim-theme})" #. type: itemx -#: guix-git/doc/guix.texi:19299 +#: guix-git/doc/guix.texi:19661 #, no-wrap msgid "@code{theme-name} (default: @code{%default-slim-theme-name})" msgstr "@code{theme-name} (predeterminado: @code{%default-slim-theme-name})" #. type: table -#: guix-git/doc/guix.texi:19301 +#: guix-git/doc/guix.texi:19663 msgid "The graphical theme to use and its name." msgstr "El tema gráfico usado y su nombre." #. type: item -#: guix-git/doc/guix.texi:19302 +#: guix-git/doc/guix.texi:19664 #, no-wrap msgid "@code{auto-login-session} (default: @code{#f})" msgstr "@code{auto-login-session} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:19305 +#: guix-git/doc/guix.texi:19667 msgid "If true, this must be the name of the executable to start as the default session---e.g., @code{(file-append windowmaker \"/bin/windowmaker\")}." msgstr "Si es verdadero, debe ser el nombre del ejecutable a arrancar como la sesión predeterminada---por ejemplo, @code{(file-append windowmaker \"/bin/windowmaker\")}." #. type: table -#: guix-git/doc/guix.texi:19309 +#: guix-git/doc/guix.texi:19671 msgid "If false, a session described by one of the available @file{.desktop} files in @code{/run/current-system/profile} and @code{~/.guix-profile} will be used." msgstr "Si es falso, se usará una sesión de las descritas en uno de los archivos @file{.desktop} disponibles en @code{/run/current-system/profile} y @code{~/.guix-profile}." #. type: quotation -#: guix-git/doc/guix.texi:19314 +#: guix-git/doc/guix.texi:19676 msgid "You must install at least one window manager in the system profile or in your user profile. Failing to do that, if @code{auto-login-session} is false, you will be unable to log in." msgstr "Debe instalar al menos un gestor de ventanas en el perfil del sistema o en su perfil de usuaria. En caso de no hacerlo, si @code{auto-login-session} es falso, no podrá ingresar al sistema." #. type: item -#: guix-git/doc/guix.texi:19316 guix-git/doc/guix.texi:19400 +#: guix-git/doc/guix.texi:19678 guix-git/doc/guix.texi:19762 #, no-wrap msgid "@code{xorg-configuration} (default @code{(xorg-configuration)})" msgstr "@code{xorg-configuration} (predeterminada @code{(xorg-configuration)})" #. type: item -#: guix-git/doc/guix.texi:19319 +#: guix-git/doc/guix.texi:19681 #, no-wrap msgid "@code{display} (default @code{\":0\"})" msgstr "@code{display} (predeterminada: @code{\":0\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:19321 +#: guix-git/doc/guix.texi:19683 msgid "The display on which to start the Xorg graphical server." msgstr "La pantalla en la que se iniciará el servidor gráfico Xorg." #. type: item -#: guix-git/doc/guix.texi:19322 +#: guix-git/doc/guix.texi:19684 #, no-wrap msgid "@code{vt} (default @code{\"vt7\"})" msgstr "@code{vt} (predeterminado: @code{\"vt7\"})" #. type: table -#: guix-git/doc/guix.texi:19324 +#: guix-git/doc/guix.texi:19686 msgid "The VT on which to start the Xorg graphical server." msgstr "El terminal virtual (VT) en el que se iniciará el servidor gráfico Xorg." #. type: item -#: guix-git/doc/guix.texi:19325 +#: guix-git/doc/guix.texi:19687 #, no-wrap msgid "@code{xauth} (default: @code{xauth})" msgstr "@code{xauth} (predeterminado: @code{xauth})" #. type: table -#: guix-git/doc/guix.texi:19327 +#: guix-git/doc/guix.texi:19689 msgid "The XAuth package to use." msgstr "El paquete XAuth usado." #. type: item -#: guix-git/doc/guix.texi:19328 +#: guix-git/doc/guix.texi:19690 #, no-wrap msgid "@code{shepherd} (default: @code{shepherd})" msgstr "@code{shepherd} (predeterminado: @code{shepherd})" #. type: table -#: guix-git/doc/guix.texi:19331 +#: guix-git/doc/guix.texi:19693 msgid "The Shepherd package used when invoking @command{halt} and @command{reboot}." msgstr "El paquete de Shepherd usado para la invocación de @command{halt} y @command{reboot}." #. type: item -#: guix-git/doc/guix.texi:19332 +#: guix-git/doc/guix.texi:19694 #, no-wrap msgid "@code{sessreg} (default: @code{sessreg})" msgstr "@code{sessreg} (predeterminado: @code{sessreg})" #. type: table -#: guix-git/doc/guix.texi:19334 +#: guix-git/doc/guix.texi:19696 msgid "The sessreg package used in order to register the session." msgstr "El paquete sessreg usado para el registro de la sesión." #. type: item -#: guix-git/doc/guix.texi:19335 +#: guix-git/doc/guix.texi:19697 #, no-wrap msgid "@code{slim} (default: @code{slim})" msgstr "@code{slim} (predeterminado: @code{slim})" #. type: table -#: guix-git/doc/guix.texi:19337 +#: guix-git/doc/guix.texi:19699 msgid "The SLiM package to use." msgstr "El paquete SLiM usado." #. type: defvr -#: guix-git/doc/guix.texi:19340 +#: guix-git/doc/guix.texi:19702 #, no-wrap msgid "{Scheme Variable} %default-theme" msgstr "{Variable Scheme} %default-theme" #. type: defvrx -#: guix-git/doc/guix.texi:19341 +#: guix-git/doc/guix.texi:19703 #, no-wrap msgid "{Scheme Variable} %default-theme-name" msgstr "{Variable Scheme} %default-theme-name" #. type: defvr -#: guix-git/doc/guix.texi:19343 +#: guix-git/doc/guix.texi:19705 msgid "The default SLiM theme and its name." msgstr "El tema predeterminado de SLiM y su nombre." #. type: deftp -#: guix-git/doc/guix.texi:19346 guix-git/doc/guix.texi:19453 +#: guix-git/doc/guix.texi:19708 guix-git/doc/guix.texi:19815 #, no-wrap msgid "{Data Type} sddm-configuration" msgstr "{Tipo de datos} sddm-configuration" #. type: deftp -#: guix-git/doc/guix.texi:19348 +#: guix-git/doc/guix.texi:19710 msgid "This is the data type representing the SDDM service configuration." msgstr "Tipo de datos que representa la configuración del servicio SDDM." #. type: item -#: guix-git/doc/guix.texi:19350 +#: guix-git/doc/guix.texi:19712 #, no-wrap msgid "@code{display-server} (default: \"x11\")" msgstr "@code{display-server} (predeterminado: \"x11\")" #. type: table -#: guix-git/doc/guix.texi:19353 +#: guix-git/doc/guix.texi:19715 msgid "Select display server to use for the greeter. Valid values are @samp{\"x11\"} or @samp{\"wayland\"}." msgstr "Selecciona el servidor de pantalla usado para el saludo. Los valores validos son @samp{\"x11\"} o @samp{\"wayland\"}." #. type: item -#: guix-git/doc/guix.texi:19354 +#: guix-git/doc/guix.texi:19716 #, no-wrap msgid "@code{numlock} (default: \"on\")" msgstr "@code{numlock} (predeterminado: \"on\")" #. type: table -#: guix-git/doc/guix.texi:19356 +#: guix-git/doc/guix.texi:19718 msgid "Valid values are @samp{\"on\"}, @samp{\"off\"} or @samp{\"none\"}." msgstr "Son valores válidos @samp{\"on\"}, @samp{\"off\"} o @samp{\"none\"}." #. type: item -#: guix-git/doc/guix.texi:19357 +#: guix-git/doc/guix.texi:19719 #, no-wrap msgid "@code{halt-command} (default @code{#~(string-apppend #$shepherd \"/sbin/halt\")})" msgstr "@code{halt-command} (predeterminado @code{#~(string-apppend #$shepherd \"/sbin/halt\")})" #. type: table -#: guix-git/doc/guix.texi:19359 +#: guix-git/doc/guix.texi:19721 msgid "Command to run when halting." msgstr "Orden a ejecutar para parar el sistema." #. type: item -#: guix-git/doc/guix.texi:19360 +#: guix-git/doc/guix.texi:19722 #, no-wrap msgid "@code{reboot-command} (default @code{#~(string-append #$shepherd \"/sbin/reboot\")})" msgstr "@code{reboot-command} (predeterminado @code{#~(string-append #$shepherd \"/sbin/reboot\")})" #. type: table -#: guix-git/doc/guix.texi:19362 +#: guix-git/doc/guix.texi:19724 msgid "Command to run when rebooting." msgstr "Orden a ejecutar para reiniciar el sistema." #. type: item -#: guix-git/doc/guix.texi:19363 +#: guix-git/doc/guix.texi:19725 #, no-wrap msgid "@code{theme} (default \"maldives\")" msgstr "@code{theme} (predeterminado \"maldives\")" #. type: table -#: guix-git/doc/guix.texi:19366 +#: guix-git/doc/guix.texi:19728 msgid "Theme to use. Default themes provided by SDDM are @samp{\"elarun\"}, @samp{\"maldives\"} or @samp{\"maya\"}." msgstr "Tema usado. Los temas predeterminados proporcionados por SDDM son @samp{\"elarun\"}, @samp{\"maldives\"} o @samp{\"maya\"}." #. type: item -#: guix-git/doc/guix.texi:19367 +#: guix-git/doc/guix.texi:19729 #, no-wrap msgid "@code{themes-directory} (default \"/run/current-system/profile/share/sddm/themes\")" msgstr "@code{themes-directory} (predeterminado \"/run/current-system/profile/share/sddm/themes\")" #. type: table -#: guix-git/doc/guix.texi:19369 +#: guix-git/doc/guix.texi:19731 msgid "Directory to look for themes." msgstr "Directorio en el que buscar temas." #. type: item -#: guix-git/doc/guix.texi:19370 +#: guix-git/doc/guix.texi:19732 #, no-wrap msgid "@code{faces-directory} (default \"/run/current-system/profile/share/sddm/faces\")" msgstr "@code{faces-directory} (predeterminado \"/run/current-system/profile/share/sddm/faces\")" # FUZZY #. type: table -#: guix-git/doc/guix.texi:19372 +#: guix-git/doc/guix.texi:19734 msgid "Directory to look for faces." msgstr "Directorio en el que buscar caras." #. type: item -#: guix-git/doc/guix.texi:19373 +#: guix-git/doc/guix.texi:19735 #, no-wrap msgid "@code{default-path} (default \"/run/current-system/profile/bin\")" msgstr "@code{default-path} (predeterminado \"/run/current-system/profile/bin\")" #. type: table -#: guix-git/doc/guix.texi:19375 +#: guix-git/doc/guix.texi:19737 msgid "Default PATH to use." msgstr "El valor predeterminado del PATH." #. type: item -#: guix-git/doc/guix.texi:19376 +#: guix-git/doc/guix.texi:19738 #, no-wrap msgid "@code{minimum-uid} (default: 1000)" msgstr "@code{minimum-uid} (predeterminado: 1000)" #. type: table -#: guix-git/doc/guix.texi:19378 +#: guix-git/doc/guix.texi:19740 msgid "Minimum UID displayed in SDDM and allowed for log-in." msgstr "UID mínimo mostrado en SDDM y al que se le permite el acceso." #. type: item -#: guix-git/doc/guix.texi:19379 +#: guix-git/doc/guix.texi:19741 #, no-wrap msgid "@code{maximum-uid} (default: 2000)" msgstr "@code{maximum-uid} (predeterminado: 2000)" #. type: table -#: guix-git/doc/guix.texi:19381 +#: guix-git/doc/guix.texi:19743 msgid "Maximum UID to display in SDDM." msgstr "UID máximo mostrado en SDDM." #. type: item -#: guix-git/doc/guix.texi:19382 +#: guix-git/doc/guix.texi:19744 #, no-wrap msgid "@code{remember-last-user?} (default #t)" msgstr "@code{remember-last-user?} (predeterminado #t)" #. type: table -#: guix-git/doc/guix.texi:19384 +#: guix-git/doc/guix.texi:19746 msgid "Remember last user." msgstr "Recuerda la última usuaria." #. type: item -#: guix-git/doc/guix.texi:19385 +#: guix-git/doc/guix.texi:19747 #, no-wrap msgid "@code{remember-last-session?} (default #t)" msgstr "@code{remember-last-session?} (predeterminado #t)" #. type: table -#: guix-git/doc/guix.texi:19387 +#: guix-git/doc/guix.texi:19749 msgid "Remember last session." msgstr "Recuerda la última sesión." #. type: item -#: guix-git/doc/guix.texi:19388 +#: guix-git/doc/guix.texi:19750 #, no-wrap msgid "@code{hide-users} (default \"\")" msgstr "@code{hide-users} (predeterminado \"\")" #. type: table -#: guix-git/doc/guix.texi:19390 +#: guix-git/doc/guix.texi:19752 msgid "Usernames to hide from SDDM greeter." msgstr "Nombres de usuaria a ocultar de la pantalla de inicio de SDDM." #. type: item -#: guix-git/doc/guix.texi:19391 +#: guix-git/doc/guix.texi:19753 #, no-wrap msgid "@code{hide-shells} (default @code{#~(string-append #$shadow \"/sbin/nologin\")})" msgstr "@code{hide-shells} (predeterminado @code{#~(string-append #$shadow \"/sbin/nologin\")})" #. type: table -#: guix-git/doc/guix.texi:19393 +#: guix-git/doc/guix.texi:19755 msgid "Users with shells listed will be hidden from the SDDM greeter." msgstr "Las usuarias que tengan alguno de los shell enumerados se ocultarán de la pantalla de inicio de SDDM." #. type: item -#: guix-git/doc/guix.texi:19394 +#: guix-git/doc/guix.texi:19756 #, no-wrap msgid "@code{session-command} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/wayland-session\")})" msgstr "@code{session-command} (predeterminado @code{#~(string-append #$sddm \"/share/sddm/scripts/wayland-session\")})" #. type: table -#: guix-git/doc/guix.texi:19396 +#: guix-git/doc/guix.texi:19758 msgid "Script to run before starting a wayland session." msgstr "Guión a ejecutar antes de iniciar una sesión wayland." #. type: item -#: guix-git/doc/guix.texi:19397 +#: guix-git/doc/guix.texi:19759 #, no-wrap msgid "@code{sessions-directory} (default \"/run/current-system/profile/share/wayland-sessions\")" msgstr "@code{sessions-directory} (predeterminado \"/run/current-system/profile/share/wayland-sessions\")" #. type: table -#: guix-git/doc/guix.texi:19399 +#: guix-git/doc/guix.texi:19761 msgid "Directory to look for desktop files starting wayland sessions." msgstr "Directorio en el que buscar archivos desktop que inicien sesiones wayland." #. type: item -#: guix-git/doc/guix.texi:19403 +#: guix-git/doc/guix.texi:19765 #, no-wrap msgid "@code{xauth-path} (default @code{#~(string-append #$xauth \"/bin/xauth\")})" msgstr "@code{xauth-path} (predeterminado @code{#~(string-append #$xauth \"/bin/xauth\")})" #. type: table -#: guix-git/doc/guix.texi:19405 +#: guix-git/doc/guix.texi:19767 msgid "Path to xauth." msgstr "Ruta de xauth." #. type: item -#: guix-git/doc/guix.texi:19406 +#: guix-git/doc/guix.texi:19768 #, no-wrap msgid "@code{xephyr-path} (default @code{#~(string-append #$xorg-server \"/bin/Xephyr\")})" msgstr "@code{xephyr-path} (predeterminado @code{#~(string-append #$xorg-server \"/bin/Xephyr\")})" #. type: table -#: guix-git/doc/guix.texi:19408 +#: guix-git/doc/guix.texi:19770 msgid "Path to Xephyr." msgstr "Ruta de Xephyr." #. type: item -#: guix-git/doc/guix.texi:19409 +#: guix-git/doc/guix.texi:19771 #, no-wrap msgid "@code{xdisplay-start} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/Xsetup\")})" msgstr "@code{xdisplay-start} (predeterminado @code{#~(string-append #$sddm \"/share/sddm/scripts/Xsetup\")})" #. type: table -#: guix-git/doc/guix.texi:19411 +#: guix-git/doc/guix.texi:19773 msgid "Script to run after starting xorg-server." msgstr "Guión a ejecutar tras iniciar xorg-server." #. type: item -#: guix-git/doc/guix.texi:19412 +#: guix-git/doc/guix.texi:19774 #, no-wrap msgid "@code{xdisplay-stop} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/Xstop\")})" msgstr "@code{xdisplay-stop} (predeterminado @code{#~(string-append #$sddm \"/share/sddm/scripts/Xstop\")})" #. type: table -#: guix-git/doc/guix.texi:19414 +#: guix-git/doc/guix.texi:19776 msgid "Script to run before stopping xorg-server." msgstr "Guión a ejecutar antes de parar xorg-server." #. type: item -#: guix-git/doc/guix.texi:19415 +#: guix-git/doc/guix.texi:19777 #, no-wrap msgid "@code{xsession-command} (default: @code{xinitrc})" msgstr "@code{xsession-command} (predeterminado: @code{xinitrc})" #. type: item -#: guix-git/doc/guix.texi:19418 +#: guix-git/doc/guix.texi:19780 #, no-wrap msgid "@code{xsessions-directory} (default: \"/run/current-system/profile/share/xsessions\")" msgstr "@code{xsessions-directory} (predeterminado: \"/run/current-system/profile/share/xsessions\")" #. type: table -#: guix-git/doc/guix.texi:19420 +#: guix-git/doc/guix.texi:19782 msgid "Directory to look for desktop files starting X sessions." msgstr "Directorio para buscar archivos desktop que inicien sesiones X." #. type: item -#: guix-git/doc/guix.texi:19421 +#: guix-git/doc/guix.texi:19783 #, no-wrap msgid "@code{minimum-vt} (default: 7)" msgstr "@code{minimum-vt} (predeterminado: 7)" #. type: table -#: guix-git/doc/guix.texi:19423 +#: guix-git/doc/guix.texi:19785 msgid "Minimum VT to use." msgstr "VT mínimo usado." #. type: item -#: guix-git/doc/guix.texi:19424 +#: guix-git/doc/guix.texi:19786 #, no-wrap msgid "@code{auto-login-user} (default \"\")" msgstr "@code{auto-login-user} (predeterminado \"\")" #. type: table -#: guix-git/doc/guix.texi:19426 +#: guix-git/doc/guix.texi:19788 msgid "User to use for auto-login." msgstr "Usuaria usada para el ingreso automático en el sistema." #. type: item -#: guix-git/doc/guix.texi:19427 +#: guix-git/doc/guix.texi:19789 #, no-wrap msgid "@code{auto-login-session} (default \"\")" msgstr "@code{auto-login-session} (predeterminado \"\")" #. type: table -#: guix-git/doc/guix.texi:19429 +#: guix-git/doc/guix.texi:19791 msgid "Desktop file to use for auto-login." msgstr "Archivo desktop usado para el ingreso automático en el sistema." #. type: item -#: guix-git/doc/guix.texi:19430 +#: guix-git/doc/guix.texi:19792 #, no-wrap msgid "@code{relogin?} (default #f)" msgstr "@code{relogin?} (predeterminado #f)" #. type: table -#: guix-git/doc/guix.texi:19432 +#: guix-git/doc/guix.texi:19794 msgid "Relogin after logout." msgstr "Volver a ingresar en el sistema tras salir." #. type: cindex -#: guix-git/doc/guix.texi:19437 +#: guix-git/doc/guix.texi:19799 #, no-wrap msgid "X11 login" msgstr "X11, ingreso al sistema" #. type: defvr -#: guix-git/doc/guix.texi:19438 +#: guix-git/doc/guix.texi:19800 #, no-wrap msgid "{Scheme Variable} sddm-service-type" msgstr "{Variable Scheme} sddm-service-type" #. type: defvr -#: guix-git/doc/guix.texi:19442 +#: guix-git/doc/guix.texi:19804 msgid "This is the type of the service to run the @uref{https://github.com/sddm/sddm,SDDM display manager}. Its value must be a @code{sddm-configuration} record (see below)." msgstr "Es el tipo del servicio que ejecuta el @uref{https://github.com/sddm/sddm, gestor de entrada SDDM}. Su valor es un registro @code{sddm-configuration} (véase a continuación)." #. type: defvr -#: guix-git/doc/guix.texi:19444 +#: guix-git/doc/guix.texi:19806 msgid "Here's an example use:" msgstr "Este es un ejemplo de su uso:" #. type: lisp -#: guix-git/doc/guix.texi:19450 +#: guix-git/doc/guix.texi:19812 #, no-wrap msgid "" "(service sddm-service-type\n" @@ -37820,119 +38533,119 @@ msgstr "" " (auto-login-session \"xfce.desktop\")))\n" #. type: deftp -#: guix-git/doc/guix.texi:19456 +#: guix-git/doc/guix.texi:19818 msgid "This data type represents the configuration of the SDDM login manager. The available fields are:" msgstr "Este tipo de datos representa la configuración del gestor de ingreso al sistema SDDM. Los campos disponibles son:" #. type: item -#: guix-git/doc/guix.texi:19458 +#: guix-git/doc/guix.texi:19820 #, no-wrap msgid "@code{sddm} (default: @code{sddm})" msgstr "@code{sddm} (predeterminado: @code{sddm})" #. type: table -#: guix-git/doc/guix.texi:19460 +#: guix-git/doc/guix.texi:19822 msgid "The SDDM package to use." msgstr "El paquete SDDM usado." #. type: item -#: guix-git/doc/guix.texi:19461 +#: guix-git/doc/guix.texi:19823 #, no-wrap msgid "@code{display-server} (default: @code{\"x11\"})" msgstr "@code{display-server} (predeterminado: @code{\"x11\"})" #. type: table -#: guix-git/doc/guix.texi:19463 +#: guix-git/doc/guix.texi:19825 msgid "This must be either @code{\"x11\"} or @code{\"wayland\"}." msgstr "Debe ser o bien @code{\"x11\"} o bien @code{\"wayland\"}." #. type: item -#: guix-git/doc/guix.texi:19466 +#: guix-git/doc/guix.texi:19828 #, no-wrap msgid "@code{auto-login-user} (default: @code{\"\"})" msgstr "@code{auto-login-user} (predeterminado: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:19469 +#: guix-git/doc/guix.texi:19831 msgid "If non-empty, this is the user account under which to log in automatically." msgstr "Si no está vacío, es la cuenta de usuaria que ingresará al sistema de manera automática." #. type: item -#: guix-git/doc/guix.texi:19470 +#: guix-git/doc/guix.texi:19832 #, no-wrap msgid "@code{auto-login-session} (default: @code{\"\"})" msgstr "@code{auto-login-session} (predeterminada: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:19473 +#: guix-git/doc/guix.texi:19835 msgid "If non-empty, this is the @file{.desktop} file name to use as the auto-login session." msgstr "Si no está vacío, es el nombre de archivo @file{.desktop} usado en el ingreso automático al sistema." #. type: cindex -#: guix-git/doc/guix.texi:19476 +#: guix-git/doc/guix.texi:19838 #, no-wrap msgid "Xorg, configuration" msgstr "Xorg, configuración" #. type: deftp -#: guix-git/doc/guix.texi:19477 +#: guix-git/doc/guix.texi:19839 #, no-wrap msgid "{Data Type} xorg-configuration" msgstr "{Tipo de datos} xorg-configuration" # FUZZY #. type: deftp -#: guix-git/doc/guix.texi:19482 +#: guix-git/doc/guix.texi:19844 #, fuzzy msgid "This data type represents the configuration of the Xorg graphical display server. Note that there is no Xorg service; instead, the X server is started by a ``display manager'' such as GDM, SDDM, and SLiM@. Thus, the configuration of these display managers aggregates an @code{xorg-configuration} record." msgstr "Este tipo de datos representa la configuración del servidor gráfico Xorg. Fíjese que no existe un servicio Xorg; en vez de eso, el servidor X es iniciado por un ``gestor de pantalla'' como GDM, SDDM y SLiM. Por tanto, la configuración de estos gestores de pantalla agrega un registro @code{xorg-configuration}." #. type: item -#: guix-git/doc/guix.texi:19484 +#: guix-git/doc/guix.texi:19846 #, no-wrap msgid "@code{modules} (default: @code{%default-xorg-modules})" msgstr "@code{modules} (predeterminados: @code{%default-xorg-modules})" #. type: table -#: guix-git/doc/guix.texi:19487 +#: guix-git/doc/guix.texi:19849 msgid "This is a list of @dfn{module packages} loaded by the Xorg server---e.g., @code{xf86-video-vesa}, @code{xf86-input-keyboard}, and so on." msgstr "Esta es la lista de @dfn{paquetes de módulos} cargados por el servidor Xorg---por ejemplo, @code{xf86-video-vesa}, @code{xf86-input-keyboard}, etcétera." #. type: item -#: guix-git/doc/guix.texi:19488 +#: guix-git/doc/guix.texi:19850 #, no-wrap msgid "@code{fonts} (default: @code{%default-xorg-fonts})" msgstr "@code{fonts} (predeterminadas: @code{%default-xorg-fonts})" #. type: table -#: guix-git/doc/guix.texi:19490 +#: guix-git/doc/guix.texi:19852 msgid "This is a list of font directories to add to the server's @dfn{font path}." msgstr "Es una lista de directorios de tipografías a añadir a la @dfn{ruta de tipografías} del servidor." #. type: item -#: guix-git/doc/guix.texi:19491 +#: guix-git/doc/guix.texi:19853 #, no-wrap msgid "@code{drivers} (default: @code{'()})" msgstr "@code{drivers} (predeterminados: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:19495 +#: guix-git/doc/guix.texi:19857 msgid "This must be either the empty list, in which case Xorg chooses a graphics driver automatically, or a list of driver names that will be tried in this order---e.g., @code{(\"modesetting\" \"vesa\")}." msgstr "Debe ser o bien la lista vacía, en cuyo caso Xorg selecciona el controlador gráfico automáticamente, o una lista de nombres de controladores que se intentarán en el orden especificado---por ejemplo, @code{(\"modesetting\" \"vesa\")}." #. type: item -#: guix-git/doc/guix.texi:19496 +#: guix-git/doc/guix.texi:19858 #, no-wrap msgid "@code{resolutions} (default: @code{'()})" msgstr "@code{resolutions} (predeterminadas: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:19500 +#: guix-git/doc/guix.texi:19862 msgid "When @code{resolutions} is the empty list, Xorg chooses an appropriate screen resolution. Otherwise, it must be a list of resolutions---e.g., @code{((1024 768) (640 480))}." msgstr "Cuando @code{resolutions} es la lista vacía, Xorg selecciona una resolución de pantalla adecuada. En otro caso, debe ser una lista de resoluciones---por ejemplo, @code{((1024 768) (640 480))}." #. type: cindex -#: guix-git/doc/guix.texi:19501 +#: guix-git/doc/guix.texi:19863 #, no-wrap msgid "keyboard layout, for Xorg" msgstr "distribución de teclado, para Xorg" @@ -37941,63 +38654,63 @@ msgstr "distribución de teclado, para Xorg" # TODO (MAAV): No me acaba de gustar mapa para asociación... aunque un # mapa es una asociación en sí. #. type: cindex -#: guix-git/doc/guix.texi:19502 +#: guix-git/doc/guix.texi:19864 #, no-wrap msgid "keymap, for Xorg" msgstr "mapa de teclas, para Xorg" #. type: table -#: guix-git/doc/guix.texi:19506 +#: guix-git/doc/guix.texi:19868 msgid "If this is @code{#f}, Xorg uses the default keyboard layout---usually US English (``qwerty'') for a 105-key PC keyboard." msgstr "Si es @code{#f}, Xorg usa la distribución de teclado predeterminada---normalmente inglés de EEUU (``qwerty'') para un teclado de PC de 105 teclas." #. type: table -#: guix-git/doc/guix.texi:19510 +#: guix-git/doc/guix.texi:19872 msgid "Otherwise this must be a @code{keyboard-layout} object specifying the keyboard layout in use when Xorg is running. @xref{Keyboard Layout}, for more information on how to specify the keyboard layout." msgstr "En otro caso, debe ser un objeto @code{keyboard-layout} que especifique la distribución de teclado usada para la ejecución de Xorg. @xref{Keyboard Layout}, para más información sobre cómo especificar la distribución de teclado." #. type: item -#: guix-git/doc/guix.texi:19511 guix-git/doc/guix.texi:21223 -#: guix-git/doc/guix.texi:34046 +#: guix-git/doc/guix.texi:19873 guix-git/doc/guix.texi:21585 +#: guix-git/doc/guix.texi:34483 #, no-wrap msgid "@code{extra-config} (default: @code{'()})" msgstr "@code{extra-config} (predeterminada: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:19514 guix-git/doc/guix.texi:34050 +#: guix-git/doc/guix.texi:19876 guix-git/doc/guix.texi:34487 msgid "This is a list of strings or objects appended to the configuration file. It is used to pass extra text to be added verbatim to the configuration file." msgstr "Es una lista de cadenas u objetos añadida al final del archivo de configuración. Se usa para proporcionar texto adicional para ser introducido de forma literal en el archivo de configuración." #. type: item -#: guix-git/doc/guix.texi:19515 +#: guix-git/doc/guix.texi:19877 #, no-wrap msgid "@code{server} (default: @code{xorg-server})" msgstr "@code{server} (predeterminado: @code{xorg-server})" #. type: table -#: guix-git/doc/guix.texi:19517 +#: guix-git/doc/guix.texi:19879 msgid "This is the package providing the Xorg server." msgstr "Este es el paquete que proporciona el servidor Xorg." #. type: item -#: guix-git/doc/guix.texi:19518 +#: guix-git/doc/guix.texi:19880 #, no-wrap msgid "@code{server-arguments} (default: @code{%default-xorg-server-arguments})" msgstr "@code{server-arguments} (predeterminados: @code{%default-xorg-server-arguments})" #. type: table -#: guix-git/doc/guix.texi:19521 +#: guix-git/doc/guix.texi:19883 msgid "This is the list of command-line arguments to pass to the X server. The default is @code{-nolisten tcp}." msgstr "Es la lista de parámetros de línea de órdenes que se proporcionarán al servidor X. El valor predeterminado es @code{-nolisten tcp}." #. type: deffn -#: guix-git/doc/guix.texi:19524 +#: guix-git/doc/guix.texi:19886 #, no-wrap msgid "{Scheme Procedure} set-xorg-configuration @var{config} @" msgstr "{Procedimiento Scheme} set-xorg-configuration @var{config} @" #. type: deffn -#: guix-git/doc/guix.texi:19528 +#: guix-git/doc/guix.texi:19890 msgid "[@var{login-manager-service-type}] Tell the log-in manager (of type @var{login-manager-service-type}) to use @var{config}, an @code{} record." msgstr "" "[@var{tipo-de-servicio-del-gestor-de-pantalla}]\n" @@ -38005,91 +38718,91 @@ msgstr "" "Le dice al gestor de pantalla (de tipo @var{tipo-de-servicio-del-gestor-de-pantalla}) que use @var{config}, un registro @code{}." #. type: deffn -#: guix-git/doc/guix.texi:19532 +#: guix-git/doc/guix.texi:19894 msgid "Since the Xorg configuration is embedded in the log-in manager's configuration---e.g., @code{gdm-configuration}---this procedure provides a shorthand to set the Xorg configuration." msgstr "Debido a que la configuración de Xorg se embebe en la configuración del gestor de ingreso en el sistema---por ejemplo, @code{gdm-configuration}---este procedimiento proporciona un atajo para establecer la configuración de Xorg." #. type: deffn -#: guix-git/doc/guix.texi:19534 +#: guix-git/doc/guix.texi:19896 #, no-wrap msgid "{Scheme Procedure} xorg-start-command [@var{config}]" msgstr "{Procedimiento Scheme} xorg-start-command [@var{config}]" #. type: deffn -#: guix-git/doc/guix.texi:19538 +#: guix-git/doc/guix.texi:19900 msgid "Return a @code{startx} script in which the modules, fonts, etc. specified in @var{config}, are available. The result should be used in place of @code{startx}." msgstr "Devuelve un script @code{startx} en el que los módulos, las tipografías, etcétera, especificadas en @var{config} están disponibles. El resultado debe usarse en lugar de @code{startx}." #. type: deffn -#: guix-git/doc/guix.texi:19540 +#: guix-git/doc/guix.texi:19902 msgid "Usually the X server is started by a login manager." msgstr "Habitualmente el servidor X es iniciado por un gestor de ingreso al sistema." #. type: deffn -#: guix-git/doc/guix.texi:19543 +#: guix-git/doc/guix.texi:19905 #, no-wrap msgid "{Scheme Procedure} screen-locker-service @var{package} [@var{program}]" msgstr "{Procedimiento Scheme} screen-locker-service @var{paquete} [@var{programa}]" #. type: deffn -#: guix-git/doc/guix.texi:19547 +#: guix-git/doc/guix.texi:19909 msgid "Add @var{package}, a package for a screen locker or screen saver whose command is @var{program}, to the set of setuid programs and add a PAM entry for it. For example:" msgstr "Añade @var{paquete}, un paquete para un bloqueador de sesión o un salvapantallas cuya orden es @var{programa}, al conjunto de programas setuid y añade una entrada PAM para él. Por ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:19550 +#: guix-git/doc/guix.texi:19912 #, no-wrap msgid "(screen-locker-service xlockmore \"xlock\")\n" msgstr "(screen-locker-service xlockmore \"xlock\")\n" #. type: deffn -#: guix-git/doc/guix.texi:19553 +#: guix-git/doc/guix.texi:19915 msgid "makes the good ol' XlockMore usable." msgstr "permite usar el viejo XlockMore." # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:19559 +#: guix-git/doc/guix.texi:19921 #, no-wrap msgid "printer support with CUPS" msgstr "uso de impresoras mediante CUPS" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:19563 +#: guix-git/doc/guix.texi:19925 msgid "The @code{(gnu services cups)} module provides a Guix service definition for the CUPS printing service. To add printer support to a Guix system, add a @code{cups-service} to the operating system definition:" msgstr "El módulo @code{(gnu services cups)} proporciona una definición de servicio Guix para el servicio de impresión CUPS. Para usar impresoras en un sistema Guix, añada un servicio @code{cups-service} en su definición de sistema operativo:" #. type: deffn -#: guix-git/doc/guix.texi:19564 +#: guix-git/doc/guix.texi:19926 #, no-wrap msgid "{Scheme Variable} cups-service-type" msgstr "{Variable Scheme} cups-service-type" #. type: deffn -#: guix-git/doc/guix.texi:19568 +#: guix-git/doc/guix.texi:19930 msgid "The service type for the CUPS print server. Its value should be a valid CUPS configuration (see below). To use the default settings, simply write:" msgstr "El tipo de servicio para el servidor de impresión CUPS. Su valor debe ser una configuración de CUPS válida (véase a continuación). Para usar la configuración predeterminada, simplemente escriba:" #. type: lisp -#: guix-git/doc/guix.texi:19570 +#: guix-git/doc/guix.texi:19932 #, no-wrap msgid "(service cups-service-type)\n" msgstr "(service cups-service-type)\n" #. type: Plain text -#: guix-git/doc/guix.texi:19580 +#: guix-git/doc/guix.texi:19942 msgid "The CUPS configuration controls the basic things about your CUPS installation: what interfaces it listens on, what to do if a print job fails, how much logging to do, and so on. To actually add a printer, you have to visit the @url{http://localhost:631} URL, or use a tool such as GNOME's printer configuration services. By default, configuring a CUPS service will generate a self-signed certificate if needed, for secure connections to the print server." msgstr "La configuración de CUPS controla los aspectos básicos de su instalación de CUPS: sobre qué interfaces se escuchará, qué hacer si falla un trabajo de impresión, cuanta información registrar, etcétera. Para realmente añadir una impresora, debe visitar la URL @url{http://localhost:631}, o usar una herramienta como los servicios de configuración de impresión de GNOME. De manera predeterminada, la configuración de un servicio CUPS generará un certificado auto-firmado en caso de ser necesario, para ofrecer conexiones seguras con el servidor de impresión." #. type: Plain text -#: guix-git/doc/guix.texi:19586 +#: guix-git/doc/guix.texi:19948 #, fuzzy msgid "Suppose you want to enable the Web interface of CUPS and also add support for Epson printers @i{via} the @code{epson-inkjet-printer-escpr} package and for HP printers @i{via} the @code{hplip-minimal} package. You can do that directly, like this (you need to use the @code{(gnu packages cups)} module):" msgstr "Suponiendo que desease activar la interfaz Web de CUPS, y también añadir el paquete @code{escpr} para comunicarse con impresoras Epson y el paquete @code{hplip-minimal} para hacerlo con impresoras HP. Puede hacerlo directamente, de esta manera (debe usar el módulo @code{(gnu packages cups)}:" #. type: lisp -#: guix-git/doc/guix.texi:19593 +#: guix-git/doc/guix.texi:19955 #, fuzzy, no-wrap msgid "" "(service cups-service-type\n" @@ -38105,437 +38818,437 @@ msgstr "" " (list cups-filters escpr hplip-minimal))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:19598 +#: guix-git/doc/guix.texi:19960 msgid "Note: If you wish to use the Qt5 based GUI which comes with the hplip package then it is suggested that you install the @code{hplip} package, either in your OS configuration file or as your user." msgstr "Fíjese: Si desea usar la interfaz gráfica basada en Qt5 que viene con el paquete hplip se le sugiere que instale el paquete @code{hplip}, o bien en su configuración del sistema operativo o bien como su usuaria." #. type: Plain text -#: guix-git/doc/guix.texi:19605 +#: guix-git/doc/guix.texi:19967 msgid "The available configuration parameters follow. Each parameter definition is preceded by its type; for example, @samp{string-list foo} indicates that the @code{foo} parameter should be specified as a list of strings. There is also a way to specify the configuration as a string, if you have an old @code{cupsd.conf} file that you want to port over from some other system; see the end for more details." msgstr "A continuación se encuentran los parámetros de configuración disponibles. El tipo de cada parámetro antecede la definición del mismo; por ejemplo, @samp{string-list foo} indica que el parámetro @code{foo} debe especificarse como una lista de cadenas. También existe la posibilidad de especificar la configuración como una cadena, si tiene un archivo @code{cupsd.conf} antiguo que quiere trasladar a otro sistema; véase el final para más detalles." #. type: Plain text -#: guix-git/doc/guix.texi:19616 +#: guix-git/doc/guix.texi:19978 msgid "Available @code{cups-configuration} fields are:" msgstr "Los campos disponibles de @code{cups-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:19617 +#: guix-git/doc/guix.texi:19979 #, no-wrap msgid "{@code{cups-configuration} parameter} package cups" msgstr "{parámetro de @code{cups-configuration}} package cups" #. type: deftypevr -#: guix-git/doc/guix.texi:19619 guix-git/doc/guix.texi:20387 +#: guix-git/doc/guix.texi:19981 guix-git/doc/guix.texi:20749 msgid "The CUPS package." msgstr "El paquete CUPS." #. type: deftypevr -#: guix-git/doc/guix.texi:19621 +#: guix-git/doc/guix.texi:19983 #, no-wrap msgid "{@code{cups-configuration} parameter} package-list extensions (default: @code{(list brlaser cups-filters epson-inkjet-printer-escpr foomatic-filters hplip-minimal splix)})" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19623 +#: guix-git/doc/guix.texi:19985 msgid "Drivers and other extensions to the CUPS package." msgstr "Controladores y otras extensiones al paquete CUPS." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19625 +#: guix-git/doc/guix.texi:19987 #, no-wrap msgid "{@code{cups-configuration} parameter} files-configuration files-configuration" msgstr "{parámetro de @code{cups-configuration}} archivos-conf files-configuration" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19628 +#: guix-git/doc/guix.texi:19990 msgid "Configuration of where to write logs, what directories to use for print spools, and related privileged configuration parameters." msgstr "Configuración sobre dónde escribir los registros, qué directorios usar para las colas de impresión y parámetros de configuración privilegiados relacionados." #. type: deftypevr -#: guix-git/doc/guix.texi:19630 +#: guix-git/doc/guix.texi:19992 msgid "Available @code{files-configuration} fields are:" msgstr "Los campos disponibles de @code{files-configuration} son:" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19631 +#: guix-git/doc/guix.texi:19993 #, no-wrap msgid "{@code{files-configuration} parameter} log-location access-log" msgstr "{parámetro de @code{files-configuration}} ruta-registro access-log" #. type: deftypevr -#: guix-git/doc/guix.texi:19639 +#: guix-git/doc/guix.texi:20001 msgid "Defines the access log filename. Specifying a blank filename disables access log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-access_log}." msgstr "Define el nombre de archivo del registro de acceso. La especificación de un nombre de archivo en blanco desactiva la generación de registros de acceso. El valor @code{stderr} hace que las entradas de registro se envíen al archivo de la salida estándar de error cuando el planificador se ejecute en primer plano, o al daemon de registro del sistema cuando se ejecute en segundo plano. El valor @code{syslog} envía las entradas de registro al daemon de registro del sistema. El nombre de servidor puede incluirse en los nombres de archivo mediante el uso de la cadena @code{%s}, como en @code{/var/log/cups/%s-access_log}." #. type: deftypevr -#: guix-git/doc/guix.texi:19641 +#: guix-git/doc/guix.texi:20003 msgid "Defaults to @samp{\"/var/log/cups/access_log\"}." msgstr "El valor predeterminado es @samp{\"/var/log/cups/access_log\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19643 +#: guix-git/doc/guix.texi:20005 #, no-wrap msgid "{@code{files-configuration} parameter} file-name cache-dir" msgstr "{parámetro de @code{files-configuration}} nombre-archivo cache-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:19645 +#: guix-git/doc/guix.texi:20007 msgid "Where CUPS should cache data." msgstr "Donde CUPS debe almacenar los datos de la caché." #. type: deftypevr -#: guix-git/doc/guix.texi:19647 +#: guix-git/doc/guix.texi:20009 msgid "Defaults to @samp{\"/var/cache/cups\"}." msgstr "El valor predeterminado es @samp{\"/var/cache/cups\"}." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19649 +#: guix-git/doc/guix.texi:20011 #, no-wrap msgid "{@code{files-configuration} parameter} string config-file-perm" msgstr "{parámetro de @code{files-configuration}} string config-file-perm" #. type: deftypevr -#: guix-git/doc/guix.texi:19652 +#: guix-git/doc/guix.texi:20014 msgid "Specifies the permissions for all configuration files that the scheduler writes." msgstr "Especifica los permisos para todos los archivos de configuración que escriba el planficador." #. type: deftypevr -#: guix-git/doc/guix.texi:19658 +#: guix-git/doc/guix.texi:20020 msgid "Note that the permissions for the printers.conf file are currently masked to only allow access from the scheduler user (typically root). This is done because printer device URIs sometimes contain sensitive authentication information that should not be generally known on the system. There is no way to disable this security feature." msgstr "Tenga en cuenta que los permisos para el archivo printers.conf están configurados actualmente de modo que únicamente la usuaria del planificador (habitualmente root) tenga acceso. Se hace de esta manera debido a que las URI de las impresoras a veces contienen información sensible sobre la identificación que no debería conocerse de manera general en el sistema. No hay forma de desactivar esta característica de seguridad." #. type: deftypevr -#: guix-git/doc/guix.texi:19660 +#: guix-git/doc/guix.texi:20022 msgid "Defaults to @samp{\"0640\"}." msgstr "El valor predeterminado es @samp{\"0640\"}." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19662 +#: guix-git/doc/guix.texi:20024 #, no-wrap msgid "{@code{files-configuration} parameter} log-location error-log" msgstr "{parámetro de @code{files-configuration}} ruta-registro error-log" #. type: deftypevr -#: guix-git/doc/guix.texi:19670 +#: guix-git/doc/guix.texi:20032 msgid "Defines the error log filename. Specifying a blank filename disables error log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-error_log}." msgstr "Define el nombre de archivo del registro de error. La especificación de un nombre de archivo en blanco desactiva la generación de registros de error. El valor @code{stderr} hace que las entradas del registro se envíen al archivo de la salida de error estándar cuando el planificador se ejecute en primer plano, o al daemon de registro del sistema cuando se ejecute en segundo plano. El valor @code{syslog} provoca que las entradas del registro se envíen al daemon de registro del sistema. El nombre del servidor puede incluirse en los nombres de archivo mediante el uso de la cadena @code{%s}, como en @code{/var/log/cups/%s-error_log}." #. type: deftypevr -#: guix-git/doc/guix.texi:19672 +#: guix-git/doc/guix.texi:20034 msgid "Defaults to @samp{\"/var/log/cups/error_log\"}." msgstr "El valor predeterminado es @samp{\"/var/log/cups/error_log\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19674 +#: guix-git/doc/guix.texi:20036 #, no-wrap msgid "{@code{files-configuration} parameter} string fatal-errors" msgstr "{parámetro de @code{files-configuration}} string fatal-errors" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19677 +#: guix-git/doc/guix.texi:20039 msgid "Specifies which errors are fatal, causing the scheduler to exit. The kind strings are:" msgstr "Especifica qué errores son fatales, los cuales provocan la salida del planificador. El tipo de cadenas son:" #. type: table -#: guix-git/doc/guix.texi:19681 +#: guix-git/doc/guix.texi:20043 msgid "No errors are fatal." msgstr "Ningún error es fatal." #. type: table -#: guix-git/doc/guix.texi:19684 +#: guix-git/doc/guix.texi:20046 msgid "All of the errors below are fatal." msgstr "Todos los errores a continuación son fatales." #. type: item -#: guix-git/doc/guix.texi:19685 +#: guix-git/doc/guix.texi:20047 #, no-wrap msgid "browse" msgstr "browse" # FUZZY #. type: table -#: guix-git/doc/guix.texi:19688 +#: guix-git/doc/guix.texi:20050 msgid "Browsing initialization errors are fatal, for example failed connections to the DNS-SD daemon." msgstr "Los errores de la inicialización de exploración son fatales, por ejemplo las conexiones fallidas al daemon DNS-SD." #. type: item -#: guix-git/doc/guix.texi:19689 +#: guix-git/doc/guix.texi:20051 #, no-wrap msgid "config" msgstr "config" # FUZZY #. type: table -#: guix-git/doc/guix.texi:19691 +#: guix-git/doc/guix.texi:20053 msgid "Configuration file syntax errors are fatal." msgstr "Los errores de sintaxis en el archivo de configuración son fatales." #. type: item -#: guix-git/doc/guix.texi:19692 +#: guix-git/doc/guix.texi:20054 #, no-wrap msgid "listen" msgstr "listen" # FUZZY #. type: table -#: guix-git/doc/guix.texi:19695 +#: guix-git/doc/guix.texi:20057 msgid "Listen or Port errors are fatal, except for IPv6 failures on the loopback or @code{any} addresses." msgstr "Los errores de escucha o de puertos son fatales, excepto fallos IPv6 en la red local o en direcciones @code{any}." #. type: item -#: guix-git/doc/guix.texi:19696 +#: guix-git/doc/guix.texi:20058 #, no-wrap msgid "log" msgstr "log" #. type: table -#: guix-git/doc/guix.texi:19698 +#: guix-git/doc/guix.texi:20060 msgid "Log file creation or write errors are fatal." msgstr "Los errores de creación o escritura en el archivo de registros son fatales." #. type: item -#: guix-git/doc/guix.texi:19699 +#: guix-git/doc/guix.texi:20061 #, no-wrap msgid "permissions" msgstr "permissions" # FUZZY #. type: table -#: guix-git/doc/guix.texi:19702 +#: guix-git/doc/guix.texi:20064 msgid "Bad startup file permissions are fatal, for example shared TLS certificate and key files with world-read permissions." msgstr "La mala configuración de los permisos de los archivos al inicio son fatales, por ejemplo certificados TLS compartidos y archivos de claves con permisos de escritura para todo el mundo." #. type: deftypevr -#: guix-git/doc/guix.texi:19705 +#: guix-git/doc/guix.texi:20067 msgid "Defaults to @samp{\"all -browse\"}." msgstr "El valor predeterminado es @samp{\"all -browse\"}." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19707 +#: guix-git/doc/guix.texi:20069 #, no-wrap msgid "{@code{files-configuration} parameter} boolean file-device?" msgstr "{parámetro de @code{files-configuration}} boolean file-device?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19710 +#: guix-git/doc/guix.texi:20072 msgid "Specifies whether the file pseudo-device can be used for new printer queues. The URI @uref{file:///dev/null} is always allowed." msgstr "Especifica si el pseudo-dispositivo del archivo puede usarse para nuevas colas de impresión. Siempre se permite la URI @uref{file:///dev/null}." #. type: deftypevr -#: guix-git/doc/guix.texi:19714 +#: guix-git/doc/guix.texi:20076 #, no-wrap msgid "{@code{files-configuration} parameter} string group" msgstr "{parámetro de @code{files-configuration}} string group" #. type: deftypevr -#: guix-git/doc/guix.texi:19717 +#: guix-git/doc/guix.texi:20079 msgid "Specifies the group name or ID that will be used when executing external programs." msgstr "Especifica el nombre de grupo o ID usado para la ejecución de programas externos." #. type: deftypevr -#: guix-git/doc/guix.texi:19719 guix-git/doc/guix.texi:19805 +#: guix-git/doc/guix.texi:20081 guix-git/doc/guix.texi:20167 msgid "Defaults to @samp{\"lp\"}." msgstr "El valor predeterminado es @samp{\"lp\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19721 +#: guix-git/doc/guix.texi:20083 #, fuzzy, no-wrap #| msgid "{@code{files-configuration} parameter} string log-file-perm" msgid "{@code{files-configuration} parameter} string log-file-group" msgstr "{parámetro de @code{files-configuration}} string log-file-perm" #. type: deftypevr -#: guix-git/doc/guix.texi:19723 +#: guix-git/doc/guix.texi:20085 #, fuzzy #| msgid "Specifies the group name or ID that will be used when executing external programs." msgid "Specifies the group name or ID that will be used for log files." msgstr "Especifica el nombre de grupo o ID usado para la ejecución de programas externos." #. type: deftypevr -#: guix-git/doc/guix.texi:19725 +#: guix-git/doc/guix.texi:20087 #, fuzzy #| msgid "Defaults to @samp{\"lp\"}." msgid "Defaults to @samp{\"lpadmin\"}." msgstr "El valor predeterminado es @samp{\"lp\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19727 +#: guix-git/doc/guix.texi:20089 #, no-wrap msgid "{@code{files-configuration} parameter} string log-file-perm" msgstr "{parámetro de @code{files-configuration}} string log-file-perm" #. type: deftypevr -#: guix-git/doc/guix.texi:19729 +#: guix-git/doc/guix.texi:20091 msgid "Specifies the permissions for all log files that the scheduler writes." msgstr "Especifica los permisos para todos los archivos de registro que el planificador escriba." #. type: deftypevr -#: guix-git/doc/guix.texi:19731 +#: guix-git/doc/guix.texi:20093 msgid "Defaults to @samp{\"0644\"}." msgstr "El valor predeterminado es @samp{\"0644\"}." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19733 +#: guix-git/doc/guix.texi:20095 #, no-wrap msgid "{@code{files-configuration} parameter} log-location page-log" msgstr "{parámetro de @code{files-configuration}} ruta-registro page-log" #. type: deftypevr -#: guix-git/doc/guix.texi:19741 +#: guix-git/doc/guix.texi:20103 msgid "Defines the page log filename. Specifying a blank filename disables page log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-page_log}." msgstr "Define el nombre de archivo del registro de páginas. La especificación de un nombre de archivo en blanco desactiva la generación de registro de páginas. El valor @code{stderr} hace que las entradas del registro se envíen al archivo de la salida de error cuando el planificador se ejecute en primer plano, o al daemon de registro del sistema cuando se ejecuten en segundo plano. El valor @code{syslog} provoca que las entradas del registro se envíen al daemon de registro del sistema. El nombre del servidor puede incluirse en los nombres de archivo mediante el uso de la cadena @code{%s}, como en @code{/var/log/cups/%s-page_log}." #. type: deftypevr -#: guix-git/doc/guix.texi:19743 +#: guix-git/doc/guix.texi:20105 msgid "Defaults to @samp{\"/var/log/cups/page_log\"}." msgstr "El valor predeterminado es @samp{\"/var/log/cups/page_log\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19745 +#: guix-git/doc/guix.texi:20107 #, no-wrap msgid "{@code{files-configuration} parameter} string remote-root" msgstr "{parámetro de @code{files-configuration}} string remote-root" #. type: deftypevr -#: guix-git/doc/guix.texi:19748 +#: guix-git/doc/guix.texi:20110 msgid "Specifies the username that is associated with unauthenticated accesses by clients claiming to be the root user. The default is @code{remroot}." msgstr "Especifica el nombre de la usuaria asociado con accesos sin identificación por parte de clientes que digan ser la usuaria root. La usuaria predeterminada es @code{remroot}." #. type: deftypevr -#: guix-git/doc/guix.texi:19750 +#: guix-git/doc/guix.texi:20112 msgid "Defaults to @samp{\"remroot\"}." msgstr "El valor predeterminado es @samp{\"remroot\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19752 +#: guix-git/doc/guix.texi:20114 #, no-wrap msgid "{@code{files-configuration} parameter} file-name request-root" msgstr "{parámetro de @code{files-configuration}} nombre-archivo request-root" #. type: deftypevr -#: guix-git/doc/guix.texi:19755 +#: guix-git/doc/guix.texi:20117 msgid "Specifies the directory that contains print jobs and other HTTP request data." msgstr "Especifica el directorio que contiene los trabajos de impresión y otros datos de peticiones HTTP." #. type: deftypevr -#: guix-git/doc/guix.texi:19757 +#: guix-git/doc/guix.texi:20119 msgid "Defaults to @samp{\"/var/spool/cups\"}." msgstr "El valor predeterminado es @samp{\"/var/spool/cups\"}." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19759 +#: guix-git/doc/guix.texi:20121 #, no-wrap msgid "{@code{files-configuration} parameter} sandboxing sandboxing" msgstr "{parámetro de @code{files-configuration}} aislamiento sandboxing" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19764 +#: guix-git/doc/guix.texi:20126 msgid "Specifies the level of security sandboxing that is applied to print filters, backends, and other child processes of the scheduler; either @code{relaxed} or @code{strict}. This directive is currently only used/supported on macOS." msgstr "Especifica el nivel de seguridad del aislamiento (sandbox) que se aplica sobre los filtros de impresión, motores y otros procesos lanzados por el planificador; o bien @code{relaxed} o bien @code{strict}. Esta directiva únicamente tiene uso actualmente en macOS." #. type: deftypevr -#: guix-git/doc/guix.texi:19766 +#: guix-git/doc/guix.texi:20128 msgid "Defaults to @samp{strict}." msgstr "El valor predeterminado es @samp{strict}." #. type: deftypevr -#: guix-git/doc/guix.texi:19768 +#: guix-git/doc/guix.texi:20130 #, no-wrap msgid "{@code{files-configuration} parameter} file-name server-keychain" msgstr "{parámetro de @code{files-configuration}} nombre-archivo server-keychain" # FUZZY FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19773 +#: guix-git/doc/guix.texi:20135 msgid "Specifies the location of TLS certificates and private keys. CUPS will look for public and private keys in this directory: @file{.crt} files for PEM-encoded certificates and corresponding @file{.key} files for PEM-encoded private keys." msgstr "Especifica la localización de los certificados TLS y las claves privadas. CUPS buscará claves públicas y privadas en este directorio: un archivo @file{.crt} para certificados codificados con PEM y los correspondientes archivo @file{.key} para las claves privadas codificadas con PEM." #. type: deftypevr -#: guix-git/doc/guix.texi:19775 +#: guix-git/doc/guix.texi:20137 msgid "Defaults to @samp{\"/etc/cups/ssl\"}." msgstr "El valor predeterminado es @samp{\"/etc/cups/ssl\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19777 +#: guix-git/doc/guix.texi:20139 #, no-wrap msgid "{@code{files-configuration} parameter} file-name server-root" msgstr "{parámetro de @code{files-configuration}} nombre-archivo server-root" #. type: deftypevr -#: guix-git/doc/guix.texi:19779 +#: guix-git/doc/guix.texi:20141 msgid "Specifies the directory containing the server configuration files." msgstr "Especifica el directorio que contiene los archivos de configuración del servidor." #. type: deftypevr -#: guix-git/doc/guix.texi:19781 +#: guix-git/doc/guix.texi:20143 msgid "Defaults to @samp{\"/etc/cups\"}." msgstr "El valor predeterminado es @samp{\"/etc/cups\"}." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19783 +#: guix-git/doc/guix.texi:20145 #, no-wrap msgid "{@code{files-configuration} parameter} boolean sync-on-close?" msgstr "{parámetro de @code{files-configuration}} boolean sync-on-close?" #. type: deftypevr -#: guix-git/doc/guix.texi:19786 +#: guix-git/doc/guix.texi:20148 msgid "Specifies whether the scheduler calls fsync(2) after writing configuration or state files." msgstr "Especifica si el planificador llama fsync(2) tras la escritura de los archivos de configuración o estado." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19790 +#: guix-git/doc/guix.texi:20152 #, no-wrap msgid "{@code{files-configuration} parameter} space-separated-string-list system-group" msgstr "{parámetro de @code{files-configuration}} cadenas-separadas-por-espacios system-group" #. type: deftypevr -#: guix-git/doc/guix.texi:19792 +#: guix-git/doc/guix.texi:20154 msgid "Specifies the group(s) to use for @code{@@SYSTEM} group authentication." msgstr "Especifica el o los grupos usados para la identificación del grupo @code{@@SYSTEM}." #. type: deftypevr -#: guix-git/doc/guix.texi:19794 +#: guix-git/doc/guix.texi:20156 #, no-wrap msgid "{@code{files-configuration} parameter} file-name temp-dir" msgstr "{parámetro de @code{files-configuration}} nombre-archivo temp-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:19796 +#: guix-git/doc/guix.texi:20158 msgid "Specifies the directory where temporary files are stored." msgstr "Especifica el directorio donde se escriben los archivos temporales." #. type: deftypevr -#: guix-git/doc/guix.texi:19798 +#: guix-git/doc/guix.texi:20160 msgid "Defaults to @samp{\"/var/spool/cups/tmp\"}." msgstr "El valor predeterminado es @samp{\"/var/spool/cups/tmp\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19800 +#: guix-git/doc/guix.texi:20162 #, no-wrap msgid "{@code{files-configuration} parameter} string user" msgstr "{parámetro de @code{files-configuration}} string user" #. type: deftypevr -#: guix-git/doc/guix.texi:19803 +#: guix-git/doc/guix.texi:20165 msgid "Specifies the user name or ID that is used when running external programs." msgstr "Especifica el nombre de usuaria o ID usado para la ejecución de programas externos." #. type: deftypevr -#: guix-git/doc/guix.texi:19807 +#: guix-git/doc/guix.texi:20169 #, no-wrap msgid "{@code{files-configuration} parameter} string set-env" msgstr "{parámetro de @code{files-configuration}} string set-env" @@ -38543,358 +39256,357 @@ msgstr "{parámetro de @code{files-configuration}} string set-env" # FUZZY # TODO (MAAV): Repensar. #. type: deftypevr -#: guix-git/doc/guix.texi:19809 +#: guix-git/doc/guix.texi:20171 msgid "Set the specified environment variable to be passed to child processes." msgstr "Establece el valor de la variable de entorno especificada que se proporcionará a los procesos lanzados." #. type: deftypevr -#: guix-git/doc/guix.texi:19811 +#: guix-git/doc/guix.texi:20173 msgid "Defaults to @samp{\"variable value\"}." msgstr "El valor predeterminado es @samp{\"variable value\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19814 +#: guix-git/doc/guix.texi:20176 #, no-wrap msgid "{@code{cups-configuration} parameter} access-log-level access-log-level" msgstr "{parámetro de @code{cups-configuration}} nivel-registro-acceso access-log-level" #. type: deftypevr -#: guix-git/doc/guix.texi:19821 +#: guix-git/doc/guix.texi:20183 msgid "Specifies the logging level for the AccessLog file. The @code{config} level logs when printers and classes are added, deleted, or modified and when configuration files are accessed or updated. The @code{actions} level logs when print jobs are submitted, held, released, modified, or canceled, and any of the conditions for @code{config}. The @code{all} level logs all requests." msgstr "Especifica el nivel de registro para el archivo AccessLog. El nivel @code{config} registra la adición, borrado o modificación de impresoras y clases, y el acceso y modificación de los archivos de configuración. El nivel @code{actions} registra cuando los trabajos de impresión se envían, mantienen a la espera, liberan, modifican o cancelan, además de todas las condiciones de @code{config}. El nivel @code{all} registra todas las peticiones." #. type: deftypevr -#: guix-git/doc/guix.texi:19823 +#: guix-git/doc/guix.texi:20185 msgid "Defaults to @samp{actions}." msgstr "El valor predeterminado es @samp{actions}." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19825 +#: guix-git/doc/guix.texi:20187 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean auto-purge-jobs?" msgstr "{parámetro de @code{cups-configuration}} boolean auto-purge-jobs?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19828 +#: guix-git/doc/guix.texi:20190 msgid "Specifies whether to purge job history data automatically when it is no longer required for quotas." msgstr "Especifica si se purgan los datos del histórico de trabajos de manera automática cuando ya no son necesarios para las cuotas." #. type: deftypevr -#: guix-git/doc/guix.texi:19832 +#: guix-git/doc/guix.texi:20194 #, no-wrap msgid "{@code{cups-configuration} parameter} comma-separated-string-list browse-dns-sd-sub-types" msgstr "{parámetro de @code{cups-configuration}} lista-cadenas-separada-comas browse-dns-sd-sub-types" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19836 +#: guix-git/doc/guix.texi:20198 msgid "Specifies a list of DNS-SD sub-types to advertise for each shared printer. For example, @samp{\"_cups\" \"_print\"} will tell network clients that both CUPS sharing and IPP Everywhere are supported." msgstr "Especifica una lista de subtipos de DNS-SD anunciados por cada impresora compartida. Por ejemplo, @samp{\"_cups\" \"_print\"} le dirá a los clientes de red que se implementa tanto la compartición con CUPS como IPP Everywhere." #. type: deftypevr -#: guix-git/doc/guix.texi:19838 +#: guix-git/doc/guix.texi:20200 msgid "Defaults to @samp{\"_cups\"}." msgstr "El valor predeterminado es @samp{\"_cups\"}." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19840 +#: guix-git/doc/guix.texi:20202 #, no-wrap msgid "{@code{cups-configuration} parameter} browse-local-protocols browse-local-protocols" msgstr "{parámetro de @code{cups-configuration}} protocolos browse-local-protocols" #. type: deftypevr -#: guix-git/doc/guix.texi:19842 +#: guix-git/doc/guix.texi:20204 msgid "Specifies which protocols to use for local printer sharing." msgstr "Especifica qué protocolos deben usarse para compartir las impresoras locales." #. type: deftypevr -#: guix-git/doc/guix.texi:19844 +#: guix-git/doc/guix.texi:20206 msgid "Defaults to @samp{dnssd}." msgstr "El valor predeterminado es @samp{dnssd}." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19846 +#: guix-git/doc/guix.texi:20208 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean browse-web-if?" msgstr "{parámetro de @code{cups-configuration}} boolean browse-web-if?" #. type: deftypevr -#: guix-git/doc/guix.texi:19848 +#: guix-git/doc/guix.texi:20210 msgid "Specifies whether the CUPS web interface is advertised." msgstr "Especifica si se anuncia la interfaz web de CUPS." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19852 +#: guix-git/doc/guix.texi:20214 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean browsing?" msgstr "{parámetro de @code{cups-configuration}} boolean browsing?" #. type: deftypevr -#: guix-git/doc/guix.texi:19854 +#: guix-git/doc/guix.texi:20216 msgid "Specifies whether shared printers are advertised." msgstr "Especifica si se anuncian las impresoras compartidas." #. type: deftypevr -#: guix-git/doc/guix.texi:19858 +#: guix-git/doc/guix.texi:20220 #, no-wrap msgid "{@code{cups-configuration} parameter} string classification" msgstr "{parámetro de @code{cups-configuration}} string classification" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19863 +#: guix-git/doc/guix.texi:20225 msgid "Specifies the security classification of the server. Any valid banner name can be used, including @samp{\"classified\"}, @samp{\"confidential\"}, @samp{\"secret\"}, @samp{\"topsecret\"}, and @samp{\"unclassified\"}, or the banner can be omitted to disable secure printing functions." msgstr "Especifica la clasificación de seguridad del servidor. Se puede usar cualquier nombre válido para anunciar la identificación del nivel de seguridad, incluyendo @samp{\"classified\"}, @samp{\"confidential\"}, @samp{\"secret\"}, @samp{\"topsecret\"} y @samp{\"unclassified\"}, o el anuncio puede omitirse para desactivar las funciones de impresión segura." #. type: deftypevr -#: guix-git/doc/guix.texi:19865 guix-git/doc/guix.texi:20196 -#: guix-git/doc/guix.texi:22180 guix-git/doc/guix.texi:22192 -#: guix-git/doc/guix.texi:22220 guix-git/doc/guix.texi:22977 -#: guix-git/doc/guix.texi:22991 guix-git/doc/guix.texi:22998 -#: guix-git/doc/guix.texi:23005 guix-git/doc/guix.texi:23035 -#: guix-git/doc/guix.texi:23133 guix-git/doc/guix.texi:25252 -#: guix-git/doc/guix.texi:25278 guix-git/doc/guix.texi:25314 -#: guix-git/doc/guix.texi:25360 guix-git/doc/guix.texi:25379 -#: guix-git/doc/guix.texi:25418 guix-git/doc/guix.texi:25477 -#: guix-git/doc/guix.texi:25487 guix-git/doc/guix.texi:30085 -#: guix-git/doc/guix.texi:30093 guix-git/doc/guix.texi:30101 -#: guix-git/doc/guix.texi:30109 guix-git/doc/guix.texi:30388 -#: guix-git/doc/guix.texi:31743 guix-git/doc/guix.texi:31751 -#: guix-git/doc/guix.texi:31759 guix-git/doc/guix.texi:31867 -#: guix-git/doc/guix.texi:31892 guix-git/doc/guix.texi:32023 -#: guix-git/doc/guix.texi:32031 guix-git/doc/guix.texi:32039 -#: guix-git/doc/guix.texi:32047 guix-git/doc/guix.texi:32055 -#: guix-git/doc/guix.texi:32063 guix-git/doc/guix.texi:32086 -#: guix-git/doc/guix.texi:32094 guix-git/doc/guix.texi:32146 -#: guix-git/doc/guix.texi:32162 guix-git/doc/guix.texi:32170 -#: guix-git/doc/guix.texi:32209 guix-git/doc/guix.texi:32232 -#: guix-git/doc/guix.texi:32254 guix-git/doc/guix.texi:32261 -#: guix-git/doc/guix.texi:32296 guix-git/doc/guix.texi:32304 -#: guix-git/doc/guix.texi:32328 guix-git/doc/guix.texi:32360 -#: guix-git/doc/guix.texi:32389 guix-git/doc/guix.texi:32396 -#: guix-git/doc/guix.texi:32403 guix-git/doc/guix.texi:32411 -#: guix-git/doc/guix.texi:32425 guix-git/doc/guix.texi:32434 -#: guix-git/doc/guix.texi:32444 guix-git/doc/guix.texi:32451 -#: guix-git/doc/guix.texi:32458 guix-git/doc/guix.texi:32465 -#: guix-git/doc/guix.texi:32536 guix-git/doc/guix.texi:32543 -#: guix-git/doc/guix.texi:32550 guix-git/doc/guix.texi:32559 -#: guix-git/doc/guix.texi:32575 guix-git/doc/guix.texi:32582 -#: guix-git/doc/guix.texi:32589 guix-git/doc/guix.texi:32596 -#: guix-git/doc/guix.texi:32604 guix-git/doc/guix.texi:32612 +#: guix-git/doc/guix.texi:20227 guix-git/doc/guix.texi:20558 +#: guix-git/doc/guix.texi:22542 guix-git/doc/guix.texi:22554 +#: guix-git/doc/guix.texi:22582 guix-git/doc/guix.texi:23339 +#: guix-git/doc/guix.texi:23353 guix-git/doc/guix.texi:23360 +#: guix-git/doc/guix.texi:23367 guix-git/doc/guix.texi:23397 +#: guix-git/doc/guix.texi:23495 guix-git/doc/guix.texi:25614 +#: guix-git/doc/guix.texi:25640 guix-git/doc/guix.texi:25676 +#: guix-git/doc/guix.texi:25722 guix-git/doc/guix.texi:25741 +#: guix-git/doc/guix.texi:25780 guix-git/doc/guix.texi:30450 +#: guix-git/doc/guix.texi:30458 guix-git/doc/guix.texi:30466 +#: guix-git/doc/guix.texi:30474 guix-git/doc/guix.texi:30753 +#: guix-git/doc/guix.texi:32108 guix-git/doc/guix.texi:32116 +#: guix-git/doc/guix.texi:32124 guix-git/doc/guix.texi:32232 +#: guix-git/doc/guix.texi:32257 guix-git/doc/guix.texi:32388 +#: guix-git/doc/guix.texi:32396 guix-git/doc/guix.texi:32404 +#: guix-git/doc/guix.texi:32412 guix-git/doc/guix.texi:32420 +#: guix-git/doc/guix.texi:32428 guix-git/doc/guix.texi:32451 +#: guix-git/doc/guix.texi:32459 guix-git/doc/guix.texi:32511 +#: guix-git/doc/guix.texi:32527 guix-git/doc/guix.texi:32535 +#: guix-git/doc/guix.texi:32574 guix-git/doc/guix.texi:32597 +#: guix-git/doc/guix.texi:32619 guix-git/doc/guix.texi:32626 +#: guix-git/doc/guix.texi:32661 guix-git/doc/guix.texi:32669 +#: guix-git/doc/guix.texi:32693 guix-git/doc/guix.texi:32725 +#: guix-git/doc/guix.texi:32754 guix-git/doc/guix.texi:32761 +#: guix-git/doc/guix.texi:32768 guix-git/doc/guix.texi:32776 +#: guix-git/doc/guix.texi:32790 guix-git/doc/guix.texi:32799 +#: guix-git/doc/guix.texi:32809 guix-git/doc/guix.texi:32816 +#: guix-git/doc/guix.texi:32823 guix-git/doc/guix.texi:32830 +#: guix-git/doc/guix.texi:32901 guix-git/doc/guix.texi:32908 +#: guix-git/doc/guix.texi:32915 guix-git/doc/guix.texi:32924 +#: guix-git/doc/guix.texi:32940 guix-git/doc/guix.texi:32947 +#: guix-git/doc/guix.texi:32954 guix-git/doc/guix.texi:32961 +#: guix-git/doc/guix.texi:32969 guix-git/doc/guix.texi:32977 msgid "Defaults to @samp{\"\"}." msgstr "El valor predeterminado es @samp{\"\"}." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19867 +#: guix-git/doc/guix.texi:20229 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean classify-override?" msgstr "{parámetro de @code{cups-configuration}} boolean classify-override?" # FUZZY FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19870 +#: guix-git/doc/guix.texi:20232 msgid "Specifies whether users may override the classification (cover page) of individual print jobs using the @code{job-sheets} option." msgstr "Especifica si las usuarias pueden modificar la clasificación (página de portada) de trabajos de impresión individuales mediante el uso de la opción @code{job-sheets}." #. type: deftypevr -#: guix-git/doc/guix.texi:19874 +#: guix-git/doc/guix.texi:20236 #, no-wrap msgid "{@code{cups-configuration} parameter} default-auth-type default-auth-type" msgstr "{parámetro de @code{cups-configuration}} tipo-id-pred default-auth-type" #. type: deftypevr -#: guix-git/doc/guix.texi:19876 +#: guix-git/doc/guix.texi:20238 msgid "Specifies the default type of authentication to use." msgstr "Especifica el tipo de identificación usado por omisión." #. type: deftypevr -#: guix-git/doc/guix.texi:19878 +#: guix-git/doc/guix.texi:20240 msgid "Defaults to @samp{Basic}." msgstr "El valor predeterminado es @samp{Basic}." #. type: deftypevr -#: guix-git/doc/guix.texi:19880 +#: guix-git/doc/guix.texi:20242 #, no-wrap msgid "{@code{cups-configuration} parameter} default-encryption default-encryption" msgstr "{parámetro de @code{cups-configuration}} cifrado-pred default-encryption" # FUZZY FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19882 +#: guix-git/doc/guix.texi:20244 msgid "Specifies whether encryption will be used for authenticated requests." msgstr "Especifica si se usará cifrado para peticiones con identificación." #. type: deftypevr -#: guix-git/doc/guix.texi:19884 +#: guix-git/doc/guix.texi:20246 msgid "Defaults to @samp{Required}." msgstr "El valor predeterminado es @samp{Required}." #. type: deftypevr -#: guix-git/doc/guix.texi:19886 +#: guix-git/doc/guix.texi:20248 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-language" msgstr "{parámetro de @code{cups-configuration}} string default-language" #. type: deftypevr -#: guix-git/doc/guix.texi:19888 +#: guix-git/doc/guix.texi:20250 msgid "Specifies the default language to use for text and web content." msgstr "Especifica el idioma predeterminado usado para el texto y contenido de la web." #. type: deftypevr -#: guix-git/doc/guix.texi:19890 +#: guix-git/doc/guix.texi:20252 msgid "Defaults to @samp{\"en\"}." msgstr "El valor predeterminado es @samp{\"en\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19892 +#: guix-git/doc/guix.texi:20254 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-paper-size" msgstr "{parámetro de @code{cups-configuration}} cadena default-paper-size" #. type: deftypevr -#: guix-git/doc/guix.texi:19897 +#: guix-git/doc/guix.texi:20259 msgid "Specifies the default paper size for new print queues. @samp{\"Auto\"} uses a locale-specific default, while @samp{\"None\"} specifies there is no default paper size. Specific size names are typically @samp{\"Letter\"} or @samp{\"A4\"}." msgstr "Especifica el tamaño predeterminado del papel para colas de impresión nuevas. @samp{\"Auto\"} usa el valor predeterminado de la localización, mientras que @samp{\"None\"} especifica que no hay un tamaño de papel predeterminado. Los nombres de tamaños específicos habitualmente son @samp{\"Letter\"} o @samp{\"A4\"}@footnote{NdT: @samp{Letter} es el formato estándar de ANSI, de 215,9x279,4 milímetros de tamaño, mientras que A4 es el formato estándar de ISO, de 210x297 milímetros de tamaño.}." #. type: deftypevr -#: guix-git/doc/guix.texi:19899 +#: guix-git/doc/guix.texi:20261 msgid "Defaults to @samp{\"Auto\"}." msgstr "El valor predeterminado es @samp{\"Auto\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19901 +#: guix-git/doc/guix.texi:20263 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-policy" msgstr "{parámetro de @code{cups-configuration}} string default-policy" #. type: deftypevr -#: guix-git/doc/guix.texi:19903 +#: guix-git/doc/guix.texi:20265 msgid "Specifies the default access policy to use." msgstr "Especifica la política de acceso usada por omisión." #. type: deftypevr -#: guix-git/doc/guix.texi:19905 +#: guix-git/doc/guix.texi:20267 msgid "Defaults to @samp{\"default\"}." msgstr "El valor predeterminado es @samp{\"default\"}." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19907 +#: guix-git/doc/guix.texi:20269 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean default-shared?" msgstr "{parámetro de @code{cups-configuration}} boolean default-shared?" #. type: deftypevr -#: guix-git/doc/guix.texi:19909 +#: guix-git/doc/guix.texi:20271 msgid "Specifies whether local printers are shared by default." msgstr "Especifica si las impresoras locales se comparten de manera predeterminada." #. type: deftypevr -#: guix-git/doc/guix.texi:19911 guix-git/doc/guix.texi:19991 -#: guix-git/doc/guix.texi:20281 guix-git/doc/guix.texi:23067 -#: guix-git/doc/guix.texi:23118 guix-git/doc/guix.texi:23125 -#: guix-git/doc/guix.texi:24407 guix-git/doc/guix.texi:24595 -#: guix-git/doc/guix.texi:24712 guix-git/doc/guix.texi:24748 -#: guix-git/doc/guix.texi:24799 guix-git/doc/guix.texi:24818 -#: guix-git/doc/guix.texi:24828 guix-git/doc/guix.texi:24838 -#: guix-git/doc/guix.texi:24897 guix-git/doc/guix.texi:24919 -#: guix-git/doc/guix.texi:24944 guix-git/doc/guix.texi:24970 -#: guix-git/doc/guix.texi:24988 guix-git/doc/guix.texi:28180 -#: guix-git/doc/guix.texi:28208 guix-git/doc/guix.texi:28344 -#: guix-git/doc/guix.texi:28351 guix-git/doc/guix.texi:28359 -#: guix-git/doc/guix.texi:28396 guix-git/doc/guix.texi:28410 -#: guix-git/doc/guix.texi:28499 guix-git/doc/guix.texi:28506 -#: guix-git/doc/guix.texi:28514 guix-git/doc/guix.texi:29293 -#: guix-git/doc/guix.texi:29433 guix-git/doc/guix.texi:29619 -#: guix-git/doc/guix.texi:29626 guix-git/doc/guix.texi:29648 -#: guix-git/doc/guix.texi:29687 guix-git/doc/guix.texi:29707 -#: guix-git/doc/guix.texi:29721 guix-git/doc/guix.texi:29934 -#: guix-git/doc/guix.texi:31845 guix-git/doc/guix.texi:31933 -#: guix-git/doc/guix.texi:31949 guix-git/doc/guix.texi:31999 +#: guix-git/doc/guix.texi:20273 guix-git/doc/guix.texi:20353 +#: guix-git/doc/guix.texi:20643 guix-git/doc/guix.texi:23429 +#: guix-git/doc/guix.texi:23480 guix-git/doc/guix.texi:23487 +#: guix-git/doc/guix.texi:24769 guix-git/doc/guix.texi:24957 +#: guix-git/doc/guix.texi:25074 guix-git/doc/guix.texi:25110 +#: guix-git/doc/guix.texi:25161 guix-git/doc/guix.texi:25180 +#: guix-git/doc/guix.texi:25190 guix-git/doc/guix.texi:25200 +#: guix-git/doc/guix.texi:25259 guix-git/doc/guix.texi:25281 +#: guix-git/doc/guix.texi:25306 guix-git/doc/guix.texi:25332 +#: guix-git/doc/guix.texi:25350 guix-git/doc/guix.texi:28517 +#: guix-git/doc/guix.texi:28545 guix-git/doc/guix.texi:28681 +#: guix-git/doc/guix.texi:28688 guix-git/doc/guix.texi:28696 +#: guix-git/doc/guix.texi:28733 guix-git/doc/guix.texi:28747 +#: guix-git/doc/guix.texi:28836 guix-git/doc/guix.texi:28843 +#: guix-git/doc/guix.texi:28851 guix-git/doc/guix.texi:29630 +#: guix-git/doc/guix.texi:29770 guix-git/doc/guix.texi:29984 +#: guix-git/doc/guix.texi:29991 guix-git/doc/guix.texi:30013 +#: guix-git/doc/guix.texi:30052 guix-git/doc/guix.texi:30072 +#: guix-git/doc/guix.texi:30086 guix-git/doc/guix.texi:30299 +#: guix-git/doc/guix.texi:32210 guix-git/doc/guix.texi:32298 +#: guix-git/doc/guix.texi:32314 guix-git/doc/guix.texi:32364 msgid "Defaults to @samp{#t}." msgstr "El valor predeterminado es @samp{#t}" #. type: deftypevr -#: guix-git/doc/guix.texi:19913 +#: guix-git/doc/guix.texi:20275 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer dirty-clean-interval" msgstr "{parámetro de @code{cups-configuration}} entero-no-negativo dirty-clean-interval" #. type: deftypevr -#: guix-git/doc/guix.texi:19917 +#: guix-git/doc/guix.texi:20279 msgid "Specifies the delay for updating of configuration and state files, in seconds. A value of 0 causes the update to happen as soon as possible, typically within a few milliseconds." msgstr "Especifica el retraso para la actualización de los archivos de configuración y estado, en segundo. Un valor de 0 hace que la actualización se lleve a cabo tan pronto sea posible, en algunos milisegundos habitualmente." #. type: deftypevr -#: guix-git/doc/guix.texi:19919 guix-git/doc/guix.texi:19967 -#: guix-git/doc/guix.texi:19976 guix-git/doc/guix.texi:20288 -#: guix-git/doc/guix.texi:24757 guix-git/doc/guix.texi:24790 +#: guix-git/doc/guix.texi:20281 guix-git/doc/guix.texi:20329 +#: guix-git/doc/guix.texi:20338 guix-git/doc/guix.texi:20650 +#: guix-git/doc/guix.texi:25119 guix-git/doc/guix.texi:25152 msgid "Defaults to @samp{30}." msgstr "El valor predeterminado es @samp{30}." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19921 +#: guix-git/doc/guix.texi:20283 #, no-wrap msgid "{@code{cups-configuration} parameter} error-policy error-policy" msgstr "{parámetro de @code{cups-configuration}} política-error error-policy" #. type: deftypevr -#: guix-git/doc/guix.texi:19927 +#: guix-git/doc/guix.texi:20289 msgid "Specifies what to do when an error occurs. Possible values are @code{abort-job}, which will discard the failed print job; @code{retry-job}, which will retry the job at a later time; @code{retry-current-job}, which retries the failed job immediately; and @code{stop-printer}, which stops the printer." msgstr "Especifica qué hacer cuando ocurra un error. Los valores posibles son @code{abort-job}, que descartará el trabajo de impresión fallido; @code{retry-job}, que intentará llevar de nuevo a cabo el trabajo en un momento posterior; @code{retry-current-job}, que reintenta el trabajo que falló de manera inmediata; y @code{stop-printer}, que para la impresora." #. type: deftypevr -#: guix-git/doc/guix.texi:19929 +#: guix-git/doc/guix.texi:20291 msgid "Defaults to @samp{stop-printer}." msgstr "El valor predeterminado es @samp{stop-printer}." #. type: deftypevr -#: guix-git/doc/guix.texi:19931 +#: guix-git/doc/guix.texi:20293 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer filter-limit" msgstr "{parámetro de @code{cups-configuration}} entero-no-negativo filter-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:19939 +#: guix-git/doc/guix.texi:20301 msgid "Specifies the maximum cost of filters that are run concurrently, which can be used to minimize disk, memory, and CPU resource problems. A limit of 0 disables filter limiting. An average print to a non-PostScript printer needs a filter limit of about 200. A PostScript printer needs about half that (100). Setting the limit below these thresholds will effectively limit the scheduler to printing a single job at any time." msgstr "Especifica el coste máximo de filtros que se ejecutan de manera concurrente, lo que puede usarse para minimizar problemas de recursos de disco, memoria y procesador. Un límite de 0 desactiva la limitación del filtrado. Una impresión media con una impresora no-PostScript necesita una limitación del filtrado de 200 más o menos. Una impresora PostScript necesita cerca de la mitad (100). Establecer un límite por debajo de estos valores limitará de forma efectiva al planificador a la ejecución de un único trabajo de impresión en cualquier momento." #. type: deftypevr -#: guix-git/doc/guix.texi:19941 guix-git/doc/guix.texi:19949 -#: guix-git/doc/guix.texi:19998 guix-git/doc/guix.texi:20114 -#: guix-git/doc/guix.texi:20128 guix-git/doc/guix.texi:20135 -#: guix-git/doc/guix.texi:21622 guix-git/doc/guix.texi:21638 -#: guix-git/doc/guix.texi:22295 guix-git/doc/guix.texi:22307 -#: guix-git/doc/guix.texi:23086 guix-git/doc/guix.texi:23095 -#: guix-git/doc/guix.texi:23103 guix-git/doc/guix.texi:23111 -#: guix-git/doc/guix.texi:29309 guix-git/doc/guix.texi:29634 -#: guix-git/doc/guix.texi:31838 guix-git/doc/guix.texi:32138 -#: guix-git/doc/guix.texi:32312 +#: guix-git/doc/guix.texi:20303 guix-git/doc/guix.texi:20311 +#: guix-git/doc/guix.texi:20360 guix-git/doc/guix.texi:20476 +#: guix-git/doc/guix.texi:20490 guix-git/doc/guix.texi:20497 +#: guix-git/doc/guix.texi:21984 guix-git/doc/guix.texi:22000 +#: guix-git/doc/guix.texi:22657 guix-git/doc/guix.texi:22669 +#: guix-git/doc/guix.texi:23448 guix-git/doc/guix.texi:23457 +#: guix-git/doc/guix.texi:23465 guix-git/doc/guix.texi:23473 +#: guix-git/doc/guix.texi:29646 guix-git/doc/guix.texi:29999 +#: guix-git/doc/guix.texi:32203 guix-git/doc/guix.texi:32503 +#: guix-git/doc/guix.texi:32677 msgid "Defaults to @samp{0}." msgstr "El valor predeterminado es @samp{0}." #. type: deftypevr -#: guix-git/doc/guix.texi:19943 +#: guix-git/doc/guix.texi:20305 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer filter-nice" msgstr "{parámetro de @code{cups-configuration}} entero-no-negativo filter-nice" # FUZZY FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19947 +#: guix-git/doc/guix.texi:20309 msgid "Specifies the scheduling priority of filters that are run to print a job. The nice value ranges from 0, the highest priority, to 19, the lowest priority." msgstr "Especifica la prioridad de planificación de los filtros que se ejecuten para la impresión de un trabajo. El valor de ``nice'' va desde 0, la mayor prioridad, a 19, la menor prioridad." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19951 +#: guix-git/doc/guix.texi:20313 #, no-wrap msgid "{@code{cups-configuration} parameter} host-name-lookups host-name-lookups" msgstr "{parámetro de @code{cups-configuration}} búsqueda-nombres-máquina host-name-lookups" @@ -38906,61 +39618,61 @@ msgstr "{parámetro de @code{cups-configuration}} búsqueda-nombres-máquina hos # más bien no debería tener un valor falso a no ser que se quiera # publicar el servicio de manera pública? #. type: deftypevr -#: guix-git/doc/guix.texi:19958 +#: guix-git/doc/guix.texi:20320 msgid "Specifies whether to do reverse lookups on connecting clients. The @code{double} setting causes @code{cupsd} to verify that the hostname resolved from the address matches one of the addresses returned for that hostname. Double lookups also prevent clients with unregistered addresses from connecting to your server. Only set this option to @code{#t} or @code{double} if absolutely required." msgstr "Especifica si se realizarán las búsquedas inversas en las conexiones de clientes. La opción @code{double} instruye a @code{cupsd} para que verifique que el nombre de máquina al que resuelve la dirección corresponde con la dirección devuelta por dicho nombre de máquina. Las búsquedas dobles también evitan que clientes con direcciones sin registrar se conecten a su servidor. Configure esta opción con @code{#t} o @code{double} únicamente si es absolutamente necesario." #. type: deftypevr -#: guix-git/doc/guix.texi:19962 +#: guix-git/doc/guix.texi:20324 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-kill-delay" msgstr "{parámetro de @code{cups-configuration}} entero-no-negativo job-kill-delay" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19965 +#: guix-git/doc/guix.texi:20327 msgid "Specifies the number of seconds to wait before killing the filters and backend associated with a canceled or held job." msgstr "Especifica el número de segundos a esperar antes de terminar los filtros y el motor asociados con un trabajo cancelado o puesto en espera." #. type: deftypevr -#: guix-git/doc/guix.texi:19969 +#: guix-git/doc/guix.texi:20331 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-retry-interval" msgstr "{parámetro de @code{cups-configuration}} entero-no-negativo job-retry-interval" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19974 +#: guix-git/doc/guix.texi:20336 msgid "Specifies the interval between retries of jobs in seconds. This is typically used for fax queues but can also be used with normal print queues whose error policy is @code{retry-job} or @code{retry-current-job}." msgstr "Especifica el intervalo entre los reintentos de trabajos en segundos. Se usa de manera habitual en colas de fax pero también puede usarse con colas de impresión normales cuya política de error sea @code{retry-job} o @code{retry-current-job}." #. type: deftypevr -#: guix-git/doc/guix.texi:19978 +#: guix-git/doc/guix.texi:20340 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-retry-limit" msgstr "{parámetro de @code{cups-configuration}} entero-no-negativo job-retry-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:19983 +#: guix-git/doc/guix.texi:20345 msgid "Specifies the number of retries that are done for jobs. This is typically used for fax queues but can also be used with normal print queues whose error policy is @code{retry-job} or @code{retry-current-job}." msgstr "Especifica el número de reintentos que se llevan a cabo con los trabajos. De manera habitual se usa con colas de fax pero también puede usarse con colas de impresión normal cuya política de error sea @code{retry-job} o @code{retry-current-job}." #. type: deftypevr -#: guix-git/doc/guix.texi:19985 guix-git/doc/guix.texi:24721 -#: guix-git/doc/guix.texi:30186 guix-git/doc/guix.texi:30206 -#: guix-git/doc/guix.texi:30222 guix-git/doc/guix.texi:30236 -#: guix-git/doc/guix.texi:30243 guix-git/doc/guix.texi:30250 -#: guix-git/doc/guix.texi:30257 guix-git/doc/guix.texi:30417 -#: guix-git/doc/guix.texi:30433 guix-git/doc/guix.texi:30440 -#: guix-git/doc/guix.texi:30447 guix-git/doc/guix.texi:30458 -#: guix-git/doc/guix.texi:31790 guix-git/doc/guix.texi:31798 -#: guix-git/doc/guix.texi:31806 guix-git/doc/guix.texi:31830 +#: guix-git/doc/guix.texi:20347 guix-git/doc/guix.texi:25083 +#: guix-git/doc/guix.texi:30551 guix-git/doc/guix.texi:30571 +#: guix-git/doc/guix.texi:30587 guix-git/doc/guix.texi:30601 +#: guix-git/doc/guix.texi:30608 guix-git/doc/guix.texi:30615 +#: guix-git/doc/guix.texi:30622 guix-git/doc/guix.texi:30782 +#: guix-git/doc/guix.texi:30798 guix-git/doc/guix.texi:30805 +#: guix-git/doc/guix.texi:30812 guix-git/doc/guix.texi:30823 +#: guix-git/doc/guix.texi:32155 guix-git/doc/guix.texi:32163 +#: guix-git/doc/guix.texi:32171 guix-git/doc/guix.texi:32195 msgid "Defaults to @samp{5}." msgstr "El valor predeterminado es @samp{5}." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:19987 +#: guix-git/doc/guix.texi:20349 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean keep-alive?" msgstr "{parámetro de @code{cups-configuration}} boolean keep-alive?" @@ -38970,315 +39682,315 @@ msgstr "{parámetro de @code{cups-configuration}} boolean keep-alive?" # MAAV (Duda): Keep-alive podría ser mantenimiento del canal, pero # también es parte del protocolo... #. type: deftypevr -#: guix-git/doc/guix.texi:19989 +#: guix-git/doc/guix.texi:20351 msgid "Specifies whether to support HTTP keep-alive connections." msgstr "Especifica si se permiten conexiones ``keep-alive'' de HTTP." #. type: deftypevr -#: guix-git/doc/guix.texi:19993 +#: guix-git/doc/guix.texi:20355 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer limit-request-body" msgstr "{parámetro de @code{cups-configuration}} entero-no-negativo limit-request-body" #. type: deftypevr -#: guix-git/doc/guix.texi:19996 +#: guix-git/doc/guix.texi:20358 msgid "Specifies the maximum size of print files, IPP requests, and HTML form data. A limit of 0 disables the limit check." msgstr "Especifica el tamaño máximo de los archivos de impresión, peticiones IPP y datos de formularios HTTP. Un límite de 0 desactiva la comprobación del límite." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20000 +#: guix-git/doc/guix.texi:20362 #, no-wrap msgid "{@code{cups-configuration} parameter} multiline-string-list listen" msgstr "{parámetro de @code{cups-configuration}} lista-cadenas-multilínea listen" #. type: deftypevr -#: guix-git/doc/guix.texi:20007 +#: guix-git/doc/guix.texi:20369 msgid "Listens on the specified interfaces for connections. Valid values are of the form @var{address}:@var{port}, where @var{address} is either an IPv6 address enclosed in brackets, an IPv4 address, or @code{*} to indicate all addresses. Values can also be file names of local UNIX domain sockets. The Listen directive is similar to the Port directive but allows you to restrict access to specific interfaces or networks." msgstr "Escucha a la espera de conexiones en las interfaces especificadas. Se aceptan valores con la forma @var{dirección}:@var{puerto}, donde @var{dirección} es o bien una dirección IPv6 entre corchetes, una dirección IPv4 o @code{*} para indicar todas las direcciones. Los valores también pueden ser nombres de archivo de sockets de dominio de UNIX locales. La directiva ``Listen'' es similar a la directiva ``Port'', pero le permite la restricción del acceso a interfaces o redes específicas." #. type: deftypevr -#: guix-git/doc/guix.texi:20009 +#: guix-git/doc/guix.texi:20371 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer listen-back-log" msgstr "{parámetro de @code{cups-configuration}} entero-no-negativo listen-back-log" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20016 +#: guix-git/doc/guix.texi:20378 msgid "Specifies the number of pending connections that will be allowed. This normally only affects very busy servers that have reached the MaxClients limit, but can also be triggered by large numbers of simultaneous connections. When the limit is reached, the operating system will refuse additional connections until the scheduler can accept the pending ones." msgstr "Especifica el número de conexiones pendientes permitidas. Habitualmente afecta de manera exclusiva a servidores con mucha carga de trabajo que han alcanzado el límite de clientes ``MaxClients'', pero también puede ser provocado por grandes números de conexiones simultaneas. Cuando se alcanza el límite, el sistema operativo rechaza conexiones adicionales hasta que el planificador pueda aceptar las pendientes." #. type: deftypevr -#: guix-git/doc/guix.texi:20018 +#: guix-git/doc/guix.texi:20380 msgid "Defaults to @samp{128}." msgstr "El valor predeterminado es @samp{128}." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20020 +#: guix-git/doc/guix.texi:20382 #, no-wrap msgid "{@code{cups-configuration} parameter} location-access-control-list location-access-controls" msgstr "{parámetro de @code{cups-configuration}} lista-location-access-control location-access-controls" #. type: deftypevr -#: guix-git/doc/guix.texi:20022 +#: guix-git/doc/guix.texi:20384 msgid "Specifies a set of additional access controls." msgstr "Especifica un conjunto adicional de controles de acceso." #. type: deftypevr -#: guix-git/doc/guix.texi:20024 +#: guix-git/doc/guix.texi:20386 msgid "Available @code{location-access-controls} fields are:" msgstr "Los campos disponibles de @code{location-access-controls} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:20025 +#: guix-git/doc/guix.texi:20387 #, no-wrap msgid "{@code{location-access-controls} parameter} file-name path" msgstr "{parámetro de @code{location-access-controls}} nombre-archivo path" #. type: deftypevr -#: guix-git/doc/guix.texi:20027 +#: guix-git/doc/guix.texi:20389 msgid "Specifies the URI path to which the access control applies." msgstr "Especifica la ruta URI sobre la que el control de acceso tendrá efecto." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20029 +#: guix-git/doc/guix.texi:20391 #, no-wrap msgid "{@code{location-access-controls} parameter} access-control-list access-controls" msgstr "{parámetro de @code{location-access-controls}} lista-access-control access-controls" #. type: deftypevr -#: guix-git/doc/guix.texi:20032 +#: guix-git/doc/guix.texi:20394 msgid "Access controls for all access to this path, in the same format as the @code{access-controls} of @code{operation-access-control}." msgstr "Controles de acceso para todos los accesos a esta ruta, en el mismo formato que @code{access-controls} de @code{operation-access-control}." #. type: deftypevr -#: guix-git/doc/guix.texi:20034 guix-git/doc/guix.texi:20040 -#: guix-git/doc/guix.texi:20054 guix-git/doc/guix.texi:20061 -#: guix-git/doc/guix.texi:20203 guix-git/doc/guix.texi:20262 -#: guix-git/doc/guix.texi:20340 guix-git/doc/guix.texi:20354 -#: guix-git/doc/guix.texi:21502 guix-git/doc/guix.texi:21511 -#: guix-git/doc/guix.texi:22781 guix-git/doc/guix.texi:22984 -#: guix-git/doc/guix.texi:23012 guix-git/doc/guix.texi:23042 -#: guix-git/doc/guix.texi:23157 guix-git/doc/guix.texi:23170 -#: guix-git/doc/guix.texi:23177 guix-git/doc/guix.texi:24927 -#: guix-git/doc/guix.texi:25322 guix-git/doc/guix.texi:25426 -#: guix-git/doc/guix.texi:25853 guix-git/doc/guix.texi:25861 -#: guix-git/doc/guix.texi:26106 guix-git/doc/guix.texi:28239 -#: guix-git/doc/guix.texi:28417 guix-git/doc/guix.texi:28616 -#: guix-git/doc/guix.texi:30077 guix-git/doc/guix.texi:30137 -#: guix-git/doc/guix.texi:30145 guix-git/doc/guix.texi:31853 -#: guix-git/doc/guix.texi:31860 guix-git/doc/guix.texi:32202 -#: guix-git/doc/guix.texi:32280 guix-git/doc/guix.texi:32374 -#: guix-git/doc/guix.texi:32382 guix-git/doc/guix.texi:32418 -#: guix-git/doc/guix.texi:32568 guix-git/doc/guix.texi:32619 -#: guix-git/doc/guix.texi:32628 +#: guix-git/doc/guix.texi:20396 guix-git/doc/guix.texi:20402 +#: guix-git/doc/guix.texi:20416 guix-git/doc/guix.texi:20423 +#: guix-git/doc/guix.texi:20565 guix-git/doc/guix.texi:20624 +#: guix-git/doc/guix.texi:20702 guix-git/doc/guix.texi:20716 +#: guix-git/doc/guix.texi:21864 guix-git/doc/guix.texi:21873 +#: guix-git/doc/guix.texi:23143 guix-git/doc/guix.texi:23346 +#: guix-git/doc/guix.texi:23374 guix-git/doc/guix.texi:23404 +#: guix-git/doc/guix.texi:23519 guix-git/doc/guix.texi:23532 +#: guix-git/doc/guix.texi:23539 guix-git/doc/guix.texi:25289 +#: guix-git/doc/guix.texi:25684 guix-git/doc/guix.texi:25788 +#: guix-git/doc/guix.texi:26190 guix-git/doc/guix.texi:26198 +#: guix-git/doc/guix.texi:26443 guix-git/doc/guix.texi:28576 +#: guix-git/doc/guix.texi:28754 guix-git/doc/guix.texi:28953 +#: guix-git/doc/guix.texi:30442 guix-git/doc/guix.texi:30502 +#: guix-git/doc/guix.texi:30510 guix-git/doc/guix.texi:32218 +#: guix-git/doc/guix.texi:32225 guix-git/doc/guix.texi:32567 +#: guix-git/doc/guix.texi:32645 guix-git/doc/guix.texi:32739 +#: guix-git/doc/guix.texi:32747 guix-git/doc/guix.texi:32783 +#: guix-git/doc/guix.texi:32933 guix-git/doc/guix.texi:32984 +#: guix-git/doc/guix.texi:32993 msgid "Defaults to @samp{()}." msgstr "El valor predeterminado es @samp{()}." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20036 +#: guix-git/doc/guix.texi:20398 #, no-wrap msgid "{@code{location-access-controls} parameter} method-access-control-list method-access-controls" msgstr "{parámetro de @code{location-access-controls}} lista-method-access-control method-access-controls" # FUZZY FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20038 +#: guix-git/doc/guix.texi:20400 msgid "Access controls for method-specific access to this path." msgstr "Controles de acceso para accesos con métodos específicos para esta ruta." #. type: deftypevr -#: guix-git/doc/guix.texi:20042 +#: guix-git/doc/guix.texi:20404 msgid "Available @code{method-access-controls} fields are:" msgstr "Los campos disponibles de @code{method-access-controls} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:20043 +#: guix-git/doc/guix.texi:20405 #, no-wrap msgid "{@code{method-access-controls} parameter} boolean reverse?" msgstr "{parámetro de @code{method-access-controls}} boolean reverse?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20046 +#: guix-git/doc/guix.texi:20408 msgid "If @code{#t}, apply access controls to all methods except the listed methods. Otherwise apply to only the listed methods." msgstr "Si es @code{#t}, los controles de acceso son efectivos con todos los métodos excepto los métodos listados. En otro caso, son efectivos únicamente con los métodos listados." #. type: deftypevr -#: guix-git/doc/guix.texi:20050 +#: guix-git/doc/guix.texi:20412 #, no-wrap msgid "{@code{method-access-controls} parameter} method-list methods" msgstr "{parámetro de @code{method-access-controls}} lista-métodos methods" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20052 +#: guix-git/doc/guix.texi:20414 msgid "Methods to which this access control applies." msgstr "Métodos con los cuales este control de acceso es efectivo." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20056 +#: guix-git/doc/guix.texi:20418 #, no-wrap msgid "{@code{method-access-controls} parameter} access-control-list access-controls" msgstr "{parámetro de @code{method-access-controls}} lista-control-acceso access-controls" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20059 +#: guix-git/doc/guix.texi:20421 msgid "Access control directives, as a list of strings. Each string should be one directive, such as @samp{\"Order allow,deny\"}." msgstr "Directivas de control de acceso, como una lista de cadenas. Cada cadena debe ser una directiva, como @samp{\"Order allow,deny\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:20065 +#: guix-git/doc/guix.texi:20427 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer log-debug-history" msgstr "{parámetro de @code{cups-configuration}} entero-no-negativo log-debug-history" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20069 +#: guix-git/doc/guix.texi:20431 msgid "Specifies the number of debugging messages that are retained for logging if an error occurs in a print job. Debug messages are logged regardless of the LogLevel setting." msgstr "Especifica el número de mensajes de depuración que se retienen para el registro si sucede un error en un trabajo de impresión. Los mensajes de depuración se registran independientemente de la configuración de ``LogLevel''." #. type: deftypevr -#: guix-git/doc/guix.texi:20071 guix-git/doc/guix.texi:20092 -#: guix-git/doc/guix.texi:20099 guix-git/doc/guix.texi:22541 -#: guix-git/doc/guix.texi:24459 guix-git/doc/guix.texi:24474 -#: guix-git/doc/guix.texi:28601 +#: guix-git/doc/guix.texi:20433 guix-git/doc/guix.texi:20454 +#: guix-git/doc/guix.texi:20461 guix-git/doc/guix.texi:22903 +#: guix-git/doc/guix.texi:24821 guix-git/doc/guix.texi:24836 +#: guix-git/doc/guix.texi:28938 msgid "Defaults to @samp{100}." msgstr "El valor predeterminado es @samp{100}." #. type: deftypevr -#: guix-git/doc/guix.texi:20073 +#: guix-git/doc/guix.texi:20435 #, no-wrap msgid "{@code{cups-configuration} parameter} log-level log-level" msgstr "{parámetro de @code{cups-configuration}} nivel-registro log-level" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20076 +#: guix-git/doc/guix.texi:20438 msgid "Specifies the level of logging for the ErrorLog file. The value @code{none} stops all logging while @code{debug2} logs everything." msgstr "Especifica el nivel de depuración del archivo ``ErrorLog''. El valor @code{none} inhibe todos los registros mientras que @code{debug2} registra todo." #. type: deftypevr -#: guix-git/doc/guix.texi:20078 guix-git/doc/guix.texi:24936 +#: guix-git/doc/guix.texi:20440 guix-git/doc/guix.texi:25298 msgid "Defaults to @samp{info}." msgstr "El valor predeterminado es @samp{info}" #. type: deftypevr -#: guix-git/doc/guix.texi:20080 +#: guix-git/doc/guix.texi:20442 #, no-wrap msgid "{@code{cups-configuration} parameter} log-time-format log-time-format" msgstr "{parámetro de @code{cups-configuration}} formato-tiempo-registro log-time-format" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20083 +#: guix-git/doc/guix.texi:20445 msgid "Specifies the format of the date and time in the log files. The value @code{standard} logs whole seconds while @code{usecs} logs microseconds." msgstr "Especifica el formato de la fecha y el tiempo en los archivos de registro. El valor @code{standard} registra con segundos completos mientras que @code{usecs} registra con microsegundos." #. type: deftypevr -#: guix-git/doc/guix.texi:20085 +#: guix-git/doc/guix.texi:20447 msgid "Defaults to @samp{standard}." msgstr "El valor predeterminado es @samp{standard}." #. type: deftypevr -#: guix-git/doc/guix.texi:20087 +#: guix-git/doc/guix.texi:20449 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-clients" msgstr "{parámetro de @code{cups-configuration}} entero-no-negativo max-clients" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20090 +#: guix-git/doc/guix.texi:20452 msgid "Specifies the maximum number of simultaneous clients that are allowed by the scheduler." msgstr "Especifica el número de clientes simultáneos máximo que son admitidos por el planificador." #. type: deftypevr -#: guix-git/doc/guix.texi:20094 +#: guix-git/doc/guix.texi:20456 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-clients-per-host" msgstr "{parámetro de @code{cups-configuration}} entero-no-negativo max-clients-per-host" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20097 +#: guix-git/doc/guix.texi:20459 msgid "Specifies the maximum number of simultaneous clients that are allowed from a single address." msgstr "Especifica el número de clientes simultáneos máximo que se permiten desde una única dirección." #. type: deftypevr -#: guix-git/doc/guix.texi:20101 +#: guix-git/doc/guix.texi:20463 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-copies" msgstr "{parámetro de @code{cups-configuration}} entero-no-negativo max-copies" #. type: deftypevr -#: guix-git/doc/guix.texi:20104 +#: guix-git/doc/guix.texi:20466 msgid "Specifies the maximum number of copies that a user can print of each job." msgstr "Especifica el número de copias máximo que una usuaria puede imprimir con cada trabajo." #. type: deftypevr -#: guix-git/doc/guix.texi:20106 +#: guix-git/doc/guix.texi:20468 msgid "Defaults to @samp{9999}." msgstr "El valor predeterminado es @samp{9999}." #. type: deftypevr -#: guix-git/doc/guix.texi:20108 +#: guix-git/doc/guix.texi:20470 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-hold-time" msgstr "{parámetro de @code{cups-configuration}} entero-no-negativo max-hold-time" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20112 +#: guix-git/doc/guix.texi:20474 msgid "Specifies the maximum time a job may remain in the @code{indefinite} hold state before it is canceled. A value of 0 disables cancellation of held jobs." msgstr "Especifica el tiempo máximo que un trabajo puede permanecer en el estado de espera @code{indefinite} antes de su cancelación. Un valor de 0 desactiva la cancelación de trabajos en espera." #. type: deftypevr -#: guix-git/doc/guix.texi:20116 +#: guix-git/doc/guix.texi:20478 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs" msgstr "{parámetro de @code{cups-configuration}} entero-no-negativo max-jobs" #. type: deftypevr -#: guix-git/doc/guix.texi:20119 +#: guix-git/doc/guix.texi:20481 msgid "Specifies the maximum number of simultaneous jobs that are allowed. Set to 0 to allow an unlimited number of jobs." msgstr "Especifica el número de trabajos simultáneos máximo permitido. El valor 0 permite un número ilimitado de trabajos." #. type: deftypevr -#: guix-git/doc/guix.texi:20121 +#: guix-git/doc/guix.texi:20483 msgid "Defaults to @samp{500}." msgstr "El valor predeterminado es @samp{500}." #. type: deftypevr -#: guix-git/doc/guix.texi:20123 +#: guix-git/doc/guix.texi:20485 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs-per-printer" msgstr "{parámetro de @code{cups-configuration}} entero-no-negativo max-jobs-per-printer" #. type: deftypevr -#: guix-git/doc/guix.texi:20126 +#: guix-git/doc/guix.texi:20488 msgid "Specifies the maximum number of simultaneous jobs that are allowed per printer. A value of 0 allows up to MaxJobs jobs per printer." msgstr "Especifica el número de trabajos simultáneos máximo que se permite por impresora. Un valor de 0 permite hasta ``MaxJobs'' por impresora." #. type: deftypevr -#: guix-git/doc/guix.texi:20130 +#: guix-git/doc/guix.texi:20492 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs-per-user" msgstr "{parámetro de @code{cups-configuration}} entero-no-negativo max-jobs-per-user" #. type: deftypevr -#: guix-git/doc/guix.texi:20133 +#: guix-git/doc/guix.texi:20495 msgid "Specifies the maximum number of simultaneous jobs that are allowed per user. A value of 0 allows up to MaxJobs jobs per user." msgstr "Especifica el número de trabajos simultáneos máximo que se permite por usuaria. Un valor de 0 permite hasta ``MaxJobs'' por usuaria." #. type: deftypevr -#: guix-git/doc/guix.texi:20137 +#: guix-git/doc/guix.texi:20499 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-job-time" msgstr "{parámetro de @code{cups-configuration}} entero-no-negativo max-job-time" @@ -39286,199 +39998,199 @@ msgstr "{parámetro de @code{cups-configuration}} entero-no-negativo max-job-tim # FUZZY # TODO (MAAV): Revisar, repensar nota, rehacer traducción... #. type: deftypevr -#: guix-git/doc/guix.texi:20140 +#: guix-git/doc/guix.texi:20502 msgid "Specifies the maximum time a job may take to print before it is canceled, in seconds. Set to 0 to disable cancellation of ``stuck'' jobs." msgstr "Especifica el tiempo de duración de la impresión máximo que un trabajo puede tomar antes de ser cancelado, en segundos. El valor 0 desactiva la cancelación de trabajos ``atascados''." #. type: deftypevr -#: guix-git/doc/guix.texi:20142 +#: guix-git/doc/guix.texi:20504 msgid "Defaults to @samp{10800}." msgstr "El valor predeterminado es @samp{10800}." #. type: deftypevr -#: guix-git/doc/guix.texi:20144 +#: guix-git/doc/guix.texi:20506 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-log-size" msgstr "{parámetro de @code{cups-configuration}} entero-no-negativo max-log-size" #. type: deftypevr -#: guix-git/doc/guix.texi:20147 +#: guix-git/doc/guix.texi:20509 msgid "Specifies the maximum size of the log files before they are rotated, in bytes. The value 0 disables log rotation." msgstr "Especifica el tamaño máximo de los archivos de registro antes de su rotación, en bytes. El valor 0 desactiva la rotación de registros." #. type: deftypevr -#: guix-git/doc/guix.texi:20149 +#: guix-git/doc/guix.texi:20511 msgid "Defaults to @samp{1048576}." msgstr "El valor predeterminado es @samp{1048576}." #. type: deftypevr -#: guix-git/doc/guix.texi:20151 +#: guix-git/doc/guix.texi:20513 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer multiple-operation-timeout" msgstr "{parámetro de @code{cups-configuration}} entero-no-negativo multiple-operation-timeout" #. type: deftypevr -#: guix-git/doc/guix.texi:20154 +#: guix-git/doc/guix.texi:20516 msgid "Specifies the maximum amount of time to allow between files in a multiple file print job, in seconds." msgstr "Especifica el tiempo máximo permitido entre archivos en un trabajo de impresión con múltiples archivos, en segundos." #. type: deftypevr -#: guix-git/doc/guix.texi:20156 guix-git/doc/guix.texi:20367 +#: guix-git/doc/guix.texi:20518 guix-git/doc/guix.texi:20729 #, fuzzy #| msgid "Defaults to @samp{100}." msgid "Defaults to @samp{900}." msgstr "El valor predeterminado es @samp{100}." #. type: deftypevr -#: guix-git/doc/guix.texi:20158 +#: guix-git/doc/guix.texi:20520 #, no-wrap msgid "{@code{cups-configuration} parameter} string page-log-format" msgstr "{parámetro de @code{cups-configuration}} string page-log-format" #. type: deftypevr -#: guix-git/doc/guix.texi:20163 +#: guix-git/doc/guix.texi:20525 msgid "Specifies the format of PageLog lines. Sequences beginning with percent (@samp{%}) characters are replaced with the corresponding information, while all other characters are copied literally. The following percent sequences are recognized:" msgstr "Especifica el formato de las líneas PageLog. Las secuencias de caracteres que comiencen con el signo de porcentaje (@samp{%}) se reemplazan con la información correspondiente, mientras que el resto de caracteres se copia de manera literal. Se reconocen las siguientes secuencias:" #. type: item -#: guix-git/doc/guix.texi:20165 +#: guix-git/doc/guix.texi:20527 #, no-wrap msgid "%%" msgstr "%%" # FUZZY #. type: table -#: guix-git/doc/guix.texi:20167 +#: guix-git/doc/guix.texi:20529 msgid "insert a single percent character" msgstr "inserta literalmente un símbolo de porcentaje" #. type: item -#: guix-git/doc/guix.texi:20168 +#: guix-git/doc/guix.texi:20530 #, no-wrap msgid "%@{name@}" msgstr "%@{nombre@}" #. type: table -#: guix-git/doc/guix.texi:20170 +#: guix-git/doc/guix.texi:20532 msgid "insert the value of the specified IPP attribute" msgstr "inserta el valor del atributo IPP especificado" #. type: item -#: guix-git/doc/guix.texi:20171 +#: guix-git/doc/guix.texi:20533 #, no-wrap msgid "%C" msgstr "%C" #. type: table -#: guix-git/doc/guix.texi:20173 +#: guix-git/doc/guix.texi:20535 msgid "insert the number of copies for the current page" msgstr "inserta el número de copias para la página actual" #. type: item -#: guix-git/doc/guix.texi:20174 +#: guix-git/doc/guix.texi:20536 #, no-wrap msgid "%P" msgstr "%P" #. type: table -#: guix-git/doc/guix.texi:20176 +#: guix-git/doc/guix.texi:20538 msgid "insert the current page number" msgstr "inserta el número de página actual" #. type: item -#: guix-git/doc/guix.texi:20177 +#: guix-git/doc/guix.texi:20539 #, no-wrap msgid "%T" msgstr "%T" # FUZZY #. type: table -#: guix-git/doc/guix.texi:20179 +#: guix-git/doc/guix.texi:20541 msgid "insert the current date and time in common log format" msgstr "inserta la fecha y hora actuales en el formato común de registro" #. type: item -#: guix-git/doc/guix.texi:20180 +#: guix-git/doc/guix.texi:20542 #, no-wrap msgid "%j" msgstr "%j" # FUZZY #. type: table -#: guix-git/doc/guix.texi:20182 +#: guix-git/doc/guix.texi:20544 msgid "insert the job ID" msgstr "introduce el ID del trabajo" #. type: item -#: guix-git/doc/guix.texi:20183 guix-git/doc/guix.texi:22140 +#: guix-git/doc/guix.texi:20545 guix-git/doc/guix.texi:22502 #, no-wrap msgid "%p" msgstr "%p" #. type: table -#: guix-git/doc/guix.texi:20185 +#: guix-git/doc/guix.texi:20547 msgid "insert the printer name" msgstr "inserta el nombre de impresora" #. type: item -#: guix-git/doc/guix.texi:20186 guix-git/doc/guix.texi:22163 +#: guix-git/doc/guix.texi:20548 guix-git/doc/guix.texi:22525 #, no-wrap msgid "%u" msgstr "%u" #. type: table -#: guix-git/doc/guix.texi:20188 +#: guix-git/doc/guix.texi:20550 msgid "insert the username" msgstr "inserta el nombre de usuaria" #. type: deftypevr -#: guix-git/doc/guix.texi:20194 +#: guix-git/doc/guix.texi:20556 msgid "A value of the empty string disables page logging. The string @code{%p %u %j %T %P %C %@{job-billing@} %@{job-originating-host-name@} %@{job-name@} %@{media@} %@{sides@}} creates a page log with the standard items." msgstr "La cadena vacía desactiva el registro de página. La cadena @code{%p %u %j %T %P %C %@{job-billing@} %@{job-originating-host-name@} %@{job-name@} %@{media@} %@{sides@}} crea un registro de página con los elementos estándar." #. type: deftypevr -#: guix-git/doc/guix.texi:20198 +#: guix-git/doc/guix.texi:20560 #, no-wrap msgid "{@code{cups-configuration} parameter} environment-variables environment-variables" msgstr "{parámetro de @code{cups-configuration}} variables-entorno environment-variables" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20201 +#: guix-git/doc/guix.texi:20563 msgid "Passes the specified environment variable(s) to child processes; a list of strings." msgstr "Proporciona la o las variables de entorno especificadas a los procesos iniciados; una lista de cadenas." #. type: deftypevr -#: guix-git/doc/guix.texi:20205 +#: guix-git/doc/guix.texi:20567 #, no-wrap msgid "{@code{cups-configuration} parameter} policy-configuration-list policies" msgstr "{parámetro de @code{cups-configuration}} lista-policy-configuration policies" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20207 +#: guix-git/doc/guix.texi:20569 msgid "Specifies named access control policies." msgstr "Especifica las políticas de control de acceso con nombre." #. type: deftypevr -#: guix-git/doc/guix.texi:20209 +#: guix-git/doc/guix.texi:20571 msgid "Available @code{policy-configuration} fields are:" msgstr "Los campos disponibles de @code{policy-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:20210 +#: guix-git/doc/guix.texi:20572 #, no-wrap msgid "{@code{policy-configuration} parameter} string name" msgstr "{parámetro de @code{policy-configuration}} string name" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20212 +#: guix-git/doc/guix.texi:20574 msgid "Name of the policy." msgstr "El nombre de la política." #. type: deftypevr -#: guix-git/doc/guix.texi:20214 +#: guix-git/doc/guix.texi:20576 #, no-wrap msgid "{@code{policy-configuration} parameter} string job-private-access" msgstr "{parámetro de @code{policy-configuration}} string job-private-access" @@ -39487,114 +40199,114 @@ msgstr "{parámetro de @code{policy-configuration}} string job-private-access" # TODO (MAAV): Repensar map -> se sustituye con # y reifies -> se traduce en #. type: deftypevr -#: guix-git/doc/guix.texi:20224 +#: guix-git/doc/guix.texi:20586 #, fuzzy #| msgid "Specifies an access list for a job's private values. @code{@@ACL} maps to the printer's requesting-user-name-allowed or requesting-user-name-denied values. @code{@@OWNER} maps to the job's owner. @code{@@SYSTEM} maps to the groups listed for the @code{system-group} field of the @code{files-config} configuration, which is reified into the @code{cups-files.conf(5)} file. Other possible elements of the access list include specific user names, and @code{@@@var{group}} to indicate members of a specific group. The access list may also be simply @code{all} or @code{default}." msgid "Specifies an access list for a job's private values. @code{@@ACL} maps to the printer's requesting-user-name-allowed or requesting-user-name-denied values. @code{@@OWNER} maps to the job's owner. @code{@@SYSTEM} maps to the groups listed for the @code{system-group} field of the @code{files-configuration}, which is reified into the @code{cups-files.conf(5)} file. Other possible elements of the access list include specific user names, and @code{@@@var{group}} to indicate members of a specific group. The access list may also be simply @code{all} or @code{default}." msgstr "Especifica una lista de acceso para los valores privados de un trabajo. @code{@@ACL} se sustituye con los valores ``requesting-user-name-allowed'' o ``requesting-user-name-denied'' de la impresora. @code{@@OWNER} se sustituye con la propietaria del trabajo. @code{@@SYSTEM} se sustituye con los grupos enumerados en el campo @code{system-group} de la configuración @code{files-config}, que se traduce en el archivo @code{cups-files.conf(5)}. Otros elementos de configuración de la lista de acceso posibles incluyen nombres de usuaria específicos y @code{@@@var{group}} para indicar miembros de un grupo específico. La lista de acceso también puede simplemente ser @code{all} o @code{default}." #. type: deftypevr -#: guix-git/doc/guix.texi:20226 guix-git/doc/guix.texi:20248 +#: guix-git/doc/guix.texi:20588 guix-git/doc/guix.texi:20610 msgid "Defaults to @samp{\"@@OWNER @@SYSTEM\"}." msgstr "El valor predeterminado es @samp{\"@@OWNER @@SYSTEM\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:20228 +#: guix-git/doc/guix.texi:20590 #, no-wrap msgid "{@code{policy-configuration} parameter} string job-private-values" msgstr "{parámetro de @code{policy-configuration}} string job-private-values" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20231 guix-git/doc/guix.texi:20253 +#: guix-git/doc/guix.texi:20593 guix-git/doc/guix.texi:20615 msgid "Specifies the list of job values to make private, or @code{all}, @code{default}, or @code{none}." msgstr "Especifica la lista de valores de trabajos a hacer privados, o bien @code{all}, @code{default}, o @code{none}." #. type: deftypevr -#: guix-git/doc/guix.texi:20234 +#: guix-git/doc/guix.texi:20596 msgid "Defaults to @samp{\"job-name job-originating-host-name job-originating-user-name phone\"}." msgstr "El valor predeterminado es @samp{\"job-name job-originating-host-name job-originating-user-name phone\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:20236 +#: guix-git/doc/guix.texi:20598 #, no-wrap msgid "{@code{policy-configuration} parameter} string subscription-private-access" msgstr "{parámetro de @code{policy-configuration}} string subscription-private-access" #. type: deftypevr -#: guix-git/doc/guix.texi:20246 +#: guix-git/doc/guix.texi:20608 #, fuzzy #| msgid "Specifies an access list for a subscription's private values. @code{@@ACL} maps to the printer's requesting-user-name-allowed or requesting-user-name-denied values. @code{@@OWNER} maps to the job's owner. @code{@@SYSTEM} maps to the groups listed for the @code{system-group} field of the @code{files-config} configuration, which is reified into the @code{cups-files.conf(5)} file. Other possible elements of the access list include specific user names, and @code{@@@var{group}} to indicate members of a specific group. The access list may also be simply @code{all} or @code{default}." msgid "Specifies an access list for a subscription's private values. @code{@@ACL} maps to the printer's requesting-user-name-allowed or requesting-user-name-denied values. @code{@@OWNER} maps to the job's owner. @code{@@SYSTEM} maps to the groups listed for the @code{system-group} field of the @code{files-configuration}, which is reified into the @code{cups-files.conf(5)} file. Other possible elements of the access list include specific user names, and @code{@@@var{group}} to indicate members of a specific group. The access list may also be simply @code{all} or @code{default}." msgstr "Especifica una lista de acceso para los valores privados de una subscripción. @code{@@ACL} se sustituye con los valores ``requesting-user-name-allowed'' o ``requesting-user-name-denied'' de la impresora. @code{@@OWNER} se sustituye con la propietaria del trabajo. @code{@@SYSTEM} se sustituye con los grupos enumerados en el campo @code{system-group} de la configuración @code{files-config}, que se traduce en el archivo @code{cups-files.conf(5)}. Otros elementos de configuración de la lista de acceso posibles incluyen nombres de usuaria específicos y @code{@@@var{group}} para indicar miembros de un grupo específico. La lista de acceso también puede simplemente ser @code{all} o @code{default}." #. type: deftypevr -#: guix-git/doc/guix.texi:20250 +#: guix-git/doc/guix.texi:20612 #, no-wrap msgid "{@code{policy-configuration} parameter} string subscription-private-values" msgstr "{parámetro de @code{policy-configuration}} string subscription-private-values" #. type: deftypevr -#: guix-git/doc/guix.texi:20256 +#: guix-git/doc/guix.texi:20618 msgid "Defaults to @samp{\"notify-events notify-pull-method notify-recipient-uri notify-subscriber-user-name notify-user-data\"}." msgstr "El valor predeterminado es @samp{\"notify-events notify-pull-method notify-recipient-uri notify-subscriber-user-name notify-user-data\"}." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20258 +#: guix-git/doc/guix.texi:20620 #, no-wrap msgid "{@code{policy-configuration} parameter} operation-access-control-list access-controls" msgstr "{parámetro de @code{policy-configuration}} lista-operation-access-control access-controls" #. type: deftypevr -#: guix-git/doc/guix.texi:20260 +#: guix-git/doc/guix.texi:20622 msgid "Access control by IPP operation." msgstr "Control de acceso para operaciones de IPP." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20265 +#: guix-git/doc/guix.texi:20627 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean-or-non-negative-integer preserve-job-files" msgstr "{parámetro de @code{cups-configuration}} boolean-o-entero-no-negativo preserve-job-files" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20270 +#: guix-git/doc/guix.texi:20632 msgid "Specifies whether job files (documents) are preserved after a job is printed. If a numeric value is specified, job files are preserved for the indicated number of seconds after printing. Otherwise a boolean value applies indefinitely." msgstr "Especifica si los archivos del trabajo (documentos) se preservan tras la impresión de un trabajo. Si se especifica un valor numérico, los archivos del trabajo se preservan durante el número indicado de segundos tras la impresión. En otro caso, el valor booleano determina la conservación de manera indefinida." #. type: deftypevr -#: guix-git/doc/guix.texi:20272 +#: guix-git/doc/guix.texi:20634 msgid "Defaults to @samp{86400}." msgstr "El valor predeterminado es @samp{86400}." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20274 +#: guix-git/doc/guix.texi:20636 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean-or-non-negative-integer preserve-job-history" msgstr "{parámetro de @code{cups-configuration}} boolean-o-entero-no-negativo preserve-job-history" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20279 +#: guix-git/doc/guix.texi:20641 msgid "Specifies whether the job history is preserved after a job is printed. If a numeric value is specified, the job history is preserved for the indicated number of seconds after printing. If @code{#t}, the job history is preserved until the MaxJobs limit is reached." msgstr "Especifica si la historia del trabajo se preserva tras la impresión de un trabajo. Si se especifica un valor numérico, la historia del trabajo se conserva tras la impresión el número de segundos indicado. Si es @code{#t}, la historia del trabajo se conserva hasta que se alcance el límite de trabajos ``MaxJobs''." #. type: deftypevr -#: guix-git/doc/guix.texi:20283 +#: guix-git/doc/guix.texi:20645 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer reload-timeout" msgstr "{parámetro de @code{cups-configuration}} entero-no-negativo reload-timeout" #. type: deftypevr -#: guix-git/doc/guix.texi:20286 +#: guix-git/doc/guix.texi:20648 msgid "Specifies the amount of time to wait for job completion before restarting the scheduler." msgstr "Especifica el tiempo a esperar hasta la finalización del trabajo antes de reiniciar el planificador." #. type: deftypevr -#: guix-git/doc/guix.texi:20290 +#: guix-git/doc/guix.texi:20652 #, no-wrap msgid "{@code{cups-configuration} parameter} string rip-cache" msgstr "{parámetro de @code{cups-configuration}} string rip-cache" @@ -39606,98 +40318,97 @@ msgstr "{parámetro de @code{cups-configuration}} string rip-cache" # de la documentación, pero debería buscar una traducción más específica # para bitmap. #. type: deftypevr -#: guix-git/doc/guix.texi:20293 +#: guix-git/doc/guix.texi:20655 msgid "Specifies the maximum amount of memory to use when converting documents into bitmaps for a printer." msgstr "Especifica la cantidad máxima de memoria usada durante la conversión de documentos en imágenes para una impresora." #. type: deftypevr -#: guix-git/doc/guix.texi:20295 +#: guix-git/doc/guix.texi:20657 msgid "Defaults to @samp{\"128m\"}." msgstr "El valor predeterminado es @samp{\"128m\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:20297 +#: guix-git/doc/guix.texi:20659 #, no-wrap msgid "{@code{cups-configuration} parameter} string server-admin" msgstr "{parámetro de @code{cups-configuration}} string server-admin" #. type: deftypevr -#: guix-git/doc/guix.texi:20299 +#: guix-git/doc/guix.texi:20661 msgid "Specifies the email address of the server administrator." msgstr "Especifica la dirección de correo electrónico de la administradora del servidor." #. type: deftypevr -#: guix-git/doc/guix.texi:20301 +#: guix-git/doc/guix.texi:20663 msgid "Defaults to @samp{\"root@@localhost.localdomain\"}." msgstr "El valor predeterminado es @samp{\"root@@localhost.localdomain\"}." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20303 +#: guix-git/doc/guix.texi:20665 #, no-wrap msgid "{@code{cups-configuration} parameter} host-name-list-or-* server-alias" msgstr "{parámetro de @code{cups-configuration}} lista-nombres-máquina-o-* server-alias" # TODO (MAAV): Revisar ataques. #. type: deftypevr -#: guix-git/doc/guix.texi:20311 +#: guix-git/doc/guix.texi:20673 msgid "The ServerAlias directive is used for HTTP Host header validation when clients connect to the scheduler from external interfaces. Using the special name @code{*} can expose your system to known browser-based DNS rebinding attacks, even when accessing sites through a firewall. If the auto-discovery of alternate names does not work, we recommend listing each alternate name with a ServerAlias directive instead of using @code{*}." msgstr "La directiva ServerAlias se usa para la validación de la cabecera HTTP Host cuando los clientes se conecten al planificador desde interfaces externas. El uso del nombre especial @code{*} puede exponer su sistema a ataques basados en el navegador web de reenlazado DNS ya conocidos, incluso cuando se accede a páginas a través de un cortafuegos. Si el descubrimiento automático de nombres alternativos no funcionase, le recomendamos enumerar cada nombre alternativo con una directiva ServerAlias en vez del uso de @code{*}." #. type: deftypevr -#: guix-git/doc/guix.texi:20313 +#: guix-git/doc/guix.texi:20675 msgid "Defaults to @samp{*}." msgstr "El valor predeterminado es @samp{*}." #. type: deftypevr -#: guix-git/doc/guix.texi:20315 +#: guix-git/doc/guix.texi:20677 #, no-wrap msgid "{@code{cups-configuration} parameter} string server-name" msgstr "{parámetro de @code{cups-configuration}} string server-name" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20317 +#: guix-git/doc/guix.texi:20679 msgid "Specifies the fully-qualified host name of the server." msgstr "Especifica el nombre de máquina completamente cualificado del servidor." #. type: deftypevr -#: guix-git/doc/guix.texi:20319 guix-git/doc/guix.texi:25449 -#: guix-git/doc/guix.texi:25494 +#: guix-git/doc/guix.texi:20681 msgid "Defaults to @samp{\"localhost\"}." msgstr "El valor predeterminado es @samp{\"localhost\"}." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20321 +#: guix-git/doc/guix.texi:20683 #, no-wrap msgid "{@code{cups-configuration} parameter} server-tokens server-tokens" msgstr "{parámetro de @code{cups-configuration}} server-tokens server-tokens" #. type: deftypevr -#: guix-git/doc/guix.texi:20329 +#: guix-git/doc/guix.texi:20691 msgid "Specifies what information is included in the Server header of HTTP responses. @code{None} disables the Server header. @code{ProductOnly} reports @code{CUPS}. @code{Major} reports @code{CUPS 2}. @code{Minor} reports @code{CUPS 2.0}. @code{Minimal} reports @code{CUPS 2.0.0}. @code{OS} reports @code{CUPS 2.0.0 (@var{uname})} where @var{uname} is the output of the @code{uname} command. @code{Full} reports @code{CUPS 2.0.0 (@var{uname}) IPP/2.0}." msgstr "Especifica qué información se incluye en la cabecera Server de las respuestas HTTP. @code{None} desactiva la cabecera Server. @code{ProductOnly} proporciona @code{CUPS}. @code{Major} proporciona @code{CUPS 2}. @code{Minor} proporciona @code{CUPS 2.0}. @code{Minimap} proporciona @code{CUPS 2.0.0}. @code{OS} proporciona @code{CUPS 2.0.0 (@var{uname})} donde @var{uname} es la salida de la orden @code{uname}. @code{Full} proporciona @code{CUPS 2.0.0 (@var{uname}) IPP/2.0}." #. type: deftypevr -#: guix-git/doc/guix.texi:20331 +#: guix-git/doc/guix.texi:20693 msgid "Defaults to @samp{Minimal}." msgstr "El valor predeterminado es @samp{Minimal}." #. type: deftypevr -#: guix-git/doc/guix.texi:20333 +#: guix-git/doc/guix.texi:20695 #, no-wrap msgid "{@code{cups-configuration} parameter} multiline-string-list ssl-listen" msgstr "{parámetro de @code{cups-configuration}} lista-cadenas-multilínea ssl-listen" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20338 +#: guix-git/doc/guix.texi:20700 msgid "Listens on the specified interfaces for encrypted connections. Valid values are of the form @var{address}:@var{port}, where @var{address} is either an IPv6 address enclosed in brackets, an IPv4 address, or @code{*} to indicate all addresses." msgstr "Escucha en las interfaces especificadas a la espera de conexiones cifradas. Se aceptan valores con la forma @var{dirección}:@var{puerto}, siendo @var{dirección} o bien una dirección IPv6 entre corchetes, o bien una dirección IPv4, o bien @code{*} que representa todas las direcciones." #. type: deftypevr -#: guix-git/doc/guix.texi:20342 +#: guix-git/doc/guix.texi:20704 #, no-wrap msgid "{@code{cups-configuration} parameter} ssl-options ssl-options" msgstr "{parámetro de @code{cups-configuration}} opciones-ssl ssl-options" @@ -39705,13 +40416,13 @@ msgstr "{parámetro de @code{cups-configuration}} opciones-ssl ssl-options" # FUZZY # TODO (MAAV): Repensar #. type: deftypevr -#: guix-git/doc/guix.texi:20352 +#: guix-git/doc/guix.texi:20714 msgid "Sets encryption options. By default, CUPS only supports encryption using TLS v1.0 or higher using known secure cipher suites. Security is reduced when @code{Allow} options are used, and enhanced when @code{Deny} options are used. The @code{AllowRC4} option enables the 128-bit RC4 cipher suites, which are required for some older clients. The @code{AllowSSL3} option enables SSL v3.0, which is required for some older clients that do not support TLS v1.0. The @code{DenyCBC} option disables all CBC cipher suites. The @code{DenyTLS1.0} option disables TLS v1.0 support - this sets the minimum protocol version to TLS v1.1." msgstr "Determina las opciones de cifrado. De manera predeterminada, CUPS permite únicamente el cifrado mediante TLS v1.0 o superior mediante el uso de modelos de cifrado de conocida seguridad. La seguridad se reduce cuando se usan opciones @code{Allow} y se aumenta cuando se usan opciones @code{Deny}. La opción @code{AllowRC4} permite el cifrado RC4 de 128 bits, necesario para algunos clientes antiguos que no implementan los modelos más modernos. La opción @code{AllowSSL3} desactiva SSL v3.0, necesario para algunos clientes antiguos que no implementan TLS v1.0. La opción @code{DenyCBC} desactiva todos los modelos de cifrado CBC. La opción @code{DenyTLS1.0} desactiva TLS v1.0---esto fuerza la versión mínima del protocolo a TLS v1.1." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20356 +#: guix-git/doc/guix.texi:20718 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean strict-conformance?" msgstr "{parámetro de @code{cups-configuration}} boolean strict-conformance?" @@ -39719,79 +40430,79 @@ msgstr "{parámetro de @code{cups-configuration}} boolean strict-conformance?" # FUZZY # TODO (MAAV): Repensar. #. type: deftypevr -#: guix-git/doc/guix.texi:20359 +#: guix-git/doc/guix.texi:20721 msgid "Specifies whether the scheduler requires clients to strictly adhere to the IPP specifications." msgstr "Especifica si el planificador exige que los clientes se adhieran de manera estricta a las especificaciones IPP." #. type: deftypevr -#: guix-git/doc/guix.texi:20363 +#: guix-git/doc/guix.texi:20725 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer timeout" msgstr "{parámetro de @code{cups-configuration}} entero-no-negativo timeout" #. type: deftypevr -#: guix-git/doc/guix.texi:20365 +#: guix-git/doc/guix.texi:20727 msgid "Specifies the HTTP request timeout, in seconds." msgstr "Especifica el plazo de las peticiones HTTP, en segundos." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20370 +#: guix-git/doc/guix.texi:20732 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean web-interface?" msgstr "{parámetro de @code{cups-configuration}} boolean web-interface?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:20372 +#: guix-git/doc/guix.texi:20734 msgid "Specifies whether the web interface is enabled." msgstr "Especifica si se debe activar la interfaz web." #. type: Plain text -#: guix-git/doc/guix.texi:20382 +#: guix-git/doc/guix.texi:20744 msgid "At this point you're probably thinking ``oh dear, Guix manual, I like you but you can stop already with the configuration options''. Indeed. However, one more point: it could be that you have an existing @code{cupsd.conf} that you want to use. In that case, you can pass an @code{opaque-cups-configuration} as the configuration of a @code{cups-service-type}." msgstr "En este punto probablemente esté pensando, ``querido manual de Guix, me gusta todo esto, pero... ¡¿cuando se acaban las opciones de configuración?!''. De hecho ya terminan. No obstante, hay un punto más: puede ser que ya tenga un archivo @code{cupsd.conf} que desee usar. En ese caso, puede proporcionar un objeto @code{opaque-cups-configuration} como la configuración de @code{cups-service-type}." #. type: Plain text -#: guix-git/doc/guix.texi:20384 +#: guix-git/doc/guix.texi:20746 msgid "Available @code{opaque-cups-configuration} fields are:" msgstr "Los campos disponibles de @code{opaque-cups-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:20385 +#: guix-git/doc/guix.texi:20747 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} package cups" msgstr "{parámetro de @code{opaque-cups-configuration}} paquete cups" #. type: deftypevr -#: guix-git/doc/guix.texi:20389 +#: guix-git/doc/guix.texi:20751 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} string cupsd.conf" msgstr "{parámetro de @code{opaque-cups-configuration}} string cupsd.conf" #. type: deftypevr -#: guix-git/doc/guix.texi:20391 +#: guix-git/doc/guix.texi:20753 msgid "The contents of the @code{cupsd.conf}, as a string." msgstr "El contenido de @code{cupsd.conf}, como una cadena." #. type: deftypevr -#: guix-git/doc/guix.texi:20393 +#: guix-git/doc/guix.texi:20755 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} string cups-files.conf" msgstr "{parámetro de @code{opaque-cups-configuration}} string cups-files.conf" #. type: deftypevr -#: guix-git/doc/guix.texi:20395 +#: guix-git/doc/guix.texi:20757 msgid "The contents of the @code{cups-files.conf} file, as a string." msgstr "El contenido del archivo @code{cups-files.conf}, como una cadena." #. type: Plain text -#: guix-git/doc/guix.texi:20400 +#: guix-git/doc/guix.texi:20762 msgid "For example, if your @code{cupsd.conf} and @code{cups-files.conf} are in strings of the same name, you could instantiate a CUPS service like this:" msgstr "Por ejemplo, si el contenido de sus archivos @code{cupsd.conf} y @code{cups-files.conf} estuviese en cadenas del mismo nombre, podría instanciar un servicio CUPS de esta manera:" #. type: lisp -#: guix-git/doc/guix.texi:20406 +#: guix-git/doc/guix.texi:20768 #, no-wrap msgid "" "(service cups-service-type\n" @@ -39805,246 +40516,246 @@ msgstr "" " (cups-files.conf cups-files.conf)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:20417 +#: guix-git/doc/guix.texi:20779 msgid "The @code{(gnu services desktop)} module provides services that are usually useful in the context of a ``desktop'' setup---that is, on a machine running a graphical display server, possibly with graphical user interfaces, etc. It also defines services that provide specific desktop environments like GNOME, Xfce or MATE." msgstr "El módulo @code{(gnu services desktop)} proporciona servicios que son útiles habitualmente en el contexto de una configuración de ``escritorio''---es decir, en una máquina que ejecute un servidor gráfico, posiblemente con interfaces gráficas, etcétera. También define servicios que proporcionan entornos de escritorio específicos como GNOME, Xfce o MATE." #. type: Plain text -#: guix-git/doc/guix.texi:20421 +#: guix-git/doc/guix.texi:20783 msgid "To simplify things, the module defines a variable containing the set of services that users typically expect on a machine with a graphical environment and networking:" msgstr "Para simplificar las cosas, el módulo define una variable que contiene el conjunto de servicios que las usuarias esperarían de manera habitual junto a un entorno gráfico y de red:" #. type: defvr -#: guix-git/doc/guix.texi:20422 +#: guix-git/doc/guix.texi:20784 #, no-wrap msgid "{Scheme Variable} %desktop-services" msgstr "{Variable Scheme} %desktop-services" #. type: defvr -#: guix-git/doc/guix.texi:20425 +#: guix-git/doc/guix.texi:20787 msgid "This is a list of services that builds upon @code{%base-services} and adds or adjusts services for a typical ``desktop'' setup." msgstr "Es una lista de servicios que se construye en base a @code{%base-services} y añade o ajusta servicios para una configuración de ``escritorio'' típica." # FUZZY # TODO (MAAV): Seat manager -> gestor de asientos??? Repensar. #. type: defvr -#: guix-git/doc/guix.texi:20436 +#: guix-git/doc/guix.texi:20798 msgid "In particular, it adds a graphical login manager (@pxref{X Window, @code{gdm-service-type}}), screen lockers, a network management tool (@pxref{Networking Services, @code{network-manager-service-type}}) with modem support (@pxref{Networking Services, @code{modem-manager-service-type}}), energy and color management services, the @code{elogind} login and seat manager, the Polkit privilege service, the GeoClue location service, the AccountsService daemon that allows authorized users change system passwords, an NTP client (@pxref{Networking Services}), the Avahi daemon, and has the name service switch service configured to be able to use @code{nss-mdns} (@pxref{Name Service Switch, mDNS})." msgstr "En particular, añade un gestor de ingreso al sistema gráfico (@pxref{X Window, @code{gdm-service-type}}), herramientas para el bloqueo de la pantalla, una herramienta de gestión de redes (@pxref{Networking Services, @code{network-manager-service-type}}) y gestión de modem (@pxref{Networking Services, @code{modem-manager-service-type}}), servicios de gestión de la energía y el color, el gestor de asientos e ingresos al sistema @code{elogind}, el servicio de privilegios Polkit, el servicio de geolocalización GeoClue, el daemon AccountsService que permite a las usuarias autorizadas el cambio de contraseñas del sistema, un cliente NTP (@pxref{Networking Services}), el daemon Avahi y configura el servicio del selector de servicios de nombres para que pueda usar @code{nss-mdns} (@pxref{Name Service Switch, mDNS}). " #. type: Plain text -#: guix-git/doc/guix.texi:20441 +#: guix-git/doc/guix.texi:20803 msgid "The @code{%desktop-services} variable can be used as the @code{services} field of an @code{operating-system} declaration (@pxref{operating-system Reference, @code{services}})." msgstr "La variable @code{%desktop-services} puede usarse como el campo @code{services} de una declaración @code{operating-system} (@pxref{operating-system Reference, @code{services}})." #. type: Plain text -#: guix-git/doc/guix.texi:20464 +#: guix-git/doc/guix.texi:20826 msgid "Additionally, the @code{gnome-desktop-service-type}, @code{xfce-desktop-service}, @code{mate-desktop-service-type}, @code{lxqt-desktop-service-type} and @code{enlightenment-desktop-service-type} procedures can add GNOME, Xfce, MATE and/or Enlightenment to a system. To ``add GNOME'' means that system-level services like the backlight adjustment helpers and the power management utilities are added to the system, extending @code{polkit} and @code{dbus} appropriately, allowing GNOME to operate with elevated privileges on a limited number of special-purpose system interfaces. Additionally, adding a service made by @code{gnome-desktop-service-type} adds the GNOME metapackage to the system profile. Likewise, adding the Xfce service not only adds the @code{xfce} metapackage to the system profile, but it also gives the Thunar file manager the ability to open a ``root-mode'' file management window, if the user authenticates using the administrator's password via the standard polkit graphical interface. To ``add MATE'' means that @code{polkit} and @code{dbus} are extended appropriately, allowing MATE to operate with elevated privileges on a limited number of special-purpose system interfaces. Additionally, adding a service of type @code{mate-desktop-service-type} adds the MATE metapackage to the system profile. ``Adding Enlightenment'' means that @code{dbus} is extended appropriately, and several of Enlightenment's binaries are set as setuid, allowing Enlightenment's screen locker and other functionality to work as expected." msgstr "De manera adicional, los procedimientos @code{gnome-desktop-service-type}, @code{xfce-desktop-service}, @code{mate-desktop-service-type}, @code{lxqt-desktop-service-type} y @code{enlightenment-desktop-service-type} pueden añadir GNOME, Xfce, MATE y/o Enlightenment al sistema. ``Añadir GNOME'' significa que servicios a nivel de sistema como las herramientas de ayuda para el ajuste de la intensidad de luz de la pantalla y de gestión de energía se añaden al sistema, extendiendo @code{polkit} y @code{dbus} de manera apropiada, y permitiendo a GNOME operar con privilegios elevados en un número de interfaces del sistema de propósito especial. Además, la adición de un servicio generado por @code{gnome-desktop-service-type} añade el metapaquete GNOME al perfil del sistema. Del mismo modo, la adición del servicio Xfde no añade únicamente el metapaquete @code{xfce} al perfil del sistema, sino que también le proporciona al gestor de archivos Thunar la posibilidad de abrir una ventana de gestión de archivos en ``modo root'', si la usuaria se identifica mediante la contraseña de administración a través de la interfaz gráfica estándar polkit. ``Añadir MATE'' significa que @code{polkit} y @code{dbus} se extienden de manera apropiada, permitiendo a MATE operar con privilegios elevados en un número de interfaces del sistema de propósito especial. De manera adicional, la adición de un servicio de tipo @code{mate-desktop-service-type} añade el metapaquete MATE al perfil del sistema. ``Añadir Enlightenment'' significa que @code{dbus} se extiende de manera apropiada y varios ejecutables de Enlightenment se marcan como ``setuid'', para permitir el funcionamiento esperado del sistema bloqueo de pantalla de Enlightenment entre otras funcionalidades." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:20474 +#: guix-git/doc/guix.texi:20836 #, fuzzy msgid "The desktop environments in Guix use the Xorg display server by default. If you'd like to use the newer display server protocol called Wayland, you need to enable Wayland support in GDM (@pxref{wayland-gdm}). Another solution is to use the @code{sddm-service} instead of GDM as the graphical login manager. You should then select the ``GNOME (Wayland)'' session in SDDM@. Alternatively you can also try starting GNOME on Wayland manually from a TTY with the command ``XDG_SESSION_TYPE=wayland exec dbus-run-session gnome-session``. Currently only GNOME has support for Wayland." msgstr "Los entornos de escritorio en Guix usan el servidor gráfico Xorg de manera predeterminada. Si desea usar el protocolo de servidor gráfico más nuevo llamado Wayland, debe usar el servicio @code{sddm-service} en vez de GDM como gestor gráfico de ingreso al sistema. Una vez hecho, debe seleccionar la sesión ``GNOME (Wayland)'' en SDDM. Alternativamente, puede intentar iniciar GNOME en Wayland de manera manual desde una TTY con la orden ``XDG_SESSION_TYPE=wayland exec dbus-run-session gnome-session''. Actualmente únicamente GNOME tiene implementación para Wayland." #. type: defvr -#: guix-git/doc/guix.texi:20475 +#: guix-git/doc/guix.texi:20837 #, no-wrap msgid "{Scheme Variable} gnome-desktop-service-type" msgstr "{Variable Scheme} gnome-desktop-service-type" #. type: defvr -#: guix-git/doc/guix.texi:20479 +#: guix-git/doc/guix.texi:20841 msgid "This is the type of the service that adds the @uref{https://www.gnome.org, GNOME} desktop environment. Its value is a @code{gnome-desktop-configuration} object (see below)." msgstr "Es el tipo del servicio que añade el entorno de escritorio @uref{https://www.gnome.org, GNOME}. Su valor es un objeto @code{gnome-desktop-configuration} (véase a continuación)." #. type: defvr -#: guix-git/doc/guix.texi:20482 +#: guix-git/doc/guix.texi:20844 msgid "This service adds the @code{gnome} package to the system profile, and extends polkit with the actions from @code{gnome-settings-daemon}." msgstr "Este servicio añade el paquete @code{gnome} al perfil del sistema, y extiende polkit con las acciones de @code{gnome-settings-daemon}." #. type: deftp -#: guix-git/doc/guix.texi:20484 +#: guix-git/doc/guix.texi:20846 #, no-wrap msgid "{Data Type} gnome-desktop-configuration" msgstr "{Tipo de datos} gnome-desktop-configuration" #. type: deftp -#: guix-git/doc/guix.texi:20486 +#: guix-git/doc/guix.texi:20848 msgid "Configuration record for the GNOME desktop environment." msgstr "Registro de configuración para el entorno de escritorio GNOME." #. type: item -#: guix-git/doc/guix.texi:20488 +#: guix-git/doc/guix.texi:20850 #, no-wrap msgid "@code{gnome} (default: @code{gnome})" msgstr "@code{gnome} (predeterminado: @code{gnome})" #. type: table -#: guix-git/doc/guix.texi:20490 +#: guix-git/doc/guix.texi:20852 msgid "The GNOME package to use." msgstr "El paquete GNOME usado." #. type: defvr -#: guix-git/doc/guix.texi:20493 +#: guix-git/doc/guix.texi:20855 #, no-wrap msgid "{Scheme Variable} xfce-desktop-service-type" msgstr "{Variable Scheme} xfce-desktop-service-type" #. type: defvr -#: guix-git/doc/guix.texi:20497 +#: guix-git/doc/guix.texi:20859 msgid "This is the type of a service to run the @uref{Xfce, https://xfce.org/} desktop environment. Its value is an @code{xfce-desktop-configuration} object (see below)." msgstr "Este es el tipo de un servicio para ejecutar el entorno de escritorio @uref{Xfce, https://xfce.org}. Su valor es un objeto @code{xfce-desktop-configuration} (véase a continuación)." # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:20502 +#: guix-git/doc/guix.texi:20864 msgid "This service adds the @code{xfce} package to the system profile, and extends polkit with the ability for @code{thunar} to manipulate the file system as root from within a user session, after the user has authenticated with the administrator's password." msgstr "Este servicio añade el paquete @code{xfce} al perfil del sistema, y extiende polkit con la capacidad de @code{thunar} para manipular el sistema de archivos como root dentro de una sesión de usuaria, tras la identificación de la usuaria con la contraseña de administración." #. type: defvr -#: guix-git/doc/guix.texi:20508 +#: guix-git/doc/guix.texi:20870 msgid "Note that @code{xfce4-panel} and its plugin packages should be installed in the same profile to ensure compatibility. When using this service, you should add extra plugins (@code{xfce4-whiskermenu-plugin}, @code{xfce4-weather-plugin}, etc.) to the @code{packages} field of your @code{operating-system}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20510 +#: guix-git/doc/guix.texi:20872 #, no-wrap msgid "{Data Type} xfce-desktop-configuration" msgstr "{Tipo de datos} xfce-desktop-configuration" #. type: deftp -#: guix-git/doc/guix.texi:20512 +#: guix-git/doc/guix.texi:20874 msgid "Configuration record for the Xfce desktop environment." msgstr "Registro de configuración para el entorno de escritorio Xfce." #. type: item -#: guix-git/doc/guix.texi:20514 +#: guix-git/doc/guix.texi:20876 #, no-wrap msgid "@code{xfce} (default: @code{xfce})" msgstr "@code{xfce} (predeterminado: @code{xfce})" #. type: table -#: guix-git/doc/guix.texi:20516 +#: guix-git/doc/guix.texi:20878 msgid "The Xfce package to use." msgstr "El paquete Xfce usado." #. type: deffn -#: guix-git/doc/guix.texi:20519 +#: guix-git/doc/guix.texi:20881 #, no-wrap msgid "{Scheme Variable} mate-desktop-service-type" msgstr "{Variable Scheme} mate-desktop-service-type" #. type: deffn -#: guix-git/doc/guix.texi:20523 +#: guix-git/doc/guix.texi:20885 msgid "This is the type of the service that runs the @uref{https://mate-desktop.org/, MATE desktop environment}. Its value is a @code{mate-desktop-configuration} object (see below)." msgstr "Es el tipo del servicio que ejecuta el @uref{https://mate-desktop.org/, entorno de escritorio MATE}. Su valor es un objeto @code{mate-desktop-configuration} (véase a continuación)." #. type: deffn -#: guix-git/doc/guix.texi:20527 +#: guix-git/doc/guix.texi:20889 msgid "This service adds the @code{mate} package to the system profile, and extends polkit with the actions from @code{mate-settings-daemon}." msgstr "Este servicio añade el paquete @code{mate} al perfil del sistema, y extiende polkit con acciones de @code{mate-settings-daemon}." #. type: deftp -#: guix-git/doc/guix.texi:20529 +#: guix-git/doc/guix.texi:20891 #, no-wrap msgid "{Data Type} mate-desktop-configuration" msgstr "{Tipo de datos} mate-desktop-configuration" #. type: deftp -#: guix-git/doc/guix.texi:20531 +#: guix-git/doc/guix.texi:20893 msgid "Configuration record for the MATE desktop environment." msgstr "Registro de configuración para el entorno de escritorio MATE." #. type: item -#: guix-git/doc/guix.texi:20533 +#: guix-git/doc/guix.texi:20895 #, no-wrap msgid "@code{mate} (default: @code{mate})" msgstr "@code{mate} (predeterminado: @code{mate})" #. type: table -#: guix-git/doc/guix.texi:20535 +#: guix-git/doc/guix.texi:20897 msgid "The MATE package to use." msgstr "El paquete MATE usado." #. type: deffn -#: guix-git/doc/guix.texi:20538 +#: guix-git/doc/guix.texi:20900 #, no-wrap msgid "{Scheme Variable} lxqt-desktop-service-type" msgstr "{Variable Scheme} lxqt-desktop-service-type" #. type: deffn -#: guix-git/doc/guix.texi:20542 +#: guix-git/doc/guix.texi:20904 #, fuzzy #| msgid "This is the type of the service that runs the @uref{https://lxqt.github.io, LXQt desktop environment}. Its value is a @code{lxqt-desktop-configuration} object (see below)." msgid "This is the type of the service that runs the @uref{https://lxqt-project.org, LXQt desktop environment}. Its value is a @code{lxqt-desktop-configuration} object (see below)." msgstr "Es el tipo del servicio que ejecuta el @uref{https://lxqt.github.io, entorno de escritorio LXQt}. Su valor es un objeto @code{lxqt-desktop-configuration} (véase a continuación)." #. type: deffn -#: guix-git/doc/guix.texi:20545 +#: guix-git/doc/guix.texi:20907 msgid "This service adds the @code{lxqt} package to the system profile." msgstr "Este servicio añade el paquete @code{lxqt} al perfil del sistema." #. type: deftp -#: guix-git/doc/guix.texi:20547 +#: guix-git/doc/guix.texi:20909 #, no-wrap msgid "{Data Type} lxqt-desktop-configuration" msgstr "{Tipo de datos} lxqt-desktop-configuration" #. type: deftp -#: guix-git/doc/guix.texi:20549 +#: guix-git/doc/guix.texi:20911 msgid "Configuration record for the LXQt desktop environment." msgstr "Registro de configuración para el entorno de escritorio LXQt." #. type: item -#: guix-git/doc/guix.texi:20551 +#: guix-git/doc/guix.texi:20913 #, no-wrap msgid "@code{lxqt} (default: @code{lxqt})" msgstr "@code{lxqt} (predeterminado: @code{lxqt})" #. type: table -#: guix-git/doc/guix.texi:20553 +#: guix-git/doc/guix.texi:20915 msgid "The LXQT package to use." msgstr "El paquete LXQT usado." #. type: deffn -#: guix-git/doc/guix.texi:20556 +#: guix-git/doc/guix.texi:20918 #, no-wrap msgid "{Scheme Variable} enlightenment-desktop-service-type" msgstr "{Variable Scheme} enlightenment-desktop-service-type" # FUZZY #. type: deffn -#: guix-git/doc/guix.texi:20559 +#: guix-git/doc/guix.texi:20921 msgid "Return a service that adds the @code{enlightenment} package to the system profile, and extends dbus with actions from @code{efl}." msgstr "Devuelve un servicio que añade el paquete @code{enlightenment} al perfil del sistema, y extiende dbus con acciones de @code{efl}." #. type: deftp -#: guix-git/doc/guix.texi:20561 +#: guix-git/doc/guix.texi:20923 #, no-wrap msgid "{Data Type} enlightenment-desktop-service-configuration" msgstr "{Tipo de datos} enlightenment-desktop-service-configuration" #. type: item -#: guix-git/doc/guix.texi:20563 +#: guix-git/doc/guix.texi:20925 #, no-wrap msgid "@code{enlightenment} (default: @code{enlightenment})" msgstr "@code{enlightenment} (predeterminado: @code{enlightenment})" #. type: table -#: guix-git/doc/guix.texi:20565 +#: guix-git/doc/guix.texi:20927 msgid "The enlightenment package to use." msgstr "El paquete enlightenment usado." #. type: Plain text -#: guix-git/doc/guix.texi:20573 +#: guix-git/doc/guix.texi:20935 msgid "Because the GNOME, Xfce and MATE desktop services pull in so many packages, the default @code{%desktop-services} variable doesn't include any of them by default. To add GNOME, Xfce or MATE, just @code{cons} them onto @code{%desktop-services} in the @code{services} field of your @code{operating-system}:" msgstr "Debido a que los servicios de escritorio GNOME, Xfce y MATE incorporan tantos paquetes, la variable @code{%desktop-services} no incluye ninguno de manera predeterminada. Para añadir GNOME, Xfce o MATE, simplemente use @code{cons} junto a @code{%desktop-services} en el campo @code{services} de su declaración @code{operating-system}:" #. type: lisp -#: guix-git/doc/guix.texi:20584 +#: guix-git/doc/guix.texi:20946 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -40069,17 +40780,17 @@ msgstr "" " ...)\n" #. type: Plain text -#: guix-git/doc/guix.texi:20588 +#: guix-git/doc/guix.texi:20950 msgid "These desktop environments will then be available as options in the graphical login window." msgstr "Una vez realizado, estos entornos de escritorio se encontrarán como opciones disponibles en la ventana del gestor gráfico de ingreso al sistema." #. type: Plain text -#: guix-git/doc/guix.texi:20592 +#: guix-git/doc/guix.texi:20954 msgid "The actual service definitions included in @code{%desktop-services} and provided by @code{(gnu services dbus)} and @code{(gnu services desktop)} are described below." msgstr "Las definiciones de servicio incluidas realmente en @code{%desktop-services} y proporcionadas por @code{(gnu services dbus)} y @code{(gnu services desktop)} se describen a continuación." #. type: deffn -#: guix-git/doc/guix.texi:20593 +#: guix-git/doc/guix.texi:20955 #, no-wrap msgid "{Scheme Procedure} dbus-service [#:dbus @var{dbus}] [#:services '()]" msgstr "{Procedimiento Scheme} dbus-service [#:dbus @var{dbus}] [#:services '()]" @@ -40087,521 +40798,521 @@ msgstr "{Procedimiento Scheme} dbus-service [#:dbus @var{dbus}] [#:services '()] # FUZZY # TODO (MAAV): Soporte, configuración... :( #. type: deffn -#: guix-git/doc/guix.texi:20596 +#: guix-git/doc/guix.texi:20958 msgid "Return a service that runs the ``system bus'', using @var{dbus}, with support for @var{services}." msgstr "Devuelve un servicio que ejecuta el ``bus del sistema'', mediante el uso de @var{dbus}, con configuración para @var{services}." # FUZZY # TODO (MAAV): Repensar #. type: deffn -#: guix-git/doc/guix.texi:20600 +#: guix-git/doc/guix.texi:20962 msgid "@uref{https://dbus.freedesktop.org/, D-Bus} is an inter-process communication facility. Its system bus is used to allow system services to communicate and to be notified of system-wide events." msgstr "@uref{https://dbus.freedesktop.org/, D-Bus} es una herramienta para la facilitación de intercomunicación entre procesos. Su bus del sistema se usa para permitir la comunicación entre y la notificación de eventos a nivel de sistema a los servicios." #. type: deffn -#: guix-git/doc/guix.texi:20605 +#: guix-git/doc/guix.texi:20967 msgid "@var{services} must be a list of packages that provide an @file{etc/dbus-1/system.d} directory containing additional D-Bus configuration and policy files. For example, to allow avahi-daemon to use the system bus, @var{services} must be equal to @code{(list avahi)}." msgstr "@var{services} debe ser una lista de paquetes que proporcionen un directorio @file{etc/dbus-1/system.d} que contenga archivos de configuración y políticas adicionales de D-Bus. Por ejemplo, para permitir a avahi-daemon el uso del bus del sistema, @var{services} debe tener el valor @code{(list avahi)}." #. type: deffn -#: guix-git/doc/guix.texi:20607 +#: guix-git/doc/guix.texi:20969 #, no-wrap msgid "{Scheme Procedure} elogind-service [#:config @var{config}]" msgstr "{Procedimiento Scheme} elogind-service [#:config @var{config}]" #. type: deffn -#: guix-git/doc/guix.texi:20613 +#: guix-git/doc/guix.texi:20975 msgid "Return a service that runs the @code{elogind} login and seat management daemon. @uref{https://github.com/elogind/elogind, Elogind} exposes a D-Bus interface that can be used to know which users are logged in, know what kind of sessions they have open, suspend the system, inhibit system suspend, reboot the system, and other tasks." msgstr "Devuelve un servicio que ejecuta el daemon de gestión de ingreso al sistema y de asientos @code{elogind}. @uref{https://github.com/elogind/elogind, Elogind} expone una interfaz D-Bus que puede usarse para conocer las usuarias que han ingresado en el sistema, conocer qué tipo de sesiones tienen abiertas, suspender el sistema o inhibir su suspensión, reiniciar el sistema y otras tareas." # FUZZY # TODO (MAAV): Repensar forma #. type: deffn -#: guix-git/doc/guix.texi:20617 +#: guix-git/doc/guix.texi:20979 msgid "Elogind handles most system-level power events for a computer, for example suspending the system when a lid is closed, or shutting it down when the power button is pressed." msgstr "Elogind maneja la mayor parte de los eventos a nivel de sistema de alimentación de su máquina, por ejemplo mediante la suspensión del sistema cuando se cierre la tapa, o mediante el apagado al pulsar la tecla correspondiente." #. type: deffn -#: guix-git/doc/guix.texi:20622 +#: guix-git/doc/guix.texi:20984 msgid "The @var{config} keyword argument specifies the configuration for elogind, and should be the result of an @code{(elogind-configuration (@var{parameter} @var{value})...)} invocation. Available parameters and their default values are:" msgstr "El parámetro @var{config} especifica la configuración de elogind, y debería resultar en una invocación @code{(elogind-configuration (@var{parámetro} @var{valor})...)}. Los parámetros disponibles y sus valores predeterminados son:" #. type: item -#: guix-git/doc/guix.texi:20624 +#: guix-git/doc/guix.texi:20986 #, no-wrap msgid "kill-user-processes?" msgstr "kill-user-processes?" #. type: code{#1} -#: guix-git/doc/guix.texi:20626 guix-git/doc/guix.texi:20646 -#: guix-git/doc/guix.texi:20648 guix-git/doc/guix.texi:20650 -#: guix-git/doc/guix.texi:20662 +#: guix-git/doc/guix.texi:20988 guix-git/doc/guix.texi:21008 +#: guix-git/doc/guix.texi:21010 guix-git/doc/guix.texi:21012 +#: guix-git/doc/guix.texi:21024 msgid "#f" msgstr "#f" #. type: item -#: guix-git/doc/guix.texi:20626 +#: guix-git/doc/guix.texi:20988 #, no-wrap msgid "kill-only-users" msgstr "kill-only-users" #. type: code{#1} -#: guix-git/doc/guix.texi:20628 guix-git/doc/guix.texi:20668 +#: guix-git/doc/guix.texi:20990 guix-git/doc/guix.texi:21030 msgid "()" msgstr "()" #. type: item -#: guix-git/doc/guix.texi:20628 +#: guix-git/doc/guix.texi:20990 #, no-wrap msgid "kill-exclude-users" msgstr "kill-exclude-users" #. type: code{#1} -#: guix-git/doc/guix.texi:20630 +#: guix-git/doc/guix.texi:20992 msgid "(\"root\")" msgstr "(\"root\")" #. type: item -#: guix-git/doc/guix.texi:20630 +#: guix-git/doc/guix.texi:20992 #, no-wrap msgid "inhibit-delay-max-seconds" msgstr "inhibit-delay-max-seconds" #. type: code{#1} -#: guix-git/doc/guix.texi:20632 +#: guix-git/doc/guix.texi:20994 msgid "5" msgstr "5" #. type: item -#: guix-git/doc/guix.texi:20632 +#: guix-git/doc/guix.texi:20994 #, no-wrap msgid "handle-power-key" msgstr "handle-power-key" #. type: code{#1} -#: guix-git/doc/guix.texi:20634 +#: guix-git/doc/guix.texi:20996 msgid "poweroff" msgstr "poweroff" #. type: item -#: guix-git/doc/guix.texi:20634 +#: guix-git/doc/guix.texi:20996 #, no-wrap msgid "handle-suspend-key" msgstr "handle-suspend-key" #. type: code{#1} -#: guix-git/doc/guix.texi:20636 guix-git/doc/guix.texi:20640 +#: guix-git/doc/guix.texi:20998 guix-git/doc/guix.texi:21002 msgid "suspend" msgstr "suspend" #. type: item -#: guix-git/doc/guix.texi:20636 +#: guix-git/doc/guix.texi:20998 #, no-wrap msgid "handle-hibernate-key" msgstr "handle-hibernate-key" #. type: code{#1} -#: guix-git/doc/guix.texi:20638 +#: guix-git/doc/guix.texi:21000 msgid "hibernate" msgstr "hibernate" #. type: item -#: guix-git/doc/guix.texi:20638 +#: guix-git/doc/guix.texi:21000 #, no-wrap msgid "handle-lid-switch" msgstr "handle-lid-switch" #. type: item -#: guix-git/doc/guix.texi:20640 +#: guix-git/doc/guix.texi:21002 #, no-wrap msgid "handle-lid-switch-docked" msgstr "handle-lid-switch-docked" #. type: code{#1} -#: guix-git/doc/guix.texi:20642 guix-git/doc/guix.texi:20644 -#: guix-git/doc/guix.texi:20656 +#: guix-git/doc/guix.texi:21004 guix-git/doc/guix.texi:21006 +#: guix-git/doc/guix.texi:21018 msgid "ignore" msgstr "ignore" #. type: item -#: guix-git/doc/guix.texi:20642 +#: guix-git/doc/guix.texi:21004 #, no-wrap msgid "handle-lid-switch-external-power" msgstr "handle-lid-switch-external-power" #. type: item -#: guix-git/doc/guix.texi:20644 +#: guix-git/doc/guix.texi:21006 #, no-wrap msgid "power-key-ignore-inhibited?" msgstr "power-key-ignore-inhibited?" #. type: item -#: guix-git/doc/guix.texi:20646 +#: guix-git/doc/guix.texi:21008 #, no-wrap msgid "suspend-key-ignore-inhibited?" msgstr "suspend-key-ignore-inhibited?" #. type: item -#: guix-git/doc/guix.texi:20648 +#: guix-git/doc/guix.texi:21010 #, no-wrap msgid "hibernate-key-ignore-inhibited?" msgstr "hibernate-key-ignore-inhibited?" #. type: item -#: guix-git/doc/guix.texi:20650 +#: guix-git/doc/guix.texi:21012 #, no-wrap msgid "lid-switch-ignore-inhibited?" msgstr "lid-switch-ignore-inhibited?" #. type: code{#1} -#: guix-git/doc/guix.texi:20652 guix-git/doc/guix.texi:20664 +#: guix-git/doc/guix.texi:21014 guix-git/doc/guix.texi:21026 msgid "#t" msgstr "#t" #. type: item -#: guix-git/doc/guix.texi:20652 +#: guix-git/doc/guix.texi:21014 #, no-wrap msgid "holdoff-timeout-seconds" msgstr "holdoff-timeout-seconds" #. type: code{#1} -#: guix-git/doc/guix.texi:20654 +#: guix-git/doc/guix.texi:21016 msgid "30" msgstr "30" #. type: item -#: guix-git/doc/guix.texi:20654 +#: guix-git/doc/guix.texi:21016 #, no-wrap msgid "idle-action" msgstr "idle-action" #. type: item -#: guix-git/doc/guix.texi:20656 +#: guix-git/doc/guix.texi:21018 #, no-wrap msgid "idle-action-seconds" msgstr "idle-action-seconds" #. type: code{#1} -#: guix-git/doc/guix.texi:20658 +#: guix-git/doc/guix.texi:21020 msgid "(* 30 60)" msgstr "(* 30 60)" #. type: item -#: guix-git/doc/guix.texi:20658 +#: guix-git/doc/guix.texi:21020 #, no-wrap msgid "runtime-directory-size-percent" msgstr "runtime-directory-size-percent" #. type: code{#1} -#: guix-git/doc/guix.texi:20660 +#: guix-git/doc/guix.texi:21022 msgid "10" msgstr "10" #. type: item -#: guix-git/doc/guix.texi:20660 +#: guix-git/doc/guix.texi:21022 #, no-wrap msgid "runtime-directory-size" msgstr "runtime-directory-size" #. type: item -#: guix-git/doc/guix.texi:20662 +#: guix-git/doc/guix.texi:21024 #, no-wrap msgid "remove-ipc?" msgstr "remove-ipc?" #. type: item -#: guix-git/doc/guix.texi:20664 +#: guix-git/doc/guix.texi:21026 #, no-wrap msgid "suspend-state" msgstr "suspend-state" #. type: code{#1} -#: guix-git/doc/guix.texi:20666 +#: guix-git/doc/guix.texi:21028 msgid "(\"mem\" \"standby\" \"freeze\")" msgstr "(\"mem\" \"standby\" \"freeze\")" #. type: item -#: guix-git/doc/guix.texi:20666 +#: guix-git/doc/guix.texi:21028 #, no-wrap msgid "suspend-mode" msgstr "suspend-mode" #. type: item -#: guix-git/doc/guix.texi:20668 +#: guix-git/doc/guix.texi:21030 #, no-wrap msgid "hibernate-state" msgstr "hibernate-state" #. type: code{#1} -#: guix-git/doc/guix.texi:20670 guix-git/doc/guix.texi:20674 +#: guix-git/doc/guix.texi:21032 guix-git/doc/guix.texi:21036 msgid "(\"disk\")" msgstr "(\"disk\")" #. type: item -#: guix-git/doc/guix.texi:20670 +#: guix-git/doc/guix.texi:21032 #, no-wrap msgid "hibernate-mode" msgstr "hibernate-mode" #. type: code{#1} -#: guix-git/doc/guix.texi:20672 +#: guix-git/doc/guix.texi:21034 msgid "(\"platform\" \"shutdown\")" msgstr "(\"platform\" \"shutdown\")" #. type: item -#: guix-git/doc/guix.texi:20672 +#: guix-git/doc/guix.texi:21034 #, no-wrap msgid "hybrid-sleep-state" msgstr "hybrid-sleep-state" #. type: item -#: guix-git/doc/guix.texi:20674 +#: guix-git/doc/guix.texi:21036 #, no-wrap msgid "hybrid-sleep-mode" msgstr "hybrid-sleep-mode" #. type: code{#1} -#: guix-git/doc/guix.texi:20676 +#: guix-git/doc/guix.texi:21038 msgid "(\"suspend\" \"platform\" \"shutdown\")" msgstr "(\"suspend\" \"platform\" \"shutdown\")" #. type: deffn -#: guix-git/doc/guix.texi:20679 +#: guix-git/doc/guix.texi:21041 #, no-wrap msgid "{Scheme Procedure} accountsservice-service @" msgstr "{Procedimiento Scheme} accountsservice-service @" #. type: deffn -#: guix-git/doc/guix.texi:20687 +#: guix-git/doc/guix.texi:21049 msgid "[#:accountsservice @var{accountsservice}] Return a service that runs AccountsService, a system service that can list available accounts, change their passwords, and so on. AccountsService integrates with PolicyKit to enable unprivileged users to acquire the capability to modify their system configuration. @uref{https://www.freedesktop.org/wiki/Software/AccountsService/, the accountsservice web site} for more information." msgstr "" "[#:accountsservice @var{accountsservice}]\n" "Devuelve un servicio que ejecuta AccountsService, un servicio del sistema para la enumeración de cuentas disponibles, el cambio de sus contraseñas, etcétera. AccountsService se integra con PolicyKit para permitir a las usuarias sin privilegios la adquisición de la capacidad de modificar la configuración de su sistema. Véase @uref{https://www.freedesktop.org/wiki/Software/AccountsService/, la página web de AccountsService} para más información." #. type: deffn -#: guix-git/doc/guix.texi:20690 +#: guix-git/doc/guix.texi:21052 msgid "The @var{accountsservice} keyword argument is the @code{accountsservice} package to expose as a service." msgstr "El parámetro @var{accountsservice} es el paquete @code{accountsservice} que se expondrá como un servicio." #. type: deffn -#: guix-git/doc/guix.texi:20692 +#: guix-git/doc/guix.texi:21054 #, no-wrap msgid "{Scheme Procedure} polkit-service @" msgstr "{Procedimiento Scheme} polkit-service @" #. type: deffn -#: guix-git/doc/guix.texi:20701 +#: guix-git/doc/guix.texi:21063 msgid "[#:polkit @var{polkit}] Return a service that runs the @uref{https://www.freedesktop.org/wiki/Software/polkit/, Polkit privilege management service}, which allows system administrators to grant access to privileged operations in a structured way. By querying the Polkit service, a privileged system component can know when it should grant additional capabilities to ordinary users. For example, an ordinary user can be granted the capability to suspend the system if the user is logged in locally." msgstr "" "[#:polkit @var{polkit}]\n" "Devuelve un servicio que ejecuta el @uref{https://www.freedesktop.org/wiki/Software/polkit/, servicio de gestión de privilegios Polkit}, que permite a las administradoras del sistema la concesión de permisos sobre operaciones privilegiadas de manera estructurada. Mediante las consultas al servicio Polkit, un componente del sistema con privilegios puede conocer cuando debe conceder capacidades adicionales a usuarias ordinarias. Por ejemplo, se le puede conceder la capacidad a una usuaria ordinaria de suspender el sistema si la usuaria ingresó de forma local." #. type: defvr -#: guix-git/doc/guix.texi:20703 +#: guix-git/doc/guix.texi:21065 #, no-wrap msgid "{Scheme Variable} polkit-wheel-service" msgstr "{Variable Scheme} polkit-wheel-service" # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:20708 +#: guix-git/doc/guix.texi:21070 msgid "Service that adds the @code{wheel} group as admins to the Polkit service. This makes it so that users in the @code{wheel} group are queried for their own passwords when performing administrative actions instead of @code{root}'s, similar to the behaviour used by @code{sudo}." msgstr "Servicio que añade a las usuarias del grupo @code{wheel} como administradoras del servicio Polkit. Esto hace que se solicite su propia contraseña a las usuarias del grupo @code{wheel} cuando realicen acciones administrativas en vez de la contraseña de @code{root}, de manera similar al comportamiento de @code{sudo}." #. type: defvr -#: guix-git/doc/guix.texi:20710 +#: guix-git/doc/guix.texi:21072 #, no-wrap msgid "{Scheme Variable} upower-service-type" msgstr "{Variable Scheme} upower-service-type" #. type: defvr -#: guix-git/doc/guix.texi:20714 +#: guix-git/doc/guix.texi:21076 msgid "Service that runs @uref{https://upower.freedesktop.org/, @command{upowerd}}, a system-wide monitor for power consumption and battery levels, with the given configuration settings." msgstr "Servicio que ejecuta @uref{https://upower.freedesktop.org/}, @command{upowerd}, un monitor a nivel de sistema de consumo de energía y niveles de batería, con las opciones de configuración proporcionadas." #. type: defvr -#: guix-git/doc/guix.texi:20717 +#: guix-git/doc/guix.texi:21079 msgid "It implements the @code{org.freedesktop.UPower} D-Bus interface, and is notably used by GNOME." msgstr "Implementa la interfaz D-Bus @code{org.freedesktop.UPower}, y se usa de forma notable en GNOME." #. type: deftp -#: guix-git/doc/guix.texi:20719 +#: guix-git/doc/guix.texi:21081 #, no-wrap msgid "{Data Type} upower-configuration" msgstr "{Tipo de datos} upower-configuration" #. type: deftp -#: guix-git/doc/guix.texi:20721 +#: guix-git/doc/guix.texi:21083 msgid "Data type representation the configuration for UPower." msgstr "Tipo de datos que representa la configuración de UPower." #. type: item -#: guix-git/doc/guix.texi:20724 +#: guix-git/doc/guix.texi:21086 #, no-wrap msgid "@code{upower} (default: @var{upower})" msgstr "@code{upower} (predeterminado: @var{upower})" #. type: table -#: guix-git/doc/guix.texi:20726 +#: guix-git/doc/guix.texi:21088 msgid "Package to use for @code{upower}." msgstr "Paquete usado para @code{upower}." #. type: item -#: guix-git/doc/guix.texi:20727 +#: guix-git/doc/guix.texi:21089 #, no-wrap msgid "@code{watts-up-pro?} (default: @code{#f})" msgstr "@code{watts-up-pro?} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:20729 +#: guix-git/doc/guix.texi:21091 msgid "Enable the Watts Up Pro device." msgstr "Permite el uso del dispositivo Watts Up Pro." #. type: item -#: guix-git/doc/guix.texi:20730 +#: guix-git/doc/guix.texi:21092 #, no-wrap msgid "@code{poll-batteries?} (default: @code{#t})" msgstr "@code{poll-batteries?} (predeterminado: @code{#t})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:20732 +#: guix-git/doc/guix.texi:21094 msgid "Enable polling the kernel for battery level changes." msgstr "Usa el servicio de consulta del núcleo para los cambios en niveles de batería." #. type: item -#: guix-git/doc/guix.texi:20733 +#: guix-git/doc/guix.texi:21095 #, no-wrap msgid "@code{ignore-lid?} (default: @code{#f})" msgstr "@code{ignore-lid?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:20735 +#: guix-git/doc/guix.texi:21097 msgid "Ignore the lid state, this can be useful if it's incorrect on a device." msgstr "Ignora el estado de la tapa, puede ser útil en caso de ser incorrecto un dispositivo determinado." #. type: item -#: guix-git/doc/guix.texi:20736 +#: guix-git/doc/guix.texi:21098 #, no-wrap msgid "@code{use-percentage-for-policy?} (default: @code{#f})" msgstr "@code{use-percentage-for-policy?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:20739 +#: guix-git/doc/guix.texi:21101 msgid "Whether battery percentage based policy should be used. The default is to use the time left, change to @code{#t} to use the percentage." msgstr "Determina si se debe usar la política basada en el porcentaje de batería. La opción predeterminada es el uso del tiempo restante, cambie a @code{#t} para usar el porcentaje." #. type: item -#: guix-git/doc/guix.texi:20740 +#: guix-git/doc/guix.texi:21102 #, no-wrap msgid "@code{percentage-low} (default: @code{10})" msgstr "@code{percentage-low} (predeterminado: @code{10})" #. type: table -#: guix-git/doc/guix.texi:20743 +#: guix-git/doc/guix.texi:21105 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which the battery is considered low." msgstr "Cuando @code{use-percentaje-for-policy?} es @code{#t}, determina el porcentaje en el que la carga de la batería se considera baja." #. type: item -#: guix-git/doc/guix.texi:20744 +#: guix-git/doc/guix.texi:21106 #, no-wrap msgid "@code{percentage-critical} (default: @code{3})" msgstr "@code{percentage-critical} (predeterminado: @code{3})" #. type: table -#: guix-git/doc/guix.texi:20747 +#: guix-git/doc/guix.texi:21109 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which the battery is considered critical." msgstr "Cuando @code{use-percentaje-for-policy?} es @code{#t}, determina el porcentaje en el que la carga de la batería se considera crítica." #. type: item -#: guix-git/doc/guix.texi:20748 +#: guix-git/doc/guix.texi:21110 #, no-wrap msgid "@code{percentage-action} (default: @code{2})" msgstr "@code{percentage-action} (predeterminado: @code{2})" #. type: table -#: guix-git/doc/guix.texi:20751 +#: guix-git/doc/guix.texi:21113 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which action will be taken." msgstr "Cuando @code{use-percentaje-for-policy?} es @code{#t}, determina el porcentaje en el que se tomará la acción." #. type: item -#: guix-git/doc/guix.texi:20752 +#: guix-git/doc/guix.texi:21114 #, no-wrap msgid "@code{time-low} (default: @code{1200})" msgstr "@code{time-low} (predeterminado: @code{1200})" #. type: table -#: guix-git/doc/guix.texi:20755 +#: guix-git/doc/guix.texi:21117 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which the battery is considered low." msgstr "Cuando @code{use-percentaje-for-policy?} es @code{#t}, determina el tiempo restante en segundos con el que carga de la batería se considera baja." #. type: item -#: guix-git/doc/guix.texi:20756 +#: guix-git/doc/guix.texi:21118 #, no-wrap msgid "@code{time-critical} (default: @code{300})" msgstr "@code{time-critical} (predeterminado: @code{300})" #. type: table -#: guix-git/doc/guix.texi:20759 +#: guix-git/doc/guix.texi:21121 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which the battery is considered critical." msgstr "Cuando @code{use-percentaje-for-policy?} es @code{#t}, determina el tiempo restante en segundos con el que carga de la batería se considera crítica." #. type: item -#: guix-git/doc/guix.texi:20760 +#: guix-git/doc/guix.texi:21122 #, no-wrap msgid "@code{time-action} (default: @code{120})" msgstr "@code{time-action} (predeterminado: @code{120})" #. type: table -#: guix-git/doc/guix.texi:20763 +#: guix-git/doc/guix.texi:21125 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which action will be taken." msgstr "Cuando @code{use-percentaje-for-policy?} es @code{#t}, determina el tiempo restante en segundos con el que se tomará la acción." #. type: item -#: guix-git/doc/guix.texi:20764 +#: guix-git/doc/guix.texi:21126 #, no-wrap msgid "@code{critical-power-action} (default: @code{'hybrid-sleep})" msgstr "@code{critical-power-action} (predeterminada: @code{'hybrid-sleep})" #. type: table -#: guix-git/doc/guix.texi:20767 +#: guix-git/doc/guix.texi:21129 msgid "The action taken when @code{percentage-action} or @code{time-action} is reached (depending on the configuration of @code{use-percentage-for-policy?})." msgstr "La acción tomada cuando se alcanza @code{percentage-action} o @code{time-action} (dependiendo de la configuración de @code{use-percentage-for-policy?})." #. type: table -#: guix-git/doc/guix.texi:20769 +#: guix-git/doc/guix.texi:21131 msgid "Possible values are:" msgstr "Los valores posibles son:" #. type: code{#1} -#: guix-git/doc/guix.texi:20773 +#: guix-git/doc/guix.texi:21135 msgid "'power-off" msgstr "'power-off" #. type: code{#1} -#: guix-git/doc/guix.texi:20776 +#: guix-git/doc/guix.texi:21138 msgid "'hibernate" msgstr "'hibernate" #. type: itemize -#: guix-git/doc/guix.texi:20779 +#: guix-git/doc/guix.texi:21141 msgid "@code{'hybrid-sleep}." msgstr "@code{'hybrid-sleep}." #. type: deffn -#: guix-git/doc/guix.texi:20784 +#: guix-git/doc/guix.texi:21146 #, no-wrap msgid "{Scheme Procedure} udisks-service [#:udisks @var{udisks}]" msgstr "{Procedimiento Scheme} udisks-service [#:udisks @var{udisks}]" #. type: deffn -#: guix-git/doc/guix.texi:20794 +#: guix-git/doc/guix.texi:21156 msgid "Return a service for @uref{https://udisks.freedesktop.org/docs/latest/, UDisks}, a @dfn{disk management} daemon that provides user interfaces with notifications and ways to mount/unmount disks. Programs that talk to UDisks include the @command{udisksctl} command, part of UDisks, and GNOME Disks. Note that Udisks relies on the @command{mount} command, so it will only be able to use the file-system utilities installed in the system profile. For example if you want to be able to mount NTFS file-systems in read and write fashion, you'll need to have @code{ntfs-3g} installed system-wide." msgstr "Devuelve un servicio para @uref{https://udisks.freedesktop.org/docs/latest/, UDisks}, un daemon de @dfn{gestión de discos} que proporciona interfaces de usuaria con notificaciones y formas de montar/desmontar discos. Los programas que se comunican con UDisk incluyen la orden @command{udisksctl}, parte de UDisks, y la utilidad ``Discos'' de GNOME. Tenga en cuenta que Udisks depende de la orden @command{mount}, de modo que únicamente será capaz de usar utilidades para sistemas de archivos instaladas en el perfil del sistema. Si quiere, por ejemplo, poder montar sistemas de archivos NTFS en modo lectura/escritura, debe instalar @code{ntfs-3g} en su sistema operativo." #. type: deffn -#: guix-git/doc/guix.texi:20796 +#: guix-git/doc/guix.texi:21158 #, no-wrap msgid "{Scheme Variable} colord-service-type" msgstr "{Variable Scheme} colord-service-type" @@ -40609,52 +41320,52 @@ msgstr "{Variable Scheme} colord-service-type" # FUZZY # TODO (MAAV): Escáner?? #. type: deffn -#: guix-git/doc/guix.texi:20803 +#: guix-git/doc/guix.texi:21165 msgid "This is the type of the service that runs @command{colord}, a system service with a D-Bus interface to manage the color profiles of input and output devices such as screens and scanners. It is notably used by the GNOME Color Manager graphical tool. See @uref{https://www.freedesktop.org/software/colord/, the colord web site} for more information." msgstr "Devuelve un servicio que ejecuta @command{colord}, un servicio del sistema con una interfaz D-Bus para la gestión de perfiles de dispositivos de entrada y salida como la pantalla y el escáner. Se usa de forma notable por parte de la herramienta gráfica de ``Gestión de color'' de GNOME. Véase @uref{https://www.freedesktop.org/software/colord/, la página web de colord} para más información." #. type: cindex -#: guix-git/doc/guix.texi:20805 +#: guix-git/doc/guix.texi:21167 #, no-wrap msgid "scanner access" msgstr "acceso al escáner" #. type: defvr -#: guix-git/doc/guix.texi:20806 +#: guix-git/doc/guix.texi:21168 #, fuzzy, no-wrap msgid "{Scheme Variable} sane-service-type" msgstr "{Variable Scheme} ganeti-service-type" #. type: defvr -#: guix-git/doc/guix.texi:20812 +#: guix-git/doc/guix.texi:21174 #, fuzzy msgid "This service provides access to scanners @i{via} @uref{http://www.sane-project.org, SANE} by installing the necessary udev rules. It is included in @code{%desktop-services} (@pxref{Desktop Services}) and relies by default on @code{sane-backends-minimal} package (see below) for hardware support." msgstr "Este servicio proporciona acceso a escáner a través de @uref{http://www.sane-project.org, SANE} instalando las reglas de udev necesarias." #. type: defvr -#: guix-git/doc/guix.texi:20814 +#: guix-git/doc/guix.texi:21176 #, fuzzy, no-wrap msgid "{Scheme Variable} sane-backends-minimal" msgstr "{Variable Scheme} %state-monad" #. type: defvr -#: guix-git/doc/guix.texi:20817 +#: guix-git/doc/guix.texi:21179 msgid "The default package which the @code{sane-service-type} installs. It supports many recent scanners." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20819 +#: guix-git/doc/guix.texi:21181 #, fuzzy, no-wrap msgid "{Scheme Variable} sane-backends" msgstr "{Variable Scheme} %state-monad" #. type: defvr -#: guix-git/doc/guix.texi:20826 +#: guix-git/doc/guix.texi:21188 msgid "This package includes support for all scanners that @code{sane-backends-minimal} supports, plus older Hewlett-Packard scanners supported by @code{hplip} package. In order to use this on a system which relies on @code{%desktop-services}, you may use @code{modify-services} (@pxref{Service Reference, @code{modify-services}}) as illustrated below:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20835 +#: guix-git/doc/guix.texi:21197 #, fuzzy, no-wrap msgid "" "(use-modules (gnu))\n" @@ -40672,7 +41383,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:20840 +#: guix-git/doc/guix.texi:21202 #, no-wrap msgid "" "(define %my-desktop-services\n" @@ -40683,7 +41394,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20844 +#: guix-git/doc/guix.texi:21206 #, fuzzy, no-wrap msgid "" "(operating-system\n" @@ -40695,228 +41406,228 @@ msgstr "" " (services %mis-servicios))\n" #. type: deffn -#: guix-git/doc/guix.texi:20847 +#: guix-git/doc/guix.texi:21209 #, no-wrap msgid "{Scheme Procedure} geoclue-application name [#:allowed? #t] [#:system? #f] [#:users '()]" msgstr "{Procedimiento Scheme} geoclue-application-name [#:allowed? #t] [#:system? #f] [#:users '()]" # FUZZY #. type: deffn -#: guix-git/doc/guix.texi:20856 +#: guix-git/doc/guix.texi:21218 msgid "Return a configuration allowing an application to access GeoClue location data. @var{name} is the Desktop ID of the application, without the @code{.desktop} part. If @var{allowed?} is true, the application will have access to location information by default. The boolean @var{system?} value indicates whether an application is a system component or not. Finally @var{users} is a list of UIDs of all users for which this application is allowed location info access. An empty users list means that all users are allowed." msgstr "Devuelve una configuración que permite a una aplicación el acceso a los datos de posicionamiento de GeoClue. @var{nombre} es el Desktop ID de la aplicación, sin la parte @code{.desktop}. Si el valor de @var{allowed?} es verdadero, la aplicación tendrá acceso a la información de posicionamiento de manera predeterminada. El valor booleano @var{system?} indica si una aplicación es un componente de sistema o no. Por último, @var{users} es una lista de UID de todas las usuarias para las que esta aplicación tiene permitido el acceso de información. Una lista de usuarias vacía significa que se permiten todas las usuarias." #. type: defvr -#: guix-git/doc/guix.texi:20858 +#: guix-git/doc/guix.texi:21220 #, no-wrap msgid "{Scheme Variable} %standard-geoclue-applications" msgstr "{Variable Scheme} %standard-geoclue-applications" # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:20865 +#: guix-git/doc/guix.texi:21227 msgid "The standard list of well-known GeoClue application configurations, granting authority to the GNOME date-and-time utility to ask for the current location in order to set the time zone, and allowing the IceCat and Epiphany web browsers to request location information. IceCat and Epiphany both query the user before allowing a web page to know the user's location." msgstr "La lista estándar de configuraciones de GeoClue de aplicaciones conocidas, proporcionando autoridad a la utilidad de fecha y hora de GNOME para obtener la localización actual para ajustar la zona horaria, y permitiendo que los navegadores Icecat y Epiphany puedan solicitar información de localización. Tanto IceCat como Epiphany solicitan permiso a la usuaria antes de permitir a una página web conocer la ubicación de la usuaria." #. type: deffn -#: guix-git/doc/guix.texi:20867 +#: guix-git/doc/guix.texi:21229 #, no-wrap msgid "{Scheme Procedure} geoclue-service [#:colord @var{colord}] @" msgstr "{Procedimiento Scheme} geoclue-service [#:colord @var{colord}] @" #. type: deffn -#: guix-git/doc/guix.texi:20880 +#: guix-git/doc/guix.texi:21242 msgid "[#:whitelist '()] @ [#:wifi-geolocation-url \"https://location.services.mozilla.com/v1/geolocate?key=geoclue\"] @ [#:submit-data? #f] [#:wifi-submission-url \"https://location.services.mozilla.com/v1/submit?key=geoclue\"] @ [#:submission-nick \"geoclue\"] @ [#:applications %standard-geoclue-applications] Return a service that runs the GeoClue location service. This service provides a D-Bus interface to allow applications to request access to a user's physical location, and optionally to add information to online location databases. See @uref{https://wiki.freedesktop.org/www/Software/GeoClue/, the GeoClue web site} for more information." msgstr "" "[#:whitelist '()] @ [#:wifi-geolocation-url \"https://location.services.mozilla.com/v1/geolocate?key=geoclue\"] @ [#:submit-data? #f] [#:wifi-submission-url \"https://location.services.mozilla.com/v1/submit?key=geoclue\"] @ [#:submission-nick \"geoclue\"] @ [#:applications %standard-geoclue-applications]\n" "Devuelve un servicio que ejecuta el servicio de posicionamiento GeoClue. Proporciona una interfaz D-Bus que permite a las aplicaciones solicitar una posición física de la usuaria, y de manera opcional añadir información a bases de datos de posicionamiento en línea. Véase @uref{https://wiki.freedesktop.org/www/Software/GeoClue/, la página web de GeoClue} para obtener más información." #. type: deffn -#: guix-git/doc/guix.texi:20882 +#: guix-git/doc/guix.texi:21244 #, no-wrap msgid "{Scheme Procedure} bluetooth-service [#:bluez @var{bluez}] @" msgstr "{Procedimiento Scheme} bluetooth-service [#:bluez @var{bluez}] @" # FUZZY #. type: deffn -#: guix-git/doc/guix.texi:20889 +#: guix-git/doc/guix.texi:21251 msgid "[@w{#:auto-enable? #f}] Return a service that runs the @command{bluetoothd} daemon, which manages all the Bluetooth devices and provides a number of D-Bus interfaces. When AUTO-ENABLE? is true, the bluetooth controller is powered automatically at boot, which can be useful when using a bluetooth keyboard or mouse." msgstr "" "[@w{#:auto-enable? #f}]\n" "Devuelve un servicio que ejecuta el daemon @command{bluetoothd} que gestiona todos los dispositivos Bluetooth y proporciona cierto número de interfaces D-Bus. Cuando @var{auto-enable?} es verdadero, el controlador bluetooth tendrá alimentación automáticamente tras el arranque, lo que puede ser útil si se posee un teclado o un ratón bluetooth." #. type: deffn -#: guix-git/doc/guix.texi:20891 +#: guix-git/doc/guix.texi:21253 msgid "Users need to be in the @code{lp} group to access the D-Bus service." msgstr "Las usuarias necesitan la pertenencia al grupo @code{lp} para el acceso al servicio D-Bus." #. type: defvr -#: guix-git/doc/guix.texi:20893 +#: guix-git/doc/guix.texi:21255 #, no-wrap msgid "{Scheme Variable} gnome-keyring-service-type" msgstr "{Variable Scheme} gnome-keyring-service-type" #. type: defvr -#: guix-git/doc/guix.texi:20897 +#: guix-git/doc/guix.texi:21259 msgid "This is the type of the service that adds the @uref{https://wiki.gnome.org/Projects/GnomeKeyring, GNOME Keyring}. Its value is a @code{gnome-keyring-configuration} object (see below)." msgstr "Es el tipo del servicio que añade el entorno de escritorio el @uref{https://wiki.gnome.org/Projects/GnomeKeyring, anillo de claves de GNOME}. Su valor es un objeto @code{gnome-keyring-configuration} (véase a continuación)." #. type: defvr -#: guix-git/doc/guix.texi:20901 +#: guix-git/doc/guix.texi:21263 msgid "This service adds the @code{gnome-keyring} package to the system profile and extends PAM with entries using @code{pam_gnome_keyring.so}, unlocking a user's login keyring when they log in or setting its password with passwd." msgstr "Este servicio añade el paquete @code{gnome-keyring} al perfil del sistema y extiende PAM con entradas que usan @code{pam_gnome_keyring.so}, las cuales desbloquean el anillo de claves del sistema de la usuaria cuando ingrese en el sistema o cambie su contraseña con passwd." #. type: deftp -#: guix-git/doc/guix.texi:20903 +#: guix-git/doc/guix.texi:21265 #, no-wrap msgid "{Data Type} gnome-keyring-configuration" msgstr "{Tipo de datos} gnome-keyring-configuration" #. type: deftp -#: guix-git/doc/guix.texi:20905 +#: guix-git/doc/guix.texi:21267 msgid "Configuration record for the GNOME Keyring service." msgstr "Registro de configuración para el servicio del anillo de claves de GNOME." #. type: item -#: guix-git/doc/guix.texi:20907 +#: guix-git/doc/guix.texi:21269 #, no-wrap msgid "@code{keyring} (default: @code{gnome-keyring})" msgstr "@code{keyring} (predeterminado: @code{gnome-keyring})" #. type: table -#: guix-git/doc/guix.texi:20909 +#: guix-git/doc/guix.texi:21271 msgid "The GNOME keyring package to use." msgstr "El paquete GNOME keyring usado." #. type: code{#1} -#: guix-git/doc/guix.texi:20910 +#: guix-git/doc/guix.texi:21272 #, no-wrap msgid "pam-services" msgstr "pam-services" # FUZZY #. type: table -#: guix-git/doc/guix.texi:20915 +#: guix-git/doc/guix.texi:21277 msgid "A list of @code{(@var{service} . @var{kind})} pairs denoting PAM services to extend, where @var{service} is the name of an existing service to extend and @var{kind} is one of @code{login} or @code{passwd}." msgstr "Una lista de pares @code{(@var{servicio} . @var{tipo})} que denotan los servicios de PAM que deben extenderse, donde @var{servicio} es el nombre de un servicio existente que debe extenderse y @var{tipo} es @code{login} o @code{passwd}." # FUZZY #. type: table -#: guix-git/doc/guix.texi:20921 +#: guix-git/doc/guix.texi:21283 msgid "If @code{login} is given, it adds an optional @code{pam_gnome_keyring.so} to the auth block without arguments and to the session block with @code{auto_start}. If @code{passwd} is given, it adds an optional @code{pam_gnome_keyring.so} to the password block without arguments." msgstr "Si se proporciona @code{login}, añade un campo opcional @code{pam_gnome_keyring.so} al bloque de identificación sin parámetros y al bloque de sesión con @code{auto_start}. Si se proporciona @code{passwd}, añade un campo opcional @code{pam_gnome_keyring.so} al bloque de contraseña sin parámetros." #. type: table -#: guix-git/doc/guix.texi:20924 +#: guix-git/doc/guix.texi:21286 msgid "By default, this field contains ``gdm-password'' with the value @code{login} and ``passwd'' is with the value @code{passwd}." msgstr "De manera predeterminada, este campo contiene ``gdm-password'' con el valor @code{login} y ``passwd'' tiene valor @code{passwd}." # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:20931 +#: guix-git/doc/guix.texi:21293 #, no-wrap msgid "sound support" msgstr "sonido" #. type: cindex -#: guix-git/doc/guix.texi:20932 +#: guix-git/doc/guix.texi:21294 #, no-wrap msgid "ALSA" msgstr "ALSA" # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:20933 +#: guix-git/doc/guix.texi:21295 #, no-wrap msgid "PulseAudio, sound support" msgstr "PulseAudio, sonido" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:20938 +#: guix-git/doc/guix.texi:21300 msgid "The @code{(gnu services sound)} module provides a service to configure the Advanced Linux Sound Architecture (ALSA) system, which makes PulseAudio the preferred ALSA output driver." msgstr "El módulo @code{(gnu services sound)} proporciona un servicio para la configuración del sistema ALSA (arquitectura avanzada de sonido de Linux), el cual establece PulseAudio como el controlador de ALSA preferido para salida de sonido." #. type: deffn -#: guix-git/doc/guix.texi:20939 +#: guix-git/doc/guix.texi:21301 #, no-wrap msgid "{Scheme Variable} alsa-service-type" msgstr "{Variable Scheme} alsa-service-type" #. type: deffn -#: guix-git/doc/guix.texi:20944 +#: guix-git/doc/guix.texi:21306 msgid "This is the type for the @uref{https://alsa-project.org/, Advanced Linux Sound Architecture} (ALSA) system, which generates the @file{/etc/asound.conf} configuration file. The value for this type is a @command{alsa-configuration} record as in this example:" msgstr "Es el tipo para el sistema @uref{https://alsa-project.org/, ALSA} (Arquitectura de sonido avanzada de Linux), que genera el archivo de configuración @file{/etc/asound.conf}. El valor para este tipo es un registro @command{alsa-configuration} como en el ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:20947 +#: guix-git/doc/guix.texi:21309 #, no-wrap msgid "(service alsa-service-type)\n" msgstr "(service alsa-service-type)\n" #. type: deffn -#: guix-git/doc/guix.texi:20950 +#: guix-git/doc/guix.texi:21312 msgid "See below for details about @code{alsa-configuration}." msgstr "Véase a continuación más detalles sobre @code{alsa-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:20952 +#: guix-git/doc/guix.texi:21314 #, no-wrap msgid "{Data Type} alsa-configuration" msgstr "{Tipo de datos} alsa-configuration" #. type: deftp -#: guix-git/doc/guix.texi:20954 +#: guix-git/doc/guix.texi:21316 msgid "Data type representing the configuration for @code{alsa-service}." msgstr "Tipo de datos que representa la configuración para @code{alsa-service}." #. type: item -#: guix-git/doc/guix.texi:20956 +#: guix-git/doc/guix.texi:21318 #, no-wrap msgid "@code{alsa-plugins} (default: @var{alsa-plugins})" msgstr "@code{alsa-plugins} (predeterminados: @var{alsa-plugins})" #. type: table -#: guix-git/doc/guix.texi:20958 +#: guix-git/doc/guix.texi:21320 msgid "@code{alsa-plugins} package to use." msgstr "El paquete @code{alsa-plugins} usado." #. type: item -#: guix-git/doc/guix.texi:20959 +#: guix-git/doc/guix.texi:21321 #, no-wrap msgid "@code{pulseaudio?} (default: @var{#t})" msgstr "@code{pulseaudio?} (predeterminado: @var{#t})" #. type: table -#: guix-git/doc/guix.texi:20962 +#: guix-git/doc/guix.texi:21324 msgid "Whether ALSA applications should transparently be made to use the @uref{https://www.pulseaudio.org/, PulseAudio} sound server." msgstr "Determina si las aplicaciones ALSA deben usar el servidor de sonido @uref{https://www.pulseaudio.org/, PulseAudio} de manera transparente." # FUZZY #. type: table -#: guix-git/doc/guix.texi:20966 +#: guix-git/doc/guix.texi:21328 msgid "Using PulseAudio allows you to run several sound-producing applications at the same time and to individual control them @i{via} @command{pavucontrol}, among other things." msgstr "El uso de PulseAudio le permite la ejecución de varias aplicaciones que produzcan sonido al mismo tiempo y su control individual mediante @command{pavucontrol}, entre otras opciones." #. type: item -#: guix-git/doc/guix.texi:20967 +#: guix-git/doc/guix.texi:21329 #, no-wrap msgid "@code{extra-options} (default: @var{\"\"})" msgstr "@code{extra-options} (predeterminado: @var{\"\"})" #. type: table -#: guix-git/doc/guix.texi:20969 +#: guix-git/doc/guix.texi:21331 msgid "String to append to the @file{/etc/asound.conf} file." msgstr "Cadena a añadir al final del archivo @file{/etc/asound.conf}." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:20975 +#: guix-git/doc/guix.texi:21337 msgid "Individual users who want to override the system configuration of ALSA can do it with the @file{~/.asoundrc} file:" msgstr "Las usuarias individuales que deseen forzar la configuración de ALSA en el sistema para sus cuentas pueden hacerlo con el archivo @file{~/.asoundrc}:" #. type: example -#: guix-git/doc/guix.texi:20981 +#: guix-git/doc/guix.texi:21343 #, no-wrap msgid "" "# In guix, we have to specify the absolute path for plugins.\n" @@ -40932,7 +41643,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:20990 +#: guix-git/doc/guix.texi:21352 #, no-wrap msgid "" "# Routing ALSA to jack:\n" @@ -40956,7 +41667,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:20996 +#: guix-git/doc/guix.texi:21358 #, no-wrap msgid "" " capture_ports @{\n" @@ -40974,7 +41685,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:21003 +#: guix-git/doc/guix.texi:21365 #, no-wrap msgid "" "pcm.!default @{\n" @@ -40992,105 +41703,107 @@ msgstr "" "@}\n" #. type: Plain text -#: guix-git/doc/guix.texi:21007 +#: guix-git/doc/guix.texi:21369 msgid "See @uref{https://www.alsa-project.org/main/index.php/Asoundrc} for the details." msgstr "Véase @uref{https://www.alsa-project.org/main/index.php/Asoundrc} para obtener más detalles." #. type: deffn -#: guix-git/doc/guix.texi:21008 +#: guix-git/doc/guix.texi:21370 #, no-wrap msgid "{Scheme Variable} pulseaudio-service-type" msgstr "{Variable Scheme} pulseaudio-service-type" #. type: deffn -#: guix-git/doc/guix.texi:21012 +#: guix-git/doc/guix.texi:21374 msgid "This is the type for the @uref{https://www.pulseaudio.org/, PulseAudio} sound server. It exists to allow system overrides of the default settings via @code{pulseaudio-configuration}, see below." msgstr "Tipo de servicio del servidor de sonido @url{https://www.pulseaudio.org/, PulseAudio/,PulseAudio}. Existe para permitir los cambios a nivel de sistema de la configuración predeterminada a través de @code{pulseaudio-configuration}, véase a continuación." #. type: quotation -#: guix-git/doc/guix.texi:21018 +#: guix-git/doc/guix.texi:21380 msgid "This service overrides per-user configuration files. If you want PulseAudio to honor configuration files in @file{~/.config/pulse} you have to unset the environment variables @env{PULSE_CONFIG} and @env{PULSE_CLIENTCONFIG} in your @file{~/.bash_profile}." msgstr "Este servicio hace que se ignoren los archivos de configuración de cada usuaria. Si desea que PulseAudio respete los archivos de configuración en @file{~/.config/pulse} tiene que eliminar del entorno (con @code{unset}) las variables @env{PULSE_CONFIG} y @env{PULSE_CLIENTCONFIG} en su archivo @file{~/.bash_profile}." # FUZZY #. type: quotation -#: guix-git/doc/guix.texi:21026 +#: guix-git/doc/guix.texi:21388 msgid "This service on its own does not ensure, that the @code{pulseaudio} package exists on your machine. It merely adds configuration files for it, as detailed below. In the (admittedly unlikely) case, that you find yourself without a @code{pulseaudio} package, consider enabling it through the @code{alsa-service-type} above." msgstr "Este servicio no asegura en sí que el paquete @code{pulseaudio} exista en su máquina. Únicamente añade los archivos de configuración, como se detalla a continuación. En el caso (ciertamente poco probable), de que se encuentre si un paquete pulseaudio @code{pulseaudio}, considere activarlo a través del tipo @code{alsa-service-type} mostrado previamente." #. type: deftp -#: guix-git/doc/guix.texi:21029 +#: guix-git/doc/guix.texi:21391 #, no-wrap msgid "{Data Type} pulseaudio-configuration" msgstr "{Tipo de datos} pulseaudio-configuration" #. type: deftp -#: guix-git/doc/guix.texi:21031 +#: guix-git/doc/guix.texi:21393 msgid "Data type representing the configuration for @code{pulseaudio-service}." msgstr "Tipo de datos que representa la configuración para @code{pulseaudio-service}." #. type: item -#: guix-git/doc/guix.texi:21033 +#: guix-git/doc/guix.texi:21395 #, no-wrap msgid "@code{client-conf} (default: @code{'()})" msgstr "@code{client-conf} (predeterminada: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:21038 -msgid "List of settings to set in @file{client.conf}. Accepts a list of strings or a symbol-value pairs. A string will be inserted as-is with a newline added. A pair will be formatted as ``key = value'', again with a newline added." +#: guix-git/doc/guix.texi:21400 +#, fuzzy +#| msgid "List of settings to set in @file{client.conf}. Accepts a list of strings or a symbol-value pairs. A string will be inserted as-is with a newline added. A pair will be formatted as ``key = value'', again with a newline added." +msgid "List of settings to set in @file{client.conf}. Accepts a list of strings or symbol-value pairs. A string will be inserted as-is with a newline added. A pair will be formatted as ``key = value'', again with a newline added." msgstr "Lista de opciones de configuración de @file{client.conf}. Acepta una lista de cadenas o pares símbolo-valor. Las cadenas se introducirán literalmente añadiendo un salto de línea. Los pares tendrán formato ``clave = valor'', de nuevo añadiendo un salto de línea." #. type: item -#: guix-git/doc/guix.texi:21039 +#: guix-git/doc/guix.texi:21401 #, no-wrap msgid "@code{daemon-conf} (default: @code{'((flat-volumes . no))})" msgstr "@code{daemon-conf} (predeterminada: @code{'((flat-volumes . no))})" #. type: table -#: guix-git/doc/guix.texi:21042 +#: guix-git/doc/guix.texi:21404 msgid "List of settings to set in @file{daemon.conf}, formatted just like @var{client-conf}." msgstr "Lista de opciones de configuración de @file{daemon.conf}, con el mismo formato que @var{client-conf}." #. type: item -#: guix-git/doc/guix.texi:21043 +#: guix-git/doc/guix.texi:21405 #, no-wrap msgid "@code{script-file} (default: @code{(file-append pulseaudio \"/etc/pulse/default.pa\")})" msgstr "@code{script-file} (predeterminado: @code{(file-append pulseaudio \"/etc/pulse/default.pa\")})" #. type: table -#: guix-git/doc/guix.texi:21045 +#: guix-git/doc/guix.texi:21407 msgid "Script file to use as @file{default.pa}." msgstr "Archivo del guión usado como @file{default.pa}" #. type: item -#: guix-git/doc/guix.texi:21046 +#: guix-git/doc/guix.texi:21408 #, no-wrap msgid "@code{system-script-file} (default: @code{(file-append pulseaudio \"/etc/pulse/system.pa\")})" msgstr "@code{system-script-file} (predeterminado: @code{(file-append pulseaudio \"/etc/pulse/system.pa\")})" #. type: table -#: guix-git/doc/guix.texi:21048 +#: guix-git/doc/guix.texi:21410 msgid "Script file to use as @file{system.pa}." msgstr "Archivo del guión usado como @file{system.pa}" #. type: deffn -#: guix-git/doc/guix.texi:21051 +#: guix-git/doc/guix.texi:21413 #, no-wrap msgid "{Scheme Variable} ladspa-service-type" msgstr "{Variable Scheme} ladspa-service-type" #. type: deffn -#: guix-git/doc/guix.texi:21054 +#: guix-git/doc/guix.texi:21416 msgid "This service sets the @var{LADSPA_PATH} variable, so that programs, which respect it, e.g. PulseAudio, can load LADSPA plugins." msgstr "Este servicio proporciona valor a la variable @var{LADSPA_PATH}, de manera que los programas que lo tengan en cuenta, por ejemplo PulseAudio, puedan cargar módulos LADSPA." #. type: deffn -#: guix-git/doc/guix.texi:21057 +#: guix-git/doc/guix.texi:21419 msgid "The following example will setup the service to enable modules from the @code{swh-plugins} package:" msgstr "El siguiente ejemplo configura el servicio para permitir la activación de los módulos del paquete @code{swh-plugins}:" #. type: lisp -#: guix-git/doc/guix.texi:21061 +#: guix-git/doc/guix.texi:21423 #, no-wrap msgid "" "(service ladspa-service-type\n" @@ -41100,34 +41813,34 @@ msgstr "" " (ladspa-configuration (plugins (list swh-plugins))))\n" #. type: deffn -#: guix-git/doc/guix.texi:21065 +#: guix-git/doc/guix.texi:21427 msgid "See @uref{http://plugin.org.uk/ladspa-swh/docs/ladspa-swh.html} for the details." msgstr "Véase @uref{http://plugin.org.uk/ladspa-swh/docs/ladspa-swh.html} para obtener más detalles." #. type: cindex -#: guix-git/doc/guix.texi:21072 +#: guix-git/doc/guix.texi:21434 #, no-wrap msgid "SQL" msgstr "SQL" #. type: Plain text -#: guix-git/doc/guix.texi:21074 +#: guix-git/doc/guix.texi:21436 msgid "The @code{(gnu services databases)} module provides the following services." msgstr "El módulo @code{(gnu services databases)} proporciona los siguientes servicios." #. type: subsubheading -#: guix-git/doc/guix.texi:21075 +#: guix-git/doc/guix.texi:21437 #, no-wrap msgid "PostgreSQL" msgstr "PostgreSQL" #. type: Plain text -#: guix-git/doc/guix.texi:21079 +#: guix-git/doc/guix.texi:21441 msgid "The following example describes a PostgreSQL service with the default configuration." msgstr "El ejemplo siguiente describe un servicio PostgreSQL con su configuración predeterminada." #. type: lisp -#: guix-git/doc/guix.texi:21084 +#: guix-git/doc/guix.texi:21446 #, no-wrap msgid "" "(service postgresql-service-type\n" @@ -41139,17 +41852,17 @@ msgstr "" " (postgresql postgresql-10)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:21090 +#: guix-git/doc/guix.texi:21452 msgid "If the services fails to start, it may be due to an incompatible cluster already present in @var{data-directory}. Adjust it (or, if you don't need the cluster anymore, delete @var{data-directory}), then restart the service." msgstr "Si los servicios fallan al arrancar puede deberse a que ya se encuentra presente otro cluster incompatible en @var{data-directory}. Puede modificar el valor (o, si no necesita más dicho cluster, borrar @var{data-directory}), y reiniciar el servicio." #. type: Plain text -#: guix-git/doc/guix.texi:21097 +#: guix-git/doc/guix.texi:21459 msgid "Peer authentication is used by default and the @code{postgres} user account has no shell, which prevents the direct execution of @code{psql} commands as this user. To use @code{psql}, you can temporarily log in as @code{postgres} using a shell, create a PostgreSQL superuser with the same name as one of the system users and then create the associated database." msgstr "La identificación de pares se usa de manera predeterminada y la cuenta de usuaria @code{postgres} no tiene intérprete predeterminado, lo que evita la ejecución directa de órdenes @code{psql} bajo dicha cuenta. Para usar @code{psql}, puede ingresar temporalmente al sistema como @code{postgres} usando un intérprete de órdenes, crear una cuenta de administración de PostgreSQL con el mismo nombre de una de las usuarias del sistema y, tras esto, crear la base de datos asociada." #. type: example -#: guix-git/doc/guix.texi:21102 +#: guix-git/doc/guix.texi:21464 #, no-wrap msgid "" "sudo -u postgres -s /bin/sh\n" @@ -41161,104 +41874,104 @@ msgstr "" "createdb $MI_CUENTA_DE_USUARIA # Sustituir por el valor apropiado.\n" #. type: deftp -#: guix-git/doc/guix.texi:21104 +#: guix-git/doc/guix.texi:21466 #, no-wrap msgid "{Data Type} postgresql-configuration" msgstr "{Tipo de datos} postgresql-configuration" #. type: deftp -#: guix-git/doc/guix.texi:21107 +#: guix-git/doc/guix.texi:21469 msgid "Data type representing the configuration for the @code{postgresql-service-type}." msgstr "Tipo de datos que representa la configuración de @code{postgresql-service-type}." #. type: code{#1} -#: guix-git/doc/guix.texi:21109 +#: guix-git/doc/guix.texi:21471 #, no-wrap msgid "postgresql" msgstr "postgresql" #. type: table -#: guix-git/doc/guix.texi:21111 +#: guix-git/doc/guix.texi:21473 msgid "PostgreSQL package to use for the service." msgstr "El paquete PostgreSQL usado para este servicio." #. type: item -#: guix-git/doc/guix.texi:21112 +#: guix-git/doc/guix.texi:21474 #, no-wrap msgid "@code{port} (default: @code{5432})" msgstr "@code{port} (predeterminado: @code{5432})" #. type: table -#: guix-git/doc/guix.texi:21114 +#: guix-git/doc/guix.texi:21476 msgid "Port on which PostgreSQL should listen." msgstr "Puerto en el que debe escuchar PostgreSQL." # FUZZY #. type: table -#: guix-git/doc/guix.texi:21117 +#: guix-git/doc/guix.texi:21479 msgid "Locale to use as the default when creating the database cluster." msgstr "Localización predeterminada cuando se crea el cluster de la base de datos." #. type: item -#: guix-git/doc/guix.texi:21118 +#: guix-git/doc/guix.texi:21480 #, no-wrap msgid "@code{config-file} (default: @code{(postgresql-config-file)})" msgstr "@code{config-file} (predeterminado: @code{(postgresql-config-file)})" #. type: table -#: guix-git/doc/guix.texi:21122 +#: guix-git/doc/guix.texi:21484 #, fuzzy msgid "The configuration file to use when running PostgreSQL@. The default behaviour uses the postgresql-config-file record with the default values for the fields." msgstr "Archivo de configuración usado para la ejecución de PostgreSQL. El comportamiento predeterminado usa el registro @code{postgresql-config-file} con los valores predeterminados de los campos." #. type: item -#: guix-git/doc/guix.texi:21123 +#: guix-git/doc/guix.texi:21485 #, fuzzy, no-wrap msgid "@code{log-directory} (default: @code{\"/var/log/postgresql\"})" msgstr "@code{log-directory} (predeterminado: @code{\"/var/log/nginx\"})" #. type: table -#: guix-git/doc/guix.texi:21127 +#: guix-git/doc/guix.texi:21489 msgid "The directory where @command{pg_ctl} output will be written in a file named @code{\"pg_ctl.log\"}. This file can be useful to debug PostgreSQL configuration errors for instance." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21128 +#: guix-git/doc/guix.texi:21490 #, no-wrap msgid "@code{data-directory} (default: @code{\"/var/lib/postgresql/data\"})" msgstr "@code{data-directory} (predeterminado: @code{\"/var/lib/postgresql/data\"})" #. type: table -#: guix-git/doc/guix.texi:21130 +#: guix-git/doc/guix.texi:21492 msgid "Directory in which to store the data." msgstr "Directorio en el que se almacenan los datos." #. type: item -#: guix-git/doc/guix.texi:21131 +#: guix-git/doc/guix.texi:21493 #, no-wrap msgid "@code{extension-packages} (default: @code{'()})" msgstr "@code{extension-packages} (predeterminado: @code{'()})" # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:21132 +#: guix-git/doc/guix.texi:21494 #, no-wrap msgid "postgresql extension-packages" msgstr "paquetes de extensión de postgresql (extension-packages)" #. type: table -#: guix-git/doc/guix.texi:21137 +#: guix-git/doc/guix.texi:21499 msgid "Additional extensions are loaded from packages listed in @var{extension-packages}. Extensions are available at runtime. For instance, to create a geographic database using the @code{postgis} extension, a user can configure the postgresql-service as in this example:" msgstr "Las extensiones adicionales se cargan de paquetes enumerados en @var{extension-packages}. Las extensiones están disponibles en tiempo de ejecución. Por ejemplo, para crear una base de datos geográfica con la extensión @code{postgis}, una usuaria podría configurar el servicio postgresql-service como en este ejemplo:" #. type: cindex -#: guix-git/doc/guix.texi:21138 +#: guix-git/doc/guix.texi:21500 #, no-wrap msgid "postgis" msgstr "postgis" #. type: lisp -#: guix-git/doc/guix.texi:21141 +#: guix-git/doc/guix.texi:21503 #, no-wrap msgid "" "(use-package-modules databases geo)\n" @@ -41268,7 +41981,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:21154 +#: guix-git/doc/guix.texi:21516 #, no-wrap msgid "" "(operating-system\n" @@ -41299,12 +42012,12 @@ msgstr "" # FUZZY #. type: table -#: guix-git/doc/guix.texi:21158 +#: guix-git/doc/guix.texi:21520 msgid "Then the extension becomes visible and you can initialise an empty geographic database in this way:" msgstr "Una vez hecho, la extensión estará visible y podrá inicializar una base de datos geográfica de este modo:" #. type: example -#: guix-git/doc/guix.texi:21165 +#: guix-git/doc/guix.texi:21527 #, no-wrap msgid "" "psql -U postgres\n" @@ -41322,24 +42035,24 @@ msgstr "" # FUZZY # TODO (MAAV): Revisar #. type: table -#: guix-git/doc/guix.texi:21170 +#: guix-git/doc/guix.texi:21532 msgid "There is no need to add this field for contrib extensions such as hstore or dblink as they are already loadable by postgresql. This field is only required to add extensions provided by other packages." msgstr "No es necesaria la adición de este campo para extensiones incluidas en la distribución oficial@footnote{NdT: ``contrib'' de ``contributed'' en inglés, ``contribuciones'' podría entenderse en castellano.} como hstore o dblink, puesto que ya pueden cargarse en postgresql. Este campo únicamente es necesario para extensiones proporcionadas por otros paquetes." #. type: deftp -#: guix-git/doc/guix.texi:21174 +#: guix-git/doc/guix.texi:21536 #, no-wrap msgid "{Data Type} postgresql-config-file" msgstr "{Tipo de datos} postgresql-config-file" #. type: deftp -#: guix-git/doc/guix.texi:21180 +#: guix-git/doc/guix.texi:21542 #, fuzzy msgid "Data type representing the PostgreSQL configuration file. As shown in the following example, this can be used to customize the configuration of PostgreSQL@. Note that you can use any G-expression or filename in place of this record, if you already have a configuration file you'd like to use for example." msgstr "Tipo de datos que representa el archivo de configuración de PostgreSQL. Como se muestra en el siguiente ejemplo, se puede usar para personalizar la configuración de PostgreSQL. Tenga en cuenta que puede usar cualquier expresión-G o nombre de archivo en lugar de este registro, en caso de que, por ejemplo, ya tenga un archivo que desee usar." #. type: lisp -#: guix-git/doc/guix.texi:21200 +#: guix-git/doc/guix.texi:21562 #, fuzzy, no-wrap msgid "" "(service postgresql-service-type\n" @@ -41381,79 +42094,79 @@ msgstr "" " (\"log_directory\" \"'/var/log/postgresql'\")))))))\n" #. type: item -#: guix-git/doc/guix.texi:21203 +#: guix-git/doc/guix.texi:21565 #, no-wrap msgid "@code{log-destination} (default: @code{\"syslog\"})" msgstr "@code{log-destination} (predeterminado: @code{\"syslog\"})" #. type: table -#: guix-git/doc/guix.texi:21206 +#: guix-git/doc/guix.texi:21568 #, fuzzy msgid "The logging method to use for PostgreSQL@. Multiple values are accepted, separated by commas." msgstr "El método de registro usado por PostgreSQL. Se admiten múltiples valores separados por comas." #. type: item -#: guix-git/doc/guix.texi:21207 +#: guix-git/doc/guix.texi:21569 #, no-wrap msgid "@code{hba-file} (default: @code{%default-postgres-hba})" msgstr "@code{hba-file} (predeterminado: @code{%default-postgres-hba})" #. type: table -#: guix-git/doc/guix.texi:21210 +#: guix-git/doc/guix.texi:21572 msgid "Filename or G-expression for the host-based authentication configuration." msgstr "Nombre de archivo o expresión-G para la configuración de identificación basada en nombres de máquina." #. type: item -#: guix-git/doc/guix.texi:21211 +#: guix-git/doc/guix.texi:21573 #, no-wrap msgid "@code{ident-file} (default: @code{%default-postgres-ident})" msgstr "@code{ident-file} (predeterminado: @code{%default-postgres-ident})" #. type: table -#: guix-git/doc/guix.texi:21213 +#: guix-git/doc/guix.texi:21575 msgid "Filename or G-expression for the user name mapping configuration." msgstr "Nombre de archivo o expresión-G para la configuración de asociación de nombres de usuaria." #. type: item -#: guix-git/doc/guix.texi:21214 +#: guix-git/doc/guix.texi:21576 #, fuzzy, no-wrap #| msgid "@code{data-directory} (default: @code{\"/var/lib/postgresql/data\"})" msgid "@code{socket-directory} (default: @code{\"/var/run/postgresql\"})" msgstr "@code{data-directory} (predeterminado: @code{\"/var/lib/postgresql/data\"})" #. type: table -#: guix-git/doc/guix.texi:21219 +#: guix-git/doc/guix.texi:21581 msgid "Specifies the directory of the Unix-domain socket(s) on which PostgreSQL is to listen for connections from client applications. If set to @code{\"\"} PostgreSQL does not listen on any Unix-domain sockets, in which case only TCP/IP sockets can be used to connect to the server." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21222 +#: guix-git/doc/guix.texi:21584 msgid "By default, the @code{#false} value means the PostgreSQL default value will be used, which is currently @samp{/tmp}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21227 +#: guix-git/doc/guix.texi:21589 msgid "List of additional keys and values to include in the PostgreSQL config file. Each entry in the list should be a list where the first element is the key, and the remaining elements are the values." msgstr "Claves y valores adicionales que se incluirán en el archivo de configuración de PostgreSQL. Cada entrada en la lista debe ser una lista cuyo primer elemento sea la clave y los elementos restantes son los valores." #. type: table -#: guix-git/doc/guix.texi:21233 +#: guix-git/doc/guix.texi:21595 msgid "The values can be numbers, booleans or strings and will be mapped to PostgreSQL parameters types @code{Boolean}, @code{String}, @code{Numeric}, @code{Numeric with Unit} and @code{Enumerated} described @uref{https://www.postgresql.org/docs/current/config-setting.html, here}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21237 +#: guix-git/doc/guix.texi:21599 #, fuzzy, no-wrap msgid "{Scheme Variable} postgresql-role-service-type" msgstr "{Variable Scheme} knot-resolver-service-type" #. type: deffn -#: guix-git/doc/guix.texi:21240 +#: guix-git/doc/guix.texi:21602 msgid "This service allows to create PostgreSQL roles and databases after PostgreSQL service start. Here is an example of its use." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21248 +#: guix-git/doc/guix.texi:21610 #, fuzzy, no-wrap msgid "" "(service postgresql-role-service-type\n" @@ -41471,13 +42184,13 @@ msgstr "" " (root \"/srv/http/www.example.com\"))))))\n" #. type: deffn -#: guix-git/doc/guix.texi:21252 +#: guix-git/doc/guix.texi:21614 #, fuzzy msgid "This service can be extended with extra roles, as in this example:" msgstr "Este servicio se puede extender con claves autorizadas adicionales, como en este ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:21258 +#: guix-git/doc/guix.texi:21620 #, fuzzy, no-wrap msgid "" "(service-extension postgresql-role-service-type\n" @@ -41490,182 +42203,182 @@ msgstr "" " ,(local-file \"carlos.pub\")))))\n" #. type: deftp -#: guix-git/doc/guix.texi:21261 +#: guix-git/doc/guix.texi:21623 #, fuzzy, no-wrap msgid "{Data Type} postgresql-role" msgstr "{Tipo de datos} postgresql-config-file" #. type: deftp -#: guix-git/doc/guix.texi:21267 +#: guix-git/doc/guix.texi:21629 msgid "PostgreSQL manages database access permissions using the concept of roles. A role can be thought of as either a database user, or a group of database users, depending on how the role is set up. Roles can own database objects (for example, tables) and can assign privileges on those objects to other roles to control who has access to which objects." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21271 +#: guix-git/doc/guix.texi:21633 #, fuzzy msgid "The role name." msgstr "El nombre de la máquina." #. type: item -#: guix-git/doc/guix.texi:21272 +#: guix-git/doc/guix.texi:21634 #, fuzzy, no-wrap msgid "@code{permissions} (default: @code{'(createdb login)})" msgstr "@code{options} (predeterminadas: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:21276 +#: guix-git/doc/guix.texi:21638 msgid "The role permissions list. Supported permissions are @code{bypassrls}, @code{createdb}, @code{createrole}, @code{login}, @code{replication} and @code{superuser}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21277 +#: guix-git/doc/guix.texi:21639 #, fuzzy, no-wrap msgid "@code{create-database?} (default: @code{#f})" msgstr "@code{detect-case?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:21279 +#: guix-git/doc/guix.texi:21641 msgid "Whether to create a database with the same name as the role." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21283 +#: guix-git/doc/guix.texi:21645 #, fuzzy, no-wrap msgid "{Data Type} postgresql-role-configuration" msgstr "{Tipo de datos} postgresql-configuration" #. type: deftp -#: guix-git/doc/guix.texi:21286 +#: guix-git/doc/guix.texi:21648 #, fuzzy msgid "Data type representing the configuration of @var{postgresql-role-service-type}." msgstr "Tipo de datos que representa la configuración para @code{mysql-service}." #. type: item -#: guix-git/doc/guix.texi:21288 +#: guix-git/doc/guix.texi:21650 #, fuzzy, no-wrap msgid "@code{host} (default: @code{\"/var/run/postgresql\"})" msgstr "@code{host} (predeterminado: @code{\"localhost\"})" #. type: table -#: guix-git/doc/guix.texi:21290 +#: guix-git/doc/guix.texi:21652 #, fuzzy msgid "The PostgreSQL host to connect to." msgstr "Número de puerto al que conectarse." #. type: item -#: guix-git/doc/guix.texi:21291 +#: guix-git/doc/guix.texi:21653 #, fuzzy, no-wrap msgid "@code{log} (default: @code{\"/var/log/postgresql_roles.log\"})" msgstr "@code{log-file} (predeterminado: @code{\"/var/log/cuirass.log\"})" #. type: table -#: guix-git/doc/guix.texi:21293 +#: guix-git/doc/guix.texi:21655 #, fuzzy msgid "File name of the log file." msgstr "El nombre de archivo del archivo de PID del daemon." #. type: item -#: guix-git/doc/guix.texi:21294 +#: guix-git/doc/guix.texi:21656 #, fuzzy, no-wrap msgid "@code{roles} (default: @code{'()})" msgstr "@code{modules} (predeterminados: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:21296 +#: guix-git/doc/guix.texi:21658 msgid "The initial PostgreSQL roles to create." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21299 +#: guix-git/doc/guix.texi:21661 #, no-wrap msgid "MariaDB/MySQL" msgstr "MariaDB/MySQL" #. type: defvr -#: guix-git/doc/guix.texi:21301 +#: guix-git/doc/guix.texi:21663 #, fuzzy, no-wrap msgid "{Scheme Variable} mysql-service-type" msgstr "{Variable Scheme} sysctl-service-type" #. type: defvr -#: guix-git/doc/guix.texi:21305 +#: guix-git/doc/guix.texi:21667 #, fuzzy msgid "This is the service type for a MySQL or MariaDB database server. Its value is a @code{mysql-configuration} object that specifies which package to use, as well as various settings for the @command{mysqld} daemon." msgstr "Este es el tipo del servicio de emulación transparente QEMU/binfmt. Su valor debe ser un objeto @code{qemu-binfmt-configuration}, que especifica el paquete QEMU usado así como las arquitecturas que se desean emular:" #. type: deftp -#: guix-git/doc/guix.texi:21307 +#: guix-git/doc/guix.texi:21669 #, no-wrap msgid "{Data Type} mysql-configuration" msgstr "{Tipo de datos} mysql-configuration" #. type: deftp -#: guix-git/doc/guix.texi:21309 +#: guix-git/doc/guix.texi:21671 #, fuzzy msgid "Data type representing the configuration of @var{mysql-service-type}." msgstr "Tipo de datos que representa la configuración para @code{mysql-service}." #. type: item -#: guix-git/doc/guix.texi:21311 +#: guix-git/doc/guix.texi:21673 #, no-wrap msgid "@code{mysql} (default: @var{mariadb})" msgstr "@code{mysql} (predeterminado: @var{mariadb})" #. type: table -#: guix-git/doc/guix.texi:21314 +#: guix-git/doc/guix.texi:21676 msgid "Package object of the MySQL database server, can be either @var{mariadb} or @var{mysql}." msgstr "Objeto de paquete del servidor de bases de datos MySQL, puede ser tanto @var{mariadb} como @var{mysql}." # FUZZY #. type: table -#: guix-git/doc/guix.texi:21317 +#: guix-git/doc/guix.texi:21679 msgid "For MySQL, a temporary root password will be displayed at activation time. For MariaDB, the root password is empty." msgstr "Para MySQL, se mostrará una contraseña de root temporal durante el tiempo de activación. Para MariaDB, la contraseña de root está vacía." #. type: item -#: guix-git/doc/guix.texi:21318 guix-git/doc/guix.texi:25138 +#: guix-git/doc/guix.texi:21680 guix-git/doc/guix.texi:25500 #, no-wrap msgid "@code{bind-address} (default: @code{\"127.0.0.1\"})" msgstr "@code{bind-address} (predeterminada: @code{\"127.0.0.1\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:21321 +#: guix-git/doc/guix.texi:21683 #, fuzzy msgid "The IP on which to listen for network connections. Use @code{\"0.0.0.0\"} to bind to all available network interfaces." msgstr "La dirección de red (y, por tanto, la interfaz de red) en la que se esperarán conexiones. Use @code{\"0.0.0.0\"} para aceptar conexiones por todas las interfaces de red." #. type: item -#: guix-git/doc/guix.texi:21322 +#: guix-git/doc/guix.texi:21684 #, no-wrap msgid "@code{port} (default: @code{3306})" msgstr "@code{port} (predeterminado: @code{3306})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:21324 +#: guix-git/doc/guix.texi:21686 msgid "TCP port on which the database server listens for incoming connections." msgstr "Puerto TCP en el que escucha el servidor de bases de datos a la espera de conexiones entrantes." #. type: item -#: guix-git/doc/guix.texi:21325 +#: guix-git/doc/guix.texi:21687 #, fuzzy, no-wrap msgid "@code{socket} (default: @code{\"/run/mysqld/mysqld.sock\"})" msgstr "@code{lock-file} (predeterminado: @code{\"/var/run/rsyncd/rsyncd.lock\"})" #. type: table -#: guix-git/doc/guix.texi:21327 +#: guix-git/doc/guix.texi:21689 msgid "Socket file to use for local (non-network) connections." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21330 +#: guix-git/doc/guix.texi:21692 #, fuzzy msgid "Additional settings for the @file{my.cnf} configuration file." msgstr "Fragmento de configuración añadido tal cual al archivo de configuración de BitlBee." #. type: item -#: guix-git/doc/guix.texi:21331 +#: guix-git/doc/guix.texi:21693 #, fuzzy, no-wrap #| msgid "@code{accepted-environment} (default: @code{'()})" msgid "@code{extra-environment} (default: @code{#~'()})" @@ -41674,236 +42387,236 @@ msgstr "@code{accepted-environment} (predeterminado: @code{'()})" # FUZZY # TODO (MAAV): Repensar. #. type: table -#: guix-git/doc/guix.texi:21333 +#: guix-git/doc/guix.texi:21695 #, fuzzy #| msgid "Set the specified environment variable to be passed to child processes." msgid "List of environment variables passed to the @command{mysqld} process." msgstr "Establece el valor de la variable de entorno especificada que se proporcionará a los procesos lanzados." #. type: item -#: guix-git/doc/guix.texi:21334 +#: guix-git/doc/guix.texi:21696 #, fuzzy, no-wrap msgid "@code{auto-upgrade?} (default: @code{#t})" msgstr "@code{authorize?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:21339 +#: guix-git/doc/guix.texi:21701 msgid "Whether to automatically run @command{mysql_upgrade} after starting the service. This is necessary to upgrade the @dfn{system schema} after ``major'' updates (such as switching from MariaDB 10.4 to 10.5), but can be disabled if you would rather do that manually." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21343 +#: guix-git/doc/guix.texi:21705 #, no-wrap msgid "Memcached" msgstr "Memcached" #. type: defvr -#: guix-git/doc/guix.texi:21345 +#: guix-git/doc/guix.texi:21707 #, no-wrap msgid "{Scheme Variable} memcached-service-type" msgstr "{Variable Scheme} memcached-service-type" # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:21349 +#: guix-git/doc/guix.texi:21711 msgid "This is the service type for the @uref{https://memcached.org/, Memcached} service, which provides a distributed in memory cache. The value for the service type is a @code{memcached-configuration} object." msgstr "Este es el tipo de servicio para el servicio @uref{https://memcached.org/, Memcached}, que proporciona caché distribuida en memoria. El valor para este tipo de servicio es un objeto @code{memcached-configuration}." #. type: lisp -#: guix-git/doc/guix.texi:21353 +#: guix-git/doc/guix.texi:21715 #, no-wrap msgid "(service memcached-service-type)\n" msgstr "(service memcached-service-type)\n" #. type: deftp -#: guix-git/doc/guix.texi:21355 +#: guix-git/doc/guix.texi:21717 #, no-wrap msgid "{Data Type} memcached-configuration" msgstr "{Tipo de datos} memcached-configuration" #. type: deftp -#: guix-git/doc/guix.texi:21357 +#: guix-git/doc/guix.texi:21719 msgid "Data type representing the configuration of memcached." msgstr "Tipo de datos que representa la configuración de memcached." #. type: item -#: guix-git/doc/guix.texi:21359 +#: guix-git/doc/guix.texi:21721 #, no-wrap msgid "@code{memcached} (default: @code{memcached})" msgstr "@code{memcached} (predeterminado: @code{memcached})" #. type: table -#: guix-git/doc/guix.texi:21361 +#: guix-git/doc/guix.texi:21723 msgid "The Memcached package to use." msgstr "El paquete de Memcached usado." #. type: item -#: guix-git/doc/guix.texi:21362 +#: guix-git/doc/guix.texi:21724 #, no-wrap msgid "@code{interfaces} (default: @code{'(\"0.0.0.0\")})" msgstr "@code{interfaces} (predeterminadas: @code{'(\"0.0.0.0\")})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:21364 +#: guix-git/doc/guix.texi:21726 msgid "Network interfaces on which to listen." msgstr "Interfaces de red por las que se esperan conexiones." #. type: item -#: guix-git/doc/guix.texi:21365 +#: guix-git/doc/guix.texi:21727 #, no-wrap msgid "@code{tcp-port} (default: @code{11211})" msgstr "@code{tcp-port} (predeterminado: @code{11211})" #. type: table -#: guix-git/doc/guix.texi:21367 +#: guix-git/doc/guix.texi:21729 #, fuzzy msgid "Port on which to accept connections." msgstr "Puerto en el que se deben aceptar conexiones," #. type: item -#: guix-git/doc/guix.texi:21368 +#: guix-git/doc/guix.texi:21730 #, no-wrap msgid "@code{udp-port} (default: @code{11211})" msgstr "@code{udp-port} (predeterminado: @code{11211})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:21371 +#: guix-git/doc/guix.texi:21733 msgid "Port on which to accept UDP connections on, a value of 0 will disable listening on a UDP socket." msgstr "Puerto en el que se deben aceptar conexiones UDP, el valor 0 desactiva la escucha en un socket UDP." #. type: item -#: guix-git/doc/guix.texi:21372 +#: guix-git/doc/guix.texi:21734 #, no-wrap msgid "@code{additional-options} (default: @code{'()})" msgstr "@code{additional-options} (predeterminadas: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:21374 +#: guix-git/doc/guix.texi:21736 msgid "Additional command line options to pass to @code{memcached}." msgstr "Opciones de línea de órdenes adicionales que se le proporcionarán a @code{memcached}." #. type: subsubheading -#: guix-git/doc/guix.texi:21377 +#: guix-git/doc/guix.texi:21739 #, no-wrap msgid "Redis" msgstr "Redis" #. type: defvr -#: guix-git/doc/guix.texi:21379 +#: guix-git/doc/guix.texi:21741 #, no-wrap msgid "{Scheme Variable} redis-service-type" msgstr "{Variable Scheme} redis-service-type" #. type: defvr -#: guix-git/doc/guix.texi:21382 +#: guix-git/doc/guix.texi:21744 msgid "This is the service type for the @uref{https://redis.io/, Redis} key/value store, whose value is a @code{redis-configuration} object." msgstr "Es el tipo de servicio para el almacén de clave/valor @uref{https://redis.io/, Redis}, cuyo valor es un objeto @code{redis-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:21384 +#: guix-git/doc/guix.texi:21746 #, no-wrap msgid "{Data Type} redis-configuration" msgstr "{Tipo de datos} redis-configuration" #. type: deftp -#: guix-git/doc/guix.texi:21386 +#: guix-git/doc/guix.texi:21748 msgid "Data type representing the configuration of redis." msgstr "Tipo de datos que representa la configuración de redis." #. type: item -#: guix-git/doc/guix.texi:21388 +#: guix-git/doc/guix.texi:21750 #, no-wrap msgid "@code{redis} (default: @code{redis})" msgstr "@code{redis} (predeterminado: @code{redis})" #. type: table -#: guix-git/doc/guix.texi:21390 +#: guix-git/doc/guix.texi:21752 msgid "The Redis package to use." msgstr "El paquete Redis usado." #. type: item -#: guix-git/doc/guix.texi:21391 +#: guix-git/doc/guix.texi:21753 #, no-wrap msgid "@code{bind} (default: @code{\"127.0.0.1\"})" msgstr "@code{bind} (predeterminada: @code{\"127.0.0.1\"})" #. type: table -#: guix-git/doc/guix.texi:21393 +#: guix-git/doc/guix.texi:21755 msgid "Network interface on which to listen." msgstr "La interfaz de red en la que se escucha." #. type: item -#: guix-git/doc/guix.texi:21394 +#: guix-git/doc/guix.texi:21756 #, no-wrap msgid "@code{port} (default: @code{6379})" msgstr "@code{port} (predeterminado: @code{6379})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:21397 +#: guix-git/doc/guix.texi:21759 msgid "Port on which to accept connections on, a value of 0 will disable listening on a TCP socket." msgstr "Puerto en el que se aceptan conexiones, el valor 0 desactiva la escucha en un socket TCP." #. type: item -#: guix-git/doc/guix.texi:21398 +#: guix-git/doc/guix.texi:21760 #, no-wrap msgid "@code{working-directory} (default: @code{\"/var/lib/redis\"})" msgstr "@code{working-directory} (predeterminado: @code{\"/var/lib/redis\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:21400 +#: guix-git/doc/guix.texi:21762 msgid "Directory in which to store the database and related files." msgstr "Directorio en el que se almacena los archivos de base de datos y relacionados." #. type: cindex -#: guix-git/doc/guix.texi:21406 +#: guix-git/doc/guix.texi:21768 #, no-wrap msgid "mail" msgstr "correo" #. type: cindex -#: guix-git/doc/guix.texi:21407 +#: guix-git/doc/guix.texi:21769 #, no-wrap msgid "email" msgstr "correo electrónico (email)" #. type: Plain text -#: guix-git/doc/guix.texi:21412 +#: guix-git/doc/guix.texi:21774 msgid "The @code{(gnu services mail)} module provides Guix service definitions for email services: IMAP, POP3, and LMTP servers, as well as mail transport agents (MTAs). Lots of acronyms! These services are detailed in the subsections below." msgstr "El módulo @code{(gnu services mail)} proporciona definiciones de servicios Guix para servicios de correo electrónico: servidores IMAP, POP3 y LMTP, así como agentes de transporte de correo (MTA). ¡Muchos acrónimos! Estos servicios se detallan en las subsecciones a continuación." #. type: subsubheading -#: guix-git/doc/guix.texi:21413 +#: guix-git/doc/guix.texi:21775 #, no-wrap msgid "Dovecot Service" msgstr "Servicio Dovecot" #. type: deffn -#: guix-git/doc/guix.texi:21415 +#: guix-git/doc/guix.texi:21777 #, no-wrap msgid "{Scheme Procedure} dovecot-service [#:config (dovecot-configuration)]" msgstr "{Procedimiento Scheme} dovecot-service [#:config (dovecot-configuration)]" #. type: deffn -#: guix-git/doc/guix.texi:21417 +#: guix-git/doc/guix.texi:21779 msgid "Return a service that runs the Dovecot IMAP/POP3/LMTP mail server." msgstr "Devuelve un servicio que ejecuta el servidor de correo IMAP/POP3/LMTP Dovecot." #. type: Plain text -#: guix-git/doc/guix.texi:21427 +#: guix-git/doc/guix.texi:21789 msgid "By default, Dovecot does not need much configuration; the default configuration object created by @code{(dovecot-configuration)} will suffice if your mail is delivered to @code{~/Maildir}. A self-signed certificate will be generated for TLS-protected connections, though Dovecot will also listen on cleartext ports by default. There are a number of options, though, which mail administrators might need to change, and as is the case with other services, Guix allows the system administrator to specify these parameters via a uniform Scheme interface." msgstr "Habitualmente Dovecot no necesita mucha configuración; el objeto de configuración predeterminado creado por @code{(dovecot-configuration)} es suficiente si su correo se entrega en @code{~/Maildir}. Un certificado auto-firmado se generará para las conexiones protegidas por TLS, aunque Dovecot también escuchará en puertos sin cifrar de manera predeterminada. Existe un amplio número de opciones no obstante, las cuales las administradoras del correo puede que deban cambiar, y como en el caso de otros servicios, Guix permite a la administradora del sistema la especificación de dichos parámetros a través de una interfaz Scheme uniforme." #. type: Plain text -#: guix-git/doc/guix.texi:21430 +#: guix-git/doc/guix.texi:21792 msgid "For example, to specify that mail is located at @code{maildir~/.mail}, one would instantiate the Dovecot service like this:" msgstr "Por ejemplo, para especificar que el correo se encuentra en @code{maildir:~/.correo}, se debe instanciar el servicio de Dovecot de esta manera:" #. type: lisp -#: guix-git/doc/guix.texi:21435 +#: guix-git/doc/guix.texi:21797 #, no-wrap msgid "" "(dovecot-service #:config\n" @@ -41916,567 +42629,567 @@ msgstr "" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:21443 +#: guix-git/doc/guix.texi:21805 msgid "The available configuration parameters follow. Each parameter definition is preceded by its type; for example, @samp{string-list foo} indicates that the @code{foo} parameter should be specified as a list of strings. There is also a way to specify the configuration as a string, if you have an old @code{dovecot.conf} file that you want to port over from some other system; see the end for more details." msgstr "A continuación se encuentran los parámetros de configuración disponibles. El tipo de cada parámetro antecede la definición del mismo; por ejemplo, @samp{string-list foo} indica que el parámetro @code{foo} debe especificarse como una lista de cadenas. También existe la posibilidad de especificar la configuración como una cadena, si tiene un archivo @code{dovecot.conf} antiguo que quiere trasladar a otro sistema; véase el final para más detalles." #. type: Plain text -#: guix-git/doc/guix.texi:21453 +#: guix-git/doc/guix.texi:21815 msgid "Available @code{dovecot-configuration} fields are:" msgstr "Los campos disponibles de @code{dovecot-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:21454 +#: guix-git/doc/guix.texi:21816 #, no-wrap msgid "{@code{dovecot-configuration} parameter} package dovecot" msgstr "{parámetro de @code{dovecot-configuration}} package dovecot" #. type: deftypevr -#: guix-git/doc/guix.texi:21456 guix-git/doc/guix.texi:22805 +#: guix-git/doc/guix.texi:21818 guix-git/doc/guix.texi:23167 msgid "The dovecot package." msgstr "El paquete dovecot." #. type: deftypevr -#: guix-git/doc/guix.texi:21458 +#: guix-git/doc/guix.texi:21820 #, no-wrap msgid "{@code{dovecot-configuration} parameter} comma-separated-string-list listen" msgstr "{parámetro de @code{dovecot-configuration}} lista-cadenas-separada-comas listen" #. type: deftypevr -#: guix-git/doc/guix.texi:21464 +#: guix-git/doc/guix.texi:21826 msgid "A list of IPs or hosts where to listen for connections. @samp{*} listens on all IPv4 interfaces, @samp{::} listens on all IPv6 interfaces. If you want to specify non-default ports or anything more complex, customize the address and port fields of the @samp{inet-listener} of the specific services you are interested in." msgstr "Una lista de direcciones IP o nombres de máquina donde se escucharán conexiones. @samp{*} escucha en todas las interfaces IPv4, @samp{::} escucha en todas las interfaces IPv6. Si desea especificar puertos distintos a los predefinidos o algo más complejo, personalice los campos de dirección y puerto del @samp{inet-listener} de los servicios específicos en los que tenga interés." #. type: deftypevr -#: guix-git/doc/guix.texi:21466 +#: guix-git/doc/guix.texi:21828 #, no-wrap msgid "{@code{dovecot-configuration} parameter} protocol-configuration-list protocols" msgstr "{parámetro de @code{dovecot-configuration}} lista-protocol-configuration protocols" #. type: deftypevr -#: guix-git/doc/guix.texi:21469 +#: guix-git/doc/guix.texi:21831 msgid "List of protocols we want to serve. Available protocols include @samp{imap}, @samp{pop3}, and @samp{lmtp}." msgstr "Lista de protocolos que se desea ofrecer. Los protocolos disponibles incluyen @samp{imap}, @samp{pop3} y @samp{lmtp}." #. type: deftypevr -#: guix-git/doc/guix.texi:21471 +#: guix-git/doc/guix.texi:21833 msgid "Available @code{protocol-configuration} fields are:" msgstr "Los campos disponibles de @code{protocol-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:21472 +#: guix-git/doc/guix.texi:21834 #, no-wrap msgid "{@code{protocol-configuration} parameter} string name" msgstr "{parámetro de @code{protocol-configuration}} string name" #. type: deftypevr -#: guix-git/doc/guix.texi:21474 +#: guix-git/doc/guix.texi:21836 msgid "The name of the protocol." msgstr "El nombre del protocolo." #. type: deftypevr -#: guix-git/doc/guix.texi:21476 +#: guix-git/doc/guix.texi:21838 #, no-wrap msgid "{@code{protocol-configuration} parameter} string auth-socket-path" msgstr "{parámetro de @code{protocol-configuration}} string auth-socket-path" #. type: deftypevr -#: guix-git/doc/guix.texi:21480 +#: guix-git/doc/guix.texi:21842 msgid "UNIX socket path to the master authentication server to find users. This is used by imap (for shared users) and lda. It defaults to @samp{\"/var/run/dovecot/auth-userdb\"}." msgstr "Ruta del socket de UNIX del servidor de identificación maestro para la búsqueda de usuarias. Se usa por parte de imap (para usuarias compartidas) y lda. Su valor predeterminado es @samp{\"/var/run/dovecot/auth-userdb\"}." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:21482 +#: guix-git/doc/guix.texi:21844 #, fuzzy, no-wrap #| msgid "{@code{dovecot-configuration} parameter} boolean mmap-disable?" msgid "{@code{protocol-configuration} parameter} boolean imap-metadata?" msgstr "{parámetro de @code{dovecot-configuration}} boolean mmap-disable?" #. type: deftypevr -#: guix-git/doc/guix.texi:21487 +#: guix-git/doc/guix.texi:21849 msgid "Whether to enable the @code{IMAP METADATA} extension as defined in @uref{https://tools.ietf.org/html/rfc5464,RFC@tie{}5464}, which provides a means for clients to set and retrieve per-mailbox, per-user metadata and annotations over IMAP." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21490 +#: guix-git/doc/guix.texi:21852 msgid "If this is @samp{#t}, you must also specify a dictionary @i{via} the @code{mail-attribute-dict} setting." msgstr "" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:21495 +#: guix-git/doc/guix.texi:21857 #, fuzzy, no-wrap #| msgid "{@code{protocol-configuration} parameter} space-separated-string-list mail-plugins" msgid "{@code{protocol-configuration} parameter} space-separated-string-list managesieve-notify-capabilities" msgstr "{parámetro de @code{protocol-configuration}} list-cadenas-separada-espacios mail-plugins" #. type: deftypevr -#: guix-git/doc/guix.texi:21500 +#: guix-git/doc/guix.texi:21862 msgid "Which NOTIFY capabilities to report to clients that first connect to the ManageSieve service, before authentication. These may differ from the capabilities offered to authenticated users. If this field is left empty, report what the Sieve interpreter supports by default." msgstr "" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:21504 +#: guix-git/doc/guix.texi:21866 #, fuzzy, no-wrap #| msgid "{@code{protocol-configuration} parameter} space-separated-string-list mail-plugins" msgid "{@code{protocol-configuration} parameter} space-separated-string-list managesieve-sieve-capability" msgstr "{parámetro de @code{protocol-configuration}} list-cadenas-separada-espacios mail-plugins" #. type: deftypevr -#: guix-git/doc/guix.texi:21509 +#: guix-git/doc/guix.texi:21871 msgid "Which SIEVE capabilities to report to clients that first connect to the ManageSieve service, before authentication. These may differ from the capabilities offered to authenticated users. If this field is left empty, report what the Sieve interpreter supports by default." msgstr "" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:21514 +#: guix-git/doc/guix.texi:21876 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list mail-plugins" msgstr "{parámetro de @code{protocol-configuration}} list-cadenas-separada-espacios mail-plugins" #. type: deftypevr -#: guix-git/doc/guix.texi:21516 +#: guix-git/doc/guix.texi:21878 msgid "Space separated list of plugins to load." msgstr "Lista separada por espacios de módulos a cargar." #. type: deftypevr -#: guix-git/doc/guix.texi:21518 +#: guix-git/doc/guix.texi:21880 #, no-wrap msgid "{@code{protocol-configuration} parameter} non-negative-integer mail-max-userip-connections" msgstr "{parámetro de @code{protocol-configuration}} entero-no-negativo mail-max-userip-connections" #. type: deftypevr -#: guix-git/doc/guix.texi:21522 +#: guix-git/doc/guix.texi:21884 msgid "Maximum number of IMAP connections allowed for a user from each IP address. NOTE: The username is compared case-sensitively. Defaults to @samp{10}." msgstr "" "Número máximo de conexiones IMAP permitido para una usuaria desde cada dirección IP. ATENCIÓN: El nombre de usuaria es sensible a las mayúsculas.\n" "Su valor predeterminado es @samp{10}." #. type: deftypevr -#: guix-git/doc/guix.texi:21526 +#: guix-git/doc/guix.texi:21888 #, no-wrap msgid "{@code{dovecot-configuration} parameter} service-configuration-list services" msgstr "{parámetro de @code{dovecot-configuration}} lista-service-configuration services" #. type: deftypevr -#: guix-git/doc/guix.texi:21530 +#: guix-git/doc/guix.texi:21892 msgid "List of services to enable. Available services include @samp{imap}, @samp{imap-login}, @samp{pop3}, @samp{pop3-login}, @samp{auth}, and @samp{lmtp}." msgstr "Lista de servicios activados. Los servicios disponibles incluyen @samp{imap}, @samp{imap-login}, @samp{pop3}, @samp{pop3-login}, @samp{auth} y @samp{lmtp}." #. type: deftypevr -#: guix-git/doc/guix.texi:21532 +#: guix-git/doc/guix.texi:21894 msgid "Available @code{service-configuration} fields are:" msgstr "Los campos disponibles de @code{service-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:21533 +#: guix-git/doc/guix.texi:21895 #, no-wrap msgid "{@code{service-configuration} parameter} string kind" msgstr "{parámetro de @code{service-configuration}} string kind" #. type: deftypevr -#: guix-git/doc/guix.texi:21538 +#: guix-git/doc/guix.texi:21900 msgid "The service kind. Valid values include @code{director}, @code{imap-login}, @code{pop3-login}, @code{lmtp}, @code{imap}, @code{pop3}, @code{auth}, @code{auth-worker}, @code{dict}, @code{tcpwrap}, @code{quota-warning}, or anything else." msgstr "El tipo del servicio. Entre los valores aceptados se incluye @code{director}, @code{imap-login}, @code{pop3-login}, @code{lmtp}, @code{imap}, @code{pop3}, @code{auth}, @code{auth-worker}, @code{dict}, @code{tcpwrap}, @code{quota-warning} o cualquier otro." #. type: deftypevr -#: guix-git/doc/guix.texi:21540 +#: guix-git/doc/guix.texi:21902 #, no-wrap msgid "{@code{service-configuration} parameter} listener-configuration-list listeners" msgstr "{parámetro de @code{service-configuration}} lista-listener-configuration listeners" #. type: deftypevr -#: guix-git/doc/guix.texi:21545 +#: guix-git/doc/guix.texi:21907 msgid "Listeners for the service. A listener is either a @code{unix-listener-configuration}, a @code{fifo-listener-configuration}, or an @code{inet-listener-configuration}. Defaults to @samp{()}." msgstr "" "Procesos de escucha para el servicio. Un proceso de escucha es un objeto @code{unix-listener-configuration}, un objeto @code{fifo-listener-configuration} o un objeto @code{inet-listener-configuration}.\n" "Su valor predeterminado es @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:21547 +#: guix-git/doc/guix.texi:21909 msgid "Available @code{unix-listener-configuration} fields are:" msgstr "Los campos disponibles de @code{unix-listener-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:21548 +#: guix-git/doc/guix.texi:21910 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string path" msgstr "{parámetro de @code{unix-listener-configuration}} string path" #. type: deftypevr -#: guix-git/doc/guix.texi:21551 guix-git/doc/guix.texi:21574 +#: guix-git/doc/guix.texi:21913 guix-git/doc/guix.texi:21936 msgid "Path to the file, relative to @code{base-dir} field. This is also used as the section name." msgstr "Ruta al archivo, relativa al campo @code{base-dir}. También se usa como nombre de la sección." #. type: deftypevr -#: guix-git/doc/guix.texi:21553 +#: guix-git/doc/guix.texi:21915 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string mode" msgstr "{parámetro de @code{unix-listener-configuration}} string mode" #. type: deftypevr -#: guix-git/doc/guix.texi:21556 guix-git/doc/guix.texi:21579 +#: guix-git/doc/guix.texi:21918 guix-git/doc/guix.texi:21941 msgid "The access mode for the socket. Defaults to @samp{\"0600\"}." msgstr "" "Modo de acceso del socket.\n" "Su valor predeterminado es @samp{\"0600\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21558 +#: guix-git/doc/guix.texi:21920 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string user" msgstr "{parámetro de @code{unix-listener-configuration}} string user" #. type: deftypevr -#: guix-git/doc/guix.texi:21561 guix-git/doc/guix.texi:21584 +#: guix-git/doc/guix.texi:21923 guix-git/doc/guix.texi:21946 msgid "The user to own the socket. Defaults to @samp{\"\"}." msgstr "" "Usuaria que posee el socket.\n" "Su valor predeterminado es @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21563 +#: guix-git/doc/guix.texi:21925 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string group" msgstr "{parámetro de @code{unix-listener-configuration}} string group" #. type: deftypevr -#: guix-git/doc/guix.texi:21566 guix-git/doc/guix.texi:21589 +#: guix-git/doc/guix.texi:21928 guix-git/doc/guix.texi:21951 msgid "The group to own the socket. Defaults to @samp{\"\"}." msgstr "" "Grupo que posee el socket.\n" "Su valor predeterminado es @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21570 +#: guix-git/doc/guix.texi:21932 msgid "Available @code{fifo-listener-configuration} fields are:" msgstr "Los campos disponibles de @code{fifo-listener-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:21571 +#: guix-git/doc/guix.texi:21933 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string path" msgstr "{parámetro de @code{fifo-listener-configuration}} string path" #. type: deftypevr -#: guix-git/doc/guix.texi:21576 +#: guix-git/doc/guix.texi:21938 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string mode" msgstr "{parámetro de @code{fifo-listener-configuration}} string mode" #. type: deftypevr -#: guix-git/doc/guix.texi:21581 +#: guix-git/doc/guix.texi:21943 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string user" msgstr "{parámetro de @code{fifo-listener-configuration}} string user" #. type: deftypevr -#: guix-git/doc/guix.texi:21586 +#: guix-git/doc/guix.texi:21948 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string group" msgstr "{parámetro de @code{fifo-listener-configuration}} string group" #. type: deftypevr -#: guix-git/doc/guix.texi:21593 +#: guix-git/doc/guix.texi:21955 msgid "Available @code{inet-listener-configuration} fields are:" msgstr "Los campos disponibles de @code{inet-listener-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:21594 +#: guix-git/doc/guix.texi:21956 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} string protocol" msgstr "{parámetro de @code{inet-listener-configuration}} string protocol" #. type: deftypevr -#: guix-git/doc/guix.texi:21596 +#: guix-git/doc/guix.texi:21958 msgid "The protocol to listen for." msgstr "El protocolo con el que se esperan las conexiones." #. type: deftypevr -#: guix-git/doc/guix.texi:21598 +#: guix-git/doc/guix.texi:21960 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} string address" msgstr "{parámetro de @code{inet-listener-configuration}} string address" #. type: deftypevr -#: guix-git/doc/guix.texi:21601 +#: guix-git/doc/guix.texi:21963 msgid "The address on which to listen, or empty for all addresses. Defaults to @samp{\"\"}." msgstr "" "La dirección en la que se escuchará, o vacío para escuchar en todas las direcciones.\n" "Su valor predeterminado es @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21603 +#: guix-git/doc/guix.texi:21965 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} non-negative-integer port" msgstr "{parámetro de @code{inet-listener-configuration}} entero-no-negativo port" #. type: deftypevr -#: guix-git/doc/guix.texi:21605 +#: guix-git/doc/guix.texi:21967 msgid "The port on which to listen." msgstr "El puerto en el que esperarán conexiones." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:21607 +#: guix-git/doc/guix.texi:21969 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} boolean ssl?" msgstr "{parámetro de @code{inet-listener-configuration}} boolean ssl?" #. type: deftypevr -#: guix-git/doc/guix.texi:21611 +#: guix-git/doc/guix.texi:21973 msgid "Whether to use SSL for this service; @samp{yes}, @samp{no}, or @samp{required}. Defaults to @samp{#t}." msgstr "" "Si se usará SSL para este servicio; @samp{yes} (sí), @samp{no} o @samp{required} (necesario).\n" "Su valor predeterminado es @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:21615 +#: guix-git/doc/guix.texi:21977 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer client-limit" msgstr "{parámetro de @code{service-configuration}} entero-no-negativo client-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:21620 +#: guix-git/doc/guix.texi:21982 msgid "Maximum number of simultaneous client connections per process. Once this number of connections is received, the next incoming connection will prompt Dovecot to spawn another process. If set to 0, @code{default-client-limit} is used instead." msgstr "Número máximo de conexiones simultáneas por cliente por proceso. Una vez se reciba este número de conexiones, la siguiente conexión entrante solicitará a Dovecot el inicio de un nuevo proceso. Si se proporciona el valor 0, se usa @code{default-client-limit}." #. type: deftypevr -#: guix-git/doc/guix.texi:21625 +#: guix-git/doc/guix.texi:21987 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer service-count" msgstr "{parámetro de @code{service-configuration}} entero-no-negativo service-count" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:21630 +#: guix-git/doc/guix.texi:21992 msgid "Number of connections to handle before starting a new process. Typically the only useful values are 0 (unlimited) or 1. 1 is more secure, but 0 is faster. . Defaults to @samp{1}." msgstr "" "Número de conexiones a manejar antes de iniciar un nuevo proceso. Habitualmente los únicos valores útiles son 0 (ilimitadas) o 1. 1 es más seguro, pero 0 es más rápido. .\n" "Su valor predeterminado es @samp{1}." #. type: deftypevr -#: guix-git/doc/guix.texi:21633 +#: guix-git/doc/guix.texi:21995 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer process-limit" msgstr "{parámetro de @code{service-configuration}} entero-no-negativo process-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:21636 +#: guix-git/doc/guix.texi:21998 msgid "Maximum number of processes that can exist for this service. If set to 0, @code{default-process-limit} is used instead." msgstr "Número máximo de procesos que pueden existir para este servicio. Si se proporciona el valor 0, se usa @code{default-process-limit}." #. type: deftypevr -#: guix-git/doc/guix.texi:21641 +#: guix-git/doc/guix.texi:22003 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer process-min-avail" msgstr "{parámetro de @code{service-configuration}} entero-no-negativo process-min-avail" #. type: deftypevr -#: guix-git/doc/guix.texi:21644 +#: guix-git/doc/guix.texi:22006 msgid "Number of processes to always keep waiting for more connections. Defaults to @samp{0}." msgstr "Número de procesos que siempre permanecerán a la espera de más conexiones. Su valor predeterminado es @samp{0}." #. type: deftypevr -#: guix-git/doc/guix.texi:21646 +#: guix-git/doc/guix.texi:22008 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer vsz-limit" msgstr "{parámetro de @code{service-configuration}} entero-no-negativo vsz-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:21650 +#: guix-git/doc/guix.texi:22012 msgid "If you set @samp{service-count 0}, you probably need to grow this. Defaults to @samp{256000000}." msgstr "Si proporciona @samp{service-count 0}, probablemente necesitará incrementar este valor. Su valor predeterminado es @samp{256000000}." #. type: deftypevr -#: guix-git/doc/guix.texi:21654 +#: guix-git/doc/guix.texi:22016 #, no-wrap msgid "{@code{dovecot-configuration} parameter} dict-configuration dict" msgstr "{parámetro de @code{dovecot-configuration}} dict-configuration dict" #. type: deftypevr -#: guix-git/doc/guix.texi:21657 +#: guix-git/doc/guix.texi:22019 msgid "Dict configuration, as created by the @code{dict-configuration} constructor." msgstr "Configuración de Dict, como la creada por el constructor @code{dict-configuration}." #. type: deftypevr -#: guix-git/doc/guix.texi:21659 +#: guix-git/doc/guix.texi:22021 msgid "Available @code{dict-configuration} fields are:" msgstr "Los campos disponibles de @code{dict-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:21660 +#: guix-git/doc/guix.texi:22022 #, no-wrap msgid "{@code{dict-configuration} parameter} free-form-fields entries" msgstr "{parámetro de @code{dict-configuration}} campos-libres entries" #. type: deftypevr -#: guix-git/doc/guix.texi:21663 +#: guix-git/doc/guix.texi:22025 msgid "A list of key-value pairs that this dict should hold. Defaults to @samp{()}." msgstr "" "Una lista de pares clave-valor que este diccionario debe incorporar.\n" "Su valor predeterminado es @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:21667 +#: guix-git/doc/guix.texi:22029 #, no-wrap msgid "{@code{dovecot-configuration} parameter} passdb-configuration-list passdbs" msgstr "{parámetro de @code{dovecot-configuration}} lista-passdb-configuration passdbs" #. type: deftypevr -#: guix-git/doc/guix.texi:21670 +#: guix-git/doc/guix.texi:22032 msgid "A list of passdb configurations, each one created by the @code{passdb-configuration} constructor." msgstr "Una lista de configuraciones de passdb, cada una creada por el constructor @code{passdb-configuration}." #. type: deftypevr -#: guix-git/doc/guix.texi:21672 +#: guix-git/doc/guix.texi:22034 msgid "Available @code{passdb-configuration} fields are:" msgstr "Los campos disponibles de @code{passdb-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:21673 +#: guix-git/doc/guix.texi:22035 #, no-wrap msgid "{@code{passdb-configuration} parameter} string driver" msgstr "{parámetro de @code{passdb-configuration}} string driver" #. type: deftypevr -#: guix-git/doc/guix.texi:21678 +#: guix-git/doc/guix.texi:22040 msgid "The driver that the passdb should use. Valid values include @samp{pam}, @samp{passwd}, @samp{shadow}, @samp{bsdauth}, and @samp{static}. Defaults to @samp{\"pam\"}." msgstr "" "El controlador que passdb debe usar. Entre los valores aceptados se incluye @samp{pam}, @samp{passwd}, @samp{shadow}, @samp{bsdauth} y @samp{static}.\n" "Su valor predeterminado es @samp{\"pam\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21680 +#: guix-git/doc/guix.texi:22042 #, no-wrap msgid "{@code{passdb-configuration} parameter} space-separated-string-list args" msgstr "{parámetro de @code{passdb-configuration}} lista-cadenas-separada-espacios args" #. type: deftypevr -#: guix-git/doc/guix.texi:21683 +#: guix-git/doc/guix.texi:22045 msgid "Space separated list of arguments to the passdb driver. Defaults to @samp{\"\"}." msgstr "" "Lista de parámetros separados por espacios para proporcionar al controlador passdb.\n" "Su valor predeterminado es @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21687 +#: guix-git/doc/guix.texi:22049 #, no-wrap msgid "{@code{dovecot-configuration} parameter} userdb-configuration-list userdbs" msgstr "{parámetro de @code{dovecot-configuration}} lista-userdb-configuration userdbs" #. type: deftypevr -#: guix-git/doc/guix.texi:21690 +#: guix-git/doc/guix.texi:22052 msgid "List of userdb configurations, each one created by the @code{userdb-configuration} constructor." msgstr "Lista de configuraciones userdb, cada una creada por el constructor @code{userdb-configuration}." #. type: deftypevr -#: guix-git/doc/guix.texi:21692 +#: guix-git/doc/guix.texi:22054 msgid "Available @code{userdb-configuration} fields are:" msgstr "Los campos disponibles de @code{userdb-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:21693 +#: guix-git/doc/guix.texi:22055 #, no-wrap msgid "{@code{userdb-configuration} parameter} string driver" msgstr "{parámetro de @code{userdb-configuration}} string driver" #. type: deftypevr -#: guix-git/doc/guix.texi:21697 +#: guix-git/doc/guix.texi:22059 msgid "The driver that the userdb should use. Valid values include @samp{passwd} and @samp{static}. Defaults to @samp{\"passwd\"}." msgstr "" "El controlador que userdb debe usar. Entre los valores aceptados se incluye @samp{passwd} y @samp{static}.\n" "Su valor predeterminado es @samp{\"passwd\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21699 +#: guix-git/doc/guix.texi:22061 #, no-wrap msgid "{@code{userdb-configuration} parameter} space-separated-string-list args" msgstr "{parámetro de @code{userdb-configuration}} lista-cadenas-separada-espacios args" #. type: deftypevr -#: guix-git/doc/guix.texi:21702 +#: guix-git/doc/guix.texi:22064 msgid "Space separated list of arguments to the userdb driver. Defaults to @samp{\"\"}." msgstr "" "Lista separada por espacios de parámetros usados para el controlador userdb.\n" "Su valor predeterminado es @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21704 +#: guix-git/doc/guix.texi:22066 #, no-wrap msgid "{@code{userdb-configuration} parameter} free-form-args override-fields" msgstr "{parámetro de @code{userdb-configuration}} parámetros-libres override-fields" #. type: deftypevr -#: guix-git/doc/guix.texi:21707 +#: guix-git/doc/guix.texi:22069 msgid "Override fields from passwd. Defaults to @samp{()}." msgstr "" "Sustituye los valores de campos de passwd.\n" "Su valor predeterminado es @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:21711 +#: guix-git/doc/guix.texi:22073 #, no-wrap msgid "{@code{dovecot-configuration} parameter} plugin-configuration plugin-configuration" msgstr "{parámetro de @code{dovecot-configuration}} plugin-configuration plugin-configuration" #. type: deftypevr -#: guix-git/doc/guix.texi:21714 +#: guix-git/doc/guix.texi:22076 msgid "Plug-in configuration, created by the @code{plugin-configuration} constructor." msgstr "Configuración del módulo, creada por el constructor @code{plugin-configuration}." #. type: deftypevr -#: guix-git/doc/guix.texi:21716 +#: guix-git/doc/guix.texi:22078 #, no-wrap msgid "{@code{dovecot-configuration} parameter} list-of-namespace-configuration namespaces" msgstr "{parámetro de @code{dovecot-configuration}} lista-namespace-configuration namespaces" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:21719 +#: guix-git/doc/guix.texi:22081 msgid "List of namespaces. Each item in the list is created by the @code{namespace-configuration} constructor." msgstr "Lista de espacios de nombres. Cada elemento de la lista debe crearse con el constructor @code{namespace-configuration}." #. type: deftypevr -#: guix-git/doc/guix.texi:21721 +#: guix-git/doc/guix.texi:22083 msgid "Available @code{namespace-configuration} fields are:" msgstr "Los campos disponibles de @code{namespace-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:21722 +#: guix-git/doc/guix.texi:22084 #, no-wrap msgid "{@code{namespace-configuration} parameter} string name" msgstr "{parámetro de @code{namespace-configuration}} string name" #. type: deftypevr -#: guix-git/doc/guix.texi:21724 +#: guix-git/doc/guix.texi:22086 msgid "Name for this namespace." msgstr "Nombre para este espacio de nombres." #. type: deftypevr -#: guix-git/doc/guix.texi:21726 +#: guix-git/doc/guix.texi:22088 #, no-wrap msgid "{@code{namespace-configuration} parameter} string type" msgstr "{parámetro de @code{namespace-configuration}} string type" #. type: deftypevr -#: guix-git/doc/guix.texi:21729 +#: guix-git/doc/guix.texi:22091 msgid "Namespace type: @samp{private}, @samp{shared} or @samp{public}. Defaults to @samp{\"private\"}." msgstr "" "Tipo del espacio de nombres: @samp{private}, @samp{shared} o @samp{public}.\n" "Su valor predeterminado es @samp{\"private\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21731 +#: guix-git/doc/guix.texi:22093 #, no-wrap msgid "{@code{namespace-configuration} parameter} string separator" msgstr "{parámetro de @code{namespace-configuration}} string separator" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:21737 +#: guix-git/doc/guix.texi:22099 #, fuzzy msgid "Hierarchy separator to use. You should use the same separator for all namespaces or some clients get confused. @samp{/} is usually a good one. The default however depends on the underlying mail storage format. Defaults to @samp{\"\"}." msgstr "" @@ -42484,13 +43197,13 @@ msgstr "" "Su valor predeterminado es @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21739 +#: guix-git/doc/guix.texi:22101 #, no-wrap msgid "{@code{namespace-configuration} parameter} string prefix" msgstr "{parámetro de @code{namespace-configuration}} string prefix" #. type: deftypevr -#: guix-git/doc/guix.texi:21743 +#: guix-git/doc/guix.texi:22105 #, fuzzy msgid "Prefix required to access this namespace. This needs to be different for all namespaces. For example @samp{Public/}. Defaults to @samp{\"\"}." msgstr "" @@ -42498,14 +43211,14 @@ msgstr "" "Su valor predeterminado es @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21745 +#: guix-git/doc/guix.texi:22107 #, no-wrap msgid "{@code{namespace-configuration} parameter} string location" msgstr "{parámetro de @code{namespace-configuration}} string location" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:21749 +#: guix-git/doc/guix.texi:22111 msgid "Physical location of the mailbox. This is in the same format as mail_location, which is also the default for it. Defaults to @samp{\"\"}." msgstr "" "Localización física de la bandeja de correo. En el mismo formato que la localización del correo, que también es su valor predeterminado.\n" @@ -42513,14 +43226,14 @@ msgstr "" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:21751 +#: guix-git/doc/guix.texi:22113 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean inbox?" msgstr "{parámetro de @code{namespace-configuration}} boolean inbox?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:21755 +#: guix-git/doc/guix.texi:22117 msgid "There can be only one INBOX, and this setting defines which namespace has it. Defaults to @samp{#f}." msgstr "" "Únicamente puede existir una bandeja de entrada (INBOX), y esta configuración define qué espacio de nombres la posee.\n" @@ -42528,13 +43241,13 @@ msgstr "" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:21757 +#: guix-git/doc/guix.texi:22119 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean hidden?" msgstr "{parámetro de @code{namespace-configuration}} boolean hidden?" #. type: deftypevr -#: guix-git/doc/guix.texi:21765 +#: guix-git/doc/guix.texi:22127 #, fuzzy msgid "If namespace is hidden, it's not advertised to clients via NAMESPACE extension. You'll most likely also want to set @samp{list? #f}. This is mostly useful when converting from another server with different namespaces which you want to deprecate but still keep working. For example you can create hidden namespaces with prefixes @samp{~/mail/}, @samp{~%u/mail/} and @samp{mail/}. Defaults to @samp{#f}." msgstr "" @@ -42543,13 +43256,13 @@ msgstr "" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:21767 +#: guix-git/doc/guix.texi:22129 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean list?" msgstr "{parámetro de @code{namespace-configuration}} boolean list?" #. type: deftypevr -#: guix-git/doc/guix.texi:21773 +#: guix-git/doc/guix.texi:22135 #, fuzzy msgid "Show the mailboxes under this namespace with the LIST command. This makes the namespace visible for clients that do not support the NAMESPACE extension. The special @code{children} value lists child mailboxes, but hides the namespace prefix. Defaults to @samp{#t}." msgstr "" @@ -42558,122 +43271,122 @@ msgstr "" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:21775 +#: guix-git/doc/guix.texi:22137 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean subscriptions?" msgstr "{parámetro de @code{namespace-configuration}} boolean subscriptions?" #. type: deftypevr -#: guix-git/doc/guix.texi:21780 +#: guix-git/doc/guix.texi:22142 msgid "Namespace handles its own subscriptions. If set to @code{#f}, the parent namespace handles them. The empty prefix should always have this as @code{#t}). Defaults to @samp{#t}." msgstr "" "El espacio de nombres maneja sus propias subscripciones. Si es @code{#f}, el espacio de nombres superior las maneja. El prefijo vacío siempre debe tener este valor como @code{#t}.\n" "Su valor predeterminado es @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:21782 +#: guix-git/doc/guix.texi:22144 #, no-wrap msgid "{@code{namespace-configuration} parameter} mailbox-configuration-list mailboxes" msgstr "{parámetro de @code{namespace-configuration}} lista-mailbox-configuration mailboxes" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:21785 +#: guix-git/doc/guix.texi:22147 msgid "List of predefined mailboxes in this namespace. Defaults to @samp{()}." msgstr "" "Lista de bandejas de correo predefinidas en este espacio de nombres.\n" "Su valor predeterminado es @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:21787 +#: guix-git/doc/guix.texi:22149 msgid "Available @code{mailbox-configuration} fields are:" msgstr "Los campos disponibles de @code{mailbox-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:21788 +#: guix-git/doc/guix.texi:22150 #, no-wrap msgid "{@code{mailbox-configuration} parameter} string name" msgstr "{parámetro de @code{mailbox-configuration}} string name" #. type: deftypevr -#: guix-git/doc/guix.texi:21790 +#: guix-git/doc/guix.texi:22152 msgid "Name for this mailbox." msgstr "Nombre de esta bandeja de correo." #. type: deftypevr -#: guix-git/doc/guix.texi:21792 +#: guix-git/doc/guix.texi:22154 #, no-wrap msgid "{@code{mailbox-configuration} parameter} string auto" msgstr "{parámetro de @code{mailbox-configuration}} string auto" #. type: deftypevr -#: guix-git/doc/guix.texi:21796 +#: guix-git/doc/guix.texi:22158 msgid "@samp{create} will automatically create this mailbox. @samp{subscribe} will both create and subscribe to the mailbox. Defaults to @samp{\"no\"}." msgstr "" "Con @samp{create} se crea de forma automática esta bandeja de correo. Con @samp{subscribe} se crea y se suscribe a la bandeja de correo.\n" "Su valor predeterminado es @samp{\"no\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21798 +#: guix-git/doc/guix.texi:22160 #, no-wrap msgid "{@code{mailbox-configuration} parameter} space-separated-string-list special-use" msgstr "{parámetro de @code{mailbox-configuration}} lista-cadenas-separada-espacios special-use" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:21803 +#: guix-git/doc/guix.texi:22165 msgid "List of IMAP @code{SPECIAL-USE} attributes as specified by RFC 6154. Valid values are @code{\\All}, @code{\\Archive}, @code{\\Drafts}, @code{\\Flagged}, @code{\\Junk}, @code{\\Sent}, and @code{\\Trash}. Defaults to @samp{()}." msgstr "" "Lista de atributos @code{SPECIAL-USE} de IMAP como se especifican en el RFC 6154. Entre los valores aceptados se incluye @code{\\All}, @code{\\Archive}, @code{\\Drafts}, @code{\\Flagged}, @code{\\Junk}, @code{\\Sent} y @code{\\Trash}.\n" "Su valor predeterminado es @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:21809 +#: guix-git/doc/guix.texi:22171 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name base-dir" msgstr "{parámetro de @code{dovecot-configuration}} nombre-archivo base-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:21812 +#: guix-git/doc/guix.texi:22174 msgid "Base directory where to store runtime data. Defaults to @samp{\"/var/run/dovecot/\"}." msgstr "" "Directorio base donde se almacenan los datos de tiempo de ejecución.\n" "Su valor predeterminado es @samp{\"/var/run/dovecot/\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21814 +#: guix-git/doc/guix.texi:22176 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string login-greeting" msgstr "{parámetro de @code{dovecot-configuration}} string login-greeting" #. type: deftypevr -#: guix-git/doc/guix.texi:21817 +#: guix-git/doc/guix.texi:22179 msgid "Greeting message for clients. Defaults to @samp{\"Dovecot ready.\"}." msgstr "" "Mensaje de saludo para clientes.\n" "Su valor predeterminado es @samp{\"Dovecot ready.\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21819 +#: guix-git/doc/guix.texi:22181 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-trusted-networks" msgstr "{parámetro de @code{dovecot-configuration}} lista-cadenas-separada-espacios login-trusted-networks" #. type: deftypevr -#: guix-git/doc/guix.texi:21826 +#: guix-git/doc/guix.texi:22188 msgid "List of trusted network ranges. Connections from these IPs are allowed to override their IP addresses and ports (for logging and for authentication checks). @samp{disable-plaintext-auth} is also ignored for these networks. Typically you would specify your IMAP proxy servers here. Defaults to @samp{()}." msgstr "" "Lista de rangos de red en los que se confía. Las conexiones desde estas IP tienen permitido forzar sus direcciones IP y puertos (para el registro y las comprobaciones de identidad). @samp{disable-plaintext-auth} también se ignora en estas redes. Habitualmente aquí se especificarían los servidores proxy IMAP.\n" "Su valor predeterminado es @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:21828 +#: guix-git/doc/guix.texi:22190 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-access-sockets" msgstr "{parámetro de @code{dovecot-configuration}} lista-cadenas-separada-espacios login-access-sockets" #. type: deftypevr -#: guix-git/doc/guix.texi:21831 +#: guix-git/doc/guix.texi:22193 msgid "List of login access check sockets (e.g.@: tcpwrap). Defaults to @samp{()}." msgstr "" "Lista de sockets para la comprobación de acceso al sistema (por ejemplo tcpwrap).\n" @@ -42681,13 +43394,13 @@ msgstr "" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:21833 +#: guix-git/doc/guix.texi:22195 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean verbose-proctitle?" msgstr "{parámetro de @code{dovecot-configuration}} boolean verbose-proctitle?" #. type: deftypevr -#: guix-git/doc/guix.texi:21839 +#: guix-git/doc/guix.texi:22201 msgid "Show more verbose process titles (in ps). Currently shows user name and IP address. Useful for seeing who is actually using the IMAP processes (e.g.@: shared mailboxes or if the same uid is used for multiple accounts). Defaults to @samp{#f}." msgstr "" "Muestra títulos de procesamiento más detallados (en la postdata). Actualmente muestra el nombre de la usuaria y su dirección IP. Es útil para ver quién está usando procesos IMAP realmente (por ejemplo bandejas de correo compartidas o si el mismo identificador numérico de usuaria se usa para varias cuentas).\n" @@ -42695,215 +43408,215 @@ msgstr "" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:21841 +#: guix-git/doc/guix.texi:22203 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean shutdown-clients?" msgstr "{parámetro de @code{dovecot-configuration}} boolean shutdown-clients?" #. type: deftypevr -#: guix-git/doc/guix.texi:21847 +#: guix-git/doc/guix.texi:22209 msgid "Should all processes be killed when Dovecot master process shuts down. Setting this to @code{#f} means that Dovecot can be upgraded without forcing existing client connections to close (although that could also be a problem if the upgrade is e.g.@: due to a security fix). Defaults to @samp{#t}." msgstr "" "Determina si se deben finalizar todos los procesos cuando el proceso maestro de Dovecot termine su ejecución. El valor @code{#f} significa que Dovecot puede actualizarse sin forzar el cierre de las conexiones existentes (aunque esto puede ser un problema si la actualización se debe, por ejemplo, a la corrección de una vulnerabilidad).\n" "Su valor predeterminado es @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:21849 +#: guix-git/doc/guix.texi:22211 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer doveadm-worker-count" msgstr "{parámetro de @code{dovecot-configuration}} entero-no-negativo doveadm-worker-count" #. type: deftypevr -#: guix-git/doc/guix.texi:21853 +#: guix-git/doc/guix.texi:22215 msgid "If non-zero, run mail commands via this many connections to doveadm server, instead of running them directly in the same process. Defaults to @samp{0}." msgstr "" "Si no es cero, ejecuta las ordenes del correo a través de este número de conexiones al servidor doveadm, en vez de ejecutarlas directamente en el mismo proceso.\n" "Su valor predeterminado es @samp{0}." #. type: deftypevr -#: guix-git/doc/guix.texi:21855 +#: guix-git/doc/guix.texi:22217 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string doveadm-socket-path" msgstr "{parámetro de @code{dovecot-configuration}} string doveadm-socket-path" #. type: deftypevr -#: guix-git/doc/guix.texi:21858 +#: guix-git/doc/guix.texi:22220 msgid "UNIX socket or host:port used for connecting to doveadm server. Defaults to @samp{\"doveadm-server\"}." msgstr "" "Socket UNIX o máquina:puerto usados para la conexión al servidor doveadm.\n" "Su valor predeterminado es @samp{\"doveadm-server\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21860 +#: guix-git/doc/guix.texi:22222 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list import-environment" msgstr "{parámetro de @code{dovecot-configuration}} lista-cadenas-separada-espacios import-environment" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:21864 +#: guix-git/doc/guix.texi:22226 msgid "List of environment variables that are preserved on Dovecot startup and passed down to all of its child processes. You can also give key=value pairs to always set specific settings." msgstr "Lista de variables de entorno que se preservan al inicio de Dovecot y se proporcionan a los procesos iniciados. También puede proporcionar pares clave=valor para proporcionar siempre dicha configuración específica." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:21866 +#: guix-git/doc/guix.texi:22228 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean disable-plaintext-auth?" msgstr "{parámetro de @code{dovecot-configuration}} boolean disable-plaintext-auth?" #. type: deftypevr -#: guix-git/doc/guix.texi:21873 +#: guix-git/doc/guix.texi:22235 msgid "Disable LOGIN command and all other plaintext authentications unless SSL/TLS is used (LOGINDISABLED capability). Note that if the remote IP matches the local IP (i.e.@: you're connecting from the same computer), the connection is considered secure and plaintext authentication is allowed. See also ssl=required setting. Defaults to @samp{#t}." msgstr "" "Desactiva la orden LOGIN y todas las otras identificaciones en texto plano a menos que se use SSL/TLS (capacidad LOGINDISABLED). Tenga en cuenta que si la IP remota coincide con la IP local (es decir, se ha conectado desde la misma máquina), la conexión se considera segura y se permite la identificación en texto plano. Véase también la configuración ssl=required.\n" "Su valor predeterminado es @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:21875 +#: guix-git/doc/guix.texi:22237 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer auth-cache-size" msgstr "{parámetro de @code{dovecot-configuration}} entero-no-negativo auth-cache-size" #. type: deftypevr -#: guix-git/doc/guix.texi:21880 +#: guix-git/doc/guix.texi:22242 msgid "Authentication cache size (e.g.@: @samp{#e10e6}). 0 means it's disabled. Note that bsdauth, PAM and vpopmail require @samp{cache-key} to be set for caching to be used. Defaults to @samp{0}." msgstr "" "Tamaño de la caché de identificaciones (por ejemplo, @samp{#e10e6}. 0 significa que está desactivada. Tenga en cuenta que bsdauth, PAM y vpopmail necesitan un valor en @samp{cache-key} para que se use la caché.\n" "Su valor predeterminado es @samp{0}." #. type: deftypevr -#: guix-git/doc/guix.texi:21882 +#: guix-git/doc/guix.texi:22244 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-cache-ttl" msgstr "{parámetro de @code{dovecot-configuration}} string auth-cache-ttl" #. type: deftypevr -#: guix-git/doc/guix.texi:21890 +#: guix-git/doc/guix.texi:22252 msgid "Time to live for cached data. After TTL expires the cached record is no longer used, *except* if the main database lookup returns internal failure. We also try to handle password changes automatically: If user's previous authentication was successful, but this one wasn't, the cache isn't used. For now this works only with plaintext authentication. Defaults to @samp{\"1 hour\"}." msgstr "" "Tiempo de vida de los datos almacenados en caché. Los registros de caché no se usan tras su expiración, *excepto* si la base de datos principal devuelve un fallo interno. También se intentan manejar los cambios de contraseña de manera automática: si la identificación previa de la usuaria fue satisfactoria, pero no esta última, la caché no se usa. En estos momentos únicamente funciona con identificación en texto plano.\n" "Su valor predeterminado es @samp{\"1 hour\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21892 +#: guix-git/doc/guix.texi:22254 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-cache-negative-ttl" msgstr "{parámetro de @code{dovecot-configuration}} string auth-cache-negative-ttl" #. type: deftypevr -#: guix-git/doc/guix.texi:21896 +#: guix-git/doc/guix.texi:22258 msgid "TTL for negative hits (user not found, password mismatch). 0 disables caching them completely. Defaults to @samp{\"1 hour\"}." msgstr "" "Tiempo de vida para fallos de búsqueda en la caché (usuaria no encontrada, la contraseña no coincide). 0 desactiva completamente su almacenamiento en caché.\n" "Su valor predeterminado es @samp{\"1 hour\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21898 +#: guix-git/doc/guix.texi:22260 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list auth-realms" msgstr "{parámetro de @code{dovecot-configuration}} lista-cadenas-separada-espacios auth-realms" #. type: deftypevr -#: guix-git/doc/guix.texi:21904 +#: guix-git/doc/guix.texi:22266 msgid "List of realms for SASL authentication mechanisms that need them. You can leave it empty if you don't want to support multiple realms. Many clients simply use the first one listed here, so keep the default realm first. Defaults to @samp{()}." msgstr "" "Lista de dominios para los mecanismos de identificación de SASL que necesite. Puede dejarla vacía si no desea permitir múltiples dominios. Muchos clientes simplemente usarán el primero de la lista, por lo que debe mantener el dominio predeterminado en primera posición.\n" "Su valor predeterminado es @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:21906 +#: guix-git/doc/guix.texi:22268 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-default-realm" msgstr "{parámetro de @code{dovecot-configuration}} string auth-default-realm" #. type: deftypevr -#: guix-git/doc/guix.texi:21911 +#: guix-git/doc/guix.texi:22273 msgid "Default realm/domain to use if none was specified. This is used for both SASL realms and appending @@domain to username in plaintext logins. Defaults to @samp{\"\"}." msgstr "" "Dominio predeterminado usado en caso de no especificar ninguno. Esto se usa tanto en dominios SASL y como al añadir @@dominio al nombre de usuaria en los ingresos al sistema a través de texto en claro.\n" "Su valor predeterminado es @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21913 +#: guix-git/doc/guix.texi:22275 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-chars" msgstr "{parámetro de @code{dovecot-configuration}} string auth-username-chars" #. type: deftypevr -#: guix-git/doc/guix.texi:21920 +#: guix-git/doc/guix.texi:22282 msgid "List of allowed characters in username. If the user-given username contains a character not listed in here, the login automatically fails. This is just an extra check to make sure user can't exploit any potential quote escaping vulnerabilities with SQL/LDAP databases. If you want to allow all characters, set this value to empty. Defaults to @samp{\"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@@\"}." msgstr "" "Lista de caracteres permitidos en los nombres de usuaria. Si el nombre de usuaria proporcionado contiene un carácter no enumerado aquí, el login falla automáticamente. Es únicamente una comprobación adicional para asegurarse de que las usuarias no pueden explotar ninguna potencial vulnerabilidad con el escape de comillas en bases de datos SQL/LDAP. Si desea permitir todos los caracteres, establezca este valor a la cadena vacía.\n" "Su valor predeterminado es @samp{\"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@@\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21922 +#: guix-git/doc/guix.texi:22284 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-translation" msgstr "{parámetro de @code{dovecot-configuration}} string auth-username-translation" #. type: deftypevr -#: guix-git/doc/guix.texi:21928 +#: guix-git/doc/guix.texi:22290 msgid "Username character translations before it's looked up from databases. The value contains series of from -> to characters. For example @samp{#@@/@@} means that @samp{#} and @samp{/} characters are translated to @samp{@@}. Defaults to @samp{\"\"}." msgstr "" "Traducciones de caracteres de nombres de usuaria antes de que se busque en las bases de datos. El valor contiene series de caracteres \"original -> transformado\". Por ejemplo @samp{#@@/@@} significa que @samp{#} y @samp{/} se traducen en @samp{@@}.\n" "Su valor predeterminado es @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21930 +#: guix-git/doc/guix.texi:22292 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-format" msgstr "{parámetro de @code{dovecot-configuration}} string auth-username-format" #. type: deftypevr -#: guix-git/doc/guix.texi:21937 +#: guix-git/doc/guix.texi:22299 msgid "Username formatting before it's looked up from databases. You can use the standard variables here, e.g.@: %Lu would lowercase the username, %n would drop away the domain if it was given, or @samp{%n-AT-%d} would change the @samp{@@} into @samp{-AT-}. This translation is done after @samp{auth-username-translation} changes. Defaults to @samp{\"%Lu\"}." msgstr "" "Formato proporcionado al nombre de usuaria antes de buscarlo en las bases de datos. Puede usar variables estándar aquí, por ejemplo %Lu transformará el nombre a minúsculas, %n eliminará el fragmento del dominio si se proporcionó, o @samp{%n-AT-%d} cambiaría @samp{@@} en @samp{-AT-}. Esta traducción se realiza tras los cambios de @samp{auth-username-translation}.\n" "Su valor predeterminado es @samp{\"%Lu\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21939 +#: guix-git/doc/guix.texi:22301 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-master-user-separator" msgstr "{parámetro de @code{dovecot-configuration}} string auth-master-user-separator" #. type: deftypevr -#: guix-git/doc/guix.texi:21947 +#: guix-git/doc/guix.texi:22309 msgid "If you want to allow master users to log in by specifying the master username within the normal username string (i.e.@: not using SASL mechanism's support for it), you can specify the separator character here. The format is then . UW-IMAP uses @samp{*} as the separator, so that could be a good choice. Defaults to @samp{\"\"}." msgstr "" "Si desea permitir que usuarias maestras ingresen mediante la especificación del nombre de usuaria maestra dentro de la cadena de nombre de usuaria normal (es decir, sin usar el mecanismo para ello implementado por SASL), puede especificar aquí el carácter separador. El formato es entonces . UW-IMAP usa @samp{*} como separador, por lo que esa puede ser una buena elección.\n" "Su valor predeterminado es @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21949 +#: guix-git/doc/guix.texi:22311 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-anonymous-username" msgstr "{parámetro de @code{dovecot-configuration}} string auth-anonymous-username" #. type: deftypevr -#: guix-git/doc/guix.texi:21953 +#: guix-git/doc/guix.texi:22315 msgid "Username to use for users logging in with ANONYMOUS SASL mechanism. Defaults to @samp{\"anonymous\"}." msgstr "" "Usuaria usada para las usuarias que ingresen al sistema con el mecanismo de SASL ANONYMOUS.\n" "Su valor predeterminado es @samp{\"anonymous\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21955 +#: guix-git/doc/guix.texi:22317 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer auth-worker-max-count" msgstr "{parámetro de @code{dovecot-configuration}} entero-no-negativo auth-worker-max-count" #. type: deftypevr -#: guix-git/doc/guix.texi:21960 +#: guix-git/doc/guix.texi:22322 msgid "Maximum number of dovecot-auth worker processes. They're used to execute blocking passdb and userdb queries (e.g.@: MySQL and PAM). They're automatically created and destroyed as needed. Defaults to @samp{30}." msgstr "" "Número máximo de procesos de trabajo dovecot-auth. Se usan para la ejecución de consultas bloqueantes a passdb y userdb (por ejemplo MySQL y PAM). Se crean y destruyen bajo demanda de manera automática.\n" "Su valor predeterminado es @samp{30}." #. type: deftypevr -#: guix-git/doc/guix.texi:21962 +#: guix-git/doc/guix.texi:22324 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-gssapi-hostname" msgstr "{parámetro de @code{dovecot-configuration}} string auth-gssapi-hostname" @@ -42911,21 +43624,21 @@ msgstr "{parámetro de @code{dovecot-configuration}} string auth-gssapi-hostname # FUZZY # TODO (MAAV): Keytab #. type: deftypevr -#: guix-git/doc/guix.texi:21967 +#: guix-git/doc/guix.texi:22329 msgid "Host name to use in GSSAPI principal names. The default is to use the name returned by gethostname(). Use @samp{$ALL} (with quotes) to allow all keytab entries. Defaults to @samp{\"\"}." msgstr "" "Nombre de máquina usado en los nombres de GSSAPI principales. Por omisión se usa el nombre devuelto por gethostname(). Use @samp{$ALL} (con comillas) para permitir todas las entradas keytab.\n" "Su valor predeterminado es @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21969 +#: guix-git/doc/guix.texi:22331 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-krb5-keytab" msgstr "{parámetro de @code{dovecot-configuration}} string auth-krb5-keytab" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:21975 +#: guix-git/doc/guix.texi:22337 msgid "Kerberos keytab to use for the GSSAPI mechanism. Will use the system default (usually @file{/etc/krb5.keytab}) if not specified. You may need to change the auth service to run as root to be able to read this file. Defaults to @samp{\"\"}." msgstr "" "Keytab de Kerberos usado para el mecanismo GSSAPI. Si no se especifica ninguno, se usa el predeterminado del sistema (habitualmente @file{/etc/krb5.keytab}). Puede ser necesario cambiar el servicio auth para que se ejecute como root y tenga permisos de lectura sobre este archivo.\n" @@ -42933,40 +43646,40 @@ msgstr "" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:21977 +#: guix-git/doc/guix.texi:22339 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-use-winbind?" msgstr "{parámetro de @code{dovecot-configuration}} boolean auth-use-winbind?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:21982 +#: guix-git/doc/guix.texi:22344 msgid "Do NTLM and GSS-SPNEGO authentication using Samba's winbind daemon and @samp{ntlm-auth} helper. . Defaults to @samp{#f}." msgstr "" "Se identifica con NTLM y GSS-SPNEGO mediante el uso del daemon winbind de Samba y la herramienta auxiliar @samp{ntlm-auth}. .\n" "Su valor predeterminado es @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:21984 +#: guix-git/doc/guix.texi:22346 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name auth-winbind-helper-path" msgstr "{parámetro de @code{dovecot-configuration}} nombre-archivo auth-winbind-helper-path" #. type: deftypevr -#: guix-git/doc/guix.texi:21987 +#: guix-git/doc/guix.texi:22349 msgid "Path for Samba's @samp{ntlm-auth} helper binary. Defaults to @samp{\"/usr/bin/ntlm_auth\"}." msgstr "" "Ruta al binario de la herramienta auxiliar @samp{ntlm-auth} de Samba.\n" "Su valor predeterminado es @samp{\"/usr/bin/ntlm_auth\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21989 +#: guix-git/doc/guix.texi:22351 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-failure-delay" msgstr "{parámetro de @code{dovecot-configuration}} string auth-failure-delay" #. type: deftypevr -#: guix-git/doc/guix.texi:21992 +#: guix-git/doc/guix.texi:22354 msgid "Time to delay before replying to failed authentications. Defaults to @samp{\"2 secs\"}." msgstr "" "Tiempo de espera antes de responder a identificaciones fallidas.\n" @@ -42974,13 +43687,13 @@ msgstr "" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:21994 +#: guix-git/doc/guix.texi:22356 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-ssl-require-client-cert?" msgstr "{parámetro de @code{dovecot-configuration}} boolean auth-ssl-require-client-cert?" #. type: deftypevr -#: guix-git/doc/guix.texi:21998 +#: guix-git/doc/guix.texi:22360 msgid "Require a valid SSL client certificate or the authentication fails. Defaults to @samp{#f}." msgstr "" "Es necesario un certificado de cliente SSL válido o falla la identificación.\n" @@ -42988,143 +43701,143 @@ msgstr "" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22000 +#: guix-git/doc/guix.texi:22362 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-ssl-username-from-cert?" msgstr "{parámetro de @code{dovecot-configuration}} boolean auth-ssl-username-from-cert?" #. type: deftypevr -#: guix-git/doc/guix.texi:22005 +#: guix-git/doc/guix.texi:22367 msgid "Take the username from client's SSL certificate, using @code{X509_NAME_get_text_by_NID()} which returns the subject's DN's CommonName. Defaults to @samp{#f}." msgstr "" "Toma el nombre de usuaria del certificado de cliente SSL, mediante el uso de @code{X509_NAME_get_text_by_NID()}, que devuelve el nombre común (CommonName) del nombre de dominio (DN) del sujeto del certificado.\n" "Su valor predeterminado es @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22007 +#: guix-git/doc/guix.texi:22369 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list auth-mechanisms" msgstr "{parámetro de @code{dovecot-configuration}} lista-cadenas-separada-espacios auth-mechanisms" #. type: deftypevr -#: guix-git/doc/guix.texi:22013 +#: guix-git/doc/guix.texi:22375 msgid "List of wanted authentication mechanisms. Supported mechanisms are: @samp{plain}, @samp{login}, @samp{digest-md5}, @samp{cram-md5}, @samp{ntlm}, @samp{rpa}, @samp{apop}, @samp{anonymous}, @samp{gssapi}, @samp{otp}, @samp{skey}, and @samp{gss-spnego}. NOTE: See also @samp{disable-plaintext-auth} setting." msgstr "Lista de mecanismos de identificación deseados. Los mecanismos permitidos son: @samp{plain}, @samp{login}, @samp{digest-md5}, @samp{cram-md5}, @samp{ntlm}, @samp{rpa}, @samp{apop}, @samp{anonymous}, @samp{gssapi}, @samp{otp}, @samp{key}, and @samp{gss-spnego}. ATENCIÓN: Véase también la opción de configuración @samp{disable-plaintext-auth}." #. type: deftypevr -#: guix-git/doc/guix.texi:22015 +#: guix-git/doc/guix.texi:22377 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list director-servers" msgstr "{parámetro de @code{dovecot-configuration}} lista-cadenas-separada-espacios director-servers" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22020 +#: guix-git/doc/guix.texi:22382 msgid "List of IPs or hostnames to all director servers, including ourself. Ports can be specified as ip:port. The default port is the same as what director service's @samp{inet-listener} is using. Defaults to @samp{()}." msgstr "" "Lista de IP o nombres de máquina de los servidores directores, incluyendo este mismo. Los puertos se pueden especificar como ip:puerto. El puerto predeterminado es el mismo que el usado por el servicio director @samp{inet-listener}.\n" "Su valor predeterminado es @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:22022 +#: guix-git/doc/guix.texi:22384 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list director-mail-servers" msgstr "{parámetro de @code{dovecot-configuration}} lista-cadenas-separada-espacios director-mail-servers" #. type: deftypevr -#: guix-git/doc/guix.texi:22026 +#: guix-git/doc/guix.texi:22388 msgid "List of IPs or hostnames to all backend mail servers. Ranges are allowed too, like 10.0.0.10-10.0.0.30. Defaults to @samp{()}." msgstr "" "Lista de IP o nombres de máquina de los servidores motores de correo. Se permiten también rangos, como 10.0.0.10-10.0.0.30.\n" "Su valor predeterminado es @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:22028 +#: guix-git/doc/guix.texi:22390 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string director-user-expire" msgstr "{parámetro de @code{dovecot-configuration}} string director-user-expire" #. type: deftypevr -#: guix-git/doc/guix.texi:22032 +#: guix-git/doc/guix.texi:22394 msgid "How long to redirect users to a specific server after it no longer has any connections. Defaults to @samp{\"15 min\"}." msgstr "" "Por cuanto tiempo se redirige a las usuarias a un servidor específico tras pasar ese tiempo sin conexiones.\n" "Su valor predeterminado es @samp{\"15 min\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22034 +#: guix-git/doc/guix.texi:22396 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string director-username-hash" msgstr "{parámetro de @code{dovecot-configuration}} string director-username-hash" #. type: deftypevr -#: guix-git/doc/guix.texi:22039 +#: guix-git/doc/guix.texi:22401 msgid "How the username is translated before being hashed. Useful values include %Ln if user can log in with or without @@domain, %Ld if mailboxes are shared within domain. Defaults to @samp{\"%Lu\"}." msgstr "" "Cómo se traduce el nombre de usuaria antes de aplicar el hash. Entre los valores útiles se incluye %Ln si la usuaria puede ingresar en el sistema con o sin @@dominio, %Ld si las bandejas de correo se comparten dentro del dominio.\n" "Su valor predeterminado es @samp{\"%Lu\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22041 +#: guix-git/doc/guix.texi:22403 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string log-path" msgstr "{parámetro de @code{dovecot-configuration}} string log-path" #. type: deftypevr -#: guix-git/doc/guix.texi:22045 +#: guix-git/doc/guix.texi:22407 msgid "Log file to use for error messages. @samp{syslog} logs to syslog, @samp{/dev/stderr} logs to stderr. Defaults to @samp{\"syslog\"}." msgstr "" "Archivo de registro usado para los mensajes de error. @samp{syslog} los envía a syslog, @samp{\"/dev/stderr\"} a la salida de error estándar.\n" "Su valor predeterminado es @samp{\"syslog\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22047 +#: guix-git/doc/guix.texi:22409 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string info-log-path" msgstr "{parámetro de @code{dovecot-configuration}} string info-log-path" #. type: deftypevr -#: guix-git/doc/guix.texi:22051 +#: guix-git/doc/guix.texi:22413 msgid "Log file to use for informational messages. Defaults to @samp{log-path}. Defaults to @samp{\"\"}." msgstr "" "Archivo de registro usado para los mensajes informativos. Por omisión se usa @samp{log-path}.\n" "Su valor predeterminado es @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22053 +#: guix-git/doc/guix.texi:22415 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string debug-log-path" msgstr "{parámetro de @code{dovecot-configuration}} string debug-log-path" #. type: deftypevr -#: guix-git/doc/guix.texi:22057 +#: guix-git/doc/guix.texi:22419 msgid "Log file to use for debug messages. Defaults to @samp{info-log-path}. Defaults to @samp{\"\"}." msgstr "" "Archivo de registro usado para los mensajes de depuración. Por omisión se usa @samp{info-log-path}.\n" "Su valor predeterminado es @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22059 +#: guix-git/doc/guix.texi:22421 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string syslog-facility" msgstr "{parámetro de @code{dovecot-configuration}} string syslog-facility" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22064 +#: guix-git/doc/guix.texi:22426 msgid "Syslog facility to use if you're logging to syslog. Usually if you don't want to use @samp{mail}, you'll use local0..local7. Also other standard facilities are supported. Defaults to @samp{\"mail\"}." msgstr "" "Subsistema de syslog (facility) usado si se envía el registro a syslog. De manera habitual, si desea que no se use @samp{mail}, se usará local0..local7. Otros subsistemas estándar también están implementados.\n" "Su valor predeterminado es @samp{\"mail\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22066 +#: guix-git/doc/guix.texi:22428 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-verbose?" msgstr "{parámetro de @code{dovecot-configuration}} boolean auth-verbose?" #. type: deftypevr -#: guix-git/doc/guix.texi:22070 +#: guix-git/doc/guix.texi:22432 msgid "Log unsuccessful authentication attempts and the reasons why they failed. Defaults to @samp{#f}." msgstr "" "Registra los intentos de identificación infructuosos y las razones por los que fallaron.\n" @@ -43132,14 +43845,14 @@ msgstr "" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22072 +#: guix-git/doc/guix.texi:22434 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-verbose-passwords" msgstr "{parámetro de @code{dovecot-configuration}} string auth-verbose-passwords" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22079 +#: guix-git/doc/guix.texi:22441 msgid "In case of password mismatches, log the attempted password. Valid values are no, plain and sha1. sha1 can be useful for detecting brute force password attempts vs. user simply trying the same password over and over again. You can also truncate the value to n chars by appending \":n\" (e.g.@: sha1:6). Defaults to @samp{\"no\"}." msgstr "" "En caso de no coincidir la contraseña, registra la contraseña que se intentó. Los valores aceptados son ``no'', ``plain'' y ``sha1''. ``sha1'' puede ser útil para diferenciar intentos de descubrir la contraseña por fuerza bruta frente a una usuaria simplemente intentando la misma contraseña una y otra vez. También puede recortar el valor a n caracteres mediante la adición de \":n\" (por ejemplo ``sha1:6'').\n" @@ -43147,14 +43860,14 @@ msgstr "" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22081 +#: guix-git/doc/guix.texi:22443 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-debug?" msgstr "{parámetro de @code{dovecot-configuration}} boolean auth-debug?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22085 +#: guix-git/doc/guix.texi:22447 msgid "Even more verbose logging for debugging purposes. Shows for example SQL queries. Defaults to @samp{#f}." msgstr "" "Registros aún más detallados para facilitar la depuración. Muestra, por ejemplo, las consultas SQL.\n" @@ -43162,14 +43875,14 @@ msgstr "" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22087 +#: guix-git/doc/guix.texi:22449 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-debug-passwords?" msgstr "{parámetro de @code{dovecot-configuration}} boolean auth-debug-passwords?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22092 +#: guix-git/doc/guix.texi:22454 msgid "In case of password mismatches, log the passwords and used scheme so the problem can be debugged. Enabling this also enables @samp{auth-debug}. Defaults to @samp{#f}." msgstr "" "En caso de no coincidir la contraseña, registra las contraseñas y esquema usadas de manera que el problema se pueda depurar. La activación de este valor también provoca la activación de @samp{auth-debug}.\n" @@ -43177,14 +43890,14 @@ msgstr "" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22094 +#: guix-git/doc/guix.texi:22456 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-debug?" msgstr "{parámetro de @code{dovecot-configuration}} boolean mail-debug?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22098 +#: guix-git/doc/guix.texi:22460 msgid "Enable mail process debugging. This can help you figure out why Dovecot isn't finding your mails. Defaults to @samp{#f}." msgstr "" "Permite la depuración de los procesos de correo. Puede ayudarle a comprender los motivos en caso de que Dovecot no encuentre sus correos.\n" @@ -43192,306 +43905,306 @@ msgstr "" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22100 +#: guix-git/doc/guix.texi:22462 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean verbose-ssl?" msgstr "{parámetro de @code{dovecot-configuration}} boolean verbose-ssl?" #. type: deftypevr -#: guix-git/doc/guix.texi:22103 +#: guix-git/doc/guix.texi:22465 msgid "Show protocol level SSL errors. Defaults to @samp{#f}." msgstr "" "Muestra los errores a nivel de protocolo SSL.\n" "Su valor predeterminado es @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22105 +#: guix-git/doc/guix.texi:22467 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string log-timestamp" msgstr "{parámetro de @code{dovecot-configuration}} string log-timestamp" #. type: deftypevr -#: guix-git/doc/guix.texi:22109 +#: guix-git/doc/guix.texi:22471 msgid "Prefix for each line written to log file. % codes are in strftime(3) format. Defaults to @samp{\"\\\"%b %d %H:%M:%S \\\"\"}." msgstr "" "Prefijo de cada línea registrada en el archivo. Los códigos % tienen el formato de strftime(3).\n" "Su valor predeterminado es @samp{\"\\\"%b %d %H:%M:%S \\\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22111 +#: guix-git/doc/guix.texi:22473 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-log-format-elements" msgstr "{parámetro de @code{dovecot-configuration}} lista-cadenas-separada-espacios login-log-format-elements" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22115 +#: guix-git/doc/guix.texi:22477 msgid "List of elements we want to log. The elements which have a non-empty variable value are joined together to form a comma-separated string." msgstr "Lista de elementos que se desea registrar. Los elementos que tengan valor de variable no-vacía se unen para la formación de una cadena separada por comas." #. type: deftypevr -#: guix-git/doc/guix.texi:22117 +#: guix-git/doc/guix.texi:22479 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string login-log-format" msgstr "{parámetro de @code{dovecot-configuration}} string login-log-format" #. type: deftypevr -#: guix-git/doc/guix.texi:22121 +#: guix-git/doc/guix.texi:22483 msgid "Login log format. %s contains @samp{login-log-format-elements} string, %$ contains the data we want to log. Defaults to @samp{\"%$: %s\"}." msgstr "" "Formato del registro de ingresos al sistema. %s contiene la cadena @samp{login-log-format-elements}, %$ contiene los datos que se desean registrar.\n" "Su valor predeterminado es @samp{\"%$: %s\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22123 +#: guix-git/doc/guix.texi:22485 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-log-prefix" msgstr "{parámetro de @code{dovecot-configuration}} string mail-log-prefix" #. type: deftypevr -#: guix-git/doc/guix.texi:22127 +#: guix-git/doc/guix.texi:22489 msgid "Log prefix for mail processes. See doc/wiki/Variables.txt for list of possible variables you can use. Defaults to @samp{\"\\\"%s(%u)<%@{pid@}><%@{session@}>: \\\"\"}." msgstr "" "Prefijo de los registros de procesos de correo. Véase doc/wiki/Variables.txt para obtener una lista de variables que puede usar.\n" "Su valor predeterminado es @samp{\"\\\"%s(%u)<%@{pid@}><%@{session@}>: \\\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22129 +#: guix-git/doc/guix.texi:22491 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string deliver-log-format" msgstr "{parámetro de @code{dovecot-configuration}} string deliver-log-format" #. type: deftypevr -#: guix-git/doc/guix.texi:22131 +#: guix-git/doc/guix.texi:22493 msgid "Format to use for logging mail deliveries. You can use variables:" msgstr "Formato usado para el registro de las entregas de correo. Puede usar las variables:" #. type: item -#: guix-git/doc/guix.texi:22132 +#: guix-git/doc/guix.texi:22494 #, no-wrap msgid "%$" msgstr "%$" #. type: table -#: guix-git/doc/guix.texi:22134 +#: guix-git/doc/guix.texi:22496 msgid "Delivery status message (e.g.@: @samp{saved to INBOX})" msgstr "Mensaje de estado de entrega (por ejemplo: @samp{saved to INBOX})" #. type: item -#: guix-git/doc/guix.texi:22134 +#: guix-git/doc/guix.texi:22496 #, no-wrap msgid "%m" msgstr "%m" #. type: table -#: guix-git/doc/guix.texi:22136 +#: guix-git/doc/guix.texi:22498 msgid "Message-ID" msgstr "Message-ID" #. type: item -#: guix-git/doc/guix.texi:22136 guix-git/doc/guix.texi:22679 +#: guix-git/doc/guix.texi:22498 guix-git/doc/guix.texi:23041 #, no-wrap msgid "%s" msgstr "%s" #. type: table -#: guix-git/doc/guix.texi:22138 +#: guix-git/doc/guix.texi:22500 msgid "Subject" msgstr "Asunto" #. type: item -#: guix-git/doc/guix.texi:22138 +#: guix-git/doc/guix.texi:22500 #, no-wrap msgid "%f" msgstr "%f" # FUZZY #. type: table -#: guix-git/doc/guix.texi:22140 +#: guix-git/doc/guix.texi:22502 msgid "From address" msgstr "De (dirección)" #. type: table -#: guix-git/doc/guix.texi:22142 +#: guix-git/doc/guix.texi:22504 msgid "Physical size" msgstr "Tamaño físico" #. type: item -#: guix-git/doc/guix.texi:22142 +#: guix-git/doc/guix.texi:22504 #, no-wrap msgid "%w" msgstr "%w" #. type: table -#: guix-git/doc/guix.texi:22144 +#: guix-git/doc/guix.texi:22506 msgid "Virtual size." msgstr "Tamaño virtual." #. type: deftypevr -#: guix-git/doc/guix.texi:22146 +#: guix-git/doc/guix.texi:22508 msgid "Defaults to @samp{\"msgid=%m: %$\"}." msgstr "El valor predeterminado es @samp{\"msgid=%m: %$\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22148 +#: guix-git/doc/guix.texi:22510 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-location" msgstr "{parámetro de @code{dovecot-configuration}} string mail-location" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22153 +#: guix-git/doc/guix.texi:22515 msgid "Location for users' mailboxes. The default is empty, which means that Dovecot tries to find the mailboxes automatically. This won't work if the user doesn't yet have any mail, so you should explicitly tell Dovecot the full location." msgstr "Localización de las bandejas de correo de las usuarias. El valor predeterminado está vacío, lo que significa que Dovecot intenta encontrar las bandejas de correo de manera automática. Esto no funciona si la usuaria no tiene todavía ningún correo, por lo que debe proporcionarle a Dovecot la ruta completa." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22159 +#: guix-git/doc/guix.texi:22521 msgid "If you're using mbox, giving a path to the INBOX file (e.g.@: @file{/var/mail/%u}) isn't enough. You'll also need to tell Dovecot where the other mailboxes are kept. This is called the @emph{root mail directory}, and it must be the first path given in the @samp{mail-location} setting." msgstr "Si usa mbox, proporcionar una ruta al archivo de la bandeja entrada ``INBOX'' (por ejemplo @file{/var/mail/%u}) no es suficiente. También debe proporcionarle a Dovecot la ruta de otras bandejas de correo. Este es el llamado @emph{directorio de correo raíz}, y debe ser la primera ruta proporcionada en la opción @samp{mail-location}. " #. type: deftypevr -#: guix-git/doc/guix.texi:22161 +#: guix-git/doc/guix.texi:22523 msgid "There are a few special variables you can use, e.g.:" msgstr "Existen algunas variables especiales que puede usar, por ejemplo:" #. type: table -#: guix-git/doc/guix.texi:22165 +#: guix-git/doc/guix.texi:22527 msgid "username" msgstr "nombre de usuaria" #. type: item -#: guix-git/doc/guix.texi:22165 guix-git/doc/guix.texi:22675 +#: guix-git/doc/guix.texi:22527 guix-git/doc/guix.texi:23037 #, no-wrap msgid "%n" msgstr "%n" #. type: table -#: guix-git/doc/guix.texi:22167 +#: guix-git/doc/guix.texi:22529 msgid "user part in user@@domain, same as %u if there's no domain" msgstr "parte de la usuaria en usuaria@@dominio, idéntica a %u si no existe dominio" #. type: item -#: guix-git/doc/guix.texi:22167 +#: guix-git/doc/guix.texi:22529 #, no-wrap msgid "%d" msgstr "%d" #. type: table -#: guix-git/doc/guix.texi:22169 +#: guix-git/doc/guix.texi:22531 msgid "domain part in user@@domain, empty if there's no domain" msgstr "parte del dominio en usuaria@@dominio, vacía si no existe dominio" #. type: item -#: guix-git/doc/guix.texi:22169 +#: guix-git/doc/guix.texi:22531 #, no-wrap msgid "%h" msgstr "%h" # FUZZY #. type: table -#: guix-git/doc/guix.texi:22171 +#: guix-git/doc/guix.texi:22533 msgid "home director" msgstr "directorio de la usuaria" #. type: deftypevr -#: guix-git/doc/guix.texi:22174 +#: guix-git/doc/guix.texi:22536 msgid "See doc/wiki/Variables.txt for full list. Some examples:" msgstr "Véase doc/wiki/Variables.txt para obtener una lista completa. Algunos ejemplos:" #. type: item -#: guix-git/doc/guix.texi:22175 +#: guix-git/doc/guix.texi:22537 #, no-wrap msgid "maildir:~/Maildir" msgstr "maildir:~/Correo" #. type: item -#: guix-git/doc/guix.texi:22176 +#: guix-git/doc/guix.texi:22538 #, no-wrap msgid "mbox:~/mail:INBOX=/var/mail/%u" msgstr "mbox:~/correo:INBOX=/var/mail/%u" #. type: item -#: guix-git/doc/guix.texi:22177 +#: guix-git/doc/guix.texi:22539 #, no-wrap msgid "mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%" msgstr "mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%" #. type: deftypevr -#: guix-git/doc/guix.texi:22182 +#: guix-git/doc/guix.texi:22544 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-uid" msgstr "{parámetro de @code{dovecot-configuration}} string mail-uid" # FUZZY FUZZY FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22187 +#: guix-git/doc/guix.texi:22549 msgid "System user and group used to access mails. If you use multiple, userdb can override these by returning uid or gid fields. You can use either numbers or names. . Defaults to @samp{\"\"}." msgstr "" "Usuaria del sistema y grupo que realizan el acceso al correo. Si se usan varias, userdb puede forzar su valor al devolver campos uid o gid. Se pueden usar tanto identificadores numéricos como nominales. .\n" "Su valor predeterminado es @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22189 +#: guix-git/doc/guix.texi:22551 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-gid" msgstr "{parámetro de @code{dovecot-configuration}} string mail-gid" #. type: deftypevr -#: guix-git/doc/guix.texi:22194 +#: guix-git/doc/guix.texi:22556 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-privileged-group" msgstr "{parámetro de @code{dovecot-configuration}} string mail-privileged-group" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22200 +#: guix-git/doc/guix.texi:22562 msgid "Group to enable temporarily for privileged operations. Currently this is used only with INBOX when either its initial creation or dotlocking fails. Typically this is set to @samp{\"mail\"} to give access to @file{/var/mail}. Defaults to @samp{\"\"}." msgstr "" "Grupo para permitir de forma temporal operaciones privilegiadas. Actualmente esto se usa únicamente con la bandeja de entrada (INBOX), cuando su creación inicial o el bloqueo con archivo @file{.lock} falle. Habitualmente se le proporciona el valor @samp{\"mail\"} para tener acceso a @file{/var/mail}.\n" "Su valor predeterminado es @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22202 +#: guix-git/doc/guix.texi:22564 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-access-groups" msgstr "{parámetro de @code{dovecot-configuration}} string mail-access-groups" # FUZZY FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22210 +#: guix-git/doc/guix.texi:22572 msgid "Grant access to these supplementary groups for mail processes. Typically these are used to set up access to shared mailboxes. Note that it may be dangerous to set these if users can create symlinks (e.g.@: if @samp{mail} group is set here, @code{ln -s /var/mail ~/mail/var} could allow a user to delete others' mailboxes, or @code{ln -s /secret/shared/box ~/mail/mybox} would allow reading it). Defaults to @samp{\"\"}." msgstr "" "Proporciona acceso a estos grupos suplementarios a los procesos de correo. Habitualmente se usan para configurar el acceso a bandejas de correo compartidas. Tenga en cuenta que puede ser peligroso establecerlos si las usuarias pueden crear enlaces simbólicos (por ejemplo si se configura el grupo @samp{mail} aquí, @code{ln -s /var/mail ~/mail/var} puede permitir a una usuaria borrar las bandejas de correo de otras usuarias, o @code{ln -s /bandeja/compartida/secreta ~/mail/mibandeja} permitiría su lectura).\n" "Su valor predeterminado es @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22212 +#: guix-git/doc/guix.texi:22574 #, fuzzy, no-wrap #| msgid "{@code{dovecot-configuration} parameter} string mail-attachment-dir" msgid "{@code{dovecot-configuration} parameter} string mail-attribute-dict" msgstr "{parámetro de @code{dovecot-configuration}} string mail-attachment-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:22215 +#: guix-git/doc/guix.texi:22577 msgid "The location of a dictionary used to store @code{IMAP METADATA} as defined by @uref{https://tools.ietf.org/html/rfc5464, RFC@tie{}5464}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22218 +#: guix-git/doc/guix.texi:22580 msgid "The IMAP METADATA commands are available only if the ``imap'' protocol configuration's @code{imap-metadata?} field is @samp{#t}." msgstr "" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22223 +#: guix-git/doc/guix.texi:22585 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-full-filesystem-access?" msgstr "{parámetro de @code{dovecot-configuration}} boolean mail-full-filesystem-access?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22229 +#: guix-git/doc/guix.texi:22591 #, fuzzy msgid "Allow full file system access to clients. There's no access checks other than what the operating system does for the active UID/GID@. It works with both maildir and mboxes, allowing you to prefix mailboxes names with e.g.@: @file{/path/} or @file{~user/}. Defaults to @samp{#f}." msgstr "" @@ -43500,13 +44213,13 @@ msgstr "" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22231 +#: guix-git/doc/guix.texi:22593 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mmap-disable?" msgstr "{parámetro de @code{dovecot-configuration}} boolean mmap-disable?" #. type: deftypevr -#: guix-git/doc/guix.texi:22235 +#: guix-git/doc/guix.texi:22597 msgid "Don't use @code{mmap()} at all. This is required if you store indexes to shared file systems (NFS or clustered file system). Defaults to @samp{#f}." msgstr "" "No usa @code{mmap()} en absoluto. Es necesario si almacena índices en sistemas de archivos compartidos (NFS o sistemas de archivos en cluster).\n" @@ -43514,67 +44227,67 @@ msgstr "" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22237 +#: guix-git/doc/guix.texi:22599 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean dotlock-use-excl?" msgstr "{parámetro de @code{dovecot-configuration}} boolean dotlock-use-excl?" # FUZZY FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22242 +#: guix-git/doc/guix.texi:22604 msgid "Rely on @samp{O_EXCL} to work when creating dotlock files. NFS supports @samp{O_EXCL} since version 3, so this should be safe to use nowadays by default. Defaults to @samp{#t}." msgstr "" "Confía en el correcto funcionamiento de @samp{O_EXCL} para la creación de archivos de bloqueo dotlock. NFS implementa @samp{O_EXCL} desde la versión 3, por lo que debería ser seguro usarlo hoy en día de manera predeterminada.\n" "Su valor predeterminado es @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:22244 +#: guix-git/doc/guix.texi:22606 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-fsync" msgstr "{parámetro de @code{dovecot-configuration}} string mail-fsync" #. type: deftypevr -#: guix-git/doc/guix.texi:22246 +#: guix-git/doc/guix.texi:22608 msgid "When to use fsync() or fdatasync() calls:" msgstr "Cuando se usarán las llamadas fsync() o fdatasync():" #. type: item -#: guix-git/doc/guix.texi:22247 +#: guix-git/doc/guix.texi:22609 #, no-wrap msgid "optimized" msgstr "optimized" #. type: table -#: guix-git/doc/guix.texi:22249 +#: guix-git/doc/guix.texi:22611 msgid "Whenever necessary to avoid losing important data" msgstr "Cuando sea necesario para evitar la perdida de datos importantes" # FUZZY #. type: table -#: guix-git/doc/guix.texi:22251 +#: guix-git/doc/guix.texi:22613 msgid "Useful with e.g.@: NFS when @code{write()}s are delayed" msgstr "Útil con, por ejemplo, NFS, donde las escrituras con @code{write()} se aplazan" # FUZZY #. type: table -#: guix-git/doc/guix.texi:22253 +#: guix-git/doc/guix.texi:22615 msgid "Never use it (best performance, but crashes can lose data)." msgstr "Nunca se usa (mejor rendimiento, pero los fallos pueden producir pérdida de datos)" #. type: deftypevr -#: guix-git/doc/guix.texi:22255 +#: guix-git/doc/guix.texi:22617 msgid "Defaults to @samp{\"optimized\"}." msgstr "Su valor predeterminado es @samp{\"optimized\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22257 +#: guix-git/doc/guix.texi:22619 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-nfs-storage?" msgstr "{parámetro de @code{dovecot-configuration}} boolean mail-nfs-storage?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22262 +#: guix-git/doc/guix.texi:22624 #, fuzzy msgid "Mail storage exists in NFS@. Set this to yes to make Dovecot flush NFS caches whenever needed. If you're using only a single mail server this isn't needed. Defaults to @samp{#f}." msgstr "" @@ -43582,13 +44295,13 @@ msgstr "" "Su valor predeterminado es @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22264 +#: guix-git/doc/guix.texi:22626 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-nfs-index?" msgstr "{parámetro de @code{dovecot-configuration}} boolean mail-nfs-index?" #. type: deftypevr -#: guix-git/doc/guix.texi:22268 +#: guix-git/doc/guix.texi:22630 #, fuzzy msgid "Mail index files also exist in NFS@. Setting this to yes requires @samp{mmap-disable? #t} and @samp{fsync-disable? #f}. Defaults to @samp{#f}." msgstr "" @@ -43596,189 +44309,189 @@ msgstr "" "Su valor predeterminado es @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22270 +#: guix-git/doc/guix.texi:22632 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string lock-method" msgstr "{parámetro de @code{dovecot-configuration}} string lock-method" # FUZZY FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22276 +#: guix-git/doc/guix.texi:22638 msgid "Locking method for index files. Alternatives are fcntl, flock and dotlock. Dotlocking uses some tricks which may create more disk I/O than other locking methods. NFS users: flock doesn't work, remember to change @samp{mmap-disable}. Defaults to @samp{\"fcntl\"}." msgstr "" "Método de bloqueo para los archivos de índice. Las alternativas son fcntl, flock y dotlock. Dotlock utiliza técnicas que pueden provocar un consumo de E/S mayor que otros métodos de bloqueo. Usuarias de NFS: flock no funciona, recuerde que se debe cambiar @samp{mmap-disable}.\n" "Su valor predeterminado es @samp{\"fcntl\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22278 +#: guix-git/doc/guix.texi:22640 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name mail-temp-dir" msgstr "{parámetro de @code{dovecot-configuration}} nombre-archivo mail-temp-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:22282 +#: guix-git/doc/guix.texi:22644 msgid "Directory in which LDA/LMTP temporarily stores incoming mails >128 kB. Defaults to @samp{\"/tmp\"}." msgstr "" "Directorio en el que LDA/LMTP almacena de manera temporal correos entrantes de de más de 128 kB.\n" "Su valor predeterminado es @samp{\"/tmp\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22284 +#: guix-git/doc/guix.texi:22646 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer first-valid-uid" msgstr "{parámetro de @code{dovecot-configuration}} entero-no-negativo first-valid-uid" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22290 +#: guix-git/doc/guix.texi:22652 msgid "Valid UID range for users. This is mostly to make sure that users can't log in as daemons or other system users. Note that denying root logins is hardcoded to dovecot binary and can't be done even if @samp{first-valid-uid} is set to 0. Defaults to @samp{500}." msgstr "" "Rango de UID aceptado para las usuarias. Principalmente es para asegurarse de que las usuarias no pueden ingresar en el sistema como un daemon u otras usuarias del sistema. Tenga en cuenta que el binario de dovecot tiene código que impide el ingreso al sistema como root y no puede llevarse a cabo incluso aunque @samp{first-valid-uid} tenga el valor 0.\n" "Su valor predeterminado es @samp{500}." #. type: deftypevr -#: guix-git/doc/guix.texi:22292 +#: guix-git/doc/guix.texi:22654 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer last-valid-uid" msgstr "{parámetro de @code{dovecot-configuration}} entero-no-negativo last-valid-uid" #. type: deftypevr -#: guix-git/doc/guix.texi:22297 +#: guix-git/doc/guix.texi:22659 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer first-valid-gid" msgstr "{parámetro de @code{dovecot-configuration}} entero-no-negativo first-valid-gid" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22302 +#: guix-git/doc/guix.texi:22664 msgid "Valid GID range for users. Users having non-valid GID as primary group ID aren't allowed to log in. If user belongs to supplementary groups with non-valid GIDs, those groups are not set. Defaults to @samp{1}." msgstr "" "Rango de GID aceptado para las usuarias. Las usuarias que no posean GID válido como ID primario de grupo no tienen permitido el ingreso al sistema. Si la usuaria es miembro de grupos suplementarios con GID no válido, no se activan dichos grupos.\n" "Su valor predeterminado es @samp{1}." #. type: deftypevr -#: guix-git/doc/guix.texi:22304 +#: guix-git/doc/guix.texi:22666 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer last-valid-gid" msgstr "{parámetro de @code{dovecot-configuration}} entero-no-negativo last-valid-gid" #. type: deftypevr -#: guix-git/doc/guix.texi:22309 +#: guix-git/doc/guix.texi:22671 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-max-keyword-length" msgstr "{parámetro de @code{dovecot-configuration}} entero-no-negativo mail-max-keyword-length" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22313 +#: guix-git/doc/guix.texi:22675 msgid "Maximum allowed length for mail keyword name. It's only forced when trying to create new keywords. Defaults to @samp{50}." msgstr "" "Longitud máxima permitida para nombres de palabras clave del correo. El límite actúa únicamente en la creación de nuevas palabras clave.\n" "Su valor predeterminado es @samp{50}." #. type: deftypevr -#: guix-git/doc/guix.texi:22315 +#: guix-git/doc/guix.texi:22677 #, no-wrap msgid "{@code{dovecot-configuration} parameter} colon-separated-file-name-list valid-chroot-dirs" msgstr "{parámetro de @code{dovecot-configuration}} lista-archivos-sep-dos-puntos valid-chroot-dirs" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22325 +#: guix-git/doc/guix.texi:22687 msgid "List of directories under which chrooting is allowed for mail processes (i.e.@: @file{/var/mail} will allow chrooting to @file{/var/mail/foo/bar} too). This setting doesn't affect @samp{login-chroot} @samp{mail-chroot} or auth chroot settings. If this setting is empty, @samp{/./} in home dirs are ignored. WARNING: Never add directories here which local users can modify, that may lead to root exploit. Usually this should be done only if you don't allow shell access for users. . Defaults to @samp{()}." msgstr "" "Lista de directorios bajo los que se permite realizar la llamada al sistema chroot a procesos de correo (es decir, @file{/var/mail} permitiría realizar la llamada también en @file{/var/mail/sub/directorio}). Esta configuración no afecta a la configuración de @samp{login-chroot}, @samp{mail-chroot} o la de chroot para identificación. En caso de estar vacía, se ignora @samp{\"/./\"} en los directorios de usuarias. AVISO: Nunca añada directorios que las usuarias locales puedan modificar, puesto que podría permitir vulnerar el control de acceso como ``root''. Habitualmente esta opción se activa únicamente si no permite a las usuarias acceder a un intérprete de órdenes. .\n" "Su valor predeterminado es @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:22327 +#: guix-git/doc/guix.texi:22689 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-chroot" msgstr "{parámetro de @code{dovecot-configuration}} string mail-chroot" #. type: deftypevr -#: guix-git/doc/guix.texi:22336 +#: guix-git/doc/guix.texi:22698 msgid "Default chroot directory for mail processes. This can be overridden for specific users in user database by giving @samp{/./} in user's home directory (e.g.@: @samp{/home/./user} chroots into @file{/home}). Note that usually there is no real need to do chrooting, Dovecot doesn't allow users to access files outside their mail directory anyway. If your home directories are prefixed with the chroot directory, append @samp{/.} to @samp{mail-chroot}. . Defaults to @samp{\"\"}." msgstr "" "Directorio predeterminado de la llamada al sistema chroot para los procesos de correo. El valor puede forzarse para usuarias específicas en la base de datos proporcionando @samp{/./} en el directorio de la usuaria (por ejemplo, @samp{/home/./usuaria} llama a chroot con @file{/home}). Tenga en cuenta que habitualmente no es necesario llamar a chroot, Dovecot no permite a las usuarias el acceso a archivos más allá de su directorio de correo en cualquier caso. Si sus directorios de usuaria contienen el directorio de chroot como prefijo, agregue @samp{/.} al final de @samp{mail-chroot}. .\n" "Su valor predeterminado es @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22338 +#: guix-git/doc/guix.texi:22700 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name auth-socket-path" msgstr "{parámetro de @code{dovecot-configuration}} nombre-archivo auth-socket-path" #. type: deftypevr -#: guix-git/doc/guix.texi:22342 +#: guix-git/doc/guix.texi:22704 msgid "UNIX socket path to master authentication server to find users. This is used by imap (for shared users) and lda. Defaults to @samp{\"/var/run/dovecot/auth-userdb\"}." msgstr "" "Ruta al socket de UNIX al servidor maestro de identificación para la búsqueda de usuarias. Se usa por parte de imap (para usuarias compartidas) y lda.\n" "Su valor predeterminado es @samp{\"/var/run/dovecot/auth-userdb\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22344 +#: guix-git/doc/guix.texi:22706 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name mail-plugin-dir" msgstr "{parámetro de @code{dovecot-configuration}} nombre-archivo mail-plugin-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:22347 +#: guix-git/doc/guix.texi:22709 msgid "Directory where to look up mail plugins. Defaults to @samp{\"/usr/lib/dovecot\"}." msgstr "" "Directorio en el que se buscarán módulos de correo.\n" "Su valor predeterminado es @samp{\"/usr/lib/dovecot\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22349 +#: guix-git/doc/guix.texi:22711 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mail-plugins" msgstr "{parámetro de @code{dovecot-configuration}} lista-cadena-separada-espacios mail-plugins" #. type: deftypevr -#: guix-git/doc/guix.texi:22353 +#: guix-git/doc/guix.texi:22715 msgid "List of plugins to load for all services. Plugins specific to IMAP, LDA, etc.@: are added to this list in their own .conf files. Defaults to @samp{()}." msgstr "" "Lista de módulos cargados en todos los servicios. Los módulos específicos para IMAP, LDA, etc.@: se añaden en esta lista en sus propios archivos .conf.\n" "Su valor predeterminado es @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:22355 +#: guix-git/doc/guix.texi:22717 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-cache-min-mail-count" msgstr "{parámetro de @code{dovecot-configuration}} entero-no-negativo mail-cache-min-mail-count" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22360 +#: guix-git/doc/guix.texi:22722 msgid "The minimum number of mails in a mailbox before updates are done to cache file. This allows optimizing Dovecot's behavior to do less disk writes at the cost of more disk reads. Defaults to @samp{0}." msgstr "" "El número mínimo de correos en una bandeja antes de que las actualizaciones se realicen en un archivo de caché. Permite optimizar el comportamiento de Dovecot para reducir la tasa de escritura en el disco, lo que produce un aumento de la tasa de lectura.\n" "Su valor predeterminado es @samp{0}." #. type: deftypevr -#: guix-git/doc/guix.texi:22362 +#: guix-git/doc/guix.texi:22724 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mailbox-idle-check-interval" msgstr "{parámetro de @code{dovecot-configuration}} string mailbox-idle-check-interval" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22369 +#: guix-git/doc/guix.texi:22731 msgid "When IDLE command is running, mailbox is checked once in a while to see if there are any new mails or other changes. This setting defines the minimum time to wait between those checks. Dovecot can also use dnotify, inotify and kqueue to find out immediately when changes occur. Defaults to @samp{\"30 secs\"}." msgstr "" "Cuando se ejecute la orden IDLE, la bandeja de correo se comprueba de vez en cuando para comprobar si existen nuevos correos o se han producido otros cambios. Esta configuración define el tiempo mínimo entre dichas comprobaciones. Dovecot también puede usar dnotify, inotify y kqueue para recibir información inmediata sobre los cambios que ocurran.\n" "Su valor predeterminado es @samp{\"30 secs\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22371 +#: guix-git/doc/guix.texi:22733 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-save-crlf?" msgstr "{parámetro de @code{dovecot-configuration}} boolean mail-save-crlf?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22378 +#: guix-git/doc/guix.texi:22740 #, fuzzy msgid "Save mails with CR+LF instead of plain LF@. This makes sending those mails take less CPU, especially with sendfile() syscall with Linux and FreeBSD@. But it also creates a bit more disk I/O which may just make it slower. Also note that if other software reads the mboxes/maildirs, they may handle the extra CRs wrong and cause problems. Defaults to @samp{#f}." msgstr "" @@ -43786,931 +44499,931 @@ msgstr "" "Su valor predeterminado es @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22380 +#: guix-git/doc/guix.texi:22742 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-stat-dirs?" msgstr "{parámetro de @code{dovecot-configuration}} boolean maildir-stat-dirs?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22388 +#: guix-git/doc/guix.texi:22750 msgid "By default LIST command returns all entries in maildir beginning with a dot. Enabling this option makes Dovecot return only entries which are directories. This is done by stat()ing each entry, so it causes more disk I/O. (For systems setting struct @samp{dirent->d_type} this check is free and it's done always regardless of this setting). Defaults to @samp{#f}." msgstr "" "De manera predeterminada la orden LIST devuelve todas las entradas en maildir cuyo nombre empiece en punto. La activación de esta opción hace que Dovecot únicamente devuelva las entradas que sean directorios. Esto se lleva a cabo llamando a stat() con cada entrada, lo que causa mayor E/S del disco. (En sistemas que proporcionen valor a @samp{dirent->d_type} esta comprobación no tiene coste alguno y se realiza siempre independientemente del valor configurado aquí).\n" "Su valor predeterminado es @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22390 +#: guix-git/doc/guix.texi:22752 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-copy-with-hardlinks?" msgstr "{parámetro de @code{dovecot-configuration}} boolean maildir-copy-with-hardlinks?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22395 +#: guix-git/doc/guix.texi:22757 msgid "When copying a message, do it with hard links whenever possible. This makes the performance much better, and it's unlikely to have any side effects. Defaults to @samp{#t}." msgstr "" "Cuando se copia un mensaje, se usan enlaces duros cuando sea posible. Esto mejora mucho el rendimiento, y es difícil que produzca algún efecto secundario.\n" "Su valor predeterminado es @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:22397 +#: guix-git/doc/guix.texi:22759 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-very-dirty-syncs?" msgstr "{parámetro de @code{dovecot-configuration}} boolean maildir-very-dirty-syncs?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22402 +#: guix-git/doc/guix.texi:22764 msgid "Assume Dovecot is the only MUA accessing Maildir: Scan cur/ directory only when its mtime changes unexpectedly or when we can't find the mail otherwise. Defaults to @samp{#f}." msgstr "" "Asume que Dovecot es el único MUA que accede a maildir: Recorre el directorio cur/ únicamente cuando cambie su mtime de manera inesperada o cuando no se pueda encontrar el correo de otra manera.\n" "Su valor predeterminado es @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22404 +#: guix-git/doc/guix.texi:22766 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mbox-read-locks" msgstr "{parámetro de @code{dovecot-configuration}} lista-cadena-separada-espacios mbox-read-locks" #. type: deftypevr -#: guix-git/doc/guix.texi:22407 +#: guix-git/doc/guix.texi:22769 msgid "Which locking methods to use for locking mbox. There are four available:" msgstr "Qué métodos de bloqueo deben usarse para el bloque de mbox. Hay cuatro disponibles:" #. type: item -#: guix-git/doc/guix.texi:22409 +#: guix-git/doc/guix.texi:22771 #, no-wrap msgid "dotlock" msgstr "dotlock" #. type: table -#: guix-git/doc/guix.texi:22413 +#: guix-git/doc/guix.texi:22775 msgid "Create .lock file. This is the oldest and most NFS-safe solution. If you want to use /var/mail/ like directory, the users will need write access to that directory." msgstr "Crea un archivo .lock. Esta es la solución más antigua y más segura con NFS. Si desea usar un directorio como /var/mail/, las usuarias necesitarán acceso de escritura a dicho directorio." #. type: item -#: guix-git/doc/guix.texi:22413 +#: guix-git/doc/guix.texi:22775 #, no-wrap msgid "dotlock-try" msgstr "dotlock-try" # FUZZY #. type: table -#: guix-git/doc/guix.texi:22416 +#: guix-git/doc/guix.texi:22778 msgid "Same as dotlock, but if it fails because of permissions or because there isn't enough disk space, just skip it." msgstr "Lo mismo que dotlock, pero si se produce un fallo debido a los permisos o a que no existe suficiente espacio en disco, simplemente se omite el bloqueo." #. type: item -#: guix-git/doc/guix.texi:22416 +#: guix-git/doc/guix.texi:22778 #, no-wrap msgid "fcntl" msgstr "fcntl" #. type: table -#: guix-git/doc/guix.texi:22418 +#: guix-git/doc/guix.texi:22780 msgid "Use this if possible. Works with NFS too if lockd is used." msgstr "Use este a ser posible. Funciona también con NFS si se usa lockd." #. type: item -#: guix-git/doc/guix.texi:22418 +#: guix-git/doc/guix.texi:22780 #, no-wrap msgid "flock" msgstr "flock" #. type: table -#: guix-git/doc/guix.texi:22420 guix-git/doc/guix.texi:22422 +#: guix-git/doc/guix.texi:22782 guix-git/doc/guix.texi:22784 msgid "May not exist in all systems. Doesn't work with NFS." msgstr "Puede no existir en todos los sistemas. No funciona con NFS." #. type: item -#: guix-git/doc/guix.texi:22420 +#: guix-git/doc/guix.texi:22782 #, no-wrap msgid "lockf" msgstr "lockf" #. type: deftypevr -#: guix-git/doc/guix.texi:22428 +#: guix-git/doc/guix.texi:22790 msgid "You can use multiple locking methods; if you do the order they're declared in is important to avoid deadlocks if other MTAs/MUAs are using multiple locking methods as well. Some operating systems don't allow using some of them simultaneously." msgstr "Puede usar múltiples métodos de bloqueo; en ese caso el orden en el que se declaran es importante para evitar situaciones de bloqueo mutuo en caso de que otros MTA/MUA usen también múltiples métodos de bloqueo. Algunos sistemas operativos no permiten el uso de varios de ellos de manera simultánea." #. type: deftypevr -#: guix-git/doc/guix.texi:22430 +#: guix-git/doc/guix.texi:22792 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mbox-write-locks" msgstr "{parámetro de @code{dovecot-configuration}} lista-cadena-separada-espacios mbox-write-locks" #. type: deftypevr -#: guix-git/doc/guix.texi:22434 +#: guix-git/doc/guix.texi:22796 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mbox-lock-timeout" msgstr "{parámetro de @code{dovecot-configuration}} string mbox-lock-timeout" #. type: deftypevr -#: guix-git/doc/guix.texi:22437 +#: guix-git/doc/guix.texi:22799 msgid "Maximum time to wait for lock (all of them) before aborting. Defaults to @samp{\"5 mins\"}." msgstr "" "Tiempo máximo esperado hasta el bloqueo (de todos los archivos) antes de interrumpir la operación.\n" "Su valor predeterminado es @samp{\"5 mins\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22439 +#: guix-git/doc/guix.texi:22801 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mbox-dotlock-change-timeout" msgstr "{parámetro de @code{dovecot-configuration}} string mbox-dotlock-change-timeout" #. type: deftypevr -#: guix-git/doc/guix.texi:22443 +#: guix-git/doc/guix.texi:22805 msgid "If dotlock exists but the mailbox isn't modified in any way, override the lock file after this much time. Defaults to @samp{\"2 mins\"}." msgstr "" "Si existe el archivo dotlock pero la bandeja no se ha modificado de ninguna manera, ignora el archivo de bloqueo tras este tiempo.\n" "Su valor predeterminado es @samp{\"2 mins\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22445 +#: guix-git/doc/guix.texi:22807 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-dirty-syncs?" msgstr "{parámetro de @code{dovecot-configuration}} boolean mbox-dirty-syncs?" #. type: deftypevr -#: guix-git/doc/guix.texi:22456 +#: guix-git/doc/guix.texi:22818 msgid "When mbox changes unexpectedly we have to fully read it to find out what changed. If the mbox is large this can take a long time. Since the change is usually just a newly appended mail, it'd be faster to simply read the new mails. If this setting is enabled, Dovecot does this but still safely fallbacks to re-reading the whole mbox file whenever something in mbox isn't how it's expected to be. The only real downside to this setting is that if some other MUA changes message flags, Dovecot doesn't notice it immediately. Note that a full sync is done with SELECT, EXAMINE, EXPUNGE and CHECK commands. Defaults to @samp{#t}." msgstr "" "Cuando el archivo mbox cambie de manera inesperada, se tiene que leer completamente para encontrar los cambios. Si es grande puede tardar bastante tiempo. Deido a que el cambio habitualmente es un nuevo correo añadido al final, sería más rápido únicamente leer los correos nuevos. Si se activa esta opción, Dovecot hace esto pero de todos modos vuelve a leer el archivo mbox al completo cuando algo en la bandeja no se encuentra como se esperaba. La única desventaja real de esta configuración es que si otro MUA cambia las opciones de los mensajes, Dovecot no tiene constancia de ello de manera inmediata. Tenga en cuenta que una sincronización completa se lleva a cabo con las órdenes SELECT, EXAMINE, EXPUNGE y CHECK.\n" "Su valor predeterminado es @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:22458 +#: guix-git/doc/guix.texi:22820 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-very-dirty-syncs?" msgstr "{parámetro de @code{dovecot-configuration}} boolean mbox-very-dirty-syncs?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22463 +#: guix-git/doc/guix.texi:22825 msgid "Like @samp{mbox-dirty-syncs}, but don't do full syncs even with SELECT, EXAMINE, EXPUNGE or CHECK commands. If this is set, @samp{mbox-dirty-syncs} is ignored. Defaults to @samp{#f}." msgstr "" "Como @samp{mbox-dirty-syncs}, pero no realiza sincronizaciones completas tampoco con las órdenes SELECT, EXAMINE, EXPUNGE o CHECK. Si se configura este valor, @samp{mbox-dirty-syncs} se ignora.\n" "Su valor predeterminado es @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22465 +#: guix-git/doc/guix.texi:22827 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-lazy-writes?" msgstr "{parámetro de @code{dovecot-configuration}} boolean mbox-lazy-writes?" # FUZZY FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22471 +#: guix-git/doc/guix.texi:22833 msgid "Delay writing mbox headers until doing a full write sync (EXPUNGE and CHECK commands and when closing the mailbox). This is especially useful for POP3 where clients often delete all mails. The downside is that our changes aren't immediately visible to other MUAs. Defaults to @samp{#t}." msgstr "" "Retrasa la escritura de las cabeceras de mbox hasta que se realice una escritura completa sincronizada (con las órdenes EXPUNGE y CHECK, y al cerrar la bandeja de correo). Es útil especialmente con POP3, donde el cliente habitualmente borra todos los correos. La desventaja es que nuestros cambios no son visibles para otros MUA de manera inmediata.\n" "Su valor predeterminado es @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:22473 +#: guix-git/doc/guix.texi:22835 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mbox-min-index-size" msgstr "{parámetro de @code{dovecot-configuration}} entero-no-negativo mbox-min-index-size" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22478 +#: guix-git/doc/guix.texi:22840 msgid "If mbox size is smaller than this (e.g.@: 100k), don't write index files. If an index file already exists it's still read, just not updated. Defaults to @samp{0}." msgstr "" "Si el tamaño del archivo mbox es menor que este valor (por ejemplo, 100k), no escribe archivos de índice. Si el archivo de índice ya existe, todavía se usa para la lectura, pero no se actualiza.\n" "Su valor predeterminado es @samp{0}." #. type: deftypevr -#: guix-git/doc/guix.texi:22480 +#: guix-git/doc/guix.texi:22842 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mdbox-rotate-size" msgstr "{parámetro de @code{dovecot-configuration}} entero-no-negativo mdbox-rotate-size" #. type: deftypevr -#: guix-git/doc/guix.texi:22483 +#: guix-git/doc/guix.texi:22845 msgid "Maximum dbox file size until it's rotated. Defaults to @samp{10000000}." msgstr "" "Tamaño máximo del archivo dbox hasta su rotación.\n" "Su valor predeterminado es @samp{10000000}." #. type: deftypevr -#: guix-git/doc/guix.texi:22485 +#: guix-git/doc/guix.texi:22847 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mdbox-rotate-interval" msgstr "{parámetro de @code{dovecot-configuration}} string mdbox-rotate-interval" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22490 +#: guix-git/doc/guix.texi:22852 msgid "Maximum dbox file age until it's rotated. Typically in days. Day begins from midnight, so 1d = today, 2d = yesterday, etc. 0 = check disabled. Defaults to @samp{\"1d\"}." msgstr "" "Antigüedad máxima del archivo dbox hasta que se produce su rotación. Habitualmente en días. El día comienza a medianoche, por lo que 1d = hoy, 2d = ayer, etcétera. 0 = comprobación desactivada.\n" "Su valor predeterminado es @samp{\"1d\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22492 +#: guix-git/doc/guix.texi:22854 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mdbox-preallocate-space?" msgstr "{parámetro de @code{dovecot-configuration}} boolean mdbox-preallocate-space?" #. type: deftypevr -#: guix-git/doc/guix.texi:22497 +#: guix-git/doc/guix.texi:22859 msgid "When creating new mdbox files, immediately preallocate their size to @samp{mdbox-rotate-size}. This setting currently works only in Linux with some file systems (ext4, xfs). Defaults to @samp{#f}." msgstr "" "Cuando se crean nuevos archivos mdbox, reserva inmediatamente un tamaño de @samp{mbox-rotate-size}. Actualmente esta configuración funciona únicamente en Linux con determinados sistemas de archivos (ext4, xfs).\n" "Su valor predeterminado es @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22499 +#: guix-git/doc/guix.texi:22861 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-dir" msgstr "{parámetro de @code{dovecot-configuration}} string mail-attachment-dir" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22503 +#: guix-git/doc/guix.texi:22865 msgid "sdbox and mdbox support saving mail attachments to external files, which also allows single instance storage for them. Other backends don't support this for now." msgstr "sdbox y mdbox permiten el almacenamiento de adjuntos en archivos externos, lo que permite también su almacenamiento único. Otros motores no lo permiten por el momento." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22505 +#: guix-git/doc/guix.texi:22867 msgid "WARNING: This feature hasn't been tested much yet. Use at your own risk." msgstr "AVISO: Esta característica todavía no se ha probado mucho. Su uso queda bajo su propia responsabilidad." #. type: deftypevr -#: guix-git/doc/guix.texi:22508 +#: guix-git/doc/guix.texi:22870 msgid "Directory root where to store mail attachments. Disabled, if empty. Defaults to @samp{\"\"}." msgstr "" "Directorio raíz donde almacenar los adjuntos de los correos. Se desactiva en caso de estar vacío.\n" "Su valor predeterminado es @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22510 +#: guix-git/doc/guix.texi:22872 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-attachment-min-size" msgstr "{parámetro de @code{dovecot-configuration}} entero-no-negativo mail-attachment-min-size" #. type: deftypevr -#: guix-git/doc/guix.texi:22515 +#: guix-git/doc/guix.texi:22877 msgid "Attachments smaller than this aren't saved externally. It's also possible to write a plugin to disable saving specific attachments externally. Defaults to @samp{128000}." msgstr "" "Los adjuntos de menor tamaño que este valor no se almacenan externamente. También es posible la escritura de un módulo que deshabilite el almacenamiento externo de adjuntos específicos.\n" "Su valor predeterminado es @samp{128000}." #. type: deftypevr -#: guix-git/doc/guix.texi:22517 +#: guix-git/doc/guix.texi:22879 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-fs" msgstr "{parámetro de @code{dovecot-configuration}} string mail-attachment-fs" #. type: deftypevr -#: guix-git/doc/guix.texi:22519 +#: guix-git/doc/guix.texi:22881 msgid "File system backend to use for saving attachments:" msgstr "Motor del sistema de archivos usado para el almacenamiento de adjuntos:" #. type: item -#: guix-git/doc/guix.texi:22520 +#: guix-git/doc/guix.texi:22882 #, no-wrap msgid "posix" msgstr "posix" #. type: table -#: guix-git/doc/guix.texi:22522 +#: guix-git/doc/guix.texi:22884 msgid "No SiS done by Dovecot (but this might help FS's own deduplication)" msgstr "Dovecot no lleva a cabo el SiS (aunque esto puede ayudar a la deduplicación del propio sistema de archivos)" #. type: item -#: guix-git/doc/guix.texi:22522 +#: guix-git/doc/guix.texi:22884 #, no-wrap msgid "sis posix" msgstr "sis posix" #. type: table -#: guix-git/doc/guix.texi:22524 +#: guix-git/doc/guix.texi:22886 msgid "SiS with immediate byte-by-byte comparison during saving" msgstr "SiS con comparación inmediata byte-por-byte durante el almacenamiento." #. type: item -#: guix-git/doc/guix.texi:22524 +#: guix-git/doc/guix.texi:22886 #, no-wrap msgid "sis-queue posix" msgstr "sis-queue posix" #. type: table -#: guix-git/doc/guix.texi:22526 +#: guix-git/doc/guix.texi:22888 msgid "SiS with delayed comparison and deduplication." msgstr "SiS mediante comparación retrasada y deduplicación." #. type: deftypevr -#: guix-git/doc/guix.texi:22528 +#: guix-git/doc/guix.texi:22890 msgid "Defaults to @samp{\"sis posix\"}." msgstr "El valor predeterminado es @samp{\"sis posix\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22530 +#: guix-git/doc/guix.texi:22892 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-hash" msgstr "{parámetro de @code{dovecot-configuration}} string mail-attachment-hash" #. type: deftypevr -#: guix-git/doc/guix.texi:22536 +#: guix-git/doc/guix.texi:22898 msgid "Hash format to use in attachment filenames. You can add any text and variables: @code{%@{md4@}}, @code{%@{md5@}}, @code{%@{sha1@}}, @code{%@{sha256@}}, @code{%@{sha512@}}, @code{%@{size@}}. Variables can be truncated, e.g.@: @code{%@{sha256:80@}} returns only first 80 bits. Defaults to @samp{\"%@{sha1@}\"}." msgstr "" "Formato del hash usado en los archivos adjuntos. Puede añadir cualquier texto y variables: @code{%@{md4@}}, @code{%@{md5@}}, @code{%@{sha1@}}, @code{%@{sha256@}}, @code{%@{sha512@}}, @code{%@{size@}}. Las variables pueden reducirse, por ejemplo @code{%@{sha256:80@}} devuelve únicamente los primeros 80 bits.\n" "Su valor predeterminado es @samp{\"%@{sha1@}\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22538 +#: guix-git/doc/guix.texi:22900 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-process-limit" msgstr "{parámetro de @code{dovecot-configuration}} entero-no-negativo default-process-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:22543 +#: guix-git/doc/guix.texi:22905 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-client-limit" msgstr "{parámetro de @code{dovecot-configuration}} entero-no-negativo default-client-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:22546 guix-git/doc/guix.texi:30171 +#: guix-git/doc/guix.texi:22908 guix-git/doc/guix.texi:30536 msgid "Defaults to @samp{1000}." msgstr "El valor predeterminado es @samp{1000}." #. type: deftypevr -#: guix-git/doc/guix.texi:22548 +#: guix-git/doc/guix.texi:22910 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-vsz-limit" msgstr "{parámetro de @code{dovecot-configuration}} entero-no-negativo default-vsz-limit" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22553 +#: guix-git/doc/guix.texi:22915 msgid "Default VSZ (virtual memory size) limit for service processes. This is mainly intended to catch and kill processes that leak memory before they eat up everything. Defaults to @samp{256000000}." msgstr "" "Límite predeterminado del tamaño de memoria virtual (VSZ) para procesos del servicio. Esta principalmente orientado a la captura y parada de procesos que pierden memoria antes de que utilicen toda la disponible.\n" "Su valor predeterminado es @samp{256000000}." #. type: deftypevr -#: guix-git/doc/guix.texi:22555 +#: guix-git/doc/guix.texi:22917 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string default-login-user" msgstr "{parámetro de @code{dovecot-configuration}} string default-login-user" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22560 +#: guix-git/doc/guix.texi:22922 msgid "Login user is internally used by login processes. This is the most untrusted user in Dovecot system. It shouldn't have access to anything at all. Defaults to @samp{\"dovenull\"}." msgstr "" "Usuaria de ingreso al sistema para los procesos de ingreso al sistema. Es la usuaria en la que menos se confía en el sistema Dovecot. No debería tener acceso a nada en absoluto.\n" "Su valor predeterminado es @samp{\"dovenull\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22562 +#: guix-git/doc/guix.texi:22924 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string default-internal-user" msgstr "{parámetro de @code{dovecot-configuration}} string default-internal-user" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22567 +#: guix-git/doc/guix.texi:22929 msgid "Internal user is used by unprivileged processes. It should be separate from login user, so that login processes can't disturb other processes. Defaults to @samp{\"dovecot\"}." msgstr "" "Usuaria interna usada por procesos sin privilegios. Debería ser distinta a la usuaria de ingreso, de modo que los procesos de ingreso al sistema no interfieran con otros procesos.\n" "Su valor predeterminado es @samp{\"dovecot\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22569 +#: guix-git/doc/guix.texi:22931 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string ssl?" msgstr "{parámetro de @code{dovecot-configuration}} string ssl?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22572 +#: guix-git/doc/guix.texi:22934 msgid "SSL/TLS support: yes, no, required. . Defaults to @samp{\"required\"}." msgstr "" "Si se permite SSL/TLS: @samp{yes} (sí), @samp{no}, @samp{required} (necesario). .\n" "Su valor predeterminado es @samp{\"required\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22574 +#: guix-git/doc/guix.texi:22936 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string ssl-cert" msgstr "{parámetro de @code{dovecot-configuration}} string ssl-cert" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22577 +#: guix-git/doc/guix.texi:22939 msgid "PEM encoded X.509 SSL/TLS certificate (public key). Defaults to @samp{\"@@dominio.\n" "Su valor predeterminado es @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22647 +#: guix-git/doc/guix.texi:23009 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean quota-full-tempfail?" msgstr "{parámetro de @code{dovecot-configuration}} boolean quota-full-tempfail?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22651 +#: guix-git/doc/guix.texi:23013 msgid "If user is over quota, return with temporary failure instead of bouncing the mail. Defaults to @samp{#f}." msgstr "" "Si la usuaria supera la cuota, devuelve un fallo temporal en vez de rechazar el correo.\n" "Su valor predeterminado es @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22653 +#: guix-git/doc/guix.texi:23015 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name sendmail-path" msgstr "{parámetro de @code{dovecot-configuration}} nombre-archivo sendmail-path" #. type: deftypevr -#: guix-git/doc/guix.texi:22656 +#: guix-git/doc/guix.texi:23018 msgid "Binary to use for sending mails. Defaults to @samp{\"/usr/sbin/sendmail\"}." msgstr "" "Binario usado para el envío de correos.\n" "Su valor predeterminado es @samp{\"/usr/sbin/sendmail\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22658 +#: guix-git/doc/guix.texi:23020 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string submission-host" msgstr "{parámetro de @code{dovecot-configuration}} string submission-host" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22662 +#: guix-git/doc/guix.texi:23024 msgid "If non-empty, send mails via this SMTP host[:port] instead of sendmail. Defaults to @samp{\"\"}." msgstr "" "Si no está vacío, envía el correo a través de esta máquina[:puerto] SMTP en vez de usar sendmail\n" "Su valor predeterminado es @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22664 +#: guix-git/doc/guix.texi:23026 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string rejection-subject" msgstr "{parámetro de @code{dovecot-configuration}} string rejection-subject" #. type: deftypevr -#: guix-git/doc/guix.texi:22668 +#: guix-git/doc/guix.texi:23030 msgid "Subject: header to use for rejection mails. You can use the same variables as for @samp{rejection-reason} below. Defaults to @samp{\"Rejected: %s\"}." msgstr "" "Asunto: cabecera usada en el rechazo de correos. Puede usar las mismas variables que las indicadas en @samp{rejection-reason} a continuación.\n" "Su valor predeterminado es @samp{\"Rejected: %s\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22670 +#: guix-git/doc/guix.texi:23032 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string rejection-reason" msgstr "{parámetro de @code{dovecot-configuration}} string rejection-reason" #. type: deftypevr -#: guix-git/doc/guix.texi:22673 +#: guix-git/doc/guix.texi:23035 msgid "Human readable error message for rejection mails. You can use variables:" msgstr "Mensaje de error legible por personas para el rechazo de correos. Puede usar variables:" #. type: table -#: guix-git/doc/guix.texi:22677 +#: guix-git/doc/guix.texi:23039 msgid "CRLF" msgstr "CRLF" #. type: item -#: guix-git/doc/guix.texi:22677 +#: guix-git/doc/guix.texi:23039 #, no-wrap msgid "%r" msgstr "%r" #. type: table -#: guix-git/doc/guix.texi:22679 +#: guix-git/doc/guix.texi:23041 msgid "reason" msgstr "razón" #. type: table -#: guix-git/doc/guix.texi:22681 +#: guix-git/doc/guix.texi:23043 msgid "original subject" msgstr "asunto original" #. type: item -#: guix-git/doc/guix.texi:22681 +#: guix-git/doc/guix.texi:23043 #, no-wrap msgid "%t" msgstr "%t" #. type: table -#: guix-git/doc/guix.texi:22683 +#: guix-git/doc/guix.texi:23045 msgid "recipient" msgstr "receptora" #. type: deftypevr -#: guix-git/doc/guix.texi:22685 +#: guix-git/doc/guix.texi:23047 msgid "Defaults to @samp{\"Your message to <%t> was automatically rejected:%n%r\"}." msgstr "El valor predeterminado es @samp{\"Your message to <%t> was automatically rejected:%n%r\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22687 +#: guix-git/doc/guix.texi:23049 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string recipient-delimiter" msgstr "{parámetro de @code{dovecot-configuration}} string recipient-delimiter" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22691 +#: guix-git/doc/guix.texi:23053 msgid "Delimiter character between local-part and detail in email address. Defaults to @samp{\"+\"}." msgstr "Carácter delimitador entre la parte local y el detalle en las direcciones de correo. Su valor predeterminado es @samp{\"+\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22693 +#: guix-git/doc/guix.texi:23055 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string lda-original-recipient-header" msgstr "{parámetro de @code{dovecot-configuration}} string lda-original-recipient-header" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22699 +#: guix-git/doc/guix.texi:23061 msgid "Header where the original recipient address (SMTP's RCPT TO: address) is taken from if not available elsewhere. With dovecot-lda -a parameter overrides this. A commonly used header for this is X-Original-To. Defaults to @samp{\"\"}." msgstr "" "Cabecera de donde se obtiene la dirección receptora original (la dirección de SMTP RCPT TO:) en caso de no estar disponible en otro lugar. El parámetro -a de dovecot-lda reemplaza este valor. Una cabecera usada para esto de manera común es X-Original-To.\n" "Su valor predeterminado es @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22701 +#: guix-git/doc/guix.texi:23063 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean lda-mailbox-autocreate?" msgstr "{parámetro de @code{dovecot-configuration}} boolean lda-mailbox-autocreate?" #. type: deftypevr -#: guix-git/doc/guix.texi:22705 +#: guix-git/doc/guix.texi:23067 msgid "Should saving a mail to a nonexistent mailbox automatically create it?. Defaults to @samp{#f}." msgstr "" "¿Se debe crear una bandeja de correo no existente de manera automática al almacenar un correo?\n" "Su valor predeterminado es @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22707 +#: guix-git/doc/guix.texi:23069 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean lda-mailbox-autosubscribe?" msgstr "{parámetro de @code{dovecot-configuration}} boolean lda-mailbox-autosubscribe?" #. type: deftypevr -#: guix-git/doc/guix.texi:22711 +#: guix-git/doc/guix.texi:23073 msgid "Should automatically created mailboxes be also automatically subscribed?. Defaults to @samp{#f}." msgstr "" "¿También Se deben crear suscripciones de manera automática a las bandejas de correo creadas?\n" "Su valor predeterminado es @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22713 +#: guix-git/doc/guix.texi:23075 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer imap-max-line-length" msgstr "{parámetro de @code{dovecot-configuration}} entero-no-negativo imap-max-line-length" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22719 +#: guix-git/doc/guix.texi:23081 msgid "Maximum IMAP command line length. Some clients generate very long command lines with huge mailboxes, so you may need to raise this if you get \"Too long argument\" or \"IMAP command line too large\" errors often. Defaults to @samp{64000}." msgstr "" "Longitud máxima de la línea de órdenes de IMAP. Algunos clientes generan líneas de órdenes muy largas con bandejas de correo enormes, por lo que debe incrementarlo si recibe los errores ``Too long argument'' (parámetro demasiado largo) o \"IMAP command line too large\" (línea de órdenes de IMAP demasiado grande).\n" "Su valor predeterminado es @samp{64000}." #. type: deftypevr -#: guix-git/doc/guix.texi:22721 +#: guix-git/doc/guix.texi:23083 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-logout-format" msgstr "{parámetro de @code{dovecot-configuration}} string imap-logout-format" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22723 +#: guix-git/doc/guix.texi:23085 msgid "IMAP logout format string:" msgstr "Formato de la cadena de IMAP de salida del sistema:" #. type: item -#: guix-git/doc/guix.texi:22724 +#: guix-git/doc/guix.texi:23086 #, no-wrap msgid "%i" msgstr "%i" #. type: table -#: guix-git/doc/guix.texi:22726 +#: guix-git/doc/guix.texi:23088 msgid "total number of bytes read from client" msgstr "número total de bytes leídos del cliente" #. type: item -#: guix-git/doc/guix.texi:22726 +#: guix-git/doc/guix.texi:23088 #, no-wrap msgid "%o" msgstr "%o" #. type: table -#: guix-git/doc/guix.texi:22728 +#: guix-git/doc/guix.texi:23090 msgid "total number of bytes sent to client." msgstr "número total de bytes enviados al cliente." #. type: deftypevr -#: guix-git/doc/guix.texi:22731 +#: guix-git/doc/guix.texi:23093 msgid "See @file{doc/wiki/Variables.txt} for a list of all the variables you can use. Defaults to @samp{\"in=%i out=%o deleted=%@{deleted@} expunged=%@{expunged@} trashed=%@{trashed@} hdr_count=%@{fetch_hdr_count@} hdr_bytes=%@{fetch_hdr_bytes@} body_count=%@{fetch_body_count@} body_bytes=%@{fetch_body_bytes@}\"}." msgstr "" "Véase @file{doc/wiki/Variables.txt} para obtener una lista completa de todas las variables que puede usar.\n" "Su valor predeterminado es @samp{\"in=%i out=%o deleted=%@{deleted@} expunged=%@{expunged@} trashed=%@{trashed@} hdr_count=%@{fetch_hdr_count@} hdr_bytes=%@{fetch_hdr_bytes@} body_count=%@{fetch_body_count@} body_bytes=%@{fetch_body_bytes@}\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22733 +#: guix-git/doc/guix.texi:23095 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-capability" msgstr "{parámetro de @code{dovecot-configuration}} string imap-capability" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22737 +#: guix-git/doc/guix.texi:23099 msgid "Override the IMAP CAPABILITY response. If the value begins with '+', add the given capabilities on top of the defaults (e.g.@: +XFOO XBAR). Defaults to @samp{\"\"}." msgstr "" "Fuerza el valor de la respuesta de IMAP CAPABILITY. Si el valor comienza con '+', añade las capacidades especificadas sobre las predeterminadas (por ejemplo, +XFOO XBAR).\n" "Su valor predeterminado es @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22739 +#: guix-git/doc/guix.texi:23101 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-idle-notify-interval" msgstr "{parámetro de @code{dovecot-configuration}} string imap-idle-notify-interval" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:22743 +#: guix-git/doc/guix.texi:23105 msgid "How long to wait between \"OK Still here\" notifications when client is IDLEing. Defaults to @samp{\"2 mins\"}." msgstr "" "Durante cuanto tiempo se espera entre notificaciones \"OK Still here\" cuando el cliente se encuentre en estado IDLE.\n" "Su valor predeterminado es @samp{\"2 mins\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22745 +#: guix-git/doc/guix.texi:23107 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-id-send" msgstr "{parámetro de @code{dovecot-configuration}} string imap-id-send" #. type: deftypevr -#: guix-git/doc/guix.texi:22751 +#: guix-git/doc/guix.texi:23113 msgid "ID field names and values to send to clients. Using * as the value makes Dovecot use the default value. The following fields have default values currently: name, version, os, os-version, support-url, support-email. Defaults to @samp{\"\"}." msgstr "" "Nombres y valores de campos de identificación (ID) que se enviarán a los clientes. El uso de * como un valor hace que Dovecot utilice el valor predeterminado. Los siguientes campos tienen actualmente valores predeterminados: name, version, os, os-version, support-url, support-email.\n" "Su valor predeterminado es @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22753 +#: guix-git/doc/guix.texi:23115 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-id-log" msgstr "{parámetro de @code{dovecot-configuration}} string imap-id-log" #. type: deftypevr -#: guix-git/doc/guix.texi:22756 +#: guix-git/doc/guix.texi:23118 msgid "ID fields sent by client to log. * means everything. Defaults to @samp{\"\"}." msgstr "" "Campos de identificación (ID) enviados para su registro por cliente. @code{*} significa todos.\n" "Su valor predeterminado es @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22758 +#: guix-git/doc/guix.texi:23120 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list imap-client-workarounds" msgstr "{parámetro de @code{dovecot-configuration}} lista-cadena-separada-espacios imap-client-workarounds" #. type: deftypevr -#: guix-git/doc/guix.texi:22760 +#: guix-git/doc/guix.texi:23122 msgid "Workarounds for various client bugs:" msgstr "Soluciones temporales para varios errores de clientes:" #. type: item -#: guix-git/doc/guix.texi:22762 +#: guix-git/doc/guix.texi:23124 #, no-wrap msgid "delay-newmail" msgstr "delay-newmail" #. type: table -#: guix-git/doc/guix.texi:22769 +#: guix-git/doc/guix.texi:23131 msgid "Send EXISTS/RECENT new mail notifications only when replying to NOOP and CHECK commands. Some clients ignore them otherwise, for example OSX Mail (' before setting it here, to get a feel for which cipher suites you will get. After setting this option, it is recommend that you inspect your Murmur log to ensure that Murmur is using the cipher suites that you expected it to." msgstr "Se recomienda que pruebe su cadena de protocolos con 'openssl ciphers ' antes de configurarla aquí, para que compruebe que protocolos obtendrá. Tras establecer el valor de esta opción se recomienda que inspeccione el registro de Murmur para asegurarse de que Murmur usa los protocolos que esperaba que usase." # FUZZY #. type: table -#: guix-git/doc/guix.texi:24159 +#: guix-git/doc/guix.texi:24521 msgid "Note: Changing this option may impact the backwards compatibility of your Murmur server, and can remove the ability for older Mumble clients to be able to connect to it." msgstr "Fíjese: El cambio de esta opción puede impactar en la compatibilidad con versiones anteriores de su servidor Murmur, y puede eliminar la posibilidad de conexión desde clientes Mumble antiguos." #. type: item -#: guix-git/doc/guix.texi:24160 +#: guix-git/doc/guix.texi:24522 #, no-wrap msgid "@code{public-registration} (default: @code{#f})" msgstr "@code{public-registration} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:24162 +#: guix-git/doc/guix.texi:24524 msgid "Must be a @code{} record or @code{#f}." msgstr "Debe ser un registro @code{} o @code{#f}." #. type: table -#: guix-git/doc/guix.texi:24167 +#: guix-git/doc/guix.texi:24529 msgid "You can optionally register your server in the public server list that the @code{mumble} client shows on startup. You cannot register your server if you have set a @code{server-password}, or set @code{allow-ping} to @code{#f}." msgstr "Puede registrar de manera opcional su servidor en la lista pública de servidores que el cliente @code{mumble} muestra al inicio. No puede registrar su servidor si tiene establecida una contraseña para el servidor (@code{server-password}), o establece @code{allow-ping} como @code{#f}." #. type: table -#: guix-git/doc/guix.texi:24169 +#: guix-git/doc/guix.texi:24531 msgid "It might take a few hours until it shows up in the public list." msgstr "Puede tomar algunas horas hasta que se muestre en la lista pública." #. type: item -#: guix-git/doc/guix.texi:24170 guix-git/doc/guix.texi:26407 +#: guix-git/doc/guix.texi:24532 guix-git/doc/guix.texi:26744 #, no-wrap msgid "@code{file} (default: @code{#f})" msgstr "@code{file} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:24172 +#: guix-git/doc/guix.texi:24534 msgid "Optional alternative override for this configuration." msgstr "Forma opcional alternativa de forzar el valor de esta configuración." #. type: deftp -#: guix-git/doc/guix.texi:24175 +#: guix-git/doc/guix.texi:24537 #, no-wrap msgid "{Data Type} murmur-public-registration-configuration" msgstr "{Tipo de datos} murmur-public-registration-configuration" #. type: deftp -#: guix-git/doc/guix.texi:24177 +#: guix-git/doc/guix.texi:24539 msgid "Configuration for public registration of a murmur service." msgstr "Configuración para registro público de un servicio de murmur." #. type: table -#: guix-git/doc/guix.texi:24181 +#: guix-git/doc/guix.texi:24543 #, fuzzy msgid "This is a display name for your server. Not to be confused with the hostname." msgstr "Este es el nombre mostrado de su servidor. No debe confundirse con el nombre de máquina." #. type: itemx -#: guix-git/doc/guix.texi:24182 guix-git/doc/guix.texi:33135 -#: guix-git/doc/guix.texi:34304 +#: guix-git/doc/guix.texi:24544 guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:34743 #, no-wrap msgid "password" msgstr "password" #. type: table -#: guix-git/doc/guix.texi:24185 +#: guix-git/doc/guix.texi:24547 #, fuzzy msgid "A password to identify your registration. Subsequent updates will need the same password. Don't lose your password." msgstr "Una contraseña para identificar su registro. Las actualizaciones siguientes necesitarán la misma contraseña. No pierda su contraseña." #. type: table -#: guix-git/doc/guix.texi:24189 +#: guix-git/doc/guix.texi:24551 msgid "This should be a @code{http://} or @code{https://} link to your web site." msgstr "Debe ser un enlace @code{http://} o @code{https://} a su página web." #. type: item -#: guix-git/doc/guix.texi:24190 guix-git/doc/guix.texi:27292 +#: guix-git/doc/guix.texi:24552 guix-git/doc/guix.texi:27629 #, no-wrap msgid "@code{hostname} (default: @code{#f})" msgstr "@code{hostname} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:24193 +#: guix-git/doc/guix.texi:24555 msgid "By default your server will be listed by its IP address. If it is set your server will be linked by this host name instead." msgstr "De manera predeterminada su servidor se enumerará por sus direcciones IP. Si se usa esta opción, en vez de eso se enlazará a través de este nombre de máquina." #. type: Plain text -#: guix-git/doc/guix.texi:24203 +#: guix-git/doc/guix.texi:24565 #, fuzzy msgid "The @code{(gnu services file-sharing)} module provides services that assist with transferring files over peer-to-peer file-sharing networks." msgstr "El módulo @code{(gnu services networking)} proporciona servicios para configurar la interfaz de red." #. type: subsubheading -#: guix-git/doc/guix.texi:24204 +#: guix-git/doc/guix.texi:24566 #, fuzzy, no-wrap msgid "Transmission Daemon Service" msgstr "Servicio del daemon GSS" #. type: Plain text -#: guix-git/doc/guix.texi:24212 +#: guix-git/doc/guix.texi:24574 msgid "@uref{https://transmissionbt.com/, Transmission} is a flexible BitTorrent client that offers a variety of graphical and command-line interfaces. A @code{transmission-daemon-service-type} service provides Transmission's headless variant, @command{transmission-daemon}, as a system service, allowing users to share files via BitTorrent even when they are not logged in." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24213 +#: guix-git/doc/guix.texi:24575 #, fuzzy, no-wrap msgid "{Scheme Variable} transmission-daemon-service-type" msgstr "{Variable Scheme} ganeti-mond-service-type" #. type: deffn -#: guix-git/doc/guix.texi:24217 +#: guix-git/doc/guix.texi:24579 #, fuzzy msgid "The service type for the Transmission Daemon BitTorrent client. Its value must be a @code{transmission-daemon-configuration} object as in this example:" msgstr "Un tipo de servicio para el cliente de Let's Encrypt @code{certbot}. Su valor debe ser un registro @code{certbot-configuration} como en este ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:24228 +#: guix-git/doc/guix.texi:24590 #, no-wrap msgid "" "(service transmission-daemon-service-type\n" @@ -47578,7 +48291,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24233 +#: guix-git/doc/guix.texi:24595 #, no-wrap msgid "" " ;; Accept requests from this and other hosts on the\n" @@ -47589,7 +48302,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24237 +#: guix-git/doc/guix.texi:24599 #, no-wrap msgid "" " ;; Limit bandwidth use during work hours\n" @@ -47599,7 +48312,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24244 +#: guix-git/doc/guix.texi:24606 #, no-wrap msgid "" " (alt-speed-time-enabled? #t)\n" @@ -47611,49 +48324,49 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24257 +#: guix-git/doc/guix.texi:24619 msgid "Once the service is started, users can interact with the daemon through its Web interface (at @code{http://localhost:9091/}) or by using the @command{transmission-remote} command-line tool, available in the @code{transmission} package. (Emacs users may want to also consider the @code{emacs-transmission} package.) Both communicate with the daemon through its remote procedure call (RPC) interface, which by default is available to all users on the system; you may wish to change this by assigning values to the @code{rpc-authentication-required?}, @code{rpc-username} and @code{rpc-password} settings, as shown in the example above and documented further below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24265 +#: guix-git/doc/guix.texi:24627 msgid "The value for @code{rpc-password} must be a password hash of the type generated and used by Transmission clients. This can be copied verbatim from an existing @file{settings.json} file, if another Transmission client is already being used. Otherwise, the @code{transmission-password-hash} and @code{transmission-random-salt} procedures provided by this module can be used to obtain a suitable hash value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24266 +#: guix-git/doc/guix.texi:24628 #, fuzzy, no-wrap msgid "{Scheme Procedure} transmission-password-hash @var{password} @var{salt}" msgstr "{Procedimiento Scheme} valid-path? @var{servidor} @var{ruta}" #. type: deffn -#: guix-git/doc/guix.texi:24270 +#: guix-git/doc/guix.texi:24632 msgid "Returns a string containing the result of hashing @var{password} together with @var{salt}, in the format recognized by Transmission clients for their @code{rpc-password} configuration setting." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24274 +#: guix-git/doc/guix.texi:24636 msgid "@var{salt} must be an eight-character string. The @code{transmission-random-salt} procedure can be used to generate a suitable salt value at random." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24276 +#: guix-git/doc/guix.texi:24638 #, fuzzy, no-wrap msgid "{Scheme Procedure} transmission-random-salt" msgstr "{Procedimiento Scheme} cuirass-service-type" #. type: deffn -#: guix-git/doc/guix.texi:24280 +#: guix-git/doc/guix.texi:24642 msgid "Returns a string containing a random, eight-character salt value of the type generated and used by Transmission clients, suitable for passing to the @code{transmission-password-hash} procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24286 +#: guix-git/doc/guix.texi:24648 msgid "These procedures are accessible from within a Guile REPL started with the @command{guix repl} command (@pxref{Invoking guix repl}). This is useful for obtaining a random salt value to provide as the second parameter to `transmission-password-hash`, as in this example session:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:24292 +#: guix-git/doc/guix.texi:24654 #, no-wrap msgid "" "$ guix repl\n" @@ -47663,12 +48376,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24295 +#: guix-git/doc/guix.texi:24657 msgid "Alternatively, a complete password hash can generated in a single step:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:24300 +#: guix-git/doc/guix.texi:24662 #, no-wrap msgid "" "scheme@@(guix-user)> (transmission-password-hash \"transmission\"\n" @@ -47677,502 +48390,502 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24305 +#: guix-git/doc/guix.texi:24667 msgid "The resulting string can be used as-is for the value of @code{rpc-password}, allowing the password to be kept hidden even in the operating-system configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24314 +#: guix-git/doc/guix.texi:24676 msgid "Torrent files downloaded by the daemon are directly accessible only to users in the ``transmission'' user group, who receive read-only access to the directory specified by the @code{download-dir} configuration setting (and also the directory specified by @code{incomplete-dir}, if @code{incomplete-dir-enabled?} is @code{#t}). Downloaded files can be moved to another directory or deleted altogether using @command{transmission-remote} with its @code{--move} and @code{--remove-and-delete} options." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24321 +#: guix-git/doc/guix.texi:24683 msgid "If the @code{watch-dir-enabled?} setting is set to @code{#t}, users in the ``transmission'' group are able also to place @file{.torrent} files in the directory specified by @code{watch-dir} to have the corresponding torrents added by the daemon. (The @code{trash-original-torrent-files?} setting controls whether the daemon deletes these files after processing them.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24326 +#: guix-git/doc/guix.texi:24688 msgid "Some of the daemon's configuration settings can be changed temporarily by @command{transmission-remote} and similar tools. To undo these changes, use the service's @code{reload} action to have the daemon reload its settings from disk:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:24329 +#: guix-git/doc/guix.texi:24691 #, fuzzy, no-wrap msgid "# herd reload transmission-daemon\n" msgstr "herd start ssh-daemon\n" #. type: Plain text -#: guix-git/doc/guix.texi:24333 +#: guix-git/doc/guix.texi:24695 #, fuzzy msgid "The full set of available configuration settings is defined by the @code{transmission-daemon-configuration} data type." msgstr "Una lista de configuraciones de passdb, cada una creada por el constructor @code{passdb-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:24334 +#: guix-git/doc/guix.texi:24696 #, fuzzy, no-wrap msgid "{Data Type} transmission-daemon-configuration" msgstr "{Tipo de datos} git-daemon-configuration" #. type: deftp -#: guix-git/doc/guix.texi:24338 +#: guix-git/doc/guix.texi:24700 msgid "The data type representing configuration settings for Transmission Daemon. These correspond directly to the settings recognized by Transmission clients in their @file{settings.json} file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24352 +#: guix-git/doc/guix.texi:24714 #, fuzzy msgid "Available @code{transmission-daemon-configuration} fields are:" msgstr "Los campos disponibles de @code{passdb-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:24353 +#: guix-git/doc/guix.texi:24715 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} package transmission" msgstr "{parámetro de @code{prosody-configuration}} package prosody" #. type: deftypevr -#: guix-git/doc/guix.texi:24355 +#: guix-git/doc/guix.texi:24717 #, fuzzy msgid "The Transmission package to use." msgstr "El paquete Kmscon usado." #. type: deftypevr -#: guix-git/doc/guix.texi:24358 +#: guix-git/doc/guix.texi:24720 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer stop-wait-period" msgstr "{parámetro de @code{dovecot-configuration}} entero-no-negativo last-valid-uid" #. type: deftypevr -#: guix-git/doc/guix.texi:24364 +#: guix-git/doc/guix.texi:24726 msgid "The period, in seconds, to wait when stopping the service for @command{transmission-daemon} to exit before killing its process. This allows the daemon time to complete its housekeeping and send a final update to trackers as it shuts down. On slow hosts, or hosts with a slow network connection, this value may need to be increased." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24366 guix-git/doc/guix.texi:24738 -#: guix-git/doc/guix.texi:32101 guix-git/doc/guix.texi:32336 -#: guix-git/doc/guix.texi:32344 guix-git/doc/guix.texi:32352 +#: guix-git/doc/guix.texi:24728 guix-git/doc/guix.texi:25100 +#: guix-git/doc/guix.texi:32466 guix-git/doc/guix.texi:32701 +#: guix-git/doc/guix.texi:32709 guix-git/doc/guix.texi:32717 msgid "Defaults to @samp{10}." msgstr "El valor predeterminado es @samp{10}." #. type: deftypevr -#: guix-git/doc/guix.texi:24369 +#: guix-git/doc/guix.texi:24731 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string download-dir" msgstr "{parámetro de @code{namespace-configuration}} string location" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:24371 +#: guix-git/doc/guix.texi:24733 #, fuzzy msgid "The directory to which torrent files are downloaded." msgstr "El directorio al que se debe asociar el sistema de archivos." #. type: deftypevr -#: guix-git/doc/guix.texi:24373 +#: guix-git/doc/guix.texi:24735 #, fuzzy msgid "Defaults to @samp{\"/var/lib/transmission-daemon/downloads\"}." msgstr "El valor predeterminado es @samp{\"/var/lib/getmail/default\"}." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:24376 +#: guix-git/doc/guix.texi:24738 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean incomplete-dir-enabled?" msgstr "{parámetro de @code{dovecot-configuration}} boolean mmap-disable?" #. type: deftypevr -#: guix-git/doc/guix.texi:24381 +#: guix-git/doc/guix.texi:24743 msgid "If @code{#t}, files will be held in @code{incomplete-dir} while their torrent is being downloaded, then moved to @code{download-dir} once the torrent is complete. Otherwise, files for all torrents (including those still being downloaded) will be placed in @code{download-dir}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24386 +#: guix-git/doc/guix.texi:24748 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string incomplete-dir" msgstr "{parámetro de @code{ssl-configuration}} maybe-string ciphers" #. type: deftypevr -#: guix-git/doc/guix.texi:24389 +#: guix-git/doc/guix.texi:24751 msgid "The directory in which files from incompletely downloaded torrents will be held when @code{incomplete-dir-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24394 +#: guix-git/doc/guix.texi:24756 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} umask umask" msgstr "{parámetro de @code{zabbix-agent-configuration}} string user" #. type: deftypevr -#: guix-git/doc/guix.texi:24397 +#: guix-git/doc/guix.texi:24759 msgid "The file mode creation mask used for downloaded files. (See the @command{umask} man page for more information.)" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24399 +#: guix-git/doc/guix.texi:24761 #, fuzzy msgid "Defaults to @samp{18}." msgstr "El valor predeterminado es @samp{128}." #. type: deftypevr -#: guix-git/doc/guix.texi:24402 +#: guix-git/doc/guix.texi:24764 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rename-partial-files?" msgstr "{parámetro de @code{getmail-options-configuration}} boolean read-all" #. type: deftypevr -#: guix-git/doc/guix.texi:24405 +#: guix-git/doc/guix.texi:24767 msgid "When @code{#t}, ``.part'' is appended to the name of partially downloaded files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24410 +#: guix-git/doc/guix.texi:24772 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} preallocation-mode preallocation" msgstr "{parámetro de @code{namespace-configuration}} string location" #. type: deftypevr -#: guix-git/doc/guix.texi:24415 +#: guix-git/doc/guix.texi:24777 msgid "The mode by which space should be preallocated for downloaded files, one of @code{none}, @code{fast} (or @code{sparse}) and @code{full}. Specifying @code{full} will minimize disk fragmentation at a cost to file-creation speed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24417 +#: guix-git/doc/guix.texi:24779 #, fuzzy msgid "Defaults to @samp{fast}." msgstr "El valor predeterminado es @samp{#f}" #. type: deftypevr -#: guix-git/doc/guix.texi:24420 +#: guix-git/doc/guix.texi:24782 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean watch-dir-enabled?" msgstr "{parámetro de @code{tlp-configuration}} boolean tlp-enable?" #. type: deftypevr -#: guix-git/doc/guix.texi:24425 +#: guix-git/doc/guix.texi:24787 msgid "If @code{#t}, the directory specified by @code{watch-dir} will be watched for new @file{.torrent} files and the torrents they describe added automatically (and the original files removed, if @code{trash-original-torrent-files?} is @code{#t})." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24430 +#: guix-git/doc/guix.texi:24792 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string watch-dir" msgstr "{parámetro de @code{ssl-configuration}} maybe-string ciphers" #. type: deftypevr -#: guix-git/doc/guix.texi:24433 +#: guix-git/doc/guix.texi:24795 msgid "The directory to be watched for @file{.torrent} files indicating new torrents to be added, when @code{watch-dir-enabled} is @code{#t}." msgstr "" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:24438 +#: guix-git/doc/guix.texi:24800 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean trash-original-torrent-files?" msgstr "{parámetro de @code{namespace-configuration}} boolean subscriptions?" #. type: deftypevr -#: guix-git/doc/guix.texi:24442 +#: guix-git/doc/guix.texi:24804 msgid "When @code{#t}, @file{.torrent} files will be deleted from the watch directory once their torrent has been added (see @code{watch-directory-enabled?})." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24447 +#: guix-git/doc/guix.texi:24809 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean speed-limit-down-enabled?" msgstr "{parámetro de @code{tlp-configuration}} boolean tlp-enable?" #. type: deftypevr -#: guix-git/doc/guix.texi:24450 +#: guix-git/doc/guix.texi:24812 msgid "When @code{#t}, the daemon's download speed will be limited to the rate specified by @code{speed-limit-down}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24455 +#: guix-git/doc/guix.texi:24817 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer speed-limit-down" msgstr "{parámetro de @code{service-configuration}} entero-no-negativo vsz-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:24457 +#: guix-git/doc/guix.texi:24819 msgid "The default global-maximum download speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24462 +#: guix-git/doc/guix.texi:24824 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean speed-limit-up-enabled?" msgstr "{parámetro de @code{tlp-configuration}} boolean tlp-enable?" #. type: deftypevr -#: guix-git/doc/guix.texi:24465 +#: guix-git/doc/guix.texi:24827 msgid "When @code{#t}, the daemon's upload speed will be limited to the rate specified by @code{speed-limit-up}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24470 +#: guix-git/doc/guix.texi:24832 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer speed-limit-up" msgstr "{parámetro de @code{service-configuration}} entero-no-negativo vsz-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:24472 +#: guix-git/doc/guix.texi:24834 msgid "The default global-maximum upload speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24477 +#: guix-git/doc/guix.texi:24839 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean alt-speed-enabled?" msgstr "{parámetro de @code{tlp-configuration}} boolean tlp-enable?" #. type: deftypevr -#: guix-git/doc/guix.texi:24483 +#: guix-git/doc/guix.texi:24845 msgid "When @code{#t}, the alternate speed limits @code{alt-speed-down} and @code{alt-speed-up} are used (in place of @code{speed-limit-down} and @code{speed-limit-up}, if they are enabled) to constrain the daemon's bandwidth usage. This can be scheduled to occur automatically at certain times during the week; see @code{alt-speed-time-enabled?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24488 +#: guix-git/doc/guix.texi:24850 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-down" msgstr "{parámetro de @code{service-configuration}} entero-no-negativo service-count" #. type: deftypevr -#: guix-git/doc/guix.texi:24490 +#: guix-git/doc/guix.texi:24852 msgid "The alternate global-maximum download speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24492 guix-git/doc/guix.texi:24499 -#: guix-git/doc/guix.texi:24671 guix-git/doc/guix.texi:32108 -#: guix-git/doc/guix.texi:32123 +#: guix-git/doc/guix.texi:24854 guix-git/doc/guix.texi:24861 +#: guix-git/doc/guix.texi:25033 guix-git/doc/guix.texi:32473 +#: guix-git/doc/guix.texi:32488 msgid "Defaults to @samp{50}." msgstr "El valor predeterminado es @samp{50}." #. type: deftypevr -#: guix-git/doc/guix.texi:24495 +#: guix-git/doc/guix.texi:24857 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-up" msgstr "{parámetro de @code{dovecot-configuration}} entero-no-negativo last-valid-uid" #. type: deftypevr -#: guix-git/doc/guix.texi:24497 +#: guix-git/doc/guix.texi:24859 msgid "The alternate global-maximum upload speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24502 +#: guix-git/doc/guix.texi:24864 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean alt-speed-time-enabled?" msgstr "{parámetro de @code{tlp-configuration}} boolean tlp-enable?" #. type: deftypevr -#: guix-git/doc/guix.texi:24507 +#: guix-git/doc/guix.texi:24869 msgid "When @code{#t}, the alternate speed limits @code{alt-speed-down} and @code{alt-speed-up} will be enabled automatically during the periods specified by @code{alt-speed-time-day}, @code{alt-speed-time-begin} and @code{alt-time-speed-end}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24512 +#: guix-git/doc/guix.texi:24874 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} day-list alt-speed-time-day" msgstr "{parámetro de @code{zabbix-agent-configuration}} lista server-active" #. type: deftypevr -#: guix-git/doc/guix.texi:24517 +#: guix-git/doc/guix.texi:24879 msgid "The days of the week on which the alternate-speed schedule should be used, specified either as a list of days (@code{sunday}, @code{monday}, and so on) or using one of the symbols @code{weekdays}, @code{weekends} or @code{all}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24519 +#: guix-git/doc/guix.texi:24881 #, fuzzy msgid "Defaults to @samp{all}." msgstr "El valor predeterminado es @samp{0}." #. type: deftypevr -#: guix-git/doc/guix.texi:24522 +#: guix-git/doc/guix.texi:24884 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-time-begin" msgstr "{parámetro de @code{dovecot-configuration}} entero-no-negativo default-vsz-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:24525 +#: guix-git/doc/guix.texi:24887 msgid "The time of day at which to enable the alternate speed limits, expressed as a number of minutes since midnight." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24527 +#: guix-git/doc/guix.texi:24889 #, fuzzy msgid "Defaults to @samp{540}." msgstr "El valor predeterminado es @samp{50}." #. type: deftypevr -#: guix-git/doc/guix.texi:24530 +#: guix-git/doc/guix.texi:24892 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-time-end" msgstr "{parámetro de @code{cups-configuration}} entero-no-negativo max-hold-time" #. type: deftypevr -#: guix-git/doc/guix.texi:24533 +#: guix-git/doc/guix.texi:24895 msgid "The time of day at which to disable the alternate speed limits, expressed as a number of minutes since midnight." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24535 +#: guix-git/doc/guix.texi:24897 #, fuzzy msgid "Defaults to @samp{1020}." msgstr "El valor predeterminado es @samp{100}." #. type: deftypevr -#: guix-git/doc/guix.texi:24538 +#: guix-git/doc/guix.texi:24900 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string bind-address-ipv4" msgstr "{parámetro de @code{inet-listener-configuration}} string address" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:24541 +#: guix-git/doc/guix.texi:24903 #, fuzzy msgid "The IP address at which to listen for peer connections, or ``0.0.0.0'' to listen at all available IP addresses." msgstr "La dirección de red (y, por tanto, la interfaz de red) en la que se esperarán conexiones. Use @code{\"0.0.0.0\"} para aceptar conexiones por todas las interfaces de red." #. type: deftypevr -#: guix-git/doc/guix.texi:24543 guix-git/doc/guix.texi:24846 -#: guix-git/doc/guix.texi:29969 +#: guix-git/doc/guix.texi:24905 guix-git/doc/guix.texi:25208 +#: guix-git/doc/guix.texi:30334 msgid "Defaults to @samp{\"0.0.0.0\"}." msgstr "El valor predeterminado es @samp{\"0.0.0.0\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:24546 +#: guix-git/doc/guix.texi:24908 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string bind-address-ipv6" msgstr "{parámetro de @code{inet-listener-configuration}} string address" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:24549 +#: guix-git/doc/guix.texi:24911 #, fuzzy msgid "The IPv6 address at which to listen for peer connections, or ``::'' to listen at all available IPv6 addresses." msgstr "La dirección de red (y, por tanto, la interfaz de red) en la que se esperarán conexiones. Use @code{\"0.0.0.0\"} para aceptar conexiones por todas las interfaces de red." #. type: deftypevr -#: guix-git/doc/guix.texi:24551 +#: guix-git/doc/guix.texi:24913 #, fuzzy msgid "Defaults to @samp{\"::\"}." msgstr "El valor predeterminado es @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:24554 +#: guix-git/doc/guix.texi:24916 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean peer-port-random-on-start?" msgstr "{parámetro de @code{tlp-configuration}} boolean bay-poweroff-on-bat?" #. type: deftypevr -#: guix-git/doc/guix.texi:24560 +#: guix-git/doc/guix.texi:24922 msgid "If @code{#t}, when the daemon starts it will select a port at random on which to listen for peer connections, from the range specified (inclusively) by @code{peer-port-random-low} and @code{peer-port-random-high}. Otherwise, it listens on the port specified by @code{peer-port}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24565 +#: guix-git/doc/guix.texi:24927 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port-random-low" msgstr "{parámetro de @code{zabbix-front-end-configuration}} number db-port" #. type: deftypevr -#: guix-git/doc/guix.texi:24568 +#: guix-git/doc/guix.texi:24930 msgid "The lowest selectable port number when @code{peer-port-random-on-start?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24570 +#: guix-git/doc/guix.texi:24932 #, fuzzy msgid "Defaults to @samp{49152}." msgstr "El valor predeterminado es @samp{15}." #. type: deftypevr -#: guix-git/doc/guix.texi:24573 +#: guix-git/doc/guix.texi:24935 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port-random-high" msgstr "{parámetro de @code{zabbix-front-end-configuration}} number db-port" #. type: deftypevr -#: guix-git/doc/guix.texi:24576 +#: guix-git/doc/guix.texi:24938 msgid "The highest selectable port number when @code{peer-port-random-on-start} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24578 +#: guix-git/doc/guix.texi:24940 #, fuzzy msgid "Defaults to @samp{65535}." msgstr "El valor predeterminado es @samp{5}." #. type: deftypevr -#: guix-git/doc/guix.texi:24581 +#: guix-git/doc/guix.texi:24943 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port" msgstr "{parámetro de @code{zabbix-front-end-configuration}} number db-port" #. type: deftypevr -#: guix-git/doc/guix.texi:24584 +#: guix-git/doc/guix.texi:24946 msgid "The port on which to listen for peer connections when @code{peer-port-random-on-start?} is @code{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24586 +#: guix-git/doc/guix.texi:24948 #, fuzzy msgid "Defaults to @samp{51413}." msgstr "El valor predeterminado es @samp{5432}." #. type: deftypevr -#: guix-git/doc/guix.texi:24589 +#: guix-git/doc/guix.texi:24951 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean port-forwarding-enabled?" msgstr "{parámetro de @code{tlp-configuration}} boolean tlp-enable?" #. type: deftypevr -#: guix-git/doc/guix.texi:24593 +#: guix-git/doc/guix.texi:24955 msgid "If @code{#t}, the daemon will attempt to configure port-forwarding on an upstream gateway automatically using @acronym{UPnP} and @acronym{NAT-PMP}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24598 +#: guix-git/doc/guix.texi:24960 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} encryption-mode encryption" msgstr "{parámetro de @code{cups-configuration}} cifrado-pred default-encryption" #. type: deftypevr -#: guix-git/doc/guix.texi:24603 +#: guix-git/doc/guix.texi:24965 msgid "The encryption preference for peer connections, one of @code{prefer-unencrypted-connections}, @code{prefer-encrypted-connections} or @code{require-encrypted-connections}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24605 +#: guix-git/doc/guix.texi:24967 #, fuzzy msgid "Defaults to @samp{prefer-encrypted-connections}." msgstr "El valor predeterminado es @samp{actions}." #. type: deftypevr -#: guix-git/doc/guix.texi:24608 +#: guix-git/doc/guix.texi:24970 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string peer-congestion-algorithm" msgstr "{parámetro de @code{ssl-configuration}} maybe-string protocol" #. type: deftypevr -#: guix-git/doc/guix.texi:24613 +#: guix-git/doc/guix.texi:24975 msgid "The TCP congestion-control algorithm to use for peer connections, specified using a string recognized by the operating system in calls to @code{setsockopt} (or set to @code{disabled}, in which case the operating-system default is used)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24622 +#: guix-git/doc/guix.texi:24984 msgid "Note that on GNU/Linux systems, the kernel must be configured to allow processes to use a congestion-control algorithm not in the default set; otherwise, it will deny these requests with ``Operation not permitted''. To see which algorithms are available on your system and which are currently permitted for use, look at the contents of the files @file{tcp_available_congestion_control} and @file{tcp_allowed_congestion_control} in the @file{/proc/sys/net/ipv4} directory." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24630 +#: guix-git/doc/guix.texi:24992 msgid "As an example, to have Transmission Daemon use @uref{http://www-ece.rice.edu/networks/TCP-LP/,the TCP Low Priority congestion-control algorithm}, you'll need to modify your kernel configuration to build in support for the algorithm, then update your operating-system configuration to allow its use by adding a @code{sysctl-service-type} service (or updating the existing one's configuration) with lines like the following:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24637 +#: guix-git/doc/guix.texi:24999 #, fuzzy, no-wrap msgid "" "(service sysctl-service-type\n" @@ -48186,547 +48899,547 @@ msgstr "" " (settings '((\"net.ipv4.ip_forward\" . \"1\")))))\n" #. type: deftypevr -#: guix-git/doc/guix.texi:24640 +#: guix-git/doc/guix.texi:25002 msgid "The Transmission Daemon configuration can then be updated with" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24643 +#: guix-git/doc/guix.texi:25005 #, no-wrap msgid "(peer-congestion-algorithm \"lp\")\n" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24646 +#: guix-git/doc/guix.texi:25008 msgid "and the system reconfigured to have the changes take effect." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24651 +#: guix-git/doc/guix.texi:25013 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} tcp-type-of-service peer-socket-tos" msgstr "{parámetro de @code{nslcd-configuration}} lista pam-services" #. type: deftypevr -#: guix-git/doc/guix.texi:24655 +#: guix-git/doc/guix.texi:25017 msgid "The type of service to request in outgoing @acronym{TCP} packets, one of @code{default}, @code{low-cost}, @code{throughput}, @code{low-delay} and @code{reliability}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24657 +#: guix-git/doc/guix.texi:25019 #, fuzzy msgid "Defaults to @samp{default}." msgstr "El valor predeterminado es @samp{\"default\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:24660 +#: guix-git/doc/guix.texi:25022 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-limit-global" msgstr "{parámetro de @code{service-configuration}} entero-no-negativo process-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:24662 +#: guix-git/doc/guix.texi:25024 msgid "The global limit on the number of connected peers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24664 +#: guix-git/doc/guix.texi:25026 #, fuzzy msgid "Defaults to @samp{200}." msgstr "El valor predeterminado es @samp{20}." #. type: deftypevr -#: guix-git/doc/guix.texi:24667 +#: guix-git/doc/guix.texi:25029 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-limit-per-torrent" msgstr "{parámetro de @code{service-configuration}} entero-no-negativo process-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:24669 +#: guix-git/doc/guix.texi:25031 msgid "The per-torrent limit on the number of connected peers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24674 +#: guix-git/doc/guix.texi:25036 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer upload-slots-per-torrent" msgstr "{parámetro de @code{cups-configuration}} entero-no-negativo max-clients-per-host" #. type: deftypevr -#: guix-git/doc/guix.texi:24677 +#: guix-git/doc/guix.texi:25039 msgid "The maximum number of peers to which the daemon will upload data simultaneously for each torrent." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24679 +#: guix-git/doc/guix.texi:25041 #, fuzzy msgid "Defaults to @samp{14}." msgstr "El valor predeterminado es @samp{1}." #. type: deftypevr -#: guix-git/doc/guix.texi:24682 +#: guix-git/doc/guix.texi:25044 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-id-ttl-hours" msgstr "{parámetro de @code{getmail-options-configuration}} entero-no-negativo verbose" #. type: deftypevr -#: guix-git/doc/guix.texi:24685 +#: guix-git/doc/guix.texi:25047 msgid "The maximum lifespan, in hours, of the peer ID associated with each public torrent before it is regenerated." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24687 +#: guix-git/doc/guix.texi:25049 #, fuzzy msgid "Defaults to @samp{6}." msgstr "El valor predeterminado es @samp{60}." #. type: deftypevr -#: guix-git/doc/guix.texi:24690 +#: guix-git/doc/guix.texi:25052 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean blocklist-enabled?" msgstr "{parámetro de @code{tlp-configuration}} boolean tlp-enable?" #. type: deftypevr -#: guix-git/doc/guix.texi:24693 +#: guix-git/doc/guix.texi:25055 msgid "When @code{#t}, the daemon will ignore peers mentioned in the blocklist it has most recently downloaded from @code{blocklist-url}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24698 +#: guix-git/doc/guix.texi:25060 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string blocklist-url" msgstr "{parámetro de @code{tlp-configuration}} maybe-string usb-blacklist" #. type: deftypevr -#: guix-git/doc/guix.texi:24702 +#: guix-git/doc/guix.texi:25064 msgid "The URL of a peer blocklist (in @acronym{P2P}-plaintext or eMule @file{.dat} format) to be periodically downloaded and applied when @code{blocklist-enabled?} is @code{#t}." msgstr "" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:24707 +#: guix-git/doc/guix.texi:25069 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean download-queue-enabled?" msgstr "{parámetro de @code{dovecot-configuration}} boolean dotlock-use-excl?" #. type: deftypevr -#: guix-git/doc/guix.texi:24710 +#: guix-git/doc/guix.texi:25072 msgid "If @code{#t}, the daemon will be limited to downloading at most @code{download-queue-size} non-stalled torrents simultaneously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24715 +#: guix-git/doc/guix.texi:25077 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer download-queue-size" msgstr "{parámetro de @code{dovecot-configuration}} entero-no-negativo mdbox-rotate-size" #. type: deftypevr -#: guix-git/doc/guix.texi:24719 +#: guix-git/doc/guix.texi:25081 msgid "The size of the daemon's download queue, which limits the number of non-stalled torrents it will download at any one time when @code{download-queue-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24724 +#: guix-git/doc/guix.texi:25086 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean seed-queue-enabled?" msgstr "{parámetro de @code{tlp-configuration}} boolean tlp-enable?" #. type: deftypevr -#: guix-git/doc/guix.texi:24727 +#: guix-git/doc/guix.texi:25089 msgid "If @code{#t}, the daemon will be limited to seeding at most @code{seed-queue-size} non-stalled torrents simultaneously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24732 +#: guix-git/doc/guix.texi:25094 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer seed-queue-size" msgstr "{parámetro de @code{getmail-options-configuration}} entero-no-negativo max-message-size" #. type: deftypevr -#: guix-git/doc/guix.texi:24736 +#: guix-git/doc/guix.texi:25098 msgid "The size of the daemon's seed queue, which limits the number of non-stalled torrents it will seed at any one time when @code{seed-queue-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24741 +#: guix-git/doc/guix.texi:25103 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean queue-stalled-enabled?" msgstr "{parámetro de @code{tlp-configuration}} boolean tlp-enable?" #. type: deftypevr -#: guix-git/doc/guix.texi:24746 +#: guix-git/doc/guix.texi:25108 msgid "When @code{#t}, the daemon will consider torrents for which it has not shared data in the past @code{queue-stalled-minutes} minutes to be stalled and not count them against its @code{download-queue-size} and @code{seed-queue-size} limits." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24751 +#: guix-git/doc/guix.texi:25113 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer queue-stalled-minutes" msgstr "{parámetro de @code{getmail-options-configuration}} entero-no-negativo delete-after" #. type: deftypevr -#: guix-git/doc/guix.texi:24755 +#: guix-git/doc/guix.texi:25117 msgid "The maximum period, in minutes, a torrent may be idle before it is considered to be stalled, when @code{queue-stalled-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24760 +#: guix-git/doc/guix.texi:25122 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean ratio-limit-enabled?" msgstr "{parámetro de @code{tlp-configuration}} boolean tlp-enable?" #. type: deftypevr -#: guix-git/doc/guix.texi:24763 +#: guix-git/doc/guix.texi:25125 msgid "When @code{#t}, a torrent being seeded will automatically be paused once it reaches the ratio specified by @code{ratio-limit}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24768 +#: guix-git/doc/guix.texi:25130 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-rational ratio-limit" msgstr "{parámetro de @code{service-configuration}} entero-no-negativo process-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:24771 +#: guix-git/doc/guix.texi:25133 msgid "The ratio at which a torrent being seeded will be paused, when @code{ratio-limit-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24773 +#: guix-git/doc/guix.texi:25135 #, fuzzy msgid "Defaults to @samp{2.0}." msgstr "El valor predeterminado es @samp{20}." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:24776 +#: guix-git/doc/guix.texi:25138 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean idle-seeding-limit-enabled?" msgstr "{parámetro de @code{namespace-configuration}} boolean hidden?" #. type: deftypevr -#: guix-git/doc/guix.texi:24779 +#: guix-git/doc/guix.texi:25141 msgid "When @code{#t}, a torrent being seeded will automatically be paused once it has been idle for @code{idle-seeding-limit} minutes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24784 +#: guix-git/doc/guix.texi:25146 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer idle-seeding-limit" msgstr "{parámetro de @code{service-configuration}} entero-no-negativo client-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:24788 +#: guix-git/doc/guix.texi:25150 msgid "The maximum period, in minutes, a torrent being seeded may be idle before it is paused, when @code{idle-seeding-limit-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24793 +#: guix-git/doc/guix.texi:25155 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean dht-enabled?" msgstr "{parámetro de @code{tlp-configuration}} boolean tlp-enable?" #. type: deftypevr -#: guix-git/doc/guix.texi:24797 +#: guix-git/doc/guix.texi:25159 msgid "Enable @uref{http://bittorrent.org/beps/bep_0005.html,the distributed hash table (@acronym{DHT}) protocol}, which supports the use of trackerless torrents." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24802 +#: guix-git/doc/guix.texi:25164 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean lpd-enabled?" msgstr "{parámetro de @code{tlp-configuration}} boolean tlp-enable?" #. type: deftypevr -#: guix-git/doc/guix.texi:24807 +#: guix-git/doc/guix.texi:25169 msgid "Enable @uref{https://en.wikipedia.org/wiki/Local_Peer_Discovery,local peer discovery} (@acronym{LPD}), which allows the discovery of peers on the local network and may reduce the amount of data sent over the public Internet." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24812 +#: guix-git/doc/guix.texi:25174 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean pex-enabled?" msgstr "{parámetro de @code{tlp-configuration}} boolean tlp-enable?" #. type: deftypevr -#: guix-git/doc/guix.texi:24816 +#: guix-git/doc/guix.texi:25178 msgid "Enable @uref{https://en.wikipedia.org/wiki/Peer_exchange,peer exchange} (@acronym{PEX}), which reduces the daemon's reliance on external trackers and may improve its performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24821 +#: guix-git/doc/guix.texi:25183 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean utp-enabled?" msgstr "{parámetro de @code{tlp-configuration}} boolean tlp-enable?" #. type: deftypevr -#: guix-git/doc/guix.texi:24826 +#: guix-git/doc/guix.texi:25188 msgid "Enable @uref{http://bittorrent.org/beps/bep_0029.html,the micro transport protocol} (@acronym{uTP}), which aims to reduce the impact of BitTorrent traffic on other users of the local network while maintaining full utilization of the available bandwidth." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24831 +#: guix-git/doc/guix.texi:25193 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-enabled?" msgstr "{parámetro de @code{tlp-configuration}} boolean tlp-enable?" #. type: deftypevr -#: guix-git/doc/guix.texi:24836 +#: guix-git/doc/guix.texi:25198 msgid "If @code{#t}, enable the remote procedure call (@acronym{RPC}) interface, which allows remote control of the daemon via its Web interface, the @command{transmission-remote} command-line client, and similar tools." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24841 +#: guix-git/doc/guix.texi:25203 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string rpc-bind-address" msgstr "{parámetro de @code{inet-listener-configuration}} string address" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:24844 +#: guix-git/doc/guix.texi:25206 #, fuzzy msgid "The IP address at which to listen for @acronym{RPC} connections, or ``0.0.0.0'' to listen at all available IP addresses." msgstr "La dirección de red (y, por tanto, la interfaz de red) en la que se esperarán conexiones. Use @code{\"0.0.0.0\"} para aceptar conexiones por todas las interfaces de red." #. type: deftypevr -#: guix-git/doc/guix.texi:24849 +#: guix-git/doc/guix.texi:25211 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number rpc-port" msgstr "{parámetro de @code{zabbix-front-end-configuration}} number db-port" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:24851 +#: guix-git/doc/guix.texi:25213 #, fuzzy msgid "The port on which to listen for @acronym{RPC} connections." msgstr "Puerto TCP en el que @command{sshd} espera conexiones entrantes." #. type: deftypevr -#: guix-git/doc/guix.texi:24853 +#: guix-git/doc/guix.texi:25215 #, fuzzy msgid "Defaults to @samp{9091}." msgstr "El valor predeterminado es @samp{0}." #. type: deftypevr -#: guix-git/doc/guix.texi:24856 +#: guix-git/doc/guix.texi:25218 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string rpc-url" msgstr "{parámetro de @code{zabbix-agent-configuration}} string user" #. type: deftypevr -#: guix-git/doc/guix.texi:24858 +#: guix-git/doc/guix.texi:25220 msgid "The path prefix to use in the @acronym{RPC}-endpoint @acronym{URL}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24860 +#: guix-git/doc/guix.texi:25222 #, fuzzy msgid "Defaults to @samp{\"/transmission/\"}." msgstr "El valor predeterminado es @samp{\"smbios\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:24863 +#: guix-git/doc/guix.texi:25225 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-authentication-required?" msgstr "{parámetro de @code{dovecot-configuration}} boolean auth-verbose?" #. type: deftypevr -#: guix-git/doc/guix.texi:24868 +#: guix-git/doc/guix.texi:25230 msgid "When @code{#t}, clients must authenticate (see @code{rpc-username} and @code{rpc-password}) when using the @acronym{RPC} interface. Note this has the side effect of disabling host-name whitelisting (see @code{rpc-host-whitelist-enabled?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24873 +#: guix-git/doc/guix.texi:25235 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string rpc-username" msgstr "{parámetro de @code{ssl-configuration}} maybe-string curve" #. type: deftypevr -#: guix-git/doc/guix.texi:24876 +#: guix-git/doc/guix.texi:25238 msgid "The username required by clients to access the @acronym{RPC} interface when @code{rpc-authentication-required?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24881 +#: guix-git/doc/guix.texi:25243 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-transmission-password-hash rpc-password" msgstr "{parámetro de @code{ssl-configuration}} maybe-string password" #. type: deftypevr -#: guix-git/doc/guix.texi:24887 +#: guix-git/doc/guix.texi:25249 msgid "The password required by clients to access the @acronym{RPC} interface when @code{rpc-authentication-required?} is @code{#t}. This must be specified using a password hash in the format recognized by Transmission clients, either copied from an existing @file{settings.json} file or generated using the @code{transmission-password-hash} procedure." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24892 +#: guix-git/doc/guix.texi:25254 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-whitelist-enabled?" msgstr "{parámetro de @code{tlp-configuration}} boolean tlp-enable?" #. type: deftypevr -#: guix-git/doc/guix.texi:24895 +#: guix-git/doc/guix.texi:25257 msgid "When @code{#t}, @acronym{RPC} requests will be accepted only when they originate from an address specified in @code{rpc-whitelist}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24900 +#: guix-git/doc/guix.texi:25262 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string-list rpc-whitelist" msgstr "{parámetro de @code{prosody-configuration}} lista-string admins" #. type: deftypevr -#: guix-git/doc/guix.texi:24904 +#: guix-git/doc/guix.texi:25266 msgid "The list of IP and IPv6 addresses from which @acronym{RPC} requests will be accepted when @code{rpc-whitelist-enabled?} is @code{#t}. Wildcards may be specified using @samp{*}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24906 +#: guix-git/doc/guix.texi:25268 #, fuzzy msgid "Defaults to @samp{(\"127.0.0.1\" \"::1\")}." msgstr "El valor predeterminado es @samp{\"127.0.0.1\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:24909 +#: guix-git/doc/guix.texi:25271 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-host-whitelist-enabled?" msgstr "{parámetro de @code{tlp-configuration}} boolean tlp-enable?" #. type: deftypevr -#: guix-git/doc/guix.texi:24914 +#: guix-git/doc/guix.texi:25276 msgid "When @code{#t}, @acronym{RPC} requests will be accepted only when they are addressed to a host named in @code{rpc-host-whitelist}. Note that requests to ``localhost'' or ``localhost.'', or to a numeric address, are always accepted regardless of these settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24917 +#: guix-git/doc/guix.texi:25279 msgid "Note also this functionality is disabled when @code{rpc-authentication-required?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24922 +#: guix-git/doc/guix.texi:25284 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string-list rpc-host-whitelist" msgstr "{parámetro de @code{prosody-configuration}} lista-string admins" #. type: deftypevr -#: guix-git/doc/guix.texi:24925 +#: guix-git/doc/guix.texi:25287 msgid "The list of host names recognized by the @acronym{RPC} server when @code{rpc-host-whitelist-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24930 +#: guix-git/doc/guix.texi:25292 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} message-level message-level" msgstr "{parámetro de @code{cups-configuration}} nivel-registro-acceso access-log-level" #. type: deftypevr -#: guix-git/doc/guix.texi:24934 +#: guix-git/doc/guix.texi:25296 msgid "The minimum severity level of messages to be logged (to @file{/var/log/transmission.log}) by the daemon, one of @code{none} (no logging), @code{error}, @code{info} and @code{debug}." msgstr "" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:24939 +#: guix-git/doc/guix.texi:25301 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean start-added-torrents?" msgstr "{parámetro de @code{namespace-configuration}} boolean hidden?" #. type: deftypevr -#: guix-git/doc/guix.texi:24942 +#: guix-git/doc/guix.texi:25304 msgid "When @code{#t}, torrents are started as soon as they are added; otherwise, they are added in ``paused'' state." msgstr "" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:24947 +#: guix-git/doc/guix.texi:25309 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean script-torrent-done-enabled?" msgstr "{parámetro de @code{namespace-configuration}} boolean subscriptions?" #. type: deftypevr -#: guix-git/doc/guix.texi:24951 +#: guix-git/doc/guix.texi:25313 msgid "When @code{#t}, the script specified by @code{script-torrent-done-filename} will be invoked each time a torrent completes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24956 +#: guix-git/doc/guix.texi:25318 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-file-object script-torrent-done-filename" msgstr "{parámetro de @code{ssl-configuration}} maybe-file-object cafile" #. type: deftypevr -#: guix-git/doc/guix.texi:24960 +#: guix-git/doc/guix.texi:25322 msgid "A file name or file-like object specifying a script to run each time a torrent completes, when @code{script-torrent-done-enabled?} is @code{#t}." msgstr "" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:24965 +#: guix-git/doc/guix.texi:25327 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean scrape-paused-torrents-enabled?" msgstr "{parámetro de @code{dovecot-configuration}} boolean mmap-disable?" #. type: deftypevr -#: guix-git/doc/guix.texi:24968 +#: guix-git/doc/guix.texi:25330 msgid "When @code{#t}, the daemon will scrape trackers for a torrent even when the torrent is paused." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24973 +#: guix-git/doc/guix.texi:25335 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer cache-size-mb" msgstr "{parámetro de @code{dovecot-configuration}} entero-no-negativo auth-cache-size" #. type: deftypevr -#: guix-git/doc/guix.texi:24977 +#: guix-git/doc/guix.texi:25339 msgid "The amount of memory, in megabytes, to allocate for the daemon's in-memory cache. A larger value may increase performance by reducing the frequency of disk I/O." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24979 +#: guix-git/doc/guix.texi:25341 #, fuzzy msgid "Defaults to @samp{4}." msgstr "El valor predeterminado es @samp{0}." #. type: deftypevr -#: guix-git/doc/guix.texi:24982 +#: guix-git/doc/guix.texi:25344 #, fuzzy, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean prefetch-enabled?" msgstr "{parámetro de @code{tlp-configuration}} boolean tlp-enable?" #. type: deftypevr -#: guix-git/doc/guix.texi:24986 +#: guix-git/doc/guix.texi:25348 msgid "When @code{#t}, the daemon will try to improve I/O performance by hinting to the operating system which data is likely to be read next from disk to satisfy requests from peers." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:24999 +#: guix-git/doc/guix.texi:25361 #, no-wrap msgid "Tailon Service" msgstr "Servicio Tailon" #. type: Plain text -#: guix-git/doc/guix.texi:25003 +#: guix-git/doc/guix.texi:25365 msgid "@uref{https://tailon.readthedocs.io/, Tailon} is a web application for viewing and searching log files." msgstr "@uref{https://tailon.readthedocs.io/, Tailon} es una aplicación web para la visualización y búsqueda en archivos de registro." #. type: Plain text -#: guix-git/doc/guix.texi:25006 +#: guix-git/doc/guix.texi:25368 msgid "The following example will configure the service with default values. By default, Tailon can be accessed on port 8080 (@code{http://localhost:8080})." msgstr "El ejemplo siguiente configura el servicio con los valores predeterminados. Por omisión, se puede acceder a Tailon en el puerto 8080 (@code{http://localhost:8080})." #. type: lisp -#: guix-git/doc/guix.texi:25009 +#: guix-git/doc/guix.texi:25371 #, no-wrap msgid "(service tailon-service-type)\n" msgstr "(service tailon-service-type)\n" #. type: Plain text -#: guix-git/doc/guix.texi:25013 +#: guix-git/doc/guix.texi:25375 msgid "The following example customises more of the Tailon configuration, adding @command{sed} to the list of allowed commands." msgstr "El ejemplo siguiente personaliza más la configuración de Tailon, añadiendo @command{sed} a la lista de órdenes permitidas." #. type: lisp -#: guix-git/doc/guix.texi:25020 +#: guix-git/doc/guix.texi:25382 #, no-wrap msgid "" "(service tailon-service-type\n" @@ -48742,35 +49455,35 @@ msgstr "" " (allowed-commands '(\"tail\" \"grep\" \"awk\" \"sed\"))))))\n" #. type: deftp -#: guix-git/doc/guix.texi:25023 +#: guix-git/doc/guix.texi:25385 #, no-wrap msgid "{Data Type} tailon-configuration" msgstr "{Tipo de datos} tailon-configuration" #. type: deftp -#: guix-git/doc/guix.texi:25026 +#: guix-git/doc/guix.texi:25388 msgid "Data type representing the configuration of Tailon. This type has the following parameters:" msgstr "Tipo de datos que representa la configuración de Tailon. Este tipo tiene los siguientes parámetros:" #. type: item -#: guix-git/doc/guix.texi:25028 +#: guix-git/doc/guix.texi:25390 #, no-wrap msgid "@code{config-file} (default: @code{(tailon-configuration-file)})" msgstr "@code{config-file} (predeterminado: @code{(tailon-configuration-file)})" #. type: table -#: guix-git/doc/guix.texi:25032 +#: guix-git/doc/guix.texi:25394 #, fuzzy msgid "The configuration file to use for Tailon. This can be set to a @dfn{tailon-configuration-file} record value, or any gexp (@pxref{G-Expressions})." msgstr "El archivo de configuración usado por Tailon. Su valor puede ser un registro @code{tailon-configuration-file} o cualquier expresión-G (@pxref{G-Expressions})." #. type: table -#: guix-git/doc/guix.texi:25035 +#: guix-git/doc/guix.texi:25397 msgid "For example, to instead use a local file, the @code{local-file} function can be used:" msgstr "Por ejemplo, para usar un archivo local, se puede usar la función @code{local-file}:" #. type: lisp -#: guix-git/doc/guix.texi:25040 +#: guix-git/doc/guix.texi:25402 #, no-wrap msgid "" "(service tailon-service-type\n" @@ -48782,75 +49495,75 @@ msgstr "" " (config-file (local-file \"./mi-tailon.conf\"))))\n" #. type: item -#: guix-git/doc/guix.texi:25042 +#: guix-git/doc/guix.texi:25404 #, no-wrap msgid "@code{package} (default: @code{tailon})" msgstr "@code{package} (predeterminado: @code{tailon})" #. type: table -#: guix-git/doc/guix.texi:25044 +#: guix-git/doc/guix.texi:25406 msgid "The tailon package to use." msgstr "El paquete tailon usado." #. type: deftp -#: guix-git/doc/guix.texi:25048 +#: guix-git/doc/guix.texi:25410 #, no-wrap msgid "{Data Type} tailon-configuration-file" msgstr "{Tipo de datos} tailon-configuration-file" #. type: deftp -#: guix-git/doc/guix.texi:25051 +#: guix-git/doc/guix.texi:25413 msgid "Data type representing the configuration options for Tailon. This type has the following parameters:" msgstr "Tipo de datos que representa las opciones de configuración de Tailon. Este tipo tiene los siguientes parámetros:" #. type: item -#: guix-git/doc/guix.texi:25053 +#: guix-git/doc/guix.texi:25415 #, no-wrap msgid "@code{files} (default: @code{(list \"/var/log\")})" msgstr "@code{files} (predeterminados: @code{(list \"/var/log\")})" #. type: table -#: guix-git/doc/guix.texi:25058 +#: guix-git/doc/guix.texi:25420 #, fuzzy msgid "List of files to display. The list can include strings for a single file or directory, or a list, where the first item is the name of a subsection, and the remaining items are the files or directories in that subsection." msgstr "Lista de archivos a mostrar. La lista puede incluir cadenas para un único archivo o directorio, o una lista, donde el primer elemento es el nombre de la subsección, y los elementos restantes son los archivos o directorios de dicha subsección." #. type: item -#: guix-git/doc/guix.texi:25059 +#: guix-git/doc/guix.texi:25421 #, no-wrap msgid "@code{bind} (default: @code{\"localhost:8080\"})" msgstr "@code{bind} (predeterminado: @code{\"localhost:8080\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:25061 +#: guix-git/doc/guix.texi:25423 msgid "Address and port to which Tailon should bind on." msgstr "Dirección y puerto al que Tailon debe asociarse." #. type: item -#: guix-git/doc/guix.texi:25062 +#: guix-git/doc/guix.texi:25424 #, no-wrap msgid "@code{relative-root} (default: @code{#f})" msgstr "@code{relative-root} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:25064 +#: guix-git/doc/guix.texi:25426 msgid "URL path to use for Tailon, set to @code{#f} to not use a path." msgstr "Ruta URL usada por Tailon, use @code{#f} para no usar una ruta." #. type: item -#: guix-git/doc/guix.texi:25065 +#: guix-git/doc/guix.texi:25427 #, no-wrap msgid "@code{allow-transfers?} (default: @code{#t})" msgstr "@code{allow-transfers?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:25067 +#: guix-git/doc/guix.texi:25429 msgid "Allow downloading the log files in the web interface." msgstr "Permite la descarga de archivos de registro en la interfaz web." #. type: item -#: guix-git/doc/guix.texi:25068 +#: guix-git/doc/guix.texi:25430 #, no-wrap msgid "@code{follow-names?} (default: @code{#t})" msgstr "@code{follow-names?} (predeterminado: @code{#t})" @@ -48862,40 +49575,40 @@ msgstr "@code{follow-names?} (predeterminado: @code{#t})" # dependiendo de la región... Lo dejo como lectura a falta de mejores # ideas. #. type: table -#: guix-git/doc/guix.texi:25070 +#: guix-git/doc/guix.texi:25432 msgid "Allow tailing of not-yet existent files." msgstr "Permite la lectura de archivos todavía no existentes." #. type: item -#: guix-git/doc/guix.texi:25071 +#: guix-git/doc/guix.texi:25433 #, no-wrap msgid "@code{tail-lines} (default: @code{200})" msgstr "@code{tail-lines} (predeterminado: @code{200})" #. type: table -#: guix-git/doc/guix.texi:25073 +#: guix-git/doc/guix.texi:25435 msgid "Number of lines to read initially from each file." msgstr "Número de líneas a leer inicialmente de cada archivo." #. type: item -#: guix-git/doc/guix.texi:25074 +#: guix-git/doc/guix.texi:25436 #, no-wrap msgid "@code{allowed-commands} (default: @code{(list \"tail\" \"grep\" \"awk\")})" msgstr "@code{allowed-commands} (predeterminadas: @code{(list \"tail\" \"grep\" \"awk\")})" #. type: table -#: guix-git/doc/guix.texi:25076 +#: guix-git/doc/guix.texi:25438 #, fuzzy msgid "Commands to allow running. By default, @code{sed} is disabled." msgstr "Órdenes cuya ejecución está permitida. Por defecto, @code{sed} está desactivado." #. type: table -#: guix-git/doc/guix.texi:25079 +#: guix-git/doc/guix.texi:25441 msgid "Set @code{debug?} to @code{#t} to show debug messages." msgstr "Proporcione el valor @code{#t} en @code{debug?} para mostrar mensajes de depuración." #. type: item -#: guix-git/doc/guix.texi:25080 +#: guix-git/doc/guix.texi:25442 #, no-wrap msgid "@code{wrap-lines} (default: @code{#t})" msgstr "@code{wrap-lines} (predeterminado: @code{#t})" @@ -48904,37 +49617,37 @@ msgstr "@code{wrap-lines} (predeterminado: @code{#t})" # # TODO (MAAV): Repensar traducción de wrap #. type: table -#: guix-git/doc/guix.texi:25084 +#: guix-git/doc/guix.texi:25446 #, fuzzy msgid "Initial line wrapping state in the web interface. Set to @code{#t} to initially wrap lines (the default), or to @code{#f} to initially not wrap lines." msgstr "Estado inicial del recorte de líneas en la interfaz web. El valor @code{#t} hace que las líneas se recorten inicialmente (comportamiento predeterminado), y el valor @code{#f} hace que no se recorten de manera inicial." #. type: item -#: guix-git/doc/guix.texi:25085 +#: guix-git/doc/guix.texi:25447 #, no-wrap msgid "@code{http-auth} (default: @code{#f})" msgstr "@code{http-auth} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:25089 +#: guix-git/doc/guix.texi:25451 #, fuzzy msgid "HTTP authentication type to use. Set to @code{#f} to disable authentication (the default). Supported values are @code{\"digest\"} or @code{\"basic\"}." msgstr "Identificación de HTTP usada. Use @code{#f} para no permitir la identificación (el valor predeterminado). Los valores permitidos son @code{\"digest\"} o @code{\"basic\"}." #. type: item -#: guix-git/doc/guix.texi:25090 +#: guix-git/doc/guix.texi:25452 #, no-wrap msgid "@code{users} (default: @code{#f})" msgstr "@code{users} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:25095 +#: guix-git/doc/guix.texi:25457 #, fuzzy msgid "If HTTP authentication is enabled (see @code{http-auth}), access will be restricted to the credentials provided here. To configure users, use a list of pairs, where the first element of the pair is the username, and the 2nd element of the pair is the password." msgstr "Si la identificación de HTTP está activa (véase @code{http-auth}), el acceso se restringirá a las credenciales proporcionadas aquí. Para configurar usuarias, use una lista de pares, donde el primer elemento del par es el nombre de la usuaria, y el segundo elemento del par es la contraseña." #. type: lisp -#: guix-git/doc/guix.texi:25101 +#: guix-git/doc/guix.texi:25463 #, no-wrap msgid "" "(tailon-configuration-file\n" @@ -48948,36 +49661,36 @@ msgstr "" " (\"usuaria2\" . \"contraseña2\"))))\n" #. type: subsubheading -#: guix-git/doc/guix.texi:25107 +#: guix-git/doc/guix.texi:25469 #, no-wrap msgid "Darkstat Service" msgstr "Servicio Darkstat" #. type: cindex -#: guix-git/doc/guix.texi:25108 +#: guix-git/doc/guix.texi:25470 #, no-wrap msgid "darkstat" msgstr "darkstat" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:25111 +#: guix-git/doc/guix.texi:25473 msgid "Darkstat is a packet sniffer that captures network traffic, calculates statistics about usage, and serves reports over HTTP." msgstr "Darkstat es un programa de interceptación de paquetes que captura el tráfico de la red, calcula estadísticas sobre su uso y proporciona informes a través de HTTP." #. type: defvar -#: guix-git/doc/guix.texi:25112 +#: guix-git/doc/guix.texi:25474 #, no-wrap msgid "{Scheme Variable} darkstat-service-type" msgstr "{Variable Scheme} darkstat-service-type" #. type: defvar -#: guix-git/doc/guix.texi:25117 +#: guix-git/doc/guix.texi:25479 msgid "This is the service type for the @uref{https://unix4lyfe.org/darkstat/, darkstat} service, its value must be a @code{darkstat-configuration} record as in this example:" msgstr "Este es el tipo de servicio del servicio @uref{https://unix4lyfe.org/darkstat/, darkstat}, su valor debe ser un registro @code{darkstat-configuration} como en este ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:25122 +#: guix-git/doc/guix.texi:25484 #, no-wrap msgid "" "(service darkstat-service-type\n" @@ -48989,722 +49702,748 @@ msgstr "" " (interface \"eno1\")))\n" #. type: deftp -#: guix-git/doc/guix.texi:25125 +#: guix-git/doc/guix.texi:25487 #, no-wrap msgid "{Data Type} darkstat-configuration" msgstr "{Tipo de datos} darkstat-configuration" #. type: deftp -#: guix-git/doc/guix.texi:25127 +#: guix-git/doc/guix.texi:25489 msgid "Data type representing the configuration of @command{darkstat}." msgstr "Tipo de datos que representa la configuración de @command{darkstat}." #. type: item -#: guix-git/doc/guix.texi:25129 +#: guix-git/doc/guix.texi:25491 #, no-wrap msgid "@code{package} (default: @code{darkstat})" msgstr "@code{package} (predeterminado: @code{darkstat})" #. type: table -#: guix-git/doc/guix.texi:25131 +#: guix-git/doc/guix.texi:25493 msgid "The darkstat package to use." msgstr "El paquete darkstat usado." #. type: code{#1} -#: guix-git/doc/guix.texi:25132 +#: guix-git/doc/guix.texi:25494 #, no-wrap msgid "interface" msgstr "interface" #. type: table -#: guix-git/doc/guix.texi:25134 +#: guix-git/doc/guix.texi:25496 msgid "Capture traffic on the specified network interface." msgstr "Captura el tráfico en la interfaz de red especificada." #. type: item -#: guix-git/doc/guix.texi:25135 +#: guix-git/doc/guix.texi:25497 #, no-wrap msgid "@code{port} (default: @code{\"667\"})" msgstr "@code{port} (predeterminado: @code{\"667\"})" #. type: table -#: guix-git/doc/guix.texi:25137 +#: guix-git/doc/guix.texi:25499 msgid "Bind the web interface to the specified port." msgstr "Asocia la interfaz web al puerto especificado." #. type: table -#: guix-git/doc/guix.texi:25140 guix-git/doc/guix.texi:25175 +#: guix-git/doc/guix.texi:25502 guix-git/doc/guix.texi:25537 msgid "Bind the web interface to the specified address." msgstr "Asocia la interfaz web a la dirección especificada." #. type: item -#: guix-git/doc/guix.texi:25141 +#: guix-git/doc/guix.texi:25503 #, no-wrap msgid "@code{base} (default: @code{\"/\"})" msgstr "@code{base} (predeterminada: @code{\"/\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:25144 +#: guix-git/doc/guix.texi:25506 #, fuzzy msgid "Specify the path of the base URL@. This can be useful if @command{darkstat} is accessed via a reverse proxy." msgstr "Especifica la ruta de la URL base. Puede ser util si @command{darkstat} se accede a través de un proxy inverso." # FUZZY #. type: subsubheading -#: guix-git/doc/guix.texi:25148 +#: guix-git/doc/guix.texi:25510 #, no-wrap msgid "Prometheus Node Exporter Service" msgstr "Servicio del exportador de nodos Prometheus" #. type: cindex -#: guix-git/doc/guix.texi:25150 +#: guix-git/doc/guix.texi:25512 #, no-wrap msgid "prometheus-node-exporter" msgstr "prometheus-node-exporter" #. type: Plain text -#: guix-git/doc/guix.texi:25155 +#: guix-git/doc/guix.texi:25517 msgid "The Prometheus ``node exporter'' makes hardware and operating system statistics provided by the Linux kernel available for the Prometheus monitoring system. This service should be deployed on all physical nodes and virtual machines, where monitoring these statistics is desirable." msgstr "El ``exportador de nodos'' Prometheus pone a disposición del sistema de monitorización Prometheus las estadísticas de hardware y el sistema operativo proporcionadas por el núcleo Linux. Este servicio debe desplegarse en todos los nodos físicos y máquinas virtuales, donde la monitorización de estas estadísticas sea deseable." #. type: defvar -#: guix-git/doc/guix.texi:25156 +#: guix-git/doc/guix.texi:25518 #, no-wrap msgid "{Scheme variable} prometheus-node-exporter-service-type" msgstr "{Variable Scheme} prometheus-node-exporter-service-type" #. type: defvar -#: guix-git/doc/guix.texi:25160 +#: guix-git/doc/guix.texi:25522 #, fuzzy msgid "This is the service type for the @uref{https://github.com/prometheus/node_exporter/, prometheus-node-exporter} service, its value must be a @code{prometheus-node-exporter-configuration}." msgstr "Este es el tipo de servicio del servicio @uref{https://github.com/prometheus/node_exporter/, prometheus-node-exporter}, su valor debe ser un registro @code{prometheus-node-exporter-configuration} como en este ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:25163 +#: guix-git/doc/guix.texi:25525 #, fuzzy, no-wrap msgid "(service prometheus-node-exporter-service-type)\n" msgstr "{Variable Scheme} prometheus-node-exporter-service-type" #. type: deftp -#: guix-git/doc/guix.texi:25166 +#: guix-git/doc/guix.texi:25528 #, no-wrap msgid "{Data Type} prometheus-node-exporter-configuration" msgstr "{Tipo de datos} prometheus-node-exporter-configuration" #. type: deftp -#: guix-git/doc/guix.texi:25168 +#: guix-git/doc/guix.texi:25530 msgid "Data type representing the configuration of @command{node_exporter}." msgstr "Tipo de datos que representa la configuración de @command{node_exporter}." #. type: item -#: guix-git/doc/guix.texi:25170 +#: guix-git/doc/guix.texi:25532 #, no-wrap msgid "@code{package} (default: @code{go-github-com-prometheus-node-exporter})" msgstr "@code{package} (predeterminado: @code{go-github-com-prometheus-node-exporter})" #. type: table -#: guix-git/doc/guix.texi:25172 +#: guix-git/doc/guix.texi:25534 msgid "The prometheus-node-exporter package to use." msgstr "El paquete prometheus-node-exporter usado." #. type: item -#: guix-git/doc/guix.texi:25173 +#: guix-git/doc/guix.texi:25535 #, no-wrap msgid "@code{web-listen-address} (default: @code{\":9100\"})" msgstr "@code{web-listen-address} (predeterminada: @code{\":9100\"})" #. type: item -#: guix-git/doc/guix.texi:25176 +#: guix-git/doc/guix.texi:25538 #, fuzzy, no-wrap msgid "@code{textfile-directory} (default: @code{\"/var/lib/prometheus/node-exporter\"})" msgstr "@code{data-directory} (predeterminado: @code{\"/var/lib/postgresql/data\"})" #. type: table -#: guix-git/doc/guix.texi:25180 +#: guix-git/doc/guix.texi:25542 msgid "This directory can be used to export metrics specific to this machine. Files containing metrics in the text format, with the filename ending in @code{.prom} should be placed in this directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25183 +#: guix-git/doc/guix.texi:25545 #, fuzzy msgid "Extra options to pass to the Prometheus node exporter." msgstr "Opciones adicionales proporcionadas a los procesos de Cuirass." #. type: subsubheading -#: guix-git/doc/guix.texi:25187 +#: guix-git/doc/guix.texi:25549 #, no-wrap msgid "Zabbix server" msgstr "Servidor Zabbix" #. type: cindex -#: guix-git/doc/guix.texi:25188 +#: guix-git/doc/guix.texi:25550 #, no-wrap msgid "zabbix zabbix-server" msgstr "zabbix zabbix-server" #. type: Plain text -#: guix-git/doc/guix.texi:25191 +#: guix-git/doc/guix.texi:25553 msgid "Zabbix provides monitoring metrics, among others network utilization, CPU load and disk space consumption:" msgstr "Zabbix proporciona métricas de monitorización, entre otras el uso de red, la carga de la CPU y el consumo de espacio en disco:" #. type: item -#: guix-git/doc/guix.texi:25193 +#: guix-git/doc/guix.texi:25555 #, no-wrap msgid "High performance, high capacity (able to monitor hundreds of thousands of devices)." msgstr "Alto rendimiento, alta capacidad (capaz de monitorizar cientos de miles de dispositivos)." #. type: item -#: guix-git/doc/guix.texi:25194 +#: guix-git/doc/guix.texi:25556 #, no-wrap msgid "Auto-discovery of servers and network devices and interfaces." msgstr "Detección automática de servidores, dispositivos de red e interfaces." #. type: item -#: guix-git/doc/guix.texi:25195 +#: guix-git/doc/guix.texi:25557 #, no-wrap msgid "Low-level discovery, allows to automatically start monitoring new items, file systems or network interfaces among others." msgstr "Descubrimiento a bajo nivel, que permite el inicio automático de la monitorización de nuevos elementos, sistemas de archivos o interfaces de red entre otros." #. type: item -#: guix-git/doc/guix.texi:25196 +#: guix-git/doc/guix.texi:25558 #, no-wrap msgid "Distributed monitoring with centralized web administration." msgstr "Monitorización distribuida con administración web centralizada." #. type: item -#: guix-git/doc/guix.texi:25197 +#: guix-git/doc/guix.texi:25559 #, no-wrap msgid "Native high performance agents." msgstr "Agentes nativos de alto rendimiento." #. type: item -#: guix-git/doc/guix.texi:25198 +#: guix-git/doc/guix.texi:25560 #, no-wrap msgid "SLA, and ITIL KPI metrics on reporting." msgstr "Métricas SLA y KPI ITIL en los informes." # FUZZY #. type: item -#: guix-git/doc/guix.texi:25199 +#: guix-git/doc/guix.texi:25561 #, no-wrap msgid "High-level (business) view of monitored resources through user-defined visual console screens and dashboards." msgstr "Visión de alto nivel (negocio) de los recursos monitorizados a través de pantallas de consola visual y paneles definidas por la usuaria." #. type: item -#: guix-git/doc/guix.texi:25200 +#: guix-git/doc/guix.texi:25562 #, no-wrap msgid "Remote command execution through Zabbix proxies." msgstr "Ejecución remota de ordenes a través de un proxy Zabbix." #. type: Plain text -#: guix-git/doc/guix.texi:25206 +#: guix-git/doc/guix.texi:25568 msgid "Available @code{zabbix-server-configuration} fields are:" msgstr "Los campos disponibles de @code{zabbix-server-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:25207 +#: guix-git/doc/guix.texi:25569 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} package zabbix-server" msgstr "{parámetro de @code{zabbix-server-configuration}} package zabbix-server" #. type: deftypevr -#: guix-git/doc/guix.texi:25209 +#: guix-git/doc/guix.texi:25571 msgid "The zabbix-server package." msgstr "El paquete zabbix-server." #. type: deftypevr -#: guix-git/doc/guix.texi:25212 +#: guix-git/doc/guix.texi:25574 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string user" msgstr "{parámetro de @code{zabbix-server-configuration}} string user" #. type: deftypevr -#: guix-git/doc/guix.texi:25214 +#: guix-git/doc/guix.texi:25576 msgid "User who will run the Zabbix server." msgstr "Usuaria que ejecutará el servidor Zabbix." #. type: deftypevr -#: guix-git/doc/guix.texi:25216 guix-git/doc/guix.texi:25223 -#: guix-git/doc/guix.texi:25237 guix-git/doc/guix.texi:25244 -#: guix-git/doc/guix.texi:25345 guix-git/doc/guix.texi:25352 -#: guix-git/doc/guix.texi:25463 guix-git/doc/guix.texi:25470 +#: guix-git/doc/guix.texi:25578 guix-git/doc/guix.texi:25585 +#: guix-git/doc/guix.texi:25599 guix-git/doc/guix.texi:25606 +#: guix-git/doc/guix.texi:25707 guix-git/doc/guix.texi:25714 msgid "Defaults to @samp{\"zabbix\"}." msgstr "El valor predeterminado es @samp{\"zabbix\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25219 +#: guix-git/doc/guix.texi:25581 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} group group" msgstr "{parámetro de @code{zabbix-server-configuration}} grupo group" #. type: deftypevr -#: guix-git/doc/guix.texi:25221 +#: guix-git/doc/guix.texi:25583 msgid "Group who will run the Zabbix server." msgstr "Grupo que ejecutará el servidor Zabbix." #. type: deftypevr -#: guix-git/doc/guix.texi:25226 +#: guix-git/doc/guix.texi:25588 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-host" msgstr "{parámetro de @code{zabbix-server-configuration}} string db-host" -#. type: deftypevr -#: guix-git/doc/guix.texi:25228 guix-git/doc/guix.texi:25447 +#. type: table +#: guix-git/doc/guix.texi:25590 guix-git/doc/guix.texi:25813 msgid "Database host name." msgstr "El nombre de máquina de la base de datos." #. type: deftypevr -#: guix-git/doc/guix.texi:25230 +#: guix-git/doc/guix.texi:25592 msgid "Defaults to @samp{\"127.0.0.1\"}." msgstr "El valor predeterminado es @samp{\"127.0.0.1\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25233 +#: guix-git/doc/guix.texi:25595 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-name" msgstr "{parámetro de @code{zabbix-server-configuration}} string db-name" -#. type: deftypevr -#: guix-git/doc/guix.texi:25235 guix-git/doc/guix.texi:25461 +#. type: table +#: guix-git/doc/guix.texi:25597 guix-git/doc/guix.texi:25819 msgid "Database name." msgstr "Nombre de la base de datos." #. type: deftypevr -#: guix-git/doc/guix.texi:25240 +#: guix-git/doc/guix.texi:25602 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-user" msgstr "{parámetro de @code{zabbix-server-configuration}} string db-user" -#. type: deftypevr -#: guix-git/doc/guix.texi:25242 guix-git/doc/guix.texi:25468 +#. type: table +#: guix-git/doc/guix.texi:25604 guix-git/doc/guix.texi:25822 msgid "Database user." msgstr "Usuaria de la base de datos." #. type: deftypevr -#: guix-git/doc/guix.texi:25247 +#: guix-git/doc/guix.texi:25609 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-password" msgstr "{parámetro de @code{zabbix-server-configuration}} string db-password" #. type: deftypevr -#: guix-git/doc/guix.texi:25250 +#: guix-git/doc/guix.texi:25612 msgid "Database password. Please, use @code{include-files} with @code{DBPassword=SECRET} inside a specified file instead." msgstr "Contraseña de la base de datos. Por favor, en vez de esto use @code{include-files} con @code{DBPassword=SECRET} dentro de un archivo especificado." #. type: deftypevr -#: guix-git/doc/guix.texi:25255 +#: guix-git/doc/guix.texi:25617 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} number db-port" msgstr "{parámetro de @code{zabbix-server-configuration}} number db-port" -#. type: deftypevr -#: guix-git/doc/guix.texi:25257 guix-git/doc/guix.texi:25454 +#. type: table +#: guix-git/doc/guix.texi:25619 guix-git/doc/guix.texi:25816 msgid "Database port." msgstr "Puerto de la base de datos." #. type: deftypevr -#: guix-git/doc/guix.texi:25259 guix-git/doc/guix.texi:25456 +#: guix-git/doc/guix.texi:25621 msgid "Defaults to @samp{5432}." msgstr "El valor predeterminado es @samp{5432}." #. type: deftypevr -#: guix-git/doc/guix.texi:25262 +#: guix-git/doc/guix.texi:25624 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string log-type" msgstr "{parámetro de @code{zabbix-server-configuration}} string log-type" #. type: deftypevr -#: guix-git/doc/guix.texi:25264 guix-git/doc/guix.texi:25365 +#: guix-git/doc/guix.texi:25626 guix-git/doc/guix.texi:25727 msgid "Specifies where log messages are written to:" msgstr "Especifica donde se escriben los mensajes de registro:" #. type: itemize -#: guix-git/doc/guix.texi:25268 guix-git/doc/guix.texi:25369 +#: guix-git/doc/guix.texi:25630 guix-git/doc/guix.texi:25731 msgid "@code{system} - syslog." msgstr "@code{system} - syslog." #. type: itemize -#: guix-git/doc/guix.texi:25271 guix-git/doc/guix.texi:25372 +#: guix-git/doc/guix.texi:25633 guix-git/doc/guix.texi:25734 msgid "@code{file} - file specified with @code{log-file} parameter." msgstr "@code{file} - archivo especificado con el parámetro @code{log-file}." #. type: itemize -#: guix-git/doc/guix.texi:25274 guix-git/doc/guix.texi:25375 +#: guix-git/doc/guix.texi:25636 guix-git/doc/guix.texi:25737 msgid "@code{console} - standard output." msgstr "@code{console} - salida estándar." #. type: deftypevr -#: guix-git/doc/guix.texi:25281 +#: guix-git/doc/guix.texi:25643 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string log-file" msgstr "{parámetro de @code{zabbix-server-configuration}} string log-file" #. type: deftypevr -#: guix-git/doc/guix.texi:25283 guix-git/doc/guix.texi:25384 +#: guix-git/doc/guix.texi:25645 guix-git/doc/guix.texi:25746 msgid "Log file name for @code{log-type} @code{file} parameter." msgstr "Nombre del archivo de registro para el parámetro @code{file} de @code{log-type}." #. type: deftypevr -#: guix-git/doc/guix.texi:25285 +#: guix-git/doc/guix.texi:25647 msgid "Defaults to @samp{\"/var/log/zabbix/server.log\"}." msgstr "El valor predeterminado es @samp{\"/var/log/zabbix/server.log\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25288 +#: guix-git/doc/guix.texi:25650 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string pid-file" msgstr "{parámetro de @code{zabbix-server-configuration}} string pid-file" #. type: deftypevr -#: guix-git/doc/guix.texi:25290 guix-git/doc/guix.texi:25391 +#: guix-git/doc/guix.texi:25652 guix-git/doc/guix.texi:25753 msgid "Name of PID file." msgstr "Nombre del archivo de PID." #. type: deftypevr -#: guix-git/doc/guix.texi:25292 +#: guix-git/doc/guix.texi:25654 msgid "Defaults to @samp{\"/var/run/zabbix/zabbix_server.pid\"}." msgstr "El valor predeterminado es @samp{\"/var/run/zabbix/zabbix_server.pid\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25295 +#: guix-git/doc/guix.texi:25657 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string ssl-ca-location" msgstr "{parámetro de @code{zabbix-server-configuration}} string ssl-ca-location" #. type: deftypevr -#: guix-git/doc/guix.texi:25298 +#: guix-git/doc/guix.texi:25660 msgid "The location of certificate authority (CA) files for SSL server certificate verification." msgstr "La localización de los archivos de autoridades de certificación (CA) para la verificación de certificados SSL de los servidores." #. type: deftypevr -#: guix-git/doc/guix.texi:25300 +#: guix-git/doc/guix.texi:25662 msgid "Defaults to @samp{\"/etc/ssl/certs/ca-certificates.crt\"}." msgstr "El valor predeterminado es @samp{\"/etc/ssl/certs/ca-certificates.crt\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25303 +#: guix-git/doc/guix.texi:25665 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string ssl-cert-location" msgstr "{parámetro de @code{zabbix-server-configuration}} string ssl-cert-location" #. type: deftypevr -#: guix-git/doc/guix.texi:25305 +#: guix-git/doc/guix.texi:25667 msgid "Location of SSL client certificates." msgstr "Localización de los certificados SSL de los clientes." #. type: deftypevr -#: guix-git/doc/guix.texi:25307 +#: guix-git/doc/guix.texi:25669 msgid "Defaults to @samp{\"/etc/ssl/certs\"}." msgstr "El valor predeterminado es @samp{\"/etc/ssl/certs\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25310 +#: guix-git/doc/guix.texi:25672 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string extra-options" msgstr "{parámetro de @code{zabbix-server-configuration}} string extra-options" #. type: deftypevr -#: guix-git/doc/guix.texi:25312 guix-git/doc/guix.texi:25416 +#: guix-git/doc/guix.texi:25674 guix-git/doc/guix.texi:25778 msgid "Extra options will be appended to Zabbix server configuration file." msgstr "Opciones adicionales que se añadirán al final del archivo de configuración de Zabbix." #. type: deftypevr -#: guix-git/doc/guix.texi:25317 +#: guix-git/doc/guix.texi:25679 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} include-files include-files" msgstr "{parámetro de @code{zabbix-server-configuration}} archivos-incluidos include-files" #. type: deftypevr -#: guix-git/doc/guix.texi:25320 guix-git/doc/guix.texi:25424 +#: guix-git/doc/guix.texi:25682 guix-git/doc/guix.texi:25786 msgid "You may include individual files or all files in a directory in the configuration file." msgstr "Puede incluir archivos individuales o todos los archivos en un directorio en el archivo de configuración." #. type: subsubheading -#: guix-git/doc/guix.texi:25327 +#: guix-git/doc/guix.texi:25689 #, no-wrap msgid "Zabbix agent" msgstr "Agente Zabbix" #. type: cindex -#: guix-git/doc/guix.texi:25328 +#: guix-git/doc/guix.texi:25690 #, no-wrap msgid "zabbix zabbix-agent" msgstr "zabbix zabbix-agent" #. type: Plain text -#: guix-git/doc/guix.texi:25331 +#: guix-git/doc/guix.texi:25693 msgid "Zabbix agent gathers information for Zabbix server." msgstr "El agente Zabbix (zabbix-agent) obtiene información del servidor Zabbix." #. type: Plain text -#: guix-git/doc/guix.texi:25335 +#: guix-git/doc/guix.texi:25697 msgid "Available @code{zabbix-agent-configuration} fields are:" msgstr "Los campos disponibles de @code{zabbix-agent-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:25336 +#: guix-git/doc/guix.texi:25698 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} package zabbix-agent" msgstr "{parámetro de @code{zabbix-agent-configuration}} package zabbix-agent" #. type: deftypevr -#: guix-git/doc/guix.texi:25338 +#: guix-git/doc/guix.texi:25700 msgid "The zabbix-agent package." msgstr "El paquete zabbix-agent." #. type: deftypevr -#: guix-git/doc/guix.texi:25341 +#: guix-git/doc/guix.texi:25703 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string user" msgstr "{parámetro de @code{zabbix-agent-configuration}} string user" #. type: deftypevr -#: guix-git/doc/guix.texi:25343 +#: guix-git/doc/guix.texi:25705 msgid "User who will run the Zabbix agent." msgstr "Usuaria que ejecutará el agente Zabbix." #. type: deftypevr -#: guix-git/doc/guix.texi:25348 +#: guix-git/doc/guix.texi:25710 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} group group" msgstr "{parámetro de @code{zabbix-agent-configuration}} grupo group" #. type: deftypevr -#: guix-git/doc/guix.texi:25350 +#: guix-git/doc/guix.texi:25712 msgid "Group who will run the Zabbix agent." msgstr "Grupo que ejecutará el agente Zabbix." #. type: deftypevr -#: guix-git/doc/guix.texi:25355 +#: guix-git/doc/guix.texi:25717 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string hostname" msgstr "{parámetro de @code{zabbix-agent-configuration}} string hostname" #. type: deftypevr -#: guix-git/doc/guix.texi:25358 +#: guix-git/doc/guix.texi:25720 msgid "Unique, case sensitive hostname which is required for active checks and must match hostname as configured on the server." msgstr "Nombre de máquina único y sensible a mayúsculas que es necesario para la comprobaciones activas y debe corresponder con el nombre de máquina configurado en el servidor." #. type: deftypevr -#: guix-git/doc/guix.texi:25363 +#: guix-git/doc/guix.texi:25725 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string log-type" msgstr "{parámetro de @code{zabbix-agent-configuration}} string log-type" #. type: deftypevr -#: guix-git/doc/guix.texi:25382 +#: guix-git/doc/guix.texi:25744 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string log-file" msgstr "{parámetro de @code{zabbix-agent-configuration}} string log-file" #. type: deftypevr -#: guix-git/doc/guix.texi:25386 +#: guix-git/doc/guix.texi:25748 msgid "Defaults to @samp{\"/var/log/zabbix/agent.log\"}." msgstr "El valor predeterminado es @samp{\"/var/log/zabbix/agent.log\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25389 +#: guix-git/doc/guix.texi:25751 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string pid-file" msgstr "{parámetro de @code{zabbix-agent-configuration}} string pid-file" #. type: deftypevr -#: guix-git/doc/guix.texi:25393 +#: guix-git/doc/guix.texi:25755 msgid "Defaults to @samp{\"/var/run/zabbix/zabbix_agent.pid\"}." msgstr "El valor predeterminado es @samp{\"/var/run/zabbix/zabbix_agent.pid\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25396 +#: guix-git/doc/guix.texi:25758 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} list server" msgstr "{parámetro de @code{zabbix-agent-configuration}} lista server" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:25400 +#: guix-git/doc/guix.texi:25762 msgid "List of IP addresses, optionally in CIDR notation, or hostnames of Zabbix servers and Zabbix proxies. Incoming connections will be accepted only from the hosts listed here." msgstr "Lista de direcciones IP, opcionalmente en notación CIDR, o nombres de máquina de servidores y proxy Zabbix. Se aceptarán conexiones entrantes únicamente desde las máquinas proporcionadas aquí." #. type: deftypevr -#: guix-git/doc/guix.texi:25402 guix-git/doc/guix.texi:25411 +#: guix-git/doc/guix.texi:25764 guix-git/doc/guix.texi:25773 msgid "Defaults to @samp{(\"127.0.0.1\")}." msgstr "El valor predeterminado es @samp{\"127.0.0.1\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25405 +#: guix-git/doc/guix.texi:25767 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} list server-active" msgstr "{parámetro de @code{zabbix-agent-configuration}} lista server-active" #. type: deftypevr -#: guix-git/doc/guix.texi:25409 +#: guix-git/doc/guix.texi:25771 msgid "List of IP:port (or hostname:port) pairs of Zabbix servers and Zabbix proxies for active checks. If port is not specified, default port is used. If this parameter is not specified, active checks are disabled." msgstr "Lista de pares IP:puerto (o máquina:puerto) de servidores Zabbix y servidores Zabbix para las comprobaciones activas. Si no se especifica un puerto, se usa el puerto predeterminado. Si no se especifica este parámetro, las comprobaciones activas se desactivan." #. type: deftypevr -#: guix-git/doc/guix.texi:25414 +#: guix-git/doc/guix.texi:25776 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string extra-options" msgstr "{parámetro de @code{zabbix-agent-configuration}} string extra-options" #. type: deftypevr -#: guix-git/doc/guix.texi:25421 +#: guix-git/doc/guix.texi:25783 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} include-files include-files" msgstr "{parámetro de @code{zabbix-agent-configuration}} archivos-incluidos include-files" #. type: subsubheading -#: guix-git/doc/guix.texi:25431 +#: guix-git/doc/guix.texi:25793 #, no-wrap msgid "Zabbix front-end" msgstr "Motor de visualización de Zabbix" #. type: cindex -#: guix-git/doc/guix.texi:25432 +#: guix-git/doc/guix.texi:25794 #, no-wrap msgid "zabbix zabbix-front-end" msgstr "zabbix zabbix-front-end" #. type: Plain text -#: guix-git/doc/guix.texi:25435 +#: guix-git/doc/guix.texi:25797 msgid "This service provides a WEB interface to Zabbix server." msgstr "Este servicio proporciona una interfaz Web al servidor Zabbix." -#. type: Plain text -#: guix-git/doc/guix.texi:25439 +#. type: deftp +#: guix-git/doc/guix.texi:25800 +#, fuzzy, no-wrap +#| msgid "{Data Type} inetd-configuration" +msgid "{Data Type} zabbix-front-end-configuration" +msgstr "{Tipo de datos} inetd-configuration" + +#. type: deftp +#: guix-git/doc/guix.texi:25802 msgid "Available @code{zabbix-front-end-configuration} fields are:" msgstr "Los campos disponibles de @code{zabbix-front-end-configuration} son:" -#. type: deftypevr -#: guix-git/doc/guix.texi:25440 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} nginx-server-configuration-list nginx" -msgstr "{parámetro de @code{zabbix-front-end-configuration}} lista-nginx-server-configuration nginx" +#. type: item +#: guix-git/doc/guix.texi:25804 +#, fuzzy, no-wrap +#| msgid "@code{server} (default: @code{xorg-server})" +msgid "@code{zabbix-server} (default: @code{zabbix-server}) (type: file-like)" +msgstr "@code{server} (predeterminado: @code{xorg-server})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25442 guix-git/doc/guix.texi:31735 -msgid "NGINX configuration." -msgstr "Configuración de NGINX." +#. type: table +#: guix-git/doc/guix.texi:25806 +#, fuzzy +#| msgid "The zabbix-server package." +msgid "The Zabbix server package to use." +msgstr "El paquete zabbix-server." -#. type: deftypevr -#: guix-git/doc/guix.texi:25445 +#. type: item +#: guix-git/doc/guix.texi:25807 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-host" -msgstr "{parámetro de @code{zabbix-front-end-configuration}} string db-host" +msgid "@code{fastcgi-params} (type: list)" +msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25452 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} number db-port" -msgstr "{parámetro de @code{zabbix-front-end-configuration}} number db-port" +#. type: table +#: guix-git/doc/guix.texi:25810 +#, fuzzy +#| msgid "Raw content that will be added to the configuration file." +msgid "List of FastCGI parameter pairs that will be included in the NGINX configuration." +msgstr "Contenido que se añadirá directamente al archivo de configuración." -#. type: deftypevr -#: guix-git/doc/guix.texi:25459 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-name" -msgstr "{parámetro de @code{zabbix-front-end-configuration}} string db-name" +#. type: item +#: guix-git/doc/guix.texi:25811 +#, fuzzy, no-wrap +#| msgid "@code{host} (default: @code{\"localhost\"})" +msgid "@code{db-host} (default: @code{\\\"localhost\\\"}) (type: string)" +msgstr "@code{host} (predeterminado: @code{\"localhost\"})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25466 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-user" -msgstr "{parámetro de @code{zabbix-front-end-configuration}} string db-user" +#. type: item +#: guix-git/doc/guix.texi:25814 +#, fuzzy, no-wrap +#| msgid "@code{port} (default: @code{5432})" +msgid "@code{db-port} (default: @code{5432}) (type: number)" +msgstr "@code{port} (predeterminado: @code{5432})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25473 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-password" -msgstr "{parámetro de @code{zabbix-front-end-configuration}} string db-password" +#. type: item +#: guix-git/doc/guix.texi:25817 +#, fuzzy, no-wrap +#| msgid "@code{name-service-switch} (default: @code{%default-nss})" +msgid "@code{db-name} (default: @code{\\\"zabbix\\\"}) (type: string)" +msgstr "@code{name-service-switch} (predeterminado: @code{%default-nss})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25475 +#. type: item +#: guix-git/doc/guix.texi:25820 +#, fuzzy, no-wrap +#| msgid "@code{packages} (default: @code{%base-packages})" +msgid "@code{db-user} (default: @code{\\\"zabbix\\\"}) (type: string)" +msgstr "@code{packages} (predeterminados: @code{%base-packages})" + +#. type: item +#: guix-git/doc/guix.texi:25823 +#, fuzzy, no-wrap +#| msgid "@code{password} (default: @code{\"\"})" +msgid "@code{db-password} (default: @code{\\\"\\\"}) (type: string)" +msgstr "@code{password} (predeterminada: @code{\"\"})" + +#. type: table +#: guix-git/doc/guix.texi:25825 msgid "Database password. Please, use @code{db-secret-file} instead." msgstr "Contraseña de la base de datos. Por favor, en vez de esto use @code{db-secret-file}." -#. type: deftypevr -#: guix-git/doc/guix.texi:25480 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-secret-file" -msgstr "{parámetro de @code{zabbix-front-end-configuration}} string db-secret-file" +#. type: item +#: guix-git/doc/guix.texi:25826 +#, fuzzy, no-wrap +#| msgid "@code{packages} (default: @code{%base-packages})" +msgid "@code{db-secret-file} (default: @code{\\\"\\\"}) (type: string)" +msgstr "@code{packages} (predeterminados: @code{%base-packages})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25485 -msgid "Secret file containing the credentials for the Zabbix front-end. The value must be a local file name, not a G-expression. You are expected to create this file manually. Its contents will be copied into @file{zabbix.conf.php} as the value of @code{$DB['PASSWORD']}." -msgstr "" +# FUZZY +#. type: table +#: guix-git/doc/guix.texi:25830 +msgid "Secret file which will be appended to @file{zabbix.conf.php} file. This file contains credentials for use by Zabbix front-end. You are expected to create it manually." +msgstr "Archivo secreto que se añadirá al final del archivo @file{zabbix.conf.php}. Este archivo contiene las credenciales usadas por el motor de visualización de Zabbix. Se espera que usted lo cree manualmente." -#. type: deftypevr -#: guix-git/doc/guix.texi:25490 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string zabbix-host" -msgstr "{parámetro de @code{zabbix-front-end-configuration}} string zabbix-host" +#. type: item +#: guix-git/doc/guix.texi:25831 +#, fuzzy, no-wrap +#| msgid "@code{host} (default: @code{\"localhost\"})" +msgid "@code{zabbix-host} (default: @code{\\\"localhost\\\"}) (type: string)" +msgstr "@code{host} (predeterminado: @code{\"localhost\"})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25492 +#. type: table +#: guix-git/doc/guix.texi:25833 msgid "Zabbix server hostname." msgstr "Nombre de máquina del servidor Zabbix." -#. type: deftypevr -#: guix-git/doc/guix.texi:25497 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} number zabbix-port" -msgstr "{parámetro de @code{zabbix-front-end-configuration}} number zabbix-port" +#. type: item +#: guix-git/doc/guix.texi:25834 +#, fuzzy, no-wrap +#| msgid "@code{debug?} (default: @code{#f})" +msgid "@code{zabbix-port} (default: @code{10051}) (type: number)" +msgstr "@code{debug?} (predeterminado: @code{#f})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25499 +#. type: table +#: guix-git/doc/guix.texi:25836 msgid "Zabbix server port." msgstr "Puerto del servidor Zabbix." -#. type: deftypevr -#: guix-git/doc/guix.texi:25501 -msgid "Defaults to @samp{10051}." -msgstr "El valor predeterminado es @samp{10051}." - #. type: cindex -#: guix-git/doc/guix.texi:25509 +#: guix-git/doc/guix.texi:25846 #, no-wrap msgid "Kerberos" msgstr "Kerberos" #. type: Plain text -#: guix-git/doc/guix.texi:25513 +#: guix-git/doc/guix.texi:25850 msgid "The @code{(gnu services kerberos)} module provides services relating to the authentication protocol @dfn{Kerberos}." msgstr "El módulo @code{(gnu services kerberos)} proporciona servicios relacionados con el protocolo de identificación @dfn{Kerberos}." #. type: subsubheading -#: guix-git/doc/guix.texi:25514 +#: guix-git/doc/guix.texi:25851 #, no-wrap msgid "Krb5 Service" msgstr "Servicio Krb5" #. type: Plain text -#: guix-git/doc/guix.texi:25521 +#: guix-git/doc/guix.texi:25858 msgid "Programs using a Kerberos client library normally expect a configuration file in @file{/etc/krb5.conf}. This service generates such a file from a definition provided in the operating system declaration. It does not cause any daemon to be started." msgstr "Los programas que usan una biblioteca cliente de Kerberos habitualmente esperan un archivo de configuración en la ruta @file{/etc/krb5.conf}. Este servicio genera dicho archivo desde una definición proporcionada en la declaración de sistema operativo. Esto no causa el inicio de ningún daemon." #. type: Plain text -#: guix-git/doc/guix.texi:25525 +#: guix-git/doc/guix.texi:25862 msgid "No ``keytab'' files are provided by this service---you must explicitly create them. This service is known to work with the MIT client library, @code{mit-krb5}. Other implementations have not been tested." msgstr "Este servicio no crea ningún archivo ``keytab''---debe crearlos explícitamente usted. Se ha comprobado que este servicio funciona con la biblioteca de cliente @code{mit-krb5} del MIT. No se han probado otras implementaciones." #. type: defvr -#: guix-git/doc/guix.texi:25526 +#: guix-git/doc/guix.texi:25863 #, no-wrap msgid "{Scheme Variable} krb5-service-type" msgstr "{Variable Scheme} krb5-service-type" #. type: defvr -#: guix-git/doc/guix.texi:25528 +#: guix-git/doc/guix.texi:25865 msgid "A service type for Kerberos 5 clients." msgstr "Un tipo de servicio para clientes Kerberos 5." #. type: Plain text -#: guix-git/doc/guix.texi:25532 +#: guix-git/doc/guix.texi:25869 msgid "Here is an example of its use:" msgstr "Este es un ejemplo de su uso:" #. type: lisp -#: guix-git/doc/guix.texi:25546 +#: guix-git/doc/guix.texi:25883 #, no-wrap msgid "" "(service krb5-service-type\n" @@ -49736,57 +50475,57 @@ msgstr "" " (kdc \"keys.argrx.edu\"))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:25550 +#: guix-git/doc/guix.texi:25887 msgid "This example provides a Kerberos@tie{}5 client configuration which:" msgstr "Este ejemplo proporciona una configuración de cliente Kerberos@tie{}5 que:" # FIXME: Cuidado con esta zona. #. type: item -#: guix-git/doc/guix.texi:25551 +#: guix-git/doc/guix.texi:25888 #, no-wrap msgid "Recognizes two realms, @i{viz:} ``EXAMPLE.COM'' and ``ARGRX.EDU'', both" msgstr "Reconoce dos dominios, @i{sean:} ``EXAMPLE.COM'' y ``ARGRX.EDU'', los cuales" # FIXME: Cuidado con esta zona. #. type: itemize -#: guix-git/doc/guix.texi:25553 +#: guix-git/doc/guix.texi:25890 msgid "of which have distinct administration servers and key distribution centers;" msgstr "tienen distintos servidores administrativos y centros de distribución de claves;" # FIXME: Cuidado con esta zona. #. type: item -#: guix-git/doc/guix.texi:25553 +#: guix-git/doc/guix.texi:25890 #, no-wrap msgid "Will default to the realm ``EXAMPLE.COM'' if the realm is not explicitly" msgstr "El valor predeterminado será ``EXAMPLE.COM'' si no se especifica el dominio" # FIXME: Cuidado con esta zona. #. type: itemize -#: guix-git/doc/guix.texi:25555 +#: guix-git/doc/guix.texi:25892 msgid "specified by clients;" msgstr "explícitamente por parte del cliente." # FIXME: Cuidado con esta zona. #. type: item -#: guix-git/doc/guix.texi:25555 +#: guix-git/doc/guix.texi:25892 #, no-wrap msgid "Accepts services which only support encryption types known to be weak." msgstr "Acepta servicios cuyos únicos tipos de cifrado implementados se sabe que son débiles." # TODO: Revisar #. type: Plain text -#: guix-git/doc/guix.texi:25563 +#: guix-git/doc/guix.texi:25900 msgid "The @code{krb5-realm} and @code{krb5-configuration} types have many fields. Only the most commonly used ones are described here. For a full list, and more detailed explanation of each, see the MIT @uref{https://web.mit.edu/kerberos/krb5-devel/doc/admin/conf_files/krb5_conf.html,,krb5.conf} documentation." msgstr "Los tipos @code{krb5-realm} y @code{krb5-configuration} contienen muchos campos. Aquí se describen únicamente los más habitualmente usados. Para obtener una lista complete y una explicación detallada de cada campo, véase la documentación de @uref{https://web.mit.edu/kerberos/krb5-devel/doc/admin/conf_files/krb5_conf.html,,krb5.conf}." #. type: deftp -#: guix-git/doc/guix.texi:25565 +#: guix-git/doc/guix.texi:25902 #, no-wrap msgid "{Data Type} krb5-realm" msgstr "{Tipo de datos} krb5-realm" #. type: cindex -#: guix-git/doc/guix.texi:25566 +#: guix-git/doc/guix.texi:25903 #, no-wrap msgid "realm, kerberos" msgstr "dominio (realm), kerberos" @@ -49794,52 +50533,52 @@ msgstr "dominio (realm), kerberos" # FUZZY # TODO (MAAV): fully qualified name #. type: table -#: guix-git/doc/guix.texi:25572 +#: guix-git/doc/guix.texi:25909 msgid "This field is a string identifying the name of the realm. A common convention is to use the fully qualified DNS name of your organization, converted to upper case." msgstr "Este campo es una cadena que identifica el nombre del dominio. Una convención habitual es el uso del nombre completo de DNS de su organización, convertido a mayúsculas." #. type: code{#1} -#: guix-git/doc/guix.texi:25573 +#: guix-git/doc/guix.texi:25910 #, no-wrap msgid "admin-server" msgstr "admin-server" #. type: table -#: guix-git/doc/guix.texi:25576 +#: guix-git/doc/guix.texi:25913 msgid "This field is a string identifying the host where the administration server is running." msgstr "Este campo es una cadena que identifica la máquina donde se ejecuta el servidor administrativo." #. type: code{#1} -#: guix-git/doc/guix.texi:25577 +#: guix-git/doc/guix.texi:25914 #, no-wrap msgid "kdc" msgstr "kdc" #. type: table -#: guix-git/doc/guix.texi:25580 +#: guix-git/doc/guix.texi:25917 msgid "This field is a string identifying the key distribution center for the realm." msgstr "Este campo es una cadena que identifica el centro de distribución de claves para el dominio." #. type: deftp -#: guix-git/doc/guix.texi:25583 +#: guix-git/doc/guix.texi:25920 #, no-wrap msgid "{Data Type} krb5-configuration" msgstr "{Tipo de datos} krb5-configuration" #. type: item -#: guix-git/doc/guix.texi:25586 +#: guix-git/doc/guix.texi:25923 #, no-wrap msgid "@code{allow-weak-crypto?} (default: @code{#f})" msgstr "@code{allow-weak-crypto?} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:25589 +#: guix-git/doc/guix.texi:25926 msgid "If this flag is @code{#t} then services which only offer encryption algorithms known to be weak will be accepted." msgstr "Si esta opción es @code{#t} se aceptarán los servicios que únicamente ofrezcan algoritmos de cifrado que se conozca que son débiles." #. type: item -#: guix-git/doc/guix.texi:25590 +#: guix-git/doc/guix.texi:25927 #, no-wrap msgid "@code{default-realm} (default: @code{#f})" msgstr "@code{default-realm} (predeterminado: @code{#f})" @@ -49847,110 +50586,110 @@ msgstr "@code{default-realm} (predeterminado: @code{#f})" # FUZZY FUZZY FUZZY # TODO (MAAV): Kerberos Principal = primary/instance@REALM #. type: table -#: guix-git/doc/guix.texi:25597 +#: guix-git/doc/guix.texi:25934 msgid "This field should be a string identifying the default Kerberos realm for the client. You should set this field to the name of your Kerberos realm. If this value is @code{#f} then a realm must be specified with every Kerberos principal when invoking programs such as @command{kinit}." msgstr "Este campo debe ser una cadena que identifique el dominio predeterminado de Kerberos para los clientes. Debería proporcionar el nombre de su dominio Kerberos. Si este valor es @code{#f}, el dominio debe especificarse en cada principal de Kerberos cuando se invoquen programas como @command{kinit}." #. type: code{#1} -#: guix-git/doc/guix.texi:25598 +#: guix-git/doc/guix.texi:25935 #, no-wrap msgid "realms" msgstr "realms" #. type: table -#: guix-git/doc/guix.texi:25603 +#: guix-git/doc/guix.texi:25940 msgid "This should be a non-empty list of @code{krb5-realm} objects, which clients may access. Normally, one of them will have a @code{name} field matching the @code{default-realm} field." msgstr "Debe ser una lista no vacía de objetos @code{krb5-realm}, accesibles por los clientes. Normalmente, uno de ellos tendrá un campo @code{name} que corresponda con el campo @code{default-realm}." #. type: subsubheading -#: guix-git/doc/guix.texi:25607 +#: guix-git/doc/guix.texi:25944 #, no-wrap msgid "PAM krb5 Service" msgstr "Servicio krb5 de PAM" #. type: cindex -#: guix-git/doc/guix.texi:25608 +#: guix-git/doc/guix.texi:25945 #, no-wrap msgid "pam-krb5" msgstr "pam-krb5" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:25614 +#: guix-git/doc/guix.texi:25951 msgid "The @code{pam-krb5} service allows for login authentication and password management via Kerberos. You will need this service if you want PAM enabled applications to authenticate users using Kerberos." msgstr "El servicio @code{pam-krb5} le permite la identificación para el ingreso al sistema y la gestión de contraseñas mediante Kerberos. Este servicio es necesario si desea que aplicaciones que permiten PAM lleven a cabo la identificación de usuarias mediante el uso de Kerberos." #. type: defvr -#: guix-git/doc/guix.texi:25615 +#: guix-git/doc/guix.texi:25952 #, no-wrap msgid "{Scheme Variable} pam-krb5-service-type" msgstr "{Variable Scheme} pam-krb5-service-type" #. type: defvr -#: guix-git/doc/guix.texi:25617 +#: guix-git/doc/guix.texi:25954 msgid "A service type for the Kerberos 5 PAM module." msgstr "Un tipo de servicio para el módulo PAM de Kerberos 5." #. type: deftp -#: guix-git/doc/guix.texi:25619 +#: guix-git/doc/guix.texi:25956 #, no-wrap msgid "{Data Type} pam-krb5-configuration" msgstr "{Tipo de datos} pam-krb5-configuration" #. type: deftp -#: guix-git/doc/guix.texi:25622 +#: guix-git/doc/guix.texi:25959 msgid "Data type representing the configuration of the Kerberos 5 PAM module. This type has the following parameters:" msgstr "Tipo de datos que representa la configuración del módulo PAM de Kerberos 5. Este tipo tiene los siguientes parámetros:" #. type: item -#: guix-git/doc/guix.texi:25623 +#: guix-git/doc/guix.texi:25960 #, no-wrap msgid "@code{pam-krb5} (default: @code{pam-krb5})" msgstr "@code{pam-krb5} (predeterminado: @code{pam-krb5})" #. type: table -#: guix-git/doc/guix.texi:25625 +#: guix-git/doc/guix.texi:25962 msgid "The pam-krb5 package to use." msgstr "El paquete pam-krb5 usado." #. type: item -#: guix-git/doc/guix.texi:25626 +#: guix-git/doc/guix.texi:25963 #, no-wrap msgid "@code{minimum-uid} (default: @code{1000})" msgstr "@code{minimum-uid} (predeterminado: @code{1000})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:25629 +#: guix-git/doc/guix.texi:25966 msgid "The smallest user ID for which Kerberos authentications should be attempted. Local accounts with lower values will silently fail to authenticate." msgstr "El ID de usuaria mínimo con el que se permitirán los intentos de identificación con Kerberos. El proceso de identificación de las cuentas locales con valores menores fallará de manera silenciosa." #. type: cindex -#: guix-git/doc/guix.texi:25635 +#: guix-git/doc/guix.texi:25972 #, no-wrap msgid "LDAP" msgstr "LDAP" #. type: cindex -#: guix-git/doc/guix.texi:25636 +#: guix-git/doc/guix.texi:25973 #, no-wrap msgid "nslcd, LDAP service" msgstr "nslcd, servicio LDAP" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:25643 +#: guix-git/doc/guix.texi:25980 msgid "The @code{(gnu services authentication)} module provides the @code{nslcd-service-type}, which can be used to authenticate against an LDAP server. In addition to configuring the service itself, you may want to add @code{ldap} as a name service to the Name Service Switch. @xref{Name Service Switch} for detailed information." msgstr "El módulo @code{(gnu services authentication)} proporciona el tipo @code{nslcd-service-type}, que puede usarse para la identificación a través de un servidor LDAP. Además de la configuración del servicio en sí, puede desear añadir @code{ldap} como servicio de nombres en el selector de servicios de nombres (NSS). @xref{Name Service Switch} para información detallada." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:25647 +#: guix-git/doc/guix.texi:25984 msgid "Here is a simple operating system declaration with a default configuration of the @code{nslcd-service-type} and a Name Service Switch configuration that consults the @code{ldap} name service last:" msgstr "Aquí se encuentra una declaración simple de sistema operativo con la configuración predeterminada de @code{nslcd-service-type} y una configuración del selector de servicios de nombre que consulta en último lugar al servicios de nombres @code{ldap}:" #. type: lisp -#: guix-git/doc/guix.texi:25670 +#: guix-git/doc/guix.texi:26007 #, no-wrap msgid "" "(use-service-modules authentication)\n" @@ -49998,673 +50737,673 @@ msgstr "" " (gshadow services)))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:25675 +#: guix-git/doc/guix.texi:26012 msgid "Available @code{nslcd-configuration} fields are:" msgstr "Los campos disponibles de @code{nslcd-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:25676 +#: guix-git/doc/guix.texi:26013 #, no-wrap msgid "{@code{nslcd-configuration} parameter} package nss-pam-ldapd" msgstr "{parámetro de @code{nslcd-configuration}} package nss-pam-ldapd" #. type: deftypevr -#: guix-git/doc/guix.texi:25678 +#: guix-git/doc/guix.texi:26015 msgid "The @code{nss-pam-ldapd} package to use." msgstr "El paquete @code{nss-pam-ldapd} usado." #. type: deftypevr -#: guix-git/doc/guix.texi:25681 +#: guix-git/doc/guix.texi:26018 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number threads" msgstr "{parámetro de @code{nslcd-configuration}} maybe-number threads" #. type: deftypevr -#: guix-git/doc/guix.texi:25685 +#: guix-git/doc/guix.texi:26022 msgid "The number of threads to start that can handle requests and perform LDAP queries. Each thread opens a separate connection to the LDAP server. The default is to start 5 threads." msgstr "El número de hilos a iniciar que pueden gestionar peticiones y realizar consultas en LDAP. Cada hilo abre una conexión separada al servidor LDAP. Se inician 5 hilos de manera predeterminada." #. type: deftypevr -#: guix-git/doc/guix.texi:25690 +#: guix-git/doc/guix.texi:26027 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string uid" msgstr "{parámetro de @code{nslcd-configuration}} string uid" #. type: deftypevr -#: guix-git/doc/guix.texi:25692 +#: guix-git/doc/guix.texi:26029 msgid "This specifies the user id with which the daemon should be run." msgstr "Especifica el id de usuaria con el que debe ejecutarse el daemon." #. type: deftypevr -#: guix-git/doc/guix.texi:25694 guix-git/doc/guix.texi:25701 +#: guix-git/doc/guix.texi:26031 guix-git/doc/guix.texi:26038 msgid "Defaults to @samp{\"nslcd\"}." msgstr "El valor predeterminado es @samp{\"nslcd\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25697 +#: guix-git/doc/guix.texi:26034 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string gid" msgstr "{parámetro de @code{nslcd-configuration}} string gid" #. type: deftypevr -#: guix-git/doc/guix.texi:25699 +#: guix-git/doc/guix.texi:26036 msgid "This specifies the group id with which the daemon should be run." msgstr "Especifica el id de grupo con el que debe ejecutarse el daemon." #. type: deftypevr -#: guix-git/doc/guix.texi:25704 +#: guix-git/doc/guix.texi:26041 #, no-wrap msgid "{@code{nslcd-configuration} parameter} log-option log" msgstr "{parámetro de @code{nslcd-configuration}} opción-registro log" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:25712 +#: guix-git/doc/guix.texi:26049 #, fuzzy msgid "This option controls the way logging is done via a list containing SCHEME and LEVEL@. The SCHEME argument may either be the symbols @samp{none} or @samp{syslog}, or an absolute file name. The LEVEL argument is optional and specifies the log level. The log level may be one of the following symbols: @samp{crit}, @samp{error}, @samp{warning}, @samp{notice}, @samp{info} or @samp{debug}. All messages with the specified log level or higher are logged." msgstr "Esta opción controla la forma en la que se realiza el registro a través de una lista que contiene ESQUEMA y NIVEL. El parámetro ESQUEMA puede ser o bien los símbolos @samp{none} o @samp{syslog}, o la ruta absoluta de un archivo. El parámetro NIVEL es opcional y especifica el nivel de registro. El nivel de registro puede ser uno de los siguientes símbolos: @samp{crit}, @samp{error}, @samp{warning}, @samp{notice}, @samp{info} o @samp{debug}. Se registran todos los mensajes con el nivel especificado o con un nivel superior." #. type: deftypevr -#: guix-git/doc/guix.texi:25714 +#: guix-git/doc/guix.texi:26051 msgid "Defaults to @samp{(\"/var/log/nslcd\" info)}." msgstr "El valor predeterminado es @samp{(\"/var/log/nslcd\" info)}." #. type: deftypevr -#: guix-git/doc/guix.texi:25717 +#: guix-git/doc/guix.texi:26054 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list uri" msgstr "{parámetro de @code{nslcd-configuration}} lista uri" # FUZZY FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:25720 +#: guix-git/doc/guix.texi:26057 msgid "The list of LDAP server URIs. Normally, only the first server will be used with the following servers as fall-back." msgstr "La lista de URI de servidores LDAP. Normalmente, únicamente se usará el primer servidor y los siguientes se usan en caso de fallo." #. type: deftypevr -#: guix-git/doc/guix.texi:25722 +#: guix-git/doc/guix.texi:26059 msgid "Defaults to @samp{(\"ldap://localhost:389/\")}." msgstr "El valor predeterminado es @samp{\"ldap://localhost:389/\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25725 +#: guix-git/doc/guix.texi:26062 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string ldap-version" msgstr "{parámetro de @code{nslcd-configuration}} maybe-string ldap-version" #. type: deftypevr -#: guix-git/doc/guix.texi:25728 +#: guix-git/doc/guix.texi:26065 msgid "The version of the LDAP protocol to use. The default is to use the maximum version supported by the LDAP library." msgstr "La versión del protocolo LDAP usada. El valor predeterminado usa la versión máxima implementada por la biblioteca LDAP." #. type: deftypevr -#: guix-git/doc/guix.texi:25733 +#: guix-git/doc/guix.texi:26070 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string binddn" msgstr "{parámetro de @code{nslcd-configuration}} maybe-string binddn" #. type: deftypevr -#: guix-git/doc/guix.texi:25736 +#: guix-git/doc/guix.texi:26073 msgid "Specifies the distinguished name with which to bind to the directory server for lookups. The default is to bind anonymously." msgstr "Especifica el nombre distinguido con el que enlazarse en el servidor de directorio para las búsquedas. El valor predeterminado se enlaza de forma anónima." #. type: deftypevr -#: guix-git/doc/guix.texi:25741 +#: guix-git/doc/guix.texi:26078 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string bindpw" msgstr "{parámetro de @code{nslcd-configuration}} maybe-string bindpw" # FUZZY FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:25744 +#: guix-git/doc/guix.texi:26081 msgid "Specifies the credentials with which to bind. This option is only applicable when used with binddn." msgstr "Especifica las credenciales usadas para el enlace. Esta opción tiene utilidad únicamente cuando se usa con binddn." #. type: deftypevr -#: guix-git/doc/guix.texi:25749 +#: guix-git/doc/guix.texi:26086 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string rootpwmoddn" msgstr "{parámetro de @code{nslcd-configuration}} maybe-string rootpwmoddn" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:25752 +#: guix-git/doc/guix.texi:26089 msgid "Specifies the distinguished name to use when the root user tries to modify a user's password using the PAM module." msgstr "Especifica el nombre distinguido usado cuando la usuaria root intenta modificar la contraseña de una usuaria mediante el módulo de PAM." #. type: deftypevr -#: guix-git/doc/guix.texi:25757 +#: guix-git/doc/guix.texi:26094 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string rootpwmodpw" msgstr "{parámetro de @code{nslcd-configuration}} maybe-string rootpwmodpw" # FUZZY FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:25761 +#: guix-git/doc/guix.texi:26098 msgid "Specifies the credentials with which to bind if the root user tries to change a user's password. This option is only applicable when used with rootpwmoddn" msgstr "Especifica las credenciales con las que enlazarse si la usuaria root intenta cambiar la contraseña de una usuaria. Esta opción tiene utilidad únicamente cuando se usa con rootpwmoddn." #. type: deftypevr -#: guix-git/doc/guix.texi:25766 +#: guix-git/doc/guix.texi:26103 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-mech" msgstr "{parámetro de @code{nslcd-configuration}} maybe-string sasl-mech" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:25769 +#: guix-git/doc/guix.texi:26106 msgid "Specifies the SASL mechanism to be used when performing SASL authentication." msgstr "Especifica el mecanismo de SASL usado cuando se realice la identificación con SASL." #. type: deftypevr -#: guix-git/doc/guix.texi:25774 +#: guix-git/doc/guix.texi:26111 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-realm" msgstr "{parámetro de @code{nslcd-configuration}} maybe-string sasl-realm" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:25776 +#: guix-git/doc/guix.texi:26113 msgid "Specifies the SASL realm to be used when performing SASL authentication." msgstr "Especifica el dominio de SASL usado cuando se realice la identificación con SASL." #. type: deftypevr -#: guix-git/doc/guix.texi:25781 +#: guix-git/doc/guix.texi:26118 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-authcid" msgstr "{parámetro de @code{nslcd-configuration}} maybe-string sasl-authcid" # FUZZY FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:25784 +#: guix-git/doc/guix.texi:26121 msgid "Specifies the authentication identity to be used when performing SASL authentication." msgstr "Especifica la identidad de verificación usada cuando se realice la identificación con SASL." #. type: deftypevr -#: guix-git/doc/guix.texi:25789 +#: guix-git/doc/guix.texi:26126 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-authzid" msgstr "{parámetro de @code{nslcd-configuration}} maybe-string sasl-authzid" # FUZZY FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:25792 +#: guix-git/doc/guix.texi:26129 msgid "Specifies the authorization identity to be used when performing SASL authentication." msgstr "Especifica la identidad de autorización usada cuando se realice la identificación con SASL." #. type: deftypevr -#: guix-git/doc/guix.texi:25797 +#: guix-git/doc/guix.texi:26134 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean sasl-canonicalize?" msgstr "{parámetro de @code{nslcd-configuration}} maybe-boolean sasl-canonicalize?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:25802 +#: guix-git/doc/guix.texi:26139 msgid "Determines whether the LDAP server host name should be canonicalised. If this is enabled the LDAP library will do a reverse host name lookup. By default, it is left up to the LDAP library whether this check is performed or not." msgstr "Determina si el nombre de máquina del servidor LDAP debe transformarse a su forma canónica. Si se activa, la librería LDAP realizará una búsqueda inversa de nombre de máquina. De manera predeterminada, se delega en la biblioteca la decisión de realizar esta comprobación o no." #. type: deftypevr -#: guix-git/doc/guix.texi:25807 +#: guix-git/doc/guix.texi:26144 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string krb5-ccname" msgstr "{parámetro de @code{nslcd-configuration}} maybe-string krb5-ccname" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:25809 +#: guix-git/doc/guix.texi:26146 msgid "Set the name for the GSS-API Kerberos credentials cache." msgstr "Establece el nombre para la caché de credenciales GSS-API de Kerberos." #. type: deftypevr -#: guix-git/doc/guix.texi:25814 +#: guix-git/doc/guix.texi:26151 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string base" msgstr "{parámetro de @code{nslcd-configuration}} string base" #. type: deftypevr -#: guix-git/doc/guix.texi:25816 +#: guix-git/doc/guix.texi:26153 msgid "The directory search base." msgstr "El directorio de búsqueda base." #. type: deftypevr -#: guix-git/doc/guix.texi:25818 +#: guix-git/doc/guix.texi:26155 msgid "Defaults to @samp{\"dc=example,dc=com\"}." msgstr "El valor predeterminado es @samp{\"dc=example,dc=com\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25821 +#: guix-git/doc/guix.texi:26158 #, no-wrap msgid "{@code{nslcd-configuration} parameter} scope-option scope" msgstr "{parámetro de @code{nslcd-configuration}} opción-de-ámbito scope" #. type: deftypevr -#: guix-git/doc/guix.texi:25825 +#: guix-git/doc/guix.texi:26162 msgid "Specifies the search scope (subtree, onelevel, base or children). The default scope is subtree; base scope is almost never useful for name service lookups; children scope is not supported on all servers." msgstr "Especifica el ámbito de búsqueda (subtree, oneleve, base o children). El ámbito predeterminado es subtree; el ámbito base casi nunca es útil para búsquedas del servicio de nombres; el ámbito children no está implementado en todos los servidores." #. type: deftypevr -#: guix-git/doc/guix.texi:25827 +#: guix-git/doc/guix.texi:26164 msgid "Defaults to @samp{(subtree)}." msgstr "El valor predeterminado es @samp{(subtree)}." #. type: deftypevr -#: guix-git/doc/guix.texi:25830 +#: guix-git/doc/guix.texi:26167 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-deref-option deref" msgstr "{parámetro de @code{nslcd-configuration}} maybe-deref-option deref" #. type: deftypevr -#: guix-git/doc/guix.texi:25833 +#: guix-git/doc/guix.texi:26170 msgid "Specifies the policy for dereferencing aliases. The default policy is to never dereference aliases." msgstr "Especifica la política para seguir las referencias de los alias. La política predeterminada es nunca seguir las referencias de los alias." #. type: deftypevr -#: guix-git/doc/guix.texi:25838 +#: guix-git/doc/guix.texi:26175 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean referrals" msgstr "{parámetro de @code{nslcd-configuration}} maybe-boolean referrals" #. type: deftypevr -#: guix-git/doc/guix.texi:25841 +#: guix-git/doc/guix.texi:26178 msgid "Specifies whether automatic referral chasing should be enabled. The default behaviour is to chase referrals." msgstr "Especifica si el seguimiento automático de referencias debe activarse. El seguimiento de referencias es comportamiento predeterminado." #. type: deftypevr -#: guix-git/doc/guix.texi:25846 +#: guix-git/doc/guix.texi:26183 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list-of-map-entries maps" msgstr "{parámetro de @code{nslcd-configuration}} lista-asociación-entrada maps" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:25851 +#: guix-git/doc/guix.texi:26188 msgid "This option allows for custom attributes to be looked up instead of the default RFC 2307 attributes. It is a list of maps, each consisting of the name of a map, the RFC 2307 attribute to match and the query expression for the attribute as it is available in the directory." msgstr "Esta opción permite que se busquen atributos personalizados en vez de los atributos predeterminados de RFC 2307. Es una lista de asociaciones, de las que cada una consiste en el nombre de la asociación, el atributo de RFC 2307 al que corresponde y la expresión de búsqueda del atributo en la forma que esté disponible en el directorio." #. type: deftypevr -#: guix-git/doc/guix.texi:25856 +#: guix-git/doc/guix.texi:26193 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list-of-filter-entries filters" msgstr "{parámetro de @code{nslcd-configuration}} lista-asociación-entrada filters" # FUZZY FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:25859 +#: guix-git/doc/guix.texi:26196 msgid "A list of filters consisting of the name of a map to which the filter applies and an LDAP search filter expression." msgstr "Una lista de filtros que consiste en el nombre de una asociación a la que se aplica el filtro y una expresión de filtrado de búsqueda de LDAP." #. type: deftypevr -#: guix-git/doc/guix.texi:25864 +#: guix-git/doc/guix.texi:26201 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number bind-timelimit" msgstr "{parámetro de @code{nslcd-configuration}} maybe-number bind-timelimit" #. type: deftypevr -#: guix-git/doc/guix.texi:25867 +#: guix-git/doc/guix.texi:26204 msgid "Specifies the time limit in seconds to use when connecting to the directory server. The default value is 10 seconds." msgstr "Especifica el tiempo límite usado en segundos durante la conexión al servidor de directorio. El valor predeterminado son 10 segundos." #. type: deftypevr -#: guix-git/doc/guix.texi:25872 +#: guix-git/doc/guix.texi:26209 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number timelimit" msgstr "{parámetro de @code{nslcd-configuration}} maybe-number timelimit" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:25876 +#: guix-git/doc/guix.texi:26213 msgid "Specifies the time limit (in seconds) to wait for a response from the LDAP server. A value of zero, which is the default, is to wait indefinitely for searches to be completed." msgstr "Especifica el tiempo límite (en segundos) durante el que se esperará una respuesta del servidor LDAP. Un valor de cero, por omisión, hace que se espere de manera indefinida hasta que las búsquedas se completen." #. type: deftypevr -#: guix-git/doc/guix.texi:25881 +#: guix-git/doc/guix.texi:26218 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number idle-timelimit" msgstr "{parámetro de @code{nslcd-configuration}} maybe-number idle-timelimit" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:25885 +#: guix-git/doc/guix.texi:26222 msgid "Specifies the period if inactivity (in seconds) after which the con‐ nection to the LDAP server will be closed. The default is not to time out connections." msgstr "Especifica el periodo de inactividad (en segundos) tras el cual se cerrará la conexión con el servidor LDAP. El valor predeterminado no cierra las conexiones por inactividad." #. type: deftypevr -#: guix-git/doc/guix.texi:25890 +#: guix-git/doc/guix.texi:26227 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number reconnect-sleeptime" msgstr "{parámetro de @code{nslcd-configuration}} maybe-number reconnect-sleeptime" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:25894 +#: guix-git/doc/guix.texi:26231 msgid "Specifies the number of seconds to sleep when connecting to all LDAP servers fails. By default one second is waited between the first failure and the first retry." msgstr "Especifica en número de segundos que se dormirá cuando falle la conexión a todos los servidores LDAP. De manera predeterminada se espera un segundo entre el primer fallo y el primer reintento." #. type: deftypevr -#: guix-git/doc/guix.texi:25899 +#: guix-git/doc/guix.texi:26236 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number reconnect-retrytime" msgstr "{parámetro de @code{nslcd-configuration}} maybe-number reconnect-retrytime" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:25903 +#: guix-git/doc/guix.texi:26240 msgid "Specifies the time after which the LDAP server is considered to be permanently unavailable. Once this time is reached retries will be done only once per this time period. The default value is 10 seconds." msgstr "Especifica el tiempo tras el cual el servidor LDAP se considera no disponible de manera permanente. Una vez se alcance este tiempo, los reintentos se realizarán una vez en cada periodo de tiempo igual al especificado. El valor predeterminado es 10 segundos." #. type: deftypevr -#: guix-git/doc/guix.texi:25908 +#: guix-git/doc/guix.texi:26245 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-ssl-option ssl" msgstr "{parámetro de @code{nslcd-configuration}} maybe-ssl-option ssl" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:25912 +#: guix-git/doc/guix.texi:26249 msgid "Specifies whether to use SSL/TLS or not (the default is not to). If 'start-tls is specified then StartTLS is used rather than raw LDAP over SSL." msgstr "Determina si se usa SSL/TLS o no (el comportamiento predeterminado es no hacerlo). Si se especifica 'start-tls, se usa StartTLS en vez de la transmisión del protocolo LDAP en crudo sobre SSL." #. type: deftypevr -#: guix-git/doc/guix.texi:25917 +#: guix-git/doc/guix.texi:26254 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-tls-reqcert-option tls-reqcert" msgstr "{parámetro de @code{nslcd-configuration}} maybe-tls-reqcert-option tls-reqcert" #. type: deftypevr -#: guix-git/doc/guix.texi:25920 +#: guix-git/doc/guix.texi:26257 msgid "Specifies what checks to perform on a server-supplied certificate. The meaning of the values is described in the ldap.conf(5) manual page." msgstr "Especifica las comprobaciones que se deben realizar con un certificado proporcionado por el servidor. El significado de los valores se describe en la página de manual de ldap.conf(5). " #. type: deftypevr -#: guix-git/doc/guix.texi:25925 +#: guix-git/doc/guix.texi:26262 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cacertdir" msgstr "{parámetro de @code{nslcd-configuration}} maybe-string tls-cacertdir" #. type: deftypevr -#: guix-git/doc/guix.texi:25928 +#: guix-git/doc/guix.texi:26265 msgid "Specifies the directory containing X.509 certificates for peer authen‐ tication. This parameter is ignored when using GnuTLS." msgstr "Especifica el directorio que contiene los certificados X.509 para la identificación de pares. Este parámetro se ignora si se usa GnuTLS." #. type: deftypevr -#: guix-git/doc/guix.texi:25933 +#: guix-git/doc/guix.texi:26270 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cacertfile" msgstr "{parámetro de @code{nslcd-configuration}} maybe-string tls-cacertfile" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:25935 +#: guix-git/doc/guix.texi:26272 msgid "Specifies the path to the X.509 certificate for peer authentication." msgstr "Especifica la ruta al certificado X.509 para la identificación de pares." #. type: deftypevr -#: guix-git/doc/guix.texi:25940 +#: guix-git/doc/guix.texi:26277 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-randfile" msgstr "{parámetro de @code{nslcd-configuration}} maybe-string tls-randfile" #. type: deftypevr -#: guix-git/doc/guix.texi:25943 +#: guix-git/doc/guix.texi:26280 msgid "Specifies the path to an entropy source. This parameter is ignored when using GnuTLS." msgstr "Especifica la ruta de la fuente de entropía. Este parámetro se ignora si se usa GnuTLS." #. type: deftypevr -#: guix-git/doc/guix.texi:25948 +#: guix-git/doc/guix.texi:26285 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-ciphers" msgstr "{parámetro de @code{nslcd-configuration}} maybe-string tls-ciphers" #. type: deftypevr -#: guix-git/doc/guix.texi:25950 +#: guix-git/doc/guix.texi:26287 msgid "Specifies the ciphers to use for TLS as a string." msgstr "Especifica como una cadena los algoritmos de cifrado usados para TLS." #. type: deftypevr -#: guix-git/doc/guix.texi:25955 +#: guix-git/doc/guix.texi:26292 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cert" msgstr "{parámetro de @code{nslcd-configuration}} maybe-string tls-cert" #. type: deftypevr -#: guix-git/doc/guix.texi:25958 +#: guix-git/doc/guix.texi:26295 msgid "Specifies the path to the file containing the local certificate for client TLS authentication." msgstr "Especifica la ruta al archivo que contiene el certificado local para la identificación de clientes con TLS." #. type: deftypevr -#: guix-git/doc/guix.texi:25963 +#: guix-git/doc/guix.texi:26300 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-key" msgstr "{parámetro de @code{nslcd-configuration}} maybe-string tls-key" #. type: deftypevr -#: guix-git/doc/guix.texi:25966 +#: guix-git/doc/guix.texi:26303 msgid "Specifies the path to the file containing the private key for client TLS authentication." msgstr "Especifica la ruta al archivo que contiene la clave privada para la identificación de clientes con TLS." #. type: deftypevr -#: guix-git/doc/guix.texi:25971 +#: guix-git/doc/guix.texi:26308 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number pagesize" msgstr "{parámetro de @code{nslcd-configuration}} maybe-number pagesize" # FUZZY FUZZY FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:25975 +#: guix-git/doc/guix.texi:26312 msgid "Set this to a number greater than 0 to request paged results from the LDAP server in accordance with RFC2696. The default (0) is to not request paged results." msgstr "Proporcione un valor superior a 0 para solicitar al servidor LDAP que proporcione los resultados divididos en páginas de acuerdo con el RFC2696. El valor predeterminado (0) no solicita resultados divididos en páginas." #. type: deftypevr -#: guix-git/doc/guix.texi:25980 +#: guix-git/doc/guix.texi:26317 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-ignore-users-option nss-initgroups-ignoreusers" msgstr "{parámetro de @code{nslcd-configuration}} maybe-ignore-users-option nss-initgroups-ignoreusers" # FUZZY FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:25984 +#: guix-git/doc/guix.texi:26321 msgid "This option prevents group membership lookups through LDAP for the specified users. Alternatively, the value 'all-local may be used. With that value nslcd builds a full list of non-LDAP users on startup." msgstr "Esta opción previene las búsquedas de pertenencia a grupos a través de LDAP sobre las usuarias especificadas. De manera alternativa, se puede usar el valor 'all-local. Con dicho valor nslcd construye al inicio una lista completa de usuarias que no se encuentren en LDAP." #. type: deftypevr -#: guix-git/doc/guix.texi:25989 +#: guix-git/doc/guix.texi:26326 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-min-uid" msgstr "{parámetro de @code{nslcd-configuration}} maybe-number nss-min-uid" # FUZZY FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:25992 +#: guix-git/doc/guix.texi:26329 msgid "This option ensures that LDAP users with a numeric user id lower than the specified value are ignored." msgstr "Esta opción hace que se ignoren las usuarias de LDAP con un identificador numérico inferior al valor especificado." #. type: deftypevr -#: guix-git/doc/guix.texi:25997 +#: guix-git/doc/guix.texi:26334 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-uid-offset" msgstr "{parámetro de @code{nslcd-configuration}} maybe-number nss-uid-offset" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:26000 +#: guix-git/doc/guix.texi:26337 msgid "This option specifies an offset that is added to all LDAP numeric user ids. This can be used to avoid user id collisions with local users." msgstr "Esta opción especifica un desplazamiento que se añade a todos los identificadores numéricos de usuaria de LDAP. Puede usarse para evitar colisiones de identificadores con usuarias locales." #. type: deftypevr -#: guix-git/doc/guix.texi:26005 +#: guix-git/doc/guix.texi:26342 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-gid-offset" msgstr "{parámetro de @code{nslcd-configuration}} maybe-number nss-gid-offset" #. type: deftypevr -#: guix-git/doc/guix.texi:26008 +#: guix-git/doc/guix.texi:26345 msgid "This option specifies an offset that is added to all LDAP numeric group ids. This can be used to avoid user id collisions with local groups." msgstr "Esta opción especifica un desplazamiento que se añade a todos los identificadores numéricos de grupos de LDAP. Puede usarse para evitar colisiones de identificadores con grupos locales." #. type: deftypevr -#: guix-git/doc/guix.texi:26013 +#: guix-git/doc/guix.texi:26350 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-nested-groups" msgstr "{parámetro de @code{nslcd-configuration}} maybe-boolean nss-nested-groups" #. type: deftypevr -#: guix-git/doc/guix.texi:26019 +#: guix-git/doc/guix.texi:26356 msgid "If this option is set, the member attribute of a group may point to another group. Members of nested groups are also returned in the higher level group and parent groups are returned when finding groups for a specific user. The default is not to perform extra searches for nested groups." msgstr "Cuando se activa esta opción, un grupo puede contener como atributo la pertenencia a otro grupo. Los miembros de grupos anidados se devuelven en el grupo superior y los grupos superiores se devuelven cuando se busquen los grupos de una usuaria específica. El valor predeterminado determina que no se realicen búsquedas adicionales para grupos anidados." #. type: deftypevr -#: guix-git/doc/guix.texi:26024 +#: guix-git/doc/guix.texi:26361 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-getgrent-skipmembers" msgstr "{parámetro de @code{nslcd-configuration}} maybe-boolean nss-getgrent-skipmembers" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:26029 +#: guix-git/doc/guix.texi:26366 msgid "If this option is set, the group member list is not retrieved when looking up groups. Lookups for finding which groups a user belongs to will remain functional so the user will likely still get the correct groups assigned on login." msgstr "Cuando se activa esta opción, la lista de miembros de un grupo no se obtiene en las búsquedas de grupos. Las búsquedas que busquen los grupos de los que una usuaria es miembro continuarán funcionando de manera que probablemente a la usuaria se le asignen los grupos correctos durante el ingreso al sistema." #. type: deftypevr -#: guix-git/doc/guix.texi:26034 +#: guix-git/doc/guix.texi:26371 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-disable-enumeration" msgstr "{parámetro de @code{nslcd-configuration}} maybe-boolean nss-disable-enumeration" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:26040 +#: guix-git/doc/guix.texi:26377 msgid "If this option is set, functions which cause all user/group entries to be loaded from the directory will not succeed in doing so. This can dramatically reduce LDAP server load in situations where there are a great number of users and/or groups. This option is not recommended for most configurations." msgstr "Cuando se activa esta opción, las funciones que provocan la carga de todas las entradas usuaria/grupo del directorio no tendrán éxito al realizarlo. Esto puede reducir de forma dramática la carga del servidor LDAP cuando existe un gran número de usuarias y/o grupos. Esta opción no se recomienda para la mayoría de las configuraciones." #. type: deftypevr -#: guix-git/doc/guix.texi:26045 +#: guix-git/doc/guix.texi:26382 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string validnames" msgstr "{parámetro de @code{nslcd-configuration}} maybe-string validnames" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:26049 +#: guix-git/doc/guix.texi:26386 msgid "This option can be used to specify how user and group names are verified within the system. This pattern is used to check all user and group names that are requested and returned from LDAP." msgstr "Esta opción puede usarse para especificar cómo se verifican en el sistema los nombres de usuaria y grupo. Este patrón se usa para comprobar todos los nombres de usuarias y grupos que se soliciten y proporcionen a través de LDAP." #. type: deftypevr -#: guix-git/doc/guix.texi:26054 +#: guix-git/doc/guix.texi:26391 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean ignorecase" msgstr "{parámetro de @code{nslcd-configuration}} maybe-boolean ignorecase" # FUZZY FUZZY FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:26059 +#: guix-git/doc/guix.texi:26396 msgid "This specifies whether or not to perform searches using case-insensitive matching. Enabling this could open up the system to authorization bypass vulnerabilities and introduce nscd cache poisoning vulnerabilities which allow denial of service." msgstr "Especifica si se realizarán las búsquedas sin diferenciar mayúsculas y minúsculas o no. Su activación puede abrir puntos vulnerables que permitan la omisión de las comprobaciones de autorización e introducir vulnerabilidades que permitan el envenenamiento de la caché de nscd, lo que puede provocar la denegación del servicio." #. type: deftypevr -#: guix-git/doc/guix.texi:26064 +#: guix-git/doc/guix.texi:26401 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean pam-authc-ppolicy" msgstr "{parámetro de @code{nslcd-configuration}} maybe-boolean pam-authc-ppolicy" #. type: deftypevr -#: guix-git/doc/guix.texi:26067 +#: guix-git/doc/guix.texi:26404 msgid "This option specifies whether password policy controls are requested and handled from the LDAP server when performing user authentication." msgstr "Esta opción determina si los controles de la política de contraseñas se solicitan y manejan desde el servidor LDAP cuando se realice la identificación de usuarias." #. type: deftypevr -#: guix-git/doc/guix.texi:26072 +#: guix-git/doc/guix.texi:26409 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-authc-search" msgstr "{parámetro de @code{nslcd-configuration}} maybe-string pam-authc-search" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:26078 +#: guix-git/doc/guix.texi:26415 msgid "By default nslcd performs an LDAP search with the user's credentials after BIND (authentication) to ensure that the BIND operation was successful. The default search is a simple check to see if the user's DN exists. A search filter can be specified that will be used instead. It should return at least one entry." msgstr "De manera predeterminada nslcd realiza una búsqueda LDAP con las credenciales de la usuaria tras la orden BIND (identificación) para asegurarse de que la opción BIND fue satisfactoria. La búsqueda predeterminada es una simple comprobación de la existencia del DN de la usuaria. Se puede especificar un filtro de búsqueda que se usará en vez de dicha búsqueda. Debe devolver al menos una entrada." #. type: deftypevr -#: guix-git/doc/guix.texi:26083 +#: guix-git/doc/guix.texi:26420 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-authz-search" msgstr "{parámetro de @code{nslcd-configuration}} maybe-string pam-authz-search" #. type: deftypevr -#: guix-git/doc/guix.texi:26087 +#: guix-git/doc/guix.texi:26424 msgid "This option allows flexible fine tuning of the authorisation check that should be performed. The search filter specified is executed and if any entries match, access is granted, otherwise access is denied." msgstr "Esta opción permite la configuración detallada de las comprobaciones de autorización que deben realizarse. El filtro de búsqueda especificado es ejecutado, y si cualquier entrada corresponde se permite el acceso, el cual se deniega en caso contrario." #. type: deftypevr -#: guix-git/doc/guix.texi:26092 +#: guix-git/doc/guix.texi:26429 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-password-prohibit-message" msgstr "{parámetro de @code{nslcd-configuration}} maybe-string pam-password-prohibit-message" #. type: deftypevr -#: guix-git/doc/guix.texi:26097 +#: guix-git/doc/guix.texi:26434 msgid "If this option is set password modification using pam_ldap will be denied and the specified message will be presented to the user instead. The message can be used to direct the user to an alternative means of changing their password." msgstr "Si se proporciona esta opción, se denegará la modificación de contraseñas a través de pam_ldap y en vez de ello el mensaje especificado se presentará a la usuaria. El mensaje puede usarse para redirigir a la usuaria a un medio alternativo para el cambio de su contraseña." #. type: deftypevr -#: guix-git/doc/guix.texi:26102 +#: guix-git/doc/guix.texi:26439 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list pam-services" msgstr "{parámetro de @code{nslcd-configuration}} lista pam-services" #. type: deftypevr -#: guix-git/doc/guix.texi:26104 +#: guix-git/doc/guix.texi:26441 msgid "List of pam service names for which LDAP authentication should suffice." msgstr "Lista de nombres de servicio de PAM para los que la identificación de LDAP debería ser suficiente." #. type: cindex -#: guix-git/doc/guix.texi:26115 +#: guix-git/doc/guix.texi:26452 #, no-wrap msgid "web" msgstr "web" #. type: cindex -#: guix-git/doc/guix.texi:26116 +#: guix-git/doc/guix.texi:26453 #, no-wrap msgid "www" msgstr "www" #. type: cindex -#: guix-git/doc/guix.texi:26117 +#: guix-git/doc/guix.texi:26454 #, no-wrap msgid "HTTP" msgstr "HTTP" #. type: Plain text -#: guix-git/doc/guix.texi:26120 +#: guix-git/doc/guix.texi:26457 msgid "The @code{(gnu services web)} module provides the Apache HTTP Server, the nginx web server, and also a fastcgi wrapper daemon." msgstr "El módulo @code{(gnu services web)} proporciona el servidor HTTP Apache, el servidor web nginx y también un recubrimiento del daemon de fastcgi." #. type: subsubheading -#: guix-git/doc/guix.texi:26121 +#: guix-git/doc/guix.texi:26458 #, no-wrap msgid "Apache HTTP Server" msgstr "Servidor HTTP Apache" #. type: deffn -#: guix-git/doc/guix.texi:26123 +#: guix-git/doc/guix.texi:26460 #, no-wrap msgid "{Scheme Variable} httpd-service-type" msgstr "{Variable Scheme} httpd-service-type" # FUZZY #. type: deffn -#: guix-git/doc/guix.texi:26127 +#: guix-git/doc/guix.texi:26464 msgid "Service type for the @uref{https://httpd.apache.org/,Apache HTTP} server (@dfn{httpd}). The value for this service type is a @code{httpd-configuration} record." msgstr "Tipo de servicio para el servidor @uref{https://httpd.apache.org/, Apache HTTP} (@dfn{httpd}). El valor para este tipo de servicio es un registro @code{httpd-configuration}." #. type: deffn -#: guix-git/doc/guix.texi:26129 guix-git/doc/guix.texi:26311 +#: guix-git/doc/guix.texi:26466 guix-git/doc/guix.texi:26648 msgid "A simple example configuration is given below." msgstr "Un ejemplo de configuración simple se proporciona a continuación." #. type: lisp -#: guix-git/doc/guix.texi:26137 +#: guix-git/doc/guix.texi:26474 #, no-wrap msgid "" "(service httpd-service-type\n" @@ -50683,12 +51422,12 @@ msgstr "" # FUZZY #. type: deffn -#: guix-git/doc/guix.texi:26141 +#: guix-git/doc/guix.texi:26478 msgid "Other services can also extend the @code{httpd-service-type} to add to the configuration." msgstr "Otros servicios también pueden extender el tipo @code{httpd-service-type} para añadir su contribución a la configuración." #. type: lisp -#: guix-git/doc/guix.texi:26150 guix-git/doc/guix.texi:26290 +#: guix-git/doc/guix.texi:26487 guix-git/doc/guix.texi:26627 #, no-wrap msgid "" "(simple-service 'www.example.com-server httpd-service-type\n" @@ -50708,120 +51447,120 @@ msgstr "" " \"\\n\")))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:26156 +#: guix-git/doc/guix.texi:26493 msgid "The details for the @code{httpd-configuration}, @code{httpd-module}, @code{httpd-config-file} and @code{httpd-virtualhost} record types are given below." msgstr "Los detalles de los tipos de registro @code{httpd-configuration}, @code{httpd-module}, @code{httpd-config-file} y @code{httpd-virtualhost} se proporcionan a continuación." #. type: deffn -#: guix-git/doc/guix.texi:26157 +#: guix-git/doc/guix.texi:26494 #, no-wrap msgid "{Data Type} httpd-configuration" msgstr "{Tipo de datos} httpd-configuration" #. type: deffn -#: guix-git/doc/guix.texi:26159 +#: guix-git/doc/guix.texi:26496 msgid "This data type represents the configuration for the httpd service." msgstr "Este tipo de datos representa la configuración del servicio httpd." #. type: item -#: guix-git/doc/guix.texi:26161 +#: guix-git/doc/guix.texi:26498 #, no-wrap msgid "@code{package} (default: @code{httpd})" msgstr "@code{package} (predeterminado: @code{httpd})" #. type: table -#: guix-git/doc/guix.texi:26163 +#: guix-git/doc/guix.texi:26500 msgid "The httpd package to use." msgstr "El paquete httpd usado." #. type: item -#: guix-git/doc/guix.texi:26164 guix-git/doc/guix.texi:26253 +#: guix-git/doc/guix.texi:26501 guix-git/doc/guix.texi:26590 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/httpd\"})" msgstr "@code{pid-file} (predeterminado: @code{\"/var/run/httpd\"})" #. type: table -#: guix-git/doc/guix.texi:26166 +#: guix-git/doc/guix.texi:26503 msgid "The pid file used by the shepherd-service." msgstr "El archivo pid usado por el servicio de Shepherd." #. type: item -#: guix-git/doc/guix.texi:26167 +#: guix-git/doc/guix.texi:26504 #, no-wrap msgid "@code{config} (default: @code{(httpd-config-file)})" msgstr "@code{config} (predeterminado: @code{(httpd-config-file)})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:26172 +#: guix-git/doc/guix.texi:26509 #, fuzzy msgid "The configuration file to use with the httpd service. The default value is a @code{httpd-config-file} record, but this can also be a different G-expression that generates a file, for example a @code{plain-file}. A file outside of the store can also be specified through a string." msgstr "El archivo de configuración usado por el servicio httpd. El valor predeterminado es un registro @code{httpd-config-file}, pero también puede ser una expresión-G diferente que genere un archivo, por ejemplo mediante el uso de @code{plain-file}. Un archivo externo al almacén se puede especificar mediante una cadena." #. type: deffn -#: guix-git/doc/guix.texi:26176 +#: guix-git/doc/guix.texi:26513 #, no-wrap msgid "{Data Type} httpd-module" msgstr "{Tipo de datos} httpd-module" #. type: deffn -#: guix-git/doc/guix.texi:26178 +#: guix-git/doc/guix.texi:26515 msgid "This data type represents a module for the httpd service." msgstr "Este es el tipo de datos que representa un módulo para el servicio httpd." #. type: table -#: guix-git/doc/guix.texi:26182 +#: guix-git/doc/guix.texi:26519 msgid "The name of the module." msgstr "El nombre del módulo." #. type: table -#: guix-git/doc/guix.texi:26188 +#: guix-git/doc/guix.texi:26525 #, fuzzy msgid "The file for the module. This can be relative to the httpd package being used, the absolute location of a file, or a G-expression for a file within the store, for example @code{(file-append mod-wsgi \"/modules/mod_wsgi.so\")}." msgstr "El archivo para el módulo. La ruta puede ser relativa al paquete httpd usado, la ruta absoluta de un archivo, o una expresión-G para un archivo dentro del almacén, por ejemplo @code{(file-append mod-wsgi \"/modules/mod_wsgi.so\")}." #. type: defvr -#: guix-git/doc/guix.texi:26192 +#: guix-git/doc/guix.texi:26529 #, no-wrap msgid "{Scheme Variable} %default-httpd-modules" msgstr "{Variable Scheme} %default-httpd-modules" #. type: defvr -#: guix-git/doc/guix.texi:26194 +#: guix-git/doc/guix.texi:26531 msgid "A default list of @code{httpd-module} objects." msgstr "Una lista de objetos @code{httpd-module} predeterminados." #. type: deffn -#: guix-git/doc/guix.texi:26196 +#: guix-git/doc/guix.texi:26533 #, no-wrap msgid "{Data Type} httpd-config-file" msgstr "{Tipo de datos} httpd-config-file" #. type: deffn -#: guix-git/doc/guix.texi:26198 +#: guix-git/doc/guix.texi:26535 msgid "This data type represents a configuration file for the httpd service." msgstr "Este tipo de datos representa un archivo de configuración para el servicio httpd." #. type: item -#: guix-git/doc/guix.texi:26200 +#: guix-git/doc/guix.texi:26537 #, no-wrap msgid "@code{modules} (default: @code{%default-httpd-modules})" msgstr "@code{modules} (predeterminados: @code{%default-httpd-modules})" # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:26203 +#: guix-git/doc/guix.texi:26540 #, fuzzy msgid "The modules to load. Additional modules can be added here, or loaded by additional configuration." msgstr "Módulos que deben cargarse. Aquí pueden añadir módulos adicionales, o que se carguen en la configuración adicional." #. type: table -#: guix-git/doc/guix.texi:26206 +#: guix-git/doc/guix.texi:26543 msgid "For example, in order to handle requests for PHP files, you can use Apache’s @code{mod_proxy_fcgi} module along with @code{php-fpm-service-type}:" msgstr "Por ejemplo, para manejar las peticiones de archivos PHP, puede usar el módulo @code{mod_proxy_fcgi} de Apache junto con @code{php-fpm-service-type}:" #. type: lisp -#: guix-git/doc/guix.texi:26228 +#: guix-git/doc/guix.texi:26565 #, no-wrap msgid "" "(service httpd-service-type\n" @@ -50867,174 +51606,174 @@ msgstr "" " (socket-group \"httpd\")))\n" #. type: item -#: guix-git/doc/guix.texi:26230 +#: guix-git/doc/guix.texi:26567 #, no-wrap msgid "@code{server-root} (default: @code{httpd})" msgstr "@code{server-root} (predeterminado: @code{httpd})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:26234 +#: guix-git/doc/guix.texi:26571 #, fuzzy msgid "The @code{ServerRoot} in the configuration file, defaults to the httpd package. Directives including @code{Include} and @code{LoadModule} are taken as relative to the server root." msgstr "El campo @code{ServerRoot} (raíz del servidor) en el archivo de configuración, cuyo valor predeterminado apunta al paquete httpd. Directivas como @code{Include} and @code{LoadModule} se interpretan como relativas a la raíz del servidor." #. type: item -#: guix-git/doc/guix.texi:26235 +#: guix-git/doc/guix.texi:26572 #, no-wrap msgid "@code{server-name} (default: @code{#f})" msgstr "@code{server-name} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:26239 +#: guix-git/doc/guix.texi:26576 msgid "The @code{ServerName} in the configuration file, used to specify the request scheme, hostname and port that the server uses to identify itself." msgstr "El campo @code{ServerName} (nombre del servidor) en el archivo de configuración, el cual se usa para especificar el esquema de peticiones, nombre de máquina y puerto que el servidor usa para su propia identificación." #. type: table -#: guix-git/doc/guix.texi:26243 +#: guix-git/doc/guix.texi:26580 #, fuzzy msgid "This doesn't need to be set in the server config, and can be specified in virtual hosts. The default is @code{#f} to not specify a @code{ServerName}." msgstr "No es necesario proporcionar un valor en la configuración del servidor, y puede especificarse en las máquinas virtuales. El valor predeterminado es @code{#f} que no especifica un campo @code{ServerName}." #. type: item -#: guix-git/doc/guix.texi:26244 +#: guix-git/doc/guix.texi:26581 #, no-wrap msgid "@code{document-root} (default: @code{\"/srv/http\"})" msgstr "@code{document-root} (predeterminado: @code{\"/srv/http\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:26246 +#: guix-git/doc/guix.texi:26583 msgid "The @code{DocumentRoot} from which files will be served." msgstr "La raíz (@code{DocumentRoot}) desde la que se proporcionan los archivos." #. type: item -#: guix-git/doc/guix.texi:26247 +#: guix-git/doc/guix.texi:26584 #, no-wrap msgid "@code{listen} (default: @code{'(\"80\")})" msgstr "@code{listen} (predeterminado: @code{'(\"80\")})" #. type: table -#: guix-git/doc/guix.texi:26252 +#: guix-git/doc/guix.texi:26589 #, fuzzy msgid "The list of values for the @code{Listen} directives in the config file. The value should be a list of strings, when each string can specify the port number to listen on, and optionally the IP address and protocol to use." msgstr "La lista de valores para las directivas @code{Listen} en el archivo de configuración. El valor debe ser una lista de cadenas, donde cada cadena puede especificar el número de puerto en el que se escucha, y de manera opcional la dirección IP y el protocolo usados." #. type: table -#: guix-git/doc/guix.texi:26257 +#: guix-git/doc/guix.texi:26594 #, fuzzy msgid "The @code{PidFile} to use. This should match the @code{pid-file} set in the @code{httpd-configuration} so that the Shepherd service is configured correctly." msgstr "El archivo de PID usado (@code{PidFile}). Debe corresponder con el valor de @code{pid-file} proporcionado en @code{httpd-configuration} de manera que el servicio de Shepherd se configure de manera correcta." #. type: item -#: guix-git/doc/guix.texi:26258 +#: guix-git/doc/guix.texi:26595 #, no-wrap msgid "@code{error-log} (default: @code{\"/var/log/httpd/error_log\"})" msgstr "@code{error-log} (predeterminado: @code{\"/var/log/httpd/error_log\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:26260 +#: guix-git/doc/guix.texi:26597 msgid "The @code{ErrorLog} to which the server will log errors." msgstr "El archivo @code{ErrorLog} en el que el servidor registrará los errores." #. type: item -#: guix-git/doc/guix.texi:26261 guix-git/doc/guix.texi:26823 +#: guix-git/doc/guix.texi:26598 guix-git/doc/guix.texi:27160 #, no-wrap msgid "@code{user} (default: @code{\"httpd\"})" msgstr "@code{user} (predeterminada: @code{\"httpd\"})" #. type: table -#: guix-git/doc/guix.texi:26263 +#: guix-git/doc/guix.texi:26600 msgid "The @code{User} which the server will answer requests as." msgstr "La usuaria como la que el servidor responderá a las peticiones." #. type: item -#: guix-git/doc/guix.texi:26264 +#: guix-git/doc/guix.texi:26601 #, no-wrap msgid "@code{group} (default: @code{\"httpd\"})" msgstr "@code{group} (predeterminado: @code{\"httpd\"})" #. type: table -#: guix-git/doc/guix.texi:26266 +#: guix-git/doc/guix.texi:26603 msgid "The @code{Group} which the server will answer requests as." msgstr "El grupo como el que el servidor responderá a las peticiones." #. type: item -#: guix-git/doc/guix.texi:26267 +#: guix-git/doc/guix.texi:26604 #, no-wrap msgid "@code{extra-config} (default: @code{(list \"TypesConfig etc/httpd/mime.types\")})" msgstr "@code{extra-config} (predeterminadas: @code{(list \"TypesConfig etc/httpd/mime.types\")})" #. type: table -#: guix-git/doc/guix.texi:26270 +#: guix-git/doc/guix.texi:26607 msgid "A flat list of strings and G-expressions which will be added to the end of the configuration file." msgstr "Una lista de cadenas y expresiones-G que se añadirán al final del archivo de configuración." #. type: table -#: guix-git/doc/guix.texi:26273 +#: guix-git/doc/guix.texi:26610 msgid "Any values which the service is extended with will be appended to this list." msgstr "Los valores con los que se extiende el servicio se añaden al final de esta lista." #. type: deffn -#: guix-git/doc/guix.texi:26277 +#: guix-git/doc/guix.texi:26614 #, no-wrap msgid "{Data Type} httpd-virtualhost" msgstr "{Tipo de datos} httpd-virtualhost" #. type: deffn -#: guix-git/doc/guix.texi:26279 +#: guix-git/doc/guix.texi:26616 msgid "This data type represents a virtualhost configuration block for the httpd service." msgstr "Este tipo de datos representa un bloque de configuración de máquina virtual del servicio httpd." # FUZZY #. type: deffn -#: guix-git/doc/guix.texi:26281 +#: guix-git/doc/guix.texi:26618 msgid "These should be added to the extra-config for the httpd-service." msgstr "Se deben añadir a la configuración adicional extra-config del servicio httpd-service." #. type: code{#1} -#: guix-git/doc/guix.texi:26293 +#: guix-git/doc/guix.texi:26630 #, no-wrap msgid "addresses-and-ports" msgstr "addresses-and-ports" #. type: table -#: guix-git/doc/guix.texi:26295 +#: guix-git/doc/guix.texi:26632 msgid "The addresses and ports for the @code{VirtualHost} directive." msgstr "Las direcciones y puertos de la directiva @code{VirtualHost}." #. type: code{#1} -#: guix-git/doc/guix.texi:26296 +#: guix-git/doc/guix.texi:26633 #, no-wrap msgid "contents" msgstr "contents" #. type: table -#: guix-git/doc/guix.texi:26299 +#: guix-git/doc/guix.texi:26636 msgid "The contents of the @code{VirtualHost} directive, this should be a list of strings and G-expressions." msgstr "El contenido de la directiva @code{VirtualHost}; debe ser una lista de cadenas y expresiones-G." #. type: subsubheading -#: guix-git/doc/guix.texi:26304 +#: guix-git/doc/guix.texi:26641 #, no-wrap msgid "NGINX" msgstr "NGINX" #. type: deffn -#: guix-git/doc/guix.texi:26306 +#: guix-git/doc/guix.texi:26643 #, no-wrap msgid "{Scheme Variable} nginx-service-type" msgstr "{Variable Scheme} nginx-service-type" #. type: deffn -#: guix-git/doc/guix.texi:26309 +#: guix-git/doc/guix.texi:26646 msgid "Service type for the @uref{https://nginx.org/,NGinx} web server. The value for this service type is a @code{} record." msgstr "Tipo de servicio para el servidor web @uref{https://nginx.org/,NGinx}. El valor para este tipo de servicio es un registro @code{}." #. type: lisp -#: guix-git/doc/guix.texi:26319 guix-git/doc/guix.texi:26373 +#: guix-git/doc/guix.texi:26656 guix-git/doc/guix.texi:26710 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -51052,12 +51791,12 @@ msgstr "" " (root \"/srv/http/www.example.com\"))))))\n" #. type: deffn -#: guix-git/doc/guix.texi:26324 +#: guix-git/doc/guix.texi:26661 msgid "In addition to adding server blocks to the service configuration directly, this service can be extended by other services to add server blocks, as in this example:" msgstr "Además de añadiendo bloques de servidor a la configuración del servicio de manera directa, este servicio puede extenderse con otros servicios para añadir bloques de servidor, como en este ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:26330 +#: guix-git/doc/guix.texi:26667 #, no-wrap msgid "" "(simple-service 'my-extra-server nginx-service-type\n" @@ -51072,93 +51811,93 @@ msgstr "" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:26341 +#: guix-git/doc/guix.texi:26678 msgid "At startup, @command{nginx} has not yet read its configuration file, so it uses a default file to log error messages. If it fails to load its configuration file, that is where error messages are logged. After the configuration file is loaded, the default error log file changes as per configuration. In our case, startup error messages can be found in @file{/var/run/nginx/logs/error.log}, and after configuration in @file{/var/log/nginx/error.log}. The second location can be changed with the @var{log-directory} configuration option." msgstr "Durante su inicio, @command{nginx} no ha leído todavía su archivo de configuración, por lo que usa un archivo predeterminado para registrar los mensajes de error. Si se produce algún fallo al cargar su archivo de configuración, allí es donde se registran los mensajes de error. Tras la carga del archivo de configuración, el archivo de registro de errores predeterminado cambia al especificado allí. En nuestro caso, los mensajes de error durante el inicio se pueden encontrar en @file{/var/run/nginx/logs/error.log}, y tras la configuración en @file{/var/log/nginx/error.log}. La segunda ruta puede cambiarse con las opciones de configuración @var{log-directory}." #. type: deffn -#: guix-git/doc/guix.texi:26342 +#: guix-git/doc/guix.texi:26679 #, no-wrap msgid "{Data Type} nginx-configuration" msgstr "{Tipo de datos} nginx-configuration" #. type: deffn -#: guix-git/doc/guix.texi:26346 +#: guix-git/doc/guix.texi:26683 #, fuzzy msgid "This data type represents the configuration for NGinx. Some configuration can be done through this and the other provided record types, or alternatively, a config file can be provided." msgstr "Este tipo de datos representa la configuración para NGinx. Alguna configuración puede llevarse a cabo a través de este y otros tipos de registro proporcionados, o de manera alternativa se puede proporcionar un archivo de configuración." #. type: item -#: guix-git/doc/guix.texi:26348 +#: guix-git/doc/guix.texi:26685 #, no-wrap msgid "@code{nginx} (default: @code{nginx})" msgstr "@code{nginx} (predeterminado: @code{nginx})" #. type: table -#: guix-git/doc/guix.texi:26350 +#: guix-git/doc/guix.texi:26687 msgid "The nginx package to use." msgstr "El paquete nginx usado." #. type: item -#: guix-git/doc/guix.texi:26351 +#: guix-git/doc/guix.texi:26688 #, no-wrap msgid "@code{log-directory} (default: @code{\"/var/log/nginx\"})" msgstr "@code{log-directory} (predeterminado: @code{\"/var/log/nginx\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:26353 +#: guix-git/doc/guix.texi:26690 msgid "The directory to which NGinx will write log files." msgstr "Directorio en el que NGinx escribirá los archivos de registro." #. type: item -#: guix-git/doc/guix.texi:26354 +#: guix-git/doc/guix.texi:26691 #, no-wrap msgid "@code{run-directory} (default: @code{\"/var/run/nginx\"})" msgstr "@code{run-directory} (predeterminado: @code{\"/var/run/nginx\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:26357 +#: guix-git/doc/guix.texi:26694 msgid "The directory in which NGinx will create a pid file, and write temporary files." msgstr "Directorio en el que NGinx crea el archivo de PID, y escribe archivos temporales." #. type: item -#: guix-git/doc/guix.texi:26358 +#: guix-git/doc/guix.texi:26695 #, no-wrap msgid "@code{server-blocks} (default: @code{'()})" msgstr "@code{server-blocks} (predeterminados: @code{'()})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:26362 +#: guix-git/doc/guix.texi:26699 msgid "A list of @dfn{server blocks} to create in the generated configuration file, the elements should be of type @code{}." msgstr "Una lista de @dfn{bloques de servidor} que se crearán en el archivo de configuración generado; los elementos deben ser del tipo @code{}." #. type: table -#: guix-git/doc/guix.texi:26366 +#: guix-git/doc/guix.texi:26703 msgid "The following example would setup NGinx to serve @code{www.example.com} from the @code{/srv/http/www.example.com} directory, without using HTTPS." msgstr "El ejemplo siguiente configura NGinx para proporcionar @code{www.example.com} a partir del directorio @code{/srv/http/www.example.com}, sin usar HTTPS." #. type: item -#: guix-git/doc/guix.texi:26375 +#: guix-git/doc/guix.texi:26712 #, no-wrap msgid "@code{upstream-blocks} (default: @code{'()})" msgstr "@code{upstream-blocks} (predeterminados: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26379 +#: guix-git/doc/guix.texi:26716 msgid "A list of @dfn{upstream blocks} to create in the generated configuration file, the elements should be of type @code{}." msgstr "Una lista de @dfn{bloques upstream} creada en el archivo de configuración generado, los elementos deben ser del tipo @code{}." # FUZZY #. type: table -#: guix-git/doc/guix.texi:26386 +#: guix-git/doc/guix.texi:26723 msgid "Configuring upstreams through the @code{upstream-blocks} can be useful when combined with @code{locations} in the @code{} records. The following example creates a server configuration with one location configuration, that will proxy requests to a upstream configuration, which will handle requests with two servers." msgstr "La configuración de proveedores a través de @code{upstream-blocks} puede ser útil al combinarse con @code{location} en los registros @code{}. El siguiente ejemplo crea la configuración de un servidor con una configuración de ruta, que hará de intermediaria en las peticiones a la configuración de proveedores, que delegarán las peticiones en dos servidores." #. type: lisp -#: guix-git/doc/guix.texi:26405 +#: guix-git/doc/guix.texi:26742 #, no-wrap msgid "" "(service\n" @@ -51199,47 +51938,47 @@ msgstr "" # FUZZY #. type: table -#: guix-git/doc/guix.texi:26413 +#: guix-git/doc/guix.texi:26750 msgid "If a configuration @var{file} is provided, this will be used, rather than generating a configuration file from the provided @code{log-directory}, @code{run-directory}, @code{server-blocks} and @code{upstream-blocks}. For proper operation, these arguments should match what is in @var{file} to ensure that the directories are created when the service is activated." msgstr "Si se proporciona un archivo de configuración con @var{file}, se usará este, en vez de generar un archivo de configuración a partir de los parámetros @code{log-directory}, @code{run-directory}, @code{server-blocks} y @code{upstream-blocks} proporcionados. Para conseguir un funcionamiento adecuado, estos parámetros deben corresponder con el contenido de @var{file}, lo que asegura que los directorios se hayan creado durante la activación del servicio." # FUZZY #. type: table -#: guix-git/doc/guix.texi:26417 +#: guix-git/doc/guix.texi:26754 msgid "This can be useful if you have an existing configuration file, or it's not possible to do what is required through the other parts of the nginx-configuration record." msgstr "Esto puede ser útil si ya dispone de un archivo de configuración, o no es posible hacer lo que necesita con el resto de opciones del registro nginx-configuration." #. type: item -#: guix-git/doc/guix.texi:26418 +#: guix-git/doc/guix.texi:26755 #, no-wrap msgid "@code{server-names-hash-bucket-size} (default: @code{#f})" msgstr "@code{server-names-hash-bucket-size} (predeterminado: @code{#f})" # FUZZY FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:26421 +#: guix-git/doc/guix.texi:26758 msgid "Bucket size for the server names hash tables, defaults to @code{#f} to use the size of the processors cache line." msgstr "Tamaño del cubo para las tablas hash de los nombres de servidor, cuyo valor predeterminado es @code{#f} para que se use el tamaño de la línea de caché de los procesadores." #. type: item -#: guix-git/doc/guix.texi:26422 +#: guix-git/doc/guix.texi:26759 #, no-wrap msgid "@code{server-names-hash-bucket-max-size} (default: @code{#f})" msgstr "@code{server-names-hash-bucket-max-size} (predeterminado: @code{#f})" # FUZZY FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:26424 +#: guix-git/doc/guix.texi:26761 msgid "Maximum bucket size for the server names hash tables." msgstr "Tamaño máximo del cubo para las tablas hash de nombres de servidor." #. type: table -#: guix-git/doc/guix.texi:26428 +#: guix-git/doc/guix.texi:26765 msgid "List of nginx dynamic modules to load. This should be a list of file names of loadable modules, as in this example:" msgstr "Lista de módulos dinámicos de nginx cargados. Debe ser una lista de nombres de archivo de módulos cargables, como en este ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:26436 +#: guix-git/doc/guix.texi:26773 #, no-wrap msgid "" "(modules\n" @@ -51257,18 +51996,18 @@ msgstr "" "/etc/nginx/modules/ngx_http_lua_module.so\")))\n" #. type: item -#: guix-git/doc/guix.texi:26438 +#: guix-git/doc/guix.texi:26775 #, no-wrap msgid "@code{lua-package-path} (default: @code{'()})" msgstr "@code{lua-package-path} (predeterminada: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26441 +#: guix-git/doc/guix.texi:26778 msgid "List of nginx lua packages to load. This should be a list of package names of loadable lua modules, as in this example:" msgstr "Lista de paquetes de lua para nginx cargados. Debe ser una lista de nombres de archivo de módulos cargables, como en este ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:26448 +#: guix-git/doc/guix.texi:26785 #, no-wrap msgid "" "(lua-package-path (list lua-resty-core\n" @@ -51284,36 +52023,36 @@ msgstr "" " lua-resty-shell))\n" #. type: item -#: guix-git/doc/guix.texi:26450 +#: guix-git/doc/guix.texi:26787 #, no-wrap msgid "@code{lua-package-cpath} (default: @code{'()})" msgstr "@code{lua-package-cpath} (predeterminada: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26453 +#: guix-git/doc/guix.texi:26790 msgid "List of nginx lua C packages to load. This should be a list of package names of loadable lua C modules, as in this example:" msgstr "Lista de paquetes C de lua para nginx cargados. Debe ser una lista de nombres de archivo de módulos cargables, como en este ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:26456 +#: guix-git/doc/guix.texi:26793 #, no-wrap msgid "(lua-package-cpath (list lua-resty-signal))\n" msgstr "(lua-package-cpath (list lua-resty-signal))\n" #. type: item -#: guix-git/doc/guix.texi:26458 +#: guix-git/doc/guix.texi:26795 #, no-wrap msgid "@code{global-directives} (default: @code{'((events . ()))})" msgstr "@code{global-directives} (predeterminadas: @code{'((events . ()))})" # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:26461 +#: guix-git/doc/guix.texi:26798 msgid "Association list of global directives for the top level of the nginx configuration. Values may themselves be association lists." msgstr "Lista asociativa de directivas globales para el nivel superior de la configuración de nginx. Los valores en sí mismos pueden ser listas asociativas." #. type: lisp -#: guix-git/doc/guix.texi:26467 +#: guix-git/doc/guix.texi:26804 #, no-wrap msgid "" "(global-directives\n" @@ -51327,322 +52066,322 @@ msgstr "" " (events . ((worker_connections . 1024)))))\n" #. type: table -#: guix-git/doc/guix.texi:26472 +#: guix-git/doc/guix.texi:26809 msgid "Extra content for the @code{http} block. Should be string or a string valued G-expression." msgstr "Contenido adicional para el bloque @code{http}. Debe ser una cadena o una expresión-G que evalúe a una cadena." #. type: deftp -#: guix-git/doc/guix.texi:26476 +#: guix-git/doc/guix.texi:26813 #, no-wrap msgid "{Data Type} nginx-server-configuration" msgstr "{Tipo de datos} nginx-server-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26479 +#: guix-git/doc/guix.texi:26816 msgid "Data type representing the configuration of an nginx server block. This type has the following parameters:" msgstr "Tipo de datos que representa la configuración de un bloque de servidor nginx. Este tipo tiene los siguientes parámetros:" #. type: item -#: guix-git/doc/guix.texi:26481 +#: guix-git/doc/guix.texi:26818 #, no-wrap msgid "@code{listen} (default: @code{'(\"80\" \"443 ssl\")})" msgstr "@code{listen} (predeterminadas: @code{'(\"80\" \"443 ssl\")})" #. type: table -#: guix-git/doc/guix.texi:26486 +#: guix-git/doc/guix.texi:26823 msgid "Each @code{listen} directive sets the address and port for IP, or the path for a UNIX-domain socket on which the server will accept requests. Both address and port, or only address or only port can be specified. An address may also be a hostname, for example:" msgstr "Cada directiva @code{listen} establece la dirección y el puerto para IP, o la ruta para un socket de dominio de UNIX sobre el que el servidor acepta peticiones. Se puede especificar tanto dirección y puerto como únicamente la dirección o únicamente el puerto. Una dirección puede ser también un nombre de máquina, por ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:26489 +#: guix-git/doc/guix.texi:26826 #, no-wrap msgid "'(\"127.0.0.1:8000\" \"127.0.0.1\" \"8000\" \"*:8000\" \"localhost:8000\")\n" msgstr "'(\"127.0.0.1:8000\" \"127.0.0.1\" \"8000\" \"*:8000\" \"localhost:8000\")\n" #. type: item -#: guix-git/doc/guix.texi:26491 +#: guix-git/doc/guix.texi:26828 #, no-wrap msgid "@code{server-name} (default: @code{(list 'default)})" msgstr "@code{server-name} (predeterminados: @code{(list 'default)})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:26494 +#: guix-git/doc/guix.texi:26831 msgid "A list of server names this server represents. @code{'default} represents the default server for connections matching no other server." msgstr "Una lista de nombres de servidor que este servidor representa. @code{'default} representa el servidor predeterminado para conexiones que no correspondan a otro servidor." #. type: item -#: guix-git/doc/guix.texi:26495 +#: guix-git/doc/guix.texi:26832 #, no-wrap msgid "@code{root} (default: @code{\"/srv/http\"})" msgstr "@code{root} (predeterminada: @code{\"/srv/http\"})" #. type: table -#: guix-git/doc/guix.texi:26497 +#: guix-git/doc/guix.texi:26834 msgid "Root of the website nginx will serve." msgstr "Raíz del sitio web que nginx proporcionará." #. type: item -#: guix-git/doc/guix.texi:26498 +#: guix-git/doc/guix.texi:26835 #, no-wrap msgid "@code{locations} (default: @code{'()})" msgstr "@code{locations} (predeterminado: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26502 +#: guix-git/doc/guix.texi:26839 msgid "A list of @dfn{nginx-location-configuration} or @dfn{nginx-named-location-configuration} records to use within this server block." msgstr "Una lista de registros @dfn{nginx-location-configuration} o @dfn{nginx-named-location-configuration} usados dentro de este bloque de servidor." #. type: item -#: guix-git/doc/guix.texi:26503 +#: guix-git/doc/guix.texi:26840 #, no-wrap msgid "@code{index} (default: @code{(list \"index.html\")})" msgstr "@code{index} (predeterminado: @code{(list \"index.html\")})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:26506 +#: guix-git/doc/guix.texi:26843 msgid "Index files to look for when clients ask for a directory. If it cannot be found, Nginx will send the list of files in the directory." msgstr "Archivos de índice buscados cuando los clientes solicitan un directorio. Si no se encuentra ninguno, Nginx enviará la lista de archivos del directorio." #. type: item -#: guix-git/doc/guix.texi:26507 +#: guix-git/doc/guix.texi:26844 #, no-wrap msgid "@code{try-files} (default: @code{'()})" msgstr "@code{try-files} (predeterminado: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26510 +#: guix-git/doc/guix.texi:26847 msgid "A list of files whose existence is checked in the specified order. @code{nginx} will use the first file it finds to process the request." msgstr "Una lista de archivos cuya existencia se comprueba en el orden especificado. @code{nginx} usará el primer archivo que encuentre para procesar la petición." #. type: item -#: guix-git/doc/guix.texi:26511 +#: guix-git/doc/guix.texi:26848 #, no-wrap msgid "@code{ssl-certificate} (default: @code{#f})" msgstr "@code{ssl-certificate} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:26514 +#: guix-git/doc/guix.texi:26851 msgid "Where to find the certificate for secure connections. Set it to @code{#f} if you don't have a certificate or you don't want to use HTTPS." msgstr "Lugar donde se encuentra el certificado para conexiones seguras. Proporcione @code{#f} si no dispone de un certificado o no desea usar HTTPS." #. type: item -#: guix-git/doc/guix.texi:26515 +#: guix-git/doc/guix.texi:26852 #, no-wrap msgid "@code{ssl-certificate-key} (default: @code{#f})" msgstr "@code{ssl-certificate-key} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:26518 +#: guix-git/doc/guix.texi:26855 msgid "Where to find the private key for secure connections. Set it to @code{#f} if you don't have a key or you don't want to use HTTPS." msgstr "Lugar donde se encuentra la clave privada para conexiones seguras. Proporcione @code{#f} si no dispone de una clave o no desea usar HTTPS." #. type: item -#: guix-git/doc/guix.texi:26519 +#: guix-git/doc/guix.texi:26856 #, no-wrap msgid "@code{server-tokens?} (default: @code{#f})" msgstr "@code{server-tokens?} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:26521 +#: guix-git/doc/guix.texi:26858 msgid "Whether the server should add its configuration to response." msgstr "Determina si el servidor debe añadir su configuración a las respuestas." #. type: item -#: guix-git/doc/guix.texi:26522 +#: guix-git/doc/guix.texi:26859 #, no-wrap msgid "@code{raw-content} (default: @code{'()})" msgstr "@code{raw-content} (predeterminado: @code{'()})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:26524 +#: guix-git/doc/guix.texi:26861 msgid "A list of raw lines added to the server block." msgstr "Una lista de líneas que se añadirán literalmente al bloque del servidor." #. type: deftp -#: guix-git/doc/guix.texi:26528 +#: guix-git/doc/guix.texi:26865 #, no-wrap msgid "{Data Type} nginx-upstream-configuration" msgstr "{Tipo de datos} nginx-upstream-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26531 +#: guix-git/doc/guix.texi:26868 msgid "Data type representing the configuration of an nginx @code{upstream} block. This type has the following parameters:" msgstr "Tipo de datos que representa la configuración de un bloque @code{upstream} de nginx. Este tipo tiene los siguientes parámetros:" #. type: table -#: guix-git/doc/guix.texi:26535 +#: guix-git/doc/guix.texi:26872 msgid "Name for this group of servers." msgstr "Nombre para este grupo de servidores." #. type: code{#1} -#: guix-git/doc/guix.texi:26536 +#: guix-git/doc/guix.texi:26873 #, no-wrap msgid "servers" msgstr "servers" # FUZZY #. type: table -#: guix-git/doc/guix.texi:26543 +#: guix-git/doc/guix.texi:26880 msgid "Specify the addresses of the servers in the group. The address can be specified as a IP address (e.g.@: @samp{127.0.0.1}), domain name (e.g.@: @samp{backend1.example.com}) or a path to a UNIX socket using the prefix @samp{unix:}. For addresses using an IP address or domain name, the default port is 80, and a different port can be specified explicitly." msgstr "Especifica las direcciones de los servidores en el grupo. Las direcciones se pueden proporcionar mediante direcciones IP (por ejemplo @samp{127.0.0.1}), nombres de dominio (por ejemplo @samp{maquina1.example.com}) o rutas de socket de UNIX mediante el prefijo @samp{unix:}. El puerto predeterminado para las direcciones IP o nombres de dominio es el 80, y se puede proporcionar un puerto de manera explícita." #. type: deftp -#: guix-git/doc/guix.texi:26547 +#: guix-git/doc/guix.texi:26884 #, no-wrap msgid "{Data Type} nginx-location-configuration" msgstr "{Tipo de datos} nginx-location-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26550 +#: guix-git/doc/guix.texi:26887 msgid "Data type representing the configuration of an nginx @code{location} block. This type has the following parameters:" msgstr "Tipo de datos que representa la configuración de un bloque @code{location} de nginx. Este tipo tiene los siguientes parámetros:" #. type: table -#: guix-git/doc/guix.texi:26554 +#: guix-git/doc/guix.texi:26891 msgid "URI which this location block matches." msgstr "URI a la que corresponde este bloque de location." #. type: anchor{#1} -#: guix-git/doc/guix.texi:26556 +#: guix-git/doc/guix.texi:26893 msgid "nginx-location-configuration body" msgstr "cuerpo de nginx-location-configuration" #. type: code{#1} -#: guix-git/doc/guix.texi:26556 guix-git/doc/guix.texi:26577 +#: guix-git/doc/guix.texi:26893 guix-git/doc/guix.texi:26914 #, no-wrap msgid "body" msgstr "body" #. type: table -#: guix-git/doc/guix.texi:26563 +#: guix-git/doc/guix.texi:26900 #, fuzzy msgid "Body of the location block, specified as a list of strings. This can contain many configuration directives. For example, to pass requests to a upstream server group defined using an @code{nginx-upstream-configuration} block, the following directive would be specified in the body @samp{(list \"proxy_pass http://upstream-name;\")}." msgstr "Cuerpo del bloque de localización ``location'', especificado como una lista de cadenas. Puede contener muchas directivas de configuración. Por ejemplo, para pasar las peticiones a un grupo de servidores proveedores definido mediante el uso de un bloque @code{nginx-upstream-configuration}, se especificaría la siguiente directiva en el cuerpo @samp{(list \\\"proxy_pass http://nombre-proveedor;\\\")}." #. type: deftp -#: guix-git/doc/guix.texi:26567 +#: guix-git/doc/guix.texi:26904 #, no-wrap msgid "{Data Type} nginx-named-location-configuration" msgstr "{Tipo de datos} nginx-named-location-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26572 +#: guix-git/doc/guix.texi:26909 msgid "Data type representing the configuration of an nginx named location block. Named location blocks are used for request redirection, and not used for regular request processing. This type has the following parameters:" msgstr "Tipo de datos que representa la configuración de un bloque de localización con nombre de nginx. Los bloques de localizaciones con nombre se usan para la redirección de peticiones, y no se usan para el procesamiento regular de peticiones. Este tipo tiene los siguientes parámetros:" # FUZZY #. type: table -#: guix-git/doc/guix.texi:26576 +#: guix-git/doc/guix.texi:26913 msgid "Name to identify this location block." msgstr "Nombre que identifica este bloque de dirección @code{location}." # FUZZY #. type: table -#: guix-git/doc/guix.texi:26582 +#: guix-git/doc/guix.texi:26919 msgid "@xref{nginx-location-configuration body}, as the body for named location blocks can be used in a similar way to the @code{nginx-location-configuration body}. One restriction is that the body of a named location block cannot contain location blocks." msgstr "@xref{cuerpo de nginx-location-configuration}, como el cuerpo de los bloques de localizaciones con nombre puede usarse de manera similar al @code{cuerpo de nginx-location-configuration}. Una restricción es que el cuerpo de una localización con nombre no puede contener bloques de localizaciones." #. type: subsubheading -#: guix-git/doc/guix.texi:26586 +#: guix-git/doc/guix.texi:26923 #, no-wrap msgid "Varnish Cache" msgstr "Caché Varnish" #. type: cindex -#: guix-git/doc/guix.texi:26587 +#: guix-git/doc/guix.texi:26924 #, no-wrap msgid "Varnish" msgstr "Varnish" #. type: Plain text -#: guix-git/doc/guix.texi:26592 +#: guix-git/doc/guix.texi:26929 msgid "Varnish is a fast cache server that sits in between web applications and end users. It proxies requests from clients and caches the accessed URLs such that multiple requests for the same resource only creates one request to the back-end." msgstr "Varnish es un servidor de caché rápida que se coloca entre aplicaciones web y usuarios finales. Redirige peticiones a los clientes y almacena en caché las URL a las que se accede de manera que múltiples peticiones al mismo recurso únicamente creen una petición al motor." #. type: defvr -#: guix-git/doc/guix.texi:26593 +#: guix-git/doc/guix.texi:26930 #, no-wrap msgid "{Scheme Variable} varnish-service-type" msgstr "{Variable Scheme} varnish-service-type" #. type: defvr -#: guix-git/doc/guix.texi:26595 +#: guix-git/doc/guix.texi:26932 msgid "Service type for the Varnish daemon." msgstr "Tipo de servicio para el daemon Varnish." #. type: deftp -#: guix-git/doc/guix.texi:26597 +#: guix-git/doc/guix.texi:26934 #, no-wrap msgid "{Data Type} varnish-configuration" msgstr "{Tipo de datos} varnish-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26600 +#: guix-git/doc/guix.texi:26937 msgid "Data type representing the @code{varnish} service configuration. This type has the following parameters:" msgstr "Tipo de datos que representa la configuración del servicio @code{varnish}. Este tipo tiene los siguientes parámetros:" #. type: item -#: guix-git/doc/guix.texi:26602 +#: guix-git/doc/guix.texi:26939 #, no-wrap msgid "@code{package} (default: @code{varnish})" msgstr "@code{package} (predeterminado: @code{varnish})" #. type: table -#: guix-git/doc/guix.texi:26604 +#: guix-git/doc/guix.texi:26941 msgid "The Varnish package to use." msgstr "El paquete Varnish usado." #. type: item -#: guix-git/doc/guix.texi:26605 +#: guix-git/doc/guix.texi:26942 #, no-wrap msgid "@code{name} (default: @code{\"default\"})" msgstr "@code{name} (predeterminado: @code{\"default\"})" #. type: table -#: guix-git/doc/guix.texi:26610 +#: guix-git/doc/guix.texi:26947 msgid "A name for this Varnish instance. Varnish will create a directory in @file{/var/varnish/} with this name and keep temporary files there. If the name starts with a forward slash, it is interpreted as an absolute directory name." msgstr "Un nombre para esta instancia de Varnish. Varnish creará un directorio en @file{/var/varnish} con este nombre y mantendrá allí los archivos temporales. Si el nombre comienza con una barra, se interpreta como un nombre absoluto de directorio." #. type: table -#: guix-git/doc/guix.texi:26613 +#: guix-git/doc/guix.texi:26950 msgid "Pass the @code{-n} argument to other Varnish programs to connect to the named instance, e.g.@: @command{varnishncsa -n default}." msgstr "Proporcione el parámetro @code{-n} a otros programas de Varnish para que se conecten a la instancia de dicho nombre, por ejemplo @command{varnishncsa -n default}." #. type: item -#: guix-git/doc/guix.texi:26614 +#: guix-git/doc/guix.texi:26951 #, no-wrap msgid "@code{backend} (default: @code{\"localhost:8080\"})" msgstr "@code{backend} (predeterminado: @code{\"localhost:8080\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:26616 +#: guix-git/doc/guix.texi:26953 msgid "The backend to use. This option has no effect if @code{vcl} is set." msgstr "Motor usado. Esta opción no tiene efecto si se usa @code{vcl}." #. type: item -#: guix-git/doc/guix.texi:26617 +#: guix-git/doc/guix.texi:26954 #, no-wrap msgid "@code{vcl} (default: #f)" msgstr "@code{vcl} (predeterminado: #f)" # FUZZY #. type: table -#: guix-git/doc/guix.texi:26622 +#: guix-git/doc/guix.texi:26959 msgid "The @dfn{VCL} (Varnish Configuration Language) program to run. If this is @code{#f}, Varnish will proxy @code{backend} using the default configuration. Otherwise this must be a file-like object with valid VCL syntax." msgstr "El programa @dfn{VCL} (lenguaje de configuración de Varnish) ejecutado. Si se proporciona @code{#f}, Varnish llevará a cabo las redirecciones al motor (@code{backend}) usando la configuración predeterminada. En otro caso debe ser un objeto ``tipo-archivo'' con sintaxis válida para VCL." #. type: table -#: guix-git/doc/guix.texi:26626 +#: guix-git/doc/guix.texi:26963 msgid "For example, to mirror @url{https://www.gnu.org,www.gnu.org} with VCL you can do something along these lines:" msgstr "Por ejemplo, para proporcionar un espejo de @url{https://www.gnu.org,www.gnu.org} con VCL podría escribir algo parecido a esto:" #. type: lisp -#: guix-git/doc/guix.texi:26632 +#: guix-git/doc/guix.texi:26969 #, no-wrap msgid "" "(define %gnu-mirror\n" @@ -51658,7 +52397,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:26640 +#: guix-git/doc/guix.texi:26977 #, no-wrap msgid "" "(operating-system\n" @@ -51678,85 +52417,85 @@ msgstr "" " %base-services)))\n" #. type: table -#: guix-git/doc/guix.texi:26644 +#: guix-git/doc/guix.texi:26981 msgid "The configuration of an already running Varnish instance can be inspected and changed using the @command{varnishadm} program." msgstr "La configuración de una instancia de Varnish ya en ejecución se puede inspeccionar y cambiar mediante el uso de la orden @command{varnishadm}." # FUZZY #. type: table -#: guix-git/doc/guix.texi:26648 +#: guix-git/doc/guix.texi:26985 msgid "Consult the @url{https://varnish-cache.org/docs/,Varnish User Guide} and @url{https://book.varnish-software.com/4.0/,Varnish Book} for comprehensive documentation on Varnish and its configuration language." msgstr "Consulte la @url{https://varnish-cache.org/docs/,guía de usuaria de Varnish} y @url{https://book.varnish-software.com/4.0/,el libro de Varnish} para obtener la documentación completa de Varnish y su lenguaje de configuración." #. type: item -#: guix-git/doc/guix.texi:26649 +#: guix-git/doc/guix.texi:26986 #, no-wrap msgid "@code{listen} (default: @code{'(\"localhost:80\")})" msgstr "@code{listen} (predeterminada: @code{'(\"localhost:80\")})" #. type: table -#: guix-git/doc/guix.texi:26651 +#: guix-git/doc/guix.texi:26988 msgid "List of addresses Varnish will listen on." msgstr "Lista de direcciones en las que Varnish escucha." #. type: item -#: guix-git/doc/guix.texi:26652 +#: guix-git/doc/guix.texi:26989 #, no-wrap msgid "@code{storage} (default: @code{'(\"malloc,128m\")})" msgstr "@code{storage} (predeterminado: @code{'(\"malloc,128m\")})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:26654 +#: guix-git/doc/guix.texi:26991 msgid "List of storage backends that will be available in VCL." msgstr "Lista de motores de almacenamiento que estarán disponibles en VCL." #. type: item -#: guix-git/doc/guix.texi:26655 +#: guix-git/doc/guix.texi:26992 #, no-wrap msgid "@code{parameters} (default: @code{'()})" msgstr "@code{parameters} (predeterminados: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26657 +#: guix-git/doc/guix.texi:26994 msgid "List of run-time parameters in the form @code{'((\"parameter\" . \"value\"))}." msgstr "Lista de parámetros de tiempo de ejecución con la forma @code{'((\"parámetro\" . \"valor\"))}." #. type: table -#: guix-git/doc/guix.texi:26660 +#: guix-git/doc/guix.texi:26997 msgid "Additional arguments to pass to the @command{varnishd} process." msgstr "Parámetros adicionales a proporcional al proceso @command{varnishd}." #. type: cindex -#: guix-git/doc/guix.texi:26664 guix-git/doc/guix.texi:26665 +#: guix-git/doc/guix.texi:27001 guix-git/doc/guix.texi:27002 #, no-wrap msgid "Patchwork" msgstr "Patchwork" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:26668 +#: guix-git/doc/guix.texi:27005 msgid "Patchwork is a patch tracking system. It can collect patches sent to a mailing list, and display them in a web interface." msgstr "Patchwork es un sistema de seguimiento de parches. Puede recolectar parches enviados a listas de correo y mostrarlos en una interfaz web." #. type: defvr -#: guix-git/doc/guix.texi:26669 +#: guix-git/doc/guix.texi:27006 #, no-wrap msgid "{Scheme Variable} patchwork-service-type" msgstr "{Variable Scheme} patchwork-service-type" #. type: defvr -#: guix-git/doc/guix.texi:26671 +#: guix-git/doc/guix.texi:27008 msgid "Service type for Patchwork." msgstr "Tipo de servicio para Patchwork." #. type: Plain text -#: guix-git/doc/guix.texi:26675 +#: guix-git/doc/guix.texi:27012 msgid "The following example is an example of a minimal service for Patchwork, for the @code{patchwork.example.com} domain." msgstr "El siguiente ejemplo muestra un servicio mínimo para Patchwork, para el dominio @code{patchwork.example.com}." #. type: lisp -#: guix-git/doc/guix.texi:26695 +#: guix-git/doc/guix.texi:27032 #, no-wrap msgid "" "(service patchwork-service-type\n" @@ -51801,501 +52540,501 @@ msgstr "" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:26701 +#: guix-git/doc/guix.texi:27038 msgid "There are three records for configuring the Patchwork service. The @code{} relates to the configuration for Patchwork within the HTTPD service." msgstr "Existen tres registros para la configuración del servicio de Patchwork. El registro @code{} está relacionado con la configuración de Patchwork dentro del servicio HTTPD." #. type: Plain text -#: guix-git/doc/guix.texi:26705 +#: guix-git/doc/guix.texi:27042 msgid "The @code{settings-module} field within the @code{} record can be populated with the @code{} record, which describes a settings module that is generated within the Guix store." msgstr "El campo @code{settings-module} dentro del registro @code{} puede rellenarse con un registro @code{}, que describe un módulo de configuración generado dentro del almacén de Guix." #. type: Plain text -#: guix-git/doc/guix.texi:26709 +#: guix-git/doc/guix.texi:27046 msgid "For the @code{database-configuration} field within the @code{}, the @code{} must be used." msgstr "En el campo @code{database-configuration} dentro del registro @code{}, debe usarse @code{}." #. type: deftp -#: guix-git/doc/guix.texi:26710 +#: guix-git/doc/guix.texi:27047 #, no-wrap msgid "{Data Type} patchwork-configuration" msgstr "{Tipo de datos} patchwork-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26713 +#: guix-git/doc/guix.texi:27050 msgid "Data type representing the Patchwork service configuration. This type has the following parameters:" msgstr "Tipo de datos que representa la configuración del servicio Patchwok. Este tipo tiene los siguientes parámetros:" #. type: item -#: guix-git/doc/guix.texi:26715 +#: guix-git/doc/guix.texi:27052 #, no-wrap msgid "@code{patchwork} (default: @code{patchwork})" msgstr "@code{patchwork} (predeterminado: @code{patchwork})" #. type: table -#: guix-git/doc/guix.texi:26717 +#: guix-git/doc/guix.texi:27054 msgid "The Patchwork package to use." msgstr "El paquete Patchwork usado." #. type: code{#1} -#: guix-git/doc/guix.texi:26718 +#: guix-git/doc/guix.texi:27055 #, no-wrap msgid "domain" msgstr "domain" # FUZZY #. type: table -#: guix-git/doc/guix.texi:26721 +#: guix-git/doc/guix.texi:27058 msgid "The domain to use for Patchwork, this is used in the HTTPD service virtual host." msgstr "Dominio usado por Patchwork, se usa en el servicio HTTPD como ``virtual host''." #. type: code{#1} -#: guix-git/doc/guix.texi:26722 +#: guix-git/doc/guix.texi:27059 #, no-wrap msgid "settings-module" msgstr "settings-module" # FUZZY #. type: table -#: guix-git/doc/guix.texi:26728 +#: guix-git/doc/guix.texi:27065 #, fuzzy msgid "The settings module to use for Patchwork. As a Django application, Patchwork is configured with a Python module containing the settings. This can either be an instance of the @code{} record, any other record that represents the settings in the store, or a directory outside of the store." msgstr "Módulo de configuración usado para Patchwork. Como una aplicación de Django, Patchwork se configura con un módulo Python que contiene los valores de configuración. Esto puede ser una instancia de un registro @code{}, cualquier otro registro que represente la configuración en el almacén, o un directorio fuera del almacén." #. type: item -#: guix-git/doc/guix.texi:26729 +#: guix-git/doc/guix.texi:27066 #, no-wrap msgid "@code{static-path} (default: @code{\"/static/\"})" msgstr "@code{static-path} (predeterminada: @code{\"/static/\"})" #. type: table -#: guix-git/doc/guix.texi:26731 +#: guix-git/doc/guix.texi:27068 msgid "The path under which the HTTPD service should serve the static files." msgstr "Ruta bajo la cual el servicio HTTPD proporciona archivos estáticos." #. type: code{#1} -#: guix-git/doc/guix.texi:26732 +#: guix-git/doc/guix.texi:27069 #, no-wrap msgid "getmail-retriever-config" msgstr "getmail-retriever-config" #. type: table -#: guix-git/doc/guix.texi:26736 +#: guix-git/doc/guix.texi:27073 #, fuzzy msgid "The getmail-retriever-configuration record value to use with Patchwork. Getmail will be configured with this value, the messages will be delivered to Patchwork." msgstr "El valor del registro @code{getmail-retriever-configuration} usado con Patchwork. En caso de configurar Getmail con este valor, los mensajes se proporcionan a Patchwork." #. type: deftp -#: guix-git/doc/guix.texi:26740 +#: guix-git/doc/guix.texi:27077 #, no-wrap msgid "{Data Type} patchwork-settings-module" msgstr "{Tipo de datos} patchwork-settings-module" #. type: deftp -#: guix-git/doc/guix.texi:26745 +#: guix-git/doc/guix.texi:27082 msgid "Data type representing a settings module for Patchwork. Some of these settings relate directly to Patchwork, but others relate to Django, the web framework used by Patchwork, or the Django Rest Framework library. This type has the following parameters:" msgstr "Tipo de datos que representa un módulo de configuración de Patchwork. Algunas de estas opciones están directamente relacionadas con Patchwork, pero otras son relativas a Django, el entorno web usado Patchwork, o la biblioteca Django Rest Framework. Este tipo tiene los siguientes parámetros:" #. type: item -#: guix-git/doc/guix.texi:26747 +#: guix-git/doc/guix.texi:27084 #, no-wrap msgid "@code{database-configuration} (default: @code{(patchwork-database-configuration)})" msgstr "@code{database-configuration} (predeterminada: @code{(patchwork-database-configuration)})" #. type: table -#: guix-git/doc/guix.texi:26750 +#: guix-git/doc/guix.texi:27087 msgid "The database connection settings used for Patchwork. See the @code{} record type for more information." msgstr "La configuración de la conexión a la base de datos usada para Patchwork. Véase el tipo de registro @code{} para más información." #. type: item -#: guix-git/doc/guix.texi:26751 +#: guix-git/doc/guix.texi:27088 #, no-wrap msgid "@code{secret-key-file} (default: @code{\"/etc/patchwork/django-secret-key\"})" msgstr "@code{secret-key-file} (predeterminado: @code{\"/etc/patchwork/django-secret-key\"})" #. type: table -#: guix-git/doc/guix.texi:26754 +#: guix-git/doc/guix.texi:27091 msgid "Patchwork, as a Django web application uses a secret key for cryptographically signing values. This file should contain a unique unpredictable value." msgstr "Patchwork, como una aplicación web Django, usa una clave secreta para firmar criptográficamente valores. Este archivo debe contener un valor único e impredecible." # FUZZY #. type: table -#: guix-git/doc/guix.texi:26757 +#: guix-git/doc/guix.texi:27094 msgid "If this file does not exist, it will be created and populated with a random value by the patchwork-setup shepherd service." msgstr "Si este archivo no existe, el servicio de Shepherd patchwork-setup lo creará y rellenará con un valor aleatorio." #. type: table -#: guix-git/doc/guix.texi:26759 +#: guix-git/doc/guix.texi:27096 msgid "This setting relates to Django." msgstr "Esta configuración está relacionada con Django." #. type: code{#1} -#: guix-git/doc/guix.texi:26760 +#: guix-git/doc/guix.texi:27097 #, no-wrap msgid "allowed-hosts" msgstr "allowed-hosts" #. type: table -#: guix-git/doc/guix.texi:26763 +#: guix-git/doc/guix.texi:27100 #, fuzzy msgid "A list of valid hosts for this Patchwork service. This should at least include the domain specified in the @code{} record." msgstr "Lista de nombres de máquina válidos para este servicio Patchwork. Al menos debe incluir el dominio especificado en el registro @code{}." #. type: table -#: guix-git/doc/guix.texi:26765 guix-git/doc/guix.texi:26779 -#: guix-git/doc/guix.texi:26785 guix-git/doc/guix.texi:26791 +#: guix-git/doc/guix.texi:27102 guix-git/doc/guix.texi:27116 +#: guix-git/doc/guix.texi:27122 guix-git/doc/guix.texi:27128 msgid "This is a Django setting." msgstr "Esta es una opción de configuración de Django." #. type: code{#1} -#: guix-git/doc/guix.texi:26766 +#: guix-git/doc/guix.texi:27103 #, no-wrap msgid "default-from-email" msgstr "default-from-email" #. type: table -#: guix-git/doc/guix.texi:26768 +#: guix-git/doc/guix.texi:27105 msgid "The email address from which Patchwork should send email by default." msgstr "La dirección de correo desde de la que Patchwork debe enviar el correo de manera predeterminada." #. type: table -#: guix-git/doc/guix.texi:26770 guix-git/doc/guix.texi:26796 -#: guix-git/doc/guix.texi:26801 guix-git/doc/guix.texi:26806 +#: guix-git/doc/guix.texi:27107 guix-git/doc/guix.texi:27133 +#: guix-git/doc/guix.texi:27138 guix-git/doc/guix.texi:27143 msgid "This is a Patchwork setting." msgstr "Esta es una opción de configuración de Patchwork." #. type: item -#: guix-git/doc/guix.texi:26771 +#: guix-git/doc/guix.texi:27108 #, no-wrap msgid "@code{static-url} (default: @code{#f})" msgstr "@code{static-url} (predeterminada: @code{#f})" # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:26774 +#: guix-git/doc/guix.texi:27111 #, fuzzy msgid "The URL to use when serving static assets. It can be part of a URL, or a full URL, but must end in a @code{/}." msgstr "La URL usada para proporcionar objetos estáticos. Puede ser parte de una URL, o una URL completa, pero debe terminar en @code{/}." #. type: table -#: guix-git/doc/guix.texi:26777 +#: guix-git/doc/guix.texi:27114 msgid "If the default value is used, the @code{static-path} value from the @code{} record will be used." msgstr "Si se usa el valor predeterminado, se usará el valor de @code{static-path} del registro @code{}." #. type: item -#: guix-git/doc/guix.texi:26780 +#: guix-git/doc/guix.texi:27117 #, no-wrap msgid "@code{admins} (default: @code{'()})" msgstr "@code{admins} (predeterminadas: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26783 +#: guix-git/doc/guix.texi:27120 msgid "Email addresses to send the details of errors that occur. Each value should be a list containing two elements, the name and then the email address." msgstr "Direcciones de correo electrónico a las que enviar los detalles de los errores que ocurran. Cada valor debe ser una lista que contenga dos elementos, el nombre y la dirección de correo electrónico en dicho orden." #. type: table -#: guix-git/doc/guix.texi:26789 +#: guix-git/doc/guix.texi:27126 msgid "Whether to run Patchwork in debug mode. If set to @code{#t}, detailed error messages will be shown." msgstr "Determina si se ejecuta Patchwork en modo de depuración. Si se proporciona @code{#t}, se mostrarán mensajes de error detallados." #. type: item -#: guix-git/doc/guix.texi:26792 +#: guix-git/doc/guix.texi:27129 #, no-wrap msgid "@code{enable-rest-api?} (default: @code{#t})" msgstr "@code{enable-rest-api?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:26794 +#: guix-git/doc/guix.texi:27131 msgid "Whether to enable the Patchwork REST API." msgstr "Determina si se activa el API REST de Patchwork." #. type: item -#: guix-git/doc/guix.texi:26797 +#: guix-git/doc/guix.texi:27134 #, no-wrap msgid "@code{enable-xmlrpc?} (default: @code{#t})" msgstr "@code{enable-xmlrpc?} (predeterminado: @code{#t})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:26799 +#: guix-git/doc/guix.texi:27136 msgid "Whether to enable the XML RPC API." msgstr "Determina si se activa el API XML RPC." #. type: item -#: guix-git/doc/guix.texi:26802 +#: guix-git/doc/guix.texi:27139 #, no-wrap msgid "@code{force-https-links?} (default: @code{#t})" msgstr "@code{force-https-links?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:26804 +#: guix-git/doc/guix.texi:27141 msgid "Whether to use HTTPS links on Patchwork pages." msgstr "Determina si se usan enlaces HTTPS en las páginas de Patchwork." #. type: table -#: guix-git/doc/guix.texi:26809 +#: guix-git/doc/guix.texi:27146 msgid "Extra code to place at the end of the Patchwork settings module." msgstr "Código adicional que colocar al final del módulo de configuración de Patchwork." #. type: deftp -#: guix-git/doc/guix.texi:26813 +#: guix-git/doc/guix.texi:27150 #, no-wrap msgid "{Data Type} patchwork-database-configuration" msgstr "{Tipo de datos} patchwork-database-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26815 +#: guix-git/doc/guix.texi:27152 msgid "Data type representing the database configuration for Patchwork." msgstr "Tipo de datos que representa la configuración de base de datos de Patchwork." #. type: item -#: guix-git/doc/guix.texi:26817 +#: guix-git/doc/guix.texi:27154 #, no-wrap msgid "@code{engine} (default: @code{\"django.db.backends.postgresql_psycopg2\"})" msgstr "@code{engine} (predeterminado: @code{\"django.db.backends.postgresql_psycopg2\"})" #. type: table -#: guix-git/doc/guix.texi:26819 +#: guix-git/doc/guix.texi:27156 msgid "The database engine to use." msgstr "Motor de base de datos usado." #. type: item -#: guix-git/doc/guix.texi:26820 +#: guix-git/doc/guix.texi:27157 #, no-wrap msgid "@code{name} (default: @code{\"patchwork\"})" msgstr "@code{name} (predeterminado: @code{\"patchwork\"})" #. type: table -#: guix-git/doc/guix.texi:26822 +#: guix-git/doc/guix.texi:27159 msgid "The name of the database to use." msgstr "Nombre de la base de datos usada." #. type: table -#: guix-git/doc/guix.texi:26825 +#: guix-git/doc/guix.texi:27162 msgid "The user to connect to the database as." msgstr "Usuaria usada para la conexión a la base de datos." #. type: item -#: guix-git/doc/guix.texi:26826 +#: guix-git/doc/guix.texi:27163 #, no-wrap msgid "@code{password} (default: @code{\"\"})" msgstr "@code{password} (predeterminada: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:26828 +#: guix-git/doc/guix.texi:27165 msgid "The password to use when connecting to the database." msgstr "Contraseña usada para la conexión a la base de datos." #. type: item -#: guix-git/doc/guix.texi:26829 +#: guix-git/doc/guix.texi:27166 #, no-wrap msgid "@code{host} (default: @code{\"\"})" msgstr "@code{host} (predeterminada: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:26831 +#: guix-git/doc/guix.texi:27168 msgid "The host to make the database connection to." msgstr "Máquina usada para la conexión a la base de datos." #. type: item -#: guix-git/doc/guix.texi:26832 +#: guix-git/doc/guix.texi:27169 #, no-wrap msgid "@code{port} (default: @code{\"\"})" msgstr "@code{port} (predeterminado: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:26834 +#: guix-git/doc/guix.texi:27171 msgid "The port on which to connect to the database." msgstr "Puerto en el que se conecta a la base de datos." #. type: subsubheading -#: guix-git/doc/guix.texi:26838 +#: guix-git/doc/guix.texi:27175 #, no-wrap msgid "Mumi" msgstr "Mumi" #. type: cindex -#: guix-git/doc/guix.texi:26840 +#: guix-git/doc/guix.texi:27177 #, no-wrap msgid "Mumi, Debbugs Web interface" msgstr "Mumi, interfaz web de Debbugs" #. type: cindex -#: guix-git/doc/guix.texi:26841 +#: guix-git/doc/guix.texi:27178 #, no-wrap msgid "Debbugs, Mumi Web interface" msgstr "Debbugs, interfaz web Mumi" #. type: Plain text -#: guix-git/doc/guix.texi:26846 +#: guix-git/doc/guix.texi:27183 msgid "@uref{https://git.elephly.net/gitweb.cgi?p=software/mumi.git, Mumi} is a Web interface to the Debbugs bug tracker, by default for @uref{https://bugs.gnu.org, the GNU instance}. Mumi is a Web server, but it also fetches and indexes mail retrieved from Debbugs." msgstr "@uref{https://git.elephly.net/gitweb.cgi?p=software/mumi.git, Mumi} es una interfaz web al gestor de incidencias Debbugs, de manera predeterminada apunta a @uref{https://bugs.gnu.org, la instancia de GNU}. Mumi es un servidor web, pero también obtiene e indexa los correos recibidos de Debbugs." #. type: defvr -#: guix-git/doc/guix.texi:26847 +#: guix-git/doc/guix.texi:27184 #, no-wrap msgid "{Scheme Variable} mumi-service-type" msgstr "{Variable Scheme} mumi-service-type" #. type: defvr -#: guix-git/doc/guix.texi:26849 +#: guix-git/doc/guix.texi:27186 msgid "This is the service type for Mumi." msgstr "El tipo de servicio para Mumi." #. type: deftp -#: guix-git/doc/guix.texi:26851 +#: guix-git/doc/guix.texi:27188 #, no-wrap msgid "{Data Type} mumi-configuration" msgstr "{Tipo de datos} mumi-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26854 +#: guix-git/doc/guix.texi:27191 msgid "Data type representing the Mumi service configuration. This type has the following fields:" msgstr "Tipo de datos que representa la configuración del servicio Mumi. Este tipo tiene los siguientes campos:" #. type: item -#: guix-git/doc/guix.texi:26856 +#: guix-git/doc/guix.texi:27193 #, no-wrap msgid "@code{mumi} (default: @code{mumi})" msgstr "@code{mumi} (predeterminado: @code{mumi})" #. type: table -#: guix-git/doc/guix.texi:26858 +#: guix-git/doc/guix.texi:27195 msgid "The Mumi package to use." msgstr "El paquete Mumi usado." #. type: item -#: guix-git/doc/guix.texi:26859 +#: guix-git/doc/guix.texi:27196 #, no-wrap msgid "@code{mailer?} (default: @code{#true})" msgstr "@code{mailer?} (predeterminado: @code{#true})" #. type: table -#: guix-git/doc/guix.texi:26861 +#: guix-git/doc/guix.texi:27198 msgid "Whether to enable or disable the mailer component." msgstr "Determina si se activa o desactiva el componente de correo @code{mailer}." #. type: code{#1} -#: guix-git/doc/guix.texi:26862 +#: guix-git/doc/guix.texi:27199 #, no-wrap msgid "mumi-configuration-sender" msgstr "mumi-configuration-sender" #. type: table -#: guix-git/doc/guix.texi:26864 +#: guix-git/doc/guix.texi:27201 msgid "The email address used as the sender for comments." msgstr "La dirección de correo usada como remitente para los comentarios." #. type: code{#1} -#: guix-git/doc/guix.texi:26865 +#: guix-git/doc/guix.texi:27202 #, no-wrap msgid "mumi-configuration-smtp" msgstr "mumi-configuration-smtp" #. type: table -#: guix-git/doc/guix.texi:26870 +#: guix-git/doc/guix.texi:27207 msgid "A URI to configure the SMTP settings for Mailutils. This could be something like @code{sendmail:///path/to/bin/msmtp} or any other URI supported by Mailutils. @xref{SMTP Mailboxes, SMTP Mailboxes,, mailutils, GNU@tie{}Mailutils}." msgstr "Una URI para las opciones de configuración de SMTP de Mailutils. Puede ser algo parecido a @code{sendmail:///ruta/de/bin/msmtp} o cualquier otra URI implementada por Mailutils. @xref{SMTP Mailboxes, SMTP Mailboxes,, mailutils, GNU@tie{}Mailutils}." #. type: subsubheading -#: guix-git/doc/guix.texi:26875 +#: guix-git/doc/guix.texi:27212 #, no-wrap msgid "FastCGI" msgstr "FastCGI" #. type: cindex -#: guix-git/doc/guix.texi:26876 +#: guix-git/doc/guix.texi:27213 #, no-wrap msgid "fastcgi" msgstr "fastcgi" #. type: cindex -#: guix-git/doc/guix.texi:26877 +#: guix-git/doc/guix.texi:27214 #, no-wrap msgid "fcgiwrap" msgstr "fcgiwrap" #. type: Plain text -#: guix-git/doc/guix.texi:26884 +#: guix-git/doc/guix.texi:27221 msgid "FastCGI is an interface between the front-end and the back-end of a web service. It is a somewhat legacy facility; new web services should generally just talk HTTP between the front-end and the back-end. However there are a number of back-end services such as PHP or the optimized HTTP Git repository access that use FastCGI, so we have support for it in Guix." msgstr "FastCGI es una interfaz entre la presentación (front-end) y el motor (back-end) de un servicio web. Es en cierto modo una característica antigua; los nuevos servicios web generalmente únicamente se comunican con HTTP entre ambas partes. No obstante, existe cierto número de servicios de motor como PHP o el acceso HTTP optimizado para repositorios Git que usan FastCGI, por lo que debemos incluirlo en Guix." #. type: Plain text -#: guix-git/doc/guix.texi:26891 +#: guix-git/doc/guix.texi:27228 msgid "To use FastCGI, you configure the front-end web server (e.g., nginx) to dispatch some subset of its requests to the fastcgi backend, which listens on a local TCP or UNIX socket. There is an intermediary @code{fcgiwrap} program that sits between the actual backend process and the web server. The front-end indicates which backend program to run, passing that information to the @code{fcgiwrap} process." msgstr "Para usar FastCGI debe configurar el servidor web de entrada@footnote{NdT: Front-end en inglés.} (por ejemplo, ngnix) para delegar un subconjunto de sus peticiones al motor fastcgi, que escucha en un puerto TCP local o en un socket de UNIX. Existe un programa de intermediación llamado @code{fcgiwrap} que se posiciona entre el proceso del motor y el servidor web. El servidor indica el programa del motor usado, proporcionando dicha información al proceso @code{fcgiwrap}." #. type: defvr -#: guix-git/doc/guix.texi:26892 +#: guix-git/doc/guix.texi:27229 #, no-wrap msgid "{Scheme Variable} fcgiwrap-service-type" msgstr "{Variable Scheme} fcgiwrap-service-type" #. type: defvr -#: guix-git/doc/guix.texi:26894 +#: guix-git/doc/guix.texi:27231 msgid "A service type for the @code{fcgiwrap} FastCGI proxy." msgstr "El tipo de servicio para la pasarela FastCGI @code{fcgiwrap}." #. type: deftp -#: guix-git/doc/guix.texi:26896 +#: guix-git/doc/guix.texi:27233 #, no-wrap msgid "{Data Type} fcgiwrap-configuration" msgstr "{Tipo de datos} fcgiwrap-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26899 +#: guix-git/doc/guix.texi:27236 msgid "Data type representing the configuration of the @code{fcgiwrap} service. This type has the following parameters:" msgstr "Tipo de datos que representa la configuración del servicio @code{fcgiwrap}. Este tipo tiene los siguientes parámetros:" #. type: item -#: guix-git/doc/guix.texi:26900 +#: guix-git/doc/guix.texi:27237 #, no-wrap msgid "@code{package} (default: @code{fcgiwrap})" msgstr "@code{package} (predeterminado: @code{fcgiwrap})" #. type: table -#: guix-git/doc/guix.texi:26902 +#: guix-git/doc/guix.texi:27239 msgid "The fcgiwrap package to use." msgstr "El paquete fcgiwrap usado." #. type: item -#: guix-git/doc/guix.texi:26903 +#: guix-git/doc/guix.texi:27240 #, no-wrap msgid "@code{socket} (default: @code{tcp:127.0.0.1:9000})" msgstr "@code{socket} (predeterminado: @code{tcp:127.0.0.1:9000})" #. type: table -#: guix-git/doc/guix.texi:26909 +#: guix-git/doc/guix.texi:27246 msgid "The socket on which the @code{fcgiwrap} process should listen, as a string. Valid @var{socket} values include @code{unix:@var{/path/to/unix/socket}}, @code{tcp:@var{dot.ted.qu.ad}:@var{port}} and @code{tcp6:[@var{ipv6_addr}]:port}." msgstr "El socket donde el proceso @code{fcgiwrap} deba escuchar, como una cadena. Los valores adecuados para @var{socket} socket incluyen @code{unix:@var{/ruta/al/socket/unix}}, @code{tcp:@var{dirección.ip.con.puntos}:@var{puerto}} and @code{tcp6:[@var{dirección_ipv6}]:puerto}." #. type: item -#: guix-git/doc/guix.texi:26910 +#: guix-git/doc/guix.texi:27247 #, no-wrap msgid "@code{user} (default: @code{fcgiwrap})" msgstr "@code{user} (predeterminado: @code{fcgiwrap})" #. type: itemx -#: guix-git/doc/guix.texi:26911 +#: guix-git/doc/guix.texi:27248 #, no-wrap msgid "@code{group} (default: @code{fcgiwrap})" msgstr "@code{group} (predeterminado: @code{fcgiwrap})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:26916 +#: guix-git/doc/guix.texi:27253 msgid "The user and group names, as strings, under which to run the @code{fcgiwrap} process. The @code{fastcgi} service will ensure that if the user asks for the specific user or group names @code{fcgiwrap} that the corresponding user and/or group is present on the system." msgstr "Los nombres de usuaria y grupo, como cadenas, con los que se ejecutará el proceso @code{fcgiwrap}. El servicio @code{fastcgi} se asegura, en caso de solicitar específicamente el uso de nombres de usuaria o grupo @code{fcgiwrap}, que la usuaria y/o grupo correspondientes se encuentren presentes en el sistema." # FUZZY FUZZY FUZZY # TODO (MAAV): Repensar #. type: table -#: guix-git/doc/guix.texi:26923 +#: guix-git/doc/guix.texi:27260 msgid "It is possible to configure a FastCGI-backed web service to pass HTTP authentication information from the front-end to the back-end, and to allow @code{fcgiwrap} to run the back-end process as a corresponding local user. To enable this capability on the back-end, run @code{fcgiwrap} as the @code{root} user and group. Note that this capability also has to be configured on the front-end as well." msgstr "Es posible configurar un servicio web proporcionado por FastCGI para que el servidor de fachada proporcione la información de identificación HTTP al motor, y para permitir que @code{fcgiwrap} se ejecute en el proceso del motor como la usuaria local correspondiente. Para activar esta funcionalidad en el motor, ejecute @code{fcgiwrap} mediante la usuaria y grupo @code{root}. Tenga en cuenta de que esta funcionalidad debe configurarse del mismo modo en el servidor de fachada." #. type: cindex -#: guix-git/doc/guix.texi:26926 +#: guix-git/doc/guix.texi:27263 #, no-wrap msgid "php-fpm" msgstr "php-fpm" @@ -52303,233 +53042,233 @@ msgstr "php-fpm" # FUZZY # TODO (MAAV): Site... Repensar. #. type: Plain text -#: guix-git/doc/guix.texi:26929 +#: guix-git/doc/guix.texi:27266 msgid "PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI implementation with some additional features useful for sites of any size." msgstr "PHP-FPM (FastCGI Process Manager) es una implementación alternativa de FastCGI en PHP con algunas características adicionales útiles para sitios de cualquier tamaño." #. type: Plain text -#: guix-git/doc/guix.texi:26931 +#: guix-git/doc/guix.texi:27268 msgid "These features include:" msgstr "Estas características incluyen:" #. type: item -#: guix-git/doc/guix.texi:26932 +#: guix-git/doc/guix.texi:27269 #, no-wrap msgid "Adaptive process spawning" msgstr "Lanzamiento adaptativo de procesos" #. type: item -#: guix-git/doc/guix.texi:26933 +#: guix-git/doc/guix.texi:27270 #, no-wrap msgid "Basic statistics (similar to Apache's mod_status)" msgstr "Estadísticas básicas (similares a mod_status de Apache)" # FUZZY #. type: item -#: guix-git/doc/guix.texi:26934 +#: guix-git/doc/guix.texi:27271 #, no-wrap msgid "Advanced process management with graceful stop/start" msgstr "Gestión avanzada de procesos con parada/arranque coordinados" #. type: item -#: guix-git/doc/guix.texi:26935 +#: guix-git/doc/guix.texi:27272 #, no-wrap msgid "Ability to start workers with different uid/gid/chroot/environment" msgstr "Capacidad de iniciar procesos de trbajo con diferentes uid/gid/chroor/entorno" #. type: itemize -#: guix-git/doc/guix.texi:26937 +#: guix-git/doc/guix.texi:27274 msgid "and different php.ini (replaces safe_mode)" msgstr "y diferentes php.ini (reemplaza a safe_mode)" #. type: item -#: guix-git/doc/guix.texi:26937 +#: guix-git/doc/guix.texi:27274 #, no-wrap msgid "Stdout & stderr logging" msgstr "Registro a través de la salida estándar y de error" #. type: item -#: guix-git/doc/guix.texi:26938 +#: guix-git/doc/guix.texi:27275 #, no-wrap msgid "Emergency restart in case of accidental opcode cache destruction" msgstr "Reinicio de emergencia en caso de destrucción accidental de la caché de opcode" #. type: item -#: guix-git/doc/guix.texi:26939 +#: guix-git/doc/guix.texi:27276 #, no-wrap msgid "Accelerated upload support" msgstr "Posibilidad de subida acelerada" #. type: item -#: guix-git/doc/guix.texi:26940 +#: guix-git/doc/guix.texi:27277 #, no-wrap msgid "Support for a \"slowlog\"" msgstr "Posibilidad de un \"slowlog\"" #. type: item -#: guix-git/doc/guix.texi:26941 +#: guix-git/doc/guix.texi:27278 #, no-wrap msgid "Enhancements to FastCGI, such as fastcgi_finish_request() -" msgstr "Mejoras a FastCGI, como fastcgi_finish_request() -" #. type: itemize -#: guix-git/doc/guix.texi:26944 +#: guix-git/doc/guix.texi:27281 msgid "a special function to finish request & flush all data while continuing to do something time-consuming (video converting, stats processing, etc.)" msgstr "una función especial para terminar una petición y enviar todos los datos mientras que se continua haciendo una tarea de alto consumo de tiempo (conversión de datos audiovisuales, procesamiento de estadísticas, etcétera)." #. type: Plain text -#: guix-git/doc/guix.texi:26946 +#: guix-git/doc/guix.texi:27283 msgid "...@: and much more." msgstr "...@: y muchas más." #. type: defvr -#: guix-git/doc/guix.texi:26947 +#: guix-git/doc/guix.texi:27284 #, no-wrap msgid "{Scheme Variable} php-fpm-service-type" msgstr "{Variable Scheme} php-fpm-service-type" #. type: defvr -#: guix-git/doc/guix.texi:26949 +#: guix-git/doc/guix.texi:27286 msgid "A Service type for @code{php-fpm}." msgstr "Un tipo de servicio para @code{php-fpm}." #. type: deftp -#: guix-git/doc/guix.texi:26951 +#: guix-git/doc/guix.texi:27288 #, no-wrap msgid "{Data Type} php-fpm-configuration" msgstr "{Tipo de datos} php-fpm-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26953 +#: guix-git/doc/guix.texi:27290 msgid "Data Type for php-fpm service configuration." msgstr "Tipo de datos para la configuración del servicio php-fpm." #. type: item -#: guix-git/doc/guix.texi:26954 +#: guix-git/doc/guix.texi:27291 #, no-wrap msgid "@code{php} (default: @code{php})" msgstr "@code{php} (predeterminado: @code{php})" #. type: table -#: guix-git/doc/guix.texi:26956 +#: guix-git/doc/guix.texi:27293 msgid "The php package to use." msgstr "El paquete php usado." #. type: item -#: guix-git/doc/guix.texi:26956 +#: guix-git/doc/guix.texi:27293 #, no-wrap msgid "@code{socket} (default: @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.sock\")})" msgstr "@code{socket} (predeterminado: @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.sock\")})" #. type: table -#: guix-git/doc/guix.texi:26958 +#: guix-git/doc/guix.texi:27295 msgid "The address on which to accept FastCGI requests. Valid syntaxes are:" msgstr "La dirección desde la que FastCGI acepta peticiones. Las sintaxis válidas son:" #. type: code{#1} -#: guix-git/doc/guix.texi:26959 +#: guix-git/doc/guix.texi:27296 #, no-wrap msgid "\"ip.add.re.ss:port\"" msgstr "\"dir.ecc.ión.ip:puerto\"" #. type: table -#: guix-git/doc/guix.texi:26961 +#: guix-git/doc/guix.texi:27298 msgid "Listen on a TCP socket to a specific address on a specific port." msgstr "Escucha con un socket TCP en la dirección especificada en un puerto específico." #. type: code{#1} -#: guix-git/doc/guix.texi:26961 +#: guix-git/doc/guix.texi:27298 #, no-wrap msgid "\"port\"" msgstr "\"puerto\"" #. type: table -#: guix-git/doc/guix.texi:26963 +#: guix-git/doc/guix.texi:27300 msgid "Listen on a TCP socket to all addresses on a specific port." msgstr "Escucha en un socket TCP en todas las direcciones sobre un puerto específico." #. type: code{#1} -#: guix-git/doc/guix.texi:26963 +#: guix-git/doc/guix.texi:27300 #, no-wrap msgid "\"/path/to/unix/socket\"" msgstr "\"/ruta/a/socket/unix\"" #. type: table -#: guix-git/doc/guix.texi:26965 +#: guix-git/doc/guix.texi:27302 msgid "Listen on a unix socket." msgstr "Escucha en un socket Unix." #. type: item -#: guix-git/doc/guix.texi:26967 +#: guix-git/doc/guix.texi:27304 #, no-wrap msgid "@code{user} (default: @code{php-fpm})" msgstr "@code{user} (predeterminada: @code{php-fpm})" #. type: table -#: guix-git/doc/guix.texi:26969 +#: guix-git/doc/guix.texi:27306 msgid "User who will own the php worker processes." msgstr "Usuaria que poseerá los procesos de trabajo de php." #. type: item -#: guix-git/doc/guix.texi:26969 +#: guix-git/doc/guix.texi:27306 #, no-wrap msgid "@code{group} (default: @code{php-fpm})" msgstr "@code{group} (predeterminado: @code{php-fpm})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:26971 +#: guix-git/doc/guix.texi:27308 msgid "Group of the worker processes." msgstr "Grupo de los procesos de trabajo." #. type: item -#: guix-git/doc/guix.texi:26971 +#: guix-git/doc/guix.texi:27308 #, no-wrap msgid "@code{socket-user} (default: @code{php-fpm})" msgstr "@code{socket-user} (predeterminado: @code{php-fpm})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:26973 +#: guix-git/doc/guix.texi:27310 msgid "User who can speak to the php-fpm socket." msgstr "Usuaria que puede comunicarse con el socket de php-fpm." #. type: item -#: guix-git/doc/guix.texi:26973 +#: guix-git/doc/guix.texi:27310 #, no-wrap msgid "@code{socket-group} (default: @code{nginx})" msgstr "@code{socket-group} (predeterminado: @code{nginx})" #. type: table -#: guix-git/doc/guix.texi:26975 +#: guix-git/doc/guix.texi:27312 msgid "Group that can speak to the php-fpm socket." msgstr "Grupo que puede comunicarse con el socket de php-fpm." #. type: item -#: guix-git/doc/guix.texi:26975 +#: guix-git/doc/guix.texi:27312 #, no-wrap msgid "@code{pid-file} (default: @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.pid\")})" msgstr "@code{pid-file} (predeterminado: @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.pid\")})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:26978 +#: guix-git/doc/guix.texi:27315 msgid "The process id of the php-fpm process is written to this file once the service has started." msgstr "El identificador de proceso del proceso de php-fpm se escribe en este archivo cuando se ha iniciado el servicio." #. type: item -#: guix-git/doc/guix.texi:26978 +#: guix-git/doc/guix.texi:27315 #, no-wrap msgid "@code{log-file} (default: @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.log\")})" msgstr "@code{log-file} (predeterminado: @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.log\")})" #. type: table -#: guix-git/doc/guix.texi:26980 +#: guix-git/doc/guix.texi:27317 msgid "Log for the php-fpm master process." msgstr "Registro del proceso maestro de php-fpm." #. type: item -#: guix-git/doc/guix.texi:26980 +#: guix-git/doc/guix.texi:27317 #, no-wrap msgid "@code{process-manager} (default: @code{(php-fpm-dynamic-process-manager-configuration)})" msgstr "@code{process-manager} (predeterminado: @code{(php-fpm-dynamic-process-manager-configuration)})" @@ -52538,91 +53277,91 @@ msgstr "@code{process-manager} (predeterminado: @code{(php-fpm-dynamic-process-m # tipos. Y no encuentro una forma de traducirlo de forma genérica y que # me suene bien... #. type: table -#: guix-git/doc/guix.texi:26983 +#: guix-git/doc/guix.texi:27320 msgid "Detailed settings for the php-fpm process manager. Must be one of:" msgstr "Configuración detallada para el gestor de procesos php-fpm. Debe ser uno de los siguientes tipos:" #. type: code{#1} -#: guix-git/doc/guix.texi:26984 +#: guix-git/doc/guix.texi:27321 #, no-wrap msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26985 +#: guix-git/doc/guix.texi:27322 #, no-wrap msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26986 +#: guix-git/doc/guix.texi:27323 #, no-wrap msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26988 +#: guix-git/doc/guix.texi:27325 #, no-wrap msgid "@code{display-errors} (default @code{#f})" msgstr "@code{display-errors} (predeterminado @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:26993 +#: guix-git/doc/guix.texi:27330 msgid "Determines whether php errors and warning should be sent to clients and displayed in their browsers. This is useful for local php development, but a security risk for public sites, as error messages can reveal passwords and personal data." msgstr "Determina si los errores y avisos de php deben enviarse a los clientes para que se muestren en sus navegadores. Esto es útil para la programación local con php, pero un riesgo para la seguridad de sitios públicos, ya que los mensajes de error pueden revelar contraseñas y datos personales." #. type: item -#: guix-git/doc/guix.texi:26993 +#: guix-git/doc/guix.texi:27330 #, no-wrap msgid "@code{timezone} (default @code{#f})" msgstr "@code{timezone} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:26995 +#: guix-git/doc/guix.texi:27332 msgid "Specifies @code{php_admin_value[date.timezone]} parameter." msgstr "Especifica el parámetro @code{php_admin_value[date.timezone]}." #. type: item -#: guix-git/doc/guix.texi:26995 +#: guix-git/doc/guix.texi:27332 #, no-wrap msgid "@code{workers-logfile} (default @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.www.log\")})" msgstr "@code{workers-logfile} (predeterminado @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.www.log\")})" #. type: table -#: guix-git/doc/guix.texi:26998 +#: guix-git/doc/guix.texi:27335 msgid "This file will log the @code{stderr} outputs of php worker processes. Can be set to @code{#f} to disable logging." msgstr "Este archivo registrará las salidas por @code{stderr} de los procesos de trabajo de php. Puede proporcionarse @code{#f} para desactivar el registro." #. type: item -#: guix-git/doc/guix.texi:26998 +#: guix-git/doc/guix.texi:27335 #, no-wrap msgid "@code{file} (default @code{#f})" msgstr "@code{file} (predeterminado @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27001 +#: guix-git/doc/guix.texi:27338 msgid "An optional override of the whole configuration. You can use the @code{mixed-text-file} function or an absolute filepath for it." msgstr "Sustituye opcionalmente la configuración al completo. Puede usar la función @code{mixed-text-file} o una ruta absoluta de un archivo para hacerlo." #. type: item -#: guix-git/doc/guix.texi:27001 +#: guix-git/doc/guix.texi:27338 #, no-wrap msgid "@code{php-ini-file} (default @code{#f})" msgstr "@code{php-ini-file} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27005 +#: guix-git/doc/guix.texi:27342 msgid "An optional override of the default php settings. It may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). You can use the @code{mixed-text-file} function or an absolute filepath for it." msgstr "Sustituye opcionalmente la configuración predeterminada de php. Puede ser cualquier objeto ``tipo-archivo'' (@pxref{G-Expressions, file-like objects}). Puede usar la función @code{mixed-text-file} o una ruta absoluta de un archivo para hacerlo." #. type: table -#: guix-git/doc/guix.texi:27009 +#: guix-git/doc/guix.texi:27346 msgid "For local development it is useful to set a higher timeout and memory limit for spawned php processes. This be accomplished with the following operating system configuration snippet:" msgstr "Para el desarrollo local es útil proporcionar valores mayores para los plazos y límites de memoria de los procesos php lanzados. Esto puede obtenerse con el siguiente fragmento de la configuración de sistema operativo:" #. type: lisp -#: guix-git/doc/guix.texi:27014 +#: guix-git/doc/guix.texi:27351 #, no-wrap msgid "" "(define %local-php-ini\n" @@ -52638,7 +53377,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:27021 +#: guix-git/doc/guix.texi:27358 #, no-wrap msgid "" "(operating-system\n" @@ -52656,124 +53395,124 @@ msgstr "" " %base-services)))\n" #. type: table -#: guix-git/doc/guix.texi:27026 +#: guix-git/doc/guix.texi:27363 msgid "Consult the @url{https://www.php.net/manual/en/ini.core.php,core php.ini directives} for comprehensive documentation on the acceptable @file{php.ini} directives." msgstr "Consulte las @url{https://www.php.net/manual/en/ini.core.php,directivas principales de php.ini} para obtener una documentación extensa de las directivas aceptables en el archivo @file{php.ini}." #. type: deftp -#: guix-git/doc/guix.texi:27029 +#: guix-git/doc/guix.texi:27366 #, no-wrap msgid "{Data type} php-fpm-dynamic-process-manager-configuration" msgstr "{Tipo de datos} php-fpm-dynamic-process-manager-configuration" # FUZZY #. type: deftp -#: guix-git/doc/guix.texi:27033 +#: guix-git/doc/guix.texi:27370 #, fuzzy #| msgid "Data Type for the @code{dynamic} php-fpm process manager. With the @code{dynamic} process manager, spare worker processes are kept around based on it's configured limits." msgid "Data Type for the @code{dynamic} php-fpm process manager. With the @code{dynamic} process manager, spare worker processes are kept around based on its configured limits." msgstr "Tipo de datos para el gestor de procesos @code{dynamic} de php-fpm. Con el gestor de procesos @code{dynamic}, se mantienen procesos de trabajo disponibles en base a los límites configurados." #. type: item -#: guix-git/doc/guix.texi:27034 guix-git/doc/guix.texi:27050 -#: guix-git/doc/guix.texi:27060 +#: guix-git/doc/guix.texi:27371 guix-git/doc/guix.texi:27387 +#: guix-git/doc/guix.texi:27397 #, no-wrap msgid "@code{max-children} (default: @code{5})" msgstr "@code{max-children} (predeterminados: @code{5})" #. type: table -#: guix-git/doc/guix.texi:27036 guix-git/doc/guix.texi:27052 -#: guix-git/doc/guix.texi:27062 +#: guix-git/doc/guix.texi:27373 guix-git/doc/guix.texi:27389 +#: guix-git/doc/guix.texi:27399 msgid "Maximum of worker processes." msgstr "Número máximo de procesos de trabajo." #. type: item -#: guix-git/doc/guix.texi:27036 +#: guix-git/doc/guix.texi:27373 #, no-wrap msgid "@code{start-servers} (default: @code{2})" msgstr "@code{start-servers} (predeterminados: @code{2})" #. type: table -#: guix-git/doc/guix.texi:27038 +#: guix-git/doc/guix.texi:27375 msgid "How many worker processes should be started on start-up." msgstr "Cuantos procesos de trabajo deben ejecutarse al inicio." #. type: item -#: guix-git/doc/guix.texi:27038 +#: guix-git/doc/guix.texi:27375 #, no-wrap msgid "@code{min-spare-servers} (default: @code{1})" msgstr "@code{min-spare-servers} (predeterminado: @code{1})" #. type: table -#: guix-git/doc/guix.texi:27040 +#: guix-git/doc/guix.texi:27377 msgid "How many spare worker processes should be kept around at minimum." msgstr "Cuantos procesos de trabajo deben mantenerse disponibles como mínimo." #. type: item -#: guix-git/doc/guix.texi:27040 +#: guix-git/doc/guix.texi:27377 #, no-wrap msgid "@code{max-spare-servers} (default: @code{3})" msgstr "@code{max-spare-servers} (predeterminados: @code{3})" #. type: table -#: guix-git/doc/guix.texi:27042 +#: guix-git/doc/guix.texi:27379 msgid "How many spare worker processes should be kept around at maximum." msgstr "Cuantos procesos de trabajo deben mantenerse disponibles como máximo." #. type: deftp -#: guix-git/doc/guix.texi:27045 +#: guix-git/doc/guix.texi:27382 #, no-wrap msgid "{Data type} php-fpm-static-process-manager-configuration" msgstr "{Tipo de datos} php-fpm-static-process-manager-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27049 +#: guix-git/doc/guix.texi:27386 msgid "Data Type for the @code{static} php-fpm process manager. With the @code{static} process manager, an unchanging number of worker processes are created." msgstr "Tipo de datos para el gestor de procesos @code{static} de php-fpm. Con el gestor de procesos @code{static}, se crea un número fijo de procesos de trabajo." #. type: deftp -#: guix-git/doc/guix.texi:27055 +#: guix-git/doc/guix.texi:27392 #, no-wrap msgid "{Data type} php-fpm-on-demand-process-manager-configuration" msgstr "{Tipo de datos} php-fpm-on-demand-process-manager-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27059 +#: guix-git/doc/guix.texi:27396 msgid "Data Type for the @code{on-demand} php-fpm process manager. With the @code{on-demand} process manager, worker processes are only created as requests arrive." msgstr "Tipo de datos para el gestor de procesos @code{on-demand} de php-fpm. Con el gestor de procesos @code{on-demand}, se crean procesos de trabajo únicamente cuando se reciben peticiones." #. type: item -#: guix-git/doc/guix.texi:27062 +#: guix-git/doc/guix.texi:27399 #, no-wrap msgid "@code{process-idle-timeout} (default: @code{10})" msgstr "@code{process-idle-timeout} (predeterminado: @code{10})" # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:27064 +#: guix-git/doc/guix.texi:27401 msgid "The time in seconds after which a process with no requests is killed." msgstr "El tiempo en segundos tras el cual un proceso sin peticiones será eliminado." #. type: deffn -#: guix-git/doc/guix.texi:27068 +#: guix-git/doc/guix.texi:27405 #, no-wrap msgid "{Scheme Procedure} nginx-php-location @" msgstr "{Procedimiento Scheme} nginx-php-location @" #. type: deffn -#: guix-git/doc/guix.texi:27074 +#: guix-git/doc/guix.texi:27411 msgid "[#:nginx-package nginx] @ [socket (string-append \"/var/run/php\" @ (version-major (package-version php)) @ \"-fpm.sock\")] A helper function to quickly add php to an @code{nginx-server-configuration}." msgstr "" "[#:nginx-package nginx] @ [socket (string-append \"/var/run/php\" @ (version-major (package-version php)) @ \"-fpm.sock\")]\n" "Función auxiliar para añadir php a una configuración @code{nginx-server-configuration} rápidamente." #. type: Plain text -#: guix-git/doc/guix.texi:27077 +#: guix-git/doc/guix.texi:27414 msgid "A simple services setup for nginx with php can look like this:" msgstr "Una configuración simple de servicios para nginx con php puede ser más o menos así:" #. type: lisp -#: guix-git/doc/guix.texi:27090 +#: guix-git/doc/guix.texi:27427 #, no-wrap msgid "" "(services (cons* (service dhcp-client-service-type)\n" @@ -52803,37 +53542,37 @@ msgstr "" " %base-services))\n" #. type: cindex -#: guix-git/doc/guix.texi:27092 +#: guix-git/doc/guix.texi:27429 #, no-wrap msgid "cat-avatar-generator" msgstr "cat-avatar-generator" #. type: Plain text -#: guix-git/doc/guix.texi:27096 +#: guix-git/doc/guix.texi:27433 msgid "The cat avatar generator is a simple service to demonstrate the use of php-fpm in @code{Nginx}. It is used to generate cat avatar from a seed, for instance the hash of a user's email address." msgstr "El generadores de avatares de gato es un servicio simple para demostrar el uso de php-fpm en @code{Nginx}. Se usa para generar un avatar de gato desde una semilla, por ejemplo el hash de la dirección de correo de la usuaria." #. type: deffn -#: guix-git/doc/guix.texi:27097 +#: guix-git/doc/guix.texi:27434 #, no-wrap msgid "{Scheme Procedure} cat-avatar-generator-service @" msgstr "{Procedimiento Scheme} cat-avatar-generator-service @" # FUZZY #. type: deffn -#: guix-git/doc/guix.texi:27105 +#: guix-git/doc/guix.texi:27442 msgid "[#:cache-dir \"/var/cache/cat-avatar-generator\"] @ [#:package cat-avatar-generator] @ [#:configuration (nginx-server-configuration)] Returns an nginx-server-configuration that inherits @code{configuration}. It extends the nginx configuration to add a server block that serves @code{package}, a version of cat-avatar-generator. During execution, cat-avatar-generator will be able to use @code{cache-dir} as its cache directory." msgstr "" "[#:cache-dir \"/var/cache/cat-avatar-generator\"] @ [#:package cat-avatar-generator] @ [#:configuration (nginx-server-configuration)]\n" "Devuelve una configuración de nginx-server-configuration que hereda de @code{configuration}. Extiende la configuración de nginx para añadir un bloque de servidor que proporciona @code{package}, una versión de cat-avatar-generator. Durante su ejecución, cat-avatar-generator podrá usar @code{cache-dir} como su directorio de caché." #. type: Plain text -#: guix-git/doc/guix.texi:27108 +#: guix-git/doc/guix.texi:27445 msgid "A simple setup for cat-avatar-generator can look like this:" msgstr "Una configuración simple para cat-avatar-generator puede ser más o menos así:" #. type: lisp -#: guix-git/doc/guix.texi:27115 +#: guix-git/doc/guix.texi:27452 #, no-wrap msgid "" "(services (cons* (cat-avatar-generator-service\n" @@ -52851,172 +53590,172 @@ msgstr "" " %base-services))\n" #. type: subsubheading -#: guix-git/doc/guix.texi:27117 +#: guix-git/doc/guix.texi:27454 #, no-wrap msgid "Hpcguix-web" msgstr "Hpcguix-web" #. type: cindex -#: guix-git/doc/guix.texi:27119 +#: guix-git/doc/guix.texi:27456 #, no-wrap msgid "hpcguix-web" msgstr "hpcguix-web" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:27124 +#: guix-git/doc/guix.texi:27461 msgid "The @uref{https://github.com/UMCUGenetics/hpcguix-web/, hpcguix-web} program is a customizable web interface to browse Guix packages, initially designed for users of high-performance computing (HPC) clusters." msgstr "El programa @uref{https://github.com/UMCUGenetics/hpcguix-web/, hpcguix-web} es una interfaz web personalizable para buscar paquetes de Guix, diseñado inicialmente para usuarias de clusters de computación de alto rendimiento (HPC)." #. type: defvr -#: guix-git/doc/guix.texi:27125 +#: guix-git/doc/guix.texi:27462 #, no-wrap msgid "{Scheme Variable} hpcguix-web-service-type" msgstr "{Variable Scheme} hpcguix-web-service-type" #. type: defvr -#: guix-git/doc/guix.texi:27127 +#: guix-git/doc/guix.texi:27464 msgid "The service type for @code{hpcguix-web}." msgstr "El tipo de servicio para @code{hpcguix-web}." #. type: deftp -#: guix-git/doc/guix.texi:27129 +#: guix-git/doc/guix.texi:27466 #, no-wrap msgid "{Data Type} hpcguix-web-configuration" msgstr "{Tipo de datos} hpcguix-web-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27131 +#: guix-git/doc/guix.texi:27468 msgid "Data type for the hpcguix-web service configuration." msgstr "El tipo de datos para la configuración del servicio hpcguix-web." #. type: code{#1} -#: guix-git/doc/guix.texi:27133 +#: guix-git/doc/guix.texi:27470 #, no-wrap msgid "specs" msgstr "specs" #. type: table -#: guix-git/doc/guix.texi:27136 +#: guix-git/doc/guix.texi:27473 msgid "A gexp (@pxref{G-Expressions}) specifying the hpcguix-web service configuration. The main items available in this spec are:" msgstr "Una expresión-G (@pxref{G-Expressions}) que especifica la configuración del servicio hpcguix-web. Los elementos principales en esta especificación son:" #. type: item -#: guix-git/doc/guix.texi:27138 +#: guix-git/doc/guix.texi:27475 #, no-wrap msgid "@code{title-prefix} (default: @code{\"hpcguix | \"})" msgstr "@code{title-prefix} (predeterminado: @code{\"hpcguix | \"})" #. type: table -#: guix-git/doc/guix.texi:27140 +#: guix-git/doc/guix.texi:27477 msgid "The page title prefix." msgstr "El prefijo del título de la página." #. type: item -#: guix-git/doc/guix.texi:27141 +#: guix-git/doc/guix.texi:27478 #, no-wrap msgid "@code{guix-command} (default: @code{\"guix\"})" msgstr "@code{guix-command} (predeterminada: @code{\"guix\"})" #. type: table -#: guix-git/doc/guix.texi:27143 +#: guix-git/doc/guix.texi:27480 msgid "The @command{guix} command." msgstr "La orden @command{guix}." #. type: item -#: guix-git/doc/guix.texi:27144 +#: guix-git/doc/guix.texi:27481 #, no-wrap msgid "@code{package-filter-proc} (default: @code{(const #t)})" msgstr "@code{package-filter-proc} (predeterminado: @code{(const #t)})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:27146 +#: guix-git/doc/guix.texi:27483 msgid "A procedure specifying how to filter packages that are displayed." msgstr "Un procedimiento que especifica cómo filtrar los paquetes mostrados." #. type: item -#: guix-git/doc/guix.texi:27147 +#: guix-git/doc/guix.texi:27484 #, no-wrap msgid "@code{package-page-extension-proc} (default: @code{(const '())})" msgstr "@code{package-page-extension-proc} (predeterminado: @code{(const '())})" #. type: table -#: guix-git/doc/guix.texi:27149 +#: guix-git/doc/guix.texi:27486 msgid "Extension package for @code{hpcguix-web}." msgstr "Paquete de extensión para @code{hpcguix-web}." #. type: item -#: guix-git/doc/guix.texi:27150 +#: guix-git/doc/guix.texi:27487 #, no-wrap msgid "@code{menu} (default: @code{'()})" msgstr "@code{menu} (predeterminadas: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27152 +#: guix-git/doc/guix.texi:27489 msgid "Additional entry in page @code{menu}." msgstr "Entradas adicionales en el menú de la página." #. type: item -#: guix-git/doc/guix.texi:27153 +#: guix-git/doc/guix.texi:27490 #, no-wrap msgid "@code{channels} (default: @code{%default-channels})" msgstr "@code{channels} (predeterminados: @code{%default-channels})" #. type: table -#: guix-git/doc/guix.texi:27155 +#: guix-git/doc/guix.texi:27492 msgid "List of channels from which the package list is built (@pxref{Channels})." msgstr "Lista de canales desde los que se construye la lista de paquetes (@pxref{Channels})." #. type: item -#: guix-git/doc/guix.texi:27156 +#: guix-git/doc/guix.texi:27493 #, no-wrap msgid "@code{package-list-expiration} (default: @code{(* 12 3600)})" msgstr "@code{package-list-expiration} (predeterminado: @code{(* 12 3600)})" #. type: table -#: guix-git/doc/guix.texi:27159 +#: guix-git/doc/guix.texi:27496 msgid "The expiration time, in seconds, after which the package list is rebuilt from the latest instances of the given channels." msgstr "El tiempo de expiración, en segundos, tras el cual la lista de paquetes se reconstruye desde las últimas instancias de los canales proporcionados." #. type: table -#: guix-git/doc/guix.texi:27164 +#: guix-git/doc/guix.texi:27501 msgid "See the hpcguix-web repository for a @uref{https://github.com/UMCUGenetics/hpcguix-web/blob/master/hpcweb-configuration.scm, complete example}." msgstr "Véase el repositorio de hpcguix-web para un @uref{https://github.com/UMCUGenetics/hpcguix-web/blob/master/hpcweb-configuration.scm, ejemplo completo}." #. type: item -#: guix-git/doc/guix.texi:27165 +#: guix-git/doc/guix.texi:27502 #, no-wrap msgid "@code{package} (default: @code{hpcguix-web})" msgstr "@code{package} (predeterminado: @code{hpcguix-web})" #. type: table -#: guix-git/doc/guix.texi:27167 +#: guix-git/doc/guix.texi:27504 msgid "The hpcguix-web package to use." msgstr "El paquete hpcguix-web usado." #. type: item -#: guix-git/doc/guix.texi:27168 +#: guix-git/doc/guix.texi:27505 #, fuzzy, no-wrap #| msgid "@code{bind-address} (default: @code{\"127.0.0.1\"})" msgid "@code{address} (default: @code{\"127.0.0.1\"})" msgstr "@code{bind-address} (predeterminada: @code{\"127.0.0.1\"})" #. type: table -#: guix-git/doc/guix.texi:27170 +#: guix-git/doc/guix.texi:27507 #, fuzzy msgid "The IP address to listen to." msgstr "Lista de direcciones en las que Varnish escucha." #. type: item -#: guix-git/doc/guix.texi:27171 +#: guix-git/doc/guix.texi:27508 #, fuzzy, no-wrap #| msgid "@code{port} (default: @code{15000})" msgid "@code{port} (default: @code{5000})" msgstr "@code{port} (predeterminado: @code{15000})" #. type: table -#: guix-git/doc/guix.texi:27173 +#: guix-git/doc/guix.texi:27510 #, fuzzy #| msgid "The port on which to listen." msgid "The port number to listen to." @@ -53024,12 +53763,12 @@ msgstr "El puerto en el que esperarán conexiones." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:27177 +#: guix-git/doc/guix.texi:27514 msgid "A typical hpcguix-web service declaration looks like this:" msgstr "Una declaración típica del servicio hpcguix-web es más o menos así:" #. type: lisp -#: guix-git/doc/guix.texi:27186 +#: guix-git/doc/guix.texi:27523 #, no-wrap msgid "" "(service hpcguix-web-service-type\n" @@ -53050,39 +53789,39 @@ msgstr "" # FUZZY #. type: quotation -#: guix-git/doc/guix.texi:27193 +#: guix-git/doc/guix.texi:27530 msgid "The hpcguix-web service periodically updates the package list it publishes by pulling channels from Git. To that end, it needs to access X.509 certificates so that it can authenticate Git servers when communicating over HTTPS, and it assumes that @file{/etc/ssl/certs} contains those certificates." msgstr "El servicio hpcguix-web actualiza periódicamente la lista de paquetes que publica obteniendo canales con Git. Para ello, necesita acceder a certificados X.509 de manera que pueda validar los servidores Git durante la comunicación con HTTPS, y asume que @file{/etc/ssl/certs} contiene dichos certificados." #. type: quotation -#: guix-git/doc/guix.texi:27197 +#: guix-git/doc/guix.texi:27534 msgid "Thus, make sure to add @code{nss-certs} or another certificate package to the @code{packages} field of your configuration. @ref{X.509 Certificates}, for more information on X.509 certificates." msgstr "Por lo tanto, asegúrese de añadir @code{nss-certs} u otro paquete de certificados al campo @code{packages} de su configuración. @ref{X.509 Certificates}, para más información sobre certificados X.509." #. type: cindex -#: guix-git/doc/guix.texi:27199 guix-git/doc/guix.texi:27201 +#: guix-git/doc/guix.texi:27536 guix-git/doc/guix.texi:27538 #, no-wrap msgid "gmnisrv" msgstr "gmnisrv" #. type: Plain text -#: guix-git/doc/guix.texi:27204 +#: guix-git/doc/guix.texi:27541 msgid "The @uref{https://git.sr.ht/~sircmpwn/gmnisrv, gmnisrv} program is a simple @uref{https://gemini.circumlunar.space/, Gemini} protocol server." msgstr "El programa @uref{https://git.sr.ht/~sircmpwn/gmnisrv, gmnisrv} es un servidor simple del protocolo @uref{https://gemini.circumlunar.space/, Gemini}." #. type: deffn -#: guix-git/doc/guix.texi:27205 +#: guix-git/doc/guix.texi:27542 #, no-wrap msgid "{Scheme Variable} gmnisrv-service-type" msgstr "{Variable Scheme} gmnisrv-service-type" #. type: deffn -#: guix-git/doc/guix.texi:27208 +#: guix-git/doc/guix.texi:27545 msgid "This is the type of the gmnisrv service, whose value should be a @code{gmnisrv-configuration} object, as in this example:" msgstr "Es el tipo del servicio gmnisrv, cuyo valor debe ser un objeto @code{gmniserv-configuration} como en este ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:27213 +#: guix-git/doc/guix.texi:27550 #, no-wrap msgid "" "(service gmnisrv-service-type\n" @@ -53094,70 +53833,70 @@ msgstr "" " (config-file (local-file \"./mi-gmnisrv.ini\"))))\n" #. type: deftp -#: guix-git/doc/guix.texi:27216 +#: guix-git/doc/guix.texi:27553 #, no-wrap msgid "{Data Type} gmnisrv-configuration" msgstr "{Tipo de datos} gmnisrv-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27218 +#: guix-git/doc/guix.texi:27555 msgid "Data type representing the configuration of gmnisrv." msgstr "Tipo de datos que representa la configuración de gmnisrv." #. type: item -#: guix-git/doc/guix.texi:27220 +#: guix-git/doc/guix.texi:27557 #, no-wrap msgid "@code{package} (default: @var{gmnisrv})" msgstr "@code{package} (predeterminado: @var{gmnisrv})" #. type: table -#: guix-git/doc/guix.texi:27222 +#: guix-git/doc/guix.texi:27559 msgid "Package object of the gmnisrv server." msgstr "El objeto paquete del servidor gmnisrv." #. type: item -#: guix-git/doc/guix.texi:27223 +#: guix-git/doc/guix.texi:27560 #, no-wrap msgid "@code{config-file} (default: @code{%default-gmnisrv-config-file})" msgstr "@code{config-file} (predeterminado: @code{%default-gmnisrv-config-file})" #. type: table -#: guix-git/doc/guix.texi:27229 +#: guix-git/doc/guix.texi:27566 msgid "File-like object of the gmnisrv configuration file to use. The default configuration listens on port 1965 and serves files from @file{/srv/gemini}. Certificates are stored in @file{/var/lib/gemini/certs}. For more information, run @command{man gmnisrv} and @command{man gmnisrv.ini}." msgstr "Objeto tipo-archivo del archivo de configuración de gmnisrv usado. La configuración predeterminada escucha en el puerto 1965 y proporciona archivos desde @file{/srv/gemini}. Los certificados se almacenan en @file{/var/lib/gemini/certs}. Puede ejecutar las ordenes @command{man gmnisrv} y @command{man gmnisrv.ini} para obtener más información." #. type: subsubheading -#: guix-git/doc/guix.texi:27233 +#: guix-git/doc/guix.texi:27570 #, no-wrap msgid "Agate" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27235 +#: guix-git/doc/guix.texi:27572 #, no-wrap msgid "agate" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27240 +#: guix-git/doc/guix.texi:27577 #, fuzzy msgid "The @uref{gemini://qwertqwefsday.eu/agate.gmi, Agate} (@uref{https://github.com/mbrubeck/agate, GitHub page over HTTPS}) program is a simple @uref{https://gemini.circumlunar.space/, Gemini} protocol server written in Rust." msgstr "El programa @uref{https://git.sr.ht/~sircmpwn/gmnisrv, gmnisrv} es un servidor simple del protocolo @uref{https://gemini.circumlunar.space/, Gemini}." #. type: deffn -#: guix-git/doc/guix.texi:27241 +#: guix-git/doc/guix.texi:27578 #, fuzzy, no-wrap msgid "{Scheme Variable} agate-service-type" msgstr "{Variable Scheme} pagekite-service-type" #. type: deffn -#: guix-git/doc/guix.texi:27244 +#: guix-git/doc/guix.texi:27581 #, fuzzy msgid "This is the type of the agate service, whose value should be an @code{agate-service-type} object, as in this example:" msgstr "Es el tipo del servicio gmnisrv, cuyo valor debe ser un objeto @code{gmniserv-configuration} como en este ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:27251 +#: guix-git/doc/guix.texi:27588 #, no-wrap msgid "" "(service agate-service-type\n" @@ -53168,17 +53907,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27256 +#: guix-git/doc/guix.texi:27593 msgid "The example above represents the minimal tweaking necessary to get Agate up and running. Specifying the path to the certificate and key is always necessary, as the Gemini protocol requires TLS by default." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27259 +#: guix-git/doc/guix.texi:27596 msgid "To obtain a certificate and a key, you could, for example, use OpenSSL, running a command similar to the following example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:27263 +#: guix-git/doc/guix.texi:27600 #, no-wrap msgid "" "openssl req -x509 -newkey rsa:4096 -keyout key.rsa -out cert.pem \\\n" @@ -53186,187 +53925,187 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27268 +#: guix-git/doc/guix.texi:27605 msgid "Of course, you'll have to replace @i{example.com} with your own domain name, and then point the Agate configuration towards the path of the generated key and certificate." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27271 +#: guix-git/doc/guix.texi:27608 #, fuzzy, no-wrap msgid "{Data Type} agate-configuration" msgstr "{Tipo de datos} pagekite-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27273 +#: guix-git/doc/guix.texi:27610 #, fuzzy msgid "Data type representing the configuration of Agate." msgstr "Tipo de datos que representa la configuración de PageKite." #. type: item -#: guix-git/doc/guix.texi:27275 +#: guix-git/doc/guix.texi:27612 #, fuzzy, no-wrap msgid "@code{package} (default: @code{agate})" msgstr "@code{package} (predeterminado: @code{git})" #. type: table -#: guix-git/doc/guix.texi:27277 +#: guix-git/doc/guix.texi:27614 #, fuzzy msgid "The package object of the Agate server." msgstr "El objeto paquete del servidor Exim." #. type: item -#: guix-git/doc/guix.texi:27278 +#: guix-git/doc/guix.texi:27615 #, fuzzy, no-wrap msgid "@code{content} (default: @file{\"/srv/gemini\"})" msgstr "@code{git-root} (predeterminada: @file{/srv/git})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:27280 +#: guix-git/doc/guix.texi:27617 #, fuzzy msgid "The directory from which Agate will serve files." msgstr "Directorio en el que NGinx escribirá los archivos de registro." #. type: item -#: guix-git/doc/guix.texi:27281 +#: guix-git/doc/guix.texi:27618 #, fuzzy, no-wrap msgid "@code{cert} (default: @code{#f})" msgstr "@code{ssl-cert} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27284 +#: guix-git/doc/guix.texi:27621 msgid "The path to the TLS certificate PEM file to be used for encrypted connections. Must be filled in with a value from the user." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27285 guix-git/doc/guix.texi:27721 +#: guix-git/doc/guix.texi:27622 guix-git/doc/guix.texi:28058 #, no-wrap msgid "@code{key} (default: @code{#f})" msgstr "@code{key} (predeterminada: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27288 +#: guix-git/doc/guix.texi:27625 #, fuzzy msgid "The path to the PKCS8 private key file to be used for encrypted connections. Must be filled in with a value from the user." msgstr "Ruta de archivo de la clave privada de ssl usada para las conexiones cifradas." #. type: item -#: guix-git/doc/guix.texi:27289 +#: guix-git/doc/guix.texi:27626 #, fuzzy, no-wrap msgid "@code{addr} (default: @code{'(\"0.0.0.0:1965\" \"[::]:1965\")})" msgstr "@code{address} (predeterminado: @code{\"0.0.0.0\"})" #. type: table -#: guix-git/doc/guix.texi:27291 +#: guix-git/doc/guix.texi:27628 #, fuzzy msgid "A list of the addresses to listen on." msgstr "Lista de direcciones en las que Varnish escucha." #. type: table -#: guix-git/doc/guix.texi:27294 +#: guix-git/doc/guix.texi:27631 msgid "The domain name of this Gemini server. Optional." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27295 +#: guix-git/doc/guix.texi:27632 #, fuzzy, no-wrap msgid "@code{lang} (default: @code{#f})" msgstr "@code{hangup?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27297 +#: guix-git/doc/guix.texi:27634 msgid "RFC 4646 language code(s) for text/gemini documents. Optional." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27298 +#: guix-git/doc/guix.texi:27635 #, fuzzy, no-wrap msgid "@code{silent?} (default: @code{#f})" msgstr "@code{file} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27300 +#: guix-git/doc/guix.texi:27637 #, fuzzy msgid "Set to @code{#t} to disable logging output." msgstr "Determina si se envía la salida a syslog." #. type: item -#: guix-git/doc/guix.texi:27301 +#: guix-git/doc/guix.texi:27638 #, fuzzy, no-wrap msgid "@code{serve-secret?} (default: @code{#f})" msgstr "@code{server} (predeterminada: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27304 +#: guix-git/doc/guix.texi:27641 msgid "Set to @code{#t} to serve secret files (files/directories starting with a dot)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27305 +#: guix-git/doc/guix.texi:27642 #, fuzzy, no-wrap msgid "@code{log-ip?} (default: @code{#t})" msgstr "@code{ipv4?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:27307 +#: guix-git/doc/guix.texi:27644 msgid "Whether or not to output IP addresses when logging." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27308 +#: guix-git/doc/guix.texi:27645 #, fuzzy, no-wrap msgid "@code{user} (default: @code{\"agate\"})" msgstr "@code{user} (predeterminada: @code{\"root\"})" #. type: table -#: guix-git/doc/guix.texi:27310 +#: guix-git/doc/guix.texi:27647 #, fuzzy msgid "Owner of the @code{agate} process." msgstr "Propietaria del proceso @code{cuirass}." #. type: item -#: guix-git/doc/guix.texi:27311 +#: guix-git/doc/guix.texi:27648 #, fuzzy, no-wrap msgid "@code{group} (default: @code{\"agate\"})" msgstr "@code{group} (predeterminado: @code{\"httpd\"})" #. type: table -#: guix-git/doc/guix.texi:27313 +#: guix-git/doc/guix.texi:27650 #, fuzzy msgid "Owner's group of the @code{agate} process." msgstr "Grupo propietario del proceso @code{cuirass}." #. type: item -#: guix-git/doc/guix.texi:27314 +#: guix-git/doc/guix.texi:27651 #, fuzzy, no-wrap msgid "@code{log-file} (default: @file{\"/var/log/agate.log\"})" msgstr "@code{log-file} (predeterminado: @file{\"/var/log/webssh.log\"})" #. type: table -#: guix-git/doc/guix.texi:27316 +#: guix-git/doc/guix.texi:27653 msgid "The file which should store the logging output of Agate." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27323 +#: guix-git/doc/guix.texi:27660 #, no-wrap msgid "Web" msgstr "Web" #. type: cindex -#: guix-git/doc/guix.texi:27324 +#: guix-git/doc/guix.texi:27661 #, no-wrap msgid "HTTP, HTTPS" msgstr "HTTP, HTTPS" #. type: cindex -#: guix-git/doc/guix.texi:27325 +#: guix-git/doc/guix.texi:27662 #, no-wrap msgid "Let's Encrypt" msgstr "Let's Encrypt" #. type: cindex -#: guix-git/doc/guix.texi:27326 +#: guix-git/doc/guix.texi:27663 #, no-wrap msgid "TLS certificates" msgstr "certificados TLS" @@ -53374,46 +54113,46 @@ msgstr "certificados TLS" # FUZZY # TODO (MAAV): Repensar. #. type: Plain text -#: guix-git/doc/guix.texi:27333 +#: guix-git/doc/guix.texi:27670 msgid "The @code{(gnu services certbot)} module provides a service to automatically obtain a valid TLS certificate from the Let's Encrypt certificate authority. These certificates can then be used to serve content securely over HTTPS or other TLS-based protocols, with the knowledge that the client will be able to verify the server's authenticity." msgstr "El módulo @code{(gnu services certbot)} proporciona un servicio para la obtención automática de un certificado TLS válido de la autoridad de certificación Let's Encrypt. Estos certificados pueden usarse para proporcionar contenido de forma segura sobre HTTPS u otros protocolos basados en TLS, con el conocimiento de que el cliente podrá verificar la autenticidad del servidor." #. type: Plain text -#: guix-git/doc/guix.texi:27345 +#: guix-git/doc/guix.texi:27682 #, fuzzy msgid "@url{https://letsencrypt.org/, Let's Encrypt} provides the @code{certbot} tool to automate the certification process. This tool first securely generates a key on the server. It then makes a request to the Let's Encrypt certificate authority (CA) to sign the key. The CA checks that the request originates from the host in question by using a challenge-response protocol, requiring the server to provide its response over HTTP@. If that protocol completes successfully, the CA signs the key, resulting in a certificate. That certificate is valid for a limited period of time, and therefore to continue to provide TLS services, the server needs to periodically ask the CA to renew its signature." msgstr "@url{https://letsencrypt.org/, Let's Encrypt} proporciona la herramienta @code{certbot} para automatizar el proceso de certificación. Esta herramienta genera primero de manera segura una clave en el servidor. Una vez hecho realiza una petición a la autoridad de certificación (AC, CA en inglés) Let's Encrypt para que firme la clave. La AC comprueba que la petición se origina en la máquina en cuestión mediante un protocolo de desafío-respuesta, esperando que el servidor proporcione su respuesta a través de HTTP. Si dicho protocolo se completa de manera satisfactoria, la AC firma la clave, resultando en un certificado. Dicho certificado es válido por un periodo de tiempo limitado y, por tanto, para continuar proporcionando servicios TLS, el servidor necesita solicitar a la AC periódicamente la renovación de su firma." #. type: Plain text -#: guix-git/doc/guix.texi:27352 +#: guix-git/doc/guix.texi:27689 msgid "The certbot service automates this process: the initial key generation, the initial certification request to the Let's Encrypt service, the web server challenge/response integration, writing the certificate to disk, the automated periodic renewals, and the deployment tasks associated with the renewal (e.g.@: reloading services, copying keys with different permissions)." msgstr "El servicio certbot automatiza este proceso: la generación inicial de la clave, la petición inicial de certificación al servicio Let's Encrypt, la integración del desafío/respuesta en el servidor web, la escritura del certificado en disco, las renovaciones periódicas automáticas y el despliegue de tareas asociadas con la renovación (por ejemplo la recarga de servicios y la copia de claves con diferentes permisos)." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:27358 +#: guix-git/doc/guix.texi:27695 msgid "Certbot is run twice a day, at a random minute within the hour. It won't do anything until your certificates are due for renewal or revoked, but running it regularly would give your service a chance of staying online in case a Let's Encrypt-initiated revocation happened for some reason." msgstr "Certbot se ejecuta dos veces al día, en un minuto aleatorio dentro de la hora. No hará nada hasta que sus certificados estén pendientes de renovación o sean revocados, pero su ejecución regular propociona a su servicio la oportunidad de permanecer en línea en caso de que se produzca una revocación iniciada por Let's Encrypt por alguna razón." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:27362 +#: guix-git/doc/guix.texi:27699 msgid "By using this service, you agree to the ACME Subscriber Agreement, which can be found there: @url{https://acme-v01.api.letsencrypt.org/directory}." msgstr "Mediante el uso de este servicio, usted acepta el acuerdo de suscripción ACME, que se puede encontrar aquí: @url{https://acme-v01.api.letsencrypt.org/directory}." #. type: defvr -#: guix-git/doc/guix.texi:27363 +#: guix-git/doc/guix.texi:27700 #, no-wrap msgid "{Scheme Variable} certbot-service-type" msgstr "{Variable Scheme} certbot-service-type" #. type: defvr -#: guix-git/doc/guix.texi:27366 +#: guix-git/doc/guix.texi:27703 msgid "A service type for the @code{certbot} Let's Encrypt client. Its value must be a @code{certbot-configuration} record as in this example:" msgstr "Un tipo de servicio para el cliente de Let's Encrypt @code{certbot}. Su valor debe ser un registro @code{certbot-configuration} como en este ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:27373 +#: guix-git/doc/guix.texi:27710 #, no-wrap msgid "" "(define %nginx-deploy-hook\n" @@ -53431,7 +54170,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:27384 +#: guix-git/doc/guix.texi:27721 #, no-wrap msgid "" "(service certbot-service-type\n" @@ -53457,225 +54196,225 @@ msgstr "" " (domains '(\"bar.example.net\")))))))\n" #. type: defvr -#: guix-git/doc/guix.texi:27387 +#: guix-git/doc/guix.texi:27724 msgid "See below for details about @code{certbot-configuration}." msgstr "Véase a continuación los detalles de @code{certbot-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:27389 +#: guix-git/doc/guix.texi:27726 #, no-wrap msgid "{Data Type} certbot-configuration" msgstr "{Tipo de datos} certbot-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27392 +#: guix-git/doc/guix.texi:27729 msgid "Data type representing the configuration of the @code{certbot} service. This type has the following parameters:" msgstr "Tipo de datos que representa la configuración del servicio @code{certbot}. Este tipo tiene los siguientes parámetros:" #. type: item -#: guix-git/doc/guix.texi:27394 +#: guix-git/doc/guix.texi:27731 #, no-wrap msgid "@code{package} (default: @code{certbot})" msgstr "@code{package} (predeterminado: @code{certbot})" #. type: table -#: guix-git/doc/guix.texi:27396 +#: guix-git/doc/guix.texi:27733 msgid "The certbot package to use." msgstr "El paquete certbot usado." #. type: item -#: guix-git/doc/guix.texi:27397 +#: guix-git/doc/guix.texi:27734 #, no-wrap msgid "@code{webroot} (default: @code{/var/www})" msgstr "@code{webroot} (predeterminado: @code{/var/www})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:27400 +#: guix-git/doc/guix.texi:27737 msgid "The directory from which to serve the Let's Encrypt challenge/response files." msgstr "Directorio desde el que se proporcionan los archivos de desafío/respuesta de Let's Encrypt." #. type: item -#: guix-git/doc/guix.texi:27401 +#: guix-git/doc/guix.texi:27738 #, no-wrap msgid "@code{certificates} (default: @code{()})" msgstr "@code{certificates} (predeterminados: @code{()})" #. type: table -#: guix-git/doc/guix.texi:27405 +#: guix-git/doc/guix.texi:27742 msgid "A list of @code{certificates-configuration}s for which to generate certificates and request signatures. Each certificate has a @code{name} and several @code{domains}." msgstr "Una lista de configuraciones @code{certificates-configuration} para los cuales se generan certificados y se solicitan firmas. Cada certificado tiene un nombre (@code{name}) y varios dominios (@code{domains})." #. type: item -#: guix-git/doc/guix.texi:27406 +#: guix-git/doc/guix.texi:27743 #, no-wrap msgid "@code{email} (default: @code{#f})" msgstr "@code{email} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27410 +#: guix-git/doc/guix.texi:27747 msgid "Optional email address used for registration and recovery contact. Setting this is encouraged as it allows you to receive important notifications about the account and issued certificates." msgstr "Dirección de correo electrónico opcional usada para el registro y el contacto de recuperación. Se recomienda que proporcione un valor ya que le permite recibir importantes notificaciones acerca de la cuenta y los certificados emitidos." #. type: item -#: guix-git/doc/guix.texi:27411 guix-git/doc/guix.texi:29158 +#: guix-git/doc/guix.texi:27748 guix-git/doc/guix.texi:29495 #, no-wrap msgid "@code{server} (default: @code{#f})" msgstr "@code{server} (predeterminada: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27414 +#: guix-git/doc/guix.texi:27751 msgid "Optional URL of ACME server. Setting this overrides certbot's default, which is the Let's Encrypt server." msgstr "URL opcional del servidor ACME. Esta configuración cambia el valor predeterminado de certbot, que es el servidor de Let's Encrypt." #. type: item -#: guix-git/doc/guix.texi:27415 +#: guix-git/doc/guix.texi:27752 #, no-wrap msgid "@code{rsa-key-size} (default: @code{2048})" msgstr "@code{rsa-key-size} (predeterminado: @code{2048})" #. type: table -#: guix-git/doc/guix.texi:27417 +#: guix-git/doc/guix.texi:27754 msgid "Size of the RSA key." msgstr "Tamaño de la clave RSA." #. type: item -#: guix-git/doc/guix.texi:27418 +#: guix-git/doc/guix.texi:27755 #, no-wrap msgid "@code{default-location} (default: @i{see below})" msgstr "@code{default-location} (predeterminada: @i{véase a continuación})" #. type: table -#: guix-git/doc/guix.texi:27427 +#: guix-git/doc/guix.texi:27764 msgid "The default @code{nginx-location-configuration}. Because @code{certbot} needs to be able to serve challenges and responses, it needs to be able to run a web server. It does so by extending the @code{nginx} web service with an @code{nginx-server-configuration} listening on the @var{domains} on port 80, and which has a @code{nginx-location-configuration} for the @code{/.well-known/} URI path subspace used by Let's Encrypt. @xref{Web Services}, for more on these nginx configuration data types." msgstr "La configuración @code{nginx-location-configuration} predeterminada. Debido a que @code{certbot} necesita proporcionar desafíos y respuestas, necesita ser capaz de ejecutar un servidor web. Se lleva a cabo extendiendo el servicio web @code{nginx} con una configuración @code{nginx-server-configuration} que escucha en los dominios @var{domains} en el puerto 80, y que contiene una configuración @code{nginx-location-configuration} para el subespacio de rutas URI @code{/.well-known/} usado por Let's Encrypt. @xref{Web Services}, para más información sobre estos tipos de datos de configuración de nginx." # FUZZY #. type: table -#: guix-git/doc/guix.texi:27431 +#: guix-git/doc/guix.texi:27768 msgid "Requests to other URL paths will be matched by the @code{default-location}, which if present is added to all @code{nginx-server-configuration}s." msgstr "Las peticiones a otras rutas URL se compararán contra la dirección predeterminada @code{default-location}, la cual, en caso de estar presente, se añade a todas las configuraciones @code{nginx-server-configuration}." # FUZZY #. type: table -#: guix-git/doc/guix.texi:27435 +#: guix-git/doc/guix.texi:27772 msgid "By default, the @code{default-location} will issue a redirect from @code{http://@var{domain}/...} to @code{https://@var{domain}/...}, leaving you to define what to serve on your site via @code{https}." msgstr "De manera predeterminada, la dirección predeterminada @code{default-location} emitirá una redirección @code{http://@var{dominio}/...} a @code{https://@var{dominio}/...}, lo que le permite definir qué proporcionará en su sitio web a través de @code{https}." #. type: table -#: guix-git/doc/guix.texi:27437 +#: guix-git/doc/guix.texi:27774 msgid "Pass @code{#f} to not issue a default location." msgstr "Proporcione @code{#f} para no emitir una dirección predeterminada." #. type: deftp -#: guix-git/doc/guix.texi:27440 +#: guix-git/doc/guix.texi:27777 #, no-wrap msgid "{Data Type} certificate-configuration" msgstr "{Tipo de datos} certificate-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27443 +#: guix-git/doc/guix.texi:27780 msgid "Data type representing the configuration of a certificate. This type has the following parameters:" msgstr "Tipo de datos que representa la configuración de un certificado. Este tipo tiene los siguientes parámetros:" #. type: item -#: guix-git/doc/guix.texi:27445 +#: guix-git/doc/guix.texi:27782 #, no-wrap msgid "@code{name} (default: @i{see below})" msgstr "@code{name} (predeterminado: @i{vea a continuación})" #. type: table -#: guix-git/doc/guix.texi:27449 +#: guix-git/doc/guix.texi:27786 msgid "This name is used by Certbot for housekeeping and in file paths; it doesn't affect the content of the certificate itself. To see certificate names, run @code{certbot certificates}." msgstr "Este nombre se usa por Certbot para su mantenimiento interno y en las rutas de archivos; no afecta al contenido del certificado en sí mismo. Para ver los nombres de certificados, ejecute @code{certbot certificates}." #. type: table -#: guix-git/doc/guix.texi:27451 +#: guix-git/doc/guix.texi:27788 msgid "Its default is the first provided domain." msgstr "Su valor predeterminado es el primer dominio proporcionado." #. type: item -#: guix-git/doc/guix.texi:27452 +#: guix-git/doc/guix.texi:27789 #, no-wrap msgid "@code{domains} (default: @code{()})" msgstr "@code{domains} (predeterminado: @code{()})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:27455 +#: guix-git/doc/guix.texi:27792 msgid "The first domain provided will be the subject CN of the certificate, and all domains will be Subject Alternative Names on the certificate." msgstr "El primer dominio proporcionado será el sujeto del nombre común (CN) del certificado, y todos los dominios serán nombres alternativos (Subject Alternative Names) en el certificado." #. type: item -#: guix-git/doc/guix.texi:27456 +#: guix-git/doc/guix.texi:27793 #, no-wrap msgid "@code{challenge} (default: @code{#f})" msgstr "@code{challenge} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27463 +#: guix-git/doc/guix.texi:27800 msgid "The challenge type that has to be run by certbot. If @code{#f} is specified, default to the HTTP challenge. If a value is specified, defaults to the manual plugin (see @code{authentication-hook}, @code{cleanup-hook} and the documentation at @url{https://certbot.eff.org/docs/using.html#hooks}), and gives Let's Encrypt permission to log the public IP address of the requesting machine." msgstr "El tipo de desafío que debe ejecutar certbot. Si se especifica @code{#f}, el valor por omisión es desafío HTTP. Si se especifica un valor, el valor por omisión es el módulo manual (véase @code{authentication-hook}, @code{cleanup-hook} y la documentación en @url{https://certbot.eff.org/docs/using.html#hooks}), y concede permiso a Let's Encrypt para registrar la IP pública de la máquina que realiza la petición." #. type: item -#: guix-git/doc/guix.texi:27464 +#: guix-git/doc/guix.texi:27801 #, fuzzy, no-wrap msgid "@code{csr} (default: @code{#f})" msgstr "@code{ssl-cert} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27471 +#: guix-git/doc/guix.texi:27808 msgid "File name of Certificate Signing Request (CSR) in DER or PEM format. If @code{#f} is specified, this argument will not be passed to certbot. If a value is specified, certbot will use it to obtain a certificate, instead of using a self-generated CSR. The domain-name(s) mentioned in @code{domains}, must be consistent with the domain-name(s) mentioned in CSR file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27472 +#: guix-git/doc/guix.texi:27809 #, no-wrap msgid "@code{authentication-hook} (default: @code{#f})" msgstr "@code{authentication-hook} (predeterminado: @code{#t})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:27478 +#: guix-git/doc/guix.texi:27815 msgid "Command to be run in a shell once for each certificate challenge to be answered. For this command, the shell variable @code{$CERTBOT_DOMAIN} will contain the domain being authenticated, @code{$CERTBOT_VALIDATION} contains the validation string and @code{$CERTBOT_TOKEN} contains the file name of the resource requested when performing an HTTP-01 challenge." msgstr "Orden ejecutada en un shell una vez por cada desafío de certificado que debe contestarse. Durante su ejecución, la variable del shell @code{$CERTBOT_DOMAIN} contiene el dominio que se está validando, @code{$CERTBOT_VALIDATION} contiene la cadena de validación y @code{$CERTBOT_TOKEN} contiene el nombre de archivo del recurso solicitado cuando se realiza el desafío HTTP-01." #. type: item -#: guix-git/doc/guix.texi:27479 +#: guix-git/doc/guix.texi:27816 #, no-wrap msgid "@code{cleanup-hook} (default: @code{#f})" msgstr "@code{cleanup-hook} (predeterminado: @code{#f})" # FUZZY FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:27485 +#: guix-git/doc/guix.texi:27822 msgid "Command to be run in a shell once for each certificate challenge that have been answered by the @code{auth-hook}. For this command, the shell variables available in the @code{auth-hook} script are still available, and additionally @code{$CERTBOT_AUTH_OUTPUT} will contain the standard output of the @code{auth-hook} script." msgstr "Orden ejecutada en un shell una vez por cada desafío de certificado que haya sido contestado por @code{auth-hook}. Durante su ejecución, las variables del shell disponibles en el script @code{auth-hook} todavía están disponibles, y adicionalmente @code{$CERTBOT_AUTH_OUTPUT} contendrá la salida estándar que produjo @code{auth-hook}." #. type: item -#: guix-git/doc/guix.texi:27486 +#: guix-git/doc/guix.texi:27823 #, no-wrap msgid "@code{deploy-hook} (default: @code{#f})" msgstr "@code{deploy-hook} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27494 +#: guix-git/doc/guix.texi:27831 msgid "Command to be run in a shell once for each successfully issued certificate. For this command, the shell variable @code{$RENEWED_LINEAGE} will point to the config live subdirectory (for example, @samp{\"/etc/letsencrypt/live/example.com\"}) containing the new certificates and keys; the shell variable @code{$RENEWED_DOMAINS} will contain a space-delimited list of renewed certificate domains (for example, @samp{\"example.com www.example.com\"}." msgstr "Orden ejecutada en un shell una vez por cada certificado emitido satisfactoriamente. Durante su ejecución, la variable del shell @code{$RENEWED_LINEAGE} apuntará al subdirectorio live de configuración (por ejemplo, @samp{\"/etc/letsencrypt/live/example.com\"}) que contiene las nuevas claves y certificados; la variable del shell @code{$RENEWED_DOMAINS} contendrá una lista delimitada por espacios de certificados de dominio renovados (por ejemplo, @samp{\"example.com www.example.com\"})." #. type: Plain text -#: guix-git/doc/guix.texi:27501 +#: guix-git/doc/guix.texi:27838 msgid "For each @code{certificate-configuration}, the certificate is saved to @code{/etc/letsencrypt/live/@var{name}/fullchain.pem} and the key is saved to @code{/etc/letsencrypt/live/@var{name}/privkey.pem}." msgstr "Para cada configuración @code{certificate-configuration}, el certificado se almacena @code{/etc/letsencrypt/live/@var{name}/fullchain.pem} y la clave se almacena en @code{/etc/letsencrypt/live/@var{name}/privkey.pem}." #. type: cindex -#: guix-git/doc/guix.texi:27503 +#: guix-git/doc/guix.texi:27840 #, no-wrap msgid "DNS (domain name system)" msgstr "DNS (sistema de nombres de dominio)" #. type: cindex -#: guix-git/doc/guix.texi:27504 +#: guix-git/doc/guix.texi:27841 #, no-wrap msgid "domain name system (DNS)" msgstr "sistema de nombres de dominio (DNS)" @@ -53683,25 +54422,25 @@ msgstr "sistema de nombres de dominio (DNS)" # FUZZY # TODO (MAAV): Authoritative?? #. type: Plain text -#: guix-git/doc/guix.texi:27512 +#: guix-git/doc/guix.texi:27849 msgid "The @code{(gnu services dns)} module provides services related to the @dfn{domain name system} (DNS). It provides a server service for hosting an @emph{authoritative} DNS server for multiple zones, slave or master. This service uses @uref{https://www.knot-dns.cz/, Knot DNS}. And also a caching and forwarding DNS server for the LAN, which uses @uref{http://www.thekelleys.org.uk/dnsmasq/doc.html, dnsmasq}." msgstr "El módulo @code{(gnu services dns)} proporciona servicios relacionados con el @dfn{sistema de nombres de dominio} (DNS). Proporciona un servicio de servidor para el alojamiento de un servidor @emph{autorizado} DNS para múltiples zonas, esclavo o maestro. Este servicio usa @uref{https://www.knot-dns.cz/, Knot DNS}. Y también un servidor de caché y reenvío de DNS para la red local, que usa @uref{http://www.thekelleys.org.uk/dnsmasq/doc.html, dnsmasq}." #. type: subsubheading -#: guix-git/doc/guix.texi:27513 +#: guix-git/doc/guix.texi:27850 #, no-wrap msgid "Knot Service" msgstr "Servicio Knot" # FUZZY FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:27517 +#: guix-git/doc/guix.texi:27854 msgid "An example configuration of an authoritative server for two zones, one master and one slave, is:" msgstr "Esta es una configuración de ejemplo de un servidor de autoridad para dos zonas, una maestra y otra esclava:" # FUZZY #. type: lisp -#: guix-git/doc/guix.texi:27524 +#: guix-git/doc/guix.texi:27861 #, no-wrap msgid "" "(define-zone-entries example.org.zone\n" @@ -53720,7 +54459,7 @@ msgstr "" # FUZZY #. type: lisp -#: guix-git/doc/guix.texi:27531 +#: guix-git/doc/guix.texi:27868 #, no-wrap msgid "" "(define master-zone\n" @@ -53741,7 +54480,7 @@ msgstr "" # FUZZY #. type: lisp -#: guix-git/doc/guix.texi:27537 +#: guix-git/doc/guix.texi:27874 #, no-wrap msgid "" "(define slave-zone\n" @@ -53760,7 +54499,7 @@ msgstr "" # FUZZY #. type: lisp -#: guix-git/doc/guix.texi:27542 +#: guix-git/doc/guix.texi:27879 #, no-wrap msgid "" "(define plop-master\n" @@ -53777,7 +54516,7 @@ msgstr "" # FUZZY #. type: lisp -#: guix-git/doc/guix.texi:27551 +#: guix-git/doc/guix.texi:27888 #, no-wrap msgid "" "(operating-system\n" @@ -53799,289 +54538,289 @@ msgstr "" " %base-services)))\n" #. type: deffn -#: guix-git/doc/guix.texi:27553 +#: guix-git/doc/guix.texi:27890 #, no-wrap msgid "{Scheme Variable} knot-service-type" msgstr "{Variable Scheme} knot-service-type" #. type: deffn -#: guix-git/doc/guix.texi:27555 +#: guix-git/doc/guix.texi:27892 msgid "This is the type for the Knot DNS server." msgstr "Este es el tipo de datos para el servidor DNS Knot." # FUZZY #. type: deffn -#: guix-git/doc/guix.texi:27563 +#: guix-git/doc/guix.texi:27900 msgid "Knot DNS is an authoritative DNS server, meaning that it can serve multiple zones, that is to say domain names you would buy from a registrar. This server is not a resolver, meaning that it can only resolve names for which it is authoritative. This server can be configured to serve zones as a master server or a slave server as a per-zone basis. Slave zones will get their data from masters, and will serve it as an authoritative server. From the point of view of a resolver, there is no difference between master and slave." msgstr "Knot DNS es un servidor de autoridad de DNS, lo que significa que puede servir múltiples zonas, es decir, nombres de dominio que compraría a una autoridad de registro de nombres. Este servidor no es un resolvedor, lo que significa que sólo puede resolver nombres para los que tiene autoridad. Este servidor puede configurarse para servir zonas como servidor maestro o como servidor esclavo con una granularidad al nivel de zona. Las zonas esclavas obtendrán sus datos de los servidores maestros, y las proporcionarán como un servidor de autoridad. Desde el punto de vista de un resolvedor, no hay diferencia entre servidor maestro y esclavo." #. type: deffn -#: guix-git/doc/guix.texi:27565 +#: guix-git/doc/guix.texi:27902 msgid "The following data types are used to configure the Knot DNS server:" msgstr "Los siguientes tipos de datos se usan para configurar el servidor DNS Knot:" #. type: deftp -#: guix-git/doc/guix.texi:27567 +#: guix-git/doc/guix.texi:27904 #, no-wrap msgid "{Data Type} knot-key-configuration" msgstr "{Tipo de datos} knot-key-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27570 +#: guix-git/doc/guix.texi:27907 msgid "Data type representing a key. This type has the following parameters:" msgstr "Tipo de datos que representa una clave. Este tipo tiene los siguientes parámetros:" #. type: item -#: guix-git/doc/guix.texi:27572 guix-git/doc/guix.texi:27592 -#: guix-git/doc/guix.texi:27707 guix-git/doc/guix.texi:27733 -#: guix-git/doc/guix.texi:27768 +#: guix-git/doc/guix.texi:27909 guix-git/doc/guix.texi:27929 +#: guix-git/doc/guix.texi:28044 guix-git/doc/guix.texi:28070 +#: guix-git/doc/guix.texi:28105 #, no-wrap msgid "@code{id} (default: @code{\"\"})" msgstr "@code{id} (predeterminado: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:27575 guix-git/doc/guix.texi:27595 +#: guix-git/doc/guix.texi:27912 guix-git/doc/guix.texi:27932 #, fuzzy msgid "An identifier for other configuration fields to refer to this key. IDs must be unique and must not be empty." msgstr "Un identificador para que otros campos de configuración hagan referencia a esta clave. Los identificadores deben ser únicos y no deben estar vacíos." #. type: item -#: guix-git/doc/guix.texi:27576 +#: guix-git/doc/guix.texi:27913 #, no-wrap msgid "@code{algorithm} (default: @code{#f})" msgstr "@code{algorithm} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:27580 +#: guix-git/doc/guix.texi:27917 msgid "The algorithm to use. Choose between @code{#f}, @code{'hmac-md5}, @code{'hmac-sha1}, @code{'hmac-sha224}, @code{'hmac-sha256}, @code{'hmac-sha384} and @code{'hmac-sha512}." msgstr "El algoritmo usado. Debe seleccionarse entre @code{#f}, @code{'hmac-md5}, @code{'hmac-sha1}, @code{'hmac-sha224}, @code{'hmac-sha256}, @code{'hmac-sha384} y @code{'hmac-sha512}." #. type: item -#: guix-git/doc/guix.texi:27581 +#: guix-git/doc/guix.texi:27918 #, no-wrap msgid "@code{secret} (default: @code{\"\"})" msgstr "@code{secret} (predeterminado: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:27583 +#: guix-git/doc/guix.texi:27920 msgid "The secret key itself." msgstr "La clave secreta en sí." #. type: deftp -#: guix-git/doc/guix.texi:27587 +#: guix-git/doc/guix.texi:27924 #, no-wrap msgid "{Data Type} knot-acl-configuration" msgstr "{Tipo de datos} knot-acl-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27590 +#: guix-git/doc/guix.texi:27927 msgid "Data type representing an Access Control List (ACL) configuration. This type has the following parameters:" msgstr "Tipo de datos que representa una configuración de lista de control de acceso (ACL). Este tipo tiene los siguientes parámetros:" #. type: item -#: guix-git/doc/guix.texi:27596 guix-git/doc/guix.texi:27711 +#: guix-git/doc/guix.texi:27933 guix-git/doc/guix.texi:28048 #, no-wrap msgid "@code{address} (default: @code{'()})" msgstr "@code{address} (predeterminada: @code{'()})" # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:27600 +#: guix-git/doc/guix.texi:27937 msgid "An ordered list of IP addresses, network subnets, or network ranges represented with strings. The query must match one of them. Empty value means that address match is not required." msgstr "Lista ordenada de direcciones IP, subredes o rangos de red representadas como cadenas. La búsqueda debe corresponder con alguna. El valor vacío significa que la comprobación de correspondencia de la dirección no es necesaria." #. type: item -#: guix-git/doc/guix.texi:27601 +#: guix-git/doc/guix.texi:27938 #, no-wrap msgid "@code{key} (default: @code{'()})" msgstr "@code{key} (predeterminada: @code{'()})" # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:27605 +#: guix-git/doc/guix.texi:27942 msgid "An ordered list of references to keys represented with strings. The string must match a key ID defined in a @code{knot-key-configuration}. No key means that a key is not require to match that ACL." msgstr "Lista ordenada de referencias a claves representadas como cadenas. La cadena debe corresponder con un ID de clave definido en @code{knot-key-configuration}. Ninguna clave significa que la comprobación de claves no es necesaria para este control de acceso (ACL)." #. type: item -#: guix-git/doc/guix.texi:27606 +#: guix-git/doc/guix.texi:27943 #, no-wrap msgid "@code{action} (default: @code{'()})" msgstr "@code{action} (predeterminada: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27610 +#: guix-git/doc/guix.texi:27947 #, fuzzy msgid "An ordered list of actions that are permitted or forbidden by this ACL@. Possible values are lists of zero or more elements from @code{'transfer}, @code{'notify} and @code{'update}." msgstr "Lista ordenada de acciones que se permiten o deniegan por este control de acceso (ACL). Los valores posibles son listas de cero o más elementos entre @code{'transfer}, @code{'notify} y @code{'update}." #. type: item -#: guix-git/doc/guix.texi:27611 +#: guix-git/doc/guix.texi:27948 #, no-wrap msgid "@code{deny?} (default: @code{#f})" msgstr "@code{deny?} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:27614 +#: guix-git/doc/guix.texi:27951 msgid "When true, the ACL defines restrictions. Listed actions are forbidden. When false, listed actions are allowed." msgstr "Cuando es verdadero, este ACL define restricciones. Las acciones enumeradas no se permiten. Cuando es falso, las acciones enumeradas se permiten." #. type: deftp -#: guix-git/doc/guix.texi:27618 +#: guix-git/doc/guix.texi:27955 #, no-wrap msgid "{Data Type} zone-entry" msgstr "{Tipo de datos} zone-entry" #. type: deftp -#: guix-git/doc/guix.texi:27621 +#: guix-git/doc/guix.texi:27958 msgid "Data type representing a record entry in a zone file. This type has the following parameters:" msgstr "Tipo de datos que representa una entrada de registro en un archivo de zona. Este tipo tiene los siguientes parámetros:" #. type: item -#: guix-git/doc/guix.texi:27623 +#: guix-git/doc/guix.texi:27960 #, no-wrap msgid "@code{name} (default: @code{\"@@\"})" msgstr "@code{name} (predeterminado: @code{\"@@\"})" #. type: table -#: guix-git/doc/guix.texi:27629 +#: guix-git/doc/guix.texi:27966 msgid "The name of the record. @code{\"@@\"} refers to the origin of the zone. Names are relative to the origin of the zone. For example, in the @code{example.org} zone, @code{\"ns.example.org\"} actually refers to @code{ns.example.org.example.org}. Names ending with a dot are absolute, which means that @code{\"ns.example.org.\"} refers to @code{ns.example.org}." msgstr "El nombre del registro. @code{\"@@\"} hace referencia al origen de la zona. Los nombres son relativos al origen de la zona. Por ejemplo, en la zona @code{example.org}, @code{\"ns.example.org\"} en realidad hace referencia a @code{ns.example.org.example.org}. Los nombres que terminan en un punto se consideran absolutos, lo que significa que @code{\"ns.example.org.\"} hace referencia a @code{ns.example.org}." #. type: item -#: guix-git/doc/guix.texi:27630 +#: guix-git/doc/guix.texi:27967 #, no-wrap msgid "@code{ttl} (default: @code{\"\"})" msgstr "@code{ttl} (predeterminado: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:27632 +#: guix-git/doc/guix.texi:27969 msgid "The Time-To-Live (TTL) of this record. If not set, the default TTL is used." msgstr "El tiempo de vida (TTL) de este registro. Si no se proporciona, se usa el TTL predeterminado." #. type: item -#: guix-git/doc/guix.texi:27633 +#: guix-git/doc/guix.texi:27970 #, no-wrap msgid "@code{class} (default: @code{\"IN\"})" msgstr "@code{class} (predeterminada: @code{\"IN\"})" #. type: table -#: guix-git/doc/guix.texi:27636 +#: guix-git/doc/guix.texi:27973 msgid "The class of the record. Knot currently supports only @code{\"IN\"} and partially @code{\"CH\"}." msgstr "La clase del registro. Actualmente Knot implementa únicamente @code{\"IN\"} y parcialmente @code{\"CH\"}." #. type: item -#: guix-git/doc/guix.texi:27637 +#: guix-git/doc/guix.texi:27974 #, no-wrap msgid "@code{type} (default: @code{\"A\"})" msgstr "@code{type} (predeterminado: @code{\"A\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:27641 +#: guix-git/doc/guix.texi:27978 msgid "The type of the record. Common types include A (IPv4 address), AAAA (IPv6 address), NS (Name Server) and MX (Mail eXchange). Many other types are defined." msgstr "El tipo del registro. Los tipos comunes incluyen A (dirección IPv4), AAAA (dirección IPv6), NS (servidor de nombres@footnote{Name Server en inglés.}) y MX (pasarela de correo@footnote{Mail eXchange en inglés}). Otros muchos tipos distintos se encuentran definidos." #. type: item -#: guix-git/doc/guix.texi:27642 +#: guix-git/doc/guix.texi:27979 #, no-wrap msgid "@code{data} (default: @code{\"\"})" msgstr "@code{data} (predeterminados: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:27646 +#: guix-git/doc/guix.texi:27983 msgid "The data contained in the record. For instance an IP address associated with an A record, or a domain name associated with an NS record. Remember that domain names are relative to the origin unless they end with a dot." msgstr "Los datos que contiene el registro. Por ejemplo, una dirección IP asociada con un registro A, o un nombre de dominio asociado con un registro NS. Recuerde que los nombres de dominio son relativos al origen a menos que terminen con punto." #. type: deftp -#: guix-git/doc/guix.texi:27650 +#: guix-git/doc/guix.texi:27987 #, no-wrap msgid "{Data Type} zone-file" msgstr "{Tipo de datos} zone-file" #. type: deftp -#: guix-git/doc/guix.texi:27653 +#: guix-git/doc/guix.texi:27990 msgid "Data type representing the content of a zone file. This type has the following parameters:" msgstr "Tipo de datos que representa el contenido de un archivo de zona. Este tipo tiene los siguientes parámetros:" # FUZZY # TODO (MAAV): Revisar traducción. #. type: table -#: guix-git/doc/guix.texi:27662 +#: guix-git/doc/guix.texi:27999 msgid "The list of entries. The SOA record is taken care of, so you don't need to put it in the list of entries. This list should probably contain an entry for your primary authoritative DNS server. Other than using a list of entries directly, you can use @code{define-zone-entries} to define a object containing the list of entries more easily, that you can later pass to the @code{entries} field of the @code{zone-file}." msgstr "La lista de entradas. El registro SOA se genera automáticamente, por lo que no necesita ponerlo en la lista de entradas. Esta lista probablemente debería contener una entrada apuntando a su servidor DNS de autoridad. En vez de usar una lista de entradas directamente, puede usar @code{define-zone-entries} para definir un objeto que contenga la lista de entradas más fácilmente, que posteriormente puede proporcionar en el campo @code{entries} del archivo @code{zone-file}." #. type: item -#: guix-git/doc/guix.texi:27663 +#: guix-git/doc/guix.texi:28000 #, no-wrap msgid "@code{origin} (default: @code{\"\"})" msgstr "@code{origin} (predeterminado: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:27665 +#: guix-git/doc/guix.texi:28002 msgid "The name of your zone. This parameter cannot be empty." msgstr "El nombre de su zona. Este parámetro no puede estar vacío." #. type: item -#: guix-git/doc/guix.texi:27666 +#: guix-git/doc/guix.texi:28003 #, no-wrap msgid "@code{ns} (default: @code{\"ns\"})" msgstr "@code{ns} (predeterminado: @code{\"ns\"})" # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:27671 +#: guix-git/doc/guix.texi:28008 msgid "The domain of your primary authoritative DNS server. The name is relative to the origin, unless it ends with a dot. It is mandatory that this primary DNS server corresponds to an NS record in the zone and that it is associated to an IP address in the list of entries." msgstr "El dominio de su servidor DNS primario de autoridad. El nombre es relativo al origen, a menos que termine en punto. Es obligatorio que este servidor DNS primario corresponda con un registro NS en la zona y que esté asociado a una dirección IP en la lista de entradas." #. type: item -#: guix-git/doc/guix.texi:27672 +#: guix-git/doc/guix.texi:28009 #, no-wrap msgid "@code{mail} (default: @code{\"hostmaster\"})" msgstr "@code{mail} (predeterminado: @code{\"hostmaster\"})" #. type: table -#: guix-git/doc/guix.texi:27675 +#: guix-git/doc/guix.texi:28012 msgid "An email address people can contact you at, as the owner of the zone. This is translated as @code{@@}." msgstr "Dirección de correo a través de la cual la gente puede contactar con usted, como propietaria de la zona. Se traduce a @code{@@}." #. type: item -#: guix-git/doc/guix.texi:27676 +#: guix-git/doc/guix.texi:28013 #, no-wrap msgid "@code{serial} (default: @code{1})" msgstr "@code{serial} (predeterminado: @code{1})" # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:27680 +#: guix-git/doc/guix.texi:28017 msgid "The serial number of the zone. As this is used to keep track of changes by both slaves and resolvers, it is mandatory that it @emph{never} decreases. Always increment it when you make a change in your zone." msgstr "Número serie de la zona. Como se usa para tener constancia de los cambios tanto en servidores esclavos como en resolvedores, es obligatorio que @emph{nunca} decremente. Incremente su valor siempre que haga cambios en su zona." #. type: item -#: guix-git/doc/guix.texi:27681 +#: guix-git/doc/guix.texi:28018 #, no-wrap msgid "@code{refresh} (default: @code{(* 2 24 3600)})" msgstr "@code{refresh} (predeterminado: @code{(* 2 24 3600)})" #. type: table -#: guix-git/doc/guix.texi:27685 +#: guix-git/doc/guix.texi:28022 msgid "The frequency at which slaves will do a zone transfer. This value is a number of seconds. It can be computed by multiplications or with @code{(string->duration)}." msgstr "La frecuencia con la que los servidores esclavos realizarán una transferencia de zona. Este valor es un número de segundos. Puede calcularse con multiplicaciones o con @code{(string->duration)}." #. type: item -#: guix-git/doc/guix.texi:27686 +#: guix-git/doc/guix.texi:28023 #, no-wrap msgid "@code{retry} (default: @code{(* 15 60)})" msgstr "@code{retry} (predeterminado: @code{(* 15 60)})" #. type: table -#: guix-git/doc/guix.texi:27689 +#: guix-git/doc/guix.texi:28026 msgid "The period after which a slave will retry to contact its master when it fails to do so a first time." msgstr "El periodo tras el cual un servidor esclavo reintentará el contacto con su maestro cuando falle al intentarlo la primera vez." #. type: item -#: guix-git/doc/guix.texi:27690 +#: guix-git/doc/guix.texi:28027 #, no-wrap msgid "@code{expiry} (default: @code{(* 14 24 3600)})" msgstr "@code{expiry} (predeterminado: @code{(* 14 24 3600)})" @@ -54089,604 +54828,604 @@ msgstr "@code{expiry} (predeterminado: @code{(* 14 24 3600)})" # FUZZY FUZZY # TODO (MAAV): Resolvedor? #. type: table -#: guix-git/doc/guix.texi:27694 +#: guix-git/doc/guix.texi:28031 msgid "Default TTL of records. Existing records are considered correct for at most this amount of time. After this period, resolvers will invalidate their cache and check again that it still exists." msgstr "Tiempo de vida (TTL) predeterminado de los registros. Los registros existentes se consideran correctos durante al menos este periodo de tiempo. Tras este periodo, los resolvedores invalidarán su caché y comprobarán de nuevo que todavía exista." #. type: item -#: guix-git/doc/guix.texi:27695 +#: guix-git/doc/guix.texi:28032 #, no-wrap msgid "@code{nx} (default: @code{3600})" msgstr "@code{nx} (predeterminado: @code{3600})" #. type: table -#: guix-git/doc/guix.texi:27698 +#: guix-git/doc/guix.texi:28035 #, fuzzy msgid "Default TTL of inexistent records. This delay is usually short because you want your new domains to reach everyone quickly." msgstr "Tiempo de vida (TTL) de los registros inexistentes. Este retraso es habitualmente corto ya que deseará que sus nuevos dominios estén disponibles para cualquiera rápidamente." #. type: deftp -#: guix-git/doc/guix.texi:27702 +#: guix-git/doc/guix.texi:28039 #, no-wrap msgid "{Data Type} knot-remote-configuration" msgstr "{Tipo de datos} knot-remote-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27705 +#: guix-git/doc/guix.texi:28042 msgid "Data type representing a remote configuration. This type has the following parameters:" msgstr "Tipo de datos que representa una configuración remota. Este tipo tiene los siguientes parámetros:" #. type: table -#: guix-git/doc/guix.texi:27710 +#: guix-git/doc/guix.texi:28047 #, fuzzy msgid "An identifier for other configuration fields to refer to this remote. IDs must be unique and must not be empty." msgstr "Un identificador para que otros campos de configuración hagan referencia a esta configuración remota. Los identificadores deben ser únicos y no deben estar vacíos." #. type: table -#: guix-git/doc/guix.texi:27715 +#: guix-git/doc/guix.texi:28052 msgid "An ordered list of destination IP addresses. Addresses are tried in sequence. An optional port can be given with the @@ separator. For instance: @code{(list \"1.2.3.4\" \"2.3.4.5@@53\")}. Default port is 53." msgstr "Una lista ordenada de direcciones IP de destino. Las direcciones se prueban en secuencia. Opcionalmente se puede proporcionar el puerto con el separador @@. Por ejemplo: @code{(list \"1.2.3.4\" \"2.3.4.5@@53\")}. El puerto predeterminado es el 53." #. type: item -#: guix-git/doc/guix.texi:27716 +#: guix-git/doc/guix.texi:28053 #, no-wrap msgid "@code{via} (default: @code{'()})" msgstr "@code{via} (predeterminada: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27720 +#: guix-git/doc/guix.texi:28057 #, fuzzy msgid "An ordered list of source IP addresses. An empty list will have Knot choose an appropriate source IP@. An optional port can be given with the @@ separator. The default is to choose at random." msgstr "Una lista ordenada de direcciones IP de fuente. Una lista vacía hará que Knot seleccione una fuente IP apropiada. Opcionalmente se puede proporcionar el puerto con el separador @@. De manera predeterminada se selecciona al azar." #. type: table -#: guix-git/doc/guix.texi:27724 +#: guix-git/doc/guix.texi:28061 msgid "A reference to a key, that is a string containing the identifier of a key defined in a @code{knot-key-configuration} field." msgstr "Referencia a una clave, esto es una cadena que contiene el identificador de una clave definida en el campo @code{knot-key-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:27728 +#: guix-git/doc/guix.texi:28065 #, no-wrap msgid "{Data Type} knot-keystore-configuration" msgstr "{Tipo de datos} knot-keystore-configuration" # FUZZY #. type: deftp -#: guix-git/doc/guix.texi:27731 +#: guix-git/doc/guix.texi:28068 msgid "Data type representing a keystore to hold dnssec keys. This type has the following parameters:" msgstr "Tipo de datos que representa un almacén de claves para alojar claves de dnssec. Este tipo tiene los siguientes parámetros:" #. type: table -#: guix-git/doc/guix.texi:27735 +#: guix-git/doc/guix.texi:28072 msgid "The id of the keystore. It must not be empty." msgstr "El identificador del almacén de claves. No debe estar vacío." #. type: item -#: guix-git/doc/guix.texi:27736 +#: guix-git/doc/guix.texi:28073 #, no-wrap msgid "@code{backend} (default: @code{'pem})" msgstr "@code{backend} (predeterminado: @code{'pem})" #. type: table -#: guix-git/doc/guix.texi:27738 +#: guix-git/doc/guix.texi:28075 msgid "The backend to store the keys in. Can be @code{'pem} or @code{'pkcs11}." msgstr "El motor en el que se almacenan las claves. Puede ser @code{'pem} o @code{'pkcs11}." #. type: item -#: guix-git/doc/guix.texi:27739 +#: guix-git/doc/guix.texi:28076 #, no-wrap msgid "@code{config} (default: @code{\"/var/lib/knot/keys/keys\"})" msgstr "@code{config} (predeterminada: @code{\"/var/lib/knot/keys/keys\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:27743 +#: guix-git/doc/guix.texi:28080 msgid "The configuration string of the backend. An example for the PKCS#11 is: @code{\"pkcs11:token=knot;pin-value=1234 /gnu/store/.../lib/pkcs11/libsofthsm2.so\"}. For the pem backend, the string represents a path in the file system." msgstr "La cadena de configuración del motor. Un ejemplo para PKCS#11 es: @code{\"pkcs11:token=knot;pin-value=1234 /gnu/store/.../lib/pkcs11/libsofthsm2.so\"}. La cadena representa una ruta en el sistema de archivos para el motor pem." #. type: deftp -#: guix-git/doc/guix.texi:27747 +#: guix-git/doc/guix.texi:28084 #, no-wrap msgid "{Data Type} knot-policy-configuration" msgstr "{Tipo de datos} knot-policy-configuration" # FUZZY #. type: deftp -#: guix-git/doc/guix.texi:27751 +#: guix-git/doc/guix.texi:28088 msgid "Data type representing a dnssec policy. Knot DNS is able to automatically sign your zones. It can either generate and manage your keys automatically or use keys that you generate." msgstr "Tipo de datos que representa una política de dnssec. El DNS Knot es capaz de firmar automáticamente sus zonas. Puede generar y gestionar sus claves de manera automática o usar las claves que usted genere." #. type: deftp -#: guix-git/doc/guix.texi:27758 +#: guix-git/doc/guix.texi:28095 msgid "Dnssec is usually implemented using two keys: a Key Signing Key (KSK) that is used to sign the second, and a Zone Signing Key (ZSK) that is used to sign the zone. In order to be trusted, the KSK needs to be present in the parent zone (usually a top-level domain). If your registrar supports dnssec, you will have to send them your KSK's hash so they can add a DS record in their zone. This is not automated and need to be done each time you change your KSK." msgstr "Dnssec se implementa habitualmente usando dos claves: una clave para firma de claves (KSK) que se usa para firmar la segunda, y una clave para firma de zona (ZSK) que se usa para firmar la zona. Para establecer la confianza, la KSK necesita estar presente en la zona padre (habitualmente un dominio de nivel superior). Si su entidad de registro permite dnssec, debe mandarle el hash de su KSK de manera que puedan añadir un registro DS en su zona. No es automático y debe realizarse cada vez que cambie su KSK." #. type: deftp -#: guix-git/doc/guix.texi:27764 +#: guix-git/doc/guix.texi:28101 msgid "The policy also defines the lifetime of keys. Usually, ZSK can be changed easily and use weaker cryptographic functions (they use lower parameters) in order to sign records quickly, so they are changed often. The KSK however requires manual interaction with the registrar, so they are changed less often and use stronger parameters because they sign only one record." msgstr "La política también define el tiempo de vida de las claves. Habitualmente, la ZSK puede cambiarse fácilmente y usa funciones criptográficas más débiles (usa parámetros de menor magnitud) para firmar los registros rápidamente, ya que cambian habitualmente. No obstante, la KSK requiere interacción manual con la entidad de registro, por lo que se cambia menos habitualmente y usa parámetros más fuertes debido a que únicamente firma un registro." #. type: deftp -#: guix-git/doc/guix.texi:27766 +#: guix-git/doc/guix.texi:28103 msgid "This type has the following parameters:" msgstr "Este tipo tiene los siguientes parámetros:" # FUZZY #. type: table -#: guix-git/doc/guix.texi:27770 +#: guix-git/doc/guix.texi:28107 msgid "The id of the policy. It must not be empty." msgstr "El identificador de la política. No debe estar vacío." #. type: item -#: guix-git/doc/guix.texi:27771 +#: guix-git/doc/guix.texi:28108 #, no-wrap msgid "@code{keystore} (default: @code{\"default\"})" msgstr "@code{keystore} (predeterminado: @code{\"default\"})" #. type: table -#: guix-git/doc/guix.texi:27776 +#: guix-git/doc/guix.texi:28113 msgid "A reference to a keystore, that is a string containing the identifier of a keystore defined in a @code{knot-keystore-configuration} field. The @code{\"default\"} identifier means the default keystore (a kasp database that was setup by this service)." msgstr "Referencia a un almacén de claves, es decir una cadena que contiene el identificador de un almacén de claves definido en un campo de @code{knot-keystore-configuration}. El identificador predeterminado @code{\"default\"} implica el uso del almacén de claves predeterminado (una base de datos kasp que se configura para este servicio)." #. type: item -#: guix-git/doc/guix.texi:27777 +#: guix-git/doc/guix.texi:28114 #, no-wrap msgid "@code{manual?} (default: @code{#f})" msgstr "@code{manual?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27779 +#: guix-git/doc/guix.texi:28116 msgid "Whether the key management is manual or automatic." msgstr "Si la gestión de claves es manual o automática." #. type: item -#: guix-git/doc/guix.texi:27780 +#: guix-git/doc/guix.texi:28117 #, no-wrap msgid "@code{single-type-signing?} (default: @code{#f})" msgstr "@code{single-type-signing?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27782 +#: guix-git/doc/guix.texi:28119 msgid "When @code{#t}, use the Single-Type Signing Scheme." msgstr "Cuando sea @code{#t}, usa el esquema de firma de tipo único (Single-Type Signing Scheme)." #. type: item -#: guix-git/doc/guix.texi:27783 +#: guix-git/doc/guix.texi:28120 #, no-wrap msgid "@code{algorithm} (default: @code{\"ecdsap256sha256\"})" msgstr "@code{algorithm} (predeterminado: @code{\"ecdsap256sha256\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:27785 +#: guix-git/doc/guix.texi:28122 msgid "An algorithm of signing keys and issued signatures." msgstr "Algoritmo para las claves de firma y las firmas emitidas." #. type: item -#: guix-git/doc/guix.texi:27786 +#: guix-git/doc/guix.texi:28123 #, no-wrap msgid "@code{ksk-size} (default: @code{256})" msgstr "@code{ksk-size} (predeterminado: @code{256})" #. type: table -#: guix-git/doc/guix.texi:27789 +#: guix-git/doc/guix.texi:28126 #, fuzzy msgid "The length of the KSK@. Note that this value is correct for the default algorithm, but would be unsecure for other algorithms." msgstr "La longitud de la KSK. Fíjese que este valor es correcto para el algoritmo predeterminado, pero sería inseguro para otros algoritmos." #. type: item -#: guix-git/doc/guix.texi:27790 +#: guix-git/doc/guix.texi:28127 #, no-wrap msgid "@code{zsk-size} (default: @code{256})" msgstr "@code{zsk-size} (predeterminado: @code{256})" #. type: table -#: guix-git/doc/guix.texi:27793 +#: guix-git/doc/guix.texi:28130 #, fuzzy msgid "The length of the ZSK@. Note that this value is correct for the default algorithm, but would be unsecure for other algorithms." msgstr "La longitud de la ZSK. Fíjese que este valor es correcto para el algoritmo predeterminado, pero sería inseguro para otros algoritmos." #. type: item -#: guix-git/doc/guix.texi:27794 +#: guix-git/doc/guix.texi:28131 #, no-wrap msgid "@code{dnskey-ttl} (default: @code{'default})" msgstr "@code{dnskey-ttl} (predeterminado: @code{'default})" #. type: table -#: guix-git/doc/guix.texi:27797 +#: guix-git/doc/guix.texi:28134 msgid "The TTL value for DNSKEY records added into zone apex. The special @code{'default} value means same as the zone SOA TTL." msgstr "El valor del tiempo de vida (TTL) de los registros DNSKEY añadidos al ``apex'' de la zona. El valor especial @code{'default} significa el mismo valor que el TTL del SOA de la zona." #. type: item -#: guix-git/doc/guix.texi:27798 +#: guix-git/doc/guix.texi:28135 #, no-wrap msgid "@code{zsk-lifetime} (default: @code{(* 30 24 3600)})" msgstr "@code{zsk-lifetime} (predeterminado: @code{(* 30 24 3600)})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:27800 +#: guix-git/doc/guix.texi:28137 msgid "The period between ZSK publication and the next rollover initiation." msgstr "El periodo entre la publicación de la ZSK y el inicio del siguiente ciclo de renovación." #. type: item -#: guix-git/doc/guix.texi:27801 +#: guix-git/doc/guix.texi:28138 #, no-wrap msgid "@code{propagation-delay} (default: @code{(* 24 3600)})" msgstr "@code{propagation-delay} (predeterminado: @code{(* 24 3600)})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:27804 +#: guix-git/doc/guix.texi:28141 msgid "An extra delay added for each key rollover step. This value should be high enough to cover propagation of data from the master server to all slaves." msgstr "Retraso adicional añadido por cada paso del ciclo de renovación de clave. Este valor debe ser suficientemente alto para cubrir la propagación de datos del servidor maestro a todos los esclavos." #. type: item -#: guix-git/doc/guix.texi:27805 +#: guix-git/doc/guix.texi:28142 #, no-wrap msgid "@code{rrsig-lifetime} (default: @code{(* 14 24 3600)})" msgstr "@code{rrsig-lifetime} (predeterminado: @code{(* 14 24 3600)})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:27807 +#: guix-git/doc/guix.texi:28144 msgid "A validity period of newly issued signatures." msgstr "Periodo de validez para las nuevas firmas emitidas." #. type: item -#: guix-git/doc/guix.texi:27808 +#: guix-git/doc/guix.texi:28145 #, no-wrap msgid "@code{rrsig-refresh} (default: @code{(* 7 24 3600)})" msgstr "@code{rrsig-refresh} (predeterminado: @code{(* 7 24 3600)})" #. type: table -#: guix-git/doc/guix.texi:27810 +#: guix-git/doc/guix.texi:28147 msgid "A period how long before a signature expiration the signature will be refreshed." msgstr "Periodo de antelación con el que se realiza el refresco de la firma antes de una expiración de la misma." #. type: item -#: guix-git/doc/guix.texi:27811 +#: guix-git/doc/guix.texi:28148 #, no-wrap msgid "@code{nsec3?} (default: @code{#f})" msgstr "@code{nsec3?} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:27813 +#: guix-git/doc/guix.texi:28150 msgid "When @code{#t}, NSEC3 will be used instead of NSEC." msgstr "Si es @code{#t}, se usa NSEC3 en vez de NSEC." #. type: item -#: guix-git/doc/guix.texi:27814 +#: guix-git/doc/guix.texi:28151 #, no-wrap msgid "@code{nsec3-iterations} (default: @code{5})" msgstr "@code{nsec3-iterations} (predeterminado: @code{5})" # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:27816 +#: guix-git/doc/guix.texi:28153 msgid "The number of additional times the hashing is performed." msgstr "Número de ejecuciones adicionales de la operación de hash." #. type: item -#: guix-git/doc/guix.texi:27817 +#: guix-git/doc/guix.texi:28154 #, no-wrap msgid "@code{nsec3-salt-length} (default: @code{8})" msgstr "@code{nsec3-salt-length} (predeterminado: @code{8})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:27820 +#: guix-git/doc/guix.texi:28157 msgid "The length of a salt field in octets, which is appended to the original owner name before hashing." msgstr "La longitud del campo ``salt'' en octetos, que se añade al nombre de la propietaria original antes de ejecutar la operación de hash." #. type: item -#: guix-git/doc/guix.texi:27821 +#: guix-git/doc/guix.texi:28158 #, no-wrap msgid "@code{nsec3-salt-lifetime} (default: @code{(* 30 24 3600)})" msgstr "@code{nsec3-salt-lifetime} (predeterminado: @code{(* 30 24 3600)})" # FUZZY FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:27823 +#: guix-git/doc/guix.texi:28160 msgid "The validity period of newly issued salt field." msgstr "El periodo de validez de los campos ``salt'' que se generen." #. type: deftp -#: guix-git/doc/guix.texi:27827 +#: guix-git/doc/guix.texi:28164 #, no-wrap msgid "{Data Type} knot-zone-configuration" msgstr "{Tipo de datos} knot-zone-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27830 +#: guix-git/doc/guix.texi:28167 msgid "Data type representing a zone served by Knot. This type has the following parameters:" msgstr "Tipo de datos que representa una zona ofrecida por Knot. Este tipo tiene los siguientes parámetros:" #. type: item -#: guix-git/doc/guix.texi:27832 +#: guix-git/doc/guix.texi:28169 #, no-wrap msgid "@code{domain} (default: @code{\"\"})" msgstr "@code{domain} (predeterminado: @code{\"\"})" # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:27834 +#: guix-git/doc/guix.texi:28171 msgid "The domain served by this configuration. It must not be empty." msgstr "El dominio ofrecido con esta configuración. No debe estar vacío." #. type: item -#: guix-git/doc/guix.texi:27835 +#: guix-git/doc/guix.texi:28172 #, no-wrap msgid "@code{file} (default: @code{\"\"})" msgstr "@code{file} (predeterminado: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:27838 +#: guix-git/doc/guix.texi:28175 msgid "The file where this zone is saved. This parameter is ignored by master zones. Empty means default location that depends on the domain name." msgstr "El archivo donde se almacena esta zona. Este parámetro se ignora para zonas maestras. Vacío significa la ruta predeterminada que depende del nombre del dominio." #. type: item -#: guix-git/doc/guix.texi:27839 +#: guix-git/doc/guix.texi:28176 #, no-wrap msgid "@code{zone} (default: @code{(zone-file)})" msgstr "@code{zone} (predeterminado: @code{(zone-file)})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:27842 +#: guix-git/doc/guix.texi:28179 msgid "The content of the zone file. This parameter is ignored by slave zones. It must contain a zone-file record." msgstr "El contenido del archivo de zona. Este parámetro se ignora para zonas esclavas. Debe contener un registro de archivo de zona." #. type: item -#: guix-git/doc/guix.texi:27843 +#: guix-git/doc/guix.texi:28180 #, no-wrap msgid "@code{master} (default: @code{'()})" msgstr "@code{master} (predeterminado: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27846 +#: guix-git/doc/guix.texi:28183 msgid "A list of master remotes. When empty, this zone is a master. When set, this zone is a slave. This is a list of remotes identifiers." msgstr "Lista de maestros remotos. Cuando está vacía, esta zona es maestra. Cuando tiene contenido, esta zona es esclava. Es una lista de identificadores remotos." #. type: item -#: guix-git/doc/guix.texi:27847 +#: guix-git/doc/guix.texi:28184 #, no-wrap msgid "@code{ddns-master} (default: @code{#f})" msgstr "@code{ddns-master} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27850 +#: guix-git/doc/guix.texi:28187 msgid "The main master. When empty, it defaults to the first master in the list of masters." msgstr "Maestro principal. Cuando está vacío, apunta de manera predeterminada al primer maestro en la lista de maestros." #. type: item -#: guix-git/doc/guix.texi:27851 +#: guix-git/doc/guix.texi:28188 #, no-wrap msgid "@code{notify} (default: @code{'()})" msgstr "@code{notify} (predeterminado: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27853 +#: guix-git/doc/guix.texi:28190 msgid "A list of slave remote identifiers." msgstr "Una lista de identificadores remotos de esclavos." #. type: item -#: guix-git/doc/guix.texi:27854 +#: guix-git/doc/guix.texi:28191 #, no-wrap msgid "@code{acl} (default: @code{'()})" msgstr "@code{acl} (predeterminado: @code{'()})" # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:27856 +#: guix-git/doc/guix.texi:28193 msgid "A list of acl identifiers." msgstr "Lista de identificadores acl." #. type: item -#: guix-git/doc/guix.texi:27857 +#: guix-git/doc/guix.texi:28194 #, no-wrap msgid "@code{semantic-checks?} (default: @code{#f})" msgstr "@code{semantic-checks?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27859 +#: guix-git/doc/guix.texi:28196 msgid "When set, this adds more semantic checks to the zone." msgstr "Cuando es verdadero, añade más comprobaciones semánticas a la zona." #. type: item -#: guix-git/doc/guix.texi:27860 +#: guix-git/doc/guix.texi:28197 #, no-wrap msgid "@code{zonefile-sync} (default: @code{0})" msgstr "@code{zonefile-sync} (predeterminado: @code{0})" #. type: table -#: guix-git/doc/guix.texi:27863 +#: guix-git/doc/guix.texi:28200 msgid "The delay between a modification in memory and on disk. 0 means immediate synchronization." msgstr "El retraso entre una modificación en memoria y en disco. 0 significa sincronización inmediata." #. type: item -#: guix-git/doc/guix.texi:27864 +#: guix-git/doc/guix.texi:28201 #, no-wrap msgid "@code{zonefile-load} (default: @code{#f})" msgstr "@code{zonefile-load} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27867 +#: guix-git/doc/guix.texi:28204 msgid "The way the zone file contents are applied during zone load. Possible values are:" msgstr "La forma en la que los contenidos del archivo de zona se aplican durante la carga de la zona. Los valores posibles son:" #. type: item -#: guix-git/doc/guix.texi:27869 +#: guix-git/doc/guix.texi:28206 #, no-wrap msgid "@code{#f} for using the default value from Knot," msgstr "@code{#f} para obtener el valor predeterminado de Knot," #. type: item -#: guix-git/doc/guix.texi:27870 +#: guix-git/doc/guix.texi:28207 #, no-wrap msgid "@code{'none} for not using the zone file at all," msgstr "@code{'none} para no usar el archivo de zona en absoluto," #. type: item -#: guix-git/doc/guix.texi:27871 +#: guix-git/doc/guix.texi:28208 #, no-wrap msgid "@code{'difference} for computing the difference between already available" msgstr "@code{'difference} para calcular la diferencia entre los contenidos disponibles" #. type: itemize -#: guix-git/doc/guix.texi:27873 +#: guix-git/doc/guix.texi:28210 msgid "contents and zone contents and applying it to the current zone contents," msgstr "actualmente y los contenidos de la zona y los aplica a los contenidos actuales de la zona actual," #. type: item -#: guix-git/doc/guix.texi:27873 +#: guix-git/doc/guix.texi:28210 #, no-wrap msgid "@code{'difference-no-serial} for the same as @code{'difference}, but" msgstr "@code{'difference-no-serial} es igual que @code{'difference}, pero" #. type: itemize -#: guix-git/doc/guix.texi:27876 +#: guix-git/doc/guix.texi:28213 msgid "ignoring the SOA serial in the zone file, while the server takes care of it automatically." msgstr "ignora el código serie SOA en el archivo de zona, mientras que el servidor se hace cargo de él de manera automática." #. type: item -#: guix-git/doc/guix.texi:27876 +#: guix-git/doc/guix.texi:28213 #, no-wrap msgid "@code{'whole} for loading zone contents from the zone file." msgstr "@code{'whole} para cargar los contenidos de la zona del archivo de zona." #. type: item -#: guix-git/doc/guix.texi:27879 +#: guix-git/doc/guix.texi:28216 #, no-wrap msgid "@code{journal-content} (default: @code{#f})" msgstr "@code{journal-content} (predeterminado: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27884 +#: guix-git/doc/guix.texi:28221 msgid "The way the journal is used to store zone and its changes. Possible values are @code{'none} to not use it at all, @code{'changes} to store changes and @code{'all} to store contents. @code{#f} does not set this option, so the default value from Knot is used." msgstr "La forma en la que se usa el diario para almacenar la zona y sus cambios. Los posibles valores son @code{'none} para no usarlo en absoluto, @code{'changes} para almacenar los cambios y @code{'all} para almacenar los contenidos. @code{#f} proporciona un valor a esta opción, por lo que se usa el valor predeterminado de Knot." #. type: item -#: guix-git/doc/guix.texi:27885 +#: guix-git/doc/guix.texi:28222 #, no-wrap msgid "@code{max-journal-usage} (default: @code{#f})" msgstr "@code{max-journal-usage} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27888 +#: guix-git/doc/guix.texi:28225 msgid "The maximum size for the journal on disk. @code{#f} does not set this option, so the default value from Knot is used." msgstr "Tamaño máximo del diario en disco. @code{#f} no proporciona un valor a esta opción, por lo que se usa el valor predeterminado de Knot." #. type: item -#: guix-git/doc/guix.texi:27889 +#: guix-git/doc/guix.texi:28226 #, no-wrap msgid "@code{max-journal-depth} (default: @code{#f})" msgstr "@code{max-journal-depth} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27892 +#: guix-git/doc/guix.texi:28229 msgid "The maximum size of the history. @code{#f} does not set this option, so the default value from Knot is used." msgstr "Tamaño máximo de la historia. @code{#f} proporciona un valor a esta opción, por lo que se usa el valor predeterminado de Knot." #. type: item -#: guix-git/doc/guix.texi:27893 +#: guix-git/doc/guix.texi:28230 #, no-wrap msgid "@code{max-zone-size} (default: @code{#f})" msgstr "@code{max-zone-size} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27897 +#: guix-git/doc/guix.texi:28234 msgid "The maximum size of the zone file. This limit is enforced for incoming transfer and updates. @code{#f} does not set this option, so the default value from Knot is used." msgstr "Tamaño máximo del archivo de zona. Este límite se usa para transferencias entrantes y actualizaciones. @code{#f} no proporciona un valor a esta opción, por lo que se usa el valor predeterminado de Knot." #. type: item -#: guix-git/doc/guix.texi:27898 +#: guix-git/doc/guix.texi:28235 #, no-wrap msgid "@code{dnssec-policy} (default: @code{#f})" msgstr "@code{dnssec-policy} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27902 +#: guix-git/doc/guix.texi:28239 msgid "A reference to a @code{knot-policy-configuration} record, or the special name @code{\"default\"}. If the value is @code{#f}, there is no dnssec signing on this zone." msgstr "Una referencia a un registro de @code{knot-policy-configuration}, o el nombre especial @code{\"default\"}. Si el valor es @code{#f}, no se realiza firma dnssec en esta zona." #. type: item -#: guix-git/doc/guix.texi:27903 +#: guix-git/doc/guix.texi:28240 #, no-wrap msgid "@code{serial-policy} (default: @code{'increment})" msgstr "@code{serial-policy} (predeterminado: @code{'increment})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:27905 +#: guix-git/doc/guix.texi:28242 msgid "A policy between @code{'increment} and @code{'unixtime}." msgstr "Una política entre @code{'increment} y @code{'unixtime}." #. type: deftp -#: guix-git/doc/guix.texi:27909 +#: guix-git/doc/guix.texi:28246 #, no-wrap msgid "{Data Type} knot-configuration" msgstr "{Tipo de datos} knot-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27912 +#: guix-git/doc/guix.texi:28249 msgid "Data type representing the Knot configuration. This type has the following parameters:" msgstr "Tipo de datos que representa la configuración Knot. Este tipo tiene los siguientes parámetros:" #. type: item -#: guix-git/doc/guix.texi:27914 +#: guix-git/doc/guix.texi:28251 #, no-wrap msgid "@code{knot} (default: @code{knot})" msgstr "@code{knot} (predeterminado: @code{knot})" #. type: table -#: guix-git/doc/guix.texi:27916 +#: guix-git/doc/guix.texi:28253 msgid "The Knot package." msgstr "El paquete Knot." #. type: item -#: guix-git/doc/guix.texi:27917 +#: guix-git/doc/guix.texi:28254 #, no-wrap msgid "@code{run-directory} (default: @code{\"/var/run/knot\"})" msgstr "@code{run-directory} (predeterminado: @code{\"/var/run/knot\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:27919 +#: guix-git/doc/guix.texi:28256 msgid "The run directory. This directory will be used for pid file and sockets." msgstr "El directorio de ejecución. Este directorio se usará para los archivos de PID y de sockets." #. type: item -#: guix-git/doc/guix.texi:27920 +#: guix-git/doc/guix.texi:28257 #, no-wrap msgid "@code{includes} (default: @code{'()})" msgstr "@code{includes} (predeterminada: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27923 +#: guix-git/doc/guix.texi:28260 msgid "A list of strings or file-like objects denoting other files that must be included at the top of the configuration file." msgstr "Una lista de cadenas u objetos ``tipo-archivo'' que denota otros archivos que deben incluirse al inicio del archivo de configuración." #. type: cindex -#: guix-git/doc/guix.texi:27924 +#: guix-git/doc/guix.texi:28261 #, no-wrap msgid "secrets, Knot service" msgstr "secretos, servicio Knot" #. type: table -#: guix-git/doc/guix.texi:27930 +#: guix-git/doc/guix.texi:28267 msgid "This can be used to manage secrets out-of-band. For example, secret keys may be stored in an out-of-band file not managed by Guix, and thus not visible in @file{/gnu/store}---e.g., you could store secret key configuration in @file{/etc/knot/secrets.conf} and add this file to the @code{includes} list." msgstr "Puede usarse para gestionar secretos en un canal separado. Por ejemplo, las claves secretas pueden almacenarse en un archivo fuera de banda no gestionado por Guix, y por tanto no visible en @file{/gnu/store}---por ejemplo, puede almacenar su configuración de clave secreta en @file{/etc/knot/secrets.conf} e incluir este archivo en la lista @code{includes}." # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:27935 +#: guix-git/doc/guix.texi:28272 msgid "One can generate a secret tsig key (for nsupdate and zone transfers with the keymgr command from the knot package. Note that the package is not automatically installed by the service. The following example shows how to generate a new tsig key:" msgstr "Se puede generar una clave secreta tsig (para nsupdate y transferencias de zona) con la orden keymgr del paquete knot. Tenga en cuenta que el paquete no se instala automáticamente con el servicio. El ejemplo siguiente muestra como generar una clave tsig nueva:" #. type: example -#: guix-git/doc/guix.texi:27939 +#: guix-git/doc/guix.texi:28276 #, no-wrap msgid "" "keymgr -t mysecret > /etc/knot/secrets.conf\n" @@ -54696,106 +55435,106 @@ msgstr "" "chmod 600 /etc/knot/secrets.conf\n" #. type: table -#: guix-git/doc/guix.texi:27945 +#: guix-git/doc/guix.texi:28282 msgid "Also note that the generated key will be named @var{mysecret}, so it is the name that needs to be used in the @var{key} field of the @code{knot-acl-configuration} record and in other places that need to refer to that key." msgstr "Tenga también en cuenta que la clave generada se llamará @var{misecreto}, de modo que ese nombre es el que debe usarse en el campo @var{key} del registro @code{knot-acl-configuration} y en otros lugares que hagan referencia a esa clave." #. type: table -#: guix-git/doc/guix.texi:27947 +#: guix-git/doc/guix.texi:28284 msgid "It can also be used to add configuration not supported by this interface." msgstr "También puede usarse para añadir configuración no implementada por esta interfaz." #. type: item -#: guix-git/doc/guix.texi:27948 +#: guix-git/doc/guix.texi:28285 #, no-wrap msgid "@code{listen-v4} (default: @code{\"0.0.0.0\"})" msgstr "@code{listen-v4} (predeterminada: @code{\"0.0.0.0\"})" #. type: table -#: guix-git/doc/guix.texi:27950 guix-git/doc/guix.texi:27953 +#: guix-git/doc/guix.texi:28287 guix-git/doc/guix.texi:28290 msgid "An ip address on which to listen." msgstr "La dirección IP en la que escuchar." #. type: item -#: guix-git/doc/guix.texi:27951 +#: guix-git/doc/guix.texi:28288 #, no-wrap msgid "@code{listen-v6} (default: @code{\"::\"})" msgstr "@code{listen-v6} (predeterminada: @code{\"::\"})" #. type: item -#: guix-git/doc/guix.texi:27954 +#: guix-git/doc/guix.texi:28291 #, no-wrap msgid "@code{listen-port} (default: @code{53})" msgstr "@code{listen-port} (predeterminado: @code{53})" #. type: table -#: guix-git/doc/guix.texi:27956 +#: guix-git/doc/guix.texi:28293 msgid "A port on which to listen." msgstr "El puerto en el que escuchar." #. type: item -#: guix-git/doc/guix.texi:27957 +#: guix-git/doc/guix.texi:28294 #, no-wrap msgid "@code{keys} (default: @code{'()})" msgstr "@code{keys} (predeterminada: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27959 +#: guix-git/doc/guix.texi:28296 msgid "The list of knot-key-configuration used by this configuration." msgstr "La lista de configuraciones knot-key-configuration usadas por esta configuración." #. type: item -#: guix-git/doc/guix.texi:27960 +#: guix-git/doc/guix.texi:28297 #, no-wrap msgid "@code{acls} (default: @code{'()})" msgstr "@code{acls} (predeterminado: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27962 +#: guix-git/doc/guix.texi:28299 msgid "The list of knot-acl-configuration used by this configuration." msgstr "La lista de configuraciones knot-acl-configuration usadas por esta configuración." #. type: item -#: guix-git/doc/guix.texi:27963 +#: guix-git/doc/guix.texi:28300 #, no-wrap msgid "@code{remotes} (default: @code{'()})" msgstr "@code{remotes} (predeterminada: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27965 +#: guix-git/doc/guix.texi:28302 msgid "The list of knot-remote-configuration used by this configuration." msgstr "La lista de configuraciones knot-remote-configuration usadas por esta configuración." #. type: item -#: guix-git/doc/guix.texi:27966 +#: guix-git/doc/guix.texi:28303 #, no-wrap msgid "@code{zones} (default: @code{'()})" msgstr "@code{zones} (predeterminada: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27968 +#: guix-git/doc/guix.texi:28305 msgid "The list of knot-zone-configuration used by this configuration." msgstr "La lista de configuraciones knot-zone-configuration usadas por esta configuración." #. type: subsubheading -#: guix-git/doc/guix.texi:27972 +#: guix-git/doc/guix.texi:28309 #, no-wrap msgid "Knot Resolver Service" msgstr "Servicio de resolución de Knot" #. type: deffn -#: guix-git/doc/guix.texi:27974 +#: guix-git/doc/guix.texi:28311 #, no-wrap msgid "{Scheme Variable} knot-resolver-service-type" msgstr "{Variable Scheme} knot-resolver-service-type" #. type: deffn -#: guix-git/doc/guix.texi:27977 +#: guix-git/doc/guix.texi:28314 msgid "This is the type of the knot resolver service, whose value should be an @code{knot-resolver-configuration} object as in this example:" msgstr "El tipo del servicio de resolución de knot, cuyo valor debe ser un objeto @code{knot-resolver-configuration} como en este ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:27987 +#: guix-git/doc/guix.texi:28324 #, no-wrap msgid "" "(service knot-resolver-service-type\n" @@ -54817,74 +55556,74 @@ msgstr "" "\"))))\n" #. type: deffn -#: guix-git/doc/guix.texi:27990 +#: guix-git/doc/guix.texi:28327 msgid "For more information, refer its @url{https://knot-resolver.readthedocs.org/en/stable/daemon.html#configuration, manual}." msgstr "Para más información, véase su @url{https://knot-resolver.readthedocs.org/en/stable/daemon.html#configuration, manual}." #. type: deftp -#: guix-git/doc/guix.texi:27992 +#: guix-git/doc/guix.texi:28329 #, no-wrap msgid "{Data Type} knot-resolver-configuration" msgstr "{Tipo de datos} knot-resolver-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27994 +#: guix-git/doc/guix.texi:28331 msgid "Data type representing the configuration of knot-resolver." msgstr "Tipo de datos que representa la configuración de knot-resolver." #. type: item -#: guix-git/doc/guix.texi:27996 +#: guix-git/doc/guix.texi:28333 #, no-wrap msgid "@code{package} (default: @var{knot-resolver})" msgstr "@code{package} (predeterminado: @var{knot-resolver})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:27998 +#: guix-git/doc/guix.texi:28335 msgid "Package object of the knot DNS resolver." msgstr "El objeto paquete de la resolución de DNS de knot." #. type: item -#: guix-git/doc/guix.texi:27999 +#: guix-git/doc/guix.texi:28336 #, no-wrap msgid "@code{kresd-config-file} (default: %kresd.conf)" msgstr "@code{kresd-config-file} (predeterminado: %kresd.conf)" #. type: table -#: guix-git/doc/guix.texi:28002 +#: guix-git/doc/guix.texi:28339 msgid "File-like object of the kresd configuration file to use, by default it will listen on @code{127.0.0.1} and @code{::1}." msgstr "Objeto ``tipo-archivo'' con el archivo de configuración de kresd usado, de manera predeterminada escucha en @code{127.0.0.1} y @code{::1}." #. type: item -#: guix-git/doc/guix.texi:28003 +#: guix-git/doc/guix.texi:28340 #, no-wrap msgid "@code{garbage-collection-interval} (default: 1000)" msgstr "@code{garbage-collection-interval} (predeterminado: 1000)" #. type: table -#: guix-git/doc/guix.texi:28005 +#: guix-git/doc/guix.texi:28342 msgid "Number of milliseconds for @code{kres-cache-gc} to periodically trim the cache." msgstr "Número de milisegundos tras los que @code{kres-cache-gc} realiza una limpieza periódica de la caché." #. type: subsubheading -#: guix-git/doc/guix.texi:28010 +#: guix-git/doc/guix.texi:28347 #, no-wrap msgid "Dnsmasq Service" msgstr "Servicio Dnsmasq" #. type: deffn -#: guix-git/doc/guix.texi:28012 +#: guix-git/doc/guix.texi:28349 #, no-wrap msgid "{Scheme Variable} dnsmasq-service-type" msgstr "{Variable Scheme} dnsmasq-service-type" #. type: deffn -#: guix-git/doc/guix.texi:28015 +#: guix-git/doc/guix.texi:28352 msgid "This is the type of the dnsmasq service, whose value should be an @code{dnsmasq-configuration} object as in this example:" msgstr "Es el tipo del servicio dnsmasq, cuyo valor debe ser un objeto @code{dnsmasq-configuration} como en este ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:28021 +#: guix-git/doc/guix.texi:28358 #, no-wrap msgid "" "(service dnsmasq-service-type\n" @@ -54898,73 +55637,73 @@ msgstr "" " (servers '(\"192.168.1.1\"))))\n" #. type: deftp -#: guix-git/doc/guix.texi:28024 +#: guix-git/doc/guix.texi:28361 #, no-wrap msgid "{Data Type} dnsmasq-configuration" msgstr "{Tipo de datos} dnsmasq-configuration" #. type: deftp -#: guix-git/doc/guix.texi:28026 +#: guix-git/doc/guix.texi:28363 msgid "Data type representing the configuration of dnsmasq." msgstr "Tipo de datos que representa la configuración de dnsmasq." #. type: item -#: guix-git/doc/guix.texi:28028 +#: guix-git/doc/guix.texi:28365 #, no-wrap msgid "@code{package} (default: @var{dnsmasq})" msgstr "@code{package} (predeterminado: @var{dnsmasq})" #. type: table -#: guix-git/doc/guix.texi:28030 +#: guix-git/doc/guix.texi:28367 msgid "Package object of the dnsmasq server." msgstr "El objeto paquete del servidor dnsmasq." #. type: item -#: guix-git/doc/guix.texi:28031 +#: guix-git/doc/guix.texi:28368 #, no-wrap msgid "@code{no-hosts?} (default: @code{#f})" msgstr "@code{no-hosts?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28033 +#: guix-git/doc/guix.texi:28370 msgid "When true, don't read the hostnames in /etc/hosts." msgstr "Cuando es verdadero, no lee los nombres de máquina en /etc/hosts." #. type: item -#: guix-git/doc/guix.texi:28034 +#: guix-git/doc/guix.texi:28371 #, no-wrap msgid "@code{port} (default: @code{53})" msgstr "@code{port} (predeterminado: @code{53})" #. type: table -#: guix-git/doc/guix.texi:28037 +#: guix-git/doc/guix.texi:28374 msgid "The port to listen on. Setting this to zero completely disables DNS responses, leaving only DHCP and/or TFTP functions." msgstr "El puerto sobre el que se escucha. Proporcionar el valor cero deshabilita las respuestas DNS completamente, dejando las funciones DHCP y/o TFTP únicamente." #. type: item -#: guix-git/doc/guix.texi:28038 +#: guix-git/doc/guix.texi:28375 #, no-wrap msgid "@code{local-service?} (default: @code{#t})" msgstr "@code{local-service?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:28041 +#: guix-git/doc/guix.texi:28378 msgid "Accept DNS queries only from hosts whose address is on a local subnet, ie a subnet for which an interface exists on the server." msgstr "Acepta peticiones DNS únicamente de máquinas cuya dirección esté en una subred local, es decir, subred para la que existe una interfaz en el servidor." #. type: item -#: guix-git/doc/guix.texi:28042 +#: guix-git/doc/guix.texi:28379 #, no-wrap msgid "@code{listen-addresses} (default: @code{'()})" msgstr "@code{listen-addresses} (predeterminadas: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:28044 +#: guix-git/doc/guix.texi:28381 msgid "Listen on the given IP addresses." msgstr "Escucha en las direcciones IP proporcionadas." #. type: item -#: guix-git/doc/guix.texi:28045 +#: guix-git/doc/guix.texi:28382 #, no-wrap msgid "@code{resolv-file} (default: @code{\"/etc/resolv.conf\"})" msgstr "@code{resolv-file} (predeterminado: @code{\"/etc/resolv.conf\"})" @@ -54972,50 +55711,50 @@ msgstr "@code{resolv-file} (predeterminado: @code{\"/etc/resolv.conf\"})" # FUZZY # TODO!!! #. type: table -#: guix-git/doc/guix.texi:28047 +#: guix-git/doc/guix.texi:28384 msgid "The file to read the IP address of the upstream nameservers from." msgstr "Archivo en el que se obtienen las direcciones IP de los servidores de nombres desde los que se obtienen datos." #. type: item -#: guix-git/doc/guix.texi:28048 +#: guix-git/doc/guix.texi:28385 #, no-wrap msgid "@code{no-resolv?} (default: @code{#f})" msgstr "@code{no-resolv?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28050 +#: guix-git/doc/guix.texi:28387 msgid "When true, don't read @var{resolv-file}." msgstr "Cuando tiene valor verdadero, no se lee @var{resolv-file}." #. type: item -#: guix-git/doc/guix.texi:28051 +#: guix-git/doc/guix.texi:28388 #, no-wrap msgid "@code{servers} (default: @code{'()})" msgstr "@code{servers} (predeterminados: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:28053 +#: guix-git/doc/guix.texi:28390 msgid "Specify IP address of upstream servers directly." msgstr "Especifica directamente la dirección IP de los servidores proveedores." #. type: item -#: guix-git/doc/guix.texi:28054 +#: guix-git/doc/guix.texi:28391 #, no-wrap msgid "@code{addresses} (default: @code{'()})" msgstr "@code{addresses} (predeterminado: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:28058 +#: guix-git/doc/guix.texi:28395 msgid "For each entry, specify an IP address to return for any host in the given domains. Queries in the domains are never forwarded and always replied to with the specified IP address." msgstr "Cada entrada especifica una dirección IP devuelta por cualquiera de las máquinas en los dominios proporcionados. Las búsquedas dentro de los dominios nunca se redirigen y siempre se devuelve la dirección IP especificada." #. type: table -#: guix-git/doc/guix.texi:28060 +#: guix-git/doc/guix.texi:28397 msgid "This is useful for redirecting hosts locally, for example:" msgstr "Es útil para redirigir máquinas localmente, como en este ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:28069 +#: guix-git/doc/guix.texi:28406 #, no-wrap msgid "" "(service dnsmasq-service-type\n" @@ -55036,1024 +55775,1024 @@ msgstr "" # FUZZY #. type: table -#: guix-git/doc/guix.texi:28072 +#: guix-git/doc/guix.texi:28409 msgid "Note that rules in @file{/etc/hosts} take precedence over this." msgstr "Tenga en cuenta que las reglas en el archivo @file{/etc/hosts} tienen precedencia sobre esto." #. type: item -#: guix-git/doc/guix.texi:28073 +#: guix-git/doc/guix.texi:28410 #, no-wrap msgid "@code{cache-size} (default: @code{150})" msgstr "@code{cache-size} (predeterminado: @code{150})" #. type: table -#: guix-git/doc/guix.texi:28076 +#: guix-git/doc/guix.texi:28413 msgid "Set the size of dnsmasq's cache. Setting the cache size to zero disables caching." msgstr "Establece el tamaño de la caché de dnsmasq. Proporcionar el valor cero desactiva el almacenamiento en caché." #. type: item -#: guix-git/doc/guix.texi:28077 +#: guix-git/doc/guix.texi:28414 #, no-wrap msgid "@code{negative-cache?} (default: @code{#t})" msgstr "@code{negative-cache?} (predeterminado: @code{#t})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:28079 +#: guix-git/doc/guix.texi:28416 msgid "When false, disable negative caching." msgstr "Cuando es falso, desactiva la caché negativa." #. type: item -#: guix-git/doc/guix.texi:28080 +#: guix-git/doc/guix.texi:28417 #, no-wrap msgid "@code{tftp-enable?} (default: @code{#f})" msgstr "@code{tftp-enable?} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:28082 +#: guix-git/doc/guix.texi:28419 msgid "Whether to enable the built-in TFTP server." msgstr "Determina si se activa el servidor TFTP incluido." #. type: item -#: guix-git/doc/guix.texi:28083 +#: guix-git/doc/guix.texi:28420 #, no-wrap msgid "@code{tftp-no-fail?} (default: @code{#f})" msgstr "@code{tftp-no-fail?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28085 +#: guix-git/doc/guix.texi:28422 msgid "If true, does not fail dnsmasq if the TFTP server could not start up." msgstr "Si es verdadero, dnsmasq no falla si el servidor TFTP no se ha podido arrancar." #. type: item -#: guix-git/doc/guix.texi:28086 +#: guix-git/doc/guix.texi:28423 #, no-wrap msgid "@code{tftp-single-port?} (default: @code{#f})" msgstr "@code{tftp-single-port?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28088 +#: guix-git/doc/guix.texi:28425 msgid "Whether to use only one single port for TFTP." msgstr "Determina si se un único puerto para TFTP." #. type: item -#: guix-git/doc/guix.texi:28089 +#: guix-git/doc/guix.texi:28426 #, no-wrap msgid "@code{tftp-secure?} (default: @code{#f})" msgstr "@code{tftp-secure?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28091 +#: guix-git/doc/guix.texi:28428 msgid "If true, only files owned by the user running the dnsmasq process are accessible." msgstr "Si es verdadero, únicamente los archivos propiedad de la cuenta que ejecuta el proceso dnsmasq están accesibles." #. type: table -#: guix-git/doc/guix.texi:28095 +#: guix-git/doc/guix.texi:28432 msgid "If dnsmasq is being run as root, different rules apply: @code{tftp-secure?} has no effect, but only files which have the world-readable bit set are accessible." msgstr "Si se ejecuta dnsmasq como ``root'', se aplican diferentes reglas: @code{tftp-secure?} no tiene efecto, únicamente los archivos que tengan permiso de lectura global el mundo serán accesibles." #. type: item -#: guix-git/doc/guix.texi:28096 +#: guix-git/doc/guix.texi:28433 #, no-wrap msgid "@code{tftp-max} (default: @code{#f})" msgstr "@code{tftp-max} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28098 +#: guix-git/doc/guix.texi:28435 msgid "If set, sets the maximal number of concurrent connections allowed." msgstr "Cuando se proporciona un valor indica el número máximo de conexiones simultáneas permitidas." #. type: item -#: guix-git/doc/guix.texi:28099 +#: guix-git/doc/guix.texi:28436 #, no-wrap msgid "@code{tftp-mtu} (default: @code{#f})" msgstr "@code{tftp-mtu} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28101 +#: guix-git/doc/guix.texi:28438 msgid "If set, sets the MTU for TFTP packets to that value." msgstr "Si se proporciona un valor, establece el tamaño de la unidad de transmisión de mensajes (MTU) para los paquetes TFTP a dicho valor." #. type: item -#: guix-git/doc/guix.texi:28102 +#: guix-git/doc/guix.texi:28439 #, no-wrap msgid "@code{tftp-no-blocksize?} (default: @code{#f})" msgstr "@code{tftp-no-blocksize?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28104 +#: guix-git/doc/guix.texi:28441 msgid "If true, stops the TFTP server from negotiating the blocksize with a client." msgstr "Si es verdadero, impide al servidor TFTP la negociación del tamaño del bloque con un cliente." #. type: item -#: guix-git/doc/guix.texi:28105 +#: guix-git/doc/guix.texi:28442 #, no-wrap msgid "@code{tftp-lowercase?} (default: @code{#f})" msgstr "@code{tftp-lowercase?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28107 +#: guix-git/doc/guix.texi:28444 msgid "Whether to convert all filenames in TFTP requests to lowercase." msgstr "Determina si se convierten a minúsculas todos los nombres de archivo en peticiones TFTP." #. type: item -#: guix-git/doc/guix.texi:28108 +#: guix-git/doc/guix.texi:28445 #, no-wrap msgid "@code{tftp-port-range} (default: @code{#f})" msgstr "@code{tftp-port-range} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28111 +#: guix-git/doc/guix.texi:28448 msgid "If set, fixes the dynamical ports (one per client) to the given range (@code{\",\"})." msgstr "Si se proporciona un valor, este establece el rango (@code{\",\"}) de puertos dinámicos (uno por cliente) usados." #. type: item -#: guix-git/doc/guix.texi:28112 +#: guix-git/doc/guix.texi:28449 #, no-wrap msgid "@code{tftp-root} (default: @code{/var/empty,lo})" msgstr "@code{tftp-root} (predeterminado: @code{/var/empty,lo})" #. type: table -#: guix-git/doc/guix.texi:28119 +#: guix-git/doc/guix.texi:28456 #, fuzzy msgid "Look for files to transfer using TFTP relative to the given directory. When this is set, TFTP paths which include @samp{..} are rejected, to stop clients getting outside the specified root. Absolute paths (starting with @samp{/}) are allowed, but they must be within the TFTP-root. If the optional interface argument is given, the directory is only used for TFTP requests via that interface." msgstr "Busca archivos a transferir usando TFTP de manera relativa a dicho directorio. Cuando se proporcione un valor, las rutas TFTP que incluyan \"..\" se rechazan, para evitar que los clientes accedan fuera de la raíz especificada. Las rutas absolutas (cuyo inicio es /) se permiten, pero deben apuntar dentro de @code{tftp-root}. Si se proporciona el parámetro opcional de interfaz, el directorio se usa únicamente para las peticiones TFTP a través de dicha interfaz." #. type: item -#: guix-git/doc/guix.texi:28120 +#: guix-git/doc/guix.texi:28457 #, no-wrap msgid "@code{tftp-unique-root} (default: @code{#f})" msgstr "@code{tftp-unique-root} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28125 +#: guix-git/doc/guix.texi:28462 msgid "If set, add the IP or hardware address of the TFTP client as a path component on the end of the TFTP-root. Only valid if a TFTP root is set and the directory exists. Defaults to adding IP address (in standard dotted-quad format)." msgstr "Si se proporciona un valor, añade la dirección IP o hardware del cliente TFTP como un componente de la ruta tras el final de @code{tftp-root}. Es válido únicamente si se proporciona una raíz para TFTP y el directorio existe. El valor predeterminado añade la dirección IP (en el formato estándar de cuatro cifras separadas por puntos)." # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:28134 +#: guix-git/doc/guix.texi:28471 #, fuzzy msgid "For instance, if @option{--tftp-root} is @samp{/tftp} and client @samp{1.2.3.4} requests file @file{myfile} then the effective path will be @file{/tftp/1.2.3.4/myfile} if @file{/tftp/1.2.3.4} exists or @file{/tftp/myfile} otherwise. When @samp{=mac} is specified it will append the MAC address instead, using lowercase zero padded digits separated by dashes, e.g.: @samp{01-02-03-04-aa-bb}. Note that resolving MAC addresses is only possible if the client is in the local network or obtained a DHCP lease from dnsmasq." msgstr "Por ejmplo, si --tftp-root es \"/tftp\" y el cliente 1.2.3.4 solicita el archivo \"miarchivo\" la ruta efectiva sería \"/tftp/1.2.3.4/miarchivo\" si /tftp/1.2.3.4 existe o \"/tftp/miarchivo\" en otro caso. Cuando se especifica \"=mac\" se añade la dirección MAC en vez de la IP, usando pares de dígitos (usando 0 si es necesario) separados por guiones, por ejemplo: 01-02-03-04-aa-bb. Tenga en cuenta que la resolución de direcciones MAC es posible únicamente si el cliente está en la red local o ha obtenido una cesión DHCP de dnsmasq." #. type: subsubheading -#: guix-git/doc/guix.texi:28138 +#: guix-git/doc/guix.texi:28475 #, no-wrap msgid "ddclient Service" msgstr "Servicio ddclient" #. type: cindex -#: guix-git/doc/guix.texi:28140 +#: guix-git/doc/guix.texi:28477 #, no-wrap msgid "ddclient" msgstr "ddclient" #. type: Plain text -#: guix-git/doc/guix.texi:28144 +#: guix-git/doc/guix.texi:28481 msgid "The ddclient service described below runs the ddclient daemon, which takes care of automatically updating DNS entries for service providers such as @uref{https://dyn.com/dns/, Dyn}." msgstr "El servicio de ddclient descrito a continuación ejecuta el daemon ddclient, que se encarga de actualizar automáticamente entradas DNS para proveedores de servicio como @uref{https://dyn.com/dns/, Dyn}." #. type: Plain text -#: guix-git/doc/guix.texi:28147 +#: guix-git/doc/guix.texi:28484 msgid "The following example show instantiates the service with its default configuration:" msgstr "El ejemplo siguiente muestra como instanciar el servicio con su configuración predeterminada." #. type: lisp -#: guix-git/doc/guix.texi:28150 +#: guix-git/doc/guix.texi:28487 #, no-wrap msgid "(service ddclient-service-type)\n" msgstr "(service ddclient-service-type)\n" #. type: Plain text -#: guix-git/doc/guix.texi:28159 +#: guix-git/doc/guix.texi:28496 msgid "Note that ddclient needs to access credentials that are stored in a @dfn{secret file}, by default @file{/etc/ddclient/secrets} (see @code{secret-file} below). You are expected to create this file manually, in an ``out-of-band'' fashion (you @emph{could} make this file part of the service configuration, for instance by using @code{plain-file}, but it will be world-readable @i{via} @file{/gnu/store}). See the examples in the @file{share/ddclient} directory of the @code{ddclient} package." msgstr "Fíjese que ddclient necesita acceder a las credenciales que se almacenan en un @dfn{archivo de secretos}, de manera predeterminada @file{/etc/ddclient/secrets} (véase @code{secret-file} a continuación). Se espera que genere este archivo manualmente, ``fuera de banda'' (@emph{puede} incluir este archivo en la configuración del servicio, por ejemplo mediante el uso de @code{plain-file}, pero sera legible por todo el mundo a través de @file{/gnu/store}). Véase los ejemplos en el directorio @file{share/ddclient} del paquete @code{ddclient}." #. type: Plain text -#: guix-git/doc/guix.texi:28163 +#: guix-git/doc/guix.texi:28500 msgid "Available @code{ddclient-configuration} fields are:" msgstr "Los campos disponibles de @code{ddclient-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:28164 +#: guix-git/doc/guix.texi:28501 #, no-wrap msgid "{@code{ddclient-configuration} parameter} package ddclient" msgstr "{parámetro de @code{ddclient-configuration}} package ddclient" #. type: deftypevr -#: guix-git/doc/guix.texi:28166 +#: guix-git/doc/guix.texi:28503 msgid "The ddclient package." msgstr "El paquete ddclient." #. type: deftypevr -#: guix-git/doc/guix.texi:28169 +#: guix-git/doc/guix.texi:28506 #, no-wrap msgid "{@code{ddclient-configuration} parameter} integer daemon" msgstr "{parámetro de @code{ddclient-configuration}} integer daemon" #. type: deftypevr -#: guix-git/doc/guix.texi:28171 +#: guix-git/doc/guix.texi:28508 msgid "The period after which ddclient will retry to check IP and domain name." msgstr "Periodo tras el cual ddclient reintentará la comprobación de IP y de nombre de dominio." #. type: deftypevr -#: guix-git/doc/guix.texi:28173 +#: guix-git/doc/guix.texi:28510 msgid "Defaults to @samp{300}." msgstr "El valor predeterminado es @samp{300}." #. type: deftypevr -#: guix-git/doc/guix.texi:28176 +#: guix-git/doc/guix.texi:28513 #, no-wrap msgid "{@code{ddclient-configuration} parameter} boolean syslog" msgstr "{parámetro de @code{ddclient-configuration}} boolean syslog" #. type: deftypevr -#: guix-git/doc/guix.texi:28178 +#: guix-git/doc/guix.texi:28515 msgid "Use syslog for the output." msgstr "Usa syslog para la salida." #. type: deftypevr -#: guix-git/doc/guix.texi:28183 +#: guix-git/doc/guix.texi:28520 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string mail" msgstr "{parámetro de @code{ddclient-configuration}} string mail" #. type: deftypevr -#: guix-git/doc/guix.texi:28185 +#: guix-git/doc/guix.texi:28522 msgid "Mail to user." msgstr "Envía por correo a la usuaria." #. type: deftypevr -#: guix-git/doc/guix.texi:28187 guix-git/doc/guix.texi:28194 -#: guix-git/doc/guix.texi:29996 +#: guix-git/doc/guix.texi:28524 guix-git/doc/guix.texi:28531 +#: guix-git/doc/guix.texi:30361 msgid "Defaults to @samp{\"root\"}." msgstr "El valor predeterminado es @samp{\"root\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28190 +#: guix-git/doc/guix.texi:28527 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string mail-failure" msgstr "{parámetro de @code{ddclient-configuration}} string mail-failure" #. type: deftypevr -#: guix-git/doc/guix.texi:28192 +#: guix-git/doc/guix.texi:28529 msgid "Mail failed update to user." msgstr "Envía por correo las actualizaciones fallidas a la usuaria." #. type: deftypevr -#: guix-git/doc/guix.texi:28197 +#: guix-git/doc/guix.texi:28534 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string pid" msgstr "{parámetro de @code{ddclient-configuration}} string pid" #. type: deftypevr -#: guix-git/doc/guix.texi:28199 +#: guix-git/doc/guix.texi:28536 msgid "The ddclient PID file." msgstr "El archivo de PID de ddclient." #. type: deftypevr -#: guix-git/doc/guix.texi:28201 +#: guix-git/doc/guix.texi:28538 msgid "Defaults to @samp{\"/var/run/ddclient/ddclient.pid\"}." msgstr "El valor predeterminado es @samp{\"/var/run/ddclient/ddclient.pid\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28204 +#: guix-git/doc/guix.texi:28541 #, no-wrap msgid "{@code{ddclient-configuration} parameter} boolean ssl" msgstr "{parámetro de @code{ddclient-configuration}} boolean ssl" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:28206 +#: guix-git/doc/guix.texi:28543 msgid "Enable SSL support." msgstr "Permite el uso de SSL." #. type: deftypevr -#: guix-git/doc/guix.texi:28211 +#: guix-git/doc/guix.texi:28548 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string user" msgstr "{parámetro de @code{ddclient-configuration}} string user" #. type: deftypevr -#: guix-git/doc/guix.texi:28214 +#: guix-git/doc/guix.texi:28551 msgid "Specifies the user name or ID that is used when running ddclient program." msgstr "Especifica el nombre de usuaria o ID usado para la ejecución del programa ddclient." #. type: deftypevr -#: guix-git/doc/guix.texi:28216 guix-git/doc/guix.texi:28223 +#: guix-git/doc/guix.texi:28553 guix-git/doc/guix.texi:28560 msgid "Defaults to @samp{\"ddclient\"}." msgstr "El valor predeterminado es @samp{\"ddclient\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28219 +#: guix-git/doc/guix.texi:28556 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string group" msgstr "{parámetro de @code{ddclient-configuration}} string group" #. type: deftypevr -#: guix-git/doc/guix.texi:28221 +#: guix-git/doc/guix.texi:28558 msgid "Group of the user who will run the ddclient program." msgstr "Grupo de la usuaria que ejecutará el servidor ddclient." #. type: deftypevr -#: guix-git/doc/guix.texi:28226 +#: guix-git/doc/guix.texi:28563 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string secret-file" msgstr "{parámetro de @code{ddclient-configuration}} string secret-file" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:28230 +#: guix-git/doc/guix.texi:28567 msgid "Secret file which will be appended to @file{ddclient.conf} file. This file contains credentials for use by ddclient. You are expected to create it manually." msgstr "Archivo secreto que se añadirá al final del archivo @file{ddclient.conf}. Este archivo contiene las credenciales usadas por ddclient. Se espera que usted lo cree manualmente." #. type: deftypevr -#: guix-git/doc/guix.texi:28232 +#: guix-git/doc/guix.texi:28569 msgid "Defaults to @samp{\"/etc/ddclient/secrets.conf\"}." msgstr "El valor predeterminado es @samp{\"/etc/ddclient/secrets.conf\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28235 +#: guix-git/doc/guix.texi:28572 #, no-wrap msgid "{@code{ddclient-configuration} parameter} list extra-options" msgstr "{parámetro de @code{ddclient-configuration}} lista extra-options" #. type: deftypevr -#: guix-git/doc/guix.texi:28237 +#: guix-git/doc/guix.texi:28574 msgid "Extra options will be appended to @file{ddclient.conf} file." msgstr "Opciones adicionales a agregar al final del archivo @file{ddclient.conf}." #. type: cindex -#: guix-git/doc/guix.texi:28248 +#: guix-git/doc/guix.texi:28585 #, no-wrap msgid "VPN (virtual private network)" msgstr "VPN (red privada virtual)" #. type: cindex -#: guix-git/doc/guix.texi:28249 +#: guix-git/doc/guix.texi:28586 #, no-wrap msgid "virtual private network (VPN)" msgstr "red privada virtual (VPN)" #. type: Plain text -#: guix-git/doc/guix.texi:28253 +#: guix-git/doc/guix.texi:28590 #, fuzzy msgid "The @code{(gnu services vpn)} module provides services related to @dfn{virtual private networks} (VPNs)." msgstr "El módulo @code{(gnu services networking)} proporciona servicios para configurar la interfaz de red." #. type: subsubheading -#: guix-git/doc/guix.texi:28254 +#: guix-git/doc/guix.texi:28591 #, no-wrap msgid "Bitmask" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28256 +#: guix-git/doc/guix.texi:28593 #, fuzzy, no-wrap #| msgid "{Scheme Variable} idmap-service-type" msgid "{Scheme Variable} bitmask-service-type" msgstr "{Variable Scheme} idmap-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28261 +#: guix-git/doc/guix.texi:28598 msgid "A service type for the @uref{https://bitmask.net, Bitmask} VPN client. It makes the client available in the system and loads its polkit policy. Please note that the client expects an active polkit-agent, which is either run by your desktop-environment or should be run manually." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28263 +#: guix-git/doc/guix.texi:28600 #, fuzzy, no-wrap msgid "OpenVPN" msgstr "OpenNTPD" #. type: Plain text -#: guix-git/doc/guix.texi:28267 +#: guix-git/doc/guix.texi:28604 #, fuzzy msgid "It provides a @emph{client} service for your machine to connect to a VPN, and a @emph{server} service for your machine to host a VPN@." msgstr "El módulo @code{(gnu services vpn)} proporciona servicios relacionados con las @dfn{redes privadas virtuales} (VPN). Proporciona un servicio @emph{cliente} para que su máquina se conecte a una VPN, y un servicio @emph{servidor} para que su máquina aloje una VPN. Ambos servicios usan @uref{https://openvpn.net/, OpenVPN}." #. type: deffn -#: guix-git/doc/guix.texi:28268 +#: guix-git/doc/guix.texi:28605 #, no-wrap msgid "{Scheme Procedure} openvpn-client-service @" msgstr "{Procedimiento Scheme} openvpn-client-service @" #. type: deffn -#: guix-git/doc/guix.texi:28270 +#: guix-git/doc/guix.texi:28607 msgid "[#:config (openvpn-client-configuration)]" msgstr "[#:config (openvpn-client-configuration)]" #. type: deffn -#: guix-git/doc/guix.texi:28272 +#: guix-git/doc/guix.texi:28609 msgid "Return a service that runs @command{openvpn}, a VPN daemon, as a client." msgstr "Devuelve un servicio que ejecuta @command{openvpn}, un daemon VPN, como cliente." #. type: deffn -#: guix-git/doc/guix.texi:28274 +#: guix-git/doc/guix.texi:28611 #, no-wrap msgid "{Scheme Procedure} openvpn-server-service @" msgstr "{Procedimiento Scheme} openvpn-server-service @" #. type: deffn -#: guix-git/doc/guix.texi:28276 +#: guix-git/doc/guix.texi:28613 msgid "[#:config (openvpn-server-configuration)]" msgstr "[#:config (openvpn-server-configuration)]" #. type: deffn -#: guix-git/doc/guix.texi:28278 +#: guix-git/doc/guix.texi:28615 msgid "Return a service that runs @command{openvpn}, a VPN daemon, as a server." msgstr "Devuelve un servicio que ejecuta @command{openvpn}, un daemon VPN, como servidor." #. type: deffn -#: guix-git/doc/guix.texi:28280 +#: guix-git/doc/guix.texi:28617 msgid "Both can be run simultaneously." msgstr "Pueden ejecutarse simultáneamente." #. type: Plain text -#: guix-git/doc/guix.texi:28285 +#: guix-git/doc/guix.texi:28622 msgid "Available @code{openvpn-client-configuration} fields are:" msgstr "Los campos disponibles de @code{openvpn-client-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:28286 +#: guix-git/doc/guix.texi:28623 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} package openvpn" msgstr "{parámetro de @code{openvpn-client-configuration}} package openvpn" #. type: deftypevr -#: guix-git/doc/guix.texi:28288 guix-git/doc/guix.texi:28443 +#: guix-git/doc/guix.texi:28625 guix-git/doc/guix.texi:28780 msgid "The OpenVPN package." msgstr "El paquete OpenVPN." #. type: deftypevr -#: guix-git/doc/guix.texi:28291 +#: guix-git/doc/guix.texi:28628 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} string pid-file" msgstr "{parámetro de @code{openvpn-client-configuration}} string pid-file" #. type: deftypevr -#: guix-git/doc/guix.texi:28293 guix-git/doc/guix.texi:28448 +#: guix-git/doc/guix.texi:28630 guix-git/doc/guix.texi:28785 msgid "The OpenVPN pid file." msgstr "El archivo de pid de OpenVPN." #. type: deftypevr -#: guix-git/doc/guix.texi:28295 guix-git/doc/guix.texi:28450 +#: guix-git/doc/guix.texi:28632 guix-git/doc/guix.texi:28787 msgid "Defaults to @samp{\"/var/run/openvpn/openvpn.pid\"}." msgstr "El valor predeterminado es @samp{\"/var/run/openvpn/openvpn.pid\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28298 +#: guix-git/doc/guix.texi:28635 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} proto proto" msgstr "{parámetro de @code{openvpn-client-configuration}} protocolo proto" #. type: deftypevr -#: guix-git/doc/guix.texi:28301 guix-git/doc/guix.texi:28456 +#: guix-git/doc/guix.texi:28638 guix-git/doc/guix.texi:28793 msgid "The protocol (UDP or TCP) used to open a channel between clients and servers." msgstr "El protocolo (UDP o TCP) usado para la apertura del canal entre clientes y servidores." #. type: deftypevr -#: guix-git/doc/guix.texi:28303 guix-git/doc/guix.texi:28458 +#: guix-git/doc/guix.texi:28640 guix-git/doc/guix.texi:28795 msgid "Defaults to @samp{udp}." msgstr "El valor predeterminado es @samp{udp}." #. type: deftypevr -#: guix-git/doc/guix.texi:28306 +#: guix-git/doc/guix.texi:28643 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} dev dev" msgstr "{parámetro de @code{openvpn-client-configuration}} dispositivo dev" #. type: deftypevr -#: guix-git/doc/guix.texi:28308 guix-git/doc/guix.texi:28463 +#: guix-git/doc/guix.texi:28645 guix-git/doc/guix.texi:28800 msgid "The device type used to represent the VPN connection." msgstr "El tipo de dispositivo usado para representar la conexión VPN." #. type: deftypevr -#: guix-git/doc/guix.texi:28310 guix-git/doc/guix.texi:28465 +#: guix-git/doc/guix.texi:28647 guix-git/doc/guix.texi:28802 msgid "Defaults to @samp{tun}." msgstr "El valor predeterminado es @samp{tun}." #. type: Plain text -#: guix-git/doc/guix.texi:28316 guix-git/doc/guix.texi:28471 +#: guix-git/doc/guix.texi:28653 guix-git/doc/guix.texi:28808 msgid "If you do not have some of these files (eg.@: you use a username and password), you can disable any of the following three fields by setting it to @code{'disabled}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28317 +#: guix-git/doc/guix.texi:28654 #, fuzzy, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string ca" msgstr "{parámetro de @code{openvpn-client-configuration}} string ca" #. type: deftypevr -#: guix-git/doc/guix.texi:28319 guix-git/doc/guix.texi:28474 +#: guix-git/doc/guix.texi:28656 guix-git/doc/guix.texi:28811 msgid "The certificate authority to check connections against." msgstr "La autoridad de certificación contra la que se comprueban las conexiones." #. type: deftypevr -#: guix-git/doc/guix.texi:28321 guix-git/doc/guix.texi:28476 +#: guix-git/doc/guix.texi:28658 guix-git/doc/guix.texi:28813 msgid "Defaults to @samp{\"/etc/openvpn/ca.crt\"}." msgstr "El valor predeterminado es @samp{\"/etc/openvpn/ca.crt\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28324 +#: guix-git/doc/guix.texi:28661 #, fuzzy, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string cert" msgstr "{parámetro de @code{openvpn-client-configuration}} string cert" #. type: deftypevr -#: guix-git/doc/guix.texi:28327 guix-git/doc/guix.texi:28482 +#: guix-git/doc/guix.texi:28664 guix-git/doc/guix.texi:28819 msgid "The certificate of the machine the daemon is running on. It should be signed by the authority given in @code{ca}." msgstr "El certificado de la máquina en la que se ejecuta el daemon. Debe estar firmado por la autoridad proporcionada en @code{ca}." #. type: deftypevr -#: guix-git/doc/guix.texi:28329 guix-git/doc/guix.texi:28484 +#: guix-git/doc/guix.texi:28666 guix-git/doc/guix.texi:28821 msgid "Defaults to @samp{\"/etc/openvpn/client.crt\"}." msgstr "El valor predeterminado es @samp{\"/etc/openvpn/client.crt\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28332 +#: guix-git/doc/guix.texi:28669 #, fuzzy, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string key" msgstr "{parámetro de @code{openvpn-client-configuration}} string key" #. type: deftypevr -#: guix-git/doc/guix.texi:28335 guix-git/doc/guix.texi:28490 +#: guix-git/doc/guix.texi:28672 guix-git/doc/guix.texi:28827 msgid "The key of the machine the daemon is running on. It must be the key whose certificate is @code{cert}." msgstr "La clave de la máquina en la que se ejecuta el daemon. Debe ser la clave cuyo certificado es @code{cert}." #. type: deftypevr -#: guix-git/doc/guix.texi:28337 guix-git/doc/guix.texi:28492 +#: guix-git/doc/guix.texi:28674 guix-git/doc/guix.texi:28829 msgid "Defaults to @samp{\"/etc/openvpn/client.key\"}." msgstr "El valor predeterminado es @samp{\"/etc/openvpn/client.key\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28340 +#: guix-git/doc/guix.texi:28677 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean comp-lzo?" msgstr "{parámetro de @code{openvpn-client-configuration}} boolean comp-lzo?" #. type: deftypevr -#: guix-git/doc/guix.texi:28342 guix-git/doc/guix.texi:28497 +#: guix-git/doc/guix.texi:28679 guix-git/doc/guix.texi:28834 msgid "Whether to use the lzo compression algorithm." msgstr "Determina si se usa el algoritmo de compresión lzo." #. type: deftypevr -#: guix-git/doc/guix.texi:28347 +#: guix-git/doc/guix.texi:28684 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean persist-key?" msgstr "{parámetro de @code{openvpn-client-configuration}} boolean persist-key?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:28349 guix-git/doc/guix.texi:28504 +#: guix-git/doc/guix.texi:28686 guix-git/doc/guix.texi:28841 msgid "Don't re-read key files across SIGUSR1 or --ping-restart." msgstr "No vuelve a leer los archivos de claves tras la señal SIGUSR1 o --ping-restart." #. type: deftypevr -#: guix-git/doc/guix.texi:28354 +#: guix-git/doc/guix.texi:28691 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean persist-tun?" msgstr "{parámetro de @code{openvpn-client-configuration}} boolean persist-tun?" #. type: deftypevr -#: guix-git/doc/guix.texi:28357 guix-git/doc/guix.texi:28512 +#: guix-git/doc/guix.texi:28694 guix-git/doc/guix.texi:28849 msgid "Don't close and reopen TUN/TAP device or run up/down scripts across SIGUSR1 or --ping-restart restarts." msgstr "No cierra y reabre el dispositivo TUN/TAP o ejecuta los guiones de parada e inicio tras el reinicio provocado por SIGUSR1 o --ping-restart." #. type: deftypevr -#: guix-git/doc/guix.texi:28362 +#: guix-git/doc/guix.texi:28699 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean fast-io?" msgstr "{parámetro de @code{openvpn-client-configuration}} boolean fast-io?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:28365 guix-git/doc/guix.texi:28520 +#: guix-git/doc/guix.texi:28702 guix-git/doc/guix.texi:28857 msgid "(Experimental) Optimize TUN/TAP/UDP I/O writes by avoiding a call to poll/epoll/select prior to the write operation." msgstr "(Experimental) Optimiza las escrituras de E/S de TUN/TAP/UDP evitando llamar poll/epoll/select antes de la operación de escritura (@code{write})." #. type: deftypevr -#: guix-git/doc/guix.texi:28369 +#: guix-git/doc/guix.texi:28706 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} number verbosity" msgstr "{parámetro de @code{openvpn-client-configuration}} number verbosity" #. type: deftypevr -#: guix-git/doc/guix.texi:28371 guix-git/doc/guix.texi:28526 +#: guix-git/doc/guix.texi:28708 guix-git/doc/guix.texi:28863 msgid "Verbosity level." msgstr "Nivel de detalle en los mensajes." #. type: deftypevr -#: guix-git/doc/guix.texi:28373 guix-git/doc/guix.texi:28528 -#: guix-git/doc/guix.texi:30264 guix-git/doc/guix.texi:30488 +#: guix-git/doc/guix.texi:28710 guix-git/doc/guix.texi:28865 +#: guix-git/doc/guix.texi:30629 guix-git/doc/guix.texi:30853 msgid "Defaults to @samp{3}." msgstr "El valor predeterminado es @samp{3}." #. type: deftypevr -#: guix-git/doc/guix.texi:28376 +#: guix-git/doc/guix.texi:28713 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} tls-auth-client tls-auth" msgstr "{parámetro de @code{openvpn-client-configuration}} cliente-tls-auth tls-auth" #. type: deftypevr -#: guix-git/doc/guix.texi:28379 guix-git/doc/guix.texi:28534 +#: guix-git/doc/guix.texi:28716 guix-git/doc/guix.texi:28871 msgid "Add an additional layer of HMAC authentication on top of the TLS control channel to protect against DoS attacks." msgstr "Añade una capa adicional de verificación HMAC sobre el canal de control TLS para protección contra ataques de denegación de servicio (DoS)." #. type: deftypevr -#: guix-git/doc/guix.texi:28384 +#: guix-git/doc/guix.texi:28721 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string auth-user-pass" msgstr "{parámetro de @code{openvpn-client-configuration}} maybe-string auth-user-pass" #. type: deftypevr -#: guix-git/doc/guix.texi:28388 +#: guix-git/doc/guix.texi:28725 msgid "Authenticate with server using username/password. The option is a file containing username/password on 2 lines. Do not use a file-like object as it would be added to the store and readable by any user." msgstr "Activa la identificación con el servidor mediante el uso de usuaria/contraseña. La opción es un archivo que contiene en dos líneas el nombre de usuaria y la contraseña. No use un objeto tipo-archivo, ya que se añadiría al almacén y sería legible para cualquier usuaria." #. type: deftypevr -#: guix-git/doc/guix.texi:28390 +#: guix-git/doc/guix.texi:28727 msgid "Defaults to @samp{'disabled}." msgstr "El valor predeterminado es @samp{'disabled}." #. type: deftypevr -#: guix-git/doc/guix.texi:28392 +#: guix-git/doc/guix.texi:28729 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} key-usage verify-key-usage?" msgstr "{parámetro de @code{openvpn-client-configuration}} key-usage verify-key-usage?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:28394 +#: guix-git/doc/guix.texi:28731 msgid "Whether to check the server certificate has server usage extension." msgstr "Si se comprueba que el certificado del servidor tenga la extensión de uso de servidor." #. type: deftypevr -#: guix-git/doc/guix.texi:28399 +#: guix-git/doc/guix.texi:28736 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} bind bind?" msgstr "{parámetro de @code{openvpn-client-configuration}} bind bind?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:28401 +#: guix-git/doc/guix.texi:28738 msgid "Bind to a specific local port number." msgstr "Asociación a un número específico de puerto local." #. type: deftypevr -#: guix-git/doc/guix.texi:28406 +#: guix-git/doc/guix.texi:28743 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} resolv-retry resolv-retry?" msgstr "{parámetro de @code{openvpn-client-configuration}} resolv-retry resolv-retry?" #. type: deftypevr -#: guix-git/doc/guix.texi:28408 +#: guix-git/doc/guix.texi:28745 msgid "Retry resolving server address." msgstr "Reintentos de resolución de la dirección del servidor." #. type: deftypevr -#: guix-git/doc/guix.texi:28413 +#: guix-git/doc/guix.texi:28750 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} openvpn-remote-list remote" msgstr "{parámetro @code{openvpn-client-configuration}} lista-openvpn-remote remote" #. type: deftypevr -#: guix-git/doc/guix.texi:28415 +#: guix-git/doc/guix.texi:28752 msgid "A list of remote servers to connect to." msgstr "Una lista de servidores remotos a los que conectarse." #. type: deftypevr -#: guix-git/doc/guix.texi:28419 +#: guix-git/doc/guix.texi:28756 msgid "Available @code{openvpn-remote-configuration} fields are:" msgstr "Los campos disponibles de @code{openvpn-remote-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:28420 +#: guix-git/doc/guix.texi:28757 #, no-wrap msgid "{@code{openvpn-remote-configuration} parameter} string name" msgstr "{parámetro de @code{openvpn-remote-configuration}} string name" #. type: deftypevr -#: guix-git/doc/guix.texi:28422 +#: guix-git/doc/guix.texi:28759 msgid "Server name." msgstr "Nombre del servidor." #. type: deftypevr -#: guix-git/doc/guix.texi:28424 +#: guix-git/doc/guix.texi:28761 msgid "Defaults to @samp{\"my-server\"}." msgstr "El valor predeterminado es @samp{\"my-server\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28427 +#: guix-git/doc/guix.texi:28764 #, no-wrap msgid "{@code{openvpn-remote-configuration} parameter} number port" msgstr "{parámetro de @code{openvpn-remote-configuration}} number port" #. type: deftypevr -#: guix-git/doc/guix.texi:28429 +#: guix-git/doc/guix.texi:28766 msgid "Port number the server listens to." msgstr "Puerto en el que escucha el servidor." #. type: deftypevr -#: guix-git/doc/guix.texi:28431 guix-git/doc/guix.texi:28543 +#: guix-git/doc/guix.texi:28768 guix-git/doc/guix.texi:28880 msgid "Defaults to @samp{1194}." msgstr "El valor predeterminado es @samp{1194}." #. type: Plain text -#: guix-git/doc/guix.texi:28440 +#: guix-git/doc/guix.texi:28777 msgid "Available @code{openvpn-server-configuration} fields are:" msgstr "Los campos disponibles de @code{openvpn-server-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:28441 +#: guix-git/doc/guix.texi:28778 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} package openvpn" msgstr "{parámetro de @code{openvpn-server-configuration}} package openvpn" #. type: deftypevr -#: guix-git/doc/guix.texi:28446 +#: guix-git/doc/guix.texi:28783 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string pid-file" msgstr "{parámetro de @code{openvpn-server-configuration}} string pid-file" #. type: deftypevr -#: guix-git/doc/guix.texi:28453 +#: guix-git/doc/guix.texi:28790 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} proto proto" msgstr "{parámetro de @code{openvpn-server-configuration}} protocolo proto" #. type: deftypevr -#: guix-git/doc/guix.texi:28461 +#: guix-git/doc/guix.texi:28798 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} dev dev" msgstr "{parámetro de @code{openvpn-server-configuration}} dispositivo dev" #. type: deftypevr -#: guix-git/doc/guix.texi:28472 +#: guix-git/doc/guix.texi:28809 #, fuzzy, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string ca" msgstr "{parámetro de @code{openvpn-server-configuration}} string ca" #. type: deftypevr -#: guix-git/doc/guix.texi:28479 +#: guix-git/doc/guix.texi:28816 #, fuzzy, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string cert" msgstr "{parámetro de @code{openvpn-server-configuration}} string cert" #. type: deftypevr -#: guix-git/doc/guix.texi:28487 +#: guix-git/doc/guix.texi:28824 #, fuzzy, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string key" msgstr "{parámetro de @code{openvpn-server-configuration}} string key" #. type: deftypevr -#: guix-git/doc/guix.texi:28495 +#: guix-git/doc/guix.texi:28832 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean comp-lzo?" msgstr "{parámetro de @code{openvpn-server-configuration}} boolean comp-lzo?" #. type: deftypevr -#: guix-git/doc/guix.texi:28502 +#: guix-git/doc/guix.texi:28839 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean persist-key?" msgstr "{parámetro de @code{openvpn-server-configuration}} boolean persist-key?" #. type: deftypevr -#: guix-git/doc/guix.texi:28509 +#: guix-git/doc/guix.texi:28846 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean persist-tun?" msgstr "{parámetro de @code{openvpn-server-configuration}} boolean persist-tun?" #. type: deftypevr -#: guix-git/doc/guix.texi:28517 +#: guix-git/doc/guix.texi:28854 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean fast-io?" msgstr "{parámetro de @code{openvpn-server-configuration}} boolean fast-io?" #. type: deftypevr -#: guix-git/doc/guix.texi:28524 +#: guix-git/doc/guix.texi:28861 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number verbosity" msgstr "{parámetro de @code{openvpn-server-configuration}} number verbosity" #. type: deftypevr -#: guix-git/doc/guix.texi:28531 +#: guix-git/doc/guix.texi:28868 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} tls-auth-server tls-auth" msgstr "{parámetro de @code{openvpn-server-configuration}} servidor-tls-auth tls-auth" #. type: deftypevr -#: guix-git/doc/guix.texi:28539 +#: guix-git/doc/guix.texi:28876 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number port" msgstr "{parámetro de @code{openvpn-server-configuration}} number port" #. type: deftypevr -#: guix-git/doc/guix.texi:28541 +#: guix-git/doc/guix.texi:28878 msgid "Specifies the port number on which the server listens." msgstr "Especifica el número de puerto en el que escucha el servidor." #. type: deftypevr -#: guix-git/doc/guix.texi:28546 +#: guix-git/doc/guix.texi:28883 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} ip-mask server" msgstr "{parámetro de @code{openvpn-server-configuration}} ip-máscara server" #. type: deftypevr -#: guix-git/doc/guix.texi:28548 +#: guix-git/doc/guix.texi:28885 msgid "An ip and mask specifying the subnet inside the virtual network." msgstr "Una IP y una máscara que especifiquen la subred dentro de la red virtual." #. type: deftypevr -#: guix-git/doc/guix.texi:28550 +#: guix-git/doc/guix.texi:28887 msgid "Defaults to @samp{\"10.8.0.0 255.255.255.0\"}." msgstr "El valor predeterminado es @samp{\"10.8.0.0 255.255.255.0\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28553 +#: guix-git/doc/guix.texi:28890 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} cidr6 server-ipv6" msgstr "{parámetro de @code{openvpn-server-configuration}} cidr6 server-ipv6" #. type: deftypevr -#: guix-git/doc/guix.texi:28555 +#: guix-git/doc/guix.texi:28892 msgid "A CIDR notation specifying the IPv6 subnet inside the virtual network." msgstr "La especificación de una subred IPv6 dentro de la red virtual en notación CIDR." #. type: deftypevr -#: guix-git/doc/guix.texi:28560 +#: guix-git/doc/guix.texi:28897 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string dh" msgstr "{parámetro de @code{openvpn-server-configuration}} string dh" #. type: deftypevr -#: guix-git/doc/guix.texi:28562 +#: guix-git/doc/guix.texi:28899 msgid "The Diffie-Hellman parameters file." msgstr "El archivo de parámetros Diffie-Hellman." #. type: deftypevr -#: guix-git/doc/guix.texi:28564 +#: guix-git/doc/guix.texi:28901 msgid "Defaults to @samp{\"/etc/openvpn/dh2048.pem\"}." msgstr "El valor predeterminado es @samp{\"/etc/openvpn/dh2048.pem\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28567 +#: guix-git/doc/guix.texi:28904 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string ifconfig-pool-persist" msgstr "{parámetro de @code{openvpn-server-configuration}} string ifconfig-pool-persist" #. type: deftypevr -#: guix-git/doc/guix.texi:28569 +#: guix-git/doc/guix.texi:28906 msgid "The file that records client IPs." msgstr "El archivo que registra IP de clientes." #. type: deftypevr -#: guix-git/doc/guix.texi:28571 +#: guix-git/doc/guix.texi:28908 msgid "Defaults to @samp{\"/etc/openvpn/ipp.txt\"}." msgstr "El valor predeterminado es @samp{\"/etc/openvpn/ipp.txt\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28574 +#: guix-git/doc/guix.texi:28911 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} gateway redirect-gateway?" msgstr "{parámetro de @code{openvpn-server-configuration}} gateway redirect-gateway?" #. type: deftypevr -#: guix-git/doc/guix.texi:28576 +#: guix-git/doc/guix.texi:28913 msgid "When true, the server will act as a gateway for its clients." msgstr "Cuando sea verdadero, el servidor actuará como una pasarela para sus clientes." #. type: deftypevr -#: guix-git/doc/guix.texi:28581 +#: guix-git/doc/guix.texi:28918 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean client-to-client?" msgstr "{parámetro de @code{openvpn-server-configuration}} boolean client-to-client?" #. type: deftypevr -#: guix-git/doc/guix.texi:28583 +#: guix-git/doc/guix.texi:28920 msgid "When true, clients are allowed to talk to each other inside the VPN." msgstr "Cuando es verdadero, se permite la comunicación entre clientes dentro de la VPN." #. type: deftypevr -#: guix-git/doc/guix.texi:28588 +#: guix-git/doc/guix.texi:28925 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} keepalive keepalive" msgstr "{parámetro de @code{openvpn-server-configuration}} keepalive keepalive" #. type: deftypevr -#: guix-git/doc/guix.texi:28594 +#: guix-git/doc/guix.texi:28931 msgid "Causes ping-like messages to be sent back and forth over the link so that each side knows when the other side has gone down. @code{keepalive} requires a pair. The first element is the period of the ping sending, and the second element is the timeout before considering the other side down." msgstr "Hace que se envíen mensajes tipo-ping en ambas direcciones a través del enlace de modo que cada extremo conozca si el otro extremo no está disponible. @code{keepalive} necesita un par. El primer elemento es el periodo de envío de ping, y el segundo elemento es el plazo máximo antes de considerar que el otro extremo no está disponible." #. type: deftypevr -#: guix-git/doc/guix.texi:28597 +#: guix-git/doc/guix.texi:28934 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number max-clients" msgstr "{parámetro de @code{openvpn-server-configuration}} number max-clients" #. type: deftypevr -#: guix-git/doc/guix.texi:28599 +#: guix-git/doc/guix.texi:28936 msgid "The maximum number of clients." msgstr "Número máximo de clientes." #. type: deftypevr -#: guix-git/doc/guix.texi:28604 +#: guix-git/doc/guix.texi:28941 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string status" msgstr "{parámetro de @code{openvpn-server-configuration}} string status" #. type: deftypevr -#: guix-git/doc/guix.texi:28607 +#: guix-git/doc/guix.texi:28944 msgid "The status file. This file shows a small report on current connection. It is truncated and rewritten every minute." msgstr "El archivo de estado. Este archivo muestra un pequeño informe sobre la conexión actual. Su contenido se borra y se reescribe cada minuto." #. type: deftypevr -#: guix-git/doc/guix.texi:28609 +#: guix-git/doc/guix.texi:28946 msgid "Defaults to @samp{\"/var/run/openvpn/status\"}." msgstr "El valor predeterminado es @samp{\"/var/run/openvpn/status\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28612 +#: guix-git/doc/guix.texi:28949 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} openvpn-ccd-list client-config-dir" msgstr "{parámetro de @code{openvpn-server-configuration}} lista-openvpn-ccd client-config-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:28614 +#: guix-git/doc/guix.texi:28951 msgid "The list of configuration for some clients." msgstr "Lista de configuración para algunos clientes." #. type: deftypevr -#: guix-git/doc/guix.texi:28618 +#: guix-git/doc/guix.texi:28955 msgid "Available @code{openvpn-ccd-configuration} fields are:" msgstr "Los campos disponibles de @code{openvpn-ccd-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:28619 +#: guix-git/doc/guix.texi:28956 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} string name" msgstr "{parámetro de @code{openvpn-ccd-configuration}} string name" #. type: deftypevr -#: guix-git/doc/guix.texi:28621 +#: guix-git/doc/guix.texi:28958 msgid "Client name." msgstr "Nombre del cliente." #. type: deftypevr -#: guix-git/doc/guix.texi:28623 +#: guix-git/doc/guix.texi:28960 msgid "Defaults to @samp{\"client\"}." msgstr "El valor predeterminado es @samp{\"client\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28626 +#: guix-git/doc/guix.texi:28963 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} ip-mask iroute" msgstr "{parámetro de @code{openvpn-ccd-configuration}} ip-máscara iroute" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:28628 +#: guix-git/doc/guix.texi:28965 msgid "Client own network" msgstr "Red propia del cliente" #. type: deftypevr -#: guix-git/doc/guix.texi:28633 +#: guix-git/doc/guix.texi:28970 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} ip-mask ifconfig-push" msgstr "{parámetro de @code{openvpn-ccd-configuration}} ip-máscara ifconfig-push" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:28635 +#: guix-git/doc/guix.texi:28972 msgid "Client VPN IP." msgstr "IP de la VPN del cliente." #. type: subheading -#: guix-git/doc/guix.texi:28644 +#: guix-git/doc/guix.texi:28981 #, no-wrap msgid "strongSwan" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28648 +#: guix-git/doc/guix.texi:28985 msgid "Currently, the strongSwan service only provides legacy-style configuration with @file{ipsec.conf} and @file{ipsec.secrets} files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28649 +#: guix-git/doc/guix.texi:28986 #, fuzzy, no-wrap msgid "{Scheme Variable} strongswan-service-type" msgstr "{Variable Scheme} ganeti-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28653 +#: guix-git/doc/guix.texi:28990 #, fuzzy msgid "A service type for configuring strongSwan for IPsec @acronym{VPN, Virtual Private Networking}. Its value must be a @code{strongswan-configuration} record as in this example:" msgstr "Un tipo de servicio para el cliente de Let's Encrypt @code{certbot}. Su valor debe ser un registro @code{certbot-configuration} como en este ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:28659 +#: guix-git/doc/guix.texi:28996 #, fuzzy, no-wrap #| msgid "" #| "(service cups-service-type\n" @@ -56072,7 +56811,7 @@ msgstr "" " (cups-files.conf cups-files.conf)))\n" #. type: deftp -#: guix-git/doc/guix.texi:28663 +#: guix-git/doc/guix.texi:29000 #, fuzzy, no-wrap #| msgid "{Data Type} connman-configuration" msgid "{Data Type} strongswan-configuration" @@ -56080,67 +56819,67 @@ msgstr "{Tipo de datos} connman-configuration" # FUZZY #. type: deftp -#: guix-git/doc/guix.texi:28665 +#: guix-git/doc/guix.texi:29002 #, fuzzy msgid "Data type representing the configuration of the StrongSwan service." msgstr "Tipo de datos que representa la configuración del servicio de datos de Guix." #. type: code{#1} -#: guix-git/doc/guix.texi:28667 +#: guix-git/doc/guix.texi:29004 #, no-wrap msgid "strongswan" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28669 +#: guix-git/doc/guix.texi:29006 #, fuzzy msgid "The strongSwan package to use for this service." msgstr "El paquete @code{ganeti} usado para este servicio." #. type: item -#: guix-git/doc/guix.texi:28670 +#: guix-git/doc/guix.texi:29007 #, fuzzy, no-wrap #| msgid "@code{nsec3?} (default: @code{#f})" msgid "@code{ipsec-conf} (default: @code{#f})" msgstr "@code{nsec3?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28673 +#: guix-git/doc/guix.texi:29010 msgid "The file name of your @file{ipsec.conf}. If not @code{#f}, then this and @code{ipsec-secrets} must both be strings." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28674 +#: guix-git/doc/guix.texi:29011 #, fuzzy, no-wrap #| msgid "@code{kitesecret} (default: @code{#f})" msgid "@code{ipsec-secrets} (default @code{#f})" msgstr "@code{kitesecret} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28677 +#: guix-git/doc/guix.texi:29014 msgid "The file name of your @file{ipsec.secrets}. If not @code{#f}, then this and @code{ipsec-conf} must both be strings." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28681 +#: guix-git/doc/guix.texi:29018 #, no-wrap msgid "Wireguard" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28683 +#: guix-git/doc/guix.texi:29020 #, fuzzy, no-wrap msgid "{Scheme Variable} wireguard-service-type" msgstr "{Variable Scheme} redis-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28686 +#: guix-git/doc/guix.texi:29023 #, fuzzy msgid "A service type for a Wireguard tunnel interface. Its value must be a @code{wireguard-configuration} record as in this example:" msgstr "Un tipo de servicio para el cliente de Let's Encrypt @code{certbot}. Su valor debe ser un registro @code{certbot-configuration} como en este ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:28697 +#: guix-git/doc/guix.texi:29034 #, no-wrap msgid "" "(service wireguard-service-type\n" @@ -56155,55 +56894,55 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28701 +#: guix-git/doc/guix.texi:29038 #, fuzzy, no-wrap msgid "{Data Type} wireguard-configuration" msgstr "{Tipo de datos} inetd-configuration" # FUZZY #. type: deftp -#: guix-git/doc/guix.texi:28703 +#: guix-git/doc/guix.texi:29040 #, fuzzy msgid "Data type representing the configuration of the Wireguard service." msgstr "Tipo de datos que representa la configuración del servicio de datos de Guix." #. type: code{#1} -#: guix-git/doc/guix.texi:28705 +#: guix-git/doc/guix.texi:29042 #, no-wrap msgid "wireguard" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28707 +#: guix-git/doc/guix.texi:29044 #, fuzzy msgid "The wireguard package to use for this service." msgstr "El paquete @code{ganeti} usado para este servicio." #. type: item -#: guix-git/doc/guix.texi:28708 +#: guix-git/doc/guix.texi:29045 #, fuzzy, no-wrap msgid "@code{interface} (default: @code{\"wg0\"})" msgstr "@code{interface} (predeterminado: @code{\"wlan0\"})" #. type: table -#: guix-git/doc/guix.texi:28710 +#: guix-git/doc/guix.texi:29047 #, fuzzy msgid "The interface name for the VPN." msgstr "El nombre del grupo." #. type: item -#: guix-git/doc/guix.texi:28711 +#: guix-git/doc/guix.texi:29048 #, fuzzy, no-wrap msgid "@code{addresses} (default: @code{'(\"10.0.0.1/32\")})" msgstr "@code{address} (predeterminado: @code{\"0.0.0.0\"})" #. type: table -#: guix-git/doc/guix.texi:28713 +#: guix-git/doc/guix.texi:29050 msgid "The IP addresses to be assigned to the above interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28714 +#: guix-git/doc/guix.texi:29051 #, fuzzy, no-wrap #| msgid "@code{port} (default: @code{5080})" msgid "@code{port} (default: @code{51820})" @@ -56211,205 +56950,205 @@ msgstr "@code{port} (predeterminado: @code{5080})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:28716 +#: guix-git/doc/guix.texi:29053 #, fuzzy msgid "The port on which to listen for incoming connections." msgstr "Puerto TCP en el que @command{sshd} espera conexiones entrantes." #. type: item -#: guix-git/doc/guix.texi:28717 +#: guix-git/doc/guix.texi:29054 #, fuzzy, no-wrap #| msgid "@code{id} (default: @code{#f})" msgid "@code{dns} (default: @code{#f})" msgstr "@code{id} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28719 +#: guix-git/doc/guix.texi:29056 msgid "The DNS server(s) to announce to VPN clients via DHCP." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28720 +#: guix-git/doc/guix.texi:29057 #, fuzzy, no-wrap msgid "@code{private-key} (default: @code{\"/etc/wireguard/private.key\"})" msgstr "@code{resolv-file} (predeterminado: @code{\"/etc/resolv.conf\"})" #. type: table -#: guix-git/doc/guix.texi:28723 +#: guix-git/doc/guix.texi:29060 msgid "The private key file for the interface. It is automatically generated if the file does not exist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28724 +#: guix-git/doc/guix.texi:29061 #, fuzzy, no-wrap msgid "@code{peers} (default: @code{'()})" msgstr "@code{servers} (predeterminados: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:28727 +#: guix-git/doc/guix.texi:29064 msgid "The authorized peers on this interface. This is a list of @var{wireguard-peer} records." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28731 +#: guix-git/doc/guix.texi:29068 #, fuzzy, no-wrap msgid "{Data Type} wireguard-peer" msgstr "{Tipo de datos} inetd-entry" #. type: deftp -#: guix-git/doc/guix.texi:28733 +#: guix-git/doc/guix.texi:29070 #, fuzzy msgid "Data type representing a Wireguard peer attached to a given interface." msgstr "Tipo de datos que representa la configuración de PageKite." #. type: table -#: guix-git/doc/guix.texi:28737 +#: guix-git/doc/guix.texi:29074 #, fuzzy msgid "The peer name." msgstr "El nombre de la máquina." #. type: item -#: guix-git/doc/guix.texi:28738 +#: guix-git/doc/guix.texi:29075 #, fuzzy, no-wrap msgid "@code{endpoint} (default: @code{#f})" msgstr "@code{domain} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28741 +#: guix-git/doc/guix.texi:29078 msgid "The optional endpoint for the peer, such as @code{\"demo.wireguard.com:51820\"}." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:28742 guix-git/doc/guix.texi:29137 -#: guix-git/doc/guix.texi:29174 guix-git/doc/guix.texi:34305 +#: guix-git/doc/guix.texi:29079 guix-git/doc/guix.texi:29474 +#: guix-git/doc/guix.texi:29511 guix-git/doc/guix.texi:34744 #, no-wrap msgid "public-key" msgstr "public-key" #. type: table -#: guix-git/doc/guix.texi:28744 +#: guix-git/doc/guix.texi:29081 msgid "The peer public-key represented as a base64 string." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:28745 +#: guix-git/doc/guix.texi:29082 #, fuzzy, no-wrap msgid "allowed-ips" msgstr "allowed-hosts" #. type: table -#: guix-git/doc/guix.texi:28748 +#: guix-git/doc/guix.texi:29085 msgid "A list of IP addresses from which incoming traffic for this peer is allowed and to which incoming traffic for this peer is directed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28749 +#: guix-git/doc/guix.texi:29086 #, fuzzy, no-wrap #| msgid "@code{keep-baud?} (default: @code{#f})" msgid "@code{keep-alive} (default: @code{#f})" msgstr "@code{keep-baud?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28754 +#: guix-git/doc/guix.texi:29091 msgid "An optional time interval in seconds. A packet will be sent to the server endpoint once per time interval. This helps receiving incoming connections from this peer when you are behind a NAT or a firewall." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28760 +#: guix-git/doc/guix.texi:29097 #, no-wrap msgid "NFS" msgstr "NFS" #. type: Plain text -#: guix-git/doc/guix.texi:28765 +#: guix-git/doc/guix.texi:29102 msgid "The @code{(gnu services nfs)} module provides the following services, which are most commonly used in relation to mounting or exporting directory trees as @dfn{network file systems} (NFS)." msgstr "El módulo @code{(gnu services nfs)} proporciona los siguientes servicios, que se usan habitualmente en relación con el montado o la exportación de árboles de directorios como @dfn{sistemas de archivos en red} (NFS)." #. type: Plain text -#: guix-git/doc/guix.texi:28769 +#: guix-git/doc/guix.texi:29106 msgid "While it is possible to use the individual components that together make up a Network File System service, we recommended to configure an NFS server with the @code{nfs-service-type}." msgstr "Mientras que es posible usar los componentes individuales de forma conjunta para proporcionar un servicio del sistema de archivos en red NFS, recomendamos la configuración de un servidor NFS mediante @code{nfs-service-type}." #. type: subsubheading -#: guix-git/doc/guix.texi:28770 +#: guix-git/doc/guix.texi:29107 #, no-wrap msgid "NFS Service" msgstr "Servicio NFS" #. type: cindex -#: guix-git/doc/guix.texi:28771 +#: guix-git/doc/guix.texi:29108 #, no-wrap msgid "NFS, server" msgstr "NFS, servidor" #. type: Plain text -#: guix-git/doc/guix.texi:28776 +#: guix-git/doc/guix.texi:29113 msgid "The NFS service takes care of setting up all NFS component services, kernel configuration file systems, and installs configuration files in the locations that NFS expects." msgstr "El servicio NFS se hace cargo de configurar todos los servicios de componentes de NFS, la configuración del núcleo de sistemas de archivos e instala los archivos de configuración en las rutas que NFS espera." #. type: defvr -#: guix-git/doc/guix.texi:28777 +#: guix-git/doc/guix.texi:29114 #, no-wrap msgid "{Scheme Variable} nfs-service-type" msgstr "{Variable Scheme} nfs-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28779 +#: guix-git/doc/guix.texi:29116 msgid "A service type for a complete NFS server." msgstr "Este es el tipo de datos para un servidor NFS completo." #. type: deftp -#: guix-git/doc/guix.texi:28781 +#: guix-git/doc/guix.texi:29118 #, no-wrap msgid "{Data Type} nfs-configuration" msgstr "{Tipo de datos} nfs-configuration" #. type: deftp -#: guix-git/doc/guix.texi:28784 +#: guix-git/doc/guix.texi:29121 msgid "This data type represents the configuration of the NFS service and all of its subsystems." msgstr "Este tipo de datos representa la configuración del servicio NFS y todos sus subsistemas." #. type: deftp -#: guix-git/doc/guix.texi:28786 +#: guix-git/doc/guix.texi:29123 msgid "It has the following parameters:" msgstr "Tiene los siguientes parámetros:" #. type: item -#: guix-git/doc/guix.texi:28787 guix-git/doc/guix.texi:28912 -#: guix-git/doc/guix.texi:28937 +#: guix-git/doc/guix.texi:29124 guix-git/doc/guix.texi:29249 +#: guix-git/doc/guix.texi:29274 #, no-wrap msgid "@code{nfs-utils} (default: @code{nfs-utils})" msgstr "@code{nfs-utils} (predeterminado: @code{nfs-utils})" #. type: table -#: guix-git/doc/guix.texi:28789 +#: guix-git/doc/guix.texi:29126 msgid "The nfs-utils package to use." msgstr "El paquete nfs-utils usado." #. type: item -#: guix-git/doc/guix.texi:28790 +#: guix-git/doc/guix.texi:29127 #, no-wrap msgid "@code{nfs-versions} (default: @code{'(\"4.2\" \"4.1\" \"4.0\")})" msgstr "@code{nfs-versions} (predeterminadas: @code{'(\"4.2\" \"4.1\" \"4.0\")})" #. type: table -#: guix-git/doc/guix.texi:28793 +#: guix-git/doc/guix.texi:29130 msgid "If a list of string values is provided, the @command{rpc.nfsd} daemon will be limited to supporting the given versions of the NFS protocol." msgstr "Si se proporciona como valor una lista de cadenas, el daemon @command{rpc.nfsd} se limitará a la implementación de las versiones del protocolo NFS proporcionadas." #. type: item -#: guix-git/doc/guix.texi:28794 +#: guix-git/doc/guix.texi:29131 #, no-wrap msgid "@code{exports} (default: @code{'()})" msgstr "@code{exports} (predeterminada: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:28799 +#: guix-git/doc/guix.texi:29136 msgid "This is a list of directories the NFS server should export. Each entry is a list consisting of two elements: a directory name and a string containing all options. This is an example in which the directory @file{/export} is served to all NFS clients as a read-only share:" msgstr "Una lista de directorios que el servidor NFS debe exportar. Cada entrada es una lista que consiste en dos elementos: un nombre de directorio y una cadena que contiene todas las opciones. Este es un ejemplo en el que el directorio @file{/exportado} se proporciona a todos los clientes NFS en modo de solo-lectura:" #. type: lisp -#: guix-git/doc/guix.texi:28805 +#: guix-git/doc/guix.texi:29142 #, no-wrap msgid "" "(nfs-configuration\n" @@ -56423,312 +57162,312 @@ msgstr "" " \"*(ro,insecure,no_subtree_check,crossmnt,fsid=0)\"))))\n" #. type: item -#: guix-git/doc/guix.texi:28807 +#: guix-git/doc/guix.texi:29144 #, no-wrap msgid "@code{rpcmountd-port} (default: @code{#f})" msgstr "@code{rpcmountd-port} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28809 +#: guix-git/doc/guix.texi:29146 msgid "The network port that the @command{rpc.mountd} daemon should use." msgstr "El puerto de red que el daemon @command{rpc.mountd} debe usar." #. type: item -#: guix-git/doc/guix.texi:28810 +#: guix-git/doc/guix.texi:29147 #, no-wrap msgid "@code{rpcstatd-port} (default: @code{#f})" msgstr "@code{rpcstatd-port} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28812 +#: guix-git/doc/guix.texi:29149 msgid "The network port that the @command{rpc.statd} daemon should use." msgstr "El puerto de red que el daemon @command{rpc.statd} debe usar." #. type: item -#: guix-git/doc/guix.texi:28813 guix-git/doc/guix.texi:28861 +#: guix-git/doc/guix.texi:29150 guix-git/doc/guix.texi:29198 #, no-wrap msgid "@code{rpcbind} (default: @code{rpcbind})" msgstr "@code{rpcbind} (predeterminado: @code{rpcbind})" #. type: table -#: guix-git/doc/guix.texi:28815 guix-git/doc/guix.texi:28863 +#: guix-git/doc/guix.texi:29152 guix-git/doc/guix.texi:29200 msgid "The rpcbind package to use." msgstr "El paquete rpcbind usado." #. type: item -#: guix-git/doc/guix.texi:28816 +#: guix-git/doc/guix.texi:29153 #, no-wrap msgid "@code{idmap-domain} (default: @code{\"localdomain\"})" msgstr "@code{idmap-domain} (predeterminado: @code{\"localdomain\"})" #. type: table -#: guix-git/doc/guix.texi:28818 +#: guix-git/doc/guix.texi:29155 msgid "The local NFSv4 domain name." msgstr "El nombre de dominio local de NFSv4." #. type: item -#: guix-git/doc/guix.texi:28819 +#: guix-git/doc/guix.texi:29156 #, no-wrap msgid "@code{nfsd-port} (default: @code{2049})" msgstr "@code{nfsd-port} (predeterminado: @code{2049})" #. type: table -#: guix-git/doc/guix.texi:28821 +#: guix-git/doc/guix.texi:29158 msgid "The network port that the @command{nfsd} daemon should use." msgstr "El puerto de red que el daemon @command{nfsd} debe usar." #. type: item -#: guix-git/doc/guix.texi:28822 +#: guix-git/doc/guix.texi:29159 #, no-wrap msgid "@code{nfsd-threads} (default: @code{8})" msgstr "@code{nfsd-threads} (predeterminado: @code{8})" #. type: table -#: guix-git/doc/guix.texi:28824 +#: guix-git/doc/guix.texi:29161 msgid "The number of threads used by the @command{nfsd} daemon." msgstr "Número de hilos usados en el daemon @command{nfsd}." #. type: item -#: guix-git/doc/guix.texi:28825 +#: guix-git/doc/guix.texi:29162 #, no-wrap msgid "@code{nfsd-tcp?} (default: @code{#t})" msgstr "@code{nfsd-tcp?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:28827 +#: guix-git/doc/guix.texi:29164 msgid "Whether the @command{nfsd} daemon should listen on a TCP socket." msgstr "Determina si el daemon @command{nfsd} debe escuchar en un puerto TCP." #. type: item -#: guix-git/doc/guix.texi:28828 +#: guix-git/doc/guix.texi:29165 #, no-wrap msgid "@code{nfsd-udp?} (default: @code{#f})" msgstr "@code{nfsd-udp?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28830 +#: guix-git/doc/guix.texi:29167 msgid "Whether the @command{nfsd} daemon should listen on a UDP socket." msgstr "Determina si el daemon @command{nfsd} debe escuchar en un puerto UDP." #. type: item -#: guix-git/doc/guix.texi:28831 guix-git/doc/guix.texi:28915 -#: guix-git/doc/guix.texi:28940 +#: guix-git/doc/guix.texi:29168 guix-git/doc/guix.texi:29252 +#: guix-git/doc/guix.texi:29277 #, no-wrap msgid "@code{pipefs-directory} (default: @code{\"/var/lib/nfs/rpc_pipefs\"})" msgstr "@code{pipefs-directory} (predeterminado: @code{\"/var/lib/nfs/rpc_pipefs\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:28833 guix-git/doc/guix.texi:28917 -#: guix-git/doc/guix.texi:28942 +#: guix-git/doc/guix.texi:29170 guix-git/doc/guix.texi:29254 +#: guix-git/doc/guix.texi:29279 msgid "The directory where the pipefs file system is mounted." msgstr "El directorio donde el sistema de archivos pipefs debe montarse." #. type: item -#: guix-git/doc/guix.texi:28834 +#: guix-git/doc/guix.texi:29171 #, no-wrap msgid "@code{debug} (default: @code{'()\"})" msgstr "@code{debug} (predeterminada: @code{'()\"})" #. type: table -#: guix-git/doc/guix.texi:28838 +#: guix-git/doc/guix.texi:29175 msgid "A list of subsystems for which debugging output should be enabled. This is a list of symbols. Any of these symbols are valid: @code{nfsd}, @code{nfs}, @code{rpc}, @code{idmap}, @code{statd}, or @code{mountd}." msgstr "Una lista de subsistemas para los cuales debe activarse la salida de depuración. Es una lista de símbolos. Cualquiera de estos símbolos son válidos: @code{nfsd}, @code{nfs}, @code{rpc}, @code{idmap}, @code{statd} o @code{mountd}." #. type: Plain text -#: guix-git/doc/guix.texi:28843 +#: guix-git/doc/guix.texi:29180 msgid "If you don't need a complete NFS service or prefer to build it yourself you can use the individual component services that are documented below." msgstr "Si no necesita un servicio NFS completo o prefiere construirlo por su cuenta puede usar los componentes individuales que se documentan a continuación." #. type: subsubheading -#: guix-git/doc/guix.texi:28844 +#: guix-git/doc/guix.texi:29181 #, no-wrap msgid "RPC Bind Service" msgstr "Servicio RPC Bind" #. type: cindex -#: guix-git/doc/guix.texi:28845 +#: guix-git/doc/guix.texi:29182 #, no-wrap msgid "rpcbind" msgstr "rpcbind" #. type: Plain text -#: guix-git/doc/guix.texi:28851 +#: guix-git/doc/guix.texi:29188 msgid "The RPC Bind service provides a facility to map program numbers into universal addresses. Many NFS related services use this facility. Hence it is automatically started when a dependent service starts." msgstr "El servicio RPC Bind proporciona una forma de asociar números de programa con direcciones universales. Muchos servicios relacionados con NFS usan esta característica. De ahí que se inicie automáticamente cuando un servicio dependiente se inicia." #. type: defvr -#: guix-git/doc/guix.texi:28852 +#: guix-git/doc/guix.texi:29189 #, no-wrap msgid "{Scheme Variable} rpcbind-service-type" msgstr "{Variable Scheme} rpcbind-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28854 +#: guix-git/doc/guix.texi:29191 msgid "A service type for the RPC portmapper daemon." msgstr "Un tipo de servicio para el daemon de asignación de puertos RPC." #. type: deftp -#: guix-git/doc/guix.texi:28857 +#: guix-git/doc/guix.texi:29194 #, no-wrap msgid "{Data Type} rpcbind-configuration" msgstr "{Tipo de datos} rpcbind-configuration" #. type: deftp -#: guix-git/doc/guix.texi:28860 +#: guix-git/doc/guix.texi:29197 msgid "Data type representing the configuration of the RPC Bind Service. This type has the following parameters:" msgstr "Tipo de datos que representa la configuración del servicio RPC Bind. Este tipo tiene los siguientes parámetros:" #. type: item -#: guix-git/doc/guix.texi:28864 +#: guix-git/doc/guix.texi:29201 #, no-wrap msgid "@code{warm-start?} (default: @code{#t})" msgstr "@code{warm-start?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:28868 +#: guix-git/doc/guix.texi:29205 msgid "If this parameter is @code{#t}, then the daemon will read a state file on startup thus reloading state information saved by a previous instance." msgstr "Si este parámetro es @code{#t}, el daemon leerá el archivo de estado durante el arranche, por tanto recargando la información del estado almacenada por la instancia previa." #. type: subsubheading -#: guix-git/doc/guix.texi:28872 +#: guix-git/doc/guix.texi:29209 #, no-wrap msgid "Pipefs Pseudo File System" msgstr "Pseudo-sistema de archivos pipefs" #. type: cindex -#: guix-git/doc/guix.texi:28873 +#: guix-git/doc/guix.texi:29210 #, no-wrap msgid "pipefs" msgstr "pipefs" #. type: cindex -#: guix-git/doc/guix.texi:28874 +#: guix-git/doc/guix.texi:29211 #, no-wrap msgid "rpc_pipefs" msgstr "rpc_pipefs" #. type: Plain text -#: guix-git/doc/guix.texi:28878 +#: guix-git/doc/guix.texi:29215 msgid "The pipefs file system is used to transfer NFS related data between the kernel and user space programs." msgstr "El sistema de archivos pipefs se usa para transferir datos relacionados con NFS entre el núcleo y los programas de espacio de usuaria." #. type: defvr -#: guix-git/doc/guix.texi:28879 +#: guix-git/doc/guix.texi:29216 #, no-wrap msgid "{Scheme Variable} pipefs-service-type" msgstr "{Variable Scheme} pipefs-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28881 +#: guix-git/doc/guix.texi:29218 msgid "A service type for the pipefs pseudo file system." msgstr "Un tipo de servicio para el pseudo-sistema de archivos pipefs." #. type: deftp -#: guix-git/doc/guix.texi:28883 +#: guix-git/doc/guix.texi:29220 #, no-wrap msgid "{Data Type} pipefs-configuration" msgstr "{Tipo de datos} pipefs-configuration" #. type: deftp -#: guix-git/doc/guix.texi:28886 +#: guix-git/doc/guix.texi:29223 msgid "Data type representing the configuration of the pipefs pseudo file system service. This type has the following parameters:" msgstr "Tipo de datos que representa la configuración del servicio del pseudo-sistema de archivos pipefs. Este tipo tiene los siguientes parámetros:" #. type: item -#: guix-git/doc/guix.texi:28887 +#: guix-git/doc/guix.texi:29224 #, no-wrap msgid "@code{mount-point} (default: @code{\"/var/lib/nfs/rpc_pipefs\"})" msgstr "@code{mount-point} (predeterminado: @code{\"/var/lib/nfs/rpc_pipefs\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:28889 +#: guix-git/doc/guix.texi:29226 msgid "The directory to which the file system is to be attached." msgstr "El directorio al que se debe asociar el sistema de archivos." #. type: subsubheading -#: guix-git/doc/guix.texi:28893 +#: guix-git/doc/guix.texi:29230 #, no-wrap msgid "GSS Daemon Service" msgstr "Servicio del daemon GSS" #. type: cindex -#: guix-git/doc/guix.texi:28894 +#: guix-git/doc/guix.texi:29231 #, no-wrap msgid "GSSD" msgstr "GSSD" #. type: cindex -#: guix-git/doc/guix.texi:28895 +#: guix-git/doc/guix.texi:29232 #, no-wrap msgid "GSS" msgstr "GSS" #. type: cindex -#: guix-git/doc/guix.texi:28896 +#: guix-git/doc/guix.texi:29233 #, no-wrap msgid "global security system" msgstr "sistema de seguridad global (GSS)" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:28903 +#: guix-git/doc/guix.texi:29240 msgid "The @dfn{global security system} (GSS) daemon provides strong security for RPC based protocols. Before exchanging RPC requests an RPC client must establish a security context. Typically this is done using the Kerberos command @command{kinit} or automatically at login time using PAM services (@pxref{Kerberos Services})." msgstr "El daemon @dfn{sistema de seguridad global} (GSS) proporciona fuertes garantías de seguridad para protocolos basados en RPC. Antes de intercambiar peticiones RPC el cliente debe establecer un contexto de seguridad. Habitualmente esto se lleva a cabo con el uso de la orden @command{kinit}o automáticamente durante el ingreso al sistema mediante el uso de servicios PAM (@pxref{Kerberos Services})." #. type: defvr -#: guix-git/doc/guix.texi:28904 +#: guix-git/doc/guix.texi:29241 #, no-wrap msgid "{Scheme Variable} gss-service-type" msgstr "{Variable Scheme} gss-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28906 +#: guix-git/doc/guix.texi:29243 msgid "A service type for the Global Security System (GSS) daemon." msgstr "Un tipo de servicio para el daemon del sistema de seguridad global (GSS)." #. type: deftp -#: guix-git/doc/guix.texi:28908 +#: guix-git/doc/guix.texi:29245 #, no-wrap msgid "{Data Type} gss-configuration" msgstr "{Tipo de datos} gss-configuration" #. type: deftp -#: guix-git/doc/guix.texi:28911 +#: guix-git/doc/guix.texi:29248 msgid "Data type representing the configuration of the GSS daemon service. This type has the following parameters:" msgstr "Tipo de datos que representa la configuración del servicio del daemon GSS. Este tipo tiene los siguientes parámetros:" #. type: table -#: guix-git/doc/guix.texi:28914 +#: guix-git/doc/guix.texi:29251 msgid "The package in which the @command{rpc.gssd} command is to be found." msgstr "Paquete en el que se encuentra la orden @command{rpc.gssd}." #. type: subsubheading -#: guix-git/doc/guix.texi:28922 +#: guix-git/doc/guix.texi:29259 #, no-wrap msgid "IDMAP Daemon Service" msgstr "Servicio del daemon IDMAP" #. type: cindex -#: guix-git/doc/guix.texi:28923 +#: guix-git/doc/guix.texi:29260 #, no-wrap msgid "idmapd" msgstr "idmapd" #. type: cindex -#: guix-git/doc/guix.texi:28924 +#: guix-git/doc/guix.texi:29261 #, no-wrap msgid "name mapper" msgstr "servicio de asociación de nombres" #. type: Plain text -#: guix-git/doc/guix.texi:28928 +#: guix-git/doc/guix.texi:29265 msgid "The idmap daemon service provides mapping between user IDs and user names. Typically it is required in order to access file systems mounted via NFSv4." msgstr "El servicio del daemon idmap proporciona una asociación entre identificadores de usuaria y nombres de usuaria. Habitualmente es necesario para acceder sistemas de archivos montados con NFSv4." #. type: defvr -#: guix-git/doc/guix.texi:28929 +#: guix-git/doc/guix.texi:29266 #, no-wrap msgid "{Scheme Variable} idmap-service-type" msgstr "{Variable Scheme} idmap-service-type" @@ -56736,80 +57475,80 @@ msgstr "{Variable Scheme} idmap-service-type" # FUZZY # TODO (MAAV): Mejorar traducción... #. type: defvr -#: guix-git/doc/guix.texi:28931 +#: guix-git/doc/guix.texi:29268 msgid "A service type for the Identity Mapper (IDMAP) daemon." msgstr "Un tipo de servicio para el daemon de asociación de identidades (IDMAP)." #. type: deftp -#: guix-git/doc/guix.texi:28933 +#: guix-git/doc/guix.texi:29270 #, no-wrap msgid "{Data Type} idmap-configuration" msgstr "{Tipo de datos} idmap-configuration" #. type: deftp -#: guix-git/doc/guix.texi:28936 +#: guix-git/doc/guix.texi:29273 msgid "Data type representing the configuration of the IDMAP daemon service. This type has the following parameters:" msgstr "Tipo de datos que representa la configuración del servicio del daemon IDMAP. Este tipo tiene los siguientes parámetros:" #. type: table -#: guix-git/doc/guix.texi:28939 +#: guix-git/doc/guix.texi:29276 msgid "The package in which the @command{rpc.idmapd} command is to be found." msgstr "Paquete en el que se encuentra la orden @command{rpc.idmapd}." #. type: item -#: guix-git/doc/guix.texi:28943 +#: guix-git/doc/guix.texi:29280 #, no-wrap msgid "@code{domain} (default: @code{#f})" msgstr "@code{domain} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:28947 +#: guix-git/doc/guix.texi:29284 msgid "The local NFSv4 domain name. This must be a string or @code{#f}. If it is @code{#f} then the daemon will use the host's fully qualified domain name." msgstr "El nombre de dominio local de NFSv4. Debe ser una cadena o @code{#f}. Si es @code{#f} el daemon usará el nombre de dominio totalmente cualificado de la máquina." #. type: item -#: guix-git/doc/guix.texi:28948 +#: guix-git/doc/guix.texi:29285 #, no-wrap msgid "@code{verbosity} (default: @code{0})" msgstr "@code{verbosity} (predeterminado: @code{0})" # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:28950 +#: guix-git/doc/guix.texi:29287 msgid "The verbosity level of the daemon." msgstr "El nivel de información de los mensajes del daemon." #. type: Plain text -#: guix-git/doc/guix.texi:28961 +#: guix-git/doc/guix.texi:29298 #, fuzzy msgid "@uref{https://guix.gnu.org/cuirass/, Cuirass} is a continuous integration tool for Guix. It can be used both for development and for providing substitutes to others (@pxref{Substitutes})." msgstr "@uref{https://git.savannah.gnu.org/cgit/guix/guix-cuirass.git, Cuirass} es una herramienta de integración continua para Guix. Puede usarse tanto para el desarrollo como para proporcionar sustituciones a otras personas (@pxref{Substitutes})." #. type: Plain text -#: guix-git/doc/guix.texi:28963 +#: guix-git/doc/guix.texi:29300 msgid "The @code{(gnu services cuirass)} module provides the following service." msgstr "El módulo @code{(gnu services cuirass)} proporciona el siguiente servicio." #. type: defvr -#: guix-git/doc/guix.texi:28964 +#: guix-git/doc/guix.texi:29301 #, no-wrap msgid "{Scheme Procedure} cuirass-service-type" msgstr "{Procedimiento Scheme} cuirass-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28967 +#: guix-git/doc/guix.texi:29304 msgid "The type of the Cuirass service. Its value must be a @code{cuirass-configuration} object, as described below." msgstr "El tipo del servicio Cuirass. Su valor debe ser un objeto @code{cuirass-configuration}, como se describe a continuación." #. type: Plain text -#: guix-git/doc/guix.texi:28972 +#: guix-git/doc/guix.texi:29309 #, fuzzy msgid "To add build jobs, you have to set the @code{specifications} field of the configuration. For instance, the following example will build all the packages provided by the @code{my-channel} channel." msgstr "Para añadir trabajos de construcción, debe proporcionarlos en el campo @code{specifications} de la configuración. A continuación se encuentra un ejemplo de un servicio que consulta el repositorio de Guix y construye los paquetes de un manifiesto. Algunos de los paquetes se definen en la entrada @code{\"custom-packages\"}, que es el equivalente de @env{GUIX_PACKAGE_PATH}." #. type: lisp -#: guix-git/doc/guix.texi:28983 +#: guix-git/doc/guix.texi:29320 #, fuzzy, no-wrap msgid "" "(define %cuirass-specs\n" @@ -56835,7 +57574,7 @@ msgstr "" " (port . \"8080\"))))))))\n" #. type: lisp -#: guix-git/doc/guix.texi:28987 guix-git/doc/guix.texi:29001 +#: guix-git/doc/guix.texi:29324 guix-git/doc/guix.texi:29338 #, no-wrap msgid "" "(service cuirass-service-type\n" @@ -56847,12 +57586,12 @@ msgstr "" " (specifications %especificacion-de-cuirass)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:28991 +#: guix-git/doc/guix.texi:29328 msgid "To build the @code{linux-libre} package defined by the default Guix channel, one can use the following configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28997 +#: guix-git/doc/guix.texi:29334 #, no-wrap msgid "" "(define %cuirass-specs\n" @@ -56863,588 +57602,588 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29006 +#: guix-git/doc/guix.texi:29343 msgid "The other configuration possibilities, as well as the specification record itself are described in the Cuirass manual (@pxref{Specifications,,, cuirass, Cuirass})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29010 +#: guix-git/doc/guix.texi:29347 msgid "While information related to build jobs is located directly in the specifications, global settings for the @command{cuirass} process are accessible in other @code{cuirass-configuration} fields." msgstr "Mientras que la información de los trabajos de construcción se encuentra directamente en las especificaciones, la configuración global del proceso @command{cuirass} está accesible en otros campos de @code{cuirass-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:29011 +#: guix-git/doc/guix.texi:29348 #, no-wrap msgid "{Data Type} cuirass-configuration" msgstr "{Tipo de datos} cuirass-configuration" #. type: deftp -#: guix-git/doc/guix.texi:29013 +#: guix-git/doc/guix.texi:29350 msgid "Data type representing the configuration of Cuirass." msgstr "Tipo de datos que representa la configuración de Cuirass." #. type: item -#: guix-git/doc/guix.texi:29015 guix-git/doc/guix.texi:29152 +#: guix-git/doc/guix.texi:29352 guix-git/doc/guix.texi:29489 #, no-wrap msgid "@code{cuirass} (default: @code{cuirass})" msgstr "@code{cuirass} (predeterminado: @code{cuirass})" #. type: table -#: guix-git/doc/guix.texi:29017 guix-git/doc/guix.texi:29154 +#: guix-git/doc/guix.texi:29354 guix-git/doc/guix.texi:29491 msgid "The Cuirass package to use." msgstr "El paquete Cuirass usado." #. type: item -#: guix-git/doc/guix.texi:29018 +#: guix-git/doc/guix.texi:29355 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass.log\"})" msgstr "@code{log-file} (predeterminado: @code{\"/var/log/cuirass.log\"})" #. type: table -#: guix-git/doc/guix.texi:29020 guix-git/doc/guix.texi:29124 -#: guix-git/doc/guix.texi:29167 +#: guix-git/doc/guix.texi:29357 guix-git/doc/guix.texi:29461 +#: guix-git/doc/guix.texi:29504 msgid "Location of the log file." msgstr "Localización del archivo de registro." #. type: item -#: guix-git/doc/guix.texi:29021 +#: guix-git/doc/guix.texi:29358 #, no-wrap msgid "@code{web-log-file} (default: @code{\"/var/log/cuirass-web.log\"})" msgstr "@code{web-log-file} (predeterminado: @code{\"/var/log/cuirass-web.log\"})" #. type: table -#: guix-git/doc/guix.texi:29023 +#: guix-git/doc/guix.texi:29360 msgid "Location of the log file used by the web interface." msgstr "Localización del archivo de registro usado por la interfaz web." #. type: item -#: guix-git/doc/guix.texi:29024 +#: guix-git/doc/guix.texi:29361 #, no-wrap msgid "@code{cache-directory} (default: @code{\"/var/cache/cuirass\"})" msgstr "@code{cache-directory} (predeterminado: @code{\"/var/cache/cuirass\"})" #. type: table -#: guix-git/doc/guix.texi:29026 +#: guix-git/doc/guix.texi:29363 msgid "Location of the repository cache." msgstr "Localización de la caché del repositorio." #. type: item -#: guix-git/doc/guix.texi:29027 +#: guix-git/doc/guix.texi:29364 #, no-wrap msgid "@code{user} (default: @code{\"cuirass\"})" msgstr "@code{user} (predeterminado: @code{\"cuirass\"})" #. type: table -#: guix-git/doc/guix.texi:29029 +#: guix-git/doc/guix.texi:29366 msgid "Owner of the @code{cuirass} process." msgstr "Propietaria del proceso @code{cuirass}." #. type: item -#: guix-git/doc/guix.texi:29030 +#: guix-git/doc/guix.texi:29367 #, no-wrap msgid "@code{group} (default: @code{\"cuirass\"})" msgstr "@code{group} (predeterminado: @code{\"cuirass\"})" #. type: table -#: guix-git/doc/guix.texi:29032 +#: guix-git/doc/guix.texi:29369 msgid "Owner's group of the @code{cuirass} process." msgstr "Grupo propietario del proceso @code{cuirass}." #. type: item -#: guix-git/doc/guix.texi:29033 +#: guix-git/doc/guix.texi:29370 #, no-wrap msgid "@code{interval} (default: @code{60})" msgstr "@code{interval} (predeterminado: @code{60})" #. type: table -#: guix-git/doc/guix.texi:29036 +#: guix-git/doc/guix.texi:29373 msgid "Number of seconds between the poll of the repositories followed by the Cuirass jobs." msgstr "Número de segundos entre las consulta de repositorios seguida de los trabajos de Cuirass." #. type: item -#: guix-git/doc/guix.texi:29037 +#: guix-git/doc/guix.texi:29374 #, fuzzy, no-wrap msgid "@code{parameters} (default: @code{#f})" msgstr "@code{parameters} (predeterminados: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:29040 +#: guix-git/doc/guix.texi:29377 msgid "Read parameters from the given @var{parameters} file. The supported parameters are described here (@pxref{Parameters,,, cuirass, Cuirass})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29041 +#: guix-git/doc/guix.texi:29378 #, fuzzy, no-wrap msgid "@code{remote-server} (default: @code{#f})" msgstr "@code{server} (predeterminada: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29044 +#: guix-git/doc/guix.texi:29381 msgid "A @code{cuirass-remote-server-configuration} record to use the build remote mechanism or @code{#f} to use the default build mechanism." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29045 +#: guix-git/doc/guix.texi:29382 #, fuzzy, no-wrap msgid "@code{database} (default: @code{\"dbname=cuirass host=/var/run/postgresql\"})" msgstr "@code{host} (predeterminado: @code{\"localhost\"})" #. type: table -#: guix-git/doc/guix.texi:29050 +#: guix-git/doc/guix.texi:29387 msgid "Use @var{database} as the database containing the jobs and the past build results. Since Cuirass uses PostgreSQL as a database engine, @var{database} must be a string such as @code{\"dbname=cuirass host=localhost\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29051 +#: guix-git/doc/guix.texi:29388 #, no-wrap msgid "@code{port} (default: @code{8081})" msgstr "@code{port} (predeterminado: @code{8081})" #. type: table -#: guix-git/doc/guix.texi:29053 +#: guix-git/doc/guix.texi:29390 msgid "Port number used by the HTTP server." msgstr "Número de puerto usado por el servidor HTTP." #. type: table -#: guix-git/doc/guix.texi:29057 +#: guix-git/doc/guix.texi:29394 msgid "Listen on the network interface for @var{host}. The default is to accept connections from localhost." msgstr "Escucha en la interfaz de red de la dirección @var{host}. El comportamiento predeterminado es aceptar conexiones desde la red local." #. type: item -#: guix-git/doc/guix.texi:29058 +#: guix-git/doc/guix.texi:29395 #, no-wrap msgid "@code{specifications} (default: @code{#~'()})" msgstr "@code{specifications} (predeterminada: @code{#~'()})" #. type: table -#: guix-git/doc/guix.texi:29062 +#: guix-git/doc/guix.texi:29399 #, fuzzy msgid "A gexp (@pxref{G-Expressions}) that evaluates to a list of specifications records. The specification record is described in the Cuirass manual (@pxref{Specifications,,, cuirass, Cuirass})." msgstr "Una expresión-G (@pxref{G-Expressions}) que evalúa a una lista de especificaciones, donde una especificación es una lista asociativa (@pxref{Associations Lists,,, guile, GNU Guile Reference Manual}) cuyas claves son palabras claves (@code{#:ejemplo-de-palabra-clave}) como se muestra en el ejemplo anterior." #. type: item -#: guix-git/doc/guix.texi:29063 +#: guix-git/doc/guix.texi:29400 #, no-wrap msgid "@code{use-substitutes?} (default: @code{#f})" msgstr "@code{use-substitutes?} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:29066 +#: guix-git/doc/guix.texi:29403 msgid "This allows using substitutes to avoid building every dependencies of a job from source." msgstr "Permite el uso de sustituciones para evitar la construcción desde las fuentes de todas las dependencias de un trabajo." #. type: item -#: guix-git/doc/guix.texi:29067 guix-git/doc/guix.texi:36336 +#: guix-git/doc/guix.texi:29404 guix-git/doc/guix.texi:36826 #, no-wrap msgid "@code{one-shot?} (default: @code{#f})" msgstr "@code{one-shot?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29069 +#: guix-git/doc/guix.texi:29406 msgid "Only evaluate specifications and build derivations once." msgstr "Evalúa las especificaciones y construye las derivaciones solo una vez." #. type: item -#: guix-git/doc/guix.texi:29070 +#: guix-git/doc/guix.texi:29407 #, no-wrap msgid "@code{fallback?} (default: @code{#f})" msgstr "@code{fallback?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29073 +#: guix-git/doc/guix.texi:29410 msgid "When substituting a pre-built binary fails, fall back to building packages locally." msgstr "Cuando la sustitución de un binario preconstruido falle, se intentará la construcción local de los paquetes." #. type: table -#: guix-git/doc/guix.texi:29076 +#: guix-git/doc/guix.texi:29413 msgid "Extra options to pass when running the Cuirass processes." msgstr "Opciones adicionales proporcionadas a los procesos de Cuirass." #. type: cindex -#: guix-git/doc/guix.texi:29080 +#: guix-git/doc/guix.texi:29417 #, fuzzy, no-wrap msgid "remote build" msgstr "construcciones reproducibles" #. type: subsubheading -#: guix-git/doc/guix.texi:29081 +#: guix-git/doc/guix.texi:29418 #, fuzzy, no-wrap msgid "Cuirass remote building" msgstr "última revisión, construcción" #. type: Plain text -#: guix-git/doc/guix.texi:29084 +#: guix-git/doc/guix.texi:29421 msgid "Cuirass supports two mechanisms to build derivations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29086 +#: guix-git/doc/guix.texi:29423 #, fuzzy, no-wrap msgid "Using the local Guix daemon." msgstr "Ejecutar el daemon de construcción." #. type: itemize -#: guix-git/doc/guix.texi:29090 +#: guix-git/doc/guix.texi:29427 msgid "This is the default build mechanism. Once the build jobs are evaluated, they are sent to the local Guix daemon. Cuirass then listens to the Guix daemon output to detect the various build events." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29091 +#: guix-git/doc/guix.texi:29428 #, fuzzy, no-wrap msgid "Using the remote build mechanism." msgstr "Preparar el entorno aislado de construcción." #. type: itemize -#: guix-git/doc/guix.texi:29095 +#: guix-git/doc/guix.texi:29432 msgid "The build jobs are not submitted to the local Guix daemon. Instead, a remote server dispatches build requests to the connect remote workers, according to the build priorities." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29102 +#: guix-git/doc/guix.texi:29439 msgid "To enable this build mode a @code{cuirass-remote-server-configuration} record must be passed as @code{remote-server} argument of the @code{cuirass-configuration} record. The @code{cuirass-remote-server-configuration} record is described below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29107 +#: guix-git/doc/guix.texi:29444 msgid "This build mode scales way better than the default build mode. This is the build mode that is used on the GNU Guix build farm at @url{https://ci.guix.gnu.org}. It should be preferred when using Cuirass to build large amount of packages." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29108 +#: guix-git/doc/guix.texi:29445 #, fuzzy, no-wrap msgid "{Data Type} cuirass-remote-server-configuration" msgstr "{Tipo de datos} cuirass-configuration" # FUZZY #. type: deftp -#: guix-git/doc/guix.texi:29110 +#: guix-git/doc/guix.texi:29447 #, fuzzy msgid "Data type representing the configuration of the Cuirass remote-server." msgstr "Tipo de datos que representa la configuración del servicio de datos de Guix." #. type: item -#: guix-git/doc/guix.texi:29112 +#: guix-git/doc/guix.texi:29449 #, fuzzy, no-wrap msgid "@code{backend-port} (default: @code{5555})" msgstr "@code{listen-port} (predeterminado: @code{53})" #. type: table -#: guix-git/doc/guix.texi:29115 +#: guix-git/doc/guix.texi:29452 msgid "The TCP port for communicating with @code{remote-worker} processes using ZMQ. It defaults to @code{5555}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29116 +#: guix-git/doc/guix.texi:29453 #, fuzzy, no-wrap msgid "@code{log-port} (default: @code{5556})" msgstr "@code{port} (predeterminado: @code{53})" #. type: table -#: guix-git/doc/guix.texi:29118 +#: guix-git/doc/guix.texi:29455 msgid "The TCP port of the log server. It defaults to @code{5556}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29119 +#: guix-git/doc/guix.texi:29456 #, fuzzy, no-wrap msgid "@code{publish-port} (default: @code{5557})" msgstr "@code{listen-port} (predeterminado: @code{53})" #. type: table -#: guix-git/doc/guix.texi:29121 +#: guix-git/doc/guix.texi:29458 msgid "The TCP port of the publish server. It defaults to @code{5557}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29122 +#: guix-git/doc/guix.texi:29459 #, fuzzy, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass-remote-server.log\"})" msgstr "@code{log-file} (predeterminado: @code{\"/var/log/cuirass.log\"})" #. type: item -#: guix-git/doc/guix.texi:29125 +#: guix-git/doc/guix.texi:29462 #, fuzzy, no-wrap msgid "@code{cache} (default: @code{\"/var/cache/cuirass/remote\"})" msgstr "@code{cache-directory} (predeterminado: @code{\"/var/cache/cuirass\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:29127 +#: guix-git/doc/guix.texi:29464 #, fuzzy msgid "Use @var{cache} directory to cache build log files." msgstr "Directorio en el que NGinx escribirá los archivos de registro." #. type: item -#: guix-git/doc/guix.texi:29128 +#: guix-git/doc/guix.texi:29465 #, fuzzy, no-wrap msgid "@code{trigger-url} (default: @code{#f})" msgstr "@code{static-url} (predeterminada: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29131 +#: guix-git/doc/guix.texi:29468 msgid "Once a substitute is successfully fetched, trigger substitute baking at @var{trigger-url}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29136 +#: guix-git/doc/guix.texi:29473 msgid "If set to false, do not start a publish server and ignore the @code{publish-port} argument. This can be useful if there is already a standalone publish server standing next to the remote server." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:29138 guix-git/doc/guix.texi:29175 +#: guix-git/doc/guix.texi:29475 guix-git/doc/guix.texi:29512 #, fuzzy, no-wrap msgid "private-key" msgstr "--private-key=@var{archivo}" #. type: Plain text -#: guix-git/doc/guix.texi:29147 +#: guix-git/doc/guix.texi:29484 msgid "At least one remote worker must also be started on any machine of the local network to actually perform the builds and report their status." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29148 +#: guix-git/doc/guix.texi:29485 #, fuzzy, no-wrap msgid "{Data Type} cuirass-remote-worker-configuration" msgstr "{Tipo de datos} cuirass-configuration" #. type: deftp -#: guix-git/doc/guix.texi:29150 +#: guix-git/doc/guix.texi:29487 #, fuzzy msgid "Data type representing the configuration of the Cuirass remote-worker." msgstr "Tipo de datos que representa la configuración de Cuirass." #. type: item -#: guix-git/doc/guix.texi:29155 +#: guix-git/doc/guix.texi:29492 #, fuzzy, no-wrap msgid "@code{workers} (default: @code{1})" msgstr "@code{workers} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29157 +#: guix-git/doc/guix.texi:29494 msgid "Start @var{workers} parallel workers." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29161 +#: guix-git/doc/guix.texi:29498 msgid "Do not use Avahi discovery and connect to the given @code{server} IP address instead." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29162 +#: guix-git/doc/guix.texi:29499 #, fuzzy, no-wrap msgid "@code{systems} (default: @code{(list (%current-system))})" msgstr "@code{supported-systems} (predeterminados: @code{%supported-systems})" #. type: table -#: guix-git/doc/guix.texi:29164 +#: guix-git/doc/guix.texi:29501 msgid "Only request builds for the given @var{systems}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29165 +#: guix-git/doc/guix.texi:29502 #, fuzzy, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass-remote-worker.log\"})" msgstr "@code{log-file} (predeterminado: @code{\"/var/log/cuirass.log\"})" #. type: item -#: guix-git/doc/guix.texi:29168 +#: guix-git/doc/guix.texi:29505 #, fuzzy, no-wrap msgid "@code{publish-port} (default: @code{5558})" msgstr "@code{listen-port} (predeterminado: @code{53})" #. type: table -#: guix-git/doc/guix.texi:29170 +#: guix-git/doc/guix.texi:29507 msgid "The TCP port of the publish server. It defaults to @code{5558}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29182 +#: guix-git/doc/guix.texi:29519 #, no-wrap msgid "Laminar" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29187 +#: guix-git/doc/guix.texi:29524 msgid "@uref{https://laminar.ohwg.net/, Laminar} is a lightweight and modular Continuous Integration service. It doesn't have a configuration web UI instead uses version-controllable configuration files and scripts." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29190 +#: guix-git/doc/guix.texi:29527 msgid "Laminar encourages the use of existing tools such as bash and cron instead of reinventing them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29191 +#: guix-git/doc/guix.texi:29528 #, fuzzy, no-wrap msgid "{Scheme Procedure} laminar-service-type" msgstr "{Procedimiento Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:29194 +#: guix-git/doc/guix.texi:29531 #, fuzzy msgid "The type of the Laminar service. Its value must be a @code{laminar-configuration} object, as described below." msgstr "El tipo del servicio Cuirass. Su valor debe ser un objeto @code{cuirass-configuration}, como se describe a continuación." #. type: defvr -#: guix-git/doc/guix.texi:29198 +#: guix-git/doc/guix.texi:29535 msgid "All configuration values have defaults, a minimal configuration to get Laminar running is shown below. By default, the web interface is available on port 8080." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29201 +#: guix-git/doc/guix.texi:29538 #, fuzzy, no-wrap msgid "(service laminar-service-type)\n" msgstr "(service tailon-service-type)\n" #. type: deftp -#: guix-git/doc/guix.texi:29204 +#: guix-git/doc/guix.texi:29541 #, fuzzy, no-wrap msgid "{Data Type} laminar-configuration" msgstr "{Tipo de datos} login-configuration" #. type: deftp -#: guix-git/doc/guix.texi:29206 +#: guix-git/doc/guix.texi:29543 #, fuzzy msgid "Data type representing the configuration of Laminar." msgstr "Tipo de datos que representa la configuración de gmnisrv." #. type: item -#: guix-git/doc/guix.texi:29208 +#: guix-git/doc/guix.texi:29545 #, fuzzy, no-wrap msgid "@code{laminar} (default: @code{laminar})" msgstr "@code{slim} (predeterminado: @code{slim})" #. type: table -#: guix-git/doc/guix.texi:29210 +#: guix-git/doc/guix.texi:29547 #, fuzzy msgid "The Laminar package to use." msgstr "El paquete tailon usado." #. type: item -#: guix-git/doc/guix.texi:29211 +#: guix-git/doc/guix.texi:29548 #, fuzzy, no-wrap msgid "@code{home-directory} (default: @code{\"/var/lib/laminar\"})" msgstr "@code{log-directory} (predeterminado: @code{\"/var/log/nginx\"})" #. type: table -#: guix-git/doc/guix.texi:29213 +#: guix-git/doc/guix.texi:29550 #, fuzzy msgid "The directory for job configurations and run directories." msgstr "Directorio en el que se almacenará la configuración y repositorios de Gitolite." #. type: item -#: guix-git/doc/guix.texi:29214 +#: guix-git/doc/guix.texi:29551 #, fuzzy, no-wrap msgid "@code{bind-http} (default: @code{\"*:8080\"})" msgstr "@code{bind} (predeterminado: @code{\"localhost:8080\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:29217 +#: guix-git/doc/guix.texi:29554 #, fuzzy msgid "The interface/port or unix socket on which laminard should listen for incoming connections to the web frontend." msgstr "Puerto TCP en el que @command{sshd} espera conexiones entrantes." #. type: item -#: guix-git/doc/guix.texi:29218 +#: guix-git/doc/guix.texi:29555 #, fuzzy, no-wrap msgid "@code{bind-rpc} (default: @code{\"unix-abstract:laminar\"})" msgstr "@code{build-group} (predeterminado: @code{\"guixbuild\"})" #. type: table -#: guix-git/doc/guix.texi:29221 +#: guix-git/doc/guix.texi:29558 msgid "The interface/port or unix socket on which laminard should listen for incoming commands such as build triggers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29222 +#: guix-git/doc/guix.texi:29559 #, fuzzy, no-wrap msgid "@code{title} (default: @code{\"Laminar\"})" msgstr "@code{ttl} (predeterminado: @code{\"\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:29224 +#: guix-git/doc/guix.texi:29561 #, fuzzy msgid "The page title to show in the web frontend." msgstr "El puerto al que se asociará el servicio web." #. type: item -#: guix-git/doc/guix.texi:29225 +#: guix-git/doc/guix.texi:29562 #, fuzzy, no-wrap msgid "@code{keep-rundirs} (default: @code{0})" msgstr "@code{keep-baud?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29229 +#: guix-git/doc/guix.texi:29566 msgid "Set to an integer defining how many rundirs to keep per job. The lowest-numbered ones will be deleted. The default is 0, meaning all run dirs will be immediately deleted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29230 +#: guix-git/doc/guix.texi:29567 #, fuzzy, no-wrap msgid "@code{archive-url} (default: @code{#f})" msgstr "@code{arch} (predeterminada: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29233 +#: guix-git/doc/guix.texi:29570 msgid "The web frontend served by laminard will use this URL to form links to artefacts archived jobs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29234 +#: guix-git/doc/guix.texi:29571 #, fuzzy, no-wrap msgid "@code{base-url} (default: @code{#f})" msgstr "@code{users} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29236 +#: guix-git/doc/guix.texi:29573 #, fuzzy msgid "Base URL to use for links to laminar itself." msgstr "URI usada para la conexión a la base de datos." #. type: cindex -#: guix-git/doc/guix.texi:29243 +#: guix-git/doc/guix.texi:29580 #, no-wrap msgid "tlp" msgstr "tlp" #. type: cindex -#: guix-git/doc/guix.texi:29244 +#: guix-git/doc/guix.texi:29581 #, no-wrap msgid "power management with TLP" msgstr "gestión de energía con TLP" #. type: subsubheading -#: guix-git/doc/guix.texi:29245 +#: guix-git/doc/guix.texi:29582 #, no-wrap msgid "TLP daemon" msgstr "Daemon TLP" #. type: Plain text -#: guix-git/doc/guix.texi:29249 +#: guix-git/doc/guix.texi:29586 msgid "The @code{(gnu services pm)} module provides a Guix service definition for the Linux power management tool TLP." msgstr "El módulo @code{(gnu services pm)} proporciona una definición de servicio Guix para la herramienta de gestión de energía de Linux TLP." #. type: Plain text -#: guix-git/doc/guix.texi:29255 +#: guix-git/doc/guix.texi:29592 msgid "TLP enables various powersaving modes in userspace and kernel. Contrary to @code{upower-service}, it is not a passive, monitoring tool, as it will apply custom settings each time a new power source is detected. More information can be found at @uref{https://linrunner.de/en/tlp/tlp.html, TLP home page}." msgstr "TLP activa varios modos de ahorro de energía en el núcleo y en espacio de usuaria. Al contrario que @code{upower-service}, no es una herramienta de monitorización pasiva, puesto que aplicará una nueva configuración personalizada cada vez que se detecte una nueva fuente de energía/alimentación. Puede encontrar más información en @uref{https://linrunner.de/en/tlp/tlp.html, la página de TLP}." #. type: deffn -#: guix-git/doc/guix.texi:29256 +#: guix-git/doc/guix.texi:29593 #, no-wrap msgid "{Scheme Variable} tlp-service-type" msgstr "{Variable Scheme} tlp-service-type" #. type: deffn -#: guix-git/doc/guix.texi:29260 +#: guix-git/doc/guix.texi:29597 msgid "The service type for the TLP tool. The default settings are optimised for battery life on most systems, but you can tweak them to your heart's content by adding a valid @code{tlp-configuration}:" msgstr "EL tipo de servicio para la herramienta TLP. La configuración predeterminada está optimizada para la vida de la batería en la mayoría de los sistemas, pero puede modificarla al completo con las opciones que desee proporcionando un objeto @code{tlp-configuration} válido:" #. type: lisp -#: guix-git/doc/guix.texi:29265 +#: guix-git/doc/guix.texi:29602 #, no-wrap msgid "" "(service tlp-service-type\n" @@ -57458,898 +58197,946 @@ msgstr "" " (sched-powersave-on-bat? #t)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:29273 +#: guix-git/doc/guix.texi:29610 msgid "Each parameter definition is preceded by its type; for example, @samp{boolean foo} indicates that the @code{foo} parameter should be specified as a boolean. Types starting with @code{maybe-} denote parameters that won't show up in TLP config file when their value is @code{'disabled}." msgstr "El tipo de cada parámetro antecede la definición del mismo; por ejemplo, @samp{boolean foo} indica que el parámetro @code{foo} debe especificarse como un valor lógico booleano. Los tipos que empiezan con @code{maybe-} indican parámetros que no aparecerán en el archivo de configuración de TLP cuando su valor sea @code{'disabled}." #. type: Plain text -#: guix-git/doc/guix.texi:29283 +#: guix-git/doc/guix.texi:29620 msgid "Available @code{tlp-configuration} fields are:" msgstr "Los campos disponibles de @code{tlp-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:29284 +#: guix-git/doc/guix.texi:29621 #, no-wrap msgid "{@code{tlp-configuration} parameter} package tlp" msgstr "{parámetro de @code{tlp-configuration}} package tlp" #. type: deftypevr -#: guix-git/doc/guix.texi:29286 +#: guix-git/doc/guix.texi:29623 msgid "The TLP package." msgstr "El paquete TLP." #. type: deftypevr -#: guix-git/doc/guix.texi:29289 +#: guix-git/doc/guix.texi:29626 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean tlp-enable?" msgstr "{parámetro de @code{tlp-configuration}} boolean tlp-enable?" #. type: deftypevr -#: guix-git/doc/guix.texi:29291 +#: guix-git/doc/guix.texi:29628 msgid "Set to true if you wish to enable TLP." msgstr "Proporcione un valor verdadero si desea activar TLP." #. type: deftypevr -#: guix-git/doc/guix.texi:29296 +#: guix-git/doc/guix.texi:29633 #, no-wrap msgid "{@code{tlp-configuration} parameter} string tlp-default-mode" msgstr "{parámetro de @code{tlp-configuration}} string tlp-default-mode" #. type: deftypevr -#: guix-git/doc/guix.texi:29299 +#: guix-git/doc/guix.texi:29636 msgid "Default mode when no power supply can be detected. Alternatives are AC and BAT." msgstr "Modo predeterminado cuando no se puede detectar una fuente de alimentación. Las alternativas son AC (corriente alterna) y BAT (batería)." #. type: deftypevr -#: guix-git/doc/guix.texi:29301 +#: guix-git/doc/guix.texi:29638 msgid "Defaults to @samp{\"AC\"}." msgstr "El valor predeterminado es @samp{\"AC\"} (corriente alterna)." #. type: deftypevr -#: guix-git/doc/guix.texi:29304 +#: guix-git/doc/guix.texi:29641 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer disk-idle-secs-on-ac" msgstr "{parámetro de @code{tlp-configuration}} entero-no-negativo disk-idle-secs-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29307 +#: guix-git/doc/guix.texi:29644 msgid "Number of seconds Linux kernel has to wait after the disk goes idle, before syncing on AC." msgstr "Número de segundos que el núcleo Linux debe esperar desde que el disco se queda en espera, antes de sincronizar en corriente alterna (AC)." #. type: deftypevr -#: guix-git/doc/guix.texi:29312 +#: guix-git/doc/guix.texi:29649 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer disk-idle-secs-on-bat" msgstr "{parámetro de @code{tlp-configuration}} entero-no-negativo disk-idle-secs-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29314 +#: guix-git/doc/guix.texi:29651 msgid "Same as @code{disk-idle-ac} but on BAT mode." msgstr "Igual que @code{disk-idle-ac} pero en modo BAT (batería)." #. type: deftypevr -#: guix-git/doc/guix.texi:29316 +#: guix-git/doc/guix.texi:29653 msgid "Defaults to @samp{2}." msgstr "El valor predeterminado es @samp{2}." #. type: deftypevr -#: guix-git/doc/guix.texi:29319 +#: guix-git/doc/guix.texi:29656 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer max-lost-work-secs-on-ac" msgstr "{parámetro de @code{tlp-configuration}} entero-no-negativo max-lost-work-secs-on-ac" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:29321 +#: guix-git/doc/guix.texi:29658 msgid "Dirty pages flushing periodicity, expressed in seconds." msgstr "Periodicidad de la evacuación de las páginas sucias, expresada en segundos." #. type: deftypevr -#: guix-git/doc/guix.texi:29323 guix-git/doc/guix.texi:29546 -#: guix-git/doc/guix.texi:31814 guix-git/doc/guix.texi:31822 +#: guix-git/doc/guix.texi:29660 guix-git/doc/guix.texi:29883 +#: guix-git/doc/guix.texi:32179 guix-git/doc/guix.texi:32187 msgid "Defaults to @samp{15}." msgstr "El valor predeterminado es @samp{15}." #. type: deftypevr -#: guix-git/doc/guix.texi:29326 +#: guix-git/doc/guix.texi:29663 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer max-lost-work-secs-on-bat" msgstr "{parámetro de @code{tlp-configuration}} entero-no-negativo max-lost-work-secs-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29328 +#: guix-git/doc/guix.texi:29665 msgid "Same as @code{max-lost-work-secs-on-ac} but on BAT mode." msgstr "Igual que @code{max-lost-work-secs-on-ac} pero en modo BAT (batería)." #. type: deftypevr -#: guix-git/doc/guix.texi:29330 +#: guix-git/doc/guix.texi:29667 msgid "Defaults to @samp{60}." msgstr "El valor predeterminado es @samp{60}." #. type: deftypevr -#: guix-git/doc/guix.texi:29333 +#: guix-git/doc/guix.texi:29670 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list cpu-scaling-governor-on-ac" msgstr "{parámetro de @code{tlp-configuration}} maybe-lista-cadena-separada-espacios cpu-scaling-governor-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29337 +#: guix-git/doc/guix.texi:29674 msgid "CPU frequency scaling governor on AC mode. With intel_pstate driver, alternatives are powersave and performance. With acpi-cpufreq driver, alternatives are ondemand, powersave, performance and conservative." msgstr "Gobernador de escalado de frecuencia del procesador en modo de corriente alterna (AC). Con el controlador intel_pstate, las alternativas son ``powersave'' (ahorro de energía) y ``performance'' (rendimiento). Con el controlador acpi-cpufreq, las alternativas son ``ondemand'' (bajo demanda), ``powersave'', ``performance'' y ``conservative'' (conservativo)." #. type: deftypevr -#: guix-git/doc/guix.texi:29342 +#: guix-git/doc/guix.texi:29679 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list cpu-scaling-governor-on-bat" msgstr "{parámetro de @code{tlp-configuration}} maybe-lista-cadena-separada-espacios cpu-scaling-governor-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29344 +#: guix-git/doc/guix.texi:29681 msgid "Same as @code{cpu-scaling-governor-on-ac} but on BAT mode." msgstr "Igual que @code{max-lost-work-secs-on-ac} pero en modo BAT (batería)." #. type: deftypevr -#: guix-git/doc/guix.texi:29349 +#: guix-git/doc/guix.texi:29686 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-min-freq-on-ac" msgstr "{parámetro de @code{tlp-configuration}} maybe-entero-no-negativo cpu-scaling-min-freq-on-ac" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:29351 +#: guix-git/doc/guix.texi:29688 msgid "Set the min available frequency for the scaling governor on AC." msgstr "Establece la frecuencia mínima disponible para el controlador de escalado en AC." #. type: deftypevr -#: guix-git/doc/guix.texi:29356 +#: guix-git/doc/guix.texi:29693 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-max-freq-on-ac" msgstr "{parámetro de @code{tlp-configuration}} maybe-entero-no-negativo cpu-scaling-max-freq-on-ac" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:29358 +#: guix-git/doc/guix.texi:29695 msgid "Set the max available frequency for the scaling governor on AC." msgstr "Establece la frecuencia máxima disponible para el controlador de escalado en AC." #. type: deftypevr -#: guix-git/doc/guix.texi:29363 +#: guix-git/doc/guix.texi:29700 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-min-freq-on-bat" msgstr "{parámetro de @code{tlp-configuration}} maybe-entero-no-negativo cpu-scaling-min-freq-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29365 +#: guix-git/doc/guix.texi:29702 msgid "Set the min available frequency for the scaling governor on BAT." msgstr "Establece la frecuencia mínima disponible para el controlador de escalado en BAT." #. type: deftypevr -#: guix-git/doc/guix.texi:29370 +#: guix-git/doc/guix.texi:29707 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-max-freq-on-bat" msgstr "{parámetro de @code{tlp-configuration}} maybe-entero-no-negativo cpu-scaling-max-freq-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29372 +#: guix-git/doc/guix.texi:29709 msgid "Set the max available frequency for the scaling governor on BAT." msgstr "Establece la frecuencia máxima disponible para el controlador de escalado en BAT." #. type: deftypevr -#: guix-git/doc/guix.texi:29377 +#: guix-git/doc/guix.texi:29714 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-min-perf-on-ac" msgstr "{parámetro de @code{tlp-configuration}} maybe-entero-no-negativo cpu-min-perf-on-ac" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:29380 +#: guix-git/doc/guix.texi:29717 msgid "Limit the min P-state to control the power dissipation of the CPU, in AC mode. Values are stated as a percentage of the available performance." msgstr "Limita el estado-P mínimo para controlar la disipación de potencia del procesador en modo AC. Los valores se indican como un porcentaje de rendimiento disponible." #. type: deftypevr -#: guix-git/doc/guix.texi:29385 +#: guix-git/doc/guix.texi:29722 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-ac" msgstr "{parámetro de @code{tlp-configuration}} maybe-entero-no-negativo cpu-max-perf-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29388 +#: guix-git/doc/guix.texi:29725 msgid "Limit the max P-state to control the power dissipation of the CPU, in AC mode. Values are stated as a percentage of the available performance." msgstr "Limita el estado-P máximo para controlar la disipación de potencia del procesador en modo AC. Los valores se indican como un porcentaje de rendimiento disponible." #. type: deftypevr -#: guix-git/doc/guix.texi:29393 +#: guix-git/doc/guix.texi:29730 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-min-perf-on-bat" msgstr "{parámetro de @code{tlp-configuration}} maybe-entero-no-negativo cpu-min-perf-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29395 +#: guix-git/doc/guix.texi:29732 msgid "Same as @code{cpu-min-perf-on-ac} on BAT mode." msgstr "Igual que @code{cpu-min-perf-on-ac} pero en modo BAT (batería)." #. type: deftypevr -#: guix-git/doc/guix.texi:29400 +#: guix-git/doc/guix.texi:29737 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-bat" msgstr "{parámetro de @code{tlp-configuration}} maybe-entero-no-negativo cpu-max-perf-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29402 +#: guix-git/doc/guix.texi:29739 msgid "Same as @code{cpu-max-perf-on-ac} on BAT mode." msgstr "Igual que @code{cpu-max-perf-on-ac} pero en modo BAT (batería)." #. type: deftypevr -#: guix-git/doc/guix.texi:29407 +#: guix-git/doc/guix.texi:29744 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean cpu-boost-on-ac?" msgstr "{parámetro de @code{tlp-configuration}} maybe-boolean cpu-boost-on-ac?" #. type: deftypevr -#: guix-git/doc/guix.texi:29409 +#: guix-git/doc/guix.texi:29746 msgid "Enable CPU turbo boost feature on AC mode." msgstr "Activa la característica ``turbo boost'' del procesador en modo AC (corriente alterna)." #. type: deftypevr -#: guix-git/doc/guix.texi:29414 +#: guix-git/doc/guix.texi:29751 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean cpu-boost-on-bat?" msgstr "{parámetro de @code{tlp-configuration}} maybe-boolean cpu-boost-on-bat?" #. type: deftypevr -#: guix-git/doc/guix.texi:29416 +#: guix-git/doc/guix.texi:29753 msgid "Same as @code{cpu-boost-on-ac?} on BAT mode." msgstr "Igual que @code{cpu-boost-on-ac} pero en modo BAT (batería)." #. type: deftypevr -#: guix-git/doc/guix.texi:29421 +#: guix-git/doc/guix.texi:29758 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean sched-powersave-on-ac?" msgstr "{parámetro de @code{tlp-configuration}} boolean sched-powersave-on-ac?" #. type: deftypevr -#: guix-git/doc/guix.texi:29424 +#: guix-git/doc/guix.texi:29761 msgid "Allow Linux kernel to minimize the number of CPU cores/hyper-threads used under light load conditions." msgstr "Permite al núcleo Linux minimizar el número de núcleos/hyper-thread del procesador usados bajo condiciones de baja carga." #. type: deftypevr -#: guix-git/doc/guix.texi:29429 +#: guix-git/doc/guix.texi:29766 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean sched-powersave-on-bat?" msgstr "{parámetro de @code{tlp-configuration}} boolean sched-powersave-on-bat?" #. type: deftypevr -#: guix-git/doc/guix.texi:29431 +#: guix-git/doc/guix.texi:29768 msgid "Same as @code{sched-powersave-on-ac?} but on BAT mode." msgstr "Igual que @code{sched-powersave-on-ac?} pero en modo BAT (batería)." #. type: deftypevr -#: guix-git/doc/guix.texi:29436 +#: guix-git/doc/guix.texi:29773 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean nmi-watchdog?" msgstr "{parámetro de @code{tlp-configuration}} boolean nmi-watchdog?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:29438 +#: guix-git/doc/guix.texi:29775 msgid "Enable Linux kernel NMI watchdog." msgstr "Activa el proceso guardián (watchdog) NMI del núcleo Linux." #. type: deftypevr -#: guix-git/doc/guix.texi:29443 +#: guix-git/doc/guix.texi:29780 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string phc-controls" msgstr "{parámetro de @code{tlp-configuration}} maybe-string phc-controls" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:29446 +#: guix-git/doc/guix.texi:29783 msgid "For Linux kernels with PHC patch applied, change CPU voltages. An example value would be @samp{\"F:V F:V F:V F:V\"}." msgstr "Para núcleos Linux con el parche PHC aplicado, cambia los voltajes del procesador. Un valor de ejemplo sería @samp{\"F:V F:V F:V F:V\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29451 +#: guix-git/doc/guix.texi:29788 #, no-wrap msgid "{@code{tlp-configuration} parameter} string energy-perf-policy-on-ac" msgstr "{parámetro de @code{tlp-configuration}} string energy-perf-policy-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29454 +#: guix-git/doc/guix.texi:29791 #, fuzzy msgid "Set CPU performance versus energy saving policy on AC@. Alternatives are performance, normal, powersave." msgstr "Establece la política de alto rendimiento del procesador en vez del ahorro de energía mientras durante el uso de corriente alterna (AC). Las alternativas son ``performance'' (alto rendimiento), ``normal'' y ``powersave'' (ahorro de energía)." #. type: deftypevr -#: guix-git/doc/guix.texi:29456 guix-git/doc/guix.texi:29554 -#: guix-git/doc/guix.texi:29584 +#: guix-git/doc/guix.texi:29793 guix-git/doc/guix.texi:29891 +#: guix-git/doc/guix.texi:29949 msgid "Defaults to @samp{\"performance\"}." msgstr "El valor predeterminado es @samp{\"performance\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29459 +#: guix-git/doc/guix.texi:29796 #, no-wrap msgid "{@code{tlp-configuration} parameter} string energy-perf-policy-on-bat" msgstr "{parámetro de @code{tlp-configuration}} string energy-perf-policy-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29461 +#: guix-git/doc/guix.texi:29798 msgid "Same as @code{energy-perf-policy-ac} but on BAT mode." msgstr "Igual que @code{energy-perf-policy-ac} pero en modo BAT (batería)." #. type: deftypevr -#: guix-git/doc/guix.texi:29463 guix-git/doc/guix.texi:29561 +#: guix-git/doc/guix.texi:29800 guix-git/doc/guix.texi:29898 msgid "Defaults to @samp{\"powersave\"}." msgstr "El valor predeterminado es @samp{\"powersave\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29466 +#: guix-git/doc/guix.texi:29803 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disks-devices" msgstr "{parámetro de @code{tlp-configuration}} lista-cadena-separada-espacios disks-devices" #. type: deftypevr -#: guix-git/doc/guix.texi:29468 +#: guix-git/doc/guix.texi:29805 msgid "Hard disk devices." msgstr "Dispositivos de disco duro." #. type: deftypevr -#: guix-git/doc/guix.texi:29471 +#: guix-git/doc/guix.texi:29808 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disk-apm-level-on-ac" msgstr "{parámetro de @code{tlp-configuration}} lista-cadena-separada-espacios disk-apm-level-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29473 +#: guix-git/doc/guix.texi:29810 msgid "Hard disk advanced power management level." msgstr "Nivel de APM (gestión avanzada de energía) del disco duro." #. type: deftypevr -#: guix-git/doc/guix.texi:29476 +#: guix-git/doc/guix.texi:29813 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disk-apm-level-on-bat" msgstr "{parámetro de @code{tlp-configuration}} lista-cadena-separada-espacios disk-apm-level-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29478 +#: guix-git/doc/guix.texi:29815 msgid "Same as @code{disk-apm-bat} but on BAT mode." msgstr "Igual que @code{disk-apm-bat} pero en modo BAT (batería)." #. type: deftypevr -#: guix-git/doc/guix.texi:29481 +#: guix-git/doc/guix.texi:29818 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-spindown-timeout-on-ac" msgstr "{parámetro de @code{tlp-configuration}} maybe-lista-cadena-separada-espacios disk-spindown-timeout-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29484 +#: guix-git/doc/guix.texi:29821 msgid "Hard disk spin down timeout. One value has to be specified for each declared hard disk." msgstr "Plazo para la parada rotacional del disco duro. Se debe especificar un valor por cada disco duro declarado." #. type: deftypevr -#: guix-git/doc/guix.texi:29489 +#: guix-git/doc/guix.texi:29826 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-spindown-timeout-on-bat" msgstr "{parámetro de @code{tlp-configuration}} maybe-lista-cadena-separada-espacios disk-spindown-timeout-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29491 +#: guix-git/doc/guix.texi:29828 msgid "Same as @code{disk-spindown-timeout-on-ac} but on BAT mode." msgstr "Igual que @code{disk-spindown-timeout-on-ac} pero en modo BAT (batería)." #. type: deftypevr -#: guix-git/doc/guix.texi:29496 +#: guix-git/doc/guix.texi:29833 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-iosched" msgstr "{parámetro de @code{tlp-configuration}} maybe-lista-cadena-separada-espacios disk-iosched" #. type: deftypevr -#: guix-git/doc/guix.texi:29500 +#: guix-git/doc/guix.texi:29837 msgid "Select IO scheduler for disk devices. One value has to be specified for each declared hard disk. Example alternatives are cfq, deadline and noop." msgstr "Selecciona el planificador de E/S para dispositivos de disco. Se debe especificar un valor por cada disco duro declarado. Ejemplos de alternativas son ``cfq'', ``deadline'' y ``noop''." #. type: deftypevr -#: guix-git/doc/guix.texi:29505 +#: guix-git/doc/guix.texi:29842 #, no-wrap msgid "{@code{tlp-configuration} parameter} string sata-linkpwr-on-ac" msgstr "{parámetro de @code{tlp-configuration}} string sata-linkpwr-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29508 +#: guix-git/doc/guix.texi:29845 msgid "SATA aggressive link power management (ALPM) level. Alternatives are min_power, medium_power, max_performance." msgstr "Nivel de gestión agresiva de energía del enlace (ALPM) de SATA. Las alternativas son ``min_power'' (energía mínima), ``medium_power'' (energía media) y ``max_performance'' (máximo rendimiento)." #. type: deftypevr -#: guix-git/doc/guix.texi:29510 +#: guix-git/doc/guix.texi:29847 msgid "Defaults to @samp{\"max_performance\"}." msgstr "El valor predeterminado es @samp{\"max_performance\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29513 +#: guix-git/doc/guix.texi:29850 #, no-wrap msgid "{@code{tlp-configuration} parameter} string sata-linkpwr-on-bat" msgstr "{parámetro de @code{tlp-configuration}} string sata-linkpwr-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29515 +#: guix-git/doc/guix.texi:29852 msgid "Same as @code{sata-linkpwr-ac} but on BAT mode." msgstr "Igual que @code{sata-linkpwr-ac} pero en modo BAT (batería)." #. type: deftypevr -#: guix-git/doc/guix.texi:29517 +#: guix-git/doc/guix.texi:29854 msgid "Defaults to @samp{\"min_power\"}." msgstr "El valor predeterminado es @samp{\"min_power\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29520 +#: guix-git/doc/guix.texi:29857 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string sata-linkpwr-blacklist" msgstr "{parámetro de @code{tlp-configuration}} maybe-string sata-linkpwr-blacklist" #. type: deftypevr -#: guix-git/doc/guix.texi:29522 +#: guix-git/doc/guix.texi:29859 msgid "Exclude specified SATA host devices for link power management." msgstr "Excluye los dispositivos SATA especificados de la gestión de energía del enlace." #. type: deftypevr -#: guix-git/doc/guix.texi:29527 +#: guix-git/doc/guix.texi:29864 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-on-off-boolean ahci-runtime-pm-on-ac?" msgstr "{parámetro de @code{tlp-configuration}} maybe-on-off-boolean ahci-runtime-pm-on-ac?" #. type: deftypevr -#: guix-git/doc/guix.texi:29530 +#: guix-git/doc/guix.texi:29867 msgid "Enable Runtime Power Management for AHCI controller and disks on AC mode." msgstr "Activa la gestión de energía de tiempo de ejecución para controladores AHCI y discos en modo AC." #. type: deftypevr -#: guix-git/doc/guix.texi:29535 +#: guix-git/doc/guix.texi:29872 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-on-off-boolean ahci-runtime-pm-on-bat?" msgstr "{parámetro de @code{tlp-configuration}} maybe-on-off-boolean ahci-runtime-pm-on-bat?" #. type: deftypevr -#: guix-git/doc/guix.texi:29537 +#: guix-git/doc/guix.texi:29874 msgid "Same as @code{ahci-runtime-pm-on-ac} on BAT mode." msgstr "Igual que @code{ahci-runtime-pm-on-ac} pero en modo BAT (batería)." #. type: deftypevr -#: guix-git/doc/guix.texi:29542 +#: guix-git/doc/guix.texi:29879 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer ahci-runtime-pm-timeout" msgstr "{parámetro de @code{tlp-configuration}} entero-no-negativo ahci-runtime-pm-timeout" #. type: deftypevr -#: guix-git/doc/guix.texi:29544 +#: guix-git/doc/guix.texi:29881 msgid "Seconds of inactivity before disk is suspended." msgstr "Segundos de inactividad antes de suspender el disco." #. type: deftypevr -#: guix-git/doc/guix.texi:29549 +#: guix-git/doc/guix.texi:29886 #, no-wrap msgid "{@code{tlp-configuration} parameter} string pcie-aspm-on-ac" msgstr "{parámetro de @code{tlp-configuration}} string pcie-aspm-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29552 +#: guix-git/doc/guix.texi:29889 msgid "PCI Express Active State Power Management level. Alternatives are default, performance, powersave." msgstr "Nivel de gestión de energía de estado activo de PCI Express. Las alternativas son ``default'' (predeterminado), ``performance'' (rendimiento) y ``powersave'' (ahorro de energía)." #. type: deftypevr -#: guix-git/doc/guix.texi:29557 +#: guix-git/doc/guix.texi:29894 #, no-wrap msgid "{@code{tlp-configuration} parameter} string pcie-aspm-on-bat" msgstr "{parámetro de @code{tlp-configuration}} string pcie-aspm-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29559 +#: guix-git/doc/guix.texi:29896 msgid "Same as @code{pcie-aspm-ac} but on BAT mode." msgstr "Igual que @code{pcie-aspm-ac} pero en modo BAT (batería)." #. type: deftypevr -#: guix-git/doc/guix.texi:29564 +#: guix-git/doc/guix.texi:29901 +#, fuzzy, no-wrap +#| msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-bat" +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer start-charge-thresh-bat0" +msgstr "{parámetro de @code{tlp-configuration}} maybe-entero-no-negativo cpu-max-perf-on-bat" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29903 +msgid "Percentage when battery 0 should begin charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29908 +#, fuzzy, no-wrap +#| msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-bat" +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer stop-charge-thresh-bat0" +msgstr "{parámetro de @code{tlp-configuration}} maybe-entero-no-negativo cpu-max-perf-on-bat" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29910 +msgid "Percentage when battery 0 should stop charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29915 +#, fuzzy, no-wrap +#| msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-bat" +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer start-charge-thresh-bat1" +msgstr "{parámetro de @code{tlp-configuration}} maybe-entero-no-negativo cpu-max-perf-on-bat" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29917 +msgid "Percentage when battery 1 should begin charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29922 +#, fuzzy, no-wrap +#| msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-bat" +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer stop-charge-thresh-bat1" +msgstr "{parámetro de @code{tlp-configuration}} maybe-entero-no-negativo cpu-max-perf-on-bat" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29924 +msgid "Percentage when battery 1 should stop charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29929 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-power-profile-on-ac" msgstr "{parámetro de @code{tlp-configuration}} string radeon-power-profile-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29567 +#: guix-git/doc/guix.texi:29932 msgid "Radeon graphics clock speed level. Alternatives are low, mid, high, auto, default." msgstr "Nivel de velocidad de reloj de gráficos Radeon. Las alternativas son ``low'' (bajo), ``mid'' (medio), ``high'' (alto), ``auto'' (automático) y ``default'' (predeterminado)." #. type: deftypevr -#: guix-git/doc/guix.texi:29569 +#: guix-git/doc/guix.texi:29934 msgid "Defaults to @samp{\"high\"}." msgstr "El valor predeterminado es @samp{\"high\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29572 +#: guix-git/doc/guix.texi:29937 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-power-profile-on-bat" msgstr "{parámetro de @code{tlp-configuration}} string radeon-power-profile-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29574 +#: guix-git/doc/guix.texi:29939 msgid "Same as @code{radeon-power-ac} but on BAT mode." msgstr "Igual que @code{radeon-power-ac} pero en modo BAT (batería)." #. type: deftypevr -#: guix-git/doc/guix.texi:29576 +#: guix-git/doc/guix.texi:29941 msgid "Defaults to @samp{\"low\"}." msgstr "El valor predeterminado es @samp{\"low\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29579 +#: guix-git/doc/guix.texi:29944 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-state-on-ac" msgstr "{parámetro de @code{tlp-configuration}} string radeon-dpm-state-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29582 +#: guix-git/doc/guix.texi:29947 msgid "Radeon dynamic power management method (DPM). Alternatives are battery, performance." msgstr "Método de gestión de energía dinámica (DPM) de Radeon. Las alternativas son ``battery'' (batería) y ``performance'' (rendimiento)." #. type: deftypevr -#: guix-git/doc/guix.texi:29587 +#: guix-git/doc/guix.texi:29952 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-state-on-bat" msgstr "{parámetro de @code{tlp-configuration}} string radeon-dpm-state-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29589 +#: guix-git/doc/guix.texi:29954 msgid "Same as @code{radeon-dpm-state-ac} but on BAT mode." msgstr "Igual que @code{radeon-dpm-state-ac} pero en modo BAT (batería)." #. type: deftypevr -#: guix-git/doc/guix.texi:29591 +#: guix-git/doc/guix.texi:29956 msgid "Defaults to @samp{\"battery\"}." msgstr "El valor predeterminado es @samp{\"battery\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29594 +#: guix-git/doc/guix.texi:29959 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-perf-level-on-ac" msgstr "{parámetro de @code{tlp-configuration}} string radeon-dpm-perf-level-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29596 +#: guix-git/doc/guix.texi:29961 msgid "Radeon DPM performance level. Alternatives are auto, low, high." msgstr "Nivel de rendimiento del DPM de Radeon. Las alternativas son ``auto'' (automático), ``low'' (bajo) y ``high'' (alto)." #. type: deftypevr -#: guix-git/doc/guix.texi:29598 guix-git/doc/guix.texi:29605 -#: guix-git/doc/guix.texi:29679 +#: guix-git/doc/guix.texi:29963 guix-git/doc/guix.texi:29970 +#: guix-git/doc/guix.texi:30044 msgid "Defaults to @samp{\"auto\"}." msgstr "El valor predeterminado es @samp{\"auto\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29601 +#: guix-git/doc/guix.texi:29966 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-perf-level-on-bat" msgstr "{parámetro de @code{tlp-configuration}} string radeon-dpm-perf-level-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29603 +#: guix-git/doc/guix.texi:29968 msgid "Same as @code{radeon-dpm-perf-ac} but on BAT mode." msgstr "Igual que @code{radeon-dpm-perf-ac} pero en modo BAT (batería)." #. type: deftypevr -#: guix-git/doc/guix.texi:29608 +#: guix-git/doc/guix.texi:29973 #, no-wrap msgid "{@code{tlp-configuration} parameter} on-off-boolean wifi-pwr-on-ac?" msgstr "{parámetro de @code{tlp-configuration}} on-off-boolean wifi-pwr-on-ac?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:29610 +#: guix-git/doc/guix.texi:29975 msgid "Wifi power saving mode." msgstr "Modo de ahorro de energía de Wifi." #. type: deftypevr -#: guix-git/doc/guix.texi:29615 +#: guix-git/doc/guix.texi:29980 #, no-wrap msgid "{@code{tlp-configuration} parameter} on-off-boolean wifi-pwr-on-bat?" msgstr "{parámetro de @code{tlp-configuration}} on-off-boolean wifi-pwr-on-bat?" #. type: deftypevr -#: guix-git/doc/guix.texi:29617 +#: guix-git/doc/guix.texi:29982 msgid "Same as @code{wifi-power-ac?} but on BAT mode." msgstr "Igual que @code{wifi-power-ac?} pero en modo BAT (batería)." #. type: deftypevr -#: guix-git/doc/guix.texi:29622 +#: guix-git/doc/guix.texi:29987 #, no-wrap msgid "{@code{tlp-configuration} parameter} y-n-boolean wol-disable?" msgstr "{parámetro de @code{tlp-configuration}} y-n-boolean wol-disable?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:29624 +#: guix-git/doc/guix.texi:29989 msgid "Disable wake on LAN." msgstr "Desactiva el encendido desde la red local (wake on LAN)." #. type: deftypevr -#: guix-git/doc/guix.texi:29629 +#: guix-git/doc/guix.texi:29994 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer sound-power-save-on-ac" msgstr "{parámetro de @code{tlp-configuration}} entero-no-negativo sound-power-save-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29632 +#: guix-git/doc/guix.texi:29997 msgid "Timeout duration in seconds before activating audio power saving on Intel HDA and AC97 devices. A value of 0 disables power saving." msgstr "Duración en segundos del plazo antes de activar el ahorro de energía de audio en dispositivos Intel HDA y AC97. El valor 0 desactiva el ahorro de energía." #. type: deftypevr -#: guix-git/doc/guix.texi:29637 +#: guix-git/doc/guix.texi:30002 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer sound-power-save-on-bat" msgstr "{parámetro de @code{tlp-configuration}} entero-no-negativo sound-power-save-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29639 +#: guix-git/doc/guix.texi:30004 msgid "Same as @code{sound-powersave-ac} but on BAT mode." msgstr "Igual que @code{sound-powersave-ac} pero en modo BAT (batería)." #. type: deftypevr -#: guix-git/doc/guix.texi:29644 +#: guix-git/doc/guix.texi:30009 #, no-wrap msgid "{@code{tlp-configuration} parameter} y-n-boolean sound-power-save-controller?" msgstr "{parámetro de @code{tlp-configuration}} y-n-boolean sound-power-save-controller?" #. type: deftypevr -#: guix-git/doc/guix.texi:29646 +#: guix-git/doc/guix.texi:30011 msgid "Disable controller in powersaving mode on Intel HDA devices." msgstr "Desactiva el controlador en modo de ahorro de energía en dispositivos Intel HDA." #. type: deftypevr -#: guix-git/doc/guix.texi:29651 +#: guix-git/doc/guix.texi:30016 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean bay-poweroff-on-bat?" msgstr "{parámetro de @code{tlp-configuration}} boolean bay-poweroff-on-bat?" #. type: deftypevr -#: guix-git/doc/guix.texi:29655 +#: guix-git/doc/guix.texi:30020 msgid "Enable optical drive in UltraBay/MediaBay on BAT mode. Drive can be powered on again by releasing (and reinserting) the eject lever or by pressing the disc eject button on newer models." msgstr "Activa las unidades ópticas en UltraBay/MediaBay en modo BAT. La unidad puede volver a alimentarse liberando (y reinsertando) la palanca de eyección o presionando el botón de eyección de disco en modelos más modernos." #. type: deftypevr -#: guix-git/doc/guix.texi:29660 +#: guix-git/doc/guix.texi:30025 #, no-wrap msgid "{@code{tlp-configuration} parameter} string bay-device" msgstr "{parámetro de @code{tlp-configuration}} string bay-device" #. type: deftypevr -#: guix-git/doc/guix.texi:29662 +#: guix-git/doc/guix.texi:30027 msgid "Name of the optical drive device to power off." msgstr "Nombre de la unidad de dispositivos ópticos a apagar." #. type: deftypevr -#: guix-git/doc/guix.texi:29664 +#: guix-git/doc/guix.texi:30029 msgid "Defaults to @samp{\"sr0\"}." msgstr "El valor predeterminado es @samp{\"sr0\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29667 +#: guix-git/doc/guix.texi:30032 #, no-wrap msgid "{@code{tlp-configuration} parameter} string runtime-pm-on-ac" msgstr "{parámetro de @code{tlp-configuration}} string runtime-pm-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29670 +#: guix-git/doc/guix.texi:30035 msgid "Runtime Power Management for PCI(e) bus devices. Alternatives are on and auto." msgstr "Gestión de energía en tiempo de ejecución para dispositivos de bus PCI(e). Las alternativas son ``on'' y ``auto''." #. type: deftypevr -#: guix-git/doc/guix.texi:29672 +#: guix-git/doc/guix.texi:30037 msgid "Defaults to @samp{\"on\"}." msgstr "El valor predeterminado es @samp{\"on\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29675 +#: guix-git/doc/guix.texi:30040 #, no-wrap msgid "{@code{tlp-configuration} parameter} string runtime-pm-on-bat" msgstr "{parámetro de @code{tlp-configuration}} string runtime-pm-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29677 +#: guix-git/doc/guix.texi:30042 msgid "Same as @code{runtime-pm-ac} but on BAT mode." msgstr "Igual que @code{runtime-pm-ac} pero en modo BAT (batería)." #. type: deftypevr -#: guix-git/doc/guix.texi:29682 +#: guix-git/doc/guix.texi:30047 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean runtime-pm-all?" msgstr "{parámetro de @code{tlp-configuration}} boolean runtime-pm-all?" #. type: deftypevr -#: guix-git/doc/guix.texi:29685 +#: guix-git/doc/guix.texi:30050 msgid "Runtime Power Management for all PCI(e) bus devices, except blacklisted ones." msgstr "Gestión de energía en tiempo de ejecución (Runtime Power Management) para todos los dispositivos del bus PCI(e), excepto los excluidos." #. type: deftypevr -#: guix-git/doc/guix.texi:29690 +#: guix-git/doc/guix.texi:30055 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list runtime-pm-blacklist" msgstr "{parámetro de @code{tlp-configuration}} maybe-lista-cadena-separada-espacios runtime-pm-blacklist" #. type: deftypevr -#: guix-git/doc/guix.texi:29692 +#: guix-git/doc/guix.texi:30057 msgid "Exclude specified PCI(e) device addresses from Runtime Power Management." msgstr "Excluye las direcciones de dispositivo PCI(e) especificadas de la gestión de energía en tiempo de ejecución (Runtime Power Management)." #. type: deftypevr -#: guix-git/doc/guix.texi:29697 +#: guix-git/doc/guix.texi:30062 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list runtime-pm-driver-blacklist" msgstr "{parámetro de @code{tlp-configuration}} lista-cadena-separada-espacios runtime-pm-driver-blacklist" #. type: deftypevr -#: guix-git/doc/guix.texi:29700 +#: guix-git/doc/guix.texi:30065 msgid "Exclude PCI(e) devices assigned to the specified drivers from Runtime Power Management." msgstr "Excluye los dispositivos PCI(e) asignados a los controladores especificados de la gestión de energía en tiempo de ejecución (Runtime Power Management)." #. type: deftypevr -#: guix-git/doc/guix.texi:29703 +#: guix-git/doc/guix.texi:30068 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean usb-autosuspend?" msgstr "{parámetro de @code{tlp-configuration}} boolean usb-autosuspend?" #. type: deftypevr -#: guix-git/doc/guix.texi:29705 +#: guix-git/doc/guix.texi:30070 msgid "Enable USB autosuspend feature." msgstr "Permite la suspensión automática de USB." #. type: deftypevr -#: guix-git/doc/guix.texi:29710 +#: guix-git/doc/guix.texi:30075 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string usb-blacklist" msgstr "{parámetro de @code{tlp-configuration}} maybe-string usb-blacklist" #. type: deftypevr -#: guix-git/doc/guix.texi:29712 +#: guix-git/doc/guix.texi:30077 msgid "Exclude specified devices from USB autosuspend." msgstr "Excluye los dispositivos especificados de la suspensión automática de USB." #. type: deftypevr -#: guix-git/doc/guix.texi:29717 +#: guix-git/doc/guix.texi:30082 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean usb-blacklist-wwan?" msgstr "{parámetro de @code{tlp-configuration}} boolean usb-blacklist-wwan?" #. type: deftypevr -#: guix-git/doc/guix.texi:29719 +#: guix-git/doc/guix.texi:30084 msgid "Exclude WWAN devices from USB autosuspend." msgstr "Excluye los dispositivos WWAN de la suspensión automática de USB." #. type: deftypevr -#: guix-git/doc/guix.texi:29724 +#: guix-git/doc/guix.texi:30089 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string usb-whitelist" msgstr "{parámetro de @code{tlp-configuration}} maybe-string usb-whitelist" #. type: deftypevr -#: guix-git/doc/guix.texi:29727 +#: guix-git/doc/guix.texi:30092 msgid "Include specified devices into USB autosuspend, even if they are already excluded by the driver or via @code{usb-blacklist-wwan?}." msgstr "Incluye los dispositivos especificados en la suspensión automática de USB, incluso cuando están excluidos por el controlador o a través de @code{usb-blacklist-wwan?}." #. type: deftypevr -#: guix-git/doc/guix.texi:29732 +#: guix-git/doc/guix.texi:30097 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean usb-autosuspend-disable-on-shutdown?" msgstr "{parámetro de @code{tlp-configuration}} maybe-boolean usb-autosuspend-disable-on-shutdown?" #. type: deftypevr -#: guix-git/doc/guix.texi:29734 +#: guix-git/doc/guix.texi:30099 msgid "Enable USB autosuspend before shutdown." msgstr "Activa la suspensión automática de USB antes del apagado." #. type: deftypevr -#: guix-git/doc/guix.texi:29739 +#: guix-git/doc/guix.texi:30104 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean restore-device-state-on-startup?" msgstr "{parámetro de @code{tlp-configuration}} boolean restore-device-state-on-startup?" #. type: deftypevr -#: guix-git/doc/guix.texi:29742 +#: guix-git/doc/guix.texi:30107 msgid "Restore radio device state (bluetooth, wifi, wwan) from previous shutdown on system startup." msgstr "Restablece el estado de los dispositivos de radio (bluetooth, wifi, wwan) previo al apagado durante el arranque del sistema." #. type: cindex -#: guix-git/doc/guix.texi:29747 +#: guix-git/doc/guix.texi:30112 #, no-wrap msgid "thermald" msgstr "thermald" #. type: cindex -#: guix-git/doc/guix.texi:29748 +#: guix-git/doc/guix.texi:30113 #, no-wrap msgid "CPU frequency scaling with thermald" msgstr "escalado de frecuencia de la CPU con thermald" #. type: subsubheading -#: guix-git/doc/guix.texi:29749 +#: guix-git/doc/guix.texi:30114 #, no-wrap msgid "Thermald daemon" msgstr "Daemon Thermald" #. type: Plain text -#: guix-git/doc/guix.texi:29753 +#: guix-git/doc/guix.texi:30118 msgid "The @code{(gnu services pm)} module provides an interface to thermald, a CPU frequency scaling service which helps prevent overheating." msgstr "El módulo @code{(gnu services pm)} proporciona una interfaz con thermald, un servicio de escalado de frecuencia de la CPU que ayuda a prevenir el sobrecalentamiento." #. type: defvr -#: guix-git/doc/guix.texi:29754 +#: guix-git/doc/guix.texi:30119 #, no-wrap msgid "{Scheme Variable} thermald-service-type" msgstr "{Variable Scheme} thermald-service-type" #. type: defvr -#: guix-git/doc/guix.texi:29759 +#: guix-git/doc/guix.texi:30124 msgid "This is the service type for @uref{https://01.org/linux-thermal-daemon/, thermald}, the Linux Thermal Daemon, which is responsible for controlling the thermal state of processors and preventing overheating." msgstr "Este es el tipo de servicio para @uref{https://01.org/linux-thermal-daemon/, thermald}, el daemon Thermal de Linux, que es responsable del control del estado térmico de los procesadores y la prevención del sobrecalentamiento." #. type: deftp -#: guix-git/doc/guix.texi:29761 +#: guix-git/doc/guix.texi:30126 #, no-wrap msgid "{Data Type} thermald-configuration" msgstr "{Tipo de datos} thermald-configuration" #. type: deftp -#: guix-git/doc/guix.texi:29763 +#: guix-git/doc/guix.texi:30128 msgid "Data type representing the configuration of @code{thermald-service-type}." msgstr "Tipo de datos que representa la configuración de @code{thermald-service-type}." #. type: item -#: guix-git/doc/guix.texi:29765 +#: guix-git/doc/guix.texi:30130 #, no-wrap msgid "@code{ignore-cpuid-check?} (default: @code{#f})" msgstr "@code{ignore-cpuid-check?} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:29767 +#: guix-git/doc/guix.texi:30132 msgid "Ignore cpuid check for supported CPU models." msgstr "Ignora la comprobación de cpuid durante la comprobación de procesadores permitidos." #. type: item -#: guix-git/doc/guix.texi:29768 +#: guix-git/doc/guix.texi:30133 #, no-wrap msgid "@code{thermald} (default: @var{thermald})" msgstr "@code{thermald} (predeterminado: @var{thermald})" #. type: table -#: guix-git/doc/guix.texi:29770 +#: guix-git/doc/guix.texi:30135 msgid "Package object of thermald." msgstr "El objeto paquete de thermald." #. type: Plain text -#: guix-git/doc/guix.texi:29779 +#: guix-git/doc/guix.texi:30144 msgid "The @code{(gnu services audio)} module provides a service to start MPD (the Music Player Daemon)." msgstr "El módulo @code{(gnu services audio)} proporciona un servicio para iniciar MPD (el daemon de reproducción de música)." #. type: cindex -#: guix-git/doc/guix.texi:29780 +#: guix-git/doc/guix.texi:30145 #, no-wrap msgid "mpd" msgstr "mpd" #. type: subsubheading -#: guix-git/doc/guix.texi:29781 +#: guix-git/doc/guix.texi:30146 #, no-wrap msgid "Music Player Daemon" msgstr "Daemon de reproducción de música (MPD)" #. type: Plain text -#: guix-git/doc/guix.texi:29786 +#: guix-git/doc/guix.texi:30151 msgid "The Music Player Daemon (MPD) is a service that can play music while being controlled from the local machine or over the network by a variety of clients." msgstr "El daemon de reproducción de música (MPD) es un servicio que puede reproducir música mientras se controla desde la máquina local o sobre una red por una multitud de clientes." #. type: Plain text -#: guix-git/doc/guix.texi:29789 +#: guix-git/doc/guix.texi:30154 msgid "The following example shows how one might run @code{mpd} as user @code{\"bob\"} on port @code{6666}. It uses pulseaudio for output." msgstr "El siguiente ejemplo muestra como se puede ejecutar @code{mpd} como @code{\"rober\"} en el puerto @code{6666}. Usa pulseaudio para su salida." #. type: lisp -#: guix-git/doc/guix.texi:29795 +#: guix-git/doc/guix.texi:30160 #, no-wrap msgid "" "(service mpd-service-type\n" @@ -58363,220 +59150,220 @@ msgstr "" " (port \"6666\")))\n" #. type: defvr -#: guix-git/doc/guix.texi:29797 +#: guix-git/doc/guix.texi:30162 #, no-wrap msgid "{Scheme Variable} mpd-service-type" msgstr "{Variable Scheme} mpd-service-type" #. type: defvr -#: guix-git/doc/guix.texi:29799 +#: guix-git/doc/guix.texi:30164 msgid "The service type for @command{mpd}" msgstr "El tipo de servicio para @command{mpd}." #. type: deftp -#: guix-git/doc/guix.texi:29801 +#: guix-git/doc/guix.texi:30166 #, no-wrap msgid "{Data Type} mpd-configuration" msgstr "{Tipo de datos} mpd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:29803 +#: guix-git/doc/guix.texi:30168 msgid "Data type representing the configuration of @command{mpd}." msgstr "Tipo de datos que representa la configuración de @command{mpd}." #. type: item -#: guix-git/doc/guix.texi:29805 +#: guix-git/doc/guix.texi:30170 #, no-wrap msgid "@code{user} (default: @code{\"mpd\"})" msgstr "@code{user} (predeterminada: @code{\"mpd\"})" #. type: table -#: guix-git/doc/guix.texi:29807 +#: guix-git/doc/guix.texi:30172 msgid "The user to run mpd as." msgstr "Usuaria que ejecuta mpd." #. type: item -#: guix-git/doc/guix.texi:29808 +#: guix-git/doc/guix.texi:30173 #, no-wrap msgid "@code{music-dir} (default: @code{\"~/Music\"})" msgstr "@code{music-dir} (predeterminado: @code{\"~/Music\"})" #. type: table -#: guix-git/doc/guix.texi:29810 +#: guix-git/doc/guix.texi:30175 msgid "The directory to scan for music files." msgstr "El directorio para buscar archivos de música." #. type: item -#: guix-git/doc/guix.texi:29811 +#: guix-git/doc/guix.texi:30176 #, no-wrap msgid "@code{playlist-dir} (default: @code{\"~/.mpd/playlists\"})" msgstr "@code{playlist-dir} (predeterminado: @code{\"~/.mpd/playlists\"})" #. type: table -#: guix-git/doc/guix.texi:29813 +#: guix-git/doc/guix.texi:30178 msgid "The directory to store playlists." msgstr "El directorio para almacenar listas de reproducción." #. type: item -#: guix-git/doc/guix.texi:29814 +#: guix-git/doc/guix.texi:30179 #, no-wrap msgid "@code{db-file} (default: @code{\"~/.mpd/tag_cache\"})" msgstr "@code{db-file} (predeterminado: @code{\"~/.mpd/tag_cache\"})" #. type: table -#: guix-git/doc/guix.texi:29816 +#: guix-git/doc/guix.texi:30181 msgid "The location of the music database." msgstr "La localización de la base de datos de música." #. type: item -#: guix-git/doc/guix.texi:29817 +#: guix-git/doc/guix.texi:30182 #, no-wrap msgid "@code{state-file} (default: @code{\"~/.mpd/state\"})" msgstr "@code{state-file} (predeterminado: @code{\"~/.mpd/state\"})" #. type: table -#: guix-git/doc/guix.texi:29819 +#: guix-git/doc/guix.texi:30184 msgid "The location of the file that stores current MPD's state." msgstr "La localización del archivo que almacena el estado actual de MPD." #. type: item -#: guix-git/doc/guix.texi:29820 +#: guix-git/doc/guix.texi:30185 #, no-wrap msgid "@code{sticker-file} (default: @code{\"~/.mpd/sticker.sql\"})" msgstr "@code{sticker-file} (predeterminado: @code{\"~/.mpd/sticker.sql\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:29822 +#: guix-git/doc/guix.texi:30187 msgid "The location of the sticker database." msgstr "La localización de la base de datos de pegatinas." #. type: item -#: guix-git/doc/guix.texi:29823 +#: guix-git/doc/guix.texi:30188 #, no-wrap msgid "@code{port} (default: @code{\"6600\"})" msgstr "@code{port} (predeterminado: @code{\"6600\"})" #. type: table -#: guix-git/doc/guix.texi:29825 +#: guix-git/doc/guix.texi:30190 msgid "The port to run mpd on." msgstr "Puerto sobre el que se ejecuta mpd." #. type: item -#: guix-git/doc/guix.texi:29826 +#: guix-git/doc/guix.texi:30191 #, no-wrap msgid "@code{address} (default: @code{\"any\"})" msgstr "@code{address} (predeterminada: @code{\"any\"})" #. type: table -#: guix-git/doc/guix.texi:29829 +#: guix-git/doc/guix.texi:30194 msgid "The address that mpd will bind to. To use a Unix domain socket, an absolute path can be specified here." msgstr "Dirección a la que mpd se asociará. Para usar un socket de dominio de Unix puede especificarse una ruta absoluta." #. type: item -#: guix-git/doc/guix.texi:29830 +#: guix-git/doc/guix.texi:30195 #, no-wrap msgid "@code{outputs} (default: @code{\"(list (mpd-output))\"})" msgstr "@code{outputs} (predeterminadas: @code{\"(list (mpd-output))\"})" #. type: table -#: guix-git/doc/guix.texi:29832 +#: guix-git/doc/guix.texi:30197 msgid "The audio outputs that MPD can use. By default this is a single output using pulseaudio." msgstr "Las salidas de audio que MPD puede usar. De manera predeterminada es una salida de audio única usando pulseaudio." #. type: deftp -#: guix-git/doc/guix.texi:29836 +#: guix-git/doc/guix.texi:30201 #, no-wrap msgid "{Data Type} mpd-output" msgstr "{Tipo de datos} mpd-output" #. type: deftp -#: guix-git/doc/guix.texi:29838 +#: guix-git/doc/guix.texi:30203 msgid "Data type representing an @command{mpd} audio output." msgstr "Tipo de datos que representa una salida de audio de @command{mpd}." #. type: item -#: guix-git/doc/guix.texi:29840 +#: guix-git/doc/guix.texi:30205 #, no-wrap msgid "@code{name} (default: @code{\"MPD\"})" msgstr "@code{name} (predeterminado: @code{\"MPD\"})" #. type: table -#: guix-git/doc/guix.texi:29842 +#: guix-git/doc/guix.texi:30207 msgid "The name of the audio output." msgstr "Nombre de la salida de audio." #. type: item -#: guix-git/doc/guix.texi:29843 +#: guix-git/doc/guix.texi:30208 #, no-wrap msgid "@code{type} (default: @code{\"pulse\"})" msgstr "@code{type} (predeterminado: @code{\"pulse\"})" #. type: table -#: guix-git/doc/guix.texi:29845 +#: guix-git/doc/guix.texi:30210 msgid "The type of audio output." msgstr "Tipo de la salida de audio." #. type: item -#: guix-git/doc/guix.texi:29846 +#: guix-git/doc/guix.texi:30211 #, no-wrap msgid "@code{enabled?} (default: @code{#t})" msgstr "@code{enabled?} (predeterminado: @code{#t})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:29851 +#: guix-git/doc/guix.texi:30216 msgid "Specifies whether this audio output is enabled when MPD is started. By default, all audio outputs are enabled. This is just the default setting when there is no state file; with a state file, the previous state is restored." msgstr "Especifica si esta salida de audio se activa cuando se inicia MPD. De manera predeterminada se activan todas las salidas de audio. Esta es la configuración predeterminada cuando no existe un archivo de estado; con un archivo de estado se restaura el estado anterior." #. type: item -#: guix-git/doc/guix.texi:29852 +#: guix-git/doc/guix.texi:30217 #, no-wrap msgid "@code{tags?} (default: @code{#t})" msgstr "@code{tags?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:29856 +#: guix-git/doc/guix.texi:30221 msgid "If set to @code{#f}, then MPD will not send tags to this output. This is only useful for output plugins that can receive tags, for example the @code{httpd} output plugin." msgstr "Si se proporciona el valor @code{#f} MPD no envia etiquetas a esta salida. Es útil únicamente para módulos de salida que pueden recibir etiquetas, por ejemplo el módulo de salida @code{httpd}." #. type: item -#: guix-git/doc/guix.texi:29857 +#: guix-git/doc/guix.texi:30222 #, no-wrap msgid "@code{always-on?} (default: @code{#f})" msgstr "@code{always-on?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29861 +#: guix-git/doc/guix.texi:30226 #, fuzzy msgid "If set to @code{#t}, then MPD attempts to keep this audio output always open. This may be useful for streaming servers, when you don’t want to disconnect all listeners even when playback is accidentally stopped." msgstr "Si se proporciona el valor @code{#t} MPD intenta mantener abierta siempre esta salida de audio. Puede ser útil para servidores de retransmisión, donde no desea que todos los clientes se desconecten incluso cuando la reproducción se pare accidentalmente." #. type: code{#1} -#: guix-git/doc/guix.texi:29862 +#: guix-git/doc/guix.texi:30227 #, no-wrap msgid "mixer-type" msgstr "mixer-type" # TODO: Typo #. type: table -#: guix-git/doc/guix.texi:29868 +#: guix-git/doc/guix.texi:30233 msgid "This field accepts a symbol that specifies which mixer should be used for this audio output: the @code{hardware} mixer, the @code{software} mixer, the @code{null} mixer (allows setting the volume, but with no effect; this can be used as a trick to implement an external mixer External Mixer) or no mixer (@code{none})." msgstr "Este campo acepta un símbolo que especifica que mezclador debe usarse para esta salida de audio: el mezclador @code{hardware}, el mezclador @code{software}, el mezclador @code{null} (permite manejar el volumen pero sin ningún efecto; puede usarse para implementar un mezclador externo) o ningún mezclador (@code{none})." # FUZZY #. type: table -#: guix-git/doc/guix.texi:29872 +#: guix-git/doc/guix.texi:30237 msgid "An association list of option symbols to string values to be appended to the audio output configuration." msgstr "Una lista asociativa de símbolos de opción con valores de cadenas que se añadirán al final de la configuración de las salidas de audio." #. type: Plain text -#: guix-git/doc/guix.texi:29878 +#: guix-git/doc/guix.texi:30243 msgid "The following example shows a configuration of @code{mpd} that provides an HTTP audio streaming output." msgstr "El ejemplo siguiente muestra una configuración de @code{mpd} que proporciona una salida de retransmisión de audio por HTTP." #. type: lisp -#: guix-git/doc/guix.texi:29890 +#: guix-git/doc/guix.texi:30255 #, no-wrap msgid "" "(service mpd-service-type\n" @@ -58602,36 +59389,36 @@ msgstr "" " (port . \"8080\"))))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:29899 +#: guix-git/doc/guix.texi:30264 msgid "The @code{(gnu services virtualization)} module provides services for the libvirt and virtlog daemons, as well as other virtualization-related services." msgstr "El módulo @code{(gnu services virtualization)} proporciona servicios para los daemon libvirt y virtlog, así como otros servicios relacionados con la virtualización." #. type: subsubheading -#: guix-git/doc/guix.texi:29900 +#: guix-git/doc/guix.texi:30265 #, no-wrap msgid "Libvirt daemon" msgstr "Daemon de Libvirt" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:29905 +#: guix-git/doc/guix.texi:30270 #, fuzzy msgid "@code{libvirtd} is the server side daemon component of the libvirt virtualization management system. This daemon runs on host servers and performs required management tasks for virtualized guests." msgstr "@code{libvirtd} es un daemon del que se compone el lado del servidor del sistema de gestión de virtualización libvirt. Este daemon se ejecuta en las máquinas servidoras y realiza las tareas de gestión necesarias para los sistemas virtualizados." #. type: deffn -#: guix-git/doc/guix.texi:29906 +#: guix-git/doc/guix.texi:30271 #, no-wrap msgid "{Scheme Variable} libvirt-service-type" msgstr "{Variable Scheme} libvirt-service-type" #. type: deffn -#: guix-git/doc/guix.texi:29909 +#: guix-git/doc/guix.texi:30274 msgid "This is the type of the @uref{https://libvirt.org, libvirt daemon}. Its value must be a @code{libvirt-configuration}." msgstr "Este es el tipo para el @uref{https://libvirt.org, daemon de libvirt}. Su valor debe ser un objeto @code{libvirt-configuration}." #. type: lisp -#: guix-git/doc/guix.texi:29915 +#: guix-git/doc/guix.texi:30280 #, no-wrap msgid "" "(service libvirt-service-type\n" @@ -58645,642 +59432,642 @@ msgstr "" " (tls-port \"16555\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:29920 +#: guix-git/doc/guix.texi:30285 msgid "Available @code{libvirt-configuration} fields are:" msgstr "Los campos disponibles de @code{libvirt-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:29921 +#: guix-git/doc/guix.texi:30286 #, no-wrap msgid "{@code{libvirt-configuration} parameter} package libvirt" msgstr "{parámetro de @code{libvirt-configuration}} package libvirt" #. type: deftypevr -#: guix-git/doc/guix.texi:29923 +#: guix-git/doc/guix.texi:30288 msgid "Libvirt package." msgstr "Paquete libvirt." #. type: deftypevr -#: guix-git/doc/guix.texi:29926 +#: guix-git/doc/guix.texi:30291 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean listen-tls?" msgstr "{parámetro de @code{libvirt-configuration}} boolean listen-tls?" #. type: deftypevr -#: guix-git/doc/guix.texi:29929 +#: guix-git/doc/guix.texi:30294 msgid "Flag listening for secure TLS connections on the public TCP/IP port. You must set @code{listen} for this to have any effect." msgstr "Opción para la escucha de conexiones seguras TLS en el puerto TCP/IP público. Debe haberse proporcionado valor a @code{listen} para que tenga algún efecto." #. type: deftypevr -#: guix-git/doc/guix.texi:29932 +#: guix-git/doc/guix.texi:30297 msgid "It is necessary to setup a CA and issue server certificates before using this capability." msgstr "Es necesario configurar una autoridad de certificación (CA) y emitir certificados de servidor antes de usar esta característica." #. type: deftypevr -#: guix-git/doc/guix.texi:29937 +#: guix-git/doc/guix.texi:30302 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean listen-tcp?" msgstr "{parámetro de @code{libvirt-configuration}} boolean listen-tcp?" #. type: deftypevr -#: guix-git/doc/guix.texi:29940 +#: guix-git/doc/guix.texi:30305 msgid "Listen for unencrypted TCP connections on the public TCP/IP port. You must set @code{listen} for this to have any effect." msgstr "Escucha de conexiones TCP sin cifrar en el puerto TCP/IP público. Debe haberse proporcionado valor a @code{listen} para que tenga algún efecto." #. type: deftypevr -#: guix-git/doc/guix.texi:29944 +#: guix-git/doc/guix.texi:30309 msgid "Using the TCP socket requires SASL authentication by default. Only SASL mechanisms which support data encryption are allowed. This is DIGEST_MD5 and GSSAPI (Kerberos5)." msgstr "El uso del socket TCP necesita de manera predeterminada identificación SASL. Únicamente se permiten mecanismos SASL que implementen cifrado de datos. Estos son DIGEST_MD5 y GSSAPI (Kerberos5)." #. type: deftypevr -#: guix-git/doc/guix.texi:29949 +#: guix-git/doc/guix.texi:30314 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tls-port" msgstr "{parámetro de @code{libvirt-configuration}} string tls-port" #. type: deftypevr -#: guix-git/doc/guix.texi:29952 +#: guix-git/doc/guix.texi:30317 msgid "Port for accepting secure TLS connections. This can be a port number, or service name." msgstr "Puerto en el que se aceptan conexiones seguras. Puede ser un número de puerto o un nombre de servicio." #. type: deftypevr -#: guix-git/doc/guix.texi:29954 +#: guix-git/doc/guix.texi:30319 msgid "Defaults to @samp{\"16514\"}." msgstr "El valor predeterminado es @samp{\"16514\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29957 +#: guix-git/doc/guix.texi:30322 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tcp-port" msgstr "{parámetro de @code{libvirt-configuration}} string tcp-port" #. type: deftypevr -#: guix-git/doc/guix.texi:29960 +#: guix-git/doc/guix.texi:30325 msgid "Port for accepting insecure TCP connections. This can be a port number, or service name." msgstr "Puerto en el que se aceptan conexiones inseguras. Puede ser un número de puerto o un nombre de servicio." #. type: deftypevr -#: guix-git/doc/guix.texi:29962 +#: guix-git/doc/guix.texi:30327 msgid "Defaults to @samp{\"16509\"}." msgstr "El valor predeterminado es @samp{\"16509\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29965 +#: guix-git/doc/guix.texi:30330 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string listen-addr" msgstr "{parámetro de @code{libvirt-configuration}} string listen-addr" #. type: deftypevr -#: guix-git/doc/guix.texi:29967 +#: guix-git/doc/guix.texi:30332 msgid "IP address or hostname used for client connections." msgstr "Dirección IP o nombre de máquina usado para las conexiones de clientes." #. type: deftypevr -#: guix-git/doc/guix.texi:29972 +#: guix-git/doc/guix.texi:30337 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean mdns-adv?" msgstr "{parámetro de @code{libvirt-configuration}} boolean mdns-adv?" #. type: deftypevr -#: guix-git/doc/guix.texi:29974 +#: guix-git/doc/guix.texi:30339 msgid "Flag toggling mDNS advertisement of the libvirt service." msgstr "Opción que determina el anuncio mDNS del servicio libvirt." #. type: deftypevr -#: guix-git/doc/guix.texi:29977 +#: guix-git/doc/guix.texi:30342 msgid "Alternatively can disable for all services on a host by stopping the Avahi daemon." msgstr "De manera alternativa puede desactivarse para todos los servicios en una máquina parando el daemon Avahi." #. type: deftypevr -#: guix-git/doc/guix.texi:29982 +#: guix-git/doc/guix.texi:30347 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string mdns-name" msgstr "{parámetro de @code{libvirt-configuration}} string mdns-name" # FUZZY FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:29985 +#: guix-git/doc/guix.texi:30350 msgid "Default mDNS advertisement name. This must be unique on the immediate broadcast network." msgstr "Nombre predeterminado del anuncio mDNS. Debe ser único en la red de distribución inmediata." #. type: deftypevr -#: guix-git/doc/guix.texi:29987 +#: guix-git/doc/guix.texi:30352 msgid "Defaults to @samp{\"Virtualization Host \"}." msgstr "El valor predeterminado es @samp{\"Virtualization Host \"}.<" #. type: deftypevr -#: guix-git/doc/guix.texi:29990 +#: guix-git/doc/guix.texi:30355 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-group" msgstr "{parámetro de @code{libvirt-configuration}} string unix-sock-group" #. type: deftypevr -#: guix-git/doc/guix.texi:29994 +#: guix-git/doc/guix.texi:30359 msgid "UNIX domain socket group ownership. This can be used to allow a 'trusted' set of users access to management capabilities without becoming root." msgstr "Grupo propietario del socket de dominio de UNIX. Puede usarse para permitir a un conjunto de usuarias ``de confianza'' acceso a las funcionalidades de gestión sin convertirse en root." #. type: deftypevr -#: guix-git/doc/guix.texi:29999 +#: guix-git/doc/guix.texi:30364 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-ro-perms" msgstr "{parámetro de @code{libvirt-configuration}} string unix-sock-ro-perms" #. type: deftypevr -#: guix-git/doc/guix.texi:30002 +#: guix-git/doc/guix.texi:30367 msgid "UNIX socket permissions for the R/O socket. This is used for monitoring VM status only." msgstr "Permisos del socket UNIX de sólo lectura@footnote{R/O: Read-Only en inglés.}. Se usa únicamente para monitorizar el estado de las máquinas virtuales." #. type: deftypevr -#: guix-git/doc/guix.texi:30004 guix-git/doc/guix.texi:30022 +#: guix-git/doc/guix.texi:30369 guix-git/doc/guix.texi:30387 msgid "Defaults to @samp{\"0777\"}." msgstr "El valor predeterminado es @samp{\"0777\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30007 +#: guix-git/doc/guix.texi:30372 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-rw-perms" msgstr "{parámetro de @code{libvirt-configuration}} string unix-sock-rw-perms" #. type: deftypevr -#: guix-git/doc/guix.texi:30011 +#: guix-git/doc/guix.texi:30376 msgid "UNIX socket permissions for the R/W socket. Default allows only root. If PolicyKit is enabled on the socket, the default will change to allow everyone (eg, 0777)" msgstr "Permisos del socket UNIX de lectura/escritura@footnote{R/W: Read-Write en inglés.}. El valor predeterminado únicamente permite acceso a root. Si PolicyKit se encuentra activo en el socket, el valor predeterminado cambiará para permitir acceso universal (es decir, 0777)." #. type: deftypevr -#: guix-git/doc/guix.texi:30013 +#: guix-git/doc/guix.texi:30378 msgid "Defaults to @samp{\"0770\"}." msgstr "El valor predeterminado es @samp{\"0770\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30016 +#: guix-git/doc/guix.texi:30381 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-admin-perms" msgstr "{parámetro de @code{libvirt-configuration}} string unix-sock-admin-perms" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:30020 +#: guix-git/doc/guix.texi:30385 msgid "UNIX socket permissions for the admin socket. Default allows only owner (root), do not change it unless you are sure to whom you are exposing the access to." msgstr "Permisos del socket UNIX de administración. El valor predeterminado únicamente permite acceso a la propietaria (root), no lo cambie a menos que esté completamente segura de a quién expone el acceso." #. type: deftypevr -#: guix-git/doc/guix.texi:30025 +#: guix-git/doc/guix.texi:30390 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-dir" msgstr "{parámetro de @code{libvirt-configuration}} string unix-sock-dir" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:30027 +#: guix-git/doc/guix.texi:30392 msgid "The directory in which sockets will be found/created." msgstr "Directorio en el que los sockets se encuentran/crean." #. type: deftypevr -#: guix-git/doc/guix.texi:30029 +#: guix-git/doc/guix.texi:30394 msgid "Defaults to @samp{\"/var/run/libvirt\"}." msgstr "El valor predeterminado es @samp{\"/var/run/libvirt\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30032 +#: guix-git/doc/guix.texi:30397 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-unix-ro" msgstr "{parámetro de @code{libvirt-configuration}} string auth-unix-ro" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:30035 +#: guix-git/doc/guix.texi:30400 msgid "Authentication scheme for UNIX read-only sockets. By default socket permissions allow anyone to connect" msgstr "Esquema de identificación para los sockets de solo-lectura de UNIX. Los permisos predeterminados del socket permiten la conexión de cualquier usuaria." #. type: deftypevr -#: guix-git/doc/guix.texi:30037 guix-git/doc/guix.texi:30046 +#: guix-git/doc/guix.texi:30402 guix-git/doc/guix.texi:30411 msgid "Defaults to @samp{\"polkit\"}." msgstr "El valor predeterminado es @samp{\"polkit\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30040 +#: guix-git/doc/guix.texi:30405 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-unix-rw" msgstr "{parámetro de @code{libvirt-configuration}} string auth-unix-rw" #. type: deftypevr -#: guix-git/doc/guix.texi:30044 +#: guix-git/doc/guix.texi:30409 msgid "Authentication scheme for UNIX read-write sockets. By default socket permissions only allow root. If PolicyKit support was compiled into libvirt, the default will be to use 'polkit' auth." msgstr "Esquema de identificación para los sockets de lectura/escritura de UNIX. Los permisos predeterminados del socket permiten la conexión únicamente a root. Si se activó en la compilación de libvirt la interoperabilidad con PolicyKit, el valor predeterminado es usar la identificación ``policykit''." #. type: deftypevr -#: guix-git/doc/guix.texi:30049 +#: guix-git/doc/guix.texi:30414 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-tcp" msgstr "{parámetro de @code{libvirt-configuration}} string auth-tcp" #. type: deftypevr -#: guix-git/doc/guix.texi:30053 +#: guix-git/doc/guix.texi:30418 msgid "Authentication scheme for TCP sockets. If you don't enable SASL, then all TCP traffic is cleartext. Don't do this outside of a dev/test scenario." msgstr "Esquema de identificación para los sockets TCP. Si no activa SASL, todo el tráfico TCP estará en texto plano. No lo haga más allá de un escenario de desarrollo/pruebas." #. type: deftypevr -#: guix-git/doc/guix.texi:30055 +#: guix-git/doc/guix.texi:30420 msgid "Defaults to @samp{\"sasl\"}." msgstr "El valor predeterminado es @samp{\"sasl\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30058 +#: guix-git/doc/guix.texi:30423 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-tls" msgstr "{parámetro de @code{libvirt-configuration}} string auth-tls" #. type: deftypevr -#: guix-git/doc/guix.texi:30062 +#: guix-git/doc/guix.texi:30427 msgid "Authentication scheme for TLS sockets. TLS sockets already have encryption provided by the TLS layer, and limited authentication is done by certificates." msgstr "Esquema de identificación para los sockets TLS. Los sockets TLS ya se encuentran cifrados gracias a la capa TLS, y una identificación limitada se realiza con los certificados." #. type: deftypevr -#: guix-git/doc/guix.texi:30065 +#: guix-git/doc/guix.texi:30430 msgid "It is possible to make use of any SASL authentication mechanism as well, by using 'sasl' for this option" msgstr "También es posible hacer uso de cualquier mecanismo de identificación SASL proporcionando ``sasl'' en esta opción." #. type: deftypevr -#: guix-git/doc/guix.texi:30067 +#: guix-git/doc/guix.texi:30432 msgid "Defaults to @samp{\"none\"}." msgstr "El valor predeterminado es @samp{\"none\"}." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:30070 +#: guix-git/doc/guix.texi:30435 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list access-drivers" msgstr "{parámetro de @code{libvirt-configuration}} lista-opcional access-drivers" #. type: deftypevr -#: guix-git/doc/guix.texi:30072 +#: guix-git/doc/guix.texi:30437 msgid "API access control scheme." msgstr "Esquema de la API de control de acceso." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:30075 +#: guix-git/doc/guix.texi:30440 msgid "By default an authenticated user is allowed access to all APIs. Access drivers can place restrictions on this." msgstr "De manera predeterminada una usuaria identificada puede acceder a todas las API. Los controladores de acceso pueden incluir restricciones de acceso sobre ello." #. type: deftypevr -#: guix-git/doc/guix.texi:30080 +#: guix-git/doc/guix.texi:30445 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string key-file" msgstr "{parámetro de @code{libvirt-configuration}} string key-file" #. type: deftypevr -#: guix-git/doc/guix.texi:30083 +#: guix-git/doc/guix.texi:30448 msgid "Server key file path. If set to an empty string, then no private key is loaded." msgstr "Ruta del archivo con la clave del servidor. Si se proporciona una cadena vacía, no se carga ninguna clave privada." #. type: deftypevr -#: guix-git/doc/guix.texi:30088 +#: guix-git/doc/guix.texi:30453 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string cert-file" msgstr "{parámetro de @code{libvirt-configuration}} string cert-file" #. type: deftypevr -#: guix-git/doc/guix.texi:30091 +#: guix-git/doc/guix.texi:30456 msgid "Server key file path. If set to an empty string, then no certificate is loaded." msgstr "Ruta del archivo con la clave del servidor. Si se proporciona una cadena vacía, no se carga ningún certificado." #. type: deftypevr -#: guix-git/doc/guix.texi:30096 +#: guix-git/doc/guix.texi:30461 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string ca-file" msgstr "{parámetro de @code{libvirt-configuration}} string ca-file" #. type: deftypevr -#: guix-git/doc/guix.texi:30099 +#: guix-git/doc/guix.texi:30464 msgid "Server key file path. If set to an empty string, then no CA certificate is loaded." msgstr "Ruta del archivo con la clave del servidor. Si se proporciona una cadena vacía, no se carga ningún certificado de CA." #. type: deftypevr -#: guix-git/doc/guix.texi:30104 +#: guix-git/doc/guix.texi:30469 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string crl-file" msgstr "{parámetro de @code{libvirt-configuration}} string crl-file" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:30107 +#: guix-git/doc/guix.texi:30472 msgid "Certificate revocation list path. If set to an empty string, then no CRL is loaded." msgstr "Ruta de la lista de revocaciones de certificado. Si se proporciona una cadena vacía, no se carga ninguna lista." #. type: deftypevr -#: guix-git/doc/guix.texi:30112 +#: guix-git/doc/guix.texi:30477 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean tls-no-sanity-cert" msgstr "{parámetro de @code{libvirt-configuration}} boolean tls-no-sanity-cert" #. type: deftypevr -#: guix-git/doc/guix.texi:30114 +#: guix-git/doc/guix.texi:30479 msgid "Disable verification of our own server certificates." msgstr "Desactiva la verificación de los propios certificados del servidor." #. type: deftypevr -#: guix-git/doc/guix.texi:30117 +#: guix-git/doc/guix.texi:30482 msgid "When libvirtd starts it performs some sanity checks against its own certificates." msgstr "Cuando libvirtd arranca, realiza algunas comprobaciones básicas sobre sus propios certificados." #. type: deftypevr -#: guix-git/doc/guix.texi:30122 +#: guix-git/doc/guix.texi:30487 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean tls-no-verify-cert" msgstr "{parámetro de @code{libvirt-configuration}} boolean tls-no-verify-cert" #. type: deftypevr -#: guix-git/doc/guix.texi:30124 +#: guix-git/doc/guix.texi:30489 msgid "Disable verification of client certificates." msgstr "Desactiva la verificación de certificados de clientes." #. type: deftypevr -#: guix-git/doc/guix.texi:30128 +#: guix-git/doc/guix.texi:30493 msgid "Client certificate verification is the primary authentication mechanism. Any client which does not present a certificate signed by the CA will be rejected." msgstr "La verificación de certificados de cliente es el mecanismo primario de identificación. Se rechazará cualquier cliente que no presente un certificado firmado por la autoridad de certificación (CA)." #. type: deftypevr -#: guix-git/doc/guix.texi:30133 +#: guix-git/doc/guix.texi:30498 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list tls-allowed-dn-list" msgstr "{parámetro de @code{libvirt-configuration}} lista-opcional tls-allowed-dn-list" # FUZZY FUZZY FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:30135 +#: guix-git/doc/guix.texi:30500 msgid "Whitelist of allowed x509 Distinguished Name." msgstr "Lista de nombres distinguidos (DN) x509 permitidos." #. type: deftypevr -#: guix-git/doc/guix.texi:30140 +#: guix-git/doc/guix.texi:30505 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list sasl-allowed-usernames" msgstr "{parámetro de @code{libvirt-configuration}} lista-opcional sasl-allowed-usernames" # FUZZY FUZZY FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:30143 +#: guix-git/doc/guix.texi:30508 msgid "Whitelist of allowed SASL usernames. The format for username depends on the SASL authentication mechanism." msgstr "Lista de nombres de usuaria SASL permitidos. El formato para el nombre de la usuaria depende del mecanismo de identificación SASL." #. type: deftypevr -#: guix-git/doc/guix.texi:30148 +#: guix-git/doc/guix.texi:30513 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tls-priority" msgstr "{parámetro de @code{libvirt-configuration}} string tls-priority" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:30152 +#: guix-git/doc/guix.texi:30517 msgid "Override the compile time default TLS priority string. The default is usually @samp{\"NORMAL\"} unless overridden at build time. Only set this is it is desired for libvirt to deviate from the global default settings." msgstr "Cambia el valor de la cadena de prioridad de TLS predeterminada en tiempo de compilación. El valor predeterminado habitualmente es @samp{\"NORMAL\"} a menos que se cambiase en tiempo de compilación. Proporcione este valor únicamente si desea que libvirt se desvíe de la configuración global predeterminada." #. type: deftypevr -#: guix-git/doc/guix.texi:30154 +#: guix-git/doc/guix.texi:30519 msgid "Defaults to @samp{\"NORMAL\"}." msgstr "El valor predeterminado es @samp{\"NORMAL\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30157 +#: guix-git/doc/guix.texi:30522 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-clients" msgstr "{parámetro de @code{libvirt-configuration}} integer max-clients" #. type: deftypevr -#: guix-git/doc/guix.texi:30160 guix-git/doc/guix.texi:30584 +#: guix-git/doc/guix.texi:30525 guix-git/doc/guix.texi:30949 msgid "Maximum number of concurrent client connections to allow over all sockets combined." msgstr "Número máximo de conexiones concurrentes de clientes permitidas en todos los sockets combinados." #. type: deftypevr -#: guix-git/doc/guix.texi:30162 +#: guix-git/doc/guix.texi:30527 msgid "Defaults to @samp{5000}." msgstr "El valor predeterminado es @samp{5000}." #. type: deftypevr -#: guix-git/doc/guix.texi:30165 +#: guix-git/doc/guix.texi:30530 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-queued-clients" msgstr "{parámetro de @code{libvirt-configuration}} integer max-queued-clients" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:30169 +#: guix-git/doc/guix.texi:30534 msgid "Maximum length of queue of connections waiting to be accepted by the daemon. Note, that some protocols supporting retransmission may obey this so that a later reattempt at connection succeeds." msgstr "Longitud máxima de la cola de conexiones a la espera de ser aceptadas por el daemon. Fíjese que algunos protocolos que implementan la retransmisión pueden obedecer esto de manera que un intento posterior de conexión tenga éxito." #. type: deftypevr -#: guix-git/doc/guix.texi:30174 +#: guix-git/doc/guix.texi:30539 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-anonymous-clients" msgstr "{parámetro de @code{libvirt-configuration}} integer max-anonymous-clients" #. type: deftypevr -#: guix-git/doc/guix.texi:30177 +#: guix-git/doc/guix.texi:30542 msgid "Maximum length of queue of accepted but not yet authenticated clients. Set this to zero to turn this feature off" msgstr "Longitud máxima de la cola de clientes aceptados pero no identificados todavía. Proporcione el valor cero para desactivar esta característica." #. type: deftypevr -#: guix-git/doc/guix.texi:30179 guix-git/doc/guix.texi:30197 -#: guix-git/doc/guix.texi:30213 +#: guix-git/doc/guix.texi:30544 guix-git/doc/guix.texi:30562 +#: guix-git/doc/guix.texi:30578 msgid "Defaults to @samp{20}." msgstr "El valor predeterminado es @samp{20}." #. type: deftypevr -#: guix-git/doc/guix.texi:30182 +#: guix-git/doc/guix.texi:30547 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer min-workers" msgstr "{parámetro de @code{libvirt-configuration}} integer min-workers" #. type: deftypevr -#: guix-git/doc/guix.texi:30184 +#: guix-git/doc/guix.texi:30549 msgid "Number of workers to start up initially." msgstr "Número de procesos de trabajo que se lanzarán inicialmente." #. type: deftypevr -#: guix-git/doc/guix.texi:30189 +#: guix-git/doc/guix.texi:30554 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-workers" msgstr "{parámetro de @code{libvirt-configuration}} integer max-workers" #. type: deftypevr -#: guix-git/doc/guix.texi:30191 +#: guix-git/doc/guix.texi:30556 msgid "Maximum number of worker threads." msgstr "Número máximo de hilos de trabajo." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:30195 +#: guix-git/doc/guix.texi:30560 msgid "If the number of active clients exceeds @code{min-workers}, then more threads are spawned, up to max_workers limit. Typically you'd want max_workers to equal maximum number of clients allowed." msgstr "Si el número de clientes excede @code{min-workers}, se lanzan más hilos, hasta el límite @code{max-workers}. Habitualmente se desea que @code{max-workers} sea igual al número máximo de clientes permitido." #. type: deftypevr -#: guix-git/doc/guix.texi:30200 +#: guix-git/doc/guix.texi:30565 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer prio-workers" msgstr "{parámetro de @code{libvirt-configuration}} integer prio-workers" # FUZZY FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:30204 +#: guix-git/doc/guix.texi:30569 msgid "Number of priority workers. If all workers from above pool are stuck, some calls marked as high priority (notably domainDestroy) can be executed in this pool." msgstr "Número de procesos de trabajo prioritarios. Si todos los hilos de trabajo del conjunto previo se encuentran bloqueados, algunas llamadas marcadas como de alta prioridad (notablemente domainDestroy) pueden ejecutarse en este conjunto de hilos." #. type: deftypevr -#: guix-git/doc/guix.texi:30209 +#: guix-git/doc/guix.texi:30574 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-requests" msgstr "{parámetro de @code{libvirt-configuration}} integer max-requests" #. type: deftypevr -#: guix-git/doc/guix.texi:30211 +#: guix-git/doc/guix.texi:30576 msgid "Total global limit on concurrent RPC calls." msgstr "Límite global total de llamadas RPC concurrentes." #. type: deftypevr -#: guix-git/doc/guix.texi:30216 +#: guix-git/doc/guix.texi:30581 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-client-requests" msgstr "{parámetro de @code{libvirt-configuration}} integer max-client-requests" #. type: deftypevr -#: guix-git/doc/guix.texi:30220 +#: guix-git/doc/guix.texi:30585 msgid "Limit on concurrent requests from a single client connection. To avoid one client monopolizing the server this should be a small fraction of the global max_requests and max_workers parameter." msgstr "Límite de peticiones concurrentes desde una única conexión de cliente. Para evitar que un cliente monopolice el servidor esto debe ser una pequeña fracción de los parámetros globales ``max_requests'' y ``max_workers''." #. type: deftypevr -#: guix-git/doc/guix.texi:30225 +#: guix-git/doc/guix.texi:30590 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-min-workers" msgstr "{parámetro de @code{libvirt-configuration}} integer admin-min-workers" #. type: deftypevr -#: guix-git/doc/guix.texi:30227 +#: guix-git/doc/guix.texi:30592 msgid "Same as @code{min-workers} but for the admin interface." msgstr "Igual que @code{min-workers} pero para la interfaz de administración." #. type: deftypevr -#: guix-git/doc/guix.texi:30232 +#: guix-git/doc/guix.texi:30597 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-workers" msgstr "{parámetro de @code{libvirt-configuration}} integer admin-max-workers" #. type: deftypevr -#: guix-git/doc/guix.texi:30234 +#: guix-git/doc/guix.texi:30599 msgid "Same as @code{max-workers} but for the admin interface." msgstr "Igual que @code{max-workers} pero para la interfaz de administración." #. type: deftypevr -#: guix-git/doc/guix.texi:30239 +#: guix-git/doc/guix.texi:30604 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-clients" msgstr "{parámetro de @code{libvirt-configuration}} integer admin-max-clients" #. type: deftypevr -#: guix-git/doc/guix.texi:30241 +#: guix-git/doc/guix.texi:30606 msgid "Same as @code{max-clients} but for the admin interface." msgstr "Igual que @code{max-clients} pero para la interfaz de administración." #. type: deftypevr -#: guix-git/doc/guix.texi:30246 +#: guix-git/doc/guix.texi:30611 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-queued-clients" msgstr "{parámetro de @code{libvirt-configuration}} integer admin-max-queued-clients" #. type: deftypevr -#: guix-git/doc/guix.texi:30248 +#: guix-git/doc/guix.texi:30613 msgid "Same as @code{max-queued-clients} but for the admin interface." msgstr "Igual que @code{max-queued-clients} pero para la interfaz de administración." #. type: deftypevr -#: guix-git/doc/guix.texi:30253 +#: guix-git/doc/guix.texi:30618 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-client-requests" msgstr "{parámetro de @code{libvirt-configuration}} integer admin-max-client-requests" #. type: deftypevr -#: guix-git/doc/guix.texi:30255 +#: guix-git/doc/guix.texi:30620 msgid "Same as @code{max-client-requests} but for the admin interface." msgstr "Igual que @code{max-client-requests} pero para la interfaz de administración." #. type: deftypevr -#: guix-git/doc/guix.texi:30260 +#: guix-git/doc/guix.texi:30625 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer log-level" msgstr "{parámetro de @code{libvirt-configuration}} integer log-level" #. type: deftypevr -#: guix-git/doc/guix.texi:30262 guix-git/doc/guix.texi:30486 +#: guix-git/doc/guix.texi:30627 guix-git/doc/guix.texi:30851 msgid "Logging level. 4 errors, 3 warnings, 2 information, 1 debug." msgstr "Nivel de registro. 4 errores, 3 avisos, 2 información, 1 depuración." #. type: deftypevr -#: guix-git/doc/guix.texi:30267 +#: guix-git/doc/guix.texi:30632 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string log-filters" msgstr "{parámetro de @code{libvirt-configuration}} string log-filters" #. type: deftypevr -#: guix-git/doc/guix.texi:30269 guix-git/doc/guix.texi:30493 +#: guix-git/doc/guix.texi:30634 guix-git/doc/guix.texi:30858 msgid "Logging filters." msgstr "Filtros del registro." #. type: deftypevr -#: guix-git/doc/guix.texi:30272 +#: guix-git/doc/guix.texi:30637 msgid "A filter allows to select a different logging level for a given category of logs. The format for a filter is one of:" msgstr "Un filtro permite la selección de un nivel de registro diferente para una categoría dada de registros. El formato del filtro es uno de los siguientes:" #. type: itemize -#: guix-git/doc/guix.texi:30276 guix-git/doc/guix.texi:30500 +#: guix-git/doc/guix.texi:30641 guix-git/doc/guix.texi:30865 msgid "x:name" msgstr "x:nombre" #. type: itemize -#: guix-git/doc/guix.texi:30279 guix-git/doc/guix.texi:30503 +#: guix-git/doc/guix.texi:30644 guix-git/doc/guix.texi:30868 msgid "x:+name" msgstr "x:+nombre" #. type: deftypevr -#: guix-git/doc/guix.texi:30290 +#: guix-git/doc/guix.texi:30655 msgid "where @code{name} is a string which is matched against the category given in the @code{VIR_LOG_INIT()} at the top of each libvirt source file, e.g., @samp{\"remote\"}, @samp{\"qemu\"}, or @samp{\"util.json\"} (the name in the filter can be a substring of the full category name, in order to match multiple similar categories), the optional @samp{\"+\"} prefix tells libvirt to log stack trace for each message matching name, and @code{x} is the minimal level where matching messages should be logged:" msgstr "donde @code{nombre} es una cadena contra la que se compara la categoría proporcionada en la llamada @code{VIR_LOG_INIT()} al principio de cada archivo de fuentes de libvirt, por ejemplo @samp{\"remote\"}, @samp{\"qemu\"} o @samp{\"util.json\"} (el nombre en el filtro puede ser una subcadena del nombre completo de la categoría, para aceptar múltiples categorías con nombres similares), el prefijo opcional @samp{\"+\"} indica a libvirt que registre la pila de llamadas en cada mensaje con el nombre correspondiente, y @code{x} es el nivel mínimo de los mensajes que deben registrarse:" #. type: itemize -#: guix-git/doc/guix.texi:30294 guix-git/doc/guix.texi:30339 -#: guix-git/doc/guix.texi:30517 guix-git/doc/guix.texi:30562 +#: guix-git/doc/guix.texi:30659 guix-git/doc/guix.texi:30704 +#: guix-git/doc/guix.texi:30882 guix-git/doc/guix.texi:30927 msgid "1: DEBUG" msgstr "1: DEBUG (depuración)" #. type: itemize -#: guix-git/doc/guix.texi:30297 guix-git/doc/guix.texi:30342 -#: guix-git/doc/guix.texi:30520 guix-git/doc/guix.texi:30565 +#: guix-git/doc/guix.texi:30662 guix-git/doc/guix.texi:30707 +#: guix-git/doc/guix.texi:30885 guix-git/doc/guix.texi:30930 msgid "2: INFO" msgstr "2: INFO (información)" #. type: itemize -#: guix-git/doc/guix.texi:30300 guix-git/doc/guix.texi:30345 -#: guix-git/doc/guix.texi:30523 guix-git/doc/guix.texi:30568 +#: guix-git/doc/guix.texi:30665 guix-git/doc/guix.texi:30710 +#: guix-git/doc/guix.texi:30888 guix-git/doc/guix.texi:30933 msgid "3: WARNING" msgstr "3: WARNING (aviso)" #. type: itemize -#: guix-git/doc/guix.texi:30303 guix-git/doc/guix.texi:30348 -#: guix-git/doc/guix.texi:30526 guix-git/doc/guix.texi:30571 +#: guix-git/doc/guix.texi:30668 guix-git/doc/guix.texi:30713 +#: guix-git/doc/guix.texi:30891 guix-git/doc/guix.texi:30936 msgid "4: ERROR" msgstr "4: ERROR" #. type: deftypevr -#: guix-git/doc/guix.texi:30308 guix-git/doc/guix.texi:30531 +#: guix-git/doc/guix.texi:30673 guix-git/doc/guix.texi:30896 msgid "Multiple filters can be defined in a single filters statement, they just need to be separated by spaces." msgstr "Se pueden definir en una única sentencia múltiples filtros, únicamente hace falta separarlos por espacios." #. type: deftypevr -#: guix-git/doc/guix.texi:30310 guix-git/doc/guix.texi:30533 +#: guix-git/doc/guix.texi:30675 guix-git/doc/guix.texi:30898 msgid "Defaults to @samp{\"3:remote 4:event\"}." msgstr "El valor predeterminado es @samp{\"3:remote 4:event\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30313 +#: guix-git/doc/guix.texi:30678 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string log-outputs" msgstr "{parámetro de @code{libvirt-configuration}} string log-outputs" @@ -59288,250 +60075,250 @@ msgstr "{parámetro de @code{libvirt-configuration}} string log-outputs" # FUZZY # MAAV (TODO): Log #. type: deftypevr -#: guix-git/doc/guix.texi:30315 guix-git/doc/guix.texi:30538 +#: guix-git/doc/guix.texi:30680 guix-git/doc/guix.texi:30903 msgid "Logging outputs." msgstr "Salidas de log." # FUZZY # MAAV (TODO): Log #. type: deftypevr -#: guix-git/doc/guix.texi:30318 +#: guix-git/doc/guix.texi:30683 msgid "An output is one of the places to save logging information. The format for an output can be:" msgstr "Una salida es uno de esos lugares para almacenar información de logging. El formato para una salida puede ser:" #. type: item -#: guix-git/doc/guix.texi:30320 guix-git/doc/guix.texi:30543 +#: guix-git/doc/guix.texi:30685 guix-git/doc/guix.texi:30908 #, no-wrap msgid "x:stderr" msgstr "x:stderr" #. type: table -#: guix-git/doc/guix.texi:30322 guix-git/doc/guix.texi:30545 +#: guix-git/doc/guix.texi:30687 guix-git/doc/guix.texi:30910 msgid "output goes to stderr" msgstr "la salida va a stderr" #. type: item -#: guix-git/doc/guix.texi:30323 guix-git/doc/guix.texi:30546 +#: guix-git/doc/guix.texi:30688 guix-git/doc/guix.texi:30911 #, no-wrap msgid "x:syslog:name" msgstr "x:syslog:nombre" #. type: table -#: guix-git/doc/guix.texi:30325 guix-git/doc/guix.texi:30548 +#: guix-git/doc/guix.texi:30690 guix-git/doc/guix.texi:30913 msgid "use syslog for the output and use the given name as the ident" msgstr "usa syslog para la salida y usa el nombre proporcionado como identificador" #. type: item -#: guix-git/doc/guix.texi:30326 guix-git/doc/guix.texi:30549 +#: guix-git/doc/guix.texi:30691 guix-git/doc/guix.texi:30914 #, no-wrap msgid "x:file:file_path" msgstr "x:file:ruta_archivo" #. type: table -#: guix-git/doc/guix.texi:30328 guix-git/doc/guix.texi:30551 +#: guix-git/doc/guix.texi:30693 guix-git/doc/guix.texi:30916 msgid "output to a file, with the given filepath" msgstr "encamina la salida a un archivo, con la ruta proporcionada" #. type: item -#: guix-git/doc/guix.texi:30329 guix-git/doc/guix.texi:30552 +#: guix-git/doc/guix.texi:30694 guix-git/doc/guix.texi:30917 #, no-wrap msgid "x:journald" msgstr "x:journald" # FUZZY #. type: table -#: guix-git/doc/guix.texi:30331 guix-git/doc/guix.texi:30554 +#: guix-git/doc/guix.texi:30696 guix-git/doc/guix.texi:30919 msgid "output to journald logging system" msgstr "usa el sistema de logging journald" #. type: deftypevr -#: guix-git/doc/guix.texi:30335 guix-git/doc/guix.texi:30558 +#: guix-git/doc/guix.texi:30700 guix-git/doc/guix.texi:30923 msgid "In all case the x prefix is the minimal level, acting as a filter" msgstr "En todos los casos el prefijo x es el nivel mínimo, que actúa como filtro" #. type: deftypevr -#: guix-git/doc/guix.texi:30353 guix-git/doc/guix.texi:30576 +#: guix-git/doc/guix.texi:30718 guix-git/doc/guix.texi:30941 msgid "Multiple outputs can be defined, they just need to be separated by spaces." msgstr "Se pueden definir salidas múltiples, únicamente deben separarse por espacios." #. type: deftypevr -#: guix-git/doc/guix.texi:30355 guix-git/doc/guix.texi:30578 +#: guix-git/doc/guix.texi:30720 guix-git/doc/guix.texi:30943 msgid "Defaults to @samp{\"3:stderr\"}." msgstr "El valor predeterminado es @samp{\"3:stderr\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30358 +#: guix-git/doc/guix.texi:30723 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer audit-level" msgstr "{parámetro de @code{libvirt-configuration}} integer audit-level" #. type: deftypevr -#: guix-git/doc/guix.texi:30360 +#: guix-git/doc/guix.texi:30725 msgid "Allows usage of the auditing subsystem to be altered" msgstr "Permite la alteración del uso del sistema de auditoría." #. type: itemize -#: guix-git/doc/guix.texi:30364 +#: guix-git/doc/guix.texi:30729 msgid "0: disable all auditing" msgstr "0: desactiva la auditoría" #. type: itemize -#: guix-git/doc/guix.texi:30367 +#: guix-git/doc/guix.texi:30732 msgid "1: enable auditing, only if enabled on host" msgstr "1: activa la auditoría, únicamente si está activado en la máquina" #. type: itemize -#: guix-git/doc/guix.texi:30370 +#: guix-git/doc/guix.texi:30735 msgid "2: enable auditing, and exit if disabled on host." msgstr "2: activa la auditoría, y sale si está desactivada en la máquina." #. type: deftypevr -#: guix-git/doc/guix.texi:30377 +#: guix-git/doc/guix.texi:30742 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean audit-logging" msgstr "{parámetro de @code{libvirt-configuration}} boolean audit-logging" #. type: deftypevr -#: guix-git/doc/guix.texi:30379 +#: guix-git/doc/guix.texi:30744 msgid "Send audit messages via libvirt logging infrastructure." msgstr "Envía los mensajes de auditoría a través de la infraestructura de registro de libvirt." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:30384 +#: guix-git/doc/guix.texi:30749 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-string host-uuid" msgstr "{parámetro de @code{libvirt-configuration}} string-opcional host-uuid" #. type: deftypevr -#: guix-git/doc/guix.texi:30386 +#: guix-git/doc/guix.texi:30751 #, fuzzy msgid "Host UUID@. UUID must not have all digits be the same." msgstr "UUID de la máquina anfitriona. No pueden ser iguales todos los dígitos del UUID." #. type: deftypevr -#: guix-git/doc/guix.texi:30391 +#: guix-git/doc/guix.texi:30756 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string host-uuid-source" msgstr "{parámetro de @code{libvirt-configuration}} string host-uuid-source" #. type: deftypevr -#: guix-git/doc/guix.texi:30393 +#: guix-git/doc/guix.texi:30758 msgid "Source to read host UUID." msgstr "Fuente de lectura del UUID de la máquina anfitriona." #. type: itemize -#: guix-git/doc/guix.texi:30397 +#: guix-git/doc/guix.texi:30762 msgid "@code{smbios}: fetch the UUID from @code{dmidecode -s system-uuid}" msgstr "@code{smbios}: obtiene el UUID de @code{dmidecode -s system-uuid}" #. type: itemize -#: guix-git/doc/guix.texi:30400 +#: guix-git/doc/guix.texi:30765 msgid "@code{machine-id}: fetch the UUID from @code{/etc/machine-id}" msgstr "@code{machine-id}: obtiene el UUID de @code{/etc/machine-id}" #. type: deftypevr -#: guix-git/doc/guix.texi:30405 +#: guix-git/doc/guix.texi:30770 msgid "If @code{dmidecode} does not provide a valid UUID a temporary UUID will be generated." msgstr "Si @code{dmidecode} no proporciona un UUID válido, se generará un UUID temporal." #. type: deftypevr -#: guix-git/doc/guix.texi:30407 +#: guix-git/doc/guix.texi:30772 msgid "Defaults to @samp{\"smbios\"}." msgstr "El valor predeterminado es @samp{\"smbios\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30410 +#: guix-git/doc/guix.texi:30775 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer keepalive-interval" msgstr "{parámetro de @code{libvirt-configuration}} integer keepalive-interval" #. type: deftypevr -#: guix-git/doc/guix.texi:30415 +#: guix-git/doc/guix.texi:30780 msgid "A keepalive message is sent to a client after @code{keepalive_interval} seconds of inactivity to check if the client is still responding. If set to -1, libvirtd will never send keepalive requests; however clients can still send them and the daemon will send responses." msgstr "Un mensaje ``keepalive'' se envía al cliente tras @code{keepalive_interval} segundos de inactividad para comprobar si el cliente todavía responde. Si se proporciona el valor -1, libvirtd nunca enviará peticiones ``keepalive''; no obstante los clientes todavía pueden mandarlas y el daemon enviará las respuestas." #. type: deftypevr -#: guix-git/doc/guix.texi:30420 +#: guix-git/doc/guix.texi:30785 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer keepalive-count" msgstr "{parámetro de @code{libvirt-configuration}} integer keepalive-count" #. type: deftypevr -#: guix-git/doc/guix.texi:30424 +#: guix-git/doc/guix.texi:30789 msgid "Maximum number of keepalive messages that are allowed to be sent to the client without getting any response before the connection is considered broken." msgstr "Número máximo de mensajes ``keepalive'' que se permite enviar a un cliente sin obtener respuesta antes de considerar que se ha roto la conexión." #. type: deftypevr -#: guix-git/doc/guix.texi:30431 +#: guix-git/doc/guix.texi:30796 msgid "In other words, the connection is automatically closed approximately after @code{keepalive_interval * (keepalive_count + 1)} seconds since the last message received from the client. When @code{keepalive-count} is set to 0, connections will be automatically closed after @code{keepalive-interval} seconds of inactivity without sending any keepalive messages." msgstr "En otras palabras, la conexión se cierra automáticamente tras @code{keepalive_interval * (keepalive_count + 1)} segundos tras la última recepción de un mensaje desde el cliente. Cuando @code{keepalive_count} tiene valor 0, las conexiones se cerrarán automáticamente tras @code{keepalive-interval} segundos de inactividad sin mandar ningún mensaje ``keepalive''." #. type: deftypevr -#: guix-git/doc/guix.texi:30436 +#: guix-git/doc/guix.texi:30801 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-keepalive-interval" msgstr "{parámetro de @code{libvirt-configuration}} integer admin-keepalive-interval" #. type: deftypevr -#: guix-git/doc/guix.texi:30438 guix-git/doc/guix.texi:30445 +#: guix-git/doc/guix.texi:30803 guix-git/doc/guix.texi:30810 msgid "Same as above but for admin interface." msgstr "Igual que la opción anterior pero para la interfaz de administración." #. type: deftypevr -#: guix-git/doc/guix.texi:30443 +#: guix-git/doc/guix.texi:30808 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-keepalive-count" msgstr "{parámetro de @code{libvirt-configuration}} integer admin-keepalive-count" #. type: deftypevr -#: guix-git/doc/guix.texi:30450 +#: guix-git/doc/guix.texi:30815 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer ovs-timeout" msgstr "{parámetro de @code{libvirt-configuration}} integer ovs-timeout" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:30452 +#: guix-git/doc/guix.texi:30817 msgid "Timeout for Open vSwitch calls." msgstr "Plazo máximo para las llamadas a Open vSwitch." # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:30456 +#: guix-git/doc/guix.texi:30821 msgid "The @code{ovs-vsctl} utility is used for the configuration and its timeout option is set by default to 5 seconds to avoid potential infinite waits blocking libvirt." msgstr "La utilidad @code{ovs-vsctl} se usa para la configuración y su opción de plazo máximo (timeout) tiene un valor de 5 segundos de manera predeterminada para evitar que esperas potencialmente infinitas bloqueen libvirt." #. type: subsubheading -#: guix-git/doc/guix.texi:30463 +#: guix-git/doc/guix.texi:30828 #, no-wrap msgid "Virtlog daemon" msgstr "Daemon Virtlog" #. type: Plain text -#: guix-git/doc/guix.texi:30466 +#: guix-git/doc/guix.texi:30831 msgid "The virtlogd service is a server side daemon component of libvirt that is used to manage logs from virtual machine consoles." msgstr "El servicio virtlogd es un daemon del que se compone el lado servidor de libvirt cuya finalidad es la gestión del registro de las consolas de las máquinas virtuales." #. type: Plain text -#: guix-git/doc/guix.texi:30472 +#: guix-git/doc/guix.texi:30837 #, fuzzy msgid "This daemon is not used directly by libvirt client applications, rather it is called on their behalf by @code{libvirtd}. By maintaining the logs in a standalone daemon, the main @code{libvirtd} daemon can be restarted without risk of losing logs. The @code{virtlogd} daemon has the ability to re-exec() itself upon receiving @code{SIGUSR1}, to allow live upgrades without downtime." msgstr "Este daemon no se usa directamente en aplicaciones cliente de libvirt, sino que @code{libvirtd} lo invoca en su nombre. Al mantener los registros en un daemon independiente, el daemon @code{libvirtd} puede reiniciarse sin correr el riesgo de perder registros. El daemon @code{virtlogd} tiene la capacidad de ejecutar exec() sobre sí mismo al recibir @code{SIGUSR1}, para permitir actualizaciones en vivo sin tiempo de parada." #. type: deffn -#: guix-git/doc/guix.texi:30473 +#: guix-git/doc/guix.texi:30838 #, no-wrap msgid "{Scheme Variable} virtlog-service-type" msgstr "{Variable Scheme} virtlog-service-type" #. type: deffn -#: guix-git/doc/guix.texi:30476 +#: guix-git/doc/guix.texi:30841 msgid "This is the type of the virtlog daemon. Its value must be a @code{virtlog-configuration}." msgstr "Este es el tipo del daemon virtlog. Su valor debe ser un objeto @code{virtlog-configuration}." #. type: lisp -#: guix-git/doc/guix.texi:30481 +#: guix-git/doc/guix.texi:30846 #, no-wrap msgid "" "(service virtlog-service-type\n" @@ -59543,30 +60330,30 @@ msgstr "" " (max-clients 1000)))\n" #. type: deftypevr -#: guix-git/doc/guix.texi:30484 +#: guix-git/doc/guix.texi:30849 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer log-level" msgstr "{parámetro de @code{virtlog-configuration}} integer log-level" #. type: deftypevr -#: guix-git/doc/guix.texi:30491 +#: guix-git/doc/guix.texi:30856 #, no-wrap msgid "{@code{virtlog-configuration} parameter} string log-filters" msgstr "{parámetro de @code{virtlog-configuration}} string log-filters" # TODO: Enviar parche. #. type: deftypevr -#: guix-git/doc/guix.texi:30496 +#: guix-git/doc/guix.texi:30861 msgid "A filter allows to select a different logging level for a given category of logs The format for a filter is one of:" msgstr "Un filtro permite la selección de un nivel de registro diferente para una categoría dada de registros. El formato del filtro es uno de los siguientes:" #. type: deftypevr -#: guix-git/doc/guix.texi:30513 +#: guix-git/doc/guix.texi:30878 msgid "where @code{name} is a string which is matched against the category given in the @code{VIR_LOG_INIT()} at the top of each libvirt source file, e.g., \"remote\", \"qemu\", or \"util.json\" (the name in the filter can be a substring of the full category name, in order to match multiple similar categories), the optional \"+\" prefix tells libvirt to log stack trace for each message matching name, and @code{x} is the minimal level where matching messages should be logged:" msgstr "donde @code{nombre} es una cadena contra la que se compara la categoría proporcionada en la llamada @code{VIR_LOG_INIT()} al principio de cada archivo de fuentes de libvirt, por ejemplo \"remote\", \"qemu\" o \"util.json\" (el nombre en el filtro puede ser una subcadena del nombre completo de la categoría, para aceptar múltiples categorías con nombres similares), el prefijo opcional \"+\" indica a libvirt que registre la pila de llamadas en cada mensaje con el nombre correspondiente, y @code{x} es el nivel mínimo de los mensajes que deben registrarse:" #. type: deftypevr -#: guix-git/doc/guix.texi:30536 +#: guix-git/doc/guix.texi:30901 #, no-wrap msgid "{@code{virtlog-configuration} parameter} string log-outputs" msgstr "{parámetro de @code{virtlog-configuration}} string log-outputs" @@ -59574,95 +60361,95 @@ msgstr "{parámetro de @code{virtlog-configuration}} string log-outputs" # FUZZY # MAAV (TODO): Log #. type: deftypevr -#: guix-git/doc/guix.texi:30541 +#: guix-git/doc/guix.texi:30906 msgid "An output is one of the places to save logging information The format for an output can be:" msgstr "Una salida es uno de esos lugares para almacenar información de logging. El formato para una salida puede ser:" #. type: deftypevr -#: guix-git/doc/guix.texi:30581 +#: guix-git/doc/guix.texi:30946 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-clients" msgstr "{parámetro de @code{virtlog-configuration}} integer max-clients" #. type: deftypevr -#: guix-git/doc/guix.texi:30586 +#: guix-git/doc/guix.texi:30951 msgid "Defaults to @samp{1024}." msgstr "El valor predeterminado es @samp{1024}." #. type: deftypevr -#: guix-git/doc/guix.texi:30589 +#: guix-git/doc/guix.texi:30954 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-size" msgstr "{parámetro de @code{virtlog-configuration}} integer max-size" #. type: deftypevr -#: guix-git/doc/guix.texi:30591 +#: guix-git/doc/guix.texi:30956 msgid "Maximum file size before rolling over." msgstr "Tamaño máximo del archivo antes de pasar al siguiente." #. type: deftypevr -#: guix-git/doc/guix.texi:30593 +#: guix-git/doc/guix.texi:30958 msgid "Defaults to @samp{2MB}" msgstr "El valor predeterminado es @samp{2MB}." #. type: deftypevr -#: guix-git/doc/guix.texi:30596 +#: guix-git/doc/guix.texi:30961 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-backups" msgstr "{parámetro de @code{virtlog-configuration}} integer max-backups" # FUZZY FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:30598 +#: guix-git/doc/guix.texi:30963 msgid "Maximum number of backup files to keep." msgstr "Número máximo de archivos de backup que se deben mantener." #. type: deftypevr -#: guix-git/doc/guix.texi:30600 +#: guix-git/doc/guix.texi:30965 msgid "Defaults to @samp{3}" msgstr "El valor predeterminado es @samp{3}." #. type: anchor{#1} -#: guix-git/doc/guix.texi:30604 +#: guix-git/doc/guix.texi:30969 msgid "transparent-emulation-qemu" msgstr "transparent-emulation-qemu" #. type: subsubheading -#: guix-git/doc/guix.texi:30604 +#: guix-git/doc/guix.texi:30969 #, no-wrap msgid "Transparent Emulation with QEMU" msgstr "Emulación transparente con QEMU" #. type: cindex -#: guix-git/doc/guix.texi:30606 guix-git/doc/guix.texi:30686 +#: guix-git/doc/guix.texi:30971 guix-git/doc/guix.texi:31051 #, no-wrap msgid "emulation" msgstr "emulación" #. type: code{#1} -#: guix-git/doc/guix.texi:30607 +#: guix-git/doc/guix.texi:30972 #, no-wrap msgid "binfmt_misc" msgstr "binfmt_misc" #. type: Plain text -#: guix-git/doc/guix.texi:30615 +#: guix-git/doc/guix.texi:30980 msgid "@code{qemu-binfmt-service-type} provides support for transparent emulation of program binaries built for different architectures---e.g., it allows you to transparently execute an ARMv7 program on an x86_64 machine. It achieves this by combining the @uref{https://www.qemu.org, QEMU} emulator and the @code{binfmt_misc} feature of the kernel Linux. This feature only allows you to emulate GNU/Linux on a different architecture, but see below for GNU/Hurd support." msgstr "@code{qemu-binfmt-service-type} proporciona la capacidad de emular transparentemente programas binarios construidos para arquitecturas diferentes---por ejemplo, le permite ejecutar de manera transparente un programa de ARMv7 en una máquina x86_64. Esto se consigue mediante la combinación del emulador @uref{https://www.qemu.org, QEMU} y la característica @code{binfmt_misc} del núcleo Linux. Esta característica únicamente le permite emular GNU/Linux en una arquitectura diferente, pero más adelante puede ver como implementar también GNU/Hurd." #. type: defvr -#: guix-git/doc/guix.texi:30616 +#: guix-git/doc/guix.texi:30981 #, no-wrap msgid "{Scheme Variable} qemu-binfmt-service-type" msgstr "{Variable Scheme} qemu-binfmt-service-type" #. type: defvr -#: guix-git/doc/guix.texi:30621 +#: guix-git/doc/guix.texi:30986 msgid "This is the type of the QEMU/binfmt service for transparent emulation. Its value must be a @code{qemu-binfmt-configuration} object, which specifies the QEMU package to use as well as the architecture we want to emulated:" msgstr "Este es el tipo del servicio de emulación transparente QEMU/binfmt. Su valor debe ser un objeto @code{qemu-binfmt-configuration}, que especifica el paquete QEMU usado así como las arquitecturas que se desean emular:" #. type: lisp -#: guix-git/doc/guix.texi:30626 +#: guix-git/doc/guix.texi:30991 #, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -59674,39 +60461,39 @@ msgstr "" " (platforms (lookup-qemu-platforms \"arm\" \"aarch64\"))))\n" #. type: defvr -#: guix-git/doc/guix.texi:30632 +#: guix-git/doc/guix.texi:30997 msgid "In this example, we enable transparent emulation for the ARM and aarch64 platforms. Running @code{herd stop qemu-binfmt} turns it off, and running @code{herd start qemu-binfmt} turns it back on (@pxref{Invoking herd, the @command{herd} command,, shepherd, The GNU Shepherd Manual})." msgstr "En este ejemplo se activa la emulación transparente para las plataformas ARM y aarch64. La ejecución de @code{herd stop qemu-binfmt} la desactiva, y la ejecución de @code{herd start qemu-binfmt} la vuelve a activar (@pxref{Invoking herd, the @command{herd} command,, shepherd, The GNU Shepherd Manual})." #. type: deftp -#: guix-git/doc/guix.texi:30634 +#: guix-git/doc/guix.texi:30999 #, no-wrap msgid "{Data Type} qemu-binfmt-configuration" msgstr "{Tipo de datos} qemu-binfmt-configuration" #. type: deftp -#: guix-git/doc/guix.texi:30636 +#: guix-git/doc/guix.texi:31001 msgid "This is the configuration for the @code{qemu-binfmt} service." msgstr "Esta es la configuración para el servicio @code{qemu-binfmt}." #. type: item -#: guix-git/doc/guix.texi:30638 +#: guix-git/doc/guix.texi:31003 #, no-wrap msgid "@code{platforms} (default: @code{'()})" msgstr "@code{platforms} (predeterminadas: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:30641 +#: guix-git/doc/guix.texi:31006 msgid "The list of emulated QEMU platforms. Each item must be a @dfn{platform object} as returned by @code{lookup-qemu-platforms} (see below)." msgstr "Lista de plataformas de QEMU emuladas. Cada elemento debe ser un @dfn{objeto de plataforma} como los devueltos por @code{lookup-qemu-platforms} (véase a continuación)." #. type: table -#: guix-git/doc/guix.texi:30644 +#: guix-git/doc/guix.texi:31009 msgid "For example, let's suppose you're on an x86_64 machine and you have this service:" msgstr "Por ejemplo, supongamos que está en una máquina x86_64 y tiene este servicio:" #. type: lisp -#: guix-git/doc/guix.texi:30649 +#: guix-git/doc/guix.texi:31014 #, fuzzy, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -59718,80 +60505,80 @@ msgstr "" " (platforms (lookup-qemu-platforms \"arm\" \"aarch64\"))))\n" #. type: table -#: guix-git/doc/guix.texi:30652 +#: guix-git/doc/guix.texi:31017 msgid "You can run:" msgstr "Puede ejecutar:" #. type: example -#: guix-git/doc/guix.texi:30655 +#: guix-git/doc/guix.texi:31020 #, no-wrap msgid "guix build -s armhf-linux inkscape\n" msgstr "guix build -s armhf-linux inkscape\n" #. type: table -#: guix-git/doc/guix.texi:30662 +#: guix-git/doc/guix.texi:31027 #, fuzzy msgid "and it will build Inkscape for ARMv7 @emph{as if it were a native build}, transparently using QEMU to emulate the ARMv7 CPU@. Pretty handy if you'd like to test a package build for an architecture you don't have access to!" msgstr "Y construirá Inkscape para ARMv7 @emph{como si fuese una construcción nativa}, de manera transparente mediante el uso de QEMU para emular la CPU ARMv7. ¡Muy útil si quisiera probar la construcción de un paquete en una arquitectura a la que no tenga acceso!" #. type: item -#: guix-git/doc/guix.texi:30663 +#: guix-git/doc/guix.texi:31028 #, no-wrap msgid "@code{qemu} (default: @code{qemu})" msgstr "@code{qemu} (predeterminado: @code{qemu})" #. type: table -#: guix-git/doc/guix.texi:30665 guix-git/doc/guix.texi:30723 -#: guix-git/doc/guix.texi:30805 +#: guix-git/doc/guix.texi:31030 guix-git/doc/guix.texi:31088 +#: guix-git/doc/guix.texi:31170 msgid "The QEMU package to use." msgstr "El paquete QEMU usado." #. type: deffn -#: guix-git/doc/guix.texi:30668 +#: guix-git/doc/guix.texi:31033 #, no-wrap msgid "{Scheme Procedure} lookup-qemu-platforms @var{platforms}@dots{}" msgstr "{Procedimiento Scheme} lookup-qemu-platforms @var{plataformas}@dots{}" #. type: deffn -#: guix-git/doc/guix.texi:30673 +#: guix-git/doc/guix.texi:31038 msgid "Return the list of QEMU platform objects corresponding to @var{platforms}@dots{}. @var{platforms} must be a list of strings corresponding to platform names, such as @code{\"arm\"}, @code{\"sparc\"}, @code{\"mips64el\"}, and so on." msgstr "Devuelve la lista de objetos de plataforma de QEMU que corresponden a @var{plataformas}@dots{}. @var{plataformas} debe ser una lista de cadenas que correspondan con nombres de plataforma, como @code{\"arm\"}, @code{\"sparc\"}, @code{\"mips64el\"}, etcétera." #. type: deffn -#: guix-git/doc/guix.texi:30675 +#: guix-git/doc/guix.texi:31040 #, no-wrap msgid "{Scheme Procedure} qemu-platform? @var{obj}" msgstr "{Procedimiento Scheme} qemu-platform? @var{obj}" #. type: deffn -#: guix-git/doc/guix.texi:30677 +#: guix-git/doc/guix.texi:31042 msgid "Return true if @var{obj} is a platform object." msgstr "Devuelve verdadero si @var{obj} es un objeto de plataforma." #. type: deffn -#: guix-git/doc/guix.texi:30679 +#: guix-git/doc/guix.texi:31044 #, no-wrap msgid "{Scheme Procedure} qemu-platform-name @var{platform}" msgstr "{Procedimiento Scheme} qemu-platform-name @var{plataforma}" #. type: deffn -#: guix-git/doc/guix.texi:30681 +#: guix-git/doc/guix.texi:31046 msgid "Return the name of @var{platform}---a string such as @code{\"arm\"}." msgstr "Devuelve el nombre de @var{plataforma}---una cadena como @code{\"arm\"}." #. type: subsubheading -#: guix-git/doc/guix.texi:30684 +#: guix-git/doc/guix.texi:31049 #, no-wrap msgid "QEMU Guest Agent" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30692 +#: guix-git/doc/guix.texi:31057 msgid "The QEMU guest agent provides control over the emulated system to the host. The @code{qemu-guest-agent} service runs the agent on Guix guests. To control the agent from the host, open a socket by invoking QEMU with the following arguments:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30699 +#: guix-git/doc/guix.texi:31064 #, no-wrap msgid "" "qemu-system-x86_64 \\\n" @@ -59802,12 +60589,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30703 +#: guix-git/doc/guix.texi:31068 msgid "This creates a socket at @file{/tmp/qga.sock} on the host. Once the guest agent is running, you can issue commands with @code{socat}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30708 +#: guix-git/doc/guix.texi:31073 #, no-wrap msgid "" "$ guix shell socat -- socat unix-connect:/tmp/qga.sock stdio\n" @@ -59816,84 +60603,84 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30712 +#: guix-git/doc/guix.texi:31077 msgid "See @url{https://wiki.qemu.org/Features/GuestAgent,QEMU guest agent documentation} for more options and commands." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30713 +#: guix-git/doc/guix.texi:31078 #, fuzzy, no-wrap #| msgid "{Scheme Variable} qemu-binfmt-service-type" msgid "{Scheme Variable} qemu-guest-agent-service-type" msgstr "{Variable Scheme} qemu-binfmt-service-type" #. type: defvr -#: guix-git/doc/guix.texi:30715 +#: guix-git/doc/guix.texi:31080 #, fuzzy #| msgid "Service type for the Varnish daemon." msgid "Service type for the QEMU guest agent service." msgstr "Tipo de servicio para el daemon Varnish." #. type: deftp -#: guix-git/doc/guix.texi:30717 +#: guix-git/doc/guix.texi:31082 #, fuzzy, no-wrap #| msgid "{Data Type} qemu-binfmt-configuration" msgid "{Data Type} qemu-guest-agent-configuration" msgstr "{Tipo de datos} qemu-binfmt-configuration" #. type: deftp -#: guix-git/doc/guix.texi:30719 +#: guix-git/doc/guix.texi:31084 #, fuzzy #| msgid "This is the configuration for the @code{qemu-binfmt} service." msgid "Configuration for the @code{qemu-guest-agent} service." msgstr "Esta es la configuración para el servicio @code{qemu-binfmt}." #. type: item -#: guix-git/doc/guix.texi:30721 guix-git/doc/guix.texi:30803 +#: guix-git/doc/guix.texi:31086 guix-git/doc/guix.texi:31168 #, no-wrap msgid "@code{qemu} (default: @code{qemu-minimal})" msgstr "@code{qemu} (predeterminado: @code{qemu-minimal})" #. type: item -#: guix-git/doc/guix.texi:30724 +#: guix-git/doc/guix.texi:31089 #, fuzzy, no-wrap #| msgid "@code{device} (default: @code{#f})" msgid "@code{device} (default: @code{\"\"})" msgstr "@code{device} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:30727 +#: guix-git/doc/guix.texi:31092 msgid "File name of the device or socket the agent uses to communicate with the host. If empty, QEMU uses a default file name." msgstr "" # FUZZY #. type: subsubheading -#: guix-git/doc/guix.texi:30731 +#: guix-git/doc/guix.texi:31096 #, no-wrap msgid "The Hurd in a Virtual Machine" msgstr "Hurd en una máquina virtual" # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:30734 +#: guix-git/doc/guix.texi:31099 #, no-wrap msgid "the Hurd" msgstr "Hurd" # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:30735 +#: guix-git/doc/guix.texi:31100 #, no-wrap msgid "childhurd" msgstr "childhurd" #. type: Plain text -#: guix-git/doc/guix.texi:30743 +#: guix-git/doc/guix.texi:31108 msgid "Service @code{hurd-vm} provides support for running GNU/Hurd in a virtual machine (VM), a so-called @dfn{childhurd}. This service is meant to be used on GNU/Linux and the given GNU/Hurd operating system configuration is cross-compiled. The virtual machine is a Shepherd service that can be referred to by the names @code{hurd-vm} and @code{childhurd} and be controlled with commands such as:" msgstr "El servicio @code{hurd-vm} implementa la ejecución de GNU/Hurd en una máquina virtual (VM), llamado @dfn{childhurd}. Este servicio está destinado para su uson GNU/Linux y la configuración de sistema operativo de GNU/Hurd se compila de manera cruzada. La máquina virtual es un servicio de Shepherd al que se puede hacer referencia a través de los nombres @code{hurd-vm} y @code{childhurd} y se puede controlar mediante órdenes como las siguientes:" #. type: example -#: guix-git/doc/guix.texi:30747 +#: guix-git/doc/guix.texi:31112 #, no-wrap msgid "" "herd start hurd-vm\n" @@ -59903,12 +60690,12 @@ msgstr "" "herd stop childhurd\n" #. type: Plain text -#: guix-git/doc/guix.texi:30751 +#: guix-git/doc/guix.texi:31116 msgid "When the service is running, you can view its console by connecting to it with a VNC client, for example with:" msgstr "Cuando el servicio se encuentra en ejecución, puede ver su consola a través de una conexión con un cliente VNC, por ejemplo con:" #. type: example -#: guix-git/doc/guix.texi:30754 +#: guix-git/doc/guix.texi:31119 #, fuzzy, no-wrap #| msgid "" #| "guix environment --ad-hoc tigervnc-client -- \\\n" @@ -59920,39 +60707,39 @@ msgstr "" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:30760 +#: guix-git/doc/guix.texi:31125 msgid "The default configuration (see @code{hurd-vm-configuration} below) spawns a secure shell (SSH) server in your GNU/Hurd system, which QEMU (the virtual machine emulator) redirects to port 10222 on the host. Thus, you can connect over SSH to the childhurd with:" msgstr "La configuración predeterminada (véase @code{hurd-vm-configuration} a continuación) lanza un servidor del intérprete de órdenes seguro (SSH) en su sistema GNU/Hurd, el cual QEMU (el emulador de máquina virtual) redirige al puerto 10222 de la máquina anfitriona. Por tanto se puede conectar a Hurd a través de SSH con:" #. type: example -#: guix-git/doc/guix.texi:30763 +#: guix-git/doc/guix.texi:31128 #, no-wrap msgid "ssh root@@localhost -p 10022\n" msgstr "ssh root@@localhost -p 10022\n" #. type: Plain text -#: guix-git/doc/guix.texi:30772 +#: guix-git/doc/guix.texi:31137 msgid "The childhurd is volatile and stateless: it starts with a fresh root file system every time you restart it. By default though, all the files under @file{/etc/childhurd} on the host are copied as is to the root file system of the childhurd when it boots. This allows you to initialize ``secrets'' inside the VM: SSH host keys, authorized substitute keys, and so on---see the explanation of @code{secret-root} below." msgstr "childhurd es volátil y carece de estado: comienza con un sistema de archivos raíz creado de cero cada vez que lo reinicia. No obstante de manera predeterminada todos los archivos en la ruta @file{/etc/childhurd} de la máquina anfitriona se copian al sistema de archivos raíz de childhurd cuando arranca. Esto permite que configure ``secretos'' dentro de la máquina virtual: claves de SSH de la máquina, claves de sustituciones autorizadas, etcétera---véase la explicación de @code{secret-root} a continuación." #. type: defvr -#: guix-git/doc/guix.texi:30773 +#: guix-git/doc/guix.texi:31138 #, no-wrap msgid "{Scheme Variable} hurd-vm-service-type" msgstr "{Variable Scheme} hurd-vm-service-type" #. type: defvr -#: guix-git/doc/guix.texi:30779 +#: guix-git/doc/guix.texi:31144 msgid "This is the type of the Hurd in a Virtual Machine service. Its value must be a @code{hurd-vm-configuration} object, which specifies the operating system (@pxref{operating-system Reference}) and the disk size for the Hurd Virtual Machine, the QEMU package to use as well as the options for running it." msgstr "El tipo del servicio que ejecuta Hurd en una máquina virtual. Su valor debe ser un objeto @code{hurd-vm-configuration}, que especifica el sistema operativo (@pxref{operating-system Reference}) y el tamaño del disco para la máquina virtual de Hurd, el paquete de QEMU usado así como las opciones de ejecución." #. type: defvr -#: guix-git/doc/guix.texi:30781 +#: guix-git/doc/guix.texi:31146 msgid "For example:" msgstr "Por ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:30787 +#: guix-git/doc/guix.texi:31152 #, no-wrap msgid "" "(service hurd-vm-service-type\n" @@ -59966,99 +60753,99 @@ msgstr "" " (memory-size 1024))) ;1024MiB\n" #. type: defvr -#: guix-git/doc/guix.texi:30791 +#: guix-git/doc/guix.texi:31156 msgid "would create a disk image big enough to build GNU@tie{}Hello, with some extra memory." msgstr "crearía una imagen de disco suficientemente grande para construir GNU@tie{}Hello, con algo de memoria adicional." #. type: deftp -#: guix-git/doc/guix.texi:30793 +#: guix-git/doc/guix.texi:31158 #, no-wrap msgid "{Data Type} hurd-vm-configuration" msgstr "{Tipo de datos} hurd-vm-configuration" #. type: deftp -#: guix-git/doc/guix.texi:30796 +#: guix-git/doc/guix.texi:31161 msgid "The data type representing the configuration for @code{hurd-vm-service-type}." msgstr "Tipo de datos que representa la configuración de @code{hurd-vm-service-type}." #. type: item -#: guix-git/doc/guix.texi:30798 +#: guix-git/doc/guix.texi:31163 #, no-wrap msgid "@code{os} (default: @var{%hurd-vm-operating-system})" msgstr "@code{os} (predeterminado: @var{%hurd-vm-operating-system})" #. type: table -#: guix-git/doc/guix.texi:30802 +#: guix-git/doc/guix.texi:31167 msgid "The operating system to instantiate. This default is bare-bones with a permissive OpenSSH secure shell daemon listening on port 2222 (@pxref{Networking Services, @code{openssh-service-type}})." msgstr "El sistema operativo instanciado. El valor predeterminado es un sistema mínimo con un daemon del intérprete de comandos seguro OpenSSH configurado de forma permisiva asociado al puerto 2222 (@pxref{Networking Services, @code{openssh-service-type}})." #. type: item -#: guix-git/doc/guix.texi:30806 +#: guix-git/doc/guix.texi:31171 #, no-wrap msgid "@code{image} (default: @var{hurd-vm-disk-image})" msgstr "@code{image} (predeterminado: @var{hurd-vm-disk-image})" #. type: table -#: guix-git/doc/guix.texi:30809 +#: guix-git/doc/guix.texi:31174 msgid "The procedure used to build the disk-image built from this configuration." msgstr "El procedimiento usado para construir la imagen de disco construida a partir de esta configuración." #. type: item -#: guix-git/doc/guix.texi:30810 +#: guix-git/doc/guix.texi:31175 #, no-wrap msgid "@code{disk-size} (default: @code{'guess})" msgstr "@code{disk-size} (predeterminado: @code{'guess})" #. type: table -#: guix-git/doc/guix.texi:30812 +#: guix-git/doc/guix.texi:31177 msgid "The size of the disk image." msgstr "El tamaño de la imagen de disco." #. type: item -#: guix-git/doc/guix.texi:30813 +#: guix-git/doc/guix.texi:31178 #, no-wrap msgid "@code{memory-size} (default: @code{512})" msgstr "@code{memory-size} (predeterminado: @code{512})" #. type: table -#: guix-git/doc/guix.texi:30815 +#: guix-git/doc/guix.texi:31180 msgid "The memory size of the Virtual Machine in mebibytes." msgstr "El tamaño de la memoria de la máquina virtual en mebibytes." #. type: item -#: guix-git/doc/guix.texi:30816 +#: guix-git/doc/guix.texi:31181 #, no-wrap msgid "@code{options} (default: @code{'(\"--snapshot\")})" msgstr "@code{options} (predeterminadas: @code{'(\"--snapshot\")})" #. type: table -#: guix-git/doc/guix.texi:30818 +#: guix-git/doc/guix.texi:31183 msgid "The extra options for running QEMU." msgstr "Opciones adicionales para ejecutar QEMU." #. type: table -#: guix-git/doc/guix.texi:30823 +#: guix-git/doc/guix.texi:31188 msgid "If set, a non-zero positive integer used to parameterize Childhurd instances. It is appended to the service's name, e.g. @code{childhurd1}." msgstr "Si se proporciona un valor, debe ser un entero positivo no nulo usado para parametrizar las instancias Childhurd. Se añade al nombre del servicio, por ejemplo @code{childhurd1}." #. type: item -#: guix-git/doc/guix.texi:30824 +#: guix-git/doc/guix.texi:31189 #, no-wrap msgid "@code{net-options} (default: @var{hurd-vm-net-options})" msgstr "@code{net-options} (predeterminado: @var{hurd-vm-net-options})" #. type: table -#: guix-git/doc/guix.texi:30826 +#: guix-git/doc/guix.texi:31191 msgid "The procedure used to produce the list of QEMU networking options." msgstr "El procedimiento usado para producir la lista de opciones de red para QEMU." #. type: table -#: guix-git/doc/guix.texi:30828 +#: guix-git/doc/guix.texi:31193 msgid "By default, it produces" msgstr "De manera predeterminada produce" #. type: lisp -#: guix-git/doc/guix.texi:30836 +#: guix-git/doc/guix.texi:31201 #, fuzzy, no-wrap #| msgid "" #| "'(\"--device\" \"rtl8139,netdev=net0\"\n" @@ -60081,13 +60868,13 @@ msgstr "" " ,hostfwd=tcp:127.0.0.1:@var{vnc-port}-:5900\")\n" #. type: table -#: guix-git/doc/guix.texi:30839 +#: guix-git/doc/guix.texi:31204 msgid "with forwarded ports:" msgstr "con los siguientes puertos redirigidos:" # TODO: Enviar parche #. type: example -#: guix-git/doc/guix.texi:30844 +#: guix-git/doc/guix.texi:31209 #, no-wrap msgid "" "@var{secrets-port}: @code{(+ 11004 (* 1000 @var{ID}))}\n" @@ -60099,28 +60886,28 @@ msgstr "" "@var{vnc-port}: @code{(+ 15900 (* 1000 @var{ID}))}\n" #. type: item -#: guix-git/doc/guix.texi:30846 +#: guix-git/doc/guix.texi:31211 #, no-wrap msgid "@code{secret-root} (default: @file{/etc/childhurd})" msgstr "@code{secret-root} (predeterminado: @file{/etc/childhurd})" #. type: table -#: guix-git/doc/guix.texi:30851 +#: guix-git/doc/guix.texi:31216 msgid "The root directory with out-of-band secrets to be installed into the childhurd once it runs. Childhurds are volatile which means that on every startup, secrets such as the SSH host keys and Guix signing key are recreated." msgstr "El directorio raíz que contiene los secretos fuera-de-banda que serán instalados en childhurd cuando se ejecute. Los childhurd son volátiles lo que significa que cada arranque los secretos como las claves de SSH de la máquina y la clave de firma de Guix se regeneran." #. type: table -#: guix-git/doc/guix.texi:30855 +#: guix-git/doc/guix.texi:31220 msgid "If the @file{/etc/childhurd} directory does not exist, the @code{secret-service} running in the Childhurd will be sent an empty list of secrets." msgstr "Si el directorio @file{/etc/childhurd} no existe, el servicio @code{secret-service} que se ejecuta en childhurd recibirá una lista vacía de secretos." #. type: table -#: guix-git/doc/guix.texi:30858 +#: guix-git/doc/guix.texi:31223 msgid "By default, the service automatically populates @file{/etc/childhurd} with the following non-volatile secrets, unless they already exist:" msgstr "De manera predeterminada el servicio crea @file{/etc/childhurd} con los siguientes secretos no volátiles, a no ser que ya existan:" #. type: example -#: guix-git/doc/guix.texi:30867 +#: guix-git/doc/guix.texi:31232 #, no-wrap msgid "" "/etc/childhurd/etc/guix/acl\n" @@ -60140,34 +60927,34 @@ msgstr "" "/etc/childhurd/etc/ssh/ssh_host_ecdsa_key.pub\n" #. type: table -#: guix-git/doc/guix.texi:30871 +#: guix-git/doc/guix.texi:31236 msgid "These files are automatically sent to the guest Hurd VM when it boots, including permissions." msgstr "Estos archivos se envían automáticamente a la máquina virtual de Hurd cuando arranca, incluyendo sus permisos." #. type: cindex -#: guix-git/doc/guix.texi:30872 +#: guix-git/doc/guix.texi:31237 #, no-wrap msgid "childhurd, offloading" msgstr "childhurd, delegación de trabajo" #. type: cindex -#: guix-git/doc/guix.texi:30873 +#: guix-git/doc/guix.texi:31238 #, no-wrap msgid "Hurd, offloading" msgstr "Hurd, delegación de trabajo" #. type: table -#: guix-git/doc/guix.texi:30877 +#: guix-git/doc/guix.texi:31242 msgid "Having these files in place means that only a couple of things are missing to allow the host to offload @code{i586-gnu} builds to the childhurd:" msgstr "Tener todos estos archivos en un único lugar significa que únicamente faltan un par de detalles para permitir a la máquina anfitriona delegar las construcciones de @code{i586-gnu} en childhurd:" #. type: enumerate -#: guix-git/doc/guix.texi:30882 +#: guix-git/doc/guix.texi:31247 msgid "Authorizing the childhurd's key on the host so that the host accepts build results coming from the childhurd, which can be done like so:" msgstr "Autorizar la clave de childhurd en la máquina anfitriona de modo que esta acepte las construcciones que provengan de childhurd, lo que puede hacerse de este modo:" #. type: example -#: guix-git/doc/guix.texi:30886 +#: guix-git/doc/guix.texi:31251 #, no-wrap msgid "" "guix archive --authorize < \\\n" @@ -60177,22 +60964,22 @@ msgstr "" " /etc/childhurd/etc/guix/signing-key.pub\n" #. type: enumerate -#: guix-git/doc/guix.texi:30891 +#: guix-git/doc/guix.texi:31256 msgid "Adding the childhurd to @file{/etc/guix/machines.scm} (@pxref{Daemon Offload Setup})." msgstr "Añadir childhurd a @file{/etc/guix/machines.scm} (@pxref{Daemon Offload Setup})." #. type: table -#: guix-git/doc/guix.texi:30895 +#: guix-git/doc/guix.texi:31260 msgid "We're working towards making that happen automatically---get in touch with us at @email{guix-devel@@gnu.org} to discuss it!" msgstr "Estamos trabajando para que esto se haga de forma automática---¡póngase en contacto con nosotras a través de @email{guix-devel@@gnu.org} para hablar sobre ello!" #. type: Plain text -#: guix-git/doc/guix.texi:30902 +#: guix-git/doc/guix.texi:31267 msgid "Note that by default the VM image is volatile, i.e., once stopped the contents are lost. If you want a stateful image instead, override the configuration's @code{image} and @code{options} without the @code{--snapshot} flag using something along these lines:" msgstr "Tenga en cuenta que la imagen de la máquina virtual es volátil, es decir, los contenidos se pierden cuando se para. Si desea una imagen que mantenga el estado puede modificar la configuración de @code{image} y @code{options} sin la opción @code{--snapshot} usando algo parecido a esto:" #. type: lisp -#: guix-git/doc/guix.texi:30908 +#: guix-git/doc/guix.texi:31273 #, no-wrap msgid "" "(service hurd-vm-service-type\n" @@ -60206,35 +60993,35 @@ msgstr "" " (options '())))\n" #. type: subsubheading -#: guix-git/doc/guix.texi:30910 +#: guix-git/doc/guix.texi:31275 #, no-wrap msgid "Ganeti" msgstr "Ganeti" #. type: cindex -#: guix-git/doc/guix.texi:30912 +#: guix-git/doc/guix.texi:31277 #, no-wrap msgid "ganeti" msgstr "ganeti" #. type: quotation -#: guix-git/doc/guix.texi:30919 +#: guix-git/doc/guix.texi:31284 msgid "This service is considered experimental. Configuration options may be changed in a backwards-incompatible manner, and not all features have been thorougly tested. Users of this service are encouraged to share their experience at @email{guix-devel@@gnu.org}." msgstr "Este servicio se considera experimental. Las opciones de configuración pueden cambiar de manera incompatible con versiones previas, y no todas las características han sido probadas en profundidad. Se recomienda a quienes usen este servicio que compartan su experiencia en @email{guix-devel@@gnu.org}." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:30929 +#: guix-git/doc/guix.texi:31294 msgid "Ganeti is a virtual machine management system. It is designed to keep virtual machines running on a cluster of servers even in the event of hardware failures, and to make maintenance and recovery tasks easy. It consists of multiple services which are described later in this section. In addition to the Ganeti service, you will need the OpenSSH service (@pxref{Networking Services, @code{openssh-service-type}}), and update the @file{/etc/hosts} file (@pxref{operating-system Reference, @code{hosts-file}}) with the cluster name and address (or use a DNS server)." msgstr "Ganeti es un sistema de gestión de máquinas virtuales. Está diseñado para mantener máquinas virtuales ejecutándose en un cluster de servidores incluso en casos de fallos de hardware, y para facilitar las tareas de mantenimiento y recuperación. Consiste en múltiples servicios que se describen a lo largo de esta sección. Además del servicio de Ganeti, necesitará el servicio OpenSSH (@pxref{Networking Services, @code{openssh-service-type}}), y actualizar el archivo @file{/etc/hosts} (@pxref{operating-system Reference, @code{hosts-file}}) con el nombre del cluster y su dirección (o usar un servidor DNS)." #. type: Plain text -#: guix-git/doc/guix.texi:30934 +#: guix-git/doc/guix.texi:31299 msgid "All nodes participating in a Ganeti cluster should have the same Ganeti and @file{/etc/hosts} configuration. Here is an example configuration for a Ganeti cluster node that supports multiple storage backends, and installs the @code{debootstrap} and @code{guix} @dfn{OS providers}:" msgstr "Todos los nodos que participan en el cluster de Ganeti deben tener la misma configuración de Ganeti y en el archivo @file{/etc/hosts}. A continuación se encuentra un ejemplo de configuración para un nodo del cluster de Ganeti que implementa varios motores de almacenamiento, e instala los @dfn{proveedores de sistema operativo} @code{debootstrap} y @code{guix}:" #. type: lisp -#: guix-git/doc/guix.texi:30944 +#: guix-git/doc/guix.texi:31309 #, no-wrap msgid "" "(use-package-modules virtualization)\n" @@ -60258,7 +61045,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:30949 +#: guix-git/doc/guix.texi:31314 #, no-wrap msgid "" "192.168.1.200 ganeti.example.com\n" @@ -60274,7 +61061,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:30970 +#: guix-git/doc/guix.texi:31335 #, fuzzy, no-wrap #| msgid "" #| " ;; Install QEMU so we can use KVM-based instances, and LVM, DRBD and Ceph\n" @@ -60333,7 +61120,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:30975 +#: guix-git/doc/guix.texi:31340 #, fuzzy, no-wrap #| msgid "" #| " ;; Ganeti uses SSH to communicate between nodes.\n" @@ -60355,7 +61142,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:30985 +#: guix-git/doc/guix.texi:31350 #, no-wrap msgid "" " (service ganeti-service-type\n" @@ -60383,122 +61170,122 @@ msgstr "" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:30993 +#: guix-git/doc/guix.texi:31358 msgid "Users are advised to read the @url{http://docs.ganeti.org/ganeti/master/html/admin.html,Ganeti administrators guide} to learn about the various cluster options and day-to-day operations. There is also a @url{https://guix.gnu.org/blog/2020/running-a-ganeti-cluster-on-guix/,blog post} describing how to configure and initialize a small cluster." msgstr "Se recomienda la lectura de la @url{http://docs.ganeti.org/ganeti/master/html/admin.html,guía de administración de Ganeti} a quienes usen este software para aprender distintas opciones del cluster y operaciones diarias. También existe este @url{https://guix.gnu.org/blog/2020/running-a-ganeti-cluster-on-guix/,articulo del blog} que describe cómo configurar e inicializar un pequeño cluster." #. type: defvr -#: guix-git/doc/guix.texi:30994 +#: guix-git/doc/guix.texi:31359 #, no-wrap msgid "{Scheme Variable} ganeti-service-type" msgstr "{Variable Scheme} ganeti-service-type" #. type: defvr -#: guix-git/doc/guix.texi:30997 +#: guix-git/doc/guix.texi:31362 msgid "This is a service type that includes all the various services that Ganeti nodes should run." msgstr "Tipo de servicio que incluye todos los distintos servicios que los nodos Ganeti deben ejecutar." # FUZZY FUZZY # (MAAV) CLI -> command line interface (?) #. type: defvr -#: guix-git/doc/guix.texi:31002 +#: guix-git/doc/guix.texi:31367 msgid "Its value is a @code{ganeti-configuration} object that defines the package to use for CLI operations, as well as configuration for the various daemons. Allowed file storage paths and available guest operating systems are also configured through this data type." msgstr "Su valor es un objeto @code{ganeti-configuration} que define usado para las operaciones de línea de órdenes, así como la configuración para varios daemon. Las rutas de almacenamiento permitidas y los sistemas operativos disponibles para hospedar también se configuran a través de este tipo de datos." #. type: deftp -#: guix-git/doc/guix.texi:31004 +#: guix-git/doc/guix.texi:31369 #, no-wrap msgid "{Data Type} ganeti-configuration" msgstr "{Tipo de datos} ganeti-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31006 +#: guix-git/doc/guix.texi:31371 msgid "The @code{ganeti} service takes the following configuration options:" msgstr "El servicio @code{ganeti} proporciona las siguientes opciones de configuración:" #. type: item -#: guix-git/doc/guix.texi:31008 guix-git/doc/guix.texi:31236 -#: guix-git/doc/guix.texi:31286 guix-git/doc/guix.texi:31316 -#: guix-git/doc/guix.texi:31343 guix-git/doc/guix.texi:31375 -#: guix-git/doc/guix.texi:31428 guix-git/doc/guix.texi:31448 -#: guix-git/doc/guix.texi:31474 guix-git/doc/guix.texi:31507 -#: guix-git/doc/guix.texi:31547 +#: guix-git/doc/guix.texi:31373 guix-git/doc/guix.texi:31601 +#: guix-git/doc/guix.texi:31651 guix-git/doc/guix.texi:31681 +#: guix-git/doc/guix.texi:31708 guix-git/doc/guix.texi:31740 +#: guix-git/doc/guix.texi:31793 guix-git/doc/guix.texi:31813 +#: guix-git/doc/guix.texi:31839 guix-git/doc/guix.texi:31872 +#: guix-git/doc/guix.texi:31912 #, no-wrap msgid "@code{ganeti} (default: @code{ganeti})" msgstr "@code{ganeti} (predeterminado: @code{ganeti})" #. type: table -#: guix-git/doc/guix.texi:31013 +#: guix-git/doc/guix.texi:31378 msgid "The @code{ganeti} package to use. It will be installed to the system profile and make @command{gnt-cluster}, @command{gnt-instance}, etc available. Note that the value specified here does not affect the other services as each refer to a specific @code{ganeti} package (see below)." msgstr "El paquete @code{ganeti} usado. Dicho paquete se instala en el perfil del sistema y hace que las órdenes @command{gnt-cluster}, @command{gnt-instance}, etcétera, estén disponibles. Tenga en cuenta que el valor especificado aquí no afecta a otros servicios ya que cada uno hace referencia a su paquete @code{ganeti} específico (véase a continuación)." #. type: item -#: guix-git/doc/guix.texi:31014 +#: guix-git/doc/guix.texi:31379 #, no-wrap msgid "@code{noded-configuration} (default: @code{(ganeti-noded-configuration)})" msgstr "@code{noded-configuration} (predeterminado: @code{(ganeti-noded-configuration)})" #. type: itemx -#: guix-git/doc/guix.texi:31015 +#: guix-git/doc/guix.texi:31380 #, no-wrap msgid "@code{confd-configuration} (default: @code{(ganeti-confd-configuration)})" msgstr "@code{confd-configuration} (predeterminado: @code{(ganeti-confd-configuration)})" #. type: itemx -#: guix-git/doc/guix.texi:31016 +#: guix-git/doc/guix.texi:31381 #, no-wrap msgid "@code{wconfd-configuration} (default: @code{(ganeti-wconfd-configuration)})" msgstr "@code{wconfd-configuration} (predeterminado: @code{(ganeti-wconfd-configuration)})" #. type: itemx -#: guix-git/doc/guix.texi:31017 +#: guix-git/doc/guix.texi:31382 #, no-wrap msgid "@code{luxid-configuration} (default: @code{(ganeti-luxid-configuration)})" msgstr "@code{luxid-configuration} (predeterminado: @code{(ganeti-luxid-configuration)})" #. type: itemx -#: guix-git/doc/guix.texi:31018 +#: guix-git/doc/guix.texi:31383 #, no-wrap msgid "@code{rapi-configuration} (default: @code{(ganeti-rapi-configuration)})" msgstr "@code{rapi-configuration} (predeterminado: @code{(ganeti-rapi-configuration)})" #. type: itemx -#: guix-git/doc/guix.texi:31019 +#: guix-git/doc/guix.texi:31384 #, no-wrap msgid "@code{kvmd-configuration} (default: @code{(ganeti-kvmd-configuration)})" msgstr "@code{kvmd-configuration} (predeterminado: @code{(ganeti-kvmd-configuration)})" #. type: itemx -#: guix-git/doc/guix.texi:31020 +#: guix-git/doc/guix.texi:31385 #, no-wrap msgid "@code{mond-configuration} (default: @code{(ganeti-mond-configuration)})" msgstr "@code{mond-configuration} (predeterminado: @code{(ganeti-mond-configuration)})" #. type: itemx -#: guix-git/doc/guix.texi:31021 +#: guix-git/doc/guix.texi:31386 #, no-wrap msgid "@code{metad-configuration} (default: @code{(ganeti-metad-configuration)})" msgstr "@code{metad-configuration} (predeterminado: @code{(ganeti-metad-configuration)})" #. type: itemx -#: guix-git/doc/guix.texi:31022 +#: guix-git/doc/guix.texi:31387 #, no-wrap msgid "@code{watcher-configuration} (default: @code{(ganeti-watcher-configuration)})" msgstr "@code{watcher-configuration} (predeterminado: @code{(ganeti-watcher-configuration)})" #. type: itemx -#: guix-git/doc/guix.texi:31023 +#: guix-git/doc/guix.texi:31388 #, no-wrap msgid "@code{cleaner-configuration} (default: @code{(ganeti-cleaner-configuration)})" msgstr "@code{cleaner-configuration} (predeterminado: @code{(ganeti-cleaner-configuration)})" #. type: table -#: guix-git/doc/guix.texi:31028 +#: guix-git/doc/guix.texi:31393 msgid "These options control the various daemons and cron jobs that are distributed with Ganeti. The possible values for these are described in detail below. To override a setting, you must use the configuration type for that service:" msgstr "Estas opciones controlan los distintos daemon y trabajos de cron que se distribuyen con Ganeti. Los posibles valores se describen en detalle a continuación. Para modificar el valor de un elemento de la configuración se debe usar el tipo de configuración para dicho servicio:" #. type: lisp -#: guix-git/doc/guix.texi:31038 +#: guix-git/doc/guix.texi:31403 #, no-wrap msgid "" "(service ganeti-service-type\n" @@ -60520,35 +61307,35 @@ msgstr "" " (rapi-ip \"10.0.0.1\"))))\n" #. type: item -#: guix-git/doc/guix.texi:31040 +#: guix-git/doc/guix.texi:31405 #, no-wrap msgid "@code{file-storage-paths} (default: @code{'()})" msgstr "@code{file-storage-paths} (predeterminada: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:31042 +#: guix-git/doc/guix.texi:31407 msgid "List of allowed directories for file storage backend." msgstr "Lista de directorios permitidos para el motor de almacenamiento de archivos." #. type: item -#: guix-git/doc/guix.texi:31043 +#: guix-git/doc/guix.texi:31408 #, no-wrap msgid "@code{os} (default: @code{%default-ganeti-os})" msgstr "@code{os} (predeterminado: @code{%default-ganeti-os})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:31045 +#: guix-git/doc/guix.texi:31410 msgid "List of @code{} records." msgstr "Lista de registros @code{}." #. type: deftp -#: guix-git/doc/guix.texi:31049 +#: guix-git/doc/guix.texi:31414 msgid "In essence @code{ganeti-service-type} is shorthand for declaring each service individually:" msgstr "En esencia @code{ganeti-service-type} es una abreviación para declara cada uno de los servicios individualmente:" #. type: lisp -#: guix-git/doc/guix.texi:31060 +#: guix-git/doc/guix.texi:31425 #, no-wrap msgid "" "(service ganeti-noded-service-type)\n" @@ -60572,303 +61359,303 @@ msgstr "" "(service ganeti-cleaner-service-type)\n" #. type: deftp -#: guix-git/doc/guix.texi:31064 +#: guix-git/doc/guix.texi:31429 msgid "Plus a service extension for @code{etc-service-type} that configures the file storage backend and OS variants." msgstr "Además de una extensión del servicio @code{etc-service-type} que configura el motor de almacenamiento de archivos y las variantes de sistema operativo." #. type: deftp -#: guix-git/doc/guix.texi:31067 +#: guix-git/doc/guix.texi:31432 #, no-wrap msgid "{Data Type} ganeti-os" msgstr "{Tipo de datos} ganeti-os" #. type: deftp -#: guix-git/doc/guix.texi:31070 +#: guix-git/doc/guix.texi:31435 msgid "This data type is suitable for passing to the @code{os} parameter of @code{ganeti-configuration}. It takes the following parameters:" msgstr "Tipo de datos adecuado para proporcionarse como parámetro @code{os} de @code{ganeti-configuration}. Tiene los siguientes parámetros:" # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:31076 +#: guix-git/doc/guix.texi:31441 msgid "The name for this OS provider. It is only used to specify where the configuration ends up. Setting it to ``debootstrap'' will create @file{/etc/ganeti/instance-debootstrap}." msgstr "Nombre para este proveedor de sistema operativo. Solo se usa para especificar dónde termina la configuración. Proporcionar el valor ``debootstrap'' indica la creación de @file{/etc/ganeti/instance-debootstrap}." #. type: code{#1} -#: guix-git/doc/guix.texi:31077 +#: guix-git/doc/guix.texi:31442 #, no-wrap msgid "extension" msgstr "extension" #. type: table -#: guix-git/doc/guix.texi:31080 +#: guix-git/doc/guix.texi:31445 msgid "The file extension for variants of this OS type. For example @file{.conf} or @file{.scm}." msgstr "La extensión de archivo para las variaciones de este tipo de sistema operativo. Por ejemplo @file{.conf} o @file{.scm}." #. type: item -#: guix-git/doc/guix.texi:31081 +#: guix-git/doc/guix.texi:31446 #, no-wrap msgid "@code{variants} (default: @code{'()})" msgstr "@code{variants} (predeterminadas: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:31083 +#: guix-git/doc/guix.texi:31448 msgid "List of @code{ganeti-os-variant} objects for this OS." msgstr "Lista de objetos @code{ganeti-os-variant} para este SO." #. type: deftp -#: guix-git/doc/guix.texi:31087 +#: guix-git/doc/guix.texi:31452 #, no-wrap msgid "{Data Type} ganeti-os-variant" msgstr "{Tipo de datos} ganeti-os-variant" #. type: deftp -#: guix-git/doc/guix.texi:31090 +#: guix-git/doc/guix.texi:31455 msgid "This is the data type for a Ganeti OS variant. It takes the following parameters:" msgstr "Tipo de datos que representa una variante de SO Ganeti. Este tipo tiene los siguientes parámetros:" #. type: table -#: guix-git/doc/guix.texi:31094 +#: guix-git/doc/guix.texi:31459 msgid "The name of this variant." msgstr "El nombre de esta variación." #. type: code{#1} -#: guix-git/doc/guix.texi:31095 +#: guix-git/doc/guix.texi:31460 #, no-wrap msgid "configuration" msgstr "configuration" #. type: table -#: guix-git/doc/guix.texi:31097 +#: guix-git/doc/guix.texi:31462 msgid "A configuration file for this variant." msgstr "Un archivo de configuración para esta variación." #. type: defvr -#: guix-git/doc/guix.texi:31100 +#: guix-git/doc/guix.texi:31465 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-hooks" msgstr "{Variable Scheme} %default-debootstrap-hooks" # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:31102 +#: guix-git/doc/guix.texi:31467 msgid "This variable contains hooks to configure networking and the GRUB bootloader." msgstr "Esta variable contiene extensiones (``hook'') para la configuración de la red y el cargador de arranque GRUB." #. type: defvr -#: guix-git/doc/guix.texi:31104 +#: guix-git/doc/guix.texi:31469 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-extra-pkgs" msgstr "{Variable Scheme} %default-debootstrap-extra-pkgs" # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:31106 +#: guix-git/doc/guix.texi:31471 msgid "This variable contains a list of packages suitable for a fully-virtualized guest." msgstr "Esta variable contiene una lista de paquetes adecuada para una máquina completamente virtualizada." #. type: deftp -#: guix-git/doc/guix.texi:31108 +#: guix-git/doc/guix.texi:31473 #, no-wrap msgid "{Data Type} debootstrap-configuration" msgstr "{Tipo de datos} debootstrap-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31111 +#: guix-git/doc/guix.texi:31476 msgid "This data type creates configuration files suitable for the debootstrap OS provider." msgstr "Este tipo de datos crea archivos de configuración adecuados para la orden de generación de sistemas operativos debootstrap." #. type: item -#: guix-git/doc/guix.texi:31113 +#: guix-git/doc/guix.texi:31478 #, no-wrap msgid "@code{hooks} (default: @code{%default-debootstrap-hooks})" msgstr "@code{hooks} (predeterminada: @code{%default-debootstrap-hooks})" #. type: table -#: guix-git/doc/guix.texi:31117 +#: guix-git/doc/guix.texi:31482 msgid "When not @code{#f}, this must be a G-expression that specifies a directory with scripts that will run when the OS is installed. It can also be a list of @code{(name . file-like)} pairs. For example:" msgstr "Cuando no es @code{#f} debe ser una expresión-G que especifique el directorio con los guiones que deberán ejecutarse cuando se instale el sistema operativo. También puede ser una lista de pares @code{(nombre . obj-tipo-archivo)}. Por ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:31120 +#: guix-git/doc/guix.texi:31485 #, no-wrap msgid "`((99-hello-world . ,(plain-file \"#!/bin/sh\\necho Hello, World\")))\n" msgstr "`((99-hola-mundo . ,(plain-file \"#!/bin/sh\\necho '¡Hola mundo!'\")))\n" # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:31125 +#: guix-git/doc/guix.texi:31490 msgid "That will create a directory with one executable named @code{99-hello-world} and run it every time this variant is installed. If set to @code{#f}, hooks in @file{/etc/ganeti/instance-debootstrap/hooks} will be used, if any." msgstr "Esto crea un directorio con un ejecutable que se llama @code{99-hola-mundo} y se ejecuta cada vez que se instale esta variación. Si se proporciona @code{#f}, se usarán los archivos del directorio @file{/etc/ganeti/instance-debootstrap/hooks}, si existe alguno." #. type: item -#: guix-git/doc/guix.texi:31125 +#: guix-git/doc/guix.texi:31490 #, no-wrap msgid "@code{proxy} (default: @code{#f})" msgstr "@code{proxy} (predeterminado: @code{#f})" # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:31127 +#: guix-git/doc/guix.texi:31492 msgid "Optional HTTP proxy to use." msgstr "Valor opcional de la pasarela HTTP usada." #. type: item -#: guix-git/doc/guix.texi:31127 +#: guix-git/doc/guix.texi:31492 guix-git/doc/guix.texi:33685 #, no-wrap msgid "@code{mirror} (default: @code{#f})" msgstr "@code{mirror} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31130 +#: guix-git/doc/guix.texi:31495 msgid "The Debian mirror. Typically something like @code{http://ftp.no.debian.org/debian}. The default varies depending on the distribution." msgstr "El servidor espejo de Debian. Habitualmente es algo como @code{http://ftp.no.debian.org/debian}. El valor predeterminado cambia dependiendo de la distribución." #. type: item -#: guix-git/doc/guix.texi:31130 +#: guix-git/doc/guix.texi:31495 #, no-wrap msgid "@code{arch} (default: @code{#f})" msgstr "@code{arch} (predeterminada: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:31133 +#: guix-git/doc/guix.texi:31498 msgid "The dpkg architecture. Set to @code{armhf} to debootstrap an ARMv7 instance on an AArch64 host. Default is to use the current system architecture." msgstr "La arquitectura de dpkg. Proporcione @code{armhf} para generar con debootstrap una instancia de ARMv7 en una máquina AArch64. El valor predeterminado corresponde a la arquitectura del sistema en uso." #. type: item -#: guix-git/doc/guix.texi:31133 +#: guix-git/doc/guix.texi:31498 #, no-wrap msgid "@code{suite} (default: @code{\"stable\"})" msgstr "@code{suite} (predeterminada: @code{\"stable\"})" #. type: table -#: guix-git/doc/guix.texi:31136 +#: guix-git/doc/guix.texi:31501 msgid "When set, this must be a Debian distribution ``suite'' such as @code{buster} or @code{focal}. If set to @code{#f}, the default for the OS provider is used." msgstr "Si se proporciona debe ser el identificador de una entrega o ``suite'' de distribución de Debian, como por ejemplo @code{buster} o @code{focal}. Si se proporciona @code{#f}, se usael valor predeterminado del proveedor de sistema operativo." #. type: item -#: guix-git/doc/guix.texi:31136 +#: guix-git/doc/guix.texi:31501 #, no-wrap msgid "@code{extra-pkgs} (default: @code{%default-debootstrap-extra-pkgs})" msgstr "@code{extra-pkgs} (predeterminados: @code{%default-debootstrap-extra-pkgs})" #. type: table -#: guix-git/doc/guix.texi:31139 +#: guix-git/doc/guix.texi:31504 msgid "List of extra packages that will get installed by dpkg in addition to the minimal system." msgstr "Lista de paquetes adicionales que dpkg instala junto al sistema mínimo." #. type: item -#: guix-git/doc/guix.texi:31139 +#: guix-git/doc/guix.texi:31504 #, no-wrap msgid "@code{components} (default: @code{#f})" msgstr "@code{components} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31142 +#: guix-git/doc/guix.texi:31507 msgid "When set, must be a list of Debian repository ``components''. For example @code{'(\"main\" \"contrib\")}." msgstr "Si se proporciona un valor debe ser una lista de ``componentes'' de repositorio de Debian. Por ejemplo @code{'(\"main\" \"contrib\")}." #. type: item -#: guix-git/doc/guix.texi:31142 +#: guix-git/doc/guix.texi:31507 #, no-wrap msgid "@code{generate-cache?} (default: @code{#t})" msgstr "@code{generate-cache?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:31144 +#: guix-git/doc/guix.texi:31509 msgid "Whether to automatically cache the generated debootstrap archive." msgstr "Determina si se almacena en caché de manera automática el archivo de debootstrap que se haya generado." #. type: item -#: guix-git/doc/guix.texi:31144 +#: guix-git/doc/guix.texi:31509 #, no-wrap msgid "@code{clean-cache} (default: @code{14})" msgstr "@code{clean-cache} (predeterminado: @code{14})" #. type: table -#: guix-git/doc/guix.texi:31147 +#: guix-git/doc/guix.texi:31512 msgid "Discard the cache after this amount of days. Use @code{#f} to never clear the cache." msgstr "Descarta el contenido de la caché tras este número de días. Use @code{#f} para no descartar contenido de la caché nunca." #. type: item -#: guix-git/doc/guix.texi:31147 +#: guix-git/doc/guix.texi:31512 #, no-wrap msgid "@code{partition-style} (default: @code{'msdos})" msgstr "@code{partition-style} (predeterminado: @code{'msdos})" #. type: table -#: guix-git/doc/guix.texi:31150 +#: guix-git/doc/guix.texi:31515 msgid "The type of partition to create. When set, it must be one of @code{'msdos}, @code{'none} or a string." msgstr "Tipo de partición creado. Cuando se proporciona un valor debe ser @code{'msdos}, @code{'none} o una cadena." #. type: item -#: guix-git/doc/guix.texi:31150 +#: guix-git/doc/guix.texi:31515 #, no-wrap msgid "@code{partition-alignment} (default: @code{2048})" msgstr "@code{partition-alignment} (predeterminada: @code{2048})" #. type: table -#: guix-git/doc/guix.texi:31152 +#: guix-git/doc/guix.texi:31517 msgid "Alignment of the partition in sectors." msgstr "Alineación de la partición en sectores." #. type: deffn -#: guix-git/doc/guix.texi:31155 +#: guix-git/doc/guix.texi:31520 #, no-wrap msgid "{Scheme Procedure} debootstrap-variant @var{name} @var{configuration}" msgstr "{Procedimiento Scheme} debootstrap-variant @var{nombre} @var{configuración}" #. type: deffn -#: guix-git/doc/guix.texi:31158 +#: guix-git/doc/guix.texi:31523 msgid "This is a helper procedure that creates a @code{ganeti-os-variant} record. It takes two parameters: a name and a @code{debootstrap-configuration} object." msgstr "Procedimiento auxiliar que crea un registro @code{ganeti-os-variant}. Toma dos parámetros: un nombre y un objeto @code{debootstrap-configuration}." #. type: deffn -#: guix-git/doc/guix.texi:31160 +#: guix-git/doc/guix.texi:31525 #, no-wrap msgid "{Scheme Procedure} debootstrap-os @var{variants}@dots{}" msgstr "{Procedimiento Scheme} debootstrap-os @var{variantes}@dots{}" #. type: deffn -#: guix-git/doc/guix.texi:31163 +#: guix-git/doc/guix.texi:31528 msgid "This is a helper procedure that creates a @code{ganeti-os} record. It takes a list of variants created with @code{debootstrap-variant}." msgstr "Procedimiento auxiliar que crea un registro @code{ganeti-os}. Toma como parámetro una lista de variaciones creada con @code{debootstrap-variant}." #. type: deffn -#: guix-git/doc/guix.texi:31165 +#: guix-git/doc/guix.texi:31530 #, no-wrap msgid "{Scheme Procedure} guix-variant @var{name} @var{configuration}" msgstr "{Procedimiento Scheme} guix-variant @var{nombre} @var{configuración}" #. type: deffn -#: guix-git/doc/guix.texi:31170 +#: guix-git/doc/guix.texi:31535 msgid "This is a helper procedure that creates a @code{ganeti-os-variant} record for use with the Guix OS provider. It takes a name and a G-expression that returns a ``file-like'' (@pxref{G-Expressions, file-like objects}) object containing a Guix System configuration." msgstr "Procedimiento auxiliar que crea un registro @code{ganeti-os-variant} para ser usado por el proveedor de sistema operativo Guix. Toma como parámetros un nombre y una expresión-G que devuelve un objeto ``tipo-archivo'' (@pxref{G-Expressions, objetos ``tipo-archivo''}) que contiene configuración para el sistema Guix." #. type: deffn -#: guix-git/doc/guix.texi:31172 +#: guix-git/doc/guix.texi:31537 #, no-wrap msgid "{Scheme Procedure} guix-os @var{variants}@dots{}" msgstr "{Procedimiento Scheme} guix-os @var{variantes}@dots{}" #. type: deffn -#: guix-git/doc/guix.texi:31175 +#: guix-git/doc/guix.texi:31540 msgid "This is a helper procedure that creates a @code{ganeti-os} record. It takes a list of variants produced by @code{guix-variant}." msgstr "Procedimiento auxiliar que crea un registro @code{ganeti-os}. Toma como parámetros una lista de variaciones producida por @code{guix-variant}." #. type: defvr -#: guix-git/doc/guix.texi:31177 +#: guix-git/doc/guix.texi:31542 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-variants" msgstr "{Variable Scheme} %default-debootstrap-variants" #. type: defvr -#: guix-git/doc/guix.texi:31181 +#: guix-git/doc/guix.texi:31546 msgid "This is a convenience variable to make the debootstrap provider work ``out of the box'' without users having to declare variants manually. It contains a single debootstrap variant with the default configuration:" msgstr "Variable de conveniencia para que el proveedor debootstrap funcione ``automágicamente'' sin que quienes lo usan tengan que declarar variaciones manualmente. Contiene una única variación de debootstrap con la configuración predeterminada:" #. type: lisp -#: guix-git/doc/guix.texi:31186 +#: guix-git/doc/guix.texi:31551 #, no-wrap msgid "" "(list (debootstrap-variant\n" @@ -60880,18 +61667,18 @@ msgstr "" " (debootstrap-configuration)))\n" #. type: defvr -#: guix-git/doc/guix.texi:31189 +#: guix-git/doc/guix.texi:31554 #, no-wrap msgid "{Scheme Variable} %default-guix-variants" msgstr "{Variable Scheme} %default-guix-variants" #. type: defvr -#: guix-git/doc/guix.texi:31193 +#: guix-git/doc/guix.texi:31558 msgid "This is a convenience variable to make the Guix OS provider work without additional configuration. It creates a virtual machine that has an SSH server, a serial console, and authorizes the Ganeti hosts SSH keys." msgstr "Variable de conveniencia para que el proveedor de sistema operativo Guix funcione sin ninguna configuración adicional. Crea una máquina virtual que tiene un servidor SSH, consola serie y autoriza las claves de SSH de las máquinas de Ganeti." #. type: lisp -#: guix-git/doc/guix.texi:31199 +#: guix-git/doc/guix.texi:31564 #, no-wrap msgid "" "(list (guix-variant\n" @@ -60905,12 +61692,12 @@ msgstr "" " \"/share/doc/ganeti-instance-guix/examples/dynamic.scm\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:31205 +#: guix-git/doc/guix.texi:31570 msgid "Users can implement support for OS providers unbeknownst to Guix by extending the @code{ganeti-os} and @code{ganeti-os-variant} records appropriately. For example:" msgstr "Se pueden implementar proveedores de SO no disponibles en Guix mediante la extensión de los registros @code{ganeti-os} y @code{ganeti-os-variant} de manera apropiada. Por ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:31214 +#: guix-git/doc/guix.texi:31579 #, no-wrap msgid "" "(ganeti-os\n" @@ -60930,739 +61717,739 @@ msgstr "" " (configuration (plain-file \"archivo\" \"Esto va bien\"))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:31219 +#: guix-git/doc/guix.texi:31584 msgid "That creates @file{/etc/ganeti/instance-custom/variants/foo.conf} which points to a file in the store with contents @code{this is fine}. It also creates @file{/etc/ganeti/instance-custom/variants/variants.list} with contents @code{foo}." msgstr "Este ejemplo crearía @file{/etc/ganeti/instance-personalizado/variants/cosa.conf}, el cual apunta a un archivo en el almacén cuyo contenido es @code{esto va bien}. También se crearía @file{/etc/ganeti/instance-personalizado/variants/variants.list} con el contenido @code{cosa}." #. type: Plain text -#: guix-git/doc/guix.texi:31222 +#: guix-git/doc/guix.texi:31587 msgid "Obviously this may not work for all OS providers out there. If you find the interface limiting, please reach out to @email{guix-devel@@gnu.org}." msgstr "Obviamente es posible que esto no funcione con todos los proveedores de sistema operativo existentes. Si está interfaz le está limitando en su implementación, por favor, contacte con @email{guix-devel@@gnu.org}." #. type: Plain text -#: guix-git/doc/guix.texi:31225 +#: guix-git/doc/guix.texi:31590 msgid "The rest of this section documents the various services that are included by @code{ganeti-service-type}." msgstr "El resto de esta sección documenta los distintos servicios incluidos en @code{ganeti-service-type}." #. type: defvr -#: guix-git/doc/guix.texi:31226 +#: guix-git/doc/guix.texi:31591 #, no-wrap msgid "{Scheme Variable} ganeti-noded-service-type" msgstr "{Variable Scheme} ganeti-noded-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31230 +#: guix-git/doc/guix.texi:31595 msgid "@command{ganeti-noded} is the daemon responsible for node-specific functions within the Ganeti system. The value of this service must be a @code{ganeti-noded-configuration} object." msgstr "@command{ganeti-noded} es el daemon responsable de las funciones específicas del nodo dentro del sistema Ganeti. El valor de este servicio debe ser un objeto @code{ganeti-noded-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:31232 +#: guix-git/doc/guix.texi:31597 #, no-wrap msgid "{Data Type} ganeti-noded-configuration" msgstr "{Tipo de datos} ganeti-noded-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31234 +#: guix-git/doc/guix.texi:31599 msgid "This is the configuration for the @code{ganeti-noded} service." msgstr "Esta es la configuración para el servicio @code{ganeti-noded}." #. type: table -#: guix-git/doc/guix.texi:31238 guix-git/doc/guix.texi:31288 -#: guix-git/doc/guix.texi:31318 guix-git/doc/guix.texi:31345 -#: guix-git/doc/guix.texi:31377 guix-git/doc/guix.texi:31430 -#: guix-git/doc/guix.texi:31450 guix-git/doc/guix.texi:31476 -#: guix-git/doc/guix.texi:31509 +#: guix-git/doc/guix.texi:31603 guix-git/doc/guix.texi:31653 +#: guix-git/doc/guix.texi:31683 guix-git/doc/guix.texi:31710 +#: guix-git/doc/guix.texi:31742 guix-git/doc/guix.texi:31795 +#: guix-git/doc/guix.texi:31815 guix-git/doc/guix.texi:31841 +#: guix-git/doc/guix.texi:31874 msgid "The @code{ganeti} package to use for this service." msgstr "El paquete @code{ganeti} usado para este servicio." #. type: item -#: guix-git/doc/guix.texi:31239 +#: guix-git/doc/guix.texi:31604 #, no-wrap msgid "@code{port} (default: @code{1811})" msgstr "@code{port} (predeterminado: @code{1811})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:31241 +#: guix-git/doc/guix.texi:31606 msgid "The TCP port on which the node daemon listens for network requests." msgstr "Puerto TCP en el que escucha el daemon del nodo a la espera de peticiones a través de la red." #. type: item -#: guix-git/doc/guix.texi:31242 guix-git/doc/guix.texi:31292 -#: guix-git/doc/guix.texi:31384 guix-git/doc/guix.texi:31454 +#: guix-git/doc/guix.texi:31607 guix-git/doc/guix.texi:31657 +#: guix-git/doc/guix.texi:31749 guix-git/doc/guix.texi:31819 #, no-wrap msgid "@code{address} (default: @code{\"0.0.0.0\"})" msgstr "@code{address} (predeterminado: @code{\"0.0.0.0\"})" #. type: table -#: guix-git/doc/guix.texi:31245 +#: guix-git/doc/guix.texi:31610 msgid "The network address that the daemon will bind to. The default address means bind to all available addresses." msgstr "La dirección de red a la que el daemon se enlaza. La dirección predeterminada significa que el daemon se enlaza a todas las direcciones disponibles." # FUZZY #. type: table -#: guix-git/doc/guix.texi:31249 +#: guix-git/doc/guix.texi:31614 msgid "When this is set, it must be a specific network interface (e.g.@: @code{eth0}) that the daemon will bind to." msgstr "En caso de proporcionarse un valor, debe especificar el nombre de la interfaz de red (por ejemplo, @code{eth0} a la que el daemon se enlaza." #. type: item -#: guix-git/doc/guix.texi:31250 guix-git/doc/guix.texi:31392 +#: guix-git/doc/guix.texi:31615 guix-git/doc/guix.texi:31757 #, no-wrap msgid "@code{max-clients} (default: @code{20})" msgstr "@code{max-clients} (predeterminado: @code{20})" #. type: table -#: guix-git/doc/guix.texi:31254 +#: guix-git/doc/guix.texi:31619 msgid "This sets a limit on the maximum number of simultaneous client connections that the daemon will handle. Connections above this count are accepted, but no responses will be sent until enough connections have closed." msgstr "Establece un límite en el número máximo de conexiones simultaneas de clientes que el daemon manejará. Las conexiones que excedan dicho número se aceptan, pero no se envía respuesta hasta que hayan cerrado suficientes conexiones." #. type: item -#: guix-git/doc/guix.texi:31255 guix-git/doc/guix.texi:31397 +#: guix-git/doc/guix.texi:31620 guix-git/doc/guix.texi:31762 #, no-wrap msgid "@code{ssl?} (default: @code{#t})" msgstr "@code{ssl?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:31259 +#: guix-git/doc/guix.texi:31624 msgid "Whether to use SSL/TLS to encrypt network communications. The certificate is automatically provisioned by the cluster and can be rotated with @command{gnt-cluster renew-crypto}." msgstr "Determina si se usa SSL/TLS para cifrar las comunicaciones a través de la red. El cluster proporciona automáticamente el certificado y se puede rotar con @command{gnt-cluster renew-crypto}." #. type: item -#: guix-git/doc/guix.texi:31260 guix-git/doc/guix.texi:31400 +#: guix-git/doc/guix.texi:31625 guix-git/doc/guix.texi:31765 #, no-wrap msgid "@code{ssl-key} (default: @file{\"/var/lib/ganeti/server.pem\"})" msgstr "@code{ssl-key} (predeterminado: @file{\"/var/lib/ganeti/server.pem\"})" #. type: table -#: guix-git/doc/guix.texi:31262 guix-git/doc/guix.texi:31402 +#: guix-git/doc/guix.texi:31627 guix-git/doc/guix.texi:31767 msgid "This can be used to provide a specific encryption key for TLS communications." msgstr "Puede usarse para proporcionar una clave de cifrado específica para comunicaciones TLS." #. type: item -#: guix-git/doc/guix.texi:31263 guix-git/doc/guix.texi:31403 +#: guix-git/doc/guix.texi:31628 guix-git/doc/guix.texi:31768 #, no-wrap msgid "@code{ssl-cert} (default: @file{\"/var/lib/ganeti/server.pem\"})" msgstr "@code{ssl-cert} (predeterminado: @file{\"/var/lib/ganeti/server.pem\"})" #. type: table -#: guix-git/doc/guix.texi:31265 guix-git/doc/guix.texi:31405 +#: guix-git/doc/guix.texi:31630 guix-git/doc/guix.texi:31770 msgid "This can be used to provide a specific certificate for TLS communications." msgstr "Puede usarse para proporcionar un certificado específico para comunicaciones TLS." #. type: table -#: guix-git/doc/guix.texi:31269 guix-git/doc/guix.texi:31409 +#: guix-git/doc/guix.texi:31634 guix-git/doc/guix.texi:31774 msgid "When true, the daemon performs additional logging for debugging purposes. Note that this will leak encryption details to the log files, use with caution." msgstr "Cuando es verdadero, el daemon almacena registros adicionales con propósitos de depuración. Tenga en cuenta que esto puede exponer detalles de cifrado en los archivos de registro, por lo que debe usarse con precaución." #. type: defvr -#: guix-git/doc/guix.texi:31273 +#: guix-git/doc/guix.texi:31638 #, no-wrap msgid "{Scheme Variable} ganeti-confd-service-type" msgstr "{Variable Scheme} ganeti-confd-service-type" # TODO: master #. type: defvr -#: guix-git/doc/guix.texi:31279 +#: guix-git/doc/guix.texi:31644 msgid "@command{ganeti-confd} answers queries related to the configuration of a Ganeti cluster. The purpose of this daemon is to have a highly available and fast way to query cluster configuration values. It is automatically active on all @dfn{master candidates}. The value of this service must be a @code{ganeti-confd-configuration} object." msgstr "@command{ganeti-confd} responde a las consultas relacionadas con la configuración del cluster Ganeti. El propósito de este daemon es tener una forma rápida y con alta disponibilidad de consultar los valores de configuración del cluster. Se activa de manera automática en todas las máquinas @dfn{candidatas de ser coordinadoras}. El valor de este servicio debe ser un objeto @code{ganeti-confd-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:31282 +#: guix-git/doc/guix.texi:31647 #, no-wrap msgid "{Data Type} ganeti-confd-configuration" msgstr "{Tipo de datos} ganeti-confd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31284 +#: guix-git/doc/guix.texi:31649 msgid "This is the configuration for the @code{ganeti-confd} service." msgstr "Esta es la configuración para el servicio @code{ganeti-confd}." #. type: item -#: guix-git/doc/guix.texi:31289 +#: guix-git/doc/guix.texi:31654 #, no-wrap msgid "@code{port} (default: @code{1814})" msgstr "@code{port} (predeterminado: @code{1814})" #. type: table -#: guix-git/doc/guix.texi:31291 +#: guix-git/doc/guix.texi:31656 msgid "The UDP port on which to listen for network requests." msgstr "El puerto UDP en el que esperarán peticiones a través de la red." # FUZZY #. type: table -#: guix-git/doc/guix.texi:31294 +#: guix-git/doc/guix.texi:31659 msgid "Network address that the daemon will bind to." msgstr "Dirección de red a la que el daemon se asocia." #. type: table -#: guix-git/doc/guix.texi:31297 guix-git/doc/guix.texi:31326 -#: guix-git/doc/guix.texi:31353 guix-git/doc/guix.texi:31433 -#: guix-git/doc/guix.texi:31460 guix-git/doc/guix.texi:31486 +#: guix-git/doc/guix.texi:31662 guix-git/doc/guix.texi:31691 +#: guix-git/doc/guix.texi:31718 guix-git/doc/guix.texi:31798 +#: guix-git/doc/guix.texi:31825 guix-git/doc/guix.texi:31851 msgid "When true, the daemon performs additional logging for debugging purposes." msgstr "Cuando es verdadero, el daemon almacena registros adicionales con propósitos de depuración." #. type: defvr -#: guix-git/doc/guix.texi:31301 +#: guix-git/doc/guix.texi:31666 #, no-wrap msgid "{Scheme Variable} ganeti-wconfd-service-type" msgstr "{Variable Scheme} ganeti-wconfd-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31307 +#: guix-git/doc/guix.texi:31672 msgid "@command{ganeti-wconfd} is the daemon that has authoritative knowledge about the cluster configuration and is the only entity that can accept changes to it. All jobs that need to modify the configuration will do so by sending appropriate requests to this daemon. It only runs on the @dfn{master node} and will automatically disable itself on other nodes." msgstr "@command{ganeti-wconfd} es el daemon que proporciona una autoridad de conocimiento sobre la configuración del cluster y es la única entidad que puede aceptar cambios sobre ella. Todos las trabajos que necesiten modificar la configuración deben hacerlo enviando las peticiones adecuadas a este daemon. Únicamente se ejecuta en el @dfn{nodo coordinador} y se desactiva automáticamente en otros nodos." #. type: defvr -#: guix-git/doc/guix.texi:31310 +#: guix-git/doc/guix.texi:31675 msgid "The value of this service must be a @code{ganeti-wconfd-configuration} object." msgstr "El valor de este servicio debe ser un objeto @code{ganeti-wconfd-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:31312 +#: guix-git/doc/guix.texi:31677 #, no-wrap msgid "{Data Type} ganeti-wconfd-configuration" msgstr "{Tipo de datos} ganeti-wconfd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31314 +#: guix-git/doc/guix.texi:31679 msgid "This is the configuration for the @code{ganeti-wconfd} service." msgstr "Esta es la configuración para el servicio @code{ganeti-wconfd}." #. type: item -#: guix-git/doc/guix.texi:31319 guix-git/doc/guix.texi:31346 +#: guix-git/doc/guix.texi:31684 guix-git/doc/guix.texi:31711 #, no-wrap msgid "@code{no-voting?} (default: @code{#f})" msgstr "@code{no-voting?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31323 +#: guix-git/doc/guix.texi:31688 msgid "The daemon will refuse to start if the majority of cluster nodes does not agree that it is running on the master node. Set to @code{#t} to start even if a quorum can not be reached (dangerous, use with caution)." msgstr "El daemon se negará a arrancar si la mayoría de los nodos del cluster no coinciden en que se está ejecutando en el nodo coordinador. Proporcione @code{#t} para arrancar incluso cuando no se puede alcanzar dicha mayoría (peligroso, úsese con precaución)." #. type: defvr -#: guix-git/doc/guix.texi:31330 +#: guix-git/doc/guix.texi:31695 #, no-wrap msgid "{Scheme Variable} ganeti-luxid-service-type" msgstr "{Variable Scheme} ganeti-luxid-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31335 +#: guix-git/doc/guix.texi:31700 msgid "@command{ganeti-luxid} is a daemon used to answer queries related to the configuration and the current live state of a Ganeti cluster. Additionally, it is the authoritative daemon for the Ganeti job queue. Jobs can be submitted via this daemon and it schedules and starts them." msgstr "@command{ganeti-luxid} es un daemon que responde a las peticiones relacionadas con la configuración del estado actual del cluster Ganeti. De manera adicional, es el daemon que tiene el control sobre la cola de trabajos de Ganeti. Los trabajos se pueden emitir a través de este daemon y éste los planifica y arranca." #. type: defvr -#: guix-git/doc/guix.texi:31337 +#: guix-git/doc/guix.texi:31702 msgid "It takes a @code{ganeti-luxid-configuration} object." msgstr "Recibe un objeto @code{ganeti-luxid-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:31339 +#: guix-git/doc/guix.texi:31704 #, no-wrap msgid "{Data Type} ganeti-luxid-configuration" msgstr "{Tipo de datos} ganeti-luxid-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31341 +#: guix-git/doc/guix.texi:31706 #, fuzzy #| msgid "This is the configuration for the @code{ganeti-rapi} service." msgid "This is the configuration for the @code{ganeti-luxid} service." msgstr "Configuración para el servicio @code{ganeti-rapi}." #. type: table -#: guix-git/doc/guix.texi:31350 +#: guix-git/doc/guix.texi:31715 msgid "The daemon will refuse to start if it cannot verify that the majority of cluster nodes believes that it is running on the master node. Set to @code{#t} to ignore such checks and start anyway (this can be dangerous)." msgstr "El daemon se negará a arrancar si no puede verificar que la mayoría de los nodos del cluster creen que éste se está ejecutando en el nodo coordinador. Proporcione @code{#t} para ignorar dichas comprobaciones y arrancar en cualquier caso (puede ser peligroso)." #. type: defvr -#: guix-git/doc/guix.texi:31357 +#: guix-git/doc/guix.texi:31722 #, no-wrap msgid "{Scheme Variable} ganeti-rapi-service-type" msgstr "{Variable Scheme} ganeti-rapi-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31361 +#: guix-git/doc/guix.texi:31726 msgid "@command{ganeti-rapi} provides a remote API for Ganeti clusters. It runs on the master node and can be used to perform cluster actions programmatically via a JSON-based RPC protocol." msgstr "@command{ganeti-rapi} proporciona una API remota para cluster de Ganeti. Se ejecuta en el nodo coordinador y se puede usar para realizar programática acciones en el cluster a través de un protocolo de llamada de procedimientos remotos (RPC) basado en JSON." #. type: defvr -#: guix-git/doc/guix.texi:31367 +#: guix-git/doc/guix.texi:31732 msgid "Most query operations are allowed without authentication (unless @var{require-authentication?} is set), whereas write operations require explicit authorization via the @file{/var/lib/ganeti/rapi/users} file. See the @url{http://docs.ganeti.org/ganeti/master/html/rapi.html, Ganeti Remote API documentation} for more information." msgstr "Se permiten la mayoría de las operaciones de consulta sin identificación (a no ser que se especifique @var{require-authentication?}), mientras que las operaciones de escritura necesitan autorización explícita a través del archivo @file{/var/lib/ganeti/rapi/users}. Véase la @url{http://docs.ganeti.org/ganeti/master/html/rapi.html, documentación de la API remota de Ganeti} para obtener más información." #. type: defvr -#: guix-git/doc/guix.texi:31369 +#: guix-git/doc/guix.texi:31734 msgid "The value of this service must be a @code{ganeti-rapi-configuration} object." msgstr "El valor de este servicio debe ser un objeto @code{ganeti-rapi-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:31371 +#: guix-git/doc/guix.texi:31736 #, no-wrap msgid "{Data Type} ganeti-rapi-configuration" msgstr "{Tipo de datos} ganeti-rapi-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31373 +#: guix-git/doc/guix.texi:31738 msgid "This is the configuration for the @code{ganeti-rapi} service." msgstr "Configuración para el servicio @code{ganeti-rapi}." #. type: item -#: guix-git/doc/guix.texi:31378 +#: guix-git/doc/guix.texi:31743 #, no-wrap msgid "@code{require-authentication?} (default: @code{#f})" msgstr "@code{require-authentication?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31380 +#: guix-git/doc/guix.texi:31745 msgid "Whether to require authentication even for read-only operations." msgstr "Determina si se requiere identificación incluso para operaciones únicamente de lectura." #. type: item -#: guix-git/doc/guix.texi:31381 +#: guix-git/doc/guix.texi:31746 #, no-wrap msgid "@code{port} (default: @code{5080})" msgstr "@code{port} (predeterminado: @code{5080})" #. type: table -#: guix-git/doc/guix.texi:31383 +#: guix-git/doc/guix.texi:31748 msgid "The TCP port on which to listen to API requests." msgstr "El puerto TCP en el que esperarán peticiones de la API." #. type: table -#: guix-git/doc/guix.texi:31387 +#: guix-git/doc/guix.texi:31752 msgid "The network address that the service will bind to. By default it listens on all configured addresses." msgstr "La dirección de red a la que se asocia el servicio. De manera predeterminada el servicio se asocia a todas las direcciones configuradas." #. type: table -#: guix-git/doc/guix.texi:31391 +#: guix-git/doc/guix.texi:31756 msgid "When set, it must specify a specific network interface such as @code{eth0} that the daemon will bind to." msgstr "Si se proporciona un valor, debe especificar el nombre de la interfaz de red, como por ejemplo @code{eth0}, a la que el daemon se asocia." #. type: table -#: guix-git/doc/guix.texi:31396 +#: guix-git/doc/guix.texi:31761 msgid "The maximum number of simultaneous client requests to handle. Further connections are allowed, but no responses are sent until enough connections have closed." msgstr "Número máximo de conexiones simultaneas de clientes que se manejan. Las conexiones que excedan dicho número se aceptan, pero no se envía respuesta hasta que hayan cerrado suficientes conexiones." #. type: table -#: guix-git/doc/guix.texi:31399 +#: guix-git/doc/guix.texi:31764 msgid "Whether to use SSL/TLS encryption on the RAPI port." msgstr "Determina si se usa cifrado SSL/TLS en el puerto de la API remota." #. type: defvr -#: guix-git/doc/guix.texi:31413 +#: guix-git/doc/guix.texi:31778 #, no-wrap msgid "{Scheme Variable} ganeti-kvmd-service-type" msgstr "{Variable Scheme} ganeti-kvmd-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31421 +#: guix-git/doc/guix.texi:31786 msgid "@command{ganeti-kvmd} is responsible for determining whether a given KVM instance was shut down by an administrator or a user. Normally Ganeti will restart an instance that was not stopped through Ganeti itself. If the cluster option @code{user_shutdown} is true, this daemon monitors the @code{QMP} socket provided by QEMU and listens for shutdown events, and marks the instance as @dfn{USER_down} instead of @dfn{ERROR_down} when it shuts down gracefully by itself." msgstr "@command{ganeti-kvmd} es responsable de determinar si una instancia KVM determinada ha sido apagada por una usuaria o una administradora. Normalmente Ganeti reiniciará una instancia que no se haya parado a través de Ganeti. Si la opción del cluster @code{user_shutdown} es verdadera, este daemon monitoriza el puerto @code{QMP} que proporciona QEMU y escucha eventos de apagado en él, y marca la instancia como @dfn{USER_down} en vez de @dfn{ERROR_down} cuando el daemon la apaga de manera adecuada." #. type: defvr -#: guix-git/doc/guix.texi:31423 +#: guix-git/doc/guix.texi:31788 msgid "It takes a @code{ganeti-kvmd-configuration} object." msgstr "Recibe un objeto @code{ganeti-kvmd-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:31425 +#: guix-git/doc/guix.texi:31790 #, no-wrap msgid "{Data Type} ganeti-kvmd-configuration" msgstr "{Tipo de datos} ganeti-kvmd-configuration" #. type: defvr -#: guix-git/doc/guix.texi:31437 +#: guix-git/doc/guix.texi:31802 #, no-wrap msgid "{Scheme Variable} ganeti-mond-service-type" msgstr "{Variable Scheme} ganeti-mond-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31441 +#: guix-git/doc/guix.texi:31806 msgid "@command{ganeti-mond} is an optional daemon that provides Ganeti monitoring functionality. It is responsible for running data collectors and publish the collected information through a HTTP interface." msgstr "@command{ganeti-mond} es un daemon opcional que proporciona la funcionalidad de monitorización de Ganeti. Es responsable de la ejecución de los recolectores de datos y la publicación de la información obtenida a través de una interfaz HTTP." #. type: defvr -#: guix-git/doc/guix.texi:31443 +#: guix-git/doc/guix.texi:31808 msgid "It takes a @code{ganeti-mond-configuration} object." msgstr "Recibe un objeto @code{ganeti-mond-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:31445 +#: guix-git/doc/guix.texi:31810 #, no-wrap msgid "{Data Type} ganeti-mond-configuration" msgstr "{Tipo de datos} ganeti-mond-configuration" #. type: item -#: guix-git/doc/guix.texi:31451 +#: guix-git/doc/guix.texi:31816 #, no-wrap msgid "@code{port} (default: @code{1815})" msgstr "@code{port} (predeterminado: @code{1815})" #. type: table -#: guix-git/doc/guix.texi:31453 guix-git/doc/guix.texi:31479 +#: guix-git/doc/guix.texi:31818 guix-git/doc/guix.texi:31844 msgid "The port on which the daemon will listen." msgstr "Puerto en el que el daemon espera conexiones." #. type: table -#: guix-git/doc/guix.texi:31457 +#: guix-git/doc/guix.texi:31822 msgid "The network address that the daemon will bind to. By default it binds to all available interfaces." msgstr "La dirección de red a la que se asocia el daemon. De manera predeterminada se asocia a todas las interfaces disponibles." #. type: defvr -#: guix-git/doc/guix.texi:31464 +#: guix-git/doc/guix.texi:31829 #, no-wrap msgid "{Scheme Variable} ganeti-metad-service-type" msgstr "{Variable Scheme} ganeti-metad-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31467 +#: guix-git/doc/guix.texi:31832 msgid "@command{ganeti-metad} is an optional daemon that can be used to provide information about the cluster to instances or OS install scripts." msgstr "@command{ganeti-metad} es un daemon opcional que se puede usar para proporcionar información del cluster a instancias o guiones de instalación de sistema operativo." #. type: defvr -#: guix-git/doc/guix.texi:31469 +#: guix-git/doc/guix.texi:31834 msgid "It takes a @code{ganeti-metad-configuration} object." msgstr "Recibe un objeto @code{ganeti-metad-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:31471 +#: guix-git/doc/guix.texi:31836 #, no-wrap msgid "{Data Type} ganeti-metad-configuration" msgstr "{Tipo de datos} ganeti-metad-configuration" #. type: table -#: guix-git/doc/guix.texi:31483 +#: guix-git/doc/guix.texi:31848 msgid "If set, the daemon will bind to this address only. If left unset, the behavior depends on the cluster configuration." msgstr "Si se proporciona un valor el daemon se asociará únicamente a esta dirección. Si no se proporciona valor el comportamiento depende de la configuración del cluster." #. type: defvr -#: guix-git/doc/guix.texi:31490 +#: guix-git/doc/guix.texi:31855 #, no-wrap msgid "{Scheme Variable} ganeti-watcher-service-type" msgstr "{Variable Scheme} ganeti-watcher-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31498 +#: guix-git/doc/guix.texi:31863 msgid "@command{ganeti-watcher} is a script designed to run periodically and ensure the health of a cluster. It will automatically restart instances that have stopped without Ganeti's consent, and repairs DRBD links in case a node has rebooted. It also archives old cluster jobs and restarts Ganeti daemons that are not running. If the cluster parameter @code{ensure_node_health} is set, the watcher will also shutdown instances and DRBD devices if the node it is running on is declared offline by known master candidates." msgstr "@command{ganeti-watcher} es un guión diseñado para su ejecución periódica en la que comprueba el estado la salud del cluster. Reinicia automáticamente las instancias que se han parado sin el consentimiento de Ganeti, y repara los enlaces DRBD en caso de que un nodo se haya reiniciado. También archiva los trabajos antiguos del cluster y reinicia los daemon de Ganeti si no se están ejecutando. Si se ha proporcionado valor al parámetro del cluster @code{ensure_node_health}, este proceso también apagará las instancias y dispositivos DRBD si el nodo que las ejecute se ha declarado fuera de línea por alguna de las máquinas candidatas de coordinación conocidas." #. type: defvr -#: guix-git/doc/guix.texi:31500 +#: guix-git/doc/guix.texi:31865 msgid "It can be paused on all nodes with @command{gnt-cluster watcher pause}." msgstr "Se puede pausar en todos los nodos con @command{gnt-cluster watcher pause}." #. type: defvr -#: guix-git/doc/guix.texi:31502 +#: guix-git/doc/guix.texi:31867 msgid "The service takes a @code{ganeti-watcher-configuration} object." msgstr "Este servicio toma como valor un objeto @code{ganeti-watcher-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:31504 +#: guix-git/doc/guix.texi:31869 #, no-wrap msgid "{Data Type} ganeti-watcher-configuration" msgstr "{Tipo de datos} ganeti-watcher-configuration" #. type: item -#: guix-git/doc/guix.texi:31510 +#: guix-git/doc/guix.texi:31875 #, no-wrap msgid "@code{schedule} (default: @code{'(next-second-from (next-minute (range 0 60 5)))})" msgstr "@code{schedule} (predeterminado: @code{'(next-second-from (next-minute (range 0 60 5)))})" #. type: table -#: guix-git/doc/guix.texi:31512 +#: guix-git/doc/guix.texi:31877 msgid "How often to run the script. The default is every five minutes." msgstr "Cada cuanto se ejecuta el guión. El valor predeterminado es cada 5 minutos." #. type: item -#: guix-git/doc/guix.texi:31513 +#: guix-git/doc/guix.texi:31878 #, no-wrap msgid "@code{rapi-ip} (default: @code{#f})" msgstr "@code{rapi-ip} (predeterminada: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31516 +#: guix-git/doc/guix.texi:31881 msgid "This option needs to be specified only if the RAPI daemon is configured to use a particular interface or address. By default the cluster address is used." msgstr "Esta opción se debe especificar únicamente si el daemon de API remota se ha configurado para usar una interfaz o dirección de red concreta. De manera predeterminada se usa la dirección del cluster." #. type: item -#: guix-git/doc/guix.texi:31517 +#: guix-git/doc/guix.texi:31882 #, no-wrap msgid "@code{job-age} (default: @code{(* 6 3600)})" msgstr "@code{job-age} (predeterminados: @code{(* 6 3600)})" #. type: table -#: guix-git/doc/guix.texi:31520 +#: guix-git/doc/guix.texi:31885 msgid "Archive cluster jobs older than this age, specified in seconds. The default is 6 hours. This keeps @command{gnt-job list} manageable." msgstr "Archiva los trabajos del cluster cuya antigüedad sea mayor que el el número de segundos proporcionado. El valor predeterminado son 6 horas. Esto mantiene la lista proporcionada @command{gnt-job list} dentro de límites gestionables." #. type: item -#: guix-git/doc/guix.texi:31521 +#: guix-git/doc/guix.texi:31886 #, no-wrap msgid "@code{verify-disks?} (default: @code{#t})" msgstr "@code{verify-disks?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:31525 +#: guix-git/doc/guix.texi:31890 msgid "If this is @code{#f}, the watcher will not try to repair broken DRBD links automatically. Administrators will need to use @command{gnt-cluster verify-disks} manually instead." msgstr "Si es @code{#f}, el proceso de vigilancia (``watcher'') no intentará reparar los enlaces de DRBD rotos de manera automática. Esto significa que quienes administren el sistema deberán usar @command{gnt-cluster verify-disks} manualmente para realizar dicha tarea." #. type: table -#: guix-git/doc/guix.texi:31528 +#: guix-git/doc/guix.texi:31893 msgid "When @code{#t}, the script performs additional logging for debugging purposes." msgstr "Cuando es @code{#t}, el guión registra información adicional para facilitar la depuración." #. type: defvr -#: guix-git/doc/guix.texi:31532 +#: guix-git/doc/guix.texi:31897 #, no-wrap msgid "{Scheme Variable} ganeti-cleaner-service-type" msgstr "{Variable Scheme} ganeti-cleaner-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31540 +#: guix-git/doc/guix.texi:31905 msgid "@command{ganeti-cleaner} is a script designed to run periodically and remove old files from the cluster. This service type controls two @dfn{cron jobs}: one intended for the master node that permanently purges old cluster jobs, and one intended for every node that removes expired X509 certificates, keys, and outdated @command{ganeti-watcher} information. Like all Ganeti services, it is safe to include even on non-master nodes as it will disable itself as necessary." msgstr "@command{ganeti-cleaner} es un guión diseñado para su ejecución periódica en la que elimina archivos antiguos del cluster. Este tipo de servicio controla dos @dfn{trabajos de cron}: uno para el nodo coordinador que elimina de manera permanente trabajos antiguos del cluster, y otro para todos los nodos que elimina certificados X509 y claves que hayan expirado así como información desactualizada de @command{ganeti-watcher}. Como todos los servicios de Ganeti, se puede incluir también en los nodos que no son coordinadores y se desactivará por si mismo si es necesario." #. type: defvr -#: guix-git/doc/guix.texi:31542 +#: guix-git/doc/guix.texi:31907 msgid "It takes a @code{ganeti-cleaner-configuration} object." msgstr "Recibe un objeto @code{ganeti-cleaner-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:31544 +#: guix-git/doc/guix.texi:31909 #, no-wrap msgid "{Data Type} ganeti-cleaner-configuration" msgstr "{Tipo de datos} ganeti-cleaner-configuration" #. type: table -#: guix-git/doc/guix.texi:31549 +#: guix-git/doc/guix.texi:31914 msgid "The @code{ganeti} package to use for the @command{gnt-cleaner} command." msgstr "El paquete @code{ganeti} usado para la orden @command{gnt-cleaner}." #. type: item -#: guix-git/doc/guix.texi:31550 +#: guix-git/doc/guix.texi:31915 #, no-wrap msgid "@code{master-schedule} (default: @code{\"45 1 * * *\"})" msgstr "@code{master-schedule} (predeterminado: @code{\"45 1 * * *\"})" #. type: table -#: guix-git/doc/guix.texi:31553 +#: guix-git/doc/guix.texi:31918 msgid "How often to run the master cleaning job. The default is once per day, at 01:45:00." msgstr "Cada cuanto se ejecuta el trabajo principal de limpieza. El valor predeterminado representa su ejecución una vez al día, a las 01:45:00." #. type: item -#: guix-git/doc/guix.texi:31554 +#: guix-git/doc/guix.texi:31919 #, no-wrap msgid "@code{node-schedule} (default: @code{\"45 2 * * *\"})" msgstr "@code{node-schedule} (predeterminada: @code{\"45 2 * * *\"})" #. type: table -#: guix-git/doc/guix.texi:31557 +#: guix-git/doc/guix.texi:31922 msgid "How often to run the node cleaning job. The default is once per day, at 02:45:00." msgstr "La frecuencia del trabajo de limpieza del nodo. El valor predeterminado es una vez al día, a las 02:45:00." # FUZZY FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:31571 +#: guix-git/doc/guix.texi:31936 msgid "The @code{(gnu services version-control)} module provides a service to allow remote access to local Git repositories. There are three options: the @code{git-daemon-service}, which provides access to repositories via the @code{git://} unsecured TCP-based protocol, extending the @code{nginx} web server to proxy some requests to @code{git-http-backend}, or providing a web interface with @code{cgit-service-type}." msgstr "El módulo @code{(gnu services version-control)} proporciona un servicio para permitir el acceso remoto a repositorios Git locales. Existen tres opciones: el servicio @code{git-daemon-service}, que proporciona acceso a repositorios a través del protocolo inseguro basado en TCP @code{git://}, la extensión del servidor web @code{nginx} para redirigir algunas peticiones al motor @code{git-http-backend}, o una interfaz web proporcionada por el servicio @code{cgit-service-type}." #. type: deffn -#: guix-git/doc/guix.texi:31572 +#: guix-git/doc/guix.texi:31937 #, no-wrap msgid "{Scheme Procedure} git-daemon-service [#:config (git-daemon-configuration)]" msgstr "{Procedimiento Scheme} git-daemon-service [#:config (git-daemon-configuration)]" #. type: deffn -#: guix-git/doc/guix.texi:31576 +#: guix-git/doc/guix.texi:31941 msgid "Return a service that runs @command{git daemon}, a simple TCP server to expose repositories over the Git protocol for anonymous access." msgstr "Devuelve un servicio que ejecuta @command{git daemon}, un servidor TCP simple para exponer repositorios con el protocolo Git para acceso anónimo." # FUZZY #. type: deffn -#: guix-git/doc/guix.texi:31582 +#: guix-git/doc/guix.texi:31947 msgid "The optional @var{config} argument should be a @code{} object, by default it allows read-only access to exported@footnote{By creating the magic file @file{git-daemon-export-ok} in the repository directory.} repositories under @file{/srv/git}." msgstr "El parámetro opcional @var{config} debe ser un objeto @code{}, de manera predeterminada permite acceso de solo lectura a los repositorios exportados@footnote{Mediante la creación del archivo mágico @file{git-daemon-export-ok} en el directorio del repositorio.} bajo @file{/srv/git}." #. type: deftp -#: guix-git/doc/guix.texi:31585 +#: guix-git/doc/guix.texi:31950 #, no-wrap msgid "{Data Type} git-daemon-configuration" msgstr "{Tipo de datos} git-daemon-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31587 +#: guix-git/doc/guix.texi:31952 msgid "Data type representing the configuration for @code{git-daemon-service}." msgstr "Tipo de datos que representa la configuración para @code{git-daemon-service}." #. type: item -#: guix-git/doc/guix.texi:31589 +#: guix-git/doc/guix.texi:31954 #, no-wrap msgid "@code{package} (default: @code{git})" msgstr "@code{package} (predeterminado: @code{git})" #. type: table -#: guix-git/doc/guix.texi:31591 guix-git/doc/guix.texi:31651 +#: guix-git/doc/guix.texi:31956 guix-git/doc/guix.texi:32016 msgid "Package object of the Git distributed version control system." msgstr "El objeto paquete del sistema distribuido de control de versiones Git." #. type: item -#: guix-git/doc/guix.texi:31592 guix-git/doc/guix.texi:31655 +#: guix-git/doc/guix.texi:31957 guix-git/doc/guix.texi:32020 #, no-wrap msgid "@code{export-all?} (default: @code{#f})" msgstr "@code{export-all?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31595 +#: guix-git/doc/guix.texi:31960 msgid "Whether to allow access for all Git repositories, even if they do not have the @file{git-daemon-export-ok} file." msgstr "Determina si se permite el acceso a todos los repositorios Git, incluso si no tienen el archivo @file{git-daemon-export-ok}." #. type: item -#: guix-git/doc/guix.texi:31596 +#: guix-git/doc/guix.texi:31961 #, no-wrap msgid "@code{base-path} (default: @file{/srv/git})" msgstr "@code{base-path} (predeterminado: @file{/srv/git})" #. type: table -#: guix-git/doc/guix.texi:31602 +#: guix-git/doc/guix.texi:31967 msgid "Whether to remap all the path requests as relative to the given path. If you run @command{git daemon} with @code{(base-path \"/srv/git\")} on @samp{example.com}, then if you later try to pull @indicateurl{git://example.com/hello.git}, git daemon will interpret the path as @file{/srv/git/hello.git}." msgstr "Determina si se traducirán todas las rutas de las peticiones como relativas a la ruta proporcionada. Si se encuentra en ejecución el daemon de git con @code{(base-path \"/srv/git\"} en example.com, al realizar la solicitud de @indicateurl{git://example.com/hello.git}, el daemon de git interpretará la ruta como @file{/srv/git/hello.git}." #. type: item -#: guix-git/doc/guix.texi:31603 +#: guix-git/doc/guix.texi:31968 #, no-wrap msgid "@code{user-path} (default: @code{#f})" msgstr "@code{user-path} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31611 +#: guix-git/doc/guix.texi:31976 msgid "Whether to allow @code{~user} notation to be used in requests. When specified with empty string, requests to @indicateurl{git://host/~alice/foo} is taken as a request to access @code{foo} repository in the home directory of user @code{alice}. If @code{(user-path \"@var{path}\")} is specified, the same request is taken as a request to access @file{@var{path}/foo} repository in the home directory of user @code{alice}." msgstr "Determina si se permite el uso de la notación @code{~user} en las peticiones. Si se especifica una cadena vacía, una peticione de @indicateurl{git://máquina/~alicia/algo} se tomará como una petición de acceso al repositorio @code{algo} en el directorio de la usuaria @code{alicia}. Si se especifica @code{(user-path \"@var{ruta}\")}, la misma petición se traducirá en una petición de acceso al repositorio @file{@var{ruta}/algo} en el directorio de la usuaria @code{alicia}." #. type: item -#: guix-git/doc/guix.texi:31612 +#: guix-git/doc/guix.texi:31977 #, no-wrap msgid "@code{listen} (default: @code{'()})" msgstr "@code{listen} (predeterminadas: @code{'()})" # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:31615 +#: guix-git/doc/guix.texi:31980 msgid "Whether to listen on specific IP addresses or hostnames, defaults to all." msgstr "Determina si se debe escuchar en direcciones IP o nombres de máquina específicos, de manera predeterminada escucha en cualquiera." #. type: item -#: guix-git/doc/guix.texi:31616 +#: guix-git/doc/guix.texi:31981 #, no-wrap msgid "@code{port} (default: @code{#f})" msgstr "@code{port} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31618 +#: guix-git/doc/guix.texi:31983 msgid "Whether to listen on an alternative port, which defaults to 9418." msgstr "Determina si se escucha en un puerto alternativo, cuyo valor predeterminado es 9418." #. type: item -#: guix-git/doc/guix.texi:31619 +#: guix-git/doc/guix.texi:31984 #, no-wrap msgid "@code{whitelist} (default: @code{'()})" msgstr "@code{whitelist} (predeterminada: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:31621 +#: guix-git/doc/guix.texi:31986 msgid "If not empty, only allow access to this list of directories." msgstr "Si no está vacío, únicamente permite el acceso a esta lista de directorios." #. type: table -#: guix-git/doc/guix.texi:31625 +#: guix-git/doc/guix.texi:31990 msgid "Extra options will be passed to @command{git daemon}, please run @command{man git-daemon} for more information." msgstr "Opciones adicionales que se proporcionan a @command{git daemon}, para obtener más información le rogamos que ejecute @command{man git-daemon}." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:31639 +#: guix-git/doc/guix.texi:32004 msgid "The @code{git://} protocol lacks authentication. When you pull from a repository fetched via @code{git://}, you don't know whether the data you receive was modified or is even coming from the specified host, and your connection is subject to eavesdropping. It's better to use an authenticated and encrypted transport, such as @code{https}. Although Git allows you to serve repositories using unsophisticated file-based web servers, there is a faster protocol implemented by the @code{git-http-backend} program. This program is the back-end of a proper Git web service. It is designed to sit behind a FastCGI proxy. @xref{Web Services}, for more on running the necessary @code{fcgiwrap} daemon." msgstr "El protocolo @code{git://} carece de verificación. Cuando se obtienen datos de un repositorio a través del protocolo @code{git://}, no puede tener plena confianza en que los datos que reciba procedan realmente de la máquina que ha indicado, y su conexión puede estar sujeta a interceptaciones. Es mejor usar un transporte verificado y cifrado, como @code{https}. Aunque Git le permite servir repositorios usando servidores web poco sofisticados basados en archivos, existe un protocolo más rápido implementado en el programa @code{git-http-backend}. Este programa es el motor de un servicio web de Git adecuado. Está diseñado para ejecutarse tras una pasarela FastCGI. @xref{Web Services}, para más información sobre la ejecución del daemon @code{fcgiwrap} necesario." #. type: Plain text -#: guix-git/doc/guix.texi:31642 +#: guix-git/doc/guix.texi:32007 msgid "Guix has a separate configuration data type for serving Git repositories over HTTP." msgstr "Guix tiene un tipo de datos de configuración distinto para proporcionar repositorios Git sobre HTTP." #. type: deftp -#: guix-git/doc/guix.texi:31643 +#: guix-git/doc/guix.texi:32008 #, no-wrap msgid "{Data Type} git-http-configuration" msgstr "{Tipo de datos} git-http-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31647 +#: guix-git/doc/guix.texi:32012 #, fuzzy msgid "Data type representing the configuration for a future @code{git-http-service-type}; can currently be used to configure Nginx through @code{git-http-nginx-location-configuration}." msgstr "Tipo de datos que representa la configuración para un futuro tipo de servicio @code{git-http-service-type}; actualmente puede usarse para configurar Nginx a través de @code{git-http-nginx-location-configuration}." #. type: item -#: guix-git/doc/guix.texi:31649 +#: guix-git/doc/guix.texi:32014 #, no-wrap msgid "@code{package} (default: @var{git})" msgstr "@code{package} (predeterminado: @var{git})" #. type: item -#: guix-git/doc/guix.texi:31652 +#: guix-git/doc/guix.texi:32017 #, no-wrap msgid "@code{git-root} (default: @file{/srv/git})" msgstr "@code{git-root} (predeterminada: @file{/srv/git})" #. type: table -#: guix-git/doc/guix.texi:31654 +#: guix-git/doc/guix.texi:32019 msgid "Directory containing the Git repositories to expose to the world." msgstr "Directorio que contiene los repositorios Git que se expondrán al mundo." #. type: table -#: guix-git/doc/guix.texi:31658 +#: guix-git/doc/guix.texi:32023 msgid "Whether to expose access for all Git repositories in @var{git-root}, even if they do not have the @file{git-daemon-export-ok} file." msgstr "Determina si se expondrá el acceso a todos los repositorios en @var{git-root}, incluso si no contienen el archivo @file{git-daemon-export-ok}." #. type: item -#: guix-git/doc/guix.texi:31659 +#: guix-git/doc/guix.texi:32024 #, no-wrap msgid "@code{uri-path} (default: @samp{/git/})" msgstr "@code{uri-path} (predeterminada: @samp{/git/})" #. type: table -#: guix-git/doc/guix.texi:31664 +#: guix-git/doc/guix.texi:32029 msgid "Path prefix for Git access. With the default @samp{/git/} prefix, this will map @indicateurl{http://@var{server}/git/@var{repo}.git} to @file{/srv/git/@var{repo}.git}. Requests whose URI paths do not begin with this prefix are not passed on to this Git instance." msgstr "Prefijo de la ruta del acceso de Git. Con el prefijo predeterminado @samp{/git/}, @indicateurl{http://@var{servidor}/git/@var{repositorio}.git} se traducirá en @code{/srv/git/@var{repositorio}.git}. Las peticiones cuyas rutas URI no comiencen con dicho prefijo no se pasan a esta instancia de Git." #. type: item -#: guix-git/doc/guix.texi:31665 +#: guix-git/doc/guix.texi:32030 #, no-wrap msgid "@code{fcgiwrap-socket} (default: @code{127.0.0.1:9000})" msgstr "@code{fcgiwrap-socket} (predeterminado: @code{127.0.0.1:9000})" #. type: table -#: guix-git/doc/guix.texi:31668 +#: guix-git/doc/guix.texi:32033 msgid "The socket on which the @code{fcgiwrap} daemon is listening. @xref{Web Services}." msgstr "Socket en el que el daemon @code{fcgiwrap} escucha. @xref{Web Services}." #. type: Plain text -#: guix-git/doc/guix.texi:31675 +#: guix-git/doc/guix.texi:32040 msgid "There is no @code{git-http-service-type}, currently; instead you can create an @code{nginx-location-configuration} from a @code{git-http-configuration} and then add that location to a web server." msgstr "No existe actualmente @code{git-http-service-type}; en vez de eso puede crear una configuración @code{nginx-location-configuration} desde @code{git-http-configuration} y añadir dicha configuración al servidor web." #. type: deffn -#: guix-git/doc/guix.texi:31676 +#: guix-git/doc/guix.texi:32041 #, no-wrap msgid "{Scheme Procedure} git-http-nginx-location-configuration @" msgstr "{Procedimiento Scheme} git-http-nginx-location-configuration @" #. type: deffn -#: guix-git/doc/guix.texi:31681 +#: guix-git/doc/guix.texi:32046 msgid "[config=(git-http-configuration)] Compute an @code{nginx-location-configuration} that corresponds to the given Git http configuration. An example nginx service definition to serve the default @file{/srv/git} over HTTPS might be:" msgstr "" "[config=(git-http-configuration)]\n" "Calcula una configuración @code{nginx-location-configuration} que corresponde con la configuración http de Git proporcionada. Un ejemplo de definición de servicio nginx que ofrece el directorio predeterminado @file{/srv/git} sobre HTTPS podría ser:" #. type: lisp -#: guix-git/doc/guix.texi:31698 +#: guix-git/doc/guix.texi:32063 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -61698,455 +62485,460 @@ msgstr "" " (git-http-configuration (uri-path \"/\"))))))))))\n" #. type: deffn -#: guix-git/doc/guix.texi:31705 +#: guix-git/doc/guix.texi:32070 #, fuzzy msgid "This example assumes that you are using Let's Encrypt to get your TLS certificate. @xref{Certificate Services}. The default @code{certbot} service will redirect all HTTP traffic on @code{git.my-host.org} to HTTPS@. You will also need to add an @code{fcgiwrap} proxy to your system services. @xref{Web Services}." msgstr "Este ejemplo asume que usa Let's Encrypt para obtener su certificado TLS. @xref{Certificate Services}. El servicio predeterminado @code{certbot} redirigirá todo el tráfico HTTP en @code{git.mi-maquina.org} hacia HTTPS. También necesitará añadir una pasarela @code{fcgiwrap} a sus servicios del sistema. @xref{Web Services}." #. type: subsubheading -#: guix-git/doc/guix.texi:31707 +#: guix-git/doc/guix.texi:32072 #, no-wrap msgid "Cgit Service" msgstr "Servicio Cgit" #. type: cindex -#: guix-git/doc/guix.texi:31709 +#: guix-git/doc/guix.texi:32074 #, no-wrap msgid "Cgit service" msgstr "servicio Cgit" #. type: cindex -#: guix-git/doc/guix.texi:31710 +#: guix-git/doc/guix.texi:32075 #, no-wrap msgid "Git, web interface" msgstr "Git, interfaz web" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:31713 +#: guix-git/doc/guix.texi:32078 msgid "@uref{https://git.zx2c4.com/cgit/, Cgit} is a web frontend for Git repositories written in C." msgstr "@uref{https://git.zx2c4.com/cgit/, Cgit} es un servidor de fachada para repositiorios Git escrito en C." #. type: Plain text -#: guix-git/doc/guix.texi:31716 +#: guix-git/doc/guix.texi:32081 msgid "The following example will configure the service with default values. By default, Cgit can be accessed on port 80 (@code{http://localhost:80})." msgstr "El ejemplo siguiente configura el servicio con los valores predeterminados. Por omisión, se puede acceder a Cgit en el puerto 80 (@code{http://localhost:80})." #. type: lisp -#: guix-git/doc/guix.texi:31719 +#: guix-git/doc/guix.texi:32084 #, no-wrap msgid "(service cgit-service-type)\n" msgstr "(service cgit-service-type)\n" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:31723 +#: guix-git/doc/guix.texi:32088 msgid "The @code{file-object} type designates either a file-like object (@pxref{G-Expressions, file-like objects}) or a string." msgstr "El tipo @code{file-object} designa o bien un objeto ``tipo-archivo'' (@pxref{G-Expressions, objetos ``tipo-archivo''}), o bien una cadena." #. type: Plain text -#: guix-git/doc/guix.texi:31727 +#: guix-git/doc/guix.texi:32092 msgid "Available @code{cgit-configuration} fields are:" msgstr "Los campos disponibles de @code{cgit-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:31728 +#: guix-git/doc/guix.texi:32093 #, no-wrap msgid "{@code{cgit-configuration} parameter} package package" msgstr "{parámetro de @code{cgit-configuration}} package package" #. type: deftypevr -#: guix-git/doc/guix.texi:31730 +#: guix-git/doc/guix.texi:32095 msgid "The CGIT package." msgstr "El paquete CGIT." #. type: deftypevr -#: guix-git/doc/guix.texi:31733 +#: guix-git/doc/guix.texi:32098 #, no-wrap msgid "{@code{cgit-configuration} parameter} nginx-server-configuration-list nginx" msgstr "{parámetro de @code{cgit-configuration}} lista-nginx-server-configuration nginx" #. type: deftypevr -#: guix-git/doc/guix.texi:31738 +#: guix-git/doc/guix.texi:32100 +msgid "NGINX configuration." +msgstr "Configuración de NGINX." + +#. type: deftypevr +#: guix-git/doc/guix.texi:32103 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object about-filter" msgstr "{parámetro de @code{cgit-configuration}} file-object about-filter" #. type: deftypevr -#: guix-git/doc/guix.texi:31741 +#: guix-git/doc/guix.texi:32106 msgid "Specifies a command which will be invoked to format the content of about pages (both top-level and for each repository)." msgstr "Especifica una orden que se llamará para dar formato al contenido de las páginas ``about'' (tanto al nivel superior como cada repositorio)." #. type: deftypevr -#: guix-git/doc/guix.texi:31746 +#: guix-git/doc/guix.texi:32111 #, no-wrap msgid "{@code{cgit-configuration} parameter} string agefile" msgstr "{parámetro de @code{cgit-configuration}} string agefile" #. type: deftypevr -#: guix-git/doc/guix.texi:31749 +#: guix-git/doc/guix.texi:32114 msgid "Specifies a path, relative to each repository path, which can be used to specify the date and time of the youngest commit in the repository." msgstr "Especifica una ruta, relativa a cada ruta de repositorio, que puede usarse para especificar una fecha y hora de la revisión más reciente del repositorio." #. type: deftypevr -#: guix-git/doc/guix.texi:31754 +#: guix-git/doc/guix.texi:32119 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object auth-filter" msgstr "{parámetro de @code{cgit-configuration}} file-object auth-filter" # FUZZY FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:31757 +#: guix-git/doc/guix.texi:32122 msgid "Specifies a command that will be invoked for authenticating repository access." msgstr "Especifica una orden que se invocará para la validación de acceso al repositorio." #. type: deftypevr -#: guix-git/doc/guix.texi:31762 +#: guix-git/doc/guix.texi:32127 #, no-wrap msgid "{@code{cgit-configuration} parameter} string branch-sort" msgstr "{parámetro de @code{cgit-configuration}} string branch-sort" #. type: deftypevr -#: guix-git/doc/guix.texi:31765 +#: guix-git/doc/guix.texi:32130 msgid "Flag which, when set to @samp{age}, enables date ordering in the branch ref list, and when set @samp{name} enables ordering by branch name." msgstr "Opción que, cuando tiene valor @samp{age}, activa la ordenación por fecha en la lista de referencias de ramas, y cuando tiene valor @samp{name} activa la ordenación por nombre de rama." #. type: deftypevr -#: guix-git/doc/guix.texi:31767 +#: guix-git/doc/guix.texi:32132 msgid "Defaults to @samp{\"name\"}." msgstr "El valor predeterminado es @samp{\"name\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:31770 +#: guix-git/doc/guix.texi:32135 #, no-wrap msgid "{@code{cgit-configuration} parameter} string cache-root" msgstr "{parámetro de @code{cgit-configuration}} string cache-root" #. type: deftypevr -#: guix-git/doc/guix.texi:31772 +#: guix-git/doc/guix.texi:32137 msgid "Path used to store the cgit cache entries." msgstr "Ruta usada para el almacenamiento de las entradas de caché de cgit." #. type: deftypevr -#: guix-git/doc/guix.texi:31774 +#: guix-git/doc/guix.texi:32139 msgid "Defaults to @samp{\"/var/cache/cgit\"}." msgstr "El valor predeterminado es @samp{\"/var/cache/cgit\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:31777 +#: guix-git/doc/guix.texi:32142 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-static-ttl" msgstr "{parámetro de @code{cgit-configuration}} integer cache-static-ttl" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:31780 +#: guix-git/doc/guix.texi:32145 msgid "Number which specifies the time-to-live, in minutes, for the cached version of repository pages accessed with a fixed SHA1." msgstr "Número que especifica el tiempo de vida, en minutos, de la versión en caché de las páginas del repositiorio accedidas mediante un hash SHA1 fijo." #. type: deftypevr -#: guix-git/doc/guix.texi:31782 guix-git/doc/guix.texi:32225 +#: guix-git/doc/guix.texi:32147 guix-git/doc/guix.texi:32590 msgid "Defaults to @samp{-1}." msgstr "El valor predeterminado es @samp{-1}." #. type: deftypevr -#: guix-git/doc/guix.texi:31785 +#: guix-git/doc/guix.texi:32150 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-dynamic-ttl" msgstr "{parámetro de @code{cgit-configuration}} integer cache-dynamic-ttl" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:31788 +#: guix-git/doc/guix.texi:32153 msgid "Number which specifies the time-to-live, in minutes, for the cached version of repository pages accessed without a fixed SHA1." msgstr "Número que especifica el tiempo de vida, en minutos, de la versión en caché de las páginas del repositorio accedidas sin un hash SHA1 fijo." #. type: deftypevr -#: guix-git/doc/guix.texi:31793 +#: guix-git/doc/guix.texi:32158 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-repo-ttl" msgstr "{parámetro de @code{cgit-configuration}} integer cache-repo-ttl" #. type: deftypevr -#: guix-git/doc/guix.texi:31796 +#: guix-git/doc/guix.texi:32161 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository summary page." msgstr "Número que especifica el tiempo de vida, en minutos, de la versión en caché de la página de resumen del repositorio." #. type: deftypevr -#: guix-git/doc/guix.texi:31801 +#: guix-git/doc/guix.texi:32166 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-root-ttl" msgstr "{parámetro de @code{cgit-configuration}} integer cache-root-ttl" #. type: deftypevr -#: guix-git/doc/guix.texi:31804 +#: guix-git/doc/guix.texi:32169 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository index page." msgstr "Número que especifica el tiempo de vida, en minutos, de la versión en caché de la página del índice de repositorios." #. type: deftypevr -#: guix-git/doc/guix.texi:31809 +#: guix-git/doc/guix.texi:32174 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-scanrc-ttl" msgstr "{parámetro de @code{cgit-configuration}} integer cache-scanrc-ttl" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:31812 +#: guix-git/doc/guix.texi:32177 msgid "Number which specifies the time-to-live, in minutes, for the result of scanning a path for Git repositories." msgstr "Número que especifica el tiempo de vida, en minutos, para el resultado de la búsqueda en una ruta para repositorios Git." #. type: deftypevr -#: guix-git/doc/guix.texi:31817 +#: guix-git/doc/guix.texi:32182 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-about-ttl" msgstr "{parámetro de @code{cgit-configuration}} integer cache-about-ttl" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:31820 +#: guix-git/doc/guix.texi:32185 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository about page." msgstr "Número que especifica el tiempo de vida, en minutos, de la versión en caché de la página de información del repositorio." #. type: deftypevr -#: guix-git/doc/guix.texi:31825 +#: guix-git/doc/guix.texi:32190 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-snapshot-ttl" msgstr "{parámetro de @code{cgit-configuration}} integer cache-snapshot-ttl" #. type: deftypevr -#: guix-git/doc/guix.texi:31828 +#: guix-git/doc/guix.texi:32193 msgid "Number which specifies the time-to-live, in minutes, for the cached version of snapshots." msgstr "Número que especifica el tiempo de vida, en minutos, de la versión en caché de las instantáneas." #. type: deftypevr -#: guix-git/doc/guix.texi:31833 +#: guix-git/doc/guix.texi:32198 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-size" msgstr "{parámetro de @code{cgit-configuration}} integer cache-size" #. type: deftypevr -#: guix-git/doc/guix.texi:31836 +#: guix-git/doc/guix.texi:32201 msgid "The maximum number of entries in the cgit cache. When set to @samp{0}, caching is disabled." msgstr "El número máximo de entradas en la caché de cgit. Cuando el valor es @samp{0}, se desactiva el almacenamiento en caché." #. type: deftypevr -#: guix-git/doc/guix.texi:31841 +#: guix-git/doc/guix.texi:32206 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean case-sensitive-sort?" msgstr "{parámetro de @code{cgit-configuration}} boolean case-sensitive-sort?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:31843 +#: guix-git/doc/guix.texi:32208 msgid "Sort items in the repo list case sensitively." msgstr "Ordena los elementos en la lista del repositorio diferenciando las mayúsculas." #. type: deftypevr -#: guix-git/doc/guix.texi:31848 +#: guix-git/doc/guix.texi:32213 #, no-wrap msgid "{@code{cgit-configuration} parameter} list clone-prefix" msgstr "{parámetro de @code{cgit-configuration}} lista clone-prefix" #. type: deftypevr -#: guix-git/doc/guix.texi:31851 +#: guix-git/doc/guix.texi:32216 msgid "List of common prefixes which, when combined with a repository URL, generates valid clone URLs for the repository." msgstr "Lista de prefijos comunes que, cuando se combinen con la URL de un repositorio, generan una URL que permite el clonado del repositorio." #. type: deftypevr -#: guix-git/doc/guix.texi:31856 +#: guix-git/doc/guix.texi:32221 #, no-wrap msgid "{@code{cgit-configuration} parameter} list clone-url" msgstr "{parámetro de @code{cgit-configuration}} lista clone-url" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:31858 +#: guix-git/doc/guix.texi:32223 msgid "List of @code{clone-url} templates." msgstr "Lista de plantillas @code{clone-url}." #. type: deftypevr -#: guix-git/doc/guix.texi:31863 +#: guix-git/doc/guix.texi:32228 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object commit-filter" msgstr "{parámetro de @code{cgit-configuration}} file-object commit-filter" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:31865 +#: guix-git/doc/guix.texi:32230 msgid "Command which will be invoked to format commit messages." msgstr "Orden ejecutada para el formato de mensajes de revisión." #. type: deftypevr -#: guix-git/doc/guix.texi:31870 +#: guix-git/doc/guix.texi:32235 #, no-wrap msgid "{@code{cgit-configuration} parameter} string commit-sort" msgstr "{parámetro de @code{cgit-configuration}} string commit-sort" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:31874 guix-git/doc/guix.texi:32432 +#: guix-git/doc/guix.texi:32239 guix-git/doc/guix.texi:32797 msgid "Flag which, when set to @samp{date}, enables strict date ordering in the commit log, and when set to @samp{topo} enables strict topological ordering." msgstr "Opción que, cuando tiene valor @samp{date}, activa la ordenación estricta por fecha en el registro histórico de revisiones, y cuando tiene valor @samp{topo} activa la ordenación estricta topológica." #. type: deftypevr -#: guix-git/doc/guix.texi:31876 +#: guix-git/doc/guix.texi:32241 msgid "Defaults to @samp{\"git log\"}." msgstr "El valor predeterminado es @samp{\"git log\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:31879 +#: guix-git/doc/guix.texi:32244 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object css" msgstr "{parámetro de @code{cgit-configuration}} file-object css" #. type: deftypevr -#: guix-git/doc/guix.texi:31881 +#: guix-git/doc/guix.texi:32246 msgid "URL which specifies the css document to include in all cgit pages." msgstr "URL que especifica el documento css incluido en todas las páginas de cgit." #. type: deftypevr -#: guix-git/doc/guix.texi:31883 +#: guix-git/doc/guix.texi:32248 msgid "Defaults to @samp{\"/share/cgit/cgit.css\"}." msgstr "El valor predeterminado es @samp{\"/share/cgit/cgit.css\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:31886 +#: guix-git/doc/guix.texi:32251 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object email-filter" msgstr "{parámetro de @code{cgit-configuration}} file-object email-filter" #. type: deftypevr -#: guix-git/doc/guix.texi:31890 +#: guix-git/doc/guix.texi:32255 msgid "Specifies a command which will be invoked to format names and email address of committers, authors, and taggers, as represented in various places throughout the cgit interface." msgstr "Especifica una orden que se llamará para dar formato a los nombres y las direcciones de correo electrónico de las revisoras, autoras y etiquetadoras con el que se representarán en varios lugares de la interfaz cgit." #. type: deftypevr -#: guix-git/doc/guix.texi:31895 +#: guix-git/doc/guix.texi:32260 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean embedded?" msgstr "{parámetro de @code{cgit-configuration}} boolean embedded?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:31898 +#: guix-git/doc/guix.texi:32263 msgid "Flag which, when set to @samp{#t}, will make cgit generate a HTML fragment suitable for embedding in other HTML pages." msgstr "Opción que, cuando tiene valor @samp{#t}, hace que cgit genere un fragmento HTML adecuado para embeberse en otras páginas HTML." #. type: deftypevr -#: guix-git/doc/guix.texi:31903 +#: guix-git/doc/guix.texi:32268 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-commit-graph?" msgstr "{parámetro de @code{cgit-configuration}} boolean enable-commit-graph?" #. type: deftypevr -#: guix-git/doc/guix.texi:31907 +#: guix-git/doc/guix.texi:32272 msgid "Flag which, when set to @samp{#t}, will make cgit print an ASCII-art commit history graph to the left of the commit messages in the repository log page." msgstr "Opción que, cuando tiene el valor @samp{#t}, hace que cgit imprima un grafo histórico de la revisión de arte ASCII a la izquierda de los mensajes de revisión en la página del histórico del repositorio." #. type: deftypevr -#: guix-git/doc/guix.texi:31912 +#: guix-git/doc/guix.texi:32277 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-filter-overrides?" msgstr "{parámetro de @code{cgit-configuration}} boolean enable-filter-overrides?" #. type: deftypevr -#: guix-git/doc/guix.texi:31915 +#: guix-git/doc/guix.texi:32280 msgid "Flag which, when set to @samp{#t}, allows all filter settings to be overridden in repository-specific cgitrc files." msgstr "Opción que, cuando tiene valor @samp{#t}, permite que todas las configuraciones de filtros se sustituyan en los archivos cgitrc específicos del repositorio." #. type: deftypevr -#: guix-git/doc/guix.texi:31920 +#: guix-git/doc/guix.texi:32285 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-follow-links?" msgstr "{parámetro de @code{cgit-configuration}} boolean enable-follow-links?" #. type: deftypevr -#: guix-git/doc/guix.texi:31923 +#: guix-git/doc/guix.texi:32288 msgid "Flag which, when set to @samp{#t}, allows users to follow a file in the log view." msgstr "Opción que, cuando tiene valor @samp{#t}, permite a las usuarias seguir un archivo en la vista de registro (log)." #. type: deftypevr -#: guix-git/doc/guix.texi:31928 +#: guix-git/doc/guix.texi:32293 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-http-clone?" msgstr "{parámetro de @code{cgit-configuration}} boolean enable-http-clone?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:31931 +#: guix-git/doc/guix.texi:32296 msgid "If set to @samp{#t}, cgit will act as an dumb HTTP endpoint for Git clones." msgstr "Si se proporciona @samp{#t}, cgit actuará como un simple servidor HTTP para los clones de Git." #. type: deftypevr -#: guix-git/doc/guix.texi:31936 +#: guix-git/doc/guix.texi:32301 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-index-links?" msgstr "{parámetro de @code{cgit-configuration}} boolean enable-index-links?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:31939 +#: guix-git/doc/guix.texi:32304 msgid "Flag which, when set to @samp{#t}, will make cgit generate extra links \"summary\", \"commit\", \"tree\" for each repo in the repository index." msgstr "Opción que, cuando tiene valor @samp{#t}, hace que cgit genere enlaces adicionales \"summary\" (resumen), \"commit\" (revisión) y \"tree\" (árbol) para cada repositorio en el índice de repositorios." #. type: deftypevr -#: guix-git/doc/guix.texi:31944 +#: guix-git/doc/guix.texi:32309 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-index-owner?" msgstr "{parámetro de @code{cgit-configuration}} boolean enable-index-owner?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:31947 +#: guix-git/doc/guix.texi:32312 msgid "Flag which, when set to @samp{#t}, will make cgit display the owner of each repo in the repository index." msgstr "Opción que, cuando tiene valor @samp{#t}, hace que cgit muestre la propietaria de cada repositorio en el índice del repositorios." #. type: deftypevr -#: guix-git/doc/guix.texi:31952 +#: guix-git/doc/guix.texi:32317 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-log-filecount?" msgstr "{parámetro de @code{cgit-configuration}} boolean enable-log-filecount?" #. type: deftypevr -#: guix-git/doc/guix.texi:31955 +#: guix-git/doc/guix.texi:32320 msgid "Flag which, when set to @samp{#t}, will make cgit print the number of modified files for each commit on the repository log page." msgstr "Opción que, cuando se proporciona el valor @samp{#t}, hace que cgit imprima el número de archivos modificados por cada revisión en la página de registro histórico del repositorio (\"log\")." #. type: deftypevr -#: guix-git/doc/guix.texi:31960 +#: guix-git/doc/guix.texi:32325 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-log-linecount?" msgstr "{parámetro de @code{cgit-configuration}} boolean enable-log-linecount?" #. type: deftypevr -#: guix-git/doc/guix.texi:31963 +#: guix-git/doc/guix.texi:32328 msgid "Flag which, when set to @samp{#t}, will make cgit print the number of added and removed lines for each commit on the repository log page." msgstr "Opción que, cuando se proporciona el valor @samp{#t}, hace que cgit imprima el número de líneas añadidas y eliminadas en cada revisión en la página de registro histórico (\"log\")." #. type: deftypevr -#: guix-git/doc/guix.texi:31968 +#: guix-git/doc/guix.texi:32333 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-remote-branches?" msgstr "{parámetro de @code{cgit-configuration}} boolean enable-remote-branches?" #. type: deftypevr -#: guix-git/doc/guix.texi:31971 guix-git/doc/guix.texi:32495 +#: guix-git/doc/guix.texi:32336 guix-git/doc/guix.texi:32860 msgid "Flag which, when set to @code{#t}, will make cgit display remote branches in the summary and refs views." msgstr "Opción que, cuando se proporciona el valor @samp{#t}, hace que cgit muestre ramas remotas en las vistas de resumen (\"summary\") y de referencias (\"refs\")." #. type: deftypevr -#: guix-git/doc/guix.texi:31976 +#: guix-git/doc/guix.texi:32341 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-subject-links?" msgstr "{parámetro de @code{cgit-configuration}} boolean enable-subject-links?" #. type: deftypevr -#: guix-git/doc/guix.texi:31980 +#: guix-git/doc/guix.texi:32345 msgid "Flag which, when set to @code{1}, will make cgit use the subject of the parent commit as link text when generating links to parent commits in commit view." msgstr "Opción que, cuando se proporciona el valor @code{1}, hace que cgit use el asunto de la revisión previa como texto del enlace cuando se generen enlaces a revisiones previas en la vista de la revisión." #. type: deftypevr -#: guix-git/doc/guix.texi:31985 +#: guix-git/doc/guix.texi:32350 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-html-serving?" msgstr "{parámetro de @code{cgit-configuration}} boolean enable-html-serving?" @@ -62154,1000 +62946,1000 @@ msgstr "{parámetro de @code{cgit-configuration}} boolean enable-html-serving?" # FUZZY # TODO (MAAV): Enviar parche. #. type: deftypevr -#: guix-git/doc/guix.texi:31989 +#: guix-git/doc/guix.texi:32354 msgid "Flag which, when set to @samp{#t}, will make cgit use the subject of the parent commit as link text when generating links to parent commits in commit view." msgstr "Opción que, cuando se proporciona el valor @samp{#t}, hace que cgit use el asunto de la revisión previa como texto del enlace cuando se generen enlaces a revisiones previas en la vista de la revisión." #. type: deftypevr -#: guix-git/doc/guix.texi:31994 +#: guix-git/doc/guix.texi:32359 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-tree-linenumbers?" msgstr "{parámetro de @code{cgit-configuration}} boolean enable-tree-linenumbers?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:31997 +#: guix-git/doc/guix.texi:32362 msgid "Flag which, when set to @samp{#t}, will make cgit generate linenumber links for plaintext blobs printed in the tree view." msgstr "Opción que, cuando se proporciona el valor @samp{#t}, hace que cgit genere enlaces de números de línea para los archivos (blob) de texto plano impresos en la vista de árbol." #. type: deftypevr -#: guix-git/doc/guix.texi:32002 +#: guix-git/doc/guix.texi:32367 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-git-config?" msgstr "{parámetro de @code{cgit-configuration}} boolean enable-git-config?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32005 +#: guix-git/doc/guix.texi:32370 msgid "Flag which, when set to @samp{#f}, will allow cgit to use Git config to set any repo specific settings." msgstr "Opción que, cuando tiene valor @samp{#f}, permite que cgit use la configuración de Git para fijar el valor de cualquier opción específica del repositorio." #. type: deftypevr -#: guix-git/doc/guix.texi:32010 +#: guix-git/doc/guix.texi:32375 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object favicon" msgstr "{parámetro de @code{cgit-configuration}} file-object favicon" # FUZZY FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32012 +#: guix-git/doc/guix.texi:32377 msgid "URL used as link to a shortcut icon for cgit." msgstr "URL usada para icono de los enlaces a cgit." #. type: deftypevr -#: guix-git/doc/guix.texi:32014 +#: guix-git/doc/guix.texi:32379 msgid "Defaults to @samp{\"/favicon.ico\"}." msgstr "El valor predeterminado es @samp{\"/favicon.ico\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:32017 +#: guix-git/doc/guix.texi:32382 #, no-wrap msgid "{@code{cgit-configuration} parameter} string footer" msgstr "{parámetro de @code{cgit-configuration}} string footer" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32021 +#: guix-git/doc/guix.texi:32386 msgid "The content of the file specified with this option will be included verbatim at the bottom of all pages (i.e.@: it replaces the standard \"generated by...\"@: message)." msgstr "El contenido del archivo especificado con esta opción se incluirá literalmente en la parte inferior de todas las páginas (es decir, sustituye al mensaje estándar \"generated by...\")." #. type: deftypevr -#: guix-git/doc/guix.texi:32026 +#: guix-git/doc/guix.texi:32391 #, no-wrap msgid "{@code{cgit-configuration} parameter} string head-include" msgstr "{parámetro de @code{cgit-configuration}} string head-include" #. type: deftypevr -#: guix-git/doc/guix.texi:32029 +#: guix-git/doc/guix.texi:32394 msgid "The content of the file specified with this option will be included verbatim in the HTML HEAD section on all pages." msgstr "El contenido del archivo especificado con esta opción se incluirá literalmente en la sección HEAD de HTML en todas las páginas." #. type: deftypevr -#: guix-git/doc/guix.texi:32034 +#: guix-git/doc/guix.texi:32399 #, no-wrap msgid "{@code{cgit-configuration} parameter} string header" msgstr "{parámetro de @code{cgit-configuration}} string header" #. type: deftypevr -#: guix-git/doc/guix.texi:32037 +#: guix-git/doc/guix.texi:32402 msgid "The content of the file specified with this option will be included verbatim at the top of all pages." msgstr "El contenido del archivo especificado con esta opción se incluirá literalmente en la parte superior de todas las páginas." #. type: deftypevr -#: guix-git/doc/guix.texi:32042 +#: guix-git/doc/guix.texi:32407 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object include" msgstr "{parámetro de @code{cgit-configuration}} file-object include" #. type: deftypevr -#: guix-git/doc/guix.texi:32045 +#: guix-git/doc/guix.texi:32410 msgid "Name of a configfile to include before the rest of the current config- file is parsed." msgstr "Nombre de un archivo de configuración que debe incluirse antes de procesar el resto del archivo de configuración actual." #. type: deftypevr -#: guix-git/doc/guix.texi:32050 +#: guix-git/doc/guix.texi:32415 #, no-wrap msgid "{@code{cgit-configuration} parameter} string index-header" msgstr "{parámetro de @code{cgit-configuration}} string index-header" #. type: deftypevr -#: guix-git/doc/guix.texi:32053 +#: guix-git/doc/guix.texi:32418 msgid "The content of the file specified with this option will be included verbatim above the repository index." msgstr "El contenido del archivo especificado en esta opción se incluirá literalmente sobre el índice de repositorios." #. type: deftypevr -#: guix-git/doc/guix.texi:32058 +#: guix-git/doc/guix.texi:32423 #, no-wrap msgid "{@code{cgit-configuration} parameter} string index-info" msgstr "{parámetro de @code{cgit-configuration}} string index-info" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32061 +#: guix-git/doc/guix.texi:32426 msgid "The content of the file specified with this option will be included verbatim below the heading on the repository index page." msgstr "El contenido del archivo especificado con esta opción se incluirá de manera literal bajo la cabecera en la página de índice del repositorio." #. type: deftypevr -#: guix-git/doc/guix.texi:32066 +#: guix-git/doc/guix.texi:32431 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean local-time?" msgstr "{parámetro de @code{cgit-configuration}} boolean local-time?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32069 +#: guix-git/doc/guix.texi:32434 msgid "Flag which, if set to @samp{#t}, makes cgit print commit and tag times in the servers timezone." msgstr "Opción que, cuando tiene valor @samp{#t}, hace que cgit imprima las fechas de revisión y etiqueta en la zona horaria del servidor." #. type: deftypevr -#: guix-git/doc/guix.texi:32074 +#: guix-git/doc/guix.texi:32439 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object logo" msgstr "{parámetro de @code{cgit-configuration}} file-object logo" #. type: deftypevr -#: guix-git/doc/guix.texi:32077 +#: guix-git/doc/guix.texi:32442 msgid "URL which specifies the source of an image which will be used as a logo on all cgit pages." msgstr "URL que especifica la fuente de una imagen usada como logo en todas las páginas de cgit." #. type: deftypevr -#: guix-git/doc/guix.texi:32079 +#: guix-git/doc/guix.texi:32444 msgid "Defaults to @samp{\"/share/cgit/cgit.png\"}." msgstr "El valor predeterminado es @samp{\"/share/cgit/cgit.png\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:32082 +#: guix-git/doc/guix.texi:32447 #, no-wrap msgid "{@code{cgit-configuration} parameter} string logo-link" msgstr "{parámetro de @code{cgit-configuration}} string logo-link" #. type: deftypevr -#: guix-git/doc/guix.texi:32084 guix-git/doc/guix.texi:32541 +#: guix-git/doc/guix.texi:32449 guix-git/doc/guix.texi:32906 msgid "URL loaded when clicking on the cgit logo image." msgstr "URL que se carga al pulsar la imagen del logo de cgit." #. type: deftypevr -#: guix-git/doc/guix.texi:32089 +#: guix-git/doc/guix.texi:32454 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object owner-filter" msgstr "{parámetro de @code{cgit-configuration}} file-object owner-filter" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32092 +#: guix-git/doc/guix.texi:32457 msgid "Command which will be invoked to format the Owner column of the main page." msgstr "Orden que se ejecuta para dar formato a la columna de propietaria (Owner) de la página principal." #. type: deftypevr -#: guix-git/doc/guix.texi:32097 +#: guix-git/doc/guix.texi:32462 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-atom-items" msgstr "{parámetro de @code{cgit-configuration}} integer max-atom-items" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32099 +#: guix-git/doc/guix.texi:32464 msgid "Number of items to display in atom feeds view." msgstr "Número de elementos a mostrar en la vista de ``atom feeds''." #. type: deftypevr -#: guix-git/doc/guix.texi:32104 +#: guix-git/doc/guix.texi:32469 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-commit-count" msgstr "{parámetro de @code{cgit-configuration}} integer max-commit-count" #. type: deftypevr -#: guix-git/doc/guix.texi:32106 +#: guix-git/doc/guix.texi:32471 msgid "Number of entries to list per page in \"log\" view." msgstr "Número de entradas a mostrar por página en la vista del registro histórico (\"log\")." #. type: deftypevr -#: guix-git/doc/guix.texi:32111 +#: guix-git/doc/guix.texi:32476 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-message-length" msgstr "{parámetro de @code{cgit-configuration}} integer max-message-length" #. type: deftypevr -#: guix-git/doc/guix.texi:32113 +#: guix-git/doc/guix.texi:32478 msgid "Number of commit message characters to display in \"log\" view." msgstr "Número de caracteres del mensaje de la revisión a mostrar en la vista del registro histórico (\"log\")." #. type: deftypevr -#: guix-git/doc/guix.texi:32115 guix-git/doc/guix.texi:32131 +#: guix-git/doc/guix.texi:32480 guix-git/doc/guix.texi:32496 msgid "Defaults to @samp{80}." msgstr "El valor predeterminado es @samp{80}." #. type: deftypevr -#: guix-git/doc/guix.texi:32118 +#: guix-git/doc/guix.texi:32483 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-repo-count" msgstr "{parámetro de @code{cgit-configuration}} integer max-repo-count" #. type: deftypevr -#: guix-git/doc/guix.texi:32121 +#: guix-git/doc/guix.texi:32486 msgid "Specifies the number of entries to list per page on the repository index page." msgstr "Especifica el número de entradas a mostrar por página en la página de índice de repositorios." #. type: deftypevr -#: guix-git/doc/guix.texi:32126 +#: guix-git/doc/guix.texi:32491 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-repodesc-length" msgstr "{parámetro de @code{cgit-configuration}} integer max-repodesc-length" #. type: deftypevr -#: guix-git/doc/guix.texi:32129 +#: guix-git/doc/guix.texi:32494 msgid "Specifies the maximum number of repo description characters to display on the repository index page." msgstr "Especifica el número máximo de caracteres mostrados en la descripción del repositorio en la página del índice de repositorios." #. type: deftypevr -#: guix-git/doc/guix.texi:32134 +#: guix-git/doc/guix.texi:32499 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-blob-size" msgstr "{parámetro de @code{cgit-configuration}} integer max-blob-size" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32136 +#: guix-git/doc/guix.texi:32501 msgid "Specifies the maximum size of a blob to display HTML for in KBytes." msgstr "Especifica el tamaño máximo de un archivo (blob) para mostrarlo en HTML en kilobytes." #. type: deftypevr -#: guix-git/doc/guix.texi:32141 +#: guix-git/doc/guix.texi:32506 #, no-wrap msgid "{@code{cgit-configuration} parameter} string max-stats" msgstr "{parámetro de @code{cgit-configuration}} string max-stats" #. type: deftypevr -#: guix-git/doc/guix.texi:32144 +#: guix-git/doc/guix.texi:32509 msgid "Maximum statistics period. Valid values are @samp{week},@samp{month}, @samp{quarter} and @samp{year}." msgstr "Periodo estadístico máximo. Son valores aceptados @samp{week}, @samp{month}, @samp{quarter} and @samp{year}." #. type: deftypevr -#: guix-git/doc/guix.texi:32149 +#: guix-git/doc/guix.texi:32514 #, no-wrap msgid "{@code{cgit-configuration} parameter} mimetype-alist mimetype" msgstr "{parámetro de @code{cgit-configuration}} mimetype-alist mimetype" #. type: deftypevr -#: guix-git/doc/guix.texi:32151 +#: guix-git/doc/guix.texi:32516 msgid "Mimetype for the specified filename extension." msgstr "Tipo MIME para la extensión de archivo especificada." #. type: deftypevr -#: guix-git/doc/guix.texi:32155 +#: guix-git/doc/guix.texi:32520 msgid "Defaults to @samp{((gif \"image/gif\") (html \"text/html\") (jpg \"image/jpeg\") (jpeg \"image/jpeg\") (pdf \"application/pdf\") (png \"image/png\") (svg \"image/svg+xml\"))}." msgstr "El valor predeterminado es @samp{((gif \"image/gif\") (html \"text/html\") (jpg \"image/jpeg\") (jpeg \"image/jpeg\") (pdf \"application/pdf\") (png \"image/png\") (svg \"image/svg+xml\"))}." #. type: deftypevr -#: guix-git/doc/guix.texi:32158 +#: guix-git/doc/guix.texi:32523 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object mimetype-file" msgstr "{parámetro de @code{cgit-configuration}} file-object mimetype-file" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32160 +#: guix-git/doc/guix.texi:32525 msgid "Specifies the file to use for automatic mimetype lookup." msgstr "Especifica el archivo usado para la búsqueda automática de tipos MIME." #. type: deftypevr -#: guix-git/doc/guix.texi:32165 +#: guix-git/doc/guix.texi:32530 #, no-wrap msgid "{@code{cgit-configuration} parameter} string module-link" msgstr "{parámetro de @code{cgit-configuration}} string module-link" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32168 +#: guix-git/doc/guix.texi:32533 msgid "Text which will be used as the formatstring for a hyperlink when a submodule is printed in a directory listing." msgstr "Texto que se usará como la cadena de formato para un enlace cuando un submódulo se imprime en el listado del directorio." #. type: deftypevr -#: guix-git/doc/guix.texi:32173 +#: guix-git/doc/guix.texi:32538 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean nocache?" msgstr "{parámetro de @code{cgit-configuration}} boolean nocache?" #. type: deftypevr -#: guix-git/doc/guix.texi:32175 +#: guix-git/doc/guix.texi:32540 msgid "If set to the value @samp{#t} caching will be disabled." msgstr "Si se proporciona el valor @samp{#t}, se desactiva la caché." #. type: deftypevr -#: guix-git/doc/guix.texi:32180 +#: guix-git/doc/guix.texi:32545 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean noplainemail?" msgstr "{parámetro de @code{cgit-configuration}} boolean noplainemail?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32183 +#: guix-git/doc/guix.texi:32548 msgid "If set to @samp{#t} showing full author email addresses will be disabled." msgstr "Si se proporciona @samp{#t}, se desactiva la impresión de direcciones de correo completas de las autoras." #. type: deftypevr -#: guix-git/doc/guix.texi:32188 +#: guix-git/doc/guix.texi:32553 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean noheader?" msgstr "{parámetro de @code{cgit-configuration}} boolean noheader?" #. type: deftypevr -#: guix-git/doc/guix.texi:32191 +#: guix-git/doc/guix.texi:32556 msgid "Flag which, when set to @samp{#t}, will make cgit omit the standard header on all pages." msgstr "Opción que, cuando tiene valor @samp{#t}, hace que cgit omita la cabecera estándar en todas las páginas." #. type: deftypevr -#: guix-git/doc/guix.texi:32196 +#: guix-git/doc/guix.texi:32561 #, no-wrap msgid "{@code{cgit-configuration} parameter} project-list project-list" msgstr "{parámetro de @code{cgit-configuration}} lista-proyectos project-list" #. type: deftypevr -#: guix-git/doc/guix.texi:32200 +#: guix-git/doc/guix.texi:32565 msgid "A list of subdirectories inside of @code{repository-directory}, relative to it, that should loaded as Git repositories. An empty list means that all subdirectories will be loaded." msgstr "Una lista de subdirectorios dentro de @code{repository-directory}, relativa a él, que debe cargarse como repositorios Git. La lista vacía significa que se cargarán todos los subdirectorios." #. type: deftypevr -#: guix-git/doc/guix.texi:32205 +#: guix-git/doc/guix.texi:32570 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object readme" msgstr "{parámetro de @code{cgit-configuration}} file-object readme" #. type: deftypevr -#: guix-git/doc/guix.texi:32207 +#: guix-git/doc/guix.texi:32572 msgid "Text which will be used as default value for @code{cgit-repo-readme}." msgstr "Texto usado como valor predeterminado para @code{cgit-repo-readme}." #. type: deftypevr -#: guix-git/doc/guix.texi:32212 +#: guix-git/doc/guix.texi:32577 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean remove-suffix?" msgstr "{parámetro de @code{cgit-configuration}} boolean remove-suffix?" #. type: deftypevr -#: guix-git/doc/guix.texi:32216 +#: guix-git/doc/guix.texi:32581 msgid "If set to @code{#t} and @code{repository-directory} is enabled, if any repositories are found with a suffix of @code{.git}, this suffix will be removed for the URL and name." msgstr "Si se proporciona @code{#t} y @code{repository-directory} está activo, si se encuentra algún repositorio con el sufijo @code{.git}, se elimina dicho sufijo de la URL y del nombre." #. type: deftypevr -#: guix-git/doc/guix.texi:32221 +#: guix-git/doc/guix.texi:32586 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer renamelimit" msgstr "{parámetro de @code{cgit-configuration}} integer renamelimit" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32223 +#: guix-git/doc/guix.texi:32588 msgid "Maximum number of files to consider when detecting renames." msgstr "Número máximo de archivos considerados durante la detección de renombrados." #. type: deftypevr -#: guix-git/doc/guix.texi:32228 +#: guix-git/doc/guix.texi:32593 #, no-wrap msgid "{@code{cgit-configuration} parameter} string repository-sort" msgstr "{parámetro de @code{cgit-configuration}} string repository-sort" #. type: deftypevr -#: guix-git/doc/guix.texi:32230 +#: guix-git/doc/guix.texi:32595 msgid "The way in which repositories in each section are sorted." msgstr "La forma de ordenar los repositorios de cada sección." #. type: deftypevr -#: guix-git/doc/guix.texi:32235 +#: guix-git/doc/guix.texi:32600 #, no-wrap msgid "{@code{cgit-configuration} parameter} robots-list robots" msgstr "{parámetro de @code{cgit-configuration}} lista-robots robots" #. type: deftypevr -#: guix-git/doc/guix.texi:32237 +#: guix-git/doc/guix.texi:32602 msgid "Text used as content for the @code{robots} meta-tag." msgstr "Texto usado como contenido de la meta-etiqueta @code{robots}." #. type: deftypevr -#: guix-git/doc/guix.texi:32239 +#: guix-git/doc/guix.texi:32604 msgid "Defaults to @samp{(\"noindex\" \"nofollow\")}." msgstr "El valor predeterminado es @samp{(\"noindex\" \"nofollow\")}." #. type: deftypevr -#: guix-git/doc/guix.texi:32242 +#: guix-git/doc/guix.texi:32607 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-desc" msgstr "{parámetro de @code{cgit-configuration}} string root-desc" #. type: deftypevr -#: guix-git/doc/guix.texi:32244 +#: guix-git/doc/guix.texi:32609 msgid "Text printed below the heading on the repository index page." msgstr "Texto impreso bajo la cabecera en la página de índice del repositorio." #. type: deftypevr -#: guix-git/doc/guix.texi:32246 +#: guix-git/doc/guix.texi:32611 msgid "Defaults to @samp{\"a fast webinterface for the git dscm\"}." msgstr "El valor predeterminado es @samp{\"a fast webinterface for the git dscm\"}.<" #. type: deftypevr -#: guix-git/doc/guix.texi:32249 +#: guix-git/doc/guix.texi:32614 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-readme" msgstr "{parámetro de @code{cgit-configuration}} string root-readme" #. type: deftypevr -#: guix-git/doc/guix.texi:32252 +#: guix-git/doc/guix.texi:32617 msgid "The content of the file specified with this option will be included verbatim below the ``about'' link on the repository index page." msgstr "El contenido del archivo especificado con esta opción se incluirá de manera literal tras el enlace de información del repositorio (``about'') en la página de índice del repositorio." #. type: deftypevr -#: guix-git/doc/guix.texi:32257 +#: guix-git/doc/guix.texi:32622 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-title" msgstr "{parámetro de @code{cgit-configuration}} string root-title" #. type: deftypevr -#: guix-git/doc/guix.texi:32259 +#: guix-git/doc/guix.texi:32624 msgid "Text printed as heading on the repository index page." msgstr "Texto impreso como cabecera en la página de índice del repositorio." #. type: deftypevr -#: guix-git/doc/guix.texi:32264 +#: guix-git/doc/guix.texi:32629 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean scan-hidden-path" msgstr "{parámetro de @code{cgit-configuration}} boolean scan-hidden-path" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32270 +#: guix-git/doc/guix.texi:32635 msgid "If set to @samp{#t} and repository-directory is enabled, repository-directory will recurse into directories whose name starts with a period. Otherwise, repository-directory will stay away from such directories, considered as ``hidden''. Note that this does not apply to the @file{.git} directory in non-bare repos." msgstr "Si se proporciona @samp{#t} y repository-directory está activo, repository-directory recorrerá recursivamente los directorios cuyos nombres comiencen por punto. En otro caso, repository-directory no tendrá en cuenta dichos directorios, considerados ocultos (``hidden''). Tenga en cuenta que esto no incluye al directorio @file{.git} en repositorios con una copia de trabajo." #. type: deftypevr -#: guix-git/doc/guix.texi:32275 +#: guix-git/doc/guix.texi:32640 #, no-wrap msgid "{@code{cgit-configuration} parameter} list snapshots" msgstr "{parámetro de @code{cgit-configuration}} lista snapshots" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32278 +#: guix-git/doc/guix.texi:32643 msgid "Text which specifies the default set of snapshot formats that cgit generates links for." msgstr "Texto que especifica el conjunto predeterminado de formatos de instantánea para los que cgit genera enlaces." #. type: deftypevr -#: guix-git/doc/guix.texi:32283 +#: guix-git/doc/guix.texi:32648 #, no-wrap msgid "{@code{cgit-configuration} parameter} repository-directory repository-directory" msgstr "{parámetro de @code{cgit-configuration}} directorio-repositorio repository-directory" #. type: deftypevr -#: guix-git/doc/guix.texi:32286 +#: guix-git/doc/guix.texi:32651 msgid "Name of the directory to scan for repositories (represents @code{scan-path})." msgstr "Nombre del directorio en el que se buscarán repositorios (representa @code{scan-path})." #. type: deftypevr -#: guix-git/doc/guix.texi:32288 +#: guix-git/doc/guix.texi:32653 msgid "Defaults to @samp{\"/srv/git\"}." msgstr "El valor predeterminado es @samp{\"/srv/git\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:32291 +#: guix-git/doc/guix.texi:32656 #, no-wrap msgid "{@code{cgit-configuration} parameter} string section" msgstr "{parámetro de @code{cgit-configuration}} string section" #. type: deftypevr -#: guix-git/doc/guix.texi:32294 guix-git/doc/guix.texi:32610 +#: guix-git/doc/guix.texi:32659 guix-git/doc/guix.texi:32975 msgid "The name of the current repository section - all repositories defined after this option will inherit the current section name." msgstr "Nombre actual de la sección de repositorios - todos los repositorios definidos tras esta opción heredarán el nombre actual de sección." #. type: deftypevr -#: guix-git/doc/guix.texi:32299 +#: guix-git/doc/guix.texi:32664 #, no-wrap msgid "{@code{cgit-configuration} parameter} string section-sort" msgstr "{parámetro de @code{cgit-configuration}} string section-sort" #. type: deftypevr -#: guix-git/doc/guix.texi:32302 +#: guix-git/doc/guix.texi:32667 msgid "Flag which, when set to @samp{1}, will sort the sections on the repository listing by name." msgstr "Opción que, cuando tiene valor @samp{1}, ordenará las secciones en el listado de repositorios por nombre." #. type: deftypevr -#: guix-git/doc/guix.texi:32307 +#: guix-git/doc/guix.texi:32672 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer section-from-path" msgstr "{parámetro de @code{cgit-configuration}} integer section-from-path" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32310 +#: guix-git/doc/guix.texi:32675 msgid "A number which, if defined prior to repository-directory, specifies how many path elements from each repo path to use as a default section name." msgstr "Número que, si se define antes de repository-directory, especifica cuantos elementos de ruta de cada ruta de repositorio se usarán como nombre de sección predeterminado." #. type: deftypevr -#: guix-git/doc/guix.texi:32315 +#: guix-git/doc/guix.texi:32680 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean side-by-side-diffs?" msgstr "{parámetro de @code{cgit-configuration}} boolean side-by-side-diffs?" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32318 +#: guix-git/doc/guix.texi:32683 msgid "If set to @samp{#t} shows side-by-side diffs instead of unidiffs per default." msgstr "Si se proporciona el valor @samp{#t} se muestran las diferencias lado a lado en vez de usar el formato universal de manera predeterminada." #. type: deftypevr -#: guix-git/doc/guix.texi:32323 +#: guix-git/doc/guix.texi:32688 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object source-filter" msgstr "{parámetro de @code{cgit-configuration}} file-object source-filter" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32326 +#: guix-git/doc/guix.texi:32691 msgid "Specifies a command which will be invoked to format plaintext blobs in the tree view." msgstr "Especifica la orden que se ejecutará para dar formato a los archivos (blob) de texto plano en la vista de árbol." #. type: deftypevr -#: guix-git/doc/guix.texi:32331 +#: guix-git/doc/guix.texi:32696 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-branches" msgstr "{parámetro de @code{cgit-configuration}} integer summary-branches" #. type: deftypevr -#: guix-git/doc/guix.texi:32334 +#: guix-git/doc/guix.texi:32699 msgid "Specifies the number of branches to display in the repository ``summary'' view." msgstr "Especifica el número de ramas mostradas en la vista resumen (``summary'') del repositorio." #. type: deftypevr -#: guix-git/doc/guix.texi:32339 +#: guix-git/doc/guix.texi:32704 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-log" msgstr "{parámetro de @code{cgit-configuration}} integer summary-log" #. type: deftypevr -#: guix-git/doc/guix.texi:32342 +#: guix-git/doc/guix.texi:32707 msgid "Specifies the number of log entries to display in the repository ``summary'' view." msgstr "Especifica el número de entradas del registro mostradas en la vista resumen (``summary'') del repositorio." #. type: deftypevr -#: guix-git/doc/guix.texi:32347 +#: guix-git/doc/guix.texi:32712 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-tags" msgstr "{parámetro de @code{cgit-configuration}} integer summary-tags" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32350 +#: guix-git/doc/guix.texi:32715 msgid "Specifies the number of tags to display in the repository ``summary'' view." msgstr "Especifica el número que etiquetas que se mostrarán en la vista resumen (``summary'') del repositorio." #. type: deftypevr -#: guix-git/doc/guix.texi:32355 +#: guix-git/doc/guix.texi:32720 #, no-wrap msgid "{@code{cgit-configuration} parameter} string strict-export" msgstr "{parámetro de @code{cgit-configuration}} string strict-export" #. type: deftypevr -#: guix-git/doc/guix.texi:32358 +#: guix-git/doc/guix.texi:32723 msgid "Filename which, if specified, needs to be present within the repository for cgit to allow access to that repository." msgstr "Nombre de archivo que, en caso de especificarse, debe estar presente en el repositiorio para que se permita el acceso de cgit a dicho repositorio." #. type: deftypevr -#: guix-git/doc/guix.texi:32363 +#: guix-git/doc/guix.texi:32728 #, no-wrap msgid "{@code{cgit-configuration} parameter} string virtual-root" msgstr "{parámetro de @code{cgit-configuration}} string virtual-root" #. type: deftypevr -#: guix-git/doc/guix.texi:32365 +#: guix-git/doc/guix.texi:32730 msgid "URL which, if specified, will be used as root for all cgit links." msgstr "URL que, en caso de especificarse, se usará como raíz de todos los enlaces de cgit." #. type: deftypevr -#: guix-git/doc/guix.texi:32367 +#: guix-git/doc/guix.texi:32732 msgid "Defaults to @samp{\"/\"}." msgstr "El valor predeterminado es @samp{\"/\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:32370 +#: guix-git/doc/guix.texi:32735 #, no-wrap msgid "{@code{cgit-configuration} parameter} repository-cgit-configuration-list repositories" msgstr "{parámetro de @code{cgit-configuration}} lista-repository-cgit-configuration repositories" #. type: deftypevr -#: guix-git/doc/guix.texi:32372 +#: guix-git/doc/guix.texi:32737 msgid "A list of @dfn{cgit-repo} records to use with config." msgstr "Lista de registros @dfn{cgit-repo} usados con la configuración." #. type: deftypevr -#: guix-git/doc/guix.texi:32376 +#: guix-git/doc/guix.texi:32741 msgid "Available @code{repository-cgit-configuration} fields are:" msgstr "Los campos disponibles de @code{repository-cgit-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:32377 +#: guix-git/doc/guix.texi:32742 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list snapshots" msgstr "{parámetro de @code{repository-cgit-configuration}} repo-list snapshots" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32380 +#: guix-git/doc/guix.texi:32745 msgid "A mask of snapshot formats for this repo that cgit generates links for, restricted by the global @code{snapshots} setting." msgstr "Una máscara de los formatos de instantánea para este repositorio para los que cgit genera enlaces, restringida por la opción de configuración global @code{snapshots}." #. type: deftypevr -#: guix-git/doc/guix.texi:32385 +#: guix-git/doc/guix.texi:32750 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object source-filter" msgstr "{parámetro de @code{repository-cgit-configuration}} repo-file-object source-filter" #. type: deftypevr -#: guix-git/doc/guix.texi:32387 +#: guix-git/doc/guix.texi:32752 msgid "Override the default @code{source-filter}." msgstr "Sustituye al valor predeterminado de @code{source-filter}." #. type: deftypevr -#: guix-git/doc/guix.texi:32392 +#: guix-git/doc/guix.texi:32757 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string url" msgstr "{parámetro de @code{repository-cgit-configuration}} repo-string url" #. type: deftypevr -#: guix-git/doc/guix.texi:32394 +#: guix-git/doc/guix.texi:32759 msgid "The relative URL used to access the repository." msgstr "La URL relativa usada para el acceso al repositorio." #. type: deftypevr -#: guix-git/doc/guix.texi:32399 +#: guix-git/doc/guix.texi:32764 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object about-filter" msgstr "{parámetro de @code{repository-cgit-configuration}} repo-file-object about-filter" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32401 +#: guix-git/doc/guix.texi:32766 msgid "Override the default @code{about-filter}." msgstr "Sustituye al valor predeterminado de @code{about-filter}." #. type: deftypevr -#: guix-git/doc/guix.texi:32406 +#: guix-git/doc/guix.texi:32771 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string branch-sort" msgstr "{parámetro de @code{repository-cgit-configuration}} repo-string branch-sort" #. type: deftypevr -#: guix-git/doc/guix.texi:32409 +#: guix-git/doc/guix.texi:32774 msgid "Flag which, when set to @samp{age}, enables date ordering in the branch ref list, and when set to @samp{name} enables ordering by branch name." msgstr "Cuando se proporciona el valor @samp{age}, activa la ordenación por fecha en la lista de referencias de ramas, y cuando se proporciona @samp{name} se activa la ordenación por nombre de rama." #. type: deftypevr -#: guix-git/doc/guix.texi:32414 +#: guix-git/doc/guix.texi:32779 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list clone-url" msgstr "{parámetro de @code{repository-cgit-configuration}} repo-list clone-url" #. type: deftypevr -#: guix-git/doc/guix.texi:32416 +#: guix-git/doc/guix.texi:32781 msgid "A list of URLs which can be used to clone repo." msgstr "Una lista de URL que se pueden usar para clonar el repositorio." #. type: deftypevr -#: guix-git/doc/guix.texi:32421 +#: guix-git/doc/guix.texi:32786 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object commit-filter" msgstr "{parámetro de @code{repository-cgit-configuration}} repo-file-object commit-filter" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32423 +#: guix-git/doc/guix.texi:32788 msgid "Override the default @code{commit-filter}." msgstr "Sustituye al valor predeterminado de @code{commit-filter}." #. type: deftypevr -#: guix-git/doc/guix.texi:32428 +#: guix-git/doc/guix.texi:32793 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string commit-sort" msgstr "{parámetro de @code{repository-cgit-configuration}} repo-string commit-sort" #. type: deftypevr -#: guix-git/doc/guix.texi:32437 +#: guix-git/doc/guix.texi:32802 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string defbranch" msgstr "{parámetro de @code{repository-cgit-configuration}} repo-string defbranch" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32442 +#: guix-git/doc/guix.texi:32807 msgid "The name of the default branch for this repository. If no such branch exists in the repository, the first branch name (when sorted) is used as default instead. By default branch pointed to by HEAD, or ``master'' if there is no suitable HEAD." msgstr "Nombre de la rama predeterminada de este repositorio. Si no existe dicha rama en el repositorio, se usará como predeterminado el primer nombre de rama encontrado (tras su ordenación). De manera predeterminada, la rama a la que apunta HEAD, o ``master'' si no existe un valor adecuado para HEAD." #. type: deftypevr -#: guix-git/doc/guix.texi:32447 +#: guix-git/doc/guix.texi:32812 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string desc" msgstr "{parámetro de @code{repository-cgit-configuration}} repo-string desc" #. type: deftypevr -#: guix-git/doc/guix.texi:32449 +#: guix-git/doc/guix.texi:32814 msgid "The value to show as repository description." msgstr "El valor a mostrar como descripción del repositorio." #. type: deftypevr -#: guix-git/doc/guix.texi:32454 +#: guix-git/doc/guix.texi:32819 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string homepage" msgstr "{parámetro de @code{repository-cgit-configuration}} repo-string homepage" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32456 +#: guix-git/doc/guix.texi:32821 msgid "The value to show as repository homepage." msgstr "El valor a mostrar como página web principal del repositorio." #. type: deftypevr -#: guix-git/doc/guix.texi:32461 +#: guix-git/doc/guix.texi:32826 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object email-filter" msgstr "{parámetro de @code{repository-cgit-configuration}} repo-file-object email-filter" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32463 +#: guix-git/doc/guix.texi:32828 msgid "Override the default @code{email-filter}." msgstr "Sustituye al valor predeterminado de @code{email-filter}." #. type: deftypevr -#: guix-git/doc/guix.texi:32468 +#: guix-git/doc/guix.texi:32833 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-commit-graph?" msgstr "{parámetro de @code{repository-cgit-configuration}} maybe-repo-boolean enable-commit-graph?" #. type: deftypevr -#: guix-git/doc/guix.texi:32471 +#: guix-git/doc/guix.texi:32836 msgid "A flag which can be used to disable the global setting @code{enable-commit-graph?}." msgstr "Esta opción se puede usar para forzar el valor de la opción de configuración global @code{enable-commit-graph?}." #. type: deftypevr -#: guix-git/doc/guix.texi:32476 +#: guix-git/doc/guix.texi:32841 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-log-filecount?" msgstr "{parámetro de @code{repository-cgit-configuration}} maybe-repo-boolean enable-log-filecount?" #. type: deftypevr -#: guix-git/doc/guix.texi:32479 +#: guix-git/doc/guix.texi:32844 msgid "A flag which can be used to disable the global setting @code{enable-log-filecount?}." msgstr "Esta opción se puede usar para forzar el valor de la opción de configuración global @code{enable-log-filecount?}." #. type: deftypevr -#: guix-git/doc/guix.texi:32484 +#: guix-git/doc/guix.texi:32849 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-log-linecount?" msgstr "{parámetro de @code{repository-cgit-configuration}} maybe-repo-boolean enable-log-linecount?" #. type: deftypevr -#: guix-git/doc/guix.texi:32487 +#: guix-git/doc/guix.texi:32852 msgid "A flag which can be used to disable the global setting @code{enable-log-linecount?}." msgstr "Esta opción se puede usar para forzar el valor de la opción de configuración global @code{enable-log-linecount?}." #. type: deftypevr -#: guix-git/doc/guix.texi:32492 +#: guix-git/doc/guix.texi:32857 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-remote-branches?" msgstr "{parámetro de @code{repository-cgit-configuration}} maybe-repo-boolean enable-remote-branches?" #. type: deftypevr -#: guix-git/doc/guix.texi:32500 +#: guix-git/doc/guix.texi:32865 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-subject-links?" msgstr "{parámetro de @code{repository-cgit-configuration}} maybe-repo-boolean enable-subject-links?" #. type: deftypevr -#: guix-git/doc/guix.texi:32503 +#: guix-git/doc/guix.texi:32868 msgid "A flag which can be used to override the global setting @code{enable-subject-links?}." msgstr "Esta opción se puede usar para forzar el valor de la opción de configuración global @code{enable-subject-links?}." #. type: deftypevr -#: guix-git/doc/guix.texi:32508 +#: guix-git/doc/guix.texi:32873 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-html-serving?" msgstr "{parámetro de @code{repository-cgit-configuration}} maybe-repo-boolean enable-html-serving?" #. type: deftypevr -#: guix-git/doc/guix.texi:32511 +#: guix-git/doc/guix.texi:32876 msgid "A flag which can be used to override the global setting @code{enable-html-serving?}." msgstr "Esta opción se puede usar para forzar el valor de la opción de configuración global @code{enable-html-serving?}." #. type: deftypevr -#: guix-git/doc/guix.texi:32516 +#: guix-git/doc/guix.texi:32881 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-boolean hide?" msgstr "{parámetro de @code{repository-cgit-configuration}} repo-boolean hide?" #. type: deftypevr -#: guix-git/doc/guix.texi:32519 +#: guix-git/doc/guix.texi:32884 msgid "Flag which, when set to @code{#t}, hides the repository from the repository index." msgstr "Opción que, cuando tiene valor @samp{#t}, oculta el repositorio en el índice." #. type: deftypevr -#: guix-git/doc/guix.texi:32524 +#: guix-git/doc/guix.texi:32889 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-boolean ignore?" msgstr "{parámetro de @code{repository-cgit-configuration}} repo-boolean ignore?" #. type: deftypevr -#: guix-git/doc/guix.texi:32526 +#: guix-git/doc/guix.texi:32891 msgid "Flag which, when set to @samp{#t}, ignores the repository." msgstr "Opción que, cuando tiene valor @samp{#t}, ignora el repositorio." #. type: deftypevr -#: guix-git/doc/guix.texi:32531 +#: guix-git/doc/guix.texi:32896 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object logo" msgstr "{parámetro de @code{repository-cgit-configuration}} repo-file-object logo" #. type: deftypevr -#: guix-git/doc/guix.texi:32534 +#: guix-git/doc/guix.texi:32899 msgid "URL which specifies the source of an image which will be used as a logo on this repo’s pages." msgstr "URL que especifica la fuente de una imagen que se usará como logo en las páginas de este repositorio." #. type: deftypevr -#: guix-git/doc/guix.texi:32539 +#: guix-git/doc/guix.texi:32904 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string logo-link" msgstr "{parámetro de @code{repository-cgit-configuration}} repo-string logo-link" #. type: deftypevr -#: guix-git/doc/guix.texi:32546 +#: guix-git/doc/guix.texi:32911 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object owner-filter" msgstr "{parámetro de @code{repository-cgit-configuration}} repo-file-object owner-filter" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32548 +#: guix-git/doc/guix.texi:32913 msgid "Override the default @code{owner-filter}." msgstr "Sustituye al valor predeterminado de @code{owner-filter}." #. type: deftypevr -#: guix-git/doc/guix.texi:32553 +#: guix-git/doc/guix.texi:32918 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string module-link" msgstr "{parámetro de @code{repository-cgit-configuration}} repo-string module-link" #. type: deftypevr -#: guix-git/doc/guix.texi:32557 +#: guix-git/doc/guix.texi:32922 msgid "Text which will be used as the formatstring for a hyperlink when a submodule is printed in a directory listing. The arguments for the formatstring are the path and SHA1 of the submodule commit." msgstr "Texto que se usará como la cadena de formato de un enlace cuando un submódulo se imprima en el listado de un directorio. Los parámetros para la cadena de formato son la ruta y el SHA1 de la revisión del submódulo." #. type: deftypevr -#: guix-git/doc/guix.texi:32562 +#: guix-git/doc/guix.texi:32927 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} module-link-path module-link-path" msgstr "{parámetro de @code{repository-cgit-configuration}} ruta-enlace-módulo module-link" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32566 +#: guix-git/doc/guix.texi:32931 msgid "Text which will be used as the formatstring for a hyperlink when a submodule with the specified subdirectory path is printed in a directory listing." msgstr "Texto que se usará como la cadena de formato de un enlace cuando un submódulo con la ruta de subdirectorio especificada se imprima en el listado de un directorio." #. type: deftypevr -#: guix-git/doc/guix.texi:32571 +#: guix-git/doc/guix.texi:32936 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string max-stats" msgstr "{parámetro de @code{repository-cgit-configuration}} repo-string max-stats" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32573 +#: guix-git/doc/guix.texi:32938 msgid "Override the default maximum statistics period." msgstr "Sustituye al máximo periodo estadístico predeterminado." #. type: deftypevr -#: guix-git/doc/guix.texi:32578 +#: guix-git/doc/guix.texi:32943 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string name" msgstr "{parámetro de @code{repository-cgit-configuration}} repo-string name" #. type: deftypevr -#: guix-git/doc/guix.texi:32580 +#: guix-git/doc/guix.texi:32945 msgid "The value to show as repository name." msgstr "El valor a mostrar como nombre del repositorio." #. type: deftypevr -#: guix-git/doc/guix.texi:32585 +#: guix-git/doc/guix.texi:32950 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string owner" msgstr "{parámetro de @code{repository-cgit-configuration}} repo-string owner" #. type: deftypevr -#: guix-git/doc/guix.texi:32587 +#: guix-git/doc/guix.texi:32952 msgid "A value used to identify the owner of the repository." msgstr "Un valor usado para identificar a la propietaria del repositorio." #. type: deftypevr -#: guix-git/doc/guix.texi:32592 +#: guix-git/doc/guix.texi:32957 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string path" msgstr "{parámetro de @code{repository-cgit-configuration}} repo-string path" #. type: deftypevr -#: guix-git/doc/guix.texi:32594 +#: guix-git/doc/guix.texi:32959 msgid "An absolute path to the repository directory." msgstr "La ruta absoluta al directorio del repositorio." #. type: deftypevr -#: guix-git/doc/guix.texi:32599 +#: guix-git/doc/guix.texi:32964 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string readme" msgstr "{parámetro de @code{repository-cgit-configuration}} repo-string readme" # FUZZY #. type: deftypevr -#: guix-git/doc/guix.texi:32602 +#: guix-git/doc/guix.texi:32967 msgid "A path (relative to repo) which specifies a file to include verbatim as the ``About'' page for this repo." msgstr "Una ruta (relativa al repositorio) que especifica un archivo que será incluido literalmente como página de información (``About'') de este repositorio." #. type: deftypevr -#: guix-git/doc/guix.texi:32607 +#: guix-git/doc/guix.texi:32972 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string section" msgstr "{parámetro de @code{repository-cgit-configuration}} repo-string section" #. type: deftypevr -#: guix-git/doc/guix.texi:32615 +#: guix-git/doc/guix.texi:32980 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list extra-options" msgstr "{parámetro de @code{repository-cgit-configuration}} repo-list extra-options" #. type: deftypevr -#: guix-git/doc/guix.texi:32617 guix-git/doc/guix.texi:32626 +#: guix-git/doc/guix.texi:32982 guix-git/doc/guix.texi:32991 msgid "Extra options will be appended to cgitrc file." msgstr "Opciones adicionales a agregar al final del archivo cgitrc." #. type: deftypevr -#: guix-git/doc/guix.texi:32624 +#: guix-git/doc/guix.texi:32989 #, no-wrap msgid "{@code{cgit-configuration} parameter} list extra-options" msgstr "{parámetro de @code{cgit-configuration}} lista extra-options" #. type: Plain text -#: guix-git/doc/guix.texi:32638 +#: guix-git/doc/guix.texi:33003 msgid "However, it could be that you just want to get a @code{cgitrc} up and running. In that case, you can pass an @code{opaque-cgit-configuration} as a record to @code{cgit-service-type}. As its name indicates, an opaque configuration does not have easy reflective capabilities." msgstr "No obstante, puede ser que únicamente desee usar un archivo @code{cgitrc} existente. En ese caso, puede proporcionar @code{opaque-cgit-configuration} como un registro a @code{cgit-service-type}. Como su nombre en inglés indica, una configuración opaca no tiene gran capacidad reflexiva." #. type: Plain text -#: guix-git/doc/guix.texi:32640 +#: guix-git/doc/guix.texi:33005 msgid "Available @code{opaque-cgit-configuration} fields are:" msgstr "Los campos disponibles de @code{opaque-cgit-configuration} son:" #. type: deftypevr -#: guix-git/doc/guix.texi:32641 +#: guix-git/doc/guix.texi:33006 #, no-wrap msgid "{@code{opaque-cgit-configuration} parameter} package cgit" msgstr "{parámetro de @code{opaque-cgit-configuration}} package cgit" #. type: deftypevr -#: guix-git/doc/guix.texi:32643 +#: guix-git/doc/guix.texi:33008 msgid "The cgit package." msgstr "El paquete cgit." #. type: deftypevr -#: guix-git/doc/guix.texi:32645 +#: guix-git/doc/guix.texi:33010 #, no-wrap msgid "{@code{opaque-cgit-configuration} parameter} string string" msgstr "{parámetro de @code{opaque-cgit-configuration}} string string" #. type: deftypevr -#: guix-git/doc/guix.texi:32647 +#: guix-git/doc/guix.texi:33012 msgid "The contents of the @code{cgitrc}, as a string." msgstr "El contenido de @code{cgitrc}, como una cadena." #. type: Plain text -#: guix-git/doc/guix.texi:32651 +#: guix-git/doc/guix.texi:33016 msgid "For example, if your @code{cgitrc} is just the empty string, you could instantiate a cgit service like this:" msgstr "Por ejemplo, si su @code{cgitrc} es simplemente la cadena vacía, puede instanciar un servicio cgit de esta manera:" #. type: lisp -#: guix-git/doc/guix.texi:32656 +#: guix-git/doc/guix.texi:33021 #, no-wrap msgid "" "(service cgit-service-type\n" @@ -63159,40 +63951,40 @@ msgstr "" " (cgitrc \"\")))\n" #. type: subsubheading -#: guix-git/doc/guix.texi:32658 +#: guix-git/doc/guix.texi:33023 #, no-wrap msgid "Gitolite Service" msgstr "Servicio Gitolite" #. type: cindex -#: guix-git/doc/guix.texi:32660 +#: guix-git/doc/guix.texi:33025 #, no-wrap msgid "Gitolite service" msgstr "servicio Gitolite" #. type: cindex -#: guix-git/doc/guix.texi:32661 +#: guix-git/doc/guix.texi:33026 #, no-wrap msgid "Git, hosting" msgstr "Git, alojamiento" #. type: Plain text -#: guix-git/doc/guix.texi:32664 +#: guix-git/doc/guix.texi:33029 msgid "@uref{https://gitolite.com/gitolite/, Gitolite} is a tool for hosting Git repositories on a central server." msgstr "@uref{https://gitolite.com/gitolite/, Gitolite} es una herramienta para el almacenamiento de repositorios Git en un servidor central." #. type: Plain text -#: guix-git/doc/guix.texi:32667 +#: guix-git/doc/guix.texi:33032 msgid "Gitolite can handle multiple repositories and users, and supports flexible configuration of the permissions for the users on the repositories." msgstr "Gitolite puede manejar múltiples repositorios y usuarias, y permite una configuración flexible de los permisos de las usuarias sobre los repositorios." #. type: Plain text -#: guix-git/doc/guix.texi:32670 +#: guix-git/doc/guix.texi:33035 msgid "The following example will configure Gitolite using the default @code{git} user, and the provided SSH public key." msgstr "El siguiente ejemplo configuraría Gitolite con la usuaria predeterminada @code{git} y la clave pública SSH proporcionada." #. type: lisp -#: guix-git/doc/guix.texi:32677 +#: guix-git/doc/guix.texi:33042 #, no-wrap msgid "" "(service gitolite-service-type\n" @@ -63208,233 +64000,233 @@ msgstr "" " \"ssh-rsa AAAA... guix@@example.com\"))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:32682 +#: guix-git/doc/guix.texi:33047 msgid "Gitolite is configured through a special admin repository which you can clone, for example, if you setup Gitolite on @code{example.com}, you would run the following command to clone the admin repository." msgstr "Gitolite se configura a través de un repositorio de administración especial que puede clonar, por ejemplo, si configuró Gitolite en @code{example.org}, ejecutaría la siguiente orden para clonar el repositorio de administración." #. type: example -#: guix-git/doc/guix.texi:32685 +#: guix-git/doc/guix.texi:33050 #, no-wrap msgid "git clone git@@example.com:gitolite-admin\n" msgstr "git clone git@@example.com:gitolite-admin\n" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:32691 +#: guix-git/doc/guix.texi:33056 msgid "When the Gitolite service is activated, the provided @code{admin-pubkey} will be inserted in to the @file{keydir} directory in the gitolite-admin repository. If this results in a change in the repository, it will be committed using the message ``gitolite setup by GNU Guix''." msgstr "Cuando se activa el servicio Gitolite, la clave @code{admin-pubkey} proporcionada se insertará en el directorio @file{keydir} en el repositorio gitolite-admin. Si esto resultase en un cambio en el repositorio, la revisión se almacenaría con el mensaje ``gitolite setup by GNU Guix''." #. type: deftp -#: guix-git/doc/guix.texi:32692 +#: guix-git/doc/guix.texi:33057 #, no-wrap msgid "{Data Type} gitolite-configuration" msgstr "{Tipo de datos} gitolite-configuration" #. type: deftp -#: guix-git/doc/guix.texi:32694 +#: guix-git/doc/guix.texi:33059 msgid "Data type representing the configuration for @code{gitolite-service-type}." msgstr "Tipo de datos que representa la configuración de @code{gitolite-service-type}." #. type: item -#: guix-git/doc/guix.texi:32696 +#: guix-git/doc/guix.texi:33061 #, no-wrap msgid "@code{package} (default: @var{gitolite})" msgstr "@code{package} (predeterminado: @var{gitolite})" #. type: table -#: guix-git/doc/guix.texi:32698 +#: guix-git/doc/guix.texi:33063 msgid "Gitolite package to use." msgstr "Paquete Gitolite usado." #. type: item -#: guix-git/doc/guix.texi:32699 +#: guix-git/doc/guix.texi:33064 #, no-wrap msgid "@code{user} (default: @var{git})" msgstr "@code{user} (predeterminada: @var{git})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:32702 +#: guix-git/doc/guix.texi:33067 msgid "User to use for Gitolite. This will be user that you use when accessing Gitolite over SSH." msgstr "Usuaria usada por Gitolite. Esta será la usuaria a la que se conectará cuando acceda a Gitolite a través de SSH." #. type: item -#: guix-git/doc/guix.texi:32703 +#: guix-git/doc/guix.texi:33068 #, no-wrap msgid "@code{group} (default: @var{git})" msgstr "@code{group} (predeterminado: @var{git})" #. type: table -#: guix-git/doc/guix.texi:32705 +#: guix-git/doc/guix.texi:33070 msgid "Group to use for Gitolite." msgstr "Grupo usado por Gitolite." #. type: item -#: guix-git/doc/guix.texi:32706 +#: guix-git/doc/guix.texi:33071 #, no-wrap msgid "@code{home-directory} (default: @var{\"/var/lib/gitolite\"})" msgstr "@code{home-directory} (predeterminado: @var{\"/var/lib/gitolite\"})" #. type: table -#: guix-git/doc/guix.texi:32708 +#: guix-git/doc/guix.texi:33073 msgid "Directory in which to store the Gitolite configuration and repositories." msgstr "Directorio en el que se almacenará la configuración y repositorios de Gitolite." #. type: item -#: guix-git/doc/guix.texi:32709 +#: guix-git/doc/guix.texi:33074 #, no-wrap msgid "@code{rc-file} (default: @var{(gitolite-rc-file)})" msgstr "@code{rc-file} (predeterminado: @var{(gitolite-rc-file)})" #. type: table -#: guix-git/doc/guix.texi:32712 +#: guix-git/doc/guix.texi:33077 msgid "A ``file-like'' object (@pxref{G-Expressions, file-like objects}), representing the configuration for Gitolite." msgstr "Un objeto ``tipo-archivo'' (@pxref{G-Expressions, objetos ``tipo-archivo''}), que representa la configuración de Gitolite." #. type: item -#: guix-git/doc/guix.texi:32713 +#: guix-git/doc/guix.texi:33078 #, no-wrap msgid "@code{admin-pubkey} (default: @var{#f})" msgstr "@code{admin-pubkey} (predeterminada: @var{#f})" #. type: table -#: guix-git/doc/guix.texi:32717 +#: guix-git/doc/guix.texi:33082 msgid "A ``file-like'' object (@pxref{G-Expressions, file-like objects}) used to setup Gitolite. This will be inserted in to the @file{keydir} directory within the gitolite-admin repository." msgstr "Un objeto ``tipo-archivo'' (@pxref{G-Expressions, objetos ``tipo-archivo''}) usado para la configuración de Gitolite. Se insertará en el directorio @file{keydir} dentro del repositorio gitolite-admin." #. type: table -#: guix-git/doc/guix.texi:32719 +#: guix-git/doc/guix.texi:33084 msgid "To specify the SSH key as a string, use the @code{plain-file} function." msgstr "Para especificar la clave SSH como una cadena, use la función @code{plain-file}." #. type: lisp -#: guix-git/doc/guix.texi:32722 +#: guix-git/doc/guix.texi:33087 #, no-wrap msgid "(plain-file \"yourname.pub\" \"ssh-rsa AAAA... guix@@example.com\")\n" msgstr "(plain-file \"sunombre.pub\" \"ssh-rsa AAAA... guix@@example.com\")\n" #. type: deftp -#: guix-git/doc/guix.texi:32727 +#: guix-git/doc/guix.texi:33092 #, no-wrap msgid "{Data Type} gitolite-rc-file" msgstr "{Tipo de datos} gitolite-rc-file" #. type: deftp -#: guix-git/doc/guix.texi:32729 +#: guix-git/doc/guix.texi:33094 msgid "Data type representing the Gitolite RC file." msgstr "Tipo de datos que representa el archivo RC de Gitolite." #. type: item -#: guix-git/doc/guix.texi:32731 +#: guix-git/doc/guix.texi:33096 #, no-wrap msgid "@code{umask} (default: @code{#o0077})" msgstr "@code{umask} (predeterminada: @code{#o0077})" #. type: table -#: guix-git/doc/guix.texi:32734 +#: guix-git/doc/guix.texi:33099 msgid "This controls the permissions Gitolite sets on the repositories and their contents." msgstr "Controla los permisos que Gitolite establece en los repositorios y sus contenidos." # FUZZY #. type: table -#: guix-git/doc/guix.texi:32738 +#: guix-git/doc/guix.texi:33103 #, fuzzy msgid "A value like @code{#o0027} will give read access to the group used by Gitolite (by default: @code{git}). This is necessary when using Gitolite with software like cgit or gitweb." msgstr "Un valor como @code{#o0027} proporcionará acceso de lectura al grupo usado por Gitolite (predeterminado: @code{git}). Es necesario cuando se usa Gitolite con software como cgit o gitweb." #. type: item -#: guix-git/doc/guix.texi:32739 +#: guix-git/doc/guix.texi:33104 #, fuzzy, no-wrap #| msgid "@code{user-path} (default: @code{#f})" msgid "@code{unsafe-pattern} (default: @code{#f})" msgstr "@code{user-path} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:32744 +#: guix-git/doc/guix.texi:33109 msgid "An optional Perl regular expression for catching unsafe configurations in the configuration file. See @uref{https://gitolite.com/gitolite/git-config.html#compensating-for-unsafe_patt, Gitolite's documentation} for more information." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32751 +#: guix-git/doc/guix.texi:33116 msgid "When the value is not @code{#f}, it should be a string containing a Perl regular expression, such as @samp{\"[`~#\\$\\&()|;<>]\"}, which is the default value used by gitolite. It rejects any special character in configuration that might be interpreted by a shell, which is useful when sharing the administration burden with other people that do not otherwise have shell access on the server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32752 +#: guix-git/doc/guix.texi:33117 #, no-wrap msgid "@code{git-config-keys} (default: @code{\"\"})" msgstr "@code{git-config-keys} (predeterminadas: @code{\"\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:32755 +#: guix-git/doc/guix.texi:33120 #, fuzzy msgid "Gitolite allows you to set git config values using the @samp{config} keyword. This setting allows control over the config keys to accept." msgstr "Gitolite le permite establecer valores de git config mediante el uso de la palabra clave @samp{config}. Esta configuración le permite controlar las claves de configuración aceptadas." #. type: item -#: guix-git/doc/guix.texi:32756 +#: guix-git/doc/guix.texi:33121 #, no-wrap msgid "@code{roles} (default: @code{'((\"READERS\" . 1) (\"WRITERS\" . ))})" msgstr "@code{roles} (predeterminados: @code{'((\"READERS\" . 1) (\"WRITERS\" . ))})" #. type: table -#: guix-git/doc/guix.texi:32758 +#: guix-git/doc/guix.texi:33123 msgid "Set the role names allowed to be used by users running the perms command." msgstr "Establece los nombres de rol que se permite usar a las usuarias que ejecuten la orden perms." #. type: item -#: guix-git/doc/guix.texi:32759 +#: guix-git/doc/guix.texi:33124 #, no-wrap msgid "@code{enable} (default: @code{'(\"help\" \"desc\" \"info\" \"perms\" \"writable\" \"ssh-authkeys\" \"git-config\" \"daemon\" \"gitweb\")})" msgstr "@code{enable} (predeterminados: @code{'(\"help\" \"desc\" \"info\" \"perms\" \"writable\" \"ssh-authkeys\" \"git-config\" \"daemon\" \"gitweb\")})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:32761 +#: guix-git/doc/guix.texi:33126 msgid "This setting controls the commands and features to enable within Gitolite." msgstr "Esta configuración controla las órdenes y características activadas dentro de Gitolite." #. type: subsubheading -#: guix-git/doc/guix.texi:32766 +#: guix-git/doc/guix.texi:33131 #, fuzzy, no-wrap #| msgid "Gitolite Service" msgid "Gitile Service" msgstr "Servicio Gitolite" #. type: cindex -#: guix-git/doc/guix.texi:32768 +#: guix-git/doc/guix.texi:33133 #, fuzzy, no-wrap #| msgid "Gitolite service" msgid "Gitile service" msgstr "servicio Gitolite" #. type: cindex -#: guix-git/doc/guix.texi:32769 +#: guix-git/doc/guix.texi:33134 #, fuzzy, no-wrap #| msgid "Git, hosting" msgid "Git, forge" msgstr "Git, alojamiento" #. type: Plain text -#: guix-git/doc/guix.texi:32772 +#: guix-git/doc/guix.texi:33137 #, fuzzy #| msgid "@uref{https://gitolite.com/gitolite/, Gitolite} is a tool for hosting Git repositories on a central server." msgid "@uref{https://git.lepiller.eu/gitile, Gitile} is a Git forge for viewing public git repository contents from a web browser." msgstr "@uref{https://gitolite.com/gitolite/, Gitolite} es una herramienta para el almacenamiento de repositorios Git en un servidor central." #. type: Plain text -#: guix-git/doc/guix.texi:32778 +#: guix-git/doc/guix.texi:33143 msgid "Gitile works best in collaboration with Gitolite, and will serve the public repositories from Gitolite by default. The service should listen only on a local port, and a webserver should be configured to serve static resources. The gitile service provides an easy way to extend the Nginx service for that purpose (@pxref{NGINX})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32782 +#: guix-git/doc/guix.texi:33147 msgid "The following example will configure Gitile to serve repositories from a custom location, with some default messages for the home page and the footers." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32805 +#: guix-git/doc/guix.texi:33170 #, fuzzy, no-wrap #| msgid "" #| "(service nginx-service-type\n" @@ -63492,12 +64284,12 @@ msgstr "" " (git-http-configuration (uri-path \"/\"))))))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:32814 +#: guix-git/doc/guix.texi:33179 msgid "In addition to the configuration record, you should configure your git repositories to contain some optional information. First, your public repositories need to contain the @file{git-daemon-export-ok} magic file that allows Git to export the repository. Gitile uses the presence of this file to detect public repositories it should make accessible. To do so with Gitolite for instance, modify your @file{conf/gitolite.conf} to include this in the repositories you want to make public:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:32818 +#: guix-git/doc/guix.texi:33183 #, no-wrap msgid "" "repo foo\n" @@ -63505,12 +64297,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32824 +#: guix-git/doc/guix.texi:33189 msgid "In addition, Gitile can read the repository configuration to display more information on the repository. Gitile uses the gitweb namespace for its configuration. As an example, you can use the following in your @file{conf/gitolite.conf}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:32831 +#: guix-git/doc/guix.texi:33196 #, no-wrap msgid "" "repo foo\n" @@ -63521,12 +64313,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32837 +#: guix-git/doc/guix.texi:33202 msgid "Do not forget to commit and push these changes once you are satisfied. You may need to change your gitolite configuration to allow the previous configuration options to be set. One way to do that is to add the following service definition:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32849 +#: guix-git/doc/guix.texi:33214 #, no-wrap msgid "" "(service gitolite-service-type\n" @@ -63542,268 +64334,268 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32851 +#: guix-git/doc/guix.texi:33216 #, fuzzy, no-wrap #| msgid "{Data Type} gitolite-configuration" msgid "{Data Type} gitile-configuration" msgstr "{Tipo de datos} gitolite-configuration" #. type: deftp -#: guix-git/doc/guix.texi:32853 +#: guix-git/doc/guix.texi:33218 #, fuzzy #| msgid "Data type representing the configuration for @code{gitolite-service-type}." msgid "Data type representing the configuration for @code{gitile-service-type}." msgstr "Tipo de datos que representa la configuración de @code{gitolite-service-type}." #. type: item -#: guix-git/doc/guix.texi:32855 +#: guix-git/doc/guix.texi:33220 #, fuzzy, no-wrap #| msgid "@code{package} (default: @var{git})" msgid "@code{package} (default: @var{gitile})" msgstr "@code{package} (predeterminado: @var{git})" #. type: table -#: guix-git/doc/guix.texi:32857 +#: guix-git/doc/guix.texi:33222 #, fuzzy #| msgid "Gitolite package to use." msgid "Gitile package to use." msgstr "Paquete Gitolite usado." #. type: table -#: guix-git/doc/guix.texi:32860 +#: guix-git/doc/guix.texi:33225 #, fuzzy #| msgid "The port on which to listen." msgid "The host on which gitile is listening." msgstr "El puerto en el que esperarán conexiones." #. type: item -#: guix-git/doc/guix.texi:32861 +#: guix-git/doc/guix.texi:33226 #, fuzzy, no-wrap #| msgid "@code{port} (default: @code{8081})" msgid "@code{port} (default: @code{8080})" msgstr "@code{port} (predeterminado: @code{8081})" #. type: table -#: guix-git/doc/guix.texi:32863 +#: guix-git/doc/guix.texi:33228 #, fuzzy #| msgid "The port on which to listen." msgid "The port on which gitile is listening." msgstr "El puerto en el que esperarán conexiones." #. type: item -#: guix-git/doc/guix.texi:32864 +#: guix-git/doc/guix.texi:33229 #, fuzzy, no-wrap #| msgid "@code{database-file} (default: @code{\"/var/lib/murmur/db.sqlite\"})" msgid "@code{database} (default: @code{\"/var/lib/gitile/gitile-db.sql\"})" msgstr "@code{database-file} (predeterminado: @code{\"/var/lib/murmur/db.sqlite\"})" #. type: table -#: guix-git/doc/guix.texi:32866 +#: guix-git/doc/guix.texi:33231 #, fuzzy #| msgid "The location of the music database." msgid "The location of the database." msgstr "La localización de la base de datos de música." #. type: item -#: guix-git/doc/guix.texi:32867 +#: guix-git/doc/guix.texi:33232 #, fuzzy, no-wrap msgid "@code{repositories} (default: @code{\"/var/lib/gitolite/repositories\"})" msgstr "@code{log-directory} (predeterminado: @code{\"/var/log/nginx\"})" #. type: table -#: guix-git/doc/guix.texi:32871 +#: guix-git/doc/guix.texi:33236 msgid "The location of the repositories. Note that only public repositories will be shown by Gitile. To make a repository public, add an empty @file{git-daemon-export-ok} file at the root of that repository." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:32872 +#: guix-git/doc/guix.texi:33237 #, fuzzy, no-wrap #| msgid "github-url" msgid "base-git-url" msgstr "github-url" #. type: table -#: guix-git/doc/guix.texi:32874 +#: guix-git/doc/guix.texi:33239 #, fuzzy #| msgid "Name of the database, will be used in DICT commands." msgid "The base git url that will be used to show clone commands." msgstr "Nombre de la base de datos, será usada en las órdenes DICT." #. type: item -#: guix-git/doc/guix.texi:32875 +#: guix-git/doc/guix.texi:33240 #, fuzzy, no-wrap #| msgid "@code{ttl} (default: @code{\"\"})" msgid "@code{index-title} (default: @code{\"Index\"})" msgstr "@code{ttl} (predeterminado: @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:32877 +#: guix-git/doc/guix.texi:33242 msgid "The page title for the index page that lists all the available repositories." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32878 +#: guix-git/doc/guix.texi:33243 #, fuzzy, no-wrap #| msgid "@code{inputs} (default: @code{'()})" msgid "@code{intro} (default: @code{'()})" msgstr "@code{inputs} (predeterminadas: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:32881 +#: guix-git/doc/guix.texi:33246 msgid "The intro content, as a list of sxml expressions. This is shown above the list of repositories, on the index page." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32882 +#: guix-git/doc/guix.texi:33247 #, fuzzy, no-wrap #| msgid "@code{master} (default: @code{'()})" msgid "@code{footer} (default: @code{'()})" msgstr "@code{master} (predeterminado: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:32885 +#: guix-git/doc/guix.texi:33250 msgid "The footer content, as a list of sxml expressions. This is shown on every page served by Gitile." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:32886 +#: guix-git/doc/guix.texi:33251 #, fuzzy, no-wrap #| msgid "admin-server" msgid "nginx-server-block" msgstr "admin-server" #. type: table -#: guix-git/doc/guix.texi:32889 +#: guix-git/doc/guix.texi:33254 msgid "An nginx server block that will be extended and used as a reverse proxy by Gitile to serve its pages, and as a normal web server to serve its assets." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32893 +#: guix-git/doc/guix.texi:33258 msgid "You can use this block to add more custom URLs to your domain, such as a @code{/git/} URL for anonymous clones, or serving any other files you would like to serve." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:32900 +#: guix-git/doc/guix.texi:33265 #, no-wrap msgid "The Battle for Wesnoth Service" msgstr "El servicio de La batalla por Wesnoth" #. type: cindex -#: guix-git/doc/guix.texi:32901 +#: guix-git/doc/guix.texi:33266 #, no-wrap msgid "wesnothd" msgstr "wesnothd" #. type: Plain text -#: guix-git/doc/guix.texi:32905 +#: guix-git/doc/guix.texi:33270 msgid "@uref{https://wesnoth.org, The Battle for Wesnoth} is a fantasy, turn based tactical strategy game, with several single player campaigns, and multiplayer games (both networked and local)." msgstr "@uref{https://wesnoth.org, La batalla por Wesnoth} es un juego de estrategia táctica, de fantasía y basado en turnos, con varias campañas de una jugadora, y partidas para múltiples jugadoras (tanto en red como localmente)." #. type: defvar -#: guix-git/doc/guix.texi:32906 +#: guix-git/doc/guix.texi:33271 #, no-wrap msgid "{Scheme Variable} wesnothd-service-type" msgstr "{Variable Scheme} wesnothd-service-type" #. type: defvar -#: guix-git/doc/guix.texi:32910 +#: guix-git/doc/guix.texi:33275 msgid "Service type for the wesnothd service. Its value must be a @code{wesnothd-configuration} object. To run wesnothd in the default configuration, instantiate it as:" msgstr "Tipo de servicio para el servicio wesnothd. Su valor debe ser un objeto @code{wesnothd-configuration}. Puede instanciarlo de esta manera para ejecutar wesnothd con la configuración predeterminada:" #. type: lisp -#: guix-git/doc/guix.texi:32913 +#: guix-git/doc/guix.texi:33278 #, no-wrap msgid "(service wesnothd-service-type)\n" msgstr "(service wesnothd-service-type)\n" #. type: deftp -#: guix-git/doc/guix.texi:32916 +#: guix-git/doc/guix.texi:33281 #, no-wrap msgid "{Data Type} wesnothd-configuration" msgstr "{Tipo de datos} wesnothd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:32918 +#: guix-git/doc/guix.texi:33283 msgid "Data type representing the configuration of @command{wesnothd}." msgstr "Tipo de datos que representa la configuración de @command{wesnothd}." #. type: item -#: guix-git/doc/guix.texi:32920 +#: guix-git/doc/guix.texi:33285 #, no-wrap msgid "@code{package} (default: @code{wesnoth-server})" msgstr "@code{package} (predeterminado: @code{wesnoth-server})" #. type: table -#: guix-git/doc/guix.texi:32922 +#: guix-git/doc/guix.texi:33287 msgid "The wesnoth server package to use." msgstr "El paquete del servidor wesnoth usado." #. type: item -#: guix-git/doc/guix.texi:32923 +#: guix-git/doc/guix.texi:33288 #, no-wrap msgid "@code{port} (default: @code{15000})" msgstr "@code{port} (predeterminado: @code{15000})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:32925 +#: guix-git/doc/guix.texi:33290 guix-git/doc/guix.texi:33681 msgid "The port to bind the server to." msgstr "Número de puerto usado por el servidor." #. type: cindex -#: guix-git/doc/guix.texi:32931 +#: guix-git/doc/guix.texi:33296 #, no-wrap msgid "pam-mount" msgstr "pam-mount" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:32936 +#: guix-git/doc/guix.texi:33301 msgid "The @code{(gnu services pam-mount)} module provides a service allowing users to mount volumes when they log in. It should be able to mount any volume format supported by the system." msgstr "El módulo @code{(gnu services pam-mount)} proporciona un servicio que permite a las usuarias montar volúmenes cuando ingresen al sistema. Debe ser capaz de montar cualquier formato de volumen que el sistema permita." #. type: defvar -#: guix-git/doc/guix.texi:32937 +#: guix-git/doc/guix.texi:33302 #, no-wrap msgid "{Scheme Variable} pam-mount-service-type" msgstr "{Variable Scheme} pam-mount-service-type" # FUZZY FUZZY FUZZY #. type: defvar -#: guix-git/doc/guix.texi:32939 +#: guix-git/doc/guix.texi:33304 msgid "Service type for PAM Mount support." msgstr "Tipo de servicio para la implementación de PAM Mount." #. type: deftp -#: guix-git/doc/guix.texi:32941 +#: guix-git/doc/guix.texi:33306 #, no-wrap msgid "{Data Type} pam-mount-configuration" msgstr "{Tipo de datos} pam-mount-configuration" #. type: deftp -#: guix-git/doc/guix.texi:32943 +#: guix-git/doc/guix.texi:33308 msgid "Data type representing the configuration of PAM Mount." msgstr "Tipo de datos que representa la configuración de PAM Mount." #. type: code{#1} -#: guix-git/doc/guix.texi:32947 +#: guix-git/doc/guix.texi:33312 #, no-wrap msgid "rules" msgstr "rules" #. type: table -#: guix-git/doc/guix.texi:32950 +#: guix-git/doc/guix.texi:33315 msgid "The configuration rules that will be used to generate @file{/etc/security/pam_mount.conf.xml}." msgstr "Las reglas de configuración que se usarán para generar @file{/etc/security/pam_mount.conf.xml}." # FUZZY #. type: table -#: guix-git/doc/guix.texi:32954 +#: guix-git/doc/guix.texi:33319 msgid "The configuration rules are SXML elements (@pxref{SXML,,, guile, GNU Guile Reference Manual}), and the default ones don't mount anything for anyone at login:" msgstr "Las reglas de configuración son elementos SXML (@pxref{SXML,,, guile, GNU Guile Reference Manual}), y las reglas predeterminadas no incluyen el montado de ningún dispositivo para ningún usuario en el ingreso al sistema:" #. type: lisp -#: guix-git/doc/guix.texi:32969 +#: guix-git/doc/guix.texi:33334 #, no-wrap msgid "" "`((debug (@@ (enable \"0\")))\n" @@ -63835,12 +64627,12 @@ msgstr "" " (remove \"true\"))))\n" #. type: table -#: guix-git/doc/guix.texi:32975 +#: guix-git/doc/guix.texi:33340 msgid "Some @code{volume} elements must be added to automatically mount volumes at login. Here's an example allowing the user @code{alice} to mount her encrypted @env{HOME} directory and allowing the user @code{bob} to mount the partition where he stores his data:" msgstr "Algunos elementos @code{volume} deben añadirse de manera automática para montar volúmenes en el ingreso. El siguiente ejemplo permite a la usuaria @code{alicia} montar su directorio @env{HOME} cifrado y permite al usuario @code{rober} montar la partición donde almacena sus datos:" #. type: lisp -#: guix-git/doc/guix.texi:33000 +#: guix-git/doc/guix.texi:33365 #, no-wrap msgid "" "(define pam-mount-rules\n" @@ -63894,7 +64686,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:33004 +#: guix-git/doc/guix.texi:33369 #, no-wrap msgid "" "(service pam-mount-service-type\n" @@ -63906,801 +64698,960 @@ msgstr "" " (rules reglas-pam-mount)))\n" #. type: table -#: guix-git/doc/guix.texi:33008 +#: guix-git/doc/guix.texi:33373 msgid "The complete list of possible options can be found in the man page for @uref{http://pam-mount.sourceforge.net/pam_mount.conf.5.html, pam_mount.conf}." msgstr "La lista completa de opciones posibles se puede encontrar en la página de @command{man} de @uref{http://pam-mount.sourceforge.net/pam_mount.conf.5.html, pam_mount.conf}." #. type: subsubheading -#: guix-git/doc/guix.texi:33015 +#: guix-git/doc/guix.texi:33380 #, no-wrap msgid "Guix Build Coordinator" msgstr "Coordinador de construcciones de Guix" # FUZZY FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:33021 +#: guix-git/doc/guix.texi:33386 msgid "The @uref{https://git.cbaines.net/guix/build-coordinator/,Guix Build Coordinator} aids in distributing derivation builds among machines running an @dfn{agent}. The build daemon is still used to build the derivations, but the Guix Build Coordinator manages allocating builds and working with the results." msgstr "El @uref{https://git.cbaines.net/guix/build-coordinator/,coordinador de construcciones de Guix} ayuda en la distribución de las construcciones de derivaciones entre máquinas que ejecuten un @dfn{agente}. El daemon de construcción se usa todavía para la construcción de las derivaciones, pero el coordinador de construcciones de Guix gestiona su lanzamiento y trabaja con los resultados." #. type: Plain text -#: guix-git/doc/guix.texi:33027 +#: guix-git/doc/guix.texi:33392 #, fuzzy msgid "The Guix Build Coordinator consists of one @dfn{coordinator}, and one or more connected @dfn{agent} processes. The coordinator process handles clients submitting builds, and allocating builds to agents. The agent processes talk to a build daemon to actually perform the builds, then send the results back to the coordinator." msgstr "El servicio de coordinación de construcciones de Guix consiste en un @dfn{proceso de coordinación}, y uno o más @dfn{procesos agente} conectados. El proceso de coordinación gestiona las peticiones de construcciones por parte de clientes, y reserva construcciones en los agentes. Los procesos agente hablan con el daemon de construcción para llevar a cabo las construcciones reales, cuyos resultados mandan de vuelta al proceso de coordinación." #. type: Plain text -#: guix-git/doc/guix.texi:33031 +#: guix-git/doc/guix.texi:33396 msgid "There is a script to run the coordinator component of the Guix Build Coordinator, but the Guix service uses a custom Guile script instead, to provide better integration with G-expressions used in the configuration." msgstr "Existe un guión para ejecutar el componente de coordinación del servicio de coordinación de construcciones de Guix, pero el servicio de Guix utiliza un guión Guile personalizado en vez de este, para mejorar la integración con las expresiones-G usadas en la configuración." #. type: defvar -#: guix-git/doc/guix.texi:33032 +#: guix-git/doc/guix.texi:33397 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-service-type" msgstr "{Variable Scheme} guix-build-coordinator-service-type" #. type: defvar -#: guix-git/doc/guix.texi:33035 +#: guix-git/doc/guix.texi:33400 msgid "Service type for the Guix Build Coordinator. Its value must be a @code{guix-build-coordinator-configuration} object." msgstr "Tipo de servicio para la coordinación de construcciones de Guix. Su valor debe ser un objeto @code{guix-build-coordinator-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:33037 +#: guix-git/doc/guix.texi:33402 #, no-wrap msgid "{Data Type} guix-build-coordinator-configuration" msgstr "{Tipo de datos} guix-build-coordinator-configuration" # FUZZY #. type: deftp -#: guix-git/doc/guix.texi:33039 +#: guix-git/doc/guix.texi:33404 msgid "Data type representing the configuration of the Guix Build Coordinator." msgstr "Tipo de datos que representa la configuración del servicio de coordinación de construcciones de Guix." #. type: item -#: guix-git/doc/guix.texi:33041 guix-git/doc/guix.texi:33211 +#: guix-git/doc/guix.texi:33406 guix-git/doc/guix.texi:33576 #, no-wrap msgid "@code{package} (default: @code{guix-build-coordinator})" msgstr "@code{package} (predeterminado: @code{guix-build-coordinator})" #. type: table -#: guix-git/doc/guix.texi:33043 guix-git/doc/guix.texi:33087 -#: guix-git/doc/guix.texi:33213 +#: guix-git/doc/guix.texi:33408 guix-git/doc/guix.texi:33452 +#: guix-git/doc/guix.texi:33578 msgid "The Guix Build Coordinator package to use." msgstr "El paquete del servicio de coordinación de construcciones de Guix usado." #. type: item -#: guix-git/doc/guix.texi:33044 +#: guix-git/doc/guix.texi:33409 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator\"})" msgstr "@code{user} (predeterminado: @code{\"guix-build-coordinator\"})" #. type: table -#: guix-git/doc/guix.texi:33046 guix-git/doc/guix.texi:33090 -#: guix-git/doc/guix.texi:33216 guix-git/doc/guix.texi:33262 +#: guix-git/doc/guix.texi:33411 guix-git/doc/guix.texi:33455 +#: guix-git/doc/guix.texi:33581 guix-git/doc/guix.texi:33627 +#: guix-git/doc/guix.texi:33675 msgid "The system user to run the service as." msgstr "Usuaria del sistema que ejecuta el servicio." #. type: item -#: guix-git/doc/guix.texi:33047 +#: guix-git/doc/guix.texi:33412 #, no-wrap msgid "@code{group} (default: @code{\"guix-build-coordinator\"})" msgstr "@code{group} (predeterminado: @code{\"guix-build-coordinator\"})" #. type: table -#: guix-git/doc/guix.texi:33049 guix-git/doc/guix.texi:33265 +#: guix-git/doc/guix.texi:33414 guix-git/doc/guix.texi:33630 +#: guix-git/doc/guix.texi:33678 msgid "The system group to run the service as." msgstr "Grupo del sistema que ejecuta el servicio." #. type: item -#: guix-git/doc/guix.texi:33050 +#: guix-git/doc/guix.texi:33415 #, no-wrap msgid "@code{database-uri-string} (default: @code{\"sqlite:///var/lib/guix-build-coordinator/guix_build_coordinator.db\"})" msgstr "@code{database-uri-string} (predeterminada: @code{\"sqlite:///var/lib/guix-build-coordinator/guix_build_coordinator.db\"})" #. type: table -#: guix-git/doc/guix.texi:33052 +#: guix-git/doc/guix.texi:33417 msgid "The URI to use for the database." msgstr "URI usada para la conexión a la base de datos." #. type: item -#: guix-git/doc/guix.texi:33053 +#: guix-git/doc/guix.texi:33418 #, no-wrap msgid "@code{agent-communication-uri} (default: @code{\"http://0.0.0.0:8745\"})" msgstr "@code{agent-communication-uri} (predeterminada: @code{\"http://0.0.0.0:8745\"})" #. type: table -#: guix-git/doc/guix.texi:33055 +#: guix-git/doc/guix.texi:33420 msgid "The URI describing how to listen to requests from agent processes." msgstr "La URI que describe cómo escuchar peticiones de los procesos agentes." #. type: item -#: guix-git/doc/guix.texi:33056 +#: guix-git/doc/guix.texi:33421 #, no-wrap msgid "@code{client-communication-uri} (default: @code{\"http://127.0.0.1:8746\"})" msgstr "@code{client-communication-uri} (predeterminada: @code{\"http://127.0.0.1:8746\"})" #. type: table -#: guix-git/doc/guix.texi:33060 +#: guix-git/doc/guix.texi:33425 msgid "The URI describing how to listen to requests from clients. The client API allows submitting builds and currently isn't authenticated, so take care when configuring this value." msgstr "La URI que describe cómo escuchar peticiones de los clientes. La interfaz para los clientes permite la emisión de construcciones y no implementa identificación actualmente, por lo que tenga cuidado cuando configure este valor." #. type: item -#: guix-git/doc/guix.texi:33061 +#: guix-git/doc/guix.texi:33426 #, no-wrap msgid "@code{allocation-strategy} (default: @code{#~basic-build-allocation-strategy})" msgstr "@code{allocation-strategy} (predeterminada: @code{#~basic-build-allocation-strategy})" # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:33065 +#: guix-git/doc/guix.texi:33430 msgid "A G-expression for the allocation strategy to be used. This is a procedure that takes the datastore as an argument and populates the allocation plan in the database." msgstr "Una expresión-G para la estrategia de reservas usada. Es un procedimiento que recibe la ruta del almacén como un parámetro y rellena la planificación de reservas en la base de datos." #. type: item -#: guix-git/doc/guix.texi:33066 +#: guix-git/doc/guix.texi:33431 #, no-wrap msgid "@code{hooks} (default: @var{'()})" msgstr "@code{hooks} (predeterminada: @var{'()})" #. type: table -#: guix-git/doc/guix.texi:33069 +#: guix-git/doc/guix.texi:33434 msgid "An association list of hooks. These provide a way to execute arbitrary code upon certain events, like a build result being processed." msgstr "Una lista asociativa de procedimientos de extensión@footnote{NdT: ``hook'' en inglés tiene el sentido del gancho donde se ``enganchan'' las extensiones.}. Proporcionan una forma de ejecutar código arbitrario tras ciertos eventos, como inicio del procesamiento del resultado de una construcción." #. type: item -#: guix-git/doc/guix.texi:33070 +#: guix-git/doc/guix.texi:33435 #, no-wrap msgid "@code{guile} (default: @code{guile-3.0-latest})" msgstr "@code{guile} (predeterminado: @code{guile-3.0-latest})" #. type: table -#: guix-git/doc/guix.texi:33072 +#: guix-git/doc/guix.texi:33437 msgid "The Guile package with which to run the Guix Build Coordinator." msgstr "El paquete Guile con el que se ejecuta la coordinación de construcciones de Guix." #. type: defvar -#: guix-git/doc/guix.texi:33076 +#: guix-git/doc/guix.texi:33441 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-agent-service-type" msgstr "{Variable Scheme} guix-build-coordinator-agent-service-type" #. type: defvar -#: guix-git/doc/guix.texi:33079 +#: guix-git/doc/guix.texi:33444 msgid "Service type for a Guix Build Coordinator agent. Its value must be a @code{guix-build-coordinator-agent-configuration} object." msgstr "Tipo de servicio para un agente del coordinador de construcciones de Guix. Su valor debe ser un objeto @code{guix-build-coordinator-agent-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:33081 +#: guix-git/doc/guix.texi:33446 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-configuration" msgstr "{Tipo de datos} guix-build-coordinator-agent-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33083 +#: guix-git/doc/guix.texi:33448 msgid "Data type representing the configuration a Guix Build Coordinator agent." msgstr "Tipo de datos que representa la configuración de un agente del coordinador de construcciones de Guix." #. type: item -#: guix-git/doc/guix.texi:33085 +#: guix-git/doc/guix.texi:33450 #, fuzzy, no-wrap #| msgid "@code{package} (default: @code{guix-build-coordinator})" msgid "@code{package} (default: @code{guix-build-coordinator/agent-only})" msgstr "@code{package} (predeterminado: @code{guix-build-coordinator})" #. type: item -#: guix-git/doc/guix.texi:33088 +#: guix-git/doc/guix.texi:33453 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator-agent\"})" msgstr "@code{user} (predeterminado: @code{\"guix-build-coordinator-agent\"})" #. type: item -#: guix-git/doc/guix.texi:33091 +#: guix-git/doc/guix.texi:33456 #, no-wrap msgid "@code{coordinator} (default: @code{\"http://localhost:8745\"})" msgstr "@code{coordinator} (predeterminado: @code{\"http://localhost:8745\"})" #. type: table -#: guix-git/doc/guix.texi:33093 guix-git/doc/guix.texi:33219 +#: guix-git/doc/guix.texi:33458 guix-git/doc/guix.texi:33584 msgid "The URI to use when connecting to the coordinator." msgstr "URI usada para la conexión al nodo coordinador." #. type: code{#1} -#: guix-git/doc/guix.texi:33094 +#: guix-git/doc/guix.texi:33459 #, fuzzy, no-wrap msgid "authentication" msgstr "channel-authentication" #. type: table -#: guix-git/doc/guix.texi:33097 +#: guix-git/doc/guix.texi:33462 msgid "Record describing how this agent should authenticate with the coordinator. Possible record types are described below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33098 guix-git/doc/guix.texi:33220 +#: guix-git/doc/guix.texi:33463 guix-git/doc/guix.texi:33585 #, no-wrap msgid "@code{systems} (default: @code{#f})" msgstr "@code{systems} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33101 +#: guix-git/doc/guix.texi:33466 msgid "The systems for which this agent should fetch builds. The agent process will use the current system it's running on as the default." msgstr "Los sistemas para los cuales este agente debe obtener construcciones. Los procesos agente usan el sistema sobre el que se ejecuten como valor predeterminado." #. type: item -#: guix-git/doc/guix.texi:33102 +#: guix-git/doc/guix.texi:33467 #, no-wrap msgid "@code{max-parallel-builds} (default: @code{1})" msgstr "@code{max-parallel-builds} (predeterminado: @code{1})" #. type: table -#: guix-git/doc/guix.texi:33104 +#: guix-git/doc/guix.texi:33469 msgid "The number of builds to perform in parallel." msgstr "El número de construcciones que se ejecutan en paralelo." #. type: item -#: guix-git/doc/guix.texi:33105 +#: guix-git/doc/guix.texi:33470 #, fuzzy, no-wrap #| msgid "@code{max-journal-usage} (default: @code{#f})" msgid "@code{max-1min-load-average} (default: @code{#f})" msgstr "@code{max-journal-usage} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33109 +#: guix-git/doc/guix.texi:33474 msgid "Load average value to look at when considering starting new builds, if the 1 minute load average exceeds this value, the agent will wait before starting new builds." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33113 +#: guix-git/doc/guix.texi:33478 msgid "This will be unspecified if the value is @code{#f}, and the agent will use the number of cores reported by the system as the max 1 minute load average." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33114 +#: guix-git/doc/guix.texi:33479 #, fuzzy, no-wrap msgid "@code{derivation-substitute-urls} (default: @code{#f})" msgstr "@code{derivation-substitute-urls} (predeterminado: @code{1})" #. type: table -#: guix-git/doc/guix.texi:33117 +#: guix-git/doc/guix.texi:33482 msgid "URLs from which to attempt to fetch substitutes for derivations, if the derivations aren't already available." msgstr "Identificadores URL a partir de los cuales se intentará obtener sustituciones para derivaciones, si las derivaciones no están ya disponibles." #. type: item -#: guix-git/doc/guix.texi:33118 +#: guix-git/doc/guix.texi:33483 #, fuzzy, no-wrap msgid "@code{non-derivation-substitute-urls} (default: @code{#f})" msgstr "@code{non-derivation-substitute-urls} (predeterminado: @code{1})" #. type: table -#: guix-git/doc/guix.texi:33121 +#: guix-git/doc/guix.texi:33486 msgid "URLs from which to attempt to fetch substitutes for build inputs, if the input store items aren't already available." msgstr "Identificadores URL a partir de los cuales se intentará obtener sustituciones para las entradas de las construcciones, si los elementos de entrada del almacén no están ya disponibles." #. type: deftp -#: guix-git/doc/guix.texi:33125 +#: guix-git/doc/guix.texi:33490 #, fuzzy, no-wrap msgid "{Data Type} guix-build-coordinator-agent-password-auth" msgstr "{Tipo de datos} guix-build-coordinator-agent-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33128 +#: guix-git/doc/guix.texi:33493 #, fuzzy msgid "Data type representing an agent authenticating with a coordinator via a UUID and password." msgstr "Tipo de datos que representa la configuración de un agente del coordinador de construcciones de Guix." # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:33134 guix-git/doc/guix.texi:33150 +#: guix-git/doc/guix.texi:33499 guix-git/doc/guix.texi:33515 msgid "The UUID of the agent. This should be generated by the coordinator process, stored in the coordinator database, and used by the intended agent." msgstr "El identificador UUID del agente. Debe ser generado por el proceso de coordinación, almacenarse en la base de datos de coordinación, y usarse por parte del agente en cuestión." #. type: table -#: guix-git/doc/guix.texi:33137 +#: guix-git/doc/guix.texi:33502 #, fuzzy msgid "The password to use when connecting to the coordinator." msgstr "URI usada para la conexión al nodo coordinador." #. type: deftp -#: guix-git/doc/guix.texi:33141 +#: guix-git/doc/guix.texi:33506 #, fuzzy, no-wrap msgid "{Data Type} guix-build-coordinator-agent-password-file-auth" msgstr "{Tipo de datos} guix-build-coordinator-agent-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33144 +#: guix-git/doc/guix.texi:33509 msgid "Data type representing an agent authenticating with a coordinator via a UUID and password read from a file." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33151 +#: guix-git/doc/guix.texi:33516 #, fuzzy, no-wrap msgid "password-file" msgstr "password" #. type: table -#: guix-git/doc/guix.texi:33154 +#: guix-git/doc/guix.texi:33519 msgid "A file containing the password to use when connecting to the coordinator." msgstr "Un archivo que contiene la contraseña usada para la conexión a la máquina coordinadora." #. type: deftp -#: guix-git/doc/guix.texi:33158 +#: guix-git/doc/guix.texi:33523 #, fuzzy, no-wrap msgid "{Data Type} guix-build-coordinator-agent-dynamic-auth" msgstr "{Tipo de datos} guix-build-coordinator-agent-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33161 +#: guix-git/doc/guix.texi:33526 #, fuzzy msgid "Data type representing an agent authenticating with a coordinator via a dynamic auth token and agent name." msgstr "Tipo de datos que representa la configuración de un agente del coordinador de construcciones de Guix." #. type: code{#1} -#: guix-git/doc/guix.texi:33163 guix-git/doc/guix.texi:33180 +#: guix-git/doc/guix.texi:33528 guix-git/doc/guix.texi:33545 #, fuzzy, no-wrap msgid "agent-name" msgstr "noticias de los canales" #. type: table -#: guix-git/doc/guix.texi:33167 guix-git/doc/guix.texi:33184 +#: guix-git/doc/guix.texi:33532 guix-git/doc/guix.texi:33549 msgid "Name of an agent, this is used to match up to an existing entry in the database if there is one. When no existing entry is found, a new entry is automatically added." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33168 +#: guix-git/doc/guix.texi:33533 #, no-wrap msgid "token" msgstr "" # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:33171 +#: guix-git/doc/guix.texi:33536 #, fuzzy msgid "Dynamic auth token, this is created and stored in the coordinator database, and is used by the agent to authenticate." msgstr "El identificador UUID del agente. Debe ser generado por el proceso de coordinación, almacenarse en la base de datos de coordinación, y usarse por parte del agente en cuestión." #. type: deftp -#: guix-git/doc/guix.texi:33175 +#: guix-git/doc/guix.texi:33540 #, fuzzy, no-wrap msgid "{Data Type} guix-build-coordinator-agent-dynamic-auth-with-file" msgstr "{Tipo de datos} guix-build-coordinator-agent-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33178 +#: guix-git/doc/guix.texi:33543 #, fuzzy msgid "Data type representing an agent authenticating with a coordinator via a dynamic auth token read from a file and agent name." msgstr "Tipo de datos que representa la configuración de un agente del coordinador de construcciones de Guix." #. type: code{#1} -#: guix-git/doc/guix.texi:33185 +#: guix-git/doc/guix.texi:33550 #, fuzzy, no-wrap msgid "token-file" msgstr "file" # FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:33188 +#: guix-git/doc/guix.texi:33553 #, fuzzy msgid "File containing the dynamic auth token, this is created and stored in the coordinator database, and is used by the agent to authenticate." msgstr "El identificador UUID del agente. Debe ser generado por el proceso de coordinación, almacenarse en la base de datos de coordinación, y usarse por parte del agente en cuestión." # FUZZY FUZZY FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:33198 +#: guix-git/doc/guix.texi:33563 msgid "The Guix Build Coordinator package contains a script to query an instance of the Guix Data Service for derivations to build, and then submit builds for those derivations to the coordinator. The service type below assists in running this script. This is an additional tool that may be useful when building derivations contained within an instance of the Guix Data Service." msgstr "El paquete del coordinador de construcciones de Guix contiene un guión para consultar a una instancia del servicio de datos de Guix derivaciones que deben construirse, y envía dichas derivaciones al proceso de coordinación. El siguiente tipo de servicio sirve de asistencia para ejecución de dicho guión. Se trata de una herramienta adicional que resultar de utilidad cuando se construyan derivaciones contenidas dentro de una instancia del servicio de datos de Guix." #. type: defvar -#: guix-git/doc/guix.texi:33199 +#: guix-git/doc/guix.texi:33564 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-queue-builds-service-type" msgstr "{Variable Scheme} guix-build-coordinator-queue-builds-service-type" #. type: defvar -#: guix-git/doc/guix.texi:33204 +#: guix-git/doc/guix.texi:33569 msgid "Service type for the guix-build-coordinator-queue-builds-from-guix-data-service script. Its value must be a @code{guix-build-coordinator-queue-builds-configuration} object." msgstr "Tipo de servicio para el guión @command{guix-build-coordinator-queue-builds-from-guix-data-service}. Su valor debe ser un objeto @code{guix-build-coordinator-queue-builds-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:33206 +#: guix-git/doc/guix.texi:33571 #, no-wrap msgid "{Data Type} guix-build-coordinator-queue-builds-configuration" msgstr "{Tipo de datos} guix-build-coordinator-queue-builds-configuration" # FUZZY #. type: deftp -#: guix-git/doc/guix.texi:33209 +#: guix-git/doc/guix.texi:33574 msgid "Data type representing the options to the queue builds from guix data service script." msgstr "Tipo de datos que representa las opciones de la cola de construcciones del guión del servicio de dados de Guix." #. type: item -#: guix-git/doc/guix.texi:33214 +#: guix-git/doc/guix.texi:33579 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator-queue-builds\"})" msgstr "@code{user} (predeterminada: @code{\"guix-build-coordinator-queue-builds\"})" #. type: item -#: guix-git/doc/guix.texi:33217 +#: guix-git/doc/guix.texi:33582 #, fuzzy, no-wrap #| msgid "@code{coordinator} (default: @code{\"http://localhost:8745\"})" msgid "@code{coordinator} (default: @code{\"http://localhost:8746\"})" msgstr "@code{coordinator} (predeterminado: @code{\"http://localhost:8745\"})" #. type: table -#: guix-git/doc/guix.texi:33222 +#: guix-git/doc/guix.texi:33587 msgid "The systems for which to fetch derivations to build." msgstr "Los sistemas para los que se obtienen derivaciones que construir." #. type: item -#: guix-git/doc/guix.texi:33223 +#: guix-git/doc/guix.texi:33588 #, no-wrap msgid "@code{systems-and-targets} (default: @code{#f})" msgstr "@code{systems-and-targets} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:33226 +#: guix-git/doc/guix.texi:33591 msgid "An association list of system and target pairs for which to fetch derivations to build." msgstr "Una lista asociativa que contiene pares de sistema y objetivo para los que obtener derivaciones que construir." #. type: item -#: guix-git/doc/guix.texi:33227 +#: guix-git/doc/guix.texi:33592 #, no-wrap msgid "@code{guix-data-service} (default: @code{\"https://data.guix.gnu.org\"})" msgstr "@code{guix-data-service} (predeterminado: @code{\"https://data.guix.gnu.org\"})" #. type: table -#: guix-git/doc/guix.texi:33230 +#: guix-git/doc/guix.texi:33595 msgid "The Guix Data Service instance from which to query to find out about derivations to build." msgstr "La instancia del servicio de datos de Guix a la que se consulta para conocer las derivaciones que deben construirse." #. type: item -#: guix-git/doc/guix.texi:33231 +#: guix-git/doc/guix.texi:33596 #, no-wrap msgid "@code{processed-commits-file} (default: @code{\"/var/cache/guix-build-coordinator-queue-builds/processed-commits\"})" msgstr "@code{processed-commits-file} (predeterminado: @code{\"/var/cache/guix-build-coordinator-queue-builds/processed-commits\"})" #. type: table -#: guix-git/doc/guix.texi:33234 +#: guix-git/doc/guix.texi:33599 msgid "A file to record which commits have been processed, to avoid needlessly processing them again if the service is restarted." msgstr "Archivo en el que se registran las revisiones que se han procesado, para evitar procesarlas de nuevo innecesariamente si se reinicia el servicio." #. type: subsubheading -#: guix-git/doc/guix.texi:33238 +#: guix-git/doc/guix.texi:33603 #, no-wrap msgid "Guix Data Service" msgstr "Servicio de datos de Guix" #. type: Plain text -#: guix-git/doc/guix.texi:33242 +#: guix-git/doc/guix.texi:33607 msgid "The @uref{http://data.guix.gnu.org,Guix Data Service} processes, stores and provides data about GNU Guix. This includes information about packages, derivations and lint warnings." msgstr "El @uref{http://data.guix.gnu.org,servicio de datos de Guix} procesa, almacena y proporciona datos acerca de GNU Guix. Esto incluye información sobre paquetes, derivaciones y avisos de ``lint''." #. type: Plain text -#: guix-git/doc/guix.texi:33245 +#: guix-git/doc/guix.texi:33610 msgid "The data is stored in a PostgreSQL database, and available through a web interface." msgstr "Los datos se almacenan en una base de datos PostgreSQL, y están disponibles a través de una interfaz web." #. type: defvar -#: guix-git/doc/guix.texi:33246 +#: guix-git/doc/guix.texi:33611 #, no-wrap msgid "{Scheme Variable} guix-data-service-type" msgstr "{Variable Scheme} guix-data-service-type" # FUZZY #. type: defvar -#: guix-git/doc/guix.texi:33251 +#: guix-git/doc/guix.texi:33616 msgid "Service type for the Guix Data Service. Its value must be a @code{guix-data-service-configuration} object. The service optionally extends the getmail service, as the guix-commits mailing list is used to find out about changes in the Guix git repository." msgstr "Tipo de servicio para el servicio de datos de Guix. Su valor debe ser un objeto @code{guix-data-service-configuration}. El servicio opcionalmente extiende el servicio getmail, puesto que la lista de correo guix-commits se usa para conocer los cambios del repositorio git de Guix." #. type: deftp -#: guix-git/doc/guix.texi:33253 +#: guix-git/doc/guix.texi:33618 #, no-wrap msgid "{Data Type} guix-data-service-configuration" msgstr "{Tipo de datos} guix-data-service-configuration" # FUZZY #. type: deftp -#: guix-git/doc/guix.texi:33255 +#: guix-git/doc/guix.texi:33620 guix-git/doc/guix.texi:33668 msgid "Data type representing the configuration of the Guix Data Service." msgstr "Tipo de datos que representa la configuración del servicio de datos de Guix." #. type: item -#: guix-git/doc/guix.texi:33257 +#: guix-git/doc/guix.texi:33622 #, no-wrap msgid "@code{package} (default: @code{guix-data-service})" msgstr "@code{package} (predeterminado: @code{guix-data-service})" #. type: table -#: guix-git/doc/guix.texi:33259 +#: guix-git/doc/guix.texi:33624 msgid "The Guix Data Service package to use." msgstr "El paquete del servicio de datos de Guix usado." #. type: item -#: guix-git/doc/guix.texi:33260 +#: guix-git/doc/guix.texi:33625 #, no-wrap msgid "@code{user} (default: @code{\"guix-data-service\"})" msgstr "@code{user} (usuaria: @code{\"guix-data-service\"})" #. type: item -#: guix-git/doc/guix.texi:33263 +#: guix-git/doc/guix.texi:33628 #, no-wrap msgid "@code{group} (default: @code{\"guix-data-service\"})" msgstr "@code{group} (predeterminado: @code{\"guix-data-service\"})" #. type: item -#: guix-git/doc/guix.texi:33266 +#: guix-git/doc/guix.texi:33631 #, no-wrap msgid "@code{port} (default: @code{8765})" msgstr "@code{port} (predeterminado: @code{8765})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:33268 +#: guix-git/doc/guix.texi:33633 msgid "The port to bind the web service to." msgstr "El puerto al que se asociará el servicio web." #. type: item -#: guix-git/doc/guix.texi:33269 +#: guix-git/doc/guix.texi:33634 guix-git/doc/guix.texi:33682 #, no-wrap msgid "@code{host} (default: @code{\"127.0.0.1\"})" msgstr "@code{host} (predeterminada: @code{\"127.0.0.1\"})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:33271 +#: guix-git/doc/guix.texi:33636 msgid "The host to bind the web service to." msgstr "El nombre de máquina al que se asociará el servicio web." #. type: item -#: guix-git/doc/guix.texi:33272 +#: guix-git/doc/guix.texi:33637 #, no-wrap msgid "@code{getmail-idle-mailboxes} (default: @code{#f})" msgstr "@code{getmail-idle-mailboxes} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:33275 +#: guix-git/doc/guix.texi:33640 msgid "If set, this is the list of mailboxes that the getmail service will be configured to listen to." msgstr "Si se proporciona un valor, es la lista de bandejas de correo en las cuales la configuración debe indicar su lectura al servicio getmail." #. type: item -#: guix-git/doc/guix.texi:33276 +#: guix-git/doc/guix.texi:33641 #, no-wrap msgid "@code{commits-getmail-retriever-configuration} (default: @code{#f})" msgstr "@code{commits-getmail-retriever-configuration} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:33280 +#: guix-git/doc/guix.texi:33645 msgid "If set, this is the @code{getmail-retriever-configuration} object with which to configure getmail to fetch mail from the guix-commits mailing list." msgstr "Si se proporciona un valor, es el objeto @code{getmail-retriever-configuration} con el que se configura getmail para obtener recibir el correo de la lista guix-commits." #. type: item -#: guix-git/doc/guix.texi:33281 +#: guix-git/doc/guix.texi:33646 #, no-wrap msgid "@code{extra-options} (default: @var{'()})" msgstr "@code{extra-options} (predeterminadas: @var{'()})" #. type: table -#: guix-git/doc/guix.texi:33283 +#: guix-git/doc/guix.texi:33648 msgid "Extra command line options for @code{guix-data-service}." msgstr "Opciones de línea de órdenes adicionales para @command{guix-data-service}." #. type: item -#: guix-git/doc/guix.texi:33284 +#: guix-git/doc/guix.texi:33649 #, no-wrap msgid "@code{extra-process-jobs-options} (default: @var{'()})" msgstr "@code{extra-process-jobs-options} (predeterminadas: @var{'()})" #. type: table -#: guix-git/doc/guix.texi:33286 +#: guix-git/doc/guix.texi:33651 msgid "Extra command line options for @code{guix-data-service-process-jobs}." msgstr "Opciones de línea de órdenes adicionales para @command{guix-data-service-process-jobs}." +#. type: subsubheading +#: guix-git/doc/guix.texi:33655 +#, no-wrap +msgid "Nar Herder" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:33658 +msgid "The @uref{https://git.cbaines.net/guix/nar-herder/about/,Nar Herder} is a utility for managing a collection of nars." +msgstr "" + +#. type: defvar +#: guix-git/doc/guix.texi:33659 +#, fuzzy, no-wrap +#| msgid "{Scheme Variable} ntp-service-type" +msgid "{Scheme Variable} nar-herder-type" +msgstr "{Variable Scheme} ntp-service-type" + +# FUZZY +#. type: defvar +#: guix-git/doc/guix.texi:33664 +#, fuzzy +#| msgid "Service type for the Guix Data Service. Its value must be a @code{guix-data-service-configuration} object. The service optionally extends the getmail service, as the guix-commits mailing list is used to find out about changes in the Guix git repository." +msgid "Service type for the Guix Data Service. Its value must be a @code{nar-herder-configuration} object. The service optionally extends the getmail service, as the guix-commits mailing list is used to find out about changes in the Guix git repository." +msgstr "Tipo de servicio para el servicio de datos de Guix. Su valor debe ser un objeto @code{guix-data-service-configuration}. El servicio opcionalmente extiende el servicio getmail, puesto que la lista de correo guix-commits se usa para conocer los cambios del repositorio git de Guix." + +#. type: deftp +#: guix-git/doc/guix.texi:33666 +#, fuzzy, no-wrap +#| msgid "{Data Type} inetd-configuration" +msgid "{Data Type} nar-herder-configuration" +msgstr "{Tipo de datos} inetd-configuration" + +#. type: item +#: guix-git/doc/guix.texi:33670 +#, fuzzy, no-wrap +#| msgid "@code{package} (default: @code{varnish})" +msgid "@code{package} (default: @code{nar-herder})" +msgstr "@code{package} (predeterminado: @code{varnish})" + +#. type: table +#: guix-git/doc/guix.texi:33672 +#, fuzzy +#| msgid "The Hurd package to use." +msgid "The Nar Herder package to use." +msgstr "El paquete de Hurd usado." + +#. type: item +#: guix-git/doc/guix.texi:33673 +#, fuzzy, no-wrap +#| msgid "@code{user} (default: @code{\"httpd\"})" +msgid "@code{user} (default: @code{\"nar-herder\"})" +msgstr "@code{user} (predeterminada: @code{\"httpd\"})" + +#. type: item +#: guix-git/doc/guix.texi:33676 +#, fuzzy, no-wrap +#| msgid "@code{group} (default: @code{\"httpd\"})" +msgid "@code{group} (default: @code{\"nar-herder\"})" +msgstr "@code{group} (predeterminado: @code{\"httpd\"})" + +#. type: item +#: guix-git/doc/guix.texi:33679 +#, fuzzy, no-wrap +#| msgid "@code{port} (default: @code{8765})" +msgid "@code{port} (default: @code{8734})" +msgstr "@code{port} (predeterminado: @code{8765})" + +# FUZZY +#. type: table +#: guix-git/doc/guix.texi:33684 +#, fuzzy +#| msgid "The port to bind the server to." +msgid "The host to bind the server to." +msgstr "Número de puerto usado por el servidor." + +#. type: table +#: guix-git/doc/guix.texi:33689 +msgid "Optional URL of the other Nar Herder instance which should be mirrored. This means that this Nar Herder instance will download it's database, and keep it up to date." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33690 +#, fuzzy, no-wrap +#| msgid "@code{database} (default: @code{\"/var/lib/cuirass/cuirass.db\"})" +msgid "@code{database} (default: @code{\"/var/lib/nar-herder/nar_herder.db\"})" +msgstr "@code{database} (predeterminada: @code{\"/var/lib/cuirass/cuirass.db\"})" + +#. type: table +#: guix-git/doc/guix.texi:33695 +msgid "Location for the database. If this Nar Herder instance is mirroring another, the database will be downloaded if it doesn't exist. If this Nar Herder instance isn't mirroring another, an empty database will be created." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33696 +#, fuzzy, no-wrap +#| msgid "@code{database} (default: @code{\"/var/lib/cuirass/cuirass.db\"})" +msgid "@code{database-dump} (default: @code{\"/var/lib/nar-herder/nar_herder_dump.db\"})" +msgstr "@code{database} (predeterminada: @code{\"/var/lib/cuirass/cuirass.db\"})" + +#. type: table +#: guix-git/doc/guix.texi:33700 +msgid "Location of the database dump. This is created and regularly updated by taking a copy of the database. This is the version of the database that is available to download." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33701 +#, fuzzy, no-wrap +msgid "@code{storage} (default: @code{#f})" +msgstr "@code{ssl-cert} (predeterminado: @code{#f})" + +#. type: table +#: guix-git/doc/guix.texi:33703 +#, fuzzy +#| msgid "Directory in which to store the data." +msgid "Optional location in which to store nars." +msgstr "Directorio en el que se almacenan los datos." + +#. type: item +#: guix-git/doc/guix.texi:33704 +#, fuzzy, no-wrap +#| msgid "@code{secret} (default: @code{\"\"})" +msgid "@code{storage-limit} (default: @code{\"none\"})" +msgstr "@code{secret} (predeterminado: @code{\"\"})" + +#. type: table +#: guix-git/doc/guix.texi:33707 +msgid "Limit in bytes for the nars stored in the storage location. This can also be set to ``none'' so that there is no limit." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33710 +msgid "When the storage location exceeds this size, nars are removed according to the nar removal criteria." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33711 +#, fuzzy, no-wrap +#| msgid "@code{server} (default: @code{'()})" +msgid "@code{storage-nar-removal-criteria} (default: @code{'()})" +msgstr "@code{server} (predeterminado: @code{'()})" + +#. type: table +#: guix-git/doc/guix.texi:33714 +msgid "Criteria used to remove nars from the storage location. These are used in conjunction with the storage limit." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33719 +msgid "When the storage location exceeds the storage limit size, nars will be checked against the nar removal criteria and if any of the criteria match, they will be removed. This will continue until the storage location is below the storage limit size." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33723 +msgid "Each criteria is specified by a string, then an equals sign, then another string. Currently, only one criteria is supported, checking if a nar is stored on another Nar Herder instance." +msgstr "" + #. type: cindex -#: guix-git/doc/guix.texi:33293 +#: guix-git/doc/guix.texi:33730 #, no-wrap msgid "oom" msgstr "oom" #. type: cindex -#: guix-git/doc/guix.texi:33294 +#: guix-git/doc/guix.texi:33731 #, no-wrap msgid "out of memory killer" msgstr "gestor de llenado de la memoria (out of memory killer)" #. type: cindex -#: guix-git/doc/guix.texi:33295 +#: guix-git/doc/guix.texi:33732 #, no-wrap msgid "earlyoom" msgstr "earlyoom" #. type: cindex -#: guix-git/doc/guix.texi:33296 +#: guix-git/doc/guix.texi:33733 #, no-wrap msgid "early out of memory daemon" msgstr "daemon Early OOM (early out of memory)" #. type: subsubheading -#: guix-git/doc/guix.texi:33297 +#: guix-git/doc/guix.texi:33734 #, no-wrap msgid "Early OOM Service" msgstr "Servicio Early OOM" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:33304 +#: guix-git/doc/guix.texi:33741 msgid "@uref{https://github.com/rfjakob/earlyoom,Early OOM}, also known as Earlyoom, is a minimalist out of memory (OOM) daemon that runs in user space and provides a more responsive and configurable alternative to the in-kernel OOM killer. It is useful to prevent the system from becoming unresponsive when it runs out of memory." msgstr "@uref{https://github.com/rfjakob/earlyoom,Early OOM}, también conocido como Earlyoom, es un daemon minimalista de gestión del llenado de la memoria@footnote{NdT: Del inglés Out Of Memory.} que se ejecuta en espacio de usuaria y proporciona una alternativa al gestor del propio núcleo con una respuesta más inmediata y más configurable. Es útil para prevenir que el sistema no responda cuando se queda sin memoria." #. type: deffn -#: guix-git/doc/guix.texi:33305 +#: guix-git/doc/guix.texi:33742 #, no-wrap msgid "{Scheme Variable} earlyoom-service-type" msgstr "{Variable Scheme} earlyoom-service-type" # FUZZY #. type: deffn -#: guix-git/doc/guix.texi:33310 +#: guix-git/doc/guix.texi:33747 msgid "The service type for running @command{earlyoom}, the Early OOM daemon. Its value must be a @code{earlyoom-configuration} object, described below. The service can be instantiated in its default configuration with:" msgstr "Tipo de servicio para el servicio @command{earlyoom}, el daemon Early OOM. Su valor debe ser un objeto @code{earlyoom-configuration}, descrito a continuación. El servicio se puede instanciar con su configuración predeterminada de esta manera:" #. type: lisp -#: guix-git/doc/guix.texi:33313 +#: guix-git/doc/guix.texi:33750 #, no-wrap msgid "(service earlyoom-service-type)\n" msgstr "(service earlyoom-service-type)\n" #. type: deftp -#: guix-git/doc/guix.texi:33316 +#: guix-git/doc/guix.texi:33753 #, no-wrap msgid "{Data Type} earlyoom-configuration" msgstr "{Tipo de datos} earlyoom-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33318 +#: guix-git/doc/guix.texi:33755 msgid "This is the configuration record for the @code{earlyoom-service-type}." msgstr "Esta es el registro de configuración para el servicio @code{earlyoom-service-type}." #. type: item -#: guix-git/doc/guix.texi:33320 +#: guix-git/doc/guix.texi:33757 #, no-wrap msgid "@code{earlyoom} (default: @var{earlyoom})" msgstr "@code{earlyoom} (predeterminado: @var{earlyoom})" #. type: table -#: guix-git/doc/guix.texi:33322 +#: guix-git/doc/guix.texi:33759 msgid "The Earlyoom package to use." msgstr "El paquete Earlyoom usado." #. type: item -#: guix-git/doc/guix.texi:33323 +#: guix-git/doc/guix.texi:33760 #, no-wrap msgid "@code{minimum-available-memory} (default: @code{10})" msgstr "@code{minimum-available-memory} (predeterminado: @code{10})" #. type: table -#: guix-git/doc/guix.texi:33325 +#: guix-git/doc/guix.texi:33762 msgid "The threshold for the minimum @emph{available} memory, in percentages." msgstr "El límite inferior de memoria @emph{disponible}, en porcentaje." #. type: item -#: guix-git/doc/guix.texi:33326 +#: guix-git/doc/guix.texi:33763 #, no-wrap msgid "@code{minimum-free-swap} (default: @code{10})" msgstr "@code{minimum-free-swap} (predeterminado: @code{10})" #. type: table -#: guix-git/doc/guix.texi:33328 +#: guix-git/doc/guix.texi:33765 msgid "The threshold for the minimum free swap memory, in percentages." msgstr "El límite inferior de memoria de intercambio libre, en porcentaje." #. type: item -#: guix-git/doc/guix.texi:33329 +#: guix-git/doc/guix.texi:33766 #, no-wrap msgid "@code{prefer-regexp} (default: @code{#f})" msgstr "@code{prefer-regexp} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:33332 +#: guix-git/doc/guix.texi:33769 msgid "A regular expression (as a string) to match the names of the processes that should be preferably killed." msgstr "Una expresión regular (como cadena) que corresponda con los nombres de los procesos que preferiblemente deban pararse." #. type: item -#: guix-git/doc/guix.texi:33333 +#: guix-git/doc/guix.texi:33770 #, no-wrap msgid "@code{avoid-regexp} (default: @code{#f})" msgstr "@code{avoid-regexp} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33336 +#: guix-git/doc/guix.texi:33773 msgid "A regular expression (as a string) to match the names of the processes that should @emph{not} be killed." msgstr "Una expresión regular (como cadena) que corresponda con los nombres de los procesos que @emph{no} deban pararse." #. type: item -#: guix-git/doc/guix.texi:33337 +#: guix-git/doc/guix.texi:33774 #, no-wrap msgid "@code{memory-report-interval} (default: @code{0})" msgstr "@code{memory-report-interval} (predeterminado: @code{0})" #. type: table -#: guix-git/doc/guix.texi:33340 +#: guix-git/doc/guix.texi:33777 msgid "The interval in seconds at which a memory report is printed. It is disabled by default." msgstr "Intervalo en segundos con el cual se imprime el informe de memoria. No está activo de manera predeterminada." #. type: item -#: guix-git/doc/guix.texi:33341 +#: guix-git/doc/guix.texi:33778 #, no-wrap msgid "@code{ignore-positive-oom-score-adj?} (default: @code{#f})" msgstr "@code{ignore-positive-oom-score-adj?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33344 +#: guix-git/doc/guix.texi:33781 msgid "A boolean indicating whether the positive adjustments set in @file{/proc/*/oom_score_adj} should be ignored." msgstr "Valor booleano que indica si se deben ignoran los ajustes positivos realizados en @file{/proc/*/oom_score_adj}." #. type: item -#: guix-git/doc/guix.texi:33345 +#: guix-git/doc/guix.texi:33782 #, no-wrap msgid "@code{show-debug-messages?} (default: @code{#f})" msgstr "@code{show-debug-messages?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33348 +#: guix-git/doc/guix.texi:33785 msgid "A boolean indicating whether debug messages should be printed. The logs are saved at @file{/var/log/earlyoom.log}." msgstr "Valor booleano que indica si los mensajes de depuración deben imprimirse. Los registros se almacenan en @file{/var/log/earlyoom.log}." #. type: item -#: guix-git/doc/guix.texi:33349 +#: guix-git/doc/guix.texi:33786 #, no-wrap msgid "@code{send-notification-command} (default: @code{#f})" msgstr "@code{send-notification-command} (predeterminada: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33352 +#: guix-git/doc/guix.texi:33789 msgid "This can be used to provide a custom command used for sending notifications." msgstr "Puede usarse para proporcionar una orden personalizada para el envío de notificaciones." #. type: cindex -#: guix-git/doc/guix.texi:33355 +#: guix-git/doc/guix.texi:33792 #, no-wrap msgid "modprobe" msgstr "modprobe" #. type: cindex -#: guix-git/doc/guix.texi:33356 +#: guix-git/doc/guix.texi:33793 #, no-wrap msgid "kernel module loader" msgstr "cargador de módulos del núcleo" #. type: subsubheading -#: guix-git/doc/guix.texi:33357 +#: guix-git/doc/guix.texi:33794 #, no-wrap msgid "Kernel Module Loader Service" msgstr "Servicio de carga de módulos del núcleo" #. type: Plain text -#: guix-git/doc/guix.texi:33363 +#: guix-git/doc/guix.texi:33800 #, fuzzy #| msgid "The kernel module loader service allows one to load loadable kernel modules at boot. This is especially useful for modules that don't autoload and need to be manually loaded, as it's the case with @code{ddcci}." msgid "The kernel module loader service allows one to load loadable kernel modules at boot. This is especially useful for modules that don't autoload and need to be manually loaded, as is the case with @code{ddcci}." msgstr "El servicio de carga de módulos del núcleo permite la carga de módulos del núcleo durante el arranque. Esto es especialmente útil para módulos que no se cargan automáticamente y deben cargarse de forma manual, como es el caso con @code{ddcci}." #. type: deffn -#: guix-git/doc/guix.texi:33364 +#: guix-git/doc/guix.texi:33801 #, no-wrap msgid "{Scheme Variable} kernel-module-loader-service-type" msgstr "{Variable Scheme} kernel-module-loader-service-type" # FUZZY FUZZY #. type: deffn -#: guix-git/doc/guix.texi:33370 +#: guix-git/doc/guix.texi:33807 msgid "The service type for loading loadable kernel modules at boot with @command{modprobe}. Its value must be a list of strings representing module names. For example loading the drivers provided by @code{ddcci-driver-linux}, in debugging mode by passing some module parameters, can be done as follow:" msgstr "Tipo de servicio para la carga de módulos del núcleo durante el arranque con @command{modprobe}. Su valor debe ser una lista de cadenas que representan nombres de módulo. Por ejemplo, la carga de los controladores proporcionados por @code{ddcci-driver-linux} en modo de depuración proporcionando algunos parámetros para el módulo puede realizarse de la siguiente manera:" #. type: lisp -#: guix-git/doc/guix.texi:33375 +#: guix-git/doc/guix.texi:33812 #, no-wrap msgid "" "(use-modules (gnu) (gnu services))\n" @@ -64714,7 +65665,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:33379 +#: guix-git/doc/guix.texi:33816 #, no-wrap msgid "" "(define ddcci-config\n" @@ -64728,7 +65679,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:33389 +#: guix-git/doc/guix.texi:33826 #, no-wrap msgid "" "(operating-system\n" @@ -64752,280 +65703,280 @@ msgstr "" " (kernel-loadable-modules (list ddcci-driver-linux)))\n" #. type: cindex -#: guix-git/doc/guix.texi:33392 +#: guix-git/doc/guix.texi:33829 #, fuzzy, no-wrap #| msgid "daemon" msgid "rasdaemon" msgstr "daemon" #. type: cindex -#: guix-git/doc/guix.texi:33393 +#: guix-git/doc/guix.texi:33830 #, no-wrap msgid "Platform Reliability, Availability and Serviceability daemon" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33394 +#: guix-git/doc/guix.texi:33831 #, fuzzy, no-wrap msgid "Rasdaemon Service" msgstr "Servicio Spice" #. type: Plain text -#: guix-git/doc/guix.texi:33399 +#: guix-git/doc/guix.texi:33836 msgid "The Rasdaemon service provides a daemon which monitors platform @acronym{RAS, Reliability@comma{} Availability@comma{} and Serviceability} reports from Linux kernel trace events, logging them to syslogd." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33402 +#: guix-git/doc/guix.texi:33839 msgid "Reliability, Availability and Serviceability is a concept used on servers meant to measure their robustness." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33405 +#: guix-git/doc/guix.texi:33842 msgid "@strong{Relability} is the probability that a system will produce correct outputs:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33407 +#: guix-git/doc/guix.texi:33844 #, no-wrap msgid "Generally measured as Mean Time Between Failures (MTBF), and" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33408 +#: guix-git/doc/guix.texi:33845 #, no-wrap msgid "Enhanced by features that help to avoid, detect and repair hardware" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:33410 +#: guix-git/doc/guix.texi:33847 #, fuzzy #| msgid "default" msgid "faults" msgstr "default" #. type: Plain text -#: guix-git/doc/guix.texi:33414 +#: guix-git/doc/guix.texi:33851 msgid "@strong{Availability} is the probability that a system is operational at a given time:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33416 +#: guix-git/doc/guix.texi:33853 #, no-wrap msgid "Generally measured as a percentage of downtime per a period of time, and" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33417 +#: guix-git/doc/guix.texi:33854 #, no-wrap msgid "Often uses mechanisms to detect and correct hardware faults in runtime." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33422 +#: guix-git/doc/guix.texi:33859 msgid "@strong{Serviceability} is the simplicity and speed with which a system can be repaired or maintained:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33424 +#: guix-git/doc/guix.texi:33861 #, no-wrap msgid "Generally measured on Mean Time Between Repair (MTBR)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33429 +#: guix-git/doc/guix.texi:33866 msgid "Among the monitoring measures, the most usual ones include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33431 +#: guix-git/doc/guix.texi:33868 #, no-wrap msgid "CPU – detect errors at instruction execution and at L1/L2/L3 caches;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33432 +#: guix-git/doc/guix.texi:33869 #, no-wrap msgid "Memory – add error correction logic (ECC) to detect and correct errors;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33433 +#: guix-git/doc/guix.texi:33870 #, no-wrap msgid "I/O – add CRC checksums for transferred data;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33434 +#: guix-git/doc/guix.texi:33871 #, no-wrap msgid "Storage – RAID, journal file systems, checksums, Self-Monitoring," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:33436 +#: guix-git/doc/guix.texi:33873 msgid "Analysis and Reporting Technology (SMART)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33442 +#: guix-git/doc/guix.texi:33879 msgid "By monitoring the number of occurrences of error detections, it is possible to identify if the probability of hardware errors is increasing, and, on such case, do a preventive maintenance to replace a degraded component while those errors are correctable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33446 +#: guix-git/doc/guix.texi:33883 msgid "For detailed information about the types of error events gathered and how to make sense of them, see the kernel administrator's guide at @url{https://www.kernel.org/doc/html/latest/admin-guide/ras.html}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33447 +#: guix-git/doc/guix.texi:33884 #, fuzzy, no-wrap msgid "{Scheme Variable} rasdaemon-service-type" msgstr "{Variable Scheme} zram-device-service-type" # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:33450 +#: guix-git/doc/guix.texi:33887 #, fuzzy #| msgid "Service type for the @command{pcscd} service. Its value must be a @code{pcscd-configuration} object. To run pcscd in the default configuration, instantiate it as:" msgid "Service type for the @command{rasdaemon} service. It accepts a @code{rasdaemon-configuration} object. Instantiating like" msgstr "Tipo de servicio para el servicio @command{pcscd}. Su valor debe ser un objeto @code{pcscd-configuration}. Puede instanciarlo de esta manera para ejecutar pcscd con la configuración predeterminada:" #. type: lisp -#: guix-git/doc/guix.texi:33453 +#: guix-git/doc/guix.texi:33890 #, fuzzy, no-wrap #| msgid "(service alsa-service-type)\n" msgid "(service rasdaemon-service-type)\n" msgstr "(service alsa-service-type)\n" #. type: defvr -#: guix-git/doc/guix.texi:33457 +#: guix-git/doc/guix.texi:33894 msgid "will load with a default configuration, which monitors all events and logs to syslogd." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33459 +#: guix-git/doc/guix.texi:33896 #, fuzzy, no-wrap #| msgid "{Data Type} git-daemon-configuration" msgid "{Data Type} rasdaemon-configuration" msgstr "{Tipo de datos} git-daemon-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33461 +#: guix-git/doc/guix.texi:33898 #, fuzzy #| msgid "The data type representing the configuration of @command{pcscd}." msgid "The data type representing the configuration of @command{rasdaemon}." msgstr "Tipo de datos que representa la configuración de @command{pcscd}." #. type: item -#: guix-git/doc/guix.texi:33463 +#: guix-git/doc/guix.texi:33900 #, fuzzy, no-wrap #| msgid "@code{remote?} (default: @code{#f})" msgid "@code{record?} (default: @code{#f})" msgstr "@code{remote?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33468 +#: guix-git/doc/guix.texi:33905 msgid "A boolean indicating whether to record the events in an SQLite database. This provides a more structured access to the information contained in the log file. The database location is hard-coded to @file{/var/lib/rasdaemon/ras-mc_event.db}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33472 +#: guix-git/doc/guix.texi:33909 #, no-wrap msgid "zram" msgstr "zram" #. type: cindex -#: guix-git/doc/guix.texi:33473 +#: guix-git/doc/guix.texi:33910 #, no-wrap msgid "compressed swap" msgstr "memoria de intercambio comprimida" #. type: cindex -#: guix-git/doc/guix.texi:33474 +#: guix-git/doc/guix.texi:33911 #, no-wrap msgid "Compressed RAM-based block devices" msgstr "Dispositivos de bloques comprimidos basados en RAM" #. type: subsubheading -#: guix-git/doc/guix.texi:33475 +#: guix-git/doc/guix.texi:33912 #, no-wrap msgid "Zram Device Service" msgstr "Servicio de dispositivo Zram" #. type: Plain text -#: guix-git/doc/guix.texi:33481 +#: guix-git/doc/guix.texi:33918 msgid "The Zram device service provides a compressed swap device in system memory. The Linux Kernel documentation has more information about @uref{https://www.kernel.org/doc/html/latest/admin-guide/blockdev/zram.html,zram} devices." msgstr "El servicio de dispositivo Zram proporciona un dispositivo comprimido de intercambio en la memoria del sistema. La documentación del núcleo Linux contiene más información sobre dispositivos @uref{https://www.kernel.org/doc/html/latest/admin-guide/blockdev/zram.html,zram}." #. type: deffn -#: guix-git/doc/guix.texi:33482 +#: guix-git/doc/guix.texi:33919 #, no-wrap msgid "{Scheme Variable} zram-device-service-type" msgstr "{Variable Scheme} zram-device-service-type" #. type: deffn -#: guix-git/doc/guix.texi:33486 +#: guix-git/doc/guix.texi:33923 msgid "This service creates the zram block device, formats it as swap and enables it as a swap device. The service's value is a @code{zram-device-configuration} record." msgstr "Este servicio crea el dispositivo de bloques zram, le proporciona el formato de la memoria de intercambio y lo activa. El valor del servicio es un registro @code{zram-device-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:33487 +#: guix-git/doc/guix.texi:33924 #, no-wrap msgid "{Data Type} zram-device-configuration" msgstr "{Tipo de datos} zram-device-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33490 +#: guix-git/doc/guix.texi:33927 msgid "This is the data type representing the configuration for the zram-device service." msgstr "Este tipo de datos representa la configuración del servicio zram-device." #. type: item -#: guix-git/doc/guix.texi:33492 +#: guix-git/doc/guix.texi:33929 #, no-wrap msgid "@code{size} (default @code{\"1G\"})" msgstr "@code{size} (predeterminado: @code{\"1G\"})" #. type: table -#: guix-git/doc/guix.texi:33496 +#: guix-git/doc/guix.texi:33933 msgid "This is the amount of space you wish to provide for the zram device. It accepts a string and can be a number of bytes or use a suffix, eg.: @code{\"512M\"} or @code{1024000}." msgstr "Es la cantidad de espacio que desea proporcionar al dispositivo zram. Acepta una cadena y puede ser el número de bytes o usar un sufijo, como por ejemplo @code{\"512M\"} o @code{1024000}." #. type: item -#: guix-git/doc/guix.texi:33496 +#: guix-git/doc/guix.texi:33933 #, no-wrap msgid "@code{compression-algorithm} (default @code{'lzo})" msgstr "@code{compression-algorithm} (predeterminado: @code{'lzo})" #. type: table -#: guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:33937 msgid "This is the compression algorithm you wish to use. It is difficult to list all the possible compression options, but common ones supported by Guix's Linux Libre Kernel include @code{'lzo}, @code{'lz4} and @code{'zstd}." msgstr "Algoritmo de compresión que desea usar. Es difícil enumerar todas las opciones de compresión posibles, pero las más habituales entre las implementadas por el núcleo Linux Libre usado por Guix incluyen @code{'lzo}, @code{'lz4} y @code{'zstd}." #. type: item -#: guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:33937 #, no-wrap msgid "@code{memory-limit} (default @code{0})" msgstr "@code{memory-limit} (predeterminado: @code{0})" # TODO: Probablemente debería ser @samp y no @var #. type: table -#: guix-git/doc/guix.texi:33507 +#: guix-git/doc/guix.texi:33944 msgid "This is the maximum amount of memory which the zram device can use. Setting it to '0' disables the limit. While it is generally expected that compression will be 2:1, it is possible that uncompressable data can be written to swap and this is a method to limit how much memory can be used. It accepts a string and can be a number of bytes or use a suffix, eg.: @code{\"2G\"}." msgstr "Cantidad máxima de memoria que el dispositivo zram puede usar. Proporcionar el valor '0' desactiva el límite. Mientras que generalmente se espera que la compresión tenga una relación con los datos sin comprimir de 2:1, es posible que se escriban datos en la memoria de intercambio que no se pueden comprimir más, y esta es una forma de limitar cuanta memoria puede usarse. Acepta una cadena y puede ser un número de bytes o un usar sufijo, por ejemplo @code{\"2G\"}." #. type: item -#: guix-git/doc/guix.texi:33507 +#: guix-git/doc/guix.texi:33944 #, no-wrap msgid "@code{priority} (default @code{-1})" msgstr "@code{priority} (predeterminada: @code{-1})" #. type: table -#: guix-git/doc/guix.texi:33512 +#: guix-git/doc/guix.texi:33949 msgid "This is the priority of the swap device created from the zram device. @code{swapon} accepts values between -1 and 32767, with higher values indicating higher priority. Higher priority swap will generally be used first." msgstr "La prioridad del dispositivo de intercambio creado desde el disposito zram. @code{swapon} acepta valores entre -1 y 32767, donde los valores más altos indican una prioridad mayor. Los dispositivos de intercambio con mayor prioridad suelen usarse primero." #. type: defvr -#: guix-git/doc/guix.texi:33520 +#: guix-git/doc/guix.texi:33957 #, no-wrap msgid "{Scheme Variable} hurd-console-service-type" msgstr "{Variable Scheme} hurd-console-service-type" @@ -65033,145 +65984,145 @@ msgstr "{Variable Scheme} hurd-console-service-type" # FUZZY FUZZY # TODO (MAAV): Fancy? #. type: defvr -#: guix-git/doc/guix.texi:33522 +#: guix-git/doc/guix.texi:33959 msgid "This service starts the fancy @code{VGA} console client on the Hurd." msgstr "Este servicio inicia el cliente de consola @code{VGA} en Hurd." #. type: defvr -#: guix-git/doc/guix.texi:33524 +#: guix-git/doc/guix.texi:33961 msgid "The service's value is a @code{hurd-console-configuration} record." msgstr "El valor de este servicio es un registro @code{hurd-console-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:33526 +#: guix-git/doc/guix.texi:33963 #, no-wrap msgid "{Data Type} hurd-console-configuration" msgstr "{Tipo de datos} hurd-console-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33529 +#: guix-git/doc/guix.texi:33966 msgid "This is the data type representing the configuration for the hurd-console-service." msgstr "Este tipo de datos representa la configuración del servicio hurd-console-service." #. type: item -#: guix-git/doc/guix.texi:33531 guix-git/doc/guix.texi:33547 +#: guix-git/doc/guix.texi:33968 guix-git/doc/guix.texi:33984 #, no-wrap msgid "@code{hurd} (default: @var{hurd})" msgstr "@code{hurd} (predeterminado: @var{hurd})" #. type: table -#: guix-git/doc/guix.texi:33533 guix-git/doc/guix.texi:33549 +#: guix-git/doc/guix.texi:33970 guix-git/doc/guix.texi:33986 msgid "The Hurd package to use." msgstr "El paquete de Hurd usado." #. type: defvr -#: guix-git/doc/guix.texi:33536 +#: guix-git/doc/guix.texi:33973 #, no-wrap msgid "{Scheme Variable} hurd-getty-service-type" msgstr "{Variable Scheme} hurd-getty-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33538 +#: guix-git/doc/guix.texi:33975 msgid "This service starts a tty using the Hurd @code{getty} program." msgstr "Este servicio inicia una interfaz de teletipo (``tty'') mediante el uso del programa @code{getty} de Hurd." #. type: defvr -#: guix-git/doc/guix.texi:33540 +#: guix-git/doc/guix.texi:33977 msgid "The service's value is a @code{hurd-getty-configuration} record." msgstr "El valor del servicio es un registro @code{hurd-getty-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:33542 +#: guix-git/doc/guix.texi:33979 #, no-wrap msgid "{Data Type} hurd-getty-configuration" msgstr "{Tipo de datos} hurd-getty-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33545 +#: guix-git/doc/guix.texi:33982 msgid "This is the data type representing the configuration for the hurd-getty-service." msgstr "Este tipo de datos representa la configuración del servicio hurd-getty-service." #. type: table -#: guix-git/doc/guix.texi:33552 +#: guix-git/doc/guix.texi:33989 msgid "The name of the console this Getty runs on---e.g., @code{\"tty1\"}." msgstr "El nombre de la consola en la que se ejecuta este Getty---por ejemplo, @code{\"tty1\"}." #. type: item -#: guix-git/doc/guix.texi:33553 +#: guix-git/doc/guix.texi:33990 #, no-wrap msgid "@code{baud-rate} (default: @code{38400})" msgstr "@code{baud-rate} (predeterminado: @code{38400})" #. type: table -#: guix-git/doc/guix.texi:33555 +#: guix-git/doc/guix.texi:33992 msgid "An integer specifying the baud rate of the tty." msgstr "Un entero que especifica la tasa de transmisión de interfaz de teletipo." #. type: cindex -#: guix-git/doc/guix.texi:33562 +#: guix-git/doc/guix.texi:33999 #, no-wrap msgid "fingerprint" msgstr "huella dactilar" #. type: subsubheading -#: guix-git/doc/guix.texi:33563 +#: guix-git/doc/guix.texi:34000 #, no-wrap msgid "Fingerprint Service" msgstr "Servicio de huella dactilar" #. type: Plain text -#: guix-git/doc/guix.texi:33567 +#: guix-git/doc/guix.texi:34004 msgid "The @code{(gnu services authentication)} module provides a DBus service to read and identify fingerprints via a fingerprint sensor." msgstr "El módulo @code{(gnu services authentication)} proporciona un servicio DBus para leer e identificar huellas dactilares mediante un sensor de huellas." #. type: defvr -#: guix-git/doc/guix.texi:33568 +#: guix-git/doc/guix.texi:34005 #, no-wrap msgid "{Scheme Variable} fprintd-service-type" msgstr "{Variable Scheme} fprintd-service-type" # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:33571 +#: guix-git/doc/guix.texi:34008 msgid "The service type for @command{fprintd}, which provides the fingerprint reading capability." msgstr "El tipo de servicio para @command{fprintd}, que proporciona la capacidad de lectura de huellas dactilares." #. type: lisp -#: guix-git/doc/guix.texi:33574 +#: guix-git/doc/guix.texi:34011 #, no-wrap msgid "(service fprintd-service-type)\n" msgstr "(service fprintd-service-type)\n" #. type: cindex -#: guix-git/doc/guix.texi:33577 +#: guix-git/doc/guix.texi:34014 #, no-wrap msgid "sysctl" msgstr "sysctl" #. type: subsubheading -#: guix-git/doc/guix.texi:33578 +#: guix-git/doc/guix.texi:34015 #, no-wrap msgid "System Control Service" msgstr "Servicios de control del sistema" #. type: Plain text -#: guix-git/doc/guix.texi:33582 +#: guix-git/doc/guix.texi:34019 msgid "The @code{(gnu services sysctl)} provides a service to configure kernel parameters at boot." msgstr "El módulo @code{(gnu services sysctl)} proporciona servicios para configurar parámetros del núcleo durante el arranque." #. type: defvr -#: guix-git/doc/guix.texi:33583 +#: guix-git/doc/guix.texi:34020 #, no-wrap msgid "{Scheme Variable} sysctl-service-type" msgstr "{Variable Scheme} sysctl-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33587 +#: guix-git/doc/guix.texi:34024 msgid "The service type for @command{sysctl}, which modifies kernel parameters under @file{/proc/sys/}. To enable IPv4 forwarding, it can be instantiated as:" msgstr "El tipo de servicio para @command{sysctl}, que modifica parámetros del núcleo bajo @file{/proc/sys}. Para activar el encaminamiento de tráfico IPv4 se puede instanciar de esta manera:" #. type: lisp -#: guix-git/doc/guix.texi:33592 +#: guix-git/doc/guix.texi:34029 #, no-wrap msgid "" "(service sysctl-service-type\n" @@ -65183,13 +66134,13 @@ msgstr "" " (settings '((\"net.ipv4.ip_forward\" . \"1\")))))\n" #. type: defvr -#: guix-git/doc/guix.texi:33599 +#: guix-git/doc/guix.texi:34036 #, fuzzy msgid "Since @code{sysctl-service-type} is used in the default lists of services, @code{%base-services} and @code{%desktop-services}, you can use @code{modify-services} to change its configuration and add the kernel parameters that you want (@pxref{Service Reference, @code{modify-services}})." msgstr "En el sistema Guix esto se consigue modificando la configuración del servicio @code{guix}. Puesto que el servicio @code{guix} es parte de las listas de servicios predeterminadas, @code{%base-services} y @code{%desktop-services}, puede usar @code{modify-services} para cambiar su configuración y añadir las URL y claves para sustituciones que desee (@pxref{Service Reference, @code{modify-services}})." #. type: lisp -#: guix-git/doc/guix.texi:33606 +#: guix-git/doc/guix.texi:34043 #, fuzzy, no-wrap msgid "" "(modify-services %base-services\n" @@ -65207,225 +66158,225 @@ msgstr "" " %base-services)))\n" #. type: deftp -#: guix-git/doc/guix.texi:33610 +#: guix-git/doc/guix.texi:34047 #, no-wrap msgid "{Data Type} sysctl-configuration" msgstr "{Tipo de datos} sysctl-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33612 +#: guix-git/doc/guix.texi:34049 msgid "The data type representing the configuration of @command{sysctl}." msgstr "Tipo de datos que representa la configuración de @command{sysctl}." #. type: item -#: guix-git/doc/guix.texi:33614 +#: guix-git/doc/guix.texi:34051 #, no-wrap msgid "@code{sysctl} (default: @code{(file-append procps \"/sbin/sysctl\"})" msgstr "@code{sysctl} (predeterminado: @code{(file-append procps \"/sbin/sysctl\"})" #. type: table -#: guix-git/doc/guix.texi:33616 +#: guix-git/doc/guix.texi:34053 msgid "The @command{sysctl} executable to use." msgstr "El ejecutable @command{sysctl} usado." #. type: item -#: guix-git/doc/guix.texi:33617 +#: guix-git/doc/guix.texi:34054 #, fuzzy, no-wrap msgid "@code{settings} (default: @code{%default-sysctl-settings})" msgstr "@code{rotations} (predeterminadas: @code{%default-rotations})" #. type: table -#: guix-git/doc/guix.texi:33619 +#: guix-git/doc/guix.texi:34056 msgid "An association list specifies kernel parameters and their values." msgstr "Una lista asociativa que especifica parámetros del núcleo y sus valores." #. type: defvr -#: guix-git/doc/guix.texi:33622 +#: guix-git/doc/guix.texi:34059 #, fuzzy, no-wrap msgid "{Scheme Variable} %default-sysctl-settings" msgstr "{Variable Scheme} %default-rotations" #. type: defvr -#: guix-git/doc/guix.texi:33625 +#: guix-git/doc/guix.texi:34062 #, fuzzy msgid "An association list specifying the default @command{sysctl} parameters on Guix System." msgstr "Una lista asociativa que especifica parámetros del núcleo y sus valores." #. type: cindex -#: guix-git/doc/guix.texi:33627 +#: guix-git/doc/guix.texi:34064 #, no-wrap msgid "pcscd" msgstr "pcscd" #. type: subsubheading -#: guix-git/doc/guix.texi:33628 +#: guix-git/doc/guix.texi:34065 #, no-wrap msgid "PC/SC Smart Card Daemon Service" msgstr "Servicio del daemon de tarjetas inteligentes PC/SC" # FUZZY FUZZY FUZZY FUZZY FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:33635 +#: guix-git/doc/guix.texi:34072 #, fuzzy msgid "The @code{(gnu services security-token)} module provides the following service to run @command{pcscd}, the PC/SC Smart Card Daemon. @command{pcscd} is the daemon program for pcsc-lite and the MuscleCard framework. It is a resource manager that coordinates communications with smart card readers, smart cards and cryptographic tokens that are connected to the system." msgstr "El módulo @code{(gnu services security-token)} proporciona el siguiente servicio para ejecutar @command{pcscd}, el daemon de tarjetas inteligentes PC/SC. @command{pcscd} es el programa del daemon para pcsc-lite y el framework MuscleCard. Es un gestor de recursos que coordina la comunicación con lectores de tarjetas inteligentes, las propias tarjetas y los identificadores criptográficos conectados al sistema." #. type: defvr -#: guix-git/doc/guix.texi:33636 +#: guix-git/doc/guix.texi:34073 #, no-wrap msgid "{Scheme Variable} pcscd-service-type" msgstr "{Variable Scheme} pcscd-service-type" # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:33640 +#: guix-git/doc/guix.texi:34077 msgid "Service type for the @command{pcscd} service. Its value must be a @code{pcscd-configuration} object. To run pcscd in the default configuration, instantiate it as:" msgstr "Tipo de servicio para el servicio @command{pcscd}. Su valor debe ser un objeto @code{pcscd-configuration}. Puede instanciarlo de esta manera para ejecutar pcscd con la configuración predeterminada:" #. type: lisp -#: guix-git/doc/guix.texi:33643 +#: guix-git/doc/guix.texi:34080 #, no-wrap msgid "(service pcscd-service-type)\n" msgstr "(service pcscd-service-type)\n" #. type: deftp -#: guix-git/doc/guix.texi:33646 +#: guix-git/doc/guix.texi:34083 #, no-wrap msgid "{Data Type} pcscd-configuration" msgstr "{Tipo de datos} pcscd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33648 +#: guix-git/doc/guix.texi:34085 msgid "The data type representing the configuration of @command{pcscd}." msgstr "Tipo de datos que representa la configuración de @command{pcscd}." #. type: item -#: guix-git/doc/guix.texi:33650 +#: guix-git/doc/guix.texi:34087 #, no-wrap msgid "@code{pcsc-lite} (default: @code{pcsc-lite})" msgstr "@code{pcsc-lite} (predeterminado: @code{pcsc-lite})" #. type: table -#: guix-git/doc/guix.texi:33652 +#: guix-git/doc/guix.texi:34089 msgid "The pcsc-lite package that provides pcscd." msgstr "El paquete pcsc-lite que proporciona pcscd." #. type: item -#: guix-git/doc/guix.texi:33652 +#: guix-git/doc/guix.texi:34089 #, no-wrap msgid "@code{usb-drivers} (default: @code{(list ccid)})" msgstr "@code{usb-drivers} (predeterminado: @code{(list ccid)})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:33655 +#: guix-git/doc/guix.texi:34092 #, fuzzy msgid "List of packages that provide USB drivers to pcscd. Drivers are expected to be under @file{pcsc/drivers} in the store directory of the package." msgstr "Lista de paquetes que proporcionan los controladores USB para pcscd. Se espera que los controladores se encuentren en el directorio @file{pcsc/drivers} del directorio del almacén del paquete." #. type: cindex -#: guix-git/doc/guix.texi:33658 +#: guix-git/doc/guix.texi:34095 #, no-wrap msgid "lirc" msgstr "lirc" #. type: subsubheading -#: guix-git/doc/guix.texi:33659 +#: guix-git/doc/guix.texi:34096 #, no-wrap msgid "Lirc Service" msgstr "Servicio Lirc" #. type: Plain text -#: guix-git/doc/guix.texi:33662 +#: guix-git/doc/guix.texi:34099 msgid "The @code{(gnu services lirc)} module provides the following service." msgstr "El módulo @code{(gnu services lirc)} proporciona el siguiente servicio." #. type: deffn -#: guix-git/doc/guix.texi:33663 +#: guix-git/doc/guix.texi:34100 #, no-wrap msgid "{Scheme Procedure} lirc-service [#:lirc lirc] @" msgstr "{Procedimiento Scheme} lirc-service [#:lirc lirc] @" # FUZZY #. type: deffn -#: guix-git/doc/guix.texi:33668 +#: guix-git/doc/guix.texi:34105 msgid "[#:device #f] [#:driver #f] [#:config-file #f] @ [#:extra-options '()] Return a service that runs @url{http://www.lirc.org,LIRC}, a daemon that decodes infrared signals from remote controls." msgstr "" "[#:device #f] [#:driver #f] [#:config-file #f] @ [#:extra-options '()]\n" "Devuelve un servicio que ejecuta @url{http://www.lirc.org,LIRC}, un daemon que decodifica señales infrarrojas de dispositivos de control remoto." #. type: deffn -#: guix-git/doc/guix.texi:33672 +#: guix-git/doc/guix.texi:34109 msgid "Optionally, @var{device}, @var{driver} and @var{config-file} (configuration file name) may be specified. See @command{lircd} manual for details." msgstr "De manera opcional, se pueden especificar @var{device}, @var{driver} y @var{config-file} (nombre del archivo de configuración) may be specified. Véase el manual de @command{lircd} para obtener más detalles." #. type: deffn -#: guix-git/doc/guix.texi:33675 +#: guix-git/doc/guix.texi:34112 msgid "Finally, @var{extra-options} is a list of additional command-line options passed to @command{lircd}." msgstr "Por último, @var{extra-options} es una lista de opciones adicionales para la línea de órdenes proporcionada a @command{lircd}." #. type: cindex -#: guix-git/doc/guix.texi:33677 +#: guix-git/doc/guix.texi:34114 #, no-wrap msgid "spice" msgstr "spice" #. type: subsubheading -#: guix-git/doc/guix.texi:33678 +#: guix-git/doc/guix.texi:34115 #, no-wrap msgid "Spice Service" msgstr "Servicio Spice" #. type: Plain text -#: guix-git/doc/guix.texi:33681 +#: guix-git/doc/guix.texi:34118 msgid "The @code{(gnu services spice)} module provides the following service." msgstr "El módulo @code{(gnu services spice)} proporciona el siguiente servicio." #. type: deffn -#: guix-git/doc/guix.texi:33682 +#: guix-git/doc/guix.texi:34119 #, no-wrap msgid "{Scheme Procedure} spice-vdagent-service [#:spice-vdagent]" msgstr "{Procedimiento Scheme} spice-vdagent-service [#:spice-vdagent]" # FUZZY #. type: deffn -#: guix-git/doc/guix.texi:33686 +#: guix-git/doc/guix.texi:34123 msgid "Returns a service that runs @url{https://www.spice-space.org,VDAGENT}, a daemon that enables sharing the clipboard with a vm and setting the guest display resolution when the graphical console window resizes." msgstr "Devuelve un servicio que ejecuta @url{https://www.spice-space.org,VDAGENT}, un daemon que permite compartir el portapapeles con una máquina virtual y la configuración de la resolución de la pantalla de la máquina virtual cuando la ventana de la consola gráfica cambia de tamaño." #. type: cindex -#: guix-git/doc/guix.texi:33688 +#: guix-git/doc/guix.texi:34125 #, no-wrap msgid "inputattach" msgstr "inputattach" #. type: subsubheading -#: guix-git/doc/guix.texi:33689 +#: guix-git/doc/guix.texi:34126 #, no-wrap msgid "inputattach Service" msgstr "Servicio inputattach" # FUZZY #. type: cindex -#: guix-git/doc/guix.texi:33691 +#: guix-git/doc/guix.texi:34128 #, no-wrap msgid "tablet input, for Xorg" msgstr "entrada de tablet, para Xorg" #. type: cindex -#: guix-git/doc/guix.texi:33692 +#: guix-git/doc/guix.texi:34129 #, no-wrap msgid "touchscreen input, for Xorg" msgstr "entrada de pantalla táctil, para Xorg" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:33696 +#: guix-git/doc/guix.texi:34133 msgid "The @uref{https://linuxwacom.github.io/, inputattach} service allows you to use input devices such as Wacom tablets, touchscreens, or joysticks with the Xorg display server." msgstr "El servicio @uref{https://linuxwacom.github.io/, inputattach} permite el uso de dispositivos de entrada como tabletas Wacom, pantallas táctiles, o joysticks con el servidor gráfico Xorg." #. type: deffn -#: guix-git/doc/guix.texi:33697 +#: guix-git/doc/guix.texi:34134 #, no-wrap msgid "{Scheme Variable} inputattach-service-type" msgstr "{Variable Scheme} inputattach-service-type" @@ -65433,253 +66384,253 @@ msgstr "{Variable Scheme} inputattach-service-type" # FUZZY # TODO (MAAV): Dispatch?? #. type: deffn -#: guix-git/doc/guix.texi:33700 +#: guix-git/doc/guix.texi:34137 msgid "Type of a service that runs @command{inputattach} on a device and dispatches events from it." msgstr "Tipo de un servicio que ejecuta @command{inputattach} con un dispositivo y reenvía los eventos que produzca." #. type: deftp -#: guix-git/doc/guix.texi:33702 +#: guix-git/doc/guix.texi:34139 #, no-wrap msgid "{Data Type} inputattach-configuration" msgstr "{Tipo de datos} inputattach-configuration" #. type: item -#: guix-git/doc/guix.texi:33704 +#: guix-git/doc/guix.texi:34141 #, no-wrap msgid "@code{device-type} (default: @code{\"wacom\"})" msgstr "@code{device-type} (predeterminado: @code{\"wacom\"})" #. type: table -#: guix-git/doc/guix.texi:33707 +#: guix-git/doc/guix.texi:34144 msgid "The type of device to connect to. Run @command{inputattach --help}, from the @code{inputattach} package, to see the list of supported device types." msgstr "Tipo del dispositivo al que conectarse. Ejecute @command{inputattach --help}, del paquete @code{inputattach}, para ver la lista de tipos de dispositivo implementados." #. type: item -#: guix-git/doc/guix.texi:33708 +#: guix-git/doc/guix.texi:34145 #, no-wrap msgid "@code{device} (default: @code{\"/dev/ttyS0\"})" msgstr "@code{device} (predeterminado: @code{\"/dev/ttyS0\"})" #. type: table -#: guix-git/doc/guix.texi:33710 +#: guix-git/doc/guix.texi:34147 msgid "The device file to connect to the device." msgstr "El nombre de archivo para la conexión al dispositivo." #. type: table -#: guix-git/doc/guix.texi:33714 +#: guix-git/doc/guix.texi:34151 msgid "Baud rate to use for the serial connection. Should be a number or @code{#f}." msgstr "Tasa de transmisión usada para las conexiones serie. Debe ser un número o @code{#f}." #. type: item -#: guix-git/doc/guix.texi:33715 +#: guix-git/doc/guix.texi:34152 #, no-wrap msgid "@code{log-file} (default: @code{#f})" msgstr "@code{log-file} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:33717 +#: guix-git/doc/guix.texi:34154 msgid "If true, this must be the name of a file to log messages to." msgstr "Si es verdadero, debe ser el nombre de un archivo en el que registrar los mensajes." #. type: subsubheading -#: guix-git/doc/guix.texi:33720 +#: guix-git/doc/guix.texi:34157 #, no-wrap msgid "Dictionary Service" msgstr "Servicio de diccionario" #. type: cindex -#: guix-git/doc/guix.texi:33721 +#: guix-git/doc/guix.texi:34158 #, no-wrap msgid "dictionary" msgstr "diccionario" #. type: Plain text -#: guix-git/doc/guix.texi:33723 +#: guix-git/doc/guix.texi:34160 msgid "The @code{(gnu services dict)} module provides the following service:" msgstr "El módulo @code{(gnu services dict)} proporciona el servicio siguiente:" #. type: defvr -#: guix-git/doc/guix.texi:33724 +#: guix-git/doc/guix.texi:34161 #, no-wrap msgid "{Scheme Variable} dicod-service-type" msgstr "{Variable Scheme} dicod-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33727 +#: guix-git/doc/guix.texi:34164 msgid "This is the type of the service that runs the @command{dicod} daemon, an implementation of DICT server (@pxref{Dicod,,, dico, GNU Dico Manual})." msgstr "Tipo de servicio que ejecuta el daemon @command{dicod}, una implementación del servidor DICT (@pxref{Dicod,,, dico, GNU Dico Manual})." #. type: deffn -#: guix-git/doc/guix.texi:33729 +#: guix-git/doc/guix.texi:34166 #, no-wrap msgid "{Scheme Procedure} dicod-service [#:config (dicod-configuration)]" msgstr "{Procedimiento Scheme} dicod-service [#:config (dicod-configuration)]" #. type: deffn -#: guix-git/doc/guix.texi:33732 +#: guix-git/doc/guix.texi:34169 msgid "Return a service that runs the @command{dicod} daemon, an implementation of DICT server (@pxref{Dicod,,, dico, GNU Dico Manual})." msgstr "Devuelve un servicio que ejecuta el daemon @command{dicod}, una implementación del servidor DICT (@pxref{Dicod,,, dico, GNU Dico Manual})." #. type: deffn -#: guix-git/doc/guix.texi:33736 +#: guix-git/doc/guix.texi:34173 msgid "The optional @var{config} argument specifies the configuration for @command{dicod}, which should be a @code{} object, by default it serves the GNU Collaborative International Dictionary of English." msgstr "El parámetro opcional @var{config} especifica la configuración para @command{dicod}, que debe ser un objeto @code{}, de manera predeterminada proporciona el diccionario colaborativo internacional de Inglés de GNU." #. type: deffn -#: guix-git/doc/guix.texi:33740 +#: guix-git/doc/guix.texi:34177 msgid "You can add @command{open localhost} to your @file{~/.dico} file to make @code{localhost} the default server for @command{dico} client (@pxref{Initialization File,,, dico, GNU Dico Manual})." msgstr "Puede añadir @command{open localhost} en su archivo @file{~/.dico} para hacer que @code{localhost} sea el servidor predeterminado de su cliente @command{dico} (@pxref{Initialization File,,, dico, GNU Dico Manual})." #. type: deftp -#: guix-git/doc/guix.texi:33742 +#: guix-git/doc/guix.texi:34179 #, no-wrap msgid "{Data Type} dicod-configuration" msgstr "{Tipo de datos} dicod-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33744 +#: guix-git/doc/guix.texi:34181 msgid "Data type representing the configuration of dicod." msgstr "Tipo de datos que representa la configuración de dicod." #. type: item -#: guix-git/doc/guix.texi:33746 +#: guix-git/doc/guix.texi:34183 #, no-wrap msgid "@code{dico} (default: @var{dico})" msgstr "@code{dico} (predeterminado: @var{dico})" #. type: table -#: guix-git/doc/guix.texi:33748 +#: guix-git/doc/guix.texi:34185 msgid "Package object of the GNU Dico dictionary server." msgstr "El objeto paquete del servidor de diccionario GNU Dico." #. type: item -#: guix-git/doc/guix.texi:33749 +#: guix-git/doc/guix.texi:34186 #, no-wrap msgid "@code{interfaces} (default: @var{'(\"localhost\")})" msgstr "@code{interfaces} (predeterminada: @var{'(\"localhost\")})" #. type: table -#: guix-git/doc/guix.texi:33753 +#: guix-git/doc/guix.texi:34190 msgid "This is the list of IP addresses and ports and possibly socket file names to listen to (@pxref{Server Settings, @code{listen} directive,, dico, GNU Dico Manual})." msgstr "Es la lista de direcciones IP y puertos, y posiblemente nombres de archivo de sockets, en los que se debe escuchar (@pxref{Server Settings, @code{listen} directive,, dico, GNU Dico Manual})." #. type: item -#: guix-git/doc/guix.texi:33754 +#: guix-git/doc/guix.texi:34191 #, no-wrap msgid "@code{handlers} (default: @var{'()})" msgstr "@code{handlers} (predeterminados: @var{'()})" #. type: table -#: guix-git/doc/guix.texi:33756 +#: guix-git/doc/guix.texi:34193 msgid "List of @code{} objects denoting handlers (module instances)." msgstr "Lista de objetos @code{} que identifican los controladores (instancias de módulos)." #. type: item -#: guix-git/doc/guix.texi:33757 +#: guix-git/doc/guix.texi:34194 #, no-wrap msgid "@code{databases} (default: @var{(list %dicod-database:gcide)})" msgstr "@code{databases} (predeterminada: @var{(list %dicod-database:gcide)})" #. type: table -#: guix-git/doc/guix.texi:33759 +#: guix-git/doc/guix.texi:34196 msgid "List of @code{} objects denoting dictionaries to be served." msgstr "Lista de objetos @code{} que identifican los diccionarios proporcionados." #. type: deftp -#: guix-git/doc/guix.texi:33762 +#: guix-git/doc/guix.texi:34199 #, no-wrap msgid "{Data Type} dicod-handler" msgstr "{Tipo de datos} dicod-handler" # FUZZY #. type: deftp -#: guix-git/doc/guix.texi:33764 +#: guix-git/doc/guix.texi:34201 msgid "Data type representing a dictionary handler (module instance)." msgstr "Tipo de datos que representa un controlador de diccionario (instancia de un módulo)." #. type: table -#: guix-git/doc/guix.texi:33768 +#: guix-git/doc/guix.texi:34205 msgid "Name of the handler (module instance)." msgstr "Nombre del controlador (instancia de un módulo)." #. type: item -#: guix-git/doc/guix.texi:33769 +#: guix-git/doc/guix.texi:34206 #, no-wrap msgid "@code{module} (default: @var{#f})" msgstr "@code{module} (predeterminado: @var{#f})" #. type: table -#: guix-git/doc/guix.texi:33773 +#: guix-git/doc/guix.texi:34210 msgid "Name of the dicod module of the handler (instance). If it is @code{#f}, the module has the same name as the handler. (@pxref{Modules,,, dico, GNU Dico Manual})." msgstr "Nombre del módulo del controlador de dicod (instancia). Si es @code{#f}, el módulo tiene el mismo nombre que el controlador. (@pxref{Modules,,, dico, GNU Dico Manual})." #. type: table -#: guix-git/doc/guix.texi:33776 +#: guix-git/doc/guix.texi:34213 msgid "List of strings or gexps representing the arguments for the module handler" msgstr "Lista de cadenas o expresiones-G que representan los parámetros al módulo de control" #. type: deftp -#: guix-git/doc/guix.texi:33779 +#: guix-git/doc/guix.texi:34216 #, no-wrap msgid "{Data Type} dicod-database" msgstr "{Tipo de datos} dicod-database" #. type: deftp -#: guix-git/doc/guix.texi:33781 +#: guix-git/doc/guix.texi:34218 msgid "Data type representing a dictionary database." msgstr "Tipo de datos que representa una base de datos de diccionario." #. type: table -#: guix-git/doc/guix.texi:33785 +#: guix-git/doc/guix.texi:34222 msgid "Name of the database, will be used in DICT commands." msgstr "Nombre de la base de datos, será usada en las órdenes DICT." #. type: code{#1} -#: guix-git/doc/guix.texi:33786 +#: guix-git/doc/guix.texi:34223 #, no-wrap msgid "handler" msgstr "handler" #. type: table -#: guix-git/doc/guix.texi:33789 +#: guix-git/doc/guix.texi:34226 msgid "Name of the dicod handler (module instance) used by this database (@pxref{Handlers,,, dico, GNU Dico Manual})." msgstr "Nombre del controlador de dicod (instancia de un módulo) usado por esta base de datos (@pxref{Handlers,,, dico, GNU Dico Manual})." #. type: item -#: guix-git/doc/guix.texi:33790 +#: guix-git/doc/guix.texi:34227 #, no-wrap msgid "@code{complex?} (default: @var{#f})" msgstr "@code{complex?} (predeterminado: @var{#f})" #. type: table -#: guix-git/doc/guix.texi:33793 +#: guix-git/doc/guix.texi:34230 msgid "Whether the database configuration complex. The complex configuration will need a corresponding @code{} object, otherwise not." msgstr "Determina si se usará la configuración compleja. La configuración compleja necesita un objeto @code{}, que no es necesario en otro caso." #. type: table -#: guix-git/doc/guix.texi:33797 +#: guix-git/doc/guix.texi:34234 msgid "List of strings or gexps representing the arguments for the database (@pxref{Databases,,, dico, GNU Dico Manual})." msgstr "Lista de cadenas o expresiones-g que representan los parámetros para la base de datos (@pxref{Databases,,, dico, GNU Dico Manual})." #. type: defvr -#: guix-git/doc/guix.texi:33800 +#: guix-git/doc/guix.texi:34237 #, no-wrap msgid "{Scheme Variable} %dicod-database:gcide" msgstr "{Variable Scheme} %dicod-database:gcide" #. type: defvr -#: guix-git/doc/guix.texi:33803 +#: guix-git/doc/guix.texi:34240 msgid "A @code{} object serving the GNU Collaborative International Dictionary of English using the @code{gcide} package." msgstr "Un objeto @code{} que ofrece el diccionario internacional colaborativo de inglés de GNU usando el paquete @code{gcide}." #. type: Plain text -#: guix-git/doc/guix.texi:33806 +#: guix-git/doc/guix.texi:34243 msgid "The following is an example @code{dicod-service} configuration." msgstr "A continuación se encuentra un ejemplo de configuración de @code{dicod-service}." #. type: lisp -#: guix-git/doc/guix.texi:33821 +#: guix-git/doc/guix.texi:34258 #, no-wrap msgid "" "(dicod-service #:config\n" @@ -65711,128 +66662,128 @@ msgstr "" " %dicod-database:gcide))))\n" #. type: cindex -#: guix-git/doc/guix.texi:33823 +#: guix-git/doc/guix.texi:34260 #, no-wrap msgid "Docker" msgstr "Docker" #. type: subsubheading -#: guix-git/doc/guix.texi:33824 +#: guix-git/doc/guix.texi:34261 #, no-wrap msgid "Docker Service" msgstr "Servicio Docker" #. type: Plain text -#: guix-git/doc/guix.texi:33827 +#: guix-git/doc/guix.texi:34264 msgid "The @code{(gnu services docker)} module provides the following services." msgstr "El módulo @code{(gnu services docker)} proporciona los siguientes servicios." #. type: defvr -#: guix-git/doc/guix.texi:33828 +#: guix-git/doc/guix.texi:34265 #, no-wrap msgid "{Scheme Variable} docker-service-type" msgstr "{Variable Scheme} docker-service-type" # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:33833 +#: guix-git/doc/guix.texi:34270 msgid "This is the type of the service that runs @url{https://www.docker.com,Docker}, a daemon that can execute application bundles (sometimes referred to as ``containers'') in isolated environments." msgstr "Este es el tipo del servicio que ejecuta @url{https://www.docker.com, Docker}, un daemon que puede ejecutar empaquetados de aplicaciones (a los que a veces nos referimos como ``contenedores'') en entornos aislados." #. type: deftp -#: guix-git/doc/guix.texi:33836 +#: guix-git/doc/guix.texi:34273 #, no-wrap msgid "{Data Type} docker-configuration" msgstr "{Tipo de datos} docker-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33838 +#: guix-git/doc/guix.texi:34275 msgid "This is the data type representing the configuration of Docker and Containerd." msgstr "Este es el tipo de datos que representa la configuración de Docker y Containerd." #. type: item -#: guix-git/doc/guix.texi:33841 +#: guix-git/doc/guix.texi:34278 #, fuzzy, no-wrap #| msgid "@code{package} (default: @code{docker})" msgid "@code{docker} (default: @code{docker})" msgstr "@code{package} (predeterminado: @code{docker})" #. type: table -#: guix-git/doc/guix.texi:33843 +#: guix-git/doc/guix.texi:34280 msgid "The Docker daemon package to use." msgstr "El paquete de daemon de Docker usado." #. type: item -#: guix-git/doc/guix.texi:33844 +#: guix-git/doc/guix.texi:34281 #, fuzzy, no-wrap #| msgid "@code{package} (default: @code{docker-cli})" msgid "@code{docker-cli} (default: @code{docker-cli})" msgstr "@code{package} (predeterminado: @code{docker-cli})" #. type: table -#: guix-git/doc/guix.texi:33846 +#: guix-git/doc/guix.texi:34283 msgid "The Docker client package to use." msgstr "El paquete de cliente de Docker usado." #. type: item -#: guix-git/doc/guix.texi:33847 +#: guix-git/doc/guix.texi:34284 #, no-wrap msgid "@code{containerd} (default: @var{containerd})" msgstr "@code{containerd} (predeterminado: @var{containerd})" #. type: table -#: guix-git/doc/guix.texi:33849 +#: guix-git/doc/guix.texi:34286 msgid "The Containerd package to use." msgstr "El paquete Containerd usado." #. type: item -#: guix-git/doc/guix.texi:33850 +#: guix-git/doc/guix.texi:34287 #, no-wrap msgid "@code{proxy} (default @var{docker-libnetwork-cmd-proxy})" msgstr "@code{proxy} (predeterminado: @var{docker-libnetwork-cmd-proxy})" # FUZZY FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:33852 +#: guix-git/doc/guix.texi:34289 msgid "The Docker user-land networking proxy package to use." msgstr "La pasarela de espacio de usuario para red de Docker usada." #. type: item -#: guix-git/doc/guix.texi:33853 +#: guix-git/doc/guix.texi:34290 #, no-wrap msgid "@code{enable-proxy?} (default @code{#t})" msgstr "@code{enable-proxy?} (predeterminado: @code{#t})" # FUZZY FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:33855 +#: guix-git/doc/guix.texi:34292 msgid "Enable or disable the use of the Docker user-land networking proxy." msgstr "Activa o desactiva el uso de la pasarela de espacio de usuario para red de Docker." #. type: item -#: guix-git/doc/guix.texi:33856 +#: guix-git/doc/guix.texi:34293 #, no-wrap msgid "@code{debug?} (default @code{#f})" msgstr "@code{debug?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33858 +#: guix-git/doc/guix.texi:34295 msgid "Enable or disable debug output." msgstr "Activa o desactiva la salida de depuración." #. type: item -#: guix-git/doc/guix.texi:33859 +#: guix-git/doc/guix.texi:34296 #, no-wrap msgid "@code{enable-iptables?} (default @code{#t})" msgstr "@code{enable-iptables?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:33861 +#: guix-git/doc/guix.texi:34298 msgid "Enable or disable the addition of iptables rules." msgstr "Activa o desactiva la adición de reglas para iptables." #. type: item -#: guix-git/doc/guix.texi:33862 +#: guix-git/doc/guix.texi:34299 #, fuzzy, no-wrap #| msgid "@code{menu-entries} (default: @code{()})" msgid "@code{environment-variables} (default: @code{()})" @@ -65841,19 +66792,19 @@ msgstr "@code{menu-entries} (predeterminadas: @code{()})" # FUZZY # TODO (MAAV): Repensar. #. type: table -#: guix-git/doc/guix.texi:33864 +#: guix-git/doc/guix.texi:34301 #, fuzzy #| msgid "Set the specified environment variable to be passed to child processes." msgid "List of environment variables to set for @command{dockerd}." msgstr "Establece el valor de la variable de entorno especificada que se proporcionará a los procesos lanzados." #. type: table -#: guix-git/doc/guix.texi:33867 +#: guix-git/doc/guix.texi:34304 msgid "This must be a list of strings where each string has the form @samp{@var{key}=@var{value}} as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33871 +#: guix-git/doc/guix.texi:34308 #, no-wrap msgid "" "(list \"LANGUAGE=eo:ca:eu\"\n" @@ -65861,200 +66812,200 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33876 +#: guix-git/doc/guix.texi:34313 #, no-wrap msgid "Singularity, container service" msgstr "Singularity, servicio de contenedores" #. type: defvr -#: guix-git/doc/guix.texi:33877 +#: guix-git/doc/guix.texi:34314 #, no-wrap msgid "{Scheme Variable} singularity-service-type" msgstr "{Variable Scheme} singularity-service-type" # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:33882 +#: guix-git/doc/guix.texi:34319 msgid "This is the type of the service that allows you to run @url{https://www.sylabs.io/singularity/, Singularity}, a Docker-style tool to create and run application bundles (aka. ``containers''). The value for this service is the Singularity package to use." msgstr "Tipo de servicio que le permite ejecutar @url{https://www.sylabs.io/singularity/, Singularity}, una herramienta tipo-Docker para crear y ejecutar aplicaciones empaquetadas (también conocidas como ``contenedores''). El valor para este servicio es el paquete de Singularity usado." # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:33886 +#: guix-git/doc/guix.texi:34323 msgid "The service does not install a daemon; instead, it installs helper programs as setuid-root (@pxref{Setuid Programs}) such that unprivileged users can invoke @command{singularity run} and similar commands." msgstr "El servicio no instala un daemon; en vez de ello, instala programas auxiliares con con el bit setuid de root (@pxref{Setuid Programs}) de modo que usuarias sin privilegios puedan ejecutar @command{singularity run} y ordenes similares." #. type: cindex -#: guix-git/doc/guix.texi:33888 +#: guix-git/doc/guix.texi:34325 #, no-wrap msgid "Audit" msgstr "Audit" #. type: subsubheading -#: guix-git/doc/guix.texi:33889 +#: guix-git/doc/guix.texi:34326 #, no-wrap msgid "Auditd Service" msgstr "Servicio Auditd" #. type: Plain text -#: guix-git/doc/guix.texi:33892 +#: guix-git/doc/guix.texi:34329 msgid "The @code{(gnu services auditd)} module provides the following service." msgstr "El módulo @code{(gnu services auditd)} proporciona el servicio siguiente:" #. type: defvr -#: guix-git/doc/guix.texi:33893 +#: guix-git/doc/guix.texi:34330 #, no-wrap msgid "{Scheme Variable} auditd-service-type" msgstr "{Variable Scheme} auditd-service-type" # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:33898 +#: guix-git/doc/guix.texi:34335 msgid "This is the type of the service that runs @url{https://people.redhat.com/sgrubb/audit/,auditd}, a daemon that tracks security-relevant information on your system." msgstr "Este es el tipo del servicio que ejecuta @url{https://people.redhat.com/sgrubb/audit/,auditd}, un daemon que recolecta información relevante a la seguridad en su sistema." #. type: defvr -#: guix-git/doc/guix.texi:33900 +#: guix-git/doc/guix.texi:34337 msgid "Examples of things that can be tracked:" msgstr "Ejemplos de cosas que se pueden recolectar:" #. type: enumerate -#: guix-git/doc/guix.texi:33904 +#: guix-git/doc/guix.texi:34341 msgid "File accesses" msgstr "Acceso a archivos" #. type: enumerate -#: guix-git/doc/guix.texi:33906 +#: guix-git/doc/guix.texi:34343 msgid "System calls" msgstr "Llamadas al sistema" #. type: enumerate -#: guix-git/doc/guix.texi:33908 +#: guix-git/doc/guix.texi:34345 msgid "Invoked commands" msgstr "Órdenes invocadas" #. type: enumerate -#: guix-git/doc/guix.texi:33910 +#: guix-git/doc/guix.texi:34347 msgid "Failed login attempts" msgstr "Intentos fallidos de ingreso en el sistema" #. type: enumerate -#: guix-git/doc/guix.texi:33912 +#: guix-git/doc/guix.texi:34349 msgid "Firewall filtering" msgstr "Activaciones de filtros en el cortafuegos" #. type: enumerate -#: guix-git/doc/guix.texi:33914 +#: guix-git/doc/guix.texi:34351 msgid "Network access" msgstr "Accesos de red" # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:33925 +#: guix-git/doc/guix.texi:34362 msgid "@command{auditctl} from the @code{audit} package can be used in order to add or remove events to be tracked (until the next reboot). In order to permanently track events, put the command line arguments of auditctl into a file called @code{audit.rules} in the configuration directory (see below). @command{aureport} from the @code{audit} package can be used in order to view a report of all recorded events. The audit daemon by default logs into the file @file{/var/log/audit.log}." msgstr "Puede usarse @command{auditctl} del paquete @code{audit} para añadir o eliminar eventos a recolectar (hasta el siguiente reinicio). Para hacer permanente la recolección de dichos eventos, introduzca los parámetros de la línea de órdenes de auditctl en un archivo llamado @file{audit.rules} del directorio de configuración (véase a continuación). También se puede usar @command{aureport} del paquete @code{audit} para ver un informe de todos los eventos registrados. El daemon audit habitualmente registra los eventos en el archivo @file{/var/log/audit}." #. type: deftp -#: guix-git/doc/guix.texi:33928 +#: guix-git/doc/guix.texi:34365 #, no-wrap msgid "{Data Type} auditd-configuration" msgstr "{Tipo de datos} auditd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33930 +#: guix-git/doc/guix.texi:34367 msgid "This is the data type representing the configuration of auditd." msgstr "Este es el tipo de datos que representa la configuración de auditd." #. type: item -#: guix-git/doc/guix.texi:33933 +#: guix-git/doc/guix.texi:34370 #, no-wrap msgid "@code{audit} (default: @code{audit})" msgstr "@code{audit} (predeterminado: @code{audit})" #. type: table -#: guix-git/doc/guix.texi:33935 +#: guix-git/doc/guix.texi:34372 msgid "The audit package to use." msgstr "El paquete audit usado." #. type: item -#: guix-git/doc/guix.texi:33936 +#: guix-git/doc/guix.texi:34373 #, no-wrap msgid "@code{configuration-directory} (default: @code{%default-auditd-configuration-directory})" msgstr "@code{configuration-directory} (predeterminado: @code{%default-auditd-configuration-directory})" #. type: table -#: guix-git/doc/guix.texi:33940 +#: guix-git/doc/guix.texi:34377 msgid "The directory containing the configuration file for the audit package, which must be named @code{auditd.conf}, and optionally some audit rules to instantiate on startup." msgstr "Directorio que contiene el archivo de configuración para el paquete audit, cuyo nombre debe ser @code{auditd.conf}, y de manera opcional reglas de audit que se instanciarán en el arranque." #. type: cindex -#: guix-git/doc/guix.texi:33944 +#: guix-git/doc/guix.texi:34381 #, no-wrap msgid "rshiny" msgstr "rshiny" #. type: subsubheading -#: guix-git/doc/guix.texi:33945 +#: guix-git/doc/guix.texi:34382 #, no-wrap msgid "R-Shiny service" msgstr "servicio R-Shiny" #. type: Plain text -#: guix-git/doc/guix.texi:33948 +#: guix-git/doc/guix.texi:34385 msgid "The @code{(gnu services science)} module provides the following service." msgstr "El módulo @code{(gnu services science)} proporciona el siguiente servicio." #. type: defvr -#: guix-git/doc/guix.texi:33949 +#: guix-git/doc/guix.texi:34386 #, no-wrap msgid "{Scheme Variable} rshiny-service-type" msgstr "{Variable Scheme} rshiny-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33954 +#: guix-git/doc/guix.texi:34391 msgid "This is a type of service which is used to run a webapp created with @code{r-shiny}. This service sets the @env{R_LIBS_USER} environment variable and runs the provided script to call @code{runApp}." msgstr "Tipo de servicio usado para ejecutar una aplicación web creada con @code{r-shiny}. Este servicio proporciona el valor adecuado a la variable de entorno @env{R_LIBS_USER} y ejecuta el guión proporcionado para llamar a @code{runApp}." #. type: deftp -#: guix-git/doc/guix.texi:33955 +#: guix-git/doc/guix.texi:34392 #, no-wrap msgid "{Data Type} rshiny-configuration" msgstr "{Tipo de datos} rshiny-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33957 +#: guix-git/doc/guix.texi:34394 msgid "This is the data type representing the configuration of rshiny." msgstr "Este es el tipo de datos que representa la configuración del rshiny." #. type: item -#: guix-git/doc/guix.texi:33960 +#: guix-git/doc/guix.texi:34397 #, no-wrap msgid "@code{package} (default: @code{r-shiny})" msgstr "@code{package} (predeterminado: @code{r-shiny})" #. type: table -#: guix-git/doc/guix.texi:33962 +#: guix-git/doc/guix.texi:34399 msgid "The package to use." msgstr "El paquete usado." #. type: item -#: guix-git/doc/guix.texi:33963 +#: guix-git/doc/guix.texi:34400 #, no-wrap msgid "@code{binary} (defaunlt @code{\"rshiny\"})" msgstr "@code{binary} (predeterminado: @code{\"rshiny\"})" #. type: table -#: guix-git/doc/guix.texi:33966 +#: guix-git/doc/guix.texi:34403 msgid "The name of the binary or shell script located at @code{package/bin/} to run when the service is run." msgstr "Nombre del binario o del guión en el directorio @code{paquete/bin/} ejecutado cuando se arranca este servicio." #. type: table -#: guix-git/doc/guix.texi:33968 +#: guix-git/doc/guix.texi:34405 msgid "The common way to create this file is as follows:" msgstr "La manera habitual de crear este archivo es la siguiente:" #. type: lisp -#: guix-git/doc/guix.texi:33985 +#: guix-git/doc/guix.texi:34422 #, fuzzy, no-wrap #| msgid "" #| "@dots{}\n" @@ -66108,35 +67059,35 @@ msgstr "" " Rbin targetdir))))\n" #. type: cindex -#: guix-git/doc/guix.texi:33991 +#: guix-git/doc/guix.texi:34428 #, no-wrap msgid "Nix" msgstr "Nix" #. type: subsubheading -#: guix-git/doc/guix.texi:33992 +#: guix-git/doc/guix.texi:34429 #, no-wrap msgid "Nix service" msgstr "Servicio Nix" #. type: Plain text -#: guix-git/doc/guix.texi:33995 +#: guix-git/doc/guix.texi:34432 msgid "The @code{(gnu services nix)} module provides the following service." msgstr "El módulo @code{(gnu services nix)} proporciona el siguiente servicio." #. type: defvr -#: guix-git/doc/guix.texi:33996 +#: guix-git/doc/guix.texi:34433 #, no-wrap msgid "{Scheme Variable} nix-service-type" msgstr "{Variable Scheme} nix-service-type" #. type: defvr -#: guix-git/doc/guix.texi:34001 +#: guix-git/doc/guix.texi:34438 msgid "This is the type of the service that runs build daemon of the @url{https://nixos.org/nix/, Nix} package manager. Here is an example showing how to use it:" msgstr "Tipo del servicio que ejecuta el daemon de construcción del gestor de paquetes @url{https://nixos.org/nix/, Nix}. Este es un ejemplo de cómo usarlo:" #. type: lisp -#: guix-git/doc/guix.texi:34006 +#: guix-git/doc/guix.texi:34443 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -66150,7 +67101,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:34011 +#: guix-git/doc/guix.texi:34448 #, no-wrap msgid "" "(operating-system\n" @@ -66166,7 +67117,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:34014 +#: guix-git/doc/guix.texi:34451 #, no-wrap msgid "" " (services (append (list (service nix-service-type))\n" @@ -66176,30 +67127,30 @@ msgstr "" " %base-services)))\n" #. type: defvr -#: guix-git/doc/guix.texi:34017 +#: guix-git/doc/guix.texi:34454 msgid "After @command{guix system reconfigure} configure Nix for your user:" msgstr "Tras @command{guix system reconfigure}, configure Nix para su usuaria:" #. type: item -#: guix-git/doc/guix.texi:34019 +#: guix-git/doc/guix.texi:34456 #, no-wrap msgid "Add a Nix channel and update it. See" msgstr "Añada un canal Nix y lance una actualización. Véase" # TODO: TRANSLATION? #. type: itemize -#: guix-git/doc/guix.texi:34021 +#: guix-git/doc/guix.texi:34458 msgid "@url{https://nixos.org/nix/manual/, Nix Package Manager Guide}." msgstr "@url{https://nixos.org/nix/manual/, la guía del gestor de paquetes Nix}." #. type: item -#: guix-git/doc/guix.texi:34022 +#: guix-git/doc/guix.texi:34459 #, no-wrap msgid "Create a symlink to your profile and activate Nix profile:" msgstr "Cree un enlace simbólico a su perfil y active el perfil de Nix:" #. type: example -#: guix-git/doc/guix.texi:34028 +#: guix-git/doc/guix.texi:34465 #, no-wrap msgid "" "$ ln -s \"/nix/var/nix/profiles/per-user/$USER/profile\" ~/.nix-profile\n" @@ -66209,79 +67160,79 @@ msgstr "" "$ source /run/current-system/profile/etc/profile.d/nix.sh\n" #. type: deftp -#: guix-git/doc/guix.texi:34032 +#: guix-git/doc/guix.texi:34469 #, no-wrap msgid "{Data Type} nix-configuration" msgstr "{Tipo de datos} nix-configuration" #. type: deftp -#: guix-git/doc/guix.texi:34034 +#: guix-git/doc/guix.texi:34471 msgid "This data type represents the configuration of the Nix daemon." msgstr "Este tipo de datos representa la configuración del daemon de Nix." #. type: item -#: guix-git/doc/guix.texi:34036 +#: guix-git/doc/guix.texi:34473 #, no-wrap msgid "@code{nix} (default: @code{nix})" msgstr "@code{nix} (predeterminado: @code{nix})" #. type: table -#: guix-git/doc/guix.texi:34038 +#: guix-git/doc/guix.texi:34475 msgid "The Nix package to use." msgstr "El paquete Nix usado." #. type: item -#: guix-git/doc/guix.texi:34039 +#: guix-git/doc/guix.texi:34476 #, no-wrap msgid "@code{sandbox} (default: @code{#t})" msgstr "@code{sandbox} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:34041 +#: guix-git/doc/guix.texi:34478 msgid "Specifies whether builds are sandboxed by default." msgstr "Especifica si las construcciones se ejecutan en un entorno aislado (``sandbox'') de manera predeterminada." #. type: item -#: guix-git/doc/guix.texi:34042 +#: guix-git/doc/guix.texi:34479 #, no-wrap msgid "@code{build-sandbox-items} (default: @code{'()})" msgstr "@code{build-sandbox-items} (predeterminada: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:34045 +#: guix-git/doc/guix.texi:34482 msgid "This is a list of strings or objects appended to the @code{build-sandbox-items} field of the configuration file." msgstr "Lista de cadenas u objetos añadida al final del campo @code{build-sandbox-items} en el archivo de configuración." #. type: table -#: guix-git/doc/guix.texi:34053 +#: guix-git/doc/guix.texi:34490 msgid "Extra command line options for @code{nix-service-type}." msgstr "Opciones de línea de órdenes adicionales para @command{nix-service-type}." #. type: cindex -#: guix-git/doc/guix.texi:34059 +#: guix-git/doc/guix.texi:34496 #, no-wrap msgid "setuid programs" msgstr "programas con setuid" #. type: Plain text -#: guix-git/doc/guix.texi:34069 +#: guix-git/doc/guix.texi:34506 msgid "Some programs need to run with ``root'' privileges, even when they are launched by unprivileged users. A notorious example is the @command{passwd} program, which users can run to change their password, and which needs to access the @file{/etc/passwd} and @file{/etc/shadow} files---something normally restricted to root, for obvious security reasons. To address that, these executables are @dfn{setuid-root}, meaning that they always run with root privileges (@pxref{How Change Persona,,, libc, The GNU C Library Reference Manual}, for more info about the setuid mechanism)." msgstr "Algunos programas necesitan ejecutarse con privilegios de administradora (``root''), incluso cuando se ejecutan por usuarias sin privilegios. Un ejemplo notable es el programa @command{passwd}, que las usuarias ejecutan para cambiar su contraseña, y que necesita acceso a los archivos @file{/etc/passwd} y @file{/etc/shadow}---un acceso normalmente normalmente restringido a la cuenta de administración, por razones de seguridad obvias. Para solventarlo, estos ejecutables tienen una marca @dfn{setuid de ``root''}, lo que significa que siempre se ejecutan con los privilegios de dicha cuenta (@pxref{How Change Persona,,, libc, The GNU C Library Reference Manual}, para más información sobre el mecanismo setuid)." #. type: Plain text -#: guix-git/doc/guix.texi:34076 +#: guix-git/doc/guix.texi:34513 msgid "The store itself @emph{cannot} contain setuid programs: that would be a security issue since any user on the system can write derivations that populate the store (@pxref{The Store}). Thus, a different mechanism is used: instead of changing the setuid bit directly on files that are in the store, we let the system administrator @emph{declare} which programs should be setuid root." msgstr "El almacén en sí @emph{no puede} contener programas setuid: sería un problema de seguridad puesto que cualquier usuaria del sistema puede escribir derivaciones que pueblen el almacén (@pxref{The Store}). Por tanto, se usa un mecanismo diferente: en vez de cambiar el bit de setuid directamente en los archivos que se encuentran en el almacén, se permite que la administradora del sistema @emph{declare} qué programas deberían tener setuid de root." #. type: Plain text -#: guix-git/doc/guix.texi:34083 +#: guix-git/doc/guix.texi:34520 #, fuzzy #| msgid "The @code{setuid-programs} field of an @code{operating-system} declaration contains a list of G-expressions denoting the names of programs to be setuid-root (@pxref{Using the Configuration System}). For instance, the @command{passwd} program, which is part of the Shadow package, can be designated by this G-expression (@pxref{G-Expressions}):" msgid "The @code{setuid-programs} field of an @code{operating-system} declaration contains a list of @code{} denoting the names of programs to have a setuid or setgid bit set (@pxref{Using the Configuration System}). For instance, the @command{mount.nfs} program, which is part of the nfs-utils package, with a setuid root can be designated like this:" msgstr "El campo @code{setuid-programs} de una declaración @code{operating-system} contiene una lista de expresiones-G que denotan nombres de programas que tendrán setuid de root (@pxref{Using the Configuration System}). Por ejemplo, el programa @command{passwd}, que es parte del paquete Shadow, puede designarse con esta expresión-G (@pxref{G-Expressions}):" -#. type: example -#: guix-git/doc/guix.texi:34087 +#. type: lisp +#: guix-git/doc/guix.texi:34524 #, fuzzy, no-wrap #| msgid "#~(string-append #$shadow \"/bin/passwd\")\n" msgid "" @@ -66290,183 +67241,196 @@ msgid "" msgstr "#~(string-append #$shadow \"/bin/passwd\")\n" #. type: Plain text -#: guix-git/doc/guix.texi:34092 +#: guix-git/doc/guix.texi:34529 msgid "And then, to make @command{mount.nfs} setuid on your system, add the previous example to your operating system declaration by appending it to @code{%setuid-programs} like this:" msgstr "" -#. type: example -#: guix-git/doc/guix.texi:34098 -#, no-wrap +#. type: lisp +#: guix-git/doc/guix.texi:34537 +#, fuzzy, no-wrap +#| msgid "" +#| "(operating-system\n" +#| " ;; ...\n" +#| " (packages (append (map specification->package\n" +#| " '(\"tcpdump\" \"htop\" \"gnupg@@2.0\"))\n" +#| " %base-packages)))\n" msgid "" -"(setuid-programs\n" -" (append (list (setuid-program\n" -" (program (file-append nfs-utils \"/sbin/mount.nfs\"))))\n" -" %setuid-programs))\n" +"(operating-system\n" +" ;; Some fields omitted...\n" +" (setuid-programs\n" +" (append (list (setuid-program\n" +" (program (file-append nfs-utils \"/sbin/mount.nfs\")))\n" +" %setuid-programs))))\n" msgstr "" +"(operating-system\n" +" ;; ...\n" +" (packages (append (map specification->package\n" +" '(\"tcpdump\" \"htop\" \"gnupg@@2.0\"))\n" +" %base-packages)))\n" #. type: deftp -#: guix-git/doc/guix.texi:34100 +#: guix-git/doc/guix.texi:34539 #, fuzzy, no-wrap #| msgid "{Data Type} ganeti-os" msgid "{Data Type} setuid-program" msgstr "{Tipo de datos} ganeti-os" #. type: deftp -#: guix-git/doc/guix.texi:34102 +#: guix-git/doc/guix.texi:34541 #, fuzzy #| msgid "This data type represents a module for the httpd service." msgid "This data type represents a program with a setuid or setgid bit set." msgstr "Este es el tipo de datos que representa un módulo para el servicio httpd." #. type: code{#1} -#: guix-git/doc/guix.texi:34104 +#: guix-git/doc/guix.texi:34543 #, fuzzy, no-wrap #| msgid "setuid programs" msgid "program" msgstr "programas con setuid" #. type: table -#: guix-git/doc/guix.texi:34106 +#: guix-git/doc/guix.texi:34545 msgid "A file-like object having its setuid and/or setgid bit set." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34107 +#: guix-git/doc/guix.texi:34546 #, fuzzy, no-wrap #| msgid "@code{shared?} (default: @code{#t})" msgid "@code{setuid?} (default: @code{#t})" msgstr "@code{shared?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:34109 +#: guix-git/doc/guix.texi:34548 #, fuzzy #| msgid "Whether to use substitutes." msgid "Whether to set user setuid bit." msgstr "Determina si se usarán sustituciones." #. type: item -#: guix-git/doc/guix.texi:34110 +#: guix-git/doc/guix.texi:34549 #, fuzzy, no-wrap #| msgid "@code{id} (default: @code{#f})" msgid "@code{setgid?} (default: @code{#f})" msgstr "@code{id} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:34112 +#: guix-git/doc/guix.texi:34551 #, fuzzy #| msgid "Whether to use substitutes." msgid "Whether to set group setgid bit." msgstr "Determina si se usarán sustituciones." #. type: item -#: guix-git/doc/guix.texi:34113 +#: guix-git/doc/guix.texi:34552 #, fuzzy, no-wrap #| msgid "@code{users} (default: @code{#f})" msgid "@code{user} (default: @code{0})" msgstr "@code{users} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:34116 +#: guix-git/doc/guix.texi:34555 msgid "UID (integer) or user name (string) for the user owner of the program, defaults to root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34117 +#: guix-git/doc/guix.texi:34556 #, fuzzy, no-wrap #| msgid "@code{group} (default: @code{\"httpd\"})" msgid "@code{group} (default: @code{0})" msgstr "@code{group} (predeterminado: @code{\"httpd\"})" #. type: table -#: guix-git/doc/guix.texi:34120 +#: guix-git/doc/guix.texi:34559 msgid "GID (integer) goup name (string) for the group owner of the program, defaults to root." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34126 +#: guix-git/doc/guix.texi:34565 msgid "A default set of setuid programs is defined by the @code{%setuid-programs} variable of the @code{(gnu system)} module." msgstr "Un conjunto predeterminado de programas con el bit setuid se define en la variable @code{%setuid-programs} del módulo @code{(gnu system)}." #. type: defvr -#: guix-git/doc/guix.texi:34127 +#: guix-git/doc/guix.texi:34566 #, no-wrap msgid "{Scheme Variable} %setuid-programs" msgstr "{Variable Scheme} %setuid-programs" # FUZZY #. type: defvr -#: guix-git/doc/guix.texi:34130 +#: guix-git/doc/guix.texi:34569 #, fuzzy #| msgid "A list of G-expressions denoting common programs that are setuid-root." msgid "A list of @code{} denoting common programs that are setuid-root." msgstr "Una lista de expresiones-G que denotan programas comunes que se marcan con setuid de root." #. type: defvr -#: guix-git/doc/guix.texi:34133 +#: guix-git/doc/guix.texi:34572 msgid "The list includes commands such as @command{passwd}, @command{ping}, @command{su}, and @command{sudo}." msgstr "La lista incluye órdenes como @command{passwd}, @command{ping}, @command{su} y @command{sudo}." #. type: Plain text -#: guix-git/doc/guix.texi:34139 +#: guix-git/doc/guix.texi:34578 msgid "Under the hood, the actual setuid programs are created in the @file{/run/setuid-programs} directory at system activation time. The files in this directory refer to the ``real'' binaries, which are in the store." msgstr "Para su implementación, los programas con setuid reales se crean en el directorio @file{/run/setuid-programs} durante la activación del sistema. Los archivos en este directorio hacen referencia a los binarios ``reales'', que están en el almacén." #. type: cindex -#: guix-git/doc/guix.texi:34143 +#: guix-git/doc/guix.texi:34582 #, no-wrap msgid "HTTPS, certificates" msgstr "HTTPS, certificados" #. type: cindex -#: guix-git/doc/guix.texi:34144 +#: guix-git/doc/guix.texi:34583 #, no-wrap msgid "X.509 certificates" msgstr "certificados X.509" #. type: cindex -#: guix-git/doc/guix.texi:34145 +#: guix-git/doc/guix.texi:34584 #, no-wrap msgid "TLS" msgstr "TLS" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:34152 +#: guix-git/doc/guix.texi:34591 msgid "Web servers available over HTTPS (that is, HTTP over the transport-layer security mechanism, TLS) send client programs an @dfn{X.509 certificate} that the client can then use to @emph{authenticate} the server. To do that, clients verify that the server's certificate is signed by a so-called @dfn{certificate authority} (CA). But to verify the CA's signature, clients must have first acquired the CA's certificate." msgstr "En las conexiones HTTPS a servidores Web (esto es, HTTP sobre el mecanismo de seguridad de la capa de transporte, TLS) se envía a los programas clientes un @dfn{certificado X.509} que el cliente puede usar para @emph{autentificar} al servidor. Para hacerlo, los clientes verifican que el certificado del servidor está firmado por una de las llamadas @dfn{autoridades de certificación} (AC, CA en inglés). Pero para verificar la firma de una AC, los clientes deben haber obtenido previamente el certificado de dicha AC." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:34156 +#: guix-git/doc/guix.texi:34595 msgid "Web browsers such as GNU@tie{}IceCat include their own set of CA certificates, such that they are able to verify CA signatures out-of-the-box." msgstr "Los navegadores Web como GNU@tie{}IceCat incluyen su propio conjunto de certificados de AC, de manera que pueden verificar las firmas independientemente." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:34160 +#: guix-git/doc/guix.texi:34599 msgid "However, most other programs that can talk HTTPS---@command{wget}, @command{git}, @command{w3m}, etc.---need to be told where CA certificates can be found." msgstr "No obstante, a la mayor parte de otros programas que pueden comunicarse a través de HTTPS---@command{wget}, @command{git}, @command{w3m}, etc.---se les debe informar de dónde pueden encontrar los certificados de CA." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:34167 +#: guix-git/doc/guix.texi:34606 msgid "In Guix, this is done by adding a package that provides certificates to the @code{packages} field of the @code{operating-system} declaration (@pxref{operating-system Reference}). Guix includes one such package, @code{nss-certs}, which is a set of CA certificates provided as part of Mozilla's Network Security Services." msgstr "En Guix, esto se lleva a cabo mediante la adición de un paquete que proporcione certificados en el campo @code{packages} de la declaración @code{operating-system} (@pxref{operating-system Reference}). Guix incluye un paquete de este tipo, @code{nss-certs}, compuesto por un conjunto de certificados de CA proporcionados como parte de los servicios de seguridad de red de Mozilla (NSS)." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:34172 +#: guix-git/doc/guix.texi:34611 msgid "Note that it is @emph{not} part of @code{%base-packages}, so you need to explicitly add it. The @file{/etc/ssl/certs} directory, which is where most applications and libraries look for certificates by default, points to the certificates installed globally." msgstr "Fíjese que @emph{no} es parte de @code{%base-packages}, por lo que debe ser añadido explícitamente. El directorio @file{/etc/ssl/certs}, donde la mayor parte de las aplicaciones y bibliotecas buscarán los certificados de manera predeterminada, enlaza a los certificados instalados de manera global." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:34182 +#: guix-git/doc/guix.texi:34621 msgid "Unprivileged users, including users of Guix on a foreign distro, can also install their own certificate package in their profile. A number of environment variables need to be defined so that applications and libraries know where to find them. Namely, the OpenSSL library honors the @env{SSL_CERT_DIR} and @env{SSL_CERT_FILE} variables. Some applications add their own environment variables; for instance, the Git version control system honors the certificate bundle pointed to by the @env{GIT_SSL_CAINFO} environment variable. Thus, you would typically run something like:" msgstr "Las usuarias sin privilegios, incluyendo a usuarias de Guix en una distribución distinta, pueden también instalar su propio paquete de certificados en su perfil. Es necesario definir cierto número de variables de entorno de manera que las aplicaciones y bibliotecas sepan dónde encontrarlos. Por ejemplo, la biblioteca OpenSSL inspecciona las variables @env{SSL_CERT_DIR} y @env{SSL_CERT_FILE}. Algunas aplicaciones añaden sus variables de entorno propias; por ejemplo, el sistema de control de versiones Git inspecciona el empaquetado de certificados al que apunta la variable de entorno @env{GIT_SSL_CAINFO}. Por tanto, en el caso típico se debe ejecutar algo parecido a esto:" #. type: example -#: guix-git/doc/guix.texi:34188 +#: guix-git/doc/guix.texi:34627 #, no-wrap msgid "" "guix install nss-certs\n" @@ -66481,12 +67445,12 @@ msgstr "" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:34193 +#: guix-git/doc/guix.texi:34632 msgid "As another example, R requires the @env{CURL_CA_BUNDLE} environment variable to point to a certificate bundle, so you would have to run something like this:" msgstr "Como otro ejemplo, R necesita que la variable de entorno @env{CURL_CA_BUNDLE} apunte al empaquetado de certificados, de manera que se debe ejecutar algo parecido a esto:" #. type: example -#: guix-git/doc/guix.texi:34197 +#: guix-git/doc/guix.texi:34636 #, no-wrap msgid "" "guix install nss-certs\n" @@ -66497,54 +67461,54 @@ msgstr "" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:34201 +#: guix-git/doc/guix.texi:34640 msgid "For other applications you may want to look up the required environment variable in the relevant documentation." msgstr "Para otras aplicaciones puede tener que buscar la variable de entorno necesaria en la documentación relevante." # FUZZY # TODO: Comprobar traducción de libc #. type: cindex -#: guix-git/doc/guix.texi:34206 +#: guix-git/doc/guix.texi:34645 #, no-wrap msgid "name service switch" msgstr "selector de servicios de nombres" #. type: cindex -#: guix-git/doc/guix.texi:34207 +#: guix-git/doc/guix.texi:34646 #, no-wrap msgid "NSS" msgstr "NSS" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:34216 +#: guix-git/doc/guix.texi:34655 msgid "The @code{(gnu system nss)} module provides bindings to the configuration file of the libc @dfn{name service switch} or @dfn{NSS} (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference Manual}). In a nutshell, the NSS is a mechanism that allows libc to be extended with new ``name'' lookup methods for system databases, which includes host names, service names, user accounts, and more (@pxref{Name Service Switch, System Databases and Name Service Switch,, libc, The GNU C Library Reference Manual})." msgstr "El módulo @code{(gnu system nss)} proporciona una interfaz con el archivo de configuración del @dfn{selector de servicios de nombres} o @dfn{NSS} (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference Manual}). En resumen, NSS es un mecanismo que permite la extensión de libc con nuevos métodos de búsqueda de ``nombres'', lo que incluye nombres de máquinas, nombres de servicios, cuentas de usuaria y más (@pxref{Name Service Switch, System Databases and Name Service Switch,, libc, The GNU C Library Reference Manual})." #. type: Plain text -#: guix-git/doc/guix.texi:34223 +#: guix-git/doc/guix.texi:34662 msgid "The NSS configuration specifies, for each system database, which lookup method is to be used, and how the various methods are chained together---for instance, under which circumstances NSS should try the next method in the list. The NSS configuration is given in the @code{name-service-switch} field of @code{operating-system} declarations (@pxref{operating-system Reference, @code{name-service-switch}})." msgstr "La configuración de NSS especifica, para cada base de datos del sistema, que método de búsqueda debe ser usado, y cómo los varios métodos se enlazan entre sí---por ejemplo, bajo qué circunstancias NSS deberá probar con el siguiente método en la lista. La configuración de NSS se proporciona en el campo @code{name-service-switch} de las declaraciones @code{operating-system} (@pxref{operating-system Reference, @code{name-service-switch}})." #. type: cindex -#: guix-git/doc/guix.texi:34224 +#: guix-git/doc/guix.texi:34663 #, no-wrap msgid "nss-mdns" msgstr "nss-mdns" #. type: cindex -#: guix-git/doc/guix.texi:34225 +#: guix-git/doc/guix.texi:34664 #, no-wrap msgid ".local, host name lookup" msgstr ".local, búsqueda de nombres de máquina" #. type: Plain text -#: guix-git/doc/guix.texi:34230 +#: guix-git/doc/guix.texi:34669 msgid "As an example, the declaration below configures the NSS to use the @uref{https://0pointer.de/lennart/projects/nss-mdns/, @code{nss-mdns} back-end}, which supports host name lookups over multicast DNS (mDNS) for host names ending in @code{.local}:" msgstr "Como ejemplo, la siguiente declaración configura NSS para que use el @uref{https://0pointer.de/lennart/projects/nss-mdns/, motor @code{nss-mdns}}, que permite las búsquedas de nombres de máquinas sobre DNS multicast (mDNS) para nombres de máquinas terminados en @code{.local}:" #. type: lisp -#: guix-git/doc/guix.texi:34234 +#: guix-git/doc/guix.texi:34673 #, no-wrap msgid "" "(name-service-switch\n" @@ -66556,7 +67520,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:34239 +#: guix-git/doc/guix.texi:34678 #, no-wrap msgid "" " ;; If the above did not succeed, try\n" @@ -66572,7 +67536,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:34245 +#: guix-git/doc/guix.texi:34684 #, no-wrap msgid "" " ;; 'mdns_minimal' is authoritative for\n" @@ -66591,7 +67555,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:34249 +#: guix-git/doc/guix.texi:34688 #, no-wrap msgid "" " ;; Then fall back to DNS.\n" @@ -66605,7 +67569,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:34253 +#: guix-git/doc/guix.texi:34692 #, no-wrap msgid "" " ;; Finally, try with the \"full\" 'mdns'.\n" @@ -66617,155 +67581,155 @@ msgstr "" " (name \"mdns\")))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:34258 +#: guix-git/doc/guix.texi:34697 msgid "Do not worry: the @code{%mdns-host-lookup-nss} variable (see below) contains this configuration, so you will not have to type it if all you want is to have @code{.local} host lookup working." msgstr "No se preocupe: la variable @code{%mdns-host-lookup-nss} (véase a continuación) contiene esta configuración, de manera que no tiene que escribirla si todo lo que desea es que funcione la búsqueda de nombres de máquina en @code{.local}." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:34266 +#: guix-git/doc/guix.texi:34705 msgid "Note that, in this case, in addition to setting the @code{name-service-switch} of the @code{operating-system} declaration, you also need to use @code{avahi-service-type} (@pxref{Networking Services, @code{avahi-service-type}}), or @code{%desktop-services}, which includes it (@pxref{Desktop Services}). Doing this makes @code{nss-mdns} accessible to the name service cache daemon (@pxref{Base Services, @code{nscd-service}})." msgstr "Fíjese que, en este caso, además de establecer el valor de @code{name-service-switch} en la declaración @code{operating-system}, es necesario también usar el servicio @code{avahi-service-type} (@pxref{Networking Services, @code{avahi-service-type}}) o @code{%desktop-services}, donde está incluido. Esto permite el acceso a @code{nss-mdsn} desde el daemon de la caché del servicio de nombres (@pxref{Base Services, @code{nscd-service}})." #. type: Plain text -#: guix-git/doc/guix.texi:34269 +#: guix-git/doc/guix.texi:34708 msgid "For convenience, the following variables provide typical NSS configurations." msgstr "Por conveniencia, las siguientes variables proporcionan configuraciones NSS típicas." #. type: defvr -#: guix-git/doc/guix.texi:34270 +#: guix-git/doc/guix.texi:34709 #, no-wrap msgid "{Scheme Variable} %default-nss" msgstr "{Variable Scheme} %default-nss" #. type: defvr -#: guix-git/doc/guix.texi:34273 +#: guix-git/doc/guix.texi:34712 msgid "This is the default name service switch configuration, a @code{name-service-switch} object." msgstr "Esta es la configuración predeterminada del selector de servicios de nombres, un objeto @code{name-service-switch}." #. type: defvr -#: guix-git/doc/guix.texi:34275 +#: guix-git/doc/guix.texi:34714 #, no-wrap msgid "{Scheme Variable} %mdns-host-lookup-nss" msgstr "{Variable Scheme} %mdns-host-lookup-nss" #. type: defvr -#: guix-git/doc/guix.texi:34278 +#: guix-git/doc/guix.texi:34717 msgid "This is the name service switch configuration with support for host name lookup over multicast DNS (mDNS) for host names ending in @code{.local}." msgstr "Esta es la configuración del selector de servicios de nombres que permite la búsqueda de nombres de máquinas por DNS multicast (mDNS) para nombres de máquinas terminados en @code{.local}." #. type: Plain text -#: guix-git/doc/guix.texi:34288 +#: guix-git/doc/guix.texi:34727 msgid "The reference for name service switch configuration is given below. It is a direct mapping of the configuration file format of the C library , so please refer to the C library manual for more information (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference Manual}). Compared to the configuration file format of libc NSS, it has the advantage not only of adding this warm parenthetic feel that we like, but also static checks: you will know about syntax errors and typos as soon as you run @command{guix system}." msgstr "La referencia de la configuración del selector de servicios de nombres se proporciona a continuación. Tiene una asociación directa con el formato del archivo de configuración de la biblioteca C, por lo que se recomienda el manual de la biblioteca C para obtener más información (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference Manual}). En comparación con el formato del archivo de configuración del NSS de libc, no solo tiene solo la ventaja de la cálida sensación proporcionada por la adición de paréntesis que tanto nos gustan, sino que también tiene comprobaciones estáticas: conocerá los errores sintácticos y tipográficos con la ejecución de @command{guix system}." #. type: deftp -#: guix-git/doc/guix.texi:34289 +#: guix-git/doc/guix.texi:34728 #, no-wrap msgid "{Data Type} name-service-switch" msgstr "{Tipo de datos} name-service-switch" #. type: deftp -#: guix-git/doc/guix.texi:34294 +#: guix-git/doc/guix.texi:34733 msgid "This is the data type representation the configuration of libc's name service switch (NSS). Each field below represents one of the supported system databases." msgstr "El tipo de datos que representa la configuración del selector de servicios de nombres (NSS). Cada campo a continuación representa una de las bases de datos del sistema admitidas." #. type: item -#: guix-git/doc/guix.texi:34296 +#: guix-git/doc/guix.texi:34735 #, no-wrap msgid "aliases" msgstr "aliases" #. type: itemx -#: guix-git/doc/guix.texi:34297 +#: guix-git/doc/guix.texi:34736 #, no-wrap msgid "ethers" msgstr "ethers" #. type: itemx -#: guix-git/doc/guix.texi:34299 +#: guix-git/doc/guix.texi:34738 #, no-wrap msgid "gshadow" msgstr "gshadow" #. type: itemx -#: guix-git/doc/guix.texi:34300 +#: guix-git/doc/guix.texi:34739 #, no-wrap msgid "hosts" msgstr "hosts" #. type: itemx -#: guix-git/doc/guix.texi:34301 +#: guix-git/doc/guix.texi:34740 #, no-wrap msgid "initgroups" msgstr "initgroups" #. type: itemx -#: guix-git/doc/guix.texi:34302 +#: guix-git/doc/guix.texi:34741 #, no-wrap msgid "netgroup" msgstr "netgroup" #. type: itemx -#: guix-git/doc/guix.texi:34303 +#: guix-git/doc/guix.texi:34742 #, no-wrap msgid "networks" msgstr "networks" #. type: itemx -#: guix-git/doc/guix.texi:34306 +#: guix-git/doc/guix.texi:34745 #, no-wrap msgid "rpc" msgstr "rpc" #. type: itemx -#: guix-git/doc/guix.texi:34308 +#: guix-git/doc/guix.texi:34747 #, no-wrap msgid "shadow" msgstr "shadow" #. type: table -#: guix-git/doc/guix.texi:34311 +#: guix-git/doc/guix.texi:34750 #, fuzzy msgid "The system databases handled by the NSS@. Each of these fields must be a list of @code{} objects (see below)." msgstr "Las bases de datos del sistema que maneja el NSS. Cada uno de estos campos debe ser una lista de objetos @code{} (véase a continuación)." #. type: deftp -#: guix-git/doc/guix.texi:34314 +#: guix-git/doc/guix.texi:34753 #, no-wrap msgid "{Data Type} name-service" msgstr "{Tipo de datos} name-service" #. type: deftp -#: guix-git/doc/guix.texi:34318 +#: guix-git/doc/guix.texi:34757 msgid "This is the data type representing an actual name service and the associated lookup action." msgstr "Este es el tipo de datos que representa un servicio de nombres real y la acción de búsqueda asociada." # FUZZY #. type: table -#: guix-git/doc/guix.texi:34323 +#: guix-git/doc/guix.texi:34762 msgid "A string denoting the name service (@pxref{Services in the NSS configuration,,, libc, The GNU C Library Reference Manual})." msgstr "Una cadena que denota el nombre de servicio (@pxref{Services in the NSS configuration,,, libc, The GNU C Library Reference Manual})." # FUZZY #. type: table -#: guix-git/doc/guix.texi:34328 +#: guix-git/doc/guix.texi:34767 msgid "Note that name services listed here must be visible to nscd. This is achieved by passing the @code{#:name-services} argument to @code{nscd-service} the list of packages providing the needed name services (@pxref{Base Services, @code{nscd-service}})." msgstr "Fíjese que los servicios de nombres enumerados aquí deben ser visibles para nscd. Esto se consigue mediante la adición del parámetro @code{#:name-services} a @code{nscd-service} con la lista de paquetes que proporcionan los servicios de nombres necesarios (@pxref{Base Services, @code{nscd-service}})." #. type: item -#: guix-git/doc/guix.texi:34329 +#: guix-git/doc/guix.texi:34768 #, no-wrap msgid "reaction" msgstr "reaction" #. type: table -#: guix-git/doc/guix.texi:34333 +#: guix-git/doc/guix.texi:34772 msgid "An action specified using the @code{lookup-specification} macro (@pxref{Actions in the NSS configuration,,, libc, The GNU C Library Reference Manual}). For example:" msgstr "Una acción especificada mediante el uso del macro @code{lookup-specification} (@pxref{Actions in the NSS configuration,,, libc, The GNU C Library Reference Manual}). Por ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:34337 +#: guix-git/doc/guix.texi:34776 #, no-wrap msgid "" "(lookup-specification (unavailable => continue)\n" @@ -66775,17 +67739,17 @@ msgstr "" " (success => return))\n" #. type: Plain text -#: guix-git/doc/guix.texi:34351 +#: guix-git/doc/guix.texi:34790 msgid "For bootstrapping purposes, the Linux-Libre kernel is passed an @dfn{initial RAM disk}, or @dfn{initrd}. An initrd contains a temporary root file system as well as an initialization script. The latter is responsible for mounting the real root file system, and for loading any kernel modules that may be needed to achieve that." msgstr "Para el propósito del arranque inicial, se le proporciona al núcleo Linux-libre un @dfn{disco inicial en RAM}, o @dfn{initrd}. Un initrd contiene un sistema de archivos raíz temporal así como un guión de inicialización. Este último es responsable del montaje del sistema de archivos raíz real, así como de la carga de cualquier módulo del núcleo que pueda ser necesario para esta tarea." #. type: Plain text -#: guix-git/doc/guix.texi:34360 +#: guix-git/doc/guix.texi:34799 msgid "The @code{initrd-modules} field of an @code{operating-system} declaration allows you to specify Linux-libre kernel modules that must be available in the initrd. In particular, this is where you would list modules needed to actually drive the hard disk where your root partition is---although the default value of @code{initrd-modules} should cover most use cases. For example, assuming you need the @code{megaraid_sas} module in addition to the default modules to be able to access your root file system, you would write:" msgstr "El campo @code{initrd-modules} de una declaración @code{operating-system} le permite especificar qué módulos del núcleo Linux-libre deben estar disponibles en el initrd. En particular, aquí es donde se debe enumerar los módulos que controlen realmente el disco duro donde su partición raíz se encuentre---aunque el valor predeterminado de @code{initrd-modules} debería cubrir la mayor parte de casos de uso. Por ejemplo, en caso de necesitar el módulo @code{megaraid_sas} además de los módulos predeterminados para poder acceder a sistema de archivos raíz, se podría escribir:" #. type: lisp -#: guix-git/doc/guix.texi:34365 +#: guix-git/doc/guix.texi:34804 #, no-wrap msgid "" "(operating-system\n" @@ -66797,28 +67761,28 @@ msgstr "" " (initrd-modules (cons \"megaraid_sas\" %base-initrd-modules)))\n" #. type: defvr -#: guix-git/doc/guix.texi:34367 +#: guix-git/doc/guix.texi:34806 #, no-wrap msgid "{Scheme Variable} %base-initrd-modules" msgstr "{Variable Scheme} %base-initrd-modules" #. type: defvr -#: guix-git/doc/guix.texi:34369 +#: guix-git/doc/guix.texi:34808 msgid "This is the list of kernel modules included in the initrd by default." msgstr "Esta es la lista de módulos del núcleo que se incluyen en el initrd predeterminado." #. type: Plain text -#: guix-git/doc/guix.texi:34377 +#: guix-git/doc/guix.texi:34816 msgid "Furthermore, if you need lower-level customization, the @code{initrd} field of an @code{operating-system} declaration allows you to specify which initrd you would like to use. The @code{(gnu system linux-initrd)} module provides three ways to build an initrd: the high-level @code{base-initrd} procedure and the low-level @code{raw-initrd} and @code{expression->initrd} procedures." msgstr "Más allá, si necesita personalizaciones de un nivel más bajo, el campo @code{initrd} de una declaración @code{operating-system} le permite especificar qué initrd desea usar. El módulo @code{(gnu system linux-initrd)} proporciona tres formas de construir un initrd: el procedimiento de alto nivel @code{base-initrd} y los procedimientos de bajo nivel @code{raw-initrd} y @code{expression->initrd}." #. type: Plain text -#: guix-git/doc/guix.texi:34382 +#: guix-git/doc/guix.texi:34821 msgid "The @code{base-initrd} procedure is intended to cover most common uses. For example, if you want to add a bunch of kernel modules to be loaded at boot time, you can define the @code{initrd} field of the operating system declaration like this:" msgstr "El procedimiento @code{base-initrd} está pensado para cubrir la mayor parte de usos comunes. Por ejemplo, si desea añadir algunos módulos del núcleo que deben cargarse durante el arranque, puede definir el campo @code{initrd} de la declaración de sistema operativo de esta forma:" #. type: lisp -#: guix-git/doc/guix.texi:34390 +#: guix-git/doc/guix.texi:34829 #, no-wrap msgid "" "(initrd (lambda (file-systems . rest)\n" @@ -66838,139 +67802,139 @@ msgstr "" # FUZZY # MAAV (TODO): Live... Debería traducirlo #. type: Plain text -#: guix-git/doc/guix.texi:34395 +#: guix-git/doc/guix.texi:34834 msgid "The @code{base-initrd} procedure also handles common use cases that involves using the system as a QEMU guest, or as a ``live'' system with volatile root file system." msgstr "El procedimiento @code{base-initrd} también maneja casos de uso comunes que implican el uso del sistema en un anfitrión QEMU, o como un sistema ``live'' con un sistema de archivos raíz volátil." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:34402 +#: guix-git/doc/guix.texi:34841 #, fuzzy msgid "The @code{base-initrd} procedure is built from @code{raw-initrd} procedure. Unlike @code{base-initrd}, @code{raw-initrd} doesn't do anything high-level, such as trying to guess which kernel modules and packages should be included to the initrd. An example use of @code{raw-initrd} is when a user has a custom Linux kernel configuration and default kernel modules included by @code{base-initrd} are not available." msgstr "El procedimiento @code{base-initrd} se construye sobre el procedimiento @code{raw-initrd}. Al contrario que @code{base-initrd}, @code{raw-initrd} no funciona a alto nivel, como sería intentar deducir qué módulos del núcleo y paquetes deben incluirse en el initrd. Un ejemplo de uso de @code{raw-initrd} es cuando una usuaria tiene personalizada una configuración del núcleo Linux y los módulos predeterminados del núcleo que incluye @code{base-initrd} no están disponibles." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:34407 +#: guix-git/doc/guix.texi:34846 msgid "The initial RAM disk produced by @code{base-initrd} or @code{raw-initrd} honors several options passed on the Linux kernel command line (that is, arguments passed @i{via} the @code{linux} command of GRUB, or the @code{-append} option of QEMU), notably:" msgstr "El disco inicial en RAM producido por @code{base-initrd} o @code{raw-initrd} inspecciona varias opciones proporcionadas por la línea de órdenes al núcleo Linux (esto es, argumentos pasados a través de la orden @code{linux} de GRUB, o de la opción @code{-append} de QEMU), notablemente:" #. type: item -#: guix-git/doc/guix.texi:34409 +#: guix-git/doc/guix.texi:34848 #, no-wrap msgid "--load=@var{boot}" msgstr "--load=@var{arranque}" #. type: table -#: guix-git/doc/guix.texi:34412 +#: guix-git/doc/guix.texi:34851 msgid "Tell the initial RAM disk to load @var{boot}, a file containing a Scheme program, once it has mounted the root file system." msgstr "Indica al disco de RAM inicial que cargue @var{arranque}, un archivo que contiene un programa Scheme, una vez haya montado el sistema de archivos raíz." # FUZZY #. type: table -#: guix-git/doc/guix.texi:34416 +#: guix-git/doc/guix.texi:34855 msgid "Guix uses this option to yield control to a boot program that runs the service activation programs and then spawns the GNU@tie{}Shepherd, the initialization system." msgstr "Guix usa esta opción para proporcionar el control a un programa de arranque que ejecuta los programas de activación de servicios y lanza GNU@tie{}Shepherd, el sistema de inicialización." #. type: item -#: guix-git/doc/guix.texi:34417 +#: guix-git/doc/guix.texi:34856 #, no-wrap msgid "--root=@var{root}" msgstr "--root=@var{raíz}" #. type: table -#: guix-git/doc/guix.texi:34422 +#: guix-git/doc/guix.texi:34861 msgid "Mount @var{root} as the root file system. @var{root} can be a device name like @code{/dev/sda1}, a file system label, or a file system UUID. When unspecified, the device name from the root file system of the operating system declaration is used." msgstr "Monta @var{raíz} como el sistema de archivos raíz. @var{raíz} puede ser un nombre de dispositivo como @code{/dev/sda1}, una etiqueta del sistema de archivos o un UUID del sistema de archivos. Si no se proporciona se usa el nombre del sistema de archivos raíz de la declaración del sistema operativo." #. type: item -#: guix-git/doc/guix.texi:34423 +#: guix-git/doc/guix.texi:34862 #, fuzzy, no-wrap #| msgid "--diff=@var{mode}" msgid "fsck.mode=@var{mode}" msgstr "--diff=@var{modo}" #. type: table -#: guix-git/doc/guix.texi:34429 +#: guix-git/doc/guix.texi:34868 msgid "Whether to check the @var{root} file system for errors before mounting it. @var{mode} is one of @code{skip} (never check), @code{force} (always check), or @code{auto} to respect the root file-system object's 'check?' setting (@pxref{File Systems}) and run a full scan only if the file system was not cleanly shut down." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34432 +#: guix-git/doc/guix.texi:34871 msgid "@code{auto} is the default if this option is not present or if @var{mode} is not one of the above." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34433 +#: guix-git/doc/guix.texi:34872 #, fuzzy, no-wrap #| msgid "--debug=@var{level}" msgid "fsck.repair=@var{level}" msgstr "--debug=@var{nivel}" #. type: table -#: guix-git/doc/guix.texi:34438 +#: guix-git/doc/guix.texi:34877 msgid "The level of repairs to perform automatically if errors are found in the @var{root} file system. @var{level} is one of @code{no} (do not write to @var{root} at all if possible), @code{yes} (repair as much as possible), or @code{preen} to repair problems considered safe to repair automatically." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34441 +#: guix-git/doc/guix.texi:34880 msgid "@code{preen} is the default if this option is not present or if @var{level} is not one of the above." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34445 +#: guix-git/doc/guix.texi:34884 msgid "Have @file{/run/booted-system} and @file{/run/current-system} point to @var{system}." msgstr "Hace que @file{/run/booted-system} y @file{/run/current-system} apunten a @var{sistema}." #. type: item -#: guix-git/doc/guix.texi:34446 +#: guix-git/doc/guix.texi:34885 #, no-wrap msgid "modprobe.blacklist=@var{modules}@dots{}" msgstr "modprobe.blacklist=@var{módulos}@dots{}" #. type: cindex -#: guix-git/doc/guix.texi:34447 +#: guix-git/doc/guix.texi:34886 #, no-wrap msgid "module, black-listing" msgstr "módulo, lista negra" #. type: cindex -#: guix-git/doc/guix.texi:34448 +#: guix-git/doc/guix.texi:34887 #, no-wrap msgid "black list, of kernel modules" msgstr "lista negra, de módulos del núcleo" #. type: table -#: guix-git/doc/guix.texi:34453 +#: guix-git/doc/guix.texi:34892 msgid "Instruct the initial RAM disk as well as the @command{modprobe} command (from the kmod package) to refuse to load @var{modules}. @var{modules} must be a comma-separated list of module names---e.g., @code{usbkbd,9pnet}." msgstr "Indica al disco inicial en RAM así como a la orden @command{modprobe} (del paquete kmod) que deben negarse a cargar @var{módulos}. @var{módulos} debe ser una lista separada por comas de nombres de módulos---por ejemplo, @code{usbkbd,9pnet}." #. type: item -#: guix-git/doc/guix.texi:34454 +#: guix-git/doc/guix.texi:34893 #, no-wrap msgid "--repl" msgstr "--repl" # FUZZY #. type: table -#: guix-git/doc/guix.texi:34460 +#: guix-git/doc/guix.texi:34899 msgid "Start a read-eval-print loop (REPL) from the initial RAM disk before it tries to load kernel modules and to mount the root file system. Our marketing team calls it @dfn{boot-to-Guile}. The Schemer in you will love it. @xref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}, for more information on Guile's REPL." msgstr "Inicia una sesión interactiva (REPL) desde el disco inicial en RAM antes de que intente cargar los módulos del núcleo y del montaje del sistema de archivos raíz. Nuestro departamento comercial lo llama @dfn{arranca-en-Guile}. Como amante de Scheme, lo adorará. @xref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}, para más información sobre sesiones interactivas Guile." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:34466 +#: guix-git/doc/guix.texi:34905 msgid "Now that you know all the features that initial RAM disks produced by @code{base-initrd} and @code{raw-initrd} provide, here is how to use it and customize it further." msgstr "Una vez conocidas todas las características que proporcionan los discos iniciales en RAM que producen @code{base-initrd} y @code{raw-initrd}, a continuación veremos cómo usarlas y personalizarlos más aún." #. type: deffn -#: guix-git/doc/guix.texi:34469 +#: guix-git/doc/guix.texi:34908 #, no-wrap msgid "{Scheme Procedure} raw-initrd @var{file-systems} @" msgstr "{Procedimiento Scheme} raw-initrd @var{sistemas-de-archivos} @" #. type: deffn -#: guix-git/doc/guix.texi:34483 +#: guix-git/doc/guix.texi:34922 #, fuzzy msgid "[#:linux-modules '()] [#:mapped-devices '()] @ [#:keyboard-layout #f] @ [#:helper-packages '()] [#:qemu-networking? #f] [#:volatile-root? #f] Return a derivation that builds a raw initrd. @var{file-systems} is a list of file systems to be mounted by the initrd, possibly in addition to the root file system specified on the kernel command line via @option{--root}. @var{linux-modules} is a list of kernel modules to be loaded at boot time. @var{mapped-devices} is a list of device mappings to realize before @var{file-systems} are mounted (@pxref{Mapped Devices}). @var{helper-packages} is a list of packages to be copied in the initrd. It may include @code{e2fsck/static} or other packages needed by the initrd to check the root file system." msgstr "" @@ -66978,56 +67942,56 @@ msgstr "" "Devuelve una derivación que construye una imagen de inicio en RAM (initrd) en crudo. @var{sistemas-de-archivos} es una lista de sistemas de archivos que serán montados por initrd, posiblemente en adición al sistema de archivos raíz especificado en la línea de órdenes del núcleo vía @option{--root}. @var{linux-modules} es una lista de módulos del núcleo a ser cargados en tiempo de arranque. @var{mapped-devices} es una lista de dispositivos asociados a realizar antes de montar @var{sistemas-de-archivos} (@pxref{Mapped Devices}). @var{helper-packages} es una lista de paquetes a ser copiados en el initrd. Puede incluir @code{e2fsck/static} o otros paquetes necesarios en la imagen de RAM para comprobar el sistema de archivos raíz." #. type: deffn -#: guix-git/doc/guix.texi:34489 guix-git/doc/guix.texi:34513 +#: guix-git/doc/guix.texi:34928 guix-git/doc/guix.texi:34952 msgid "When true, @var{keyboard-layout} is a @code{} record denoting the desired console keyboard layout. This is done before @var{mapped-devices} are set up and before @var{file-systems} are mounted such that, should the user need to enter a passphrase or use the REPL, this happens using the intended keyboard layout." msgstr "Cuando su valor es verdadero, @var{keyboard-layout} es un registro @code{} que denota la distribución de teclado en consola deseada. Esto se realiza previamente a que los dispositivos configurados en @var{mapped-devices} se inicien y antes de que los sistemas de archivos en @var{file-systems} se monten, de manera que, en caso de que la usuaria tuviese que introducir una contraseña o usar la sesión interactiva, esto suceda usando la distribución de teclado deseada." #. type: deffn -#: guix-git/doc/guix.texi:34493 +#: guix-git/doc/guix.texi:34932 msgid "When @var{qemu-networking?} is true, set up networking with the standard QEMU parameters. When @var{virtio?} is true, load additional modules so that the initrd can be used as a QEMU guest with para-virtualized I/O drivers." msgstr "Cuando @var{qemu-networking?} es verdadero, configura la red con los parámetros QEMU estándar. Cuando @var{virtio?} es verdadero, carga módulos adicionales para que la imagen en RAM pueda ser usada como un sistema virtualizado por QEMU con controladores paravirtualizados de E/S." #. type: deffn -#: guix-git/doc/guix.texi:34496 +#: guix-git/doc/guix.texi:34935 msgid "When @var{volatile-root?} is true, the root file system is writable but any changes to it are lost." msgstr "Cuando @var{volatile-root?} es verdadero, el sistema de archivos raíz tiene permisos de escritura pero cualquier cambio realizado se perderá." #. type: deffn -#: guix-git/doc/guix.texi:34498 +#: guix-git/doc/guix.texi:34937 #, no-wrap msgid "{Scheme Procedure} base-initrd @var{file-systems} @" msgstr "{Procedimiento Scheme} base-initrd @var{sistemas-de-archivos} @" #. type: deffn -#: guix-git/doc/guix.texi:34507 +#: guix-git/doc/guix.texi:34946 msgid "[#:mapped-devices '()] [#:keyboard-layout #f] @ [#:qemu-networking? #f] [#:volatile-root? #f] @ [#:linux-modules '()] Return as a file-like object a generic initrd, with kernel modules taken from @var{linux}. @var{file-systems} is a list of file-systems to be mounted by the initrd, possibly in addition to the root file system specified on the kernel command line via @option{--root}. @var{mapped-devices} is a list of device mappings to realize before @var{file-systems} are mounted." msgstr "" "[#:mapped-devices '()] [#:keyboard-layout #f] @ [#:qemu-networking? #f] [#:volatile-root? #f] @ [#:linux-modules '()]\n" "Devuelve como un objeto tipo-archivo una imagen de inicio en RAM genérica, con los módulos del núcleo tomados de @var{linux}. @var{sistemas-de-archivos} es una lista de sistemas de archivos listos para ser montados por la imagen, posiblemente en adición al sistema de archivos raíz especificado en la línea de órdenes del núcleo via @option{--root}. @var{mapped-devices} es una lista de asociación de dispositivos a realizar antes de montar los @var{sistemas-de-archivos}." #. type: deffn -#: guix-git/doc/guix.texi:34515 +#: guix-git/doc/guix.texi:34954 msgid "@var{qemu-networking?} and @var{volatile-root?} behaves as in @code{raw-initrd}." msgstr "@var{qemu-networking?} y @var{volatile-root?} funcionan como en @code{raw-initrd}." #. type: deffn -#: guix-git/doc/guix.texi:34520 +#: guix-git/doc/guix.texi:34959 msgid "The initrd is automatically populated with all the kernel modules necessary for @var{file-systems} and for the given options. Additional kernel modules can be listed in @var{linux-modules}. They will be added to the initrd, and loaded at boot time in the order in which they appear." msgstr "El initrd incorpora automáticamente todos los módulos del núcleo necesarios para @var{sistemas-de-archivos} y para las opciones proporcionadas. Módulos del núcleo adicionales pueden proporcionarse a través de @var{linux-modules}. Se añadirán al initrd y se cargarán en tiempo de arranque en el orden que aparezcan." #. type: Plain text -#: guix-git/doc/guix.texi:34527 +#: guix-git/doc/guix.texi:34966 msgid "Needless to say, the initrds we produce and use embed a statically-linked Guile, and the initialization program is a Guile program. That gives a lot of flexibility. The @code{expression->initrd} procedure builds such an initrd, given the program to run in that initrd." msgstr "No es necesario decir que los initrd que producimos y usamos embeben un Guile enlazado estáticamente, y que el programa de inicialización es un programa Guile. Esto proporciona mucha flexibilidad. El procedimiento @code{expression->initrd} construye un initrd de ese tipo, una vez proporcionado el programa a ejecutar en dicho initrd." #. type: deffn -#: guix-git/doc/guix.texi:34528 +#: guix-git/doc/guix.texi:34967 #, no-wrap msgid "{Scheme Procedure} expression->initrd @var{exp} @" msgstr "{Procedimiento Scheme} expression->initrd @var{exp} @" #. type: deffn -#: guix-git/doc/guix.texi:34534 +#: guix-git/doc/guix.texi:34973 #, fuzzy #| msgid "[#:guile %guile-3.0-static-stripped] [#:name \"guile-initrd\"] Return as a file-like object a Linux initrd (a gzipped cpio archive) containing @var{guile} and that evaluates @var{exp}, a G-expression, upon booting. All the derivations referenced by @var{exp} are automatically copied to the initrd." msgid "[#:guile %guile-static-stripped] [#:name \"guile-initrd\"] Return as a file-like object a Linux initrd (a gzipped cpio archive) containing @var{guile} and that evaluates @var{exp}, a G-expression, upon booting. All the derivations referenced by @var{exp} are automatically copied to the initrd." @@ -67036,112 +68000,112 @@ msgstr "" "Devuelve como un objeto tipo-archivo el initrd de Linux (un archivador cpio comprimido con gzip) que contiene @var{guile} y que evalúa a @var{exp}, una expresión-G, al arranque. Todas las derivaciones a las que @var{exp} hace referencia se copian automáticamente en el initrd." #. type: cindex -#: guix-git/doc/guix.texi:34540 +#: guix-git/doc/guix.texi:34979 #, no-wrap msgid "boot loader" msgstr "cargador de arranque" #. type: Plain text -#: guix-git/doc/guix.texi:34547 +#: guix-git/doc/guix.texi:34986 msgid "The operating system supports multiple bootloaders. The bootloader is configured using @code{bootloader-configuration} declaration. All the fields of this structure are bootloader agnostic except for one field, @code{bootloader} that indicates the bootloader to be configured and installed." msgstr "El sistema operativo permite varios cargadores de arranque. El cargador de arranque se configura mediante el uso de la declaración @code{bootloader-configuration}. Todos los campos de esta estructura son independientes del cargador de arranque excepto uno, @code{bootloader}, que indica el cargador de arranque a configurar e instalar." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:34552 +#: guix-git/doc/guix.texi:34991 msgid "Some of the bootloaders do not honor every field of @code{bootloader-configuration}. For instance, the extlinux bootloader does not support themes and thus ignores the @code{theme} field." msgstr "Algunos de los cargadores de arranque no inspeccionan todos los campos de @code{bootloader-configuration}. Por ejemplo, el cargador de arranque extlinux no permite temas y por lo tanto ignora el campo @code{theme}." #. type: deftp -#: guix-git/doc/guix.texi:34553 +#: guix-git/doc/guix.texi:34992 #, no-wrap msgid "{Data Type} bootloader-configuration" msgstr "{Tipo de datos} bootloader-configuration" #. type: deftp -#: guix-git/doc/guix.texi:34555 +#: guix-git/doc/guix.texi:34994 msgid "The type of a bootloader configuration declaration." msgstr "El tipo de una declaración de configuración del cargador de arranque." #. type: cindex -#: guix-git/doc/guix.texi:34559 +#: guix-git/doc/guix.texi:34998 #, no-wrap msgid "EFI, bootloader" msgstr "EFI, cargador de arranque" #. type: cindex -#: guix-git/doc/guix.texi:34560 +#: guix-git/doc/guix.texi:34999 #, no-wrap msgid "UEFI, bootloader" msgstr "UEFI, cargador de arranque" #. type: cindex -#: guix-git/doc/guix.texi:34561 +#: guix-git/doc/guix.texi:35000 #, no-wrap msgid "BIOS, bootloader" msgstr "BIOS, cargador de arranque" #. type: table -#: guix-git/doc/guix.texi:34566 +#: guix-git/doc/guix.texi:35005 #, fuzzy msgid "The bootloader to use, as a @code{bootloader} object. For now @code{grub-bootloader}, @code{grub-efi-bootloader}, @code{grub-efi-netboot-bootloader}, @code{extlinux-bootloader} and @code{u-boot-bootloader} are supported." msgstr "El cargador de arranque usado, como un objeto @code{bootloader}. De momento se aceptan @code{grub-bootloader}, @code{grub-efi-bootloader}, @code{grub-efi-netboot-bootloader}, @code{extlinux-bootloader} y @code{u-boot-bootloader}." #. type: cindex -#: guix-git/doc/guix.texi:34567 +#: guix-git/doc/guix.texi:35006 #, no-wrap msgid "ARM, bootloaders" msgstr "ARM, cargadores de arranque" #. type: cindex -#: guix-git/doc/guix.texi:34568 +#: guix-git/doc/guix.texi:35007 #, no-wrap msgid "AArch64, bootloaders" msgstr "AArch64, cargadores de arranque" #. type: table -#: guix-git/doc/guix.texi:34573 +#: guix-git/doc/guix.texi:35012 msgid "Available bootloaders are described in @code{(gnu bootloader @dots{})} modules. In particular, @code{(gnu bootloader u-boot)} contains definitions of bootloaders for a wide range of ARM and AArch64 systems, using the @uref{https://www.denx.de/wiki/U-Boot/, U-Boot bootloader}." msgstr "Los cargadores de arranque se describen en los módulos @code{(gnu bootloader @dots{})}. En particular, @code{(gnu bootloader u-boot)} contiene definiciones de cargadores de arranque para un amplio rango de sistemas ARM y AArch64, mediante el uso del @uref{https://www.denx.de/wiki/U-Boot/, cargador de arranque U-Boot}." #. type: table -#: guix-git/doc/guix.texi:34579 +#: guix-git/doc/guix.texi:35018 msgid "@code{grub-efi-bootloader} allows to boot on modern systems using the @dfn{Unified Extensible Firmware Interface} (UEFI). This is what you should use if the installation image contains a @file{/sys/firmware/efi} directory when you boot it on your system." msgstr "@code{grub-efi-bootloader} permite el arranque en sistemas modernos que usan la @dfn{interfaz extendida de firmware unificada} (UEFI). Es el que debería ser usado si la imagen de instalación contiene un directorio @file{/sys/firmware/efi} cuando la arranca en su sistema." # FUZZY #. type: table -#: guix-git/doc/guix.texi:34583 +#: guix-git/doc/guix.texi:35022 msgid "@code{grub-bootloader} allows you to boot in particular Intel-based machines in ``legacy'' BIOS mode." msgstr "@code{grub-bootloader} permite el arranque en máquinas basadas en Intel en modo ``antiguo'' BIOS." #. type: vindex -#: guix-git/doc/guix.texi:34584 +#: guix-git/doc/guix.texi:35023 #, no-wrap msgid "grub-efi-netboot-bootloader" msgstr "grub-efi-netboot-bootloader" # FUZZY #. type: table -#: guix-git/doc/guix.texi:34588 +#: guix-git/doc/guix.texi:35027 #, fuzzy msgid "@code{grub-efi-netboot-bootloader} allows you to boot your system over network through TFTP@. In combination with an NFS root file system this allows you to build a diskless Guix system." msgstr "@code{grub-efi-netboot-bootloader} le permite arrancar su sistema por red mediante el uso de TFTP. En combinación con un sistema de archivos raíz NFS le permite construir un sistema Guix sin discos." #. type: table -#: guix-git/doc/guix.texi:34594 +#: guix-git/doc/guix.texi:35033 #, fuzzy #| msgid "The installation of the @code{grub-efi-netboot-bootloader} generates the content of the TFTP root directory at @code{target} (@pxref{Bootloader Configuration, @code{target}}), to be served by a TFTP server. You may want to mount your TFTP server directory onto @code{target} to move the required files to the TFTP server automatically." msgid "The installation of the @code{grub-efi-netboot-bootloader} generates the content of the TFTP root directory at @code{targets} (@pxref{Bootloader Configuration, @code{targets}}), to be served by a TFTP server. You may want to mount your TFTP server directories onto the @code{targets} to move the required files to the TFTP server automatically." msgstr "La instalación de @code{grub-efi-netboot-bootloader} genera el contenido del directorio raíz de TFTP en @code{target} (@pxref{Bootloader Configuration, @code{target}}), para que sea proporcionado por un servidor TFTP. Puede que desee montar el directorio de su servidor TFTP sobre @code{target} para mover los archivos necesarios al servidor TFTP de manera automática." #. type: table -#: guix-git/doc/guix.texi:34603 +#: guix-git/doc/guix.texi:35042 msgid "If you plan to use an NFS root file system as well (actually if you mount the store from an NFS share), then the TFTP server needs to serve the file @file{/boot/grub/grub.cfg} and other files from the store (like GRUBs background image, the kernel (@pxref{operating-system Reference, @code{kernel}}) and the initrd (@pxref{operating-system Reference, @code{initrd}})), too. All these files from the store will be accessed by GRUB through TFTP with their normal store path, for example as @file{tftp://tftp-server/gnu/store/…-initrd/initrd.cpio.gz}." msgstr "Si tiene pensado usar también un sistema de archivos raíz NFS (en realidad si monta el almacén desde un directorio compartido con NFS) el servidor TFTP también debe proporcionar el archivo @file{/boot/grub/grub.cfg} y otros archivos desde el almacén (como las imágenes de fondo de GRUB, el núcleo (@pxref{operating-system Reference, @code{kernel}}) y el disco en RAM para el arranque (@pxref{operating-system Reference, @code{initrd}})). GRUB accederá a todos estos archivos del almacén a través de TFTP con su ruta del almacén habitual, como por ejemplo @file{tftp://tftp-server/gnu/store/…-initrd/initrd.cpio.gz}." #. type: table -#: guix-git/doc/guix.texi:34612 +#: guix-git/doc/guix.texi:35051 #, fuzzy #| msgid "Two symlinks are created to make this possible. The first symlink is @code{target}@file{/efi/Guix/boot/grub/grub.cfg} pointing to @file{../../../boot/grub/grub.cfg}, where @code{target} may be @file{/boot}. In this case the link is not leaving the served TFTP root directory, but otherwise it does. The second link is @code{target}@file{/gnu/store} and points to @file{../gnu/store}. This link is leaving the served TFTP root directory." msgid "Two symlinks are created to make this possible. For each target in the @code{targets} field, the first symlink is @samp{target}@file{/efi/Guix/boot/grub/grub.cfg} pointing to @file{../../../boot/grub/grub.cfg}, where @samp{target} may be @file{/boot}. In this case the link is not leaving the served TFTP root directory, but otherwise it does. The second link is @samp{target}@file{/gnu/store} and points to @file{../gnu/store}. This link is leaving the served TFTP root directory." @@ -67149,176 +68113,176 @@ msgstr "Dos enlaces simbólicos se crean para hacer esto posible. El primer enla # TODO: — -> --- #. type: table -#: guix-git/doc/guix.texi:34618 +#: guix-git/doc/guix.texi:35057 #, fuzzy #| msgid "The assumption behind all this is that you have an NFS server exporting the root file system for your Guix system, and additionally a TFTP server exporting your @code{target} directory—usually @file{/boot}—from that same root file system for your Guix system. In this constellation the symlinks will work." msgid "The assumption behind all this is that you have an NFS server exporting the root file system for your Guix system, and additionally a TFTP server exporting your @code{targets} directories—usually a single @file{/boot}—from that same root file system for your Guix system. In this constellation the symlinks will work." msgstr "Todo esto asume que tiene un servidor NFS que exporta el sistema de archivos raíz de su sistema Guix, y de manera adicional un servidor TFTP que exporta su directorio @code{target}---habitualmente @file{/boot}---desde la misma raíz del sistema de archivos que su sistema Guix. Si se dan estos factores, los enlaces funcionarán." #. type: table -#: guix-git/doc/guix.texi:34623 +#: guix-git/doc/guix.texi:35062 #, fuzzy #| msgid "For other constellations you will have to program your own bootloader installer, which then takes care to make necessary files from the store accessible through TFTP, for example by copying them into the TFTP root directory at @code{target}." msgid "For other constellations you will have to program your own bootloader installer, which then takes care to make necessary files from the store accessible through TFTP, for example by copying them into the TFTP root directory to your @code{targets}." msgstr "En otros casos debe programar su propio instalador del cargador de arranque, el cual se encargue de hacer que los archivos necesarios sean accesibles a través de TFTP, por ejemplo copiando dichos archivos al directorio raíz de TFTP en @code{target}." #. type: table -#: guix-git/doc/guix.texi:34628 +#: guix-git/doc/guix.texi:35067 #, fuzzy msgid "It is important to note that symlinks pointing outside the TFTP root directory may need to be allowed in the configuration of your TFTP server. Further the store link exposes the whole store through TFTP@. Both points need to be considered carefully for security aspects." msgstr "Es importante que se fije en que puede ser necesario permitir los enlaces simbólicos que apunten fuera del directorio raíz de TFTP en la configuración de su servidor TFTP. Es más, el enlace del almacén expone el almacén al completo a través de TFTP. Ambos puntos deben considerarse meticulosamente en relación a sus implicaciones en el ámbito seguridad." #. type: table -#: guix-git/doc/guix.texi:34633 +#: guix-git/doc/guix.texi:35072 msgid "Beside the @code{grub-efi-netboot-bootloader}, the already mentioned TFTP and NFS servers, you also need a properly configured DHCP server to make the booting over netboot possible. For all this we can currently only recommend you to look for instructions about @acronym{PXE, Preboot eXecution Environment}." msgstr "Además de lo expresado anteriormente---@code{grub-efi-netboot-bootloader}, los servidores TFTP y NFS---también necesitará un servidor DHCP configurado correctamente para hacer posible el arranque a través de la red. Para esto únicamente podemos recomendarle por el momento que busque información sobre @acronym{PXE, Preboot eXecution Environment}." #. type: table -#: guix-git/doc/guix.texi:34637 +#: guix-git/doc/guix.texi:35076 #, fuzzy #| msgid "This is a string denoting the target onto which to install the bootloader." msgid "This is a list of strings denoting the targets onto which to install the bootloader." msgstr "Una cadena que indica donde se instalará el cargador de arranque." #. type: table -#: guix-git/doc/guix.texi:34647 +#: guix-git/doc/guix.texi:35086 #, fuzzy #| msgid "The interpretation depends on the bootloader in question. For @code{grub-bootloader}, for example, it should be a device name understood by the bootloader @command{installer} command, such as @code{/dev/sda} or @code{(hd0)} (@pxref{Invoking grub-install,,, grub, GNU GRUB Manual}). For @code{grub-efi-bootloader}, it should be the mount point of the EFI file system, usually @file{/boot/efi}. For @code{grub-efi-netboot-bootloader}, @code{target} should be the mount point corresponding to the TFTP root directory of your TFTP server." msgid "The interpretation of targets depends on the bootloader in question. For @code{grub-bootloader}, for example, they should be device names understood by the bootloader @command{installer} command, such as @code{/dev/sda} or @code{(hd0)} (@pxref{Invoking grub-install,,, grub, GNU GRUB Manual}). For @code{grub-efi-bootloader}, they should be mount points of the EFI file system, usually @file{/boot/efi}. For @code{grub-efi-netboot-bootloader}, @code{targets} should be the mount points corresponding to TFTP root directories served by your TFTP server." msgstr "La interpretación depende del cargador de arranque en cuestión. Cuando se usa @code{grub-bootloader}, por ejemplo, debe ser un nombre de dispositivo que entienda la orden de instalación (@command{installer}) del cargador de arranque, como @code{/dev/sda} o @code{(hd0)} (@pxref{Invoking grub-install,,, grub, GNU GRUB Manual}). Con @code{grub-efi-bootloader}, debe apuntar al punto de montaje del sistema de archivos EFI, habitualmente @file{/boot/efi}. Con @code{grub-efi-netboot-bootloader}, @code{target} debe indicar el punto de montaje correspondiente al directorio raíz de TFTP de su servidor TFTP." #. type: item -#: guix-git/doc/guix.texi:34648 +#: guix-git/doc/guix.texi:35087 #, no-wrap msgid "@code{menu-entries} (default: @code{()})" msgstr "@code{menu-entries} (predeterminadas: @code{()})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:34652 +#: guix-git/doc/guix.texi:35091 msgid "A possibly empty list of @code{menu-entry} objects (see below), denoting entries to appear in the bootloader menu, in addition to the current system entry and the entry pointing to previous system generations." msgstr "Una lista posiblemente vacía de objetos @code{menu-entry} (véase a continuación), que indican entradas que deben aparecer en el menú del cargador de arranque, además de la entrada del sistema actual y la entrada que apunta a generaciones previas del sistema." #. type: item -#: guix-git/doc/guix.texi:34653 +#: guix-git/doc/guix.texi:35092 #, no-wrap msgid "@code{default-entry} (default: @code{0})" msgstr "@code{default-entry} (predeterminada: @code{0})" #. type: table -#: guix-git/doc/guix.texi:34656 +#: guix-git/doc/guix.texi:35095 msgid "The index of the default boot menu entry. Index 0 is for the entry of the current system." msgstr "El índice de la entrada del menú de arranque por omisión. El índice 0 es para la entrada del sistema actual." #. type: item -#: guix-git/doc/guix.texi:34657 +#: guix-git/doc/guix.texi:35096 #, no-wrap msgid "@code{timeout} (default: @code{5})" msgstr "@code{timeout} (predeterminado: @code{5})" #. type: table -#: guix-git/doc/guix.texi:34660 +#: guix-git/doc/guix.texi:35099 msgid "The number of seconds to wait for keyboard input before booting. Set to 0 to boot immediately, and to -1 to wait indefinitely." msgstr "El número de segundos que se esperará entrada por el teclado antes de arrancar. El valor 0 indica que se debe arrancar de forma inmediata, y -1 que se debe esperar indefinidamente." #. type: cindex -#: guix-git/doc/guix.texi:34661 +#: guix-git/doc/guix.texi:35100 #, no-wrap msgid "keyboard layout, for the bootloader" msgstr "distribución de teclado, para el gestor de arranque" #. type: table -#: guix-git/doc/guix.texi:34665 +#: guix-git/doc/guix.texi:35104 msgid "If this is @code{#f}, the bootloader's menu (if any) uses the default keyboard layout, usually US@tie{}English (``qwerty'')." msgstr "Si es @code{#f}, el menú del cargador de arranque (si existe) usa la distribución de teclado predeterminada, habitualmente inglés estadounidense (``qwerty'')." #. type: table -#: guix-git/doc/guix.texi:34668 +#: guix-git/doc/guix.texi:35107 msgid "Otherwise, this must be a @code{keyboard-layout} object (@pxref{Keyboard Layout})." msgstr "En otro caso, debe ser un objeto @code{keyboard-layout} (@pxref{Keyboard Layout})." #. type: quotation -#: guix-git/doc/guix.texi:34672 +#: guix-git/doc/guix.texi:35111 msgid "This option is currently ignored by bootloaders other than @code{grub} and @code{grub-efi}." msgstr "Esta opción se ignora actualmente por todos los cargadores de arranque menos @code{grub} y @code{grub-efi}." #. type: item -#: guix-git/doc/guix.texi:34674 +#: guix-git/doc/guix.texi:35113 #, no-wrap msgid "@code{theme} (default: @var{#f})" msgstr "@code{theme} (predeterminado: @var{#f})" #. type: table -#: guix-git/doc/guix.texi:34678 +#: guix-git/doc/guix.texi:35117 msgid "The bootloader theme object describing the theme to use. If no theme is provided, some bootloaders might use a default theme, that's true for GRUB." msgstr "El objeto del tema del cargador de arranque que describe el tema usado. Si no se proporciona ningún tema, algunos cargadores de arranque pueden usar un tema por omisión, lo cual es cierto en GRUB." #. type: item -#: guix-git/doc/guix.texi:34679 +#: guix-git/doc/guix.texi:35118 #, no-wrap msgid "@code{terminal-outputs} (default: @code{'(gfxterm)})" msgstr "@code{terminal-outputs} (predeterminadas: @code{'(gfxterm)})" #. type: table -#: guix-git/doc/guix.texi:34686 +#: guix-git/doc/guix.texi:35125 msgid "The output terminals used for the bootloader boot menu, as a list of symbols. GRUB accepts the values: @code{console}, @code{serial}, @code{serial_@{0-3@}}, @code{gfxterm}, @code{vga_text}, @code{mda_text}, @code{morse}, and @code{pkmodem}. This field corresponds to the GRUB variable @code{GRUB_TERMINAL_OUTPUT} (@pxref{Simple configuration,,, grub,GNU GRUB manual})." msgstr "Los terminales de salida que se usarán para el menú de arranque, como una lista de símbolos. GRUB acepta los valores: @code{console}, @code{serial}, @code{serial_@{0-3@}}, @code{gfxterm}, @code{vga_text}, @code{mda_text}, @code{morse} y @code{pkmodem}. Este campo corresponde con la variable @code{GRUB_TERMINAL_OUTPUT} (@pxref{Simple configuration,,, grub, GNU GRUB manual})." #. type: item -#: guix-git/doc/guix.texi:34687 +#: guix-git/doc/guix.texi:35126 #, no-wrap msgid "@code{terminal-inputs} (default: @code{'()})" msgstr "@code{terminal-inputs} (predeterminadas: @code{'()})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:34695 +#: guix-git/doc/guix.texi:35134 msgid "The input terminals used for the bootloader boot menu, as a list of symbols. For GRUB, the default is the native platform terminal as determined at run-time. GRUB accepts the values: @code{console}, @code{serial}, @code{serial_@{0-3@}}, @code{at_keyboard}, and @code{usb_keyboard}. This field corresponds to the GRUB variable @code{GRUB_TERMINAL_INPUT} (@pxref{Simple configuration,,, grub,GNU GRUB manual})." msgstr "Los terminales de entrada que se usarán para el menú de arranque, como una lista de símbolos. Para GRUB, el valor predeterminado es el terminal nativo de la plataforma determinado en tiempo de ejecución. GRUB acepta los valores: @code{console}, @code{serial}, @code{serial@{0-3@}}, @code{at_keyboard} y @code{usb_keyboard}. Este campo corresponde a la variable GRUB @code{GRUB_TERMINAL_INPUT} (@pxref{Simple configuration,,, grub,GNU GRUB manual})." #. type: item -#: guix-git/doc/guix.texi:34696 +#: guix-git/doc/guix.texi:35135 #, no-wrap msgid "@code{serial-unit} (default: @code{#f})" msgstr "@code{serial-unit} (predeterminada: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:34700 +#: guix-git/doc/guix.texi:35139 msgid "The serial unit used by the bootloader, as an integer from 0 to 3. For GRUB, it is chosen at run-time; currently GRUB chooses 0, which corresponds to COM1 (@pxref{Serial terminal,,, grub,GNU GRUB manual})." msgstr "La unidad serie usada por el cargador de arranque, como un entero del 0 al 3. Para GRUB, se selecciona en tiempo de ejecución; actualmente GRUB selecciona 0 lo que corresponde a COM1 (@pxref{Serial terminal,,, grub,GNU GRUB manual})." #. type: item -#: guix-git/doc/guix.texi:34701 +#: guix-git/doc/guix.texi:35140 #, no-wrap msgid "@code{serial-speed} (default: @code{#f})" msgstr "@code{serial-speed} (predeterminada: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:34705 +#: guix-git/doc/guix.texi:35144 msgid "The speed of the serial interface, as an integer. For GRUB, the default value is chosen at run-time; currently GRUB chooses 9600@tie{}bps (@pxref{Serial terminal,,, grub,GNU GRUB manual})." msgstr "La velocidad de la interfaz serie, como un entero. Para GRUB, el valor predeterminado se selecciona en tiempo de ejecución, actualmente GRUB selecciona 9600@tie{}bps (@pxref{Serial terminal,,, grub,GNU GRUB manual})." #. type: cindex -#: guix-git/doc/guix.texi:34709 +#: guix-git/doc/guix.texi:35148 #, no-wrap msgid "dual boot" msgstr "arranque dual" #. type: cindex -#: guix-git/doc/guix.texi:34710 +#: guix-git/doc/guix.texi:35149 #, no-wrap msgid "boot menu" msgstr "menú de arranque" #. type: Plain text -#: guix-git/doc/guix.texi:34716 +#: guix-git/doc/guix.texi:35155 msgid "Should you want to list additional boot menu entries @i{via} the @code{menu-entries} field above, you will need to create them with the @code{menu-entry} form. For example, imagine you want to be able to boot another distro (hard to imagine!), you can define a menu entry along these lines:" msgstr "Si desease listar entradas adicionales para el menú de arranque a través del campo @code{menu-entries} mostrado previamente, deberá crearlas con la forma @code{menu-entry}. Por ejemplo, imagine que desea ser capaz de arrancar otra distribución (¡difícil de imaginar!), puede definir una entrada de menú de esta forma:" #. type: lisp -#: guix-git/doc/guix.texi:34723 +#: guix-git/doc/guix.texi:35162 #, no-wrap msgid "" "(menu-entry\n" @@ -67334,132 +68298,132 @@ msgstr "" " (initrd \"/boot/old/initrd\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:34726 +#: guix-git/doc/guix.texi:35165 msgid "Details below." msgstr "Los detalles se encuentran a continuación." #. type: deftp -#: guix-git/doc/guix.texi:34727 +#: guix-git/doc/guix.texi:35166 #, no-wrap msgid "{Data Type} menu-entry" msgstr "{Tipo de datos} menu-entry" #. type: deftp -#: guix-git/doc/guix.texi:34729 +#: guix-git/doc/guix.texi:35168 msgid "The type of an entry in the bootloader menu." msgstr "El tipo de una entrada en el menú del cargador de arranque." #. type: table -#: guix-git/doc/guix.texi:34734 +#: guix-git/doc/guix.texi:35173 msgid "The label to show in the menu---e.g., @code{\"GNU\"}." msgstr "La etiqueta a mostrar en el menú---por ejemplo, @code{\"GNU\"}." #. type: item -#: guix-git/doc/guix.texi:34735 +#: guix-git/doc/guix.texi:35174 #, no-wrap msgid "@code{linux} (default: @code{#f})" msgstr "@code{linux} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:34737 +#: guix-git/doc/guix.texi:35176 msgid "The Linux kernel image to boot, for example:" msgstr "La imagen del núcleo Linux a arrancar, por ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:34740 +#: guix-git/doc/guix.texi:35179 #, no-wrap msgid "(file-append linux-libre \"/bzImage\")\n" msgstr "(file-append linux-libre \"/bzImage\")\n" #. type: table -#: guix-git/doc/guix.texi:34745 +#: guix-git/doc/guix.texi:35184 msgid "For GRUB, it is also possible to specify a device explicitly in the file path using GRUB's device naming convention (@pxref{Naming convention,,, grub, GNU GRUB manual}), for example:" msgstr "Con GRUB, también es posible especificar un dispositivo explícitamente mediante el uso de la convención de nombres de dispositivo de GRUB (@pxref{Naming convention,,, grub, GNU GRUB manual}), por ejemplo:" #. type: example -#: guix-git/doc/guix.texi:34748 +#: guix-git/doc/guix.texi:35187 #, no-wrap msgid "\"(hd0,msdos1)/boot/vmlinuz\"\n" msgstr "\"(hd0,msdos1)/boot/vmlinuz\"\n" #. type: table -#: guix-git/doc/guix.texi:34752 +#: guix-git/doc/guix.texi:35191 msgid "If the device is specified explicitly as above, then the @code{device} field is ignored entirely." msgstr "Si se especifica el dispositivo explícitamente como en el ejemplo anterior, el campo @code{device} se ignora completamente." #. type: item -#: guix-git/doc/guix.texi:34753 +#: guix-git/doc/guix.texi:35192 #, no-wrap msgid "@code{linux-arguments} (default: @code{()})" msgstr "@code{linux-arguments} (predeterminados: @code{()})" #. type: table -#: guix-git/doc/guix.texi:34756 +#: guix-git/doc/guix.texi:35195 msgid "The list of extra Linux kernel command-line arguments---e.g., @code{(\"console=ttyS0\")}." msgstr "La lista de parámetros extra de línea de órdenes para el núcleo Linux---por ejemplo, @code{(\"console=ttyS0\")}." #. type: item -#: guix-git/doc/guix.texi:34757 +#: guix-git/doc/guix.texi:35196 #, no-wrap msgid "@code{initrd} (default: @code{#f})" msgstr "@code{initrd} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:34760 +#: guix-git/doc/guix.texi:35199 msgid "A G-Expression or string denoting the file name of the initial RAM disk to use (@pxref{G-Expressions})." msgstr "Una expresión-G o una cadena que contiene el nombre de archivo del disco inicial en RAM usado (@pxref{G-Expressions})." #. type: table -#: guix-git/doc/guix.texi:34764 +#: guix-git/doc/guix.texi:35203 msgid "The device where the kernel and initrd are to be found---i.e., for GRUB, @dfn{root} for this menu entry (@pxref{root,,, grub, GNU GRUB manual})." msgstr "El dispositivo donde se encuentran el núcleo y el initrd---es decir, para GRUB, @dfn{raíz} de esta entrada de menú (@pxref{root,,, grub, GNU GRUB manual})." #. type: table -#: guix-git/doc/guix.texi:34770 +#: guix-git/doc/guix.texi:35209 msgid "This may be a file system label (a string), a file system UUID (a bytevector, @pxref{File Systems}), or @code{#f}, in which case the bootloader will search the device containing the file specified by the @code{linux} field (@pxref{search,,, grub, GNU GRUB manual}). It must @emph{not} be an OS device name such as @file{/dev/sda1}." msgstr "Puede ser una etiqueta de sistema de archivos (una cadena), un UUID de sistema de archivos (un vector de bytes, @pxref{File Systems}), o @code{#f}, en cuyo caso el cargador de arranque buscará el dispositivo que contenga el archivo especificado por el campo @code{linux} (@pxref{search,,, grub, GNU GRUB manual}). @emph{No} debe ser un nombre de dispositivo del SO como @file{/dev/sda1}." #. type: item -#: guix-git/doc/guix.texi:34771 +#: guix-git/doc/guix.texi:35210 #, no-wrap msgid "@code{multiboot-kernel} (default: @code{#f})" msgstr "@code{multiboot-kernel} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:34775 +#: guix-git/doc/guix.texi:35214 msgid "The kernel to boot in Multiboot-mode (@pxref{multiboot,,, grub, GNU GRUB manual}). When this field is set, a Multiboot menu-entry is generated. For example:" msgstr "El núcleo a arrancar en modo Multiboot (@pxref{multiboot,,, grub, GNU GRUB manual}). Cuando se proporciona este campo, se genera una entrada Multiboot en el menú. Por ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:34778 +#: guix-git/doc/guix.texi:35217 #, no-wrap msgid "(file-append mach \"/boot/gnumach\")\n" msgstr "(file-append mach \"/boot/gnumach\")\n" #. type: item -#: guix-git/doc/guix.texi:34780 +#: guix-git/doc/guix.texi:35219 #, no-wrap msgid "@code{multiboot-arguments} (default: @code{()})" msgstr "@code{multiboot-arguments} (predeterminados: @code{()})" #. type: table -#: guix-git/doc/guix.texi:34782 +#: guix-git/doc/guix.texi:35221 msgid "The list of extra command-line arguments for the multiboot-kernel." msgstr "Lista de parámetros adicionales que se proporcionan al núcleo Multiboot en la línea de órdenes." #. type: item -#: guix-git/doc/guix.texi:34783 +#: guix-git/doc/guix.texi:35222 #, no-wrap msgid "@code{multiboot-modules} (default: @code{()})" msgstr "@code{multiboot-modules} (predeterminados: @code{()})" #. type: table -#: guix-git/doc/guix.texi:34785 +#: guix-git/doc/guix.texi:35224 msgid "The list of commands for loading Multiboot modules. For example:" msgstr "Lista de ordenes para cargar módulos de Multiboot. Por ejemplo:" #. type: lisp -#: guix-git/doc/guix.texi:34791 +#: guix-git/doc/guix.texi:35230 #, no-wrap msgid "" "(list (list (file-append hurd \"/hurd/ext2fs.static\") \"ext2fs\"\n" @@ -67473,73 +68437,73 @@ msgstr "" " @dots{}))\n" #. type: cindex -#: guix-git/doc/guix.texi:34796 guix-git/doc/guix.texi:34855 +#: guix-git/doc/guix.texi:35235 guix-git/doc/guix.texi:35294 #, no-wrap msgid "HDPI" msgstr "HDPI" #. type: cindex -#: guix-git/doc/guix.texi:34797 guix-git/doc/guix.texi:34856 +#: guix-git/doc/guix.texi:35236 guix-git/doc/guix.texi:35295 #, no-wrap msgid "HiDPI" msgstr "HiDPI" #. type: cindex -#: guix-git/doc/guix.texi:34798 guix-git/doc/guix.texi:34857 +#: guix-git/doc/guix.texi:35237 guix-git/doc/guix.texi:35296 #, no-wrap msgid "resolution" msgstr "resolución" #. type: Plain text -#: guix-git/doc/guix.texi:34802 +#: guix-git/doc/guix.texi:35241 msgid "For now only GRUB has theme support. GRUB themes are created using the @code{grub-theme} form, which is not fully documented yet." msgstr "De momento únicamente GRUB permite el uso de temas. Los temas de GRUB se crean mediante el uso de @code{grub-theme}, todavía no documentado completamente." #. type: deftp -#: guix-git/doc/guix.texi:34803 +#: guix-git/doc/guix.texi:35242 #, no-wrap msgid "{Data Type} grub-theme" msgstr "{Tipo de datos} grub-theme" #. type: deftp -#: guix-git/doc/guix.texi:34805 +#: guix-git/doc/guix.texi:35244 msgid "Data type representing the configuration of the GRUB theme." msgstr "Tipo de datos que representa la configuración de un tema de GRUB." #. type: item -#: guix-git/doc/guix.texi:34807 +#: guix-git/doc/guix.texi:35246 #, no-wrap msgid "@code{gfxmode} (default: @code{'(\"auto\")})" msgstr "@code{gfxmode} (predeterminado: @code{'(\"auto\")})" #. type: table -#: guix-git/doc/guix.texi:34810 +#: guix-git/doc/guix.texi:35249 msgid "The GRUB @code{gfxmode} to set (a list of screen resolution strings, @pxref{gfxmode,,, grub, GNU GRUB manual})." msgstr "El modo gráfico @code{gfxmode} de GRUB configurado (una lista de cadenas con resoluciones de pantalla, @pxref{gfxmode,,, grub, GNU GRUB manual})." #. type: deffn -#: guix-git/doc/guix.texi:34813 +#: guix-git/doc/guix.texi:35252 #, no-wrap msgid "{Scheme Procedure} grub-theme" msgstr "{Procedimiento Scheme} grub-theme" #. type: deffn -#: guix-git/doc/guix.texi:34817 +#: guix-git/doc/guix.texi:35256 msgid "Return the default GRUB theme used by the operating system if no @code{theme} field is specified in @code{bootloader-configuration} record." msgstr "Devuelve el tema predeterminado de GRUB que usa el sistema operativo si no se especifica el campo @code{theme} en el registro @code{bootloader-configuration}." #. type: deffn -#: guix-git/doc/guix.texi:34820 +#: guix-git/doc/guix.texi:35259 msgid "It comes with a fancy background image displaying the GNU and Guix logos." msgstr "Viene con una bonita imagen de fondo que muestra los logos de GNU y Guix." #. type: Plain text -#: guix-git/doc/guix.texi:34824 +#: guix-git/doc/guix.texi:35263 msgid "For example, to override the default resolution, you may use something like" msgstr "Por ejemplo, para usar una resolución distinta de la predeterminada, puede usar algo como esto:" #. type: lisp -#: guix-git/doc/guix.texi:34832 +#: guix-git/doc/guix.texi:35271 #, no-wrap msgid "" "(bootloader\n" @@ -67557,42 +68521,42 @@ msgstr "" " (gfxmode '(\"1024x786x32\" \"auto\"))))))\n" #. type: section -#: guix-git/doc/guix.texi:34835 +#: guix-git/doc/guix.texi:35274 #, no-wrap msgid "Invoking @code{guix system}" msgstr "Invocación de @code{guix system}" #. type: Plain text -#: guix-git/doc/guix.texi:34840 +#: guix-git/doc/guix.texi:35279 msgid "Once you have written an operating system declaration as seen in the previous section, it can be @dfn{instantiated} using the @command{guix system} command. The synopsis is:" msgstr "Una vez haya escrito la declaración de sistema operativo como se ha visto en la sección previa, puede @dfn{instanciarse} mediante el uso de la orden @command{guix system}. Su sinopsis es:" #. type: example -#: guix-git/doc/guix.texi:34843 +#: guix-git/doc/guix.texi:35282 #, no-wrap msgid "guix system @var{options}@dots{} @var{action} @var{file}\n" msgstr "guix system @var{opciones}@dots{} @var{acción} @var{archivo}\n" #. type: Plain text -#: guix-git/doc/guix.texi:34849 +#: guix-git/doc/guix.texi:35288 msgid "@var{file} must be the name of a file containing an @code{operating-system} declaration. @var{action} specifies how the operating system is instantiated. Currently the following values are supported:" msgstr "@var{archivo} debe ser el nombre de un archivo que contenga una declaración @code{operating-system}. @var{acción} especifica cómo se instancia el sistema operativo. Actualmente se permiten los siguientes valores:" #. type: item -#: guix-git/doc/guix.texi:34851 guix-git/doc/guix.texi:37496 +#: guix-git/doc/guix.texi:35290 guix-git/doc/guix.texi:37992 #, no-wrap msgid "search" msgstr "search" #. type: table -#: guix-git/doc/guix.texi:34854 +#: guix-git/doc/guix.texi:35293 msgid "Display available service type definitions that match the given regular expressions, sorted by relevance:" msgstr "Muestra las definiciones de tipos de servicio disponibles que corresponden con las expresiones regulares proporcionadas, ordenadas por relevancia:" # FUZZY # TODO: Actualizar cuando se traduzca guix[-packages] #. type: example -#: guix-git/doc/guix.texi:34876 +#: guix-git/doc/guix.texi:35315 #, no-wrap msgid "" "$ guix system search console\n" @@ -67636,7 +68600,7 @@ msgstr "" # FUZZY # TODO: Actualizar cuando se traduzca guix[-packages] #. type: example -#: guix-git/doc/guix.texi:34882 +#: guix-git/doc/guix.texi:35321 #, no-wrap msgid "" "name: mingetty\n" @@ -67656,7 +68620,7 @@ msgstr "" # FUZZY # TODO: Actualizar cuando se traduzca guix[-packages] #. type: example -#: guix-git/doc/guix.texi:34889 +#: guix-git/doc/guix.texi:35328 #, no-wrap msgid "" "name: login\n" @@ -67676,18 +68640,18 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:34891 guix-git/doc/guix.texi:37549 +#: guix-git/doc/guix.texi:35330 guix-git/doc/guix.texi:38028 #, no-wrap msgid "@dots{}\n" msgstr "@dots{}\n" #. type: table -#: guix-git/doc/guix.texi:34896 guix-git/doc/guix.texi:37554 +#: guix-git/doc/guix.texi:35335 msgid "As for @command{guix package --search}, the result is written in @code{recutils} format, which makes it easy to filter the output (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "Como con @command{guix package --search}, el resultado se obtiene en formato @code{recutils}, lo que facilita el filtrado de la salida (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." #. type: item -#: guix-git/doc/guix.texi:34897 guix-git/doc/guix.texi:37555 +#: guix-git/doc/guix.texi:35336 guix-git/doc/guix.texi:38034 #, no-wrap msgid "reconfigure" msgstr "reconfigure" @@ -67695,58 +68659,58 @@ msgstr "reconfigure" # FUZZY # TODO #. type: table -#: guix-git/doc/guix.texi:34902 +#: guix-git/doc/guix.texi:35341 msgid "Build the operating system described in @var{file}, activate it, and switch to it@footnote{This action (and the related actions @code{switch-generation} and @code{roll-back}) are usable only on systems already running Guix System.}." msgstr "Construye el sistema operativo descrito en @var{archivo}, lo activa, y se constituye como estado actual@footnote{Esta acción (y las acciones relacionadas @code{switch-generation} y @code{roll-back}) son usables únicamente en sistemas que ya ejecuten el sistema Guix.}." #. type: quotation -#: guix-git/doc/guix.texi:34910 +#: guix-git/doc/guix.texi:35349 msgid "It is highly recommended to run @command{guix pull} once before you run @command{guix system reconfigure} for the first time (@pxref{Invoking guix pull}). Failing to do that you would see an older version of Guix once @command{reconfigure} has completed." msgstr "Es altamente recomendable ejecutar @command{guix pull} antes de la primera ejecución de @command{guix system reconfigure} (@pxref{Invoking guix pull}). No hacerlo puede ocasionar que se obtenga una versión más antigua de Guix una vez que @command{reconfigure} se haya completado." #. type: table -#: guix-git/doc/guix.texi:34918 +#: guix-git/doc/guix.texi:35357 msgid "This effects all the configuration specified in @var{file}: user accounts, system services, global package list, setuid programs, etc. The command starts system services specified in @var{file} that are not currently running; if a service is currently running this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop X} or @code{herd restart X})." msgstr "Lleva a efecto toda la configuración especificada en @var{archivo}: cuentas de usuaria, servicios del sistema, lista de paquetes global, programas con setuid, etc. La orden inicia los servicios del sistema especificados en @var{archivo} que no estén actualmente en ejecución; si un servicio se encuentra en ejecución esta orden prepara su actualización durante la próxima parada (por ejemplo, con @code{herd stop X} o @code{herd restart X})." # FUZZY #. type: table -#: guix-git/doc/guix.texi:34924 +#: guix-git/doc/guix.texi:35363 msgid "This command creates a new generation whose number is one greater than the current generation (as reported by @command{guix system list-generations}). If that generation already exists, it will be overwritten. This behavior mirrors that of @command{guix package} (@pxref{Invoking guix package})." msgstr "Esta orden crea una nueva generación cuyo número es el sucesor de la siguiente generación (como lo muestra @command{guix system list-generations}). Si esa generación ya existe, será sobreescrita. Este comportamiento es el mismo que el de @command{guix package} (@pxref{Invoking guix package})." # FUZZY #. type: table -#: guix-git/doc/guix.texi:34929 +#: guix-git/doc/guix.texi:35368 msgid "It also adds a bootloader menu entry for the new OS configuration, ---unless @option{--no-bootloader} is passed. For GRUB, it moves entries for older configurations to a submenu, allowing you to choose an older system generation at boot time should you need it." msgstr "También añade una entrada al cargador de arranque para la nueva configuración del sistema operativo---en caso de que no se proporcione la opción @option{--no-bootloader}. Con GRUB, mueve las entradas de configuraciones antiguas a un submenú, permitiendo la selección de una generación previa del sistema en tiempo de arranque en caso necesario." #. type: cindex -#: guix-git/doc/guix.texi:34930 guix-git/doc/guix.texi:35261 -#: guix-git/doc/guix.texi:36223 +#: guix-git/doc/guix.texi:35369 guix-git/doc/guix.texi:35705 +#: guix-git/doc/guix.texi:36713 #, no-wrap msgid "provenance tracking, of the operating system" msgstr "seguimiento de procedencia, del sistema operativo" #. type: table -#: guix-git/doc/guix.texi:34935 +#: guix-git/doc/guix.texi:35374 msgid "Upon completion, the new system is deployed under @file{/run/current-system}. This directory contains @dfn{provenance meta-data}: the list of channels in use (@pxref{Channels}) and @var{file} itself, when available. You can view it by running:" msgstr "Tras la finalización, el nuevo sistema se despliega en @file{/run/current-system}. Este directorio contiene @dfn{metadatos de procedencia}: la lista de canales usados (@pxref{Channels}) y el @var{archivo} en sí, cuando esté disponible. Puede visualizar dichos metadatos con la siguiente orden:" #. type: example -#: guix-git/doc/guix.texi:34938 +#: guix-git/doc/guix.texi:35377 #, no-wrap msgid "guix system describe\n" msgstr "guix system describe\n" # FUZZY FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:34944 +#: guix-git/doc/guix.texi:35383 msgid "This information is useful should you later want to inspect how this particular generation was built. In fact, assuming @var{file} is self-contained, you can later rebuild generation @var{n} of your operating system with:" msgstr "Esta información es útil en caso de que desee inspeccionar posteriormente cómo se construyó está generación en particular. De hecho, asumiendo que @var{archivo} es autocontenido, puede construir de nuevo la generación @var{n} de su sistema operativo con:" #. type: example -#: guix-git/doc/guix.texi:34950 +#: guix-git/doc/guix.texi:35389 #, no-wrap msgid "" "guix time-machine \\\n" @@ -67760,244 +68724,249 @@ msgstr "" " /var/guix/profiles/system-@var{n}-link/configuration.scm\n" #. type: table -#: guix-git/doc/guix.texi:34956 +#: guix-git/doc/guix.texi:35395 msgid "You can think of it as some sort of built-in version control! Your system is not just a binary artifact: @emph{it carries its own source}. @xref{Service Reference, @code{provenance-service-type}}, for more information on provenance tracking." msgstr "¡Puede pensar en ello como una especie de control de versiones incorporado en Guix! Su sistema no es únicamente un artefacto binario: @emph{transporta sus propias fuentes con él}. @xref{Service Reference, @code{provenance-service-type}}, para más información sobre el seguimiento de procedencia." #. type: table -#: guix-git/doc/guix.texi:34962 +#: guix-git/doc/guix.texi:35401 msgid "By default, @command{reconfigure} @emph{prevents you from downgrading your system}, which could (re)introduce security vulnerabilities and also cause problems with ``stateful'' services such as database management systems. You can override that behavior by passing @option{--allow-downgrades}." msgstr "De manera predeterminada, @command{reconfigure} @emph{evita que instale una version anterior en su sistema operativo}, lo que podría (re)introducir fallos de seguridad y también provocar problemas con servicios que mantienen estado como los sistemas de gestión de bases de datos. Puede modificar este comportamiento con el parámetro @option{--allow-downgrades}." #. type: item -#: guix-git/doc/guix.texi:34963 guix-git/doc/guix.texi:37614 +#: guix-git/doc/guix.texi:35402 guix-git/doc/guix.texi:38093 #, no-wrap msgid "switch-generation" msgstr "switch-generation" #. type: table -#: guix-git/doc/guix.texi:34972 +#: guix-git/doc/guix.texi:35411 msgid "Switch to an existing system generation. This action atomically switches the system profile to the specified system generation. It also rearranges the system's existing bootloader menu entries. It makes the menu entry for the specified system generation the default, and it moves the entries for the other generations to a submenu, if supported by the bootloader being used. The next time the system boots, it will use the specified system generation." msgstr "Cambia a una generación existente del sistema. Esta acción cambia atómicamente el perfil del sistema a la generación del sistema especificada. También redistribuye las entradas de sistema del menú de arranque existentes. Marca como predeterminada la entrada de la generación de sistema especificada y mueve las entradas de otras generaciones a un submenú, si el cargador de arranque lo permite. La próxima vez que se arranque el sistema, se usará la generación de sistema especificada." #. type: table -#: guix-git/doc/guix.texi:34976 +#: guix-git/doc/guix.texi:35415 msgid "The bootloader itself is not being reinstalled when using this command. Thus, the installed bootloader is used with an updated configuration file." msgstr "El cargador de arranque en sí no se reinstala durante esta orden. Por tanto, el cargador de arranque instalado se usa con un archivo de configuración actualizado." #. type: table -#: guix-git/doc/guix.texi:34980 +#: guix-git/doc/guix.texi:35419 msgid "The target generation can be specified explicitly by its generation number. For example, the following invocation would switch to system generation 7:" msgstr "La generación deseada puede especificarse explícitamente con su numero de generación. Por ejemplo, la siguiente invocación cambiaría a la generación 7 del sistema:" #. type: example -#: guix-git/doc/guix.texi:34983 +#: guix-git/doc/guix.texi:35422 #, no-wrap msgid "guix system switch-generation 7\n" msgstr "guix system switch-generation 7\n" #. type: table -#: guix-git/doc/guix.texi:34991 guix-git/doc/guix.texi:37633 +#: guix-git/doc/guix.texi:35430 guix-git/doc/guix.texi:38112 msgid "The target generation can also be specified relative to the current generation with the form @code{+N} or @code{-N}, where @code{+3} means ``3 generations ahead of the current generation,'' and @code{-1} means ``1 generation prior to the current generation.'' When specifying a negative value such as @code{-1}, you must precede it with @code{--} to prevent it from being parsed as an option. For example:" msgstr "La generación deseada puede especificarse también de forma relativa a la generación actual con la forma @code{+N} o @code{-N}, donde @code{+3} significa ``3 generaciones después de la generación actual'', y @code{-1} significa ``1 generación antes de la generación actual''. Cuando se especifica un valor negativo como @code{-1} debe ir precedido de @code{--} para evitar que se analice como una opción. Por ejemplo:" #. type: example -#: guix-git/doc/guix.texi:34994 +#: guix-git/doc/guix.texi:35433 #, no-wrap msgid "guix system switch-generation -- -1\n" msgstr "guix system switch-generation -- -1\n" # FUZZY #. type: table -#: guix-git/doc/guix.texi:35002 +#: guix-git/doc/guix.texi:35441 msgid "Currently, the effect of invoking this action is @emph{only} to switch the system profile to an existing generation and rearrange the bootloader menu entries. To actually start using the target system generation, you must reboot after running this action. In the future, it will be updated to do the same things as @command{reconfigure}, like activating and deactivating services." msgstr "Actualmente, el efecto de la invocación de esta acción es @emph{únicamente} cambiar el perfil del sistema a una generación existente y redistribuir las entradas del menú de arranque. Para realmente empezar a usar la generación deseada del sistema, debe reiniciar tras esta acción. En el futuro, se actualizará para hacer lo mismo que @command{reconfigure}, como activación y desactivación de servicios." #. type: table -#: guix-git/doc/guix.texi:35004 guix-git/doc/guix.texi:37639 +#: guix-git/doc/guix.texi:35443 guix-git/doc/guix.texi:38118 msgid "This action will fail if the specified generation does not exist." msgstr "Esta acción fallará si la generación especificada no existe." #. type: item -#: guix-git/doc/guix.texi:35005 guix-git/doc/guix.texi:37640 +#: guix-git/doc/guix.texi:35444 guix-git/doc/guix.texi:38119 #, no-wrap msgid "roll-back" msgstr "roll-back" #. type: table -#: guix-git/doc/guix.texi:35011 +#: guix-git/doc/guix.texi:35450 msgid "Switch to the preceding system generation. The next time the system boots, it will use the preceding system generation. This is the inverse of @command{reconfigure}, and it is exactly the same as invoking @command{switch-generation} with an argument of @code{-1}." msgstr "Cambia a la generación de sistema previa. Tras el siguiente arranque del sistema, usará la generación de sistema precedente. Es la operación inversa de @command{reconfigure}, y es equivalente a la invocación de @command{switch-generation} con @code{-1} como parámetro." # FUZZY #. type: table -#: guix-git/doc/guix.texi:35015 +#: guix-git/doc/guix.texi:35454 msgid "Currently, as with @command{switch-generation}, you must reboot after running this action to actually start using the preceding system generation." msgstr "Actualmente, como con @command{switch-generation}, debe reiniciar tras la ejecución de esta acción para realmente empezar a usar la generación de sistema precedente." #. type: item -#: guix-git/doc/guix.texi:35016 guix-git/doc/guix.texi:37646 +#: guix-git/doc/guix.texi:35455 guix-git/doc/guix.texi:38125 #, no-wrap msgid "delete-generations" msgstr "delete-generations" #. type: cindex -#: guix-git/doc/guix.texi:35017 +#: guix-git/doc/guix.texi:35456 #, no-wrap msgid "deleting system generations" msgstr "borrado de generaciones del sistema" #. type: cindex -#: guix-git/doc/guix.texi:35018 guix-git/doc/guix.texi:37648 +#: guix-git/doc/guix.texi:35457 guix-git/doc/guix.texi:38127 #, no-wrap msgid "saving space" msgstr "ahorro de espacio" # FUZZY #. type: table -#: guix-git/doc/guix.texi:35022 +#: guix-git/doc/guix.texi:35461 msgid "Delete system generations, making them candidates for garbage collection (@pxref{Invoking guix gc}, for information on how to run the ``garbage collector'')." msgstr "Elimina generaciones del sistema, haciendo posible su recolección con la basura (@pxref{Invoking guix gc}, para información sobre como llevar a cabo la ``recolección de basura'')." #. type: table -#: guix-git/doc/guix.texi:35026 +#: guix-git/doc/guix.texi:35465 msgid "This works in the same way as @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). With no arguments, all system generations but the current one are deleted:" msgstr "Esto funciona del mismo modo que @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). Sin parámetros, se eliminan todas las generaciones del sistema excepto la actual:" #. type: example -#: guix-git/doc/guix.texi:35029 +#: guix-git/doc/guix.texi:35468 #, no-wrap msgid "guix system delete-generations\n" msgstr "guix system delete-generations\n" #. type: table -#: guix-git/doc/guix.texi:35033 +#: guix-git/doc/guix.texi:35472 #, fuzzy #| msgid "You can also select the generations you want to delete. The example below deletes all the system generations that are more than two month old:" msgid "You can also select the generations you want to delete. The example below deletes all the system generations that are more than two months old:" msgstr "También puede seleccionar las generaciones que desea eliminar. El siguiente ejemplo elimina todas las generaciones del sistema que tienen más de dos meses de antigüedad:" #. type: example -#: guix-git/doc/guix.texi:35036 +#: guix-git/doc/guix.texi:35475 #, no-wrap msgid "guix system delete-generations 2m\n" msgstr "guix system delete-generations 2m\n" #. type: table -#: guix-git/doc/guix.texi:35041 +#: guix-git/doc/guix.texi:35480 msgid "Running this command automatically reinstalls the bootloader with an updated list of menu entries---e.g., the ``old generations'' sub-menu in GRUB no longer lists the generations that have been deleted." msgstr "La ejecución de esta orden reinstala automáticamente el cargador de arranque con una lista de entradas del menú actualizada---por ejemplo, el submenú de generaciones antiguas en GRUB no mostrará las generaciones que hayan sido borradas." #. type: table -#: guix-git/doc/guix.texi:35046 +#: guix-git/doc/guix.texi:35485 msgid "Build the derivation of the operating system, which includes all the configuration files and programs needed to boot and run the system. This action does not actually install anything." msgstr "Construye la derivación del sistema operativo, que incluye todos los archivos de configuración y programas necesarios para el arranque y la ejecución del sistema. Esta acción no instala nada en realidad." #. type: item -#: guix-git/doc/guix.texi:35047 +#: guix-git/doc/guix.texi:35486 #, no-wrap msgid "init" msgstr "init" #. type: table -#: guix-git/doc/guix.texi:35051 +#: guix-git/doc/guix.texi:35490 msgid "Populate the given directory with all the files necessary to run the operating system specified in @var{file}. This is useful for first-time installations of Guix System. For instance:" msgstr "Construye el directorio dado con todos los archivos necesarios para ejecutar el sistema operativo especificado en @var{archivo}. Esto es útil para la instalación inicial de Guix. Por ejemplo:" #. type: example -#: guix-git/doc/guix.texi:35054 +#: guix-git/doc/guix.texi:35493 #, no-wrap msgid "guix system init my-os-config.scm /mnt\n" msgstr "guix system init mi-configuración-del-so.scm /mnt\n" #. type: table -#: guix-git/doc/guix.texi:35061 +#: guix-git/doc/guix.texi:35500 msgid "copies to @file{/mnt} all the store items required by the configuration specified in @file{my-os-config.scm}. This includes configuration files, packages, and so on. It also creates other essential files needed for the system to operate correctly---e.g., the @file{/etc}, @file{/var}, and @file{/run} directories, and the @file{/bin/sh} file." msgstr "copia a @file{/mnt} todos los elementos del almacén necesarios para la configuración especificada en @file{mi-configuración-del-so.scm}. Esto incluye los archivos de configuración, paquetes y demás. También crea otros archivos esenciales necesarios para la correcta operación del sistema---por ejemplo, los directorios @file{/etc}, @file{/var} y @file{/run}, y el archivo @file{/bin/sh}." #. type: table -#: guix-git/doc/guix.texi:35065 +#: guix-git/doc/guix.texi:35504 #, fuzzy #| msgid "This command also installs bootloader on the target specified in @file{my-os-config}, unless the @option{--no-bootloader} option was passed." msgid "This command also installs bootloader on the targets specified in @file{my-os-config}, unless the @option{--no-bootloader} option was passed." msgstr "Esta orden también instala el cargador de arranque en el destino especificado en @file{mi-conf-del-so.scm}, siempre que no se proporcione la opción @option{--no-bootloader}." #. type: item -#: guix-git/doc/guix.texi:35066 +#: guix-git/doc/guix.texi:35505 #, no-wrap msgid "vm" msgstr "vm" #. type: cindex -#: guix-git/doc/guix.texi:35067 guix-git/doc/guix.texi:35634 +#: guix-git/doc/guix.texi:35506 guix-git/doc/guix.texi:36124 #, no-wrap msgid "virtual machine" msgstr "máquina virtual" #. type: cindex -#: guix-git/doc/guix.texi:35068 +#: guix-git/doc/guix.texi:35507 #, no-wrap msgid "VM" msgstr "VM" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35072 +#: guix-git/doc/guix.texi:35511 msgid "guix system vm" msgstr "guix system vm" #. type: table -#: guix-git/doc/guix.texi:35072 +#: guix-git/doc/guix.texi:35511 #, fuzzy #| msgid "Build a virtual machine that contains the operating system declared in @var{file}, and return a script to run that virtual machine (VM)." msgid "Build a virtual machine (VM) that contains the operating system declared in @var{file}, and return a script to run that VM." msgstr "Construye una máquina virtual que contiene el sistema operativo declarado en @var{archivo}, y devuelve un guión que ejecuta dicha máquina virtual (VM)." #. type: quotation -#: guix-git/doc/guix.texi:35080 +#: guix-git/doc/guix.texi:35519 msgid "The @code{vm} action and others below can use KVM support in the Linux-libre kernel. Specifically, if the machine has hardware virtualization support, the corresponding KVM kernel module should be loaded, and the @file{/dev/kvm} device node must exist and be readable and writable by the user and by the build users of the daemon (@pxref{Build Environment Setup})." msgstr "La acción @code{vm} y otras presentadas a continuación pueden usar la funcionalidad KVM del núcleo Linux-libre. Específicamente, si la máquina permite la virtualización hardware, debe cargarse el correspondiente módulo KVM del núcleo, debe existir el nodo del dispositivo @file{/dev/kvm} y tanto la propia usuaria como las usuarias de construcción del daemon deben tener acceso de lectura y escritura al mismo (@pxref{Build Environment Setup})." #. type: table -#: guix-git/doc/guix.texi:35085 +#: guix-git/doc/guix.texi:35524 msgid "Arguments given to the script are passed to QEMU as in the example below, which enables networking and requests 1@tie{}GiB of RAM for the emulated machine:" msgstr "Los parámetros proporcionados al guión se pasan a QEMU como en el siguiente ejemplo, que activa la red y solicita 1@tie{}GiB de RAM para la máquina emulada:" #. type: example -#: guix-git/doc/guix.texi:35088 +#: guix-git/doc/guix.texi:35527 #, fuzzy, no-wrap #| msgid "$ /gnu/store/@dots{}-run-vm.sh -m 1024 -smp 2 -net user,model=virtio-net-pci\n" msgid "$ /gnu/store/@dots{}-run-vm.sh -m 1024 -smp 2 -nic user,model=virtio-net-pci\n" msgstr "$ /gnu/store/@dots{}-run-vm.sh -m 1024 -smp 2 -net user,model=virtio-net-pci\n" #. type: table -#: guix-git/doc/guix.texi:35091 +#: guix-git/doc/guix.texi:35530 msgid "It's possible to combine the two steps into one:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35094 +#: guix-git/doc/guix.texi:35533 #, fuzzy, no-wrap #| msgid "$ /gnu/store/@dots{}-run-vm.sh -m 1024 -smp 2 -net user,model=virtio-net-pci\n" msgid "$ $(guix system vm my-config.scm) -m 1024 -smp 2 -nic user,model=virtio-net-pci\n" msgstr "$ /gnu/store/@dots{}-run-vm.sh -m 1024 -smp 2 -net user,model=virtio-net-pci\n" #. type: table -#: guix-git/doc/guix.texi:35097 +#: guix-git/doc/guix.texi:35536 msgid "The VM shares its store with the host system." msgstr "La VM comparte su almacén con el sistema anfitrión." #. type: table -#: guix-git/doc/guix.texi:35102 +#: guix-git/doc/guix.texi:35541 +msgid "By default, the root file system of the VM is mounted volatile; the @option{--persistent} option can be provided to make it persistent instead. In that case, the VM disk-image file will be copied from the store to the @env{TMPDIR} directory to make it writable." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:35546 msgid "Additional file systems can be shared between the host and the VM using the @option{--share} and @option{--expose} command-line options: the former specifies a directory to be shared with write access, while the latter provides read-only access to the shared directory." msgstr "Sistemas de archivos adicionales pueden compartirse entre la máquina anfitriona y la virtual mediante el uso de las opciones @option{--share} y @option{--expose}: la primera especifica un directorio a compartir con acceso de escritura, mientras que la última proporciona solo acceso de lectura al directorio compartido." #. type: table -#: guix-git/doc/guix.texi:35106 +#: guix-git/doc/guix.texi:35550 msgid "The example below creates a VM in which the user's home directory is accessible read-only, and where the @file{/exchange} directory is a read-write mapping of @file{$HOME/tmp} on the host:" msgstr "El siguiente ejemplo crea una máquina virtual en la que el directorio de la usuaria es accesible en modo solo-lecture, y donde el directorio @file{/intercambio} esta asociado de forma lectura-escritura con @file{$HOME/tmp} en el sistema anfitrión:" #. type: example -#: guix-git/doc/guix.texi:35110 +#: guix-git/doc/guix.texi:35554 #, no-wrap msgid "" "guix system vm my-config.scm \\\n" @@ -68007,58 +68976,58 @@ msgstr "" " --expose=$HOME --share=$HOME/tmp=/intercambio\n" #. type: table -#: guix-git/doc/guix.texi:35115 +#: guix-git/doc/guix.texi:35559 msgid "On GNU/Linux, the default is to boot directly to the kernel; this has the advantage of requiring only a very tiny root disk image since the store of the host can then be mounted." msgstr "En GNU/Linux, lo predeterminado es arrancar directamente el núcleo; esto posee la ventaja de necesitar únicamente una pequeña imagen del disco raíz pequeña ya el el almacén de la anfitriona puede montarse." #. type: table -#: guix-git/doc/guix.texi:35120 +#: guix-git/doc/guix.texi:35564 #, fuzzy #| msgid "The @option{--full-boot} option forces a complete boot sequence, starting with the bootloader. This requires more disk space since a root image containing at least the kernel, initrd, and bootloader data files must be created. The @option{--image-size} option can be used to specify the size of the image." msgid "The @option{--full-boot} option forces a complete boot sequence, starting with the bootloader. This requires more disk space since a root image containing at least the kernel, initrd, and bootloader data files must be created." msgstr "La opción @option{--full-boot} fuerza una secuencia de arranque completa, desde el cargador de arranque. Esto necesita más espacio en disco ya que la imagen raíz que contiene el núcleo, initrd y los archivos de datos del cargador de arranque deben crearse. La opción @option{--image-size} puede usarse para especificar el tamaño de la imagen." #. type: table -#: guix-git/doc/guix.texi:35123 +#: guix-git/doc/guix.texi:35567 msgid "The @option{--image-size} option can be used to specify the size of the image." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35130 +#: guix-git/doc/guix.texi:35574 msgid "The @option{--no-graphic} option will instruct @command{guix system} to spawn a headless VM that will use the invoking tty for IO. Among other things, this enables copy-pasting, and scrollback. Use the @kbd{ctrl-a} prefix to issue QEMU commands; e.g. @kbd{ctrl-a h} prints a help, @kbd{ctrl-a x} quits the VM, and @kbd{ctrl-a c} switches between the QEMU monitor and the VM." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35131 +#: guix-git/doc/guix.texi:35575 #, no-wrap msgid "System images, creation in various formats" msgstr "Imágenes de sistema, creación en varios formatos" #. type: cindex -#: guix-git/doc/guix.texi:35132 +#: guix-git/doc/guix.texi:35576 #, no-wrap msgid "Creating system images in various formats" msgstr "Creación de imágenes del sistema en varios formatos" #. type: item -#: guix-git/doc/guix.texi:35133 +#: guix-git/doc/guix.texi:35577 #, fuzzy, no-wrap msgid "image" msgstr "vm-image" #. type: cindex -#: guix-git/doc/guix.texi:35134 +#: guix-git/doc/guix.texi:35578 #, fuzzy, no-wrap msgid "image, creating disk images" msgstr "Imágenes de sistema, creación en varios formatos" #. type: table -#: guix-git/doc/guix.texi:35146 +#: guix-git/doc/guix.texi:35590 msgid "The @code{image} command can produce various image types. The image type can be selected using the @option{--image-type} option. It defaults to @code{efi-raw}. When its value is @code{iso9660}, the @option{--label} option can be used to specify a volume ID with @code{image}. By default, the root file system of a disk image is mounted non-volatile; the @option{--volatile} option can be provided to make it volatile instead. When using @code{image}, the bootloader installed on the generated image is taken from the provided @code{operating-system} definition. The following example demonstrates how to generate an image that uses the @code{grub-efi-bootloader} bootloader and boot it with QEMU:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35154 +#: guix-git/doc/guix.texi:35598 #, no-wrap msgid "" "image=$(guix system image --image-type=qcow2 \\\n" @@ -68070,41 +69039,41 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35160 +#: guix-git/doc/guix.texi:35604 #, fuzzy msgid "When using the @code{efi-raw} image type, a raw disk image is produced; it can be copied as is to a USB stick, for instance. Assuming @code{/dev/sdc} is the device corresponding to a USB stick, one can copy the image to it using the following command:" msgstr "Cuando se usa el tipo de imagen @code{raw} se produce una imagen de disco cruda; puede copiarse tal cual en una memoria USB, por ejemplo. Asumiendo que @code{/dev/sdc} es el dispositivo que corresponde a la memoria USB, se podría copiar la imagen con la siguiente orden:" #. type: example -#: guix-git/doc/guix.texi:35163 +#: guix-git/doc/guix.texi:35607 #, fuzzy, no-wrap msgid "# dd if=$(guix system image my-os.scm) of=/dev/sdc status=progress\n" msgstr "# dd if=$(guix system disk-image mi-so.scm) of=/dev/sdc status=progress\n" #. type: table -#: guix-git/doc/guix.texi:35167 +#: guix-git/doc/guix.texi:35611 msgid "The @code{--list-image-types} command lists all the available image types." msgstr "La orden @code{--list-image-types} muestra todos los tipos de imagen disponibles." #. type: cindex -#: guix-git/doc/guix.texi:35168 +#: guix-git/doc/guix.texi:35612 #, fuzzy, no-wrap msgid "creating virtual machine images" msgstr "máquina virtual" #. type: table -#: guix-git/doc/guix.texi:35177 +#: guix-git/doc/guix.texi:35621 msgid "When using the @code{qcow2} image type, the returned image is in qcow2 format, which the QEMU emulator can efficiently use. @xref{Running Guix in a VM}, for more information on how to run the image in a virtual machine. The @code{grub-bootloader} bootloader is always used independently of what is declared in the @code{operating-system} file passed as argument. This is to make it easier to work with QEMU, which uses the SeaBIOS BIOS by default, expecting a bootloader to be installed in the Master Boot Record (MBR)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35178 +#: guix-git/doc/guix.texi:35622 #, no-wrap msgid "docker-image, creating docker images" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35184 +#: guix-git/doc/guix.texi:35628 #, fuzzy #| msgid "When using @code{docker-image}, a Docker image is produced. Guix builds the image from scratch, not from a pre-existing Docker base image. As a result, it contains @emph{exactly} what you define in the operating system configuration file. You can then load the image and launch a Docker container using commands like the following:" msgid "When using the @code{docker} image type, a Docker image is produced. Guix builds the image from scratch, not from a pre-existing Docker base image. As a result, it contains @emph{exactly} what you define in the operating system configuration file. You can then load the image and launch a Docker container using commands like the following:" @@ -68112,7 +69081,7 @@ msgstr "Con @code{docker-image} se produce una imagen Docker. Guix construye la # FUZZY #. type: example -#: guix-git/doc/guix.texi:35189 +#: guix-git/doc/guix.texi:35633 #, fuzzy, no-wrap msgid "" "image_id=\"$(docker load < guix-system-docker-image.tar.gz)\"\n" @@ -68125,45 +69094,45 @@ msgstr "" # FUZZY #. type: table -#: guix-git/doc/guix.texi:35196 +#: guix-git/doc/guix.texi:35640 msgid "This command starts a new Docker container from the specified image. It will boot the Guix system in the usual manner, which means it will start any services you have defined in the operating system configuration. You can get an interactive shell running in the container using @command{docker exec}:" msgstr "Esta orden arranca un contenedor Docker nuevo a partir de la imagen especificada. El sistema Guix se arrancará de la manera habitual, lo que implica el inicio de cualquier servicio que se haya definido en la configuración del sistema operativo. Puede iniciar una sesión de shell interactiva en el contenedor mediante el uso de @command{docker exec}:" #. type: example -#: guix-git/doc/guix.texi:35199 +#: guix-git/doc/guix.texi:35643 #, no-wrap msgid "docker exec -ti $container_id /run/current-system/profile/bin/bash --login\n" msgstr "docker exec -ti $container_id /run/current-system/profile/bin/bash --login\n" # FUZZY #. type: table -#: guix-git/doc/guix.texi:35206 +#: guix-git/doc/guix.texi:35650 msgid "Depending on what you run in the Docker container, it may be necessary to give the container additional permissions. For example, if you intend to build software using Guix inside of the Docker container, you may need to pass the @option{--privileged} option to @code{docker create}." msgstr "Dependiendo de lo que ejecute en el contenedor Docker, puede ser necesario proporcionar permisos adicionales al contenedor. Por ejemplo, si pretende construir software mediante el uso de Guix dentro del contenedor Docker, puede tener que proporcionar la opción @option{--privileged} a @code{docker create}." #. type: table -#: guix-git/doc/guix.texi:35210 +#: guix-git/doc/guix.texi:35654 msgid "Last, the @option{--network} option applies to @command{guix system docker-image}: it produces an image where network is supposedly shared with the host, and thus without services like nscd or NetworkManager." msgstr "Por último, la opción @option{--network} afecta a @command{guix system docker-image}: produce una imagen donde la red supuestamente se comparte con el sistema anfitrión, y por lo tanto no contiene servicios como nscd o NetworkManager." # FUZZY #. type: table -#: guix-git/doc/guix.texi:35218 +#: guix-git/doc/guix.texi:35662 msgid "Return a script to run the operating system declared in @var{file} within a container. Containers are a set of lightweight isolation mechanisms provided by the kernel Linux-libre. Containers are substantially less resource-demanding than full virtual machines since the kernel, shared objects, and other resources can be shared with the host system; this also means they provide thinner isolation." msgstr "Devuelve un guión de la ejecución del sistema operativo declarado en @var{archivo} dentro de un contenedor. Los contenedores son un conjunto de mecanismos de aislamiento ligeros que proporciona el núcleo Linux-libre. Los contenedores necesitan sustancialmente menos recursos que máquinas virtuales completas debido a que el núcleo, los objetos compartidos y otros recursos pueden compartirse con el sistema anfitrión; esto también significa que proporcionan un menor aislamiento." #. type: table -#: guix-git/doc/guix.texi:35222 +#: guix-git/doc/guix.texi:35666 msgid "Currently, the script must be run as root in order to support more than a single user and group. The container shares its store with the host system." msgstr "En este momento, el guión debe ejecutarse como root para permitir más de una única usuaria y grupo. El contenedor comparte su almacén con la máquina anfitriona." #. type: table -#: guix-git/doc/guix.texi:35226 +#: guix-git/doc/guix.texi:35670 msgid "As with the @code{vm} action (@pxref{guix system vm}), additional file systems to be shared between the host and container can be specified using the @option{--share} and @option{--expose} options:" msgstr "Como con la acción @code{vm} (@pxref{guix system vm}), sistemas de archivos adicionales a compartir entre la máquina anfitriona y el contenedor pueden especificarse mediante el uso de las opciones @option{--share} y @option{--expose}:" #. type: example -#: guix-git/doc/guix.texi:35230 +#: guix-git/doc/guix.texi:35674 #, no-wrap msgid "" "guix system container my-config.scm \\\n" @@ -68173,327 +69142,339 @@ msgstr "" " --expose=$HOME --share=$HOME/tmp=/intercambio\n" #. type: quotation -#: guix-git/doc/guix.texi:35234 +#: guix-git/doc/guix.texi:35678 msgid "This option requires Linux-libre 3.19 or newer." msgstr "Esta opción requiere Linux-libre 3.19 o posterior." #. type: Plain text -#: guix-git/doc/guix.texi:35241 guix-git/doc/guix.texi:37710 +#: guix-git/doc/guix.texi:35685 guix-git/doc/guix.texi:38189 msgid "@var{options} can contain any of the common build options (@pxref{Common Build Options}). In addition, @var{options} can contain one of the following:" msgstr "@var{opciones} puede contener cualquiera de las opciones de construcción comunes (@pxref{Common Build Options}). Además, @var{opciones} puede contener una de las siguientes:" #. type: table -#: guix-git/doc/guix.texi:35250 +#: guix-git/doc/guix.texi:35694 msgid "Consider the operating-system @var{expr} evaluates to. This is an alternative to specifying a file which evaluates to an operating system. This is used to generate the Guix system installer @pxref{Building the Installation Image})." msgstr "Considera el sistema operativo al cual evalúa @var{expr}. Es una alternativa a la especificación de un archivo que evalúe a un sistema operativo. Se usa para la generación de la imagen de instalación de Guix (@pxref{Building the Installation Image})." # FUZZY #. type: table -#: guix-git/doc/guix.texi:35255 +#: guix-git/doc/guix.texi:35699 msgid "Attempt to build for @var{system} instead of the host system type. This works as per @command{guix build} (@pxref{Invoking guix build})." msgstr "Intenta la construcción para @var{sistema} en vez de para el tipo de la máquina anfitriona. Funciona como en @command{guix build} (@pxref{Invoking guix build})." #. type: table -#: guix-git/doc/guix.texi:35260 +#: guix-git/doc/guix.texi:35704 msgid "Return the derivation file name of the given operating system without building anything." msgstr "Devuelve el nombre de archivo de la derivación del sistema operativo proporcionado sin construir nada." #. type: table -#: guix-git/doc/guix.texi:35269 +#: guix-git/doc/guix.texi:35713 msgid "As discussed above, @command{guix system init} and @command{guix system reconfigure} always save provenance information @i{via} a dedicated service (@pxref{Service Reference, @code{provenance-service-type}}). However, other commands don't do that by default. If you wish to, say, create a virtual machine image that contains provenance information, you can run:" msgstr "Como se ha mostrado previamente, @command{guix system init} y @command{guix system reconfigure} siempre almacenan información de procedencia a través de un servicio dedicado (@pxref{Service Reference, @code{provenance-service-type}}). No obstante, otras órdenes no hacen esto de manera predeterminada. Si desea, digamos, crear una imagen de máquina virtual que contenga información de procedencia, puede ejecutar:" #. type: example -#: guix-git/doc/guix.texi:35272 +#: guix-git/doc/guix.texi:35716 #, fuzzy, no-wrap msgid "guix system image -t qcow2 --save-provenance config.scm\n" msgstr "guix system vm-image --save-provenance config.scm\n" #. type: table -#: guix-git/doc/guix.texi:35279 +#: guix-git/doc/guix.texi:35723 msgid "That way, the resulting image will effectively ``embed its own source'' in the form of meta-data in @file{/run/current-system}. With that information, one can rebuild the image to make sure it really contains what it pretends to contain; or they could use that to derive a variant of the image." msgstr "De este modo, la imagen resultante ``embeberá sus propias fuentes'' de manera efectiva en forma de metadatos en @file{/run/current-system}. Con dicha información se puede reconstruir la imagen para asegurarse de que realmente contiene lo que dice contener; o se puede usar para derivar una variante de la imagen." #. type: item -#: guix-git/doc/guix.texi:35280 +#: guix-git/doc/guix.texi:35724 #, no-wrap msgid "--image-type=@var{type}" msgstr "--image-type=@var{tipo}" #. type: table -#: guix-git/doc/guix.texi:35283 +#: guix-git/doc/guix.texi:35727 #, fuzzy msgid "For the @code{image} action, create an image with given @var{type}." msgstr "Para la acción @code{disk-image}, crea una imagen del @var{tipo} proporcionado." #. type: table -#: guix-git/doc/guix.texi:35286 +#: guix-git/doc/guix.texi:35730 #, fuzzy msgid "When this option is omitted, @command{guix system} uses the @code{efi-raw} image type." msgstr "Cuando se omite esta opción, @command{guix system} usa @code{raw} como tipo de imagen." #. type: cindex -#: guix-git/doc/guix.texi:35287 +#: guix-git/doc/guix.texi:35731 #, no-wrap msgid "ISO-9660 format" msgstr "ISO-9660, formato" #. type: cindex -#: guix-git/doc/guix.texi:35288 +#: guix-git/doc/guix.texi:35732 #, no-wrap msgid "CD image format" msgstr "CD, formato de imagen" #. type: cindex -#: guix-git/doc/guix.texi:35289 +#: guix-git/doc/guix.texi:35733 #, no-wrap msgid "DVD image format" msgstr "DVD, formato de imagen" #. type: table -#: guix-git/doc/guix.texi:35292 +#: guix-git/doc/guix.texi:35736 msgid "@option{--image-type=iso9660} produces an ISO-9660 image, suitable for burning on CDs and DVDs." msgstr "@option{--file-system-type=iso9660} produce una imagen ISO-9660, que puede ser grabada en CD y DVD." #. type: item -#: guix-git/doc/guix.texi:35293 +#: guix-git/doc/guix.texi:35737 #, no-wrap msgid "--image-size=@var{size}" msgstr "--image-size=@var{tamaño}" #. type: table -#: guix-git/doc/guix.texi:35298 +#: guix-git/doc/guix.texi:35742 #, fuzzy msgid "For the @code{image} action, create an image of the given @var{size}. @var{size} may be a number of bytes, or it may include a unit as a suffix (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." msgstr "Junto a las acciones @code{vm-image} y @code{disk-image}, crea una imagen del @var{ŧamaño} proporcionado. @var{tamaño} debe ser un número de bytes o puede incluir una unidad como sufijo (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." #. type: table -#: guix-git/doc/guix.texi:35302 +#: guix-git/doc/guix.texi:35746 msgid "When this option is omitted, @command{guix system} computes an estimate of the image size as a function of the size of the system declared in @var{file}." msgstr "Cuando se omite esta opción, @command{guix system} calcula una estimación del tamaño de la imagen en función del tamaño del sistema declarado en @var{archivo}." # FUZZY #. type: table -#: guix-git/doc/guix.texi:35307 +#: guix-git/doc/guix.texi:35751 msgid "For the @code{container} action, allow containers to access the host network, that is, do not create a network namespace." msgstr "Con la acción @code{container}, permite a los contenedores acceder a la red de la máquina anfitriona, es decir, no crea un espacio de nombres de red." #. type: item -#: guix-git/doc/guix.texi:35313 +#: guix-git/doc/guix.texi:35757 #, no-wrap msgid "--skip-checks" msgstr "--skip-checks" #. type: table -#: guix-git/doc/guix.texi:35315 +#: guix-git/doc/guix.texi:35759 msgid "Skip pre-installation safety checks." msgstr "Omite las comprobaciones de seguridad previas a la instalación." #. type: table -#: guix-git/doc/guix.texi:35322 +#: guix-git/doc/guix.texi:35766 msgid "By default, @command{guix system init} and @command{guix system reconfigure} perform safety checks: they make sure the file systems that appear in the @code{operating-system} declaration actually exist (@pxref{File Systems}), and that any Linux kernel modules that may be needed at boot time are listed in @code{initrd-modules} (@pxref{Initial RAM Disk}). Passing this option skips these tests altogether." msgstr "Por omisión, @command{guix system init} y @command{guix system reconfigure} realizan comprobaciones de seguridad: se aseguran de que los sistemas de archivos que aparecen en la declaración @code{operating-system} realmente existen (@pxref{File Systems}) y que cualquier módulo del núcleo Linux que pudiese necesitarse durante el arranque se encuentre en @code{initrd-modules} (@pxref{Initial RAM Disk}). El uso de esta opción omite todas estas comprobaciones." #. type: table -#: guix-git/doc/guix.texi:35325 +#: guix-git/doc/guix.texi:35769 msgid "Instruct @command{guix system reconfigure} to allow system downgrades." msgstr "Indica a @command{guix system reconfigure} que permita la instalación de versiones más antiguas." #. type: table -#: guix-git/doc/guix.texi:35333 +#: guix-git/doc/guix.texi:35777 msgid "By default, @command{reconfigure} prevents you from downgrading your system. It achieves that by comparing the provenance info of your system (shown by @command{guix system describe}) with that of your @command{guix} command (shown by @command{guix describe}). If the commits for @command{guix} are not descendants of those used for your system, @command{guix system reconfigure} errors out. Passing @option{--allow-downgrades} allows you to bypass these checks." msgstr "De manera predeterminada @command{reconfigure} evita que instale una versión más antigua. Esto se consigue comparando la información de procedencia en su sistema operativo (mostrada por @command{guix system describe}) con aquella de la orden @command{guix} (mostrada por @command{guix describe}). Si las revisiones de @command{guix} no son descendientes de las usadas en su sistema, @command{guix system reconfigure} termina con un error. Proporcionar la opción @option{--allow-downgrades} le permite evitar estas comprobaciones." #. type: cindex -#: guix-git/doc/guix.texi:35339 +#: guix-git/doc/guix.texi:35783 #, no-wrap msgid "on-error" msgstr "on-error" #. type: cindex -#: guix-git/doc/guix.texi:35340 +#: guix-git/doc/guix.texi:35784 #, no-wrap msgid "on-error strategy" msgstr "estrategia ``on-error''" #. type: cindex -#: guix-git/doc/guix.texi:35341 +#: guix-git/doc/guix.texi:35785 #, no-wrap msgid "error strategy" msgstr "estrategia en caso de error" #. type: item -#: guix-git/doc/guix.texi:35342 +#: guix-git/doc/guix.texi:35786 #, no-wrap msgid "--on-error=@var{strategy}" msgstr "--on-error=@var{estrategia}" #. type: table -#: guix-git/doc/guix.texi:35345 +#: guix-git/doc/guix.texi:35789 msgid "Apply @var{strategy} when an error occurs when reading @var{file}. @var{strategy} may be one of the following:" msgstr "Aplica @var{estrategia} cuando ocurre un error durante la lectura de @var{archivo}. @var{estrategia} puede ser uno de los siguientes valores:" #. type: item -#: guix-git/doc/guix.texi:35347 +#: guix-git/doc/guix.texi:35791 #, no-wrap msgid "nothing-special" msgstr "nothing-special" #. type: table -#: guix-git/doc/guix.texi:35349 +#: guix-git/doc/guix.texi:35793 msgid "Report the error concisely and exit. This is the default strategy." msgstr "Informa concisamente del error y termina la ejecución. Es la estrategia predeterminada." #. type: item -#: guix-git/doc/guix.texi:35350 +#: guix-git/doc/guix.texi:35794 #, no-wrap msgid "backtrace" msgstr "backtrace" #. type: table -#: guix-git/doc/guix.texi:35352 +#: guix-git/doc/guix.texi:35796 msgid "Likewise, but also display a backtrace." msgstr "Del mismo modo, pero también muestra la secuencia de llamadas." #. type: item -#: guix-git/doc/guix.texi:35353 +#: guix-git/doc/guix.texi:35797 #, no-wrap msgid "debug" msgstr "debug" #. type: table -#: guix-git/doc/guix.texi:35359 +#: guix-git/doc/guix.texi:35803 msgid "Report the error and enter Guile's debugger. From there, you can run commands such as @code{,bt} to get a backtrace, @code{,locals} to display local variable values, and more generally inspect the state of the program. @xref{Debug Commands,,, guile, GNU Guile Reference Manual}, for a list of available debugging commands." msgstr "Informa del error y entra en el depurador de Guile. A partir de ahí, puede ejecutar órdenes como @code{,bt} para obtener la secuencia de llamadas, @code{,locals} para mostrar los valores de las variables locales, e inspeccionar el estado del programa de forma más general. @xref{Debug Commands,,, guile, GNU Guile Reference Manual}, para una lista de órdenes de depuración disponibles." #. type: Plain text -#: guix-git/doc/guix.texi:35366 +#: guix-git/doc/guix.texi:35810 msgid "Once you have built, configured, re-configured, and re-re-configured your Guix installation, you may find it useful to list the operating system generations available on disk---and that you can choose from the bootloader boot menu:" msgstr "Una vez haya construido, configurado, reconfigurado y re-reconfigurado su instalación de Guix, puede encontrar útil enumerar las generaciones del sistema operativo disponibles en el disco---y que puede seleccionar en el menú de arranque:" #. type: item -#: guix-git/doc/guix.texi:35369 guix-git/doc/guix.texi:37673 +#: guix-git/doc/guix.texi:35813 guix-git/doc/guix.texi:38152 #, no-wrap msgid "describe" msgstr "describe" #. type: table -#: guix-git/doc/guix.texi:35372 -msgid "Describe the current system generation: its file name, the kernel and bootloader used, etc., as well as provenance information when available." +#: guix-git/doc/guix.texi:35816 +#, fuzzy +#| msgid "Describe the current system generation: its file name, the kernel and bootloader used, etc., as well as provenance information when available." +msgid "Describe the running system generation: its file name, the kernel and bootloader used, etc., as well as provenance information when available." msgstr "Describe la generación actual del sistema: su nombre de archivo, el núcleo y el cargador de arranque usados, etcétera, así como información de procedencia cuando esté disponible." +#. type: quotation +#: guix-git/doc/guix.texi:35823 +msgid "The @emph{running} system generation---referred to by @file{/run/current-system}---is not necessarily the @emph{current} system generation---referred to by @file{/var/guix/profiles/system}: it differs when, for instance, you chose from the bootloader menu to boot an older generation." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:35827 +msgid "It can also differ from the @emph{booted} system generation---referred to by @file{/run/booted-system}---for instance because you reconfigured the system in the meantime." +msgstr "" + #. type: item -#: guix-git/doc/guix.texi:35373 guix-git/doc/guix.texi:37677 +#: guix-git/doc/guix.texi:35829 guix-git/doc/guix.texi:38156 #, no-wrap msgid "list-generations" msgstr "list-generations" #. type: table -#: guix-git/doc/guix.texi:35378 +#: guix-git/doc/guix.texi:35834 msgid "List a summary of each generation of the operating system available on disk, in a human-readable way. This is similar to the @option{--list-generations} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "Muestra un resumen de cada generación del sistema operativo disponible en el disco, de manera legible por humanos. Es similar a la opción @option{--list-generations} de @command{guix package} (@pxref{Invoking guix package})." #. type: table -#: guix-git/doc/guix.texi:35383 guix-git/doc/guix.texi:37687 +#: guix-git/doc/guix.texi:35839 guix-git/doc/guix.texi:38166 msgid "Optionally, one can specify a pattern, with the same syntax that is used in @command{guix package --list-generations}, to restrict the list of generations displayed. For instance, the following command displays generations that are up to 10 days old:" msgstr "De manera opcional, se puede especificar un patrón, con la misma sintaxis que la usada en @command{guix package --list-generations}, para restringir la lista de generaciones mostradas. Por ejemplo, la siguiente orden muestra generaciones que tienen hasta 10 días de antigüedad:" #. type: example -#: guix-git/doc/guix.texi:35386 +#: guix-git/doc/guix.texi:35842 #, no-wrap msgid "$ guix system list-generations 10d\n" msgstr "$ guix system list-generations 10d\n" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:35393 +#: guix-git/doc/guix.texi:35849 msgid "The @command{guix system} command has even more to offer! The following sub-commands allow you to visualize how your system services relate to each other:" msgstr "¡La orden @command{guix system} tiene aún más que ofrecer! Las siguientes ordenes le permiten visualizar cual es la relación entre los servicios del sistema:" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35395 +#: guix-git/doc/guix.texi:35851 msgid "system-extension-graph" msgstr "system-extension-graph" #. type: item -#: guix-git/doc/guix.texi:35397 +#: guix-git/doc/guix.texi:35853 #, no-wrap msgid "extension-graph" msgstr "extension-graph" #. type: table -#: guix-git/doc/guix.texi:35404 +#: guix-git/doc/guix.texi:35860 #, fuzzy msgid "Emit to standard output the @dfn{service extension graph} of the operating system defined in @var{file} (@pxref{Service Composition}, for more information on service extensions). By default the output is in Dot/Graphviz format, but you can choose a different format with @option{--graph-backend}, as with @command{guix graph} (@pxref{Invoking guix graph, @option{--backend}}):" msgstr "Emite en formato Dot/Graphviz por la salida estándar el @dfn{grafo de extensiones de servicio} del sistema operativo definido en @var{archivo} (@pxref{Service Composition}, para más información sobre extensiones de servicio)." #. type: table -#: guix-git/doc/guix.texi:35406 +#: guix-git/doc/guix.texi:35862 msgid "The command:" msgstr "La orden:" #. type: example -#: guix-git/doc/guix.texi:35409 +#: guix-git/doc/guix.texi:35865 #, no-wrap msgid "$ guix system extension-graph @var{file} | xdot -\n" msgstr "$ guix system extension-graph @var{archivo} | xdot -\n" #. type: table -#: guix-git/doc/guix.texi:35412 +#: guix-git/doc/guix.texi:35868 msgid "shows the extension relations among services." msgstr "muestra las relaciones de extensión entre los servicios." #. type: anchor{#1} -#: guix-git/doc/guix.texi:35414 +#: guix-git/doc/guix.texi:35870 msgid "system-shepherd-graph" msgstr "system-shepherd-graph" #. type: item -#: guix-git/doc/guix.texi:35414 +#: guix-git/doc/guix.texi:35870 #, no-wrap msgid "shepherd-graph" msgstr "shepherd-graph" #. type: table -#: guix-git/doc/guix.texi:35419 +#: guix-git/doc/guix.texi:35875 #, fuzzy msgid "Emit to standard output the @dfn{dependency graph} of shepherd services of the operating system defined in @var{file}. @xref{Shepherd Services}, for more information and for an example graph." msgstr "Emite en formato Dot/Graphviz por la salida estándar el @dfn{grafo de dependencias} de los servicios shepherd del sistema operativo definido en @var{archivo}. @xref{Shepherd Services}, para más información y un grafo de ejemplo." #. type: table -#: guix-git/doc/guix.texi:35422 +#: guix-git/doc/guix.texi:35878 msgid "Again, the default output format is Dot/Graphviz, but you can pass @option{--graph-backend} to select a different one." msgstr "" #. type: section -#: guix-git/doc/guix.texi:35426 +#: guix-git/doc/guix.texi:35882 #, no-wrap msgid "Invoking @code{guix deploy}" msgstr "Invocación de @command{guix deploy}" #. type: Plain text -#: guix-git/doc/guix.texi:35434 +#: guix-git/doc/guix.texi:35890 msgid "We've already seen @code{operating-system} declarations used to manage a machine's configuration locally. Suppose you need to configure multiple machines, though---perhaps you're managing a service on the web that's comprised of several servers. @command{guix deploy} enables you to use those same @code{operating-system} declarations to manage multiple remote hosts at once as a logical ``deployment''." msgstr "Ya hemos visto como usar declaraciones @code{operating-system} para gestionar la configuración de una máquina de manera local. Supongamos no obstante que necesita configurar múltiples máquinas---quizá esté gestionando un servicio en la web que se componga de varios servidores. @command{guix deploy} le permite usar las mismas declaraciones @code{operating-system} para gestionar múltiples máquinas remotas como un único ``despliegue'' lógico." #. type: quotation -#: guix-git/doc/guix.texi:35439 guix-git/doc/guix.texi:36900 +#: guix-git/doc/guix.texi:35895 guix-git/doc/guix.texi:37390 msgid "The functionality described in this section is still under development and is subject to change. Get in touch with us on @email{guix-devel@@gnu.org}!" msgstr "La funcionalidad descrita en esta sección está todavía en desarrollo y sujeta a cambios. Puede ponerse en contacto con nosotras a través de @email{guix-devel@@gnu.org}." #. type: example -#: guix-git/doc/guix.texi:35443 +#: guix-git/doc/guix.texi:35899 #, no-wrap msgid "guix deploy @var{file}\n" msgstr "guix deploy @var{archivo}\n" #. type: Plain text -#: guix-git/doc/guix.texi:35447 +#: guix-git/doc/guix.texi:35903 msgid "Such an invocation will deploy the machines that the code within @var{file} evaluates to. As an example, @var{file} might contain a definition like this:" msgstr "Dicha invocación llevará a cabo en las máquinas el despliegue al cual el @var{archivo} evalúe. Como ejemplo, @var{archivo} puede contener una definición como esta:" #. type: lisp -#: guix-git/doc/guix.texi:35454 +#: guix-git/doc/guix.texi:35910 #, no-wrap msgid "" ";; This is a Guix deployment of a \"bare bones\" setup, with\n" @@ -68511,7 +69492,7 @@ msgstr "" ";; a la interfaz local de la máquina anfitriona.\n" #. type: lisp -#: guix-git/doc/guix.texi:35457 +#: guix-git/doc/guix.texi:35913 #, no-wrap msgid "" "(use-service-modules networking ssh)\n" @@ -68523,7 +69504,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:35478 +#: guix-git/doc/guix.texi:35934 #, fuzzy, no-wrap #| msgid "" #| "(define %system\n" @@ -68594,7 +69575,7 @@ msgstr "" # FUZZY #. type: lisp -#: guix-git/doc/guix.texi:35488 +#: guix-git/doc/guix.texi:35944 #, no-wrap msgid "" "(list (machine\n" @@ -68618,34 +69599,34 @@ msgstr "" " (port 2222)))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:35501 +#: guix-git/doc/guix.texi:35957 msgid "The file should evaluate to a list of @var{machine} objects. This example, upon being deployed, will create a new generation on the remote system realizing the @code{operating-system} declaration @code{%system}. @code{environment} and @code{configuration} specify how the machine should be provisioned---that is, how the computing resources should be created and managed. The above example does not create any resources, as a @code{'managed-host} is a machine that is already running the Guix system and available over the network. This is a particularly simple case; a more complex deployment may involve, for example, starting virtual machines through a Virtual Private Server (VPS) provider. In such a case, a different @var{environment} type would be used." msgstr "El archivo debe evaluar a una lista de objetos @var{machine}. Este ejemplo, durante el despliegue, creará una nueva generación en el sistema remoto que implemente la declaración @code{operating-system} @var{%system}. @code{environment} y @code{configuration} especifican cómo debe aprovisionarse la máquina---es decir, cómo se crean y gestionan los recursos computacionales. El ejemplo previo no crea ningún recurso, ya que @code{'managed-host} es una máquina que ya está ejecutando el sistema Guix y está disponible a través de la red. Este es un caso particularmente simple; un despliegue más complejo puede implicar, por ejemplo, el arranque de máquinas virtuales a través de un proveedor de servidores privados virtuales (VPS). En dicho caso se usaría un tipo distinto en @var{environment}." #. type: Plain text -#: guix-git/doc/guix.texi:35506 +#: guix-git/doc/guix.texi:35962 msgid "Do note that you first need to generate a key pair on the coordinator machine to allow the daemon to export signed archives of files from the store (@pxref{Invoking guix archive}), though this step is automatic on Guix System:" msgstr "Tenga en cuenta que primero debe generar un par de claves en la máquina coordinadora para permitir al daemon exportar archivos firmados de archivos en el almacén (@pxref{Invoking guix archive}), aunque este paso se realiza de manera automática en el sistema Guix:" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:35514 +#: guix-git/doc/guix.texi:35970 msgid "Each target machine must authorize the key of the master machine so that it accepts store items it receives from the coordinator:" msgstr "Cada máquina de destino debe autorizar a la clave de la máquina maestra para que acepte elementos del almacén que reciba de la coordinadora:" #. type: example -#: guix-git/doc/guix.texi:35517 +#: guix-git/doc/guix.texi:35973 #, no-wrap msgid "# guix archive --authorize < coordinator-public-key.txt\n" msgstr "# guix archive --authorize < clave-publica-coordinadora.txt\n" #. type: Plain text -#: guix-git/doc/guix.texi:35528 +#: guix-git/doc/guix.texi:35984 msgid "@code{user}, in this example, specifies the name of the user account to log in as to perform the deployment. Its default value is @code{root}, but root login over SSH may be forbidden in some cases. To work around this, @command{guix deploy} can log in as an unprivileged user and employ @code{sudo} to escalate privileges. This will only work if @code{sudo} is currently installed on the remote and can be invoked non-interactively as @code{user}. That is, the line in @code{sudoers} granting @code{user} the ability to use @code{sudo} must contain the @code{NOPASSWD} tag. This can be accomplished with the following operating system configuration snippet:" msgstr "La usuaria proporcionada en @code{user}, en este ejemplo, especifica la cuenta de la usuaria con la que ingresar en el sistema para realizar el despliegue. Su valor predeterminado es @code{root}, pero el ingreso al sistema como root a través de SSH en algunos casos puede no estar permitido. Para solventar este problema, @command{guix deploy} puede ingresar al sistema como una usuaria sin privilegios y ejecutar @code{sudo} para escalar privilegios. Esto funciona únicamente si @code{sudo} está instalado en el sistema remoto y se puede invocar de manera no interactiva como @code{user}. Es decir: la línea de @code{sudoers} que permite a la usuaria @code{user} la capacidad de usar @code{sudo} debe contener la etiqueta @code{NOPASSWD}. Esto se puede conseguir con el siguiente fragmento de la configuración de sistema operativo:" #. type: lisp -#: guix-git/doc/guix.texi:35532 +#: guix-git/doc/guix.texi:35988 #, no-wrap msgid "" "(use-modules ...\n" @@ -68657,7 +69638,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:35534 +#: guix-git/doc/guix.texi:35990 #, no-wrap msgid "" "(define %user \"username\")\n" @@ -68667,7 +69648,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:35542 +#: guix-git/doc/guix.texi:35998 #, no-wrap msgid "" "(operating-system\n" @@ -68689,248 +69670,298 @@ msgstr "" "\n" #. type: Plain text -#: guix-git/doc/guix.texi:35547 +#: guix-git/doc/guix.texi:36003 msgid "For more information regarding the format of the @file{sudoers} file, consult @command{man sudoers}." msgstr "Para obtener más información sobre el formato del archivo @file{sudoers} consulte @command{man sudoers}." +#. type: Plain text +#: guix-git/doc/guix.texi:36008 +msgid "Once you've deployed a system on a set of machines, you may find it useful to run a command on all of them. The @option{--execute} or @option{-x} option lets you do that; the example below runs @command{uname -a} on all the machines listed in the deployment file:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:36011 +#, fuzzy, no-wrap +#| msgid "guix deploy @var{file}\n" +msgid "guix deploy @var{file} -x -- uname -a\n" +msgstr "guix deploy @var{archivo}\n" + +#. type: Plain text +#: guix-git/doc/guix.texi:36015 +msgid "One thing you may often need to do after deployment is restart specific services on all the machines, which you can do like so:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:36018 +#, no-wrap +msgid "guix deploy @var{file} -x -- herd restart @var{service}\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36022 +msgid "The @command{guix deploy -x} command returns zero if and only if the command succeeded on all the machines." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36027 +msgid "Below are the data types you need to know about when writing a deployment file." +msgstr "" + #. type: deftp -#: guix-git/doc/guix.texi:35548 +#: guix-git/doc/guix.texi:36028 #, no-wrap msgid "{Data Type} machine" msgstr "{Tipo de datos} machine" #. type: deftp -#: guix-git/doc/guix.texi:35551 +#: guix-git/doc/guix.texi:36031 msgid "This is the data type representing a single machine in a heterogeneous Guix deployment." msgstr "Tipo de datos que representa una máquina individual en un despliegue heterogéneo de Guix." #. type: table -#: guix-git/doc/guix.texi:35555 +#: guix-git/doc/guix.texi:36035 msgid "The object of the operating system configuration to deploy." msgstr "El objeto de la configuración de sistema operativo a desplegar." #. type: code{#1} -#: guix-git/doc/guix.texi:35556 +#: guix-git/doc/guix.texi:36036 #, no-wrap msgid "environment" msgstr "environment" # FUZZY FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:35558 +#: guix-git/doc/guix.texi:36038 msgid "An @code{environment-type} describing how the machine should be provisioned." msgstr "Un objeto @code{environment-type} que describe como debe aprovisionarse la máquina." #. type: item -#: guix-git/doc/guix.texi:35559 +#: guix-git/doc/guix.texi:36039 #, no-wrap msgid "@code{configuration} (default: @code{#f})" msgstr "@code{configuration} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:35564 +#: guix-git/doc/guix.texi:36044 msgid "An object describing the configuration for the machine's @code{environment}. If the @code{environment} has a default configuration, @code{#f} may be used. If @code{#f} is used for an environment with no default configuration, however, an error will be thrown." msgstr "Un objeto que describe la configuración para el entorno (@code{environment}) de la máquina. Si @code{environment} tiene una configuración predeterminada, puede usarse @code{#f}. No obstante, si se usa @code{#f} para un entorno sin configuración predeterminada se emitirá un error." #. type: deftp -#: guix-git/doc/guix.texi:35567 +#: guix-git/doc/guix.texi:36047 #, no-wrap msgid "{Data Type} machine-ssh-configuration" msgstr "{Tipo de datos} machine-ssh-configuration" # FUZZY #. type: deftp -#: guix-git/doc/guix.texi:35570 +#: guix-git/doc/guix.texi:36050 msgid "This is the data type representing the SSH client parameters for a machine with an @code{environment} of @code{managed-host-environment-type}." msgstr "Tipo de datos que representa los parámetros del cliente SSH para una máquina con un entorno (@code{environment}) de tipo gestionado (@code{managed-host-environment-type})." #. type: item -#: guix-git/doc/guix.texi:35573 +#: guix-git/doc/guix.texi:36053 #, no-wrap msgid "@code{build-locally?} (default: @code{#t})" msgstr "@code{build-locally?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:35575 +#: guix-git/doc/guix.texi:36055 msgid "If false, system derivations will be built on the machine being deployed to." msgstr "Si es falso, las derivaciones del sistema se construirán en la máquina sobre la que se realiza el despliegue." #. type: code{#1} -#: guix-git/doc/guix.texi:35575 +#: guix-git/doc/guix.texi:36055 #, no-wrap msgid "system" msgstr "system" #. type: table -#: guix-git/doc/guix.texi:35578 +#: guix-git/doc/guix.texi:36058 msgid "The system type describing the architecture of the machine being deployed to---e.g., @code{\"x86_64-linux\"}." msgstr "El tipo de sistema que describe la arquitectura de la máquina sobre la que se realiza el despliegue---por ejemplo, @code{\"x86_64-linux\"}." #. type: item -#: guix-git/doc/guix.texi:35578 +#: guix-git/doc/guix.texi:36058 #, no-wrap msgid "@code{authorize?} (default: @code{#t})" msgstr "@code{authorize?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:35581 +#: guix-git/doc/guix.texi:36061 msgid "If true, the coordinator's signing key will be added to the remote's ACL keyring." msgstr "Si es verdadero, la clave de firma de la máquina coordinadora debe añadirse al anillo de claves del control de acceso (ACL) de la máquina remota." #. type: item -#: guix-git/doc/guix.texi:35583 +#: guix-git/doc/guix.texi:36063 #, no-wrap msgid "@code{identity} (default: @code{#f})" msgstr "@code{identity} (predeterminada: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:35586 +#: guix-git/doc/guix.texi:36066 msgid "If specified, the path to the SSH private key to use to authenticate with the remote host." msgstr "Cuando se especifica, indica la ruta al archivo que contiene la clave privada de SSH para la identificación con la máquina remota." #. type: item -#: guix-git/doc/guix.texi:35587 +#: guix-git/doc/guix.texi:36067 #, no-wrap msgid "@code{host-key} (default: @code{#f})" msgstr "@code{host-key} (predeterminada: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:35589 +#: guix-git/doc/guix.texi:36069 msgid "This should be the SSH host key of the machine, which looks like this:" msgstr "Esta debería ser la clave SSH de la máquina, que puede ser más o menos así:" #. type: example -#: guix-git/doc/guix.texi:35592 +#: guix-git/doc/guix.texi:36072 #, no-wrap msgid "ssh-ed25519 AAAAC3Nz@dots{} root@@example.org\n" msgstr "ssh-ed25519 AAAAC3Nz@dots{} root@@example.org\n" #. type: table -#: guix-git/doc/guix.texi:35597 +#: guix-git/doc/guix.texi:36077 msgid "When @code{host-key} is @code{#f}, the server is authenticated against the @file{~/.ssh/known_hosts} file, just like the OpenSSH @command{ssh} client does." msgstr "Cuando @code{host-key} es @code{#f}, el servidor se identifica con el archivo @file{~/.ssh/known_hosts}, igual que hace el cliente @command{ssh} de OpenSSH." #. type: item -#: guix-git/doc/guix.texi:35598 +#: guix-git/doc/guix.texi:36078 #, no-wrap msgid "@code{allow-downgrades?} (default: @code{#f})" msgstr "@code{allow-downgrades?} (predeterminado: @code{#f})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:35600 +#: guix-git/doc/guix.texi:36080 msgid "Whether to allow potential downgrades." msgstr "Determina si se permiten instalaciones de versiones potencialmente anteriores." #. type: table -#: guix-git/doc/guix.texi:35608 +#: guix-git/doc/guix.texi:36088 msgid "Like @command{guix system reconfigure}, @command{guix deploy} compares the channel commits currently deployed on the remote host (as returned by @command{guix system describe}) to those currently in use (as returned by @command{guix describe}) to determine whether commits currently in use are descendants of those deployed. When this is not the case and @code{allow-downgrades?} is false, it raises an error. This ensures you do not accidentally downgrade remote machines." msgstr "Al igual que @command{guix system reconfigure}, @command{guix deploy} compara la revisión del canal desplegada actualmente en la máquina remota (como muestra @command{guix system describe}) con aquella que se esté usando en ese momento (como muestra @command{guix describe}) para determinar si las revisiones que se despliegan son descendientes de aquellas en uso. Cuando no es el caso y el valor de @code{allow-downgrades?} es falso, emite un error. Esto le permite no instalar accidentalmente una versión anterior en máquinas remotas." +#. type: item +#: guix-git/doc/guix.texi:36089 +#, fuzzy, no-wrap +#| msgid "@code{check?} (default: @code{#t})" +msgid "@code{safety-checks?} (default: @code{#t})" +msgstr "@code{check?} (predeterminado: @code{#t})" + +#. type: table +#: guix-git/doc/guix.texi:36095 +msgid "Whether to perform ``safety checks'' before deployment. This includes verifying that devices and file systems referred to in the operating system configuration actually exist on the target machine, and making sure that Linux modules required to access storage devices at boot time are listed in the @code{initrd-modules} field of the operating system." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:36098 +msgid "These safety checks ensure that you do not inadvertently deploy a system that would fail to boot. Be careful before turning them off!" +msgstr "" + #. type: deftp -#: guix-git/doc/guix.texi:35611 +#: guix-git/doc/guix.texi:36101 #, no-wrap msgid "{Data Type} digital-ocean-configuration" msgstr "{Tipo de datos} digital-ocean-configuration" # FUZZY #. type: deftp -#: guix-git/doc/guix.texi:35614 +#: guix-git/doc/guix.texi:36104 msgid "This is the data type describing the Droplet that should be created for a machine with an @code{environment} of @code{digital-ocean-environment-type}." msgstr "Tipo de datos que representa el Droplet que debe crearse para la máquina con @code{environment} @code{digital-ocean-environment-type}." #. type: code{#1} -#: guix-git/doc/guix.texi:35616 +#: guix-git/doc/guix.texi:36106 #, no-wrap msgid "ssh-key" msgstr "ssh-key" #. type: table -#: guix-git/doc/guix.texi:35619 +#: guix-git/doc/guix.texi:36109 #, fuzzy msgid "The path to the SSH private key to use to authenticate with the remote host. In the future, this field may not exist." msgstr "La ruta al archivo que contiene la clave privada de SSH usada para la identificación con la máquina remota. En el futuro este campo puede desaparecer." #. type: code{#1} -#: guix-git/doc/guix.texi:35619 +#: guix-git/doc/guix.texi:36109 #, no-wrap msgid "tags" msgstr "tags" #. type: table -#: guix-git/doc/guix.texi:35622 +#: guix-git/doc/guix.texi:36112 #, fuzzy msgid "A list of string ``tags'' that uniquely identify the machine. Must be given such that no two machines in the deployment have the same set of tags." msgstr "Una lista de cadenas de etiquetas (``tags'') que identifican de manera unívoca a la máquina. Debe comprobarse que en un despliegue no existan dos máquinas que tengan el mismo conjunto de etiquetas." #. type: code{#1} -#: guix-git/doc/guix.texi:35622 +#: guix-git/doc/guix.texi:36112 #, no-wrap msgid "region" msgstr "region" #. type: table -#: guix-git/doc/guix.texi:35624 +#: guix-git/doc/guix.texi:36114 msgid "A Digital Ocean region slug, such as @code{\"nyc3\"}." msgstr "Descriptor (slug) de región de Digital Ocean, como @code{\"nyc3\"}." #. type: table -#: guix-git/doc/guix.texi:35626 +#: guix-git/doc/guix.texi:36116 msgid "A Digital Ocean size slug, such as @code{\"s-1vcpu-1gb\"}" msgstr "Descriptor (slug) de tamaño de Digital Ocean, como @code{\"s-1vcpu-1gb\"}" #. type: code{#1} -#: guix-git/doc/guix.texi:35626 +#: guix-git/doc/guix.texi:36116 #, no-wrap msgid "enable-ipv6?" msgstr "enable-ipv6?" # FUZZY #. type: table -#: guix-git/doc/guix.texi:35628 +#: guix-git/doc/guix.texi:36118 msgid "Whether or not the droplet should be created with IPv6 networking." msgstr "Determina si droplet debe crearse con capacidad de usar redes IPv6 o no." #. type: section -#: guix-git/doc/guix.texi:35632 +#: guix-git/doc/guix.texi:36122 #, no-wrap msgid "Running Guix in a Virtual Machine" msgstr "Ejecución de Guix en una máquina virtual" # TODO (MAAV): Comprobar por qué se cambió a x86_64 #. type: Plain text -#: guix-git/doc/guix.texi:35640 +#: guix-git/doc/guix.texi:36130 #, fuzzy msgid "To run Guix in a virtual machine (VM), one can use the pre-built Guix VM image distributed at @url{@value{BASE-URL}/guix-system-vm-image-@value{VERSION}.x86_64-linux.qcow2}. This image is a compressed image in QCOW format. You can pass it to an emulator such as @uref{https://qemu.org/, QEMU} (see below for details)." msgstr "Para ejecutar Guix en una máquina virtual (VM), se puede usar tanto la imagen de máquina virtual de Guix preconstruida que se distribuye en @indicateurl{@value{BASE-URL}/guix-system-vm-image-@value{VERSION}.x86_64-linux.qcow2.xz}. Esta imagen es una imagen comprimida con formato QCOW. Primero tendrá que descomprimirla con @command{xz -d} y, una vez hecho, podrá proporcionarsela a un emulador como QEMU (véase más detalles a continuación)." #. type: Plain text -#: guix-git/doc/guix.texi:35647 +#: guix-git/doc/guix.texi:36137 msgid "This image boots the Xfce graphical environment and it contains some commonly used tools. You can install more software in the image by running @command{guix package} in a terminal (@pxref{Invoking guix package}). You can also reconfigure the system based on its initial configuration file available as @file{/run/current-system/configuration.scm} (@pxref{Using the Configuration System})." msgstr "Esta imagen arranca en el entorno gráfico Xfce y contiene algunas herramientas usadas de forma común. Puede instalar más software en la imagen mediante la ejecución de @command{guix package} en un terminal (@pxref{Invoking guix package}). También puede reconfigurar el sistema en base a su archivo de configuración inicial, disponible como @file{/run/current-system/configuration.scm} (@pxref{Using the Configuration System})." #. type: Plain text -#: guix-git/doc/guix.texi:35650 +#: guix-git/doc/guix.texi:36140 #, fuzzy #| msgid "Instead of using this pre-built image, one can also build their own virtual machine image using @command{guix system vm-image} (@pxref{Invoking guix system}). The returned image is in qcow2 format, which the @uref{https://qemu.org/, QEMU emulator} can efficiently use." msgid "Instead of using this pre-built image, one can also build their own image using @command{guix system image} (@pxref{Invoking guix system})." msgstr "En vez de usar esta imagen preconstruida, se puede construir una imagen propia para máquina virtual mediante el uso de @command{guix system vm-image} (@pxref{Invoking guix system}). La imagen devuelta se encuentra en formato qcow2, el cual el @uref{https://qemu.org/, emulador QEMU} puede usar de manera eficiente." #. type: cindex -#: guix-git/doc/guix.texi:35651 +#: guix-git/doc/guix.texi:36141 #, no-wrap msgid "QEMU" msgstr "QEMU" #. type: Plain text -#: guix-git/doc/guix.texi:35658 +#: guix-git/doc/guix.texi:36148 #, fuzzy msgid "If you built your own image, you must copy it out of the store (@pxref{The Store}) and give yourself permission to write to the copy before you can use it. When invoking QEMU, you must choose a system emulator that is suitable for your hardware platform. Here is a minimal QEMU invocation that will boot the result of @command{guix system image -t qcow2} on x86_64 hardware:" msgstr "Si ha construido su propia imagen, debe copiarla fuera del almacén y proporcionarse a sí misma permisos de escritura sobre dicha copia antes de usarla. En la invocación de QEMU debe elegir un emulador de sistema que sea adecuado para su plataforma hardware. Esta es una invocación de QEMU mínima que arrancará el resultado de @command{guix system vm-image} en hardware x86_64:" #. type: example -#: guix-git/doc/guix.texi:35665 +#: guix-git/doc/guix.texi:36155 #, no-wrap msgid "" "$ qemu-system-x86_64 \\\n" @@ -68946,142 +69977,142 @@ msgstr "" " -drive if=none,file=/tmp/imagen-qemu,id=midisco\n" #. type: Plain text -#: guix-git/doc/guix.texi:35668 +#: guix-git/doc/guix.texi:36158 msgid "Here is what each of these options means:" msgstr "Aquí está el significado de cada una de esas opciones:" #. type: item -#: guix-git/doc/guix.texi:35670 +#: guix-git/doc/guix.texi:36160 #, no-wrap msgid "qemu-system-x86_64" msgstr "qemu-system-x86_64" #. type: table -#: guix-git/doc/guix.texi:35673 +#: guix-git/doc/guix.texi:36163 msgid "This specifies the hardware platform to emulate. This should match the host." msgstr "Esto especifica la plataforma hardware a emular. Debe corresponder con el anfitrión." #. type: item -#: guix-git/doc/guix.texi:35674 +#: guix-git/doc/guix.texi:36164 #, no-wrap msgid "-nic user,model=virtio-net-pci" msgstr "-nic user,model=virtio-net-pci" #. type: table -#: guix-git/doc/guix.texi:35682 +#: guix-git/doc/guix.texi:36172 msgid "Enable the unprivileged user-mode network stack. The guest OS can access the host but not vice versa. This is the simplest way to get the guest OS online. @code{model} specifies which network device to emulate: @code{virtio-net-pci} is a special device made for virtualized operating systems and recommended for most uses. Assuming your hardware platform is x86_64, you can get a list of available NIC models by running @command{qemu-system-x86_64 -nic model=help}." msgstr "Activa la pila de red en espacio de usuaria sin privilegios. El SO anfitrión puede acceder a la máquina virtualizada pero no al revés. Este es el modo más simple de poner la máquina en red. @code{model} especifica que dispositivo de red emular: @code{virtio-net-pci} es un dispositivo especial para sistemas operativos virtualizados y recomendado para la mayor parte de usos. Asumiendo que su plataforma de hardware es x86_64, puede obtener una lista de adaptadores de red disponibles ejecutando @command{qemu-system-x86_64 -nic model=help}." #. type: item -#: guix-git/doc/guix.texi:35683 +#: guix-git/doc/guix.texi:36173 #, no-wrap msgid "-enable-kvm" msgstr "-enable-kvm" #. type: table -#: guix-git/doc/guix.texi:35687 +#: guix-git/doc/guix.texi:36177 msgid "If your system has hardware virtualization extensions, enabling the virtual machine support (KVM) of the Linux kernel will make things run faster." msgstr "Si su sistema tiene extensiones de virtualización por hardware, la activación de la implementación de máquinas virtuales (KVM) del núcleo Linux hará que la ejecución sea más rápida." #. type: item -#: guix-git/doc/guix.texi:35689 +#: guix-git/doc/guix.texi:36179 #, no-wrap msgid "-m 1024" msgstr "-m 1024" #. type: table -#: guix-git/doc/guix.texi:35692 +#: guix-git/doc/guix.texi:36182 msgid "RAM available to the guest OS, in mebibytes. Defaults to 128@tie{}MiB, which may be insufficient for some operations." msgstr "RAM disponible para el sistema operativo virtualizado, en mebibytes. El valor predeterminado es 128@tie{}MiB, que puede ser insuficiente para algunas operaciones." #. type: item -#: guix-git/doc/guix.texi:35693 +#: guix-git/doc/guix.texi:36183 #, no-wrap msgid "-device virtio-blk,drive=myhd" msgstr "-device virtio-blk,drive=midisco" # FUZZY #. type: table -#: guix-git/doc/guix.texi:35698 +#: guix-git/doc/guix.texi:36188 msgid "Create a @code{virtio-blk} drive called ``myhd''. @code{virtio-blk} is a ``paravirtualization'' mechanism for block devices that allows QEMU to achieve better performance than if it were emulating a complete disk drive. See the QEMU and KVM documentation for more info." msgstr "Crea un dispositivo @code{virtio-blk} llamado ``midisco''. @code{virtio-blk} es un mecanismo de ``paravirtualización'' de dispositivos de bloques que permite a QEMU obtener un mejor rendimiento que se emulase una unidad de disco completa. Véase la documentación de QEMU y KVM para más información." #. type: item -#: guix-git/doc/guix.texi:35699 +#: guix-git/doc/guix.texi:36189 #, no-wrap msgid "-drive if=none,file=/tmp/qemu-image,id=myhd" msgstr "-drive if=none,file=/tmp/imagen-qemu,id=midisco" #. type: table -#: guix-git/doc/guix.texi:35702 +#: guix-git/doc/guix.texi:36192 msgid "Use our QCOW image, the @file{/tmp/qemu-image} file, as the backing store of the ``myhd'' drive." msgstr "Usa nuestra imagen QCOW, el archivo @file{/tmp/imagen-qemu}, como almacenamiento físico para la unidad ``midisco''." #. type: Plain text -#: guix-git/doc/guix.texi:35712 +#: guix-git/doc/guix.texi:36202 #, fuzzy msgid "The default @command{run-vm.sh} script that is returned by an invocation of @command{guix system vm} does not add a @command{-nic user} flag by default. To get network access from within the vm add the @code{(dhcp-client-service)} to your system definition and start the VM using @command{$(guix system vm config.scm) -nic user}. An important caveat of using @command{-nic user} for networking is that @command{ping} will not work, because it uses the ICMP protocol. You'll have to use a different command to check for network connectivity, for example @command{guix download}." msgstr "El guión @command{run-vm.sh} predeterminado que devuelve la invocación de @command{guix system vm} no añade una opción @command{-nic user} de manera predeterminada. Para obtener acceso a la red desde la máquina virtual añada el servicio @code{(dhcp-client-service)} a su definición de sistema y arranque la máquina virtual mediante el uso de @command{`guix system vm config.scm` -nic user}. Un punto importante a tener en cuenta del uso de @command{-ni user} para la obtención de red es que @command{ping} no funcionará, puesto que usa el protocolo ICMP. Deberá usar una orden diferente para comprobar la conectividad a la red, por ejemplo @command{guix download}." #. type: subsection -#: guix-git/doc/guix.texi:35713 +#: guix-git/doc/guix.texi:36203 #, no-wrap msgid "Connecting Through SSH" msgstr "Conexión a través de SSH" #. type: Plain text -#: guix-git/doc/guix.texi:35721 +#: guix-git/doc/guix.texi:36211 msgid "To enable SSH inside a VM you need to add an SSH server like @code{openssh-service-type} to your VM (@pxref{Networking Services, @code{openssh-service-type}}). In addition you need to forward the SSH port, 22 by default, to the host. You can do this with" msgstr "Para activar SSH dentro de una máquina virtual debe añadir un servidor SSH como @code{(openssh-service-type)} en su máquina virtual (@pxref{Networking Services, @code{openssh-service-type}}). Además debe que redirigir el puerto SSH, el 22 por omisión, a la máquina anfitriona. Puede hacerlo con" #. type: example -#: guix-git/doc/guix.texi:35724 +#: guix-git/doc/guix.texi:36214 #, fuzzy, no-wrap msgid "$(guix system vm config.scm) -nic user,model=virtio-net-pci,hostfwd=tcp::10022-:22\n" msgstr "`guix system vm config.scm` -nic user,model=virtio-net-pci,hostfwd=tcp::10022-:22\n" #. type: Plain text -#: guix-git/doc/guix.texi:35727 +#: guix-git/doc/guix.texi:36217 msgid "To connect to the VM you can run" msgstr "Para conectarse a la máquina virtual puede ejecutar" #. type: example -#: guix-git/doc/guix.texi:35730 +#: guix-git/doc/guix.texi:36220 #, fuzzy, no-wrap msgid "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 10022 localhost\n" msgstr "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 10022\n" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:35737 +#: guix-git/doc/guix.texi:36227 msgid "The @command{-p} tells @command{ssh} the port you want to connect to. @command{-o UserKnownHostsFile=/dev/null} prevents @command{ssh} from complaining every time you modify your @command{config.scm} file and the @command{-o StrictHostKeyChecking=no} prevents you from having to allow a connection to an unknown host every time you connect." msgstr "La @command{-p} indica a @command{ssh} el puerto al que se debe conectar. @command{-o UserKnownHostsFile=/dev/null} evita que @command{ssh} se queje cada vez que modifique su archivo @command{config.scm} y la orden @command{-o StrictHostKeyChecking=no} evita que tenga que autorizar la conexión a una máquina desconocida cada vez que se conecte." #. type: quotation -#: guix-git/doc/guix.texi:35743 +#: guix-git/doc/guix.texi:36233 msgid "If you find the above @samp{hostfwd} example not to be working (e.g., your SSH client hangs attempting to connect to the mapped port of your VM), make sure that your Guix System VM has networking support, such as by using the @code{dhcp-client-service-type} service type." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:35745 +#: guix-git/doc/guix.texi:36235 #, no-wrap msgid "Using @command{virt-viewer} with Spice" msgstr "Uso de @command{virt-viewer} con Spice" #. type: Plain text -#: guix-git/doc/guix.texi:35751 +#: guix-git/doc/guix.texi:36241 msgid "As an alternative to the default @command{qemu} graphical client you can use the @command{remote-viewer} from the @command{virt-viewer} package. To connect pass the @command{-spice port=5930,disable-ticketing} flag to @command{qemu}. See previous section for further information on how to do this." msgstr "Como alternativa al cliente gráfico predeterminado de @command{qemu} puede usar @command{remote-viewer} del paquete @command{virt-viewer}. Para conectarse proporcione la opción @command{-spice port=5930,disable-ticketing} a @command{qemu}. Véase la sección previa para más información sobre cómo hacer esto." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:35754 +#: guix-git/doc/guix.texi:36244 #, fuzzy msgid "Spice also allows you to do some nice stuff like share your clipboard with your VM@. To enable that you'll also have to pass the following flags to @command{qemu}:" msgstr "Spice también le permite hacer cosas como compartir su portapapeles con su máquina virtual. Para activarlo debe proporcionar también las siguientes opciones a @command{qemu}:" #. type: example -#: guix-git/doc/guix.texi:35760 +#: guix-git/doc/guix.texi:36250 #, fuzzy, no-wrap #| msgid "" #| "-device virtio-serial-pci,id=virtio-serial0,max_ports=16,bus=pci.0,addr=0x5\n" @@ -69100,83 +70131,83 @@ msgstr "" "name=com.redhat.spice.0\n" #. type: Plain text -#: guix-git/doc/guix.texi:35764 +#: guix-git/doc/guix.texi:36254 msgid "You'll also need to add the @code{(spice-vdagent-service)} to your system definition (@pxref{Miscellaneous Services, Spice service})." msgstr "También deber añadir a su definición de sistema el servicio @code{(spice-vdagent-service)} (@pxref{Miscellaneous Services, servicio Spice})." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:35771 +#: guix-git/doc/guix.texi:36261 msgid "The previous sections show the available services and how one can combine them in an @code{operating-system} declaration. But how do we define them in the first place? And what is a service anyway?" msgstr "Las secciones anteriores muestran los servicios disponibles y cómo se pueden combinar en una declaración @code{operating-system}. ¿Pero cómo las definimos en primer lugar? ¿Y qué es un servicio en cualquier caso?" #. type: cindex -#: guix-git/doc/guix.texi:35784 +#: guix-git/doc/guix.texi:36274 #, no-wrap msgid "daemons" msgstr "daemons" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:35797 +#: guix-git/doc/guix.texi:36287 msgid "Here we define a @dfn{service} as, broadly, something that extends the functionality of the operating system. Often a service is a process---a @dfn{daemon}---started when the system boots: a secure shell server, a Web server, the Guix build daemon, etc. Sometimes a service is a daemon whose execution can be triggered by another daemon---e.g., an FTP server started by @command{inetd} or a D-Bus service activated by @command{dbus-daemon}. Occasionally, a service does not map to a daemon. For instance, the ``account'' service collects user accounts and makes sure they exist when the system runs; the ``udev'' service collects device management rules and makes them available to the eudev daemon; the @file{/etc} service populates the @file{/etc} directory of the system." msgstr "Definimos un @dfn{servicio} como, de manera genérica, algo que extiende la funcionalidad del sistema operativo. Habitualmente un servicio es un proceso---un @dfn{daemon}---iniciado cuando el sistema arranca: un servidor de shell seguro, un servidor Web, el daemon de construcción de Guix, etc. A veces un servicio es un daemon cuya ejecución puede ser iniciada por otro daemon---por ejemplo, un servidor FTP iniciado por @command{inetd} o un servicio D-Bus activado por @command{dbus-daemon}. De manera ocasional, un servicio no se puede asociar a un daemon. Por ejemplo, el servicio ``account'' recopila cuentas de usuaria y se asegura que existen cuando el sistema se ejecuta; el servicio ``udev'' recopila reglas de gestión de dispositivos y los pone a disposición del daemon eudev; el servicio @file{/etc} genera el contenido del directorio @file{/etc} del sistema." #. type: cindex -#: guix-git/doc/guix.texi:35798 +#: guix-git/doc/guix.texi:36288 #, no-wrap msgid "service extensions" msgstr "extensiones de servicios" #. type: Plain text -#: guix-git/doc/guix.texi:35810 +#: guix-git/doc/guix.texi:36300 msgid "Guix system services are connected by @dfn{extensions}. For instance, the secure shell service @emph{extends} the Shepherd---the initialization system, running as PID@tie{}1---by giving it the command lines to start and stop the secure shell daemon (@pxref{Networking Services, @code{openssh-service-type}}); the UPower service extends the D-Bus service by passing it its @file{.service} specification, and extends the udev service by passing it device management rules (@pxref{Desktop Services, @code{upower-service}}); the Guix daemon service extends the Shepherd by passing it the command lines to start and stop the daemon, and extends the account service by passing it a list of required build user accounts (@pxref{Base Services})." msgstr "Los servicios de Guix se conectan a través de @dfn{extensiones}. Por ejemplo, el servicio de shell seguro @emph{extiende} Shepherd---el sistema de inicio, el cual se ejecuta como PID@tie{}1---proporcionando las líneas de órdenes para arrancar y parar el daemon de shell seguro (@pxref{Networking Services, @code{lsh-service}}); el servicio UPower extiende el servicio D-Bus proporcionando su especificación @file{.service}, y extiende el servicio udev al que proporciona reglas de gestión de dispositivos (@pxref{Desktop Services, @code{upower-service}}); el servicio del daemon de Guix extiende Shepherd proporcionando las líneas de órdenes para arrancar y parar el daemon, y extiende el servicio de cuentas proporcionando una lista de cuentas de usuarias de construcción que necesita (@pxref{Base Services})." #. type: Plain text -#: guix-git/doc/guix.texi:35814 +#: guix-git/doc/guix.texi:36304 msgid "All in all, services and their ``extends'' relations form a directed acyclic graph (DAG). If we represent services as boxes and extensions as arrows, a typical system might provide something like this:" msgstr "Al fin y al cabo, los servicios y sus relaciones de ``extensión'' forman un grafo acíclico dirigido (GAD). Si representamos los servicios como cajas y las extensiones como flechas, un sistema típico puede proporcionar algo de este estilo:" #. type: Plain text -#: guix-git/doc/guix.texi:35816 +#: guix-git/doc/guix.texi:36306 msgid "@image{images/service-graph,,5in,Typical service extension graph.}" msgstr "@image{images/service-graph,,5in,Grafo típico de extensiones de servicios.}" #. type: cindex -#: guix-git/doc/guix.texi:35817 +#: guix-git/doc/guix.texi:36307 #, no-wrap msgid "system service" msgstr "servicio del sistema" #. type: Plain text -#: guix-git/doc/guix.texi:35825 +#: guix-git/doc/guix.texi:36315 msgid "At the bottom, we see the @dfn{system service}, which produces the directory containing everything to run and boot the system, as returned by the @command{guix system build} command. @xref{Service Reference}, to learn about the other service types shown here. @xref{system-extension-graph, the @command{guix system extension-graph} command}, for information on how to generate this representation for a particular operating system definition." msgstr "En la base, podemos ver el @dfn{servicio del sistema}, el cual produce el directorio que contiene todo lo necesario para ejecutar y arrancar el sistema, como es devuelto por la orden @command{guix system build}. @xref{Service Reference}, para aprender acerca de otros servicios mostrados aquí. @xref{system-extension-graph, la orden @command{guix system extension-graph}}, para información sobre cómo generar esta representación para una definición particular de sistema operativo." #. type: cindex -#: guix-git/doc/guix.texi:35826 +#: guix-git/doc/guix.texi:36316 #, no-wrap msgid "service types" msgstr "tipos de servicio" #. type: Plain text -#: guix-git/doc/guix.texi:35832 +#: guix-git/doc/guix.texi:36322 msgid "Technically, developers can define @dfn{service types} to express these relations. There can be any number of services of a given type on the system---for instance, a system running two instances of the GNU secure shell server (lsh) has two instances of @code{lsh-service-type}, with different parameters." msgstr "Técnicamente, las desarrolladoras pueden definir @dfn{tipos de servicio} para expresar estas relaciones. Puede haber cualquier número de servicios de un tipo dado en el sistema---por ejemplo, un sistema que ejecuta dos instancias del shell seguro GNU (lsh) tiene dos instancias de @var{lsh-service-type}, con parámetros diferentes." #. type: Plain text -#: guix-git/doc/guix.texi:35835 +#: guix-git/doc/guix.texi:36325 msgid "The following section describes the programming interface for service types and services." msgstr "La siguiente sección describe la interfaz programática para tipos de servicio y servicios." #. type: Plain text -#: guix-git/doc/guix.texi:35842 +#: guix-git/doc/guix.texi:36332 msgid "A @dfn{service type} is a node in the DAG described above. Let us start with a simple example, the service type for the Guix build daemon (@pxref{Invoking guix-daemon}):" msgstr "Un @dfn{tipo de servicio} es un nodo en el GAD descrito previamente. Empecemos con un ejemplo simple, el tipo de servicio para el daemon de construcción Guix (@pxref{Invoking guix-daemon}):" #. type: lisp -#: guix-git/doc/guix.texi:35852 +#: guix-git/doc/guix.texi:36342 #, no-wrap msgid "" "(define guix-service-type\n" @@ -69198,77 +70229,77 @@ msgstr "" " (default-value (guix-configuration))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:35856 +#: guix-git/doc/guix.texi:36346 msgid "It defines three things:" msgstr "Define tres cosas:" #. type: enumerate -#: guix-git/doc/guix.texi:35860 +#: guix-git/doc/guix.texi:36350 msgid "A name, whose sole purpose is to make inspection and debugging easier." msgstr "Un nombre, cuyo único propósito es facilitar la inspección y la depuración." #. type: enumerate -#: guix-git/doc/guix.texi:35865 +#: guix-git/doc/guix.texi:36355 msgid "A list of @dfn{service extensions}, where each extension designates the target service type and a procedure that, given the parameters of the service, returns a list of objects to extend the service of that type." msgstr "Una lista de @dfn{extensiones de servicio}, donde cada extensión designa el tipo de servicio a extender y un procedimiento que, dados los parámetros del servicio, devuelve una lista de objetos para extender el servicio de dicho tipo." # FUZZY #. type: enumerate -#: guix-git/doc/guix.texi:35868 +#: guix-git/doc/guix.texi:36358 msgid "Every service type has at least one service extension. The only exception is the @dfn{boot service type}, which is the ultimate service." msgstr "Cada tipo de servicio tiene al menos una extensión de servicio. La única excepción es el @dfn{tipo de servicio de arranque}, que es el último servicio." #. type: enumerate -#: guix-git/doc/guix.texi:35871 +#: guix-git/doc/guix.texi:36361 msgid "Optionally, a default value for instances of this type." msgstr "De manera opcional, un valor predeterminado para instancias de este tipo." #. type: Plain text -#: guix-git/doc/guix.texi:35874 +#: guix-git/doc/guix.texi:36364 msgid "In this example, @code{guix-service-type} extends three services:" msgstr "En este ejemplo, @code{guix-service-type} extiende tres servicios:" #. type: item -#: guix-git/doc/guix.texi:35876 +#: guix-git/doc/guix.texi:36366 #, no-wrap msgid "shepherd-root-service-type" msgstr "shepherd-root-service-type" #. type: table -#: guix-git/doc/guix.texi:35881 +#: guix-git/doc/guix.texi:36371 msgid "The @code{guix-shepherd-service} procedure defines how the Shepherd service is extended. Namely, it returns a @code{} object that defines how @command{guix-daemon} is started and stopped (@pxref{Shepherd Services})." msgstr "El procedimiento @code{guix-shepherd-service} define cómo se extiende el servicio de Shepherd. Es decir, devuelve un objeto @code{} que define cómo se arranca y para @command{guix-daemon} (@pxref{Shepherd Services})." #. type: item -#: guix-git/doc/guix.texi:35882 +#: guix-git/doc/guix.texi:36372 #, no-wrap msgid "account-service-type" msgstr "account-service-type" # FUZZY #. type: table -#: guix-git/doc/guix.texi:35887 +#: guix-git/doc/guix.texi:36377 msgid "This extension for this service is computed by @code{guix-accounts}, which returns a list of @code{user-group} and @code{user-account} objects representing the build user accounts (@pxref{Invoking guix-daemon})." msgstr "@code{guix-accounts} crea la implementación de esta extensión para este servicio, la cual devuelve una lista de objetos @code{user-group} y @code{user-account} que representan las cuentas de usuarias de construcción (@pxref{Invoking guix-daemon})." #. type: item -#: guix-git/doc/guix.texi:35888 +#: guix-git/doc/guix.texi:36378 #, no-wrap msgid "activation-service-type" msgstr "activation-service-type" #. type: table -#: guix-git/doc/guix.texi:35892 +#: guix-git/doc/guix.texi:36382 msgid "Here @code{guix-activation} is a procedure that returns a gexp, which is a code snippet to run at ``activation time''---e.g., when the service is booted." msgstr "Aquí @code{guix-activation} es un procedimiento que devuelve una expresión-G, que es un fragmento de código a ejecutar en ``tiempo de activación''---por ejemplo, cuando el servicio se arranca." #. type: Plain text -#: guix-git/doc/guix.texi:35895 +#: guix-git/doc/guix.texi:36385 msgid "A service of this type is instantiated like this:" msgstr "Un servicio de este tipo se puede instanciar de esta manera:" #. type: lisp -#: guix-git/doc/guix.texi:35901 +#: guix-git/doc/guix.texi:36391 #, no-wrap msgid "" "(service guix-service-type\n" @@ -69282,28 +70313,28 @@ msgstr "" " (extra-options '(\"--gc-keep-derivations\"))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:35909 +#: guix-git/doc/guix.texi:36399 msgid "The second argument to the @code{service} form is a value representing the parameters of this specific service instance. @xref{guix-configuration-type, @code{guix-configuration}}, for information about the @code{guix-configuration} data type. When the value is omitted, the default value specified by @code{guix-service-type} is used:" msgstr "El segundo parámetro a la forma @code{service} es un valor que representa los parámetros de esta instancia específica del servicio. @xref{guix-configuration-type, @code{guix-configuration}}, para información acerca del tipo de datos @code{guix-configuration}. Cuando se omite el valor, se usa el valor predeterminado por @code{guix-service-type}:" #. type: lisp -#: guix-git/doc/guix.texi:35912 +#: guix-git/doc/guix.texi:36402 #, no-wrap msgid "(service guix-service-type)\n" msgstr "(service guix-service-type)\n" #. type: Plain text -#: guix-git/doc/guix.texi:35916 +#: guix-git/doc/guix.texi:36406 msgid "@code{guix-service-type} is quite simple because it extends other services but is not extensible itself." msgstr "@code{guix-service-type} es bastante simple puesto que extiende otros servicios pero no es extensible a su vez." #. type: Plain text -#: guix-git/doc/guix.texi:35920 +#: guix-git/doc/guix.texi:36410 msgid "The service type for an @emph{extensible} service looks like this:" msgstr "El tipo de servicio para un servicio @emph{extensible} puede tener esta forma:" #. type: lisp -#: guix-git/doc/guix.texi:35927 +#: guix-git/doc/guix.texi:36417 #, no-wrap msgid "" "(define udev-service-type\n" @@ -69321,7 +70352,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:35935 +#: guix-git/doc/guix.texi:36425 #, no-wrap msgid "" " (compose concatenate) ;concatenate the list of rules\n" @@ -69341,101 +70372,101 @@ msgstr "" " (rules (append initial-rules rules)))))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:35941 +#: guix-git/doc/guix.texi:36431 msgid "This is the service type for the @uref{https://wiki.gentoo.org/wiki/Project:Eudev, eudev device management daemon}. Compared to the previous example, in addition to an extension of @code{shepherd-root-service-type}, we see two new fields:" msgstr "Este es el tipo de servicio para el @uref{https://wiki.gentoo.org/wiki/Project:Eudev, daemon de gestión de dispositivos eudev}. En comparación con el ejemplo previo, además de una extensión de @code{shepherd-root-service-type}, podemos ver dos nuevos campos:" #. type: item -#: guix-git/doc/guix.texi:35943 +#: guix-git/doc/guix.texi:36433 #, no-wrap msgid "compose" msgstr "compose" #. type: table -#: guix-git/doc/guix.texi:35946 +#: guix-git/doc/guix.texi:36436 msgid "This is the procedure to @dfn{compose} the list of extensions to services of this type." msgstr "Este es el procedimiento para @dfn{componer} la lista de extensiones en servicios de este tipo." # FUZZY #. type: table -#: guix-git/doc/guix.texi:35949 +#: guix-git/doc/guix.texi:36439 msgid "Services can extend the udev service by passing it lists of rules; we compose those extensions simply by concatenating them." msgstr "Los servicios pueden extender el servicio udev proporcionandole una lista de reglas; componemos estas extensiones mediante una simple concatenación." #. type: item -#: guix-git/doc/guix.texi:35950 +#: guix-git/doc/guix.texi:36440 #, no-wrap msgid "extend" msgstr "extend" # FUZZY #. type: table -#: guix-git/doc/guix.texi:35953 +#: guix-git/doc/guix.texi:36443 msgid "This procedure defines how the value of the service is @dfn{extended} with the composition of the extensions." msgstr "Este procedimiento define cómo el valor del servicio se @dfn{extiende} con la composición de la extensión." # FUZZY #. type: table -#: guix-git/doc/guix.texi:35958 +#: guix-git/doc/guix.texi:36448 msgid "Udev extensions are composed into a list of rules, but the udev service value is itself a @code{} record. So here, we extend that record by appending the list of rules it contains to the list of contributed rules." msgstr "Las extensiones de udev se componen en una lista de reglas, pero el valor del servicio udev es en sí un registro @code{}. Por tanto aquí extendemos el registro agregando la lista de reglas que contiene al final de la lista de reglas que se contribuyeron." # FUZZY #. type: table -#: guix-git/doc/guix.texi:35964 +#: guix-git/doc/guix.texi:36454 msgid "This is a string giving an overview of the service type. The string can contain Texinfo markup (@pxref{Overview,,, texinfo, GNU Texinfo}). The @command{guix system search} command searches these strings and displays them (@pxref{Invoking guix system})." msgstr "Es una cadena que proporciona una descripción del tipo de servicio. Dicha cadena puede contener lenguaje de marcado Texinfo (@pxref{Overview,,, texinfo, GNU Texinfo}). La orden @command{guix system search} busca estas cadenas y las muestra (@pxref{Invoking guix system})." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:35969 +#: guix-git/doc/guix.texi:36459 msgid "There can be only one instance of an extensible service type such as @code{udev-service-type}. If there were more, the @code{service-extension} specifications would be ambiguous." msgstr "Puede haber únicamente una instancia de un tipo de servicio extensible como @code{udev-service-type}. Si hubiese más, las especificaciones @code{service-extension} serían ambiguas." #. type: Plain text -#: guix-git/doc/guix.texi:35972 +#: guix-git/doc/guix.texi:36462 msgid "Still here? The next section provides a reference of the programming interface for services." msgstr "¿Todavía aquí? La siguiente sección proporciona una referencia de la interfaz programática de los servicios." #. type: Plain text -#: guix-git/doc/guix.texi:35980 +#: guix-git/doc/guix.texi:36470 msgid "We have seen an overview of service types (@pxref{Service Types and Services}). This section provides a reference on how to manipulate services and service types. This interface is provided by the @code{(gnu services)} module." msgstr "Ya hemos echado un vistazo a los tipos de servicio (@pxref{Service Types and Services}). Esta sección proporciona referencias sobre cómo manipular servicios y tipos de servicio. Esta interfaz se proporciona en el módulo @code{(gnu services)}." #. type: deffn -#: guix-git/doc/guix.texi:35981 +#: guix-git/doc/guix.texi:36471 #, no-wrap msgid "{Scheme Procedure} service @var{type} [@var{value}]" msgstr "{Procedimiento Scheme} service @var{tipo} [@var{valor}]" #. type: deffn -#: guix-git/doc/guix.texi:35985 +#: guix-git/doc/guix.texi:36475 msgid "Return a new service of @var{type}, a @code{} object (see below). @var{value} can be any object; it represents the parameters of this particular service instance." msgstr "Devuelve un nuevo servicio de @var{tipo}, un objeto @code{} (véase a continuación). @var{valor} puede ser cualquier objeto; representa los parámetros de esta instancia de servicio particular." #. type: deffn -#: guix-git/doc/guix.texi:35989 +#: guix-git/doc/guix.texi:36479 msgid "When @var{value} is omitted, the default value specified by @var{type} is used; if @var{type} does not specify a default value, an error is raised." msgstr "Cuando se omite @var{valor}, se usa el valor predeterminado especificado por @var{tipo}; si @var{type} no especifica ningún valor, se produce un error." #. type: deffn -#: guix-git/doc/guix.texi:35991 +#: guix-git/doc/guix.texi:36481 msgid "For instance, this:" msgstr "Por ejemplo, esto:" #. type: lisp -#: guix-git/doc/guix.texi:35994 +#: guix-git/doc/guix.texi:36484 #, no-wrap msgid "(service openssh-service-type)\n" msgstr "(service openssh-service-type)\n" #. type: deffn -#: guix-git/doc/guix.texi:35998 +#: guix-git/doc/guix.texi:36488 msgid "is equivalent to this:" msgstr "es equivalente a esto:" #. type: lisp -#: guix-git/doc/guix.texi:36002 +#: guix-git/doc/guix.texi:36492 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -69445,50 +70476,50 @@ msgstr "" " (openssh-configuration))\n" #. type: deffn -#: guix-git/doc/guix.texi:36006 +#: guix-git/doc/guix.texi:36496 msgid "In both cases the result is an instance of @code{openssh-service-type} with the default configuration." msgstr "En ambos casos el resultado es una instancia de @code{openssh-service-type} con la configuración predeterminada." #. type: deffn -#: guix-git/doc/guix.texi:36008 +#: guix-git/doc/guix.texi:36498 #, no-wrap msgid "{Scheme Procedure} service? @var{obj}" msgstr "{Procedimiento Scheme} service? @var{obj}" #. type: deffn -#: guix-git/doc/guix.texi:36010 +#: guix-git/doc/guix.texi:36500 msgid "Return true if @var{obj} is a service." msgstr "Devuelve verdadero si @var{obj} es un servicio." #. type: deffn -#: guix-git/doc/guix.texi:36012 +#: guix-git/doc/guix.texi:36502 #, no-wrap msgid "{Scheme Procedure} service-kind @var{service}" msgstr "{Procedimiento Scheme} service-kind @var{servicio}" #. type: deffn -#: guix-git/doc/guix.texi:36014 +#: guix-git/doc/guix.texi:36504 msgid "Return the type of @var{service}---i.e., a @code{} object." msgstr "Devuelve el tipo de @var{servicio}---es decir, un objeto @code{}." #. type: deffn -#: guix-git/doc/guix.texi:36016 +#: guix-git/doc/guix.texi:36506 #, no-wrap msgid "{Scheme Procedure} service-value @var{service}" msgstr "{Procedimiento Scheme} service-value @var{servicio}" #. type: deffn -#: guix-git/doc/guix.texi:36019 +#: guix-git/doc/guix.texi:36509 msgid "Return the value associated with @var{service}. It represents its parameters." msgstr "Devuelve el valor asociado con @var{servicio}. Representa sus parámetros." #. type: Plain text -#: guix-git/doc/guix.texi:36022 +#: guix-git/doc/guix.texi:36512 msgid "Here is an example of how a service is created and manipulated:" msgstr "Este es un ejemplo de creación y manipulación de un servicio:" #. type: lisp -#: guix-git/doc/guix.texi:36031 +#: guix-git/doc/guix.texi:36521 #, no-wrap msgid "" "(define s\n" @@ -69510,7 +70541,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36034 +#: guix-git/doc/guix.texi:36524 #, no-wrap msgid "" "(service? s)\n" @@ -69522,7 +70553,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36037 +#: guix-git/doc/guix.texi:36527 #, no-wrap msgid "" "(eq? (service-kind s) nginx-service-type)\n" @@ -69532,178 +70563,178 @@ msgstr "" "@result{} #t\n" #. type: Plain text -#: guix-git/doc/guix.texi:36047 +#: guix-git/doc/guix.texi:36537 msgid "The @code{modify-services} form provides a handy way to change the parameters of some of the services of a list such as @code{%base-services} (@pxref{Base Services, @code{%base-services}}). It evaluates to a list of services. Of course, you could always use standard list combinators such as @code{map} and @code{fold} to do that (@pxref{SRFI-1, List Library,, guile, GNU Guile Reference Manual}); @code{modify-services} simply provides a more concise form for this common pattern." msgstr "La forma @code{modify-services} proporciona una manera fácil de cambiar los parámetros de algunos servicios de una lista como @code{%base-services} (@pxref{Base Services, @code{%base-services}}). Evalúa a una lista de servicios. Por supuesto, siempre puede usar operaciones estándar sobre listas como @code{map} y @code{fold} para hacerlo (@pxref{SRFI-1, List Library,, guile, GNU Guile Reference Manual}); @code{modify-services} proporciona simplemente una forma más concisa para este patrón común." #. type: deffn -#: guix-git/doc/guix.texi:36048 +#: guix-git/doc/guix.texi:36538 #, no-wrap msgid "{Scheme Syntax} modify-services @var{services} @" msgstr "{Sintaxis Scheme} modify-services @var{servicios} @" #. type: deffn -#: guix-git/doc/guix.texi:36050 +#: guix-git/doc/guix.texi:36540 msgid "(@var{type} @var{variable} => @var{body}) @dots{}" msgstr "(@var{tipo} @var{variable} => @var{cuerpo}) @dots{}" #. type: deffn -#: guix-git/doc/guix.texi:36053 +#: guix-git/doc/guix.texi:36543 msgid "Modify the services listed in @var{services} according to the given clauses. Each clause has the form:" msgstr "Modifica los servicios listados en @var{servicios} de acuerdo a las cláusulas proporcionadas. Cada cláusula tiene la forma:" #. type: example -#: guix-git/doc/guix.texi:36056 +#: guix-git/doc/guix.texi:36546 #, no-wrap msgid "(@var{type} @var{variable} => @var{body})\n" msgstr "(@var{tipo} @var{variable} => @var{cuerpo})\n" #. type: deffn -#: guix-git/doc/guix.texi:36063 +#: guix-git/doc/guix.texi:36553 msgid "where @var{type} is a service type---e.g., @code{guix-service-type}---and @var{variable} is an identifier that is bound within the @var{body} to the service parameters---e.g., a @code{guix-configuration} instance---of the original service of that @var{type}." msgstr "donde @var{tipo} es un tipo de servicio---por ejemplo, @code{guix-service-type}---y @var{variable} es un identificador que se asocia dentro del @var{cuerpo} a los parámetros del servicio---por ejemplo, una instancia @code{guix-configuration}---del servicio original de dicho @var{ŧipo}." # FUZZY #. type: deffn -#: guix-git/doc/guix.texi:36070 +#: guix-git/doc/guix.texi:36560 msgid "The @var{body} should evaluate to the new service parameters, which will be used to configure the new service. This new service will replace the original in the resulting list. Because a service's service parameters are created using @code{define-record-type*}, you can write a succinct @var{body} that evaluates to the new service parameters by using the @code{inherit} feature that @code{define-record-type*} provides." msgstr "El @var{cuerpo} deve evaluar a los nuevos parámetros del servicio, que serán usados para configurar el nuevo servicio. Este nuevo servicio reemplaza el original en la lista resultante. Debido a que los parámetros de servicio de un servicio se crean mediante el uso de @code{define-record-type*}, puede escribir un breve @var{cuerpo} que evalúe a los nuevos parámetros del servicio mediante el uso de la característica @code{inherit} que proporciona @code{define-record-type*} para heredar los valores antiguos." #. type: deffn -#: guix-git/doc/guix.texi:36072 +#: guix-git/doc/guix.texi:36562 #, fuzzy #| msgid "Packages are currently available on the following platforms:" msgid "Clauses can also have the following form:" msgstr "Actualmente hay paquetes disponibles para las siguientes plataformas:" #. type: lisp -#: guix-git/doc/guix.texi:36075 +#: guix-git/doc/guix.texi:36565 #, fuzzy, no-wrap #| msgid "(service @var{type})\n" msgid "(delete @var{type})\n" msgstr "(service @var{tipo})\n" #. type: deffn -#: guix-git/doc/guix.texi:36079 +#: guix-git/doc/guix.texi:36569 msgid "Such a clause removes all services of the given @var{type} from @var{services}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36081 +#: guix-git/doc/guix.texi:36571 msgid "@xref{Using the Configuration System}, for example usage." msgstr "@xref{Using the Configuration System}, para ejemplos de uso." #. type: Plain text -#: guix-git/doc/guix.texi:36088 +#: guix-git/doc/guix.texi:36578 msgid "Next comes the programming interface for service types. This is something you want to know when writing new service definitions, but not necessarily when simply looking for ways to customize your @code{operating-system} declaration." msgstr "A continuación se procede con la interfaz programática de los tipos de servicios. Es algo que debe conocer para escribir definiciones de nuevos servicios, pero no es cuando busque formas de personalizar su declaración @code{operating-system}." #. type: deftp -#: guix-git/doc/guix.texi:36089 +#: guix-git/doc/guix.texi:36579 #, no-wrap msgid "{Data Type} service-type" msgstr "{Tipo de datos} service-type" #. type: cindex -#: guix-git/doc/guix.texi:36090 +#: guix-git/doc/guix.texi:36580 #, no-wrap msgid "service type" msgstr "tipo de servicio" #. type: deftp -#: guix-git/doc/guix.texi:36093 +#: guix-git/doc/guix.texi:36583 msgid "This is the representation of a @dfn{service type} (@pxref{Service Types and Services})." msgstr "Esta es la representación de un @dfn{tipo de servicio} (@pxref{Service Types and Services})." #. type: table -#: guix-git/doc/guix.texi:36097 +#: guix-git/doc/guix.texi:36587 msgid "This is a symbol, used only to simplify inspection and debugging." msgstr "Es un símbolo, usado únicamente para simplificar la inspección y la depuración." #. type: code{#1} -#: guix-git/doc/guix.texi:36098 +#: guix-git/doc/guix.texi:36588 #, no-wrap msgid "extensions" msgstr "extensions" #. type: table -#: guix-git/doc/guix.texi:36100 +#: guix-git/doc/guix.texi:36590 msgid "A non-empty list of @code{} objects (see below)." msgstr "Una lista no vacía de objetos @code{} (véase a continuación)." #. type: item -#: guix-git/doc/guix.texi:36101 +#: guix-git/doc/guix.texi:36591 #, no-wrap msgid "@code{compose} (default: @code{#f})" msgstr "@code{compose} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:36105 +#: guix-git/doc/guix.texi:36595 msgid "If this is @code{#f}, then the service type denotes services that cannot be extended---i.e., services that do not receive ``values'' from other services." msgstr "Si es @code{#f}, entonces el tipo de servicio denota servicios que no pueden extenderse---es decir, servicios que no pueden recibir ``valores'' de otros servicios." #. type: table -#: guix-git/doc/guix.texi:36109 +#: guix-git/doc/guix.texi:36599 msgid "Otherwise, it must be a one-argument procedure. The procedure is called by @code{fold-services} and is passed a list of values collected from extensions. It may return any single value." msgstr "En otro caso, debe ser un procedimiento de un único parámetro. El procedimiento es invocado en @code{fold-services} y se le proporciona una lista de valores recibidos de las extensiones. Puede devolver un valor único." #. type: item -#: guix-git/doc/guix.texi:36110 +#: guix-git/doc/guix.texi:36600 #, no-wrap msgid "@code{extend} (default: @code{#f})" msgstr "@code{extend} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:36112 +#: guix-git/doc/guix.texi:36602 msgid "If this is @code{#f}, services of this type cannot be extended." msgstr "Si es @code{#f}, los servicios de este tipo no pueden extenderse." # FUZZY #. type: table -#: guix-git/doc/guix.texi:36118 +#: guix-git/doc/guix.texi:36608 msgid "Otherwise, it must be a two-argument procedure: @code{fold-services} calls it, passing it the initial value of the service as the first argument and the result of applying @code{compose} to the extension values as the second argument. It must return a value that is a valid parameter value for the service instance." msgstr "En otro caso, debe ser un procedimiento que acepte dos parámetros: @code{fold-services} lo invoca, proporcionandole el valor inicial del servicio como el primer parámetro y el resultado de aplicar @code{compose} a los valores de las extensiones como segundo parámetro. Debe devolver un valor que es un parámetro válido para la instancia del servicio." #. type: table -#: guix-git/doc/guix.texi:36124 +#: guix-git/doc/guix.texi:36614 msgid "This is a string, possibly using Texinfo markup, describing in a couple of sentences what the service is about. This string allows users to find about the service through @command{guix system search} (@pxref{Invoking guix system})." msgstr "Una cadena, que posiblemente usa el lenguaje de marcas Texinfo, que describe en un par de frases el servicio. Esta cadena permite la búsqueda del servicio a través de @command{guix system search} (@pxref{Invoking guix system})." #. type: item -#: guix-git/doc/guix.texi:36125 +#: guix-git/doc/guix.texi:36615 #, no-wrap msgid "@code{default-value} (default: @code{&no-default-value})" msgstr "@code{default-value} (predeterminado: @code{&no-default-value})" #. type: table -#: guix-git/doc/guix.texi:36128 +#: guix-git/doc/guix.texi:36618 msgid "The default value associated for instances of this service type. This allows users to use the @code{service} form without its second argument:" msgstr "El valor predeterminado asociado a instancias de este tipo de servicio. Esto permite a las usuarias usar @code{service} sin su segundo parámetro:" #. type: lisp -#: guix-git/doc/guix.texi:36131 +#: guix-git/doc/guix.texi:36621 #, no-wrap msgid "(service @var{type})\n" msgstr "(service @var{tipo})\n" #. type: table -#: guix-git/doc/guix.texi:36135 +#: guix-git/doc/guix.texi:36625 msgid "The returned service in this case has the default value specified by @var{type}." msgstr "El servicio devuelto en este caso tiene el valor predeterminado especificado por @var{tipo}." #. type: deftp -#: guix-git/doc/guix.texi:36138 +#: guix-git/doc/guix.texi:36628 msgid "@xref{Service Types and Services}, for examples." msgstr "@xref{Service Types and Services}, para ejemplos." #. type: deffn -#: guix-git/doc/guix.texi:36140 +#: guix-git/doc/guix.texi:36630 #, no-wrap msgid "{Scheme Procedure} service-extension @var{target-type} @" msgstr "{Procedimiento Scheme} service-extension @var{tipo-deseado} @" #. type: deffn -#: guix-git/doc/guix.texi:36146 +#: guix-git/doc/guix.texi:36636 msgid "@var{compute} Return a new extension for services of type @var{target-type}. @var{compute} must be a one-argument procedure: @code{fold-services} calls it, passing it the value associated with the service that provides the extension; it must return a valid value for the target service." msgstr "" "@var{calcula}\n" @@ -69711,41 +70742,41 @@ msgstr "" "Devuelve una nueva extensión para servicios del tipo @var{tipo-deseado}. @var{calcula} debe ser un procedimiento de un único parámetro: es llamado en @code{fold-services}, proporcionandole el valor asociado con el servicio que proporciona la extensión; debe devolver un valor válido para el servicio deseado." #. type: deffn -#: guix-git/doc/guix.texi:36148 +#: guix-git/doc/guix.texi:36638 #, no-wrap msgid "{Scheme Procedure} service-extension? @var{obj}" msgstr "{Procedimiento Scheme} service-extension? @var{obj}" #. type: deffn -#: guix-git/doc/guix.texi:36150 +#: guix-git/doc/guix.texi:36640 msgid "Return true if @var{obj} is a service extension." msgstr "Devuelve verdadero si @var{obj} es una expresión-G." # FUZZY # MAAV (TODO): Repensar #. type: Plain text -#: guix-git/doc/guix.texi:36156 +#: guix-git/doc/guix.texi:36646 msgid "Occasionally, you might want to simply extend an existing service. This involves creating a new service type and specifying the extension of interest, which can be verbose; the @code{simple-service} procedure provides a shorthand for this." msgstr "De manera ocasional, puede desear simplemente extender un servicio existente. Esto implica la creación de un nuevo tipo de servicio y la especificación de la extensión deseada, lo cual puede ser engorroso; el procedimiento @code{simple-service} proporciona un atajo para ello." #. type: deffn -#: guix-git/doc/guix.texi:36157 +#: guix-git/doc/guix.texi:36647 #, no-wrap msgid "{Scheme Procedure} simple-service @var{name} @var{target} @var{value}" msgstr "{Procedimiento Scheme} simple-service @var{nombre} @var{deseado} @var{valor}" #. type: deffn -#: guix-git/doc/guix.texi:36161 +#: guix-git/doc/guix.texi:36651 msgid "Return a service that extends @var{target} with @var{value}. This works by creating a singleton service type @var{name}, of which the returned service is an instance." msgstr "Devuelve un servicio que extiende @var{deseado} con @var{valor}. Esto funciona creando una instancia única del tipo de servicio @var{nombre}, de la cual el servicio devuelto es una instancia." #. type: deffn -#: guix-git/doc/guix.texi:36164 +#: guix-git/doc/guix.texi:36654 msgid "For example, this extends mcron (@pxref{Scheduled Job Execution}) with an additional job:" msgstr "Por ejemplo, esto extiende mcron (@pxref{Scheduled Job Execution}) con una tarea adicional:" #. type: lisp -#: guix-git/doc/guix.texi:36168 +#: guix-git/doc/guix.texi:36658 #, no-wrap msgid "" "(simple-service 'my-mcron-job mcron-service-type\n" @@ -69755,12 +70786,12 @@ msgstr "" " #~(job '(next-hour (3)) \"guix gc -F 2G\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:36178 +#: guix-git/doc/guix.texi:36668 msgid "At the core of the service abstraction lies the @code{fold-services} procedure, which is responsible for ``compiling'' a list of services down to a single directory that contains everything needed to boot and run the system---the directory shown by the @command{guix system build} command (@pxref{Invoking guix system}). In essence, it propagates service extensions down the service graph, updating each node parameters on the way, until it reaches the root node." msgstr "En el núcleo de la abstracción de los servicios se encuentra el procedimiento @code{fold-services}, que es responsable de la ``compilación'' de una lista de servicios en un único directorio que contiene todo lo necesario para arrancar y ejecutar el sistema---el directorio mostrado por la orden @command{guix system build} (@pxref{Invoking guix system}). En esencia, propaga las extensiones de servicios a través del grafo de servicios, actualizando los parámetros de cada nodo en el camino, hasta que alcanza el nodo raíz." #. type: deffn -#: guix-git/doc/guix.texi:36179 +#: guix-git/doc/guix.texi:36669 #, no-wrap msgid "{Scheme Procedure} fold-services @var{services} @" msgstr "{Procedimiento Scheme} fold-services @var{servicios} @" @@ -69768,178 +70799,178 @@ msgstr "{Procedimiento Scheme} fold-services @var{servicios} @" # FUZZY # MAAV (TODO): Repensar #. type: deffn -#: guix-git/doc/guix.texi:36183 +#: guix-git/doc/guix.texi:36673 msgid "[#:target-type @var{system-service-type}] Fold @var{services} by propagating their extensions down to the root of type @var{target-type}; return the root service adjusted accordingly." msgstr "" "[#:target-type @var{system-service-type}]\n" "Recorre @var{servicios} propagando sus extensiones hasta la raíz del tipo @var{target-type}; devuelve el servicio raíz tratado de la manera apropiada." #. type: Plain text -#: guix-git/doc/guix.texi:36187 +#: guix-git/doc/guix.texi:36677 msgid "Lastly, the @code{(gnu services)} module also defines several essential service types, some of which are listed below." msgstr "Por último, el módulo @code{(gnu services)} también define varios tipos esenciales de servicios, algunos de los cuales se enumeran a continuación." #. type: defvr -#: guix-git/doc/guix.texi:36188 +#: guix-git/doc/guix.texi:36678 #, no-wrap msgid "{Scheme Variable} system-service-type" msgstr "{Variable Scheme} system-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36191 +#: guix-git/doc/guix.texi:36681 msgid "This is the root of the service graph. It produces the system directory as returned by the @command{guix system build} command." msgstr "Esta es la raíz del grafo de servicios. Produce el directorio del sistema como lo devuelve la orden @code{guix system build}." #. type: defvr -#: guix-git/doc/guix.texi:36193 +#: guix-git/doc/guix.texi:36683 #, no-wrap msgid "{Scheme Variable} boot-service-type" msgstr "{Variable Scheme} boot-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36196 +#: guix-git/doc/guix.texi:36686 msgid "The type of the ``boot service'', which produces the @dfn{boot script}. The boot script is what the initial RAM disk runs when booting." msgstr "El tipo del ``servicio de arranque'', que produce un @dfn{guión de arranque}. El guión de arranque es lo que ejecuta el disco inicial en RAM cuando se arranca." #. type: defvr -#: guix-git/doc/guix.texi:36198 +#: guix-git/doc/guix.texi:36688 #, no-wrap msgid "{Scheme Variable} etc-service-type" msgstr "{Variable Scheme} etc-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36202 +#: guix-git/doc/guix.texi:36692 msgid "The type of the @file{/etc} service. This service is used to create files under @file{/etc} and can be extended by passing it name/file tuples such as:" msgstr "El tipo del servicio @file{/etc}. Este servicio se usa para crear los archivos en @file{/etc} y puede extenderse proporcionandole pares nombre/archivo como estas:" #. type: lisp -#: guix-git/doc/guix.texi:36205 +#: guix-git/doc/guix.texi:36695 #, no-wrap msgid "(list `(\"issue\" ,(plain-file \"issue\" \"Welcome!\\n\")))\n" msgstr "(list `(\"issue\" ,(plain-file \"issue\" \"¡Bienvenida!\\n\")))\n" #. type: defvr -#: guix-git/doc/guix.texi:36209 +#: guix-git/doc/guix.texi:36699 msgid "In this example, the effect would be to add an @file{/etc/issue} file pointing to the given file." msgstr "En este ejemplo, el efecto sería la adición de un archivo @file{/etc/issue} que apunte al archivo proporcionado." #. type: defvr -#: guix-git/doc/guix.texi:36211 +#: guix-git/doc/guix.texi:36701 #, no-wrap msgid "{Scheme Variable} setuid-program-service-type" msgstr "{Variable Scheme} setuid-program-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36215 +#: guix-git/doc/guix.texi:36705 msgid "Type for the ``setuid-program service''. This service collects lists of executable file names, passed as gexps, and adds them to the set of setuid-root programs on the system (@pxref{Setuid Programs})." msgstr "Tipo para el ``servicio de programas setuid''. Este servicio recopila listas de nombres de archivos ejecutables, proporcionados como expresiones-G, y los añade al conjunto de programas con setuid de root en el sistema (@pxref{Setuid Programs})." #. type: defvr -#: guix-git/doc/guix.texi:36217 +#: guix-git/doc/guix.texi:36707 #, no-wrap msgid "{Scheme Variable} profile-service-type" msgstr "{Variable Scheme} profile-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36221 +#: guix-git/doc/guix.texi:36711 msgid "Type of the service that populates the @dfn{system profile}---i.e., the programs under @file{/run/current-system/profile}. Other services can extend it by passing it lists of packages to add to the system profile." msgstr "Tipo del servicio que genera el @dfn{perfil del sistema}---es decir, los programas en @file{/run/current-system/profile}. Otros servicios pueden extenderlo proporcionandole listas de paquetes a añadir al perfil del sistema." #. type: anchor{#1} -#: guix-git/doc/guix.texi:36225 +#: guix-git/doc/guix.texi:36715 msgid "provenance-service-type" msgstr "provenance-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36225 +#: guix-git/doc/guix.texi:36715 #, no-wrap msgid "{Scheme Variable} provenance-service-type" msgstr "{Variable Scheme} provenance-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36229 +#: guix-git/doc/guix.texi:36719 msgid "This is the type of the service that records @dfn{provenance meta-data} in the system itself. It creates several files under @file{/run/current-system}:" msgstr "Es el tipo del servicio que registra los @dfn{metadatos de procedencia} en el sistema mismo. Crea varios archivos en @file{/run/current-system}:" #. type: item -#: guix-git/doc/guix.texi:36231 +#: guix-git/doc/guix.texi:36721 #, no-wrap msgid "channels.scm" msgstr "channels.scm" #. type: table -#: guix-git/doc/guix.texi:36236 +#: guix-git/doc/guix.texi:36726 msgid "This is a ``channel file'' that can be passed to @command{guix pull -C} or @command{guix time-machine -C}, and which describes the channels used to build the system, if that information was available (@pxref{Channels})." msgstr "Es un ``archivo de canales'' que se le puede proporcionar a @command{guix pull -C} o @command{guix time-machine -C}, y que describe los canales usados para construir el sistema, si dicha información estaba disponible (@pxref{Channels})." #. type: item -#: guix-git/doc/guix.texi:36237 +#: guix-git/doc/guix.texi:36727 #, no-wrap msgid "configuration.scm" msgstr "configuration.scm" #. type: table -#: guix-git/doc/guix.texi:36242 +#: guix-git/doc/guix.texi:36732 msgid "This is the file that was passed as the value for this @code{provenance-service-type} service. By default, @command{guix system reconfigure} automatically passes the OS configuration file it received on the command line." msgstr "Est es el archivo que se proporciona como valor para el servicio @code{provenance-service-type}. De manera predeterminada, @command{guix system reconfigure} proporciona automáticamente el archivo de configuración del SO que recibió en la línea de órdenes." #. type: item -#: guix-git/doc/guix.texi:36243 +#: guix-git/doc/guix.texi:36733 #, no-wrap msgid "provenance" msgstr "provenance" #. type: table -#: guix-git/doc/guix.texi:36246 +#: guix-git/doc/guix.texi:36736 msgid "This contains the same information as the two other files but in a format that is more readily processable." msgstr "Contiene la misma información que los otros dos archivos, pero en un formato que se puede procesar más fácilmente." #. type: defvr -#: guix-git/doc/guix.texi:36250 +#: guix-git/doc/guix.texi:36740 msgid "In general, these two pieces of information (channels and configuration file) are enough to reproduce the operating system ``from source''." msgstr "En general, estas dos piezas de información (canales y el archivo de configuración) son suficientes para reproducir el sistema operativo ``desde las fuentes''." #. type: quotation -#: guix-git/doc/guix.texi:36251 +#: guix-git/doc/guix.texi:36741 #, no-wrap msgid "Caveats" msgstr "Advertencias" # FUZZY #. type: quotation -#: guix-git/doc/guix.texi:36258 +#: guix-git/doc/guix.texi:36748 msgid "This information is necessary to rebuild your operating system, but it is not always sufficient. In particular, @file{configuration.scm} itself is insufficient if it is not self-contained---if it refers to external Guile modules or to extra files. If you want @file{configuration.scm} to be self-contained, we recommend that modules or files it refers to be part of a channel." msgstr "Esta información es necesaria para reconstruir su sistema operativo, pero no siempre es suficiente. En particular, @file{configuration.scm} en sí es insuficiente si no está autocontenido---si hace referencia a módulos externos de Guile o a archivos adicionales. Si desea que @file{configuration.scm} sea autocontenido, le recomendamos que los módulos o archivos a los que haga referencia sean parte de un canal." #. type: quotation -#: guix-git/doc/guix.texi:36266 +#: guix-git/doc/guix.texi:36756 msgid "Besides, provenance meta-data is ``silent'' in the sense that it does not change the bits contained in your system, @emph{except for the meta-data bits themselves}. Two different OS configurations or sets of channels can lead to the same system, bit-for-bit; when @code{provenance-service-type} is used, these two systems will have different meta-data and thus different store file names, which makes comparison less trivial." msgstr "Además, la proveniencia de los metadatos es ``silenciosa'' en el sentido de que no cambia los bits que contiene su sistema, @emph{excepto por los bits de los metadatos en sí}. Dos configuraciones de SO diferentes o conjuntos de canales pueden llevar al mismo sistema, bit a bit; cuando se usa @code{provenance-service-type}, estos dos sistemas tendrán distintos metadatos y por lo tanto distintos nombres de archivo en el almacén, lo que hace no tan trivial dicha comparación." #. type: defvr -#: guix-git/doc/guix.texi:36271 +#: guix-git/doc/guix.texi:36761 msgid "This service is automatically added to your operating system configuration when you use @command{guix system reconfigure}, @command{guix system init}, or @command{guix deploy}." msgstr "Este servicio se añade automáticamente a la configuración de su sistema operativo cuando usa @command{guix system reconfigure}, @command{guix system init} o @command{guix deploy}." #. type: defvr -#: guix-git/doc/guix.texi:36273 +#: guix-git/doc/guix.texi:36763 #, fuzzy, no-wrap #| msgid "{Scheme Variable} bitlbee-service-type" msgid "{Scheme Variable} linux-loadable-module-service-type" msgstr "{Variable Scheme} bitlbee-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36277 +#: guix-git/doc/guix.texi:36767 msgid "Type of the service that collects lists of packages containing kernel-loadable modules, and adds them to the set of kernel-loadable modules." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36280 +#: guix-git/doc/guix.texi:36770 msgid "This service type is intended to be extended by other service types, such as below:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36286 +#: guix-git/doc/guix.texi:36776 #, no-wrap msgid "" "(simple-service 'installing-module\n" @@ -69949,193 +70980,193 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36290 +#: guix-git/doc/guix.texi:36780 msgid "This does not actually load modules at bootup, only adds it to the kernel profile so that it @emph{can} be loaded by other means." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36295 guix-git/doc/guix.texi:37447 +#: guix-git/doc/guix.texi:36785 #, no-wrap msgid "shepherd services" msgstr "servicios de shepherd" #. type: cindex -#: guix-git/doc/guix.texi:36296 +#: guix-git/doc/guix.texi:36786 #, no-wrap msgid "PID 1" msgstr "PID 1" #. type: cindex -#: guix-git/doc/guix.texi:36297 +#: guix-git/doc/guix.texi:36787 #, no-wrap msgid "init system" msgstr "sistema de inicio" #. type: Plain text -#: guix-git/doc/guix.texi:36303 +#: guix-git/doc/guix.texi:36793 msgid "The @code{(gnu services shepherd)} module provides a way to define services managed by the GNU@tie{}Shepherd, which is the initialization system---the first process that is started when the system boots, also known as PID@tie{}1 (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual})." msgstr "El módulo @code{(gnu services shepherd)} proporciona una forma de definir servicios gestionados por GNU@tie{}Shepherd, que es el sistema de inicio---el primer proceso que se inicia cuando el sistema arranca, también conocido como PID@tie{}1 (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual})." #. type: Plain text -#: guix-git/doc/guix.texi:36309 +#: guix-git/doc/guix.texi:36799 msgid "Services in the Shepherd can depend on each other. For instance, the SSH daemon may need to be started after the syslog daemon has been started, which in turn can only happen once all the file systems have been mounted. The simple operating system defined earlier (@pxref{Using the Configuration System}) results in a service graph like this:" msgstr "Los servicios en Shepherd pueden depender de otros servicios. Por ejemplo, el daemon SSH puede tener que arrancarse tras el arranque del daemon syslog, lo cual a su vez puede suceder únicamente tras el montaje de todos los sistemas de archivos. El sistema operativo simple definido previamente (@pxref{Using the Configuration System}) genera un grafo de servicios como este:" #. type: Plain text -#: guix-git/doc/guix.texi:36311 +#: guix-git/doc/guix.texi:36801 msgid "@image{images/shepherd-graph,,5in,Typical shepherd service graph.}" msgstr "@image{images/shepherd-graph,,5in,Grafo típico de servicios de shepherd.}" #. type: Plain text -#: guix-git/doc/guix.texi:36315 +#: guix-git/doc/guix.texi:36805 msgid "You can actually generate such a graph for any operating system definition using the @command{guix system shepherd-graph} command (@pxref{system-shepherd-graph, @command{guix system shepherd-graph}})." msgstr "En realidad puede generar dicho grafo para cualquier definición de sistema operativo mediante el uso de la orden @command{guix system shepherd-graph} (@pxref{system-shepherd-graph, @command{guix system shepherd-graph}})." #. type: Plain text -#: guix-git/doc/guix.texi:36319 +#: guix-git/doc/guix.texi:36809 msgid "The @code{%shepherd-root-service} is a service object representing PID@tie{}1, of type @code{shepherd-root-service-type}; it can be extended by passing it lists of @code{} objects." msgstr "@code{%shepherd-root-service} es un objeto de servicio que representa el PID@tie{}1, del tipo @code{shepherd-root-service-type}; puede ser extendido proporcionandole listas de objetos @code{}." #. type: deftp -#: guix-git/doc/guix.texi:36320 +#: guix-git/doc/guix.texi:36810 #, no-wrap msgid "{Data Type} shepherd-service" msgstr "{Tipo de datos} shepherd-service" #. type: deftp -#: guix-git/doc/guix.texi:36322 +#: guix-git/doc/guix.texi:36812 msgid "The data type representing a service managed by the Shepherd." msgstr "El tipo de datos que representa un servicio gestionado por Shepherd." #. type: code{#1} -#: guix-git/doc/guix.texi:36324 +#: guix-git/doc/guix.texi:36814 #, no-wrap msgid "provision" msgstr "provision" #. type: table -#: guix-git/doc/guix.texi:36326 +#: guix-git/doc/guix.texi:36816 msgid "This is a list of symbols denoting what the service provides." msgstr "Una lista de símbolos que indican lo que proporciona el servicio." #. type: table -#: guix-git/doc/guix.texi:36331 +#: guix-git/doc/guix.texi:36821 msgid "These are the names that may be passed to @command{herd start}, @command{herd status}, and similar commands (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual}). @xref{Slots of services, the @code{provides} slot,, shepherd, The GNU Shepherd Manual}, for details." msgstr "Esto son nombres que pueden proporcionarse a @command{herd start}, @command{herd status} y órdenes similares (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual}). @xref{Slots of services, the @code{provides} slot,, shepherd, The GNU Shepherd Manual}, para más detalles." #. type: item -#: guix-git/doc/guix.texi:36332 +#: guix-git/doc/guix.texi:36822 #, no-wrap msgid "@code{requirement} (default: @code{'()})" msgstr "@code{requirement} (predeterminada: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:36334 +#: guix-git/doc/guix.texi:36824 msgid "List of symbols denoting the Shepherd services this one depends on." msgstr "Lista de símbolos que indican los servicios Shepherd de los que este depende." #. type: cindex -#: guix-git/doc/guix.texi:36335 +#: guix-git/doc/guix.texi:36825 #, no-wrap msgid "one-shot services, for the Shepherd" msgstr "servicios one-shot, para Shepherd" #. type: table -#: guix-git/doc/guix.texi:36340 +#: guix-git/doc/guix.texi:36830 msgid "Whether this service is @dfn{one-shot}. One-shot services stop immediately after their @code{start} action has completed. @xref{Slots of services,,, shepherd, The GNU Shepherd Manual}, for more info." msgstr "Si este servicio es @dfn{one-shot}. Los servicios ``one-shot'' finalizan inmediatamente después de que su acción @code{start} se complete. @xref{Slots of services,,, shepherd, The GNU Shepherd Manual}, para más información." #. type: item -#: guix-git/doc/guix.texi:36341 +#: guix-git/doc/guix.texi:36831 #, no-wrap msgid "@code{respawn?} (default: @code{#t})" msgstr "@code{respawn?} (predeterminado: @code{#t})" # FUZZY #. type: table -#: guix-git/doc/guix.texi:36344 +#: guix-git/doc/guix.texi:36834 msgid "Whether to restart the service when it stops, for instance when the underlying process dies." msgstr "Indica si se debe reiniciar el servicio cuando se para, por ejemplo cuando el proceso subyacente muere." #. type: code{#1} -#: guix-git/doc/guix.texi:36345 +#: guix-git/doc/guix.texi:36835 #, no-wrap msgid "start" msgstr "start" #. type: itemx -#: guix-git/doc/guix.texi:36346 +#: guix-git/doc/guix.texi:36836 #, no-wrap msgid "@code{stop} (default: @code{#~(const #f)})" msgstr "@code{stop} (predeterminado: @code{#~(const #f)})" #. type: table -#: guix-git/doc/guix.texi:36352 +#: guix-git/doc/guix.texi:36842 msgid "The @code{start} and @code{stop} fields refer to the Shepherd's facilities to start and stop processes (@pxref{Service De- and Constructors,,, shepherd, The GNU Shepherd Manual}). They are given as G-expressions that get expanded in the Shepherd configuration file (@pxref{G-Expressions})." msgstr "Los campos @code{start} y @code{stop} hacen referencia a las características de Shepherd de arranque y parada de procesos respectivamente (@pxref{Service De- and Constructors,,, shepherd, The GNU Shepherd Manual}). Se proporcionan como expresiones-G que se expandirán en el archivo de configuración de Shepherd (@pxref{G-Expressions})." #. type: item -#: guix-git/doc/guix.texi:36353 +#: guix-git/doc/guix.texi:36843 #, no-wrap msgid "@code{actions} (default: @code{'()})" msgstr "@code{actions} (predeterminadas: @code{'()})" #. type: cindex -#: guix-git/doc/guix.texi:36354 +#: guix-git/doc/guix.texi:36844 #, no-wrap msgid "actions, of Shepherd services" msgstr "acciones, de servicios de Shepherd" #. type: table -#: guix-git/doc/guix.texi:36359 +#: guix-git/doc/guix.texi:36849 msgid "This is a list of @code{shepherd-action} objects (see below) defining @dfn{actions} supported by the service, in addition to the standard @code{start} and @code{stop} actions. Actions listed here become available as @command{herd} sub-commands:" msgstr "Esta es la lista de objetos @code{shepherd-action} (véase a continuación) que definen las @dfn{acciones} permitidas por el servicio, además de las acciones estándar @code{start} y @code{stop}. Las acciones que se listan aquí estarán disponibles como ordenes de @command{herd}:" #. type: example -#: guix-git/doc/guix.texi:36362 +#: guix-git/doc/guix.texi:36852 #, no-wrap msgid "herd @var{action} @var{service} [@var{arguments}@dots{}]\n" msgstr "herd @var{acción} @var{servicio} [@var{parámetros}@dots{}]\n" #. type: item -#: guix-git/doc/guix.texi:36364 +#: guix-git/doc/guix.texi:36854 #, no-wrap msgid "@code{auto-start?} (default: @code{#t})" msgstr "@code{auto-start?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:36367 +#: guix-git/doc/guix.texi:36857 msgid "Whether this service should be started automatically by the Shepherd. If it is @code{#f} the service has to be started manually with @code{herd start}." msgstr "Determina si Shepherd debe iniciar este servicio de manera automática. Si es @code{#f} el servicio debe iniciarse manualmente con @code{herd start}." #. type: table -#: guix-git/doc/guix.texi:36370 +#: guix-git/doc/guix.texi:36860 msgid "A documentation string, as shown when running:" msgstr "Una cadena de documentación, que se mostrará al ejecutar:" #. type: example -#: guix-git/doc/guix.texi:36373 +#: guix-git/doc/guix.texi:36863 #, no-wrap msgid "herd doc @var{service-name}\n" msgstr "herd doc @var{nombre-del-servicio}\n" #. type: table -#: guix-git/doc/guix.texi:36377 +#: guix-git/doc/guix.texi:36867 msgid "where @var{service-name} is one of the symbols in @code{provision} (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual})." msgstr "donde @var{nombre-del-servicio} es uno de los símbolos en @code{provision} (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual})." #. type: table -#: guix-git/doc/guix.texi:36381 +#: guix-git/doc/guix.texi:36871 msgid "This is the list of modules that must be in scope when @code{start} and @code{stop} are evaluated." msgstr "Esta es la lista de módulos que deben estar dentro del ámbito cuando @code{start} y @code{stop} son evaluados." #. type: Plain text -#: guix-git/doc/guix.texi:36389 +#: guix-git/doc/guix.texi:36879 msgid "The example below defines a Shepherd service that spawns @command{syslogd}, the system logger from the GNU Networking Utilities (@pxref{syslogd invocation, @command{syslogd},, inetutils, GNU Inetutils}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36401 +#: guix-git/doc/guix.texi:36891 #, no-wrap msgid "" "(let ((config (plain-file \"syslogd.conf\" \"@dots{}\")))\n" @@ -70151,56 +71182,56 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36416 +#: guix-git/doc/guix.texi:36906 msgid "Key elements in this example are the @code{start} and @code{stop} fields: they are @dfn{staged} code snippets that use the @code{make-forkexec-constructor} procedure provided by the Shepherd and its dual, @code{make-kill-destructor} (@pxref{Service De- and Constructors,,, shepherd, The GNU Shepherd Manual}). The @code{start} field will have @command{shepherd} spawn @command{syslogd} with the given option; note that we pass @code{config} after @option{--rcfile}, which is a configuration file declared above (contents of this file are omitted). Likewise, the @code{stop} field tells how this service is to be stopped; in this case, it is stopped by making the @code{kill} system call on its PID@. Code staging is achieved using G-expressions: @code{#~} stages code, while @code{#$} ``escapes'' back to host code (@pxref{G-Expressions})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36417 +#: guix-git/doc/guix.texi:36907 #, no-wrap msgid "{Data Type} shepherd-action" msgstr "{Tipo de datos} shepherd-action" # FUZZY #. type: deftp -#: guix-git/doc/guix.texi:36420 +#: guix-git/doc/guix.texi:36910 msgid "This is the data type that defines additional actions implemented by a Shepherd service (see above)." msgstr "Este es el tipo de datos que define acciones adicionales implementadas por un servicio Shepherd (vea previamente)." #. type: table -#: guix-git/doc/guix.texi:36424 +#: guix-git/doc/guix.texi:36914 msgid "Symbol naming the action." msgstr "Símbolo que nombra la acción." #. type: table -#: guix-git/doc/guix.texi:36427 +#: guix-git/doc/guix.texi:36917 msgid "This is a documentation string for the action. It can be viewed by running:" msgstr "Esta es una cadena de documentación para la acción. Puede verse ejecutando:" #. type: example -#: guix-git/doc/guix.texi:36430 +#: guix-git/doc/guix.texi:36920 #, no-wrap msgid "herd doc @var{service} action @var{action}\n" msgstr "herd doc @var{servicio} action @var{acción}\n" #. type: item -#: guix-git/doc/guix.texi:36432 +#: guix-git/doc/guix.texi:36922 #, no-wrap msgid "procedure" msgstr "procedure" #. type: table -#: guix-git/doc/guix.texi:36436 +#: guix-git/doc/guix.texi:36926 msgid "This should be a gexp that evaluates to a procedure of at least one argument, which is the ``running value'' of the service (@pxref{Slots of services,,, shepherd, The GNU Shepherd Manual})." msgstr "Debe ser una expresión-G que evalúa a un procedimiento de al menos un parámetro, el cual es el ``valor de ejecución'' del servicio (@pxref{Slots of services,,, shepherd, The GNU Shepherd Manual})." #. type: deftp -#: guix-git/doc/guix.texi:36440 +#: guix-git/doc/guix.texi:36930 msgid "The following example defines an action called @code{say-hello} that kindly greets the user:" msgstr "El siguiente ejemplo define una acción llamada @code{di-hola} que saluda amablemente a la usuaria:" #. type: lisp -#: guix-git/doc/guix.texi:36449 +#: guix-git/doc/guix.texi:36939 #, no-wrap msgid "" "(shepherd-action\n" @@ -70220,12 +71251,12 @@ msgstr "" " #t)))\n" #. type: deftp -#: guix-git/doc/guix.texi:36452 +#: guix-git/doc/guix.texi:36942 msgid "Assuming this action is added to the @code{example} service, then you can do:" msgstr "Asumiendo que esta acción se añade al servicio @code{ejemplo}, puede ejecutar:" #. type: example -#: guix-git/doc/guix.texi:36458 +#: guix-git/doc/guix.texi:36948 #, no-wrap msgid "" "# herd say-hello example\n" @@ -70239,70 +71270,70 @@ msgstr "" "¡Hola, compa! parámetros: (\"a\" \"b\" \"c\")\n" #. type: deftp -#: guix-git/doc/guix.texi:36463 +#: guix-git/doc/guix.texi:36953 msgid "This, as you can see, is a fairly sophisticated way to say hello. @xref{Service Convenience,,, shepherd, The GNU Shepherd Manual}, for more info on actions." msgstr "Esta, como puede ver, es una forma un tanto sofisticada de decir hola. @xref{Service Convenience,,, shepherd, The GNU Shepherd Manual}, para más información sobre acciones." #. type: defvr -#: guix-git/doc/guix.texi:36465 +#: guix-git/doc/guix.texi:36955 #, no-wrap msgid "{Scheme Variable} shepherd-root-service-type" msgstr "{Variable Scheme} shepherd-root-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36467 +#: guix-git/doc/guix.texi:36957 msgid "The service type for the Shepherd ``root service''---i.e., PID@tie{}1." msgstr "El tipo de servicio para el ``servicio raíz'' de Shepherd---es decir, PID@tie{}1." #. type: defvr -#: guix-git/doc/guix.texi:36472 +#: guix-git/doc/guix.texi:36962 #, fuzzy msgid "This is the service type that extensions target when they want to create shepherd services (@pxref{Service Types and Services}, for an example). Each extension must pass a list of @code{}. Its value must be a @code{shepherd-configuration}, as described below." msgstr "El tipo de servicio que las extensiones declaran cuando desean crear servicios shepherd (@pxref{Service Types and Services}, para un ejemplo). Cada extensión debe pasar una lista de @code{}." #. type: deftp -#: guix-git/doc/guix.texi:36474 +#: guix-git/doc/guix.texi:36964 #, fuzzy, no-wrap msgid "{Data Type} shepherd-configuration" msgstr "{Tipo de datos} dhcpd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:36476 guix-git/doc/guix.texi:37463 +#: guix-git/doc/guix.texi:36966 guix-git/doc/guix.texi:37959 #, fuzzy msgid "This data type represents the Shepherd's configuration." msgstr "Tipo de datos que representa la configuración del servicio SDDM." #. type: item -#: guix-git/doc/guix.texi:36478 guix-git/doc/guix.texi:37465 +#: guix-git/doc/guix.texi:36968 guix-git/doc/guix.texi:37961 #, fuzzy, no-wrap msgid "shepherd (default: @code{shepherd})" msgstr "@code{shepherd} (predeterminado: @code{shepherd})" #. type: table -#: guix-git/doc/guix.texi:36480 guix-git/doc/guix.texi:37467 +#: guix-git/doc/guix.texi:36970 guix-git/doc/guix.texi:37963 #, fuzzy msgid "The Shepherd package to use." msgstr "El paquete httpd usado." #. type: item -#: guix-git/doc/guix.texi:36481 guix-git/doc/guix.texi:37471 +#: guix-git/doc/guix.texi:36971 guix-git/doc/guix.texi:37967 #, fuzzy, no-wrap msgid "services (default: @code{'()})" msgstr "@code{servers} (predeterminados: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:36485 guix-git/doc/guix.texi:37475 +#: guix-git/doc/guix.texi:36975 guix-git/doc/guix.texi:37971 msgid "A list of @code{} to start. You should probably use the service extension mechanism instead (@pxref{Shepherd Services})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36490 +#: guix-git/doc/guix.texi:36980 #, fuzzy msgid "The following example specifies the Shepherd package for the operating system:" msgstr "El ejemplo siguiente lanza un nuevo shell preparado para el desarrollo de GNU@tie{}Guile:" #. type: lisp -#: guix-git/doc/guix.texi:36505 +#: guix-git/doc/guix.texi:36995 #, no-wrap msgid "" "(operating-system\n" @@ -70321,54 +71352,54 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36507 +#: guix-git/doc/guix.texi:36997 #, no-wrap msgid "{Scheme Variable} %shepherd-root-service" msgstr "{Variable Scheme} %shepherd-root-service" #. type: defvr -#: guix-git/doc/guix.texi:36509 +#: guix-git/doc/guix.texi:36999 msgid "This service represents PID@tie{}1." msgstr "Este servicio representa el PID@tie{}1." #. type: cindex -#: guix-git/doc/guix.texi:36513 +#: guix-git/doc/guix.texi:37003 #, fuzzy, no-wrap #| msgid "configuration" msgid "complex configurations" msgstr "configuration" #. type: Plain text -#: guix-git/doc/guix.texi:36518 +#: guix-git/doc/guix.texi:37008 msgid "Some programs might have rather complex configuration files or formats, and to make it easier to create Scheme bindings for these configuration files, you can use the utilities defined in the @code{(gnu services configuration)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36526 +#: guix-git/doc/guix.texi:37016 msgid "The main utility is the @code{define-configuration} macro, which you will use to define a Scheme record type (@pxref{Record Overview,,, guile, GNU Guile Reference Manual}). The Scheme record will be serialized to a configuration file by using @dfn{serializers}, which are procedures that take some kind of Scheme value and returns a G-expression (@pxref{G-Expressions}), which should, once serialized to the disk, return a string. More details are listed below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36527 +#: guix-git/doc/guix.texi:37017 #, fuzzy, no-wrap #| msgid "{Scheme Syntax} modify-phases @var{phases} @var{clause}@dots{}" msgid "{Scheme Syntax} define-configuration @var{name} @var{clause1} @" msgstr "{Sintaxis Scheme} modify-phases @var{fases} @var{cláusula}@dots{}" #. type: deffn -#: guix-git/doc/guix.texi:36531 +#: guix-git/doc/guix.texi:37021 msgid "@var{clause2} ... Create a record type named @code{@var{name}} that contains the fields found in the clauses." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36533 +#: guix-git/doc/guix.texi:37023 #, fuzzy #| msgid "Packages are currently available on the following platforms:" msgid "A clause can have one of the following forms:" msgstr "Actualmente hay paquetes disponibles para las siguientes plataformas:" #. type: example -#: guix-git/doc/guix.texi:36538 +#: guix-git/doc/guix.texi:37028 #, no-wrap msgid "" "(@var{field-name}\n" @@ -70378,7 +71409,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36543 +#: guix-git/doc/guix.texi:37033 #, no-wrap msgid "" "(@var{field-name}\n" @@ -70389,7 +71420,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36547 +#: guix-git/doc/guix.texi:37037 #, no-wrap msgid "" "(@var{field-name}\n" @@ -70399,7 +71430,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36552 +#: guix-git/doc/guix.texi:37042 #, no-wrap msgid "" "(@var{field-name}\n" @@ -70409,39 +71440,39 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36556 +#: guix-git/doc/guix.texi:37046 msgid "@var{field-name} is an identifier that denotes the name of the field in the generated record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36564 +#: guix-git/doc/guix.texi:37054 msgid "@var{type} is the type of the value corresponding to @var{field-name}; since Guile is untyped, a predicate procedure---@code{@var{type}?}---will be called on the value corresponding to the field to ensure that the value is of the correct type. This means that if say, @var{type} is @code{package}, then a procedure named @code{package?} will be applied on the value to make sure that it is indeed a @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36568 +#: guix-git/doc/guix.texi:37058 msgid "@var{default-value} is the default value corresponding to the field; if none is specified, the user is forced to provide a value when creating an object of the record type." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36573 +#: guix-git/doc/guix.texi:37063 msgid "@var{documentation} is a string formatted with Texinfo syntax which should provide a description of what setting this field does." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36580 +#: guix-git/doc/guix.texi:37070 msgid "@var{serializer} is the name of a procedure which takes two arguments, the first is the name of the field, and the second is the value corresponding to the field. The procedure should return a string or G-expression (@pxref{G-Expressions}) that represents the content that will be serialized to the configuration file. If none is specified, a procedure of the name @code{serialize-@var{type}} will be used." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36582 +#: guix-git/doc/guix.texi:37072 #, fuzzy #| msgid "A simple services setup for nginx with php can look like this:" msgid "A simple serializer procedure could look like this:" msgstr "Una configuración simple de servicios para nginx con php puede ser más o menos así:" #. type: lisp -#: guix-git/doc/guix.texi:36587 +#: guix-git/doc/guix.texi:37077 #, no-wrap msgid "" "(define (serialize-boolean field-name value)\n" @@ -70450,12 +71481,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36598 +#: guix-git/doc/guix.texi:37088 msgid "In some cases multiple different configuration records might be defined in the same file, but their serializers for the same type might have to be different, because they have different configuration formats. For example, the @code{serialize-boolean} procedure for the Getmail service would have to be different for the one for the Transmission service. To make it easier to deal with this situation, one can specify a serializer prefix by using the @code{prefix} literal in the @code{define-configuration} form. This means that one doesn't have to manually specify a custom @var{serializer} for every field." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36602 +#: guix-git/doc/guix.texi:37092 #, no-wrap msgid "" "(define (foo-serialize-string field-name value)\n" @@ -70464,7 +71495,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36605 +#: guix-git/doc/guix.texi:37095 #, no-wrap msgid "" "(define (bar-serialize-string field-name value)\n" @@ -70473,7 +71504,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36611 +#: guix-git/doc/guix.texi:37101 #, no-wrap msgid "" "(define-configuration foo-configuration\n" @@ -70485,7 +71516,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36617 +#: guix-git/doc/guix.texi:37107 #, no-wrap msgid "" "(define-configuration bar-configuration\n" @@ -70496,12 +71527,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36623 +#: guix-git/doc/guix.texi:37113 msgid "However, in some cases you might not want to serialize any of the values of the record, to do this, you can use the @code{no-serialization} literal. There is also the @code{define-configuration/no-serialization} macro which is a shorthand of this." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36631 +#: guix-git/doc/guix.texi:37121 #, no-wrap msgid "" ";; Nothing will be serialized to disk.\n" @@ -70514,7 +71545,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36637 +#: guix-git/doc/guix.texi:37127 #, no-wrap msgid "" ";; The same thing as above.\n" @@ -70525,24 +71556,24 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36640 +#: guix-git/doc/guix.texi:37130 #, fuzzy, no-wrap #| msgid "{Scheme Syntax} return @var{val}" msgid "{Scheme Syntax} define-maybe @var{type}" msgstr "{Sintaxis Scheme} return @var{val}" #. type: deffn -#: guix-git/doc/guix.texi:36645 +#: guix-git/doc/guix.texi:37135 msgid "Sometimes a field should not be serialized if the user doesn’t specify a value. To achieve this, you can use the @code{define-maybe} macro to define a ``maybe type''; if the value of a maybe type is set to the @code{disabled}, it will not be serialized." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36652 +#: guix-git/doc/guix.texi:37142 msgid "When defining a ``maybe type'', the corresponding serializer for the regular type will be used by default. For example, a field of type @code{maybe-string} will be serialized using the @code{serialize-string} procedure by default, you can of course change this by specifying a custom serializer procedure. Likewise, the type of the value would have to be a string, unless it is set to the @code{disabled} symbol." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36655 +#: guix-git/doc/guix.texi:37145 #, fuzzy, no-wrap #| msgid "" #| "(define %user \"username\")\n" @@ -70555,7 +71586,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36658 +#: guix-git/doc/guix.texi:37148 #, no-wrap msgid "" "(define (serialize-string field-name value)\n" @@ -70564,7 +71595,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36665 +#: guix-git/doc/guix.texi:37155 #, no-wrap msgid "" "(define-configuration baz-configuration\n" @@ -70576,12 +71607,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36669 +#: guix-git/doc/guix.texi:37159 msgid "Like with @code{define-configuration}, one can set a prefix for the serializer name by using the @code{prefix} literal." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36673 +#: guix-git/doc/guix.texi:37163 #, no-wrap msgid "" "(define-maybe integer\n" @@ -70590,7 +71621,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36676 +#: guix-git/doc/guix.texi:37166 #, no-wrap msgid "" "(define (baz-serialize-interger field-name value)\n" @@ -70598,12 +71629,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36683 +#: guix-git/doc/guix.texi:37173 msgid "There is also the @code{no-serialization} literal, which when set means that no serializer will be defined for the ``maybe type'', regardless of its value is @code{disabled} or not. @code{define-maybe/no-serialization} is a shorthand for specifying the @code{no-serialization} literal." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36686 +#: guix-git/doc/guix.texi:37176 #, no-wrap msgid "" "(define-maybe/no-serialization symbol)\n" @@ -70611,7 +71642,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36691 +#: guix-git/doc/guix.texi:37181 #, no-wrap msgid "" "(define-configuration/no-serialization test-configuration\n" @@ -70621,70 +71652,70 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36694 +#: guix-git/doc/guix.texi:37184 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} set-xorg-configuration @var{config} @" msgid "{Scheme Procedure} serialize-configuration @var{configuration} @" msgstr "{Procedimiento Scheme} set-xorg-configuration @var{config} @" #. type: deffn -#: guix-git/doc/guix.texi:36700 +#: guix-git/doc/guix.texi:37190 msgid "@var{fields} Return a G-expression that contains the values corresponding to the @var{fields} of @var{configuration}, a record that has been generated by @code{define-configuration}. The G-expression can then be serialized to disk by using something like @code{mixed-text-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36702 +#: guix-git/doc/guix.texi:37192 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} set-xorg-configuration @var{config} @" msgid "{Scheme Procedure} validate-configuration @var{configuration}" msgstr "{Procedimiento Scheme} set-xorg-configuration @var{config} @" #. type: deffn -#: guix-git/doc/guix.texi:36706 +#: guix-git/doc/guix.texi:37196 msgid "@var{fields} Type-check @var{fields}, a list of field names of @var{configuration}, a configuration record created by @code{define-configuration}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36708 +#: guix-git/doc/guix.texi:37198 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} extra-special-file @var{file} @var{target}" msgid "{Scheme Procedure} empty-serializer @var{field-name} @var{value}" msgstr "{Procedimiento Scheme} extra-special-file @var{archivo} @var{destino}" #. type: deffn -#: guix-git/doc/guix.texi:36711 +#: guix-git/doc/guix.texi:37201 msgid "A serializer that just returns an empty string. The @code{serialize-package} procedure is an alias for this." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36716 +#: guix-git/doc/guix.texi:37206 msgid "Once you have defined a configuration record, you will most likely also want to document it so that other people know to use it. To help with that, there are two procedures, both of which are documented below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36717 +#: guix-git/doc/guix.texi:37207 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} set-xorg-configuration @var{config} @" msgid "{Scheme Procedure} generate-documentation @var{documentation} @" msgstr "{Procedimiento Scheme} set-xorg-configuration @var{config} @" #. type: deffn -#: guix-git/doc/guix.texi:36724 +#: guix-git/doc/guix.texi:37214 msgid "@var{documentation-name} Generate a Texinfo fragment from the docstrings in @var{documentation}, a list of @code{(@var{label} @var{fields} @var{sub-documentation} ...)}. @var{label} should be a symbol and should be the name of the configuration record. @var{fields} should be a list of all the fields available for the configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36729 +#: guix-git/doc/guix.texi:37219 msgid "@var{sub-documentation} is a @code{(@var{field-name} @var{configuration-name})} tuple. @var{field-name} is the name of the field which takes another configuration record as its value, and @var{configuration-name} is the name of that configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36736 +#: guix-git/doc/guix.texi:37226 msgid "@var{sub-documentation} is only needed if there are nested configuration records. For example, the @code{getmail-configuration} record (@pxref{Mail Services}) accepts a @code{getmail-configuration-file} record in one of its @code{rcfile} field, therefore documentation for @code{getmail-configuration-file} is nested in @code{getmail-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36743 +#: guix-git/doc/guix.texi:37233 #, no-wrap msgid "" "(generate-documentation\n" @@ -70695,34 +71726,34 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36747 +#: guix-git/doc/guix.texi:37237 msgid "@var{documentation-name} should be a symbol and should be the name of the configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36750 +#: guix-git/doc/guix.texi:37240 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} nginx-php-location @" msgid "{Scheme Procedure} configuration->documentation" msgstr "{Procedimiento Scheme} nginx-php-location @" #. type: deffn -#: guix-git/doc/guix.texi:36757 +#: guix-git/doc/guix.texi:37247 msgid "@var{configuration-symbol} Take @var{configuration-symbol}, the symbol corresponding to the name used when defining a configuration record with @code{define-configuration}, and print the Texinfo documentation of its fields. This is useful if there aren’t any nested configuration records since it only prints the documentation for the top-level fields." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36765 +#: guix-git/doc/guix.texi:37255 msgid "As of right now, there is no automated way to generate documentation for configuration records and put them in the manual. Instead, every time you make a change to the docstrings of a configuration record, you have to manually call @code{generate-documentation} or @code{configuration->documentation}, and paste the output into the @file{doc/guix.texi} file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36769 +#: guix-git/doc/guix.texi:37259 msgid "Below is an example of a record type created using @code{define-configuration} and friends." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36776 +#: guix-git/doc/guix.texi:37266 #, fuzzy, no-wrap #| msgid "" #| "(use-modules (gnu services)\n" @@ -70745,7 +71776,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36784 +#: guix-git/doc/guix.texi:37274 #, no-wrap msgid "" ";; Turn field names, which are Scheme symbols into strings\n" @@ -70759,7 +71790,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36787 +#: guix-git/doc/guix.texi:37277 #, no-wrap msgid "" "(define (serialize-string field-name value)\n" @@ -70768,7 +71799,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36790 +#: guix-git/doc/guix.texi:37280 #, no-wrap msgid "" "(define (serialize-integer field-name value)\n" @@ -70777,7 +71808,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36793 +#: guix-git/doc/guix.texi:37283 #, no-wrap msgid "" "(define (serialize-boolean field-name value)\n" @@ -70786,7 +71817,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36796 +#: guix-git/doc/guix.texi:37286 #, no-wrap msgid "" "(define (serialize-contact-name field-name value)\n" @@ -70795,7 +71826,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36799 +#: guix-git/doc/guix.texi:37289 #, fuzzy, no-wrap #| msgid "The list of knot-acl-configuration used by this configuration." msgid "" @@ -70805,7 +71836,7 @@ msgid "" msgstr "La lista de configuraciones knot-acl-configuration usadas por esta configuración." #. type: lisp -#: guix-git/doc/guix.texi:36804 +#: guix-git/doc/guix.texi:37294 #, no-wrap msgid "" "(define (serialize-list-of-contact-configurations field-name value)\n" @@ -70816,7 +71847,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36811 +#: guix-git/doc/guix.texi:37301 #, no-wrap msgid "" "(define (serialize-contacts-list-configuration configuration)\n" @@ -70829,7 +71860,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36814 +#: guix-git/doc/guix.texi:37304 #, no-wrap msgid "" "(define-maybe integer)\n" @@ -70838,7 +71869,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36829 +#: guix-git/doc/guix.texi:37319 #, no-wrap msgid "" "(define-configuration contact-configuration\n" @@ -70859,7 +71890,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36841 +#: guix-git/doc/guix.texi:37331 #, no-wrap msgid "" "(define-configuration contacts-list-configuration\n" @@ -70876,12 +71907,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36844 +#: guix-git/doc/guix.texi:37334 msgid "A contacts list configuration could then be created like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36860 +#: guix-git/doc/guix.texi:37350 #, no-wrap msgid "" "(define my-contacts\n" @@ -70901,12 +71932,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36864 +#: guix-git/doc/guix.texi:37354 msgid "After serializing the configuration to disk, the resulting file would look like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36869 +#: guix-git/doc/guix.texi:37359 #, no-wrap msgid "" "[owner]\n" @@ -70916,7 +71947,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36874 +#: guix-git/doc/guix.texi:37364 #, no-wrap msgid "" "[Bob]\n" @@ -70927,7 +71958,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36878 +#: guix-git/doc/guix.texi:37368 #, no-wrap msgid "" "[Charlie]\n" @@ -70936,220 +71967,220 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36883 +#: guix-git/doc/guix.texi:37373 #, fuzzy, no-wrap #| msgid "configuration" msgid "home configuration" msgstr "configuration" #. type: Plain text -#: guix-git/doc/guix.texi:36895 +#: guix-git/doc/guix.texi:37385 msgid "Guix supports declarative configuration of @dfn{home environments} by utilizing the configuration mechanism described in the previous chapter (@pxref{Defining Services}), but for user's dotfiles and packages. It works both on Guix System and foreign distros and allows users to declare all the packages and services that should be installed and configured for the user. Once a user has written a file containing @code{home-environment} record, such a configuration can be @dfn{instantiated} by an unprivileged user with the @command{guix home} command (@pxref{Invoking guix home})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36912 +#: guix-git/doc/guix.texi:37402 msgid "The user's home environment usually consists of three basic parts: software, configuration, and state. Software in mainstream distros are usually installed system-wide, but with GNU Guix most software packages can be installed on a per-user basis without needing root privileges, and are thus considered part of the user’s @dfn{home environment}. Packages on their own not very useful in many cases, because often they require some additional configuration, usually config files that reside in @env{XDG_CONFIG_HOME} (@file{~/.config} by default) or other directories. Everything else can be considered state, like media files, application databases, and logs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36915 +#: guix-git/doc/guix.texi:37405 msgid "Using Guix for managing home environments provides a number of advantages:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36918 +#: guix-git/doc/guix.texi:37408 #, no-wrap msgid "All software can be configured in one language (Guile Scheme)," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36921 +#: guix-git/doc/guix.texi:37411 msgid "this gives users the ability to share values between configurations of different programs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36922 +#: guix-git/doc/guix.texi:37412 #, no-wrap msgid "A well-defined home environment is self-contained and can be" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36925 +#: guix-git/doc/guix.texi:37415 msgid "created in a declarative and reproducible way---there is no need to grab external binaries or manually edit some configuration file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36926 +#: guix-git/doc/guix.texi:37416 #, fuzzy, no-wrap #| msgid "After @command{guix system reconfigure} configure Nix for your user:" msgid "After every @command{guix home reconfigure} invocation, a new home" msgstr "Tras @command{guix system reconfigure}, configure Nix para su usuaria:" #. type: itemize -#: guix-git/doc/guix.texi:36930 +#: guix-git/doc/guix.texi:37420 msgid "environment generation will be created. This means that users can rollback to a previous home environment generation so they don’t have to worry about breaking their configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36931 +#: guix-git/doc/guix.texi:37421 #, no-wrap msgid "It is possible to manage stateful data with Guix Home, this" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36936 +#: guix-git/doc/guix.texi:37426 msgid "includes the ability to automatically clone Git repositories on the initial setup of the machine, and periodically running commands like @command{rsync} to sync data with another host. This functionality is still in an experimental stage, though." msgstr "" #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:36946 -#: guix-git/doc/guix.texi:36947 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37436 +#: guix-git/doc/guix.texi:37437 #, fuzzy, no-wrap #| msgid "Preparing the isolated build environment." msgid "Declaring the Home Environment" msgstr "Preparar el entorno aislado de construcción." #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 #, fuzzy #| msgid "Customizing your GNU system." msgid "Customizing your Home." msgstr "Personalizar su sistema GNU." #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:37014 -#: guix-git/doc/guix.texi:37015 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37504 +#: guix-git/doc/guix.texi:37505 #, fuzzy, no-wrap #| msgid "Configuring the boot loader." msgid "Configuring the Shell" msgstr "Configurar el gestor de arranque." #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 #, fuzzy #| msgid "Invoking guix environment" msgid "Enabling home environment." msgstr "Invocación de guix environment" #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:37061 -#: guix-git/doc/guix.texi:37062 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37551 +#: guix-git/doc/guix.texi:37552 #, fuzzy, no-wrap #| msgid "Game Services" msgid "Home Services" msgstr "Servicios de juegos" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 #, fuzzy #| msgid "Specifying system services." msgid "Specifying home services." msgstr "Especificar los servicios del sistema." #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 #, fuzzy #| msgid "Instantiating a system configuration." msgid "Instantiating a home configuration." msgstr "Instanciar una configuración del sistema." #. type: Plain text -#: guix-git/doc/guix.texi:36953 +#: guix-git/doc/guix.texi:37443 #, fuzzy #| msgid "The operating system is configured by providing an @code{operating-system} declaration in a file that can then be passed to the @command{guix system} command (@pxref{Invoking guix system}). A simple setup, with the default system services, the default Linux-Libre kernel, initial RAM disk, and boot loader looks like this:" msgid "The home environment is configured by providing a @code{home-environment} declaration in a file that can be passed to the @command{guix home} command (@pxref{Invoking guix home}). The easiest way to get started is by generating an initial configuration with @command{guix home import}:" msgstr "El sistema operativo se configura proporcionando una declaración @code{operating-system} en un archivo que pueda ser proporcionado a la orden @command{guix system} (@pxref{Invoking guix system}). Una configuración simple, con los servicios predeterminados del sistema, el núcleo Linux-Libre predeterminado, un disco de RAM inicial y un cargador de arranque puede ser como sigue:" #. type: example -#: guix-git/doc/guix.texi:36956 +#: guix-git/doc/guix.texi:37446 #, no-wrap msgid "guix home import ~/src/guix-config\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36964 +#: guix-git/doc/guix.texi:37454 msgid "The @command{guix home import} command reads some of the ``dot files'' such as @file{~/.bashrc} found in your home directory and copies them to the given directory, @file{~/src/guix-config} in this case; it also reads the contents of your profile, @file{~/.guix-profile}, and, based on that, it populates @file{~/src/guix-config/home-configuration.scm} with a Home configuration that resembles your current configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36970 +#: guix-git/doc/guix.texi:37460 msgid "A simple setup can include Bash and a custom text configuration, like in the example below. Don't be afraid to declare home environment parts, which overlaps with your current dot files: before installing any configuration files, Guix Home will back up existing config files to a separate place in the home directory." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36976 +#: guix-git/doc/guix.texi:37466 msgid "It is highly recommended that you manage your shell or shells with Guix Home, because it will make sure that all the necessary scripts are sourced by the shell configuration file. Otherwise you will need to do it manually. (@pxref{Configuring the Shell})." msgstr "" #. type: findex -#: guix-git/doc/guix.texi:36978 +#: guix-git/doc/guix.texi:37468 #, fuzzy, no-wrap #| msgid "environment" msgid "home-environment" msgstr "environment" #. type: include -#: guix-git/doc/guix.texi:36980 +#: guix-git/doc/guix.texi:37470 #, fuzzy, no-wrap #| msgid "os-config-bare-bones.texi" msgid "he-config-bare-bones.scm" msgstr "os-config-bare-bones.texi" #. type: Plain text -#: guix-git/doc/guix.texi:36987 +#: guix-git/doc/guix.texi:37477 msgid "The @code{packages} field should be self-explanatory, it will install the list of packages into the user's profile. The most important field is @code{services}, it contains a list of @dfn{home services}, which are the basic building blocks of a home environment." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36995 +#: guix-git/doc/guix.texi:37485 msgid "There is no daemon (at least not necessarily) related to a home service, a home service is just an element that is used to declare part of home environment and extend other parts of it. The extension mechanism discussed in the previous chapter (@pxref{Defining Services}) should not be confused with Shepherd services (@pxref{Shepherd Services}). Using this extension mechanism and some Scheme code that glues things together gives the user the freedom to declare their own, very custom, home environments." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36998 +#: guix-git/doc/guix.texi:37488 msgid "Once you have a configuration file that suits your needs, you can reconfigure your home by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37001 +#: guix-git/doc/guix.texi:37491 #, fuzzy, no-wrap #| msgid "sudo guix system reconfigure /etc/config.scm\n" msgid "guix home reconfigure config.scm\n" msgstr "sudo guix system reconfigure /etc/config.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:37005 +#: guix-git/doc/guix.texi:37495 msgid "This ``builds'' your home environment and creates @file{~/.guix-home} pointing to it. Voilà!" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37012 +#: guix-git/doc/guix.texi:37502 msgid "Make sure the operating system has elogind, systemd, or a similar mechanism to create the XDG run-time directory and has the @env{XDG_RUNTIME_DIR} variable set. Failing that, the @file{on-first-login} script will not execute anything, and processes like user Shepherd and its descendants will not start." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37018 +#: guix-git/doc/guix.texi:37508 msgid "This section is safe to skip if your shell or shells are managed by Guix Home. Otherwise, read it carefully." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37025 +#: guix-git/doc/guix.texi:37515 msgid "There are a few scripts that must be evaluated by a login shell to activate the home environment. The shell startup files only read by login shells often have @code{profile} suffix. For more information about login shells see @ref{Invoking Bash,,, bash, The GNU Bash Reference Manual} and see @ref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37032 +#: guix-git/doc/guix.texi:37522 msgid "The first script that needs to be sourced is @file{setup-environment}, which sets all the necessary environment variables (including variables declared by the user) and the second one is @file{on-first-login}, which starts Shepherd for the current user and performs actions declared by other home services that extends @code{home-run-on-first-login-service-type}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37035 +#: guix-git/doc/guix.texi:37525 msgid "Guix Home will always create @file{~/.profile}, which contains the following lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37040 +#: guix-git/doc/guix.texi:37530 #, no-wrap msgid "" "HOME_ENVIRONMENT=$HOME/.guix-home\n" @@ -71158,124 +72189,124 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37050 +#: guix-git/doc/guix.texi:37540 msgid "This makes POSIX compliant login shells activate the home environment. However, in most cases this file won't be read by most modern shells, because they are run in non POSIX mode by default and have their own @file{*profile} startup files. For example Bash will prefer @file{~/.bash_profile} in case it exists and only if it doesn't will it fallback to @file{~/.profile}. Zsh (if no additional options are specified) will ignore @file{~/.profile}, even if @file{~/.zprofile} doesn't exist." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37055 +#: guix-git/doc/guix.texi:37545 msgid "To make your shell respect @file{~/.profile}, add @code{. ~/.profile} or @code{source ~/profile} to the startup file for the login shell. In case of Bash, it is @file{~/.bash_profile}, and in case of Zsh, it is @file{~/.zprofile}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37059 +#: guix-git/doc/guix.texi:37549 msgid "This step is only required if your shell is NOT managed by Guix Home. Otherwise, everything will be done automatically." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37063 +#: guix-git/doc/guix.texi:37553 #, fuzzy, no-wrap #| msgid "Other services." msgid "home services" msgstr "Otros servicios." #. type: Plain text -#: guix-git/doc/guix.texi:37072 +#: guix-git/doc/guix.texi:37562 msgid "A @dfn{home service} is not necessarily something that has a daemon and is managed by Shepherd (@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}), in most cases it doesn't. It's a simple building block of the home environment, often declaring a set of packages to be installed in the home environment profile, a set of config files to be symlinked into @env{XDG_CONFIG_HOME} (@file{~/.config} by default), and environment variables to be set by a login shell." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37080 +#: guix-git/doc/guix.texi:37570 msgid "There is a service extension mechanism (@pxref{Service Composition}) which allows home services to extend other home services and utilize capabilities they provide; for example: declare mcron jobs (@pxref{Top,,, mcron, GNU@tie{}Mcron}) by extending @ref{Mcron Home Service}; declare daemons by extending @ref{Shepherd Home Service}; add commands, which will be invoked on by the Bash by extending @ref{Shells Home Services, @code{home-bash-service-type}}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37091 -msgid "A good way to discover avaliable home services is using the @command{guix home search} command (@pxref{Invoking guix home}). After the required home services are found, include its module with the @code{use-modules} form (@pxref{use-modules,, Using Guile Modules, guile, The GNU Guile Reference Manual}), or the @code{#:use-modules} directive (@pxref{define-module,, Creating Guile Modules, guile, The GNU Guile Reference Manual}) and declare a home service using the @code{service} function, or extend a service type by declaring a new service with the @code{simple-service} procedure from @code{(gnu services)}." +#: guix-git/doc/guix.texi:37581 +msgid "A good way to discover available home services is using the @command{guix home search} command (@pxref{Invoking guix home}). After the required home services are found, include its module with the @code{use-modules} form (@pxref{use-modules,, Using Guile Modules, guile, The GNU Guile Reference Manual}), or the @code{#:use-modules} directive (@pxref{define-module,, Creating Guile Modules, guile, The GNU Guile Reference Manual}) and declare a home service using the @code{service} function, or extend a service type by declaring a new service with the @code{simple-service} procedure from @code{(gnu services)}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:37097 guix-git/doc/guix.texi:37100 -#: guix-git/doc/guix.texi:37101 +#: guix-git/doc/guix.texi:37587 guix-git/doc/guix.texi:37590 +#: guix-git/doc/guix.texi:37591 #, fuzzy, no-wrap #| msgid "essential services" msgid "Essential Home Services" msgstr "servicios esenciales" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 #, fuzzy #| msgid "Environment variables to set for getmail." msgid "Environment variables, packages, on-* scripts." msgstr "Variables de entorno proporcionadas a getmail." #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 #, fuzzy #| msgid "Shepherd Services" msgid "Shells: Shells Home Services" msgstr "Servicios de Shepherd" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "POSIX shells, Bash, Zsh." msgstr "" # FUZZY #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 #, fuzzy #| msgid "PAM Mount Service" msgid "Mcron: Mcron Home Service" msgstr "Servicio PAM Mount" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 #, fuzzy #| msgid "Scheduled Job Execution" msgid "Scheduled User's Job Execution." msgstr "Ejecución de tareas programadas" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 #, fuzzy #| msgid "Shepherd Services" msgid "Shepherd: Shepherd Home Service" msgstr "Servicios de Shepherd" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 #, fuzzy #| msgid "Messaging services." msgid "Managing User's Daemons." msgstr "Servicios de mensajería." #. type: Plain text -#: guix-git/doc/guix.texi:37106 +#: guix-git/doc/guix.texi:37596 msgid "There are a few essential home services defined in @code{(gnu services)}, they are mostly for internal use and are required to build a home environment, but some of them will be useful for the end user." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37107 +#: guix-git/doc/guix.texi:37597 #, fuzzy, no-wrap #| msgid "environment" msgid "environment variables" msgstr "environment" #. type: defvr -#: guix-git/doc/guix.texi:37109 +#: guix-git/doc/guix.texi:37599 #, fuzzy, no-wrap #| msgid "{Scheme Variable} iptables-service-type" msgid "{Scheme Variable} home-environment-variables-service-type" msgstr "{Variable Scheme} iptables-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37114 +#: guix-git/doc/guix.texi:37604 msgid "The service of this type will be instantiated by every home environment automatically by default, there is no need to define it, but someone may want to extend it with a list of pairs to set some environment variables." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37118 +#: guix-git/doc/guix.texi:37608 #, no-wrap msgid "" "(list (\"ENV_VAR1\" . \"value1\")\n" @@ -71283,12 +72314,12 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37123 +#: guix-git/doc/guix.texi:37613 msgid "The easiest way to extend a service type, without defining new service type is to use the @code{simple-service} helper from @code{(gnu services)}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37131 +#: guix-git/doc/guix.texi:37621 #, no-wrap msgid "" "(simple-service 'some-useful-env-vars-service\n" @@ -71300,12 +72331,12 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37136 +#: guix-git/doc/guix.texi:37626 msgid "If you include such a service in you home environment definition, it will add the following content to the @file{setup-environment} script (which is expected to be sourced by the login shell):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37141 +#: guix-git/doc/guix.texi:37631 #, no-wrap msgid "" "export LESSHISTFILE=$XDG_CACHE_HOME/.lesshst\n" @@ -71314,610 +72345,622 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37148 +#: guix-git/doc/guix.texi:37638 msgid "Make sure that module @code{(gnu packages shells)} is imported with @code{use-modules} or any other way, this namespace contains the definition of the @code{zsh} packages, which is used in the example above." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37161 +#: guix-git/doc/guix.texi:37651 msgid "The association list (@pxref{Association Lists, alists, Association Lists, guile, The GNU Guile Reference manual}) is a data structure containing key-value pairs, for @code{home-environment-variables-service-type} the key is always a string, the value can be a string, string-valued gexp (@pxref{G-Expressions}), file-like object (@pxref{G-Expressions, file-like object}) or boolean. For gexps, the variable will be set to the value of the gexp; for file-like objects, it will be set to the path of the file in the store (@pxref{The Store}); for @code{#t}, it will export the variable without any value; and for @code{#f}, it will omit variable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37164 +#: guix-git/doc/guix.texi:37654 #, fuzzy, no-wrap #| msgid "{Scheme Variable} profile-service-type" msgid "{Scheme Variable} home-profile-service-type" msgstr "{Variable Scheme} profile-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37170 -msgid "The service of this type will be instantiated by every home environment automatically, there is no need to define it, but you may want to extend it with a list of packages if you want to install additional packages into your profile. Other services, which need to make some programs avaliable to the user will also extend this service type." +#: guix-git/doc/guix.texi:37660 +msgid "The service of this type will be instantiated by every home environment automatically, there is no need to define it, but you may want to extend it with a list of packages if you want to install additional packages into your profile. Other services, which need to make some programs available to the user will also extend this service type." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37172 +#: guix-git/doc/guix.texi:37662 msgid "The extension value is just a list of packages:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37175 +#: guix-git/doc/guix.texi:37665 #, no-wrap msgid "(list htop vim emacs)\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37185 +#: guix-git/doc/guix.texi:37675 msgid "The same approach as @code{simple-service} (@pxref{Service Reference, simple-service}) for @code{home-environment-variables-service-type} can be used here, too. Make sure that modules containing the specified packages are imported with @code{use-modules}. To find a package or information about its module use @command{guix search} (@pxref{Invoking guix package}). Alternatively, @code{specification->package} can be used to get the package record from string without importing related module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37189 +#: guix-git/doc/guix.texi:37679 msgid "There are few more essential services, but users are not expected to extend them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37190 +#: guix-git/doc/guix.texi:37680 #, fuzzy, no-wrap #| msgid "{Scheme Variable} gpm-service-type" msgid "{Scheme Variable} home-service-type" msgstr "{Variable Scheme} gpm-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37195 +#: guix-git/doc/guix.texi:37685 msgid "The root of home services DAG, it generates a folder, which later will be symlinked to @file{~/.guix-home}, it contains configurations, profile with binaries and libraries, and some necessary scripts to glue things together." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37197 +#: guix-git/doc/guix.texi:37687 #, fuzzy, no-wrap #| msgid "{Scheme Variable} rottlog-service-type" msgid "{Scheme Variable} home-run-on-first-login-service-type" msgstr "{Variable Scheme} rottlog-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37202 +#: guix-git/doc/guix.texi:37692 msgid "The service of this type generates a Guile script, which is expected to be executed by the login shell. It is only executed if the special flag file inside @env{XDG_RUNTIME_DIR} hasn't been created, this prevents redundant executions of the script if multiple login shells are spawned." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37208 +#: guix-git/doc/guix.texi:37698 msgid "It can be extended with a gexp. However, to autostart an application, users @emph{should not} use this service, in most cases it's better to extend @code{home-shepherd-service-type} with a Shepherd service (@pxref{Shepherd Services}), or extend the shell's startup file with the required command using the appropriate service type." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37210 +#: guix-git/doc/guix.texi:37700 #, fuzzy, no-wrap #| msgid "{Scheme Variable} mcron-service-type" msgid "{Scheme Variable} home-activation-service-type" msgstr "{Variable Scheme} mcron-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37214 +#: guix-git/doc/guix.texi:37704 msgid "The service of this type generates a guile script, which runs on every @command{guix home reconfigure} invocation or any other action, which leads to the activation of the home environment." msgstr "" #. type: node -#: guix-git/doc/guix.texi:37216 +#: guix-git/doc/guix.texi:37706 #, fuzzy, no-wrap #| msgid "Shepherd Services" msgid "Shells Home Services" msgstr "Servicios de Shepherd" #. type: subsection -#: guix-git/doc/guix.texi:37217 +#: guix-git/doc/guix.texi:37707 #, no-wrap msgid "Shells" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37219 guix-git/doc/guix.texi:37500 +#: guix-git/doc/guix.texi:37709 guix-git/doc/guix.texi:37996 #, no-wrap msgid "shell" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37220 +#: guix-git/doc/guix.texi:37710 #, no-wrap msgid "login shell" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37221 +#: guix-git/doc/guix.texi:37711 #, fuzzy, no-wrap #| msgid "interactive" msgid "interactive shell" msgstr "interactive" #. type: cindex -#: guix-git/doc/guix.texi:37222 guix-git/doc/guix.texi:37502 +#: guix-git/doc/guix.texi:37712 guix-git/doc/guix.texi:37998 #, no-wrap msgid "bash" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37223 guix-git/doc/guix.texi:37503 +#: guix-git/doc/guix.texi:37713 guix-git/doc/guix.texi:37999 #, fuzzy, no-wrap #| msgid "ssh" msgid "zsh" msgstr "ssh" #. type: Plain text -#: guix-git/doc/guix.texi:37229 +#: guix-git/doc/guix.texi:37719 msgid "Shells play a quite important role in the environment initialization process, you can configure them manually as described in section @ref{Configuring the Shell}, but the recommended way is to use home services listed below. It's both easier and more reliable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37239 +#: guix-git/doc/guix.texi:37729 msgid "Each home environment instantiates @code{home-shell-profile-service-type}, which creates a @file{~/.profile} startup file for all POSIX-compatible shells. This file contains all the necessary steps to properly initialize the environment, but many modern shells like Bash or Zsh prefer their own startup files, that's why the respective home services (@code{home-bash-service-type} and @code{home-zsh-service-type}) ensure that @file{~/.profile} is sourced by @file{~/.bash_profile} and @file{~/.zprofile}, respectively." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:37240 +#: guix-git/doc/guix.texi:37730 #, fuzzy, no-wrap #| msgid "System Control Service" msgid "Shell Profile Service" msgstr "Servicios de control del sistema" #. type: deftp -#: guix-git/doc/guix.texi:37242 +#: guix-git/doc/guix.texi:37732 #, fuzzy, no-wrap msgid "{Data Type} home-shell-profile-configuration" msgstr "{Tipo de datos} postgresql-configuration" #. type: deftp -#: guix-git/doc/guix.texi:37244 +#: guix-git/doc/guix.texi:37734 #, fuzzy #| msgid "Available @code{service-configuration} fields are:" msgid "Available @code{home-shell-profile-configuration} fields are:" msgstr "Los campos disponibles de @code{service-configuration} son:" #. type: item -#: guix-git/doc/guix.texi:37246 +#: guix-git/doc/guix.texi:37736 #, fuzzy, no-wrap #| msgid "@code{debug?} (default: @code{#f})" msgid "@code{profile} (default: @code{()}) (type: text-config)" msgstr "@code{debug?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:37256 -msgid "@code{home-shell-profile} is instantiated automatically by @code{home-environment}, DO NOT create this service manually, it can only be extended. @code{profile} is a list of file-like objects, which will go to @file{~/.profile}. By default @file{~/.profile} contains the initialization code, which have to be evaluated by login shell to make home-environment's profile avaliable to the user, but other commands can be added to the file if it is really necessary. In most cases shell's configuration files are preferred places for user's customizations. Extend home-shell-profile service only if you really know what you do." +#: guix-git/doc/guix.texi:37746 +msgid "@code{home-shell-profile} is instantiated automatically by @code{home-environment}, DO NOT create this service manually, it can only be extended. @code{profile} is a list of file-like objects, which will go to @file{~/.profile}. By default @file{~/.profile} contains the initialization code which must be evaluated by the login shell to make home-environment's profile available to the user, but other commands can be added to the file if it is really necessary. In most cases shell's configuration files are preferred places for user's customizations. Extend home-shell-profile service only if you really know what you do." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:37261 +#: guix-git/doc/guix.texi:37751 #, fuzzy, no-wrap #| msgid "Base Services" msgid "Bash Home Service" msgstr "Servicios base" #. type: anchor{#1} -#: guix-git/doc/guix.texi:37264 +#: guix-git/doc/guix.texi:37754 #, fuzzy #| msgid "configuration" msgid "home-bash-configuration" msgstr "configuration" #. type: deftp -#: guix-git/doc/guix.texi:37264 +#: guix-git/doc/guix.texi:37754 #, fuzzy, no-wrap #| msgid "{Data Type} webssh-configuration" msgid "{Data Type} home-bash-configuration" msgstr "{Tipo de datos} webssh-configuration" #. type: deftp -#: guix-git/doc/guix.texi:37266 +#: guix-git/doc/guix.texi:37756 #, fuzzy #| msgid "Available @code{dict-configuration} fields are:" msgid "Available @code{home-bash-configuration} fields are:" msgstr "Los campos disponibles de @code{dict-configuration} son:" #. type: item -#: guix-git/doc/guix.texi:37268 +#: guix-git/doc/guix.texi:37758 #, fuzzy, no-wrap #| msgid "@code{packages} (default: @code{%base-packages})" msgid "@code{package} (default: @code{bash}) (type: package)" msgstr "@code{packages} (predeterminados: @code{%base-packages})" #. type: table -#: guix-git/doc/guix.texi:37270 +#: guix-git/doc/guix.texi:37760 #, fuzzy #| msgid "The Varnish package to use." msgid "The Bash package to use." msgstr "El paquete Varnish usado." #. type: item -#: guix-git/doc/guix.texi:37271 +#: guix-git/doc/guix.texi:37761 #, fuzzy, no-wrap #| msgid "@code{debug?} (default: @code{#f})" msgid "@code{guix-defaults?} (default: @code{#t}) (type: boolean)" msgstr "@code{debug?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:37274 +#: guix-git/doc/guix.texi:37764 msgid "Add sane defaults like reading @file{/etc/bashrc} and coloring the output of @command{ls} to the end of the @file{.bashrc} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37275 guix-git/doc/guix.texi:37329 -#: guix-git/doc/guix.texi:37368 +#: guix-git/doc/guix.texi:37765 guix-git/doc/guix.texi:37819 +#: guix-git/doc/guix.texi:37858 #, fuzzy, no-wrap #| msgid "@code{menu-entries} (default: @code{()})" msgid "@code{environment-variables} (default: @code{()}) (type: alist)" msgstr "@code{menu-entries} (predeterminadas: @code{()})" #. type: table -#: guix-git/doc/guix.texi:37280 +#: guix-git/doc/guix.texi:37770 msgid "Association list of environment variables to set for the Bash session. The rules for the @code{home-environment-variables-service-type} apply here (@pxref{Essential Home Services}). The contents of this field will be added after the contents of the @code{bash-profile} field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37281 guix-git/doc/guix.texi:37334 +#: guix-git/doc/guix.texi:37771 guix-git/doc/guix.texi:37824 #, fuzzy, no-wrap #| msgid "@code{menu-entries} (default: @code{()})" msgid "@code{aliases} (default: @code{()}) (type: alist)" msgstr "@code{menu-entries} (predeterminadas: @code{()})" #. type: table -#: guix-git/doc/guix.texi:37286 +#: guix-git/doc/guix.texi:37776 msgid "Association list of aliases to set for the Bash session. The aliases will be defined after the contents of the @code{bashrc} field has been put in the @file{.bashrc} file. The alias will automatically be quoted, so something line this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37289 +#: guix-git/doc/guix.texi:37779 #, no-wrap msgid "'((\\\"ls\\\" . \\\"ls -alF\\\"))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37292 +#: guix-git/doc/guix.texi:37782 msgid "turns into" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37295 +#: guix-git/doc/guix.texi:37785 #, no-wrap msgid "alias ls=\\\"ls -alF\\\"\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37297 guix-git/doc/guix.texi:37338 +#: guix-git/doc/guix.texi:37787 guix-git/doc/guix.texi:37828 #, fuzzy, no-wrap #| msgid "@code{packages} (default: @code{%base-packages})" msgid "@code{bash-profile} (default: @code{()}) (type: text-config)" msgstr "@code{packages} (predeterminados: @code{%base-packages})" #. type: table -#: guix-git/doc/guix.texi:37302 +#: guix-git/doc/guix.texi:37792 msgid "List of file-like objects, which will be added to @file{.bash_profile}. Used for executing user's commands at start of login shell (In most cases the shell started on tty just after login). @file{.bash_login} won't be ever read, because @file{.bash_profile} always present." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37303 guix-git/doc/guix.texi:37342 +#: guix-git/doc/guix.texi:37793 guix-git/doc/guix.texi:37832 #, fuzzy, no-wrap #| msgid "@code{packages} (default: @code{%base-packages})" msgid "@code{bashrc} (default: @code{()}) (type: text-config)" msgstr "@code{packages} (predeterminados: @code{%base-packages})" #. type: table -#: guix-git/doc/guix.texi:37308 +#: guix-git/doc/guix.texi:37798 msgid "List of file-like objects, which will be added to @file{.bashrc}. Used for executing user's commands at start of interactive shell (The shell for interactive usage started by typing @code{bash} or by terminal app or any other program)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37309 guix-git/doc/guix.texi:37346 +#: guix-git/doc/guix.texi:37799 guix-git/doc/guix.texi:37836 #, fuzzy, no-wrap #| msgid "@code{packages} (default: @code{%base-packages})" msgid "@code{bash-logout} (default: @code{()}) (type: text-config)" msgstr "@code{packages} (predeterminados: @code{%base-packages})" #. type: table -#: guix-git/doc/guix.texi:37314 +#: guix-git/doc/guix.texi:37804 msgid "List of file-like objects, which will be added to @file{.bash_logout}. Used for executing user's commands at the exit of login shell. It won't be read in some cases (if the shell terminates by exec'ing another process for example)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37324 +#: guix-git/doc/guix.texi:37814 msgid "You can extend the Bash service by using the @code{home-bash-extension} configuration record, whose fields most mirror that of @code{home-bash-configuration} (@pxref{home-bash-configuration}). The contents of the extensions will be added to the end of the corresponding Bash configuration files (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37325 +#: guix-git/doc/guix.texi:37815 #, fuzzy, no-wrap #| msgid "{Data Type} webssh-configuration" msgid "{Data Type} home-bash-extension" msgstr "{Tipo de datos} webssh-configuration" #. type: deftp -#: guix-git/doc/guix.texi:37327 +#: guix-git/doc/guix.texi:37817 #, fuzzy #| msgid "Available @code{dict-configuration} fields are:" msgid "Available @code{home-bash-extension} fields are:" msgstr "Los campos disponibles de @code{dict-configuration} son:" #. type: table -#: guix-git/doc/guix.texi:37333 +#: guix-git/doc/guix.texi:37823 msgid "Additional environment variables to set. These will be combined with the environment variables from other extensions and the base service to form one coherent block of environment variables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37337 +#: guix-git/doc/guix.texi:37827 msgid "Additional aliases to set. These will be combined with the aliases from other extensions and the base service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37341 +#: guix-git/doc/guix.texi:37831 msgid "Additional text blocks to add to @file{.bash_profile}, which will be combined with text blocks from other extensions and the base service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37345 +#: guix-git/doc/guix.texi:37835 msgid "Additional text blocks to add to @file{.bashrc}, which will be combined with text blocks from other extensions and the base service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37349 +#: guix-git/doc/guix.texi:37839 msgid "Additional text blocks to add to @file{.bash_logout}, which will be combined with text blocks from other extensions and the base service." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:37353 +#: guix-git/doc/guix.texi:37843 #, fuzzy, no-wrap #| msgid "Game Services" msgid "Zsh Home Service" msgstr "Servicios de juegos" #. type: deftp -#: guix-git/doc/guix.texi:37355 +#: guix-git/doc/guix.texi:37845 #, fuzzy, no-wrap #| msgid "{Data Type} openssh-configuration" msgid "{Data Type} home-zsh-configuration" msgstr "{Tipo de datos} openssh-configuration" #. type: deftp -#: guix-git/doc/guix.texi:37357 +#: guix-git/doc/guix.texi:37847 #, fuzzy #| msgid "Available @code{dict-configuration} fields are:" msgid "Available @code{home-zsh-configuration} fields are:" msgstr "Los campos disponibles de @code{dict-configuration} son:" #. type: item -#: guix-git/doc/guix.texi:37359 +#: guix-git/doc/guix.texi:37849 #, fuzzy, no-wrap #| msgid "@code{packages} (default: @code{%base-packages})" msgid "@code{package} (default: @code{zsh}) (type: package)" msgstr "@code{packages} (predeterminados: @code{%base-packages})" #. type: table -#: guix-git/doc/guix.texi:37361 +#: guix-git/doc/guix.texi:37851 #, fuzzy #| msgid "The php package to use." msgid "The Zsh package to use." msgstr "El paquete php usado." #. type: item -#: guix-git/doc/guix.texi:37362 +#: guix-git/doc/guix.texi:37852 #, fuzzy, no-wrap #| msgid "@code{debug?} (default: @code{#f})" msgid "@code{xdg-flavor?} (default: @code{#t}) (type: boolean)" msgstr "@code{debug?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:37367 +#: guix-git/doc/guix.texi:37857 msgid "Place all the configs to @file{$XDG_CONFIG_HOME/zsh}. Makes @file{~/.zshenv} to set @env{ZDOTDIR} to @file{$XDG_CONFIG_HOME/zsh}. Shell startup process will continue with @file{$XDG_CONFIG_HOME/zsh/.zshenv}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37370 +#: guix-git/doc/guix.texi:37860 #, fuzzy #| msgid "A list of environment variables to be defined." msgid "Association list of environment variables to set for the Zsh session." msgstr "Una lista de variables de entorno a ser definidas." #. type: item -#: guix-git/doc/guix.texi:37371 +#: guix-git/doc/guix.texi:37861 #, fuzzy, no-wrap #| msgid "@code{packages} (default: @code{%base-packages})" msgid "@code{zshenv} (default: @code{()}) (type: text-config)" msgstr "@code{packages} (predeterminados: @code{%base-packages})" #. type: table -#: guix-git/doc/guix.texi:37376 +#: guix-git/doc/guix.texi:37866 msgid "List of file-like objects, which will be added to @file{.zshenv}. Used for setting user's shell environment variables. Must not contain commands assuming the presence of tty or producing output. Will be read always. Will be read before any other file in @env{ZDOTDIR}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37377 +#: guix-git/doc/guix.texi:37867 #, fuzzy, no-wrap #| msgid "@code{debug?} (default: @code{#f})" msgid "@code{zprofile} (default: @code{()}) (type: text-config)" msgstr "@code{debug?} (predeterminado: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:37382 +#: guix-git/doc/guix.texi:37872 msgid "List of file-like objects, which will be added to @file{.zprofile}. Used for executing user's commands at start of login shell (In most cases the shell started on tty just after login). Will be read before @file{.zlogin}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37383 +#: guix-git/doc/guix.texi:37873 #, fuzzy, no-wrap #| msgid "@code{packages} (default: @code{%base-packages})" msgid "@code{zshrc} (default: @code{()}) (type: text-config)" msgstr "@code{packages} (predeterminados: @code{%base-packages})" #. type: table -#: guix-git/doc/guix.texi:37388 +#: guix-git/doc/guix.texi:37878 msgid "List of file-like objects, which will be added to @file{.zshrc}. Used for executing user's commands at start of interactive shell (The shell for interactive usage started by typing @code{zsh} or by terminal app or any other program)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37389 +#: guix-git/doc/guix.texi:37879 #, fuzzy, no-wrap #| msgid "@code{enabled?} (default: @code{#t})" msgid "@code{zlogin} (default: @code{()}) (type: text-config)" msgstr "@code{enabled?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:37393 +#: guix-git/doc/guix.texi:37883 msgid "List of file-like objects, which will be added to @file{.zlogin}. Used for executing user's commands at the end of starting process of login shell." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37394 +#: guix-git/doc/guix.texi:37884 #, fuzzy, no-wrap #| msgid "@code{packages} (default: @code{%base-packages})" msgid "@code{zlogout} (default: @code{()}) (type: text-config)" msgstr "@code{packages} (predeterminados: @code{%base-packages})" #. type: table -#: guix-git/doc/guix.texi:37399 +#: guix-git/doc/guix.texi:37889 msgid "List of file-like objects, which will be added to @file{.zlogout}. Used for executing user's commands at the exit of login shell. It won't be read in some cases (if the shell terminates by exec'ing another process for example)." msgstr "" #. type: node -#: guix-git/doc/guix.texi:37404 +#: guix-git/doc/guix.texi:37894 #, fuzzy, no-wrap #| msgid "Prosody Service" msgid "Mcron Home Service" msgstr "Servicio Prosody" #. type: subsection -#: guix-git/doc/guix.texi:37405 +#: guix-git/doc/guix.texi:37895 #, fuzzy, no-wrap #| msgid "Scheduled Job Execution" msgid "Scheduled User's Job Execution" msgstr "Ejecución de tareas programadas" #. type: Plain text -#: guix-git/doc/guix.texi:37418 +#: guix-git/doc/guix.texi:37908 #, fuzzy #| msgid "The @code{(gnu services mcron)} module provides an interface to GNU@tie{}mcron, a daemon to run jobs at scheduled times (@pxref{Top,,, mcron, GNU@tie{}mcron}). GNU@tie{}mcron is similar to the traditional Unix @command{cron} daemon; the main difference is that it is implemented in Guile Scheme, which provides a lot of flexibility when specifying the scheduling of jobs and their actions." msgid "The @code{(gnu home services mcron)} module provides an interface to GNU@tie{}mcron, a daemon to run jobs at scheduled times (@pxref{Top,,, mcron, GNU@tie{}mcron}). The information about system's mcron is applicable here (@pxref{Scheduled Job Execution}), the only difference for home services is that they have to be declared in a @code{home-envirnoment} record instead of an @code{operating-system} record." msgstr "El módulo @code{(gnu services mcron)} proporciona una interfaz a GNU@tie{}mcron, un daemon para ejecutar trabajos planificados de antemano (@pxref{Top,,, mcron, GNU@tie{}mcron}). GNU@tie{}mcron es similar al daemon tradicional de Unix @command{cron}; la principal diferencia es que está implementado en Scheme Guile, que proporciona mucha flexibilidad cuando se especifica la planificación de trabajos y sus acciones." #. type: defvr -#: guix-git/doc/guix.texi:37419 +#: guix-git/doc/guix.texi:37909 #, fuzzy, no-wrap #| msgid "{Scheme Variable} mcron-service-type" msgid "{Scheme Variable} home-mcron-service-type" msgstr "{Variable Scheme} mcron-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37423 +#: guix-git/doc/guix.texi:37913 #, fuzzy #| msgid "This is the type of the @code{mcron} service, whose value is an @code{mcron-configuration} object." msgid "This is the type of the @code{mcron} home service, whose value is an @code{home-mcron-configuration} object. It allows to manage scheduled tasks." msgstr "Este es el tipo del servicio @code{mcron}, cuyo valor es un objeto @code{mcron-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:37430 +#: guix-git/doc/guix.texi:37920 #, fuzzy, no-wrap #| msgid "{Data Type} mcron-configuration" msgid "{Data Type} home-mcron-configuration" msgstr "{Tipo de datos} mcron-configuration" #. type: node -#: guix-git/doc/guix.texi:37444 +#: guix-git/doc/guix.texi:37934 #, fuzzy, no-wrap #| msgid "Shepherd Services" msgid "Shepherd Home Service" msgstr "Servicios de Shepherd" #. type: subsection -#: guix-git/doc/guix.texi:37445 -#, no-wrap -msgid "Managing User's Daemons" +#: guix-git/doc/guix.texi:37935 +#, fuzzy, no-wrap +#| msgid "Messaging services." +msgid "Managing User Daemons" +msgstr "Servicios de mensajería." + +#. type: cindex +#: guix-git/doc/guix.texi:37937 +#, fuzzy, no-wrap +#| msgid "shepherd services" +msgid "shepherd services, for users" +msgstr "servicios de shepherd" + +#. type: Plain text +#: guix-git/doc/guix.texi:37944 +msgid "The @code{(gnu home services shepherd)} module supports the definitions of per-user Shepherd services (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}). You extend @code{home-shepherd-service-type} with new services; Guix Home then takes care of starting the @code{shepherd} daemon for you when you log in, which in turns starts the services you asked for." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37449 +#: guix-git/doc/guix.texi:37945 #, fuzzy, no-wrap #| msgid "{Scheme Variable} shepherd-root-service-type" msgid "{Scheme Variable} home-shepherd-service-type" msgstr "{Variable Scheme} shepherd-root-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37454 +#: guix-git/doc/guix.texi:37950 msgid "The service type for the userland Shepherd, which allows one to manage long-running processes or one-shot tasks. User's Shepherd is not an init process (PID 1), but almost all other information described in (@pxref{Shepherd Services}) is applicable here too." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37459 +#: guix-git/doc/guix.texi:37955 #, fuzzy msgid "This is the service type that extensions target when they want to create shepherd services (@pxref{Service Types and Services}, for an example). Each extension must pass a list of @code{}. Its value must be a @code{home-shepherd-configuration}, as described below." msgstr "El tipo de servicio que las extensiones declaran cuando desean crear servicios shepherd (@pxref{Service Types and Services}, para un ejemplo). Cada extensión debe pasar una lista de @code{}." #. type: deftp -#: guix-git/doc/guix.texi:37461 +#: guix-git/doc/guix.texi:37957 #, fuzzy, no-wrap msgid "{Data Type} home-shepherd-configuration" msgstr "{Tipo de datos} dhcpd-configuration" #. type: item -#: guix-git/doc/guix.texi:37468 +#: guix-git/doc/guix.texi:37964 #, fuzzy, no-wrap #| msgid "@code{auto-start?} (default: @code{#t})" msgid "auto-start? (default: @code{#t})" msgstr "@code{auto-start?} (predeterminado: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:37470 +#: guix-git/doc/guix.texi:37966 msgid "Whether or not to start Shepherd on first login." msgstr "" #. type: section -#: guix-git/doc/guix.texi:37479 +#: guix-git/doc/guix.texi:37975 #, fuzzy, no-wrap #| msgid "Invoking @code{guix system}" msgid "Invoking @code{guix home}" msgstr "Invocación de @code{guix system}" #. type: Plain text -#: guix-git/doc/guix.texi:37484 +#: guix-git/doc/guix.texi:37980 #, fuzzy #| msgid "Once you have written an operating system declaration as seen in the previous section, it can be @dfn{instantiated} using the @command{guix system} command. The synopsis is:" msgid "Once you have written a home environment declaration (@pxref{Declaring the Home Environment,,,,}, it can be @dfn{instantiated} using the @command{guix home} command. The synopsis is:" msgstr "Una vez haya escrito la declaración de sistema operativo como se ha visto en la sección previa, puede @dfn{instanciarse} mediante el uso de la orden @command{guix system}. Su sinopsis es:" #. type: example -#: guix-git/doc/guix.texi:37487 +#: guix-git/doc/guix.texi:37983 #, fuzzy, no-wrap #| msgid "guix system @var{options}@dots{} @var{action} @var{file}\n" msgid "guix home @var{options}@dots{} @var{action} @var{file}\n" msgstr "guix system @var{opciones}@dots{} @var{acción} @var{archivo}\n" #. type: Plain text -#: guix-git/doc/guix.texi:37494 +#: guix-git/doc/guix.texi:37990 #, fuzzy #| msgid "@var{file} must be the name of a file containing an @code{operating-system} declaration. @var{action} specifies how the operating system is instantiated. Currently the following values are supported:" msgid "@var{file} must be the name of a file containing a @code{home-environment} declaration. @var{action} specifies how the home environment is instantiated, but there are few auxiliary actions which don't instantiate it. Currently the following values are supported:" msgstr "@var{archivo} debe ser el nombre de un archivo que contenga una declaración @code{operating-system}. @var{acción} especifica cómo se instancia el sistema operativo. Actualmente se permiten los siguientes valores:" #. type: table -#: guix-git/doc/guix.texi:37499 +#: guix-git/doc/guix.texi:37995 #, fuzzy #| msgid "Display available service type definitions that match the given regular expressions, sorted by relevance:" msgid "Display available home service type definitions that match the given regular expressions, sorted by relevance:" msgstr "Muestra las definiciones de tipos de servicio disponibles que corresponden con las expresiones regulares proporcionadas, ordenadas por relevancia:" #. type: cindex -#: guix-git/doc/guix.texi:37501 +#: guix-git/doc/guix.texi:37997 #, fuzzy, no-wrap #| msgid "profile" msgid "shell-profile" msgstr "perfil" #. type: example -#: guix-git/doc/guix.texi:37513 +#: guix-git/doc/guix.texi:38008 #, no-wrap msgid "" "$ guix home search shell\n" "name: home-shell-profile\n" -"location: gnu/home/services/shells.scm:73:2\n" +"location: gnu/home/services/shells.scm:100:2\n" "extends: home-files\n" -"description: Create `~/.profile', which is used for environment initialization\n" -"+ of POSIX compatible login shells. Can be extended with a list of strings or\n" -"+ gexps.\n" +"description: Create `~/.profile', which is used for environment initialization of POSIX compliant login shells.\n" +"+ This service type can be extended with a list of file-like objects.\n" "relevance: 6\n" "\n" msgstr "" @@ -71925,34 +72968,7 @@ msgstr "" # FUZZY # TODO: Actualizar cuando se traduzca guix[-packages] #. type: example -#: guix-git/doc/guix.texi:37519 -#, fuzzy, no-wrap -#| msgid "" -#| "name: mingetty\n" -#| "location: gnu/services/base.scm:1190:2\n" -#| "extends: shepherd-root\n" -#| "description: Provide console login using the `mingetty' program.\n" -#| "relevance: 2\n" -#| "\n" -msgid "" -"name: home-zsh-plugin-manager\n" -"location: gnu/home/services/shellutils.scm:28:2\n" -"extends: home-zsh home-profile\n" -"description: Install plugins in profile and configure Zsh to load them.\n" -"relevance: 1\n" -"\n" -msgstr "" -"name: mingetty\n" -"location: gnu/services/base.scm:1190:2\n" -"extends: shepherd-root\n" -"description: Provide console login using the `mingetty' program.\n" -"relevance: 2\n" -"\n" - -# FUZZY -# TODO: Actualizar cuando se traduzca guix[-packages] -#. type: example -#: guix-git/doc/guix.texi:37526 +#: guix-git/doc/guix.texi:38014 #, fuzzy, no-wrap #| msgid "" #| "name: mingetty\n" @@ -71962,12 +72978,11 @@ msgstr "" #| "relevance: 2\n" #| "\n" msgid "" -"name: home-zsh-direnv\n" -"location: gnu/home/services/shellutils.scm:69:2\n" -"extends: home-profile home-zsh\n" -"description: Enables `direnv' for `zsh'. Adds hook to `.zshrc' and installs a\n" -"+ package in the profile.\n" -"relevance: 1\n" +"name: home-fish\n" +"location: gnu/home/services/shells.scm:640:2\n" +"extends: home-files home-profile\n" +"description: Install and configure Fish, the friendly interactive shell.\n" +"relevance: 3\n" "\n" msgstr "" "name: mingetty\n" @@ -71977,25 +72992,10 @@ msgstr "" "relevance: 2\n" "\n" -#. type: example -#: guix-git/doc/guix.texi:37535 -#, no-wrap -msgid "" -"name: home-zsh-autosuggestions\n" -"location: gnu/home/services/shellutils.scm:43:2\n" -"extends: home-zsh-plugin-manager home-zsh\n" -"description: Enables Fish-like fast/unobtrusive autosuggestions for `zsh' and\n" -"+ sets reasonable default values for some plugin's variables to improve perfomance\n" -"+ and adjust behavior: `(history completion)' is set for strategy, manual rebind\n" -"+ and async are enabled.\n" -"relevance: 1\n" -"\n" -msgstr "" - # FUZZY # TODO: Actualizar cuando se traduzca guix[-packages] #. type: example -#: guix-git/doc/guix.texi:37541 +#: guix-git/doc/guix.texi:38020 #, fuzzy, no-wrap #| msgid "" #| "name: mingetty\n" @@ -72006,7 +73006,7 @@ msgstr "" #| "\n" msgid "" "name: home-zsh\n" -"location: gnu/home/services/shells.scm:236:2\n" +"location: gnu/home/services/shells.scm:290:2\n" "extends: home-files home-profile\n" "description: Install and configure Zsh.\n" "relevance: 1\n" @@ -72022,7 +73022,7 @@ msgstr "" # FUZZY # TODO: Actualizar cuando se traduzca guix[-packages] #. type: example -#: guix-git/doc/guix.texi:37547 +#: guix-git/doc/guix.texi:38026 #, fuzzy, no-wrap #| msgid "" #| "name: mingetty\n" @@ -72033,9 +73033,9 @@ msgstr "" #| "\n" msgid "" "name: home-bash\n" -"location: gnu/home/services/shells.scm:388:2\n" +"location: gnu/home/services/shells.scm:508:2\n" "extends: home-files home-profile\n" -"description: Install and configure Bash.\n" +"description: Install and configure GNU Bash.\n" "relevance: 1\n" "\n" msgstr "" @@ -72047,48 +73047,55 @@ msgstr "" "\n" #. type: table -#: guix-git/doc/guix.texi:37563 -msgid "Build the home environment described in @var{file}, and switch to it. Switching means that the activation script will be evaluated and (in basic scenario) symlinks to configuration files generated from @code{home-environment} declaration will be created in @file{~}. If the file with the same path already exists in home folder it will be moved to @file{~/TIMESTAMP-guix-home-legacy-configs-backup}, where TIMESTAMP is a current UNIX epoch time." +#: guix-git/doc/guix.texi:38033 +#, fuzzy +#| msgid "As for @command{guix package --search}, the result is written in @code{recutils} format, which makes it easy to filter the output (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." +msgid "As for @command{guix search}, the result is written in @code{recutils} format, which makes it easy to filter the output (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." +msgstr "Como con @command{guix package --search}, el resultado se obtiene en formato @code{recutils}, lo que facilita el filtrado de la salida (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." + +#. type: table +#: guix-git/doc/guix.texi:38042 +msgid "Build the home environment described in @var{file}, and switch to it. Switching means that the activation script will be evaluated and (in basic scenario) symlinks to configuration files generated from @code{home-environment} declaration will be created in @file{~}. If the file with the same path already exists in home folder it will be moved to @file{~/@var{timestamp}-guix-home-legacy-configs-backup}, where @var{timestamp} is a current UNIX epoch time." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37568 +#: guix-git/doc/guix.texi:38047 #, fuzzy #| msgid "It is highly recommended to run @command{guix pull} once before you run @command{guix system reconfigure} for the first time (@pxref{Invoking guix pull}). Failing to do that you would see an older version of Guix once @command{reconfigure} has completed." msgid "It is highly recommended to run @command{guix pull} once before you run @command{guix home reconfigure} for the first time (@pxref{Invoking guix pull})." msgstr "Es altamente recomendable ejecutar @command{guix pull} antes de la primera ejecución de @command{guix system reconfigure} (@pxref{Invoking guix pull}). No hacerlo puede ocasionar que se obtenga una versión más antigua de Guix una vez que @command{reconfigure} se haya completado." #. type: table -#: guix-git/doc/guix.texi:37575 +#: guix-git/doc/guix.texi:38054 #, fuzzy #| msgid "This effects all the configuration specified in @var{file}: user accounts, system services, global package list, setuid programs, etc. The command starts system services specified in @var{file} that are not currently running; if a service is currently running this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop X} or @code{herd restart X})." -msgid "This effects all the configuration specified in @var{file}. The command starts Shepherd services specified in @var{file} that are not currently running; if a service is currently running, this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop X} or @code{herd restart X})." +msgid "This effects all the configuration specified in @var{file}. The command starts Shepherd services specified in @var{file} that are not currently running; if a service is currently running, this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop @var{service}} or @code{herd restart @var{service}})." msgstr "Lleva a efecto toda la configuración especificada en @var{archivo}: cuentas de usuaria, servicios del sistema, lista de paquetes global, programas con setuid, etc. La orden inicia los servicios del sistema especificados en @var{archivo} que no estén actualmente en ejecución; si un servicio se encuentra en ejecución esta orden prepara su actualización durante la próxima parada (por ejemplo, con @code{herd stop X} o @code{herd restart X})." # FUZZY #. type: table -#: guix-git/doc/guix.texi:37581 +#: guix-git/doc/guix.texi:38060 #, fuzzy #| msgid "This command creates a new generation whose number is one greater than the current generation (as reported by @command{guix system list-generations}). If that generation already exists, it will be overwritten. This behavior mirrors that of @command{guix package} (@pxref{Invoking guix package})." msgid "This command creates a new generation whose number is one greater than the current generation (as reported by @command{guix home list-generations}). If that generation already exists, it will be overwritten. This behavior mirrors that of @command{guix package} (@pxref{Invoking guix package})." msgstr "Esta orden crea una nueva generación cuyo número es el sucesor de la siguiente generación (como lo muestra @command{guix system list-generations}). Si esa generación ya existe, será sobreescrita. Este comportamiento es el mismo que el de @command{guix package} (@pxref{Invoking guix package})." #. type: cindex -#: guix-git/doc/guix.texi:37582 +#: guix-git/doc/guix.texi:38061 #, fuzzy, no-wrap #| msgid "provenance tracking, of the operating system" msgid "provenance tracking, of the home environment" msgstr "seguimiento de procedencia, del sistema operativo" #. type: table -#: guix-git/doc/guix.texi:37587 +#: guix-git/doc/guix.texi:38066 #, fuzzy #| msgid "Upon completion, the new system is deployed under @file{/run/current-system}. This directory contains @dfn{provenance meta-data}: the list of channels in use (@pxref{Channels}) and @var{file} itself, when available. You can view it by running:" msgid "Upon completion, the new home is deployed under @file{~/.guix-home}. This directory contains @dfn{provenance meta-data}: the list of channels in use (@pxref{Channels}) and @var{file} itself, when available. You can view the provenance information by running:" msgstr "Tras la finalización, el nuevo sistema se despliega en @file{/run/current-system}. Este directorio contiene @dfn{metadatos de procedencia}: la lista de canales usados (@pxref{Channels}) y el @var{archivo} en sí, cuando esté disponible. Puede visualizar dichos metadatos con la siguiente orden:" #. type: example -#: guix-git/doc/guix.texi:37590 +#: guix-git/doc/guix.texi:38069 #, fuzzy, no-wrap #| msgid "guix describe\n" msgid "guix home describe\n" @@ -72096,14 +73103,14 @@ msgstr "guix describe\n" # FUZZY FUZZY FUZZY #. type: table -#: guix-git/doc/guix.texi:37596 +#: guix-git/doc/guix.texi:38075 #, fuzzy #| msgid "This information is useful should you later want to inspect how this particular generation was built. In fact, assuming @var{file} is self-contained, you can later rebuild generation @var{n} of your operating system with:" msgid "This information is useful should you later want to inspect how this particular generation was built. In fact, assuming @var{file} is self-contained, you can later rebuild generation @var{n} of your home environment with:" msgstr "Esta información es útil en caso de que desee inspeccionar posteriormente cómo se construyó está generación en particular. De hecho, asumiendo que @var{archivo} es autocontenido, puede construir de nuevo la generación @var{n} de su sistema operativo con:" #. type: example -#: guix-git/doc/guix.texi:37602 +#: guix-git/doc/guix.texi:38081 #, fuzzy, no-wrap #| msgid "" #| "guix time-machine \\\n" @@ -72123,54 +73130,54 @@ msgstr "" " /var/guix/profiles/system-@var{n}-link/configuration.scm\n" #. type: table -#: guix-git/doc/guix.texi:37609 +#: guix-git/doc/guix.texi:38088 #, fuzzy #| msgid "You can think of it as some sort of built-in version control! Your system is not just a binary artifact: @emph{it carries its own source}. @xref{Service Reference, @code{provenance-service-type}}, for more information on provenance tracking." msgid "You can think of it as some sort of built-in version control! Your home is not just a binary artifact: @emph{it carries its own source}." msgstr "¡Puede pensar en ello como una especie de control de versiones incorporado en Guix! Su sistema no es únicamente un artefacto binario: @emph{transporta sus propias fuentes con él}. @xref{Service Reference, @code{provenance-service-type}}, para más información sobre el seguimiento de procedencia." #. type: cindex -#: guix-git/doc/guix.texi:37615 +#: guix-git/doc/guix.texi:38094 #, fuzzy, no-wrap #| msgid "generations" msgid "home generations" msgstr "generaciones" #. type: table -#: guix-git/doc/guix.texi:37618 +#: guix-git/doc/guix.texi:38097 msgid "Switch to an existing home generation. This action atomically switches the home profile to the specified home generation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37622 +#: guix-git/doc/guix.texi:38101 #, fuzzy #| msgid "The target generation can be specified explicitly by its generation number. For example, the following invocation would switch to system generation 7:" msgid "The target generation can be specified explicitly by its generation number. For example, the following invocation would switch to home generation 7:" msgstr "La generación deseada puede especificarse explícitamente con su numero de generación. Por ejemplo, la siguiente invocación cambiaría a la generación 7 del sistema:" #. type: example -#: guix-git/doc/guix.texi:37625 +#: guix-git/doc/guix.texi:38104 #, fuzzy, no-wrap #| msgid "guix system switch-generation 7\n" msgid "guix home switch-generation 7\n" msgstr "guix system switch-generation 7\n" #. type: example -#: guix-git/doc/guix.texi:37636 +#: guix-git/doc/guix.texi:38115 #, fuzzy, no-wrap #| msgid "guix system switch-generation -- -1\n" msgid "guix home switch-generation -- -1\n" msgstr "guix system switch-generation -- -1\n" #. type: table -#: guix-git/doc/guix.texi:37645 +#: guix-git/doc/guix.texi:38124 #, fuzzy #| msgid "Switch to the preceding system generation. The next time the system boots, it will use the preceding system generation. This is the inverse of @command{reconfigure}, and it is exactly the same as invoking @command{switch-generation} with an argument of @code{-1}." msgid "Switch to the preceding home generation. This is the inverse of @command{reconfigure}, and it is exactly the same as invoking @command{switch-generation} with an argument of @code{-1}." msgstr "Cambia a la generación de sistema previa. Tras el siguiente arranque del sistema, usará la generación de sistema precedente. Es la operación inversa de @command{reconfigure}, y es equivalente a la invocación de @command{switch-generation} con @code{-1} como parámetro." #. type: cindex -#: guix-git/doc/guix.texi:37647 +#: guix-git/doc/guix.texi:38126 #, fuzzy, no-wrap #| msgid "deleting system generations" msgid "deleting home generations" @@ -72178,82 +73185,82 @@ msgstr "borrado de generaciones del sistema" # FUZZY #. type: table -#: guix-git/doc/guix.texi:37652 +#: guix-git/doc/guix.texi:38131 #, fuzzy #| msgid "Delete system generations, making them candidates for garbage collection (@pxref{Invoking guix gc}, for information on how to run the ``garbage collector'')." msgid "Delete home generations, making them candidates for garbage collection (@pxref{Invoking guix gc}, for information on how to run the ``garbage collector'')." msgstr "Elimina generaciones del sistema, haciendo posible su recolección con la basura (@pxref{Invoking guix gc}, para información sobre como llevar a cabo la ``recolección de basura'')." #. type: table -#: guix-git/doc/guix.texi:37656 +#: guix-git/doc/guix.texi:38135 #, fuzzy #| msgid "This works in the same way as @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). With no arguments, all system generations but the current one are deleted:" msgid "This works in the same way as @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). With no arguments, all home generations but the current one are deleted:" msgstr "Esto funciona del mismo modo que @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). Sin parámetros, se eliminan todas las generaciones del sistema excepto la actual:" #. type: example -#: guix-git/doc/guix.texi:37659 +#: guix-git/doc/guix.texi:38138 #, fuzzy, no-wrap #| msgid "guix system delete-generations\n" msgid "guix home delete-generations\n" msgstr "guix system delete-generations\n" #. type: table -#: guix-git/doc/guix.texi:37663 +#: guix-git/doc/guix.texi:38142 #, fuzzy #| msgid "You can also select the generations you want to delete. The example below deletes all the system generations that are more than two month old:" msgid "You can also select the generations you want to delete. The example below deletes all the home generations that are more than two months old:" msgstr "También puede seleccionar las generaciones que desea eliminar. El siguiente ejemplo elimina todas las generaciones del sistema que tienen más de dos meses de antigüedad:" #. type: example -#: guix-git/doc/guix.texi:37666 +#: guix-git/doc/guix.texi:38145 #, fuzzy, no-wrap #| msgid "guix system delete-generations 2m\n" msgid "guix home delete-generations 2m\n" msgstr "guix system delete-generations 2m\n" #. type: table -#: guix-git/doc/guix.texi:37672 +#: guix-git/doc/guix.texi:38151 #, fuzzy #| msgid "Build the derivation of the operating system, which includes all the configuration files and programs needed to boot and run the system. This action does not actually install anything." msgid "Build the derivation of the home environment, which includes all the configuration files and programs needed. This action does not actually install anything." msgstr "Construye la derivación del sistema operativo, que incluye todos los archivos de configuración y programas necesarios para el arranque y la ejecución del sistema. Esta acción no instala nada en realidad." #. type: table -#: guix-git/doc/guix.texi:37676 +#: guix-git/doc/guix.texi:38155 #, fuzzy #| msgid "Describe the current system generation: its file name, the kernel and bootloader used, etc., as well as provenance information when available." msgid "Describe the current home generation: its file name, as well as provenance information when available." msgstr "Describe la generación actual del sistema: su nombre de archivo, el núcleo y el cargador de arranque usados, etcétera, así como información de procedencia cuando esté disponible." #. type: table -#: guix-git/doc/guix.texi:37682 +#: guix-git/doc/guix.texi:38161 #, fuzzy #| msgid "List a summary of each generation of the operating system available on disk, in a human-readable way. This is similar to the @option{--list-generations} option of @command{guix package} (@pxref{Invoking guix package})." msgid "List a summary of each generation of the home environment available on disk, in a human-readable way. This is similar to the @option{--list-generations} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "Muestra un resumen de cada generación del sistema operativo disponible en el disco, de manera legible por humanos. Es similar a la opción @option{--list-generations} de @command{guix package} (@pxref{Invoking guix package})." #. type: example -#: guix-git/doc/guix.texi:37690 +#: guix-git/doc/guix.texi:38169 #, fuzzy, no-wrap #| msgid "$ guix system list-generations 10d\n" msgid "$ guix home list-generations 10d\n" msgstr "$ guix system list-generations 10d\n" #. type: item -#: guix-git/doc/guix.texi:37692 +#: guix-git/doc/guix.texi:38171 #, fuzzy, no-wrap #| msgid "--import" msgid "import" msgstr "--import" #. type: table -#: guix-git/doc/guix.texi:37699 +#: guix-git/doc/guix.texi:38178 msgid "Generate a @dfn{home environment} from the packages in the default profile and configuration files found in the user's home directory. The configuration files will be copied to the specified directory, and a @file{home-configuration.scm} will be populated with the home environment. Note that not every home service that exists is supported (@pxref{Home Services})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:37703 +#: guix-git/doc/guix.texi:38182 #, no-wrap msgid "" "$ guix home import ~/guix-config\n" @@ -72261,55 +73268,67 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37718 +#: guix-git/doc/guix.texi:38197 #, fuzzy #| msgid "Consider the operating-system @var{expr} evaluates to. This is an alternative to specifying a file which evaluates to an operating system. This is used to generate the Guix system installer @pxref{Building the Installation Image})." msgid "Consider the home-environment @var{expr} evaluates to. This is an alternative to specifying a file which evaluates to a home environment." msgstr "Considera el sistema operativo al cual evalúa @var{expr}. Es una alternativa a la especificación de un archivo que evalúe a un sistema operativo. Se usa para la generación de la imagen de instalación de Guix (@pxref{Building the Installation Image})." +#. type: table +#: guix-git/doc/guix.texi:38200 +#, fuzzy +#| msgid "Instruct @command{guix system reconfigure} to allow system downgrades." +msgid "Instruct @command{guix home reconfigure} to allow system downgrades." +msgstr "Indica a @command{guix system reconfigure} que permita la instalación de versiones más antiguas." + +#. type: table +#: guix-git/doc/guix.texi:38207 +msgid "Just like @command{guix system}, @command{guix home reconfigure}, by default, prevents you from downgrading your home to older or unrelated revisions compared to the channel revisions that were used to deploy it---those shown by @command{guix home describe}. Using @option{--allow-downgrades} allows you to bypass that check, at the risk of downgrading your home---be careful!" +msgstr "" + #. type: cindex -#: guix-git/doc/guix.texi:37724 +#: guix-git/doc/guix.texi:38213 #, no-wrap msgid "documentation, searching for" msgstr "documentación, búsqueda" #. type: cindex -#: guix-git/doc/guix.texi:37725 +#: guix-git/doc/guix.texi:38214 #, no-wrap msgid "searching for documentation" msgstr "búsqueda de documentación" #. type: cindex -#: guix-git/doc/guix.texi:37726 +#: guix-git/doc/guix.texi:38215 #, no-wrap msgid "Info, documentation format" msgstr "Info, formato de documentación" #. type: cindex -#: guix-git/doc/guix.texi:37727 +#: guix-git/doc/guix.texi:38216 #, no-wrap msgid "man pages" msgstr "páginas man" #. type: cindex -#: guix-git/doc/guix.texi:37728 +#: guix-git/doc/guix.texi:38217 #, no-wrap msgid "manual pages" msgstr "páginas de manual" #. type: Plain text -#: guix-git/doc/guix.texi:37735 +#: guix-git/doc/guix.texi:38224 #, fuzzy msgid "In most cases packages installed with Guix come with documentation. There are two main documentation formats: ``Info'', a browsable hypertext format used for GNU software, and ``manual pages'' (or ``man pages''), the linear documentation format traditionally found on Unix. Info manuals are accessed with the @command{info} command or with Emacs, and man pages are accessed using @command{man}." msgstr "En la mayor parte de casos, los paquetes instalados con Guix contienen documentación. Hay dos formatos principales de documentación: ``Info'', un formato hipertextual navegable usado para software GNU, y ``páginas de manual'' (o ``páginas man''), la documentación lineal encontrada tradicionalmente en Unix. Se accede a los manuales Info con la orden @command{info} o con Emacs, y las páginas man con @command{man}." #. type: Plain text -#: guix-git/doc/guix.texi:37739 +#: guix-git/doc/guix.texi:38228 msgid "You can look for documentation of software installed on your system by keyword. For example, the following command searches for information about ``TLS'' in Info manuals:" msgstr "Puede buscar documentación de software instalado en su sistema por palabras clave. Por ejemplo, la siguiente orden busca información sobre ``TLS'' en manuales Info:" #. type: example -#: guix-git/doc/guix.texi:37747 +#: guix-git/doc/guix.texi:38236 #, no-wrap msgid "" "$ info -k TLS\n" @@ -72327,12 +73346,12 @@ msgstr "" "@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:37753 +#: guix-git/doc/guix.texi:38242 msgid "The command below searches for the same keyword in man pages@footnote{The database searched by @command{man -k} is only created in profiles that contain the @code{man-db} package.}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37759 +#: guix-git/doc/guix.texi:38248 #, no-wrap msgid "" "$ man -k TLS\n" @@ -72346,98 +73365,98 @@ msgstr "" "@dots {}\n" #. type: Plain text -#: guix-git/doc/guix.texi:37765 +#: guix-git/doc/guix.texi:38254 msgid "These searches are purely local to your computer so you have the guarantee that documentation you find corresponds to what you have actually installed, you can access it off-line, and your privacy is respected." msgstr "Estas búsquedas son completamente locales en su máquina de modo que tiene la garantía de que la documentación que encuentre corresponde con lo que está realmente instalado, puede acceder a ella sin conexión a la red, y se respeta su privacidad." #. type: Plain text -#: guix-git/doc/guix.texi:37768 +#: guix-git/doc/guix.texi:38257 msgid "Once you have these results, you can view the relevant documentation by running, say:" msgstr "Una vez tenga estos resultados, puede ver la documentación relevante mediante la ejecución de, digamos:" #. type: example -#: guix-git/doc/guix.texi:37771 +#: guix-git/doc/guix.texi:38260 #, no-wrap msgid "$ info \"(gnutls)Core TLS API\"\n" msgstr "$ info \"(gnutls)Core TLS API\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:37775 +#: guix-git/doc/guix.texi:38264 msgid "or:" msgstr "o:" #. type: example -#: guix-git/doc/guix.texi:37778 +#: guix-git/doc/guix.texi:38267 #, no-wrap msgid "$ man certtool\n" msgstr "$ man certtool\n" #. type: Plain text -#: guix-git/doc/guix.texi:37786 +#: guix-git/doc/guix.texi:38275 msgid "Info manuals contain sections and indices as well as hyperlinks like those found in Web pages. The @command{info} reader (@pxref{Top, Info reader,, info-stnd, Stand-alone GNU Info}) and its Emacs counterpart (@pxref{Misc Help,,, emacs, The GNU Emacs Manual}) provide intuitive key bindings to navigate manuals. @xref{Getting Started,,, info, Info: An Introduction}, for an introduction to Info navigation." msgstr "Los manuales Info contienen secciones e índices, así como enlaces como aquellos encontrados en páginas Web. El lector @command{info} (@pxref{Top, Info reader,, info-stnd, Stand-alone GNU Info}) y su contraparte en Emacs (@pxref{Misc Help,,, emacs, The GNU Emacs Manual}) proporcionan combinaciones de teclas intuitivas para la navegación en los manuales. @xref{Getting Started,,, info, Info: An Introduction}, para una introducción a la navegación en Info." #. type: cindex -#: guix-git/doc/guix.texi:37790 +#: guix-git/doc/guix.texi:38279 #, no-wrap msgid "debugging files" msgstr "archivos de depuración" #. type: Plain text -#: guix-git/doc/guix.texi:37796 +#: guix-git/doc/guix.texi:38285 msgid "Program binaries, as produced by the GCC compilers for instance, are typically written in the ELF format, with a section containing @dfn{debugging information}. Debugging information is what allows the debugger, GDB, to map binary code to source code; it is required to debug a compiled program in good conditions." msgstr "Los programas binarios, como los producidos por los compiladores GCC por ejemplo, se escriben típicamente en el formato ELF, con una sección que contiene @dfn{información de depuración}. La información de depuración es lo que permite que el depurador, GDB, asocie código binario a código fuente; es necesaria para depurar un programa compilado en condiciones adecuadas." #. type: Plain text -#: guix-git/doc/guix.texi:37800 +#: guix-git/doc/guix.texi:38289 msgid "This chapter explains how to use separate debug info when packages provide it, and how to rebuild packages with debug info when it's missing." msgstr "Este capítulo explica cómo usar la información de depuración separada cuando los paquetes la proporcionan, y cómo reconstruir paquetes con información de depuración cuando esta falte." #. type: Plain text -#: guix-git/doc/guix.texi:37816 +#: guix-git/doc/guix.texi:38305 #, fuzzy msgid "The problem with debugging information is that is takes up a fair amount of disk space. For example, debugging information for the GNU C Library weighs in at more than 60 MiB@. Thus, as a user, keeping all the debugging info of all the installed programs is usually not an option. Yet, space savings should not come at the cost of an impediment to debugging---especially in the GNU system, which should make it easier for users to exert their computing freedom (@pxref{GNU Distribution})." msgstr "El problema con la información de depuración es que ocupa un espacio considerable en el disco. Por ejemplo, la información de depuración de la biblioteca C de GNU ocupa más de 60 MiB. Por tanto, como usuaria, mantener toda la información de depuración de todos los programas instalados no es habitualmente una opción. No obstante, el ahorro de espacio no debe ser impedir la depuración---especialmente en el sistema GNU, que debería facilitar a sus usuarias ejercitar su libertad de computación (@pxref{GNU Distribution})." #. type: Plain text -#: guix-git/doc/guix.texi:37823 +#: guix-git/doc/guix.texi:38312 msgid "Thankfully, the GNU Binary Utilities (Binutils) and GDB provide a mechanism that allows users to get the best of both worlds: debugging information can be stripped from the binaries and stored in separate files. GDB is then able to load debugging information from those files, when they are available (@pxref{Separate Debug Files,,, gdb, Debugging with GDB})." msgstr "Afortunadamente, las utilidades binarias GNU (Binutils) y GDB proporcionan un mecanismo que permite a las usuarias obtener lo mejor de ambos mundos: la información de depuración puede extraerse de los binarios y almacenarse en archivos separados. GDB es capaz entonces de cargar la información de depuración desde esos archivos, cuando estén disponibles (@pxref{Separate Debug Files,,, gdb, Debugging with GDB})." #. type: Plain text -#: guix-git/doc/guix.texi:37831 +#: guix-git/doc/guix.texi:38320 msgid "The GNU distribution takes advantage of this by storing debugging information in the @code{lib/debug} sub-directory of a separate package output unimaginatively called @code{debug} (@pxref{Packages with Multiple Outputs}). Users can choose to install the @code{debug} output of a package when they need it. For instance, the following command installs the debugging information for the GNU C Library and for GNU Guile:" msgstr "La distribución GNU toma ventaja de este hecho almacenando la información de depuración en el subdirectorio @code{lib/debug} de una salida separada del paquete llamada @code{debug} (@pxref{Packages with Multiple Outputs}). Las usuarias pueden elegir si instalan la salida @code{debug} de un paquete cuando la necesitan. Por ejemplo, la siguiente orden instala la información de depuración para la biblioteca C de GNU y para GNU Guile." #. type: example -#: guix-git/doc/guix.texi:37834 +#: guix-git/doc/guix.texi:38323 #, no-wrap msgid "guix install glibc:debug guile:debug\n" msgstr "guix install glibc:debug guile:debug\n" #. type: Plain text -#: guix-git/doc/guix.texi:37840 +#: guix-git/doc/guix.texi:38329 msgid "GDB must then be told to look for debug files in the user's profile, by setting the @code{debug-file-directory} variable (consider setting it from the @file{~/.gdbinit} file, @pxref{Startup,,, gdb, Debugging with GDB}):" msgstr "Se debe decir entonces a GDB que busque los archivos de depuración en el perfil de la usuaria, proporcionando un valor a la variable @code{debug-file-directory} (considere hacerlo en el archivo @file{~/.gdbinit}, @pxref{Startup,,, gdb, Debugging with GDB}):" #. type: example -#: guix-git/doc/guix.texi:37843 +#: guix-git/doc/guix.texi:38332 #, no-wrap msgid "(gdb) set debug-file-directory ~/.guix-profile/lib/debug\n" msgstr "(gdb) set debug-file-directory ~/.guix-profile/lib/debug\n" #. type: Plain text -#: guix-git/doc/guix.texi:37847 +#: guix-git/doc/guix.texi:38336 msgid "From there on, GDB will pick up debugging information from the @file{.debug} files under @file{~/.guix-profile/lib/debug}." msgstr "A partir de ese momento GDB obtendrá la información de depuración de los archivos @file{.debug} dentro de la carpeta @file{~/.guix-profile/lib/debug}." #. type: Plain text -#: guix-git/doc/guix.texi:37852 +#: guix-git/doc/guix.texi:38341 msgid "Below is an alternative GDB script which is useful when working with other profiles. It takes advantage of the optional Guile integration in GDB. This snippet is included by default on Guix System in the @file{~/.gdbinit} file." msgstr "" #. type: example -#: guix-git/doc/guix.texi:37860 +#: guix-git/doc/guix.texi:38349 #, no-wrap msgid "" "guile\n" @@ -72449,32 +73468,32 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37868 +#: guix-git/doc/guix.texi:38357 msgid "In addition, you will most likely want GDB to be able to show the source code being debugged. To do that, you will have to unpack the source code of the package of interest (obtained with @code{guix build --source}, @pxref{Invoking guix build}), and to point GDB to that source directory using the @code{directory} command (@pxref{Source Path, @code{directory},, gdb, Debugging with GDB})." msgstr "Además, probablemente desee que GDB sea capaz de mostrar el código fuente que está depurando. Para hacerlo, tiene que desempaquetar el código fuente del paquete de su interés (obtenido con @code{guix build --source}, @pxref{Invoking guix build}) e indicar a GDB cual es el directorio de fuentes mediante el uso de la orden @code{directory} (@pxref{Source Path, @code{directory},, gdb, Debugging with GDB})." #. type: Plain text -#: guix-git/doc/guix.texi:37876 +#: guix-git/doc/guix.texi:38365 msgid "The @code{debug} output mechanism in Guix is implemented by the @code{gnu-build-system} (@pxref{Build Systems}). Currently, it is opt-in---debugging information is available only for the packages with definitions explicitly declaring a @code{debug} output. To check whether a package has a @code{debug} output, use @command{guix package --list-available} (@pxref{Invoking guix package})." msgstr "El mecanismo de la salida @code{debug} en Guix se implementa por el sistema de construcción @code{gnu-build-system} (@pxref{Build Systems}). Ahora mismo necesita una activación explícita---la información de depuración está disponible únicamente para paquetes con definiciones que declaren explícitamente una salida @code{debug}. Para comprobar si un paquete tiene una salida @code{debug}, use @command{guix package --list-available} (@pxref{Invoking guix package})." #. type: Plain text -#: guix-git/doc/guix.texi:37878 +#: guix-git/doc/guix.texi:38367 msgid "Read on for how to deal with packages lacking a @code{debug} output." msgstr "Siga leyendo para ver cómo tratar con paquetes que carezcan de la salida @code{debug}." #. type: Plain text -#: guix-git/doc/guix.texi:37890 +#: guix-git/doc/guix.texi:38379 msgid "As we saw above, some packages, but not all, provide debugging info in a @code{debug} output. What can you do when debugging info is missing? The @option{--with-debug-info} option provides a solution to that: it allows you to rebuild the package(s) for which debugging info is missing---and only those---and to graft those onto the application you're debugging. Thus, while it's not as fast as installing a @code{debug} output, it is relatively inexpensive." msgstr "Como vimos anteriormente, algunos paquetes, pero no todos, proporcionan información de depuración en una salida llamada @code{debug}. ¿Qué puede hacer cuando dicha información de depuración no está disponible? La opción @option{--with-debug-info} proporciona una solución para ello: le permite reconstruir uno o más paquetes para los que la información de depuración no esté disponible---y únicamente esos---e injertarlos en la aplicación que esté depurando. Por lo tanto, aunque no es tan rápido como instalar una salida @code{debug}, no tiene un coste elevado." #. type: Plain text -#: guix-git/doc/guix.texi:37895 +#: guix-git/doc/guix.texi:38384 msgid "Let's illustrate that. Suppose you're experiencing a bug in Inkscape and would like to see what's going on in GLib, a library that's deep down in its dependency graph. As it turns out, GLib does not have a @code{debug} output and the backtrace GDB shows is all sadness:" msgstr "Vamos a ilustrarlo con un ejemplo. Supongamos que está sufriendo un error en Inkscape y desearía que está pasando en GLib, una biblioteca que se encuentra enraizada profundamente en su grafo de dependencias. Además GLib no tiene una salida @code{debug} y la pila de llamadas que GDB muestra es completamente deprimente:" #. type: example -#: guix-git/doc/guix.texi:37906 +#: guix-git/doc/guix.texi:38395 #, no-wrap msgid "" "(gdb) bt\n" @@ -72498,17 +73517,17 @@ msgstr "" " at dl-init.c:118\n" #. type: Plain text -#: guix-git/doc/guix.texi:37910 +#: guix-git/doc/guix.texi:38399 msgid "To address that, you install Inkscape linked against a variant GLib that contains debug info:" msgstr "Para hacer frente a esta situación debe instalar Inkscape enlazado con una variante de GLib que contenga información de depuración:" #. type: Plain text -#: guix-git/doc/guix.texi:37916 +#: guix-git/doc/guix.texi:38405 msgid "This time, debugging will be a whole lot nicer:" msgstr "Esta vez la depuración será mucho más agradable:" #. type: example -#: guix-git/doc/guix.texi:37934 +#: guix-git/doc/guix.texi:38423 #, no-wrap msgid "" "$ gdb --args sh -c 'exec inkscape'\n" @@ -72546,28 +73565,28 @@ msgstr "" "@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:37937 +#: guix-git/doc/guix.texi:38426 msgid "Much better!" msgstr "¡Así mejor!" #. type: Plain text -#: guix-git/doc/guix.texi:37941 +#: guix-git/doc/guix.texi:38430 msgid "Note that there can be packages for which @option{--with-debug-info} will not have the desired effect. @xref{Package Transformation Options, @option{--with-debug-info}}, for more information." msgstr "Tenga en cuenta que puede haber paquetes en los que la opción @option{--with-debug-info} no tenga el efecto deseado. @xref{Package Transformation Options, @option{--with-debug-info}} para obtener más información." #. type: cindex -#: guix-git/doc/guix.texi:37945 +#: guix-git/doc/guix.texi:38434 #, no-wrap msgid "security updates" msgstr "actualizaciones de seguridad" #. type: Plain text -#: guix-git/doc/guix.texi:37954 +#: guix-git/doc/guix.texi:38443 msgid "Occasionally, important security vulnerabilities are discovered in software packages and must be patched. Guix developers try hard to keep track of known vulnerabilities and to apply fixes as soon as possible in the @code{master} branch of Guix (we do not yet provide a ``stable'' branch containing only security updates). The @command{guix lint} tool helps developers find out about vulnerable versions of software packages in the distribution:" msgstr "De manera ocasional, vulnerabilidades importantes de seguridad se descubren en los paquetes de software y deben aplicarse parches. Las desarrolladoras de Guix tratan de seguir las vulnerabilidades conocidas y aplicar parches tan pronto como sea posible en la rama @code{master} de Guix (todavía no proporcionamos una rama ``estable'' que contenga únicamente actualizaciones de seguridad). La herramienta @command{guix lint} ayuda a las desarrolladoras a encontrar versiones vulnerables de paquetes de software en la distribución:" #. type: smallexample -#: guix-git/doc/guix.texi:37961 +#: guix-git/doc/guix.texi:38450 #, no-wrap msgid "" "$ guix lint -c cve\n" @@ -72583,39 +73602,39 @@ msgstr "" "@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:37964 +#: guix-git/doc/guix.texi:38453 msgid "@xref{Invoking guix lint}, for more information." msgstr "@xref{Invoking guix lint}, para más información." #. type: Plain text -#: guix-git/doc/guix.texi:37973 +#: guix-git/doc/guix.texi:38462 msgid "Guix follows a functional package management discipline (@pxref{Introduction}), which implies that, when a package is changed, @emph{every package that depends on it} must be rebuilt. This can significantly slow down the deployment of fixes in core packages such as libc or Bash, since basically the whole distribution would need to be rebuilt. Using pre-built binaries helps (@pxref{Substitutes}), but deployment may still take more time than desired." msgstr "Guix sigue una disciplina funcional de gestión de paquetes (@pxref{Introduction}), lo que implica que, cuando se cambia un paquete, @emph{todos los paquetes que dependen de él} deben ser reconstruidos. Esto puede ralentizar de manera significativa el despliegue de correcciones en paquetes básicos como libc o Bash, ya que básicamente la distribución al completo debe reconstruirse. El uso de binarios preconstruidos ayuda (@pxref{Substitutes}), pero el despliegue aún puede tomar más tiempo del deseado." #. type: cindex -#: guix-git/doc/guix.texi:37974 +#: guix-git/doc/guix.texi:38463 #, no-wrap msgid "grafts" msgstr "injertos (grafts en inglés)" #. type: Plain text -#: guix-git/doc/guix.texi:37982 +#: guix-git/doc/guix.texi:38471 msgid "To address this, Guix implements @dfn{grafts}, a mechanism that allows for fast deployment of critical updates without the costs associated with a whole-distribution rebuild. The idea is to rebuild only the package that needs to be patched, and then to ``graft'' it onto packages explicitly installed by the user and that were previously referring to the original package. The cost of grafting is typically very low, and order of magnitudes lower than a full rebuild of the dependency chain." msgstr "Para afrontar esto, Guix implementa @dfn{injertos}, un mecanismo que permite un rápido despliegue de actualizaciones críticas sin los costes asociados con una reconstrucción completa de la distribución. La idea es reconstruir únicamente el paquete que hace falta parchear, y entonces ``injertarlo'' en los paquetes explícitamente instalados por la usuaria y que previamente hacían referencia al paquete original. El coste de realizar un injerto es menor que una reconstrucción completa de la cadena de dependencias." #. type: cindex -#: guix-git/doc/guix.texi:37983 +#: guix-git/doc/guix.texi:38472 #, no-wrap msgid "replacements of packages, for grafts" msgstr "reemplazos de paquetes, para injertos" #. type: Plain text -#: guix-git/doc/guix.texi:37989 +#: guix-git/doc/guix.texi:38478 msgid "For instance, suppose a security update needs to be applied to Bash. Guix developers will provide a package definition for the ``fixed'' Bash, say @code{bash-fixed}, in the usual way (@pxref{Defining Packages}). Then, the original package definition is augmented with a @code{replacement} field pointing to the package containing the bug fix:" msgstr "Por ejemplo, supongamos que es necesario incorporar una actualización de seguridad en Bash. Las desarrolladoras de Guix proporcionarán una definición de paquete para la versión ``corregida'' de Bash, digamos @code{bash-fixed}, de la manera habitual (@pxref{Defining Packages}). Una vez hecho, la definición original del paquete es aumentada con un campo @code{replacement} que apunta al paquete que contiene la corrección del error:" #. type: lisp -#: guix-git/doc/guix.texi:37996 +#: guix-git/doc/guix.texi:38485 #, no-wrap msgid "" "(define bash\n" @@ -72631,195 +73650,195 @@ msgstr "" " (replacement bash-fixed)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:38006 +#: guix-git/doc/guix.texi:38495 msgid "From there on, any package depending directly or indirectly on Bash---as reported by @command{guix gc --requisites} (@pxref{Invoking guix gc})---that is installed is automatically ``rewritten'' to refer to @code{bash-fixed} instead of @code{bash}. This grafting process takes time proportional to the size of the package, usually less than a minute for an ``average'' package on a recent machine. Grafting is recursive: when an indirect dependency requires grafting, then grafting ``propagates'' up to the package that the user is installing." msgstr "De ahí en adelante, cualquier paquete que dependa directa o indirectamente de Bash---como informa de ello @command{guix gc --requisites} (@pxref{Invoking guix gc})---que se instale se ``reescribe'' automáticamente para hacer referencia a @code{bash-fixed} en vez de @code{bash}. Este proceso de injerto toma un tiempo proporcional al tamaño del paquete, normalmente menos de un minuto para un paquete ``medio'' en una máquina reciente. El injertado es recursivo: cuando una dependencia indirecta requiere un injerto, el injerto se ``propagará'' hasta el paquete que la usuaria esté instalando." #. type: Plain text -#: guix-git/doc/guix.texi:38014 +#: guix-git/doc/guix.texi:38503 msgid "Currently, the length of the name and version of the graft and that of the package it replaces (@code{bash-fixed} and @code{bash} in the example above) must be equal. This restriction mostly comes from the fact that grafting works by patching files, including binary files, directly. Other restrictions may apply: for instance, when adding a graft to a package providing a shared library, the original shared library and its replacement must have the same @code{SONAME} and be binary-compatible." msgstr "Actualmente, la longitud del nombre y la versión del injerto y aquella del paquete que reemplaza (@var{bash-fixed} y @var{bash} en el ejemplo previo) debe ser igual. Esta restricción viene principalmente del hecho de que el injertado funciona mediante la aplicación de parches en archivos, incluyendo archivos binarios, directamente. Otras restricciones pueden ser aplicables: por ejemplo, durante la adición de un injerto a un paquete que proporciona una biblioteca compartida, la biblioteca compartida y su reemplazo deben tener el mismo @code{SONAME} y deben ser compatibles a nivel binario." #. type: Plain text -#: guix-git/doc/guix.texi:38018 +#: guix-git/doc/guix.texi:38507 msgid "The @option{--no-grafts} command-line option allows you to forcefully avoid grafting (@pxref{Common Build Options, @option{--no-grafts}}). Thus, the command:" msgstr "La opción de línea de órdenes @option{--no-grafts} le permite anular voluntariamente el proceso de injerto (@pxref{Common Build Options, @option{--no-grafts}}). Por tanto, la orden:" #. type: example -#: guix-git/doc/guix.texi:38021 +#: guix-git/doc/guix.texi:38510 #, no-wrap msgid "guix build bash --no-grafts\n" msgstr "guix build bash --no-grafts\n" #. type: Plain text -#: guix-git/doc/guix.texi:38025 +#: guix-git/doc/guix.texi:38514 msgid "returns the store file name of the original Bash, whereas:" msgstr "devuelve el nombre de archivo del almacén de la versión original de Bash, mientras que:" #. type: example -#: guix-git/doc/guix.texi:38028 +#: guix-git/doc/guix.texi:38517 #, no-wrap msgid "guix build bash\n" msgstr "guix build bash\n" #. type: Plain text -#: guix-git/doc/guix.texi:38033 +#: guix-git/doc/guix.texi:38522 msgid "returns the store file name of the ``fixed'', replacement Bash. This allows you to distinguish between the two variants of Bash." msgstr "devuelve el nombre de archivo del almacén de la versión ``corregida'', reemplazo de Bash. Esto le permite distinguir entre las dos variantes de Bash." #. type: Plain text -#: guix-git/doc/guix.texi:38036 +#: guix-git/doc/guix.texi:38525 msgid "To verify which Bash your whole profile refers to, you can run (@pxref{Invoking guix gc}):" msgstr "Para verificar a qué Bash hace referencia su perfil al completo, puede ejecutar (@pxref{Invoking guix gc}):" #. type: example -#: guix-git/doc/guix.texi:38039 +#: guix-git/doc/guix.texi:38528 #, fuzzy, no-wrap msgid "guix gc -R $(readlink -f ~/.guix-profile) | grep bash\n" msgstr "guix gc -R `readlink -f ~/.guix-profile` | grep bash\n" #. type: Plain text -#: guix-git/doc/guix.texi:38044 +#: guix-git/doc/guix.texi:38533 msgid "@dots{} and compare the store file names that you get with those above. Likewise for a complete Guix system generation:" msgstr "@dots{} y compare los nombres de archivo del almacén que obtendrá con los ejemplos previos. Del mismo modo, para una generación completa del sistema Guix:" #. type: example -#: guix-git/doc/guix.texi:38047 +#: guix-git/doc/guix.texi:38536 #, fuzzy, no-wrap msgid "guix gc -R $(guix system build my-config.scm) | grep bash\n" msgstr "guix gc -R `guix system build mi-configuración.scm` | grep bash\n" #. type: Plain text -#: guix-git/doc/guix.texi:38051 +#: guix-git/doc/guix.texi:38540 msgid "Lastly, to check which Bash running processes are using, you can use the @command{lsof} command:" msgstr "Por último, para comprobar qué versión de Bash están usando los procesos en ejecución, puede usar la orden @command{lsof}:" #. type: example -#: guix-git/doc/guix.texi:38054 +#: guix-git/doc/guix.texi:38543 #, no-wrap msgid "lsof | grep /gnu/store/.*bash\n" msgstr "lsof | grep /gnu/store/.*bash\n" #. type: cindex -#: guix-git/doc/guix.texi:38062 +#: guix-git/doc/guix.texi:38551 #, no-wrap msgid "bootstrapping" msgstr "lanzamiento inicial" #. type: Plain text -#: guix-git/doc/guix.texi:38069 +#: guix-git/doc/guix.texi:38558 #, fuzzy msgid "Bootstrapping in our context refers to how the distribution gets built ``from nothing''. Remember that the build environment of a derivation contains nothing but its declared inputs (@pxref{Introduction}). So there's an obvious chicken-and-egg problem: how does the first package get built? How does the first compiler get compiled?" msgstr "El lanzamiento inicial en nuestro contexto hace referencia a cómo la distribución se construye ``de la nada''. Recuerde que el entorno de construcción de una derivación no contiene más que sus entradas declaradas (@pxref{Introduction}). Por lo que hay un evidente problema ``del huevo y la gallina'': ¿cómo se construye el primer paquete? ¿Cómo se compila el primer compilador? Fíjese que esta es una cuestión de interés únicamente para la hacker curiosa, no para la usuaria normal, así que puede pasar por encima está sección sin ninguna vergüenza si se considera una ``usuaria normal''." #. type: Plain text -#: guix-git/doc/guix.texi:38077 +#: guix-git/doc/guix.texi:38566 msgid "It is tempting to think of this question as one that only die-hard hackers may care about. However, while the answer to that question is technical in nature, its implications are wide-ranging. How the distribution is bootstrapped defines the extent to which we, as individuals and as a collective of users and hackers, can trust the software we run. It is a central concern from the standpoint of @emph{security} and from a @emph{user freedom} viewpoint." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:38078 guix-git/doc/guix.texi:38290 +#: guix-git/doc/guix.texi:38567 guix-git/doc/guix.texi:38779 #, no-wrap msgid "bootstrap binaries" msgstr "binarios del lanzamiento inicial" #. type: Plain text -#: guix-git/doc/guix.texi:38088 +#: guix-git/doc/guix.texi:38577 msgid "The GNU system is primarily made of C code, with libc at its core. The GNU build system itself assumes the availability of a Bourne shell and command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and `grep'. Furthermore, build programs---programs that run @code{./configure}, @code{make}, etc.---are written in Guile Scheme (@pxref{Derivations}). Consequently, to be able to build anything at all, from scratch, Guix relies on pre-built binaries of Guile, GCC, Binutils, libc, and the other packages mentioned above---the @dfn{bootstrap binaries}." msgstr "El sistema GNU está compuesto principalmente de código C, con libc en su base. El sistema de construcción GNU en sí asume la disponibilidad del shell Bourne y las herramientas de línea de órdenes proporcionadas por GNU Coreutils, Awk, Findutils, `sed' y `grep'. Además, los programas de construcción---programas que ejecutan @code{./configure}, @code{make}, etc.---están escritos en Scheme Guile (@pxref{Derivations}). Consecuentemente, para ser capaz de construir cualquier cosa, desde cero, Guix depende en binarios preconstruidos de Guile, GCC, Binutils, libc y otros paquetes mencionados anteriormente---los @dfn{binarios del lanzamiento inicial}." #. type: Plain text -#: guix-git/doc/guix.texi:38092 +#: guix-git/doc/guix.texi:38581 msgid "These bootstrap binaries are ``taken for granted'', though we can also re-create them if needed (@pxref{Preparing to Use the Bootstrap Binaries})." msgstr "Estos binarios del lanzamiento inicial se ``dan por supuestos'', aunque se pueden volver a crear en caso de ser necesario (@pxref{Preparing to Use the Bootstrap Binaries})." # FUZZY #. type: section -#: guix-git/doc/guix.texi:38099 +#: guix-git/doc/guix.texi:38588 #, no-wrap msgid "The Reduced Binary Seed Bootstrap" msgstr "El lanzamiento inicial a partir de la semilla binaria reducida" #. type: Plain text -#: guix-git/doc/guix.texi:38106 +#: guix-git/doc/guix.texi:38595 msgid "Guix---like other GNU/Linux distributions---is traditionally bootstrapped from a set of bootstrap binaries: Bourne shell, command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and `grep' and Guile, GCC, Binutils, and the GNU C Library (@pxref{Bootstrapping}). Usually, these bootstrap binaries are ``taken for granted.''" msgstr "Guix---al igual que otras distribuciones de GNU/Linux---se lanza inicialmente desde un conjunto de binarios de manera tradicional: un shell Bourne, herramientas de línea de órdenes que proporcionan GNU Coreutils, Awk, Findutils, `sed' y `grep' y Guile, GCC, Binutils y la biblioteca de C de GNU (@pxref{Bootstrapping}). Habitualmente dichos binarios se ``dan por hecho''. " #. type: Plain text -#: guix-git/doc/guix.texi:38112 +#: guix-git/doc/guix.texi:38601 msgid "Taking the bootstrap binaries for granted means that we consider them to be a correct and trustworthy ``seed'' for building the complete system. Therein lies a problem: the combined size of these bootstrap binaries is about 250MB (@pxref{Bootstrappable Builds,,, mes, GNU Mes}). Auditing or even inspecting these is next to impossible." msgstr "El dar por hecho estos binarios significa que consideramos que son una ``semilla'' correcta y fiable para la construcción del sistema completo. En esta asunción yace un problema: el tamaño combinado de dichos binarios necesarios para el lanzamiento inicial es de alrededor de 250MB (@pxref{Bootstrappable Builds,,, mes, GNU Mes}). Auditar o incluso la inspeccionar de dichos binarios es prácticamente imposible." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:38117 +#: guix-git/doc/guix.texi:38606 msgid "For @code{i686-linux} and @code{x86_64-linux}, Guix now features a ``Reduced Binary Seed'' bootstrap @footnote{We would like to say: ``Full Source Bootstrap'' and while we are working towards that goal it would be hyperbole to use that term for what we do now.}." msgstr "En @code{i686-linux} y @code{x86_64-linux}, Guix basa su lanzamiento inicial en una ``semilla binaria reducida''@footnote{Nos gustaría decir: ``lanzamiento inicial completamente desde las fuentes'' pero, aunque estamos trabajando por alcanzar ese objetivo, sería una hipérbole usar dicho término para describir el proceso que seguimos en la actualidad.}." #. type: Plain text -#: guix-git/doc/guix.texi:38123 +#: guix-git/doc/guix.texi:38612 msgid "The Reduced Binary Seed bootstrap removes the most critical tools---from a trust perspective---from the bootstrap binaries: GCC, Binutils and the GNU C Library are replaced by: @code{bootstrap-mescc-tools} (a tiny assembler and linker) and @code{bootstrap-mes} (a small Scheme Interpreter and a C compiler written in Scheme and the Mes C Library, built for TinyCC and for GCC)." msgstr "El lanzamiento inicial basado en la semilla binaria reducida elimina las herramientas más críticas---desde una perspectiva de confianza---de los binarios del lanzamiento inicial: GCC, Binutils y la biblioteca de C de GNU se sustituyen por: @code{bootstrap-mescc-tools} (un pequeño ensamblador y enlazador) y @code{bootstrap-mes} (un pequeño intérprete de Scheme, un compilador de C escrito en Scheme y la biblioteca de C de Mes, construida para TinyCC y para GCC)." #. type: Plain text -#: guix-git/doc/guix.texi:38128 +#: guix-git/doc/guix.texi:38617 msgid "Using these new binary seeds the ``missing'' Binutils, GCC, and the GNU C Library are built from source. From here on the more traditional bootstrap process resumes. This approach has reduced the bootstrap binaries in size to about 145MB in Guix v1.1." msgstr "Mediante el uso de estas nuevas semillas binarias, los paquetes Binutils, GCC, y la biblioteca de C de GNU ``que faltan'' se construyen desde las fuentes. De aquí en adelante se prosigue con el proceso del lanzamiento inicial más tradicional. Esta aproximación redujo el tamaño de los binarios del lanzamiento inicial a cerca de 145MB en la versión 1.1 de Guix." #. type: Plain text -#: guix-git/doc/guix.texi:38136 +#: guix-git/doc/guix.texi:38625 msgid "The next step that Guix has taken is to replace the shell and all its utilities with implementations in Guile Scheme, the @emph{Scheme-only bootstrap}. Gash (@pxref{Gash,,, gash, The Gash manual}) is a POSIX-compatible shell that replaces Bash, and it comes with Gash Utils which has minimalist replacements for Awk, the GNU Core Utilities, Grep, Gzip, Sed, and Tar. The rest of the bootstrap binary seeds that were removed are now built from source." msgstr "El siguiente paso que Guix ha tomado es sustituir el intérprete de órdenes y sus utilidades con implementaciones en el dialecto Guile de Scheme, el @emph{lanzamiento inicial basado únicamente en Scheme}. Gash (@pxref{Gash,,, gash, The Gash manual}) es un intérprete de órdenes compatible con POSIX que sustituye a Bash, y viene con Gash Utils que contiene reemplazos minimalistas de Awk, las GNU Core Utilities, Grep, Gzip, Sed y Tar. El resto de semillas binarias del lanzamiento inicial que se han eliminado se construyen ahora desde las fuentes." #. type: Plain text -#: guix-git/doc/guix.texi:38146 +#: guix-git/doc/guix.texi:38635 #, fuzzy msgid "Building the GNU System from source is currently only possible by adding some historical GNU packages as intermediate steps@footnote{Packages such as @code{gcc-2.95.3}, @code{binutils-2.14}, @code{glibc-2.2.5}, @code{gzip-1.2.4}, @code{tar-1.22}, and some others. For details, see @file{gnu/packages/commencement.scm}.}. As Gash and Gash Utils mature, and GNU packages become more bootstrappable again (e.g., new releases of GNU Sed will also ship as gzipped tarballs again, as alternative to the hard to bootstrap @code{xz}-compression), this set of added packages can hopefully be reduced again." msgstr "La construcción del sistema GNU desde las fuentes es actualmente únicamente posible añadiendo algunos paquetes históricos de GNU como pasos intermedios@footnote{Paquetes como @code{gcc-2.95.3}, @code{binutils-2.14}, @code{glibc-2.2.5}, @code{gzip-1.2.4}, @code{tar-1.22}, y algunos otros. Para obtener más detalles véase @file{gnu/packages/commencement.scm}.}. Si Gash y sus utilidades maduran, y los paquetes de GNU vuelven a ser más fáciles de lanzar de manera inicial (por ejemplo, las nuevas entregas de GNU Sed también incluyen de nuevo archivadores comprimidos con gzip, como alternativa a la compresión @code{xz} que es más difícil de lanzar inicialmente), esperemos que este conjunto agregado de paquetes pueda reducirse más aún otra vez." #. type: Plain text -#: guix-git/doc/guix.texi:38150 +#: guix-git/doc/guix.texi:38639 msgid "The graph below shows the resulting dependency graph for @code{gcc-core-mesboot0}, the bootstrap compiler used for the traditional bootstrap of the rest of the Guix System." msgstr "A continuación se encuentra el grafo de dependencias generado para @code{gcc-core-mesboot0}, el compilador del lanzamiento inicial usado para el lanzamiento inicial tradicional del resto del sistema Guix." #. type: Plain text -#: guix-git/doc/guix.texi:38153 +#: guix-git/doc/guix.texi:38642 msgid "@image{images/gcc-core-mesboot0-graph,6in,,Dependency graph of gcc-core-mesboot0}" msgstr "@image{images/gcc-core-mesboot0-graph,6in,,Grafo de dependencias de gcc-core-mesboot0}" #. type: Plain text -#: guix-git/doc/guix.texi:38160 +#: guix-git/doc/guix.texi:38649 #, fuzzy msgid "The only significant binary bootstrap seeds that remain@footnote{ Ignoring the 68KB @code{mescc-tools}; that will be removed later, together with @code{mes}.} are a Scheme interpreter and a Scheme compiler: GNU Mes and GNU Guile@footnote{Not shown in this graph are the static binaries for @file{bash}, @code{tar}, and @code{xz} that are used to get Guile running.}." msgstr "La única semilla binaria del lanzamiento inicial que queda@footnote{Ignorando los 68KB de @code{mescc-tools}; que se eliminará más adelante, junto a @code{mes}.} son un intérprete de Scheme y un compilador de Scheme: GNU Mes y GNU Guile@footnote{En este grafo no se muestran los binarios estáticos para @file{bash}, @code{tar}, y @code{xz} que se usan para hacer que Guile pueda funcionar.}." #. type: Plain text -#: guix-git/doc/guix.texi:38163 +#: guix-git/doc/guix.texi:38652 msgid "This further reduction has brought down the size of the binary seed to about 60MB for @code{i686-linux} and @code{x86_64-linux}." msgstr "Esta reducción adicional ha llevado el tamaño de la semilla de binarios inicial a cerca de los 60MB para @code{i686-linux} y @code{x86_64-linux}." #. type: Plain text -#: guix-git/doc/guix.texi:38168 +#: guix-git/doc/guix.texi:38657 msgid "Work is ongoing to remove all binary blobs from our free software bootstrap stack, working towards a Full Source Bootstrap. Also ongoing is work to bring these bootstraps to the @code{arm-linux} and @code{aarch64-linux} architectures and to the Hurd." msgstr "Se está trabajando en eliminar todos los binarios de nuestra pila de software libre del lanzamiento inicial, en pos de un lanzamiento inicial basado completamente en fuentes. También se está trabajando en proporcionar estos lanzamientos iniciales a las arquitecturas @code{arm-linux} y @code{aarch64-linux} y a Hurd." #. type: Plain text -#: guix-git/doc/guix.texi:38172 +#: guix-git/doc/guix.texi:38661 msgid "If you are interested, join us on @samp{#bootstrappable} on the Freenode IRC network or discuss on @email{bug-mes@@gnu.org} or @email{gash-devel@@nongnu.org}." msgstr "Si tiene interés, puede unirse a @samp{#bootstrappable} en la red de IRC de Freenode o participar en las discusiones a través de @email{bug-mes@@gnu.org} o @email{gash-devel@@nongnu.org}." #. type: Plain text -#: guix-git/doc/guix.texi:38179 +#: guix-git/doc/guix.texi:38668 msgid "@image{images/bootstrap-graph,6in,,Dependency graph of the early bootstrap derivations}" msgstr "@image{images/bootstrap-graph,6in,,Grafo de dependencias de las derivaciones del lanzamiento inicial temprano}" #. type: Plain text -#: guix-git/doc/guix.texi:38184 +#: guix-git/doc/guix.texi:38673 msgid "The figure above shows the very beginning of the dependency graph of the distribution, corresponding to the package definitions of the @code{(gnu packages bootstrap)} module. A similar figure can be generated with @command{guix graph} (@pxref{Invoking guix graph}), along the lines of:" msgstr "La figura previa muestra el auténtico inicio del grafo de dependencias de la distribución, correspondiente a las definiciones de paquete del módulo @code{(gnu packages bootstrap)}. Un gráfico similar puede generarse con @command{guix graph} (@pxref{Invoking guix graph}), más o menos así:" #. type: example -#: guix-git/doc/guix.texi:38189 +#: guix-git/doc/guix.texi:38678 #, no-wrap msgid "" "guix graph -t derivation \\\n" @@ -72832,12 +73851,12 @@ msgstr "" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:38192 +#: guix-git/doc/guix.texi:38681 msgid "or, for the further Reduced Binary Seed bootstrap" msgstr "o, para la semilla binaria aún más reducida del lanzamiento inicial" #. type: example -#: guix-git/doc/guix.texi:38197 +#: guix-git/doc/guix.texi:38686 #, no-wrap msgid "" "guix graph -t derivation \\\n" @@ -72849,43 +73868,43 @@ msgstr "" " | dot -Tps > mes.ps\n" #. type: Plain text -#: guix-git/doc/guix.texi:38206 +#: guix-git/doc/guix.texi:38695 msgid "At this level of detail, things are slightly complex. First, Guile itself consists of an ELF executable, along with many source and compiled Scheme files that are dynamically loaded when it runs. This gets stored in the @file{guile-2.0.7.tar.xz} tarball shown in this graph. This tarball is part of Guix's ``source'' distribution, and gets inserted into the store with @code{add-to-store} (@pxref{The Store})." msgstr "En este nivel de detalle, las cosas son ligeramente complejas. Primero, Guile en sí consiste en un ejecutable ELF, junto a muchas fuentes y archivos compilados Scheme que se cargan dinámicamente durante la ejecución. Esto se almacena en el archivador tar @file{guile-2.0.7.tar.xz} mostrado en este grafo. Este archivador es parte de la distribución de ``fuentes'' de Guix, y se inserta en el almacén con @code{add-to-store} (@pxref{The Store})." #. type: Plain text -#: guix-git/doc/guix.texi:38215 +#: guix-git/doc/guix.texi:38704 msgid "But how do we write a derivation that unpacks this tarball and adds it to the store? To solve this problem, the @code{guile-bootstrap-2.0.drv} derivation---the first one that gets built---uses @code{bash} as its builder, which runs @code{build-bootstrap-guile.sh}, which in turn calls @code{tar} to unpack the tarball. Thus, @file{bash}, @file{tar}, @file{xz}, and @file{mkdir} are statically-linked binaries, also part of the Guix source distribution, whose sole purpose is to allow the Guile tarball to be unpacked." msgstr "¿Pero cómo escribimos una derivación que extraiga este archivador y lo añada al almacén? Para resolver este problema, la derivación @code{guile-bootstrap-2.0.drv}---la primera en construirse---usa @code{bash} como su constructor, que ejecuta @code{build-bootstrap-guile.sh}, que a su vez llama a @code{tar} para extraer el archivador. Por tanto, @file{bash}, @file{tar}, @file{xz} y @file{mkdir} son binarios enlazados estáticamente, también parte de la distribución de fuentes de Guix, cuyo único propósito es permitir la extracción del archivador de Guile." #. type: Plain text -#: guix-git/doc/guix.texi:38227 +#: guix-git/doc/guix.texi:38716 msgid "Once @code{guile-bootstrap-2.0.drv} is built, we have a functioning Guile that can be used to run subsequent build programs. Its first task is to download tarballs containing the other pre-built binaries---this is what the @file{.tar.xz.drv} derivations do. Guix modules such as @code{ftp-client.scm} are used for this purpose. The @code{module-import.drv} derivations import those modules in a directory in the store, using the original layout. The @code{module-import-compiled.drv} derivations compile those modules, and write them in an output directory with the right layout. This corresponds to the @code{#:modules} argument of @code{build-expression->derivation} (@pxref{Derivations})." msgstr "Una vez que@code{guile-bootstrap-2.0.drv} se ha construido, tenemos un Guile funcional que se puede usar para ejecutar los programas de construcción siguientes. Su primera tarea es descargar los archivadores qu contienen los otros binarios preconstruidos---esto es lo que las derivaciones @file{.tar.xz.drv} hacen. Módulos Guix como @code{ftp-client.scm} se usan para este propósito. Las derivaciones @code{module-import.drv} importan esos módulos en un directorio del almacén, manteniendo la distribución de carpetas. Las derivaciones @code{module-import-compiled.drv} compilan esos módulos, y los escriben en un directorio con la distribución de carpetas correcta. Esto corresponde al parámetro @code{#:modules} de @code{build-expression->derivation} (@pxref{Derivations})." #. type: Plain text -#: guix-git/doc/guix.texi:38232 +#: guix-git/doc/guix.texi:38721 msgid "Finally, the various tarballs are unpacked by the derivations @code{gcc-bootstrap-0.drv}, @code{glibc-bootstrap-0.drv}, or @code{bootstrap-mes-0.drv} and @code{bootstrap-mescc-tools-0.drv}, at which point we have a working C tool chain." msgstr "Finalmente, los archivadores tar son extraídos por las derivaciones @code{gcc-bootstrap-0.drv}, @code{glibc-bootstrap-0.drv}, or @code{bootstrap-mes-0.drv} y @code{bootstrap-mescc-tools-0.drv}, hasta el punto en el que disponemos de una cadena de herramientas C funcional." #. type: unnumberedsec -#: guix-git/doc/guix.texi:38233 +#: guix-git/doc/guix.texi:38722 #, no-wrap msgid "Building the Build Tools" msgstr "Construcción de las herramientas de construcción" #. type: Plain text -#: guix-git/doc/guix.texi:38242 +#: guix-git/doc/guix.texi:38731 msgid "Bootstrapping is complete when we have a full tool chain that does not depend on the pre-built bootstrap tools discussed above. This no-dependency requirement is verified by checking whether the files of the final tool chain contain references to the @file{/gnu/store} directories of the bootstrap inputs. The process that leads to this ``final'' tool chain is described by the package definitions found in the @code{(gnu packages commencement)} module." msgstr "El lanzamiento inicial está completo cuando tenemos una cadena de herramientas completa que no depende en las herramientas preconstruidas del lanzamiento inicial descritas previamente. Este requisito de no-dependencia se verifica comprobando si los archivos de la cadena de herramientas final contienen referencias a directorios de @file{/gnu/store} de las entradas del lanzamiento. El proceso que lleva a esta cadena de herramientas ``final'' es descrito por las definiciones de paquetes encontradas en el módulo @code{(gnu packages commencement)}." #. type: Plain text -#: guix-git/doc/guix.texi:38249 +#: guix-git/doc/guix.texi:38738 msgid "The @command{guix graph} command allows us to ``zoom out'' compared to the graph above, by looking at the level of package objects instead of individual derivations---remember that a package may translate to several derivations, typically one derivation to download its source, one to build the Guile modules it needs, and one to actually build the package from source. The command:" msgstr "La orden @command{guix graph} nos permite ``distanciarnos'' en comparación con el grafo previo, mirando al nivel de objetos de paquetes en vez de derivaciones individuales---recuerde que un paquete puede traducirse en varias derivaciones, típicamente una derivación para descargar sus fuentes, una para construir los módulos Guile que necesita y uno para realmente construir el paquete de las fuentes. La orden:" #. type: example -#: guix-git/doc/guix.texi:38254 +#: guix-git/doc/guix.texi:38743 #, no-wrap msgid "" "guix graph -t bag \\\n" @@ -72897,172 +73916,267 @@ msgstr "" " glibc-final-with-bootstrap-bash)' | xdot -\n" #. type: Plain text -#: guix-git/doc/guix.texi:38261 +#: guix-git/doc/guix.texi:38750 msgid "displays the dependency graph leading to the ``final'' C library@footnote{You may notice the @code{glibc-intermediate} label, suggesting that it is not @emph{quite} final, but as a good approximation, we will consider it final.}, depicted below." msgstr "muestra el grafo de dependencias que lleva a la biblioteca C ``final''@footnote{Puede haberse dado cuenta de la etiqueta @code{glibc-intermediate}, sugiriendo que no es @emph{completamente} final, pero como es una buena aproximación, la consideraremos final.}, mostrado a continuación." #. type: Plain text -#: guix-git/doc/guix.texi:38263 +#: guix-git/doc/guix.texi:38752 msgid "@image{images/bootstrap-packages,6in,,Dependency graph of the early packages}" msgstr "@image{images/bootstrap-packages,6in,,Grafo de dependencias de los primeros paquetes}" #. type: Plain text -#: guix-git/doc/guix.texi:38269 +#: guix-git/doc/guix.texi:38758 msgid "The first tool that gets built with the bootstrap binaries is GNU@tie{}Make---noted @code{make-boot0} above---which is a prerequisite for all the following packages. From there Findutils and Diffutils get built." msgstr "La primera herramienta que se construye con los binarios del lanzamiento inicial es GNU@tie{}Make---marcado como @code{make-boot0} en el grafo---, que es un pre-requisito para todos los paquetes siguientes. Una vez hecho se construyen Findutils y Diffutils." #. type: Plain text -#: guix-git/doc/guix.texi:38274 +#: guix-git/doc/guix.texi:38763 msgid "Then come the first-stage Binutils and GCC, built as pseudo cross tools---i.e., with @option{--target} equal to @option{--host}. They are used to build libc. Thanks to this cross-build trick, this libc is guaranteed not to hold any reference to the initial tool chain." msgstr "Después viene la primera fase de Binutils y GCC, construidas como herramientas pseudo-cruzadas---es decir, con @option{--target} igual a @option{--host}. Se usan para construir libc. Gracias a este truco de compilación cruzada, se garantiza que esta libc no tendrá ninguna referencia a la cadena de herramientas inicial." #. type: Plain text -#: guix-git/doc/guix.texi:38280 +#: guix-git/doc/guix.texi:38769 msgid "From there the final Binutils and GCC (not shown above) are built. GCC uses @command{ld} from the final Binutils, and links programs against the just-built libc. This tool chain is used to build the other packages used by Guix and by the GNU Build System: Guile, Bash, Coreutils, etc." msgstr "Posteriormente se construyen las herramientas Binutils y GCC (no mostradas previamente) finales. GCC usa @command{ld} de la construcción final de Binutils y enlazan los programas contra la libc recién construía. Esta cadena de herramientas se usa para construir otros paquetes usados por Guix y el sistema de construcción GNU: Guile, Bash, Coreutils, etc." #. type: Plain text -#: guix-git/doc/guix.texi:38286 +#: guix-git/doc/guix.texi:38775 msgid "And voilà! At this point we have the complete set of build tools that the GNU Build System expects. These are in the @code{%final-inputs} variable of the @code{(gnu packages commencement)} module, and are implicitly used by any package that uses @code{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}})." msgstr "¡Y voilà! En este punto tenemos un conjunto completo de herramientas de construcción esperadas por el sistema de construcción GNU. Están en la variable @code{%final-inputs} del módulo @code{(gnu packages commencement)}, y se usan implícitamente por cualquier paquete que use @code{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}})." #. type: unnumberedsec -#: guix-git/doc/guix.texi:38288 +#: guix-git/doc/guix.texi:38777 #, no-wrap msgid "Building the Bootstrap Binaries" msgstr "Construir los binarios de lanzamiento" #. type: Plain text -#: guix-git/doc/guix.texi:38295 +#: guix-git/doc/guix.texi:38784 msgid "Because the final tool chain does not depend on the bootstrap binaries, those rarely need to be updated. Nevertheless, it is useful to have an automated way to produce them, should an update occur, and this is what the @code{(gnu packages make-bootstrap)} module provides." msgstr "Debido a que la cadena de herramientas final no depende de los binarios de lanzamiento, estos rara vez necesitan ser actualizados. No obstante, es útil tener una forma automatizada de producirlos en caso de que se dé una actualización, y esto es lo que proporciona el módulo @code{(gnu packages make-bootstrap)}." #. type: Plain text -#: guix-git/doc/guix.texi:38301 +#: guix-git/doc/guix.texi:38790 msgid "The following command builds the tarballs containing the bootstrap binaries (Binutils, GCC, glibc, for the traditional bootstrap and linux-libre-headers, bootstrap-mescc-tools, bootstrap-mes for the Reduced Binary Seed bootstrap, and Guile, and a tarball containing a mixture of Coreutils and other basic command-line tools):" msgstr "La siguiente orden construye los archivadores que contienen los binarios de lanzamiento (Binutils, GCC, glibc para el lanzamiento inicial tradicional y linux-libre-headers, bootstrap-mescc-tools y bootstrap-mes para el lanzamiento inicial basado en la semilla binaria reducida, y Guile y un archivador que contiene una mezcla de Coreutils y otras herramientas básicas de línea de órdenes):" #. type: example -#: guix-git/doc/guix.texi:38304 +#: guix-git/doc/guix.texi:38793 #, no-wrap msgid "guix build bootstrap-tarballs\n" msgstr "guix build bootstrap-tarballs\n" #. type: Plain text -#: guix-git/doc/guix.texi:38309 +#: guix-git/doc/guix.texi:38798 msgid "The generated tarballs are those that should be referred to in the @code{(gnu packages bootstrap)} module mentioned at the beginning of this section." msgstr "Los archivadores ``tar'' generados son aquellos a cuya referencia debe encontrarse en el módulo @code{(gnu packages bootstrap)} mencionado al inicio de esta sección." #. type: Plain text -#: guix-git/doc/guix.texi:38315 +#: guix-git/doc/guix.texi:38804 msgid "Still here? Then perhaps by now you've started to wonder: when do we reach a fixed point? That is an interesting question! The answer is unknown, but if you would like to investigate further (and have significant computational and storage resources to do so), then let us know." msgstr "¿Todavía aquí? Entonces quizá se habrá empezado a preguntar: ¿cuándo llegamos a un punto fijo? ¡Esa es una pregunta interesante! La respuesta es desconocida, pero si pudiese investigar más a fondo (y tiene unos recursos computacionales y de almacenamiento significativos para hacerlo) háganoslo saber." #. type: unnumberedsec -#: guix-git/doc/guix.texi:38316 +#: guix-git/doc/guix.texi:38805 #, no-wrap msgid "Reducing the Set of Bootstrap Binaries" msgstr "Reducción del conjunto de binarios de lanzamiento" #. type: Plain text -#: guix-git/doc/guix.texi:38324 +#: guix-git/doc/guix.texi:38813 msgid "Our traditional bootstrap includes GCC, GNU Libc, Guile, etc. That's a lot of binary code! Why is that a problem? It's a problem because these big chunks of binary code are practically non-auditable, which makes it hard to establish what source code produced them. Every unauditable binary also leaves us vulnerable to compiler backdoors as described by Ken Thompson in the 1984 paper @emph{Reflections on Trusting Trust}." msgstr "Nuestros binarios de lanzamiento actualmente incluyen GCC, GNU Libc, Guile, etc. ¡Eso es mucho código binario! ¿Por qué es eso un problema? Es un problema porque esos grandes fragmentos de código binario no son auditables en la práctica, lo que hace difícil establecer qué código fuente los produjo. Cada binario no-auditable también nos deja vulnerables a puertas traseras en los compiladores, como describió Ken Thompson en su publicación de 1984 @emph{Reflections on Trusting Trust}." #. type: Plain text -#: guix-git/doc/guix.texi:38330 +#: guix-git/doc/guix.texi:38819 msgid "This is mitigated by the fact that our bootstrap binaries were generated from an earlier Guix revision. Nevertheless it lacks the level of transparency that we get in the rest of the package dependency graph, where Guix always gives us a source-to-binary mapping. Thus, our goal is to reduce the set of bootstrap binaries to the bare minimum." msgstr "Esto se mitiga por el hecho de que nuestros binarios de lanzamiento fueron generados por una revisión anterior de Guix. No obstante, esto no posee el nivel de transparencia que obtenemos en el resto del grado de dependencias de los paquetes, donde Guix siempre nos da una asociación de fuente-a-binario. Por lo tanto, nuestro objetivo es reducir el conjunto de binarios de lanzamiento al mínimo posible." #. type: Plain text -#: guix-git/doc/guix.texi:38336 +#: guix-git/doc/guix.texi:38825 msgid "The @uref{https://bootstrappable.org, Bootstrappable.org web site} lists on-going projects to do that. One of these is about replacing the bootstrap GCC with a sequence of assemblers, interpreters, and compilers of increasing complexity, which could be built from source starting from a simple and auditable assembler." msgstr "El @uref{https://bootstrappable.org, sitio web Bootstrappable.org} enumera proyectos en activo realizándolo. Uno de ellos está a punto de sustituir el GCC de lanzamiento con una secuencia de ensambladores, interpretes y compiladores de complejidad incremental, que pueden ser construidos desde las fuentes empezando con un código ensamblador simple y auditable." # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:38345 +#: guix-git/doc/guix.texi:38834 msgid "Our first major achievement is the replacement of of GCC, the GNU C Library and Binutils by MesCC-Tools (a simple hex linker and macro assembler) and Mes (@pxref{Top, GNU Mes Reference Manual,, mes, GNU Mes}, a Scheme interpreter and C compiler in Scheme). Neither MesCC-Tools nor Mes can be fully bootstrapped yet and thus we inject them as binary seeds. We call this the Reduced Binary Seed bootstrap, as it has halved the size of our bootstrap binaries! Also, it has eliminated the C compiler binary; i686-linux and x86_64-linux Guix packages are now bootstrapped without any binary C compiler." msgstr "Nuestro primer logro de importancia es la sustitución de GCC, la biblioteca de C de GNU y Binutils por MesCC-Tools (un enlazador hexadecimal y un macro-ensamblador) y Mes (@pxref{Top, GNU Mes Reference Manual,, mes, GNU Mes}, un intérprete de Scheme y compilador de C en Scheme). Ni MesCC-Tools ni Mes pueden lanzarse inicialmente a sí mismas completamente todavía y por lo tanto se inyectan como semillas binarias. A esto es lo que llamamos la semilla binaria reducida del lanzamiento inicial, ¡ya que ha reducido a la mitad el tamaño de nuestros binarios del lanzamiento inicial! También ha eliminado el binario del compilador de C; los paquetes de Guix en i686-linux y x86_64-linux se generan a partir de un lanzamiento inicial sin ningún binario que sea un compilador de C." #. type: Plain text -#: guix-git/doc/guix.texi:38348 +#: guix-git/doc/guix.texi:38837 msgid "Work is ongoing to make MesCC-Tools and Mes fully bootstrappable and we are also looking at any other bootstrap binaries. Your help is welcome!" msgstr "Se está trabajando en hacer que MesCC-Tools y Mes puedan lanzarse inicialmente de manera completa, y también se buscan otros binarios para el lanzamiento inicial. ¡Su ayuda es bienvenida!" # FUZZY #. type: chapter -#: guix-git/doc/guix.texi:38350 +#: guix-git/doc/guix.texi:38839 #, no-wrap msgid "Porting to a New Platform" msgstr "Transportar a una nueva plataforma" # FUZZY #. type: Plain text -#: guix-git/doc/guix.texi:38359 +#: guix-git/doc/guix.texi:38848 msgid "As discussed above, the GNU distribution is self-contained, and self-containment is achieved by relying on pre-built ``bootstrap binaries'' (@pxref{Bootstrapping}). These binaries are specific to an operating system kernel, CPU architecture, and application binary interface (ABI). Thus, to port the distribution to a platform that is not yet supported, one must build those bootstrap binaries, and update the @code{(gnu packages bootstrap)} module to use them on that platform." msgstr "Como se explicó previamente, la distribución GNU es autocontenida, lo cual se consigue dependiendo de unos ``binarios del lanzamiento inicial'' preconstruidos (@pxref{Bootstrapping}). Estos binarios son específicos para un núcleo del sistema operativo, arquitectura de la CPU e interfaz binaria de aplicaciones (ABI). Por tanto, para transportar la distribución a una nueva plataforma que no está soportada todavía, se deben construir estos binarios del lanzamiento inicial, y actualizar el módulo @code{(gnu packages bootstrap)} para usarlos en dicha plataforma." #. type: Plain text -#: guix-git/doc/guix.texi:38364 +#: guix-git/doc/guix.texi:38853 msgid "Fortunately, Guix can @emph{cross compile} those bootstrap binaries. When everything goes well, and assuming the GNU tool chain supports the target platform, this can be as simple as running a command like this one:" msgstr "Por suerte, Guix puede @emph{compilar de forma cruzada} esos binarios del lanzamiento inicial. Cuando todo va bien, y asumiendo que la cadena de herramientas GNU soporta para la plataforma deseada, esto puede ser tan simple como ejecutar una orden así:" #. type: example -#: guix-git/doc/guix.texi:38367 +#: guix-git/doc/guix.texi:38856 #, no-wrap msgid "guix build --target=armv5tel-linux-gnueabi bootstrap-tarballs\n" msgstr "guix build --target=armv5tel-linux-gnueabi bootstrap-tarballs\n" #. type: Plain text -#: guix-git/doc/guix.texi:38374 +#: guix-git/doc/guix.texi:38863 msgid "For this to work, the @code{glibc-dynamic-linker} procedure in @code{(gnu packages bootstrap)} must be augmented to return the right file name for libc's dynamic linker on that platform; likewise, @code{system->linux-architecture} in @code{(gnu packages linux)} must be taught about the new platform." msgstr "Para que esto funcione, el procedimiento @code{glibc-dynamic-linker} en @code{(gnu packages bootstrap)} debe aumentarse para devolver el nombre de archivo correcto para el enlazador dinámico de libc en dicha plataforma; de igual manera, @code{system->linux-architecture} en @code{(gnu packages linux)} debe modificarse para la nueva plataforma." #. type: Plain text -#: guix-git/doc/guix.texi:38383 +#: guix-git/doc/guix.texi:38872 msgid "Once these are built, the @code{(gnu packages bootstrap)} module needs to be updated to refer to these binaries on the target platform. That is, the hashes and URLs of the bootstrap tarballs for the new platform must be added alongside those of the currently supported platforms. The bootstrap Guile tarball is treated specially: it is expected to be available locally, and @file{gnu/local.mk} has rules to download it for the supported architectures; a rule for the new platform must be added as well." msgstr "Una vez construidos, el módulo @code{(gnu packages bootstrap)} debe ser actualizado para hacer referencia a estos binarios en la plataforma deseada. Esto es, los hash y las URL de los archivadores del lanzamiento inicial de la nueva plataforma deben añadirse junto a aquellos de las plataformas disponibles actualmente. El archivador tar del Guile usado para el lanzamiento inicial se trata de forma especial: se espera que esté disponible localmente, y @file{gnu/local.mk} tiene reglas que lo descargan para las arquitecturas disponibles; se debe añadir una regla para la nueva plataforma también." #. type: Plain text -#: guix-git/doc/guix.texi:38392 +#: guix-git/doc/guix.texi:38881 msgid "In practice, there may be some complications. First, it may be that the extended GNU triplet that specifies an ABI (like the @code{eabi} suffix above) is not recognized by all the GNU tools. Typically, glibc recognizes some of these, whereas GCC uses an extra @option{--with-abi} configure flag (see @code{gcc.scm} for examples of how to handle this). Second, some of the required packages could fail to build for that platform. Lastly, the generated binaries could be broken for some reason." msgstr "En la práctica puede haber algunas complicaciones. Primero, puede ser que la tripleta extendida GNU que especifica un ABI (como el sufijo @code{eabi} previamente) no es reconocida por todas las herramientas GNU. Típicamente, glibc reconoce algunas de ellas, mientras que GCC usa una opción de configuración extra @option{--with-abi} (vea @code{gcc.scm} para ejemplos de como manejar este caso). En segundo lugar, algunos de los paquetes necesarios pueden fallar en su construcción para dicha plataforma. Por último, los binarios generados pueden estar defectuosos por alguna razón." #. type: include -#: guix-git/doc/guix.texi:38394 +#: guix-git/doc/guix.texi:38883 #, no-wrap msgid "contributing.texi" msgstr "contributing.es.texi" #. type: Plain text -#: guix-git/doc/guix.texi:38407 +#: guix-git/doc/guix.texi:38896 msgid "Guix is based on the @uref{https://nixos.org/nix/, Nix package manager}, which was designed and implemented by Eelco Dolstra, with contributions from other people (see the @file{nix/AUTHORS} file in Guix). Nix pioneered functional package management, and promoted unprecedented features, such as transactional package upgrades and rollbacks, per-user profiles, and referentially transparent build processes. Without this work, Guix would not exist." msgstr "Guix está basado en el @uref{https://nixos.org/nix/, gestor de paquetes Nix}, que fue diseñado e implementado por Eelco Dolstra, con contribuciones de otra gente (véase el archivo @file{nix/AUTHORS} en Guix). Nix fue pionero en la gestión de paquetes funcional, y promovió características sin precedentes, como las actualizaciones y reversiones de paquetes transaccionales, perfiles por usuaria y un proceso de compilación referencialmente transparente. Sin este trabajo, Guix no existiría." #. type: Plain text -#: guix-git/doc/guix.texi:38410 +#: guix-git/doc/guix.texi:38899 msgid "The Nix-based software distributions, Nixpkgs and NixOS, have also been an inspiration for Guix." msgstr "Las distribuciones de software basadas en Nix, Nixpkgs y NixOS, también han sido una inspiración para Guix." # TODO: (MAAV) ¿Fine people? #. type: Plain text -#: guix-git/doc/guix.texi:38416 +#: guix-git/doc/guix.texi:38905 msgid "GNU@tie{}Guix itself is a collective work with contributions from a number of people. See the @file{AUTHORS} file in Guix for more information on these fine people. The @file{THANKS} file lists people who have helped by reporting bugs, taking care of the infrastructure, providing artwork and themes, making suggestions, and more---thank you!" msgstr "GNU@tie{}Guix en sí es un trabajo colectivo con contribuciones de un número de gente. Mire el archivo @file{AUTHORS} en Guix para más información sobre esa gente maja. El archivo @file{THANKS} enumera personas que han ayudado informando de errores, se han encargado de infraestructura, han proporcionando arte y temas, han realizado sugerencias, y más---¡gracias!" #. type: cindex -#: guix-git/doc/guix.texi:38421 +#: guix-git/doc/guix.texi:38910 #, no-wrap msgid "license, GNU Free Documentation License" msgstr "licencia, GNU Free Documentation License" #. type: include -#: guix-git/doc/guix.texi:38422 +#: guix-git/doc/guix.texi:38911 #, no-wrap msgid "fdl-1.3.texi" msgstr "fdl-1.3.texi" +#~ msgid "{@code{zabbix-front-end-configuration} parameter} nginx-server-configuration-list nginx" +#~ msgstr "{parámetro de @code{zabbix-front-end-configuration}} lista-nginx-server-configuration nginx" + +#~ msgid "{@code{zabbix-front-end-configuration} parameter} string db-host" +#~ msgstr "{parámetro de @code{zabbix-front-end-configuration}} string db-host" + +#~ msgid "{@code{zabbix-front-end-configuration} parameter} number db-port" +#~ msgstr "{parámetro de @code{zabbix-front-end-configuration}} number db-port" + +#~ msgid "{@code{zabbix-front-end-configuration} parameter} string db-name" +#~ msgstr "{parámetro de @code{zabbix-front-end-configuration}} string db-name" + +#~ msgid "{@code{zabbix-front-end-configuration} parameter} string db-user" +#~ msgstr "{parámetro de @code{zabbix-front-end-configuration}} string db-user" + +#~ msgid "{@code{zabbix-front-end-configuration} parameter} string db-password" +#~ msgstr "{parámetro de @code{zabbix-front-end-configuration}} string db-password" + +#~ msgid "{@code{zabbix-front-end-configuration} parameter} string db-secret-file" +#~ msgstr "{parámetro de @code{zabbix-front-end-configuration}} string db-secret-file" + +#~ msgid "{@code{zabbix-front-end-configuration} parameter} string zabbix-host" +#~ msgstr "{parámetro de @code{zabbix-front-end-configuration}} string zabbix-host" + +#~ msgid "{@code{zabbix-front-end-configuration} parameter} number zabbix-port" +#~ msgstr "{parámetro de @code{zabbix-front-end-configuration}} number zabbix-port" + +#~ msgid "Defaults to @samp{10051}." +#~ msgstr "El valor predeterminado es @samp{10051}." + +# FUZZY +# TODO: Actualizar cuando se traduzca guix[-packages] +#, fuzzy +#~| msgid "" +#~| "name: mingetty\n" +#~| "location: gnu/services/base.scm:1190:2\n" +#~| "extends: shepherd-root\n" +#~| "description: Provide console login using the `mingetty' program.\n" +#~| "relevance: 2\n" +#~| "\n" +#~ msgid "" +#~ "name: home-zsh-plugin-manager\n" +#~ "location: gnu/home/services/shellutils.scm:28:2\n" +#~ "extends: home-zsh home-profile\n" +#~ "description: Install plugins in profile and configure Zsh to load them.\n" +#~ "relevance: 1\n" +#~ "\n" +#~ msgstr "" +#~ "name: mingetty\n" +#~ "location: gnu/services/base.scm:1190:2\n" +#~ "extends: shepherd-root\n" +#~ "description: Provide console login using the `mingetty' program.\n" +#~ "relevance: 2\n" +#~ "\n" + +# FUZZY +# TODO: Actualizar cuando se traduzca guix[-packages] +#, fuzzy +#~| msgid "" +#~| "name: mingetty\n" +#~| "location: gnu/services/base.scm:1190:2\n" +#~| "extends: shepherd-root\n" +#~| "description: Provide console login using the `mingetty' program.\n" +#~| "relevance: 2\n" +#~| "\n" +#~ msgid "" +#~ "name: home-zsh-direnv\n" +#~ "location: gnu/home/services/shellutils.scm:69:2\n" +#~ "extends: home-profile home-zsh\n" +#~ "description: Enables `direnv' for `zsh'. Adds hook to `.zshrc' and installs a\n" +#~ "+ package in the profile.\n" +#~ "relevance: 1\n" +#~ "\n" +#~ msgstr "" +#~ "name: mingetty\n" +#~ "location: gnu/services/base.scm:1190:2\n" +#~ "extends: shepherd-root\n" +#~ "description: Provide console login using the `mingetty' program.\n" +#~ "relevance: 2\n" +#~ "\n" + +# XXX: (MAAV) ¿@var se traduce? +#~ msgid "./etc/indent-code.el gnu/packages/@var{file}.scm @var{package}\n" +#~ msgstr "./etc/indent-code.el gnu/packages/@var{archivo}.scm @var{paquete}\n" + +#~ msgid "This automatically indents the definition of @var{package} in @file{gnu/packages/@var{file}.scm} by running Emacs in batch mode. To indent a whole file, omit the second argument:" +#~ msgstr "Esto indenta automáticamente la definición de @var{paquete} en @file{gnu/packages/@var{archivo}.scm} ejecutando Emacs en modo de procesamiento de lotes. Para indentar un archivo completo, omita el segundo parámetro:" + +#~ msgid "./etc/indent-code.el gnu/services/@var{file}.scm\n" +#~ msgstr "./etc/indent-code.el gnu/services/@var{archivo}.scm\n" + +#, fuzzy +#~ msgid "Some older packages that aren't using @file{Package.toml} yet, will require this file to be created, too. The function @code{julia-create-package-toml} helps creating the file. You need to pass the outputs and the source of the package, its name (the same as the @code{file-name} parameter), the package uuid, the package version, and a list of dependencies specified by their name and their uuid." +#~ msgstr "Algunos paquetes antiguos que no usan todavía @file{Package.toml} también necesitan la creación de este archivo. La función @code{julia-create-package-toml} ayuda en la creación de dicho archivo. Debe proporcionarle las salidas y las fuentes del paquete, su nombre (el mismo que en el parámetro @code{file-name}), el uuid del paquete, la versión del paquete y una lista de dependencias especificadas a partir de su nombre y su uuid." + #~ msgid "" #~ " (build-machine\n" #~ " (name \"armeight.example.org\")\n" @@ -73463,9 +74577,6 @@ msgstr "fdl-1.3.texi" #~ msgid "Size of the database writer queue." #~ msgstr "Nombre de la base de datos usada." -#~ msgid "@code{database} (default: @code{\"/var/lib/cuirass/cuirass.db\"})" -#~ msgstr "@code{database} (predeterminada: @code{\"/var/lib/cuirass/cuirass.db\"})" - #~ msgid "Location of sqlite database which contains the build results and previously added specifications." #~ msgstr "Ruta de la base de datos sqlite que contiene los resultados de construcción y las especificaciones añadidas previamente." @@ -73621,10 +74732,6 @@ msgstr "fdl-1.3.texi" #~ msgid "{@code{cups-configuration} parameter} package-list extensions" #~ msgstr "{parámetro de @code{cups-configuration}} lista-paquetes extensions" -# FUZZY -#~ msgid "Secret file which will be appended to @file{zabbix.conf.php} file. This file contains credentials for use by Zabbix front-end. You are expected to create it manually." -#~ msgstr "Archivo secreto que se añadirá al final del archivo @file{zabbix.conf.php}. Este archivo contiene las credenciales usadas por el motor de visualización de Zabbix. Se espera que usted lo cree manualmente." - #~ msgid "@code{systems} (default: @var{#f})" #~ msgstr "@code{systems} (predeterminado: @var{#f})" diff --git a/po/doc/guix-manual.fa.po b/po/doc/guix-manual.fa.po index 1140d76d00..2c8ff2bd0b 100644 --- a/po/doc/guix-manual.fa.po +++ b/po/doc/guix-manual.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: guix manual checkout\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2021-12-21 15:18+0000\n" +"POT-Creation-Date: 2022-02-02 15:18+0000\n" "PO-Revision-Date: 2021-07-15 22:27+0000\n" "Last-Translator: Danial Behzadi \n" "Language-Team: Persian \n" @@ -68,8 +68,8 @@ msgid "The latest and greatest." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:161 -#: guix-git/doc/contributing.texi:162 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:173 +#: guix-git/doc/contributing.texi:174 #, no-wrap msgid "Running Guix Before It Is Installed" msgstr "" @@ -80,8 +80,8 @@ msgid "Hacker tricks." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:235 -#: guix-git/doc/contributing.texi:236 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:265 +#: guix-git/doc/contributing.texi:266 #, no-wrap msgid "The Perfect Setup" msgstr "" @@ -92,8 +92,8 @@ msgid "The right tools." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:326 -#: guix-git/doc/contributing.texi:327 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:356 +#: guix-git/doc/contributing.texi:357 #, no-wrap msgid "Packaging Guidelines" msgstr "" @@ -104,8 +104,8 @@ msgid "Growing the distribution." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:890 -#: guix-git/doc/contributing.texi:891 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:920 +#: guix-git/doc/contributing.texi:921 #, no-wrap msgid "Coding Style" msgstr "" @@ -116,8 +116,8 @@ msgid "Hygiene of the contributor." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:989 -#: guix-git/doc/contributing.texi:990 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1013 +#: guix-git/doc/contributing.texi:1014 #, no-wrap msgid "Submitting Patches" msgstr "" @@ -128,8 +128,8 @@ msgid "Share your work." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1270 -#: guix-git/doc/contributing.texi:1271 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1298 +#: guix-git/doc/contributing.texi:1299 #, no-wrap msgid "Tracking Bugs and Patches" msgstr "" @@ -140,8 +140,8 @@ msgid "Keeping it all organized." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1385 -#: guix-git/doc/contributing.texi:1386 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1413 +#: guix-git/doc/contributing.texi:1414 #, no-wrap msgid "Commit Access" msgstr "" @@ -152,8 +152,8 @@ msgid "Pushing to the official repository." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1611 -#: guix-git/doc/contributing.texi:1612 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1644 +#: guix-git/doc/contributing.texi:1645 #, no-wrap msgid "Updating the Guix Package" msgstr "" @@ -164,8 +164,8 @@ msgid "Updating the Guix package definition." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1652 -#: guix-git/doc/contributing.texi:1653 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1686 #, no-wrap msgid "Translating Guix" msgstr "" @@ -349,30 +349,31 @@ msgid "make authenticate GUIX_GIT_KEYRING=myremote/keyring\n" msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:154 guix-git/doc/contributing.texi:1463 -#: guix-git/doc/guix.texi:594 guix-git/doc/guix.texi:643 -#: guix-git/doc/guix.texi:833 guix-git/doc/guix.texi:1813 -#: guix-git/doc/guix.texi:2060 guix-git/doc/guix.texi:2244 -#: guix-git/doc/guix.texi:2465 guix-git/doc/guix.texi:2677 -#: guix-git/doc/guix.texi:3807 guix-git/doc/guix.texi:4548 -#: guix-git/doc/guix.texi:4562 guix-git/doc/guix.texi:4644 -#: guix-git/doc/guix.texi:4874 guix-git/doc/guix.texi:5615 -#: guix-git/doc/guix.texi:6082 guix-git/doc/guix.texi:6333 -#: guix-git/doc/guix.texi:6454 guix-git/doc/guix.texi:6482 -#: guix-git/doc/guix.texi:6535 guix-git/doc/guix.texi:9391 -#: guix-git/doc/guix.texi:9461 guix-git/doc/guix.texi:11198 -#: guix-git/doc/guix.texi:11238 guix-git/doc/guix.texi:11512 -#: guix-git/doc/guix.texi:11524 guix-git/doc/guix.texi:14000 -#: guix-git/doc/guix.texi:14631 guix-git/doc/guix.texi:15521 -#: guix-git/doc/guix.texi:16507 guix-git/doc/guix.texi:19140 -#: guix-git/doc/guix.texi:19310 guix-git/doc/guix.texi:27188 -#: guix-git/doc/guix.texi:30914 guix-git/doc/guix.texi:34669 -#: guix-git/doc/guix.texi:34903 guix-git/doc/guix.texi:35073 -#: guix-git/doc/guix.texi:35232 guix-git/doc/guix.texi:35334 -#: guix-git/doc/guix.texi:35435 guix-git/doc/guix.texi:35738 -#: guix-git/doc/guix.texi:36896 guix-git/doc/guix.texi:36971 -#: guix-git/doc/guix.texi:37006 guix-git/doc/guix.texi:37056 -#: guix-git/doc/guix.texi:37143 guix-git/doc/guix.texi:37564 +#: guix-git/doc/contributing.texi:154 guix-git/doc/contributing.texi:1496 +#: guix-git/doc/guix.texi:605 guix-git/doc/guix.texi:654 +#: guix-git/doc/guix.texi:844 guix-git/doc/guix.texi:1830 +#: guix-git/doc/guix.texi:2077 guix-git/doc/guix.texi:2261 +#: guix-git/doc/guix.texi:2482 guix-git/doc/guix.texi:2694 +#: guix-git/doc/guix.texi:3825 guix-git/doc/guix.texi:4566 +#: guix-git/doc/guix.texi:4580 guix-git/doc/guix.texi:4662 +#: guix-git/doc/guix.texi:4892 guix-git/doc/guix.texi:5633 +#: guix-git/doc/guix.texi:6119 guix-git/doc/guix.texi:6376 +#: guix-git/doc/guix.texi:6497 guix-git/doc/guix.texi:6525 +#: guix-git/doc/guix.texi:6578 guix-git/doc/guix.texi:9581 +#: guix-git/doc/guix.texi:9705 guix-git/doc/guix.texi:9775 +#: guix-git/doc/guix.texi:11512 guix-git/doc/guix.texi:11552 +#: guix-git/doc/guix.texi:11826 guix-git/doc/guix.texi:11838 +#: guix-git/doc/guix.texi:14357 guix-git/doc/guix.texi:14988 +#: guix-git/doc/guix.texi:15878 guix-git/doc/guix.texi:16864 +#: guix-git/doc/guix.texi:19502 guix-git/doc/guix.texi:19672 +#: guix-git/doc/guix.texi:27525 guix-git/doc/guix.texi:31279 +#: guix-git/doc/guix.texi:35108 guix-git/doc/guix.texi:35342 +#: guix-git/doc/guix.texi:35512 guix-git/doc/guix.texi:35676 +#: guix-git/doc/guix.texi:35778 guix-git/doc/guix.texi:35817 +#: guix-git/doc/guix.texi:35891 guix-git/doc/guix.texi:36228 +#: guix-git/doc/guix.texi:37386 guix-git/doc/guix.texi:37461 +#: guix-git/doc/guix.texi:37496 guix-git/doc/guix.texi:37546 +#: guix-git/doc/guix.texi:37633 guix-git/doc/guix.texi:38043 #, no-wrap msgid "Note" msgstr "" @@ -383,28 +384,46 @@ msgid "You are advised to run @command{make authenticate} after every @command{g msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:168 +#: guix-git/doc/contributing.texi:162 +msgid "After updating the repository, @command{make} might fail with an error similar to the following example:" +msgstr "" + +#. type: example +#: guix-git/doc/contributing.texi:166 +#, no-wrap +msgid "" +"error: failed to load 'gnu/packages/dunst.scm':\n" +"ice-9/eval.scm:293:34: In procedure abi-check: #>: record ABI mismatch; recompilation needed\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:172 +msgid "This means that one of the record types that Guix defines (in this example, the @code{origin} record) has changed, and all of guix needs to be recompiled to take that change into account. To do so, run @command{make clean-go} followed by @command{make}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:180 msgid "In order to keep a sane working environment, you will find it useful to test the changes made in your local source tree checkout without actually installing them. So that you can distinguish between your ``end-user'' hat and your ``motley'' costume." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:179 +#: guix-git/doc/contributing.texi:191 msgid "To that end, all the command-line tools can be used even if you have not run @code{make install}. To do that, you first need to have an environment with all the dependencies available (@pxref{Building from Git}), and then simply prefix each command with @command{./pre-inst-env} (the @file{pre-inst-env} script lives in the top build tree of Guix; it is generated by running @command{./bootstrap} followed by @command{./configure}). As an example, here is how you would build the @code{hello} package as defined in your working tree (this assumes @command{guix-daemon} is already running on your system; it's OK if it's a different version):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:182 +#: guix-git/doc/contributing.texi:194 #, no-wrap msgid "$ ./pre-inst-env guix build hello\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:186 +#: guix-git/doc/contributing.texi:198 msgid "Similarly, an example for a Guile session using the Guix modules:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:189 +#: guix-git/doc/contributing.texi:201 #, no-wrap msgid "" "$ ./pre-inst-env guile -c '(use-modules (guix utils)) (pk (%current-system))'\n" @@ -412,30 +431,30 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:191 +#: guix-git/doc/contributing.texi:203 #, no-wrap msgid ";;; (\"x86_64-linux\")\n" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:194 +#: guix-git/doc/contributing.texi:206 #, no-wrap msgid "REPL" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:195 +#: guix-git/doc/contributing.texi:207 #, no-wrap msgid "read-eval-print loop" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:198 +#: guix-git/doc/contributing.texi:210 msgid "@dots{} and for a REPL (@pxref{Using Guile Interactively,,, guile, Guile Reference Manual}):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:213 +#: guix-git/doc/contributing.texi:225 #, no-wrap msgid "" "$ ./pre-inst-env guile\n" @@ -454,44 +473,67 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:221 +#: guix-git/doc/contributing.texi:233 msgid "If you are hacking on the daemon and its supporting code or if @command{guix-daemon} is not already running on your system, you can launch it straight from the build tree@footnote{The @option{-E} flag to @command{sudo} guarantees that @code{GUILE_LOAD_PATH} is correctly set such that @command{guix-daemon} and the tools it uses can find the Guile modules they need.}:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:224 +#: guix-git/doc/contributing.texi:236 #, no-wrap msgid "$ sudo -E ./pre-inst-env guix-daemon --build-users-group=guixbuild\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:228 +#: guix-git/doc/contributing.texi:240 msgid "The @command{pre-inst-env} script sets up all the environment variables necessary to support this, including @env{PATH} and @env{GUILE_LOAD_PATH}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:233 +#: guix-git/doc/contributing.texi:245 msgid "Note that @command{./pre-inst-env guix pull} does @emph{not} upgrade the local source tree; it simply updates the @file{~/.config/guix/current} symlink (@pxref{Invoking guix pull}). Run @command{git pull} instead if you want to upgrade your local source tree." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:243 +#: guix-git/doc/contributing.texi:249 +msgid "Sometimes, especially if you have recently updated your repository, running @command{./pre-inst-env} will print a message similar to the following example:" +msgstr "" + +#. type: example +#: guix-git/doc/contributing.texi:253 +#, no-wrap +msgid "" +";;; note: source file /home/user/projects/guix/guix/progress.scm\n" +";;; newer than compiled /home/user/projects/guix/guix/progress.go\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:259 +msgid "This is only a note and you can safely ignore it. You can get rid of the message by running @command{make -j4}. Until you do, Guile will run slightly slower because it will interpret the code instead of using prepared Guile object (@file{.go}) files." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:264 +msgid "You can run @command{make} automatically as you work using @command{watchexec} from the @code{watchexec} package. For example, to build again each time you update a package file, you can run @samp{watchexec -w gnu/packages make -j4}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:273 msgid "The Perfect Setup to hack on Guix is basically the perfect setup used for Guile hacking (@pxref{Using Guile in Emacs,,, guile, Guile Reference Manual}). First, you need more than an editor, you need @url{https://www.gnu.org/software/emacs, Emacs}, empowered by the wonderful @url{https://nongnu.org/geiser/, Geiser}. To set that up, run:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:246 +#: guix-git/doc/contributing.texi:276 #, no-wrap msgid "guix package -i emacs guile emacs-geiser emacs-geiser-guile\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:255 +#: guix-git/doc/contributing.texi:285 msgid "Geiser allows for interactive and incremental development from within Emacs: code compilation and evaluation from within buffers, access to on-line documentation (docstrings), context-sensitive completion, @kbd{M-.} to jump to an object definition, a REPL to try out your code, and more (@pxref{Introduction,,, geiser, Geiser User Manual}). For convenient Guix development, make sure to augment Guile’s load path so that it finds source files from your checkout:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:260 +#: guix-git/doc/contributing.texi:290 #, no-wrap msgid "" ";; @r{Assuming the Guix checkout is in ~/src/guix.}\n" @@ -500,35 +542,35 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:268 +#: guix-git/doc/contributing.texi:298 msgid "To actually edit the code, Emacs already has a neat Scheme mode. But in addition to that, you must not miss @url{https://www.emacswiki.org/emacs/ParEdit, Paredit}. It provides facilities to directly operate on the syntax tree, such as raising an s-expression or wrapping it, swallowing or rejecting the following s-expression, etc." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:269 +#: guix-git/doc/contributing.texi:299 #, no-wrap msgid "code snippets" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:270 +#: guix-git/doc/contributing.texi:300 #, no-wrap msgid "templates" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:271 +#: guix-git/doc/contributing.texi:301 #, no-wrap msgid "reducing boilerplate" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:278 +#: guix-git/doc/contributing.texi:308 msgid "We also provide templates for common git commit messages and package definitions in the @file{etc/snippets} directory. These templates can be used with @url{https://joaotavora.github.io/yasnippet/, YASnippet} to expand short trigger strings to interactive text snippets. You may want to add the snippets directory to the @var{yas-snippet-dirs} variable in Emacs." msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:283 +#: guix-git/doc/contributing.texi:313 #, no-wrap msgid "" ";; @r{Assuming the Guix checkout is in ~/src/guix.}\n" @@ -537,40 +579,40 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:291 +#: guix-git/doc/contributing.texi:321 msgid "The commit message snippets depend on @url{https://magit.vc/, Magit} to display staged files. When editing a commit message type @code{add} followed by @kbd{TAB} to insert a commit message template for adding a package; type @code{update} followed by @kbd{TAB} to insert a template for updating a package; type @code{https} followed by @kbd{TAB} to insert a template for changing the home page URI of a package to HTTPS." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:297 +#: guix-git/doc/contributing.texi:327 msgid "The main snippet for @code{scheme-mode} is triggered by typing @code{package...} followed by @kbd{TAB}. This snippet also inserts the trigger string @code{origin...}, which can be expanded further. The @code{origin} snippet in turn may insert other trigger strings ending on @code{...}, which also can be expanded further." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:298 +#: guix-git/doc/contributing.texi:328 #, no-wrap msgid "insert or update copyright" msgstr "" #. type: code{#1} -#: guix-git/doc/contributing.texi:299 +#: guix-git/doc/contributing.texi:329 #, no-wrap msgid "M-x guix-copyright" msgstr "" #. type: code{#1} -#: guix-git/doc/contributing.texi:300 +#: guix-git/doc/contributing.texi:330 #, no-wrap msgid "M-x copyright-update" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:304 +#: guix-git/doc/contributing.texi:334 msgid "We additionally provide insertion and automatic update of a copyright in @file{etc/copyright.el}. You may want to set your full name, mail, and load a file." msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:310 +#: guix-git/doc/contributing.texi:340 #, no-wrap msgid "" "(setq user-full-name \"Alice Doe\")\n" @@ -580,17 +622,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:313 +#: guix-git/doc/contributing.texi:343 msgid "To insert a copyright at the current line invoke @code{M-x guix-copyright}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:315 +#: guix-git/doc/contributing.texi:345 msgid "To update a copyright you need to specify a @code{copyright-names-regexp}." msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:319 +#: guix-git/doc/contributing.texi:349 #, no-wrap msgid "" "(setq copyright-names-regexp\n" @@ -598,281 +640,281 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:325 +#: guix-git/doc/contributing.texi:355 msgid "You can check if your copyright is up to date by evaluating @code{M-x copyright-update}. If you want to do it automatically after each buffer save then add @code{(add-hook 'after-save-hook 'copyright-update)} in Emacs." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:329 +#: guix-git/doc/contributing.texi:359 #, no-wrap msgid "packages, creating" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:333 +#: guix-git/doc/contributing.texi:363 msgid "The GNU distribution is nascent and may well lack some of your favorite packages. This section describes how you can help make the distribution grow." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:341 +#: guix-git/doc/contributing.texi:371 msgid "Free software packages are usually distributed in the form of @dfn{source code tarballs}---typically @file{tar.gz} files that contain all the source files. Adding a package to the distribution means essentially two things: adding a @dfn{recipe} that describes how to build the package, including a list of other packages required to build it, and adding @dfn{package metadata} along with that recipe, such as a description and licensing information." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:350 +#: guix-git/doc/contributing.texi:380 msgid "In Guix all this information is embodied in @dfn{package definitions}. Package definitions provide a high-level view of the package. They are written using the syntax of the Scheme programming language; in fact, for each package we define a variable bound to the package definition, and export that variable from a module (@pxref{Package Modules}). However, in-depth Scheme knowledge is @emph{not} a prerequisite for creating packages. For more information on package definitions, @pxref{Defining Packages}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:356 +#: guix-git/doc/contributing.texi:386 msgid "Once a package definition is in place, stored in a file in the Guix source tree, it can be tested using the @command{guix build} command (@pxref{Invoking guix build}). For example, assuming the new package is called @code{gnew}, you may run this command from the Guix build tree (@pxref{Running Guix Before It Is Installed}):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:359 +#: guix-git/doc/contributing.texi:389 #, no-wrap msgid "./pre-inst-env guix build gnew --keep-failed\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:365 +#: guix-git/doc/contributing.texi:395 msgid "Using @code{--keep-failed} makes it easier to debug build failures since it provides access to the failed build tree. Another useful command-line option when debugging is @code{--log-file}, to access the build log." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:370 +#: guix-git/doc/contributing.texi:400 msgid "If the package is unknown to the @command{guix} command, it may be that the source file contains a syntax error, or lacks a @code{define-public} clause to export the package variable. To figure it out, you may load the module from Guile to get more information about the actual error:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:373 +#: guix-git/doc/contributing.texi:403 #, no-wrap msgid "./pre-inst-env guile -c '(use-modules (gnu packages gnew))'\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:380 +#: guix-git/doc/contributing.texi:410 msgid "Once your package builds correctly, please send us a patch (@pxref{Submitting Patches}). Well, if you need help, we will be happy to help you too. Once the patch is committed in the Guix repository, the new package automatically gets built on the supported platforms by @url{https://@value{SUBSTITUTE-SERVER-1}, our continuous integration system}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:381 +#: guix-git/doc/contributing.texi:411 #, no-wrap msgid "substituter" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:388 +#: guix-git/doc/contributing.texi:418 msgid "Users can obtain the new package definition simply by running @command{guix pull} (@pxref{Invoking guix pull}). When @code{@value{SUBSTITUTE-SERVER-1}} is done building the package, installing the package automatically downloads binaries from there (@pxref{Substitutes}). The only place where human intervention is needed is to review and apply the patch." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:404 -#: guix-git/doc/contributing.texi:405 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:434 +#: guix-git/doc/contributing.texi:435 #, no-wrap msgid "Software Freedom" msgstr "آزادی نرم‌افزار" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "What may go into the distribution." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:432 -#: guix-git/doc/contributing.texi:433 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:462 +#: guix-git/doc/contributing.texi:463 #, no-wrap msgid "Package Naming" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "What's in a name?" msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:465 -#: guix-git/doc/contributing.texi:466 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:495 +#: guix-git/doc/contributing.texi:496 #, no-wrap msgid "Version Numbers" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "When the name is not enough." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:572 -#: guix-git/doc/contributing.texi:573 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:602 +#: guix-git/doc/contributing.texi:603 #, no-wrap msgid "Synopses and Descriptions" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Helping users find the right package." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:651 -#: guix-git/doc/contributing.texi:652 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:681 +#: guix-git/doc/contributing.texi:682 #, no-wrap msgid "Snippets versus Phases" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Whether to use a snippet, or a build phase." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:666 -#: guix-git/doc/contributing.texi:667 guix-git/doc/guix.texi:1995 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:696 +#: guix-git/doc/contributing.texi:697 guix-git/doc/guix.texi:2012 #, no-wrap msgid "Emacs Packages" msgstr "بسته‌های ای‌مکس" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Your Elisp fix." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:706 -#: guix-git/doc/contributing.texi:707 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:736 +#: guix-git/doc/contributing.texi:737 #, no-wrap msgid "Python Modules" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "A touch of British comedy." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:782 -#: guix-git/doc/contributing.texi:783 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:812 +#: guix-git/doc/contributing.texi:813 #, no-wrap msgid "Perl Modules" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Little pearls." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:798 -#: guix-git/doc/contributing.texi:799 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:828 +#: guix-git/doc/contributing.texi:829 #, no-wrap msgid "Java Packages" msgstr "بسته‌های جاوا" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Coffee break." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:818 -#: guix-git/doc/contributing.texi:819 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:848 +#: guix-git/doc/contributing.texi:849 #, no-wrap msgid "Rust Crates" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Beware of oxidation." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:852 -#: guix-git/doc/contributing.texi:853 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:882 +#: guix-git/doc/contributing.texi:883 #, no-wrap msgid "Fonts" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Fond of fonts." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:408 +#: guix-git/doc/contributing.texi:438 #, no-wrap msgid "free software" msgstr "نرم‌افزار آزاد" #. type: Plain text -#: guix-git/doc/contributing.texi:416 +#: guix-git/doc/contributing.texi:446 msgid "The GNU operating system has been developed so that users can have freedom in their computing. GNU is @dfn{free software}, meaning that users have the @url{https://www.gnu.org/philosophy/free-sw.html,four essential freedoms}: to run the program, to study and change the program in source code form, to redistribute exact copies, and to distribute modified versions. Packages found in the GNU distribution provide only software that conveys these four freedoms." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:422 +#: guix-git/doc/contributing.texi:452 msgid "In addition, the GNU distribution follow the @url{https://www.gnu.org/distros/free-system-distribution-guidelines.html,free software distribution guidelines}. Among other things, these guidelines reject non-free firmware, recommendations of non-free software, and discuss ways to deal with trademarks and patents." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:430 +#: guix-git/doc/contributing.texi:460 msgid "Some otherwise free upstream package sources contain a small and optional subset that violates the above guidelines, for instance because this subset is itself non-free code. When that happens, the offending items are removed with appropriate patches or code snippets in the @code{origin} form of the package (@pxref{Defining Packages}). This way, @code{guix build --source} returns the ``freed'' source rather than the unmodified upstream source." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:435 +#: guix-git/doc/contributing.texi:465 #, no-wrap msgid "package name" msgstr "نام بسته" #. type: Plain text -#: guix-git/doc/contributing.texi:443 +#: guix-git/doc/contributing.texi:473 msgid "A package actually has two names associated with it. First, there is the name of the @emph{Scheme variable}, the one following @code{define-public}. By this name, the package can be made known in the Scheme code, for instance as input to another package. Second, there is the string in the @code{name} field of a package definition. This name is used by package management commands such as @command{guix package} and @command{guix build}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:448 +#: guix-git/doc/contributing.texi:478 msgid "Both are usually the same and correspond to the lowercase conversion of the project name chosen upstream, with underscores replaced with hyphens. For instance, GNUnet is available as @code{gnunet}, and SDL_net as @code{sdl-net}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:456 +#: guix-git/doc/contributing.texi:486 msgid "A noteworthy exception to this rule is when the project name is only a single character, or if an older maintained project with the same name already exists---regardless of whether it has already been packaged for Guix. Use common sense to make such names unambiguous and meaningful. For example, Guix's package for the shell called ``s'' upstream is @code{s-shell} and @emph{not} @code{s}. Feel free to ask your fellow hackers for inspiration." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:461 +#: guix-git/doc/contributing.texi:491 msgid "We do not add @code{lib} prefixes for library packages, unless these are already part of the official project name. But @pxref{Python Modules} and @ref{Perl Modules} for special rules concerning modules for the Python and Perl languages." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:463 +#: guix-git/doc/contributing.texi:493 msgid "Font package names are handled differently, @pxref{Fonts}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:468 +#: guix-git/doc/contributing.texi:498 #, no-wrap msgid "package version" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:477 +#: guix-git/doc/contributing.texi:507 msgid "We usually package only the latest version of a given free software project. But sometimes, for instance for incompatible library versions, two (or more) versions of the same package are needed. These require different Scheme variable names. We use the name as defined in @ref{Package Naming} for the most recent version; previous versions use the same name, suffixed by @code{-} and the smallest prefix of the version number that may distinguish the two versions." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:480 +#: guix-git/doc/contributing.texi:510 msgid "The name inside the package definition is the same for all versions of a package and does not contain any version number." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:482 +#: guix-git/doc/contributing.texi:512 msgid "For instance, the versions 2.24.20 and 3.9.12 of GTK+ may be packaged as follows:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:494 +#: guix-git/doc/contributing.texi:524 #, no-wrap msgid "" "(define-public gtk+\n" @@ -888,12 +930,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:496 +#: guix-git/doc/contributing.texi:526 msgid "If we also wanted GTK+ 3.8.2, this would be packaged as" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:502 +#: guix-git/doc/contributing.texi:532 #, no-wrap msgid "" "(define-public gtk+-3.8\n" @@ -904,23 +946,23 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:506 +#: guix-git/doc/contributing.texi:536 #, no-wrap msgid "version number, for VCS snapshots" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:512 +#: guix-git/doc/contributing.texi:542 msgid "Occasionally, we package snapshots of upstream's version control system (VCS) instead of formal releases. This should remain exceptional, because it is up to upstream developers to clarify what the stable release is. Yet, it is sometimes necessary. So, what should we put in the @code{version} field?" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:520 +#: guix-git/doc/contributing.texi:550 msgid "Clearly, we need to make the commit identifier of the VCS snapshot visible in the version string, but we also need to make sure that the version string is monotonically increasing so that @command{guix package --upgrade} can determine which version is newer. Since commit identifiers, notably with Git, are not monotonically increasing, we add a revision number that we increase each time we upgrade to a newer snapshot. The resulting version string looks like this:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:529 +#: guix-git/doc/contributing.texi:559 #, no-wrap msgid "" "2.0.11-3.cabba9e\n" @@ -933,12 +975,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:539 +#: guix-git/doc/contributing.texi:569 msgid "It is a good idea to strip commit identifiers in the @code{version} field to, say, 7 digits. It avoids an aesthetic annoyance (assuming aesthetics have a role to play here) as well as problems related to OS limits such as the maximum shebang length (127 bytes for the Linux kernel). There are helper functions for doing this for packages using @code{git-fetch} or @code{hg-fetch} (see below). It is best to use the full commit identifiers in @code{origin}s, though, to avoid ambiguities. A typical package definition may look like this:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:556 +#: guix-git/doc/contributing.texi:586 #, no-wrap msgid "" "(define my-package\n" @@ -958,18 +1000,18 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/contributing.texi:558 +#: guix-git/doc/contributing.texi:588 #, no-wrap msgid "{Scheme Procedure} git-version @var{VERSION} @var{REVISION} @var{COMMIT}" msgstr "" #. type: deffn -#: guix-git/doc/contributing.texi:560 +#: guix-git/doc/contributing.texi:590 msgid "Return the version string for packages using @code{git-fetch}." msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:564 +#: guix-git/doc/contributing.texi:594 #, no-wrap msgid "" "(git-version \"0.2.3\" \"0\" \"93818c936ee7e2f1ba1b315578bde363a7d43d05\")\n" @@ -977,71 +1019,71 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/contributing.texi:567 +#: guix-git/doc/contributing.texi:597 #, no-wrap msgid "{Scheme Procedure} hg-version @var{VERSION} @var{REVISION} @var{CHANGESET}" msgstr "" #. type: deffn -#: guix-git/doc/contributing.texi:570 +#: guix-git/doc/contributing.texi:600 msgid "Return the version string for packages using @code{hg-fetch}. It works in the same way as @code{git-version}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:575 +#: guix-git/doc/contributing.texi:605 #, no-wrap msgid "package description" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:576 +#: guix-git/doc/contributing.texi:606 #, no-wrap msgid "package synopsis" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:583 +#: guix-git/doc/contributing.texi:613 msgid "As we have seen before, each package in GNU@tie{}Guix includes a synopsis and a description (@pxref{Defining Packages}). Synopses and descriptions are important: They are what @command{guix package --search} searches, and a crucial piece of information to help users determine whether a given package suits their needs. Consequently, packagers should pay attention to what goes into them." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:591 +#: guix-git/doc/contributing.texi:621 msgid "Synopses must start with a capital letter and must not end with a period. They must not start with ``a'' or ``the'', which usually does not bring anything; for instance, prefer ``File-frobbing tool'' over ``A tool that frobs files''. The synopsis should say what the package is---e.g., ``Core GNU utilities (file, text, shell)''---or what it is used for---e.g., the synopsis for GNU@tie{}grep is ``Print lines matching a pattern''." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:601 +#: guix-git/doc/contributing.texi:631 msgid "Keep in mind that the synopsis must be meaningful for a very wide audience. For example, ``Manipulate alignments in the SAM format'' might make sense for a seasoned bioinformatics researcher, but might be fairly unhelpful or even misleading to a non-specialized audience. It is a good idea to come up with a synopsis that gives an idea of the application domain of the package. In this example, this might give something like ``Manipulate nucleotide sequence alignments'', which hopefully gives the user a better idea of whether this is what they are looking for." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:609 +#: guix-git/doc/contributing.texi:639 msgid "Descriptions should take between five and ten lines. Use full sentences, and avoid using acronyms without first introducing them. Please avoid marketing phrases such as ``world-leading'', ``industrial-strength'', and ``next-generation'', and avoid superlatives like ``the most advanced''---they are not helpful to users looking for a package and may even sound suspicious. Instead, try to be factual, mentioning use cases and features." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:610 +#: guix-git/doc/contributing.texi:640 #, no-wrap msgid "Texinfo markup, in package descriptions" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:619 +#: guix-git/doc/contributing.texi:649 msgid "Descriptions can include Texinfo markup, which is useful to introduce ornaments such as @code{@@code} or @code{@@dfn}, bullet lists, or hyperlinks (@pxref{Overview,,, texinfo, GNU Texinfo}). However you should be careful when using some characters for example @samp{@@} and curly braces which are the basic special characters in Texinfo (@pxref{Special Characters,,, texinfo, GNU Texinfo}). User interfaces such as @command{guix package --show} take care of rendering it appropriately." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:625 +#: guix-git/doc/contributing.texi:655 msgid "Synopses and descriptions are translated by volunteers @uref{https://translate.fedoraproject.org/projects/guix/packages, at Weblate} so that as many users as possible can read them in their native language. User interfaces search them and display them in the language specified by the current locale." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:630 +#: guix-git/doc/contributing.texi:660 msgid "To allow @command{xgettext} to extract them as translatable strings, synopses and descriptions @emph{must be literal strings}. This means that you cannot use @code{string-append} or @code{format} to construct these strings:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:636 +#: guix-git/doc/contributing.texi:666 #, no-wrap msgid "" "(package\n" @@ -1051,12 +1093,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:644 +#: guix-git/doc/contributing.texi:674 msgid "Translation is a lot of work so, as a packager, please pay even more attention to your synopses and descriptions as every change may entail additional work for translators. In order to help them, it is possible to make recommendations or instructions visible to them by inserting special comments like this (@pxref{xgettext Invocation,,, gettext, GNU Gettext}):" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:649 +#: guix-git/doc/contributing.texi:679 #, no-wrap msgid "" ";; TRANSLATORS: \"X11 resize-and-rotate\" should not be translated.\n" @@ -1065,440 +1107,439 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:654 +#: guix-git/doc/contributing.texi:684 #, no-wrap msgid "snippets, when to use" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:665 +#: guix-git/doc/contributing.texi:695 msgid "The boundary between using an origin snippet versus a build phase to modify the sources of a package can be elusive. Origin snippets are typically used to remove unwanted files such as bundled libraries, nonfree sources, or to apply simple substitutions. The source derived from an origin should produce a source that can be used to build the package on any system that the upstream package supports (i.e., act as the corresponding source). In particular, origin snippets must not embed store items in the sources; such patching should rather be done using build phases. Refer to the @code{origin} record documentation for more information (@pxref{origin Reference})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:669 +#: guix-git/doc/contributing.texi:699 #, no-wrap msgid "emacs, packaging" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:670 +#: guix-git/doc/contributing.texi:700 #, no-wrap msgid "elisp, packaging" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:682 +#: guix-git/doc/contributing.texi:712 msgid "Emacs packages should preferably use the Emacs build system (@pxref{emacs-build-system}), for uniformity and the benefits provided by its build phases, such as the auto-generation of the autoloads file and the byte compilation of the sources. Because there is no standardized way to run a test suite for Emacs packages, tests are disabled by default. When a test suite is available, it should be enabled by setting the @code{#:tests?} argument to @code{#true}. By default, the command to run the test is @command{make check}, but any command can be specified via the @code{#:test-command} argument. The @code{#:test-command} argument expects a list containing a command and its arguments, to be invoked during the @code{check} phase." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:687 +#: guix-git/doc/contributing.texi:717 msgid "The Elisp dependencies of Emacs packages are typically provided as @code{propagated-inputs} when required at run time. As for other packages, build or test dependencies should be specified as @code{native-inputs}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:696 +#: guix-git/doc/contributing.texi:726 msgid "Emacs packages sometimes depend on resources directories that should be installed along the Elisp files. The @code{#:include} argument can be used for that purpose, by specifying a list of regexps to match. The best practice when using the @code{#:include} argument is to extend rather than override its default value (accessible via the @code{%default-include} variable). As an example, a yasnippet extension package typically include a @file{snippets} directory, which could be copied to the installation directory using:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:699 +#: guix-git/doc/contributing.texi:729 #, no-wrap msgid "#:include (cons \"^snippets/\" %default-include)\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:705 +#: guix-git/doc/contributing.texi:735 msgid "When encountering problems, it is wise to check for the presence of the @code{Package-Requires} extension header in the package main source file, and whether any dependencies and their versions listed therein are satisfied." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:709 +#: guix-git/doc/contributing.texi:739 #, no-wrap msgid "python" msgstr "پایتون" #. type: Plain text -#: guix-git/doc/contributing.texi:715 +#: guix-git/doc/contributing.texi:745 msgid "We currently package Python 2 and Python 3, under the Scheme variable names @code{python-2} and @code{python} as explained in @ref{Version Numbers}. To avoid confusion and naming clashes with other programming languages, it seems desirable that the name of a package for a Python module contains the word @code{python}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:722 +#: guix-git/doc/contributing.texi:752 msgid "Some modules are compatible with only one version of Python, others with both. If the package Foo is compiled with Python 3, we name it @code{python-foo}. If it is compiled with Python 2, we name it @code{python2-foo}. Packages should be added when they are necessary; we don't add Python 2 variants of the package unless we are going to use them." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:728 +#: guix-git/doc/contributing.texi:758 msgid "If a project already contains the word @code{python}, we drop this; for instance, the module python-dateutil is packaged under the names @code{python-dateutil} and @code{python2-dateutil}. If the project name starts with @code{py} (e.g.@: @code{pytz}), we keep it and prefix it as described above." msgstr "" #. type: subsubsection -#: guix-git/doc/contributing.texi:729 +#: guix-git/doc/contributing.texi:759 #, no-wrap msgid "Specifying Dependencies" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:730 +#: guix-git/doc/contributing.texi:760 #, no-wrap msgid "inputs, for Python packages" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:735 +#: guix-git/doc/contributing.texi:765 msgid "Dependency information for Python packages is usually available in the package source tree, with varying degrees of accuracy: in the @file{setup.py} file, in @file{requirements.txt}, or in @file{tox.ini}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:741 +#: guix-git/doc/contributing.texi:771 msgid "Your mission, when writing a recipe for a Python package, is to map these dependencies to the appropriate type of ``input'' (@pxref{package Reference, inputs}). Although the @code{pypi} importer normally does a good job (@pxref{Invoking guix import}), you may want to check the following check list to determine which dependency goes where." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:749 +#: guix-git/doc/contributing.texi:779 msgid "We currently package Python 2 with @code{setuptools} and @code{pip} installed like Python 3.4 has per default. Thus you don't need to specify either of these as an input. @command{guix lint} will warn you if you do." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:755 +#: guix-git/doc/contributing.texi:785 msgid "Python dependencies required at run time go into @code{propagated-inputs}. They are typically defined with the @code{install_requires} keyword in @file{setup.py}, or in the @file{requirements.txt} file." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:763 +#: guix-git/doc/contributing.texi:793 msgid "Python packages required only at build time---e.g., those listed with the @code{setup_requires} keyword in @file{setup.py}---or only for testing---e.g., those in @code{tests_require}---go into @code{native-inputs}. The rationale is that (1) they do not need to be propagated because they are not needed at run time, and (2) in a cross-compilation context, it's the ``native'' input that we'd want." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:767 +#: guix-git/doc/contributing.texi:797 msgid "Examples are the @code{pytest}, @code{mock}, and @code{nose} test frameworks. Of course if any of these packages is also required at run-time, it needs to go to @code{propagated-inputs}." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:772 +#: guix-git/doc/contributing.texi:802 msgid "Anything that does not fall in the previous categories goes to @code{inputs}, for example programs or C libraries required for building Python packages containing C extensions." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:778 +#: guix-git/doc/contributing.texi:808 msgid "If a Python package has optional dependencies (@code{extras_require}), it is up to you to decide whether to add them or not, based on their usefulness/overhead ratio (@pxref{Submitting Patches, @command{guix size}})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:785 +#: guix-git/doc/contributing.texi:815 #, no-wrap msgid "perl" msgstr "پرل" #. type: Plain text -#: guix-git/doc/contributing.texi:796 +#: guix-git/doc/contributing.texi:826 msgid "Perl programs standing for themselves are named as any other package, using the lowercase upstream name. For Perl packages containing a single class, we use the lowercase class name, replace all occurrences of @code{::} by dashes and prepend the prefix @code{perl-}. So the class @code{XML::Parser} becomes @code{perl-xml-parser}. Modules containing several classes keep their lowercase upstream name and are also prepended by @code{perl-}. Such modules tend to have the word @code{perl} somewhere in their name, which gets dropped in favor of the prefix. For instance, @code{libwww-perl} becomes @code{perl-libwww}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:801 +#: guix-git/doc/contributing.texi:831 #, no-wrap msgid "java" msgstr "جاوا" #. type: Plain text -#: guix-git/doc/contributing.texi:804 +#: guix-git/doc/contributing.texi:834 msgid "Java programs standing for themselves are named as any other package, using the lowercase upstream name." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:810 +#: guix-git/doc/contributing.texi:840 msgid "To avoid confusion and naming clashes with other programming languages, it is desirable that the name of a package for a Java package is prefixed with @code{java-}. If a project already contains the word @code{java}, we drop this; for instance, the package @code{ngsjava} is packaged under the name @code{java-ngs}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:816 +#: guix-git/doc/contributing.texi:846 msgid "For Java packages containing a single class or a small class hierarchy, we use the lowercase class name, replace all occurrences of @code{.} by dashes and prepend the prefix @code{java-}. So the class @code{apache.commons.cli} becomes package @code{java-apache-commons-cli}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:821 +#: guix-git/doc/contributing.texi:851 #, no-wrap msgid "rust" msgstr "راست" #. type: Plain text -#: guix-git/doc/contributing.texi:824 +#: guix-git/doc/contributing.texi:854 msgid "Rust programs standing for themselves are named as any other package, using the lowercase upstream name." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:828 +#: guix-git/doc/contributing.texi:858 msgid "To prevent namespace collisions we prefix all other Rust packages with the @code{rust-} prefix. The name should be changed to lowercase as appropriate and dashes should remain in place." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:834 +#: guix-git/doc/contributing.texi:864 msgid "In the rust ecosystem it is common for multiple incompatible versions of a package to be used at any given time, so all package definitions should have a versioned suffix. The versioned suffix is the left-most non-zero digit (and any leading zeros, of course). This follows the ``caret'' version scheme intended by Cargo. Examples@: @code{rust-clap-2}, @code{rust-rand-0.6}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:844 +#: guix-git/doc/contributing.texi:874 msgid "Because of the difficulty in reusing rust packages as pre-compiled inputs for other packages the Cargo build system (@pxref{Build Systems, @code{cargo-build-system}}) presents the @code{#:cargo-inputs} and @code{cargo-development-inputs} keywords as build system arguments. It would be helpful to think of these as similar to @code{propagated-inputs} and @code{native-inputs}. Rust @code{dependencies} and @code{build-dependencies} should go in @code{#:cargo-inputs}, and @code{dev-dependencies} should go in @code{#:cargo-development-inputs}. If a Rust package links to other libraries then the standard placement in @code{inputs} and the like should be used." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:850 +#: guix-git/doc/contributing.texi:880 msgid "Care should be taken to ensure the correct version of dependencies are used; to this end we try to refrain from skipping the tests or using @code{#:skip-build?} when possible. Of course this is not always possible, as the package may be developed for a different Operating System, depend on features from the Nightly Rust compiler, or the test suite may have atrophied since it was released." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:855 guix-git/doc/guix.texi:1930 +#: guix-git/doc/contributing.texi:885 guix-git/doc/guix.texi:1947 #, no-wrap msgid "fonts" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:861 +#: guix-git/doc/contributing.texi:891 msgid "For fonts that are in general not installed by a user for typesetting purposes, or that are distributed as part of a larger software package, we rely on the general packaging rules for software; for instance, this applies to the fonts delivered as part of the X.Org system or fonts that are part of TeX Live." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:865 +#: guix-git/doc/contributing.texi:895 msgid "To make it easier for a user to search for fonts, names for other packages containing only fonts are constructed as follows, independently of the upstream package name." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:873 +#: guix-git/doc/contributing.texi:903 msgid "The name of a package containing only one font family starts with @code{font-}; it is followed by the foundry name and a dash @code{-} if the foundry is known, and the font family name, in which spaces are replaced by dashes (and as usual, all upper case letters are transformed to lower case). For example, the Gentium font family by SIL is packaged under the name @code{font-sil-gentium}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:882 +#: guix-git/doc/contributing.texi:912 msgid "For a package containing several font families, the name of the collection is used in the place of the font family name. For instance, the Liberation fonts consist of three families, Liberation Sans, Liberation Serif and Liberation Mono. These could be packaged separately under the names @code{font-liberation-sans} and so on; but as they are distributed together under a common name, we prefer to package them together as @code{font-liberation}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:888 +#: guix-git/doc/contributing.texi:918 msgid "In the case where several formats of the same font family or font collection are packaged separately, a short form of the format, prepended by a dash, is added to the package name. We use @code{-ttf} for TrueType fonts, @code{-otf} for OpenType fonts and @code{-type1} for PostScript Type 1 fonts." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:896 +#: guix-git/doc/contributing.texi:926 msgid "In general our code follows the GNU Coding Standards (@pxref{Top,,, standards, GNU Coding Standards}). However, they do not say much about Scheme, so here are some additional rules." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:904 -#: guix-git/doc/contributing.texi:905 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:934 +#: guix-git/doc/contributing.texi:935 #, no-wrap msgid "Programming Paradigm" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "How to compose your elements." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:911 -#: guix-git/doc/contributing.texi:912 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:941 +#: guix-git/doc/contributing.texi:942 #, no-wrap msgid "Modules" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Where to store your code?" msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:922 -#: guix-git/doc/contributing.texi:923 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:952 +#: guix-git/doc/contributing.texi:953 #, no-wrap msgid "Data Types and Pattern Matching" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Implementing data structures." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:937 -#: guix-git/doc/contributing.texi:938 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:967 +#: guix-git/doc/contributing.texi:968 #, no-wrap msgid "Formatting Code" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Writing conventions." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:910 +#: guix-git/doc/contributing.texi:940 msgid "Scheme code in Guix is written in a purely functional style. One exception is code that involves input/output, and procedures that implement low-level concepts, such as the @code{memoize} procedure." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:918 +#: guix-git/doc/contributing.texi:948 msgid "Guile modules that are meant to be used on the builder side must live in the @code{(guix build @dots{})} name space. They must not refer to other Guix or GNU modules. However, it is OK for a ``host-side'' module to use a build-side module." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:921 +#: guix-git/doc/contributing.texi:951 msgid "Modules that deal with the broader GNU system should be in the @code{(gnu @dots{})} name space rather than @code{(guix @dots{})}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:930 +#: guix-git/doc/contributing.texi:960 msgid "The tendency in classical Lisp is to use lists to represent everything, and then to browse them ``by hand'' using @code{car}, @code{cdr}, @code{cadr}, and co. There are several problems with that style, notably the fact that it is hard to read, error-prone, and a hindrance to proper type error reports." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:936 +#: guix-git/doc/contributing.texi:966 msgid "Guix code should define appropriate data types (for instance, using @code{define-record-type*}) rather than abuse lists. In addition, it should use pattern matching, via Guile’s @code{(ice-9 match)} module, especially when matching lists (@pxref{Pattern Matching,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:940 +#: guix-git/doc/contributing.texi:970 #, no-wrap msgid "formatting code" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:941 +#: guix-git/doc/contributing.texi:971 #, no-wrap msgid "coding style" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:948 +#: guix-git/doc/contributing.texi:978 msgid "When writing Scheme code, we follow common wisdom among Scheme programmers. In general, we follow the @url{https://mumble.net/~campbell/scheme/style.txt, Riastradh's Lisp Style Rules}. This document happens to describe the conventions mostly used in Guile’s code too. It is very thoughtful and well written, so please do read it." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:955 +#: guix-git/doc/contributing.texi:985 msgid "Some special forms introduced in Guix, such as the @code{substitute*} macro, have special indentation rules. These are defined in the @file{.dir-locals.el} file, which Emacs automatically uses. Also note that Emacs-Guix provides @code{guix-devel-mode} mode that indents and highlights Guix code properly (@pxref{Development,,, emacs-guix, The Emacs-Guix Reference Manual})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:956 +#: guix-git/doc/contributing.texi:986 #, no-wrap msgid "indentation, of code" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:957 +#: guix-git/doc/contributing.texi:987 #, no-wrap msgid "formatting, of code" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:960 +#: guix-git/doc/contributing.texi:990 msgid "If you do not use Emacs, please make sure to let your editor knows these rules. To automatically indent a package definition, you can also run:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:963 +#: guix-git/doc/contributing.texi:993 #, no-wrap -msgid "./etc/indent-code.el gnu/packages/@var{file}.scm @var{package}\n" +msgid "./pre-inst-env guix style @var{package}\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:969 -msgid "This automatically indents the definition of @var{package} in @file{gnu/packages/@var{file}.scm} by running Emacs in batch mode. To indent a whole file, omit the second argument:" -msgstr "" - -#. type: example -#: guix-git/doc/contributing.texi:972 -#, no-wrap -msgid "./etc/indent-code.el gnu/services/@var{file}.scm\n" +#: guix-git/doc/contributing.texi:997 +msgid "@xref{Invoking guix style}, for more information." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:974 +#: guix-git/doc/contributing.texi:998 #, no-wrap msgid "Vim, Scheme code editing" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:980 +#: guix-git/doc/contributing.texi:1004 msgid "If you are editing code with Vim, we recommend that you run @code{:set autoindent} so that your code is automatically indented as you type. Additionally, @uref{https://www.vim.org/scripts/script.php?script_id=3998, @code{paredit.vim}} may help you deal with all these parentheses." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:984 +#: guix-git/doc/contributing.texi:1008 msgid "We require all top-level procedures to carry a docstring. This requirement can be relaxed for simple private procedures in the @code{(guix build @dots{})} name space, though." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:987 +#: guix-git/doc/contributing.texi:1011 msgid "Procedures should not have more than four positional parameters. Use keyword parameters for procedures that take more than four parameters." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1001 +#: guix-git/doc/contributing.texi:1025 msgid "Development is done using the Git distributed version control system. Thus, access to the repository is not strictly necessary. We welcome contributions in the form of patches as produced by @code{git format-patch} sent to the @email{guix-patches@@gnu.org} mailing list (@pxref{submitting patches,, Submitting patches to a project, git, Git User Manual}). Contributors are encouraged to take a moment to set some Git repository options (@pxref{Configuring Git}) first, which can improve the readability of patches. Seasoned Guix developers may also want to look at the section on commit access (@pxref{Commit Access})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1008 +#: guix-git/doc/contributing.texi:1032 msgid "This mailing list is backed by a Debbugs instance, which allows us to keep track of submissions (@pxref{Tracking Bugs and Patches}). Each message sent to that mailing list gets a new tracking number assigned; people can then follow up on the submission by sending email to @code{@var{NNN}@@debbugs.gnu.org}, where @var{NNN} is the tracking number (@pxref{Sending a Patch Series})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1012 +#: guix-git/doc/contributing.texi:1036 msgid "Please write commit logs in the ChangeLog format (@pxref{Change Logs,,, standards, GNU Coding Standards}); you can check the commit history for examples." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1015 +#: guix-git/doc/contributing.texi:1039 msgid "Before submitting a patch that adds or modifies a package definition, please run through this check list:" msgstr "" #. type: code{#1} -#: guix-git/doc/contributing.texi:1017 guix-git/doc/contributing.texi:1223 +#: guix-git/doc/contributing.texi:1041 guix-git/doc/contributing.texi:1251 #, no-wrap msgid "git format-patch" msgstr "" #. type: code{#1} -#: guix-git/doc/contributing.texi:1018 +#: guix-git/doc/contributing.texi:1042 #, no-wrap msgid "git-format-patch" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1025 +#: guix-git/doc/contributing.texi:1049 msgid "When generating your patches with @code{git format-patch} or @code{git send-email}, we recommend using the option @code{--base=}, perhaps with the value @code{auto}. This option adds a note to the patch stating which commit the patch is based on. This helps reviewers understand how to apply and review your patches." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1031 +#: guix-git/doc/contributing.texi:1055 msgid "If the authors of the packaged software provide a cryptographic signature for the release tarball, make an effort to verify the authenticity of the archive. For a detached GPG signature file this would be done with the @code{gpg --verify} command." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1035 +#: guix-git/doc/contributing.texi:1059 msgid "Take some time to provide an adequate synopsis and description for the package. @xref{Synopses and Descriptions}, for some guidelines." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1040 +#: guix-git/doc/contributing.texi:1064 msgid "Run @code{guix lint @var{package}}, where @var{package} is the name of the new or modified package, and fix any errors it reports (@pxref{Invoking guix lint})." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1044 +#: guix-git/doc/contributing.texi:1068 +msgid "Run @code{guix style @var{package}} to format the new package definition according to the project's conventions (@pxref{Invoking guix style})." +msgstr "" + +#. type: enumerate +#: guix-git/doc/contributing.texi:1072 msgid "Make sure the package builds on your platform, using @code{guix build @var{package}}." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1052 +#: guix-git/doc/contributing.texi:1080 msgid "We recommend you also try building the package on other supported platforms. As you may not have access to actual hardware platforms, we recommend using the @code{qemu-binfmt-service-type} to emulate them. In order to enable it, add the @code{virtualization} service module and the following service to the list of services in your @code{operating-system} configuration:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:1057 +#: guix-git/doc/contributing.texi:1085 #, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -1507,17 +1548,17 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1060 +#: guix-git/doc/contributing.texi:1088 msgid "Then reconfigure your system." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1065 +#: guix-git/doc/contributing.texi:1093 msgid "You can then build packages for different platforms by specifying the @code{--system} option. For example, to build the \"hello\" package for the armhf or aarch64 architectures, you would run the following commands, respectively:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1068 +#: guix-git/doc/contributing.texi:1096 #, no-wrap msgid "" "guix build --system=armhf-linux --rounds=2 hello\n" @@ -1525,231 +1566,231 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1071 +#: guix-git/doc/contributing.texi:1099 #, no-wrap msgid "bundling" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1074 +#: guix-git/doc/contributing.texi:1102 msgid "Make sure the package does not use bundled copies of software already available as separate packages." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1083 +#: guix-git/doc/contributing.texi:1111 msgid "Sometimes, packages include copies of the source code of their dependencies as a convenience for users. However, as a distribution, we want to make sure that such packages end up using the copy we already have in the distribution, if there is one. This improves resource usage (the dependency is built and stored only once), and allows the distribution to make transverse changes such as applying security updates for a given software package in a single place and have them affect the whole system---something that bundled copies prevent." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1092 +#: guix-git/doc/contributing.texi:1120 msgid "Take a look at the profile reported by @command{guix size} (@pxref{Invoking guix size}). This will allow you to notice references to other packages unwillingly retained. It may also help determine whether to split the package (@pxref{Packages with Multiple Outputs}), and which optional dependencies should be used. In particular, avoid adding @code{texlive} as a dependency: because of its extreme size, use the @code{texlive-tiny} package or @code{texlive-union} procedure instead." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1097 +#: guix-git/doc/contributing.texi:1125 msgid "For important changes, check that dependent packages (if applicable) are not affected by the change; @code{guix refresh --list-dependent @var{package}} will help you do that (@pxref{Invoking guix refresh})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1099 +#: guix-git/doc/contributing.texi:1127 #, no-wrap msgid "branching strategy" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1100 +#: guix-git/doc/contributing.texi:1128 #, no-wrap msgid "rebuild scheduling strategy" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1103 +#: guix-git/doc/contributing.texi:1131 msgid "Depending on the number of dependent packages and thus the amount of rebuilding induced, commits go to different branches, along these lines:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1105 +#: guix-git/doc/contributing.texi:1133 #, no-wrap msgid "300 dependent packages or less" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1107 +#: guix-git/doc/contributing.texi:1135 msgid "@code{master} branch (non-disruptive changes)." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1108 +#: guix-git/doc/contributing.texi:1136 #, no-wrap msgid "between 300 and 1,800 dependent packages" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1114 +#: guix-git/doc/contributing.texi:1142 msgid "@code{staging} branch (non-disruptive changes). This branch is intended to be merged in @code{master} every 6 weeks or so. Topical changes (e.g., an update of the GNOME stack) can instead go to a specific branch (say, @code{gnome-updates}). This branch is not expected to be buildable or usable until late in its development process." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1115 +#: guix-git/doc/contributing.texi:1143 #, no-wrap msgid "more than 1,800 dependent packages" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1120 +#: guix-git/doc/contributing.texi:1148 msgid "@code{core-updates} branch (may include major and potentially disruptive changes). This branch is intended to be merged in @code{master} every 6 months or so. This branch is not expected to be buildable or usable until late in its development process." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1127 +#: guix-git/doc/contributing.texi:1155 msgid "All these branches are @uref{https://@value{SUBSTITUTE-SERVER-1}, tracked by our build farm} and merged into @code{master} once everything has been successfully built. This allows us to fix issues before they hit users, and to reduce the window during which pre-built binaries are not available." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1136 +#: guix-git/doc/contributing.texi:1164 msgid "When we decide to start building the @code{staging} or @code{core-updates} branches, they will be forked and renamed with the suffix @code{-frozen}, at which time only bug fixes may be pushed to the frozen branches. The @code{core-updates} and @code{staging} branches will remain open to accept patches for the next cycle. Please ask on the mailing list or IRC if unsure where to place a patch." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1138 +#: guix-git/doc/contributing.texi:1166 #, no-wrap msgid "determinism, of build processes" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1139 +#: guix-git/doc/contributing.texi:1167 #, no-wrap msgid "reproducible builds, checking" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1143 +#: guix-git/doc/contributing.texi:1171 msgid "Check whether the package's build process is deterministic. This typically means checking whether an independent build of the package yields the exact same result that you obtained, bit for bit." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1146 +#: guix-git/doc/contributing.texi:1174 msgid "A simple way to do that is by building the same package several times in a row on your machine (@pxref{Invoking guix build}):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1149 +#: guix-git/doc/contributing.texi:1177 #, no-wrap msgid "guix build --rounds=2 my-package\n" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1153 +#: guix-git/doc/contributing.texi:1181 msgid "This is enough to catch a class of common non-determinism issues, such as timestamps or randomly-generated output in the build result." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1163 +#: guix-git/doc/contributing.texi:1191 msgid "Another option is to use @command{guix challenge} (@pxref{Invoking guix challenge}). You may run it once the package has been committed and built by @code{@value{SUBSTITUTE-SERVER-1}} to check whether it obtains the same result as you did. Better yet: Find another machine that can build it and run @command{guix publish}. Since the remote build machine is likely different from yours, this can catch non-determinism issues related to the hardware---e.g., use of different instruction set extensions---or to the operating system kernel---e.g., reliance on @code{uname} or @file{/proc} files." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1169 +#: guix-git/doc/contributing.texi:1197 msgid "When writing documentation, please use gender-neutral wording when referring to people, such as @uref{https://en.wikipedia.org/wiki/Singular_they, singular ``they''@comma{} ``their''@comma{} ``them''}, and so forth." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1173 +#: guix-git/doc/contributing.texi:1201 msgid "Verify that your patch contains only one set of related changes. Bundling unrelated changes together makes reviewing harder and slower." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1176 +#: guix-git/doc/contributing.texi:1204 msgid "Examples of unrelated changes include the addition of several packages, or a package update along with fixes to that package." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1181 -msgid "Please follow our code formatting rules, possibly running the @command{etc/indent-code.el} script to do that automatically for you (@pxref{Formatting Code})." +#: guix-git/doc/contributing.texi:1209 +msgid "Please follow our code formatting rules, possibly running @command{guix style} script to do that automatically for you (@pxref{Formatting Code})." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1189 +#: guix-git/doc/contributing.texi:1217 msgid "When possible, use mirrors in the source URL (@pxref{Invoking guix download}). Use reliable URLs, not generated ones. For instance, GitHub archives are not necessarily identical from one generation to the next, so in this case it's often better to clone the repository. Don't use the @command{name} field in the URL: it is not very useful and if the name changes, the URL will probably be wrong." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1193 +#: guix-git/doc/contributing.texi:1221 msgid "Check if Guix builds (@pxref{Building from Git}) and address the warnings, especially those about use of undefined symbols." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1196 +#: guix-git/doc/contributing.texi:1224 msgid "Make sure your changes do not break Guix and simulate a @code{guix pull} with:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1198 +#: guix-git/doc/contributing.texi:1226 #, no-wrap msgid "guix pull --url=/path/to/your/checkout --profile=/tmp/guix.master\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1211 +#: guix-git/doc/contributing.texi:1239 msgid "When posting a patch to the mailing list, use @samp{[PATCH] @dots{}} as a subject, if your patch is to be applied on a branch other than @code{master}, say @code{core-updates}, specify it in the subject like @samp{[PATCH core-updates] @dots{}}. You may use your email client or the @command{git send-email} command (@pxref{Sending a Patch Series}). We prefer to get patches in plain text messages, either inline or as MIME attachments. You are advised to pay attention if your email client changes anything like line breaks or indentation which could potentially break the patches." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1216 +#: guix-git/doc/contributing.texi:1244 msgid "Expect some delay when you submit your very first patch to @email{guix-patches@@gnu.org}. You have to wait until you get an acknowledgement with the assigned tracking number. Future acknowledgements should not be delayed." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1219 +#: guix-git/doc/contributing.texi:1247 msgid "When a bug is resolved, please close the thread by sending an email to @email{@var{NNN}-done@@debbugs.gnu.org}." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1220 guix-git/doc/contributing.texi:1221 +#: guix-git/doc/contributing.texi:1248 guix-git/doc/contributing.texi:1249 #, no-wrap msgid "Configuring Git" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1222 +#: guix-git/doc/contributing.texi:1250 #, no-wrap msgid "git configuration" msgstr "" #. type: code{#1} -#: guix-git/doc/contributing.texi:1224 guix-git/doc/contributing.texi:1259 +#: guix-git/doc/contributing.texi:1252 guix-git/doc/contributing.texi:1287 #, no-wrap msgid "git send-email" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1232 +#: guix-git/doc/contributing.texi:1260 msgid "If you have not done so already, you may wish to set a name and email that will be associated with your commits (@pxref{telling git your name, , Telling Git your name, git, Git User Manual}). If you wish to use a different name or email just for commits in this repository, you can use @command{git config --local}, or edit @file{.git/config} in the repository instead of @file{~/.gitconfig}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1238 +#: guix-git/doc/contributing.texi:1266 msgid "We provide some default settings in @file{etc/git/gitconfig} which modify how patches are generated, making them easier to read and apply. These settings can be applied by manually copying them to @file{.git/config} in your checkout, or by telling Git to include the whole file:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1241 +#: guix-git/doc/contributing.texi:1269 #, no-wrap msgid "git config --local include.path ../etc/git/gitconfig\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1245 +#: guix-git/doc/contributing.texi:1273 msgid "From then on, any changes to @file{etc/git/gitconfig} would automatically take effect." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1250 +#: guix-git/doc/contributing.texi:1278 msgid "Since the first patch in a series must be sent separately (@pxref{Sending a Patch Series}), it can also be helpful to tell @command{git format-patch} to handle the e-mail threading instead of @command{git send-email}:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1254 +#: guix-git/doc/contributing.texi:1282 #, no-wrap msgid "" "git config --local format.thread shallow\n" @@ -1757,184 +1798,184 @@ msgid "" msgstr "" #. type: anchor{#1} -#: guix-git/doc/contributing.texi:1256 guix-git/doc/contributing.texi:1258 +#: guix-git/doc/contributing.texi:1284 guix-git/doc/contributing.texi:1286 #, no-wrap msgid "Sending a Patch Series" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1258 +#: guix-git/doc/contributing.texi:1286 #, no-wrap msgid "patch series" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1269 +#: guix-git/doc/contributing.texi:1297 msgid "When sending a patch series (e.g., using @code{git send-email}), please first send one message to @email{guix-patches@@gnu.org}, and then send subsequent patches to @email{@var{NNN}@@debbugs.gnu.org} to make sure they are kept together. See @uref{https://debbugs.gnu.org/Advanced.html, the Debbugs documentation} for more information. You can install @command{git send-email} with @command{guix install git:send-email}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1275 +#: guix-git/doc/contributing.texi:1303 msgid "This section describes how the Guix project tracks its bug reports and patch submissions." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1282 -#: guix-git/doc/contributing.texi:1283 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1310 +#: guix-git/doc/contributing.texi:1311 #, no-wrap msgid "The Issue Tracker" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "The official bug and patch tracker." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1296 -#: guix-git/doc/contributing.texi:1297 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1324 +#: guix-git/doc/contributing.texi:1325 #, no-wrap msgid "Debbugs User Interfaces" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "Ways to interact with Debbugs." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1336 -#: guix-git/doc/contributing.texi:1337 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1364 +#: guix-git/doc/contributing.texi:1365 #, no-wrap msgid "Debbugs Usertags" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "Tag reports with custom labels." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1285 +#: guix-git/doc/contributing.texi:1313 #, no-wrap msgid "bug reports, tracking" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1286 +#: guix-git/doc/contributing.texi:1314 #, no-wrap msgid "patch submissions, tracking" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1287 +#: guix-git/doc/contributing.texi:1315 #, no-wrap msgid "issue tracking" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1288 +#: guix-git/doc/contributing.texi:1316 #, no-wrap msgid "Debbugs, issue tracking system" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1295 +#: guix-git/doc/contributing.texi:1323 msgid "Bug reports and patch submissions are currently tracked using the Debbugs instance at @uref{https://bugs.gnu.org}. Bug reports are filed against the @code{guix} ``package'' (in Debbugs parlance), by sending email to @email{bug-guix@@gnu.org}, while patch submissions are filed against the @code{guix-patches} package by sending email to @email{guix-patches@@gnu.org} (@pxref{Submitting Patches})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1301 +#: guix-git/doc/contributing.texi:1329 msgid "A web interface (actually @emph{two} web interfaces!) are available to browse issues:" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1310 +#: guix-git/doc/contributing.texi:1338 msgid "@url{https://issues.guix.gnu.org} provides a pleasant interface@footnote{The web interface at @url{https://issues.guix.gnu.org} is powered by Mumi, a nice piece of software written in Guile, and you can help! See @url{https://git.elephly.net/gitweb.cgi?p=software/mumi.git}.} to browse bug reports and patches, and to participate in discussions;" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1312 +#: guix-git/doc/contributing.texi:1340 msgid "@url{https://bugs.gnu.org/guix} lists bug reports;" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1314 +#: guix-git/doc/contributing.texi:1342 msgid "@url{https://bugs.gnu.org/guix-patches} lists patch submissions." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1319 +#: guix-git/doc/contributing.texi:1347 msgid "To view discussions related to issue number @var{n}, go to @indicateurl{https://issues.guix.gnu.org/@var{n}} or @indicateurl{https://bugs.gnu.org/@var{n}}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1322 +#: guix-git/doc/contributing.texi:1350 msgid "If you use Emacs, you may find it more convenient to interact with issues using @file{debbugs.el}, which you can install with:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1325 +#: guix-git/doc/contributing.texi:1353 #, no-wrap msgid "guix install emacs-debbugs\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1328 +#: guix-git/doc/contributing.texi:1356 msgid "For example, to list all open issues on @code{guix-patches}, hit:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1331 +#: guix-git/doc/contributing.texi:1359 #, no-wrap msgid "@kbd{C-u} @kbd{M-x} debbugs-gnu @kbd{RET} @kbd{RET} guix-patches @kbd{RET} n y\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1335 +#: guix-git/doc/contributing.texi:1363 msgid "@xref{Top,,, debbugs-ug, Debbugs User Guide}, for more information on this nifty tool!" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1339 +#: guix-git/doc/contributing.texi:1367 #, no-wrap msgid "usertags, for debbugs" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1340 +#: guix-git/doc/contributing.texi:1368 #, no-wrap msgid "Debbugs usertags" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1346 +#: guix-git/doc/contributing.texi:1374 msgid "Debbugs provides a feature called @dfn{usertags} that allows any user to tag any bug with an arbitrary label. Bugs can be searched by usertag, so this is a handy way to organize bugs@footnote{The list of usertags is public information, and anyone can modify any user's list of usertags, so keep that in mind if you choose to use this feature.}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1352 +#: guix-git/doc/contributing.texi:1380 msgid "For example, to view all the bug reports (or patches, in the case of @code{guix-patches}) tagged with the usertag @code{powerpc64le-linux} for the user @code{guix}, open a URL like the following in a web browser: @url{https://debbugs.gnu.org/cgi-bin/pkgreport.cgi?tag=powerpc64le-linux;users=guix}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1356 +#: guix-git/doc/contributing.texi:1384 msgid "For more information on how to use usertags, please refer to the documentation for Debbugs or the documentation for whatever tool you use to interact with Debbugs." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1361 +#: guix-git/doc/contributing.texi:1389 msgid "In Guix, we are experimenting with usertags to keep track of architecture-specific issues. To facilitate collaboration, all our usertags are associated with the single user @code{guix}. The following usertags currently exist for that user:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1364 guix-git/doc/guix.texi:556 +#: guix-git/doc/contributing.texi:1392 guix-git/doc/guix.texi:557 #, no-wrap msgid "powerpc64le-linux" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1372 +#: guix-git/doc/contributing.texi:1400 msgid "The purpose of this usertag is to make it easy to find the issues that matter most for the @code{powerpc64le-linux} system type. Please assign this usertag to bugs or patches that affect @code{powerpc64le-linux} but not other system types. In addition, you may use it to identify issues that for some reason are particularly important for the @code{powerpc64le-linux} system type, even if the issue affects other system types, too." msgstr "" @@ -1942,134 +1983,134 @@ msgstr "" #. type: item #. #-#-#-#-# guix.pot (guix manual checkout) #-#-#-#-# #. type: cindex -#: guix-git/doc/contributing.texi:1373 guix-git/doc/guix.texi:3070 -#: guix-git/doc/guix.texi:4771 +#: guix-git/doc/contributing.texi:1401 guix-git/doc/guix.texi:3087 +#: guix-git/doc/guix.texi:4789 #, no-wrap msgid "reproducibility" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1377 +#: guix-git/doc/contributing.texi:1405 msgid "For issues related to reproducibility. For example, it would be appropriate to assign this usertag to a bug report for a package that fails to build reproducibly." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1384 +#: guix-git/doc/contributing.texi:1412 msgid "If you're a committer and you want to add a usertag, just start using it with the @code{guix} user. If the usertag proves useful to you, consider updating this section of the manual so that others will know what your usertag means." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1388 +#: guix-git/doc/contributing.texi:1416 #, no-wrap msgid "commit access, for developers" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1394 -msgid "Everyone can contribute to Guix without having commit access (@pxref{Submitting Patches}). However, for frequent contributors, having write access to the repository can be convenient. Commit access should not be thought of as a ``badge of honor'' but rather as a responsibility a contributor is willing to take to help the project." +#: guix-git/doc/contributing.texi:1427 +msgid "Everyone can contribute to Guix without having commit access (@pxref{Submitting Patches}). However, for frequent contributors, having write access to the repository can be convenient. As a rule of thumb, a contributor should have accumulated fifty (50) reviewed commits to be considered as a committer and have sustained their activity in the project for at least 6 months. This ensures enough interactions with the contributor, which is essential for mentoring and assessing whether they are ready to become a committer. Commit access should not be thought of as a ``badge of honor'' but rather as a responsibility a contributor is willing to take to help the project." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1398 +#: guix-git/doc/contributing.texi:1431 msgid "The following sections explain how to get commit access, how to be ready to push commits, and the policies and community expectations for commits pushed upstream." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1399 +#: guix-git/doc/contributing.texi:1432 #, no-wrap msgid "Applying for Commit Access" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1403 +#: guix-git/doc/contributing.texi:1436 msgid "When you deem it necessary, consider applying for commit access by following these steps:" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1412 +#: guix-git/doc/contributing.texi:1445 msgid "Find three committers who would vouch for you. You can view the list of committers at @url{https://savannah.gnu.org/project/memberlist.php?group=guix}. Each of them should email a statement to @email{guix-maintainers@@gnu.org} (a private alias for the collective of maintainers), signed with their OpenPGP key." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1418 +#: guix-git/doc/contributing.texi:1451 msgid "Committers are expected to have had some interactions with you as a contributor and to be able to judge whether you are sufficiently familiar with the project's practices. It is @emph{not} a judgment on the value of your work, so a refusal should rather be interpreted as ``let's try again later''." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1425 +#: guix-git/doc/contributing.texi:1458 msgid "Send @email{guix-maintainers@@gnu.org} a message stating your intent, listing the three committers who support your application, signed with the OpenPGP key you will use to sign commits, and giving its fingerprint (see below). See @uref{https://emailselfdefense.fsf.org/en/}, for an introduction to public-key cryptography with GnuPG." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1431 +#: guix-git/doc/contributing.texi:1464 msgid "Set up GnuPG such that it never uses the SHA1 hash algorithm for digital signatures, which is known to be unsafe since 2019, for instance by adding the following line to @file{~/.gnupg/gpg.conf} (@pxref{GPG Esoteric Options,,, gnupg, The GNU Privacy Guard Manual}):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1434 +#: guix-git/doc/contributing.texi:1467 #, no-wrap msgid "digest-algo sha512\n" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1439 +#: guix-git/doc/contributing.texi:1472 msgid "Maintainers ultimately decide whether to grant you commit access, usually following your referrals' recommendation." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1441 +#: guix-git/doc/contributing.texi:1474 #, no-wrap msgid "OpenPGP, signed commits" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1446 +#: guix-git/doc/contributing.texi:1479 msgid "If and once you've been given access, please send a message to @email{guix-devel@@gnu.org} to say so, again signed with the OpenPGP key you will use to sign commits (do that before pushing your first commit). That way, everyone can notice and ensure you control that OpenPGP key." msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:1447 guix-git/doc/guix.texi:17972 +#: guix-git/doc/contributing.texi:1480 guix-git/doc/guix.texi:18334 #, no-wrap msgid "Important" msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:1449 +#: guix-git/doc/contributing.texi:1482 msgid "Before you can push for the first time, maintainers must:" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1453 +#: guix-git/doc/contributing.texi:1486 msgid "add your OpenPGP key to the @code{keyring} branch;" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1456 +#: guix-git/doc/contributing.texi:1489 msgid "add your OpenPGP fingerprint to the @file{.guix-authorizations} file of the branch(es) you will commit to." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1461 +#: guix-git/doc/contributing.texi:1494 msgid "Make sure to read the rest of this section and... profit!" msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:1467 +#: guix-git/doc/contributing.texi:1500 msgid "Maintainers are happy to give commit access to people who have been contributing for some time and have a track record---don't be shy and don't underestimate your work!" msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:1471 +#: guix-git/doc/contributing.texi:1504 msgid "However, note that the project is working towards a more automated patch review and merging system, which, as a consequence, may lead us to have fewer people with commit access to the main repository. Stay tuned!" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1478 +#: guix-git/doc/contributing.texi:1511 msgid "All commits that are pushed to the central repository on Savannah must be signed with an OpenPGP key, and the public key should be uploaded to your user account on Savannah and to public key servers, such as @code{keys.openpgp.org}. To configure Git to automatically sign commits, run:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1481 +#: guix-git/doc/contributing.texi:1514 #, no-wrap msgid "" "git config commit.gpgsign true\n" @@ -2077,7 +2118,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1484 +#: guix-git/doc/contributing.texi:1517 #, no-wrap msgid "" "# Substitute the fingerprint of your public PGP key.\n" @@ -2085,347 +2126,347 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1489 +#: guix-git/doc/contributing.texi:1522 msgid "You can prevent yourself from accidentally pushing unsigned commits to Savannah by using the pre-push Git hook located at @file{etc/git/pre-push}:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1492 +#: guix-git/doc/contributing.texi:1525 #, no-wrap msgid "cp etc/git/pre-push .git/hooks/pre-push\n" msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1494 +#: guix-git/doc/contributing.texi:1527 #, no-wrap msgid "Commit Policy" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1499 +#: guix-git/doc/contributing.texi:1532 msgid "If you get commit access, please make sure to follow the policy below (discussions of the policy can take place on @email{guix-devel@@gnu.org})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1504 +#: guix-git/doc/contributing.texi:1537 msgid "Non-trivial patches should always be posted to @email{guix-patches@@gnu.org} (trivial patches include fixing typos, etc.). This mailing list fills the patch-tracking database (@pxref{Tracking Bugs and Patches})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1513 +#: guix-git/doc/contributing.texi:1546 msgid "For patches that just add a new package, and a simple one, it's OK to commit, if you're confident (which means you successfully built it in a chroot setup, and have done a reasonable copyright and license auditing). Likewise for package upgrades, except upgrades that trigger a lot of rebuilds (for example, upgrading GnuTLS or GLib). We have a mailing list for commit notifications (@email{guix-commits@@gnu.org}), so people can notice. Before pushing your changes, make sure to run @code{git pull --rebase}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1518 +#: guix-git/doc/contributing.texi:1551 msgid "When pushing a commit on behalf of somebody else, please add a @code{Signed-off-by} line at the end of the commit log message---e.g., with @command{git am --signoff}. This improves tracking of who did what." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1522 +#: guix-git/doc/contributing.texi:1555 msgid "When adding channel news entries (@pxref{Channels, Writing Channel News}), make sure they are well-formed by running the following command right before pushing:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1525 +#: guix-git/doc/contributing.texi:1558 #, no-wrap msgid "make check-channel-news\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1531 +#: guix-git/doc/contributing.texi:1564 msgid "For anything else, please post to @email{guix-patches@@gnu.org} and leave time for a review, without committing anything (@pxref{Submitting Patches}). If you didn’t receive any reply after two weeks, and if you're confident, it's OK to commit." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1534 +#: guix-git/doc/contributing.texi:1567 msgid "That last part is subject to being adjusted, allowing individuals to commit directly on non-controversial changes on parts they’re familiar with." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1535 +#: guix-git/doc/contributing.texi:1568 #, no-wrap msgid "Addressing Issues" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1546 +#: guix-git/doc/contributing.texi:1579 msgid "Peer review (@pxref{Submitting Patches}) and tools such as @command{guix lint} (@pxref{Invoking guix lint}) and the test suite (@pxref{Running the Test Suite}) should catch issues before they are pushed. Yet, commits that ``break'' functionality might occasionally go through. When that happens, there are two priorities: mitigating the impact, and understanding what happened to reduce the chance of similar incidents in the future. The responsibility for both these things primarily lies with those involved, but like everything this is a group effort." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1551 +#: guix-git/doc/contributing.texi:1584 msgid "Some issues can directly affect all users---for instance because they make @command{guix pull} fail or break core functionality, because they break major packages (at build time or run time), or because they introduce known security vulnerabilities." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1552 +#: guix-git/doc/contributing.texi:1585 #, no-wrap msgid "reverting commits" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1558 +#: guix-git/doc/contributing.texi:1591 msgid "The people involved in authoring, reviewing, and pushing such commit(s) should be at the forefront to mitigate their impact in a timely fashion: by pushing a followup commit to fix it (if possible), or by reverting it to leave time to come up with a proper fix, and by communicating with other developers about the problem." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1564 +#: guix-git/doc/contributing.texi:1597 msgid "If these persons are unavailable to address the issue in time, other committers are entitled to revert the commit(s), explaining in the commit log and on the mailing list what the problem was, with the goal of leaving time to the original committer, reviewer(s), and author(s) to propose a way forward." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1573 +#: guix-git/doc/contributing.texi:1606 msgid "Once the problem has been dealt with, it is the responsibility of those involved to make sure the situation is understood. If you are working to understand what happened, focus on gathering information and avoid assigning any blame. Do ask those involved to describe what happened, do not ask them to explain the situation---this would implicitly blame them, which is unhelpful. Accountability comes from a consensus about the problem, learning from it and improving processes so that it's less likely to reoccur." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1574 +#: guix-git/doc/contributing.texi:1607 #, no-wrap msgid "Commit Revocation" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1581 +#: guix-git/doc/contributing.texi:1614 msgid "In order to reduce the possibility of mistakes, committers will have their Savannah account removed from the Guix Savannah project and their key removed from @file{.guix-authorizations} after 12 months of inactivity; they can ask to regain commit access by emailing the maintainers, without going through the vouching process." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1591 +#: guix-git/doc/contributing.texi:1624 msgid "Maintainers@footnote{See @uref{https://guix.gnu.org/en/about} for the current list of maintainers. You can email them privately at @email{guix-maintainers@@gnu.org}.} may also revoke an individual's commit rights, as a last resort, if cooperation with the rest of the community has caused too much friction---even within the bounds of the project's code of conduct (@pxref{Contributing}). They would only do so after public or private discussion with the individual and a clear notice. Examples of behavior that hinders cooperation and could lead to such a decision include:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1593 +#: guix-git/doc/contributing.texi:1626 #, no-wrap msgid "repeated violation of the commit policy stated above;" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1594 +#: guix-git/doc/contributing.texi:1627 #, no-wrap msgid "repeated failure to take peer criticism into account;" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1595 +#: guix-git/doc/contributing.texi:1628 #, no-wrap msgid "breaching trust through a series of grave incidents." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1602 +#: guix-git/doc/contributing.texi:1635 msgid "When maintainers resort to such a decision, they notify developers on @email{guix-devel@@gnu.org}; inquiries may be sent to @email{guix-maintainers@@gnu.org}. Depending on the situation, the individual may still be welcome to contribute." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1603 +#: guix-git/doc/contributing.texi:1636 #, no-wrap msgid "Helping Out" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1610 +#: guix-git/doc/contributing.texi:1643 msgid "One last thing: the project keeps moving forward because committers not only push their own awesome changes, but also offer some of their time @emph{reviewing} and pushing other people's changes. As a committer, you're welcome to use your expertise and commit rights to help other contributors, too!" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1614 +#: guix-git/doc/contributing.texi:1647 #, no-wrap msgid "update-guix-package, updating the guix package" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1620 +#: guix-git/doc/contributing.texi:1653 msgid "It is sometimes desirable to update the @code{guix} package itself (the package defined in @code{(gnu packages package-management)}), for example to make new daemon features available for use by the @code{guix-service-type} service type. In order to simplify this task, the following command can be used:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1623 +#: guix-git/doc/contributing.texi:1656 #, no-wrap msgid "make update-guix-package\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1630 +#: guix-git/doc/contributing.texi:1663 msgid "The @code{update-guix-package} make target will use the last known @emph{commit} corresponding to @code{HEAD} in your Guix checkout, compute the hash of the Guix sources corresponding to that commit and update the @code{commit}, @code{revision} and hash of the @code{guix} package definition." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1634 +#: guix-git/doc/contributing.texi:1667 msgid "To validate that the updated @code{guix} package hashes are correct and that it can be built successfully, the following command can be run from the directory of your Guix checkout:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1637 +#: guix-git/doc/contributing.texi:1670 #, no-wrap msgid "./pre-inst-env guix build guix\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1642 +#: guix-git/doc/contributing.texi:1675 msgid "To guard against accidentally updating the @code{guix} package to a commit that others can't refer to, a check is made that the commit used has already been pushed to the Savannah-hosted Guix git repository." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1647 +#: guix-git/doc/contributing.texi:1680 msgid "This check can be disabled, @emph{at your own peril}, by setting the @code{GUIX_ALLOW_ME_TO_USE_PRIVATE_COMMIT} environment variable. When this variable is set, the updated package source is also added to the store. This is used as part of the release process of Guix." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1648 +#: guix-git/doc/contributing.texi:1681 #, no-wrap msgid "translation" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1649 +#: guix-git/doc/contributing.texi:1682 #, no-wrap msgid "l10n" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1650 +#: guix-git/doc/contributing.texi:1683 #, no-wrap msgid "i18n" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1651 +#: guix-git/doc/contributing.texi:1684 #, no-wrap msgid "native language support" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1661 +#: guix-git/doc/contributing.texi:1694 msgid "Writing code and packages is not the only way to provide a meaningful contribution to Guix. Translating to a language you speak is another example of a valuable contribution you can make. This section is designed to describe the translation process. It gives you advice on how you can get involved, what can be translated, what mistakes you should avoid and what we can do to help you!" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1667 +#: guix-git/doc/contributing.texi:1700 msgid "Guix is a big project that has multiple components that can be translated. We coordinate the translation effort on a @uref{https://translate.fedoraproject.org/projects/guix/,Weblate instance} hosted by our friends at Fedora. You will need an account to submit translations." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1674 +#: guix-git/doc/contributing.texi:1707 msgid "Some of the software packaged in Guix also contain translations. We do not host a translation platform for them. If you want to translate a package provided by Guix, you should contact their developers or find the information on their website. As an example, you can find the homepage of the @code{hello} package by typing @code{guix show hello}. On the ``homepage'' line, you will see @url{https://www.gnu.org/software/hello/} as the homepage." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1679 +#: guix-git/doc/contributing.texi:1712 msgid "Many GNU and non-GNU packages can be translated on the @uref{https://translationproject.org,Translation Project}. Some projects with multiple components have their own platform. For instance, GNOME has its own platform, @uref{https://l10n.gnome.org/,Damned Lies}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1681 +#: guix-git/doc/contributing.texi:1714 msgid "Guix has five components hosted on Weblate." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1683 +#: guix-git/doc/contributing.texi:1716 #, no-wrap msgid "@code{guix} contains all the strings from the Guix software (the" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1718 msgid "guided system installer, the package manager, etc), excluding packages." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1718 #, no-wrap msgid "@code{packages} contains the synopsis (single-sentence description" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1687 +#: guix-git/doc/contributing.texi:1720 msgid "of a package) and description (longer description) of packages in Guix." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1687 +#: guix-git/doc/contributing.texi:1720 #, no-wrap msgid "@code{website} contains the official Guix website, except for" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1689 +#: guix-git/doc/contributing.texi:1722 msgid "blog posts and multimedia content." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1689 +#: guix-git/doc/contributing.texi:1722 #, no-wrap msgid "@code{documentation-manual} corresponds to this manual." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1690 +#: guix-git/doc/contributing.texi:1723 #, no-wrap msgid "@code{documentation-cookbook} is the component for the cookbook." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1693 +#: guix-git/doc/contributing.texi:1726 #, no-wrap msgid "General Directions" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1701 +#: guix-git/doc/contributing.texi:1734 msgid "Once you get an account, you should be able to select a component from @uref{https://translate.fedoraproject.org/projects/guix/,the guix project}, and select a language. If your language does not appear in the list, go to the bottom and click on the ``Start new translation'' button. Select the language you want to translate to from the list, to start your new translation." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1706 +#: guix-git/doc/contributing.texi:1739 msgid "Like lots of other free software packages, Guix uses @uref{https://www.gnu.org/software/gettext,GNU Gettext} for its translations, with which translatable strings are extracted from the source code to so-called PO files." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1717 +#: guix-git/doc/contributing.texi:1750 msgid "Even though PO files are text files, changes should not be made with a text editor but with PO editing software. Weblate integrates PO editing functionality. Alternatively, translators can use any of various free-software tools for filling in translations, of which @uref{https://poedit.net/,Poedit} is one example, and (after logging in) @uref{https://docs.weblate.org/en/latest/user/files.html,upload} the changed file. There is also a special @uref{https://www.emacswiki.org/emacs/PoMode,PO editing mode} for users of GNU Emacs. Over time translators find out what software they are happy with and what features they need." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1722 +#: guix-git/doc/contributing.texi:1755 msgid "On Weblate, you will find various links to the editor, that will show various subsets (or all) of the strings. Have a look around and at the @uref{https://docs.weblate.org/en/latest/,documentation} to familiarize yourself with the platform." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1723 +#: guix-git/doc/contributing.texi:1756 #, no-wrap msgid "Translation Components" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1728 +#: guix-git/doc/contributing.texi:1761 msgid "In this section, we provide more detailed guidance on the translation process, as well as details on what you should or should not do. When in doubt, please contact us, we will be happy to help!" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1730 guix-git/doc/guix.texi:9420 +#: guix-git/doc/contributing.texi:1763 guix-git/doc/guix.texi:9734 #, no-wrap msgid "guix" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1735 +#: guix-git/doc/contributing.texi:1768 msgid "Guix is written in the Guile programming language, and some strings contain special formatting that is interpreted by Guile. These special formatting should be highlighted by Weblate. They start with @code{~} followed by one or more characters." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1744 +#: guix-git/doc/contributing.texi:1777 msgid "When printing the string, Guile replaces the special formatting symbols with actual values. For instance, the string @samp{ambiguous package specification `~a'} would be substituted to contain said package specification instead of @code{~a}. To properly translate this string, you must keep the formatting code in your translation, although you can place it where it makes sense in your language. For instance, the French translation says @samp{spécification du paquet « ~a » ambiguë} because the adjective needs to be placed in the end of the sentence." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1748 +#: guix-git/doc/contributing.texi:1781 msgid "If there are multiple formatting symbols, make sure to respect the order. Guile does not know in which order you intended the string to be read, so it will substitute the symbols in the same order as the English sentence." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1756 +#: guix-git/doc/contributing.texi:1789 msgid "As an example, you cannot translate @samp{package '~a' has been superseded by '~a'} by @samp{'~a' superseeds package '~a'}, because the meaning would be reversed. If @var{foo} is superseded by @var{bar}, the translation would read @samp{'foo' superseeds package 'bar'}. To work around this problem, it is possible to use more advanced formatting to select a given piece of data, instead of following the default English order. @xref{Formatted Output,,, guile, GNU Guile Reference Manual}, for more information on formatting in Guile." msgstr "" @@ -2433,98 +2474,98 @@ msgstr "" #. type: item #. #-#-#-#-# guix.pot (guix manual checkout) #-#-#-#-# #. type: cindex -#: guix-git/doc/contributing.texi:1757 guix-git/doc/guix.texi:2988 +#: guix-git/doc/contributing.texi:1790 guix-git/doc/guix.texi:3005 #, no-wrap msgid "packages" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1762 +#: guix-git/doc/contributing.texi:1795 msgid "Package descriptions occasionally contain Texinfo markup (@pxref{Synopses and Descriptions}). Texinfo markup looks like @samp{@@code@{rm -rf@}}, @samp{@@emph@{important@}}, etc. When translating, please leave markup as is." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1771 +#: guix-git/doc/contributing.texi:1804 msgid "The characters after ``@@'' form the name of the markup, and the text between ``@{'' and ``@}'' is its content. In general, you should not translate the content of markup like @code{@@code}, as it contains literal code that do not change with language. You can translate the content of formatting markup such as @code{@@emph}, @code{@@i}, @code{@@itemize}, @code{@@item}. However, do not translate the name of the markup, or it will not be recognized. Do not translate the word after @code{@@end}, it is the name of the markup that is closed at this position (e.g.@: @code{@@itemize ... @@end itemize})." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1772 +#: guix-git/doc/contributing.texi:1805 #, no-wrap msgid "documentation-manual and documentation-cookbook" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1776 +#: guix-git/doc/contributing.texi:1809 msgid "The first step to ensure a successful translation of the manual is to find and translate the following strings @emph{first}:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1778 +#: guix-git/doc/contributing.texi:1811 #, no-wrap msgid "@code{version.texi}: Translate this string as @code{version-xx.texi}," msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1781 +#: guix-git/doc/contributing.texi:1814 msgid "where @code{xx} is your language code (the one shown in the URL on weblate)." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1781 +#: guix-git/doc/contributing.texi:1814 #, no-wrap msgid "@code{contributing.texi}: Translate this string as" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1783 +#: guix-git/doc/contributing.texi:1816 msgid "@code{contributing.xx.texi}, where @code{xx} is the same language code." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1783 +#: guix-git/doc/contributing.texi:1816 #, no-wrap msgid "@code{Top}: Do not translate this string, it is important for Texinfo." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1786 +#: guix-git/doc/contributing.texi:1819 msgid "If you translate it, the document will be empty (missing a Top node). Please look for it, and register @code{Top} as its translation." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1791 +#: guix-git/doc/contributing.texi:1824 msgid "Translating these strings first ensure we can include your translation in the guix repository without breaking the make process or the @command{guix pull} machinery." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1798 +#: guix-git/doc/contributing.texi:1831 msgid "The manual and the cookbook both use Texinfo. As for @code{packages}, please keep Texinfo markup as is. There are more possible markup types in the manual than in the package descriptions. In general, do not translate the content of @code{@@code}, @code{@@file}, @code{@@var}, @code{@@value}, etc. You should translate the content of formatting markup such as @code{@@emph}, @code{@@i}, etc." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1806 +#: guix-git/doc/contributing.texi:1839 msgid "The manual contains sections that can be referred to by name by @code{@@ref}, @code{@@xref} and @code{@@pxref}. We have a mechanism in place so you do not have to translate their content. If you keep the English title, we will automatically replace it with your translation of that title. This ensures that Texinfo will always be able to find the node. If you decide to change the translation of the title, the references will automatically be updated and you will not have to update them all yourself." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1816 +#: guix-git/doc/contributing.texi:1849 msgid "When translating references from the cookbook to the manual, you need to replace the name of the manual and the name of the section. For instance, to translate @code{@@pxref@{Defining Packages,,, guix, GNU Guix Reference Manual@}}, you would replace @code{Defining Packages} with the title of that section in the translated manual @emph{only} if that title is translated. If the title is not translated in your language yet, do not translate it here, or the link will be broken. Replace @code{guix} with @code{guix.xx} where @code{xx} is your language code. @code{GNU Guix Reference Manual} is the text of the link. You can translate it however you wish." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1817 +#: guix-git/doc/contributing.texi:1850 #, no-wrap msgid "website" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1824 +#: guix-git/doc/contributing.texi:1857 msgid "The website pages are written using SXML, an s-expression version of HTML, the basic language of the web. We have a process to extract translatable strings from the source, and replace complex s-expressions with a more familiar XML markup, where each markup is numbered. Translators can arbitrarily change the ordering, as in the following example." msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1831 +#: guix-git/doc/contributing.texi:1864 #, no-wrap msgid "" "#. TRANSLATORS: Defining Packages is a section name\n" @@ -2535,138 +2576,138 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1834 +#: guix-git/doc/contributing.texi:1867 msgid "Note that you need to include the same markups. You cannot skip any." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1842 +#: guix-git/doc/contributing.texi:1875 msgid "In case you make a mistake, the component might fail to build properly with your language, or even make guix pull fail. To prevent that, we have a process in place to check the content of the files before pushing to our repository. We will not be able to update the translation for your language in Guix, so we will notify you (through weblate and/or by email) so you get a chance to fix the issue." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1843 +#: guix-git/doc/contributing.texi:1876 #, no-wrap msgid "Outside of Weblate" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1846 +#: guix-git/doc/contributing.texi:1879 msgid "Currently, some parts of Guix cannot be translated on Weblate, help wanted!" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1848 +#: guix-git/doc/contributing.texi:1881 #, no-wrap msgid "@command{guix pull} news can be translated in @file{news.scm}, but is not" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1854 +#: guix-git/doc/contributing.texi:1887 msgid "available from Weblate. If you want to provide a translation, you can prepare a patch as described above, or simply send us your translation with the name of the news entry you translated and your language. @xref{Writing Channel News}, for more information about channel news." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1854 +#: guix-git/doc/contributing.texi:1887 #, no-wrap msgid "Guix blog posts cannot currently be translated." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1855 +#: guix-git/doc/contributing.texi:1888 #, no-wrap msgid "The installer script (for foreign distributions) is entirely in English." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1856 +#: guix-git/doc/contributing.texi:1889 #, no-wrap msgid "Some of the libraries Guix uses cannot be translated or are translated" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1858 +#: guix-git/doc/contributing.texi:1891 msgid "outside of the Guix project. Guile itself is not internationalized." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1858 +#: guix-git/doc/contributing.texi:1891 #, no-wrap msgid "Other manuals linked from this manual or the cookbook might not be" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1860 +#: guix-git/doc/contributing.texi:1893 msgid "translated." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1862 +#: guix-git/doc/contributing.texi:1895 #, no-wrap msgid "Translation Infrastructure" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1873 +#: guix-git/doc/contributing.texi:1906 msgid "Weblate is backed by a git repository from which it discovers new strings to translate and pushes new and updated translations. Normally, it would be enough to give it commit access to our repositories. However, we decided to use a separate repository for two reasons. First, we would have to give Weblate commit access and authorize its signing key, but we do not trust it in the same way we trust guix developers, especially since we do not manage the instance ourselves. Second, if translators mess something up, it can break the generation of the website and/or guix pull for all our users, independently of their language." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1877 +#: guix-git/doc/contributing.texi:1910 msgid "For these reasons, we use a dedicated repository to host translations, and we synchronize it with our guix and artworks repositories after checking no issue was introduced in the translation." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1883 +#: guix-git/doc/contributing.texi:1916 msgid "Developers can download the latest PO files from weblate in the Guix repository by running the @command{make download-po} command. It will automatically download the latest files from weblate, reformat them to a canonical form, and check they do not contain issues. The manual needs to be built again to check for additional issues that might crash Texinfo." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1887 +#: guix-git/doc/contributing.texi:1920 msgid "Before pushing new translation files, developers should add them to the make machinery so the translations are actually available. The process differs for the various components." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1889 +#: guix-git/doc/contributing.texi:1922 #, no-wrap msgid "New po files for the @code{guix} and @code{packages} components must" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1892 +#: guix-git/doc/contributing.texi:1925 msgid "be registered by adding the new language to @file{po/guix/LINGUAS} or @file{po/packages/LINGUAS}." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1892 +#: guix-git/doc/contributing.texi:1925 #, no-wrap msgid "New po files for the @code{documentation-manual} component must be" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1898 +#: guix-git/doc/contributing.texi:1931 msgid "registered by adding the file name to @code{DOC_PO_FILES} in @file{po/doc/local.mk}, the generated @file{%D%/guix.xx.texi} manual to @code{info_TEXINFOS} in @file{doc/local.mk} and the generated @file{%D%/guix.xx.texi} and @file{%D%/contributing.xx.texi} to @code{TRANSLATED_INFO} also in @file{doc/local.mk}." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1898 +#: guix-git/doc/contributing.texi:1931 #, no-wrap msgid "New po files for the @code{documentation-cookbook} component must be" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1904 +#: guix-git/doc/contributing.texi:1937 msgid "registered by adding the file name to @code{DOC_COOKBOOK_PO_FILES} in @file{po/doc/local.mk}, the generated @file{%D%/guix-cookbook.xx.texi} manual to @code{info_TEXINFOS} in @file{doc/local.mk} and the generated @file{%D%/guix-cookbook.xx.texi} to @code{TRANSLATED_INFO} also in @file{doc/local.mk}." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1904 +#: guix-git/doc/contributing.texi:1937 #, no-wrap msgid "New po files for the @code{website} component must be added to the" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1909 +#: guix-git/doc/contributing.texi:1942 msgid "@code{guix-artwork} repository, in @file{website/po/}. @file{website/po/LINGUAS} and @file{website/po/ietf-tags.scm} must be updated accordingly (see @file{website/i18n-howto.txt} for more information on the process)." msgstr "" @@ -2689,7 +2730,7 @@ msgstr "version-fa.texi" #. type: copying #: guix-git/doc/guix.texi:103 -msgid "Copyright @copyright{} 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" +msgid "Copyright @copyright{} 2012-2022 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021, 2022 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021, 2022 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021, 2022 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021, 2022 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" msgstr "" #. type: copying @@ -2850,7 +2891,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:192 -#: guix-git/doc/guix.texi:402 guix-git/doc/guix.texi:403 +#: guix-git/doc/guix.texi:403 guix-git/doc/guix.texi:404 #, no-wrap msgid "Introduction" msgstr "" @@ -2862,7 +2903,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:197 -#: guix-git/doc/guix.texi:589 guix-git/doc/guix.texi:590 +#: guix-git/doc/guix.texi:600 guix-git/doc/guix.texi:601 #, no-wrap msgid "Installation" msgstr "" @@ -2874,7 +2915,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:213 -#: guix-git/doc/guix.texi:2049 guix-git/doc/guix.texi:2050 +#: guix-git/doc/guix.texi:2066 guix-git/doc/guix.texi:2067 #, no-wrap msgid "System Installation" msgstr "" @@ -2885,8 +2926,8 @@ msgid "Installing the whole operating system." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:2777 -#: guix-git/doc/guix.texi:2778 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:2794 +#: guix-git/doc/guix.texi:2795 #, no-wrap msgid "Getting Started" msgstr "" @@ -2898,7 +2939,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:230 -#: guix-git/doc/guix.texi:2985 guix-git/doc/guix.texi:2986 +#: guix-git/doc/guix.texi:3002 guix-git/doc/guix.texi:3003 #, no-wrap msgid "Package Management" msgstr "" @@ -2910,7 +2951,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:253 -#: guix-git/doc/guix.texi:5053 guix-git/doc/guix.texi:5054 +#: guix-git/doc/guix.texi:5071 guix-git/doc/guix.texi:5072 #, no-wrap msgid "Channels" msgstr "" @@ -2922,7 +2963,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:267 -#: guix-git/doc/guix.texi:5581 guix-git/doc/guix.texi:5582 +#: guix-git/doc/guix.texi:5599 guix-git/doc/guix.texi:5600 #, no-wrap msgid "Development" msgstr "" @@ -2934,7 +2975,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:275 -#: guix-git/doc/guix.texi:6799 guix-git/doc/guix.texi:6800 +#: guix-git/doc/guix.texi:6842 guix-git/doc/guix.texi:6843 #, no-wrap msgid "Programming Interface" msgstr "" @@ -2945,8 +2986,8 @@ msgid "Using Guix in Scheme." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:294 -#: guix-git/doc/guix.texi:10774 guix-git/doc/guix.texi:10775 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:295 +#: guix-git/doc/guix.texi:11088 guix-git/doc/guix.texi:11089 #, no-wrap msgid "Utilities" msgstr "" @@ -2957,8 +2998,8 @@ msgid "Package management commands." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:320 -#: guix-git/doc/guix.texi:14278 guix-git/doc/guix.texi:14279 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:321 +#: guix-git/doc/guix.texi:14635 guix-git/doc/guix.texi:14636 #, no-wrap msgid "System Configuration" msgstr "" @@ -2969,8 +3010,8 @@ msgid "Configuring the operating system." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:36881 -#: guix-git/doc/guix.texi:36882 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37371 +#: guix-git/doc/guix.texi:37372 #, no-wrap msgid "Home Configuration" msgstr "" @@ -2981,8 +3022,8 @@ msgid "Configuring the home environment." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37721 -#: guix-git/doc/guix.texi:37722 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38210 +#: guix-git/doc/guix.texi:38211 #, no-wrap msgid "Documentation" msgstr "مستندات" @@ -2993,8 +3034,8 @@ msgid "Browsing software user manuals." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:389 -#: guix-git/doc/guix.texi:37787 guix-git/doc/guix.texi:37788 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:390 +#: guix-git/doc/guix.texi:38276 guix-git/doc/guix.texi:38277 #, no-wrap msgid "Installing Debugging Files" msgstr "" @@ -3005,8 +3046,8 @@ msgid "Feeding the debugger." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37942 -#: guix-git/doc/guix.texi:37943 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38431 +#: guix-git/doc/guix.texi:38432 #, no-wrap msgid "Security Updates" msgstr "" @@ -3017,8 +3058,8 @@ msgid "Deploying security fixes quickly." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:394 -#: guix-git/doc/guix.texi:38057 guix-git/doc/guix.texi:38058 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:395 +#: guix-git/doc/guix.texi:38546 guix-git/doc/guix.texi:38547 #, no-wrap msgid "Bootstrapping" msgstr "" @@ -3029,7 +3070,7 @@ msgid "GNU/Linux built from scratch." msgstr "" #. type: node -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38349 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38838 #, no-wrap msgid "Porting" msgstr "" @@ -3045,8 +3086,8 @@ msgid "Your help needed!" msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38397 -#: guix-git/doc/guix.texi:38398 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38886 +#: guix-git/doc/guix.texi:38887 #, no-wrap msgid "Acknowledgments" msgstr "" @@ -3057,8 +3098,8 @@ msgid "Thanks!" msgstr "سپاس!" #. type: appendix -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38419 -#: guix-git/doc/guix.texi:38420 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38908 +#: guix-git/doc/guix.texi:38909 #, no-wrap msgid "GNU Free Documentation License" msgstr "" @@ -3069,8 +3110,8 @@ msgid "The license of this manual." msgstr "" #. type: unnumbered -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38425 -#: guix-git/doc/guix.texi:38426 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38914 +#: guix-git/doc/guix.texi:38915 #, no-wrap msgid "Concept Index" msgstr "" @@ -3081,8 +3122,8 @@ msgid "Concepts." msgstr "" #. type: unnumbered -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38429 -#: guix-git/doc/guix.texi:38430 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38918 +#: guix-git/doc/guix.texi:38919 #, no-wrap msgid "Programming Index" msgstr "" @@ -3098,2130 +3139,2153 @@ msgid "--- The Detailed Node Listing ---" msgstr "" #. type: section -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 -#: guix-git/doc/guix.texi:431 guix-git/doc/guix.texi:432 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 +#: guix-git/doc/guix.texi:432 guix-git/doc/guix.texi:433 #, no-wrap msgid "Managing Software the Guix Way" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 msgid "What's special." msgstr "" #. type: section -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 -#: guix-git/doc/guix.texi:486 guix-git/doc/guix.texi:487 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 +#: guix-git/doc/guix.texi:487 guix-git/doc/guix.texi:488 #, no-wrap msgid "GNU Distribution" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 msgid "The packages and tools." msgstr "" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:631 guix-git/doc/guix.texi:632 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:642 guix-git/doc/guix.texi:643 #, no-wrap msgid "Binary Installation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Getting Guix running in no time!" msgstr "" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:871 guix-git/doc/guix.texi:872 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:882 guix-git/doc/guix.texi:883 #, no-wrap msgid "Requirements" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Software needed to build and run Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:957 guix-git/doc/guix.texi:958 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:969 guix-git/doc/guix.texi:970 #, no-wrap msgid "Running the Test Suite" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Testing Guix." msgstr "" #. type: section #: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:207 -#: guix-git/doc/guix.texi:629 guix-git/doc/guix.texi:1054 -#: guix-git/doc/guix.texi:1055 +#: guix-git/doc/guix.texi:640 guix-git/doc/guix.texi:1066 +#: guix-git/doc/guix.texi:1067 #, no-wrap msgid "Setting Up the Daemon" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Preparing the build daemon's environment." msgstr "" #. type: node -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:1525 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:1542 #, no-wrap msgid "Invoking guix-daemon" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Running the build daemon." msgstr "" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:1827 guix-git/doc/guix.texi:1828 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:1844 guix-git/doc/guix.texi:1845 #, no-wrap msgid "Application Setup" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Application-specific setup." msgstr "" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:2012 guix-git/doc/guix.texi:2013 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:2029 guix-git/doc/guix.texi:2030 #, no-wrap msgid "Upgrading Guix" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Upgrading Guix and its build daemon." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1076 guix-git/doc/guix.texi:1077 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1088 guix-git/doc/guix.texi:1089 #, no-wrap msgid "Build Environment Setup" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Preparing the isolated build environment." msgstr "" #. type: node -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1195 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1212 #, no-wrap msgid "Daemon Offload Setup" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Offloading builds to remote machines." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1434 guix-git/doc/guix.texi:1435 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1451 guix-git/doc/guix.texi:1452 #, no-wrap msgid "SELinux Support" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Using an SELinux policy for the daemon." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:1470 -#: guix-git/doc/guix.texi:2083 guix-git/doc/guix.texi:2085 -#: guix-git/doc/guix.texi:2086 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:1487 +#: guix-git/doc/guix.texi:2100 guix-git/doc/guix.texi:2102 +#: guix-git/doc/guix.texi:2103 #, no-wrap msgid "Limitations" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "What you can expect." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2111 guix-git/doc/guix.texi:2112 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2128 guix-git/doc/guix.texi:2129 #, no-wrap msgid "Hardware Considerations" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Supported hardware." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2146 guix-git/doc/guix.texi:2147 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2163 guix-git/doc/guix.texi:2164 #, no-wrap msgid "USB Stick and DVD Installation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Preparing the installation medium." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2227 guix-git/doc/guix.texi:2228 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2244 guix-git/doc/guix.texi:2245 #, no-wrap msgid "Preparing for Installation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Networking, partitioning, etc." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2250 guix-git/doc/guix.texi:2251 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2267 guix-git/doc/guix.texi:2268 #, no-wrap msgid "Guided Graphical Installation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Easy graphical installation." msgstr "" #. type: section #: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:225 -#: guix-git/doc/guix.texi:2083 guix-git/doc/guix.texi:2281 -#: guix-git/doc/guix.texi:2282 +#: guix-git/doc/guix.texi:2100 guix-git/doc/guix.texi:2298 +#: guix-git/doc/guix.texi:2299 #, no-wrap msgid "Manual Installation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Manual installation for wizards." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2660 guix-git/doc/guix.texi:2661 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2677 guix-git/doc/guix.texi:2678 #, no-wrap msgid "After System Installation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "When installation succeeded." msgstr "" #. type: node -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2694 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2711 #, no-wrap msgid "Installing Guix in a VM" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Guix System playground." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2745 guix-git/doc/guix.texi:2746 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2762 guix-git/doc/guix.texi:2763 #, no-wrap msgid "Building the Installation Image" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "How this comes to be." msgstr "" #. type: node -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 -#: guix-git/doc/guix.texi:2301 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 +#: guix-git/doc/guix.texi:2318 #, no-wrap msgid "Keyboard Layout and Networking and Partitioning" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 msgid "Initial setup." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 -#: guix-git/doc/guix.texi:2571 guix-git/doc/guix.texi:2572 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 +#: guix-git/doc/guix.texi:2588 guix-git/doc/guix.texi:2589 #, no-wrap msgid "Proceeding with the Installation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 msgid "Installing." msgstr "" #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:3019 guix-git/doc/guix.texi:3020 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3036 guix-git/doc/guix.texi:3037 #, no-wrap msgid "Features" msgstr "ویژگی‌ها" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "How Guix will make your life brighter." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:3109 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3126 #, no-wrap msgid "Invoking guix package" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Package installation, removal, etc." msgstr "" #. type: section #: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:243 -#: guix-git/doc/guix.texi:3017 guix-git/doc/guix.texi:3738 -#: guix-git/doc/guix.texi:3739 +#: guix-git/doc/guix.texi:3034 guix-git/doc/guix.texi:3756 +#: guix-git/doc/guix.texi:3757 #, no-wrap msgid "Substitutes" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Downloading pre-built binaries." msgstr "" #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4074 guix-git/doc/guix.texi:4075 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4092 guix-git/doc/guix.texi:4093 #, no-wrap msgid "Packages with Multiple Outputs" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Single source package, multiple outputs." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4128 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4146 #, no-wrap msgid "Invoking guix gc" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Running the garbage collector." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4338 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4356 #, no-wrap msgid "Invoking guix pull" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Fetching the latest Guix and distribution." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4585 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4603 #, no-wrap msgid "Invoking guix time-machine" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Running an older revision of Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4640 guix-git/doc/guix.texi:4641 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4658 guix-git/doc/guix.texi:4659 #, no-wrap msgid "Inferiors" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Interacting with another revision of Guix." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4768 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4786 #, no-wrap msgid "Invoking guix describe" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Display information about your Guix revision." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4863 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4881 #, no-wrap msgid "Invoking guix archive" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Exporting and importing store files." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3764 guix-git/doc/guix.texi:3765 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3782 guix-git/doc/guix.texi:3783 #, no-wrap msgid "Official Substitute Servers" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "One particular source of substitutes." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3794 guix-git/doc/guix.texi:3795 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3812 guix-git/doc/guix.texi:3813 #, no-wrap msgid "Substitute Server Authorization" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How to enable or disable substitutes." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3864 guix-git/doc/guix.texi:3865 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3882 guix-git/doc/guix.texi:3883 #, no-wrap msgid "Getting Substitutes from Other Servers" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "Substitute diversity." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3969 guix-git/doc/guix.texi:3970 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3987 guix-git/doc/guix.texi:3988 #, no-wrap msgid "Substitute Authentication" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How Guix verifies substitutes." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4004 guix-git/doc/guix.texi:4005 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4022 guix-git/doc/guix.texi:4023 #, no-wrap msgid "Proxy Settings" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How to get substitutes via proxy." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4016 guix-git/doc/guix.texi:4017 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4034 guix-git/doc/guix.texi:4035 #, no-wrap msgid "Substitution Failure" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "What happens when substitution fails." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4044 guix-git/doc/guix.texi:4045 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4062 guix-git/doc/guix.texi:4063 #, no-wrap msgid "On Trusting Binaries" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How can you trust that binary blob?" msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5086 guix-git/doc/guix.texi:5087 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5104 guix-git/doc/guix.texi:5105 #, no-wrap msgid "Specifying Additional Channels" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Extending the package collection." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5136 guix-git/doc/guix.texi:5137 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5154 guix-git/doc/guix.texi:5155 #, no-wrap msgid "Using a Custom Guix Channel" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Using a customized Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5158 guix-git/doc/guix.texi:5159 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5176 guix-git/doc/guix.texi:5177 #, no-wrap msgid "Replicating Guix" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Running the @emph{exact same} Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5199 guix-git/doc/guix.texi:5200 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5217 guix-git/doc/guix.texi:5218 #, no-wrap msgid "Channel Authentication" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How Guix verifies what it fetches." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5239 guix-git/doc/guix.texi:5240 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5257 guix-git/doc/guix.texi:5258 #, no-wrap msgid "Channels with Substitutes" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Using channels with available substitutes." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5264 guix-git/doc/guix.texi:5265 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5282 guix-git/doc/guix.texi:5283 #, no-wrap msgid "Creating a Channel" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How to write your custom channel." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5331 guix-git/doc/guix.texi:5332 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5349 guix-git/doc/guix.texi:5350 #, no-wrap msgid "Package Modules in a Sub-directory" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Specifying the channel's package modules location." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5345 guix-git/doc/guix.texi:5346 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5363 guix-git/doc/guix.texi:5364 #, no-wrap msgid "Declaring Channel Dependencies" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How to depend on other channels." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5387 guix-git/doc/guix.texi:5388 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5405 guix-git/doc/guix.texi:5406 #, no-wrap msgid "Specifying Channel Authorizations" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Defining channel authors authorizations." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5488 guix-git/doc/guix.texi:5489 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5506 guix-git/doc/guix.texi:5507 #, no-wrap msgid "Primary URL" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Distinguishing mirror to original." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5511 guix-git/doc/guix.texi:5512 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5529 guix-git/doc/guix.texi:5530 #, no-wrap msgid "Writing Channel News" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Communicating information to channel's users." msgstr "" #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:5603 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:5621 #, no-wrap msgid "Invoking guix shell" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Spawning one-off software environments." msgstr "" #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:5956 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:5993 #, no-wrap msgid "Invoking guix environment" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Setting up development environments." msgstr "" #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6325 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6368 #, no-wrap msgid "Invoking guix pack" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Creating software bundles." msgstr "" #. type: section -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6711 guix-git/doc/guix.texi:6712 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6754 guix-git/doc/guix.texi:6755 #, no-wrap msgid "The GCC toolchain" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Working with languages supported by GCC." msgstr "" #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6737 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6780 #, no-wrap msgid "Invoking guix git authenticate" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Authenticating Git repositories." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:6841 guix-git/doc/guix.texi:6842 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:6885 guix-git/doc/guix.texi:6886 #, no-wrap msgid "Package Modules" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Packages from the programmer's viewpoint." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:289 -#: guix-git/doc/guix.texi:6839 guix-git/doc/guix.texi:6903 -#: guix-git/doc/guix.texi:6904 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:290 +#: guix-git/doc/guix.texi:6883 guix-git/doc/guix.texi:6947 +#: guix-git/doc/guix.texi:6948 #, no-wrap msgid "Defining Packages" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Defining new packages." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:7554 guix-git/doc/guix.texi:7555 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:7612 guix-git/doc/guix.texi:7613 #, no-wrap msgid "Defining Package Variants" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Customizing packages." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:7821 guix-git/doc/guix.texi:7822 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:7879 guix-git/doc/guix.texi:7880 #, no-wrap msgid "Build Systems" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Specifying how packages are built." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:8861 guix-git/doc/guix.texi:8862 -#: guix-git/doc/guix.texi:9292 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:8918 guix-git/doc/guix.texi:8919 +#: guix-git/doc/guix.texi:9427 #, no-wrap msgid "Build Phases" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Phases of the build process of a package." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9055 guix-git/doc/guix.texi:9056 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9116 guix-git/doc/guix.texi:9117 #, no-wrap msgid "Build Utilities" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Helpers for your package definitions and more." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9369 guix-git/doc/guix.texi:9370 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9504 guix-git/doc/guix.texi:9505 +#, no-wrap +msgid "Search Paths" +msgstr "" + +#. type: menuentry +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +msgid "Declaring search path environment variables." +msgstr "" + +#. type: section +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9683 guix-git/doc/guix.texi:9684 #, no-wrap msgid "The Store" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Manipulating the package store." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9522 guix-git/doc/guix.texi:9523 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9836 guix-git/doc/guix.texi:9837 #, no-wrap msgid "Derivations" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Low-level interface to package derivations." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9716 guix-git/doc/guix.texi:9717 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10030 guix-git/doc/guix.texi:10031 #, no-wrap msgid "The Store Monad" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Purely functional interface to the store." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:10035 guix-git/doc/guix.texi:10036 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10349 guix-git/doc/guix.texi:10350 #, no-wrap msgid "G-Expressions" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Manipulating build expressions." msgstr "" #. type: node -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:10674 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10988 #, no-wrap msgid "Invoking guix repl" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 +#: guix-git/doc/guix.texi:288 msgid "Programming Guix in Guile." msgstr "" #. type: node -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 -#: guix-git/doc/guix.texi:7103 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 +#: guix-git/doc/guix.texi:7147 #, no-wrap msgid "package Reference" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 msgid "The package data type." msgstr "" #. type: node -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 -#: guix-git/doc/guix.texi:7362 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 +#: guix-git/doc/guix.texi:7420 #, no-wrap msgid "origin Reference" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 msgid "The origin data type." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:10801 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:11115 #, no-wrap msgid "Invoking guix build" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Building packages from the command line." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11699 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12013 #, no-wrap msgid "Invoking guix edit" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Editing package definitions." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11729 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12043 #, no-wrap msgid "Invoking guix download" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Downloading a file and printing its hash." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11787 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12101 #, no-wrap msgid "Invoking guix hash" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Computing the cryptographic hash of a file." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11877 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12192 #, no-wrap msgid "Invoking guix import" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Importing package definitions." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12412 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12727 #, no-wrap msgid "Invoking guix refresh" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Updating package definitions." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12784 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13099 #, no-wrap msgid "Invoking guix style" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Styling package definitions." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12880 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13237 #, no-wrap msgid "Invoking guix lint" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Finding errors in package definitions." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13056 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13413 #, no-wrap msgid "Invoking guix size" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Profiling disk usage." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13200 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13557 #, no-wrap msgid "Invoking guix graph" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Visualizing the graph of packages." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13481 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13838 #, no-wrap msgid "Invoking guix publish" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Sharing substitutes." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13750 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14107 #, no-wrap msgid "Invoking guix challenge" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Challenging substitute servers." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13933 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14290 #, no-wrap msgid "Invoking guix copy" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Copying to and from a remote store." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13996 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14353 #, no-wrap msgid "Invoking guix container" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Process isolation." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:14050 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14407 #, no-wrap msgid "Invoking guix weather" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Assessing substitute availability." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:14180 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14537 #, no-wrap msgid "Invoking guix processes" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Listing client processes." msgstr "" #. type: section -#: guix-git/doc/guix.texi:313 guix-git/doc/guix.texi:10802 +#: guix-git/doc/guix.texi:314 guix-git/doc/guix.texi:11116 #, no-wrap msgid "Invoking @command{guix build}" msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:10855 guix-git/doc/guix.texi:10856 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11169 guix-git/doc/guix.texi:11170 #, no-wrap msgid "Common Build Options" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Build options for most commands." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11010 guix-git/doc/guix.texi:11011 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11324 guix-git/doc/guix.texi:11325 #, no-wrap msgid "Package Transformation Options" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Creating variants of packages." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11381 guix-git/doc/guix.texi:11382 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11695 guix-git/doc/guix.texi:11696 #, no-wrap msgid "Additional Build Options" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Options specific to 'guix build'." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11619 guix-git/doc/guix.texi:11620 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11933 guix-git/doc/guix.texi:11934 #, no-wrap msgid "Debugging Build Failures" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Real life packaging experience." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14324 guix-git/doc/guix.texi:14325 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:14681 guix-git/doc/guix.texi:14682 #, no-wrap msgid "Using the Configuration System" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Customizing your GNU system." msgstr "" #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14575 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:14932 #, no-wrap msgid "operating-system Reference" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Detail of operating-system declarations." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14798 guix-git/doc/guix.texi:14799 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15155 guix-git/doc/guix.texi:15156 #, no-wrap msgid "File Systems" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring file system mounts." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15151 guix-git/doc/guix.texi:15152 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15508 guix-git/doc/guix.texi:15509 #, no-wrap msgid "Mapped Devices" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Block device extra processing." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15300 guix-git/doc/guix.texi:15301 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15657 guix-git/doc/guix.texi:15658 #, no-wrap msgid "Swap Space" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Backing RAM with disk space." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15400 guix-git/doc/guix.texi:15401 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15757 guix-git/doc/guix.texi:15758 #, no-wrap msgid "User Accounts" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Specifying user accounts." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:2308 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15581 -#: guix-git/doc/guix.texi:15582 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:2325 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:15938 +#: guix-git/doc/guix.texi:15939 #, no-wrap msgid "Keyboard Layout" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "How the system interprets key strokes." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1835 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15727 -#: guix-git/doc/guix.texi:15728 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:1852 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:16084 +#: guix-git/doc/guix.texi:16085 #, no-wrap msgid "Locales" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Language and cultural convention settings." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:345 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15867 -#: guix-git/doc/guix.texi:15868 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:346 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:16224 +#: guix-git/doc/guix.texi:16225 #, no-wrap msgid "Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Specifying system services." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34056 guix-git/doc/guix.texi:34057 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34493 guix-git/doc/guix.texi:34494 #, no-wrap msgid "Setuid Programs" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Programs running with root privileges." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1984 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:34140 -#: guix-git/doc/guix.texi:34141 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:2001 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:34579 +#: guix-git/doc/guix.texi:34580 #, no-wrap msgid "X.509 Certificates" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Authenticating HTTPS servers." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1878 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:34203 -#: guix-git/doc/guix.texi:34204 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:1895 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:34642 +#: guix-git/doc/guix.texi:34643 #, no-wrap msgid "Name Service Switch" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring libc's name service switch." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34341 guix-git/doc/guix.texi:34342 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34780 guix-git/doc/guix.texi:34781 #, no-wrap msgid "Initial RAM Disk" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Linux-Libre bootstrapping." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34536 guix-git/doc/guix.texi:34537 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34975 guix-git/doc/guix.texi:34976 #, no-wrap msgid "Bootloader Configuration" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring the boot loader." msgstr "" #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34834 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:35273 #, no-wrap msgid "Invoking guix system" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Instantiating a system configuration." msgstr "" #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:35425 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:35881 #, no-wrap msgid "Invoking guix deploy" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Deploying a system configuration to a remote host." msgstr "" #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:35631 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:36121 #, no-wrap msgid "Running Guix in a VM" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "How to run Guix System in a virtual machine." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:381 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:35765 -#: guix-git/doc/guix.texi:35766 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:382 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:36255 +#: guix-git/doc/guix.texi:36256 #, no-wrap msgid "Defining Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Adding new service definitions." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:341 +#: guix-git/doc/guix.texi:342 msgid "Home Environment Configuration" msgstr "" #. type: node -#: guix-git/doc/guix.texi:343 guix-git/doc/guix.texi:36944 -#: guix-git/doc/guix.texi:37478 +#: guix-git/doc/guix.texi:344 guix-git/doc/guix.texi:37434 +#: guix-git/doc/guix.texi:37974 #, no-wrap msgid "Invoking guix home" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:343 +#: guix-git/doc/guix.texi:344 msgid "Instantiating a home environment configuration." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:15953 guix-git/doc/guix.texi:15954 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:16310 guix-git/doc/guix.texi:16311 #, no-wrap msgid "Base Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Essential system services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:16880 guix-git/doc/guix.texi:16881 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17242 guix-git/doc/guix.texi:17243 #, no-wrap msgid "Scheduled Job Execution" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The mcron service." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17030 guix-git/doc/guix.texi:17031 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17392 guix-git/doc/guix.texi:17393 #, no-wrap msgid "Log Rotation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The rottlog service." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17143 guix-git/doc/guix.texi:17144 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17505 guix-git/doc/guix.texi:17506 #, no-wrap msgid "Networking Setup" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Setting up network interfaces." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17561 guix-git/doc/guix.texi:17562 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17923 guix-git/doc/guix.texi:17924 #, no-wrap msgid "Networking Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Firewall, SSH daemon, etc." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19020 guix-git/doc/guix.texi:19021 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19382 guix-git/doc/guix.texi:19383 #, no-wrap msgid "Unattended Upgrades" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Automated system upgrades." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19158 guix-git/doc/guix.texi:19159 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19520 guix-git/doc/guix.texi:19521 #, no-wrap msgid "X Window" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Graphical display." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19556 guix-git/doc/guix.texi:19557 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19918 guix-git/doc/guix.texi:19919 #, no-wrap msgid "Printing Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Local and remote printer support." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:20409 guix-git/doc/guix.texi:20410 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:20771 guix-git/doc/guix.texi:20772 #, no-wrap msgid "Desktop Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "D-Bus and desktop services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:20928 guix-git/doc/guix.texi:20929 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21290 guix-git/doc/guix.texi:21291 #, no-wrap msgid "Sound Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "ALSA and Pulseaudio services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:21068 guix-git/doc/guix.texi:21069 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21430 guix-git/doc/guix.texi:21431 #, no-wrap msgid "Database Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "SQL databases, key-value stores, etc." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:21403 guix-git/doc/guix.texi:21404 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21765 guix-git/doc/guix.texi:21766 #, no-wrap msgid "Mail Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "IMAP, POP3, SMTP, and all that." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:23262 guix-git/doc/guix.texi:23263 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:23624 guix-git/doc/guix.texi:23625 #, no-wrap msgid "Messaging Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Messaging services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:23765 guix-git/doc/guix.texi:23766 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:24127 guix-git/doc/guix.texi:24128 #, no-wrap msgid "Telephony Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Telephony services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:24996 guix-git/doc/guix.texi:24997 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25358 guix-git/doc/guix.texi:25359 #, no-wrap msgid "Monitoring Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Monitoring services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:25507 guix-git/doc/guix.texi:25508 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25844 guix-git/doc/guix.texi:25845 #, no-wrap msgid "Kerberos Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Kerberos services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:25633 guix-git/doc/guix.texi:25634 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25970 guix-git/doc/guix.texi:25971 #, no-wrap msgid "LDAP Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "LDAP services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:26112 guix-git/doc/guix.texi:26113 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:26449 guix-git/doc/guix.texi:26450 #, no-wrap msgid "Web Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Web servers." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:27320 guix-git/doc/guix.texi:27321 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:27657 guix-git/doc/guix.texi:27658 #, no-wrap msgid "Certificate Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "TLS certificates via Let's Encrypt." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:27501 guix-git/doc/guix.texi:27502 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:27838 guix-git/doc/guix.texi:27839 #, no-wrap msgid "DNS Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "DNS daemons." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28246 guix-git/doc/guix.texi:28247 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:28583 guix-git/doc/guix.texi:28584 #, no-wrap msgid "VPN Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "VPN daemons." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28758 guix-git/doc/guix.texi:28759 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29095 guix-git/doc/guix.texi:29096 #, no-wrap msgid "Network File System" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "NFS related services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28954 guix-git/doc/guix.texi:28955 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29291 guix-git/doc/guix.texi:29292 #, no-wrap msgid "Continuous Integration" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Cuirass and Laminar services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29240 guix-git/doc/guix.texi:29241 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29577 guix-git/doc/guix.texi:29578 #, no-wrap msgid "Power Management Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Extending battery life." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29774 guix-git/doc/guix.texi:29775 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:30139 guix-git/doc/guix.texi:30140 #, no-wrap msgid "Audio Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The MPD." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29893 guix-git/doc/guix.texi:29894 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:30258 guix-git/doc/guix.texi:30259 #, no-wrap msgid "Virtualization Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Virtualization services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:31561 guix-git/doc/guix.texi:31562 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:31926 guix-git/doc/guix.texi:31927 #, no-wrap msgid "Version Control Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Providing remote access to Git repositories." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:32897 guix-git/doc/guix.texi:32898 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33262 guix-git/doc/guix.texi:33263 #, no-wrap msgid "Game Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Game servers." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:32929 guix-git/doc/guix.texi:32930 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33294 guix-git/doc/guix.texi:33295 #, no-wrap msgid "PAM Mount Service" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Service to mount volumes when logging in." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33012 guix-git/doc/guix.texi:33013 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33377 guix-git/doc/guix.texi:33378 #, no-wrap msgid "Guix Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services relating specifically to Guix." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33290 guix-git/doc/guix.texi:33291 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33727 guix-git/doc/guix.texi:33728 #, no-wrap msgid "Linux Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services tied to the Linux kernel." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33517 guix-git/doc/guix.texi:33518 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33954 guix-git/doc/guix.texi:33955 #, no-wrap msgid "Hurd Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services specific for a Hurd System." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33559 guix-git/doc/guix.texi:33560 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33996 guix-git/doc/guix.texi:33997 #, no-wrap msgid "Miscellaneous Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Other services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35780 guix-git/doc/guix.texi:35781 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36270 guix-git/doc/guix.texi:36271 #, no-wrap msgid "Service Composition" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "The model for composing services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35836 guix-git/doc/guix.texi:35837 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36326 guix-git/doc/guix.texi:36327 #, no-wrap msgid "Service Types and Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "Types and services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35973 guix-git/doc/guix.texi:35974 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36463 guix-git/doc/guix.texi:36464 #, no-wrap msgid "Service Reference" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "API reference." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:36292 guix-git/doc/guix.texi:36293 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36782 guix-git/doc/guix.texi:36783 #, no-wrap msgid "Shepherd Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "A particular type of service." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:36511 guix-git/doc/guix.texi:36512 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:37001 guix-git/doc/guix.texi:37002 #, fuzzy, no-wrap #| msgid "Documentation" msgid "Complex Configurations" msgstr "مستندات" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "Defining bindings for complex configurations." msgstr "" #. type: section -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 -#: guix-git/doc/guix.texi:37806 guix-git/doc/guix.texi:37807 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 +#: guix-git/doc/guix.texi:38295 guix-git/doc/guix.texi:38296 #, no-wrap msgid "Separate Debug Info" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 msgid "Installing 'debug' outputs." msgstr "" #. type: section -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 -#: guix-git/doc/guix.texi:37879 guix-git/doc/guix.texi:37880 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 +#: guix-git/doc/guix.texi:38368 guix-git/doc/guix.texi:38369 #, no-wrap msgid "Rebuilding Debug Info" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 msgid "Building missing debug info." msgstr "" #. type: node -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 -#: guix-git/doc/guix.texi:38098 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 +#: guix-git/doc/guix.texi:38587 #, no-wrap msgid "Reduced Binary Seed Bootstrap" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 msgid "A Bootstrap worthy of GNU." msgstr "" #. type: section -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 -#: guix-git/doc/guix.texi:38173 guix-git/doc/guix.texi:38174 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 +#: guix-git/doc/guix.texi:38662 guix-git/doc/guix.texi:38663 #, no-wrap msgid "Preparing to Use the Bootstrap Binaries" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 msgid "Building that what matters most." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:405 +#: guix-git/doc/guix.texi:406 #, no-wrap msgid "purpose" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:413 +#: guix-git/doc/guix.texi:414 msgid "GNU Guix@footnote{``Guix'' is pronounced like ``geeks'', or ``ɡiːks'' using the international phonetic alphabet (IPA).} is a package management tool for and distribution of the GNU system. Guix makes it easy for unprivileged users to install, upgrade, or remove software packages, to roll back to a previous package set, to build packages from source, and generally assists with the creation and maintenance of software environments." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:414 guix-git/doc/guix.texi:489 +#: guix-git/doc/guix.texi:415 guix-git/doc/guix.texi:490 #, no-wrap msgid "Guix System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:415 +#: guix-git/doc/guix.texi:416 #, no-wrap msgid "GuixSD, now Guix System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:416 +#: guix-git/doc/guix.texi:417 #, no-wrap msgid "Guix System Distribution, now Guix System" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:425 +#: guix-git/doc/guix.texi:426 msgid "You can install GNU@tie{}Guix on top of an existing GNU/Linux system where it complements the available tools without interference (@pxref{Installation}), or you can use it as a standalone operating system distribution, @dfn{Guix@tie{}System}@footnote{We used to refer to Guix System as ``Guix System Distribution'' or ``GuixSD''. We now consider it makes more sense to group everything under the ``Guix'' banner since, after all, Guix System is readily available through the @command{guix system} command, even if you're using a different distro underneath!}. @xref{GNU Distribution}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:434 +#: guix-git/doc/guix.texi:435 #, no-wrap msgid "user interfaces" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:440 +#: guix-git/doc/guix.texi:441 msgid "Guix provides a command-line package management interface (@pxref{Package Management}), tools to help with software development (@pxref{Development}), command-line utilities for more advanced usage (@pxref{Utilities}), as well as Scheme programming interfaces (@pxref{Programming Interface})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:440 +#: guix-git/doc/guix.texi:441 #, no-wrap msgid "build daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:444 +#: guix-git/doc/guix.texi:445 msgid "Its @dfn{build daemon} is responsible for building packages on behalf of users (@pxref{Setting Up the Daemon}) and for downloading pre-built binaries from authorized sources (@pxref{Substitutes})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:445 +#: guix-git/doc/guix.texi:446 #, no-wrap msgid "extensibility of the distribution" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:446 guix-git/doc/guix.texi:6863 +#: guix-git/doc/guix.texi:447 guix-git/doc/guix.texi:6907 #, no-wrap msgid "customization, of packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:455 +#: guix-git/doc/guix.texi:456 msgid "Guix includes package definitions for many GNU and non-GNU packages, all of which @uref{https://www.gnu.org/philosophy/free-sw.html, respect the user's computing freedom}. It is @emph{extensible}: users can write their own package definitions (@pxref{Defining Packages}) and make them available as independent package modules (@pxref{Package Modules}). It is also @emph{customizable}: users can @emph{derive} specialized package definitions from existing ones, including from the command line (@pxref{Package Transformation Options})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:456 +#: guix-git/doc/guix.texi:457 #, no-wrap msgid "functional package management" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:457 +#: guix-git/doc/guix.texi:458 #, no-wrap msgid "isolation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:472 +#: guix-git/doc/guix.texi:473 msgid "Under the hood, Guix implements the @dfn{functional package management} discipline pioneered by Nix (@pxref{Acknowledgments}). In Guix, the package build and installation process is seen as a @emph{function}, in the mathematical sense. That function takes inputs, such as build scripts, a compiler, and libraries, and returns an installed package. As a pure function, its result depends solely on its inputs---for instance, it cannot refer to software or scripts that were not explicitly passed as inputs. A build function always produces the same result when passed a given set of inputs. It cannot alter the environment of the running system in any way; for instance, it cannot create, modify, or delete files outside of its build and installation directories. This is achieved by running build processes in isolated environments (or @dfn{containers}), where only their explicit inputs are visible." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:473 guix-git/doc/guix.texi:9372 +#: guix-git/doc/guix.texi:474 guix-git/doc/guix.texi:9686 #, no-wrap msgid "store" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:480 +#: guix-git/doc/guix.texi:481 msgid "The result of package build functions is @dfn{cached} in the file system, in a special directory called @dfn{the store} (@pxref{The Store}). Each package is installed in a directory of its own in the store---by default under @file{/gnu/store}. The directory name contains a hash of all the inputs used to build that package; thus, changing an input yields a different directory name." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:484 +#: guix-git/doc/guix.texi:485 msgid "This approach is the foundation for the salient features of Guix: support for transactional package upgrade and rollback, per-user installation, and garbage collection of packages (@pxref{Features})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:499 +#: guix-git/doc/guix.texi:500 msgid "Guix comes with a distribution of the GNU system consisting entirely of free software@footnote{The term ``free'' here refers to the @url{https://www.gnu.org/philosophy/free-sw.html,freedom provided to users of that software}.}. The distribution can be installed on its own (@pxref{System Installation}), but it is also possible to install Guix as a package manager on top of an installed GNU/Linux system (@pxref{Installation}). When we need to distinguish between the two, we refer to the standalone distribution as Guix@tie{}System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:505 +#: guix-git/doc/guix.texi:506 msgid "The distribution provides core GNU packages such as GNU libc, GCC, and Binutils, as well as many GNU and non-GNU applications. The complete list of available packages can be browsed @url{https://www.gnu.org/software/guix/packages,on-line} or by running @command{guix package} (@pxref{Invoking guix package}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:508 +#: guix-git/doc/guix.texi:509 #, no-wrap msgid "guix package --list-available\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:514 +#: guix-git/doc/guix.texi:515 msgid "Our goal is to provide a practical 100% free software distribution of Linux-based and other variants of GNU, with a focus on the promotion and tight integration of GNU components, and an emphasis on programs and tools that help users exert that freedom." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:516 +#: guix-git/doc/guix.texi:517 msgid "Packages are currently available on the following platforms:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:519 guix-git/doc/guix.texi:2155 +#: guix-git/doc/guix.texi:520 guix-git/doc/guix.texi:2172 #, no-wrap msgid "x86_64-linux" msgstr "" #. type: table -#: guix-git/doc/guix.texi:521 +#: guix-git/doc/guix.texi:522 msgid "Intel/AMD @code{x86_64} architecture, Linux-Libre kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:522 guix-git/doc/guix.texi:2158 +#: guix-git/doc/guix.texi:523 guix-git/doc/guix.texi:2175 #, no-wrap msgid "i686-linux" msgstr "" #. type: table -#: guix-git/doc/guix.texi:524 +#: guix-git/doc/guix.texi:525 msgid "Intel 32-bit architecture (IA32), Linux-Libre kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:525 +#: guix-git/doc/guix.texi:526 #, no-wrap msgid "armhf-linux" msgstr "" #. type: table -#: guix-git/doc/guix.texi:529 +#: guix-git/doc/guix.texi:530 msgid "ARMv7-A architecture with hard float, Thumb-2 and NEON, using the EABI hard-float application binary interface (ABI), and Linux-Libre kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:530 +#: guix-git/doc/guix.texi:531 #, no-wrap msgid "aarch64-linux" msgstr "" #. type: table -#: guix-git/doc/guix.texi:532 +#: guix-git/doc/guix.texi:533 msgid "little-endian 64-bit ARMv8-A processors, Linux-Libre kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:533 +#: guix-git/doc/guix.texi:534 #, no-wrap msgid "i586-gnu" msgstr "" #. type: table -#: guix-git/doc/guix.texi:536 +#: guix-git/doc/guix.texi:537 msgid "@uref{https://hurd.gnu.org, GNU/Hurd} on the Intel 32-bit architecture (IA32)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:542 +#: guix-git/doc/guix.texi:543 msgid "This configuration is experimental and under development. The easiest way for you to give it a try is by setting up an instance of @code{hurd-vm-service-type} on your GNU/Linux machine (@pxref{transparent-emulation-qemu, @code{hurd-vm-service-type}}). @xref{Contributing}, on how to help!" msgstr "" #. type: item -#: guix-git/doc/guix.texi:543 +#: guix-git/doc/guix.texi:544 #, no-wrap msgid "mips64el-linux (unsupported)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:549 +#: guix-git/doc/guix.texi:550 msgid "little-endian 64-bit MIPS processors, specifically the Loongson series, n32 ABI, and Linux-Libre kernel. This configuration is no longer fully supported; in particular, there is no ongoing work to ensure that this architecture still works. Should someone decide they wish to revive this architecture then the code is still available." msgstr "" #. type: item -#: guix-git/doc/guix.texi:550 +#: guix-git/doc/guix.texi:551 #, no-wrap msgid "powerpc-linux (unsupported)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:555 +#: guix-git/doc/guix.texi:556 msgid "big-endian 32-bit PowerPC processors, specifically the PowerPC G4 with AltiVec support, and Linux-Libre kernel. This configuration is not fully supported and there is no ongoing work to ensure this architecture works." msgstr "" #. type: table -#: guix-git/doc/guix.texi:566 +#: guix-git/doc/guix.texi:567 msgid "little-endian 64-bit Power ISA processors, Linux-Libre kernel. This includes POWER9 systems such as the @uref{https://www.fsf.org/news/talos-ii-mainboard-and-talos-ii-lite-mainboard-now-fsf-certified-to-respect-your-freedom, RYF Talos II mainboard}. This platform is available as a \"technology preview\": although it is supported, substitutes are not yet available from the build farm (@pxref{Substitutes}), and some packages may fail to build (@pxref{Tracking Bugs and Patches}). That said, the Guix community is actively working on improving this support, and now is a great time to try it and get involved!" msgstr "" -#. type: Plain text +#. type: item +#: guix-git/doc/guix.texi:568 +#, no-wrap +msgid "riscv64-linux" +msgstr "" + +#. type: table #: guix-git/doc/guix.texi:576 +msgid "little-endian 64-bit RISC-V processors, specifically RV64GC, and Linux-Libre kernel. This playform is available as a \"technology preview\": although it is supported, substitutes are not yet available from the build farm (@pxref{Substitutes}), and some packages may fail to build (@pxref{Tracking Bugs and Patches}). That said, the Guix community is actively working on improving this support, and now is a great time to try it and get involved!" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:586 msgid "With Guix@tie{}System, you @emph{declare} all aspects of the operating system configuration and Guix takes care of instantiating the configuration in a transactional, reproducible, and stateless fashion (@pxref{System Configuration}). Guix System uses the Linux-libre kernel, the Shepherd initialization system (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}), the well-known GNU utilities and tool chain, as well as the graphical environment or system services of your choice." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:579 -msgid "Guix System is available on all the above platforms except @code{mips64el-linux} and @code{powerpc64le-linux}." +#: guix-git/doc/guix.texi:590 +msgid "Guix System is available on all the above platforms except @code{mips64el-linux}, @code{powerpc-linux}, @code{powerpc64le-linux} and @code{riscv64-linux}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:583 +#: guix-git/doc/guix.texi:594 msgid "For information on porting to other architectures or kernels, @pxref{Porting}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:586 +#: guix-git/doc/guix.texi:597 msgid "Building this distribution is a cooperative effort, and you are invited to join! @xref{Contributing}, for information about how you can help." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:592 +#: guix-git/doc/guix.texi:603 #, no-wrap msgid "installing Guix" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:604 +#: guix-git/doc/guix.texi:615 msgid "We recommend the use of this @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, shell installer script} to install Guix on top of a running GNU/Linux system, thereafter called a @dfn{foreign distro}.@footnote{This section is concerned with the installation of the package manager, which can be done on top of a running GNU/Linux system. If, instead, you want to install the complete GNU operating system, @pxref{System Installation}.} The script automates the download, installation, and initial configuration of Guix. It should be run as the root user." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:606 guix-git/doc/guix.texi:1830 +#: guix-git/doc/guix.texi:617 guix-git/doc/guix.texi:1847 #, no-wrap msgid "foreign distro" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:607 +#: guix-git/doc/guix.texi:618 #, no-wrap msgid "directories related to foreign distro" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:612 +#: guix-git/doc/guix.texi:623 msgid "When installed on a foreign distro, GNU@tie{}Guix complements the available tools without interference. Its data lives exclusively in two directories, usually @file{/gnu/store} and @file{/var/guix}; other files on your system, such as @file{/etc}, are left untouched." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:615 +#: guix-git/doc/guix.texi:626 msgid "Once installed, Guix can be updated by running @command{guix pull} (@pxref{Invoking guix pull})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:620 +#: guix-git/doc/guix.texi:631 msgid "If you prefer to perform the installation steps manually or want to tweak them, you may find the following subsections useful. They describe the software requirements of Guix, as well as how to install it manually and get ready to use it." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:634 +#: guix-git/doc/guix.texi:645 #, no-wrap msgid "installing Guix from binaries" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:635 +#: guix-git/doc/guix.texi:646 #, no-wrap msgid "installer script" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:641 +#: guix-git/doc/guix.texi:652 msgid "This section describes how to install Guix on an arbitrary system from a self-contained tarball providing binaries for Guix and for all its dependencies. This is often quicker than installing from source, which is described in the next sections. The only requirement is to have GNU@tie{}tar and Xz." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:649 +#: guix-git/doc/guix.texi:660 msgid "We recommend the use of this @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, shell installer script}. The script automates the download, installation, and initial configuration steps described below. It should be run as the root user. As root, you can thus run this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:655 +#: guix-git/doc/guix.texi:666 #, no-wrap msgid "" "cd /tmp\n" @@ -5231,33 +5295,33 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:659 +#: guix-git/doc/guix.texi:670 msgid "When you're done, @pxref{Application Setup} for extra configuration you might need, and @ref{Getting Started} for your first steps!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:662 +#: guix-git/doc/guix.texi:673 msgid "Installing goes along these lines:" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:665 +#: guix-git/doc/guix.texi:676 #, no-wrap msgid "downloading Guix binary" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:671 +#: guix-git/doc/guix.texi:682 msgid "Download the binary tarball from @indicateurl{@value{BASE-URL}/guix-binary-@value{VERSION}.x86_64-linux.tar.xz}, where @code{x86_64-linux} can be replaced with @code{i686-linux} for an @code{i686} (32-bits) machine already running the kernel Linux, and so on (@pxref{GNU Distribution})." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:675 +#: guix-git/doc/guix.texi:686 msgid "Make sure to download the associated @file{.sig} file and to verify the authenticity of the tarball against it, along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:679 +#: guix-git/doc/guix.texi:690 #, no-wrap msgid "" "$ wget @value{BASE-URL}/guix-binary-@value{VERSION}.x86_64-linux.tar.xz.sig\n" @@ -5265,12 +5329,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:683 guix-git/doc/guix.texi:2173 +#: guix-git/doc/guix.texi:694 guix-git/doc/guix.texi:2190 msgid "If that command fails because you do not have the required public key, then run this command to import it:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:687 +#: guix-git/doc/guix.texi:698 #, no-wrap msgid "" "$ wget '@value{OPENPGP-SIGNING-KEY-URL}' \\\n" @@ -5278,22 +5342,22 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:691 guix-git/doc/guix.texi:2181 +#: guix-git/doc/guix.texi:702 guix-git/doc/guix.texi:2198 msgid "and rerun the @code{gpg --verify} command." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:694 guix-git/doc/guix.texi:2184 +#: guix-git/doc/guix.texi:705 guix-git/doc/guix.texi:2201 msgid "Take note that a warning like ``This key is not certified with a trusted signature!'' is normal." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:700 +#: guix-git/doc/guix.texi:711 msgid "Now, you need to become the @code{root} user. Depending on your distribution, you may have to run @code{su -} or @code{sudo -i}. As @code{root}, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:706 +#: guix-git/doc/guix.texi:717 #, no-wrap msgid "" "# cd /tmp\n" @@ -5303,27 +5367,27 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:711 +#: guix-git/doc/guix.texi:722 msgid "This creates @file{/gnu/store} (@pxref{The Store}) and @file{/var/guix}. The latter contains a ready-to-use profile for @code{root} (see next step)." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:714 +#: guix-git/doc/guix.texi:725 msgid "Do @emph{not} unpack the tarball on a working Guix system since that would overwrite its own essential files." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:724 +#: guix-git/doc/guix.texi:735 msgid "The @option{--warning=no-timestamp} option makes sure GNU@tie{}tar does not emit warnings about ``implausibly old time stamps'' (such warnings were triggered by GNU@tie{}tar 1.26 and older; recent versions are fine). They stem from the fact that all the files in the archive have their modification time set to 1 (which means January 1st, 1970). This is done on purpose to make sure the archive content is independent of its creation time, thus making it reproducible." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:728 +#: guix-git/doc/guix.texi:739 msgid "Make the profile available under @file{~root/.config/guix/current}, which is where @command{guix pull} will install updates (@pxref{Invoking guix pull}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:733 +#: guix-git/doc/guix.texi:744 #, no-wrap msgid "" "# mkdir -p ~root/.config/guix\n" @@ -5332,12 +5396,12 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:737 +#: guix-git/doc/guix.texi:748 msgid "Source @file{etc/profile} to augment @env{PATH} and other relevant environment variables:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:741 +#: guix-git/doc/guix.texi:752 #, no-wrap msgid "" "# GUIX_PROFILE=\"`echo ~root`/.config/guix/current\" ; \\\n" @@ -5345,22 +5409,22 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:746 +#: guix-git/doc/guix.texi:757 msgid "Create the group and user accounts for build users as explained below (@pxref{Build Environment Setup})." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:749 +#: guix-git/doc/guix.texi:760 msgid "Run the daemon, and set it to automatically start on boot." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:752 +#: guix-git/doc/guix.texi:763 msgid "If your host distro uses the systemd init system, this can be achieved with these commands:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:765 +#: guix-git/doc/guix.texi:776 #, no-wrap msgid "" "# cp ~root/.config/guix/current/lib/systemd/system/gnu-store.mount \\\n" @@ -5370,12 +5434,12 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:768 +#: guix-git/doc/guix.texi:779 msgid "You may also want to arrange for @command{guix gc} to run periodically:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:774 +#: guix-git/doc/guix.texi:785 #, no-wrap msgid "" "# cp ~root/.config/guix/current/lib/systemd/system/guix-gc.service \\\n" @@ -5385,17 +5449,17 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:778 +#: guix-git/doc/guix.texi:789 msgid "You may want to edit @file{guix-gc.service} to adjust the command line options to fit your needs (@pxref{Invoking guix gc})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:780 guix-git/doc/guix.texi:13740 +#: guix-git/doc/guix.texi:791 guix-git/doc/guix.texi:14097 msgid "If your host distro uses the Upstart init system:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:786 +#: guix-git/doc/guix.texi:797 #, no-wrap msgid "" "# initctl reload-configuration\n" @@ -5405,12 +5469,12 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:789 +#: guix-git/doc/guix.texi:800 msgid "Otherwise, you can still start the daemon manually with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:793 +#: guix-git/doc/guix.texi:804 #, no-wrap msgid "" "# ~root/.config/guix/current/bin/guix-daemon \\\n" @@ -5418,12 +5482,12 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:798 +#: guix-git/doc/guix.texi:809 msgid "Make the @command{guix} command available to other users on the machine, for instance with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:803 +#: guix-git/doc/guix.texi:814 #, no-wrap msgid "" "# mkdir -p /usr/local/bin\n" @@ -5432,12 +5496,12 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:807 +#: guix-git/doc/guix.texi:818 msgid "It is also a good idea to make the Info version of this manual available there:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:813 +#: guix-git/doc/guix.texi:824 #, no-wrap msgid "" "# mkdir -p /usr/local/share/info\n" @@ -5447,24 +5511,24 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:819 +#: guix-git/doc/guix.texi:830 msgid "That way, assuming @file{/usr/local/share/info} is in the search path, running @command{info guix} will open this manual (@pxref{Other Info Directories,,, texinfo, GNU Texinfo}, for more details on changing the Info search path)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:821 guix-git/doc/guix.texi:3798 -#: guix-git/doc/guix.texi:16494 +#: guix-git/doc/guix.texi:832 guix-git/doc/guix.texi:3816 +#: guix-git/doc/guix.texi:16851 #, no-wrap msgid "substitutes, authorization thereof" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:825 +#: guix-git/doc/guix.texi:836 msgid "To use substitutes from @code{@value{SUBSTITUTE-SERVER-1}}, @code{@value{SUBSTITUTE-SERVER-2}} or a mirror (@pxref{Substitutes}), authorize them:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:831 +#: guix-git/doc/guix.texi:842 #, no-wrap msgid "" "# guix archive --authorize < \\\n" @@ -5474,49 +5538,49 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:838 +#: guix-git/doc/guix.texi:849 msgid "If you do not enable substitutes, Guix will end up building @emph{everything} from source on your machine, making each installation and upgrade very expensive. @xref{On Trusting Binaries}, for a discussion of reasons why one might want do disable substitutes." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:843 +#: guix-git/doc/guix.texi:854 msgid "Each user may need to perform a few additional steps to make their Guix environment ready for use, @pxref{Application Setup}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:846 +#: guix-git/doc/guix.texi:857 msgid "Voilà, the installation is complete!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:849 +#: guix-git/doc/guix.texi:860 msgid "You can confirm that Guix is working by installing a sample package into the root profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:852 +#: guix-git/doc/guix.texi:863 #, no-wrap msgid "# guix install hello\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:856 +#: guix-git/doc/guix.texi:867 msgid "The binary installation tarball can be (re)produced and verified simply by running the following command in the Guix source tree:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:859 +#: guix-git/doc/guix.texi:870 #, no-wrap msgid "make guix-binary.@var{system}.tar.xz\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:863 +#: guix-git/doc/guix.texi:874 msgid "...@: which, in turn, runs:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:867 +#: guix-git/doc/guix.texi:878 #, no-wrap msgid "" "guix pack -s @var{system} --localstatedir \\\n" @@ -5524,223 +5588,228 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:870 +#: guix-git/doc/guix.texi:881 msgid "@xref{Invoking guix pack}, for more info on this handy tool." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:878 +#: guix-git/doc/guix.texi:889 msgid "This section lists requirements when building Guix from source. The build procedure for Guix is the same as for other GNU software, and is not covered here. Please see the files @file{README} and @file{INSTALL} in the Guix source tree for additional details." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:879 +#: guix-git/doc/guix.texi:890 #, no-wrap msgid "official website" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:882 +#: guix-git/doc/guix.texi:893 msgid "GNU Guix is available for download from its website at @url{https://www.gnu.org/software/guix/}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:884 +#: guix-git/doc/guix.texi:895 msgid "GNU Guix depends on the following packages:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:886 +#: guix-git/doc/guix.texi:897 #, no-wrap -msgid "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x;" +msgid "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x," +msgstr "" + +#. type: itemize +#: guix-git/doc/guix.texi:899 +msgid "version 3.0.3 or later;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:887 +#: guix-git/doc/guix.texi:899 #, no-wrap msgid "@url{https://notabug.org/cwebber/guile-gcrypt, Guile-Gcrypt}, version" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:889 +#: guix-git/doc/guix.texi:901 msgid "0.1.0 or later;" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:893 +#: guix-git/doc/guix.texi:905 msgid "@uref{https://gnutls.org/, GnuTLS}, specifically its Guile bindings (@pxref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile});" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:896 +#: guix-git/doc/guix.texi:908 msgid "@uref{https://notabug.org/guile-sqlite3/guile-sqlite3, Guile-SQLite3}, version 0.1.0 or later;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:896 +#: guix-git/doc/guix.texi:908 #, no-wrap msgid "@uref{https://notabug.org/guile-zlib/guile-zlib, Guile-zlib}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:898 +#: guix-git/doc/guix.texi:910 msgid "version 0.1.0 or later;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:898 +#: guix-git/doc/guix.texi:910 #, no-wrap msgid "@uref{https://notabug.org/guile-lzlib/guile-lzlib, Guile-lzlib};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:899 +#: guix-git/doc/guix.texi:911 #, no-wrap msgid "@uref{https://www.nongnu.org/guile-avahi/, Guile-Avahi};" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:903 +#: guix-git/doc/guix.texi:915 msgid "@uref{https://gitlab.com/guile-git/guile-git, Guile-Git}, version 0.5.0 or later;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:903 +#: guix-git/doc/guix.texi:915 #, no-wrap msgid "@uref{https://savannah.nongnu.org/projects/guile-json/, Guile-JSON}" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:905 +#: guix-git/doc/guix.texi:917 msgid "4.3.0 or later;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:905 +#: guix-git/doc/guix.texi:917 #, no-wrap msgid "@url{https://www.gnu.org/software/make/, GNU Make}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:909 +#: guix-git/doc/guix.texi:921 msgid "The following dependencies are optional:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:917 +#: guix-git/doc/guix.texi:929 msgid "Support for build offloading (@pxref{Daemon Offload Setup}) and @command{guix copy} (@pxref{Invoking guix copy}) depends on @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH}, version 0.13.0 or later." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:922 +#: guix-git/doc/guix.texi:934 msgid "@uref{https://notabug.org/guile-zstd/guile-zstd, Guile-zstd}, for zstd compression and decompression in @command{guix publish} and for substitutes (@pxref{Invoking guix publish})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:926 +#: guix-git/doc/guix.texi:938 msgid "@uref{https://ngyro.com/software/guile-semver.html, Guile-Semver} for the @code{crate} importer (@pxref{Invoking guix import})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:931 +#: guix-git/doc/guix.texi:943 msgid "@uref{https://www.nongnu.org/guile-lib/doc/ref/htmlprag/, Guile-Lib} for the @code{go} importer (@pxref{Invoking guix import}) and for some of the ``updaters'' (@pxref{Invoking guix refresh})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:935 +#: guix-git/doc/guix.texi:947 msgid "When @url{http://www.bzip.org, libbz2} is available, @command{guix-daemon} can use it to compress build logs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:939 +#: guix-git/doc/guix.texi:951 msgid "Unless @option{--disable-daemon} was passed to @command{configure}, the following packages are also needed:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:941 +#: guix-git/doc/guix.texi:953 #, no-wrap msgid "@url{https://gnupg.org/, GNU libgcrypt};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:942 +#: guix-git/doc/guix.texi:954 #, no-wrap msgid "@url{https://sqlite.org, SQLite 3};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:943 +#: guix-git/doc/guix.texi:955 #, no-wrap msgid "@url{https://gcc.gnu.org, GCC's g++}, with support for the" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:945 +#: guix-git/doc/guix.texi:957 msgid "C++11 standard." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:947 +#: guix-git/doc/guix.texi:959 #, no-wrap msgid "state directory" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:956 +#: guix-git/doc/guix.texi:968 msgid "When configuring Guix on a system that already has a Guix installation, be sure to specify the same state directory as the existing installation using the @option{--localstatedir} option of the @command{configure} script (@pxref{Directory Variables, @code{localstatedir},, standards, GNU Coding Standards}). Usually, this @var{localstatedir} option is set to the value @file{/var}. The @command{configure} script protects against unintended misconfiguration of @var{localstatedir} so you do not inadvertently corrupt your store (@pxref{The Store})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:960 +#: guix-git/doc/guix.texi:972 #, no-wrap msgid "test suite" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:966 +#: guix-git/doc/guix.texi:978 msgid "After a successful @command{configure} and @code{make} run, it is a good idea to run the test suite. It can help catch issues with the setup or environment, or bugs in Guix itself---and really, reporting test failures is a good way to help improve the software. To run the test suite, type:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:969 +#: guix-git/doc/guix.texi:981 #, no-wrap msgid "make check\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:976 +#: guix-git/doc/guix.texi:988 msgid "Test cases can run in parallel: you can use the @code{-j} option of GNU@tie{}make to speed things up. The first run may take a few minutes on a recent machine; subsequent runs will be faster because the store that is created for test purposes will already have various things in cache." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:979 +#: guix-git/doc/guix.texi:991 msgid "It is also possible to run a subset of the tests by defining the @code{TESTS} makefile variable as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:982 +#: guix-git/doc/guix.texi:994 #, no-wrap msgid "make check TESTS=\"tests/store.scm tests/cpio.scm\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:987 +#: guix-git/doc/guix.texi:999 msgid "By default, tests results are displayed at a file level. In order to see the details of every individual test cases, it is possible to define the @code{SCM_LOG_DRIVER_FLAGS} makefile variable as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:990 +#: guix-git/doc/guix.texi:1002 #, no-wrap msgid "make check TESTS=\"tests/base64.scm\" SCM_LOG_DRIVER_FLAGS=\"--brief=no\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:998 +#: guix-git/doc/guix.texi:1010 msgid "The underlying SRFI 64 custom Automake test driver used for the 'check' test suite (located at @file{build-aux/test-driver.scm}) also allows selecting which test cases to run at a finer level, via its @option{--select} and @option{--exclude} options. Here's an example, to run all the test cases from the @file{tests/packages.scm} test file whose names start with ``transaction-upgrade-entry'':" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1002 +#: guix-git/doc/guix.texi:1014 #, no-wrap msgid "" "export SCM_LOG_DRIVER_FLAGS=\"--select=^transaction-upgrade-entry\"\n" @@ -5748,114 +5817,114 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1008 +#: guix-git/doc/guix.texi:1020 msgid "Those wishing to inspect the results of failed tests directly from the command line can add the @option{--errors-only=yes} option to the @code{SCM_LOG_DRIVER_FLAGS} makefile variable and set the @code{VERBOSE} Automake makefile variable, as in:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1011 +#: guix-git/doc/guix.texi:1023 #, no-wrap msgid "make check SCM_LOG_DRIVER_FLAGS=\"--brief=no --errors-only=yes\" VERBOSE=1\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1016 +#: guix-git/doc/guix.texi:1028 msgid "The @option{--show-duration=yes} option can be used to print the duration of the individual test cases, when used in combination with @option{--brief=no}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1019 +#: guix-git/doc/guix.texi:1031 #, no-wrap msgid "make check SCM_LOG_DRIVER_FLAGS=\"--brief=no --show-duration=yes\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1023 +#: guix-git/doc/guix.texi:1035 msgid "@xref{Parallel Test Harness,,,automake,GNU Automake} for more information about the Automake Parallel Test Harness." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1028 +#: guix-git/doc/guix.texi:1040 msgid "Upon failure, please email @email{bug-guix@@gnu.org} and attach the @file{test-suite.log} file. Please specify the Guix version being used as well as version numbers of the dependencies (@pxref{Requirements}) in your message." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1032 +#: guix-git/doc/guix.texi:1044 msgid "Guix also comes with a whole-system test suite that tests complete Guix System instances. It can only run on systems where Guix is already installed, using:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1035 +#: guix-git/doc/guix.texi:1047 #, no-wrap msgid "make check-system\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1039 +#: guix-git/doc/guix.texi:1051 msgid "or, again, by defining @code{TESTS} to select a subset of tests to run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1042 +#: guix-git/doc/guix.texi:1054 #, no-wrap msgid "make check-system TESTS=\"basic mcron\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1050 +#: guix-git/doc/guix.texi:1062 msgid "These system tests are defined in the @code{(gnu tests @dots{})} modules. They work by running the operating systems under test with lightweight instrumentation in a virtual machine (VM). They can be computationally intensive or rather cheap, depending on whether substitutes are available for their dependencies (@pxref{Substitutes}). Some of them require a lot of storage space to hold VM images." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1053 +#: guix-git/doc/guix.texi:1065 msgid "Again in case of test failures, please send @email{bug-guix@@gnu.org} all the details." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1057 +#: guix-git/doc/guix.texi:1069 #, no-wrap msgid "daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1065 +#: guix-git/doc/guix.texi:1077 msgid "Operations such as building a package or running the garbage collector are all performed by a specialized process, the @dfn{build daemon}, on behalf of clients. Only the daemon may access the store and its associated database. Thus, any operation that manipulates the store goes through the daemon. For instance, command-line tools such as @command{guix package} and @command{guix build} communicate with the daemon (@i{via} remote procedure calls) to instruct it what to do." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1069 +#: guix-git/doc/guix.texi:1081 msgid "The following sections explain how to prepare the build daemon's environment. See also @ref{Substitutes}, for information on how to allow the daemon to download pre-built binaries." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1079 guix-git/doc/guix.texi:1542 +#: guix-git/doc/guix.texi:1091 guix-git/doc/guix.texi:1559 #, no-wrap msgid "build environment" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1087 +#: guix-git/doc/guix.texi:1099 msgid "In a standard multi-user setup, Guix and its daemon---the @command{guix-daemon} program---are installed by the system administrator; @file{/gnu/store} is owned by @code{root} and @command{guix-daemon} runs as @code{root}. Unprivileged users may use Guix tools to build packages or otherwise access the store, and the daemon will do it on their behalf, ensuring that the store is kept in a consistent state, and allowing built packages to be shared among users." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1088 +#: guix-git/doc/guix.texi:1100 #, no-wrap msgid "build users" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1099 +#: guix-git/doc/guix.texi:1111 msgid "When @command{guix-daemon} runs as @code{root}, you may not want package build processes themselves to run as @code{root} too, for obvious security reasons. To avoid that, a special pool of @dfn{build users} should be created for use by build processes started by the daemon. These build users need not have a shell and a home directory: they will just be used when the daemon drops @code{root} privileges in build processes. Having several such users allows the daemon to launch distinct build processes under separate UIDs, which guarantees that they do not interfere with each other---an essential feature since builds are regarded as pure functions (@pxref{Introduction})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1102 +#: guix-git/doc/guix.texi:1114 msgid "On a GNU/Linux system, a build user pool may be created like this (using Bash syntax and the @code{shadow} commands):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1114 +#: guix-git/doc/guix.texi:1126 #, no-wrap msgid "" "# groupadd --system guixbuild\n" @@ -5869,139 +5938,144 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1124 +#: guix-git/doc/guix.texi:1136 msgid "The number of build users determines how many build jobs may run in parallel, as specified by the @option{--max-jobs} option (@pxref{Invoking guix-daemon, @option{--max-jobs}}). To use @command{guix system vm} and related commands, you may need to add the build users to the @code{kvm} group so they can access @file{/dev/kvm}, using @code{-G guixbuild,kvm} instead of @code{-G guixbuild} (@pxref{Invoking guix system})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1133 +#: guix-git/doc/guix.texi:1145 msgid "The @code{guix-daemon} program may then be run as @code{root} with the following command@footnote{If your machine uses the systemd init system, dropping the @file{@var{prefix}/lib/systemd/system/guix-daemon.service} file in @file{/etc/systemd/system} will ensure that @command{guix-daemon} is automatically started. Similarly, if your machine uses the Upstart init system, drop the @file{@var{prefix}/lib/upstart/system/guix-daemon.conf} file in @file{/etc/init}.}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1136 guix-git/doc/guix.texi:1535 +#: guix-git/doc/guix.texi:1148 guix-git/doc/guix.texi:1552 #, no-wrap msgid "# guix-daemon --build-users-group=guixbuild\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1138 guix-git/doc/guix.texi:1540 +#: guix-git/doc/guix.texi:1150 guix-git/doc/guix.texi:1557 #, no-wrap msgid "chroot" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1143 +#: guix-git/doc/guix.texi:1155 msgid "This way, the daemon starts build processes in a chroot, under one of the @code{guixbuilder} users. On GNU/Linux, by default, the chroot environment contains nothing but:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1151 +#: guix-git/doc/guix.texi:1163 msgid "a minimal @code{/dev} directory, created mostly independently from the host @code{/dev}@footnote{``Mostly'', because while the set of files that appear in the chroot's @code{/dev} is fixed, most of these files can only be created if the host has them.};" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1155 +#: guix-git/doc/guix.texi:1167 msgid "the @code{/proc} directory; it only shows the processes of the container since a separate PID name space is used;" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1159 +#: guix-git/doc/guix.texi:1171 msgid "@file{/etc/passwd} with an entry for the current user and an entry for user @file{nobody};" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1162 +#: guix-git/doc/guix.texi:1174 msgid "@file{/etc/group} with an entry for the user's group;" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1166 +#: guix-git/doc/guix.texi:1178 msgid "@file{/etc/hosts} with an entry that maps @code{localhost} to @code{127.0.0.1};" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1169 +#: guix-git/doc/guix.texi:1181 msgid "a writable @file{/tmp} directory." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1178 +#: guix-git/doc/guix.texi:1187 +msgid "The chroot does not contain a @file{/home} directory, and the @env{HOME} environment variable is set to the non-existent @file{/homeless-shelter}. This helps to highlight inappropriate uses of @env{HOME} in the build scripts of packages." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:1195 msgid "You can influence the directory where the daemon stores build trees @i{via} the @env{TMPDIR} environment variable. However, the build tree within the chroot is always called @file{/tmp/guix-build-@var{name}.drv-0}, where @var{name} is the derivation name---e.g., @code{coreutils-8.24}. This way, the value of @env{TMPDIR} does not leak inside build environments, which avoids discrepancies in cases where build processes capture the name of their build tree." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:1179 guix-git/doc/guix.texi:4007 +#: guix-git/doc/guix.texi:1196 guix-git/doc/guix.texi:4025 #, no-wrap msgid "http_proxy" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:1180 guix-git/doc/guix.texi:4008 +#: guix-git/doc/guix.texi:1197 guix-git/doc/guix.texi:4026 #, no-wrap msgid "https_proxy" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1185 +#: guix-git/doc/guix.texi:1202 msgid "The daemon also honors the @env{http_proxy} and @env{https_proxy} environment variables for HTTP and HTTPS downloads it performs, be it for fixed-output derivations (@pxref{Derivations}) or for substitutes (@pxref{Substitutes})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1193 +#: guix-git/doc/guix.texi:1210 msgid "If you are installing Guix as an unprivileged user, it is still possible to run @command{guix-daemon} provided you pass @option{--disable-chroot}. However, build processes will not be isolated from one another, and not from the rest of the system. Thus, build processes may interfere with each other, and may access programs, libraries, and other files available on the system---making it much harder to view them as @emph{pure} functions." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:1196 +#: guix-git/doc/guix.texi:1213 #, no-wrap msgid "Using the Offload Facility" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1198 guix-git/doc/guix.texi:1601 +#: guix-git/doc/guix.texi:1215 guix-git/doc/guix.texi:1618 #, no-wrap msgid "offloading" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1199 +#: guix-git/doc/guix.texi:1216 #, no-wrap msgid "build hook" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1218 +#: guix-git/doc/guix.texi:1235 msgid "When desired, the build daemon can @dfn{offload} derivation builds to other machines running Guix, using the @code{offload} @dfn{build hook}@footnote{This feature is available only when @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH} is present.}. When that feature is enabled, a list of user-specified build machines is read from @file{/etc/guix/machines.scm}; every time a build is requested, for instance via @code{guix build}, the daemon attempts to offload it to one of the machines that satisfy the constraints of the derivation, in particular its system types---e.g., @code{x86_64-linux}. A single machine can have multiple system types, either because its architecture natively supports it, via emulation (@pxref{transparent-emulation-qemu, Transparent Emulation with QEMU}), or both. Missing prerequisites for the build are copied over SSH to the target machine, which then proceeds with the build; upon success the output(s) of the build are copied back to the initial machine. The offload facility comes with a basic scheduler that attempts to select the best machine. The best machine is chosen among the available machines based on criteria such as:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1224 +#: guix-git/doc/guix.texi:1241 msgid "The availability of a build slot. A build machine can have as many build slots (connections) as the value of the @code{parallel-builds} field of its @code{build-machine} object." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1228 +#: guix-git/doc/guix.texi:1245 msgid "Its relative speed, as defined via the @code{speed} field of its @code{build-machine} object." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1233 +#: guix-git/doc/guix.texi:1250 msgid "Its load. The normalized machine load must be lower than a threshold value, configurable via the @code{overload-threshold} field of its @code{build-machine} object." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1236 +#: guix-git/doc/guix.texi:1253 msgid "Disk space availability. More than a 100 MiB must be available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1239 +#: guix-git/doc/guix.texi:1256 msgid "The @file{/etc/guix/machines.scm} file typically looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:1247 +#: guix-git/doc/guix.texi:1264 #, no-wrap msgid "" "(list (build-machine\n" @@ -6014,7 +6088,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:1253 +#: guix-git/doc/guix.texi:1270 #, no-wrap msgid "" " (build-machine\n" @@ -6026,7 +6100,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:1257 +#: guix-git/doc/guix.texi:1274 #, no-wrap msgid "" " ;; Remember 'guix offload' is spawned by\n" @@ -6035,98 +6109,98 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1263 +#: guix-git/doc/guix.texi:1280 msgid "In the example above we specify a list of two build machines, one for the @code{x86_64} and @code{i686} architectures and one for the @code{aarch64} architecture." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1272 +#: guix-git/doc/guix.texi:1289 msgid "In fact, this file is---not surprisingly!---a Scheme file that is evaluated when the @code{offload} hook is started. Its return value must be a list of @code{build-machine} objects. While this example shows a fixed list of build machines, one could imagine, say, using DNS-SD to return a list of potential build machines discovered in the local network (@pxref{Introduction, Guile-Avahi,, guile-avahi, Using Avahi in Guile Scheme Programs}). The @code{build-machine} data type is detailed below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:1273 +#: guix-git/doc/guix.texi:1290 #, no-wrap msgid "{Data Type} build-machine" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:1276 +#: guix-git/doc/guix.texi:1293 msgid "This data type represents build machines to which the daemon may offload builds. The important fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1279 guix-git/doc/guix.texi:7113 -#: guix-git/doc/guix.texi:15446 guix-git/doc/guix.texi:15545 -#: guix-git/doc/guix.texi:15786 guix-git/doc/guix.texi:17314 -#: guix-git/doc/guix.texi:17935 guix-git/doc/guix.texi:18209 -#: guix-git/doc/guix.texi:21269 guix-git/doc/guix.texi:24179 -#: guix-git/doc/guix.texi:25568 guix-git/doc/guix.texi:26180 -#: guix-git/doc/guix.texi:26533 guix-git/doc/guix.texi:26574 -#: guix-git/doc/guix.texi:28735 guix-git/doc/guix.texi:31072 -#: guix-git/doc/guix.texi:31092 guix-git/doc/guix.texi:33766 -#: guix-git/doc/guix.texi:33783 guix-git/doc/guix.texi:34320 -#: guix-git/doc/guix.texi:36095 guix-git/doc/guix.texi:36422 +#: guix-git/doc/guix.texi:1296 guix-git/doc/guix.texi:7157 +#: guix-git/doc/guix.texi:15803 guix-git/doc/guix.texi:15902 +#: guix-git/doc/guix.texi:16143 guix-git/doc/guix.texi:17676 +#: guix-git/doc/guix.texi:18297 guix-git/doc/guix.texi:18571 +#: guix-git/doc/guix.texi:21631 guix-git/doc/guix.texi:24541 +#: guix-git/doc/guix.texi:25905 guix-git/doc/guix.texi:26517 +#: guix-git/doc/guix.texi:26870 guix-git/doc/guix.texi:26911 +#: guix-git/doc/guix.texi:29072 guix-git/doc/guix.texi:31437 +#: guix-git/doc/guix.texi:31457 guix-git/doc/guix.texi:34203 +#: guix-git/doc/guix.texi:34220 guix-git/doc/guix.texi:34759 +#: guix-git/doc/guix.texi:36585 guix-git/doc/guix.texi:36912 #, no-wrap msgid "name" msgstr "نام" #. type: table -#: guix-git/doc/guix.texi:1281 +#: guix-git/doc/guix.texi:1298 msgid "The host name of the remote machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1282 +#: guix-git/doc/guix.texi:1299 #, no-wrap msgid "systems" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1285 +#: guix-git/doc/guix.texi:1302 msgid "The system types the remote machine supports---e.g., @code{(list \"x86_64-linux\" \"i686-linux\")}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1286 guix-git/doc/guix.texi:17945 +#: guix-git/doc/guix.texi:1303 guix-git/doc/guix.texi:18307 #, no-wrap msgid "user" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1290 +#: guix-git/doc/guix.texi:1307 msgid "The user account to use when connecting to the remote machine over SSH. Note that the SSH key pair must @emph{not} be passphrase-protected, to allow non-interactive logins." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1291 +#: guix-git/doc/guix.texi:1308 #, no-wrap msgid "host-key" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1295 +#: guix-git/doc/guix.texi:1312 msgid "This must be the machine's SSH @dfn{public host key} in OpenSSH format. This is used to authenticate the machine when we connect to it. It is a long string that looks like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1298 +#: guix-git/doc/guix.texi:1315 #, no-wrap msgid "ssh-ed25519 AAAAC3NzaC@dots{}mde+UhL hint@@example.org\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1303 +#: guix-git/doc/guix.texi:1320 msgid "If the machine is running the OpenSSH daemon, @command{sshd}, the host key can be found in a file such as @file{/etc/ssh/ssh_host_ed25519_key.pub}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1308 +#: guix-git/doc/guix.texi:1325 msgid "If the machine is running the SSH daemon of GNU@tie{}lsh, @command{lshd}, the host key is in @file{/etc/lsh/host-key.pub} or a similar file. It can be converted to the OpenSSH format using @command{lsh-export-key} (@pxref{Converting keys,,, lsh, LSH Manual}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1312 +#: guix-git/doc/guix.texi:1329 #, no-wrap msgid "" "$ lsh-export-key --openssh < /etc/lsh/host-key.pub\n" @@ -6134,674 +6208,674 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:1317 +#: guix-git/doc/guix.texi:1334 msgid "A number of optional fields may be specified:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1320 guix-git/doc/guix.texi:35581 +#: guix-git/doc/guix.texi:1337 guix-git/doc/guix.texi:36061 #, no-wrap msgid "@code{port} (default: @code{22})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1322 +#: guix-git/doc/guix.texi:1339 msgid "Port number of SSH server on the machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1323 +#: guix-git/doc/guix.texi:1340 #, no-wrap msgid "@code{private-key} (default: @file{~root/.ssh/id_rsa})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1326 +#: guix-git/doc/guix.texi:1343 msgid "The SSH private key file to use when connecting to the machine, in OpenSSH format. This key must not be protected with a passphrase." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1329 +#: guix-git/doc/guix.texi:1346 msgid "Note that the default value is the private key @emph{of the root account}. Make sure it exists if you use the default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1330 +#: guix-git/doc/guix.texi:1347 #, no-wrap msgid "@code{compression} (default: @code{\"zlib@@openssh.com,zlib\"})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:1331 +#: guix-git/doc/guix.texi:1348 #, no-wrap msgid "@code{compression-level} (default: @code{3})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1333 +#: guix-git/doc/guix.texi:1350 msgid "The SSH-level compression methods and compression level requested." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1336 +#: guix-git/doc/guix.texi:1353 msgid "Note that offloading relies on SSH compression to reduce bandwidth usage when transferring files to and from build machines." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1337 +#: guix-git/doc/guix.texi:1354 #, no-wrap msgid "@code{daemon-socket} (default: @code{\"/var/guix/daemon-socket/socket\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1340 +#: guix-git/doc/guix.texi:1357 msgid "File name of the Unix-domain socket @command{guix-daemon} is listening to on that machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1341 +#: guix-git/doc/guix.texi:1358 #, no-wrap msgid "@code{overload-threshold} (default: @code{0.6})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1347 +#: guix-git/doc/guix.texi:1364 msgid "The load threshold above which a potential offload machine is disregarded by the offload scheduler. The value roughly translates to the total processor usage of the build machine, ranging from 0.0 (0%) to 1.0 (100%). It can also be disabled by setting @code{overload-threshold} to @code{#f}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1348 +#: guix-git/doc/guix.texi:1365 #, no-wrap msgid "@code{parallel-builds} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1350 +#: guix-git/doc/guix.texi:1367 msgid "The number of builds that may run in parallel on the machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1351 +#: guix-git/doc/guix.texi:1368 #, no-wrap msgid "@code{speed} (default: @code{1.0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1354 +#: guix-git/doc/guix.texi:1371 msgid "A ``relative speed factor''. The offload scheduler will tend to prefer machines with a higher speed factor." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1355 +#: guix-git/doc/guix.texi:1372 #, no-wrap msgid "@code{features} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1360 +#: guix-git/doc/guix.texi:1377 msgid "A list of strings denoting specific features supported by the machine. An example is @code{\"kvm\"} for machines that have the KVM Linux modules and corresponding hardware support. Derivations can request features by name, and they will be scheduled on matching build machines." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1366 +#: guix-git/doc/guix.texi:1383 msgid "The @command{guix} command must be in the search path on the build machines. You can check whether this is the case by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1369 +#: guix-git/doc/guix.texi:1386 #, no-wrap msgid "ssh build-machine guix repl --version\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1376 +#: guix-git/doc/guix.texi:1393 msgid "There is one last thing to do once @file{machines.scm} is in place. As explained above, when offloading, files are transferred back and forth between the machine stores. For this to work, you first need to generate a key pair on each machine to allow the daemon to export signed archives of files from the store (@pxref{Invoking guix archive}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1379 guix-git/doc/guix.texi:35509 +#: guix-git/doc/guix.texi:1396 guix-git/doc/guix.texi:35965 #, no-wrap msgid "# guix archive --generate-key\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1384 +#: guix-git/doc/guix.texi:1401 msgid "Each build machine must authorize the key of the master machine so that it accepts store items it receives from the master:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1387 +#: guix-git/doc/guix.texi:1404 #, no-wrap msgid "# guix archive --authorize < master-public-key.txt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1391 +#: guix-git/doc/guix.texi:1408 msgid "Likewise, the master machine must authorize the key of each build machine." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1397 +#: guix-git/doc/guix.texi:1414 msgid "All the fuss with keys is here to express pairwise mutual trust relations between the master and the build machines. Concretely, when the master receives files from a build machine (and @i{vice versa}), its build daemon can make sure they are genuine, have not been tampered with, and that they are signed by an authorized key." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1398 +#: guix-git/doc/guix.texi:1415 #, no-wrap msgid "offload test" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1401 +#: guix-git/doc/guix.texi:1418 msgid "To test whether your setup is operational, run this command on the master node:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1404 +#: guix-git/doc/guix.texi:1421 #, no-wrap msgid "# guix offload test\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1410 +#: guix-git/doc/guix.texi:1427 msgid "This will attempt to connect to each of the build machines specified in @file{/etc/guix/machines.scm}, make sure Guix is available on each machine, attempt to export to the machine and import from it, and report any error in the process." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1413 +#: guix-git/doc/guix.texi:1430 msgid "If you want to test a different machine file, just specify it on the command line:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1416 +#: guix-git/doc/guix.texi:1433 #, no-wrap msgid "# guix offload test machines-qualif.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1420 +#: guix-git/doc/guix.texi:1437 msgid "Last, you can test the subset of the machines whose name matches a regular expression like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1423 +#: guix-git/doc/guix.texi:1440 #, no-wrap msgid "# guix offload test machines.scm '\\.gnu\\.org$'\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1425 +#: guix-git/doc/guix.texi:1442 #, no-wrap msgid "offload status" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1428 +#: guix-git/doc/guix.texi:1445 msgid "To display the current load of all build hosts, run this command on the main node:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1431 +#: guix-git/doc/guix.texi:1448 #, no-wrap msgid "# guix offload status\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1437 +#: guix-git/doc/guix.texi:1454 #, no-wrap msgid "SELinux, daemon policy" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1438 +#: guix-git/doc/guix.texi:1455 #, no-wrap msgid "mandatory access control, SELinux" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1439 +#: guix-git/doc/guix.texi:1456 #, no-wrap msgid "security, guix-daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1445 +#: guix-git/doc/guix.texi:1462 msgid "Guix includes an SELinux policy file at @file{etc/guix-daemon.cil} that can be installed on a system where SELinux is enabled, in order to label Guix files and to specify the expected behavior of the daemon. Since Guix System does not provide an SELinux base policy, the daemon policy cannot be used on Guix System." msgstr "" #. type: subsubsection -#: guix-git/doc/guix.texi:1446 +#: guix-git/doc/guix.texi:1463 #, no-wrap msgid "Installing the SELinux policy" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1447 +#: guix-git/doc/guix.texi:1464 #, no-wrap msgid "SELinux, policy installation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1449 +#: guix-git/doc/guix.texi:1466 msgid "To install the policy run this command as root:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1452 +#: guix-git/doc/guix.texi:1469 #, no-wrap msgid "semodule -i etc/guix-daemon.cil\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1456 +#: guix-git/doc/guix.texi:1473 msgid "Then relabel the file system with @code{restorecon} or by a different mechanism provided by your system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1461 +#: guix-git/doc/guix.texi:1478 msgid "Once the policy is installed, the file system has been relabeled, and the daemon has been restarted, it should be running in the @code{guix_daemon_t} context. You can confirm this with the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1464 +#: guix-git/doc/guix.texi:1481 #, no-wrap msgid "ps -Zax | grep guix-daemon\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1469 +#: guix-git/doc/guix.texi:1486 msgid "Monitor the SELinux log files as you run a command like @code{guix build hello} to convince yourself that SELinux permits all necessary operations." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1471 +#: guix-git/doc/guix.texi:1488 #, no-wrap msgid "SELinux, limitations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1476 +#: guix-git/doc/guix.texi:1493 msgid "This policy is not perfect. Here is a list of limitations or quirks that should be considered when deploying the provided SELinux policy for the Guix daemon." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1483 +#: guix-git/doc/guix.texi:1500 msgid "@code{guix_daemon_socket_t} isn’t actually used. None of the socket operations involve contexts that have anything to do with @code{guix_daemon_socket_t}. It doesn’t hurt to have this unused label, but it would be preferable to define socket rules for only this label." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1494 +#: guix-git/doc/guix.texi:1511 msgid "@code{guix gc} cannot access arbitrary links to profiles. By design, the file label of the destination of a symlink is independent of the file label of the link itself. Although all profiles under $localstatedir are labelled, the links to these profiles inherit the label of the directory they are in. For links in the user’s home directory this will be @code{user_home_t}. But for links from the root user’s home directory, or @file{/tmp}, or the HTTP server’s working directory, etc, this won’t work. @code{guix gc} would be prevented from reading and following these links." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1499 +#: guix-git/doc/guix.texi:1516 msgid "The daemon’s feature to listen for TCP connections might no longer work. This might require extra rules, because SELinux treats network sockets differently from files." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1510 +#: guix-git/doc/guix.texi:1527 msgid "Currently all files with a name matching the regular expression @code{/gnu/store/.+-(guix-.+|profile)/bin/guix-daemon} are assigned the label @code{guix_daemon_exec_t}; this means that @emph{any} file with that name in any profile would be permitted to run in the @code{guix_daemon_t} domain. This is not ideal. An attacker could build a package that provides this executable and convince a user to install and run it, which lifts it into the @code{guix_daemon_t} domain. At that point SELinux could not prevent it from accessing files that are allowed for processes in that domain." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1515 +#: guix-git/doc/guix.texi:1532 msgid "You will need to relabel the store directory after all upgrades to @file{guix-daemon}, such as after running @code{guix pull}. Assuming the store is in @file{/gnu}, you can do this with @code{restorecon -vR /gnu}, or by other means provided by your operating system." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1523 +#: guix-git/doc/guix.texi:1540 msgid "We could generate a much more restrictive policy at installation time, so that only the @emph{exact} file name of the currently installed @code{guix-daemon} executable would be labelled with @code{guix_daemon_exec_t}, instead of using a broad regular expression. The downside is that root would have to install or upgrade the policy at installation time whenever the Guix package that provides the effectively running @code{guix-daemon} executable is upgraded." msgstr "" #. type: section -#: guix-git/doc/guix.texi:1526 +#: guix-git/doc/guix.texi:1543 #, no-wrap msgid "Invoking @command{guix-daemon}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1532 +#: guix-git/doc/guix.texi:1549 msgid "The @command{guix-daemon} program implements all the functionality to access the store. This includes launching build processes, running the garbage collector, querying the availability of a build result, etc. It is normally run as @code{root} like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1539 +#: guix-git/doc/guix.texi:1556 msgid "For details on how to set it up, @pxref{Setting Up the Daemon}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1541 +#: guix-git/doc/guix.texi:1558 #, no-wrap msgid "container, build environment" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1543 guix-git/doc/guix.texi:3071 -#: guix-git/doc/guix.texi:3988 guix-git/doc/guix.texi:13753 +#: guix-git/doc/guix.texi:1560 guix-git/doc/guix.texi:3088 +#: guix-git/doc/guix.texi:4006 guix-git/doc/guix.texi:14110 #, no-wrap msgid "reproducible builds" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1555 +#: guix-git/doc/guix.texi:1572 msgid "By default, @command{guix-daemon} launches build processes under different UIDs, taken from the build group specified with @option{--build-users-group}. In addition, each build process is run in a chroot environment that only contains the subset of the store that the build process depends on, as specified by its derivation (@pxref{Programming Interface, derivation}), plus a set of specific system directories. By default, the latter contains @file{/dev} and @file{/dev/pts}. Furthermore, on GNU/Linux, the build environment is a @dfn{container}: in addition to having its own file system tree, it has a separate mount name space, its own PID name space, network name space, etc. This helps achieve reproducible builds (@pxref{Features})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1561 +#: guix-git/doc/guix.texi:1578 msgid "When the daemon performs a build on behalf of the user, it creates a build directory under @file{/tmp} or under the directory specified by its @env{TMPDIR} environment variable. This directory is shared with the container for the duration of the build, though within the container, the build tree is always called @file{/tmp/guix-build-@var{name}.drv-0}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1565 +#: guix-git/doc/guix.texi:1582 msgid "The build directory is automatically deleted upon completion, unless the build failed and the client specified @option{--keep-failed} (@pxref{Common Build Options, @option{--keep-failed}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1571 +#: guix-git/doc/guix.texi:1588 msgid "The daemon listens for connections and spawns one sub-process for each session started by a client (one of the @command{guix} sub-commands). The @command{guix processes} command allows you to get an overview of the activity on your system by viewing each of the active sessions and clients. @xref{Invoking guix processes}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1573 +#: guix-git/doc/guix.texi:1590 msgid "The following command-line options are supported:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1575 +#: guix-git/doc/guix.texi:1592 #, no-wrap msgid "--build-users-group=@var{group}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1578 +#: guix-git/doc/guix.texi:1595 msgid "Take users from @var{group} to run build processes (@pxref{Setting Up the Daemon, build users})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1579 guix-git/doc/guix.texi:10915 +#: guix-git/doc/guix.texi:1596 guix-git/doc/guix.texi:11229 #, no-wrap msgid "--no-substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1580 guix-git/doc/guix.texi:3083 -#: guix-git/doc/guix.texi:3741 +#: guix-git/doc/guix.texi:1597 guix-git/doc/guix.texi:3100 +#: guix-git/doc/guix.texi:3759 #, no-wrap msgid "substitutes" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1584 guix-git/doc/guix.texi:10919 +#: guix-git/doc/guix.texi:1601 guix-git/doc/guix.texi:11233 msgid "Do not use substitutes for build products. That is, always build things locally instead of allowing downloads of pre-built binaries (@pxref{Substitutes})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1588 +#: guix-git/doc/guix.texi:1605 msgid "When the daemon runs with @option{--no-substitutes}, clients can still explicitly enable substitution @i{via} the @code{set-build-options} remote procedure call (@pxref{The Store})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:1590 +#: guix-git/doc/guix.texi:1607 msgid "daemon-substitute-urls" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1590 guix-git/doc/guix.texi:10902 -#: guix-git/doc/guix.texi:13160 guix-git/doc/guix.texi:13899 -#: guix-git/doc/guix.texi:14124 +#: guix-git/doc/guix.texi:1607 guix-git/doc/guix.texi:11216 +#: guix-git/doc/guix.texi:13517 guix-git/doc/guix.texi:14256 +#: guix-git/doc/guix.texi:14481 #, no-wrap msgid "--substitute-urls=@var{urls}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1594 +#: guix-git/doc/guix.texi:1611 msgid "Consider @var{urls} the default whitespace-separated list of substitute source URLs. When this option is omitted, @indicateurl{@value{SUBSTITUTE-URLS}} is used." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1597 +#: guix-git/doc/guix.texi:1614 msgid "This means that substitutes may be downloaded from @var{urls}, as long as they are signed by a trusted signature (@pxref{Substitutes})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1600 +#: guix-git/doc/guix.texi:1617 msgid "@xref{Getting Substitutes from Other Servers}, for more information on how to configure the daemon to get substitutes from other servers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1602 guix-git/doc/guix.texi:10938 +#: guix-git/doc/guix.texi:1619 guix-git/doc/guix.texi:11252 #, no-wrap msgid "--no-offload" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1606 guix-git/doc/guix.texi:10942 +#: guix-git/doc/guix.texi:1623 guix-git/doc/guix.texi:11256 msgid "Do not use offload builds to other machines (@pxref{Daemon Offload Setup}). That is, always build things locally instead of offloading builds to remote machines." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1607 +#: guix-git/doc/guix.texi:1624 #, no-wrap msgid "--cache-failures" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1609 +#: guix-git/doc/guix.texi:1626 msgid "Cache build failures. By default, only successful builds are cached." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1614 +#: guix-git/doc/guix.texi:1631 msgid "When this option is used, @command{guix gc --list-failures} can be used to query the set of store items marked as failed; @command{guix gc --clear-failures} removes store items from the set of cached failures. @xref{Invoking guix gc}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1615 guix-git/doc/guix.texi:10968 +#: guix-git/doc/guix.texi:1632 guix-git/doc/guix.texi:11282 #, no-wrap msgid "--cores=@var{n}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:1616 guix-git/doc/guix.texi:10969 +#: guix-git/doc/guix.texi:1633 guix-git/doc/guix.texi:11283 #, no-wrap msgid "-c @var{n}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1619 +#: guix-git/doc/guix.texi:1636 msgid "Use @var{n} CPU cores to build each derivation; @code{0} means as many as available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1623 +#: guix-git/doc/guix.texi:1640 msgid "The default value is @code{0}, but it may be overridden by clients, such as the @option{--cores} option of @command{guix build} (@pxref{Invoking guix build})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1627 +#: guix-git/doc/guix.texi:1644 msgid "The effect is to define the @env{NIX_BUILD_CORES} environment variable in the build process, which can then use it to exploit internal parallelism---for instance, by running @code{make -j$NIX_BUILD_CORES}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1628 guix-git/doc/guix.texi:10973 +#: guix-git/doc/guix.texi:1645 guix-git/doc/guix.texi:11287 #, no-wrap msgid "--max-jobs=@var{n}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:1629 guix-git/doc/guix.texi:10974 +#: guix-git/doc/guix.texi:1646 guix-git/doc/guix.texi:11288 #, no-wrap msgid "-M @var{n}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1634 +#: guix-git/doc/guix.texi:1651 msgid "Allow at most @var{n} build jobs in parallel. The default value is @code{1}. Setting it to @code{0} means that no builds will be performed locally; instead, the daemon will offload builds (@pxref{Daemon Offload Setup}), or simply fail." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1635 guix-git/doc/guix.texi:10943 +#: guix-git/doc/guix.texi:1652 guix-git/doc/guix.texi:11257 #, no-wrap msgid "--max-silent-time=@var{seconds}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1638 guix-git/doc/guix.texi:10946 +#: guix-git/doc/guix.texi:1655 guix-git/doc/guix.texi:11260 msgid "When the build or substitution process remains silent for more than @var{seconds}, terminate it and report a build failure." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1640 guix-git/doc/guix.texi:1649 +#: guix-git/doc/guix.texi:1657 guix-git/doc/guix.texi:1666 msgid "The default value is @code{0}, which disables the timeout." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1643 +#: guix-git/doc/guix.texi:1660 msgid "The value specified here can be overridden by clients (@pxref{Common Build Options, @option{--max-silent-time}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1644 guix-git/doc/guix.texi:10950 +#: guix-git/doc/guix.texi:1661 guix-git/doc/guix.texi:11264 #, no-wrap msgid "--timeout=@var{seconds}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1647 guix-git/doc/guix.texi:10953 +#: guix-git/doc/guix.texi:1664 guix-git/doc/guix.texi:11267 msgid "Likewise, when the build or substitution process lasts for more than @var{seconds}, terminate it and report a build failure." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1652 +#: guix-git/doc/guix.texi:1669 msgid "The value specified here can be overridden by clients (@pxref{Common Build Options, @option{--timeout}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1653 +#: guix-git/doc/guix.texi:1670 #, no-wrap msgid "--rounds=@var{N}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1658 +#: guix-git/doc/guix.texi:1675 msgid "Build each derivation @var{n} times in a row, and raise an error if consecutive build results are not bit-for-bit identical. Note that this setting can be overridden by clients such as @command{guix build} (@pxref{Invoking guix build})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1662 guix-git/doc/guix.texi:10937 -#: guix-git/doc/guix.texi:11561 +#: guix-git/doc/guix.texi:1679 guix-git/doc/guix.texi:11251 +#: guix-git/doc/guix.texi:11875 msgid "When used in conjunction with @option{--keep-failed}, the differing output is kept in the store, under @file{/gnu/store/@dots{}-check}. This makes it easy to look for differences between the two results." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1663 +#: guix-git/doc/guix.texi:1680 #, no-wrap msgid "--debug" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1665 +#: guix-git/doc/guix.texi:1682 msgid "Produce debugging output." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1669 +#: guix-git/doc/guix.texi:1686 msgid "This is useful to debug daemon start-up issues, but then it may be overridden by clients, for example the @option{--verbosity} option of @command{guix build} (@pxref{Invoking guix build})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1670 +#: guix-git/doc/guix.texi:1687 #, no-wrap msgid "--chroot-directory=@var{dir}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1672 +#: guix-git/doc/guix.texi:1689 msgid "Add @var{dir} to the build chroot." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1678 +#: guix-git/doc/guix.texi:1695 msgid "Doing this may change the result of build processes---for instance if they use optional dependencies found in @var{dir} when it is available, and not otherwise. For that reason, it is not recommended to do so. Instead, make sure that each derivation declares all the inputs that it needs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1679 +#: guix-git/doc/guix.texi:1696 #, no-wrap msgid "--disable-chroot" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1681 +#: guix-git/doc/guix.texi:1698 msgid "Disable chroot builds." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1686 +#: guix-git/doc/guix.texi:1703 msgid "Using this option is not recommended since, again, it would allow build processes to gain access to undeclared dependencies. It is necessary, though, when @command{guix-daemon} is running under an unprivileged user account." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1687 +#: guix-git/doc/guix.texi:1704 #, no-wrap msgid "--log-compression=@var{type}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1690 +#: guix-git/doc/guix.texi:1707 msgid "Compress build logs according to @var{type}, one of @code{gzip}, @code{bzip2}, or @code{none}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1694 -msgid "Unless @option{--lose-logs} is used, all the build logs are kept in the @var{localstatedir}. To save space, the daemon automatically compresses them with Bzip2 by default." +#: guix-git/doc/guix.texi:1711 +msgid "Unless @option{--lose-logs} is used, all the build logs are kept in the @var{localstatedir}. To save space, the daemon automatically compresses them with gzip by default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1695 +#: guix-git/doc/guix.texi:1712 #, no-wrap msgid "--discover[=yes|no]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1698 guix-git/doc/guix.texi:16563 +#: guix-git/doc/guix.texi:1715 guix-git/doc/guix.texi:16920 msgid "Whether to discover substitute servers on the local network using mDNS and DNS-SD." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1701 +#: guix-git/doc/guix.texi:1718 msgid "This feature is still experimental. However, here are a few considerations." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1705 +#: guix-git/doc/guix.texi:1722 msgid "It might be faster/less expensive than fetching from remote servers;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1708 +#: guix-git/doc/guix.texi:1725 msgid "There are no security risks, only genuine substitutes will be used (@pxref{Substitute Authentication});" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1712 +#: guix-git/doc/guix.texi:1729 msgid "An attacker advertising @command{guix publish} on your LAN cannot serve you malicious binaries, but they can learn what software you’re installing;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1715 +#: guix-git/doc/guix.texi:1732 msgid "Servers may serve substitute over HTTP, unencrypted, so anyone on the LAN can see what software you’re installing." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1719 +#: guix-git/doc/guix.texi:1736 msgid "It is also possible to enable or disable substitute server discovery at run-time by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1723 +#: guix-git/doc/guix.texi:1740 #, no-wrap msgid "" "herd discover guix-daemon on\n" @@ -6809,237 +6883,237 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1725 +#: guix-git/doc/guix.texi:1742 #, no-wrap msgid "--disable-deduplication" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1726 guix-git/doc/guix.texi:4326 +#: guix-git/doc/guix.texi:1743 guix-git/doc/guix.texi:4344 #, no-wrap msgid "deduplication" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1728 +#: guix-git/doc/guix.texi:1745 msgid "Disable automatic file ``deduplication'' in the store." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1735 +#: guix-git/doc/guix.texi:1752 msgid "By default, files added to the store are automatically ``deduplicated'': if a newly added file is identical to another one found in the store, the daemon makes the new file a hard link to the other file. This can noticeably reduce disk usage, at the expense of slightly increased input/output load at the end of a build process. This option disables this optimization." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1736 +#: guix-git/doc/guix.texi:1753 #, no-wrap msgid "--gc-keep-outputs[=yes|no]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1739 +#: guix-git/doc/guix.texi:1756 msgid "Tell whether the garbage collector (GC) must keep outputs of live derivations." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1740 guix-git/doc/guix.texi:4139 +#: guix-git/doc/guix.texi:1757 guix-git/doc/guix.texi:4157 #, no-wrap msgid "GC roots" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1741 guix-git/doc/guix.texi:4140 +#: guix-git/doc/guix.texi:1758 guix-git/doc/guix.texi:4158 #, no-wrap msgid "garbage collector roots" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1747 +#: guix-git/doc/guix.texi:1764 msgid "When set to @code{yes}, the GC will keep the outputs of any live derivation available in the store---the @file{.drv} files. The default is @code{no}, meaning that derivation outputs are kept only if they are reachable from a GC root. @xref{Invoking guix gc}, for more on GC roots." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1748 +#: guix-git/doc/guix.texi:1765 #, no-wrap msgid "--gc-keep-derivations[=yes|no]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1751 +#: guix-git/doc/guix.texi:1768 msgid "Tell whether the garbage collector (GC) must keep derivations corresponding to live outputs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1757 +#: guix-git/doc/guix.texi:1774 msgid "When set to @code{yes}, as is the case by default, the GC keeps derivations---i.e., @file{.drv} files---as long as at least one of their outputs is live. This allows users to keep track of the origins of items in their store. Setting it to @code{no} saves a bit of disk space." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1766 +#: guix-git/doc/guix.texi:1783 msgid "In this way, setting @option{--gc-keep-derivations} to @code{yes} causes liveness to flow from outputs to derivations, and setting @option{--gc-keep-outputs} to @code{yes} causes liveness to flow from derivations to outputs. When both are set to @code{yes}, the effect is to keep all the build prerequisites (the sources, compiler, libraries, and other build-time tools) of live objects in the store, regardless of whether these prerequisites are reachable from a GC root. This is convenient for developers since it saves rebuilds or downloads." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1767 +#: guix-git/doc/guix.texi:1784 #, no-wrap msgid "--impersonate-linux-2.6" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1770 +#: guix-git/doc/guix.texi:1787 msgid "On Linux-based systems, impersonate Linux 2.6. This means that the kernel's @command{uname} system call will report 2.6 as the release number." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1773 +#: guix-git/doc/guix.texi:1790 msgid "This might be helpful to build programs that (usually wrongfully) depend on the kernel version number." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1774 +#: guix-git/doc/guix.texi:1791 #, no-wrap msgid "--lose-logs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1777 +#: guix-git/doc/guix.texi:1794 msgid "Do not keep build logs. By default they are kept under @file{@var{localstatedir}/guix/log}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1778 guix-git/doc/guix.texi:4567 -#: guix-git/doc/guix.texi:5846 guix-git/doc/guix.texi:6229 -#: guix-git/doc/guix.texi:6629 guix-git/doc/guix.texi:11505 -#: guix-git/doc/guix.texi:13187 guix-git/doc/guix.texi:13452 -#: guix-git/doc/guix.texi:14129 guix-git/doc/guix.texi:34442 -#: guix-git/doc/guix.texi:35251 +#: guix-git/doc/guix.texi:1795 guix-git/doc/guix.texi:4585 +#: guix-git/doc/guix.texi:5859 guix-git/doc/guix.texi:6272 +#: guix-git/doc/guix.texi:6672 guix-git/doc/guix.texi:11819 +#: guix-git/doc/guix.texi:13544 guix-git/doc/guix.texi:13809 +#: guix-git/doc/guix.texi:14486 guix-git/doc/guix.texi:34881 +#: guix-git/doc/guix.texi:35695 #, no-wrap msgid "--system=@var{system}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1782 +#: guix-git/doc/guix.texi:1799 msgid "Assume @var{system} as the current system type. By default it is the architecture/kernel pair found at configure time, such as @code{x86_64-linux}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1783 guix-git/doc/guix.texi:10747 +#: guix-git/doc/guix.texi:1800 guix-git/doc/guix.texi:11061 #, no-wrap msgid "--listen=@var{endpoint}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1788 +#: guix-git/doc/guix.texi:1805 msgid "Listen for connections on @var{endpoint}. @var{endpoint} is interpreted as the file name of a Unix-domain socket if it starts with @code{/} (slash sign). Otherwise, @var{endpoint} is interpreted as a host name or host name and port to listen to. Here are a few examples:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1790 +#: guix-git/doc/guix.texi:1807 #, no-wrap msgid "--listen=/gnu/var/daemon" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1793 +#: guix-git/doc/guix.texi:1810 msgid "Listen for connections on the @file{/gnu/var/daemon} Unix-domain socket, creating it if needed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1794 +#: guix-git/doc/guix.texi:1811 #, no-wrap msgid "--listen=localhost" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1795 guix-git/doc/guix.texi:9421 +#: guix-git/doc/guix.texi:1812 guix-git/doc/guix.texi:9735 #, no-wrap msgid "daemon, remote access" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1796 guix-git/doc/guix.texi:9422 +#: guix-git/doc/guix.texi:1813 guix-git/doc/guix.texi:9736 #, no-wrap msgid "remote access to the daemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1797 guix-git/doc/guix.texi:9423 +#: guix-git/doc/guix.texi:1814 guix-git/doc/guix.texi:9737 #, no-wrap msgid "daemon, cluster setup" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1798 guix-git/doc/guix.texi:9424 +#: guix-git/doc/guix.texi:1815 guix-git/doc/guix.texi:9738 #, no-wrap msgid "clusters, daemon setup" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1801 +#: guix-git/doc/guix.texi:1818 msgid "Listen for TCP connections on the network interface corresponding to @code{localhost}, on port 44146." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1802 +#: guix-git/doc/guix.texi:1819 #, no-wrap msgid "--listen=128.0.0.42:1234" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1805 +#: guix-git/doc/guix.texi:1822 msgid "Listen for TCP connections on the network interface corresponding to @code{128.0.0.42}, on port 1234." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1812 +#: guix-git/doc/guix.texi:1829 msgid "This option can be repeated multiple times, in which case @command{guix-daemon} accepts connections on all the specified endpoints. Users can tell client commands what endpoint to connect to by setting the @env{GUIX_DAEMON_SOCKET} environment variable (@pxref{The Store, @env{GUIX_DAEMON_SOCKET}})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:1819 +#: guix-git/doc/guix.texi:1836 msgid "The daemon protocol is @emph{unauthenticated and unencrypted}. Using @option{--listen=@var{host}} is suitable on local networks, such as clusters, where only trusted nodes may connect to the build daemon. In other cases where remote access to the daemon is needed, we recommend using Unix-domain sockets along with SSH." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1824 +#: guix-git/doc/guix.texi:1841 msgid "When @option{--listen} is omitted, @command{guix-daemon} listens for connections on the Unix-domain socket located at @file{@var{localstatedir}/guix/daemon-socket/socket}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1834 +#: guix-git/doc/guix.texi:1851 msgid "When using Guix on top of GNU/Linux distribution other than Guix System---a so-called @dfn{foreign distro}---a few additional steps are needed to get everything in place. Here are some of them." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:1838 +#: guix-git/doc/guix.texi:1855 msgid "locales-and-locpath" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1838 +#: guix-git/doc/guix.texi:1855 #, no-wrap msgid "locales, when not on Guix System" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:1839 guix-git/doc/guix.texi:15770 +#: guix-git/doc/guix.texi:1856 guix-git/doc/guix.texi:16127 #, no-wrap msgid "LOCPATH" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:1840 +#: guix-git/doc/guix.texi:1857 #, no-wrap msgid "GUIX_LOCPATH" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1845 +#: guix-git/doc/guix.texi:1862 msgid "Packages installed @i{via} Guix will not use the locale data of the host system. Instead, you must first install one of the locale packages available with Guix and then define the @env{GUIX_LOCPATH} environment variable:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1849 +#: guix-git/doc/guix.texi:1866 #, no-wrap msgid "" "$ guix install glibc-locales\n" @@ -7047,132 +7121,132 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1855 +#: guix-git/doc/guix.texi:1872 msgid "Note that the @code{glibc-locales} package contains data for all the locales supported by the GNU@tie{}libc and weighs in at around 917@tie{}MiB@. Alternatively, the @code{glibc-utf8-locales} is smaller but limited to a few UTF-8 locales." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1859 +#: guix-git/doc/guix.texi:1876 msgid "The @env{GUIX_LOCPATH} variable plays a role similar to @env{LOCPATH} (@pxref{Locale Names, @env{LOCPATH},, libc, The GNU C Library Reference Manual}). There are two important differences though:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1866 +#: guix-git/doc/guix.texi:1883 msgid "@env{GUIX_LOCPATH} is honored only by the libc in Guix, and not by the libc provided by foreign distros. Thus, using @env{GUIX_LOCPATH} allows you to make sure the programs of the foreign distro will not end up loading incompatible locale data." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1873 +#: guix-git/doc/guix.texi:1890 msgid "libc suffixes each entry of @env{GUIX_LOCPATH} with @code{/X.Y}, where @code{X.Y} is the libc version---e.g., @code{2.22}. This means that, should your Guix profile contain a mixture of programs linked against different libc version, each libc version will only try to load locale data in the right format." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1877 +#: guix-git/doc/guix.texi:1894 msgid "This is important because the locale data format used by different libc versions may be incompatible." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1880 +#: guix-git/doc/guix.texi:1897 #, no-wrap msgid "name service switch, glibc" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1881 +#: guix-git/doc/guix.texi:1898 #, no-wrap msgid "NSS (name service switch), glibc" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1882 +#: guix-git/doc/guix.texi:1899 #, no-wrap msgid "nscd (name service caching daemon)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1883 +#: guix-git/doc/guix.texi:1900 #, no-wrap msgid "name service caching daemon (nscd)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1890 +#: guix-git/doc/guix.texi:1907 msgid "When using Guix on a foreign distro, we @emph{strongly recommend} that the system run the GNU C library's @dfn{name service cache daemon}, @command{nscd}, which should be listening on the @file{/var/run/nscd/socket} socket. Failing to do that, applications installed with Guix may fail to look up host names or user accounts, or may even crash. The next paragraphs explain why." msgstr "" #. type: file{#1} -#: guix-git/doc/guix.texi:1891 +#: guix-git/doc/guix.texi:1908 #, no-wrap msgid "nsswitch.conf" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1896 +#: guix-git/doc/guix.texi:1913 msgid "The GNU C library implements a @dfn{name service switch} (NSS), which is an extensible mechanism for ``name lookups'' in general: host name resolution, user accounts, and more (@pxref{Name Service Switch,,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1897 +#: guix-git/doc/guix.texi:1914 #, no-wrap msgid "Network information service (NIS)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1898 +#: guix-git/doc/guix.texi:1915 #, no-wrap msgid "NIS (Network information service)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1907 +#: guix-git/doc/guix.texi:1924 msgid "Being extensible, the NSS supports @dfn{plugins}, which provide new name lookup implementations: for example, the @code{nss-mdns} plugin allow resolution of @code{.local} host names, the @code{nis} plugin allows user account lookup using the Network information service (NIS), and so on. These extra ``lookup services'' are configured system-wide in @file{/etc/nsswitch.conf}, and all the programs running on the system honor those settings (@pxref{NSS Configuration File,,, libc, The GNU C Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1917 +#: guix-git/doc/guix.texi:1934 msgid "When they perform a name lookup---for instance by calling the @code{getaddrinfo} function in C---applications first try to connect to the nscd; on success, nscd performs name lookups on their behalf. If the nscd is not running, then they perform the name lookup by themselves, by loading the name lookup services into their own address space and running it. These name lookup services---the @file{libnss_*.so} files---are @code{dlopen}'d, but they may come from the host system's C library, rather than from the C library the application is linked against (the C library coming from Guix)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1922 +#: guix-git/doc/guix.texi:1939 msgid "And this is where the problem is: if your application is linked against Guix's C library (say, glibc 2.24) and tries to load NSS plugins from another C library (say, @code{libnss_mdns.so} for glibc 2.22), it will likely crash or have its name lookups fail unexpectedly." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1927 +#: guix-git/doc/guix.texi:1944 msgid "Running @command{nscd} on the system, among other advantages, eliminates this binary incompatibility problem because those @code{libnss_*.so} files are loaded in the @command{nscd} process, not in applications themselves." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:1928 +#: guix-git/doc/guix.texi:1945 #, no-wrap msgid "X11 Fonts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1938 +#: guix-git/doc/guix.texi:1955 msgid "The majority of graphical applications use Fontconfig to locate and load fonts and perform X11-client-side rendering. The @code{fontconfig} package in Guix looks for fonts in @file{$HOME/.guix-profile} by default. Thus, to allow graphical applications installed with Guix to display fonts, you have to install fonts with Guix as well. Essential font packages include @code{font-ghostscript}, @code{font-dejavu}, and @code{font-gnu-freefont}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1939 +#: guix-git/doc/guix.texi:1956 #, no-wrap msgid "fc-cache" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1940 +#: guix-git/doc/guix.texi:1957 #, no-wrap msgid "font cache" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1944 +#: guix-git/doc/guix.texi:1961 msgid "Once you have installed or removed fonts, or when you notice an application that does not find fonts, you may need to install Fontconfig and to force an update of its font cache by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1948 +#: guix-git/doc/guix.texi:1965 #, no-wrap msgid "" "guix install fontconfig\n" @@ -7180,266 +7254,266 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1956 +#: guix-git/doc/guix.texi:1973 msgid "To display text written in Chinese languages, Japanese, or Korean in graphical applications, consider installing @code{font-adobe-source-han-sans} or @code{font-wqy-zenhei}. The former has multiple outputs, one per language family (@pxref{Packages with Multiple Outputs}). For instance, the following command installs fonts for Chinese languages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1959 +#: guix-git/doc/guix.texi:1976 #, no-wrap msgid "guix install font-adobe-source-han-sans:cn\n" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1961 +#: guix-git/doc/guix.texi:1978 #, no-wrap msgid "xterm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1965 +#: guix-git/doc/guix.texi:1982 msgid "Older programs such as @command{xterm} do not use Fontconfig and instead rely on server-side font rendering. Such programs require to specify a full name of a font using XLFD (X Logical Font Description), like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1968 +#: guix-git/doc/guix.texi:1985 #, no-wrap msgid "-*-dejavu sans-medium-r-normal-*-*-100-*-*-*-*-*-1\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1972 +#: guix-git/doc/guix.texi:1989 msgid "To be able to use such full names for the TrueType fonts installed in your Guix profile, you need to extend the font path of the X server:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1977 +#: guix-git/doc/guix.texi:1994 #, no-wrap msgid "xset +fp $(dirname $(readlink -f ~/.guix-profile/share/fonts/truetype/fonts.dir))\n" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1979 +#: guix-git/doc/guix.texi:1996 #, no-wrap msgid "xlsfonts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1982 +#: guix-git/doc/guix.texi:1999 msgid "After that, you can run @code{xlsfonts} (from @code{xlsfonts} package) to make sure your TrueType fonts are listed there." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1986 guix-git/doc/guix.texi:34161 +#: guix-git/doc/guix.texi:2003 guix-git/doc/guix.texi:34600 #, no-wrap msgid "nss-certs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1989 +#: guix-git/doc/guix.texi:2006 msgid "The @code{nss-certs} package provides X.509 certificates, which allow programs to authenticate Web servers accessed over HTTPS." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1994 +#: guix-git/doc/guix.texi:2011 msgid "When using Guix on a foreign distro, you can install this package and define the relevant environment variables so that packages know where to look for certificates. @xref{X.509 Certificates}, for detailed information." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1997 +#: guix-git/doc/guix.texi:2014 #, no-wrap msgid "emacs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2003 +#: guix-git/doc/guix.texi:2020 msgid "When you install Emacs packages with Guix, the Elisp files are placed under the @file{share/emacs/site-lisp/} directory of the profile in which they are installed. The Elisp libraries are made available to Emacs through the @env{EMACSLOADPATH} environment variable, which is set when installing Emacs itself." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2010 +#: guix-git/doc/guix.texi:2027 msgid "Additionally, autoload definitions are automatically evaluated at the initialization of Emacs, by the Guix-specific @code{guix-emacs-autoload-packages} procedure. If, for some reason, you want to avoid auto-loading the Emacs packages installed with Guix, you can do so by running Emacs with the @option{--no-site-file} option (@pxref{Init File,,, emacs, The GNU Emacs Manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2015 +#: guix-git/doc/guix.texi:2032 #, no-wrap msgid "Upgrading Guix, on a foreign distro" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2018 +#: guix-git/doc/guix.texi:2035 msgid "To upgrade Guix, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2021 guix-git/doc/guix.texi:2879 +#: guix-git/doc/guix.texi:2038 guix-git/doc/guix.texi:2896 #, no-wrap msgid "guix pull\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2024 +#: guix-git/doc/guix.texi:2041 msgid "@xref{Invoking guix pull}, for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2025 +#: guix-git/doc/guix.texi:2042 #, no-wrap msgid "upgrading Guix for the root user, on a foreign distro" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2026 +#: guix-git/doc/guix.texi:2043 #, no-wrap msgid "upgrading the Guix daemon, on a foreign distro" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2027 +#: guix-git/doc/guix.texi:2044 #, no-wrap msgid "@command{guix pull} for the root user, on a foreign distro" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2030 +#: guix-git/doc/guix.texi:2047 msgid "On a foreign distro, you can upgrade the build daemon by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2033 +#: guix-git/doc/guix.texi:2050 #, no-wrap msgid "sudo -i guix pull\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2038 +#: guix-git/doc/guix.texi:2055 msgid "followed by (assuming your distro uses the systemd service management tool):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2041 +#: guix-git/doc/guix.texi:2058 #, no-wrap msgid "systemctl restart guix-daemon.service\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2045 +#: guix-git/doc/guix.texi:2062 msgid "On Guix System, upgrading the daemon is achieved by reconfiguring the system (@pxref{Invoking guix system, @code{guix system reconfigure}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2052 +#: guix-git/doc/guix.texi:2069 #, no-wrap msgid "installing Guix System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2053 +#: guix-git/doc/guix.texi:2070 #, no-wrap msgid "Guix System, installation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2058 +#: guix-git/doc/guix.texi:2075 msgid "This section explains how to install Guix System on a machine. Guix, as a package manager, can also be installed on top of a running GNU/Linux system, @pxref{Installation}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2067 +#: guix-git/doc/guix.texi:2084 msgid "You are reading this documentation with an Info reader. For details on how to use it, hit the @key{RET} key (``return'' or ``enter'') on the link that follows: @pxref{Top, Info reader,, info-stnd, Stand-alone GNU Info}. Hit @kbd{l} afterwards to come back here." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2070 +#: guix-git/doc/guix.texi:2087 msgid "Alternatively, run @command{info info} in another tty to keep the manual available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2091 +#: guix-git/doc/guix.texi:2108 msgid "We consider Guix System to be ready for a wide range of ``desktop'' and server use cases. The reliability guarantees it provides---transactional upgrades and rollbacks, reproducibility---make it a solid foundation." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2094 +#: guix-git/doc/guix.texi:2111 msgid "Nevertheless, before you proceed with the installation, be aware of the following noteworthy limitations applicable to version @value{VERSION}:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2099 +#: guix-git/doc/guix.texi:2116 msgid "More and more system services are provided (@pxref{Services}), but some may be missing." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2104 +#: guix-git/doc/guix.texi:2121 msgid "GNOME, Xfce, LXDE, and Enlightenment are available (@pxref{Desktop Services}), as well as a number of X11 window managers. However, KDE is currently missing." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2109 +#: guix-git/doc/guix.texi:2126 msgid "More than a disclaimer, this is an invitation to report issues (and success stories!), and to join us in improving it. @xref{Contributing}, for more info." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2114 +#: guix-git/doc/guix.texi:2131 #, no-wrap msgid "hardware support on Guix System" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2123 +#: guix-git/doc/guix.texi:2140 msgid "GNU@tie{}Guix focuses on respecting the user's computing freedom. It builds around the kernel Linux-libre, which means that only hardware for which free software drivers and firmware exist is supported. Nowadays, a wide range of off-the-shelf hardware is supported on GNU/Linux-libre---from keyboards to graphics cards to scanners and Ethernet controllers. Unfortunately, there are still areas where hardware vendors deny users control over their own computing, and such hardware is not supported on Guix System." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2124 +#: guix-git/doc/guix.texi:2141 #, no-wrap msgid "WiFi, hardware support" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2133 +#: guix-git/doc/guix.texi:2150 msgid "One of the main areas where free drivers or firmware are lacking is WiFi devices. WiFi devices known to work include those using Atheros chips (AR9271 and AR7010), which corresponds to the @code{ath9k} Linux-libre driver, and those using Broadcom/AirForce chips (BCM43xx with Wireless-Core Revision 5), which corresponds to the @code{b43-open} Linux-libre driver. Free firmware exists for both and is available out-of-the-box on Guix System, as part of @code{%base-firmware} (@pxref{operating-system Reference, @code{firmware}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2134 +#: guix-git/doc/guix.texi:2151 #, no-wrap msgid "RYF, Respects Your Freedom" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2140 +#: guix-git/doc/guix.texi:2157 msgid "The @uref{https://www.fsf.org/, Free Software Foundation} runs @uref{https://www.fsf.org/ryf, @dfn{Respects Your Freedom}} (RYF), a certification program for hardware products that respect your freedom and your privacy and ensure that you have control over your device. We encourage you to check the list of RYF-certified devices." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2144 +#: guix-git/doc/guix.texi:2161 msgid "Another useful resource is the @uref{https://www.h-node.org/, H-Node} web site. It contains a catalog of hardware devices with information about their support in GNU/Linux." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2153 +#: guix-git/doc/guix.texi:2170 msgid "An ISO-9660 installation image that can be written to a USB stick or burnt to a DVD can be downloaded from @indicateurl{@value{BASE-URL}/guix-system-install-@value{VERSION}.x86_64-linux.iso}, where you can replace @code{x86_64-linux} with one of:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2157 +#: guix-git/doc/guix.texi:2174 msgid "for a GNU/Linux system on Intel/AMD-compatible 64-bit CPUs;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2160 +#: guix-git/doc/guix.texi:2177 msgid "for a 32-bit GNU/Linux system on Intel-compatible CPUs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2165 +#: guix-git/doc/guix.texi:2182 msgid "Make sure to download the associated @file{.sig} file and to verify the authenticity of the image against it, along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2169 +#: guix-git/doc/guix.texi:2186 #, no-wrap msgid "" "$ wget @value{BASE-URL}/guix-system-install-@value{VERSION}.x86_64-linux.iso.sig\n" @@ -7447,7 +7521,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2177 +#: guix-git/doc/guix.texi:2194 #, no-wrap msgid "" "$ wget @value{OPENPGP-SIGNING-KEY-URL} \\\n" @@ -7455,23 +7529,23 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2189 +#: guix-git/doc/guix.texi:2206 msgid "This image contains the tools necessary for an installation. It is meant to be copied @emph{as is} to a large-enough USB stick or DVD." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2190 +#: guix-git/doc/guix.texi:2207 #, no-wrap msgid "Copying to a USB Stick" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2195 +#: guix-git/doc/guix.texi:2212 msgid "Insert a USB stick of 1@tie{}GiB or more into your machine, and determine its device name. Assuming that the USB stick is known as @file{/dev/sdX}, copy the image with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2199 +#: guix-git/doc/guix.texi:2216 #, no-wrap msgid "" "dd if=guix-system-install-@value{VERSION}.x86_64-linux.iso of=/dev/sdX status=progress\n" @@ -7479,238 +7553,238 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2202 +#: guix-git/doc/guix.texi:2219 msgid "Access to @file{/dev/sdX} usually requires root privileges." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2203 +#: guix-git/doc/guix.texi:2220 #, no-wrap msgid "Burning on a DVD" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2208 +#: guix-git/doc/guix.texi:2225 msgid "Insert a blank DVD into your machine, and determine its device name. Assuming that the DVD drive is known as @file{/dev/srX}, copy the image with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2211 +#: guix-git/doc/guix.texi:2228 #, no-wrap msgid "growisofs -dvd-compat -Z /dev/srX=guix-system-install-@value{VERSION}.x86_64-linux.iso\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2214 +#: guix-git/doc/guix.texi:2231 msgid "Access to @file{/dev/srX} usually requires root privileges." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2215 +#: guix-git/doc/guix.texi:2232 #, no-wrap msgid "Booting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2222 +#: guix-git/doc/guix.texi:2239 msgid "Once this is done, you should be able to reboot the system and boot from the USB stick or DVD@. The latter usually requires you to get in the BIOS or UEFI boot menu, where you can choose to boot from the USB stick. In order to boot from Libreboot, switch to the command mode by pressing the @kbd{c} key and type @command{search_grub usb}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2225 +#: guix-git/doc/guix.texi:2242 msgid "@xref{Installing Guix in a VM}, if, instead, you would like to install Guix System in a virtual machine (VM)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2235 +#: guix-git/doc/guix.texi:2252 msgid "Once you have booted, you can use the guided graphical installer, which makes it easy to get started (@pxref{Guided Graphical Installation}). Alternatively, if you are already familiar with GNU/Linux and if you want more control than what the graphical installer provides, you can choose the ``manual'' installation process (@pxref{Manual Installation})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2243 +#: guix-git/doc/guix.texi:2260 msgid "The graphical installer is available on TTY1. You can obtain root shells on TTYs 3 to 6 by hitting @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4}, etc. TTY2 shows this documentation and you can reach it with @kbd{ctrl-alt-f2}. Documentation is browsable using the Info reader commands (@pxref{Top,,, info-stnd, Stand-alone GNU Info}). The installation system runs the GPM mouse daemon, which allows you to select text with the left mouse button and to paste it with the middle button." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2248 +#: guix-git/doc/guix.texi:2265 msgid "Installation requires access to the Internet so that any missing dependencies of your system configuration can be downloaded. See the ``Networking'' section below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2255 +#: guix-git/doc/guix.texi:2272 msgid "The graphical installer is a text-based user interface. It will guide you, with dialog boxes, through the steps needed to install GNU@tie{}Guix System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2260 +#: guix-git/doc/guix.texi:2277 msgid "The first dialog boxes allow you to set up the system as you use it during the installation: you can choose the language, keyboard layout, and set up networking, which will be used during the installation. The image below shows the networking dialog." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2262 +#: guix-git/doc/guix.texi:2279 msgid "@image{images/installer-network,5in,, networking setup with the graphical installer}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2267 +#: guix-git/doc/guix.texi:2284 msgid "Later steps allow you to partition your hard disk, as shown in the image below, to choose whether or not to use encrypted file systems, to enter the host name and root password, and to create an additional account, among other things." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2269 +#: guix-git/doc/guix.texi:2286 msgid "@image{images/installer-partitions,5in,, partitioning with the graphical installer}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2272 +#: guix-git/doc/guix.texi:2289 msgid "Note that, at any time, the installer allows you to exit the current installation step and resume at a previous step, as show in the image below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2274 +#: guix-git/doc/guix.texi:2291 msgid "@image{images/installer-resume,5in,, resuming the installation process}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2279 +#: guix-git/doc/guix.texi:2296 msgid "Once you're done, the installer produces an operating system configuration and displays it (@pxref{Using the Configuration System}). At that point you can hit ``OK'' and installation will proceed. On success, you can reboot into the new system and enjoy. @xref{After System Installation}, for what's next!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2289 +#: guix-git/doc/guix.texi:2306 msgid "This section describes how you would ``manually'' install GNU@tie{}Guix System on your machine. This option requires familiarity with GNU/Linux, with the shell, and with common administration tools. If you think this is not for you, consider using the guided graphical installer (@pxref{Guided Graphical Installation})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2295 +#: guix-git/doc/guix.texi:2312 msgid "The installation system provides root shells on TTYs 3 to 6; press @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4}, and so on to reach them. It includes many common tools needed to install the system. But it is also a full-blown Guix System, which means that you can install additional packages, should you need it, using @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:2302 +#: guix-git/doc/guix.texi:2319 #, no-wrap msgid "Keyboard Layout, Networking, and Partitioning" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2307 +#: guix-git/doc/guix.texi:2324 msgid "Before you can install the system, you may want to adjust the keyboard layout, set up networking, and partition your target hard disk. This section will guide you through this." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2310 guix-git/doc/guix.texi:15584 +#: guix-git/doc/guix.texi:2327 guix-git/doc/guix.texi:15941 #, no-wrap msgid "keyboard layout" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2314 +#: guix-git/doc/guix.texi:2331 msgid "The installation image uses the US qwerty keyboard layout. If you want to change it, you can use the @command{loadkeys} command. For example, the following command selects the Dvorak keyboard layout:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2317 +#: guix-git/doc/guix.texi:2334 #, no-wrap msgid "loadkeys dvorak\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2322 +#: guix-git/doc/guix.texi:2339 msgid "See the files under @file{/run/current-system/profile/share/keymaps} for a list of available keyboard layouts. Run @command{man loadkeys} for more information." msgstr "" #. type: subsubsection -#: guix-git/doc/guix.texi:2323 +#: guix-git/doc/guix.texi:2340 #, no-wrap msgid "Networking" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2326 +#: guix-git/doc/guix.texi:2343 msgid "Run the following command to see what your network interfaces are called:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2329 +#: guix-git/doc/guix.texi:2346 #, no-wrap msgid "ifconfig -a\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2333 guix-git/doc/guix.texi:2355 +#: guix-git/doc/guix.texi:2350 guix-git/doc/guix.texi:2372 msgid "@dots{} or, using the GNU/Linux-specific @command{ip} command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2336 +#: guix-git/doc/guix.texi:2353 #, no-wrap msgid "ip address\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2343 +#: guix-git/doc/guix.texi:2360 msgid "Wired interfaces have a name starting with @samp{e}; for example, the interface corresponding to the first on-board Ethernet controller is called @samp{eno1}. Wireless interfaces have a name starting with @samp{w}, like @samp{w1p2s0}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:2345 +#: guix-git/doc/guix.texi:2362 #, no-wrap msgid "Wired connection" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2348 +#: guix-git/doc/guix.texi:2365 msgid "To configure a wired network run the following command, substituting @var{interface} with the name of the wired interface you want to use." msgstr "" #. type: example -#: guix-git/doc/guix.texi:2351 +#: guix-git/doc/guix.texi:2368 #, no-wrap msgid "ifconfig @var{interface} up\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2358 +#: guix-git/doc/guix.texi:2375 #, no-wrap msgid "ip link set @var{interface} up\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:2360 +#: guix-git/doc/guix.texi:2377 #, no-wrap msgid "Wireless connection" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2361 guix-git/doc/guix.texi:17484 +#: guix-git/doc/guix.texi:2378 guix-git/doc/guix.texi:17846 #, no-wrap msgid "wireless" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2362 guix-git/doc/guix.texi:17485 +#: guix-git/doc/guix.texi:2379 guix-git/doc/guix.texi:17847 #, no-wrap msgid "WiFi" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2367 +#: guix-git/doc/guix.texi:2384 msgid "To configure wireless networking, you can create a configuration file for the @command{wpa_supplicant} configuration tool (its location is not important) using one of the available text editors such as @command{nano}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2370 +#: guix-git/doc/guix.texi:2387 #, no-wrap msgid "nano wpa_supplicant.conf\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2375 +#: guix-git/doc/guix.texi:2392 msgid "As an example, the following stanza can go to this file and will work for many wireless networks, provided you give the actual SSID and passphrase for the network you are connecting to:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2382 +#: guix-git/doc/guix.texi:2399 #, no-wrap msgid "" "network=@{\n" @@ -7721,229 +7795,229 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2387 +#: guix-git/doc/guix.texi:2404 msgid "Start the wireless service and run it in the background with the following command (substitute @var{interface} with the name of the network interface you want to use):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2390 +#: guix-git/doc/guix.texi:2407 #, no-wrap msgid "wpa_supplicant -c wpa_supplicant.conf -i @var{interface} -B\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2393 +#: guix-git/doc/guix.texi:2410 msgid "Run @command{man wpa_supplicant} for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2395 +#: guix-git/doc/guix.texi:2412 #, no-wrap msgid "DHCP" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2398 +#: guix-git/doc/guix.texi:2415 msgid "At this point, you need to acquire an IP address. On a network where IP addresses are automatically assigned @i{via} DHCP, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2401 +#: guix-git/doc/guix.texi:2418 #, no-wrap msgid "dhclient -v @var{interface}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2404 +#: guix-git/doc/guix.texi:2421 msgid "Try to ping a server to see if networking is up and running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2407 +#: guix-git/doc/guix.texi:2424 #, no-wrap msgid "ping -c 3 gnu.org\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2411 +#: guix-git/doc/guix.texi:2428 msgid "Setting up network access is almost always a requirement because the image does not contain all the software and tools that may be needed." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2412 +#: guix-git/doc/guix.texi:2429 #, no-wrap msgid "proxy, during system installation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2415 +#: guix-git/doc/guix.texi:2432 msgid "If you need HTTP and HTTPS access to go through a proxy, run the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2418 +#: guix-git/doc/guix.texi:2435 #, no-wrap msgid "herd set-http-proxy guix-daemon @var{URL}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2423 +#: guix-git/doc/guix.texi:2440 msgid "where @var{URL} is the proxy URL, for example @code{http://example.org:8118}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2424 +#: guix-git/doc/guix.texi:2441 #, no-wrap msgid "installing over SSH" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2427 +#: guix-git/doc/guix.texi:2444 msgid "If you want to, you can continue the installation remotely by starting an SSH server:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2430 +#: guix-git/doc/guix.texi:2447 #, no-wrap msgid "herd start ssh-daemon\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2434 +#: guix-git/doc/guix.texi:2451 msgid "Make sure to either set a password with @command{passwd}, or configure OpenSSH public key authentication before logging in." msgstr "" #. type: subsubsection -#: guix-git/doc/guix.texi:2435 +#: guix-git/doc/guix.texi:2452 #, no-wrap msgid "Disk Partitioning" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2439 +#: guix-git/doc/guix.texi:2456 msgid "Unless this has already been done, the next step is to partition, and then format the target partition(s)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2444 +#: guix-git/doc/guix.texi:2461 msgid "The installation image includes several partitioning tools, including Parted (@pxref{Overview,,, parted, GNU Parted User Manual}), @command{fdisk}, and @command{cfdisk}. Run it and set up your disk with the partition layout you want:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2447 +#: guix-git/doc/guix.texi:2464 #, no-wrap msgid "cfdisk\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2453 +#: guix-git/doc/guix.texi:2470 msgid "If your disk uses the GUID Partition Table (GPT) format and you plan to install BIOS-based GRUB (which is the default), make sure a BIOS Boot Partition is available (@pxref{BIOS installation,,, grub, GNU GRUB manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2454 +#: guix-git/doc/guix.texi:2471 #, no-wrap msgid "EFI, installation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2455 +#: guix-git/doc/guix.texi:2472 #, no-wrap msgid "UEFI, installation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2456 +#: guix-git/doc/guix.texi:2473 #, no-wrap msgid "ESP, EFI system partition" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2460 +#: guix-git/doc/guix.texi:2477 msgid "If you instead wish to use EFI-based GRUB, a FAT32 @dfn{EFI System Partition} (ESP) is required. This partition can be mounted at @file{/boot/efi} for instance and must have the @code{esp} flag set. E.g., for @command{parted}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2463 +#: guix-git/doc/guix.texi:2480 #, no-wrap msgid "parted /dev/sda set 1 esp on\n" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:2466 guix-git/doc/guix.texi:34580 +#: guix-git/doc/guix.texi:2483 guix-git/doc/guix.texi:35019 #, no-wrap msgid "grub-bootloader" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:2467 guix-git/doc/guix.texi:34574 +#: guix-git/doc/guix.texi:2484 guix-git/doc/guix.texi:35013 #, no-wrap msgid "grub-efi-bootloader" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2474 +#: guix-git/doc/guix.texi:2491 msgid "Unsure whether to use EFI- or BIOS-based GRUB? If the directory @file{/sys/firmware/efi} exists in the installation image, then you should probably perform an EFI installation, using @code{grub-efi-bootloader}. Otherwise you should use the BIOS-based GRUB, known as @code{grub-bootloader}. @xref{Bootloader Configuration}, for more info on bootloaders." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2482 +#: guix-git/doc/guix.texi:2499 msgid "Once you are done partitioning the target hard disk drive, you have to create a file system on the relevant partition(s)@footnote{Currently Guix System only supports ext4, btrfs, JFS, F2FS, and XFS file systems. In particular, code that reads file system UUIDs and labels only works for these file system types.}. For the ESP, if you have one and assuming it is @file{/dev/sda1}, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2485 +#: guix-git/doc/guix.texi:2502 #, no-wrap msgid "mkfs.fat -F32 /dev/sda1\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2492 +#: guix-git/doc/guix.texi:2509 msgid "For the root file system, ext4 is the most widely used format. Other file systems, such as Btrfs, support compression, which is reported to nicely complement file deduplication that the daemon performs independently of the file system (@pxref{Invoking guix-daemon, deduplication})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2499 +#: guix-git/doc/guix.texi:2516 msgid "Preferably, assign file systems a label so that you can easily and reliably refer to them in @code{file-system} declarations (@pxref{File Systems}). This is typically done using the @code{-L} option of @command{mkfs.ext4} and related commands. So, assuming the target root partition lives at @file{/dev/sda2}, a file system with the label @code{my-root} can be created with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2502 +#: guix-git/doc/guix.texi:2519 #, no-wrap msgid "mkfs.ext4 -L my-root /dev/sda2\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2504 guix-git/doc/guix.texi:14475 +#: guix-git/doc/guix.texi:2521 guix-git/doc/guix.texi:14832 #, no-wrap msgid "encrypted disk" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2509 +#: guix-git/doc/guix.texi:2526 msgid "If you are instead planning to encrypt the root partition, you can use the Cryptsetup/LUKS utilities to do that (see @inlinefmtifelse{html, @uref{https://linux.die.net/man/8/cryptsetup, @code{man cryptsetup}}, @code{man cryptsetup}} for more information)." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2510 guix-git/doc/guix.texi:5280 -#: guix-git/doc/guix.texi:6489 guix-git/doc/guix.texi:14601 -#: guix-git/doc/guix.texi:21013 guix-git/doc/guix.texi:21020 +#: guix-git/doc/guix.texi:2527 guix-git/doc/guix.texi:5298 +#: guix-git/doc/guix.texi:6532 guix-git/doc/guix.texi:14958 +#: guix-git/doc/guix.texi:21375 guix-git/doc/guix.texi:21382 #, no-wrap msgid "Warning" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2517 +#: guix-git/doc/guix.texi:2534 msgid "Note that GRUB can unlock LUKS2 devices since version 2.06, but only supports the PBKDF2 key derivation function, which is not the default for @command{cryptsetup luksFormat}. You can check which key derivation function is being used by a device by running @command{cryptsetup luksDump @var{device}}, and looking for the PBKDF field of your keyslots." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2522 +#: guix-git/doc/guix.texi:2539 msgid "Assuming you want to store the root partition on @file{/dev/sda2}, the command sequence to format it as a LUKS2 partition would be along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2527 +#: guix-git/doc/guix.texi:2544 #, no-wrap msgid "" "cryptsetup luksFormat --type luks2 --pbkdf pbkdf2 /dev/sda2\n" @@ -7952,28 +8026,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2532 +#: guix-git/doc/guix.texi:2549 msgid "Once that is done, mount the target file system under @file{/mnt} with a command like (again, assuming @code{my-root} is the label of the root file system):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2535 +#: guix-git/doc/guix.texi:2552 #, no-wrap msgid "mount LABEL=my-root /mnt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2541 +#: guix-git/doc/guix.texi:2558 msgid "Also mount any other file systems you would like to use on the target system relative to this path. If you have opted for @file{/boot/efi} as an EFI mount point for example, mount it at @file{/mnt/boot/efi} now so it is found by @code{guix system init} afterwards." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2545 +#: guix-git/doc/guix.texi:2562 msgid "Finally, if you plan to use one or more swap partitions (@pxref{Swap Space}), make sure to initialize them with @command{mkswap}. Assuming you have one swap partition on @file{/dev/sda3}, you would run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2549 +#: guix-git/doc/guix.texi:2566 #, no-wrap msgid "" "mkswap /dev/sda3\n" @@ -7981,12 +8055,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2557 +#: guix-git/doc/guix.texi:2574 msgid "Alternatively, you may use a swap file. For example, assuming that in the new system you want to use the file @file{/swapfile} as a swap file, you would run@footnote{This example will work for many types of file systems (e.g., ext4). However, for copy-on-write file systems (e.g., btrfs), the required steps may be different. For details, see the manual pages for @command{mkswap} and @command{swapon}.}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2565 +#: guix-git/doc/guix.texi:2582 #, no-wrap msgid "" "# This is 10 GiB of swap space. Adjust \"count\" to change the size.\n" @@ -7998,38 +8072,38 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2570 +#: guix-git/doc/guix.texi:2587 msgid "Note that if you have encrypted the root partition and created a swap file in its file system as described above, then the encryption also protects the swap file, just like any other file in that file system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2576 +#: guix-git/doc/guix.texi:2593 msgid "With the target partitions ready and the target root mounted on @file{/mnt}, we're ready to go. First, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2579 +#: guix-git/doc/guix.texi:2596 #, no-wrap msgid "herd start cow-store /mnt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2586 +#: guix-git/doc/guix.texi:2603 msgid "This makes @file{/gnu/store} copy-on-write, such that packages added to it during the installation phase are written to the target disk on @file{/mnt} rather than kept in memory. This is necessary because the first phase of the @command{guix system init} command (see below) entails downloads or builds to @file{/gnu/store} which, initially, is an in-memory file system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2597 +#: guix-git/doc/guix.texi:2614 msgid "Next, you have to edit a file and provide the declaration of the operating system to be installed. To that end, the installation system comes with three text editors. We recommend GNU nano (@pxref{Top,,, nano, GNU nano Manual}), which supports syntax highlighting and parentheses matching; other editors include mg (an Emacs clone), and nvi (a clone of the original BSD @command{vi} editor). We strongly recommend storing that file on the target root file system, say, as @file{/mnt/etc/config.scm}. Failing to do that, you will have lost your configuration file once you have rebooted into the newly-installed system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2604 +#: guix-git/doc/guix.texi:2621 msgid "@xref{Using the Configuration System}, for an overview of the configuration file. The example configurations discussed in that section are available under @file{/etc/configuration} in the installation image. Thus, to get started with a system configuration providing a graphical display server (a ``desktop'' system), you can run something along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2609 +#: guix-git/doc/guix.texi:2626 #, no-wrap msgid "" "# mkdir /mnt/etc\n" @@ -8038,53 +8112,53 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2613 +#: guix-git/doc/guix.texi:2630 msgid "You should pay attention to what your configuration file contains, and in particular:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2625 +#: guix-git/doc/guix.texi:2642 msgid "Make sure the @code{bootloader-configuration} form refers to the targets you want to install GRUB on. It should mention @code{grub-bootloader} if you are installing GRUB in the legacy way, or @code{grub-efi-bootloader} for newer UEFI systems. For legacy systems, the @code{targets} field contain the names of the devices, like @code{(list \"/dev/sda\")}; for UEFI systems it names the paths to mounted EFI partitions, like @code{(list \"/boot/efi\")}; do make sure the paths are currently mounted and a @code{file-system} entry is specified in your configuration." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2631 +#: guix-git/doc/guix.texi:2648 msgid "Be sure that your file system labels match the value of their respective @code{device} fields in your @code{file-system} configuration, assuming your @code{file-system} configuration uses the @code{file-system-label} procedure in its @code{device} field." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2635 +#: guix-git/doc/guix.texi:2652 msgid "If there are encrypted or RAID partitions, make sure to add a @code{mapped-devices} field to describe them (@pxref{Mapped Devices})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2640 +#: guix-git/doc/guix.texi:2657 msgid "Once you are done preparing the configuration file, the new system must be initialized (remember that the target root file system is mounted under @file{/mnt}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2643 +#: guix-git/doc/guix.texi:2660 #, no-wrap msgid "guix system init /mnt/etc/config.scm /mnt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2650 +#: guix-git/doc/guix.texi:2667 msgid "This copies all the necessary files and installs GRUB on @file{/dev/sdX}, unless you pass the @option{--no-bootloader} option. For more information, @pxref{Invoking guix system}. This command may trigger downloads or builds of missing packages, which can take some time." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2658 +#: guix-git/doc/guix.texi:2675 msgid "Once that command has completed---and hopefully succeeded!---you can run @command{reboot} and boot into the new system. The @code{root} password in the new system is initially empty; other users' passwords need to be initialized by running the @command{passwd} command as @code{root}, unless your configuration specifies otherwise (@pxref{user-account-password, user account passwords}). @xref{After System Installation}, for what's next!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2665 +#: guix-git/doc/guix.texi:2682 msgid "Success, you've now booted into Guix System! From then on, you can update the system whenever you want by running, say:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2669 +#: guix-git/doc/guix.texi:2686 #, no-wrap msgid "" "guix pull\n" @@ -8092,93 +8166,93 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2675 +#: guix-git/doc/guix.texi:2692 msgid "This builds a new system generation with the latest packages and services (@pxref{Invoking guix system}). We recommend doing that regularly so that your system includes the latest security updates (@pxref{Security Updates})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2678 +#: guix-git/doc/guix.texi:2695 #, no-wrap msgid "sudo vs. @command{guix pull}" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2682 +#: guix-git/doc/guix.texi:2699 msgid "Note that @command{sudo guix} runs your user's @command{guix} command and @emph{not} root's, because @command{sudo} leaves @env{PATH} unchanged. To explicitly run root's @command{guix}, type @command{sudo -i guix @dots{}}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2687 +#: guix-git/doc/guix.texi:2704 msgid "The difference matters here, because @command{guix pull} updates the @command{guix} command and package definitions only for the user it is run as. This means that if you choose to use @command{guix system reconfigure} in root's login shell, you'll need to @command{guix pull} separately." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2692 +#: guix-git/doc/guix.texi:2709 msgid "Now, @pxref{Getting Started}, and join us on @code{#guix} on the Libera Chat IRC network or on @email{guix-devel@@gnu.org} to share your experience!" msgstr "" #. type: section -#: guix-git/doc/guix.texi:2695 +#: guix-git/doc/guix.texi:2712 #, no-wrap msgid "Installing Guix in a Virtual Machine" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2697 +#: guix-git/doc/guix.texi:2714 #, no-wrap msgid "virtual machine, Guix System installation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2698 +#: guix-git/doc/guix.texi:2715 #, no-wrap msgid "virtual private server (VPS)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2699 +#: guix-git/doc/guix.texi:2716 #, no-wrap msgid "VPS (virtual private server)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2703 +#: guix-git/doc/guix.texi:2720 msgid "If you'd like to install Guix System in a virtual machine (VM) or on a virtual private server (VPS) rather than on your beloved machine, this section is for you." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2706 +#: guix-git/doc/guix.texi:2723 msgid "To boot a @uref{https://qemu.org/,QEMU} VM for installing Guix System in a disk image, follow these steps:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2711 +#: guix-git/doc/guix.texi:2728 msgid "First, retrieve and decompress the Guix system installation image as described previously (@pxref{USB Stick and DVD Installation})." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2715 +#: guix-git/doc/guix.texi:2732 msgid "Create a disk image that will hold the installed system. To make a qcow2-formatted disk image, use the @command{qemu-img} command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2718 +#: guix-git/doc/guix.texi:2735 #, no-wrap msgid "qemu-img create -f qcow2 guix-system.img 50G\n" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2722 +#: guix-git/doc/guix.texi:2739 msgid "The resulting file will be much smaller than 50 GB (typically less than 1 MB), but it will grow as the virtualized storage device is filled up." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2725 +#: guix-git/doc/guix.texi:2742 msgid "Boot the USB installation image in an VM:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2731 +#: guix-git/doc/guix.texi:2748 #, no-wrap msgid "" "qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \\\n" @@ -8188,115 +8262,115 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2735 +#: guix-git/doc/guix.texi:2752 msgid "@code{-enable-kvm} is optional, but significantly improves performance, @pxref{Running Guix in a VM}." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2739 +#: guix-git/doc/guix.texi:2756 msgid "You're now root in the VM, proceed with the installation process. @xref{Preparing for Installation}, and follow the instructions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2744 +#: guix-git/doc/guix.texi:2761 msgid "Once installation is complete, you can boot the system that's on your @file{guix-system.img} image. @xref{Running Guix in a VM}, for how to do that." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2748 +#: guix-git/doc/guix.texi:2765 #, no-wrap msgid "installation image" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2751 +#: guix-git/doc/guix.texi:2768 msgid "The installation image described above was built using the @command{guix system} command, specifically:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2754 +#: guix-git/doc/guix.texi:2771 #, no-wrap msgid "guix system image -t iso9660 gnu/system/install.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2759 +#: guix-git/doc/guix.texi:2776 msgid "Have a look at @file{gnu/system/install.scm} in the source tree, and see also @ref{Invoking guix system} for more information about the installation image." msgstr "" #. type: section -#: guix-git/doc/guix.texi:2760 +#: guix-git/doc/guix.texi:2777 #, no-wrap msgid "Building the Installation Image for ARM Boards" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2764 +#: guix-git/doc/guix.texi:2781 msgid "Many ARM boards require a specific variant of the @uref{https://www.denx.de/wiki/U-Boot/, U-Boot} bootloader." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2768 +#: guix-git/doc/guix.texi:2785 msgid "If you build a disk image and the bootloader is not available otherwise (on another boot drive etc), it's advisable to build an image that includes the bootloader, specifically:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2771 +#: guix-git/doc/guix.texi:2788 #, no-wrap msgid "guix system image --system=armhf-linux -e '((@@ (gnu system install) os-with-u-boot) (@@ (gnu system install) installation-os) \"A20-OLinuXino-Lime2\")'\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2775 +#: guix-git/doc/guix.texi:2792 msgid "@code{A20-OLinuXino-Lime2} is the name of the board. If you specify an invalid board, a list of possible boards will be printed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2785 +#: guix-git/doc/guix.texi:2802 msgid "Presumably, you've reached this section because either you have installed Guix on top of another distribution (@pxref{Installation}), or you've installed the standalone Guix System (@pxref{System Installation}). It's time for you to get started using Guix and this section aims to help you do that and give you a feel of what it's like." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2789 +#: guix-git/doc/guix.texi:2806 msgid "Guix is about installing software, so probably the first thing you'll want to do is to actually look for software. Let's say you're looking for a text editor, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2792 +#: guix-git/doc/guix.texi:2809 #, no-wrap msgid "guix search text editor\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2799 +#: guix-git/doc/guix.texi:2816 msgid "This command shows you a number of matching @dfn{packages}, each time showing the package's name, version, a description, and additional info. Once you've found out the one you want to use, let's say Emacs (ah ha!), you can go ahead and install it (run this command as a regular user, @emph{no need for root privileges}!):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2802 +#: guix-git/doc/guix.texi:2819 #, no-wrap msgid "guix install emacs\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2804 guix-git/doc/guix.texi:3116 -#: guix-git/doc/guix.texi:3168 +#: guix-git/doc/guix.texi:2821 guix-git/doc/guix.texi:3133 +#: guix-git/doc/guix.texi:3185 #, no-wrap msgid "profile" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2812 +#: guix-git/doc/guix.texi:2829 msgid "You've installed your first package, congrats! The package is now visible in your default @dfn{profile}, @file{$HOME/.guix-profile}---a profile is a directory containing installed packages. In the process, you've probably noticed that Guix downloaded pre-built binaries; or, if you explicitly chose to @emph{not} use pre-built binaries, then probably Guix is still building software (@pxref{Substitutes}, for more info)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2815 +#: guix-git/doc/guix.texi:2832 msgid "Unless you're using Guix System, the @command{guix install} command must have printed this hint:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2818 +#: guix-git/doc/guix.texi:2835 #, no-wrap msgid "" "hint: Consider setting the necessary environment variables by running:\n" @@ -8304,7 +8378,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2821 +#: guix-git/doc/guix.texi:2838 #, no-wrap msgid "" " GUIX_PROFILE=\"$HOME/.guix-profile\"\n" @@ -8313,77 +8387,77 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2823 +#: guix-git/doc/guix.texi:2840 #, no-wrap msgid "Alternately, see `guix package --search-paths -p \"$HOME/.guix-profile\"'.\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2837 +#: guix-git/doc/guix.texi:2854 msgid "Indeed, you must now tell your shell where @command{emacs} and other programs installed with Guix are to be found. Pasting the two lines above will do just that: it will add @code{$HOME/.guix-profile/bin}---which is where the installed package is---to the @code{PATH} environment variable. You can paste these two lines in your shell so they take effect right away, but more importantly you should add them to @file{~/.bash_profile} (or equivalent file if you do not use Bash) so that environment variables are set next time you spawn a shell. You only need to do this once and other search paths environment variables will be taken care of similarly---e.g., if you eventually install @code{python} and Python libraries, @env{GUIX_PYTHONPATH} will be defined." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2840 +#: guix-git/doc/guix.texi:2857 msgid "You can go on installing packages at your will. To list installed packages, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2843 +#: guix-git/doc/guix.texi:2860 #, no-wrap msgid "guix package --list-installed\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2848 +#: guix-git/doc/guix.texi:2865 msgid "To remove a package, you would unsurprisingly run @command{guix remove}. A distinguishing feature is the ability to @dfn{roll back} any operation you made---installation, removal, upgrade---by simply typing:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2851 +#: guix-git/doc/guix.texi:2868 #, no-wrap msgid "guix package --roll-back\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2856 +#: guix-git/doc/guix.texi:2873 msgid "This is because each operation is in fact a @dfn{transaction} that creates a new @dfn{generation}. These generations and the difference between them can be displayed by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2859 +#: guix-git/doc/guix.texi:2876 #, no-wrap msgid "guix package --list-generations\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2862 +#: guix-git/doc/guix.texi:2879 msgid "Now you know the basics of package management!" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2863 guix-git/doc/guix.texi:2922 +#: guix-git/doc/guix.texi:2880 guix-git/doc/guix.texi:2939 #, no-wrap msgid "Going further" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2871 +#: guix-git/doc/guix.texi:2888 msgid "@xref{Package Management}, for more about package management. You may like @dfn{declarative} package management with @command{guix package --manifest}, managing separate @dfn{profiles} with @option{--profile}, deleting old generations, collecting garbage, and other nifty features that will come in handy as you become more familiar with Guix. If you are a developer, @pxref{Development} for additional tools. And if you're curious, @pxref{Features}, to peek under the hood." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2876 +#: guix-git/doc/guix.texi:2893 msgid "Once you've installed a set of packages, you will want to periodically @emph{upgrade} them to the latest and greatest version. To do that, you will first pull the latest revision of Guix and its package collection:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2886 +#: guix-git/doc/guix.texi:2903 msgid "The end result is a new @command{guix} command, under @file{~/.config/guix/current/bin}. Unless you're on Guix System, the first time you run @command{guix pull}, be sure to follow the hint that the command prints and, similar to what we saw above, paste these two lines in your terminal and @file{.bash_profile}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2890 +#: guix-git/doc/guix.texi:2907 #, no-wrap msgid "" "GUIX_PROFILE=\"$HOME/.config/guix/current\"\n" @@ -8391,336 +8465,336 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2894 +#: guix-git/doc/guix.texi:2911 msgid "You must also instruct your shell to point to this new @command{guix}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2897 +#: guix-git/doc/guix.texi:2914 #, no-wrap msgid "hash guix\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2901 +#: guix-git/doc/guix.texi:2918 msgid "At this point, you're running a brand new Guix. You can thus go ahead and actually upgrade all the packages you previously installed:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2904 +#: guix-git/doc/guix.texi:2921 #, no-wrap msgid "guix upgrade\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2910 +#: guix-git/doc/guix.texi:2927 msgid "As you run this command, you will see that binaries are downloaded (or perhaps some packages are built), and eventually you end up with the upgraded packages. Should one of these upgraded packages not be to your liking, remember you can always roll back!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2913 +#: guix-git/doc/guix.texi:2930 msgid "You can display the exact revision of Guix you're currently using by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2916 +#: guix-git/doc/guix.texi:2933 #, no-wrap msgid "guix describe\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2921 +#: guix-git/doc/guix.texi:2938 msgid "The information it displays is @emph{all it takes to reproduce the exact same Guix}, be it at a different point in time or on a different machine." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2927 +#: guix-git/doc/guix.texi:2944 msgid "@xref{Invoking guix pull}, for more information. @xref{Channels}, on how to specify additional @dfn{channels} to pull packages from, how to replicate Guix, and more. You may also find @command{time-machine} handy (@pxref{Invoking guix time-machine})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2932 +#: guix-git/doc/guix.texi:2949 msgid "If you installed Guix System, one of the first things you'll want to do is to upgrade your system. Once you've run @command{guix pull} to get the latest Guix, you can upgrade the system like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2935 +#: guix-git/doc/guix.texi:2952 #, no-wrap msgid "sudo guix system reconfigure /etc/config.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2944 +#: guix-git/doc/guix.texi:2961 msgid "Upon completion, the system runs the latest versions of its software packages. When you eventually reboot, you'll notice a sub-menu in the bootloader that reads ``Old system generations'': it's what allows you to boot @emph{an older generation of your system}, should the latest generation be ``broken'' or otherwise unsatisfying. Just like for packages, you can always @emph{roll back} to a previous generation @emph{of the whole system}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2947 +#: guix-git/doc/guix.texi:2964 #, no-wrap msgid "sudo guix system roll-back\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2954 +#: guix-git/doc/guix.texi:2971 msgid "There are many things you'll probably want to tweak on your system: adding new user accounts, adding new system services, fiddling with the configuration of those services, etc. The system configuration is @emph{entirely} described in the @file{/etc/config.scm} file. @xref{Using the Configuration System}, to learn how to change it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2956 +#: guix-git/doc/guix.texi:2973 msgid "Now you know enough to get started!" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2957 +#: guix-git/doc/guix.texi:2974 #, no-wrap msgid "Resources" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2960 +#: guix-git/doc/guix.texi:2977 msgid "The rest of this manual provides a reference for all things Guix. Here are some additional resources you may find useful:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2965 +#: guix-git/doc/guix.texi:2982 msgid "@xref{Top,,, guix-cookbook, The GNU Guix Cookbook}, for a list of ``how-to'' style of recipes for a variety of applications." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2970 +#: guix-git/doc/guix.texi:2987 msgid "The @uref{https://guix.gnu.org/guix-refcard.pdf, GNU Guix Reference Card} lists in two pages most of the commands and options you'll ever need." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2975 +#: guix-git/doc/guix.texi:2992 msgid "The web site contains @uref{https://guix.gnu.org/en/videos/, instructional videos} covering topics such as everyday use of Guix, how to get help, and how to become a contributor." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2979 +#: guix-git/doc/guix.texi:2996 msgid "@xref{Documentation}, to learn how to access documentation on your computer." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2982 +#: guix-git/doc/guix.texi:2999 msgid "We hope you will enjoy Guix as much as the community enjoys building it!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2993 +#: guix-git/doc/guix.texi:3010 msgid "The purpose of GNU Guix is to allow users to easily install, upgrade, and remove software packages, without having to know about their build procedures or dependencies. Guix also goes beyond this obvious set of features." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3001 +#: guix-git/doc/guix.texi:3018 msgid "This chapter describes the main features of Guix, as well as the package management tools it provides. Along with the command-line interface described below (@pxref{Invoking guix package, @code{guix package}}), you may also use the Emacs-Guix interface (@pxref{Top,,, emacs-guix, The Emacs-Guix Reference Manual}), after installing @code{emacs-guix} package (run @kbd{M-x guix-help} command to start with it):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3004 +#: guix-git/doc/guix.texi:3021 #, no-wrap msgid "guix install emacs-guix\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3025 +#: guix-git/doc/guix.texi:3042 msgid "Here we assume you've already made your first steps with Guix (@pxref{Getting Started}) and would like to get an overview about what's going on under the hood." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3029 +#: guix-git/doc/guix.texi:3046 msgid "When using Guix, each package ends up in the @dfn{package store}, in its own directory---something that resembles @file{/gnu/store/xxx-package-1.2}, where @code{xxx} is a base32 string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3051 msgid "Instead of referring to these directories, users have their own @dfn{profile}, which points to the packages that they actually want to use. These profiles are stored within each user's home directory, at @code{$HOME/.guix-profile}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3042 +#: guix-git/doc/guix.texi:3059 msgid "For example, @code{alice} installs GCC 4.7.2. As a result, @file{/home/alice/.guix-profile/bin/gcc} points to @file{/gnu/store/@dots{}-gcc-4.7.2/bin/gcc}. Now, on the same machine, @code{bob} had already installed GCC 4.8.0. The profile of @code{bob} simply continues to point to @file{/gnu/store/@dots{}-gcc-4.8.0/bin/gcc}---i.e., both versions of GCC coexist on the same system without any interference." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3046 +#: guix-git/doc/guix.texi:3063 msgid "The @command{guix package} command is the central tool to manage packages (@pxref{Invoking guix package}). It operates on the per-user profiles, and can be used @emph{with normal user privileges}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3047 guix-git/doc/guix.texi:3130 +#: guix-git/doc/guix.texi:3064 guix-git/doc/guix.texi:3147 #, no-wrap msgid "transactions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3054 +#: guix-git/doc/guix.texi:3071 msgid "The command provides the obvious install, remove, and upgrade operations. Each invocation is actually a @emph{transaction}: either the specified operation succeeds, or nothing happens. Thus, if the @command{guix package} process is terminated during the transaction, or if a power outage occurs during the transaction, then the user's profile remains in its previous state, and remains usable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3062 +#: guix-git/doc/guix.texi:3079 msgid "In addition, any package transaction may be @emph{rolled back}. So, if, for example, an upgrade installs a new version of a package that turns out to have a serious bug, users may roll back to the previous instance of their profile, which was known to work well. Similarly, the global system configuration on Guix is subject to transactional upgrades and roll-back (@pxref{Using the Configuration System})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3069 +#: guix-git/doc/guix.texi:3086 msgid "All packages in the package store may be @emph{garbage-collected}. Guix can determine which packages are still referenced by user profiles, and remove those that are provably no longer referenced (@pxref{Invoking guix gc}). Users may also explicitly remove old generations of their profile so that the packages they refer to can be collected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3082 +#: guix-git/doc/guix.texi:3099 msgid "Guix takes a @dfn{purely functional} approach to package management, as described in the introduction (@pxref{Introduction}). Each @file{/gnu/store} package directory name contains a hash of all the inputs that were used to build that package---compiler, libraries, build scripts, etc. This direct correspondence allows users to make sure a given package installation matches the current state of their distribution. It also helps maximize @dfn{build reproducibility}: thanks to the isolated build environments that are used, a given build is likely to yield bit-identical files when performed on different machines (@pxref{Invoking guix-daemon, container})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3093 +#: guix-git/doc/guix.texi:3110 msgid "This foundation allows Guix to support @dfn{transparent binary/source deployment}. When a pre-built binary for a @file{/gnu/store} item is available from an external source---a @dfn{substitute}, Guix just downloads it and unpacks it; otherwise, it builds the package from source, locally (@pxref{Substitutes}). Because build results are usually bit-for-bit reproducible, users do not have to trust servers that provide substitutes: they can force a local build and @emph{challenge} providers (@pxref{Invoking guix challenge})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3099 +#: guix-git/doc/guix.texi:3116 msgid "Control over the build environment is a feature that is also useful for developers. The @command{guix shell} command allows developers of a package to quickly set up the right development environment for their package, without having to manually install the dependencies of the package into their profile (@pxref{Invoking guix shell})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3100 +#: guix-git/doc/guix.texi:3117 #, no-wrap msgid "replication, of software environments" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3101 +#: guix-git/doc/guix.texi:3118 #, no-wrap msgid "provenance tracking, of software artifacts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3108 +#: guix-git/doc/guix.texi:3125 msgid "All of Guix and its package definitions is version-controlled, and @command{guix pull} allows you to ``travel in time'' on the history of Guix itself (@pxref{Invoking guix pull}). This makes it possible to replicate a Guix instance on a different machine or at a later point in time, which in turn allows you to @emph{replicate complete software environments}, while retaining precise @dfn{provenance tracking} of the software." msgstr "" #. type: section -#: guix-git/doc/guix.texi:3110 +#: guix-git/doc/guix.texi:3127 #, no-wrap msgid "Invoking @command{guix package}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3112 +#: guix-git/doc/guix.texi:3129 #, no-wrap msgid "installing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3113 +#: guix-git/doc/guix.texi:3130 #, no-wrap msgid "removing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3114 +#: guix-git/doc/guix.texi:3131 #, no-wrap msgid "package installation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3115 +#: guix-git/doc/guix.texi:3132 #, no-wrap msgid "package removal" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3125 +#: guix-git/doc/guix.texi:3142 msgid "The @command{guix package} command is the tool that allows users to install, upgrade, and remove packages, as well as rolling back to previous configurations. These operations work on a user @dfn{profile}---a directory of installed packages. Each user has a default profile in @file{$HOME/.guix-profile}. The command operates only on the user's own profile, and works with normal user privileges (@pxref{Features}). Its syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3128 +#: guix-git/doc/guix.texi:3145 #, no-wrap msgid "guix package @var{options}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3135 +#: guix-git/doc/guix.texi:3152 msgid "Primarily, @var{options} specifies the operations to be performed during the transaction. Upon completion, a new profile is created, but previous @dfn{generations} of the profile remain available, should the user want to roll back." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3138 +#: guix-git/doc/guix.texi:3155 msgid "For example, to remove @code{lua} and install @code{guile} and @code{guile-cairo} in a single transaction:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3141 +#: guix-git/doc/guix.texi:3158 #, no-wrap msgid "guix package -r lua -i guile guile-cairo\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3143 +#: guix-git/doc/guix.texi:3160 #, no-wrap msgid "aliases, for @command{guix package}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3145 +#: guix-git/doc/guix.texi:3162 msgid "For your convenience, we also provide the following aliases:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3149 +#: guix-git/doc/guix.texi:3166 msgid "@command{guix search} is an alias for @command{guix package -s}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3151 +#: guix-git/doc/guix.texi:3168 msgid "@command{guix install} is an alias for @command{guix package -i}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3153 +#: guix-git/doc/guix.texi:3170 msgid "@command{guix remove} is an alias for @command{guix package -r}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3155 +#: guix-git/doc/guix.texi:3172 msgid "@command{guix upgrade} is an alias for @command{guix package -u}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3157 +#: guix-git/doc/guix.texi:3174 msgid "and @command{guix show} is an alias for @command{guix package --show=}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3162 +#: guix-git/doc/guix.texi:3179 msgid "These aliases are less expressive than @command{guix package} and provide fewer options, so in some cases you'll probably want to use @command{guix package} directly." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3167 +#: guix-git/doc/guix.texi:3184 msgid "@command{guix package} also supports a @dfn{declarative approach} whereby the user specifies the exact set of packages to be available and passes it @i{via} the @option{--manifest} option (@pxref{profile-manifest, @option{--manifest}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3174 +#: guix-git/doc/guix.texi:3191 msgid "For each user, a symlink to the user's default profile is automatically created in @file{$HOME/.guix-profile}. This symlink always points to the current generation of the user's default profile. Thus, users can add @file{$HOME/.guix-profile/bin} to their @env{PATH} environment variable, and so on." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3174 guix-git/doc/guix.texi:3418 +#: guix-git/doc/guix.texi:3191 guix-git/doc/guix.texi:3435 #, no-wrap msgid "search paths" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3179 +#: guix-git/doc/guix.texi:3196 msgid "If you are not using Guix System, consider adding the following lines to your @file{~/.bash_profile} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}) so that newly-spawned shells get all the right environment variable definitions:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3183 +#: guix-git/doc/guix.texi:3200 #, no-wrap msgid "" "GUIX_PROFILE=\"$HOME/.guix-profile\" ; \\\n" @@ -8728,298 +8802,298 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3194 +#: guix-git/doc/guix.texi:3211 msgid "In a multi-user setup, user profiles are stored in a place registered as a @dfn{garbage-collector root}, which @file{$HOME/.guix-profile} points to (@pxref{Invoking guix gc}). That directory is normally @code{@var{localstatedir}/guix/profiles/per-user/@var{user}}, where @var{localstatedir} is the value passed to @code{configure} as @option{--localstatedir}, and @var{user} is the user name. The @file{per-user} directory is created when @command{guix-daemon} is started, and the @var{user} sub-directory is created by @command{guix package}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3196 +#: guix-git/doc/guix.texi:3213 msgid "The @var{options} can be among the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3199 +#: guix-git/doc/guix.texi:3216 #, no-wrap msgid "--install=@var{package} @dots{}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3200 +#: guix-git/doc/guix.texi:3217 #, no-wrap msgid "-i @var{package} @dots{}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3202 +#: guix-git/doc/guix.texi:3219 msgid "Install the specified @var{package}s." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3207 +#: guix-git/doc/guix.texi:3224 msgid "Each @var{package} may specify either a simple package name, such as @code{guile}, or a package name followed by an at-sign and version number, such as @code{guile@@1.8.8} or simply @code{guile@@1.8} (in the latter case, the newest version prefixed by @code{1.8} is selected)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3215 +#: guix-git/doc/guix.texi:3232 msgid "If no version number is specified, the newest available version will be selected. In addition, @var{package} may contain a colon, followed by the name of one of the outputs of the package, as in @code{gcc:doc} or @code{binutils@@2.22:lib} (@pxref{Packages with Multiple Outputs}). Packages with a corresponding name (and optionally version) are searched for among the GNU distribution modules (@pxref{Package Modules})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3216 +#: guix-git/doc/guix.texi:3233 #, no-wrap msgid "propagated inputs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3222 +#: guix-git/doc/guix.texi:3239 msgid "Sometimes packages have @dfn{propagated inputs}: these are dependencies that automatically get installed along with the required package (@pxref{package-propagated-inputs, @code{propagated-inputs} in @code{package} objects}, for information about propagated inputs in package definitions)." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3229 +#: guix-git/doc/guix.texi:3246 msgid "package-cmd-propagated-inputs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3229 +#: guix-git/doc/guix.texi:3246 msgid "An example is the GNU MPC library: its C header files refer to those of the GNU MPFR library, which in turn refer to those of the GMP library. Thus, when installing MPC, the MPFR and GMP libraries also get installed in the profile; removing MPC also removes MPFR and GMP---unless they had also been explicitly installed by the user." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3234 +#: guix-git/doc/guix.texi:3251 msgid "Besides, packages sometimes rely on the definition of environment variables for their search paths (see explanation of @option{--search-paths} below). Any missing or possibly incorrect environment variable definitions are reported here." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3235 +#: guix-git/doc/guix.texi:3252 #, no-wrap msgid "--install-from-expression=@var{exp}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3236 +#: guix-git/doc/guix.texi:3253 #, no-wrap msgid "-e @var{exp}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3238 +#: guix-git/doc/guix.texi:3255 msgid "Install the package @var{exp} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3243 +#: guix-git/doc/guix.texi:3260 msgid "@var{exp} must be a Scheme expression that evaluates to a @code{} object. This option is notably useful to disambiguate between same-named variants of a package, with expressions such as @code{(@@ (gnu packages base) guile-final)}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3247 +#: guix-git/doc/guix.texi:3264 msgid "Note that this option installs the first output of the specified package, which may be insufficient when needing a specific output of a multiple-output package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3248 +#: guix-git/doc/guix.texi:3265 #, no-wrap msgid "--install-from-file=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3249 guix-git/doc/guix.texi:5781 -#: guix-git/doc/guix.texi:11396 +#: guix-git/doc/guix.texi:3266 guix-git/doc/guix.texi:5799 +#: guix-git/doc/guix.texi:11710 #, no-wrap msgid "-f @var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3251 +#: guix-git/doc/guix.texi:3268 msgid "Install the package that the code within @var{file} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3254 guix-git/doc/guix.texi:5787 -#: guix-git/doc/guix.texi:6162 +#: guix-git/doc/guix.texi:3271 guix-git/doc/guix.texi:5805 +#: guix-git/doc/guix.texi:6199 msgid "As an example, @var{file} might contain a definition like this (@pxref{Defining Packages}):" msgstr "" #. type: include -#: guix-git/doc/guix.texi:3256 guix-git/doc/guix.texi:11404 +#: guix-git/doc/guix.texi:3273 guix-git/doc/guix.texi:11718 #, no-wrap msgid "package-hello.scm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3263 +#: guix-git/doc/guix.texi:3280 msgid "Developers may find it useful to include such a @file{guix.scm} file in the root of their project source tree that can be used to test development snapshots and create reproducible development environments (@pxref{Invoking guix shell})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3268 +#: guix-git/doc/guix.texi:3285 msgid "The @var{file} may also contain a JSON representation of one or more package definitions. Running @code{guix package -f} on @file{hello.json} with the following contents would result in installing the package @code{greeter} after building @code{myhello}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3271 guix-git/doc/guix.texi:11414 +#: guix-git/doc/guix.texi:3288 guix-git/doc/guix.texi:11728 #, no-wrap msgid "@verbatiminclude package-hello.json\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3273 +#: guix-git/doc/guix.texi:3290 #, no-wrap msgid "--remove=@var{package} @dots{}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3274 +#: guix-git/doc/guix.texi:3291 #, no-wrap msgid "-r @var{package} @dots{}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3276 +#: guix-git/doc/guix.texi:3293 msgid "Remove the specified @var{package}s." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3281 +#: guix-git/doc/guix.texi:3298 msgid "As for @option{--install}, each @var{package} may specify a version number and/or output name in addition to the package name. For instance, @samp{-r glibc:debug} would remove the @code{debug} output of @code{glibc}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3282 +#: guix-git/doc/guix.texi:3299 #, no-wrap msgid "--upgrade[=@var{regexp} @dots{}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3283 +#: guix-git/doc/guix.texi:3300 #, no-wrap msgid "-u [@var{regexp} @dots{}]" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3284 +#: guix-git/doc/guix.texi:3301 #, no-wrap msgid "upgrading packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3288 +#: guix-git/doc/guix.texi:3305 msgid "Upgrade all the installed packages. If one or more @var{regexp}s are specified, upgrade only installed packages whose name matches a @var{regexp}. Also see the @option{--do-not-upgrade} option below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3293 +#: guix-git/doc/guix.texi:3310 msgid "Note that this upgrades package to the latest version of packages found in the distribution currently installed. To update your distribution, you should regularly run @command{guix pull} (@pxref{Invoking guix pull})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3294 +#: guix-git/doc/guix.texi:3311 #, no-wrap msgid "package transformations, upgrades" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3299 +#: guix-git/doc/guix.texi:3316 msgid "When upgrading, package transformations that were originally applied when creating the profile are automatically re-applied (@pxref{Package Transformation Options}). For example, assume you first installed Emacs from the tip of its development branch with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3302 +#: guix-git/doc/guix.texi:3319 #, no-wrap msgid "guix install emacs-next --with-branch=emacs-next=master\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3307 +#: guix-git/doc/guix.texi:3324 msgid "Next time you run @command{guix upgrade}, Guix will again pull the tip of the Emacs development branch and build @code{emacs-next} from that checkout." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3312 +#: guix-git/doc/guix.texi:3329 msgid "Note that transformation options such as @option{--with-branch} and @option{--with-source} depend on external state; it is up to you to ensure that they work as expected. You can also discard a transformations that apply to a package by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3315 +#: guix-git/doc/guix.texi:3332 #, no-wrap msgid "guix install @var{package}\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3317 +#: guix-git/doc/guix.texi:3334 #, no-wrap msgid "--do-not-upgrade[=@var{regexp} @dots{}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3322 +#: guix-git/doc/guix.texi:3339 msgid "When used together with the @option{--upgrade} option, do @emph{not} upgrade any packages whose name matches a @var{regexp}. For example, to upgrade all packages in the current profile except those containing the substring ``emacs'':" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3325 +#: guix-git/doc/guix.texi:3342 #, no-wrap msgid "$ guix package --upgrade . --do-not-upgrade emacs\n" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3327 +#: guix-git/doc/guix.texi:3344 #, no-wrap msgid "profile-manifest" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3327 guix-git/doc/guix.texi:5799 -#: guix-git/doc/guix.texi:6167 guix-git/doc/guix.texi:6615 -#: guix-git/doc/guix.texi:12535 guix-git/doc/guix.texi:14135 +#: guix-git/doc/guix.texi:3344 guix-git/doc/guix.texi:5817 +#: guix-git/doc/guix.texi:6204 guix-git/doc/guix.texi:6658 +#: guix-git/doc/guix.texi:12850 guix-git/doc/guix.texi:14492 #, no-wrap msgid "--manifest=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3328 guix-git/doc/guix.texi:5800 -#: guix-git/doc/guix.texi:6168 guix-git/doc/guix.texi:6616 -#: guix-git/doc/guix.texi:12536 +#: guix-git/doc/guix.texi:3345 guix-git/doc/guix.texi:5818 +#: guix-git/doc/guix.texi:6205 guix-git/doc/guix.texi:6659 +#: guix-git/doc/guix.texi:12851 #, no-wrap msgid "-m @var{file}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3329 +#: guix-git/doc/guix.texi:3346 #, no-wrap msgid "profile declaration" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3330 +#: guix-git/doc/guix.texi:3347 #, no-wrap msgid "profile manifest" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3334 +#: guix-git/doc/guix.texi:3351 msgid "Create a new generation of the profile from the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3340 +#: guix-git/doc/guix.texi:3357 msgid "This allows you to @emph{declare} the profile's contents rather than constructing it through a sequence of @option{--install} and similar commands. The advantage is that @var{file} can be put under version control, copied to different machines to reproduce the same profile, and so on." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3344 +#: guix-git/doc/guix.texi:3361 msgid "@var{file} must return a @dfn{manifest} object, which is roughly a list of packages:" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:3345 +#: guix-git/doc/guix.texi:3362 #, no-wrap msgid "packages->manifest" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3348 +#: guix-git/doc/guix.texi:3365 #, no-wrap msgid "" "(use-package-modules guile emacs)\n" @@ -9027,7 +9101,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3354 +#: guix-git/doc/guix.texi:3371 #, no-wrap msgid "" "(packages->manifest\n" @@ -9038,18 +9112,18 @@ msgid "" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:3356 +#: guix-git/doc/guix.texi:3373 #, no-wrap msgid "specifications->manifest" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3363 +#: guix-git/doc/guix.texi:3380 msgid "In this example we have to know which modules define the @code{emacs} and @code{guile-2.0} variables to provide the right @code{use-package-modules} line, which can be cumbersome. We can instead provide regular package specifications and let @code{specifications->manifest} look up the corresponding package objects, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3367 +#: guix-git/doc/guix.texi:3384 #, no-wrap msgid "" "(specifications->manifest\n" @@ -9057,150 +9131,150 @@ msgid "" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:3369 +#: guix-git/doc/guix.texi:3386 #, no-wrap msgid "package->development-manifest" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3372 +#: guix-git/doc/guix.texi:3389 msgid "You might also want to create a manifest for all the dependencies of a package, rather than the package itself:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3375 +#: guix-git/doc/guix.texi:3392 #, no-wrap msgid "(package->development-manifest (specification->package \"emacs\"))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3379 +#: guix-git/doc/guix.texi:3396 msgid "The example above gives you all the software required to develop Emacs, similar to what @command{guix environment emacs} provides." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3382 +#: guix-git/doc/guix.texi:3399 msgid "@xref{export-manifest, @option{--export-manifest}}, to learn how to obtain a manifest file from an existing profile." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3383 guix-git/doc/guix.texi:4492 +#: guix-git/doc/guix.texi:3400 guix-git/doc/guix.texi:4510 #, no-wrap msgid "--roll-back" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3384 guix-git/doc/guix.texi:4493 -#: guix-git/doc/guix.texi:35006 guix-git/doc/guix.texi:37641 +#: guix-git/doc/guix.texi:3401 guix-git/doc/guix.texi:4511 +#: guix-git/doc/guix.texi:35445 guix-git/doc/guix.texi:38120 #, no-wrap msgid "rolling back" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3385 guix-git/doc/guix.texi:4494 +#: guix-git/doc/guix.texi:3402 guix-git/doc/guix.texi:4512 #, no-wrap msgid "undoing transactions" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3386 guix-git/doc/guix.texi:4495 +#: guix-git/doc/guix.texi:3403 guix-git/doc/guix.texi:4513 #, no-wrap msgid "transactions, undoing" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3389 +#: guix-git/doc/guix.texi:3406 msgid "Roll back to the previous @dfn{generation} of the profile---i.e., undo the last transaction." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3392 +#: guix-git/doc/guix.texi:3409 msgid "When combined with options such as @option{--install}, roll back occurs before any other actions." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3396 +#: guix-git/doc/guix.texi:3413 msgid "When rolling back from the first generation that actually contains installed packages, the profile is made to point to the @dfn{zeroth generation}, which contains no files apart from its own metadata." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3400 +#: guix-git/doc/guix.texi:3417 msgid "After having rolled back, installing, removing, or upgrading packages overwrites previous future generations. Thus, the history of the generations in a profile is always linear." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3401 guix-git/doc/guix.texi:4499 +#: guix-git/doc/guix.texi:3418 guix-git/doc/guix.texi:4517 #, no-wrap msgid "--switch-generation=@var{pattern}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3402 guix-git/doc/guix.texi:4500 +#: guix-git/doc/guix.texi:3419 guix-git/doc/guix.texi:4518 #, no-wrap msgid "-S @var{pattern}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3403 guix-git/doc/guix.texi:3635 -#: guix-git/doc/guix.texi:4501 guix-git/doc/guix.texi:34964 +#: guix-git/doc/guix.texi:3420 guix-git/doc/guix.texi:3653 +#: guix-git/doc/guix.texi:4519 guix-git/doc/guix.texi:35403 #, no-wrap msgid "generations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3405 guix-git/doc/guix.texi:4503 +#: guix-git/doc/guix.texi:3422 guix-git/doc/guix.texi:4521 msgid "Switch to a particular generation defined by @var{pattern}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3411 guix-git/doc/guix.texi:4509 +#: guix-git/doc/guix.texi:3428 guix-git/doc/guix.texi:4527 msgid "@var{pattern} may be either a generation number or a number prefixed with ``+'' or ``-''. The latter means: move forward/backward by a specified number of generations. For example, if you want to return to the latest generation after @option{--roll-back}, use @option{--switch-generation=+1}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3416 +#: guix-git/doc/guix.texi:3433 msgid "The difference between @option{--roll-back} and @option{--switch-generation=-1} is that @option{--switch-generation} will not make a zeroth generation, so if a specified generation does not exist, the current generation will not be changed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3417 +#: guix-git/doc/guix.texi:3434 #, no-wrap msgid "--search-paths[=@var{kind}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3423 +#: guix-git/doc/guix.texi:3440 msgid "Report environment variable definitions, in Bash syntax, that may be needed in order to use the set of installed packages. These environment variables are used to specify @dfn{search paths} for files used by some of the installed packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3431 -msgid "For example, GCC needs the @env{CPATH} and @env{LIBRARY_PATH} environment variables to be defined so it can look for headers and libraries in the user's profile (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C library are installed in the profile, then @option{--search-paths} will suggest setting these variables to @file{@var{profile}/include} and @file{@var{profile}/lib}, respectively." +#: guix-git/doc/guix.texi:3449 +msgid "For example, GCC needs the @env{CPATH} and @env{LIBRARY_PATH} environment variables to be defined so it can look for headers and libraries in the user's profile (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C library are installed in the profile, then @option{--search-paths} will suggest setting these variables to @file{@var{profile}/include} and @file{@var{profile}/lib}, respectively (@pxref{Search Paths}, for info on search path specifications associated with packages.)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3434 +#: guix-git/doc/guix.texi:3452 msgid "The typical use case is to define these environment variables in the shell:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3437 +#: guix-git/doc/guix.texi:3455 #, no-wrap msgid "$ eval `guix package --search-paths`\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3443 +#: guix-git/doc/guix.texi:3461 msgid "@var{kind} may be one of @code{exact}, @code{prefix}, or @code{suffix}, meaning that the returned environment variable definitions will either be exact settings, or prefixes or suffixes of the current value of these variables. When omitted, @var{kind} defaults to @code{exact}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3446 +#: guix-git/doc/guix.texi:3464 msgid "This option can also be used to compute the @emph{combined} search paths of several profiles. Consider this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3451 +#: guix-git/doc/guix.texi:3469 #, no-wrap msgid "" "$ guix package -p foo -i guile\n" @@ -9209,42 +9283,44 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3456 +#: guix-git/doc/guix.texi:3474 msgid "The last command above reports about the @env{GUILE_LOAD_PATH} variable, even though, taken individually, neither @file{foo} nor @file{bar} would lead to that recommendation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3458 +#: guix-git/doc/guix.texi:3476 #, no-wrap msgid "profile, choosing" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3459 guix-git/doc/guix.texi:4529 -#: guix-git/doc/guix.texi:4858 +#: guix-git/doc/guix.texi:3477 guix-git/doc/guix.texi:4547 +#: guix-git/doc/guix.texi:4876 guix-git/doc/guix.texi:5827 +#: guix-git/doc/guix.texi:6240 #, no-wrap msgid "--profile=@var{profile}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3460 guix-git/doc/guix.texi:4530 -#: guix-git/doc/guix.texi:4859 +#: guix-git/doc/guix.texi:3478 guix-git/doc/guix.texi:4548 +#: guix-git/doc/guix.texi:4877 guix-git/doc/guix.texi:5828 +#: guix-git/doc/guix.texi:6241 #, no-wrap msgid "-p @var{profile}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3462 +#: guix-git/doc/guix.texi:3480 msgid "Use @var{profile} instead of the user's default profile." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3467 +#: guix-git/doc/guix.texi:3485 msgid "@var{profile} must be the name of a file that will be created upon completion. Concretely, @var{profile} will be a mere symbolic link (``symlink'') pointing to the actual profile where packages are installed:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3473 +#: guix-git/doc/guix.texi:3491 #, no-wrap msgid "" "$ guix install hello -p ~/code/my-profile\n" @@ -9254,29 +9330,29 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3477 +#: guix-git/doc/guix.texi:3495 msgid "All it takes to get rid of the profile is to remove this symlink and its siblings that point to specific generations:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3480 +#: guix-git/doc/guix.texi:3498 #, no-wrap msgid "$ rm ~/code/my-profile ~/code/my-profile-*-link\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3482 +#: guix-git/doc/guix.texi:3500 #, no-wrap msgid "--list-profiles" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3484 +#: guix-git/doc/guix.texi:3502 msgid "List all the user's profiles:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3491 +#: guix-git/doc/guix.texi:3509 #, no-wrap msgid "" "$ guix package --list-profiles\n" @@ -9287,96 +9363,96 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3494 +#: guix-git/doc/guix.texi:3512 msgid "When running as root, list all the profiles of all the users." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3495 +#: guix-git/doc/guix.texi:3513 #, no-wrap msgid "collisions, in a profile" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3496 +#: guix-git/doc/guix.texi:3514 #, no-wrap msgid "colliding packages in profiles" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3497 +#: guix-git/doc/guix.texi:3515 #, no-wrap msgid "profile collisions" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3498 +#: guix-git/doc/guix.texi:3516 #, no-wrap msgid "--allow-collisions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3500 +#: guix-git/doc/guix.texi:3518 msgid "Allow colliding packages in the new profile. Use at your own risk!" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3504 +#: guix-git/doc/guix.texi:3522 msgid "By default, @command{guix package} reports as an error @dfn{collisions} in the profile. Collisions happen when two or more different versions or variants of a given package end up in the profile." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3505 guix-git/doc/guix.texi:4572 -#: guix-git/doc/guix.texi:6701 +#: guix-git/doc/guix.texi:3523 guix-git/doc/guix.texi:4590 +#: guix-git/doc/guix.texi:6744 #, no-wrap msgid "--bootstrap" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3508 +#: guix-git/doc/guix.texi:3526 msgid "Use the bootstrap Guile to build the profile. This option is only useful to distribution developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3514 +#: guix-git/doc/guix.texi:3532 msgid "In addition to these actions, @command{guix package} supports the following options to query the current state of a profile, or the availability of packages:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3517 +#: guix-git/doc/guix.texi:3535 #, no-wrap msgid "--search=@var{regexp}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3518 +#: guix-git/doc/guix.texi:3536 #, no-wrap msgid "-s @var{regexp}" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3520 +#: guix-git/doc/guix.texi:3538 msgid "guix-search" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3520 +#: guix-git/doc/guix.texi:3538 #, no-wrap msgid "searching for packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3526 +#: guix-git/doc/guix.texi:3544 msgid "List the available packages whose name, synopsis, or description matches @var{regexp} (in a case-insensitive fashion), sorted by relevance. Print all the metadata of matching packages in @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3529 +#: guix-git/doc/guix.texi:3547 msgid "This allows specific fields to be extracted using the @command{recsel} command, for instance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3535 +#: guix-git/doc/guix.texi:3553 #, no-wrap msgid "" "$ guix package -s malloc | recsel -p name,version,relevance\n" @@ -9387,7 +9463,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3539 +#: guix-git/doc/guix.texi:3557 #, no-wrap msgid "" "name: glibc\n" @@ -9397,7 +9473,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3543 +#: guix-git/doc/guix.texi:3561 #, no-wrap msgid "" "name: libgc\n" @@ -9406,12 +9482,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3547 +#: guix-git/doc/guix.texi:3565 msgid "Similarly, to show the name of all the packages available under the terms of the GNU@tie{}LGPL version 3:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3551 +#: guix-git/doc/guix.texi:3569 #, no-wrap msgid "" "$ guix package -s \"\" | recsel -p name -e 'license ~ \"LGPL 3\"'\n" @@ -9420,7 +9496,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3554 +#: guix-git/doc/guix.texi:3572 #, no-wrap msgid "" "name: gmp\n" @@ -9428,12 +9504,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3560 +#: guix-git/doc/guix.texi:3578 msgid "It is also possible to refine search results using several @code{-s} flags to @command{guix package}, or several arguments to @command{guix search}. For example, the following command returns a list of board games (this time using the @command{guix search} alias):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3565 +#: guix-git/doc/guix.texi:3583 #, no-wrap msgid "" "$ guix search '\\' game | recsel -p name\n" @@ -9442,17 +9518,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3571 +#: guix-git/doc/guix.texi:3589 msgid "If we were to omit @code{-s game}, we would also get software packages that deal with printed circuit boards; removing the angle brackets around @code{board} would further add packages that have to do with keyboards." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3575 +#: guix-git/doc/guix.texi:3593 msgid "And now for a more elaborate example. The following command searches for cryptographic libraries, filters out Haskell, Perl, Python, and Ruby libraries, and prints the name and synopsis of the matching packages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3579 +#: guix-git/doc/guix.texi:3597 #, no-wrap msgid "" "$ guix search crypto library | \\\n" @@ -9460,23 +9536,23 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3584 +#: guix-git/doc/guix.texi:3602 msgid "@xref{Selection Expressions,,, recutils, GNU recutils manual}, for more information on @dfn{selection expressions} for @code{recsel -e}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3585 +#: guix-git/doc/guix.texi:3603 #, no-wrap msgid "--show=@var{package}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3589 +#: guix-git/doc/guix.texi:3607 msgid "Show details about @var{package}, taken from the list of available packages, in @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:3594 +#: guix-git/doc/guix.texi:3612 #, no-wrap msgid "" "$ guix package --show=guile | recsel -p name,version\n" @@ -9486,7 +9562,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3597 +#: guix-git/doc/guix.texi:3615 #, no-wrap msgid "" "name: guile\n" @@ -9495,7 +9571,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3601 +#: guix-git/doc/guix.texi:3619 #, no-wrap msgid "" "name: guile\n" @@ -9504,12 +9580,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3605 +#: guix-git/doc/guix.texi:3623 msgid "You may also specify the full name of a package to only get details about a specific version of it (this time using the @command{guix show} alias):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3609 +#: guix-git/doc/guix.texi:3627 #, no-wrap msgid "" "$ guix show guile@@3.0.5 | recsel -p name,version\n" @@ -9518,297 +9594,297 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3611 +#: guix-git/doc/guix.texi:3629 #, no-wrap msgid "--list-installed[=@var{regexp}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3612 +#: guix-git/doc/guix.texi:3630 #, no-wrap msgid "-I [@var{regexp}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3616 +#: guix-git/doc/guix.texi:3634 msgid "List the currently installed packages in the specified profile, with the most recently installed packages shown last. When @var{regexp} is specified, list only installed packages whose name matches @var{regexp}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3622 +#: guix-git/doc/guix.texi:3640 msgid "For each installed package, print the following items, separated by tabs: the package name, its version string, the part of the package that is installed (for instance, @code{out} for the default output, @code{include} for its headers, etc.), and the path of this package in the store." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3623 +#: guix-git/doc/guix.texi:3641 #, no-wrap msgid "--list-available[=@var{regexp}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3624 +#: guix-git/doc/guix.texi:3642 #, no-wrap msgid "-A [@var{regexp}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3628 +#: guix-git/doc/guix.texi:3646 msgid "List packages currently available in the distribution for this system (@pxref{GNU Distribution}). When @var{regexp} is specified, list only available packages whose name matches @var{regexp}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3632 +#: guix-git/doc/guix.texi:3650 msgid "For each package, print the following items separated by tabs: its name, its version string, the parts of the package (@pxref{Packages with Multiple Outputs}), and the source location of its definition." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3633 guix-git/doc/guix.texi:4485 +#: guix-git/doc/guix.texi:3651 guix-git/doc/guix.texi:4503 #, no-wrap msgid "--list-generations[=@var{pattern}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3634 guix-git/doc/guix.texi:4486 +#: guix-git/doc/guix.texi:3652 guix-git/doc/guix.texi:4504 #, no-wrap msgid "-l [@var{pattern}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3640 +#: guix-git/doc/guix.texi:3658 msgid "Return a list of generations along with their creation dates; for each generation, show the installed packages, with the most recently installed packages shown last. Note that the zeroth generation is never shown." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3645 +#: guix-git/doc/guix.texi:3663 msgid "For each installed package, print the following items, separated by tabs: the name of a package, its version string, the part of the package that is installed (@pxref{Packages with Multiple Outputs}), and the location of this package in the store." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3648 +#: guix-git/doc/guix.texi:3666 msgid "When @var{pattern} is used, the command returns only matching generations. Valid patterns include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3650 +#: guix-git/doc/guix.texi:3668 #, no-wrap msgid "@emph{Integers and comma-separated integers}. Both patterns denote" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3653 +#: guix-git/doc/guix.texi:3671 msgid "generation numbers. For instance, @option{--list-generations=1} returns the first one." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3656 +#: guix-git/doc/guix.texi:3674 msgid "And @option{--list-generations=1,8,2} outputs three generations in the specified order. Neither spaces nor trailing commas are allowed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3657 +#: guix-git/doc/guix.texi:3675 #, no-wrap msgid "@emph{Ranges}. @option{--list-generations=2..9} prints the" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3660 +#: guix-git/doc/guix.texi:3678 msgid "specified generations and everything in between. Note that the start of a range must be smaller than its end." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3664 +#: guix-git/doc/guix.texi:3682 msgid "It is also possible to omit the endpoint. For example, @option{--list-generations=2..}, returns all generations starting from the second one." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3665 +#: guix-git/doc/guix.texi:3683 #, no-wrap msgid "@emph{Durations}. You can also get the last @emph{N}@tie{}days, weeks," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3669 +#: guix-git/doc/guix.texi:3687 msgid "or months by passing an integer along with the first letter of the duration. For example, @option{--list-generations=20d} lists generations that are up to 20 days old." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3671 guix-git/doc/guix.texi:4510 +#: guix-git/doc/guix.texi:3689 guix-git/doc/guix.texi:4528 #, no-wrap msgid "--delete-generations[=@var{pattern}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3672 guix-git/doc/guix.texi:4511 +#: guix-git/doc/guix.texi:3690 guix-git/doc/guix.texi:4529 #, no-wrap msgid "-d [@var{pattern}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3675 guix-git/doc/guix.texi:4514 +#: guix-git/doc/guix.texi:3693 guix-git/doc/guix.texi:4532 msgid "When @var{pattern} is omitted, delete all generations except the current one." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3681 guix-git/doc/guix.texi:4520 +#: guix-git/doc/guix.texi:3699 guix-git/doc/guix.texi:4538 msgid "This command accepts the same patterns as @option{--list-generations}. When @var{pattern} is specified, delete the matching generations. When @var{pattern} specifies a duration, generations @emph{older} than the specified duration match. For instance, @option{--delete-generations=1m} deletes generations that are more than one month old." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3684 +#: guix-git/doc/guix.texi:3702 msgid "If the current generation matches, it is @emph{not} deleted. Also, the zeroth generation is never deleted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3687 guix-git/doc/guix.texi:4525 +#: guix-git/doc/guix.texi:3705 guix-git/doc/guix.texi:4543 msgid "Note that deleting generations prevents rolling back to them. Consequently, this command must be used with care." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3688 +#: guix-git/doc/guix.texi:3706 #, no-wrap msgid "manifest, exporting" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3690 +#: guix-git/doc/guix.texi:3708 msgid "export-manifest" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3690 +#: guix-git/doc/guix.texi:3708 #, no-wrap msgid "--export-manifest" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3693 +#: guix-git/doc/guix.texi:3711 msgid "Write to standard output a manifest suitable for @option{--manifest} corresponding to the chosen profile(s)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3697 +#: guix-git/doc/guix.texi:3715 msgid "This option is meant to help you migrate from the ``imperative'' operating mode---running @command{guix install}, @command{guix upgrade}, etc.---to the declarative mode that @option{--manifest} offers." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3702 +#: guix-git/doc/guix.texi:3720 msgid "Be aware that the resulting manifest @emph{approximates} what your profile actually contains; for instance, depending on how your profile was created, it can refer to packages or package versions that are not exactly what you specified." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3707 +#: guix-git/doc/guix.texi:3725 msgid "Keep in mind that a manifest is purely symbolic: it only contains package names and possibly versions, and their meaning varies over time. If you wish to ``pin'' channels to the revisions that were used to build the profile(s), see @option{--export-channels} below." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3708 +#: guix-git/doc/guix.texi:3726 #, no-wrap msgid "pinning, channel revisions of a profile" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3709 +#: guix-git/doc/guix.texi:3727 #, no-wrap msgid "--export-channels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3713 +#: guix-git/doc/guix.texi:3731 msgid "Write to standard output the list of channels used by the chosen profile(s), in a format suitable for @command{guix pull --channels} or @command{guix time-machine --channels} (@pxref{Channels})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3717 +#: guix-git/doc/guix.texi:3735 msgid "Together with @option{--export-manifest}, this option provides information allowing you to replicate the current profile (@pxref{Replicating Guix})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3725 +#: guix-git/doc/guix.texi:3743 msgid "However, note that the output of this command @emph{approximates} what was actually used to build this profile. In particular, a single profile might have been built from several different revisions of the same channel. In that case, @option{--export-manifest} chooses the last one and writes the list of other revisions in a comment. If you really need to pick packages from different channel revisions, you can use inferiors in your manifest to do so (@pxref{Inferiors})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3730 +#: guix-git/doc/guix.texi:3748 msgid "Together with @option{--export-manifest}, this is a good starting point if you are willing to migrate from the ``imperative'' model to the fully declarative model consisting of a manifest file along with a channels file pinning the exact channel revision(s) you want." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3737 +#: guix-git/doc/guix.texi:3755 msgid "Finally, since @command{guix package} may actually start build processes, it supports all the common build options (@pxref{Common Build Options}). It also supports package transformation options, such as @option{--with-source}, and preserves them across upgrades (@pxref{Package Transformation Options})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3742 +#: guix-git/doc/guix.texi:3760 #, no-wrap msgid "pre-built binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3748 +#: guix-git/doc/guix.texi:3766 msgid "Guix supports transparent source/binary deployment, which means that it can either build things locally, or download pre-built items from a server, or both. We call these pre-built items @dfn{substitutes}---they are substitutes for local build results. In many cases, downloading a substitute is much faster than building things locally." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3753 +#: guix-git/doc/guix.texi:3771 msgid "Substitutes can be anything resulting from a derivation build (@pxref{Derivations}). Of course, in the common case, they are pre-built package binaries, but source tarballs, for instance, which also result from derivation builds, can be available as substitutes." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3767 +#: guix-git/doc/guix.texi:3785 #, no-wrap msgid "build farm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3778 +#: guix-git/doc/guix.texi:3796 msgid "@code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} are both front-ends to official build farms that build packages from Guix continuously for some architectures, and make them available as substitutes. These are the default source of substitutes; which can be overridden by passing the @option{--substitute-urls} option either to @command{guix-daemon} (@pxref{daemon-substitute-urls,, @code{guix-daemon --substitute-urls}}) or to client tools such as @command{guix package} (@pxref{client-substitute-urls,, client @option{--substitute-urls} option})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3784 +#: guix-git/doc/guix.texi:3802 msgid "Substitute URLs can be either HTTP or HTTPS. HTTPS is recommended because communications are encrypted; conversely, using HTTP makes all communications visible to an eavesdropper, who could use the information gathered to determine, for instance, whether your system has unpatched security vulnerabilities." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3793 +#: guix-git/doc/guix.texi:3811 msgid "Substitutes from the official build farms are enabled by default when using Guix System (@pxref{GNU Distribution}). However, they are disabled by default when using Guix on a foreign distribution, unless you have explicitly enabled them via one of the recommended installation steps (@pxref{Installation}). The following paragraphs describe how to enable or disable substitutes for the official build farm; the same procedure can also be used to enable substitutes for any other substitute server." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3797 +#: guix-git/doc/guix.texi:3815 #, no-wrap msgid "security" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3799 +#: guix-git/doc/guix.texi:3817 #, no-wrap msgid "access control list (ACL), for substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3800 +#: guix-git/doc/guix.texi:3818 #, no-wrap msgid "ACL (access control list), for substitutes" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3806 +#: guix-git/doc/guix.texi:3824 msgid "To allow Guix to download substitutes from @code{@value{SUBSTITUTE-SERVER-1}}, @code{@value{SUBSTITUTE-SERVER-2}} or a mirror, you must add the relevant public key to the access control list (ACL) of archive imports, using the @command{guix archive} command (@pxref{Invoking guix archive}). Doing so implies that you trust the substitute server to not be compromised and to serve genuine substitutes." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:3811 +#: guix-git/doc/guix.texi:3829 msgid "If you are using Guix System, you can skip this section: Guix System authorizes substitutes from @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} by default." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3819 +#: guix-git/doc/guix.texi:3837 msgid "The public keys for each of the project maintained substitute servers are installed along with Guix, in @code{@var{prefix}/share/guix/}, where @var{prefix} is the installation prefix of Guix. If you installed Guix from source, make sure you checked the GPG signature of @file{guix-@value{VERSION}.tar.gz}, which contains this public key file. Then, you can run something like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3823 +#: guix-git/doc/guix.texi:3841 #, no-wrap msgid "" "# guix archive --authorize < @var{prefix}/share/guix/@value{SUBSTITUTE-SERVER-1}.pub\n" @@ -9816,12 +9892,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3827 +#: guix-git/doc/guix.texi:3845 msgid "Once this is in place, the output of a command like @code{guix build} should change from something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3836 +#: guix-git/doc/guix.texi:3854 #, no-wrap msgid "" "$ guix build emacs --dry-run\n" @@ -9834,12 +9910,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3840 +#: guix-git/doc/guix.texi:3858 msgid "to something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3849 +#: guix-git/doc/guix.texi:3867 #, no-wrap msgid "" "$ guix build emacs --dry-run\n" @@ -9852,49 +9928,49 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3856 +#: guix-git/doc/guix.texi:3874 msgid "The text changed from ``The following derivations would be built'' to ``112.3 MB would be downloaded''. This indicates that substitutes from the configured substitute servers are usable and will be downloaded, when possible, for future builds." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3857 +#: guix-git/doc/guix.texi:3875 #, no-wrap msgid "substitutes, how to disable" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3863 +#: guix-git/doc/guix.texi:3881 msgid "The substitute mechanism can be disabled globally by running @code{guix-daemon} with @option{--no-substitutes} (@pxref{Invoking guix-daemon}). It can also be disabled temporarily by passing the @option{--no-substitutes} option to @command{guix package}, @command{guix build}, and other command-line tools." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3867 +#: guix-git/doc/guix.texi:3885 #, no-wrap msgid "substitute servers, adding more" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3874 +#: guix-git/doc/guix.texi:3892 msgid "Guix can look up and fetch substitutes from several servers. This is useful when you are using packages from additional channels for which the official server does not have substitutes but another server provides them. Another situation where this is useful is when you would prefer to download from your organization's substitute server, resorting to the official server only as a fallback or dismissing it altogether." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3879 +#: guix-git/doc/guix.texi:3897 msgid "You can give Guix a list of substitute server URLs and it will check them in the specified order. You also need to explicitly authorize the public keys of substitute servers to instruct Guix to accept the substitutes they sign." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3886 +#: guix-git/doc/guix.texi:3904 msgid "On Guix System, this is achieved by modifying the configuration of the @code{guix} service. Since the @code{guix} service is part of the default lists of services, @code{%base-services} and @code{%desktop-services}, you can use @code{modify-services} to change its configuration and add the URLs and substitute keys that you want (@pxref{Service Reference, @code{modify-services}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3892 +#: guix-git/doc/guix.texi:3910 msgid "As an example, suppose you want to fetch substitutes from @code{guix.example.org} and to authorize the signing key of that server, in addition to the default @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}}. The resulting operating system configuration will look something like:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3909 +#: guix-git/doc/guix.texi:3927 #, no-wrap msgid "" "(operating-system\n" @@ -9915,12 +9991,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3916 +#: guix-git/doc/guix.texi:3934 msgid "This assumes that the file @file{key.pub} contains the signing key of @code{guix.example.org}. With this change in place in your operating system configuration file (say @file{/etc/config.scm}), you can reconfigure and restart the @code{guix-daemon} service or reboot so the changes take effect:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3920 +#: guix-git/doc/guix.texi:3938 #, no-wrap msgid "" "$ sudo guix system reconfigure /etc/config.scm\n" @@ -9928,28 +10004,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3924 +#: guix-git/doc/guix.texi:3942 msgid "If you're running Guix on a ``foreign distro'', you would instead take the following steps to get substitutes from additional servers:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:3933 +#: guix-git/doc/guix.texi:3951 msgid "Edit the service configuration file for @code{guix-daemon}; when using systemd, this is normally @file{/etc/systemd/system/guix-daemon.service}. Add the @option{--substitute-urls} option on the @command{guix-daemon} command line and list the URLs of interest (@pxref{daemon-substitute-urls, @code{guix-daemon --substitute-urls}}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3936 +#: guix-git/doc/guix.texi:3954 #, no-wrap msgid "@dots{} --substitute-urls='https://guix.example.org @value{SUBSTITUTE-URLS}'\n" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:3940 +#: guix-git/doc/guix.texi:3958 msgid "Restart the daemon. For systemd, it goes like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3944 +#: guix-git/doc/guix.texi:3962 #, no-wrap msgid "" "systemctl daemon-reload\n" @@ -9957,651 +10033,651 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:3948 +#: guix-git/doc/guix.texi:3966 msgid "Authorize the key of the new server (@pxref{Invoking guix archive}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3951 +#: guix-git/doc/guix.texi:3969 #, no-wrap msgid "guix archive --authorize < key.pub\n" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:3955 +#: guix-git/doc/guix.texi:3973 msgid "Again this assumes @file{key.pub} contains the public key that @code{guix.example.org} uses to sign substitutes." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3964 +#: guix-git/doc/guix.texi:3982 msgid "Now you're all set! Substitutes will be preferably taken from @code{https://guix.example.org}, using @code{@value{SUBSTITUTE-SERVER-1}} then @code{@value{SUBSTITUTE-SERVER-2}} as fallback options. Of course you can list as many substitute servers as you like, with the caveat that substitute lookup can be slowed down if too many servers need to be contacted." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3968 +#: guix-git/doc/guix.texi:3986 msgid "Note that there are also situations where one may want to add the URL of a substitute server @emph{without} authorizing its key. @xref{Substitute Authentication}, to understand this fine point." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3972 +#: guix-git/doc/guix.texi:3990 #, no-wrap msgid "digital signatures" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3976 +#: guix-git/doc/guix.texi:3994 msgid "Guix detects and raises an error when attempting to use a substitute that has been tampered with. Likewise, it ignores substitutes that are not signed, or that are not signed by one of the keys listed in the ACL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3982 +#: guix-git/doc/guix.texi:4000 msgid "There is one exception though: if an unauthorized server provides substitutes that are @emph{bit-for-bit identical} to those provided by an authorized server, then the unauthorized server becomes eligible for downloads. For example, assume we have chosen two substitute servers with this option:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3985 +#: guix-git/doc/guix.texi:4003 #, no-wrap msgid "--substitute-urls=\"https://a.example.org https://b.example.org\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3996 +#: guix-git/doc/guix.texi:4014 msgid "If the ACL contains only the key for @samp{b.example.org}, and if @samp{a.example.org} happens to serve the @emph{exact same} substitutes, then Guix will download substitutes from @samp{a.example.org} because it comes first in the list and can be considered a mirror of @samp{b.example.org}. In practice, independent build machines usually produce the same binaries, thanks to bit-reproducible builds (see below)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4003 +#: guix-git/doc/guix.texi:4021 msgid "When using HTTPS, the server's X.509 certificate is @emph{not} validated (in other words, the server is not authenticated), contrary to what HTTPS clients such as Web browsers usually do. This is because Guix authenticates substitute information itself, as explained above, which is what we care about (whereas X.509 certificates are about authenticating bindings between domain names and public keys)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4015 +#: guix-git/doc/guix.texi:4033 msgid "Substitutes are downloaded over HTTP or HTTPS@. The @env{http_proxy} and @env{https_proxy} environment variables can be set in the environment of @command{guix-daemon} and are honored for downloads of substitutes. Note that the value of those environment variables in the environment where @command{guix build}, @command{guix package}, and other client commands are run has @emph{absolutely no effect}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4024 +#: guix-git/doc/guix.texi:4042 msgid "Even when a substitute for a derivation is available, sometimes the substitution attempt will fail. This can happen for a variety of reasons: the substitute server might be offline, the substitute may recently have been deleted, the connection might have been interrupted, etc." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4038 +#: guix-git/doc/guix.texi:4056 msgid "When substitutes are enabled and a substitute for a derivation is available, but the substitution attempt fails, Guix will attempt to build the derivation locally depending on whether or not @option{--fallback} was given (@pxref{fallback-option,, common build option @option{--fallback}}). Specifically, if @option{--fallback} was omitted, then no local build will be performed, and the derivation is considered to have failed. However, if @option{--fallback} was given, then Guix will attempt to build the derivation locally, and the success or failure of the derivation depends on the success or failure of the local build. Note that when substitutes are disabled or no substitute is available for the derivation in question, a local build will @emph{always} be performed, regardless of whether or not @option{--fallback} was given." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4043 +#: guix-git/doc/guix.texi:4061 msgid "To get an idea of how many substitutes are available right now, you can try running the @command{guix weather} command (@pxref{Invoking guix weather}). This command provides statistics on the substitutes provided by a server." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4047 +#: guix-git/doc/guix.texi:4065 #, no-wrap msgid "trust, of pre-built binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4057 +#: guix-git/doc/guix.texi:4075 msgid "Today, each individual's control over their own computing is at the mercy of institutions, corporations, and groups with enough power and determination to subvert the computing infrastructure and exploit its weaknesses. While using substitutes can be convenient, we encourage users to also build on their own, or even run their own build farm, such that the project run substitute servers are less of an interesting target. One way to help is by publishing the software you build using @command{guix publish} so that others have one more choice of server to download substitutes from (@pxref{Invoking guix publish})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4069 +#: guix-git/doc/guix.texi:4087 msgid "Guix has the foundations to maximize build reproducibility (@pxref{Features}). In most cases, independent builds of a given package or derivation should yield bit-identical results. Thus, through a diverse set of independent package builds, we can strengthen the integrity of our systems. The @command{guix challenge} command aims to help users assess substitute servers, and to assist developers in finding out about non-deterministic package builds (@pxref{Invoking guix challenge}). Similarly, the @option{--check} option of @command{guix build} allows users to check whether previously-installed substitutes are genuine by rebuilding them locally (@pxref{build-check, @command{guix build --check}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4073 +#: guix-git/doc/guix.texi:4091 msgid "In the future, we want Guix to have support to publish and retrieve binaries to/from other users, in a peer-to-peer fashion. If you would like to discuss this project, join us on @email{guix-devel@@gnu.org}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4077 +#: guix-git/doc/guix.texi:4095 #, no-wrap msgid "multiple-output packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4078 +#: guix-git/doc/guix.texi:4096 #, no-wrap msgid "package outputs" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4079 +#: guix-git/doc/guix.texi:4097 #, no-wrap msgid "outputs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4089 +#: guix-git/doc/guix.texi:4107 msgid "Often, packages defined in Guix have a single @dfn{output}---i.e., the source package leads to exactly one directory in the store. When running @command{guix install glibc}, one installs the default output of the GNU libc package; the default output is called @code{out}, but its name can be omitted as shown in this command. In this particular case, the default output of @code{glibc} contains all the C header files, shared libraries, static libraries, Info documentation, and other supporting files." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4097 +#: guix-git/doc/guix.texi:4115 msgid "Sometimes it is more appropriate to separate the various types of files produced from a single source package into separate outputs. For instance, the GLib C library (used by GTK+ and related packages) installs more than 20 MiB of reference documentation as HTML pages. To save space for users who do not need it, the documentation goes to a separate output, called @code{doc}. To install the main GLib output, which contains everything but the documentation, one would run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4100 +#: guix-git/doc/guix.texi:4118 #, no-wrap msgid "guix install glib\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4102 guix-git/doc/guix.texi:36368 -#: guix-git/doc/guix.texi:36425 +#: guix-git/doc/guix.texi:4120 guix-git/doc/guix.texi:36858 +#: guix-git/doc/guix.texi:36915 #, no-wrap msgid "documentation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4104 +#: guix-git/doc/guix.texi:4122 msgid "The command to install its documentation is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4107 +#: guix-git/doc/guix.texi:4125 #, no-wrap msgid "guix install glib:doc\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4118 +#: guix-git/doc/guix.texi:4136 msgid "Some packages install programs with different ``dependency footprints''. For instance, the WordNet package installs both command-line tools and graphical user interfaces (GUIs). The former depend solely on the C library, whereas the latter depend on Tcl/Tk and the underlying X libraries. In this case, we leave the command-line tools in the default output, whereas the GUIs are in a separate output. This allows users who do not need the GUIs to save space. The @command{guix size} command can help find out about such situations (@pxref{Invoking guix size}). @command{guix graph} can also be helpful (@pxref{Invoking guix graph})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4126 +#: guix-git/doc/guix.texi:4144 msgid "There are several such multiple-output packages in the GNU distribution. Other conventional output names include @code{lib} for libraries and possibly header files, @code{bin} for stand-alone programs, and @code{debug} for debugging information (@pxref{Installing Debugging Files}). The outputs of a packages are listed in the third column of the output of @command{guix package --list-available} (@pxref{Invoking guix package})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4129 +#: guix-git/doc/guix.texi:4147 #, no-wrap msgid "Invoking @command{guix gc}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4131 +#: guix-git/doc/guix.texi:4149 #, no-wrap msgid "garbage collector" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4132 +#: guix-git/doc/guix.texi:4150 #, no-wrap msgid "disk space" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4138 +#: guix-git/doc/guix.texi:4156 msgid "Packages that are installed, but not used, may be @dfn{garbage-collected}. The @command{guix gc} command allows users to explicitly run the garbage collector to reclaim space from the @file{/gnu/store} directory. It is the @emph{only} way to remove files from @file{/gnu/store}---removing files or directories manually may break it beyond repair!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4149 +#: guix-git/doc/guix.texi:4167 msgid "The garbage collector has a set of known @dfn{roots}: any file under @file{/gnu/store} reachable from a root is considered @dfn{live} and cannot be deleted; any other file is considered @dfn{dead} and may be deleted. The set of garbage collector roots (``GC roots'' for short) includes default user profiles; by default, the symlinks under @file{/var/guix/gcroots} represent these GC roots. New GC roots can be added with @command{guix build --root}, for example (@pxref{Invoking guix build}). The @command{guix gc --list-roots} command lists them." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4155 +#: guix-git/doc/guix.texi:4173 msgid "Prior to running @code{guix gc --collect-garbage} to make space, it is often useful to remove old generations from user profiles; that way, old package builds referenced by those generations can be reclaimed. This is achieved by running @code{guix package --delete-generations} (@pxref{Invoking guix package})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4159 +#: guix-git/doc/guix.texi:4177 msgid "Our recommendation is to run a garbage collection periodically, or when you are short on disk space. For instance, to guarantee that at least 5@tie{}GB are available on your disk, simply run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4162 +#: guix-git/doc/guix.texi:4180 #, no-wrap msgid "guix gc -F 5G\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4171 +#: guix-git/doc/guix.texi:4189 msgid "It is perfectly safe to run as a non-interactive periodic job (@pxref{Scheduled Job Execution}, for how to set up such a job). Running @command{guix gc} with no arguments will collect as much garbage as it can, but that is often inconvenient: you may find yourself having to rebuild or re-download software that is ``dead'' from the GC viewpoint but that is necessary to build other pieces of software---e.g., the compiler tool chain." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4177 +#: guix-git/doc/guix.texi:4195 msgid "The @command{guix gc} command has three modes of operation: it can be used to garbage-collect any dead files (the default), to delete specific files (the @option{--delete} option), to print garbage-collector information, or for more advanced queries. The garbage collection options are as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4179 +#: guix-git/doc/guix.texi:4197 #, no-wrap msgid "--collect-garbage[=@var{min}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4180 +#: guix-git/doc/guix.texi:4198 #, no-wrap msgid "-C [@var{min}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4184 +#: guix-git/doc/guix.texi:4202 msgid "Collect garbage---i.e., unreachable @file{/gnu/store} files and sub-directories. This is the default operation when no option is specified." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4189 +#: guix-git/doc/guix.texi:4207 msgid "When @var{min} is given, stop once @var{min} bytes have been collected. @var{min} may be a number of bytes, or it may include a unit as a suffix, such as @code{MiB} for mebibytes and @code{GB} for gigabytes (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4191 +#: guix-git/doc/guix.texi:4209 msgid "When @var{min} is omitted, collect all the garbage." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4192 +#: guix-git/doc/guix.texi:4210 #, no-wrap msgid "--free-space=@var{free}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4193 +#: guix-git/doc/guix.texi:4211 #, no-wrap msgid "-F @var{free}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4197 +#: guix-git/doc/guix.texi:4215 msgid "Collect garbage until @var{free} space is available under @file{/gnu/store}, if possible; @var{free} denotes storage space, such as @code{500MiB}, as described above." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4200 +#: guix-git/doc/guix.texi:4218 msgid "When @var{free} or more is already available in @file{/gnu/store}, do nothing and exit immediately." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4201 +#: guix-git/doc/guix.texi:4219 #, no-wrap msgid "--delete-generations[=@var{duration}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4202 +#: guix-git/doc/guix.texi:4220 #, no-wrap msgid "-d [@var{duration}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4206 +#: guix-git/doc/guix.texi:4224 msgid "Before starting the garbage collection process, delete all the generations older than @var{duration}, for all the user profiles; when run as root, this applies to all the profiles @emph{of all the users}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4210 +#: guix-git/doc/guix.texi:4228 msgid "For example, this command deletes all the generations of all your profiles that are older than 2 months (except generations that are current), and then proceeds to free space until at least 10 GiB are available:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4213 +#: guix-git/doc/guix.texi:4231 #, no-wrap msgid "guix gc -d 2m -F 10G\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4215 +#: guix-git/doc/guix.texi:4233 #, no-wrap msgid "--delete" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4216 guix-git/doc/guix.texi:5740 +#: guix-git/doc/guix.texi:4234 guix-git/doc/guix.texi:5758 #, no-wrap msgid "-D" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4220 +#: guix-git/doc/guix.texi:4238 msgid "Attempt to delete all the store files and directories specified as arguments. This fails if some of the files are not in the store, or if they are still live." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4221 +#: guix-git/doc/guix.texi:4239 #, no-wrap msgid "--list-failures" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4223 +#: guix-git/doc/guix.texi:4241 msgid "List store items corresponding to cached build failures." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4227 +#: guix-git/doc/guix.texi:4245 msgid "This prints nothing unless the daemon was started with @option{--cache-failures} (@pxref{Invoking guix-daemon, @option{--cache-failures}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4228 +#: guix-git/doc/guix.texi:4246 #, no-wrap msgid "--list-roots" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4231 +#: guix-git/doc/guix.texi:4249 msgid "List the GC roots owned by the user; when run as root, list @emph{all} the GC roots." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4232 +#: guix-git/doc/guix.texi:4250 #, no-wrap msgid "--list-busy" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4235 +#: guix-git/doc/guix.texi:4253 msgid "List store items in use by currently running processes. These store items are effectively considered GC roots: they cannot be deleted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4236 +#: guix-git/doc/guix.texi:4254 #, no-wrap msgid "--clear-failures" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4238 +#: guix-git/doc/guix.texi:4256 msgid "Remove the specified store items from the failed-build cache." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4241 +#: guix-git/doc/guix.texi:4259 msgid "Again, this option only makes sense when the daemon is started with @option{--cache-failures}. Otherwise, it does nothing." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4242 +#: guix-git/doc/guix.texi:4260 #, no-wrap msgid "--list-dead" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4245 +#: guix-git/doc/guix.texi:4263 msgid "Show the list of dead files and directories still present in the store---i.e., files and directories no longer reachable from any root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4246 +#: guix-git/doc/guix.texi:4264 #, no-wrap msgid "--list-live" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4248 +#: guix-git/doc/guix.texi:4266 msgid "Show the list of live store files and directories." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4252 +#: guix-git/doc/guix.texi:4270 msgid "In addition, the references among existing store files can be queried:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4255 +#: guix-git/doc/guix.texi:4273 #, no-wrap msgid "--references" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4256 +#: guix-git/doc/guix.texi:4274 #, no-wrap msgid "--referrers" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4257 guix-git/doc/guix.texi:13205 +#: guix-git/doc/guix.texi:4275 guix-git/doc/guix.texi:13562 #, no-wrap msgid "package dependencies" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4260 +#: guix-git/doc/guix.texi:4278 msgid "List the references (respectively, the referrers) of store files given as arguments." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4261 +#: guix-git/doc/guix.texi:4279 #, no-wrap msgid "--requisites" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4262 guix-git/doc/guix.texi:6501 +#: guix-git/doc/guix.texi:4280 guix-git/doc/guix.texi:6544 #, no-wrap msgid "-R" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4263 guix-git/doc/guix.texi:13061 -#: guix-git/doc/guix.texi:13089 guix-git/doc/guix.texi:13170 +#: guix-git/doc/guix.texi:4281 guix-git/doc/guix.texi:13418 +#: guix-git/doc/guix.texi:13446 guix-git/doc/guix.texi:13527 #, no-wrap msgid "closure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4268 +#: guix-git/doc/guix.texi:4286 msgid "List the requisites of the store files passed as arguments. Requisites include the store files themselves, their references, and the references of these, recursively. In other words, the returned list is the @dfn{transitive closure} of the store files." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4272 +#: guix-git/doc/guix.texi:4290 msgid "@xref{Invoking guix size}, for a tool to profile the size of the closure of an element. @xref{Invoking guix graph}, for a tool to visualize the graph of references." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4273 +#: guix-git/doc/guix.texi:4291 #, no-wrap msgid "--derivers" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4274 guix-git/doc/guix.texi:6815 -#: guix-git/doc/guix.texi:12917 guix-git/doc/guix.texi:13314 +#: guix-git/doc/guix.texi:4292 guix-git/doc/guix.texi:6858 +#: guix-git/doc/guix.texi:13274 guix-git/doc/guix.texi:13671 #, no-wrap msgid "derivation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4277 +#: guix-git/doc/guix.texi:4295 msgid "Return the derivation(s) leading to the given store items (@pxref{Derivations})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4279 +#: guix-git/doc/guix.texi:4297 msgid "For example, this command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4282 +#: guix-git/doc/guix.texi:4300 #, no-wrap msgid "guix gc --derivers $(guix package -I ^emacs$ | cut -f4)\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4287 +#: guix-git/doc/guix.texi:4305 msgid "returns the @file{.drv} file(s) leading to the @code{emacs} package installed in your profile." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4291 +#: guix-git/doc/guix.texi:4309 msgid "Note that there may be zero matching @file{.drv} files, for instance because these files have been garbage-collected. There can also be more than one matching @file{.drv} due to fixed-output derivations." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4295 +#: guix-git/doc/guix.texi:4313 msgid "Lastly, the following options allow you to check the integrity of the store and to control disk usage." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4298 +#: guix-git/doc/guix.texi:4316 #, no-wrap msgid "--verify[=@var{options}]" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4299 +#: guix-git/doc/guix.texi:4317 #, no-wrap msgid "integrity, of the store" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4300 +#: guix-git/doc/guix.texi:4318 #, no-wrap msgid "integrity checking" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4302 +#: guix-git/doc/guix.texi:4320 msgid "Verify the integrity of the store." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4305 +#: guix-git/doc/guix.texi:4323 msgid "By default, make sure that all the store items marked as valid in the database of the daemon actually exist in @file{/gnu/store}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4308 +#: guix-git/doc/guix.texi:4326 msgid "When provided, @var{options} must be a comma-separated list containing one or more of @code{contents} and @code{repair}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4314 +#: guix-git/doc/guix.texi:4332 msgid "When passing @option{--verify=contents}, the daemon computes the content hash of each store item and compares it against its hash in the database. Hash mismatches are reported as data corruptions. Because it traverses @emph{all the files in the store}, this command can take a long time, especially on systems with a slow disk drive." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4315 +#: guix-git/doc/guix.texi:4333 #, no-wrap msgid "repairing the store" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4316 guix-git/doc/guix.texi:11564 +#: guix-git/doc/guix.texi:4334 guix-git/doc/guix.texi:11878 #, no-wrap msgid "corruption, recovering from" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4324 +#: guix-git/doc/guix.texi:4342 msgid "Using @option{--verify=repair} or @option{--verify=contents,repair} causes the daemon to try to repair corrupt store items by fetching substitutes for them (@pxref{Substitutes}). Because repairing is not atomic, and thus potentially dangerous, it is available only to the system administrator. A lightweight alternative, when you know exactly which items in the store are corrupt, is @command{guix build --repair} (@pxref{Invoking guix build})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4325 +#: guix-git/doc/guix.texi:4343 #, no-wrap msgid "--optimize" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4329 +#: guix-git/doc/guix.texi:4347 msgid "Optimize the store by hard-linking identical files---this is @dfn{deduplication}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4335 +#: guix-git/doc/guix.texi:4353 msgid "The daemon performs deduplication after each successful build or archive import, unless it was started with @option{--disable-deduplication} (@pxref{Invoking guix-daemon, @option{--disable-deduplication}}). Thus, this option is primarily useful when the daemon was running with @option{--disable-deduplication}." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4339 +#: guix-git/doc/guix.texi:4357 #, no-wrap msgid "Invoking @command{guix pull}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4341 +#: guix-git/doc/guix.texi:4359 #, no-wrap msgid "upgrading Guix" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4342 +#: guix-git/doc/guix.texi:4360 #, no-wrap msgid "updating Guix" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:4343 +#: guix-git/doc/guix.texi:4361 #, no-wrap msgid "guix pull" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4344 +#: guix-git/doc/guix.texi:4362 #, no-wrap msgid "pull" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4345 +#: guix-git/doc/guix.texi:4363 #, no-wrap msgid "security, @command{guix pull}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4346 +#: guix-git/doc/guix.texi:4364 #, no-wrap msgid "authenticity, of code obtained with @command{guix pull}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4356 +#: guix-git/doc/guix.texi:4374 msgid "Packages are installed or upgraded to the latest version available in the distribution currently available on your local machine. To update that distribution, along with the Guix tools, you must run @command{guix pull}: the command downloads the latest Guix source code and package descriptions, and deploys it. Source code is downloaded from a @uref{https://git-scm.com, Git} repository, by default the official GNU@tie{}Guix repository, though this can be customized. @command{guix pull} ensures that the code it downloads is @emph{authentic} by verifying that commits are signed by Guix developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4359 +#: guix-git/doc/guix.texi:4377 msgid "Specifically, @command{guix pull} downloads code from the @dfn{channels} (@pxref{Channels}) specified by one of the followings, in this order:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4363 +#: guix-git/doc/guix.texi:4381 msgid "the @option{--channels} option;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4365 +#: guix-git/doc/guix.texi:4383 msgid "the user's @file{~/.config/guix/channels.scm} file;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4367 +#: guix-git/doc/guix.texi:4385 msgid "the system-wide @file{/etc/guix/channels.scm} file;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4370 +#: guix-git/doc/guix.texi:4388 msgid "the built-in default channels specified in the @code{%default-channels} variable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4377 +#: guix-git/doc/guix.texi:4395 msgid "On completion, @command{guix package} will use packages and package versions from this just-retrieved copy of Guix. Not only that, but all the Guix commands and Scheme modules will also be taken from that latest version. New @command{guix} sub-commands added by the update also become available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4383 +#: guix-git/doc/guix.texi:4401 msgid "Any user can update their Guix copy using @command{guix pull}, and the effect is limited to the user who ran @command{guix pull}. For instance, when user @code{root} runs @command{guix pull}, this has no effect on the version of Guix that user @code{alice} sees, and vice versa." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4389 +#: guix-git/doc/guix.texi:4407 msgid "The result of running @command{guix pull} is a @dfn{profile} available under @file{~/.config/guix/current} containing the latest Guix. Thus, make sure to add it to the beginning of your search path so that you use the latest version, and similarly for the Info manual (@pxref{Documentation}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4393 +#: guix-git/doc/guix.texi:4411 #, no-wrap msgid "" "export PATH=\"$HOME/.config/guix/current/bin:$PATH\"\n" @@ -10609,12 +10685,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4397 +#: guix-git/doc/guix.texi:4415 msgid "The @option{--list-generations} or @option{-l} option lists past generations produced by @command{guix pull}, along with details about their provenance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4405 +#: guix-git/doc/guix.texi:4423 #, no-wrap msgid "" "$ guix pull -l\n" @@ -10627,7 +10703,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4415 +#: guix-git/doc/guix.texi:4433 #, no-wrap msgid "" "Generation 2\tJun 11 2018 11:02:49\n" @@ -10643,7 +10719,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4423 +#: guix-git/doc/guix.texi:4441 #, no-wrap msgid "" "Generation 3\tJun 13 2018 23:31:07\t(current)\n" @@ -10656,17 +10732,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4427 +#: guix-git/doc/guix.texi:4445 msgid "@xref{Invoking guix describe, @command{guix describe}}, for other ways to describe the current status of Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4432 +#: guix-git/doc/guix.texi:4450 msgid "This @code{~/.config/guix/current} profile works exactly like the profiles created by @command{guix package} (@pxref{Invoking guix package}). That is, you can list generations, roll back to the previous generation---i.e., the previous Guix---and so on:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4438 +#: guix-git/doc/guix.texi:4456 #, no-wrap msgid "" "$ guix pull --roll-back\n" @@ -10676,12 +10752,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4442 +#: guix-git/doc/guix.texi:4460 msgid "You can also use @command{guix package} (@pxref{Invoking guix package}) to manage the profile by naming it explicitly:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4447 +#: guix-git/doc/guix.texi:4465 #, no-wrap msgid "" "$ guix package -p ~/.config/guix/current --roll-back\n" @@ -10691,354 +10767,355 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4451 +#: guix-git/doc/guix.texi:4469 msgid "The @command{guix pull} command is usually invoked with no arguments, but it supports the following options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4453 guix-git/doc/guix.texi:4611 +#: guix-git/doc/guix.texi:4471 guix-git/doc/guix.texi:4629 #, no-wrap msgid "--url=@var{url}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4454 guix-git/doc/guix.texi:4612 +#: guix-git/doc/guix.texi:4472 guix-git/doc/guix.texi:4630 #, no-wrap msgid "--commit=@var{commit}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4455 guix-git/doc/guix.texi:4613 +#: guix-git/doc/guix.texi:4473 guix-git/doc/guix.texi:4631 #, no-wrap msgid "--branch=@var{branch}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4459 +#: guix-git/doc/guix.texi:4477 msgid "Download code for the @code{guix} channel from the specified @var{url}, at the given @var{commit} (a valid Git commit ID represented as a hexadecimal string), or @var{branch}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4460 guix-git/doc/guix.texi:5057 +#: guix-git/doc/guix.texi:4478 guix-git/doc/guix.texi:5075 #, no-wrap msgid "@file{channels.scm}, configuration file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4461 guix-git/doc/guix.texi:5058 +#: guix-git/doc/guix.texi:4479 guix-git/doc/guix.texi:5076 #, no-wrap msgid "configuration file for channels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4465 +#: guix-git/doc/guix.texi:4483 msgid "These options are provided for convenience, but you can also specify your configuration in the @file{~/.config/guix/channels.scm} file or using the @option{--channels} option (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4466 guix-git/doc/guix.texi:4618 +#: guix-git/doc/guix.texi:4484 guix-git/doc/guix.texi:4636 #, no-wrap msgid "--channels=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4467 guix-git/doc/guix.texi:4619 +#: guix-git/doc/guix.texi:4485 guix-git/doc/guix.texi:4637 #, no-wrap msgid "-C @var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4473 +#: guix-git/doc/guix.texi:4491 msgid "Read the list of channels from @var{file} instead of @file{~/.config/guix/channels.scm} or @file{/etc/guix/channels.scm}. @var{file} must contain Scheme code that evaluates to a list of channel objects. @xref{Channels}, for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4474 +#: guix-git/doc/guix.texi:4492 #, no-wrap msgid "channel news" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4475 +#: guix-git/doc/guix.texi:4493 #, no-wrap msgid "--news" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4476 guix-git/doc/guix.texi:5864 -#: guix-git/doc/guix.texi:6247 guix-git/doc/guix.texi:35304 +#: guix-git/doc/guix.texi:4494 guix-git/doc/guix.texi:5877 +#: guix-git/doc/guix.texi:6290 guix-git/doc/guix.texi:35748 #, no-wrap msgid "-N" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4480 +#: guix-git/doc/guix.texi:4498 msgid "Display the list of packages added or upgraded since the previous generation, as well as, occasionally, news written by channel authors for their users (@pxref{Channels, Writing Channel News})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4484 +#: guix-git/doc/guix.texi:4502 msgid "The package information is the same as displayed upon @command{guix pull} completion, but without ellipses; it is also similar to the output of @command{guix pull -l} for the last generation (see below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4491 +#: guix-git/doc/guix.texi:4509 msgid "List all the generations of @file{~/.config/guix/current} or, if @var{pattern} is provided, the subset of generations that match @var{pattern}. The syntax of @var{pattern} is the same as with @code{guix package --list-generations} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4498 +#: guix-git/doc/guix.texi:4516 msgid "Roll back to the previous @dfn{generation} of @file{~/.config/guix/current}---i.e., undo the last transaction." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4522 +#: guix-git/doc/guix.texi:4540 msgid "If the current generation matches, it is @emph{not} deleted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4528 +#: guix-git/doc/guix.texi:4546 msgid "@xref{Invoking guix describe}, for a way to display information about the current generation only." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4532 +#: guix-git/doc/guix.texi:4550 msgid "Use @var{profile} instead of @file{~/.config/guix/current}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4533 guix-git/doc/guix.texi:10893 -#: guix-git/doc/guix.texi:12836 +#: guix-git/doc/guix.texi:4551 guix-git/doc/guix.texi:11207 +#: guix-git/doc/guix.texi:13162 #, no-wrap msgid "--dry-run" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4534 guix-git/doc/guix.texi:10894 -#: guix-git/doc/guix.texi:12837 guix-git/doc/guix.texi:13043 +#: guix-git/doc/guix.texi:4552 guix-git/doc/guix.texi:11208 +#: guix-git/doc/guix.texi:13163 guix-git/doc/guix.texi:13400 #, no-wrap msgid "-n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4537 +#: guix-git/doc/guix.texi:4555 msgid "Show which channel commit(s) would be used and what would be built or substituted but do not actually do it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4538 guix-git/doc/guix.texi:35323 +#: guix-git/doc/guix.texi:4556 guix-git/doc/guix.texi:35767 +#: guix-git/doc/guix.texi:38198 #, no-wrap msgid "--allow-downgrades" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4541 +#: guix-git/doc/guix.texi:4559 msgid "Allow pulling older or unrelated revisions of channels than those currently in use." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4542 +#: guix-git/doc/guix.texi:4560 #, no-wrap msgid "downgrade attacks, protection against" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4547 +#: guix-git/doc/guix.texi:4565 msgid "By default, @command{guix pull} protects against so-called ``downgrade attacks'' whereby the Git repository of a channel would be reset to an earlier or unrelated revision of itself, potentially leading you to install older, known-vulnerable versions of software packages." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4551 guix-git/doc/guix.texi:35337 +#: guix-git/doc/guix.texi:4569 guix-git/doc/guix.texi:35781 msgid "Make sure you understand its security implications before using @option{--allow-downgrades}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4553 +#: guix-git/doc/guix.texi:4571 #, no-wrap msgid "--disable-authentication" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4555 +#: guix-git/doc/guix.texi:4573 msgid "Allow pulling channel code without authenticating it." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4556 guix-git/doc/guix.texi:5203 +#: guix-git/doc/guix.texi:4574 guix-git/doc/guix.texi:5221 #, no-wrap msgid "authentication, of channel code" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4561 +#: guix-git/doc/guix.texi:4579 msgid "By default, @command{guix pull} authenticates code downloaded from channels by verifying that its commits are signed by authorized developers, and raises an error if this is not the case. This option instructs it to not perform any such verification." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4565 +#: guix-git/doc/guix.texi:4583 msgid "Make sure you understand its security implications before using @option{--disable-authentication}." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4568 guix-git/doc/guix.texi:5847 -#: guix-git/doc/guix.texi:6230 guix-git/doc/guix.texi:6630 -#: guix-git/doc/guix.texi:11506 guix-git/doc/guix.texi:13188 -#: guix-git/doc/guix.texi:13453 guix-git/doc/guix.texi:14130 -#: guix-git/doc/guix.texi:35252 +#: guix-git/doc/guix.texi:4586 guix-git/doc/guix.texi:5860 +#: guix-git/doc/guix.texi:6273 guix-git/doc/guix.texi:6673 +#: guix-git/doc/guix.texi:11820 guix-git/doc/guix.texi:13545 +#: guix-git/doc/guix.texi:13810 guix-git/doc/guix.texi:14487 +#: guix-git/doc/guix.texi:35696 #, no-wrap msgid "-s @var{system}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4571 guix-git/doc/guix.texi:6633 +#: guix-git/doc/guix.texi:4589 guix-git/doc/guix.texi:6676 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of the system type of the build host." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4575 +#: guix-git/doc/guix.texi:4593 msgid "Use the bootstrap Guile to build the latest Guix. This option is only useful to Guix developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4581 +#: guix-git/doc/guix.texi:4599 msgid "The @dfn{channel} mechanism allows you to instruct @command{guix pull} which repository and branch to pull from, as well as @emph{additional} repositories containing package modules that should be deployed. @xref{Channels}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4584 +#: guix-git/doc/guix.texi:4602 msgid "In addition, @command{guix pull} supports all the common build options (@pxref{Common Build Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4586 +#: guix-git/doc/guix.texi:4604 #, no-wrap msgid "Invoking @command{guix time-machine}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:4588 +#: guix-git/doc/guix.texi:4606 #, no-wrap msgid "guix time-machine" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4589 guix-git/doc/guix.texi:5161 +#: guix-git/doc/guix.texi:4607 guix-git/doc/guix.texi:5179 #, no-wrap msgid "pinning, channels" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4590 guix-git/doc/guix.texi:4772 -#: guix-git/doc/guix.texi:5162 +#: guix-git/doc/guix.texi:4608 guix-git/doc/guix.texi:4790 +#: guix-git/doc/guix.texi:5180 #, no-wrap msgid "replicating Guix" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4591 guix-git/doc/guix.texi:5163 +#: guix-git/doc/guix.texi:4609 guix-git/doc/guix.texi:5181 #, no-wrap msgid "reproducibility, of Guix" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4599 +#: guix-git/doc/guix.texi:4617 msgid "The @command{guix time-machine} command provides access to other revisions of Guix, for example to install older versions of packages, or to reproduce a computation in an identical environment. The revision of Guix to be used is defined by a commit or by a channel description file created by @command{guix describe} (@pxref{Invoking guix describe})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4601 guix-git/doc/guix.texi:5623 -#: guix-git/doc/guix.texi:5974 guix-git/doc/guix.texi:6753 -#: guix-git/doc/guix.texi:10689 guix-git/doc/guix.texi:10813 -#: guix-git/doc/guix.texi:11797 guix-git/doc/guix.texi:11892 -#: guix-git/doc/guix.texi:12825 guix-git/doc/guix.texi:13018 -#: guix-git/doc/guix.texi:13511 guix-git/doc/guix.texi:13884 -#: guix-git/doc/guix.texi:13973 guix-git/doc/guix.texi:14012 -#: guix-git/doc/guix.texi:14109 +#: guix-git/doc/guix.texi:4619 guix-git/doc/guix.texi:5641 +#: guix-git/doc/guix.texi:6011 guix-git/doc/guix.texi:6796 +#: guix-git/doc/guix.texi:11003 guix-git/doc/guix.texi:11127 +#: guix-git/doc/guix.texi:12111 guix-git/doc/guix.texi:12207 +#: guix-git/doc/guix.texi:13148 guix-git/doc/guix.texi:13375 +#: guix-git/doc/guix.texi:13868 guix-git/doc/guix.texi:14241 +#: guix-git/doc/guix.texi:14330 guix-git/doc/guix.texi:14369 +#: guix-git/doc/guix.texi:14466 msgid "The general syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4604 +#: guix-git/doc/guix.texi:4622 #, no-wrap msgid "guix time-machine @var{options}@dots{} -- @var{command} @var {arg}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4609 +#: guix-git/doc/guix.texi:4627 msgid "where @var{command} and @var{arg}@dots{} are passed unmodified to the @command{guix} command of the specified revision. The @var{options} that define this revision are the same as for @command{guix pull} (@pxref{Invoking guix pull}):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4617 +#: guix-git/doc/guix.texi:4635 msgid "Use the @code{guix} channel from the specified @var{url}, at the given @var{commit} (a valid Git commit ID represented as a hexadecimal string), or @var{branch}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4623 +#: guix-git/doc/guix.texi:4641 msgid "Read the list of channels from @var{file}. @var{file} must contain Scheme code that evaluates to a list of channel objects. @xref{Channels} for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4627 +#: guix-git/doc/guix.texi:4645 msgid "As for @command{guix pull}, the absence of any options means that the latest commit on the master branch will be used. The command" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4630 +#: guix-git/doc/guix.texi:4648 #, no-wrap msgid "guix time-machine -- build hello\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4635 +#: guix-git/doc/guix.texi:4653 msgid "will thus build the package @code{hello} as defined in the master branch, which is in general a newer revision of Guix than you have installed. Time travel works in both directions!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4639 +#: guix-git/doc/guix.texi:4657 msgid "Note that @command{guix time-machine} can trigger builds of channels and their dependencies, and these are controlled by the standard build options (@pxref{Common Build Options})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4647 +#: guix-git/doc/guix.texi:4665 msgid "The functionality described here is a ``technology preview'' as of version @value{VERSION}. As such, the interface is subject to change." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4649 guix-git/doc/guix.texi:10726 +#: guix-git/doc/guix.texi:4667 guix-git/doc/guix.texi:11040 #, no-wrap msgid "inferiors" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4650 +#: guix-git/doc/guix.texi:4668 #, no-wrap msgid "composition of Guix revisions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4655 +#: guix-git/doc/guix.texi:4673 msgid "Sometimes you might need to mix packages from the revision of Guix you're currently running with packages available in a different revision of Guix. Guix @dfn{inferiors} allow you to achieve that by composing different Guix revisions in arbitrary ways." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4656 guix-git/doc/guix.texi:4721 +#: guix-git/doc/guix.texi:4674 guix-git/doc/guix.texi:4739 #, no-wrap msgid "inferior packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4662 +#: guix-git/doc/guix.texi:4680 msgid "Technically, an ``inferior'' is essentially a separate Guix process connected to your main Guix process through a REPL (@pxref{Invoking guix repl}). The @code{(guix inferior)} module allows you to create inferiors and to communicate with them. It also provides a high-level interface to browse and manipulate the packages that an inferior provides---@dfn{inferior packages}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4672 +#: guix-git/doc/guix.texi:4690 msgid "When combined with channels (@pxref{Channels}), inferiors provide a simple way to interact with a separate revision of Guix. For example, let's assume you want to install in your profile the current @code{guile} package, along with the @code{guile-json} as it existed in an older revision of Guix---perhaps because the newer @code{guile-json} has an incompatible API and you want to run your code against the old API@. To do that, you could write a manifest for use by @code{guix package --manifest} (@pxref{Invoking guix package}); in that manifest, you would create an inferior for that old Guix revision you care about, and you would look up the @code{guile-json} package in the inferior:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4676 +#: guix-git/doc/guix.texi:4694 #, no-wrap msgid "" "(use-modules (guix inferior) (guix channels)\n" @@ -11047,7 +11124,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4685 +#: guix-git/doc/guix.texi:4703 #, no-wrap msgid "" "(define channels\n" @@ -11062,7 +11139,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4689 +#: guix-git/doc/guix.texi:4707 #, no-wrap msgid "" "(define inferior\n" @@ -11072,7 +11149,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4695 +#: guix-git/doc/guix.texi:4713 #, no-wrap msgid "" ";; Now create a manifest with the current \"guile\" package\n" @@ -11083,186 +11160,186 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4700 +#: guix-git/doc/guix.texi:4718 msgid "On its first run, @command{guix package --manifest} might have to build the channel you specified before it can create the inferior; subsequent runs will be much faster because the Guix revision will be cached." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4703 +#: guix-git/doc/guix.texi:4721 msgid "The @code{(guix inferior)} module provides the following procedures to open an inferior:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4704 +#: guix-git/doc/guix.texi:4722 #, no-wrap msgid "{Scheme Procedure} inferior-for-channels @var{channels} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4709 +#: guix-git/doc/guix.texi:4727 msgid "[#:cache-directory] [#:ttl] Return an inferior for @var{channels}, a list of channels. Use the cache at @var{cache-directory}, where entries can be reclaimed after @var{ttl} seconds. This procedure opens a new connection to the build daemon." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4712 +#: guix-git/doc/guix.texi:4730 msgid "As a side effect, this procedure may build or substitute binaries for @var{channels}, which can take time." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4714 +#: guix-git/doc/guix.texi:4732 #, no-wrap msgid "{Scheme Procedure} open-inferior @var{directory} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4719 +#: guix-git/doc/guix.texi:4737 msgid "[#:command \"bin/guix\"] Open the inferior Guix in @var{directory}, running @code{@var{directory}/@var{command} repl} or equivalent. Return @code{#f} if the inferior could not be launched." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4724 +#: guix-git/doc/guix.texi:4742 msgid "The procedures listed below allow you to obtain and manipulate inferior packages." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4725 +#: guix-git/doc/guix.texi:4743 #, no-wrap msgid "{Scheme Procedure} inferior-packages @var{inferior}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4727 +#: guix-git/doc/guix.texi:4745 msgid "Return the list of packages known to @var{inferior}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4729 +#: guix-git/doc/guix.texi:4747 #, no-wrap msgid "{Scheme Procedure} lookup-inferior-packages @var{inferior} @var{name} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4734 +#: guix-git/doc/guix.texi:4752 msgid "[@var{version}] Return the sorted list of inferior packages matching @var{name} in @var{inferior}, with highest version numbers first. If @var{version} is true, return only packages with a version number prefixed by @var{version}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4736 +#: guix-git/doc/guix.texi:4754 #, no-wrap msgid "{Scheme Procedure} inferior-package? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4738 +#: guix-git/doc/guix.texi:4756 msgid "Return true if @var{obj} is an inferior package." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4740 +#: guix-git/doc/guix.texi:4758 #, no-wrap msgid "{Scheme Procedure} inferior-package-name @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4741 +#: guix-git/doc/guix.texi:4759 #, no-wrap msgid "{Scheme Procedure} inferior-package-version @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4742 +#: guix-git/doc/guix.texi:4760 #, no-wrap msgid "{Scheme Procedure} inferior-package-synopsis @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4743 +#: guix-git/doc/guix.texi:4761 #, no-wrap msgid "{Scheme Procedure} inferior-package-description @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4744 +#: guix-git/doc/guix.texi:4762 #, no-wrap msgid "{Scheme Procedure} inferior-package-home-page @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4745 +#: guix-git/doc/guix.texi:4763 #, no-wrap msgid "{Scheme Procedure} inferior-package-location @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4746 +#: guix-git/doc/guix.texi:4764 #, no-wrap msgid "{Scheme Procedure} inferior-package-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4747 +#: guix-git/doc/guix.texi:4765 #, no-wrap msgid "{Scheme Procedure} inferior-package-native-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4748 +#: guix-git/doc/guix.texi:4766 #, no-wrap msgid "{Scheme Procedure} inferior-package-propagated-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4749 +#: guix-git/doc/guix.texi:4767 #, no-wrap msgid "{Scheme Procedure} inferior-package-transitive-propagated-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4750 +#: guix-git/doc/guix.texi:4768 #, no-wrap msgid "{Scheme Procedure} inferior-package-native-search-paths @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4751 +#: guix-git/doc/guix.texi:4769 #, no-wrap msgid "{Scheme Procedure} inferior-package-transitive-native-search-paths @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4752 +#: guix-git/doc/guix.texi:4770 #, no-wrap msgid "{Scheme Procedure} inferior-package-search-paths @var{package}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4757 +#: guix-git/doc/guix.texi:4775 msgid "These procedures are the counterpart of package record accessors (@pxref{package Reference}). Most of them work by querying the inferior @var{package} comes from, so the inferior must still be live when you call these procedures." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4767 +#: guix-git/doc/guix.texi:4785 msgid "Inferior packages can be used transparently like any other package or file-like object in G-expressions (@pxref{G-Expressions}). They are also transparently handled by the @code{packages->manifest} procedure, which is commonly used in manifests (@pxref{Invoking guix package, the @option{--manifest} option of @command{guix package}}). Thus you can insert an inferior package pretty much anywhere you would insert a regular package: in manifests, in the @code{packages} field of your @code{operating-system} declaration, and so on." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4769 +#: guix-git/doc/guix.texi:4787 #, no-wrap msgid "Invoking @command{guix describe}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4780 +#: guix-git/doc/guix.texi:4798 msgid "Often you may want to answer questions like: ``Which revision of Guix am I using?'' or ``Which channels am I using?'' This is useful information in many situations: if you want to @emph{replicate} an environment on a different machine or user account, if you want to report a bug or to determine what change in the channels you are using caused it, or if you want to record your system state for reproducibility purposes. The @command{guix describe} command answers these questions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4784 +#: guix-git/doc/guix.texi:4802 msgid "When run from a @command{guix pull}ed @command{guix}, @command{guix describe} displays the channel(s) that it was built from, including their repository URL and commit IDs (@pxref{Channels}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4792 +#: guix-git/doc/guix.texi:4810 #, no-wrap msgid "" "$ guix describe\n" @@ -11274,17 +11351,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4801 +#: guix-git/doc/guix.texi:4819 msgid "If you're familiar with the Git version control system, this is similar in spirit to @command{git describe}; the output is also similar to that of @command{guix pull --list-generations}, but limited to the current generation (@pxref{Invoking guix pull, the @option{--list-generations} option}). Because the Git commit ID shown above unambiguously refers to a snapshot of Guix, this information is all it takes to describe the revision of Guix you're using, and also to replicate it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4804 +#: guix-git/doc/guix.texi:4822 msgid "To make it easier to replicate Guix, @command{guix describe} can also be asked to return a list of channels instead of the human-readable description above:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4817 +#: guix-git/doc/guix.texi:4835 #, no-wrap msgid "" "$ guix describe -f channels\n" @@ -11301,190 +11378,190 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4826 +#: guix-git/doc/guix.texi:4844 msgid "You can save this to a file and feed it to @command{guix pull -C} on some other machine or at a later point in time, which will instantiate @emph{this exact Guix revision} (@pxref{Invoking guix pull, the @option{-C} option}). From there on, since you're able to deploy the same revision of Guix, you can just as well @emph{replicate a complete software environment}. We humbly think that this is @emph{awesome}, and we hope you'll like it too!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4829 +#: guix-git/doc/guix.texi:4847 msgid "The details of the options supported by @command{guix describe} are as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4831 guix-git/doc/guix.texi:6431 -#: guix-git/doc/guix.texi:14242 +#: guix-git/doc/guix.texi:4849 guix-git/doc/guix.texi:6474 +#: guix-git/doc/guix.texi:14599 #, no-wrap msgid "--format=@var{format}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4832 guix-git/doc/guix.texi:6432 -#: guix-git/doc/guix.texi:14243 +#: guix-git/doc/guix.texi:4850 guix-git/doc/guix.texi:6475 +#: guix-git/doc/guix.texi:14600 #, no-wrap msgid "-f @var{format}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4834 guix-git/doc/guix.texi:14245 +#: guix-git/doc/guix.texi:4852 guix-git/doc/guix.texi:14602 msgid "Produce output in the specified @var{format}, one of:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4836 +#: guix-git/doc/guix.texi:4854 #, no-wrap msgid "human" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4838 +#: guix-git/doc/guix.texi:4856 msgid "produce human-readable output;" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4838 guix-git/doc/guix.texi:5056 +#: guix-git/doc/guix.texi:4856 guix-git/doc/guix.texi:5074 #, no-wrap msgid "channels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4842 +#: guix-git/doc/guix.texi:4860 msgid "produce a list of channel specifications that can be passed to @command{guix pull -C} or installed as @file{~/.config/guix/channels.scm} (@pxref{Invoking guix pull});" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4842 +#: guix-git/doc/guix.texi:4860 #, no-wrap msgid "channels-sans-intro" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4848 +#: guix-git/doc/guix.texi:4866 msgid "like @code{channels}, but omit the @code{introduction} field; use it to produce a channel specification suitable for Guix version 1.1.0 or earlier---the @code{introduction} field has to do with channel authentication (@pxref{Channels, Channel Authentication}) and is not supported by these older versions;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4848 guix-git/doc/guix.texi:12109 +#: guix-git/doc/guix.texi:4866 guix-git/doc/guix.texi:12424 #, no-wrap msgid "json" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4849 +#: guix-git/doc/guix.texi:4867 #, no-wrap msgid "JSON" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4851 +#: guix-git/doc/guix.texi:4869 msgid "produce a list of channel specifications in JSON format;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4851 guix-git/doc/guix.texi:14247 +#: guix-git/doc/guix.texi:4869 guix-git/doc/guix.texi:14604 #, no-wrap msgid "recutils" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4853 +#: guix-git/doc/guix.texi:4871 msgid "produce a list of channel specifications in Recutils format." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4855 +#: guix-git/doc/guix.texi:4873 #, no-wrap msgid "--list-formats" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4857 +#: guix-git/doc/guix.texi:4875 msgid "Display available formats for @option{--format} option." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4861 +#: guix-git/doc/guix.texi:4879 msgid "Display information about @var{profile}." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4864 +#: guix-git/doc/guix.texi:4882 #, no-wrap msgid "Invoking @command{guix archive}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:4866 +#: guix-git/doc/guix.texi:4884 #, no-wrap msgid "guix archive" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4867 +#: guix-git/doc/guix.texi:4885 #, no-wrap msgid "archive" msgstr "بایگانی" #. type: Plain text -#: guix-git/doc/guix.texi:4873 +#: guix-git/doc/guix.texi:4891 msgid "The @command{guix archive} command allows users to @dfn{export} files from the store into a single archive, and to later @dfn{import} them on a machine that runs Guix. In particular, it allows store files to be transferred from one machine to the store on another machine." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4877 +#: guix-git/doc/guix.texi:4895 msgid "If you're looking for a way to produce archives in a format suitable for tools other than Guix, @pxref{Invoking guix pack}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4879 +#: guix-git/doc/guix.texi:4897 #, no-wrap msgid "exporting store items" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4881 +#: guix-git/doc/guix.texi:4899 msgid "To export store files as an archive to standard output, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4884 +#: guix-git/doc/guix.texi:4902 #, no-wrap msgid "guix archive --export @var{options} @var{specifications}...\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4891 +#: guix-git/doc/guix.texi:4909 msgid "@var{specifications} may be either store file names or package specifications, as for @command{guix package} (@pxref{Invoking guix package}). For instance, the following command creates an archive containing the @code{gui} output of the @code{git} package and the main output of @code{emacs}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4894 +#: guix-git/doc/guix.texi:4912 #, no-wrap msgid "guix archive --export git:gui /gnu/store/...-emacs-24.3 > great.nar\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4899 +#: guix-git/doc/guix.texi:4917 msgid "If the specified packages are not built yet, @command{guix archive} automatically builds them. The build process may be controlled with the common build options (@pxref{Common Build Options})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4902 +#: guix-git/doc/guix.texi:4920 msgid "To transfer the @code{emacs} package to a machine connected over SSH, one would run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4905 +#: guix-git/doc/guix.texi:4923 #, no-wrap msgid "guix archive --export -r emacs | ssh the-machine guix archive --import\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4910 +#: guix-git/doc/guix.texi:4928 msgid "Similarly, a complete user profile may be transferred from one machine to another like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4914 +#: guix-git/doc/guix.texi:4932 #, no-wrap msgid "" "guix archive --export -r $(readlink -f ~/.guix-profile) | \\\n" @@ -11492,187 +11569,187 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4924 +#: guix-git/doc/guix.texi:4942 msgid "However, note that, in both examples, all of @code{emacs} and the profile as well as all of their dependencies are transferred (due to @option{-r}), regardless of what is already available in the store on the target machine. The @option{--missing} option can help figure out which items are missing from the target store. The @command{guix copy} command simplifies and optimizes this whole process, so this is probably what you should use in this case (@pxref{Invoking guix copy})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4925 +#: guix-git/doc/guix.texi:4943 #, no-wrap msgid "nar, archive format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4926 +#: guix-git/doc/guix.texi:4944 #, no-wrap msgid "normalized archive (nar)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4927 +#: guix-git/doc/guix.texi:4945 #, no-wrap msgid "nar bundle, archive format" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4932 +#: guix-git/doc/guix.texi:4950 msgid "Each store item is written in the @dfn{normalized archive} or @dfn{nar} format (described below), and the output of @command{guix archive --export} (and input of @command{guix archive --import}) is a @dfn{nar bundle}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4942 +#: guix-git/doc/guix.texi:4960 msgid "The nar format is comparable in spirit to `tar', but with differences that make it more appropriate for our purposes. First, rather than recording all Unix metadata for each file, the nar format only mentions the file type (regular, directory, or symbolic link); Unix permissions and owner/group are dismissed. Second, the order in which directory entries are stored always follows the order of file names according to the C locale collation order. This makes archive production fully deterministic." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4946 +#: guix-git/doc/guix.texi:4964 msgid "That nar bundle format is essentially the concatenation of zero or more nars along with metadata for each store item it contains: its file name, references, corresponding derivation, and a digital signature." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4952 +#: guix-git/doc/guix.texi:4970 msgid "When exporting, the daemon digitally signs the contents of the archive, and that digital signature is appended. When importing, the daemon verifies the signature and rejects the import in case of an invalid signature or if the signing key is not authorized." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4954 +#: guix-git/doc/guix.texi:4972 msgid "The main options are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4956 +#: guix-git/doc/guix.texi:4974 #, no-wrap msgid "--export" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4959 +#: guix-git/doc/guix.texi:4977 msgid "Export the specified store files or packages (see below). Write the resulting archive to the standard output." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4962 +#: guix-git/doc/guix.texi:4980 msgid "Dependencies are @emph{not} included in the output, unless @option{--recursive} is passed." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4963 guix-git/doc/guix.texi:11830 -#: guix-git/doc/guix.texi:11956 guix-git/doc/guix.texi:11981 -#: guix-git/doc/guix.texi:12013 guix-git/doc/guix.texi:12184 -#: guix-git/doc/guix.texi:12225 guix-git/doc/guix.texi:12276 -#: guix-git/doc/guix.texi:12301 guix-git/doc/guix.texi:12317 -#: guix-git/doc/guix.texi:12365 guix-git/doc/guix.texi:12401 +#: guix-git/doc/guix.texi:4981 guix-git/doc/guix.texi:12144 +#: guix-git/doc/guix.texi:12271 guix-git/doc/guix.texi:12296 +#: guix-git/doc/guix.texi:12328 guix-git/doc/guix.texi:12499 +#: guix-git/doc/guix.texi:12540 guix-git/doc/guix.texi:12591 +#: guix-git/doc/guix.texi:12616 guix-git/doc/guix.texi:12632 +#: guix-git/doc/guix.texi:12680 guix-git/doc/guix.texi:12716 #, no-wrap msgid "-r" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4964 guix-git/doc/guix.texi:11829 -#: guix-git/doc/guix.texi:11955 guix-git/doc/guix.texi:11980 -#: guix-git/doc/guix.texi:12012 guix-git/doc/guix.texi:12183 -#: guix-git/doc/guix.texi:12224 guix-git/doc/guix.texi:12275 -#: guix-git/doc/guix.texi:12300 guix-git/doc/guix.texi:12316 -#: guix-git/doc/guix.texi:12364 guix-git/doc/guix.texi:12400 -#: guix-git/doc/guix.texi:12449 +#: guix-git/doc/guix.texi:4982 guix-git/doc/guix.texi:12143 +#: guix-git/doc/guix.texi:12270 guix-git/doc/guix.texi:12295 +#: guix-git/doc/guix.texi:12327 guix-git/doc/guix.texi:12498 +#: guix-git/doc/guix.texi:12539 guix-git/doc/guix.texi:12590 +#: guix-git/doc/guix.texi:12615 guix-git/doc/guix.texi:12631 +#: guix-git/doc/guix.texi:12679 guix-git/doc/guix.texi:12715 +#: guix-git/doc/guix.texi:12764 #, no-wrap msgid "--recursive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4969 +#: guix-git/doc/guix.texi:4987 msgid "When combined with @option{--export}, this instructs @command{guix archive} to include dependencies of the given items in the archive. Thus, the resulting archive is self-contained: it contains the closure of the exported store items." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4970 +#: guix-git/doc/guix.texi:4988 #, no-wrap msgid "--import" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4975 +#: guix-git/doc/guix.texi:4993 msgid "Read an archive from the standard input, and import the files listed therein into the store. Abort if the archive has an invalid digital signature, or if it is signed by a public key not among the authorized keys (see @option{--authorize} below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4976 +#: guix-git/doc/guix.texi:4994 #, no-wrap msgid "--missing" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4980 +#: guix-git/doc/guix.texi:4998 msgid "Read a list of store file names from the standard input, one per line, and write on the standard output the subset of these files missing from the store." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4981 +#: guix-git/doc/guix.texi:4999 #, no-wrap msgid "--generate-key[=@var{parameters}]" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4982 +#: guix-git/doc/guix.texi:5000 #, no-wrap msgid "signing, archives" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4989 +#: guix-git/doc/guix.texi:5007 msgid "Generate a new key pair for the daemon. This is a prerequisite before archives can be exported with @option{--export}. This operation is usually instantaneous but it can take time if the system's entropy pool needs to be refilled. On Guix System, @code{guix-service-type} takes care of generating this key pair the first boot." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4999 +#: guix-git/doc/guix.texi:5017 msgid "The generated key pair is typically stored under @file{/etc/guix}, in @file{signing-key.pub} (public key) and @file{signing-key.sec} (private key, which must be kept secret). When @var{parameters} is omitted, an ECDSA key using the Ed25519 curve is generated, or, for Libgcrypt versions before 1.6.0, it is a 4096-bit RSA key. Alternatively, @var{parameters} can specify @code{genkey} parameters suitable for Libgcrypt (@pxref{General public-key related Functions, @code{gcry_pk_genkey},, gcrypt, The Libgcrypt Reference Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5000 +#: guix-git/doc/guix.texi:5018 #, no-wrap msgid "--authorize" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5001 +#: guix-git/doc/guix.texi:5019 #, no-wrap msgid "authorizing, archives" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5005 +#: guix-git/doc/guix.texi:5023 msgid "Authorize imports signed by the public key passed on standard input. The public key must be in ``s-expression advanced format''---i.e., the same format as the @file{signing-key.pub} file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5012 +#: guix-git/doc/guix.texi:5030 msgid "The list of authorized keys is kept in the human-editable file @file{/etc/guix/acl}. The file contains @url{https://people.csail.mit.edu/rivest/Sexp.txt, ``advanced-format s-expressions''} and is structured as an access-control list in the @url{https://theworld.com/~cme/spki.txt, Simple Public-Key Infrastructure (SPKI)}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5013 +#: guix-git/doc/guix.texi:5031 #, no-wrap msgid "--extract=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5014 +#: guix-git/doc/guix.texi:5032 #, no-wrap msgid "-x @var{directory}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5018 +#: guix-git/doc/guix.texi:5036 msgid "Read a single-item archive as served by substitute servers (@pxref{Substitutes}) and extract it to @var{directory}. This is a low-level operation needed in only very narrow use cases; see below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5021 +#: guix-git/doc/guix.texi:5039 msgid "For example, the following command extracts the substitute for Emacs served by @code{@value{SUBSTITUTE-SERVER-1}} to @file{/tmp/emacs}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5026 +#: guix-git/doc/guix.texi:5044 #, no-wrap msgid "" "$ wget -O - \\\n" @@ -11681,35 +11758,35 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5033 +#: guix-git/doc/guix.texi:5051 msgid "Single-item archives are different from multiple-item archives produced by @command{guix archive --export}; they contain a single store item, and they do @emph{not} embed a signature. Thus this operation does @emph{no} signature verification and its output should be considered unsafe." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5037 +#: guix-git/doc/guix.texi:5055 msgid "The primary purpose of this operation is to facilitate inspection of archive contents coming from possibly untrusted substitute servers (@pxref{Invoking guix challenge})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5038 +#: guix-git/doc/guix.texi:5056 #, no-wrap msgid "--list" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5039 guix-git/doc/guix.texi:12171 -#: guix-git/doc/guix.texi:12218 +#: guix-git/doc/guix.texi:5057 guix-git/doc/guix.texi:12486 +#: guix-git/doc/guix.texi:12533 #, no-wrap msgid "-t" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5043 +#: guix-git/doc/guix.texi:5061 msgid "Read a single-item archive as served by substitute servers (@pxref{Substitutes}) and print the list of files it contains, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5048 +#: guix-git/doc/guix.texi:5066 #, no-wrap msgid "" "$ wget -O - \\\n" @@ -11718,47 +11795,47 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5059 +#: guix-git/doc/guix.texi:5077 #, no-wrap msgid "@command{guix pull}, configuration file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5060 +#: guix-git/doc/guix.texi:5078 #, no-wrap msgid "configuration of @command{guix pull}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5071 +#: guix-git/doc/guix.texi:5089 msgid "Guix and its package collection are updated by running @command{guix pull} (@pxref{Invoking guix pull}). By default @command{guix pull} downloads and deploys Guix itself from the official GNU@tie{}Guix repository. This can be customized by defining @dfn{channels} in the @file{~/.config/guix/channels.scm} file. A channel specifies a URL and branch of a Git repository to be deployed, and @command{guix pull} can be instructed to pull from one or more channels. In other words, channels can be used to @emph{customize} and to @emph{extend} Guix, as we will see below. Guix is able to take into account security concerns and deal with authenticated updates." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5089 +#: guix-git/doc/guix.texi:5107 #, no-wrap msgid "extending the package collection (channels)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5090 +#: guix-git/doc/guix.texi:5108 #, no-wrap msgid "variant packages (channels)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5094 +#: guix-git/doc/guix.texi:5112 msgid "You can specify @emph{additional channels} to pull from. To use a channel, write @code{~/.config/guix/channels.scm} to instruct @command{guix pull} to pull from it @emph{in addition} to the default Guix channel(s):" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:5095 +#: guix-git/doc/guix.texi:5113 #, no-wrap msgid "%default-channels" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5120 #, no-wrap msgid "" ";; Add variant packages to those Guix provides.\n" @@ -11769,12 +11846,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5112 +#: guix-git/doc/guix.texi:5130 msgid "Note that the snippet above is (as always!)@: Scheme code; we use @code{cons} to add a channel the list of channels that the variable @code{%default-channels} is bound to (@pxref{Pairs, @code{cons} and lists,, guile, GNU Guile Reference Manual}). With this file in place, @command{guix pull} builds not only Guix but also the package modules from your own repository. The result in @file{~/.config/guix/current} is the union of Guix with your own package modules:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5127 +#: guix-git/doc/guix.texi:5145 #, no-wrap msgid "" "$ guix pull --list-generations\n" @@ -11793,17 +11870,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5135 +#: guix-git/doc/guix.texi:5153 msgid "The output of @command{guix pull} above shows that Generation@tie{}19 includes both Guix and packages from the @code{variant-personal-packages} channel. Among the new and upgraded packages that are listed, some like @code{variant-gimp} and @code{variant-emacs-with-cool-features} might come from @code{variant-packages}, while others come from the Guix default channel." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5144 +#: guix-git/doc/guix.texi:5162 msgid "The channel called @code{guix} specifies where Guix itself---its command-line tools as well as its package collection---should be downloaded. For instance, suppose you want to update from another copy of the Guix repository at @code{example.org}, and specifically the @code{super-hacks} branch, you can write in @code{~/.config/guix/channels.scm} this specification:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5151 +#: guix-git/doc/guix.texi:5169 #, no-wrap msgid "" ";; Tell 'guix pull' to use another repo.\n" @@ -11814,17 +11891,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5157 +#: guix-git/doc/guix.texi:5175 msgid "From there on, @command{guix pull} will fetch code from the @code{super-hacks} branch of the repository at @code{example.org}. The authentication concern is addressed below ((@pxref{Channel Authentication})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5168 +#: guix-git/doc/guix.texi:5186 msgid "The @command{guix pull --list-generations} output above shows precisely which commits were used to build this instance of Guix. We can thus replicate it, say, on another machine, by providing a channel specification in @file{~/.config/guix/channels.scm} that is ``pinned'' to these commits:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5179 +#: guix-git/doc/guix.texi:5197 #, no-wrap msgid "" ";; Deploy specific commits of my channels of interest.\n" @@ -11839,37 +11916,37 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5186 +#: guix-git/doc/guix.texi:5204 msgid "The @command{guix describe --format=channels} command can even generate this list of channels directly (@pxref{Invoking guix describe}). The resulting file can be used with the -C options of @command{guix pull} (@pxref{Invoking guix pull}) or @command{guix time-machine} (@pxref{Invoking guix time-machine})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5193 +#: guix-git/doc/guix.texi:5211 msgid "At this point the two machines run the @emph{exact same Guix}, with access to the @emph{exact same packages}. The output of @command{guix build gimp} on one machine will be exactly the same, bit for bit, as the output of the same command on the other machine. It also means both machines have access to all the source code of Guix and, transitively, to all the source code of every package it defines." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5198 +#: guix-git/doc/guix.texi:5216 msgid "This gives you super powers, allowing you to track the provenance of binary artifacts with very fine grain, and to reproduce software environments at will---some sort of ``meta reproducibility'' capabilities, if you will. @xref{Inferiors}, for another way to take advantage of these super powers." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:5203 +#: guix-git/doc/guix.texi:5221 msgid "channel-authentication" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5209 +#: guix-git/doc/guix.texi:5227 msgid "The @command{guix pull} and @command{guix time-machine} commands @dfn{authenticate} the code retrieved from channels: they make sure each commit that is fetched is signed by an authorized developer. The goal is to protect from unauthorized modifications to the channel that would lead users to run malicious code." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5214 +#: guix-git/doc/guix.texi:5232 msgid "As a user, you must provide a @dfn{channel introduction} in your channels file so that Guix knows how to authenticate its first commit. A channel specification, including its introduction, looks something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5224 +#: guix-git/doc/guix.texi:5242 #, no-wrap msgid "" "(channel\n" @@ -11883,27 +11960,27 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5230 +#: guix-git/doc/guix.texi:5248 msgid "The specification above shows the name and URL of the channel. The call to @code{make-channel-introduction} above specifies that authentication of this channel starts at commit @code{6f0d8cc@dots{}}, which is signed by the OpenPGP key with fingerprint @code{CABB A931@dots{}}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5236 +#: guix-git/doc/guix.texi:5254 msgid "For the main channel, called @code{guix}, you automatically get that information from your Guix installation. For other channels, include the channel introduction provided by the channel authors in your @file{channels.scm} file. Make sure you retrieve the channel introduction from a trusted source since that is the root of your trust." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5238 +#: guix-git/doc/guix.texi:5256 msgid "If you're curious about the authentication mechanics, read on!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5249 +#: guix-git/doc/guix.texi:5267 msgid "When running @command{guix pull}, Guix will first compile the definitions of every available package. This is an expensive operation for which substitutes (@pxref{Substitutes}) may be available. The following snippet in @file{channels.scm} will ensure that @command{guix pull} uses the latest commit with available substitutes for the package definitions: this is done by querying the continuous integration server at @url{https://ci.guix.gnu.org}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5252 +#: guix-git/doc/guix.texi:5270 #, no-wrap msgid "" "(use-modules (guix ci))\n" @@ -11911,7 +11988,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5256 +#: guix-git/doc/guix.texi:5274 #, no-wrap msgid "" "(list (channel-with-substitutes-available\n" @@ -11920,75 +11997,75 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5263 +#: guix-git/doc/guix.texi:5281 msgid "Note that this does not mean that all the packages that you will install after running @command{guix pull} will have available substitutes. It only ensures that @command{guix pull} will not try to compile package definitions. This is particularly useful when using machines with limited resources." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5267 +#: guix-git/doc/guix.texi:5285 #, no-wrap msgid "personal packages (channels)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5268 +#: guix-git/doc/guix.texi:5286 #, no-wrap msgid "channels, for personal packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5276 +#: guix-git/doc/guix.texi:5294 msgid "Let's say you have a bunch of custom package variants or personal packages that you think would make little sense to contribute to the Guix project, but would like to have these packages transparently available to you at the command line. You would first write modules containing those package definitions (@pxref{Package Modules}), maintain them in a Git repository, and then you and anyone else can use it as an additional channel to get packages from. Neat, no?" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5284 +#: guix-git/doc/guix.texi:5302 msgid "Before you, dear user, shout---``woow this is @emph{soooo coool}!''---and publish your personal channel to the world, we would like to share a few words of caution:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:5292 +#: guix-git/doc/guix.texi:5310 msgid "Before publishing a channel, please consider contributing your package definitions to Guix proper (@pxref{Contributing}). Guix as a project is open to free software of all sorts, and packages in Guix proper are readily available to all Guix users and benefit from the project's quality assurance process." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:5301 +#: guix-git/doc/guix.texi:5319 msgid "When you maintain package definitions outside Guix, we, Guix developers, consider that @emph{the compatibility burden is on you}. Remember that package modules and package definitions are just Scheme code that uses various programming interfaces (APIs). We want to remain free to change these APIs to keep improving Guix, possibly in ways that break your channel. We never change APIs gratuitously, but we will @emph{not} commit to freezing APIs either." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:5305 +#: guix-git/doc/guix.texi:5323 msgid "Corollary: if you're using an external channel and that channel breaks, please @emph{report the issue to the channel authors}, not to the Guix project." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5312 +#: guix-git/doc/guix.texi:5330 msgid "You've been warned! Having said this, we believe external channels are a practical way to exert your freedom to augment Guix' package collection and to share your improvements, which are basic tenets of @uref{https://www.gnu.org/philosophy/free-sw.html, free software}. Please email us at @email{guix-devel@@gnu.org} if you'd like to discuss this." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5324 +#: guix-git/doc/guix.texi:5342 msgid "To create a channel, create a Git repository containing your own package modules and make it available. The repository can contain anything, but a useful channel will contain Guile modules that export packages. Once you start using a channel, Guix will behave as if the root directory of that channel's Git repository has been added to the Guile load path (@pxref{Load Paths,,, guile, GNU Guile Reference Manual}). For example, if your channel contains a file at @file{my-packages/my-tools.scm} that defines a Guile module, then the module will be available under the name @code{(my-packages my-tools)}, and you will be able to use it like any other module (@pxref{Modules,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5329 +#: guix-git/doc/guix.texi:5347 msgid "As a channel author, consider bundling authentication material with your channel so that users can authenticate it. @xref{Channel Authentication}, and @ref{Specifying Channel Authorizations}, for info on how to do it." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5334 +#: guix-git/doc/guix.texi:5352 #, no-wrap msgid "subdirectory, channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5338 +#: guix-git/doc/guix.texi:5356 msgid "As a channel author, you may want to keep your channel modules in a sub-directory. If your modules are in the sub-directory @file{guix}, you must add a meta-data file @file{.guix-channel} that contains:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5343 +#: guix-git/doc/guix.texi:5361 #, no-wrap msgid "" "(channel\n" @@ -11997,29 +12074,29 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5348 +#: guix-git/doc/guix.texi:5366 #, no-wrap msgid "dependencies, channels" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5349 +#: guix-git/doc/guix.texi:5367 #, no-wrap msgid "meta-data, channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5354 +#: guix-git/doc/guix.texi:5372 msgid "Channel authors may decide to augment a package collection provided by other channels. They can declare their channel to be dependent on other channels in a meta-data file @file{.guix-channel}, which is to be placed in the root of the channel repository." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5356 +#: guix-git/doc/guix.texi:5374 msgid "The meta-data file should contain a simple S-expression like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5364 +#: guix-git/doc/guix.texi:5382 #, no-wrap msgid "" "(channel\n" @@ -12032,7 +12109,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5376 +#: guix-git/doc/guix.texi:5394 #, no-wrap msgid "" " ;; The 'introduction' bit below is optional: you would\n" @@ -12049,33 +12126,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5382 +#: guix-git/doc/guix.texi:5400 msgid "In the above example this channel is declared to depend on two other channels, which will both be fetched automatically. The modules provided by the channel will be compiled in an environment where the modules of all these declared channels are available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5386 +#: guix-git/doc/guix.texi:5404 msgid "For the sake of reliability and maintainability, you should avoid dependencies on channels that you don't control, and you should aim to keep the number of dependencies to a minimum." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5390 +#: guix-git/doc/guix.texi:5408 #, no-wrap msgid "channel authorizations" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:5404 +#: guix-git/doc/guix.texi:5422 msgid "channel-authorizations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5404 +#: guix-git/doc/guix.texi:5422 msgid "As we saw above, Guix ensures the source code it pulls from channels comes from authorized developers. As a channel author, you need to specify the list of authorized developers in the @file{.guix-authorizations} file in the channel's Git repository. The authentication rule is simple: each commit must be signed by a key listed in the @file{.guix-authorizations} file of its parent commit(s)@footnote{Git commits form a @dfn{directed acyclic graph} (DAG). Each commit can have zero or more parents; ``regular'' commits have one parent and merge commits have two parent commits. Read @uref{https://eagain.net/articles/git-for-computer-scientists/, @i{Git for Computer Scientists}} for a great overview.} The @file{.guix-authorizations} file looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5407 +#: guix-git/doc/guix.texi:5425 #, no-wrap msgid "" ";; Example '.guix-authorizations' file.\n" @@ -12083,7 +12160,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5410 +#: guix-git/doc/guix.texi:5428 #, no-wrap msgid "" "(authorizations\n" @@ -12092,7 +12169,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5417 +#: guix-git/doc/guix.texi:5435 #, no-wrap msgid "" " ((\"AD17 A21E F8AE D8F1 CC02 DBD9 F8AE D8F1 765C 61E3\"\n" @@ -12104,33 +12181,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5421 +#: guix-git/doc/guix.texi:5439 msgid "Each fingerprint is followed by optional key/value pairs, as in the example above. Currently these key/value pairs are ignored." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5426 +#: guix-git/doc/guix.texi:5444 msgid "This authentication rule creates a chicken-and-egg issue: how do we authenticate the first commit? Related to that: how do we deal with channels whose repository history contains unsigned commits and lack @file{.guix-authorizations}? And how do we fork existing channels?" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5427 +#: guix-git/doc/guix.texi:5445 #, no-wrap msgid "channel introduction" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5434 +#: guix-git/doc/guix.texi:5452 msgid "Channel introductions answer these questions by describing the first commit of a channel that should be authenticated. The first time a channel is fetched with @command{guix pull} or @command{guix time-machine}, the command looks up the introductory commit and verifies that it is signed by the specified OpenPGP key. From then on, it authenticates commits according to the rule above." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5441 +#: guix-git/doc/guix.texi:5459 msgid "Additionally, your channel must provide all the OpenPGP keys that were ever mentioned in @file{.guix-authorizations}, stored as @file{.key} files, which can be either binary or ``ASCII-armored''. By default, those @file{.key} files are searched for in the branch named @code{keyring} but you can specify a different branch name in @code{.guix-channel} like so:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5446 +#: guix-git/doc/guix.texi:5464 #, no-wrap msgid "" "(channel\n" @@ -12139,59 +12216,59 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5450 +#: guix-git/doc/guix.texi:5468 msgid "To summarize, as the author of a channel, there are three things you have to do to allow users to authenticate your code:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:5456 +#: guix-git/doc/guix.texi:5474 msgid "Export the OpenPGP keys of past and present committers with @command{gpg --export} and store them in @file{.key} files, by default in a branch named @code{keyring} (we recommend making it an @dfn{orphan branch})." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:5461 +#: guix-git/doc/guix.texi:5479 msgid "Introduce an initial @file{.guix-authorizations} in the channel's repository. Do that in a signed commit (@pxref{Commit Access}, for information on how to sign Git commits.)" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:5467 +#: guix-git/doc/guix.texi:5485 msgid "Advertise the channel introduction, for instance on your channel's web page. The channel introduction, as we saw above, is the commit/key pair---i.e., the commit that introduced @file{.guix-authorizations}, and the fingerprint of the OpenPGP used to sign it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5472 +#: guix-git/doc/guix.texi:5490 msgid "Before pushing to your public Git repository, you can run @command{guix git-authenticate} to verify that you did sign all the commits you are about to push with an authorized key:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5475 +#: guix-git/doc/guix.texi:5493 #, no-wrap msgid "guix git authenticate @var{commit} @var{signer}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5480 +#: guix-git/doc/guix.texi:5498 msgid "where @var{commit} and @var{signer} are your channel introduction. @xref{Invoking guix git authenticate}, for details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5487 +#: guix-git/doc/guix.texi:5505 msgid "Publishing a signed channel requires discipline: any mistake, such as an unsigned commit or a commit signed by an unauthorized key, will prevent users from pulling from your channel---well, that's the whole point of authentication! Pay attention to merges in particular: merge commits are considered authentic if and only if they are signed by a key present in the @file{.guix-authorizations} file of @emph{both} branches." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5491 +#: guix-git/doc/guix.texi:5509 #, no-wrap msgid "primary URL, channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5494 +#: guix-git/doc/guix.texi:5512 msgid "Channel authors can indicate the primary URL of their channel's Git repository in the @file{.guix-channel} file, like so:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5499 +#: guix-git/doc/guix.texi:5517 #, no-wrap msgid "" "(channel\n" @@ -12200,38 +12277,38 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5506 +#: guix-git/doc/guix.texi:5524 msgid "This allows @command{guix pull} to determine whether it is pulling code from a mirror of the channel; when that is the case, it warns the user that the mirror might be stale and displays the primary URL@. That way, users cannot be tricked into fetching code from a stale mirror that does not receive security updates." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5510 +#: guix-git/doc/guix.texi:5528 msgid "This feature only makes sense for authenticated repositories, such as the official @code{guix} channel, for which @command{guix pull} ensures the code it fetches is authentic." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5514 +#: guix-git/doc/guix.texi:5532 #, no-wrap msgid "news, for channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5518 +#: guix-git/doc/guix.texi:5536 msgid "Channel authors may occasionally want to communicate to their users information about important changes in the channel. You'd send them all an email, but that's not convenient." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5523 +#: guix-git/doc/guix.texi:5541 msgid "Instead, channels can provide a @dfn{news file}; when the channel users run @command{guix pull}, that news file is automatically read and @command{guix pull --news} can display the announcements that correspond to the new commits that have been pulled, if any." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5526 +#: guix-git/doc/guix.texi:5544 msgid "To do that, channel authors must first declare the name of the news file in their @file{.guix-channel} file:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5531 +#: guix-git/doc/guix.texi:5549 #, no-wrap msgid "" "(channel\n" @@ -12240,12 +12317,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5535 +#: guix-git/doc/guix.texi:5553 msgid "The news file itself, @file{etc/news.txt} in this example, must look something like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5548 +#: guix-git/doc/guix.texi:5566 #, no-wrap msgid "" "(channel-news\n" @@ -12262,164 +12339,164 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5555 +#: guix-git/doc/guix.texi:5573 msgid "While the news file is using the Scheme syntax, avoid naming it with a @file{.scm} extension or else it will get picked up when building the channel and yield an error since it is not a valid module. Alternatively, you can move the channel module to a subdirectory and store the news file in another directory." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5560 +#: guix-git/doc/guix.texi:5578 msgid "The file consists of a list of @dfn{news entries}. Each entry is associated with a commit or tag: it describes changes made in this commit, possibly in preceding commits as well. Users see entries only the first time they obtain the commit the entry refers to." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5566 +#: guix-git/doc/guix.texi:5584 msgid "The @code{title} field should be a one-line summary while @code{body} can be arbitrarily long, and both can contain Texinfo markup (@pxref{Overview,,, texinfo, GNU Texinfo}). Both the title and body are a list of language tag/message tuples, which allows @command{guix pull} to display news in the language that corresponds to the user's locale." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5572 +#: guix-git/doc/guix.texi:5590 msgid "If you want to translate news using a gettext-based workflow, you can extract translatable strings with @command{xgettext} (@pxref{xgettext Invocation,,, gettext, GNU Gettext Utilities}). For example, assuming you write news entries in English first, the command below creates a PO file containing the strings to translate:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5575 +#: guix-git/doc/guix.texi:5593 #, no-wrap msgid "xgettext -o news.po -l scheme -ken etc/news.txt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5579 +#: guix-git/doc/guix.texi:5597 msgid "To sum up, yes, you could use your channel as a blog. But beware, this is @emph{not quite} what your users might expect." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5584 +#: guix-git/doc/guix.texi:5602 #, no-wrap msgid "software development" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5588 +#: guix-git/doc/guix.texi:5606 msgid "If you are a software developer, Guix provides tools that you should find helpful---independently of the language you're developing in. This is what this chapter is about." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5594 +#: guix-git/doc/guix.texi:5612 msgid "The @command{guix shell} command provides a convenient way to set up one-off software environments, be it for development purposes or to run a command without installing it in your profile. The @command{guix pack} command allows you to create @dfn{application bundles} that can be easily distributed to users who do not run Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:5604 +#: guix-git/doc/guix.texi:5622 #, no-wrap msgid "Invoking @command{guix shell}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5606 +#: guix-git/doc/guix.texi:5624 #, no-wrap msgid "reproducible build environments" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5607 +#: guix-git/doc/guix.texi:5625 #, no-wrap msgid "development environments" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:5608 +#: guix-git/doc/guix.texi:5626 #, no-wrap msgid "guix environment" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5609 +#: guix-git/doc/guix.texi:5627 #, no-wrap msgid "environment, package build environment" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5614 +#: guix-git/doc/guix.texi:5632 msgid "The purpose of @command{guix shell} is to make it easy to create one-off software environments, without changing one's profile. It is typically used to create development environments; it is also a convenient way to run applications without ``polluting'' your profile." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5620 +#: guix-git/doc/guix.texi:5638 msgid "The @command{guix shell} command was recently introduced to supersede @command{guix environment} (@pxref{Invoking guix environment}). If you are familiar with @command{guix environment}, you will notice that it is similar but also---we hope!---more convenient." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5626 +#: guix-git/doc/guix.texi:5644 #, no-wrap msgid "guix shell [@var{options}] [@var{package}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5631 +#: guix-git/doc/guix.texi:5649 msgid "The following example creates an environment containing Python and NumPy, building or downloading any missing package, and runs the @command{python3} command in that environment:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5634 +#: guix-git/doc/guix.texi:5652 #, no-wrap msgid "guix shell python python-numpy -- python3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5639 +#: guix-git/doc/guix.texi:5657 msgid "Development environments can be created as in the example below, which spawns an interactive shell containing all the dependencies and environment variables needed to work on Inkscape:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5642 +#: guix-git/doc/guix.texi:5660 #, no-wrap msgid "guix shell --development inkscape\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5648 +#: guix-git/doc/guix.texi:5666 msgid "Exiting the shell places the user back in the original environment before @command{guix shell} was invoked. The next garbage collection (@pxref{Invoking guix gc}) may clean up packages that were installed in the environment and that are no longer used outside of it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5655 +#: guix-git/doc/guix.texi:5673 msgid "As an added convenience, when running from a directory that contains a @file{manifest.scm} or a @file{guix.scm} file (in this order), possibly in a parent directory, @command{guix shell} automatically loads the file---provided the directory is listed in @file{~/.config/guix/shell-authorized-directories}, and only for interactive use:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5658 +#: guix-git/doc/guix.texi:5676 #, no-wrap msgid "guix shell\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5662 +#: guix-git/doc/guix.texi:5680 msgid "This provides an easy way to define, share, and enter development environments." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5673 +#: guix-git/doc/guix.texi:5691 msgid "By default, the shell session or command runs in an @emph{augmented} environment, where the new packages are added to search path environment variables such as @code{PATH}. You can, instead, choose to create an @emph{isolated} environment containing nothing but the packages you asked for. Passing the @option{--pure} option clears environment variable definitions found in the parent environment@footnote{Be sure to use the @option{--check} option the first time you use @command{guix shell} interactively to make sure the shell does not undo the effect of @option{--pure}.}; passing @option{--container} goes one step further by spawning a @dfn{container} isolated from the rest of the system:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5676 +#: guix-git/doc/guix.texi:5694 #, no-wrap msgid "guix shell --container emacs gcc-toolchain\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5684 +#: guix-git/doc/guix.texi:5702 msgid "The command above spawns an interactive shell in a container where nothing but @code{emacs}, @code{gcc-toolchain}, and their dependencies is available. The container lacks network access and shares no files other than the current working directory with the surrounding environment. This is useful to prevent access to system-wide resources such as @file{/usr/bin} on foreign distros." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5691 +#: guix-git/doc/guix.texi:5709 msgid "This @option{--container} option can also prove useful if you wish to run a security-sensitive application, such as a web browser, in an isolated environment. For example, the command below launches Ungoogled-Chromium in an isolated environment, this time sharing network access with the host and preserving its @code{DISPLAY} environment variable, but without even sharing the current directory:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5695 +#: guix-git/doc/guix.texi:5713 #, no-wrap msgid "" "guix shell --container --network --no-cwd ungoogled-chromium \\\n" @@ -12427,18 +12504,18 @@ msgid "" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:5697 guix-git/doc/guix.texi:6008 +#: guix-git/doc/guix.texi:5715 guix-git/doc/guix.texi:6045 #, no-wrap msgid "GUIX_ENVIRONMENT" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5703 +#: guix-git/doc/guix.texi:5721 msgid "@command{guix shell} defines the @env{GUIX_ENVIRONMENT} variable in the shell it spawns; its value is the file name of the profile of this environment. This allows users to, say, define a specific prompt for development environments in their @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5709 guix-git/doc/guix.texi:6020 +#: guix-git/doc/guix.texi:5727 guix-git/doc/guix.texi:6057 #, no-wrap msgid "" "if [ -n \"$GUIX_ENVIRONMENT\" ]\n" @@ -12448,213 +12525,202 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5713 guix-git/doc/guix.texi:6024 +#: guix-git/doc/guix.texi:5731 guix-git/doc/guix.texi:6061 msgid "...@: or to browse the profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5716 guix-git/doc/guix.texi:6027 +#: guix-git/doc/guix.texi:5734 guix-git/doc/guix.texi:6064 #, no-wrap msgid "$ ls \"$GUIX_ENVIRONMENT/bin\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5719 guix-git/doc/guix.texi:6103 +#: guix-git/doc/guix.texi:5737 guix-git/doc/guix.texi:6140 msgid "The available options are summarized below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5721 guix-git/doc/guix.texi:6105 -#: guix-git/doc/guix.texi:11546 +#: guix-git/doc/guix.texi:5739 guix-git/doc/guix.texi:6142 +#: guix-git/doc/guix.texi:11860 #, no-wrap msgid "--check" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5726 +#: guix-git/doc/guix.texi:5744 msgid "Set up the environment and check whether the shell would clobber environment variables. It's a good idea to use this option the first time you run @command{guix shell} for an interactive session to make sure your setup is correct." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5730 +#: guix-git/doc/guix.texi:5748 msgid "For example, if the shell modifies the @env{PATH} environment variable, report it since you would get a different environment than what you asked for." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5738 +#: guix-git/doc/guix.texi:5756 msgid "Such problems usually indicate that the shell startup files are unexpectedly modifying those environment variables. For example, if you are using Bash, make sure that environment variables are set or modified in @file{~/.bash_profile} and @emph{not} in @file{~/.bashrc}---the former is sourced only by log-in shells. @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for details on Bash start-up files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5739 +#: guix-git/doc/guix.texi:5757 #, no-wrap msgid "--development" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5746 +#: guix-git/doc/guix.texi:5764 msgid "Cause @command{guix shell} to include in the environment the dependencies of the following package rather than the package itself. This can be combined with other packages. For instance, the command below starts an interactive shell containing the build-time dependencies of GNU@tie{}Guile, plus Autoconf, Automake, and Libtool:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5749 +#: guix-git/doc/guix.texi:5767 #, no-wrap msgid "guix shell -D guile autoconf automake libtool\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5751 guix-git/doc/guix.texi:6126 -#: guix-git/doc/guix.texi:6607 guix-git/doc/guix.texi:11421 -#: guix-git/doc/guix.texi:12494 guix-git/doc/guix.texi:12845 -#: guix-git/doc/guix.texi:13442 guix-git/doc/guix.texi:35243 -#: guix-git/doc/guix.texi:37713 +#: guix-git/doc/guix.texi:5769 guix-git/doc/guix.texi:6163 +#: guix-git/doc/guix.texi:6650 guix-git/doc/guix.texi:11735 +#: guix-git/doc/guix.texi:12809 guix-git/doc/guix.texi:13201 +#: guix-git/doc/guix.texi:13799 guix-git/doc/guix.texi:35687 +#: guix-git/doc/guix.texi:38192 #, no-wrap msgid "--expression=@var{expr}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5752 guix-git/doc/guix.texi:6127 -#: guix-git/doc/guix.texi:6608 guix-git/doc/guix.texi:11422 -#: guix-git/doc/guix.texi:12495 guix-git/doc/guix.texi:12846 -#: guix-git/doc/guix.texi:13443 guix-git/doc/guix.texi:35244 -#: guix-git/doc/guix.texi:37714 +#: guix-git/doc/guix.texi:5770 guix-git/doc/guix.texi:6164 +#: guix-git/doc/guix.texi:6651 guix-git/doc/guix.texi:11736 +#: guix-git/doc/guix.texi:12810 guix-git/doc/guix.texi:13202 +#: guix-git/doc/guix.texi:13800 guix-git/doc/guix.texi:35688 +#: guix-git/doc/guix.texi:38193 #, no-wrap msgid "-e @var{expr}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5755 guix-git/doc/guix.texi:6130 +#: guix-git/doc/guix.texi:5773 guix-git/doc/guix.texi:6167 msgid "Create an environment for the package or list of packages that @var{expr} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5757 guix-git/doc/guix.texi:6132 -#: guix-git/doc/guix.texi:12850 +#: guix-git/doc/guix.texi:5775 guix-git/doc/guix.texi:6169 +#: guix-git/doc/guix.texi:13206 msgid "For example, running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5760 +#: guix-git/doc/guix.texi:5778 #, no-wrap msgid "guix shell -D -e '(@@ (gnu packages maths) petsc-openmpi)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5764 guix-git/doc/guix.texi:6139 +#: guix-git/doc/guix.texi:5782 guix-git/doc/guix.texi:6176 msgid "starts a shell with the environment for this specific variant of the PETSc package." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5766 guix-git/doc/guix.texi:6141 +#: guix-git/doc/guix.texi:5784 guix-git/doc/guix.texi:6178 msgid "Running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5769 +#: guix-git/doc/guix.texi:5787 #, no-wrap msgid "guix shell -e '(@@ (gnu) %base-packages)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5772 guix-git/doc/guix.texi:6147 +#: guix-git/doc/guix.texi:5790 guix-git/doc/guix.texi:6184 msgid "starts a shell with all the base system packages available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5775 guix-git/doc/guix.texi:6150 +#: guix-git/doc/guix.texi:5793 guix-git/doc/guix.texi:6187 msgid "The above commands only use the default output of the given packages. To select other outputs, two element tuples can be specified:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5778 +#: guix-git/doc/guix.texi:5796 #, no-wrap msgid "guix shell -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5780 guix-git/doc/guix.texi:11395 +#: guix-git/doc/guix.texi:5798 guix-git/doc/guix.texi:11709 #, no-wrap msgid "--file=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5784 +#: guix-git/doc/guix.texi:5802 msgid "Create an environment containing the package or list of packages that the code within @var{file} evaluates to." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5790 guix-git/doc/guix.texi:6165 +#: guix-git/doc/guix.texi:5808 guix-git/doc/guix.texi:6202 #, no-wrap msgid "@verbatiminclude environment-gdb.scm\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5794 +#: guix-git/doc/guix.texi:5812 msgid "With the file above, you can enter a development environment for GDB by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5797 +#: guix-git/doc/guix.texi:5815 #, no-wrap msgid "guix shell -D -f gdb-devel.scm\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5804 guix-git/doc/guix.texi:6172 +#: guix-git/doc/guix.texi:5822 guix-git/doc/guix.texi:6209 msgid "Create an environment for the packages contained in the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5808 guix-git/doc/guix.texi:6176 +#: guix-git/doc/guix.texi:5826 guix-git/doc/guix.texi:6213 msgid "This is similar to the same-named option in @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) and uses the same manifest files." msgstr "" -#. type: item -#: guix-git/doc/guix.texi:5809 -#, no-wrap -msgid "--rebuild-cache" -msgstr "" - -#. type: table -#: guix-git/doc/guix.texi:5814 -msgid "When using @option{--manifest}, @option{--file}, or when invoked without arguments, @command{guix shell} caches the environment so that subsequent uses are instantaneous. The cache is invalidated anytime the file is modified." -msgstr "" - #. type: table -#: guix-git/doc/guix.texi:5819 -msgid "The @option{--rebuild-cache} forces the cached environment to be refreshed even if the file has not changed. This is useful if the @command{guix.scm} or @command{manifest.scm} has external dependencies, or if its behavior depends, say, on environment variables." +#: guix-git/doc/guix.texi:5832 guix-git/doc/guix.texi:6245 +msgid "Create an environment containing the packages installed in @var{profile}. Use @command{guix package} (@pxref{Invoking guix package}) to create and manage profiles." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5820 guix-git/doc/guix.texi:6203 +#: guix-git/doc/guix.texi:5833 guix-git/doc/guix.texi:6246 #, no-wrap msgid "--pure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5824 guix-git/doc/guix.texi:6207 +#: guix-git/doc/guix.texi:5837 guix-git/doc/guix.texi:6250 msgid "Unset existing environment variables when building the new environment, except those specified with @option{--preserve} (see below). This has the effect of creating an environment in which search paths only contain package inputs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5825 guix-git/doc/guix.texi:6208 +#: guix-git/doc/guix.texi:5838 guix-git/doc/guix.texi:6251 #, no-wrap msgid "--preserve=@var{regexp}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5826 guix-git/doc/guix.texi:6209 +#: guix-git/doc/guix.texi:5839 guix-git/doc/guix.texi:6252 #, no-wrap msgid "-E @var{regexp}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5831 guix-git/doc/guix.texi:6214 +#: guix-git/doc/guix.texi:5844 guix-git/doc/guix.texi:6257 msgid "When used alongside @option{--pure}, preserve the environment variables matching @var{regexp}---in other words, put them on a ``white list'' of environment variables that must be preserved. This option can be repeated several times." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5835 +#: guix-git/doc/guix.texi:5848 #, no-wrap msgid "" "guix shell --pure --preserve=^SLURM openmpi @dots{} \\\n" @@ -12662,116 +12728,116 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5841 guix-git/doc/guix.texi:6224 +#: guix-git/doc/guix.texi:5854 guix-git/doc/guix.texi:6267 msgid "This example runs @command{mpirun} in a context where the only environment variables defined are @env{PATH}, environment variables whose name starts with @samp{SLURM}, as well as the usual ``precious'' variables (@env{HOME}, @env{USER}, etc.)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5842 guix-git/doc/guix.texi:6225 +#: guix-git/doc/guix.texi:5855 guix-git/doc/guix.texi:6268 #, no-wrap msgid "--search-paths" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5845 guix-git/doc/guix.texi:6228 +#: guix-git/doc/guix.texi:5858 guix-git/doc/guix.texi:6271 msgid "Display the environment variable definitions that make up the environment." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5849 guix-git/doc/guix.texi:6232 +#: guix-git/doc/guix.texi:5862 guix-git/doc/guix.texi:6275 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5850 guix-git/doc/guix.texi:6233 +#: guix-git/doc/guix.texi:5863 guix-git/doc/guix.texi:6276 #, no-wrap msgid "--container" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5851 guix-git/doc/guix.texi:6234 +#: guix-git/doc/guix.texi:5864 guix-git/doc/guix.texi:6277 #, no-wrap msgid "-C" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5852 guix-git/doc/guix.texi:6069 -#: guix-git/doc/guix.texi:6235 guix-git/doc/guix.texi:13998 -#: guix-git/doc/guix.texi:35211 +#: guix-git/doc/guix.texi:5865 guix-git/doc/guix.texi:6106 +#: guix-git/doc/guix.texi:6278 guix-git/doc/guix.texi:14355 +#: guix-git/doc/guix.texi:35655 #, no-wrap msgid "container" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5858 guix-git/doc/guix.texi:6241 +#: guix-git/doc/guix.texi:5871 guix-git/doc/guix.texi:6284 msgid "Run @var{command} within an isolated container. The current working directory outside the container is mapped inside the container. Additionally, unless overridden with @option{--user}, a dummy home directory is created that matches the current user's home directory, and @file{/etc/passwd} is configured accordingly." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5862 guix-git/doc/guix.texi:6245 +#: guix-git/doc/guix.texi:5875 guix-git/doc/guix.texi:6288 msgid "The spawned process runs as the current user outside the container. Inside the container, it has the same UID and GID as the current user, unless @option{--user} is passed (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5863 guix-git/doc/guix.texi:6246 -#: guix-git/doc/guix.texi:35303 +#: guix-git/doc/guix.texi:5876 guix-git/doc/guix.texi:6289 +#: guix-git/doc/guix.texi:35747 #, no-wrap msgid "--network" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5868 guix-git/doc/guix.texi:6251 +#: guix-git/doc/guix.texi:5881 guix-git/doc/guix.texi:6294 msgid "For containers, share the network namespace with the host system. Containers created without this flag only have access to the loopback device." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5869 guix-git/doc/guix.texi:6252 +#: guix-git/doc/guix.texi:5882 guix-git/doc/guix.texi:6295 #, no-wrap msgid "--link-profile" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5870 guix-git/doc/guix.texi:6253 +#: guix-git/doc/guix.texi:5883 guix-git/doc/guix.texi:6296 #, no-wrap msgid "-P" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5878 +#: guix-git/doc/guix.texi:5891 msgid "For containers, link the environment profile to @file{~/.guix-profile} within the container and set @code{GUIX_ENVIRONMENT} to that. This is equivalent to making @file{~/.guix-profile} a symlink to the actual profile within the container. Linking will fail and abort the environment if the directory already exists, which will certainly be the case if @command{guix shell} was invoked in the user's home directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5884 guix-git/doc/guix.texi:6267 +#: guix-git/doc/guix.texi:5897 guix-git/doc/guix.texi:6310 msgid "Certain packages are configured to look in @file{~/.guix-profile} for configuration files and data;@footnote{For example, the @code{fontconfig} package inspects @file{~/.guix-profile/share/fonts} for additional fonts.} @option{--link-profile} allows these programs to behave as expected within the environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5885 guix-git/doc/guix.texi:6268 -#: guix-git/doc/guix.texi:13575 +#: guix-git/doc/guix.texi:5898 guix-git/doc/guix.texi:6311 +#: guix-git/doc/guix.texi:13932 #, no-wrap msgid "--user=@var{user}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5886 guix-git/doc/guix.texi:6269 -#: guix-git/doc/guix.texi:13576 +#: guix-git/doc/guix.texi:5899 guix-git/doc/guix.texi:6312 +#: guix-git/doc/guix.texi:13933 #, no-wrap msgid "-u @var{user}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5893 guix-git/doc/guix.texi:6276 +#: guix-git/doc/guix.texi:5906 guix-git/doc/guix.texi:6319 msgid "For containers, use the username @var{user} in place of the current user. The generated @file{/etc/passwd} entry within the container will contain the name @var{user}, the home directory will be @file{/home/@var{user}}, and no user GECOS data will be copied. Furthermore, the UID and GID inside the container are 1000. @var{user} need not exist on the system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5898 guix-git/doc/guix.texi:6281 +#: guix-git/doc/guix.texi:5911 guix-git/doc/guix.texi:6324 msgid "Additionally, any shared or exposed path (see @option{--share} and @option{--expose} respectively) whose target is within the current user's home directory will be remapped relative to @file{/home/USER}; this includes the automatic mapping of the current working directory." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5905 +#: guix-git/doc/guix.texi:5918 #, no-wrap msgid "" "# will expose paths as /home/foo/wd, /home/foo/test, and /home/foo/target\n" @@ -12782,229 +12848,267 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5910 guix-git/doc/guix.texi:6293 +#: guix-git/doc/guix.texi:5923 guix-git/doc/guix.texi:6336 msgid "While this will limit the leaking of user identity through home paths and each of the user fields, this is only one useful component of a broader privacy/anonymity solution---not one in and of itself." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5911 guix-git/doc/guix.texi:6294 +#: guix-git/doc/guix.texi:5924 guix-git/doc/guix.texi:6337 #, no-wrap msgid "--no-cwd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5918 guix-git/doc/guix.texi:6301 +#: guix-git/doc/guix.texi:5931 guix-git/doc/guix.texi:6344 msgid "For containers, the default behavior is to share the current working directory with the isolated container and immediately change to that directory within the container. If this is undesirable, @option{--no-cwd} will cause the current working directory to @emph{not} be automatically shared and will change to the user's home directory within the container instead. See also @option{--user}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5919 guix-git/doc/guix.texi:6302 +#: guix-git/doc/guix.texi:5932 guix-git/doc/guix.texi:6345 #, no-wrap msgid "--expose=@var{source}[=@var{target}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5920 guix-git/doc/guix.texi:6303 +#: guix-git/doc/guix.texi:5933 guix-git/doc/guix.texi:6346 #, no-wrap msgid "--share=@var{source}[=@var{target}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5926 guix-git/doc/guix.texi:6309 +#: guix-git/doc/guix.texi:5939 guix-git/doc/guix.texi:6352 msgid "For containers, @option{--expose} (resp. @option{--share}) exposes the file system @var{source} from the host system as the read-only (resp. writable) file system @var{target} within the container. If @var{target} is not specified, @var{source} is used as the target mount point in the container." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5930 guix-git/doc/guix.texi:6313 +#: guix-git/doc/guix.texi:5943 guix-git/doc/guix.texi:6356 msgid "The example below spawns a Guile REPL in a container in which the user's home directory is accessible read-only via the @file{/exchange} directory:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5933 +#: guix-git/doc/guix.texi:5946 #, no-wrap msgid "guix shell --container --expose=$HOME=/exchange guile -- guile\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5935 guix-git/doc/guix.texi:6110 -#: guix-git/doc/guix.texi:6675 guix-git/doc/guix.texi:11575 -#: guix-git/doc/guix.texi:35308 +#: guix-git/doc/guix.texi:5948 +#, no-wrap +msgid "--rebuild-cache" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:5949 +#, no-wrap +msgid "caching, of profiles" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:5950 +#, no-wrap +msgid "caching, in @command{guix shell}" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:5956 +msgid "In most cases, @command{guix shell} caches the environment so that subsequent uses are instantaneous. Least-recently used cache entries are periodically removed. The cache is also invalidated, when using @option{--file} or @option{--manifest}, anytime the corresponding file is modified." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:5962 +msgid "The @option{--rebuild-cache} forces the cached environment to be refreshed. This is useful when using @option{--file} or @option{--manifest} and the @command{guix.scm} or @command{manifest.scm} file has external dependencies, or if its behavior depends, say, on environment variables." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:5963 guix-git/doc/guix.texi:6147 +#: guix-git/doc/guix.texi:6718 guix-git/doc/guix.texi:11889 +#: guix-git/doc/guix.texi:35752 #, no-wrap msgid "--root=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5936 guix-git/doc/guix.texi:6111 -#: guix-git/doc/guix.texi:6676 guix-git/doc/guix.texi:11576 -#: guix-git/doc/guix.texi:35309 +#: guix-git/doc/guix.texi:5964 guix-git/doc/guix.texi:6148 +#: guix-git/doc/guix.texi:6719 guix-git/doc/guix.texi:11890 +#: guix-git/doc/guix.texi:35753 #, no-wrap msgid "-r @var{file}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5937 guix-git/doc/guix.texi:6112 +#: guix-git/doc/guix.texi:5965 guix-git/doc/guix.texi:6149 #, no-wrap msgid "persistent environment" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5938 guix-git/doc/guix.texi:6113 +#: guix-git/doc/guix.texi:5966 guix-git/doc/guix.texi:6150 #, no-wrap msgid "garbage collector root, for environments" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5941 guix-git/doc/guix.texi:6116 +#: guix-git/doc/guix.texi:5969 guix-git/doc/guix.texi:6153 msgid "Make @var{file} a symlink to the profile for this environment, and register it as a garbage collector root." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5944 guix-git/doc/guix.texi:6119 +#: guix-git/doc/guix.texi:5972 guix-git/doc/guix.texi:6156 msgid "This is useful if you want to protect your environment from garbage collection, to make it ``persistent''." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5950 -msgid "When this option is omitted, the environment is protected from garbage collection only for the duration of the @command{guix shell} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages. @xref{Invoking guix gc}, for more on GC roots." +#: guix-git/doc/guix.texi:5978 +msgid "When this option is omitted, @command{guix shell} caches profiles so that subsequent uses of the same environment are instantaneous---this is comparable to using @option{--root} except that @command{guix shell} takes care of periodically removing the least-recently used garbage collector roots." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:5985 +msgid "In some cases, @command{guix shell} does not cache profiles---e.g., if transformation options such as @option{--with-latest} are used. In those cases, the environment is protected from garbage collection only for the duration of the @command{guix shell} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:5987 +msgid "@xref{Invoking guix gc}, for more on GC roots." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5955 +#: guix-git/doc/guix.texi:5992 msgid "@command{guix shell} also supports all of the common build options that @command{guix build} supports (@pxref{Common Build Options}) as well as package transformation options (@pxref{Package Transformation Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:5957 +#: guix-git/doc/guix.texi:5994 #, no-wrap msgid "Invoking @command{guix environment}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5961 +#: guix-git/doc/guix.texi:5998 msgid "The purpose of @command{guix environment} is to assist in creating development environments." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5962 +#: guix-git/doc/guix.texi:5999 #, no-wrap msgid "Deprecation warning" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5966 +#: guix-git/doc/guix.texi:6003 msgid "The @command{guix environment} command is deprecated in favor of @command{guix shell}, which performs similar functions but is more convenient to use. @xref{Invoking guix shell}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5971 +#: guix-git/doc/guix.texi:6008 msgid "Being deprecated, @command{guix environment} is slated for eventual removal, but the Guix project is committed to keeping it until May 1st, 2023. Please get in touch with us at @email{guix-devel@@gnu.org} if you would like to discuss it." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5977 +#: guix-git/doc/guix.texi:6014 #, no-wrap msgid "guix environment @var{options} @var{package}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5981 +#: guix-git/doc/guix.texi:6018 msgid "The following example spawns a new shell set up for the development of GNU@tie{}Guile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5984 +#: guix-git/doc/guix.texi:6021 #, no-wrap msgid "guix environment guile\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6001 +#: guix-git/doc/guix.texi:6038 msgid "If the needed dependencies are not built yet, @command{guix environment} automatically builds them. The environment of the new shell is an augmented version of the environment that @command{guix environment} was run in. It contains the necessary search paths for building the given package added to the existing environment variables. To create a ``pure'' environment, in which the original environment variables have been unset, use the @option{--pure} option@footnote{Users sometimes wrongfully augment environment variables such as @env{PATH} in their @file{~/.bashrc} file. As a consequence, when @command{guix environment} launches it, Bash may read @file{~/.bashrc}, thereby introducing ``impurities'' in these environment variables. It is an error to define such environment variables in @file{.bashrc}; instead, they should be defined in @file{.bash_profile}, which is sourced only by log-in shells. @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for details on Bash start-up files.}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6007 +#: guix-git/doc/guix.texi:6044 msgid "Exiting from a Guix environment is the same as exiting from the shell, and will place the user back in the old environment before @command{guix environment} was invoked. The next garbage collection (@pxref{Invoking guix gc}) will clean up packages that were installed from within the environment and are no longer used outside of it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6014 +#: guix-git/doc/guix.texi:6051 msgid "@command{guix environment} defines the @env{GUIX_ENVIRONMENT} variable in the shell it spawns; its value is the file name of the profile of this environment. This allows users to, say, define a specific prompt for development environments in their @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6033 +#: guix-git/doc/guix.texi:6070 msgid "Additionally, more than one package may be specified, in which case the union of the inputs for the given packages are used. For example, the command below spawns a shell where all of the dependencies of both Guile and Emacs are available:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6036 +#: guix-git/doc/guix.texi:6073 #, no-wrap msgid "guix environment guile emacs\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6041 +#: guix-git/doc/guix.texi:6078 msgid "Sometimes an interactive shell session is not desired. An arbitrary command may be invoked by placing the @code{--} token to separate the command from the rest of the arguments:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6044 +#: guix-git/doc/guix.texi:6081 #, no-wrap msgid "guix environment guile -- make -j4\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6050 +#: guix-git/doc/guix.texi:6087 msgid "In other situations, it is more convenient to specify the list of packages needed in the environment. For example, the following command runs @command{python} from an environment containing Python@tie{}3 and NumPy:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6053 +#: guix-git/doc/guix.texi:6090 #, no-wrap msgid "guix environment --ad-hoc python-numpy python -- python3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6064 +#: guix-git/doc/guix.texi:6101 msgid "Furthermore, one might want the dependencies of a package and also some additional packages that are not build-time or runtime dependencies, but are useful when developing nonetheless. Because of this, the @option{--ad-hoc} flag is positional. Packages appearing before @option{--ad-hoc} are interpreted as packages whose dependencies will be added to the environment. Packages appearing after are interpreted as packages that will be added to the environment directly. For example, the following command creates a Guix development environment that additionally includes Git and strace:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6067 +#: guix-git/doc/guix.texi:6104 #, no-wrap msgid "guix environment --pure guix --ad-hoc git strace\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6077 +#: guix-git/doc/guix.texi:6114 msgid "Sometimes it is desirable to isolate the environment as much as possible, for maximal purity and reproducibility. In particular, when using Guix on a host distro that is not Guix System, it is desirable to prevent access to @file{/usr/bin} and other system-wide resources from the development environment. For example, the following command spawns a Guile REPL in a ``container'' where only the store and the current working directory are mounted:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6080 +#: guix-git/doc/guix.texi:6117 #, no-wrap msgid "guix environment --ad-hoc --container guile -- guile\n" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6084 +#: guix-git/doc/guix.texi:6121 msgid "The @option{--container} option requires Linux-libre 3.19 or newer." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6086 +#: guix-git/doc/guix.texi:6123 #, no-wrap msgid "certificates" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6093 +#: guix-git/doc/guix.texi:6130 msgid "Another typical use case for containers is to run security-sensitive applications such as a web browser. To run Eolie, we must expose and share some files and directories; we include @code{nss-certs} and expose @file{/etc/ssl/certs/} for HTTPS authentication; finally we preserve the @env{DISPLAY} environment variable since containerized graphical applications won't display without it." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6100 +#: guix-git/doc/guix.texi:6137 #, no-wrap msgid "" "guix environment --preserve='^DISPLAY$' --container --network \\\n" @@ -13015,89 +13119,89 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6109 +#: guix-git/doc/guix.texi:6146 msgid "Set up the environment and check whether the shell would clobber environment variables. @xref{Invoking guix shell, @option{--check}}, for more info." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6125 +#: guix-git/doc/guix.texi:6162 msgid "When this option is omitted, the environment is protected from garbage collection only for the duration of the @command{guix environment} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages. @xref{Invoking guix gc}, for more on GC roots." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6135 +#: guix-git/doc/guix.texi:6172 #, no-wrap msgid "guix environment -e '(@@ (gnu packages maths) petsc-openmpi)'\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6144 +#: guix-git/doc/guix.texi:6181 #, no-wrap msgid "guix environment --ad-hoc -e '(@@ (gnu) %base-packages)'\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6153 +#: guix-git/doc/guix.texi:6190 #, no-wrap msgid "guix environment --ad-hoc -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6155 +#: guix-git/doc/guix.texi:6192 #, no-wrap msgid "--load=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6156 +#: guix-git/doc/guix.texi:6193 #, no-wrap msgid "-l @var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6159 +#: guix-git/doc/guix.texi:6196 msgid "Create an environment for the package or list of packages that the code within @var{file} evaluates to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6177 +#: guix-git/doc/guix.texi:6214 #, no-wrap msgid "--ad-hoc" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6182 +#: guix-git/doc/guix.texi:6219 msgid "Include all specified packages in the resulting environment, as if an @i{ad hoc} package were defined with them as inputs. This option is useful for quickly creating an environment without having to write a package expression to contain the desired inputs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6184 +#: guix-git/doc/guix.texi:6221 msgid "For instance, the command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6187 +#: guix-git/doc/guix.texi:6224 #, no-wrap msgid "guix environment --ad-hoc guile guile-sdl -- guile\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6191 +#: guix-git/doc/guix.texi:6228 msgid "runs @command{guile} in an environment where Guile and Guile-SDL are available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6196 +#: guix-git/doc/guix.texi:6233 msgid "Note that this example implicitly asks for the default output of @code{guile} and @code{guile-sdl}, but it is possible to ask for a specific output---e.g., @code{glib:bin} asks for the @code{bin} output of @code{glib} (@pxref{Packages with Multiple Outputs})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6202 +#: guix-git/doc/guix.texi:6239 msgid "This option may be composed with the default behavior of @command{guix environment}. Packages appearing before @option{--ad-hoc} are interpreted as packages whose dependencies will be added to the environment, the default behavior. Packages appearing after are interpreted as packages that will be added to the environment directly." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6218 +#: guix-git/doc/guix.texi:6261 #, no-wrap msgid "" "guix environment --pure --preserve=^SLURM --ad-hoc openmpi @dots{} \\\n" @@ -13105,12 +13209,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6261 +#: guix-git/doc/guix.texi:6304 msgid "For containers, link the environment profile to @file{~/.guix-profile} within the container and set @code{GUIX_ENVIRONMENT} to that. This is equivalent to making @file{~/.guix-profile} a symlink to the actual profile within the container. Linking will fail and abort the environment if the directory already exists, which will certainly be the case if @command{guix environment} was invoked in the user's home directory." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6288 +#: guix-git/doc/guix.texi:6331 #, no-wrap msgid "" "# will expose paths as /home/foo/wd, /home/foo/test, and /home/foo/target\n" @@ -13121,68 +13225,68 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6316 +#: guix-git/doc/guix.texi:6359 #, no-wrap msgid "guix environment --container --expose=$HOME=/exchange --ad-hoc guile -- guile\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6324 +#: guix-git/doc/guix.texi:6367 msgid "@command{guix environment} also supports all of the common build options that @command{guix build} supports (@pxref{Common Build Options}) as well as package transformation options (@pxref{Package Transformation Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:6326 +#: guix-git/doc/guix.texi:6369 #, no-wrap msgid "Invoking @command{guix pack}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6332 +#: guix-git/doc/guix.texi:6375 msgid "Occasionally you want to pass software to people who are not (yet!) lucky enough to be using Guix. You'd tell them to run @command{guix package -i @var{something}}, but that's not possible in this case. This is where @command{guix pack} comes in." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6337 +#: guix-git/doc/guix.texi:6380 msgid "If you are looking for ways to exchange binaries among machines that already run Guix, @pxref{Invoking guix copy}, @ref{Invoking guix publish}, and @ref{Invoking guix archive}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6339 +#: guix-git/doc/guix.texi:6382 #, no-wrap msgid "pack" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6340 +#: guix-git/doc/guix.texi:6383 #, no-wrap msgid "bundle" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6341 +#: guix-git/doc/guix.texi:6384 #, no-wrap msgid "application bundle" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6342 +#: guix-git/doc/guix.texi:6385 #, no-wrap msgid "software bundle" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6351 +#: guix-git/doc/guix.texi:6394 msgid "The @command{guix pack} command creates a shrink-wrapped @dfn{pack} or @dfn{software bundle}: it creates a tarball or some other archive containing the binaries of the software you're interested in, and all its dependencies. The resulting archive can be used on any machine that does not have Guix, and people can run the exact same binaries as those you have with Guix. The pack itself is created in a bit-reproducible fashion, so anyone can verify that it really contains the build results that you pretend to be shipping." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6354 +#: guix-git/doc/guix.texi:6397 msgid "For example, to create a bundle containing Guile, Emacs, Geiser, and all their dependencies, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6359 +#: guix-git/doc/guix.texi:6402 #, no-wrap msgid "" "$ guix pack guile emacs emacs-geiser\n" @@ -13191,61 +13295,61 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6367 +#: guix-git/doc/guix.texi:6410 msgid "The result here is a tarball containing a @file{/gnu/store} directory with all the relevant packages. The resulting tarball contains a @dfn{profile} with the three packages of interest; the profile is the same as would be created by @command{guix package -i}. It is this mechanism that is used to create Guix's own standalone binary tarball (@pxref{Binary Installation})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6372 +#: guix-git/doc/guix.texi:6415 msgid "Users of this pack would have to run @file{/gnu/store/@dots{}-profile/bin/guile} to run Guile, which you may find inconvenient. To work around it, you can create, say, a @file{/opt/gnu/bin} symlink to the profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6375 +#: guix-git/doc/guix.texi:6418 #, no-wrap msgid "guix pack -S /opt/gnu/bin=bin guile emacs emacs-geiser\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6379 +#: guix-git/doc/guix.texi:6422 msgid "That way, users can happily type @file{/opt/gnu/bin/guile} and enjoy." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6380 +#: guix-git/doc/guix.texi:6423 #, no-wrap msgid "relocatable binaries, with @command{guix pack}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6388 +#: guix-git/doc/guix.texi:6431 msgid "What if the recipient of your pack does not have root privileges on their machine, and thus cannot unpack it in the root file system? In that case, you will want to use the @option{--relocatable} option (see below). This option produces @dfn{relocatable binaries}, meaning they they can be placed anywhere in the file system hierarchy: in the example above, users can unpack your tarball in their home directory and directly run @file{./opt/gnu/bin/guile}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6389 +#: guix-git/doc/guix.texi:6432 #, no-wrap msgid "Docker, build an image with guix pack" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6392 +#: guix-git/doc/guix.texi:6435 msgid "Alternatively, you can produce a pack in the Docker image format using the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6395 +#: guix-git/doc/guix.texi:6438 #, no-wrap msgid "guix pack -f docker -S /bin=bin guile guile-readline\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6400 +#: guix-git/doc/guix.texi:6443 msgid "The result is a tarball that can be passed to the @command{docker load} command, followed by @code{docker run}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6404 +#: guix-git/doc/guix.texi:6447 #, no-wrap msgid "" "docker load < @var{file}\n" @@ -13253,169 +13357,169 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6411 +#: guix-git/doc/guix.texi:6454 msgid "where @var{file} is the image returned by @var{guix pack}, and @code{guile-guile-readline} is its ``image tag''. See the @uref{https://docs.docker.com/engine/reference/commandline/load/, Docker documentation} for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6412 +#: guix-git/doc/guix.texi:6455 #, no-wrap msgid "Singularity, build an image with guix pack" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6413 +#: guix-git/doc/guix.texi:6456 #, no-wrap msgid "SquashFS, build an image with guix pack" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6416 +#: guix-git/doc/guix.texi:6459 msgid "Yet another option is to produce a SquashFS image with the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6419 +#: guix-git/doc/guix.texi:6462 #, no-wrap msgid "guix pack -f squashfs bash guile emacs emacs-geiser\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6427 +#: guix-git/doc/guix.texi:6470 msgid "The result is a SquashFS file system image that can either be mounted or directly be used as a file system container image with the @uref{https://www.sylabs.io/docs/, Singularity container execution environment}, using commands like @command{singularity shell} or @command{singularity exec}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6429 +#: guix-git/doc/guix.texi:6472 msgid "Several command-line options allow you to customize your pack:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6434 +#: guix-git/doc/guix.texi:6477 msgid "Produce a pack in the given @var{format}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6436 +#: guix-git/doc/guix.texi:6479 msgid "The available formats are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6438 +#: guix-git/doc/guix.texi:6481 #, no-wrap msgid "tarball" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6441 +#: guix-git/doc/guix.texi:6484 msgid "This is the default format. It produces a tarball containing all the specified binaries and symlinks." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6442 +#: guix-git/doc/guix.texi:6485 #, no-wrap msgid "docker" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6448 +#: guix-git/doc/guix.texi:6491 msgid "This produces a tarball that follows the @uref{https://github.com/docker/docker/blob/master/image/spec/v1.2.md, Docker Image Specification}. The ``repository name'' as it appears in the output of the @command{docker images} command is computed from package names passed on the command line or in the manifest file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6449 +#: guix-git/doc/guix.texi:6492 #, no-wrap msgid "squashfs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6453 +#: guix-git/doc/guix.texi:6496 msgid "This produces a SquashFS image containing all the specified binaries and symlinks, as well as empty mount points for virtual file systems like procfs." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6459 +#: guix-git/doc/guix.texi:6502 msgid "Singularity @emph{requires} you to provide @file{/bin/sh} in the image. For that reason, @command{guix pack -f squashfs} always implies @code{-S /bin=bin}. Thus, your @command{guix pack} invocation must always start with something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6462 +#: guix-git/doc/guix.texi:6505 #, no-wrap msgid "guix pack -f squashfs bash @dots{}\n" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6467 +#: guix-git/doc/guix.texi:6510 msgid "If you forget the @code{bash} (or similar) package, @command{singularity run} and @command{singularity exec} will fail with an unhelpful ``no such file or directory'' message." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6469 +#: guix-git/doc/guix.texi:6512 #, no-wrap msgid "deb" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6477 +#: guix-git/doc/guix.texi:6520 msgid "This produces a Debian archive (a package with the @samp{.deb} file extension) containing all the specified binaries and symbolic links, that can be installed on top of any dpkg-based GNU(/Linux) distribution. Advanced options can be revealed via the @option{--help-deb-format} option. They allow embedding control files for more fine-grained control, such as activating specific triggers or providing a maintainer configure script to run arbitrary setup code upon installation." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6480 +#: guix-git/doc/guix.texi:6523 #, no-wrap msgid "guix pack -f deb -C xz -S /usr/bin/hello=bin/hello hello\n" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6487 +#: guix-git/doc/guix.texi:6530 msgid "Because archives produced with @command{guix pack} contain a collection of store items and because each @command{dpkg} package must not have conflicting files, in practice that means you likely won't be able to install more than one such archive on a given system." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6495 +#: guix-git/doc/guix.texi:6538 msgid "@command{dpkg} will assume ownership of any files contained in the pack that it does @emph{not} know about. It is unwise to install Guix-produced @samp{.deb} files on a system where @file{/gnu/store} is shared by other software, such as a Guix installation or other, non-deb packs." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6499 +#: guix-git/doc/guix.texi:6542 #, no-wrap msgid "relocatable binaries" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6500 +#: guix-git/doc/guix.texi:6543 #, no-wrap msgid "--relocatable" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6504 +#: guix-git/doc/guix.texi:6547 msgid "Produce @dfn{relocatable binaries}---i.e., binaries that can be placed anywhere in the file system hierarchy and run from there." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6512 +#: guix-git/doc/guix.texi:6555 msgid "When this option is passed once, the resulting binaries require support for @dfn{user namespaces} in the kernel Linux; when passed @emph{twice}@footnote{Here's a trick to memorize it: @code{-RR}, which adds PRoot support, can be thought of as the abbreviation of ``Really Relocatable''. Neat, isn't it?}, relocatable binaries fall to back to other techniques if user namespaces are unavailable, and essentially work anywhere---see below for the implications." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6514 +#: guix-git/doc/guix.texi:6557 msgid "For example, if you create a pack containing Bash with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6517 +#: guix-git/doc/guix.texi:6560 #, no-wrap msgid "guix pack -RR -S /mybin=bin bash\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6522 +#: guix-git/doc/guix.texi:6565 msgid "...@: you can copy that pack to a machine that lacks Guix, and from your home directory as a normal user, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6526 +#: guix-git/doc/guix.texi:6569 #, no-wrap msgid "" "tar xf pack.tar.gz\n" @@ -13423,121 +13527,121 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6534 +#: guix-git/doc/guix.texi:6577 msgid "In that shell, if you type @code{ls /gnu/store}, you'll notice that @file{/gnu/store} shows up and contains all the dependencies of @code{bash}, even though the machine actually lacks @file{/gnu/store} altogether! That is probably the simplest way to deploy Guix-built software on a non-Guix machine." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6540 +#: guix-git/doc/guix.texi:6583 msgid "By default, relocatable binaries rely on the @dfn{user namespace} feature of the kernel Linux, which allows unprivileged users to mount or change root. Old versions of Linux did not support it, and some GNU/Linux distributions turn it off." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6546 +#: guix-git/doc/guix.texi:6589 msgid "To produce relocatable binaries that work even in the absence of user namespaces, pass @option{--relocatable} or @option{-R} @emph{twice}. In that case, binaries will try user namespace support and fall back to another @dfn{execution engine} if user namespaces are not supported. The following execution engines are supported:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6548 guix-git/doc/guix.texi:17371 +#: guix-git/doc/guix.texi:6591 guix-git/doc/guix.texi:17733 #, no-wrap msgid "default" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6551 +#: guix-git/doc/guix.texi:6594 msgid "Try user namespaces and fall back to PRoot if user namespaces are not supported (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6552 +#: guix-git/doc/guix.texi:6595 #, no-wrap msgid "performance" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6555 +#: guix-git/doc/guix.texi:6598 msgid "Try user namespaces and fall back to Fakechroot if user namespaces are not supported (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6556 +#: guix-git/doc/guix.texi:6599 #, no-wrap msgid "userns" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6559 +#: guix-git/doc/guix.texi:6602 msgid "Run the program through user namespaces and abort if they are not supported." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6560 +#: guix-git/doc/guix.texi:6603 #, no-wrap msgid "proot" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6567 +#: guix-git/doc/guix.texi:6610 msgid "Run through PRoot. The @uref{https://proot-me.github.io/, PRoot} program provides the necessary support for file system virtualization. It achieves that by using the @code{ptrace} system call on the running program. This approach has the advantage to work without requiring special kernel support, but it incurs run-time overhead every time a system call is made." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6568 +#: guix-git/doc/guix.texi:6611 #, no-wrap msgid "fakechroot" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6576 +#: guix-git/doc/guix.texi:6619 msgid "Run through Fakechroot. @uref{https://github.com/dex4er/fakechroot/, Fakechroot} virtualizes file system accesses by intercepting calls to C library functions such as @code{open}, @code{stat}, @code{exec}, and so on. Unlike PRoot, it incurs very little overhead. However, it does not always work: for example, some file system accesses made from within the C library are not intercepted, and file system accesses made @i{via} direct syscalls are not intercepted either, leading to erratic behavior." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:6578 +#: guix-git/doc/guix.texi:6621 #, no-wrap msgid "GUIX_EXECUTION_ENGINE" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6582 +#: guix-git/doc/guix.texi:6625 msgid "When running a wrapped program, you can explicitly request one of the execution engines listed above by setting the @env{GUIX_EXECUTION_ENGINE} environment variable accordingly." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6584 +#: guix-git/doc/guix.texi:6627 #, no-wrap msgid "entry point, for Docker images" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6585 +#: guix-git/doc/guix.texi:6628 #, no-wrap msgid "--entry-point=@var{command}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6590 +#: guix-git/doc/guix.texi:6633 msgid "Use @var{command} as the @dfn{entry point} of the resulting pack, if the pack format supports it---currently @code{docker} and @code{squashfs} (Singularity) support it. @var{command} must be relative to the profile contained in the pack." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6594 +#: guix-git/doc/guix.texi:6637 msgid "The entry point specifies the command that tools like @code{docker run} or @code{singularity run} automatically start by default. For example, you can do:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6597 +#: guix-git/doc/guix.texi:6640 #, no-wrap msgid "guix pack -f docker --entry-point=bin/guile guile\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6601 +#: guix-git/doc/guix.texi:6644 msgid "The resulting pack can easily be loaded and @code{docker run} with no extra arguments will spawn @code{bin/guile}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6605 +#: guix-git/doc/guix.texi:6648 #, no-wrap msgid "" "docker load -i pack.tar.gz\n" @@ -13545,398 +13649,398 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6610 guix-git/doc/guix.texi:12497 -#: guix-git/doc/guix.texi:13445 +#: guix-git/doc/guix.texi:6653 guix-git/doc/guix.texi:12812 +#: guix-git/doc/guix.texi:13802 msgid "Consider the package @var{expr} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6614 +#: guix-git/doc/guix.texi:6657 msgid "This has the same purpose as the same-named option in @command{guix build} (@pxref{Additional Build Options, @option{--expression} in @command{guix build}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6620 +#: guix-git/doc/guix.texi:6663 msgid "Use the packages contained in the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6628 +#: guix-git/doc/guix.texi:6671 msgid "This has a similar purpose as the same-named option in @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) and uses the same manifest files. It allows you to define a collection of packages once and use it both for creating profiles and for creating archives for use on machines that do not have Guix installed. Note that you can specify @emph{either} a manifest file @emph{or} a list of packages, but not both." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6634 guix-git/doc/guix.texi:11539 +#: guix-git/doc/guix.texi:6677 guix-git/doc/guix.texi:11853 #, no-wrap msgid "--target=@var{triplet}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6635 guix-git/doc/guix.texi:7080 -#: guix-git/doc/guix.texi:11540 +#: guix-git/doc/guix.texi:6678 guix-git/doc/guix.texi:7124 +#: guix-git/doc/guix.texi:11854 #, no-wrap msgid "cross-compilation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6639 +#: guix-git/doc/guix.texi:6682 msgid "Cross-build for @var{triplet}, which must be a valid GNU triplet, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying target triplets, GNU configuration triplets,, autoconf, Autoconf})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6640 +#: guix-git/doc/guix.texi:6683 #, no-wrap msgid "--compression=@var{tool}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6641 +#: guix-git/doc/guix.texi:6684 #, no-wrap msgid "-C @var{tool}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6645 +#: guix-git/doc/guix.texi:6688 msgid "Compress the resulting tarball using @var{tool}---one of @code{gzip}, @code{zstd}, @code{bzip2}, @code{xz}, @code{lzip}, or @code{none} for no compression." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6646 +#: guix-git/doc/guix.texi:6689 #, no-wrap msgid "--symlink=@var{spec}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6647 +#: guix-git/doc/guix.texi:6690 #, no-wrap msgid "-S @var{spec}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6650 +#: guix-git/doc/guix.texi:6693 msgid "Add the symlinks specified by @var{spec} to the pack. This option can appear several times." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6654 +#: guix-git/doc/guix.texi:6697 msgid "@var{spec} has the form @code{@var{source}=@var{target}}, where @var{source} is the symlink that will be created and @var{target} is the symlink target." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6657 +#: guix-git/doc/guix.texi:6700 msgid "For instance, @code{-S /opt/gnu/bin=bin} creates a @file{/opt/gnu/bin} symlink pointing to the @file{bin} sub-directory of the profile." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6658 guix-git/doc/guix.texi:35262 +#: guix-git/doc/guix.texi:6701 guix-git/doc/guix.texi:35706 #, no-wrap msgid "--save-provenance" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6662 +#: guix-git/doc/guix.texi:6705 msgid "Save provenance information for the packages passed on the command line. Provenance information includes the URL and commit of the channels in use (@pxref{Channels})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6668 +#: guix-git/doc/guix.texi:6711 msgid "Provenance information is saved in the @file{/gnu/store/@dots{}-profile/manifest} file in the pack, along with the usual package metadata---the name and version of each package, their propagated inputs, and so on. It is useful information to the recipient of the pack, who then knows how the pack was (supposedly) obtained." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6674 +#: guix-git/doc/guix.texi:6717 msgid "This option is not enabled by default because, like timestamps, provenance information contributes nothing to the build process. In other words, there is an infinity of channel URLs and commit IDs that can lead to the same pack. Recording such ``silent'' metadata in the output thus potentially breaks the source-to-binary bitwise reproducibility property." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6677 +#: guix-git/doc/guix.texi:6720 #, no-wrap msgid "garbage collector root, for packs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6680 +#: guix-git/doc/guix.texi:6723 msgid "Make @var{file} a symlink to the resulting pack, and register it as a garbage collector root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6681 +#: guix-git/doc/guix.texi:6724 #, no-wrap msgid "--localstatedir" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6682 +#: guix-git/doc/guix.texi:6725 #, no-wrap msgid "--profile-name=@var{name}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6687 +#: guix-git/doc/guix.texi:6730 msgid "Include the ``local state directory'', @file{/var/guix}, in the resulting pack, and notably the @file{/var/guix/profiles/per-user/root/@var{name}} profile---by default @var{name} is @code{guix-profile}, which corresponds to @file{~root/.guix-profile}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6693 +#: guix-git/doc/guix.texi:6736 msgid "@file{/var/guix} contains the store database (@pxref{The Store}) as well as garbage-collector roots (@pxref{Invoking guix gc}). Providing it in the pack means that the store is ``complete'' and manageable by Guix; not providing it pack means that the store is ``dead'': items cannot be added to it or removed from it after extraction of the pack." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6696 +#: guix-git/doc/guix.texi:6739 msgid "One use case for this is the Guix self-contained binary tarball (@pxref{Binary Installation})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6697 guix-git/doc/guix.texi:35256 +#: guix-git/doc/guix.texi:6740 guix-git/doc/guix.texi:35700 #, no-wrap msgid "--derivation" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6698 guix-git/doc/guix.texi:11571 -#: guix-git/doc/guix.texi:35257 +#: guix-git/doc/guix.texi:6741 guix-git/doc/guix.texi:11885 +#: guix-git/doc/guix.texi:35701 #, no-wrap msgid "-d" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6700 +#: guix-git/doc/guix.texi:6743 msgid "Print the name of the derivation that builds the pack." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6704 +#: guix-git/doc/guix.texi:6747 msgid "Use the bootstrap binaries to build the pack. This option is only useful to Guix developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6709 +#: guix-git/doc/guix.texi:6752 msgid "In addition, @command{guix pack} supports all the common build options (@pxref{Common Build Options}) and all the package transformation options (@pxref{Package Transformation Options})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6714 +#: guix-git/doc/guix.texi:6757 #, no-wrap msgid "GCC" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6715 +#: guix-git/doc/guix.texi:6758 #, no-wrap msgid "ld-wrapper" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6716 +#: guix-git/doc/guix.texi:6759 #, no-wrap msgid "linker wrapper" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6717 +#: guix-git/doc/guix.texi:6760 #, no-wrap msgid "toolchain, for C development" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6718 +#: guix-git/doc/guix.texi:6761 #, no-wrap msgid "toolchain, for Fortran development" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6725 +#: guix-git/doc/guix.texi:6768 msgid "If you need a complete toolchain for compiling and linking C or C++ source code, use the @code{gcc-toolchain} package. This package provides a complete GCC toolchain for C/C++ development, including GCC itself, the GNU C Library (headers and binaries, plus debugging symbols in the @code{debug} output), Binutils, and a linker wrapper." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6731 +#: guix-git/doc/guix.texi:6774 msgid "The wrapper's purpose is to inspect the @code{-L} and @code{-l} switches passed to the linker, add corresponding @code{-rpath} arguments, and invoke the actual linker with this new set of arguments. You can instruct the wrapper to refuse to link against libraries not in the store by setting the @env{GUIX_LD_WRAPPER_ALLOW_IMPURITIES} environment variable to @code{no}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6735 +#: guix-git/doc/guix.texi:6778 msgid "The package @code{gfortran-toolchain} provides a complete GCC toolchain for Fortran development. For other languages, please use @samp{guix search gcc toolchain} (@pxref{guix-search,, Invoking guix package})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:6738 +#: guix-git/doc/guix.texi:6781 #, no-wrap msgid "Invoking @command{guix git authenticate}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6746 +#: guix-git/doc/guix.texi:6789 msgid "The @command{guix git authenticate} command authenticates a Git checkout following the same rule as for channels (@pxref{channel-authentication, channel authentication}). That is, starting from a given commit, it ensures that all subsequent commits are signed by an OpenPGP key whose fingerprint appears in the @file{.guix-authorizations} file of its parent commit(s)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6751 +#: guix-git/doc/guix.texi:6794 msgid "You will find this command useful if you maintain a channel. But in fact, this authentication mechanism is useful in a broader context, so you might want to use it for Git repositories that have nothing to do with Guix." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6756 +#: guix-git/doc/guix.texi:6799 #, no-wrap msgid "guix git authenticate @var{commit} @var{signer} [@var{options}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6765 +#: guix-git/doc/guix.texi:6808 msgid "By default, this command authenticates the Git checkout in the current directory; it outputs nothing and exits with exit code zero on success and non-zero on failure. @var{commit} above denotes the first commit where authentication takes place, and @var{signer} is the OpenPGP fingerprint of public key used to sign @var{commit}. Together, they form a ``channel introduction'' (@pxref{channel-authentication, channel introduction}). The options below allow you to fine-tune the process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6767 +#: guix-git/doc/guix.texi:6810 #, no-wrap msgid "--repository=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6768 +#: guix-git/doc/guix.texi:6811 #, no-wrap msgid "-r @var{directory}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6771 +#: guix-git/doc/guix.texi:6814 msgid "Open the Git repository in @var{directory} instead of the current directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6772 +#: guix-git/doc/guix.texi:6815 #, no-wrap msgid "--keyring=@var{reference}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6773 +#: guix-git/doc/guix.texi:6816 #, no-wrap msgid "-k @var{reference}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6779 +#: guix-git/doc/guix.texi:6822 msgid "Load OpenPGP keyring from @var{reference}, the reference of a branch such as @code{origin/keyring} or @code{my-keyring}. The branch must contain OpenPGP public keys in @file{.key} files, either in binary form or ``ASCII-armored''. By default the keyring is loaded from the branch named @code{keyring}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6780 +#: guix-git/doc/guix.texi:6823 #, no-wrap msgid "--stats" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6782 +#: guix-git/doc/guix.texi:6825 msgid "Display commit signing statistics upon completion." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6783 +#: guix-git/doc/guix.texi:6826 #, no-wrap msgid "--cache-key=@var{key}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6787 +#: guix-git/doc/guix.texi:6830 msgid "Previously-authenticated commits are cached in a file under @file{~/.cache/guix/authentication}. This option forces the cache to be stored in file @var{key} in that directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6788 +#: guix-git/doc/guix.texi:6831 #, no-wrap msgid "--historical-authorizations=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6795 +#: guix-git/doc/guix.texi:6838 msgid "By default, any commit whose parent commit(s) lack the @file{.guix-authorizations} file is considered inauthentic. In contrast, this option considers the authorizations in @var{file} for any commit that lacks @file{.guix-authorizations}. The format of @var{file} is the same as that of @file{.guix-authorizations} (@pxref{channel-authorizations, @file{.guix-authorizations} format})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6808 +#: guix-git/doc/guix.texi:6851 msgid "GNU Guix provides several Scheme programming interfaces (APIs) to define, build, and query packages. The first interface allows users to write high-level package definitions. These definitions refer to familiar packaging concepts, such as the name and version of a package, its build system, and its dependencies. These definitions can then be turned into concrete build actions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6814 +#: guix-git/doc/guix.texi:6857 msgid "Build actions are performed by the Guix daemon, on behalf of users. In a standard setup, the daemon has write access to the store---the @file{/gnu/store} directory---whereas users do not. The recommended setup also has the daemon perform builds in chroots, under specific build users, to minimize interference with the rest of the system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6823 +#: guix-git/doc/guix.texi:6866 msgid "Lower-level APIs are available to interact with the daemon and the store. To instruct the daemon to perform a build action, users actually provide it with a @dfn{derivation}. A derivation is a low-level representation of the build actions to be taken, and the environment in which they should occur---derivations are to package definitions what assembly is to C programs. The term ``derivation'' comes from the fact that build results @emph{derive} from them." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6826 +#: guix-git/doc/guix.texi:6869 msgid "This chapter describes all these APIs in turn, starting from high-level package definitions." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:6883 msgid "Programming Guix in Guile" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6855 +#: guix-git/doc/guix.texi:6899 msgid "From a programming viewpoint, the package definitions of the GNU distribution are provided by Guile modules in the @code{(gnu packages @dots{})} name space@footnote{Note that packages under the @code{(gnu packages @dots{})} module name space are not necessarily ``GNU packages''. This module naming scheme follows the usual Guile module naming convention: @code{gnu} means that these modules are distributed as part of the GNU system, and @code{packages} identifies modules that define packages.} (@pxref{Modules, Guile modules,, guile, GNU Guile Reference Manual}). For instance, the @code{(gnu packages emacs)} module exports a variable named @code{emacs}, which is bound to a @code{} object (@pxref{Defining Packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6862 +#: guix-git/doc/guix.texi:6906 msgid "The @code{(gnu packages @dots{})} module name space is automatically scanned for packages by the command-line tools. For instance, when running @code{guix install emacs}, all the @code{(gnu packages @dots{})} modules are scanned until one that exports a package object whose name is @code{emacs} is found. This package search facility is implemented in the @code{(gnu packages)} module." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6864 +#: guix-git/doc/guix.texi:6908 #, no-wrap msgid "package module search path" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6873 +#: guix-git/doc/guix.texi:6917 msgid "Users can store package definitions in modules with different names---e.g., @code{(my-packages emacs)}@footnote{Note that the file name and module name must match. For instance, the @code{(my-packages emacs)} module must be stored in a @file{my-packages/emacs.scm} file relative to the load path specified with @option{--load-path} or @env{GUIX_PACKAGE_PATH}. @xref{Modules and the File System,,, guile, GNU Guile Reference Manual}, for details.}. There are two ways to make these package definitions visible to the user interfaces:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:6880 +#: guix-git/doc/guix.texi:6924 msgid "By adding the directory containing your package modules to the search path with the @code{-L} flag of @command{guix package} and other commands (@pxref{Common Build Options}), or by setting the @env{GUIX_PACKAGE_PATH} environment variable described below." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:6886 +#: guix-git/doc/guix.texi:6930 msgid "By defining a @dfn{channel} and configuring @command{guix pull} so that it pulls from it. A channel is essentially a Git repository containing package modules. @xref{Channels}, for more information on how to define and use channels." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6889 +#: guix-git/doc/guix.texi:6933 msgid "@env{GUIX_PACKAGE_PATH} works similarly to other search path variables:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:6890 +#: guix-git/doc/guix.texi:6934 #, no-wrap msgid "{Environment Variable} GUIX_PACKAGE_PATH" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:6894 +#: guix-git/doc/guix.texi:6938 msgid "This is a colon-separated list of directories to search for additional package modules. Directories listed in this variable take precedence over the own modules of the distribution." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6902 +#: guix-git/doc/guix.texi:6946 msgid "The distribution is fully @dfn{bootstrapped} and @dfn{self-contained}: each package is built based solely on other packages in the distribution. The root of this dependency graph is a small set of @dfn{bootstrap binaries}, provided by the @code{(gnu packages bootstrap)} module. For more information on bootstrapping, @pxref{Bootstrapping}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6910 +#: guix-git/doc/guix.texi:6954 msgid "The high-level interface to package definitions is implemented in the @code{(guix packages)} and @code{(guix build-system)} modules. As an example, the package definition, or @dfn{recipe}, for the GNU Hello package looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:6918 +#: guix-git/doc/guix.texi:6962 #, no-wrap msgid "" "(define-module (gnu packages hello)\n" @@ -13949,7 +14053,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:6937 +#: guix-git/doc/guix.texi:6981 #, no-wrap msgid "" "(define-public hello\n" @@ -13973,327 +14077,327 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6947 +#: guix-git/doc/guix.texi:6991 msgid "Without being a Scheme expert, the reader may have guessed the meaning of the various fields here. This expression binds the variable @code{hello} to a @code{} object, which is essentially a record (@pxref{SRFI-9, Scheme records,, guile, GNU Guile Reference Manual}). This package object can be inspected using procedures found in the @code{(guix packages)} module; for instance, @code{(package-name hello)} returns---surprise!---@code{\"hello\"}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6951 +#: guix-git/doc/guix.texi:6995 msgid "With luck, you may be able to import part or all of the definition of the package you are interested in from another repository, using the @code{guix import} command (@pxref{Invoking guix import})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6957 +#: guix-git/doc/guix.texi:7001 msgid "In the example above, @code{hello} is defined in a module of its own, @code{(gnu packages hello)}. Technically, this is not strictly necessary, but it is convenient to do so: all the packages defined in modules under @code{(gnu packages @dots{})} are automatically known to the command-line tools (@pxref{Package Modules})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6959 +#: guix-git/doc/guix.texi:7003 msgid "There are a few points worth noting in the above package definition:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6966 +#: guix-git/doc/guix.texi:7010 msgid "The @code{source} field of the package is an @code{} object (@pxref{origin Reference}, for the complete reference). Here, the @code{url-fetch} method from @code{(guix download)} is used, meaning that the source is a file to be downloaded over FTP or HTTP." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6969 +#: guix-git/doc/guix.texi:7013 msgid "The @code{mirror://gnu} prefix instructs @code{url-fetch} to use one of the GNU mirrors defined in @code{(guix download)}." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6976 +#: guix-git/doc/guix.texi:7020 msgid "The @code{sha256} field specifies the expected SHA256 hash of the file being downloaded. It is mandatory, and allows Guix to check the integrity of the file. The @code{(base32 @dots{})} form introduces the base32 representation of the hash. You can obtain this information with @code{guix download} (@pxref{Invoking guix download}) and @code{guix hash} (@pxref{Invoking guix hash})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6977 +#: guix-git/doc/guix.texi:7021 #, no-wrap msgid "patches" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6981 +#: guix-git/doc/guix.texi:7025 msgid "When needed, the @code{origin} form can also have a @code{patches} field listing patches to be applied, and a @code{snippet} field giving a Scheme expression to modify the source code." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6983 +#: guix-git/doc/guix.texi:7027 #, no-wrap msgid "GNU Build System" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6989 +#: guix-git/doc/guix.texi:7033 msgid "The @code{build-system} field specifies the procedure to build the package (@pxref{Build Systems}). Here, @code{gnu-build-system} represents the familiar GNU Build System, where packages may be configured, built, and installed with the usual @code{./configure && make && make check && make install} command sequence." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6993 +#: guix-git/doc/guix.texi:7037 msgid "When you start packaging non-trivial software, you may need tools to manipulate those build phases, manipulate files, and so on. @xref{Build Utilities}, for more on this." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6999 +#: guix-git/doc/guix.texi:7043 msgid "The @code{arguments} field specifies options for the build system (@pxref{Build Systems}). Here it is interpreted by @code{gnu-build-system} as a request run @file{configure} with the @option{--enable-silent-rules} flag." msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7000 guix-git/doc/guix.texi:7003 +#: guix-git/doc/guix.texi:7044 guix-git/doc/guix.texi:7047 #, no-wrap msgid "quote" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7001 +#: guix-git/doc/guix.texi:7045 #, no-wrap msgid "quoting" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7002 +#: guix-git/doc/guix.texi:7046 #, no-wrap msgid "'" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7004 +#: guix-git/doc/guix.texi:7048 #, no-wrap msgid "backquote (quasiquote)" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7005 +#: guix-git/doc/guix.texi:7049 #, no-wrap msgid "`" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7006 +#: guix-git/doc/guix.texi:7050 #, no-wrap msgid "quasiquote" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7007 +#: guix-git/doc/guix.texi:7051 #, no-wrap msgid "comma (unquote)" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7008 +#: guix-git/doc/guix.texi:7052 #, no-wrap msgid "," msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7009 +#: guix-git/doc/guix.texi:7053 #, no-wrap msgid "unquote" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7019 +#: guix-git/doc/guix.texi:7063 msgid "What about these quote (@code{'}) characters? They are Scheme syntax to introduce a literal list; @code{'} is synonymous with @code{quote}. Sometimes you'll also see @code{`} (a backquote, synonymous with @code{quasiquote}) and @code{,} (a comma, synonymous with @code{unquote}). @xref{Expression Syntax, quoting,, guile, GNU Guile Reference Manual}, for details. Here the value of the @code{arguments} field is a list of arguments passed to the build system down the road, as with @code{apply} (@pxref{Fly Evaluation, @code{apply},, guile, GNU Guile Reference Manual})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7025 +#: guix-git/doc/guix.texi:7069 msgid "The hash-colon (@code{#:}) sequence defines a Scheme @dfn{keyword} (@pxref{Keywords,,, guile, GNU Guile Reference Manual}), and @code{#:configure-flags} is a keyword used to pass a keyword argument to the build system (@pxref{Coding With Keywords,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7031 +#: guix-git/doc/guix.texi:7075 msgid "The @code{inputs} field specifies inputs to the build process---i.e., build-time or run-time dependencies of the package. Here, we add an input, a reference to the @code{gawk} variable; @code{gawk} is itself bound to a @code{} object." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7035 +#: guix-git/doc/guix.texi:7079 msgid "Note that GCC, Coreutils, Bash, and other essential tools do not need to be specified as inputs here. Instead, @code{gnu-build-system} takes care of ensuring that they are present (@pxref{Build Systems})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7039 +#: guix-git/doc/guix.texi:7083 msgid "However, any other dependencies need to be specified in the @code{inputs} field. Any dependency not specified here will simply be unavailable to the build process, possibly leading to a build failure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7042 +#: guix-git/doc/guix.texi:7086 msgid "@xref{package Reference}, for a full description of possible fields." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7053 +#: guix-git/doc/guix.texi:7097 msgid "Once a package definition is in place, the package may actually be built using the @code{guix build} command-line tool (@pxref{Invoking guix build}), troubleshooting any build failures you encounter (@pxref{Debugging Build Failures}). You can easily jump back to the package definition using the @command{guix edit} command (@pxref{Invoking guix edit}). @xref{Packaging Guidelines}, for more information on how to test package definitions, and @ref{Invoking guix lint}, for information on how to check a definition for style conformance." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:7053 +#: guix-git/doc/guix.texi:7097 #, no-wrap msgid "GUIX_PACKAGE_PATH" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7057 +#: guix-git/doc/guix.texi:7101 msgid "Lastly, @pxref{Channels}, for information on how to extend the distribution by adding your own package definitions in a ``channel''." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7061 +#: guix-git/doc/guix.texi:7105 msgid "Finally, updating the package definition to a new upstream version can be partly automated by the @command{guix refresh} command (@pxref{Invoking guix refresh})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7067 +#: guix-git/doc/guix.texi:7111 msgid "Behind the scenes, a derivation corresponding to the @code{} object is first computed by the @code{package-derivation} procedure. That derivation is stored in a @file{.drv} file under @file{/gnu/store}. The build actions it prescribes may then be realized by using the @code{build-derivations} procedure (@pxref{The Store})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7068 +#: guix-git/doc/guix.texi:7112 #, no-wrap msgid "{Scheme Procedure} package-derivation @var{store} @var{package} [@var{system}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7071 +#: guix-git/doc/guix.texi:7115 msgid "Return the @code{} object of @var{package} for @var{system} (@pxref{Derivations})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7077 +#: guix-git/doc/guix.texi:7121 msgid "@var{package} must be a valid @code{} object, and @var{system} must be a string denoting the target system type---e.g., @code{\"x86_64-linux\"} for an x86_64 Linux-based GNU system. @var{store} must be a connection to the daemon, which operates on the store (@pxref{The Store})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7083 +#: guix-git/doc/guix.texi:7127 msgid "Similarly, it is possible to compute a derivation that cross-builds a package for some other system:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7084 +#: guix-git/doc/guix.texi:7128 #, no-wrap msgid "{Scheme Procedure} package-cross-derivation @var{store} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7088 +#: guix-git/doc/guix.texi:7132 msgid "@var{package} @var{target} [@var{system}] Return the @code{} object of @var{package} cross-built from @var{system} to @var{target}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7092 +#: guix-git/doc/guix.texi:7136 msgid "@var{target} must be a valid GNU triplet denoting the target hardware and operating system, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying Target Triplets,,, autoconf, Autoconf})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7096 +#: guix-git/doc/guix.texi:7140 msgid "Once you have package definitions, you can easily define @emph{variants} of those packages. @xref{Defining Package Variants}, for more on that." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:7104 +#: guix-git/doc/guix.texi:7148 #, no-wrap msgid "@code{package} Reference" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7108 +#: guix-git/doc/guix.texi:7152 msgid "This section summarizes all the options available in @code{package} declarations (@pxref{Defining Packages})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7109 +#: guix-git/doc/guix.texi:7153 #, no-wrap msgid "{Data Type} package" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7111 +#: guix-git/doc/guix.texi:7155 msgid "This is the data type representing a package recipe." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7115 +#: guix-git/doc/guix.texi:7159 msgid "The name of the package, as a string." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7116 +#: guix-git/doc/guix.texi:7160 #, no-wrap msgid "version" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7119 +#: guix-git/doc/guix.texi:7163 msgid "The version of the package, as a string. @xref{Version Numbers}, for guidelines." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7120 guix-git/doc/guix.texi:12900 -#: guix-git/doc/guix.texi:15181 guix-git/doc/guix.texi:15790 +#: guix-git/doc/guix.texi:7164 guix-git/doc/guix.texi:13257 +#: guix-git/doc/guix.texi:15538 guix-git/doc/guix.texi:16147 #, no-wrap msgid "source" msgstr "منبع" #. type: table -#: guix-git/doc/guix.texi:7127 +#: guix-git/doc/guix.texi:7171 msgid "An object telling how the source code for the package should be acquired. Most of the time, this is an @code{origin} object, which denotes a file fetched from the Internet (@pxref{origin Reference}). It can also be any other ``file-like'' object such as a @code{local-file}, which denotes a file from the local file system (@pxref{G-Expressions, @code{local-file}})." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7128 +#: guix-git/doc/guix.texi:7172 #, no-wrap msgid "build-system" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7131 +#: guix-git/doc/guix.texi:7175 msgid "The build system that should be used to build the package (@pxref{Build Systems})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7132 guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:7176 guix-git/doc/guix.texi:18315 #, no-wrap msgid "@code{arguments} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7135 +#: guix-git/doc/guix.texi:7179 msgid "The arguments that should be passed to the build system. This is a list, typically containing sequential keyword-value pairs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7136 +#: guix-git/doc/guix.texi:7180 #, no-wrap msgid "@code{inputs} (default: @code{'()})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7137 +#: guix-git/doc/guix.texi:7181 #, no-wrap msgid "@code{native-inputs} (default: @code{'()})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7138 +#: guix-git/doc/guix.texi:7182 #, no-wrap msgid "@code{propagated-inputs} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7139 +#: guix-git/doc/guix.texi:7183 #, no-wrap msgid "inputs, of packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7146 +#: guix-git/doc/guix.texi:7190 msgid "These fields list dependencies of the package. Each element of these lists is either a package, origin, or other ``file-like object'' (@pxref{G-Expressions}); to specify the output of that file-like object that should be used, pass a two-element list where the second element is the output (@pxref{Packages with Multiple Outputs}, for more on package outputs). For example, the list below specifies three inputs:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7150 +#: guix-git/doc/guix.texi:7194 #, no-wrap msgid "" "(list libffi libunistring\n" @@ -14301,23 +14405,23 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7154 +#: guix-git/doc/guix.texi:7198 msgid "In the example above, the @code{\"out\"} output of @code{libffi} and @code{libunistring} is used." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:7155 +#: guix-git/doc/guix.texi:7199 #, no-wrap msgid "Compatibility Note" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:7162 +#: guix-git/doc/guix.texi:7206 msgid "Until version 1.3.0, input lists were a list of tuples, where each tuple has a label for the input (a string) as its first element, a package, origin, or derivation as its second element, and optionally the name of the output thereof that should be used, which defaults to @code{\"out\"}. For example, the list below is equivalent to the one above, but using the @dfn{old input style}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7168 +#: guix-git/doc/guix.texi:7212 #, no-wrap msgid "" ";; Old input style (deprecated).\n" @@ -14327,176 +14431,186 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:7174 +#: guix-git/doc/guix.texi:7218 msgid "This style is now deprecated; it is still supported but support will be removed in a future version. It should not be used for new package definitions. @xref{Invoking guix style}, on how to migrate to the new style." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7176 +#: guix-git/doc/guix.texi:7220 #, no-wrap msgid "cross compilation, package dependencies" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7182 +#: guix-git/doc/guix.texi:7226 msgid "The distinction between @code{native-inputs} and @code{inputs} is necessary when considering cross-compilation. When cross-compiling, dependencies listed in @code{inputs} are built for the @emph{target} architecture; conversely, dependencies listed in @code{native-inputs} are built for the architecture of the @emph{build} machine." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7187 +#: guix-git/doc/guix.texi:7231 msgid "@code{native-inputs} is typically used to list tools needed at build time, but not at run time, such as Autoconf, Automake, pkg-config, Gettext, or Bison. @command{guix lint} can report likely mistakes in this area (@pxref{Invoking guix lint})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:7195 +#: guix-git/doc/guix.texi:7239 msgid "package-propagated-inputs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7195 +#: guix-git/doc/guix.texi:7239 msgid "Lastly, @code{propagated-inputs} is similar to @code{inputs}, but the specified packages will be automatically installed to profiles (@pxref{Features, the role of profiles in Guix}) alongside the package they belong to (@pxref{package-cmd-propagated-inputs, @command{guix package}}, for information on how @command{guix package} deals with propagated inputs)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7199 +#: guix-git/doc/guix.texi:7243 msgid "For example this is necessary when packaging a C/C++ library that needs headers of another library to compile, or when a pkg-config file refers to another one @i{via} its @code{Requires} field." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7206 +#: guix-git/doc/guix.texi:7250 msgid "Another example where @code{propagated-inputs} is useful is for languages that lack a facility to record the run-time search path akin to the @code{RUNPATH} of ELF files; this includes Guile, Python, Perl, and more. When packaging libraries written in those languages, ensure they can find library code they depend on at run time by listing run-time dependencies in @code{propagated-inputs} rather than @code{inputs}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7207 +#: guix-git/doc/guix.texi:7251 #, no-wrap msgid "@code{outputs} (default: @code{'(\"out\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7210 +#: guix-git/doc/guix.texi:7254 msgid "The list of output names of the package. @xref{Packages with Multiple Outputs}, for typical uses of additional outputs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7211 +#: guix-git/doc/guix.texi:7255 #, no-wrap msgid "@code{native-search-paths} (default: @code{'()})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7212 +#: guix-git/doc/guix.texi:7256 #, no-wrap msgid "@code{search-paths} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7215 -msgid "A list of @code{search-path-specification} objects describing search-path environment variables honored by the package." +#: guix-git/doc/guix.texi:7260 +msgid "A list of @code{search-path-specification} objects describing search-path environment variables honored by the package. @xref{Search Paths}, for more on search path specifications." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:7266 +msgid "As for inputs, the distinction between @code{native-search-paths} and @code{search-paths} only matters when cross-compiling. In a cross-compilation context, @code{native-search-paths} applies exclusively to native inputs whereas @code{search-paths} applies only to host inputs." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:7273 +msgid "Packages such as cross-compilers care about target inputs---for instance, our (modified) GCC cross-compiler has @env{CROSS_C_INCLUDE_PATH} in @code{search-paths}, which allows it to pick @file{.h} files for the target system and @emph{not} those of native inputs. For the majority of packages though, only @code{native-search-paths} makes sense." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7216 +#: guix-git/doc/guix.texi:7274 #, no-wrap msgid "@code{replacement} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7220 +#: guix-git/doc/guix.texi:7278 msgid "This must be either @code{#f} or a package object that will be used as a @dfn{replacement} for this package. @xref{Security Updates, grafts}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7221 guix-git/doc/guix.texi:12892 +#: guix-git/doc/guix.texi:7279 guix-git/doc/guix.texi:13249 #, no-wrap msgid "synopsis" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7223 +#: guix-git/doc/guix.texi:7281 msgid "A one-line description of the package." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7224 guix-git/doc/guix.texi:12893 -#: guix-git/doc/guix.texi:35959 guix-git/doc/guix.texi:36119 +#: guix-git/doc/guix.texi:7282 guix-git/doc/guix.texi:13250 +#: guix-git/doc/guix.texi:36449 guix-git/doc/guix.texi:36609 #, no-wrap msgid "description" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7226 +#: guix-git/doc/guix.texi:7284 msgid "A more elaborate description of the package." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7227 +#: guix-git/doc/guix.texi:7285 #, no-wrap msgid "license" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7228 +#: guix-git/doc/guix.texi:7286 #, no-wrap msgid "license, of packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7231 +#: guix-git/doc/guix.texi:7289 msgid "The license of the package; a value from @code{(guix licenses)}, or a list of such values." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7232 guix-git/doc/guix.texi:12901 +#: guix-git/doc/guix.texi:7290 guix-git/doc/guix.texi:13258 #, no-wrap msgid "home-page" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7234 +#: guix-git/doc/guix.texi:7292 msgid "The URL to the home-page of the package, as a string." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7235 +#: guix-git/doc/guix.texi:7293 #, no-wrap msgid "@code{supported-systems} (default: @code{%supported-systems})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7238 +#: guix-git/doc/guix.texi:7296 msgid "The list of systems supported by the package, as strings of the form @code{architecture-kernel}, for example @code{\"x86_64-linux\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7239 +#: guix-git/doc/guix.texi:7297 #, no-wrap msgid "@code{location} (default: source location of the @code{package} form)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7243 +#: guix-git/doc/guix.texi:7301 msgid "The source location of the package. It is useful to override this when inheriting from another package, in which case this field is not automatically corrected." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7246 +#: guix-git/doc/guix.texi:7304 #, no-wrap msgid "{Scheme Syntax} this-package" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7249 +#: guix-git/doc/guix.texi:7307 msgid "When used in the @emph{lexical scope} of a package field definition, this identifier resolves to the package being defined." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7252 +#: guix-git/doc/guix.texi:7310 msgid "The example below shows how to add a package as a native input of itself when cross-compiling:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7257 +#: guix-git/doc/guix.texi:7315 #, no-wrap msgid "" "(package\n" @@ -14506,7 +14620,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7263 +#: guix-git/doc/guix.texi:7321 #, no-wrap msgid "" " ;; When cross-compiled, Guile, for example, depends on\n" @@ -14517,51 +14631,51 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7266 +#: guix-git/doc/guix.texi:7324 msgid "It is an error to refer to @code{this-package} outside a package definition." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7270 +#: guix-git/doc/guix.texi:7328 msgid "The following helper procedures are provided to help deal with package inputs." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7271 +#: guix-git/doc/guix.texi:7329 #, no-wrap msgid "{Scheme Procedure} lookup-package-input @var{package} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:7272 +#: guix-git/doc/guix.texi:7330 #, no-wrap msgid "{Scheme Procedure} lookup-package-native-input @var{package} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:7273 +#: guix-git/doc/guix.texi:7331 #, no-wrap msgid "{Scheme Procedure} lookup-package-propagated-input @var{package} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:7274 +#: guix-git/doc/guix.texi:7332 #, no-wrap msgid "{Scheme Procedure} lookup-package-direct-input @var{package} @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7277 +#: guix-git/doc/guix.texi:7335 msgid "Look up @var{name} among @var{package}'s inputs (or native, propagated, or direct inputs). Return it if found, @code{#f} otherwise." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7280 +#: guix-git/doc/guix.texi:7338 msgid "@var{name} is the name of a package depended on. Here's how you might use it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7283 +#: guix-git/doc/guix.texi:7341 #, no-wrap msgid "" "(use-modules (guix packages) (gnu packages base))\n" @@ -14569,7 +14683,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7286 +#: guix-git/doc/guix.texi:7344 #, no-wrap msgid "" "(lookup-package-direct-input coreutils \"gmp\")\n" @@ -14577,45 +14691,45 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7290 +#: guix-git/doc/guix.texi:7348 msgid "In this example we obtain the @code{gmp} package that is among the direct inputs of @code{coreutils}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7292 +#: guix-git/doc/guix.texi:7350 #, no-wrap msgid "development inputs, of a package" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7293 +#: guix-git/doc/guix.texi:7351 #, no-wrap msgid "implicit inputs, of a package" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7298 +#: guix-git/doc/guix.texi:7356 msgid "Sometimes you will want to obtain the list of inputs needed to @emph{develop} a package---all the inputs that are visible when the package is compiled. This is what the @code{package-development-inputs} procedure returns." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7299 +#: guix-git/doc/guix.texi:7357 #, no-wrap msgid "{Scheme Procedure} package-development-inputs @var{package} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7306 +#: guix-git/doc/guix.texi:7364 msgid "[@var{system}] [#:target #f] Return the list of inputs required by @var{package} for development purposes on @var{system}. When @var{target} is true, return the inputs needed to cross-compile @var{package} from @var{system} to @var{triplet}, where @var{triplet} is a triplet such as @code{\"aarch64-linux-gnu\"}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7310 +#: guix-git/doc/guix.texi:7368 msgid "Note that the result includes both explicit inputs and implicit inputs---inputs automatically added by the build system (@pxref{Build Systems}). Let us take the @code{hello} package to illustrate that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7313 +#: guix-git/doc/guix.texi:7371 #, no-wrap msgid "" "(use-modules (gnu packages base) (guix packages))\n" @@ -14623,7 +14737,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7316 +#: guix-git/doc/guix.texi:7374 #, no-wrap msgid "" "hello\n" @@ -14632,7 +14746,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7319 +#: guix-git/doc/guix.texi:7377 #, no-wrap msgid "" "(package-direct-inputs hello)\n" @@ -14641,7 +14755,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7322 +#: guix-git/doc/guix.texi:7380 #, no-wrap msgid "" "(package-development-inputs hello)\n" @@ -14649,39 +14763,39 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7331 +#: guix-git/doc/guix.texi:7389 msgid "In this example, @code{package-direct-inputs} returns the empty list, because @code{hello} has zero explicit dependencies. Conversely, @code{package-development-inputs} includes inputs implicitly added by @code{gnu-build-system} that are required to build @code{hello}: tar, gzip, GCC, libc, Bash, and more. To visualize it, @command{guix graph hello} would show you explicit inputs, whereas @command{guix graph -t bag hello} would include implicit inputs (@pxref{Invoking guix graph})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7337 +#: guix-git/doc/guix.texi:7395 msgid "Because packages are regular Scheme objects that capture a complete dependency graph and associated build procedures, it is often useful to write procedures that take a package and return a modified version thereof according to some parameters. Below are a few examples." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7338 +#: guix-git/doc/guix.texi:7396 #, no-wrap msgid "tool chain, choosing a package's tool chain" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7339 +#: guix-git/doc/guix.texi:7397 #, no-wrap msgid "{Scheme Procedure} package-with-c-toolchain @var{package} @var{toolchain}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7344 +#: guix-git/doc/guix.texi:7402 msgid "Return a variant of @var{package} that uses @var{toolchain} instead of the default GNU C/C++ toolchain. @var{toolchain} must be a list of inputs (label/package tuples) providing equivalent functionality, such as the @code{gcc-toolchain} package." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7348 +#: guix-git/doc/guix.texi:7406 msgid "The example below returns a variant of the @code{hello} package built with GCC@tie{}10.x and the rest of the GNU tool chain (Binutils and the GNU C Library) instead of the default tool chain:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7352 +#: guix-git/doc/guix.texi:7410 #, no-wrap msgid "" "(let ((toolchain (specification->package \"gcc-toolchain@@10\")))\n" @@ -14689,197 +14803,197 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7360 +#: guix-git/doc/guix.texi:7418 msgid "The build tool chain is part of the @dfn{implicit inputs} of packages---it's usually not listed as part of the various ``inputs'' fields and is instead pulled in by the build system. Consequently, this procedure works by changing the build system of @var{package} so that it pulls in @var{toolchain} instead of the defaults. @ref{Build Systems}, for more on build systems." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:7363 +#: guix-git/doc/guix.texi:7421 #, no-wrap msgid "@code{origin} Reference" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7371 +#: guix-git/doc/guix.texi:7429 msgid "This section documents @dfn{origins}. An @code{origin} declaration specifies data that must be ``produced''---downloaded, usually---and whose content hash is known in advance. Origins are primarily used to represent the source code of packages (@pxref{Defining Packages}). For that reason, the @code{origin} form allows you to declare patches to apply to the original source code as well as code snippets to modify it." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7372 +#: guix-git/doc/guix.texi:7430 #, no-wrap msgid "{Data Type} origin" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7374 +#: guix-git/doc/guix.texi:7432 msgid "This is the data type representing a source code origin." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7376 guix-git/doc/guix.texi:26552 +#: guix-git/doc/guix.texi:7434 guix-git/doc/guix.texi:26889 #, no-wrap msgid "uri" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7381 +#: guix-git/doc/guix.texi:7439 msgid "An object containing the URI of the source. The object type depends on the @code{method} (see below). For example, when using the @var{url-fetch} method of @code{(guix download)}, the valid @code{uri} values are: a URL represented as a string, or a list thereof." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7382 +#: guix-git/doc/guix.texi:7440 #, no-wrap msgid "fixed-output derivations, for download" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7383 +#: guix-git/doc/guix.texi:7441 #, no-wrap msgid "method" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7390 +#: guix-git/doc/guix.texi:7448 msgid "A monadic procedure that handles the given URI@. The procedure must accept at least three arguments: the value of the @code{uri} field and the hash algorithm and hash value specified by the @code{hash} field. It must return a store item or a derivation in the store monad (@pxref{The Store Monad}); most methods return a fixed-output derivation (@pxref{Derivations})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7394 +#: guix-git/doc/guix.texi:7452 msgid "Commonly used methods include @code{url-fetch}, which fetches data from a URL, and @code{git-fetch}, which fetches data from a Git repository (see below)." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7395 +#: guix-git/doc/guix.texi:7453 #, no-wrap msgid "sha256" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7399 +#: guix-git/doc/guix.texi:7457 msgid "A bytevector containing the SHA-256 hash of the source. This is equivalent to providing a @code{content-hash} SHA256 object in the @code{hash} field described below." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7400 +#: guix-git/doc/guix.texi:7458 #, no-wrap msgid "hash" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7403 +#: guix-git/doc/guix.texi:7461 msgid "The @code{content-hash} object of the source---see below for how to use @code{content-hash}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7407 +#: guix-git/doc/guix.texi:7465 msgid "You can obtain this information using @code{guix download} (@pxref{Invoking guix download}) or @code{guix hash} (@pxref{Invoking guix hash})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7408 +#: guix-git/doc/guix.texi:7466 #, no-wrap msgid "@code{file-name} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7414 +#: guix-git/doc/guix.texi:7472 msgid "The file name under which the source code should be saved. When this is @code{#f}, a sensible default value will be used in most cases. In case the source is fetched from a URL, the file name from the URL will be used. For version control checkouts, it is recommended to provide the file name explicitly because the default is not very descriptive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7415 +#: guix-git/doc/guix.texi:7473 #, no-wrap msgid "@code{patches} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7418 +#: guix-git/doc/guix.texi:7476 msgid "A list of file names, origins, or file-like objects (@pxref{G-Expressions, file-like objects}) pointing to patches to be applied to the source." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7422 +#: guix-git/doc/guix.texi:7480 msgid "This list of patches must be unconditional. In particular, it cannot depend on the value of @code{%current-system} or @code{%current-target-system}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7423 +#: guix-git/doc/guix.texi:7481 #, no-wrap msgid "@code{snippet} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7427 +#: guix-git/doc/guix.texi:7485 msgid "A G-expression (@pxref{G-Expressions}) or S-expression that will be run in the source directory. This is a convenient way to modify the source, sometimes more convenient than a patch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7428 +#: guix-git/doc/guix.texi:7486 #, no-wrap msgid "@code{patch-flags} (default: @code{'(\"-p1\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7431 +#: guix-git/doc/guix.texi:7489 msgid "A list of command-line flags that should be passed to the @code{patch} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7432 +#: guix-git/doc/guix.texi:7490 #, no-wrap msgid "@code{patch-inputs} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7436 +#: guix-git/doc/guix.texi:7494 msgid "Input packages or derivations to the patching process. When this is @code{#f}, the usual set of inputs necessary for patching are provided, such as GNU@tie{}Patch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7437 guix-git/doc/guix.texi:26425 +#: guix-git/doc/guix.texi:7495 guix-git/doc/guix.texi:26762 #, no-wrap msgid "@code{modules} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7440 +#: guix-git/doc/guix.texi:7498 msgid "A list of Guile modules that should be loaded during the patching process and while running the code in the @code{snippet} field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7441 +#: guix-git/doc/guix.texi:7499 #, no-wrap msgid "@code{patch-guile} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7444 +#: guix-git/doc/guix.texi:7502 msgid "The Guile package that should be used in the patching process. When this is @code{#f}, a sensible default is used." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7447 +#: guix-git/doc/guix.texi:7505 #, no-wrap msgid "{Data Type} content-hash @var{value} [@var{algorithm}]" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7451 +#: guix-git/doc/guix.texi:7509 msgid "Construct a content hash object for the given @var{algorithm}, and with @var{value} as its hash value. When @var{algorithm} is omitted, assume it is @code{sha256}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7454 +#: guix-git/doc/guix.texi:7512 msgid "@var{value} can be a literal string, in which case it is base32-decoded, or it can be a bytevector." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7456 +#: guix-git/doc/guix.texi:7514 msgid "The following forms are all equivalent:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7465 +#: guix-git/doc/guix.texi:7523 #, no-wrap msgid "" "(content-hash \"05zxkyz9bv3j9h0xyid1rhvh3klhsmrpkf3bcs6frvlgyr2gwilj\")\n" @@ -14892,103 +15006,103 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7470 +#: guix-git/doc/guix.texi:7528 msgid "Technically, @code{content-hash} is currently implemented as a macro. It performs sanity checks at macro-expansion time, when possible, such as ensuring that @var{value} has the right size for @var{algorithm}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7476 +#: guix-git/doc/guix.texi:7534 msgid "As we have seen above, how exactly the data an origin refers to is retrieved is determined by its @code{method} field. The @code{(guix download)} module provides the most common method, @code{url-fetch}, described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7477 +#: guix-git/doc/guix.texi:7535 #, no-wrap msgid "{Scheme Procedure} url-fetch @var{url} @var{hash-algo} @var{hash} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7485 +#: guix-git/doc/guix.texi:7543 msgid "[name] [#:executable? #f] Return a fixed-output derivation that fetches data from @var{url} (a string, or a list of strings denoting alternate URLs), which is expected to have hash @var{hash} of type @var{hash-algo} (a symbol). By default, the file name is the base name of URL; optionally, @var{name} can specify a different file name. When @var{executable?} is true, make the downloaded file executable." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7488 +#: guix-git/doc/guix.texi:7546 msgid "When one of the URL starts with @code{mirror://}, then its host part is interpreted as the name of a mirror scheme, taken from @file{%mirror-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7491 +#: guix-git/doc/guix.texi:7549 msgid "Alternatively, when URL starts with @code{file://}, return the corresponding file name in the store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7497 +#: guix-git/doc/guix.texi:7555 msgid "Likewise, the @code{(guix git-download)} module defines the @code{git-fetch} origin method, which fetches data from a Git version control repository, and the @code{git-reference} data type to describe the repository and revision to fetch." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7498 +#: guix-git/doc/guix.texi:7556 #, no-wrap msgid "{Scheme Procedure} git-fetch @var{ref} @var{hash-algo} @var{hash}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7503 +#: guix-git/doc/guix.texi:7561 msgid "Return a fixed-output derivation that fetches @var{ref}, a @code{} object. The output is expected to have recursive hash @var{hash} of type @var{hash-algo} (a symbol). Use @var{name} as the file name, or a generic name if @code{#f}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7505 +#: guix-git/doc/guix.texi:7563 #, no-wrap msgid "{Data Type} git-reference" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7508 +#: guix-git/doc/guix.texi:7566 msgid "This data type represents a Git reference for @code{git-fetch} to retrieve." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7510 guix-git/doc/guix.texi:24186 +#: guix-git/doc/guix.texi:7568 guix-git/doc/guix.texi:24548 #, no-wrap msgid "url" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7512 +#: guix-git/doc/guix.texi:7570 msgid "The URL of the Git repository to clone." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7513 +#: guix-git/doc/guix.texi:7571 #, no-wrap msgid "commit" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7518 +#: guix-git/doc/guix.texi:7576 msgid "This string denotes either the commit to fetch (a hexadecimal string), or the tag to fetch. You can also use a ``short'' commit ID or a @command{git describe} style identifier such as @code{v1.0.1-10-g58d7909c97}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7519 +#: guix-git/doc/guix.texi:7577 #, no-wrap msgid "@code{recursive?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7521 +#: guix-git/doc/guix.texi:7579 msgid "This Boolean indicates whether to recursively fetch Git sub-modules." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7525 +#: guix-git/doc/guix.texi:7583 msgid "The example below denotes the @code{v2.10} tag of the GNU@tie{}Hello repository:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7530 +#: guix-git/doc/guix.texi:7588 #, no-wrap msgid "" "(git-reference\n" @@ -14997,12 +15111,12 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7534 +#: guix-git/doc/guix.texi:7592 msgid "This is equivalent to the reference below, which explicitly names the commit:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7539 +#: guix-git/doc/guix.texi:7597 #, no-wrap msgid "" "(git-reference\n" @@ -15011,56 +15125,56 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7545 +#: guix-git/doc/guix.texi:7603 msgid "For Mercurial repositories, the module @code{(guix hg-download)} defines the @code{hg-fetch} origin method and @code{hg-reference} data type for support of the Mercurial version control system." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7546 +#: guix-git/doc/guix.texi:7604 #, no-wrap msgid "{Scheme Procedure} hg-fetch @var{ref} @var{hash-algo} @var{hash} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7552 +#: guix-git/doc/guix.texi:7610 msgid "[name] Return a fixed-output derivation that fetches @var{ref}, a @code{} object. The output is expected to have recursive hash @var{hash} of type @var{hash-algo} (a symbol). Use @var{name} as the file name, or a generic name if @code{#false}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7557 +#: guix-git/doc/guix.texi:7615 #, no-wrap msgid "customizing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7558 +#: guix-git/doc/guix.texi:7616 #, no-wrap msgid "variants, of packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7568 +#: guix-git/doc/guix.texi:7626 msgid "One of the nice things with Guix is that, given a package definition, you can easily @emph{derive} variants of that package---for a different upstream version, with different dependencies, different compilation options, and so on. Some of these custom packages can be defined straight from the command line (@pxref{Package Transformation Options}). This section describes how to define package variants in code. This can be useful in ``manifests'' (@pxref{profile-manifest, @option{--manifest}}) and in your own package collection (@pxref{Creating a Channel}), among others!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7569 +#: guix-git/doc/guix.texi:7627 #, no-wrap msgid "inherit, for package definitions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7576 +#: guix-git/doc/guix.texi:7634 msgid "As discussed earlier, packages are first-class objects in the Scheme language. The @code{(guix packages)} module provides the @code{package} construct to define new package objects (@pxref{package Reference}). The easiest way to define a package variant is using the @code{inherit} keyword together with @code{package}. This allows you to inherit from a package definition while overriding the fields you want." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7581 +#: guix-git/doc/guix.texi:7639 msgid "For example, given the @code{hello} variable, which contains a definition for the current version of GNU@tie{}Hello, here's how you would define a variant for version 2.2 (released in 2006, it's vintage!):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7584 +#: guix-git/doc/guix.texi:7642 #, no-wrap msgid "" "(use-modules (gnu packages base)) ;for 'hello'\n" @@ -15068,7 +15182,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7596 +#: guix-git/doc/guix.texi:7654 #, no-wrap msgid "" "(define hello-2.2\n" @@ -15085,17 +15199,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7605 +#: guix-git/doc/guix.texi:7663 msgid "The example above corresponds to what the @option{--with-source} package transformation option does. Essentially @code{hello-2.2} preserves all the fields of @code{hello}, except @code{version} and @code{source}, which it overrides. Note that the original @code{hello} variable is still there, in the @code{(gnu packages base)} module, unchanged. When you define a custom package like this, you are really @emph{adding} a new package definition; the original one remains available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7611 +#: guix-git/doc/guix.texi:7669 msgid "You can just as well define variants with a different set of dependencies than the original package. For example, the default @code{gdb} package depends on @code{guile}, but since that is an optional dependency, you can define a variant that removes that dependency like so:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7614 +#: guix-git/doc/guix.texi:7672 #, no-wrap msgid "" "(use-modules (gnu packages gdb)) ;for 'gdb'\n" @@ -15103,7 +15217,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7620 +#: guix-git/doc/guix.texi:7678 #, no-wrap msgid "" "(define gdb-sans-guile\n" @@ -15114,61 +15228,61 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7626 +#: guix-git/doc/guix.texi:7684 msgid "The @code{modify-inputs} form above removes the @code{\"guile\"} package from the @code{inputs} field of @code{gdb}. The @code{modify-inputs} macro is a helper that can prove useful anytime you want to remove, add, or replace package inputs." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7627 +#: guix-git/doc/guix.texi:7685 #, no-wrap msgid "{Scheme Syntax} modify-inputs @var{inputs} @var{clauses}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7631 +#: guix-git/doc/guix.texi:7689 msgid "Modify the given package inputs, as returned by @code{package-inputs} & co., according to the given clauses. Each clause must have one of the following forms:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:7633 +#: guix-git/doc/guix.texi:7691 #, no-wrap msgid "(delete @var{name}@dots{})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7635 +#: guix-git/doc/guix.texi:7693 msgid "Delete from the inputs packages with the given @var{name}s (strings)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7636 +#: guix-git/doc/guix.texi:7694 #, no-wrap msgid "(append @var{package}@dots{})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7638 +#: guix-git/doc/guix.texi:7696 msgid "Add @var{package}s to the end of the input list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7639 +#: guix-git/doc/guix.texi:7697 #, no-wrap msgid "(prepend @var{package}@dots{})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7641 +#: guix-git/doc/guix.texi:7699 msgid "Add @var{package}s to the front of the input list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7645 +#: guix-git/doc/guix.texi:7703 msgid "The example below removes the GMP and ACL inputs of Coreutils and adds libcap to the back of the input list:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7650 +#: guix-git/doc/guix.texi:7708 #, no-wrap msgid "" "(modify-inputs (package-inputs coreutils)\n" @@ -15177,12 +15291,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7654 +#: guix-git/doc/guix.texi:7712 msgid "The example below replaces the @code{guile} package from the inputs of @code{guile-redis} with @code{guile-2.2}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7658 +#: guix-git/doc/guix.texi:7716 #, no-wrap msgid "" "(modify-inputs (package-inputs guile-redis)\n" @@ -15190,17 +15304,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7662 +#: guix-git/doc/guix.texi:7720 msgid "The last type of clause is @code{prepend}, to add inputs to the front of the list." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7671 +#: guix-git/doc/guix.texi:7729 msgid "In some cases, you may find it useful to write functions (``procedures'', in Scheme parlance) that return a package based on some parameters. For example, consider the @code{luasocket} library for the Lua programming language. We want to create @code{luasocket} packages for major versions of Lua. One way to do that is to define a procedure that takes a Lua package and returns a @code{luasocket} package that depends on it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7681 +#: guix-git/doc/guix.texi:7739 #, no-wrap msgid "" "(define (make-lua-socket name lua)\n" @@ -15215,7 +15329,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7684 +#: guix-git/doc/guix.texi:7742 #, no-wrap msgid "" "(define-public lua5.1-socket\n" @@ -15224,7 +15338,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7687 +#: guix-git/doc/guix.texi:7745 #, no-wrap msgid "" "(define-public lua5.2-socket\n" @@ -15232,34 +15346,34 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7695 +#: guix-git/doc/guix.texi:7753 msgid "Here we have defined packages @code{lua5.1-socket} and @code{lua5.2-socket} by calling @code{make-lua-socket} with different arguments. @xref{Procedures,,, guile, GNU Guile Reference Manual}, for more info on procedures. Having top-level public definitions for these two packages means that they can be referred to from the command line (@pxref{Package Modules})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7696 +#: guix-git/doc/guix.texi:7754 #, no-wrap msgid "package transformations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7701 +#: guix-git/doc/guix.texi:7759 msgid "These are pretty simple package variants. As a convenience, the @code{(guix transformations)} module provides a high-level interface that directly maps to the more sophisticated package transformation options (@pxref{Package Transformation Options}):" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7702 +#: guix-git/doc/guix.texi:7760 #, no-wrap msgid "{Scheme Procedure} options->transformation @var{opts}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7706 +#: guix-git/doc/guix.texi:7764 msgid "Return a procedure that, when passed an object to build (package, derivation, etc.), applies the transformations specified by @var{opts} and returns the resulting objects. @var{opts} must be a list of symbol/string pairs such as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7710 +#: guix-git/doc/guix.texi:7768 #, no-wrap msgid "" "((with-branch . \"guile-gcrypt=master\")\n" @@ -15267,17 +15381,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7714 +#: guix-git/doc/guix.texi:7772 msgid "Each symbol names a transformation and the corresponding string is an argument to that transformation." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7717 +#: guix-git/doc/guix.texi:7775 msgid "For instance, a manifest equivalent to this command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:7722 +#: guix-git/doc/guix.texi:7780 #, no-wrap msgid "" "guix build guix \\\n" @@ -15286,12 +15400,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7726 +#: guix-git/doc/guix.texi:7784 msgid "... would look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7729 +#: guix-git/doc/guix.texi:7787 #, no-wrap msgid "" "(use-modules (guix transformations))\n" @@ -15299,7 +15413,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7735 +#: guix-git/doc/guix.texi:7793 #, no-wrap msgid "" "(define transform\n" @@ -15311,7 +15425,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7738 +#: guix-git/doc/guix.texi:7796 #, no-wrap msgid "" "(packages->manifest\n" @@ -15319,50 +15433,50 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7740 +#: guix-git/doc/guix.texi:7798 #, no-wrap msgid "input rewriting" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7741 +#: guix-git/doc/guix.texi:7799 #, no-wrap msgid "dependency graph rewriting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7748 +#: guix-git/doc/guix.texi:7806 msgid "The @code{options->transformation} procedure is convenient, but it's perhaps also not as flexible as you may like. How is it implemented? The astute reader probably noticed that most package transformation options go beyond the superficial changes shown in the first examples of this section: they involve @dfn{input rewriting}, whereby the dependency graph of a package is rewritten by replacing specific inputs by others." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7752 +#: guix-git/doc/guix.texi:7810 msgid "Dependency graph rewriting, for the purposes of swapping packages in the graph, is what the @code{package-input-rewriting} procedure in @code{(guix packages)} implements." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7753 +#: guix-git/doc/guix.texi:7811 #, no-wrap msgid "{Scheme Procedure} package-input-rewriting @var{replacements} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7760 +#: guix-git/doc/guix.texi:7818 msgid "[@var{rewrite-name}] [#:deep? #t] Return a procedure that, when passed a package, replaces its direct and indirect dependencies, including implicit inputs when @var{deep?} is true, according to @var{replacements}. @var{replacements} is a list of package pairs; the first element of each pair is the package to replace, and the second one is the replacement." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7763 +#: guix-git/doc/guix.texi:7821 msgid "Optionally, @var{rewrite-name} is a one-argument procedure that takes the name of a package and returns its new name after rewrite." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7767 guix-git/doc/guix.texi:11216 +#: guix-git/doc/guix.texi:7825 guix-git/doc/guix.texi:11530 msgid "Consider this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7773 +#: guix-git/doc/guix.texi:7831 #, no-wrap msgid "" "(define libressl-instead-of-openssl\n" @@ -15373,7 +15487,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7776 +#: guix-git/doc/guix.texi:7834 #, no-wrap msgid "" "(define git-with-libressl\n" @@ -15381,33 +15495,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7784 +#: guix-git/doc/guix.texi:7842 msgid "Here we first define a rewriting procedure that replaces @var{openssl} with @var{libressl}. Then we use it to define a @dfn{variant} of the @var{git} package that uses @var{libressl} instead of @var{openssl}. This is exactly what the @option{--with-input} command-line option does (@pxref{Package Transformation Options, @option{--with-input}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7787 +#: guix-git/doc/guix.texi:7845 msgid "The following variant of @code{package-input-rewriting} can match packages to be replaced by name rather than by identity." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7788 +#: guix-git/doc/guix.texi:7846 #, no-wrap msgid "{Scheme Procedure} package-input-rewriting/spec @var{replacements} [#:deep? #t]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7795 +#: guix-git/doc/guix.texi:7853 msgid "Return a procedure that, given a package, applies the given @var{replacements} to all the package graph, including implicit inputs unless @var{deep?} is false. @var{replacements} is a list of spec/procedures pair; each spec is a package specification such as @code{\"gcc\"} or @code{\"guile@@2\"}, and each procedure takes a matching package and returns a replacement for that package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7798 +#: guix-git/doc/guix.texi:7856 msgid "The example above could be rewritten this way:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7803 +#: guix-git/doc/guix.texi:7861 #, no-wrap msgid "" "(define libressl-instead-of-openssl\n" @@ -15416,872 +15530,872 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7808 +#: guix-git/doc/guix.texi:7866 msgid "The key difference here is that, this time, packages are matched by spec and not by identity. In other words, any package in the graph that is called @code{openssl} will be replaced." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7812 +#: guix-git/doc/guix.texi:7870 msgid "A more generic procedure to rewrite a package dependency graph is @code{package-mapping}: it supports arbitrary changes to nodes in the graph." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7813 +#: guix-git/doc/guix.texi:7871 #, no-wrap msgid "{Scheme Procedure} package-mapping @var{proc} [@var{cut?}] [#:deep? #f]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7818 +#: guix-git/doc/guix.texi:7876 msgid "Return a procedure that, given a package, applies @var{proc} to all the packages depended on and returns the resulting package. The procedure stops recursion when @var{cut?} returns true for a given package. When @var{deep?} is true, @var{proc} is applied to implicit inputs as well." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7824 +#: guix-git/doc/guix.texi:7882 #, no-wrap msgid "build system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7829 +#: guix-git/doc/guix.texi:7887 msgid "Each package definition specifies a @dfn{build system} and arguments for that build system (@pxref{Defining Packages}). This @code{build-system} field represents the build procedure of the package, as well as implicit dependencies of that build procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7833 +#: guix-git/doc/guix.texi:7891 msgid "Build systems are @code{} objects. The interface to create and manipulate them is provided by the @code{(guix build-system)} module, and actual build systems are exported by specific modules." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7834 +#: guix-git/doc/guix.texi:7892 #, no-wrap msgid "bag (low-level package representation)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7844 +#: guix-git/doc/guix.texi:7902 msgid "Under the hood, build systems first compile package objects to @dfn{bags}. A @dfn{bag} is like a package, but with less ornamentation---in other words, a bag is a lower-level representation of a package, which includes all the inputs of that package, including some that were implicitly added by the build system. This intermediate representation is then compiled to a derivation (@pxref{Derivations}). The @code{package-with-c-toolchain} is an example of a way to change the implicit inputs that a package's build system pulls in (@pxref{package Reference, @code{package-with-c-toolchain}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7852 +#: guix-git/doc/guix.texi:7910 msgid "Build systems accept an optional list of @dfn{arguments}. In package definitions, these are passed @i{via} the @code{arguments} field (@pxref{Defining Packages}). They are typically keyword arguments (@pxref{Optional Arguments, keyword arguments in Guile,, guile, GNU Guile Reference Manual}). The value of these arguments is usually evaluated in the @dfn{build stratum}---i.e., by a Guile process launched by the daemon (@pxref{Derivations})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7856 +#: guix-git/doc/guix.texi:7914 msgid "The main build system is @code{gnu-build-system}, which implements the standard build procedure for GNU and many other packages. It is provided by the @code{(guix build-system gnu)} module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7857 +#: guix-git/doc/guix.texi:7915 #, no-wrap msgid "{Scheme Variable} gnu-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7861 +#: guix-git/doc/guix.texi:7919 msgid "@code{gnu-build-system} represents the GNU Build System, and variants thereof (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7862 guix-git/doc/guix.texi:8812 -#: guix-git/doc/guix.texi:9294 +#: guix-git/doc/guix.texi:7920 guix-git/doc/guix.texi:8869 +#: guix-git/doc/guix.texi:9429 #, no-wrap msgid "build phases" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7869 +#: guix-git/doc/guix.texi:7927 msgid "In a nutshell, packages using it are configured, built, and installed with the usual @code{./configure && make && make check && make install} command sequence. In practice, a few additional steps are often needed. All these steps are split up in separate @dfn{phases}. @xref{Build Phases}, for more info on build phases and ways to customize them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7876 +#: guix-git/doc/guix.texi:7934 msgid "In addition, this build system ensures that the ``standard'' environment for GNU packages is available. This includes tools such as GCC, libc, Coreutils, Bash, Make, Diffutils, grep, and sed (see the @code{(guix build-system gnu)} module for a complete list). We call these the @dfn{implicit inputs} of a package, because package definitions do not have to mention them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7880 +#: guix-git/doc/guix.texi:7938 msgid "This build system supports a number of keyword arguments, which can be passed @i{via} the @code{arguments} field of a package. Here are some of the main parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:7882 +#: guix-git/doc/guix.texi:7940 #, no-wrap msgid "#:phases" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7885 +#: guix-git/doc/guix.texi:7943 msgid "This argument specifies build-side code that evaluates to an alist of build phases. @xref{Build Phases}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7886 +#: guix-git/doc/guix.texi:7944 #, no-wrap msgid "#:configure-flags" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7889 +#: guix-git/doc/guix.texi:7947 msgid "This is a list of flags (strings) passed to the @command{configure} script. @xref{Defining Packages}, for an example." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7890 +#: guix-git/doc/guix.texi:7948 #, no-wrap msgid "#:make-flags" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7894 +#: guix-git/doc/guix.texi:7952 msgid "This list of strings contains flags passed as arguments to @command{make} invocations in the @code{build}, @code{check}, and @code{install} phases." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7895 +#: guix-git/doc/guix.texi:7953 #, no-wrap msgid "#:out-of-source?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7898 +#: guix-git/doc/guix.texi:7956 msgid "This Boolean, @code{#f} by default, indicates whether to run builds in a build directory separate from the source tree." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7903 +#: guix-git/doc/guix.texi:7961 msgid "When it is true, the @code{configure} phase creates a separate build directory, changes to that directory, and runs the @code{configure} script from there. This is useful for packages that require it, such as @code{glibc}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7904 +#: guix-git/doc/guix.texi:7962 #, no-wrap msgid "#:tests?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7907 +#: guix-git/doc/guix.texi:7965 msgid "This Boolean, @code{#t} by default, indicates whether the @code{check} phase should run the package's test suite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7908 +#: guix-git/doc/guix.texi:7966 #, no-wrap msgid "#:test-target" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7911 +#: guix-git/doc/guix.texi:7969 msgid "This string, @code{\"check\"} by default, gives the name of the makefile target used by the @code{check} phase." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7912 +#: guix-git/doc/guix.texi:7970 #, no-wrap msgid "#:parallel-build?" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7913 +#: guix-git/doc/guix.texi:7971 #, no-wrap msgid "#:parallel-tests?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7920 +#: guix-git/doc/guix.texi:7978 msgid "These Boolean values specify whether to build, respectively run the test suite, in parallel, with the @code{-j} flag of @command{make}. When they are true, @code{make} is passed @code{-j@var{n}}, where @var{n} is the number specified as the @option{--cores} option of @command{guix-daemon} or that of the @command{guix} client command (@pxref{Common Build Options, @option{--cores}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7921 +#: guix-git/doc/guix.texi:7979 #, no-wrap msgid "RUNPATH, validation" msgstr "" #. type: item -#: guix-git/doc/guix.texi:7922 +#: guix-git/doc/guix.texi:7980 #, no-wrap msgid "#:validate-runpath?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7926 +#: guix-git/doc/guix.texi:7984 msgid "This Boolean, @code{#t} by default, determines whether to ``validate'' the @code{RUNPATH} of ELF binaries (@code{.so} shared libraries as well as executables) previously installed by the @code{install} phase." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7934 +#: guix-git/doc/guix.texi:7992 msgid "This validation step consists in making sure that all the shared libraries needed by an ELF binary, which are listed as @code{DT_NEEDED} entries in its @code{PT_DYNAMIC} segment, appear in the @code{DT_RUNPATH} entry of that binary. In other words, it ensures that running or using those binaries will not result in a ``file not found'' error at run time. @xref{Options, @option{-rpath},, ld, The GNU Linker}, for more information on @code{RUNPATH}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7935 +#: guix-git/doc/guix.texi:7993 #, no-wrap msgid "#:substitutable?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7939 +#: guix-git/doc/guix.texi:7997 msgid "This Boolean, @code{#t} by default, tells whether the package outputs should be substitutable---i.e., whether users should be able to obtain substitutes for them instead of building locally (@pxref{Substitutes})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7940 +#: guix-git/doc/guix.texi:7998 #, no-wrap msgid "#:allowed-references" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7941 +#: guix-git/doc/guix.texi:7999 #, no-wrap msgid "#:disallowed-references" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7946 +#: guix-git/doc/guix.texi:8004 msgid "When true, these arguments must be a list of dependencies that must not appear among the references of the build results. If, upon build completion, some of these references are retained, the build process fails." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7951 +#: guix-git/doc/guix.texi:8009 msgid "This is useful to ensure that a package does not erroneously keep a reference to some of it build-time inputs, in cases where doing so would, for example, unnecessarily increase its size (@pxref{Invoking guix size})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7954 +#: guix-git/doc/guix.texi:8012 msgid "Most other build systems support these keyword arguments." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7961 +#: guix-git/doc/guix.texi:8019 msgid "Other @code{} objects are defined to support other conventions and tools used by free software packages. They inherit most of @code{gnu-build-system}, and differ mainly in the set of inputs implicitly added to the build process, and in the list of phases executed. Some of these build systems are listed below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7962 +#: guix-git/doc/guix.texi:8020 #, no-wrap msgid "{Scheme Variable} ant-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7966 +#: guix-git/doc/guix.texi:8024 msgid "This variable is exported by @code{(guix build-system ant)}. It implements the build procedure for Java packages that can be built with @url{https://ant.apache.org/, Ant build tool}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7971 +#: guix-git/doc/guix.texi:8029 msgid "It adds both @code{ant} and the @dfn{Java Development Kit} (JDK) as provided by the @code{icedtea} package to the set of inputs. Different packages can be specified with the @code{#:ant} and @code{#:jdk} parameters, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7977 +#: guix-git/doc/guix.texi:8035 msgid "When the original package does not provide a suitable Ant build file, the parameter @code{#:jar-name} can be used to generate a minimal Ant build file @file{build.xml} with tasks to build the specified jar archive. In this case the parameter @code{#:source-dir} can be used to specify the source sub-directory, defaulting to ``src''." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7985 +#: guix-git/doc/guix.texi:8043 msgid "The @code{#:main-class} parameter can be used with the minimal ant buildfile to specify the main class of the resulting jar. This makes the jar file executable. The @code{#:test-include} parameter can be used to specify the list of junit tests to run. It defaults to @code{(list \"**/*Test.java\")}. The @code{#:test-exclude} can be used to disable some tests. It defaults to @code{(list \"**/Abstract*.java\")}, because abstract classes cannot be run as tests." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7989 +#: guix-git/doc/guix.texi:8047 msgid "The parameter @code{#:build-target} can be used to specify the Ant task that should be run during the @code{build} phase. By default the ``jar'' task will be run." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7992 +#: guix-git/doc/guix.texi:8050 #, no-wrap msgid "{Scheme Variable} android-ndk-build-system" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7993 +#: guix-git/doc/guix.texi:8051 #, no-wrap msgid "Android distribution" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7994 +#: guix-git/doc/guix.texi:8052 #, no-wrap msgid "Android NDK build system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7998 +#: guix-git/doc/guix.texi:8056 msgid "This variable is exported by @code{(guix build-system android-ndk)}. It implements a build procedure for Android NDK (native development kit) packages using a Guix-specific build process." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8002 +#: guix-git/doc/guix.texi:8060 msgid "The build system assumes that packages install their public interface (header) files to the subdirectory @file{include} of the @code{out} output and their libraries to the subdirectory @file{lib} the @code{out} output." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8005 +#: guix-git/doc/guix.texi:8063 msgid "It's also assumed that the union of all the dependencies of a package has no conflicting files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8008 +#: guix-git/doc/guix.texi:8066 msgid "For the time being, cross-compilation is not supported - so right now the libraries and header files are assumed to be host tools." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8011 +#: guix-git/doc/guix.texi:8069 #, no-wrap msgid "{Scheme Variable} asdf-build-system/source" msgstr "" #. type: defvrx -#: guix-git/doc/guix.texi:8012 +#: guix-git/doc/guix.texi:8070 #, no-wrap msgid "{Scheme Variable} asdf-build-system/sbcl" msgstr "" #. type: defvrx -#: guix-git/doc/guix.texi:8013 +#: guix-git/doc/guix.texi:8071 #, no-wrap msgid "{Scheme Variable} asdf-build-system/ecl" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8019 +#: guix-git/doc/guix.texi:8077 msgid "These variables, exported by @code{(guix build-system asdf)}, implement build procedures for Common Lisp packages using @url{https://common-lisp.net/project/asdf/, ``ASDF''}. ASDF is a system definition facility for Common Lisp programs and libraries." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8026 +#: guix-git/doc/guix.texi:8084 msgid "The @code{asdf-build-system/source} system installs the packages in source form, and can be loaded using any common lisp implementation, via ASDF@. The others, such as @code{asdf-build-system/sbcl}, install binary systems in the format which a particular implementation understands. These build systems can also be used to produce executable programs, or lisp images which contain a set of packages pre-loaded." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8030 +#: guix-git/doc/guix.texi:8088 msgid "The build system uses naming conventions. For binary packages, the package name should be prefixed with the lisp implementation, such as @code{sbcl-} for @code{asdf-build-system/sbcl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8034 +#: guix-git/doc/guix.texi:8092 msgid "Additionally, the corresponding source package should be labeled using the same convention as python packages (see @ref{Python Modules}), using the @code{cl-} prefix." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8042 +#: guix-git/doc/guix.texi:8100 msgid "In order to create executable programs and images, the build-side procedures @code{build-program} and @code{build-image} can be used. They should be called in a build phase after the @code{create-asdf-configuration} phase, so that the system which was just built can be used within the resulting image. @code{build-program} requires a list of Common Lisp expressions to be passed as the @code{#:entry-program} argument." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8051 +#: guix-git/doc/guix.texi:8109 msgid "By default, all the @file{.asd} files present in the sources are read to find system definitions. The @code{#:asd-files} parameter can be used to specify the list of @file{.asd} files to read. Furthermore, if the package defines a system for its tests in a separate file, it will be loaded before the tests are run if it is specified by the @code{#:test-asd-file} parameter. If it is not set, the files @code{-tests.asd}, @code{-test.asd}, @code{tests.asd}, and @code{test.asd} will be tried if they exist." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8056 +#: guix-git/doc/guix.texi:8114 msgid "If for some reason the package must be named in a different way than the naming conventions suggest, or if several systems must be compiled, the @code{#:asd-systems} parameter can be used to specify the list of system names." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8059 +#: guix-git/doc/guix.texi:8117 #, no-wrap msgid "{Scheme Variable} cargo-build-system" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8060 +#: guix-git/doc/guix.texi:8118 #, no-wrap msgid "Rust programming language" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8061 +#: guix-git/doc/guix.texi:8119 #, no-wrap msgid "Cargo (Rust build system)" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8065 +#: guix-git/doc/guix.texi:8123 msgid "This variable is exported by @code{(guix build-system cargo)}. It supports builds of packages using Cargo, the build tool of the @uref{https://www.rust-lang.org, Rust programming language}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8068 +#: guix-git/doc/guix.texi:8126 msgid "It adds @code{rustc} and @code{cargo} to the set of inputs. A different Rust package can be specified with the @code{#:rust} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8078 +#: guix-git/doc/guix.texi:8136 msgid "Regular cargo dependencies should be added to the package definition similarly to other packages; those needed only at build time to native-inputs, others to inputs. If you need to add source-only crates then you should add them to via the @code{#:cargo-inputs} parameter as a list of name and spec pairs, where the spec can be a package or a source definition. Note that the spec must evaluate to a path to a gzipped tarball which includes a @code{Cargo.toml} file at its root, or it will be ignored. Similarly, cargo dev-dependencies should be added to the package definition via the @code{#:cargo-development-inputs} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8088 +#: guix-git/doc/guix.texi:8146 msgid "In its @code{configure} phase, this build system will make any source inputs specified in the @code{#:cargo-inputs} and @code{#:cargo-development-inputs} parameters available to cargo. It will also remove an included @code{Cargo.lock} file to be recreated by @code{cargo} during the @code{build} phase. The @code{package} phase will run @code{cargo package} to create a source crate for future use. The @code{install} phase installs the binaries defined by the crate. Unless @code{install-source? #f} is defined it will also install a source crate repository of itself and unpacked sources, to ease in future hacking on rust packages." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8090 +#: guix-git/doc/guix.texi:8148 #, no-wrap msgid "{Scheme Variable} chicken-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8095 +#: guix-git/doc/guix.texi:8153 msgid "This variable is exported by @code{(guix build-system chicken)}. It builds @uref{https://call-cc.org/, CHICKEN Scheme} modules, also called ``eggs'' or ``extensions''. CHICKEN generates C source code, which then gets compiled by a C compiler, in this case GCC." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8098 +#: guix-git/doc/guix.texi:8156 msgid "This build system adds @code{chicken} to the package inputs, as well as the packages of @code{gnu-build-system}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8102 +#: guix-git/doc/guix.texi:8160 msgid "The build system can't (yet) deduce the egg's name automatically, so just like with @code{go-build-system} and its @code{#:import-path}, you should define @code{#:egg-name} in the package's @code{arguments} field." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8104 +#: guix-git/doc/guix.texi:8162 msgid "For example, if you are packaging the @code{srfi-1} egg:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8107 +#: guix-git/doc/guix.texi:8165 #, no-wrap msgid "(arguments '(#:egg-name \"srfi-1\"))\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8112 +#: guix-git/doc/guix.texi:8170 msgid "Egg dependencies must be defined in @code{propagated-inputs}, not @code{inputs} because CHICKEN doesn't embed absolute references in compiled eggs. Test dependencies should go to @code{native-inputs}, as usual." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8114 +#: guix-git/doc/guix.texi:8172 #, no-wrap msgid "{Scheme Variable} copy-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8118 +#: guix-git/doc/guix.texi:8176 msgid "This variable is exported by @code{(guix build-system copy)}. It supports builds of simple packages that don't require much compiling, mostly just moving files around." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8123 +#: guix-git/doc/guix.texi:8181 msgid "It adds much of the @code{gnu-build-system} packages to the set of inputs. Because of this, the @code{copy-build-system} does not require all the boilerplate code often needed for the @code{trivial-build-system}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8128 +#: guix-git/doc/guix.texi:8186 msgid "To further simplify the file installation process, an @code{#:install-plan} argument is exposed to let the packager specify which files go where. The install plan is a list of @code{(@var{source} @var{target} [@var{filters}])}. @var{filters} are optional." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8130 +#: guix-git/doc/guix.texi:8188 #, no-wrap msgid "When @var{source} matches a file or directory without trailing slash, install it to @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8132 +#: guix-git/doc/guix.texi:8190 #, no-wrap msgid "If @var{target} has a trailing slash, install @var{source} basename beneath @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8133 +#: guix-git/doc/guix.texi:8191 #, no-wrap msgid "Otherwise install @var{source} as @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8136 +#: guix-git/doc/guix.texi:8194 #, no-wrap msgid "When @var{source} is a directory with a trailing slash, or when @var{filters} are used," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8139 +#: guix-git/doc/guix.texi:8197 msgid "the trailing slash of @var{target} is implied with the same meaning as above." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8140 +#: guix-git/doc/guix.texi:8198 #, no-wrap msgid "Without @var{filters}, install the full @var{source} @emph{content} to @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8141 +#: guix-git/doc/guix.texi:8199 #, no-wrap msgid "With @var{filters} among @code{#:include}, @code{#:include-regexp}, @code{#:exclude}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8144 +#: guix-git/doc/guix.texi:8202 msgid "@code{#:exclude-regexp}, only select files are installed depending on the filters. Each filters is specified by a list of strings." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8145 +#: guix-git/doc/guix.texi:8203 #, no-wrap msgid "With @code{#:include}, install all the files which the path suffix matches" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8147 +#: guix-git/doc/guix.texi:8205 msgid "at least one of the elements in the given list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8147 +#: guix-git/doc/guix.texi:8205 #, no-wrap msgid "With @code{#:include-regexp}, install all the files which the" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8150 +#: guix-git/doc/guix.texi:8208 msgid "subpaths match at least one of the regular expressions in the given list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8150 +#: guix-git/doc/guix.texi:8208 #, no-wrap msgid "The @code{#:exclude} and @code{#:exclude-regexp} filters" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8155 +#: guix-git/doc/guix.texi:8213 msgid "are the complement of their inclusion counterpart. Without @code{#:include} flags, install all files but those matching the exclusion filters. If both inclusions and exclusions are specified, the exclusions are done on top of the inclusions." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8159 +#: guix-git/doc/guix.texi:8217 msgid "In all cases, the paths relative to @var{source} are preserved within @var{target}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8162 +#: guix-git/doc/guix.texi:8220 msgid "Examples:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8164 +#: guix-git/doc/guix.texi:8222 #, no-wrap msgid "@code{(\"foo/bar\" \"share/my-app/\")}: Install @file{bar} to @file{share/my-app/bar}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8165 +#: guix-git/doc/guix.texi:8223 #, no-wrap msgid "@code{(\"foo/bar\" \"share/my-app/baz\")}: Install @file{bar} to @file{share/my-app/baz}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8166 +#: guix-git/doc/guix.texi:8224 #, no-wrap msgid "@code{(\"foo/\" \"share/my-app\")}: Install the content of @file{foo} inside @file{share/my-app}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8168 +#: guix-git/doc/guix.texi:8226 msgid "e.g., install @file{foo/sub/file} to @file{share/my-app/sub/file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8168 +#: guix-git/doc/guix.texi:8226 #, no-wrap msgid "@code{(\"foo/\" \"share/my-app\" #:include (\"sub/file\"))}: Install only @file{foo/sub/file} to" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8170 +#: guix-git/doc/guix.texi:8228 msgid "@file{share/my-app/sub/file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8170 +#: guix-git/doc/guix.texi:8228 #, no-wrap msgid "@code{(\"foo/sub\" \"share/my-app\" #:include (\"file\"))}: Install @file{foo/sub/file} to" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8172 +#: guix-git/doc/guix.texi:8230 msgid "@file{share/my-app/file}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8176 +#: guix-git/doc/guix.texi:8234 #, no-wrap msgid "Clojure (programming language)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8177 +#: guix-git/doc/guix.texi:8235 #, no-wrap msgid "simple Clojure build system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8178 +#: guix-git/doc/guix.texi:8236 #, no-wrap msgid "{Scheme Variable} clojure-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8183 +#: guix-git/doc/guix.texi:8241 msgid "This variable is exported by @code{(guix build-system clojure)}. It implements a simple build procedure for @uref{https://clojure.org/, Clojure} packages using plain old @code{compile} in Clojure. Cross-compilation is not supported yet." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8187 +#: guix-git/doc/guix.texi:8245 msgid "It adds @code{clojure}, @code{icedtea} and @code{zip} to the set of inputs. Different packages can be specified with the @code{#:clojure}, @code{#:jdk} and @code{#:zip} parameters, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8193 +#: guix-git/doc/guix.texi:8251 msgid "A list of source directories, test directories and jar names can be specified with the @code{#:source-dirs}, @code{#:test-dirs} and @code{#:jar-names} parameters, respectively. Compile directory and main class can be specified with the @code{#:compile-dir} and @code{#:main-class} parameters, respectively. Other parameters are documented below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8196 +#: guix-git/doc/guix.texi:8254 msgid "This build system is an extension of @code{ant-build-system}, but with the following phases changed:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8199 guix-git/doc/guix.texi:8773 -#: guix-git/doc/guix.texi:8822 guix-git/doc/guix.texi:8891 -#: guix-git/doc/guix.texi:35042 guix-git/doc/guix.texi:37668 +#: guix-git/doc/guix.texi:8257 guix-git/doc/guix.texi:8830 +#: guix-git/doc/guix.texi:8879 guix-git/doc/guix.texi:8952 +#: guix-git/doc/guix.texi:35481 guix-git/doc/guix.texi:38147 #, no-wrap msgid "build" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8208 +#: guix-git/doc/guix.texi:8266 msgid "This phase calls @code{compile} in Clojure to compile source files and runs @command{jar} to create jars from both source files and compiled files according to the include list and exclude list specified in @code{#:aot-include} and @code{#:aot-exclude}, respectively. The exclude list has priority over the include list. These lists consist of symbols representing Clojure libraries or the special keyword @code{#:all} representing all Clojure libraries found under the source directories. The parameter @code{#:omit-source?} decides if source should be included into the jars." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8209 guix-git/doc/guix.texi:8777 -#: guix-git/doc/guix.texi:8896 +#: guix-git/doc/guix.texi:8267 guix-git/doc/guix.texi:8834 +#: guix-git/doc/guix.texi:8957 #, no-wrap msgid "check" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8216 +#: guix-git/doc/guix.texi:8274 msgid "This phase runs tests according to the include list and exclude list specified in @code{#:test-include} and @code{#:test-exclude}, respectively. Their meanings are analogous to that of @code{#:aot-include} and @code{#:aot-exclude}, except that the special keyword @code{#:all} now stands for all Clojure libraries found under the test directories. The parameter @code{#:tests?} decides if tests should be run." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8217 guix-git/doc/guix.texi:8783 -#: guix-git/doc/guix.texi:8826 guix-git/doc/guix.texi:8902 +#: guix-git/doc/guix.texi:8275 guix-git/doc/guix.texi:8840 +#: guix-git/doc/guix.texi:8883 guix-git/doc/guix.texi:8963 #, no-wrap msgid "install" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8219 +#: guix-git/doc/guix.texi:8277 msgid "This phase installs all jars built previously." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8222 +#: guix-git/doc/guix.texi:8280 msgid "Apart from the above, this build system also contains an additional phase:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8225 +#: guix-git/doc/guix.texi:8283 #, no-wrap msgid "install-doc" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8230 +#: guix-git/doc/guix.texi:8288 msgid "This phase installs all top-level files with base name matching @code{%doc-regex}. A different regex can be specified with the @code{#:doc-regex} parameter. All files (recursively) inside the documentation directories specified in @code{#:doc-dirs} are installed as well." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8233 +#: guix-git/doc/guix.texi:8291 #, no-wrap msgid "{Scheme Variable} cmake-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8237 +#: guix-git/doc/guix.texi:8295 msgid "This variable is exported by @code{(guix build-system cmake)}. It implements the build procedure for packages using the @url{https://www.cmake.org, CMake build tool}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8241 +#: guix-git/doc/guix.texi:8299 msgid "It automatically adds the @code{cmake} package to the set of inputs. Which package is used can be specified with the @code{#:cmake} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8248 +#: guix-git/doc/guix.texi:8306 msgid "The @code{#:configure-flags} parameter is taken as a list of flags passed to the @command{cmake} command. The @code{#:build-type} parameter specifies in abstract terms the flags passed to the compiler; it defaults to @code{\"RelWithDebInfo\"} (short for ``release mode with debugging information''), which roughly means that code is compiled with @code{-O2 -g}, as is the case for Autoconf-based packages by default." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8250 +#: guix-git/doc/guix.texi:8308 #, no-wrap msgid "{Scheme Variable} dune-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8257 +#: guix-git/doc/guix.texi:8315 msgid "This variable is exported by @code{(guix build-system dune)}. It supports builds of packages using @uref{https://dune.build/, Dune}, a build tool for the OCaml programming language. It is implemented as an extension of the @code{ocaml-build-system} which is described below. As such, the @code{#:ocaml} and @code{#:findlib} parameters can be passed to this build system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8261 +#: guix-git/doc/guix.texi:8319 msgid "It automatically adds the @code{dune} package to the set of inputs. Which package is used can be specified with the @code{#:dune} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8265 +#: guix-git/doc/guix.texi:8323 msgid "There is no @code{configure} phase because dune packages typically don't need to be configured. The @code{#:build-flags} parameter is taken as a list of flags passed to the @code{dune} command during the build." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8269 +#: guix-git/doc/guix.texi:8327 msgid "The @code{#:jbuild?} parameter can be passed to use the @code{jbuild} command instead of the more recent @code{dune} command while building a package. Its default value is @code{#f}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8274 +#: guix-git/doc/guix.texi:8332 msgid "The @code{#:package} parameter can be passed to specify a package name, which is useful when a package contains multiple packages and you want to build only one of them. This is equivalent to passing the @code{-p} argument to @code{dune}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8277 +#: guix-git/doc/guix.texi:8335 #, no-wrap msgid "{Scheme Variable} go-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8282 +#: guix-git/doc/guix.texi:8340 msgid "This variable is exported by @code{(guix build-system go)}. It implements a build procedure for Go packages using the standard @url{https://golang.org/cmd/go/#hdr-Compile_packages_and_dependencies, Go build mechanisms}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8293 +#: guix-git/doc/guix.texi:8351 msgid "The user is expected to provide a value for the key @code{#:import-path} and, in some cases, @code{#:unpack-path}. The @url{https://golang.org/doc/code.html#ImportPaths, import path} corresponds to the file system path expected by the package's build scripts and any referring packages, and provides a unique way to refer to a Go package. It is typically based on a combination of the package source code's remote URI and file system hierarchy structure. In some cases, you will need to unpack the package's source code to a different directory structure than the one indicated by the import path, and @code{#:unpack-path} should be used in such cases." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8298 +#: guix-git/doc/guix.texi:8356 msgid "Packages that provide Go libraries should install their source code into the built output. The key @code{#:install-source?}, which defaults to @code{#t}, controls whether or not the source code is installed. It can be set to @code{#f} for packages that only provide executable files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8305 +#: guix-git/doc/guix.texi:8363 msgid "Packages can be cross-built, and if a specific architecture or operating system is desired then the keywords @code{#:goarch} and @code{#:goos} can be used to force the package to be built for that architecture and operating system. The combinations known to Go can be found @url{\"https://golang.org/doc/install/source#environment\", in their documentation}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8307 +#: guix-git/doc/guix.texi:8365 #, no-wrap msgid "{Scheme Variable} glib-or-gtk-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8310 +#: guix-git/doc/guix.texi:8368 msgid "This variable is exported by @code{(guix build-system glib-or-gtk)}. It is intended for use with packages making use of GLib or GTK+." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8313 +#: guix-git/doc/guix.texi:8371 msgid "This build system adds the following two phases to the ones defined by @code{gnu-build-system}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8315 guix-git/doc/guix.texi:8799 +#: guix-git/doc/guix.texi:8373 guix-git/doc/guix.texi:8856 #, no-wrap msgid "glib-or-gtk-wrap" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8322 +#: guix-git/doc/guix.texi:8380 msgid "The phase @code{glib-or-gtk-wrap} ensures that programs in @file{bin/} are able to find GLib ``schemas'' and @uref{https://developer.gnome.org/gtk3/stable/gtk-running.html, GTK+ modules}. This is achieved by wrapping the programs in launch scripts that appropriately set the @env{XDG_DATA_DIRS} and @env{GTK_PATH} environment variables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8329 +#: guix-git/doc/guix.texi:8387 msgid "It is possible to exclude specific package outputs from that wrapping process by listing their names in the @code{#:glib-or-gtk-wrap-excluded-outputs} parameter. This is useful when an output is known not to contain any GLib or GTK+ binaries, and where wrapping would gratuitously add a dependency of that output on GLib and GTK+." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8330 guix-git/doc/guix.texi:8803 +#: guix-git/doc/guix.texi:8388 guix-git/doc/guix.texi:8860 #, no-wrap msgid "glib-or-gtk-compile-schemas" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8338 +#: guix-git/doc/guix.texi:8396 msgid "The phase @code{glib-or-gtk-compile-schemas} makes sure that all @uref{https://developer.gnome.org/gio/stable/glib-compile-schemas.html, GSettings schemas} of GLib are compiled. Compilation is performed by the @command{glib-compile-schemas} program. It is provided by the package @code{glib:bin} which is automatically imported by the build system. The @code{glib} package providing @command{glib-compile-schemas} can be specified with the @code{#:glib} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8341 +#: guix-git/doc/guix.texi:8399 msgid "Both phases are executed after the @code{install} phase." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8343 +#: guix-git/doc/guix.texi:8401 #, no-wrap msgid "{Scheme Variable} guile-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8350 +#: guix-git/doc/guix.texi:8408 msgid "This build system is for Guile packages that consist exclusively of Scheme code and that are so lean that they don't even have a makefile, let alone a @file{configure} script. It compiles Scheme code using @command{guild compile} (@pxref{Compilation,,, guile, GNU Guile Reference Manual}) and installs the @file{.scm} and @file{.go} files in the right place. It also installs documentation." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8353 +#: guix-git/doc/guix.texi:8411 msgid "This build system supports cross-compilation by using the @option{--target} option of @samp{guild compile}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8356 +#: guix-git/doc/guix.texi:8414 msgid "Packages built with @code{guile-build-system} must provide a Guile package in their @code{native-inputs} field." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8358 +#: guix-git/doc/guix.texi:8416 #, no-wrap msgid "{Scheme Variable} julia-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8365 +#: guix-git/doc/guix.texi:8423 msgid "This variable is exported by @code{(guix build-system julia)}. It implements the build procedure used by @uref{https://julialang.org/, julia} packages, which essentially is similar to running @samp{julia -e 'using Pkg; Pkg.add(package)'} in an environment where @env{JULIA_LOAD_PATH} contains the paths to all Julia package inputs. Tests are run by calling @code{/test/runtests.jl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8369 -msgid "The Julia package name is read from the file @file{Project.toml}. This value can be overridden by passing the argument @code{#:julia-package-name} (which must be correctly capitalized)." +#: guix-git/doc/guix.texi:8428 +msgid "The Julia package name and uuid is read from the file @file{Project.toml}. These values can be overridden by passing the argument @code{#:julia-package-name} (which must be correctly capitalized) or @code{#:julia-package-uuid}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8373 +#: guix-git/doc/guix.texi:8432 msgid "Julia packages usually manage their binary dependencies via @code{JLLWrappers.jl}, a Julia package that creates a module (named after the wrapped library followed by @code{_jll.jl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8378 +#: guix-git/doc/guix.texi:8437 msgid "To add the binary path @code{_jll.jl} packages, you need to patch the files under @file{src/wrappers/}, replacing the call to the macro @code{JLLWrappers.@@generate_wrapper_header}, adding as a second argument containing the store path the binary." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8382 +#: guix-git/doc/guix.texi:8441 msgid "As an example, in the MbedTLS Julia package, we add a build phase (@pxref{Build Phases}) to insert the absolute file name of the wrapped MbedTLS package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8394 +#: guix-git/doc/guix.texi:8453 #, no-wrap msgid "" "(add-after 'unpack 'override-binary-path\n" @@ -16297,655 +16411,666 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8402 -msgid "Some older packages that aren't using @file{Package.toml} yet, will require this file to be created, too. The function @code{julia-create-package-toml} helps creating the file. You need to pass the outputs and the source of the package, its name (the same as the @code{file-name} parameter), the package uuid, the package version, and a list of dependencies specified by their name and their uuid." +#: guix-git/doc/guix.texi:8459 +msgid "Some older packages that aren't using @file{Project.toml} yet, will require this file to be created, too. It is internally done if the arguments @code{#:julia-package-name} and @code{#:julia-package-uuid} are provided." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8404 +#: guix-git/doc/guix.texi:8461 #, no-wrap msgid "{Scheme Variable} maven-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8411 +#: guix-git/doc/guix.texi:8468 msgid "This variable is exported by @code{(guix build-system maven)}. It implements a build procedure for @uref{https://maven.apache.org, Maven} packages. Maven is a dependency and lifecycle management tool for Java. A user of Maven specifies dependencies and plugins in a @file{pom.xml} file that Maven reads. When Maven does not have one of the dependencies or plugins in its repository, it will download them and use them to build the package." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8421 +#: guix-git/doc/guix.texi:8478 msgid "The maven build system ensures that maven will not try to download any dependency by running in offline mode. Maven will fail if a dependency is missing. Before running Maven, the @file{pom.xml} (and subprojects) are modified to specify the version of dependencies and plugins that match the versions available in the guix build environment. Dependencies and plugins must be installed in the fake maven repository at @file{lib/m2}, and are symlinked into a proper repository before maven is run. Maven is instructed to use that repository for the build and installs built artifacts there. Changed files are copied to the @file{lib/m2} directory of the package output." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8424 +#: guix-git/doc/guix.texi:8481 msgid "You can specify a @file{pom.xml} file with the @code{#:pom-file} argument, or let the build system use the default @file{pom.xml} file in the sources." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8430 +#: guix-git/doc/guix.texi:8487 msgid "In case you need to specify a dependency's version manually, you can use the @code{#:local-packages} argument. It takes an association list where the key is the groupId of the package and its value is an association list where the key is the artifactId of the package and its value is the version you want to override in the @file{pom.xml}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8436 +#: guix-git/doc/guix.texi:8493 msgid "Some packages use dependencies or plugins that are not useful at runtime nor at build time in Guix. You can alter the @file{pom.xml} file to remove them using the @code{#:exclude} argument. Its value is an association list where the key is the groupId of the plugin or dependency you want to remove, and the value is a list of artifactId you want to remove." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8439 +#: guix-git/doc/guix.texi:8496 msgid "You can override the default @code{jdk} and @code{maven} packages with the corresponding argument, @code{#:jdk} and @code{#:maven}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8444 +#: guix-git/doc/guix.texi:8501 msgid "The @code{#:maven-plugins} argument is a list of maven plugins used during the build, with the same format as the @code{inputs} fields of the package declaration. Its default value is @code{(default-maven-plugins)} which is also exported." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8446 +#: guix-git/doc/guix.texi:8503 #, no-wrap msgid "{Scheme Variable} minetest-mod-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8452 +#: guix-git/doc/guix.texi:8509 msgid "This variable is exported by @code{(guix build-system minetest)}. It implements a build procedure for @uref{https://www.minetest.net, Minetest} mods, which consists of copying Lua code, images and other resources to the location Minetest searches for mods. The build system also minimises PNG images and verifies that Minetest can load the mod without errors." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8454 +#: guix-git/doc/guix.texi:8511 #, no-wrap msgid "{Scheme Variable} minify-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8457 +#: guix-git/doc/guix.texi:8514 msgid "This variable is exported by @code{(guix build-system minify)}. It implements a minification procedure for simple JavaScript packages." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8463 +#: guix-git/doc/guix.texi:8520 msgid "It adds @code{uglify-js} to the set of inputs and uses it to compress all JavaScript files in the @file{src} directory. A different minifier package can be specified with the @code{#:uglify-js} parameter, but it is expected that the package writes the minified code to the standard output." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8467 +#: guix-git/doc/guix.texi:8524 msgid "When the input JavaScript files are not all located in the @file{src} directory, the parameter @code{#:javascript-files} can be used to specify a list of file names to feed to the minifier." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8469 +#: guix-git/doc/guix.texi:8526 #, no-wrap msgid "{Scheme Variable} ocaml-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8475 +#: guix-git/doc/guix.texi:8532 msgid "This variable is exported by @code{(guix build-system ocaml)}. It implements a build procedure for @uref{https://ocaml.org, OCaml} packages, which consists of choosing the correct set of commands to run for each package. OCaml packages can expect many different commands to be run. This build system will try some of them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8485 +#: guix-git/doc/guix.texi:8542 msgid "When the package has a @file{setup.ml} file present at the top-level, it will run @code{ocaml setup.ml -configure}, @code{ocaml setup.ml -build} and @code{ocaml setup.ml -install}. The build system will assume that this file was generated by @uref{http://oasis.forge.ocamlcore.org/, OASIS} and will take care of setting the prefix and enabling tests if they are not disabled. You can pass configure and build flags with the @code{#:configure-flags} and @code{#:build-flags}. The @code{#:test-flags} key can be passed to change the set of flags used to enable tests. The @code{#:use-make?} key can be used to bypass this system in the build and install phases." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8490 +#: guix-git/doc/guix.texi:8547 msgid "When the package has a @file{configure} file, it is assumed that it is a hand-made configure script that requires a different argument format than in the @code{gnu-build-system}. You can add more flags with the @code{#:configure-flags} key." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8494 +#: guix-git/doc/guix.texi:8551 msgid "When the package has a @file{Makefile} file (or @code{#:use-make?} is @code{#t}), it will be used and more flags can be passed to the build and install phases with the @code{#:make-flags} key." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8502 +#: guix-git/doc/guix.texi:8559 msgid "Finally, some packages do not have these files and use a somewhat standard location for its build system. In that case, the build system will run @code{ocaml pkg/pkg.ml} or @code{ocaml pkg/build.ml} and take care of providing the path to the required findlib module. Additional flags can be passed via the @code{#:build-flags} key. Install is taken care of by @command{opam-installer}. In this case, the @code{opam} package must be added to the @code{native-inputs} field of the package definition." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8510 +#: guix-git/doc/guix.texi:8567 msgid "Note that most OCaml packages assume they will be installed in the same directory as OCaml, which is not what we want in guix. In particular, they will install @file{.so} files in their module's directory, which is usually fine because it is in the OCaml compiler directory. In guix though, these libraries cannot be found and we use @env{CAML_LD_LIBRARY_PATH}. This variable points to @file{lib/ocaml/site-lib/stubslibs} and this is where @file{.so} libraries should be installed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8512 +#: guix-git/doc/guix.texi:8569 #, no-wrap msgid "{Scheme Variable} python-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8517 +#: guix-git/doc/guix.texi:8574 msgid "This variable is exported by @code{(guix build-system python)}. It implements the more or less standard build procedure used by Python packages, which consists in running @code{python setup.py build} and then @code{python setup.py install --prefix=/gnu/store/@dots{}}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8522 +#: guix-git/doc/guix.texi:8579 msgid "For packages that install stand-alone Python programs under @code{bin/}, it takes care of wrapping these programs so that their @env{GUIX_PYTHONPATH} environment variable points to all the Python libraries they depend on." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8528 +#: guix-git/doc/guix.texi:8585 msgid "Which Python package is used to perform the build can be specified with the @code{#:python} parameter. This is a useful way to force a package to be built for a specific version of the Python interpreter, which might be necessary if the package is only compatible with a single interpreter version." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8533 +#: guix-git/doc/guix.texi:8590 msgid "By default guix calls @code{setup.py} under control of @code{setuptools}, much like @command{pip} does. Some packages are not compatible with setuptools (and pip), thus you can disable this by setting the @code{#:use-setuptools?} parameter to @code{#f}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8539 +#: guix-git/doc/guix.texi:8596 msgid "If a @code{\"python\"} output is available, the package is installed into it instead of the default @code{\"out\"} output. This is useful for packages that include a Python package as only a part of the software, and thus want to combine the phases of @code{python-build-system} with another build system. Python bindings are a common usecase." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8542 +#: guix-git/doc/guix.texi:8599 #, no-wrap msgid "{Scheme Variable} perl-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8554 +#: guix-git/doc/guix.texi:8611 msgid "This variable is exported by @code{(guix build-system perl)}. It implements the standard build procedure for Perl packages, which either consists in running @code{perl Build.PL --prefix=/gnu/store/@dots{}}, followed by @code{Build} and @code{Build install}; or in running @code{perl Makefile.PL PREFIX=/gnu/store/@dots{}}, followed by @code{make} and @code{make install}, depending on which of @code{Build.PL} or @code{Makefile.PL} is present in the package distribution. Preference is given to the former if both @code{Build.PL} and @code{Makefile.PL} exist in the package distribution. This preference can be reversed by specifying @code{#t} for the @code{#:make-maker?} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8558 +#: guix-git/doc/guix.texi:8615 msgid "The initial @code{perl Makefile.PL} or @code{perl Build.PL} invocation passes flags specified by the @code{#:make-maker-flags} or @code{#:module-build-flags} parameter, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8560 +#: guix-git/doc/guix.texi:8617 msgid "Which Perl package is used can be specified with @code{#:perl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8562 +#: guix-git/doc/guix.texi:8619 #, no-wrap msgid "{Scheme Variable} renpy-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8566 +#: guix-git/doc/guix.texi:8623 msgid "This variable is exported by @code{(guix build-system renpy)}. It implements the more or less standard build procedure used by Ren'py games, which consists of loading @code{#:game} once, thereby creating bytecode for it." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8569 +#: guix-git/doc/guix.texi:8626 msgid "It further creates a wrapper script in @code{bin/} and a desktop entry in @code{share/applications}, both of which can be used to launch the game." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8573 +#: guix-git/doc/guix.texi:8630 msgid "Which Ren'py package is used can be specified with @code{#:renpy}. Games can also be installed in outputs other than ``out'' by using @code{#:output}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8575 +#: guix-git/doc/guix.texi:8632 #, no-wrap msgid "{Scheme Variable} qt-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8578 +#: guix-git/doc/guix.texi:8635 msgid "This variable is exported by @code{(guix build-system qt)}. It is intended for use with applications using Qt or KDE." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8581 +#: guix-git/doc/guix.texi:8638 msgid "This build system adds the following two phases to the ones defined by @code{cmake-build-system}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8583 +#: guix-git/doc/guix.texi:8640 #, no-wrap msgid "check-setup" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8590 +#: guix-git/doc/guix.texi:8647 msgid "The phase @code{check-setup} prepares the environment for running the checks as commonly used by Qt test programs. For now this only sets some environment variables: @code{QT_QPA_PLATFORM=offscreen}, @code{DBUS_FATAL_WARNINGS=0} and @code{CTEST_OUTPUT_ON_FAILURE=1}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8593 +#: guix-git/doc/guix.texi:8650 msgid "This phase is added before the @code{check} phase. It's a separate phase to ease adjusting if necessary." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8594 +#: guix-git/doc/guix.texi:8651 #, no-wrap msgid "qt-wrap" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8600 +#: guix-git/doc/guix.texi:8657 msgid "The phase @code{qt-wrap} searches for Qt5 plugin paths, QML paths and some XDG in the inputs and output. In case some path is found, all programs in the output's @file{bin/}, @file{sbin/}, @file{libexec/} and @file{lib/libexec/} directories are wrapped in scripts defining the necessary environment variables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8606 +#: guix-git/doc/guix.texi:8663 msgid "It is possible to exclude specific package outputs from that wrapping process by listing their names in the @code{#:qt-wrap-excluded-outputs} parameter. This is useful when an output is known not to contain any Qt binaries, and where wrapping would gratuitously add a dependency of that output on Qt, KDE, or such." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8608 +#: guix-git/doc/guix.texi:8665 msgid "This phase is added after the @code{install} phase." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8611 +#: guix-git/doc/guix.texi:8668 #, no-wrap msgid "{Scheme Variable} r-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8619 +#: guix-git/doc/guix.texi:8676 msgid "This variable is exported by @code{(guix build-system r)}. It implements the build procedure used by @uref{https://r-project.org, R} packages, which essentially is little more than running @samp{R CMD INSTALL --library=/gnu/store/@dots{}} in an environment where @env{R_LIBS_SITE} contains the paths to all R package inputs. Tests are run after installation using the R function @code{tools::testInstalledPackage}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8621 +#: guix-git/doc/guix.texi:8678 #, no-wrap msgid "{Scheme Variable} rakudo-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8629 +#: guix-git/doc/guix.texi:8686 msgid "This variable is exported by @code{(guix build-system rakudo)}. It implements the build procedure used by @uref{https://rakudo.org/, Rakudo} for @uref{https://perl6.org/, Perl6} packages. It installs the package to @code{/gnu/store/@dots{}/NAME-VERSION/share/perl6} and installs the binaries, library files and the resources, as well as wrap the files under the @code{bin/} directory. Tests can be skipped by passing @code{#f} to the @code{tests?} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8637 +#: guix-git/doc/guix.texi:8694 msgid "Which rakudo package is used can be specified with @code{rakudo}. Which perl6-tap-harness package used for the tests can be specified with @code{#:prove6} or removed by passing @code{#f} to the @code{with-prove6?} parameter. Which perl6-zef package used for tests and installing can be specified with @code{#:zef} or removed by passing @code{#f} to the @code{with-zef?} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8639 +#: guix-git/doc/guix.texi:8696 #, no-wrap msgid "{Scheme Variable} texlive-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8644 +#: guix-git/doc/guix.texi:8701 msgid "This variable is exported by @code{(guix build-system texlive)}. It is used to build TeX packages in batch mode with a specified engine. The build system sets the @env{TEXINPUTS} variable to find all TeX source files in the inputs." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8653 +#: guix-git/doc/guix.texi:8710 msgid "By default it runs @code{luatex} on all files ending on @code{ins}. A different engine and format can be specified with the @code{#:tex-format} argument. Different build targets can be specified with the @code{#:build-targets} argument, which expects a list of file names. The build system adds only @code{texlive-bin} and @code{texlive-latex-base} (both from @code{(gnu packages tex}) to the inputs. Both can be overridden with the arguments @code{#:texlive-bin} and @code{#:texlive-latex-base}, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8656 +#: guix-git/doc/guix.texi:8713 msgid "The @code{#:tex-directory} parameter tells the build system where to install the built files under the texmf tree." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8658 +#: guix-git/doc/guix.texi:8715 #, no-wrap msgid "{Scheme Variable} ruby-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8662 +#: guix-git/doc/guix.texi:8719 msgid "This variable is exported by @code{(guix build-system ruby)}. It implements the RubyGems build procedure used by Ruby packages, which involves running @code{gem build} followed by @code{gem install}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8670 +#: guix-git/doc/guix.texi:8727 msgid "The @code{source} field of a package that uses this build system typically references a gem archive, since this is the format that Ruby developers use when releasing their software. The build system unpacks the gem archive, potentially patches the source, runs the test suite, repackages the gem, and installs it. Additionally, directories and tarballs may be referenced to allow building unreleased gems from Git or a traditional source release tarball." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8674 +#: guix-git/doc/guix.texi:8731 msgid "Which Ruby package is used can be specified with the @code{#:ruby} parameter. A list of additional flags to be passed to the @command{gem} command can be specified with the @code{#:gem-flags} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8676 +#: guix-git/doc/guix.texi:8733 #, no-wrap msgid "{Scheme Variable} waf-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8682 +#: guix-git/doc/guix.texi:8739 msgid "This variable is exported by @code{(guix build-system waf)}. It implements a build procedure around the @code{waf} script. The common phases---@code{configure}, @code{build}, and @code{install}---are implemented by passing their names as arguments to the @code{waf} script." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8686 +#: guix-git/doc/guix.texi:8743 msgid "The @code{waf} script is executed by the Python interpreter. Which Python package is used to run the script can be specified with the @code{#:python} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8688 +#: guix-git/doc/guix.texi:8745 #, no-wrap msgid "{Scheme Variable} scons-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8694 +#: guix-git/doc/guix.texi:8751 msgid "This variable is exported by @code{(guix build-system scons)}. It implements the build procedure used by the SCons software construction tool. This build system runs @code{scons} to build the package, @code{scons test} to run tests, and then @code{scons install} to install the package." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8701 +#: guix-git/doc/guix.texi:8758 msgid "Additional flags to be passed to @code{scons} can be specified with the @code{#:scons-flags} parameter. The default build and install targets can be overridden with @code{#:build-targets} and @code{#:install-targets} respectively. The version of Python used to run SCons can be specified by selecting the appropriate SCons package with the @code{#:scons} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8703 +#: guix-git/doc/guix.texi:8760 #, no-wrap msgid "{Scheme Variable} haskell-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8717 +#: guix-git/doc/guix.texi:8774 msgid "This variable is exported by @code{(guix build-system haskell)}. It implements the Cabal build procedure used by Haskell packages, which involves running @code{runhaskell Setup.hs configure --prefix=/gnu/store/@dots{}} and @code{runhaskell Setup.hs build}. Instead of installing the package by running @code{runhaskell Setup.hs install}, to avoid trying to register libraries in the read-only compiler store directory, the build system uses @code{runhaskell Setup.hs copy}, followed by @code{runhaskell Setup.hs register}. In addition, the build system generates the package documentation by running @code{runhaskell Setup.hs haddock}, unless @code{#:haddock? #f} is passed. Optional Haddock parameters can be passed with the help of the @code{#:haddock-flags} parameter. If the file @code{Setup.hs} is not found, the build system looks for @code{Setup.lhs} instead." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8720 +#: guix-git/doc/guix.texi:8777 msgid "Which Haskell compiler is used can be specified with the @code{#:haskell} parameter which defaults to @code{ghc}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8722 +#: guix-git/doc/guix.texi:8779 #, no-wrap msgid "{Scheme Variable} dub-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8727 +#: guix-git/doc/guix.texi:8784 msgid "This variable is exported by @code{(guix build-system dub)}. It implements the Dub build procedure used by D packages, which involves running @code{dub build} and @code{dub run}. Installation is done by copying the files manually." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8730 +#: guix-git/doc/guix.texi:8787 msgid "Which D compiler is used can be specified with the @code{#:ldc} parameter which defaults to @code{ldc}." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:8733 +#: guix-git/doc/guix.texi:8790 msgid "emacs-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8733 +#: guix-git/doc/guix.texi:8790 #, no-wrap msgid "{Scheme Variable} emacs-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8737 +#: guix-git/doc/guix.texi:8794 msgid "This variable is exported by @code{(guix build-system emacs)}. It implements an installation procedure similar to the packaging system of Emacs itself (@pxref{Packages,,, emacs, The GNU Emacs Manual})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8743 +#: guix-git/doc/guix.texi:8800 msgid "It first creates the @code{@code{package}-autoloads.el} file, then it byte compiles all Emacs Lisp files. Differently from the Emacs packaging system, the Info documentation files are moved to the standard documentation directory and the @file{dir} file is deleted. The Elisp package files are installed directly under @file{share/emacs/site-lisp}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8745 +#: guix-git/doc/guix.texi:8802 #, no-wrap msgid "{Scheme Variable} font-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8751 +#: guix-git/doc/guix.texi:8808 msgid "This variable is exported by @code{(guix build-system font)}. It implements an installation procedure for font packages where upstream provides pre-compiled TrueType, OpenType, etc.@: font files that merely need to be copied into place. It copies font files to standard locations in the output directory." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8753 +#: guix-git/doc/guix.texi:8810 #, no-wrap msgid "{Scheme Variable} meson-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8757 +#: guix-git/doc/guix.texi:8814 msgid "This variable is exported by @code{(guix build-system meson)}. It implements the build procedure for packages that use @url{https://mesonbuild.com, Meson} as their build system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8761 +#: guix-git/doc/guix.texi:8818 msgid "It adds both Meson and @uref{https://ninja-build.org/, Ninja} to the set of inputs, and they can be changed with the parameters @code{#:meson} and @code{#:ninja} if needed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8764 +#: guix-git/doc/guix.texi:8821 msgid "This build system is an extension of @code{gnu-build-system}, but with the following phases changed to some specific for Meson:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8767 guix-git/doc/guix.texi:8818 -#: guix-git/doc/guix.texi:8886 +#: guix-git/doc/guix.texi:8824 guix-git/doc/guix.texi:8875 +#: guix-git/doc/guix.texi:8947 #, no-wrap msgid "configure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8772 +#: guix-git/doc/guix.texi:8829 msgid "The phase runs @code{meson} with the flags specified in @code{#:configure-flags}. The flag @option{--buildtype} is always set to @code{debugoptimized} unless something else is specified in @code{#:build-type}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8776 +#: guix-git/doc/guix.texi:8833 msgid "The phase runs @code{ninja} to build the package in parallel by default, but this can be changed with @code{#:parallel-build?}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8782 +#: guix-git/doc/guix.texi:8839 msgid "The phase runs @samp{meson test} with a base set of options that cannot be overridden. This base set of options can be extended via the @code{#:test-options} argument, for example to select or skip a specific test suite." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8785 +#: guix-git/doc/guix.texi:8842 msgid "The phase runs @code{ninja install} and can not be changed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8788 +#: guix-git/doc/guix.texi:8845 msgid "Apart from that, the build system also adds the following phases:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8791 +#: guix-git/doc/guix.texi:8848 #, no-wrap msgid "fix-runpath" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8798 +#: guix-git/doc/guix.texi:8855 msgid "This phase ensures that all binaries can find the libraries they need. It searches for required libraries in subdirectories of the package being built, and adds those to @code{RUNPATH} where needed. It also removes references to libraries left over from the build phase by @code{meson}, such as test dependencies, that aren't actually required for the program to run." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8802 guix-git/doc/guix.texi:8806 +#: guix-git/doc/guix.texi:8859 guix-git/doc/guix.texi:8863 msgid "This phase is the phase provided by @code{glib-or-gtk-build-system}, and it is not enabled by default. It can be enabled with @code{#:glib-or-gtk?}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8809 +#: guix-git/doc/guix.texi:8866 #, no-wrap msgid "{Scheme Variable} linux-module-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8811 +#: guix-git/doc/guix.texi:8868 msgid "@code{linux-module-build-system} allows building Linux kernel modules." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8815 +#: guix-git/doc/guix.texi:8872 msgid "This build system is an extension of @code{gnu-build-system}, but with the following phases changed:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8821 +#: guix-git/doc/guix.texi:8878 msgid "This phase configures the environment so that the Linux kernel's Makefile can be used to build the external kernel module." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8825 +#: guix-git/doc/guix.texi:8882 msgid "This phase uses the Linux kernel's Makefile in order to build the external kernel module." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8829 +#: guix-git/doc/guix.texi:8886 msgid "This phase uses the Linux kernel's Makefile in order to install the external kernel module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8834 +#: guix-git/doc/guix.texi:8891 msgid "It is possible and useful to specify the Linux kernel to use for building the module (in the @code{arguments} form of a package using the @code{linux-module-build-system}, use the key @code{#:linux} to specify it)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8836 +#: guix-git/doc/guix.texi:8893 #, no-wrap msgid "{Scheme Variable} node-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8841 +#: guix-git/doc/guix.texi:8898 msgid "This variable is exported by @code{(guix build-system node)}. It implements the build procedure used by @uref{https://nodejs.org, Node.js}, which implements an approximation of the @code{npm install} command, followed by an @code{npm test} command." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8845 +#: guix-git/doc/guix.texi:8902 msgid "Which Node.js package is used to interpret the @code{npm} commands can be specified with the @code{#:node} parameter which defaults to @code{node}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8851 +#: guix-git/doc/guix.texi:8908 msgid "Lastly, for packages that do not need anything as sophisticated, a ``trivial'' build system is provided. It is trivial in the sense that it provides basically no support: it does not pull any implicit inputs, and does not have a notion of build phases." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8852 +#: guix-git/doc/guix.texi:8909 #, no-wrap msgid "{Scheme Variable} trivial-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8854 +#: guix-git/doc/guix.texi:8911 msgid "This variable is exported by @code{(guix build-system trivial)}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8859 +#: guix-git/doc/guix.texi:8916 msgid "This build system requires a @code{#:builder} argument. This argument must be a Scheme expression that builds the package output(s)---as with @code{build-expression->derivation} (@pxref{Derivations, @code{build-expression->derivation}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8864 +#: guix-git/doc/guix.texi:8921 #, no-wrap msgid "build phases, for packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8870 +#: guix-git/doc/guix.texi:8927 msgid "Almost all package build systems implement a notion @dfn{build phases}: a sequence of actions that the build system executes, when you build the package, leading to the installed byproducts in the store. A notable exception is the ``bare-bones'' @code{trivial-build-system} (@pxref{Build Systems})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8874 +#: guix-git/doc/guix.texi:8931 msgid "As discussed in the previous section, those build systems provide a standard list of phases. For @code{gnu-build-system}, the main build phases are the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8876 +#: guix-git/doc/guix.texi:8933 +#, no-wrap +msgid "set-paths" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:8936 +msgid "Define search path environment variables for all the input packages, including @env{PATH} (@pxref{Search Paths})." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:8937 #, no-wrap msgid "unpack" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8880 +#: guix-git/doc/guix.texi:8941 msgid "Unpack the source tarball, and change the current directory to the extracted source tree. If the source is actually a directory, copy it to the build tree, and enter that directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8881 +#: guix-git/doc/guix.texi:8942 #, no-wrap msgid "patch-source-shebangs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8885 +#: guix-git/doc/guix.texi:8946 msgid "Patch shebangs encountered in source files so they refer to the right store file names. For instance, this changes @code{#!/bin/sh} to @code{#!/gnu/store/@dots{}-bash-4.3/bin/sh}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8890 +#: guix-git/doc/guix.texi:8951 msgid "Run the @file{configure} script with a number of default options, such as @option{--prefix=/gnu/store/@dots{}}, as well as the options specified by the @code{#:configure-flags} argument." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8895 +#: guix-git/doc/guix.texi:8956 msgid "Run @code{make} with the list of flags specified with @code{#:make-flags}. If the @code{#:parallel-build?} argument is true (the default), build with @code{make -j}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8901 +#: guix-git/doc/guix.texi:8962 msgid "Run @code{make check}, or some other target specified with @code{#:test-target}, unless @code{#:tests? #f} is passed. If the @code{#:parallel-tests?} argument is true (the default), run @code{make check -j}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8904 +#: guix-git/doc/guix.texi:8965 msgid "Run @code{make install} with the flags listed in @code{#:make-flags}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8905 +#: guix-git/doc/guix.texi:8966 #, no-wrap msgid "patch-shebangs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8907 +#: guix-git/doc/guix.texi:8968 msgid "Patch shebangs on the installed executable files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8908 +#: guix-git/doc/guix.texi:8969 #, no-wrap msgid "strip" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8912 +#: guix-git/doc/guix.texi:8973 msgid "Strip debugging symbols from ELF files (unless @code{#:strip-binaries?} is false), copying them to the @code{debug} output when available (@pxref{Installing Debugging Files})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8921 +#: guix-git/doc/guix.texi:8982 msgid "Other build systems have similar phases, with some variations. For example, @code{cmake-build-system} has same-named phases but its @code{configure} phases runs @code{cmake} instead of @code{./configure}. Others, such as @code{python-build-system}, have a wholly different list of standard phases. All this code runs on the @dfn{build side}: it is evaluated when you actually build the package, in a dedicated build process spawned by the build daemon (@pxref{Invoking guix-daemon})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8928 +#: guix-git/doc/guix.texi:8989 msgid "Build phases are represented as association lists or ``alists'' (@pxref{Association Lists,,, guile, GNU Guile Reference Manual}) where each key is a symbol for the name of the phase and the associated value is a procedure that accepts an arbitrary number of arguments. By convention, those procedures receive information about the build in the form of @dfn{keyword parameters}, which they can use or ignore." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:8929 +#: guix-git/doc/guix.texi:8990 #, no-wrap msgid "%standard-phases" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8935 +#: guix-git/doc/guix.texi:8996 msgid "For example, here is how @code{(guix build gnu-build-system)} defines @code{%standard-phases}, the variable holding its alist of build phases@footnote{We present a simplified view of those build phases, but do take a look at @code{(guix build gnu-build-system)} to see all the details!}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8938 +#: guix-git/doc/guix.texi:8999 #, no-wrap msgid "" ";; The build phases of 'gnu-build-system'.\n" @@ -16953,7 +17078,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8942 +#: guix-git/doc/guix.texi:9003 #, no-wrap msgid "" "(define* (unpack #:key source #:allow-other-keys)\n" @@ -16963,7 +17088,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8948 +#: guix-git/doc/guix.texi:9009 #, no-wrap msgid "" "(define* (configure #:key outputs #:allow-other-keys)\n" @@ -16975,7 +17100,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8952 +#: guix-git/doc/guix.texi:9013 #, no-wrap msgid "" "(define* (build #:allow-other-keys)\n" @@ -16985,7 +17110,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8959 +#: guix-git/doc/guix.texi:9020 #, no-wrap msgid "" "(define* (check #:key (test-target \"check\") (tests? #true)\n" @@ -16998,7 +17123,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8963 +#: guix-git/doc/guix.texi:9024 #, no-wrap msgid "" "(define* (install #:allow-other-keys)\n" @@ -17008,7 +17133,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8972 +#: guix-git/doc/guix.texi:9033 #, no-wrap msgid "" "(define %standard-phases\n" @@ -17022,38 +17147,38 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8982 +#: guix-git/doc/guix.texi:9043 msgid "This shows how @code{%standard-phases} is defined as a list of symbol/procedure pairs (@pxref{Pairs,,, guile, GNU Guile Reference Manual}). The first pair associates the @code{unpack} procedure with the @code{unpack} symbol---a name; the second pair defines the @code{configure} phase similarly, and so on. When building a package that uses @code{gnu-build-system} with its default list of phases, those phases are executed sequentially. You can see the name of each phase started and completed in the build log of packages that you build." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8988 +#: guix-git/doc/guix.texi:9049 msgid "Let's now look at the procedures themselves. Each one is defined with @code{define*}: @code{#:key} lists keyword parameters the procedure accepts, possibly with a default value, and @code{#:allow-other-keys} specifies that other keyword parameters are ignored (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9004 +#: guix-git/doc/guix.texi:9065 msgid "The @code{unpack} procedure honors the @code{source} parameter, which the build system uses to pass the file name of the source tarball (or version control checkout), and it ignores other parameters. The @code{configure} phase only cares about the @code{outputs} parameter, an alist mapping package output names to their store file name (@pxref{Packages with Multiple Outputs}). It extracts the file name of for @code{out}, the default output, and passes it to @command{./configure} as the installation prefix, meaning that @command{make install} will eventually copy all the files in that directory (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards}). @code{build} and @code{install} ignore all their arguments. @code{check} honors the @code{test-target} argument, which specifies the name of the Makefile target to run tests; it prints a message and skips tests when @code{tests?} is false." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9005 +#: guix-git/doc/guix.texi:9066 #, no-wrap msgid "build phases, customizing" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9014 +#: guix-git/doc/guix.texi:9075 msgid "The list of phases used for a particular package can be changed with the @code{#:phases} parameter of the build system. Changing the set of build phases boils down to building a new alist of phases based on the @code{%standard-phases} alist described above. This can be done with standard alist procedures such as @code{alist-delete} (@pxref{SRFI-1 Association Lists,,, guile, GNU Guile Reference Manual}); however, it is more convenient to do so with @code{modify-phases} (@pxref{Build Utilities, @code{modify-phases}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9019 +#: guix-git/doc/guix.texi:9080 msgid "Here is an example of a package definition that removes the @code{configure} phase of @code{%standard-phases} and inserts a new phase before the @code{build} phase, called @code{set-prefix-in-makefile}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9039 +#: guix-git/doc/guix.texi:9100 #, no-wrap msgid "" "(define-public example\n" @@ -17077,44 +17202,44 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9045 +#: guix-git/doc/guix.texi:9106 msgid "The new phase that is inserted is written as an anonymous procedure, introduced with @code{lambda*}; it honors the @code{outputs} parameter we have seen before. @xref{Build Utilities}, for more about the helpers used by this phase, and for more examples of @code{modify-phases}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9046 guix-git/doc/guix.texi:10046 +#: guix-git/doc/guix.texi:9107 guix-git/doc/guix.texi:10360 #, no-wrap msgid "code staging" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9047 guix-git/doc/guix.texi:10047 +#: guix-git/doc/guix.texi:9108 guix-git/doc/guix.texi:10361 #, no-wrap msgid "staging, of code" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9054 +#: guix-git/doc/guix.texi:9115 msgid "Keep in mind that build phases are code evaluated at the time the package is actually built. This explains why the whole @code{modify-phases} expression above is quoted (it comes after the @code{'} or apostrophe): it is @dfn{staged} for later execution. @xref{G-Expressions}, for an explanation of code staging and the @dfn{code strata} involved." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9064 +#: guix-git/doc/guix.texi:9125 msgid "As soon as you start writing non-trivial package definitions (@pxref{Defining Packages}) or other build actions (@pxref{G-Expressions}), you will likely start looking for helpers for ``shell-like'' actions---creating directories, copying and deleting files recursively, manipulating build phases, and so on. The @code{(guix build utils)} module provides such utility procedures." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9068 +#: guix-git/doc/guix.texi:9129 msgid "Most build systems load @code{(guix build utils)} (@pxref{Build Systems}). Thus, when writing custom build phases for your package definitions, you can usually assume those procedures are in scope." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9073 +#: guix-git/doc/guix.texi:9134 msgid "When writing G-expressions, you can import @code{(guix build utils)} on the ``build side'' using @code{with-imported-modules} and then put it in scope with the @code{use-modules} form (@pxref{Using Guile Modules,,, guile, GNU Guile Reference Manual}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9080 +#: guix-git/doc/guix.texi:9141 #, no-wrap msgid "" "(with-imported-modules '((guix build utils)) ;import it\n" @@ -17126,7 +17251,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9083 +#: guix-git/doc/guix.texi:9144 #, no-wrap msgid "" " ;; Happily use its 'mkdir-p' procedure.\n" @@ -17134,238 +17259,238 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9087 +#: guix-git/doc/guix.texi:9148 msgid "The remainder of this section is the reference for most of the utility procedures provided by @code{(guix build utils)}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9090 +#: guix-git/doc/guix.texi:9151 #, no-wrap msgid "Dealing with Store File Names" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9093 +#: guix-git/doc/guix.texi:9154 msgid "This section documents procedures that deal with store file names." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9094 +#: guix-git/doc/guix.texi:9155 #, no-wrap msgid "{Scheme Procedure} %store-directory" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9096 +#: guix-git/doc/guix.texi:9157 msgid "Return the directory name of the store." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9098 +#: guix-git/doc/guix.texi:9159 #, no-wrap msgid "{Scheme Procedure} store-file-name? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9100 +#: guix-git/doc/guix.texi:9161 msgid "Return true if @var{file} is in the store." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9102 +#: guix-git/doc/guix.texi:9163 #, no-wrap msgid "{Scheme Procedure} strip-store-file-name @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9105 +#: guix-git/doc/guix.texi:9166 msgid "Strip the @file{/gnu/store} and hash from @var{file}, a store file name. The result is typically a @code{\"@var{package}-@var{version}\"} string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9107 +#: guix-git/doc/guix.texi:9168 #, no-wrap msgid "{Scheme Procedure} package-name->name+version @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9112 +#: guix-git/doc/guix.texi:9173 msgid "Given @var{name}, a package name like @code{\"foo-0.9.1b\"}, return two values: @code{\"foo\"} and @code{\"0.9.1b\"}. When the version part is unavailable, @var{name} and @code{#f} are returned. The first hyphen followed by a digit is considered to introduce the version part." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9114 +#: guix-git/doc/guix.texi:9175 #, no-wrap msgid "File Types" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9117 +#: guix-git/doc/guix.texi:9178 msgid "The procedures below deal with files and file types." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9118 +#: guix-git/doc/guix.texi:9179 #, no-wrap msgid "{Scheme Procedure} directory-exists? @var{dir}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9120 +#: guix-git/doc/guix.texi:9181 msgid "Return @code{#t} if @var{dir} exists and is a directory." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9122 +#: guix-git/doc/guix.texi:9183 #, no-wrap msgid "{Scheme Procedure} executable-file? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9124 +#: guix-git/doc/guix.texi:9185 msgid "Return @code{#t} if @var{file} exists and is executable." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9126 +#: guix-git/doc/guix.texi:9187 #, no-wrap msgid "{Scheme Procedure} symbolic-link? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9128 +#: guix-git/doc/guix.texi:9189 msgid "Return @code{#t} if @var{file} is a symbolic link (aka. a ``symlink'')." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9130 +#: guix-git/doc/guix.texi:9191 #, no-wrap msgid "{Scheme Procedure} elf-file? @var{file}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9131 +#: guix-git/doc/guix.texi:9192 #, no-wrap msgid "{Scheme Procedure} ar-file? @var{file}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9132 +#: guix-git/doc/guix.texi:9193 #, no-wrap msgid "{Scheme Procedure} gzip-file? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9135 +#: guix-git/doc/guix.texi:9196 msgid "Return @code{#t} if @var{file} is, respectively, an ELF file, an @code{ar} archive (such as a @file{.a} static library), or a gzip file." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9137 +#: guix-git/doc/guix.texi:9198 #, no-wrap msgid "{Scheme Procedure} reset-gzip-timestamp @var{file} [#:keep-mtime? #t]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9141 +#: guix-git/doc/guix.texi:9202 msgid "If @var{file} is a gzip file, reset its embedded timestamp (as with @command{gzip --no-name}) and return true. Otherwise return @code{#f}. When @var{keep-mtime?} is true, preserve @var{file}'s modification time." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9143 +#: guix-git/doc/guix.texi:9204 #, no-wrap msgid "File Manipulation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9150 +#: guix-git/doc/guix.texi:9211 msgid "The following procedures and macros help create, modify, and delete files. They provide functionality comparable to common shell utilities such as @command{mkdir -p}, @command{cp -r}, @command{rm -r}, and @command{sed}. They complement Guile's extensive, but low-level, file system interface (@pxref{POSIX,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9151 +#: guix-git/doc/guix.texi:9212 #, no-wrap msgid "{Scheme Syntax} with-directory-excursion @var{directory} @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9153 +#: guix-git/doc/guix.texi:9214 msgid "Run @var{body} with @var{directory} as the process's current directory." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9160 +#: guix-git/doc/guix.texi:9221 msgid "Essentially, this macro changes the current directory to @var{directory} before evaluating @var{body}, using @code{chdir} (@pxref{Processes,,, guile, GNU Guile Reference Manual}). It changes back to the initial directory when the dynamic extent of @var{body} is left, be it @i{via} normal procedure return or @i{via} a non-local exit such as an exception." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9162 +#: guix-git/doc/guix.texi:9223 #, no-wrap msgid "{Scheme Procedure} mkdir-p @var{dir}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9164 +#: guix-git/doc/guix.texi:9225 msgid "Create directory @var{dir} and all its ancestors." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9166 +#: guix-git/doc/guix.texi:9227 #, no-wrap msgid "{Scheme Procedure} install-file @var{file} @var{directory}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9169 +#: guix-git/doc/guix.texi:9230 msgid "Create @var{directory} if it does not exist and copy @var{file} in there under the same name." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9171 +#: guix-git/doc/guix.texi:9232 #, no-wrap msgid "{Scheme Procedure} make-file-writable @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9173 +#: guix-git/doc/guix.texi:9234 msgid "Make @var{file} writable for its owner." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9175 +#: guix-git/doc/guix.texi:9236 #, no-wrap msgid "{Scheme Procedure} copy-recursively @var{source} @var{destination} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9184 +#: guix-git/doc/guix.texi:9245 msgid "[#:log (current-output-port)] [#:follow-symlinks? #f] @ [#:copy-file copy-file] [#:keep-mtime? #f] [#:keep-permissions? #t] Copy @var{source} directory to @var{destination}. Follow symlinks if @var{follow-symlinks?} is true; otherwise, just preserve them. Call @var{copy-file} to copy regular files. When @var{keep-mtime?} is true, keep the modification time of the files in @var{source} on those of @var{destination}. When @var{keep-permissions?} is true, preserve file permissions. Write verbose output to the @var{log} port." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9186 +#: guix-git/doc/guix.texi:9247 #, no-wrap msgid "{Scheme Procedure} delete-file-recursively @var{dir} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9191 +#: guix-git/doc/guix.texi:9252 msgid "[#:follow-mounts? #f] Delete @var{dir} recursively, like @command{rm -rf}, without following symlinks. Don't follow mount points either, unless @var{follow-mounts?} is true. Report but ignore errors." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9193 +#: guix-git/doc/guix.texi:9254 #, no-wrap msgid "{Scheme Syntax} substitute* @var{file} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9198 +#: guix-git/doc/guix.texi:9259 msgid "((@var{regexp} @var{match-var}@dots{}) @var{body}@dots{}) @dots{} Substitute @var{regexp} in @var{file} by the string returned by @var{body}. @var{body} is evaluated with each @var{match-var} bound to the corresponding positional regexp sub-expression. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9205 +#: guix-git/doc/guix.texi:9266 #, no-wrap msgid "" "(substitute* file\n" @@ -17376,71 +17501,71 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9211 +#: guix-git/doc/guix.texi:9272 msgid "Here, anytime a line of @var{file} contains @code{hello}, it is replaced by @code{good morning}. Anytime a line of @var{file} matches the second regexp, @code{all} is bound to the complete match, @code{letters} is bound to the first sub-expression, and @code{end} is bound to the last one." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9214 +#: guix-git/doc/guix.texi:9275 msgid "When one of the @var{match-var} is @code{_}, no variable is bound to the corresponding match substring." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9217 +#: guix-git/doc/guix.texi:9278 msgid "Alternatively, @var{file} may be a list of file names, in which case they are all subject to the substitutions." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9220 +#: guix-git/doc/guix.texi:9281 msgid "Be careful about using @code{$} to match the end of a line; by itself it won't match the terminating newline of a line." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9222 +#: guix-git/doc/guix.texi:9283 #, no-wrap msgid "File Search" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9224 +#: guix-git/doc/guix.texi:9285 #, no-wrap msgid "file, searching" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9226 +#: guix-git/doc/guix.texi:9287 msgid "This section documents procedures to search and filter files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9227 +#: guix-git/doc/guix.texi:9288 #, no-wrap msgid "{Scheme Procedure} file-name-predicate @var{regexp}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9230 +#: guix-git/doc/guix.texi:9291 msgid "Return a predicate that returns true when passed a file name whose base name matches @var{regexp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9232 +#: guix-git/doc/guix.texi:9293 #, no-wrap msgid "{Scheme Procedure} find-files @var{dir} [@var{pred}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9243 +#: guix-git/doc/guix.texi:9304 msgid "[#:stat lstat] [#:directories? #f] [#:fail-on-error? #f] Return the lexicographically sorted list of files under @var{dir} for which @var{pred} returns true. @var{pred} is passed two arguments: the absolute file name, and its stat buffer; the default predicate always returns true. @var{pred} can also be a regular expression, in which case it is equivalent to @code{(file-name-predicate @var{pred})}. @var{stat} is used to obtain file information; using @code{lstat} means that symlinks are not followed. If @var{directories?} is true, then directories will also be included. If @var{fail-on-error?} is true, raise an exception upon error." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9247 +#: guix-git/doc/guix.texi:9308 msgid "Here are a few examples where we assume that the current directory is the root of the Guix source tree:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9252 +#: guix-git/doc/guix.texi:9313 #, no-wrap msgid "" ";; List all the regular files in the current directory.\n" @@ -17450,7 +17575,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9256 +#: guix-git/doc/guix.texi:9317 #, no-wrap msgid "" ";; List all the .scm files under gnu/services.\n" @@ -17460,7 +17585,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9260 +#: guix-git/doc/guix.texi:9321 #, no-wrap msgid "" ";; List ar files in the current directory.\n" @@ -17469,45 +17594,45 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9262 +#: guix-git/doc/guix.texi:9323 #, no-wrap msgid "{Scheme Procedure} which @var{program}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9265 +#: guix-git/doc/guix.texi:9326 msgid "Return the complete file name for @var{program} as found in @code{$PATH}, or @code{#f} if @var{program} could not be found." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9267 +#: guix-git/doc/guix.texi:9328 #, no-wrap msgid "{Scheme Procedure} search-input-file @var{inputs} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9268 +#: guix-git/doc/guix.texi:9329 #, no-wrap msgid "{Scheme Procedure} search-input-directory @var{inputs} @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9273 +#: guix-git/doc/guix.texi:9334 msgid "Return the complete file name for @var{name} as found in @var{inputs}; @code{search-input-file} searches for a regular file and @code{search-input-directory} searches for a directory. If @var{name} could not be found, an exception is raised." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9277 +#: guix-git/doc/guix.texi:9338 msgid "Here, @var{inputs} must be an association list like @code{inputs} and @code{native-inputs} as available to build phases (@pxref{Build Phases})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9281 +#: guix-git/doc/guix.texi:9342 msgid "Here is a (simplified) example of how @code{search-input-file} is used in a build phase of the @code{wireguard-tools} package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9290 +#: guix-git/doc/guix.texi:9351 #, no-wrap msgid "" "(add-after 'install 'wrap-wg-quick\n" @@ -17519,35 +17644,214 @@ msgid "" " `(\"PATH\" \":\" prefix ,(list coreutils))))))\n" msgstr "" +#. type: subsection +#: guix-git/doc/guix.texi:9353 +#, no-wrap +msgid "Program Invocation" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:9355 +#, no-wrap +msgid "program invocation, from Scheme" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:9356 +#, no-wrap +msgid "invoking programs, from Scheme" +msgstr "" + #. type: Plain text -#: guix-git/doc/guix.texi:9301 +#: guix-git/doc/guix.texi:9360 +msgid "You'll find handy procedures to spawn processes in this module, essentially convenient wrappers around Guile's @code{system*} (@pxref{Processes, @code{system*},, guile, GNU Guile Reference Manual})." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9361 +#, no-wrap +msgid "{Scheme Procedure} invoke @var{program} @var{args}@dots{}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9365 +msgid "Invoke @var{program} with the given @var{args}. Raise an @code{&invoke-error} exception if the exit code is non-zero; otherwise return @code{#t}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9369 +msgid "The advantage compared to @code{system*} is that you do not need to check the return value. This reduces boilerplate in shell-script-like snippets for instance in package build phases." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9371 +#, no-wrap +msgid "{Scheme Procedure} invoke-error? @var{c}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9373 +msgid "Return true if @var{c} is an @code{&invoke-error} condition." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9375 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-program @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9376 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-arguments @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9377 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-exit-status @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9378 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-term-signal @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9379 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-stop-signal @var{c}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9381 +msgid "Access specific fields of @var{c}, an @code{&invoke-error} condition." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9383 +#, no-wrap +msgid "{Scheme Procedure} report-invoke-error @var{c} [@var{port}]" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9386 +msgid "Report to @var{port} (by default the current error port) about @var{c}, an @code{&invoke-error} condition, in a human-friendly way." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9388 +msgid "Typical usage would look like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9392 +#, no-wrap +msgid "" +"(use-modules (srfi srfi-34) ;for 'guard'\n" +" (guix build utils))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9396 +#, no-wrap +msgid "" +"(guard (c ((invoke-error? c)\n" +" (report-invoke-error c)))\n" +" (invoke \"date\" \"--imaginary-option\"))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9398 +#, no-wrap +msgid "@print{} command \"date\" \"--imaginary-option\" failed with status 1\n" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9401 +#, no-wrap +msgid "{Scheme Procedure} invoke/quiet @var{program} @var{args}@dots{}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9407 +msgid "Invoke @var{program} with @var{args} and capture @var{program}'s standard output and standard error. If @var{program} succeeds, print nothing and return the unspecified value; otherwise, raise a @code{&message} error condition that includes the status code and the output of @var{program}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9409 +msgid "Here's an example:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9414 +#, no-wrap +msgid "" +"(use-modules (srfi srfi-34) ;for 'guard'\n" +" (srfi srfi-35) ;for 'message-condition?'\n" +" (guix build utils))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9419 +#, no-wrap +msgid "" +"(guard (c ((message-condition? c)\n" +" (display (condition-message c))))\n" +" (invoke/quiet \"date\") ;all is fine\n" +" (invoke/quiet \"date\" \"--imaginary-option\"))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9421 +#, no-wrap +msgid "" +"@print{} 'date --imaginary-option' exited with status 1; output follows:\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9424 +#, no-wrap +msgid "" +" date: unrecognized option '--imaginary-option'\n" +" Try 'date --help' for more information.\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9436 msgid "The @code{(guix build utils)} also contains tools to manipulate build phases as used by build systems (@pxref{Build Systems}). Build phases are represented as association lists or ``alists'' (@pxref{Association Lists,,, guile, GNU Guile Reference Manual}) where each key is a symbol naming the phase and the associated value is a procedure (@pxref{Build Phases})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9305 +#: guix-git/doc/guix.texi:9440 msgid "Guile core and the @code{(srfi srfi-1)} module both provide tools to manipulate alists. The @code{(guix build utils)} module complements those with tools written with build phases in mind." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9306 +#: guix-git/doc/guix.texi:9441 #, no-wrap msgid "build phases, modifying" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9307 +#: guix-git/doc/guix.texi:9442 #, no-wrap msgid "{Scheme Syntax} modify-phases @var{phases} @var{clause}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9310 +#: guix-git/doc/guix.texi:9445 msgid "Modify @var{phases} sequentially as per each @var{clause}, which may have one of the following forms:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9316 +#: guix-git/doc/guix.texi:9451 #, no-wrap msgid "" "(delete @var{old-phase-name})\n" @@ -17557,17 +17861,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9320 +#: guix-git/doc/guix.texi:9455 msgid "Where every @var{phase-name} above is an expression evaluating to a symbol, and @var{new-phase} an expression evaluating to a procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9331 +#: guix-git/doc/guix.texi:9466 msgid "The example below is taken from the definition of the @code{grep} package. It adds a phase to run after the @code{install} phase, called @code{fix-egrep-and-fgrep}. That phase is a procedure (@code{lambda*} is for anonymous procedures) that takes a @code{#:outputs} keyword argument and ignores extra keyword arguments (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual}, for more on @code{lambda*} and optional and keyword arguments.) The phase uses @code{substitute*} to modify the installed @file{egrep} and @file{fgrep} scripts so that they refer to @code{grep} by its absolute file name:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9345 +#: guix-git/doc/guix.texi:9480 #, no-wrap msgid "" "(modify-phases %standard-phases\n" @@ -17585,12 +17889,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9352 +#: guix-git/doc/guix.texi:9487 msgid "In the example below, phases are modified in two ways: the standard @code{configure} phase is deleted, presumably because the package does not have a @file{configure} script or anything similar, and the default @code{install} phase is replaced by one that manually copies the executable files to be installed:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9365 +#: guix-git/doc/guix.texi:9500 #, no-wrap msgid "" "(modify-phases %standard-phases\n" @@ -17607,377 +17911,605 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9373 +#: guix-git/doc/guix.texi:9507 +#, no-wrap +msgid "search path" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9514 +msgid "Many programs and libraries look for input data in a @dfn{search path}, a list of directories: shells like Bash look for executables in the command search path, a C compiler looks for @file{.h} files in its header search path, the Python interpreter looks for @file{.py} files in its search path, the spell checker has a search path for dictionaries, and so on." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9522 +msgid "Search paths can usually be defined or overridden @i{via} environment variables (@pxref{Environment Variables,,, libc, The GNU C Library Reference Manual}). For example, the search paths mentioned above can be changed by defining the @env{PATH}, @env{C_INCLUDE_PATH}, @env{PYTHONPATH} (or @env{GUIX_PYTHONPATH}), and @env{DICPATH} environment variables---you know, all these something-PATH variables that you need to get right or things ``won't be found''." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9532 +msgid "You may have noticed from the command line that Guix ``knows'' which search path environment variables should be defined, and how. When you install packages in your default profile, the file @file{~/.guix-profile/etc/profile} is created, which you can ``source'' from the shell to set those variables. Likewise, if you ask @command{guix shell} to create an environment containing Python and NumPy, a Python library, and if you pass it the @option{--search-paths} option, it will tell you about @env{PATH} and @env{GUIX_PYTHONPATH} (@pxref{Invoking guix shell}):" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9537 +#, no-wrap +msgid "" +"$ guix shell python python-numpy --pure --search-paths\n" +"export PATH=\"/gnu/store/@dots{}-profile/bin\"\n" +"export GUIX_PYTHONPATH=\"/gnu/store/@dots{}-profile/lib/python3.9/site-packages\"\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9541 +msgid "When you omit @option{--search-paths}, it defines these environment variables right away, such that Python can readily find NumPy:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9550 +#, no-wrap +msgid "" +"$ guix shell python python-numpy -- python3\n" +"Python 3.9.6 (default, Jan 1 1970, 00:00:01)\n" +"[GCC 10.3.0] on linux\n" +"Type \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n" +">>> import numpy\n" +">>> numpy.version.version\n" +"'1.20.3'\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9555 +msgid "For this to work, the definition of the @code{python} package @emph{declares} the search path it cares about and its associated environment variable, @env{GUIX_PYTHONPATH}. It looks like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9565 +#, no-wrap +msgid "" +"(package\n" +" (name \"python\")\n" +" (version \"3.9.9\")\n" +" ;; some fields omitted...\n" +" (native-search-paths\n" +" (list (search-path-specification\n" +" (variable \"GUIX_PYTHONPATH\")\n" +" (files (list \"lib/python/3.9/site-packages\"))))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9580 +msgid "What this @code{native-search-paths} field says is that, when the @code{python} package is used, the @env{GUIX_PYTHONPATH} environment variable must be defined to include all the @file{lib/python/3.9/site-packages} sub-directories encountered in its environment. (The @code{native-} bit means that, if we are in a cross-compilation environment, only native inputs may be added to the search path; @pxref{package Reference, @code{search-paths}}.) In the NumPy example above, the profile where @code{python} appears contains exactly one such sub-directory, and @env{GUIX_PYTHONPATH} is set to that. When there are several @file{lib/python/3.9/site-packages}---this is the case in package build environments---they are all added to @env{GUIX_PYTHONPATH}, separated by colons (@code{:})." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9587 +msgid "Notice that @env{GUIX_PYTHONPATH} is specified as part of the definition of the @code{python} package, and @emph{not} as part of that of @code{python-numpy}. This is because this environment variable ``belongs'' to Python, not NumPy: Python actually reads the value of that variable and honors it." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9591 +msgid "Corollary: if you create a profile that does not contain @code{python}, @code{GUIX_PYTHONPATH} will @emph{not} be defined, even if it contains packages that provide @file{.py} files:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9595 +#, no-wrap +msgid "" +"$ guix shell python-numpy --search-paths --pure\n" +"export PATH=\"/gnu/store/@dots{}-profile/bin\"\n" +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9599 +msgid "This makes a lot of sense if we look at this profile in isolation: no software in this profile would read @env{GUIX_PYTHONPATH}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9609 +msgid "Of course, there are many variations on that theme: some packages honor more than one search path, some use separators other than colon, some accumulate several directories in their search path, and so on. A more complex example is the search path of libxml2: the value of the @env{XML_CATALOG_FILES} environment variable is space-separated, it must contain a list of @file{catalog.xml} files (not directories), which are to be found in @file{xml} sub-directories---nothing less. The search path specification looks like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9621 +#, no-wrap +msgid "" +"(package\n" +" (name \"libxml2\")\n" +" ;; some fields omitted\n" +" (native-search-paths\n" +" (list (search-path-specification\n" +" (variable \"XML_CATALOG_FILES\")\n" +" (separator \" \")\n" +" (files '(\"xml\"))\n" +" (file-pattern \"^catalog\\\\.xml$\")\n" +" (file-type 'regular)))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9624 +msgid "Worry not, search path specifications are usually not this tricky." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9628 +msgid "The @code{(guix search-paths)} module defines the data type of search path specifications and a number of helper procedures. Below is the reference of search path specifications." +msgstr "" + +#. type: deftp +#: guix-git/doc/guix.texi:9629 +#, no-wrap +msgid "{Data Type} search-path-specification" +msgstr "" + +#. type: deftp +#: guix-git/doc/guix.texi:9631 +msgid "The data type for search path specifications." +msgstr "" + +#. type: code{#1} +#: guix-git/doc/guix.texi:9633 +#, no-wrap +msgid "variable" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9635 +msgid "The name of the environment variable for this search path (a string)." +msgstr "" + +#. type: code{#1} +#: guix-git/doc/guix.texi:9636 guix-git/doc/guix.texi:17482 +#, no-wrap +msgid "files" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9639 +msgid "The list of sub-directories (strings) that should be added to the search path." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9640 +#, no-wrap +msgid "@code{separator} (default: @code{\":\"})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9642 +msgid "The string used to separate search path components." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9650 +msgid "As a special case, a @code{separator} value of @code{#f} specifies a ``single-component search path''---in other words, a search path that cannot contain more than one element. This is useful in some cases, such as the @code{SSL_CERT_DIR} variable (honored by OpenSSL, cURL, and a few other packages) or the @code{ASPELL_DICT_DIR} variable (honored by the GNU Aspell spell checker), both of which must point to a single directory." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9651 +#, no-wrap +msgid "@code{file-type} (default: @code{'directory})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9655 +msgid "The type of file being matched---@code{'directory} or @code{'regular}, though it can be any symbol returned by @code{stat:type} (@pxref{File System, @code{stat},, guile, GNU Guile Reference Manual})." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9658 +msgid "In the libxml2 example above, we would match regular files; in the Python example, we would match directories." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9659 +#, no-wrap +msgid "@code{file-pattern} (default: @code{#f})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9663 +msgid "This must be either @code{#f} or a regular expression specifying files to be matched @emph{within} the sub-directories specified by the @code{files} field." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9665 +msgid "Again, the libxml2 example shows a situation where this is needed." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9671 +msgid "How do you turn search path specifications on one hand and a bunch of directories on the other hand in a set of environment variable definitions? That's the job of @code{evaluate-search-paths}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9672 +#, no-wrap +msgid "{Scheme Procedure} evaluate-search-paths @var{search-paths} @" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9678 +msgid "@var{directories} [@var{getenv}] Evaluate @var{search-paths}, a list of search-path specifications, for @var{directories}, a list of directory names, and return a list of specification/value pairs. Use @var{getenv} to determine the current settings and report only settings not already effective." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9682 +msgid "The @code{(guix profiles)} provides a higher-level helper procedure, @code{load-profile}, that sets the environment variables of a profile." +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:9687 #, no-wrap msgid "store items" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9374 +#: guix-git/doc/guix.texi:9688 #, no-wrap msgid "store paths" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9385 +#: guix-git/doc/guix.texi:9699 msgid "Conceptually, the @dfn{store} is the place where derivations that have been built successfully are stored---by default, @file{/gnu/store}. Sub-directories in the store are referred to as @dfn{store items} or sometimes @dfn{store paths}. The store has an associated database that contains information such as the store paths referred to by each store path, and the list of @emph{valid} store items---results of successful builds. This database resides in @file{@var{localstatedir}/guix/db}, where @var{localstatedir} is the state directory specified @i{via} @option{--localstatedir} at configure time, usually @file{/var}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9390 +#: guix-git/doc/guix.texi:9704 msgid "The store is @emph{always} accessed by the daemon on behalf of its clients (@pxref{Invoking guix-daemon}). To manipulate the store, clients connect to the daemon over a Unix-domain socket, send requests to it, and read the result---these are remote procedure calls, or RPCs." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:9395 +#: guix-git/doc/guix.texi:9709 msgid "Users must @emph{never} modify files under @file{/gnu/store} directly. This would lead to inconsistencies and break the immutability assumptions of Guix's functional model (@pxref{Introduction})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:9399 +#: guix-git/doc/guix.texi:9713 msgid "@xref{Invoking guix gc, @command{guix gc --verify}}, for information on how to check the integrity of the store and attempt recovery from accidental modifications." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9406 +#: guix-git/doc/guix.texi:9720 msgid "The @code{(guix store)} module provides procedures to connect to the daemon, and to perform RPCs. These are described below. By default, @code{open-connection}, and thus all the @command{guix} commands, connect to the local daemon or to the URI specified by the @env{GUIX_DAEMON_SOCKET} environment variable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9407 +#: guix-git/doc/guix.texi:9721 #, no-wrap msgid "{Environment Variable} GUIX_DAEMON_SOCKET" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9412 +#: guix-git/doc/guix.texi:9726 msgid "When set, the value of this variable should be a file name or a URI designating the daemon endpoint. When it is a file name, it denotes a Unix-domain socket to connect to. In addition to file names, the supported URI schemes are:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:9414 guix-git/doc/guix.texi:26183 +#: guix-git/doc/guix.texi:9728 guix-git/doc/guix.texi:26520 #, no-wrap msgid "file" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:9415 +#: guix-git/doc/guix.texi:9729 #, no-wrap msgid "unix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:9419 +#: guix-git/doc/guix.texi:9733 msgid "These are for Unix-domain sockets. @code{file:///var/guix/daemon-socket/socket} is equivalent to @file{/var/guix/daemon-socket/socket}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:9428 +#: guix-git/doc/guix.texi:9742 msgid "These URIs denote connections over TCP/IP, without encryption nor authentication of the remote host. The URI must specify the host name and optionally a port number (by default port 44146 is used):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9431 +#: guix-git/doc/guix.texi:9745 #, no-wrap msgid "guix://master.guix.example.org:1234\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:9436 +#: guix-git/doc/guix.texi:9750 msgid "This setup is suitable on local networks, such as clusters, where only trusted nodes may connect to the build daemon at @code{master.guix.example.org}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:9440 +#: guix-git/doc/guix.texi:9754 msgid "The @option{--listen} option of @command{guix-daemon} can be used to instruct it to listen for TCP connections (@pxref{Invoking guix-daemon, @option{--listen}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:9441 +#: guix-git/doc/guix.texi:9755 #, no-wrap msgid "ssh" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9442 +#: guix-git/doc/guix.texi:9756 #, no-wrap msgid "SSH access to build daemons" msgstr "" #. type: table -#: guix-git/doc/guix.texi:9448 +#: guix-git/doc/guix.texi:9762 msgid "These URIs allow you to connect to a remote daemon over SSH@. This feature requires Guile-SSH (@pxref{Requirements}) and a working @command{guile} binary in @env{PATH} on the destination machine. It supports public key and GSSAPI authentication. A typical URL might look like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9451 +#: guix-git/doc/guix.texi:9765 #, no-wrap msgid "ssh://charlie@@guix.example.org:22\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:9455 +#: guix-git/doc/guix.texi:9769 msgid "As for @command{guix copy}, the usual OpenSSH client configuration files are honored (@pxref{Invoking guix copy})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9458 +#: guix-git/doc/guix.texi:9772 msgid "Additional URI schemes may be supported in the future." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:9465 +#: guix-git/doc/guix.texi:9779 msgid "The ability to connect to remote build daemons is considered experimental as of @value{VERSION}. Please get in touch with us to share any problems or suggestions you may have (@pxref{Contributing})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9468 +#: guix-git/doc/guix.texi:9782 #, no-wrap msgid "{Scheme Procedure} open-connection [@var{uri}] [#:reserve-space? #t]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9473 +#: guix-git/doc/guix.texi:9787 msgid "Connect to the daemon over the Unix-domain socket at @var{uri} (a string). When @var{reserve-space?} is true, instruct it to reserve a little bit of extra space on the file system so that the garbage collector can still operate should the disk become full. Return a server object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9476 +#: guix-git/doc/guix.texi:9790 msgid "@var{file} defaults to @code{%default-socket-path}, which is the normal location given the options that were passed to @command{configure}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9478 +#: guix-git/doc/guix.texi:9792 #, no-wrap msgid "{Scheme Procedure} close-connection @var{server}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9480 +#: guix-git/doc/guix.texi:9794 msgid "Close the connection to @var{server}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9482 +#: guix-git/doc/guix.texi:9796 #, no-wrap msgid "{Scheme Variable} current-build-output-port" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9485 +#: guix-git/doc/guix.texi:9799 msgid "This variable is bound to a SRFI-39 parameter, which refers to the port where build and error logs sent by the daemon should be written." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9489 +#: guix-git/doc/guix.texi:9803 msgid "Procedures that make RPCs all take a server object as their first argument." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9490 +#: guix-git/doc/guix.texi:9804 #, no-wrap msgid "{Scheme Procedure} valid-path? @var{server} @var{path}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9491 +#: guix-git/doc/guix.texi:9805 #, no-wrap msgid "invalid store items" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9496 +#: guix-git/doc/guix.texi:9810 msgid "Return @code{#t} when @var{path} designates a valid store item and @code{#f} otherwise (an invalid item may exist on disk but still be invalid, for instance because it is the result of an aborted or failed build)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9499 +#: guix-git/doc/guix.texi:9813 msgid "A @code{&store-protocol-error} condition is raised if @var{path} is not prefixed by the store directory (@file{/gnu/store})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9501 +#: guix-git/doc/guix.texi:9815 #, no-wrap msgid "{Scheme Procedure} add-text-to-store @var{server} @var{name} @var{text} [@var{references}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9505 +#: guix-git/doc/guix.texi:9819 msgid "Add @var{text} under file @var{name} in the store, and return its store path. @var{references} is the list of store paths referred to by the resulting store path." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9507 +#: guix-git/doc/guix.texi:9821 #, no-wrap msgid "{Scheme Procedure} build-derivations @var{store} @var{derivations} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9512 +#: guix-git/doc/guix.texi:9826 msgid "[@var{mode}] Build @var{derivations}, a list of @code{} objects, @file{.drv} file names, or derivation/output pairs, using the specified @var{mode}---@code{(build-mode normal)} by default." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9518 +#: guix-git/doc/guix.texi:9832 msgid "Note that the @code{(guix monads)} module provides a monad as well as monadic versions of the above procedures, with the goal of making it more convenient to work with code that accesses the store (@pxref{The Store Monad})." msgstr "" #. type: i{#1} -#: guix-git/doc/guix.texi:9521 +#: guix-git/doc/guix.texi:9835 msgid "This section is currently incomplete." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9525 +#: guix-git/doc/guix.texi:9839 #, no-wrap msgid "derivations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9529 +#: guix-git/doc/guix.texi:9843 msgid "Low-level build actions and the environment in which they are performed are represented by @dfn{derivations}. A derivation contains the following pieces of information:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9534 +#: guix-git/doc/guix.texi:9848 msgid "The outputs of the derivation---derivations produce at least one file or directory in the store, but may produce more." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9536 +#: guix-git/doc/guix.texi:9850 #, no-wrap msgid "build-time dependencies" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9537 +#: guix-git/doc/guix.texi:9851 #, no-wrap msgid "dependencies, build-time" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9541 +#: guix-git/doc/guix.texi:9855 msgid "The inputs of the derivations---i.e., its build-time dependencies---which may be other derivations or plain files in the store (patches, build scripts, etc.)." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9544 +#: guix-git/doc/guix.texi:9858 msgid "The system type targeted by the derivation---e.g., @code{x86_64-linux}." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9548 +#: guix-git/doc/guix.texi:9862 msgid "The file name of a build script in the store, along with the arguments to be passed." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9551 +#: guix-git/doc/guix.texi:9865 msgid "A list of environment variables to be defined." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9554 +#: guix-git/doc/guix.texi:9868 #, no-wrap msgid "derivation path" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9562 +#: guix-git/doc/guix.texi:9876 msgid "Derivations allow clients of the daemon to communicate build actions to the store. They exist in two forms: as an in-memory representation, both on the client- and daemon-side, and as files in the store whose name end in @file{.drv}---these files are referred to as @dfn{derivation paths}. Derivations paths can be passed to the @code{build-derivations} procedure to perform the build actions they prescribe (@pxref{The Store})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9563 +#: guix-git/doc/guix.texi:9877 #, no-wrap msgid "fixed-output derivations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9570 +#: guix-git/doc/guix.texi:9884 msgid "Operations such as file downloads and version-control checkouts for which the expected content hash is known in advance are modeled as @dfn{fixed-output derivations}. Unlike regular derivations, the outputs of a fixed-output derivation are independent of its inputs---e.g., a source code download produces the same result regardless of the download method and tools being used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:9571 guix-git/doc/guix.texi:13341 +#: guix-git/doc/guix.texi:9885 guix-git/doc/guix.texi:13698 #, no-wrap msgid "references" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9572 +#: guix-git/doc/guix.texi:9886 #, no-wrap msgid "run-time dependencies" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9573 +#: guix-git/doc/guix.texi:9887 #, no-wrap msgid "dependencies, run-time" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9580 +#: guix-git/doc/guix.texi:9894 msgid "The outputs of derivations---i.e., the build results---have a set of @dfn{references}, as reported by the @code{references} RPC or the @command{guix gc --references} command (@pxref{Invoking guix gc}). References are the set of run-time dependencies of the build results. References are a subset of the inputs of the derivation; this subset is automatically computed by the build daemon by scanning all the files in the outputs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9585 +#: guix-git/doc/guix.texi:9899 msgid "The @code{(guix derivations)} module provides a representation of derivations as Scheme objects, along with procedures to create and otherwise manipulate derivations. The lowest-level primitive to create a derivation is the @code{derivation} procedure:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9586 +#: guix-git/doc/guix.texi:9900 #, no-wrap msgid "{Scheme Procedure} derivation @var{store} @var{name} @var{builder} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9595 +#: guix-git/doc/guix.texi:9909 msgid "@var{args} [#:outputs '(\"out\")] [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:inputs '()] [#:env-vars '()] @ [#:system (%current-system)] [#:references-graphs #f] @ [#:allowed-references #f] [#:disallowed-references #f] @ [#:leaked-env-vars #f] [#:local-build? #f] @ [#:substitutable? #t] [#:properties '()] Build a derivation with the given arguments, and return the resulting @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9602 +#: guix-git/doc/guix.texi:9916 msgid "When @var{hash} and @var{hash-algo} are given, a @dfn{fixed-output derivation} is created---i.e., one whose result is known in advance, such as a file download. If, in addition, @var{recursive?} is true, then that fixed output may be an executable file or a directory and @var{hash} must be the hash of an archive containing this output." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9607 +#: guix-git/doc/guix.texi:9921 msgid "When @var{references-graphs} is true, it must be a list of file name/store path pairs. In that case, the reference graph of each store path is exported in the build environment in the corresponding file, in a simple text format." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9612 +#: guix-git/doc/guix.texi:9926 msgid "When @var{allowed-references} is true, it must be a list of store items or outputs that the derivation's output may refer to. Likewise, @var{disallowed-references}, if true, must be a list of things the outputs may @emph{not} refer to." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9619 +#: guix-git/doc/guix.texi:9933 msgid "When @var{leaked-env-vars} is true, it must be a list of strings denoting environment variables that are allowed to ``leak'' from the daemon's environment to the build environment. This is only applicable to fixed-output derivations---i.e., when @var{hash} is true. The main use is to allow variables such as @code{http_proxy} to be passed to derivations that download files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9624 +#: guix-git/doc/guix.texi:9938 msgid "When @var{local-build?} is true, declare that the derivation is not a good candidate for offloading and should rather be built locally (@pxref{Daemon Offload Setup}). This is the case for small derivations where the costs of data transfers would outweigh the benefits." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9629 +#: guix-git/doc/guix.texi:9943 msgid "When @var{substitutable?} is false, declare that substitutes of the derivation's output should not be used (@pxref{Substitutes}). This is useful, for instance, when building packages that capture details of the host CPU instruction set." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9632 +#: guix-git/doc/guix.texi:9946 msgid "@var{properties} must be an association list describing ``properties'' of the derivation. It is kept as-is, uninterpreted, in the derivation." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9638 +#: guix-git/doc/guix.texi:9952 msgid "Here's an example with a shell script as its builder, assuming @var{store} is an open connection to the daemon, and @var{bash} points to a Bash executable in the store:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9643 +#: guix-git/doc/guix.texi:9957 #, no-wrap msgid "" "(use-modules (guix utils)\n" @@ -17987,7 +18519,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9652 +#: guix-git/doc/guix.texi:9966 #, no-wrap msgid "" "(let ((builder ; add the Bash script to the store\n" @@ -18001,48 +18533,48 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9659 +#: guix-git/doc/guix.texi:9973 msgid "As can be guessed, this primitive is cumbersome to use directly. A better approach is to write build scripts in Scheme, of course! The best course of action for that is to write the build code as a ``G-expression'', and to pass it to @code{gexp->derivation}. For more information, @pxref{G-Expressions}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9664 +#: guix-git/doc/guix.texi:9978 msgid "Once upon a time, @code{gexp->derivation} did not exist and constructing derivations with build code written in Scheme was achieved with @code{build-expression->derivation}, documented below. This procedure is now deprecated in favor of the much nicer @code{gexp->derivation}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9665 +#: guix-git/doc/guix.texi:9979 #, no-wrap msgid "{Scheme Procedure} build-expression->derivation @var{store} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9681 +#: guix-git/doc/guix.texi:9995 msgid "@var{name} @var{exp} @ [#:system (%current-system)] [#:inputs '()] @ [#:outputs '(\"out\")] [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:env-vars '()] [#:modules '()] @ [#:references-graphs #f] [#:allowed-references #f] @ [#:disallowed-references #f] @ [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f] Return a derivation that executes Scheme expression @var{exp} as a builder for derivation @var{name}. @var{inputs} must be a list of @code{(name drv-path sub-drv)} tuples; when @var{sub-drv} is omitted, @code{\"out\"} is assumed. @var{modules} is a list of names of Guile modules from the current search path to be copied in the store, compiled, and made available in the load path during the execution of @var{exp}---e.g., @code{((guix build utils) (guix build gnu-build-system))}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9689 +#: guix-git/doc/guix.texi:10003 msgid "@var{exp} is evaluated in an environment where @code{%outputs} is bound to a list of output/path pairs, and where @code{%build-inputs} is bound to a list of string/output-path pairs made from @var{inputs}. Optionally, @var{env-vars} is a list of string pairs specifying the name and value of environment variables visible to the builder. The builder terminates by passing the result of @var{exp} to @code{exit}; thus, when @var{exp} returns @code{#f}, the build is considered to have failed." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9693 +#: guix-git/doc/guix.texi:10007 msgid "@var{exp} is built using @var{guile-for-build} (a derivation). When @var{guile-for-build} is omitted or is @code{#f}, the value of the @code{%guile-for-build} fluid is used instead." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9698 +#: guix-git/doc/guix.texi:10012 msgid "See the @code{derivation} procedure for the meaning of @var{references-graphs}, @var{allowed-references}, @var{disallowed-references}, @var{local-build?}, and @var{substitutable?}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9703 +#: guix-git/doc/guix.texi:10017 msgid "Here's an example of a single-output derivation that creates a directory containing one file:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9711 +#: guix-git/doc/guix.texi:10025 #, no-wrap msgid "" "(let ((builder '(let ((out (assoc-ref %outputs \"out\")))\n" @@ -18055,51 +18587,51 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9713 +#: guix-git/doc/guix.texi:10027 #, no-wrap msgid "@result{} # @dots{}>\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9719 +#: guix-git/doc/guix.texi:10033 #, no-wrap msgid "monad" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9725 +#: guix-git/doc/guix.texi:10039 msgid "The procedures that operate on the store described in the previous sections all take an open connection to the build daemon as their first argument. Although the underlying model is functional, they either have side effects or depend on the current state of the store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9731 +#: guix-git/doc/guix.texi:10045 msgid "The former is inconvenient: the connection to the build daemon has to be carried around in all those functions, making it impossible to compose functions that do not take that parameter with functions that do. The latter can be problematic: since store operations have side effects and/or depend on external state, they have to be properly sequenced." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9732 +#: guix-git/doc/guix.texi:10046 #, no-wrap msgid "monadic values" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9733 +#: guix-git/doc/guix.texi:10047 #, no-wrap msgid "monadic functions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9743 +#: guix-git/doc/guix.texi:10057 msgid "This is where the @code{(guix monads)} module comes in. This module provides a framework for working with @dfn{monads}, and a particularly useful monad for our uses, the @dfn{store monad}. Monads are a construct that allows two things: associating ``context'' with values (in our case, the context is the store), and building sequences of computations (here computations include accesses to the store). Values in a monad---values that carry this additional context---are called @dfn{monadic values}; procedures that return such values are called @dfn{monadic procedures}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9745 +#: guix-git/doc/guix.texi:10059 msgid "Consider this ``normal'' procedure:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9754 +#: guix-git/doc/guix.texi:10068 #, no-wrap msgid "" "(define (sh-symlink store)\n" @@ -18112,12 +18644,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9758 +#: guix-git/doc/guix.texi:10072 msgid "Using @code{(guix monads)} and @code{(guix gexp)}, it may be rewritten as a monadic function:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9766 +#: guix-git/doc/guix.texi:10080 #, no-wrap msgid "" "(define (sh-symlink)\n" @@ -18129,17 +18661,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9773 +#: guix-git/doc/guix.texi:10087 msgid "There are several things to note in the second version: the @code{store} parameter is now implicit and is ``threaded'' in the calls to the @code{package->derivation} and @code{gexp->derivation} monadic procedures, and the monadic value returned by @code{package->derivation} is @dfn{bound} using @code{mlet} instead of plain @code{let}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9777 +#: guix-git/doc/guix.texi:10091 msgid "As it turns out, the call to @code{package->derivation} can even be omitted since it will take place implicitly, as we will see later (@pxref{G-Expressions}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9783 +#: guix-git/doc/guix.texi:10097 #, no-wrap msgid "" "(define (sh-symlink)\n" @@ -18149,12 +18681,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9792 +#: guix-git/doc/guix.texi:10106 msgid "Calling the monadic @code{sh-symlink} has no effect. As someone once said, ``you exit a monad like you exit a building on fire: by running''. So, to exit the monad and get the desired effect, one must use @code{run-with-store}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9796 +#: guix-git/doc/guix.texi:10110 #, no-wrap msgid "" "(run-with-store (open-connection) (sh-symlink))\n" @@ -18162,12 +18694,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9802 +#: guix-git/doc/guix.texi:10116 msgid "Note that the @code{(guix monad-repl)} module extends the Guile REPL with new ``meta-commands'' to make it easier to deal with monadic procedures: @code{run-in-store}, and @code{enter-store-monad}. The former is used to ``run'' a single monadic value through the store:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9806 +#: guix-git/doc/guix.texi:10120 #, no-wrap msgid "" "scheme@@(guile-user)> ,run-in-store (package->derivation hello)\n" @@ -18175,12 +18707,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9810 +#: guix-git/doc/guix.texi:10124 msgid "The latter enters a recursive REPL, where all the return values are automatically run through the store:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9819 +#: guix-git/doc/guix.texi:10133 #, no-wrap msgid "" "scheme@@(guile-user)> ,enter-store-monad\n" @@ -18193,50 +18725,50 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9824 +#: guix-git/doc/guix.texi:10138 msgid "Note that non-monadic values cannot be returned in the @code{store-monad} REPL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9827 +#: guix-git/doc/guix.texi:10141 msgid "The main syntactic forms to deal with monads in general are provided by the @code{(guix monads)} module and are described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9828 +#: guix-git/doc/guix.texi:10142 #, no-wrap msgid "{Scheme Syntax} with-monad @var{monad} @var{body} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9831 +#: guix-git/doc/guix.texi:10145 msgid "Evaluate any @code{>>=} or @code{return} forms in @var{body} as being in @var{monad}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9833 +#: guix-git/doc/guix.texi:10147 #, no-wrap msgid "{Scheme Syntax} return @var{val}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9835 +#: guix-git/doc/guix.texi:10149 msgid "Return a monadic value that encapsulates @var{val}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9837 +#: guix-git/doc/guix.texi:10151 #, no-wrap msgid "{Scheme Syntax} >>= @var{mval} @var{mproc} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9844 +#: guix-git/doc/guix.texi:10158 msgid "@dfn{Bind} monadic value @var{mval}, passing its ``contents'' to monadic procedures @var{mproc}@dots{}@footnote{This operation is commonly referred to as ``bind'', but that name denotes an unrelated procedure in Guile. Thus we use this somewhat cryptic symbol inherited from the Haskell language.}. There can be one @var{mproc} or several of them, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9852 +#: guix-git/doc/guix.texi:10166 #, no-wrap msgid "" "(run-with-state\n" @@ -18249,7 +18781,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9855 +#: guix-git/doc/guix.texi:10169 #, no-wrap msgid "" "@result{} 4\n" @@ -18257,99 +18789,99 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9858 +#: guix-git/doc/guix.texi:10172 #, no-wrap msgid "{Scheme Syntax} mlet @var{monad} ((@var{var} @var{mval}) ...) @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9860 +#: guix-git/doc/guix.texi:10174 msgid "@var{body} ..." msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9860 +#: guix-git/doc/guix.texi:10174 #, no-wrap msgid "{Scheme Syntax} mlet* @var{monad} ((@var{var} @var{mval}) ...) @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9872 +#: guix-git/doc/guix.texi:10186 msgid "@var{body} ... Bind the variables @var{var} to the monadic values @var{mval} in @var{body}, which is a sequence of expressions. As with the bind operator, this can be thought of as ``unpacking'' the raw, non-monadic value ``contained'' in @var{mval} and making @var{var} refer to that raw, non-monadic value within the scope of the @var{body}. The form (@var{var} -> @var{val}) binds @var{var} to the ``normal'' value @var{val}, as per @code{let}. The binding operations occur in sequence from left to right. The last expression of @var{body} must be a monadic expression, and its result will become the result of the @code{mlet} or @code{mlet*} when run in the @var{monad}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9875 +#: guix-git/doc/guix.texi:10189 msgid "@code{mlet*} is to @code{mlet} what @code{let*} is to @code{let} (@pxref{Local Bindings,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9877 +#: guix-git/doc/guix.texi:10191 #, no-wrap msgid "{Scheme System} mbegin @var{monad} @var{mexp} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9881 +#: guix-git/doc/guix.texi:10195 msgid "Bind @var{mexp} and the following monadic expressions in sequence, returning the result of the last expression. Every expression in the sequence must be a monadic expression." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9885 +#: guix-git/doc/guix.texi:10199 msgid "This is akin to @code{mlet}, except that the return values of the monadic expressions are ignored. In that sense, it is analogous to @code{begin}, but applied to monadic expressions." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9887 +#: guix-git/doc/guix.texi:10201 #, no-wrap msgid "{Scheme System} mwhen @var{condition} @var{mexp0} @var{mexp*} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9892 +#: guix-git/doc/guix.texi:10206 msgid "When @var{condition} is true, evaluate the sequence of monadic expressions @var{mexp0}..@var{mexp*} as in an @code{mbegin}. When @var{condition} is false, return @code{*unspecified*} in the current monad. Every expression in the sequence must be a monadic expression." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9894 +#: guix-git/doc/guix.texi:10208 #, no-wrap msgid "{Scheme System} munless @var{condition} @var{mexp0} @var{mexp*} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9899 +#: guix-git/doc/guix.texi:10213 msgid "When @var{condition} is false, evaluate the sequence of monadic expressions @var{mexp0}..@var{mexp*} as in an @code{mbegin}. When @var{condition} is true, return @code{*unspecified*} in the current monad. Every expression in the sequence must be a monadic expression." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9901 +#: guix-git/doc/guix.texi:10215 #, no-wrap msgid "state monad" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9905 +#: guix-git/doc/guix.texi:10219 msgid "The @code{(guix monads)} module provides the @dfn{state monad}, which allows an additional value---the state---to be @emph{threaded} through monadic procedure calls." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9906 +#: guix-git/doc/guix.texi:10220 #, no-wrap msgid "{Scheme Variable} %state-monad" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9909 +#: guix-git/doc/guix.texi:10223 msgid "The state monad. Procedures in the state monad can access and change the state that is threaded." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9913 +#: guix-git/doc/guix.texi:10227 msgid "Consider the example below. The @code{square} procedure returns a value in the state monad. It returns the square of its argument, but also increments the current state value:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9920 +#: guix-git/doc/guix.texi:10234 #, no-wrap msgid "" "(define (square x)\n" @@ -18361,7 +18893,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9924 +#: guix-git/doc/guix.texi:10238 #, no-wrap msgid "" "(run-with-state (sequence %state-monad (map square (iota 3))) 0)\n" @@ -18370,147 +18902,147 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9928 +#: guix-git/doc/guix.texi:10242 msgid "When ``run'' through @code{%state-monad}, we obtain that additional state value, which is the number of @code{square} calls." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9930 +#: guix-git/doc/guix.texi:10244 #, no-wrap msgid "{Monadic Procedure} current-state" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9932 +#: guix-git/doc/guix.texi:10246 msgid "Return the current state as a monadic value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9934 +#: guix-git/doc/guix.texi:10248 #, no-wrap msgid "{Monadic Procedure} set-current-state @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9937 +#: guix-git/doc/guix.texi:10251 msgid "Set the current state to @var{value} and return the previous state as a monadic value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9939 +#: guix-git/doc/guix.texi:10253 #, no-wrap msgid "{Monadic Procedure} state-push @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9942 +#: guix-git/doc/guix.texi:10256 msgid "Push @var{value} to the current state, which is assumed to be a list, and return the previous state as a monadic value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9944 +#: guix-git/doc/guix.texi:10258 #, no-wrap msgid "{Monadic Procedure} state-pop" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9947 +#: guix-git/doc/guix.texi:10261 msgid "Pop a value from the current state and return it as a monadic value. The state is assumed to be a list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9949 +#: guix-git/doc/guix.texi:10263 #, no-wrap msgid "{Scheme Procedure} run-with-state @var{mval} [@var{state}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9952 +#: guix-git/doc/guix.texi:10266 msgid "Run monadic value @var{mval} starting with @var{state} as the initial state. Return two values: the resulting value, and the resulting state." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9956 +#: guix-git/doc/guix.texi:10270 msgid "The main interface to the store monad, provided by the @code{(guix store)} module, is as follows." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9957 +#: guix-git/doc/guix.texi:10271 #, no-wrap msgid "{Scheme Variable} %store-monad" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9959 +#: guix-git/doc/guix.texi:10273 msgid "The store monad---an alias for @code{%state-monad}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9963 +#: guix-git/doc/guix.texi:10277 msgid "Values in the store monad encapsulate accesses to the store. When its effect is needed, a value of the store monad must be ``evaluated'' by passing it to the @code{run-with-store} procedure (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9965 +#: guix-git/doc/guix.texi:10279 #, no-wrap msgid "{Scheme Procedure} run-with-store @var{store} @var{mval} [#:guile-for-build] [#:system (%current-system)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9968 +#: guix-git/doc/guix.texi:10282 msgid "Run @var{mval}, a monadic value in the store monad, in @var{store}, an open store connection." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9970 +#: guix-git/doc/guix.texi:10284 #, no-wrap msgid "{Monadic Procedure} text-file @var{name} @var{text} [@var{references}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9974 +#: guix-git/doc/guix.texi:10288 msgid "Return as a monadic value the absolute file name in the store of the file containing @var{text}, a string. @var{references} is a list of store items that the resulting text file refers to; it defaults to the empty list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9976 +#: guix-git/doc/guix.texi:10290 #, no-wrap msgid "{Monadic Procedure} binary-file @var{name} @var{data} [@var{references}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9980 +#: guix-git/doc/guix.texi:10294 msgid "Return as a monadic value the absolute file name in the store of the file containing @var{data}, a bytevector. @var{references} is a list of store items that the resulting binary file refers to; it defaults to the empty list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9982 +#: guix-git/doc/guix.texi:10296 #, no-wrap msgid "{Monadic Procedure} interned-file @var{file} [@var{name}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9987 +#: guix-git/doc/guix.texi:10301 msgid "[#:recursive? #t] [#:select? (const #t)] Return the name of @var{file} once interned in the store. Use @var{name} as its store name, or the basename of @var{file} if @var{name} is omitted." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9991 guix-git/doc/guix.texi:10414 +#: guix-git/doc/guix.texi:10305 guix-git/doc/guix.texi:10728 msgid "When @var{recursive?} is true, the contents of @var{file} are added recursively; if @var{file} designates a flat file and @var{recursive?} is true, its contents are added, and its permission bits are kept." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9996 guix-git/doc/guix.texi:10419 +#: guix-git/doc/guix.texi:10310 guix-git/doc/guix.texi:10733 msgid "When @var{recursive?} is true, call @code{(@var{select?} @var{file} @var{stat})} for each directory entry, where @var{file} is the entry's absolute file name and @var{stat} is the result of @code{lstat}; exclude entries for which @var{select?} does not return true." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9998 +#: guix-git/doc/guix.texi:10312 msgid "The example below adds a file to the store, under two different names:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10004 +#: guix-git/doc/guix.texi:10318 #, no-wrap msgid "" "(run-with-store (open-connection)\n" @@ -18521,120 +19053,120 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10006 +#: guix-git/doc/guix.texi:10320 #, no-wrap msgid "@result{} (\"/gnu/store/rwm@dots{}-README\" \"/gnu/store/44i@dots{}-LEGU-MIN\")\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10012 +#: guix-git/doc/guix.texi:10326 msgid "The @code{(guix packages)} module exports the following package-related monadic procedures:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10013 +#: guix-git/doc/guix.texi:10327 #, no-wrap msgid "{Monadic Procedure} package-file @var{package} [@var{file}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10021 +#: guix-git/doc/guix.texi:10335 msgid "[#:system (%current-system)] [#:target #f] @ [#:output \"out\"] Return as a monadic value in the absolute file name of @var{file} within the @var{output} directory of @var{package}. When @var{file} is omitted, return the name of the @var{output} directory of @var{package}. When @var{target} is true, use it as a cross-compilation target triplet." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10025 +#: guix-git/doc/guix.texi:10339 msgid "Note that this procedure does @emph{not} build @var{package}. Thus, the result might or might not designate an existing file. We recommend not using this procedure unless you know what you are doing." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10027 +#: guix-git/doc/guix.texi:10341 #, no-wrap msgid "{Monadic Procedure} package->derivation @var{package} [@var{system}]" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:10028 +#: guix-git/doc/guix.texi:10342 #, no-wrap msgid "{Monadic Procedure} package->cross-derivation @var{package} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10032 +#: guix-git/doc/guix.texi:10346 msgid "@var{target} [@var{system}] Monadic version of @code{package-derivation} and @code{package-cross-derivation} (@pxref{Defining Packages})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10038 +#: guix-git/doc/guix.texi:10352 #, no-wrap msgid "G-expression" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10039 +#: guix-git/doc/guix.texi:10353 #, no-wrap msgid "build code quoting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10045 +#: guix-git/doc/guix.texi:10359 msgid "So we have ``derivations'', which represent a sequence of build actions to be performed to produce an item in the store (@pxref{Derivations}). These build actions are performed when asking the daemon to actually build the derivations; they are run by the daemon in a container (@pxref{Invoking guix-daemon})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10048 +#: guix-git/doc/guix.texi:10362 #, no-wrap msgid "strata of code" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10060 +#: guix-git/doc/guix.texi:10374 msgid "It should come as no surprise that we like to write these build actions in Scheme. When we do that, we end up with two @dfn{strata} of Scheme code@footnote{The term @dfn{stratum} in this context was coined by Manuel Serrano et al.@: in the context of their work on Hop. Oleg Kiselyov, who has written insightful @url{http://okmij.org/ftp/meta-programming/#meta-scheme, essays and code on this topic}, refers to this kind of code generation as @dfn{staging}.}: the ``host code''---code that defines packages, talks to the daemon, etc.---and the ``build code''---code that actually performs build actions, such as making directories, invoking @command{make}, and so on (@pxref{Build Phases})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10067 +#: guix-git/doc/guix.texi:10381 msgid "To describe a derivation and its build actions, one typically needs to embed build code inside host code. It boils down to manipulating build code as data, and the homoiconicity of Scheme---code has a direct representation as data---comes in handy for that. But we need more than the normal @code{quasiquote} mechanism in Scheme to construct build expressions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10076 +#: guix-git/doc/guix.texi:10390 msgid "The @code{(guix gexp)} module implements @dfn{G-expressions}, a form of S-expressions adapted to build expressions. G-expressions, or @dfn{gexps}, consist essentially of three syntactic forms: @code{gexp}, @code{ungexp}, and @code{ungexp-splicing} (or simply: @code{#~}, @code{#$}, and @code{#$@@}), which are comparable to @code{quasiquote}, @code{unquote}, and @code{unquote-splicing}, respectively (@pxref{Expression Syntax, @code{quasiquote},, guile, GNU Guile Reference Manual}). However, there are major differences:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:10081 +#: guix-git/doc/guix.texi:10395 msgid "Gexps are meant to be written to a file and run or manipulated by other processes." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:10086 +#: guix-git/doc/guix.texi:10400 msgid "When a high-level object such as a package or derivation is unquoted inside a gexp, the result is as if its output file name had been introduced." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:10091 +#: guix-git/doc/guix.texi:10405 msgid "Gexps carry information about the packages or derivations they refer to, and these dependencies are automatically added as inputs to the build processes that use them." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10093 guix-git/doc/guix.texi:10650 +#: guix-git/doc/guix.texi:10407 guix-git/doc/guix.texi:10964 #, no-wrap msgid "lowering, of high-level objects in gexps" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10103 +#: guix-git/doc/guix.texi:10417 msgid "This mechanism is not limited to package and derivation objects: @dfn{compilers} able to ``lower'' other high-level objects to derivations or files in the store can be defined, such that these objects can also be inserted into gexps. For example, a useful type of high-level objects that can be inserted in a gexp is ``file-like objects'', which make it easy to add files to the store and to refer to them in derivations and such (see @code{local-file} and @code{plain-file} below)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10105 +#: guix-git/doc/guix.texi:10419 msgid "To illustrate the idea, here is an example of a gexp:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10113 +#: guix-git/doc/guix.texi:10427 #, no-wrap msgid "" "(define build-exp\n" @@ -18646,34 +19178,34 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10118 +#: guix-git/doc/guix.texi:10432 msgid "This gexp can be passed to @code{gexp->derivation}; we obtain a derivation that builds a directory containing exactly one symlink to @file{/gnu/store/@dots{}-coreutils-8.22/bin/ls}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10121 +#: guix-git/doc/guix.texi:10435 #, no-wrap msgid "(gexp->derivation \"the-thing\" build-exp)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10129 +#: guix-git/doc/guix.texi:10443 msgid "As one would expect, the @code{\"/gnu/store/@dots{}-coreutils-8.22\"} string is substituted to the reference to the @var{coreutils} package in the actual build code, and @var{coreutils} is automatically made an input to the derivation. Likewise, @code{#$output} (equivalent to @code{(ungexp output)}) is replaced by a string containing the directory name of the output of the derivation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10130 +#: guix-git/doc/guix.texi:10444 #, no-wrap msgid "cross compilation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10136 +#: guix-git/doc/guix.texi:10450 msgid "In a cross-compilation context, it is useful to distinguish between references to the @emph{native} build of a package---that can run on the host---versus references to cross builds of a package. To that end, the @code{#+} plays the same role as @code{#$}, but is a reference to a native package build:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10147 +#: guix-git/doc/guix.texi:10461 #, no-wrap msgid "" "(gexp->derivation \"vi\"\n" @@ -18688,29 +19220,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10153 +#: guix-git/doc/guix.texi:10467 msgid "In the example above, the native build of @var{coreutils} is used, so that @command{ln} can actually run on the host; but then the cross-compiled build of @var{emacs} is referenced." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10154 +#: guix-git/doc/guix.texi:10468 #, no-wrap msgid "imported modules, for gexps" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:10155 +#: guix-git/doc/guix.texi:10469 #, no-wrap msgid "with-imported-modules" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10160 +#: guix-git/doc/guix.texi:10474 msgid "Another gexp feature is @dfn{imported modules}: sometimes you want to be able to use certain Guile modules from the ``host environment'' in the gexp, so those modules should be imported in the ``build environment''. The @code{with-imported-modules} form allows you to express that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10171 +#: guix-git/doc/guix.texi:10485 #, no-wrap msgid "" "(let ((build (with-imported-modules '((guix build utils))\n" @@ -18725,29 +19257,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10177 +#: guix-git/doc/guix.texi:10491 msgid "In this example, the @code{(guix build utils)} module is automatically pulled into the isolated build environment of our gexp, such that @code{(use-modules (guix build utils))} works as expected." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10178 +#: guix-git/doc/guix.texi:10492 #, no-wrap msgid "module closure" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:10179 +#: guix-git/doc/guix.texi:10493 #, no-wrap msgid "source-module-closure" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10186 +#: guix-git/doc/guix.texi:10500 msgid "Usually you want the @emph{closure} of the module to be imported---i.e., the module itself and all the modules it depends on---rather than just the module; failing to do that, attempts to use the module will fail because of missing dependent modules. The @code{source-module-closure} procedure computes the closure of a module by looking at its source file headers, which comes in handy in this case:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10189 +#: guix-git/doc/guix.texi:10503 #, no-wrap msgid "" "(use-modules (guix modules)) ;for 'source-module-closure'\n" @@ -18755,7 +19287,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10198 +#: guix-git/doc/guix.texi:10512 #, no-wrap msgid "" "(with-imported-modules (source-module-closure\n" @@ -18769,24 +19301,24 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10200 +#: guix-git/doc/guix.texi:10514 #, no-wrap msgid "extensions, for gexps" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:10201 +#: guix-git/doc/guix.texi:10515 #, no-wrap msgid "with-extensions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10206 +#: guix-git/doc/guix.texi:10520 msgid "In the same vein, sometimes you want to import not just pure-Scheme modules, but also ``extensions'' such as Guile bindings to C libraries or other ``full-blown'' packages. Say you need the @code{guile-json} package available on the build side, here's how you would do it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10209 +#: guix-git/doc/guix.texi:10523 #, no-wrap msgid "" "(use-modules (gnu packages guile)) ;for 'guile-json'\n" @@ -18794,7 +19326,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10215 +#: guix-git/doc/guix.texi:10529 #, no-wrap msgid "" "(with-extensions (list guile-json)\n" @@ -18805,184 +19337,184 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10218 +#: guix-git/doc/guix.texi:10532 msgid "The syntactic form to construct gexps is summarized below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10219 +#: guix-git/doc/guix.texi:10533 #, no-wrap msgid "{Scheme Syntax} #~@var{exp}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:10220 +#: guix-git/doc/guix.texi:10534 #, no-wrap msgid "{Scheme Syntax} (gexp @var{exp})" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10223 +#: guix-git/doc/guix.texi:10537 msgid "Return a G-expression containing @var{exp}. @var{exp} may contain one or more of the following forms:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10225 +#: guix-git/doc/guix.texi:10539 #, no-wrap msgid "#$@var{obj}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10226 +#: guix-git/doc/guix.texi:10540 #, no-wrap msgid "(ungexp @var{obj})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10231 +#: guix-git/doc/guix.texi:10545 msgid "Introduce a reference to @var{obj}. @var{obj} may have one of the supported types, for example a package or a derivation, in which case the @code{ungexp} form is replaced by its output file name---e.g., @code{\"/gnu/store/@dots{}-coreutils-8.22}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10234 +#: guix-git/doc/guix.texi:10548 msgid "If @var{obj} is a list, it is traversed and references to supported objects are substituted similarly." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10237 +#: guix-git/doc/guix.texi:10551 msgid "If @var{obj} is another gexp, its contents are inserted and its dependencies are added to those of the containing gexp." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10239 +#: guix-git/doc/guix.texi:10553 msgid "If @var{obj} is another kind of object, it is inserted as is." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10240 +#: guix-git/doc/guix.texi:10554 #, no-wrap msgid "#$@var{obj}:@var{output}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10241 +#: guix-git/doc/guix.texi:10555 #, no-wrap msgid "(ungexp @var{obj} @var{output})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10245 +#: guix-git/doc/guix.texi:10559 msgid "This is like the form above, but referring explicitly to the @var{output} of @var{obj}---this is useful when @var{obj} produces multiple outputs (@pxref{Packages with Multiple Outputs})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10246 +#: guix-git/doc/guix.texi:10560 #, no-wrap msgid "#+@var{obj}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10247 +#: guix-git/doc/guix.texi:10561 #, no-wrap msgid "#+@var{obj}:output" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10248 +#: guix-git/doc/guix.texi:10562 #, no-wrap msgid "(ungexp-native @var{obj})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10249 +#: guix-git/doc/guix.texi:10563 #, no-wrap msgid "(ungexp-native @var{obj} @var{output})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10252 +#: guix-git/doc/guix.texi:10566 msgid "Same as @code{ungexp}, but produces a reference to the @emph{native} build of @var{obj} when used in a cross compilation context." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10253 +#: guix-git/doc/guix.texi:10567 #, no-wrap msgid "#$output[:@var{output}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10254 +#: guix-git/doc/guix.texi:10568 #, no-wrap msgid "(ungexp output [@var{output}])" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10257 +#: guix-git/doc/guix.texi:10571 msgid "Insert a reference to derivation output @var{output}, or to the main output when @var{output} is omitted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10259 +#: guix-git/doc/guix.texi:10573 msgid "This only makes sense for gexps passed to @code{gexp->derivation}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10260 +#: guix-git/doc/guix.texi:10574 #, no-wrap msgid "#$@@@var{lst}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10261 +#: guix-git/doc/guix.texi:10575 #, no-wrap msgid "(ungexp-splicing @var{lst})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10264 +#: guix-git/doc/guix.texi:10578 msgid "Like the above, but splices the contents of @var{lst} inside the containing list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10265 +#: guix-git/doc/guix.texi:10579 #, no-wrap msgid "#+@@@var{lst}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10266 +#: guix-git/doc/guix.texi:10580 #, no-wrap msgid "(ungexp-native-splicing @var{lst})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10269 +#: guix-git/doc/guix.texi:10583 msgid "Like the above, but refers to native builds of the objects listed in @var{lst}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10274 +#: guix-git/doc/guix.texi:10588 msgid "G-expressions created by @code{gexp} or @code{#~} are run-time objects of the @code{gexp?} type (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10276 +#: guix-git/doc/guix.texi:10590 #, no-wrap msgid "{Scheme Syntax} with-imported-modules @var{modules} @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10279 +#: guix-git/doc/guix.texi:10593 msgid "Mark the gexps defined in @var{body}@dots{} as requiring @var{modules} in their execution environment." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10283 +#: guix-git/doc/guix.texi:10597 msgid "Each item in @var{modules} can be the name of a module, such as @code{(guix build utils)}, or it can be a module name, followed by an arrow, followed by a file-like object:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10289 +#: guix-git/doc/guix.texi:10603 #, no-wrap msgid "" "`((guix build utils)\n" @@ -18992,80 +19524,80 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10294 +#: guix-git/doc/guix.texi:10608 msgid "In the example above, the first two modules are taken from the search path, and the last one is created from the given file-like object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10298 +#: guix-git/doc/guix.texi:10612 msgid "This form has @emph{lexical} scope: it has an effect on the gexps directly defined in @var{body}@dots{}, but not on those defined, say, in procedures called from @var{body}@dots{}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10300 +#: guix-git/doc/guix.texi:10614 #, no-wrap msgid "{Scheme Syntax} with-extensions @var{extensions} @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10305 +#: guix-git/doc/guix.texi:10619 msgid "Mark the gexps defined in @var{body}@dots{} as requiring @var{extensions} in their build and execution environment. @var{extensions} is typically a list of package objects such as those defined in the @code{(gnu packages guile)} module." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10310 +#: guix-git/doc/guix.texi:10624 msgid "Concretely, the packages listed in @var{extensions} are added to the load path while compiling imported modules in @var{body}@dots{}; they are also added to the load path of the gexp returned by @var{body}@dots{}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10312 +#: guix-git/doc/guix.texi:10626 #, no-wrap msgid "{Scheme Procedure} gexp? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10314 +#: guix-git/doc/guix.texi:10628 msgid "Return @code{#t} if @var{obj} is a G-expression." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10320 +#: guix-git/doc/guix.texi:10634 msgid "G-expressions are meant to be written to disk, either as code building some derivation, or as plain files in the store. The monadic procedures below allow you to do that (@pxref{The Store Monad}, for more information about monads)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10321 +#: guix-git/doc/guix.texi:10635 #, no-wrap msgid "{Monadic Procedure} gexp->derivation @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10339 +#: guix-git/doc/guix.texi:10653 msgid "[#:system (%current-system)] [#:target #f] [#:graft? #t] @ [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:env-vars '()] [#:modules '()] @ [#:module-path @code{%load-path}] @ [#:effective-version \"2.2\"] @ [#:references-graphs #f] [#:allowed-references #f] @ [#:disallowed-references #f] @ [#:leaked-env-vars #f] @ [#:script-name (string-append @var{name} \"-builder\")] @ [#:deprecation-warnings #f] @ [#:local-build? #f] [#:substitutable? #t] @ [#:properties '()] [#:guile-for-build #f] Return a derivation @var{name} that runs @var{exp} (a gexp) with @var{guile-for-build} (a derivation) on @var{system}; @var{exp} is stored in a file called @var{script-name}. When @var{target} is true, it is used as the cross-compilation target triplet for packages referred to by @var{exp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10347 +#: guix-git/doc/guix.texi:10661 msgid "@var{modules} is deprecated in favor of @code{with-imported-modules}. Its meaning is to make @var{modules} available in the evaluation context of @var{exp}; @var{modules} is a list of names of Guile modules searched in @var{module-path} to be copied in the store, compiled, and made available in the load path during the execution of @var{exp}---e.g., @code{((guix build utils) (guix build gnu-build-system))}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10350 +#: guix-git/doc/guix.texi:10664 msgid "@var{effective-version} determines the string to use when adding extensions of @var{exp} (see @code{with-extensions}) to the search path---e.g., @code{\"2.2\"}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10353 +#: guix-git/doc/guix.texi:10667 msgid "@var{graft?} determines whether packages referred to by @var{exp} should be grafted when applicable." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10356 +#: guix-git/doc/guix.texi:10670 msgid "When @var{references-graphs} is true, it must be a list of tuples of one of the following forms:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10363 +#: guix-git/doc/guix.texi:10677 #, no-wrap msgid "" "(@var{file-name} @var{package})\n" @@ -19076,38 +19608,38 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10369 +#: guix-git/doc/guix.texi:10683 msgid "The right-hand-side of each element of @var{references-graphs} is automatically made an input of the build process of @var{exp}. In the build environment, each @var{file-name} contains the reference graph of the corresponding item, in a simple text format." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10375 +#: guix-git/doc/guix.texi:10689 msgid "@var{allowed-references} must be either @code{#f} or a list of output names and packages. In the latter case, the list denotes store items that the result is allowed to refer to. Any reference to another store item will lead to a build error. Similarly for @var{disallowed-references}, which can list items that must not be referenced by the outputs." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10378 +#: guix-git/doc/guix.texi:10692 msgid "@var{deprecation-warnings} determines whether to show deprecation warnings while compiling modules. It can be @code{#f}, @code{#t}, or @code{'detailed}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10380 +#: guix-git/doc/guix.texi:10694 msgid "The other arguments are as for @code{derivation} (@pxref{Derivations})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10382 +#: guix-git/doc/guix.texi:10696 #, no-wrap msgid "file-like objects" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10387 +#: guix-git/doc/guix.texi:10701 msgid "The @code{local-file}, @code{plain-file}, @code{computed-file}, @code{program-file}, and @code{scheme-file} procedures below return @dfn{file-like objects}. That is, when unquoted in a G-expression, these objects lead to a file in the store. Consider this G-expression:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10391 +#: guix-git/doc/guix.texi:10705 #, no-wrap msgid "" "#~(system* #$(file-append glibc \"/sbin/nscd\") \"-f\"\n" @@ -19115,76 +19647,76 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10400 +#: guix-git/doc/guix.texi:10714 msgid "The effect here is to ``intern'' @file{/tmp/my-nscd.conf} by copying it to the store. Once expanded, for instance @i{via} @code{gexp->derivation}, the G-expression refers to that copy under @file{/gnu/store}; thus, modifying or removing the file in @file{/tmp} does not have any effect on what the G-expression does. @code{plain-file} can be used similarly; it differs in that the file content is directly passed as a string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10401 +#: guix-git/doc/guix.texi:10715 #, no-wrap msgid "{Scheme Procedure} local-file @var{file} [@var{name}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10410 +#: guix-git/doc/guix.texi:10724 msgid "[#:recursive? #f] [#:select? (const #t)] Return an object representing local file @var{file} to add to the store; this object can be used in a gexp. If @var{file} is a literal string denoting a relative file name, it is looked up relative to the source file where it appears; if @var{file} is not a literal string, it is looked up relative to the current working directory at run time. @var{file} will be added to the store under @var{name}--by default the base name of @var{file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10422 +#: guix-git/doc/guix.texi:10736 msgid "This is the declarative counterpart of the @code{interned-file} monadic procedure (@pxref{The Store Monad, @code{interned-file}})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10424 +#: guix-git/doc/guix.texi:10738 #, no-wrap msgid "{Scheme Procedure} plain-file @var{name} @var{content}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10427 +#: guix-git/doc/guix.texi:10741 msgid "Return an object representing a text file called @var{name} with the given @var{content} (a string or a bytevector) to be added to the store." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10429 +#: guix-git/doc/guix.texi:10743 msgid "This is the declarative counterpart of @code{text-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10431 +#: guix-git/doc/guix.texi:10745 #, no-wrap msgid "{Scheme Procedure} computed-file @var{name} @var{gexp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10438 +#: guix-git/doc/guix.texi:10752 msgid "[#:local-build? #t] [#:options '()] Return an object representing the store item @var{name}, a file or directory computed by @var{gexp}. When @var{local-build?} is true (the default), the derivation is built locally. @var{options} is a list of additional arguments to pass to @code{gexp->derivation}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10440 +#: guix-git/doc/guix.texi:10754 msgid "This is the declarative counterpart of @code{gexp->derivation}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10442 +#: guix-git/doc/guix.texi:10756 #, no-wrap msgid "{Monadic Procedure} gexp->script @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10448 +#: guix-git/doc/guix.texi:10762 msgid "[#:guile (default-guile)] [#:module-path %load-path] @ [#:system (%current-system)] [#:target #f] Return an executable script @var{name} that runs @var{exp} using @var{guile}, with @var{exp}'s imported modules in its search path. Look up @var{exp}'s modules in @var{module-path}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10451 +#: guix-git/doc/guix.texi:10765 msgid "The example below builds a script that simply invokes the @command{ls} command:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10454 +#: guix-git/doc/guix.texi:10768 #, no-wrap msgid "" "(use-modules (guix gexp) (gnu packages base))\n" @@ -19192,7 +19724,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10458 +#: guix-git/doc/guix.texi:10772 #, no-wrap msgid "" "(gexp->script \"list-files\"\n" @@ -19201,12 +19733,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10463 +#: guix-git/doc/guix.texi:10777 msgid "When ``running'' it through the store (@pxref{The Store Monad, @code{run-with-store}}), we obtain a derivation that produces an executable file @file{/gnu/store/@dots{}-list-files} along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10468 +#: guix-git/doc/guix.texi:10782 #, no-wrap msgid "" "#!/gnu/store/@dots{}-guile-2.0.11/bin/guile -ds\n" @@ -19215,76 +19747,76 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10471 +#: guix-git/doc/guix.texi:10785 #, no-wrap msgid "{Scheme Procedure} program-file @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10476 +#: guix-git/doc/guix.texi:10790 msgid "[#:guile #f] [#:module-path %load-path] Return an object representing the executable store item @var{name} that runs @var{gexp}. @var{guile} is the Guile package used to execute that script. Imported modules of @var{gexp} are looked up in @var{module-path}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10478 +#: guix-git/doc/guix.texi:10792 msgid "This is the declarative counterpart of @code{gexp->script}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10480 +#: guix-git/doc/guix.texi:10794 #, no-wrap msgid "{Monadic Procedure} gexp->file @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10487 +#: guix-git/doc/guix.texi:10801 msgid "[#:set-load-path? #t] [#:module-path %load-path] @ [#:splice? #f] @ [#:guile (default-guile)] Return a derivation that builds a file @var{name} containing @var{exp}. When @var{splice?} is true, @var{exp} is considered to be a list of expressions that will be spliced in the resulting file." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10492 +#: guix-git/doc/guix.texi:10806 msgid "When @var{set-load-path?} is true, emit code in the resulting file to set @code{%load-path} and @code{%load-compiled-path} to honor @var{exp}'s imported modules. Look up @var{exp}'s modules in @var{module-path}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10495 +#: guix-git/doc/guix.texi:10809 msgid "The resulting file holds references to all the dependencies of @var{exp} or a subset thereof." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10497 +#: guix-git/doc/guix.texi:10811 #, no-wrap msgid "{Scheme Procedure} scheme-file @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10501 +#: guix-git/doc/guix.texi:10815 msgid "[#:splice? #f] [#:set-load-path? #t] Return an object representing the Scheme file @var{name} that contains @var{exp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10503 +#: guix-git/doc/guix.texi:10817 msgid "This is the declarative counterpart of @code{gexp->file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10505 +#: guix-git/doc/guix.texi:10819 #, no-wrap msgid "{Monadic Procedure} text-file* @var{name} @var{text} @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10511 +#: guix-git/doc/guix.texi:10825 msgid "Return as a monadic value a derivation that builds a text file containing all of @var{text}. @var{text} may list, in addition to strings, objects of any type that can be used in a gexp: packages, derivations, local file objects, etc. The resulting store file holds references to all these." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10516 +#: guix-git/doc/guix.texi:10830 msgid "This variant should be preferred over @code{text-file} anytime the file to create will reference items from the store. This is typically the case when building a configuration file that embeds store file names, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10524 +#: guix-git/doc/guix.texi:10838 #, no-wrap msgid "" "(define (profile.sh)\n" @@ -19296,23 +19828,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10529 +#: guix-git/doc/guix.texi:10843 msgid "In this example, the resulting @file{/gnu/store/@dots{}-profile.sh} file will reference @var{coreutils}, @var{grep}, and @var{sed}, thereby preventing them from being garbage-collected during its lifetime." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10531 +#: guix-git/doc/guix.texi:10845 #, no-wrap msgid "{Scheme Procedure} mixed-text-file @var{name} @var{text} @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10535 +#: guix-git/doc/guix.texi:10849 msgid "Return an object representing store file @var{name} containing @var{text}. @var{text} is a sequence of strings and file-like objects, as in:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10539 +#: guix-git/doc/guix.texi:10853 #, no-wrap msgid "" "(mixed-text-file \"profile\"\n" @@ -19320,23 +19852,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10542 +#: guix-git/doc/guix.texi:10856 msgid "This is the declarative counterpart of @code{text-file*}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10544 +#: guix-git/doc/guix.texi:10858 #, no-wrap msgid "{Scheme Procedure} file-union @var{name} @var{files}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10549 +#: guix-git/doc/guix.texi:10863 msgid "Return a @code{} that builds a directory containing all of @var{files}. Each item in @var{files} must be a two-element list where the first element is the file name to use in the new directory, and the second element is a gexp denoting the target file. Here's an example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10556 +#: guix-git/doc/guix.texi:10870 #, no-wrap msgid "" "(file-union \"etc\"\n" @@ -19347,50 +19879,50 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10559 +#: guix-git/doc/guix.texi:10873 msgid "This yields an @code{etc} directory containing these two files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10561 +#: guix-git/doc/guix.texi:10875 #, no-wrap msgid "{Scheme Procedure} directory-union @var{name} @var{things}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10564 +#: guix-git/doc/guix.texi:10878 msgid "Return a directory that is the union of @var{things}, where @var{things} is a list of file-like objects denoting directories. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10567 +#: guix-git/doc/guix.texi:10881 #, no-wrap msgid "(directory-union \"guile+emacs\" (list guile emacs))\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10570 +#: guix-git/doc/guix.texi:10884 msgid "yields a directory that is the union of the @code{guile} and @code{emacs} packages." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10572 +#: guix-git/doc/guix.texi:10886 #, no-wrap msgid "{Scheme Procedure} file-append @var{obj} @var{suffix} @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10576 +#: guix-git/doc/guix.texi:10890 msgid "Return a file-like object that expands to the concatenation of @var{obj} and @var{suffix}, where @var{obj} is a lowerable object and each @var{suffix} is a string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10578 +#: guix-git/doc/guix.texi:10892 msgid "As an example, consider this gexp:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10583 +#: guix-git/doc/guix.texi:10897 #, no-wrap msgid "" "(gexp->script \"run-uname\"\n" @@ -19399,12 +19931,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10586 +#: guix-git/doc/guix.texi:10900 msgid "The same effect could be achieved with:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10591 +#: guix-git/doc/guix.texi:10905 #, no-wrap msgid "" "(gexp->script \"run-uname\"\n" @@ -19413,39 +19945,39 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10597 +#: guix-git/doc/guix.texi:10911 msgid "There is one difference though: in the @code{file-append} case, the resulting script contains the absolute file name as a string, whereas in the second case, the resulting script contains a @code{(string-append @dots{})} expression to construct the file name @emph{at run time}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10599 +#: guix-git/doc/guix.texi:10913 #, no-wrap msgid "{Scheme Syntax} let-system @var{system} @var{body}@dots{}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:10600 +#: guix-git/doc/guix.texi:10914 #, no-wrap msgid "{Scheme Syntax} let-system (@var{system} @var{target}) @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10603 +#: guix-git/doc/guix.texi:10917 msgid "Bind @var{system} to the currently targeted system---e.g., @code{\"x86_64-linux\"}---within @var{body}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10608 +#: guix-git/doc/guix.texi:10922 msgid "In the second case, additionally bind @var{target} to the current cross-compilation target---a GNU triplet such as @code{\"arm-linux-gnueabihf\"}---or @code{#f} if we are not cross-compiling." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10611 +#: guix-git/doc/guix.texi:10925 msgid "@code{let-system} is useful in the occasional case where the object spliced into the gexp depends on the target system, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10622 +#: guix-git/doc/guix.texi:10936 #, no-wrap msgid "" "#~(system*\n" @@ -19460,23 +19992,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10625 +#: guix-git/doc/guix.texi:10939 #, no-wrap msgid "{Scheme Syntax} with-parameters ((@var{parameter} @var{value}) @dots{}) @var{exp}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10631 +#: guix-git/doc/guix.texi:10945 msgid "This macro is similar to the @code{parameterize} form for dynamically-bound @dfn{parameters} (@pxref{Parameters,,, guile, GNU Guile Reference Manual}). The key difference is that it takes effect when the file-like object returned by @var{exp} is lowered to a derivation or store item." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10634 +#: guix-git/doc/guix.texi:10948 msgid "A typical use of @code{with-parameters} is to force the system in effect for a given object:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10638 +#: guix-git/doc/guix.texi:10952 #, no-wrap msgid "" "(with-parameters ((%current-system \"i686-linux\"))\n" @@ -19484,94 +20016,94 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10642 +#: guix-git/doc/guix.texi:10956 msgid "The example above returns an object that corresponds to the i686 build of Coreutils, regardless of the current value of @code{%current-system}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10649 +#: guix-git/doc/guix.texi:10963 msgid "Of course, in addition to gexps embedded in ``host'' code, there are also modules containing build tools. To make it clear that they are meant to be used in the build stratum, these modules are kept in the @code{(guix build @dots{})} name space." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10655 +#: guix-git/doc/guix.texi:10969 msgid "Internally, high-level objects are @dfn{lowered}, using their compiler, to either derivations or store items. For instance, lowering a package yields a derivation, and lowering a @code{plain-file} yields a store item. This is achieved using the @code{lower-object} monadic procedure." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10656 +#: guix-git/doc/guix.texi:10970 #, no-wrap msgid "{Monadic Procedure} lower-object @var{obj} [@var{system}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10662 +#: guix-git/doc/guix.texi:10976 msgid "[#:target #f] Return as a value in @code{%store-monad} the derivation or store item corresponding to @var{obj} for @var{system}, cross-compiling for @var{target} if @var{target} is true. @var{obj} must be an object that has an associated gexp compiler, such as a @code{}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10664 +#: guix-git/doc/guix.texi:10978 #, no-wrap msgid "{Procedure} gexp->approximate-sexp @var{gexp}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10672 +#: guix-git/doc/guix.texi:10986 msgid "Sometimes, it may be useful to convert a G-exp into a S-exp. For example, some linters (@pxref{Invoking guix lint}) peek into the build phases of a package to detect potential problems. This conversion can be achieved with this procedure. However, some information can be lost in the process. More specifically, lowerable objects will be silently replaced with some arbitrary object -- currently the list @code{(*approximate*)}, but this may change." msgstr "" #. type: section -#: guix-git/doc/guix.texi:10675 +#: guix-git/doc/guix.texi:10989 #, no-wrap msgid "Invoking @command{guix repl}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10677 +#: guix-git/doc/guix.texi:10991 #, no-wrap msgid "REPL, read-eval-print loop, script" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10687 +#: guix-git/doc/guix.texi:11001 msgid "The @command{guix repl} command makes it easier to program Guix in Guile by launching a Guile @dfn{read-eval-print loop} (REPL) for interactive programming (@pxref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}), or by running Guile scripts (@pxref{Running Guile Scripts,,, guile, GNU Guile Reference Manual}). Compared to just launching the @command{guile} command, @command{guix repl} guarantees that all the Guix modules and all its dependencies are available in the search path." msgstr "" #. type: example -#: guix-git/doc/guix.texi:10692 +#: guix-git/doc/guix.texi:11006 #, no-wrap msgid "guix repl @var{options} [@var{file} @var{args}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10696 +#: guix-git/doc/guix.texi:11010 msgid "When a @var{file} argument is provided, @var{file} is executed as a Guile scripts:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10699 +#: guix-git/doc/guix.texi:11013 #, no-wrap msgid "guix repl my-script.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10703 +#: guix-git/doc/guix.texi:11017 msgid "To pass arguments to the script, use @code{--} to prevent them from being interpreted as arguments to @command{guix repl} itself:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10706 +#: guix-git/doc/guix.texi:11020 #, no-wrap msgid "guix repl -- my-script.scm --input=foo.txt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10711 +#: guix-git/doc/guix.texi:11025 msgid "To make a script executable directly from the shell, using the guix executable that is on the user's search path, add the following two lines at the top of the script:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10715 +#: guix-git/doc/guix.texi:11029 #, no-wrap msgid "" "@code{#!/usr/bin/env -S guix repl --}\n" @@ -19579,12 +20111,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10718 +#: guix-git/doc/guix.texi:11032 msgid "Without a file name argument, a Guile REPL is started:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10724 +#: guix-git/doc/guix.texi:11038 #, no-wrap msgid "" "$ guix repl\n" @@ -19594,169 +20126,169 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10731 +#: guix-git/doc/guix.texi:11045 msgid "In addition, @command{guix repl} implements a simple machine-readable REPL protocol for use by @code{(guix inferior)}, a facility to interact with @dfn{inferiors}, separate processes running a potentially different revision of Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10733 +#: guix-git/doc/guix.texi:11047 msgid "The available options are as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10735 guix-git/doc/guix.texi:13411 +#: guix-git/doc/guix.texi:11049 guix-git/doc/guix.texi:13768 #, no-wrap msgid "--type=@var{type}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10736 guix-git/doc/guix.texi:13412 -#: guix-git/doc/guix.texi:35281 +#: guix-git/doc/guix.texi:11050 guix-git/doc/guix.texi:13769 +#: guix-git/doc/guix.texi:35725 #, no-wrap msgid "-t @var{type}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10738 +#: guix-git/doc/guix.texi:11052 msgid "Start a REPL of the given @var{TYPE}, which can be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10740 +#: guix-git/doc/guix.texi:11054 #, no-wrap msgid "guile" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10742 +#: guix-git/doc/guix.texi:11056 msgid "This is default, and it spawns a standard full-featured Guile REPL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10742 +#: guix-git/doc/guix.texi:11056 #, no-wrap msgid "machine" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10745 +#: guix-git/doc/guix.texi:11059 msgid "Spawn a REPL that uses the machine-readable protocol. This is the protocol that the @code{(guix inferior)} module speaks." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10751 +#: guix-git/doc/guix.texi:11065 msgid "By default, @command{guix repl} reads from standard input and writes to standard output. When this option is passed, it will instead listen for connections on @var{endpoint}. Here are examples of valid options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10753 +#: guix-git/doc/guix.texi:11067 #, no-wrap msgid "--listen=tcp:37146" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10755 +#: guix-git/doc/guix.texi:11069 msgid "Accept connections on localhost on port 37146." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10756 +#: guix-git/doc/guix.texi:11070 #, no-wrap msgid "--listen=unix:/tmp/socket" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10758 +#: guix-git/doc/guix.texi:11072 msgid "Accept connections on the Unix-domain socket @file{/tmp/socket}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10760 guix-git/doc/guix.texi:10865 -#: guix-git/doc/guix.texi:12763 guix-git/doc/guix.texi:12840 -#: guix-git/doc/guix.texi:13046 guix-git/doc/guix.texi:13191 -#: guix-git/doc/guix.texi:13459 +#: guix-git/doc/guix.texi:11074 guix-git/doc/guix.texi:11179 +#: guix-git/doc/guix.texi:13078 guix-git/doc/guix.texi:13196 +#: guix-git/doc/guix.texi:13403 guix-git/doc/guix.texi:13548 +#: guix-git/doc/guix.texi:13816 #, no-wrap msgid "--load-path=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10761 guix-git/doc/guix.texi:10866 -#: guix-git/doc/guix.texi:12841 guix-git/doc/guix.texi:13047 -#: guix-git/doc/guix.texi:13192 guix-git/doc/guix.texi:13460 +#: guix-git/doc/guix.texi:11075 guix-git/doc/guix.texi:11180 +#: guix-git/doc/guix.texi:13197 guix-git/doc/guix.texi:13404 +#: guix-git/doc/guix.texi:13549 guix-git/doc/guix.texi:13817 #, no-wrap msgid "-L @var{directory}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10764 guix-git/doc/guix.texi:10869 -#: guix-git/doc/guix.texi:12766 guix-git/doc/guix.texi:12844 -#: guix-git/doc/guix.texi:13050 guix-git/doc/guix.texi:13195 -#: guix-git/doc/guix.texi:13463 +#: guix-git/doc/guix.texi:11078 guix-git/doc/guix.texi:11183 +#: guix-git/doc/guix.texi:13081 guix-git/doc/guix.texi:13200 +#: guix-git/doc/guix.texi:13407 guix-git/doc/guix.texi:13552 +#: guix-git/doc/guix.texi:13820 msgid "Add @var{directory} to the front of the package module search path (@pxref{Package Modules})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10767 +#: guix-git/doc/guix.texi:11081 msgid "This allows users to define their own packages and make them visible to the script or REPL." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10768 guix-git/doc/guix.texi:11390 +#: guix-git/doc/guix.texi:11082 guix-git/doc/guix.texi:11704 #, no-wrap msgid "-q" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10771 +#: guix-git/doc/guix.texi:11085 msgid "Inhibit loading of the @file{~/.guile} file. By default, that configuration file is loaded when spawning a @code{guile} REPL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10781 +#: guix-git/doc/guix.texi:11095 msgid "This section describes Guix command-line utilities. Some of them are primarily targeted at developers and users who write new package definitions, while others are more generally useful. They complement the Scheme programming interface of Guix in a convenient way." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10804 +#: guix-git/doc/guix.texi:11118 #, no-wrap msgid "package building" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:10805 +#: guix-git/doc/guix.texi:11119 #, no-wrap msgid "guix build" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10811 +#: guix-git/doc/guix.texi:11125 msgid "The @command{guix build} command builds packages or derivations and their dependencies, and prints the resulting store paths. Note that it does not modify the user's profile---this is the job of the @command{guix package} command (@pxref{Invoking guix package}). Thus, it is mainly useful for distribution developers." msgstr "" #. type: example -#: guix-git/doc/guix.texi:10816 +#: guix-git/doc/guix.texi:11130 #, no-wrap msgid "guix build @var{options} @var{package-or-derivation}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10821 +#: guix-git/doc/guix.texi:11135 msgid "As an example, the following command builds the latest versions of Emacs and of Guile, displays their build logs, and finally displays the resulting directories:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10824 +#: guix-git/doc/guix.texi:11138 #, no-wrap msgid "guix build emacs guile\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10827 +#: guix-git/doc/guix.texi:11141 msgid "Similarly, the following command builds all the available packages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10831 +#: guix-git/doc/guix.texi:11145 #, no-wrap msgid "" "guix build --quiet --keep-going \\\n" @@ -19764,322 +20296,322 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10839 +#: guix-git/doc/guix.texi:11153 msgid "@var{package-or-derivation} may be either the name of a package found in the software distribution such as @code{coreutils} or @code{coreutils@@8.20}, or a derivation such as @file{/gnu/store/@dots{}-coreutils-8.19.drv}. In the former case, a package with the corresponding name (and optionally version) is searched for among the GNU distribution modules (@pxref{Package Modules})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10844 +#: guix-git/doc/guix.texi:11158 msgid "Alternatively, the @option{--expression} option may be used to specify a Scheme expression that evaluates to a package; this is useful when disambiguating among several same-named packages or package variants is needed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10847 +#: guix-git/doc/guix.texi:11161 msgid "There may be zero or more @var{options}. The available options are described in the subsections below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10862 +#: guix-git/doc/guix.texi:11176 msgid "A number of options that control the build process are common to @command{guix build} and other commands that can spawn builds, such as @command{guix package} or @command{guix archive}. These are the following:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10872 guix-git/doc/guix.texi:12769 -#: guix-git/doc/guix.texi:13053 guix-git/doc/guix.texi:13198 -#: guix-git/doc/guix.texi:13466 +#: guix-git/doc/guix.texi:11186 guix-git/doc/guix.texi:13084 +#: guix-git/doc/guix.texi:13410 guix-git/doc/guix.texi:13555 +#: guix-git/doc/guix.texi:13823 msgid "This allows users to define their own packages and make them visible to the command-line tools." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10873 +#: guix-git/doc/guix.texi:11187 #, no-wrap msgid "--keep-failed" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10874 +#: guix-git/doc/guix.texi:11188 #, no-wrap msgid "-K" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10880 +#: guix-git/doc/guix.texi:11194 msgid "Keep the build tree of failed builds. Thus, if a build fails, its build tree is kept under @file{/tmp}, in a directory whose name is shown at the end of the build log. This is useful when debugging build issues. @xref{Debugging Build Failures}, for tips and tricks on how to debug build issues." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10884 +#: guix-git/doc/guix.texi:11198 msgid "This option implies @option{--no-offload}, and it has no effect when connecting to a remote daemon with a @code{guix://} URI (@pxref{The Store, the @env{GUIX_DAEMON_SOCKET} variable})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10885 +#: guix-git/doc/guix.texi:11199 #, no-wrap msgid "--keep-going" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10886 +#: guix-git/doc/guix.texi:11200 #, no-wrap msgid "-k" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10889 +#: guix-git/doc/guix.texi:11203 msgid "Keep going when some of the derivations fail to build; return only once all the builds have either completed or failed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10892 +#: guix-git/doc/guix.texi:11206 msgid "The default behavior is to stop as soon as one of the specified derivations has failed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10896 +#: guix-git/doc/guix.texi:11210 msgid "Do not build the derivations." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:10898 +#: guix-git/doc/guix.texi:11212 msgid "fallback-option" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10898 +#: guix-git/doc/guix.texi:11212 #, no-wrap msgid "--fallback" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10901 +#: guix-git/doc/guix.texi:11215 msgid "When substituting a pre-built binary fails, fall back to building packages locally (@pxref{Substitution Failure})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:10907 +#: guix-git/doc/guix.texi:11221 msgid "client-substitute-urls" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10907 +#: guix-git/doc/guix.texi:11221 msgid "Consider @var{urls} the whitespace-separated list of substitute source URLs, overriding the default list of URLs of @command{guix-daemon} (@pxref{daemon-substitute-urls,, @command{guix-daemon} URLs})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10911 +#: guix-git/doc/guix.texi:11225 msgid "This means that substitutes may be downloaded from @var{urls}, provided they are signed by a key authorized by the system administrator (@pxref{Substitutes})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10914 +#: guix-git/doc/guix.texi:11228 msgid "When @var{urls} is the empty string, substitutes are effectively disabled." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10920 +#: guix-git/doc/guix.texi:11234 #, no-wrap msgid "--no-grafts" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10924 +#: guix-git/doc/guix.texi:11238 msgid "Do not ``graft'' packages. In practice, this means that package updates available as grafts are not applied. @xref{Security Updates}, for more information on grafts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10925 +#: guix-git/doc/guix.texi:11239 #, no-wrap msgid "--rounds=@var{n}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10928 +#: guix-git/doc/guix.texi:11242 msgid "Build each derivation @var{n} times in a row, and raise an error if consecutive build results are not bit-for-bit identical." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10933 +#: guix-git/doc/guix.texi:11247 msgid "This is a useful way to detect non-deterministic builds processes. Non-deterministic build processes are a problem because they make it practically impossible for users to @emph{verify} whether third-party binaries are genuine. @xref{Invoking guix challenge}, for more." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10949 +#: guix-git/doc/guix.texi:11263 msgid "By default, the daemon's setting is honored (@pxref{Invoking guix-daemon, @option{--max-silent-time}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10956 +#: guix-git/doc/guix.texi:11270 msgid "By default, the daemon's setting is honored (@pxref{Invoking guix-daemon, @option{--timeout}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10959 +#: guix-git/doc/guix.texi:11273 #, no-wrap msgid "verbosity, of the command-line tools" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10960 +#: guix-git/doc/guix.texi:11274 #, no-wrap msgid "build logs, verbosity" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10961 +#: guix-git/doc/guix.texi:11275 #, no-wrap msgid "-v @var{level}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10962 +#: guix-git/doc/guix.texi:11276 #, no-wrap msgid "--verbosity=@var{level}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10967 +#: guix-git/doc/guix.texi:11281 msgid "Use the given verbosity @var{level}, an integer. Choosing 0 means that no output is produced, 1 is for quiet output; 2 is similar to 1 but it additionally displays download URLs; 3 shows all the build log output on standard error." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10972 +#: guix-git/doc/guix.texi:11286 msgid "Allow the use of up to @var{n} CPU cores for the build. The special value @code{0} means to use as many CPU cores as available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10978 +#: guix-git/doc/guix.texi:11292 msgid "Allow at most @var{n} build jobs in parallel. @xref{Invoking guix-daemon, @option{--max-jobs}}, for details about this option and the equivalent @command{guix-daemon} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10979 +#: guix-git/doc/guix.texi:11293 #, no-wrap msgid "--debug=@var{level}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10983 +#: guix-git/doc/guix.texi:11297 msgid "Produce debugging output coming from the build daemon. @var{level} must be an integer between 0 and 5; higher means more verbose output. Setting a level of 4 or more may be helpful when debugging setup issues with the build daemon." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10990 +#: guix-git/doc/guix.texi:11304 msgid "Behind the scenes, @command{guix build} is essentially an interface to the @code{package-derivation} procedure of the @code{(guix packages)} module, and to the @code{build-derivations} procedure of the @code{(guix derivations)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10994 +#: guix-git/doc/guix.texi:11308 msgid "In addition to options explicitly passed on the command line, @command{guix build} and other @command{guix} commands that support building honor the @env{GUIX_BUILD_OPTIONS} environment variable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:10995 +#: guix-git/doc/guix.texi:11309 #, no-wrap msgid "{Environment Variable} GUIX_BUILD_OPTIONS" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:11000 +#: guix-git/doc/guix.texi:11314 msgid "Users can define this variable to a list of command line options that will automatically be used by @command{guix build} and other @command{guix} commands that can perform builds, as in the example below:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11003 +#: guix-git/doc/guix.texi:11317 #, no-wrap msgid "$ export GUIX_BUILD_OPTIONS=\"--no-substitutes -c 2 -L /foo/bar\"\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:11007 +#: guix-git/doc/guix.texi:11321 msgid "These options are parsed independently, and the result is appended to the parsed command-line options." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11013 +#: guix-git/doc/guix.texi:11327 #, no-wrap msgid "package variants" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11021 +#: guix-git/doc/guix.texi:11335 msgid "Another set of command-line options supported by @command{guix build} and also @command{guix package} are @dfn{package transformation options}. These are options that make it possible to define @dfn{package variants}---for instance, packages built from different source code. This is a convenient way to create customized packages on the fly without having to type in the definitions of package variants (@pxref{Defining Packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11025 +#: guix-git/doc/guix.texi:11339 msgid "Package transformation options are preserved across upgrades: @command{guix upgrade} attempts to apply transformation options initially used when creating the profile to the upgraded packages." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11030 +#: guix-git/doc/guix.texi:11344 msgid "The available options are listed below. Most commands support them and also support a @option{--help-transform} option that lists all the available options and a synopsis (these options are not shown in the @option{--help} output for brevity)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11033 +#: guix-git/doc/guix.texi:11347 #, no-wrap msgid "performance, tuning code" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11034 +#: guix-git/doc/guix.texi:11348 #, no-wrap msgid "optimization, of package code" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11035 +#: guix-git/doc/guix.texi:11349 #, no-wrap msgid "tuning, of package code" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11036 +#: guix-git/doc/guix.texi:11350 #, no-wrap msgid "SIMD support" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11037 +#: guix-git/doc/guix.texi:11351 #, fuzzy, no-wrap #| msgid "Java Packages" msgid "tunable packages" msgstr "بسته‌های جاوا" #. type: cindex -#: guix-git/doc/guix.texi:11038 +#: guix-git/doc/guix.texi:11352 #, no-wrap msgid "package multi-versioning" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11039 +#: guix-git/doc/guix.texi:11353 #, no-wrap msgid "--tune[=@var{cpu}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11043 +#: guix-git/doc/guix.texi:11357 msgid "Use versions of the packages marked as ``tunable'' optimized for @var{cpu}. When @var{cpu} is @code{native}, or when it is omitted, tune for the CPU on which the @command{guix} command is running." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11049 +#: guix-git/doc/guix.texi:11363 msgid "Valid @var{cpu} names are those recognized by the underlying compiler, by default the GNU Compiler Collection. On x86_64 processors, this includes CPU names such as @code{nehalem}, @code{haswell}, and @code{skylake} (@pxref{x86 Options, @code{-march},, gcc, Using the GNU Compiler Collection (GCC)})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11056 +#: guix-git/doc/guix.texi:11370 msgid "As new generations of CPUs come out, they augment the standard instruction set architecture (ISA) with additional instructions, in particular instructions for single-instruction/multiple-data (SIMD) parallel processing. For example, while Core2 and Skylake CPUs both implement the x86_64 ISA, only the latter supports AVX2 SIMD instructions." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11063 +#: guix-git/doc/guix.texi:11377 msgid "The primary gain one can expect from @option{--tune} is for programs that can make use of those SIMD capabilities @emph{and} that do not already have a mechanism to select the right optimized code at run time. Packages that have the @code{tunable?} property set are considered @dfn{tunable packages} by the @option{--tune} option; a package definition with the property set looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:11068 +#: guix-git/doc/guix.texi:11382 #, no-wrap msgid "" "(package\n" @@ -20089,7 +20621,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:11072 +#: guix-git/doc/guix.texi:11386 #, no-wrap msgid "" " ;; This package may benefit from SIMD extensions so\n" @@ -20098,87 +20630,87 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11077 +#: guix-git/doc/guix.texi:11391 msgid "Other packages are not considered tunable. This allows Guix to use generic binaries in the cases where tuning for a specific CPU is unlikely to provide any gain." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11083 +#: guix-git/doc/guix.texi:11397 msgid "Tuned packages are built with @code{-march=@var{CPU}}; under the hood, the @option{-march} option is passed to the actual wrapper by a compiler wrapper. Since the build machine may not be able to run code for the target CPU micro-architecture, the test suite is not run when building a tuned package." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11087 +#: guix-git/doc/guix.texi:11401 msgid "To reduce rebuilds to the minimum, tuned packages are @emph{grafted} onto packages that depend on them (@pxref{Security Updates, grafts}). Thus, using @option{--no-grafts} cancels the effect of @option{--tune}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11093 +#: guix-git/doc/guix.texi:11407 msgid "We call this technique @dfn{package multi-versioning}: several variants of tunable packages may be built, one for each CPU variant. It is the coarse-grain counterpart of @dfn{function multi-versioning} as implemented by the GNU tool chain (@pxref{Function Multiversioning,,, gcc, Using the GNU Compiler Collection (GCC)})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11094 +#: guix-git/doc/guix.texi:11408 #, no-wrap msgid "--with-source=@var{source}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11095 +#: guix-git/doc/guix.texi:11409 #, no-wrap msgid "--with-source=@var{package}=@var{source}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11096 +#: guix-git/doc/guix.texi:11410 #, no-wrap msgid "--with-source=@var{package}@@@var{version}=@var{source}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11101 +#: guix-git/doc/guix.texi:11415 msgid "Use @var{source} as the source of @var{package}, and @var{version} as its version number. @var{source} must be a file name or a URL, as for @command{guix download} (@pxref{Invoking guix download})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11107 +#: guix-git/doc/guix.texi:11421 msgid "When @var{package} is omitted, it is taken to be the package name specified on the command line that matches the base of @var{source}---e.g., if @var{source} is @code{/src/guile-2.0.10.tar.gz}, the corresponding package is @code{guile}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11110 +#: guix-git/doc/guix.texi:11424 msgid "Likewise, when @var{version} is omitted, the version string is inferred from @var{source}; in the previous example, it is @code{2.0.10}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11115 +#: guix-git/doc/guix.texi:11429 msgid "This option allows users to try out versions of packages other than the one provided by the distribution. The example below downloads @file{ed-1.7.tar.gz} from a GNU mirror and uses that as the source for the @code{ed} package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11118 +#: guix-git/doc/guix.texi:11432 #, no-wrap msgid "guix build ed --with-source=mirror://gnu/ed/ed-1.7.tar.gz\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11122 +#: guix-git/doc/guix.texi:11436 msgid "As a developer, @option{--with-source} makes it easy to test release candidates:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11125 +#: guix-git/doc/guix.texi:11439 #, no-wrap msgid "guix build guile --with-source=../guile-2.0.9.219-e1bb7.tar.xz\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11128 +#: guix-git/doc/guix.texi:11442 msgid "@dots{} or to build from a checkout in a pristine environment:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11132 +#: guix-git/doc/guix.texi:11446 #, no-wrap msgid "" "$ git clone git://git.sv.gnu.org/guix.git\n" @@ -20186,126 +20718,126 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11134 +#: guix-git/doc/guix.texi:11448 #, no-wrap msgid "--with-input=@var{package}=@var{replacement}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11139 +#: guix-git/doc/guix.texi:11453 msgid "Replace dependency on @var{package} by a dependency on @var{replacement}. @var{package} must be a package name, and @var{replacement} must be a package specification such as @code{guile} or @code{guile@@1.8}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11143 +#: guix-git/doc/guix.texi:11457 msgid "For instance, the following command builds Guix, but replaces its dependency on the current stable version of Guile with a dependency on the legacy version of Guile, @code{guile@@2.0}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11146 +#: guix-git/doc/guix.texi:11460 #, no-wrap msgid "guix build --with-input=guile=guile@@2.0 guix\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11151 +#: guix-git/doc/guix.texi:11465 msgid "This is a recursive, deep replacement. So in this example, both @code{guix} and its dependency @code{guile-json} (which also depends on @code{guile}) get rebuilt against @code{guile@@2.0}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11154 +#: guix-git/doc/guix.texi:11468 msgid "This is implemented using the @code{package-input-rewriting} Scheme procedure (@pxref{Defining Packages, @code{package-input-rewriting}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11155 +#: guix-git/doc/guix.texi:11469 #, no-wrap msgid "--with-graft=@var{package}=@var{replacement}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11161 +#: guix-git/doc/guix.texi:11475 msgid "This is similar to @option{--with-input} but with an important difference: instead of rebuilding the whole dependency chain, @var{replacement} is built and then @dfn{grafted} onto the binaries that were initially referring to @var{package}. @xref{Security Updates}, for more information on grafts." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11165 +#: guix-git/doc/guix.texi:11479 msgid "For example, the command below grafts version 3.5.4 of GnuTLS onto Wget and all its dependencies, replacing references to the version of GnuTLS they currently refer to:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11168 +#: guix-git/doc/guix.texi:11482 #, no-wrap msgid "guix build --with-graft=gnutls=gnutls@@3.5.4 wget\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11177 +#: guix-git/doc/guix.texi:11491 msgid "This has the advantage of being much faster than rebuilding everything. But there is a caveat: it works if and only if @var{package} and @var{replacement} are strictly compatible---for example, if they provide a library, the application binary interface (ABI) of those libraries must be compatible. If @var{replacement} is somehow incompatible with @var{package}, then the resulting package may be unusable. Use with care!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11178 guix-git/doc/guix.texi:37882 +#: guix-git/doc/guix.texi:11492 guix-git/doc/guix.texi:38371 #, no-wrap msgid "debugging info, rebuilding" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11179 +#: guix-git/doc/guix.texi:11493 #, no-wrap msgid "--with-debug-info=@var{package}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11184 +#: guix-git/doc/guix.texi:11498 msgid "Build @var{package} in a way that preserves its debugging info and graft it onto packages that depend on it. This is useful if @var{package} does not already provide debugging info as a @code{debug} output (@pxref{Installing Debugging Files})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11190 +#: guix-git/doc/guix.texi:11504 msgid "For example, suppose you're experiencing a crash in Inkscape and would like to see what's up in GLib, a library deep down in Inkscape's dependency graph. GLib lacks a @code{debug} output, so debugging is tough. Fortunately, you rebuild GLib with debugging info and tack it on Inkscape:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11193 guix-git/doc/guix.texi:37913 +#: guix-git/doc/guix.texi:11507 guix-git/doc/guix.texi:38402 #, no-wrap msgid "guix install inkscape --with-debug-info=glib\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11197 +#: guix-git/doc/guix.texi:11511 msgid "Only GLib needs to be recompiled so this takes a reasonable amount of time. @xref{Installing Debugging Files}, for more info." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11203 +#: guix-git/doc/guix.texi:11517 msgid "Under the hood, this option works by passing the @samp{#:strip-binaries? #f} to the build system of the package of interest (@pxref{Build Systems}). Most build systems support that option but some do not. In that case, an error is raised." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11207 +#: guix-git/doc/guix.texi:11521 msgid "Likewise, if a C/C++ package is built without @code{-g} (which is rarely the case), debugging info will remain unavailable even when @code{#:strip-binaries?} is false." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11209 +#: guix-git/doc/guix.texi:11523 #, no-wrap msgid "tool chain, changing the build tool chain of a package" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11210 +#: guix-git/doc/guix.texi:11524 #, no-wrap msgid "--with-c-toolchain=@var{package}=@var{toolchain}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11214 +#: guix-git/doc/guix.texi:11528 msgid "This option changes the compilation of @var{package} and everything that depends on it so that they get built with @var{toolchain} instead of the default GNU tool chain for C/C++." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11221 +#: guix-git/doc/guix.texi:11535 #, no-wrap msgid "" "guix build octave-cli \\\n" @@ -20314,17 +20846,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11228 +#: guix-git/doc/guix.texi:11542 msgid "The command above builds a variant of the @code{fftw} and @code{fftwf} packages using version 10 of @code{gcc-toolchain} instead of the default tool chain, and then builds a variant of the GNU@tie{}Octave command-line interface using them. GNU@tie{}Octave itself is also built with @code{gcc-toolchain@@10}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11232 +#: guix-git/doc/guix.texi:11546 msgid "This other example builds the Hardware Locality (@code{hwloc}) library and its dependents up to @code{intel-mpi-benchmarks} with the Clang C compiler:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11236 +#: guix-git/doc/guix.texi:11550 #, no-wrap msgid "" "guix build --with-c-toolchain=hwloc=clang-toolchain \\\n" @@ -20332,40 +20864,40 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11245 +#: guix-git/doc/guix.texi:11559 msgid "There can be application binary interface (ABI) incompatibilities among tool chains. This is particularly true of the C++ standard library and run-time support libraries such as that of OpenMP@. By rebuilding all dependents with the same tool chain, @option{--with-c-toolchain} minimizes the risks of incompatibility but cannot entirely eliminate them. Choose @var{package} wisely." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11247 +#: guix-git/doc/guix.texi:11561 #, no-wrap msgid "--with-git-url=@var{package}=@var{url}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11248 +#: guix-git/doc/guix.texi:11562 #, no-wrap msgid "Git, using the latest commit" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11249 +#: guix-git/doc/guix.texi:11563 #, no-wrap msgid "latest commit, building" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11253 +#: guix-git/doc/guix.texi:11567 msgid "Build @var{package} from the latest commit of the @code{master} branch of the Git repository at @var{url}. Git sub-modules of the repository are fetched, recursively." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11256 +#: guix-git/doc/guix.texi:11570 msgid "For example, the following command builds the NumPy Python library against the latest commit of the master branch of Python itself:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11260 +#: guix-git/doc/guix.texi:11574 #, no-wrap msgid "" "guix build python-numpy \\\n" @@ -20373,318 +20905,318 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11264 +#: guix-git/doc/guix.texi:11578 msgid "This option can also be combined with @option{--with-branch} or @option{--with-commit} (see below)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11265 guix-git/doc/guix.texi:28957 +#: guix-git/doc/guix.texi:11579 guix-git/doc/guix.texi:29294 #, no-wrap msgid "continuous integration" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11271 +#: guix-git/doc/guix.texi:11585 msgid "Obviously, since it uses the latest commit of the given branch, the result of such a command varies over time. Nevertheless it is a convenient way to rebuild entire software stacks against the latest commit of one or more packages. This is particularly useful in the context of continuous integration (CI)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11275 +#: guix-git/doc/guix.texi:11589 msgid "Checkouts are kept in a cache under @file{~/.cache/guix/checkouts} to speed up consecutive accesses to the same repository. You may want to clean it up once in a while to save disk space." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11276 +#: guix-git/doc/guix.texi:11590 #, no-wrap msgid "--with-branch=@var{package}=@var{branch}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11282 +#: guix-git/doc/guix.texi:11596 msgid "Build @var{package} from the latest commit of @var{branch}. If the @code{source} field of @var{package} is an origin with the @code{git-fetch} method (@pxref{origin Reference}) or a @code{git-checkout} object, the repository URL is taken from that @code{source}. Otherwise you have to use @option{--with-git-url} to specify the URL of the Git repository." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11287 +#: guix-git/doc/guix.texi:11601 msgid "For instance, the following command builds @code{guile-sqlite3} from the latest commit of its @code{master} branch, and then builds @code{guix} (which depends on it) and @code{cuirass} (which depends on @code{guix}) against this specific @code{guile-sqlite3} build:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11290 +#: guix-git/doc/guix.texi:11604 #, no-wrap msgid "guix build --with-branch=guile-sqlite3=master cuirass\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11292 +#: guix-git/doc/guix.texi:11606 #, no-wrap msgid "--with-commit=@var{package}=@var{commit}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11297 +#: guix-git/doc/guix.texi:11611 msgid "This is similar to @option{--with-branch}, except that it builds from @var{commit} rather than the tip of a branch. @var{commit} must be a valid Git commit SHA1 identifier, a tag, or a @command{git describe} style identifier such as @code{1.0-3-gabc123}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11298 +#: guix-git/doc/guix.texi:11612 #, no-wrap msgid "--with-patch=@var{package}=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11305 +#: guix-git/doc/guix.texi:11619 msgid "Add @var{file} to the list of patches applied to @var{package}, where @var{package} is a spec such as @code{python@@3.8} or @code{glibc}. @var{file} must contain a patch; it is applied with the flags specified in the @code{origin} of @var{package} (@pxref{origin Reference}), which by default includes @code{-p1} (@pxref{patch Directories,,, diffutils, Comparing and Merging Files})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11308 +#: guix-git/doc/guix.texi:11622 msgid "As an example, the command below rebuilds Coreutils with the GNU C Library (glibc) patched with the given patch:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11311 +#: guix-git/doc/guix.texi:11625 #, no-wrap msgid "guix build coreutils --with-patch=glibc=./glibc-frob.patch\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11315 +#: guix-git/doc/guix.texi:11629 msgid "In this example, glibc itself as well as everything that leads to Coreutils in the dependency graph is rebuilt." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11316 +#: guix-git/doc/guix.texi:11630 #, no-wrap msgid "upstream, latest version" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11317 +#: guix-git/doc/guix.texi:11631 #, no-wrap msgid "--with-latest=@var{package}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11322 +#: guix-git/doc/guix.texi:11636 msgid "So you like living on the bleeding edge? This option is for you! It replaces occurrences of @var{package} in the dependency graph with its latest upstream version, as reported by @command{guix refresh} (@pxref{Invoking guix refresh})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11326 +#: guix-git/doc/guix.texi:11640 msgid "It does so by determining the latest upstream release of @var{package} (if possible), downloading it, and authenticating it @emph{if} it comes with an OpenPGP signature." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11329 +#: guix-git/doc/guix.texi:11643 msgid "As an example, the command below builds Guix against the latest version of Guile-JSON:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11332 +#: guix-git/doc/guix.texi:11646 #, no-wrap msgid "guix build guix --with-latest=guile-json\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11341 +#: guix-git/doc/guix.texi:11655 msgid "There are limitations. First, in cases where the tool cannot or does not know how to authenticate source code, you are at risk of running malicious code; a warning is emitted in this case. Second, this option simply changes the source used in the existing package definitions, which is not always sufficient: there might be additional dependencies that need to be added, patches to apply, and more generally the quality assurance work that Guix developers normally do will be missing." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11346 +#: guix-git/doc/guix.texi:11660 msgid "You've been warned! In all the other cases, it's a snappy way to stay on top. We encourage you to submit patches updating the actual package definitions once you have successfully tested an upgrade (@pxref{Contributing})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11347 +#: guix-git/doc/guix.texi:11661 #, no-wrap msgid "test suite, skipping" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11348 +#: guix-git/doc/guix.texi:11662 #, no-wrap msgid "--without-tests=@var{package}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11354 +#: guix-git/doc/guix.texi:11668 msgid "Build @var{package} without running its tests. This can be useful in situations where you want to skip the lengthy test suite of a intermediate package, or if a package's test suite fails in a non-deterministic fashion. It should be used with care because running the test suite is a good way to ensure a package is working as intended." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11358 +#: guix-git/doc/guix.texi:11672 msgid "Turning off tests leads to a different store item. Consequently, when using this option, anything that depends on @var{package} must be rebuilt, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11361 +#: guix-git/doc/guix.texi:11675 #, no-wrap msgid "guix install --without-tests=python python-notebook\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11367 +#: guix-git/doc/guix.texi:11681 msgid "The command above installs @code{python-notebook} on top of @code{python} built without running its test suite. To do so, it also rebuilds everything that depends on @code{python}, including @code{python-notebook} itself." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11373 +#: guix-git/doc/guix.texi:11687 msgid "Internally, @option{--without-tests} relies on changing the @code{#:tests?} option of a package's @code{check} phase (@pxref{Build Systems}). Note that some packages use a customized @code{check} phase that does not respect a @code{#:tests? #f} setting. Therefore, @option{--without-tests} has no effect on these packages." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11380 +#: guix-git/doc/guix.texi:11694 msgid "Wondering how to achieve the same effect using Scheme code, for example in your manifest, or how to write your own package transformation? @xref{Defining Package Variants}, for an overview of the programming interfaces available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11386 +#: guix-git/doc/guix.texi:11700 msgid "The command-line options presented below are specific to @command{guix build}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11389 +#: guix-git/doc/guix.texi:11703 #, no-wrap msgid "--quiet" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11394 +#: guix-git/doc/guix.texi:11708 msgid "Build quietly, without displaying the build log; this is equivalent to @option{--verbosity=0}. Upon completion, the build log is kept in @file{/var} (or similar) and can always be retrieved using the @option{--log-file} option." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11399 +#: guix-git/doc/guix.texi:11713 msgid "Build the package, derivation, or other file-like object that the code within @var{file} evaluates to (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11402 +#: guix-git/doc/guix.texi:11716 msgid "As an example, @var{file} might contain a package definition like this (@pxref{Defining Packages}):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11411 +#: guix-git/doc/guix.texi:11725 msgid "The @var{file} may also contain a JSON representation of one or more package definitions. Running @code{guix build -f} on @file{hello.json} with the following contents would result in building the packages @code{myhello} and @code{greeter}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11416 +#: guix-git/doc/guix.texi:11730 #, no-wrap msgid "--manifest=@var{manifest}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11417 +#: guix-git/doc/guix.texi:11731 #, no-wrap msgid "-m @var{manifest}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11420 +#: guix-git/doc/guix.texi:11734 msgid "Build all packages listed in the given @var{manifest} (@pxref{profile-manifest, @option{--manifest}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11424 +#: guix-git/doc/guix.texi:11738 msgid "Build the package or derivation @var{expr} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11428 +#: guix-git/doc/guix.texi:11742 msgid "For example, @var{expr} may be @code{(@@ (gnu packages guile) guile-1.8)}, which unambiguously designates this specific variant of version 1.8 of Guile." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11432 +#: guix-git/doc/guix.texi:11746 msgid "Alternatively, @var{expr} may be a G-expression, in which case it is used as a build program passed to @code{gexp->derivation} (@pxref{G-Expressions})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11436 +#: guix-git/doc/guix.texi:11750 msgid "Lastly, @var{expr} may refer to a zero-argument monadic procedure (@pxref{The Store Monad}). The procedure must return a derivation as a monadic value, which is then passed through @code{run-with-store}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11437 +#: guix-git/doc/guix.texi:11751 #, no-wrap msgid "--source" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11438 guix-git/doc/guix.texi:11835 +#: guix-git/doc/guix.texi:11752 #, no-wrap msgid "-S" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11441 +#: guix-git/doc/guix.texi:11755 msgid "Build the source derivations of the packages, rather than the packages themselves." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11445 +#: guix-git/doc/guix.texi:11759 msgid "For instance, @code{guix build -S gcc} returns something like @file{/gnu/store/@dots{}-gcc-4.7.2.tar.bz2}, which is the GCC source tarball." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11449 +#: guix-git/doc/guix.texi:11763 msgid "The returned source tarball is the result of applying any patches and code snippets specified in the package @code{origin} (@pxref{Defining Packages})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11450 +#: guix-git/doc/guix.texi:11764 #, no-wrap msgid "source, verification" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11456 +#: guix-git/doc/guix.texi:11770 msgid "As with other derivations, the result of building a source derivation can be verified using the @option{--check} option (@pxref{build-check}). This is useful to validate that a (potentially already built or substituted, thus cached) package source matches against its declared hash." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11461 +#: guix-git/doc/guix.texi:11775 msgid "Note that @command{guix build -S} compiles the sources only of the specified packages. They do not include the sources of statically linked dependencies and by themselves are insufficient for reproducing the packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11462 +#: guix-git/doc/guix.texi:11776 #, no-wrap msgid "--sources" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11469 +#: guix-git/doc/guix.texi:11783 msgid "Fetch and return the source of @var{package-or-derivation} and all their dependencies, recursively. This is a handy way to obtain a local copy of all the source code needed to build @var{packages}, allowing you to eventually build them even without network access. It is an extension of the @option{--source} option and can accept one of the following optional argument values:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11471 guix-git/doc/guix.texi:13252 +#: guix-git/doc/guix.texi:11785 guix-git/doc/guix.texi:13609 #, no-wrap msgid "package" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11474 +#: guix-git/doc/guix.texi:11788 msgid "This value causes the @option{--sources} option to behave in the same way as the @option{--source} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11475 guix-git/doc/guix.texi:19682 +#: guix-git/doc/guix.texi:11789 guix-git/doc/guix.texi:20044 #, no-wrap msgid "all" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11478 +#: guix-git/doc/guix.texi:11792 msgid "Build the source derivations of all packages, including any source that might be listed as @code{inputs}. This is the default value." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11484 +#: guix-git/doc/guix.texi:11798 #, no-wrap msgid "" "$ guix build --sources tzdata\n" @@ -20694,18 +21226,18 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11486 +#: guix-git/doc/guix.texi:11800 #, no-wrap msgid "transitive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11490 +#: guix-git/doc/guix.texi:11804 msgid "Build the source derivations of all packages, as well of all transitive inputs to the packages. This can be used e.g.@: to prefetch package source for later offline building." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11501 +#: guix-git/doc/guix.texi:11815 #, no-wrap msgid "" "$ guix build --sources=transitive tzdata\n" @@ -20720,146 +21252,146 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11511 +#: guix-git/doc/guix.texi:11825 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of the system type of the build host. The @command{guix build} command allows you to repeat this option several times, in which case it builds for all the specified systems; other commands ignore extraneous @option{-s} options." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11516 +#: guix-git/doc/guix.texi:11830 msgid "The @option{--system} flag is for @emph{native} compilation and must not be confused with cross-compilation. See @option{--target} below for information on cross-compilation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11523 +#: guix-git/doc/guix.texi:11837 msgid "An example use of this is on Linux-based systems, which can emulate different personalities. For instance, passing @option{--system=i686-linux} on an @code{x86_64-linux} system or @option{--system=armhf-linux} on an @code{aarch64-linux} system allows you to build packages in a complete 32-bit environment." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11528 +#: guix-git/doc/guix.texi:11842 msgid "Building for an @code{armhf-linux} system is unconditionally enabled on @code{aarch64-linux} machines, although certain aarch64 chipsets do not allow for this functionality, notably the ThunderX." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11534 +#: guix-git/doc/guix.texi:11848 msgid "Similarly, when transparent emulation with QEMU and @code{binfmt_misc} is enabled (@pxref{Virtualization Services, @code{qemu-binfmt-service-type}}), you can build for any system for which a QEMU @code{binfmt_misc} handler is installed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11538 +#: guix-git/doc/guix.texi:11852 msgid "Builds for a system other than that of the machine you are using can also be offloaded to a remote machine of the right architecture. @xref{Daemon Offload Setup}, for more information on offloading." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11544 +#: guix-git/doc/guix.texi:11858 msgid "Cross-build for @var{triplet}, which must be a valid GNU triplet, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying Target Triplets, GNU configuration triplets,, autoconf, Autoconf})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:11546 +#: guix-git/doc/guix.texi:11860 msgid "build-check" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11547 +#: guix-git/doc/guix.texi:11861 #, no-wrap msgid "determinism, checking" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11548 +#: guix-git/doc/guix.texi:11862 #, no-wrap msgid "reproducibility, checking" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11552 +#: guix-git/doc/guix.texi:11866 msgid "Rebuild @var{package-or-derivation}, which are already available in the store, and raise an error if the build results are not bit-for-bit identical." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11557 +#: guix-git/doc/guix.texi:11871 msgid "This mechanism allows you to check whether previously installed substitutes are genuine (@pxref{Substitutes}), or whether the build result of a package is deterministic. @xref{Invoking guix challenge}, for more background information and tools." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11562 +#: guix-git/doc/guix.texi:11876 #, no-wrap msgid "--repair" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11563 +#: guix-git/doc/guix.texi:11877 #, no-wrap msgid "repairing store items" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11567 +#: guix-git/doc/guix.texi:11881 msgid "Attempt to repair the specified store items, if they are corrupt, by re-downloading or rebuilding them." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11569 +#: guix-git/doc/guix.texi:11883 msgid "This operation is not atomic and thus restricted to @code{root}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11570 +#: guix-git/doc/guix.texi:11884 #, no-wrap msgid "--derivations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11574 +#: guix-git/doc/guix.texi:11888 msgid "Return the derivation paths, not the output paths, of the given packages." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11577 +#: guix-git/doc/guix.texi:11891 #, no-wrap msgid "GC roots, adding" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11578 +#: guix-git/doc/guix.texi:11892 #, no-wrap msgid "garbage collector roots, adding" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11581 guix-git/doc/guix.texi:35312 +#: guix-git/doc/guix.texi:11895 guix-git/doc/guix.texi:35756 msgid "Make @var{file} a symlink to the result, and register it as a garbage collector root." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11587 +#: guix-git/doc/guix.texi:11901 msgid "Consequently, the results of this @command{guix build} invocation are protected from garbage collection until @var{file} is removed. When that option is omitted, build results are eligible for garbage collection as soon as the build completes. @xref{Invoking guix gc}, for more on GC roots." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11588 +#: guix-git/doc/guix.texi:11902 #, no-wrap msgid "--log-file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11589 +#: guix-git/doc/guix.texi:11903 #, no-wrap msgid "build logs, access" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11593 +#: guix-git/doc/guix.texi:11907 msgid "Return the build log file names or URLs for the given @var{package-or-derivation}, or raise an error if build logs are missing." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11596 +#: guix-git/doc/guix.texi:11910 msgid "This works regardless of how packages or derivations are specified. For instance, the following invocations are equivalent:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11602 +#: guix-git/doc/guix.texi:11916 #, no-wrap msgid "" "guix build --log-file $(guix build -d guile)\n" @@ -20869,17 +21401,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11607 +#: guix-git/doc/guix.texi:11921 msgid "If a log is unavailable locally, and unless @option{--no-substitutes} is passed, the command looks for a corresponding log on one of the substitute servers (as specified with @option{--substitute-urls})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11610 +#: guix-git/doc/guix.texi:11924 msgid "So for instance, imagine you want to see the build log of GDB on MIPS, but you are actually on an @code{x86_64} machine:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11614 +#: guix-git/doc/guix.texi:11928 #, no-wrap msgid "" "$ guix build --log-file gdb -s aarch64-linux\n" @@ -20887,33 +21419,33 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11617 +#: guix-git/doc/guix.texi:11931 msgid "You can freely access a huge library of build logs!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11622 +#: guix-git/doc/guix.texi:11936 #, no-wrap msgid "build failures, debugging" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11628 +#: guix-git/doc/guix.texi:11942 msgid "When defining a new package (@pxref{Defining Packages}), you will probably find yourself spending some time debugging and tweaking the build until it succeeds. To do that, you need to operate the build commands yourself in an environment as close as possible to the one the build daemon uses." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11633 +#: guix-git/doc/guix.texi:11947 msgid "To that end, the first thing to do is to use the @option{--keep-failed} or @option{-K} option of @command{guix build}, which will keep the failed build tree in @file{/tmp} or whatever directory you specified as @env{TMPDIR} (@pxref{Common Build Options, @option{--keep-failed}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11639 +#: guix-git/doc/guix.texi:11953 msgid "From there on, you can @command{cd} to the failed build tree and source the @file{environment-variables} file, which contains all the environment variable definitions that were in place when the build failed. So let's say you're debugging a build failure in package @code{foo}; a typical session would look like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11646 +#: guix-git/doc/guix.texi:11960 #, no-wrap msgid "" "$ guix build foo -K\n" @@ -20924,22 +21456,22 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11650 +#: guix-git/doc/guix.texi:11964 msgid "Now, you can invoke commands as if you were the daemon (almost) and troubleshoot your build process." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11656 +#: guix-git/doc/guix.texi:11970 msgid "Sometimes it happens that, for example, a package's tests pass when you run them manually but they fail when the daemon runs them. This can happen because the daemon runs builds in containers where, unlike in our environment above, network access is missing, @file{/bin/sh} does not exist, etc. (@pxref{Build Environment Setup})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11659 +#: guix-git/doc/guix.texi:11973 msgid "In such cases, you may need to run inspect the build process from within a container similar to the one the build daemon creates:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11667 +#: guix-git/doc/guix.texi:11981 #, no-wrap msgid "" "$ guix build -K foo\n" @@ -20951,708 +21483,714 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11676 +#: guix-git/doc/guix.texi:11990 msgid "Here, @command{guix shell -C} creates a container and spawns a new shell in it (@pxref{Invoking guix shell}). The @command{strace gdb} part adds the @command{strace} and @command{gdb} commands to the container, which you may find handy while debugging. The @option{--no-grafts} option makes sure we get the exact same environment, with ungrafted packages (@pxref{Security Updates}, for more info on grafts)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11679 +#: guix-git/doc/guix.texi:11993 msgid "To get closer to a container like that used by the build daemon, we can remove @file{/bin/sh}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11682 +#: guix-git/doc/guix.texi:11996 #, no-wrap msgid "[env]# rm /bin/sh\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11686 +#: guix-git/doc/guix.texi:12000 msgid "(Don't worry, this is harmless: this is all happening in the throw-away container created by @command{guix shell}.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11689 +#: guix-git/doc/guix.texi:12003 msgid "The @command{strace} command is probably not in the search path, but we can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11692 +#: guix-git/doc/guix.texi:12006 #, no-wrap msgid "[env]# $GUIX_ENVIRONMENT/bin/strace -f -o log make check\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11697 +#: guix-git/doc/guix.texi:12011 msgid "In this way, not only you will have reproduced the environment variables the daemon uses, you will also be running the build process in a container similar to the one the daemon uses." msgstr "" #. type: section -#: guix-git/doc/guix.texi:11700 +#: guix-git/doc/guix.texi:12014 #, no-wrap msgid "Invoking @command{guix edit}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:11702 +#: guix-git/doc/guix.texi:12016 #, no-wrap msgid "guix edit" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11703 +#: guix-git/doc/guix.texi:12017 #, no-wrap msgid "package definition, editing" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11708 +#: guix-git/doc/guix.texi:12022 msgid "So many packages, so many source files! The @command{guix edit} command facilitates the life of users and packagers by pointing their editor at the source file containing the definition of the specified packages. For instance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11711 +#: guix-git/doc/guix.texi:12025 #, no-wrap msgid "guix edit gcc@@4.9 vim\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11717 +#: guix-git/doc/guix.texi:12031 msgid "launches the program specified in the @env{VISUAL} or in the @env{EDITOR} environment variable to view the recipe of GCC@tie{}4.9.3 and that of Vim." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11723 +#: guix-git/doc/guix.texi:12037 msgid "If you are using a Guix Git checkout (@pxref{Building from Git}), or have created your own packages on @env{GUIX_PACKAGE_PATH} (@pxref{Package Modules}), you will be able to edit the package recipes. In other cases, you will be able to examine the read-only recipes for packages currently in the store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11728 +#: guix-git/doc/guix.texi:12042 msgid "Instead of @env{GUIX_PACKAGE_PATH}, the command-line option @option{--load-path=@var{directory}} (or in short @option{-L @var{directory}}) allows you to add @var{directory} to the front of the package module search path and so make your own packages visible." msgstr "" #. type: section -#: guix-git/doc/guix.texi:11730 +#: guix-git/doc/guix.texi:12044 #, no-wrap msgid "Invoking @command{guix download}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:11732 +#: guix-git/doc/guix.texi:12046 #, no-wrap msgid "guix download" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11733 +#: guix-git/doc/guix.texi:12047 #, no-wrap msgid "downloading package sources" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11740 +#: guix-git/doc/guix.texi:12054 msgid "When writing a package definition, developers typically need to download a source tarball, compute its SHA256 hash, and write that hash in the package definition (@pxref{Defining Packages}). The @command{guix download} tool helps with this task: it downloads a file from the given URI, adds it to the store, and prints both its file name in the store and its SHA256 hash." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11747 +#: guix-git/doc/guix.texi:12061 msgid "The fact that the downloaded file is added to the store saves bandwidth: when the developer eventually tries to build the newly defined package with @command{guix build}, the source tarball will not have to be downloaded again because it is already in the store. It is also a convenient way to temporarily stash files, which may be deleted eventually (@pxref{Invoking guix gc})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11755 +#: guix-git/doc/guix.texi:12069 msgid "The @command{guix download} command supports the same URIs as used in package definitions. In particular, it supports @code{mirror://} URIs. @code{https} URIs (HTTP over TLS) are supported @emph{provided} the Guile bindings for GnuTLS are available in the user's environment; when they are not available, an error is raised. @xref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11760 +#: guix-git/doc/guix.texi:12074 msgid "@command{guix download} verifies HTTPS server certificates by loading the certificates of X.509 authorities from the directory pointed to by the @env{SSL_CERT_DIR} environment variable (@pxref{X.509 Certificates}), unless @option{--no-check-certificate} is used." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11762 guix-git/doc/guix.texi:13565 +#: guix-git/doc/guix.texi:12076 guix-git/doc/guix.texi:13922 msgid "The following options are available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11764 guix-git/doc/guix.texi:11808 +#: guix-git/doc/guix.texi:12078 guix-git/doc/guix.texi:12122 #, no-wrap msgid "--hash=@var{algorithm}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11765 guix-git/doc/guix.texi:11809 +#: guix-git/doc/guix.texi:12079 guix-git/doc/guix.texi:12123 #, no-wrap msgid "-H @var{algorithm}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11768 +#: guix-git/doc/guix.texi:12082 msgid "Compute a hash using the specified @var{algorithm}. @xref{Invoking guix hash}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11769 guix-git/doc/guix.texi:11818 +#: guix-git/doc/guix.texi:12083 guix-git/doc/guix.texi:12132 #, no-wrap msgid "--format=@var{fmt}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11770 guix-git/doc/guix.texi:11819 +#: guix-git/doc/guix.texi:12084 guix-git/doc/guix.texi:12133 #, no-wrap msgid "-f @var{fmt}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11773 +#: guix-git/doc/guix.texi:12087 msgid "Write the hash in the format specified by @var{fmt}. For more information on the valid values for @var{fmt}, @pxref{Invoking guix hash}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11774 +#: guix-git/doc/guix.texi:12088 #, no-wrap msgid "--no-check-certificate" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11776 +#: guix-git/doc/guix.texi:12090 msgid "Do not validate the X.509 certificates of HTTPS servers." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11780 +#: guix-git/doc/guix.texi:12094 msgid "When using this option, you have @emph{absolutely no guarantee} that you are communicating with the authentic server responsible for the given URL, which makes you vulnerable to ``man-in-the-middle'' attacks." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11781 +#: guix-git/doc/guix.texi:12095 #, no-wrap msgid "--output=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11782 +#: guix-git/doc/guix.texi:12096 #, no-wrap msgid "-o @var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11785 +#: guix-git/doc/guix.texi:12099 msgid "Save the downloaded file to @var{file} instead of adding it to the store." msgstr "" #. type: section -#: guix-git/doc/guix.texi:11788 +#: guix-git/doc/guix.texi:12102 #, no-wrap msgid "Invoking @command{guix hash}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:11790 +#: guix-git/doc/guix.texi:12104 #, no-wrap msgid "guix hash" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11795 +#: guix-git/doc/guix.texi:12109 msgid "The @command{guix hash} command computes the hash of a file. It is primarily a convenience tool for anyone contributing to the distribution: it computes the cryptographic hash of one or more files, which can be used in the definition of a package (@pxref{Defining Packages})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11800 +#: guix-git/doc/guix.texi:12114 #, no-wrap msgid "guix hash @var{option} @var{file} ...\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11805 +#: guix-git/doc/guix.texi:12119 msgid "When @var{file} is @code{-} (a hyphen), @command{guix hash} computes the hash of data read from standard input. @command{guix hash} has the following options:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11812 +#: guix-git/doc/guix.texi:12126 msgid "Compute a hash using the specified @var{algorithm}, @code{sha256} by default." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11817 -msgid "@var{algorithm} must the name of a cryptographic hash algorithm supported by Libgcrypt @i{via} Guile-Gcrypt---e.g., @code{sha512} or @code{sha3-256} (@pxref{Hash Functions,,, guile-gcrypt, Guile-Gcrypt Reference Manual})." +#: guix-git/doc/guix.texi:12131 +msgid "@var{algorithm} must be the name of a cryptographic hash algorithm supported by Libgcrypt @i{via} Guile-Gcrypt---e.g., @code{sha512} or @code{sha3-256} (@pxref{Hash Functions,,, guile-gcrypt, Guile-Gcrypt Reference Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11821 +#: guix-git/doc/guix.texi:12135 msgid "Write the hash in the format specified by @var{fmt}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11824 +#: guix-git/doc/guix.texi:12138 msgid "Supported formats: @code{base64}, @code{nix-base32}, @code{base32}, @code{base16} (@code{hex} and @code{hexadecimal} can be used as well)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11828 +#: guix-git/doc/guix.texi:12142 msgid "If the @option{--format} option is not specified, @command{guix hash} will output the hash in @code{nix-base32}. This representation is used in the definitions of packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11833 -msgid "This option is deprecated in favor of @option{--serializer}. It is a legacy alias for @var{type} sets to @code{nar}." +#: guix-git/doc/guix.texi:12148 +msgid "The @option{--recursive} option is deprecated in favor of @option{--serializer=nar} (see below); @option{-r} remains accepted as a convenient shorthand." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11834 +#: guix-git/doc/guix.texi:12149 #, no-wrap msgid "--serializer=@var{type}" msgstr "" +#. type: itemx +#: guix-git/doc/guix.texi:12150 +#, no-wrap +msgid "-S @var{type}" +msgstr "" + #. type: table -#: guix-git/doc/guix.texi:11837 +#: guix-git/doc/guix.texi:12152 msgid "Compute the hash on @var{file} using @var{type} serialization." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11839 +#: guix-git/doc/guix.texi:12154 msgid "@var{type} may be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11841 guix-git/doc/guix.texi:13918 -#: guix-git/doc/guix.texi:17405 guix-git/doc/guix.texi:19679 +#: guix-git/doc/guix.texi:12156 guix-git/doc/guix.texi:14275 +#: guix-git/doc/guix.texi:17767 guix-git/doc/guix.texi:20041 #, no-wrap msgid "none" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11843 +#: guix-git/doc/guix.texi:12158 msgid "This is the default: it computes the hash of a file's contents." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11844 +#: guix-git/doc/guix.texi:12159 #, no-wrap msgid "nar" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11854 -msgid "Compute the hash of a ``normalized archive'' (or ``nar'') containing @var{file}, including its children if it is a directory. Some of the metadata of @var{file} is part of the archive; for instance, when @var{file} is a regular file, the hash is different depending on whether @var{file} is executable or not. Metadata such as time stamps has no impact on the hash (@pxref{Invoking guix archive}, for more info on the nar format)." +#: guix-git/doc/guix.texi:12169 +msgid "Compute the hash of a ``normalized archive'' (or ``nar'') containing @var{file}, including its children if it is a directory. Some of the metadata of @var{file} is part of the archive; for instance, when @var{file} is a regular file, the hash is different depending on whether @var{file} is executable or not. Metadata such as time stamps have no impact on the hash (@pxref{Invoking guix archive}, for more info on the nar format)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11855 +#: guix-git/doc/guix.texi:12170 #, no-wrap msgid "git" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11858 -msgid "Compute the has of the file or directory as a Git ``tree'', following the same method as the Git version control system." +#: guix-git/doc/guix.texi:12173 +msgid "Compute the hash of the file or directory as a Git ``tree'', following the same method as the Git version control system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11860 +#: guix-git/doc/guix.texi:12175 #, no-wrap msgid "--exclude-vcs" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11861 guix-git/doc/guix.texi:13038 +#: guix-git/doc/guix.texi:12176 guix-git/doc/guix.texi:13395 #, no-wrap msgid "-x" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11864 +#: guix-git/doc/guix.texi:12179 msgid "When combined with @option{--recursive}, exclude version control system directories (@file{.bzr}, @file{.git}, @file{.hg}, etc.)." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:11865 +#: guix-git/doc/guix.texi:12180 #, no-wrap msgid "git-fetch" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11869 +#: guix-git/doc/guix.texi:12184 msgid "As an example, here is how you would compute the hash of a Git checkout, which is useful when using the @code{git-fetch} method (@pxref{origin Reference}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11874 +#: guix-git/doc/guix.texi:12189 #, no-wrap msgid "" "$ git clone http://example.org/foo.git\n" "$ cd foo\n" -"$ guix hash -rx .\n" +"$ guix hash -x --serializer=nar .\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11878 guix-git/doc/guix.texi:11883 +#: guix-git/doc/guix.texi:12193 guix-git/doc/guix.texi:12198 #, no-wrap msgid "Invoking @command{guix import}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11880 +#: guix-git/doc/guix.texi:12195 #, no-wrap msgid "importing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11881 +#: guix-git/doc/guix.texi:12196 #, no-wrap msgid "package import" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11882 +#: guix-git/doc/guix.texi:12197 #, no-wrap msgid "package conversion" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11890 +#: guix-git/doc/guix.texi:12205 msgid "The @command{guix import} command is useful for people who would like to add a package to the distribution with as little work as possible---a legitimate demand. The command knows of a few repositories from which it can ``import'' package metadata. The result is a package definition, or a template thereof, in the format we know (@pxref{Defining Packages})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11895 +#: guix-git/doc/guix.texi:12210 #, no-wrap msgid "guix import @var{importer} @var{options}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11900 +#: guix-git/doc/guix.texi:12215 msgid "@var{importer} specifies the source from which to import package metadata, and @var{options} specifies a package identifier and other options specific to @var{importer}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11904 +#: guix-git/doc/guix.texi:12219 msgid "Some of the importers rely on the ability to run the @command{gpgv} command. For these, GnuPG must be installed and in @code{$PATH}; run @code{guix install gnupg} if needed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11906 +#: guix-git/doc/guix.texi:12221 msgid "Currently, the available ``importers'' are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11908 guix-git/doc/guix.texi:12546 +#: guix-git/doc/guix.texi:12223 guix-git/doc/guix.texi:12861 #, no-wrap msgid "gnu" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11912 +#: guix-git/doc/guix.texi:12227 msgid "Import metadata for the given GNU package. This provides a template for the latest version of that GNU package, including the hash of its source tarball, and its canonical synopsis and description." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11915 +#: guix-git/doc/guix.texi:12230 msgid "Additional information such as the package dependencies and its license needs to be figured out manually." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11918 +#: guix-git/doc/guix.texi:12233 msgid "For example, the following command returns a package definition for GNU@tie{}Hello:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11921 +#: guix-git/doc/guix.texi:12236 #, no-wrap msgid "guix import gnu hello\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11924 guix-git/doc/guix.texi:12165 -#: guix-git/doc/guix.texi:12215 guix-git/doc/guix.texi:12244 +#: guix-git/doc/guix.texi:12239 guix-git/doc/guix.texi:12480 +#: guix-git/doc/guix.texi:12530 guix-git/doc/guix.texi:12559 msgid "Specific command-line options are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11926 guix-git/doc/guix.texi:12743 +#: guix-git/doc/guix.texi:12241 guix-git/doc/guix.texi:13058 #, no-wrap msgid "--key-download=@var{policy}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11930 +#: guix-git/doc/guix.texi:12245 msgid "As for @command{guix refresh}, specify the policy to handle missing OpenPGP keys when verifying the package signature. @xref{Invoking guix refresh, @option{--key-download}}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11932 guix-git/doc/guix.texi:11933 -#: guix-git/doc/guix.texi:12570 +#: guix-git/doc/guix.texi:12247 guix-git/doc/guix.texi:12248 +#: guix-git/doc/guix.texi:12885 #, no-wrap msgid "pypi" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11940 +#: guix-git/doc/guix.texi:12255 msgid "Import metadata from the @uref{https://pypi.python.org/, Python Package Index}. Information is taken from the JSON-formatted description available at @code{pypi.python.org} and usually includes all the relevant information, including package dependencies. For maximum efficiency, it is recommended to install the @command{unzip} utility, so that the importer can unzip Python wheels and gather data from them." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11943 +#: guix-git/doc/guix.texi:12258 msgid "The command below imports metadata for the latest version of the @code{itsdangerous} Python package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11946 +#: guix-git/doc/guix.texi:12261 #, no-wrap msgid "guix import pypi itsdangerous\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11949 guix-git/doc/guix.texi:12052 -#: guix-git/doc/guix.texi:12393 +#: guix-git/doc/guix.texi:12264 guix-git/doc/guix.texi:12367 +#: guix-git/doc/guix.texi:12708 msgid "You can also ask for a specific version:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11952 +#: guix-git/doc/guix.texi:12267 #, no-wrap msgid "guix import pypi itsdangerous@@1.1.0\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11960 guix-git/doc/guix.texi:11985 -#: guix-git/doc/guix.texi:12017 guix-git/doc/guix.texi:12188 -#: guix-git/doc/guix.texi:12229 guix-git/doc/guix.texi:12280 -#: guix-git/doc/guix.texi:12305 guix-git/doc/guix.texi:12321 -#: guix-git/doc/guix.texi:12369 guix-git/doc/guix.texi:12405 +#: guix-git/doc/guix.texi:12275 guix-git/doc/guix.texi:12300 +#: guix-git/doc/guix.texi:12332 guix-git/doc/guix.texi:12503 +#: guix-git/doc/guix.texi:12544 guix-git/doc/guix.texi:12595 +#: guix-git/doc/guix.texi:12620 guix-git/doc/guix.texi:12636 +#: guix-git/doc/guix.texi:12684 guix-git/doc/guix.texi:12720 msgid "Traverse the dependency graph of the given upstream package recursively and generate package expressions for all those packages that are not yet in Guix." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11962 guix-git/doc/guix.texi:11963 -#: guix-git/doc/guix.texi:12572 +#: guix-git/doc/guix.texi:12277 guix-git/doc/guix.texi:12278 +#: guix-git/doc/guix.texi:12887 #, no-wrap msgid "gem" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11972 +#: guix-git/doc/guix.texi:12287 msgid "Import metadata from @uref{https://rubygems.org/, RubyGems}. Information is taken from the JSON-formatted description available at @code{rubygems.org} and includes most relevant information, including runtime dependencies. There are some caveats, however. The metadata doesn't distinguish between synopses and descriptions, so the same string is used for both fields. Additionally, the details of non-Ruby dependencies required to build native extensions is unavailable and left as an exercise to the packager." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11974 +#: guix-git/doc/guix.texi:12289 msgid "The command below imports metadata for the @code{rails} Ruby package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11977 +#: guix-git/doc/guix.texi:12292 #, no-wrap msgid "guix import gem rails\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11987 guix-git/doc/guix.texi:11988 +#: guix-git/doc/guix.texi:12302 guix-git/doc/guix.texi:12303 #, no-wrap msgid "minetest" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11989 +#: guix-git/doc/guix.texi:12304 #, no-wrap msgid "ContentDB" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11998 +#: guix-git/doc/guix.texi:12313 msgid "Import metadata from @uref{https://content.minetest.net, ContentDB}. Information is taken from the JSON-formatted metadata provided through @uref{https://content.minetest.net/help/api/, ContentDB's API} and includes most relevant information, including dependencies. There are some caveats, however. The license information is often incomplete. The commit hash is sometimes missing. The descriptions are in the Markdown format, but Guix uses Texinfo instead. Texture packs and subgames are unsupported." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12000 +#: guix-git/doc/guix.texi:12315 msgid "The command below imports metadata for the Mesecons mod by Jeija:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12003 +#: guix-git/doc/guix.texi:12318 #, no-wrap msgid "guix import minetest Jeija/mesecons\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12006 +#: guix-git/doc/guix.texi:12321 msgid "The author name can also be left out:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12009 +#: guix-git/doc/guix.texi:12324 #, no-wrap msgid "guix import minetest mesecons\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12019 guix-git/doc/guix.texi:12568 +#: guix-git/doc/guix.texi:12334 guix-git/doc/guix.texi:12883 #, no-wrap msgid "cpan" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12020 +#: guix-git/doc/guix.texi:12335 #, no-wrap msgid "CPAN" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12028 +#: guix-git/doc/guix.texi:12343 msgid "Import metadata from @uref{https://www.metacpan.org/, MetaCPAN}. Information is taken from the JSON-formatted metadata provided through @uref{https://fastapi.metacpan.org/, MetaCPAN's API} and includes most relevant information, such as module dependencies. License information should be checked closely. If Perl is available in the store, then the @code{corelist} utility will be used to filter core modules out of the list of dependencies." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12031 +#: guix-git/doc/guix.texi:12346 msgid "The command command below imports metadata for the Acme::Boolean Perl module:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12034 +#: guix-git/doc/guix.texi:12349 #, no-wrap msgid "guix import cpan Acme::Boolean\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12036 guix-git/doc/guix.texi:12564 +#: guix-git/doc/guix.texi:12351 guix-git/doc/guix.texi:12879 #, no-wrap msgid "cran" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12037 +#: guix-git/doc/guix.texi:12352 #, no-wrap msgid "CRAN" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12038 +#: guix-git/doc/guix.texi:12353 #, no-wrap msgid "Bioconductor" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12042 +#: guix-git/doc/guix.texi:12357 msgid "Import metadata from @uref{https://cran.r-project.org/, CRAN}, the central repository for the @uref{https://r-project.org, GNU@tie{}R statistical and graphical environment}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12044 +#: guix-git/doc/guix.texi:12359 msgid "Information is extracted from the @file{DESCRIPTION} file of the package." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12046 +#: guix-git/doc/guix.texi:12361 msgid "The command command below imports metadata for the Cairo R package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12049 +#: guix-git/doc/guix.texi:12364 #, no-wrap msgid "guix import cran Cairo\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12055 +#: guix-git/doc/guix.texi:12370 #, no-wrap msgid "guix import cran rasterVis@@0.50.3\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12060 +#: guix-git/doc/guix.texi:12375 msgid "When @option{--recursive} is added, the importer will traverse the dependency graph of the given upstream package recursively and generate package expressions for all those packages that are not yet in Guix." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12067 +#: guix-git/doc/guix.texi:12382 msgid "When @option{--style=specification} is added, the importer will generate package definitions whose inputs are package specifications instead of references to package variables. This is useful when generated package definitions are to be appended to existing user modules, as the list of used package modules need not be changed. The default is @option{--style=variable}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12072 +#: guix-git/doc/guix.texi:12387 msgid "When @option{--archive=bioconductor} is added, metadata is imported from @uref{https://www.bioconductor.org/, Bioconductor}, a repository of R packages for the analysis and comprehension of high-throughput genomic data in bioinformatics." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12075 +#: guix-git/doc/guix.texi:12390 msgid "Information is extracted from the @file{DESCRIPTION} file contained in the package archive." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12077 +#: guix-git/doc/guix.texi:12392 msgid "The command below imports metadata for the GenomicRanges R package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12080 +#: guix-git/doc/guix.texi:12395 #, no-wrap msgid "guix import cran --archive=bioconductor GenomicRanges\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12085 +#: guix-git/doc/guix.texi:12400 msgid "Finally, you can also import R packages that have not yet been published on CRAN or Bioconductor as long as they are in a git repository. Use @option{--archive=git} followed by the URL of the git repository:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12088 +#: guix-git/doc/guix.texi:12403 #, no-wrap msgid "guix import cran --archive=git https://github.com/immunogenomics/harmony\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12090 +#: guix-git/doc/guix.texi:12405 #, no-wrap msgid "texlive" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12091 +#: guix-git/doc/guix.texi:12406 #, no-wrap msgid "TeX Live" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12092 +#: guix-git/doc/guix.texi:12407 #, no-wrap msgid "CTAN" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12096 +#: guix-git/doc/guix.texi:12411 msgid "Import TeX package information from the TeX Live package database for TeX packages that are part of the @uref{https://www.tug.org/texlive/, TeX Live distribution}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12101 +#: guix-git/doc/guix.texi:12416 msgid "Information about the package is obtained from the TeX Live package database, a plain text file that is included in the @code{texlive-bin} package. The source code is downloaded from possibly multiple locations in the SVN repository of the Tex Live project." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12104 +#: guix-git/doc/guix.texi:12419 msgid "The command command below imports metadata for the @code{fontspec} TeX package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12107 +#: guix-git/doc/guix.texi:12422 #, no-wrap msgid "guix import texlive fontspec\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12110 +#: guix-git/doc/guix.texi:12425 #, no-wrap msgid "JSON, import" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12113 +#: guix-git/doc/guix.texi:12428 msgid "Import package metadata from a local JSON file. Consider the following example package definition in JSON format:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12126 +#: guix-git/doc/guix.texi:12441 #, no-wrap msgid "" "@{\n" @@ -21669,17 +22207,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12132 +#: guix-git/doc/guix.texi:12447 msgid "The field names are the same as for the @code{} record (@xref{Defining Packages}). References to other packages are provided as JSON lists of quoted package specification strings such as @code{guile} or @code{guile@@2.0}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12135 +#: guix-git/doc/guix.texi:12450 msgid "The importer also supports a more explicit source definition using the common fields for @code{} records:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12148 +#: guix-git/doc/guix.texi:12463 #, no-wrap msgid "" "@{\n" @@ -21696,382 +22234,382 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12152 +#: guix-git/doc/guix.texi:12467 msgid "The command below reads metadata from the JSON file @code{hello.json} and outputs a package expression:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12155 +#: guix-git/doc/guix.texi:12470 #, no-wrap msgid "guix import json hello.json\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12157 guix-git/doc/guix.texi:12158 -#: guix-git/doc/guix.texi:12576 +#: guix-git/doc/guix.texi:12472 guix-git/doc/guix.texi:12473 +#: guix-git/doc/guix.texi:12891 #, no-wrap msgid "hackage" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12163 +#: guix-git/doc/guix.texi:12478 msgid "Import metadata from the Haskell community's central package archive @uref{https://hackage.haskell.org/, Hackage}. Information is taken from Cabal files and includes all the relevant information, including package dependencies." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12167 +#: guix-git/doc/guix.texi:12482 #, no-wrap msgid "--stdin" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12168 +#: guix-git/doc/guix.texi:12483 #, no-wrap msgid "-s" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12170 +#: guix-git/doc/guix.texi:12485 msgid "Read a Cabal file from standard input." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12170 guix-git/doc/guix.texi:12217 +#: guix-git/doc/guix.texi:12485 guix-git/doc/guix.texi:12532 #, no-wrap msgid "--no-test-dependencies" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12173 guix-git/doc/guix.texi:12220 +#: guix-git/doc/guix.texi:12488 guix-git/doc/guix.texi:12535 msgid "Do not include dependencies required only by the test suites." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12173 +#: guix-git/doc/guix.texi:12488 #, no-wrap msgid "--cabal-environment=@var{alist}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12174 +#: guix-git/doc/guix.texi:12489 #, no-wrap msgid "-e @var{alist}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12183 +#: guix-git/doc/guix.texi:12498 msgid "@var{alist} is a Scheme alist defining the environment in which the Cabal conditionals are evaluated. The accepted keys are: @code{os}, @code{arch}, @code{impl} and a string representing the name of a flag. The value associated with a flag has to be either the symbol @code{true} or @code{false}. The value associated with other keys has to conform to the Cabal file format definition. The default value associated with the keys @code{os}, @code{arch} and @code{impl} is @samp{linux}, @samp{x86_64} and @samp{ghc}, respectively." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12193 +#: guix-git/doc/guix.texi:12508 msgid "The command below imports metadata for the latest version of the HTTP Haskell package without including test dependencies and specifying the value of the flag @samp{network-uri} as @code{false}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12196 +#: guix-git/doc/guix.texi:12511 #, no-wrap msgid "guix import hackage -t -e \"'((\\\"network-uri\\\" . false))\" HTTP\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12200 +#: guix-git/doc/guix.texi:12515 msgid "A specific package version may optionally be specified by following the package name by an at-sign and a version number as in the following example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12203 +#: guix-git/doc/guix.texi:12518 #, no-wrap msgid "guix import hackage mtl@@2.1.3.1\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12205 guix-git/doc/guix.texi:12206 -#: guix-git/doc/guix.texi:12578 +#: guix-git/doc/guix.texi:12520 guix-git/doc/guix.texi:12521 +#: guix-git/doc/guix.texi:12893 #, no-wrap msgid "stackage" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12213 +#: guix-git/doc/guix.texi:12528 msgid "The @code{stackage} importer is a wrapper around the @code{hackage} one. It takes a package name, looks up the package version included in a long-term support (LTS) @uref{https://www.stackage.org, Stackage} release and uses the @code{hackage} importer to retrieve its metadata. Note that it is up to you to select an LTS release compatible with the GHC compiler used by Guix." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12220 +#: guix-git/doc/guix.texi:12535 #, no-wrap msgid "--lts-version=@var{version}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12221 +#: guix-git/doc/guix.texi:12536 #, no-wrap msgid "-l @var{version}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12224 +#: guix-git/doc/guix.texi:12539 msgid "@var{version} is the desired LTS release version. If omitted the latest release is used." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12233 +#: guix-git/doc/guix.texi:12548 msgid "The command below imports metadata for the HTTP Haskell package included in the LTS Stackage release version 7.18:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12236 +#: guix-git/doc/guix.texi:12551 #, no-wrap msgid "guix import stackage --lts-version=7.18 HTTP\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12238 guix-git/doc/guix.texi:12239 -#: guix-git/doc/guix.texi:12562 +#: guix-git/doc/guix.texi:12553 guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12877 #, no-wrap msgid "elpa" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12242 +#: guix-git/doc/guix.texi:12557 msgid "Import metadata from an Emacs Lisp Package Archive (ELPA) package repository (@pxref{Packages,,, emacs, The GNU Emacs Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12246 +#: guix-git/doc/guix.texi:12561 #, no-wrap msgid "--archive=@var{repo}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12247 +#: guix-git/doc/guix.texi:12562 #, no-wrap msgid "-a @var{repo}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12251 +#: guix-git/doc/guix.texi:12566 msgid "@var{repo} identifies the archive repository from which to retrieve the information. Currently the supported repositories and their identifiers are:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12255 +#: guix-git/doc/guix.texi:12570 msgid "@uref{https://elpa.gnu.org/packages, GNU}, selected by the @code{gnu} identifier. This is the default." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12261 +#: guix-git/doc/guix.texi:12576 msgid "Packages from @code{elpa.gnu.org} are signed with one of the keys contained in the GnuPG keyring at @file{share/emacs/25.1/etc/package-keyring.gpg} (or similar) in the @code{emacs} package (@pxref{Package Installation, ELPA package signatures,, emacs, The GNU Emacs Manual})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12265 +#: guix-git/doc/guix.texi:12580 msgid "@uref{https://elpa.nongnu.org/nongnu/, NonGNU}, selected by the @code{nongnu} identifier." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12269 +#: guix-git/doc/guix.texi:12584 msgid "@uref{https://stable.melpa.org/packages, MELPA-Stable}, selected by the @code{melpa-stable} identifier." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12273 +#: guix-git/doc/guix.texi:12588 msgid "@uref{https://melpa.org/packages, MELPA}, selected by the @code{melpa} identifier." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12282 guix-git/doc/guix.texi:12283 -#: guix-git/doc/guix.texi:12580 +#: guix-git/doc/guix.texi:12597 guix-git/doc/guix.texi:12598 +#: guix-git/doc/guix.texi:12895 #, no-wrap msgid "crate" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12286 +#: guix-git/doc/guix.texi:12601 msgid "Import metadata from the crates.io Rust package repository @uref{https://crates.io, crates.io}, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12289 +#: guix-git/doc/guix.texi:12604 #, no-wrap msgid "guix import crate blake2-rfc\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12292 +#: guix-git/doc/guix.texi:12607 msgid "The crate importer also allows you to specify a version string:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12295 +#: guix-git/doc/guix.texi:12610 #, no-wrap msgid "guix import crate constant-time-eq@@0.1.0\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12298 guix-git/doc/guix.texi:12314 -#: guix-git/doc/guix.texi:12362 guix-git/doc/guix.texi:12399 +#: guix-git/doc/guix.texi:12613 guix-git/doc/guix.texi:12629 +#: guix-git/doc/guix.texi:12677 guix-git/doc/guix.texi:12714 msgid "Additional options include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12307 +#: guix-git/doc/guix.texi:12622 #, no-wrap msgid "opam" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12308 +#: guix-git/doc/guix.texi:12623 #, no-wrap msgid "OPAM" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12309 +#: guix-git/doc/guix.texi:12624 #, no-wrap msgid "OCaml" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12312 +#: guix-git/doc/guix.texi:12627 msgid "Import metadata from the @uref{https://opam.ocaml.org/, OPAM} package repository used by the OCaml community." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12321 +#: guix-git/doc/guix.texi:12636 #, no-wrap msgid "--repo" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12325 +#: guix-git/doc/guix.texi:12640 msgid "By default, packages are searched in the official OPAM repository. This option, which can be used more than once, lets you add other repositories which will be searched for packages. It accepts as valid arguments:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12327 +#: guix-git/doc/guix.texi:12642 #, no-wrap msgid "the name of a known repository - can be one of @code{opam}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12330 +#: guix-git/doc/guix.texi:12645 msgid "@code{coq} (equivalent to @code{coq-released}), @code{coq-core-dev}, @code{coq-extra-dev} or @code{grew}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12330 +#: guix-git/doc/guix.texi:12645 #, no-wrap msgid "the URL of a repository as expected by the" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12334 +#: guix-git/doc/guix.texi:12649 msgid "@code{opam repository add} command (for instance, the URL equivalent of the above @code{opam} name would be @uref{https://opam.ocaml.org})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12334 +#: guix-git/doc/guix.texi:12649 #, no-wrap msgid "the path to a local copy of a repository (a directory containing a" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12336 +#: guix-git/doc/guix.texi:12651 msgid "@file{packages/} sub-directory)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12341 +#: guix-git/doc/guix.texi:12656 msgid "Repositories are assumed to be passed to this option by order of preference. The additional repositories will not replace the default @code{opam} repository, which is always kept as a fallback." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12346 +#: guix-git/doc/guix.texi:12661 msgid "Also, please note that versions are not compared across repositories. The first repository (from left to right) that has at least one version of a given package will prevail over any others, and the version imported will be the latest one found @emph{in this repository only}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12349 guix-git/doc/guix.texi:12350 +#: guix-git/doc/guix.texi:12664 guix-git/doc/guix.texi:12665 #, no-wrap msgid "go" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12353 +#: guix-git/doc/guix.texi:12668 msgid "Import metadata for a Go module using @uref{https://proxy.golang.org, proxy.golang.org}." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12356 +#: guix-git/doc/guix.texi:12671 #, no-wrap msgid "guix import go gopkg.in/yaml.v2\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12360 +#: guix-git/doc/guix.texi:12675 msgid "It is possible to use a package specification with a @code{@@VERSION} suffix to import a specific version." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12369 +#: guix-git/doc/guix.texi:12684 #, no-wrap msgid "--pin-versions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12377 +#: guix-git/doc/guix.texi:12692 msgid "When using this option, the importer preserves the exact versions of the Go modules dependencies instead of using their latest available versions. This can be useful when attempting to import packages that recursively depend on former versions of themselves to build. When using this mode, the symbol of the package is made by appending the version to its name, so that multiple versions of the same package can coexist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12379 guix-git/doc/guix.texi:12380 -#: guix-git/doc/guix.texi:12560 +#: guix-git/doc/guix.texi:12694 guix-git/doc/guix.texi:12695 +#: guix-git/doc/guix.texi:12875 #, no-wrap msgid "egg" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12387 +#: guix-git/doc/guix.texi:12702 msgid "Import metadata for @uref{https://wiki.call-cc.org/eggs, CHICKEN eggs}. The information is taken from @file{PACKAGE.egg} files found in the @uref{git://code.call-cc.org/eggs-5-all, eggs-5-all} Git repository. However, it does not provide all the information that we need, there is no ``description'' field, and the licenses used are not always precise (BSD is often used instead of BSD-N)." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12390 +#: guix-git/doc/guix.texi:12705 #, no-wrap msgid "guix import egg sourcehut\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12396 +#: guix-git/doc/guix.texi:12711 #, no-wrap msgid "guix import egg arrays@@1.0\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12411 +#: guix-git/doc/guix.texi:12726 msgid "The structure of the @command{guix import} code is modular. It would be useful to have more importers for other package formats, and your help is welcome here (@pxref{Contributing})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:12413 +#: guix-git/doc/guix.texi:12728 #, no-wrap msgid "Invoking @command{guix refresh}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:12415 +#: guix-git/doc/guix.texi:12730 #, no-wrap msgid "guix refresh" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12423 +#: guix-git/doc/guix.texi:12738 msgid "The primary audience of the @command{guix refresh} command is packagers. As a user, you may be interested in the @option{--with-latest} option, which can bring you package update superpowers built upon @command{guix refresh} (@pxref{Package Transformation Options, @option{--with-latest}}). By default, @command{guix refresh} reports any packages provided by the distribution that are outdated compared to the latest upstream version, like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12428 +#: guix-git/doc/guix.texi:12743 #, no-wrap msgid "" "$ guix refresh\n" @@ -22080,12 +22618,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12432 +#: guix-git/doc/guix.texi:12747 msgid "Alternatively, one can specify packages to consider, in which case a warning is emitted for packages that lack an updater:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12437 +#: guix-git/doc/guix.texi:12752 #, no-wrap msgid "" "$ guix refresh coreutils guile guile-ssh\n" @@ -22094,17 +22632,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12446 +#: guix-git/doc/guix.texi:12761 msgid "@command{guix refresh} browses the upstream repository of each package and determines the highest version number of the releases therein. The command knows how to update specific types of packages: GNU packages, ELPA packages, etc.---see the documentation for @option{--type} below. There are many packages, though, for which it lacks a method to determine whether a new upstream release is available. However, the mechanism is extensible, so feel free to get in touch with us to add a new method!" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12451 +#: guix-git/doc/guix.texi:12766 msgid "Consider the packages specified, and all the packages upon which they depend." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12459 +#: guix-git/doc/guix.texi:12774 #, no-wrap msgid "" "$ guix refresh --recursive coreutils\n" @@ -22116,12 +22654,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12467 +#: guix-git/doc/guix.texi:12782 msgid "Sometimes the upstream name differs from the package name used in Guix, and @command{guix refresh} needs a little help. Most updaters honor the @code{upstream-name} property in package definitions, which can be used to that effect:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12474 +#: guix-git/doc/guix.texi:12789 #, no-wrap msgid "" "(define-public network-manager\n" @@ -22132,325 +22670,325 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12483 +#: guix-git/doc/guix.texi:12798 msgid "When passed @option{--update}, it modifies distribution source files to update the version numbers and source tarball hashes of those package recipes (@pxref{Defining Packages}). This is achieved by downloading each package's latest source tarball and its associated OpenPGP signature, authenticating the downloaded tarball against its signature using @command{gpgv}, and finally computing its hash---note that GnuPG must be installed and in @code{$PATH}; run @code{guix install gnupg} if needed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12489 +#: guix-git/doc/guix.texi:12804 msgid "When the public key used to sign the tarball is missing from the user's keyring, an attempt is made to automatically retrieve it from a public key server; when this is successful, the key is added to the user's keyring; otherwise, @command{guix refresh} reports an error." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12491 +#: guix-git/doc/guix.texi:12806 msgid "The following options are supported:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12499 guix-git/doc/guix.texi:13447 +#: guix-git/doc/guix.texi:12814 guix-git/doc/guix.texi:13804 msgid "This is useful to precisely refer to a package, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12502 +#: guix-git/doc/guix.texi:12817 #, no-wrap msgid "guix refresh -l -e '(@@@@ (gnu packages commencement) glibc-final)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12506 +#: guix-git/doc/guix.texi:12821 msgid "This command lists the dependents of the ``final'' libc (essentially all the packages)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12507 +#: guix-git/doc/guix.texi:12822 #, no-wrap msgid "--update" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12508 +#: guix-git/doc/guix.texi:12823 #, no-wrap msgid "-u" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12512 +#: guix-git/doc/guix.texi:12827 msgid "Update distribution source files (package recipes) in place. This is usually run from a checkout of the Guix source tree (@pxref{Running Guix Before It Is Installed}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12515 +#: guix-git/doc/guix.texi:12830 #, no-wrap msgid "$ ./pre-inst-env guix refresh -s non-core -u\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12518 +#: guix-git/doc/guix.texi:12833 msgid "@xref{Defining Packages}, for more information on package definitions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12519 +#: guix-git/doc/guix.texi:12834 #, no-wrap msgid "--select=[@var{subset}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12520 +#: guix-git/doc/guix.texi:12835 #, no-wrap msgid "-s @var{subset}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12523 +#: guix-git/doc/guix.texi:12838 msgid "Select all the packages in @var{subset}, one of @code{core} or @code{non-core}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12530 +#: guix-git/doc/guix.texi:12845 msgid "The @code{core} subset refers to all the packages at the core of the distribution---i.e., packages that are used to build ``everything else''. This includes GCC, libc, Binutils, Bash, etc. Usually, changing one of these packages in the distribution entails a rebuild of all the others. Thus, such updates are an inconvenience to users in terms of build time or bandwidth used to achieve the upgrade." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12534 +#: guix-git/doc/guix.texi:12849 msgid "The @code{non-core} subset refers to the remaining packages. It is typically useful in cases where an update of the core packages would be inconvenient." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12539 +#: guix-git/doc/guix.texi:12854 msgid "Select all the packages from the manifest in @var{file}. This is useful to check if any packages of the user manifest can be updated." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12540 +#: guix-git/doc/guix.texi:12855 #, no-wrap msgid "--type=@var{updater}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12541 +#: guix-git/doc/guix.texi:12856 #, no-wrap msgid "-t @var{updater}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12544 +#: guix-git/doc/guix.texi:12859 msgid "Select only packages handled by @var{updater} (may be a comma-separated list of updaters). Currently, @var{updater} may be one of:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12548 +#: guix-git/doc/guix.texi:12863 msgid "the updater for GNU packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12548 +#: guix-git/doc/guix.texi:12863 #, no-wrap msgid "savannah" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12550 +#: guix-git/doc/guix.texi:12865 msgid "the updater for packages hosted at @uref{https://savannah.gnu.org, Savannah};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12550 +#: guix-git/doc/guix.texi:12865 #, no-wrap msgid "sourceforge" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12552 +#: guix-git/doc/guix.texi:12867 msgid "the updater for packages hosted at @uref{https://sourceforge.net, SourceForge};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12552 +#: guix-git/doc/guix.texi:12867 #, no-wrap msgid "gnome" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12869 msgid "the updater for GNOME packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12869 #, no-wrap msgid "kde" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12556 +#: guix-git/doc/guix.texi:12871 msgid "the updater for KDE packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12556 +#: guix-git/doc/guix.texi:12871 #, no-wrap msgid "xorg" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12558 +#: guix-git/doc/guix.texi:12873 msgid "the updater for X.org packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12558 +#: guix-git/doc/guix.texi:12873 #, no-wrap msgid "kernel.org" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12560 +#: guix-git/doc/guix.texi:12875 msgid "the updater for packages hosted on kernel.org;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12562 +#: guix-git/doc/guix.texi:12877 msgid "the updater for @uref{https://wiki.call-cc.org/eggs/, Egg} packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12564 +#: guix-git/doc/guix.texi:12879 msgid "the updater for @uref{https://elpa.gnu.org/, ELPA} packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12566 +#: guix-git/doc/guix.texi:12881 msgid "the updater for @uref{https://cran.r-project.org/, CRAN} packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12566 +#: guix-git/doc/guix.texi:12881 #, no-wrap msgid "bioconductor" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12568 +#: guix-git/doc/guix.texi:12883 msgid "the updater for @uref{https://www.bioconductor.org/, Bioconductor} R packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12570 +#: guix-git/doc/guix.texi:12885 msgid "the updater for @uref{https://www.cpan.org/, CPAN} packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12572 +#: guix-git/doc/guix.texi:12887 msgid "the updater for @uref{https://pypi.python.org, PyPI} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12574 +#: guix-git/doc/guix.texi:12889 msgid "the updater for @uref{https://rubygems.org, RubyGems} packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12574 +#: guix-git/doc/guix.texi:12889 #, no-wrap msgid "github" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12576 +#: guix-git/doc/guix.texi:12891 msgid "the updater for @uref{https://github.com, GitHub} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12578 +#: guix-git/doc/guix.texi:12893 msgid "the updater for @uref{https://hackage.haskell.org, Hackage} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12580 +#: guix-git/doc/guix.texi:12895 msgid "the updater for @uref{https://www.stackage.org, Stackage} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12582 +#: guix-git/doc/guix.texi:12897 msgid "the updater for @uref{https://crates.io, Crates} packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12582 +#: guix-git/doc/guix.texi:12897 #, no-wrap msgid "launchpad" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12584 +#: guix-git/doc/guix.texi:12899 msgid "the updater for @uref{https://launchpad.net, Launchpad} packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12584 +#: guix-git/doc/guix.texi:12899 #, no-wrap msgid "generic-html" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12587 +#: guix-git/doc/guix.texi:12902 msgid "a generic updater that crawls the HTML page where the source tarball of the package is hosted, when applicable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12588 +#: guix-git/doc/guix.texi:12903 #, no-wrap msgid "generic-git" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12593 +#: guix-git/doc/guix.texi:12908 msgid "a generic updater for packages hosted on Git repositories. It tries to be smart about parsing Git tag names, but if it is not able to parse the tag name and compare tags correctly, users can define the following properties for a package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12595 +#: guix-git/doc/guix.texi:12910 #, no-wrap msgid "@code{release-tag-prefix}: a regular expression for matching a prefix of" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12597 guix-git/doc/guix.texi:12600 +#: guix-git/doc/guix.texi:12912 guix-git/doc/guix.texi:12915 msgid "the tag name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12598 +#: guix-git/doc/guix.texi:12913 #, no-wrap msgid "@code{release-tag-suffix}: a regular expression for matching a suffix of" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12601 +#: guix-git/doc/guix.texi:12916 #, no-wrap msgid "@code{release-tag-version-delimiter}: a string used as the delimiter in" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12603 +#: guix-git/doc/guix.texi:12918 msgid "the tag name for separating the numbers of the version." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12604 +#: guix-git/doc/guix.texi:12919 #, no-wrap msgid "@code{accept-pre-releases}: by default, the updater will ignore" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12607 +#: guix-git/doc/guix.texi:12922 msgid "pre-releases; to make it also look for pre-releases, set the this property to @code{#t}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12618 +#: guix-git/doc/guix.texi:12933 #, no-wrap msgid "" "(package\n" @@ -22463,12 +23001,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12625 +#: guix-git/doc/guix.texi:12940 msgid "For instance, the following command only checks for updates of Emacs packages hosted at @code{elpa.gnu.org} and for updates of CRAN packages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12630 +#: guix-git/doc/guix.texi:12945 #, no-wrap msgid "" "$ guix refresh --type=elpa,cran\n" @@ -22477,45 +23015,45 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12632 +#: guix-git/doc/guix.texi:12947 #, no-wrap msgid "--list-updaters" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12633 +#: guix-git/doc/guix.texi:12948 #, no-wrap msgid "-L" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12635 +#: guix-git/doc/guix.texi:12950 msgid "List available updaters and exit (see @option{--type} above)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12638 +#: guix-git/doc/guix.texi:12953 msgid "For each updater, display the fraction of packages it covers; at the end, display the fraction of packages covered by all these updaters." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12642 +#: guix-git/doc/guix.texi:12957 msgid "In addition, @command{guix refresh} can be passed one or more package names, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12645 +#: guix-git/doc/guix.texi:12960 #, no-wrap msgid "$ ./pre-inst-env guix refresh -u emacs idutils gcc@@4.8\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12652 +#: guix-git/doc/guix.texi:12967 msgid "The command above specifically updates the @code{emacs} and @code{idutils} packages. The @option{--select} option would have no effect in this case. You might also want to update definitions that correspond to the packages installed in your profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12656 +#: guix-git/doc/guix.texi:12971 #, no-wrap msgid "" "$ ./pre-inst-env guix refresh -u \\\n" @@ -22523,39 +23061,39 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12662 +#: guix-git/doc/guix.texi:12977 msgid "When considering whether to upgrade a package, it is sometimes convenient to know which packages would be affected by the upgrade and should be checked for compatibility. For this the following option may be used when passing @command{guix refresh} one or more package names:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12665 +#: guix-git/doc/guix.texi:12980 #, no-wrap msgid "--list-dependent" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12666 guix-git/doc/guix.texi:13028 +#: guix-git/doc/guix.texi:12981 guix-git/doc/guix.texi:13385 #, no-wrap msgid "-l" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12669 +#: guix-git/doc/guix.texi:12984 msgid "List top-level dependent packages that would need to be rebuilt as a result of upgrading one or more packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12673 +#: guix-git/doc/guix.texi:12988 msgid "@xref{Invoking guix graph, the @code{reverse-package} type of @command{guix graph}}, for information on how to visualize the list of dependents of a package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12679 +#: guix-git/doc/guix.texi:12994 msgid "Be aware that the @option{--list-dependent} option only @emph{approximates} the rebuilds that would be required as a result of an upgrade. More rebuilds might be required under some circumstances." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12684 +#: guix-git/doc/guix.texi:12999 #, no-wrap msgid "" "$ guix refresh --list-dependent flex\n" @@ -22564,23 +23102,23 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12688 +#: guix-git/doc/guix.texi:13003 msgid "The command above lists a set of packages that could be built to check for compatibility with an upgraded @code{flex} package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12691 +#: guix-git/doc/guix.texi:13006 #, no-wrap msgid "--list-transitive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12693 +#: guix-git/doc/guix.texi:13008 msgid "List all the packages which one or more packages depend upon." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12698 +#: guix-git/doc/guix.texi:13013 #, no-wrap msgid "" "$ guix refresh --list-transitive flex\n" @@ -22589,60 +23127,60 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12704 +#: guix-git/doc/guix.texi:13019 msgid "The command above lists a set of packages which, when changed, would cause @code{flex} to be rebuilt." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12706 +#: guix-git/doc/guix.texi:13021 msgid "The following options can be used to customize GnuPG operation:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12709 +#: guix-git/doc/guix.texi:13024 #, no-wrap msgid "--gpg=@var{command}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12712 +#: guix-git/doc/guix.texi:13027 msgid "Use @var{command} as the GnuPG 2.x command. @var{command} is searched for in @code{$PATH}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12713 +#: guix-git/doc/guix.texi:13028 #, no-wrap msgid "--keyring=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12719 +#: guix-git/doc/guix.texi:13034 msgid "Use @var{file} as the keyring for upstream keys. @var{file} must be in the @dfn{keybox format}. Keybox files usually have a name ending in @file{.kbx} and the GNU@tie{}Privacy Guard (GPG) can manipulate these files (@pxref{kbxutil, @command{kbxutil},, gnupg, Using the GNU Privacy Guard}, for information on a tool to manipulate keybox files)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12725 +#: guix-git/doc/guix.texi:13040 msgid "When this option is omitted, @command{guix refresh} uses @file{~/.config/guix/upstream/trustedkeys.kbx} as the keyring for upstream signing keys. OpenPGP signatures are checked against keys from this keyring; missing keys are downloaded to this keyring as well (see @option{--key-download} below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12728 +#: guix-git/doc/guix.texi:13043 msgid "You can export keys from your default GPG keyring into a keybox file using commands like this one:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12731 +#: guix-git/doc/guix.texi:13046 #, no-wrap msgid "gpg --export rms@@gnu.org | kbxutil --import-openpgp >> mykeyring.kbx\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12734 +#: guix-git/doc/guix.texi:13049 msgid "Likewise, you can fetch keys to a specific keybox file like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12738 +#: guix-git/doc/guix.texi:13053 #, no-wrap msgid "" "gpg --no-default-keyring --keyring mykeyring.kbx \\\n" @@ -22650,83 +23188,93 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12742 +#: guix-git/doc/guix.texi:13057 msgid "@xref{GPG Configuration Options, @option{--keyring},, gnupg, Using the GNU Privacy Guard}, for more information on GPG's @option{--keyring} option." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12746 +#: guix-git/doc/guix.texi:13061 msgid "Handle missing OpenPGP keys according to @var{policy}, which may be one of:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12748 guix-git/doc/guix.texi:12871 -#: guix-git/doc/guix.texi:22249 +#: guix-git/doc/guix.texi:13063 guix-git/doc/guix.texi:13228 +#: guix-git/doc/guix.texi:22611 #, no-wrap msgid "always" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12751 +#: guix-git/doc/guix.texi:13066 msgid "Always download missing OpenPGP keys from the key server, and add them to the user's GnuPG keyring." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12752 guix-git/doc/guix.texi:22251 +#: guix-git/doc/guix.texi:13067 guix-git/doc/guix.texi:22613 #, no-wrap msgid "never" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12754 +#: guix-git/doc/guix.texi:13069 msgid "Never try to download missing OpenPGP keys. Instead just bail out." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12755 +#: guix-git/doc/guix.texi:13070 #, no-wrap msgid "interactive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12758 +#: guix-git/doc/guix.texi:13073 msgid "When a package signed with an unknown OpenPGP key is encountered, ask the user whether to download it or not. This is the default behavior." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12760 +#: guix-git/doc/guix.texi:13075 #, no-wrap msgid "--key-server=@var{host}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12762 +#: guix-git/doc/guix.texi:13077 msgid "Use @var{host} as the OpenPGP key server when importing a public key." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12782 +#: guix-git/doc/guix.texi:13097 msgid "The @code{github} updater uses the @uref{https://developer.github.com/v3/, GitHub API} to query for new releases. When used repeatedly e.g.@: when refreshing all packages, GitHub will eventually refuse to answer any further API requests. By default 60 API requests per hour are allowed, and a full refresh on all GitHub packages in Guix requires more than this. Authentication with GitHub through the use of an API token alleviates these limits. To use an API token, set the environment variable @env{GUIX_GITHUB_TOKEN} to a token procured from @uref{https://github.com/settings/tokens} or otherwise." msgstr "" #. type: section -#: guix-git/doc/guix.texi:12785 +#: guix-git/doc/guix.texi:13100 #, no-wrap msgid "Invoking @command{guix style}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12791 -msgid "The @command{guix style} command helps packagers style their package definitions according to the latest fashionable trends. The command currently focuses on one aspect: the style of package inputs. It may eventually be extended to handle other stylistic matters." +#: guix-git/doc/guix.texi:13105 +msgid "The @command{guix style} command helps packagers style their package definitions according to the latest fashionable trends. The command currently provides the following styling rules:" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix.texi:13110 +msgid "formatting package definitions according to the project's conventions (@pxref{Formatting Code});" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix.texi:13113 +msgid "rewriting package inputs to the ``new style'', as explained below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12796 +#: guix-git/doc/guix.texi:13119 msgid "The way package inputs are written is going through a transition (@pxref{package Reference}, for more on package inputs). Until version 1.3.0, package inputs were written using the ``old style'', where each input was given an explicit label, most of the time the package name:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12803 +#: guix-git/doc/guix.texi:13126 #, no-wrap msgid "" "(package\n" @@ -22737,12 +23285,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12807 +#: guix-git/doc/guix.texi:13130 msgid "Today, the old style is deprecated and the preferred style looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12813 +#: guix-git/doc/guix.texi:13136 #, no-wrap msgid "" "(package\n" @@ -22752,267 +23300,328 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12818 +#: guix-git/doc/guix.texi:13141 msgid "Likewise, uses of @code{alist-delete} and friends to manipulate inputs is now deprecated in favor of @code{modify-inputs} (@pxref{Defining Package Variants}, for more info on @code{modify-inputs})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12823 -msgid "In the vast majority of cases, this is a purely mechanical change on the surface syntax that does not even incur a package rebuild. Running @command{guix style} can do that for you, whether you're working on packages in Guix proper or in an external channel." +#: guix-git/doc/guix.texi:13146 +msgid "In the vast majority of cases, this is a purely mechanical change on the surface syntax that does not even incur a package rebuild. Running @command{guix style -S inputs} can do that for you, whether you're working on packages in Guix proper or in an external channel." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12828 +#: guix-git/doc/guix.texi:13151 #, no-wrap msgid "guix style [@var{options}] @var{package}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12834 -msgid "This causes @command{guix style} to analyze and rewrite the definition of @var{package}@dots{}. It does so in a conservative way: preserving comments and bailing out if it cannot make sense of the code that appears in an inputs field. The available options are listed below." +#: guix-git/doc/guix.texi:13158 +msgid "This causes @command{guix style} to analyze and rewrite the definition of @var{package}@dots{} or, when @var{package} is omitted, of @emph{all} the packages. The @option{--styling} or @option{-S} option allows you to select the style rule, the default rule being @code{format}---see below." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:13160 guix-git/doc/guix.texi:14479 +msgid "The available options are listed below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12839 +#: guix-git/doc/guix.texi:13165 msgid "Show source file locations that would be edited but do not modify them." msgstr "" +#. type: item +#: guix-git/doc/guix.texi:13166 +#, no-wrap +msgid "--styling=@var{rule}" +msgstr "" + +#. type: itemx +#: guix-git/doc/guix.texi:13167 +#, no-wrap +msgid "-S @var{rule}" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:13169 +msgid "Apply @var{rule}, one of the following styling rules:" +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:13171 +#, no-wrap +msgid "format" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:13176 +msgid "Format the given package definition(s)---this is the default styling rule. For example, a packager running Guix on a checkout (@pxref{Running Guix Before It Is Installed}) might want to reformat the definition of the Coreutils package like so:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:13179 +#, no-wrap +msgid "./pre-inst-env guix style coreutils\n" +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:13181 +#, no-wrap +msgid "inputs" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:13185 +msgid "Rewrite package inputs to the ``new style'', as described above. This is how you would rewrite inputs of package @code{whatnot} in your own channel:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:13188 +#, no-wrap +msgid "guix style -L ~/my/channel -S inputs whatnot\n" +msgstr "" + #. type: table -#: guix-git/doc/guix.texi:12848 +#: guix-git/doc/guix.texi:13194 +msgid "Rewriting is done in a conservative way: preserving comments and bailing out if it cannot make sense of the code that appears in an inputs field. The @option{--input-simplification} option described below provides fine-grain control over when inputs should be simplified." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:13204 msgid "Style the package @var{expr} evaluates to." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12853 +#: guix-git/doc/guix.texi:13209 #, no-wrap msgid "guix style -e '(@@ (gnu packages gcc) gcc-5)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12856 +#: guix-git/doc/guix.texi:13212 msgid "styles the @code{gcc-5} package definition." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12857 +#: guix-git/doc/guix.texi:13213 #, no-wrap msgid "--input-simplification=@var{policy}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12861 -msgid "Specify the package input simplification policy for cases where an input label does not match the corresponding package name. @var{policy} may be one of the following:" +#: guix-git/doc/guix.texi:13218 +msgid "When using the @code{inputs} styling rule, with @samp{-S inputs}, this option specifies the package input simplification policy for cases where an input label does not match the corresponding package name. @var{policy} may be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12863 +#: guix-git/doc/guix.texi:13220 #, no-wrap msgid "silent" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12866 +#: guix-git/doc/guix.texi:13223 msgid "Simplify inputs only when the change is ``silent'', meaning that the package does not need to be rebuilt (its derivation is unchanged)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12867 +#: guix-git/doc/guix.texi:13224 #, no-wrap msgid "safe" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12870 +#: guix-git/doc/guix.texi:13227 msgid "Simplify inputs only when that is ``safe'' to do: the package might need to be rebuilt, but the change is known to have no observable effect." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12874 +#: guix-git/doc/guix.texi:13231 msgid "Simplify inputs even when input labels do not match package names, and even if that might have an observable effect." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12878 +#: guix-git/doc/guix.texi:13235 msgid "The default is @code{silent}, meaning that input simplifications do not trigger any package rebuild." msgstr "" #. type: section -#: guix-git/doc/guix.texi:12881 +#: guix-git/doc/guix.texi:13238 #, no-wrap msgid "Invoking @command{guix lint}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:12883 +#: guix-git/doc/guix.texi:13240 #, no-wrap msgid "guix lint" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12884 +#: guix-git/doc/guix.texi:13241 #, no-wrap msgid "package, checking for errors" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12890 +#: guix-git/doc/guix.texi:13247 msgid "The @command{guix lint} command is meant to help package developers avoid common errors and use a consistent style. It runs a number of checks on a given set of packages in order to find common mistakes in their definitions. Available @dfn{checkers} include (see @option{--list-checkers} for a complete list):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12896 +#: guix-git/doc/guix.texi:13253 msgid "Validate certain typographical and stylistic rules about package descriptions and synopses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12897 +#: guix-git/doc/guix.texi:13254 #, no-wrap msgid "inputs-should-be-native" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12899 +#: guix-git/doc/guix.texi:13256 msgid "Identify inputs that should most likely be native inputs." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12902 +#: guix-git/doc/guix.texi:13259 #, no-wrap msgid "mirror-url" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12903 +#: guix-git/doc/guix.texi:13260 #, no-wrap msgid "github-url" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12904 +#: guix-git/doc/guix.texi:13261 #, no-wrap msgid "source-file-name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12911 +#: guix-git/doc/guix.texi:13268 msgid "Probe @code{home-page} and @code{source} URLs and report those that are invalid. Suggest a @code{mirror://} URL when applicable. If the @code{source} URL redirects to a GitHub URL, recommend usage of the GitHub URL@. Check that the source file name is meaningful, e.g.@: is not just a version number or ``git-checkout'', without a declared @code{file-name} (@pxref{origin Reference})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12912 +#: guix-git/doc/guix.texi:13269 #, no-wrap msgid "source-unstable-tarball" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12916 +#: guix-git/doc/guix.texi:13273 msgid "Parse the @code{source} URL to determine if a tarball from GitHub is autogenerated or if it is a release tarball. Unfortunately GitHub's autogenerated tarballs are sometimes regenerated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12920 +#: guix-git/doc/guix.texi:13277 msgid "Check that the derivation of the given packages can be successfully computed for all the supported systems (@pxref{Derivations})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12921 +#: guix-git/doc/guix.texi:13278 #, no-wrap msgid "profile-collisions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12927 +#: guix-git/doc/guix.texi:13284 msgid "Check whether installing the given packages in a profile would lead to collisions. Collisions occur when several packages with the same name but a different version or a different store file name are propagated. @xref{package Reference, @code{propagated-inputs}}, for more information on propagated inputs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12928 +#: guix-git/doc/guix.texi:13285 #, no-wrap msgid "archival" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12929 +#: guix-git/doc/guix.texi:13286 #, no-wrap msgid "Software Heritage, source code archive" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12930 +#: guix-git/doc/guix.texi:13287 #, no-wrap msgid "archival of source code, Software Heritage" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12933 +#: guix-git/doc/guix.texi:13290 msgid "Checks whether the package's source code is archived at @uref{https://www.softwareheritage.org, Software Heritage}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12941 +#: guix-git/doc/guix.texi:13298 msgid "When the source code that is not archived comes from a version-control system (VCS)---e.g., it's obtained with @code{git-fetch}, send Software Heritage a ``save'' request so that it eventually archives it. This ensures that the source will remain available in the long term, and that Guix can fall back to Software Heritage should the source code disappear from its original host. The status of recent ``save'' requests can be @uref{https://archive.softwareheritage.org/save/#requests, viewed on-line}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12946 +#: guix-git/doc/guix.texi:13303 msgid "When source code is a tarball obtained with @code{url-fetch}, simply print a message when it is not archived. As of this writing, Software Heritage does not allow requests to save arbitrary tarballs; we are working on ways to ensure that non-VCS source code is also archived." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12952 +#: guix-git/doc/guix.texi:13309 msgid "Software Heritage @uref{https://archive.softwareheritage.org/api/#rate-limiting, limits the request rate per IP address}. When the limit is reached, @command{guix lint} prints a message and the @code{archival} checker stops doing anything until that limit has been reset." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12953 +#: guix-git/doc/guix.texi:13310 #, no-wrap msgid "cve" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12954 guix-git/doc/guix.texi:37946 +#: guix-git/doc/guix.texi:13311 guix-git/doc/guix.texi:38435 #, no-wrap msgid "security vulnerabilities" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12955 +#: guix-git/doc/guix.texi:13312 #, no-wrap msgid "CVE, Common Vulnerabilities and Exposures" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12960 +#: guix-git/doc/guix.texi:13317 msgid "Report known vulnerabilities found in the Common Vulnerabilities and Exposures (CVE) databases of the current and past year @uref{https://nvd.nist.gov/vuln/data-feeds, published by the US NIST}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12962 +#: guix-git/doc/guix.texi:13319 msgid "To view information about a particular vulnerability, visit pages such as:" msgstr "" #. type: indicateurl{#1} -#: guix-git/doc/guix.texi:12966 +#: guix-git/doc/guix.texi:13323 msgid "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-YYYY-ABCD" msgstr "" #. type: indicateurl{#1} -#: guix-git/doc/guix.texi:12968 +#: guix-git/doc/guix.texi:13325 msgid "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-YYYY-ABCD" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12973 +#: guix-git/doc/guix.texi:13330 msgid "where @code{CVE-YYYY-ABCD} is the CVE identifier---e.g., @code{CVE-2015-7554}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12978 +#: guix-git/doc/guix.texi:13335 msgid "Package developers can specify in package recipes the @uref{https://nvd.nist.gov/products/cpe,Common Platform Enumeration (CPE)} name and version of the package when they differ from the name or version that Guix uses, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12986 +#: guix-git/doc/guix.texi:13343 #, no-wrap msgid "" "(package\n" @@ -23024,12 +23633,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12993 +#: guix-git/doc/guix.texi:13350 msgid "Some entries in the CVE database do not specify which version of a package they apply to, and would thus ``stick around'' forever. Package developers who found CVE alerts and verified they can be ignored can declare them as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:13003 +#: guix-git/doc/guix.texi:13360 #, no-wrap msgid "" "(package\n" @@ -23043,124 +23652,124 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13005 +#: guix-git/doc/guix.texi:13362 #, no-wrap msgid "formatting" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13008 +#: guix-git/doc/guix.texi:13365 msgid "Warn about obvious source code formatting issues: trailing white space, use of tabulations, etc." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13009 +#: guix-git/doc/guix.texi:13366 #, no-wrap msgid "input-labels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13015 +#: guix-git/doc/guix.texi:13372 msgid "Report old-style input labels that do not match the name of the corresponding package. This aims to help migrate from the ``old input style''. @xref{package Reference}, for more information on package inputs and input styles. @xref{Invoking guix style}, on how to migrate to the new style." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13021 +#: guix-git/doc/guix.texi:13378 #, no-wrap msgid "guix lint @var{options} @var{package}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13025 +#: guix-git/doc/guix.texi:13382 msgid "If no package is given on the command line, then all packages are checked. The @var{options} may be zero or more of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13027 +#: guix-git/doc/guix.texi:13384 #, no-wrap msgid "--list-checkers" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13031 +#: guix-git/doc/guix.texi:13388 msgid "List and describe all the available checkers that will be run on packages and exit." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13032 +#: guix-git/doc/guix.texi:13389 #, no-wrap msgid "--checkers" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13033 +#: guix-git/doc/guix.texi:13390 #, no-wrap msgid "-c" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13036 +#: guix-git/doc/guix.texi:13393 msgid "Only enable the checkers specified in a comma-separated list using the names returned by @option{--list-checkers}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13037 +#: guix-git/doc/guix.texi:13394 #, no-wrap msgid "--exclude" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13041 +#: guix-git/doc/guix.texi:13398 msgid "Only disable the checkers specified in a comma-separated list using the names returned by @option{--list-checkers}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13042 +#: guix-git/doc/guix.texi:13399 #, no-wrap msgid "--no-network" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13045 +#: guix-git/doc/guix.texi:13402 msgid "Only enable the checkers that do not depend on Internet access." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13057 +#: guix-git/doc/guix.texi:13414 #, no-wrap msgid "Invoking @command{guix size}" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:13059 guix-git/doc/guix.texi:35624 +#: guix-git/doc/guix.texi:13416 guix-git/doc/guix.texi:36114 #, no-wrap msgid "size" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13060 +#: guix-git/doc/guix.texi:13417 #, no-wrap msgid "package size" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13062 +#: guix-git/doc/guix.texi:13419 #, no-wrap msgid "guix size" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13069 +#: guix-git/doc/guix.texi:13426 msgid "The @command{guix size} command helps package developers profile the disk usage of packages. It is easy to overlook the impact of an additional dependency added to a package, or the impact of using a single output for a package that could easily be split (@pxref{Packages with Multiple Outputs}). Such are the typical issues that @command{guix size} can highlight." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13074 +#: guix-git/doc/guix.texi:13431 msgid "The command can be passed one or more package specifications such as @code{gcc@@4.8} or @code{guile:debug}, or a file name in the store. Consider this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13087 +#: guix-git/doc/guix.texi:13444 #, no-wrap msgid "" "$ guix size coreutils\n" @@ -23177,54 +23786,54 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13093 +#: guix-git/doc/guix.texi:13450 msgid "The store items listed here constitute the @dfn{transitive closure} of Coreutils---i.e., Coreutils and all its dependencies, recursively---as would be returned by:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13096 +#: guix-git/doc/guix.texi:13453 #, no-wrap msgid "$ guix gc -R /gnu/store/@dots{}-coreutils-8.23\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13104 +#: guix-git/doc/guix.texi:13461 msgid "Here the output shows three columns next to store items. The first column, labeled ``total'', shows the size in mebibytes (MiB) of the closure of the store item---that is, its own size plus the size of all its dependencies. The next column, labeled ``self'', shows the size of the item itself. The last column shows the ratio of the size of the item itself to the space occupied by all the items listed here." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13110 +#: guix-git/doc/guix.texi:13467 msgid "In this example, we see that the closure of Coreutils weighs in at 79@tie{}MiB, most of which is taken by libc and GCC's run-time support libraries. (That libc and GCC's libraries represent a large fraction of the closure is not a problem @i{per se} because they are always available on the system anyway.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13113 +#: guix-git/doc/guix.texi:13470 msgid "Since the command also accepts store file names, assessing the size of a build result is straightforward:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13116 +#: guix-git/doc/guix.texi:13473 #, no-wrap msgid "guix size $(guix system build config.scm)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13126 +#: guix-git/doc/guix.texi:13483 msgid "When the package(s) passed to @command{guix size} are available in the store@footnote{More precisely, @command{guix size} looks for the @emph{ungrafted} variant of the given package(s), as returned by @code{guix build @var{package} --no-grafts}. @xref{Security Updates}, for information on grafts.}, @command{guix size} queries the daemon to determine its dependencies, and measures its size in the store, similar to @command{du -ms --apparent-size} (@pxref{du invocation,,, coreutils, GNU Coreutils})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13131 +#: guix-git/doc/guix.texi:13488 msgid "When the given packages are @emph{not} in the store, @command{guix size} reports information based on the available substitutes (@pxref{Substitutes}). This makes it possible it to profile disk usage of store items that are not even on disk, only available remotely." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13133 +#: guix-git/doc/guix.texi:13490 msgid "You can also specify several package names:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13143 +#: guix-git/doc/guix.texi:13500 #, no-wrap msgid "" "$ guix size coreutils grep sed bash\n" @@ -23238,365 +23847,365 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13149 +#: guix-git/doc/guix.texi:13506 msgid "In this example we see that the combination of the four packages takes 102.3@tie{}MiB in total, which is much less than the sum of each closure since they have a lot of dependencies in common." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13155 +#: guix-git/doc/guix.texi:13512 msgid "When looking at the profile returned by @command{guix size}, you may find yourself wondering why a given package shows up in the profile at all. To understand it, you can use @command{guix graph --path -t references} to display the shortest path between the two packages (@pxref{Invoking guix graph})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13157 +#: guix-git/doc/guix.texi:13514 msgid "The available options are:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13163 +#: guix-git/doc/guix.texi:13520 msgid "Use substitute information from @var{urls}. @xref{client-substitute-urls, the same option for @code{guix build}}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13164 +#: guix-git/doc/guix.texi:13521 #, no-wrap msgid "--sort=@var{key}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13166 +#: guix-git/doc/guix.texi:13523 msgid "Sort lines according to @var{key}, one of the following options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13168 +#: guix-git/doc/guix.texi:13525 #, no-wrap msgid "self" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13170 +#: guix-git/doc/guix.texi:13527 msgid "the size of each item (the default);" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13172 +#: guix-git/doc/guix.texi:13529 msgid "the total size of the item's closure." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13174 +#: guix-git/doc/guix.texi:13531 #, no-wrap msgid "--map-file=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13176 +#: guix-git/doc/guix.texi:13533 msgid "Write a graphical map of disk usage in PNG format to @var{file}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13178 +#: guix-git/doc/guix.texi:13535 msgid "For the example above, the map looks like this:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13181 +#: guix-git/doc/guix.texi:13538 msgid "@image{images/coreutils-size-map,5in,, map of Coreutils disk usage produced by @command{guix size}}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13186 +#: guix-git/doc/guix.texi:13543 msgid "This option requires that @uref{https://wingolog.org/software/guile-charting/, Guile-Charting} be installed and visible in Guile's module search path. When that is not the case, @command{guix size} fails as it tries to load it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13190 +#: guix-git/doc/guix.texi:13547 msgid "Consider packages for @var{system}---e.g., @code{x86_64-linux}." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13201 +#: guix-git/doc/guix.texi:13558 #, no-wrap msgid "Invoking @command{guix graph}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13203 +#: guix-git/doc/guix.texi:13560 #, no-wrap msgid "DAG" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13204 +#: guix-git/doc/guix.texi:13561 #, no-wrap msgid "guix graph" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13219 +#: guix-git/doc/guix.texi:13576 msgid "Packages and their dependencies form a @dfn{graph}, specifically a directed acyclic graph (DAG). It can quickly become difficult to have a mental model of the package DAG, so the @command{guix graph} command provides a visual representation of the DAG@. By default, @command{guix graph} emits a DAG representation in the input format of @uref{https://www.graphviz.org/, Graphviz}, so its output can be passed directly to the @command{dot} command of Graphviz. It can also emit an HTML page with embedded JavaScript code to display a ``chord diagram'' in a Web browser, using the @uref{https://d3js.org/, d3.js} library, or emit Cypher queries to construct a graph in a graph database supporting the @uref{https://www.opencypher.org/, openCypher} query language. With @option{--path}, it simply displays the shortest path between two packages. The general syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13222 +#: guix-git/doc/guix.texi:13579 #, no-wrap msgid "guix graph @var{options} @var{package}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13227 +#: guix-git/doc/guix.texi:13584 msgid "For example, the following command generates a PDF file representing the package DAG for the GNU@tie{}Core Utilities, showing its build-time dependencies:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13230 +#: guix-git/doc/guix.texi:13587 #, no-wrap msgid "guix graph coreutils | dot -Tpdf > dag.pdf\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13233 +#: guix-git/doc/guix.texi:13590 msgid "The output looks like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13235 +#: guix-git/doc/guix.texi:13592 msgid "@image{images/coreutils-graph,2in,,Dependency graph of the GNU Coreutils}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13237 +#: guix-git/doc/guix.texi:13594 msgid "Nice little graph, no?" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13240 +#: guix-git/doc/guix.texi:13597 msgid "You may find it more pleasant to navigate the graph interactively with @command{xdot} (from the @code{xdot} package):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13243 +#: guix-git/doc/guix.texi:13600 #, no-wrap msgid "guix graph coreutils | xdot -\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13250 +#: guix-git/doc/guix.texi:13607 msgid "But there is more than one graph! The one above is concise: it is the graph of package objects, omitting implicit inputs such as GCC, libc, grep, etc. It is often useful to have such a concise graph, but sometimes one may want to see more details. @command{guix graph} supports several types of graphs, allowing you to choose the level of detail:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13256 +#: guix-git/doc/guix.texi:13613 msgid "This is the default type used in the example above. It shows the DAG of package objects, excluding implicit dependencies. It is concise, but filters out many details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13257 +#: guix-git/doc/guix.texi:13614 #, no-wrap msgid "reverse-package" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13259 +#: guix-git/doc/guix.texi:13616 msgid "This shows the @emph{reverse} DAG of packages. For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13262 +#: guix-git/doc/guix.texi:13619 #, no-wrap msgid "guix graph --type=reverse-package ocaml\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13267 +#: guix-git/doc/guix.texi:13624 msgid "...@: yields the graph of packages that @emph{explicitly} depend on OCaml (if you are also interested in cases where OCaml is an implicit dependency, see @code{reverse-bag} below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13272 +#: guix-git/doc/guix.texi:13629 msgid "Note that for core packages this can yield huge graphs. If all you want is to know the number of packages that depend on a given package, use @command{guix refresh --list-dependent} (@pxref{Invoking guix refresh, @option{--list-dependent}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13273 +#: guix-git/doc/guix.texi:13630 #, no-wrap msgid "bag-emerged" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13275 +#: guix-git/doc/guix.texi:13632 msgid "This is the package DAG, @emph{including} implicit inputs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13277 +#: guix-git/doc/guix.texi:13634 msgid "For instance, the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13280 +#: guix-git/doc/guix.texi:13637 #, no-wrap msgid "guix graph --type=bag-emerged coreutils\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13283 +#: guix-git/doc/guix.texi:13640 msgid "...@: yields this bigger graph:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13285 +#: guix-git/doc/guix.texi:13642 msgid "@image{images/coreutils-bag-graph,,5in,Detailed dependency graph of the GNU Coreutils}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13288 +#: guix-git/doc/guix.texi:13645 msgid "At the bottom of the graph, we see all the implicit inputs of @var{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13292 +#: guix-git/doc/guix.texi:13649 msgid "Now, note that the dependencies of these implicit inputs---that is, the @dfn{bootstrap dependencies} (@pxref{Bootstrapping})---are not shown here, for conciseness." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13293 +#: guix-git/doc/guix.texi:13650 #, no-wrap msgid "bag" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13296 +#: guix-git/doc/guix.texi:13653 msgid "Similar to @code{bag-emerged}, but this time including all the bootstrap dependencies." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13297 +#: guix-git/doc/guix.texi:13654 #, no-wrap msgid "bag-with-origins" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13299 +#: guix-git/doc/guix.texi:13656 msgid "Similar to @code{bag}, but also showing origins and their dependencies." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13300 +#: guix-git/doc/guix.texi:13657 #, no-wrap msgid "reverse-bag" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13303 +#: guix-git/doc/guix.texi:13660 msgid "This shows the @emph{reverse} DAG of packages. Unlike @code{reverse-package}, it also takes implicit dependencies into account. For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13306 +#: guix-git/doc/guix.texi:13663 #, no-wrap msgid "guix graph -t reverse-bag dune\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13313 +#: guix-git/doc/guix.texi:13670 msgid "...@: yields the graph of all packages that depend on Dune, directly or indirectly. Since Dune is an @emph{implicit} dependency of many packages @i{via} @code{dune-build-system}, this shows a large number of packages, whereas @code{reverse-package} would show very few if any." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13319 +#: guix-git/doc/guix.texi:13676 msgid "This is the most detailed representation: It shows the DAG of derivations (@pxref{Derivations}) and plain store items. Compared to the above representation, many additional nodes are visible, including build scripts, patches, Guile modules, etc." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13322 +#: guix-git/doc/guix.texi:13679 msgid "For this type of graph, it is also possible to pass a @file{.drv} file name instead of a package name, as in:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13325 +#: guix-git/doc/guix.texi:13682 #, no-wrap msgid "guix graph -t derivation $(guix system build -d my-config.scm)\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13327 +#: guix-git/doc/guix.texi:13684 #, no-wrap msgid "module" msgstr "پیمانه" #. type: table -#: guix-git/doc/guix.texi:13331 +#: guix-git/doc/guix.texi:13688 msgid "This is the graph of @dfn{package modules} (@pxref{Package Modules}). For example, the following command shows the graph for the package module that defines the @code{guile} package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13334 +#: guix-git/doc/guix.texi:13691 #, no-wrap msgid "guix graph -t module guile | xdot -\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13339 +#: guix-git/doc/guix.texi:13696 msgid "All the types above correspond to @emph{build-time dependencies}. The following graph type represents the @emph{run-time dependencies}:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13344 +#: guix-git/doc/guix.texi:13701 msgid "This is the graph of @dfn{references} of a package output, as returned by @command{guix gc --references} (@pxref{Invoking guix gc})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13347 +#: guix-git/doc/guix.texi:13704 msgid "If the given package output is not available in the store, @command{guix graph} attempts to obtain dependency information from substitutes." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13351 +#: guix-git/doc/guix.texi:13708 msgid "Here you can also pass a store file name instead of a package name. For example, the command below produces the reference graph of your profile (which can be big!):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13354 +#: guix-git/doc/guix.texi:13711 #, no-wrap msgid "guix graph -t references $(readlink -f ~/.guix-profile)\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13356 +#: guix-git/doc/guix.texi:13713 #, no-wrap msgid "referrers" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13359 +#: guix-git/doc/guix.texi:13716 msgid "This is the graph of the @dfn{referrers} of a store item, as returned by @command{guix gc --referrers} (@pxref{Invoking guix gc})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13365 +#: guix-git/doc/guix.texi:13722 msgid "This relies exclusively on local information from your store. For instance, let us suppose that the current Inkscape is available in 10 profiles on your machine; @command{guix graph -t referrers inkscape} will show a graph rooted at Inkscape and with those 10 profiles linked to it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13368 +#: guix-git/doc/guix.texi:13725 msgid "It can help determine what is preventing a store item from being garbage collected." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13371 +#: guix-git/doc/guix.texi:13728 #, no-wrap msgid "shortest path, between packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13378 +#: guix-git/doc/guix.texi:13735 msgid "Often, the graph of the package you are interested in does not fit on your screen, and anyway all you want to know is @emph{why} that package actually depends on some seemingly unrelated package. The @option{--path} option instructs @command{guix graph} to display the shortest path between two packages (or derivations, or store items, etc.):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13392 +#: guix-git/doc/guix.texi:13749 #, no-wrap msgid "" "$ guix graph --path emacs libunistring\n" @@ -23614,88 +24223,88 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13400 +#: guix-git/doc/guix.texi:13757 msgid "Sometimes you still want to visualize the graph but would like to trim it so it can actually be displayed. One way to do it is via the @option{--max-depth} (or @option{-M}) option, which lets you specify the maximum depth of the graph. In the example below, we visualize only @code{libreoffice} and the nodes whose distance to @code{libreoffice} is at most 2:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13403 +#: guix-git/doc/guix.texi:13760 #, no-wrap msgid "guix graph -M 2 libreoffice | xdot -f fdp -\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13407 +#: guix-git/doc/guix.texi:13764 msgid "Mind you, that's still a big ball of spaghetti, but at least @command{dot} can render it quickly and it can be browsed somewhat." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13409 +#: guix-git/doc/guix.texi:13766 msgid "The available options are the following:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13415 +#: guix-git/doc/guix.texi:13772 msgid "Produce a graph output of @var{type}, where @var{type} must be one of the values listed above." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13416 +#: guix-git/doc/guix.texi:13773 #, no-wrap msgid "--list-types" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13418 +#: guix-git/doc/guix.texi:13775 msgid "List the supported graph types." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13419 +#: guix-git/doc/guix.texi:13776 #, no-wrap msgid "--backend=@var{backend}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13420 +#: guix-git/doc/guix.texi:13777 #, no-wrap msgid "-b @var{backend}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13422 +#: guix-git/doc/guix.texi:13779 msgid "Produce a graph using the selected @var{backend}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13423 +#: guix-git/doc/guix.texi:13780 #, no-wrap msgid "--list-backends" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13425 +#: guix-git/doc/guix.texi:13782 msgid "List the supported graph backends." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13427 +#: guix-git/doc/guix.texi:13784 msgid "Currently, the available backends are Graphviz and d3.js." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13428 +#: guix-git/doc/guix.texi:13785 #, no-wrap msgid "--path" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13433 +#: guix-git/doc/guix.texi:13790 msgid "Display the shortest path between two nodes of the type specified by @option{--type}. The example below shows the shortest path between @code{libreoffice} and @code{llvm} according to the references of @code{libreoffice}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13440 +#: guix-git/doc/guix.texi:13797 #, no-wrap msgid "" "$ guix graph --path -t references libreoffice llvm\n" @@ -23706,398 +24315,398 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13450 +#: guix-git/doc/guix.texi:13807 #, no-wrap msgid "guix graph -e '(@@@@ (gnu packages commencement) gnu-make-final)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13455 +#: guix-git/doc/guix.texi:13812 msgid "Display the graph for @var{system}---e.g., @code{i686-linux}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13458 +#: guix-git/doc/guix.texi:13815 msgid "The package dependency graph is largely architecture-independent, but there are some architecture-dependent bits that this option allows you to visualize." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13474 +#: guix-git/doc/guix.texi:13831 msgid "On top of that, @command{guix graph} supports all the usual package transformation options (@pxref{Package Transformation Options}). This makes it easy to view the effect of a graph-rewriting transformation such as @option{--with-input}. For example, the command below outputs the graph of @code{git} once @code{openssl} has been replaced by @code{libressl} everywhere in the graph:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13477 +#: guix-git/doc/guix.texi:13834 #, no-wrap msgid "guix graph git --with-input=openssl=libressl\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13480 +#: guix-git/doc/guix.texi:13837 msgid "So many possibilities, so much fun!" msgstr "" #. type: section -#: guix-git/doc/guix.texi:13482 +#: guix-git/doc/guix.texi:13839 #, no-wrap msgid "Invoking @command{guix publish}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13484 +#: guix-git/doc/guix.texi:13841 #, no-wrap msgid "guix publish" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13488 +#: guix-git/doc/guix.texi:13845 msgid "The purpose of @command{guix publish} is to enable users to easily share their store with others, who can then use it as a substitute server (@pxref{Substitutes})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13494 +#: guix-git/doc/guix.texi:13851 msgid "When @command{guix publish} runs, it spawns an HTTP server which allows anyone with network access to obtain substitutes from it. This means that any machine running Guix can also act as if it were a build farm, since the HTTP interface is compatible with Cuirass, the software behind the @code{@value{SUBSTITUTE-SERVER-1}} build farm." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13500 +#: guix-git/doc/guix.texi:13857 msgid "For security, each substitute is signed, allowing recipients to check their authenticity and integrity (@pxref{Substitutes}). Because @command{guix publish} uses the signing key of the system, which is only readable by the system administrator, it must be started as root; the @option{--user} option makes it drop root privileges early on." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13504 +#: guix-git/doc/guix.texi:13861 msgid "The signing key pair must be generated before @command{guix publish} is launched, using @command{guix archive --generate-key} (@pxref{Invoking guix archive})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13509 +#: guix-git/doc/guix.texi:13866 msgid "When the @option{--advertise} option is passed, the server advertises its availability on the local network using multicast DNS (mDNS) and DNS service discovery (DNS-SD), currently @i{via} Guile-Avahi (@pxref{Top,,, guile-avahi, Using Avahi in Guile Scheme Programs})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13514 +#: guix-git/doc/guix.texi:13871 #, no-wrap msgid "guix publish @var{options}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13518 +#: guix-git/doc/guix.texi:13875 msgid "Running @command{guix publish} without any additional arguments will spawn an HTTP server on port 8080:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13521 +#: guix-git/doc/guix.texi:13878 #, no-wrap msgid "guix publish\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13525 +#: guix-git/doc/guix.texi:13882 msgid "Once a publishing server has been authorized, the daemon may download substitutes from it. @xref{Getting Substitutes from Other Servers}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13533 +#: guix-git/doc/guix.texi:13890 msgid "By default, @command{guix publish} compresses archives on the fly as it serves them. This ``on-the-fly'' mode is convenient in that it requires no setup and is immediately available. However, when serving lots of clients, we recommend using the @option{--cache} option, which enables caching of the archives before they are sent to clients---see below for details. The @command{guix weather} command provides a handy way to check what a server provides (@pxref{Invoking guix weather})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13540 +#: guix-git/doc/guix.texi:13897 msgid "As a bonus, @command{guix publish} also serves as a content-addressed mirror for source files referenced in @code{origin} records (@pxref{origin Reference}). For instance, assuming @command{guix publish} is running on @code{example.org}, the following URL returns the raw @file{hello-2.10.tar.gz} file with the given SHA256 hash (represented in @code{nix-base32} format, @pxref{Invoking guix hash}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13543 +#: guix-git/doc/guix.texi:13900 #, no-wrap msgid "http://example.org/file/hello-2.10.tar.gz/sha256/0ssi1@dots{}ndq1i\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13547 +#: guix-git/doc/guix.texi:13904 msgid "Obviously, these URLs only work for files that are in the store; in other cases, they return 404 (``Not Found'')." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13548 +#: guix-git/doc/guix.texi:13905 #, no-wrap msgid "build logs, publication" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13550 +#: guix-git/doc/guix.texi:13907 msgid "Build logs are available from @code{/log} URLs like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13553 +#: guix-git/doc/guix.texi:13910 #, no-wrap msgid "http://example.org/log/gwspk@dots{}-guile-2.2.3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13563 +#: guix-git/doc/guix.texi:13920 msgid "When @command{guix-daemon} is configured to save compressed build logs, as is the case by default (@pxref{Invoking guix-daemon}), @code{/log} URLs return the compressed log as-is, with an appropriate @code{Content-Type} and/or @code{Content-Encoding} header. We recommend running @command{guix-daemon} with @option{--log-compression=gzip} since Web browsers can automatically decompress it, which is not the case with Bzip2 compression." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13567 +#: guix-git/doc/guix.texi:13924 #, no-wrap msgid "--port=@var{port}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13568 +#: guix-git/doc/guix.texi:13925 #, no-wrap msgid "-p @var{port}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13570 +#: guix-git/doc/guix.texi:13927 msgid "Listen for HTTP requests on @var{port}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13571 +#: guix-git/doc/guix.texi:13928 #, no-wrap msgid "--listen=@var{host}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13574 +#: guix-git/doc/guix.texi:13931 msgid "Listen on the network interface for @var{host}. The default is to accept connections from any interface." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13579 +#: guix-git/doc/guix.texi:13936 msgid "Change privileges to @var{user} as soon as possible---i.e., once the server socket is open and the signing key has been read." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13580 +#: guix-git/doc/guix.texi:13937 #, no-wrap msgid "--compression[=@var{method}[:@var{level}]]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13581 +#: guix-git/doc/guix.texi:13938 #, no-wrap msgid "-C [@var{method}[:@var{level}]]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13585 +#: guix-git/doc/guix.texi:13942 msgid "Compress data using the given @var{method} and @var{level}. @var{method} is one of @code{lzip}, @code{zstd}, and @code{gzip}; when @var{method} is omitted, @code{gzip} is used." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13589 +#: guix-git/doc/guix.texi:13946 msgid "When @var{level} is zero, disable compression. The range 1 to 9 corresponds to different compression levels: 1 is the fastest, and 9 is the best (CPU-intensive). The default is 3." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13596 +#: guix-git/doc/guix.texi:13953 msgid "Usually, @code{lzip} compresses noticeably better than @code{gzip} for a small increase in CPU usage; see @uref{https://nongnu.org/lzip/lzip_benchmark.html,benchmarks on the lzip Web page}. However, @code{lzip} achieves low decompression throughput (on the order of 50@tie{}MiB/s on modern hardware), which can be a bottleneck for someone who downloads over a fast network connection." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13600 +#: guix-git/doc/guix.texi:13957 msgid "The compression ratio of @code{zstd} is between that of @code{lzip} and that of @code{gzip}; its main advantage is a @uref{https://facebook.github.io/zstd/,high decompression speed}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13609 +#: guix-git/doc/guix.texi:13966 msgid "Unless @option{--cache} is used, compression occurs on the fly and the compressed streams are not cached. Thus, to reduce load on the machine that runs @command{guix publish}, it may be a good idea to choose a low compression level, to run @command{guix publish} behind a caching proxy, or to use @option{--cache}. Using @option{--cache} has the advantage that it allows @command{guix publish} to add @code{Content-Length} HTTP header to its responses." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13614 +#: guix-git/doc/guix.texi:13971 msgid "This option can be repeated, in which case every substitute gets compressed using all the selected methods, and all of them are advertised. This is useful when users may not support all the compression methods: they can select the one they support." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13615 +#: guix-git/doc/guix.texi:13972 #, no-wrap msgid "--cache=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13616 +#: guix-git/doc/guix.texi:13973 #, no-wrap msgid "-c @var{directory}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13619 +#: guix-git/doc/guix.texi:13976 msgid "Cache archives and meta-data (@code{.narinfo} URLs) to @var{directory} and only serve archives that are in cache." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13627 +#: guix-git/doc/guix.texi:13984 msgid "When this option is omitted, archives and meta-data are created on-the-fly. This can reduce the available bandwidth, especially when compression is enabled, since this may become CPU-bound. Another drawback of the default mode is that the length of archives is not known in advance, so @command{guix publish} does not add a @code{Content-Length} HTTP header to its responses, which in turn prevents clients from knowing the amount of data being downloaded." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13635 +#: guix-git/doc/guix.texi:13992 msgid "Conversely, when @option{--cache} is used, the first request for a store item (@i{via} a @code{.narinfo} URL) triggers a background process to @dfn{bake} the archive---computing its @code{.narinfo} and compressing the archive, if needed. Once the archive is cached in @var{directory}, subsequent requests succeed and are served directly from the cache, which guarantees that clients get the best possible bandwidth." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13642 +#: guix-git/doc/guix.texi:13999 msgid "That first @code{.narinfo} request nonetheless returns 200, provided the requested store item is ``small enough'', below the cache bypass threshold---see @option{--cache-bypass-threshold} below. That way, clients do not have to wait until the archive is baked. For larger store items, the first @code{.narinfo} request returns 404, meaning that clients have to wait until the archive is baked." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13646 +#: guix-git/doc/guix.texi:14003 msgid "The ``baking'' process is performed by worker threads. By default, one thread per CPU core is created, but this can be customized. See @option{--workers} below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13649 +#: guix-git/doc/guix.texi:14006 msgid "When @option{--ttl} is used, cached entries are automatically deleted when they have expired." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13650 +#: guix-git/doc/guix.texi:14007 #, no-wrap msgid "--workers=@var{N}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13653 +#: guix-git/doc/guix.texi:14010 msgid "When @option{--cache} is used, request the allocation of @var{N} worker threads to ``bake'' archives." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13654 +#: guix-git/doc/guix.texi:14011 #, no-wrap msgid "--ttl=@var{ttl}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13658 +#: guix-git/doc/guix.texi:14015 msgid "Produce @code{Cache-Control} HTTP headers that advertise a time-to-live (TTL) of @var{ttl}. @var{ttl} must denote a duration: @code{5d} means 5 days, @code{1m} means 1 month, and so on." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13663 +#: guix-git/doc/guix.texi:14020 msgid "This allows the user's Guix to keep substitute information in cache for @var{ttl}. However, note that @code{guix publish} does not itself guarantee that the store items it provides will indeed remain available for as long as @var{ttl}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13667 +#: guix-git/doc/guix.texi:14024 msgid "Additionally, when @option{--cache} is used, cached entries that have not been accessed for @var{ttl} and that no longer have a corresponding item in the store, may be deleted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13668 +#: guix-git/doc/guix.texi:14025 #, no-wrap msgid "--negative-ttl=@var{ttl}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13673 +#: guix-git/doc/guix.texi:14030 msgid "Similarly produce @code{Cache-Control} HTTP headers to advertise the time-to-live (TTL) of @emph{negative} lookups---missing store items, for which the HTTP 404 code is returned. By default, no negative TTL is advertised." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13677 +#: guix-git/doc/guix.texi:14034 msgid "This parameter can help adjust server load and substitute latency by instructing cooperating clients to be more or less patient when a store item is missing." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13678 +#: guix-git/doc/guix.texi:14035 #, no-wrap msgid "--cache-bypass-threshold=@var{size}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13683 +#: guix-git/doc/guix.texi:14040 msgid "When used in conjunction with @option{--cache}, store items smaller than @var{size} are immediately available, even when they are not yet in cache. @var{size} is a size in bytes, or it can be suffixed by @code{M} for megabytes and so on. The default is @code{10M}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13688 +#: guix-git/doc/guix.texi:14045 msgid "``Cache bypass'' allows you to reduce the publication delay for clients at the expense of possibly additional I/O and CPU use on the server side: depending on the client access patterns, those store items can end up being baked several times until a copy is available in cache." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13692 +#: guix-git/doc/guix.texi:14049 msgid "Increasing the threshold may be useful for sites that have few users, or to guarantee that users get substitutes even for store items that are not popular." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13693 +#: guix-git/doc/guix.texi:14050 #, no-wrap msgid "--nar-path=@var{path}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13696 +#: guix-git/doc/guix.texi:14053 msgid "Use @var{path} as the prefix for the URLs of ``nar'' files (@pxref{Invoking guix archive, normalized archives})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13700 +#: guix-git/doc/guix.texi:14057 msgid "By default, nars are served at a URL such as @code{/nar/gzip/@dots{}-coreutils-8.25}. This option allows you to change the @code{/nar} part to @var{path}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13701 +#: guix-git/doc/guix.texi:14058 #, no-wrap msgid "--public-key=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13702 +#: guix-git/doc/guix.texi:14059 #, no-wrap msgid "--private-key=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13705 guix-git/doc/guix.texi:29141 -#: guix-git/doc/guix.texi:29178 +#: guix-git/doc/guix.texi:14062 guix-git/doc/guix.texi:29478 +#: guix-git/doc/guix.texi:29515 msgid "Use the specific @var{file}s as the public/private key pair used to sign the store items being published." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13712 +#: guix-git/doc/guix.texi:14069 msgid "The files must correspond to the same key pair (the private key is used for signing and the public key is merely advertised in the signature metadata). They must contain keys in the canonical s-expression format as produced by @command{guix archive --generate-key} (@pxref{Invoking guix archive}). By default, @file{/etc/guix/signing-key.pub} and @file{/etc/guix/signing-key.sec} are used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13713 +#: guix-git/doc/guix.texi:14070 #, no-wrap msgid "--repl[=@var{port}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13714 +#: guix-git/doc/guix.texi:14071 #, no-wrap msgid "-r [@var{port}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13718 +#: guix-git/doc/guix.texi:14075 msgid "Spawn a Guile REPL server (@pxref{REPL Servers,,, guile, GNU Guile Reference Manual}) on @var{port} (37146 by default). This is used primarily for debugging a running @command{guix publish} server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13724 +#: guix-git/doc/guix.texi:14081 msgid "Enabling @command{guix publish} on Guix System is a one-liner: just instantiate a @code{guix-publish-service-type} service in the @code{services} field of the @code{operating-system} declaration (@pxref{guix-publish-service-type, @code{guix-publish-service-type}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13727 +#: guix-git/doc/guix.texi:14084 msgid "If you are instead running Guix on a ``foreign distro'', follow these instructions:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:13731 +#: guix-git/doc/guix.texi:14088 msgid "If your host distro uses the systemd init system:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13736 +#: guix-git/doc/guix.texi:14093 #, no-wrap msgid "" "# ln -s ~root/.guix-profile/lib/systemd/system/guix-publish.service \\\n" @@ -24106,7 +24715,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13744 +#: guix-git/doc/guix.texi:14101 #, no-wrap msgid "" "# ln -s ~root/.guix-profile/lib/upstart/system/guix-publish.conf /etc/init/\n" @@ -24114,56 +24723,56 @@ msgid "" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:13748 +#: guix-git/doc/guix.texi:14105 msgid "Otherwise, proceed similarly with your distro's init system." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13751 +#: guix-git/doc/guix.texi:14108 #, no-wrap msgid "Invoking @command{guix challenge}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13754 +#: guix-git/doc/guix.texi:14111 #, no-wrap msgid "verifiable builds" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13755 +#: guix-git/doc/guix.texi:14112 #, no-wrap msgid "guix challenge" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13756 +#: guix-git/doc/guix.texi:14113 #, no-wrap msgid "challenge" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13761 +#: guix-git/doc/guix.texi:14118 msgid "Do the binaries provided by this server really correspond to the source code it claims to build? Is a package build process deterministic? These are the questions the @command{guix challenge} command attempts to answer." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13769 +#: guix-git/doc/guix.texi:14126 msgid "The former is obviously an important question: Before using a substitute server (@pxref{Substitutes}), one had better @emph{verify} that it provides the right binaries, and thus @emph{challenge} it. The latter is what enables the former: If package builds are deterministic, then independent builds of the package should yield the exact same result, bit for bit; if a server provides a binary different from the one obtained locally, it may be either corrupt or malicious." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13778 +#: guix-git/doc/guix.texi:14135 msgid "We know that the hash that shows up in @file{/gnu/store} file names is the hash of all the inputs of the process that built the file or directory---compilers, libraries, build scripts, etc. (@pxref{Introduction}). Assuming deterministic build processes, one store file name should map to exactly one build output. @command{guix challenge} checks whether there is, indeed, a single mapping by comparing the build outputs of several independent builds of any given store item." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13780 +#: guix-git/doc/guix.texi:14137 msgid "The command output looks like this:" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13792 +#: guix-git/doc/guix.texi:14149 #, no-wrap msgid "" "$ guix challenge --substitute-urls=\"https://@value{SUBSTITUTE-SERVER-1} https://guix.example.org\"\n" @@ -24180,7 +24789,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13799 +#: guix-git/doc/guix.texi:14156 #, no-wrap msgid "" "/gnu/store/@dots{}-git-2.5.0 contents differ:\n" @@ -24193,7 +24802,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13806 +#: guix-git/doc/guix.texi:14163 #, no-wrap msgid "" "/gnu/store/@dots{}-pius-2.1.1 contents differ:\n" @@ -24206,7 +24815,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13808 +#: guix-git/doc/guix.texi:14165 #, no-wrap msgid "" "@dots{}\n" @@ -24214,7 +24823,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13813 +#: guix-git/doc/guix.texi:14170 #, no-wrap msgid "" "6,406 store items were analyzed:\n" @@ -24224,28 +24833,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13821 +#: guix-git/doc/guix.texi:14178 msgid "In this example, @command{guix challenge} first scans the store to determine the set of locally-built derivations---as opposed to store items that were downloaded from a substitute server---and then queries all the substitute servers. It then reports those store items for which the servers obtained a result different from the local build." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13822 +#: guix-git/doc/guix.texi:14179 #, no-wrap msgid "non-determinism, in package builds" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13833 +#: guix-git/doc/guix.texi:14190 msgid "As an example, @code{guix.example.org} always gets a different answer. Conversely, @code{@value{SUBSTITUTE-SERVER-1}} agrees with local builds, except in the case of Git. This might indicate that the build process of Git is non-deterministic, meaning that its output varies as a function of various things that Guix does not fully control, in spite of building packages in isolated environments (@pxref{Features}). Most common sources of non-determinism include the addition of timestamps in build results, the inclusion of random numbers, and directory listings sorted by inode number. See @uref{https://reproducible-builds.org/docs/}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13836 +#: guix-git/doc/guix.texi:14193 msgid "To find out what is wrong with this Git binary, the easiest approach is to run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13841 +#: guix-git/doc/guix.texi:14198 #, no-wrap msgid "" "guix challenge git \\\n" @@ -24254,17 +24863,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13845 +#: guix-git/doc/guix.texi:14202 msgid "This automatically invokes @command{diffoscope}, which displays detailed information about files that differ." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13848 +#: guix-git/doc/guix.texi:14205 msgid "Alternatively, we can do something along these lines (@pxref{Invoking guix archive}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13853 +#: guix-git/doc/guix.texi:14210 #, no-wrap msgid "" "$ wget -q -O - https://@value{SUBSTITUTE-SERVER-1}/nar/lzip/@dots{}-git-2.5.0 \\\n" @@ -24273,160 +24882,160 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13862 +#: guix-git/doc/guix.texi:14219 msgid "This command shows the difference between the files resulting from the local build, and the files resulting from the build on @code{@value{SUBSTITUTE-SERVER-1}} (@pxref{Overview, Comparing and Merging Files,, diffutils, Comparing and Merging Files}). The @command{diff} command works great for text files. When binary files differ, a better option is @uref{https://diffoscope.org/, Diffoscope}, a tool that helps visualize differences for all kinds of files." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13870 +#: guix-git/doc/guix.texi:14227 msgid "Once you have done that work, you can tell whether the differences are due to a non-deterministic build process or to a malicious server. We try hard to remove sources of non-determinism in packages to make it easier to verify substitutes, but of course, this is a process that involves not just Guix, but a large part of the free software community. In the meantime, @command{guix challenge} is one tool to help address the problem." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13874 +#: guix-git/doc/guix.texi:14231 msgid "If you are writing packages for Guix, you are encouraged to check whether @code{@value{SUBSTITUTE-SERVER-1}} and other substitute servers obtain the same build result as you did with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13877 +#: guix-git/doc/guix.texi:14234 #, no-wrap msgid "$ guix challenge @var{package}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13882 +#: guix-git/doc/guix.texi:14239 msgid "where @var{package} is a package specification such as @code{guile@@2.0} or @code{glibc:debug}." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13887 +#: guix-git/doc/guix.texi:14244 #, no-wrap msgid "guix challenge @var{options} [@var{packages}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13894 +#: guix-git/doc/guix.texi:14251 msgid "When a difference is found between the hash of a locally-built item and that of a server-provided substitute, or among substitutes provided by different servers, the command displays it as in the example above and its exit code is 2 (other non-zero exit codes denote other kinds of errors)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13896 +#: guix-git/doc/guix.texi:14253 msgid "The one option that matters is:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13902 +#: guix-git/doc/guix.texi:14259 msgid "Consider @var{urls} the whitespace-separated list of substitute source URLs to compare to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13903 +#: guix-git/doc/guix.texi:14260 #, no-wrap msgid "--diff=@var{mode}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13905 +#: guix-git/doc/guix.texi:14262 msgid "Upon mismatches, show differences according to @var{mode}, one of:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13907 +#: guix-git/doc/guix.texi:14264 #, no-wrap msgid "@code{simple} (the default)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13909 +#: guix-git/doc/guix.texi:14266 msgid "Show the list of files that differ." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:13910 +#: guix-git/doc/guix.texi:14267 #, no-wrap msgid "diffoscope" msgstr "" #. type: var{#1} -#: guix-git/doc/guix.texi:13911 +#: guix-git/doc/guix.texi:14268 #, no-wrap msgid "command" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13914 +#: guix-git/doc/guix.texi:14271 msgid "Invoke @uref{https://diffoscope.org/, Diffoscope}, passing it two directories whose contents do not match." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13917 +#: guix-git/doc/guix.texi:14274 msgid "When @var{command} is an absolute file name, run @var{command} instead of Diffoscope." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13920 +#: guix-git/doc/guix.texi:14277 msgid "Do not show further details about the differences." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13925 +#: guix-git/doc/guix.texi:14282 msgid "Thus, unless @option{--diff=none} is passed, @command{guix challenge} downloads the store items from the given substitute servers so that it can compare them." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13926 +#: guix-git/doc/guix.texi:14283 #, no-wrap msgid "--verbose" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13927 +#: guix-git/doc/guix.texi:14284 #, no-wrap msgid "-v" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13930 +#: guix-git/doc/guix.texi:14287 msgid "Show details about matches (identical contents) in addition to information about mismatches." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13934 +#: guix-git/doc/guix.texi:14291 #, no-wrap msgid "Invoking @command{guix copy}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13936 +#: guix-git/doc/guix.texi:14293 #, no-wrap msgid "copy, of store items, over SSH" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13937 +#: guix-git/doc/guix.texi:14294 #, no-wrap msgid "SSH, copy of store items" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13938 +#: guix-git/doc/guix.texi:14295 #, no-wrap msgid "sharing store items across machines" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13939 +#: guix-git/doc/guix.texi:14296 #, no-wrap msgid "transferring store items across machines" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13946 +#: guix-git/doc/guix.texi:14303 msgid "The @command{guix copy} command copies items from the store of one machine to that of another machine over a secure shell (SSH) connection@footnote{This command is available only when Guile-SSH was found. @xref{Requirements}, for details.}. For example, the following command copies the @code{coreutils} package, the user's profile, and all their dependencies over to @var{host}, logged in as @var{user}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13950 +#: guix-git/doc/guix.texi:14307 #, no-wrap msgid "" "guix copy --to=@var{user}@@@var{host} \\\n" @@ -24434,192 +25043,192 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13954 +#: guix-git/doc/guix.texi:14311 msgid "If some of the items to be copied are already present on @var{host}, they are not actually sent." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13957 +#: guix-git/doc/guix.texi:14314 msgid "The command below retrieves @code{libreoffice} and @code{gimp} from @var{host}, assuming they are available there:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13960 +#: guix-git/doc/guix.texi:14317 #, no-wrap msgid "guix copy --from=@var{host} libreoffice gimp\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13965 +#: guix-git/doc/guix.texi:14322 msgid "The SSH connection is established using the Guile-SSH client, which is compatible with OpenSSH: it honors @file{~/.ssh/known_hosts} and @file{~/.ssh/config}, and uses the SSH agent for authentication." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13971 +#: guix-git/doc/guix.texi:14328 msgid "The key used to sign items that are sent must be accepted by the remote machine. Likewise, the key used by the remote machine to sign items you are retrieving must be in @file{/etc/guix/acl} so it is accepted by your own daemon. @xref{Invoking guix archive}, for more information about store item authentication." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13976 +#: guix-git/doc/guix.texi:14333 #, no-wrap msgid "guix copy [--to=@var{spec}|--from=@var{spec}] @var{items}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13979 +#: guix-git/doc/guix.texi:14336 msgid "You must always specify one of the following options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13981 +#: guix-git/doc/guix.texi:14338 #, no-wrap msgid "--to=@var{spec}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13982 +#: guix-git/doc/guix.texi:14339 #, no-wrap msgid "--from=@var{spec}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13986 +#: guix-git/doc/guix.texi:14343 msgid "Specify the host to send to or receive from. @var{spec} must be an SSH spec such as @code{example.org}, @code{charlie@@example.org}, or @code{charlie@@example.org:2222}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13990 +#: guix-git/doc/guix.texi:14347 msgid "The @var{items} can be either package names, such as @code{gimp}, or store items, such as @file{/gnu/store/@dots{}-idutils-4.6}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13994 +#: guix-git/doc/guix.texi:14351 msgid "When specifying the name of a package to send, it is first built if needed, unless @option{--dry-run} was specified. Common build options are supported (@pxref{Common Build Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13997 +#: guix-git/doc/guix.texi:14354 #, no-wrap msgid "Invoking @command{guix container}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13999 +#: guix-git/doc/guix.texi:14356 #, no-wrap msgid "guix container" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:14003 +#: guix-git/doc/guix.texi:14360 msgid "As of version @value{VERSION}, this tool is experimental. The interface is subject to radical change in the future." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14010 +#: guix-git/doc/guix.texi:14367 msgid "The purpose of @command{guix container} is to manipulate processes running within an isolated environment, commonly known as a ``container'', typically created by the @command{guix shell} (@pxref{Invoking guix shell}) and @command{guix system container} (@pxref{Invoking guix system}) commands." msgstr "" #. type: example -#: guix-git/doc/guix.texi:14015 +#: guix-git/doc/guix.texi:14372 #, no-wrap msgid "guix container @var{action} @var{options}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14019 +#: guix-git/doc/guix.texi:14376 msgid "@var{action} specifies the operation to perform with a container, and @var{options} specifies the context-specific arguments for the action." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14021 +#: guix-git/doc/guix.texi:14378 msgid "The following actions are available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14023 +#: guix-git/doc/guix.texi:14380 #, no-wrap msgid "exec" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14025 +#: guix-git/doc/guix.texi:14382 msgid "Execute a command within the context of a running container." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14027 +#: guix-git/doc/guix.texi:14384 msgid "The syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14030 +#: guix-git/doc/guix.texi:14387 #, no-wrap msgid "guix container exec @var{pid} @var{program} @var{arguments}@dots{}\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14036 +#: guix-git/doc/guix.texi:14393 msgid "@var{pid} specifies the process ID of the running container. @var{program} specifies an executable file name within the root file system of the container. @var{arguments} are the additional options that will be passed to @var{program}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14040 +#: guix-git/doc/guix.texi:14397 msgid "The following command launches an interactive login shell inside a Guix system container, started by @command{guix system container}, and whose process ID is 9001:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14043 +#: guix-git/doc/guix.texi:14400 #, no-wrap msgid "guix container exec 9001 /run/current-system/profile/bin/bash --login\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14047 +#: guix-git/doc/guix.texi:14404 msgid "Note that the @var{pid} cannot be the parent process of a container. It must be PID 1 of the container or one of its child processes." msgstr "" #. type: section -#: guix-git/doc/guix.texi:14051 +#: guix-git/doc/guix.texi:14408 #, no-wrap msgid "Invoking @command{guix weather}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14060 +#: guix-git/doc/guix.texi:14417 msgid "Occasionally you're grumpy because substitutes are lacking and you end up building packages by yourself (@pxref{Substitutes}). The @command{guix weather} command reports on substitute availability on the specified servers so you can have an idea of whether you'll be grumpy today. It can sometimes be useful info as a user, but it is primarily useful to people running @command{guix publish} (@pxref{Invoking guix publish})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14061 +#: guix-git/doc/guix.texi:14418 #, no-wrap msgid "statistics, for substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14062 +#: guix-git/doc/guix.texi:14419 #, no-wrap msgid "availability of substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14063 +#: guix-git/doc/guix.texi:14420 #, no-wrap msgid "substitute availability" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14064 +#: guix-git/doc/guix.texi:14421 #, no-wrap msgid "weather, substitute availability" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14066 +#: guix-git/doc/guix.texi:14423 msgid "Here's a sample run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14078 +#: guix-git/doc/guix.texi:14435 #, no-wrap msgid "" "$ guix weather --substitute-urls=https://guix.example.org\n" @@ -24636,7 +25245,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14088 +#: guix-git/doc/guix.texi:14445 #, no-wrap msgid "" " 9.8% (342 out of 3,470) of the missing items are queued\n" @@ -24651,76 +25260,71 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14090 +#: guix-git/doc/guix.texi:14447 #, no-wrap msgid "continuous integration, statistics" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14101 +#: guix-git/doc/guix.texi:14458 msgid "As you can see, it reports the fraction of all the packages for which substitutes are available on the server---regardless of whether substitutes are enabled, and regardless of whether this server's signing key is authorized. It also reports the size of the compressed archives (``nars'') provided by the server, the size the corresponding store items occupy in the store (assuming deduplication is turned off), and the server's throughput. The second part gives continuous integration (CI) statistics, if the server supports it. In addition, using the @option{--coverage} option, @command{guix weather} can list ``important'' package substitutes missing on the server (see below)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14107 +#: guix-git/doc/guix.texi:14464 msgid "To achieve that, @command{guix weather} queries over HTTP(S) meta-data (@dfn{narinfos}) for all the relevant store items. Like @command{guix challenge}, it ignores signatures on those substitutes, which is innocuous since the command only gathers statistics and cannot install those substitutes." msgstr "" #. type: example -#: guix-git/doc/guix.texi:14112 +#: guix-git/doc/guix.texi:14469 #, no-wrap msgid "guix weather @var{options}@dots{} [@var{packages}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14120 +#: guix-git/doc/guix.texi:14477 msgid "When @var{packages} is omitted, @command{guix weather} checks the availability of substitutes for @emph{all} the packages, or for those specified with @option{--manifest}; otherwise it only considers the specified packages. It is also possible to query specific system types with @option{--system}. @command{guix weather} exits with a non-zero code when the fraction of available substitutes is below 100%." msgstr "" -#. type: Plain text -#: guix-git/doc/guix.texi:14122 -msgid "The available options are listed below." -msgstr "" - #. type: table -#: guix-git/doc/guix.texi:14128 +#: guix-git/doc/guix.texi:14485 msgid "@var{urls} is the space-separated list of substitute server URLs to query. When this option is omitted, the default set of substitute servers is queried." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14134 +#: guix-git/doc/guix.texi:14491 msgid "Query substitutes for @var{system}---e.g., @code{aarch64-linux}. This option can be repeated, in which case @command{guix weather} will query substitutes for several system types." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14140 +#: guix-git/doc/guix.texi:14497 msgid "Instead of querying substitutes for all the packages, only ask for those specified in @var{file}. @var{file} must contain a @dfn{manifest}, as with the @code{-m} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14143 +#: guix-git/doc/guix.texi:14500 msgid "This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14144 +#: guix-git/doc/guix.texi:14501 #, no-wrap msgid "--coverage[=@var{count}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:14145 +#: guix-git/doc/guix.texi:14502 #, no-wrap msgid "-c [@var{count}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14151 +#: guix-git/doc/guix.texi:14508 msgid "Report on substitute coverage for packages: list packages with at least @var{count} dependents (zero by default) for which substitutes are unavailable. Dependent packages themselves are not listed: if @var{b} depends on @var{a} and @var{a} has no substitutes, only @var{a} is listed, even though @var{b} usually lacks substitutes as well. The result looks like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14165 +#: guix-git/doc/guix.texi:14522 #, no-wrap msgid "" "$ guix weather --substitute-urls=@value{SUBSTITUTE-URLS} -c 10\n" @@ -24738,39 +25342,39 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14171 +#: guix-git/doc/guix.texi:14528 msgid "What this example shows is that @code{kcoreaddons} and presumably the 58 packages that depend on it have no substitutes at @code{@value{SUBSTITUTE-SERVER-1}}; likewise for @code{qgpgme} and the 46 packages that depend on it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14175 +#: guix-git/doc/guix.texi:14532 msgid "If you are a Guix developer, or if you are taking care of this build farm, you'll probably want to have a closer look at these packages: they may simply fail to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14176 +#: guix-git/doc/guix.texi:14533 #, no-wrap msgid "--display-missing" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14178 +#: guix-git/doc/guix.texi:14535 msgid "Display the list of store items for which substitutes are missing." msgstr "" #. type: section -#: guix-git/doc/guix.texi:14181 +#: guix-git/doc/guix.texi:14538 #, no-wrap msgid "Invoking @command{guix processes}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14189 +#: guix-git/doc/guix.texi:14546 msgid "The @command{guix processes} command can be useful to developers and system administrators, especially on multi-user machines and on build farms: it lists the current sessions (connections to the daemon), as well as information about the processes involved@footnote{Remote sessions, when @command{guix-daemon} is started with @option{--listen} specifying a TCP endpoint, are @emph{not} listed.}. Here's an example of the information it returns:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14195 +#: guix-git/doc/guix.texi:14552 #, no-wrap msgid "" "$ sudo guix processes\n" @@ -24781,7 +25385,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14199 +#: guix-git/doc/guix.texi:14556 #, no-wrap msgid "" "SessionPID: 19402\n" @@ -24791,7 +25395,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14212 +#: guix-git/doc/guix.texi:14569 #, no-wrap msgid "" "SessionPID: 19444\n" @@ -24809,22 +25413,22 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14219 +#: guix-git/doc/guix.texi:14576 msgid "In this example we see that @command{guix-daemon} has three clients: @command{guix environment}, @command{guix publish}, and the Cuirass continuous integration tool; their process identifier (PID) is given by the @code{ClientPID} field. The @code{SessionPID} field gives the PID of the @command{guix-daemon} sub-process of this particular session." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14226 +#: guix-git/doc/guix.texi:14583 msgid "The @code{LockHeld} fields show which store items are currently locked by this session, which corresponds to store items being built or substituted (the @code{LockHeld} field is not displayed when @command{guix processes} is not running as root). Last, by looking at the @code{ChildPID} and @code{ChildCommand} fields, we understand that these three builds are being offloaded (@pxref{Daemon Offload Setup})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14231 +#: guix-git/doc/guix.texi:14588 msgid "The output is in Recutils format so we can use the handy @command{recsel} command to select sessions of interest (@pxref{Selection Expressions,,, recutils, GNU recutils manual}). As an example, the command shows the command line and PID of the client that triggered the build of a Perl package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14237 +#: guix-git/doc/guix.texi:14594 #, no-wrap msgid "" "$ sudo guix processes | \\\n" @@ -24834,28 +25438,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14240 +#: guix-git/doc/guix.texi:14597 msgid "Additional options are listed below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14250 +#: guix-git/doc/guix.texi:14607 msgid "The default option. It outputs a set of Session recutils records that include each @code{ChildProcess} as a field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14251 +#: guix-git/doc/guix.texi:14608 #, no-wrap msgid "normalized" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14258 +#: guix-git/doc/guix.texi:14615 msgid "Normalize the output records into record sets (@pxref{Record Sets,,, recutils, GNU recutils manual}). Normalizing into record sets allows joins across record types. The example below lists the PID of each @code{ChildProcess} and the associated PID for @code{Session} that spawned the @code{ChildProcess} where the @code{Session} was started using @command{guix build}." msgstr "" #. type: example -#: guix-git/doc/guix.texi:14268 +#: guix-git/doc/guix.texi:14625 #, no-wrap msgid "" "$ guix processes --format=normalized | \\\n" @@ -24870,7 +25474,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14271 +#: guix-git/doc/guix.texi:14628 #, no-wrap msgid "" "PID: 4554\n" @@ -24879,7 +25483,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14274 +#: guix-git/doc/guix.texi:14631 #, no-wrap msgid "" "PID: 4646\n" @@ -24887,90 +25491,90 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14281 +#: guix-git/doc/guix.texi:14638 #, no-wrap msgid "system configuration" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14287 +#: guix-git/doc/guix.texi:14644 msgid "Guix System supports a consistent whole-system configuration mechanism. By that we mean that all aspects of the global system configuration---such as the available system services, timezone and locale settings, user accounts---are declared in a single place. Such a @dfn{system configuration} can be @dfn{instantiated}---i.e., effected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14297 +#: guix-git/doc/guix.texi:14654 msgid "One of the advantages of putting all the system configuration under the control of Guix is that it supports transactional system upgrades, and makes it possible to roll back to a previous system instantiation, should something go wrong with the new one (@pxref{Features}). Another advantage is that it makes it easy to replicate the exact same configuration across different machines, or at different points in time, without having to resort to additional administration tools layered on top of the own tools of the system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14302 +#: guix-git/doc/guix.texi:14659 msgid "This section describes this mechanism. First we focus on the system administrator's viewpoint---explaining how the system is configured and instantiated. Then we show how this mechanism can be extended, for instance to support new system services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14332 +#: guix-git/doc/guix.texi:14689 msgid "The operating system is configured by providing an @code{operating-system} declaration in a file that can then be passed to the @command{guix system} command (@pxref{Invoking guix system}). A simple setup, with the default system services, the default Linux-Libre kernel, initial RAM disk, and boot loader looks like this:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14333 guix-git/doc/guix.texi:35553 +#: guix-git/doc/guix.texi:14690 guix-git/doc/guix.texi:36033 #, no-wrap msgid "operating-system" msgstr "" #. type: include -#: guix-git/doc/guix.texi:14335 +#: guix-git/doc/guix.texi:14692 #, no-wrap msgid "os-config-bare-bones.texi" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14342 +#: guix-git/doc/guix.texi:14699 msgid "This example should be self-describing. Some of the fields defined above, such as @code{host-name} and @code{bootloader}, are mandatory. Others, such as @code{packages} and @code{services}, can be omitted, in which case they get a default value." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14347 +#: guix-git/doc/guix.texi:14704 msgid "Below we discuss the effect of some of the most important fields (@pxref{operating-system Reference}, for details about all the available fields), and how to @dfn{instantiate} the operating system using @command{guix system}." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14348 +#: guix-git/doc/guix.texi:14705 #, no-wrap msgid "Bootloader" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14350 +#: guix-git/doc/guix.texi:14707 #, no-wrap msgid "legacy boot, on Intel machines" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14351 +#: guix-git/doc/guix.texi:14708 #, no-wrap msgid "BIOS boot, on Intel machines" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14352 +#: guix-git/doc/guix.texi:14709 #, no-wrap msgid "UEFI boot" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14353 +#: guix-git/doc/guix.texi:14710 #, no-wrap msgid "EFI boot" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14359 +#: guix-git/doc/guix.texi:14716 msgid "The @code{bootloader} field describes the method that will be used to boot your system. Machines based on Intel processors can boot in ``legacy'' BIOS mode, as in the example above. However, more recent machines rely instead on the @dfn{Unified Extensible Firmware Interface} (UEFI) to boot. In that case, the @code{bootloader} field should contain something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14364 +#: guix-git/doc/guix.texi:14721 #, no-wrap msgid "" "(bootloader-configuration\n" @@ -24979,29 +25583,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14368 +#: guix-git/doc/guix.texi:14725 msgid "@xref{Bootloader Configuration}, for more information on the available configuration options." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14369 +#: guix-git/doc/guix.texi:14726 #, no-wrap msgid "Globally-Visible Packages" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:14371 +#: guix-git/doc/guix.texi:14728 #, no-wrap msgid "%base-packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14384 +#: guix-git/doc/guix.texi:14741 msgid "The @code{packages} field lists packages that will be globally visible on the system, for all user accounts---i.e., in every user's @env{PATH} environment variable---in addition to the per-user profiles (@pxref{Invoking guix package}). The @code{%base-packages} variable provides all the tools one would expect for basic user and administrator tasks---including the GNU Core Utilities, the GNU Networking Utilities, the @command{mg} lightweight text editor, @command{find}, @command{grep}, etc. The example above adds GNU@tie{}Screen to those, taken from the @code{(gnu packages screen)} module (@pxref{Package Modules}). The @code{(list package output)} syntax can be used to add a specific output of a package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14388 +#: guix-git/doc/guix.texi:14745 #, no-wrap msgid "" "(use-modules (gnu packages))\n" @@ -25010,7 +25614,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14393 +#: guix-git/doc/guix.texi:14750 #, no-wrap msgid "" "(operating-system\n" @@ -25020,18 +25624,18 @@ msgid "" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:14395 +#: guix-git/doc/guix.texi:14752 #, no-wrap msgid "specification->package" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14404 +#: guix-git/doc/guix.texi:14761 msgid "Referring to packages by variable name, like @code{isc-bind} above, has the advantage of being unambiguous; it also allows typos and such to be diagnosed right away as ``unbound variables''. The downside is that one needs to know which module defines which package, and to augment the @code{use-package-modules} line accordingly. To avoid that, one can use the @code{specification->package} procedure of the @code{(gnu packages)} module, which returns the best package for a given name or name and version:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14407 +#: guix-git/doc/guix.texi:14764 #, no-wrap msgid "" "(use-modules (gnu packages))\n" @@ -25039,7 +25643,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14413 +#: guix-git/doc/guix.texi:14770 #, no-wrap msgid "" "(operating-system\n" @@ -25050,58 +25654,58 @@ msgid "" msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14415 +#: guix-git/doc/guix.texi:14772 #, no-wrap msgid "System Services" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14417 guix-git/doc/guix.texi:34307 -#: guix-git/doc/guix.texi:35783 +#: guix-git/doc/guix.texi:14774 guix-git/doc/guix.texi:34746 +#: guix-git/doc/guix.texi:36273 #, no-wrap msgid "services" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:14418 +#: guix-git/doc/guix.texi:14775 #, no-wrap msgid "%base-services" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14428 +#: guix-git/doc/guix.texi:14785 msgid "The @code{services} field lists @dfn{system services} to be made available when the system starts (@pxref{Services}). The @code{operating-system} declaration above specifies that, in addition to the basic services, we want the OpenSSH secure shell daemon listening on port 2222 (@pxref{Networking Services, @code{openssh-service-type}}). Under the hood, @code{openssh-service-type} arranges so that @command{sshd} is started with the right command-line options, possibly with supporting configuration files generated as needed (@pxref{Defining Services})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14429 +#: guix-git/doc/guix.texi:14786 #, no-wrap msgid "customization, of services" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:14430 +#: guix-git/doc/guix.texi:14787 #, no-wrap msgid "modify-services" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14434 +#: guix-git/doc/guix.texi:14791 msgid "Occasionally, instead of using the base services as is, you will want to customize them. To do this, use @code{modify-services} (@pxref{Service Reference, @code{modify-services}}) to modify the list." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:14440 +#: guix-git/doc/guix.texi:14797 msgid "auto-login to TTY" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14440 +#: guix-git/doc/guix.texi:14797 msgid "For example, suppose you want to modify @code{guix-daemon} and Mingetty (the console log-in) in the @code{%base-services} list (@pxref{Base Services, @code{%base-services}}). To do that, you can write the following in your operating system declaration:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14457 +#: guix-git/doc/guix.texi:14814 #, no-wrap msgid "" "(define %my-services\n" @@ -25117,13 +25721,13 @@ msgid "" " (mingetty-service-type config =>\n" " (mingetty-configuration\n" " (inherit config)\n" -" ;; Automatially log in as \"guest\".\n" +" ;; Automatically log in as \"guest\".\n" " (auto-login \"guest\")))))\n" "\n" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14461 +#: guix-git/doc/guix.texi:14818 #, no-wrap msgid "" "(operating-system\n" @@ -25132,49 +25736,49 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14474 +#: guix-git/doc/guix.texi:14831 msgid "This changes the configuration---i.e., the service parameters---of the @code{guix-service-type} instance, and that of all the @code{mingetty-service-type} instances in the @code{%base-services} list (@pxref{Auto-Login to a Specific TTY, see the cookbook for how to auto-login one user to a specific TTY,, guix-cookbook, GNU Guix Cookbook})). Observe how this is accomplished: first, we arrange for the original configuration to be bound to the identifier @code{config} in the @var{body}, and then we write the @var{body} so that it evaluates to the desired configuration. In particular, notice how we use @code{inherit} to create a new configuration which has the same values as the old configuration, but with a few modifications." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14481 +#: guix-git/doc/guix.texi:14838 msgid "The configuration for a typical ``desktop'' usage, with an encrypted root partition, a swap file on the root partition, the X11 display server, GNOME and Xfce (users can choose which of these desktop environments to use at the log-in screen by pressing @kbd{F1}), network management, power management, and more, would look like this:" msgstr "" #. type: include -#: guix-git/doc/guix.texi:14483 +#: guix-git/doc/guix.texi:14840 #, no-wrap msgid "os-config-desktop.texi" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14488 +#: guix-git/doc/guix.texi:14845 msgid "A graphical system with a choice of lightweight window managers instead of full-blown desktop environments would look like this:" msgstr "" #. type: include -#: guix-git/doc/guix.texi:14490 +#: guix-git/doc/guix.texi:14847 #, no-wrap msgid "os-config-lightweight-desktop.texi" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14496 +#: guix-git/doc/guix.texi:14853 msgid "This example refers to the @file{/boot/efi} file system by its UUID, @code{1234-ABCD}. Replace this UUID with the right UUID on your system, as returned by the @command{blkid} command." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14500 +#: guix-git/doc/guix.texi:14857 msgid "@xref{Desktop Services}, for the exact list of services provided by @code{%desktop-services}. @xref{X.509 Certificates}, for background information about the @code{nss-certs} package that is used here." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14507 +#: guix-git/doc/guix.texi:14864 msgid "Again, @code{%desktop-services} is just a list of service objects. If you want to remove services from there, you can do so using the procedures for list filtering (@pxref{SRFI-1 Filtering and Partitioning,,, guile, GNU Guile Reference Manual}). For instance, the following expression returns a list that contains all the services in @code{%desktop-services} minus the Avahi service:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14512 +#: guix-git/doc/guix.texi:14869 #, no-wrap msgid "" "(remove (lambda (service)\n" @@ -25183,12 +25787,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14515 +#: guix-git/doc/guix.texi:14872 msgid "Alternatively, the @code{modify-services} macro can be used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14519 +#: guix-git/doc/guix.texi:14876 #, no-wrap msgid "" "(modify-services %desktop-services\n" @@ -25196,356 +25800,356 @@ msgid "" msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14522 +#: guix-git/doc/guix.texi:14879 #, no-wrap msgid "Instantiating the System" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14529 +#: guix-git/doc/guix.texi:14886 msgid "Assuming the @code{operating-system} declaration is stored in the @file{my-system-config.scm} file, the @command{guix system reconfigure my-system-config.scm} command instantiates that configuration, and makes it the default GRUB boot entry (@pxref{Invoking guix system})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14537 +#: guix-git/doc/guix.texi:14894 msgid "The normal way to change the system configuration is by updating this file and re-running @command{guix system reconfigure}. One should never have to touch files in @file{/etc} or to run commands that modify the system state such as @command{useradd} or @command{grub-install}. In fact, you must avoid that since that would not only void your warranty but also prevent you from rolling back to previous versions of your system, should you ever need to." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14538 +#: guix-git/doc/guix.texi:14895 #, no-wrap msgid "roll-back, of the operating system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14548 +#: guix-git/doc/guix.texi:14905 msgid "Speaking of roll-back, each time you run @command{guix system reconfigure}, a new @dfn{generation} of the system is created---without modifying or deleting previous generations. Old system generations get an entry in the bootloader boot menu, allowing you to boot them in case something went wrong with the latest generation. Reassuring, no? The @command{guix system list-generations} command lists the system generations available on disk. It is also possible to roll back the system via the commands @command{guix system roll-back} and @command{guix system switch-generation}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14554 +#: guix-git/doc/guix.texi:14911 msgid "Although the @command{guix system reconfigure} command will not modify previous generations, you must take care when the current generation is not the latest (e.g., after invoking @command{guix system roll-back}), since the operation might overwrite a later generation (@pxref{Invoking guix system})." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14555 +#: guix-git/doc/guix.texi:14912 #, no-wrap msgid "The Programming Interface" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14560 +#: guix-git/doc/guix.texi:14917 msgid "At the Scheme level, the bulk of an @code{operating-system} declaration is instantiated with the following monadic procedure (@pxref{The Store Monad}):" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14561 +#: guix-git/doc/guix.texi:14918 #, no-wrap msgid "{Monadic Procedure} operating-system-derivation os" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14564 +#: guix-git/doc/guix.texi:14921 msgid "Return a derivation that builds @var{os}, an @code{operating-system} object (@pxref{Derivations})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14568 +#: guix-git/doc/guix.texi:14925 msgid "The output of the derivation is a single directory that refers to all the packages, configuration files, and other supporting files needed to instantiate @var{os}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14573 +#: guix-git/doc/guix.texi:14930 msgid "This procedure is provided by the @code{(gnu system)} module. Along with @code{(gnu services)} (@pxref{Services}), this module contains the guts of Guix System. Make sure to visit it!" msgstr "" #. type: section -#: guix-git/doc/guix.texi:14576 +#: guix-git/doc/guix.texi:14933 #, no-wrap msgid "@code{operating-system} Reference" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14581 +#: guix-git/doc/guix.texi:14938 msgid "This section summarizes all the options available in @code{operating-system} declarations (@pxref{Using the Configuration System})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14582 +#: guix-git/doc/guix.texi:14939 #, no-wrap msgid "{Data Type} operating-system" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14586 +#: guix-git/doc/guix.texi:14943 msgid "This is the data type representing an operating system configuration. By that, we mean all the global system configuration, not per-user configuration (@pxref{Using the Configuration System})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14588 +#: guix-git/doc/guix.texi:14945 #, no-wrap msgid "@code{kernel} (default: @code{linux-libre})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14593 +#: guix-git/doc/guix.texi:14950 msgid "The package object of the operating system kernel to use@footnote{Currently only the Linux-libre kernel is fully supported. Using GNU@tie{}mach with the GNU@tie{}Hurd is experimental and only available when building a virtual machine disk image.}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14594 guix-git/doc/guix.texi:30733 +#: guix-git/doc/guix.texi:14951 guix-git/doc/guix.texi:31098 #, no-wrap msgid "hurd" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14595 +#: guix-git/doc/guix.texi:14952 #, no-wrap msgid "@code{hurd} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14600 +#: guix-git/doc/guix.texi:14957 msgid "The package object of the Hurd to be started by the kernel. When this field is set, produce a GNU/Hurd operating system. In that case, @code{kernel} must also be set to the @code{gnumach} package---the microkernel the Hurd runs on." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:14603 +#: guix-git/doc/guix.texi:14960 msgid "This feature is experimental and only supported for disk images." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14605 +#: guix-git/doc/guix.texi:14962 #, no-wrap msgid "@code{kernel-loadable-modules} (default: '())" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14608 +#: guix-git/doc/guix.texi:14965 msgid "A list of objects (usually packages) to collect loadable kernel modules from--e.g. @code{(list ddcci-driver-linux)}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14609 +#: guix-git/doc/guix.texi:14966 #, no-wrap msgid "@code{kernel-arguments} (default: @code{%default-kernel-arguments})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14612 +#: guix-git/doc/guix.texi:14969 msgid "List of strings or gexps representing additional arguments to pass on the command-line of the kernel---e.g., @code{(\"console=ttyS0\")}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14613 guix-git/doc/guix.texi:34539 -#: guix-git/doc/guix.texi:34558 +#: guix-git/doc/guix.texi:14970 guix-git/doc/guix.texi:34978 +#: guix-git/doc/guix.texi:34997 #, no-wrap msgid "bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14615 +#: guix-git/doc/guix.texi:14972 msgid "The system bootloader configuration object. @xref{Bootloader Configuration}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14616 guix-git/doc/guix.texi:34732 +#: guix-git/doc/guix.texi:14973 guix-git/doc/guix.texi:35171 #, no-wrap msgid "label" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14619 +#: guix-git/doc/guix.texi:14976 msgid "This is the label (a string) as it appears in the bootloader's menu entry. The default label includes the kernel name and version." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14620 guix-git/doc/guix.texi:16318 -#: guix-git/doc/guix.texi:19503 guix-git/doc/guix.texi:34662 +#: guix-git/doc/guix.texi:14977 guix-git/doc/guix.texi:16675 +#: guix-git/doc/guix.texi:19865 guix-git/doc/guix.texi:35101 #, no-wrap msgid "@code{keyboard-layout} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14625 +#: guix-git/doc/guix.texi:14982 msgid "This field specifies the keyboard layout to use in the console. It can be either @code{#f}, in which case the default keyboard layout is used (usually US English), or a @code{} record. @xref{Keyboard Layout}, for more information." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14630 +#: guix-git/doc/guix.texi:14987 msgid "This keyboard layout is in effect as soon as the kernel has booted. For instance, it is the keyboard layout in effect when you type a passphrase if your root file system is on a @code{luks-device-mapping} mapped device (@pxref{Mapped Devices})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:14637 +#: guix-git/doc/guix.texi:14994 msgid "This does @emph{not} specify the keyboard layout used by the bootloader, nor that used by the graphical display server. @xref{Bootloader Configuration}, for information on how to specify the bootloader's keyboard layout. @xref{X Window}, for information on how to specify the keyboard layout used by the X Window System." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14639 +#: guix-git/doc/guix.texi:14996 #, no-wrap msgid "@code{initrd-modules} (default: @code{%base-initrd-modules})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14640 guix-git/doc/guix.texi:34344 -#: guix-git/doc/guix.texi:34467 +#: guix-git/doc/guix.texi:14997 guix-git/doc/guix.texi:34783 +#: guix-git/doc/guix.texi:34906 #, no-wrap msgid "initrd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14641 guix-git/doc/guix.texi:34345 -#: guix-git/doc/guix.texi:34468 +#: guix-git/doc/guix.texi:14998 guix-git/doc/guix.texi:34784 +#: guix-git/doc/guix.texi:34907 #, no-wrap msgid "initial RAM disk" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14644 +#: guix-git/doc/guix.texi:15001 msgid "The list of Linux kernel modules that need to be available in the initial RAM disk. @xref{Initial RAM Disk}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14645 +#: guix-git/doc/guix.texi:15002 #, no-wrap msgid "@code{initrd} (default: @code{base-initrd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14649 +#: guix-git/doc/guix.texi:15006 msgid "A procedure that returns an initial RAM disk for the Linux kernel. This field is provided to support low-level customization and should rarely be needed for casual use. @xref{Initial RAM Disk}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14650 +#: guix-git/doc/guix.texi:15007 #, no-wrap msgid "@code{firmware} (default: @code{%base-firmware})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14651 +#: guix-git/doc/guix.texi:15008 #, no-wrap msgid "firmware" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14653 +#: guix-git/doc/guix.texi:15010 msgid "List of firmware packages loadable by the operating system kernel." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14658 +#: guix-git/doc/guix.texi:15015 msgid "The default includes firmware needed for Atheros- and Broadcom-based WiFi devices (Linux-libre modules @code{ath9k} and @code{b43-open}, respectively). @xref{Hardware Considerations}, for more info on supported hardware." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14659 guix-git/doc/guix.texi:35572 +#: guix-git/doc/guix.texi:15016 guix-git/doc/guix.texi:36052 #, no-wrap msgid "host-name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14661 +#: guix-git/doc/guix.texi:15018 msgid "The host name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14662 +#: guix-git/doc/guix.texi:15019 #, no-wrap msgid "hosts-file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14663 +#: guix-git/doc/guix.texi:15020 #, no-wrap msgid "hosts file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14668 +#: guix-git/doc/guix.texi:15025 msgid "A file-like object (@pxref{G-Expressions, file-like objects}) for use as @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). The default is a file with entries for @code{localhost} and @var{host-name}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14669 +#: guix-git/doc/guix.texi:15026 #, no-wrap msgid "@code{mapped-devices} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14671 +#: guix-git/doc/guix.texi:15028 msgid "A list of mapped devices. @xref{Mapped Devices}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14672 +#: guix-git/doc/guix.texi:15029 #, no-wrap msgid "file-systems" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14674 +#: guix-git/doc/guix.texi:15031 msgid "A list of file systems. @xref{File Systems}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14675 +#: guix-git/doc/guix.texi:15032 #, no-wrap msgid "@code{swap-devices} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14676 +#: guix-git/doc/guix.texi:15033 #, no-wrap msgid "swap devices" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14678 +#: guix-git/doc/guix.texi:15035 msgid "A list of swap spaces. @xref{Swap Space}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15036 #, no-wrap msgid "@code{users} (default: @code{%base-user-accounts})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:14680 +#: guix-git/doc/guix.texi:15037 #, no-wrap msgid "@code{groups} (default: @code{%base-groups})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14682 +#: guix-git/doc/guix.texi:15039 msgid "List of user accounts and groups. @xref{User Accounts}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14685 +#: guix-git/doc/guix.texi:15042 msgid "If the @code{users} list lacks a user account with UID@tie{}0, a ``root'' account with UID@tie{}0 is automatically added." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14686 +#: guix-git/doc/guix.texi:15043 #, no-wrap msgid "@code{skeletons} (default: @code{(default-skeletons)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14690 +#: guix-git/doc/guix.texi:15047 msgid "A list of target file name/file-like object tuples (@pxref{G-Expressions, file-like objects}). These are the skeleton files that will be added to the home directory of newly-created user accounts." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14692 +#: guix-git/doc/guix.texi:15049 msgid "For instance, a valid value may look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14698 +#: guix-git/doc/guix.texi:15055 #, no-wrap msgid "" "`((\".bashrc\" ,(plain-file \"bashrc\" \"echo Hello\\n\"))\n" @@ -25555,29 +26159,29 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14700 +#: guix-git/doc/guix.texi:15057 #, no-wrap msgid "@code{issue} (default: @code{%default-issue})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14703 +#: guix-git/doc/guix.texi:15060 msgid "A string denoting the contents of the @file{/etc/issue} file, which is displayed when users log in on a text console." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14704 +#: guix-git/doc/guix.texi:15061 #, no-wrap msgid "@code{packages} (default: @code{%base-packages})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14708 +#: guix-git/doc/guix.texi:15065 msgid "A list of packages to be installed in the global profile, which is accessible at @file{/run/current-system/profile}. Each element is either a package variable or a package/output tuple. Here's a simple example of both:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14713 +#: guix-git/doc/guix.texi:15070 #, no-wrap msgid "" "(cons* git ; the default \"out\" output\n" @@ -25586,172 +26190,172 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14718 +#: guix-git/doc/guix.texi:15075 msgid "The default set includes core utilities and it is good practice to install non-core utilities in user profiles (@pxref{Invoking guix package})." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14719 +#: guix-git/doc/guix.texi:15076 #, no-wrap msgid "timezone" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14721 +#: guix-git/doc/guix.texi:15078 msgid "A timezone identifying string---e.g., @code{\"Europe/Paris\"}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14725 +#: guix-git/doc/guix.texi:15082 msgid "You can run the @command{tzselect} command to find out which timezone string corresponds to your region. Choosing an invalid timezone name causes @command{guix system} to fail." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14726 guix-git/doc/guix.texi:21115 +#: guix-git/doc/guix.texi:15083 guix-git/doc/guix.texi:21477 #, no-wrap msgid "@code{locale} (default: @code{\"en_US.utf8\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14729 +#: guix-git/doc/guix.texi:15086 msgid "The name of the default locale (@pxref{Locale Names,,, libc, The GNU C Library Reference Manual}). @xref{Locales}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14730 +#: guix-git/doc/guix.texi:15087 #, no-wrap msgid "@code{locale-definitions} (default: @code{%default-locale-definitions})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14733 +#: guix-git/doc/guix.texi:15090 msgid "The list of locale definitions to be compiled and that may be used at run time. @xref{Locales}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14734 +#: guix-git/doc/guix.texi:15091 #, no-wrap msgid "@code{locale-libcs} (default: @code{(list @var{glibc})})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14738 +#: guix-git/doc/guix.texi:15095 msgid "The list of GNU@tie{}libc packages whose locale data and tools are used to build the locale definitions. @xref{Locales}, for compatibility considerations that justify this option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14739 +#: guix-git/doc/guix.texi:15096 #, no-wrap msgid "@code{name-service-switch} (default: @code{%default-nss})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14743 +#: guix-git/doc/guix.texi:15100 msgid "Configuration of the libc name service switch (NSS)---a @code{} object. @xref{Name Service Switch}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14744 +#: guix-git/doc/guix.texi:15101 #, no-wrap msgid "@code{services} (default: @code{%base-services})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14746 +#: guix-git/doc/guix.texi:15103 msgid "A list of service objects denoting system services. @xref{Services}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14747 +#: guix-git/doc/guix.texi:15104 #, no-wrap msgid "essential services" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14748 +#: guix-git/doc/guix.texi:15105 #, no-wrap msgid "@code{essential-services} (default: ...)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14753 +#: guix-git/doc/guix.texi:15110 msgid "The list of ``essential services''---i.e., things like instances of @code{system-service-type} and @code{host-name-service-type} (@pxref{Service Reference}), which are derived from the operating system definition itself. As a user you should @emph{never} need to touch this field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14754 +#: guix-git/doc/guix.texi:15111 #, no-wrap msgid "@code{pam-services} (default: @code{(base-pam-services)})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14755 +#: guix-git/doc/guix.texi:15112 #, no-wrap msgid "PAM" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14756 +#: guix-git/doc/guix.texi:15113 #, no-wrap msgid "pluggable authentication modules" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14759 +#: guix-git/doc/guix.texi:15116 msgid "Linux @dfn{pluggable authentication module} (PAM) services." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14760 +#: guix-git/doc/guix.texi:15117 #, no-wrap msgid "@code{setuid-programs} (default: @code{%setuid-programs})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14763 +#: guix-git/doc/guix.texi:15120 msgid "List of @code{}. @xref{Setuid Programs}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14764 +#: guix-git/doc/guix.texi:15121 #, no-wrap msgid "@code{sudoers-file} (default: @code{%sudoers-specification})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14765 +#: guix-git/doc/guix.texi:15122 #, no-wrap msgid "sudoers file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14768 +#: guix-git/doc/guix.texi:15125 msgid "The contents of the @file{/etc/sudoers} file as a file-like object (@pxref{G-Expressions, @code{local-file} and @code{plain-file}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14773 +#: guix-git/doc/guix.texi:15130 msgid "This file specifies which users can use the @command{sudo} command, what they are allowed to do, and what privileges they may gain. The default is that only @code{root} and members of the @code{wheel} group may use @code{sudo}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14776 +#: guix-git/doc/guix.texi:15133 #, no-wrap msgid "{Scheme Syntax} this-operating-system" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14779 +#: guix-git/doc/guix.texi:15136 msgid "When used in the @emph{lexical scope} of an operating system field definition, this identifier resolves to the operating system being defined." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14782 +#: guix-git/doc/guix.texi:15139 msgid "The example below shows how to refer to the operating system being defined in the definition of the @code{label} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14785 guix-git/doc/guix.texi:18711 +#: guix-git/doc/guix.texi:15142 guix-git/doc/guix.texi:19073 #, no-wrap msgid "" "(use-modules (gnu) (guix))\n" @@ -25759,7 +26363,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14790 +#: guix-git/doc/guix.texi:15147 #, no-wrap msgid "" "(operating-system\n" @@ -25769,17 +26373,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14794 +#: guix-git/doc/guix.texi:15151 msgid "It is an error to refer to @code{this-operating-system} outside an operating system definition." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14805 +#: guix-git/doc/guix.texi:15162 msgid "The list of file systems to be mounted is specified in the @code{file-systems} field of the operating system declaration (@pxref{Using the Configuration System}). Each file system is declared using the @code{file-system} form, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14811 +#: guix-git/doc/guix.texi:15168 #, no-wrap msgid "" "(file-system\n" @@ -25789,68 +26393,68 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14815 +#: guix-git/doc/guix.texi:15172 msgid "As usual, some of the fields are mandatory---those shown in the example above---while others can be omitted. These are described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14816 +#: guix-git/doc/guix.texi:15173 #, no-wrap msgid "{Data Type} file-system" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14819 +#: guix-git/doc/guix.texi:15176 msgid "Objects of this type represent file systems to be mounted. They contain the following members:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14821 guix-git/doc/guix.texi:15201 -#: guix-git/doc/guix.texi:17317 +#: guix-git/doc/guix.texi:15178 guix-git/doc/guix.texi:15558 +#: guix-git/doc/guix.texi:17679 #, no-wrap msgid "type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14824 +#: guix-git/doc/guix.texi:15181 msgid "This is a string specifying the type of the file system---e.g., @code{\"ext4\"}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14825 +#: guix-git/doc/guix.texi:15182 #, no-wrap msgid "mount-point" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14827 +#: guix-git/doc/guix.texi:15184 msgid "This designates the place where the file system is to be mounted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14828 guix-git/doc/guix.texi:17267 +#: guix-git/doc/guix.texi:15185 guix-git/doc/guix.texi:17629 #, no-wrap msgid "device" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14838 +#: guix-git/doc/guix.texi:15195 msgid "This names the ``source'' of the file system. It can be one of three things: a file system label, a file system UUID, or the name of a @file{/dev} node. Labels and UUIDs offer a way to refer to file systems without having to hard-code their actual device name@footnote{Note that, while it is tempting to use @file{/dev/disk/by-uuid} and similar device names to achieve the same result, this is not recommended: These special device nodes are created by the udev daemon and may be unavailable at the time the device is mounted.}." msgstr "" #. type: findex -#: guix-git/doc/guix.texi:14839 +#: guix-git/doc/guix.texi:15196 #, no-wrap msgid "file-system-label" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14844 +#: guix-git/doc/guix.texi:15201 msgid "File system labels are created using the @code{file-system-label} procedure, UUIDs are created using @code{uuid}, and @file{/dev} node are plain strings. Here's an example of a file system referred to by its label, as shown by the @command{e2label} command:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14850 +#: guix-git/doc/guix.texi:15207 #, no-wrap msgid "" "(file-system\n" @@ -25860,19 +26464,19 @@ msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14852 guix-git/doc/guix.texi:33130 -#: guix-git/doc/guix.texi:33146 +#: guix-git/doc/guix.texi:15209 guix-git/doc/guix.texi:33495 +#: guix-git/doc/guix.texi:33511 #, no-wrap msgid "uuid" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14860 +#: guix-git/doc/guix.texi:15217 msgid "UUIDs are converted from their string representation (as shown by the @command{tune2fs -l} command) using the @code{uuid} form@footnote{The @code{uuid} form expects 16-byte UUIDs as defined in @uref{https://tools.ietf.org/html/rfc4122, RFC@tie{}4122}. This is the form of UUID used by the ext2 family of file systems and others, but it is different from ``UUIDs'' found in FAT file systems, for instance.}, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14866 +#: guix-git/doc/guix.texi:15223 #, no-wrap msgid "" "(file-system\n" @@ -25882,168 +26486,168 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14874 +#: guix-git/doc/guix.texi:15231 msgid "When the source of a file system is a mapped device (@pxref{Mapped Devices}), its @code{device} field @emph{must} refer to the mapped device name---e.g., @file{\"/dev/mapper/root-partition\"}. This is required so that the system knows that mounting the file system depends on having the corresponding device mapping established." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14875 +#: guix-git/doc/guix.texi:15232 #, no-wrap msgid "@code{flags} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14885 +#: guix-git/doc/guix.texi:15242 msgid "This is a list of symbols denoting mount flags. Recognized flags include @code{read-only}, @code{bind-mount}, @code{no-dev} (disallow access to special files), @code{no-suid} (ignore setuid and setgid bits), @code{no-atime} (do not update file access times), @code{strict-atime} (update file access time), @code{lazy-time} (only update time on the in-memory version of the file inode), and @code{no-exec} (disallow program execution). @xref{Mount-Unmount-Remount,,, libc, The GNU C Library Reference Manual}, for more information on these flags." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14886 +#: guix-git/doc/guix.texi:15243 #, no-wrap msgid "@code{options} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14895 +#: guix-git/doc/guix.texi:15252 msgid "This is either @code{#f}, or a string denoting mount options passed to the file system driver. @xref{Mount-Unmount-Remount,,, libc, The GNU C Library Reference Manual}, for details and run @command{man 8 mount} for options for various file systems. Note that the @code{file-system-options->alist} and @code{alist->file-system-options} procedures from @code{(gnu system file-systems)} can be used to convert file system options given as an association list to the string representation, and vice-versa." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14896 +#: guix-git/doc/guix.texi:15253 #, no-wrap msgid "@code{mount?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14901 +#: guix-git/doc/guix.texi:15258 msgid "This value indicates whether to automatically mount the file system when the system is brought up. When set to @code{#f}, the file system gets an entry in @file{/etc/fstab} (read by the @command{mount} command) but is not automatically mounted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14902 +#: guix-git/doc/guix.texi:15259 #, no-wrap msgid "@code{needed-for-boot?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14907 +#: guix-git/doc/guix.texi:15264 msgid "This Boolean value indicates whether the file system is needed when booting. If that is true, then the file system is mounted when the initial RAM disk (initrd) is loaded. This is always the case, for instance, for the root file system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14908 +#: guix-git/doc/guix.texi:15265 #, no-wrap msgid "@code{check?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14912 +#: guix-git/doc/guix.texi:15269 msgid "This Boolean indicates whether the file system should be checked for errors before being mounted. How and when this happens can be further adjusted with the following options." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14913 +#: guix-git/doc/guix.texi:15270 #, no-wrap msgid "@code{skip-check-if-clean?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14918 +#: guix-git/doc/guix.texi:15275 msgid "When true, this Boolean indicates that a file system check triggered by @code{check?} may exit early if the file system is marked as ``clean'', meaning that it was previously correctly unmounted and should not contain errors." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14922 +#: guix-git/doc/guix.texi:15279 msgid "Setting this to false will always force a full consistency check when @code{check?} is true. This may take a very long time and is not recommended on healthy systems---in fact, it may reduce reliability!" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14926 +#: guix-git/doc/guix.texi:15283 msgid "Conversely, some primitive file systems like @code{fat} do not keep track of clean shutdowns and will perform a full scan regardless of the value of this option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14927 +#: guix-git/doc/guix.texi:15284 #, no-wrap msgid "@code{repair} (default: @code{'preen})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14930 +#: guix-git/doc/guix.texi:15287 msgid "When @code{check?} finds errors, it can (try to) repair them and continue booting. This option controls when and how to do so." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14934 +#: guix-git/doc/guix.texi:15291 msgid "If false, try not to modify the file system at all. Checking certain file systems like @code{jfs} may still write to the device to replay the journal. No repairs will be attempted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14937 +#: guix-git/doc/guix.texi:15294 msgid "If @code{#t}, try to repair any errors found and assume ``yes'' to all questions. This will fix the most errors, but may be risky." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14941 +#: guix-git/doc/guix.texi:15298 msgid "If @code{'preen}, repair only errors that are safe to fix without human interaction. What that means is left up to the developers of each file system and may be equivalent to ``none'' or ``all''." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14942 +#: guix-git/doc/guix.texi:15299 #, no-wrap msgid "@code{create-mount-point?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14944 +#: guix-git/doc/guix.texi:15301 msgid "When true, the mount point is created if it does not exist yet." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14945 +#: guix-git/doc/guix.texi:15302 #, no-wrap msgid "@code{mount-may-fail?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14950 +#: guix-git/doc/guix.texi:15307 msgid "When true, this indicates that mounting this file system can fail but that should not be considered an error. This is useful in unusual cases; an example of this is @code{efivarfs}, a file system that can only be mounted on EFI/UEFI systems." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14951 guix-git/doc/guix.texi:15347 +#: guix-git/doc/guix.texi:15308 guix-git/doc/guix.texi:15704 #, no-wrap msgid "@code{dependencies} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14955 +#: guix-git/doc/guix.texi:15312 msgid "This is a list of @code{} or @code{} objects representing file systems that must be mounted or mapped devices that must be opened before (and unmounted or closed after) this one." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14959 +#: guix-git/doc/guix.texi:15316 msgid "As an example, consider a hierarchy of mounts: @file{/sys/fs/cgroup} is a dependency of @file{/sys/fs/cgroup/cpu} and @file{/sys/fs/cgroup/memory}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14962 +#: guix-git/doc/guix.texi:15319 msgid "Another example is a file system that depends on a mapped device, for example for an encrypted partition (@pxref{Mapped Devices})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14965 +#: guix-git/doc/guix.texi:15322 #, no-wrap msgid "{Scheme Procedure} file-system-label @var{str}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14968 +#: guix-git/doc/guix.texi:15325 msgid "This procedure returns an opaque file system label from @var{str}, a string:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14972 +#: guix-git/doc/guix.texi:15329 #, no-wrap msgid "" "(file-system-label \"home\")\n" @@ -26051,104 +26655,104 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14976 +#: guix-git/doc/guix.texi:15333 msgid "File system labels are used to refer to file systems by label rather than by device name. See above for examples." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14980 +#: guix-git/doc/guix.texi:15337 msgid "The @code{(gnu system file-systems)} exports the following useful variables." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14981 +#: guix-git/doc/guix.texi:15338 #, no-wrap msgid "{Scheme Variable} %base-file-systems" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14986 +#: guix-git/doc/guix.texi:15343 msgid "These are essential file systems that are required on normal systems, such as @code{%pseudo-terminal-file-system} and @code{%immutable-store} (see below). Operating system declarations should always contain at least these." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14988 +#: guix-git/doc/guix.texi:15345 #, no-wrap msgid "{Scheme Variable} %pseudo-terminal-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14994 +#: guix-git/doc/guix.texi:15351 msgid "This is the file system to be mounted as @file{/dev/pts}. It supports @dfn{pseudo-terminals} created @i{via} @code{openpty} and similar functions (@pxref{Pseudo-Terminals,,, libc, The GNU C Library Reference Manual}). Pseudo-terminals are used by terminal emulators such as @command{xterm}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14996 +#: guix-git/doc/guix.texi:15353 #, no-wrap msgid "{Scheme Variable} %shared-memory-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15000 +#: guix-git/doc/guix.texi:15357 msgid "This file system is mounted as @file{/dev/shm} and is used to support memory sharing across processes (@pxref{Memory-mapped I/O, @code{shm_open},, libc, The GNU C Library Reference Manual})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15002 +#: guix-git/doc/guix.texi:15359 #, no-wrap msgid "{Scheme Variable} %immutable-store" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15007 +#: guix-git/doc/guix.texi:15364 msgid "This file system performs a read-only ``bind mount'' of @file{/gnu/store}, making it read-only for all the users including @code{root}. This prevents against accidental modification by software running as @code{root} or by system administrators." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15010 +#: guix-git/doc/guix.texi:15367 msgid "The daemon itself is still able to write to the store: it remounts it read-write in its own ``name space.''" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15012 +#: guix-git/doc/guix.texi:15369 #, no-wrap msgid "{Scheme Variable} %binary-format-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15016 +#: guix-git/doc/guix.texi:15373 msgid "The @code{binfmt_misc} file system, which allows handling of arbitrary executable file types to be delegated to user space. This requires the @code{binfmt.ko} kernel module to be loaded." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15018 +#: guix-git/doc/guix.texi:15375 #, no-wrap msgid "{Scheme Variable} %fuse-control-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15022 +#: guix-git/doc/guix.texi:15379 msgid "The @code{fusectl} file system, which allows unprivileged users to mount and unmount user-space FUSE file systems. This requires the @code{fuse.ko} kernel module to be loaded." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15026 +#: guix-git/doc/guix.texi:15383 msgid "The @code{(gnu system uuid)} module provides tools to deal with file system ``unique identifiers'' (UUIDs)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15027 +#: guix-git/doc/guix.texi:15384 #, no-wrap msgid "{Scheme Procedure} uuid @var{str} [@var{type}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15030 +#: guix-git/doc/guix.texi:15387 msgid "Return an opaque UUID (unique identifier) object of the given @var{type} (a symbol) by parsing @var{str} (a string):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15034 +#: guix-git/doc/guix.texi:15391 #, no-wrap msgid "" "(uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\")\n" @@ -26157,7 +26761,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15037 +#: guix-git/doc/guix.texi:15394 #, no-wrap msgid "" "(uuid \"1234-ABCD\" 'fat)\n" @@ -26165,33 +26769,33 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15041 +#: guix-git/doc/guix.texi:15398 msgid "@var{type} may be one of @code{dce}, @code{iso9660}, @code{fat}, @code{ntfs}, or one of the commonly found synonyms for these." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15044 +#: guix-git/doc/guix.texi:15401 msgid "UUIDs are another way to unambiguously refer to file systems in operating system configuration. See the examples above." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:15047 guix-git/doc/guix.texi:15048 +#: guix-git/doc/guix.texi:15404 guix-git/doc/guix.texi:15405 #, no-wrap msgid "Btrfs file system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15054 +#: guix-git/doc/guix.texi:15411 msgid "The Btrfs has special features, such as subvolumes, that merit being explained in more details. The following section attempts to cover basic as well as complex uses of a Btrfs file system with the Guix System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15057 +#: guix-git/doc/guix.texi:15414 msgid "In its simplest usage, a Btrfs file system can be described, for example, by:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15063 +#: guix-git/doc/guix.texi:15420 #, no-wrap msgid "" "(file-system\n" @@ -26201,12 +26805,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15069 +#: guix-git/doc/guix.texi:15426 msgid "The example below is more complex, as it makes use of a Btrfs subvolume, named @code{rootfs}. The parent Btrfs file system is labeled @code{my-btrfs-pool}, and is located on an encrypted device (hence the dependency on @code{mapped-devices}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15077 +#: guix-git/doc/guix.texi:15434 #, no-wrap msgid "" "(file-system\n" @@ -26218,17 +26822,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15088 +#: guix-git/doc/guix.texi:15445 msgid "Some bootloaders, for example GRUB, only mount a Btrfs partition at its top level during the early boot, and rely on their configuration to refer to the correct subvolume path within that top level. The bootloaders operating in this way typically produce their configuration on a running system where the Btrfs partitions are already mounted and where the subvolume information is readily available. As an example, @command{grub-mkconfig}, the configuration generator command shipped with GRUB, reads @file{/proc/self/mountinfo} to determine the top-level path of a subvolume." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15096 +#: guix-git/doc/guix.texi:15453 msgid "The Guix System produces a bootloader configuration using the operating system configuration as its sole input; it is therefore necessary to extract the subvolume name on which @file{/gnu/store} lives (if any) from that operating system configuration. To better illustrate, consider a subvolume named 'rootfs' which contains the root file system data. In such situation, the GRUB bootloader would only see the top level of the root Btrfs partition, e.g.:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15103 +#: guix-git/doc/guix.texi:15460 #, no-wrap msgid "" "/ (top level)\n" @@ -26239,17 +26843,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15108 +#: guix-git/doc/guix.texi:15465 msgid "Thus, the subvolume name must be prepended to the @file{/gnu/store} path of the kernel, initrd binaries and any other files referred to in the GRUB configuration that must be found during the early boot." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15111 +#: guix-git/doc/guix.texi:15468 msgid "The next example shows a nested hierarchy of subvolumes and directories:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15118 +#: guix-git/doc/guix.texi:15475 #, no-wrap msgid "" "/ (top level)\n" @@ -26260,17 +26864,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15125 +#: guix-git/doc/guix.texi:15482 msgid "This scenario would work without mounting the 'store' subvolume. Mounting 'rootfs' is sufficient, since the subvolume name matches its intended mount point in the file system hierarchy. Alternatively, the 'store' subvolume could be referred to by setting the @code{subvol} option to either @code{/rootfs/gnu/store} or @code{rootfs/gnu/store}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15127 +#: guix-git/doc/guix.texi:15484 msgid "Finally, a more contrived example of nested subvolumes:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15134 +#: guix-git/doc/guix.texi:15491 #, no-wrap msgid "" "/ (top level)\n" @@ -26281,12 +26885,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15141 +#: guix-git/doc/guix.texi:15498 msgid "Here, the 'guix-store' subvolume doesn't match its intended mount point, so it is necessary to mount it. The subvolume must be fully specified, by passing its file name to the @code{subvol} option. To illustrate, the 'guix-store' subvolume could be mounted on @file{/gnu/store} by using a file system declaration such as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15149 +#: guix-git/doc/guix.texi:15506 #, no-wrap msgid "" "(file-system\n" @@ -26298,128 +26902,128 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15154 +#: guix-git/doc/guix.texi:15511 #, no-wrap msgid "device mapping" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15155 +#: guix-git/doc/guix.texi:15512 #, no-wrap msgid "mapped devices" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15172 +#: guix-git/doc/guix.texi:15529 msgid "The Linux kernel has a notion of @dfn{device mapping}: a block device, such as a hard disk partition, can be @dfn{mapped} into another device, usually in @code{/dev/mapper/}, with additional processing over the data that flows through it@footnote{Note that the GNU@tie{}Hurd makes no difference between the concept of a ``mapped device'' and that of a file system: both boil down to @emph{translating} input/output operations made on a file to operations on its backing store. Thus, the Hurd implements mapped devices, like file systems, using the generic @dfn{translator} mechanism (@pxref{Translators,,, hurd, The GNU Hurd Reference Manual}).}. A typical example is encryption device mapping: all writes to the mapped device are encrypted, and all reads are deciphered, transparently. Guix extends this notion by considering any device or set of devices that are @dfn{transformed} in some way to create a new device; for instance, RAID devices are obtained by @dfn{assembling} several other devices, such as hard disks or partitions, into a new one that behaves as one partition." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15175 +#: guix-git/doc/guix.texi:15532 msgid "Mapped devices are declared using the @code{mapped-device} form, defined as follows; for examples, see below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15176 +#: guix-git/doc/guix.texi:15533 #, no-wrap msgid "{Data Type} mapped-device" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15179 +#: guix-git/doc/guix.texi:15536 msgid "Objects of this type represent device mappings that will be made when the system boots up." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15186 +#: guix-git/doc/guix.texi:15543 msgid "This is either a string specifying the name of the block device to be mapped, such as @code{\"/dev/sda3\"}, or a list of such strings when several devices need to be assembled for creating a new one. In case of LVM this is a string specifying name of the volume group to be mapped." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:15187 guix-git/doc/guix.texi:15342 +#: guix-git/doc/guix.texi:15544 guix-git/doc/guix.texi:15699 #, no-wrap msgid "target" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15196 +#: guix-git/doc/guix.texi:15553 msgid "This string specifies the name of the resulting mapped device. For kernel mappers such as encrypted devices of type @code{luks-device-mapping}, specifying @code{\"my-partition\"} leads to the creation of the @code{\"/dev/mapper/my-partition\"} device. For RAID devices of type @code{raid-device-mapping}, the full device name such as @code{\"/dev/md0\"} needs to be given. LVM logical volumes of type @code{lvm-device-mapping} need to be specified as @code{\"VGNAME-LVNAME\"}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:15197 guix-git/doc/guix.texi:34634 +#: guix-git/doc/guix.texi:15554 guix-git/doc/guix.texi:35073 #, no-wrap msgid "targets" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15200 +#: guix-git/doc/guix.texi:15557 msgid "This list of strings specifies names of the resulting mapped devices in case there are several. The format is identical to @var{target}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15204 +#: guix-git/doc/guix.texi:15561 msgid "This must be a @code{mapped-device-kind} object, which specifies how @var{source} is mapped to @var{target}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15207 +#: guix-git/doc/guix.texi:15564 #, no-wrap msgid "{Scheme Variable} luks-device-mapping" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15211 +#: guix-git/doc/guix.texi:15568 msgid "This defines LUKS block device encryption using the @command{cryptsetup} command from the package with the same name. It relies on the @code{dm-crypt} Linux kernel module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15213 +#: guix-git/doc/guix.texi:15570 #, no-wrap msgid "{Scheme Variable} raid-device-mapping" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15218 +#: guix-git/doc/guix.texi:15575 msgid "This defines a RAID device, which is assembled using the @code{mdadm} command from the package with the same name. It requires a Linux kernel module for the appropriate RAID level to be loaded, such as @code{raid456} for RAID-4, RAID-5 or RAID-6, or @code{raid10} for RAID-10." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15220 +#: guix-git/doc/guix.texi:15577 #, no-wrap msgid "LVM, logical volume manager" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15221 +#: guix-git/doc/guix.texi:15578 #, no-wrap msgid "{Scheme Variable} lvm-device-mapping" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15226 +#: guix-git/doc/guix.texi:15583 msgid "This defines one or more logical volumes for the Linux @uref{https://www.sourceware.org/lvm2/, Logical Volume Manager (LVM)}. The volume group is activated by the @command{vgchange} command from the @code{lvm2} package." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15228 +#: guix-git/doc/guix.texi:15585 #, no-wrap msgid "disk encryption" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15229 +#: guix-git/doc/guix.texi:15586 #, no-wrap msgid "LUKS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15237 +#: guix-git/doc/guix.texi:15594 msgid "The following example specifies a mapping from @file{/dev/sda3} to @file{/dev/mapper/home} using LUKS---the @url{https://gitlab.com/cryptsetup/cryptsetup,Linux Unified Key Setup}, a standard mechanism for disk encryption. The @file{/dev/mapper/home} device can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15243 +#: guix-git/doc/guix.texi:15600 #, no-wrap msgid "" "(mapped-device\n" @@ -26429,23 +27033,23 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15248 +#: guix-git/doc/guix.texi:15605 msgid "Alternatively, to become independent of device numbering, one may obtain the LUKS UUID (@dfn{unique identifier}) of the source device by a command like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15251 +#: guix-git/doc/guix.texi:15608 #, no-wrap msgid "cryptsetup luksUUID /dev/sda3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15254 +#: guix-git/doc/guix.texi:15611 msgid "and use it as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15260 +#: guix-git/doc/guix.texi:15617 #, no-wrap msgid "" "(mapped-device\n" @@ -26455,23 +27059,23 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15262 +#: guix-git/doc/guix.texi:15619 #, no-wrap msgid "swap encryption" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15269 +#: guix-git/doc/guix.texi:15626 msgid "It is also desirable to encrypt swap space, since swap space may contain sensitive data. One way to accomplish that is to use a swap file in a file system on a device mapped via LUKS encryption. In this way, the swap file is encrypted because the entire device is encrypted. @xref{Swap Space}, or @xref{Preparing for Installation,,Disk Partitioning}, for an example." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15272 +#: guix-git/doc/guix.texi:15629 msgid "A RAID device formed of the partitions @file{/dev/sda1} and @file{/dev/sdb1} may be declared as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15278 +#: guix-git/doc/guix.texi:15635 #, no-wrap msgid "" "(mapped-device\n" @@ -26481,17 +27085,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15285 +#: guix-git/doc/guix.texi:15642 msgid "The @file{/dev/md0} device can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems}). Note that the RAID level need not be given; it is chosen during the initial creation and formatting of the RAID device and is determined automatically later." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15288 +#: guix-git/doc/guix.texi:15645 msgid "LVM logical volumes ``alpha'' and ``beta'' from volume group ``vg0'' can be declared as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15294 +#: guix-git/doc/guix.texi:15651 #, no-wrap msgid "" "(mapped-device\n" @@ -26501,102 +27105,102 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15299 +#: guix-git/doc/guix.texi:15656 msgid "Devices @file{/dev/mapper/vg0-alpha} and @file{/dev/mapper/vg0-beta} can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15302 +#: guix-git/doc/guix.texi:15659 #, no-wrap msgid "swap space" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15312 +#: guix-git/doc/guix.texi:15669 msgid "Swap space, as it is commonly called, is a disk area specifically designated for paging: the process in charge of memory management (the Linux kernel or Hurd's default pager) can decide that some memory pages stored in RAM which belong to a running program but are unused should be stored on disk instead. It unloads those from the RAM, freeing up precious fast memory, and writes them to the swap space. If the program tries to access that very page, the memory management process loads it back into memory for the program to use." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15318 +#: guix-git/doc/guix.texi:15675 msgid "A common misconception about swap is that it is only useful when small amounts of RAM are available to the system. However, it should be noted that kernels often use all available RAM for disk access caching to make I/O faster, and thus paging out unused portions of program memory will expand the RAM available for such caching." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15322 +#: guix-git/doc/guix.texi:15679 msgid "For a more detailed description of how memory is managed from the viewpoint of a monolithic kernel, @xref{Memory Concepts,,, libc, The GNU C Library Reference Manual}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15331 +#: guix-git/doc/guix.texi:15688 msgid "The Linux kernel has support for swap partitions and swap files: the former uses a whole disk partition for paging, whereas the second uses a file on a file system for that (the file system driver needs to support it). On a comparable setup, both have the same performance, so one should consider ease of use when deciding between them. Partitions are ``simpler'' and do not need file system support, but need to be allocated at disk formatting time (logical volumes notwithstanding), whereas files can be allocated and deallocated at any time." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15336 +#: guix-git/doc/guix.texi:15693 msgid "Note that swap space is not zeroed on shutdown, so sensitive data (such as passwords) may linger on it if it was paged out. As such, you should consider having your swap reside on an encrypted device (@pxref{Mapped Devices})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15337 +#: guix-git/doc/guix.texi:15694 #, no-wrap msgid "{Data Type} swap-space" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15340 +#: guix-git/doc/guix.texi:15697 msgid "Objects of this type represent swap spaces. They contain the following members:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15346 +#: guix-git/doc/guix.texi:15703 msgid "The device or file to use, either a UUID, a @code{file-system-label} or a string, as in the definition of a @code{file-system} (@pxref{File Systems})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15353 +#: guix-git/doc/guix.texi:15710 msgid "A list of @code{file-system} or @code{mapped-device} objects, upon which the availability of the space depends. Note that just like for @code{file-system} objects, dependencies which are needed for boot and mounted in early userspace are not managed by the Shepherd, and so automatically filtered out for you." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15354 +#: guix-git/doc/guix.texi:15711 #, no-wrap msgid "@code{priority} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15361 +#: guix-git/doc/guix.texi:15718 msgid "Only supported by the Linux kernel. Either @code{#f} to disable swap priority, or an integer between 0 and 32767. The kernel will first use swap spaces of higher priority when paging, and use same priority spaces on a round-robin basis. The kernel will use swap spaces without a set priority after prioritized spaces, and in the order that they appeared in (not round-robin)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15362 +#: guix-git/doc/guix.texi:15719 #, no-wrap msgid "@code{discard?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15366 +#: guix-git/doc/guix.texi:15723 msgid "Only supported by the Linux kernel. When true, the kernel will notify the disk controller of discarded pages, for example with the TRIM operation on Solid State Drives." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15371 +#: guix-git/doc/guix.texi:15728 msgid "Here are some examples:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15374 +#: guix-git/doc/guix.texi:15731 #, no-wrap msgid "(swap-space (target (uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\")))\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15379 +#: guix-git/doc/guix.texi:15736 msgid "Use the swap partition with the given UUID@. You can learn the UUID of a Linux swap partition by running @command{swaplabel @var{device}}, where @var{device} is the @file{/dev} file name of that partition." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15384 +#: guix-git/doc/guix.texi:15741 #, no-wrap msgid "" "(swap-space\n" @@ -26605,12 +27209,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15390 +#: guix-git/doc/guix.texi:15747 msgid "Use the partition with label @code{swap}, which can be found after the @var{lvm-device} mapped device has been opened. Again, the @command{swaplabel} command allows you to view and change the label of a Linux swap partition." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15395 +#: guix-git/doc/guix.texi:15752 #, no-wrap msgid "" "(swap-space\n" @@ -26619,35 +27223,35 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15399 +#: guix-git/doc/guix.texi:15756 msgid "Use the file @file{/btrfs/swapfile} as swap space, which is present on the @var{btrfs-fs} filesystem." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15403 +#: guix-git/doc/guix.texi:15760 #, no-wrap msgid "users" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15404 +#: guix-git/doc/guix.texi:15761 #, no-wrap msgid "accounts" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15405 +#: guix-git/doc/guix.texi:15762 #, no-wrap msgid "user accounts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15409 +#: guix-git/doc/guix.texi:15766 msgid "User accounts and groups are entirely managed through the @code{operating-system} declaration. They are specified with the @code{user-account} and @code{user-group} forms:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15419 +#: guix-git/doc/guix.texi:15776 #, no-wrap msgid "" "(user-account\n" @@ -26661,12 +27265,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15423 +#: guix-git/doc/guix.texi:15780 msgid "Here's a user account that uses a different shell and a custom home directory (the default would be @file{\"/home/bob\"}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15431 +#: guix-git/doc/guix.texi:15788 #, no-wrap msgid "" "(user-account\n" @@ -26678,171 +27282,171 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15440 +#: guix-git/doc/guix.texi:15797 msgid "When booting or upon completion of @command{guix system reconfigure}, the system ensures that only the user accounts and groups specified in the @code{operating-system} declaration exist, and with the specified properties. Thus, account or group creations or modifications made by directly invoking commands such as @command{useradd} are lost upon reconfiguration or reboot. This ensures that the system remains exactly as declared." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15441 +#: guix-git/doc/guix.texi:15798 #, no-wrap msgid "{Data Type} user-account" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15444 +#: guix-git/doc/guix.texi:15801 msgid "Objects of this type represent user accounts. The following members may be specified:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15448 +#: guix-git/doc/guix.texi:15805 msgid "The name of the user account." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:15449 guix-git/doc/guix.texi:34298 +#: guix-git/doc/guix.texi:15806 guix-git/doc/guix.texi:34737 #, no-wrap msgid "group" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15450 guix-git/doc/guix.texi:15534 +#: guix-git/doc/guix.texi:15807 guix-git/doc/guix.texi:15891 #, no-wrap msgid "groups" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15453 +#: guix-git/doc/guix.texi:15810 msgid "This is the name (a string) or identifier (a number) of the user group this account belongs to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15454 +#: guix-git/doc/guix.texi:15811 #, no-wrap msgid "@code{supplementary-groups} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15457 +#: guix-git/doc/guix.texi:15814 msgid "Optionally, this can be defined as a list of group names that this account belongs to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15458 +#: guix-git/doc/guix.texi:15815 #, no-wrap msgid "@code{uid} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15462 +#: guix-git/doc/guix.texi:15819 msgid "This is the user ID for this account (a number), or @code{#f}. In the latter case, a number is automatically chosen by the system when the account is created." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15463 guix-git/doc/guix.texi:18217 +#: guix-git/doc/guix.texi:15820 guix-git/doc/guix.texi:18579 #, no-wrap msgid "@code{comment} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15465 +#: guix-git/doc/guix.texi:15822 msgid "A comment about the account, such as the account owner's full name." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15470 +#: guix-git/doc/guix.texi:15827 msgid "Note that, for non-system accounts, users are free to change their real name as it appears in @file{/etc/passwd} using the @command{chfn} command. When they do, their choice prevails over the system administrator's choice; reconfiguring does @emph{not} change their name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:15471 +#: guix-git/doc/guix.texi:15828 #, no-wrap msgid "home-directory" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15473 +#: guix-git/doc/guix.texi:15830 msgid "This is the name of the home directory for the account." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15474 +#: guix-git/doc/guix.texi:15831 #, no-wrap msgid "@code{create-home-directory?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15477 +#: guix-git/doc/guix.texi:15834 msgid "Indicates whether the home directory of this account should be created if it does not exist yet." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15478 +#: guix-git/doc/guix.texi:15835 #, no-wrap msgid "@code{shell} (default: Bash)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15482 +#: guix-git/doc/guix.texi:15839 msgid "This is a G-expression denoting the file name of a program to be used as the shell (@pxref{G-Expressions}). For example, you would refer to the Bash executable like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15485 +#: guix-git/doc/guix.texi:15842 #, no-wrap msgid "(file-append bash \"/bin/bash\")\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15489 +#: guix-git/doc/guix.texi:15846 msgid "... and to the Zsh executable like that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15492 +#: guix-git/doc/guix.texi:15849 #, no-wrap msgid "(file-append zsh \"/bin/zsh\")\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:15494 guix-git/doc/guix.texi:15552 +#: guix-git/doc/guix.texi:15851 guix-git/doc/guix.texi:15909 #, no-wrap msgid "@code{system?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15498 +#: guix-git/doc/guix.texi:15855 msgid "This Boolean value indicates whether the account is a ``system'' account. System accounts are sometimes treated specially; for instance, graphical login managers do not list them." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:15500 +#: guix-git/doc/guix.texi:15857 msgid "user-account-password" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15500 +#: guix-git/doc/guix.texi:15857 #, no-wrap msgid "password, for user accounts" msgstr "" #. type: item -#: guix-git/doc/guix.texi:15501 guix-git/doc/guix.texi:15556 +#: guix-git/doc/guix.texi:15858 guix-git/doc/guix.texi:15913 #, no-wrap msgid "@code{password} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15507 +#: guix-git/doc/guix.texi:15864 msgid "You would normally leave this field to @code{#f}, initialize user passwords as @code{root} with the @command{passwd} command, and then let users change it with @command{passwd}. Passwords set with @command{passwd} are of course preserved across reboot and reconfiguration." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15511 +#: guix-git/doc/guix.texi:15868 msgid "If you @emph{do} want to set an initial password for an account, then this field must contain the encrypted password, as a string. You can use the @code{crypt} procedure for this purpose:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15516 +#: guix-git/doc/guix.texi:15873 #, no-wrap msgid "" "(user-account\n" @@ -26852,7 +27456,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15519 +#: guix-git/doc/guix.texi:15876 #, no-wrap msgid "" " ;; Specify a SHA-512-hashed initial password.\n" @@ -26860,171 +27464,171 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:15525 +#: guix-git/doc/guix.texi:15882 msgid "The hash of this initial password will be available in a file in @file{/gnu/store}, readable by all the users, so this method must be used with care." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15530 +#: guix-git/doc/guix.texi:15887 msgid "@xref{Passphrase Storage,,, libc, The GNU C Library Reference Manual}, for more information on password encryption, and @ref{Encryption,,, guile, GNU Guile Reference Manual}, for information on Guile's @code{crypt} procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15536 +#: guix-git/doc/guix.texi:15893 msgid "User group declarations are even simpler:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15539 +#: guix-git/doc/guix.texi:15896 #, no-wrap msgid "(user-group (name \"students\"))\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15541 +#: guix-git/doc/guix.texi:15898 #, no-wrap msgid "{Data Type} user-group" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15543 +#: guix-git/doc/guix.texi:15900 msgid "This type is for, well, user groups. There are just a few fields:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15547 +#: guix-git/doc/guix.texi:15904 msgid "The name of the group." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15548 guix-git/doc/guix.texi:30819 +#: guix-git/doc/guix.texi:15905 guix-git/doc/guix.texi:31184 #, no-wrap msgid "@code{id} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15551 +#: guix-git/doc/guix.texi:15908 msgid "The group identifier (a number). If @code{#f}, a new number is automatically allocated when the group is created." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15555 +#: guix-git/doc/guix.texi:15912 msgid "This Boolean value indicates whether the group is a ``system'' group. System groups have low numerical IDs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15559 +#: guix-git/doc/guix.texi:15916 msgid "What, user groups can have a password? Well, apparently yes. Unless @code{#f}, this field specifies the password of the group." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15565 +#: guix-git/doc/guix.texi:15922 msgid "For convenience, a variable lists all the basic user groups one may expect:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15566 +#: guix-git/doc/guix.texi:15923 #, no-wrap msgid "{Scheme Variable} %base-groups" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15571 +#: guix-git/doc/guix.texi:15928 msgid "This is the list of basic user groups that users and/or packages expect to be present on the system. This includes groups such as ``root'', ``wheel'', and ``users'', as well as groups used to control access to specific devices such as ``audio'', ``disk'', and ``cdrom''." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15573 +#: guix-git/doc/guix.texi:15930 #, no-wrap msgid "{Scheme Variable} %base-user-accounts" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15576 +#: guix-git/doc/guix.texi:15933 msgid "This is the list of basic system accounts that programs may expect to find on a GNU/Linux system, such as the ``nobody'' account." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15579 +#: guix-git/doc/guix.texi:15936 msgid "Note that the ``root'' account is not included here. It is a special-case and is automatically added whether or not it is specified." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15585 +#: guix-git/doc/guix.texi:15942 #, no-wrap msgid "keymap" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15593 +#: guix-git/doc/guix.texi:15950 msgid "To specify what each key of your keyboard does, you need to tell the operating system what @dfn{keyboard layout} you want to use. The default, when nothing is specified, is the US English QWERTY layout for 105-key PC keyboards. However, German speakers will usually prefer the German QWERTZ layout, French speakers will want the AZERTY layout, and so on; hackers might prefer Dvorak or bépo, and they might even want to further customize the effect of some of the keys. This section explains how to get that done." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15594 +#: guix-git/doc/guix.texi:15951 #, no-wrap msgid "keyboard layout, definition" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15596 +#: guix-git/doc/guix.texi:15953 msgid "There are three components that will want to know about your keyboard layout:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15603 +#: guix-git/doc/guix.texi:15960 msgid "The @emph{bootloader} may want to know what keyboard layout you want to use (@pxref{Bootloader Configuration, @code{keyboard-layout}}). This is useful if you want, for instance, to make sure that you can type the passphrase of your encrypted root partition using the right layout." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15608 +#: guix-git/doc/guix.texi:15965 msgid "The @emph{operating system kernel}, Linux, will need that so that the console is properly configured (@pxref{operating-system Reference, @code{keyboard-layout}})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15612 +#: guix-git/doc/guix.texi:15969 msgid "The @emph{graphical display server}, usually Xorg, also has its own idea of the keyboard layout (@pxref{X Window, @code{keyboard-layout}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15616 +#: guix-git/doc/guix.texi:15973 msgid "Guix allows you to configure all three separately but, fortunately, it allows you to share the same keyboard layout for all three components." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15617 +#: guix-git/doc/guix.texi:15974 #, no-wrap msgid "XKB, keyboard layouts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15625 +#: guix-git/doc/guix.texi:15982 msgid "Keyboard layouts are represented by records created by the @code{keyboard-layout} procedure of @code{(gnu system keyboard)}. Following the X Keyboard extension (XKB), each layout has four attributes: a name (often a language code such as ``fi'' for Finnish or ``jp'' for Japanese), an optional variant name, an optional keyboard model name, and a possibly empty list of additional options. In most cases the layout name is all you care about." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15626 +#: guix-git/doc/guix.texi:15983 #, no-wrap msgid "{Scheme Procedure} keyboard-layout @var{name} [@var{variant}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15629 +#: guix-git/doc/guix.texi:15986 msgid "[#:model] [#:options '()] Return a new keyboard layout with the given @var{name} and @var{variant}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15633 +#: guix-git/doc/guix.texi:15990 msgid "@var{name} must be a string such as @code{\"fr\"}; @var{variant} must be a string such as @code{\"bepo\"} or @code{\"nodeadkeys\"}. See the @code{xkeyboard-config} package for valid options." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15636 +#: guix-git/doc/guix.texi:15993 msgid "Here are a few examples:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15641 +#: guix-git/doc/guix.texi:15998 #, no-wrap msgid "" ";; The German QWERTZ layout. Here we assume a standard\n" @@ -27034,7 +27638,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15644 +#: guix-git/doc/guix.texi:16001 #, no-wrap msgid "" ";; The bépo variant of the French layout.\n" @@ -27043,7 +27647,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15647 +#: guix-git/doc/guix.texi:16004 #, no-wrap msgid "" ";; The Catalan layout.\n" @@ -27052,7 +27656,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15650 +#: guix-git/doc/guix.texi:16007 #, no-wrap msgid "" ";; Arabic layout with \"Alt-Shift\" to switch to US layout.\n" @@ -27061,7 +27665,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15657 +#: guix-git/doc/guix.texi:16014 #, no-wrap msgid "" ";; The Latin American Spanish layout. In addition, the\n" @@ -27074,7 +27678,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15660 +#: guix-git/doc/guix.texi:16017 #, no-wrap msgid "" ";; The Russian layout for a ThinkPad keyboard.\n" @@ -27083,7 +27687,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15665 +#: guix-git/doc/guix.texi:16022 #, no-wrap msgid "" ";; The \"US international\" layout, which is the US layout plus\n" @@ -27093,29 +27697,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15669 +#: guix-git/doc/guix.texi:16026 msgid "See the @file{share/X11/xkb} directory of the @code{xkeyboard-config} package for a complete list of supported layouts, variants, and models." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15670 +#: guix-git/doc/guix.texi:16027 #, no-wrap msgid "keyboard layout, configuration" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15674 +#: guix-git/doc/guix.texi:16031 msgid "Let's say you want your system to use the Turkish keyboard layout throughout your system---bootloader, console, and Xorg. Here's what your system configuration would look like:" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:15675 +#: guix-git/doc/guix.texi:16032 #, no-wrap msgid "set-xorg-configuration" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15679 +#: guix-git/doc/guix.texi:16036 #, no-wrap msgid "" ";; Using the Turkish layout for the bootloader, the console,\n" @@ -27124,7 +27728,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15691 +#: guix-git/doc/guix.texi:16048 #, no-wrap msgid "" "(operating-system\n" @@ -27141,76 +27745,76 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15698 +#: guix-git/doc/guix.texi:16055 msgid "In the example above, for GRUB and for Xorg, we just refer to the @code{keyboard-layout} field defined above, but we could just as well refer to a different layout. The @code{set-xorg-configuration} procedure communicates the desired Xorg configuration to the graphical log-in manager, by default GDM." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15701 +#: guix-git/doc/guix.texi:16058 msgid "We've discussed how to specify the @emph{default} keyboard layout of your system when it starts, but you can also adjust it at run time:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15706 +#: guix-git/doc/guix.texi:16063 msgid "If you're using GNOME, its settings panel has a ``Region & Language'' entry where you can select one or more keyboard layouts." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15711 +#: guix-git/doc/guix.texi:16068 msgid "Under Xorg, the @command{setxkbmap} command (from the same-named package) allows you to change the current layout. For example, this is how you would change the layout to US Dvorak:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15714 +#: guix-git/doc/guix.texi:16071 #, no-wrap msgid "setxkbmap us dvorak\n" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15721 +#: guix-git/doc/guix.texi:16078 msgid "The @code{loadkeys} command changes the keyboard layout in effect in the Linux console. However, note that @code{loadkeys} does @emph{not} use the XKB keyboard layout categorization described above. The command below loads the French bépo layout:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15724 +#: guix-git/doc/guix.texi:16081 #, no-wrap msgid "loadkeys fr-bepo\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15730 +#: guix-git/doc/guix.texi:16087 #, no-wrap msgid "locale" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15737 +#: guix-git/doc/guix.texi:16094 msgid "A @dfn{locale} defines cultural conventions for a particular language and region of the world (@pxref{Locales,,, libc, The GNU C Library Reference Manual}). Each locale has a name that typically has the form @code{@var{language}_@var{territory}.@var{codeset}}---e.g., @code{fr_LU.utf8} designates the locale for the French language, with cultural conventions from Luxembourg, and using the UTF-8 encoding." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15738 +#: guix-git/doc/guix.texi:16095 #, no-wrap msgid "locale definition" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15742 +#: guix-git/doc/guix.texi:16099 msgid "Usually, you will want to specify the default locale for the machine using the @code{locale} field of the @code{operating-system} declaration (@pxref{operating-system Reference, @code{locale}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15751 +#: guix-git/doc/guix.texi:16108 msgid "The selected locale is automatically added to the @dfn{locale definitions} known to the system if needed, with its codeset inferred from its name---e.g., @code{bo_CN.utf8} will be assumed to use the @code{UTF-8} codeset. Additional locale definitions can be specified in the @code{locale-definitions} slot of @code{operating-system}---this is useful, for instance, if the codeset could not be inferred from the locale name. The default set of locale definitions includes some widely used locales, but not all the available locales, in order to save space." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15754 +#: guix-git/doc/guix.texi:16111 msgid "For instance, to add the North Frisian locale for Germany, the value of that field may be:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15759 +#: guix-git/doc/guix.texi:16116 #, no-wrap msgid "" "(cons (locale-definition\n" @@ -27219,12 +27823,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15763 +#: guix-git/doc/guix.texi:16120 msgid "Likewise, to save space, one might want @code{locale-definitions} to list only the locales that are actually used, as in:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15768 +#: guix-git/doc/guix.texi:16125 #, no-wrap msgid "" "(list (locale-definition\n" @@ -27233,114 +27837,114 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15777 +#: guix-git/doc/guix.texi:16134 msgid "The compiled locale definitions are available at @file{/run/current-system/locale/X.Y}, where @code{X.Y} is the libc version, which is the default location where the GNU@tie{}libc provided by Guix looks for locale data. This can be overridden using the @env{LOCPATH} environment variable (@pxref{locales-and-locpath, @env{LOCPATH} and locale packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15780 +#: guix-git/doc/guix.texi:16137 msgid "The @code{locale-definition} form is provided by the @code{(gnu system locale)} module. Details are given below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15781 +#: guix-git/doc/guix.texi:16138 #, no-wrap msgid "{Data Type} locale-definition" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15783 +#: guix-git/doc/guix.texi:16140 msgid "This is the data type of a locale definition." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15789 +#: guix-git/doc/guix.texi:16146 msgid "The name of the locale. @xref{Locale Names,,, libc, The GNU C Library Reference Manual}, for more information on locale names." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15793 +#: guix-git/doc/guix.texi:16150 msgid "The name of the source for that locale. This is typically the @code{@var{language}_@var{territory}} part of the locale name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15794 +#: guix-git/doc/guix.texi:16151 #, no-wrap msgid "@code{charset} (default: @code{\"UTF-8\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15798 +#: guix-git/doc/guix.texi:16155 msgid "The ``character set'' or ``code set'' for that locale, @uref{https://www.iana.org/assignments/character-sets, as defined by IANA}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15802 +#: guix-git/doc/guix.texi:16159 #, no-wrap msgid "{Scheme Variable} %default-locale-definitions" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15806 +#: guix-git/doc/guix.texi:16163 msgid "A list of commonly used UTF-8 locales, used as the default value of the @code{locale-definitions} field of @code{operating-system} declarations." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15807 +#: guix-git/doc/guix.texi:16164 #, no-wrap msgid "locale name" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15808 +#: guix-git/doc/guix.texi:16165 #, no-wrap msgid "normalized codeset in locale names" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15814 +#: guix-git/doc/guix.texi:16171 msgid "These locale definitions use the @dfn{normalized codeset} for the part that follows the dot in the name (@pxref{Using gettextized software, normalized codeset,, libc, The GNU C Library Reference Manual}). So for instance it has @code{uk_UA.utf8} but @emph{not}, say, @code{uk_UA.UTF-8}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:15816 +#: guix-git/doc/guix.texi:16173 #, no-wrap msgid "Locale Data Compatibility Considerations" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15818 +#: guix-git/doc/guix.texi:16175 #, no-wrap msgid "incompatibility, of locale data" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15825 +#: guix-git/doc/guix.texi:16182 msgid "@code{operating-system} declarations provide a @code{locale-libcs} field to specify the GNU@tie{}libc packages that are used to compile locale declarations (@pxref{operating-system Reference}). ``Why would I care?'', you may ask. Well, it turns out that the binary format of locale data is occasionally incompatible from one libc version to another." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15837 +#: guix-git/doc/guix.texi:16194 msgid "For instance, a program linked against libc version 2.21 is unable to read locale data produced with libc 2.22; worse, that program @emph{aborts} instead of simply ignoring the incompatible locale data@footnote{Versions 2.23 and later of GNU@tie{}libc will simply skip the incompatible locale data, which is already an improvement.}. Similarly, a program linked against libc 2.22 can read most, but not all, of the locale data from libc 2.21 (specifically, @env{LC_COLLATE} data is incompatible); thus calls to @code{setlocale} may fail, but programs will not abort." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15842 +#: guix-git/doc/guix.texi:16199 msgid "The ``problem'' with Guix is that users have a lot of freedom: They can choose whether and when to upgrade software in their profiles, and might be using a libc version different from the one the system administrator used to build the system-wide locale data." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15846 +#: guix-git/doc/guix.texi:16203 msgid "Fortunately, unprivileged users can also install their own locale data and define @env{GUIX_LOCPATH} accordingly (@pxref{locales-and-locpath, @env{GUIX_LOCPATH} and locale packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15853 +#: guix-git/doc/guix.texi:16210 msgid "Still, it is best if the system-wide locale data at @file{/run/current-system/locale} is built for all the libc versions actually in use on the system, so that all the programs can access it---this is especially crucial on a multi-user system. To do that, the administrator can specify several libc packages in the @code{locale-libcs} field of @code{operating-system}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15856 +#: guix-git/doc/guix.texi:16213 #, no-wrap msgid "" "(use-package-modules base)\n" @@ -27348,7 +27952,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15860 +#: guix-git/doc/guix.texi:16217 #, no-wrap msgid "" "(operating-system\n" @@ -27357,39 +27961,39 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15865 +#: guix-git/doc/guix.texi:16222 msgid "This example would lead to a system containing locale definitions for both libc 2.21 and the current version of libc in @file{/run/current-system/locale}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15870 +#: guix-git/doc/guix.texi:16227 #, no-wrap msgid "system services" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15876 +#: guix-git/doc/guix.texi:16233 msgid "An important part of preparing an @code{operating-system} declaration is listing @dfn{system services} and their configuration (@pxref{Using the Configuration System}). System services are typically daemons launched when the system boots, or other actions needed at that time---e.g., configuring network access." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15883 +#: guix-git/doc/guix.texi:16240 msgid "Guix has a broad definition of ``service'' (@pxref{Service Composition}), but many services are managed by the GNU@tie{}Shepherd (@pxref{Shepherd Services}). On a running system, the @command{herd} command allows you to list the available services, show their status, start and stop them, or do other specific operations (@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}). For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15886 +#: guix-git/doc/guix.texi:16243 #, no-wrap msgid "# herd status\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15891 +#: guix-git/doc/guix.texi:16248 msgid "The above command, run as @code{root}, lists the currently defined services. The @command{herd doc} command shows a synopsis of the given service and its associated actions:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15895 +#: guix-git/doc/guix.texi:16252 #, no-wrap msgid "" "# herd doc nscd\n" @@ -27398,7 +28002,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15898 +#: guix-git/doc/guix.texi:16255 #, no-wrap msgid "" "# herd doc nscd action invalidate\n" @@ -27406,12 +28010,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15903 +#: guix-git/doc/guix.texi:16260 msgid "The @command{start}, @command{stop}, and @command{restart} sub-commands have the effect you would expect. For instance, the commands below stop the nscd service and restart the Xorg display server:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15910 +#: guix-git/doc/guix.texi:16267 #, no-wrap msgid "" "# herd stop nscd\n" @@ -27422,45 +28026,45 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15915 +#: guix-git/doc/guix.texi:16272 msgid "The following sections document the available services, starting with the core services, that may be used in an @code{operating-system} declaration." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:15951 guix-git/doc/guix.texi:24198 -#: guix-git/doc/guix.texi:24199 +#: guix-git/doc/guix.texi:16308 guix-git/doc/guix.texi:24560 +#: guix-git/doc/guix.texi:24561 #, no-wrap msgid "File-Sharing Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:16308 msgid "File-sharing services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15959 +#: guix-git/doc/guix.texi:16316 msgid "The @code{(gnu services base)} module provides definitions for the basic services that one expects from the system. The services exported by this module are listed below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15960 +#: guix-git/doc/guix.texi:16317 #, no-wrap msgid "{Scheme Variable} %base-services" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15966 +#: guix-git/doc/guix.texi:16323 msgid "This variable contains a list of basic services (@pxref{Service Types and Services}, for more information on service objects) one would expect from the system: a login service (mingetty) on each tty, syslogd, the libc name service cache daemon (nscd), the udev device manager, and more." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15971 +#: guix-git/doc/guix.texi:16328 msgid "This is the default value of the @code{services} field of @code{operating-system} declarations. Usually, when customizing a system, you will want to append services to @code{%base-services}, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15976 +#: guix-git/doc/guix.texi:16333 #, no-wrap msgid "" "(append (list (service avahi-service-type)\n" @@ -27469,58 +28073,58 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15979 +#: guix-git/doc/guix.texi:16336 #, no-wrap msgid "{Scheme Variable} special-files-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15982 +#: guix-git/doc/guix.texi:16339 msgid "This is the service that sets up ``special files'' such as @file{/bin/sh}; an instance of it is part of @code{%base-services}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15986 +#: guix-git/doc/guix.texi:16343 msgid "The value associated with @code{special-files-service-type} services must be a list of tuples where the first element is the ``special file'' and the second element is its target. By default it is:" msgstr "" #. type: file{#1} -#: guix-git/doc/guix.texi:15987 +#: guix-git/doc/guix.texi:16344 #, no-wrap msgid "/bin/sh" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15988 +#: guix-git/doc/guix.texi:16345 #, no-wrap msgid "@file{sh}, in @file{/bin}" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15991 +#: guix-git/doc/guix.texi:16348 #, no-wrap msgid "`((\"/bin/sh\" ,(file-append bash \"/bin/sh\")))\n" msgstr "" #. type: file{#1} -#: guix-git/doc/guix.texi:15993 +#: guix-git/doc/guix.texi:16350 #, no-wrap msgid "/usr/bin/env" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15994 +#: guix-git/doc/guix.texi:16351 #, no-wrap msgid "@file{env}, in @file{/usr/bin}" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15997 +#: guix-git/doc/guix.texi:16354 msgid "If you want to add, say, @code{/usr/bin/env} to your system, you can change it to:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16001 +#: guix-git/doc/guix.texi:16358 #, no-wrap msgid "" "`((\"/bin/sh\" ,(file-append bash \"/bin/sh\"))\n" @@ -27528,28 +28132,28 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16008 +#: guix-git/doc/guix.texi:16365 msgid "Since this is part of @code{%base-services}, you can use @code{modify-services} to customize the set of special files (@pxref{Service Reference, @code{modify-services}}). But the simple way to add a special file is @i{via} the @code{extra-special-file} procedure (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16010 +#: guix-git/doc/guix.texi:16367 #, no-wrap msgid "{Scheme Procedure} extra-special-file @var{file} @var{target}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16012 +#: guix-git/doc/guix.texi:16369 msgid "Use @var{target} as the ``special file'' @var{file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16016 +#: guix-git/doc/guix.texi:16373 msgid "For example, adding the following lines to the @code{services} field of your operating system declaration leads to a @file{/usr/bin/env} symlink:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16020 +#: guix-git/doc/guix.texi:16377 #, no-wrap msgid "" "(extra-special-file \"/usr/bin/env\"\n" @@ -27557,29 +28161,29 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16023 +#: guix-git/doc/guix.texi:16380 #, no-wrap msgid "{Scheme Procedure} host-name-service @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16025 +#: guix-git/doc/guix.texi:16382 msgid "Return a service that sets the host name to @var{name}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16027 +#: guix-git/doc/guix.texi:16384 #, no-wrap msgid "{Scheme Variable} console-font-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16032 +#: guix-git/doc/guix.texi:16389 msgid "Install the given fonts on the specified ttys (fonts are per virtual console on the kernel Linux). The value of this service is a list of tty/font pairs. The font can be the name of a font provided by the @code{kbd} package or any valid argument to @command{setfont}, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16041 +#: guix-git/doc/guix.texi:16398 #, no-wrap msgid "" "`((\"tty1\" . \"LatGrkCyr-8x16\")\n" @@ -27592,1109 +28196,1109 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16044 +#: guix-git/doc/guix.texi:16401 #, no-wrap msgid "{Scheme Procedure} login-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16048 +#: guix-git/doc/guix.texi:16405 msgid "Return a service to run login according to @var{config}, a @code{} object, which specifies the message of the day, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16050 +#: guix-git/doc/guix.texi:16407 #, no-wrap msgid "{Data Type} login-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16052 +#: guix-git/doc/guix.texi:16409 msgid "This is the data type representing the configuration of login." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16055 +#: guix-git/doc/guix.texi:16412 #, no-wrap msgid "motd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16056 +#: guix-git/doc/guix.texi:16413 #, no-wrap msgid "message of the day" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16058 +#: guix-git/doc/guix.texi:16415 msgid "A file-like object containing the ``message of the day''." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16059 guix-git/doc/guix.texi:19280 +#: guix-git/doc/guix.texi:16416 guix-git/doc/guix.texi:19642 #, no-wrap msgid "@code{allow-empty-passwords?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16062 +#: guix-git/doc/guix.texi:16419 msgid "Allow empty passwords by default so that first-time users can log in when the 'root' account has just been created." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16066 +#: guix-git/doc/guix.texi:16423 #, no-wrap msgid "{Scheme Procedure} mingetty-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16070 +#: guix-git/doc/guix.texi:16427 msgid "Return a service to run mingetty according to @var{config}, a @code{} object, which specifies the tty to run, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16072 +#: guix-git/doc/guix.texi:16429 #, no-wrap msgid "{Data Type} mingetty-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16075 +#: guix-git/doc/guix.texi:16432 msgid "This is the data type representing the configuration of Mingetty, which provides the default implementation of virtual console log-in." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16078 guix-git/doc/guix.texi:16117 -#: guix-git/doc/guix.texi:33550 +#: guix-git/doc/guix.texi:16435 guix-git/doc/guix.texi:16474 +#: guix-git/doc/guix.texi:33987 #, no-wrap msgid "tty" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16080 +#: guix-git/doc/guix.texi:16437 msgid "The name of the console this Mingetty runs on---e.g., @code{\"tty1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16081 guix-git/doc/guix.texi:16146 -#: guix-git/doc/guix.texi:16305 +#: guix-git/doc/guix.texi:16438 guix-git/doc/guix.texi:16503 +#: guix-git/doc/guix.texi:16662 #, no-wrap msgid "@code{auto-login} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16085 +#: guix-git/doc/guix.texi:16442 msgid "When true, this field must be a string denoting the user name under which the system automatically logs in. When it is @code{#f}, a user name and password must be entered to log in." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16086 +#: guix-git/doc/guix.texi:16443 #, no-wrap msgid "@code{login-program} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16090 +#: guix-git/doc/guix.texi:16447 msgid "This must be either @code{#f}, in which case the default log-in program is used (@command{login} from the Shadow tool suite), or a gexp denoting the name of the log-in program." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16091 +#: guix-git/doc/guix.texi:16448 #, no-wrap msgid "@code{login-pause?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16094 +#: guix-git/doc/guix.texi:16451 msgid "When set to @code{#t} in conjunction with @var{auto-login}, the user will have to press a key before the log-in shell is launched." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16095 +#: guix-git/doc/guix.texi:16452 #, no-wrap msgid "@code{clear-on-logout?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16097 +#: guix-git/doc/guix.texi:16454 msgid "When set to @code{#t}, the screen will be cleared after logout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16098 +#: guix-git/doc/guix.texi:16455 #, no-wrap msgid "@code{mingetty} (default: @var{mingetty})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16100 +#: guix-git/doc/guix.texi:16457 msgid "The Mingetty package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16104 +#: guix-git/doc/guix.texi:16461 #, no-wrap msgid "{Scheme Procedure} agetty-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16108 +#: guix-git/doc/guix.texi:16465 msgid "Return a service to run agetty according to @var{config}, an @code{} object, which specifies the tty to run, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16110 +#: guix-git/doc/guix.texi:16467 #, no-wrap msgid "{Data Type} agetty-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16114 +#: guix-git/doc/guix.texi:16471 msgid "This is the data type representing the configuration of agetty, which implements virtual and serial console log-in. See the @code{agetty(8)} man page for more information." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16121 +#: guix-git/doc/guix.texi:16478 msgid "The name of the console this agetty runs on, as a string---e.g., @code{\"ttyS0\"}. This argument is optional, it will default to a reasonable default serial port used by the kernel Linux." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16125 +#: guix-git/doc/guix.texi:16482 msgid "For this, if there is a value for an option @code{agetty.tty} in the kernel command line, agetty will extract the device name of the serial port from it and use that." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16129 +#: guix-git/doc/guix.texi:16486 msgid "If not and if there is a value for an option @code{console} with a tty in the Linux command line, agetty will extract the device name of the serial port from it and use that." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16133 +#: guix-git/doc/guix.texi:16490 msgid "In both cases, agetty will leave the other serial device settings (baud rate etc.)@: alone---in the hope that Linux pinned them to the correct values." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16134 guix-git/doc/guix.texi:33711 +#: guix-git/doc/guix.texi:16491 guix-git/doc/guix.texi:34148 #, no-wrap msgid "@code{baud-rate} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16137 +#: guix-git/doc/guix.texi:16494 msgid "A string containing a comma-separated list of one or more baud rates, in descending order." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16138 +#: guix-git/doc/guix.texi:16495 #, no-wrap msgid "@code{term} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16141 +#: guix-git/doc/guix.texi:16498 msgid "A string containing the value used for the @env{TERM} environment variable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16142 +#: guix-git/doc/guix.texi:16499 #, no-wrap msgid "@code{eight-bits?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16145 +#: guix-git/doc/guix.texi:16502 msgid "When @code{#t}, the tty is assumed to be 8-bit clean, and parity detection is disabled." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16149 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:16506 guix-git/doc/guix.texi:16665 msgid "When passed a login name, as a string, the specified user will be logged in automatically without prompting for their login name or password." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16150 +#: guix-git/doc/guix.texi:16507 #, no-wrap msgid "@code{no-reset?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16152 +#: guix-git/doc/guix.texi:16509 msgid "When @code{#t}, don't reset terminal cflags (control modes)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16153 +#: guix-git/doc/guix.texi:16510 #, no-wrap msgid "@code{host} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16156 +#: guix-git/doc/guix.texi:16513 msgid "This accepts a string containing the ``login_host'', which will be written into the @file{/var/run/utmpx} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16157 +#: guix-git/doc/guix.texi:16514 #, no-wrap msgid "@code{remote?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16161 +#: guix-git/doc/guix.texi:16518 msgid "When set to @code{#t} in conjunction with @var{host}, this will add an @code{-r} fakehost option to the command line of the login program specified in @var{login-program}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16162 +#: guix-git/doc/guix.texi:16519 #, no-wrap msgid "@code{flow-control?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16164 +#: guix-git/doc/guix.texi:16521 msgid "When set to @code{#t}, enable hardware (RTS/CTS) flow control." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16165 +#: guix-git/doc/guix.texi:16522 #, no-wrap msgid "@code{no-issue?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16168 +#: guix-git/doc/guix.texi:16525 msgid "When set to @code{#t}, the contents of the @file{/etc/issue} file will not be displayed before presenting the login prompt." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16169 +#: guix-git/doc/guix.texi:16526 #, no-wrap msgid "@code{init-string} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16172 +#: guix-git/doc/guix.texi:16529 msgid "This accepts a string that will be sent to the tty or modem before sending anything else. It can be used to initialize a modem." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16173 +#: guix-git/doc/guix.texi:16530 #, no-wrap msgid "@code{no-clear?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16176 +#: guix-git/doc/guix.texi:16533 msgid "When set to @code{#t}, agetty will not clear the screen before showing the login prompt." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16177 +#: guix-git/doc/guix.texi:16534 #, no-wrap msgid "@code{login-program} (default: (file-append shadow \"/bin/login\"))" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16181 +#: guix-git/doc/guix.texi:16538 msgid "This must be either a gexp denoting the name of a log-in program, or unset, in which case the default value is the @command{login} from the Shadow tool suite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16182 +#: guix-git/doc/guix.texi:16539 #, no-wrap msgid "@code{local-line} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16186 +#: guix-git/doc/guix.texi:16543 msgid "Control the CLOCAL line flag. This accepts one of three symbols as arguments, @code{'auto}, @code{'always}, or @code{'never}. If @code{#f}, the default value chosen by agetty is @code{'auto}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16187 +#: guix-git/doc/guix.texi:16544 #, no-wrap msgid "@code{extract-baud?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16190 +#: guix-git/doc/guix.texi:16547 msgid "When set to @code{#t}, instruct agetty to try to extract the baud rate from the status messages produced by certain types of modems." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16191 +#: guix-git/doc/guix.texi:16548 #, no-wrap msgid "@code{skip-login?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16195 +#: guix-git/doc/guix.texi:16552 msgid "When set to @code{#t}, do not prompt the user for a login name. This can be used with @var{login-program} field to use non-standard login systems." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16196 +#: guix-git/doc/guix.texi:16553 #, no-wrap msgid "@code{no-newline?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16199 +#: guix-git/doc/guix.texi:16556 msgid "When set to @code{#t}, do not print a newline before printing the @file{/etc/issue} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16201 +#: guix-git/doc/guix.texi:16558 #, no-wrap msgid "@code{login-options} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16206 +#: guix-git/doc/guix.texi:16563 msgid "This option accepts a string containing options that are passed to the login program. When used with the @var{login-program}, be aware that a malicious user could try to enter a login name containing embedded options that could be parsed by the login program." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16207 +#: guix-git/doc/guix.texi:16564 #, no-wrap msgid "@code{login-pause} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16211 +#: guix-git/doc/guix.texi:16568 msgid "When set to @code{#t}, wait for any key before showing the login prompt. This can be used in conjunction with @var{auto-login} to save memory by lazily spawning shells." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16212 +#: guix-git/doc/guix.texi:16569 #, no-wrap msgid "@code{chroot} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16215 +#: guix-git/doc/guix.texi:16572 msgid "Change root to the specified directory. This option accepts a directory path as a string." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16216 +#: guix-git/doc/guix.texi:16573 #, no-wrap msgid "@code{hangup?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16219 +#: guix-git/doc/guix.texi:16576 msgid "Use the Linux system call @code{vhangup} to do a virtual hangup of the specified terminal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16220 +#: guix-git/doc/guix.texi:16577 #, no-wrap msgid "@code{keep-baud?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16224 +#: guix-git/doc/guix.texi:16581 msgid "When set to @code{#t}, try to keep the existing baud rate. The baud rates from @var{baud-rate} are used when agetty receives a @key{BREAK} character." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16225 +#: guix-git/doc/guix.texi:16582 #, no-wrap msgid "@code{timeout} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16228 +#: guix-git/doc/guix.texi:16585 msgid "When set to an integer value, terminate if no user name could be read within @var{timeout} seconds." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16229 +#: guix-git/doc/guix.texi:16586 #, no-wrap msgid "@code{detect-case?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16235 +#: guix-git/doc/guix.texi:16592 msgid "When set to @code{#t}, turn on support for detecting an uppercase-only terminal. This setting will detect a login name containing only uppercase letters as indicating an uppercase-only terminal and turn on some upper-to-lower case conversions. Note that this will not support Unicode characters." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16236 +#: guix-git/doc/guix.texi:16593 #, no-wrap msgid "@code{wait-cr?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16241 +#: guix-git/doc/guix.texi:16598 msgid "When set to @code{#t}, wait for the user or modem to send a carriage-return or linefeed character before displaying @file{/etc/issue} or login prompt. This is typically used with the @var{init-string} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16242 +#: guix-git/doc/guix.texi:16599 #, no-wrap msgid "@code{no-hints?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16245 +#: guix-git/doc/guix.texi:16602 msgid "When set to @code{#t}, do not print hints about Num, Caps, and Scroll locks." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16246 +#: guix-git/doc/guix.texi:16603 #, no-wrap msgid "@code{no-hostname?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16249 +#: guix-git/doc/guix.texi:16606 msgid "By default, the hostname is printed. When this option is set to @code{#t}, no hostname will be shown at all." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16250 +#: guix-git/doc/guix.texi:16607 #, no-wrap msgid "@code{long-hostname?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16254 +#: guix-git/doc/guix.texi:16611 msgid "By default, the hostname is only printed until the first dot. When this option is set to @code{#t}, the fully qualified hostname by @code{gethostname} or @code{getaddrinfo} is shown." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16255 +#: guix-git/doc/guix.texi:16612 #, no-wrap msgid "@code{erase-characters} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16258 +#: guix-git/doc/guix.texi:16615 msgid "This option accepts a string of additional characters that should be interpreted as backspace when the user types their login name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16259 +#: guix-git/doc/guix.texi:16616 #, no-wrap msgid "@code{kill-characters} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16263 +#: guix-git/doc/guix.texi:16620 msgid "This option accepts a string that should be interpreted to mean ``ignore all previous characters'' (also called a ``kill'' character) when the user types their login name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16264 +#: guix-git/doc/guix.texi:16621 #, no-wrap msgid "@code{chdir} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16267 +#: guix-git/doc/guix.texi:16624 msgid "This option accepts, as a string, a directory path that will be changed to before login." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16268 +#: guix-git/doc/guix.texi:16625 #, no-wrap msgid "@code{delay} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16271 +#: guix-git/doc/guix.texi:16628 msgid "This options accepts, as an integer, the number of seconds to sleep before opening the tty and displaying the login prompt." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16272 +#: guix-git/doc/guix.texi:16629 #, no-wrap msgid "@code{nice} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16275 +#: guix-git/doc/guix.texi:16632 msgid "This option accepts, as an integer, the nice value with which to run the @command{login} program." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16276 guix-git/doc/guix.texi:16564 -#: guix-git/doc/guix.texi:17478 guix-git/doc/guix.texi:25181 -#: guix-git/doc/guix.texi:26658 guix-git/doc/guix.texi:29074 -#: guix-git/doc/guix.texi:29869 guix-git/doc/guix.texi:31622 -#: guix-git/doc/guix.texi:34051 +#: guix-git/doc/guix.texi:16633 guix-git/doc/guix.texi:16921 +#: guix-git/doc/guix.texi:17840 guix-git/doc/guix.texi:25543 +#: guix-git/doc/guix.texi:26995 guix-git/doc/guix.texi:29411 +#: guix-git/doc/guix.texi:30234 guix-git/doc/guix.texi:31987 +#: guix-git/doc/guix.texi:34488 #, no-wrap msgid "@code{extra-options} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16279 +#: guix-git/doc/guix.texi:16636 msgid "This option provides an ``escape hatch'' for the user to provide arbitrary command-line arguments to @command{agetty} as a list of strings." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16283 +#: guix-git/doc/guix.texi:16640 #, no-wrap msgid "{Scheme Procedure} kmscon-service-type @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16287 +#: guix-git/doc/guix.texi:16644 msgid "Return a service to run @uref{https://www.freedesktop.org/wiki/Software/kmscon,kmscon} according to @var{config}, a @code{} object, which specifies the tty to run, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16289 +#: guix-git/doc/guix.texi:16646 #, no-wrap msgid "{Data Type} kmscon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16292 +#: guix-git/doc/guix.texi:16649 msgid "This is the data type representing the configuration of Kmscon, which implements virtual console log-in." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16295 +#: guix-git/doc/guix.texi:16652 #, no-wrap msgid "virtual-terminal" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16297 +#: guix-git/doc/guix.texi:16654 msgid "The name of the console this Kmscon runs on---e.g., @code{\"tty1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16298 +#: guix-git/doc/guix.texi:16655 #, no-wrap msgid "@code{login-program} (default: @code{#~(string-append #$shadow \"/bin/login\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16301 +#: guix-git/doc/guix.texi:16658 msgid "A gexp denoting the name of the log-in program. The default log-in program is @command{login} from the Shadow tool suite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16302 +#: guix-git/doc/guix.texi:16659 #, no-wrap msgid "@code{login-arguments} (default: @code{'(\"-p\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16304 +#: guix-git/doc/guix.texi:16661 msgid "A list of arguments to pass to @command{login}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16309 +#: guix-git/doc/guix.texi:16666 #, no-wrap msgid "@code{hardware-acceleration?} (default: #f)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16311 +#: guix-git/doc/guix.texi:16668 msgid "Whether to use hardware acceleration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16312 +#: guix-git/doc/guix.texi:16669 #, no-wrap msgid "@code{font-engine} (default: @code{\"pango\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16314 +#: guix-git/doc/guix.texi:16671 msgid "Font engine used in Kmscon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16315 +#: guix-git/doc/guix.texi:16672 #, no-wrap msgid "@code{font-size} (default: @code{12})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16317 +#: guix-git/doc/guix.texi:16674 msgid "Font size used in Kmscon." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16321 +#: guix-git/doc/guix.texi:16678 msgid "If this is @code{#f}, Kmscon uses the default keyboard layout---usually US English (``qwerty'') for a 105-key PC keyboard." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16325 +#: guix-git/doc/guix.texi:16682 msgid "Otherwise this must be a @code{keyboard-layout} object specifying the keyboard layout. @xref{Keyboard Layout}, for more information on how to specify the keyboard layout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16326 +#: guix-git/doc/guix.texi:16683 #, no-wrap msgid "@code{kmscon} (default: @var{kmscon})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16328 +#: guix-git/doc/guix.texi:16685 msgid "The Kmscon package to use." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16332 +#: guix-git/doc/guix.texi:16689 #, no-wrap msgid "name service cache daemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16333 +#: guix-git/doc/guix.texi:16690 #, no-wrap msgid "nscd" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16334 +#: guix-git/doc/guix.texi:16691 #, no-wrap msgid "{Scheme Procedure} nscd-service [@var{config}] [#:glibc glibc] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16339 +#: guix-git/doc/guix.texi:16696 msgid "[#:name-services '()] Return a service that runs the libc name service cache daemon (nscd) with the given @var{config}---an @code{} object. @xref{Name Service Switch}, for an example." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16341 +#: guix-git/doc/guix.texi:16698 msgid "For convenience, the Shepherd service for nscd provides the following actions:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16343 +#: guix-git/doc/guix.texi:16700 #, no-wrap msgid "invalidate" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16344 +#: guix-git/doc/guix.texi:16701 #, no-wrap msgid "cache invalidation, nscd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16345 +#: guix-git/doc/guix.texi:16702 #, no-wrap msgid "nscd, cache invalidation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16347 +#: guix-git/doc/guix.texi:16704 msgid "This invalidate the given cache. For instance, running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16350 +#: guix-git/doc/guix.texi:16707 #, no-wrap msgid "herd invalidate nscd hosts\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16354 +#: guix-git/doc/guix.texi:16711 msgid "invalidates the host name lookup cache of nscd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16355 +#: guix-git/doc/guix.texi:16712 #, no-wrap msgid "statistics" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16358 +#: guix-git/doc/guix.texi:16715 msgid "Running @command{herd statistics nscd} displays information about nscd usage and caches." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16362 +#: guix-git/doc/guix.texi:16719 #, no-wrap msgid "{Scheme Variable} %nscd-default-configuration" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16366 +#: guix-git/doc/guix.texi:16723 msgid "This is the default @code{} value (see below) used by @code{nscd-service}. It uses the caches defined by @code{%nscd-default-caches}; see below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16368 +#: guix-git/doc/guix.texi:16725 #, no-wrap msgid "{Data Type} nscd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16371 +#: guix-git/doc/guix.texi:16728 msgid "This is the data type representing the name service cache daemon (nscd) configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16374 +#: guix-git/doc/guix.texi:16731 #, no-wrap msgid "@code{name-services} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16377 +#: guix-git/doc/guix.texi:16734 msgid "List of packages denoting @dfn{name services} that must be visible to the nscd---e.g., @code{(list @var{nss-mdns})}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16378 +#: guix-git/doc/guix.texi:16735 #, no-wrap msgid "@code{glibc} (default: @var{glibc})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16381 +#: guix-git/doc/guix.texi:16738 msgid "Package object denoting the GNU C Library providing the @command{nscd} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16382 +#: guix-git/doc/guix.texi:16739 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/nscd.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16385 +#: guix-git/doc/guix.texi:16742 msgid "Name of the nscd log file. This is where debugging output goes when @code{debug-level} is strictly positive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16386 +#: guix-git/doc/guix.texi:16743 #, no-wrap msgid "@code{debug-level} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16389 +#: guix-git/doc/guix.texi:16746 msgid "Integer denoting the debugging levels. Higher numbers mean that more debugging output is logged." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16390 +#: guix-git/doc/guix.texi:16747 #, no-wrap msgid "@code{caches} (default: @code{%nscd-default-caches})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16393 +#: guix-git/doc/guix.texi:16750 msgid "List of @code{} objects denoting things to be cached; see below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16397 +#: guix-git/doc/guix.texi:16754 #, no-wrap msgid "{Data Type} nscd-cache" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16399 +#: guix-git/doc/guix.texi:16756 msgid "Data type representing a cache database of nscd and its parameters." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16402 guix-git/doc/guix.texi:21071 +#: guix-git/doc/guix.texi:16759 guix-git/doc/guix.texi:21433 #, no-wrap msgid "database" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16407 +#: guix-git/doc/guix.texi:16764 msgid "This is a symbol representing the name of the database to be cached. Valid values are @code{passwd}, @code{group}, @code{hosts}, and @code{services}, which designate the corresponding NSS database (@pxref{NSS Basics,,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16408 +#: guix-git/doc/guix.texi:16765 #, no-wrap msgid "positive-time-to-live" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:16409 +#: guix-git/doc/guix.texi:16766 #, no-wrap msgid "@code{negative-time-to-live} (default: @code{20})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16412 +#: guix-git/doc/guix.texi:16769 msgid "A number representing the number of seconds during which a positive or negative lookup result remains in cache." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16413 +#: guix-git/doc/guix.texi:16770 #, no-wrap msgid "@code{check-files?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16416 +#: guix-git/doc/guix.texi:16773 msgid "Whether to check for updates of the files corresponding to @var{database}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16420 +#: guix-git/doc/guix.texi:16777 msgid "For instance, when @var{database} is @code{hosts}, setting this flag instructs nscd to check for updates in @file{/etc/hosts} and to take them into account." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16421 +#: guix-git/doc/guix.texi:16778 #, no-wrap msgid "@code{persistent?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16423 +#: guix-git/doc/guix.texi:16780 msgid "Whether the cache should be stored persistently on disk." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16424 +#: guix-git/doc/guix.texi:16781 #, no-wrap msgid "@code{shared?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16426 +#: guix-git/doc/guix.texi:16783 msgid "Whether the cache should be shared among users." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16427 +#: guix-git/doc/guix.texi:16784 #, no-wrap msgid "@code{max-database-size} (default: 32@tie{}MiB)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16429 +#: guix-git/doc/guix.texi:16786 msgid "Maximum size in bytes of the database cache." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16436 +#: guix-git/doc/guix.texi:16793 #, no-wrap msgid "{Scheme Variable} %nscd-default-caches" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16439 +#: guix-git/doc/guix.texi:16796 msgid "List of @code{} objects used by default by @code{nscd-configuration} (see above)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16445 +#: guix-git/doc/guix.texi:16802 msgid "It enables persistent and aggressive caching of service and host name lookups. The latter provides better host name lookup performance, resilience in the face of unreliable name servers, and also better privacy---often the result of host name lookups is in local cache, so external name servers do not even need to be queried." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16448 +#: guix-git/doc/guix.texi:16805 msgid "syslog-configuration-type" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16448 guix-git/doc/guix.texi:16464 +#: guix-git/doc/guix.texi:16805 guix-git/doc/guix.texi:16821 #, no-wrap msgid "syslog" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16449 guix-git/doc/guix.texi:17035 +#: guix-git/doc/guix.texi:16806 guix-git/doc/guix.texi:17397 #, no-wrap msgid "logging" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16450 +#: guix-git/doc/guix.texi:16807 #, no-wrap msgid "{Data Type} syslog-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16452 +#: guix-git/doc/guix.texi:16809 msgid "This data type represents the configuration of the syslog daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16454 +#: guix-git/doc/guix.texi:16811 #, no-wrap msgid "@code{syslogd} (default: @code{#~(string-append #$inetutils \"/libexec/syslogd\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16456 +#: guix-git/doc/guix.texi:16813 msgid "The syslog daemon to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16457 +#: guix-git/doc/guix.texi:16814 #, no-wrap msgid "@code{config-file} (default: @code{%default-syslog.conf})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16459 +#: guix-git/doc/guix.texi:16816 msgid "The syslog configuration file to use." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16464 +#: guix-git/doc/guix.texi:16821 msgid "syslog-service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16465 +#: guix-git/doc/guix.texi:16822 #, no-wrap msgid "{Scheme Procedure} syslog-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16467 +#: guix-git/doc/guix.texi:16824 msgid "Return a service that runs a syslog daemon according to @var{config}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16470 +#: guix-git/doc/guix.texi:16827 msgid "@xref{syslogd invocation,,, inetutils, GNU Inetutils}, for more information on the configuration file syntax." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16472 +#: guix-git/doc/guix.texi:16829 #, no-wrap msgid "{Scheme Variable} guix-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16476 +#: guix-git/doc/guix.texi:16833 msgid "This is the type of the service that runs the build daemon, @command{guix-daemon} (@pxref{Invoking guix-daemon}). Its value must be a @code{guix-configuration} record as described below." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16479 +#: guix-git/doc/guix.texi:16836 msgid "guix-configuration-type" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16479 +#: guix-git/doc/guix.texi:16836 #, no-wrap msgid "{Data Type} guix-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16482 +#: guix-git/doc/guix.texi:16839 msgid "This data type represents the configuration of the Guix build daemon. @xref{Invoking guix-daemon}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16484 +#: guix-git/doc/guix.texi:16841 #, no-wrap msgid "@code{guix} (default: @var{guix})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16486 guix-git/doc/guix.texi:16763 +#: guix-git/doc/guix.texi:16843 guix-git/doc/guix.texi:17120 msgid "The Guix package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16487 +#: guix-git/doc/guix.texi:16844 #, no-wrap msgid "@code{build-group} (default: @code{\"guixbuild\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16489 +#: guix-git/doc/guix.texi:16846 msgid "Name of the group for build user accounts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16490 +#: guix-git/doc/guix.texi:16847 #, no-wrap msgid "@code{build-accounts} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16492 +#: guix-git/doc/guix.texi:16849 msgid "Number of build user accounts to create." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16493 +#: guix-git/doc/guix.texi:16850 #, no-wrap msgid "@code{authorize-key?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16500 +#: guix-git/doc/guix.texi:16857 msgid "Whether to authorize the substitute keys listed in @code{authorized-keys}---by default that of @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} (@pxref{Substitutes})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16506 +#: guix-git/doc/guix.texi:16863 msgid "When @code{authorize-key?} is true, @file{/etc/guix/acl} cannot be changed by invoking @command{guix archive --authorize}. You must instead adjust @code{guix-configuration} as you wish and reconfigure the system. This ensures that your operating system configuration file is self-contained." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:16513 +#: guix-git/doc/guix.texi:16870 msgid "When booting or reconfiguring to a system where @code{authorize-key?} is true, the existing @file{/etc/guix/acl} file is backed up as @file{/etc/guix/acl.bak} if it was determined to be a manually modified file. This is to facilitate migration from earlier versions, which allowed for in-place modifications to @file{/etc/guix/acl}." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:16515 +#: guix-git/doc/guix.texi:16872 #, no-wrap msgid "%default-authorized-guix-keys" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16516 +#: guix-git/doc/guix.texi:16873 #, no-wrap msgid "@code{authorized-keys} (default: @code{%default-authorized-guix-keys})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16522 +#: guix-git/doc/guix.texi:16879 msgid "The list of authorized key files for archive imports, as a list of string-valued gexps (@pxref{Invoking guix archive}). By default, it contains that of @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} (@pxref{Substitutes}). See @code{substitute-urls} below for an example on how to change it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16523 +#: guix-git/doc/guix.texi:16880 #, no-wrap msgid "@code{use-substitutes?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16525 +#: guix-git/doc/guix.texi:16882 msgid "Whether to use substitutes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16526 guix-git/doc/guix.texi:29171 +#: guix-git/doc/guix.texi:16883 guix-git/doc/guix.texi:29508 #, no-wrap msgid "@code{substitute-urls} (default: @code{%default-substitute-urls})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16528 guix-git/doc/guix.texi:29173 +#: guix-git/doc/guix.texi:16885 guix-git/doc/guix.texi:29510 msgid "The list of URLs where to look for substitutes by default." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16535 +#: guix-git/doc/guix.texi:16892 msgid "Suppose you would like to fetch substitutes from @code{guix.example.org} in addition to @code{@value{SUBSTITUTE-SERVER-1}}. You will need to do two things: (1) add @code{guix.example.org} to @code{substitute-urls}, and (2) authorize its signing key, having done appropriate checks (@pxref{Substitute Server Authorization}). The configuration below does exactly that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16544 +#: guix-git/doc/guix.texi:16901 #, no-wrap msgid "" "(guix-configuration\n" @@ -28707,150 +29311,150 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16549 +#: guix-git/doc/guix.texi:16906 msgid "This example assumes that the file @file{./guix.example.org-key.pub} contains the public key that @code{guix.example.org} uses to sign substitutes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16550 +#: guix-git/doc/guix.texi:16907 #, no-wrap msgid "@code{max-silent-time} (default: @code{0})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:16551 +#: guix-git/doc/guix.texi:16908 #, no-wrap msgid "@code{timeout} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16555 +#: guix-git/doc/guix.texi:16912 msgid "The number of seconds of silence and the number of seconds of activity, respectively, after which a build process times out. A value of zero disables the timeout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16556 +#: guix-git/doc/guix.texi:16913 #, no-wrap -msgid "@code{log-compression} (default: @code{'bzip2})" +msgid "@code{log-compression} (default: @code{'gzip})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16559 +#: guix-git/doc/guix.texi:16916 msgid "The type of compression used for build logs---one of @code{gzip}, @code{bzip2}, or @code{none}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16560 +#: guix-git/doc/guix.texi:16917 #, no-wrap msgid "@code{discover?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16566 +#: guix-git/doc/guix.texi:16923 msgid "List of extra command-line options for @command{guix-daemon}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16567 +#: guix-git/doc/guix.texi:16924 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/guix-daemon.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16570 +#: guix-git/doc/guix.texi:16927 msgid "File where @command{guix-daemon}'s standard output and standard error are written." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16571 +#: guix-git/doc/guix.texi:16928 #, no-wrap msgid "HTTP proxy, for @code{guix-daemon}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16572 +#: guix-git/doc/guix.texi:16929 #, no-wrap msgid "proxy, for @code{guix-daemon} HTTP access" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16573 +#: guix-git/doc/guix.texi:16930 #, no-wrap msgid "@code{http-proxy} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16576 +#: guix-git/doc/guix.texi:16933 msgid "The URL of the HTTP and HTTPS proxy used for downloading fixed-output derivations and substitutes." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16579 +#: guix-git/doc/guix.texi:16936 msgid "It is also possible to change the daemon's proxy at run time through the @code{set-http-proxy} action, which restarts it:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16582 +#: guix-git/doc/guix.texi:16939 #, no-wrap msgid "herd set-http-proxy guix-daemon http://localhost:8118\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16585 +#: guix-git/doc/guix.texi:16942 msgid "To clear the proxy settings, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16588 +#: guix-git/doc/guix.texi:16945 #, no-wrap msgid "herd set-http-proxy guix-daemon\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16590 +#: guix-git/doc/guix.texi:16947 #, no-wrap msgid "@code{tmpdir} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16592 +#: guix-git/doc/guix.texi:16949 msgid "A directory path where the @command{guix-daemon} will perform builds." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16596 +#: guix-git/doc/guix.texi:16953 #, no-wrap msgid "{Scheme Procedure} udev-service [#:udev @var{eudev} #:rules @code{'()}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16602 +#: guix-git/doc/guix.texi:16959 msgid "Run @var{udev}, which populates the @file{/dev} directory dynamically. udev rules can be provided as a list of files through the @var{rules} variable. The procedures @code{udev-rule}, @code{udev-rules-service} and @code{file->udev-rule} from @code{(gnu services base)} simplify the creation of such rule files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16605 +#: guix-git/doc/guix.texi:16962 msgid "The @command{herd rules udev} command, as root, returns the name of the directory containing all the active udev rules." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16607 +#: guix-git/doc/guix.texi:16964 #, no-wrap msgid "{Scheme Procedure} udev-rule [@var{file-name} @var{contents}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16610 +#: guix-git/doc/guix.texi:16967 msgid "Return a udev-rule file named @var{file-name} containing the rules defined by the @var{contents} literal." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16614 +#: guix-git/doc/guix.texi:16971 msgid "In the following example, a rule for a USB device is defined to be stored in the file @file{90-usb-thing.rules}. The rule runs a script upon detecting a USB device with a given product identifier." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16622 +#: guix-git/doc/guix.texi:16979 #, no-wrap msgid "" "(define %example-udev-rule\n" @@ -28862,23 +29466,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16625 +#: guix-git/doc/guix.texi:16982 #, no-wrap msgid "{Scheme Procedure} udev-rules-service [@var{name} @var{rules}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16632 +#: guix-git/doc/guix.texi:16989 msgid "[#:groups @var{groups}] Return a service that extends @code{udev-service-type } with @var{rules} and @code{account-service-type} with @var{groups} as system groups. This works by creating a singleton service type @code{@var{name}-udev-rules}, of which the returned service is an instance." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16635 +#: guix-git/doc/guix.texi:16992 msgid "Here we show how it can be used to extend @code{udev-service-type} with the previously defined rule @code{%example-udev-rule}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16642 +#: guix-git/doc/guix.texi:16999 #, no-wrap msgid "" "(operating-system\n" @@ -28889,23 +29493,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16645 +#: guix-git/doc/guix.texi:17002 #, no-wrap msgid "{Scheme Procedure} file->udev-rule [@var{file-name} @var{file}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16648 +#: guix-git/doc/guix.texi:17005 msgid "Return a udev file named @var{file-name} containing the rules defined within @var{file}, a file-like object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16650 +#: guix-git/doc/guix.texi:17007 msgid "The following example showcases how we can use an existing rule file." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16655 +#: guix-git/doc/guix.texi:17012 #, no-wrap msgid "" "(use-modules (guix download) ;for url-fetch\n" @@ -28915,7 +29519,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16666 +#: guix-git/doc/guix.texi:17023 #, no-wrap msgid "" "(define %android-udev-rules\n" @@ -28931,17 +29535,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16675 +#: guix-git/doc/guix.texi:17032 msgid "Additionally, Guix package definitions can be included in @var{rules} in order to extend the udev rules with the definitions found under their @file{lib/udev/rules.d} sub-directory. In lieu of the previous @var{file->udev-rule} example, we could have used the @var{android-udev-rules} package which exists in Guix in the @code{(gnu packages android)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16684 +#: guix-git/doc/guix.texi:17041 msgid "The following example shows how to use the @var{android-udev-rules} package so that the Android tool @command{adb} can detect devices without root privileges. It also details how to create the @code{adbusers} group, which is required for the proper functioning of the rules defined within the @code{android-udev-rules} package. To create such a group, we must define it both as part of the @code{supplementary-groups} of our @code{user-account} declaration, as well as in the @var{groups} of the @code{udev-rules-service} procedure." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16689 +#: guix-git/doc/guix.texi:17046 #, no-wrap msgid "" "(use-modules (gnu packages android) ;for android-udev-rules\n" @@ -28951,7 +29555,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16702 +#: guix-git/doc/guix.texi:17059 #, no-wrap msgid "" "(operating-system\n" @@ -28969,328 +29573,339 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16704 +#: guix-git/doc/guix.texi:17061 #, no-wrap msgid "{Scheme Variable} urandom-seed-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16709 +#: guix-git/doc/guix.texi:17066 msgid "Save some entropy in @code{%random-seed-file} to seed @file{/dev/urandom} when rebooting. It also tries to seed @file{/dev/urandom} from @file{/dev/hwrng} while booting, if @file{/dev/hwrng} exists and is readable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16711 +#: guix-git/doc/guix.texi:17068 #, no-wrap msgid "{Scheme Variable} %random-seed-file" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16715 +#: guix-git/doc/guix.texi:17072 msgid "This is the name of the file where some random bytes are saved by @var{urandom-seed-service} to seed @file{/dev/urandom} when rebooting. It defaults to @file{/var/lib/random-seed}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16717 +#: guix-git/doc/guix.texi:17074 #, no-wrap msgid "mouse" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16718 +#: guix-git/doc/guix.texi:17075 #, no-wrap msgid "gpm" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16719 +#: guix-git/doc/guix.texi:17076 #, no-wrap msgid "{Scheme Variable} gpm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16724 +#: guix-git/doc/guix.texi:17081 msgid "This is the type of the service that runs GPM, the @dfn{general-purpose mouse daemon}, which provides mouse support to the Linux console. GPM allows users to use the mouse in the console, notably to select, copy, and paste text." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16727 +#: guix-git/doc/guix.texi:17084 msgid "The value for services of this type must be a @code{gpm-configuration} (see below). This service is not part of @code{%base-services}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16729 +#: guix-git/doc/guix.texi:17086 #, no-wrap msgid "{Data Type} gpm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16731 +#: guix-git/doc/guix.texi:17088 msgid "Data type representing the configuration of GPM." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16733 +#: guix-git/doc/guix.texi:17090 #, no-wrap msgid "@code{options} (default: @code{%default-gpm-options})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16738 +#: guix-git/doc/guix.texi:17095 msgid "Command-line options passed to @command{gpm}. The default set of options instruct @command{gpm} to listen to mouse events on @file{/dev/input/mice}. @xref{Command Line,,, gpm, gpm manual}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16739 +#: guix-git/doc/guix.texi:17096 #, no-wrap msgid "@code{gpm} (default: @code{gpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16741 +#: guix-git/doc/guix.texi:17098 msgid "The GPM package to use." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16746 +#: guix-git/doc/guix.texi:17103 msgid "guix-publish-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16746 +#: guix-git/doc/guix.texi:17103 #, no-wrap msgid "{Scheme Variable} guix-publish-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16750 +#: guix-git/doc/guix.texi:17107 msgid "This is the service type for @command{guix publish} (@pxref{Invoking guix publish}). Its value must be a @code{guix-publish-configuration} object, as described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16754 +#: guix-git/doc/guix.texi:17111 msgid "This assumes that @file{/etc/guix} already contains a signing key pair as created by @command{guix archive --generate-key} (@pxref{Invoking guix archive}). If that is not the case, the service will fail to start." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16756 +#: guix-git/doc/guix.texi:17113 #, no-wrap msgid "{Data Type} guix-publish-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16759 +#: guix-git/doc/guix.texi:17116 msgid "Data type representing the configuration of the @code{guix publish} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16761 +#: guix-git/doc/guix.texi:17118 #, no-wrap msgid "@code{guix} (default: @code{guix})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16764 guix-git/doc/guix.texi:31477 +#: guix-git/doc/guix.texi:17121 guix-git/doc/guix.texi:31842 #, no-wrap msgid "@code{port} (default: @code{80})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16766 +#: guix-git/doc/guix.texi:17123 msgid "The TCP port to listen for connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16767 guix-git/doc/guix.texi:29054 -#: guix-git/doc/guix.texi:32858 +#: guix-git/doc/guix.texi:17124 guix-git/doc/guix.texi:29391 +#: guix-git/doc/guix.texi:33223 #, no-wrap msgid "@code{host} (default: @code{\"localhost\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16770 +#: guix-git/doc/guix.texi:17127 msgid "The host (and thus, network interface) to listen to. Use @code{\"0.0.0.0\"} to listen on all the network interfaces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16771 +#: guix-git/doc/guix.texi:17128 #, no-wrap msgid "@code{advertise?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16774 +#: guix-git/doc/guix.texi:17131 msgid "When true, advertise the service on the local network @i{via} the DNS-SD protocol, using Avahi." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16778 +#: guix-git/doc/guix.texi:17135 msgid "This allows neighboring Guix devices with discovery on (see @code{guix-configuration} above) to discover this @command{guix publish} instance and to automatically download substitutes from it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16779 +#: guix-git/doc/guix.texi:17136 #, no-wrap msgid "@code{compression} (default: @code{'((\"gzip\" 3) (\"zstd\" 3))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16783 +#: guix-git/doc/guix.texi:17140 msgid "This is a list of compression method/level tuple used when compressing substitutes. For example, to compress all substitutes with @emph{both} lzip at level 7 and gzip at level 9, write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16786 +#: guix-git/doc/guix.texi:17143 #, no-wrap msgid "'((\"lzip\" 7) (\"gzip\" 9))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16792 +#: guix-git/doc/guix.texi:17149 msgid "Level 9 achieves the best compression ratio at the expense of increased CPU usage, whereas level 1 achieves fast compression. @xref{Invoking guix publish}, for more information on the available compression methods and the tradeoffs involved." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16794 +#: guix-git/doc/guix.texi:17151 msgid "An empty list disables compression altogether." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16795 +#: guix-git/doc/guix.texi:17152 #, no-wrap msgid "@code{nar-path} (default: @code{\"nar\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16798 +#: guix-git/doc/guix.texi:17155 msgid "The URL path at which ``nars'' can be fetched. @xref{Invoking guix publish, @option{--nar-path}}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16799 +#: guix-git/doc/guix.texi:17156 #, no-wrap msgid "@code{cache} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16805 +#: guix-git/doc/guix.texi:17162 msgid "When it is @code{#f}, disable caching and instead generate archives on demand. Otherwise, this should be the name of a directory---e.g., @code{\"/var/cache/guix/publish\"}---where @command{guix publish} caches archives and meta-data ready to be sent. @xref{Invoking guix publish, @option{--cache}}, for more information on the tradeoffs involved." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16806 +#: guix-git/doc/guix.texi:17163 #, no-wrap msgid "@code{workers} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16810 +#: guix-git/doc/guix.texi:17167 msgid "When it is an integer, this is the number of worker threads used for caching; when @code{#f}, the number of processors is used. @xref{Invoking guix publish, @option{--workers}}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16811 +#: guix-git/doc/guix.texi:17168 #, no-wrap msgid "@code{cache-bypass-threshold} (default: 10 MiB)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16816 +#: guix-git/doc/guix.texi:17173 msgid "When @code{cache} is true, this is the maximum size in bytes of a store item for which @command{guix publish} may bypass its cache in case of a cache miss. @xref{Invoking guix publish, @option{--cache-bypass-threshold}}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16817 +#: guix-git/doc/guix.texi:17174 #, no-wrap msgid "@code{ttl} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16821 +#: guix-git/doc/guix.texi:17178 msgid "When it is an integer, this denotes the @dfn{time-to-live} in seconds of the published archives. @xref{Invoking guix publish, @option{--ttl}}, for more information." msgstr "" +#. type: item +#: guix-git/doc/guix.texi:17179 +#, no-wrap +msgid "@code{negative-ttl} (default: @code{#f})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:17183 +msgid "When it is an integer, this denotes the @dfn{time-to-live} in seconds for the negative lookups. @xref{Invoking guix publish, @option{--negative-ttl}}, for more information." +msgstr "" + #. type: anchor{#1} -#: guix-git/doc/guix.texi:16825 +#: guix-git/doc/guix.texi:17187 msgid "rngd-service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16825 +#: guix-git/doc/guix.texi:17187 #, no-wrap msgid "{Scheme Procedure} rngd-service [#:rng-tools @var{rng-tools}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16830 +#: guix-git/doc/guix.texi:17192 msgid "[#:device \"/dev/hwrng\"] Return a service that runs the @command{rngd} program from @var{rng-tools} to add @var{device} to the kernel's entropy pool. The service will fail if @var{device} does not exist." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16833 +#: guix-git/doc/guix.texi:17195 msgid "pam-limits-service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16833 +#: guix-git/doc/guix.texi:17195 #, no-wrap msgid "session limits" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16834 +#: guix-git/doc/guix.texi:17196 #, no-wrap msgid "ulimit" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16835 +#: guix-git/doc/guix.texi:17197 #, no-wrap msgid "priority" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16836 +#: guix-git/doc/guix.texi:17198 #, no-wrap msgid "realtime" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16837 +#: guix-git/doc/guix.texi:17199 #, no-wrap msgid "jackd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16838 +#: guix-git/doc/guix.texi:17200 #, no-wrap msgid "nofile" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16839 +#: guix-git/doc/guix.texi:17201 #, no-wrap msgid "open file descriptors" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16840 +#: guix-git/doc/guix.texi:17202 #, no-wrap msgid "{Scheme Procedure} pam-limits-service [#:limits @code{'()}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16847 +#: guix-git/doc/guix.texi:17209 msgid "Return a service that installs a configuration file for the @uref{http://linux-pam.org/Linux-PAM-html/sag-pam_limits.html, @code{pam_limits} module}. The procedure optionally takes a list of @code{pam-limits-entry} values, which can be used to specify @code{ulimit} limits and @code{nice} priority limits to user sessions." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16850 +#: guix-git/doc/guix.texi:17212 msgid "The following limits definition sets two hard and soft limits for all login sessions of users in the @code{realtime} group:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16856 +#: guix-git/doc/guix.texi:17218 #, no-wrap msgid "" "(pam-limits-service\n" @@ -29300,17 +29915,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16862 +#: guix-git/doc/guix.texi:17224 msgid "The first entry increases the maximum realtime priority for non-privileged processes; the second entry lifts any restriction of the maximum address space that can be locked in memory. These settings are commonly used for real-time audio systems." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16865 +#: guix-git/doc/guix.texi:17227 msgid "Another useful example is raising the maximum number of open file descriptors that can be used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16870 +#: guix-git/doc/guix.texi:17232 #, no-wrap msgid "" "(pam-limits-service\n" @@ -29319,40 +29934,40 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16878 +#: guix-git/doc/guix.texi:17240 msgid "In the above example, the asterisk means the limit should apply to any user. It is important to ensure the chosen value doesn't exceed the maximum system value visible in the @file{/proc/sys/fs/file-max} file, else the users would be prevented from login in. For more information about the Pluggable Authentication Module (PAM) limits, refer to the @samp{pam_limits} man page from the @code{linux-pam} package." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16883 guix-git/doc/guix.texi:37407 +#: guix-git/doc/guix.texi:17245 guix-git/doc/guix.texi:37897 #, no-wrap msgid "cron" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16884 guix-git/doc/guix.texi:37408 +#: guix-git/doc/guix.texi:17246 guix-git/doc/guix.texi:37898 #, no-wrap msgid "mcron" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16885 guix-git/doc/guix.texi:37409 +#: guix-git/doc/guix.texi:17247 guix-git/doc/guix.texi:37899 #, no-wrap msgid "scheduling jobs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16892 +#: guix-git/doc/guix.texi:17254 msgid "The @code{(gnu services mcron)} module provides an interface to GNU@tie{}mcron, a daemon to run jobs at scheduled times (@pxref{Top,,, mcron, GNU@tie{}mcron}). GNU@tie{}mcron is similar to the traditional Unix @command{cron} daemon; the main difference is that it is implemented in Guile Scheme, which provides a lot of flexibility when specifying the scheduling of jobs and their actions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16900 +#: guix-git/doc/guix.texi:17262 msgid "The example below defines an operating system that runs the @command{updatedb} (@pxref{Invoking updatedb,,, find, Finding Files}) and the @command{guix gc} commands (@pxref{Invoking guix gc}) daily, as well as the @command{mkid} command on behalf of an unprivileged user (@pxref{mkid invocation,,, idutils, ID Database Utilities}). It uses gexps to introduce job definitions that are passed to mcron (@pxref{G-Expressions})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16904 +#: guix-git/doc/guix.texi:17266 #, no-wrap msgid "" "(use-modules (guix) (gnu) (gnu services mcron))\n" @@ -29361,7 +29976,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16914 +#: guix-git/doc/guix.texi:17276 #, no-wrap msgid "" "(define updatedb-job\n" @@ -29377,7 +29992,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16920 +#: guix-git/doc/guix.texi:17282 #, no-wrap msgid "" "(define garbage-collector-job\n" @@ -29389,7 +30004,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16927 +#: guix-git/doc/guix.texi:17289 #, no-wrap msgid "" "(define idutils-job\n" @@ -29402,7 +30017,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16930 +#: guix-git/doc/guix.texi:17292 #, no-wrap msgid "" "(operating-system\n" @@ -29411,7 +30026,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16940 +#: guix-git/doc/guix.texi:17302 #, no-wrap msgid "" " ;; %BASE-SERVICES already includes an instance of\n" @@ -29426,23 +30041,23 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:16942 +#: guix-git/doc/guix.texi:17304 #, no-wrap msgid "Tip" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:16948 +#: guix-git/doc/guix.texi:17310 msgid "When providing the action of a job specification as a procedure, you should provide an explicit name for the job via the optional 3rd argument as done in the @code{updatedb-job} example above. Otherwise, the job would appear as ``Lambda function'' in the output of @command{herd schedule mcron}, which is not nearly descriptive enough!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16955 +#: guix-git/doc/guix.texi:17317 msgid "For more complex jobs defined in Scheme where you need control over the top level, for instance to introduce a @code{use-modules} form, you can move your code to a separate program using the @code{program-file} procedure of the @code{(guix gexp)} module (@pxref{G-Expressions}). The example below illustrates that." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16971 +#: guix-git/doc/guix.texi:17333 #, no-wrap msgid "" "(define %battery-alert-job\n" @@ -29463,7 +30078,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16973 +#: guix-git/doc/guix.texi:17335 #, no-wrap msgid "" " (define %min-level 20)\n" @@ -29471,7 +30086,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16984 +#: guix-git/doc/guix.texi:17346 #, no-wrap msgid "" " (setenv \"LC_ALL\" \"C\") ;ensure English output\n" @@ -29487,106 +30102,106 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16989 +#: guix-git/doc/guix.texi:17351 msgid "@xref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron}, for more information on mcron job specifications. Below is the reference of the mcron service." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16992 +#: guix-git/doc/guix.texi:17354 msgid "On a running system, you can use the @code{schedule} action of the service to visualize the mcron jobs that will be executed next:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16995 +#: guix-git/doc/guix.texi:17357 #, no-wrap msgid "# herd schedule mcron\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17000 +#: guix-git/doc/guix.texi:17362 msgid "The example above lists the next five tasks that will be executed, but you can also specify the number of tasks to display:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:17003 +#: guix-git/doc/guix.texi:17365 #, no-wrap msgid "# herd schedule mcron 10\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17005 +#: guix-git/doc/guix.texi:17367 #, no-wrap msgid "{Scheme Variable} mcron-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17008 +#: guix-git/doc/guix.texi:17370 msgid "This is the type of the @code{mcron} service, whose value is an @code{mcron-configuration} object." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17013 guix-git/doc/guix.texi:37428 +#: guix-git/doc/guix.texi:17375 guix-git/doc/guix.texi:37918 msgid "This service type can be the target of a service extension that provides additional job specifications (@pxref{Service Composition}). In other words, it is possible to define services that provide additional mcron jobs to run." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17015 +#: guix-git/doc/guix.texi:17377 #, no-wrap msgid "{Data Type} mcron-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17017 guix-git/doc/guix.texi:37432 +#: guix-git/doc/guix.texi:17379 guix-git/doc/guix.texi:37922 msgid "Data type representing the configuration of mcron." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17019 guix-git/doc/guix.texi:37434 +#: guix-git/doc/guix.texi:17381 guix-git/doc/guix.texi:37924 #, no-wrap msgid "@code{mcron} (default: @var{mcron})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17021 guix-git/doc/guix.texi:37436 +#: guix-git/doc/guix.texi:17383 guix-git/doc/guix.texi:37926 msgid "The mcron package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17022 guix-git/doc/guix.texi:17091 -#: guix-git/doc/guix.texi:37437 +#: guix-git/doc/guix.texi:17384 guix-git/doc/guix.texi:17453 +#: guix-git/doc/guix.texi:37927 #, no-wrap msgid "jobs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17026 guix-git/doc/guix.texi:37441 +#: guix-git/doc/guix.texi:17388 guix-git/doc/guix.texi:37931 msgid "This is a list of gexps (@pxref{G-Expressions}), where each gexp corresponds to an mcron job specification (@pxref{Syntax, mcron job specifications,, mcron, GNU@tie{}mcron})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17033 +#: guix-git/doc/guix.texi:17395 #, no-wrap msgid "rottlog" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17034 +#: guix-git/doc/guix.texi:17396 #, no-wrap msgid "log rotation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17041 +#: guix-git/doc/guix.texi:17403 msgid "Log files such as those found in @file{/var/log} tend to grow endlessly, so it's a good idea to @dfn{rotate} them once in a while---i.e., archive their contents in separate files, possibly compressed. The @code{(gnu services admin)} module provides an interface to GNU@tie{}Rot[t]log, a log rotation tool (@pxref{Top,,, rottlog, GNU Rot[t]log Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17047 +#: guix-git/doc/guix.texi:17409 msgid "This service is part of @code{%base-services}, and thus enabled by default, with the default settings, for commonly encountered log files. The example below shows how to extend it with an additional @dfn{rotation}, should you need to do that (usually, services that produce log files already take care of that):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17051 +#: guix-git/doc/guix.texi:17413 #, no-wrap msgid "" "(use-modules (guix) (gnu))\n" @@ -29595,7 +30210,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17055 +#: guix-git/doc/guix.texi:17417 #, no-wrap msgid "" "(define my-log-files\n" @@ -29605,7 +30220,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17064 +#: guix-git/doc/guix.texi:17426 #, no-wrap msgid "" "(operating-system\n" @@ -29619,93 +30234,93 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17066 +#: guix-git/doc/guix.texi:17428 #, no-wrap msgid "{Scheme Variable} rottlog-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17069 +#: guix-git/doc/guix.texi:17431 msgid "This is the type of the Rottlog service, whose value is a @code{rottlog-configuration} object." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17072 +#: guix-git/doc/guix.texi:17434 msgid "Other services can extend this one with new @code{log-rotation} objects (see below), thereby augmenting the set of files to be rotated." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17075 +#: guix-git/doc/guix.texi:17437 msgid "This service type can define mcron jobs (@pxref{Scheduled Job Execution}) to run the rottlog service." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17077 +#: guix-git/doc/guix.texi:17439 #, no-wrap msgid "{Data Type} rottlog-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17079 +#: guix-git/doc/guix.texi:17441 msgid "Data type representing the configuration of rottlog." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17081 +#: guix-git/doc/guix.texi:17443 #, no-wrap msgid "@code{rottlog} (default: @code{rottlog})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17083 +#: guix-git/doc/guix.texi:17445 msgid "The Rottlog package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17084 +#: guix-git/doc/guix.texi:17446 #, no-wrap msgid "@code{rc-file} (default: @code{(file-append rottlog \"/etc/rc\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17087 +#: guix-git/doc/guix.texi:17449 msgid "The Rottlog configuration file to use (@pxref{Mandatory RC Variables,,, rottlog, GNU Rot[t]log Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17088 +#: guix-git/doc/guix.texi:17450 #, no-wrap msgid "@code{rotations} (default: @code{%default-rotations})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17090 +#: guix-git/doc/guix.texi:17452 msgid "A list of @code{log-rotation} objects as defined below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17094 +#: guix-git/doc/guix.texi:17456 msgid "This is a list of gexps where each gexp corresponds to an mcron job specification (@pxref{Scheduled Job Execution})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17097 +#: guix-git/doc/guix.texi:17459 #, no-wrap msgid "{Data Type} log-rotation" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17099 +#: guix-git/doc/guix.texi:17461 msgid "Data type representing the rotation of a group of log files." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17103 +#: guix-git/doc/guix.texi:17465 msgid "Taking an example from the Rottlog manual (@pxref{Period Related File Examples,,, rottlog, GNU Rot[t]log Manual}), a log rotation might be defined like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17112 +#: guix-git/doc/guix.texi:17474 #, no-wrap msgid "" "(log-rotation\n" @@ -29718,121 +30333,115 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17115 +#: guix-git/doc/guix.texi:17477 msgid "The list of fields is as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17117 +#: guix-git/doc/guix.texi:17479 #, no-wrap msgid "@code{frequency} (default: @code{'weekly})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17119 +#: guix-git/doc/guix.texi:17481 msgid "The log rotation frequency, a symbol." msgstr "" -#. type: code{#1} -#: guix-git/doc/guix.texi:17120 -#, no-wrap -msgid "files" -msgstr "" - #. type: table -#: guix-git/doc/guix.texi:17122 +#: guix-git/doc/guix.texi:17484 msgid "The list of files or file glob patterns to rotate." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17123 +#: guix-git/doc/guix.texi:17485 #, no-wrap msgid "@code{options} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17126 +#: guix-git/doc/guix.texi:17488 msgid "The list of rottlog options for this rotation (@pxref{Configuration parameters,,, rottlog, GNU Rot[t]lg Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17127 +#: guix-git/doc/guix.texi:17489 #, no-wrap msgid "@code{post-rotate} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17129 +#: guix-git/doc/guix.texi:17491 msgid "Either @code{#f} or a gexp to execute once the rotation has completed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17132 +#: guix-git/doc/guix.texi:17494 #, no-wrap msgid "{Scheme Variable} %default-rotations" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17135 +#: guix-git/doc/guix.texi:17497 msgid "Specifies weekly rotation of @code{%rotated-files} and of @file{/var/log/guix-daemon.log}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17137 +#: guix-git/doc/guix.texi:17499 #, no-wrap msgid "{Scheme Variable} %rotated-files" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17141 +#: guix-git/doc/guix.texi:17503 msgid "The list of syslog-controlled files to be rotated. By default it is: @code{'(\"/var/log/messages\" \"/var/log/secure\" \"/var/log/debug\" \\ \"/var/log/maillog\")}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17154 +#: guix-git/doc/guix.texi:17516 msgid "The @code{(gnu services networking)} module provides services to configure network interfaces and set up networking on your machine. Those services provide different ways for you to set up your machine: by declaring a static network configuration, by running a Dynamic Host Configuration Protocol (DHCP) client, or by running daemons such as NetworkManager and Connman that automate the whole process, automatically adapt to connectivity changes, and provide a high-level user interface." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17160 +#: guix-git/doc/guix.texi:17522 msgid "On a laptop, NetworkManager and Connman are by far the most convenient options, which is why the default desktop services include NetworkManager (@pxref{Desktop Services, @code{%desktop-services}}). For a server, or for a virtual machine or a container, static network configuration or a simple DHCP client are often more appropriate." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17163 +#: guix-git/doc/guix.texi:17525 msgid "This section describes the various network setup services available, starting with static network configuration." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17164 +#: guix-git/doc/guix.texi:17526 #, no-wrap msgid "{Scheme Variable} static-networking-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17169 +#: guix-git/doc/guix.texi:17531 msgid "This is the type for statically-configured network interfaces. Its value must be a list of @code{static-networking} records. Each of them declares a set of @dfn{addresses}, @dfn{routes}, and @dfn{links}, as show below." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17170 +#: guix-git/doc/guix.texi:17532 #, no-wrap msgid "network interface controller (NIC)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17171 +#: guix-git/doc/guix.texi:17533 #, no-wrap msgid "NIC, networking interface controller" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17174 +#: guix-git/doc/guix.texi:17536 msgid "Here is the simplest configuration, with only one network interface controller (NIC) and only IPv4 connectivity:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17188 +#: guix-git/doc/guix.texi:17550 #, no-wrap msgid "" ";; Static networking for one NIC, IPv4-only.\n" @@ -29850,28 +30459,28 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17197 +#: guix-git/doc/guix.texi:17559 msgid "The snippet above can be added to the @code{services} field of your operating system configuration (@pxref{Using the Configuration System}). It will configure your machine to have 10.0.2.15 as its IP address, with a 24-bit netmask for the local network---meaning that any 10.0.2.@var{x} address is on the local area network (LAN). Traffic to addresses outside the local network is routed @i{via} 10.0.2.2. Host names are resolved by sending domain name system (DNS) queries to 10.0.2.3." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17199 +#: guix-git/doc/guix.texi:17561 #, no-wrap msgid "{Data Type} static-networking" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17201 +#: guix-git/doc/guix.texi:17563 msgid "This is the data type representing a static network configuration." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17205 +#: guix-git/doc/guix.texi:17567 msgid "As an example, here is how you would declare the configuration of a machine with a single network interface controller (NIC) available as @code{eno1}, and with one IPv4 and one IPv6 address:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17222 +#: guix-git/doc/guix.texi:17584 #, no-wrap msgid "" ";; Network configuration for one NIC, IPv4 + IPv6.\n" @@ -29892,12 +30501,12 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17228 +#: guix-git/doc/guix.texi:17590 msgid "If you are familiar with the @command{ip} command of the @uref{https://wiki.linuxfoundation.org/networking/iproute2, @code{iproute2} package} found on Linux-based systems, the declaration above is equivalent to typing:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:17234 +#: guix-git/doc/guix.texi:17596 #, no-wrap msgid "" "ip address add 10.0.2.15/24 dev eno1\n" @@ -29907,353 +30516,353 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17239 +#: guix-git/doc/guix.texi:17601 msgid "Run @command{man 8 ip} for more info. Venerable GNU/Linux users will certainly know how to do it with @command{ifconfig} and @command{route}, but we'll spare you that." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17241 +#: guix-git/doc/guix.texi:17603 msgid "The available fields of this data type are as follows:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17243 +#: guix-git/doc/guix.texi:17605 #, no-wrap msgid "addresses" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:17244 +#: guix-git/doc/guix.texi:17606 #, no-wrap msgid "@code{links} (default: @code{'()})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:17245 +#: guix-git/doc/guix.texi:17607 #, no-wrap msgid "@code{routes} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17248 +#: guix-git/doc/guix.texi:17610 msgid "The list of @code{network-address}, @code{network-link}, and @code{network-route} records for this network (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17249 +#: guix-git/doc/guix.texi:17611 #, no-wrap msgid "@code{name-servers} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17252 +#: guix-git/doc/guix.texi:17614 msgid "The list of IP addresses (strings) of domain name servers. These IP addresses go to @file{/etc/resolv.conf}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17253 +#: guix-git/doc/guix.texi:17615 #, no-wrap msgid "@code{provision} (default: @code{'(networking)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17256 +#: guix-git/doc/guix.texi:17618 msgid "If true, this should be a list of symbols for the Shepherd service corresponding to this network configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17257 +#: guix-git/doc/guix.texi:17619 #, no-wrap msgid "@code{requirement} (default @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17259 +#: guix-git/doc/guix.texi:17621 msgid "The list of Shepherd services depended on." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17262 +#: guix-git/doc/guix.texi:17624 #, no-wrap msgid "{Data Type} network-address" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17265 +#: guix-git/doc/guix.texi:17627 msgid "This is the data type representing the IP address of a network interface." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17270 +#: guix-git/doc/guix.texi:17632 msgid "The name of the network interface for this address---e.g., @code{\"eno1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17271 +#: guix-git/doc/guix.texi:17633 #, no-wrap msgid "value" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17275 +#: guix-git/doc/guix.texi:17637 msgid "The actual IP address and network mask, in @uref{https://en.wikipedia.org/wiki/CIDR#CIDR_notation, @acronym{CIDR, Classless Inter-Domain Routing} notation}, as a string." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17279 +#: guix-git/doc/guix.texi:17641 msgid "For example, @code{\"10.0.2.15/24\"} denotes IPv4 address 10.0.2.15 on a 24-bit sub-network---all 10.0.2.@var{x} addresses are on the same local network." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17280 +#: guix-git/doc/guix.texi:17642 #, no-wrap msgid "ipv6?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17283 +#: guix-git/doc/guix.texi:17645 msgid "Whether @code{value} denotes an IPv6 address. By default this is automatically determined." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17286 +#: guix-git/doc/guix.texi:17648 #, no-wrap msgid "{Data Type} network-route" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17288 +#: guix-git/doc/guix.texi:17650 msgid "This is the data type representing a network route." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17290 +#: guix-git/doc/guix.texi:17652 #, no-wrap msgid "destination" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17293 +#: guix-git/doc/guix.texi:17655 msgid "The route destination (a string), either an IP address or @code{\"default\"} to denote the default route." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17294 +#: guix-git/doc/guix.texi:17656 #, no-wrap msgid "@code{source} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17296 +#: guix-git/doc/guix.texi:17658 msgid "The route source." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17297 guix-git/doc/guix.texi:34761 +#: guix-git/doc/guix.texi:17659 guix-git/doc/guix.texi:35200 #, no-wrap msgid "@code{device} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17299 +#: guix-git/doc/guix.texi:17661 msgid "The device used for this route---e.g., @code{\"eno2\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17300 +#: guix-git/doc/guix.texi:17662 #, no-wrap msgid "@code{ipv6?} (default: auto)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17303 +#: guix-git/doc/guix.texi:17665 msgid "Whether this is an IPv6 route. By default this is automatically determined based on @code{destination} or @code{gateway}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17304 +#: guix-git/doc/guix.texi:17666 #, no-wrap msgid "@code{gateway} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17306 +#: guix-git/doc/guix.texi:17668 msgid "IP address (a string) through which traffic is routed." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17309 +#: guix-git/doc/guix.texi:17671 #, no-wrap msgid "{Data Type} network-link" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17312 +#: guix-git/doc/guix.texi:17674 msgid "Data type for a network link (@pxref{Link,,, guile-netlink, Guile-Netlink Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17316 +#: guix-git/doc/guix.texi:17678 msgid "The name of the link---e.g., @code{\"v0p0\"}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17319 +#: guix-git/doc/guix.texi:17681 msgid "A symbol denoting the type of the link---e.g., @code{'veth}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17320 +#: guix-git/doc/guix.texi:17682 #, no-wrap msgid "arguments" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17322 +#: guix-git/doc/guix.texi:17684 msgid "List of arguments for this type of link." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17325 +#: guix-git/doc/guix.texi:17687 #, no-wrap msgid "loopback device" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17326 +#: guix-git/doc/guix.texi:17688 #, no-wrap msgid "{Scheme Variable} %loopback-static-networking" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17330 +#: guix-git/doc/guix.texi:17692 msgid "This is the @code{static-networking} record representing the ``loopback device'', @code{lo}, for IP addresses 127.0.0.1 and ::1, and providing the @code{loopback} Shepherd service." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17332 +#: guix-git/doc/guix.texi:17694 #, no-wrap msgid "networking, with QEMU" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17333 +#: guix-git/doc/guix.texi:17695 #, no-wrap msgid "QEMU, networking" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17334 +#: guix-git/doc/guix.texi:17696 #, no-wrap msgid "{Scheme Variable} %qemu-static-networking" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17338 +#: guix-git/doc/guix.texi:17700 msgid "This is the @code{static-networking} record representing network setup when using QEMU's user-mode network stack on @code{eth0} (@pxref{Using the user mode network stack,,, QEMU, QEMU Documentation})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17340 +#: guix-git/doc/guix.texi:17702 #, no-wrap msgid "DHCP, networking service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17341 +#: guix-git/doc/guix.texi:17703 #, no-wrap msgid "{Scheme Variable} dhcp-client-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17345 +#: guix-git/doc/guix.texi:17707 msgid "This is the type of services that run @var{dhcp}, a Dynamic Host Configuration Protocol (DHCP) client, on all the non-loopback network interfaces. Its value is the DHCP client package to use, @code{isc-dhcp} by default." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17347 +#: guix-git/doc/guix.texi:17709 #, no-wrap msgid "NetworkManager" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17349 +#: guix-git/doc/guix.texi:17711 #, no-wrap msgid "{Scheme Variable} network-manager-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17354 +#: guix-git/doc/guix.texi:17716 msgid "This is the service type for the @uref{https://wiki.gnome.org/Projects/NetworkManager, NetworkManager} service. The value for this service type is a @code{network-manager-configuration} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17357 guix-git/doc/guix.texi:17509 -#: guix-git/doc/guix.texi:17538 +#: guix-git/doc/guix.texi:17719 guix-git/doc/guix.texi:17871 +#: guix-git/doc/guix.texi:17900 msgid "This service is part of @code{%desktop-services} (@pxref{Desktop Services})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17359 +#: guix-git/doc/guix.texi:17721 #, no-wrap msgid "{Data Type} network-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17361 +#: guix-git/doc/guix.texi:17723 msgid "Data type representing the configuration of NetworkManager." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17363 +#: guix-git/doc/guix.texi:17725 #, no-wrap msgid "@code{network-manager} (default: @code{network-manager})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17365 +#: guix-git/doc/guix.texi:17727 msgid "The NetworkManager package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17366 +#: guix-git/doc/guix.texi:17728 #, no-wrap msgid "@code{dns} (default: @code{\"default\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17369 +#: guix-git/doc/guix.texi:17731 msgid "Processing mode for DNS, which affects how NetworkManager uses the @code{resolv.conf} configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17374 +#: guix-git/doc/guix.texi:17736 msgid "NetworkManager will update @code{resolv.conf} to reflect the nameservers provided by currently active connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17375 +#: guix-git/doc/guix.texi:17737 #, no-wrap msgid "dnsmasq" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17379 +#: guix-git/doc/guix.texi:17741 msgid "NetworkManager will run @code{dnsmasq} as a local caching nameserver, using a @dfn{conditional forwarding} configuration if you are connected to a VPN, and then update @code{resolv.conf} to point to the local nameserver." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17385 +#: guix-git/doc/guix.texi:17747 msgid "With this setting, you can share your network connection. For example when you want to share your network connection to another laptop @i{via} an Ethernet cable, you can open @command{nm-connection-editor} and configure the Wired connection's method for IPv4 and IPv6 to be ``Shared to other computers'' and reestablish the connection (or reboot)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17392 +#: guix-git/doc/guix.texi:17754 msgid "You can also set up a @dfn{host-to-guest connection} to QEMU VMs (@pxref{Installing Guix in a VM}). With a host-to-guest connection, you can e.g.@: access a Web server running on the VM (@pxref{Web Services}) from a Web browser on your host system, or connect to the VM @i{via} SSH (@pxref{Networking Services, @code{openssh-service-type}}). To set up a host-to-guest connection, run this command once:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:17399 +#: guix-git/doc/guix.texi:17761 #, no-wrap msgid "" "nmcli connection add type tun \\\n" @@ -30264,50 +30873,50 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17404 +#: guix-git/doc/guix.texi:17766 msgid "Then each time you launch your QEMU VM (@pxref{Running Guix in a VM}), pass @option{-nic tap,ifname=tap0,script=no,downscript=no} to @command{qemu-system-...}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17407 +#: guix-git/doc/guix.texi:17769 msgid "NetworkManager will not modify @code{resolv.conf}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17409 +#: guix-git/doc/guix.texi:17771 #, no-wrap msgid "@code{vpn-plugins} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17413 +#: guix-git/doc/guix.texi:17775 msgid "This is the list of available plugins for virtual private networks (VPNs). An example of this is the @code{network-manager-openvpn} package, which allows NetworkManager to manage VPNs @i{via} OpenVPN." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17417 +#: guix-git/doc/guix.texi:17779 #, no-wrap msgid "Connman" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17418 +#: guix-git/doc/guix.texi:17780 #, no-wrap msgid "{Scheme Variable} connman-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17421 +#: guix-git/doc/guix.texi:17783 msgid "This is the service type to run @url{https://01.org/connman,Connman}, a network connection manager." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17424 +#: guix-git/doc/guix.texi:17786 msgid "Its value must be an @code{connman-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17429 +#: guix-git/doc/guix.texi:17791 #, no-wrap msgid "" "(service connman-service-type\n" @@ -30316,311 +30925,311 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17432 +#: guix-git/doc/guix.texi:17794 msgid "See below for details about @code{connman-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17434 +#: guix-git/doc/guix.texi:17796 #, no-wrap msgid "{Data Type} connman-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17436 +#: guix-git/doc/guix.texi:17798 msgid "Data Type representing the configuration of connman." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17438 +#: guix-git/doc/guix.texi:17800 #, no-wrap msgid "@code{connman} (default: @var{connman})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17440 +#: guix-git/doc/guix.texi:17802 msgid "The connman package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17441 +#: guix-git/doc/guix.texi:17803 #, no-wrap msgid "@code{disable-vpn?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17443 +#: guix-git/doc/guix.texi:17805 msgid "When true, disable connman's vpn plugin." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17446 +#: guix-git/doc/guix.texi:17808 #, no-wrap msgid "WPA Supplicant" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17447 +#: guix-git/doc/guix.texi:17809 #, no-wrap msgid "{Scheme Variable} wpa-supplicant-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17451 +#: guix-git/doc/guix.texi:17813 msgid "This is the service type to run @url{https://w1.fi/wpa_supplicant/,WPA supplicant}, an authentication daemon required to authenticate against encrypted WiFi or ethernet networks." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17453 +#: guix-git/doc/guix.texi:17815 #, no-wrap msgid "{Data Type} wpa-supplicant-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17455 +#: guix-git/doc/guix.texi:17817 msgid "Data type representing the configuration of WPA Supplicant." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17457 guix-git/doc/guix.texi:32945 +#: guix-git/doc/guix.texi:17819 guix-git/doc/guix.texi:33310 msgid "It takes the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17459 +#: guix-git/doc/guix.texi:17821 #, no-wrap msgid "@code{wpa-supplicant} (default: @code{wpa-supplicant})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17461 +#: guix-git/doc/guix.texi:17823 msgid "The WPA Supplicant package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17462 +#: guix-git/doc/guix.texi:17824 #, no-wrap msgid "@code{requirement} (default: @code{'(user-processes loopback syslogd)}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17464 +#: guix-git/doc/guix.texi:17826 msgid "List of services that should be started before WPA Supplicant starts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17465 +#: guix-git/doc/guix.texi:17827 #, no-wrap msgid "@code{dbus?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17467 +#: guix-git/doc/guix.texi:17829 msgid "Whether to listen for requests on D-Bus." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17468 +#: guix-git/doc/guix.texi:17830 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/wpa_supplicant.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17470 +#: guix-git/doc/guix.texi:17832 msgid "Where to store the PID file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17471 guix-git/doc/guix.texi:31246 -#: guix-git/doc/guix.texi:31388 +#: guix-git/doc/guix.texi:17833 guix-git/doc/guix.texi:31611 +#: guix-git/doc/guix.texi:31753 #, no-wrap msgid "@code{interface} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17474 +#: guix-git/doc/guix.texi:17836 msgid "If this is set, it must specify the name of a network interface that WPA supplicant will control." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17475 guix-git/doc/guix.texi:17591 -#: guix-git/doc/guix.texi:22879 +#: guix-git/doc/guix.texi:17837 guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:23241 #, no-wrap msgid "@code{config-file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17477 +#: guix-git/doc/guix.texi:17839 msgid "Optional configuration file to use." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17480 +#: guix-git/doc/guix.texi:17842 msgid "List of additional command-line arguments to pass to the daemon." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17483 +#: guix-git/doc/guix.texi:17845 #, no-wrap msgid "wicd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17486 +#: guix-git/doc/guix.texi:17848 #, no-wrap msgid "network management" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17487 +#: guix-git/doc/guix.texi:17849 #, no-wrap msgid "{Scheme Procedure} wicd-service [#:wicd @var{wicd}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17490 +#: guix-git/doc/guix.texi:17852 msgid "Return a service that runs @url{https://launchpad.net/wicd,Wicd}, a network management daemon that aims to simplify wired and wireless networking." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17495 +#: guix-git/doc/guix.texi:17857 msgid "This service adds the @var{wicd} package to the global profile, providing several commands to interact with the daemon and configure networking: @command{wicd-client}, a graphical user interface, and the @command{wicd-cli} and @command{wicd-curses} user interfaces." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17497 +#: guix-git/doc/guix.texi:17859 #, no-wrap msgid "ModemManager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17500 +#: guix-git/doc/guix.texi:17862 msgid "Some networking devices such as modems require special care, and this is what the services below focus on." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17501 +#: guix-git/doc/guix.texi:17863 #, no-wrap msgid "{Scheme Variable} modem-manager-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17506 +#: guix-git/doc/guix.texi:17868 msgid "This is the service type for the @uref{https://wiki.gnome.org/Projects/ModemManager, ModemManager} service. The value for this service type is a @code{modem-manager-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17511 +#: guix-git/doc/guix.texi:17873 #, no-wrap msgid "{Data Type} modem-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17513 +#: guix-git/doc/guix.texi:17875 msgid "Data type representing the configuration of ModemManager." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17515 +#: guix-git/doc/guix.texi:17877 #, no-wrap msgid "@code{modem-manager} (default: @code{modem-manager})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17517 +#: guix-git/doc/guix.texi:17879 msgid "The ModemManager package to use." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17521 +#: guix-git/doc/guix.texi:17883 #, no-wrap msgid "USB_ModeSwitch" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17522 +#: guix-git/doc/guix.texi:17884 #, no-wrap msgid "Modeswitching" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17524 +#: guix-git/doc/guix.texi:17886 #, no-wrap msgid "{Scheme Variable} usb-modeswitch-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17529 +#: guix-git/doc/guix.texi:17891 msgid "This is the service type for the @uref{https://www.draisberghof.de/usb_modeswitch/, USB_ModeSwitch} service. The value for this service type is a @code{usb-modeswitch-configuration} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17535 +#: guix-git/doc/guix.texi:17897 msgid "When plugged in, some USB modems (and other USB devices) initially present themselves as a read-only storage medium and not as a modem. They need to be @dfn{modeswitched} before they are usable. The USB_ModeSwitch service type installs udev rules to automatically modeswitch these devices when they are plugged in." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17540 +#: guix-git/doc/guix.texi:17902 #, no-wrap msgid "{Data Type} usb-modeswitch-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17542 +#: guix-git/doc/guix.texi:17904 msgid "Data type representing the configuration of USB_ModeSwitch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17544 +#: guix-git/doc/guix.texi:17906 #, no-wrap msgid "@code{usb-modeswitch} (default: @code{usb-modeswitch})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17546 +#: guix-git/doc/guix.texi:17908 msgid "The USB_ModeSwitch package providing the binaries for modeswitching." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17547 +#: guix-git/doc/guix.texi:17909 #, no-wrap msgid "@code{usb-modeswitch-data} (default: @code{usb-modeswitch-data})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17550 +#: guix-git/doc/guix.texi:17912 msgid "The package providing the device data and udev rules file used by USB_ModeSwitch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17551 +#: guix-git/doc/guix.texi:17913 #, no-wrap msgid "@code{config-file} (default: @code{#~(string-append #$usb-modeswitch:dispatcher \"/etc/usb_modeswitch.conf\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17556 +#: guix-git/doc/guix.texi:17918 msgid "Which config file to use for the USB_ModeSwitch dispatcher. By default the config file shipped with USB_ModeSwitch is used which disables logging to @file{/var/log} among other default settings. If set to @code{#f}, no config file is used." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17570 +#: guix-git/doc/guix.texi:17932 msgid "The @code{(gnu services networking)} module discussed in the previous section provides services for more advanced setups: providing a DHCP service for others to use, filtering packets with iptables or nftables, running a WiFi access point with @command{hostapd}, running the @command{inetd} ``superdaemon'', and more. This section describes those." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17571 +#: guix-git/doc/guix.texi:17933 #, no-wrap msgid "{Scheme Procedure} dhcpd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17575 +#: guix-git/doc/guix.texi:17937 msgid "This type defines a service that runs a DHCP daemon. To create a service of this type, you must supply a @code{}. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17581 +#: guix-git/doc/guix.texi:17943 #, no-wrap msgid "" "(service dhcpd-service-type\n" @@ -30630,96 +31239,96 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17584 +#: guix-git/doc/guix.texi:17946 #, no-wrap msgid "{Data Type} dhcpd-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17586 +#: guix-git/doc/guix.texi:17948 #, no-wrap msgid "@code{package} (default: @code{isc-dhcp})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17591 +#: guix-git/doc/guix.texi:17953 msgid "The package that provides the DHCP daemon. This package is expected to provide the daemon at @file{sbin/dhcpd} relative to its output directory. The default package is the @uref{https://www.isc.org/products/DHCP, ISC's DHCP server}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17596 +#: guix-git/doc/guix.texi:17958 msgid "The configuration file to use. This is required. It will be passed to @code{dhcpd} via its @code{-cf} option. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). See @code{man dhcpd.conf} for details on the configuration file syntax." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17596 +#: guix-git/doc/guix.texi:17958 #, no-wrap msgid "@code{version} (default: @code{\"4\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17601 +#: guix-git/doc/guix.texi:17963 msgid "The DHCP version to use. The ISC DHCP server supports the values ``4'', ``6'', and ``4o6''. These correspond to the @code{dhcpd} program options @code{-4}, @code{-6}, and @code{-4o6}. See @code{man dhcpd} for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17601 +#: guix-git/doc/guix.texi:17963 #, no-wrap msgid "@code{run-directory} (default: @code{\"/run/dhcpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17604 +#: guix-git/doc/guix.texi:17966 msgid "The run directory to use. At service activation time, this directory will be created if it does not exist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17604 +#: guix-git/doc/guix.texi:17966 #, no-wrap msgid "@code{pid-file} (default: @code{\"/run/dhcpd/dhcpd.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17607 +#: guix-git/doc/guix.texi:17969 msgid "The PID file to use. This corresponds to the @code{-pf} option of @code{dhcpd}. See @code{man dhcpd} for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17607 +#: guix-git/doc/guix.texi:17969 #, no-wrap msgid "@code{interfaces} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17613 +#: guix-git/doc/guix.texi:17975 msgid "The names of the network interfaces on which dhcpd should listen for broadcasts. If this list is not empty, then its elements (which must be strings) will be appended to the @code{dhcpd} invocation when starting the daemon. It may not be necessary to explicitly specify any interfaces here; see @code{man dhcpd} for details." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17616 +#: guix-git/doc/guix.texi:17978 #, no-wrap msgid "hostapd service, for Wi-Fi access points" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17617 +#: guix-git/doc/guix.texi:17979 #, no-wrap msgid "Wi-Fi access points, hostapd service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17618 +#: guix-git/doc/guix.texi:17980 #, no-wrap msgid "{Scheme Variable} hostapd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17623 +#: guix-git/doc/guix.texi:17985 msgid "This is the service type to run the @uref{https://w1.fi/hostapd/, hostapd} daemon to set up WiFi (IEEE 802.11) access points and authentication servers. Its associated value must be a @code{hostapd-configuration} as shown below:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17631 +#: guix-git/doc/guix.texi:17993 #, no-wrap msgid "" ";; Use wlan1 to run the access point for \"My Network\".\n" @@ -30731,129 +31340,129 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17634 +#: guix-git/doc/guix.texi:17996 #, no-wrap msgid "{Data Type} hostapd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17637 +#: guix-git/doc/guix.texi:17999 msgid "This data type represents the configuration of the hostapd service, with the following fields:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17639 +#: guix-git/doc/guix.texi:18001 #, no-wrap msgid "@code{package} (default: @code{hostapd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17641 +#: guix-git/doc/guix.texi:18003 msgid "The hostapd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17642 +#: guix-git/doc/guix.texi:18004 #, no-wrap msgid "@code{interface} (default: @code{\"wlan0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17644 +#: guix-git/doc/guix.texi:18006 msgid "The network interface to run the WiFi access point." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17645 +#: guix-git/doc/guix.texi:18007 #, no-wrap msgid "ssid" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17648 +#: guix-git/doc/guix.texi:18010 msgid "The SSID (@dfn{service set identifier}), a string that identifies this network." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17649 +#: guix-git/doc/guix.texi:18011 #, no-wrap msgid "@code{broadcast-ssid?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17651 +#: guix-git/doc/guix.texi:18013 msgid "Whether to broadcast this SSID." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17652 +#: guix-git/doc/guix.texi:18014 #, no-wrap msgid "@code{channel} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17654 +#: guix-git/doc/guix.texi:18016 msgid "The WiFi channel to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17655 +#: guix-git/doc/guix.texi:18017 #, no-wrap msgid "@code{driver} (default: @code{\"nl80211\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17659 +#: guix-git/doc/guix.texi:18021 msgid "The driver interface type. @code{\"nl80211\"} is used with all Linux mac80211 drivers. Use @code{\"none\"} if building hostapd as a standalone RADIUS server that does # not control any wireless/wired driver." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17660 guix-git/doc/guix.texi:23728 -#: guix-git/doc/guix.texi:26807 +#: guix-git/doc/guix.texi:18022 guix-git/doc/guix.texi:24090 +#: guix-git/doc/guix.texi:27144 #, no-wrap msgid "@code{extra-settings} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17664 +#: guix-git/doc/guix.texi:18026 msgid "Extra settings to append as-is to the hostapd configuration file. See @uref{https://w1.fi/cgit/hostap/plain/hostapd/hostapd.conf} for the configuration file reference." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17667 +#: guix-git/doc/guix.texi:18029 #, no-wrap msgid "{Scheme Variable} simulated-wifi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17674 +#: guix-git/doc/guix.texi:18036 msgid "This is the type of a service to simulate WiFi networking, which can be useful in virtual machines for testing purposes. The service loads the Linux kernel @uref{https://www.kernel.org/doc/html/latest/networking/mac80211_hwsim/mac80211_hwsim.html, @code{mac80211_hwsim} module} and starts hostapd to create a pseudo WiFi network that can be seen on @code{wlan0}, by default." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17676 +#: guix-git/doc/guix.texi:18038 msgid "The service's value is a @code{hostapd-configuration} record." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17679 +#: guix-git/doc/guix.texi:18041 #, no-wrap msgid "iptables" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17680 +#: guix-git/doc/guix.texi:18042 #, no-wrap msgid "{Scheme Variable} iptables-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17686 +#: guix-git/doc/guix.texi:18048 msgid "This is the service type to set up an iptables configuration. iptables is a packet filtering framework supported by the Linux kernel. This service supports configuring iptables for both IPv4 and IPv6. A simple example configuration rejecting all incoming connections except those to the ssh port 22 is shown below." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17708 +#: guix-git/doc/guix.texi:18070 #, no-wrap msgid "" "(service iptables-service-type\n" @@ -30879,241 +31488,241 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17711 +#: guix-git/doc/guix.texi:18073 #, no-wrap msgid "{Data Type} iptables-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17713 +#: guix-git/doc/guix.texi:18075 msgid "The data type representing the configuration of iptables." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17715 +#: guix-git/doc/guix.texi:18077 #, no-wrap msgid "@code{iptables} (default: @code{iptables})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17718 +#: guix-git/doc/guix.texi:18080 msgid "The iptables package that provides @code{iptables-restore} and @code{ip6tables-restore}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17718 +#: guix-git/doc/guix.texi:18080 #, no-wrap msgid "@code{ipv4-rules} (default: @code{%iptables-accept-all-rules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17722 +#: guix-git/doc/guix.texi:18084 msgid "The iptables rules to use. It will be passed to @code{iptables-restore}. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17722 +#: guix-git/doc/guix.texi:18084 #, no-wrap msgid "@code{ipv6-rules} (default: @code{%iptables-accept-all-rules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17726 +#: guix-git/doc/guix.texi:18088 msgid "The ip6tables rules to use. It will be passed to @code{ip6tables-restore}. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17729 +#: guix-git/doc/guix.texi:18091 #, no-wrap msgid "nftables" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17730 +#: guix-git/doc/guix.texi:18092 #, no-wrap msgid "{Scheme Variable} nftables-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17738 +#: guix-git/doc/guix.texi:18100 msgid "This is the service type to set up a nftables configuration. nftables is a netfilter project that aims to replace the existing iptables, ip6tables, arptables and ebtables framework. It provides a new packet filtering framework, a new user-space utility @command{nft}, and a compatibility layer for iptables. This service comes with a default ruleset @code{%default-nftables-ruleset} that rejecting all incoming connections except those to the ssh port 22. To use it, simply write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17741 +#: guix-git/doc/guix.texi:18103 #, no-wrap msgid "(service nftables-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17744 +#: guix-git/doc/guix.texi:18106 #, no-wrap msgid "{Data Type} nftables-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17746 +#: guix-git/doc/guix.texi:18108 msgid "The data type representing the configuration of nftables." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17748 +#: guix-git/doc/guix.texi:18110 #, no-wrap msgid "@code{package} (default: @code{nftables})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17750 +#: guix-git/doc/guix.texi:18112 msgid "The nftables package that provides @command{nft}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17750 +#: guix-git/doc/guix.texi:18112 #, no-wrap msgid "@code{ruleset} (default: @code{%default-nftables-ruleset})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17753 +#: guix-git/doc/guix.texi:18115 msgid "The nftables ruleset to use. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17756 +#: guix-git/doc/guix.texi:18118 #, no-wrap msgid "NTP (Network Time Protocol), service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17757 +#: guix-git/doc/guix.texi:18119 #, no-wrap msgid "ntpd, service for the Network Time Protocol daemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17758 +#: guix-git/doc/guix.texi:18120 #, no-wrap msgid "real time clock" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17759 +#: guix-git/doc/guix.texi:18121 #, no-wrap msgid "{Scheme Variable} ntp-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17763 +#: guix-git/doc/guix.texi:18125 msgid "This is the type of the service running the @uref{https://www.ntp.org, Network Time Protocol (NTP)} daemon, @command{ntpd}. The daemon will keep the system clock synchronized with that of the specified NTP servers." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17766 +#: guix-git/doc/guix.texi:18128 msgid "The value of this service is an @code{ntpd-configuration} object, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17768 +#: guix-git/doc/guix.texi:18130 #, no-wrap msgid "{Data Type} ntp-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17770 +#: guix-git/doc/guix.texi:18132 msgid "This is the data type for the NTP service configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17772 +#: guix-git/doc/guix.texi:18134 #, no-wrap msgid "@code{servers} (default: @code{%ntp-servers})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17776 +#: guix-git/doc/guix.texi:18138 msgid "This is the list of servers (@code{} records) with which @command{ntpd} will be synchronized. See the @code{ntp-server} data type definition below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17777 +#: guix-git/doc/guix.texi:18139 #, no-wrap msgid "@code{allow-large-adjustment?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17780 +#: guix-git/doc/guix.texi:18142 msgid "This determines whether @command{ntpd} is allowed to make an initial adjustment of more than 1,000 seconds." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17781 +#: guix-git/doc/guix.texi:18143 #, no-wrap msgid "@code{ntp} (default: @code{ntp})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17783 +#: guix-git/doc/guix.texi:18145 msgid "The NTP package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17786 +#: guix-git/doc/guix.texi:18148 #, no-wrap msgid "{Scheme Variable} %ntp-servers" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17789 +#: guix-git/doc/guix.texi:18151 msgid "List of host names used as the default NTP servers. These are servers of the @uref{https://www.ntppool.org/en/, NTP Pool Project}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17791 +#: guix-git/doc/guix.texi:18153 #, no-wrap msgid "{Data Type} ntp-server" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17793 +#: guix-git/doc/guix.texi:18155 msgid "The data type representing the configuration of a NTP server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17795 +#: guix-git/doc/guix.texi:18157 #, no-wrap msgid "@code{type} (default: @code{'server})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17798 +#: guix-git/doc/guix.texi:18160 msgid "The type of the NTP server, given as a symbol. One of @code{'pool}, @code{'server}, @code{'peer}, @code{'broadcast} or @code{'manycastclient}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17799 +#: guix-git/doc/guix.texi:18161 #, no-wrap msgid "address" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17801 +#: guix-git/doc/guix.texi:18163 msgid "The address of the server, as a string." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17802 guix-git/doc/guix.texi:33774 -#: guix-git/doc/guix.texi:33794 +#: guix-git/doc/guix.texi:18164 guix-git/doc/guix.texi:34211 +#: guix-git/doc/guix.texi:34231 #, no-wrap msgid "options" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17807 +#: guix-git/doc/guix.texi:18169 msgid "NTPD options to use with that specific server, given as a list of option names and/or of option names and values tuples. The following example define a server to use with the options @option{iburst} and @option{prefer}, as well as @option{version} 3 and a @option{maxpoll} time of 16 seconds." msgstr "" #. type: example -#: guix-git/doc/guix.texi:17813 +#: guix-git/doc/guix.texi:18175 #, no-wrap msgid "" "(ntp-server\n" @@ -31123,24 +31732,24 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17817 +#: guix-git/doc/guix.texi:18179 #, no-wrap msgid "OpenNTPD" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17818 +#: guix-git/doc/guix.texi:18180 #, no-wrap msgid "{Scheme Procedure} openntpd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17822 +#: guix-git/doc/guix.texi:18184 msgid "Run the @command{ntpd}, the Network Time Protocol (NTP) daemon, as implemented by @uref{http://www.openntpd.org, OpenNTPD}. The daemon will keep the system clock synchronized with that of the given servers." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17831 +#: guix-git/doc/guix.texi:18193 #, no-wrap msgid "" "(service\n" @@ -31154,134 +31763,134 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17835 +#: guix-git/doc/guix.texi:18197 #, no-wrap msgid "{Scheme Variable} %openntpd-servers" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17838 +#: guix-git/doc/guix.texi:18200 msgid "This variable is a list of the server addresses defined in @code{%ntp-servers}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17840 +#: guix-git/doc/guix.texi:18202 #, no-wrap msgid "{Data Type} openntpd-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17842 +#: guix-git/doc/guix.texi:18204 #, no-wrap msgid "@code{openntpd} (default: @code{(file-append openntpd \"/sbin/ntpd\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17844 +#: guix-git/doc/guix.texi:18206 msgid "The openntpd executable to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17844 +#: guix-git/doc/guix.texi:18206 #, no-wrap msgid "@code{listen-on} (default: @code{'(\"127.0.0.1\" \"::1\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17846 +#: guix-git/doc/guix.texi:18208 msgid "A list of local IP addresses or hostnames the ntpd daemon should listen on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17846 +#: guix-git/doc/guix.texi:18208 #, no-wrap msgid "@code{query-from} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17848 +#: guix-git/doc/guix.texi:18210 msgid "A list of local IP address the ntpd daemon should use for outgoing queries." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17848 +#: guix-git/doc/guix.texi:18210 #, no-wrap msgid "@code{sensor} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17853 +#: guix-git/doc/guix.texi:18215 msgid "Specify a list of timedelta sensor devices ntpd should use. @code{ntpd} will listen to each sensor that actually exists and ignore non-existent ones. See @uref{https://man.openbsd.org/ntpd.conf, upstream documentation} for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17853 +#: guix-git/doc/guix.texi:18215 #, no-wrap msgid "@code{server} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17855 +#: guix-git/doc/guix.texi:18217 msgid "Specify a list of IP addresses or hostnames of NTP servers to synchronize to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17855 +#: guix-git/doc/guix.texi:18217 #, no-wrap msgid "@code{servers} (default: @code{%openntp-servers})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17857 +#: guix-git/doc/guix.texi:18219 msgid "Specify a list of IP addresses or hostnames of NTP pools to synchronize to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17857 +#: guix-git/doc/guix.texi:18219 #, no-wrap msgid "@code{constraint-from} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17864 +#: guix-git/doc/guix.texi:18226 msgid "@code{ntpd} can be configured to query the ‘Date’ from trusted HTTPS servers via TLS. This time information is not used for precision but acts as an authenticated constraint, thereby reducing the impact of unauthenticated NTP man-in-the-middle attacks. Specify a list of URLs, IP addresses or hostnames of HTTPS servers to provide a constraint." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17864 +#: guix-git/doc/guix.texi:18226 #, no-wrap msgid "@code{constraints-from} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17868 +#: guix-git/doc/guix.texi:18230 msgid "As with constraint from, specify a list of URLs, IP addresses or hostnames of HTTPS servers to provide a constraint. Should the hostname resolve to multiple IP addresses, @code{ntpd} will calculate a median constraint from all of them." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17871 +#: guix-git/doc/guix.texi:18233 #, no-wrap msgid "inetd" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17872 +#: guix-git/doc/guix.texi:18234 #, no-wrap msgid "{Scheme variable} inetd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17877 +#: guix-git/doc/guix.texi:18239 msgid "This service runs the @command{inetd} (@pxref{inetd invocation,,, inetutils, GNU Inetutils}) daemon. @command{inetd} listens for connections on internet sockets, and lazily starts the specified server program when a connection is made on one of these sockets." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17883 +#: guix-git/doc/guix.texi:18245 msgid "The value of this service is an @code{inetd-configuration} object. The following example configures the @command{inetd} daemon to provide the built-in @command{echo} service, as well as an smtp service which forwards smtp traffic over ssh to a server @code{smtp-server} behind a gateway @code{hostname}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17906 +#: guix-git/doc/guix.texi:18268 #, no-wrap msgid "" "(service\n" @@ -31308,463 +31917,465 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17909 +#: guix-git/doc/guix.texi:18271 msgid "See below for more details about @code{inetd-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17911 +#: guix-git/doc/guix.texi:18273 #, no-wrap msgid "{Data Type} inetd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17913 +#: guix-git/doc/guix.texi:18275 msgid "Data type representing the configuration of @command{inetd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17915 +#: guix-git/doc/guix.texi:18277 #, no-wrap msgid "@code{program} (default: @code{(file-append inetutils \"/libexec/inetd\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17917 +#: guix-git/doc/guix.texi:18279 msgid "The @command{inetd} executable to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17918 guix-git/doc/guix.texi:27655 +#: guix-git/doc/guix.texi:18280 guix-git/doc/guix.texi:27992 #, no-wrap msgid "@code{entries} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17921 +#: guix-git/doc/guix.texi:18283 msgid "A list of @command{inetd} service entries. Each entry should be created by the @code{inetd-entry} constructor." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17924 +#: guix-git/doc/guix.texi:18286 #, no-wrap msgid "{Data Type} inetd-entry" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17928 +#: guix-git/doc/guix.texi:18290 msgid "Data type representing an entry in the @command{inetd} configuration. Each entry corresponds to a socket where @command{inetd} will listen for requests." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17930 +#: guix-git/doc/guix.texi:18292 #, no-wrap msgid "@code{node} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17935 +#: guix-git/doc/guix.texi:18297 msgid "Optional string, a comma-separated list of local addresses @command{inetd} should use when listening for this service. @xref{Configuration file,,, inetutils, GNU Inetutils} for a complete description of all options." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17937 +#: guix-git/doc/guix.texi:18299 msgid "A string, the name must correspond to an entry in @code{/etc/services}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17937 +#: guix-git/doc/guix.texi:18299 #, no-wrap msgid "socket-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17940 +#: guix-git/doc/guix.texi:18302 msgid "One of @code{'stream}, @code{'dgram}, @code{'raw}, @code{'rdm} or @code{'seqpacket}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17940 +#: guix-git/doc/guix.texi:18302 #, no-wrap msgid "protocol" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17942 +#: guix-git/doc/guix.texi:18304 msgid "A string, must correspond to an entry in @code{/etc/protocols}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17942 +#: guix-git/doc/guix.texi:18304 #, no-wrap msgid "@code{wait?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17945 +#: guix-git/doc/guix.texi:18307 msgid "Whether @command{inetd} should wait for the server to exit before listening to new service requests." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17950 +#: guix-git/doc/guix.texi:18312 msgid "A string containing the user (and, optionally, group) name of the user as whom the server should run. The group name can be specified in a suffix, separated by a colon or period, i.e.@: @code{\"user\"}, @code{\"user:group\"} or @code{\"user.group\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17950 +#: guix-git/doc/guix.texi:18312 #, no-wrap msgid "@code{program} (default: @code{\"internal\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:18315 msgid "The server program which will serve the requests, or @code{\"internal\"} if @command{inetd} should use a built-in service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17958 +#: guix-git/doc/guix.texi:18320 msgid "A list strings or file-like objects, which are the server program's arguments, starting with the zeroth argument, i.e.@: the name of the program itself. For @command{inetd}'s internal services, this entry must be @code{'()} or @code{'(\"internal\")}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17962 +#: guix-git/doc/guix.texi:18324 msgid "@xref{Configuration file,,, inetutils, GNU Inetutils} for a more detailed discussion of each configuration field." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17964 +#: guix-git/doc/guix.texi:18326 #, no-wrap msgid "opendht, distributed hash table network service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17965 +#: guix-git/doc/guix.texi:18327 #, no-wrap msgid "dhtproxy, for use with jami" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17966 +#: guix-git/doc/guix.texi:18328 #, no-wrap msgid "{Scheme Variable} opendht-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17971 +#: guix-git/doc/guix.texi:18333 msgid "This is the type of the service running a @uref{https://opendht.net, OpenDHT} node, @command{dhtnode}. The daemon can be used to host your own proxy service to the distributed hash table (DHT), for example to connect to with Jami, among other applications." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:17981 +#: guix-git/doc/guix.texi:18343 msgid "When using the OpenDHT proxy server, the IP addresses it ``sees'' from the clients should be addresses reachable from other peers. In practice this means that a publicly reachable address is best suited for a proxy server, outside of your private network. For example, hosting the proxy server on a IPv4 private local network and exposing it via port forwarding could work for external peers, but peers local to the proxy would have their private addresses shared with the external peers, leading to connectivity problems." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17985 +#: guix-git/doc/guix.texi:18347 msgid "The value of this service is a @code{opendht-configuration} object, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17987 +#: guix-git/doc/guix.texi:18349 #, no-wrap msgid "{Data Type} opendht-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17989 +#: guix-git/doc/guix.texi:18351 msgid "This is the data type for the OpenDHT service configuration." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17994 +#: guix-git/doc/guix.texi:18356 msgid "Available @code{opendht-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:17995 +#: guix-git/doc/guix.texi:18357 #, no-wrap msgid "{@code{opendht-configuration} parameter} package opendht" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:17997 +#: guix-git/doc/guix.texi:18359 msgid "The @code{opendht} package to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18000 +#: guix-git/doc/guix.texi:18362 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean peer-discovery?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18002 +#: guix-git/doc/guix.texi:18364 msgid "Whether to enable the multicast local peer discovery mechanism." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18004 guix-git/doc/guix.texi:18012 -#: guix-git/doc/guix.texi:18020 guix-git/doc/guix.texi:19712 -#: guix-git/doc/guix.texi:19788 guix-git/doc/guix.texi:19830 -#: guix-git/doc/guix.texi:19850 guix-git/doc/guix.texi:19856 -#: guix-git/doc/guix.texi:19872 guix-git/doc/guix.texi:19960 -#: guix-git/doc/guix.texi:20048 guix-git/doc/guix.texi:20361 -#: guix-git/doc/guix.texi:20374 guix-git/doc/guix.texi:21492 -#: guix-git/doc/guix.texi:22970 guix-git/doc/guix.texi:23076 -#: guix-git/doc/guix.texi:23141 guix-git/doc/guix.texi:23150 -#: guix-git/doc/guix.texi:24383 guix-git/doc/guix.texi:24427 -#: guix-git/doc/guix.texi:24444 guix-git/doc/guix.texi:24452 -#: guix-git/doc/guix.texi:24467 guix-git/doc/guix.texi:24485 -#: guix-git/doc/guix.texi:24509 guix-git/doc/guix.texi:24562 -#: guix-git/doc/guix.texi:24695 guix-git/doc/guix.texi:24729 -#: guix-git/doc/guix.texi:24765 guix-git/doc/guix.texi:24781 -#: guix-git/doc/guix.texi:24809 guix-git/doc/guix.texi:24870 -#: guix-git/doc/guix.texi:24953 guix-git/doc/guix.texi:28367 -#: guix-git/doc/guix.texi:28381 guix-git/doc/guix.texi:28403 -#: guix-git/doc/guix.texi:28522 guix-git/doc/guix.texi:28536 -#: guix-git/doc/guix.texi:28557 guix-git/doc/guix.texi:28578 -#: guix-git/doc/guix.texi:28585 guix-git/doc/guix.texi:28630 -#: guix-git/doc/guix.texi:28637 guix-git/doc/guix.texi:29426 -#: guix-git/doc/guix.texi:29440 guix-git/doc/guix.texi:29612 -#: guix-git/doc/guix.texi:29657 guix-git/doc/guix.texi:29744 -#: guix-git/doc/guix.texi:29946 guix-git/doc/guix.texi:29979 -#: guix-git/doc/guix.texi:30119 guix-git/doc/guix.texi:30130 -#: guix-git/doc/guix.texi:30381 guix-git/doc/guix.texi:31900 -#: guix-git/doc/guix.texi:31909 guix-git/doc/guix.texi:31917 -#: guix-git/doc/guix.texi:31925 guix-git/doc/guix.texi:31941 -#: guix-git/doc/guix.texi:31957 guix-git/doc/guix.texi:31965 -#: guix-git/doc/guix.texi:31973 guix-git/doc/guix.texi:31982 -#: guix-git/doc/guix.texi:31991 guix-git/doc/guix.texi:32007 -#: guix-git/doc/guix.texi:32071 guix-git/doc/guix.texi:32177 -#: guix-git/doc/guix.texi:32185 guix-git/doc/guix.texi:32193 -#: guix-git/doc/guix.texi:32218 guix-git/doc/guix.texi:32272 -#: guix-git/doc/guix.texi:32320 guix-git/doc/guix.texi:32521 -#: guix-git/doc/guix.texi:32528 +#: guix-git/doc/guix.texi:18366 guix-git/doc/guix.texi:18374 +#: guix-git/doc/guix.texi:18382 guix-git/doc/guix.texi:20074 +#: guix-git/doc/guix.texi:20150 guix-git/doc/guix.texi:20192 +#: guix-git/doc/guix.texi:20212 guix-git/doc/guix.texi:20218 +#: guix-git/doc/guix.texi:20234 guix-git/doc/guix.texi:20322 +#: guix-git/doc/guix.texi:20410 guix-git/doc/guix.texi:20723 +#: guix-git/doc/guix.texi:20736 guix-git/doc/guix.texi:21854 +#: guix-git/doc/guix.texi:23332 guix-git/doc/guix.texi:23438 +#: guix-git/doc/guix.texi:23503 guix-git/doc/guix.texi:23512 +#: guix-git/doc/guix.texi:24745 guix-git/doc/guix.texi:24789 +#: guix-git/doc/guix.texi:24806 guix-git/doc/guix.texi:24814 +#: guix-git/doc/guix.texi:24829 guix-git/doc/guix.texi:24847 +#: guix-git/doc/guix.texi:24871 guix-git/doc/guix.texi:24924 +#: guix-git/doc/guix.texi:25057 guix-git/doc/guix.texi:25091 +#: guix-git/doc/guix.texi:25127 guix-git/doc/guix.texi:25143 +#: guix-git/doc/guix.texi:25171 guix-git/doc/guix.texi:25232 +#: guix-git/doc/guix.texi:25315 guix-git/doc/guix.texi:28704 +#: guix-git/doc/guix.texi:28718 guix-git/doc/guix.texi:28740 +#: guix-git/doc/guix.texi:28859 guix-git/doc/guix.texi:28873 +#: guix-git/doc/guix.texi:28894 guix-git/doc/guix.texi:28915 +#: guix-git/doc/guix.texi:28922 guix-git/doc/guix.texi:28967 +#: guix-git/doc/guix.texi:28974 guix-git/doc/guix.texi:29763 +#: guix-git/doc/guix.texi:29777 guix-git/doc/guix.texi:29977 +#: guix-git/doc/guix.texi:30022 guix-git/doc/guix.texi:30109 +#: guix-git/doc/guix.texi:30311 guix-git/doc/guix.texi:30344 +#: guix-git/doc/guix.texi:30484 guix-git/doc/guix.texi:30495 +#: guix-git/doc/guix.texi:30746 guix-git/doc/guix.texi:32265 +#: guix-git/doc/guix.texi:32274 guix-git/doc/guix.texi:32282 +#: guix-git/doc/guix.texi:32290 guix-git/doc/guix.texi:32306 +#: guix-git/doc/guix.texi:32322 guix-git/doc/guix.texi:32330 +#: guix-git/doc/guix.texi:32338 guix-git/doc/guix.texi:32347 +#: guix-git/doc/guix.texi:32356 guix-git/doc/guix.texi:32372 +#: guix-git/doc/guix.texi:32436 guix-git/doc/guix.texi:32542 +#: guix-git/doc/guix.texi:32550 guix-git/doc/guix.texi:32558 +#: guix-git/doc/guix.texi:32583 guix-git/doc/guix.texi:32637 +#: guix-git/doc/guix.texi:32685 guix-git/doc/guix.texi:32886 +#: guix-git/doc/guix.texi:32893 msgid "Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18007 +#: guix-git/doc/guix.texi:18369 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean enable-logging?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18010 +#: guix-git/doc/guix.texi:18372 msgid "Whether to enable logging messages to syslog. It is disabled by default as it is rather verbose." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18015 +#: guix-git/doc/guix.texi:18377 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean debug?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18018 +#: guix-git/doc/guix.texi:18380 msgid "Whether to enable debug-level logging messages. This has no effect if logging is disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18023 +#: guix-git/doc/guix.texi:18385 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-string bootstrap-host" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18029 +#: guix-git/doc/guix.texi:18391 msgid "The node host name that is used to make the first connection to the network. A specific port value can be provided by appending the @code{:PORT} suffix. By default, it uses the Jami bootstrap nodes, but any host can be specified here. It's also possible to disable bootsrapping by setting this to the @code{'disabled} symbol." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18031 +#: guix-git/doc/guix.texi:18393 msgid "Defaults to @samp{\"bootstrap.jami.net:4222\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18034 +#: guix-git/doc/guix.texi:18396 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18037 +#: guix-git/doc/guix.texi:18399 msgid "The UDP port to bind to. When set to @code{'disabled}, an available port is automatically selected." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18039 +#: guix-git/doc/guix.texi:18401 msgid "Defaults to @samp{4222}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18042 +#: guix-git/doc/guix.texi:18404 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number proxy-server-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18044 +#: guix-git/doc/guix.texi:18406 msgid "Spawn a proxy server listening on the specified port." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18046 guix-git/doc/guix.texi:18053 -#: guix-git/doc/guix.texi:24391 guix-git/doc/guix.texi:24435 -#: guix-git/doc/guix.texi:24648 guix-git/doc/guix.texi:24704 -#: guix-git/doc/guix.texi:24878 guix-git/doc/guix.texi:24889 -#: guix-git/doc/guix.texi:24962 guix-git/doc/guix.texi:25687 -#: guix-git/doc/guix.texi:25730 guix-git/doc/guix.texi:25738 -#: guix-git/doc/guix.texi:25746 guix-git/doc/guix.texi:25754 -#: guix-git/doc/guix.texi:25763 guix-git/doc/guix.texi:25771 -#: guix-git/doc/guix.texi:25778 guix-git/doc/guix.texi:25786 -#: guix-git/doc/guix.texi:25794 guix-git/doc/guix.texi:25804 -#: guix-git/doc/guix.texi:25811 guix-git/doc/guix.texi:25835 -#: guix-git/doc/guix.texi:25843 guix-git/doc/guix.texi:25869 -#: guix-git/doc/guix.texi:25878 guix-git/doc/guix.texi:25887 -#: guix-git/doc/guix.texi:25896 guix-git/doc/guix.texi:25905 -#: guix-git/doc/guix.texi:25914 guix-git/doc/guix.texi:25922 -#: guix-git/doc/guix.texi:25930 guix-git/doc/guix.texi:25937 -#: guix-git/doc/guix.texi:25945 guix-git/doc/guix.texi:25952 -#: guix-git/doc/guix.texi:25960 guix-git/doc/guix.texi:25968 -#: guix-git/doc/guix.texi:25977 guix-git/doc/guix.texi:25986 -#: guix-git/doc/guix.texi:25994 guix-git/doc/guix.texi:26002 -#: guix-git/doc/guix.texi:26010 guix-git/doc/guix.texi:26021 -#: guix-git/doc/guix.texi:26031 guix-git/doc/guix.texi:26042 -#: guix-git/doc/guix.texi:26051 guix-git/doc/guix.texi:26061 -#: guix-git/doc/guix.texi:26069 guix-git/doc/guix.texi:26080 -#: guix-git/doc/guix.texi:26089 guix-git/doc/guix.texi:26099 -#: guix-git/doc/guix.texi:29339 guix-git/doc/guix.texi:29346 -#: guix-git/doc/guix.texi:29353 guix-git/doc/guix.texi:29360 -#: guix-git/doc/guix.texi:29367 guix-git/doc/guix.texi:29374 -#: guix-git/doc/guix.texi:29382 guix-git/doc/guix.texi:29390 -#: guix-git/doc/guix.texi:29397 guix-git/doc/guix.texi:29404 -#: guix-git/doc/guix.texi:29411 guix-git/doc/guix.texi:29418 -#: guix-git/doc/guix.texi:29448 guix-git/doc/guix.texi:29486 -#: guix-git/doc/guix.texi:29493 guix-git/doc/guix.texi:29502 -#: guix-git/doc/guix.texi:29524 guix-git/doc/guix.texi:29532 -#: guix-git/doc/guix.texi:29539 guix-git/doc/guix.texi:29694 -#: guix-git/doc/guix.texi:29714 guix-git/doc/guix.texi:29729 -#: guix-git/doc/guix.texi:29736 guix-git/doc/guix.texi:32473 -#: guix-git/doc/guix.texi:32481 guix-git/doc/guix.texi:32489 -#: guix-git/doc/guix.texi:32497 guix-git/doc/guix.texi:32505 -#: guix-git/doc/guix.texi:32513 +#: guix-git/doc/guix.texi:18408 guix-git/doc/guix.texi:18415 +#: guix-git/doc/guix.texi:24753 guix-git/doc/guix.texi:24797 +#: guix-git/doc/guix.texi:25010 guix-git/doc/guix.texi:25066 +#: guix-git/doc/guix.texi:25240 guix-git/doc/guix.texi:25251 +#: guix-git/doc/guix.texi:25324 guix-git/doc/guix.texi:26024 +#: guix-git/doc/guix.texi:26067 guix-git/doc/guix.texi:26075 +#: guix-git/doc/guix.texi:26083 guix-git/doc/guix.texi:26091 +#: guix-git/doc/guix.texi:26100 guix-git/doc/guix.texi:26108 +#: guix-git/doc/guix.texi:26115 guix-git/doc/guix.texi:26123 +#: guix-git/doc/guix.texi:26131 guix-git/doc/guix.texi:26141 +#: guix-git/doc/guix.texi:26148 guix-git/doc/guix.texi:26172 +#: guix-git/doc/guix.texi:26180 guix-git/doc/guix.texi:26206 +#: guix-git/doc/guix.texi:26215 guix-git/doc/guix.texi:26224 +#: guix-git/doc/guix.texi:26233 guix-git/doc/guix.texi:26242 +#: guix-git/doc/guix.texi:26251 guix-git/doc/guix.texi:26259 +#: guix-git/doc/guix.texi:26267 guix-git/doc/guix.texi:26274 +#: guix-git/doc/guix.texi:26282 guix-git/doc/guix.texi:26289 +#: guix-git/doc/guix.texi:26297 guix-git/doc/guix.texi:26305 +#: guix-git/doc/guix.texi:26314 guix-git/doc/guix.texi:26323 +#: guix-git/doc/guix.texi:26331 guix-git/doc/guix.texi:26339 +#: guix-git/doc/guix.texi:26347 guix-git/doc/guix.texi:26358 +#: guix-git/doc/guix.texi:26368 guix-git/doc/guix.texi:26379 +#: guix-git/doc/guix.texi:26388 guix-git/doc/guix.texi:26398 +#: guix-git/doc/guix.texi:26406 guix-git/doc/guix.texi:26417 +#: guix-git/doc/guix.texi:26426 guix-git/doc/guix.texi:26436 +#: guix-git/doc/guix.texi:29676 guix-git/doc/guix.texi:29683 +#: guix-git/doc/guix.texi:29690 guix-git/doc/guix.texi:29697 +#: guix-git/doc/guix.texi:29704 guix-git/doc/guix.texi:29711 +#: guix-git/doc/guix.texi:29719 guix-git/doc/guix.texi:29727 +#: guix-git/doc/guix.texi:29734 guix-git/doc/guix.texi:29741 +#: guix-git/doc/guix.texi:29748 guix-git/doc/guix.texi:29755 +#: guix-git/doc/guix.texi:29785 guix-git/doc/guix.texi:29823 +#: guix-git/doc/guix.texi:29830 guix-git/doc/guix.texi:29839 +#: guix-git/doc/guix.texi:29861 guix-git/doc/guix.texi:29869 +#: guix-git/doc/guix.texi:29876 guix-git/doc/guix.texi:29905 +#: guix-git/doc/guix.texi:29912 guix-git/doc/guix.texi:29919 +#: guix-git/doc/guix.texi:29926 guix-git/doc/guix.texi:30059 +#: guix-git/doc/guix.texi:30079 guix-git/doc/guix.texi:30094 +#: guix-git/doc/guix.texi:30101 guix-git/doc/guix.texi:32838 +#: guix-git/doc/guix.texi:32846 guix-git/doc/guix.texi:32854 +#: guix-git/doc/guix.texi:32862 guix-git/doc/guix.texi:32870 +#: guix-git/doc/guix.texi:32878 msgid "Defaults to @samp{disabled}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18049 +#: guix-git/doc/guix.texi:18411 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number proxy-server-port-tls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18051 +#: guix-git/doc/guix.texi:18413 msgid "Spawn a proxy server listening to TLS connections on the specified port." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18057 +#: guix-git/doc/guix.texi:18419 #, no-wrap msgid "Tor" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18058 +#: guix-git/doc/guix.texi:18420 #, no-wrap msgid "{Scheme Variable} tor-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18063 +#: guix-git/doc/guix.texi:18425 msgid "This is the type for a service that runs the @uref{https://torproject.org, Tor} anonymous networking daemon. The service is configured using a @code{} record. By default, the Tor daemon runs as the @code{tor} unprivileged user, which is a member of the @code{tor} group." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18066 +#: guix-git/doc/guix.texi:18428 #, no-wrap msgid "{Data Type} tor-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18068 +#: guix-git/doc/guix.texi:18430 #, no-wrap msgid "@code{tor} (default: @code{tor})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18073 +#: guix-git/doc/guix.texi:18435 msgid "The package that provides the Tor daemon. This package is expected to provide the daemon at @file{bin/tor} relative to its output directory. The default package is the @uref{https://www.torproject.org, Tor Project's} implementation." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18074 +#: guix-git/doc/guix.texi:18436 #, no-wrap msgid "@code{config-file} (default: @code{(plain-file \"empty\" \"\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18080 +#: guix-git/doc/guix.texi:18442 msgid "The configuration file to use. It will be appended to a default configuration file, and the final configuration file will be passed to @code{tor} via its @code{-f} option. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). See @code{man tor} for details on the configuration file syntax." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18081 +#: guix-git/doc/guix.texi:18443 #, no-wrap msgid "@code{hidden-services} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18087 +#: guix-git/doc/guix.texi:18449 msgid "The list of @code{} records to use. For any hidden service you include in this list, appropriate configuration to enable the hidden service will be automatically added to the default configuration file. You may conveniently create @code{} records using the @code{tor-hidden-service} procedure described below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18088 +#: guix-git/doc/guix.texi:18450 #, no-wrap msgid "@code{socks-socket-type} (default: @code{'tcp})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18095 +#: guix-git/doc/guix.texi:18457 msgid "The default socket type that Tor should use for its SOCKS socket. This must be either @code{'tcp} or @code{'unix}. If it is @code{'tcp}, then by default Tor will listen on TCP port 9050 on the loopback interface (i.e., localhost). If it is @code{'unix}, then Tor will listen on the UNIX domain socket @file{/var/run/tor/socks-sock}, which will be made writable by members of the @code{tor} group." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18100 +#: guix-git/doc/guix.texi:18462 msgid "If you want to customize the SOCKS socket in more detail, leave @code{socks-socket-type} at its default value of @code{'tcp} and use @code{config-file} to override the default by providing your own @code{SocksPort} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18101 +#: guix-git/doc/guix.texi:18463 #, no-wrap msgid "@code{control-socket?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18107 +#: guix-git/doc/guix.texi:18469 msgid "Whether or not to provide a ``control socket'' by which Tor can be controlled to, for instance, dynamically instantiate tor onion services. If @code{#t}, Tor will listen for control commands on the UNIX domain socket @file{/var/run/tor/control-sock}, which will be made writable by members of the @code{tor} group." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18111 +#: guix-git/doc/guix.texi:18473 #, no-wrap msgid "hidden service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18112 +#: guix-git/doc/guix.texi:18474 #, no-wrap msgid "{Scheme Procedure} tor-hidden-service @var{name} @var{mapping}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18115 +#: guix-git/doc/guix.texi:18477 msgid "Define a new Tor @dfn{hidden service} called @var{name} and implementing @var{mapping}. @var{mapping} is a list of port/host tuples, such as:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18119 +#: guix-git/doc/guix.texi:18481 #, no-wrap msgid "" " '((22 \"127.0.0.1:22\")\n" @@ -31772,43 +32383,43 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18123 +#: guix-git/doc/guix.texi:18485 msgid "In this example, port 22 of the hidden service is mapped to local port 22, and port 80 is mapped to local port 8080." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18127 +#: guix-git/doc/guix.texi:18489 msgid "This creates a @file{/var/lib/tor/hidden-services/@var{name}} directory, where the @file{hostname} file contains the @code{.onion} host name for the hidden service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18130 +#: guix-git/doc/guix.texi:18492 msgid "See @uref{https://www.torproject.org/docs/tor-hidden-service.html.en, the Tor project's documentation} for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18133 +#: guix-git/doc/guix.texi:18495 msgid "The @code{(gnu services rsync)} module provides the following services:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18137 +#: guix-git/doc/guix.texi:18499 msgid "You might want an rsync daemon if you have files that you want available so anyone (or just yourself) can download existing files or upload new files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18138 +#: guix-git/doc/guix.texi:18500 #, no-wrap msgid "{Scheme Variable} rsync-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18142 +#: guix-git/doc/guix.texi:18504 msgid "This is the service type for the @uref{https://rsync.samba.org, rsync} daemon, The value for this service type is a @command{rsync-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18155 +#: guix-git/doc/guix.texi:18517 #, no-wrap msgid "" ";; Export two directories over rsync. By default rsync listens on\n" @@ -31825,236 +32436,236 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18158 +#: guix-git/doc/guix.texi:18520 msgid "See below for details about @code{rsync-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18160 +#: guix-git/doc/guix.texi:18522 #, no-wrap msgid "{Data Type} rsync-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18162 +#: guix-git/doc/guix.texi:18524 msgid "Data type representing the configuration for @code{rsync-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18164 +#: guix-git/doc/guix.texi:18526 #, no-wrap msgid "@code{package} (default: @var{rsync})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18166 +#: guix-git/doc/guix.texi:18528 msgid "@code{rsync} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18167 guix-git/doc/guix.texi:31480 +#: guix-git/doc/guix.texi:18529 guix-git/doc/guix.texi:31845 #, no-wrap msgid "@code{address} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18170 +#: guix-git/doc/guix.texi:18532 msgid "IP address on which @command{rsync} listens for incoming connections. If unspecified, it defaults to listening on all available addresses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18171 +#: guix-git/doc/guix.texi:18533 #, no-wrap msgid "@code{port-number} (default: @code{873})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18175 +#: guix-git/doc/guix.texi:18537 msgid "TCP port on which @command{rsync} listens for incoming connections. If port is less than @code{1024} @command{rsync} needs to be started as the @code{root} user and group." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18176 +#: guix-git/doc/guix.texi:18538 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/rsyncd/rsyncd.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18178 +#: guix-git/doc/guix.texi:18540 msgid "Name of the file where @command{rsync} writes its PID." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18179 +#: guix-git/doc/guix.texi:18541 #, no-wrap msgid "@code{lock-file} (default: @code{\"/var/run/rsyncd/rsyncd.lock\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18181 +#: guix-git/doc/guix.texi:18543 msgid "Name of the file where @command{rsync} writes its lock file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18182 +#: guix-git/doc/guix.texi:18544 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/rsyncd.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18184 +#: guix-git/doc/guix.texi:18546 msgid "Name of the file where @command{rsync} writes its log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18185 guix-git/doc/guix.texi:35582 +#: guix-git/doc/guix.texi:18547 guix-git/doc/guix.texi:36062 #, no-wrap msgid "@code{user} (default: @code{\"root\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18187 +#: guix-git/doc/guix.texi:18549 msgid "Owner of the @code{rsync} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18188 +#: guix-git/doc/guix.texi:18550 #, no-wrap msgid "@code{group} (default: @code{\"root\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18190 +#: guix-git/doc/guix.texi:18552 msgid "Group of the @code{rsync} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18191 +#: guix-git/doc/guix.texi:18553 #, no-wrap msgid "@code{uid} (default: @code{\"rsyncd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18194 +#: guix-git/doc/guix.texi:18556 msgid "User name or user ID that file transfers to and from that module should take place as when the daemon was run as @code{root}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18195 +#: guix-git/doc/guix.texi:18557 #, no-wrap msgid "@code{gid} (default: @code{\"rsyncd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18197 guix-git/doc/guix.texi:18676 +#: guix-git/doc/guix.texi:18559 guix-git/doc/guix.texi:19038 msgid "Group name or group ID that will be used when accessing the module." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18198 guix-git/doc/guix.texi:36378 +#: guix-git/doc/guix.texi:18560 guix-git/doc/guix.texi:36868 #, no-wrap msgid "@code{modules} (default: @code{%default-modules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18201 +#: guix-git/doc/guix.texi:18563 msgid "List of ``modules''---i.e., directories exported over rsync. Each element must be a @code{rsync-module} record, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18204 +#: guix-git/doc/guix.texi:18566 #, no-wrap msgid "{Data Type} rsync-module" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18207 +#: guix-git/doc/guix.texi:18569 msgid "This is the data type for rsync ``modules''. A module is a directory exported over the rsync protocol. The available fields are as follows:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18213 +#: guix-git/doc/guix.texi:18575 msgid "The module name. This is the name that shows up in URLs. For example, if the module is called @code{music}, the corresponding URL will be @code{rsync://host.example.org/music}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18214 +#: guix-git/doc/guix.texi:18576 #, fuzzy, no-wrap msgid "file-name" msgstr "نام بسته" #. type: table -#: guix-git/doc/guix.texi:18216 +#: guix-git/doc/guix.texi:18578 msgid "Name of the directory being exported." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18220 +#: guix-git/doc/guix.texi:18582 msgid "Comment associated with the module. Client user interfaces may display it when they obtain the list of available modules." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18221 +#: guix-git/doc/guix.texi:18583 #, no-wrap msgid "@code{read-only?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18225 +#: guix-git/doc/guix.texi:18587 msgid "Whether or not client will be able to upload files. If this is false, the uploads will be authorized if permissions on the daemon side permit it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18226 +#: guix-git/doc/guix.texi:18588 #, no-wrap msgid "@code{chroot?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18230 +#: guix-git/doc/guix.texi:18592 msgid "When this is true, the rsync daemon changes root to the module's directory before starting file transfers with the client. This improves security, but requires rsync to run as root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18231 +#: guix-git/doc/guix.texi:18593 #, no-wrap msgid "@code{timeout} (default: @code{300})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18234 +#: guix-git/doc/guix.texi:18596 msgid "Idle time in seconds after which the daemon closes a connection with the client." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18238 +#: guix-git/doc/guix.texi:18600 msgid "The @code{(gnu services syncthing)} module provides the following services:" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18238 +#: guix-git/doc/guix.texi:18600 #, no-wrap msgid "syncthing" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18243 +#: guix-git/doc/guix.texi:18605 msgid "You might want a syncthing daemon if you have files between two or more computers and want to sync them in real time, safely protected from prying eyes." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18244 +#: guix-git/doc/guix.texi:18606 #, no-wrap msgid "{Scheme Variable} syncthing-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18248 +#: guix-git/doc/guix.texi:18610 msgid "This is the service type for the @uref{https://syncthing.net/, syncthing} daemon, The value for this service type is a @command{syncthing-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18252 +#: guix-git/doc/guix.texi:18614 #, no-wrap msgid "" "(service syncthing-service-type\n" @@ -32062,160 +32673,160 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18255 +#: guix-git/doc/guix.texi:18617 msgid "See below for details about @code{syncthing-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18256 +#: guix-git/doc/guix.texi:18618 #, no-wrap msgid "{Data Type} syncthing-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18258 +#: guix-git/doc/guix.texi:18620 msgid "Data type representing the configuration for @code{syncthing-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18260 +#: guix-git/doc/guix.texi:18622 #, no-wrap msgid "@code{syncthing} (default: @var{syncthing})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18262 +#: guix-git/doc/guix.texi:18624 msgid "@code{syncthing} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18263 +#: guix-git/doc/guix.texi:18625 #, no-wrap msgid "@code{arguments} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18265 +#: guix-git/doc/guix.texi:18627 msgid "List of command-line arguments passing to @code{syncthing} binary." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18266 +#: guix-git/doc/guix.texi:18628 #, no-wrap msgid "@code{logflags} (default: @var{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18269 +#: guix-git/doc/guix.texi:18631 msgid "Sum of logging flags, see @uref{https://docs.syncthing.net/users/syncthing.html#cmdoption-logflags, Syncthing documentation logflags}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18270 +#: guix-git/doc/guix.texi:18632 #, no-wrap msgid "@code{user} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18273 +#: guix-git/doc/guix.texi:18635 msgid "The user as which the Syncthing service is to be run. This assumes that the specified user exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18274 +#: guix-git/doc/guix.texi:18636 #, no-wrap msgid "@code{group} (default: @var{\"users\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18277 +#: guix-git/doc/guix.texi:18639 msgid "The group as which the Syncthing service is to be run. This assumes that the specified group exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18278 +#: guix-git/doc/guix.texi:18640 #, no-wrap msgid "@code{home} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18281 +#: guix-git/doc/guix.texi:18643 msgid "Common configuration and data directory. The default configuration directory is @file{$HOME} of the specified Syncthing @code{user}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18287 +#: guix-git/doc/guix.texi:18649 msgid "Furthermore, @code{(gnu services ssh)} provides the following services." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18287 guix-git/doc/guix.texi:18326 -#: guix-git/doc/guix.texi:35715 +#: guix-git/doc/guix.texi:18649 guix-git/doc/guix.texi:18688 +#: guix-git/doc/guix.texi:36205 #, no-wrap msgid "SSH" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18288 guix-git/doc/guix.texi:18327 -#: guix-git/doc/guix.texi:35716 +#: guix-git/doc/guix.texi:18650 guix-git/doc/guix.texi:18689 +#: guix-git/doc/guix.texi:36206 #, no-wrap msgid "SSH server" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18290 +#: guix-git/doc/guix.texi:18652 #, no-wrap msgid "{Scheme Procedure} lsh-service [#:host-key \"/etc/lsh/host-key\"] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18299 +#: guix-git/doc/guix.texi:18661 msgid "[#:daemonic? #t] [#:interfaces '()] [#:port-number 22] @ [#:allow-empty-passwords? #f] [#:root-login? #f] @ [#:syslog-output? #t] [#:x11-forwarding? #t] @ [#:tcp/ip-forwarding? #t] [#:password-authentication? #t] @ [#:public-key-authentication? #t] [#:initialize? #t] Run the @command{lshd} program from @var{lsh} to listen on port @var{port-number}. @var{host-key} must designate a file containing the host key, and readable only by root." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18305 +#: guix-git/doc/guix.texi:18667 msgid "When @var{daemonic?} is true, @command{lshd} will detach from the controlling terminal and log its output to syslogd, unless one sets @var{syslog-output?} to false. Obviously, it also makes lsh-service depend on existence of syslogd service. When @var{pid-file?} is true, @command{lshd} writes its PID to the file called @var{pid-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18309 +#: guix-git/doc/guix.texi:18671 msgid "When @var{initialize?} is true, automatically create the seed and host key upon service activation if they do not exist yet. This may take long and require interaction." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18314 +#: guix-git/doc/guix.texi:18676 msgid "When @var{initialize?} is false, it is up to the user to initialize the randomness generator (@pxref{lsh-make-seed,,, lsh, LSH Manual}), and to create a key pair with the private key stored in file @var{host-key} (@pxref{lshd basics,,, lsh, LSH Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18318 +#: guix-git/doc/guix.texi:18680 msgid "When @var{interfaces} is empty, lshd listens for connections on all the network interfaces; otherwise, @var{interfaces} must be a list of host names or addresses." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18322 +#: guix-git/doc/guix.texi:18684 msgid "@var{allow-empty-passwords?} specifies whether to accept log-ins with empty passwords, and @var{root-login?} specifies whether to accept log-ins as root." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18324 +#: guix-git/doc/guix.texi:18686 msgid "The other options should be self-descriptive." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18328 +#: guix-git/doc/guix.texi:18690 #, no-wrap msgid "{Scheme Variable} openssh-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18332 +#: guix-git/doc/guix.texi:18694 msgid "This is the type for the @uref{http://www.openssh.org, OpenSSH} secure shell daemon, @command{sshd}. Its value must be an @code{openssh-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18341 +#: guix-git/doc/guix.texi:18703 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -32228,17 +32839,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18344 +#: guix-git/doc/guix.texi:18706 msgid "See below for details about @code{openssh-configuration}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18347 +#: guix-git/doc/guix.texi:18709 msgid "This service can be extended with extra authorized keys, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18352 +#: guix-git/doc/guix.texi:18714 #, no-wrap msgid "" "(service-extension openssh-service-type\n" @@ -32247,203 +32858,203 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18355 +#: guix-git/doc/guix.texi:18717 #, no-wrap msgid "{Data Type} openssh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18357 +#: guix-git/doc/guix.texi:18719 msgid "This is the configuration record for OpenSSH's @command{sshd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18359 +#: guix-git/doc/guix.texi:18721 #, no-wrap msgid "@code{openssh} (default @var{openssh})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18361 +#: guix-git/doc/guix.texi:18723 msgid "The Openssh package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18362 +#: guix-git/doc/guix.texi:18724 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/sshd.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18364 +#: guix-git/doc/guix.texi:18726 msgid "Name of the file where @command{sshd} writes its PID." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18365 +#: guix-git/doc/guix.texi:18727 #, no-wrap msgid "@code{port-number} (default: @code{22})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18367 +#: guix-git/doc/guix.texi:18729 msgid "TCP port on which @command{sshd} listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18368 +#: guix-git/doc/guix.texi:18730 #, no-wrap msgid "@code{permit-root-login} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18373 +#: guix-git/doc/guix.texi:18735 msgid "This field determines whether and when to allow logins as root. If @code{#f}, root logins are disallowed; if @code{#t}, they are allowed. If it's the symbol @code{'prohibit-password}, then root logins are permitted but not with password-based authentication." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18374 guix-git/doc/guix.texi:18535 +#: guix-git/doc/guix.texi:18736 guix-git/doc/guix.texi:18897 #, no-wrap msgid "@code{allow-empty-passwords?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18377 +#: guix-git/doc/guix.texi:18739 msgid "When true, users with empty passwords may log in. When false, they may not." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18378 guix-git/doc/guix.texi:18538 +#: guix-git/doc/guix.texi:18740 guix-git/doc/guix.texi:18900 #, no-wrap msgid "@code{password-authentication?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18381 +#: guix-git/doc/guix.texi:18743 msgid "When true, users may log in with their password. When false, they have other authentication methods." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18382 +#: guix-git/doc/guix.texi:18744 #, no-wrap msgid "@code{public-key-authentication?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18385 +#: guix-git/doc/guix.texi:18747 msgid "When true, users may log in using public key authentication. When false, users have to use other authentication method." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18388 +#: guix-git/doc/guix.texi:18750 msgid "Authorized public keys are stored in @file{~/.ssh/authorized_keys}. This is used only by protocol version 2." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18389 +#: guix-git/doc/guix.texi:18751 #, no-wrap msgid "@code{x11-forwarding?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18393 +#: guix-git/doc/guix.texi:18755 msgid "When true, forwarding of X11 graphical client connections is enabled---in other words, @command{ssh} options @option{-X} and @option{-Y} will work." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18394 +#: guix-git/doc/guix.texi:18756 #, no-wrap msgid "@code{allow-agent-forwarding?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18396 +#: guix-git/doc/guix.texi:18758 msgid "Whether to allow agent forwarding." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18397 +#: guix-git/doc/guix.texi:18759 #, no-wrap msgid "@code{allow-tcp-forwarding?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18399 +#: guix-git/doc/guix.texi:18761 msgid "Whether to allow TCP forwarding." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18400 +#: guix-git/doc/guix.texi:18762 #, no-wrap msgid "@code{gateway-ports?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18402 +#: guix-git/doc/guix.texi:18764 msgid "Whether to allow gateway ports." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18403 +#: guix-git/doc/guix.texi:18765 #, no-wrap msgid "@code{challenge-response-authentication?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18406 +#: guix-git/doc/guix.texi:18768 msgid "Specifies whether challenge response authentication is allowed (e.g.@: via PAM)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18407 +#: guix-git/doc/guix.texi:18769 #, no-wrap msgid "@code{use-pam?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18413 +#: guix-git/doc/guix.texi:18775 msgid "Enables the Pluggable Authentication Module interface. If set to @code{#t}, this will enable PAM authentication using @code{challenge-response-authentication?} and @code{password-authentication?}, in addition to PAM account and session module processing for all authentication types." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18418 +#: guix-git/doc/guix.texi:18780 msgid "Because PAM challenge response authentication usually serves an equivalent role to password authentication, you should disable either @code{challenge-response-authentication?} or @code{password-authentication?}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18419 +#: guix-git/doc/guix.texi:18781 #, no-wrap msgid "@code{print-last-log?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18422 +#: guix-git/doc/guix.texi:18784 msgid "Specifies whether @command{sshd} should print the date and time of the last user login when a user logs in interactively." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18423 +#: guix-git/doc/guix.texi:18785 #, no-wrap msgid "@code{subsystems} (default: @code{'((\"sftp\" \"internal-sftp\"))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18425 +#: guix-git/doc/guix.texi:18787 msgid "Configures external subsystems (e.g.@: file transfer daemon)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18429 +#: guix-git/doc/guix.texi:18791 msgid "This is a list of two-element lists, each of which containing the subsystem name and a command (with optional arguments) to execute upon subsystem request." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18432 +#: guix-git/doc/guix.texi:18794 msgid "The command @command{internal-sftp} implements an in-process SFTP server. Alternatively, one can specify the @command{sftp-server} command:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18437 +#: guix-git/doc/guix.texi:18799 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -32453,28 +33064,28 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18439 +#: guix-git/doc/guix.texi:18801 #, no-wrap msgid "@code{accepted-environment} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18441 +#: guix-git/doc/guix.texi:18803 msgid "List of strings describing which environment variables may be exported." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18444 +#: guix-git/doc/guix.texi:18806 msgid "Each string gets on its own line. See the @code{AcceptEnv} option in @code{man sshd_config}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18449 +#: guix-git/doc/guix.texi:18811 msgid "This example allows ssh-clients to export the @env{COLORTERM} variable. It is set by terminal emulators, which support colors. You can use it in your shell's resource file to enable colors for the prompt and commands if this variable is set." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18454 +#: guix-git/doc/guix.texi:18816 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -32483,30 +33094,30 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18456 +#: guix-git/doc/guix.texi:18818 #, no-wrap msgid "@code{authorized-keys} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18457 +#: guix-git/doc/guix.texi:18819 #, no-wrap msgid "authorized keys, SSH" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18458 +#: guix-git/doc/guix.texi:18820 #, no-wrap msgid "SSH authorized keys" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18462 +#: guix-git/doc/guix.texi:18824 msgid "This is the list of authorized keys. Each element of the list is a user name followed by one or more file-like objects that represent SSH public keys. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18469 +#: guix-git/doc/guix.texi:18831 #, no-wrap msgid "" "(openssh-configuration\n" @@ -32517,45 +33128,45 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18474 +#: guix-git/doc/guix.texi:18836 msgid "registers the specified public keys for user accounts @code{rekado}, @code{chris}, and @code{root}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18477 +#: guix-git/doc/guix.texi:18839 msgid "Additional authorized keys can be specified @i{via} @code{service-extension}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18480 +#: guix-git/doc/guix.texi:18842 msgid "Note that this does @emph{not} interfere with the use of @file{~/.ssh/authorized_keys}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18481 guix-git/doc/guix.texi:18912 +#: guix-git/doc/guix.texi:18843 guix-git/doc/guix.texi:19274 #, no-wrap msgid "@code{log-level} (default: @code{'info})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18485 +#: guix-git/doc/guix.texi:18847 msgid "This is a symbol specifying the logging level: @code{quiet}, @code{fatal}, @code{error}, @code{info}, @code{verbose}, @code{debug}, etc. See the man page for @file{sshd_config} for the full list of level names." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18486 guix-git/doc/guix.texi:21328 -#: guix-git/doc/guix.texi:26469 +#: guix-git/doc/guix.texi:18848 guix-git/doc/guix.texi:21690 +#: guix-git/doc/guix.texi:26806 #, no-wrap msgid "@code{extra-content} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18491 +#: guix-git/doc/guix.texi:18853 msgid "This field can be used to append arbitrary text to the configuration file. It is especially useful for elaborate configurations that cannot be expressed otherwise. This configuration, for example, would generally disable root logins, but permit them from one specific IP address:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18497 +#: guix-git/doc/guix.texi:18859 #, no-wrap msgid "" "(openssh-configuration\n" @@ -32565,23 +33176,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18502 +#: guix-git/doc/guix.texi:18864 #, no-wrap msgid "{Scheme Procedure} dropbear-service [@var{config}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18506 +#: guix-git/doc/guix.texi:18868 msgid "Run the @uref{https://matt.ucc.asn.au/dropbear/dropbear.html,Dropbear SSH daemon} with the given @var{config}, a @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18509 +#: guix-git/doc/guix.texi:18871 msgid "For example, to specify a Dropbear service listening on port 1234, add this call to the operating system's @code{services} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18513 +#: guix-git/doc/guix.texi:18875 #, no-wrap msgid "" "(dropbear-service (dropbear-configuration\n" @@ -32589,110 +33200,110 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18516 +#: guix-git/doc/guix.texi:18878 #, no-wrap msgid "{Data Type} dropbear-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18518 +#: guix-git/doc/guix.texi:18880 msgid "This data type represents the configuration of a Dropbear SSH daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18520 +#: guix-git/doc/guix.texi:18882 #, no-wrap msgid "@code{dropbear} (default: @var{dropbear})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18522 +#: guix-git/doc/guix.texi:18884 msgid "The Dropbear package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18523 +#: guix-git/doc/guix.texi:18885 #, no-wrap msgid "@code{port-number} (default: 22)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18525 +#: guix-git/doc/guix.texi:18887 msgid "The TCP port where the daemon waits for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18526 +#: guix-git/doc/guix.texi:18888 #, no-wrap msgid "@code{syslog-output?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18528 +#: guix-git/doc/guix.texi:18890 msgid "Whether to enable syslog output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18529 +#: guix-git/doc/guix.texi:18891 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/dropbear.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18531 +#: guix-git/doc/guix.texi:18893 msgid "File name of the daemon's PID file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18532 +#: guix-git/doc/guix.texi:18894 #, no-wrap msgid "@code{root-login?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18534 +#: guix-git/doc/guix.texi:18896 msgid "Whether to allow @code{root} logins." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18537 +#: guix-git/doc/guix.texi:18899 msgid "Whether to allow empty passwords." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18540 +#: guix-git/doc/guix.texi:18902 msgid "Whether to enable password-based authentication." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18543 +#: guix-git/doc/guix.texi:18905 #, no-wrap msgid "AutoSSH" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18544 +#: guix-git/doc/guix.texi:18906 #, no-wrap msgid "{Scheme Variable} autossh-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18552 +#: guix-git/doc/guix.texi:18914 msgid "This is the type for the @uref{https://www.harding.motd.ca/autossh, AutoSSH} program that runs a copy of @command{ssh} and monitors it, restarting it as necessary should it die or stop passing traffic. AutoSSH can be run manually from the command-line by passing arguments to the binary @command{autossh} from the package @code{autossh}, but it can also be run as a Guix service. This latter use case is documented here." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18556 +#: guix-git/doc/guix.texi:18918 msgid "AutoSSH can be used to forward local traffic to a remote machine using an SSH tunnel, and it respects the @file{~/.ssh/config} of the user it is run as." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18561 +#: guix-git/doc/guix.texi:18923 msgid "For example, to specify a service running autossh as the user @code{pino} and forwarding all local connections to port @code{8081} to @code{remote:8081} using an SSH tunnel, add this call to the operating system's @code{services} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18567 +#: guix-git/doc/guix.texi:18929 #, no-wrap msgid "" "(service autossh-service-type\n" @@ -32702,139 +33313,139 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18570 +#: guix-git/doc/guix.texi:18932 #, no-wrap msgid "{Data Type} autossh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18572 +#: guix-git/doc/guix.texi:18934 msgid "This data type represents the configuration of an AutoSSH service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18575 +#: guix-git/doc/guix.texi:18937 #, no-wrap msgid "@code{user} (default @code{\"autossh\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18578 +#: guix-git/doc/guix.texi:18940 msgid "The user as which the AutoSSH service is to be run. This assumes that the specified user exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18579 +#: guix-git/doc/guix.texi:18941 #, no-wrap msgid "@code{poll} (default @code{600})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18581 +#: guix-git/doc/guix.texi:18943 msgid "Specifies the connection poll time in seconds." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18582 +#: guix-git/doc/guix.texi:18944 #, no-wrap msgid "@code{first-poll} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18588 +#: guix-git/doc/guix.texi:18950 msgid "Specifies how many seconds AutoSSH waits before the first connection test. After this first test, polling is resumed at the pace defined in @code{poll}. When set to @code{#f}, the first poll is not treated specially and will also use the connection poll specified in @code{poll}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18589 +#: guix-git/doc/guix.texi:18951 #, no-wrap msgid "@code{gate-time} (default @code{30})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18592 +#: guix-git/doc/guix.texi:18954 msgid "Specifies how many seconds an SSH connection must be active before it is considered successful." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18593 +#: guix-git/doc/guix.texi:18955 #, no-wrap msgid "@code{log-level} (default @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18596 +#: guix-git/doc/guix.texi:18958 msgid "The log level, corresponding to the levels used by syslog---so @code{0} is the most silent while @code{7} is the chattiest." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18597 +#: guix-git/doc/guix.texi:18959 #, no-wrap msgid "@code{max-start} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18600 +#: guix-git/doc/guix.texi:18962 msgid "The maximum number of times SSH may be (re)started before AutoSSH exits. When set to @code{#f}, no maximum is configured and AutoSSH may restart indefinitely." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18601 +#: guix-git/doc/guix.texi:18963 #, no-wrap msgid "@code{message} (default @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18603 +#: guix-git/doc/guix.texi:18965 msgid "The message to append to the echo message sent when testing connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18604 +#: guix-git/doc/guix.texi:18966 #, no-wrap msgid "@code{port} (default @code{\"0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18614 +#: guix-git/doc/guix.texi:18976 msgid "The ports used for monitoring the connection. When set to @code{\"0\"}, monitoring is disabled. When set to @code{\"@var{n}\"} where @var{n} is a positive integer, ports @var{n} and @var{n}+1 are used for monitoring the connection, such that port @var{n} is the base monitoring port and @code{n+1} is the echo port. When set to @code{\"@var{n}:@var{m}\"} where @var{n} and @var{m} are positive integers, the ports @var{n} and @var{m} are used for monitoring the connection, such that port @var{n} is the base monitoring port and @var{m} is the echo port." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18615 +#: guix-git/doc/guix.texi:18977 #, no-wrap msgid "@code{ssh-options} (default @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18619 +#: guix-git/doc/guix.texi:18981 msgid "The list of command-line arguments to pass to @command{ssh} when it is run. Options @option{-f} and @option{-M} are reserved for AutoSSH and may cause undefined behaviour." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18623 +#: guix-git/doc/guix.texi:18985 #, no-wrap msgid "WebSSH" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18624 +#: guix-git/doc/guix.texi:18986 #, no-wrap msgid "{Scheme Variable} webssh-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18630 +#: guix-git/doc/guix.texi:18992 msgid "This is the type for the @uref{https://webssh.huashengdun.org/, WebSSH} program that runs a web SSH client. WebSSH can be run manually from the command-line by passing arguments to the binary @command{wssh} from the package @code{webssh}, but it can also be run as a Guix service. This latter use case is documented here." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18636 +#: guix-git/doc/guix.texi:18998 msgid "For example, to specify a service running WebSSH on loopback interface on port @code{8888} with reject policy with a list of allowed to connection hosts, and NGINX as a reverse-proxy to this service listening for HTTPS connection, add this call to the operating system's @code{services} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18644 +#: guix-git/doc/guix.texi:19006 #, no-wrap msgid "" "(service webssh-service-type\n" @@ -32847,7 +33458,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18660 +#: guix-git/doc/guix.texi:19022 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -32868,128 +33479,128 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18663 +#: guix-git/doc/guix.texi:19025 #, no-wrap msgid "{Data Type} webssh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18665 +#: guix-git/doc/guix.texi:19027 msgid "Data type representing the configuration for @code{webssh-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18667 +#: guix-git/doc/guix.texi:19029 #, no-wrap msgid "@code{package} (default: @var{webssh})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18669 +#: guix-git/doc/guix.texi:19031 msgid "@code{webssh} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18670 +#: guix-git/doc/guix.texi:19032 #, no-wrap msgid "@code{user-name} (default: @var{\"webssh\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18673 +#: guix-git/doc/guix.texi:19035 msgid "User name or user ID that file transfers to and from that module should take place." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18674 +#: guix-git/doc/guix.texi:19036 #, no-wrap msgid "@code{group-name} (default: @var{\"webssh\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18677 +#: guix-git/doc/guix.texi:19039 #, no-wrap msgid "@code{address} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18679 +#: guix-git/doc/guix.texi:19041 msgid "IP address on which @command{webssh} listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18680 +#: guix-git/doc/guix.texi:19042 #, no-wrap msgid "@code{port} (default: @var{8888})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18682 +#: guix-git/doc/guix.texi:19044 msgid "TCP port on which @command{webssh} listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18683 +#: guix-git/doc/guix.texi:19045 #, no-wrap msgid "@code{policy} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18685 +#: guix-git/doc/guix.texi:19047 msgid "Connection policy. @var{reject} policy requires to specify @var{known-hosts}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18686 +#: guix-git/doc/guix.texi:19048 #, no-wrap msgid "@code{known-hosts} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18688 +#: guix-git/doc/guix.texi:19050 msgid "List of hosts which allowed for SSH connection from @command{webssh}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18689 +#: guix-git/doc/guix.texi:19051 #, no-wrap msgid "@code{log-file} (default: @file{\"/var/log/webssh.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18691 +#: guix-git/doc/guix.texi:19053 msgid "Name of the file where @command{webssh} writes its log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18692 +#: guix-git/doc/guix.texi:19054 #, no-wrap msgid "@code{log-level} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18694 +#: guix-git/doc/guix.texi:19056 msgid "Logging level." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18698 +#: guix-git/doc/guix.texi:19060 #, no-wrap msgid "{Scheme Variable} %facebook-host-aliases" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18704 +#: guix-git/doc/guix.texi:19066 msgid "This variable contains a string for use in @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). Each line contains a entry that maps a known server name of the Facebook on-line service---e.g., @code{www.facebook.com}---to the local host---@code{127.0.0.1} or its IPv6 equivalent, @code{::1}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18708 +#: guix-git/doc/guix.texi:19070 msgid "This variable is typically used in the @code{hosts-file} field of an @code{operating-system} declaration (@pxref{operating-system Reference, @file{/etc/hosts}}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18721 +#: guix-git/doc/guix.texi:19083 #, no-wrap msgid "" "(operating-system\n" @@ -33004,176 +33615,176 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18725 +#: guix-git/doc/guix.texi:19087 msgid "This mechanism can prevent programs running locally, such as Web browsers, from accessing Facebook." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18728 +#: guix-git/doc/guix.texi:19090 msgid "The @code{(gnu services avahi)} provides the following definition." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18729 +#: guix-git/doc/guix.texi:19091 #, no-wrap msgid "{Scheme Variable} avahi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18734 +#: guix-git/doc/guix.texi:19096 msgid "This is the service that runs @command{avahi-daemon}, a system-wide mDNS/DNS-SD responder that allows for service discovery and ``zero-configuration'' host name lookups (see @uref{https://avahi.org/}). Its value must be an @code{avahi-configuration} record---see below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18739 +#: guix-git/doc/guix.texi:19101 msgid "This service extends the name service cache daemon (nscd) so that it can resolve @code{.local} host names using @uref{https://0pointer.de/lennart/projects/nss-mdns/, nss-mdns}. @xref{Name Service Switch}, for information on host name resolution." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18742 +#: guix-git/doc/guix.texi:19104 msgid "Additionally, add the @var{avahi} package to the system profile so that commands such as @command{avahi-browse} are directly usable." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18744 +#: guix-git/doc/guix.texi:19106 #, no-wrap msgid "{Data Type} avahi-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18746 +#: guix-git/doc/guix.texi:19108 msgid "Data type representation the configuration for Avahi." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18749 +#: guix-git/doc/guix.texi:19111 #, no-wrap msgid "@code{host-name} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18752 +#: guix-git/doc/guix.texi:19114 msgid "If different from @code{#f}, use that as the host name to publish for this machine; otherwise, use the machine's actual host name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18753 guix-git/doc/guix.texi:29132 +#: guix-git/doc/guix.texi:19115 guix-git/doc/guix.texi:29469 #, no-wrap msgid "@code{publish?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18756 +#: guix-git/doc/guix.texi:19118 msgid "When true, allow host names and services to be published (broadcast) over the network." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18757 +#: guix-git/doc/guix.texi:19119 #, no-wrap msgid "@code{publish-workstation?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18761 +#: guix-git/doc/guix.texi:19123 msgid "When true, @command{avahi-daemon} publishes the machine's host name and IP address via mDNS on the local network. To view the host names published on your local network, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18764 +#: guix-git/doc/guix.texi:19126 #, no-wrap msgid "avahi-browse _workstation._tcp\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18766 +#: guix-git/doc/guix.texi:19128 #, no-wrap msgid "@code{wide-area?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18768 +#: guix-git/doc/guix.texi:19130 msgid "When true, DNS-SD over unicast DNS is enabled." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18769 +#: guix-git/doc/guix.texi:19131 #, no-wrap msgid "@code{ipv4?} (default: @code{#t})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:18770 +#: guix-git/doc/guix.texi:19132 #, no-wrap msgid "@code{ipv6?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18772 +#: guix-git/doc/guix.texi:19134 msgid "These fields determine whether to use IPv4/IPv6 sockets." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18773 +#: guix-git/doc/guix.texi:19135 #, no-wrap msgid "@code{domains-to-browse} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18775 +#: guix-git/doc/guix.texi:19137 msgid "This is a list of domains to browse." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18778 +#: guix-git/doc/guix.texi:19140 #, no-wrap msgid "{Scheme Variable} openvswitch-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18782 +#: guix-git/doc/guix.texi:19144 msgid "This is the type of the @uref{https://www.openvswitch.org, Open vSwitch} service, whose value should be an @code{openvswitch-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18784 +#: guix-git/doc/guix.texi:19146 #, no-wrap msgid "{Data Type} openvswitch-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18788 +#: guix-git/doc/guix.texi:19150 msgid "Data type representing the configuration of Open vSwitch, a multilayer virtual switch which is designed to enable massive network automation through programmatic extension." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18790 +#: guix-git/doc/guix.texi:19152 #, no-wrap msgid "@code{package} (default: @var{openvswitch})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18792 +#: guix-git/doc/guix.texi:19154 msgid "Package object of the Open vSwitch." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18796 +#: guix-git/doc/guix.texi:19158 #, no-wrap msgid "{Scheme Variable} pagekite-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18801 +#: guix-git/doc/guix.texi:19163 msgid "This is the service type for the @uref{https://pagekite.net, PageKite} service, a tunneling solution for making localhost servers publicly visible, even from behind restrictive firewalls or NAT without forwarded ports. The value for this service type is a @code{pagekite-configuration} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18803 +#: guix-git/doc/guix.texi:19165 msgid "Here's an example exposing the local HTTP and SSH daemons:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18810 +#: guix-git/doc/guix.texi:19172 #, no-wrap msgid "" "(service pagekite-service-type\n" @@ -33184,110 +33795,110 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18813 +#: guix-git/doc/guix.texi:19175 #, no-wrap msgid "{Data Type} pagekite-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18815 +#: guix-git/doc/guix.texi:19177 msgid "Data type representing the configuration of PageKite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18817 +#: guix-git/doc/guix.texi:19179 #, no-wrap msgid "@code{package} (default: @var{pagekite})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18819 +#: guix-git/doc/guix.texi:19181 msgid "Package object of PageKite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18820 +#: guix-git/doc/guix.texi:19182 #, no-wrap msgid "@code{kitename} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18822 +#: guix-git/doc/guix.texi:19184 msgid "PageKite name for authenticating to the frontend server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18823 +#: guix-git/doc/guix.texi:19185 #, no-wrap msgid "@code{kitesecret} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18826 +#: guix-git/doc/guix.texi:19188 msgid "Shared secret for authenticating to the frontend server. You should probably put this inside @code{extra-file} instead." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18827 +#: guix-git/doc/guix.texi:19189 #, no-wrap msgid "@code{frontend} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18830 +#: guix-git/doc/guix.texi:19192 msgid "Connect to the named PageKite frontend server instead of the @uref{https://pagekite.net,,pagekite.net} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18831 +#: guix-git/doc/guix.texi:19193 #, no-wrap msgid "@code{kites} (default: @code{'(\"http:@@kitename:localhost:80:@@kitesecret\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18834 +#: guix-git/doc/guix.texi:19196 msgid "List of service kites to use. Exposes HTTP on port 80 by default. The format is @code{proto:kitename:host:port:secret}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18835 +#: guix-git/doc/guix.texi:19197 #, no-wrap msgid "@code{extra-file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18838 +#: guix-git/doc/guix.texi:19200 msgid "Extra configuration file to read, which you are expected to create manually. Use this to add additional options and manage shared secrets out-of-band." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18842 +#: guix-git/doc/guix.texi:19204 #, no-wrap msgid "{Scheme Variable} yggdrasil-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18846 +#: guix-git/doc/guix.texi:19208 msgid "The service type for connecting to the @uref{https://yggdrasil-network.github.io/, Yggdrasil network}, an early-stage implementation of a fully end-to-end encrypted IPv6 network." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:18853 +#: guix-git/doc/guix.texi:19215 msgid "Yggdrasil provides name-independent routing with cryptographically generated addresses. Static addressing means you can keep the same address as long as you want, even if you move to a new location, or generate a new address (by generating new keys) whenever you want. @uref{https://yggdrasil-network.github.io/2018/07/28/addressing.html}" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18857 +#: guix-git/doc/guix.texi:19219 msgid "Pass it a value of @code{yggdrasil-configuration} to connect it to public peers and/or local peers." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18861 +#: guix-git/doc/guix.texi:19223 msgid "Here is an example using public peers and a static address. The static signing and encryption keys are defined in @file{/etc/yggdrasil-private.conf} (the default value for @code{config-file})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18873 +#: guix-git/doc/guix.texi:19235 #, no-wrap msgid "" ";; part of the operating-system declaration\n" @@ -33303,7 +33914,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18880 +#: guix-git/doc/guix.texi:19242 #, no-wrap msgid "" "# sample content for /etc/yggdrasil-private.conf\n" @@ -33315,7 +33926,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18883 +#: guix-git/doc/guix.texi:19245 #, no-wrap msgid "" " # Your private encryption key. DO NOT share this with anyone!\n" @@ -33324,7 +33935,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18887 +#: guix-git/doc/guix.texi:19249 #, no-wrap msgid "" " # Your public signing key. You should not ordinarily need to share\n" @@ -33334,7 +33945,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18891 +#: guix-git/doc/guix.texi:19253 #, no-wrap msgid "" " # Your private signing key. DO NOT share this with anyone!\n" @@ -33343,124 +33954,124 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18894 +#: guix-git/doc/guix.texi:19256 #, no-wrap msgid "{Data Type} yggdrasil-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18896 +#: guix-git/doc/guix.texi:19258 msgid "Data type representing the configuration of Yggdrasil." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18898 +#: guix-git/doc/guix.texi:19260 #, no-wrap msgid "@code{package} (default: @code{yggdrasil})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18900 +#: guix-git/doc/guix.texi:19262 msgid "Package object of Yggdrasil." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18901 +#: guix-git/doc/guix.texi:19263 #, no-wrap msgid "@code{json-config} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18907 +#: guix-git/doc/guix.texi:19269 msgid "Contents of @file{/etc/yggdrasil.conf}. Will be merged with @file{/etc/yggdrasil-private.conf}. Note that these settings are stored in the Guix store, which is readable to all users. @strong{Do not store your private keys in it}. See the output of @code{yggdrasil -genconf} for a quick overview of valid keys and their default values." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18908 +#: guix-git/doc/guix.texi:19270 #, no-wrap msgid "@code{autoconf?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18911 +#: guix-git/doc/guix.texi:19273 msgid "Whether to use automatic mode. Enabling it makes Yggdrasil use adynamic IP and peer with IPv6 neighbors." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18914 +#: guix-git/doc/guix.texi:19276 msgid "How much detail to include in logs. Use @code{'debug} for more detail." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18915 +#: guix-git/doc/guix.texi:19277 #, no-wrap msgid "@code{log-to} (default: @code{'stdout})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18919 +#: guix-git/doc/guix.texi:19281 msgid "Where to send logs. By default, the service logs standard output to @file{/var/log/yggdrasil.log}. The alternative is @code{'syslog}, which sends output to the running syslog service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18920 +#: guix-git/doc/guix.texi:19282 #, no-wrap msgid "@code{config-file} (default: @code{\"/etc/yggdrasil-private.conf\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18927 +#: guix-git/doc/guix.texi:19289 msgid "What HJSON file to load sensitive data from. This is where private keys should be stored, which are necessary to specify if you don't want a randomized address after each restart. Use @code{#f} to disable. Options defined in this file take precedence over @code{json-config}. Use the output of @code{yggdrasil -genconf} as a starting point. To configure a static address, delete everything except these options:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18929 +#: guix-git/doc/guix.texi:19291 #, no-wrap msgid "EncryptionPublicKey" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18930 +#: guix-git/doc/guix.texi:19292 #, no-wrap msgid "EncryptionPrivateKey" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18931 +#: guix-git/doc/guix.texi:19293 #, no-wrap msgid "SigningPublicKey" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18932 +#: guix-git/doc/guix.texi:19294 #, no-wrap msgid "SigningPrivateKey" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18937 +#: guix-git/doc/guix.texi:19299 #, no-wrap msgid "IPFS" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18938 +#: guix-git/doc/guix.texi:19300 #, no-wrap msgid "{Scheme Variable} ipfs-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18942 +#: guix-git/doc/guix.texi:19304 msgid "The service type for connecting to the @uref{https://ipfs.io,IPFS network}, a global, versioned, peer-to-peer file system. Pass it a @code{ipfs-configuration} to change the ports used for the gateway and API." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18944 +#: guix-git/doc/guix.texi:19306 msgid "Here's an example configuration, using some non-standard ports:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18950 +#: guix-git/doc/guix.texi:19312 #, no-wrap msgid "" "(service ipfs-service-type\n" @@ -33470,68 +34081,68 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18953 +#: guix-git/doc/guix.texi:19315 #, no-wrap msgid "{Data Type} ipfs-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18955 +#: guix-git/doc/guix.texi:19317 msgid "Data type representing the configuration of IPFS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18957 +#: guix-git/doc/guix.texi:19319 #, no-wrap msgid "@code{package} (default: @code{go-ipfs})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18959 +#: guix-git/doc/guix.texi:19321 msgid "Package object of IPFS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18960 +#: guix-git/doc/guix.texi:19322 #, no-wrap msgid "@code{gateway} (default: @code{\"/ip4/127.0.0.1/tcp/8082\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18962 +#: guix-git/doc/guix.texi:19324 msgid "Address of the gateway, in ‘multiaddress’ format." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18963 +#: guix-git/doc/guix.texi:19325 #, no-wrap msgid "@code{api} (default: @code{\"/ip4/127.0.0.1/tcp/5001\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18965 +#: guix-git/doc/guix.texi:19327 msgid "Address of the API endpoint, in ‘multiaddress’ format." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18968 +#: guix-git/doc/guix.texi:19330 #, no-wrap msgid "keepalived" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18969 +#: guix-git/doc/guix.texi:19331 #, no-wrap msgid "{Scheme Variable} keepalived-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18974 +#: guix-git/doc/guix.texi:19336 msgid "This is the type for the @uref{https://www.keepalived.org/, Keepalived} routing software, @command{keepalived}. Its value must be an @code{keepalived-configuration} record as in this example for master machine:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18979 +#: guix-git/doc/guix.texi:19341 #, no-wrap msgid "" "(service keepalived-service-type\n" @@ -33540,12 +34151,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18982 +#: guix-git/doc/guix.texi:19344 msgid "where @file{keepalived-master.conf}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18994 +#: guix-git/doc/guix.texi:19356 #, no-wrap msgid "" "vrrp_instance my-group @{\n" @@ -33561,12 +34172,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18997 +#: guix-git/doc/guix.texi:19359 msgid "and for backup machine:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19002 +#: guix-git/doc/guix.texi:19364 #, no-wrap msgid "" "(service keepalived-service-type\n" @@ -33575,12 +34186,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19005 +#: guix-git/doc/guix.texi:19367 msgid "where @file{keepalived-backup.conf}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:19017 +#: guix-git/doc/guix.texi:19379 #, no-wrap msgid "" "vrrp_instance my-group @{\n" @@ -33596,135 +34207,135 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19023 +#: guix-git/doc/guix.texi:19385 #, no-wrap msgid "unattended upgrades" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19024 +#: guix-git/doc/guix.texi:19386 #, no-wrap msgid "upgrades, unattended" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19029 +#: guix-git/doc/guix.texi:19391 msgid "Guix provides a service to perform @emph{unattended upgrades}: periodically, the system automatically reconfigures itself from the latest Guix. Guix System has several properties that make unattended upgrades safe:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19034 +#: guix-git/doc/guix.texi:19396 msgid "upgrades are transactional (either the upgrade succeeds or it fails, but you cannot end up with an ``in-between'' system state);" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19038 +#: guix-git/doc/guix.texi:19400 msgid "the upgrade log is kept---you can view it with @command{guix system list-generations}---and you can roll back to any previous generation, should the upgraded system fail to behave as intended;" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19041 +#: guix-git/doc/guix.texi:19403 msgid "channel code is authenticated so you know you can only run genuine code (@pxref{Channels});" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19044 +#: guix-git/doc/guix.texi:19406 msgid "@command{guix system reconfigure} prevents downgrades, which makes it immune to @dfn{downgrade attacks}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19049 +#: guix-git/doc/guix.texi:19411 msgid "To set up unattended upgrades, add an instance of @code{unattended-upgrade-service-type} like the one below to the list of your operating system services:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19052 +#: guix-git/doc/guix.texi:19414 #, no-wrap msgid "(service unattended-upgrade-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19059 +#: guix-git/doc/guix.texi:19421 msgid "The defaults above set up weekly upgrades: every Sunday at midnight. You do not need to provide the operating system configuration file: it uses @file{/run/current-system/configuration.scm}, which ensures it always uses your latest configuration---@pxref{provenance-service-type}, for more information about this file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19065 +#: guix-git/doc/guix.texi:19427 msgid "There are several things that can be configured, in particular the periodicity and services (daemons) to be restarted upon completion. When the upgrade is successful, the service takes care of deleting system generations older that some threshold, as per @command{guix system delete-generations}. See the reference below for details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19069 +#: guix-git/doc/guix.texi:19431 msgid "To ensure that upgrades are actually happening, you can run @command{guix system describe}. To investigate upgrade failures, visit the unattended upgrade log file (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19070 +#: guix-git/doc/guix.texi:19432 #, no-wrap msgid "{Scheme Variable} unattended-upgrade-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19074 +#: guix-git/doc/guix.texi:19436 msgid "This is the service type for unattended upgrades. It sets up an mcron job (@pxref{Scheduled Job Execution}) that runs @command{guix system reconfigure} from the latest version of the specified channels." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19077 +#: guix-git/doc/guix.texi:19439 msgid "Its value must be a @code{unattended-upgrade-configuration} record (see below)." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19079 +#: guix-git/doc/guix.texi:19441 #, no-wrap msgid "{Data Type} unattended-upgrade-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19082 +#: guix-git/doc/guix.texi:19444 msgid "This data type represents the configuration of the unattended upgrade service. The following fields are available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19084 +#: guix-git/doc/guix.texi:19446 #, no-wrap msgid "@code{schedule} (default: @code{\"30 01 * * 0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19088 +#: guix-git/doc/guix.texi:19450 msgid "This is the schedule of upgrades, expressed as a gexp containing an mcron job schedule (@pxref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19089 +#: guix-git/doc/guix.texi:19451 #, no-wrap msgid "@code{channels} (default: @code{#~%default-channels})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19093 +#: guix-git/doc/guix.texi:19455 msgid "This gexp specifies the channels to use for the upgrade (@pxref{Channels}). By default, the tip of the official @code{guix} channel is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19094 +#: guix-git/doc/guix.texi:19456 #, no-wrap msgid "@code{operating-system-file} (default: @code{\"/run/current-system/configuration.scm\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19097 +#: guix-git/doc/guix.texi:19459 msgid "This field specifies the operating system configuration file to use. The default is to reuse the config file of the current configuration." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19103 +#: guix-git/doc/guix.texi:19465 msgid "There are cases, though, where referring to @file{/run/current-system/configuration.scm} is not enough, for instance because that file refers to extra files (SSH public keys, extra configuration files, etc.) @i{via} @code{local-file} and similar constructs. For those cases, we recommend something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19109 +#: guix-git/doc/guix.texi:19471 #, no-wrap msgid "" "(unattended-upgrade-configuration\n" @@ -33734,312 +34345,312 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19116 +#: guix-git/doc/guix.texi:19478 msgid "The effect here is to import all of the current directory into the store, and to refer to @file{config.scm} within that directory. Therefore, uses of @code{local-file} within @file{config.scm} will work as expected. @xref{G-Expressions}, for information about @code{local-file} and @code{file-append}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19117 +#: guix-git/doc/guix.texi:19479 #, no-wrap msgid "@code{services-to-restart} (default: @code{'(mcron)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19120 +#: guix-git/doc/guix.texi:19482 msgid "This field specifies the Shepherd services to restart when the upgrade completes." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19127 +#: guix-git/doc/guix.texi:19489 msgid "Those services are restarted right away upon completion, as with @command{herd restart}, which ensures that the latest version is running---remember that by default @command{guix system reconfigure} only restarts services that are not currently running, which is conservative: it minimizes disruption but leaves outdated services running." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19131 +#: guix-git/doc/guix.texi:19493 msgid "Use @command{herd status} to find out candidates for restarting. @xref{Services}, for general information about services. Common services to restart would include @code{ntpd} and @code{ssh-daemon}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19134 +#: guix-git/doc/guix.texi:19496 msgid "By default, the @code{mcron} service is restarted. This ensures that the latest version of the unattended upgrade job will be used next time." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19135 +#: guix-git/doc/guix.texi:19497 #, no-wrap msgid "@code{system-expiration} (default: @code{(* 3 30 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19139 +#: guix-git/doc/guix.texi:19501 msgid "This is the expiration time in seconds for system generations. System generations older that this amount of time are deleted with @command{guix system delete-generations} when an upgrade completes." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:19144 +#: guix-git/doc/guix.texi:19506 msgid "The unattended upgrade service does not run the garbage collector. You will probably want to set up your own mcron job to run @command{guix gc} periodically." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19146 +#: guix-git/doc/guix.texi:19508 #, no-wrap msgid "@code{maximum-duration} (default: @code{3600})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19149 +#: guix-git/doc/guix.texi:19511 msgid "Maximum duration in seconds for the upgrade; past that time, the upgrade aborts." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19152 +#: guix-git/doc/guix.texi:19514 msgid "This is primarily useful to ensure the upgrade does not end up rebuilding or re-downloading ``the world''." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19153 +#: guix-git/doc/guix.texi:19515 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/unattended-upgrade.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19155 +#: guix-git/doc/guix.texi:19517 msgid "File where unattended upgrades are logged." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19161 +#: guix-git/doc/guix.texi:19523 #, no-wrap msgid "X11" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19162 +#: guix-git/doc/guix.texi:19524 #, no-wrap msgid "X Window System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19163 guix-git/doc/guix.texi:19436 +#: guix-git/doc/guix.texi:19525 guix-git/doc/guix.texi:19798 #, no-wrap msgid "login manager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19168 +#: guix-git/doc/guix.texi:19530 msgid "Support for the X Window graphical display system---specifically Xorg---is provided by the @code{(gnu services xorg)} module. Note that there is no @code{xorg-service} procedure. Instead, the X server is started by the @dfn{login manager}, by default the GNOME Display Manager (GDM)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19169 +#: guix-git/doc/guix.texi:19531 #, no-wrap msgid "GDM" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19170 +#: guix-git/doc/guix.texi:19532 #, no-wrap msgid "GNOME, login manager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19174 +#: guix-git/doc/guix.texi:19536 msgid "GDM of course allows users to log in into window managers and desktop environments other than GNOME; for those using GNOME, GDM is required for features such as automatic screen locking." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19175 +#: guix-git/doc/guix.texi:19537 #, no-wrap msgid "window manager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19180 +#: guix-git/doc/guix.texi:19542 msgid "To use X11, you must install at least one @dfn{window manager}---for example the @code{windowmaker} or @code{openbox} packages---preferably by adding it to the @code{packages} field of your operating system definition (@pxref{operating-system Reference, system-wide packages})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:19186 +#: guix-git/doc/guix.texi:19548 msgid "wayland-gdm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19186 +#: guix-git/doc/guix.texi:19548 msgid "GDM also supports Wayland: it can itself use Wayland instead of X11 for its user interface, and it can also start Wayland sessions. The former is required for the latter, to enable, set @code{wayland?} to @code{#t} in @code{gdm-configuration}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19187 +#: guix-git/doc/guix.texi:19549 #, no-wrap msgid "{Scheme Variable} gdm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19192 +#: guix-git/doc/guix.texi:19554 msgid "This is the type for the @uref{https://wiki.gnome.org/Projects/GDM/, GNOME Desktop Manager} (GDM), a program that manages graphical display servers and handles graphical user logins. Its value must be a @code{gdm-configuration} (see below)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19193 +#: guix-git/doc/guix.texi:19555 #, no-wrap msgid "session types" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19201 +#: guix-git/doc/guix.texi:19563 msgid "GDM looks for @dfn{session types} described by the @file{.desktop} files in @file{/run/current-system/profile/share/xsessions} (for X11 sessions) and @file{/run/current-system/profile/share/wayland-sessions} (for Wayland sessions) and allows users to choose a session from the log-in screen. Packages such as @code{gnome}, @code{xfce}, @code{i3} and @code{sway} provide @file{.desktop} files; adding them to the system-wide set of packages automatically makes them available at the log-in screen." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19205 +#: guix-git/doc/guix.texi:19567 msgid "In addition, @file{~/.xsession} files are honored. When available, @file{~/.xsession} must be an executable that starts a window manager and/or other X clients." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19207 +#: guix-git/doc/guix.texi:19569 #, no-wrap msgid "{Data Type} gdm-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19209 guix-git/doc/guix.texi:19291 +#: guix-git/doc/guix.texi:19571 guix-git/doc/guix.texi:19653 #, no-wrap msgid "@code{auto-login?} (default: @code{#f})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:19210 +#: guix-git/doc/guix.texi:19572 #, no-wrap msgid "@code{default-user} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19212 +#: guix-git/doc/guix.texi:19574 msgid "When @code{auto-login?} is false, GDM presents a log-in screen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19215 +#: guix-git/doc/guix.texi:19577 msgid "When @code{auto-login?} is true, GDM logs in directly as @code{default-user}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19216 guix-git/doc/guix.texi:25077 -#: guix-git/doc/guix.texi:26786 guix-git/doc/guix.texi:31266 -#: guix-git/doc/guix.texi:31295 guix-git/doc/guix.texi:31324 -#: guix-git/doc/guix.texi:31351 guix-git/doc/guix.texi:31406 -#: guix-git/doc/guix.texi:31431 guix-git/doc/guix.texi:31458 -#: guix-git/doc/guix.texi:31484 guix-git/doc/guix.texi:31526 +#: guix-git/doc/guix.texi:19578 guix-git/doc/guix.texi:25439 +#: guix-git/doc/guix.texi:27123 guix-git/doc/guix.texi:31631 +#: guix-git/doc/guix.texi:31660 guix-git/doc/guix.texi:31689 +#: guix-git/doc/guix.texi:31716 guix-git/doc/guix.texi:31771 +#: guix-git/doc/guix.texi:31796 guix-git/doc/guix.texi:31823 +#: guix-git/doc/guix.texi:31849 guix-git/doc/guix.texi:31891 #, no-wrap msgid "@code{debug?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19218 +#: guix-git/doc/guix.texi:19580 msgid "When true, GDM writes debug messages to its log." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19219 +#: guix-git/doc/guix.texi:19581 #, no-wrap msgid "@code{gnome-shell-assets} (default: ...)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19221 +#: guix-git/doc/guix.texi:19583 msgid "List of GNOME Shell assets needed by GDM: icon theme, fonts, etc." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19222 +#: guix-git/doc/guix.texi:19584 #, no-wrap msgid "@code{xorg-configuration} (default: @code{(xorg-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19224 guix-git/doc/guix.texi:19318 -#: guix-git/doc/guix.texi:19402 +#: guix-git/doc/guix.texi:19586 guix-git/doc/guix.texi:19680 +#: guix-git/doc/guix.texi:19764 msgid "Configuration of the Xorg graphical server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19225 +#: guix-git/doc/guix.texi:19587 #, no-wrap msgid "@code{xsession} (default: @code{(xinitrc)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19227 guix-git/doc/guix.texi:19417 +#: guix-git/doc/guix.texi:19589 guix-git/doc/guix.texi:19779 msgid "Script to run before starting a X session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19228 +#: guix-git/doc/guix.texi:19590 #, no-wrap msgid "@code{dbus-daemon} (default: @code{dbus-daemon-wrapper})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19230 +#: guix-git/doc/guix.texi:19592 msgid "File name of the @code{dbus-daemon} executable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19231 +#: guix-git/doc/guix.texi:19593 #, no-wrap msgid "@code{gdm} (default: @code{gdm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19233 +#: guix-git/doc/guix.texi:19595 msgid "The GDM package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19234 +#: guix-git/doc/guix.texi:19596 #, no-wrap msgid "@code{wayland?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19236 +#: guix-git/doc/guix.texi:19598 msgid "When true, enables Wayland in GDM, necessary to use Wayland sessions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19237 +#: guix-git/doc/guix.texi:19599 #, no-wrap msgid "@code{wayland-session} (default: @code{gdm-wayland-session-wrapper})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19240 +#: guix-git/doc/guix.texi:19602 msgid "The Wayland session wrapper to use, needed to setup the environment." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19243 +#: guix-git/doc/guix.texi:19605 #, no-wrap msgid "{Scheme Variable} slim-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19245 +#: guix-git/doc/guix.texi:19607 msgid "This is the type for the SLiM graphical login manager for X11." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19249 +#: guix-git/doc/guix.texi:19611 msgid "Like GDM, SLiM looks for session types described by @file{.desktop} files and allows users to choose a session from the log-in screen using @kbd{F1}. It also honors @file{~/.xsession} files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19256 +#: guix-git/doc/guix.texi:19618 msgid "Unlike GDM, SLiM does not spawn the user session on a different VT after logging in, which means that you can only start one graphical session. If you want to be able to run multiple graphical sessions at the same time you have to add multiple SLiM services to your system services. The following example shows how to replace the default GDM service with two SLiM services on tty7 and tty8." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19261 +#: guix-git/doc/guix.texi:19623 #, no-wrap msgid "" "(use-modules (gnu services)\n" @@ -34049,7 +34660,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19272 +#: guix-git/doc/guix.texi:19634 #, no-wrap msgid "" "(operating-system\n" @@ -34065,491 +34676,491 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19276 +#: guix-git/doc/guix.texi:19638 #, no-wrap msgid "{Data Type} slim-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19278 +#: guix-git/doc/guix.texi:19640 msgid "Data type representing the configuration of @code{slim-service-type}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19282 +#: guix-git/doc/guix.texi:19644 msgid "Whether to allow logins with empty passwords." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19283 +#: guix-git/doc/guix.texi:19645 #, no-wrap msgid "@code{gnupg?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19290 +#: guix-git/doc/guix.texi:19652 msgid "If enabled, @code{pam-gnupg} will attempt to automatically unlock the user's GPG keys with the login password via @code{gpg-agent}. The keygrips of all keys to be unlocked should be written to @file{~/.pam-gnupg}, and can be queried with @code{gpg -K --with-keygrip}. Presetting passphrases must be enabled by adding @code{allow-preset-passphrase} in @file{~/.gnupg/gpg-agent.conf}." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:19292 +#: guix-git/doc/guix.texi:19654 #, no-wrap msgid "@code{default-user} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19294 +#: guix-git/doc/guix.texi:19656 msgid "When @code{auto-login?} is false, SLiM presents a log-in screen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19297 +#: guix-git/doc/guix.texi:19659 msgid "When @code{auto-login?} is true, SLiM logs in directly as @code{default-user}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19298 +#: guix-git/doc/guix.texi:19660 #, no-wrap msgid "@code{theme} (default: @code{%default-slim-theme})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:19299 +#: guix-git/doc/guix.texi:19661 #, no-wrap msgid "@code{theme-name} (default: @code{%default-slim-theme-name})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19301 +#: guix-git/doc/guix.texi:19663 msgid "The graphical theme to use and its name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19302 +#: guix-git/doc/guix.texi:19664 #, no-wrap msgid "@code{auto-login-session} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19305 +#: guix-git/doc/guix.texi:19667 msgid "If true, this must be the name of the executable to start as the default session---e.g., @code{(file-append windowmaker \"/bin/windowmaker\")}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19309 +#: guix-git/doc/guix.texi:19671 msgid "If false, a session described by one of the available @file{.desktop} files in @code{/run/current-system/profile} and @code{~/.guix-profile} will be used." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:19314 +#: guix-git/doc/guix.texi:19676 msgid "You must install at least one window manager in the system profile or in your user profile. Failing to do that, if @code{auto-login-session} is false, you will be unable to log in." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19316 guix-git/doc/guix.texi:19400 +#: guix-git/doc/guix.texi:19678 guix-git/doc/guix.texi:19762 #, no-wrap msgid "@code{xorg-configuration} (default @code{(xorg-configuration)})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19319 +#: guix-git/doc/guix.texi:19681 #, no-wrap msgid "@code{display} (default @code{\":0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19321 +#: guix-git/doc/guix.texi:19683 msgid "The display on which to start the Xorg graphical server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19322 +#: guix-git/doc/guix.texi:19684 #, no-wrap msgid "@code{vt} (default @code{\"vt7\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19324 +#: guix-git/doc/guix.texi:19686 msgid "The VT on which to start the Xorg graphical server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19325 +#: guix-git/doc/guix.texi:19687 #, no-wrap msgid "@code{xauth} (default: @code{xauth})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19327 +#: guix-git/doc/guix.texi:19689 msgid "The XAuth package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19328 +#: guix-git/doc/guix.texi:19690 #, no-wrap msgid "@code{shepherd} (default: @code{shepherd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19331 +#: guix-git/doc/guix.texi:19693 msgid "The Shepherd package used when invoking @command{halt} and @command{reboot}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19332 +#: guix-git/doc/guix.texi:19694 #, no-wrap msgid "@code{sessreg} (default: @code{sessreg})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19334 +#: guix-git/doc/guix.texi:19696 msgid "The sessreg package used in order to register the session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19335 +#: guix-git/doc/guix.texi:19697 #, no-wrap msgid "@code{slim} (default: @code{slim})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19337 +#: guix-git/doc/guix.texi:19699 msgid "The SLiM package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19340 +#: guix-git/doc/guix.texi:19702 #, no-wrap msgid "{Scheme Variable} %default-theme" msgstr "" #. type: defvrx -#: guix-git/doc/guix.texi:19341 +#: guix-git/doc/guix.texi:19703 #, no-wrap msgid "{Scheme Variable} %default-theme-name" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19343 +#: guix-git/doc/guix.texi:19705 msgid "The default SLiM theme and its name." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19346 guix-git/doc/guix.texi:19453 +#: guix-git/doc/guix.texi:19708 guix-git/doc/guix.texi:19815 #, no-wrap msgid "{Data Type} sddm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19348 +#: guix-git/doc/guix.texi:19710 msgid "This is the data type representing the SDDM service configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19350 +#: guix-git/doc/guix.texi:19712 #, no-wrap msgid "@code{display-server} (default: \"x11\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19353 +#: guix-git/doc/guix.texi:19715 msgid "Select display server to use for the greeter. Valid values are @samp{\"x11\"} or @samp{\"wayland\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19354 +#: guix-git/doc/guix.texi:19716 #, no-wrap msgid "@code{numlock} (default: \"on\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19356 +#: guix-git/doc/guix.texi:19718 msgid "Valid values are @samp{\"on\"}, @samp{\"off\"} or @samp{\"none\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19357 +#: guix-git/doc/guix.texi:19719 #, no-wrap msgid "@code{halt-command} (default @code{#~(string-apppend #$shepherd \"/sbin/halt\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19359 +#: guix-git/doc/guix.texi:19721 msgid "Command to run when halting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19360 +#: guix-git/doc/guix.texi:19722 #, no-wrap msgid "@code{reboot-command} (default @code{#~(string-append #$shepherd \"/sbin/reboot\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19362 +#: guix-git/doc/guix.texi:19724 msgid "Command to run when rebooting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19363 +#: guix-git/doc/guix.texi:19725 #, no-wrap msgid "@code{theme} (default \"maldives\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19366 +#: guix-git/doc/guix.texi:19728 msgid "Theme to use. Default themes provided by SDDM are @samp{\"elarun\"}, @samp{\"maldives\"} or @samp{\"maya\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19367 +#: guix-git/doc/guix.texi:19729 #, no-wrap msgid "@code{themes-directory} (default \"/run/current-system/profile/share/sddm/themes\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19369 +#: guix-git/doc/guix.texi:19731 msgid "Directory to look for themes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19370 +#: guix-git/doc/guix.texi:19732 #, no-wrap msgid "@code{faces-directory} (default \"/run/current-system/profile/share/sddm/faces\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19372 +#: guix-git/doc/guix.texi:19734 msgid "Directory to look for faces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19373 +#: guix-git/doc/guix.texi:19735 #, no-wrap msgid "@code{default-path} (default \"/run/current-system/profile/bin\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19375 +#: guix-git/doc/guix.texi:19737 msgid "Default PATH to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19376 +#: guix-git/doc/guix.texi:19738 #, no-wrap msgid "@code{minimum-uid} (default: 1000)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19378 +#: guix-git/doc/guix.texi:19740 msgid "Minimum UID displayed in SDDM and allowed for log-in." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19379 +#: guix-git/doc/guix.texi:19741 #, no-wrap msgid "@code{maximum-uid} (default: 2000)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19381 +#: guix-git/doc/guix.texi:19743 msgid "Maximum UID to display in SDDM." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19382 +#: guix-git/doc/guix.texi:19744 #, no-wrap msgid "@code{remember-last-user?} (default #t)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19384 +#: guix-git/doc/guix.texi:19746 msgid "Remember last user." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19385 +#: guix-git/doc/guix.texi:19747 #, no-wrap msgid "@code{remember-last-session?} (default #t)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19387 +#: guix-git/doc/guix.texi:19749 msgid "Remember last session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19388 +#: guix-git/doc/guix.texi:19750 #, no-wrap msgid "@code{hide-users} (default \"\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19390 +#: guix-git/doc/guix.texi:19752 msgid "Usernames to hide from SDDM greeter." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19391 +#: guix-git/doc/guix.texi:19753 #, no-wrap msgid "@code{hide-shells} (default @code{#~(string-append #$shadow \"/sbin/nologin\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19393 +#: guix-git/doc/guix.texi:19755 msgid "Users with shells listed will be hidden from the SDDM greeter." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19394 +#: guix-git/doc/guix.texi:19756 #, no-wrap msgid "@code{session-command} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/wayland-session\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19396 +#: guix-git/doc/guix.texi:19758 msgid "Script to run before starting a wayland session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19397 +#: guix-git/doc/guix.texi:19759 #, no-wrap msgid "@code{sessions-directory} (default \"/run/current-system/profile/share/wayland-sessions\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19399 +#: guix-git/doc/guix.texi:19761 msgid "Directory to look for desktop files starting wayland sessions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19403 +#: guix-git/doc/guix.texi:19765 #, no-wrap msgid "@code{xauth-path} (default @code{#~(string-append #$xauth \"/bin/xauth\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19405 +#: guix-git/doc/guix.texi:19767 msgid "Path to xauth." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19406 +#: guix-git/doc/guix.texi:19768 #, no-wrap msgid "@code{xephyr-path} (default @code{#~(string-append #$xorg-server \"/bin/Xephyr\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19408 +#: guix-git/doc/guix.texi:19770 msgid "Path to Xephyr." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19409 +#: guix-git/doc/guix.texi:19771 #, no-wrap msgid "@code{xdisplay-start} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/Xsetup\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19411 +#: guix-git/doc/guix.texi:19773 msgid "Script to run after starting xorg-server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19412 +#: guix-git/doc/guix.texi:19774 #, no-wrap msgid "@code{xdisplay-stop} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/Xstop\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19414 +#: guix-git/doc/guix.texi:19776 msgid "Script to run before stopping xorg-server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19415 +#: guix-git/doc/guix.texi:19777 #, no-wrap msgid "@code{xsession-command} (default: @code{xinitrc})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19418 +#: guix-git/doc/guix.texi:19780 #, no-wrap msgid "@code{xsessions-directory} (default: \"/run/current-system/profile/share/xsessions\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19420 +#: guix-git/doc/guix.texi:19782 msgid "Directory to look for desktop files starting X sessions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19421 +#: guix-git/doc/guix.texi:19783 #, no-wrap msgid "@code{minimum-vt} (default: 7)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19423 +#: guix-git/doc/guix.texi:19785 msgid "Minimum VT to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19424 +#: guix-git/doc/guix.texi:19786 #, no-wrap msgid "@code{auto-login-user} (default \"\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19426 +#: guix-git/doc/guix.texi:19788 msgid "User to use for auto-login." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19427 +#: guix-git/doc/guix.texi:19789 #, no-wrap msgid "@code{auto-login-session} (default \"\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19429 +#: guix-git/doc/guix.texi:19791 msgid "Desktop file to use for auto-login." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19430 +#: guix-git/doc/guix.texi:19792 #, no-wrap msgid "@code{relogin?} (default #f)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19432 +#: guix-git/doc/guix.texi:19794 msgid "Relogin after logout." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19437 +#: guix-git/doc/guix.texi:19799 #, no-wrap msgid "X11 login" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19438 +#: guix-git/doc/guix.texi:19800 #, no-wrap msgid "{Scheme Variable} sddm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19442 +#: guix-git/doc/guix.texi:19804 msgid "This is the type of the service to run the @uref{https://github.com/sddm/sddm,SDDM display manager}. Its value must be a @code{sddm-configuration} record (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19444 +#: guix-git/doc/guix.texi:19806 msgid "Here's an example use:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19450 +#: guix-git/doc/guix.texi:19812 #, no-wrap msgid "" "(service sddm-service-type\n" @@ -34559,265 +35170,265 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19456 +#: guix-git/doc/guix.texi:19818 msgid "This data type represents the configuration of the SDDM login manager. The available fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19458 +#: guix-git/doc/guix.texi:19820 #, no-wrap msgid "@code{sddm} (default: @code{sddm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19460 +#: guix-git/doc/guix.texi:19822 msgid "The SDDM package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19461 +#: guix-git/doc/guix.texi:19823 #, no-wrap msgid "@code{display-server} (default: @code{\"x11\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19463 +#: guix-git/doc/guix.texi:19825 msgid "This must be either @code{\"x11\"} or @code{\"wayland\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19466 +#: guix-git/doc/guix.texi:19828 #, no-wrap msgid "@code{auto-login-user} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19469 +#: guix-git/doc/guix.texi:19831 msgid "If non-empty, this is the user account under which to log in automatically." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19470 +#: guix-git/doc/guix.texi:19832 #, no-wrap msgid "@code{auto-login-session} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19473 +#: guix-git/doc/guix.texi:19835 msgid "If non-empty, this is the @file{.desktop} file name to use as the auto-login session." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19476 +#: guix-git/doc/guix.texi:19838 #, no-wrap msgid "Xorg, configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19477 +#: guix-git/doc/guix.texi:19839 #, no-wrap msgid "{Data Type} xorg-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19482 +#: guix-git/doc/guix.texi:19844 msgid "This data type represents the configuration of the Xorg graphical display server. Note that there is no Xorg service; instead, the X server is started by a ``display manager'' such as GDM, SDDM, and SLiM@. Thus, the configuration of these display managers aggregates an @code{xorg-configuration} record." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19484 +#: guix-git/doc/guix.texi:19846 #, no-wrap msgid "@code{modules} (default: @code{%default-xorg-modules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19487 +#: guix-git/doc/guix.texi:19849 msgid "This is a list of @dfn{module packages} loaded by the Xorg server---e.g., @code{xf86-video-vesa}, @code{xf86-input-keyboard}, and so on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19488 +#: guix-git/doc/guix.texi:19850 #, no-wrap msgid "@code{fonts} (default: @code{%default-xorg-fonts})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19490 +#: guix-git/doc/guix.texi:19852 msgid "This is a list of font directories to add to the server's @dfn{font path}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19491 +#: guix-git/doc/guix.texi:19853 #, no-wrap msgid "@code{drivers} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19495 +#: guix-git/doc/guix.texi:19857 msgid "This must be either the empty list, in which case Xorg chooses a graphics driver automatically, or a list of driver names that will be tried in this order---e.g., @code{(\"modesetting\" \"vesa\")}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19496 +#: guix-git/doc/guix.texi:19858 #, no-wrap msgid "@code{resolutions} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19500 +#: guix-git/doc/guix.texi:19862 msgid "When @code{resolutions} is the empty list, Xorg chooses an appropriate screen resolution. Otherwise, it must be a list of resolutions---e.g., @code{((1024 768) (640 480))}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19501 +#: guix-git/doc/guix.texi:19863 #, no-wrap msgid "keyboard layout, for Xorg" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19502 +#: guix-git/doc/guix.texi:19864 #, no-wrap msgid "keymap, for Xorg" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19506 +#: guix-git/doc/guix.texi:19868 msgid "If this is @code{#f}, Xorg uses the default keyboard layout---usually US English (``qwerty'') for a 105-key PC keyboard." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19510 +#: guix-git/doc/guix.texi:19872 msgid "Otherwise this must be a @code{keyboard-layout} object specifying the keyboard layout in use when Xorg is running. @xref{Keyboard Layout}, for more information on how to specify the keyboard layout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19511 guix-git/doc/guix.texi:21223 -#: guix-git/doc/guix.texi:34046 +#: guix-git/doc/guix.texi:19873 guix-git/doc/guix.texi:21585 +#: guix-git/doc/guix.texi:34483 #, no-wrap msgid "@code{extra-config} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19514 guix-git/doc/guix.texi:34050 +#: guix-git/doc/guix.texi:19876 guix-git/doc/guix.texi:34487 msgid "This is a list of strings or objects appended to the configuration file. It is used to pass extra text to be added verbatim to the configuration file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19515 +#: guix-git/doc/guix.texi:19877 #, no-wrap msgid "@code{server} (default: @code{xorg-server})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19517 +#: guix-git/doc/guix.texi:19879 msgid "This is the package providing the Xorg server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19518 +#: guix-git/doc/guix.texi:19880 #, no-wrap msgid "@code{server-arguments} (default: @code{%default-xorg-server-arguments})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19521 +#: guix-git/doc/guix.texi:19883 msgid "This is the list of command-line arguments to pass to the X server. The default is @code{-nolisten tcp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19524 +#: guix-git/doc/guix.texi:19886 #, no-wrap msgid "{Scheme Procedure} set-xorg-configuration @var{config} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19528 +#: guix-git/doc/guix.texi:19890 msgid "[@var{login-manager-service-type}] Tell the log-in manager (of type @var{login-manager-service-type}) to use @var{config}, an @code{} record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19532 +#: guix-git/doc/guix.texi:19894 msgid "Since the Xorg configuration is embedded in the log-in manager's configuration---e.g., @code{gdm-configuration}---this procedure provides a shorthand to set the Xorg configuration." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19534 +#: guix-git/doc/guix.texi:19896 #, no-wrap msgid "{Scheme Procedure} xorg-start-command [@var{config}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19538 +#: guix-git/doc/guix.texi:19900 msgid "Return a @code{startx} script in which the modules, fonts, etc. specified in @var{config}, are available. The result should be used in place of @code{startx}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19540 +#: guix-git/doc/guix.texi:19902 msgid "Usually the X server is started by a login manager." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19543 +#: guix-git/doc/guix.texi:19905 #, no-wrap msgid "{Scheme Procedure} screen-locker-service @var{package} [@var{program}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19547 +#: guix-git/doc/guix.texi:19909 msgid "Add @var{package}, a package for a screen locker or screen saver whose command is @var{program}, to the set of setuid programs and add a PAM entry for it. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19550 +#: guix-git/doc/guix.texi:19912 #, no-wrap msgid "(screen-locker-service xlockmore \"xlock\")\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19553 +#: guix-git/doc/guix.texi:19915 msgid "makes the good ol' XlockMore usable." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19559 +#: guix-git/doc/guix.texi:19921 #, no-wrap msgid "printer support with CUPS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19563 +#: guix-git/doc/guix.texi:19925 msgid "The @code{(gnu services cups)} module provides a Guix service definition for the CUPS printing service. To add printer support to a Guix system, add a @code{cups-service} to the operating system definition:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19564 +#: guix-git/doc/guix.texi:19926 #, no-wrap msgid "{Scheme Variable} cups-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19568 +#: guix-git/doc/guix.texi:19930 msgid "The service type for the CUPS print server. Its value should be a valid CUPS configuration (see below). To use the default settings, simply write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19570 +#: guix-git/doc/guix.texi:19932 #, no-wrap msgid "(service cups-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19580 +#: guix-git/doc/guix.texi:19942 msgid "The CUPS configuration controls the basic things about your CUPS installation: what interfaces it listens on, what to do if a print job fails, how much logging to do, and so on. To actually add a printer, you have to visit the @url{http://localhost:631} URL, or use a tool such as GNOME's printer configuration services. By default, configuring a CUPS service will generate a self-signed certificate if needed, for secure connections to the print server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19586 +#: guix-git/doc/guix.texi:19948 msgid "Suppose you want to enable the Web interface of CUPS and also add support for Epson printers @i{via} the @code{epson-inkjet-printer-escpr} package and for HP printers @i{via} the @code{hplip-minimal} package. You can do that directly, like this (you need to use the @code{(gnu packages cups)} module):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19593 +#: guix-git/doc/guix.texi:19955 #, no-wrap msgid "" "(service cups-service-type\n" @@ -34828,1584 +35439,1582 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19598 +#: guix-git/doc/guix.texi:19960 msgid "Note: If you wish to use the Qt5 based GUI which comes with the hplip package then it is suggested that you install the @code{hplip} package, either in your OS configuration file or as your user." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19605 +#: guix-git/doc/guix.texi:19967 msgid "The available configuration parameters follow. Each parameter definition is preceded by its type; for example, @samp{string-list foo} indicates that the @code{foo} parameter should be specified as a list of strings. There is also a way to specify the configuration as a string, if you have an old @code{cupsd.conf} file that you want to port over from some other system; see the end for more details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19616 +#: guix-git/doc/guix.texi:19978 msgid "Available @code{cups-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19617 +#: guix-git/doc/guix.texi:19979 #, no-wrap msgid "{@code{cups-configuration} parameter} package cups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19619 guix-git/doc/guix.texi:20387 +#: guix-git/doc/guix.texi:19981 guix-git/doc/guix.texi:20749 msgid "The CUPS package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19621 +#: guix-git/doc/guix.texi:19983 #, no-wrap msgid "{@code{cups-configuration} parameter} package-list extensions (default: @code{(list brlaser cups-filters epson-inkjet-printer-escpr foomatic-filters hplip-minimal splix)})" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19623 +#: guix-git/doc/guix.texi:19985 msgid "Drivers and other extensions to the CUPS package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19625 +#: guix-git/doc/guix.texi:19987 #, no-wrap msgid "{@code{cups-configuration} parameter} files-configuration files-configuration" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19628 +#: guix-git/doc/guix.texi:19990 msgid "Configuration of where to write logs, what directories to use for print spools, and related privileged configuration parameters." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19630 +#: guix-git/doc/guix.texi:19992 msgid "Available @code{files-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19631 +#: guix-git/doc/guix.texi:19993 #, no-wrap msgid "{@code{files-configuration} parameter} log-location access-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19639 +#: guix-git/doc/guix.texi:20001 msgid "Defines the access log filename. Specifying a blank filename disables access log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-access_log}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19641 +#: guix-git/doc/guix.texi:20003 msgid "Defaults to @samp{\"/var/log/cups/access_log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19643 +#: guix-git/doc/guix.texi:20005 #, no-wrap msgid "{@code{files-configuration} parameter} file-name cache-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19645 +#: guix-git/doc/guix.texi:20007 msgid "Where CUPS should cache data." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19647 +#: guix-git/doc/guix.texi:20009 msgid "Defaults to @samp{\"/var/cache/cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19649 +#: guix-git/doc/guix.texi:20011 #, no-wrap msgid "{@code{files-configuration} parameter} string config-file-perm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19652 +#: guix-git/doc/guix.texi:20014 msgid "Specifies the permissions for all configuration files that the scheduler writes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19658 +#: guix-git/doc/guix.texi:20020 msgid "Note that the permissions for the printers.conf file are currently masked to only allow access from the scheduler user (typically root). This is done because printer device URIs sometimes contain sensitive authentication information that should not be generally known on the system. There is no way to disable this security feature." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19660 +#: guix-git/doc/guix.texi:20022 msgid "Defaults to @samp{\"0640\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19662 +#: guix-git/doc/guix.texi:20024 #, no-wrap msgid "{@code{files-configuration} parameter} log-location error-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19670 +#: guix-git/doc/guix.texi:20032 msgid "Defines the error log filename. Specifying a blank filename disables error log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-error_log}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19672 +#: guix-git/doc/guix.texi:20034 msgid "Defaults to @samp{\"/var/log/cups/error_log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19674 +#: guix-git/doc/guix.texi:20036 #, no-wrap msgid "{@code{files-configuration} parameter} string fatal-errors" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19677 +#: guix-git/doc/guix.texi:20039 msgid "Specifies which errors are fatal, causing the scheduler to exit. The kind strings are:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19681 +#: guix-git/doc/guix.texi:20043 msgid "No errors are fatal." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19684 +#: guix-git/doc/guix.texi:20046 msgid "All of the errors below are fatal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19685 +#: guix-git/doc/guix.texi:20047 #, no-wrap msgid "browse" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19688 +#: guix-git/doc/guix.texi:20050 msgid "Browsing initialization errors are fatal, for example failed connections to the DNS-SD daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19689 +#: guix-git/doc/guix.texi:20051 #, no-wrap msgid "config" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19691 +#: guix-git/doc/guix.texi:20053 msgid "Configuration file syntax errors are fatal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19692 +#: guix-git/doc/guix.texi:20054 #, no-wrap msgid "listen" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19695 +#: guix-git/doc/guix.texi:20057 msgid "Listen or Port errors are fatal, except for IPv6 failures on the loopback or @code{any} addresses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19696 +#: guix-git/doc/guix.texi:20058 #, no-wrap msgid "log" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19698 +#: guix-git/doc/guix.texi:20060 msgid "Log file creation or write errors are fatal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19699 +#: guix-git/doc/guix.texi:20061 #, no-wrap msgid "permissions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19702 +#: guix-git/doc/guix.texi:20064 msgid "Bad startup file permissions are fatal, for example shared TLS certificate and key files with world-read permissions." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19705 +#: guix-git/doc/guix.texi:20067 msgid "Defaults to @samp{\"all -browse\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19707 +#: guix-git/doc/guix.texi:20069 #, no-wrap msgid "{@code{files-configuration} parameter} boolean file-device?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19710 +#: guix-git/doc/guix.texi:20072 msgid "Specifies whether the file pseudo-device can be used for new printer queues. The URI @uref{file:///dev/null} is always allowed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19714 +#: guix-git/doc/guix.texi:20076 #, no-wrap msgid "{@code{files-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19717 +#: guix-git/doc/guix.texi:20079 msgid "Specifies the group name or ID that will be used when executing external programs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19719 guix-git/doc/guix.texi:19805 +#: guix-git/doc/guix.texi:20081 guix-git/doc/guix.texi:20167 msgid "Defaults to @samp{\"lp\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19721 +#: guix-git/doc/guix.texi:20083 #, no-wrap msgid "{@code{files-configuration} parameter} string log-file-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19723 +#: guix-git/doc/guix.texi:20085 msgid "Specifies the group name or ID that will be used for log files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19725 +#: guix-git/doc/guix.texi:20087 msgid "Defaults to @samp{\"lpadmin\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19727 +#: guix-git/doc/guix.texi:20089 #, no-wrap msgid "{@code{files-configuration} parameter} string log-file-perm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19729 +#: guix-git/doc/guix.texi:20091 msgid "Specifies the permissions for all log files that the scheduler writes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19731 +#: guix-git/doc/guix.texi:20093 msgid "Defaults to @samp{\"0644\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19733 +#: guix-git/doc/guix.texi:20095 #, no-wrap msgid "{@code{files-configuration} parameter} log-location page-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19741 +#: guix-git/doc/guix.texi:20103 msgid "Defines the page log filename. Specifying a blank filename disables page log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-page_log}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19743 +#: guix-git/doc/guix.texi:20105 msgid "Defaults to @samp{\"/var/log/cups/page_log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19745 +#: guix-git/doc/guix.texi:20107 #, no-wrap msgid "{@code{files-configuration} parameter} string remote-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19748 +#: guix-git/doc/guix.texi:20110 msgid "Specifies the username that is associated with unauthenticated accesses by clients claiming to be the root user. The default is @code{remroot}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19750 +#: guix-git/doc/guix.texi:20112 msgid "Defaults to @samp{\"remroot\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19752 +#: guix-git/doc/guix.texi:20114 #, no-wrap msgid "{@code{files-configuration} parameter} file-name request-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19755 +#: guix-git/doc/guix.texi:20117 msgid "Specifies the directory that contains print jobs and other HTTP request data." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19757 +#: guix-git/doc/guix.texi:20119 msgid "Defaults to @samp{\"/var/spool/cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19759 +#: guix-git/doc/guix.texi:20121 #, no-wrap msgid "{@code{files-configuration} parameter} sandboxing sandboxing" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19764 +#: guix-git/doc/guix.texi:20126 msgid "Specifies the level of security sandboxing that is applied to print filters, backends, and other child processes of the scheduler; either @code{relaxed} or @code{strict}. This directive is currently only used/supported on macOS." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19766 +#: guix-git/doc/guix.texi:20128 msgid "Defaults to @samp{strict}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19768 +#: guix-git/doc/guix.texi:20130 #, no-wrap msgid "{@code{files-configuration} parameter} file-name server-keychain" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19773 +#: guix-git/doc/guix.texi:20135 msgid "Specifies the location of TLS certificates and private keys. CUPS will look for public and private keys in this directory: @file{.crt} files for PEM-encoded certificates and corresponding @file{.key} files for PEM-encoded private keys." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19775 +#: guix-git/doc/guix.texi:20137 msgid "Defaults to @samp{\"/etc/cups/ssl\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19777 +#: guix-git/doc/guix.texi:20139 #, no-wrap msgid "{@code{files-configuration} parameter} file-name server-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19779 +#: guix-git/doc/guix.texi:20141 msgid "Specifies the directory containing the server configuration files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19781 +#: guix-git/doc/guix.texi:20143 msgid "Defaults to @samp{\"/etc/cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19783 +#: guix-git/doc/guix.texi:20145 #, no-wrap msgid "{@code{files-configuration} parameter} boolean sync-on-close?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19786 +#: guix-git/doc/guix.texi:20148 msgid "Specifies whether the scheduler calls fsync(2) after writing configuration or state files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19790 +#: guix-git/doc/guix.texi:20152 #, no-wrap msgid "{@code{files-configuration} parameter} space-separated-string-list system-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19792 +#: guix-git/doc/guix.texi:20154 msgid "Specifies the group(s) to use for @code{@@SYSTEM} group authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19794 +#: guix-git/doc/guix.texi:20156 #, no-wrap msgid "{@code{files-configuration} parameter} file-name temp-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19796 +#: guix-git/doc/guix.texi:20158 msgid "Specifies the directory where temporary files are stored." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19798 +#: guix-git/doc/guix.texi:20160 msgid "Defaults to @samp{\"/var/spool/cups/tmp\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19800 +#: guix-git/doc/guix.texi:20162 #, no-wrap msgid "{@code{files-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19803 +#: guix-git/doc/guix.texi:20165 msgid "Specifies the user name or ID that is used when running external programs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19807 +#: guix-git/doc/guix.texi:20169 #, no-wrap msgid "{@code{files-configuration} parameter} string set-env" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19809 +#: guix-git/doc/guix.texi:20171 msgid "Set the specified environment variable to be passed to child processes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19811 +#: guix-git/doc/guix.texi:20173 msgid "Defaults to @samp{\"variable value\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19814 +#: guix-git/doc/guix.texi:20176 #, no-wrap msgid "{@code{cups-configuration} parameter} access-log-level access-log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19821 +#: guix-git/doc/guix.texi:20183 msgid "Specifies the logging level for the AccessLog file. The @code{config} level logs when printers and classes are added, deleted, or modified and when configuration files are accessed or updated. The @code{actions} level logs when print jobs are submitted, held, released, modified, or canceled, and any of the conditions for @code{config}. The @code{all} level logs all requests." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19823 +#: guix-git/doc/guix.texi:20185 msgid "Defaults to @samp{actions}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19825 +#: guix-git/doc/guix.texi:20187 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean auto-purge-jobs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19828 +#: guix-git/doc/guix.texi:20190 msgid "Specifies whether to purge job history data automatically when it is no longer required for quotas." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19832 +#: guix-git/doc/guix.texi:20194 #, no-wrap msgid "{@code{cups-configuration} parameter} comma-separated-string-list browse-dns-sd-sub-types" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19836 +#: guix-git/doc/guix.texi:20198 msgid "Specifies a list of DNS-SD sub-types to advertise for each shared printer. For example, @samp{\"_cups\" \"_print\"} will tell network clients that both CUPS sharing and IPP Everywhere are supported." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19838 +#: guix-git/doc/guix.texi:20200 msgid "Defaults to @samp{\"_cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19840 +#: guix-git/doc/guix.texi:20202 #, no-wrap msgid "{@code{cups-configuration} parameter} browse-local-protocols browse-local-protocols" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19842 +#: guix-git/doc/guix.texi:20204 msgid "Specifies which protocols to use for local printer sharing." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19844 +#: guix-git/doc/guix.texi:20206 msgid "Defaults to @samp{dnssd}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19846 +#: guix-git/doc/guix.texi:20208 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean browse-web-if?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19848 +#: guix-git/doc/guix.texi:20210 msgid "Specifies whether the CUPS web interface is advertised." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19852 +#: guix-git/doc/guix.texi:20214 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean browsing?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19854 +#: guix-git/doc/guix.texi:20216 msgid "Specifies whether shared printers are advertised." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19858 +#: guix-git/doc/guix.texi:20220 #, no-wrap msgid "{@code{cups-configuration} parameter} string classification" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19863 +#: guix-git/doc/guix.texi:20225 msgid "Specifies the security classification of the server. Any valid banner name can be used, including @samp{\"classified\"}, @samp{\"confidential\"}, @samp{\"secret\"}, @samp{\"topsecret\"}, and @samp{\"unclassified\"}, or the banner can be omitted to disable secure printing functions." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19865 guix-git/doc/guix.texi:20196 -#: guix-git/doc/guix.texi:22180 guix-git/doc/guix.texi:22192 -#: guix-git/doc/guix.texi:22220 guix-git/doc/guix.texi:22977 -#: guix-git/doc/guix.texi:22991 guix-git/doc/guix.texi:22998 -#: guix-git/doc/guix.texi:23005 guix-git/doc/guix.texi:23035 -#: guix-git/doc/guix.texi:23133 guix-git/doc/guix.texi:25252 -#: guix-git/doc/guix.texi:25278 guix-git/doc/guix.texi:25314 -#: guix-git/doc/guix.texi:25360 guix-git/doc/guix.texi:25379 -#: guix-git/doc/guix.texi:25418 guix-git/doc/guix.texi:25477 -#: guix-git/doc/guix.texi:25487 guix-git/doc/guix.texi:30085 -#: guix-git/doc/guix.texi:30093 guix-git/doc/guix.texi:30101 -#: guix-git/doc/guix.texi:30109 guix-git/doc/guix.texi:30388 -#: guix-git/doc/guix.texi:31743 guix-git/doc/guix.texi:31751 -#: guix-git/doc/guix.texi:31759 guix-git/doc/guix.texi:31867 -#: guix-git/doc/guix.texi:31892 guix-git/doc/guix.texi:32023 -#: guix-git/doc/guix.texi:32031 guix-git/doc/guix.texi:32039 -#: guix-git/doc/guix.texi:32047 guix-git/doc/guix.texi:32055 -#: guix-git/doc/guix.texi:32063 guix-git/doc/guix.texi:32086 -#: guix-git/doc/guix.texi:32094 guix-git/doc/guix.texi:32146 -#: guix-git/doc/guix.texi:32162 guix-git/doc/guix.texi:32170 -#: guix-git/doc/guix.texi:32209 guix-git/doc/guix.texi:32232 -#: guix-git/doc/guix.texi:32254 guix-git/doc/guix.texi:32261 -#: guix-git/doc/guix.texi:32296 guix-git/doc/guix.texi:32304 -#: guix-git/doc/guix.texi:32328 guix-git/doc/guix.texi:32360 -#: guix-git/doc/guix.texi:32389 guix-git/doc/guix.texi:32396 -#: guix-git/doc/guix.texi:32403 guix-git/doc/guix.texi:32411 -#: guix-git/doc/guix.texi:32425 guix-git/doc/guix.texi:32434 -#: guix-git/doc/guix.texi:32444 guix-git/doc/guix.texi:32451 -#: guix-git/doc/guix.texi:32458 guix-git/doc/guix.texi:32465 -#: guix-git/doc/guix.texi:32536 guix-git/doc/guix.texi:32543 -#: guix-git/doc/guix.texi:32550 guix-git/doc/guix.texi:32559 -#: guix-git/doc/guix.texi:32575 guix-git/doc/guix.texi:32582 -#: guix-git/doc/guix.texi:32589 guix-git/doc/guix.texi:32596 -#: guix-git/doc/guix.texi:32604 guix-git/doc/guix.texi:32612 +#: guix-git/doc/guix.texi:20227 guix-git/doc/guix.texi:20558 +#: guix-git/doc/guix.texi:22542 guix-git/doc/guix.texi:22554 +#: guix-git/doc/guix.texi:22582 guix-git/doc/guix.texi:23339 +#: guix-git/doc/guix.texi:23353 guix-git/doc/guix.texi:23360 +#: guix-git/doc/guix.texi:23367 guix-git/doc/guix.texi:23397 +#: guix-git/doc/guix.texi:23495 guix-git/doc/guix.texi:25614 +#: guix-git/doc/guix.texi:25640 guix-git/doc/guix.texi:25676 +#: guix-git/doc/guix.texi:25722 guix-git/doc/guix.texi:25741 +#: guix-git/doc/guix.texi:25780 guix-git/doc/guix.texi:30450 +#: guix-git/doc/guix.texi:30458 guix-git/doc/guix.texi:30466 +#: guix-git/doc/guix.texi:30474 guix-git/doc/guix.texi:30753 +#: guix-git/doc/guix.texi:32108 guix-git/doc/guix.texi:32116 +#: guix-git/doc/guix.texi:32124 guix-git/doc/guix.texi:32232 +#: guix-git/doc/guix.texi:32257 guix-git/doc/guix.texi:32388 +#: guix-git/doc/guix.texi:32396 guix-git/doc/guix.texi:32404 +#: guix-git/doc/guix.texi:32412 guix-git/doc/guix.texi:32420 +#: guix-git/doc/guix.texi:32428 guix-git/doc/guix.texi:32451 +#: guix-git/doc/guix.texi:32459 guix-git/doc/guix.texi:32511 +#: guix-git/doc/guix.texi:32527 guix-git/doc/guix.texi:32535 +#: guix-git/doc/guix.texi:32574 guix-git/doc/guix.texi:32597 +#: guix-git/doc/guix.texi:32619 guix-git/doc/guix.texi:32626 +#: guix-git/doc/guix.texi:32661 guix-git/doc/guix.texi:32669 +#: guix-git/doc/guix.texi:32693 guix-git/doc/guix.texi:32725 +#: guix-git/doc/guix.texi:32754 guix-git/doc/guix.texi:32761 +#: guix-git/doc/guix.texi:32768 guix-git/doc/guix.texi:32776 +#: guix-git/doc/guix.texi:32790 guix-git/doc/guix.texi:32799 +#: guix-git/doc/guix.texi:32809 guix-git/doc/guix.texi:32816 +#: guix-git/doc/guix.texi:32823 guix-git/doc/guix.texi:32830 +#: guix-git/doc/guix.texi:32901 guix-git/doc/guix.texi:32908 +#: guix-git/doc/guix.texi:32915 guix-git/doc/guix.texi:32924 +#: guix-git/doc/guix.texi:32940 guix-git/doc/guix.texi:32947 +#: guix-git/doc/guix.texi:32954 guix-git/doc/guix.texi:32961 +#: guix-git/doc/guix.texi:32969 guix-git/doc/guix.texi:32977 msgid "Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19867 +#: guix-git/doc/guix.texi:20229 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean classify-override?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19870 +#: guix-git/doc/guix.texi:20232 msgid "Specifies whether users may override the classification (cover page) of individual print jobs using the @code{job-sheets} option." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19874 +#: guix-git/doc/guix.texi:20236 #, no-wrap msgid "{@code{cups-configuration} parameter} default-auth-type default-auth-type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19876 +#: guix-git/doc/guix.texi:20238 msgid "Specifies the default type of authentication to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19878 +#: guix-git/doc/guix.texi:20240 msgid "Defaults to @samp{Basic}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19880 +#: guix-git/doc/guix.texi:20242 #, no-wrap msgid "{@code{cups-configuration} parameter} default-encryption default-encryption" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19882 +#: guix-git/doc/guix.texi:20244 msgid "Specifies whether encryption will be used for authenticated requests." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19884 +#: guix-git/doc/guix.texi:20246 msgid "Defaults to @samp{Required}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19886 +#: guix-git/doc/guix.texi:20248 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-language" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19888 +#: guix-git/doc/guix.texi:20250 msgid "Specifies the default language to use for text and web content." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19890 +#: guix-git/doc/guix.texi:20252 msgid "Defaults to @samp{\"en\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19892 +#: guix-git/doc/guix.texi:20254 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-paper-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19897 +#: guix-git/doc/guix.texi:20259 msgid "Specifies the default paper size for new print queues. @samp{\"Auto\"} uses a locale-specific default, while @samp{\"None\"} specifies there is no default paper size. Specific size names are typically @samp{\"Letter\"} or @samp{\"A4\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19899 +#: guix-git/doc/guix.texi:20261 msgid "Defaults to @samp{\"Auto\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19901 +#: guix-git/doc/guix.texi:20263 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-policy" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19903 +#: guix-git/doc/guix.texi:20265 msgid "Specifies the default access policy to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19905 +#: guix-git/doc/guix.texi:20267 msgid "Defaults to @samp{\"default\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19907 +#: guix-git/doc/guix.texi:20269 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean default-shared?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19909 +#: guix-git/doc/guix.texi:20271 msgid "Specifies whether local printers are shared by default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19911 guix-git/doc/guix.texi:19991 -#: guix-git/doc/guix.texi:20281 guix-git/doc/guix.texi:23067 -#: guix-git/doc/guix.texi:23118 guix-git/doc/guix.texi:23125 -#: guix-git/doc/guix.texi:24407 guix-git/doc/guix.texi:24595 -#: guix-git/doc/guix.texi:24712 guix-git/doc/guix.texi:24748 -#: guix-git/doc/guix.texi:24799 guix-git/doc/guix.texi:24818 -#: guix-git/doc/guix.texi:24828 guix-git/doc/guix.texi:24838 -#: guix-git/doc/guix.texi:24897 guix-git/doc/guix.texi:24919 -#: guix-git/doc/guix.texi:24944 guix-git/doc/guix.texi:24970 -#: guix-git/doc/guix.texi:24988 guix-git/doc/guix.texi:28180 -#: guix-git/doc/guix.texi:28208 guix-git/doc/guix.texi:28344 -#: guix-git/doc/guix.texi:28351 guix-git/doc/guix.texi:28359 -#: guix-git/doc/guix.texi:28396 guix-git/doc/guix.texi:28410 -#: guix-git/doc/guix.texi:28499 guix-git/doc/guix.texi:28506 -#: guix-git/doc/guix.texi:28514 guix-git/doc/guix.texi:29293 -#: guix-git/doc/guix.texi:29433 guix-git/doc/guix.texi:29619 -#: guix-git/doc/guix.texi:29626 guix-git/doc/guix.texi:29648 -#: guix-git/doc/guix.texi:29687 guix-git/doc/guix.texi:29707 -#: guix-git/doc/guix.texi:29721 guix-git/doc/guix.texi:29934 -#: guix-git/doc/guix.texi:31845 guix-git/doc/guix.texi:31933 -#: guix-git/doc/guix.texi:31949 guix-git/doc/guix.texi:31999 +#: guix-git/doc/guix.texi:20273 guix-git/doc/guix.texi:20353 +#: guix-git/doc/guix.texi:20643 guix-git/doc/guix.texi:23429 +#: guix-git/doc/guix.texi:23480 guix-git/doc/guix.texi:23487 +#: guix-git/doc/guix.texi:24769 guix-git/doc/guix.texi:24957 +#: guix-git/doc/guix.texi:25074 guix-git/doc/guix.texi:25110 +#: guix-git/doc/guix.texi:25161 guix-git/doc/guix.texi:25180 +#: guix-git/doc/guix.texi:25190 guix-git/doc/guix.texi:25200 +#: guix-git/doc/guix.texi:25259 guix-git/doc/guix.texi:25281 +#: guix-git/doc/guix.texi:25306 guix-git/doc/guix.texi:25332 +#: guix-git/doc/guix.texi:25350 guix-git/doc/guix.texi:28517 +#: guix-git/doc/guix.texi:28545 guix-git/doc/guix.texi:28681 +#: guix-git/doc/guix.texi:28688 guix-git/doc/guix.texi:28696 +#: guix-git/doc/guix.texi:28733 guix-git/doc/guix.texi:28747 +#: guix-git/doc/guix.texi:28836 guix-git/doc/guix.texi:28843 +#: guix-git/doc/guix.texi:28851 guix-git/doc/guix.texi:29630 +#: guix-git/doc/guix.texi:29770 guix-git/doc/guix.texi:29984 +#: guix-git/doc/guix.texi:29991 guix-git/doc/guix.texi:30013 +#: guix-git/doc/guix.texi:30052 guix-git/doc/guix.texi:30072 +#: guix-git/doc/guix.texi:30086 guix-git/doc/guix.texi:30299 +#: guix-git/doc/guix.texi:32210 guix-git/doc/guix.texi:32298 +#: guix-git/doc/guix.texi:32314 guix-git/doc/guix.texi:32364 msgid "Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19913 +#: guix-git/doc/guix.texi:20275 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer dirty-clean-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19917 +#: guix-git/doc/guix.texi:20279 msgid "Specifies the delay for updating of configuration and state files, in seconds. A value of 0 causes the update to happen as soon as possible, typically within a few milliseconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19919 guix-git/doc/guix.texi:19967 -#: guix-git/doc/guix.texi:19976 guix-git/doc/guix.texi:20288 -#: guix-git/doc/guix.texi:24757 guix-git/doc/guix.texi:24790 +#: guix-git/doc/guix.texi:20281 guix-git/doc/guix.texi:20329 +#: guix-git/doc/guix.texi:20338 guix-git/doc/guix.texi:20650 +#: guix-git/doc/guix.texi:25119 guix-git/doc/guix.texi:25152 msgid "Defaults to @samp{30}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19921 +#: guix-git/doc/guix.texi:20283 #, no-wrap msgid "{@code{cups-configuration} parameter} error-policy error-policy" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19927 +#: guix-git/doc/guix.texi:20289 msgid "Specifies what to do when an error occurs. Possible values are @code{abort-job}, which will discard the failed print job; @code{retry-job}, which will retry the job at a later time; @code{retry-current-job}, which retries the failed job immediately; and @code{stop-printer}, which stops the printer." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19929 +#: guix-git/doc/guix.texi:20291 msgid "Defaults to @samp{stop-printer}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19931 +#: guix-git/doc/guix.texi:20293 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer filter-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19939 +#: guix-git/doc/guix.texi:20301 msgid "Specifies the maximum cost of filters that are run concurrently, which can be used to minimize disk, memory, and CPU resource problems. A limit of 0 disables filter limiting. An average print to a non-PostScript printer needs a filter limit of about 200. A PostScript printer needs about half that (100). Setting the limit below these thresholds will effectively limit the scheduler to printing a single job at any time." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19941 guix-git/doc/guix.texi:19949 -#: guix-git/doc/guix.texi:19998 guix-git/doc/guix.texi:20114 -#: guix-git/doc/guix.texi:20128 guix-git/doc/guix.texi:20135 -#: guix-git/doc/guix.texi:21622 guix-git/doc/guix.texi:21638 -#: guix-git/doc/guix.texi:22295 guix-git/doc/guix.texi:22307 -#: guix-git/doc/guix.texi:23086 guix-git/doc/guix.texi:23095 -#: guix-git/doc/guix.texi:23103 guix-git/doc/guix.texi:23111 -#: guix-git/doc/guix.texi:29309 guix-git/doc/guix.texi:29634 -#: guix-git/doc/guix.texi:31838 guix-git/doc/guix.texi:32138 -#: guix-git/doc/guix.texi:32312 +#: guix-git/doc/guix.texi:20303 guix-git/doc/guix.texi:20311 +#: guix-git/doc/guix.texi:20360 guix-git/doc/guix.texi:20476 +#: guix-git/doc/guix.texi:20490 guix-git/doc/guix.texi:20497 +#: guix-git/doc/guix.texi:21984 guix-git/doc/guix.texi:22000 +#: guix-git/doc/guix.texi:22657 guix-git/doc/guix.texi:22669 +#: guix-git/doc/guix.texi:23448 guix-git/doc/guix.texi:23457 +#: guix-git/doc/guix.texi:23465 guix-git/doc/guix.texi:23473 +#: guix-git/doc/guix.texi:29646 guix-git/doc/guix.texi:29999 +#: guix-git/doc/guix.texi:32203 guix-git/doc/guix.texi:32503 +#: guix-git/doc/guix.texi:32677 msgid "Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19943 +#: guix-git/doc/guix.texi:20305 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer filter-nice" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19947 +#: guix-git/doc/guix.texi:20309 msgid "Specifies the scheduling priority of filters that are run to print a job. The nice value ranges from 0, the highest priority, to 19, the lowest priority." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19951 +#: guix-git/doc/guix.texi:20313 #, no-wrap msgid "{@code{cups-configuration} parameter} host-name-lookups host-name-lookups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19958 +#: guix-git/doc/guix.texi:20320 msgid "Specifies whether to do reverse lookups on connecting clients. The @code{double} setting causes @code{cupsd} to verify that the hostname resolved from the address matches one of the addresses returned for that hostname. Double lookups also prevent clients with unregistered addresses from connecting to your server. Only set this option to @code{#t} or @code{double} if absolutely required." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19962 +#: guix-git/doc/guix.texi:20324 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-kill-delay" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19965 +#: guix-git/doc/guix.texi:20327 msgid "Specifies the number of seconds to wait before killing the filters and backend associated with a canceled or held job." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19969 +#: guix-git/doc/guix.texi:20331 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-retry-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19974 +#: guix-git/doc/guix.texi:20336 msgid "Specifies the interval between retries of jobs in seconds. This is typically used for fax queues but can also be used with normal print queues whose error policy is @code{retry-job} or @code{retry-current-job}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19978 +#: guix-git/doc/guix.texi:20340 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-retry-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19983 +#: guix-git/doc/guix.texi:20345 msgid "Specifies the number of retries that are done for jobs. This is typically used for fax queues but can also be used with normal print queues whose error policy is @code{retry-job} or @code{retry-current-job}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19985 guix-git/doc/guix.texi:24721 -#: guix-git/doc/guix.texi:30186 guix-git/doc/guix.texi:30206 -#: guix-git/doc/guix.texi:30222 guix-git/doc/guix.texi:30236 -#: guix-git/doc/guix.texi:30243 guix-git/doc/guix.texi:30250 -#: guix-git/doc/guix.texi:30257 guix-git/doc/guix.texi:30417 -#: guix-git/doc/guix.texi:30433 guix-git/doc/guix.texi:30440 -#: guix-git/doc/guix.texi:30447 guix-git/doc/guix.texi:30458 -#: guix-git/doc/guix.texi:31790 guix-git/doc/guix.texi:31798 -#: guix-git/doc/guix.texi:31806 guix-git/doc/guix.texi:31830 +#: guix-git/doc/guix.texi:20347 guix-git/doc/guix.texi:25083 +#: guix-git/doc/guix.texi:30551 guix-git/doc/guix.texi:30571 +#: guix-git/doc/guix.texi:30587 guix-git/doc/guix.texi:30601 +#: guix-git/doc/guix.texi:30608 guix-git/doc/guix.texi:30615 +#: guix-git/doc/guix.texi:30622 guix-git/doc/guix.texi:30782 +#: guix-git/doc/guix.texi:30798 guix-git/doc/guix.texi:30805 +#: guix-git/doc/guix.texi:30812 guix-git/doc/guix.texi:30823 +#: guix-git/doc/guix.texi:32155 guix-git/doc/guix.texi:32163 +#: guix-git/doc/guix.texi:32171 guix-git/doc/guix.texi:32195 msgid "Defaults to @samp{5}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19987 +#: guix-git/doc/guix.texi:20349 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean keep-alive?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19989 +#: guix-git/doc/guix.texi:20351 msgid "Specifies whether to support HTTP keep-alive connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19993 +#: guix-git/doc/guix.texi:20355 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer limit-request-body" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19996 +#: guix-git/doc/guix.texi:20358 msgid "Specifies the maximum size of print files, IPP requests, and HTML form data. A limit of 0 disables the limit check." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20000 +#: guix-git/doc/guix.texi:20362 #, no-wrap msgid "{@code{cups-configuration} parameter} multiline-string-list listen" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20007 +#: guix-git/doc/guix.texi:20369 msgid "Listens on the specified interfaces for connections. Valid values are of the form @var{address}:@var{port}, where @var{address} is either an IPv6 address enclosed in brackets, an IPv4 address, or @code{*} to indicate all addresses. Values can also be file names of local UNIX domain sockets. The Listen directive is similar to the Port directive but allows you to restrict access to specific interfaces or networks." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20009 +#: guix-git/doc/guix.texi:20371 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer listen-back-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20016 +#: guix-git/doc/guix.texi:20378 msgid "Specifies the number of pending connections that will be allowed. This normally only affects very busy servers that have reached the MaxClients limit, but can also be triggered by large numbers of simultaneous connections. When the limit is reached, the operating system will refuse additional connections until the scheduler can accept the pending ones." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20018 +#: guix-git/doc/guix.texi:20380 msgid "Defaults to @samp{128}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20020 +#: guix-git/doc/guix.texi:20382 #, no-wrap msgid "{@code{cups-configuration} parameter} location-access-control-list location-access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20022 +#: guix-git/doc/guix.texi:20384 msgid "Specifies a set of additional access controls." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20024 +#: guix-git/doc/guix.texi:20386 msgid "Available @code{location-access-controls} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20025 +#: guix-git/doc/guix.texi:20387 #, no-wrap msgid "{@code{location-access-controls} parameter} file-name path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20027 +#: guix-git/doc/guix.texi:20389 msgid "Specifies the URI path to which the access control applies." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20029 +#: guix-git/doc/guix.texi:20391 #, no-wrap msgid "{@code{location-access-controls} parameter} access-control-list access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20032 +#: guix-git/doc/guix.texi:20394 msgid "Access controls for all access to this path, in the same format as the @code{access-controls} of @code{operation-access-control}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20034 guix-git/doc/guix.texi:20040 -#: guix-git/doc/guix.texi:20054 guix-git/doc/guix.texi:20061 -#: guix-git/doc/guix.texi:20203 guix-git/doc/guix.texi:20262 -#: guix-git/doc/guix.texi:20340 guix-git/doc/guix.texi:20354 -#: guix-git/doc/guix.texi:21502 guix-git/doc/guix.texi:21511 -#: guix-git/doc/guix.texi:22781 guix-git/doc/guix.texi:22984 -#: guix-git/doc/guix.texi:23012 guix-git/doc/guix.texi:23042 -#: guix-git/doc/guix.texi:23157 guix-git/doc/guix.texi:23170 -#: guix-git/doc/guix.texi:23177 guix-git/doc/guix.texi:24927 -#: guix-git/doc/guix.texi:25322 guix-git/doc/guix.texi:25426 -#: guix-git/doc/guix.texi:25853 guix-git/doc/guix.texi:25861 -#: guix-git/doc/guix.texi:26106 guix-git/doc/guix.texi:28239 -#: guix-git/doc/guix.texi:28417 guix-git/doc/guix.texi:28616 -#: guix-git/doc/guix.texi:30077 guix-git/doc/guix.texi:30137 -#: guix-git/doc/guix.texi:30145 guix-git/doc/guix.texi:31853 -#: guix-git/doc/guix.texi:31860 guix-git/doc/guix.texi:32202 -#: guix-git/doc/guix.texi:32280 guix-git/doc/guix.texi:32374 -#: guix-git/doc/guix.texi:32382 guix-git/doc/guix.texi:32418 -#: guix-git/doc/guix.texi:32568 guix-git/doc/guix.texi:32619 -#: guix-git/doc/guix.texi:32628 +#: guix-git/doc/guix.texi:20396 guix-git/doc/guix.texi:20402 +#: guix-git/doc/guix.texi:20416 guix-git/doc/guix.texi:20423 +#: guix-git/doc/guix.texi:20565 guix-git/doc/guix.texi:20624 +#: guix-git/doc/guix.texi:20702 guix-git/doc/guix.texi:20716 +#: guix-git/doc/guix.texi:21864 guix-git/doc/guix.texi:21873 +#: guix-git/doc/guix.texi:23143 guix-git/doc/guix.texi:23346 +#: guix-git/doc/guix.texi:23374 guix-git/doc/guix.texi:23404 +#: guix-git/doc/guix.texi:23519 guix-git/doc/guix.texi:23532 +#: guix-git/doc/guix.texi:23539 guix-git/doc/guix.texi:25289 +#: guix-git/doc/guix.texi:25684 guix-git/doc/guix.texi:25788 +#: guix-git/doc/guix.texi:26190 guix-git/doc/guix.texi:26198 +#: guix-git/doc/guix.texi:26443 guix-git/doc/guix.texi:28576 +#: guix-git/doc/guix.texi:28754 guix-git/doc/guix.texi:28953 +#: guix-git/doc/guix.texi:30442 guix-git/doc/guix.texi:30502 +#: guix-git/doc/guix.texi:30510 guix-git/doc/guix.texi:32218 +#: guix-git/doc/guix.texi:32225 guix-git/doc/guix.texi:32567 +#: guix-git/doc/guix.texi:32645 guix-git/doc/guix.texi:32739 +#: guix-git/doc/guix.texi:32747 guix-git/doc/guix.texi:32783 +#: guix-git/doc/guix.texi:32933 guix-git/doc/guix.texi:32984 +#: guix-git/doc/guix.texi:32993 msgid "Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20036 +#: guix-git/doc/guix.texi:20398 #, no-wrap msgid "{@code{location-access-controls} parameter} method-access-control-list method-access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20038 +#: guix-git/doc/guix.texi:20400 msgid "Access controls for method-specific access to this path." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20042 +#: guix-git/doc/guix.texi:20404 msgid "Available @code{method-access-controls} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20043 +#: guix-git/doc/guix.texi:20405 #, no-wrap msgid "{@code{method-access-controls} parameter} boolean reverse?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20046 +#: guix-git/doc/guix.texi:20408 msgid "If @code{#t}, apply access controls to all methods except the listed methods. Otherwise apply to only the listed methods." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20050 +#: guix-git/doc/guix.texi:20412 #, no-wrap msgid "{@code{method-access-controls} parameter} method-list methods" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20052 +#: guix-git/doc/guix.texi:20414 msgid "Methods to which this access control applies." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20056 +#: guix-git/doc/guix.texi:20418 #, no-wrap msgid "{@code{method-access-controls} parameter} access-control-list access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20059 +#: guix-git/doc/guix.texi:20421 msgid "Access control directives, as a list of strings. Each string should be one directive, such as @samp{\"Order allow,deny\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20065 +#: guix-git/doc/guix.texi:20427 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer log-debug-history" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20069 +#: guix-git/doc/guix.texi:20431 msgid "Specifies the number of debugging messages that are retained for logging if an error occurs in a print job. Debug messages are logged regardless of the LogLevel setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20071 guix-git/doc/guix.texi:20092 -#: guix-git/doc/guix.texi:20099 guix-git/doc/guix.texi:22541 -#: guix-git/doc/guix.texi:24459 guix-git/doc/guix.texi:24474 -#: guix-git/doc/guix.texi:28601 +#: guix-git/doc/guix.texi:20433 guix-git/doc/guix.texi:20454 +#: guix-git/doc/guix.texi:20461 guix-git/doc/guix.texi:22903 +#: guix-git/doc/guix.texi:24821 guix-git/doc/guix.texi:24836 +#: guix-git/doc/guix.texi:28938 msgid "Defaults to @samp{100}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20073 +#: guix-git/doc/guix.texi:20435 #, no-wrap msgid "{@code{cups-configuration} parameter} log-level log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20076 +#: guix-git/doc/guix.texi:20438 msgid "Specifies the level of logging for the ErrorLog file. The value @code{none} stops all logging while @code{debug2} logs everything." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20078 guix-git/doc/guix.texi:24936 +#: guix-git/doc/guix.texi:20440 guix-git/doc/guix.texi:25298 msgid "Defaults to @samp{info}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20080 +#: guix-git/doc/guix.texi:20442 #, no-wrap msgid "{@code{cups-configuration} parameter} log-time-format log-time-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20083 +#: guix-git/doc/guix.texi:20445 msgid "Specifies the format of the date and time in the log files. The value @code{standard} logs whole seconds while @code{usecs} logs microseconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20085 +#: guix-git/doc/guix.texi:20447 msgid "Defaults to @samp{standard}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20087 +#: guix-git/doc/guix.texi:20449 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20090 +#: guix-git/doc/guix.texi:20452 msgid "Specifies the maximum number of simultaneous clients that are allowed by the scheduler." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20094 +#: guix-git/doc/guix.texi:20456 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-clients-per-host" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20097 +#: guix-git/doc/guix.texi:20459 msgid "Specifies the maximum number of simultaneous clients that are allowed from a single address." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20101 +#: guix-git/doc/guix.texi:20463 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-copies" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20104 +#: guix-git/doc/guix.texi:20466 msgid "Specifies the maximum number of copies that a user can print of each job." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20106 +#: guix-git/doc/guix.texi:20468 msgid "Defaults to @samp{9999}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20108 +#: guix-git/doc/guix.texi:20470 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-hold-time" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20112 +#: guix-git/doc/guix.texi:20474 msgid "Specifies the maximum time a job may remain in the @code{indefinite} hold state before it is canceled. A value of 0 disables cancellation of held jobs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20116 +#: guix-git/doc/guix.texi:20478 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20119 +#: guix-git/doc/guix.texi:20481 msgid "Specifies the maximum number of simultaneous jobs that are allowed. Set to 0 to allow an unlimited number of jobs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20121 +#: guix-git/doc/guix.texi:20483 msgid "Defaults to @samp{500}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20123 +#: guix-git/doc/guix.texi:20485 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs-per-printer" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20126 +#: guix-git/doc/guix.texi:20488 msgid "Specifies the maximum number of simultaneous jobs that are allowed per printer. A value of 0 allows up to MaxJobs jobs per printer." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20130 +#: guix-git/doc/guix.texi:20492 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs-per-user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20133 +#: guix-git/doc/guix.texi:20495 msgid "Specifies the maximum number of simultaneous jobs that are allowed per user. A value of 0 allows up to MaxJobs jobs per user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20137 +#: guix-git/doc/guix.texi:20499 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-job-time" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20140 +#: guix-git/doc/guix.texi:20502 msgid "Specifies the maximum time a job may take to print before it is canceled, in seconds. Set to 0 to disable cancellation of ``stuck'' jobs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20142 +#: guix-git/doc/guix.texi:20504 msgid "Defaults to @samp{10800}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20144 +#: guix-git/doc/guix.texi:20506 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-log-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20147 +#: guix-git/doc/guix.texi:20509 msgid "Specifies the maximum size of the log files before they are rotated, in bytes. The value 0 disables log rotation." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20149 +#: guix-git/doc/guix.texi:20511 msgid "Defaults to @samp{1048576}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20151 +#: guix-git/doc/guix.texi:20513 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer multiple-operation-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20154 +#: guix-git/doc/guix.texi:20516 msgid "Specifies the maximum amount of time to allow between files in a multiple file print job, in seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20156 guix-git/doc/guix.texi:20367 +#: guix-git/doc/guix.texi:20518 guix-git/doc/guix.texi:20729 msgid "Defaults to @samp{900}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20158 +#: guix-git/doc/guix.texi:20520 #, no-wrap msgid "{@code{cups-configuration} parameter} string page-log-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20163 +#: guix-git/doc/guix.texi:20525 msgid "Specifies the format of PageLog lines. Sequences beginning with percent (@samp{%}) characters are replaced with the corresponding information, while all other characters are copied literally. The following percent sequences are recognized:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20165 +#: guix-git/doc/guix.texi:20527 #, no-wrap msgid "%%" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20167 +#: guix-git/doc/guix.texi:20529 msgid "insert a single percent character" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20168 +#: guix-git/doc/guix.texi:20530 #, no-wrap msgid "%@{name@}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20170 +#: guix-git/doc/guix.texi:20532 msgid "insert the value of the specified IPP attribute" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20171 +#: guix-git/doc/guix.texi:20533 #, no-wrap msgid "%C" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20173 +#: guix-git/doc/guix.texi:20535 msgid "insert the number of copies for the current page" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20174 +#: guix-git/doc/guix.texi:20536 #, no-wrap msgid "%P" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20176 +#: guix-git/doc/guix.texi:20538 msgid "insert the current page number" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20177 +#: guix-git/doc/guix.texi:20539 #, no-wrap msgid "%T" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20179 +#: guix-git/doc/guix.texi:20541 msgid "insert the current date and time in common log format" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20180 +#: guix-git/doc/guix.texi:20542 #, no-wrap msgid "%j" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20182 +#: guix-git/doc/guix.texi:20544 msgid "insert the job ID" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20183 guix-git/doc/guix.texi:22140 +#: guix-git/doc/guix.texi:20545 guix-git/doc/guix.texi:22502 #, no-wrap msgid "%p" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20185 +#: guix-git/doc/guix.texi:20547 msgid "insert the printer name" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20186 guix-git/doc/guix.texi:22163 +#: guix-git/doc/guix.texi:20548 guix-git/doc/guix.texi:22525 #, no-wrap msgid "%u" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20188 +#: guix-git/doc/guix.texi:20550 msgid "insert the username" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20194 +#: guix-git/doc/guix.texi:20556 msgid "A value of the empty string disables page logging. The string @code{%p %u %j %T %P %C %@{job-billing@} %@{job-originating-host-name@} %@{job-name@} %@{media@} %@{sides@}} creates a page log with the standard items." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20198 +#: guix-git/doc/guix.texi:20560 #, no-wrap msgid "{@code{cups-configuration} parameter} environment-variables environment-variables" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20201 +#: guix-git/doc/guix.texi:20563 msgid "Passes the specified environment variable(s) to child processes; a list of strings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20205 +#: guix-git/doc/guix.texi:20567 #, no-wrap msgid "{@code{cups-configuration} parameter} policy-configuration-list policies" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20207 +#: guix-git/doc/guix.texi:20569 msgid "Specifies named access control policies." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20209 +#: guix-git/doc/guix.texi:20571 msgid "Available @code{policy-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20210 +#: guix-git/doc/guix.texi:20572 #, no-wrap msgid "{@code{policy-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20212 +#: guix-git/doc/guix.texi:20574 msgid "Name of the policy." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20214 +#: guix-git/doc/guix.texi:20576 #, no-wrap msgid "{@code{policy-configuration} parameter} string job-private-access" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20224 +#: guix-git/doc/guix.texi:20586 msgid "Specifies an access list for a job's private values. @code{@@ACL} maps to the printer's requesting-user-name-allowed or requesting-user-name-denied values. @code{@@OWNER} maps to the job's owner. @code{@@SYSTEM} maps to the groups listed for the @code{system-group} field of the @code{files-configuration}, which is reified into the @code{cups-files.conf(5)} file. Other possible elements of the access list include specific user names, and @code{@@@var{group}} to indicate members of a specific group. The access list may also be simply @code{all} or @code{default}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20226 guix-git/doc/guix.texi:20248 +#: guix-git/doc/guix.texi:20588 guix-git/doc/guix.texi:20610 msgid "Defaults to @samp{\"@@OWNER @@SYSTEM\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20228 +#: guix-git/doc/guix.texi:20590 #, no-wrap msgid "{@code{policy-configuration} parameter} string job-private-values" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20231 guix-git/doc/guix.texi:20253 +#: guix-git/doc/guix.texi:20593 guix-git/doc/guix.texi:20615 msgid "Specifies the list of job values to make private, or @code{all}, @code{default}, or @code{none}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20234 +#: guix-git/doc/guix.texi:20596 msgid "Defaults to @samp{\"job-name job-originating-host-name job-originating-user-name phone\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20236 +#: guix-git/doc/guix.texi:20598 #, no-wrap msgid "{@code{policy-configuration} parameter} string subscription-private-access" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20246 +#: guix-git/doc/guix.texi:20608 msgid "Specifies an access list for a subscription's private values. @code{@@ACL} maps to the printer's requesting-user-name-allowed or requesting-user-name-denied values. @code{@@OWNER} maps to the job's owner. @code{@@SYSTEM} maps to the groups listed for the @code{system-group} field of the @code{files-configuration}, which is reified into the @code{cups-files.conf(5)} file. Other possible elements of the access list include specific user names, and @code{@@@var{group}} to indicate members of a specific group. The access list may also be simply @code{all} or @code{default}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20250 +#: guix-git/doc/guix.texi:20612 #, no-wrap msgid "{@code{policy-configuration} parameter} string subscription-private-values" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20256 +#: guix-git/doc/guix.texi:20618 msgid "Defaults to @samp{\"notify-events notify-pull-method notify-recipient-uri notify-subscriber-user-name notify-user-data\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20258 +#: guix-git/doc/guix.texi:20620 #, no-wrap msgid "{@code{policy-configuration} parameter} operation-access-control-list access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20260 +#: guix-git/doc/guix.texi:20622 msgid "Access control by IPP operation." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20265 +#: guix-git/doc/guix.texi:20627 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean-or-non-negative-integer preserve-job-files" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20270 +#: guix-git/doc/guix.texi:20632 msgid "Specifies whether job files (documents) are preserved after a job is printed. If a numeric value is specified, job files are preserved for the indicated number of seconds after printing. Otherwise a boolean value applies indefinitely." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20272 +#: guix-git/doc/guix.texi:20634 msgid "Defaults to @samp{86400}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20274 +#: guix-git/doc/guix.texi:20636 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean-or-non-negative-integer preserve-job-history" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20279 +#: guix-git/doc/guix.texi:20641 msgid "Specifies whether the job history is preserved after a job is printed. If a numeric value is specified, the job history is preserved for the indicated number of seconds after printing. If @code{#t}, the job history is preserved until the MaxJobs limit is reached." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20283 +#: guix-git/doc/guix.texi:20645 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer reload-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20286 +#: guix-git/doc/guix.texi:20648 msgid "Specifies the amount of time to wait for job completion before restarting the scheduler." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20290 +#: guix-git/doc/guix.texi:20652 #, no-wrap msgid "{@code{cups-configuration} parameter} string rip-cache" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20293 +#: guix-git/doc/guix.texi:20655 msgid "Specifies the maximum amount of memory to use when converting documents into bitmaps for a printer." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20295 +#: guix-git/doc/guix.texi:20657 msgid "Defaults to @samp{\"128m\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20297 +#: guix-git/doc/guix.texi:20659 #, no-wrap msgid "{@code{cups-configuration} parameter} string server-admin" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20299 +#: guix-git/doc/guix.texi:20661 msgid "Specifies the email address of the server administrator." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20301 +#: guix-git/doc/guix.texi:20663 msgid "Defaults to @samp{\"root@@localhost.localdomain\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20303 +#: guix-git/doc/guix.texi:20665 #, no-wrap msgid "{@code{cups-configuration} parameter} host-name-list-or-* server-alias" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20311 +#: guix-git/doc/guix.texi:20673 msgid "The ServerAlias directive is used for HTTP Host header validation when clients connect to the scheduler from external interfaces. Using the special name @code{*} can expose your system to known browser-based DNS rebinding attacks, even when accessing sites through a firewall. If the auto-discovery of alternate names does not work, we recommend listing each alternate name with a ServerAlias directive instead of using @code{*}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20313 +#: guix-git/doc/guix.texi:20675 msgid "Defaults to @samp{*}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20315 +#: guix-git/doc/guix.texi:20677 #, no-wrap msgid "{@code{cups-configuration} parameter} string server-name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20317 +#: guix-git/doc/guix.texi:20679 msgid "Specifies the fully-qualified host name of the server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20319 guix-git/doc/guix.texi:25449 -#: guix-git/doc/guix.texi:25494 +#: guix-git/doc/guix.texi:20681 msgid "Defaults to @samp{\"localhost\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20321 +#: guix-git/doc/guix.texi:20683 #, no-wrap msgid "{@code{cups-configuration} parameter} server-tokens server-tokens" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20329 +#: guix-git/doc/guix.texi:20691 msgid "Specifies what information is included in the Server header of HTTP responses. @code{None} disables the Server header. @code{ProductOnly} reports @code{CUPS}. @code{Major} reports @code{CUPS 2}. @code{Minor} reports @code{CUPS 2.0}. @code{Minimal} reports @code{CUPS 2.0.0}. @code{OS} reports @code{CUPS 2.0.0 (@var{uname})} where @var{uname} is the output of the @code{uname} command. @code{Full} reports @code{CUPS 2.0.0 (@var{uname}) IPP/2.0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20331 +#: guix-git/doc/guix.texi:20693 msgid "Defaults to @samp{Minimal}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20333 +#: guix-git/doc/guix.texi:20695 #, no-wrap msgid "{@code{cups-configuration} parameter} multiline-string-list ssl-listen" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20338 +#: guix-git/doc/guix.texi:20700 msgid "Listens on the specified interfaces for encrypted connections. Valid values are of the form @var{address}:@var{port}, where @var{address} is either an IPv6 address enclosed in brackets, an IPv4 address, or @code{*} to indicate all addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20342 +#: guix-git/doc/guix.texi:20704 #, no-wrap msgid "{@code{cups-configuration} parameter} ssl-options ssl-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20352 +#: guix-git/doc/guix.texi:20714 msgid "Sets encryption options. By default, CUPS only supports encryption using TLS v1.0 or higher using known secure cipher suites. Security is reduced when @code{Allow} options are used, and enhanced when @code{Deny} options are used. The @code{AllowRC4} option enables the 128-bit RC4 cipher suites, which are required for some older clients. The @code{AllowSSL3} option enables SSL v3.0, which is required for some older clients that do not support TLS v1.0. The @code{DenyCBC} option disables all CBC cipher suites. The @code{DenyTLS1.0} option disables TLS v1.0 support - this sets the minimum protocol version to TLS v1.1." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20356 +#: guix-git/doc/guix.texi:20718 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean strict-conformance?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20359 +#: guix-git/doc/guix.texi:20721 msgid "Specifies whether the scheduler requires clients to strictly adhere to the IPP specifications." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20363 +#: guix-git/doc/guix.texi:20725 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20365 +#: guix-git/doc/guix.texi:20727 msgid "Specifies the HTTP request timeout, in seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20370 +#: guix-git/doc/guix.texi:20732 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean web-interface?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20372 +#: guix-git/doc/guix.texi:20734 msgid "Specifies whether the web interface is enabled." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20382 +#: guix-git/doc/guix.texi:20744 msgid "At this point you're probably thinking ``oh dear, Guix manual, I like you but you can stop already with the configuration options''. Indeed. However, one more point: it could be that you have an existing @code{cupsd.conf} that you want to use. In that case, you can pass an @code{opaque-cups-configuration} as the configuration of a @code{cups-service-type}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20384 +#: guix-git/doc/guix.texi:20746 msgid "Available @code{opaque-cups-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20385 +#: guix-git/doc/guix.texi:20747 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} package cups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20389 +#: guix-git/doc/guix.texi:20751 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} string cupsd.conf" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20391 +#: guix-git/doc/guix.texi:20753 msgid "The contents of the @code{cupsd.conf}, as a string." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20393 +#: guix-git/doc/guix.texi:20755 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} string cups-files.conf" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20395 +#: guix-git/doc/guix.texi:20757 msgid "The contents of the @code{cups-files.conf} file, as a string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20400 +#: guix-git/doc/guix.texi:20762 msgid "For example, if your @code{cupsd.conf} and @code{cups-files.conf} are in strings of the same name, you could instantiate a CUPS service like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20406 +#: guix-git/doc/guix.texi:20768 #, no-wrap msgid "" "(service cups-service-type\n" @@ -36415,238 +37024,238 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20417 +#: guix-git/doc/guix.texi:20779 msgid "The @code{(gnu services desktop)} module provides services that are usually useful in the context of a ``desktop'' setup---that is, on a machine running a graphical display server, possibly with graphical user interfaces, etc. It also defines services that provide specific desktop environments like GNOME, Xfce or MATE." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20421 +#: guix-git/doc/guix.texi:20783 msgid "To simplify things, the module defines a variable containing the set of services that users typically expect on a machine with a graphical environment and networking:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20422 +#: guix-git/doc/guix.texi:20784 #, no-wrap msgid "{Scheme Variable} %desktop-services" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20425 +#: guix-git/doc/guix.texi:20787 msgid "This is a list of services that builds upon @code{%base-services} and adds or adjusts services for a typical ``desktop'' setup." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20436 +#: guix-git/doc/guix.texi:20798 msgid "In particular, it adds a graphical login manager (@pxref{X Window, @code{gdm-service-type}}), screen lockers, a network management tool (@pxref{Networking Services, @code{network-manager-service-type}}) with modem support (@pxref{Networking Services, @code{modem-manager-service-type}}), energy and color management services, the @code{elogind} login and seat manager, the Polkit privilege service, the GeoClue location service, the AccountsService daemon that allows authorized users change system passwords, an NTP client (@pxref{Networking Services}), the Avahi daemon, and has the name service switch service configured to be able to use @code{nss-mdns} (@pxref{Name Service Switch, mDNS})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20441 +#: guix-git/doc/guix.texi:20803 msgid "The @code{%desktop-services} variable can be used as the @code{services} field of an @code{operating-system} declaration (@pxref{operating-system Reference, @code{services}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20464 +#: guix-git/doc/guix.texi:20826 msgid "Additionally, the @code{gnome-desktop-service-type}, @code{xfce-desktop-service}, @code{mate-desktop-service-type}, @code{lxqt-desktop-service-type} and @code{enlightenment-desktop-service-type} procedures can add GNOME, Xfce, MATE and/or Enlightenment to a system. To ``add GNOME'' means that system-level services like the backlight adjustment helpers and the power management utilities are added to the system, extending @code{polkit} and @code{dbus} appropriately, allowing GNOME to operate with elevated privileges on a limited number of special-purpose system interfaces. Additionally, adding a service made by @code{gnome-desktop-service-type} adds the GNOME metapackage to the system profile. Likewise, adding the Xfce service not only adds the @code{xfce} metapackage to the system profile, but it also gives the Thunar file manager the ability to open a ``root-mode'' file management window, if the user authenticates using the administrator's password via the standard polkit graphical interface. To ``add MATE'' means that @code{polkit} and @code{dbus} are extended appropriately, allowing MATE to operate with elevated privileges on a limited number of special-purpose system interfaces. Additionally, adding a service of type @code{mate-desktop-service-type} adds the MATE metapackage to the system profile. ``Adding Enlightenment'' means that @code{dbus} is extended appropriately, and several of Enlightenment's binaries are set as setuid, allowing Enlightenment's screen locker and other functionality to work as expected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20474 +#: guix-git/doc/guix.texi:20836 msgid "The desktop environments in Guix use the Xorg display server by default. If you'd like to use the newer display server protocol called Wayland, you need to enable Wayland support in GDM (@pxref{wayland-gdm}). Another solution is to use the @code{sddm-service} instead of GDM as the graphical login manager. You should then select the ``GNOME (Wayland)'' session in SDDM@. Alternatively you can also try starting GNOME on Wayland manually from a TTY with the command ``XDG_SESSION_TYPE=wayland exec dbus-run-session gnome-session``. Currently only GNOME has support for Wayland." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20475 +#: guix-git/doc/guix.texi:20837 #, no-wrap msgid "{Scheme Variable} gnome-desktop-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20479 +#: guix-git/doc/guix.texi:20841 msgid "This is the type of the service that adds the @uref{https://www.gnome.org, GNOME} desktop environment. Its value is a @code{gnome-desktop-configuration} object (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20482 +#: guix-git/doc/guix.texi:20844 msgid "This service adds the @code{gnome} package to the system profile, and extends polkit with the actions from @code{gnome-settings-daemon}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20484 +#: guix-git/doc/guix.texi:20846 #, no-wrap msgid "{Data Type} gnome-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20486 +#: guix-git/doc/guix.texi:20848 msgid "Configuration record for the GNOME desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20488 +#: guix-git/doc/guix.texi:20850 #, no-wrap msgid "@code{gnome} (default: @code{gnome})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20490 +#: guix-git/doc/guix.texi:20852 msgid "The GNOME package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20493 +#: guix-git/doc/guix.texi:20855 #, no-wrap msgid "{Scheme Variable} xfce-desktop-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20497 +#: guix-git/doc/guix.texi:20859 msgid "This is the type of a service to run the @uref{Xfce, https://xfce.org/} desktop environment. Its value is an @code{xfce-desktop-configuration} object (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20502 +#: guix-git/doc/guix.texi:20864 msgid "This service adds the @code{xfce} package to the system profile, and extends polkit with the ability for @code{thunar} to manipulate the file system as root from within a user session, after the user has authenticated with the administrator's password." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20508 +#: guix-git/doc/guix.texi:20870 msgid "Note that @code{xfce4-panel} and its plugin packages should be installed in the same profile to ensure compatibility. When using this service, you should add extra plugins (@code{xfce4-whiskermenu-plugin}, @code{xfce4-weather-plugin}, etc.) to the @code{packages} field of your @code{operating-system}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20510 +#: guix-git/doc/guix.texi:20872 #, no-wrap msgid "{Data Type} xfce-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20512 +#: guix-git/doc/guix.texi:20874 msgid "Configuration record for the Xfce desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20514 +#: guix-git/doc/guix.texi:20876 #, no-wrap msgid "@code{xfce} (default: @code{xfce})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20516 +#: guix-git/doc/guix.texi:20878 msgid "The Xfce package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20519 +#: guix-git/doc/guix.texi:20881 #, no-wrap msgid "{Scheme Variable} mate-desktop-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20523 +#: guix-git/doc/guix.texi:20885 msgid "This is the type of the service that runs the @uref{https://mate-desktop.org/, MATE desktop environment}. Its value is a @code{mate-desktop-configuration} object (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20527 +#: guix-git/doc/guix.texi:20889 msgid "This service adds the @code{mate} package to the system profile, and extends polkit with the actions from @code{mate-settings-daemon}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20529 +#: guix-git/doc/guix.texi:20891 #, no-wrap msgid "{Data Type} mate-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20531 +#: guix-git/doc/guix.texi:20893 msgid "Configuration record for the MATE desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20533 +#: guix-git/doc/guix.texi:20895 #, no-wrap msgid "@code{mate} (default: @code{mate})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20535 +#: guix-git/doc/guix.texi:20897 msgid "The MATE package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20538 +#: guix-git/doc/guix.texi:20900 #, no-wrap msgid "{Scheme Variable} lxqt-desktop-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20542 +#: guix-git/doc/guix.texi:20904 msgid "This is the type of the service that runs the @uref{https://lxqt-project.org, LXQt desktop environment}. Its value is a @code{lxqt-desktop-configuration} object (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20545 +#: guix-git/doc/guix.texi:20907 msgid "This service adds the @code{lxqt} package to the system profile." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20547 +#: guix-git/doc/guix.texi:20909 #, no-wrap msgid "{Data Type} lxqt-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20549 +#: guix-git/doc/guix.texi:20911 msgid "Configuration record for the LXQt desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20551 +#: guix-git/doc/guix.texi:20913 #, no-wrap msgid "@code{lxqt} (default: @code{lxqt})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20553 +#: guix-git/doc/guix.texi:20915 msgid "The LXQT package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20556 +#: guix-git/doc/guix.texi:20918 #, no-wrap msgid "{Scheme Variable} enlightenment-desktop-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20559 +#: guix-git/doc/guix.texi:20921 msgid "Return a service that adds the @code{enlightenment} package to the system profile, and extends dbus with actions from @code{efl}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20561 +#: guix-git/doc/guix.texi:20923 #, no-wrap msgid "{Data Type} enlightenment-desktop-service-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20563 +#: guix-git/doc/guix.texi:20925 #, no-wrap msgid "@code{enlightenment} (default: @code{enlightenment})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20565 +#: guix-git/doc/guix.texi:20927 msgid "The enlightenment package to use." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20573 +#: guix-git/doc/guix.texi:20935 msgid "Because the GNOME, Xfce and MATE desktop services pull in so many packages, the default @code{%desktop-services} variable doesn't include any of them by default. To add GNOME, Xfce or MATE, just @code{cons} them onto @code{%desktop-services} in the @code{services} field of your @code{operating-system}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20584 +#: guix-git/doc/guix.texi:20946 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -36661,576 +37270,576 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20588 +#: guix-git/doc/guix.texi:20950 msgid "These desktop environments will then be available as options in the graphical login window." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20592 +#: guix-git/doc/guix.texi:20954 msgid "The actual service definitions included in @code{%desktop-services} and provided by @code{(gnu services dbus)} and @code{(gnu services desktop)} are described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20593 +#: guix-git/doc/guix.texi:20955 #, no-wrap msgid "{Scheme Procedure} dbus-service [#:dbus @var{dbus}] [#:services '()]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20596 +#: guix-git/doc/guix.texi:20958 msgid "Return a service that runs the ``system bus'', using @var{dbus}, with support for @var{services}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20600 +#: guix-git/doc/guix.texi:20962 msgid "@uref{https://dbus.freedesktop.org/, D-Bus} is an inter-process communication facility. Its system bus is used to allow system services to communicate and to be notified of system-wide events." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20605 +#: guix-git/doc/guix.texi:20967 msgid "@var{services} must be a list of packages that provide an @file{etc/dbus-1/system.d} directory containing additional D-Bus configuration and policy files. For example, to allow avahi-daemon to use the system bus, @var{services} must be equal to @code{(list avahi)}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20607 +#: guix-git/doc/guix.texi:20969 #, no-wrap msgid "{Scheme Procedure} elogind-service [#:config @var{config}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20613 +#: guix-git/doc/guix.texi:20975 msgid "Return a service that runs the @code{elogind} login and seat management daemon. @uref{https://github.com/elogind/elogind, Elogind} exposes a D-Bus interface that can be used to know which users are logged in, know what kind of sessions they have open, suspend the system, inhibit system suspend, reboot the system, and other tasks." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20617 +#: guix-git/doc/guix.texi:20979 msgid "Elogind handles most system-level power events for a computer, for example suspending the system when a lid is closed, or shutting it down when the power button is pressed." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20622 +#: guix-git/doc/guix.texi:20984 msgid "The @var{config} keyword argument specifies the configuration for elogind, and should be the result of an @code{(elogind-configuration (@var{parameter} @var{value})...)} invocation. Available parameters and their default values are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20624 +#: guix-git/doc/guix.texi:20986 #, no-wrap msgid "kill-user-processes?" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20626 guix-git/doc/guix.texi:20646 -#: guix-git/doc/guix.texi:20648 guix-git/doc/guix.texi:20650 -#: guix-git/doc/guix.texi:20662 +#: guix-git/doc/guix.texi:20988 guix-git/doc/guix.texi:21008 +#: guix-git/doc/guix.texi:21010 guix-git/doc/guix.texi:21012 +#: guix-git/doc/guix.texi:21024 msgid "#f" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20626 +#: guix-git/doc/guix.texi:20988 #, no-wrap msgid "kill-only-users" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20628 guix-git/doc/guix.texi:20668 +#: guix-git/doc/guix.texi:20990 guix-git/doc/guix.texi:21030 msgid "()" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20628 +#: guix-git/doc/guix.texi:20990 #, no-wrap msgid "kill-exclude-users" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20630 +#: guix-git/doc/guix.texi:20992 msgid "(\"root\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20630 +#: guix-git/doc/guix.texi:20992 #, no-wrap msgid "inhibit-delay-max-seconds" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20632 +#: guix-git/doc/guix.texi:20994 msgid "5" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20632 +#: guix-git/doc/guix.texi:20994 #, no-wrap msgid "handle-power-key" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20634 +#: guix-git/doc/guix.texi:20996 msgid "poweroff" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20634 +#: guix-git/doc/guix.texi:20996 #, no-wrap msgid "handle-suspend-key" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20636 guix-git/doc/guix.texi:20640 +#: guix-git/doc/guix.texi:20998 guix-git/doc/guix.texi:21002 msgid "suspend" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20636 +#: guix-git/doc/guix.texi:20998 #, no-wrap msgid "handle-hibernate-key" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20638 +#: guix-git/doc/guix.texi:21000 msgid "hibernate" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20638 +#: guix-git/doc/guix.texi:21000 #, no-wrap msgid "handle-lid-switch" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20640 +#: guix-git/doc/guix.texi:21002 #, no-wrap msgid "handle-lid-switch-docked" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20642 guix-git/doc/guix.texi:20644 -#: guix-git/doc/guix.texi:20656 +#: guix-git/doc/guix.texi:21004 guix-git/doc/guix.texi:21006 +#: guix-git/doc/guix.texi:21018 msgid "ignore" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20642 +#: guix-git/doc/guix.texi:21004 #, no-wrap msgid "handle-lid-switch-external-power" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20644 +#: guix-git/doc/guix.texi:21006 #, no-wrap msgid "power-key-ignore-inhibited?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20646 +#: guix-git/doc/guix.texi:21008 #, no-wrap msgid "suspend-key-ignore-inhibited?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20648 +#: guix-git/doc/guix.texi:21010 #, no-wrap msgid "hibernate-key-ignore-inhibited?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20650 +#: guix-git/doc/guix.texi:21012 #, no-wrap msgid "lid-switch-ignore-inhibited?" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20652 guix-git/doc/guix.texi:20664 +#: guix-git/doc/guix.texi:21014 guix-git/doc/guix.texi:21026 msgid "#t" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20652 +#: guix-git/doc/guix.texi:21014 #, no-wrap msgid "holdoff-timeout-seconds" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20654 +#: guix-git/doc/guix.texi:21016 msgid "30" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20654 +#: guix-git/doc/guix.texi:21016 #, no-wrap msgid "idle-action" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20656 +#: guix-git/doc/guix.texi:21018 #, no-wrap msgid "idle-action-seconds" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20658 +#: guix-git/doc/guix.texi:21020 msgid "(* 30 60)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20658 +#: guix-git/doc/guix.texi:21020 #, no-wrap msgid "runtime-directory-size-percent" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20660 +#: guix-git/doc/guix.texi:21022 msgid "10" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20660 +#: guix-git/doc/guix.texi:21022 #, no-wrap msgid "runtime-directory-size" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20662 +#: guix-git/doc/guix.texi:21024 #, no-wrap msgid "remove-ipc?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20664 +#: guix-git/doc/guix.texi:21026 #, no-wrap msgid "suspend-state" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20666 +#: guix-git/doc/guix.texi:21028 msgid "(\"mem\" \"standby\" \"freeze\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20666 +#: guix-git/doc/guix.texi:21028 #, no-wrap msgid "suspend-mode" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20668 +#: guix-git/doc/guix.texi:21030 #, no-wrap msgid "hibernate-state" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20670 guix-git/doc/guix.texi:20674 +#: guix-git/doc/guix.texi:21032 guix-git/doc/guix.texi:21036 msgid "(\"disk\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20670 +#: guix-git/doc/guix.texi:21032 #, no-wrap msgid "hibernate-mode" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20672 +#: guix-git/doc/guix.texi:21034 msgid "(\"platform\" \"shutdown\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20672 +#: guix-git/doc/guix.texi:21034 #, no-wrap msgid "hybrid-sleep-state" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20674 +#: guix-git/doc/guix.texi:21036 #, no-wrap msgid "hybrid-sleep-mode" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20676 +#: guix-git/doc/guix.texi:21038 msgid "(\"suspend\" \"platform\" \"shutdown\")" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20679 +#: guix-git/doc/guix.texi:21041 #, no-wrap msgid "{Scheme Procedure} accountsservice-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20687 +#: guix-git/doc/guix.texi:21049 msgid "[#:accountsservice @var{accountsservice}] Return a service that runs AccountsService, a system service that can list available accounts, change their passwords, and so on. AccountsService integrates with PolicyKit to enable unprivileged users to acquire the capability to modify their system configuration. @uref{https://www.freedesktop.org/wiki/Software/AccountsService/, the accountsservice web site} for more information." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20690 +#: guix-git/doc/guix.texi:21052 msgid "The @var{accountsservice} keyword argument is the @code{accountsservice} package to expose as a service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20692 +#: guix-git/doc/guix.texi:21054 #, no-wrap msgid "{Scheme Procedure} polkit-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20701 +#: guix-git/doc/guix.texi:21063 msgid "[#:polkit @var{polkit}] Return a service that runs the @uref{https://www.freedesktop.org/wiki/Software/polkit/, Polkit privilege management service}, which allows system administrators to grant access to privileged operations in a structured way. By querying the Polkit service, a privileged system component can know when it should grant additional capabilities to ordinary users. For example, an ordinary user can be granted the capability to suspend the system if the user is logged in locally." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20703 +#: guix-git/doc/guix.texi:21065 #, no-wrap msgid "{Scheme Variable} polkit-wheel-service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20708 +#: guix-git/doc/guix.texi:21070 msgid "Service that adds the @code{wheel} group as admins to the Polkit service. This makes it so that users in the @code{wheel} group are queried for their own passwords when performing administrative actions instead of @code{root}'s, similar to the behaviour used by @code{sudo}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20710 +#: guix-git/doc/guix.texi:21072 #, no-wrap msgid "{Scheme Variable} upower-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20714 +#: guix-git/doc/guix.texi:21076 msgid "Service that runs @uref{https://upower.freedesktop.org/, @command{upowerd}}, a system-wide monitor for power consumption and battery levels, with the given configuration settings." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20717 +#: guix-git/doc/guix.texi:21079 msgid "It implements the @code{org.freedesktop.UPower} D-Bus interface, and is notably used by GNOME." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20719 +#: guix-git/doc/guix.texi:21081 #, no-wrap msgid "{Data Type} upower-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20721 +#: guix-git/doc/guix.texi:21083 msgid "Data type representation the configuration for UPower." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20724 +#: guix-git/doc/guix.texi:21086 #, no-wrap msgid "@code{upower} (default: @var{upower})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20726 +#: guix-git/doc/guix.texi:21088 msgid "Package to use for @code{upower}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20727 +#: guix-git/doc/guix.texi:21089 #, no-wrap msgid "@code{watts-up-pro?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20729 +#: guix-git/doc/guix.texi:21091 msgid "Enable the Watts Up Pro device." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20730 +#: guix-git/doc/guix.texi:21092 #, no-wrap msgid "@code{poll-batteries?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20732 +#: guix-git/doc/guix.texi:21094 msgid "Enable polling the kernel for battery level changes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20733 +#: guix-git/doc/guix.texi:21095 #, no-wrap msgid "@code{ignore-lid?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20735 +#: guix-git/doc/guix.texi:21097 msgid "Ignore the lid state, this can be useful if it's incorrect on a device." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20736 +#: guix-git/doc/guix.texi:21098 #, no-wrap msgid "@code{use-percentage-for-policy?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20739 +#: guix-git/doc/guix.texi:21101 msgid "Whether battery percentage based policy should be used. The default is to use the time left, change to @code{#t} to use the percentage." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20740 +#: guix-git/doc/guix.texi:21102 #, no-wrap msgid "@code{percentage-low} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20743 +#: guix-git/doc/guix.texi:21105 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which the battery is considered low." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20744 +#: guix-git/doc/guix.texi:21106 #, no-wrap msgid "@code{percentage-critical} (default: @code{3})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20747 +#: guix-git/doc/guix.texi:21109 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which the battery is considered critical." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20748 +#: guix-git/doc/guix.texi:21110 #, no-wrap msgid "@code{percentage-action} (default: @code{2})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20751 +#: guix-git/doc/guix.texi:21113 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which action will be taken." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20752 +#: guix-git/doc/guix.texi:21114 #, no-wrap msgid "@code{time-low} (default: @code{1200})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20755 +#: guix-git/doc/guix.texi:21117 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which the battery is considered low." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20756 +#: guix-git/doc/guix.texi:21118 #, no-wrap msgid "@code{time-critical} (default: @code{300})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20759 +#: guix-git/doc/guix.texi:21121 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which the battery is considered critical." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20760 +#: guix-git/doc/guix.texi:21122 #, no-wrap msgid "@code{time-action} (default: @code{120})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20763 +#: guix-git/doc/guix.texi:21125 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which action will be taken." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20764 +#: guix-git/doc/guix.texi:21126 #, no-wrap msgid "@code{critical-power-action} (default: @code{'hybrid-sleep})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20767 +#: guix-git/doc/guix.texi:21129 msgid "The action taken when @code{percentage-action} or @code{time-action} is reached (depending on the configuration of @code{use-percentage-for-policy?})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20769 +#: guix-git/doc/guix.texi:21131 msgid "Possible values are:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20773 +#: guix-git/doc/guix.texi:21135 msgid "'power-off" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20776 +#: guix-git/doc/guix.texi:21138 msgid "'hibernate" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:20779 +#: guix-git/doc/guix.texi:21141 msgid "@code{'hybrid-sleep}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20784 +#: guix-git/doc/guix.texi:21146 #, no-wrap msgid "{Scheme Procedure} udisks-service [#:udisks @var{udisks}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20794 +#: guix-git/doc/guix.texi:21156 msgid "Return a service for @uref{https://udisks.freedesktop.org/docs/latest/, UDisks}, a @dfn{disk management} daemon that provides user interfaces with notifications and ways to mount/unmount disks. Programs that talk to UDisks include the @command{udisksctl} command, part of UDisks, and GNOME Disks. Note that Udisks relies on the @command{mount} command, so it will only be able to use the file-system utilities installed in the system profile. For example if you want to be able to mount NTFS file-systems in read and write fashion, you'll need to have @code{ntfs-3g} installed system-wide." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20796 +#: guix-git/doc/guix.texi:21158 #, no-wrap msgid "{Scheme Variable} colord-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20803 +#: guix-git/doc/guix.texi:21165 msgid "This is the type of the service that runs @command{colord}, a system service with a D-Bus interface to manage the color profiles of input and output devices such as screens and scanners. It is notably used by the GNOME Color Manager graphical tool. See @uref{https://www.freedesktop.org/software/colord/, the colord web site} for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20805 +#: guix-git/doc/guix.texi:21167 #, no-wrap msgid "scanner access" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20806 +#: guix-git/doc/guix.texi:21168 #, no-wrap msgid "{Scheme Variable} sane-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20812 +#: guix-git/doc/guix.texi:21174 msgid "This service provides access to scanners @i{via} @uref{http://www.sane-project.org, SANE} by installing the necessary udev rules. It is included in @code{%desktop-services} (@pxref{Desktop Services}) and relies by default on @code{sane-backends-minimal} package (see below) for hardware support." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20814 +#: guix-git/doc/guix.texi:21176 #, no-wrap msgid "{Scheme Variable} sane-backends-minimal" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20817 +#: guix-git/doc/guix.texi:21179 msgid "The default package which the @code{sane-service-type} installs. It supports many recent scanners." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20819 +#: guix-git/doc/guix.texi:21181 #, no-wrap msgid "{Scheme Variable} sane-backends" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20826 +#: guix-git/doc/guix.texi:21188 msgid "This package includes support for all scanners that @code{sane-backends-minimal} supports, plus older Hewlett-Packard scanners supported by @code{hplip} package. In order to use this on a system which relies on @code{%desktop-services}, you may use @code{modify-services} (@pxref{Service Reference, @code{modify-services}}) as illustrated below:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20835 +#: guix-git/doc/guix.texi:21197 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -37244,7 +37853,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20840 +#: guix-git/doc/guix.texi:21202 #, no-wrap msgid "" "(define %my-desktop-services\n" @@ -37255,7 +37864,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20844 +#: guix-git/doc/guix.texi:21206 #, no-wrap msgid "" "(operating-system\n" @@ -37264,214 +37873,214 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20847 +#: guix-git/doc/guix.texi:21209 #, no-wrap msgid "{Scheme Procedure} geoclue-application name [#:allowed? #t] [#:system? #f] [#:users '()]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20856 +#: guix-git/doc/guix.texi:21218 msgid "Return a configuration allowing an application to access GeoClue location data. @var{name} is the Desktop ID of the application, without the @code{.desktop} part. If @var{allowed?} is true, the application will have access to location information by default. The boolean @var{system?} value indicates whether an application is a system component or not. Finally @var{users} is a list of UIDs of all users for which this application is allowed location info access. An empty users list means that all users are allowed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20858 +#: guix-git/doc/guix.texi:21220 #, no-wrap msgid "{Scheme Variable} %standard-geoclue-applications" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20865 +#: guix-git/doc/guix.texi:21227 msgid "The standard list of well-known GeoClue application configurations, granting authority to the GNOME date-and-time utility to ask for the current location in order to set the time zone, and allowing the IceCat and Epiphany web browsers to request location information. IceCat and Epiphany both query the user before allowing a web page to know the user's location." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20867 +#: guix-git/doc/guix.texi:21229 #, no-wrap msgid "{Scheme Procedure} geoclue-service [#:colord @var{colord}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20880 +#: guix-git/doc/guix.texi:21242 msgid "[#:whitelist '()] @ [#:wifi-geolocation-url \"https://location.services.mozilla.com/v1/geolocate?key=geoclue\"] @ [#:submit-data? #f] [#:wifi-submission-url \"https://location.services.mozilla.com/v1/submit?key=geoclue\"] @ [#:submission-nick \"geoclue\"] @ [#:applications %standard-geoclue-applications] Return a service that runs the GeoClue location service. This service provides a D-Bus interface to allow applications to request access to a user's physical location, and optionally to add information to online location databases. See @uref{https://wiki.freedesktop.org/www/Software/GeoClue/, the GeoClue web site} for more information." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20882 +#: guix-git/doc/guix.texi:21244 #, no-wrap msgid "{Scheme Procedure} bluetooth-service [#:bluez @var{bluez}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20889 +#: guix-git/doc/guix.texi:21251 msgid "[@w{#:auto-enable? #f}] Return a service that runs the @command{bluetoothd} daemon, which manages all the Bluetooth devices and provides a number of D-Bus interfaces. When AUTO-ENABLE? is true, the bluetooth controller is powered automatically at boot, which can be useful when using a bluetooth keyboard or mouse." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20891 +#: guix-git/doc/guix.texi:21253 msgid "Users need to be in the @code{lp} group to access the D-Bus service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20893 +#: guix-git/doc/guix.texi:21255 #, no-wrap msgid "{Scheme Variable} gnome-keyring-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20897 +#: guix-git/doc/guix.texi:21259 msgid "This is the type of the service that adds the @uref{https://wiki.gnome.org/Projects/GnomeKeyring, GNOME Keyring}. Its value is a @code{gnome-keyring-configuration} object (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20901 +#: guix-git/doc/guix.texi:21263 msgid "This service adds the @code{gnome-keyring} package to the system profile and extends PAM with entries using @code{pam_gnome_keyring.so}, unlocking a user's login keyring when they log in or setting its password with passwd." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20903 +#: guix-git/doc/guix.texi:21265 #, no-wrap msgid "{Data Type} gnome-keyring-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20905 +#: guix-git/doc/guix.texi:21267 msgid "Configuration record for the GNOME Keyring service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20907 +#: guix-git/doc/guix.texi:21269 #, no-wrap msgid "@code{keyring} (default: @code{gnome-keyring})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20909 +#: guix-git/doc/guix.texi:21271 msgid "The GNOME keyring package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20910 +#: guix-git/doc/guix.texi:21272 #, no-wrap msgid "pam-services" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20915 +#: guix-git/doc/guix.texi:21277 msgid "A list of @code{(@var{service} . @var{kind})} pairs denoting PAM services to extend, where @var{service} is the name of an existing service to extend and @var{kind} is one of @code{login} or @code{passwd}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20921 +#: guix-git/doc/guix.texi:21283 msgid "If @code{login} is given, it adds an optional @code{pam_gnome_keyring.so} to the auth block without arguments and to the session block with @code{auto_start}. If @code{passwd} is given, it adds an optional @code{pam_gnome_keyring.so} to the password block without arguments." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20924 +#: guix-git/doc/guix.texi:21286 msgid "By default, this field contains ``gdm-password'' with the value @code{login} and ``passwd'' is with the value @code{passwd}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20931 +#: guix-git/doc/guix.texi:21293 #, no-wrap msgid "sound support" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20932 +#: guix-git/doc/guix.texi:21294 #, no-wrap msgid "ALSA" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20933 +#: guix-git/doc/guix.texi:21295 #, no-wrap msgid "PulseAudio, sound support" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20938 +#: guix-git/doc/guix.texi:21300 msgid "The @code{(gnu services sound)} module provides a service to configure the Advanced Linux Sound Architecture (ALSA) system, which makes PulseAudio the preferred ALSA output driver." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20939 +#: guix-git/doc/guix.texi:21301 #, no-wrap msgid "{Scheme Variable} alsa-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20944 +#: guix-git/doc/guix.texi:21306 msgid "This is the type for the @uref{https://alsa-project.org/, Advanced Linux Sound Architecture} (ALSA) system, which generates the @file{/etc/asound.conf} configuration file. The value for this type is a @command{alsa-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20947 +#: guix-git/doc/guix.texi:21309 #, no-wrap msgid "(service alsa-service-type)\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20950 +#: guix-git/doc/guix.texi:21312 msgid "See below for details about @code{alsa-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20952 +#: guix-git/doc/guix.texi:21314 #, no-wrap msgid "{Data Type} alsa-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20954 +#: guix-git/doc/guix.texi:21316 msgid "Data type representing the configuration for @code{alsa-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20956 +#: guix-git/doc/guix.texi:21318 #, no-wrap msgid "@code{alsa-plugins} (default: @var{alsa-plugins})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20958 +#: guix-git/doc/guix.texi:21320 msgid "@code{alsa-plugins} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20959 +#: guix-git/doc/guix.texi:21321 #, no-wrap msgid "@code{pulseaudio?} (default: @var{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20962 +#: guix-git/doc/guix.texi:21324 msgid "Whether ALSA applications should transparently be made to use the @uref{https://www.pulseaudio.org/, PulseAudio} sound server." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20966 +#: guix-git/doc/guix.texi:21328 msgid "Using PulseAudio allows you to run several sound-producing applications at the same time and to individual control them @i{via} @command{pavucontrol}, among other things." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20967 +#: guix-git/doc/guix.texi:21329 #, no-wrap msgid "@code{extra-options} (default: @var{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20969 +#: guix-git/doc/guix.texi:21331 msgid "String to append to the @file{/etc/asound.conf} file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20975 +#: guix-git/doc/guix.texi:21337 msgid "Individual users who want to override the system configuration of ALSA can do it with the @file{~/.asoundrc} file:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:20981 +#: guix-git/doc/guix.texi:21343 #, no-wrap msgid "" "# In guix, we have to specify the absolute path for plugins.\n" @@ -37482,7 +38091,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:20990 +#: guix-git/doc/guix.texi:21352 #, no-wrap msgid "" "# Routing ALSA to jack:\n" @@ -37497,7 +38106,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:20996 +#: guix-git/doc/guix.texi:21358 #, no-wrap msgid "" " capture_ports @{\n" @@ -37509,7 +38118,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:21003 +#: guix-git/doc/guix.texi:21365 #, no-wrap msgid "" "pcm.!default @{\n" @@ -37521,104 +38130,104 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21007 +#: guix-git/doc/guix.texi:21369 msgid "See @uref{https://www.alsa-project.org/main/index.php/Asoundrc} for the details." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21008 +#: guix-git/doc/guix.texi:21370 #, no-wrap msgid "{Scheme Variable} pulseaudio-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21012 +#: guix-git/doc/guix.texi:21374 msgid "This is the type for the @uref{https://www.pulseaudio.org/, PulseAudio} sound server. It exists to allow system overrides of the default settings via @code{pulseaudio-configuration}, see below." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:21018 +#: guix-git/doc/guix.texi:21380 msgid "This service overrides per-user configuration files. If you want PulseAudio to honor configuration files in @file{~/.config/pulse} you have to unset the environment variables @env{PULSE_CONFIG} and @env{PULSE_CLIENTCONFIG} in your @file{~/.bash_profile}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:21026 +#: guix-git/doc/guix.texi:21388 msgid "This service on its own does not ensure, that the @code{pulseaudio} package exists on your machine. It merely adds configuration files for it, as detailed below. In the (admittedly unlikely) case, that you find yourself without a @code{pulseaudio} package, consider enabling it through the @code{alsa-service-type} above." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21029 +#: guix-git/doc/guix.texi:21391 #, no-wrap msgid "{Data Type} pulseaudio-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21031 +#: guix-git/doc/guix.texi:21393 msgid "Data type representing the configuration for @code{pulseaudio-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21033 +#: guix-git/doc/guix.texi:21395 #, no-wrap msgid "@code{client-conf} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21038 -msgid "List of settings to set in @file{client.conf}. Accepts a list of strings or a symbol-value pairs. A string will be inserted as-is with a newline added. A pair will be formatted as ``key = value'', again with a newline added." +#: guix-git/doc/guix.texi:21400 +msgid "List of settings to set in @file{client.conf}. Accepts a list of strings or symbol-value pairs. A string will be inserted as-is with a newline added. A pair will be formatted as ``key = value'', again with a newline added." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21039 +#: guix-git/doc/guix.texi:21401 #, no-wrap msgid "@code{daemon-conf} (default: @code{'((flat-volumes . no))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21042 +#: guix-git/doc/guix.texi:21404 msgid "List of settings to set in @file{daemon.conf}, formatted just like @var{client-conf}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21043 +#: guix-git/doc/guix.texi:21405 #, no-wrap msgid "@code{script-file} (default: @code{(file-append pulseaudio \"/etc/pulse/default.pa\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21045 +#: guix-git/doc/guix.texi:21407 msgid "Script file to use as @file{default.pa}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21046 +#: guix-git/doc/guix.texi:21408 #, no-wrap msgid "@code{system-script-file} (default: @code{(file-append pulseaudio \"/etc/pulse/system.pa\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21048 +#: guix-git/doc/guix.texi:21410 msgid "Script file to use as @file{system.pa}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21051 +#: guix-git/doc/guix.texi:21413 #, no-wrap msgid "{Scheme Variable} ladspa-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21054 +#: guix-git/doc/guix.texi:21416 msgid "This service sets the @var{LADSPA_PATH} variable, so that programs, which respect it, e.g. PulseAudio, can load LADSPA plugins." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21057 +#: guix-git/doc/guix.texi:21419 msgid "The following example will setup the service to enable modules from the @code{swh-plugins} package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21061 +#: guix-git/doc/guix.texi:21423 #, no-wrap msgid "" "(service ladspa-service-type\n" @@ -37626,34 +38235,34 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21065 +#: guix-git/doc/guix.texi:21427 msgid "See @uref{http://plugin.org.uk/ladspa-swh/docs/ladspa-swh.html} for the details." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21072 +#: guix-git/doc/guix.texi:21434 #, no-wrap msgid "SQL" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21074 +#: guix-git/doc/guix.texi:21436 msgid "The @code{(gnu services databases)} module provides the following services." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21075 +#: guix-git/doc/guix.texi:21437 #, no-wrap msgid "PostgreSQL" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21079 +#: guix-git/doc/guix.texi:21441 msgid "The following example describes a PostgreSQL service with the default configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21084 +#: guix-git/doc/guix.texi:21446 #, no-wrap msgid "" "(service postgresql-service-type\n" @@ -37662,17 +38271,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21090 +#: guix-git/doc/guix.texi:21452 msgid "If the services fails to start, it may be due to an incompatible cluster already present in @var{data-directory}. Adjust it (or, if you don't need the cluster anymore, delete @var{data-directory}), then restart the service." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21097 +#: guix-git/doc/guix.texi:21459 msgid "Peer authentication is used by default and the @code{postgres} user account has no shell, which prevents the direct execution of @code{psql} commands as this user. To use @code{psql}, you can temporarily log in as @code{postgres} using a shell, create a PostgreSQL superuser with the same name as one of the system users and then create the associated database." msgstr "" #. type: example -#: guix-git/doc/guix.texi:21102 +#: guix-git/doc/guix.texi:21464 #, no-wrap msgid "" "sudo -u postgres -s /bin/sh\n" @@ -37681,101 +38290,101 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21104 +#: guix-git/doc/guix.texi:21466 #, no-wrap msgid "{Data Type} postgresql-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21107 +#: guix-git/doc/guix.texi:21469 msgid "Data type representing the configuration for the @code{postgresql-service-type}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:21109 +#: guix-git/doc/guix.texi:21471 #, no-wrap msgid "postgresql" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21111 +#: guix-git/doc/guix.texi:21473 msgid "PostgreSQL package to use for the service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21112 +#: guix-git/doc/guix.texi:21474 #, no-wrap msgid "@code{port} (default: @code{5432})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21114 +#: guix-git/doc/guix.texi:21476 msgid "Port on which PostgreSQL should listen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21117 +#: guix-git/doc/guix.texi:21479 msgid "Locale to use as the default when creating the database cluster." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21118 +#: guix-git/doc/guix.texi:21480 #, no-wrap msgid "@code{config-file} (default: @code{(postgresql-config-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21122 +#: guix-git/doc/guix.texi:21484 msgid "The configuration file to use when running PostgreSQL@. The default behaviour uses the postgresql-config-file record with the default values for the fields." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21123 +#: guix-git/doc/guix.texi:21485 #, no-wrap msgid "@code{log-directory} (default: @code{\"/var/log/postgresql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21127 +#: guix-git/doc/guix.texi:21489 msgid "The directory where @command{pg_ctl} output will be written in a file named @code{\"pg_ctl.log\"}. This file can be useful to debug PostgreSQL configuration errors for instance." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21128 +#: guix-git/doc/guix.texi:21490 #, no-wrap msgid "@code{data-directory} (default: @code{\"/var/lib/postgresql/data\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21130 +#: guix-git/doc/guix.texi:21492 msgid "Directory in which to store the data." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21131 +#: guix-git/doc/guix.texi:21493 #, no-wrap msgid "@code{extension-packages} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21132 +#: guix-git/doc/guix.texi:21494 #, no-wrap msgid "postgresql extension-packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21137 +#: guix-git/doc/guix.texi:21499 msgid "Additional extensions are loaded from packages listed in @var{extension-packages}. Extensions are available at runtime. For instance, to create a geographic database using the @code{postgis} extension, a user can configure the postgresql-service as in this example:" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21138 +#: guix-git/doc/guix.texi:21500 #, no-wrap msgid "postgis" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21141 +#: guix-git/doc/guix.texi:21503 #, no-wrap msgid "" "(use-package-modules databases geo)\n" @@ -37783,7 +38392,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21154 +#: guix-git/doc/guix.texi:21516 #, no-wrap msgid "" "(operating-system\n" @@ -37801,12 +38410,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21158 +#: guix-git/doc/guix.texi:21520 msgid "Then the extension becomes visible and you can initialise an empty geographic database in this way:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:21165 +#: guix-git/doc/guix.texi:21527 #, no-wrap msgid "" "psql -U postgres\n" @@ -37817,23 +38426,23 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21170 +#: guix-git/doc/guix.texi:21532 msgid "There is no need to add this field for contrib extensions such as hstore or dblink as they are already loadable by postgresql. This field is only required to add extensions provided by other packages." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21174 +#: guix-git/doc/guix.texi:21536 #, no-wrap msgid "{Data Type} postgresql-config-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21180 +#: guix-git/doc/guix.texi:21542 msgid "Data type representing the PostgreSQL configuration file. As shown in the following example, this can be used to customize the configuration of PostgreSQL@. Note that you can use any G-expression or filename in place of this record, if you already have a configuration file you'd like to use for example." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21200 +#: guix-git/doc/guix.texi:21562 #, no-wrap msgid "" "(service postgresql-service-type\n" @@ -37857,77 +38466,77 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:21203 +#: guix-git/doc/guix.texi:21565 #, no-wrap msgid "@code{log-destination} (default: @code{\"syslog\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21206 +#: guix-git/doc/guix.texi:21568 msgid "The logging method to use for PostgreSQL@. Multiple values are accepted, separated by commas." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21207 +#: guix-git/doc/guix.texi:21569 #, no-wrap msgid "@code{hba-file} (default: @code{%default-postgres-hba})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21210 +#: guix-git/doc/guix.texi:21572 msgid "Filename or G-expression for the host-based authentication configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21211 +#: guix-git/doc/guix.texi:21573 #, no-wrap msgid "@code{ident-file} (default: @code{%default-postgres-ident})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21213 +#: guix-git/doc/guix.texi:21575 msgid "Filename or G-expression for the user name mapping configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21214 +#: guix-git/doc/guix.texi:21576 #, no-wrap msgid "@code{socket-directory} (default: @code{\"/var/run/postgresql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21219 +#: guix-git/doc/guix.texi:21581 msgid "Specifies the directory of the Unix-domain socket(s) on which PostgreSQL is to listen for connections from client applications. If set to @code{\"\"} PostgreSQL does not listen on any Unix-domain sockets, in which case only TCP/IP sockets can be used to connect to the server." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21222 +#: guix-git/doc/guix.texi:21584 msgid "By default, the @code{#false} value means the PostgreSQL default value will be used, which is currently @samp{/tmp}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21227 +#: guix-git/doc/guix.texi:21589 msgid "List of additional keys and values to include in the PostgreSQL config file. Each entry in the list should be a list where the first element is the key, and the remaining elements are the values." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21233 +#: guix-git/doc/guix.texi:21595 msgid "The values can be numbers, booleans or strings and will be mapped to PostgreSQL parameters types @code{Boolean}, @code{String}, @code{Numeric}, @code{Numeric with Unit} and @code{Enumerated} described @uref{https://www.postgresql.org/docs/current/config-setting.html, here}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21237 +#: guix-git/doc/guix.texi:21599 #, no-wrap msgid "{Scheme Variable} postgresql-role-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21240 +#: guix-git/doc/guix.texi:21602 msgid "This service allows to create PostgreSQL roles and databases after PostgreSQL service start. Here is an example of its use." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21248 +#: guix-git/doc/guix.texi:21610 #, no-wrap msgid "" "(service postgresql-role-service-type\n" @@ -37939,12 +38548,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21252 +#: guix-git/doc/guix.texi:21614 msgid "This service can be extended with extra roles, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21258 +#: guix-git/doc/guix.texi:21620 #, no-wrap msgid "" "(service-extension postgresql-role-service-type\n" @@ -37954,398 +38563,398 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21261 +#: guix-git/doc/guix.texi:21623 #, no-wrap msgid "{Data Type} postgresql-role" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21267 +#: guix-git/doc/guix.texi:21629 msgid "PostgreSQL manages database access permissions using the concept of roles. A role can be thought of as either a database user, or a group of database users, depending on how the role is set up. Roles can own database objects (for example, tables) and can assign privileges on those objects to other roles to control who has access to which objects." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21271 +#: guix-git/doc/guix.texi:21633 msgid "The role name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21272 +#: guix-git/doc/guix.texi:21634 #, no-wrap msgid "@code{permissions} (default: @code{'(createdb login)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21276 +#: guix-git/doc/guix.texi:21638 msgid "The role permissions list. Supported permissions are @code{bypassrls}, @code{createdb}, @code{createrole}, @code{login}, @code{replication} and @code{superuser}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21277 +#: guix-git/doc/guix.texi:21639 #, no-wrap msgid "@code{create-database?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21279 +#: guix-git/doc/guix.texi:21641 msgid "Whether to create a database with the same name as the role." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21283 +#: guix-git/doc/guix.texi:21645 #, no-wrap msgid "{Data Type} postgresql-role-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21286 +#: guix-git/doc/guix.texi:21648 msgid "Data type representing the configuration of @var{postgresql-role-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21288 +#: guix-git/doc/guix.texi:21650 #, no-wrap msgid "@code{host} (default: @code{\"/var/run/postgresql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21290 +#: guix-git/doc/guix.texi:21652 msgid "The PostgreSQL host to connect to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21291 +#: guix-git/doc/guix.texi:21653 #, no-wrap msgid "@code{log} (default: @code{\"/var/log/postgresql_roles.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21293 +#: guix-git/doc/guix.texi:21655 msgid "File name of the log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21294 +#: guix-git/doc/guix.texi:21656 #, no-wrap msgid "@code{roles} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21296 +#: guix-git/doc/guix.texi:21658 msgid "The initial PostgreSQL roles to create." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21299 +#: guix-git/doc/guix.texi:21661 #, no-wrap msgid "MariaDB/MySQL" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21301 +#: guix-git/doc/guix.texi:21663 #, no-wrap msgid "{Scheme Variable} mysql-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21305 +#: guix-git/doc/guix.texi:21667 msgid "This is the service type for a MySQL or MariaDB database server. Its value is a @code{mysql-configuration} object that specifies which package to use, as well as various settings for the @command{mysqld} daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21307 +#: guix-git/doc/guix.texi:21669 #, no-wrap msgid "{Data Type} mysql-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21309 +#: guix-git/doc/guix.texi:21671 msgid "Data type representing the configuration of @var{mysql-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21311 +#: guix-git/doc/guix.texi:21673 #, no-wrap msgid "@code{mysql} (default: @var{mariadb})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21314 +#: guix-git/doc/guix.texi:21676 msgid "Package object of the MySQL database server, can be either @var{mariadb} or @var{mysql}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21317 +#: guix-git/doc/guix.texi:21679 msgid "For MySQL, a temporary root password will be displayed at activation time. For MariaDB, the root password is empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21318 guix-git/doc/guix.texi:25138 +#: guix-git/doc/guix.texi:21680 guix-git/doc/guix.texi:25500 #, no-wrap msgid "@code{bind-address} (default: @code{\"127.0.0.1\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21321 +#: guix-git/doc/guix.texi:21683 msgid "The IP on which to listen for network connections. Use @code{\"0.0.0.0\"} to bind to all available network interfaces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21322 +#: guix-git/doc/guix.texi:21684 #, no-wrap msgid "@code{port} (default: @code{3306})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21324 +#: guix-git/doc/guix.texi:21686 msgid "TCP port on which the database server listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21325 +#: guix-git/doc/guix.texi:21687 #, no-wrap msgid "@code{socket} (default: @code{\"/run/mysqld/mysqld.sock\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21327 +#: guix-git/doc/guix.texi:21689 msgid "Socket file to use for local (non-network) connections." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21330 +#: guix-git/doc/guix.texi:21692 msgid "Additional settings for the @file{my.cnf} configuration file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21331 +#: guix-git/doc/guix.texi:21693 #, no-wrap msgid "@code{extra-environment} (default: @code{#~'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21333 +#: guix-git/doc/guix.texi:21695 msgid "List of environment variables passed to the @command{mysqld} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21334 +#: guix-git/doc/guix.texi:21696 #, no-wrap msgid "@code{auto-upgrade?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21339 +#: guix-git/doc/guix.texi:21701 msgid "Whether to automatically run @command{mysql_upgrade} after starting the service. This is necessary to upgrade the @dfn{system schema} after ``major'' updates (such as switching from MariaDB 10.4 to 10.5), but can be disabled if you would rather do that manually." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21343 +#: guix-git/doc/guix.texi:21705 #, no-wrap msgid "Memcached" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21345 +#: guix-git/doc/guix.texi:21707 #, no-wrap msgid "{Scheme Variable} memcached-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21349 +#: guix-git/doc/guix.texi:21711 msgid "This is the service type for the @uref{https://memcached.org/, Memcached} service, which provides a distributed in memory cache. The value for the service type is a @code{memcached-configuration} object." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21353 +#: guix-git/doc/guix.texi:21715 #, no-wrap msgid "(service memcached-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21355 +#: guix-git/doc/guix.texi:21717 #, no-wrap msgid "{Data Type} memcached-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21357 +#: guix-git/doc/guix.texi:21719 msgid "Data type representing the configuration of memcached." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21359 +#: guix-git/doc/guix.texi:21721 #, no-wrap msgid "@code{memcached} (default: @code{memcached})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21361 +#: guix-git/doc/guix.texi:21723 msgid "The Memcached package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21362 +#: guix-git/doc/guix.texi:21724 #, no-wrap msgid "@code{interfaces} (default: @code{'(\"0.0.0.0\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21364 +#: guix-git/doc/guix.texi:21726 msgid "Network interfaces on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21365 +#: guix-git/doc/guix.texi:21727 #, no-wrap msgid "@code{tcp-port} (default: @code{11211})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21367 +#: guix-git/doc/guix.texi:21729 msgid "Port on which to accept connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21368 +#: guix-git/doc/guix.texi:21730 #, no-wrap msgid "@code{udp-port} (default: @code{11211})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21371 +#: guix-git/doc/guix.texi:21733 msgid "Port on which to accept UDP connections on, a value of 0 will disable listening on a UDP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21372 +#: guix-git/doc/guix.texi:21734 #, no-wrap msgid "@code{additional-options} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21374 +#: guix-git/doc/guix.texi:21736 msgid "Additional command line options to pass to @code{memcached}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21377 +#: guix-git/doc/guix.texi:21739 #, no-wrap msgid "Redis" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21379 +#: guix-git/doc/guix.texi:21741 #, no-wrap msgid "{Scheme Variable} redis-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21382 +#: guix-git/doc/guix.texi:21744 msgid "This is the service type for the @uref{https://redis.io/, Redis} key/value store, whose value is a @code{redis-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21384 +#: guix-git/doc/guix.texi:21746 #, no-wrap msgid "{Data Type} redis-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21386 +#: guix-git/doc/guix.texi:21748 msgid "Data type representing the configuration of redis." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21388 +#: guix-git/doc/guix.texi:21750 #, no-wrap msgid "@code{redis} (default: @code{redis})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21390 +#: guix-git/doc/guix.texi:21752 msgid "The Redis package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21391 +#: guix-git/doc/guix.texi:21753 #, no-wrap msgid "@code{bind} (default: @code{\"127.0.0.1\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21393 +#: guix-git/doc/guix.texi:21755 msgid "Network interface on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21394 +#: guix-git/doc/guix.texi:21756 #, no-wrap msgid "@code{port} (default: @code{6379})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21397 +#: guix-git/doc/guix.texi:21759 msgid "Port on which to accept connections on, a value of 0 will disable listening on a TCP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21398 +#: guix-git/doc/guix.texi:21760 #, no-wrap msgid "@code{working-directory} (default: @code{\"/var/lib/redis\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21400 +#: guix-git/doc/guix.texi:21762 msgid "Directory in which to store the database and related files." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21406 +#: guix-git/doc/guix.texi:21768 #, no-wrap msgid "mail" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21407 +#: guix-git/doc/guix.texi:21769 #, no-wrap msgid "email" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21412 +#: guix-git/doc/guix.texi:21774 msgid "The @code{(gnu services mail)} module provides Guix service definitions for email services: IMAP, POP3, and LMTP servers, as well as mail transport agents (MTAs). Lots of acronyms! These services are detailed in the subsections below." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21413 +#: guix-git/doc/guix.texi:21775 #, no-wrap msgid "Dovecot Service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21415 +#: guix-git/doc/guix.texi:21777 #, no-wrap msgid "{Scheme Procedure} dovecot-service [#:config (dovecot-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21417 +#: guix-git/doc/guix.texi:21779 msgid "Return a service that runs the Dovecot IMAP/POP3/LMTP mail server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21427 +#: guix-git/doc/guix.texi:21789 msgid "By default, Dovecot does not need much configuration; the default configuration object created by @code{(dovecot-configuration)} will suffice if your mail is delivered to @code{~/Maildir}. A self-signed certificate will be generated for TLS-protected connections, though Dovecot will also listen on cleartext ports by default. There are a number of options, though, which mail administrators might need to change, and as is the case with other services, Guix allows the system administrator to specify these parameters via a uniform Scheme interface." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21430 +#: guix-git/doc/guix.texi:21792 msgid "For example, to specify that mail is located at @code{maildir~/.mail}, one would instantiate the Dovecot service like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21435 +#: guix-git/doc/guix.texi:21797 #, no-wrap msgid "" "(dovecot-service #:config\n" @@ -38354,2433 +38963,2433 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21443 +#: guix-git/doc/guix.texi:21805 msgid "The available configuration parameters follow. Each parameter definition is preceded by its type; for example, @samp{string-list foo} indicates that the @code{foo} parameter should be specified as a list of strings. There is also a way to specify the configuration as a string, if you have an old @code{dovecot.conf} file that you want to port over from some other system; see the end for more details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21453 +#: guix-git/doc/guix.texi:21815 msgid "Available @code{dovecot-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21454 +#: guix-git/doc/guix.texi:21816 #, no-wrap msgid "{@code{dovecot-configuration} parameter} package dovecot" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21456 guix-git/doc/guix.texi:22805 +#: guix-git/doc/guix.texi:21818 guix-git/doc/guix.texi:23167 msgid "The dovecot package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21458 +#: guix-git/doc/guix.texi:21820 #, no-wrap msgid "{@code{dovecot-configuration} parameter} comma-separated-string-list listen" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21464 +#: guix-git/doc/guix.texi:21826 msgid "A list of IPs or hosts where to listen for connections. @samp{*} listens on all IPv4 interfaces, @samp{::} listens on all IPv6 interfaces. If you want to specify non-default ports or anything more complex, customize the address and port fields of the @samp{inet-listener} of the specific services you are interested in." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21466 +#: guix-git/doc/guix.texi:21828 #, no-wrap msgid "{@code{dovecot-configuration} parameter} protocol-configuration-list protocols" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21469 +#: guix-git/doc/guix.texi:21831 msgid "List of protocols we want to serve. Available protocols include @samp{imap}, @samp{pop3}, and @samp{lmtp}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21471 +#: guix-git/doc/guix.texi:21833 msgid "Available @code{protocol-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21472 +#: guix-git/doc/guix.texi:21834 #, no-wrap msgid "{@code{protocol-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21474 +#: guix-git/doc/guix.texi:21836 msgid "The name of the protocol." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21476 +#: guix-git/doc/guix.texi:21838 #, no-wrap msgid "{@code{protocol-configuration} parameter} string auth-socket-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21480 +#: guix-git/doc/guix.texi:21842 msgid "UNIX socket path to the master authentication server to find users. This is used by imap (for shared users) and lda. It defaults to @samp{\"/var/run/dovecot/auth-userdb\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21482 +#: guix-git/doc/guix.texi:21844 #, no-wrap msgid "{@code{protocol-configuration} parameter} boolean imap-metadata?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21487 +#: guix-git/doc/guix.texi:21849 msgid "Whether to enable the @code{IMAP METADATA} extension as defined in @uref{https://tools.ietf.org/html/rfc5464,RFC@tie{}5464}, which provides a means for clients to set and retrieve per-mailbox, per-user metadata and annotations over IMAP." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21490 +#: guix-git/doc/guix.texi:21852 msgid "If this is @samp{#t}, you must also specify a dictionary @i{via} the @code{mail-attribute-dict} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21495 +#: guix-git/doc/guix.texi:21857 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list managesieve-notify-capabilities" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21500 +#: guix-git/doc/guix.texi:21862 msgid "Which NOTIFY capabilities to report to clients that first connect to the ManageSieve service, before authentication. These may differ from the capabilities offered to authenticated users. If this field is left empty, report what the Sieve interpreter supports by default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21504 +#: guix-git/doc/guix.texi:21866 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list managesieve-sieve-capability" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21509 +#: guix-git/doc/guix.texi:21871 msgid "Which SIEVE capabilities to report to clients that first connect to the ManageSieve service, before authentication. These may differ from the capabilities offered to authenticated users. If this field is left empty, report what the Sieve interpreter supports by default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21514 +#: guix-git/doc/guix.texi:21876 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list mail-plugins" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21516 +#: guix-git/doc/guix.texi:21878 msgid "Space separated list of plugins to load." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21518 +#: guix-git/doc/guix.texi:21880 #, no-wrap msgid "{@code{protocol-configuration} parameter} non-negative-integer mail-max-userip-connections" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21522 +#: guix-git/doc/guix.texi:21884 msgid "Maximum number of IMAP connections allowed for a user from each IP address. NOTE: The username is compared case-sensitively. Defaults to @samp{10}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21526 +#: guix-git/doc/guix.texi:21888 #, no-wrap msgid "{@code{dovecot-configuration} parameter} service-configuration-list services" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21530 +#: guix-git/doc/guix.texi:21892 msgid "List of services to enable. Available services include @samp{imap}, @samp{imap-login}, @samp{pop3}, @samp{pop3-login}, @samp{auth}, and @samp{lmtp}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21532 +#: guix-git/doc/guix.texi:21894 msgid "Available @code{service-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21533 +#: guix-git/doc/guix.texi:21895 #, no-wrap msgid "{@code{service-configuration} parameter} string kind" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21538 +#: guix-git/doc/guix.texi:21900 msgid "The service kind. Valid values include @code{director}, @code{imap-login}, @code{pop3-login}, @code{lmtp}, @code{imap}, @code{pop3}, @code{auth}, @code{auth-worker}, @code{dict}, @code{tcpwrap}, @code{quota-warning}, or anything else." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21540 +#: guix-git/doc/guix.texi:21902 #, no-wrap msgid "{@code{service-configuration} parameter} listener-configuration-list listeners" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21545 +#: guix-git/doc/guix.texi:21907 msgid "Listeners for the service. A listener is either a @code{unix-listener-configuration}, a @code{fifo-listener-configuration}, or an @code{inet-listener-configuration}. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21547 +#: guix-git/doc/guix.texi:21909 msgid "Available @code{unix-listener-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21548 +#: guix-git/doc/guix.texi:21910 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21551 guix-git/doc/guix.texi:21574 +#: guix-git/doc/guix.texi:21913 guix-git/doc/guix.texi:21936 msgid "Path to the file, relative to @code{base-dir} field. This is also used as the section name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21553 +#: guix-git/doc/guix.texi:21915 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string mode" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21556 guix-git/doc/guix.texi:21579 +#: guix-git/doc/guix.texi:21918 guix-git/doc/guix.texi:21941 msgid "The access mode for the socket. Defaults to @samp{\"0600\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21558 +#: guix-git/doc/guix.texi:21920 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21561 guix-git/doc/guix.texi:21584 +#: guix-git/doc/guix.texi:21923 guix-git/doc/guix.texi:21946 msgid "The user to own the socket. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21563 +#: guix-git/doc/guix.texi:21925 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21566 guix-git/doc/guix.texi:21589 +#: guix-git/doc/guix.texi:21928 guix-git/doc/guix.texi:21951 msgid "The group to own the socket. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21570 +#: guix-git/doc/guix.texi:21932 msgid "Available @code{fifo-listener-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21571 +#: guix-git/doc/guix.texi:21933 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21576 +#: guix-git/doc/guix.texi:21938 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string mode" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21581 +#: guix-git/doc/guix.texi:21943 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21586 +#: guix-git/doc/guix.texi:21948 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21593 +#: guix-git/doc/guix.texi:21955 msgid "Available @code{inet-listener-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21594 +#: guix-git/doc/guix.texi:21956 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} string protocol" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21596 +#: guix-git/doc/guix.texi:21958 msgid "The protocol to listen for." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21598 +#: guix-git/doc/guix.texi:21960 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} string address" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21601 +#: guix-git/doc/guix.texi:21963 msgid "The address on which to listen, or empty for all addresses. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21603 +#: guix-git/doc/guix.texi:21965 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} non-negative-integer port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21605 +#: guix-git/doc/guix.texi:21967 msgid "The port on which to listen." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21607 +#: guix-git/doc/guix.texi:21969 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} boolean ssl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21611 +#: guix-git/doc/guix.texi:21973 msgid "Whether to use SSL for this service; @samp{yes}, @samp{no}, or @samp{required}. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21615 +#: guix-git/doc/guix.texi:21977 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer client-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21620 +#: guix-git/doc/guix.texi:21982 msgid "Maximum number of simultaneous client connections per process. Once this number of connections is received, the next incoming connection will prompt Dovecot to spawn another process. If set to 0, @code{default-client-limit} is used instead." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21625 +#: guix-git/doc/guix.texi:21987 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer service-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21630 +#: guix-git/doc/guix.texi:21992 msgid "Number of connections to handle before starting a new process. Typically the only useful values are 0 (unlimited) or 1. 1 is more secure, but 0 is faster. . Defaults to @samp{1}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21633 +#: guix-git/doc/guix.texi:21995 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer process-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21636 +#: guix-git/doc/guix.texi:21998 msgid "Maximum number of processes that can exist for this service. If set to 0, @code{default-process-limit} is used instead." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21641 +#: guix-git/doc/guix.texi:22003 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer process-min-avail" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21644 +#: guix-git/doc/guix.texi:22006 msgid "Number of processes to always keep waiting for more connections. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21646 +#: guix-git/doc/guix.texi:22008 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer vsz-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21650 +#: guix-git/doc/guix.texi:22012 msgid "If you set @samp{service-count 0}, you probably need to grow this. Defaults to @samp{256000000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21654 +#: guix-git/doc/guix.texi:22016 #, no-wrap msgid "{@code{dovecot-configuration} parameter} dict-configuration dict" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21657 +#: guix-git/doc/guix.texi:22019 msgid "Dict configuration, as created by the @code{dict-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21659 +#: guix-git/doc/guix.texi:22021 msgid "Available @code{dict-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21660 +#: guix-git/doc/guix.texi:22022 #, no-wrap msgid "{@code{dict-configuration} parameter} free-form-fields entries" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21663 +#: guix-git/doc/guix.texi:22025 msgid "A list of key-value pairs that this dict should hold. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21667 +#: guix-git/doc/guix.texi:22029 #, no-wrap msgid "{@code{dovecot-configuration} parameter} passdb-configuration-list passdbs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21670 +#: guix-git/doc/guix.texi:22032 msgid "A list of passdb configurations, each one created by the @code{passdb-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21672 +#: guix-git/doc/guix.texi:22034 msgid "Available @code{passdb-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21673 +#: guix-git/doc/guix.texi:22035 #, no-wrap msgid "{@code{passdb-configuration} parameter} string driver" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21678 +#: guix-git/doc/guix.texi:22040 msgid "The driver that the passdb should use. Valid values include @samp{pam}, @samp{passwd}, @samp{shadow}, @samp{bsdauth}, and @samp{static}. Defaults to @samp{\"pam\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21680 +#: guix-git/doc/guix.texi:22042 #, no-wrap msgid "{@code{passdb-configuration} parameter} space-separated-string-list args" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21683 +#: guix-git/doc/guix.texi:22045 msgid "Space separated list of arguments to the passdb driver. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21687 +#: guix-git/doc/guix.texi:22049 #, no-wrap msgid "{@code{dovecot-configuration} parameter} userdb-configuration-list userdbs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21690 +#: guix-git/doc/guix.texi:22052 msgid "List of userdb configurations, each one created by the @code{userdb-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21692 +#: guix-git/doc/guix.texi:22054 msgid "Available @code{userdb-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21693 +#: guix-git/doc/guix.texi:22055 #, no-wrap msgid "{@code{userdb-configuration} parameter} string driver" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21697 +#: guix-git/doc/guix.texi:22059 msgid "The driver that the userdb should use. Valid values include @samp{passwd} and @samp{static}. Defaults to @samp{\"passwd\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21699 +#: guix-git/doc/guix.texi:22061 #, no-wrap msgid "{@code{userdb-configuration} parameter} space-separated-string-list args" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21702 +#: guix-git/doc/guix.texi:22064 msgid "Space separated list of arguments to the userdb driver. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21704 +#: guix-git/doc/guix.texi:22066 #, no-wrap msgid "{@code{userdb-configuration} parameter} free-form-args override-fields" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21707 +#: guix-git/doc/guix.texi:22069 msgid "Override fields from passwd. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21711 +#: guix-git/doc/guix.texi:22073 #, no-wrap msgid "{@code{dovecot-configuration} parameter} plugin-configuration plugin-configuration" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21714 +#: guix-git/doc/guix.texi:22076 msgid "Plug-in configuration, created by the @code{plugin-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21716 +#: guix-git/doc/guix.texi:22078 #, no-wrap msgid "{@code{dovecot-configuration} parameter} list-of-namespace-configuration namespaces" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21719 +#: guix-git/doc/guix.texi:22081 msgid "List of namespaces. Each item in the list is created by the @code{namespace-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21721 +#: guix-git/doc/guix.texi:22083 msgid "Available @code{namespace-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21722 +#: guix-git/doc/guix.texi:22084 #, no-wrap msgid "{@code{namespace-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21724 +#: guix-git/doc/guix.texi:22086 msgid "Name for this namespace." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21726 +#: guix-git/doc/guix.texi:22088 #, no-wrap msgid "{@code{namespace-configuration} parameter} string type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21729 +#: guix-git/doc/guix.texi:22091 msgid "Namespace type: @samp{private}, @samp{shared} or @samp{public}. Defaults to @samp{\"private\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21731 +#: guix-git/doc/guix.texi:22093 #, no-wrap msgid "{@code{namespace-configuration} parameter} string separator" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21737 +#: guix-git/doc/guix.texi:22099 msgid "Hierarchy separator to use. You should use the same separator for all namespaces or some clients get confused. @samp{/} is usually a good one. The default however depends on the underlying mail storage format. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21739 +#: guix-git/doc/guix.texi:22101 #, no-wrap msgid "{@code{namespace-configuration} parameter} string prefix" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21743 +#: guix-git/doc/guix.texi:22105 msgid "Prefix required to access this namespace. This needs to be different for all namespaces. For example @samp{Public/}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21745 +#: guix-git/doc/guix.texi:22107 #, no-wrap msgid "{@code{namespace-configuration} parameter} string location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21749 +#: guix-git/doc/guix.texi:22111 msgid "Physical location of the mailbox. This is in the same format as mail_location, which is also the default for it. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21751 +#: guix-git/doc/guix.texi:22113 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean inbox?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21755 +#: guix-git/doc/guix.texi:22117 msgid "There can be only one INBOX, and this setting defines which namespace has it. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21757 +#: guix-git/doc/guix.texi:22119 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean hidden?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21765 +#: guix-git/doc/guix.texi:22127 msgid "If namespace is hidden, it's not advertised to clients via NAMESPACE extension. You'll most likely also want to set @samp{list? #f}. This is mostly useful when converting from another server with different namespaces which you want to deprecate but still keep working. For example you can create hidden namespaces with prefixes @samp{~/mail/}, @samp{~%u/mail/} and @samp{mail/}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21767 +#: guix-git/doc/guix.texi:22129 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean list?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21773 +#: guix-git/doc/guix.texi:22135 msgid "Show the mailboxes under this namespace with the LIST command. This makes the namespace visible for clients that do not support the NAMESPACE extension. The special @code{children} value lists child mailboxes, but hides the namespace prefix. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21775 +#: guix-git/doc/guix.texi:22137 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean subscriptions?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21780 +#: guix-git/doc/guix.texi:22142 msgid "Namespace handles its own subscriptions. If set to @code{#f}, the parent namespace handles them. The empty prefix should always have this as @code{#t}). Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21782 +#: guix-git/doc/guix.texi:22144 #, no-wrap msgid "{@code{namespace-configuration} parameter} mailbox-configuration-list mailboxes" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21785 +#: guix-git/doc/guix.texi:22147 msgid "List of predefined mailboxes in this namespace. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21787 +#: guix-git/doc/guix.texi:22149 msgid "Available @code{mailbox-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21788 +#: guix-git/doc/guix.texi:22150 #, no-wrap msgid "{@code{mailbox-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21790 +#: guix-git/doc/guix.texi:22152 msgid "Name for this mailbox." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21792 +#: guix-git/doc/guix.texi:22154 #, no-wrap msgid "{@code{mailbox-configuration} parameter} string auto" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21796 +#: guix-git/doc/guix.texi:22158 msgid "@samp{create} will automatically create this mailbox. @samp{subscribe} will both create and subscribe to the mailbox. Defaults to @samp{\"no\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21798 +#: guix-git/doc/guix.texi:22160 #, no-wrap msgid "{@code{mailbox-configuration} parameter} space-separated-string-list special-use" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21803 +#: guix-git/doc/guix.texi:22165 msgid "List of IMAP @code{SPECIAL-USE} attributes as specified by RFC 6154. Valid values are @code{\\All}, @code{\\Archive}, @code{\\Drafts}, @code{\\Flagged}, @code{\\Junk}, @code{\\Sent}, and @code{\\Trash}. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21809 +#: guix-git/doc/guix.texi:22171 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name base-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21812 +#: guix-git/doc/guix.texi:22174 msgid "Base directory where to store runtime data. Defaults to @samp{\"/var/run/dovecot/\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21814 +#: guix-git/doc/guix.texi:22176 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string login-greeting" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21817 +#: guix-git/doc/guix.texi:22179 msgid "Greeting message for clients. Defaults to @samp{\"Dovecot ready.\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21819 +#: guix-git/doc/guix.texi:22181 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-trusted-networks" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21826 +#: guix-git/doc/guix.texi:22188 msgid "List of trusted network ranges. Connections from these IPs are allowed to override their IP addresses and ports (for logging and for authentication checks). @samp{disable-plaintext-auth} is also ignored for these networks. Typically you would specify your IMAP proxy servers here. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21828 +#: guix-git/doc/guix.texi:22190 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-access-sockets" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21831 +#: guix-git/doc/guix.texi:22193 msgid "List of login access check sockets (e.g.@: tcpwrap). Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21833 +#: guix-git/doc/guix.texi:22195 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean verbose-proctitle?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21839 +#: guix-git/doc/guix.texi:22201 msgid "Show more verbose process titles (in ps). Currently shows user name and IP address. Useful for seeing who is actually using the IMAP processes (e.g.@: shared mailboxes or if the same uid is used for multiple accounts). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21841 +#: guix-git/doc/guix.texi:22203 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean shutdown-clients?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21847 +#: guix-git/doc/guix.texi:22209 msgid "Should all processes be killed when Dovecot master process shuts down. Setting this to @code{#f} means that Dovecot can be upgraded without forcing existing client connections to close (although that could also be a problem if the upgrade is e.g.@: due to a security fix). Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21849 +#: guix-git/doc/guix.texi:22211 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer doveadm-worker-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21853 +#: guix-git/doc/guix.texi:22215 msgid "If non-zero, run mail commands via this many connections to doveadm server, instead of running them directly in the same process. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21855 +#: guix-git/doc/guix.texi:22217 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string doveadm-socket-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21858 +#: guix-git/doc/guix.texi:22220 msgid "UNIX socket or host:port used for connecting to doveadm server. Defaults to @samp{\"doveadm-server\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21860 +#: guix-git/doc/guix.texi:22222 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list import-environment" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21864 +#: guix-git/doc/guix.texi:22226 msgid "List of environment variables that are preserved on Dovecot startup and passed down to all of its child processes. You can also give key=value pairs to always set specific settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21866 +#: guix-git/doc/guix.texi:22228 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean disable-plaintext-auth?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21873 +#: guix-git/doc/guix.texi:22235 msgid "Disable LOGIN command and all other plaintext authentications unless SSL/TLS is used (LOGINDISABLED capability). Note that if the remote IP matches the local IP (i.e.@: you're connecting from the same computer), the connection is considered secure and plaintext authentication is allowed. See also ssl=required setting. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21875 +#: guix-git/doc/guix.texi:22237 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer auth-cache-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21880 +#: guix-git/doc/guix.texi:22242 msgid "Authentication cache size (e.g.@: @samp{#e10e6}). 0 means it's disabled. Note that bsdauth, PAM and vpopmail require @samp{cache-key} to be set for caching to be used. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21882 +#: guix-git/doc/guix.texi:22244 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-cache-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21890 +#: guix-git/doc/guix.texi:22252 msgid "Time to live for cached data. After TTL expires the cached record is no longer used, *except* if the main database lookup returns internal failure. We also try to handle password changes automatically: If user's previous authentication was successful, but this one wasn't, the cache isn't used. For now this works only with plaintext authentication. Defaults to @samp{\"1 hour\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21892 +#: guix-git/doc/guix.texi:22254 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-cache-negative-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21896 +#: guix-git/doc/guix.texi:22258 msgid "TTL for negative hits (user not found, password mismatch). 0 disables caching them completely. Defaults to @samp{\"1 hour\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21898 +#: guix-git/doc/guix.texi:22260 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list auth-realms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21904 +#: guix-git/doc/guix.texi:22266 msgid "List of realms for SASL authentication mechanisms that need them. You can leave it empty if you don't want to support multiple realms. Many clients simply use the first one listed here, so keep the default realm first. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21906 +#: guix-git/doc/guix.texi:22268 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-default-realm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21911 +#: guix-git/doc/guix.texi:22273 msgid "Default realm/domain to use if none was specified. This is used for both SASL realms and appending @@domain to username in plaintext logins. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21913 +#: guix-git/doc/guix.texi:22275 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-chars" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21920 +#: guix-git/doc/guix.texi:22282 msgid "List of allowed characters in username. If the user-given username contains a character not listed in here, the login automatically fails. This is just an extra check to make sure user can't exploit any potential quote escaping vulnerabilities with SQL/LDAP databases. If you want to allow all characters, set this value to empty. Defaults to @samp{\"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@@\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21922 +#: guix-git/doc/guix.texi:22284 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-translation" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21928 +#: guix-git/doc/guix.texi:22290 msgid "Username character translations before it's looked up from databases. The value contains series of from -> to characters. For example @samp{#@@/@@} means that @samp{#} and @samp{/} characters are translated to @samp{@@}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21930 +#: guix-git/doc/guix.texi:22292 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21937 +#: guix-git/doc/guix.texi:22299 msgid "Username formatting before it's looked up from databases. You can use the standard variables here, e.g.@: %Lu would lowercase the username, %n would drop away the domain if it was given, or @samp{%n-AT-%d} would change the @samp{@@} into @samp{-AT-}. This translation is done after @samp{auth-username-translation} changes. Defaults to @samp{\"%Lu\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21939 +#: guix-git/doc/guix.texi:22301 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-master-user-separator" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21947 +#: guix-git/doc/guix.texi:22309 msgid "If you want to allow master users to log in by specifying the master username within the normal username string (i.e.@: not using SASL mechanism's support for it), you can specify the separator character here. The format is then . UW-IMAP uses @samp{*} as the separator, so that could be a good choice. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21949 +#: guix-git/doc/guix.texi:22311 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-anonymous-username" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21953 +#: guix-git/doc/guix.texi:22315 msgid "Username to use for users logging in with ANONYMOUS SASL mechanism. Defaults to @samp{\"anonymous\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21955 +#: guix-git/doc/guix.texi:22317 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer auth-worker-max-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21960 +#: guix-git/doc/guix.texi:22322 msgid "Maximum number of dovecot-auth worker processes. They're used to execute blocking passdb and userdb queries (e.g.@: MySQL and PAM). They're automatically created and destroyed as needed. Defaults to @samp{30}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21962 +#: guix-git/doc/guix.texi:22324 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-gssapi-hostname" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21967 +#: guix-git/doc/guix.texi:22329 msgid "Host name to use in GSSAPI principal names. The default is to use the name returned by gethostname(). Use @samp{$ALL} (with quotes) to allow all keytab entries. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21969 +#: guix-git/doc/guix.texi:22331 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-krb5-keytab" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21975 +#: guix-git/doc/guix.texi:22337 msgid "Kerberos keytab to use for the GSSAPI mechanism. Will use the system default (usually @file{/etc/krb5.keytab}) if not specified. You may need to change the auth service to run as root to be able to read this file. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21977 +#: guix-git/doc/guix.texi:22339 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-use-winbind?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21982 +#: guix-git/doc/guix.texi:22344 msgid "Do NTLM and GSS-SPNEGO authentication using Samba's winbind daemon and @samp{ntlm-auth} helper. . Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21984 +#: guix-git/doc/guix.texi:22346 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name auth-winbind-helper-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21987 +#: guix-git/doc/guix.texi:22349 msgid "Path for Samba's @samp{ntlm-auth} helper binary. Defaults to @samp{\"/usr/bin/ntlm_auth\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21989 +#: guix-git/doc/guix.texi:22351 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-failure-delay" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21992 +#: guix-git/doc/guix.texi:22354 msgid "Time to delay before replying to failed authentications. Defaults to @samp{\"2 secs\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21994 +#: guix-git/doc/guix.texi:22356 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-ssl-require-client-cert?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21998 +#: guix-git/doc/guix.texi:22360 msgid "Require a valid SSL client certificate or the authentication fails. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22000 +#: guix-git/doc/guix.texi:22362 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-ssl-username-from-cert?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22005 +#: guix-git/doc/guix.texi:22367 msgid "Take the username from client's SSL certificate, using @code{X509_NAME_get_text_by_NID()} which returns the subject's DN's CommonName. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22007 +#: guix-git/doc/guix.texi:22369 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list auth-mechanisms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22013 +#: guix-git/doc/guix.texi:22375 msgid "List of wanted authentication mechanisms. Supported mechanisms are: @samp{plain}, @samp{login}, @samp{digest-md5}, @samp{cram-md5}, @samp{ntlm}, @samp{rpa}, @samp{apop}, @samp{anonymous}, @samp{gssapi}, @samp{otp}, @samp{skey}, and @samp{gss-spnego}. NOTE: See also @samp{disable-plaintext-auth} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22015 +#: guix-git/doc/guix.texi:22377 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list director-servers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22020 +#: guix-git/doc/guix.texi:22382 msgid "List of IPs or hostnames to all director servers, including ourself. Ports can be specified as ip:port. The default port is the same as what director service's @samp{inet-listener} is using. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22022 +#: guix-git/doc/guix.texi:22384 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list director-mail-servers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22026 +#: guix-git/doc/guix.texi:22388 msgid "List of IPs or hostnames to all backend mail servers. Ranges are allowed too, like 10.0.0.10-10.0.0.30. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22028 +#: guix-git/doc/guix.texi:22390 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string director-user-expire" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22032 +#: guix-git/doc/guix.texi:22394 msgid "How long to redirect users to a specific server after it no longer has any connections. Defaults to @samp{\"15 min\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22034 +#: guix-git/doc/guix.texi:22396 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string director-username-hash" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22039 +#: guix-git/doc/guix.texi:22401 msgid "How the username is translated before being hashed. Useful values include %Ln if user can log in with or without @@domain, %Ld if mailboxes are shared within domain. Defaults to @samp{\"%Lu\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22041 +#: guix-git/doc/guix.texi:22403 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string log-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22045 +#: guix-git/doc/guix.texi:22407 msgid "Log file to use for error messages. @samp{syslog} logs to syslog, @samp{/dev/stderr} logs to stderr. Defaults to @samp{\"syslog\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22047 +#: guix-git/doc/guix.texi:22409 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string info-log-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22051 +#: guix-git/doc/guix.texi:22413 msgid "Log file to use for informational messages. Defaults to @samp{log-path}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22053 +#: guix-git/doc/guix.texi:22415 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string debug-log-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22057 +#: guix-git/doc/guix.texi:22419 msgid "Log file to use for debug messages. Defaults to @samp{info-log-path}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22059 +#: guix-git/doc/guix.texi:22421 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string syslog-facility" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22064 +#: guix-git/doc/guix.texi:22426 msgid "Syslog facility to use if you're logging to syslog. Usually if you don't want to use @samp{mail}, you'll use local0..local7. Also other standard facilities are supported. Defaults to @samp{\"mail\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22066 +#: guix-git/doc/guix.texi:22428 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-verbose?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22070 +#: guix-git/doc/guix.texi:22432 msgid "Log unsuccessful authentication attempts and the reasons why they failed. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22072 +#: guix-git/doc/guix.texi:22434 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-verbose-passwords" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22079 +#: guix-git/doc/guix.texi:22441 msgid "In case of password mismatches, log the attempted password. Valid values are no, plain and sha1. sha1 can be useful for detecting brute force password attempts vs. user simply trying the same password over and over again. You can also truncate the value to n chars by appending \":n\" (e.g.@: sha1:6). Defaults to @samp{\"no\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22081 +#: guix-git/doc/guix.texi:22443 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-debug?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22085 +#: guix-git/doc/guix.texi:22447 msgid "Even more verbose logging for debugging purposes. Shows for example SQL queries. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22087 +#: guix-git/doc/guix.texi:22449 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-debug-passwords?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22092 +#: guix-git/doc/guix.texi:22454 msgid "In case of password mismatches, log the passwords and used scheme so the problem can be debugged. Enabling this also enables @samp{auth-debug}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22094 +#: guix-git/doc/guix.texi:22456 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-debug?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22098 +#: guix-git/doc/guix.texi:22460 msgid "Enable mail process debugging. This can help you figure out why Dovecot isn't finding your mails. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22100 +#: guix-git/doc/guix.texi:22462 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean verbose-ssl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22103 +#: guix-git/doc/guix.texi:22465 msgid "Show protocol level SSL errors. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22105 +#: guix-git/doc/guix.texi:22467 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string log-timestamp" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22109 +#: guix-git/doc/guix.texi:22471 msgid "Prefix for each line written to log file. % codes are in strftime(3) format. Defaults to @samp{\"\\\"%b %d %H:%M:%S \\\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22111 +#: guix-git/doc/guix.texi:22473 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-log-format-elements" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22115 +#: guix-git/doc/guix.texi:22477 msgid "List of elements we want to log. The elements which have a non-empty variable value are joined together to form a comma-separated string." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22117 +#: guix-git/doc/guix.texi:22479 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string login-log-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22121 +#: guix-git/doc/guix.texi:22483 msgid "Login log format. %s contains @samp{login-log-format-elements} string, %$ contains the data we want to log. Defaults to @samp{\"%$: %s\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22123 +#: guix-git/doc/guix.texi:22485 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-log-prefix" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22127 +#: guix-git/doc/guix.texi:22489 msgid "Log prefix for mail processes. See doc/wiki/Variables.txt for list of possible variables you can use. Defaults to @samp{\"\\\"%s(%u)<%@{pid@}><%@{session@}>: \\\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22129 +#: guix-git/doc/guix.texi:22491 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string deliver-log-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22131 +#: guix-git/doc/guix.texi:22493 msgid "Format to use for logging mail deliveries. You can use variables:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22132 +#: guix-git/doc/guix.texi:22494 #, no-wrap msgid "%$" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22134 +#: guix-git/doc/guix.texi:22496 msgid "Delivery status message (e.g.@: @samp{saved to INBOX})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22134 +#: guix-git/doc/guix.texi:22496 #, no-wrap msgid "%m" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22136 +#: guix-git/doc/guix.texi:22498 msgid "Message-ID" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22136 guix-git/doc/guix.texi:22679 +#: guix-git/doc/guix.texi:22498 guix-git/doc/guix.texi:23041 #, no-wrap msgid "%s" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22138 +#: guix-git/doc/guix.texi:22500 msgid "Subject" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22138 +#: guix-git/doc/guix.texi:22500 #, no-wrap msgid "%f" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22140 +#: guix-git/doc/guix.texi:22502 msgid "From address" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22142 +#: guix-git/doc/guix.texi:22504 msgid "Physical size" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22142 +#: guix-git/doc/guix.texi:22504 #, no-wrap msgid "%w" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22144 +#: guix-git/doc/guix.texi:22506 msgid "Virtual size." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22146 +#: guix-git/doc/guix.texi:22508 msgid "Defaults to @samp{\"msgid=%m: %$\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22148 +#: guix-git/doc/guix.texi:22510 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22153 +#: guix-git/doc/guix.texi:22515 msgid "Location for users' mailboxes. The default is empty, which means that Dovecot tries to find the mailboxes automatically. This won't work if the user doesn't yet have any mail, so you should explicitly tell Dovecot the full location." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22159 +#: guix-git/doc/guix.texi:22521 msgid "If you're using mbox, giving a path to the INBOX file (e.g.@: @file{/var/mail/%u}) isn't enough. You'll also need to tell Dovecot where the other mailboxes are kept. This is called the @emph{root mail directory}, and it must be the first path given in the @samp{mail-location} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22161 +#: guix-git/doc/guix.texi:22523 msgid "There are a few special variables you can use, e.g.:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22165 +#: guix-git/doc/guix.texi:22527 msgid "username" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22165 guix-git/doc/guix.texi:22675 +#: guix-git/doc/guix.texi:22527 guix-git/doc/guix.texi:23037 #, no-wrap msgid "%n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22167 +#: guix-git/doc/guix.texi:22529 msgid "user part in user@@domain, same as %u if there's no domain" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22167 +#: guix-git/doc/guix.texi:22529 #, no-wrap msgid "%d" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22169 +#: guix-git/doc/guix.texi:22531 msgid "domain part in user@@domain, empty if there's no domain" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22169 +#: guix-git/doc/guix.texi:22531 #, no-wrap msgid "%h" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22171 +#: guix-git/doc/guix.texi:22533 msgid "home director" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22174 +#: guix-git/doc/guix.texi:22536 msgid "See doc/wiki/Variables.txt for full list. Some examples:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22175 +#: guix-git/doc/guix.texi:22537 #, no-wrap msgid "maildir:~/Maildir" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22176 +#: guix-git/doc/guix.texi:22538 #, no-wrap msgid "mbox:~/mail:INBOX=/var/mail/%u" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22177 +#: guix-git/doc/guix.texi:22539 #, no-wrap msgid "mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22182 +#: guix-git/doc/guix.texi:22544 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22187 +#: guix-git/doc/guix.texi:22549 msgid "System user and group used to access mails. If you use multiple, userdb can override these by returning uid or gid fields. You can use either numbers or names. . Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22189 +#: guix-git/doc/guix.texi:22551 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22194 +#: guix-git/doc/guix.texi:22556 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-privileged-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22200 +#: guix-git/doc/guix.texi:22562 msgid "Group to enable temporarily for privileged operations. Currently this is used only with INBOX when either its initial creation or dotlocking fails. Typically this is set to @samp{\"mail\"} to give access to @file{/var/mail}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22202 +#: guix-git/doc/guix.texi:22564 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-access-groups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22210 +#: guix-git/doc/guix.texi:22572 msgid "Grant access to these supplementary groups for mail processes. Typically these are used to set up access to shared mailboxes. Note that it may be dangerous to set these if users can create symlinks (e.g.@: if @samp{mail} group is set here, @code{ln -s /var/mail ~/mail/var} could allow a user to delete others' mailboxes, or @code{ln -s /secret/shared/box ~/mail/mybox} would allow reading it). Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22212 +#: guix-git/doc/guix.texi:22574 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attribute-dict" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22215 +#: guix-git/doc/guix.texi:22577 msgid "The location of a dictionary used to store @code{IMAP METADATA} as defined by @uref{https://tools.ietf.org/html/rfc5464, RFC@tie{}5464}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22218 +#: guix-git/doc/guix.texi:22580 msgid "The IMAP METADATA commands are available only if the ``imap'' protocol configuration's @code{imap-metadata?} field is @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22223 +#: guix-git/doc/guix.texi:22585 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-full-filesystem-access?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22229 +#: guix-git/doc/guix.texi:22591 msgid "Allow full file system access to clients. There's no access checks other than what the operating system does for the active UID/GID@. It works with both maildir and mboxes, allowing you to prefix mailboxes names with e.g.@: @file{/path/} or @file{~user/}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22231 +#: guix-git/doc/guix.texi:22593 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mmap-disable?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22235 +#: guix-git/doc/guix.texi:22597 msgid "Don't use @code{mmap()} at all. This is required if you store indexes to shared file systems (NFS or clustered file system). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22237 +#: guix-git/doc/guix.texi:22599 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean dotlock-use-excl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22242 +#: guix-git/doc/guix.texi:22604 msgid "Rely on @samp{O_EXCL} to work when creating dotlock files. NFS supports @samp{O_EXCL} since version 3, so this should be safe to use nowadays by default. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22244 +#: guix-git/doc/guix.texi:22606 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-fsync" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22246 +#: guix-git/doc/guix.texi:22608 msgid "When to use fsync() or fdatasync() calls:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22247 +#: guix-git/doc/guix.texi:22609 #, no-wrap msgid "optimized" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22249 +#: guix-git/doc/guix.texi:22611 msgid "Whenever necessary to avoid losing important data" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22251 +#: guix-git/doc/guix.texi:22613 msgid "Useful with e.g.@: NFS when @code{write()}s are delayed" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22253 +#: guix-git/doc/guix.texi:22615 msgid "Never use it (best performance, but crashes can lose data)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22255 +#: guix-git/doc/guix.texi:22617 msgid "Defaults to @samp{\"optimized\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22257 +#: guix-git/doc/guix.texi:22619 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-nfs-storage?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22262 +#: guix-git/doc/guix.texi:22624 msgid "Mail storage exists in NFS@. Set this to yes to make Dovecot flush NFS caches whenever needed. If you're using only a single mail server this isn't needed. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22264 +#: guix-git/doc/guix.texi:22626 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-nfs-index?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22268 +#: guix-git/doc/guix.texi:22630 msgid "Mail index files also exist in NFS@. Setting this to yes requires @samp{mmap-disable? #t} and @samp{fsync-disable? #f}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22270 +#: guix-git/doc/guix.texi:22632 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string lock-method" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22276 +#: guix-git/doc/guix.texi:22638 msgid "Locking method for index files. Alternatives are fcntl, flock and dotlock. Dotlocking uses some tricks which may create more disk I/O than other locking methods. NFS users: flock doesn't work, remember to change @samp{mmap-disable}. Defaults to @samp{\"fcntl\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22278 +#: guix-git/doc/guix.texi:22640 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name mail-temp-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22282 +#: guix-git/doc/guix.texi:22644 msgid "Directory in which LDA/LMTP temporarily stores incoming mails >128 kB. Defaults to @samp{\"/tmp\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22284 +#: guix-git/doc/guix.texi:22646 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer first-valid-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22290 +#: guix-git/doc/guix.texi:22652 msgid "Valid UID range for users. This is mostly to make sure that users can't log in as daemons or other system users. Note that denying root logins is hardcoded to dovecot binary and can't be done even if @samp{first-valid-uid} is set to 0. Defaults to @samp{500}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22292 +#: guix-git/doc/guix.texi:22654 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer last-valid-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22297 +#: guix-git/doc/guix.texi:22659 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer first-valid-gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22302 +#: guix-git/doc/guix.texi:22664 msgid "Valid GID range for users. Users having non-valid GID as primary group ID aren't allowed to log in. If user belongs to supplementary groups with non-valid GIDs, those groups are not set. Defaults to @samp{1}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22304 +#: guix-git/doc/guix.texi:22666 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer last-valid-gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22309 +#: guix-git/doc/guix.texi:22671 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-max-keyword-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22313 +#: guix-git/doc/guix.texi:22675 msgid "Maximum allowed length for mail keyword name. It's only forced when trying to create new keywords. Defaults to @samp{50}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22315 +#: guix-git/doc/guix.texi:22677 #, no-wrap msgid "{@code{dovecot-configuration} parameter} colon-separated-file-name-list valid-chroot-dirs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22325 +#: guix-git/doc/guix.texi:22687 msgid "List of directories under which chrooting is allowed for mail processes (i.e.@: @file{/var/mail} will allow chrooting to @file{/var/mail/foo/bar} too). This setting doesn't affect @samp{login-chroot} @samp{mail-chroot} or auth chroot settings. If this setting is empty, @samp{/./} in home dirs are ignored. WARNING: Never add directories here which local users can modify, that may lead to root exploit. Usually this should be done only if you don't allow shell access for users. . Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22327 +#: guix-git/doc/guix.texi:22689 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-chroot" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22336 +#: guix-git/doc/guix.texi:22698 msgid "Default chroot directory for mail processes. This can be overridden for specific users in user database by giving @samp{/./} in user's home directory (e.g.@: @samp{/home/./user} chroots into @file{/home}). Note that usually there is no real need to do chrooting, Dovecot doesn't allow users to access files outside their mail directory anyway. If your home directories are prefixed with the chroot directory, append @samp{/.} to @samp{mail-chroot}. . Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22338 +#: guix-git/doc/guix.texi:22700 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name auth-socket-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22342 +#: guix-git/doc/guix.texi:22704 msgid "UNIX socket path to master authentication server to find users. This is used by imap (for shared users) and lda. Defaults to @samp{\"/var/run/dovecot/auth-userdb\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22344 +#: guix-git/doc/guix.texi:22706 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name mail-plugin-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22347 +#: guix-git/doc/guix.texi:22709 msgid "Directory where to look up mail plugins. Defaults to @samp{\"/usr/lib/dovecot\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22349 +#: guix-git/doc/guix.texi:22711 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mail-plugins" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22353 +#: guix-git/doc/guix.texi:22715 msgid "List of plugins to load for all services. Plugins specific to IMAP, LDA, etc.@: are added to this list in their own .conf files. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22355 +#: guix-git/doc/guix.texi:22717 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-cache-min-mail-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22360 +#: guix-git/doc/guix.texi:22722 msgid "The minimum number of mails in a mailbox before updates are done to cache file. This allows optimizing Dovecot's behavior to do less disk writes at the cost of more disk reads. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22362 +#: guix-git/doc/guix.texi:22724 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mailbox-idle-check-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22369 +#: guix-git/doc/guix.texi:22731 msgid "When IDLE command is running, mailbox is checked once in a while to see if there are any new mails or other changes. This setting defines the minimum time to wait between those checks. Dovecot can also use dnotify, inotify and kqueue to find out immediately when changes occur. Defaults to @samp{\"30 secs\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22371 +#: guix-git/doc/guix.texi:22733 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-save-crlf?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22378 +#: guix-git/doc/guix.texi:22740 msgid "Save mails with CR+LF instead of plain LF@. This makes sending those mails take less CPU, especially with sendfile() syscall with Linux and FreeBSD@. But it also creates a bit more disk I/O which may just make it slower. Also note that if other software reads the mboxes/maildirs, they may handle the extra CRs wrong and cause problems. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22380 +#: guix-git/doc/guix.texi:22742 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-stat-dirs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22388 +#: guix-git/doc/guix.texi:22750 msgid "By default LIST command returns all entries in maildir beginning with a dot. Enabling this option makes Dovecot return only entries which are directories. This is done by stat()ing each entry, so it causes more disk I/O. (For systems setting struct @samp{dirent->d_type} this check is free and it's done always regardless of this setting). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22390 +#: guix-git/doc/guix.texi:22752 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-copy-with-hardlinks?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22395 +#: guix-git/doc/guix.texi:22757 msgid "When copying a message, do it with hard links whenever possible. This makes the performance much better, and it's unlikely to have any side effects. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22397 +#: guix-git/doc/guix.texi:22759 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-very-dirty-syncs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22402 +#: guix-git/doc/guix.texi:22764 msgid "Assume Dovecot is the only MUA accessing Maildir: Scan cur/ directory only when its mtime changes unexpectedly or when we can't find the mail otherwise. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22404 +#: guix-git/doc/guix.texi:22766 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mbox-read-locks" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22407 +#: guix-git/doc/guix.texi:22769 msgid "Which locking methods to use for locking mbox. There are four available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22409 +#: guix-git/doc/guix.texi:22771 #, no-wrap msgid "dotlock" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22413 +#: guix-git/doc/guix.texi:22775 msgid "Create .lock file. This is the oldest and most NFS-safe solution. If you want to use /var/mail/ like directory, the users will need write access to that directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22413 +#: guix-git/doc/guix.texi:22775 #, no-wrap msgid "dotlock-try" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22416 +#: guix-git/doc/guix.texi:22778 msgid "Same as dotlock, but if it fails because of permissions or because there isn't enough disk space, just skip it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22416 +#: guix-git/doc/guix.texi:22778 #, no-wrap msgid "fcntl" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22418 +#: guix-git/doc/guix.texi:22780 msgid "Use this if possible. Works with NFS too if lockd is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22418 +#: guix-git/doc/guix.texi:22780 #, no-wrap msgid "flock" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22420 guix-git/doc/guix.texi:22422 +#: guix-git/doc/guix.texi:22782 guix-git/doc/guix.texi:22784 msgid "May not exist in all systems. Doesn't work with NFS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22420 +#: guix-git/doc/guix.texi:22782 #, no-wrap msgid "lockf" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22428 +#: guix-git/doc/guix.texi:22790 msgid "You can use multiple locking methods; if you do the order they're declared in is important to avoid deadlocks if other MTAs/MUAs are using multiple locking methods as well. Some operating systems don't allow using some of them simultaneously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22430 +#: guix-git/doc/guix.texi:22792 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mbox-write-locks" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22434 +#: guix-git/doc/guix.texi:22796 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mbox-lock-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22437 +#: guix-git/doc/guix.texi:22799 msgid "Maximum time to wait for lock (all of them) before aborting. Defaults to @samp{\"5 mins\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22439 +#: guix-git/doc/guix.texi:22801 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mbox-dotlock-change-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22443 +#: guix-git/doc/guix.texi:22805 msgid "If dotlock exists but the mailbox isn't modified in any way, override the lock file after this much time. Defaults to @samp{\"2 mins\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22445 +#: guix-git/doc/guix.texi:22807 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-dirty-syncs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22456 +#: guix-git/doc/guix.texi:22818 msgid "When mbox changes unexpectedly we have to fully read it to find out what changed. If the mbox is large this can take a long time. Since the change is usually just a newly appended mail, it'd be faster to simply read the new mails. If this setting is enabled, Dovecot does this but still safely fallbacks to re-reading the whole mbox file whenever something in mbox isn't how it's expected to be. The only real downside to this setting is that if some other MUA changes message flags, Dovecot doesn't notice it immediately. Note that a full sync is done with SELECT, EXAMINE, EXPUNGE and CHECK commands. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22458 +#: guix-git/doc/guix.texi:22820 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-very-dirty-syncs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22463 +#: guix-git/doc/guix.texi:22825 msgid "Like @samp{mbox-dirty-syncs}, but don't do full syncs even with SELECT, EXAMINE, EXPUNGE or CHECK commands. If this is set, @samp{mbox-dirty-syncs} is ignored. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22465 +#: guix-git/doc/guix.texi:22827 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-lazy-writes?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22471 +#: guix-git/doc/guix.texi:22833 msgid "Delay writing mbox headers until doing a full write sync (EXPUNGE and CHECK commands and when closing the mailbox). This is especially useful for POP3 where clients often delete all mails. The downside is that our changes aren't immediately visible to other MUAs. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22473 +#: guix-git/doc/guix.texi:22835 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mbox-min-index-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22478 +#: guix-git/doc/guix.texi:22840 msgid "If mbox size is smaller than this (e.g.@: 100k), don't write index files. If an index file already exists it's still read, just not updated. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22480 +#: guix-git/doc/guix.texi:22842 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mdbox-rotate-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22483 +#: guix-git/doc/guix.texi:22845 msgid "Maximum dbox file size until it's rotated. Defaults to @samp{10000000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22485 +#: guix-git/doc/guix.texi:22847 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mdbox-rotate-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22490 +#: guix-git/doc/guix.texi:22852 msgid "Maximum dbox file age until it's rotated. Typically in days. Day begins from midnight, so 1d = today, 2d = yesterday, etc. 0 = check disabled. Defaults to @samp{\"1d\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22492 +#: guix-git/doc/guix.texi:22854 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mdbox-preallocate-space?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22497 +#: guix-git/doc/guix.texi:22859 msgid "When creating new mdbox files, immediately preallocate their size to @samp{mdbox-rotate-size}. This setting currently works only in Linux with some file systems (ext4, xfs). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22499 +#: guix-git/doc/guix.texi:22861 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22503 +#: guix-git/doc/guix.texi:22865 msgid "sdbox and mdbox support saving mail attachments to external files, which also allows single instance storage for them. Other backends don't support this for now." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22505 +#: guix-git/doc/guix.texi:22867 msgid "WARNING: This feature hasn't been tested much yet. Use at your own risk." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22508 +#: guix-git/doc/guix.texi:22870 msgid "Directory root where to store mail attachments. Disabled, if empty. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22510 +#: guix-git/doc/guix.texi:22872 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-attachment-min-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22515 +#: guix-git/doc/guix.texi:22877 msgid "Attachments smaller than this aren't saved externally. It's also possible to write a plugin to disable saving specific attachments externally. Defaults to @samp{128000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22517 +#: guix-git/doc/guix.texi:22879 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-fs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22519 +#: guix-git/doc/guix.texi:22881 msgid "File system backend to use for saving attachments:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22520 +#: guix-git/doc/guix.texi:22882 #, no-wrap msgid "posix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22522 +#: guix-git/doc/guix.texi:22884 msgid "No SiS done by Dovecot (but this might help FS's own deduplication)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22522 +#: guix-git/doc/guix.texi:22884 #, no-wrap msgid "sis posix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22524 +#: guix-git/doc/guix.texi:22886 msgid "SiS with immediate byte-by-byte comparison during saving" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22524 +#: guix-git/doc/guix.texi:22886 #, no-wrap msgid "sis-queue posix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22526 +#: guix-git/doc/guix.texi:22888 msgid "SiS with delayed comparison and deduplication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22528 +#: guix-git/doc/guix.texi:22890 msgid "Defaults to @samp{\"sis posix\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22530 +#: guix-git/doc/guix.texi:22892 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-hash" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22536 +#: guix-git/doc/guix.texi:22898 msgid "Hash format to use in attachment filenames. You can add any text and variables: @code{%@{md4@}}, @code{%@{md5@}}, @code{%@{sha1@}}, @code{%@{sha256@}}, @code{%@{sha512@}}, @code{%@{size@}}. Variables can be truncated, e.g.@: @code{%@{sha256:80@}} returns only first 80 bits. Defaults to @samp{\"%@{sha1@}\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22538 +#: guix-git/doc/guix.texi:22900 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-process-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22543 +#: guix-git/doc/guix.texi:22905 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-client-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22546 guix-git/doc/guix.texi:30171 +#: guix-git/doc/guix.texi:22908 guix-git/doc/guix.texi:30536 msgid "Defaults to @samp{1000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22548 +#: guix-git/doc/guix.texi:22910 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-vsz-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22553 +#: guix-git/doc/guix.texi:22915 msgid "Default VSZ (virtual memory size) limit for service processes. This is mainly intended to catch and kill processes that leak memory before they eat up everything. Defaults to @samp{256000000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22555 +#: guix-git/doc/guix.texi:22917 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string default-login-user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22560 +#: guix-git/doc/guix.texi:22922 msgid "Login user is internally used by login processes. This is the most untrusted user in Dovecot system. It shouldn't have access to anything at all. Defaults to @samp{\"dovenull\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22562 +#: guix-git/doc/guix.texi:22924 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string default-internal-user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22567 +#: guix-git/doc/guix.texi:22929 msgid "Internal user is used by unprivileged processes. It should be separate from login user, so that login processes can't disturb other processes. Defaults to @samp{\"dovecot\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22569 +#: guix-git/doc/guix.texi:22931 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string ssl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22572 +#: guix-git/doc/guix.texi:22934 msgid "SSL/TLS support: yes, no, required. . Defaults to @samp{\"required\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22574 +#: guix-git/doc/guix.texi:22936 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string ssl-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22577 +#: guix-git/doc/guix.texi:22939 msgid "PEM encoded X.509 SSL/TLS certificate (public key). Defaults to @samp{\" was automatically rejected:%n%r\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22687 +#: guix-git/doc/guix.texi:23049 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string recipient-delimiter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22691 +#: guix-git/doc/guix.texi:23053 msgid "Delimiter character between local-part and detail in email address. Defaults to @samp{\"+\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22693 +#: guix-git/doc/guix.texi:23055 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string lda-original-recipient-header" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22699 +#: guix-git/doc/guix.texi:23061 msgid "Header where the original recipient address (SMTP's RCPT TO: address) is taken from if not available elsewhere. With dovecot-lda -a parameter overrides this. A commonly used header for this is X-Original-To. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22701 +#: guix-git/doc/guix.texi:23063 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean lda-mailbox-autocreate?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22705 +#: guix-git/doc/guix.texi:23067 msgid "Should saving a mail to a nonexistent mailbox automatically create it?. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22707 +#: guix-git/doc/guix.texi:23069 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean lda-mailbox-autosubscribe?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22711 +#: guix-git/doc/guix.texi:23073 msgid "Should automatically created mailboxes be also automatically subscribed?. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22713 +#: guix-git/doc/guix.texi:23075 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer imap-max-line-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22719 +#: guix-git/doc/guix.texi:23081 msgid "Maximum IMAP command line length. Some clients generate very long command lines with huge mailboxes, so you may need to raise this if you get \"Too long argument\" or \"IMAP command line too large\" errors often. Defaults to @samp{64000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22721 +#: guix-git/doc/guix.texi:23083 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-logout-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22723 +#: guix-git/doc/guix.texi:23085 msgid "IMAP logout format string:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22724 +#: guix-git/doc/guix.texi:23086 #, no-wrap msgid "%i" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22726 +#: guix-git/doc/guix.texi:23088 msgid "total number of bytes read from client" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22726 +#: guix-git/doc/guix.texi:23088 #, no-wrap msgid "%o" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22728 +#: guix-git/doc/guix.texi:23090 msgid "total number of bytes sent to client." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22731 +#: guix-git/doc/guix.texi:23093 msgid "See @file{doc/wiki/Variables.txt} for a list of all the variables you can use. Defaults to @samp{\"in=%i out=%o deleted=%@{deleted@} expunged=%@{expunged@} trashed=%@{trashed@} hdr_count=%@{fetch_hdr_count@} hdr_bytes=%@{fetch_hdr_bytes@} body_count=%@{fetch_body_count@} body_bytes=%@{fetch_body_bytes@}\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22733 +#: guix-git/doc/guix.texi:23095 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-capability" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22737 +#: guix-git/doc/guix.texi:23099 msgid "Override the IMAP CAPABILITY response. If the value begins with '+', add the given capabilities on top of the defaults (e.g.@: +XFOO XBAR). Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22739 +#: guix-git/doc/guix.texi:23101 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-idle-notify-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22743 +#: guix-git/doc/guix.texi:23105 msgid "How long to wait between \"OK Still here\" notifications when client is IDLEing. Defaults to @samp{\"2 mins\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22745 +#: guix-git/doc/guix.texi:23107 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-id-send" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22751 +#: guix-git/doc/guix.texi:23113 msgid "ID field names and values to send to clients. Using * as the value makes Dovecot use the default value. The following fields have default values currently: name, version, os, os-version, support-url, support-email. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22753 +#: guix-git/doc/guix.texi:23115 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-id-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22756 +#: guix-git/doc/guix.texi:23118 msgid "ID fields sent by client to log. * means everything. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22758 +#: guix-git/doc/guix.texi:23120 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list imap-client-workarounds" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22760 +#: guix-git/doc/guix.texi:23122 msgid "Workarounds for various client bugs:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22762 +#: guix-git/doc/guix.texi:23124 #, no-wrap msgid "delay-newmail" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22769 +#: guix-git/doc/guix.texi:23131 msgid "Send EXISTS/RECENT new mail notifications only when replying to NOOP and CHECK commands. Some clients ignore them otherwise, for example OSX Mail (' before setting it here, to get a feel for which cipher suites you will get. After setting this option, it is recommend that you inspect your Murmur log to ensure that Murmur is using the cipher suites that you expected it to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24159 +#: guix-git/doc/guix.texi:24521 msgid "Note: Changing this option may impact the backwards compatibility of your Murmur server, and can remove the ability for older Mumble clients to be able to connect to it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:24160 +#: guix-git/doc/guix.texi:24522 #, no-wrap msgid "@code{public-registration} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:24162 +#: guix-git/doc/guix.texi:24524 msgid "Must be a @code{} record or @code{#f}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24167 +#: guix-git/doc/guix.texi:24529 msgid "You can optionally register your server in the public server list that the @code{mumble} client shows on startup. You cannot register your server if you have set a @code{server-password}, or set @code{allow-ping} to @code{#f}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24169 +#: guix-git/doc/guix.texi:24531 msgid "It might take a few hours until it shows up in the public list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:24170 guix-git/doc/guix.texi:26407 +#: guix-git/doc/guix.texi:24532 guix-git/doc/guix.texi:26744 #, no-wrap msgid "@code{file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:24172 +#: guix-git/doc/guix.texi:24534 msgid "Optional alternative override for this configuration." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24175 +#: guix-git/doc/guix.texi:24537 #, no-wrap msgid "{Data Type} murmur-public-registration-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24177 +#: guix-git/doc/guix.texi:24539 msgid "Configuration for public registration of a murmur service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24181 +#: guix-git/doc/guix.texi:24543 msgid "This is a display name for your server. Not to be confused with the hostname." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:24182 guix-git/doc/guix.texi:33135 -#: guix-git/doc/guix.texi:34304 +#: guix-git/doc/guix.texi:24544 guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:34743 #, no-wrap msgid "password" msgstr "" #. type: table -#: guix-git/doc/guix.texi:24185 +#: guix-git/doc/guix.texi:24547 msgid "A password to identify your registration. Subsequent updates will need the same password. Don't lose your password." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24189 +#: guix-git/doc/guix.texi:24551 msgid "This should be a @code{http://} or @code{https://} link to your web site." msgstr "" #. type: item -#: guix-git/doc/guix.texi:24190 guix-git/doc/guix.texi:27292 +#: guix-git/doc/guix.texi:24552 guix-git/doc/guix.texi:27629 #, no-wrap msgid "@code{hostname} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:24193 +#: guix-git/doc/guix.texi:24555 msgid "By default your server will be listed by its IP address. If it is set your server will be linked by this host name instead." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24203 +#: guix-git/doc/guix.texi:24565 msgid "The @code{(gnu services file-sharing)} module provides services that assist with transferring files over peer-to-peer file-sharing networks." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:24204 +#: guix-git/doc/guix.texi:24566 #, no-wrap msgid "Transmission Daemon Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24212 +#: guix-git/doc/guix.texi:24574 msgid "@uref{https://transmissionbt.com/, Transmission} is a flexible BitTorrent client that offers a variety of graphical and command-line interfaces. A @code{transmission-daemon-service-type} service provides Transmission's headless variant, @command{transmission-daemon}, as a system service, allowing users to share files via BitTorrent even when they are not logged in." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24213 +#: guix-git/doc/guix.texi:24575 #, no-wrap msgid "{Scheme Variable} transmission-daemon-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24217 +#: guix-git/doc/guix.texi:24579 msgid "The service type for the Transmission Daemon BitTorrent client. Its value must be a @code{transmission-daemon-configuration} object as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24228 +#: guix-git/doc/guix.texi:24590 #, no-wrap msgid "" "(service transmission-daemon-service-type\n" @@ -43431,7 +44040,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24233 +#: guix-git/doc/guix.texi:24595 #, no-wrap msgid "" " ;; Accept requests from this and other hosts on the\n" @@ -43442,7 +44051,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24237 +#: guix-git/doc/guix.texi:24599 #, no-wrap msgid "" " ;; Limit bandwidth use during work hours\n" @@ -43452,7 +44061,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24244 +#: guix-git/doc/guix.texi:24606 #, no-wrap msgid "" " (alt-speed-time-enabled? #t)\n" @@ -43464,49 +44073,49 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24257 +#: guix-git/doc/guix.texi:24619 msgid "Once the service is started, users can interact with the daemon through its Web interface (at @code{http://localhost:9091/}) or by using the @command{transmission-remote} command-line tool, available in the @code{transmission} package. (Emacs users may want to also consider the @code{emacs-transmission} package.) Both communicate with the daemon through its remote procedure call (RPC) interface, which by default is available to all users on the system; you may wish to change this by assigning values to the @code{rpc-authentication-required?}, @code{rpc-username} and @code{rpc-password} settings, as shown in the example above and documented further below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24265 +#: guix-git/doc/guix.texi:24627 msgid "The value for @code{rpc-password} must be a password hash of the type generated and used by Transmission clients. This can be copied verbatim from an existing @file{settings.json} file, if another Transmission client is already being used. Otherwise, the @code{transmission-password-hash} and @code{transmission-random-salt} procedures provided by this module can be used to obtain a suitable hash value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24266 +#: guix-git/doc/guix.texi:24628 #, no-wrap msgid "{Scheme Procedure} transmission-password-hash @var{password} @var{salt}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24270 +#: guix-git/doc/guix.texi:24632 msgid "Returns a string containing the result of hashing @var{password} together with @var{salt}, in the format recognized by Transmission clients for their @code{rpc-password} configuration setting." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24274 +#: guix-git/doc/guix.texi:24636 msgid "@var{salt} must be an eight-character string. The @code{transmission-random-salt} procedure can be used to generate a suitable salt value at random." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24276 +#: guix-git/doc/guix.texi:24638 #, no-wrap msgid "{Scheme Procedure} transmission-random-salt" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24280 +#: guix-git/doc/guix.texi:24642 msgid "Returns a string containing a random, eight-character salt value of the type generated and used by Transmission clients, suitable for passing to the @code{transmission-password-hash} procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24286 +#: guix-git/doc/guix.texi:24648 msgid "These procedures are accessible from within a Guile REPL started with the @command{guix repl} command (@pxref{Invoking guix repl}). This is useful for obtaining a random salt value to provide as the second parameter to `transmission-password-hash`, as in this example session:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:24292 +#: guix-git/doc/guix.texi:24654 #, no-wrap msgid "" "$ guix repl\n" @@ -43516,12 +44125,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24295 +#: guix-git/doc/guix.texi:24657 msgid "Alternatively, a complete password hash can generated in a single step:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:24300 +#: guix-git/doc/guix.texi:24662 #, no-wrap msgid "" "scheme@@(guix-user)> (transmission-password-hash \"transmission\"\n" @@ -43530,480 +44139,480 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24305 +#: guix-git/doc/guix.texi:24667 msgid "The resulting string can be used as-is for the value of @code{rpc-password}, allowing the password to be kept hidden even in the operating-system configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24314 +#: guix-git/doc/guix.texi:24676 msgid "Torrent files downloaded by the daemon are directly accessible only to users in the ``transmission'' user group, who receive read-only access to the directory specified by the @code{download-dir} configuration setting (and also the directory specified by @code{incomplete-dir}, if @code{incomplete-dir-enabled?} is @code{#t}). Downloaded files can be moved to another directory or deleted altogether using @command{transmission-remote} with its @code{--move} and @code{--remove-and-delete} options." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24321 +#: guix-git/doc/guix.texi:24683 msgid "If the @code{watch-dir-enabled?} setting is set to @code{#t}, users in the ``transmission'' group are able also to place @file{.torrent} files in the directory specified by @code{watch-dir} to have the corresponding torrents added by the daemon. (The @code{trash-original-torrent-files?} setting controls whether the daemon deletes these files after processing them.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24326 +#: guix-git/doc/guix.texi:24688 msgid "Some of the daemon's configuration settings can be changed temporarily by @command{transmission-remote} and similar tools. To undo these changes, use the service's @code{reload} action to have the daemon reload its settings from disk:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:24329 +#: guix-git/doc/guix.texi:24691 #, no-wrap msgid "# herd reload transmission-daemon\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24333 +#: guix-git/doc/guix.texi:24695 msgid "The full set of available configuration settings is defined by the @code{transmission-daemon-configuration} data type." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24334 +#: guix-git/doc/guix.texi:24696 #, no-wrap msgid "{Data Type} transmission-daemon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24338 +#: guix-git/doc/guix.texi:24700 msgid "The data type representing configuration settings for Transmission Daemon. These correspond directly to the settings recognized by Transmission clients in their @file{settings.json} file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24352 +#: guix-git/doc/guix.texi:24714 msgid "Available @code{transmission-daemon-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24353 +#: guix-git/doc/guix.texi:24715 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} package transmission" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24355 +#: guix-git/doc/guix.texi:24717 msgid "The Transmission package to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24358 +#: guix-git/doc/guix.texi:24720 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer stop-wait-period" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24364 +#: guix-git/doc/guix.texi:24726 msgid "The period, in seconds, to wait when stopping the service for @command{transmission-daemon} to exit before killing its process. This allows the daemon time to complete its housekeeping and send a final update to trackers as it shuts down. On slow hosts, or hosts with a slow network connection, this value may need to be increased." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24366 guix-git/doc/guix.texi:24738 -#: guix-git/doc/guix.texi:32101 guix-git/doc/guix.texi:32336 -#: guix-git/doc/guix.texi:32344 guix-git/doc/guix.texi:32352 +#: guix-git/doc/guix.texi:24728 guix-git/doc/guix.texi:25100 +#: guix-git/doc/guix.texi:32466 guix-git/doc/guix.texi:32701 +#: guix-git/doc/guix.texi:32709 guix-git/doc/guix.texi:32717 msgid "Defaults to @samp{10}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24369 +#: guix-git/doc/guix.texi:24731 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string download-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24371 +#: guix-git/doc/guix.texi:24733 msgid "The directory to which torrent files are downloaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24373 +#: guix-git/doc/guix.texi:24735 msgid "Defaults to @samp{\"/var/lib/transmission-daemon/downloads\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24376 +#: guix-git/doc/guix.texi:24738 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean incomplete-dir-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24381 +#: guix-git/doc/guix.texi:24743 msgid "If @code{#t}, files will be held in @code{incomplete-dir} while their torrent is being downloaded, then moved to @code{download-dir} once the torrent is complete. Otherwise, files for all torrents (including those still being downloaded) will be placed in @code{download-dir}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24386 +#: guix-git/doc/guix.texi:24748 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string incomplete-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24389 +#: guix-git/doc/guix.texi:24751 msgid "The directory in which files from incompletely downloaded torrents will be held when @code{incomplete-dir-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24394 +#: guix-git/doc/guix.texi:24756 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} umask umask" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24397 +#: guix-git/doc/guix.texi:24759 msgid "The file mode creation mask used for downloaded files. (See the @command{umask} man page for more information.)" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24399 +#: guix-git/doc/guix.texi:24761 msgid "Defaults to @samp{18}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24402 +#: guix-git/doc/guix.texi:24764 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rename-partial-files?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24405 +#: guix-git/doc/guix.texi:24767 msgid "When @code{#t}, ``.part'' is appended to the name of partially downloaded files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24410 +#: guix-git/doc/guix.texi:24772 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} preallocation-mode preallocation" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24415 +#: guix-git/doc/guix.texi:24777 msgid "The mode by which space should be preallocated for downloaded files, one of @code{none}, @code{fast} (or @code{sparse}) and @code{full}. Specifying @code{full} will minimize disk fragmentation at a cost to file-creation speed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24417 +#: guix-git/doc/guix.texi:24779 msgid "Defaults to @samp{fast}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24420 +#: guix-git/doc/guix.texi:24782 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean watch-dir-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24425 +#: guix-git/doc/guix.texi:24787 msgid "If @code{#t}, the directory specified by @code{watch-dir} will be watched for new @file{.torrent} files and the torrents they describe added automatically (and the original files removed, if @code{trash-original-torrent-files?} is @code{#t})." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24430 +#: guix-git/doc/guix.texi:24792 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string watch-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24433 +#: guix-git/doc/guix.texi:24795 msgid "The directory to be watched for @file{.torrent} files indicating new torrents to be added, when @code{watch-dir-enabled} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24438 +#: guix-git/doc/guix.texi:24800 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean trash-original-torrent-files?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24442 +#: guix-git/doc/guix.texi:24804 msgid "When @code{#t}, @file{.torrent} files will be deleted from the watch directory once their torrent has been added (see @code{watch-directory-enabled?})." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24447 +#: guix-git/doc/guix.texi:24809 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean speed-limit-down-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24450 +#: guix-git/doc/guix.texi:24812 msgid "When @code{#t}, the daemon's download speed will be limited to the rate specified by @code{speed-limit-down}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24455 +#: guix-git/doc/guix.texi:24817 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer speed-limit-down" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24457 +#: guix-git/doc/guix.texi:24819 msgid "The default global-maximum download speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24462 +#: guix-git/doc/guix.texi:24824 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean speed-limit-up-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24465 +#: guix-git/doc/guix.texi:24827 msgid "When @code{#t}, the daemon's upload speed will be limited to the rate specified by @code{speed-limit-up}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24470 +#: guix-git/doc/guix.texi:24832 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer speed-limit-up" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24472 +#: guix-git/doc/guix.texi:24834 msgid "The default global-maximum upload speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24477 +#: guix-git/doc/guix.texi:24839 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean alt-speed-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24483 +#: guix-git/doc/guix.texi:24845 msgid "When @code{#t}, the alternate speed limits @code{alt-speed-down} and @code{alt-speed-up} are used (in place of @code{speed-limit-down} and @code{speed-limit-up}, if they are enabled) to constrain the daemon's bandwidth usage. This can be scheduled to occur automatically at certain times during the week; see @code{alt-speed-time-enabled?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24488 +#: guix-git/doc/guix.texi:24850 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-down" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24490 +#: guix-git/doc/guix.texi:24852 msgid "The alternate global-maximum download speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24492 guix-git/doc/guix.texi:24499 -#: guix-git/doc/guix.texi:24671 guix-git/doc/guix.texi:32108 -#: guix-git/doc/guix.texi:32123 +#: guix-git/doc/guix.texi:24854 guix-git/doc/guix.texi:24861 +#: guix-git/doc/guix.texi:25033 guix-git/doc/guix.texi:32473 +#: guix-git/doc/guix.texi:32488 msgid "Defaults to @samp{50}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24495 +#: guix-git/doc/guix.texi:24857 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-up" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24497 +#: guix-git/doc/guix.texi:24859 msgid "The alternate global-maximum upload speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24502 +#: guix-git/doc/guix.texi:24864 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean alt-speed-time-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24507 +#: guix-git/doc/guix.texi:24869 msgid "When @code{#t}, the alternate speed limits @code{alt-speed-down} and @code{alt-speed-up} will be enabled automatically during the periods specified by @code{alt-speed-time-day}, @code{alt-speed-time-begin} and @code{alt-time-speed-end}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24512 +#: guix-git/doc/guix.texi:24874 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} day-list alt-speed-time-day" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24517 +#: guix-git/doc/guix.texi:24879 msgid "The days of the week on which the alternate-speed schedule should be used, specified either as a list of days (@code{sunday}, @code{monday}, and so on) or using one of the symbols @code{weekdays}, @code{weekends} or @code{all}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24519 +#: guix-git/doc/guix.texi:24881 msgid "Defaults to @samp{all}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24522 +#: guix-git/doc/guix.texi:24884 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-time-begin" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24525 +#: guix-git/doc/guix.texi:24887 msgid "The time of day at which to enable the alternate speed limits, expressed as a number of minutes since midnight." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24527 +#: guix-git/doc/guix.texi:24889 msgid "Defaults to @samp{540}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24530 +#: guix-git/doc/guix.texi:24892 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-time-end" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24533 +#: guix-git/doc/guix.texi:24895 msgid "The time of day at which to disable the alternate speed limits, expressed as a number of minutes since midnight." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24535 +#: guix-git/doc/guix.texi:24897 msgid "Defaults to @samp{1020}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24538 +#: guix-git/doc/guix.texi:24900 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string bind-address-ipv4" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24541 +#: guix-git/doc/guix.texi:24903 msgid "The IP address at which to listen for peer connections, or ``0.0.0.0'' to listen at all available IP addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24543 guix-git/doc/guix.texi:24846 -#: guix-git/doc/guix.texi:29969 +#: guix-git/doc/guix.texi:24905 guix-git/doc/guix.texi:25208 +#: guix-git/doc/guix.texi:30334 msgid "Defaults to @samp{\"0.0.0.0\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24546 +#: guix-git/doc/guix.texi:24908 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string bind-address-ipv6" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24549 +#: guix-git/doc/guix.texi:24911 msgid "The IPv6 address at which to listen for peer connections, or ``::'' to listen at all available IPv6 addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24551 +#: guix-git/doc/guix.texi:24913 msgid "Defaults to @samp{\"::\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24554 +#: guix-git/doc/guix.texi:24916 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean peer-port-random-on-start?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24560 +#: guix-git/doc/guix.texi:24922 msgid "If @code{#t}, when the daemon starts it will select a port at random on which to listen for peer connections, from the range specified (inclusively) by @code{peer-port-random-low} and @code{peer-port-random-high}. Otherwise, it listens on the port specified by @code{peer-port}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24565 +#: guix-git/doc/guix.texi:24927 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port-random-low" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24568 +#: guix-git/doc/guix.texi:24930 msgid "The lowest selectable port number when @code{peer-port-random-on-start?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24570 +#: guix-git/doc/guix.texi:24932 msgid "Defaults to @samp{49152}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24573 +#: guix-git/doc/guix.texi:24935 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port-random-high" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24576 +#: guix-git/doc/guix.texi:24938 msgid "The highest selectable port number when @code{peer-port-random-on-start} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24578 +#: guix-git/doc/guix.texi:24940 msgid "Defaults to @samp{65535}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24581 +#: guix-git/doc/guix.texi:24943 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24584 +#: guix-git/doc/guix.texi:24946 msgid "The port on which to listen for peer connections when @code{peer-port-random-on-start?} is @code{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24586 +#: guix-git/doc/guix.texi:24948 msgid "Defaults to @samp{51413}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24589 +#: guix-git/doc/guix.texi:24951 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean port-forwarding-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24593 +#: guix-git/doc/guix.texi:24955 msgid "If @code{#t}, the daemon will attempt to configure port-forwarding on an upstream gateway automatically using @acronym{UPnP} and @acronym{NAT-PMP}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24598 +#: guix-git/doc/guix.texi:24960 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} encryption-mode encryption" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24603 +#: guix-git/doc/guix.texi:24965 msgid "The encryption preference for peer connections, one of @code{prefer-unencrypted-connections}, @code{prefer-encrypted-connections} or @code{require-encrypted-connections}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24605 +#: guix-git/doc/guix.texi:24967 msgid "Defaults to @samp{prefer-encrypted-connections}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24608 +#: guix-git/doc/guix.texi:24970 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string peer-congestion-algorithm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24613 +#: guix-git/doc/guix.texi:24975 msgid "The TCP congestion-control algorithm to use for peer connections, specified using a string recognized by the operating system in calls to @code{setsockopt} (or set to @code{disabled}, in which case the operating-system default is used)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24622 +#: guix-git/doc/guix.texi:24984 msgid "Note that on GNU/Linux systems, the kernel must be configured to allow processes to use a congestion-control algorithm not in the default set; otherwise, it will deny these requests with ``Operation not permitted''. To see which algorithms are available on your system and which are currently permitted for use, look at the contents of the files @file{tcp_available_congestion_control} and @file{tcp_allowed_congestion_control} in the @file{/proc/sys/net/ipv4} directory." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24630 +#: guix-git/doc/guix.texi:24992 msgid "As an example, to have Transmission Daemon use @uref{http://www-ece.rice.edu/networks/TCP-LP/,the TCP Low Priority congestion-control algorithm}, you'll need to modify your kernel configuration to build in support for the algorithm, then update your operating-system configuration to allow its use by adding a @code{sysctl-service-type} service (or updating the existing one's configuration) with lines like the following:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24637 +#: guix-git/doc/guix.texi:24999 #, no-wrap msgid "" "(service sysctl-service-type\n" @@ -44014,529 +44623,529 @@ msgid "" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24640 +#: guix-git/doc/guix.texi:25002 msgid "The Transmission Daemon configuration can then be updated with" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24643 +#: guix-git/doc/guix.texi:25005 #, no-wrap msgid "(peer-congestion-algorithm \"lp\")\n" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24646 +#: guix-git/doc/guix.texi:25008 msgid "and the system reconfigured to have the changes take effect." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24651 +#: guix-git/doc/guix.texi:25013 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} tcp-type-of-service peer-socket-tos" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24655 +#: guix-git/doc/guix.texi:25017 msgid "The type of service to request in outgoing @acronym{TCP} packets, one of @code{default}, @code{low-cost}, @code{throughput}, @code{low-delay} and @code{reliability}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24657 +#: guix-git/doc/guix.texi:25019 msgid "Defaults to @samp{default}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24660 +#: guix-git/doc/guix.texi:25022 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-limit-global" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24662 +#: guix-git/doc/guix.texi:25024 msgid "The global limit on the number of connected peers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24664 +#: guix-git/doc/guix.texi:25026 msgid "Defaults to @samp{200}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24667 +#: guix-git/doc/guix.texi:25029 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-limit-per-torrent" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24669 +#: guix-git/doc/guix.texi:25031 msgid "The per-torrent limit on the number of connected peers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24674 +#: guix-git/doc/guix.texi:25036 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer upload-slots-per-torrent" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24677 +#: guix-git/doc/guix.texi:25039 msgid "The maximum number of peers to which the daemon will upload data simultaneously for each torrent." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24679 +#: guix-git/doc/guix.texi:25041 msgid "Defaults to @samp{14}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24682 +#: guix-git/doc/guix.texi:25044 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-id-ttl-hours" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24685 +#: guix-git/doc/guix.texi:25047 msgid "The maximum lifespan, in hours, of the peer ID associated with each public torrent before it is regenerated." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24687 +#: guix-git/doc/guix.texi:25049 msgid "Defaults to @samp{6}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24690 +#: guix-git/doc/guix.texi:25052 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean blocklist-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24693 +#: guix-git/doc/guix.texi:25055 msgid "When @code{#t}, the daemon will ignore peers mentioned in the blocklist it has most recently downloaded from @code{blocklist-url}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24698 +#: guix-git/doc/guix.texi:25060 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string blocklist-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24702 +#: guix-git/doc/guix.texi:25064 msgid "The URL of a peer blocklist (in @acronym{P2P}-plaintext or eMule @file{.dat} format) to be periodically downloaded and applied when @code{blocklist-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24707 +#: guix-git/doc/guix.texi:25069 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean download-queue-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24710 +#: guix-git/doc/guix.texi:25072 msgid "If @code{#t}, the daemon will be limited to downloading at most @code{download-queue-size} non-stalled torrents simultaneously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24715 +#: guix-git/doc/guix.texi:25077 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer download-queue-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24719 +#: guix-git/doc/guix.texi:25081 msgid "The size of the daemon's download queue, which limits the number of non-stalled torrents it will download at any one time when @code{download-queue-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24724 +#: guix-git/doc/guix.texi:25086 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean seed-queue-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24727 +#: guix-git/doc/guix.texi:25089 msgid "If @code{#t}, the daemon will be limited to seeding at most @code{seed-queue-size} non-stalled torrents simultaneously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24732 +#: guix-git/doc/guix.texi:25094 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer seed-queue-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24736 +#: guix-git/doc/guix.texi:25098 msgid "The size of the daemon's seed queue, which limits the number of non-stalled torrents it will seed at any one time when @code{seed-queue-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24741 +#: guix-git/doc/guix.texi:25103 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean queue-stalled-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24746 +#: guix-git/doc/guix.texi:25108 msgid "When @code{#t}, the daemon will consider torrents for which it has not shared data in the past @code{queue-stalled-minutes} minutes to be stalled and not count them against its @code{download-queue-size} and @code{seed-queue-size} limits." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24751 +#: guix-git/doc/guix.texi:25113 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer queue-stalled-minutes" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24755 +#: guix-git/doc/guix.texi:25117 msgid "The maximum period, in minutes, a torrent may be idle before it is considered to be stalled, when @code{queue-stalled-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24760 +#: guix-git/doc/guix.texi:25122 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean ratio-limit-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24763 +#: guix-git/doc/guix.texi:25125 msgid "When @code{#t}, a torrent being seeded will automatically be paused once it reaches the ratio specified by @code{ratio-limit}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24768 +#: guix-git/doc/guix.texi:25130 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-rational ratio-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24771 +#: guix-git/doc/guix.texi:25133 msgid "The ratio at which a torrent being seeded will be paused, when @code{ratio-limit-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24773 +#: guix-git/doc/guix.texi:25135 msgid "Defaults to @samp{2.0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24776 +#: guix-git/doc/guix.texi:25138 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean idle-seeding-limit-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24779 +#: guix-git/doc/guix.texi:25141 msgid "When @code{#t}, a torrent being seeded will automatically be paused once it has been idle for @code{idle-seeding-limit} minutes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24784 +#: guix-git/doc/guix.texi:25146 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer idle-seeding-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24788 +#: guix-git/doc/guix.texi:25150 msgid "The maximum period, in minutes, a torrent being seeded may be idle before it is paused, when @code{idle-seeding-limit-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24793 +#: guix-git/doc/guix.texi:25155 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean dht-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24797 +#: guix-git/doc/guix.texi:25159 msgid "Enable @uref{http://bittorrent.org/beps/bep_0005.html,the distributed hash table (@acronym{DHT}) protocol}, which supports the use of trackerless torrents." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24802 +#: guix-git/doc/guix.texi:25164 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean lpd-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24807 +#: guix-git/doc/guix.texi:25169 msgid "Enable @uref{https://en.wikipedia.org/wiki/Local_Peer_Discovery,local peer discovery} (@acronym{LPD}), which allows the discovery of peers on the local network and may reduce the amount of data sent over the public Internet." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24812 +#: guix-git/doc/guix.texi:25174 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean pex-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24816 +#: guix-git/doc/guix.texi:25178 msgid "Enable @uref{https://en.wikipedia.org/wiki/Peer_exchange,peer exchange} (@acronym{PEX}), which reduces the daemon's reliance on external trackers and may improve its performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24821 +#: guix-git/doc/guix.texi:25183 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean utp-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24826 +#: guix-git/doc/guix.texi:25188 msgid "Enable @uref{http://bittorrent.org/beps/bep_0029.html,the micro transport protocol} (@acronym{uTP}), which aims to reduce the impact of BitTorrent traffic on other users of the local network while maintaining full utilization of the available bandwidth." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24831 +#: guix-git/doc/guix.texi:25193 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24836 +#: guix-git/doc/guix.texi:25198 msgid "If @code{#t}, enable the remote procedure call (@acronym{RPC}) interface, which allows remote control of the daemon via its Web interface, the @command{transmission-remote} command-line client, and similar tools." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24841 +#: guix-git/doc/guix.texi:25203 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string rpc-bind-address" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24844 +#: guix-git/doc/guix.texi:25206 msgid "The IP address at which to listen for @acronym{RPC} connections, or ``0.0.0.0'' to listen at all available IP addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24849 +#: guix-git/doc/guix.texi:25211 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number rpc-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24851 +#: guix-git/doc/guix.texi:25213 msgid "The port on which to listen for @acronym{RPC} connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24853 +#: guix-git/doc/guix.texi:25215 msgid "Defaults to @samp{9091}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24856 +#: guix-git/doc/guix.texi:25218 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string rpc-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24858 +#: guix-git/doc/guix.texi:25220 msgid "The path prefix to use in the @acronym{RPC}-endpoint @acronym{URL}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24860 +#: guix-git/doc/guix.texi:25222 msgid "Defaults to @samp{\"/transmission/\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24863 +#: guix-git/doc/guix.texi:25225 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-authentication-required?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24868 +#: guix-git/doc/guix.texi:25230 msgid "When @code{#t}, clients must authenticate (see @code{rpc-username} and @code{rpc-password}) when using the @acronym{RPC} interface. Note this has the side effect of disabling host-name whitelisting (see @code{rpc-host-whitelist-enabled?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24873 +#: guix-git/doc/guix.texi:25235 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string rpc-username" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24876 +#: guix-git/doc/guix.texi:25238 msgid "The username required by clients to access the @acronym{RPC} interface when @code{rpc-authentication-required?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24881 +#: guix-git/doc/guix.texi:25243 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-transmission-password-hash rpc-password" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24887 +#: guix-git/doc/guix.texi:25249 msgid "The password required by clients to access the @acronym{RPC} interface when @code{rpc-authentication-required?} is @code{#t}. This must be specified using a password hash in the format recognized by Transmission clients, either copied from an existing @file{settings.json} file or generated using the @code{transmission-password-hash} procedure." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24892 +#: guix-git/doc/guix.texi:25254 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-whitelist-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24895 +#: guix-git/doc/guix.texi:25257 msgid "When @code{#t}, @acronym{RPC} requests will be accepted only when they originate from an address specified in @code{rpc-whitelist}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24900 +#: guix-git/doc/guix.texi:25262 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string-list rpc-whitelist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24904 +#: guix-git/doc/guix.texi:25266 msgid "The list of IP and IPv6 addresses from which @acronym{RPC} requests will be accepted when @code{rpc-whitelist-enabled?} is @code{#t}. Wildcards may be specified using @samp{*}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24906 +#: guix-git/doc/guix.texi:25268 msgid "Defaults to @samp{(\"127.0.0.1\" \"::1\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24909 +#: guix-git/doc/guix.texi:25271 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-host-whitelist-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24914 +#: guix-git/doc/guix.texi:25276 msgid "When @code{#t}, @acronym{RPC} requests will be accepted only when they are addressed to a host named in @code{rpc-host-whitelist}. Note that requests to ``localhost'' or ``localhost.'', or to a numeric address, are always accepted regardless of these settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24917 +#: guix-git/doc/guix.texi:25279 msgid "Note also this functionality is disabled when @code{rpc-authentication-required?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24922 +#: guix-git/doc/guix.texi:25284 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string-list rpc-host-whitelist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24925 +#: guix-git/doc/guix.texi:25287 msgid "The list of host names recognized by the @acronym{RPC} server when @code{rpc-host-whitelist-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24930 +#: guix-git/doc/guix.texi:25292 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} message-level message-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24934 +#: guix-git/doc/guix.texi:25296 msgid "The minimum severity level of messages to be logged (to @file{/var/log/transmission.log}) by the daemon, one of @code{none} (no logging), @code{error}, @code{info} and @code{debug}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24939 +#: guix-git/doc/guix.texi:25301 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean start-added-torrents?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24942 +#: guix-git/doc/guix.texi:25304 msgid "When @code{#t}, torrents are started as soon as they are added; otherwise, they are added in ``paused'' state." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24947 +#: guix-git/doc/guix.texi:25309 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean script-torrent-done-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24951 +#: guix-git/doc/guix.texi:25313 msgid "When @code{#t}, the script specified by @code{script-torrent-done-filename} will be invoked each time a torrent completes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24956 +#: guix-git/doc/guix.texi:25318 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-file-object script-torrent-done-filename" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24960 +#: guix-git/doc/guix.texi:25322 msgid "A file name or file-like object specifying a script to run each time a torrent completes, when @code{script-torrent-done-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24965 +#: guix-git/doc/guix.texi:25327 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean scrape-paused-torrents-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24968 +#: guix-git/doc/guix.texi:25330 msgid "When @code{#t}, the daemon will scrape trackers for a torrent even when the torrent is paused." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24973 +#: guix-git/doc/guix.texi:25335 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer cache-size-mb" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24977 +#: guix-git/doc/guix.texi:25339 msgid "The amount of memory, in megabytes, to allocate for the daemon's in-memory cache. A larger value may increase performance by reducing the frequency of disk I/O." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24979 +#: guix-git/doc/guix.texi:25341 msgid "Defaults to @samp{4}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24982 +#: guix-git/doc/guix.texi:25344 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean prefetch-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24986 +#: guix-git/doc/guix.texi:25348 msgid "When @code{#t}, the daemon will try to improve I/O performance by hinting to the operating system which data is likely to be read next from disk to satisfy requests from peers." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:24999 +#: guix-git/doc/guix.texi:25361 #, no-wrap msgid "Tailon Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25003 +#: guix-git/doc/guix.texi:25365 msgid "@uref{https://tailon.readthedocs.io/, Tailon} is a web application for viewing and searching log files." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25006 +#: guix-git/doc/guix.texi:25368 msgid "The following example will configure the service with default values. By default, Tailon can be accessed on port 8080 (@code{http://localhost:8080})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25009 +#: guix-git/doc/guix.texi:25371 #, no-wrap msgid "(service tailon-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25013 +#: guix-git/doc/guix.texi:25375 msgid "The following example customises more of the Tailon configuration, adding @command{sed} to the list of allowed commands." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25020 +#: guix-git/doc/guix.texi:25382 #, no-wrap msgid "" "(service tailon-service-type\n" @@ -44547,34 +45156,34 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25023 +#: guix-git/doc/guix.texi:25385 #, no-wrap msgid "{Data Type} tailon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25026 +#: guix-git/doc/guix.texi:25388 msgid "Data type representing the configuration of Tailon. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25028 +#: guix-git/doc/guix.texi:25390 #, no-wrap msgid "@code{config-file} (default: @code{(tailon-configuration-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25032 +#: guix-git/doc/guix.texi:25394 msgid "The configuration file to use for Tailon. This can be set to a @dfn{tailon-configuration-file} record value, or any gexp (@pxref{G-Expressions})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25035 +#: guix-git/doc/guix.texi:25397 msgid "For example, to instead use a local file, the @code{local-file} function can be used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25040 +#: guix-git/doc/guix.texi:25402 #, no-wrap msgid "" "(service tailon-service-type\n" @@ -44583,144 +45192,144 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25042 +#: guix-git/doc/guix.texi:25404 #, no-wrap msgid "@code{package} (default: @code{tailon})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25044 +#: guix-git/doc/guix.texi:25406 msgid "The tailon package to use." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25048 +#: guix-git/doc/guix.texi:25410 #, no-wrap msgid "{Data Type} tailon-configuration-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25051 +#: guix-git/doc/guix.texi:25413 msgid "Data type representing the configuration options for Tailon. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25053 +#: guix-git/doc/guix.texi:25415 #, no-wrap msgid "@code{files} (default: @code{(list \"/var/log\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25058 +#: guix-git/doc/guix.texi:25420 msgid "List of files to display. The list can include strings for a single file or directory, or a list, where the first item is the name of a subsection, and the remaining items are the files or directories in that subsection." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25059 +#: guix-git/doc/guix.texi:25421 #, no-wrap msgid "@code{bind} (default: @code{\"localhost:8080\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25061 +#: guix-git/doc/guix.texi:25423 msgid "Address and port to which Tailon should bind on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25062 +#: guix-git/doc/guix.texi:25424 #, no-wrap msgid "@code{relative-root} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25064 +#: guix-git/doc/guix.texi:25426 msgid "URL path to use for Tailon, set to @code{#f} to not use a path." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25065 +#: guix-git/doc/guix.texi:25427 #, no-wrap msgid "@code{allow-transfers?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25067 +#: guix-git/doc/guix.texi:25429 msgid "Allow downloading the log files in the web interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25068 +#: guix-git/doc/guix.texi:25430 #, no-wrap msgid "@code{follow-names?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25070 +#: guix-git/doc/guix.texi:25432 msgid "Allow tailing of not-yet existent files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25071 +#: guix-git/doc/guix.texi:25433 #, no-wrap msgid "@code{tail-lines} (default: @code{200})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25073 +#: guix-git/doc/guix.texi:25435 msgid "Number of lines to read initially from each file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25074 +#: guix-git/doc/guix.texi:25436 #, no-wrap msgid "@code{allowed-commands} (default: @code{(list \"tail\" \"grep\" \"awk\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25076 +#: guix-git/doc/guix.texi:25438 msgid "Commands to allow running. By default, @code{sed} is disabled." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25079 +#: guix-git/doc/guix.texi:25441 msgid "Set @code{debug?} to @code{#t} to show debug messages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25080 +#: guix-git/doc/guix.texi:25442 #, no-wrap msgid "@code{wrap-lines} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25084 +#: guix-git/doc/guix.texi:25446 msgid "Initial line wrapping state in the web interface. Set to @code{#t} to initially wrap lines (the default), or to @code{#f} to initially not wrap lines." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25085 +#: guix-git/doc/guix.texi:25447 #, no-wrap msgid "@code{http-auth} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25089 +#: guix-git/doc/guix.texi:25451 msgid "HTTP authentication type to use. Set to @code{#f} to disable authentication (the default). Supported values are @code{\"digest\"} or @code{\"basic\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25090 +#: guix-git/doc/guix.texi:25452 #, no-wrap msgid "@code{users} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25095 +#: guix-git/doc/guix.texi:25457 msgid "If HTTP authentication is enabled (see @code{http-auth}), access will be restricted to the credentials provided here. To configure users, use a list of pairs, where the first element of the pair is the username, and the 2nd element of the pair is the password." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25101 +#: guix-git/doc/guix.texi:25463 #, no-wrap msgid "" "(tailon-configuration-file\n" @@ -44730,35 +45339,35 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25107 +#: guix-git/doc/guix.texi:25469 #, no-wrap msgid "Darkstat Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25108 +#: guix-git/doc/guix.texi:25470 #, no-wrap msgid "darkstat" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25111 +#: guix-git/doc/guix.texi:25473 msgid "Darkstat is a packet sniffer that captures network traffic, calculates statistics about usage, and serves reports over HTTP." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25112 +#: guix-git/doc/guix.texi:25474 #, no-wrap msgid "{Scheme Variable} darkstat-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25117 +#: guix-git/doc/guix.texi:25479 msgid "This is the service type for the @uref{https://unix4lyfe.org/darkstat/, darkstat} service, its value must be a @code{darkstat-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25122 +#: guix-git/doc/guix.texi:25484 #, no-wrap msgid "" "(service darkstat-service-type\n" @@ -44767,715 +45376,726 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25125 +#: guix-git/doc/guix.texi:25487 #, no-wrap msgid "{Data Type} darkstat-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25127 +#: guix-git/doc/guix.texi:25489 msgid "Data type representing the configuration of @command{darkstat}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25129 +#: guix-git/doc/guix.texi:25491 #, no-wrap msgid "@code{package} (default: @code{darkstat})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25131 +#: guix-git/doc/guix.texi:25493 msgid "The darkstat package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25132 +#: guix-git/doc/guix.texi:25494 #, no-wrap msgid "interface" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25134 +#: guix-git/doc/guix.texi:25496 msgid "Capture traffic on the specified network interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25135 +#: guix-git/doc/guix.texi:25497 #, no-wrap msgid "@code{port} (default: @code{\"667\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25137 +#: guix-git/doc/guix.texi:25499 msgid "Bind the web interface to the specified port." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25140 guix-git/doc/guix.texi:25175 +#: guix-git/doc/guix.texi:25502 guix-git/doc/guix.texi:25537 msgid "Bind the web interface to the specified address." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25141 +#: guix-git/doc/guix.texi:25503 #, no-wrap msgid "@code{base} (default: @code{\"/\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25144 +#: guix-git/doc/guix.texi:25506 msgid "Specify the path of the base URL@. This can be useful if @command{darkstat} is accessed via a reverse proxy." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25148 +#: guix-git/doc/guix.texi:25510 #, no-wrap msgid "Prometheus Node Exporter Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25150 +#: guix-git/doc/guix.texi:25512 #, no-wrap msgid "prometheus-node-exporter" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25155 +#: guix-git/doc/guix.texi:25517 msgid "The Prometheus ``node exporter'' makes hardware and operating system statistics provided by the Linux kernel available for the Prometheus monitoring system. This service should be deployed on all physical nodes and virtual machines, where monitoring these statistics is desirable." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25156 +#: guix-git/doc/guix.texi:25518 #, no-wrap msgid "{Scheme variable} prometheus-node-exporter-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25160 +#: guix-git/doc/guix.texi:25522 msgid "This is the service type for the @uref{https://github.com/prometheus/node_exporter/, prometheus-node-exporter} service, its value must be a @code{prometheus-node-exporter-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25163 +#: guix-git/doc/guix.texi:25525 #, no-wrap msgid "(service prometheus-node-exporter-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25166 +#: guix-git/doc/guix.texi:25528 #, no-wrap msgid "{Data Type} prometheus-node-exporter-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25168 +#: guix-git/doc/guix.texi:25530 msgid "Data type representing the configuration of @command{node_exporter}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25170 +#: guix-git/doc/guix.texi:25532 #, no-wrap msgid "@code{package} (default: @code{go-github-com-prometheus-node-exporter})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25172 +#: guix-git/doc/guix.texi:25534 msgid "The prometheus-node-exporter package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25173 +#: guix-git/doc/guix.texi:25535 #, no-wrap msgid "@code{web-listen-address} (default: @code{\":9100\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25176 +#: guix-git/doc/guix.texi:25538 #, no-wrap msgid "@code{textfile-directory} (default: @code{\"/var/lib/prometheus/node-exporter\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25180 +#: guix-git/doc/guix.texi:25542 msgid "This directory can be used to export metrics specific to this machine. Files containing metrics in the text format, with the filename ending in @code{.prom} should be placed in this directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25183 +#: guix-git/doc/guix.texi:25545 msgid "Extra options to pass to the Prometheus node exporter." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25187 +#: guix-git/doc/guix.texi:25549 #, no-wrap msgid "Zabbix server" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25188 +#: guix-git/doc/guix.texi:25550 #, no-wrap msgid "zabbix zabbix-server" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25191 +#: guix-git/doc/guix.texi:25553 msgid "Zabbix provides monitoring metrics, among others network utilization, CPU load and disk space consumption:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25193 +#: guix-git/doc/guix.texi:25555 #, no-wrap msgid "High performance, high capacity (able to monitor hundreds of thousands of devices)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25194 +#: guix-git/doc/guix.texi:25556 #, no-wrap msgid "Auto-discovery of servers and network devices and interfaces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25195 +#: guix-git/doc/guix.texi:25557 #, no-wrap msgid "Low-level discovery, allows to automatically start monitoring new items, file systems or network interfaces among others." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25196 +#: guix-git/doc/guix.texi:25558 #, no-wrap msgid "Distributed monitoring with centralized web administration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25197 +#: guix-git/doc/guix.texi:25559 #, no-wrap msgid "Native high performance agents." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25198 +#: guix-git/doc/guix.texi:25560 #, no-wrap msgid "SLA, and ITIL KPI metrics on reporting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25199 +#: guix-git/doc/guix.texi:25561 #, no-wrap msgid "High-level (business) view of monitored resources through user-defined visual console screens and dashboards." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25200 +#: guix-git/doc/guix.texi:25562 #, no-wrap msgid "Remote command execution through Zabbix proxies." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25206 +#: guix-git/doc/guix.texi:25568 msgid "Available @code{zabbix-server-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25207 +#: guix-git/doc/guix.texi:25569 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} package zabbix-server" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25209 +#: guix-git/doc/guix.texi:25571 msgid "The zabbix-server package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25212 +#: guix-git/doc/guix.texi:25574 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25214 +#: guix-git/doc/guix.texi:25576 msgid "User who will run the Zabbix server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25216 guix-git/doc/guix.texi:25223 -#: guix-git/doc/guix.texi:25237 guix-git/doc/guix.texi:25244 -#: guix-git/doc/guix.texi:25345 guix-git/doc/guix.texi:25352 -#: guix-git/doc/guix.texi:25463 guix-git/doc/guix.texi:25470 +#: guix-git/doc/guix.texi:25578 guix-git/doc/guix.texi:25585 +#: guix-git/doc/guix.texi:25599 guix-git/doc/guix.texi:25606 +#: guix-git/doc/guix.texi:25707 guix-git/doc/guix.texi:25714 msgid "Defaults to @samp{\"zabbix\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25219 +#: guix-git/doc/guix.texi:25581 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} group group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25221 +#: guix-git/doc/guix.texi:25583 msgid "Group who will run the Zabbix server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25226 +#: guix-git/doc/guix.texi:25588 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-host" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25228 guix-git/doc/guix.texi:25447 +#. type: table +#: guix-git/doc/guix.texi:25590 guix-git/doc/guix.texi:25813 msgid "Database host name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25230 +#: guix-git/doc/guix.texi:25592 msgid "Defaults to @samp{\"127.0.0.1\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25233 +#: guix-git/doc/guix.texi:25595 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-name" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25235 guix-git/doc/guix.texi:25461 +#. type: table +#: guix-git/doc/guix.texi:25597 guix-git/doc/guix.texi:25819 msgid "Database name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25240 +#: guix-git/doc/guix.texi:25602 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-user" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25242 guix-git/doc/guix.texi:25468 +#. type: table +#: guix-git/doc/guix.texi:25604 guix-git/doc/guix.texi:25822 msgid "Database user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25247 +#: guix-git/doc/guix.texi:25609 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-password" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25250 +#: guix-git/doc/guix.texi:25612 msgid "Database password. Please, use @code{include-files} with @code{DBPassword=SECRET} inside a specified file instead." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25255 +#: guix-git/doc/guix.texi:25617 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} number db-port" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25257 guix-git/doc/guix.texi:25454 +#. type: table +#: guix-git/doc/guix.texi:25619 guix-git/doc/guix.texi:25816 msgid "Database port." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25259 guix-git/doc/guix.texi:25456 +#: guix-git/doc/guix.texi:25621 msgid "Defaults to @samp{5432}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25262 +#: guix-git/doc/guix.texi:25624 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string log-type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25264 guix-git/doc/guix.texi:25365 +#: guix-git/doc/guix.texi:25626 guix-git/doc/guix.texi:25727 msgid "Specifies where log messages are written to:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25268 guix-git/doc/guix.texi:25369 +#: guix-git/doc/guix.texi:25630 guix-git/doc/guix.texi:25731 msgid "@code{system} - syslog." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25271 guix-git/doc/guix.texi:25372 +#: guix-git/doc/guix.texi:25633 guix-git/doc/guix.texi:25734 msgid "@code{file} - file specified with @code{log-file} parameter." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25274 guix-git/doc/guix.texi:25375 +#: guix-git/doc/guix.texi:25636 guix-git/doc/guix.texi:25737 msgid "@code{console} - standard output." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25281 +#: guix-git/doc/guix.texi:25643 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string log-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25283 guix-git/doc/guix.texi:25384 +#: guix-git/doc/guix.texi:25645 guix-git/doc/guix.texi:25746 msgid "Log file name for @code{log-type} @code{file} parameter." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25285 +#: guix-git/doc/guix.texi:25647 msgid "Defaults to @samp{\"/var/log/zabbix/server.log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25288 +#: guix-git/doc/guix.texi:25650 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25290 guix-git/doc/guix.texi:25391 +#: guix-git/doc/guix.texi:25652 guix-git/doc/guix.texi:25753 msgid "Name of PID file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25292 +#: guix-git/doc/guix.texi:25654 msgid "Defaults to @samp{\"/var/run/zabbix/zabbix_server.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25295 +#: guix-git/doc/guix.texi:25657 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string ssl-ca-location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25298 +#: guix-git/doc/guix.texi:25660 msgid "The location of certificate authority (CA) files for SSL server certificate verification." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25300 +#: guix-git/doc/guix.texi:25662 msgid "Defaults to @samp{\"/etc/ssl/certs/ca-certificates.crt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25303 +#: guix-git/doc/guix.texi:25665 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string ssl-cert-location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25305 +#: guix-git/doc/guix.texi:25667 msgid "Location of SSL client certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25307 +#: guix-git/doc/guix.texi:25669 msgid "Defaults to @samp{\"/etc/ssl/certs\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25310 +#: guix-git/doc/guix.texi:25672 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25312 guix-git/doc/guix.texi:25416 +#: guix-git/doc/guix.texi:25674 guix-git/doc/guix.texi:25778 msgid "Extra options will be appended to Zabbix server configuration file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25317 +#: guix-git/doc/guix.texi:25679 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} include-files include-files" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25320 guix-git/doc/guix.texi:25424 +#: guix-git/doc/guix.texi:25682 guix-git/doc/guix.texi:25786 msgid "You may include individual files or all files in a directory in the configuration file." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25327 +#: guix-git/doc/guix.texi:25689 #, no-wrap msgid "Zabbix agent" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25328 +#: guix-git/doc/guix.texi:25690 #, no-wrap msgid "zabbix zabbix-agent" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25331 +#: guix-git/doc/guix.texi:25693 msgid "Zabbix agent gathers information for Zabbix server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25335 +#: guix-git/doc/guix.texi:25697 msgid "Available @code{zabbix-agent-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25336 +#: guix-git/doc/guix.texi:25698 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} package zabbix-agent" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25338 +#: guix-git/doc/guix.texi:25700 msgid "The zabbix-agent package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25341 +#: guix-git/doc/guix.texi:25703 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25343 +#: guix-git/doc/guix.texi:25705 msgid "User who will run the Zabbix agent." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25348 +#: guix-git/doc/guix.texi:25710 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} group group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25350 +#: guix-git/doc/guix.texi:25712 msgid "Group who will run the Zabbix agent." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25355 +#: guix-git/doc/guix.texi:25717 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string hostname" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25358 +#: guix-git/doc/guix.texi:25720 msgid "Unique, case sensitive hostname which is required for active checks and must match hostname as configured on the server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25363 +#: guix-git/doc/guix.texi:25725 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string log-type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25382 +#: guix-git/doc/guix.texi:25744 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string log-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25386 +#: guix-git/doc/guix.texi:25748 msgid "Defaults to @samp{\"/var/log/zabbix/agent.log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25389 +#: guix-git/doc/guix.texi:25751 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25393 +#: guix-git/doc/guix.texi:25755 msgid "Defaults to @samp{\"/var/run/zabbix/zabbix_agent.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25396 +#: guix-git/doc/guix.texi:25758 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} list server" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25400 +#: guix-git/doc/guix.texi:25762 msgid "List of IP addresses, optionally in CIDR notation, or hostnames of Zabbix servers and Zabbix proxies. Incoming connections will be accepted only from the hosts listed here." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25402 guix-git/doc/guix.texi:25411 +#: guix-git/doc/guix.texi:25764 guix-git/doc/guix.texi:25773 msgid "Defaults to @samp{(\"127.0.0.1\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25405 +#: guix-git/doc/guix.texi:25767 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} list server-active" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25409 +#: guix-git/doc/guix.texi:25771 msgid "List of IP:port (or hostname:port) pairs of Zabbix servers and Zabbix proxies for active checks. If port is not specified, default port is used. If this parameter is not specified, active checks are disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25414 +#: guix-git/doc/guix.texi:25776 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25421 +#: guix-git/doc/guix.texi:25783 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} include-files include-files" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25431 +#: guix-git/doc/guix.texi:25793 #, no-wrap msgid "Zabbix front-end" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25432 +#: guix-git/doc/guix.texi:25794 #, no-wrap msgid "zabbix zabbix-front-end" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25435 +#: guix-git/doc/guix.texi:25797 msgid "This service provides a WEB interface to Zabbix server." msgstr "" -#. type: Plain text -#: guix-git/doc/guix.texi:25439 +#. type: deftp +#: guix-git/doc/guix.texi:25800 +#, no-wrap +msgid "{Data Type} zabbix-front-end-configuration" +msgstr "" + +#. type: deftp +#: guix-git/doc/guix.texi:25802 msgid "Available @code{zabbix-front-end-configuration} fields are:" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25440 +#. type: item +#: guix-git/doc/guix.texi:25804 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} nginx-server-configuration-list nginx" +msgid "@code{zabbix-server} (default: @code{zabbix-server}) (type: file-like)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25442 guix-git/doc/guix.texi:31735 -msgid "NGINX configuration." +#. type: table +#: guix-git/doc/guix.texi:25806 +msgid "The Zabbix server package to use." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25445 +#. type: item +#: guix-git/doc/guix.texi:25807 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-host" +msgid "@code{fastcgi-params} (type: list)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25452 +#. type: table +#: guix-git/doc/guix.texi:25810 +msgid "List of FastCGI parameter pairs that will be included in the NGINX configuration." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:25811 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} number db-port" +msgid "@code{db-host} (default: @code{\\\"localhost\\\"}) (type: string)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25459 +#. type: item +#: guix-git/doc/guix.texi:25814 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-name" +msgid "@code{db-port} (default: @code{5432}) (type: number)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25466 +#. type: item +#: guix-git/doc/guix.texi:25817 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-user" +msgid "@code{db-name} (default: @code{\\\"zabbix\\\"}) (type: string)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25473 +#. type: item +#: guix-git/doc/guix.texi:25820 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-password" +msgid "@code{db-user} (default: @code{\\\"zabbix\\\"}) (type: string)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25475 +#. type: item +#: guix-git/doc/guix.texi:25823 +#, no-wrap +msgid "@code{db-password} (default: @code{\\\"\\\"}) (type: string)" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:25825 msgid "Database password. Please, use @code{db-secret-file} instead." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25480 +#. type: item +#: guix-git/doc/guix.texi:25826 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-secret-file" +msgid "@code{db-secret-file} (default: @code{\\\"\\\"}) (type: string)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25485 -msgid "Secret file containing the credentials for the Zabbix front-end. The value must be a local file name, not a G-expression. You are expected to create this file manually. Its contents will be copied into @file{zabbix.conf.php} as the value of @code{$DB['PASSWORD']}." +#. type: table +#: guix-git/doc/guix.texi:25830 +msgid "Secret file which will be appended to @file{zabbix.conf.php} file. This file contains credentials for use by Zabbix front-end. You are expected to create it manually." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25490 +#. type: item +#: guix-git/doc/guix.texi:25831 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string zabbix-host" +msgid "@code{zabbix-host} (default: @code{\\\"localhost\\\"}) (type: string)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25492 +#. type: table +#: guix-git/doc/guix.texi:25833 msgid "Zabbix server hostname." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25497 +#. type: item +#: guix-git/doc/guix.texi:25834 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} number zabbix-port" +msgid "@code{zabbix-port} (default: @code{10051}) (type: number)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25499 +#. type: table +#: guix-git/doc/guix.texi:25836 msgid "Zabbix server port." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25501 -msgid "Defaults to @samp{10051}." -msgstr "" - #. type: cindex -#: guix-git/doc/guix.texi:25509 +#: guix-git/doc/guix.texi:25846 #, no-wrap msgid "Kerberos" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25513 +#: guix-git/doc/guix.texi:25850 msgid "The @code{(gnu services kerberos)} module provides services relating to the authentication protocol @dfn{Kerberos}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25514 +#: guix-git/doc/guix.texi:25851 #, no-wrap msgid "Krb5 Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25521 +#: guix-git/doc/guix.texi:25858 msgid "Programs using a Kerberos client library normally expect a configuration file in @file{/etc/krb5.conf}. This service generates such a file from a definition provided in the operating system declaration. It does not cause any daemon to be started." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25525 +#: guix-git/doc/guix.texi:25862 msgid "No ``keytab'' files are provided by this service---you must explicitly create them. This service is known to work with the MIT client library, @code{mit-krb5}. Other implementations have not been tested." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25526 +#: guix-git/doc/guix.texi:25863 #, no-wrap msgid "{Scheme Variable} krb5-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25528 +#: guix-git/doc/guix.texi:25865 msgid "A service type for Kerberos 5 clients." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25532 +#: guix-git/doc/guix.texi:25869 msgid "Here is an example of its use:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25546 +#: guix-git/doc/guix.texi:25883 #, no-wrap msgid "" "(service krb5-service-type\n" @@ -45494,206 +46114,206 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25550 +#: guix-git/doc/guix.texi:25887 msgid "This example provides a Kerberos@tie{}5 client configuration which:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25551 +#: guix-git/doc/guix.texi:25888 #, no-wrap msgid "Recognizes two realms, @i{viz:} ``EXAMPLE.COM'' and ``ARGRX.EDU'', both" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25553 +#: guix-git/doc/guix.texi:25890 msgid "of which have distinct administration servers and key distribution centers;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25553 +#: guix-git/doc/guix.texi:25890 #, no-wrap msgid "Will default to the realm ``EXAMPLE.COM'' if the realm is not explicitly" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25555 +#: guix-git/doc/guix.texi:25892 msgid "specified by clients;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25555 +#: guix-git/doc/guix.texi:25892 #, no-wrap msgid "Accepts services which only support encryption types known to be weak." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25563 +#: guix-git/doc/guix.texi:25900 msgid "The @code{krb5-realm} and @code{krb5-configuration} types have many fields. Only the most commonly used ones are described here. For a full list, and more detailed explanation of each, see the MIT @uref{https://web.mit.edu/kerberos/krb5-devel/doc/admin/conf_files/krb5_conf.html,,krb5.conf} documentation." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25565 +#: guix-git/doc/guix.texi:25902 #, no-wrap msgid "{Data Type} krb5-realm" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25566 +#: guix-git/doc/guix.texi:25903 #, no-wrap msgid "realm, kerberos" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25572 +#: guix-git/doc/guix.texi:25909 msgid "This field is a string identifying the name of the realm. A common convention is to use the fully qualified DNS name of your organization, converted to upper case." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25573 +#: guix-git/doc/guix.texi:25910 #, no-wrap msgid "admin-server" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25576 +#: guix-git/doc/guix.texi:25913 msgid "This field is a string identifying the host where the administration server is running." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25577 +#: guix-git/doc/guix.texi:25914 #, no-wrap msgid "kdc" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25580 +#: guix-git/doc/guix.texi:25917 msgid "This field is a string identifying the key distribution center for the realm." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25583 +#: guix-git/doc/guix.texi:25920 #, no-wrap msgid "{Data Type} krb5-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25586 +#: guix-git/doc/guix.texi:25923 #, no-wrap msgid "@code{allow-weak-crypto?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25589 +#: guix-git/doc/guix.texi:25926 msgid "If this flag is @code{#t} then services which only offer encryption algorithms known to be weak will be accepted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25590 +#: guix-git/doc/guix.texi:25927 #, no-wrap msgid "@code{default-realm} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25597 +#: guix-git/doc/guix.texi:25934 msgid "This field should be a string identifying the default Kerberos realm for the client. You should set this field to the name of your Kerberos realm. If this value is @code{#f} then a realm must be specified with every Kerberos principal when invoking programs such as @command{kinit}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25598 +#: guix-git/doc/guix.texi:25935 #, no-wrap msgid "realms" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25603 +#: guix-git/doc/guix.texi:25940 msgid "This should be a non-empty list of @code{krb5-realm} objects, which clients may access. Normally, one of them will have a @code{name} field matching the @code{default-realm} field." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25607 +#: guix-git/doc/guix.texi:25944 #, no-wrap msgid "PAM krb5 Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25608 +#: guix-git/doc/guix.texi:25945 #, no-wrap msgid "pam-krb5" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25614 +#: guix-git/doc/guix.texi:25951 msgid "The @code{pam-krb5} service allows for login authentication and password management via Kerberos. You will need this service if you want PAM enabled applications to authenticate users using Kerberos." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25615 +#: guix-git/doc/guix.texi:25952 #, no-wrap msgid "{Scheme Variable} pam-krb5-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25617 +#: guix-git/doc/guix.texi:25954 msgid "A service type for the Kerberos 5 PAM module." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25619 +#: guix-git/doc/guix.texi:25956 #, no-wrap msgid "{Data Type} pam-krb5-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25622 +#: guix-git/doc/guix.texi:25959 msgid "Data type representing the configuration of the Kerberos 5 PAM module. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25623 +#: guix-git/doc/guix.texi:25960 #, no-wrap msgid "@code{pam-krb5} (default: @code{pam-krb5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25625 +#: guix-git/doc/guix.texi:25962 msgid "The pam-krb5 package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25626 +#: guix-git/doc/guix.texi:25963 #, no-wrap msgid "@code{minimum-uid} (default: @code{1000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25629 +#: guix-git/doc/guix.texi:25966 msgid "The smallest user ID for which Kerberos authentications should be attempted. Local accounts with lower values will silently fail to authenticate." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25635 +#: guix-git/doc/guix.texi:25972 #, no-wrap msgid "LDAP" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25636 +#: guix-git/doc/guix.texi:25973 #, no-wrap msgid "nslcd, LDAP service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25643 +#: guix-git/doc/guix.texi:25980 msgid "The @code{(gnu services authentication)} module provides the @code{nslcd-service-type}, which can be used to authenticate against an LDAP server. In addition to configuring the service itself, you may want to add @code{ldap} as a name service to the Name Service Switch. @xref{Name Service Switch} for detailed information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25647 +#: guix-git/doc/guix.texi:25984 msgid "Here is a simple operating system declaration with a default configuration of the @code{nslcd-service-type} and a Name Service Switch configuration that consults the @code{ldap} name service last:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25670 +#: guix-git/doc/guix.texi:26007 #, no-wrap msgid "" "(use-service-modules authentication)\n" @@ -45720,643 +46340,643 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25675 +#: guix-git/doc/guix.texi:26012 msgid "Available @code{nslcd-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25676 +#: guix-git/doc/guix.texi:26013 #, no-wrap msgid "{@code{nslcd-configuration} parameter} package nss-pam-ldapd" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25678 +#: guix-git/doc/guix.texi:26015 msgid "The @code{nss-pam-ldapd} package to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25681 +#: guix-git/doc/guix.texi:26018 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number threads" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25685 +#: guix-git/doc/guix.texi:26022 msgid "The number of threads to start that can handle requests and perform LDAP queries. Each thread opens a separate connection to the LDAP server. The default is to start 5 threads." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25690 +#: guix-git/doc/guix.texi:26027 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25692 +#: guix-git/doc/guix.texi:26029 msgid "This specifies the user id with which the daemon should be run." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25694 guix-git/doc/guix.texi:25701 +#: guix-git/doc/guix.texi:26031 guix-git/doc/guix.texi:26038 msgid "Defaults to @samp{\"nslcd\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25697 +#: guix-git/doc/guix.texi:26034 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25699 +#: guix-git/doc/guix.texi:26036 msgid "This specifies the group id with which the daemon should be run." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25704 +#: guix-git/doc/guix.texi:26041 #, no-wrap msgid "{@code{nslcd-configuration} parameter} log-option log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25712 +#: guix-git/doc/guix.texi:26049 msgid "This option controls the way logging is done via a list containing SCHEME and LEVEL@. The SCHEME argument may either be the symbols @samp{none} or @samp{syslog}, or an absolute file name. The LEVEL argument is optional and specifies the log level. The log level may be one of the following symbols: @samp{crit}, @samp{error}, @samp{warning}, @samp{notice}, @samp{info} or @samp{debug}. All messages with the specified log level or higher are logged." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25714 +#: guix-git/doc/guix.texi:26051 msgid "Defaults to @samp{(\"/var/log/nslcd\" info)}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25717 +#: guix-git/doc/guix.texi:26054 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list uri" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25720 +#: guix-git/doc/guix.texi:26057 msgid "The list of LDAP server URIs. Normally, only the first server will be used with the following servers as fall-back." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25722 +#: guix-git/doc/guix.texi:26059 msgid "Defaults to @samp{(\"ldap://localhost:389/\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25725 +#: guix-git/doc/guix.texi:26062 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string ldap-version" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25728 +#: guix-git/doc/guix.texi:26065 msgid "The version of the LDAP protocol to use. The default is to use the maximum version supported by the LDAP library." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25733 +#: guix-git/doc/guix.texi:26070 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string binddn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25736 +#: guix-git/doc/guix.texi:26073 msgid "Specifies the distinguished name with which to bind to the directory server for lookups. The default is to bind anonymously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25741 +#: guix-git/doc/guix.texi:26078 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string bindpw" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25744 +#: guix-git/doc/guix.texi:26081 msgid "Specifies the credentials with which to bind. This option is only applicable when used with binddn." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25749 +#: guix-git/doc/guix.texi:26086 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string rootpwmoddn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25752 +#: guix-git/doc/guix.texi:26089 msgid "Specifies the distinguished name to use when the root user tries to modify a user's password using the PAM module." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25757 +#: guix-git/doc/guix.texi:26094 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string rootpwmodpw" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25761 +#: guix-git/doc/guix.texi:26098 msgid "Specifies the credentials with which to bind if the root user tries to change a user's password. This option is only applicable when used with rootpwmoddn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25766 +#: guix-git/doc/guix.texi:26103 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-mech" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25769 +#: guix-git/doc/guix.texi:26106 msgid "Specifies the SASL mechanism to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25774 +#: guix-git/doc/guix.texi:26111 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-realm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25776 +#: guix-git/doc/guix.texi:26113 msgid "Specifies the SASL realm to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25781 +#: guix-git/doc/guix.texi:26118 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-authcid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25784 +#: guix-git/doc/guix.texi:26121 msgid "Specifies the authentication identity to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25789 +#: guix-git/doc/guix.texi:26126 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-authzid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25792 +#: guix-git/doc/guix.texi:26129 msgid "Specifies the authorization identity to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25797 +#: guix-git/doc/guix.texi:26134 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean sasl-canonicalize?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25802 +#: guix-git/doc/guix.texi:26139 msgid "Determines whether the LDAP server host name should be canonicalised. If this is enabled the LDAP library will do a reverse host name lookup. By default, it is left up to the LDAP library whether this check is performed or not." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25807 +#: guix-git/doc/guix.texi:26144 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string krb5-ccname" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25809 +#: guix-git/doc/guix.texi:26146 msgid "Set the name for the GSS-API Kerberos credentials cache." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25814 +#: guix-git/doc/guix.texi:26151 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string base" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25816 +#: guix-git/doc/guix.texi:26153 msgid "The directory search base." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25818 +#: guix-git/doc/guix.texi:26155 msgid "Defaults to @samp{\"dc=example,dc=com\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25821 +#: guix-git/doc/guix.texi:26158 #, no-wrap msgid "{@code{nslcd-configuration} parameter} scope-option scope" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25825 +#: guix-git/doc/guix.texi:26162 msgid "Specifies the search scope (subtree, onelevel, base or children). The default scope is subtree; base scope is almost never useful for name service lookups; children scope is not supported on all servers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25827 +#: guix-git/doc/guix.texi:26164 msgid "Defaults to @samp{(subtree)}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25830 +#: guix-git/doc/guix.texi:26167 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-deref-option deref" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25833 +#: guix-git/doc/guix.texi:26170 msgid "Specifies the policy for dereferencing aliases. The default policy is to never dereference aliases." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25838 +#: guix-git/doc/guix.texi:26175 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean referrals" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25841 +#: guix-git/doc/guix.texi:26178 msgid "Specifies whether automatic referral chasing should be enabled. The default behaviour is to chase referrals." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25846 +#: guix-git/doc/guix.texi:26183 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list-of-map-entries maps" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25851 +#: guix-git/doc/guix.texi:26188 msgid "This option allows for custom attributes to be looked up instead of the default RFC 2307 attributes. It is a list of maps, each consisting of the name of a map, the RFC 2307 attribute to match and the query expression for the attribute as it is available in the directory." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25856 +#: guix-git/doc/guix.texi:26193 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list-of-filter-entries filters" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25859 +#: guix-git/doc/guix.texi:26196 msgid "A list of filters consisting of the name of a map to which the filter applies and an LDAP search filter expression." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25864 +#: guix-git/doc/guix.texi:26201 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number bind-timelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25867 +#: guix-git/doc/guix.texi:26204 msgid "Specifies the time limit in seconds to use when connecting to the directory server. The default value is 10 seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25872 +#: guix-git/doc/guix.texi:26209 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number timelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25876 +#: guix-git/doc/guix.texi:26213 msgid "Specifies the time limit (in seconds) to wait for a response from the LDAP server. A value of zero, which is the default, is to wait indefinitely for searches to be completed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25881 +#: guix-git/doc/guix.texi:26218 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number idle-timelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25885 +#: guix-git/doc/guix.texi:26222 msgid "Specifies the period if inactivity (in seconds) after which the con‐ nection to the LDAP server will be closed. The default is not to time out connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25890 +#: guix-git/doc/guix.texi:26227 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number reconnect-sleeptime" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25894 +#: guix-git/doc/guix.texi:26231 msgid "Specifies the number of seconds to sleep when connecting to all LDAP servers fails. By default one second is waited between the first failure and the first retry." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25899 +#: guix-git/doc/guix.texi:26236 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number reconnect-retrytime" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25903 +#: guix-git/doc/guix.texi:26240 msgid "Specifies the time after which the LDAP server is considered to be permanently unavailable. Once this time is reached retries will be done only once per this time period. The default value is 10 seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25908 +#: guix-git/doc/guix.texi:26245 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-ssl-option ssl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25912 +#: guix-git/doc/guix.texi:26249 msgid "Specifies whether to use SSL/TLS or not (the default is not to). If 'start-tls is specified then StartTLS is used rather than raw LDAP over SSL." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25917 +#: guix-git/doc/guix.texi:26254 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-tls-reqcert-option tls-reqcert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25920 +#: guix-git/doc/guix.texi:26257 msgid "Specifies what checks to perform on a server-supplied certificate. The meaning of the values is described in the ldap.conf(5) manual page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25925 +#: guix-git/doc/guix.texi:26262 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cacertdir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25928 +#: guix-git/doc/guix.texi:26265 msgid "Specifies the directory containing X.509 certificates for peer authen‐ tication. This parameter is ignored when using GnuTLS." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25933 +#: guix-git/doc/guix.texi:26270 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cacertfile" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25935 +#: guix-git/doc/guix.texi:26272 msgid "Specifies the path to the X.509 certificate for peer authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25940 +#: guix-git/doc/guix.texi:26277 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-randfile" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25943 +#: guix-git/doc/guix.texi:26280 msgid "Specifies the path to an entropy source. This parameter is ignored when using GnuTLS." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25948 +#: guix-git/doc/guix.texi:26285 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-ciphers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25950 +#: guix-git/doc/guix.texi:26287 msgid "Specifies the ciphers to use for TLS as a string." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25955 +#: guix-git/doc/guix.texi:26292 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25958 +#: guix-git/doc/guix.texi:26295 msgid "Specifies the path to the file containing the local certificate for client TLS authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25963 +#: guix-git/doc/guix.texi:26300 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-key" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25966 +#: guix-git/doc/guix.texi:26303 msgid "Specifies the path to the file containing the private key for client TLS authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25971 +#: guix-git/doc/guix.texi:26308 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number pagesize" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25975 +#: guix-git/doc/guix.texi:26312 msgid "Set this to a number greater than 0 to request paged results from the LDAP server in accordance with RFC2696. The default (0) is to not request paged results." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25980 +#: guix-git/doc/guix.texi:26317 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-ignore-users-option nss-initgroups-ignoreusers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25984 +#: guix-git/doc/guix.texi:26321 msgid "This option prevents group membership lookups through LDAP for the specified users. Alternatively, the value 'all-local may be used. With that value nslcd builds a full list of non-LDAP users on startup." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25989 +#: guix-git/doc/guix.texi:26326 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-min-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25992 +#: guix-git/doc/guix.texi:26329 msgid "This option ensures that LDAP users with a numeric user id lower than the specified value are ignored." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25997 +#: guix-git/doc/guix.texi:26334 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-uid-offset" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26000 +#: guix-git/doc/guix.texi:26337 msgid "This option specifies an offset that is added to all LDAP numeric user ids. This can be used to avoid user id collisions with local users." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26005 +#: guix-git/doc/guix.texi:26342 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-gid-offset" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26008 +#: guix-git/doc/guix.texi:26345 msgid "This option specifies an offset that is added to all LDAP numeric group ids. This can be used to avoid user id collisions with local groups." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26013 +#: guix-git/doc/guix.texi:26350 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-nested-groups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26019 +#: guix-git/doc/guix.texi:26356 msgid "If this option is set, the member attribute of a group may point to another group. Members of nested groups are also returned in the higher level group and parent groups are returned when finding groups for a specific user. The default is not to perform extra searches for nested groups." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26024 +#: guix-git/doc/guix.texi:26361 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-getgrent-skipmembers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26029 +#: guix-git/doc/guix.texi:26366 msgid "If this option is set, the group member list is not retrieved when looking up groups. Lookups for finding which groups a user belongs to will remain functional so the user will likely still get the correct groups assigned on login." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26034 +#: guix-git/doc/guix.texi:26371 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-disable-enumeration" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26040 +#: guix-git/doc/guix.texi:26377 msgid "If this option is set, functions which cause all user/group entries to be loaded from the directory will not succeed in doing so. This can dramatically reduce LDAP server load in situations where there are a great number of users and/or groups. This option is not recommended for most configurations." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26045 +#: guix-git/doc/guix.texi:26382 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string validnames" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26049 +#: guix-git/doc/guix.texi:26386 msgid "This option can be used to specify how user and group names are verified within the system. This pattern is used to check all user and group names that are requested and returned from LDAP." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26054 +#: guix-git/doc/guix.texi:26391 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean ignorecase" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26059 +#: guix-git/doc/guix.texi:26396 msgid "This specifies whether or not to perform searches using case-insensitive matching. Enabling this could open up the system to authorization bypass vulnerabilities and introduce nscd cache poisoning vulnerabilities which allow denial of service." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26064 +#: guix-git/doc/guix.texi:26401 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean pam-authc-ppolicy" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26067 +#: guix-git/doc/guix.texi:26404 msgid "This option specifies whether password policy controls are requested and handled from the LDAP server when performing user authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26072 +#: guix-git/doc/guix.texi:26409 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-authc-search" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26078 +#: guix-git/doc/guix.texi:26415 msgid "By default nslcd performs an LDAP search with the user's credentials after BIND (authentication) to ensure that the BIND operation was successful. The default search is a simple check to see if the user's DN exists. A search filter can be specified that will be used instead. It should return at least one entry." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26083 +#: guix-git/doc/guix.texi:26420 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-authz-search" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26087 +#: guix-git/doc/guix.texi:26424 msgid "This option allows flexible fine tuning of the authorisation check that should be performed. The search filter specified is executed and if any entries match, access is granted, otherwise access is denied." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26092 +#: guix-git/doc/guix.texi:26429 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-password-prohibit-message" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26097 +#: guix-git/doc/guix.texi:26434 msgid "If this option is set password modification using pam_ldap will be denied and the specified message will be presented to the user instead. The message can be used to direct the user to an alternative means of changing their password." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26102 +#: guix-git/doc/guix.texi:26439 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list pam-services" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26104 +#: guix-git/doc/guix.texi:26441 msgid "List of pam service names for which LDAP authentication should suffice." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26115 +#: guix-git/doc/guix.texi:26452 #, no-wrap msgid "web" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26116 +#: guix-git/doc/guix.texi:26453 #, no-wrap msgid "www" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26117 +#: guix-git/doc/guix.texi:26454 #, no-wrap msgid "HTTP" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26120 +#: guix-git/doc/guix.texi:26457 msgid "The @code{(gnu services web)} module provides the Apache HTTP Server, the nginx web server, and also a fastcgi wrapper daemon." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26121 +#: guix-git/doc/guix.texi:26458 #, no-wrap msgid "Apache HTTP Server" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26123 +#: guix-git/doc/guix.texi:26460 #, no-wrap msgid "{Scheme Variable} httpd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26127 +#: guix-git/doc/guix.texi:26464 msgid "Service type for the @uref{https://httpd.apache.org/,Apache HTTP} server (@dfn{httpd}). The value for this service type is a @code{httpd-configuration} record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26129 guix-git/doc/guix.texi:26311 +#: guix-git/doc/guix.texi:26466 guix-git/doc/guix.texi:26648 msgid "A simple example configuration is given below." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26137 +#: guix-git/doc/guix.texi:26474 #, no-wrap msgid "" "(service httpd-service-type\n" @@ -46368,12 +46988,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26141 +#: guix-git/doc/guix.texi:26478 msgid "Other services can also extend the @code{httpd-service-type} to add to the configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26150 guix-git/doc/guix.texi:26290 +#: guix-git/doc/guix.texi:26487 guix-git/doc/guix.texi:26627 #, no-wrap msgid "" "(simple-service 'www.example.com-server httpd-service-type\n" @@ -46386,115 +47006,115 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26156 +#: guix-git/doc/guix.texi:26493 msgid "The details for the @code{httpd-configuration}, @code{httpd-module}, @code{httpd-config-file} and @code{httpd-virtualhost} record types are given below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26157 +#: guix-git/doc/guix.texi:26494 #, no-wrap msgid "{Data Type} httpd-configuration" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26159 +#: guix-git/doc/guix.texi:26496 msgid "This data type represents the configuration for the httpd service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26161 +#: guix-git/doc/guix.texi:26498 #, no-wrap msgid "@code{package} (default: @code{httpd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26163 +#: guix-git/doc/guix.texi:26500 msgid "The httpd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26164 guix-git/doc/guix.texi:26253 +#: guix-git/doc/guix.texi:26501 guix-git/doc/guix.texi:26590 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/httpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26166 +#: guix-git/doc/guix.texi:26503 msgid "The pid file used by the shepherd-service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26167 +#: guix-git/doc/guix.texi:26504 #, no-wrap msgid "@code{config} (default: @code{(httpd-config-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26172 +#: guix-git/doc/guix.texi:26509 msgid "The configuration file to use with the httpd service. The default value is a @code{httpd-config-file} record, but this can also be a different G-expression that generates a file, for example a @code{plain-file}. A file outside of the store can also be specified through a string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26176 +#: guix-git/doc/guix.texi:26513 #, no-wrap msgid "{Data Type} httpd-module" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26178 +#: guix-git/doc/guix.texi:26515 msgid "This data type represents a module for the httpd service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26182 +#: guix-git/doc/guix.texi:26519 msgid "The name of the module." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26188 +#: guix-git/doc/guix.texi:26525 msgid "The file for the module. This can be relative to the httpd package being used, the absolute location of a file, or a G-expression for a file within the store, for example @code{(file-append mod-wsgi \"/modules/mod_wsgi.so\")}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26192 +#: guix-git/doc/guix.texi:26529 #, no-wrap msgid "{Scheme Variable} %default-httpd-modules" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26194 +#: guix-git/doc/guix.texi:26531 msgid "A default list of @code{httpd-module} objects." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26196 +#: guix-git/doc/guix.texi:26533 #, no-wrap msgid "{Data Type} httpd-config-file" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26198 +#: guix-git/doc/guix.texi:26535 msgid "This data type represents a configuration file for the httpd service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26200 +#: guix-git/doc/guix.texi:26537 #, no-wrap msgid "@code{modules} (default: @code{%default-httpd-modules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26203 +#: guix-git/doc/guix.texi:26540 msgid "The modules to load. Additional modules can be added here, or loaded by additional configuration." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26206 +#: guix-git/doc/guix.texi:26543 msgid "For example, in order to handle requests for PHP files, you can use Apache’s @code{mod_proxy_fcgi} module along with @code{php-fpm-service-type}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26228 +#: guix-git/doc/guix.texi:26565 #, no-wrap msgid "" "(service httpd-service-type\n" @@ -46520,165 +47140,165 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26230 +#: guix-git/doc/guix.texi:26567 #, no-wrap msgid "@code{server-root} (default: @code{httpd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26234 +#: guix-git/doc/guix.texi:26571 msgid "The @code{ServerRoot} in the configuration file, defaults to the httpd package. Directives including @code{Include} and @code{LoadModule} are taken as relative to the server root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26235 +#: guix-git/doc/guix.texi:26572 #, no-wrap msgid "@code{server-name} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26239 +#: guix-git/doc/guix.texi:26576 msgid "The @code{ServerName} in the configuration file, used to specify the request scheme, hostname and port that the server uses to identify itself." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26243 +#: guix-git/doc/guix.texi:26580 msgid "This doesn't need to be set in the server config, and can be specified in virtual hosts. The default is @code{#f} to not specify a @code{ServerName}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26244 +#: guix-git/doc/guix.texi:26581 #, no-wrap msgid "@code{document-root} (default: @code{\"/srv/http\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26246 +#: guix-git/doc/guix.texi:26583 msgid "The @code{DocumentRoot} from which files will be served." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26247 +#: guix-git/doc/guix.texi:26584 #, no-wrap msgid "@code{listen} (default: @code{'(\"80\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26252 +#: guix-git/doc/guix.texi:26589 msgid "The list of values for the @code{Listen} directives in the config file. The value should be a list of strings, when each string can specify the port number to listen on, and optionally the IP address and protocol to use." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26257 +#: guix-git/doc/guix.texi:26594 msgid "The @code{PidFile} to use. This should match the @code{pid-file} set in the @code{httpd-configuration} so that the Shepherd service is configured correctly." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26258 +#: guix-git/doc/guix.texi:26595 #, no-wrap msgid "@code{error-log} (default: @code{\"/var/log/httpd/error_log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26260 +#: guix-git/doc/guix.texi:26597 msgid "The @code{ErrorLog} to which the server will log errors." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26261 guix-git/doc/guix.texi:26823 +#: guix-git/doc/guix.texi:26598 guix-git/doc/guix.texi:27160 #, no-wrap msgid "@code{user} (default: @code{\"httpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26263 +#: guix-git/doc/guix.texi:26600 msgid "The @code{User} which the server will answer requests as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26264 +#: guix-git/doc/guix.texi:26601 #, no-wrap msgid "@code{group} (default: @code{\"httpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26266 +#: guix-git/doc/guix.texi:26603 msgid "The @code{Group} which the server will answer requests as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26267 +#: guix-git/doc/guix.texi:26604 #, no-wrap msgid "@code{extra-config} (default: @code{(list \"TypesConfig etc/httpd/mime.types\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26270 +#: guix-git/doc/guix.texi:26607 msgid "A flat list of strings and G-expressions which will be added to the end of the configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26273 +#: guix-git/doc/guix.texi:26610 msgid "Any values which the service is extended with will be appended to this list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26277 +#: guix-git/doc/guix.texi:26614 #, no-wrap msgid "{Data Type} httpd-virtualhost" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26279 +#: guix-git/doc/guix.texi:26616 msgid "This data type represents a virtualhost configuration block for the httpd service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26281 +#: guix-git/doc/guix.texi:26618 msgid "These should be added to the extra-config for the httpd-service." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26293 +#: guix-git/doc/guix.texi:26630 #, no-wrap msgid "addresses-and-ports" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26295 +#: guix-git/doc/guix.texi:26632 msgid "The addresses and ports for the @code{VirtualHost} directive." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26296 +#: guix-git/doc/guix.texi:26633 #, no-wrap msgid "contents" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26299 +#: guix-git/doc/guix.texi:26636 msgid "The contents of the @code{VirtualHost} directive, this should be a list of strings and G-expressions." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26304 +#: guix-git/doc/guix.texi:26641 #, no-wrap msgid "NGINX" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26306 +#: guix-git/doc/guix.texi:26643 #, no-wrap msgid "{Scheme Variable} nginx-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26309 +#: guix-git/doc/guix.texi:26646 msgid "Service type for the @uref{https://nginx.org/,NGinx} web server. The value for this service type is a @code{} record." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26319 guix-git/doc/guix.texi:26373 +#: guix-git/doc/guix.texi:26656 guix-git/doc/guix.texi:26710 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -46690,12 +47310,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26324 +#: guix-git/doc/guix.texi:26661 msgid "In addition to adding server blocks to the service configuration directly, this service can be extended by other services to add server blocks, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26330 +#: guix-git/doc/guix.texi:26667 #, no-wrap msgid "" "(simple-service 'my-extra-server nginx-service-type\n" @@ -46705,88 +47325,88 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26341 +#: guix-git/doc/guix.texi:26678 msgid "At startup, @command{nginx} has not yet read its configuration file, so it uses a default file to log error messages. If it fails to load its configuration file, that is where error messages are logged. After the configuration file is loaded, the default error log file changes as per configuration. In our case, startup error messages can be found in @file{/var/run/nginx/logs/error.log}, and after configuration in @file{/var/log/nginx/error.log}. The second location can be changed with the @var{log-directory} configuration option." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26342 +#: guix-git/doc/guix.texi:26679 #, no-wrap msgid "{Data Type} nginx-configuration" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26346 +#: guix-git/doc/guix.texi:26683 msgid "This data type represents the configuration for NGinx. Some configuration can be done through this and the other provided record types, or alternatively, a config file can be provided." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26348 +#: guix-git/doc/guix.texi:26685 #, no-wrap msgid "@code{nginx} (default: @code{nginx})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26350 +#: guix-git/doc/guix.texi:26687 msgid "The nginx package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26351 +#: guix-git/doc/guix.texi:26688 #, no-wrap msgid "@code{log-directory} (default: @code{\"/var/log/nginx\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26353 +#: guix-git/doc/guix.texi:26690 msgid "The directory to which NGinx will write log files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26354 +#: guix-git/doc/guix.texi:26691 #, no-wrap msgid "@code{run-directory} (default: @code{\"/var/run/nginx\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26357 +#: guix-git/doc/guix.texi:26694 msgid "The directory in which NGinx will create a pid file, and write temporary files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26358 +#: guix-git/doc/guix.texi:26695 #, no-wrap msgid "@code{server-blocks} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26362 +#: guix-git/doc/guix.texi:26699 msgid "A list of @dfn{server blocks} to create in the generated configuration file, the elements should be of type @code{}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26366 +#: guix-git/doc/guix.texi:26703 msgid "The following example would setup NGinx to serve @code{www.example.com} from the @code{/srv/http/www.example.com} directory, without using HTTPS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26375 +#: guix-git/doc/guix.texi:26712 #, no-wrap msgid "@code{upstream-blocks} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26379 +#: guix-git/doc/guix.texi:26716 msgid "A list of @dfn{upstream blocks} to create in the generated configuration file, the elements should be of type @code{}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26386 +#: guix-git/doc/guix.texi:26723 msgid "Configuring upstreams through the @code{upstream-blocks} can be useful when combined with @code{locations} in the @code{} records. The following example creates a server configuration with one location configuration, that will proxy requests to a upstream configuration, which will handle requests with two servers." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26405 +#: guix-git/doc/guix.texi:26742 #, no-wrap msgid "" "(service\n" @@ -46809,44 +47429,44 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26413 +#: guix-git/doc/guix.texi:26750 msgid "If a configuration @var{file} is provided, this will be used, rather than generating a configuration file from the provided @code{log-directory}, @code{run-directory}, @code{server-blocks} and @code{upstream-blocks}. For proper operation, these arguments should match what is in @var{file} to ensure that the directories are created when the service is activated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26417 +#: guix-git/doc/guix.texi:26754 msgid "This can be useful if you have an existing configuration file, or it's not possible to do what is required through the other parts of the nginx-configuration record." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26418 +#: guix-git/doc/guix.texi:26755 #, no-wrap msgid "@code{server-names-hash-bucket-size} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26421 +#: guix-git/doc/guix.texi:26758 msgid "Bucket size for the server names hash tables, defaults to @code{#f} to use the size of the processors cache line." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26422 +#: guix-git/doc/guix.texi:26759 #, no-wrap msgid "@code{server-names-hash-bucket-max-size} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26424 +#: guix-git/doc/guix.texi:26761 msgid "Maximum bucket size for the server names hash tables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26428 +#: guix-git/doc/guix.texi:26765 msgid "List of nginx dynamic modules to load. This should be a list of file names of loadable modules, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26436 +#: guix-git/doc/guix.texi:26773 #, no-wrap msgid "" "(modules\n" @@ -46858,18 +47478,18 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26438 +#: guix-git/doc/guix.texi:26775 #, no-wrap msgid "@code{lua-package-path} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26441 +#: guix-git/doc/guix.texi:26778 msgid "List of nginx lua packages to load. This should be a list of package names of loadable lua modules, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26448 +#: guix-git/doc/guix.texi:26785 #, no-wrap msgid "" "(lua-package-path (list lua-resty-core\n" @@ -46880,35 +47500,35 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26450 +#: guix-git/doc/guix.texi:26787 #, no-wrap msgid "@code{lua-package-cpath} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26453 +#: guix-git/doc/guix.texi:26790 msgid "List of nginx lua C packages to load. This should be a list of package names of loadable lua C modules, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26456 +#: guix-git/doc/guix.texi:26793 #, no-wrap msgid "(lua-package-cpath (list lua-resty-signal))\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26458 +#: guix-git/doc/guix.texi:26795 #, no-wrap msgid "@code{global-directives} (default: @code{'((events . ()))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26461 +#: guix-git/doc/guix.texi:26798 msgid "Association list of global directives for the top level of the nginx configuration. Values may themselves be association lists." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26467 +#: guix-git/doc/guix.texi:26804 #, no-wrap msgid "" "(global-directives\n" @@ -46918,312 +47538,312 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26472 +#: guix-git/doc/guix.texi:26809 msgid "Extra content for the @code{http} block. Should be string or a string valued G-expression." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26476 +#: guix-git/doc/guix.texi:26813 #, no-wrap msgid "{Data Type} nginx-server-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26479 +#: guix-git/doc/guix.texi:26816 msgid "Data type representing the configuration of an nginx server block. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26481 +#: guix-git/doc/guix.texi:26818 #, no-wrap msgid "@code{listen} (default: @code{'(\"80\" \"443 ssl\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26486 +#: guix-git/doc/guix.texi:26823 msgid "Each @code{listen} directive sets the address and port for IP, or the path for a UNIX-domain socket on which the server will accept requests. Both address and port, or only address or only port can be specified. An address may also be a hostname, for example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26489 +#: guix-git/doc/guix.texi:26826 #, no-wrap msgid "'(\"127.0.0.1:8000\" \"127.0.0.1\" \"8000\" \"*:8000\" \"localhost:8000\")\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26491 +#: guix-git/doc/guix.texi:26828 #, no-wrap msgid "@code{server-name} (default: @code{(list 'default)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26494 +#: guix-git/doc/guix.texi:26831 msgid "A list of server names this server represents. @code{'default} represents the default server for connections matching no other server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26495 +#: guix-git/doc/guix.texi:26832 #, no-wrap msgid "@code{root} (default: @code{\"/srv/http\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26497 +#: guix-git/doc/guix.texi:26834 msgid "Root of the website nginx will serve." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26498 +#: guix-git/doc/guix.texi:26835 #, no-wrap msgid "@code{locations} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26502 +#: guix-git/doc/guix.texi:26839 msgid "A list of @dfn{nginx-location-configuration} or @dfn{nginx-named-location-configuration} records to use within this server block." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26503 +#: guix-git/doc/guix.texi:26840 #, no-wrap msgid "@code{index} (default: @code{(list \"index.html\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26506 +#: guix-git/doc/guix.texi:26843 msgid "Index files to look for when clients ask for a directory. If it cannot be found, Nginx will send the list of files in the directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26507 +#: guix-git/doc/guix.texi:26844 #, no-wrap msgid "@code{try-files} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26510 +#: guix-git/doc/guix.texi:26847 msgid "A list of files whose existence is checked in the specified order. @code{nginx} will use the first file it finds to process the request." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26511 +#: guix-git/doc/guix.texi:26848 #, no-wrap msgid "@code{ssl-certificate} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26514 +#: guix-git/doc/guix.texi:26851 msgid "Where to find the certificate for secure connections. Set it to @code{#f} if you don't have a certificate or you don't want to use HTTPS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26515 +#: guix-git/doc/guix.texi:26852 #, no-wrap msgid "@code{ssl-certificate-key} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26518 +#: guix-git/doc/guix.texi:26855 msgid "Where to find the private key for secure connections. Set it to @code{#f} if you don't have a key or you don't want to use HTTPS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26519 +#: guix-git/doc/guix.texi:26856 #, no-wrap msgid "@code{server-tokens?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26521 +#: guix-git/doc/guix.texi:26858 msgid "Whether the server should add its configuration to response." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26522 +#: guix-git/doc/guix.texi:26859 #, no-wrap msgid "@code{raw-content} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26524 +#: guix-git/doc/guix.texi:26861 msgid "A list of raw lines added to the server block." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26528 +#: guix-git/doc/guix.texi:26865 #, no-wrap msgid "{Data Type} nginx-upstream-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26531 +#: guix-git/doc/guix.texi:26868 msgid "Data type representing the configuration of an nginx @code{upstream} block. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26535 +#: guix-git/doc/guix.texi:26872 msgid "Name for this group of servers." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26536 +#: guix-git/doc/guix.texi:26873 #, no-wrap msgid "servers" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26543 +#: guix-git/doc/guix.texi:26880 msgid "Specify the addresses of the servers in the group. The address can be specified as a IP address (e.g.@: @samp{127.0.0.1}), domain name (e.g.@: @samp{backend1.example.com}) or a path to a UNIX socket using the prefix @samp{unix:}. For addresses using an IP address or domain name, the default port is 80, and a different port can be specified explicitly." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26547 +#: guix-git/doc/guix.texi:26884 #, no-wrap msgid "{Data Type} nginx-location-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26550 +#: guix-git/doc/guix.texi:26887 msgid "Data type representing the configuration of an nginx @code{location} block. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26554 +#: guix-git/doc/guix.texi:26891 msgid "URI which this location block matches." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:26556 +#: guix-git/doc/guix.texi:26893 msgid "nginx-location-configuration body" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26556 guix-git/doc/guix.texi:26577 +#: guix-git/doc/guix.texi:26893 guix-git/doc/guix.texi:26914 #, no-wrap msgid "body" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26563 +#: guix-git/doc/guix.texi:26900 msgid "Body of the location block, specified as a list of strings. This can contain many configuration directives. For example, to pass requests to a upstream server group defined using an @code{nginx-upstream-configuration} block, the following directive would be specified in the body @samp{(list \"proxy_pass http://upstream-name;\")}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26567 +#: guix-git/doc/guix.texi:26904 #, no-wrap msgid "{Data Type} nginx-named-location-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26572 +#: guix-git/doc/guix.texi:26909 msgid "Data type representing the configuration of an nginx named location block. Named location blocks are used for request redirection, and not used for regular request processing. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26576 +#: guix-git/doc/guix.texi:26913 msgid "Name to identify this location block." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26582 +#: guix-git/doc/guix.texi:26919 msgid "@xref{nginx-location-configuration body}, as the body for named location blocks can be used in a similar way to the @code{nginx-location-configuration body}. One restriction is that the body of a named location block cannot contain location blocks." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26586 +#: guix-git/doc/guix.texi:26923 #, no-wrap msgid "Varnish Cache" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26587 +#: guix-git/doc/guix.texi:26924 #, no-wrap msgid "Varnish" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26592 +#: guix-git/doc/guix.texi:26929 msgid "Varnish is a fast cache server that sits in between web applications and end users. It proxies requests from clients and caches the accessed URLs such that multiple requests for the same resource only creates one request to the back-end." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26593 +#: guix-git/doc/guix.texi:26930 #, no-wrap msgid "{Scheme Variable} varnish-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26595 +#: guix-git/doc/guix.texi:26932 msgid "Service type for the Varnish daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26597 +#: guix-git/doc/guix.texi:26934 #, no-wrap msgid "{Data Type} varnish-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26600 +#: guix-git/doc/guix.texi:26937 msgid "Data type representing the @code{varnish} service configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26602 +#: guix-git/doc/guix.texi:26939 #, no-wrap msgid "@code{package} (default: @code{varnish})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26604 +#: guix-git/doc/guix.texi:26941 msgid "The Varnish package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26605 +#: guix-git/doc/guix.texi:26942 #, no-wrap msgid "@code{name} (default: @code{\"default\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26610 +#: guix-git/doc/guix.texi:26947 msgid "A name for this Varnish instance. Varnish will create a directory in @file{/var/varnish/} with this name and keep temporary files there. If the name starts with a forward slash, it is interpreted as an absolute directory name." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26613 +#: guix-git/doc/guix.texi:26950 msgid "Pass the @code{-n} argument to other Varnish programs to connect to the named instance, e.g.@: @command{varnishncsa -n default}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26614 +#: guix-git/doc/guix.texi:26951 #, no-wrap msgid "@code{backend} (default: @code{\"localhost:8080\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26616 +#: guix-git/doc/guix.texi:26953 msgid "The backend to use. This option has no effect if @code{vcl} is set." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26617 +#: guix-git/doc/guix.texi:26954 #, no-wrap msgid "@code{vcl} (default: #f)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26622 +#: guix-git/doc/guix.texi:26959 msgid "The @dfn{VCL} (Varnish Configuration Language) program to run. If this is @code{#f}, Varnish will proxy @code{backend} using the default configuration. Otherwise this must be a file-like object with valid VCL syntax." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26626 +#: guix-git/doc/guix.texi:26963 msgid "For example, to mirror @url{https://www.gnu.org,www.gnu.org} with VCL you can do something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26632 +#: guix-git/doc/guix.texi:26969 #, no-wrap msgid "" "(define %gnu-mirror\n" @@ -47234,7 +47854,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26640 +#: guix-git/doc/guix.texi:26977 #, no-wrap msgid "" "(operating-system\n" @@ -47247,82 +47867,82 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26644 +#: guix-git/doc/guix.texi:26981 msgid "The configuration of an already running Varnish instance can be inspected and changed using the @command{varnishadm} program." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26648 +#: guix-git/doc/guix.texi:26985 msgid "Consult the @url{https://varnish-cache.org/docs/,Varnish User Guide} and @url{https://book.varnish-software.com/4.0/,Varnish Book} for comprehensive documentation on Varnish and its configuration language." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26649 +#: guix-git/doc/guix.texi:26986 #, no-wrap msgid "@code{listen} (default: @code{'(\"localhost:80\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26651 +#: guix-git/doc/guix.texi:26988 msgid "List of addresses Varnish will listen on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26652 +#: guix-git/doc/guix.texi:26989 #, no-wrap msgid "@code{storage} (default: @code{'(\"malloc,128m\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26654 +#: guix-git/doc/guix.texi:26991 msgid "List of storage backends that will be available in VCL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26655 +#: guix-git/doc/guix.texi:26992 #, no-wrap msgid "@code{parameters} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26657 +#: guix-git/doc/guix.texi:26994 msgid "List of run-time parameters in the form @code{'((\"parameter\" . \"value\"))}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26660 +#: guix-git/doc/guix.texi:26997 msgid "Additional arguments to pass to the @command{varnishd} process." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26664 guix-git/doc/guix.texi:26665 +#: guix-git/doc/guix.texi:27001 guix-git/doc/guix.texi:27002 #, no-wrap msgid "Patchwork" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26668 +#: guix-git/doc/guix.texi:27005 msgid "Patchwork is a patch tracking system. It can collect patches sent to a mailing list, and display them in a web interface." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26669 +#: guix-git/doc/guix.texi:27006 #, no-wrap msgid "{Scheme Variable} patchwork-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26671 +#: guix-git/doc/guix.texi:27008 msgid "Service type for Patchwork." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26675 +#: guix-git/doc/guix.texi:27012 msgid "The following example is an example of a minimal service for Patchwork, for the @code{patchwork.example.com} domain." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26695 +#: guix-git/doc/guix.texi:27032 #, no-wrap msgid "" "(service patchwork-service-type\n" @@ -47347,806 +47967,806 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26701 +#: guix-git/doc/guix.texi:27038 msgid "There are three records for configuring the Patchwork service. The @code{} relates to the configuration for Patchwork within the HTTPD service." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26705 +#: guix-git/doc/guix.texi:27042 msgid "The @code{settings-module} field within the @code{} record can be populated with the @code{} record, which describes a settings module that is generated within the Guix store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26709 +#: guix-git/doc/guix.texi:27046 msgid "For the @code{database-configuration} field within the @code{}, the @code{} must be used." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26710 +#: guix-git/doc/guix.texi:27047 #, no-wrap msgid "{Data Type} patchwork-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26713 +#: guix-git/doc/guix.texi:27050 msgid "Data type representing the Patchwork service configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26715 +#: guix-git/doc/guix.texi:27052 #, no-wrap msgid "@code{patchwork} (default: @code{patchwork})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26717 +#: guix-git/doc/guix.texi:27054 msgid "The Patchwork package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26718 +#: guix-git/doc/guix.texi:27055 #, no-wrap msgid "domain" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26721 +#: guix-git/doc/guix.texi:27058 msgid "The domain to use for Patchwork, this is used in the HTTPD service virtual host." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26722 +#: guix-git/doc/guix.texi:27059 #, no-wrap msgid "settings-module" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26728 +#: guix-git/doc/guix.texi:27065 msgid "The settings module to use for Patchwork. As a Django application, Patchwork is configured with a Python module containing the settings. This can either be an instance of the @code{} record, any other record that represents the settings in the store, or a directory outside of the store." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26729 +#: guix-git/doc/guix.texi:27066 #, no-wrap msgid "@code{static-path} (default: @code{\"/static/\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26731 +#: guix-git/doc/guix.texi:27068 msgid "The path under which the HTTPD service should serve the static files." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26732 +#: guix-git/doc/guix.texi:27069 #, no-wrap msgid "getmail-retriever-config" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26736 +#: guix-git/doc/guix.texi:27073 msgid "The getmail-retriever-configuration record value to use with Patchwork. Getmail will be configured with this value, the messages will be delivered to Patchwork." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26740 +#: guix-git/doc/guix.texi:27077 #, no-wrap msgid "{Data Type} patchwork-settings-module" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26745 +#: guix-git/doc/guix.texi:27082 msgid "Data type representing a settings module for Patchwork. Some of these settings relate directly to Patchwork, but others relate to Django, the web framework used by Patchwork, or the Django Rest Framework library. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26747 +#: guix-git/doc/guix.texi:27084 #, no-wrap msgid "@code{database-configuration} (default: @code{(patchwork-database-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26750 +#: guix-git/doc/guix.texi:27087 msgid "The database connection settings used for Patchwork. See the @code{} record type for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26751 +#: guix-git/doc/guix.texi:27088 #, no-wrap msgid "@code{secret-key-file} (default: @code{\"/etc/patchwork/django-secret-key\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26754 +#: guix-git/doc/guix.texi:27091 msgid "Patchwork, as a Django web application uses a secret key for cryptographically signing values. This file should contain a unique unpredictable value." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26757 +#: guix-git/doc/guix.texi:27094 msgid "If this file does not exist, it will be created and populated with a random value by the patchwork-setup shepherd service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26759 +#: guix-git/doc/guix.texi:27096 msgid "This setting relates to Django." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26760 +#: guix-git/doc/guix.texi:27097 #, no-wrap msgid "allowed-hosts" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26763 +#: guix-git/doc/guix.texi:27100 msgid "A list of valid hosts for this Patchwork service. This should at least include the domain specified in the @code{} record." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26765 guix-git/doc/guix.texi:26779 -#: guix-git/doc/guix.texi:26785 guix-git/doc/guix.texi:26791 +#: guix-git/doc/guix.texi:27102 guix-git/doc/guix.texi:27116 +#: guix-git/doc/guix.texi:27122 guix-git/doc/guix.texi:27128 msgid "This is a Django setting." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26766 +#: guix-git/doc/guix.texi:27103 #, no-wrap msgid "default-from-email" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26768 +#: guix-git/doc/guix.texi:27105 msgid "The email address from which Patchwork should send email by default." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26770 guix-git/doc/guix.texi:26796 -#: guix-git/doc/guix.texi:26801 guix-git/doc/guix.texi:26806 +#: guix-git/doc/guix.texi:27107 guix-git/doc/guix.texi:27133 +#: guix-git/doc/guix.texi:27138 guix-git/doc/guix.texi:27143 msgid "This is a Patchwork setting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26771 +#: guix-git/doc/guix.texi:27108 #, no-wrap msgid "@code{static-url} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26774 +#: guix-git/doc/guix.texi:27111 msgid "The URL to use when serving static assets. It can be part of a URL, or a full URL, but must end in a @code{/}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26777 +#: guix-git/doc/guix.texi:27114 msgid "If the default value is used, the @code{static-path} value from the @code{} record will be used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26780 +#: guix-git/doc/guix.texi:27117 #, no-wrap msgid "@code{admins} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26783 +#: guix-git/doc/guix.texi:27120 msgid "Email addresses to send the details of errors that occur. Each value should be a list containing two elements, the name and then the email address." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26789 +#: guix-git/doc/guix.texi:27126 msgid "Whether to run Patchwork in debug mode. If set to @code{#t}, detailed error messages will be shown." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26792 +#: guix-git/doc/guix.texi:27129 #, no-wrap msgid "@code{enable-rest-api?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26794 +#: guix-git/doc/guix.texi:27131 msgid "Whether to enable the Patchwork REST API." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26797 +#: guix-git/doc/guix.texi:27134 #, no-wrap msgid "@code{enable-xmlrpc?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26799 +#: guix-git/doc/guix.texi:27136 msgid "Whether to enable the XML RPC API." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26802 +#: guix-git/doc/guix.texi:27139 #, no-wrap msgid "@code{force-https-links?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26804 +#: guix-git/doc/guix.texi:27141 msgid "Whether to use HTTPS links on Patchwork pages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26809 +#: guix-git/doc/guix.texi:27146 msgid "Extra code to place at the end of the Patchwork settings module." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26813 +#: guix-git/doc/guix.texi:27150 #, no-wrap msgid "{Data Type} patchwork-database-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26815 +#: guix-git/doc/guix.texi:27152 msgid "Data type representing the database configuration for Patchwork." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26817 +#: guix-git/doc/guix.texi:27154 #, no-wrap msgid "@code{engine} (default: @code{\"django.db.backends.postgresql_psycopg2\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26819 +#: guix-git/doc/guix.texi:27156 msgid "The database engine to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26820 +#: guix-git/doc/guix.texi:27157 #, no-wrap msgid "@code{name} (default: @code{\"patchwork\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26822 +#: guix-git/doc/guix.texi:27159 msgid "The name of the database to use." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26825 +#: guix-git/doc/guix.texi:27162 msgid "The user to connect to the database as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26826 +#: guix-git/doc/guix.texi:27163 #, no-wrap msgid "@code{password} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26828 +#: guix-git/doc/guix.texi:27165 msgid "The password to use when connecting to the database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26829 +#: guix-git/doc/guix.texi:27166 #, no-wrap msgid "@code{host} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26831 +#: guix-git/doc/guix.texi:27168 msgid "The host to make the database connection to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26832 +#: guix-git/doc/guix.texi:27169 #, no-wrap msgid "@code{port} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26834 +#: guix-git/doc/guix.texi:27171 msgid "The port on which to connect to the database." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26838 +#: guix-git/doc/guix.texi:27175 #, no-wrap msgid "Mumi" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26840 +#: guix-git/doc/guix.texi:27177 #, no-wrap msgid "Mumi, Debbugs Web interface" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26841 +#: guix-git/doc/guix.texi:27178 #, no-wrap msgid "Debbugs, Mumi Web interface" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26846 +#: guix-git/doc/guix.texi:27183 msgid "@uref{https://git.elephly.net/gitweb.cgi?p=software/mumi.git, Mumi} is a Web interface to the Debbugs bug tracker, by default for @uref{https://bugs.gnu.org, the GNU instance}. Mumi is a Web server, but it also fetches and indexes mail retrieved from Debbugs." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26847 +#: guix-git/doc/guix.texi:27184 #, no-wrap msgid "{Scheme Variable} mumi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26849 +#: guix-git/doc/guix.texi:27186 msgid "This is the service type for Mumi." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26851 +#: guix-git/doc/guix.texi:27188 #, no-wrap msgid "{Data Type} mumi-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26854 +#: guix-git/doc/guix.texi:27191 msgid "Data type representing the Mumi service configuration. This type has the following fields:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26856 +#: guix-git/doc/guix.texi:27193 #, no-wrap msgid "@code{mumi} (default: @code{mumi})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26858 +#: guix-git/doc/guix.texi:27195 msgid "The Mumi package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26859 +#: guix-git/doc/guix.texi:27196 #, no-wrap msgid "@code{mailer?} (default: @code{#true})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26861 +#: guix-git/doc/guix.texi:27198 msgid "Whether to enable or disable the mailer component." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26862 +#: guix-git/doc/guix.texi:27199 #, no-wrap msgid "mumi-configuration-sender" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26864 +#: guix-git/doc/guix.texi:27201 msgid "The email address used as the sender for comments." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26865 +#: guix-git/doc/guix.texi:27202 #, no-wrap msgid "mumi-configuration-smtp" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26870 +#: guix-git/doc/guix.texi:27207 msgid "A URI to configure the SMTP settings for Mailutils. This could be something like @code{sendmail:///path/to/bin/msmtp} or any other URI supported by Mailutils. @xref{SMTP Mailboxes, SMTP Mailboxes,, mailutils, GNU@tie{}Mailutils}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26875 +#: guix-git/doc/guix.texi:27212 #, no-wrap msgid "FastCGI" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26876 +#: guix-git/doc/guix.texi:27213 #, no-wrap msgid "fastcgi" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26877 +#: guix-git/doc/guix.texi:27214 #, no-wrap msgid "fcgiwrap" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26884 +#: guix-git/doc/guix.texi:27221 msgid "FastCGI is an interface between the front-end and the back-end of a web service. It is a somewhat legacy facility; new web services should generally just talk HTTP between the front-end and the back-end. However there are a number of back-end services such as PHP or the optimized HTTP Git repository access that use FastCGI, so we have support for it in Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26891 +#: guix-git/doc/guix.texi:27228 msgid "To use FastCGI, you configure the front-end web server (e.g., nginx) to dispatch some subset of its requests to the fastcgi backend, which listens on a local TCP or UNIX socket. There is an intermediary @code{fcgiwrap} program that sits between the actual backend process and the web server. The front-end indicates which backend program to run, passing that information to the @code{fcgiwrap} process." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26892 +#: guix-git/doc/guix.texi:27229 #, no-wrap msgid "{Scheme Variable} fcgiwrap-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26894 +#: guix-git/doc/guix.texi:27231 msgid "A service type for the @code{fcgiwrap} FastCGI proxy." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26896 +#: guix-git/doc/guix.texi:27233 #, no-wrap msgid "{Data Type} fcgiwrap-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26899 +#: guix-git/doc/guix.texi:27236 msgid "Data type representing the configuration of the @code{fcgiwrap} service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26900 +#: guix-git/doc/guix.texi:27237 #, no-wrap msgid "@code{package} (default: @code{fcgiwrap})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26902 +#: guix-git/doc/guix.texi:27239 msgid "The fcgiwrap package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26903 +#: guix-git/doc/guix.texi:27240 #, no-wrap msgid "@code{socket} (default: @code{tcp:127.0.0.1:9000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26909 +#: guix-git/doc/guix.texi:27246 msgid "The socket on which the @code{fcgiwrap} process should listen, as a string. Valid @var{socket} values include @code{unix:@var{/path/to/unix/socket}}, @code{tcp:@var{dot.ted.qu.ad}:@var{port}} and @code{tcp6:[@var{ipv6_addr}]:port}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26910 +#: guix-git/doc/guix.texi:27247 #, no-wrap msgid "@code{user} (default: @code{fcgiwrap})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:26911 +#: guix-git/doc/guix.texi:27248 #, no-wrap msgid "@code{group} (default: @code{fcgiwrap})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26916 +#: guix-git/doc/guix.texi:27253 msgid "The user and group names, as strings, under which to run the @code{fcgiwrap} process. The @code{fastcgi} service will ensure that if the user asks for the specific user or group names @code{fcgiwrap} that the corresponding user and/or group is present on the system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26923 +#: guix-git/doc/guix.texi:27260 msgid "It is possible to configure a FastCGI-backed web service to pass HTTP authentication information from the front-end to the back-end, and to allow @code{fcgiwrap} to run the back-end process as a corresponding local user. To enable this capability on the back-end, run @code{fcgiwrap} as the @code{root} user and group. Note that this capability also has to be configured on the front-end as well." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26926 +#: guix-git/doc/guix.texi:27263 #, no-wrap msgid "php-fpm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26929 +#: guix-git/doc/guix.texi:27266 msgid "PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI implementation with some additional features useful for sites of any size." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26931 +#: guix-git/doc/guix.texi:27268 msgid "These features include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26932 +#: guix-git/doc/guix.texi:27269 #, no-wrap msgid "Adaptive process spawning" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26933 +#: guix-git/doc/guix.texi:27270 #, no-wrap msgid "Basic statistics (similar to Apache's mod_status)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26934 +#: guix-git/doc/guix.texi:27271 #, no-wrap msgid "Advanced process management with graceful stop/start" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26935 +#: guix-git/doc/guix.texi:27272 #, no-wrap msgid "Ability to start workers with different uid/gid/chroot/environment" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:26937 +#: guix-git/doc/guix.texi:27274 msgid "and different php.ini (replaces safe_mode)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26937 +#: guix-git/doc/guix.texi:27274 #, no-wrap msgid "Stdout & stderr logging" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26938 +#: guix-git/doc/guix.texi:27275 #, no-wrap msgid "Emergency restart in case of accidental opcode cache destruction" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26939 +#: guix-git/doc/guix.texi:27276 #, no-wrap msgid "Accelerated upload support" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26940 +#: guix-git/doc/guix.texi:27277 #, no-wrap msgid "Support for a \"slowlog\"" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26941 +#: guix-git/doc/guix.texi:27278 #, no-wrap msgid "Enhancements to FastCGI, such as fastcgi_finish_request() -" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:26944 +#: guix-git/doc/guix.texi:27281 msgid "a special function to finish request & flush all data while continuing to do something time-consuming (video converting, stats processing, etc.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26946 +#: guix-git/doc/guix.texi:27283 msgid "...@: and much more." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26947 +#: guix-git/doc/guix.texi:27284 #, no-wrap msgid "{Scheme Variable} php-fpm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26949 +#: guix-git/doc/guix.texi:27286 msgid "A Service type for @code{php-fpm}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26951 +#: guix-git/doc/guix.texi:27288 #, no-wrap msgid "{Data Type} php-fpm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26953 +#: guix-git/doc/guix.texi:27290 msgid "Data Type for php-fpm service configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26954 +#: guix-git/doc/guix.texi:27291 #, no-wrap msgid "@code{php} (default: @code{php})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26956 +#: guix-git/doc/guix.texi:27293 msgid "The php package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26956 +#: guix-git/doc/guix.texi:27293 #, no-wrap msgid "@code{socket} (default: @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.sock\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26958 +#: guix-git/doc/guix.texi:27295 msgid "The address on which to accept FastCGI requests. Valid syntaxes are:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26959 +#: guix-git/doc/guix.texi:27296 #, no-wrap msgid "\"ip.add.re.ss:port\"" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26961 +#: guix-git/doc/guix.texi:27298 msgid "Listen on a TCP socket to a specific address on a specific port." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26961 +#: guix-git/doc/guix.texi:27298 #, no-wrap msgid "\"port\"" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26963 +#: guix-git/doc/guix.texi:27300 msgid "Listen on a TCP socket to all addresses on a specific port." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26963 +#: guix-git/doc/guix.texi:27300 #, no-wrap msgid "\"/path/to/unix/socket\"" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26965 +#: guix-git/doc/guix.texi:27302 msgid "Listen on a unix socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26967 +#: guix-git/doc/guix.texi:27304 #, no-wrap msgid "@code{user} (default: @code{php-fpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26969 +#: guix-git/doc/guix.texi:27306 msgid "User who will own the php worker processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26969 +#: guix-git/doc/guix.texi:27306 #, no-wrap msgid "@code{group} (default: @code{php-fpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26971 +#: guix-git/doc/guix.texi:27308 msgid "Group of the worker processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26971 +#: guix-git/doc/guix.texi:27308 #, no-wrap msgid "@code{socket-user} (default: @code{php-fpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26973 +#: guix-git/doc/guix.texi:27310 msgid "User who can speak to the php-fpm socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26973 +#: guix-git/doc/guix.texi:27310 #, no-wrap msgid "@code{socket-group} (default: @code{nginx})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26975 +#: guix-git/doc/guix.texi:27312 msgid "Group that can speak to the php-fpm socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26975 +#: guix-git/doc/guix.texi:27312 #, no-wrap msgid "@code{pid-file} (default: @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.pid\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26978 +#: guix-git/doc/guix.texi:27315 msgid "The process id of the php-fpm process is written to this file once the service has started." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26978 +#: guix-git/doc/guix.texi:27315 #, no-wrap msgid "@code{log-file} (default: @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.log\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26980 +#: guix-git/doc/guix.texi:27317 msgid "Log for the php-fpm master process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26980 +#: guix-git/doc/guix.texi:27317 #, no-wrap msgid "@code{process-manager} (default: @code{(php-fpm-dynamic-process-manager-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26983 +#: guix-git/doc/guix.texi:27320 msgid "Detailed settings for the php-fpm process manager. Must be one of:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26984 +#: guix-git/doc/guix.texi:27321 #, no-wrap msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26985 +#: guix-git/doc/guix.texi:27322 #, no-wrap msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26986 +#: guix-git/doc/guix.texi:27323 #, no-wrap msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26988 +#: guix-git/doc/guix.texi:27325 #, no-wrap msgid "@code{display-errors} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26993 +#: guix-git/doc/guix.texi:27330 msgid "Determines whether php errors and warning should be sent to clients and displayed in their browsers. This is useful for local php development, but a security risk for public sites, as error messages can reveal passwords and personal data." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26993 +#: guix-git/doc/guix.texi:27330 #, no-wrap msgid "@code{timezone} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26995 +#: guix-git/doc/guix.texi:27332 msgid "Specifies @code{php_admin_value[date.timezone]} parameter." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26995 +#: guix-git/doc/guix.texi:27332 #, no-wrap msgid "@code{workers-logfile} (default @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.www.log\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26998 +#: guix-git/doc/guix.texi:27335 msgid "This file will log the @code{stderr} outputs of php worker processes. Can be set to @code{#f} to disable logging." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26998 +#: guix-git/doc/guix.texi:27335 #, no-wrap msgid "@code{file} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27001 +#: guix-git/doc/guix.texi:27338 msgid "An optional override of the whole configuration. You can use the @code{mixed-text-file} function or an absolute filepath for it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27001 +#: guix-git/doc/guix.texi:27338 #, no-wrap msgid "@code{php-ini-file} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27005 +#: guix-git/doc/guix.texi:27342 msgid "An optional override of the default php settings. It may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). You can use the @code{mixed-text-file} function or an absolute filepath for it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27009 +#: guix-git/doc/guix.texi:27346 msgid "For local development it is useful to set a higher timeout and memory limit for spawned php processes. This be accomplished with the following operating system configuration snippet:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27014 +#: guix-git/doc/guix.texi:27351 #, no-wrap msgid "" "(define %local-php-ini\n" @@ -48157,7 +48777,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27021 +#: guix-git/doc/guix.texi:27358 #, no-wrap msgid "" "(operating-system\n" @@ -48169,118 +48789,118 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27026 +#: guix-git/doc/guix.texi:27363 msgid "Consult the @url{https://www.php.net/manual/en/ini.core.php,core php.ini directives} for comprehensive documentation on the acceptable @file{php.ini} directives." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27029 +#: guix-git/doc/guix.texi:27366 #, no-wrap msgid "{Data type} php-fpm-dynamic-process-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27033 +#: guix-git/doc/guix.texi:27370 msgid "Data Type for the @code{dynamic} php-fpm process manager. With the @code{dynamic} process manager, spare worker processes are kept around based on its configured limits." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27034 guix-git/doc/guix.texi:27050 -#: guix-git/doc/guix.texi:27060 +#: guix-git/doc/guix.texi:27371 guix-git/doc/guix.texi:27387 +#: guix-git/doc/guix.texi:27397 #, no-wrap msgid "@code{max-children} (default: @code{5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27036 guix-git/doc/guix.texi:27052 -#: guix-git/doc/guix.texi:27062 +#: guix-git/doc/guix.texi:27373 guix-git/doc/guix.texi:27389 +#: guix-git/doc/guix.texi:27399 msgid "Maximum of worker processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27036 +#: guix-git/doc/guix.texi:27373 #, no-wrap msgid "@code{start-servers} (default: @code{2})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27038 +#: guix-git/doc/guix.texi:27375 msgid "How many worker processes should be started on start-up." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27038 +#: guix-git/doc/guix.texi:27375 #, no-wrap msgid "@code{min-spare-servers} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27040 +#: guix-git/doc/guix.texi:27377 msgid "How many spare worker processes should be kept around at minimum." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27040 +#: guix-git/doc/guix.texi:27377 #, no-wrap msgid "@code{max-spare-servers} (default: @code{3})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27042 +#: guix-git/doc/guix.texi:27379 msgid "How many spare worker processes should be kept around at maximum." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27045 +#: guix-git/doc/guix.texi:27382 #, no-wrap msgid "{Data type} php-fpm-static-process-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27049 +#: guix-git/doc/guix.texi:27386 msgid "Data Type for the @code{static} php-fpm process manager. With the @code{static} process manager, an unchanging number of worker processes are created." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27055 +#: guix-git/doc/guix.texi:27392 #, no-wrap msgid "{Data type} php-fpm-on-demand-process-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27059 +#: guix-git/doc/guix.texi:27396 msgid "Data Type for the @code{on-demand} php-fpm process manager. With the @code{on-demand} process manager, worker processes are only created as requests arrive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27062 +#: guix-git/doc/guix.texi:27399 #, no-wrap msgid "@code{process-idle-timeout} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27064 +#: guix-git/doc/guix.texi:27401 msgid "The time in seconds after which a process with no requests is killed." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27068 +#: guix-git/doc/guix.texi:27405 #, no-wrap msgid "{Scheme Procedure} nginx-php-location @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27074 +#: guix-git/doc/guix.texi:27411 msgid "[#:nginx-package nginx] @ [socket (string-append \"/var/run/php\" @ (version-major (package-version php)) @ \"-fpm.sock\")] A helper function to quickly add php to an @code{nginx-server-configuration}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27077 +#: guix-git/doc/guix.texi:27414 msgid "A simple services setup for nginx with php can look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27090 +#: guix-git/doc/guix.texi:27427 #, no-wrap msgid "" "(services (cons* (service dhcp-client-service-type)\n" @@ -48298,34 +48918,34 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27092 +#: guix-git/doc/guix.texi:27429 #, no-wrap msgid "cat-avatar-generator" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27096 +#: guix-git/doc/guix.texi:27433 msgid "The cat avatar generator is a simple service to demonstrate the use of php-fpm in @code{Nginx}. It is used to generate cat avatar from a seed, for instance the hash of a user's email address." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27097 +#: guix-git/doc/guix.texi:27434 #, no-wrap msgid "{Scheme Procedure} cat-avatar-generator-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27105 +#: guix-git/doc/guix.texi:27442 msgid "[#:cache-dir \"/var/cache/cat-avatar-generator\"] @ [#:package cat-avatar-generator] @ [#:configuration (nginx-server-configuration)] Returns an nginx-server-configuration that inherits @code{configuration}. It extends the nginx configuration to add a server block that serves @code{package}, a version of cat-avatar-generator. During execution, cat-avatar-generator will be able to use @code{cache-dir} as its cache directory." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27108 +#: guix-git/doc/guix.texi:27445 msgid "A simple setup for cat-avatar-generator can look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27115 +#: guix-git/doc/guix.texi:27452 #, no-wrap msgid "" "(services (cons* (cat-avatar-generator-service\n" @@ -48337,177 +48957,177 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27117 +#: guix-git/doc/guix.texi:27454 #, no-wrap msgid "Hpcguix-web" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27119 +#: guix-git/doc/guix.texi:27456 #, no-wrap msgid "hpcguix-web" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27124 +#: guix-git/doc/guix.texi:27461 msgid "The @uref{https://github.com/UMCUGenetics/hpcguix-web/, hpcguix-web} program is a customizable web interface to browse Guix packages, initially designed for users of high-performance computing (HPC) clusters." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27125 +#: guix-git/doc/guix.texi:27462 #, no-wrap msgid "{Scheme Variable} hpcguix-web-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27127 +#: guix-git/doc/guix.texi:27464 msgid "The service type for @code{hpcguix-web}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27129 +#: guix-git/doc/guix.texi:27466 #, no-wrap msgid "{Data Type} hpcguix-web-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27131 +#: guix-git/doc/guix.texi:27468 msgid "Data type for the hpcguix-web service configuration." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:27133 +#: guix-git/doc/guix.texi:27470 #, no-wrap msgid "specs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27136 +#: guix-git/doc/guix.texi:27473 msgid "A gexp (@pxref{G-Expressions}) specifying the hpcguix-web service configuration. The main items available in this spec are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27138 +#: guix-git/doc/guix.texi:27475 #, no-wrap msgid "@code{title-prefix} (default: @code{\"hpcguix | \"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27140 +#: guix-git/doc/guix.texi:27477 msgid "The page title prefix." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27141 +#: guix-git/doc/guix.texi:27478 #, no-wrap msgid "@code{guix-command} (default: @code{\"guix\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27143 +#: guix-git/doc/guix.texi:27480 msgid "The @command{guix} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27144 +#: guix-git/doc/guix.texi:27481 #, no-wrap msgid "@code{package-filter-proc} (default: @code{(const #t)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27146 +#: guix-git/doc/guix.texi:27483 msgid "A procedure specifying how to filter packages that are displayed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27147 +#: guix-git/doc/guix.texi:27484 #, no-wrap msgid "@code{package-page-extension-proc} (default: @code{(const '())})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27149 +#: guix-git/doc/guix.texi:27486 msgid "Extension package for @code{hpcguix-web}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27150 +#: guix-git/doc/guix.texi:27487 #, no-wrap msgid "@code{menu} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27152 +#: guix-git/doc/guix.texi:27489 msgid "Additional entry in page @code{menu}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27153 +#: guix-git/doc/guix.texi:27490 #, no-wrap msgid "@code{channels} (default: @code{%default-channels})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27155 +#: guix-git/doc/guix.texi:27492 msgid "List of channels from which the package list is built (@pxref{Channels})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27156 +#: guix-git/doc/guix.texi:27493 #, no-wrap msgid "@code{package-list-expiration} (default: @code{(* 12 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27159 +#: guix-git/doc/guix.texi:27496 msgid "The expiration time, in seconds, after which the package list is rebuilt from the latest instances of the given channels." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27164 +#: guix-git/doc/guix.texi:27501 msgid "See the hpcguix-web repository for a @uref{https://github.com/UMCUGenetics/hpcguix-web/blob/master/hpcweb-configuration.scm, complete example}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27165 +#: guix-git/doc/guix.texi:27502 #, no-wrap msgid "@code{package} (default: @code{hpcguix-web})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27167 +#: guix-git/doc/guix.texi:27504 msgid "The hpcguix-web package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27168 +#: guix-git/doc/guix.texi:27505 #, no-wrap msgid "@code{address} (default: @code{\"127.0.0.1\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27170 +#: guix-git/doc/guix.texi:27507 msgid "The IP address to listen to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27171 +#: guix-git/doc/guix.texi:27508 #, no-wrap msgid "@code{port} (default: @code{5000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27173 +#: guix-git/doc/guix.texi:27510 msgid "The port number to listen to." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27177 +#: guix-git/doc/guix.texi:27514 msgid "A typical hpcguix-web service declaration looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27186 +#: guix-git/doc/guix.texi:27523 #, no-wrap msgid "" "(service hpcguix-web-service-type\n" @@ -48520,39 +49140,39 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:27193 +#: guix-git/doc/guix.texi:27530 msgid "The hpcguix-web service periodically updates the package list it publishes by pulling channels from Git. To that end, it needs to access X.509 certificates so that it can authenticate Git servers when communicating over HTTPS, and it assumes that @file{/etc/ssl/certs} contains those certificates." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:27197 +#: guix-git/doc/guix.texi:27534 msgid "Thus, make sure to add @code{nss-certs} or another certificate package to the @code{packages} field of your configuration. @ref{X.509 Certificates}, for more information on X.509 certificates." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27199 guix-git/doc/guix.texi:27201 +#: guix-git/doc/guix.texi:27536 guix-git/doc/guix.texi:27538 #, no-wrap msgid "gmnisrv" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27204 +#: guix-git/doc/guix.texi:27541 msgid "The @uref{https://git.sr.ht/~sircmpwn/gmnisrv, gmnisrv} program is a simple @uref{https://gemini.circumlunar.space/, Gemini} protocol server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27205 +#: guix-git/doc/guix.texi:27542 #, no-wrap msgid "{Scheme Variable} gmnisrv-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27208 +#: guix-git/doc/guix.texi:27545 msgid "This is the type of the gmnisrv service, whose value should be a @code{gmnisrv-configuration} object, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27213 +#: guix-git/doc/guix.texi:27550 #, no-wrap msgid "" "(service gmnisrv-service-type\n" @@ -48561,68 +49181,68 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27216 +#: guix-git/doc/guix.texi:27553 #, no-wrap msgid "{Data Type} gmnisrv-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27218 +#: guix-git/doc/guix.texi:27555 msgid "Data type representing the configuration of gmnisrv." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27220 +#: guix-git/doc/guix.texi:27557 #, no-wrap msgid "@code{package} (default: @var{gmnisrv})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27222 +#: guix-git/doc/guix.texi:27559 msgid "Package object of the gmnisrv server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27223 +#: guix-git/doc/guix.texi:27560 #, no-wrap msgid "@code{config-file} (default: @code{%default-gmnisrv-config-file})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27229 +#: guix-git/doc/guix.texi:27566 msgid "File-like object of the gmnisrv configuration file to use. The default configuration listens on port 1965 and serves files from @file{/srv/gemini}. Certificates are stored in @file{/var/lib/gemini/certs}. For more information, run @command{man gmnisrv} and @command{man gmnisrv.ini}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27233 +#: guix-git/doc/guix.texi:27570 #, no-wrap msgid "Agate" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27235 +#: guix-git/doc/guix.texi:27572 #, no-wrap msgid "agate" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27240 +#: guix-git/doc/guix.texi:27577 msgid "The @uref{gemini://qwertqwefsday.eu/agate.gmi, Agate} (@uref{https://github.com/mbrubeck/agate, GitHub page over HTTPS}) program is a simple @uref{https://gemini.circumlunar.space/, Gemini} protocol server written in Rust." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27241 +#: guix-git/doc/guix.texi:27578 #, no-wrap msgid "{Scheme Variable} agate-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27244 +#: guix-git/doc/guix.texi:27581 msgid "This is the type of the agate service, whose value should be an @code{agate-service-type} object, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27251 +#: guix-git/doc/guix.texi:27588 #, no-wrap msgid "" "(service agate-service-type\n" @@ -48633,17 +49253,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27256 +#: guix-git/doc/guix.texi:27593 msgid "The example above represents the minimal tweaking necessary to get Agate up and running. Specifying the path to the certificate and key is always necessary, as the Gemini protocol requires TLS by default." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27259 +#: guix-git/doc/guix.texi:27596 msgid "To obtain a certificate and a key, you could, for example, use OpenSSL, running a command similar to the following example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:27263 +#: guix-git/doc/guix.texi:27600 #, no-wrap msgid "" "openssl req -x509 -newkey rsa:4096 -keyout key.rsa -out cert.pem \\\n" @@ -48651,220 +49271,220 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27268 +#: guix-git/doc/guix.texi:27605 msgid "Of course, you'll have to replace @i{example.com} with your own domain name, and then point the Agate configuration towards the path of the generated key and certificate." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27271 +#: guix-git/doc/guix.texi:27608 #, no-wrap msgid "{Data Type} agate-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27273 +#: guix-git/doc/guix.texi:27610 msgid "Data type representing the configuration of Agate." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27275 +#: guix-git/doc/guix.texi:27612 #, no-wrap msgid "@code{package} (default: @code{agate})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27277 +#: guix-git/doc/guix.texi:27614 msgid "The package object of the Agate server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27278 +#: guix-git/doc/guix.texi:27615 #, no-wrap msgid "@code{content} (default: @file{\"/srv/gemini\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27280 +#: guix-git/doc/guix.texi:27617 msgid "The directory from which Agate will serve files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27281 +#: guix-git/doc/guix.texi:27618 #, no-wrap msgid "@code{cert} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27284 +#: guix-git/doc/guix.texi:27621 msgid "The path to the TLS certificate PEM file to be used for encrypted connections. Must be filled in with a value from the user." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27285 guix-git/doc/guix.texi:27721 +#: guix-git/doc/guix.texi:27622 guix-git/doc/guix.texi:28058 #, no-wrap msgid "@code{key} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27288 +#: guix-git/doc/guix.texi:27625 msgid "The path to the PKCS8 private key file to be used for encrypted connections. Must be filled in with a value from the user." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27289 +#: guix-git/doc/guix.texi:27626 #, no-wrap msgid "@code{addr} (default: @code{'(\"0.0.0.0:1965\" \"[::]:1965\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27291 +#: guix-git/doc/guix.texi:27628 msgid "A list of the addresses to listen on." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27294 +#: guix-git/doc/guix.texi:27631 msgid "The domain name of this Gemini server. Optional." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27295 +#: guix-git/doc/guix.texi:27632 #, no-wrap msgid "@code{lang} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27297 +#: guix-git/doc/guix.texi:27634 msgid "RFC 4646 language code(s) for text/gemini documents. Optional." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27298 +#: guix-git/doc/guix.texi:27635 #, no-wrap msgid "@code{silent?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27300 +#: guix-git/doc/guix.texi:27637 msgid "Set to @code{#t} to disable logging output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27301 +#: guix-git/doc/guix.texi:27638 #, no-wrap msgid "@code{serve-secret?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27304 +#: guix-git/doc/guix.texi:27641 msgid "Set to @code{#t} to serve secret files (files/directories starting with a dot)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27305 +#: guix-git/doc/guix.texi:27642 #, no-wrap msgid "@code{log-ip?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27307 +#: guix-git/doc/guix.texi:27644 msgid "Whether or not to output IP addresses when logging." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27308 +#: guix-git/doc/guix.texi:27645 #, no-wrap msgid "@code{user} (default: @code{\"agate\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27310 +#: guix-git/doc/guix.texi:27647 msgid "Owner of the @code{agate} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27311 +#: guix-git/doc/guix.texi:27648 #, no-wrap msgid "@code{group} (default: @code{\"agate\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27313 +#: guix-git/doc/guix.texi:27650 msgid "Owner's group of the @code{agate} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27314 +#: guix-git/doc/guix.texi:27651 #, no-wrap msgid "@code{log-file} (default: @file{\"/var/log/agate.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27316 +#: guix-git/doc/guix.texi:27653 msgid "The file which should store the logging output of Agate." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27323 +#: guix-git/doc/guix.texi:27660 #, no-wrap msgid "Web" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27324 +#: guix-git/doc/guix.texi:27661 #, no-wrap msgid "HTTP, HTTPS" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27325 +#: guix-git/doc/guix.texi:27662 #, no-wrap msgid "Let's Encrypt" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27326 +#: guix-git/doc/guix.texi:27663 #, no-wrap msgid "TLS certificates" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27333 +#: guix-git/doc/guix.texi:27670 msgid "The @code{(gnu services certbot)} module provides a service to automatically obtain a valid TLS certificate from the Let's Encrypt certificate authority. These certificates can then be used to serve content securely over HTTPS or other TLS-based protocols, with the knowledge that the client will be able to verify the server's authenticity." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27345 +#: guix-git/doc/guix.texi:27682 msgid "@url{https://letsencrypt.org/, Let's Encrypt} provides the @code{certbot} tool to automate the certification process. This tool first securely generates a key on the server. It then makes a request to the Let's Encrypt certificate authority (CA) to sign the key. The CA checks that the request originates from the host in question by using a challenge-response protocol, requiring the server to provide its response over HTTP@. If that protocol completes successfully, the CA signs the key, resulting in a certificate. That certificate is valid for a limited period of time, and therefore to continue to provide TLS services, the server needs to periodically ask the CA to renew its signature." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27352 +#: guix-git/doc/guix.texi:27689 msgid "The certbot service automates this process: the initial key generation, the initial certification request to the Let's Encrypt service, the web server challenge/response integration, writing the certificate to disk, the automated periodic renewals, and the deployment tasks associated with the renewal (e.g.@: reloading services, copying keys with different permissions)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27358 +#: guix-git/doc/guix.texi:27695 msgid "Certbot is run twice a day, at a random minute within the hour. It won't do anything until your certificates are due for renewal or revoked, but running it regularly would give your service a chance of staying online in case a Let's Encrypt-initiated revocation happened for some reason." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27362 +#: guix-git/doc/guix.texi:27699 msgid "By using this service, you agree to the ACME Subscriber Agreement, which can be found there: @url{https://acme-v01.api.letsencrypt.org/directory}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27363 +#: guix-git/doc/guix.texi:27700 #, no-wrap msgid "{Scheme Variable} certbot-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27366 +#: guix-git/doc/guix.texi:27703 msgid "A service type for the @code{certbot} Let's Encrypt client. Its value must be a @code{certbot-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27373 +#: guix-git/doc/guix.texi:27710 #, no-wrap msgid "" "(define %nginx-deploy-hook\n" @@ -48876,7 +49496,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27384 +#: guix-git/doc/guix.texi:27721 #, no-wrap msgid "" "(service certbot-service-type\n" @@ -48892,241 +49512,241 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27387 +#: guix-git/doc/guix.texi:27724 msgid "See below for details about @code{certbot-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27389 +#: guix-git/doc/guix.texi:27726 #, no-wrap msgid "{Data Type} certbot-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27392 +#: guix-git/doc/guix.texi:27729 msgid "Data type representing the configuration of the @code{certbot} service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27394 +#: guix-git/doc/guix.texi:27731 #, no-wrap msgid "@code{package} (default: @code{certbot})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27396 +#: guix-git/doc/guix.texi:27733 msgid "The certbot package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27397 +#: guix-git/doc/guix.texi:27734 #, no-wrap msgid "@code{webroot} (default: @code{/var/www})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27400 +#: guix-git/doc/guix.texi:27737 msgid "The directory from which to serve the Let's Encrypt challenge/response files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27401 +#: guix-git/doc/guix.texi:27738 #, no-wrap msgid "@code{certificates} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27405 +#: guix-git/doc/guix.texi:27742 msgid "A list of @code{certificates-configuration}s for which to generate certificates and request signatures. Each certificate has a @code{name} and several @code{domains}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27406 +#: guix-git/doc/guix.texi:27743 #, no-wrap msgid "@code{email} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27410 +#: guix-git/doc/guix.texi:27747 msgid "Optional email address used for registration and recovery contact. Setting this is encouraged as it allows you to receive important notifications about the account and issued certificates." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27411 guix-git/doc/guix.texi:29158 +#: guix-git/doc/guix.texi:27748 guix-git/doc/guix.texi:29495 #, no-wrap msgid "@code{server} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27414 +#: guix-git/doc/guix.texi:27751 msgid "Optional URL of ACME server. Setting this overrides certbot's default, which is the Let's Encrypt server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27415 +#: guix-git/doc/guix.texi:27752 #, no-wrap msgid "@code{rsa-key-size} (default: @code{2048})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27417 +#: guix-git/doc/guix.texi:27754 msgid "Size of the RSA key." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27418 +#: guix-git/doc/guix.texi:27755 #, no-wrap msgid "@code{default-location} (default: @i{see below})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27427 +#: guix-git/doc/guix.texi:27764 msgid "The default @code{nginx-location-configuration}. Because @code{certbot} needs to be able to serve challenges and responses, it needs to be able to run a web server. It does so by extending the @code{nginx} web service with an @code{nginx-server-configuration} listening on the @var{domains} on port 80, and which has a @code{nginx-location-configuration} for the @code{/.well-known/} URI path subspace used by Let's Encrypt. @xref{Web Services}, for more on these nginx configuration data types." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27431 +#: guix-git/doc/guix.texi:27768 msgid "Requests to other URL paths will be matched by the @code{default-location}, which if present is added to all @code{nginx-server-configuration}s." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27435 +#: guix-git/doc/guix.texi:27772 msgid "By default, the @code{default-location} will issue a redirect from @code{http://@var{domain}/...} to @code{https://@var{domain}/...}, leaving you to define what to serve on your site via @code{https}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27437 +#: guix-git/doc/guix.texi:27774 msgid "Pass @code{#f} to not issue a default location." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27440 +#: guix-git/doc/guix.texi:27777 #, no-wrap msgid "{Data Type} certificate-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27443 +#: guix-git/doc/guix.texi:27780 msgid "Data type representing the configuration of a certificate. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27445 +#: guix-git/doc/guix.texi:27782 #, no-wrap msgid "@code{name} (default: @i{see below})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27449 +#: guix-git/doc/guix.texi:27786 msgid "This name is used by Certbot for housekeeping and in file paths; it doesn't affect the content of the certificate itself. To see certificate names, run @code{certbot certificates}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27451 +#: guix-git/doc/guix.texi:27788 msgid "Its default is the first provided domain." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27452 +#: guix-git/doc/guix.texi:27789 #, no-wrap msgid "@code{domains} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27455 +#: guix-git/doc/guix.texi:27792 msgid "The first domain provided will be the subject CN of the certificate, and all domains will be Subject Alternative Names on the certificate." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27456 +#: guix-git/doc/guix.texi:27793 #, no-wrap msgid "@code{challenge} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27463 +#: guix-git/doc/guix.texi:27800 msgid "The challenge type that has to be run by certbot. If @code{#f} is specified, default to the HTTP challenge. If a value is specified, defaults to the manual plugin (see @code{authentication-hook}, @code{cleanup-hook} and the documentation at @url{https://certbot.eff.org/docs/using.html#hooks}), and gives Let's Encrypt permission to log the public IP address of the requesting machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27464 +#: guix-git/doc/guix.texi:27801 #, no-wrap msgid "@code{csr} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27471 +#: guix-git/doc/guix.texi:27808 msgid "File name of Certificate Signing Request (CSR) in DER or PEM format. If @code{#f} is specified, this argument will not be passed to certbot. If a value is specified, certbot will use it to obtain a certificate, instead of using a self-generated CSR. The domain-name(s) mentioned in @code{domains}, must be consistent with the domain-name(s) mentioned in CSR file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27472 +#: guix-git/doc/guix.texi:27809 #, no-wrap msgid "@code{authentication-hook} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27478 +#: guix-git/doc/guix.texi:27815 msgid "Command to be run in a shell once for each certificate challenge to be answered. For this command, the shell variable @code{$CERTBOT_DOMAIN} will contain the domain being authenticated, @code{$CERTBOT_VALIDATION} contains the validation string and @code{$CERTBOT_TOKEN} contains the file name of the resource requested when performing an HTTP-01 challenge." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27479 +#: guix-git/doc/guix.texi:27816 #, no-wrap msgid "@code{cleanup-hook} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27485 +#: guix-git/doc/guix.texi:27822 msgid "Command to be run in a shell once for each certificate challenge that have been answered by the @code{auth-hook}. For this command, the shell variables available in the @code{auth-hook} script are still available, and additionally @code{$CERTBOT_AUTH_OUTPUT} will contain the standard output of the @code{auth-hook} script." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27486 +#: guix-git/doc/guix.texi:27823 #, no-wrap msgid "@code{deploy-hook} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27494 +#: guix-git/doc/guix.texi:27831 msgid "Command to be run in a shell once for each successfully issued certificate. For this command, the shell variable @code{$RENEWED_LINEAGE} will point to the config live subdirectory (for example, @samp{\"/etc/letsencrypt/live/example.com\"}) containing the new certificates and keys; the shell variable @code{$RENEWED_DOMAINS} will contain a space-delimited list of renewed certificate domains (for example, @samp{\"example.com www.example.com\"}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27501 +#: guix-git/doc/guix.texi:27838 msgid "For each @code{certificate-configuration}, the certificate is saved to @code{/etc/letsencrypt/live/@var{name}/fullchain.pem} and the key is saved to @code{/etc/letsencrypt/live/@var{name}/privkey.pem}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27503 +#: guix-git/doc/guix.texi:27840 #, no-wrap msgid "DNS (domain name system)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27504 +#: guix-git/doc/guix.texi:27841 #, no-wrap msgid "domain name system (DNS)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27512 +#: guix-git/doc/guix.texi:27849 msgid "The @code{(gnu services dns)} module provides services related to the @dfn{domain name system} (DNS). It provides a server service for hosting an @emph{authoritative} DNS server for multiple zones, slave or master. This service uses @uref{https://www.knot-dns.cz/, Knot DNS}. And also a caching and forwarding DNS server for the LAN, which uses @uref{http://www.thekelleys.org.uk/dnsmasq/doc.html, dnsmasq}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27513 +#: guix-git/doc/guix.texi:27850 #, no-wrap msgid "Knot Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27517 +#: guix-git/doc/guix.texi:27854 msgid "An example configuration of an authoritative server for two zones, one master and one slave, is:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27524 +#: guix-git/doc/guix.texi:27861 #, no-wrap msgid "" "(define-zone-entries example.org.zone\n" @@ -49138,7 +49758,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27531 +#: guix-git/doc/guix.texi:27868 #, no-wrap msgid "" "(define master-zone\n" @@ -49151,7 +49771,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27537 +#: guix-git/doc/guix.texi:27874 #, no-wrap msgid "" "(define slave-zone\n" @@ -49163,7 +49783,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27542 +#: guix-git/doc/guix.texi:27879 #, no-wrap msgid "" "(define plop-master\n" @@ -49174,7 +49794,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27551 +#: guix-git/doc/guix.texi:27888 #, no-wrap msgid "" "(operating-system\n" @@ -49188,857 +49808,857 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27553 +#: guix-git/doc/guix.texi:27890 #, no-wrap msgid "{Scheme Variable} knot-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27555 +#: guix-git/doc/guix.texi:27892 msgid "This is the type for the Knot DNS server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27563 +#: guix-git/doc/guix.texi:27900 msgid "Knot DNS is an authoritative DNS server, meaning that it can serve multiple zones, that is to say domain names you would buy from a registrar. This server is not a resolver, meaning that it can only resolve names for which it is authoritative. This server can be configured to serve zones as a master server or a slave server as a per-zone basis. Slave zones will get their data from masters, and will serve it as an authoritative server. From the point of view of a resolver, there is no difference between master and slave." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27565 +#: guix-git/doc/guix.texi:27902 msgid "The following data types are used to configure the Knot DNS server:" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27567 +#: guix-git/doc/guix.texi:27904 #, no-wrap msgid "{Data Type} knot-key-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27570 +#: guix-git/doc/guix.texi:27907 msgid "Data type representing a key. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27572 guix-git/doc/guix.texi:27592 -#: guix-git/doc/guix.texi:27707 guix-git/doc/guix.texi:27733 -#: guix-git/doc/guix.texi:27768 +#: guix-git/doc/guix.texi:27909 guix-git/doc/guix.texi:27929 +#: guix-git/doc/guix.texi:28044 guix-git/doc/guix.texi:28070 +#: guix-git/doc/guix.texi:28105 #, no-wrap msgid "@code{id} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27575 guix-git/doc/guix.texi:27595 +#: guix-git/doc/guix.texi:27912 guix-git/doc/guix.texi:27932 msgid "An identifier for other configuration fields to refer to this key. IDs must be unique and must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27576 +#: guix-git/doc/guix.texi:27913 #, no-wrap msgid "@code{algorithm} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27580 +#: guix-git/doc/guix.texi:27917 msgid "The algorithm to use. Choose between @code{#f}, @code{'hmac-md5}, @code{'hmac-sha1}, @code{'hmac-sha224}, @code{'hmac-sha256}, @code{'hmac-sha384} and @code{'hmac-sha512}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27581 +#: guix-git/doc/guix.texi:27918 #, no-wrap msgid "@code{secret} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27583 +#: guix-git/doc/guix.texi:27920 msgid "The secret key itself." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27587 +#: guix-git/doc/guix.texi:27924 #, no-wrap msgid "{Data Type} knot-acl-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27590 +#: guix-git/doc/guix.texi:27927 msgid "Data type representing an Access Control List (ACL) configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27596 guix-git/doc/guix.texi:27711 +#: guix-git/doc/guix.texi:27933 guix-git/doc/guix.texi:28048 #, no-wrap msgid "@code{address} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27600 +#: guix-git/doc/guix.texi:27937 msgid "An ordered list of IP addresses, network subnets, or network ranges represented with strings. The query must match one of them. Empty value means that address match is not required." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27601 +#: guix-git/doc/guix.texi:27938 #, no-wrap msgid "@code{key} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27605 +#: guix-git/doc/guix.texi:27942 msgid "An ordered list of references to keys represented with strings. The string must match a key ID defined in a @code{knot-key-configuration}. No key means that a key is not require to match that ACL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27606 +#: guix-git/doc/guix.texi:27943 #, no-wrap msgid "@code{action} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27610 +#: guix-git/doc/guix.texi:27947 msgid "An ordered list of actions that are permitted or forbidden by this ACL@. Possible values are lists of zero or more elements from @code{'transfer}, @code{'notify} and @code{'update}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27611 +#: guix-git/doc/guix.texi:27948 #, no-wrap msgid "@code{deny?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27614 +#: guix-git/doc/guix.texi:27951 msgid "When true, the ACL defines restrictions. Listed actions are forbidden. When false, listed actions are allowed." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27618 +#: guix-git/doc/guix.texi:27955 #, no-wrap msgid "{Data Type} zone-entry" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27621 +#: guix-git/doc/guix.texi:27958 msgid "Data type representing a record entry in a zone file. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27623 +#: guix-git/doc/guix.texi:27960 #, no-wrap msgid "@code{name} (default: @code{\"@@\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27629 +#: guix-git/doc/guix.texi:27966 msgid "The name of the record. @code{\"@@\"} refers to the origin of the zone. Names are relative to the origin of the zone. For example, in the @code{example.org} zone, @code{\"ns.example.org\"} actually refers to @code{ns.example.org.example.org}. Names ending with a dot are absolute, which means that @code{\"ns.example.org.\"} refers to @code{ns.example.org}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27630 +#: guix-git/doc/guix.texi:27967 #, no-wrap msgid "@code{ttl} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27632 +#: guix-git/doc/guix.texi:27969 msgid "The Time-To-Live (TTL) of this record. If not set, the default TTL is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27633 +#: guix-git/doc/guix.texi:27970 #, no-wrap msgid "@code{class} (default: @code{\"IN\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27636 +#: guix-git/doc/guix.texi:27973 msgid "The class of the record. Knot currently supports only @code{\"IN\"} and partially @code{\"CH\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27637 +#: guix-git/doc/guix.texi:27974 #, no-wrap msgid "@code{type} (default: @code{\"A\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27641 +#: guix-git/doc/guix.texi:27978 msgid "The type of the record. Common types include A (IPv4 address), AAAA (IPv6 address), NS (Name Server) and MX (Mail eXchange). Many other types are defined." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27642 +#: guix-git/doc/guix.texi:27979 #, no-wrap msgid "@code{data} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27646 +#: guix-git/doc/guix.texi:27983 msgid "The data contained in the record. For instance an IP address associated with an A record, or a domain name associated with an NS record. Remember that domain names are relative to the origin unless they end with a dot." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27650 +#: guix-git/doc/guix.texi:27987 #, no-wrap msgid "{Data Type} zone-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27653 +#: guix-git/doc/guix.texi:27990 msgid "Data type representing the content of a zone file. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27662 +#: guix-git/doc/guix.texi:27999 msgid "The list of entries. The SOA record is taken care of, so you don't need to put it in the list of entries. This list should probably contain an entry for your primary authoritative DNS server. Other than using a list of entries directly, you can use @code{define-zone-entries} to define a object containing the list of entries more easily, that you can later pass to the @code{entries} field of the @code{zone-file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27663 +#: guix-git/doc/guix.texi:28000 #, no-wrap msgid "@code{origin} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27665 +#: guix-git/doc/guix.texi:28002 msgid "The name of your zone. This parameter cannot be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27666 +#: guix-git/doc/guix.texi:28003 #, no-wrap msgid "@code{ns} (default: @code{\"ns\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27671 +#: guix-git/doc/guix.texi:28008 msgid "The domain of your primary authoritative DNS server. The name is relative to the origin, unless it ends with a dot. It is mandatory that this primary DNS server corresponds to an NS record in the zone and that it is associated to an IP address in the list of entries." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27672 +#: guix-git/doc/guix.texi:28009 #, no-wrap msgid "@code{mail} (default: @code{\"hostmaster\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27675 +#: guix-git/doc/guix.texi:28012 msgid "An email address people can contact you at, as the owner of the zone. This is translated as @code{@@}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27676 +#: guix-git/doc/guix.texi:28013 #, no-wrap msgid "@code{serial} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27680 +#: guix-git/doc/guix.texi:28017 msgid "The serial number of the zone. As this is used to keep track of changes by both slaves and resolvers, it is mandatory that it @emph{never} decreases. Always increment it when you make a change in your zone." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27681 +#: guix-git/doc/guix.texi:28018 #, no-wrap msgid "@code{refresh} (default: @code{(* 2 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27685 +#: guix-git/doc/guix.texi:28022 msgid "The frequency at which slaves will do a zone transfer. This value is a number of seconds. It can be computed by multiplications or with @code{(string->duration)}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27686 +#: guix-git/doc/guix.texi:28023 #, no-wrap msgid "@code{retry} (default: @code{(* 15 60)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27689 +#: guix-git/doc/guix.texi:28026 msgid "The period after which a slave will retry to contact its master when it fails to do so a first time." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27690 +#: guix-git/doc/guix.texi:28027 #, no-wrap msgid "@code{expiry} (default: @code{(* 14 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27694 +#: guix-git/doc/guix.texi:28031 msgid "Default TTL of records. Existing records are considered correct for at most this amount of time. After this period, resolvers will invalidate their cache and check again that it still exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27695 +#: guix-git/doc/guix.texi:28032 #, no-wrap msgid "@code{nx} (default: @code{3600})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27698 +#: guix-git/doc/guix.texi:28035 msgid "Default TTL of inexistent records. This delay is usually short because you want your new domains to reach everyone quickly." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27702 +#: guix-git/doc/guix.texi:28039 #, no-wrap msgid "{Data Type} knot-remote-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27705 +#: guix-git/doc/guix.texi:28042 msgid "Data type representing a remote configuration. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27710 +#: guix-git/doc/guix.texi:28047 msgid "An identifier for other configuration fields to refer to this remote. IDs must be unique and must not be empty." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27715 +#: guix-git/doc/guix.texi:28052 msgid "An ordered list of destination IP addresses. Addresses are tried in sequence. An optional port can be given with the @@ separator. For instance: @code{(list \"1.2.3.4\" \"2.3.4.5@@53\")}. Default port is 53." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27716 +#: guix-git/doc/guix.texi:28053 #, no-wrap msgid "@code{via} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27720 +#: guix-git/doc/guix.texi:28057 msgid "An ordered list of source IP addresses. An empty list will have Knot choose an appropriate source IP@. An optional port can be given with the @@ separator. The default is to choose at random." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27724 +#: guix-git/doc/guix.texi:28061 msgid "A reference to a key, that is a string containing the identifier of a key defined in a @code{knot-key-configuration} field." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27728 +#: guix-git/doc/guix.texi:28065 #, no-wrap msgid "{Data Type} knot-keystore-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27731 +#: guix-git/doc/guix.texi:28068 msgid "Data type representing a keystore to hold dnssec keys. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27735 +#: guix-git/doc/guix.texi:28072 msgid "The id of the keystore. It must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27736 +#: guix-git/doc/guix.texi:28073 #, no-wrap msgid "@code{backend} (default: @code{'pem})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27738 +#: guix-git/doc/guix.texi:28075 msgid "The backend to store the keys in. Can be @code{'pem} or @code{'pkcs11}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27739 +#: guix-git/doc/guix.texi:28076 #, no-wrap msgid "@code{config} (default: @code{\"/var/lib/knot/keys/keys\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27743 +#: guix-git/doc/guix.texi:28080 msgid "The configuration string of the backend. An example for the PKCS#11 is: @code{\"pkcs11:token=knot;pin-value=1234 /gnu/store/.../lib/pkcs11/libsofthsm2.so\"}. For the pem backend, the string represents a path in the file system." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27747 +#: guix-git/doc/guix.texi:28084 #, no-wrap msgid "{Data Type} knot-policy-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27751 +#: guix-git/doc/guix.texi:28088 msgid "Data type representing a dnssec policy. Knot DNS is able to automatically sign your zones. It can either generate and manage your keys automatically or use keys that you generate." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27758 +#: guix-git/doc/guix.texi:28095 msgid "Dnssec is usually implemented using two keys: a Key Signing Key (KSK) that is used to sign the second, and a Zone Signing Key (ZSK) that is used to sign the zone. In order to be trusted, the KSK needs to be present in the parent zone (usually a top-level domain). If your registrar supports dnssec, you will have to send them your KSK's hash so they can add a DS record in their zone. This is not automated and need to be done each time you change your KSK." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27764 +#: guix-git/doc/guix.texi:28101 msgid "The policy also defines the lifetime of keys. Usually, ZSK can be changed easily and use weaker cryptographic functions (they use lower parameters) in order to sign records quickly, so they are changed often. The KSK however requires manual interaction with the registrar, so they are changed less often and use stronger parameters because they sign only one record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27766 +#: guix-git/doc/guix.texi:28103 msgid "This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27770 +#: guix-git/doc/guix.texi:28107 msgid "The id of the policy. It must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27771 +#: guix-git/doc/guix.texi:28108 #, no-wrap msgid "@code{keystore} (default: @code{\"default\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27776 +#: guix-git/doc/guix.texi:28113 msgid "A reference to a keystore, that is a string containing the identifier of a keystore defined in a @code{knot-keystore-configuration} field. The @code{\"default\"} identifier means the default keystore (a kasp database that was setup by this service)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27777 +#: guix-git/doc/guix.texi:28114 #, no-wrap msgid "@code{manual?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27779 +#: guix-git/doc/guix.texi:28116 msgid "Whether the key management is manual or automatic." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27780 +#: guix-git/doc/guix.texi:28117 #, no-wrap msgid "@code{single-type-signing?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27782 +#: guix-git/doc/guix.texi:28119 msgid "When @code{#t}, use the Single-Type Signing Scheme." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27783 +#: guix-git/doc/guix.texi:28120 #, no-wrap msgid "@code{algorithm} (default: @code{\"ecdsap256sha256\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27785 +#: guix-git/doc/guix.texi:28122 msgid "An algorithm of signing keys and issued signatures." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27786 +#: guix-git/doc/guix.texi:28123 #, no-wrap msgid "@code{ksk-size} (default: @code{256})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27789 +#: guix-git/doc/guix.texi:28126 msgid "The length of the KSK@. Note that this value is correct for the default algorithm, but would be unsecure for other algorithms." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27790 +#: guix-git/doc/guix.texi:28127 #, no-wrap msgid "@code{zsk-size} (default: @code{256})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27793 +#: guix-git/doc/guix.texi:28130 msgid "The length of the ZSK@. Note that this value is correct for the default algorithm, but would be unsecure for other algorithms." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27794 +#: guix-git/doc/guix.texi:28131 #, no-wrap msgid "@code{dnskey-ttl} (default: @code{'default})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27797 +#: guix-git/doc/guix.texi:28134 msgid "The TTL value for DNSKEY records added into zone apex. The special @code{'default} value means same as the zone SOA TTL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27798 +#: guix-git/doc/guix.texi:28135 #, no-wrap msgid "@code{zsk-lifetime} (default: @code{(* 30 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27800 +#: guix-git/doc/guix.texi:28137 msgid "The period between ZSK publication and the next rollover initiation." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27801 +#: guix-git/doc/guix.texi:28138 #, no-wrap msgid "@code{propagation-delay} (default: @code{(* 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27804 +#: guix-git/doc/guix.texi:28141 msgid "An extra delay added for each key rollover step. This value should be high enough to cover propagation of data from the master server to all slaves." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27805 +#: guix-git/doc/guix.texi:28142 #, no-wrap msgid "@code{rrsig-lifetime} (default: @code{(* 14 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27807 +#: guix-git/doc/guix.texi:28144 msgid "A validity period of newly issued signatures." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27808 +#: guix-git/doc/guix.texi:28145 #, no-wrap msgid "@code{rrsig-refresh} (default: @code{(* 7 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27810 +#: guix-git/doc/guix.texi:28147 msgid "A period how long before a signature expiration the signature will be refreshed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27811 +#: guix-git/doc/guix.texi:28148 #, no-wrap msgid "@code{nsec3?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27813 +#: guix-git/doc/guix.texi:28150 msgid "When @code{#t}, NSEC3 will be used instead of NSEC." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27814 +#: guix-git/doc/guix.texi:28151 #, no-wrap msgid "@code{nsec3-iterations} (default: @code{5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27816 +#: guix-git/doc/guix.texi:28153 msgid "The number of additional times the hashing is performed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27817 +#: guix-git/doc/guix.texi:28154 #, no-wrap msgid "@code{nsec3-salt-length} (default: @code{8})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27820 +#: guix-git/doc/guix.texi:28157 msgid "The length of a salt field in octets, which is appended to the original owner name before hashing." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27821 +#: guix-git/doc/guix.texi:28158 #, no-wrap msgid "@code{nsec3-salt-lifetime} (default: @code{(* 30 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27823 +#: guix-git/doc/guix.texi:28160 msgid "The validity period of newly issued salt field." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27827 +#: guix-git/doc/guix.texi:28164 #, no-wrap msgid "{Data Type} knot-zone-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27830 +#: guix-git/doc/guix.texi:28167 msgid "Data type representing a zone served by Knot. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27832 +#: guix-git/doc/guix.texi:28169 #, no-wrap msgid "@code{domain} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27834 +#: guix-git/doc/guix.texi:28171 msgid "The domain served by this configuration. It must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27835 +#: guix-git/doc/guix.texi:28172 #, no-wrap msgid "@code{file} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27838 +#: guix-git/doc/guix.texi:28175 msgid "The file where this zone is saved. This parameter is ignored by master zones. Empty means default location that depends on the domain name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27839 +#: guix-git/doc/guix.texi:28176 #, no-wrap msgid "@code{zone} (default: @code{(zone-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27842 +#: guix-git/doc/guix.texi:28179 msgid "The content of the zone file. This parameter is ignored by slave zones. It must contain a zone-file record." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27843 +#: guix-git/doc/guix.texi:28180 #, no-wrap msgid "@code{master} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27846 +#: guix-git/doc/guix.texi:28183 msgid "A list of master remotes. When empty, this zone is a master. When set, this zone is a slave. This is a list of remotes identifiers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27847 +#: guix-git/doc/guix.texi:28184 #, no-wrap msgid "@code{ddns-master} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27850 +#: guix-git/doc/guix.texi:28187 msgid "The main master. When empty, it defaults to the first master in the list of masters." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27851 +#: guix-git/doc/guix.texi:28188 #, no-wrap msgid "@code{notify} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27853 +#: guix-git/doc/guix.texi:28190 msgid "A list of slave remote identifiers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27854 +#: guix-git/doc/guix.texi:28191 #, no-wrap msgid "@code{acl} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27856 +#: guix-git/doc/guix.texi:28193 msgid "A list of acl identifiers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27857 +#: guix-git/doc/guix.texi:28194 #, no-wrap msgid "@code{semantic-checks?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27859 +#: guix-git/doc/guix.texi:28196 msgid "When set, this adds more semantic checks to the zone." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27860 +#: guix-git/doc/guix.texi:28197 #, no-wrap msgid "@code{zonefile-sync} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27863 +#: guix-git/doc/guix.texi:28200 msgid "The delay between a modification in memory and on disk. 0 means immediate synchronization." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27864 +#: guix-git/doc/guix.texi:28201 #, no-wrap msgid "@code{zonefile-load} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27867 +#: guix-git/doc/guix.texi:28204 msgid "The way the zone file contents are applied during zone load. Possible values are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27869 +#: guix-git/doc/guix.texi:28206 #, no-wrap msgid "@code{#f} for using the default value from Knot," msgstr "" #. type: item -#: guix-git/doc/guix.texi:27870 +#: guix-git/doc/guix.texi:28207 #, no-wrap msgid "@code{'none} for not using the zone file at all," msgstr "" #. type: item -#: guix-git/doc/guix.texi:27871 +#: guix-git/doc/guix.texi:28208 #, no-wrap msgid "@code{'difference} for computing the difference between already available" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:27873 +#: guix-git/doc/guix.texi:28210 msgid "contents and zone contents and applying it to the current zone contents," msgstr "" #. type: item -#: guix-git/doc/guix.texi:27873 +#: guix-git/doc/guix.texi:28210 #, no-wrap msgid "@code{'difference-no-serial} for the same as @code{'difference}, but" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:27876 +#: guix-git/doc/guix.texi:28213 msgid "ignoring the SOA serial in the zone file, while the server takes care of it automatically." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27876 +#: guix-git/doc/guix.texi:28213 #, no-wrap msgid "@code{'whole} for loading zone contents from the zone file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27879 +#: guix-git/doc/guix.texi:28216 #, no-wrap msgid "@code{journal-content} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27884 +#: guix-git/doc/guix.texi:28221 msgid "The way the journal is used to store zone and its changes. Possible values are @code{'none} to not use it at all, @code{'changes} to store changes and @code{'all} to store contents. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27885 +#: guix-git/doc/guix.texi:28222 #, no-wrap msgid "@code{max-journal-usage} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27888 +#: guix-git/doc/guix.texi:28225 msgid "The maximum size for the journal on disk. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27889 +#: guix-git/doc/guix.texi:28226 #, no-wrap msgid "@code{max-journal-depth} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27892 +#: guix-git/doc/guix.texi:28229 msgid "The maximum size of the history. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27893 +#: guix-git/doc/guix.texi:28230 #, no-wrap msgid "@code{max-zone-size} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27897 +#: guix-git/doc/guix.texi:28234 msgid "The maximum size of the zone file. This limit is enforced for incoming transfer and updates. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27898 +#: guix-git/doc/guix.texi:28235 #, no-wrap msgid "@code{dnssec-policy} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27902 +#: guix-git/doc/guix.texi:28239 msgid "A reference to a @code{knot-policy-configuration} record, or the special name @code{\"default\"}. If the value is @code{#f}, there is no dnssec signing on this zone." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27903 +#: guix-git/doc/guix.texi:28240 #, no-wrap msgid "@code{serial-policy} (default: @code{'increment})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27905 +#: guix-git/doc/guix.texi:28242 msgid "A policy between @code{'increment} and @code{'unixtime}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27909 +#: guix-git/doc/guix.texi:28246 #, no-wrap msgid "{Data Type} knot-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27912 +#: guix-git/doc/guix.texi:28249 msgid "Data type representing the Knot configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27914 +#: guix-git/doc/guix.texi:28251 #, no-wrap msgid "@code{knot} (default: @code{knot})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27916 +#: guix-git/doc/guix.texi:28253 msgid "The Knot package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27917 +#: guix-git/doc/guix.texi:28254 #, no-wrap msgid "@code{run-directory} (default: @code{\"/var/run/knot\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27919 +#: guix-git/doc/guix.texi:28256 msgid "The run directory. This directory will be used for pid file and sockets." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27920 +#: guix-git/doc/guix.texi:28257 #, no-wrap msgid "@code{includes} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27923 +#: guix-git/doc/guix.texi:28260 msgid "A list of strings or file-like objects denoting other files that must be included at the top of the configuration file." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27924 +#: guix-git/doc/guix.texi:28261 #, no-wrap msgid "secrets, Knot service" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27930 +#: guix-git/doc/guix.texi:28267 msgid "This can be used to manage secrets out-of-band. For example, secret keys may be stored in an out-of-band file not managed by Guix, and thus not visible in @file{/gnu/store}---e.g., you could store secret key configuration in @file{/etc/knot/secrets.conf} and add this file to the @code{includes} list." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27935 +#: guix-git/doc/guix.texi:28272 msgid "One can generate a secret tsig key (for nsupdate and zone transfers with the keymgr command from the knot package. Note that the package is not automatically installed by the service. The following example shows how to generate a new tsig key:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:27939 +#: guix-git/doc/guix.texi:28276 #, no-wrap msgid "" "keymgr -t mysecret > /etc/knot/secrets.conf\n" @@ -50046,106 +50666,106 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27945 +#: guix-git/doc/guix.texi:28282 msgid "Also note that the generated key will be named @var{mysecret}, so it is the name that needs to be used in the @var{key} field of the @code{knot-acl-configuration} record and in other places that need to refer to that key." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27947 +#: guix-git/doc/guix.texi:28284 msgid "It can also be used to add configuration not supported by this interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27948 +#: guix-git/doc/guix.texi:28285 #, no-wrap msgid "@code{listen-v4} (default: @code{\"0.0.0.0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27950 guix-git/doc/guix.texi:27953 +#: guix-git/doc/guix.texi:28287 guix-git/doc/guix.texi:28290 msgid "An ip address on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27951 +#: guix-git/doc/guix.texi:28288 #, no-wrap msgid "@code{listen-v6} (default: @code{\"::\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27954 +#: guix-git/doc/guix.texi:28291 #, no-wrap msgid "@code{listen-port} (default: @code{53})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27956 +#: guix-git/doc/guix.texi:28293 msgid "A port on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27957 +#: guix-git/doc/guix.texi:28294 #, no-wrap msgid "@code{keys} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27959 +#: guix-git/doc/guix.texi:28296 msgid "The list of knot-key-configuration used by this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27960 +#: guix-git/doc/guix.texi:28297 #, no-wrap msgid "@code{acls} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27962 +#: guix-git/doc/guix.texi:28299 msgid "The list of knot-acl-configuration used by this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27963 +#: guix-git/doc/guix.texi:28300 #, no-wrap msgid "@code{remotes} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27965 +#: guix-git/doc/guix.texi:28302 msgid "The list of knot-remote-configuration used by this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27966 +#: guix-git/doc/guix.texi:28303 #, no-wrap msgid "@code{zones} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27968 +#: guix-git/doc/guix.texi:28305 msgid "The list of knot-zone-configuration used by this configuration." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27972 +#: guix-git/doc/guix.texi:28309 #, no-wrap msgid "Knot Resolver Service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27974 +#: guix-git/doc/guix.texi:28311 #, no-wrap msgid "{Scheme Variable} knot-resolver-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27977 +#: guix-git/doc/guix.texi:28314 msgid "This is the type of the knot resolver service, whose value should be an @code{knot-resolver-configuration} object as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27987 +#: guix-git/doc/guix.texi:28324 #, no-wrap msgid "" "(service knot-resolver-service-type\n" @@ -50159,73 +50779,73 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27990 +#: guix-git/doc/guix.texi:28327 msgid "For more information, refer its @url{https://knot-resolver.readthedocs.org/en/stable/daemon.html#configuration, manual}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27992 +#: guix-git/doc/guix.texi:28329 #, no-wrap msgid "{Data Type} knot-resolver-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27994 +#: guix-git/doc/guix.texi:28331 msgid "Data type representing the configuration of knot-resolver." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27996 +#: guix-git/doc/guix.texi:28333 #, no-wrap msgid "@code{package} (default: @var{knot-resolver})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27998 +#: guix-git/doc/guix.texi:28335 msgid "Package object of the knot DNS resolver." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27999 +#: guix-git/doc/guix.texi:28336 #, no-wrap msgid "@code{kresd-config-file} (default: %kresd.conf)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28002 +#: guix-git/doc/guix.texi:28339 msgid "File-like object of the kresd configuration file to use, by default it will listen on @code{127.0.0.1} and @code{::1}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28003 +#: guix-git/doc/guix.texi:28340 #, no-wrap msgid "@code{garbage-collection-interval} (default: 1000)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28005 +#: guix-git/doc/guix.texi:28342 msgid "Number of milliseconds for @code{kres-cache-gc} to periodically trim the cache." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28010 +#: guix-git/doc/guix.texi:28347 #, no-wrap msgid "Dnsmasq Service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28012 +#: guix-git/doc/guix.texi:28349 #, no-wrap msgid "{Scheme Variable} dnsmasq-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28015 +#: guix-git/doc/guix.texi:28352 msgid "This is the type of the dnsmasq service, whose value should be an @code{dnsmasq-configuration} object as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28021 +#: guix-git/doc/guix.texi:28358 #, no-wrap msgid "" "(service dnsmasq-service-type\n" @@ -50235,122 +50855,122 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28024 +#: guix-git/doc/guix.texi:28361 #, no-wrap msgid "{Data Type} dnsmasq-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28026 +#: guix-git/doc/guix.texi:28363 msgid "Data type representing the configuration of dnsmasq." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28028 +#: guix-git/doc/guix.texi:28365 #, no-wrap msgid "@code{package} (default: @var{dnsmasq})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28030 +#: guix-git/doc/guix.texi:28367 msgid "Package object of the dnsmasq server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28031 +#: guix-git/doc/guix.texi:28368 #, no-wrap msgid "@code{no-hosts?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28033 +#: guix-git/doc/guix.texi:28370 msgid "When true, don't read the hostnames in /etc/hosts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28034 +#: guix-git/doc/guix.texi:28371 #, no-wrap msgid "@code{port} (default: @code{53})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28037 +#: guix-git/doc/guix.texi:28374 msgid "The port to listen on. Setting this to zero completely disables DNS responses, leaving only DHCP and/or TFTP functions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28038 +#: guix-git/doc/guix.texi:28375 #, no-wrap msgid "@code{local-service?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28041 +#: guix-git/doc/guix.texi:28378 msgid "Accept DNS queries only from hosts whose address is on a local subnet, ie a subnet for which an interface exists on the server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28042 +#: guix-git/doc/guix.texi:28379 #, no-wrap msgid "@code{listen-addresses} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28044 +#: guix-git/doc/guix.texi:28381 msgid "Listen on the given IP addresses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28045 +#: guix-git/doc/guix.texi:28382 #, no-wrap msgid "@code{resolv-file} (default: @code{\"/etc/resolv.conf\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28047 +#: guix-git/doc/guix.texi:28384 msgid "The file to read the IP address of the upstream nameservers from." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28048 +#: guix-git/doc/guix.texi:28385 #, no-wrap msgid "@code{no-resolv?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28050 +#: guix-git/doc/guix.texi:28387 msgid "When true, don't read @var{resolv-file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28051 +#: guix-git/doc/guix.texi:28388 #, no-wrap msgid "@code{servers} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28053 +#: guix-git/doc/guix.texi:28390 msgid "Specify IP address of upstream servers directly." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28054 +#: guix-git/doc/guix.texi:28391 #, no-wrap msgid "@code{addresses} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28058 +#: guix-git/doc/guix.texi:28395 msgid "For each entry, specify an IP address to return for any host in the given domains. Queries in the domains are never forwarded and always replied to with the specified IP address." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28060 +#: guix-git/doc/guix.texi:28397 msgid "This is useful for redirecting hosts locally, for example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28069 +#: guix-git/doc/guix.texi:28406 #, no-wrap msgid "" "(service dnsmasq-service-type\n" @@ -50363,1007 +50983,1007 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28072 +#: guix-git/doc/guix.texi:28409 msgid "Note that rules in @file{/etc/hosts} take precedence over this." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28073 +#: guix-git/doc/guix.texi:28410 #, no-wrap msgid "@code{cache-size} (default: @code{150})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28076 +#: guix-git/doc/guix.texi:28413 msgid "Set the size of dnsmasq's cache. Setting the cache size to zero disables caching." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28077 +#: guix-git/doc/guix.texi:28414 #, no-wrap msgid "@code{negative-cache?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28079 +#: guix-git/doc/guix.texi:28416 msgid "When false, disable negative caching." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28080 +#: guix-git/doc/guix.texi:28417 #, no-wrap msgid "@code{tftp-enable?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28082 +#: guix-git/doc/guix.texi:28419 msgid "Whether to enable the built-in TFTP server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28083 +#: guix-git/doc/guix.texi:28420 #, no-wrap msgid "@code{tftp-no-fail?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28085 +#: guix-git/doc/guix.texi:28422 msgid "If true, does not fail dnsmasq if the TFTP server could not start up." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28086 +#: guix-git/doc/guix.texi:28423 #, no-wrap msgid "@code{tftp-single-port?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28088 +#: guix-git/doc/guix.texi:28425 msgid "Whether to use only one single port for TFTP." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28089 +#: guix-git/doc/guix.texi:28426 #, no-wrap msgid "@code{tftp-secure?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28091 +#: guix-git/doc/guix.texi:28428 msgid "If true, only files owned by the user running the dnsmasq process are accessible." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28095 +#: guix-git/doc/guix.texi:28432 msgid "If dnsmasq is being run as root, different rules apply: @code{tftp-secure?} has no effect, but only files which have the world-readable bit set are accessible." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28096 +#: guix-git/doc/guix.texi:28433 #, no-wrap msgid "@code{tftp-max} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28098 +#: guix-git/doc/guix.texi:28435 msgid "If set, sets the maximal number of concurrent connections allowed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28099 +#: guix-git/doc/guix.texi:28436 #, no-wrap msgid "@code{tftp-mtu} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28101 +#: guix-git/doc/guix.texi:28438 msgid "If set, sets the MTU for TFTP packets to that value." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28102 +#: guix-git/doc/guix.texi:28439 #, no-wrap msgid "@code{tftp-no-blocksize?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28104 +#: guix-git/doc/guix.texi:28441 msgid "If true, stops the TFTP server from negotiating the blocksize with a client." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28105 +#: guix-git/doc/guix.texi:28442 #, no-wrap msgid "@code{tftp-lowercase?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28107 +#: guix-git/doc/guix.texi:28444 msgid "Whether to convert all filenames in TFTP requests to lowercase." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28108 +#: guix-git/doc/guix.texi:28445 #, no-wrap msgid "@code{tftp-port-range} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28111 +#: guix-git/doc/guix.texi:28448 msgid "If set, fixes the dynamical ports (one per client) to the given range (@code{\",\"})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28112 +#: guix-git/doc/guix.texi:28449 #, no-wrap msgid "@code{tftp-root} (default: @code{/var/empty,lo})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28119 +#: guix-git/doc/guix.texi:28456 msgid "Look for files to transfer using TFTP relative to the given directory. When this is set, TFTP paths which include @samp{..} are rejected, to stop clients getting outside the specified root. Absolute paths (starting with @samp{/}) are allowed, but they must be within the TFTP-root. If the optional interface argument is given, the directory is only used for TFTP requests via that interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28120 +#: guix-git/doc/guix.texi:28457 #, no-wrap msgid "@code{tftp-unique-root} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28125 +#: guix-git/doc/guix.texi:28462 msgid "If set, add the IP or hardware address of the TFTP client as a path component on the end of the TFTP-root. Only valid if a TFTP root is set and the directory exists. Defaults to adding IP address (in standard dotted-quad format)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28134 +#: guix-git/doc/guix.texi:28471 msgid "For instance, if @option{--tftp-root} is @samp{/tftp} and client @samp{1.2.3.4} requests file @file{myfile} then the effective path will be @file{/tftp/1.2.3.4/myfile} if @file{/tftp/1.2.3.4} exists or @file{/tftp/myfile} otherwise. When @samp{=mac} is specified it will append the MAC address instead, using lowercase zero padded digits separated by dashes, e.g.: @samp{01-02-03-04-aa-bb}. Note that resolving MAC addresses is only possible if the client is in the local network or obtained a DHCP lease from dnsmasq." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28138 +#: guix-git/doc/guix.texi:28475 #, no-wrap msgid "ddclient Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28140 +#: guix-git/doc/guix.texi:28477 #, no-wrap msgid "ddclient" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28144 +#: guix-git/doc/guix.texi:28481 msgid "The ddclient service described below runs the ddclient daemon, which takes care of automatically updating DNS entries for service providers such as @uref{https://dyn.com/dns/, Dyn}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28147 +#: guix-git/doc/guix.texi:28484 msgid "The following example show instantiates the service with its default configuration:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28150 +#: guix-git/doc/guix.texi:28487 #, no-wrap msgid "(service ddclient-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28159 +#: guix-git/doc/guix.texi:28496 msgid "Note that ddclient needs to access credentials that are stored in a @dfn{secret file}, by default @file{/etc/ddclient/secrets} (see @code{secret-file} below). You are expected to create this file manually, in an ``out-of-band'' fashion (you @emph{could} make this file part of the service configuration, for instance by using @code{plain-file}, but it will be world-readable @i{via} @file{/gnu/store}). See the examples in the @file{share/ddclient} directory of the @code{ddclient} package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28163 +#: guix-git/doc/guix.texi:28500 msgid "Available @code{ddclient-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28164 +#: guix-git/doc/guix.texi:28501 #, no-wrap msgid "{@code{ddclient-configuration} parameter} package ddclient" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28166 +#: guix-git/doc/guix.texi:28503 msgid "The ddclient package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28169 +#: guix-git/doc/guix.texi:28506 #, no-wrap msgid "{@code{ddclient-configuration} parameter} integer daemon" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28171 +#: guix-git/doc/guix.texi:28508 msgid "The period after which ddclient will retry to check IP and domain name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28173 +#: guix-git/doc/guix.texi:28510 msgid "Defaults to @samp{300}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28176 +#: guix-git/doc/guix.texi:28513 #, no-wrap msgid "{@code{ddclient-configuration} parameter} boolean syslog" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28178 +#: guix-git/doc/guix.texi:28515 msgid "Use syslog for the output." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28183 +#: guix-git/doc/guix.texi:28520 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string mail" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28185 +#: guix-git/doc/guix.texi:28522 msgid "Mail to user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28187 guix-git/doc/guix.texi:28194 -#: guix-git/doc/guix.texi:29996 +#: guix-git/doc/guix.texi:28524 guix-git/doc/guix.texi:28531 +#: guix-git/doc/guix.texi:30361 msgid "Defaults to @samp{\"root\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28190 +#: guix-git/doc/guix.texi:28527 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string mail-failure" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28192 +#: guix-git/doc/guix.texi:28529 msgid "Mail failed update to user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28197 +#: guix-git/doc/guix.texi:28534 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string pid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28199 +#: guix-git/doc/guix.texi:28536 msgid "The ddclient PID file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28201 +#: guix-git/doc/guix.texi:28538 msgid "Defaults to @samp{\"/var/run/ddclient/ddclient.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28204 +#: guix-git/doc/guix.texi:28541 #, no-wrap msgid "{@code{ddclient-configuration} parameter} boolean ssl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28206 +#: guix-git/doc/guix.texi:28543 msgid "Enable SSL support." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28211 +#: guix-git/doc/guix.texi:28548 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28214 +#: guix-git/doc/guix.texi:28551 msgid "Specifies the user name or ID that is used when running ddclient program." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28216 guix-git/doc/guix.texi:28223 +#: guix-git/doc/guix.texi:28553 guix-git/doc/guix.texi:28560 msgid "Defaults to @samp{\"ddclient\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28219 +#: guix-git/doc/guix.texi:28556 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28221 +#: guix-git/doc/guix.texi:28558 msgid "Group of the user who will run the ddclient program." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28226 +#: guix-git/doc/guix.texi:28563 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string secret-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28230 +#: guix-git/doc/guix.texi:28567 msgid "Secret file which will be appended to @file{ddclient.conf} file. This file contains credentials for use by ddclient. You are expected to create it manually." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28232 +#: guix-git/doc/guix.texi:28569 msgid "Defaults to @samp{\"/etc/ddclient/secrets.conf\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28235 +#: guix-git/doc/guix.texi:28572 #, no-wrap msgid "{@code{ddclient-configuration} parameter} list extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28237 +#: guix-git/doc/guix.texi:28574 msgid "Extra options will be appended to @file{ddclient.conf} file." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28248 +#: guix-git/doc/guix.texi:28585 #, no-wrap msgid "VPN (virtual private network)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28249 +#: guix-git/doc/guix.texi:28586 #, no-wrap msgid "virtual private network (VPN)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28253 +#: guix-git/doc/guix.texi:28590 msgid "The @code{(gnu services vpn)} module provides services related to @dfn{virtual private networks} (VPNs)." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28254 +#: guix-git/doc/guix.texi:28591 #, no-wrap msgid "Bitmask" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28256 +#: guix-git/doc/guix.texi:28593 #, no-wrap msgid "{Scheme Variable} bitmask-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28261 +#: guix-git/doc/guix.texi:28598 msgid "A service type for the @uref{https://bitmask.net, Bitmask} VPN client. It makes the client available in the system and loads its polkit policy. Please note that the client expects an active polkit-agent, which is either run by your desktop-environment or should be run manually." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28263 +#: guix-git/doc/guix.texi:28600 #, no-wrap msgid "OpenVPN" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28267 +#: guix-git/doc/guix.texi:28604 msgid "It provides a @emph{client} service for your machine to connect to a VPN, and a @emph{server} service for your machine to host a VPN@." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28268 +#: guix-git/doc/guix.texi:28605 #, no-wrap msgid "{Scheme Procedure} openvpn-client-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28270 +#: guix-git/doc/guix.texi:28607 msgid "[#:config (openvpn-client-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28272 +#: guix-git/doc/guix.texi:28609 msgid "Return a service that runs @command{openvpn}, a VPN daemon, as a client." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28274 +#: guix-git/doc/guix.texi:28611 #, no-wrap msgid "{Scheme Procedure} openvpn-server-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28276 +#: guix-git/doc/guix.texi:28613 msgid "[#:config (openvpn-server-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28278 +#: guix-git/doc/guix.texi:28615 msgid "Return a service that runs @command{openvpn}, a VPN daemon, as a server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28280 +#: guix-git/doc/guix.texi:28617 msgid "Both can be run simultaneously." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28285 +#: guix-git/doc/guix.texi:28622 msgid "Available @code{openvpn-client-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28286 +#: guix-git/doc/guix.texi:28623 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} package openvpn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28288 guix-git/doc/guix.texi:28443 +#: guix-git/doc/guix.texi:28625 guix-git/doc/guix.texi:28780 msgid "The OpenVPN package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28291 +#: guix-git/doc/guix.texi:28628 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28293 guix-git/doc/guix.texi:28448 +#: guix-git/doc/guix.texi:28630 guix-git/doc/guix.texi:28785 msgid "The OpenVPN pid file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28295 guix-git/doc/guix.texi:28450 +#: guix-git/doc/guix.texi:28632 guix-git/doc/guix.texi:28787 msgid "Defaults to @samp{\"/var/run/openvpn/openvpn.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28298 +#: guix-git/doc/guix.texi:28635 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} proto proto" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28301 guix-git/doc/guix.texi:28456 +#: guix-git/doc/guix.texi:28638 guix-git/doc/guix.texi:28793 msgid "The protocol (UDP or TCP) used to open a channel between clients and servers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28303 guix-git/doc/guix.texi:28458 +#: guix-git/doc/guix.texi:28640 guix-git/doc/guix.texi:28795 msgid "Defaults to @samp{udp}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28306 +#: guix-git/doc/guix.texi:28643 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} dev dev" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28308 guix-git/doc/guix.texi:28463 +#: guix-git/doc/guix.texi:28645 guix-git/doc/guix.texi:28800 msgid "The device type used to represent the VPN connection." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28310 guix-git/doc/guix.texi:28465 +#: guix-git/doc/guix.texi:28647 guix-git/doc/guix.texi:28802 msgid "Defaults to @samp{tun}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28316 guix-git/doc/guix.texi:28471 +#: guix-git/doc/guix.texi:28653 guix-git/doc/guix.texi:28808 msgid "If you do not have some of these files (eg.@: you use a username and password), you can disable any of the following three fields by setting it to @code{'disabled}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28317 +#: guix-git/doc/guix.texi:28654 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string ca" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28319 guix-git/doc/guix.texi:28474 +#: guix-git/doc/guix.texi:28656 guix-git/doc/guix.texi:28811 msgid "The certificate authority to check connections against." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28321 guix-git/doc/guix.texi:28476 +#: guix-git/doc/guix.texi:28658 guix-git/doc/guix.texi:28813 msgid "Defaults to @samp{\"/etc/openvpn/ca.crt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28324 +#: guix-git/doc/guix.texi:28661 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28327 guix-git/doc/guix.texi:28482 +#: guix-git/doc/guix.texi:28664 guix-git/doc/guix.texi:28819 msgid "The certificate of the machine the daemon is running on. It should be signed by the authority given in @code{ca}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28329 guix-git/doc/guix.texi:28484 +#: guix-git/doc/guix.texi:28666 guix-git/doc/guix.texi:28821 msgid "Defaults to @samp{\"/etc/openvpn/client.crt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28332 +#: guix-git/doc/guix.texi:28669 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string key" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28335 guix-git/doc/guix.texi:28490 +#: guix-git/doc/guix.texi:28672 guix-git/doc/guix.texi:28827 msgid "The key of the machine the daemon is running on. It must be the key whose certificate is @code{cert}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28337 guix-git/doc/guix.texi:28492 +#: guix-git/doc/guix.texi:28674 guix-git/doc/guix.texi:28829 msgid "Defaults to @samp{\"/etc/openvpn/client.key\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28340 +#: guix-git/doc/guix.texi:28677 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean comp-lzo?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28342 guix-git/doc/guix.texi:28497 +#: guix-git/doc/guix.texi:28679 guix-git/doc/guix.texi:28834 msgid "Whether to use the lzo compression algorithm." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28347 +#: guix-git/doc/guix.texi:28684 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean persist-key?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28349 guix-git/doc/guix.texi:28504 +#: guix-git/doc/guix.texi:28686 guix-git/doc/guix.texi:28841 msgid "Don't re-read key files across SIGUSR1 or --ping-restart." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28354 +#: guix-git/doc/guix.texi:28691 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean persist-tun?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28357 guix-git/doc/guix.texi:28512 +#: guix-git/doc/guix.texi:28694 guix-git/doc/guix.texi:28849 msgid "Don't close and reopen TUN/TAP device or run up/down scripts across SIGUSR1 or --ping-restart restarts." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28362 +#: guix-git/doc/guix.texi:28699 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean fast-io?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28365 guix-git/doc/guix.texi:28520 +#: guix-git/doc/guix.texi:28702 guix-git/doc/guix.texi:28857 msgid "(Experimental) Optimize TUN/TAP/UDP I/O writes by avoiding a call to poll/epoll/select prior to the write operation." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28369 +#: guix-git/doc/guix.texi:28706 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} number verbosity" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28371 guix-git/doc/guix.texi:28526 +#: guix-git/doc/guix.texi:28708 guix-git/doc/guix.texi:28863 msgid "Verbosity level." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28373 guix-git/doc/guix.texi:28528 -#: guix-git/doc/guix.texi:30264 guix-git/doc/guix.texi:30488 +#: guix-git/doc/guix.texi:28710 guix-git/doc/guix.texi:28865 +#: guix-git/doc/guix.texi:30629 guix-git/doc/guix.texi:30853 msgid "Defaults to @samp{3}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28376 +#: guix-git/doc/guix.texi:28713 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} tls-auth-client tls-auth" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28379 guix-git/doc/guix.texi:28534 +#: guix-git/doc/guix.texi:28716 guix-git/doc/guix.texi:28871 msgid "Add an additional layer of HMAC authentication on top of the TLS control channel to protect against DoS attacks." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28384 +#: guix-git/doc/guix.texi:28721 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string auth-user-pass" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28388 +#: guix-git/doc/guix.texi:28725 msgid "Authenticate with server using username/password. The option is a file containing username/password on 2 lines. Do not use a file-like object as it would be added to the store and readable by any user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28390 +#: guix-git/doc/guix.texi:28727 msgid "Defaults to @samp{'disabled}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28392 +#: guix-git/doc/guix.texi:28729 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} key-usage verify-key-usage?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28394 +#: guix-git/doc/guix.texi:28731 msgid "Whether to check the server certificate has server usage extension." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28399 +#: guix-git/doc/guix.texi:28736 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} bind bind?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28401 +#: guix-git/doc/guix.texi:28738 msgid "Bind to a specific local port number." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28406 +#: guix-git/doc/guix.texi:28743 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} resolv-retry resolv-retry?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28408 +#: guix-git/doc/guix.texi:28745 msgid "Retry resolving server address." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28413 +#: guix-git/doc/guix.texi:28750 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} openvpn-remote-list remote" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28415 +#: guix-git/doc/guix.texi:28752 msgid "A list of remote servers to connect to." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28419 +#: guix-git/doc/guix.texi:28756 msgid "Available @code{openvpn-remote-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28420 +#: guix-git/doc/guix.texi:28757 #, no-wrap msgid "{@code{openvpn-remote-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28422 +#: guix-git/doc/guix.texi:28759 msgid "Server name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28424 +#: guix-git/doc/guix.texi:28761 msgid "Defaults to @samp{\"my-server\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28427 +#: guix-git/doc/guix.texi:28764 #, no-wrap msgid "{@code{openvpn-remote-configuration} parameter} number port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28429 +#: guix-git/doc/guix.texi:28766 msgid "Port number the server listens to." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28431 guix-git/doc/guix.texi:28543 +#: guix-git/doc/guix.texi:28768 guix-git/doc/guix.texi:28880 msgid "Defaults to @samp{1194}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28440 +#: guix-git/doc/guix.texi:28777 msgid "Available @code{openvpn-server-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28441 +#: guix-git/doc/guix.texi:28778 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} package openvpn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28446 +#: guix-git/doc/guix.texi:28783 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28453 +#: guix-git/doc/guix.texi:28790 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} proto proto" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28461 +#: guix-git/doc/guix.texi:28798 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} dev dev" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28472 +#: guix-git/doc/guix.texi:28809 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string ca" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28479 +#: guix-git/doc/guix.texi:28816 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28487 +#: guix-git/doc/guix.texi:28824 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string key" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28495 +#: guix-git/doc/guix.texi:28832 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean comp-lzo?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28502 +#: guix-git/doc/guix.texi:28839 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean persist-key?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28509 +#: guix-git/doc/guix.texi:28846 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean persist-tun?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28517 +#: guix-git/doc/guix.texi:28854 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean fast-io?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28524 +#: guix-git/doc/guix.texi:28861 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number verbosity" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28531 +#: guix-git/doc/guix.texi:28868 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} tls-auth-server tls-auth" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28539 +#: guix-git/doc/guix.texi:28876 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28541 +#: guix-git/doc/guix.texi:28878 msgid "Specifies the port number on which the server listens." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28546 +#: guix-git/doc/guix.texi:28883 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} ip-mask server" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28548 +#: guix-git/doc/guix.texi:28885 msgid "An ip and mask specifying the subnet inside the virtual network." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28550 +#: guix-git/doc/guix.texi:28887 msgid "Defaults to @samp{\"10.8.0.0 255.255.255.0\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28553 +#: guix-git/doc/guix.texi:28890 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} cidr6 server-ipv6" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28555 +#: guix-git/doc/guix.texi:28892 msgid "A CIDR notation specifying the IPv6 subnet inside the virtual network." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28560 +#: guix-git/doc/guix.texi:28897 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string dh" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28562 +#: guix-git/doc/guix.texi:28899 msgid "The Diffie-Hellman parameters file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28564 +#: guix-git/doc/guix.texi:28901 msgid "Defaults to @samp{\"/etc/openvpn/dh2048.pem\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28567 +#: guix-git/doc/guix.texi:28904 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string ifconfig-pool-persist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28569 +#: guix-git/doc/guix.texi:28906 msgid "The file that records client IPs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28571 +#: guix-git/doc/guix.texi:28908 msgid "Defaults to @samp{\"/etc/openvpn/ipp.txt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28574 +#: guix-git/doc/guix.texi:28911 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} gateway redirect-gateway?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28576 +#: guix-git/doc/guix.texi:28913 msgid "When true, the server will act as a gateway for its clients." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28581 +#: guix-git/doc/guix.texi:28918 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean client-to-client?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28583 +#: guix-git/doc/guix.texi:28920 msgid "When true, clients are allowed to talk to each other inside the VPN." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28588 +#: guix-git/doc/guix.texi:28925 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} keepalive keepalive" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28594 +#: guix-git/doc/guix.texi:28931 msgid "Causes ping-like messages to be sent back and forth over the link so that each side knows when the other side has gone down. @code{keepalive} requires a pair. The first element is the period of the ping sending, and the second element is the timeout before considering the other side down." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28597 +#: guix-git/doc/guix.texi:28934 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28599 +#: guix-git/doc/guix.texi:28936 msgid "The maximum number of clients." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28604 +#: guix-git/doc/guix.texi:28941 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string status" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28607 +#: guix-git/doc/guix.texi:28944 msgid "The status file. This file shows a small report on current connection. It is truncated and rewritten every minute." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28609 +#: guix-git/doc/guix.texi:28946 msgid "Defaults to @samp{\"/var/run/openvpn/status\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28612 +#: guix-git/doc/guix.texi:28949 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} openvpn-ccd-list client-config-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28614 +#: guix-git/doc/guix.texi:28951 msgid "The list of configuration for some clients." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28618 +#: guix-git/doc/guix.texi:28955 msgid "Available @code{openvpn-ccd-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28619 +#: guix-git/doc/guix.texi:28956 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28621 +#: guix-git/doc/guix.texi:28958 msgid "Client name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28623 +#: guix-git/doc/guix.texi:28960 msgid "Defaults to @samp{\"client\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28626 +#: guix-git/doc/guix.texi:28963 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} ip-mask iroute" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28628 +#: guix-git/doc/guix.texi:28965 msgid "Client own network" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28633 +#: guix-git/doc/guix.texi:28970 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} ip-mask ifconfig-push" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28635 +#: guix-git/doc/guix.texi:28972 msgid "Client VPN IP." msgstr "" #. type: subheading -#: guix-git/doc/guix.texi:28644 +#: guix-git/doc/guix.texi:28981 #, no-wrap msgid "strongSwan" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28648 +#: guix-git/doc/guix.texi:28985 msgid "Currently, the strongSwan service only provides legacy-style configuration with @file{ipsec.conf} and @file{ipsec.secrets} files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28649 +#: guix-git/doc/guix.texi:28986 #, no-wrap msgid "{Scheme Variable} strongswan-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28653 +#: guix-git/doc/guix.texi:28990 msgid "A service type for configuring strongSwan for IPsec @acronym{VPN, Virtual Private Networking}. Its value must be a @code{strongswan-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28659 +#: guix-git/doc/guix.texi:28996 #, no-wrap msgid "" "(service strongswan-service-type\n" @@ -51373,68 +51993,68 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28663 +#: guix-git/doc/guix.texi:29000 #, no-wrap msgid "{Data Type} strongswan-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28665 +#: guix-git/doc/guix.texi:29002 msgid "Data type representing the configuration of the StrongSwan service." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:28667 +#: guix-git/doc/guix.texi:29004 #, no-wrap msgid "strongswan" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28669 +#: guix-git/doc/guix.texi:29006 msgid "The strongSwan package to use for this service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28670 +#: guix-git/doc/guix.texi:29007 #, no-wrap msgid "@code{ipsec-conf} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28673 +#: guix-git/doc/guix.texi:29010 msgid "The file name of your @file{ipsec.conf}. If not @code{#f}, then this and @code{ipsec-secrets} must both be strings." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28674 +#: guix-git/doc/guix.texi:29011 #, no-wrap msgid "@code{ipsec-secrets} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28677 +#: guix-git/doc/guix.texi:29014 msgid "The file name of your @file{ipsec.secrets}. If not @code{#f}, then this and @code{ipsec-conf} must both be strings." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28681 +#: guix-git/doc/guix.texi:29018 #, no-wrap msgid "Wireguard" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28683 +#: guix-git/doc/guix.texi:29020 #, no-wrap msgid "{Scheme Variable} wireguard-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28686 +#: guix-git/doc/guix.texi:29023 msgid "A service type for a Wireguard tunnel interface. Its value must be a @code{wireguard-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28697 +#: guix-git/doc/guix.texi:29034 #, no-wrap msgid "" "(service wireguard-service-type\n" @@ -51449,250 +52069,250 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28701 +#: guix-git/doc/guix.texi:29038 #, no-wrap msgid "{Data Type} wireguard-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28703 +#: guix-git/doc/guix.texi:29040 msgid "Data type representing the configuration of the Wireguard service." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:28705 +#: guix-git/doc/guix.texi:29042 #, no-wrap msgid "wireguard" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28707 +#: guix-git/doc/guix.texi:29044 msgid "The wireguard package to use for this service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28708 +#: guix-git/doc/guix.texi:29045 #, no-wrap msgid "@code{interface} (default: @code{\"wg0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28710 +#: guix-git/doc/guix.texi:29047 msgid "The interface name for the VPN." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28711 +#: guix-git/doc/guix.texi:29048 #, no-wrap msgid "@code{addresses} (default: @code{'(\"10.0.0.1/32\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28713 +#: guix-git/doc/guix.texi:29050 msgid "The IP addresses to be assigned to the above interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28714 +#: guix-git/doc/guix.texi:29051 #, no-wrap msgid "@code{port} (default: @code{51820})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28716 +#: guix-git/doc/guix.texi:29053 msgid "The port on which to listen for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28717 +#: guix-git/doc/guix.texi:29054 #, no-wrap msgid "@code{dns} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28719 +#: guix-git/doc/guix.texi:29056 msgid "The DNS server(s) to announce to VPN clients via DHCP." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28720 +#: guix-git/doc/guix.texi:29057 #, no-wrap msgid "@code{private-key} (default: @code{\"/etc/wireguard/private.key\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28723 +#: guix-git/doc/guix.texi:29060 msgid "The private key file for the interface. It is automatically generated if the file does not exist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28724 +#: guix-git/doc/guix.texi:29061 #, no-wrap msgid "@code{peers} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28727 +#: guix-git/doc/guix.texi:29064 msgid "The authorized peers on this interface. This is a list of @var{wireguard-peer} records." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28731 +#: guix-git/doc/guix.texi:29068 #, no-wrap msgid "{Data Type} wireguard-peer" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28733 +#: guix-git/doc/guix.texi:29070 msgid "Data type representing a Wireguard peer attached to a given interface." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28737 +#: guix-git/doc/guix.texi:29074 msgid "The peer name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28738 +#: guix-git/doc/guix.texi:29075 #, no-wrap msgid "@code{endpoint} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28741 +#: guix-git/doc/guix.texi:29078 msgid "The optional endpoint for the peer, such as @code{\"demo.wireguard.com:51820\"}." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:28742 guix-git/doc/guix.texi:29137 -#: guix-git/doc/guix.texi:29174 guix-git/doc/guix.texi:34305 +#: guix-git/doc/guix.texi:29079 guix-git/doc/guix.texi:29474 +#: guix-git/doc/guix.texi:29511 guix-git/doc/guix.texi:34744 #, no-wrap msgid "public-key" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28744 +#: guix-git/doc/guix.texi:29081 msgid "The peer public-key represented as a base64 string." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:28745 +#: guix-git/doc/guix.texi:29082 #, no-wrap msgid "allowed-ips" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28748 +#: guix-git/doc/guix.texi:29085 msgid "A list of IP addresses from which incoming traffic for this peer is allowed and to which incoming traffic for this peer is directed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28749 +#: guix-git/doc/guix.texi:29086 #, no-wrap msgid "@code{keep-alive} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28754 +#: guix-git/doc/guix.texi:29091 msgid "An optional time interval in seconds. A packet will be sent to the server endpoint once per time interval. This helps receiving incoming connections from this peer when you are behind a NAT or a firewall." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28760 +#: guix-git/doc/guix.texi:29097 #, no-wrap msgid "NFS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28765 +#: guix-git/doc/guix.texi:29102 msgid "The @code{(gnu services nfs)} module provides the following services, which are most commonly used in relation to mounting or exporting directory trees as @dfn{network file systems} (NFS)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28769 +#: guix-git/doc/guix.texi:29106 msgid "While it is possible to use the individual components that together make up a Network File System service, we recommended to configure an NFS server with the @code{nfs-service-type}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28770 +#: guix-git/doc/guix.texi:29107 #, no-wrap msgid "NFS Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28771 +#: guix-git/doc/guix.texi:29108 #, no-wrap msgid "NFS, server" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28776 +#: guix-git/doc/guix.texi:29113 msgid "The NFS service takes care of setting up all NFS component services, kernel configuration file systems, and installs configuration files in the locations that NFS expects." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28777 +#: guix-git/doc/guix.texi:29114 #, no-wrap msgid "{Scheme Variable} nfs-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28779 +#: guix-git/doc/guix.texi:29116 msgid "A service type for a complete NFS server." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28781 +#: guix-git/doc/guix.texi:29118 #, no-wrap msgid "{Data Type} nfs-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28784 +#: guix-git/doc/guix.texi:29121 msgid "This data type represents the configuration of the NFS service and all of its subsystems." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28786 +#: guix-git/doc/guix.texi:29123 msgid "It has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28787 guix-git/doc/guix.texi:28912 -#: guix-git/doc/guix.texi:28937 +#: guix-git/doc/guix.texi:29124 guix-git/doc/guix.texi:29249 +#: guix-git/doc/guix.texi:29274 #, no-wrap msgid "@code{nfs-utils} (default: @code{nfs-utils})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28789 +#: guix-git/doc/guix.texi:29126 msgid "The nfs-utils package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28790 +#: guix-git/doc/guix.texi:29127 #, no-wrap msgid "@code{nfs-versions} (default: @code{'(\"4.2\" \"4.1\" \"4.0\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28793 +#: guix-git/doc/guix.texi:29130 msgid "If a list of string values is provided, the @command{rpc.nfsd} daemon will be limited to supporting the given versions of the NFS protocol." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28794 +#: guix-git/doc/guix.texi:29131 #, no-wrap msgid "@code{exports} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28799 +#: guix-git/doc/guix.texi:29136 msgid "This is a list of directories the NFS server should export. Each entry is a list consisting of two elements: a directory name and a string containing all options. This is an example in which the directory @file{/export} is served to all NFS clients as a read-only share:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28805 +#: guix-git/doc/guix.texi:29142 #, no-wrap msgid "" "(nfs-configuration\n" @@ -51702,384 +52322,384 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28807 +#: guix-git/doc/guix.texi:29144 #, no-wrap msgid "@code{rpcmountd-port} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28809 +#: guix-git/doc/guix.texi:29146 msgid "The network port that the @command{rpc.mountd} daemon should use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28810 +#: guix-git/doc/guix.texi:29147 #, no-wrap msgid "@code{rpcstatd-port} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28812 +#: guix-git/doc/guix.texi:29149 msgid "The network port that the @command{rpc.statd} daemon should use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28813 guix-git/doc/guix.texi:28861 +#: guix-git/doc/guix.texi:29150 guix-git/doc/guix.texi:29198 #, no-wrap msgid "@code{rpcbind} (default: @code{rpcbind})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28815 guix-git/doc/guix.texi:28863 +#: guix-git/doc/guix.texi:29152 guix-git/doc/guix.texi:29200 msgid "The rpcbind package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28816 +#: guix-git/doc/guix.texi:29153 #, no-wrap msgid "@code{idmap-domain} (default: @code{\"localdomain\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28818 +#: guix-git/doc/guix.texi:29155 msgid "The local NFSv4 domain name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28819 +#: guix-git/doc/guix.texi:29156 #, no-wrap msgid "@code{nfsd-port} (default: @code{2049})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28821 +#: guix-git/doc/guix.texi:29158 msgid "The network port that the @command{nfsd} daemon should use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28822 +#: guix-git/doc/guix.texi:29159 #, no-wrap msgid "@code{nfsd-threads} (default: @code{8})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28824 +#: guix-git/doc/guix.texi:29161 msgid "The number of threads used by the @command{nfsd} daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28825 +#: guix-git/doc/guix.texi:29162 #, no-wrap msgid "@code{nfsd-tcp?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28827 +#: guix-git/doc/guix.texi:29164 msgid "Whether the @command{nfsd} daemon should listen on a TCP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28828 +#: guix-git/doc/guix.texi:29165 #, no-wrap msgid "@code{nfsd-udp?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28830 +#: guix-git/doc/guix.texi:29167 msgid "Whether the @command{nfsd} daemon should listen on a UDP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28831 guix-git/doc/guix.texi:28915 -#: guix-git/doc/guix.texi:28940 +#: guix-git/doc/guix.texi:29168 guix-git/doc/guix.texi:29252 +#: guix-git/doc/guix.texi:29277 #, no-wrap msgid "@code{pipefs-directory} (default: @code{\"/var/lib/nfs/rpc_pipefs\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28833 guix-git/doc/guix.texi:28917 -#: guix-git/doc/guix.texi:28942 +#: guix-git/doc/guix.texi:29170 guix-git/doc/guix.texi:29254 +#: guix-git/doc/guix.texi:29279 msgid "The directory where the pipefs file system is mounted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28834 +#: guix-git/doc/guix.texi:29171 #, no-wrap msgid "@code{debug} (default: @code{'()\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28838 +#: guix-git/doc/guix.texi:29175 msgid "A list of subsystems for which debugging output should be enabled. This is a list of symbols. Any of these symbols are valid: @code{nfsd}, @code{nfs}, @code{rpc}, @code{idmap}, @code{statd}, or @code{mountd}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28843 +#: guix-git/doc/guix.texi:29180 msgid "If you don't need a complete NFS service or prefer to build it yourself you can use the individual component services that are documented below." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28844 +#: guix-git/doc/guix.texi:29181 #, no-wrap msgid "RPC Bind Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28845 +#: guix-git/doc/guix.texi:29182 #, no-wrap msgid "rpcbind" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28851 +#: guix-git/doc/guix.texi:29188 msgid "The RPC Bind service provides a facility to map program numbers into universal addresses. Many NFS related services use this facility. Hence it is automatically started when a dependent service starts." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28852 +#: guix-git/doc/guix.texi:29189 #, no-wrap msgid "{Scheme Variable} rpcbind-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28854 +#: guix-git/doc/guix.texi:29191 msgid "A service type for the RPC portmapper daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28857 +#: guix-git/doc/guix.texi:29194 #, no-wrap msgid "{Data Type} rpcbind-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28860 +#: guix-git/doc/guix.texi:29197 msgid "Data type representing the configuration of the RPC Bind Service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28864 +#: guix-git/doc/guix.texi:29201 #, no-wrap msgid "@code{warm-start?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28868 +#: guix-git/doc/guix.texi:29205 msgid "If this parameter is @code{#t}, then the daemon will read a state file on startup thus reloading state information saved by a previous instance." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28872 +#: guix-git/doc/guix.texi:29209 #, no-wrap msgid "Pipefs Pseudo File System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28873 +#: guix-git/doc/guix.texi:29210 #, no-wrap msgid "pipefs" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28874 +#: guix-git/doc/guix.texi:29211 #, no-wrap msgid "rpc_pipefs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28878 +#: guix-git/doc/guix.texi:29215 msgid "The pipefs file system is used to transfer NFS related data between the kernel and user space programs." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28879 +#: guix-git/doc/guix.texi:29216 #, no-wrap msgid "{Scheme Variable} pipefs-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28881 +#: guix-git/doc/guix.texi:29218 msgid "A service type for the pipefs pseudo file system." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28883 +#: guix-git/doc/guix.texi:29220 #, no-wrap msgid "{Data Type} pipefs-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28886 +#: guix-git/doc/guix.texi:29223 msgid "Data type representing the configuration of the pipefs pseudo file system service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28887 +#: guix-git/doc/guix.texi:29224 #, no-wrap msgid "@code{mount-point} (default: @code{\"/var/lib/nfs/rpc_pipefs\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28889 +#: guix-git/doc/guix.texi:29226 msgid "The directory to which the file system is to be attached." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28893 +#: guix-git/doc/guix.texi:29230 #, no-wrap msgid "GSS Daemon Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28894 +#: guix-git/doc/guix.texi:29231 #, no-wrap msgid "GSSD" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28895 +#: guix-git/doc/guix.texi:29232 #, no-wrap msgid "GSS" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28896 +#: guix-git/doc/guix.texi:29233 #, no-wrap msgid "global security system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28903 +#: guix-git/doc/guix.texi:29240 msgid "The @dfn{global security system} (GSS) daemon provides strong security for RPC based protocols. Before exchanging RPC requests an RPC client must establish a security context. Typically this is done using the Kerberos command @command{kinit} or automatically at login time using PAM services (@pxref{Kerberos Services})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28904 +#: guix-git/doc/guix.texi:29241 #, no-wrap msgid "{Scheme Variable} gss-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28906 +#: guix-git/doc/guix.texi:29243 msgid "A service type for the Global Security System (GSS) daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28908 +#: guix-git/doc/guix.texi:29245 #, no-wrap msgid "{Data Type} gss-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28911 +#: guix-git/doc/guix.texi:29248 msgid "Data type representing the configuration of the GSS daemon service. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28914 +#: guix-git/doc/guix.texi:29251 msgid "The package in which the @command{rpc.gssd} command is to be found." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28922 +#: guix-git/doc/guix.texi:29259 #, no-wrap msgid "IDMAP Daemon Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28923 +#: guix-git/doc/guix.texi:29260 #, no-wrap msgid "idmapd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28924 +#: guix-git/doc/guix.texi:29261 #, no-wrap msgid "name mapper" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28928 +#: guix-git/doc/guix.texi:29265 msgid "The idmap daemon service provides mapping between user IDs and user names. Typically it is required in order to access file systems mounted via NFSv4." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28929 +#: guix-git/doc/guix.texi:29266 #, no-wrap msgid "{Scheme Variable} idmap-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28931 +#: guix-git/doc/guix.texi:29268 msgid "A service type for the Identity Mapper (IDMAP) daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28933 +#: guix-git/doc/guix.texi:29270 #, no-wrap msgid "{Data Type} idmap-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28936 +#: guix-git/doc/guix.texi:29273 msgid "Data type representing the configuration of the IDMAP daemon service. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28939 +#: guix-git/doc/guix.texi:29276 msgid "The package in which the @command{rpc.idmapd} command is to be found." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28943 +#: guix-git/doc/guix.texi:29280 #, no-wrap msgid "@code{domain} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28947 +#: guix-git/doc/guix.texi:29284 msgid "The local NFSv4 domain name. This must be a string or @code{#f}. If it is @code{#f} then the daemon will use the host's fully qualified domain name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28948 +#: guix-git/doc/guix.texi:29285 #, no-wrap msgid "@code{verbosity} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28950 +#: guix-git/doc/guix.texi:29287 msgid "The verbosity level of the daemon." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28961 +#: guix-git/doc/guix.texi:29298 msgid "@uref{https://guix.gnu.org/cuirass/, Cuirass} is a continuous integration tool for Guix. It can be used both for development and for providing substitutes to others (@pxref{Substitutes})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28963 +#: guix-git/doc/guix.texi:29300 msgid "The @code{(gnu services cuirass)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28964 +#: guix-git/doc/guix.texi:29301 #, no-wrap msgid "{Scheme Procedure} cuirass-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28967 +#: guix-git/doc/guix.texi:29304 msgid "The type of the Cuirass service. Its value must be a @code{cuirass-configuration} object, as described below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28972 +#: guix-git/doc/guix.texi:29309 msgid "To add build jobs, you have to set the @code{specifications} field of the configuration. For instance, the following example will build all the packages provided by the @code{my-channel} channel." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28983 +#: guix-git/doc/guix.texi:29320 #, no-wrap msgid "" "(define %cuirass-specs\n" @@ -52095,7 +52715,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28987 guix-git/doc/guix.texi:29001 +#: guix-git/doc/guix.texi:29324 guix-git/doc/guix.texi:29338 #, no-wrap msgid "" "(service cuirass-service-type\n" @@ -52104,12 +52724,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28991 +#: guix-git/doc/guix.texi:29328 msgid "To build the @code{linux-libre} package defined by the default Guix channel, one can use the following configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28997 +#: guix-git/doc/guix.texi:29334 #, no-wrap msgid "" "(define %cuirass-specs\n" @@ -52120,572 +52740,572 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29006 +#: guix-git/doc/guix.texi:29343 msgid "The other configuration possibilities, as well as the specification record itself are described in the Cuirass manual (@pxref{Specifications,,, cuirass, Cuirass})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29010 +#: guix-git/doc/guix.texi:29347 msgid "While information related to build jobs is located directly in the specifications, global settings for the @command{cuirass} process are accessible in other @code{cuirass-configuration} fields." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29011 +#: guix-git/doc/guix.texi:29348 #, no-wrap msgid "{Data Type} cuirass-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29013 +#: guix-git/doc/guix.texi:29350 msgid "Data type representing the configuration of Cuirass." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29015 guix-git/doc/guix.texi:29152 +#: guix-git/doc/guix.texi:29352 guix-git/doc/guix.texi:29489 #, no-wrap msgid "@code{cuirass} (default: @code{cuirass})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29017 guix-git/doc/guix.texi:29154 +#: guix-git/doc/guix.texi:29354 guix-git/doc/guix.texi:29491 msgid "The Cuirass package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29018 +#: guix-git/doc/guix.texi:29355 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29020 guix-git/doc/guix.texi:29124 -#: guix-git/doc/guix.texi:29167 +#: guix-git/doc/guix.texi:29357 guix-git/doc/guix.texi:29461 +#: guix-git/doc/guix.texi:29504 msgid "Location of the log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29021 +#: guix-git/doc/guix.texi:29358 #, no-wrap msgid "@code{web-log-file} (default: @code{\"/var/log/cuirass-web.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29023 +#: guix-git/doc/guix.texi:29360 msgid "Location of the log file used by the web interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29024 +#: guix-git/doc/guix.texi:29361 #, no-wrap msgid "@code{cache-directory} (default: @code{\"/var/cache/cuirass\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29026 +#: guix-git/doc/guix.texi:29363 msgid "Location of the repository cache." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29027 +#: guix-git/doc/guix.texi:29364 #, no-wrap msgid "@code{user} (default: @code{\"cuirass\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29029 +#: guix-git/doc/guix.texi:29366 msgid "Owner of the @code{cuirass} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29030 +#: guix-git/doc/guix.texi:29367 #, no-wrap msgid "@code{group} (default: @code{\"cuirass\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29032 +#: guix-git/doc/guix.texi:29369 msgid "Owner's group of the @code{cuirass} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29033 +#: guix-git/doc/guix.texi:29370 #, no-wrap msgid "@code{interval} (default: @code{60})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29036 +#: guix-git/doc/guix.texi:29373 msgid "Number of seconds between the poll of the repositories followed by the Cuirass jobs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29037 +#: guix-git/doc/guix.texi:29374 #, no-wrap msgid "@code{parameters} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29040 +#: guix-git/doc/guix.texi:29377 msgid "Read parameters from the given @var{parameters} file. The supported parameters are described here (@pxref{Parameters,,, cuirass, Cuirass})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29041 +#: guix-git/doc/guix.texi:29378 #, no-wrap msgid "@code{remote-server} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29044 +#: guix-git/doc/guix.texi:29381 msgid "A @code{cuirass-remote-server-configuration} record to use the build remote mechanism or @code{#f} to use the default build mechanism." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29045 +#: guix-git/doc/guix.texi:29382 #, no-wrap msgid "@code{database} (default: @code{\"dbname=cuirass host=/var/run/postgresql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29050 +#: guix-git/doc/guix.texi:29387 msgid "Use @var{database} as the database containing the jobs and the past build results. Since Cuirass uses PostgreSQL as a database engine, @var{database} must be a string such as @code{\"dbname=cuirass host=localhost\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29051 +#: guix-git/doc/guix.texi:29388 #, no-wrap msgid "@code{port} (default: @code{8081})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29053 +#: guix-git/doc/guix.texi:29390 msgid "Port number used by the HTTP server." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29057 +#: guix-git/doc/guix.texi:29394 msgid "Listen on the network interface for @var{host}. The default is to accept connections from localhost." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29058 +#: guix-git/doc/guix.texi:29395 #, no-wrap msgid "@code{specifications} (default: @code{#~'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29062 +#: guix-git/doc/guix.texi:29399 msgid "A gexp (@pxref{G-Expressions}) that evaluates to a list of specifications records. The specification record is described in the Cuirass manual (@pxref{Specifications,,, cuirass, Cuirass})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29063 +#: guix-git/doc/guix.texi:29400 #, no-wrap msgid "@code{use-substitutes?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29066 +#: guix-git/doc/guix.texi:29403 msgid "This allows using substitutes to avoid building every dependencies of a job from source." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29067 guix-git/doc/guix.texi:36336 +#: guix-git/doc/guix.texi:29404 guix-git/doc/guix.texi:36826 #, no-wrap msgid "@code{one-shot?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29069 +#: guix-git/doc/guix.texi:29406 msgid "Only evaluate specifications and build derivations once." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29070 +#: guix-git/doc/guix.texi:29407 #, no-wrap msgid "@code{fallback?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29073 +#: guix-git/doc/guix.texi:29410 msgid "When substituting a pre-built binary fails, fall back to building packages locally." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29076 +#: guix-git/doc/guix.texi:29413 msgid "Extra options to pass when running the Cuirass processes." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29080 +#: guix-git/doc/guix.texi:29417 #, no-wrap msgid "remote build" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29081 +#: guix-git/doc/guix.texi:29418 #, no-wrap msgid "Cuirass remote building" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29084 +#: guix-git/doc/guix.texi:29421 msgid "Cuirass supports two mechanisms to build derivations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29086 +#: guix-git/doc/guix.texi:29423 #, no-wrap msgid "Using the local Guix daemon." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:29090 +#: guix-git/doc/guix.texi:29427 msgid "This is the default build mechanism. Once the build jobs are evaluated, they are sent to the local Guix daemon. Cuirass then listens to the Guix daemon output to detect the various build events." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29091 +#: guix-git/doc/guix.texi:29428 #, no-wrap msgid "Using the remote build mechanism." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:29095 +#: guix-git/doc/guix.texi:29432 msgid "The build jobs are not submitted to the local Guix daemon. Instead, a remote server dispatches build requests to the connect remote workers, according to the build priorities." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29102 +#: guix-git/doc/guix.texi:29439 msgid "To enable this build mode a @code{cuirass-remote-server-configuration} record must be passed as @code{remote-server} argument of the @code{cuirass-configuration} record. The @code{cuirass-remote-server-configuration} record is described below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29107 +#: guix-git/doc/guix.texi:29444 msgid "This build mode scales way better than the default build mode. This is the build mode that is used on the GNU Guix build farm at @url{https://ci.guix.gnu.org}. It should be preferred when using Cuirass to build large amount of packages." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29108 +#: guix-git/doc/guix.texi:29445 #, no-wrap msgid "{Data Type} cuirass-remote-server-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29110 +#: guix-git/doc/guix.texi:29447 msgid "Data type representing the configuration of the Cuirass remote-server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29112 +#: guix-git/doc/guix.texi:29449 #, no-wrap msgid "@code{backend-port} (default: @code{5555})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29115 +#: guix-git/doc/guix.texi:29452 msgid "The TCP port for communicating with @code{remote-worker} processes using ZMQ. It defaults to @code{5555}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29116 +#: guix-git/doc/guix.texi:29453 #, no-wrap msgid "@code{log-port} (default: @code{5556})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29118 +#: guix-git/doc/guix.texi:29455 msgid "The TCP port of the log server. It defaults to @code{5556}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29119 +#: guix-git/doc/guix.texi:29456 #, no-wrap msgid "@code{publish-port} (default: @code{5557})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29121 +#: guix-git/doc/guix.texi:29458 msgid "The TCP port of the publish server. It defaults to @code{5557}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29122 +#: guix-git/doc/guix.texi:29459 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass-remote-server.log\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:29125 +#: guix-git/doc/guix.texi:29462 #, no-wrap msgid "@code{cache} (default: @code{\"/var/cache/cuirass/remote\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29127 +#: guix-git/doc/guix.texi:29464 msgid "Use @var{cache} directory to cache build log files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29128 +#: guix-git/doc/guix.texi:29465 #, no-wrap msgid "@code{trigger-url} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29131 +#: guix-git/doc/guix.texi:29468 msgid "Once a substitute is successfully fetched, trigger substitute baking at @var{trigger-url}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29136 +#: guix-git/doc/guix.texi:29473 msgid "If set to false, do not start a publish server and ignore the @code{publish-port} argument. This can be useful if there is already a standalone publish server standing next to the remote server." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:29138 guix-git/doc/guix.texi:29175 +#: guix-git/doc/guix.texi:29475 guix-git/doc/guix.texi:29512 #, no-wrap msgid "private-key" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29147 +#: guix-git/doc/guix.texi:29484 msgid "At least one remote worker must also be started on any machine of the local network to actually perform the builds and report their status." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29148 +#: guix-git/doc/guix.texi:29485 #, no-wrap msgid "{Data Type} cuirass-remote-worker-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29150 +#: guix-git/doc/guix.texi:29487 msgid "Data type representing the configuration of the Cuirass remote-worker." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29155 +#: guix-git/doc/guix.texi:29492 #, no-wrap msgid "@code{workers} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29157 +#: guix-git/doc/guix.texi:29494 msgid "Start @var{workers} parallel workers." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29161 +#: guix-git/doc/guix.texi:29498 msgid "Do not use Avahi discovery and connect to the given @code{server} IP address instead." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29162 +#: guix-git/doc/guix.texi:29499 #, no-wrap msgid "@code{systems} (default: @code{(list (%current-system))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29164 +#: guix-git/doc/guix.texi:29501 msgid "Only request builds for the given @var{systems}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29165 +#: guix-git/doc/guix.texi:29502 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass-remote-worker.log\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:29168 +#: guix-git/doc/guix.texi:29505 #, no-wrap msgid "@code{publish-port} (default: @code{5558})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29170 +#: guix-git/doc/guix.texi:29507 msgid "The TCP port of the publish server. It defaults to @code{5558}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29182 +#: guix-git/doc/guix.texi:29519 #, no-wrap msgid "Laminar" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29187 +#: guix-git/doc/guix.texi:29524 msgid "@uref{https://laminar.ohwg.net/, Laminar} is a lightweight and modular Continuous Integration service. It doesn't have a configuration web UI instead uses version-controllable configuration files and scripts." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29190 +#: guix-git/doc/guix.texi:29527 msgid "Laminar encourages the use of existing tools such as bash and cron instead of reinventing them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29191 +#: guix-git/doc/guix.texi:29528 #, no-wrap msgid "{Scheme Procedure} laminar-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29194 +#: guix-git/doc/guix.texi:29531 msgid "The type of the Laminar service. Its value must be a @code{laminar-configuration} object, as described below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29198 +#: guix-git/doc/guix.texi:29535 msgid "All configuration values have defaults, a minimal configuration to get Laminar running is shown below. By default, the web interface is available on port 8080." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29201 +#: guix-git/doc/guix.texi:29538 #, no-wrap msgid "(service laminar-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29204 +#: guix-git/doc/guix.texi:29541 #, no-wrap msgid "{Data Type} laminar-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29206 +#: guix-git/doc/guix.texi:29543 msgid "Data type representing the configuration of Laminar." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29208 +#: guix-git/doc/guix.texi:29545 #, no-wrap msgid "@code{laminar} (default: @code{laminar})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29210 +#: guix-git/doc/guix.texi:29547 msgid "The Laminar package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29211 +#: guix-git/doc/guix.texi:29548 #, no-wrap msgid "@code{home-directory} (default: @code{\"/var/lib/laminar\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29213 +#: guix-git/doc/guix.texi:29550 msgid "The directory for job configurations and run directories." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29214 +#: guix-git/doc/guix.texi:29551 #, no-wrap msgid "@code{bind-http} (default: @code{\"*:8080\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29217 +#: guix-git/doc/guix.texi:29554 msgid "The interface/port or unix socket on which laminard should listen for incoming connections to the web frontend." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29218 +#: guix-git/doc/guix.texi:29555 #, no-wrap msgid "@code{bind-rpc} (default: @code{\"unix-abstract:laminar\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29221 +#: guix-git/doc/guix.texi:29558 msgid "The interface/port or unix socket on which laminard should listen for incoming commands such as build triggers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29222 +#: guix-git/doc/guix.texi:29559 #, no-wrap msgid "@code{title} (default: @code{\"Laminar\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29224 +#: guix-git/doc/guix.texi:29561 msgid "The page title to show in the web frontend." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29225 +#: guix-git/doc/guix.texi:29562 #, no-wrap msgid "@code{keep-rundirs} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29229 +#: guix-git/doc/guix.texi:29566 msgid "Set to an integer defining how many rundirs to keep per job. The lowest-numbered ones will be deleted. The default is 0, meaning all run dirs will be immediately deleted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29230 +#: guix-git/doc/guix.texi:29567 #, no-wrap msgid "@code{archive-url} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29233 +#: guix-git/doc/guix.texi:29570 msgid "The web frontend served by laminard will use this URL to form links to artefacts archived jobs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29234 +#: guix-git/doc/guix.texi:29571 #, no-wrap msgid "@code{base-url} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29236 +#: guix-git/doc/guix.texi:29573 msgid "Base URL to use for links to laminar itself." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29243 +#: guix-git/doc/guix.texi:29580 #, no-wrap msgid "tlp" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29244 +#: guix-git/doc/guix.texi:29581 #, no-wrap msgid "power management with TLP" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29245 +#: guix-git/doc/guix.texi:29582 #, no-wrap msgid "TLP daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29249 +#: guix-git/doc/guix.texi:29586 msgid "The @code{(gnu services pm)} module provides a Guix service definition for the Linux power management tool TLP." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29255 +#: guix-git/doc/guix.texi:29592 msgid "TLP enables various powersaving modes in userspace and kernel. Contrary to @code{upower-service}, it is not a passive, monitoring tool, as it will apply custom settings each time a new power source is detected. More information can be found at @uref{https://linrunner.de/en/tlp/tlp.html, TLP home page}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29256 +#: guix-git/doc/guix.texi:29593 #, no-wrap msgid "{Scheme Variable} tlp-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29260 +#: guix-git/doc/guix.texi:29597 msgid "The service type for the TLP tool. The default settings are optimised for battery life on most systems, but you can tweak them to your heart's content by adding a valid @code{tlp-configuration}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29265 +#: guix-git/doc/guix.texi:29602 #, no-wrap msgid "" "(service tlp-service-type\n" @@ -52695,888 +53315,932 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29273 +#: guix-git/doc/guix.texi:29610 msgid "Each parameter definition is preceded by its type; for example, @samp{boolean foo} indicates that the @code{foo} parameter should be specified as a boolean. Types starting with @code{maybe-} denote parameters that won't show up in TLP config file when their value is @code{'disabled}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29283 +#: guix-git/doc/guix.texi:29620 msgid "Available @code{tlp-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29284 +#: guix-git/doc/guix.texi:29621 #, no-wrap msgid "{@code{tlp-configuration} parameter} package tlp" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29286 +#: guix-git/doc/guix.texi:29623 msgid "The TLP package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29289 +#: guix-git/doc/guix.texi:29626 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean tlp-enable?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29291 +#: guix-git/doc/guix.texi:29628 msgid "Set to true if you wish to enable TLP." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29296 +#: guix-git/doc/guix.texi:29633 #, no-wrap msgid "{@code{tlp-configuration} parameter} string tlp-default-mode" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29299 +#: guix-git/doc/guix.texi:29636 msgid "Default mode when no power supply can be detected. Alternatives are AC and BAT." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29301 +#: guix-git/doc/guix.texi:29638 msgid "Defaults to @samp{\"AC\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29304 +#: guix-git/doc/guix.texi:29641 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer disk-idle-secs-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29307 +#: guix-git/doc/guix.texi:29644 msgid "Number of seconds Linux kernel has to wait after the disk goes idle, before syncing on AC." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29312 +#: guix-git/doc/guix.texi:29649 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer disk-idle-secs-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29314 +#: guix-git/doc/guix.texi:29651 msgid "Same as @code{disk-idle-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29316 +#: guix-git/doc/guix.texi:29653 msgid "Defaults to @samp{2}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29319 +#: guix-git/doc/guix.texi:29656 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer max-lost-work-secs-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29321 +#: guix-git/doc/guix.texi:29658 msgid "Dirty pages flushing periodicity, expressed in seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29323 guix-git/doc/guix.texi:29546 -#: guix-git/doc/guix.texi:31814 guix-git/doc/guix.texi:31822 +#: guix-git/doc/guix.texi:29660 guix-git/doc/guix.texi:29883 +#: guix-git/doc/guix.texi:32179 guix-git/doc/guix.texi:32187 msgid "Defaults to @samp{15}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29326 +#: guix-git/doc/guix.texi:29663 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer max-lost-work-secs-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29328 +#: guix-git/doc/guix.texi:29665 msgid "Same as @code{max-lost-work-secs-on-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29330 +#: guix-git/doc/guix.texi:29667 msgid "Defaults to @samp{60}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29333 +#: guix-git/doc/guix.texi:29670 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list cpu-scaling-governor-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29337 +#: guix-git/doc/guix.texi:29674 msgid "CPU frequency scaling governor on AC mode. With intel_pstate driver, alternatives are powersave and performance. With acpi-cpufreq driver, alternatives are ondemand, powersave, performance and conservative." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29342 +#: guix-git/doc/guix.texi:29679 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list cpu-scaling-governor-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29344 +#: guix-git/doc/guix.texi:29681 msgid "Same as @code{cpu-scaling-governor-on-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29349 +#: guix-git/doc/guix.texi:29686 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-min-freq-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29351 +#: guix-git/doc/guix.texi:29688 msgid "Set the min available frequency for the scaling governor on AC." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29356 +#: guix-git/doc/guix.texi:29693 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-max-freq-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29358 +#: guix-git/doc/guix.texi:29695 msgid "Set the max available frequency for the scaling governor on AC." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29363 +#: guix-git/doc/guix.texi:29700 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-min-freq-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29365 +#: guix-git/doc/guix.texi:29702 msgid "Set the min available frequency for the scaling governor on BAT." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29370 +#: guix-git/doc/guix.texi:29707 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-max-freq-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29372 +#: guix-git/doc/guix.texi:29709 msgid "Set the max available frequency for the scaling governor on BAT." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29377 +#: guix-git/doc/guix.texi:29714 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-min-perf-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29380 +#: guix-git/doc/guix.texi:29717 msgid "Limit the min P-state to control the power dissipation of the CPU, in AC mode. Values are stated as a percentage of the available performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29385 +#: guix-git/doc/guix.texi:29722 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29388 +#: guix-git/doc/guix.texi:29725 msgid "Limit the max P-state to control the power dissipation of the CPU, in AC mode. Values are stated as a percentage of the available performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29393 +#: guix-git/doc/guix.texi:29730 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-min-perf-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29395 +#: guix-git/doc/guix.texi:29732 msgid "Same as @code{cpu-min-perf-on-ac} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29400 +#: guix-git/doc/guix.texi:29737 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29402 +#: guix-git/doc/guix.texi:29739 msgid "Same as @code{cpu-max-perf-on-ac} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29407 +#: guix-git/doc/guix.texi:29744 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean cpu-boost-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29409 +#: guix-git/doc/guix.texi:29746 msgid "Enable CPU turbo boost feature on AC mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29414 +#: guix-git/doc/guix.texi:29751 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean cpu-boost-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29416 +#: guix-git/doc/guix.texi:29753 msgid "Same as @code{cpu-boost-on-ac?} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29421 +#: guix-git/doc/guix.texi:29758 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean sched-powersave-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29424 +#: guix-git/doc/guix.texi:29761 msgid "Allow Linux kernel to minimize the number of CPU cores/hyper-threads used under light load conditions." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29429 +#: guix-git/doc/guix.texi:29766 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean sched-powersave-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29431 +#: guix-git/doc/guix.texi:29768 msgid "Same as @code{sched-powersave-on-ac?} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29436 +#: guix-git/doc/guix.texi:29773 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean nmi-watchdog?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29438 +#: guix-git/doc/guix.texi:29775 msgid "Enable Linux kernel NMI watchdog." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29443 +#: guix-git/doc/guix.texi:29780 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string phc-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29446 +#: guix-git/doc/guix.texi:29783 msgid "For Linux kernels with PHC patch applied, change CPU voltages. An example value would be @samp{\"F:V F:V F:V F:V\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29451 +#: guix-git/doc/guix.texi:29788 #, no-wrap msgid "{@code{tlp-configuration} parameter} string energy-perf-policy-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29454 +#: guix-git/doc/guix.texi:29791 msgid "Set CPU performance versus energy saving policy on AC@. Alternatives are performance, normal, powersave." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29456 guix-git/doc/guix.texi:29554 -#: guix-git/doc/guix.texi:29584 +#: guix-git/doc/guix.texi:29793 guix-git/doc/guix.texi:29891 +#: guix-git/doc/guix.texi:29949 msgid "Defaults to @samp{\"performance\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29459 +#: guix-git/doc/guix.texi:29796 #, no-wrap msgid "{@code{tlp-configuration} parameter} string energy-perf-policy-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29461 +#: guix-git/doc/guix.texi:29798 msgid "Same as @code{energy-perf-policy-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29463 guix-git/doc/guix.texi:29561 +#: guix-git/doc/guix.texi:29800 guix-git/doc/guix.texi:29898 msgid "Defaults to @samp{\"powersave\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29466 +#: guix-git/doc/guix.texi:29803 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disks-devices" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29468 +#: guix-git/doc/guix.texi:29805 msgid "Hard disk devices." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29471 +#: guix-git/doc/guix.texi:29808 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disk-apm-level-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29473 +#: guix-git/doc/guix.texi:29810 msgid "Hard disk advanced power management level." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29476 +#: guix-git/doc/guix.texi:29813 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disk-apm-level-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29478 +#: guix-git/doc/guix.texi:29815 msgid "Same as @code{disk-apm-bat} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29481 +#: guix-git/doc/guix.texi:29818 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-spindown-timeout-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29484 +#: guix-git/doc/guix.texi:29821 msgid "Hard disk spin down timeout. One value has to be specified for each declared hard disk." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29489 +#: guix-git/doc/guix.texi:29826 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-spindown-timeout-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29491 +#: guix-git/doc/guix.texi:29828 msgid "Same as @code{disk-spindown-timeout-on-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29496 +#: guix-git/doc/guix.texi:29833 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-iosched" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29500 +#: guix-git/doc/guix.texi:29837 msgid "Select IO scheduler for disk devices. One value has to be specified for each declared hard disk. Example alternatives are cfq, deadline and noop." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29505 +#: guix-git/doc/guix.texi:29842 #, no-wrap msgid "{@code{tlp-configuration} parameter} string sata-linkpwr-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29508 +#: guix-git/doc/guix.texi:29845 msgid "SATA aggressive link power management (ALPM) level. Alternatives are min_power, medium_power, max_performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29510 +#: guix-git/doc/guix.texi:29847 msgid "Defaults to @samp{\"max_performance\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29513 +#: guix-git/doc/guix.texi:29850 #, no-wrap msgid "{@code{tlp-configuration} parameter} string sata-linkpwr-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29515 +#: guix-git/doc/guix.texi:29852 msgid "Same as @code{sata-linkpwr-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29517 +#: guix-git/doc/guix.texi:29854 msgid "Defaults to @samp{\"min_power\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29520 +#: guix-git/doc/guix.texi:29857 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string sata-linkpwr-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29522 +#: guix-git/doc/guix.texi:29859 msgid "Exclude specified SATA host devices for link power management." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29527 +#: guix-git/doc/guix.texi:29864 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-on-off-boolean ahci-runtime-pm-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29530 +#: guix-git/doc/guix.texi:29867 msgid "Enable Runtime Power Management for AHCI controller and disks on AC mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29535 +#: guix-git/doc/guix.texi:29872 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-on-off-boolean ahci-runtime-pm-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29537 +#: guix-git/doc/guix.texi:29874 msgid "Same as @code{ahci-runtime-pm-on-ac} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29542 +#: guix-git/doc/guix.texi:29879 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer ahci-runtime-pm-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29544 +#: guix-git/doc/guix.texi:29881 msgid "Seconds of inactivity before disk is suspended." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29549 +#: guix-git/doc/guix.texi:29886 #, no-wrap msgid "{@code{tlp-configuration} parameter} string pcie-aspm-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29552 +#: guix-git/doc/guix.texi:29889 msgid "PCI Express Active State Power Management level. Alternatives are default, performance, powersave." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29557 +#: guix-git/doc/guix.texi:29894 #, no-wrap msgid "{@code{tlp-configuration} parameter} string pcie-aspm-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29559 +#: guix-git/doc/guix.texi:29896 msgid "Same as @code{pcie-aspm-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29564 +#: guix-git/doc/guix.texi:29901 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer start-charge-thresh-bat0" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29903 +msgid "Percentage when battery 0 should begin charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29908 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer stop-charge-thresh-bat0" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29910 +msgid "Percentage when battery 0 should stop charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29915 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer start-charge-thresh-bat1" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29917 +msgid "Percentage when battery 1 should begin charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29922 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer stop-charge-thresh-bat1" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29924 +msgid "Percentage when battery 1 should stop charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29929 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-power-profile-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29567 +#: guix-git/doc/guix.texi:29932 msgid "Radeon graphics clock speed level. Alternatives are low, mid, high, auto, default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29569 +#: guix-git/doc/guix.texi:29934 msgid "Defaults to @samp{\"high\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29572 +#: guix-git/doc/guix.texi:29937 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-power-profile-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29574 +#: guix-git/doc/guix.texi:29939 msgid "Same as @code{radeon-power-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29576 +#: guix-git/doc/guix.texi:29941 msgid "Defaults to @samp{\"low\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29579 +#: guix-git/doc/guix.texi:29944 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-state-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29582 +#: guix-git/doc/guix.texi:29947 msgid "Radeon dynamic power management method (DPM). Alternatives are battery, performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29587 +#: guix-git/doc/guix.texi:29952 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-state-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29589 +#: guix-git/doc/guix.texi:29954 msgid "Same as @code{radeon-dpm-state-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29591 +#: guix-git/doc/guix.texi:29956 msgid "Defaults to @samp{\"battery\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29594 +#: guix-git/doc/guix.texi:29959 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-perf-level-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29596 +#: guix-git/doc/guix.texi:29961 msgid "Radeon DPM performance level. Alternatives are auto, low, high." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29598 guix-git/doc/guix.texi:29605 -#: guix-git/doc/guix.texi:29679 +#: guix-git/doc/guix.texi:29963 guix-git/doc/guix.texi:29970 +#: guix-git/doc/guix.texi:30044 msgid "Defaults to @samp{\"auto\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29601 +#: guix-git/doc/guix.texi:29966 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-perf-level-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29603 +#: guix-git/doc/guix.texi:29968 msgid "Same as @code{radeon-dpm-perf-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29608 +#: guix-git/doc/guix.texi:29973 #, no-wrap msgid "{@code{tlp-configuration} parameter} on-off-boolean wifi-pwr-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29610 +#: guix-git/doc/guix.texi:29975 msgid "Wifi power saving mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29615 +#: guix-git/doc/guix.texi:29980 #, no-wrap msgid "{@code{tlp-configuration} parameter} on-off-boolean wifi-pwr-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29617 +#: guix-git/doc/guix.texi:29982 msgid "Same as @code{wifi-power-ac?} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29622 +#: guix-git/doc/guix.texi:29987 #, no-wrap msgid "{@code{tlp-configuration} parameter} y-n-boolean wol-disable?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29624 +#: guix-git/doc/guix.texi:29989 msgid "Disable wake on LAN." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29629 +#: guix-git/doc/guix.texi:29994 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer sound-power-save-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29632 +#: guix-git/doc/guix.texi:29997 msgid "Timeout duration in seconds before activating audio power saving on Intel HDA and AC97 devices. A value of 0 disables power saving." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29637 +#: guix-git/doc/guix.texi:30002 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer sound-power-save-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29639 +#: guix-git/doc/guix.texi:30004 msgid "Same as @code{sound-powersave-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29644 +#: guix-git/doc/guix.texi:30009 #, no-wrap msgid "{@code{tlp-configuration} parameter} y-n-boolean sound-power-save-controller?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29646 +#: guix-git/doc/guix.texi:30011 msgid "Disable controller in powersaving mode on Intel HDA devices." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29651 +#: guix-git/doc/guix.texi:30016 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean bay-poweroff-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29655 +#: guix-git/doc/guix.texi:30020 msgid "Enable optical drive in UltraBay/MediaBay on BAT mode. Drive can be powered on again by releasing (and reinserting) the eject lever or by pressing the disc eject button on newer models." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29660 +#: guix-git/doc/guix.texi:30025 #, no-wrap msgid "{@code{tlp-configuration} parameter} string bay-device" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29662 +#: guix-git/doc/guix.texi:30027 msgid "Name of the optical drive device to power off." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29664 +#: guix-git/doc/guix.texi:30029 msgid "Defaults to @samp{\"sr0\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29667 +#: guix-git/doc/guix.texi:30032 #, no-wrap msgid "{@code{tlp-configuration} parameter} string runtime-pm-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29670 +#: guix-git/doc/guix.texi:30035 msgid "Runtime Power Management for PCI(e) bus devices. Alternatives are on and auto." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29672 +#: guix-git/doc/guix.texi:30037 msgid "Defaults to @samp{\"on\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29675 +#: guix-git/doc/guix.texi:30040 #, no-wrap msgid "{@code{tlp-configuration} parameter} string runtime-pm-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29677 +#: guix-git/doc/guix.texi:30042 msgid "Same as @code{runtime-pm-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29682 +#: guix-git/doc/guix.texi:30047 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean runtime-pm-all?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29685 +#: guix-git/doc/guix.texi:30050 msgid "Runtime Power Management for all PCI(e) bus devices, except blacklisted ones." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29690 +#: guix-git/doc/guix.texi:30055 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list runtime-pm-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29692 +#: guix-git/doc/guix.texi:30057 msgid "Exclude specified PCI(e) device addresses from Runtime Power Management." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29697 +#: guix-git/doc/guix.texi:30062 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list runtime-pm-driver-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29700 +#: guix-git/doc/guix.texi:30065 msgid "Exclude PCI(e) devices assigned to the specified drivers from Runtime Power Management." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29703 +#: guix-git/doc/guix.texi:30068 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean usb-autosuspend?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29705 +#: guix-git/doc/guix.texi:30070 msgid "Enable USB autosuspend feature." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29710 +#: guix-git/doc/guix.texi:30075 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string usb-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29712 +#: guix-git/doc/guix.texi:30077 msgid "Exclude specified devices from USB autosuspend." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29717 +#: guix-git/doc/guix.texi:30082 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean usb-blacklist-wwan?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29719 +#: guix-git/doc/guix.texi:30084 msgid "Exclude WWAN devices from USB autosuspend." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29724 +#: guix-git/doc/guix.texi:30089 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string usb-whitelist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29727 +#: guix-git/doc/guix.texi:30092 msgid "Include specified devices into USB autosuspend, even if they are already excluded by the driver or via @code{usb-blacklist-wwan?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29732 +#: guix-git/doc/guix.texi:30097 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean usb-autosuspend-disable-on-shutdown?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29734 +#: guix-git/doc/guix.texi:30099 msgid "Enable USB autosuspend before shutdown." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29739 +#: guix-git/doc/guix.texi:30104 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean restore-device-state-on-startup?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29742 +#: guix-git/doc/guix.texi:30107 msgid "Restore radio device state (bluetooth, wifi, wwan) from previous shutdown on system startup." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29747 +#: guix-git/doc/guix.texi:30112 #, no-wrap msgid "thermald" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29748 +#: guix-git/doc/guix.texi:30113 #, no-wrap msgid "CPU frequency scaling with thermald" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29749 +#: guix-git/doc/guix.texi:30114 #, no-wrap msgid "Thermald daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29753 +#: guix-git/doc/guix.texi:30118 msgid "The @code{(gnu services pm)} module provides an interface to thermald, a CPU frequency scaling service which helps prevent overheating." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29754 +#: guix-git/doc/guix.texi:30119 #, no-wrap msgid "{Scheme Variable} thermald-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29759 +#: guix-git/doc/guix.texi:30124 msgid "This is the service type for @uref{https://01.org/linux-thermal-daemon/, thermald}, the Linux Thermal Daemon, which is responsible for controlling the thermal state of processors and preventing overheating." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29761 +#: guix-git/doc/guix.texi:30126 #, no-wrap msgid "{Data Type} thermald-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29763 +#: guix-git/doc/guix.texi:30128 msgid "Data type representing the configuration of @code{thermald-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29765 +#: guix-git/doc/guix.texi:30130 #, no-wrap msgid "@code{ignore-cpuid-check?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29767 +#: guix-git/doc/guix.texi:30132 msgid "Ignore cpuid check for supported CPU models." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29768 +#: guix-git/doc/guix.texi:30133 #, no-wrap msgid "@code{thermald} (default: @var{thermald})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29770 +#: guix-git/doc/guix.texi:30135 msgid "Package object of thermald." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29779 +#: guix-git/doc/guix.texi:30144 msgid "The @code{(gnu services audio)} module provides a service to start MPD (the Music Player Daemon)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29780 +#: guix-git/doc/guix.texi:30145 #, no-wrap msgid "mpd" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29781 +#: guix-git/doc/guix.texi:30146 #, no-wrap msgid "Music Player Daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29786 +#: guix-git/doc/guix.texi:30151 msgid "The Music Player Daemon (MPD) is a service that can play music while being controlled from the local machine or over the network by a variety of clients." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29789 +#: guix-git/doc/guix.texi:30154 msgid "The following example shows how one might run @code{mpd} as user @code{\"bob\"} on port @code{6666}. It uses pulseaudio for output." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29795 +#: guix-git/doc/guix.texi:30160 #, no-wrap msgid "" "(service mpd-service-type\n" @@ -53586,215 +54250,215 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29797 +#: guix-git/doc/guix.texi:30162 #, no-wrap msgid "{Scheme Variable} mpd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29799 +#: guix-git/doc/guix.texi:30164 msgid "The service type for @command{mpd}" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29801 +#: guix-git/doc/guix.texi:30166 #, no-wrap msgid "{Data Type} mpd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29803 +#: guix-git/doc/guix.texi:30168 msgid "Data type representing the configuration of @command{mpd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29805 +#: guix-git/doc/guix.texi:30170 #, no-wrap msgid "@code{user} (default: @code{\"mpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29807 +#: guix-git/doc/guix.texi:30172 msgid "The user to run mpd as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29808 +#: guix-git/doc/guix.texi:30173 #, no-wrap msgid "@code{music-dir} (default: @code{\"~/Music\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29810 +#: guix-git/doc/guix.texi:30175 msgid "The directory to scan for music files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29811 +#: guix-git/doc/guix.texi:30176 #, no-wrap msgid "@code{playlist-dir} (default: @code{\"~/.mpd/playlists\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29813 +#: guix-git/doc/guix.texi:30178 msgid "The directory to store playlists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29814 +#: guix-git/doc/guix.texi:30179 #, no-wrap msgid "@code{db-file} (default: @code{\"~/.mpd/tag_cache\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29816 +#: guix-git/doc/guix.texi:30181 msgid "The location of the music database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29817 +#: guix-git/doc/guix.texi:30182 #, no-wrap msgid "@code{state-file} (default: @code{\"~/.mpd/state\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29819 +#: guix-git/doc/guix.texi:30184 msgid "The location of the file that stores current MPD's state." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29820 +#: guix-git/doc/guix.texi:30185 #, no-wrap msgid "@code{sticker-file} (default: @code{\"~/.mpd/sticker.sql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29822 +#: guix-git/doc/guix.texi:30187 msgid "The location of the sticker database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29823 +#: guix-git/doc/guix.texi:30188 #, no-wrap msgid "@code{port} (default: @code{\"6600\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29825 +#: guix-git/doc/guix.texi:30190 msgid "The port to run mpd on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29826 +#: guix-git/doc/guix.texi:30191 #, no-wrap msgid "@code{address} (default: @code{\"any\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29829 +#: guix-git/doc/guix.texi:30194 msgid "The address that mpd will bind to. To use a Unix domain socket, an absolute path can be specified here." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29830 +#: guix-git/doc/guix.texi:30195 #, no-wrap msgid "@code{outputs} (default: @code{\"(list (mpd-output))\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29832 +#: guix-git/doc/guix.texi:30197 msgid "The audio outputs that MPD can use. By default this is a single output using pulseaudio." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29836 +#: guix-git/doc/guix.texi:30201 #, no-wrap msgid "{Data Type} mpd-output" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29838 +#: guix-git/doc/guix.texi:30203 msgid "Data type representing an @command{mpd} audio output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29840 +#: guix-git/doc/guix.texi:30205 #, no-wrap msgid "@code{name} (default: @code{\"MPD\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29842 +#: guix-git/doc/guix.texi:30207 msgid "The name of the audio output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29843 +#: guix-git/doc/guix.texi:30208 #, no-wrap msgid "@code{type} (default: @code{\"pulse\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29845 +#: guix-git/doc/guix.texi:30210 msgid "The type of audio output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29846 +#: guix-git/doc/guix.texi:30211 #, no-wrap msgid "@code{enabled?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29851 +#: guix-git/doc/guix.texi:30216 msgid "Specifies whether this audio output is enabled when MPD is started. By default, all audio outputs are enabled. This is just the default setting when there is no state file; with a state file, the previous state is restored." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29852 +#: guix-git/doc/guix.texi:30217 #, no-wrap msgid "@code{tags?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29856 +#: guix-git/doc/guix.texi:30221 msgid "If set to @code{#f}, then MPD will not send tags to this output. This is only useful for output plugins that can receive tags, for example the @code{httpd} output plugin." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29857 +#: guix-git/doc/guix.texi:30222 #, no-wrap msgid "@code{always-on?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29861 +#: guix-git/doc/guix.texi:30226 msgid "If set to @code{#t}, then MPD attempts to keep this audio output always open. This may be useful for streaming servers, when you don’t want to disconnect all listeners even when playback is accidentally stopped." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:29862 +#: guix-git/doc/guix.texi:30227 #, no-wrap msgid "mixer-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29868 +#: guix-git/doc/guix.texi:30233 msgid "This field accepts a symbol that specifies which mixer should be used for this audio output: the @code{hardware} mixer, the @code{software} mixer, the @code{null} mixer (allows setting the volume, but with no effect; this can be used as a trick to implement an external mixer External Mixer) or no mixer (@code{none})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29872 +#: guix-git/doc/guix.texi:30237 msgid "An association list of option symbols to string values to be appended to the audio output configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29878 +#: guix-git/doc/guix.texi:30243 msgid "The following example shows a configuration of @code{mpd} that provides an HTTP audio streaming output." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29890 +#: guix-git/doc/guix.texi:30255 #, no-wrap msgid "" "(service mpd-service-type\n" @@ -53810,34 +54474,34 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29899 +#: guix-git/doc/guix.texi:30264 msgid "The @code{(gnu services virtualization)} module provides services for the libvirt and virtlog daemons, as well as other virtualization-related services." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29900 +#: guix-git/doc/guix.texi:30265 #, no-wrap msgid "Libvirt daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29905 +#: guix-git/doc/guix.texi:30270 msgid "@code{libvirtd} is the server side daemon component of the libvirt virtualization management system. This daemon runs on host servers and performs required management tasks for virtualized guests." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29906 +#: guix-git/doc/guix.texi:30271 #, no-wrap msgid "{Scheme Variable} libvirt-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29909 +#: guix-git/doc/guix.texi:30274 msgid "This is the type of the @uref{https://libvirt.org, libvirt daemon}. Its value must be a @code{libvirt-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29915 +#: guix-git/doc/guix.texi:30280 #, no-wrap msgid "" "(service libvirt-service-type\n" @@ -53847,870 +54511,870 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29920 +#: guix-git/doc/guix.texi:30285 msgid "Available @code{libvirt-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29921 +#: guix-git/doc/guix.texi:30286 #, no-wrap msgid "{@code{libvirt-configuration} parameter} package libvirt" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29923 +#: guix-git/doc/guix.texi:30288 msgid "Libvirt package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29926 +#: guix-git/doc/guix.texi:30291 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean listen-tls?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29929 +#: guix-git/doc/guix.texi:30294 msgid "Flag listening for secure TLS connections on the public TCP/IP port. You must set @code{listen} for this to have any effect." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29932 +#: guix-git/doc/guix.texi:30297 msgid "It is necessary to setup a CA and issue server certificates before using this capability." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29937 +#: guix-git/doc/guix.texi:30302 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean listen-tcp?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29940 +#: guix-git/doc/guix.texi:30305 msgid "Listen for unencrypted TCP connections on the public TCP/IP port. You must set @code{listen} for this to have any effect." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29944 +#: guix-git/doc/guix.texi:30309 msgid "Using the TCP socket requires SASL authentication by default. Only SASL mechanisms which support data encryption are allowed. This is DIGEST_MD5 and GSSAPI (Kerberos5)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29949 +#: guix-git/doc/guix.texi:30314 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tls-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29952 +#: guix-git/doc/guix.texi:30317 msgid "Port for accepting secure TLS connections. This can be a port number, or service name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29954 +#: guix-git/doc/guix.texi:30319 msgid "Defaults to @samp{\"16514\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29957 +#: guix-git/doc/guix.texi:30322 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tcp-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29960 +#: guix-git/doc/guix.texi:30325 msgid "Port for accepting insecure TCP connections. This can be a port number, or service name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29962 +#: guix-git/doc/guix.texi:30327 msgid "Defaults to @samp{\"16509\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29965 +#: guix-git/doc/guix.texi:30330 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string listen-addr" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29967 +#: guix-git/doc/guix.texi:30332 msgid "IP address or hostname used for client connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29972 +#: guix-git/doc/guix.texi:30337 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean mdns-adv?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29974 +#: guix-git/doc/guix.texi:30339 msgid "Flag toggling mDNS advertisement of the libvirt service." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29977 +#: guix-git/doc/guix.texi:30342 msgid "Alternatively can disable for all services on a host by stopping the Avahi daemon." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29982 +#: guix-git/doc/guix.texi:30347 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string mdns-name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29985 +#: guix-git/doc/guix.texi:30350 msgid "Default mDNS advertisement name. This must be unique on the immediate broadcast network." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29987 +#: guix-git/doc/guix.texi:30352 msgid "Defaults to @samp{\"Virtualization Host \"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29990 +#: guix-git/doc/guix.texi:30355 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29994 +#: guix-git/doc/guix.texi:30359 msgid "UNIX domain socket group ownership. This can be used to allow a 'trusted' set of users access to management capabilities without becoming root." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29999 +#: guix-git/doc/guix.texi:30364 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-ro-perms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30002 +#: guix-git/doc/guix.texi:30367 msgid "UNIX socket permissions for the R/O socket. This is used for monitoring VM status only." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30004 guix-git/doc/guix.texi:30022 +#: guix-git/doc/guix.texi:30369 guix-git/doc/guix.texi:30387 msgid "Defaults to @samp{\"0777\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30007 +#: guix-git/doc/guix.texi:30372 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-rw-perms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30011 +#: guix-git/doc/guix.texi:30376 msgid "UNIX socket permissions for the R/W socket. Default allows only root. If PolicyKit is enabled on the socket, the default will change to allow everyone (eg, 0777)" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30013 +#: guix-git/doc/guix.texi:30378 msgid "Defaults to @samp{\"0770\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30016 +#: guix-git/doc/guix.texi:30381 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-admin-perms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30020 +#: guix-git/doc/guix.texi:30385 msgid "UNIX socket permissions for the admin socket. Default allows only owner (root), do not change it unless you are sure to whom you are exposing the access to." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30025 +#: guix-git/doc/guix.texi:30390 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30027 +#: guix-git/doc/guix.texi:30392 msgid "The directory in which sockets will be found/created." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30029 +#: guix-git/doc/guix.texi:30394 msgid "Defaults to @samp{\"/var/run/libvirt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30032 +#: guix-git/doc/guix.texi:30397 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-unix-ro" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30035 +#: guix-git/doc/guix.texi:30400 msgid "Authentication scheme for UNIX read-only sockets. By default socket permissions allow anyone to connect" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30037 guix-git/doc/guix.texi:30046 +#: guix-git/doc/guix.texi:30402 guix-git/doc/guix.texi:30411 msgid "Defaults to @samp{\"polkit\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30040 +#: guix-git/doc/guix.texi:30405 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-unix-rw" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30044 +#: guix-git/doc/guix.texi:30409 msgid "Authentication scheme for UNIX read-write sockets. By default socket permissions only allow root. If PolicyKit support was compiled into libvirt, the default will be to use 'polkit' auth." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30049 +#: guix-git/doc/guix.texi:30414 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-tcp" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30053 +#: guix-git/doc/guix.texi:30418 msgid "Authentication scheme for TCP sockets. If you don't enable SASL, then all TCP traffic is cleartext. Don't do this outside of a dev/test scenario." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30055 +#: guix-git/doc/guix.texi:30420 msgid "Defaults to @samp{\"sasl\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30058 +#: guix-git/doc/guix.texi:30423 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-tls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30062 +#: guix-git/doc/guix.texi:30427 msgid "Authentication scheme for TLS sockets. TLS sockets already have encryption provided by the TLS layer, and limited authentication is done by certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30065 +#: guix-git/doc/guix.texi:30430 msgid "It is possible to make use of any SASL authentication mechanism as well, by using 'sasl' for this option" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30067 +#: guix-git/doc/guix.texi:30432 msgid "Defaults to @samp{\"none\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30070 +#: guix-git/doc/guix.texi:30435 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list access-drivers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30072 +#: guix-git/doc/guix.texi:30437 msgid "API access control scheme." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30075 +#: guix-git/doc/guix.texi:30440 msgid "By default an authenticated user is allowed access to all APIs. Access drivers can place restrictions on this." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30080 +#: guix-git/doc/guix.texi:30445 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string key-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30083 +#: guix-git/doc/guix.texi:30448 msgid "Server key file path. If set to an empty string, then no private key is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30088 +#: guix-git/doc/guix.texi:30453 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string cert-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30091 +#: guix-git/doc/guix.texi:30456 msgid "Server key file path. If set to an empty string, then no certificate is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30096 +#: guix-git/doc/guix.texi:30461 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string ca-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30099 +#: guix-git/doc/guix.texi:30464 msgid "Server key file path. If set to an empty string, then no CA certificate is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30104 +#: guix-git/doc/guix.texi:30469 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string crl-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30107 +#: guix-git/doc/guix.texi:30472 msgid "Certificate revocation list path. If set to an empty string, then no CRL is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30112 +#: guix-git/doc/guix.texi:30477 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean tls-no-sanity-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30114 +#: guix-git/doc/guix.texi:30479 msgid "Disable verification of our own server certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30117 +#: guix-git/doc/guix.texi:30482 msgid "When libvirtd starts it performs some sanity checks against its own certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30122 +#: guix-git/doc/guix.texi:30487 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean tls-no-verify-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30124 +#: guix-git/doc/guix.texi:30489 msgid "Disable verification of client certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30128 +#: guix-git/doc/guix.texi:30493 msgid "Client certificate verification is the primary authentication mechanism. Any client which does not present a certificate signed by the CA will be rejected." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30133 +#: guix-git/doc/guix.texi:30498 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list tls-allowed-dn-list" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30135 +#: guix-git/doc/guix.texi:30500 msgid "Whitelist of allowed x509 Distinguished Name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30140 +#: guix-git/doc/guix.texi:30505 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list sasl-allowed-usernames" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30143 +#: guix-git/doc/guix.texi:30508 msgid "Whitelist of allowed SASL usernames. The format for username depends on the SASL authentication mechanism." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30148 +#: guix-git/doc/guix.texi:30513 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tls-priority" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30152 +#: guix-git/doc/guix.texi:30517 msgid "Override the compile time default TLS priority string. The default is usually @samp{\"NORMAL\"} unless overridden at build time. Only set this is it is desired for libvirt to deviate from the global default settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30154 +#: guix-git/doc/guix.texi:30519 msgid "Defaults to @samp{\"NORMAL\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30157 +#: guix-git/doc/guix.texi:30522 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30160 guix-git/doc/guix.texi:30584 +#: guix-git/doc/guix.texi:30525 guix-git/doc/guix.texi:30949 msgid "Maximum number of concurrent client connections to allow over all sockets combined." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30162 +#: guix-git/doc/guix.texi:30527 msgid "Defaults to @samp{5000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30165 +#: guix-git/doc/guix.texi:30530 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-queued-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30169 +#: guix-git/doc/guix.texi:30534 msgid "Maximum length of queue of connections waiting to be accepted by the daemon. Note, that some protocols supporting retransmission may obey this so that a later reattempt at connection succeeds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30174 +#: guix-git/doc/guix.texi:30539 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-anonymous-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30177 +#: guix-git/doc/guix.texi:30542 msgid "Maximum length of queue of accepted but not yet authenticated clients. Set this to zero to turn this feature off" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30179 guix-git/doc/guix.texi:30197 -#: guix-git/doc/guix.texi:30213 +#: guix-git/doc/guix.texi:30544 guix-git/doc/guix.texi:30562 +#: guix-git/doc/guix.texi:30578 msgid "Defaults to @samp{20}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30182 +#: guix-git/doc/guix.texi:30547 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer min-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30184 +#: guix-git/doc/guix.texi:30549 msgid "Number of workers to start up initially." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30189 +#: guix-git/doc/guix.texi:30554 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30191 +#: guix-git/doc/guix.texi:30556 msgid "Maximum number of worker threads." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30195 +#: guix-git/doc/guix.texi:30560 msgid "If the number of active clients exceeds @code{min-workers}, then more threads are spawned, up to max_workers limit. Typically you'd want max_workers to equal maximum number of clients allowed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30200 +#: guix-git/doc/guix.texi:30565 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer prio-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30204 +#: guix-git/doc/guix.texi:30569 msgid "Number of priority workers. If all workers from above pool are stuck, some calls marked as high priority (notably domainDestroy) can be executed in this pool." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30209 +#: guix-git/doc/guix.texi:30574 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-requests" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30211 +#: guix-git/doc/guix.texi:30576 msgid "Total global limit on concurrent RPC calls." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30216 +#: guix-git/doc/guix.texi:30581 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-client-requests" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30220 +#: guix-git/doc/guix.texi:30585 msgid "Limit on concurrent requests from a single client connection. To avoid one client monopolizing the server this should be a small fraction of the global max_requests and max_workers parameter." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30225 +#: guix-git/doc/guix.texi:30590 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-min-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30227 +#: guix-git/doc/guix.texi:30592 msgid "Same as @code{min-workers} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30232 +#: guix-git/doc/guix.texi:30597 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30234 +#: guix-git/doc/guix.texi:30599 msgid "Same as @code{max-workers} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30239 +#: guix-git/doc/guix.texi:30604 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30241 +#: guix-git/doc/guix.texi:30606 msgid "Same as @code{max-clients} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30246 +#: guix-git/doc/guix.texi:30611 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-queued-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30248 +#: guix-git/doc/guix.texi:30613 msgid "Same as @code{max-queued-clients} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30253 +#: guix-git/doc/guix.texi:30618 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-client-requests" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30255 +#: guix-git/doc/guix.texi:30620 msgid "Same as @code{max-client-requests} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30260 +#: guix-git/doc/guix.texi:30625 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30262 guix-git/doc/guix.texi:30486 +#: guix-git/doc/guix.texi:30627 guix-git/doc/guix.texi:30851 msgid "Logging level. 4 errors, 3 warnings, 2 information, 1 debug." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30267 +#: guix-git/doc/guix.texi:30632 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string log-filters" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30269 guix-git/doc/guix.texi:30493 +#: guix-git/doc/guix.texi:30634 guix-git/doc/guix.texi:30858 msgid "Logging filters." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30272 +#: guix-git/doc/guix.texi:30637 msgid "A filter allows to select a different logging level for a given category of logs. The format for a filter is one of:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30276 guix-git/doc/guix.texi:30500 +#: guix-git/doc/guix.texi:30641 guix-git/doc/guix.texi:30865 msgid "x:name" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30279 guix-git/doc/guix.texi:30503 +#: guix-git/doc/guix.texi:30644 guix-git/doc/guix.texi:30868 msgid "x:+name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30290 +#: guix-git/doc/guix.texi:30655 msgid "where @code{name} is a string which is matched against the category given in the @code{VIR_LOG_INIT()} at the top of each libvirt source file, e.g., @samp{\"remote\"}, @samp{\"qemu\"}, or @samp{\"util.json\"} (the name in the filter can be a substring of the full category name, in order to match multiple similar categories), the optional @samp{\"+\"} prefix tells libvirt to log stack trace for each message matching name, and @code{x} is the minimal level where matching messages should be logged:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30294 guix-git/doc/guix.texi:30339 -#: guix-git/doc/guix.texi:30517 guix-git/doc/guix.texi:30562 +#: guix-git/doc/guix.texi:30659 guix-git/doc/guix.texi:30704 +#: guix-git/doc/guix.texi:30882 guix-git/doc/guix.texi:30927 msgid "1: DEBUG" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30297 guix-git/doc/guix.texi:30342 -#: guix-git/doc/guix.texi:30520 guix-git/doc/guix.texi:30565 +#: guix-git/doc/guix.texi:30662 guix-git/doc/guix.texi:30707 +#: guix-git/doc/guix.texi:30885 guix-git/doc/guix.texi:30930 msgid "2: INFO" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30300 guix-git/doc/guix.texi:30345 -#: guix-git/doc/guix.texi:30523 guix-git/doc/guix.texi:30568 +#: guix-git/doc/guix.texi:30665 guix-git/doc/guix.texi:30710 +#: guix-git/doc/guix.texi:30888 guix-git/doc/guix.texi:30933 msgid "3: WARNING" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30303 guix-git/doc/guix.texi:30348 -#: guix-git/doc/guix.texi:30526 guix-git/doc/guix.texi:30571 +#: guix-git/doc/guix.texi:30668 guix-git/doc/guix.texi:30713 +#: guix-git/doc/guix.texi:30891 guix-git/doc/guix.texi:30936 msgid "4: ERROR" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30308 guix-git/doc/guix.texi:30531 +#: guix-git/doc/guix.texi:30673 guix-git/doc/guix.texi:30896 msgid "Multiple filters can be defined in a single filters statement, they just need to be separated by spaces." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30310 guix-git/doc/guix.texi:30533 +#: guix-git/doc/guix.texi:30675 guix-git/doc/guix.texi:30898 msgid "Defaults to @samp{\"3:remote 4:event\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30313 +#: guix-git/doc/guix.texi:30678 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string log-outputs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30315 guix-git/doc/guix.texi:30538 +#: guix-git/doc/guix.texi:30680 guix-git/doc/guix.texi:30903 msgid "Logging outputs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30318 +#: guix-git/doc/guix.texi:30683 msgid "An output is one of the places to save logging information. The format for an output can be:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30320 guix-git/doc/guix.texi:30543 +#: guix-git/doc/guix.texi:30685 guix-git/doc/guix.texi:30908 #, no-wrap msgid "x:stderr" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30322 guix-git/doc/guix.texi:30545 +#: guix-git/doc/guix.texi:30687 guix-git/doc/guix.texi:30910 msgid "output goes to stderr" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30323 guix-git/doc/guix.texi:30546 +#: guix-git/doc/guix.texi:30688 guix-git/doc/guix.texi:30911 #, no-wrap msgid "x:syslog:name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30325 guix-git/doc/guix.texi:30548 +#: guix-git/doc/guix.texi:30690 guix-git/doc/guix.texi:30913 msgid "use syslog for the output and use the given name as the ident" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30326 guix-git/doc/guix.texi:30549 +#: guix-git/doc/guix.texi:30691 guix-git/doc/guix.texi:30914 #, no-wrap msgid "x:file:file_path" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30328 guix-git/doc/guix.texi:30551 +#: guix-git/doc/guix.texi:30693 guix-git/doc/guix.texi:30916 msgid "output to a file, with the given filepath" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30329 guix-git/doc/guix.texi:30552 +#: guix-git/doc/guix.texi:30694 guix-git/doc/guix.texi:30917 #, no-wrap msgid "x:journald" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30331 guix-git/doc/guix.texi:30554 +#: guix-git/doc/guix.texi:30696 guix-git/doc/guix.texi:30919 msgid "output to journald logging system" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30335 guix-git/doc/guix.texi:30558 +#: guix-git/doc/guix.texi:30700 guix-git/doc/guix.texi:30923 msgid "In all case the x prefix is the minimal level, acting as a filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30353 guix-git/doc/guix.texi:30576 +#: guix-git/doc/guix.texi:30718 guix-git/doc/guix.texi:30941 msgid "Multiple outputs can be defined, they just need to be separated by spaces." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30355 guix-git/doc/guix.texi:30578 +#: guix-git/doc/guix.texi:30720 guix-git/doc/guix.texi:30943 msgid "Defaults to @samp{\"3:stderr\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30358 +#: guix-git/doc/guix.texi:30723 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer audit-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30360 +#: guix-git/doc/guix.texi:30725 msgid "Allows usage of the auditing subsystem to be altered" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30364 +#: guix-git/doc/guix.texi:30729 msgid "0: disable all auditing" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30367 +#: guix-git/doc/guix.texi:30732 msgid "1: enable auditing, only if enabled on host" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30370 +#: guix-git/doc/guix.texi:30735 msgid "2: enable auditing, and exit if disabled on host." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30377 +#: guix-git/doc/guix.texi:30742 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean audit-logging" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30379 +#: guix-git/doc/guix.texi:30744 msgid "Send audit messages via libvirt logging infrastructure." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30384 +#: guix-git/doc/guix.texi:30749 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-string host-uuid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30386 +#: guix-git/doc/guix.texi:30751 msgid "Host UUID@. UUID must not have all digits be the same." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30391 +#: guix-git/doc/guix.texi:30756 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string host-uuid-source" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30393 +#: guix-git/doc/guix.texi:30758 msgid "Source to read host UUID." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30397 +#: guix-git/doc/guix.texi:30762 msgid "@code{smbios}: fetch the UUID from @code{dmidecode -s system-uuid}" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30400 +#: guix-git/doc/guix.texi:30765 msgid "@code{machine-id}: fetch the UUID from @code{/etc/machine-id}" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30405 +#: guix-git/doc/guix.texi:30770 msgid "If @code{dmidecode} does not provide a valid UUID a temporary UUID will be generated." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30407 +#: guix-git/doc/guix.texi:30772 msgid "Defaults to @samp{\"smbios\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30410 +#: guix-git/doc/guix.texi:30775 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer keepalive-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30415 +#: guix-git/doc/guix.texi:30780 msgid "A keepalive message is sent to a client after @code{keepalive_interval} seconds of inactivity to check if the client is still responding. If set to -1, libvirtd will never send keepalive requests; however clients can still send them and the daemon will send responses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30420 +#: guix-git/doc/guix.texi:30785 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer keepalive-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30424 +#: guix-git/doc/guix.texi:30789 msgid "Maximum number of keepalive messages that are allowed to be sent to the client without getting any response before the connection is considered broken." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30431 +#: guix-git/doc/guix.texi:30796 msgid "In other words, the connection is automatically closed approximately after @code{keepalive_interval * (keepalive_count + 1)} seconds since the last message received from the client. When @code{keepalive-count} is set to 0, connections will be automatically closed after @code{keepalive-interval} seconds of inactivity without sending any keepalive messages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30436 +#: guix-git/doc/guix.texi:30801 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-keepalive-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30438 guix-git/doc/guix.texi:30445 +#: guix-git/doc/guix.texi:30803 guix-git/doc/guix.texi:30810 msgid "Same as above but for admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30443 +#: guix-git/doc/guix.texi:30808 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-keepalive-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30450 +#: guix-git/doc/guix.texi:30815 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer ovs-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30452 +#: guix-git/doc/guix.texi:30817 msgid "Timeout for Open vSwitch calls." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30456 +#: guix-git/doc/guix.texi:30821 msgid "The @code{ovs-vsctl} utility is used for the configuration and its timeout option is set by default to 5 seconds to avoid potential infinite waits blocking libvirt." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30463 +#: guix-git/doc/guix.texi:30828 #, no-wrap msgid "Virtlog daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30466 +#: guix-git/doc/guix.texi:30831 msgid "The virtlogd service is a server side daemon component of libvirt that is used to manage logs from virtual machine consoles." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30472 +#: guix-git/doc/guix.texi:30837 msgid "This daemon is not used directly by libvirt client applications, rather it is called on their behalf by @code{libvirtd}. By maintaining the logs in a standalone daemon, the main @code{libvirtd} daemon can be restarted without risk of losing logs. The @code{virtlogd} daemon has the ability to re-exec() itself upon receiving @code{SIGUSR1}, to allow live upgrades without downtime." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30473 +#: guix-git/doc/guix.texi:30838 #, no-wrap msgid "{Scheme Variable} virtlog-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30476 +#: guix-git/doc/guix.texi:30841 msgid "This is the type of the virtlog daemon. Its value must be a @code{virtlog-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30481 +#: guix-git/doc/guix.texi:30846 #, no-wrap msgid "" "(service virtlog-service-type\n" @@ -54719,122 +55383,122 @@ msgid "" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30484 +#: guix-git/doc/guix.texi:30849 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30491 +#: guix-git/doc/guix.texi:30856 #, no-wrap msgid "{@code{virtlog-configuration} parameter} string log-filters" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30496 +#: guix-git/doc/guix.texi:30861 msgid "A filter allows to select a different logging level for a given category of logs The format for a filter is one of:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30513 +#: guix-git/doc/guix.texi:30878 msgid "where @code{name} is a string which is matched against the category given in the @code{VIR_LOG_INIT()} at the top of each libvirt source file, e.g., \"remote\", \"qemu\", or \"util.json\" (the name in the filter can be a substring of the full category name, in order to match multiple similar categories), the optional \"+\" prefix tells libvirt to log stack trace for each message matching name, and @code{x} is the minimal level where matching messages should be logged:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30536 +#: guix-git/doc/guix.texi:30901 #, no-wrap msgid "{@code{virtlog-configuration} parameter} string log-outputs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30541 +#: guix-git/doc/guix.texi:30906 msgid "An output is one of the places to save logging information The format for an output can be:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30581 +#: guix-git/doc/guix.texi:30946 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30586 +#: guix-git/doc/guix.texi:30951 msgid "Defaults to @samp{1024}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30589 +#: guix-git/doc/guix.texi:30954 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30591 +#: guix-git/doc/guix.texi:30956 msgid "Maximum file size before rolling over." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30593 +#: guix-git/doc/guix.texi:30958 msgid "Defaults to @samp{2MB}" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30596 +#: guix-git/doc/guix.texi:30961 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-backups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30598 +#: guix-git/doc/guix.texi:30963 msgid "Maximum number of backup files to keep." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30600 +#: guix-git/doc/guix.texi:30965 msgid "Defaults to @samp{3}" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:30604 +#: guix-git/doc/guix.texi:30969 msgid "transparent-emulation-qemu" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30604 +#: guix-git/doc/guix.texi:30969 #, no-wrap msgid "Transparent Emulation with QEMU" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30606 guix-git/doc/guix.texi:30686 +#: guix-git/doc/guix.texi:30971 guix-git/doc/guix.texi:31051 #, no-wrap msgid "emulation" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:30607 +#: guix-git/doc/guix.texi:30972 #, no-wrap msgid "binfmt_misc" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30615 +#: guix-git/doc/guix.texi:30980 msgid "@code{qemu-binfmt-service-type} provides support for transparent emulation of program binaries built for different architectures---e.g., it allows you to transparently execute an ARMv7 program on an x86_64 machine. It achieves this by combining the @uref{https://www.qemu.org, QEMU} emulator and the @code{binfmt_misc} feature of the kernel Linux. This feature only allows you to emulate GNU/Linux on a different architecture, but see below for GNU/Hurd support." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30616 +#: guix-git/doc/guix.texi:30981 #, no-wrap msgid "{Scheme Variable} qemu-binfmt-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30621 +#: guix-git/doc/guix.texi:30986 msgid "This is the type of the QEMU/binfmt service for transparent emulation. Its value must be a @code{qemu-binfmt-configuration} object, which specifies the QEMU package to use as well as the architecture we want to emulated:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30626 +#: guix-git/doc/guix.texi:30991 #, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -54843,39 +55507,39 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30632 +#: guix-git/doc/guix.texi:30997 msgid "In this example, we enable transparent emulation for the ARM and aarch64 platforms. Running @code{herd stop qemu-binfmt} turns it off, and running @code{herd start qemu-binfmt} turns it back on (@pxref{Invoking herd, the @command{herd} command,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30634 +#: guix-git/doc/guix.texi:30999 #, no-wrap msgid "{Data Type} qemu-binfmt-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30636 +#: guix-git/doc/guix.texi:31001 msgid "This is the configuration for the @code{qemu-binfmt} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30638 +#: guix-git/doc/guix.texi:31003 #, no-wrap msgid "@code{platforms} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30641 +#: guix-git/doc/guix.texi:31006 msgid "The list of emulated QEMU platforms. Each item must be a @dfn{platform object} as returned by @code{lookup-qemu-platforms} (see below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30644 +#: guix-git/doc/guix.texi:31009 msgid "For example, let's suppose you're on an x86_64 machine and you have this service:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30649 +#: guix-git/doc/guix.texi:31014 #, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -54884,79 +55548,79 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30652 +#: guix-git/doc/guix.texi:31017 msgid "You can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30655 +#: guix-git/doc/guix.texi:31020 #, no-wrap msgid "guix build -s armhf-linux inkscape\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30662 +#: guix-git/doc/guix.texi:31027 msgid "and it will build Inkscape for ARMv7 @emph{as if it were a native build}, transparently using QEMU to emulate the ARMv7 CPU@. Pretty handy if you'd like to test a package build for an architecture you don't have access to!" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30663 +#: guix-git/doc/guix.texi:31028 #, no-wrap msgid "@code{qemu} (default: @code{qemu})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30665 guix-git/doc/guix.texi:30723 -#: guix-git/doc/guix.texi:30805 +#: guix-git/doc/guix.texi:31030 guix-git/doc/guix.texi:31088 +#: guix-git/doc/guix.texi:31170 msgid "The QEMU package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30668 +#: guix-git/doc/guix.texi:31033 #, no-wrap msgid "{Scheme Procedure} lookup-qemu-platforms @var{platforms}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30673 +#: guix-git/doc/guix.texi:31038 msgid "Return the list of QEMU platform objects corresponding to @var{platforms}@dots{}. @var{platforms} must be a list of strings corresponding to platform names, such as @code{\"arm\"}, @code{\"sparc\"}, @code{\"mips64el\"}, and so on." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30675 +#: guix-git/doc/guix.texi:31040 #, no-wrap msgid "{Scheme Procedure} qemu-platform? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30677 +#: guix-git/doc/guix.texi:31042 msgid "Return true if @var{obj} is a platform object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30679 +#: guix-git/doc/guix.texi:31044 #, no-wrap msgid "{Scheme Procedure} qemu-platform-name @var{platform}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30681 +#: guix-git/doc/guix.texi:31046 msgid "Return the name of @var{platform}---a string such as @code{\"arm\"}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30684 +#: guix-git/doc/guix.texi:31049 #, no-wrap msgid "QEMU Guest Agent" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30692 +#: guix-git/doc/guix.texi:31057 msgid "The QEMU guest agent provides control over the emulated system to the host. The @code{qemu-guest-agent} service runs the agent on Guix guests. To control the agent from the host, open a socket by invoking QEMU with the following arguments:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30699 +#: guix-git/doc/guix.texi:31064 #, no-wrap msgid "" "qemu-system-x86_64 \\\n" @@ -54967,12 +55631,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30703 +#: guix-git/doc/guix.texi:31068 msgid "This creates a socket at @file{/tmp/qga.sock} on the host. Once the guest agent is running, you can issue commands with @code{socat}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30708 +#: guix-git/doc/guix.texi:31073 #, no-wrap msgid "" "$ guix shell socat -- socat unix-connect:/tmp/qga.sock stdio\n" @@ -54981,74 +55645,74 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30712 +#: guix-git/doc/guix.texi:31077 msgid "See @url{https://wiki.qemu.org/Features/GuestAgent,QEMU guest agent documentation} for more options and commands." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30713 +#: guix-git/doc/guix.texi:31078 #, no-wrap msgid "{Scheme Variable} qemu-guest-agent-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30715 +#: guix-git/doc/guix.texi:31080 msgid "Service type for the QEMU guest agent service." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30717 +#: guix-git/doc/guix.texi:31082 #, no-wrap msgid "{Data Type} qemu-guest-agent-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30719 +#: guix-git/doc/guix.texi:31084 msgid "Configuration for the @code{qemu-guest-agent} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30721 guix-git/doc/guix.texi:30803 +#: guix-git/doc/guix.texi:31086 guix-git/doc/guix.texi:31168 #, no-wrap msgid "@code{qemu} (default: @code{qemu-minimal})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30724 +#: guix-git/doc/guix.texi:31089 #, no-wrap msgid "@code{device} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30727 +#: guix-git/doc/guix.texi:31092 msgid "File name of the device or socket the agent uses to communicate with the host. If empty, QEMU uses a default file name." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30731 +#: guix-git/doc/guix.texi:31096 #, no-wrap msgid "The Hurd in a Virtual Machine" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30734 +#: guix-git/doc/guix.texi:31099 #, no-wrap msgid "the Hurd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30735 +#: guix-git/doc/guix.texi:31100 #, no-wrap msgid "childhurd" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30743 +#: guix-git/doc/guix.texi:31108 msgid "Service @code{hurd-vm} provides support for running GNU/Hurd in a virtual machine (VM), a so-called @dfn{childhurd}. This service is meant to be used on GNU/Linux and the given GNU/Hurd operating system configuration is cross-compiled. The virtual machine is a Shepherd service that can be referred to by the names @code{hurd-vm} and @code{childhurd} and be controlled with commands such as:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30747 +#: guix-git/doc/guix.texi:31112 #, no-wrap msgid "" "herd start hurd-vm\n" @@ -55056,50 +55720,50 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30751 +#: guix-git/doc/guix.texi:31116 msgid "When the service is running, you can view its console by connecting to it with a VNC client, for example with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30754 +#: guix-git/doc/guix.texi:31119 #, no-wrap msgid "guix shell tigervnc-client -- vncviewer localhost:5900\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30760 +#: guix-git/doc/guix.texi:31125 msgid "The default configuration (see @code{hurd-vm-configuration} below) spawns a secure shell (SSH) server in your GNU/Hurd system, which QEMU (the virtual machine emulator) redirects to port 10222 on the host. Thus, you can connect over SSH to the childhurd with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30763 +#: guix-git/doc/guix.texi:31128 #, no-wrap msgid "ssh root@@localhost -p 10022\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30772 +#: guix-git/doc/guix.texi:31137 msgid "The childhurd is volatile and stateless: it starts with a fresh root file system every time you restart it. By default though, all the files under @file{/etc/childhurd} on the host are copied as is to the root file system of the childhurd when it boots. This allows you to initialize ``secrets'' inside the VM: SSH host keys, authorized substitute keys, and so on---see the explanation of @code{secret-root} below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30773 +#: guix-git/doc/guix.texi:31138 #, no-wrap msgid "{Scheme Variable} hurd-vm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30779 +#: guix-git/doc/guix.texi:31144 msgid "This is the type of the Hurd in a Virtual Machine service. Its value must be a @code{hurd-vm-configuration} object, which specifies the operating system (@pxref{operating-system Reference}) and the disk size for the Hurd Virtual Machine, the QEMU package to use as well as the options for running it." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30781 +#: guix-git/doc/guix.texi:31146 msgid "For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30787 +#: guix-git/doc/guix.texi:31152 #, no-wrap msgid "" "(service hurd-vm-service-type\n" @@ -55109,99 +55773,99 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30791 +#: guix-git/doc/guix.texi:31156 msgid "would create a disk image big enough to build GNU@tie{}Hello, with some extra memory." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30793 +#: guix-git/doc/guix.texi:31158 #, no-wrap msgid "{Data Type} hurd-vm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30796 +#: guix-git/doc/guix.texi:31161 msgid "The data type representing the configuration for @code{hurd-vm-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30798 +#: guix-git/doc/guix.texi:31163 #, no-wrap msgid "@code{os} (default: @var{%hurd-vm-operating-system})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30802 +#: guix-git/doc/guix.texi:31167 msgid "The operating system to instantiate. This default is bare-bones with a permissive OpenSSH secure shell daemon listening on port 2222 (@pxref{Networking Services, @code{openssh-service-type}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30806 +#: guix-git/doc/guix.texi:31171 #, no-wrap msgid "@code{image} (default: @var{hurd-vm-disk-image})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30809 +#: guix-git/doc/guix.texi:31174 msgid "The procedure used to build the disk-image built from this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30810 +#: guix-git/doc/guix.texi:31175 #, no-wrap msgid "@code{disk-size} (default: @code{'guess})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30812 +#: guix-git/doc/guix.texi:31177 msgid "The size of the disk image." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30813 +#: guix-git/doc/guix.texi:31178 #, no-wrap msgid "@code{memory-size} (default: @code{512})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30815 +#: guix-git/doc/guix.texi:31180 msgid "The memory size of the Virtual Machine in mebibytes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30816 +#: guix-git/doc/guix.texi:31181 #, no-wrap msgid "@code{options} (default: @code{'(\"--snapshot\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30818 +#: guix-git/doc/guix.texi:31183 msgid "The extra options for running QEMU." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30823 +#: guix-git/doc/guix.texi:31188 msgid "If set, a non-zero positive integer used to parameterize Childhurd instances. It is appended to the service's name, e.g. @code{childhurd1}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30824 +#: guix-git/doc/guix.texi:31189 #, no-wrap msgid "@code{net-options} (default: @var{hurd-vm-net-options})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30826 +#: guix-git/doc/guix.texi:31191 msgid "The procedure used to produce the list of QEMU networking options." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30828 +#: guix-git/doc/guix.texi:31193 msgid "By default, it produces" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30836 +#: guix-git/doc/guix.texi:31201 #, no-wrap msgid "" "'(\"--device\" \"rtl8139,netdev=net0\"\n" @@ -55213,12 +55877,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30839 +#: guix-git/doc/guix.texi:31204 msgid "with forwarded ports:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30844 +#: guix-git/doc/guix.texi:31209 #, no-wrap msgid "" "@var{secrets-port}: @code{(+ 11004 (* 1000 @var{ID}))}\n" @@ -55227,28 +55891,28 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30846 +#: guix-git/doc/guix.texi:31211 #, no-wrap msgid "@code{secret-root} (default: @file{/etc/childhurd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30851 +#: guix-git/doc/guix.texi:31216 msgid "The root directory with out-of-band secrets to be installed into the childhurd once it runs. Childhurds are volatile which means that on every startup, secrets such as the SSH host keys and Guix signing key are recreated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30855 +#: guix-git/doc/guix.texi:31220 msgid "If the @file{/etc/childhurd} directory does not exist, the @code{secret-service} running in the Childhurd will be sent an empty list of secrets." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30858 +#: guix-git/doc/guix.texi:31223 msgid "By default, the service automatically populates @file{/etc/childhurd} with the following non-volatile secrets, unless they already exist:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30867 +#: guix-git/doc/guix.texi:31232 #, no-wrap msgid "" "/etc/childhurd/etc/guix/acl\n" @@ -55261,34 +55925,34 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30871 +#: guix-git/doc/guix.texi:31236 msgid "These files are automatically sent to the guest Hurd VM when it boots, including permissions." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30872 +#: guix-git/doc/guix.texi:31237 #, no-wrap msgid "childhurd, offloading" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30873 +#: guix-git/doc/guix.texi:31238 #, no-wrap msgid "Hurd, offloading" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30877 +#: guix-git/doc/guix.texi:31242 msgid "Having these files in place means that only a couple of things are missing to allow the host to offload @code{i586-gnu} builds to the childhurd:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:30882 +#: guix-git/doc/guix.texi:31247 msgid "Authorizing the childhurd's key on the host so that the host accepts build results coming from the childhurd, which can be done like so:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30886 +#: guix-git/doc/guix.texi:31251 #, no-wrap msgid "" "guix archive --authorize < \\\n" @@ -55296,22 +55960,22 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:30891 +#: guix-git/doc/guix.texi:31256 msgid "Adding the childhurd to @file{/etc/guix/machines.scm} (@pxref{Daemon Offload Setup})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30895 +#: guix-git/doc/guix.texi:31260 msgid "We're working towards making that happen automatically---get in touch with us at @email{guix-devel@@gnu.org} to discuss it!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30902 +#: guix-git/doc/guix.texi:31267 msgid "Note that by default the VM image is volatile, i.e., once stopped the contents are lost. If you want a stateful image instead, override the configuration's @code{image} and @code{options} without the @code{--snapshot} flag using something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30908 +#: guix-git/doc/guix.texi:31273 #, no-wrap msgid "" "(service hurd-vm-service-type\n" @@ -55321,34 +55985,34 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30910 +#: guix-git/doc/guix.texi:31275 #, no-wrap msgid "Ganeti" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30912 +#: guix-git/doc/guix.texi:31277 #, no-wrap msgid "ganeti" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:30919 +#: guix-git/doc/guix.texi:31284 msgid "This service is considered experimental. Configuration options may be changed in a backwards-incompatible manner, and not all features have been thorougly tested. Users of this service are encouraged to share their experience at @email{guix-devel@@gnu.org}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30929 +#: guix-git/doc/guix.texi:31294 msgid "Ganeti is a virtual machine management system. It is designed to keep virtual machines running on a cluster of servers even in the event of hardware failures, and to make maintenance and recovery tasks easy. It consists of multiple services which are described later in this section. In addition to the Ganeti service, you will need the OpenSSH service (@pxref{Networking Services, @code{openssh-service-type}}), and update the @file{/etc/hosts} file (@pxref{operating-system Reference, @code{hosts-file}}) with the cluster name and address (or use a DNS server)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30934 +#: guix-git/doc/guix.texi:31299 msgid "All nodes participating in a Ganeti cluster should have the same Ganeti and @file{/etc/hosts} configuration. Here is an example configuration for a Ganeti cluster node that supports multiple storage backends, and installs the @code{debootstrap} and @code{guix} @dfn{OS providers}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30944 +#: guix-git/doc/guix.texi:31309 #, no-wrap msgid "" "(use-package-modules virtualization)\n" @@ -55363,7 +56027,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30949 +#: guix-git/doc/guix.texi:31314 #, no-wrap msgid "" "192.168.1.200 ganeti.example.com\n" @@ -55374,7 +56038,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30970 +#: guix-git/doc/guix.texi:31335 #, no-wrap msgid "" " ;; Install QEMU so we can use KVM-based instances, and LVM, DRBD and Ceph\n" @@ -55401,7 +56065,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30975 +#: guix-git/doc/guix.texi:31340 #, no-wrap msgid "" " ;; Ganeti uses SSH to communicate between nodes.\n" @@ -55412,7 +56076,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30985 +#: guix-git/doc/guix.texi:31350 #, no-wrap msgid "" " (service ganeti-service-type\n" @@ -55427,120 +56091,120 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30993 +#: guix-git/doc/guix.texi:31358 msgid "Users are advised to read the @url{http://docs.ganeti.org/ganeti/master/html/admin.html,Ganeti administrators guide} to learn about the various cluster options and day-to-day operations. There is also a @url{https://guix.gnu.org/blog/2020/running-a-ganeti-cluster-on-guix/,blog post} describing how to configure and initialize a small cluster." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30994 +#: guix-git/doc/guix.texi:31359 #, no-wrap msgid "{Scheme Variable} ganeti-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30997 +#: guix-git/doc/guix.texi:31362 msgid "This is a service type that includes all the various services that Ganeti nodes should run." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31002 +#: guix-git/doc/guix.texi:31367 msgid "Its value is a @code{ganeti-configuration} object that defines the package to use for CLI operations, as well as configuration for the various daemons. Allowed file storage paths and available guest operating systems are also configured through this data type." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31004 +#: guix-git/doc/guix.texi:31369 #, no-wrap msgid "{Data Type} ganeti-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31006 +#: guix-git/doc/guix.texi:31371 msgid "The @code{ganeti} service takes the following configuration options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31008 guix-git/doc/guix.texi:31236 -#: guix-git/doc/guix.texi:31286 guix-git/doc/guix.texi:31316 -#: guix-git/doc/guix.texi:31343 guix-git/doc/guix.texi:31375 -#: guix-git/doc/guix.texi:31428 guix-git/doc/guix.texi:31448 -#: guix-git/doc/guix.texi:31474 guix-git/doc/guix.texi:31507 -#: guix-git/doc/guix.texi:31547 +#: guix-git/doc/guix.texi:31373 guix-git/doc/guix.texi:31601 +#: guix-git/doc/guix.texi:31651 guix-git/doc/guix.texi:31681 +#: guix-git/doc/guix.texi:31708 guix-git/doc/guix.texi:31740 +#: guix-git/doc/guix.texi:31793 guix-git/doc/guix.texi:31813 +#: guix-git/doc/guix.texi:31839 guix-git/doc/guix.texi:31872 +#: guix-git/doc/guix.texi:31912 #, no-wrap msgid "@code{ganeti} (default: @code{ganeti})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31013 +#: guix-git/doc/guix.texi:31378 msgid "The @code{ganeti} package to use. It will be installed to the system profile and make @command{gnt-cluster}, @command{gnt-instance}, etc available. Note that the value specified here does not affect the other services as each refer to a specific @code{ganeti} package (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31014 +#: guix-git/doc/guix.texi:31379 #, no-wrap msgid "@code{noded-configuration} (default: @code{(ganeti-noded-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31015 +#: guix-git/doc/guix.texi:31380 #, no-wrap msgid "@code{confd-configuration} (default: @code{(ganeti-confd-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31016 +#: guix-git/doc/guix.texi:31381 #, no-wrap msgid "@code{wconfd-configuration} (default: @code{(ganeti-wconfd-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31017 +#: guix-git/doc/guix.texi:31382 #, no-wrap msgid "@code{luxid-configuration} (default: @code{(ganeti-luxid-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31018 +#: guix-git/doc/guix.texi:31383 #, no-wrap msgid "@code{rapi-configuration} (default: @code{(ganeti-rapi-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31019 +#: guix-git/doc/guix.texi:31384 #, no-wrap msgid "@code{kvmd-configuration} (default: @code{(ganeti-kvmd-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31020 +#: guix-git/doc/guix.texi:31385 #, no-wrap msgid "@code{mond-configuration} (default: @code{(ganeti-mond-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31021 +#: guix-git/doc/guix.texi:31386 #, no-wrap msgid "@code{metad-configuration} (default: @code{(ganeti-metad-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31022 +#: guix-git/doc/guix.texi:31387 #, no-wrap msgid "@code{watcher-configuration} (default: @code{(ganeti-watcher-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31023 +#: guix-git/doc/guix.texi:31388 #, no-wrap msgid "@code{cleaner-configuration} (default: @code{(ganeti-cleaner-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31028 +#: guix-git/doc/guix.texi:31393 msgid "These options control the various daemons and cron jobs that are distributed with Ganeti. The possible values for these are described in detail below. To override a setting, you must use the configuration type for that service:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31038 +#: guix-git/doc/guix.texi:31403 #, no-wrap msgid "" "(service ganeti-service-type\n" @@ -55554,34 +56218,34 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31040 +#: guix-git/doc/guix.texi:31405 #, no-wrap msgid "@code{file-storage-paths} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31042 +#: guix-git/doc/guix.texi:31407 msgid "List of allowed directories for file storage backend." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31043 +#: guix-git/doc/guix.texi:31408 #, no-wrap msgid "@code{os} (default: @code{%default-ganeti-os})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31045 +#: guix-git/doc/guix.texi:31410 msgid "List of @code{} records." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31049 +#: guix-git/doc/guix.texi:31414 msgid "In essence @code{ganeti-service-type} is shorthand for declaring each service individually:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31060 +#: guix-git/doc/guix.texi:31425 #, no-wrap msgid "" "(service ganeti-noded-service-type)\n" @@ -55596,297 +56260,297 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31064 +#: guix-git/doc/guix.texi:31429 msgid "Plus a service extension for @code{etc-service-type} that configures the file storage backend and OS variants." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31067 +#: guix-git/doc/guix.texi:31432 #, no-wrap msgid "{Data Type} ganeti-os" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31070 +#: guix-git/doc/guix.texi:31435 msgid "This data type is suitable for passing to the @code{os} parameter of @code{ganeti-configuration}. It takes the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31076 +#: guix-git/doc/guix.texi:31441 msgid "The name for this OS provider. It is only used to specify where the configuration ends up. Setting it to ``debootstrap'' will create @file{/etc/ganeti/instance-debootstrap}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:31077 +#: guix-git/doc/guix.texi:31442 #, no-wrap msgid "extension" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31080 +#: guix-git/doc/guix.texi:31445 msgid "The file extension for variants of this OS type. For example @file{.conf} or @file{.scm}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31081 +#: guix-git/doc/guix.texi:31446 #, no-wrap msgid "@code{variants} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31083 +#: guix-git/doc/guix.texi:31448 msgid "List of @code{ganeti-os-variant} objects for this OS." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31087 +#: guix-git/doc/guix.texi:31452 #, no-wrap msgid "{Data Type} ganeti-os-variant" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31090 +#: guix-git/doc/guix.texi:31455 msgid "This is the data type for a Ganeti OS variant. It takes the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31094 +#: guix-git/doc/guix.texi:31459 msgid "The name of this variant." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:31095 +#: guix-git/doc/guix.texi:31460 #, no-wrap msgid "configuration" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31097 +#: guix-git/doc/guix.texi:31462 msgid "A configuration file for this variant." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31100 +#: guix-git/doc/guix.texi:31465 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-hooks" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31102 +#: guix-git/doc/guix.texi:31467 msgid "This variable contains hooks to configure networking and the GRUB bootloader." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31104 +#: guix-git/doc/guix.texi:31469 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-extra-pkgs" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31106 +#: guix-git/doc/guix.texi:31471 msgid "This variable contains a list of packages suitable for a fully-virtualized guest." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31108 +#: guix-git/doc/guix.texi:31473 #, no-wrap msgid "{Data Type} debootstrap-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31111 +#: guix-git/doc/guix.texi:31476 msgid "This data type creates configuration files suitable for the debootstrap OS provider." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31113 +#: guix-git/doc/guix.texi:31478 #, no-wrap msgid "@code{hooks} (default: @code{%default-debootstrap-hooks})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31117 +#: guix-git/doc/guix.texi:31482 msgid "When not @code{#f}, this must be a G-expression that specifies a directory with scripts that will run when the OS is installed. It can also be a list of @code{(name . file-like)} pairs. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31120 +#: guix-git/doc/guix.texi:31485 #, no-wrap msgid "`((99-hello-world . ,(plain-file \"#!/bin/sh\\necho Hello, World\")))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31125 +#: guix-git/doc/guix.texi:31490 msgid "That will create a directory with one executable named @code{99-hello-world} and run it every time this variant is installed. If set to @code{#f}, hooks in @file{/etc/ganeti/instance-debootstrap/hooks} will be used, if any." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31125 +#: guix-git/doc/guix.texi:31490 #, no-wrap msgid "@code{proxy} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31127 +#: guix-git/doc/guix.texi:31492 msgid "Optional HTTP proxy to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31127 +#: guix-git/doc/guix.texi:31492 guix-git/doc/guix.texi:33685 #, no-wrap msgid "@code{mirror} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31130 +#: guix-git/doc/guix.texi:31495 msgid "The Debian mirror. Typically something like @code{http://ftp.no.debian.org/debian}. The default varies depending on the distribution." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31130 +#: guix-git/doc/guix.texi:31495 #, no-wrap msgid "@code{arch} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31133 +#: guix-git/doc/guix.texi:31498 msgid "The dpkg architecture. Set to @code{armhf} to debootstrap an ARMv7 instance on an AArch64 host. Default is to use the current system architecture." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31133 +#: guix-git/doc/guix.texi:31498 #, no-wrap msgid "@code{suite} (default: @code{\"stable\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31136 +#: guix-git/doc/guix.texi:31501 msgid "When set, this must be a Debian distribution ``suite'' such as @code{buster} or @code{focal}. If set to @code{#f}, the default for the OS provider is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31136 +#: guix-git/doc/guix.texi:31501 #, no-wrap msgid "@code{extra-pkgs} (default: @code{%default-debootstrap-extra-pkgs})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31139 +#: guix-git/doc/guix.texi:31504 msgid "List of extra packages that will get installed by dpkg in addition to the minimal system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31139 +#: guix-git/doc/guix.texi:31504 #, no-wrap msgid "@code{components} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31142 +#: guix-git/doc/guix.texi:31507 msgid "When set, must be a list of Debian repository ``components''. For example @code{'(\"main\" \"contrib\")}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31142 +#: guix-git/doc/guix.texi:31507 #, no-wrap msgid "@code{generate-cache?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31144 +#: guix-git/doc/guix.texi:31509 msgid "Whether to automatically cache the generated debootstrap archive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31144 +#: guix-git/doc/guix.texi:31509 #, no-wrap msgid "@code{clean-cache} (default: @code{14})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31147 +#: guix-git/doc/guix.texi:31512 msgid "Discard the cache after this amount of days. Use @code{#f} to never clear the cache." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31147 +#: guix-git/doc/guix.texi:31512 #, no-wrap msgid "@code{partition-style} (default: @code{'msdos})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31150 +#: guix-git/doc/guix.texi:31515 msgid "The type of partition to create. When set, it must be one of @code{'msdos}, @code{'none} or a string." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31150 +#: guix-git/doc/guix.texi:31515 #, no-wrap msgid "@code{partition-alignment} (default: @code{2048})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31152 +#: guix-git/doc/guix.texi:31517 msgid "Alignment of the partition in sectors." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31155 +#: guix-git/doc/guix.texi:31520 #, no-wrap msgid "{Scheme Procedure} debootstrap-variant @var{name} @var{configuration}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31158 +#: guix-git/doc/guix.texi:31523 msgid "This is a helper procedure that creates a @code{ganeti-os-variant} record. It takes two parameters: a name and a @code{debootstrap-configuration} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31160 +#: guix-git/doc/guix.texi:31525 #, no-wrap msgid "{Scheme Procedure} debootstrap-os @var{variants}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31163 +#: guix-git/doc/guix.texi:31528 msgid "This is a helper procedure that creates a @code{ganeti-os} record. It takes a list of variants created with @code{debootstrap-variant}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31165 +#: guix-git/doc/guix.texi:31530 #, no-wrap msgid "{Scheme Procedure} guix-variant @var{name} @var{configuration}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31170 +#: guix-git/doc/guix.texi:31535 msgid "This is a helper procedure that creates a @code{ganeti-os-variant} record for use with the Guix OS provider. It takes a name and a G-expression that returns a ``file-like'' (@pxref{G-Expressions, file-like objects}) object containing a Guix System configuration." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31172 +#: guix-git/doc/guix.texi:31537 #, no-wrap msgid "{Scheme Procedure} guix-os @var{variants}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31175 +#: guix-git/doc/guix.texi:31540 msgid "This is a helper procedure that creates a @code{ganeti-os} record. It takes a list of variants produced by @code{guix-variant}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31177 +#: guix-git/doc/guix.texi:31542 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-variants" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31181 +#: guix-git/doc/guix.texi:31546 msgid "This is a convenience variable to make the debootstrap provider work ``out of the box'' without users having to declare variants manually. It contains a single debootstrap variant with the default configuration:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31186 +#: guix-git/doc/guix.texi:31551 #, no-wrap msgid "" "(list (debootstrap-variant\n" @@ -55895,18 +56559,18 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31189 +#: guix-git/doc/guix.texi:31554 #, no-wrap msgid "{Scheme Variable} %default-guix-variants" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31193 +#: guix-git/doc/guix.texi:31558 msgid "This is a convenience variable to make the Guix OS provider work without additional configuration. It creates a virtual machine that has an SSH server, a serial console, and authorizes the Ganeti hosts SSH keys." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31199 +#: guix-git/doc/guix.texi:31564 #, no-wrap msgid "" "(list (guix-variant\n" @@ -55916,12 +56580,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31205 +#: guix-git/doc/guix.texi:31570 msgid "Users can implement support for OS providers unbeknownst to Guix by extending the @code{ganeti-os} and @code{ganeti-os-variant} records appropriately. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31214 +#: guix-git/doc/guix.texi:31579 #, no-wrap msgid "" "(ganeti-os\n" @@ -55934,726 +56598,726 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31219 +#: guix-git/doc/guix.texi:31584 msgid "That creates @file{/etc/ganeti/instance-custom/variants/foo.conf} which points to a file in the store with contents @code{this is fine}. It also creates @file{/etc/ganeti/instance-custom/variants/variants.list} with contents @code{foo}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31222 +#: guix-git/doc/guix.texi:31587 msgid "Obviously this may not work for all OS providers out there. If you find the interface limiting, please reach out to @email{guix-devel@@gnu.org}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31225 +#: guix-git/doc/guix.texi:31590 msgid "The rest of this section documents the various services that are included by @code{ganeti-service-type}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31226 +#: guix-git/doc/guix.texi:31591 #, no-wrap msgid "{Scheme Variable} ganeti-noded-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31230 +#: guix-git/doc/guix.texi:31595 msgid "@command{ganeti-noded} is the daemon responsible for node-specific functions within the Ganeti system. The value of this service must be a @code{ganeti-noded-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31232 +#: guix-git/doc/guix.texi:31597 #, no-wrap msgid "{Data Type} ganeti-noded-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31234 +#: guix-git/doc/guix.texi:31599 msgid "This is the configuration for the @code{ganeti-noded} service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31238 guix-git/doc/guix.texi:31288 -#: guix-git/doc/guix.texi:31318 guix-git/doc/guix.texi:31345 -#: guix-git/doc/guix.texi:31377 guix-git/doc/guix.texi:31430 -#: guix-git/doc/guix.texi:31450 guix-git/doc/guix.texi:31476 -#: guix-git/doc/guix.texi:31509 +#: guix-git/doc/guix.texi:31603 guix-git/doc/guix.texi:31653 +#: guix-git/doc/guix.texi:31683 guix-git/doc/guix.texi:31710 +#: guix-git/doc/guix.texi:31742 guix-git/doc/guix.texi:31795 +#: guix-git/doc/guix.texi:31815 guix-git/doc/guix.texi:31841 +#: guix-git/doc/guix.texi:31874 msgid "The @code{ganeti} package to use for this service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31239 +#: guix-git/doc/guix.texi:31604 #, no-wrap msgid "@code{port} (default: @code{1811})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31241 +#: guix-git/doc/guix.texi:31606 msgid "The TCP port on which the node daemon listens for network requests." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31242 guix-git/doc/guix.texi:31292 -#: guix-git/doc/guix.texi:31384 guix-git/doc/guix.texi:31454 +#: guix-git/doc/guix.texi:31607 guix-git/doc/guix.texi:31657 +#: guix-git/doc/guix.texi:31749 guix-git/doc/guix.texi:31819 #, no-wrap msgid "@code{address} (default: @code{\"0.0.0.0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31245 +#: guix-git/doc/guix.texi:31610 msgid "The network address that the daemon will bind to. The default address means bind to all available addresses." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31249 +#: guix-git/doc/guix.texi:31614 msgid "When this is set, it must be a specific network interface (e.g.@: @code{eth0}) that the daemon will bind to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31250 guix-git/doc/guix.texi:31392 +#: guix-git/doc/guix.texi:31615 guix-git/doc/guix.texi:31757 #, no-wrap msgid "@code{max-clients} (default: @code{20})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31254 +#: guix-git/doc/guix.texi:31619 msgid "This sets a limit on the maximum number of simultaneous client connections that the daemon will handle. Connections above this count are accepted, but no responses will be sent until enough connections have closed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31255 guix-git/doc/guix.texi:31397 +#: guix-git/doc/guix.texi:31620 guix-git/doc/guix.texi:31762 #, no-wrap msgid "@code{ssl?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31259 +#: guix-git/doc/guix.texi:31624 msgid "Whether to use SSL/TLS to encrypt network communications. The certificate is automatically provisioned by the cluster and can be rotated with @command{gnt-cluster renew-crypto}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31260 guix-git/doc/guix.texi:31400 +#: guix-git/doc/guix.texi:31625 guix-git/doc/guix.texi:31765 #, no-wrap msgid "@code{ssl-key} (default: @file{\"/var/lib/ganeti/server.pem\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31262 guix-git/doc/guix.texi:31402 +#: guix-git/doc/guix.texi:31627 guix-git/doc/guix.texi:31767 msgid "This can be used to provide a specific encryption key for TLS communications." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31263 guix-git/doc/guix.texi:31403 +#: guix-git/doc/guix.texi:31628 guix-git/doc/guix.texi:31768 #, no-wrap msgid "@code{ssl-cert} (default: @file{\"/var/lib/ganeti/server.pem\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31265 guix-git/doc/guix.texi:31405 +#: guix-git/doc/guix.texi:31630 guix-git/doc/guix.texi:31770 msgid "This can be used to provide a specific certificate for TLS communications." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31269 guix-git/doc/guix.texi:31409 +#: guix-git/doc/guix.texi:31634 guix-git/doc/guix.texi:31774 msgid "When true, the daemon performs additional logging for debugging purposes. Note that this will leak encryption details to the log files, use with caution." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31273 +#: guix-git/doc/guix.texi:31638 #, no-wrap msgid "{Scheme Variable} ganeti-confd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31279 +#: guix-git/doc/guix.texi:31644 msgid "@command{ganeti-confd} answers queries related to the configuration of a Ganeti cluster. The purpose of this daemon is to have a highly available and fast way to query cluster configuration values. It is automatically active on all @dfn{master candidates}. The value of this service must be a @code{ganeti-confd-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31282 +#: guix-git/doc/guix.texi:31647 #, no-wrap msgid "{Data Type} ganeti-confd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31284 +#: guix-git/doc/guix.texi:31649 msgid "This is the configuration for the @code{ganeti-confd} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31289 +#: guix-git/doc/guix.texi:31654 #, no-wrap msgid "@code{port} (default: @code{1814})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31291 +#: guix-git/doc/guix.texi:31656 msgid "The UDP port on which to listen for network requests." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31294 +#: guix-git/doc/guix.texi:31659 msgid "Network address that the daemon will bind to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31297 guix-git/doc/guix.texi:31326 -#: guix-git/doc/guix.texi:31353 guix-git/doc/guix.texi:31433 -#: guix-git/doc/guix.texi:31460 guix-git/doc/guix.texi:31486 +#: guix-git/doc/guix.texi:31662 guix-git/doc/guix.texi:31691 +#: guix-git/doc/guix.texi:31718 guix-git/doc/guix.texi:31798 +#: guix-git/doc/guix.texi:31825 guix-git/doc/guix.texi:31851 msgid "When true, the daemon performs additional logging for debugging purposes." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31301 +#: guix-git/doc/guix.texi:31666 #, no-wrap msgid "{Scheme Variable} ganeti-wconfd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31307 +#: guix-git/doc/guix.texi:31672 msgid "@command{ganeti-wconfd} is the daemon that has authoritative knowledge about the cluster configuration and is the only entity that can accept changes to it. All jobs that need to modify the configuration will do so by sending appropriate requests to this daemon. It only runs on the @dfn{master node} and will automatically disable itself on other nodes." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31310 +#: guix-git/doc/guix.texi:31675 msgid "The value of this service must be a @code{ganeti-wconfd-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31312 +#: guix-git/doc/guix.texi:31677 #, no-wrap msgid "{Data Type} ganeti-wconfd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31314 +#: guix-git/doc/guix.texi:31679 msgid "This is the configuration for the @code{ganeti-wconfd} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31319 guix-git/doc/guix.texi:31346 +#: guix-git/doc/guix.texi:31684 guix-git/doc/guix.texi:31711 #, no-wrap msgid "@code{no-voting?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31323 +#: guix-git/doc/guix.texi:31688 msgid "The daemon will refuse to start if the majority of cluster nodes does not agree that it is running on the master node. Set to @code{#t} to start even if a quorum can not be reached (dangerous, use with caution)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31330 +#: guix-git/doc/guix.texi:31695 #, no-wrap msgid "{Scheme Variable} ganeti-luxid-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31335 +#: guix-git/doc/guix.texi:31700 msgid "@command{ganeti-luxid} is a daemon used to answer queries related to the configuration and the current live state of a Ganeti cluster. Additionally, it is the authoritative daemon for the Ganeti job queue. Jobs can be submitted via this daemon and it schedules and starts them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31337 +#: guix-git/doc/guix.texi:31702 msgid "It takes a @code{ganeti-luxid-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31339 +#: guix-git/doc/guix.texi:31704 #, no-wrap msgid "{Data Type} ganeti-luxid-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31341 +#: guix-git/doc/guix.texi:31706 msgid "This is the configuration for the @code{ganeti-luxid} service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31350 +#: guix-git/doc/guix.texi:31715 msgid "The daemon will refuse to start if it cannot verify that the majority of cluster nodes believes that it is running on the master node. Set to @code{#t} to ignore such checks and start anyway (this can be dangerous)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31357 +#: guix-git/doc/guix.texi:31722 #, no-wrap msgid "{Scheme Variable} ganeti-rapi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31361 +#: guix-git/doc/guix.texi:31726 msgid "@command{ganeti-rapi} provides a remote API for Ganeti clusters. It runs on the master node and can be used to perform cluster actions programmatically via a JSON-based RPC protocol." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31367 +#: guix-git/doc/guix.texi:31732 msgid "Most query operations are allowed without authentication (unless @var{require-authentication?} is set), whereas write operations require explicit authorization via the @file{/var/lib/ganeti/rapi/users} file. See the @url{http://docs.ganeti.org/ganeti/master/html/rapi.html, Ganeti Remote API documentation} for more information." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31369 +#: guix-git/doc/guix.texi:31734 msgid "The value of this service must be a @code{ganeti-rapi-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31371 +#: guix-git/doc/guix.texi:31736 #, no-wrap msgid "{Data Type} ganeti-rapi-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31373 +#: guix-git/doc/guix.texi:31738 msgid "This is the configuration for the @code{ganeti-rapi} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31378 +#: guix-git/doc/guix.texi:31743 #, no-wrap msgid "@code{require-authentication?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31380 +#: guix-git/doc/guix.texi:31745 msgid "Whether to require authentication even for read-only operations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31381 +#: guix-git/doc/guix.texi:31746 #, no-wrap msgid "@code{port} (default: @code{5080})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31383 +#: guix-git/doc/guix.texi:31748 msgid "The TCP port on which to listen to API requests." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31387 +#: guix-git/doc/guix.texi:31752 msgid "The network address that the service will bind to. By default it listens on all configured addresses." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31391 +#: guix-git/doc/guix.texi:31756 msgid "When set, it must specify a specific network interface such as @code{eth0} that the daemon will bind to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31396 +#: guix-git/doc/guix.texi:31761 msgid "The maximum number of simultaneous client requests to handle. Further connections are allowed, but no responses are sent until enough connections have closed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31399 +#: guix-git/doc/guix.texi:31764 msgid "Whether to use SSL/TLS encryption on the RAPI port." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31413 +#: guix-git/doc/guix.texi:31778 #, no-wrap msgid "{Scheme Variable} ganeti-kvmd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31421 +#: guix-git/doc/guix.texi:31786 msgid "@command{ganeti-kvmd} is responsible for determining whether a given KVM instance was shut down by an administrator or a user. Normally Ganeti will restart an instance that was not stopped through Ganeti itself. If the cluster option @code{user_shutdown} is true, this daemon monitors the @code{QMP} socket provided by QEMU and listens for shutdown events, and marks the instance as @dfn{USER_down} instead of @dfn{ERROR_down} when it shuts down gracefully by itself." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31423 +#: guix-git/doc/guix.texi:31788 msgid "It takes a @code{ganeti-kvmd-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31425 +#: guix-git/doc/guix.texi:31790 #, no-wrap msgid "{Data Type} ganeti-kvmd-configuration" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31437 +#: guix-git/doc/guix.texi:31802 #, no-wrap msgid "{Scheme Variable} ganeti-mond-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31441 +#: guix-git/doc/guix.texi:31806 msgid "@command{ganeti-mond} is an optional daemon that provides Ganeti monitoring functionality. It is responsible for running data collectors and publish the collected information through a HTTP interface." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31443 +#: guix-git/doc/guix.texi:31808 msgid "It takes a @code{ganeti-mond-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31445 +#: guix-git/doc/guix.texi:31810 #, no-wrap msgid "{Data Type} ganeti-mond-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31451 +#: guix-git/doc/guix.texi:31816 #, no-wrap msgid "@code{port} (default: @code{1815})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31453 guix-git/doc/guix.texi:31479 +#: guix-git/doc/guix.texi:31818 guix-git/doc/guix.texi:31844 msgid "The port on which the daemon will listen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31457 +#: guix-git/doc/guix.texi:31822 msgid "The network address that the daemon will bind to. By default it binds to all available interfaces." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31464 +#: guix-git/doc/guix.texi:31829 #, no-wrap msgid "{Scheme Variable} ganeti-metad-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31467 +#: guix-git/doc/guix.texi:31832 msgid "@command{ganeti-metad} is an optional daemon that can be used to provide information about the cluster to instances or OS install scripts." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31469 +#: guix-git/doc/guix.texi:31834 msgid "It takes a @code{ganeti-metad-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31471 +#: guix-git/doc/guix.texi:31836 #, no-wrap msgid "{Data Type} ganeti-metad-configuration" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31483 +#: guix-git/doc/guix.texi:31848 msgid "If set, the daemon will bind to this address only. If left unset, the behavior depends on the cluster configuration." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31490 +#: guix-git/doc/guix.texi:31855 #, no-wrap msgid "{Scheme Variable} ganeti-watcher-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31498 +#: guix-git/doc/guix.texi:31863 msgid "@command{ganeti-watcher} is a script designed to run periodically and ensure the health of a cluster. It will automatically restart instances that have stopped without Ganeti's consent, and repairs DRBD links in case a node has rebooted. It also archives old cluster jobs and restarts Ganeti daemons that are not running. If the cluster parameter @code{ensure_node_health} is set, the watcher will also shutdown instances and DRBD devices if the node it is running on is declared offline by known master candidates." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31500 +#: guix-git/doc/guix.texi:31865 msgid "It can be paused on all nodes with @command{gnt-cluster watcher pause}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31502 +#: guix-git/doc/guix.texi:31867 msgid "The service takes a @code{ganeti-watcher-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31504 +#: guix-git/doc/guix.texi:31869 #, no-wrap msgid "{Data Type} ganeti-watcher-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31510 +#: guix-git/doc/guix.texi:31875 #, no-wrap msgid "@code{schedule} (default: @code{'(next-second-from (next-minute (range 0 60 5)))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31512 +#: guix-git/doc/guix.texi:31877 msgid "How often to run the script. The default is every five minutes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31513 +#: guix-git/doc/guix.texi:31878 #, no-wrap msgid "@code{rapi-ip} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31516 +#: guix-git/doc/guix.texi:31881 msgid "This option needs to be specified only if the RAPI daemon is configured to use a particular interface or address. By default the cluster address is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31517 +#: guix-git/doc/guix.texi:31882 #, no-wrap msgid "@code{job-age} (default: @code{(* 6 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31520 +#: guix-git/doc/guix.texi:31885 msgid "Archive cluster jobs older than this age, specified in seconds. The default is 6 hours. This keeps @command{gnt-job list} manageable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31521 +#: guix-git/doc/guix.texi:31886 #, no-wrap msgid "@code{verify-disks?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31525 +#: guix-git/doc/guix.texi:31890 msgid "If this is @code{#f}, the watcher will not try to repair broken DRBD links automatically. Administrators will need to use @command{gnt-cluster verify-disks} manually instead." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31528 +#: guix-git/doc/guix.texi:31893 msgid "When @code{#t}, the script performs additional logging for debugging purposes." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31532 +#: guix-git/doc/guix.texi:31897 #, no-wrap msgid "{Scheme Variable} ganeti-cleaner-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31540 +#: guix-git/doc/guix.texi:31905 msgid "@command{ganeti-cleaner} is a script designed to run periodically and remove old files from the cluster. This service type controls two @dfn{cron jobs}: one intended for the master node that permanently purges old cluster jobs, and one intended for every node that removes expired X509 certificates, keys, and outdated @command{ganeti-watcher} information. Like all Ganeti services, it is safe to include even on non-master nodes as it will disable itself as necessary." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31542 +#: guix-git/doc/guix.texi:31907 msgid "It takes a @code{ganeti-cleaner-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31544 +#: guix-git/doc/guix.texi:31909 #, no-wrap msgid "{Data Type} ganeti-cleaner-configuration" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31549 +#: guix-git/doc/guix.texi:31914 msgid "The @code{ganeti} package to use for the @command{gnt-cleaner} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31550 +#: guix-git/doc/guix.texi:31915 #, no-wrap msgid "@code{master-schedule} (default: @code{\"45 1 * * *\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31553 +#: guix-git/doc/guix.texi:31918 msgid "How often to run the master cleaning job. The default is once per day, at 01:45:00." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31554 +#: guix-git/doc/guix.texi:31919 #, no-wrap msgid "@code{node-schedule} (default: @code{\"45 2 * * *\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31557 +#: guix-git/doc/guix.texi:31922 msgid "How often to run the node cleaning job. The default is once per day, at 02:45:00." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31571 +#: guix-git/doc/guix.texi:31936 msgid "The @code{(gnu services version-control)} module provides a service to allow remote access to local Git repositories. There are three options: the @code{git-daemon-service}, which provides access to repositories via the @code{git://} unsecured TCP-based protocol, extending the @code{nginx} web server to proxy some requests to @code{git-http-backend}, or providing a web interface with @code{cgit-service-type}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31572 +#: guix-git/doc/guix.texi:31937 #, no-wrap msgid "{Scheme Procedure} git-daemon-service [#:config (git-daemon-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31576 +#: guix-git/doc/guix.texi:31941 msgid "Return a service that runs @command{git daemon}, a simple TCP server to expose repositories over the Git protocol for anonymous access." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31582 +#: guix-git/doc/guix.texi:31947 msgid "The optional @var{config} argument should be a @code{} object, by default it allows read-only access to exported@footnote{By creating the magic file @file{git-daemon-export-ok} in the repository directory.} repositories under @file{/srv/git}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31585 +#: guix-git/doc/guix.texi:31950 #, no-wrap msgid "{Data Type} git-daemon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31587 +#: guix-git/doc/guix.texi:31952 msgid "Data type representing the configuration for @code{git-daemon-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31589 +#: guix-git/doc/guix.texi:31954 #, no-wrap msgid "@code{package} (default: @code{git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31591 guix-git/doc/guix.texi:31651 +#: guix-git/doc/guix.texi:31956 guix-git/doc/guix.texi:32016 msgid "Package object of the Git distributed version control system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31592 guix-git/doc/guix.texi:31655 +#: guix-git/doc/guix.texi:31957 guix-git/doc/guix.texi:32020 #, no-wrap msgid "@code{export-all?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31595 +#: guix-git/doc/guix.texi:31960 msgid "Whether to allow access for all Git repositories, even if they do not have the @file{git-daemon-export-ok} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31596 +#: guix-git/doc/guix.texi:31961 #, no-wrap msgid "@code{base-path} (default: @file{/srv/git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31602 +#: guix-git/doc/guix.texi:31967 msgid "Whether to remap all the path requests as relative to the given path. If you run @command{git daemon} with @code{(base-path \"/srv/git\")} on @samp{example.com}, then if you later try to pull @indicateurl{git://example.com/hello.git}, git daemon will interpret the path as @file{/srv/git/hello.git}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31603 +#: guix-git/doc/guix.texi:31968 #, no-wrap msgid "@code{user-path} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31611 +#: guix-git/doc/guix.texi:31976 msgid "Whether to allow @code{~user} notation to be used in requests. When specified with empty string, requests to @indicateurl{git://host/~alice/foo} is taken as a request to access @code{foo} repository in the home directory of user @code{alice}. If @code{(user-path \"@var{path}\")} is specified, the same request is taken as a request to access @file{@var{path}/foo} repository in the home directory of user @code{alice}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31612 +#: guix-git/doc/guix.texi:31977 #, no-wrap msgid "@code{listen} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31615 +#: guix-git/doc/guix.texi:31980 msgid "Whether to listen on specific IP addresses or hostnames, defaults to all." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31616 +#: guix-git/doc/guix.texi:31981 #, no-wrap msgid "@code{port} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31618 +#: guix-git/doc/guix.texi:31983 msgid "Whether to listen on an alternative port, which defaults to 9418." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31619 +#: guix-git/doc/guix.texi:31984 #, no-wrap msgid "@code{whitelist} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31621 +#: guix-git/doc/guix.texi:31986 msgid "If not empty, only allow access to this list of directories." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31625 +#: guix-git/doc/guix.texi:31990 msgid "Extra options will be passed to @command{git daemon}, please run @command{man git-daemon} for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31639 +#: guix-git/doc/guix.texi:32004 msgid "The @code{git://} protocol lacks authentication. When you pull from a repository fetched via @code{git://}, you don't know whether the data you receive was modified or is even coming from the specified host, and your connection is subject to eavesdropping. It's better to use an authenticated and encrypted transport, such as @code{https}. Although Git allows you to serve repositories using unsophisticated file-based web servers, there is a faster protocol implemented by the @code{git-http-backend} program. This program is the back-end of a proper Git web service. It is designed to sit behind a FastCGI proxy. @xref{Web Services}, for more on running the necessary @code{fcgiwrap} daemon." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31642 +#: guix-git/doc/guix.texi:32007 msgid "Guix has a separate configuration data type for serving Git repositories over HTTP." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31643 +#: guix-git/doc/guix.texi:32008 #, no-wrap msgid "{Data Type} git-http-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31647 +#: guix-git/doc/guix.texi:32012 msgid "Data type representing the configuration for a future @code{git-http-service-type}; can currently be used to configure Nginx through @code{git-http-nginx-location-configuration}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31649 +#: guix-git/doc/guix.texi:32014 #, no-wrap msgid "@code{package} (default: @var{git})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31652 +#: guix-git/doc/guix.texi:32017 #, no-wrap msgid "@code{git-root} (default: @file{/srv/git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31654 +#: guix-git/doc/guix.texi:32019 msgid "Directory containing the Git repositories to expose to the world." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31658 +#: guix-git/doc/guix.texi:32023 msgid "Whether to expose access for all Git repositories in @var{git-root}, even if they do not have the @file{git-daemon-export-ok} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31659 +#: guix-git/doc/guix.texi:32024 #, no-wrap msgid "@code{uri-path} (default: @samp{/git/})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31664 +#: guix-git/doc/guix.texi:32029 msgid "Path prefix for Git access. With the default @samp{/git/} prefix, this will map @indicateurl{http://@var{server}/git/@var{repo}.git} to @file{/srv/git/@var{repo}.git}. Requests whose URI paths do not begin with this prefix are not passed on to this Git instance." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31665 +#: guix-git/doc/guix.texi:32030 #, no-wrap msgid "@code{fcgiwrap-socket} (default: @code{127.0.0.1:9000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31668 +#: guix-git/doc/guix.texi:32033 msgid "The socket on which the @code{fcgiwrap} daemon is listening. @xref{Web Services}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31675 +#: guix-git/doc/guix.texi:32040 msgid "There is no @code{git-http-service-type}, currently; instead you can create an @code{nginx-location-configuration} from a @code{git-http-configuration} and then add that location to a web server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31676 +#: guix-git/doc/guix.texi:32041 #, no-wrap msgid "{Scheme Procedure} git-http-nginx-location-configuration @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31681 +#: guix-git/doc/guix.texi:32046 msgid "[config=(git-http-configuration)] Compute an @code{nginx-location-configuration} that corresponds to the given Git http configuration. An example nginx service definition to serve the default @file{/srv/git} over HTTPS might be:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31698 +#: guix-git/doc/guix.texi:32063 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -56674,1409 +57338,1414 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31705 +#: guix-git/doc/guix.texi:32070 msgid "This example assumes that you are using Let's Encrypt to get your TLS certificate. @xref{Certificate Services}. The default @code{certbot} service will redirect all HTTP traffic on @code{git.my-host.org} to HTTPS@. You will also need to add an @code{fcgiwrap} proxy to your system services. @xref{Web Services}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:31707 +#: guix-git/doc/guix.texi:32072 #, no-wrap msgid "Cgit Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:31709 +#: guix-git/doc/guix.texi:32074 #, no-wrap msgid "Cgit service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:31710 +#: guix-git/doc/guix.texi:32075 #, no-wrap msgid "Git, web interface" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31713 +#: guix-git/doc/guix.texi:32078 msgid "@uref{https://git.zx2c4.com/cgit/, Cgit} is a web frontend for Git repositories written in C." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31716 +#: guix-git/doc/guix.texi:32081 msgid "The following example will configure the service with default values. By default, Cgit can be accessed on port 80 (@code{http://localhost:80})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31719 +#: guix-git/doc/guix.texi:32084 #, no-wrap msgid "(service cgit-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31723 +#: guix-git/doc/guix.texi:32088 msgid "The @code{file-object} type designates either a file-like object (@pxref{G-Expressions, file-like objects}) or a string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31727 +#: guix-git/doc/guix.texi:32092 msgid "Available @code{cgit-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31728 +#: guix-git/doc/guix.texi:32093 #, no-wrap msgid "{@code{cgit-configuration} parameter} package package" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31730 +#: guix-git/doc/guix.texi:32095 msgid "The CGIT package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31733 +#: guix-git/doc/guix.texi:32098 #, no-wrap msgid "{@code{cgit-configuration} parameter} nginx-server-configuration-list nginx" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31738 +#: guix-git/doc/guix.texi:32100 +msgid "NGINX configuration." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:32103 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object about-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31741 +#: guix-git/doc/guix.texi:32106 msgid "Specifies a command which will be invoked to format the content of about pages (both top-level and for each repository)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31746 +#: guix-git/doc/guix.texi:32111 #, no-wrap msgid "{@code{cgit-configuration} parameter} string agefile" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31749 +#: guix-git/doc/guix.texi:32114 msgid "Specifies a path, relative to each repository path, which can be used to specify the date and time of the youngest commit in the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31754 +#: guix-git/doc/guix.texi:32119 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object auth-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31757 +#: guix-git/doc/guix.texi:32122 msgid "Specifies a command that will be invoked for authenticating repository access." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31762 +#: guix-git/doc/guix.texi:32127 #, no-wrap msgid "{@code{cgit-configuration} parameter} string branch-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31765 +#: guix-git/doc/guix.texi:32130 msgid "Flag which, when set to @samp{age}, enables date ordering in the branch ref list, and when set @samp{name} enables ordering by branch name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31767 +#: guix-git/doc/guix.texi:32132 msgid "Defaults to @samp{\"name\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31770 +#: guix-git/doc/guix.texi:32135 #, no-wrap msgid "{@code{cgit-configuration} parameter} string cache-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31772 +#: guix-git/doc/guix.texi:32137 msgid "Path used to store the cgit cache entries." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31774 +#: guix-git/doc/guix.texi:32139 msgid "Defaults to @samp{\"/var/cache/cgit\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31777 +#: guix-git/doc/guix.texi:32142 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-static-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31780 +#: guix-git/doc/guix.texi:32145 msgid "Number which specifies the time-to-live, in minutes, for the cached version of repository pages accessed with a fixed SHA1." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31782 guix-git/doc/guix.texi:32225 +#: guix-git/doc/guix.texi:32147 guix-git/doc/guix.texi:32590 msgid "Defaults to @samp{-1}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31785 +#: guix-git/doc/guix.texi:32150 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-dynamic-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31788 +#: guix-git/doc/guix.texi:32153 msgid "Number which specifies the time-to-live, in minutes, for the cached version of repository pages accessed without a fixed SHA1." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31793 +#: guix-git/doc/guix.texi:32158 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-repo-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31796 +#: guix-git/doc/guix.texi:32161 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository summary page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31801 +#: guix-git/doc/guix.texi:32166 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-root-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31804 +#: guix-git/doc/guix.texi:32169 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31809 +#: guix-git/doc/guix.texi:32174 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-scanrc-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31812 +#: guix-git/doc/guix.texi:32177 msgid "Number which specifies the time-to-live, in minutes, for the result of scanning a path for Git repositories." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31817 +#: guix-git/doc/guix.texi:32182 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-about-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31820 +#: guix-git/doc/guix.texi:32185 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository about page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31825 +#: guix-git/doc/guix.texi:32190 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-snapshot-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31828 +#: guix-git/doc/guix.texi:32193 msgid "Number which specifies the time-to-live, in minutes, for the cached version of snapshots." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31833 +#: guix-git/doc/guix.texi:32198 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31836 +#: guix-git/doc/guix.texi:32201 msgid "The maximum number of entries in the cgit cache. When set to @samp{0}, caching is disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31841 +#: guix-git/doc/guix.texi:32206 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean case-sensitive-sort?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31843 +#: guix-git/doc/guix.texi:32208 msgid "Sort items in the repo list case sensitively." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31848 +#: guix-git/doc/guix.texi:32213 #, no-wrap msgid "{@code{cgit-configuration} parameter} list clone-prefix" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31851 +#: guix-git/doc/guix.texi:32216 msgid "List of common prefixes which, when combined with a repository URL, generates valid clone URLs for the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31856 +#: guix-git/doc/guix.texi:32221 #, no-wrap msgid "{@code{cgit-configuration} parameter} list clone-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31858 +#: guix-git/doc/guix.texi:32223 msgid "List of @code{clone-url} templates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31863 +#: guix-git/doc/guix.texi:32228 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object commit-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31865 +#: guix-git/doc/guix.texi:32230 msgid "Command which will be invoked to format commit messages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31870 +#: guix-git/doc/guix.texi:32235 #, no-wrap msgid "{@code{cgit-configuration} parameter} string commit-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31874 guix-git/doc/guix.texi:32432 +#: guix-git/doc/guix.texi:32239 guix-git/doc/guix.texi:32797 msgid "Flag which, when set to @samp{date}, enables strict date ordering in the commit log, and when set to @samp{topo} enables strict topological ordering." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31876 +#: guix-git/doc/guix.texi:32241 msgid "Defaults to @samp{\"git log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31879 +#: guix-git/doc/guix.texi:32244 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object css" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31881 +#: guix-git/doc/guix.texi:32246 msgid "URL which specifies the css document to include in all cgit pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31883 +#: guix-git/doc/guix.texi:32248 msgid "Defaults to @samp{\"/share/cgit/cgit.css\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31886 +#: guix-git/doc/guix.texi:32251 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object email-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31890 +#: guix-git/doc/guix.texi:32255 msgid "Specifies a command which will be invoked to format names and email address of committers, authors, and taggers, as represented in various places throughout the cgit interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31895 +#: guix-git/doc/guix.texi:32260 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean embedded?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31898 +#: guix-git/doc/guix.texi:32263 msgid "Flag which, when set to @samp{#t}, will make cgit generate a HTML fragment suitable for embedding in other HTML pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31903 +#: guix-git/doc/guix.texi:32268 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-commit-graph?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31907 +#: guix-git/doc/guix.texi:32272 msgid "Flag which, when set to @samp{#t}, will make cgit print an ASCII-art commit history graph to the left of the commit messages in the repository log page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31912 +#: guix-git/doc/guix.texi:32277 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-filter-overrides?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31915 +#: guix-git/doc/guix.texi:32280 msgid "Flag which, when set to @samp{#t}, allows all filter settings to be overridden in repository-specific cgitrc files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31920 +#: guix-git/doc/guix.texi:32285 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-follow-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31923 +#: guix-git/doc/guix.texi:32288 msgid "Flag which, when set to @samp{#t}, allows users to follow a file in the log view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31928 +#: guix-git/doc/guix.texi:32293 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-http-clone?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31931 +#: guix-git/doc/guix.texi:32296 msgid "If set to @samp{#t}, cgit will act as an dumb HTTP endpoint for Git clones." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31936 +#: guix-git/doc/guix.texi:32301 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-index-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31939 +#: guix-git/doc/guix.texi:32304 msgid "Flag which, when set to @samp{#t}, will make cgit generate extra links \"summary\", \"commit\", \"tree\" for each repo in the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31944 +#: guix-git/doc/guix.texi:32309 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-index-owner?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31947 +#: guix-git/doc/guix.texi:32312 msgid "Flag which, when set to @samp{#t}, will make cgit display the owner of each repo in the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31952 +#: guix-git/doc/guix.texi:32317 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-log-filecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31955 +#: guix-git/doc/guix.texi:32320 msgid "Flag which, when set to @samp{#t}, will make cgit print the number of modified files for each commit on the repository log page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31960 +#: guix-git/doc/guix.texi:32325 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-log-linecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31963 +#: guix-git/doc/guix.texi:32328 msgid "Flag which, when set to @samp{#t}, will make cgit print the number of added and removed lines for each commit on the repository log page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31968 +#: guix-git/doc/guix.texi:32333 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-remote-branches?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31971 guix-git/doc/guix.texi:32495 +#: guix-git/doc/guix.texi:32336 guix-git/doc/guix.texi:32860 msgid "Flag which, when set to @code{#t}, will make cgit display remote branches in the summary and refs views." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31976 +#: guix-git/doc/guix.texi:32341 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-subject-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31980 +#: guix-git/doc/guix.texi:32345 msgid "Flag which, when set to @code{1}, will make cgit use the subject of the parent commit as link text when generating links to parent commits in commit view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31985 +#: guix-git/doc/guix.texi:32350 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-html-serving?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31989 +#: guix-git/doc/guix.texi:32354 msgid "Flag which, when set to @samp{#t}, will make cgit use the subject of the parent commit as link text when generating links to parent commits in commit view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31994 +#: guix-git/doc/guix.texi:32359 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-tree-linenumbers?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31997 +#: guix-git/doc/guix.texi:32362 msgid "Flag which, when set to @samp{#t}, will make cgit generate linenumber links for plaintext blobs printed in the tree view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32002 +#: guix-git/doc/guix.texi:32367 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-git-config?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32005 +#: guix-git/doc/guix.texi:32370 msgid "Flag which, when set to @samp{#f}, will allow cgit to use Git config to set any repo specific settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32010 +#: guix-git/doc/guix.texi:32375 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object favicon" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32012 +#: guix-git/doc/guix.texi:32377 msgid "URL used as link to a shortcut icon for cgit." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32014 +#: guix-git/doc/guix.texi:32379 msgid "Defaults to @samp{\"/favicon.ico\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32017 +#: guix-git/doc/guix.texi:32382 #, no-wrap msgid "{@code{cgit-configuration} parameter} string footer" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32021 +#: guix-git/doc/guix.texi:32386 msgid "The content of the file specified with this option will be included verbatim at the bottom of all pages (i.e.@: it replaces the standard \"generated by...\"@: message)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32026 +#: guix-git/doc/guix.texi:32391 #, no-wrap msgid "{@code{cgit-configuration} parameter} string head-include" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32029 +#: guix-git/doc/guix.texi:32394 msgid "The content of the file specified with this option will be included verbatim in the HTML HEAD section on all pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32034 +#: guix-git/doc/guix.texi:32399 #, no-wrap msgid "{@code{cgit-configuration} parameter} string header" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32037 +#: guix-git/doc/guix.texi:32402 msgid "The content of the file specified with this option will be included verbatim at the top of all pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32042 +#: guix-git/doc/guix.texi:32407 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object include" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32045 +#: guix-git/doc/guix.texi:32410 msgid "Name of a configfile to include before the rest of the current config- file is parsed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32050 +#: guix-git/doc/guix.texi:32415 #, no-wrap msgid "{@code{cgit-configuration} parameter} string index-header" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32053 +#: guix-git/doc/guix.texi:32418 msgid "The content of the file specified with this option will be included verbatim above the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32058 +#: guix-git/doc/guix.texi:32423 #, no-wrap msgid "{@code{cgit-configuration} parameter} string index-info" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32061 +#: guix-git/doc/guix.texi:32426 msgid "The content of the file specified with this option will be included verbatim below the heading on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32066 +#: guix-git/doc/guix.texi:32431 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean local-time?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32069 +#: guix-git/doc/guix.texi:32434 msgid "Flag which, if set to @samp{#t}, makes cgit print commit and tag times in the servers timezone." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32074 +#: guix-git/doc/guix.texi:32439 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object logo" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32077 +#: guix-git/doc/guix.texi:32442 msgid "URL which specifies the source of an image which will be used as a logo on all cgit pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32079 +#: guix-git/doc/guix.texi:32444 msgid "Defaults to @samp{\"/share/cgit/cgit.png\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32082 +#: guix-git/doc/guix.texi:32447 #, no-wrap msgid "{@code{cgit-configuration} parameter} string logo-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32084 guix-git/doc/guix.texi:32541 +#: guix-git/doc/guix.texi:32449 guix-git/doc/guix.texi:32906 msgid "URL loaded when clicking on the cgit logo image." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32089 +#: guix-git/doc/guix.texi:32454 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object owner-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32092 +#: guix-git/doc/guix.texi:32457 msgid "Command which will be invoked to format the Owner column of the main page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32097 +#: guix-git/doc/guix.texi:32462 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-atom-items" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32099 +#: guix-git/doc/guix.texi:32464 msgid "Number of items to display in atom feeds view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32104 +#: guix-git/doc/guix.texi:32469 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-commit-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32106 +#: guix-git/doc/guix.texi:32471 msgid "Number of entries to list per page in \"log\" view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32111 +#: guix-git/doc/guix.texi:32476 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-message-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32113 +#: guix-git/doc/guix.texi:32478 msgid "Number of commit message characters to display in \"log\" view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32115 guix-git/doc/guix.texi:32131 +#: guix-git/doc/guix.texi:32480 guix-git/doc/guix.texi:32496 msgid "Defaults to @samp{80}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32118 +#: guix-git/doc/guix.texi:32483 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-repo-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32121 +#: guix-git/doc/guix.texi:32486 msgid "Specifies the number of entries to list per page on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32126 +#: guix-git/doc/guix.texi:32491 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-repodesc-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32129 +#: guix-git/doc/guix.texi:32494 msgid "Specifies the maximum number of repo description characters to display on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32134 +#: guix-git/doc/guix.texi:32499 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-blob-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32136 +#: guix-git/doc/guix.texi:32501 msgid "Specifies the maximum size of a blob to display HTML for in KBytes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32141 +#: guix-git/doc/guix.texi:32506 #, no-wrap msgid "{@code{cgit-configuration} parameter} string max-stats" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32144 +#: guix-git/doc/guix.texi:32509 msgid "Maximum statistics period. Valid values are @samp{week},@samp{month}, @samp{quarter} and @samp{year}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32149 +#: guix-git/doc/guix.texi:32514 #, no-wrap msgid "{@code{cgit-configuration} parameter} mimetype-alist mimetype" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32151 +#: guix-git/doc/guix.texi:32516 msgid "Mimetype for the specified filename extension." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32155 +#: guix-git/doc/guix.texi:32520 msgid "Defaults to @samp{((gif \"image/gif\") (html \"text/html\") (jpg \"image/jpeg\") (jpeg \"image/jpeg\") (pdf \"application/pdf\") (png \"image/png\") (svg \"image/svg+xml\"))}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32158 +#: guix-git/doc/guix.texi:32523 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object mimetype-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32160 +#: guix-git/doc/guix.texi:32525 msgid "Specifies the file to use for automatic mimetype lookup." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32165 +#: guix-git/doc/guix.texi:32530 #, no-wrap msgid "{@code{cgit-configuration} parameter} string module-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32168 +#: guix-git/doc/guix.texi:32533 msgid "Text which will be used as the formatstring for a hyperlink when a submodule is printed in a directory listing." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32173 +#: guix-git/doc/guix.texi:32538 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean nocache?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32175 +#: guix-git/doc/guix.texi:32540 msgid "If set to the value @samp{#t} caching will be disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32180 +#: guix-git/doc/guix.texi:32545 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean noplainemail?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32183 +#: guix-git/doc/guix.texi:32548 msgid "If set to @samp{#t} showing full author email addresses will be disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32188 +#: guix-git/doc/guix.texi:32553 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean noheader?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32191 +#: guix-git/doc/guix.texi:32556 msgid "Flag which, when set to @samp{#t}, will make cgit omit the standard header on all pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32196 +#: guix-git/doc/guix.texi:32561 #, no-wrap msgid "{@code{cgit-configuration} parameter} project-list project-list" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32200 +#: guix-git/doc/guix.texi:32565 msgid "A list of subdirectories inside of @code{repository-directory}, relative to it, that should loaded as Git repositories. An empty list means that all subdirectories will be loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32205 +#: guix-git/doc/guix.texi:32570 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object readme" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32207 +#: guix-git/doc/guix.texi:32572 msgid "Text which will be used as default value for @code{cgit-repo-readme}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32212 +#: guix-git/doc/guix.texi:32577 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean remove-suffix?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32216 +#: guix-git/doc/guix.texi:32581 msgid "If set to @code{#t} and @code{repository-directory} is enabled, if any repositories are found with a suffix of @code{.git}, this suffix will be removed for the URL and name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32221 +#: guix-git/doc/guix.texi:32586 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer renamelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32223 +#: guix-git/doc/guix.texi:32588 msgid "Maximum number of files to consider when detecting renames." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32228 +#: guix-git/doc/guix.texi:32593 #, no-wrap msgid "{@code{cgit-configuration} parameter} string repository-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32230 +#: guix-git/doc/guix.texi:32595 msgid "The way in which repositories in each section are sorted." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32235 +#: guix-git/doc/guix.texi:32600 #, no-wrap msgid "{@code{cgit-configuration} parameter} robots-list robots" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32237 +#: guix-git/doc/guix.texi:32602 msgid "Text used as content for the @code{robots} meta-tag." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32239 +#: guix-git/doc/guix.texi:32604 msgid "Defaults to @samp{(\"noindex\" \"nofollow\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32242 +#: guix-git/doc/guix.texi:32607 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-desc" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32244 +#: guix-git/doc/guix.texi:32609 msgid "Text printed below the heading on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32246 +#: guix-git/doc/guix.texi:32611 msgid "Defaults to @samp{\"a fast webinterface for the git dscm\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32249 +#: guix-git/doc/guix.texi:32614 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-readme" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32252 +#: guix-git/doc/guix.texi:32617 msgid "The content of the file specified with this option will be included verbatim below the ``about'' link on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32257 +#: guix-git/doc/guix.texi:32622 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-title" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32259 +#: guix-git/doc/guix.texi:32624 msgid "Text printed as heading on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32264 +#: guix-git/doc/guix.texi:32629 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean scan-hidden-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32270 +#: guix-git/doc/guix.texi:32635 msgid "If set to @samp{#t} and repository-directory is enabled, repository-directory will recurse into directories whose name starts with a period. Otherwise, repository-directory will stay away from such directories, considered as ``hidden''. Note that this does not apply to the @file{.git} directory in non-bare repos." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32275 +#: guix-git/doc/guix.texi:32640 #, no-wrap msgid "{@code{cgit-configuration} parameter} list snapshots" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32278 +#: guix-git/doc/guix.texi:32643 msgid "Text which specifies the default set of snapshot formats that cgit generates links for." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32283 +#: guix-git/doc/guix.texi:32648 #, no-wrap msgid "{@code{cgit-configuration} parameter} repository-directory repository-directory" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32286 +#: guix-git/doc/guix.texi:32651 msgid "Name of the directory to scan for repositories (represents @code{scan-path})." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32288 +#: guix-git/doc/guix.texi:32653 msgid "Defaults to @samp{\"/srv/git\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32291 +#: guix-git/doc/guix.texi:32656 #, no-wrap msgid "{@code{cgit-configuration} parameter} string section" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32294 guix-git/doc/guix.texi:32610 +#: guix-git/doc/guix.texi:32659 guix-git/doc/guix.texi:32975 msgid "The name of the current repository section - all repositories defined after this option will inherit the current section name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32299 +#: guix-git/doc/guix.texi:32664 #, no-wrap msgid "{@code{cgit-configuration} parameter} string section-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32302 +#: guix-git/doc/guix.texi:32667 msgid "Flag which, when set to @samp{1}, will sort the sections on the repository listing by name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32307 +#: guix-git/doc/guix.texi:32672 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer section-from-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32310 +#: guix-git/doc/guix.texi:32675 msgid "A number which, if defined prior to repository-directory, specifies how many path elements from each repo path to use as a default section name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32315 +#: guix-git/doc/guix.texi:32680 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean side-by-side-diffs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32318 +#: guix-git/doc/guix.texi:32683 msgid "If set to @samp{#t} shows side-by-side diffs instead of unidiffs per default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32323 +#: guix-git/doc/guix.texi:32688 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object source-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32326 +#: guix-git/doc/guix.texi:32691 msgid "Specifies a command which will be invoked to format plaintext blobs in the tree view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32331 +#: guix-git/doc/guix.texi:32696 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-branches" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32334 +#: guix-git/doc/guix.texi:32699 msgid "Specifies the number of branches to display in the repository ``summary'' view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32339 +#: guix-git/doc/guix.texi:32704 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32342 +#: guix-git/doc/guix.texi:32707 msgid "Specifies the number of log entries to display in the repository ``summary'' view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32347 +#: guix-git/doc/guix.texi:32712 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-tags" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32350 +#: guix-git/doc/guix.texi:32715 msgid "Specifies the number of tags to display in the repository ``summary'' view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32355 +#: guix-git/doc/guix.texi:32720 #, no-wrap msgid "{@code{cgit-configuration} parameter} string strict-export" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32358 +#: guix-git/doc/guix.texi:32723 msgid "Filename which, if specified, needs to be present within the repository for cgit to allow access to that repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32363 +#: guix-git/doc/guix.texi:32728 #, no-wrap msgid "{@code{cgit-configuration} parameter} string virtual-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32365 +#: guix-git/doc/guix.texi:32730 msgid "URL which, if specified, will be used as root for all cgit links." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32367 +#: guix-git/doc/guix.texi:32732 msgid "Defaults to @samp{\"/\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32370 +#: guix-git/doc/guix.texi:32735 #, no-wrap msgid "{@code{cgit-configuration} parameter} repository-cgit-configuration-list repositories" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32372 +#: guix-git/doc/guix.texi:32737 msgid "A list of @dfn{cgit-repo} records to use with config." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32376 +#: guix-git/doc/guix.texi:32741 msgid "Available @code{repository-cgit-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32377 +#: guix-git/doc/guix.texi:32742 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list snapshots" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32380 +#: guix-git/doc/guix.texi:32745 msgid "A mask of snapshot formats for this repo that cgit generates links for, restricted by the global @code{snapshots} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32385 +#: guix-git/doc/guix.texi:32750 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object source-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32387 +#: guix-git/doc/guix.texi:32752 msgid "Override the default @code{source-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32392 +#: guix-git/doc/guix.texi:32757 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32394 +#: guix-git/doc/guix.texi:32759 msgid "The relative URL used to access the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32399 +#: guix-git/doc/guix.texi:32764 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object about-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32401 +#: guix-git/doc/guix.texi:32766 msgid "Override the default @code{about-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32406 +#: guix-git/doc/guix.texi:32771 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string branch-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32409 +#: guix-git/doc/guix.texi:32774 msgid "Flag which, when set to @samp{age}, enables date ordering in the branch ref list, and when set to @samp{name} enables ordering by branch name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32414 +#: guix-git/doc/guix.texi:32779 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list clone-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32416 +#: guix-git/doc/guix.texi:32781 msgid "A list of URLs which can be used to clone repo." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32421 +#: guix-git/doc/guix.texi:32786 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object commit-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32423 +#: guix-git/doc/guix.texi:32788 msgid "Override the default @code{commit-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32428 +#: guix-git/doc/guix.texi:32793 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string commit-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32437 +#: guix-git/doc/guix.texi:32802 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string defbranch" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32442 +#: guix-git/doc/guix.texi:32807 msgid "The name of the default branch for this repository. If no such branch exists in the repository, the first branch name (when sorted) is used as default instead. By default branch pointed to by HEAD, or ``master'' if there is no suitable HEAD." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32447 +#: guix-git/doc/guix.texi:32812 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string desc" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32449 +#: guix-git/doc/guix.texi:32814 msgid "The value to show as repository description." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32454 +#: guix-git/doc/guix.texi:32819 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string homepage" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32456 +#: guix-git/doc/guix.texi:32821 msgid "The value to show as repository homepage." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32461 +#: guix-git/doc/guix.texi:32826 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object email-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32463 +#: guix-git/doc/guix.texi:32828 msgid "Override the default @code{email-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32468 +#: guix-git/doc/guix.texi:32833 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-commit-graph?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32471 +#: guix-git/doc/guix.texi:32836 msgid "A flag which can be used to disable the global setting @code{enable-commit-graph?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32476 +#: guix-git/doc/guix.texi:32841 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-log-filecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32479 +#: guix-git/doc/guix.texi:32844 msgid "A flag which can be used to disable the global setting @code{enable-log-filecount?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32484 +#: guix-git/doc/guix.texi:32849 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-log-linecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32487 +#: guix-git/doc/guix.texi:32852 msgid "A flag which can be used to disable the global setting @code{enable-log-linecount?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32492 +#: guix-git/doc/guix.texi:32857 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-remote-branches?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32500 +#: guix-git/doc/guix.texi:32865 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-subject-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32503 +#: guix-git/doc/guix.texi:32868 msgid "A flag which can be used to override the global setting @code{enable-subject-links?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32508 +#: guix-git/doc/guix.texi:32873 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-html-serving?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32511 +#: guix-git/doc/guix.texi:32876 msgid "A flag which can be used to override the global setting @code{enable-html-serving?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32516 +#: guix-git/doc/guix.texi:32881 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-boolean hide?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32519 +#: guix-git/doc/guix.texi:32884 msgid "Flag which, when set to @code{#t}, hides the repository from the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32524 +#: guix-git/doc/guix.texi:32889 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-boolean ignore?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32526 +#: guix-git/doc/guix.texi:32891 msgid "Flag which, when set to @samp{#t}, ignores the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32531 +#: guix-git/doc/guix.texi:32896 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object logo" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32534 +#: guix-git/doc/guix.texi:32899 msgid "URL which specifies the source of an image which will be used as a logo on this repo’s pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32539 +#: guix-git/doc/guix.texi:32904 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string logo-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32546 +#: guix-git/doc/guix.texi:32911 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object owner-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32548 +#: guix-git/doc/guix.texi:32913 msgid "Override the default @code{owner-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32553 +#: guix-git/doc/guix.texi:32918 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string module-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32557 +#: guix-git/doc/guix.texi:32922 msgid "Text which will be used as the formatstring for a hyperlink when a submodule is printed in a directory listing. The arguments for the formatstring are the path and SHA1 of the submodule commit." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32562 +#: guix-git/doc/guix.texi:32927 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} module-link-path module-link-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32566 +#: guix-git/doc/guix.texi:32931 msgid "Text which will be used as the formatstring for a hyperlink when a submodule with the specified subdirectory path is printed in a directory listing." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32571 +#: guix-git/doc/guix.texi:32936 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string max-stats" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32573 +#: guix-git/doc/guix.texi:32938 msgid "Override the default maximum statistics period." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32578 +#: guix-git/doc/guix.texi:32943 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32580 +#: guix-git/doc/guix.texi:32945 msgid "The value to show as repository name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32585 +#: guix-git/doc/guix.texi:32950 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string owner" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32587 +#: guix-git/doc/guix.texi:32952 msgid "A value used to identify the owner of the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32592 +#: guix-git/doc/guix.texi:32957 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32594 +#: guix-git/doc/guix.texi:32959 msgid "An absolute path to the repository directory." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32599 +#: guix-git/doc/guix.texi:32964 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string readme" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32602 +#: guix-git/doc/guix.texi:32967 msgid "A path (relative to repo) which specifies a file to include verbatim as the ``About'' page for this repo." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32607 +#: guix-git/doc/guix.texi:32972 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string section" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32615 +#: guix-git/doc/guix.texi:32980 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32617 guix-git/doc/guix.texi:32626 +#: guix-git/doc/guix.texi:32982 guix-git/doc/guix.texi:32991 msgid "Extra options will be appended to cgitrc file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32624 +#: guix-git/doc/guix.texi:32989 #, no-wrap msgid "{@code{cgit-configuration} parameter} list extra-options" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32638 +#: guix-git/doc/guix.texi:33003 msgid "However, it could be that you just want to get a @code{cgitrc} up and running. In that case, you can pass an @code{opaque-cgit-configuration} as a record to @code{cgit-service-type}. As its name indicates, an opaque configuration does not have easy reflective capabilities." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32640 +#: guix-git/doc/guix.texi:33005 msgid "Available @code{opaque-cgit-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32641 +#: guix-git/doc/guix.texi:33006 #, no-wrap msgid "{@code{opaque-cgit-configuration} parameter} package cgit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32643 +#: guix-git/doc/guix.texi:33008 msgid "The cgit package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32645 +#: guix-git/doc/guix.texi:33010 #, no-wrap msgid "{@code{opaque-cgit-configuration} parameter} string string" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32647 +#: guix-git/doc/guix.texi:33012 msgid "The contents of the @code{cgitrc}, as a string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32651 +#: guix-git/doc/guix.texi:33016 msgid "For example, if your @code{cgitrc} is just the empty string, you could instantiate a cgit service like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32656 +#: guix-git/doc/guix.texi:33021 #, no-wrap msgid "" "(service cgit-service-type\n" @@ -58085,40 +58754,40 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:32658 +#: guix-git/doc/guix.texi:33023 #, no-wrap msgid "Gitolite Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32660 +#: guix-git/doc/guix.texi:33025 #, no-wrap msgid "Gitolite service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32661 +#: guix-git/doc/guix.texi:33026 #, no-wrap msgid "Git, hosting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32664 +#: guix-git/doc/guix.texi:33029 msgid "@uref{https://gitolite.com/gitolite/, Gitolite} is a tool for hosting Git repositories on a central server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32667 +#: guix-git/doc/guix.texi:33032 msgid "Gitolite can handle multiple repositories and users, and supports flexible configuration of the permissions for the users on the repositories." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32670 +#: guix-git/doc/guix.texi:33035 msgid "The following example will configure Gitolite using the default @code{git} user, and the provided SSH public key." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32677 +#: guix-git/doc/guix.texi:33042 #, no-wrap msgid "" "(service gitolite-service-type\n" @@ -58129,220 +58798,220 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32682 +#: guix-git/doc/guix.texi:33047 msgid "Gitolite is configured through a special admin repository which you can clone, for example, if you setup Gitolite on @code{example.com}, you would run the following command to clone the admin repository." msgstr "" #. type: example -#: guix-git/doc/guix.texi:32685 +#: guix-git/doc/guix.texi:33050 #, no-wrap msgid "git clone git@@example.com:gitolite-admin\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32691 +#: guix-git/doc/guix.texi:33056 msgid "When the Gitolite service is activated, the provided @code{admin-pubkey} will be inserted in to the @file{keydir} directory in the gitolite-admin repository. If this results in a change in the repository, it will be committed using the message ``gitolite setup by GNU Guix''." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32692 +#: guix-git/doc/guix.texi:33057 #, no-wrap msgid "{Data Type} gitolite-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32694 +#: guix-git/doc/guix.texi:33059 msgid "Data type representing the configuration for @code{gitolite-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32696 +#: guix-git/doc/guix.texi:33061 #, no-wrap msgid "@code{package} (default: @var{gitolite})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32698 +#: guix-git/doc/guix.texi:33063 msgid "Gitolite package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32699 +#: guix-git/doc/guix.texi:33064 #, no-wrap msgid "@code{user} (default: @var{git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32702 +#: guix-git/doc/guix.texi:33067 msgid "User to use for Gitolite. This will be user that you use when accessing Gitolite over SSH." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32703 +#: guix-git/doc/guix.texi:33068 #, no-wrap msgid "@code{group} (default: @var{git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32705 +#: guix-git/doc/guix.texi:33070 msgid "Group to use for Gitolite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32706 +#: guix-git/doc/guix.texi:33071 #, no-wrap msgid "@code{home-directory} (default: @var{\"/var/lib/gitolite\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32708 +#: guix-git/doc/guix.texi:33073 msgid "Directory in which to store the Gitolite configuration and repositories." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32709 +#: guix-git/doc/guix.texi:33074 #, no-wrap msgid "@code{rc-file} (default: @var{(gitolite-rc-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32712 +#: guix-git/doc/guix.texi:33077 msgid "A ``file-like'' object (@pxref{G-Expressions, file-like objects}), representing the configuration for Gitolite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32713 +#: guix-git/doc/guix.texi:33078 #, no-wrap msgid "@code{admin-pubkey} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32717 +#: guix-git/doc/guix.texi:33082 msgid "A ``file-like'' object (@pxref{G-Expressions, file-like objects}) used to setup Gitolite. This will be inserted in to the @file{keydir} directory within the gitolite-admin repository." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32719 +#: guix-git/doc/guix.texi:33084 msgid "To specify the SSH key as a string, use the @code{plain-file} function." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32722 +#: guix-git/doc/guix.texi:33087 #, no-wrap msgid "(plain-file \"yourname.pub\" \"ssh-rsa AAAA... guix@@example.com\")\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32727 +#: guix-git/doc/guix.texi:33092 #, no-wrap msgid "{Data Type} gitolite-rc-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32729 +#: guix-git/doc/guix.texi:33094 msgid "Data type representing the Gitolite RC file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32731 +#: guix-git/doc/guix.texi:33096 #, no-wrap msgid "@code{umask} (default: @code{#o0077})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32734 +#: guix-git/doc/guix.texi:33099 msgid "This controls the permissions Gitolite sets on the repositories and their contents." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32738 +#: guix-git/doc/guix.texi:33103 msgid "A value like @code{#o0027} will give read access to the group used by Gitolite (by default: @code{git}). This is necessary when using Gitolite with software like cgit or gitweb." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32739 +#: guix-git/doc/guix.texi:33104 #, no-wrap msgid "@code{unsafe-pattern} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32744 +#: guix-git/doc/guix.texi:33109 msgid "An optional Perl regular expression for catching unsafe configurations in the configuration file. See @uref{https://gitolite.com/gitolite/git-config.html#compensating-for-unsafe_patt, Gitolite's documentation} for more information." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32751 +#: guix-git/doc/guix.texi:33116 msgid "When the value is not @code{#f}, it should be a string containing a Perl regular expression, such as @samp{\"[`~#\\$\\&()|;<>]\"}, which is the default value used by gitolite. It rejects any special character in configuration that might be interpreted by a shell, which is useful when sharing the administration burden with other people that do not otherwise have shell access on the server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32752 +#: guix-git/doc/guix.texi:33117 #, no-wrap msgid "@code{git-config-keys} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32755 +#: guix-git/doc/guix.texi:33120 msgid "Gitolite allows you to set git config values using the @samp{config} keyword. This setting allows control over the config keys to accept." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32756 +#: guix-git/doc/guix.texi:33121 #, no-wrap msgid "@code{roles} (default: @code{'((\"READERS\" . 1) (\"WRITERS\" . ))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32758 +#: guix-git/doc/guix.texi:33123 msgid "Set the role names allowed to be used by users running the perms command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32759 +#: guix-git/doc/guix.texi:33124 #, no-wrap msgid "@code{enable} (default: @code{'(\"help\" \"desc\" \"info\" \"perms\" \"writable\" \"ssh-authkeys\" \"git-config\" \"daemon\" \"gitweb\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32761 +#: guix-git/doc/guix.texi:33126 msgid "This setting controls the commands and features to enable within Gitolite." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:32766 +#: guix-git/doc/guix.texi:33131 #, no-wrap msgid "Gitile Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32768 +#: guix-git/doc/guix.texi:33133 #, no-wrap msgid "Gitile service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32769 +#: guix-git/doc/guix.texi:33134 #, no-wrap msgid "Git, forge" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32772 +#: guix-git/doc/guix.texi:33137 msgid "@uref{https://git.lepiller.eu/gitile, Gitile} is a Git forge for viewing public git repository contents from a web browser." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32778 +#: guix-git/doc/guix.texi:33143 msgid "Gitile works best in collaboration with Gitolite, and will serve the public repositories from Gitolite by default. The service should listen only on a local port, and a webserver should be configured to serve static resources. The gitile service provides an easy way to extend the Nginx service for that purpose (@pxref{NGINX})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32782 +#: guix-git/doc/guix.texi:33147 msgid "The following example will configure Gitile to serve repositories from a custom location, with some default messages for the home page and the footers." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32805 +#: guix-git/doc/guix.texi:33170 #, no-wrap msgid "" "(service gitile-service-type\n" @@ -58369,12 +59038,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32814 +#: guix-git/doc/guix.texi:33179 msgid "In addition to the configuration record, you should configure your git repositories to contain some optional information. First, your public repositories need to contain the @file{git-daemon-export-ok} magic file that allows Git to export the repository. Gitile uses the presence of this file to detect public repositories it should make accessible. To do so with Gitolite for instance, modify your @file{conf/gitolite.conf} to include this in the repositories you want to make public:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:32818 +#: guix-git/doc/guix.texi:33183 #, no-wrap msgid "" "repo foo\n" @@ -58382,12 +59051,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32824 +#: guix-git/doc/guix.texi:33189 msgid "In addition, Gitile can read the repository configuration to display more information on the repository. Gitile uses the gitweb namespace for its configuration. As an example, you can use the following in your @file{conf/gitolite.conf}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:32831 +#: guix-git/doc/guix.texi:33196 #, no-wrap msgid "" "repo foo\n" @@ -58398,12 +59067,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32837 +#: guix-git/doc/guix.texi:33202 msgid "Do not forget to commit and push these changes once you are satisfied. You may need to change your gitolite configuration to allow the previous configuration options to be set. One way to do that is to add the following service definition:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32849 +#: guix-git/doc/guix.texi:33214 #, no-wrap msgid "" "(service gitolite-service-type\n" @@ -58419,243 +59088,243 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32851 +#: guix-git/doc/guix.texi:33216 #, no-wrap msgid "{Data Type} gitile-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32853 +#: guix-git/doc/guix.texi:33218 msgid "Data type representing the configuration for @code{gitile-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32855 +#: guix-git/doc/guix.texi:33220 #, no-wrap msgid "@code{package} (default: @var{gitile})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32857 +#: guix-git/doc/guix.texi:33222 msgid "Gitile package to use." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32860 +#: guix-git/doc/guix.texi:33225 msgid "The host on which gitile is listening." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32861 +#: guix-git/doc/guix.texi:33226 #, no-wrap msgid "@code{port} (default: @code{8080})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32863 +#: guix-git/doc/guix.texi:33228 msgid "The port on which gitile is listening." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32864 +#: guix-git/doc/guix.texi:33229 #, no-wrap msgid "@code{database} (default: @code{\"/var/lib/gitile/gitile-db.sql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32866 +#: guix-git/doc/guix.texi:33231 msgid "The location of the database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32867 +#: guix-git/doc/guix.texi:33232 #, no-wrap msgid "@code{repositories} (default: @code{\"/var/lib/gitolite/repositories\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32871 +#: guix-git/doc/guix.texi:33236 msgid "The location of the repositories. Note that only public repositories will be shown by Gitile. To make a repository public, add an empty @file{git-daemon-export-ok} file at the root of that repository." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:32872 +#: guix-git/doc/guix.texi:33237 #, no-wrap msgid "base-git-url" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32874 +#: guix-git/doc/guix.texi:33239 msgid "The base git url that will be used to show clone commands." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32875 +#: guix-git/doc/guix.texi:33240 #, no-wrap msgid "@code{index-title} (default: @code{\"Index\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32877 +#: guix-git/doc/guix.texi:33242 msgid "The page title for the index page that lists all the available repositories." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32878 +#: guix-git/doc/guix.texi:33243 #, no-wrap msgid "@code{intro} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32881 +#: guix-git/doc/guix.texi:33246 msgid "The intro content, as a list of sxml expressions. This is shown above the list of repositories, on the index page." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32882 +#: guix-git/doc/guix.texi:33247 #, no-wrap msgid "@code{footer} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32885 +#: guix-git/doc/guix.texi:33250 msgid "The footer content, as a list of sxml expressions. This is shown on every page served by Gitile." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:32886 +#: guix-git/doc/guix.texi:33251 #, no-wrap msgid "nginx-server-block" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32889 +#: guix-git/doc/guix.texi:33254 msgid "An nginx server block that will be extended and used as a reverse proxy by Gitile to serve its pages, and as a normal web server to serve its assets." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32893 +#: guix-git/doc/guix.texi:33258 msgid "You can use this block to add more custom URLs to your domain, such as a @code{/git/} URL for anonymous clones, or serving any other files you would like to serve." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:32900 +#: guix-git/doc/guix.texi:33265 #, no-wrap msgid "The Battle for Wesnoth Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32901 +#: guix-git/doc/guix.texi:33266 #, no-wrap msgid "wesnothd" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32905 +#: guix-git/doc/guix.texi:33270 msgid "@uref{https://wesnoth.org, The Battle for Wesnoth} is a fantasy, turn based tactical strategy game, with several single player campaigns, and multiplayer games (both networked and local)." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32906 +#: guix-git/doc/guix.texi:33271 #, no-wrap msgid "{Scheme Variable} wesnothd-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32910 +#: guix-git/doc/guix.texi:33275 msgid "Service type for the wesnothd service. Its value must be a @code{wesnothd-configuration} object. To run wesnothd in the default configuration, instantiate it as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32913 +#: guix-git/doc/guix.texi:33278 #, no-wrap msgid "(service wesnothd-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32916 +#: guix-git/doc/guix.texi:33281 #, no-wrap msgid "{Data Type} wesnothd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32918 +#: guix-git/doc/guix.texi:33283 msgid "Data type representing the configuration of @command{wesnothd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32920 +#: guix-git/doc/guix.texi:33285 #, no-wrap msgid "@code{package} (default: @code{wesnoth-server})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32922 +#: guix-git/doc/guix.texi:33287 msgid "The wesnoth server package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32923 +#: guix-git/doc/guix.texi:33288 #, no-wrap msgid "@code{port} (default: @code{15000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32925 +#: guix-git/doc/guix.texi:33290 guix-git/doc/guix.texi:33681 msgid "The port to bind the server to." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32931 +#: guix-git/doc/guix.texi:33296 #, no-wrap msgid "pam-mount" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32936 +#: guix-git/doc/guix.texi:33301 msgid "The @code{(gnu services pam-mount)} module provides a service allowing users to mount volumes when they log in. It should be able to mount any volume format supported by the system." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32937 +#: guix-git/doc/guix.texi:33302 #, no-wrap msgid "{Scheme Variable} pam-mount-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32939 +#: guix-git/doc/guix.texi:33304 msgid "Service type for PAM Mount support." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32941 +#: guix-git/doc/guix.texi:33306 #, no-wrap msgid "{Data Type} pam-mount-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32943 +#: guix-git/doc/guix.texi:33308 msgid "Data type representing the configuration of PAM Mount." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:32947 +#: guix-git/doc/guix.texi:33312 #, no-wrap msgid "rules" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32950 +#: guix-git/doc/guix.texi:33315 msgid "The configuration rules that will be used to generate @file{/etc/security/pam_mount.conf.xml}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32954 +#: guix-git/doc/guix.texi:33319 msgid "The configuration rules are SXML elements (@pxref{SXML,,, guile, GNU Guile Reference Manual}), and the default ones don't mount anything for anyone at login:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32969 +#: guix-git/doc/guix.texi:33334 #, no-wrap msgid "" "`((debug (@@ (enable \"0\")))\n" @@ -58674,12 +59343,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32975 +#: guix-git/doc/guix.texi:33340 msgid "Some @code{volume} elements must be added to automatically mount volumes at login. Here's an example allowing the user @code{alice} to mount her encrypted @env{HOME} directory and allowing the user @code{bob} to mount the partition where he stores his data:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33000 +#: guix-git/doc/guix.texi:33365 #, no-wrap msgid "" "(define pam-mount-rules\n" @@ -58709,7 +59378,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33004 +#: guix-git/doc/guix.texi:33369 #, no-wrap msgid "" "(service pam-mount-service-type\n" @@ -58718,770 +59387,909 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33008 +#: guix-git/doc/guix.texi:33373 msgid "The complete list of possible options can be found in the man page for @uref{http://pam-mount.sourceforge.net/pam_mount.conf.5.html, pam_mount.conf}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33015 +#: guix-git/doc/guix.texi:33380 #, no-wrap msgid "Guix Build Coordinator" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33021 +#: guix-git/doc/guix.texi:33386 msgid "The @uref{https://git.cbaines.net/guix/build-coordinator/,Guix Build Coordinator} aids in distributing derivation builds among machines running an @dfn{agent}. The build daemon is still used to build the derivations, but the Guix Build Coordinator manages allocating builds and working with the results." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33027 +#: guix-git/doc/guix.texi:33392 msgid "The Guix Build Coordinator consists of one @dfn{coordinator}, and one or more connected @dfn{agent} processes. The coordinator process handles clients submitting builds, and allocating builds to agents. The agent processes talk to a build daemon to actually perform the builds, then send the results back to the coordinator." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33031 +#: guix-git/doc/guix.texi:33396 msgid "There is a script to run the coordinator component of the Guix Build Coordinator, but the Guix service uses a custom Guile script instead, to provide better integration with G-expressions used in the configuration." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33032 +#: guix-git/doc/guix.texi:33397 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33035 +#: guix-git/doc/guix.texi:33400 msgid "Service type for the Guix Build Coordinator. Its value must be a @code{guix-build-coordinator-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33037 +#: guix-git/doc/guix.texi:33402 #, no-wrap msgid "{Data Type} guix-build-coordinator-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33039 +#: guix-git/doc/guix.texi:33404 msgid "Data type representing the configuration of the Guix Build Coordinator." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33041 guix-git/doc/guix.texi:33211 +#: guix-git/doc/guix.texi:33406 guix-git/doc/guix.texi:33576 #, no-wrap msgid "@code{package} (default: @code{guix-build-coordinator})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33043 guix-git/doc/guix.texi:33087 -#: guix-git/doc/guix.texi:33213 +#: guix-git/doc/guix.texi:33408 guix-git/doc/guix.texi:33452 +#: guix-git/doc/guix.texi:33578 msgid "The Guix Build Coordinator package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33044 +#: guix-git/doc/guix.texi:33409 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33046 guix-git/doc/guix.texi:33090 -#: guix-git/doc/guix.texi:33216 guix-git/doc/guix.texi:33262 +#: guix-git/doc/guix.texi:33411 guix-git/doc/guix.texi:33455 +#: guix-git/doc/guix.texi:33581 guix-git/doc/guix.texi:33627 +#: guix-git/doc/guix.texi:33675 msgid "The system user to run the service as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33047 +#: guix-git/doc/guix.texi:33412 #, no-wrap msgid "@code{group} (default: @code{\"guix-build-coordinator\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33049 guix-git/doc/guix.texi:33265 +#: guix-git/doc/guix.texi:33414 guix-git/doc/guix.texi:33630 +#: guix-git/doc/guix.texi:33678 msgid "The system group to run the service as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33050 +#: guix-git/doc/guix.texi:33415 #, no-wrap msgid "@code{database-uri-string} (default: @code{\"sqlite:///var/lib/guix-build-coordinator/guix_build_coordinator.db\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33052 +#: guix-git/doc/guix.texi:33417 msgid "The URI to use for the database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33053 +#: guix-git/doc/guix.texi:33418 #, no-wrap msgid "@code{agent-communication-uri} (default: @code{\"http://0.0.0.0:8745\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33055 +#: guix-git/doc/guix.texi:33420 msgid "The URI describing how to listen to requests from agent processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33056 +#: guix-git/doc/guix.texi:33421 #, no-wrap msgid "@code{client-communication-uri} (default: @code{\"http://127.0.0.1:8746\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33060 +#: guix-git/doc/guix.texi:33425 msgid "The URI describing how to listen to requests from clients. The client API allows submitting builds and currently isn't authenticated, so take care when configuring this value." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33061 +#: guix-git/doc/guix.texi:33426 #, no-wrap msgid "@code{allocation-strategy} (default: @code{#~basic-build-allocation-strategy})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33065 +#: guix-git/doc/guix.texi:33430 msgid "A G-expression for the allocation strategy to be used. This is a procedure that takes the datastore as an argument and populates the allocation plan in the database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33066 +#: guix-git/doc/guix.texi:33431 #, no-wrap msgid "@code{hooks} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33069 +#: guix-git/doc/guix.texi:33434 msgid "An association list of hooks. These provide a way to execute arbitrary code upon certain events, like a build result being processed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33070 +#: guix-git/doc/guix.texi:33435 #, no-wrap msgid "@code{guile} (default: @code{guile-3.0-latest})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33072 +#: guix-git/doc/guix.texi:33437 msgid "The Guile package with which to run the Guix Build Coordinator." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33076 +#: guix-git/doc/guix.texi:33441 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-agent-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33079 +#: guix-git/doc/guix.texi:33444 msgid "Service type for a Guix Build Coordinator agent. Its value must be a @code{guix-build-coordinator-agent-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33081 +#: guix-git/doc/guix.texi:33446 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33083 +#: guix-git/doc/guix.texi:33448 msgid "Data type representing the configuration a Guix Build Coordinator agent." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33085 +#: guix-git/doc/guix.texi:33450 #, no-wrap msgid "@code{package} (default: @code{guix-build-coordinator/agent-only})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33088 +#: guix-git/doc/guix.texi:33453 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator-agent\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33091 +#: guix-git/doc/guix.texi:33456 #, no-wrap msgid "@code{coordinator} (default: @code{\"http://localhost:8745\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33093 guix-git/doc/guix.texi:33219 +#: guix-git/doc/guix.texi:33458 guix-git/doc/guix.texi:33584 msgid "The URI to use when connecting to the coordinator." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33094 +#: guix-git/doc/guix.texi:33459 #, no-wrap msgid "authentication" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33097 +#: guix-git/doc/guix.texi:33462 msgid "Record describing how this agent should authenticate with the coordinator. Possible record types are described below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33098 guix-git/doc/guix.texi:33220 +#: guix-git/doc/guix.texi:33463 guix-git/doc/guix.texi:33585 #, no-wrap msgid "@code{systems} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33101 +#: guix-git/doc/guix.texi:33466 msgid "The systems for which this agent should fetch builds. The agent process will use the current system it's running on as the default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33102 +#: guix-git/doc/guix.texi:33467 #, no-wrap msgid "@code{max-parallel-builds} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33104 +#: guix-git/doc/guix.texi:33469 msgid "The number of builds to perform in parallel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33105 +#: guix-git/doc/guix.texi:33470 #, no-wrap msgid "@code{max-1min-load-average} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33109 +#: guix-git/doc/guix.texi:33474 msgid "Load average value to look at when considering starting new builds, if the 1 minute load average exceeds this value, the agent will wait before starting new builds." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33113 +#: guix-git/doc/guix.texi:33478 msgid "This will be unspecified if the value is @code{#f}, and the agent will use the number of cores reported by the system as the max 1 minute load average." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33114 +#: guix-git/doc/guix.texi:33479 #, no-wrap msgid "@code{derivation-substitute-urls} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33117 +#: guix-git/doc/guix.texi:33482 msgid "URLs from which to attempt to fetch substitutes for derivations, if the derivations aren't already available." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33118 +#: guix-git/doc/guix.texi:33483 #, no-wrap msgid "@code{non-derivation-substitute-urls} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33121 +#: guix-git/doc/guix.texi:33486 msgid "URLs from which to attempt to fetch substitutes for build inputs, if the input store items aren't already available." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33125 +#: guix-git/doc/guix.texi:33490 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-password-auth" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33128 +#: guix-git/doc/guix.texi:33493 msgid "Data type representing an agent authenticating with a coordinator via a UUID and password." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33134 guix-git/doc/guix.texi:33150 +#: guix-git/doc/guix.texi:33499 guix-git/doc/guix.texi:33515 msgid "The UUID of the agent. This should be generated by the coordinator process, stored in the coordinator database, and used by the intended agent." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33137 +#: guix-git/doc/guix.texi:33502 msgid "The password to use when connecting to the coordinator." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33141 +#: guix-git/doc/guix.texi:33506 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-password-file-auth" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33144 +#: guix-git/doc/guix.texi:33509 msgid "Data type representing an agent authenticating with a coordinator via a UUID and password read from a file." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33151 +#: guix-git/doc/guix.texi:33516 #, no-wrap msgid "password-file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33154 +#: guix-git/doc/guix.texi:33519 msgid "A file containing the password to use when connecting to the coordinator." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33158 +#: guix-git/doc/guix.texi:33523 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-dynamic-auth" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33161 +#: guix-git/doc/guix.texi:33526 msgid "Data type representing an agent authenticating with a coordinator via a dynamic auth token and agent name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33163 guix-git/doc/guix.texi:33180 +#: guix-git/doc/guix.texi:33528 guix-git/doc/guix.texi:33545 #, fuzzy, no-wrap msgid "agent-name" msgstr "نام بسته" #. type: table -#: guix-git/doc/guix.texi:33167 guix-git/doc/guix.texi:33184 +#: guix-git/doc/guix.texi:33532 guix-git/doc/guix.texi:33549 msgid "Name of an agent, this is used to match up to an existing entry in the database if there is one. When no existing entry is found, a new entry is automatically added." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33168 +#: guix-git/doc/guix.texi:33533 #, no-wrap msgid "token" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33171 +#: guix-git/doc/guix.texi:33536 msgid "Dynamic auth token, this is created and stored in the coordinator database, and is used by the agent to authenticate." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33175 +#: guix-git/doc/guix.texi:33540 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-dynamic-auth-with-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33178 +#: guix-git/doc/guix.texi:33543 msgid "Data type representing an agent authenticating with a coordinator via a dynamic auth token read from a file and agent name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33185 +#: guix-git/doc/guix.texi:33550 #, no-wrap msgid "token-file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33188 +#: guix-git/doc/guix.texi:33553 msgid "File containing the dynamic auth token, this is created and stored in the coordinator database, and is used by the agent to authenticate." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33198 +#: guix-git/doc/guix.texi:33563 msgid "The Guix Build Coordinator package contains a script to query an instance of the Guix Data Service for derivations to build, and then submit builds for those derivations to the coordinator. The service type below assists in running this script. This is an additional tool that may be useful when building derivations contained within an instance of the Guix Data Service." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33199 +#: guix-git/doc/guix.texi:33564 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-queue-builds-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33204 +#: guix-git/doc/guix.texi:33569 msgid "Service type for the guix-build-coordinator-queue-builds-from-guix-data-service script. Its value must be a @code{guix-build-coordinator-queue-builds-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33206 +#: guix-git/doc/guix.texi:33571 #, no-wrap msgid "{Data Type} guix-build-coordinator-queue-builds-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33209 +#: guix-git/doc/guix.texi:33574 msgid "Data type representing the options to the queue builds from guix data service script." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33214 +#: guix-git/doc/guix.texi:33579 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator-queue-builds\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33217 +#: guix-git/doc/guix.texi:33582 #, no-wrap msgid "@code{coordinator} (default: @code{\"http://localhost:8746\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33222 +#: guix-git/doc/guix.texi:33587 msgid "The systems for which to fetch derivations to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33223 +#: guix-git/doc/guix.texi:33588 #, no-wrap msgid "@code{systems-and-targets} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33226 +#: guix-git/doc/guix.texi:33591 msgid "An association list of system and target pairs for which to fetch derivations to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33227 +#: guix-git/doc/guix.texi:33592 #, no-wrap msgid "@code{guix-data-service} (default: @code{\"https://data.guix.gnu.org\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33230 +#: guix-git/doc/guix.texi:33595 msgid "The Guix Data Service instance from which to query to find out about derivations to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33231 +#: guix-git/doc/guix.texi:33596 #, no-wrap msgid "@code{processed-commits-file} (default: @code{\"/var/cache/guix-build-coordinator-queue-builds/processed-commits\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33234 +#: guix-git/doc/guix.texi:33599 msgid "A file to record which commits have been processed, to avoid needlessly processing them again if the service is restarted." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33238 +#: guix-git/doc/guix.texi:33603 #, no-wrap msgid "Guix Data Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33242 +#: guix-git/doc/guix.texi:33607 msgid "The @uref{http://data.guix.gnu.org,Guix Data Service} processes, stores and provides data about GNU Guix. This includes information about packages, derivations and lint warnings." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33245 +#: guix-git/doc/guix.texi:33610 msgid "The data is stored in a PostgreSQL database, and available through a web interface." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33246 +#: guix-git/doc/guix.texi:33611 #, no-wrap msgid "{Scheme Variable} guix-data-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33251 +#: guix-git/doc/guix.texi:33616 msgid "Service type for the Guix Data Service. Its value must be a @code{guix-data-service-configuration} object. The service optionally extends the getmail service, as the guix-commits mailing list is used to find out about changes in the Guix git repository." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33253 +#: guix-git/doc/guix.texi:33618 #, no-wrap msgid "{Data Type} guix-data-service-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33255 +#: guix-git/doc/guix.texi:33620 guix-git/doc/guix.texi:33668 msgid "Data type representing the configuration of the Guix Data Service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33257 +#: guix-git/doc/guix.texi:33622 #, no-wrap msgid "@code{package} (default: @code{guix-data-service})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33259 +#: guix-git/doc/guix.texi:33624 msgid "The Guix Data Service package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33260 +#: guix-git/doc/guix.texi:33625 #, no-wrap msgid "@code{user} (default: @code{\"guix-data-service\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33263 +#: guix-git/doc/guix.texi:33628 #, no-wrap msgid "@code{group} (default: @code{\"guix-data-service\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33266 +#: guix-git/doc/guix.texi:33631 #, no-wrap msgid "@code{port} (default: @code{8765})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33268 +#: guix-git/doc/guix.texi:33633 msgid "The port to bind the web service to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33269 +#: guix-git/doc/guix.texi:33634 guix-git/doc/guix.texi:33682 #, no-wrap msgid "@code{host} (default: @code{\"127.0.0.1\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33271 +#: guix-git/doc/guix.texi:33636 msgid "The host to bind the web service to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33272 +#: guix-git/doc/guix.texi:33637 #, no-wrap msgid "@code{getmail-idle-mailboxes} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33275 +#: guix-git/doc/guix.texi:33640 msgid "If set, this is the list of mailboxes that the getmail service will be configured to listen to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33276 +#: guix-git/doc/guix.texi:33641 #, no-wrap msgid "@code{commits-getmail-retriever-configuration} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33280 +#: guix-git/doc/guix.texi:33645 msgid "If set, this is the @code{getmail-retriever-configuration} object with which to configure getmail to fetch mail from the guix-commits mailing list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33281 +#: guix-git/doc/guix.texi:33646 #, no-wrap msgid "@code{extra-options} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33283 +#: guix-git/doc/guix.texi:33648 msgid "Extra command line options for @code{guix-data-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33284 +#: guix-git/doc/guix.texi:33649 #, no-wrap msgid "@code{extra-process-jobs-options} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33286 +#: guix-git/doc/guix.texi:33651 msgid "Extra command line options for @code{guix-data-service-process-jobs}." msgstr "" +#. type: subsubheading +#: guix-git/doc/guix.texi:33655 +#, no-wrap +msgid "Nar Herder" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:33658 +msgid "The @uref{https://git.cbaines.net/guix/nar-herder/about/,Nar Herder} is a utility for managing a collection of nars." +msgstr "" + +#. type: defvar +#: guix-git/doc/guix.texi:33659 +#, no-wrap +msgid "{Scheme Variable} nar-herder-type" +msgstr "" + +#. type: defvar +#: guix-git/doc/guix.texi:33664 +msgid "Service type for the Guix Data Service. Its value must be a @code{nar-herder-configuration} object. The service optionally extends the getmail service, as the guix-commits mailing list is used to find out about changes in the Guix git repository." +msgstr "" + +#. type: deftp +#: guix-git/doc/guix.texi:33666 +#, no-wrap +msgid "{Data Type} nar-herder-configuration" +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33670 +#, no-wrap +msgid "@code{package} (default: @code{nar-herder})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33672 +msgid "The Nar Herder package to use." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33673 +#, no-wrap +msgid "@code{user} (default: @code{\"nar-herder\"})" +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33676 +#, no-wrap +msgid "@code{group} (default: @code{\"nar-herder\"})" +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33679 +#, no-wrap +msgid "@code{port} (default: @code{8734})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33684 +msgid "The host to bind the server to." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33689 +msgid "Optional URL of the other Nar Herder instance which should be mirrored. This means that this Nar Herder instance will download it's database, and keep it up to date." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33690 +#, no-wrap +msgid "@code{database} (default: @code{\"/var/lib/nar-herder/nar_herder.db\"})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33695 +msgid "Location for the database. If this Nar Herder instance is mirroring another, the database will be downloaded if it doesn't exist. If this Nar Herder instance isn't mirroring another, an empty database will be created." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33696 +#, no-wrap +msgid "@code{database-dump} (default: @code{\"/var/lib/nar-herder/nar_herder_dump.db\"})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33700 +msgid "Location of the database dump. This is created and regularly updated by taking a copy of the database. This is the version of the database that is available to download." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33701 +#, no-wrap +msgid "@code{storage} (default: @code{#f})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33703 +msgid "Optional location in which to store nars." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33704 +#, no-wrap +msgid "@code{storage-limit} (default: @code{\"none\"})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33707 +msgid "Limit in bytes for the nars stored in the storage location. This can also be set to ``none'' so that there is no limit." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33710 +msgid "When the storage location exceeds this size, nars are removed according to the nar removal criteria." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33711 +#, no-wrap +msgid "@code{storage-nar-removal-criteria} (default: @code{'()})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33714 +msgid "Criteria used to remove nars from the storage location. These are used in conjunction with the storage limit." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33719 +msgid "When the storage location exceeds the storage limit size, nars will be checked against the nar removal criteria and if any of the criteria match, they will be removed. This will continue until the storage location is below the storage limit size." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33723 +msgid "Each criteria is specified by a string, then an equals sign, then another string. Currently, only one criteria is supported, checking if a nar is stored on another Nar Herder instance." +msgstr "" + #. type: cindex -#: guix-git/doc/guix.texi:33293 +#: guix-git/doc/guix.texi:33730 #, no-wrap msgid "oom" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33294 +#: guix-git/doc/guix.texi:33731 #, no-wrap msgid "out of memory killer" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33295 +#: guix-git/doc/guix.texi:33732 #, no-wrap msgid "earlyoom" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33296 +#: guix-git/doc/guix.texi:33733 #, no-wrap msgid "early out of memory daemon" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33297 +#: guix-git/doc/guix.texi:33734 #, no-wrap msgid "Early OOM Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33304 +#: guix-git/doc/guix.texi:33741 msgid "@uref{https://github.com/rfjakob/earlyoom,Early OOM}, also known as Earlyoom, is a minimalist out of memory (OOM) daemon that runs in user space and provides a more responsive and configurable alternative to the in-kernel OOM killer. It is useful to prevent the system from becoming unresponsive when it runs out of memory." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33305 +#: guix-git/doc/guix.texi:33742 #, no-wrap msgid "{Scheme Variable} earlyoom-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33310 +#: guix-git/doc/guix.texi:33747 msgid "The service type for running @command{earlyoom}, the Early OOM daemon. Its value must be a @code{earlyoom-configuration} object, described below. The service can be instantiated in its default configuration with:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33313 +#: guix-git/doc/guix.texi:33750 #, no-wrap msgid "(service earlyoom-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33316 +#: guix-git/doc/guix.texi:33753 #, no-wrap msgid "{Data Type} earlyoom-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33318 +#: guix-git/doc/guix.texi:33755 msgid "This is the configuration record for the @code{earlyoom-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33320 +#: guix-git/doc/guix.texi:33757 #, no-wrap msgid "@code{earlyoom} (default: @var{earlyoom})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33322 +#: guix-git/doc/guix.texi:33759 msgid "The Earlyoom package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33323 +#: guix-git/doc/guix.texi:33760 #, no-wrap msgid "@code{minimum-available-memory} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33325 +#: guix-git/doc/guix.texi:33762 msgid "The threshold for the minimum @emph{available} memory, in percentages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33326 +#: guix-git/doc/guix.texi:33763 #, no-wrap msgid "@code{minimum-free-swap} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33328 +#: guix-git/doc/guix.texi:33765 msgid "The threshold for the minimum free swap memory, in percentages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33329 +#: guix-git/doc/guix.texi:33766 #, no-wrap msgid "@code{prefer-regexp} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33332 +#: guix-git/doc/guix.texi:33769 msgid "A regular expression (as a string) to match the names of the processes that should be preferably killed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33333 +#: guix-git/doc/guix.texi:33770 #, no-wrap msgid "@code{avoid-regexp} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33336 +#: guix-git/doc/guix.texi:33773 msgid "A regular expression (as a string) to match the names of the processes that should @emph{not} be killed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33337 +#: guix-git/doc/guix.texi:33774 #, no-wrap msgid "@code{memory-report-interval} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33340 +#: guix-git/doc/guix.texi:33777 msgid "The interval in seconds at which a memory report is printed. It is disabled by default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33341 +#: guix-git/doc/guix.texi:33778 #, no-wrap msgid "@code{ignore-positive-oom-score-adj?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33344 +#: guix-git/doc/guix.texi:33781 msgid "A boolean indicating whether the positive adjustments set in @file{/proc/*/oom_score_adj} should be ignored." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33345 +#: guix-git/doc/guix.texi:33782 #, no-wrap msgid "@code{show-debug-messages?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33348 +#: guix-git/doc/guix.texi:33785 msgid "A boolean indicating whether debug messages should be printed. The logs are saved at @file{/var/log/earlyoom.log}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33349 +#: guix-git/doc/guix.texi:33786 #, no-wrap msgid "@code{send-notification-command} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33352 +#: guix-git/doc/guix.texi:33789 msgid "This can be used to provide a custom command used for sending notifications." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33355 +#: guix-git/doc/guix.texi:33792 #, no-wrap msgid "modprobe" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33356 +#: guix-git/doc/guix.texi:33793 #, no-wrap msgid "kernel module loader" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33357 +#: guix-git/doc/guix.texi:33794 #, no-wrap msgid "Kernel Module Loader Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33363 +#: guix-git/doc/guix.texi:33800 msgid "The kernel module loader service allows one to load loadable kernel modules at boot. This is especially useful for modules that don't autoload and need to be manually loaded, as is the case with @code{ddcci}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33364 +#: guix-git/doc/guix.texi:33801 #, no-wrap msgid "{Scheme Variable} kernel-module-loader-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33370 +#: guix-git/doc/guix.texi:33807 msgid "The service type for loading loadable kernel modules at boot with @command{modprobe}. Its value must be a list of strings representing module names. For example loading the drivers provided by @code{ddcci-driver-linux}, in debugging mode by passing some module parameters, can be done as follow:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33375 +#: guix-git/doc/guix.texi:33812 #, no-wrap msgid "" "(use-modules (gnu) (gnu services))\n" @@ -59491,7 +60299,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33379 +#: guix-git/doc/guix.texi:33816 #, no-wrap msgid "" "(define ddcci-config\n" @@ -59501,7 +60309,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33389 +#: guix-git/doc/guix.texi:33826 #, no-wrap msgid "" "(operating-system\n" @@ -59516,411 +60324,411 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33392 +#: guix-git/doc/guix.texi:33829 #, no-wrap msgid "rasdaemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33393 +#: guix-git/doc/guix.texi:33830 #, no-wrap msgid "Platform Reliability, Availability and Serviceability daemon" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33394 +#: guix-git/doc/guix.texi:33831 #, no-wrap msgid "Rasdaemon Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33399 +#: guix-git/doc/guix.texi:33836 msgid "The Rasdaemon service provides a daemon which monitors platform @acronym{RAS, Reliability@comma{} Availability@comma{} and Serviceability} reports from Linux kernel trace events, logging them to syslogd." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33402 +#: guix-git/doc/guix.texi:33839 msgid "Reliability, Availability and Serviceability is a concept used on servers meant to measure their robustness." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33405 +#: guix-git/doc/guix.texi:33842 msgid "@strong{Relability} is the probability that a system will produce correct outputs:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33407 +#: guix-git/doc/guix.texi:33844 #, no-wrap msgid "Generally measured as Mean Time Between Failures (MTBF), and" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33408 +#: guix-git/doc/guix.texi:33845 #, no-wrap msgid "Enhanced by features that help to avoid, detect and repair hardware" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:33410 +#: guix-git/doc/guix.texi:33847 msgid "faults" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33414 +#: guix-git/doc/guix.texi:33851 msgid "@strong{Availability} is the probability that a system is operational at a given time:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33416 +#: guix-git/doc/guix.texi:33853 #, no-wrap msgid "Generally measured as a percentage of downtime per a period of time, and" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33417 +#: guix-git/doc/guix.texi:33854 #, no-wrap msgid "Often uses mechanisms to detect and correct hardware faults in runtime." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33422 +#: guix-git/doc/guix.texi:33859 msgid "@strong{Serviceability} is the simplicity and speed with which a system can be repaired or maintained:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33424 +#: guix-git/doc/guix.texi:33861 #, no-wrap msgid "Generally measured on Mean Time Between Repair (MTBR)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33429 +#: guix-git/doc/guix.texi:33866 msgid "Among the monitoring measures, the most usual ones include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33431 +#: guix-git/doc/guix.texi:33868 #, no-wrap msgid "CPU – detect errors at instruction execution and at L1/L2/L3 caches;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33432 +#: guix-git/doc/guix.texi:33869 #, no-wrap msgid "Memory – add error correction logic (ECC) to detect and correct errors;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33433 +#: guix-git/doc/guix.texi:33870 #, no-wrap msgid "I/O – add CRC checksums for transferred data;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33434 +#: guix-git/doc/guix.texi:33871 #, no-wrap msgid "Storage – RAID, journal file systems, checksums, Self-Monitoring," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:33436 +#: guix-git/doc/guix.texi:33873 msgid "Analysis and Reporting Technology (SMART)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33442 +#: guix-git/doc/guix.texi:33879 msgid "By monitoring the number of occurrences of error detections, it is possible to identify if the probability of hardware errors is increasing, and, on such case, do a preventive maintenance to replace a degraded component while those errors are correctable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33446 +#: guix-git/doc/guix.texi:33883 msgid "For detailed information about the types of error events gathered and how to make sense of them, see the kernel administrator's guide at @url{https://www.kernel.org/doc/html/latest/admin-guide/ras.html}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33447 +#: guix-git/doc/guix.texi:33884 #, no-wrap msgid "{Scheme Variable} rasdaemon-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33450 +#: guix-git/doc/guix.texi:33887 msgid "Service type for the @command{rasdaemon} service. It accepts a @code{rasdaemon-configuration} object. Instantiating like" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33453 +#: guix-git/doc/guix.texi:33890 #, no-wrap msgid "(service rasdaemon-service-type)\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33457 +#: guix-git/doc/guix.texi:33894 msgid "will load with a default configuration, which monitors all events and logs to syslogd." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33459 +#: guix-git/doc/guix.texi:33896 #, no-wrap msgid "{Data Type} rasdaemon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33461 +#: guix-git/doc/guix.texi:33898 msgid "The data type representing the configuration of @command{rasdaemon}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33463 +#: guix-git/doc/guix.texi:33900 #, no-wrap msgid "@code{record?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33468 +#: guix-git/doc/guix.texi:33905 msgid "A boolean indicating whether to record the events in an SQLite database. This provides a more structured access to the information contained in the log file. The database location is hard-coded to @file{/var/lib/rasdaemon/ras-mc_event.db}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33472 +#: guix-git/doc/guix.texi:33909 #, no-wrap msgid "zram" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33473 +#: guix-git/doc/guix.texi:33910 #, no-wrap msgid "compressed swap" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33474 +#: guix-git/doc/guix.texi:33911 #, no-wrap msgid "Compressed RAM-based block devices" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33475 +#: guix-git/doc/guix.texi:33912 #, no-wrap msgid "Zram Device Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33481 +#: guix-git/doc/guix.texi:33918 msgid "The Zram device service provides a compressed swap device in system memory. The Linux Kernel documentation has more information about @uref{https://www.kernel.org/doc/html/latest/admin-guide/blockdev/zram.html,zram} devices." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33482 +#: guix-git/doc/guix.texi:33919 #, no-wrap msgid "{Scheme Variable} zram-device-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33486 +#: guix-git/doc/guix.texi:33923 msgid "This service creates the zram block device, formats it as swap and enables it as a swap device. The service's value is a @code{zram-device-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33487 +#: guix-git/doc/guix.texi:33924 #, no-wrap msgid "{Data Type} zram-device-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33490 +#: guix-git/doc/guix.texi:33927 msgid "This is the data type representing the configuration for the zram-device service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33492 +#: guix-git/doc/guix.texi:33929 #, no-wrap msgid "@code{size} (default @code{\"1G\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33496 +#: guix-git/doc/guix.texi:33933 msgid "This is the amount of space you wish to provide for the zram device. It accepts a string and can be a number of bytes or use a suffix, eg.: @code{\"512M\"} or @code{1024000}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33496 +#: guix-git/doc/guix.texi:33933 #, no-wrap msgid "@code{compression-algorithm} (default @code{'lzo})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:33937 msgid "This is the compression algorithm you wish to use. It is difficult to list all the possible compression options, but common ones supported by Guix's Linux Libre Kernel include @code{'lzo}, @code{'lz4} and @code{'zstd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:33937 #, no-wrap msgid "@code{memory-limit} (default @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33507 +#: guix-git/doc/guix.texi:33944 msgid "This is the maximum amount of memory which the zram device can use. Setting it to '0' disables the limit. While it is generally expected that compression will be 2:1, it is possible that uncompressable data can be written to swap and this is a method to limit how much memory can be used. It accepts a string and can be a number of bytes or use a suffix, eg.: @code{\"2G\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33507 +#: guix-git/doc/guix.texi:33944 #, no-wrap msgid "@code{priority} (default @code{-1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33512 +#: guix-git/doc/guix.texi:33949 msgid "This is the priority of the swap device created from the zram device. @code{swapon} accepts values between -1 and 32767, with higher values indicating higher priority. Higher priority swap will generally be used first." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33520 +#: guix-git/doc/guix.texi:33957 #, no-wrap msgid "{Scheme Variable} hurd-console-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33522 +#: guix-git/doc/guix.texi:33959 msgid "This service starts the fancy @code{VGA} console client on the Hurd." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33524 +#: guix-git/doc/guix.texi:33961 msgid "The service's value is a @code{hurd-console-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33526 +#: guix-git/doc/guix.texi:33963 #, no-wrap msgid "{Data Type} hurd-console-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33529 +#: guix-git/doc/guix.texi:33966 msgid "This is the data type representing the configuration for the hurd-console-service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33531 guix-git/doc/guix.texi:33547 +#: guix-git/doc/guix.texi:33968 guix-git/doc/guix.texi:33984 #, no-wrap msgid "@code{hurd} (default: @var{hurd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33533 guix-git/doc/guix.texi:33549 +#: guix-git/doc/guix.texi:33970 guix-git/doc/guix.texi:33986 msgid "The Hurd package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33536 +#: guix-git/doc/guix.texi:33973 #, no-wrap msgid "{Scheme Variable} hurd-getty-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33538 +#: guix-git/doc/guix.texi:33975 msgid "This service starts a tty using the Hurd @code{getty} program." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33540 +#: guix-git/doc/guix.texi:33977 msgid "The service's value is a @code{hurd-getty-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33542 +#: guix-git/doc/guix.texi:33979 #, no-wrap msgid "{Data Type} hurd-getty-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33545 +#: guix-git/doc/guix.texi:33982 msgid "This is the data type representing the configuration for the hurd-getty-service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33552 +#: guix-git/doc/guix.texi:33989 msgid "The name of the console this Getty runs on---e.g., @code{\"tty1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33553 +#: guix-git/doc/guix.texi:33990 #, no-wrap msgid "@code{baud-rate} (default: @code{38400})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33555 +#: guix-git/doc/guix.texi:33992 msgid "An integer specifying the baud rate of the tty." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33562 +#: guix-git/doc/guix.texi:33999 #, no-wrap msgid "fingerprint" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33563 +#: guix-git/doc/guix.texi:34000 #, no-wrap msgid "Fingerprint Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33567 +#: guix-git/doc/guix.texi:34004 msgid "The @code{(gnu services authentication)} module provides a DBus service to read and identify fingerprints via a fingerprint sensor." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33568 +#: guix-git/doc/guix.texi:34005 #, no-wrap msgid "{Scheme Variable} fprintd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33571 +#: guix-git/doc/guix.texi:34008 msgid "The service type for @command{fprintd}, which provides the fingerprint reading capability." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33574 +#: guix-git/doc/guix.texi:34011 #, no-wrap msgid "(service fprintd-service-type)\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33577 +#: guix-git/doc/guix.texi:34014 #, no-wrap msgid "sysctl" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33578 +#: guix-git/doc/guix.texi:34015 #, no-wrap msgid "System Control Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33582 +#: guix-git/doc/guix.texi:34019 msgid "The @code{(gnu services sysctl)} provides a service to configure kernel parameters at boot." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33583 +#: guix-git/doc/guix.texi:34020 #, no-wrap msgid "{Scheme Variable} sysctl-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33587 +#: guix-git/doc/guix.texi:34024 msgid "The service type for @command{sysctl}, which modifies kernel parameters under @file{/proc/sys/}. To enable IPv4 forwarding, it can be instantiated as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33592 +#: guix-git/doc/guix.texi:34029 #, no-wrap msgid "" "(service sysctl-service-type\n" @@ -59929,12 +60737,12 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33599 +#: guix-git/doc/guix.texi:34036 msgid "Since @code{sysctl-service-type} is used in the default lists of services, @code{%base-services} and @code{%desktop-services}, you can use @code{modify-services} to change its configuration and add the kernel parameters that you want (@pxref{Service Reference, @code{modify-services}})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33606 +#: guix-git/doc/guix.texi:34043 #, no-wrap msgid "" "(modify-services %base-services\n" @@ -59945,463 +60753,463 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33610 +#: guix-git/doc/guix.texi:34047 #, no-wrap msgid "{Data Type} sysctl-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33612 +#: guix-git/doc/guix.texi:34049 msgid "The data type representing the configuration of @command{sysctl}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33614 +#: guix-git/doc/guix.texi:34051 #, no-wrap msgid "@code{sysctl} (default: @code{(file-append procps \"/sbin/sysctl\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33616 +#: guix-git/doc/guix.texi:34053 msgid "The @command{sysctl} executable to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33617 +#: guix-git/doc/guix.texi:34054 #, no-wrap msgid "@code{settings} (default: @code{%default-sysctl-settings})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33619 +#: guix-git/doc/guix.texi:34056 msgid "An association list specifies kernel parameters and their values." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33622 +#: guix-git/doc/guix.texi:34059 #, no-wrap msgid "{Scheme Variable} %default-sysctl-settings" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33625 +#: guix-git/doc/guix.texi:34062 msgid "An association list specifying the default @command{sysctl} parameters on Guix System." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33627 +#: guix-git/doc/guix.texi:34064 #, no-wrap msgid "pcscd" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33628 +#: guix-git/doc/guix.texi:34065 #, no-wrap msgid "PC/SC Smart Card Daemon Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33635 +#: guix-git/doc/guix.texi:34072 msgid "The @code{(gnu services security-token)} module provides the following service to run @command{pcscd}, the PC/SC Smart Card Daemon. @command{pcscd} is the daemon program for pcsc-lite and the MuscleCard framework. It is a resource manager that coordinates communications with smart card readers, smart cards and cryptographic tokens that are connected to the system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33636 +#: guix-git/doc/guix.texi:34073 #, no-wrap msgid "{Scheme Variable} pcscd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33640 +#: guix-git/doc/guix.texi:34077 msgid "Service type for the @command{pcscd} service. Its value must be a @code{pcscd-configuration} object. To run pcscd in the default configuration, instantiate it as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33643 +#: guix-git/doc/guix.texi:34080 #, no-wrap msgid "(service pcscd-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33646 +#: guix-git/doc/guix.texi:34083 #, no-wrap msgid "{Data Type} pcscd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33648 +#: guix-git/doc/guix.texi:34085 msgid "The data type representing the configuration of @command{pcscd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33650 +#: guix-git/doc/guix.texi:34087 #, no-wrap msgid "@code{pcsc-lite} (default: @code{pcsc-lite})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33652 +#: guix-git/doc/guix.texi:34089 msgid "The pcsc-lite package that provides pcscd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33652 +#: guix-git/doc/guix.texi:34089 #, no-wrap msgid "@code{usb-drivers} (default: @code{(list ccid)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33655 +#: guix-git/doc/guix.texi:34092 msgid "List of packages that provide USB drivers to pcscd. Drivers are expected to be under @file{pcsc/drivers} in the store directory of the package." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33658 +#: guix-git/doc/guix.texi:34095 #, no-wrap msgid "lirc" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33659 +#: guix-git/doc/guix.texi:34096 #, no-wrap msgid "Lirc Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33662 +#: guix-git/doc/guix.texi:34099 msgid "The @code{(gnu services lirc)} module provides the following service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33663 +#: guix-git/doc/guix.texi:34100 #, no-wrap msgid "{Scheme Procedure} lirc-service [#:lirc lirc] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33668 +#: guix-git/doc/guix.texi:34105 msgid "[#:device #f] [#:driver #f] [#:config-file #f] @ [#:extra-options '()] Return a service that runs @url{http://www.lirc.org,LIRC}, a daemon that decodes infrared signals from remote controls." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33672 +#: guix-git/doc/guix.texi:34109 msgid "Optionally, @var{device}, @var{driver} and @var{config-file} (configuration file name) may be specified. See @command{lircd} manual for details." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33675 +#: guix-git/doc/guix.texi:34112 msgid "Finally, @var{extra-options} is a list of additional command-line options passed to @command{lircd}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33677 +#: guix-git/doc/guix.texi:34114 #, no-wrap msgid "spice" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33678 +#: guix-git/doc/guix.texi:34115 #, no-wrap msgid "Spice Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33681 +#: guix-git/doc/guix.texi:34118 msgid "The @code{(gnu services spice)} module provides the following service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33682 +#: guix-git/doc/guix.texi:34119 #, no-wrap msgid "{Scheme Procedure} spice-vdagent-service [#:spice-vdagent]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33686 +#: guix-git/doc/guix.texi:34123 msgid "Returns a service that runs @url{https://www.spice-space.org,VDAGENT}, a daemon that enables sharing the clipboard with a vm and setting the guest display resolution when the graphical console window resizes." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33688 +#: guix-git/doc/guix.texi:34125 #, no-wrap msgid "inputattach" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33689 +#: guix-git/doc/guix.texi:34126 #, no-wrap msgid "inputattach Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33691 +#: guix-git/doc/guix.texi:34128 #, no-wrap msgid "tablet input, for Xorg" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33692 +#: guix-git/doc/guix.texi:34129 #, no-wrap msgid "touchscreen input, for Xorg" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33696 +#: guix-git/doc/guix.texi:34133 msgid "The @uref{https://linuxwacom.github.io/, inputattach} service allows you to use input devices such as Wacom tablets, touchscreens, or joysticks with the Xorg display server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33697 +#: guix-git/doc/guix.texi:34134 #, no-wrap msgid "{Scheme Variable} inputattach-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33700 +#: guix-git/doc/guix.texi:34137 msgid "Type of a service that runs @command{inputattach} on a device and dispatches events from it." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33702 +#: guix-git/doc/guix.texi:34139 #, no-wrap msgid "{Data Type} inputattach-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33704 +#: guix-git/doc/guix.texi:34141 #, no-wrap msgid "@code{device-type} (default: @code{\"wacom\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33707 +#: guix-git/doc/guix.texi:34144 msgid "The type of device to connect to. Run @command{inputattach --help}, from the @code{inputattach} package, to see the list of supported device types." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33708 +#: guix-git/doc/guix.texi:34145 #, no-wrap msgid "@code{device} (default: @code{\"/dev/ttyS0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33710 +#: guix-git/doc/guix.texi:34147 msgid "The device file to connect to the device." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33714 +#: guix-git/doc/guix.texi:34151 msgid "Baud rate to use for the serial connection. Should be a number or @code{#f}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33715 +#: guix-git/doc/guix.texi:34152 #, no-wrap msgid "@code{log-file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33717 +#: guix-git/doc/guix.texi:34154 msgid "If true, this must be the name of a file to log messages to." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33720 +#: guix-git/doc/guix.texi:34157 #, no-wrap msgid "Dictionary Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33721 +#: guix-git/doc/guix.texi:34158 #, no-wrap msgid "dictionary" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33723 +#: guix-git/doc/guix.texi:34160 msgid "The @code{(gnu services dict)} module provides the following service:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33724 +#: guix-git/doc/guix.texi:34161 #, no-wrap msgid "{Scheme Variable} dicod-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33727 +#: guix-git/doc/guix.texi:34164 msgid "This is the type of the service that runs the @command{dicod} daemon, an implementation of DICT server (@pxref{Dicod,,, dico, GNU Dico Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33729 +#: guix-git/doc/guix.texi:34166 #, no-wrap msgid "{Scheme Procedure} dicod-service [#:config (dicod-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33732 +#: guix-git/doc/guix.texi:34169 msgid "Return a service that runs the @command{dicod} daemon, an implementation of DICT server (@pxref{Dicod,,, dico, GNU Dico Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33736 +#: guix-git/doc/guix.texi:34173 msgid "The optional @var{config} argument specifies the configuration for @command{dicod}, which should be a @code{} object, by default it serves the GNU Collaborative International Dictionary of English." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33740 +#: guix-git/doc/guix.texi:34177 msgid "You can add @command{open localhost} to your @file{~/.dico} file to make @code{localhost} the default server for @command{dico} client (@pxref{Initialization File,,, dico, GNU Dico Manual})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33742 +#: guix-git/doc/guix.texi:34179 #, no-wrap msgid "{Data Type} dicod-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33744 +#: guix-git/doc/guix.texi:34181 msgid "Data type representing the configuration of dicod." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33746 +#: guix-git/doc/guix.texi:34183 #, no-wrap msgid "@code{dico} (default: @var{dico})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33748 +#: guix-git/doc/guix.texi:34185 msgid "Package object of the GNU Dico dictionary server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33749 +#: guix-git/doc/guix.texi:34186 #, no-wrap msgid "@code{interfaces} (default: @var{'(\"localhost\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33753 +#: guix-git/doc/guix.texi:34190 msgid "This is the list of IP addresses and ports and possibly socket file names to listen to (@pxref{Server Settings, @code{listen} directive,, dico, GNU Dico Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33754 +#: guix-git/doc/guix.texi:34191 #, no-wrap msgid "@code{handlers} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33756 +#: guix-git/doc/guix.texi:34193 msgid "List of @code{} objects denoting handlers (module instances)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33757 +#: guix-git/doc/guix.texi:34194 #, no-wrap msgid "@code{databases} (default: @var{(list %dicod-database:gcide)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33759 +#: guix-git/doc/guix.texi:34196 msgid "List of @code{} objects denoting dictionaries to be served." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33762 +#: guix-git/doc/guix.texi:34199 #, no-wrap msgid "{Data Type} dicod-handler" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33764 +#: guix-git/doc/guix.texi:34201 msgid "Data type representing a dictionary handler (module instance)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33768 +#: guix-git/doc/guix.texi:34205 msgid "Name of the handler (module instance)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33769 +#: guix-git/doc/guix.texi:34206 #, no-wrap msgid "@code{module} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33773 +#: guix-git/doc/guix.texi:34210 msgid "Name of the dicod module of the handler (instance). If it is @code{#f}, the module has the same name as the handler. (@pxref{Modules,,, dico, GNU Dico Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33776 +#: guix-git/doc/guix.texi:34213 msgid "List of strings or gexps representing the arguments for the module handler" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33779 +#: guix-git/doc/guix.texi:34216 #, no-wrap msgid "{Data Type} dicod-database" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33781 +#: guix-git/doc/guix.texi:34218 msgid "Data type representing a dictionary database." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33785 +#: guix-git/doc/guix.texi:34222 msgid "Name of the database, will be used in DICT commands." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33786 +#: guix-git/doc/guix.texi:34223 #, no-wrap msgid "handler" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33789 +#: guix-git/doc/guix.texi:34226 msgid "Name of the dicod handler (module instance) used by this database (@pxref{Handlers,,, dico, GNU Dico Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33790 +#: guix-git/doc/guix.texi:34227 #, no-wrap msgid "@code{complex?} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33793 +#: guix-git/doc/guix.texi:34230 msgid "Whether the database configuration complex. The complex configuration will need a corresponding @code{} object, otherwise not." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33797 +#: guix-git/doc/guix.texi:34234 msgid "List of strings or gexps representing the arguments for the database (@pxref{Databases,,, dico, GNU Dico Manual})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33800 +#: guix-git/doc/guix.texi:34237 #, no-wrap msgid "{Scheme Variable} %dicod-database:gcide" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33803 +#: guix-git/doc/guix.texi:34240 msgid "A @code{} object serving the GNU Collaborative International Dictionary of English using the @code{gcide} package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33806 +#: guix-git/doc/guix.texi:34243 msgid "The following is an example @code{dicod-service} configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33821 +#: guix-git/doc/guix.texi:34258 #, no-wrap msgid "" "(dicod-service #:config\n" @@ -60420,139 +61228,139 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33823 +#: guix-git/doc/guix.texi:34260 #, no-wrap msgid "Docker" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33824 +#: guix-git/doc/guix.texi:34261 #, no-wrap msgid "Docker Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33827 +#: guix-git/doc/guix.texi:34264 msgid "The @code{(gnu services docker)} module provides the following services." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33828 +#: guix-git/doc/guix.texi:34265 #, no-wrap msgid "{Scheme Variable} docker-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33833 +#: guix-git/doc/guix.texi:34270 msgid "This is the type of the service that runs @url{https://www.docker.com,Docker}, a daemon that can execute application bundles (sometimes referred to as ``containers'') in isolated environments." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33836 +#: guix-git/doc/guix.texi:34273 #, no-wrap msgid "{Data Type} docker-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33838 +#: guix-git/doc/guix.texi:34275 msgid "This is the data type representing the configuration of Docker and Containerd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33841 +#: guix-git/doc/guix.texi:34278 #, no-wrap msgid "@code{docker} (default: @code{docker})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33843 +#: guix-git/doc/guix.texi:34280 msgid "The Docker daemon package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33844 +#: guix-git/doc/guix.texi:34281 #, no-wrap msgid "@code{docker-cli} (default: @code{docker-cli})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33846 +#: guix-git/doc/guix.texi:34283 msgid "The Docker client package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33847 +#: guix-git/doc/guix.texi:34284 #, no-wrap msgid "@code{containerd} (default: @var{containerd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33849 +#: guix-git/doc/guix.texi:34286 msgid "The Containerd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33850 +#: guix-git/doc/guix.texi:34287 #, no-wrap msgid "@code{proxy} (default @var{docker-libnetwork-cmd-proxy})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33852 +#: guix-git/doc/guix.texi:34289 msgid "The Docker user-land networking proxy package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33853 +#: guix-git/doc/guix.texi:34290 #, no-wrap msgid "@code{enable-proxy?} (default @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33855 +#: guix-git/doc/guix.texi:34292 msgid "Enable or disable the use of the Docker user-land networking proxy." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33856 +#: guix-git/doc/guix.texi:34293 #, no-wrap msgid "@code{debug?} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33858 +#: guix-git/doc/guix.texi:34295 msgid "Enable or disable debug output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33859 +#: guix-git/doc/guix.texi:34296 #, no-wrap msgid "@code{enable-iptables?} (default @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33861 +#: guix-git/doc/guix.texi:34298 msgid "Enable or disable the addition of iptables rules." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33862 +#: guix-git/doc/guix.texi:34299 #, no-wrap msgid "@code{environment-variables} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33864 +#: guix-git/doc/guix.texi:34301 msgid "List of environment variables to set for @command{dockerd}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33867 +#: guix-git/doc/guix.texi:34304 msgid "This must be a list of strings where each string has the form @samp{@var{key}=@var{value}} as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33871 +#: guix-git/doc/guix.texi:34308 #, no-wrap msgid "" "(list \"LANGUAGE=eo:ca:eu\"\n" @@ -60560,196 +61368,196 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33876 +#: guix-git/doc/guix.texi:34313 #, no-wrap msgid "Singularity, container service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33877 +#: guix-git/doc/guix.texi:34314 #, no-wrap msgid "{Scheme Variable} singularity-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33882 +#: guix-git/doc/guix.texi:34319 msgid "This is the type of the service that allows you to run @url{https://www.sylabs.io/singularity/, Singularity}, a Docker-style tool to create and run application bundles (aka. ``containers''). The value for this service is the Singularity package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33886 +#: guix-git/doc/guix.texi:34323 msgid "The service does not install a daemon; instead, it installs helper programs as setuid-root (@pxref{Setuid Programs}) such that unprivileged users can invoke @command{singularity run} and similar commands." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33888 +#: guix-git/doc/guix.texi:34325 #, no-wrap msgid "Audit" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33889 +#: guix-git/doc/guix.texi:34326 #, no-wrap msgid "Auditd Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33892 +#: guix-git/doc/guix.texi:34329 msgid "The @code{(gnu services auditd)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33893 +#: guix-git/doc/guix.texi:34330 #, no-wrap msgid "{Scheme Variable} auditd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33898 +#: guix-git/doc/guix.texi:34335 msgid "This is the type of the service that runs @url{https://people.redhat.com/sgrubb/audit/,auditd}, a daemon that tracks security-relevant information on your system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33900 +#: guix-git/doc/guix.texi:34337 msgid "Examples of things that can be tracked:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33904 +#: guix-git/doc/guix.texi:34341 msgid "File accesses" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33906 +#: guix-git/doc/guix.texi:34343 msgid "System calls" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33908 +#: guix-git/doc/guix.texi:34345 msgid "Invoked commands" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33910 +#: guix-git/doc/guix.texi:34347 msgid "Failed login attempts" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33912 +#: guix-git/doc/guix.texi:34349 msgid "Firewall filtering" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33914 +#: guix-git/doc/guix.texi:34351 msgid "Network access" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33925 +#: guix-git/doc/guix.texi:34362 msgid "@command{auditctl} from the @code{audit} package can be used in order to add or remove events to be tracked (until the next reboot). In order to permanently track events, put the command line arguments of auditctl into a file called @code{audit.rules} in the configuration directory (see below). @command{aureport} from the @code{audit} package can be used in order to view a report of all recorded events. The audit daemon by default logs into the file @file{/var/log/audit.log}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33928 +#: guix-git/doc/guix.texi:34365 #, no-wrap msgid "{Data Type} auditd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33930 +#: guix-git/doc/guix.texi:34367 msgid "This is the data type representing the configuration of auditd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33933 +#: guix-git/doc/guix.texi:34370 #, no-wrap msgid "@code{audit} (default: @code{audit})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33935 +#: guix-git/doc/guix.texi:34372 msgid "The audit package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33936 +#: guix-git/doc/guix.texi:34373 #, no-wrap msgid "@code{configuration-directory} (default: @code{%default-auditd-configuration-directory})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33940 +#: guix-git/doc/guix.texi:34377 msgid "The directory containing the configuration file for the audit package, which must be named @code{auditd.conf}, and optionally some audit rules to instantiate on startup." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33944 +#: guix-git/doc/guix.texi:34381 #, no-wrap msgid "rshiny" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33945 +#: guix-git/doc/guix.texi:34382 #, no-wrap msgid "R-Shiny service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33948 +#: guix-git/doc/guix.texi:34385 msgid "The @code{(gnu services science)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33949 +#: guix-git/doc/guix.texi:34386 #, no-wrap msgid "{Scheme Variable} rshiny-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33954 +#: guix-git/doc/guix.texi:34391 msgid "This is a type of service which is used to run a webapp created with @code{r-shiny}. This service sets the @env{R_LIBS_USER} environment variable and runs the provided script to call @code{runApp}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33955 +#: guix-git/doc/guix.texi:34392 #, no-wrap msgid "{Data Type} rshiny-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33957 +#: guix-git/doc/guix.texi:34394 msgid "This is the data type representing the configuration of rshiny." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33960 +#: guix-git/doc/guix.texi:34397 #, no-wrap msgid "@code{package} (default: @code{r-shiny})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33962 +#: guix-git/doc/guix.texi:34399 msgid "The package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33963 +#: guix-git/doc/guix.texi:34400 #, no-wrap msgid "@code{binary} (defaunlt @code{\"rshiny\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33966 +#: guix-git/doc/guix.texi:34403 msgid "The name of the binary or shell script located at @code{package/bin/} to run when the service is run." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33968 +#: guix-git/doc/guix.texi:34405 msgid "The common way to create this file is as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33985 +#: guix-git/doc/guix.texi:34422 #, no-wrap msgid "" "@dots{}\n" @@ -60770,35 +61578,35 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33991 +#: guix-git/doc/guix.texi:34428 #, no-wrap msgid "Nix" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33992 +#: guix-git/doc/guix.texi:34429 #, no-wrap msgid "Nix service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33995 +#: guix-git/doc/guix.texi:34432 msgid "The @code{(gnu services nix)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33996 +#: guix-git/doc/guix.texi:34433 #, no-wrap msgid "{Scheme Variable} nix-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34001 +#: guix-git/doc/guix.texi:34438 msgid "This is the type of the service that runs build daemon of the @url{https://nixos.org/nix/, Nix} package manager. Here is an example showing how to use it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34006 +#: guix-git/doc/guix.texi:34443 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -60808,7 +61616,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34011 +#: guix-git/doc/guix.texi:34448 #, no-wrap msgid "" "(operating-system\n" @@ -60819,7 +61627,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34014 +#: guix-git/doc/guix.texi:34451 #, no-wrap msgid "" " (services (append (list (service nix-service-type))\n" @@ -60827,29 +61635,29 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34017 +#: guix-git/doc/guix.texi:34454 msgid "After @command{guix system reconfigure} configure Nix for your user:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34019 +#: guix-git/doc/guix.texi:34456 #, no-wrap msgid "Add a Nix channel and update it. See" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:34021 +#: guix-git/doc/guix.texi:34458 msgid "@url{https://nixos.org/nix/manual/, Nix Package Manager Guide}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34022 +#: guix-git/doc/guix.texi:34459 #, no-wrap msgid "Create a symlink to your profile and activate Nix profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34028 +#: guix-git/doc/guix.texi:34465 #, no-wrap msgid "" "$ ln -s \"/nix/var/nix/profiles/per-user/$USER/profile\" ~/.nix-profile\n" @@ -60857,77 +61665,77 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34032 +#: guix-git/doc/guix.texi:34469 #, no-wrap msgid "{Data Type} nix-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34034 +#: guix-git/doc/guix.texi:34471 msgid "This data type represents the configuration of the Nix daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34036 +#: guix-git/doc/guix.texi:34473 #, no-wrap msgid "@code{nix} (default: @code{nix})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34038 +#: guix-git/doc/guix.texi:34475 msgid "The Nix package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34039 +#: guix-git/doc/guix.texi:34476 #, no-wrap msgid "@code{sandbox} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34041 +#: guix-git/doc/guix.texi:34478 msgid "Specifies whether builds are sandboxed by default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34042 +#: guix-git/doc/guix.texi:34479 #, no-wrap msgid "@code{build-sandbox-items} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34045 +#: guix-git/doc/guix.texi:34482 msgid "This is a list of strings or objects appended to the @code{build-sandbox-items} field of the configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34053 +#: guix-git/doc/guix.texi:34490 msgid "Extra command line options for @code{nix-service-type}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34059 +#: guix-git/doc/guix.texi:34496 #, no-wrap msgid "setuid programs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34069 +#: guix-git/doc/guix.texi:34506 msgid "Some programs need to run with ``root'' privileges, even when they are launched by unprivileged users. A notorious example is the @command{passwd} program, which users can run to change their password, and which needs to access the @file{/etc/passwd} and @file{/etc/shadow} files---something normally restricted to root, for obvious security reasons. To address that, these executables are @dfn{setuid-root}, meaning that they always run with root privileges (@pxref{How Change Persona,,, libc, The GNU C Library Reference Manual}, for more info about the setuid mechanism)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34076 +#: guix-git/doc/guix.texi:34513 msgid "The store itself @emph{cannot} contain setuid programs: that would be a security issue since any user on the system can write derivations that populate the store (@pxref{The Store}). Thus, a different mechanism is used: instead of changing the setuid bit directly on files that are in the store, we let the system administrator @emph{declare} which programs should be setuid root." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34083 +#: guix-git/doc/guix.texi:34520 msgid "The @code{setuid-programs} field of an @code{operating-system} declaration contains a list of @code{} denoting the names of programs to have a setuid or setgid bit set (@pxref{Using the Configuration System}). For instance, the @command{mount.nfs} program, which is part of the nfs-utils package, with a setuid root can be designated like this:" msgstr "" -#. type: example -#: guix-git/doc/guix.texi:34087 +#. type: lisp +#: guix-git/doc/guix.texi:34524 #, no-wrap msgid "" "(setuid-program\n" @@ -60935,162 +61743,164 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34092 +#: guix-git/doc/guix.texi:34529 msgid "And then, to make @command{mount.nfs} setuid on your system, add the previous example to your operating system declaration by appending it to @code{%setuid-programs} like this:" msgstr "" -#. type: example -#: guix-git/doc/guix.texi:34098 +#. type: lisp +#: guix-git/doc/guix.texi:34537 #, no-wrap msgid "" -"(setuid-programs\n" -" (append (list (setuid-program\n" -" (program (file-append nfs-utils \"/sbin/mount.nfs\"))))\n" -" %setuid-programs))\n" +"(operating-system\n" +" ;; Some fields omitted...\n" +" (setuid-programs\n" +" (append (list (setuid-program\n" +" (program (file-append nfs-utils \"/sbin/mount.nfs\")))\n" +" %setuid-programs))))\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34100 +#: guix-git/doc/guix.texi:34539 #, no-wrap msgid "{Data Type} setuid-program" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34102 +#: guix-git/doc/guix.texi:34541 msgid "This data type represents a program with a setuid or setgid bit set." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:34104 +#: guix-git/doc/guix.texi:34543 #, no-wrap msgid "program" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34106 +#: guix-git/doc/guix.texi:34545 msgid "A file-like object having its setuid and/or setgid bit set." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34107 +#: guix-git/doc/guix.texi:34546 #, no-wrap msgid "@code{setuid?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34109 +#: guix-git/doc/guix.texi:34548 msgid "Whether to set user setuid bit." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34110 +#: guix-git/doc/guix.texi:34549 #, no-wrap msgid "@code{setgid?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34112 +#: guix-git/doc/guix.texi:34551 msgid "Whether to set group setgid bit." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34113 +#: guix-git/doc/guix.texi:34552 #, no-wrap msgid "@code{user} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34116 +#: guix-git/doc/guix.texi:34555 msgid "UID (integer) or user name (string) for the user owner of the program, defaults to root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34117 +#: guix-git/doc/guix.texi:34556 #, no-wrap msgid "@code{group} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34120 +#: guix-git/doc/guix.texi:34559 msgid "GID (integer) goup name (string) for the group owner of the program, defaults to root." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34126 +#: guix-git/doc/guix.texi:34565 msgid "A default set of setuid programs is defined by the @code{%setuid-programs} variable of the @code{(gnu system)} module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34127 +#: guix-git/doc/guix.texi:34566 #, no-wrap msgid "{Scheme Variable} %setuid-programs" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34130 +#: guix-git/doc/guix.texi:34569 msgid "A list of @code{} denoting common programs that are setuid-root." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34133 +#: guix-git/doc/guix.texi:34572 msgid "The list includes commands such as @command{passwd}, @command{ping}, @command{su}, and @command{sudo}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34139 +#: guix-git/doc/guix.texi:34578 msgid "Under the hood, the actual setuid programs are created in the @file{/run/setuid-programs} directory at system activation time. The files in this directory refer to the ``real'' binaries, which are in the store." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34143 +#: guix-git/doc/guix.texi:34582 #, no-wrap msgid "HTTPS, certificates" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34144 +#: guix-git/doc/guix.texi:34583 #, no-wrap msgid "X.509 certificates" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34145 +#: guix-git/doc/guix.texi:34584 #, no-wrap msgid "TLS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34152 +#: guix-git/doc/guix.texi:34591 msgid "Web servers available over HTTPS (that is, HTTP over the transport-layer security mechanism, TLS) send client programs an @dfn{X.509 certificate} that the client can then use to @emph{authenticate} the server. To do that, clients verify that the server's certificate is signed by a so-called @dfn{certificate authority} (CA). But to verify the CA's signature, clients must have first acquired the CA's certificate." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34156 +#: guix-git/doc/guix.texi:34595 msgid "Web browsers such as GNU@tie{}IceCat include their own set of CA certificates, such that they are able to verify CA signatures out-of-the-box." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34160 +#: guix-git/doc/guix.texi:34599 msgid "However, most other programs that can talk HTTPS---@command{wget}, @command{git}, @command{w3m}, etc.---need to be told where CA certificates can be found." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34167 +#: guix-git/doc/guix.texi:34606 msgid "In Guix, this is done by adding a package that provides certificates to the @code{packages} field of the @code{operating-system} declaration (@pxref{operating-system Reference}). Guix includes one such package, @code{nss-certs}, which is a set of CA certificates provided as part of Mozilla's Network Security Services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34172 +#: guix-git/doc/guix.texi:34611 msgid "Note that it is @emph{not} part of @code{%base-packages}, so you need to explicitly add it. The @file{/etc/ssl/certs} directory, which is where most applications and libraries look for certificates by default, points to the certificates installed globally." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34182 +#: guix-git/doc/guix.texi:34621 msgid "Unprivileged users, including users of Guix on a foreign distro, can also install their own certificate package in their profile. A number of environment variables need to be defined so that applications and libraries know where to find them. Namely, the OpenSSL library honors the @env{SSL_CERT_DIR} and @env{SSL_CERT_FILE} variables. Some applications add their own environment variables; for instance, the Git version control system honors the certificate bundle pointed to by the @env{GIT_SSL_CAINFO} environment variable. Thus, you would typically run something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34188 +#: guix-git/doc/guix.texi:34627 #, no-wrap msgid "" "guix install nss-certs\n" @@ -61100,12 +61910,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34193 +#: guix-git/doc/guix.texi:34632 msgid "As another example, R requires the @env{CURL_CA_BUNDLE} environment variable to point to a certificate bundle, so you would have to run something like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34197 +#: guix-git/doc/guix.texi:34636 #, no-wrap msgid "" "guix install nss-certs\n" @@ -61113,51 +61923,51 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34201 +#: guix-git/doc/guix.texi:34640 msgid "For other applications you may want to look up the required environment variable in the relevant documentation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34206 +#: guix-git/doc/guix.texi:34645 #, no-wrap msgid "name service switch" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34207 +#: guix-git/doc/guix.texi:34646 #, no-wrap msgid "NSS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34216 +#: guix-git/doc/guix.texi:34655 msgid "The @code{(gnu system nss)} module provides bindings to the configuration file of the libc @dfn{name service switch} or @dfn{NSS} (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference Manual}). In a nutshell, the NSS is a mechanism that allows libc to be extended with new ``name'' lookup methods for system databases, which includes host names, service names, user accounts, and more (@pxref{Name Service Switch, System Databases and Name Service Switch,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34223 +#: guix-git/doc/guix.texi:34662 msgid "The NSS configuration specifies, for each system database, which lookup method is to be used, and how the various methods are chained together---for instance, under which circumstances NSS should try the next method in the list. The NSS configuration is given in the @code{name-service-switch} field of @code{operating-system} declarations (@pxref{operating-system Reference, @code{name-service-switch}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34224 +#: guix-git/doc/guix.texi:34663 #, no-wrap msgid "nss-mdns" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34225 +#: guix-git/doc/guix.texi:34664 #, no-wrap msgid ".local, host name lookup" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34230 +#: guix-git/doc/guix.texi:34669 msgid "As an example, the declaration below configures the NSS to use the @uref{https://0pointer.de/lennart/projects/nss-mdns/, @code{nss-mdns} back-end}, which supports host name lookups over multicast DNS (mDNS) for host names ending in @code{.local}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34234 +#: guix-git/doc/guix.texi:34673 #, no-wrap msgid "" "(name-service-switch\n" @@ -61166,7 +61976,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34239 +#: guix-git/doc/guix.texi:34678 #, no-wrap msgid "" " ;; If the above did not succeed, try\n" @@ -61177,7 +61987,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34245 +#: guix-git/doc/guix.texi:34684 #, no-wrap msgid "" " ;; 'mdns_minimal' is authoritative for\n" @@ -61189,7 +61999,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34249 +#: guix-git/doc/guix.texi:34688 #, no-wrap msgid "" " ;; Then fall back to DNS.\n" @@ -61199,7 +62009,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34253 +#: guix-git/doc/guix.texi:34692 #, no-wrap msgid "" " ;; Finally, try with the \"full\" 'mdns'.\n" @@ -61208,151 +62018,151 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34258 +#: guix-git/doc/guix.texi:34697 msgid "Do not worry: the @code{%mdns-host-lookup-nss} variable (see below) contains this configuration, so you will not have to type it if all you want is to have @code{.local} host lookup working." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34266 +#: guix-git/doc/guix.texi:34705 msgid "Note that, in this case, in addition to setting the @code{name-service-switch} of the @code{operating-system} declaration, you also need to use @code{avahi-service-type} (@pxref{Networking Services, @code{avahi-service-type}}), or @code{%desktop-services}, which includes it (@pxref{Desktop Services}). Doing this makes @code{nss-mdns} accessible to the name service cache daemon (@pxref{Base Services, @code{nscd-service}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34269 +#: guix-git/doc/guix.texi:34708 msgid "For convenience, the following variables provide typical NSS configurations." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34270 +#: guix-git/doc/guix.texi:34709 #, no-wrap msgid "{Scheme Variable} %default-nss" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34273 +#: guix-git/doc/guix.texi:34712 msgid "This is the default name service switch configuration, a @code{name-service-switch} object." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34275 +#: guix-git/doc/guix.texi:34714 #, no-wrap msgid "{Scheme Variable} %mdns-host-lookup-nss" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34278 +#: guix-git/doc/guix.texi:34717 msgid "This is the name service switch configuration with support for host name lookup over multicast DNS (mDNS) for host names ending in @code{.local}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34288 +#: guix-git/doc/guix.texi:34727 msgid "The reference for name service switch configuration is given below. It is a direct mapping of the configuration file format of the C library , so please refer to the C library manual for more information (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference Manual}). Compared to the configuration file format of libc NSS, it has the advantage not only of adding this warm parenthetic feel that we like, but also static checks: you will know about syntax errors and typos as soon as you run @command{guix system}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34289 +#: guix-git/doc/guix.texi:34728 #, no-wrap msgid "{Data Type} name-service-switch" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34294 +#: guix-git/doc/guix.texi:34733 msgid "This is the data type representation the configuration of libc's name service switch (NSS). Each field below represents one of the supported system databases." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34296 +#: guix-git/doc/guix.texi:34735 #, no-wrap msgid "aliases" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34297 +#: guix-git/doc/guix.texi:34736 #, no-wrap msgid "ethers" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34299 +#: guix-git/doc/guix.texi:34738 #, no-wrap msgid "gshadow" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34300 +#: guix-git/doc/guix.texi:34739 #, no-wrap msgid "hosts" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34301 +#: guix-git/doc/guix.texi:34740 #, no-wrap msgid "initgroups" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34302 +#: guix-git/doc/guix.texi:34741 #, no-wrap msgid "netgroup" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34303 +#: guix-git/doc/guix.texi:34742 #, no-wrap msgid "networks" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34306 +#: guix-git/doc/guix.texi:34745 #, no-wrap msgid "rpc" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34308 +#: guix-git/doc/guix.texi:34747 #, no-wrap msgid "shadow" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34311 +#: guix-git/doc/guix.texi:34750 msgid "The system databases handled by the NSS@. Each of these fields must be a list of @code{} objects (see below)." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34314 +#: guix-git/doc/guix.texi:34753 #, no-wrap msgid "{Data Type} name-service" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34318 +#: guix-git/doc/guix.texi:34757 msgid "This is the data type representing an actual name service and the associated lookup action." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34323 +#: guix-git/doc/guix.texi:34762 msgid "A string denoting the name service (@pxref{Services in the NSS configuration,,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34328 +#: guix-git/doc/guix.texi:34767 msgid "Note that name services listed here must be visible to nscd. This is achieved by passing the @code{#:name-services} argument to @code{nscd-service} the list of packages providing the needed name services (@pxref{Base Services, @code{nscd-service}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34329 +#: guix-git/doc/guix.texi:34768 #, no-wrap msgid "reaction" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34333 +#: guix-git/doc/guix.texi:34772 msgid "An action specified using the @code{lookup-specification} macro (@pxref{Actions in the NSS configuration,,, libc, The GNU C Library Reference Manual}). For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34337 +#: guix-git/doc/guix.texi:34776 #, no-wrap msgid "" "(lookup-specification (unavailable => continue)\n" @@ -61360,17 +62170,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34351 +#: guix-git/doc/guix.texi:34790 msgid "For bootstrapping purposes, the Linux-Libre kernel is passed an @dfn{initial RAM disk}, or @dfn{initrd}. An initrd contains a temporary root file system as well as an initialization script. The latter is responsible for mounting the real root file system, and for loading any kernel modules that may be needed to achieve that." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34360 +#: guix-git/doc/guix.texi:34799 msgid "The @code{initrd-modules} field of an @code{operating-system} declaration allows you to specify Linux-libre kernel modules that must be available in the initrd. In particular, this is where you would list modules needed to actually drive the hard disk where your root partition is---although the default value of @code{initrd-modules} should cover most use cases. For example, assuming you need the @code{megaraid_sas} module in addition to the default modules to be able to access your root file system, you would write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34365 +#: guix-git/doc/guix.texi:34804 #, no-wrap msgid "" "(operating-system\n" @@ -61379,28 +62189,28 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34367 +#: guix-git/doc/guix.texi:34806 #, no-wrap msgid "{Scheme Variable} %base-initrd-modules" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34369 +#: guix-git/doc/guix.texi:34808 msgid "This is the list of kernel modules included in the initrd by default." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34377 +#: guix-git/doc/guix.texi:34816 msgid "Furthermore, if you need lower-level customization, the @code{initrd} field of an @code{operating-system} declaration allows you to specify which initrd you would like to use. The @code{(gnu system linux-initrd)} module provides three ways to build an initrd: the high-level @code{base-initrd} procedure and the low-level @code{raw-initrd} and @code{expression->initrd} procedures." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34382 +#: guix-git/doc/guix.texi:34821 msgid "The @code{base-initrd} procedure is intended to cover most common uses. For example, if you want to add a bunch of kernel modules to be loaded at boot time, you can define the @code{initrd} field of the operating system declaration like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34390 +#: guix-git/doc/guix.texi:34829 #, no-wrap msgid "" "(initrd (lambda (file-systems . rest)\n" @@ -61412,447 +62222,447 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34395 +#: guix-git/doc/guix.texi:34834 msgid "The @code{base-initrd} procedure also handles common use cases that involves using the system as a QEMU guest, or as a ``live'' system with volatile root file system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34402 +#: guix-git/doc/guix.texi:34841 msgid "The @code{base-initrd} procedure is built from @code{raw-initrd} procedure. Unlike @code{base-initrd}, @code{raw-initrd} doesn't do anything high-level, such as trying to guess which kernel modules and packages should be included to the initrd. An example use of @code{raw-initrd} is when a user has a custom Linux kernel configuration and default kernel modules included by @code{base-initrd} are not available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34407 +#: guix-git/doc/guix.texi:34846 msgid "The initial RAM disk produced by @code{base-initrd} or @code{raw-initrd} honors several options passed on the Linux kernel command line (that is, arguments passed @i{via} the @code{linux} command of GRUB, or the @code{-append} option of QEMU), notably:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34409 +#: guix-git/doc/guix.texi:34848 #, no-wrap msgid "--load=@var{boot}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34412 +#: guix-git/doc/guix.texi:34851 msgid "Tell the initial RAM disk to load @var{boot}, a file containing a Scheme program, once it has mounted the root file system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34416 +#: guix-git/doc/guix.texi:34855 msgid "Guix uses this option to yield control to a boot program that runs the service activation programs and then spawns the GNU@tie{}Shepherd, the initialization system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34417 +#: guix-git/doc/guix.texi:34856 #, no-wrap msgid "--root=@var{root}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34422 +#: guix-git/doc/guix.texi:34861 msgid "Mount @var{root} as the root file system. @var{root} can be a device name like @code{/dev/sda1}, a file system label, or a file system UUID. When unspecified, the device name from the root file system of the operating system declaration is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34423 +#: guix-git/doc/guix.texi:34862 #, no-wrap msgid "fsck.mode=@var{mode}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34429 +#: guix-git/doc/guix.texi:34868 msgid "Whether to check the @var{root} file system for errors before mounting it. @var{mode} is one of @code{skip} (never check), @code{force} (always check), or @code{auto} to respect the root file-system object's 'check?' setting (@pxref{File Systems}) and run a full scan only if the file system was not cleanly shut down." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34432 +#: guix-git/doc/guix.texi:34871 msgid "@code{auto} is the default if this option is not present or if @var{mode} is not one of the above." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34433 +#: guix-git/doc/guix.texi:34872 #, no-wrap msgid "fsck.repair=@var{level}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34438 +#: guix-git/doc/guix.texi:34877 msgid "The level of repairs to perform automatically if errors are found in the @var{root} file system. @var{level} is one of @code{no} (do not write to @var{root} at all if possible), @code{yes} (repair as much as possible), or @code{preen} to repair problems considered safe to repair automatically." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34441 +#: guix-git/doc/guix.texi:34880 msgid "@code{preen} is the default if this option is not present or if @var{level} is not one of the above." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34445 +#: guix-git/doc/guix.texi:34884 msgid "Have @file{/run/booted-system} and @file{/run/current-system} point to @var{system}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34446 +#: guix-git/doc/guix.texi:34885 #, no-wrap msgid "modprobe.blacklist=@var{modules}@dots{}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34447 +#: guix-git/doc/guix.texi:34886 #, no-wrap msgid "module, black-listing" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34448 +#: guix-git/doc/guix.texi:34887 #, no-wrap msgid "black list, of kernel modules" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34453 +#: guix-git/doc/guix.texi:34892 msgid "Instruct the initial RAM disk as well as the @command{modprobe} command (from the kmod package) to refuse to load @var{modules}. @var{modules} must be a comma-separated list of module names---e.g., @code{usbkbd,9pnet}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34454 +#: guix-git/doc/guix.texi:34893 #, no-wrap msgid "--repl" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34460 +#: guix-git/doc/guix.texi:34899 msgid "Start a read-eval-print loop (REPL) from the initial RAM disk before it tries to load kernel modules and to mount the root file system. Our marketing team calls it @dfn{boot-to-Guile}. The Schemer in you will love it. @xref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}, for more information on Guile's REPL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34466 +#: guix-git/doc/guix.texi:34905 msgid "Now that you know all the features that initial RAM disks produced by @code{base-initrd} and @code{raw-initrd} provide, here is how to use it and customize it further." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34469 +#: guix-git/doc/guix.texi:34908 #, no-wrap msgid "{Scheme Procedure} raw-initrd @var{file-systems} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34483 +#: guix-git/doc/guix.texi:34922 msgid "[#:linux-modules '()] [#:mapped-devices '()] @ [#:keyboard-layout #f] @ [#:helper-packages '()] [#:qemu-networking? #f] [#:volatile-root? #f] Return a derivation that builds a raw initrd. @var{file-systems} is a list of file systems to be mounted by the initrd, possibly in addition to the root file system specified on the kernel command line via @option{--root}. @var{linux-modules} is a list of kernel modules to be loaded at boot time. @var{mapped-devices} is a list of device mappings to realize before @var{file-systems} are mounted (@pxref{Mapped Devices}). @var{helper-packages} is a list of packages to be copied in the initrd. It may include @code{e2fsck/static} or other packages needed by the initrd to check the root file system." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34489 guix-git/doc/guix.texi:34513 +#: guix-git/doc/guix.texi:34928 guix-git/doc/guix.texi:34952 msgid "When true, @var{keyboard-layout} is a @code{} record denoting the desired console keyboard layout. This is done before @var{mapped-devices} are set up and before @var{file-systems} are mounted such that, should the user need to enter a passphrase or use the REPL, this happens using the intended keyboard layout." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34493 +#: guix-git/doc/guix.texi:34932 msgid "When @var{qemu-networking?} is true, set up networking with the standard QEMU parameters. When @var{virtio?} is true, load additional modules so that the initrd can be used as a QEMU guest with para-virtualized I/O drivers." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34496 +#: guix-git/doc/guix.texi:34935 msgid "When @var{volatile-root?} is true, the root file system is writable but any changes to it are lost." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34498 +#: guix-git/doc/guix.texi:34937 #, no-wrap msgid "{Scheme Procedure} base-initrd @var{file-systems} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34507 +#: guix-git/doc/guix.texi:34946 msgid "[#:mapped-devices '()] [#:keyboard-layout #f] @ [#:qemu-networking? #f] [#:volatile-root? #f] @ [#:linux-modules '()] Return as a file-like object a generic initrd, with kernel modules taken from @var{linux}. @var{file-systems} is a list of file-systems to be mounted by the initrd, possibly in addition to the root file system specified on the kernel command line via @option{--root}. @var{mapped-devices} is a list of device mappings to realize before @var{file-systems} are mounted." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34515 +#: guix-git/doc/guix.texi:34954 msgid "@var{qemu-networking?} and @var{volatile-root?} behaves as in @code{raw-initrd}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34520 +#: guix-git/doc/guix.texi:34959 msgid "The initrd is automatically populated with all the kernel modules necessary for @var{file-systems} and for the given options. Additional kernel modules can be listed in @var{linux-modules}. They will be added to the initrd, and loaded at boot time in the order in which they appear." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34527 +#: guix-git/doc/guix.texi:34966 msgid "Needless to say, the initrds we produce and use embed a statically-linked Guile, and the initialization program is a Guile program. That gives a lot of flexibility. The @code{expression->initrd} procedure builds such an initrd, given the program to run in that initrd." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34528 +#: guix-git/doc/guix.texi:34967 #, no-wrap msgid "{Scheme Procedure} expression->initrd @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34534 +#: guix-git/doc/guix.texi:34973 msgid "[#:guile %guile-static-stripped] [#:name \"guile-initrd\"] Return as a file-like object a Linux initrd (a gzipped cpio archive) containing @var{guile} and that evaluates @var{exp}, a G-expression, upon booting. All the derivations referenced by @var{exp} are automatically copied to the initrd." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34540 +#: guix-git/doc/guix.texi:34979 #, no-wrap msgid "boot loader" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34547 +#: guix-git/doc/guix.texi:34986 msgid "The operating system supports multiple bootloaders. The bootloader is configured using @code{bootloader-configuration} declaration. All the fields of this structure are bootloader agnostic except for one field, @code{bootloader} that indicates the bootloader to be configured and installed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34552 +#: guix-git/doc/guix.texi:34991 msgid "Some of the bootloaders do not honor every field of @code{bootloader-configuration}. For instance, the extlinux bootloader does not support themes and thus ignores the @code{theme} field." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34553 +#: guix-git/doc/guix.texi:34992 #, no-wrap msgid "{Data Type} bootloader-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34555 +#: guix-git/doc/guix.texi:34994 msgid "The type of a bootloader configuration declaration." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34559 +#: guix-git/doc/guix.texi:34998 #, no-wrap msgid "EFI, bootloader" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34560 +#: guix-git/doc/guix.texi:34999 #, no-wrap msgid "UEFI, bootloader" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34561 +#: guix-git/doc/guix.texi:35000 #, no-wrap msgid "BIOS, bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34566 +#: guix-git/doc/guix.texi:35005 msgid "The bootloader to use, as a @code{bootloader} object. For now @code{grub-bootloader}, @code{grub-efi-bootloader}, @code{grub-efi-netboot-bootloader}, @code{extlinux-bootloader} and @code{u-boot-bootloader} are supported." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34567 +#: guix-git/doc/guix.texi:35006 #, no-wrap msgid "ARM, bootloaders" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34568 +#: guix-git/doc/guix.texi:35007 #, no-wrap msgid "AArch64, bootloaders" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34573 +#: guix-git/doc/guix.texi:35012 msgid "Available bootloaders are described in @code{(gnu bootloader @dots{})} modules. In particular, @code{(gnu bootloader u-boot)} contains definitions of bootloaders for a wide range of ARM and AArch64 systems, using the @uref{https://www.denx.de/wiki/U-Boot/, U-Boot bootloader}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34579 +#: guix-git/doc/guix.texi:35018 msgid "@code{grub-efi-bootloader} allows to boot on modern systems using the @dfn{Unified Extensible Firmware Interface} (UEFI). This is what you should use if the installation image contains a @file{/sys/firmware/efi} directory when you boot it on your system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34583 +#: guix-git/doc/guix.texi:35022 msgid "@code{grub-bootloader} allows you to boot in particular Intel-based machines in ``legacy'' BIOS mode." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:34584 +#: guix-git/doc/guix.texi:35023 #, no-wrap msgid "grub-efi-netboot-bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34588 +#: guix-git/doc/guix.texi:35027 msgid "@code{grub-efi-netboot-bootloader} allows you to boot your system over network through TFTP@. In combination with an NFS root file system this allows you to build a diskless Guix system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34594 +#: guix-git/doc/guix.texi:35033 msgid "The installation of the @code{grub-efi-netboot-bootloader} generates the content of the TFTP root directory at @code{targets} (@pxref{Bootloader Configuration, @code{targets}}), to be served by a TFTP server. You may want to mount your TFTP server directories onto the @code{targets} to move the required files to the TFTP server automatically." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34603 +#: guix-git/doc/guix.texi:35042 msgid "If you plan to use an NFS root file system as well (actually if you mount the store from an NFS share), then the TFTP server needs to serve the file @file{/boot/grub/grub.cfg} and other files from the store (like GRUBs background image, the kernel (@pxref{operating-system Reference, @code{kernel}}) and the initrd (@pxref{operating-system Reference, @code{initrd}})), too. All these files from the store will be accessed by GRUB through TFTP with their normal store path, for example as @file{tftp://tftp-server/gnu/store/…-initrd/initrd.cpio.gz}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34612 +#: guix-git/doc/guix.texi:35051 msgid "Two symlinks are created to make this possible. For each target in the @code{targets} field, the first symlink is @samp{target}@file{/efi/Guix/boot/grub/grub.cfg} pointing to @file{../../../boot/grub/grub.cfg}, where @samp{target} may be @file{/boot}. In this case the link is not leaving the served TFTP root directory, but otherwise it does. The second link is @samp{target}@file{/gnu/store} and points to @file{../gnu/store}. This link is leaving the served TFTP root directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34618 +#: guix-git/doc/guix.texi:35057 msgid "The assumption behind all this is that you have an NFS server exporting the root file system for your Guix system, and additionally a TFTP server exporting your @code{targets} directories—usually a single @file{/boot}—from that same root file system for your Guix system. In this constellation the symlinks will work." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34623 +#: guix-git/doc/guix.texi:35062 msgid "For other constellations you will have to program your own bootloader installer, which then takes care to make necessary files from the store accessible through TFTP, for example by copying them into the TFTP root directory to your @code{targets}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34628 +#: guix-git/doc/guix.texi:35067 msgid "It is important to note that symlinks pointing outside the TFTP root directory may need to be allowed in the configuration of your TFTP server. Further the store link exposes the whole store through TFTP@. Both points need to be considered carefully for security aspects." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34633 +#: guix-git/doc/guix.texi:35072 msgid "Beside the @code{grub-efi-netboot-bootloader}, the already mentioned TFTP and NFS servers, you also need a properly configured DHCP server to make the booting over netboot possible. For all this we can currently only recommend you to look for instructions about @acronym{PXE, Preboot eXecution Environment}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34637 +#: guix-git/doc/guix.texi:35076 msgid "This is a list of strings denoting the targets onto which to install the bootloader." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34647 +#: guix-git/doc/guix.texi:35086 msgid "The interpretation of targets depends on the bootloader in question. For @code{grub-bootloader}, for example, they should be device names understood by the bootloader @command{installer} command, such as @code{/dev/sda} or @code{(hd0)} (@pxref{Invoking grub-install,,, grub, GNU GRUB Manual}). For @code{grub-efi-bootloader}, they should be mount points of the EFI file system, usually @file{/boot/efi}. For @code{grub-efi-netboot-bootloader}, @code{targets} should be the mount points corresponding to TFTP root directories served by your TFTP server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34648 +#: guix-git/doc/guix.texi:35087 #, no-wrap msgid "@code{menu-entries} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34652 +#: guix-git/doc/guix.texi:35091 msgid "A possibly empty list of @code{menu-entry} objects (see below), denoting entries to appear in the bootloader menu, in addition to the current system entry and the entry pointing to previous system generations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34653 +#: guix-git/doc/guix.texi:35092 #, no-wrap msgid "@code{default-entry} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34656 +#: guix-git/doc/guix.texi:35095 msgid "The index of the default boot menu entry. Index 0 is for the entry of the current system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34657 +#: guix-git/doc/guix.texi:35096 #, no-wrap msgid "@code{timeout} (default: @code{5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34660 +#: guix-git/doc/guix.texi:35099 msgid "The number of seconds to wait for keyboard input before booting. Set to 0 to boot immediately, and to -1 to wait indefinitely." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34661 +#: guix-git/doc/guix.texi:35100 #, no-wrap msgid "keyboard layout, for the bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34665 +#: guix-git/doc/guix.texi:35104 msgid "If this is @code{#f}, the bootloader's menu (if any) uses the default keyboard layout, usually US@tie{}English (``qwerty'')." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34668 +#: guix-git/doc/guix.texi:35107 msgid "Otherwise, this must be a @code{keyboard-layout} object (@pxref{Keyboard Layout})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:34672 +#: guix-git/doc/guix.texi:35111 msgid "This option is currently ignored by bootloaders other than @code{grub} and @code{grub-efi}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34674 +#: guix-git/doc/guix.texi:35113 #, no-wrap msgid "@code{theme} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34678 +#: guix-git/doc/guix.texi:35117 msgid "The bootloader theme object describing the theme to use. If no theme is provided, some bootloaders might use a default theme, that's true for GRUB." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34679 +#: guix-git/doc/guix.texi:35118 #, no-wrap msgid "@code{terminal-outputs} (default: @code{'(gfxterm)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34686 +#: guix-git/doc/guix.texi:35125 msgid "The output terminals used for the bootloader boot menu, as a list of symbols. GRUB accepts the values: @code{console}, @code{serial}, @code{serial_@{0-3@}}, @code{gfxterm}, @code{vga_text}, @code{mda_text}, @code{morse}, and @code{pkmodem}. This field corresponds to the GRUB variable @code{GRUB_TERMINAL_OUTPUT} (@pxref{Simple configuration,,, grub,GNU GRUB manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34687 +#: guix-git/doc/guix.texi:35126 #, no-wrap msgid "@code{terminal-inputs} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34695 +#: guix-git/doc/guix.texi:35134 msgid "The input terminals used for the bootloader boot menu, as a list of symbols. For GRUB, the default is the native platform terminal as determined at run-time. GRUB accepts the values: @code{console}, @code{serial}, @code{serial_@{0-3@}}, @code{at_keyboard}, and @code{usb_keyboard}. This field corresponds to the GRUB variable @code{GRUB_TERMINAL_INPUT} (@pxref{Simple configuration,,, grub,GNU GRUB manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34696 +#: guix-git/doc/guix.texi:35135 #, no-wrap msgid "@code{serial-unit} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34700 +#: guix-git/doc/guix.texi:35139 msgid "The serial unit used by the bootloader, as an integer from 0 to 3. For GRUB, it is chosen at run-time; currently GRUB chooses 0, which corresponds to COM1 (@pxref{Serial terminal,,, grub,GNU GRUB manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34701 +#: guix-git/doc/guix.texi:35140 #, no-wrap msgid "@code{serial-speed} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34705 +#: guix-git/doc/guix.texi:35144 msgid "The speed of the serial interface, as an integer. For GRUB, the default value is chosen at run-time; currently GRUB chooses 9600@tie{}bps (@pxref{Serial terminal,,, grub,GNU GRUB manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34709 +#: guix-git/doc/guix.texi:35148 #, no-wrap msgid "dual boot" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34710 +#: guix-git/doc/guix.texi:35149 #, no-wrap msgid "boot menu" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34716 +#: guix-git/doc/guix.texi:35155 msgid "Should you want to list additional boot menu entries @i{via} the @code{menu-entries} field above, you will need to create them with the @code{menu-entry} form. For example, imagine you want to be able to boot another distro (hard to imagine!), you can define a menu entry along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34723 +#: guix-git/doc/guix.texi:35162 #, no-wrap msgid "" "(menu-entry\n" @@ -61863,132 +62673,132 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34726 +#: guix-git/doc/guix.texi:35165 msgid "Details below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34727 +#: guix-git/doc/guix.texi:35166 #, no-wrap msgid "{Data Type} menu-entry" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34729 +#: guix-git/doc/guix.texi:35168 msgid "The type of an entry in the bootloader menu." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34734 +#: guix-git/doc/guix.texi:35173 msgid "The label to show in the menu---e.g., @code{\"GNU\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34735 +#: guix-git/doc/guix.texi:35174 #, no-wrap msgid "@code{linux} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34737 +#: guix-git/doc/guix.texi:35176 msgid "The Linux kernel image to boot, for example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34740 +#: guix-git/doc/guix.texi:35179 #, no-wrap msgid "(file-append linux-libre \"/bzImage\")\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34745 +#: guix-git/doc/guix.texi:35184 msgid "For GRUB, it is also possible to specify a device explicitly in the file path using GRUB's device naming convention (@pxref{Naming convention,,, grub, GNU GRUB manual}), for example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34748 +#: guix-git/doc/guix.texi:35187 #, no-wrap msgid "\"(hd0,msdos1)/boot/vmlinuz\"\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34752 +#: guix-git/doc/guix.texi:35191 msgid "If the device is specified explicitly as above, then the @code{device} field is ignored entirely." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34753 +#: guix-git/doc/guix.texi:35192 #, no-wrap msgid "@code{linux-arguments} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34756 +#: guix-git/doc/guix.texi:35195 msgid "The list of extra Linux kernel command-line arguments---e.g., @code{(\"console=ttyS0\")}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34757 +#: guix-git/doc/guix.texi:35196 #, no-wrap msgid "@code{initrd} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34760 +#: guix-git/doc/guix.texi:35199 msgid "A G-Expression or string denoting the file name of the initial RAM disk to use (@pxref{G-Expressions})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34764 +#: guix-git/doc/guix.texi:35203 msgid "The device where the kernel and initrd are to be found---i.e., for GRUB, @dfn{root} for this menu entry (@pxref{root,,, grub, GNU GRUB manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34770 +#: guix-git/doc/guix.texi:35209 msgid "This may be a file system label (a string), a file system UUID (a bytevector, @pxref{File Systems}), or @code{#f}, in which case the bootloader will search the device containing the file specified by the @code{linux} field (@pxref{search,,, grub, GNU GRUB manual}). It must @emph{not} be an OS device name such as @file{/dev/sda1}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34771 +#: guix-git/doc/guix.texi:35210 #, no-wrap msgid "@code{multiboot-kernel} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34775 +#: guix-git/doc/guix.texi:35214 msgid "The kernel to boot in Multiboot-mode (@pxref{multiboot,,, grub, GNU GRUB manual}). When this field is set, a Multiboot menu-entry is generated. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34778 +#: guix-git/doc/guix.texi:35217 #, no-wrap msgid "(file-append mach \"/boot/gnumach\")\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34780 +#: guix-git/doc/guix.texi:35219 #, no-wrap msgid "@code{multiboot-arguments} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34782 +#: guix-git/doc/guix.texi:35221 msgid "The list of extra command-line arguments for the multiboot-kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34783 +#: guix-git/doc/guix.texi:35222 #, no-wrap msgid "@code{multiboot-modules} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34785 +#: guix-git/doc/guix.texi:35224 msgid "The list of commands for loading Multiboot modules. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34791 +#: guix-git/doc/guix.texi:35230 #, no-wrap msgid "" "(list (list (file-append hurd \"/hurd/ext2fs.static\") \"ext2fs\"\n" @@ -61998,73 +62808,73 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34796 guix-git/doc/guix.texi:34855 +#: guix-git/doc/guix.texi:35235 guix-git/doc/guix.texi:35294 #, no-wrap msgid "HDPI" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34797 guix-git/doc/guix.texi:34856 +#: guix-git/doc/guix.texi:35236 guix-git/doc/guix.texi:35295 #, no-wrap msgid "HiDPI" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34798 guix-git/doc/guix.texi:34857 +#: guix-git/doc/guix.texi:35237 guix-git/doc/guix.texi:35296 #, no-wrap msgid "resolution" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34802 +#: guix-git/doc/guix.texi:35241 msgid "For now only GRUB has theme support. GRUB themes are created using the @code{grub-theme} form, which is not fully documented yet." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34803 +#: guix-git/doc/guix.texi:35242 #, no-wrap msgid "{Data Type} grub-theme" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34805 +#: guix-git/doc/guix.texi:35244 msgid "Data type representing the configuration of the GRUB theme." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34807 +#: guix-git/doc/guix.texi:35246 #, no-wrap msgid "@code{gfxmode} (default: @code{'(\"auto\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34810 +#: guix-git/doc/guix.texi:35249 msgid "The GRUB @code{gfxmode} to set (a list of screen resolution strings, @pxref{gfxmode,,, grub, GNU GRUB manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34813 +#: guix-git/doc/guix.texi:35252 #, no-wrap msgid "{Scheme Procedure} grub-theme" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34817 +#: guix-git/doc/guix.texi:35256 msgid "Return the default GRUB theme used by the operating system if no @code{theme} field is specified in @code{bootloader-configuration} record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34820 +#: guix-git/doc/guix.texi:35259 msgid "It comes with a fancy background image displaying the GNU and Guix logos." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34824 +#: guix-git/doc/guix.texi:35263 msgid "For example, to override the default resolution, you may use something like" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34832 +#: guix-git/doc/guix.texi:35271 #, no-wrap msgid "" "(bootloader\n" @@ -62076,40 +62886,40 @@ msgid "" msgstr "" #. type: section -#: guix-git/doc/guix.texi:34835 +#: guix-git/doc/guix.texi:35274 #, no-wrap msgid "Invoking @code{guix system}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34840 +#: guix-git/doc/guix.texi:35279 msgid "Once you have written an operating system declaration as seen in the previous section, it can be @dfn{instantiated} using the @command{guix system} command. The synopsis is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34843 +#: guix-git/doc/guix.texi:35282 #, no-wrap msgid "guix system @var{options}@dots{} @var{action} @var{file}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34849 +#: guix-git/doc/guix.texi:35288 msgid "@var{file} must be the name of a file containing an @code{operating-system} declaration. @var{action} specifies how the operating system is instantiated. Currently the following values are supported:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34851 guix-git/doc/guix.texi:37496 +#: guix-git/doc/guix.texi:35290 guix-git/doc/guix.texi:37992 #, no-wrap msgid "search" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34854 +#: guix-git/doc/guix.texi:35293 msgid "Display available service type definitions that match the given regular expressions, sorted by relevance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34876 +#: guix-git/doc/guix.texi:35315 #, no-wrap msgid "" "$ guix system search console\n" @@ -62133,7 +62943,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34882 +#: guix-git/doc/guix.texi:35321 #, no-wrap msgid "" "name: mingetty\n" @@ -62145,7 +62955,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34889 +#: guix-git/doc/guix.texi:35328 #, no-wrap msgid "" "name: login\n" @@ -62158,72 +62968,72 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34891 guix-git/doc/guix.texi:37549 +#: guix-git/doc/guix.texi:35330 guix-git/doc/guix.texi:38028 #, no-wrap msgid "@dots{}\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34896 guix-git/doc/guix.texi:37554 +#: guix-git/doc/guix.texi:35335 msgid "As for @command{guix package --search}, the result is written in @code{recutils} format, which makes it easy to filter the output (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34897 guix-git/doc/guix.texi:37555 +#: guix-git/doc/guix.texi:35336 guix-git/doc/guix.texi:38034 #, no-wrap msgid "reconfigure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34902 +#: guix-git/doc/guix.texi:35341 msgid "Build the operating system described in @var{file}, activate it, and switch to it@footnote{This action (and the related actions @code{switch-generation} and @code{roll-back}) are usable only on systems already running Guix System.}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:34910 +#: guix-git/doc/guix.texi:35349 msgid "It is highly recommended to run @command{guix pull} once before you run @command{guix system reconfigure} for the first time (@pxref{Invoking guix pull}). Failing to do that you would see an older version of Guix once @command{reconfigure} has completed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34918 +#: guix-git/doc/guix.texi:35357 msgid "This effects all the configuration specified in @var{file}: user accounts, system services, global package list, setuid programs, etc. The command starts system services specified in @var{file} that are not currently running; if a service is currently running this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop X} or @code{herd restart X})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34924 +#: guix-git/doc/guix.texi:35363 msgid "This command creates a new generation whose number is one greater than the current generation (as reported by @command{guix system list-generations}). If that generation already exists, it will be overwritten. This behavior mirrors that of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34929 +#: guix-git/doc/guix.texi:35368 msgid "It also adds a bootloader menu entry for the new OS configuration, ---unless @option{--no-bootloader} is passed. For GRUB, it moves entries for older configurations to a submenu, allowing you to choose an older system generation at boot time should you need it." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34930 guix-git/doc/guix.texi:35261 -#: guix-git/doc/guix.texi:36223 +#: guix-git/doc/guix.texi:35369 guix-git/doc/guix.texi:35705 +#: guix-git/doc/guix.texi:36713 #, no-wrap msgid "provenance tracking, of the operating system" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34935 +#: guix-git/doc/guix.texi:35374 msgid "Upon completion, the new system is deployed under @file{/run/current-system}. This directory contains @dfn{provenance meta-data}: the list of channels in use (@pxref{Channels}) and @var{file} itself, when available. You can view it by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34938 +#: guix-git/doc/guix.texi:35377 #, no-wrap msgid "guix system describe\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34944 +#: guix-git/doc/guix.texi:35383 msgid "This information is useful should you later want to inspect how this particular generation was built. In fact, assuming @var{file} is self-contained, you can later rebuild generation @var{n} of your operating system with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34950 +#: guix-git/doc/guix.texi:35389 #, no-wrap msgid "" "guix time-machine \\\n" @@ -62233,233 +63043,238 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34956 +#: guix-git/doc/guix.texi:35395 msgid "You can think of it as some sort of built-in version control! Your system is not just a binary artifact: @emph{it carries its own source}. @xref{Service Reference, @code{provenance-service-type}}, for more information on provenance tracking." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34962 +#: guix-git/doc/guix.texi:35401 msgid "By default, @command{reconfigure} @emph{prevents you from downgrading your system}, which could (re)introduce security vulnerabilities and also cause problems with ``stateful'' services such as database management systems. You can override that behavior by passing @option{--allow-downgrades}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34963 guix-git/doc/guix.texi:37614 +#: guix-git/doc/guix.texi:35402 guix-git/doc/guix.texi:38093 #, no-wrap msgid "switch-generation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34972 +#: guix-git/doc/guix.texi:35411 msgid "Switch to an existing system generation. This action atomically switches the system profile to the specified system generation. It also rearranges the system's existing bootloader menu entries. It makes the menu entry for the specified system generation the default, and it moves the entries for the other generations to a submenu, if supported by the bootloader being used. The next time the system boots, it will use the specified system generation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34976 +#: guix-git/doc/guix.texi:35415 msgid "The bootloader itself is not being reinstalled when using this command. Thus, the installed bootloader is used with an updated configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34980 +#: guix-git/doc/guix.texi:35419 msgid "The target generation can be specified explicitly by its generation number. For example, the following invocation would switch to system generation 7:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34983 +#: guix-git/doc/guix.texi:35422 #, no-wrap msgid "guix system switch-generation 7\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34991 guix-git/doc/guix.texi:37633 +#: guix-git/doc/guix.texi:35430 guix-git/doc/guix.texi:38112 msgid "The target generation can also be specified relative to the current generation with the form @code{+N} or @code{-N}, where @code{+3} means ``3 generations ahead of the current generation,'' and @code{-1} means ``1 generation prior to the current generation.'' When specifying a negative value such as @code{-1}, you must precede it with @code{--} to prevent it from being parsed as an option. For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34994 +#: guix-git/doc/guix.texi:35433 #, no-wrap msgid "guix system switch-generation -- -1\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35002 +#: guix-git/doc/guix.texi:35441 msgid "Currently, the effect of invoking this action is @emph{only} to switch the system profile to an existing generation and rearrange the bootloader menu entries. To actually start using the target system generation, you must reboot after running this action. In the future, it will be updated to do the same things as @command{reconfigure}, like activating and deactivating services." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35004 guix-git/doc/guix.texi:37639 +#: guix-git/doc/guix.texi:35443 guix-git/doc/guix.texi:38118 msgid "This action will fail if the specified generation does not exist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35005 guix-git/doc/guix.texi:37640 +#: guix-git/doc/guix.texi:35444 guix-git/doc/guix.texi:38119 #, no-wrap msgid "roll-back" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35011 +#: guix-git/doc/guix.texi:35450 msgid "Switch to the preceding system generation. The next time the system boots, it will use the preceding system generation. This is the inverse of @command{reconfigure}, and it is exactly the same as invoking @command{switch-generation} with an argument of @code{-1}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35015 +#: guix-git/doc/guix.texi:35454 msgid "Currently, as with @command{switch-generation}, you must reboot after running this action to actually start using the preceding system generation." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35016 guix-git/doc/guix.texi:37646 +#: guix-git/doc/guix.texi:35455 guix-git/doc/guix.texi:38125 #, no-wrap msgid "delete-generations" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35017 +#: guix-git/doc/guix.texi:35456 #, no-wrap msgid "deleting system generations" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35018 guix-git/doc/guix.texi:37648 +#: guix-git/doc/guix.texi:35457 guix-git/doc/guix.texi:38127 #, no-wrap msgid "saving space" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35022 +#: guix-git/doc/guix.texi:35461 msgid "Delete system generations, making them candidates for garbage collection (@pxref{Invoking guix gc}, for information on how to run the ``garbage collector'')." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35026 +#: guix-git/doc/guix.texi:35465 msgid "This works in the same way as @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). With no arguments, all system generations but the current one are deleted:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35029 +#: guix-git/doc/guix.texi:35468 #, no-wrap msgid "guix system delete-generations\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35033 +#: guix-git/doc/guix.texi:35472 msgid "You can also select the generations you want to delete. The example below deletes all the system generations that are more than two months old:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35036 +#: guix-git/doc/guix.texi:35475 #, no-wrap msgid "guix system delete-generations 2m\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35041 +#: guix-git/doc/guix.texi:35480 msgid "Running this command automatically reinstalls the bootloader with an updated list of menu entries---e.g., the ``old generations'' sub-menu in GRUB no longer lists the generations that have been deleted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35046 +#: guix-git/doc/guix.texi:35485 msgid "Build the derivation of the operating system, which includes all the configuration files and programs needed to boot and run the system. This action does not actually install anything." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35047 +#: guix-git/doc/guix.texi:35486 #, no-wrap msgid "init" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35051 +#: guix-git/doc/guix.texi:35490 msgid "Populate the given directory with all the files necessary to run the operating system specified in @var{file}. This is useful for first-time installations of Guix System. For instance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35054 +#: guix-git/doc/guix.texi:35493 #, no-wrap msgid "guix system init my-os-config.scm /mnt\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35061 +#: guix-git/doc/guix.texi:35500 msgid "copies to @file{/mnt} all the store items required by the configuration specified in @file{my-os-config.scm}. This includes configuration files, packages, and so on. It also creates other essential files needed for the system to operate correctly---e.g., the @file{/etc}, @file{/var}, and @file{/run} directories, and the @file{/bin/sh} file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35065 +#: guix-git/doc/guix.texi:35504 msgid "This command also installs bootloader on the targets specified in @file{my-os-config}, unless the @option{--no-bootloader} option was passed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35066 +#: guix-git/doc/guix.texi:35505 #, no-wrap msgid "vm" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35067 guix-git/doc/guix.texi:35634 +#: guix-git/doc/guix.texi:35506 guix-git/doc/guix.texi:36124 #, no-wrap msgid "virtual machine" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35068 +#: guix-git/doc/guix.texi:35507 #, no-wrap msgid "VM" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35072 +#: guix-git/doc/guix.texi:35511 msgid "guix system vm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35072 +#: guix-git/doc/guix.texi:35511 msgid "Build a virtual machine (VM) that contains the operating system declared in @var{file}, and return a script to run that VM." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35080 +#: guix-git/doc/guix.texi:35519 msgid "The @code{vm} action and others below can use KVM support in the Linux-libre kernel. Specifically, if the machine has hardware virtualization support, the corresponding KVM kernel module should be loaded, and the @file{/dev/kvm} device node must exist and be readable and writable by the user and by the build users of the daemon (@pxref{Build Environment Setup})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35085 +#: guix-git/doc/guix.texi:35524 msgid "Arguments given to the script are passed to QEMU as in the example below, which enables networking and requests 1@tie{}GiB of RAM for the emulated machine:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35088 +#: guix-git/doc/guix.texi:35527 #, no-wrap msgid "$ /gnu/store/@dots{}-run-vm.sh -m 1024 -smp 2 -nic user,model=virtio-net-pci\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35091 +#: guix-git/doc/guix.texi:35530 msgid "It's possible to combine the two steps into one:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35094 +#: guix-git/doc/guix.texi:35533 #, no-wrap msgid "$ $(guix system vm my-config.scm) -m 1024 -smp 2 -nic user,model=virtio-net-pci\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35097 +#: guix-git/doc/guix.texi:35536 msgid "The VM shares its store with the host system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35102 +#: guix-git/doc/guix.texi:35541 +msgid "By default, the root file system of the VM is mounted volatile; the @option{--persistent} option can be provided to make it persistent instead. In that case, the VM disk-image file will be copied from the store to the @env{TMPDIR} directory to make it writable." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:35546 msgid "Additional file systems can be shared between the host and the VM using the @option{--share} and @option{--expose} command-line options: the former specifies a directory to be shared with write access, while the latter provides read-only access to the shared directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35106 +#: guix-git/doc/guix.texi:35550 msgid "The example below creates a VM in which the user's home directory is accessible read-only, and where the @file{/exchange} directory is a read-write mapping of @file{$HOME/tmp} on the host:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35110 +#: guix-git/doc/guix.texi:35554 #, no-wrap msgid "" "guix system vm my-config.scm \\\n" @@ -62467,56 +63282,56 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35115 +#: guix-git/doc/guix.texi:35559 msgid "On GNU/Linux, the default is to boot directly to the kernel; this has the advantage of requiring only a very tiny root disk image since the store of the host can then be mounted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35120 +#: guix-git/doc/guix.texi:35564 msgid "The @option{--full-boot} option forces a complete boot sequence, starting with the bootloader. This requires more disk space since a root image containing at least the kernel, initrd, and bootloader data files must be created." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35123 +#: guix-git/doc/guix.texi:35567 msgid "The @option{--image-size} option can be used to specify the size of the image." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35130 +#: guix-git/doc/guix.texi:35574 msgid "The @option{--no-graphic} option will instruct @command{guix system} to spawn a headless VM that will use the invoking tty for IO. Among other things, this enables copy-pasting, and scrollback. Use the @kbd{ctrl-a} prefix to issue QEMU commands; e.g. @kbd{ctrl-a h} prints a help, @kbd{ctrl-a x} quits the VM, and @kbd{ctrl-a c} switches between the QEMU monitor and the VM." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35131 +#: guix-git/doc/guix.texi:35575 #, no-wrap msgid "System images, creation in various formats" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35132 +#: guix-git/doc/guix.texi:35576 #, no-wrap msgid "Creating system images in various formats" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35133 +#: guix-git/doc/guix.texi:35577 #, no-wrap msgid "image" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35134 +#: guix-git/doc/guix.texi:35578 #, no-wrap msgid "image, creating disk images" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35146 +#: guix-git/doc/guix.texi:35590 msgid "The @code{image} command can produce various image types. The image type can be selected using the @option{--image-type} option. It defaults to @code{efi-raw}. When its value is @code{iso9660}, the @option{--label} option can be used to specify a volume ID with @code{image}. By default, the root file system of a disk image is mounted non-volatile; the @option{--volatile} option can be provided to make it volatile instead. When using @code{image}, the bootloader installed on the generated image is taken from the provided @code{operating-system} definition. The following example demonstrates how to generate an image that uses the @code{grub-efi-bootloader} bootloader and boot it with QEMU:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35154 +#: guix-git/doc/guix.texi:35598 #, no-wrap msgid "" "image=$(guix system image --image-type=qcow2 \\\n" @@ -62528,45 +63343,45 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35160 +#: guix-git/doc/guix.texi:35604 msgid "When using the @code{efi-raw} image type, a raw disk image is produced; it can be copied as is to a USB stick, for instance. Assuming @code{/dev/sdc} is the device corresponding to a USB stick, one can copy the image to it using the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35163 +#: guix-git/doc/guix.texi:35607 #, no-wrap msgid "# dd if=$(guix system image my-os.scm) of=/dev/sdc status=progress\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35167 +#: guix-git/doc/guix.texi:35611 msgid "The @code{--list-image-types} command lists all the available image types." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35168 +#: guix-git/doc/guix.texi:35612 #, no-wrap msgid "creating virtual machine images" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35177 +#: guix-git/doc/guix.texi:35621 msgid "When using the @code{qcow2} image type, the returned image is in qcow2 format, which the QEMU emulator can efficiently use. @xref{Running Guix in a VM}, for more information on how to run the image in a virtual machine. The @code{grub-bootloader} bootloader is always used independently of what is declared in the @code{operating-system} file passed as argument. This is to make it easier to work with QEMU, which uses the SeaBIOS BIOS by default, expecting a bootloader to be installed in the Master Boot Record (MBR)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35178 +#: guix-git/doc/guix.texi:35622 #, no-wrap msgid "docker-image, creating docker images" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35184 +#: guix-git/doc/guix.texi:35628 msgid "When using the @code{docker} image type, a Docker image is produced. Guix builds the image from scratch, not from a pre-existing Docker base image. As a result, it contains @emph{exactly} what you define in the operating system configuration file. You can then load the image and launch a Docker container using commands like the following:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35189 +#: guix-git/doc/guix.texi:35633 #, no-wrap msgid "" "image_id=\"$(docker load < guix-system-docker-image.tar.gz)\"\n" @@ -62575,43 +63390,43 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35196 +#: guix-git/doc/guix.texi:35640 msgid "This command starts a new Docker container from the specified image. It will boot the Guix system in the usual manner, which means it will start any services you have defined in the operating system configuration. You can get an interactive shell running in the container using @command{docker exec}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35199 +#: guix-git/doc/guix.texi:35643 #, no-wrap msgid "docker exec -ti $container_id /run/current-system/profile/bin/bash --login\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35206 +#: guix-git/doc/guix.texi:35650 msgid "Depending on what you run in the Docker container, it may be necessary to give the container additional permissions. For example, if you intend to build software using Guix inside of the Docker container, you may need to pass the @option{--privileged} option to @code{docker create}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35210 +#: guix-git/doc/guix.texi:35654 msgid "Last, the @option{--network} option applies to @command{guix system docker-image}: it produces an image where network is supposedly shared with the host, and thus without services like nscd or NetworkManager." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35218 +#: guix-git/doc/guix.texi:35662 msgid "Return a script to run the operating system declared in @var{file} within a container. Containers are a set of lightweight isolation mechanisms provided by the kernel Linux-libre. Containers are substantially less resource-demanding than full virtual machines since the kernel, shared objects, and other resources can be shared with the host system; this also means they provide thinner isolation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35222 +#: guix-git/doc/guix.texi:35666 msgid "Currently, the script must be run as root in order to support more than a single user and group. The container shares its store with the host system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35226 +#: guix-git/doc/guix.texi:35670 msgid "As with the @code{vm} action (@pxref{guix system vm}), additional file systems to be shared between the host and container can be specified using the @option{--share} and @option{--expose} options:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35230 +#: guix-git/doc/guix.texi:35674 #, no-wrap msgid "" "guix system container my-config.scm \\\n" @@ -62619,319 +63434,329 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35234 +#: guix-git/doc/guix.texi:35678 msgid "This option requires Linux-libre 3.19 or newer." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35241 guix-git/doc/guix.texi:37710 +#: guix-git/doc/guix.texi:35685 guix-git/doc/guix.texi:38189 msgid "@var{options} can contain any of the common build options (@pxref{Common Build Options}). In addition, @var{options} can contain one of the following:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35250 +#: guix-git/doc/guix.texi:35694 msgid "Consider the operating-system @var{expr} evaluates to. This is an alternative to specifying a file which evaluates to an operating system. This is used to generate the Guix system installer @pxref{Building the Installation Image})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35255 +#: guix-git/doc/guix.texi:35699 msgid "Attempt to build for @var{system} instead of the host system type. This works as per @command{guix build} (@pxref{Invoking guix build})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35260 +#: guix-git/doc/guix.texi:35704 msgid "Return the derivation file name of the given operating system without building anything." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35269 +#: guix-git/doc/guix.texi:35713 msgid "As discussed above, @command{guix system init} and @command{guix system reconfigure} always save provenance information @i{via} a dedicated service (@pxref{Service Reference, @code{provenance-service-type}}). However, other commands don't do that by default. If you wish to, say, create a virtual machine image that contains provenance information, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35272 +#: guix-git/doc/guix.texi:35716 #, no-wrap msgid "guix system image -t qcow2 --save-provenance config.scm\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35279 +#: guix-git/doc/guix.texi:35723 msgid "That way, the resulting image will effectively ``embed its own source'' in the form of meta-data in @file{/run/current-system}. With that information, one can rebuild the image to make sure it really contains what it pretends to contain; or they could use that to derive a variant of the image." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35280 +#: guix-git/doc/guix.texi:35724 #, no-wrap msgid "--image-type=@var{type}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35283 +#: guix-git/doc/guix.texi:35727 msgid "For the @code{image} action, create an image with given @var{type}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35286 +#: guix-git/doc/guix.texi:35730 msgid "When this option is omitted, @command{guix system} uses the @code{efi-raw} image type." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35287 +#: guix-git/doc/guix.texi:35731 #, no-wrap msgid "ISO-9660 format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35288 +#: guix-git/doc/guix.texi:35732 #, no-wrap msgid "CD image format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35289 +#: guix-git/doc/guix.texi:35733 #, no-wrap msgid "DVD image format" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35292 +#: guix-git/doc/guix.texi:35736 msgid "@option{--image-type=iso9660} produces an ISO-9660 image, suitable for burning on CDs and DVDs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35293 +#: guix-git/doc/guix.texi:35737 #, no-wrap msgid "--image-size=@var{size}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35298 +#: guix-git/doc/guix.texi:35742 msgid "For the @code{image} action, create an image of the given @var{size}. @var{size} may be a number of bytes, or it may include a unit as a suffix (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35302 +#: guix-git/doc/guix.texi:35746 msgid "When this option is omitted, @command{guix system} computes an estimate of the image size as a function of the size of the system declared in @var{file}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35307 +#: guix-git/doc/guix.texi:35751 msgid "For the @code{container} action, allow containers to access the host network, that is, do not create a network namespace." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35313 +#: guix-git/doc/guix.texi:35757 #, no-wrap msgid "--skip-checks" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35315 +#: guix-git/doc/guix.texi:35759 msgid "Skip pre-installation safety checks." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35322 +#: guix-git/doc/guix.texi:35766 msgid "By default, @command{guix system init} and @command{guix system reconfigure} perform safety checks: they make sure the file systems that appear in the @code{operating-system} declaration actually exist (@pxref{File Systems}), and that any Linux kernel modules that may be needed at boot time are listed in @code{initrd-modules} (@pxref{Initial RAM Disk}). Passing this option skips these tests altogether." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35325 +#: guix-git/doc/guix.texi:35769 msgid "Instruct @command{guix system reconfigure} to allow system downgrades." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35333 +#: guix-git/doc/guix.texi:35777 msgid "By default, @command{reconfigure} prevents you from downgrading your system. It achieves that by comparing the provenance info of your system (shown by @command{guix system describe}) with that of your @command{guix} command (shown by @command{guix describe}). If the commits for @command{guix} are not descendants of those used for your system, @command{guix system reconfigure} errors out. Passing @option{--allow-downgrades} allows you to bypass these checks." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35339 +#: guix-git/doc/guix.texi:35783 #, no-wrap msgid "on-error" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35340 +#: guix-git/doc/guix.texi:35784 #, no-wrap msgid "on-error strategy" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35341 +#: guix-git/doc/guix.texi:35785 #, no-wrap msgid "error strategy" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35342 +#: guix-git/doc/guix.texi:35786 #, no-wrap msgid "--on-error=@var{strategy}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35345 +#: guix-git/doc/guix.texi:35789 msgid "Apply @var{strategy} when an error occurs when reading @var{file}. @var{strategy} may be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35347 +#: guix-git/doc/guix.texi:35791 #, no-wrap msgid "nothing-special" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35349 +#: guix-git/doc/guix.texi:35793 msgid "Report the error concisely and exit. This is the default strategy." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35350 +#: guix-git/doc/guix.texi:35794 #, no-wrap msgid "backtrace" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35352 +#: guix-git/doc/guix.texi:35796 msgid "Likewise, but also display a backtrace." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35353 +#: guix-git/doc/guix.texi:35797 #, no-wrap msgid "debug" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35359 +#: guix-git/doc/guix.texi:35803 msgid "Report the error and enter Guile's debugger. From there, you can run commands such as @code{,bt} to get a backtrace, @code{,locals} to display local variable values, and more generally inspect the state of the program. @xref{Debug Commands,,, guile, GNU Guile Reference Manual}, for a list of available debugging commands." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35366 +#: guix-git/doc/guix.texi:35810 msgid "Once you have built, configured, re-configured, and re-re-configured your Guix installation, you may find it useful to list the operating system generations available on disk---and that you can choose from the bootloader boot menu:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35369 guix-git/doc/guix.texi:37673 +#: guix-git/doc/guix.texi:35813 guix-git/doc/guix.texi:38152 #, no-wrap msgid "describe" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35372 -msgid "Describe the current system generation: its file name, the kernel and bootloader used, etc., as well as provenance information when available." +#: guix-git/doc/guix.texi:35816 +msgid "Describe the running system generation: its file name, the kernel and bootloader used, etc., as well as provenance information when available." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:35823 +msgid "The @emph{running} system generation---referred to by @file{/run/current-system}---is not necessarily the @emph{current} system generation---referred to by @file{/var/guix/profiles/system}: it differs when, for instance, you chose from the bootloader menu to boot an older generation." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:35827 +msgid "It can also differ from the @emph{booted} system generation---referred to by @file{/run/booted-system}---for instance because you reconfigured the system in the meantime." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35373 guix-git/doc/guix.texi:37677 +#: guix-git/doc/guix.texi:35829 guix-git/doc/guix.texi:38156 #, no-wrap msgid "list-generations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35378 +#: guix-git/doc/guix.texi:35834 msgid "List a summary of each generation of the operating system available on disk, in a human-readable way. This is similar to the @option{--list-generations} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35383 guix-git/doc/guix.texi:37687 +#: guix-git/doc/guix.texi:35839 guix-git/doc/guix.texi:38166 msgid "Optionally, one can specify a pattern, with the same syntax that is used in @command{guix package --list-generations}, to restrict the list of generations displayed. For instance, the following command displays generations that are up to 10 days old:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35386 +#: guix-git/doc/guix.texi:35842 #, no-wrap msgid "$ guix system list-generations 10d\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35393 +#: guix-git/doc/guix.texi:35849 msgid "The @command{guix system} command has even more to offer! The following sub-commands allow you to visualize how your system services relate to each other:" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35395 +#: guix-git/doc/guix.texi:35851 msgid "system-extension-graph" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35397 +#: guix-git/doc/guix.texi:35853 #, no-wrap msgid "extension-graph" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35404 +#: guix-git/doc/guix.texi:35860 msgid "Emit to standard output the @dfn{service extension graph} of the operating system defined in @var{file} (@pxref{Service Composition}, for more information on service extensions). By default the output is in Dot/Graphviz format, but you can choose a different format with @option{--graph-backend}, as with @command{guix graph} (@pxref{Invoking guix graph, @option{--backend}}):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35406 +#: guix-git/doc/guix.texi:35862 msgid "The command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35409 +#: guix-git/doc/guix.texi:35865 #, no-wrap msgid "$ guix system extension-graph @var{file} | xdot -\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35412 +#: guix-git/doc/guix.texi:35868 msgid "shows the extension relations among services." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35414 +#: guix-git/doc/guix.texi:35870 msgid "system-shepherd-graph" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35414 +#: guix-git/doc/guix.texi:35870 #, no-wrap msgid "shepherd-graph" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35419 +#: guix-git/doc/guix.texi:35875 msgid "Emit to standard output the @dfn{dependency graph} of shepherd services of the operating system defined in @var{file}. @xref{Shepherd Services}, for more information and for an example graph." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35422 +#: guix-git/doc/guix.texi:35878 msgid "Again, the default output format is Dot/Graphviz, but you can pass @option{--graph-backend} to select a different one." msgstr "" #. type: section -#: guix-git/doc/guix.texi:35426 +#: guix-git/doc/guix.texi:35882 #, no-wrap msgid "Invoking @code{guix deploy}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35434 +#: guix-git/doc/guix.texi:35890 msgid "We've already seen @code{operating-system} declarations used to manage a machine's configuration locally. Suppose you need to configure multiple machines, though---perhaps you're managing a service on the web that's comprised of several servers. @command{guix deploy} enables you to use those same @code{operating-system} declarations to manage multiple remote hosts at once as a logical ``deployment''." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35439 guix-git/doc/guix.texi:36900 +#: guix-git/doc/guix.texi:35895 guix-git/doc/guix.texi:37390 msgid "The functionality described in this section is still under development and is subject to change. Get in touch with us on @email{guix-devel@@gnu.org}!" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35443 +#: guix-git/doc/guix.texi:35899 #, no-wrap msgid "guix deploy @var{file}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35447 +#: guix-git/doc/guix.texi:35903 msgid "Such an invocation will deploy the machines that the code within @var{file} evaluates to. As an example, @var{file} might contain a definition like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35454 +#: guix-git/doc/guix.texi:35910 #, no-wrap msgid "" ";; This is a Guix deployment of a \"bare bones\" setup, with\n" @@ -62943,7 +63768,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35457 +#: guix-git/doc/guix.texi:35913 #, no-wrap msgid "" "(use-service-modules networking ssh)\n" @@ -62952,7 +63777,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35478 +#: guix-git/doc/guix.texi:35934 #, no-wrap msgid "" "(define %system\n" @@ -62979,7 +63804,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35488 +#: guix-git/doc/guix.texi:35944 #, no-wrap msgid "" "(list (machine\n" @@ -62994,33 +63819,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35501 +#: guix-git/doc/guix.texi:35957 msgid "The file should evaluate to a list of @var{machine} objects. This example, upon being deployed, will create a new generation on the remote system realizing the @code{operating-system} declaration @code{%system}. @code{environment} and @code{configuration} specify how the machine should be provisioned---that is, how the computing resources should be created and managed. The above example does not create any resources, as a @code{'managed-host} is a machine that is already running the Guix system and available over the network. This is a particularly simple case; a more complex deployment may involve, for example, starting virtual machines through a Virtual Private Server (VPS) provider. In such a case, a different @var{environment} type would be used." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35506 +#: guix-git/doc/guix.texi:35962 msgid "Do note that you first need to generate a key pair on the coordinator machine to allow the daemon to export signed archives of files from the store (@pxref{Invoking guix archive}), though this step is automatic on Guix System:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35514 +#: guix-git/doc/guix.texi:35970 msgid "Each target machine must authorize the key of the master machine so that it accepts store items it receives from the coordinator:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35517 +#: guix-git/doc/guix.texi:35973 #, no-wrap msgid "# guix archive --authorize < coordinator-public-key.txt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35528 +#: guix-git/doc/guix.texi:35984 msgid "@code{user}, in this example, specifies the name of the user account to log in as to perform the deployment. Its default value is @code{root}, but root login over SSH may be forbidden in some cases. To work around this, @command{guix deploy} can log in as an unprivileged user and employ @code{sudo} to escalate privileges. This will only work if @code{sudo} is currently installed on the remote and can be invoked non-interactively as @code{user}. That is, the line in @code{sudoers} granting @code{user} the ability to use @code{sudo} must contain the @code{NOPASSWD} tag. This can be accomplished with the following operating system configuration snippet:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35532 +#: guix-git/doc/guix.texi:35988 #, no-wrap msgid "" "(use-modules ...\n" @@ -63029,7 +63854,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35534 +#: guix-git/doc/guix.texi:35990 #, no-wrap msgid "" "(define %user \"username\")\n" @@ -63037,7 +63862,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35542 +#: guix-git/doc/guix.texi:35998 #, no-wrap msgid "" "(operating-system\n" @@ -63051,235 +63876,283 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35547 +#: guix-git/doc/guix.texi:36003 msgid "For more information regarding the format of the @file{sudoers} file, consult @command{man sudoers}." msgstr "" +#. type: Plain text +#: guix-git/doc/guix.texi:36008 +msgid "Once you've deployed a system on a set of machines, you may find it useful to run a command on all of them. The @option{--execute} or @option{-x} option lets you do that; the example below runs @command{uname -a} on all the machines listed in the deployment file:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:36011 +#, no-wrap +msgid "guix deploy @var{file} -x -- uname -a\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36015 +msgid "One thing you may often need to do after deployment is restart specific services on all the machines, which you can do like so:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:36018 +#, no-wrap +msgid "guix deploy @var{file} -x -- herd restart @var{service}\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36022 +msgid "The @command{guix deploy -x} command returns zero if and only if the command succeeded on all the machines." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36027 +msgid "Below are the data types you need to know about when writing a deployment file." +msgstr "" + #. type: deftp -#: guix-git/doc/guix.texi:35548 +#: guix-git/doc/guix.texi:36028 #, no-wrap msgid "{Data Type} machine" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35551 +#: guix-git/doc/guix.texi:36031 msgid "This is the data type representing a single machine in a heterogeneous Guix deployment." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35555 +#: guix-git/doc/guix.texi:36035 msgid "The object of the operating system configuration to deploy." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35556 +#: guix-git/doc/guix.texi:36036 #, no-wrap msgid "environment" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35558 +#: guix-git/doc/guix.texi:36038 msgid "An @code{environment-type} describing how the machine should be provisioned." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35559 +#: guix-git/doc/guix.texi:36039 #, no-wrap msgid "@code{configuration} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35564 +#: guix-git/doc/guix.texi:36044 msgid "An object describing the configuration for the machine's @code{environment}. If the @code{environment} has a default configuration, @code{#f} may be used. If @code{#f} is used for an environment with no default configuration, however, an error will be thrown." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35567 +#: guix-git/doc/guix.texi:36047 #, no-wrap msgid "{Data Type} machine-ssh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35570 +#: guix-git/doc/guix.texi:36050 msgid "This is the data type representing the SSH client parameters for a machine with an @code{environment} of @code{managed-host-environment-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35573 +#: guix-git/doc/guix.texi:36053 #, no-wrap msgid "@code{build-locally?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35575 +#: guix-git/doc/guix.texi:36055 msgid "If false, system derivations will be built on the machine being deployed to." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35575 +#: guix-git/doc/guix.texi:36055 #, no-wrap msgid "system" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35578 +#: guix-git/doc/guix.texi:36058 msgid "The system type describing the architecture of the machine being deployed to---e.g., @code{\"x86_64-linux\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35578 +#: guix-git/doc/guix.texi:36058 #, no-wrap msgid "@code{authorize?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35581 +#: guix-git/doc/guix.texi:36061 msgid "If true, the coordinator's signing key will be added to the remote's ACL keyring." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35583 +#: guix-git/doc/guix.texi:36063 #, no-wrap msgid "@code{identity} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35586 +#: guix-git/doc/guix.texi:36066 msgid "If specified, the path to the SSH private key to use to authenticate with the remote host." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35587 +#: guix-git/doc/guix.texi:36067 #, no-wrap msgid "@code{host-key} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35589 +#: guix-git/doc/guix.texi:36069 msgid "This should be the SSH host key of the machine, which looks like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35592 +#: guix-git/doc/guix.texi:36072 #, no-wrap msgid "ssh-ed25519 AAAAC3Nz@dots{} root@@example.org\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35597 +#: guix-git/doc/guix.texi:36077 msgid "When @code{host-key} is @code{#f}, the server is authenticated against the @file{~/.ssh/known_hosts} file, just like the OpenSSH @command{ssh} client does." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35598 +#: guix-git/doc/guix.texi:36078 #, no-wrap msgid "@code{allow-downgrades?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35600 +#: guix-git/doc/guix.texi:36080 msgid "Whether to allow potential downgrades." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35608 +#: guix-git/doc/guix.texi:36088 msgid "Like @command{guix system reconfigure}, @command{guix deploy} compares the channel commits currently deployed on the remote host (as returned by @command{guix system describe}) to those currently in use (as returned by @command{guix describe}) to determine whether commits currently in use are descendants of those deployed. When this is not the case and @code{allow-downgrades?} is false, it raises an error. This ensures you do not accidentally downgrade remote machines." msgstr "" +#. type: item +#: guix-git/doc/guix.texi:36089 +#, no-wrap +msgid "@code{safety-checks?} (default: @code{#t})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:36095 +msgid "Whether to perform ``safety checks'' before deployment. This includes verifying that devices and file systems referred to in the operating system configuration actually exist on the target machine, and making sure that Linux modules required to access storage devices at boot time are listed in the @code{initrd-modules} field of the operating system." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:36098 +msgid "These safety checks ensure that you do not inadvertently deploy a system that would fail to boot. Be careful before turning them off!" +msgstr "" + #. type: deftp -#: guix-git/doc/guix.texi:35611 +#: guix-git/doc/guix.texi:36101 #, no-wrap msgid "{Data Type} digital-ocean-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35614 +#: guix-git/doc/guix.texi:36104 msgid "This is the data type describing the Droplet that should be created for a machine with an @code{environment} of @code{digital-ocean-environment-type}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35616 +#: guix-git/doc/guix.texi:36106 #, no-wrap msgid "ssh-key" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35619 +#: guix-git/doc/guix.texi:36109 msgid "The path to the SSH private key to use to authenticate with the remote host. In the future, this field may not exist." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35619 +#: guix-git/doc/guix.texi:36109 #, no-wrap msgid "tags" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35622 +#: guix-git/doc/guix.texi:36112 msgid "A list of string ``tags'' that uniquely identify the machine. Must be given such that no two machines in the deployment have the same set of tags." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35622 +#: guix-git/doc/guix.texi:36112 #, no-wrap msgid "region" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35624 +#: guix-git/doc/guix.texi:36114 msgid "A Digital Ocean region slug, such as @code{\"nyc3\"}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35626 +#: guix-git/doc/guix.texi:36116 msgid "A Digital Ocean size slug, such as @code{\"s-1vcpu-1gb\"}" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35626 +#: guix-git/doc/guix.texi:36116 #, no-wrap msgid "enable-ipv6?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35628 +#: guix-git/doc/guix.texi:36118 msgid "Whether or not the droplet should be created with IPv6 networking." msgstr "" #. type: section -#: guix-git/doc/guix.texi:35632 +#: guix-git/doc/guix.texi:36122 #, no-wrap msgid "Running Guix in a Virtual Machine" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35640 +#: guix-git/doc/guix.texi:36130 msgid "To run Guix in a virtual machine (VM), one can use the pre-built Guix VM image distributed at @url{@value{BASE-URL}/guix-system-vm-image-@value{VERSION}.x86_64-linux.qcow2}. This image is a compressed image in QCOW format. You can pass it to an emulator such as @uref{https://qemu.org/, QEMU} (see below for details)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35647 +#: guix-git/doc/guix.texi:36137 msgid "This image boots the Xfce graphical environment and it contains some commonly used tools. You can install more software in the image by running @command{guix package} in a terminal (@pxref{Invoking guix package}). You can also reconfigure the system based on its initial configuration file available as @file{/run/current-system/configuration.scm} (@pxref{Using the Configuration System})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35650 +#: guix-git/doc/guix.texi:36140 msgid "Instead of using this pre-built image, one can also build their own image using @command{guix system image} (@pxref{Invoking guix system})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35651 +#: guix-git/doc/guix.texi:36141 #, no-wrap msgid "QEMU" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35658 +#: guix-git/doc/guix.texi:36148 msgid "If you built your own image, you must copy it out of the store (@pxref{The Store}) and give yourself permission to write to the copy before you can use it. When invoking QEMU, you must choose a system emulator that is suitable for your hardware platform. Here is a minimal QEMU invocation that will boot the result of @command{guix system image -t qcow2} on x86_64 hardware:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35665 +#: guix-git/doc/guix.texi:36155 #, no-wrap msgid "" "$ qemu-system-x86_64 \\\n" @@ -63290,137 +64163,137 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35668 +#: guix-git/doc/guix.texi:36158 msgid "Here is what each of these options means:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35670 +#: guix-git/doc/guix.texi:36160 #, no-wrap msgid "qemu-system-x86_64" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35673 +#: guix-git/doc/guix.texi:36163 msgid "This specifies the hardware platform to emulate. This should match the host." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35674 +#: guix-git/doc/guix.texi:36164 #, no-wrap msgid "-nic user,model=virtio-net-pci" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35682 +#: guix-git/doc/guix.texi:36172 msgid "Enable the unprivileged user-mode network stack. The guest OS can access the host but not vice versa. This is the simplest way to get the guest OS online. @code{model} specifies which network device to emulate: @code{virtio-net-pci} is a special device made for virtualized operating systems and recommended for most uses. Assuming your hardware platform is x86_64, you can get a list of available NIC models by running @command{qemu-system-x86_64 -nic model=help}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35683 +#: guix-git/doc/guix.texi:36173 #, no-wrap msgid "-enable-kvm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35687 +#: guix-git/doc/guix.texi:36177 msgid "If your system has hardware virtualization extensions, enabling the virtual machine support (KVM) of the Linux kernel will make things run faster." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35689 +#: guix-git/doc/guix.texi:36179 #, no-wrap msgid "-m 1024" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35692 +#: guix-git/doc/guix.texi:36182 msgid "RAM available to the guest OS, in mebibytes. Defaults to 128@tie{}MiB, which may be insufficient for some operations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35693 +#: guix-git/doc/guix.texi:36183 #, no-wrap msgid "-device virtio-blk,drive=myhd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35698 +#: guix-git/doc/guix.texi:36188 msgid "Create a @code{virtio-blk} drive called ``myhd''. @code{virtio-blk} is a ``paravirtualization'' mechanism for block devices that allows QEMU to achieve better performance than if it were emulating a complete disk drive. See the QEMU and KVM documentation for more info." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35699 +#: guix-git/doc/guix.texi:36189 #, no-wrap msgid "-drive if=none,file=/tmp/qemu-image,id=myhd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35702 +#: guix-git/doc/guix.texi:36192 msgid "Use our QCOW image, the @file{/tmp/qemu-image} file, as the backing store of the ``myhd'' drive." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35712 +#: guix-git/doc/guix.texi:36202 msgid "The default @command{run-vm.sh} script that is returned by an invocation of @command{guix system vm} does not add a @command{-nic user} flag by default. To get network access from within the vm add the @code{(dhcp-client-service)} to your system definition and start the VM using @command{$(guix system vm config.scm) -nic user}. An important caveat of using @command{-nic user} for networking is that @command{ping} will not work, because it uses the ICMP protocol. You'll have to use a different command to check for network connectivity, for example @command{guix download}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:35713 +#: guix-git/doc/guix.texi:36203 #, no-wrap msgid "Connecting Through SSH" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35721 +#: guix-git/doc/guix.texi:36211 msgid "To enable SSH inside a VM you need to add an SSH server like @code{openssh-service-type} to your VM (@pxref{Networking Services, @code{openssh-service-type}}). In addition you need to forward the SSH port, 22 by default, to the host. You can do this with" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35724 +#: guix-git/doc/guix.texi:36214 #, no-wrap msgid "$(guix system vm config.scm) -nic user,model=virtio-net-pci,hostfwd=tcp::10022-:22\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35727 +#: guix-git/doc/guix.texi:36217 msgid "To connect to the VM you can run" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35730 +#: guix-git/doc/guix.texi:36220 #, no-wrap msgid "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 10022 localhost\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35737 +#: guix-git/doc/guix.texi:36227 msgid "The @command{-p} tells @command{ssh} the port you want to connect to. @command{-o UserKnownHostsFile=/dev/null} prevents @command{ssh} from complaining every time you modify your @command{config.scm} file and the @command{-o StrictHostKeyChecking=no} prevents you from having to allow a connection to an unknown host every time you connect." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35743 +#: guix-git/doc/guix.texi:36233 msgid "If you find the above @samp{hostfwd} example not to be working (e.g., your SSH client hangs attempting to connect to the mapped port of your VM), make sure that your Guix System VM has networking support, such as by using the @code{dhcp-client-service-type} service type." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:35745 +#: guix-git/doc/guix.texi:36235 #, no-wrap msgid "Using @command{virt-viewer} with Spice" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35751 +#: guix-git/doc/guix.texi:36241 msgid "As an alternative to the default @command{qemu} graphical client you can use the @command{remote-viewer} from the @command{virt-viewer} package. To connect pass the @command{-spice port=5930,disable-ticketing} flag to @command{qemu}. See previous section for further information on how to do this." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35754 +#: guix-git/doc/guix.texi:36244 msgid "Spice also allows you to do some nice stuff like share your clipboard with your VM@. To enable that you'll also have to pass the following flags to @command{qemu}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35760 +#: guix-git/doc/guix.texi:36250 #, no-wrap msgid "" "-device virtio-serial-pci,id=virtio-serial0,max_ports=16,bus=pci.0,addr=0x5\n" @@ -63430,81 +64303,81 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35764 +#: guix-git/doc/guix.texi:36254 msgid "You'll also need to add the @code{(spice-vdagent-service)} to your system definition (@pxref{Miscellaneous Services, Spice service})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35771 +#: guix-git/doc/guix.texi:36261 msgid "The previous sections show the available services and how one can combine them in an @code{operating-system} declaration. But how do we define them in the first place? And what is a service anyway?" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35784 +#: guix-git/doc/guix.texi:36274 #, no-wrap msgid "daemons" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35797 +#: guix-git/doc/guix.texi:36287 msgid "Here we define a @dfn{service} as, broadly, something that extends the functionality of the operating system. Often a service is a process---a @dfn{daemon}---started when the system boots: a secure shell server, a Web server, the Guix build daemon, etc. Sometimes a service is a daemon whose execution can be triggered by another daemon---e.g., an FTP server started by @command{inetd} or a D-Bus service activated by @command{dbus-daemon}. Occasionally, a service does not map to a daemon. For instance, the ``account'' service collects user accounts and makes sure they exist when the system runs; the ``udev'' service collects device management rules and makes them available to the eudev daemon; the @file{/etc} service populates the @file{/etc} directory of the system." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35798 +#: guix-git/doc/guix.texi:36288 #, no-wrap msgid "service extensions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35810 +#: guix-git/doc/guix.texi:36300 msgid "Guix system services are connected by @dfn{extensions}. For instance, the secure shell service @emph{extends} the Shepherd---the initialization system, running as PID@tie{}1---by giving it the command lines to start and stop the secure shell daemon (@pxref{Networking Services, @code{openssh-service-type}}); the UPower service extends the D-Bus service by passing it its @file{.service} specification, and extends the udev service by passing it device management rules (@pxref{Desktop Services, @code{upower-service}}); the Guix daemon service extends the Shepherd by passing it the command lines to start and stop the daemon, and extends the account service by passing it a list of required build user accounts (@pxref{Base Services})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35814 +#: guix-git/doc/guix.texi:36304 msgid "All in all, services and their ``extends'' relations form a directed acyclic graph (DAG). If we represent services as boxes and extensions as arrows, a typical system might provide something like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35816 +#: guix-git/doc/guix.texi:36306 msgid "@image{images/service-graph,,5in,Typical service extension graph.}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35817 +#: guix-git/doc/guix.texi:36307 #, no-wrap msgid "system service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35825 +#: guix-git/doc/guix.texi:36315 msgid "At the bottom, we see the @dfn{system service}, which produces the directory containing everything to run and boot the system, as returned by the @command{guix system build} command. @xref{Service Reference}, to learn about the other service types shown here. @xref{system-extension-graph, the @command{guix system extension-graph} command}, for information on how to generate this representation for a particular operating system definition." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35826 +#: guix-git/doc/guix.texi:36316 #, no-wrap msgid "service types" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35832 +#: guix-git/doc/guix.texi:36322 msgid "Technically, developers can define @dfn{service types} to express these relations. There can be any number of services of a given type on the system---for instance, a system running two instances of the GNU secure shell server (lsh) has two instances of @code{lsh-service-type}, with different parameters." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35835 +#: guix-git/doc/guix.texi:36325 msgid "The following section describes the programming interface for service types and services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35842 +#: guix-git/doc/guix.texi:36332 msgid "A @dfn{service type} is a node in the DAG described above. Let us start with a simple example, the service type for the Guix build daemon (@pxref{Invoking guix-daemon}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35852 +#: guix-git/doc/guix.texi:36342 #, no-wrap msgid "" "(define guix-service-type\n" @@ -63518,75 +64391,75 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35856 +#: guix-git/doc/guix.texi:36346 msgid "It defines three things:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35860 +#: guix-git/doc/guix.texi:36350 msgid "A name, whose sole purpose is to make inspection and debugging easier." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35865 +#: guix-git/doc/guix.texi:36355 msgid "A list of @dfn{service extensions}, where each extension designates the target service type and a procedure that, given the parameters of the service, returns a list of objects to extend the service of that type." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35868 +#: guix-git/doc/guix.texi:36358 msgid "Every service type has at least one service extension. The only exception is the @dfn{boot service type}, which is the ultimate service." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35871 +#: guix-git/doc/guix.texi:36361 msgid "Optionally, a default value for instances of this type." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35874 +#: guix-git/doc/guix.texi:36364 msgid "In this example, @code{guix-service-type} extends three services:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35876 +#: guix-git/doc/guix.texi:36366 #, no-wrap msgid "shepherd-root-service-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35881 +#: guix-git/doc/guix.texi:36371 msgid "The @code{guix-shepherd-service} procedure defines how the Shepherd service is extended. Namely, it returns a @code{} object that defines how @command{guix-daemon} is started and stopped (@pxref{Shepherd Services})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35882 +#: guix-git/doc/guix.texi:36372 #, no-wrap msgid "account-service-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35887 +#: guix-git/doc/guix.texi:36377 msgid "This extension for this service is computed by @code{guix-accounts}, which returns a list of @code{user-group} and @code{user-account} objects representing the build user accounts (@pxref{Invoking guix-daemon})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35888 +#: guix-git/doc/guix.texi:36378 #, no-wrap msgid "activation-service-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35892 +#: guix-git/doc/guix.texi:36382 msgid "Here @code{guix-activation} is a procedure that returns a gexp, which is a code snippet to run at ``activation time''---e.g., when the service is booted." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35895 +#: guix-git/doc/guix.texi:36385 msgid "A service of this type is instantiated like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35901 +#: guix-git/doc/guix.texi:36391 #, no-wrap msgid "" "(service guix-service-type\n" @@ -63596,28 +64469,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35909 +#: guix-git/doc/guix.texi:36399 msgid "The second argument to the @code{service} form is a value representing the parameters of this specific service instance. @xref{guix-configuration-type, @code{guix-configuration}}, for information about the @code{guix-configuration} data type. When the value is omitted, the default value specified by @code{guix-service-type} is used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35912 +#: guix-git/doc/guix.texi:36402 #, no-wrap msgid "(service guix-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35916 +#: guix-git/doc/guix.texi:36406 msgid "@code{guix-service-type} is quite simple because it extends other services but is not extensible itself." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35920 +#: guix-git/doc/guix.texi:36410 msgid "The service type for an @emph{extensible} service looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35927 +#: guix-git/doc/guix.texi:36417 #, no-wrap msgid "" "(define udev-service-type\n" @@ -63629,7 +64502,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35935 +#: guix-git/doc/guix.texi:36425 #, no-wrap msgid "" " (compose concatenate) ;concatenate the list of rules\n" @@ -63642,96 +64515,96 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35941 +#: guix-git/doc/guix.texi:36431 msgid "This is the service type for the @uref{https://wiki.gentoo.org/wiki/Project:Eudev, eudev device management daemon}. Compared to the previous example, in addition to an extension of @code{shepherd-root-service-type}, we see two new fields:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35943 +#: guix-git/doc/guix.texi:36433 #, no-wrap msgid "compose" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35946 +#: guix-git/doc/guix.texi:36436 msgid "This is the procedure to @dfn{compose} the list of extensions to services of this type." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35949 +#: guix-git/doc/guix.texi:36439 msgid "Services can extend the udev service by passing it lists of rules; we compose those extensions simply by concatenating them." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35950 +#: guix-git/doc/guix.texi:36440 #, no-wrap msgid "extend" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35953 +#: guix-git/doc/guix.texi:36443 msgid "This procedure defines how the value of the service is @dfn{extended} with the composition of the extensions." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35958 +#: guix-git/doc/guix.texi:36448 msgid "Udev extensions are composed into a list of rules, but the udev service value is itself a @code{} record. So here, we extend that record by appending the list of rules it contains to the list of contributed rules." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35964 +#: guix-git/doc/guix.texi:36454 msgid "This is a string giving an overview of the service type. The string can contain Texinfo markup (@pxref{Overview,,, texinfo, GNU Texinfo}). The @command{guix system search} command searches these strings and displays them (@pxref{Invoking guix system})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35969 +#: guix-git/doc/guix.texi:36459 msgid "There can be only one instance of an extensible service type such as @code{udev-service-type}. If there were more, the @code{service-extension} specifications would be ambiguous." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35972 +#: guix-git/doc/guix.texi:36462 msgid "Still here? The next section provides a reference of the programming interface for services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35980 +#: guix-git/doc/guix.texi:36470 msgid "We have seen an overview of service types (@pxref{Service Types and Services}). This section provides a reference on how to manipulate services and service types. This interface is provided by the @code{(gnu services)} module." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35981 +#: guix-git/doc/guix.texi:36471 #, no-wrap msgid "{Scheme Procedure} service @var{type} [@var{value}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35985 +#: guix-git/doc/guix.texi:36475 msgid "Return a new service of @var{type}, a @code{} object (see below). @var{value} can be any object; it represents the parameters of this particular service instance." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35989 +#: guix-git/doc/guix.texi:36479 msgid "When @var{value} is omitted, the default value specified by @var{type} is used; if @var{type} does not specify a default value, an error is raised." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35991 +#: guix-git/doc/guix.texi:36481 msgid "For instance, this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35994 +#: guix-git/doc/guix.texi:36484 #, no-wrap msgid "(service openssh-service-type)\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35998 +#: guix-git/doc/guix.texi:36488 msgid "is equivalent to this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36002 +#: guix-git/doc/guix.texi:36492 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -63739,50 +64612,50 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36006 +#: guix-git/doc/guix.texi:36496 msgid "In both cases the result is an instance of @code{openssh-service-type} with the default configuration." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36008 +#: guix-git/doc/guix.texi:36498 #, no-wrap msgid "{Scheme Procedure} service? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36010 +#: guix-git/doc/guix.texi:36500 msgid "Return true if @var{obj} is a service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36012 +#: guix-git/doc/guix.texi:36502 #, no-wrap msgid "{Scheme Procedure} service-kind @var{service}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36014 +#: guix-git/doc/guix.texi:36504 msgid "Return the type of @var{service}---i.e., a @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36016 +#: guix-git/doc/guix.texi:36506 #, no-wrap msgid "{Scheme Procedure} service-value @var{service}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36019 +#: guix-git/doc/guix.texi:36509 msgid "Return the value associated with @var{service}. It represents its parameters." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36022 +#: guix-git/doc/guix.texi:36512 msgid "Here is an example of how a service is created and manipulated:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36031 +#: guix-git/doc/guix.texi:36521 #, no-wrap msgid "" "(define s\n" @@ -63796,7 +64669,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36034 +#: guix-git/doc/guix.texi:36524 #, no-wrap msgid "" "(service? s)\n" @@ -63805,7 +64678,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36037 +#: guix-git/doc/guix.texi:36527 #, no-wrap msgid "" "(eq? (service-kind s) nginx-service-type)\n" @@ -63813,210 +64686,210 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36047 +#: guix-git/doc/guix.texi:36537 msgid "The @code{modify-services} form provides a handy way to change the parameters of some of the services of a list such as @code{%base-services} (@pxref{Base Services, @code{%base-services}}). It evaluates to a list of services. Of course, you could always use standard list combinators such as @code{map} and @code{fold} to do that (@pxref{SRFI-1, List Library,, guile, GNU Guile Reference Manual}); @code{modify-services} simply provides a more concise form for this common pattern." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36048 +#: guix-git/doc/guix.texi:36538 #, no-wrap msgid "{Scheme Syntax} modify-services @var{services} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36050 +#: guix-git/doc/guix.texi:36540 msgid "(@var{type} @var{variable} => @var{body}) @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36053 +#: guix-git/doc/guix.texi:36543 msgid "Modify the services listed in @var{services} according to the given clauses. Each clause has the form:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36056 +#: guix-git/doc/guix.texi:36546 #, no-wrap msgid "(@var{type} @var{variable} => @var{body})\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36063 +#: guix-git/doc/guix.texi:36553 msgid "where @var{type} is a service type---e.g., @code{guix-service-type}---and @var{variable} is an identifier that is bound within the @var{body} to the service parameters---e.g., a @code{guix-configuration} instance---of the original service of that @var{type}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36070 +#: guix-git/doc/guix.texi:36560 msgid "The @var{body} should evaluate to the new service parameters, which will be used to configure the new service. This new service will replace the original in the resulting list. Because a service's service parameters are created using @code{define-record-type*}, you can write a succinct @var{body} that evaluates to the new service parameters by using the @code{inherit} feature that @code{define-record-type*} provides." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36072 +#: guix-git/doc/guix.texi:36562 msgid "Clauses can also have the following form:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36075 +#: guix-git/doc/guix.texi:36565 #, no-wrap msgid "(delete @var{type})\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36079 +#: guix-git/doc/guix.texi:36569 msgid "Such a clause removes all services of the given @var{type} from @var{services}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36081 +#: guix-git/doc/guix.texi:36571 msgid "@xref{Using the Configuration System}, for example usage." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36088 +#: guix-git/doc/guix.texi:36578 msgid "Next comes the programming interface for service types. This is something you want to know when writing new service definitions, but not necessarily when simply looking for ways to customize your @code{operating-system} declaration." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36089 +#: guix-git/doc/guix.texi:36579 #, no-wrap msgid "{Data Type} service-type" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36090 +#: guix-git/doc/guix.texi:36580 #, no-wrap msgid "service type" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36093 +#: guix-git/doc/guix.texi:36583 msgid "This is the representation of a @dfn{service type} (@pxref{Service Types and Services})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36097 +#: guix-git/doc/guix.texi:36587 msgid "This is a symbol, used only to simplify inspection and debugging." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:36098 +#: guix-git/doc/guix.texi:36588 #, no-wrap msgid "extensions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36100 +#: guix-git/doc/guix.texi:36590 msgid "A non-empty list of @code{} objects (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36101 +#: guix-git/doc/guix.texi:36591 #, no-wrap msgid "@code{compose} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36105 +#: guix-git/doc/guix.texi:36595 msgid "If this is @code{#f}, then the service type denotes services that cannot be extended---i.e., services that do not receive ``values'' from other services." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36109 +#: guix-git/doc/guix.texi:36599 msgid "Otherwise, it must be a one-argument procedure. The procedure is called by @code{fold-services} and is passed a list of values collected from extensions. It may return any single value." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36110 +#: guix-git/doc/guix.texi:36600 #, no-wrap msgid "@code{extend} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36112 +#: guix-git/doc/guix.texi:36602 msgid "If this is @code{#f}, services of this type cannot be extended." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36118 +#: guix-git/doc/guix.texi:36608 msgid "Otherwise, it must be a two-argument procedure: @code{fold-services} calls it, passing it the initial value of the service as the first argument and the result of applying @code{compose} to the extension values as the second argument. It must return a value that is a valid parameter value for the service instance." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36124 +#: guix-git/doc/guix.texi:36614 msgid "This is a string, possibly using Texinfo markup, describing in a couple of sentences what the service is about. This string allows users to find about the service through @command{guix system search} (@pxref{Invoking guix system})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36125 +#: guix-git/doc/guix.texi:36615 #, no-wrap msgid "@code{default-value} (default: @code{&no-default-value})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36128 +#: guix-git/doc/guix.texi:36618 msgid "The default value associated for instances of this service type. This allows users to use the @code{service} form without its second argument:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36131 +#: guix-git/doc/guix.texi:36621 #, no-wrap msgid "(service @var{type})\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36135 +#: guix-git/doc/guix.texi:36625 msgid "The returned service in this case has the default value specified by @var{type}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36138 +#: guix-git/doc/guix.texi:36628 msgid "@xref{Service Types and Services}, for examples." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36140 +#: guix-git/doc/guix.texi:36630 #, no-wrap msgid "{Scheme Procedure} service-extension @var{target-type} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36146 +#: guix-git/doc/guix.texi:36636 msgid "@var{compute} Return a new extension for services of type @var{target-type}. @var{compute} must be a one-argument procedure: @code{fold-services} calls it, passing it the value associated with the service that provides the extension; it must return a valid value for the target service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36148 +#: guix-git/doc/guix.texi:36638 #, no-wrap msgid "{Scheme Procedure} service-extension? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36150 +#: guix-git/doc/guix.texi:36640 msgid "Return true if @var{obj} is a service extension." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36156 +#: guix-git/doc/guix.texi:36646 msgid "Occasionally, you might want to simply extend an existing service. This involves creating a new service type and specifying the extension of interest, which can be verbose; the @code{simple-service} procedure provides a shorthand for this." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36157 +#: guix-git/doc/guix.texi:36647 #, no-wrap msgid "{Scheme Procedure} simple-service @var{name} @var{target} @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36161 +#: guix-git/doc/guix.texi:36651 msgid "Return a service that extends @var{target} with @var{value}. This works by creating a singleton service type @var{name}, of which the returned service is an instance." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36164 +#: guix-git/doc/guix.texi:36654 msgid "For example, this extends mcron (@pxref{Scheduled Job Execution}) with an additional job:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36168 +#: guix-git/doc/guix.texi:36658 #, no-wrap msgid "" "(simple-service 'my-mcron-job mcron-service-type\n" @@ -64024,185 +64897,185 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36178 +#: guix-git/doc/guix.texi:36668 msgid "At the core of the service abstraction lies the @code{fold-services} procedure, which is responsible for ``compiling'' a list of services down to a single directory that contains everything needed to boot and run the system---the directory shown by the @command{guix system build} command (@pxref{Invoking guix system}). In essence, it propagates service extensions down the service graph, updating each node parameters on the way, until it reaches the root node." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36179 +#: guix-git/doc/guix.texi:36669 #, no-wrap msgid "{Scheme Procedure} fold-services @var{services} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36183 +#: guix-git/doc/guix.texi:36673 msgid "[#:target-type @var{system-service-type}] Fold @var{services} by propagating their extensions down to the root of type @var{target-type}; return the root service adjusted accordingly." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36187 +#: guix-git/doc/guix.texi:36677 msgid "Lastly, the @code{(gnu services)} module also defines several essential service types, some of which are listed below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36188 +#: guix-git/doc/guix.texi:36678 #, no-wrap msgid "{Scheme Variable} system-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36191 +#: guix-git/doc/guix.texi:36681 msgid "This is the root of the service graph. It produces the system directory as returned by the @command{guix system build} command." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36193 +#: guix-git/doc/guix.texi:36683 #, no-wrap msgid "{Scheme Variable} boot-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36196 +#: guix-git/doc/guix.texi:36686 msgid "The type of the ``boot service'', which produces the @dfn{boot script}. The boot script is what the initial RAM disk runs when booting." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36198 +#: guix-git/doc/guix.texi:36688 #, no-wrap msgid "{Scheme Variable} etc-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36202 +#: guix-git/doc/guix.texi:36692 msgid "The type of the @file{/etc} service. This service is used to create files under @file{/etc} and can be extended by passing it name/file tuples such as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36205 +#: guix-git/doc/guix.texi:36695 #, no-wrap msgid "(list `(\"issue\" ,(plain-file \"issue\" \"Welcome!\\n\")))\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36209 +#: guix-git/doc/guix.texi:36699 msgid "In this example, the effect would be to add an @file{/etc/issue} file pointing to the given file." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36211 +#: guix-git/doc/guix.texi:36701 #, no-wrap msgid "{Scheme Variable} setuid-program-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36215 +#: guix-git/doc/guix.texi:36705 msgid "Type for the ``setuid-program service''. This service collects lists of executable file names, passed as gexps, and adds them to the set of setuid-root programs on the system (@pxref{Setuid Programs})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36217 +#: guix-git/doc/guix.texi:36707 #, no-wrap msgid "{Scheme Variable} profile-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36221 +#: guix-git/doc/guix.texi:36711 msgid "Type of the service that populates the @dfn{system profile}---i.e., the programs under @file{/run/current-system/profile}. Other services can extend it by passing it lists of packages to add to the system profile." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:36225 +#: guix-git/doc/guix.texi:36715 msgid "provenance-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36225 +#: guix-git/doc/guix.texi:36715 #, no-wrap msgid "{Scheme Variable} provenance-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36229 +#: guix-git/doc/guix.texi:36719 msgid "This is the type of the service that records @dfn{provenance meta-data} in the system itself. It creates several files under @file{/run/current-system}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36231 +#: guix-git/doc/guix.texi:36721 #, no-wrap msgid "channels.scm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36236 +#: guix-git/doc/guix.texi:36726 msgid "This is a ``channel file'' that can be passed to @command{guix pull -C} or @command{guix time-machine -C}, and which describes the channels used to build the system, if that information was available (@pxref{Channels})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36237 +#: guix-git/doc/guix.texi:36727 #, no-wrap msgid "configuration.scm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36242 +#: guix-git/doc/guix.texi:36732 msgid "This is the file that was passed as the value for this @code{provenance-service-type} service. By default, @command{guix system reconfigure} automatically passes the OS configuration file it received on the command line." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36243 +#: guix-git/doc/guix.texi:36733 #, no-wrap msgid "provenance" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36246 +#: guix-git/doc/guix.texi:36736 msgid "This contains the same information as the two other files but in a format that is more readily processable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36250 +#: guix-git/doc/guix.texi:36740 msgid "In general, these two pieces of information (channels and configuration file) are enough to reproduce the operating system ``from source''." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36251 +#: guix-git/doc/guix.texi:36741 #, no-wrap msgid "Caveats" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36258 +#: guix-git/doc/guix.texi:36748 msgid "This information is necessary to rebuild your operating system, but it is not always sufficient. In particular, @file{configuration.scm} itself is insufficient if it is not self-contained---if it refers to external Guile modules or to extra files. If you want @file{configuration.scm} to be self-contained, we recommend that modules or files it refers to be part of a channel." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36266 +#: guix-git/doc/guix.texi:36756 msgid "Besides, provenance meta-data is ``silent'' in the sense that it does not change the bits contained in your system, @emph{except for the meta-data bits themselves}. Two different OS configurations or sets of channels can lead to the same system, bit-for-bit; when @code{provenance-service-type} is used, these two systems will have different meta-data and thus different store file names, which makes comparison less trivial." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36271 +#: guix-git/doc/guix.texi:36761 msgid "This service is automatically added to your operating system configuration when you use @command{guix system reconfigure}, @command{guix system init}, or @command{guix deploy}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36273 +#: guix-git/doc/guix.texi:36763 #, no-wrap msgid "{Scheme Variable} linux-loadable-module-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36277 +#: guix-git/doc/guix.texi:36767 msgid "Type of the service that collects lists of packages containing kernel-loadable modules, and adds them to the set of kernel-loadable modules." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36280 +#: guix-git/doc/guix.texi:36770 msgid "This service type is intended to be extended by other service types, such as below:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36286 +#: guix-git/doc/guix.texi:36776 #, no-wrap msgid "" "(simple-service 'installing-module\n" @@ -64212,192 +65085,192 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36290 +#: guix-git/doc/guix.texi:36780 msgid "This does not actually load modules at bootup, only adds it to the kernel profile so that it @emph{can} be loaded by other means." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36295 guix-git/doc/guix.texi:37447 +#: guix-git/doc/guix.texi:36785 #, no-wrap msgid "shepherd services" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36296 +#: guix-git/doc/guix.texi:36786 #, no-wrap msgid "PID 1" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36297 +#: guix-git/doc/guix.texi:36787 #, no-wrap msgid "init system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36303 +#: guix-git/doc/guix.texi:36793 msgid "The @code{(gnu services shepherd)} module provides a way to define services managed by the GNU@tie{}Shepherd, which is the initialization system---the first process that is started when the system boots, also known as PID@tie{}1 (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36309 +#: guix-git/doc/guix.texi:36799 msgid "Services in the Shepherd can depend on each other. For instance, the SSH daemon may need to be started after the syslog daemon has been started, which in turn can only happen once all the file systems have been mounted. The simple operating system defined earlier (@pxref{Using the Configuration System}) results in a service graph like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36311 +#: guix-git/doc/guix.texi:36801 msgid "@image{images/shepherd-graph,,5in,Typical shepherd service graph.}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36315 +#: guix-git/doc/guix.texi:36805 msgid "You can actually generate such a graph for any operating system definition using the @command{guix system shepherd-graph} command (@pxref{system-shepherd-graph, @command{guix system shepherd-graph}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36319 +#: guix-git/doc/guix.texi:36809 msgid "The @code{%shepherd-root-service} is a service object representing PID@tie{}1, of type @code{shepherd-root-service-type}; it can be extended by passing it lists of @code{} objects." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36320 +#: guix-git/doc/guix.texi:36810 #, no-wrap msgid "{Data Type} shepherd-service" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36322 +#: guix-git/doc/guix.texi:36812 msgid "The data type representing a service managed by the Shepherd." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:36324 +#: guix-git/doc/guix.texi:36814 #, no-wrap msgid "provision" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36326 +#: guix-git/doc/guix.texi:36816 msgid "This is a list of symbols denoting what the service provides." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36331 +#: guix-git/doc/guix.texi:36821 msgid "These are the names that may be passed to @command{herd start}, @command{herd status}, and similar commands (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual}). @xref{Slots of services, the @code{provides} slot,, shepherd, The GNU Shepherd Manual}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36332 +#: guix-git/doc/guix.texi:36822 #, no-wrap msgid "@code{requirement} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36334 +#: guix-git/doc/guix.texi:36824 msgid "List of symbols denoting the Shepherd services this one depends on." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36335 +#: guix-git/doc/guix.texi:36825 #, no-wrap msgid "one-shot services, for the Shepherd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36340 +#: guix-git/doc/guix.texi:36830 msgid "Whether this service is @dfn{one-shot}. One-shot services stop immediately after their @code{start} action has completed. @xref{Slots of services,,, shepherd, The GNU Shepherd Manual}, for more info." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36341 +#: guix-git/doc/guix.texi:36831 #, no-wrap msgid "@code{respawn?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36344 +#: guix-git/doc/guix.texi:36834 msgid "Whether to restart the service when it stops, for instance when the underlying process dies." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:36345 +#: guix-git/doc/guix.texi:36835 #, no-wrap msgid "start" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:36346 +#: guix-git/doc/guix.texi:36836 #, no-wrap msgid "@code{stop} (default: @code{#~(const #f)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36352 +#: guix-git/doc/guix.texi:36842 msgid "The @code{start} and @code{stop} fields refer to the Shepherd's facilities to start and stop processes (@pxref{Service De- and Constructors,,, shepherd, The GNU Shepherd Manual}). They are given as G-expressions that get expanded in the Shepherd configuration file (@pxref{G-Expressions})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36353 +#: guix-git/doc/guix.texi:36843 #, no-wrap msgid "@code{actions} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36354 +#: guix-git/doc/guix.texi:36844 #, no-wrap msgid "actions, of Shepherd services" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36359 +#: guix-git/doc/guix.texi:36849 msgid "This is a list of @code{shepherd-action} objects (see below) defining @dfn{actions} supported by the service, in addition to the standard @code{start} and @code{stop} actions. Actions listed here become available as @command{herd} sub-commands:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36362 +#: guix-git/doc/guix.texi:36852 #, no-wrap msgid "herd @var{action} @var{service} [@var{arguments}@dots{}]\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36364 +#: guix-git/doc/guix.texi:36854 #, no-wrap msgid "@code{auto-start?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36367 +#: guix-git/doc/guix.texi:36857 msgid "Whether this service should be started automatically by the Shepherd. If it is @code{#f} the service has to be started manually with @code{herd start}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36370 +#: guix-git/doc/guix.texi:36860 msgid "A documentation string, as shown when running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36373 +#: guix-git/doc/guix.texi:36863 #, no-wrap msgid "herd doc @var{service-name}\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36377 +#: guix-git/doc/guix.texi:36867 msgid "where @var{service-name} is one of the symbols in @code{provision} (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36381 +#: guix-git/doc/guix.texi:36871 msgid "This is the list of modules that must be in scope when @code{start} and @code{stop} are evaluated." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36389 +#: guix-git/doc/guix.texi:36879 msgid "The example below defines a Shepherd service that spawns @command{syslogd}, the system logger from the GNU Networking Utilities (@pxref{syslogd invocation, @command{syslogd},, inetutils, GNU Inetutils}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36401 +#: guix-git/doc/guix.texi:36891 #, no-wrap msgid "" "(let ((config (plain-file \"syslogd.conf\" \"@dots{}\")))\n" @@ -64413,55 +65286,55 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36416 +#: guix-git/doc/guix.texi:36906 msgid "Key elements in this example are the @code{start} and @code{stop} fields: they are @dfn{staged} code snippets that use the @code{make-forkexec-constructor} procedure provided by the Shepherd and its dual, @code{make-kill-destructor} (@pxref{Service De- and Constructors,,, shepherd, The GNU Shepherd Manual}). The @code{start} field will have @command{shepherd} spawn @command{syslogd} with the given option; note that we pass @code{config} after @option{--rcfile}, which is a configuration file declared above (contents of this file are omitted). Likewise, the @code{stop} field tells how this service is to be stopped; in this case, it is stopped by making the @code{kill} system call on its PID@. Code staging is achieved using G-expressions: @code{#~} stages code, while @code{#$} ``escapes'' back to host code (@pxref{G-Expressions})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36417 +#: guix-git/doc/guix.texi:36907 #, no-wrap msgid "{Data Type} shepherd-action" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36420 +#: guix-git/doc/guix.texi:36910 msgid "This is the data type that defines additional actions implemented by a Shepherd service (see above)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36424 +#: guix-git/doc/guix.texi:36914 msgid "Symbol naming the action." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36427 +#: guix-git/doc/guix.texi:36917 msgid "This is a documentation string for the action. It can be viewed by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36430 +#: guix-git/doc/guix.texi:36920 #, no-wrap msgid "herd doc @var{service} action @var{action}\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36432 +#: guix-git/doc/guix.texi:36922 #, no-wrap msgid "procedure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36436 +#: guix-git/doc/guix.texi:36926 msgid "This should be a gexp that evaluates to a procedure of at least one argument, which is the ``running value'' of the service (@pxref{Slots of services,,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36440 +#: guix-git/doc/guix.texi:36930 msgid "The following example defines an action called @code{say-hello} that kindly greets the user:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36449 +#: guix-git/doc/guix.texi:36939 #, no-wrap msgid "" "(shepherd-action\n" @@ -64474,12 +65347,12 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36452 +#: guix-git/doc/guix.texi:36942 msgid "Assuming this action is added to the @code{example} service, then you can do:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36458 +#: guix-git/doc/guix.texi:36948 #, no-wrap msgid "" "# herd say-hello example\n" @@ -64489,66 +65362,66 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36463 +#: guix-git/doc/guix.texi:36953 msgid "This, as you can see, is a fairly sophisticated way to say hello. @xref{Service Convenience,,, shepherd, The GNU Shepherd Manual}, for more info on actions." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36465 +#: guix-git/doc/guix.texi:36955 #, no-wrap msgid "{Scheme Variable} shepherd-root-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36467 +#: guix-git/doc/guix.texi:36957 msgid "The service type for the Shepherd ``root service''---i.e., PID@tie{}1." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36472 +#: guix-git/doc/guix.texi:36962 msgid "This is the service type that extensions target when they want to create shepherd services (@pxref{Service Types and Services}, for an example). Each extension must pass a list of @code{}. Its value must be a @code{shepherd-configuration}, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36474 +#: guix-git/doc/guix.texi:36964 #, no-wrap msgid "{Data Type} shepherd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36476 guix-git/doc/guix.texi:37463 +#: guix-git/doc/guix.texi:36966 guix-git/doc/guix.texi:37959 msgid "This data type represents the Shepherd's configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36478 guix-git/doc/guix.texi:37465 +#: guix-git/doc/guix.texi:36968 guix-git/doc/guix.texi:37961 #, no-wrap msgid "shepherd (default: @code{shepherd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36480 guix-git/doc/guix.texi:37467 +#: guix-git/doc/guix.texi:36970 guix-git/doc/guix.texi:37963 msgid "The Shepherd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36481 guix-git/doc/guix.texi:37471 +#: guix-git/doc/guix.texi:36971 guix-git/doc/guix.texi:37967 #, no-wrap msgid "services (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36485 guix-git/doc/guix.texi:37475 +#: guix-git/doc/guix.texi:36975 guix-git/doc/guix.texi:37971 msgid "A list of @code{} to start. You should probably use the service extension mechanism instead (@pxref{Shepherd Services})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36490 +#: guix-git/doc/guix.texi:36980 msgid "The following example specifies the Shepherd package for the operating system:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36505 +#: guix-git/doc/guix.texi:36995 #, no-wrap msgid "" "(operating-system\n" @@ -64567,51 +65440,51 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36507 +#: guix-git/doc/guix.texi:36997 #, no-wrap msgid "{Scheme Variable} %shepherd-root-service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36509 +#: guix-git/doc/guix.texi:36999 msgid "This service represents PID@tie{}1." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36513 +#: guix-git/doc/guix.texi:37003 #, fuzzy, no-wrap #| msgid "Documentation" msgid "complex configurations" msgstr "مستندات" #. type: Plain text -#: guix-git/doc/guix.texi:36518 +#: guix-git/doc/guix.texi:37008 msgid "Some programs might have rather complex configuration files or formats, and to make it easier to create Scheme bindings for these configuration files, you can use the utilities defined in the @code{(gnu services configuration)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36526 +#: guix-git/doc/guix.texi:37016 msgid "The main utility is the @code{define-configuration} macro, which you will use to define a Scheme record type (@pxref{Record Overview,,, guile, GNU Guile Reference Manual}). The Scheme record will be serialized to a configuration file by using @dfn{serializers}, which are procedures that take some kind of Scheme value and returns a G-expression (@pxref{G-Expressions}), which should, once serialized to the disk, return a string. More details are listed below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36527 +#: guix-git/doc/guix.texi:37017 #, no-wrap msgid "{Scheme Syntax} define-configuration @var{name} @var{clause1} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36531 +#: guix-git/doc/guix.texi:37021 msgid "@var{clause2} ... Create a record type named @code{@var{name}} that contains the fields found in the clauses." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36533 +#: guix-git/doc/guix.texi:37023 msgid "A clause can have one of the following forms:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36538 +#: guix-git/doc/guix.texi:37028 #, no-wrap msgid "" "(@var{field-name}\n" @@ -64621,7 +65494,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36543 +#: guix-git/doc/guix.texi:37033 #, no-wrap msgid "" "(@var{field-name}\n" @@ -64632,7 +65505,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36547 +#: guix-git/doc/guix.texi:37037 #, no-wrap msgid "" "(@var{field-name}\n" @@ -64642,7 +65515,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36552 +#: guix-git/doc/guix.texi:37042 #, no-wrap msgid "" "(@var{field-name}\n" @@ -64652,37 +65525,37 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36556 +#: guix-git/doc/guix.texi:37046 msgid "@var{field-name} is an identifier that denotes the name of the field in the generated record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36564 +#: guix-git/doc/guix.texi:37054 msgid "@var{type} is the type of the value corresponding to @var{field-name}; since Guile is untyped, a predicate procedure---@code{@var{type}?}---will be called on the value corresponding to the field to ensure that the value is of the correct type. This means that if say, @var{type} is @code{package}, then a procedure named @code{package?} will be applied on the value to make sure that it is indeed a @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36568 +#: guix-git/doc/guix.texi:37058 msgid "@var{default-value} is the default value corresponding to the field; if none is specified, the user is forced to provide a value when creating an object of the record type." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36573 +#: guix-git/doc/guix.texi:37063 msgid "@var{documentation} is a string formatted with Texinfo syntax which should provide a description of what setting this field does." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36580 +#: guix-git/doc/guix.texi:37070 msgid "@var{serializer} is the name of a procedure which takes two arguments, the first is the name of the field, and the second is the value corresponding to the field. The procedure should return a string or G-expression (@pxref{G-Expressions}) that represents the content that will be serialized to the configuration file. If none is specified, a procedure of the name @code{serialize-@var{type}} will be used." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36582 +#: guix-git/doc/guix.texi:37072 msgid "A simple serializer procedure could look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36587 +#: guix-git/doc/guix.texi:37077 #, no-wrap msgid "" "(define (serialize-boolean field-name value)\n" @@ -64691,12 +65564,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36598 +#: guix-git/doc/guix.texi:37088 msgid "In some cases multiple different configuration records might be defined in the same file, but their serializers for the same type might have to be different, because they have different configuration formats. For example, the @code{serialize-boolean} procedure for the Getmail service would have to be different for the one for the Transmission service. To make it easier to deal with this situation, one can specify a serializer prefix by using the @code{prefix} literal in the @code{define-configuration} form. This means that one doesn't have to manually specify a custom @var{serializer} for every field." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36602 +#: guix-git/doc/guix.texi:37092 #, no-wrap msgid "" "(define (foo-serialize-string field-name value)\n" @@ -64705,7 +65578,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36605 +#: guix-git/doc/guix.texi:37095 #, no-wrap msgid "" "(define (bar-serialize-string field-name value)\n" @@ -64714,7 +65587,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36611 +#: guix-git/doc/guix.texi:37101 #, no-wrap msgid "" "(define-configuration foo-configuration\n" @@ -64726,7 +65599,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36617 +#: guix-git/doc/guix.texi:37107 #, no-wrap msgid "" "(define-configuration bar-configuration\n" @@ -64737,12 +65610,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36623 +#: guix-git/doc/guix.texi:37113 msgid "However, in some cases you might not want to serialize any of the values of the record, to do this, you can use the @code{no-serialization} literal. There is also the @code{define-configuration/no-serialization} macro which is a shorthand of this." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36631 +#: guix-git/doc/guix.texi:37121 #, no-wrap msgid "" ";; Nothing will be serialized to disk.\n" @@ -64755,7 +65628,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36637 +#: guix-git/doc/guix.texi:37127 #, no-wrap msgid "" ";; The same thing as above.\n" @@ -64766,23 +65639,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36640 +#: guix-git/doc/guix.texi:37130 #, no-wrap msgid "{Scheme Syntax} define-maybe @var{type}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36645 +#: guix-git/doc/guix.texi:37135 msgid "Sometimes a field should not be serialized if the user doesn’t specify a value. To achieve this, you can use the @code{define-maybe} macro to define a ``maybe type''; if the value of a maybe type is set to the @code{disabled}, it will not be serialized." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36652 +#: guix-git/doc/guix.texi:37142 msgid "When defining a ``maybe type'', the corresponding serializer for the regular type will be used by default. For example, a field of type @code{maybe-string} will be serialized using the @code{serialize-string} procedure by default, you can of course change this by specifying a custom serializer procedure. Likewise, the type of the value would have to be a string, unless it is set to the @code{disabled} symbol." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36655 +#: guix-git/doc/guix.texi:37145 #, no-wrap msgid "" "(define-maybe string)\n" @@ -64790,7 +65663,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36658 +#: guix-git/doc/guix.texi:37148 #, no-wrap msgid "" "(define (serialize-string field-name value)\n" @@ -64799,7 +65672,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36665 +#: guix-git/doc/guix.texi:37155 #, no-wrap msgid "" "(define-configuration baz-configuration\n" @@ -64811,12 +65684,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36669 +#: guix-git/doc/guix.texi:37159 msgid "Like with @code{define-configuration}, one can set a prefix for the serializer name by using the @code{prefix} literal." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36673 +#: guix-git/doc/guix.texi:37163 #, no-wrap msgid "" "(define-maybe integer\n" @@ -64825,7 +65698,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36676 +#: guix-git/doc/guix.texi:37166 #, no-wrap msgid "" "(define (baz-serialize-interger field-name value)\n" @@ -64833,12 +65706,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36683 +#: guix-git/doc/guix.texi:37173 msgid "There is also the @code{no-serialization} literal, which when set means that no serializer will be defined for the ``maybe type'', regardless of its value is @code{disabled} or not. @code{define-maybe/no-serialization} is a shorthand for specifying the @code{no-serialization} literal." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36686 +#: guix-git/doc/guix.texi:37176 #, no-wrap msgid "" "(define-maybe/no-serialization symbol)\n" @@ -64846,7 +65719,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36691 +#: guix-git/doc/guix.texi:37181 #, no-wrap msgid "" "(define-configuration/no-serialization test-configuration\n" @@ -64856,66 +65729,66 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36694 +#: guix-git/doc/guix.texi:37184 #, no-wrap msgid "{Scheme Procedure} serialize-configuration @var{configuration} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36700 +#: guix-git/doc/guix.texi:37190 msgid "@var{fields} Return a G-expression that contains the values corresponding to the @var{fields} of @var{configuration}, a record that has been generated by @code{define-configuration}. The G-expression can then be serialized to disk by using something like @code{mixed-text-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36702 +#: guix-git/doc/guix.texi:37192 #, no-wrap msgid "{Scheme Procedure} validate-configuration @var{configuration}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36706 +#: guix-git/doc/guix.texi:37196 msgid "@var{fields} Type-check @var{fields}, a list of field names of @var{configuration}, a configuration record created by @code{define-configuration}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36708 +#: guix-git/doc/guix.texi:37198 #, no-wrap msgid "{Scheme Procedure} empty-serializer @var{field-name} @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36711 +#: guix-git/doc/guix.texi:37201 msgid "A serializer that just returns an empty string. The @code{serialize-package} procedure is an alias for this." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36716 +#: guix-git/doc/guix.texi:37206 msgid "Once you have defined a configuration record, you will most likely also want to document it so that other people know to use it. To help with that, there are two procedures, both of which are documented below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36717 +#: guix-git/doc/guix.texi:37207 #, no-wrap msgid "{Scheme Procedure} generate-documentation @var{documentation} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36724 +#: guix-git/doc/guix.texi:37214 msgid "@var{documentation-name} Generate a Texinfo fragment from the docstrings in @var{documentation}, a list of @code{(@var{label} @var{fields} @var{sub-documentation} ...)}. @var{label} should be a symbol and should be the name of the configuration record. @var{fields} should be a list of all the fields available for the configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36729 +#: guix-git/doc/guix.texi:37219 msgid "@var{sub-documentation} is a @code{(@var{field-name} @var{configuration-name})} tuple. @var{field-name} is the name of the field which takes another configuration record as its value, and @var{configuration-name} is the name of that configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36736 +#: guix-git/doc/guix.texi:37226 msgid "@var{sub-documentation} is only needed if there are nested configuration records. For example, the @code{getmail-configuration} record (@pxref{Mail Services}) accepts a @code{getmail-configuration-file} record in one of its @code{rcfile} field, therefore documentation for @code{getmail-configuration-file} is nested in @code{getmail-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36743 +#: guix-git/doc/guix.texi:37233 #, no-wrap msgid "" "(generate-documentation\n" @@ -64926,33 +65799,33 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36747 +#: guix-git/doc/guix.texi:37237 msgid "@var{documentation-name} should be a symbol and should be the name of the configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36750 +#: guix-git/doc/guix.texi:37240 #, no-wrap msgid "{Scheme Procedure} configuration->documentation" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36757 +#: guix-git/doc/guix.texi:37247 msgid "@var{configuration-symbol} Take @var{configuration-symbol}, the symbol corresponding to the name used when defining a configuration record with @code{define-configuration}, and print the Texinfo documentation of its fields. This is useful if there aren’t any nested configuration records since it only prints the documentation for the top-level fields." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36765 +#: guix-git/doc/guix.texi:37255 msgid "As of right now, there is no automated way to generate documentation for configuration records and put them in the manual. Instead, every time you make a change to the docstrings of a configuration record, you have to manually call @code{generate-documentation} or @code{configuration->documentation}, and paste the output into the @file{doc/guix.texi} file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36769 +#: guix-git/doc/guix.texi:37259 msgid "Below is an example of a record type created using @code{define-configuration} and friends." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36776 +#: guix-git/doc/guix.texi:37266 #, no-wrap msgid "" "(use-modules (gnu services)\n" @@ -64964,7 +65837,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36784 +#: guix-git/doc/guix.texi:37274 #, no-wrap msgid "" ";; Turn field names, which are Scheme symbols into strings\n" @@ -64978,7 +65851,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36787 +#: guix-git/doc/guix.texi:37277 #, no-wrap msgid "" "(define (serialize-string field-name value)\n" @@ -64987,7 +65860,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36790 +#: guix-git/doc/guix.texi:37280 #, no-wrap msgid "" "(define (serialize-integer field-name value)\n" @@ -64996,7 +65869,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36793 +#: guix-git/doc/guix.texi:37283 #, no-wrap msgid "" "(define (serialize-boolean field-name value)\n" @@ -65005,7 +65878,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36796 +#: guix-git/doc/guix.texi:37286 #, no-wrap msgid "" "(define (serialize-contact-name field-name value)\n" @@ -65014,7 +65887,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36799 +#: guix-git/doc/guix.texi:37289 #, no-wrap msgid "" "(define (list-of-contact-configurations? lst)\n" @@ -65023,7 +65896,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36804 +#: guix-git/doc/guix.texi:37294 #, no-wrap msgid "" "(define (serialize-list-of-contact-configurations field-name value)\n" @@ -65034,7 +65907,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36811 +#: guix-git/doc/guix.texi:37301 #, no-wrap msgid "" "(define (serialize-contacts-list-configuration configuration)\n" @@ -65047,7 +65920,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36814 +#: guix-git/doc/guix.texi:37304 #, no-wrap msgid "" "(define-maybe integer)\n" @@ -65056,7 +65929,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36829 +#: guix-git/doc/guix.texi:37319 #, no-wrap msgid "" "(define-configuration contact-configuration\n" @@ -65077,7 +65950,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36841 +#: guix-git/doc/guix.texi:37331 #, no-wrap msgid "" "(define-configuration contacts-list-configuration\n" @@ -65094,12 +65967,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36844 +#: guix-git/doc/guix.texi:37334 msgid "A contacts list configuration could then be created like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36860 +#: guix-git/doc/guix.texi:37350 #, no-wrap msgid "" "(define my-contacts\n" @@ -65119,12 +65992,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36864 +#: guix-git/doc/guix.texi:37354 msgid "After serializing the configuration to disk, the resulting file would look like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36869 +#: guix-git/doc/guix.texi:37359 #, no-wrap msgid "" "[owner]\n" @@ -65134,7 +66007,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36874 +#: guix-git/doc/guix.texi:37364 #, no-wrap msgid "" "[Bob]\n" @@ -65145,7 +66018,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36878 +#: guix-git/doc/guix.texi:37368 #, no-wrap msgid "" "[Charlie]\n" @@ -65154,202 +66027,202 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36883 +#: guix-git/doc/guix.texi:37373 #, no-wrap msgid "home configuration" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36895 +#: guix-git/doc/guix.texi:37385 msgid "Guix supports declarative configuration of @dfn{home environments} by utilizing the configuration mechanism described in the previous chapter (@pxref{Defining Services}), but for user's dotfiles and packages. It works both on Guix System and foreign distros and allows users to declare all the packages and services that should be installed and configured for the user. Once a user has written a file containing @code{home-environment} record, such a configuration can be @dfn{instantiated} by an unprivileged user with the @command{guix home} command (@pxref{Invoking guix home})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36912 +#: guix-git/doc/guix.texi:37402 msgid "The user's home environment usually consists of three basic parts: software, configuration, and state. Software in mainstream distros are usually installed system-wide, but with GNU Guix most software packages can be installed on a per-user basis without needing root privileges, and are thus considered part of the user’s @dfn{home environment}. Packages on their own not very useful in many cases, because often they require some additional configuration, usually config files that reside in @env{XDG_CONFIG_HOME} (@file{~/.config} by default) or other directories. Everything else can be considered state, like media files, application databases, and logs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36915 +#: guix-git/doc/guix.texi:37405 msgid "Using Guix for managing home environments provides a number of advantages:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36918 +#: guix-git/doc/guix.texi:37408 #, no-wrap msgid "All software can be configured in one language (Guile Scheme)," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36921 +#: guix-git/doc/guix.texi:37411 msgid "this gives users the ability to share values between configurations of different programs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36922 +#: guix-git/doc/guix.texi:37412 #, no-wrap msgid "A well-defined home environment is self-contained and can be" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36925 +#: guix-git/doc/guix.texi:37415 msgid "created in a declarative and reproducible way---there is no need to grab external binaries or manually edit some configuration file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36926 +#: guix-git/doc/guix.texi:37416 #, no-wrap msgid "After every @command{guix home reconfigure} invocation, a new home" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36930 +#: guix-git/doc/guix.texi:37420 msgid "environment generation will be created. This means that users can rollback to a previous home environment generation so they don’t have to worry about breaking their configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36931 +#: guix-git/doc/guix.texi:37421 #, no-wrap msgid "It is possible to manage stateful data with Guix Home, this" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36936 +#: guix-git/doc/guix.texi:37426 msgid "includes the ability to automatically clone Git repositories on the initial setup of the machine, and periodically running commands like @command{rsync} to sync data with another host. This functionality is still in an experimental stage, though." msgstr "" #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:36946 -#: guix-git/doc/guix.texi:36947 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37436 +#: guix-git/doc/guix.texi:37437 #, no-wrap msgid "Declaring the Home Environment" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 msgid "Customizing your Home." msgstr "" #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:37014 -#: guix-git/doc/guix.texi:37015 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37504 +#: guix-git/doc/guix.texi:37505 #, no-wrap msgid "Configuring the Shell" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 msgid "Enabling home environment." msgstr "" #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:37061 -#: guix-git/doc/guix.texi:37062 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37551 +#: guix-git/doc/guix.texi:37552 #, no-wrap msgid "Home Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 msgid "Specifying home services." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 msgid "Instantiating a home configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36953 +#: guix-git/doc/guix.texi:37443 msgid "The home environment is configured by providing a @code{home-environment} declaration in a file that can be passed to the @command{guix home} command (@pxref{Invoking guix home}). The easiest way to get started is by generating an initial configuration with @command{guix home import}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36956 +#: guix-git/doc/guix.texi:37446 #, no-wrap msgid "guix home import ~/src/guix-config\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36964 +#: guix-git/doc/guix.texi:37454 msgid "The @command{guix home import} command reads some of the ``dot files'' such as @file{~/.bashrc} found in your home directory and copies them to the given directory, @file{~/src/guix-config} in this case; it also reads the contents of your profile, @file{~/.guix-profile}, and, based on that, it populates @file{~/src/guix-config/home-configuration.scm} with a Home configuration that resembles your current configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36970 +#: guix-git/doc/guix.texi:37460 msgid "A simple setup can include Bash and a custom text configuration, like in the example below. Don't be afraid to declare home environment parts, which overlaps with your current dot files: before installing any configuration files, Guix Home will back up existing config files to a separate place in the home directory." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36976 +#: guix-git/doc/guix.texi:37466 msgid "It is highly recommended that you manage your shell or shells with Guix Home, because it will make sure that all the necessary scripts are sourced by the shell configuration file. Otherwise you will need to do it manually. (@pxref{Configuring the Shell})." msgstr "" #. type: findex -#: guix-git/doc/guix.texi:36978 +#: guix-git/doc/guix.texi:37468 #, no-wrap msgid "home-environment" msgstr "" #. type: include -#: guix-git/doc/guix.texi:36980 +#: guix-git/doc/guix.texi:37470 #, no-wrap msgid "he-config-bare-bones.scm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36987 +#: guix-git/doc/guix.texi:37477 msgid "The @code{packages} field should be self-explanatory, it will install the list of packages into the user's profile. The most important field is @code{services}, it contains a list of @dfn{home services}, which are the basic building blocks of a home environment." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36995 +#: guix-git/doc/guix.texi:37485 msgid "There is no daemon (at least not necessarily) related to a home service, a home service is just an element that is used to declare part of home environment and extend other parts of it. The extension mechanism discussed in the previous chapter (@pxref{Defining Services}) should not be confused with Shepherd services (@pxref{Shepherd Services}). Using this extension mechanism and some Scheme code that glues things together gives the user the freedom to declare their own, very custom, home environments." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36998 +#: guix-git/doc/guix.texi:37488 msgid "Once you have a configuration file that suits your needs, you can reconfigure your home by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37001 +#: guix-git/doc/guix.texi:37491 #, no-wrap msgid "guix home reconfigure config.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37005 +#: guix-git/doc/guix.texi:37495 msgid "This ``builds'' your home environment and creates @file{~/.guix-home} pointing to it. Voilà!" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37012 +#: guix-git/doc/guix.texi:37502 msgid "Make sure the operating system has elogind, systemd, or a similar mechanism to create the XDG run-time directory and has the @env{XDG_RUNTIME_DIR} variable set. Failing that, the @file{on-first-login} script will not execute anything, and processes like user Shepherd and its descendants will not start." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37018 +#: guix-git/doc/guix.texi:37508 msgid "This section is safe to skip if your shell or shells are managed by Guix Home. Otherwise, read it carefully." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37025 +#: guix-git/doc/guix.texi:37515 msgid "There are a few scripts that must be evaluated by a login shell to activate the home environment. The shell startup files only read by login shells often have @code{profile} suffix. For more information about login shells see @ref{Invoking Bash,,, bash, The GNU Bash Reference Manual} and see @ref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37032 +#: guix-git/doc/guix.texi:37522 msgid "The first script that needs to be sourced is @file{setup-environment}, which sets all the necessary environment variables (including variables declared by the user) and the second one is @file{on-first-login}, which starts Shepherd for the current user and performs actions declared by other home services that extends @code{home-run-on-first-login-service-type}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37035 +#: guix-git/doc/guix.texi:37525 msgid "Guix Home will always create @file{~/.profile}, which contains the following lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37040 +#: guix-git/doc/guix.texi:37530 #, no-wrap msgid "" "HOME_ENVIRONMENT=$HOME/.guix-home\n" @@ -65358,107 +66231,107 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37050 +#: guix-git/doc/guix.texi:37540 msgid "This makes POSIX compliant login shells activate the home environment. However, in most cases this file won't be read by most modern shells, because they are run in non POSIX mode by default and have their own @file{*profile} startup files. For example Bash will prefer @file{~/.bash_profile} in case it exists and only if it doesn't will it fallback to @file{~/.profile}. Zsh (if no additional options are specified) will ignore @file{~/.profile}, even if @file{~/.zprofile} doesn't exist." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37055 +#: guix-git/doc/guix.texi:37545 msgid "To make your shell respect @file{~/.profile}, add @code{. ~/.profile} or @code{source ~/profile} to the startup file for the login shell. In case of Bash, it is @file{~/.bash_profile}, and in case of Zsh, it is @file{~/.zprofile}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37059 +#: guix-git/doc/guix.texi:37549 msgid "This step is only required if your shell is NOT managed by Guix Home. Otherwise, everything will be done automatically." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37063 +#: guix-git/doc/guix.texi:37553 #, no-wrap msgid "home services" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37072 +#: guix-git/doc/guix.texi:37562 msgid "A @dfn{home service} is not necessarily something that has a daemon and is managed by Shepherd (@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}), in most cases it doesn't. It's a simple building block of the home environment, often declaring a set of packages to be installed in the home environment profile, a set of config files to be symlinked into @env{XDG_CONFIG_HOME} (@file{~/.config} by default), and environment variables to be set by a login shell." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37080 +#: guix-git/doc/guix.texi:37570 msgid "There is a service extension mechanism (@pxref{Service Composition}) which allows home services to extend other home services and utilize capabilities they provide; for example: declare mcron jobs (@pxref{Top,,, mcron, GNU@tie{}Mcron}) by extending @ref{Mcron Home Service}; declare daemons by extending @ref{Shepherd Home Service}; add commands, which will be invoked on by the Bash by extending @ref{Shells Home Services, @code{home-bash-service-type}}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37091 -msgid "A good way to discover avaliable home services is using the @command{guix home search} command (@pxref{Invoking guix home}). After the required home services are found, include its module with the @code{use-modules} form (@pxref{use-modules,, Using Guile Modules, guile, The GNU Guile Reference Manual}), or the @code{#:use-modules} directive (@pxref{define-module,, Creating Guile Modules, guile, The GNU Guile Reference Manual}) and declare a home service using the @code{service} function, or extend a service type by declaring a new service with the @code{simple-service} procedure from @code{(gnu services)}." +#: guix-git/doc/guix.texi:37581 +msgid "A good way to discover available home services is using the @command{guix home search} command (@pxref{Invoking guix home}). After the required home services are found, include its module with the @code{use-modules} form (@pxref{use-modules,, Using Guile Modules, guile, The GNU Guile Reference Manual}), or the @code{#:use-modules} directive (@pxref{define-module,, Creating Guile Modules, guile, The GNU Guile Reference Manual}) and declare a home service using the @code{service} function, or extend a service type by declaring a new service with the @code{simple-service} procedure from @code{(gnu services)}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:37097 guix-git/doc/guix.texi:37100 -#: guix-git/doc/guix.texi:37101 +#: guix-git/doc/guix.texi:37587 guix-git/doc/guix.texi:37590 +#: guix-git/doc/guix.texi:37591 #, no-wrap msgid "Essential Home Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Environment variables, packages, on-* scripts." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Shells: Shells Home Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "POSIX shells, Bash, Zsh." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Mcron: Mcron Home Service" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Scheduled User's Job Execution." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Shepherd: Shepherd Home Service" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Managing User's Daemons." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37106 +#: guix-git/doc/guix.texi:37596 msgid "There are a few essential home services defined in @code{(gnu services)}, they are mostly for internal use and are required to build a home environment, but some of them will be useful for the end user." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37107 +#: guix-git/doc/guix.texi:37597 #, no-wrap msgid "environment variables" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37109 +#: guix-git/doc/guix.texi:37599 #, no-wrap msgid "{Scheme Variable} home-environment-variables-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37114 +#: guix-git/doc/guix.texi:37604 msgid "The service of this type will be instantiated by every home environment automatically by default, there is no need to define it, but someone may want to extend it with a list of pairs to set some environment variables." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37118 +#: guix-git/doc/guix.texi:37608 #, no-wrap msgid "" "(list (\"ENV_VAR1\" . \"value1\")\n" @@ -65466,12 +66339,12 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37123 +#: guix-git/doc/guix.texi:37613 msgid "The easiest way to extend a service type, without defining new service type is to use the @code{simple-service} helper from @code{(gnu services)}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37131 +#: guix-git/doc/guix.texi:37621 #, no-wrap msgid "" "(simple-service 'some-useful-env-vars-service\n" @@ -65483,12 +66356,12 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37136 +#: guix-git/doc/guix.texi:37626 msgid "If you include such a service in you home environment definition, it will add the following content to the @file{setup-environment} script (which is expected to be sourced by the login shell):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37141 +#: guix-git/doc/guix.texi:37631 #, no-wrap msgid "" "export LESSHISTFILE=$XDG_CACHE_HOME/.lesshst\n" @@ -65497,595 +66370,577 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37148 +#: guix-git/doc/guix.texi:37638 msgid "Make sure that module @code{(gnu packages shells)} is imported with @code{use-modules} or any other way, this namespace contains the definition of the @code{zsh} packages, which is used in the example above." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37161 +#: guix-git/doc/guix.texi:37651 msgid "The association list (@pxref{Association Lists, alists, Association Lists, guile, The GNU Guile Reference manual}) is a data structure containing key-value pairs, for @code{home-environment-variables-service-type} the key is always a string, the value can be a string, string-valued gexp (@pxref{G-Expressions}), file-like object (@pxref{G-Expressions, file-like object}) or boolean. For gexps, the variable will be set to the value of the gexp; for file-like objects, it will be set to the path of the file in the store (@pxref{The Store}); for @code{#t}, it will export the variable without any value; and for @code{#f}, it will omit variable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37164 +#: guix-git/doc/guix.texi:37654 #, no-wrap msgid "{Scheme Variable} home-profile-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37170 -msgid "The service of this type will be instantiated by every home environment automatically, there is no need to define it, but you may want to extend it with a list of packages if you want to install additional packages into your profile. Other services, which need to make some programs avaliable to the user will also extend this service type." +#: guix-git/doc/guix.texi:37660 +msgid "The service of this type will be instantiated by every home environment automatically, there is no need to define it, but you may want to extend it with a list of packages if you want to install additional packages into your profile. Other services, which need to make some programs available to the user will also extend this service type." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37172 +#: guix-git/doc/guix.texi:37662 msgid "The extension value is just a list of packages:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37175 +#: guix-git/doc/guix.texi:37665 #, no-wrap msgid "(list htop vim emacs)\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37185 +#: guix-git/doc/guix.texi:37675 msgid "The same approach as @code{simple-service} (@pxref{Service Reference, simple-service}) for @code{home-environment-variables-service-type} can be used here, too. Make sure that modules containing the specified packages are imported with @code{use-modules}. To find a package or information about its module use @command{guix search} (@pxref{Invoking guix package}). Alternatively, @code{specification->package} can be used to get the package record from string without importing related module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37189 +#: guix-git/doc/guix.texi:37679 msgid "There are few more essential services, but users are not expected to extend them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37190 +#: guix-git/doc/guix.texi:37680 #, no-wrap msgid "{Scheme Variable} home-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37195 +#: guix-git/doc/guix.texi:37685 msgid "The root of home services DAG, it generates a folder, which later will be symlinked to @file{~/.guix-home}, it contains configurations, profile with binaries and libraries, and some necessary scripts to glue things together." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37197 +#: guix-git/doc/guix.texi:37687 #, no-wrap msgid "{Scheme Variable} home-run-on-first-login-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37202 +#: guix-git/doc/guix.texi:37692 msgid "The service of this type generates a Guile script, which is expected to be executed by the login shell. It is only executed if the special flag file inside @env{XDG_RUNTIME_DIR} hasn't been created, this prevents redundant executions of the script if multiple login shells are spawned." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37208 +#: guix-git/doc/guix.texi:37698 msgid "It can be extended with a gexp. However, to autostart an application, users @emph{should not} use this service, in most cases it's better to extend @code{home-shepherd-service-type} with a Shepherd service (@pxref{Shepherd Services}), or extend the shell's startup file with the required command using the appropriate service type." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37210 +#: guix-git/doc/guix.texi:37700 #, no-wrap msgid "{Scheme Variable} home-activation-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37214 +#: guix-git/doc/guix.texi:37704 msgid "The service of this type generates a guile script, which runs on every @command{guix home reconfigure} invocation or any other action, which leads to the activation of the home environment." msgstr "" #. type: node -#: guix-git/doc/guix.texi:37216 +#: guix-git/doc/guix.texi:37706 #, no-wrap msgid "Shells Home Services" msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:37217 +#: guix-git/doc/guix.texi:37707 #, no-wrap msgid "Shells" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37219 guix-git/doc/guix.texi:37500 +#: guix-git/doc/guix.texi:37709 guix-git/doc/guix.texi:37996 #, no-wrap msgid "shell" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37220 +#: guix-git/doc/guix.texi:37710 #, no-wrap msgid "login shell" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37221 +#: guix-git/doc/guix.texi:37711 #, no-wrap msgid "interactive shell" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37222 guix-git/doc/guix.texi:37502 +#: guix-git/doc/guix.texi:37712 guix-git/doc/guix.texi:37998 #, no-wrap msgid "bash" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37223 guix-git/doc/guix.texi:37503 +#: guix-git/doc/guix.texi:37713 guix-git/doc/guix.texi:37999 #, no-wrap msgid "zsh" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37229 +#: guix-git/doc/guix.texi:37719 msgid "Shells play a quite important role in the environment initialization process, you can configure them manually as described in section @ref{Configuring the Shell}, but the recommended way is to use home services listed below. It's both easier and more reliable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37239 +#: guix-git/doc/guix.texi:37729 msgid "Each home environment instantiates @code{home-shell-profile-service-type}, which creates a @file{~/.profile} startup file for all POSIX-compatible shells. This file contains all the necessary steps to properly initialize the environment, but many modern shells like Bash or Zsh prefer their own startup files, that's why the respective home services (@code{home-bash-service-type} and @code{home-zsh-service-type}) ensure that @file{~/.profile} is sourced by @file{~/.bash_profile} and @file{~/.zprofile}, respectively." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:37240 +#: guix-git/doc/guix.texi:37730 #, no-wrap msgid "Shell Profile Service" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37242 +#: guix-git/doc/guix.texi:37732 #, no-wrap msgid "{Data Type} home-shell-profile-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37244 +#: guix-git/doc/guix.texi:37734 msgid "Available @code{home-shell-profile-configuration} fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37246 +#: guix-git/doc/guix.texi:37736 #, no-wrap msgid "@code{profile} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37256 -msgid "@code{home-shell-profile} is instantiated automatically by @code{home-environment}, DO NOT create this service manually, it can only be extended. @code{profile} is a list of file-like objects, which will go to @file{~/.profile}. By default @file{~/.profile} contains the initialization code, which have to be evaluated by login shell to make home-environment's profile avaliable to the user, but other commands can be added to the file if it is really necessary. In most cases shell's configuration files are preferred places for user's customizations. Extend home-shell-profile service only if you really know what you do." +#: guix-git/doc/guix.texi:37746 +msgid "@code{home-shell-profile} is instantiated automatically by @code{home-environment}, DO NOT create this service manually, it can only be extended. @code{profile} is a list of file-like objects, which will go to @file{~/.profile}. By default @file{~/.profile} contains the initialization code which must be evaluated by the login shell to make home-environment's profile available to the user, but other commands can be added to the file if it is really necessary. In most cases shell's configuration files are preferred places for user's customizations. Extend home-shell-profile service only if you really know what you do." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:37261 +#: guix-git/doc/guix.texi:37751 #, no-wrap msgid "Bash Home Service" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:37264 +#: guix-git/doc/guix.texi:37754 msgid "home-bash-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37264 +#: guix-git/doc/guix.texi:37754 #, no-wrap msgid "{Data Type} home-bash-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37266 +#: guix-git/doc/guix.texi:37756 msgid "Available @code{home-bash-configuration} fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37268 +#: guix-git/doc/guix.texi:37758 #, no-wrap msgid "@code{package} (default: @code{bash}) (type: package)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37270 +#: guix-git/doc/guix.texi:37760 msgid "The Bash package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37271 +#: guix-git/doc/guix.texi:37761 #, no-wrap msgid "@code{guix-defaults?} (default: @code{#t}) (type: boolean)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37274 +#: guix-git/doc/guix.texi:37764 msgid "Add sane defaults like reading @file{/etc/bashrc} and coloring the output of @command{ls} to the end of the @file{.bashrc} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37275 guix-git/doc/guix.texi:37329 -#: guix-git/doc/guix.texi:37368 +#: guix-git/doc/guix.texi:37765 guix-git/doc/guix.texi:37819 +#: guix-git/doc/guix.texi:37858 #, no-wrap msgid "@code{environment-variables} (default: @code{()}) (type: alist)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37280 +#: guix-git/doc/guix.texi:37770 msgid "Association list of environment variables to set for the Bash session. The rules for the @code{home-environment-variables-service-type} apply here (@pxref{Essential Home Services}). The contents of this field will be added after the contents of the @code{bash-profile} field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37281 guix-git/doc/guix.texi:37334 +#: guix-git/doc/guix.texi:37771 guix-git/doc/guix.texi:37824 #, no-wrap msgid "@code{aliases} (default: @code{()}) (type: alist)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37286 +#: guix-git/doc/guix.texi:37776 msgid "Association list of aliases to set for the Bash session. The aliases will be defined after the contents of the @code{bashrc} field has been put in the @file{.bashrc} file. The alias will automatically be quoted, so something line this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37289 +#: guix-git/doc/guix.texi:37779 #, no-wrap msgid "'((\\\"ls\\\" . \\\"ls -alF\\\"))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37292 +#: guix-git/doc/guix.texi:37782 msgid "turns into" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37295 +#: guix-git/doc/guix.texi:37785 #, no-wrap msgid "alias ls=\\\"ls -alF\\\"\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37297 guix-git/doc/guix.texi:37338 +#: guix-git/doc/guix.texi:37787 guix-git/doc/guix.texi:37828 #, no-wrap msgid "@code{bash-profile} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37302 +#: guix-git/doc/guix.texi:37792 msgid "List of file-like objects, which will be added to @file{.bash_profile}. Used for executing user's commands at start of login shell (In most cases the shell started on tty just after login). @file{.bash_login} won't be ever read, because @file{.bash_profile} always present." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37303 guix-git/doc/guix.texi:37342 +#: guix-git/doc/guix.texi:37793 guix-git/doc/guix.texi:37832 #, no-wrap msgid "@code{bashrc} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37308 +#: guix-git/doc/guix.texi:37798 msgid "List of file-like objects, which will be added to @file{.bashrc}. Used for executing user's commands at start of interactive shell (The shell for interactive usage started by typing @code{bash} or by terminal app or any other program)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37309 guix-git/doc/guix.texi:37346 +#: guix-git/doc/guix.texi:37799 guix-git/doc/guix.texi:37836 #, no-wrap msgid "@code{bash-logout} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37314 +#: guix-git/doc/guix.texi:37804 msgid "List of file-like objects, which will be added to @file{.bash_logout}. Used for executing user's commands at the exit of login shell. It won't be read in some cases (if the shell terminates by exec'ing another process for example)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37324 +#: guix-git/doc/guix.texi:37814 msgid "You can extend the Bash service by using the @code{home-bash-extension} configuration record, whose fields most mirror that of @code{home-bash-configuration} (@pxref{home-bash-configuration}). The contents of the extensions will be added to the end of the corresponding Bash configuration files (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37325 +#: guix-git/doc/guix.texi:37815 #, no-wrap msgid "{Data Type} home-bash-extension" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37327 +#: guix-git/doc/guix.texi:37817 msgid "Available @code{home-bash-extension} fields are:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37333 +#: guix-git/doc/guix.texi:37823 msgid "Additional environment variables to set. These will be combined with the environment variables from other extensions and the base service to form one coherent block of environment variables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37337 +#: guix-git/doc/guix.texi:37827 msgid "Additional aliases to set. These will be combined with the aliases from other extensions and the base service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37341 +#: guix-git/doc/guix.texi:37831 msgid "Additional text blocks to add to @file{.bash_profile}, which will be combined with text blocks from other extensions and the base service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37345 +#: guix-git/doc/guix.texi:37835 msgid "Additional text blocks to add to @file{.bashrc}, which will be combined with text blocks from other extensions and the base service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37349 +#: guix-git/doc/guix.texi:37839 msgid "Additional text blocks to add to @file{.bash_logout}, which will be combined with text blocks from other extensions and the base service." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:37353 +#: guix-git/doc/guix.texi:37843 #, no-wrap msgid "Zsh Home Service" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37355 +#: guix-git/doc/guix.texi:37845 #, no-wrap msgid "{Data Type} home-zsh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37357 +#: guix-git/doc/guix.texi:37847 msgid "Available @code{home-zsh-configuration} fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37359 +#: guix-git/doc/guix.texi:37849 #, no-wrap msgid "@code{package} (default: @code{zsh}) (type: package)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37361 +#: guix-git/doc/guix.texi:37851 msgid "The Zsh package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37362 +#: guix-git/doc/guix.texi:37852 #, no-wrap msgid "@code{xdg-flavor?} (default: @code{#t}) (type: boolean)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37367 +#: guix-git/doc/guix.texi:37857 msgid "Place all the configs to @file{$XDG_CONFIG_HOME/zsh}. Makes @file{~/.zshenv} to set @env{ZDOTDIR} to @file{$XDG_CONFIG_HOME/zsh}. Shell startup process will continue with @file{$XDG_CONFIG_HOME/zsh/.zshenv}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37370 +#: guix-git/doc/guix.texi:37860 msgid "Association list of environment variables to set for the Zsh session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37371 +#: guix-git/doc/guix.texi:37861 #, no-wrap msgid "@code{zshenv} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37376 +#: guix-git/doc/guix.texi:37866 msgid "List of file-like objects, which will be added to @file{.zshenv}. Used for setting user's shell environment variables. Must not contain commands assuming the presence of tty or producing output. Will be read always. Will be read before any other file in @env{ZDOTDIR}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37377 +#: guix-git/doc/guix.texi:37867 #, no-wrap msgid "@code{zprofile} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37382 +#: guix-git/doc/guix.texi:37872 msgid "List of file-like objects, which will be added to @file{.zprofile}. Used for executing user's commands at start of login shell (In most cases the shell started on tty just after login). Will be read before @file{.zlogin}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37383 +#: guix-git/doc/guix.texi:37873 #, no-wrap msgid "@code{zshrc} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37388 +#: guix-git/doc/guix.texi:37878 msgid "List of file-like objects, which will be added to @file{.zshrc}. Used for executing user's commands at start of interactive shell (The shell for interactive usage started by typing @code{zsh} or by terminal app or any other program)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37389 +#: guix-git/doc/guix.texi:37879 #, no-wrap msgid "@code{zlogin} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37393 +#: guix-git/doc/guix.texi:37883 msgid "List of file-like objects, which will be added to @file{.zlogin}. Used for executing user's commands at the end of starting process of login shell." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37394 +#: guix-git/doc/guix.texi:37884 #, no-wrap msgid "@code{zlogout} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37399 +#: guix-git/doc/guix.texi:37889 msgid "List of file-like objects, which will be added to @file{.zlogout}. Used for executing user's commands at the exit of login shell. It won't be read in some cases (if the shell terminates by exec'ing another process for example)." msgstr "" #. type: node -#: guix-git/doc/guix.texi:37404 +#: guix-git/doc/guix.texi:37894 #, no-wrap msgid "Mcron Home Service" msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:37405 +#: guix-git/doc/guix.texi:37895 #, no-wrap msgid "Scheduled User's Job Execution" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37418 +#: guix-git/doc/guix.texi:37908 msgid "The @code{(gnu home services mcron)} module provides an interface to GNU@tie{}mcron, a daemon to run jobs at scheduled times (@pxref{Top,,, mcron, GNU@tie{}mcron}). The information about system's mcron is applicable here (@pxref{Scheduled Job Execution}), the only difference for home services is that they have to be declared in a @code{home-envirnoment} record instead of an @code{operating-system} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37419 +#: guix-git/doc/guix.texi:37909 #, no-wrap msgid "{Scheme Variable} home-mcron-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37423 +#: guix-git/doc/guix.texi:37913 msgid "This is the type of the @code{mcron} home service, whose value is an @code{home-mcron-configuration} object. It allows to manage scheduled tasks." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37430 +#: guix-git/doc/guix.texi:37920 #, no-wrap msgid "{Data Type} home-mcron-configuration" msgstr "" #. type: node -#: guix-git/doc/guix.texi:37444 +#: guix-git/doc/guix.texi:37934 #, no-wrap msgid "Shepherd Home Service" msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:37445 +#: guix-git/doc/guix.texi:37935 #, no-wrap -msgid "Managing User's Daemons" +msgid "Managing User Daemons" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:37937 +#, no-wrap +msgid "shepherd services, for users" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:37944 +msgid "The @code{(gnu home services shepherd)} module supports the definitions of per-user Shepherd services (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}). You extend @code{home-shepherd-service-type} with new services; Guix Home then takes care of starting the @code{shepherd} daemon for you when you log in, which in turns starts the services you asked for." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37449 +#: guix-git/doc/guix.texi:37945 #, no-wrap msgid "{Scheme Variable} home-shepherd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37454 +#: guix-git/doc/guix.texi:37950 msgid "The service type for the userland Shepherd, which allows one to manage long-running processes or one-shot tasks. User's Shepherd is not an init process (PID 1), but almost all other information described in (@pxref{Shepherd Services}) is applicable here too." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37459 +#: guix-git/doc/guix.texi:37955 msgid "This is the service type that extensions target when they want to create shepherd services (@pxref{Service Types and Services}, for an example). Each extension must pass a list of @code{}. Its value must be a @code{home-shepherd-configuration}, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37461 +#: guix-git/doc/guix.texi:37957 #, no-wrap msgid "{Data Type} home-shepherd-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37468 +#: guix-git/doc/guix.texi:37964 #, no-wrap msgid "auto-start? (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37470 +#: guix-git/doc/guix.texi:37966 msgid "Whether or not to start Shepherd on first login." msgstr "" #. type: section -#: guix-git/doc/guix.texi:37479 +#: guix-git/doc/guix.texi:37975 #, no-wrap msgid "Invoking @code{guix home}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37484 +#: guix-git/doc/guix.texi:37980 msgid "Once you have written a home environment declaration (@pxref{Declaring the Home Environment,,,,}, it can be @dfn{instantiated} using the @command{guix home} command. The synopsis is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37487 +#: guix-git/doc/guix.texi:37983 #, no-wrap msgid "guix home @var{options}@dots{} @var{action} @var{file}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37494 +#: guix-git/doc/guix.texi:37990 msgid "@var{file} must be the name of a file containing a @code{home-environment} declaration. @var{action} specifies how the home environment is instantiated, but there are few auxiliary actions which don't instantiate it. Currently the following values are supported:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37499 +#: guix-git/doc/guix.texi:37995 msgid "Display available home service type definitions that match the given regular expressions, sorted by relevance:" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37501 +#: guix-git/doc/guix.texi:37997 #, no-wrap msgid "shell-profile" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37513 +#: guix-git/doc/guix.texi:38008 #, no-wrap msgid "" "$ guix home search shell\n" "name: home-shell-profile\n" -"location: gnu/home/services/shells.scm:73:2\n" +"location: gnu/home/services/shells.scm:100:2\n" "extends: home-files\n" -"description: Create `~/.profile', which is used for environment initialization\n" -"+ of POSIX compatible login shells. Can be extended with a list of strings or\n" -"+ gexps.\n" +"description: Create `~/.profile', which is used for environment initialization of POSIX compliant login shells.\n" +"+ This service type can be extended with a list of file-like objects.\n" "relevance: 6\n" "\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37519 -#, no-wrap -msgid "" -"name: home-zsh-plugin-manager\n" -"location: gnu/home/services/shellutils.scm:28:2\n" -"extends: home-zsh home-profile\n" -"description: Install plugins in profile and configure Zsh to load them.\n" -"relevance: 1\n" -"\n" -msgstr "" - -#. type: example -#: guix-git/doc/guix.texi:37526 -#, no-wrap -msgid "" -"name: home-zsh-direnv\n" -"location: gnu/home/services/shellutils.scm:69:2\n" -"extends: home-profile home-zsh\n" -"description: Enables `direnv' for `zsh'. Adds hook to `.zshrc' and installs a\n" -"+ package in the profile.\n" -"relevance: 1\n" -"\n" -msgstr "" - -#. type: example -#: guix-git/doc/guix.texi:37535 +#: guix-git/doc/guix.texi:38014 #, no-wrap msgid "" -"name: home-zsh-autosuggestions\n" -"location: gnu/home/services/shellutils.scm:43:2\n" -"extends: home-zsh-plugin-manager home-zsh\n" -"description: Enables Fish-like fast/unobtrusive autosuggestions for `zsh' and\n" -"+ sets reasonable default values for some plugin's variables to improve perfomance\n" -"+ and adjust behavior: `(history completion)' is set for strategy, manual rebind\n" -"+ and async are enabled.\n" -"relevance: 1\n" +"name: home-fish\n" +"location: gnu/home/services/shells.scm:640:2\n" +"extends: home-files home-profile\n" +"description: Install and configure Fish, the friendly interactive shell.\n" +"relevance: 3\n" "\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37541 +#: guix-git/doc/guix.texi:38020 #, no-wrap msgid "" "name: home-zsh\n" -"location: gnu/home/services/shells.scm:236:2\n" +"location: gnu/home/services/shells.scm:290:2\n" "extends: home-files home-profile\n" "description: Install and configure Zsh.\n" "relevance: 1\n" @@ -66093,61 +66948,66 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37547 +#: guix-git/doc/guix.texi:38026 #, no-wrap msgid "" "name: home-bash\n" -"location: gnu/home/services/shells.scm:388:2\n" +"location: gnu/home/services/shells.scm:508:2\n" "extends: home-files home-profile\n" -"description: Install and configure Bash.\n" +"description: Install and configure GNU Bash.\n" "relevance: 1\n" "\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37563 -msgid "Build the home environment described in @var{file}, and switch to it. Switching means that the activation script will be evaluated and (in basic scenario) symlinks to configuration files generated from @code{home-environment} declaration will be created in @file{~}. If the file with the same path already exists in home folder it will be moved to @file{~/TIMESTAMP-guix-home-legacy-configs-backup}, where TIMESTAMP is a current UNIX epoch time." +#: guix-git/doc/guix.texi:38033 +msgid "As for @command{guix search}, the result is written in @code{recutils} format, which makes it easy to filter the output (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:38042 +msgid "Build the home environment described in @var{file}, and switch to it. Switching means that the activation script will be evaluated and (in basic scenario) symlinks to configuration files generated from @code{home-environment} declaration will be created in @file{~}. If the file with the same path already exists in home folder it will be moved to @file{~/@var{timestamp}-guix-home-legacy-configs-backup}, where @var{timestamp} is a current UNIX epoch time." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37568 +#: guix-git/doc/guix.texi:38047 msgid "It is highly recommended to run @command{guix pull} once before you run @command{guix home reconfigure} for the first time (@pxref{Invoking guix pull})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37575 -msgid "This effects all the configuration specified in @var{file}. The command starts Shepherd services specified in @var{file} that are not currently running; if a service is currently running, this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop X} or @code{herd restart X})." +#: guix-git/doc/guix.texi:38054 +msgid "This effects all the configuration specified in @var{file}. The command starts Shepherd services specified in @var{file} that are not currently running; if a service is currently running, this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop @var{service}} or @code{herd restart @var{service}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37581 +#: guix-git/doc/guix.texi:38060 msgid "This command creates a new generation whose number is one greater than the current generation (as reported by @command{guix home list-generations}). If that generation already exists, it will be overwritten. This behavior mirrors that of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37582 +#: guix-git/doc/guix.texi:38061 #, no-wrap msgid "provenance tracking, of the home environment" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37587 +#: guix-git/doc/guix.texi:38066 msgid "Upon completion, the new home is deployed under @file{~/.guix-home}. This directory contains @dfn{provenance meta-data}: the list of channels in use (@pxref{Channels}) and @var{file} itself, when available. You can view the provenance information by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37590 +#: guix-git/doc/guix.texi:38069 #, no-wrap msgid "guix home describe\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37596 +#: guix-git/doc/guix.texi:38075 msgid "This information is useful should you later want to inspect how this particular generation was built. In fact, assuming @var{file} is self-contained, you can later rebuild generation @var{n} of your home environment with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37602 +#: guix-git/doc/guix.texi:38081 #, no-wrap msgid "" "guix time-machine \\\n" @@ -66158,111 +67018,111 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37609 +#: guix-git/doc/guix.texi:38088 msgid "You can think of it as some sort of built-in version control! Your home is not just a binary artifact: @emph{it carries its own source}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37615 +#: guix-git/doc/guix.texi:38094 #, fuzzy, no-wrap #| msgid "Documentation" msgid "home generations" msgstr "مستندات" #. type: table -#: guix-git/doc/guix.texi:37618 +#: guix-git/doc/guix.texi:38097 msgid "Switch to an existing home generation. This action atomically switches the home profile to the specified home generation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37622 +#: guix-git/doc/guix.texi:38101 msgid "The target generation can be specified explicitly by its generation number. For example, the following invocation would switch to home generation 7:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37625 +#: guix-git/doc/guix.texi:38104 #, no-wrap msgid "guix home switch-generation 7\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37636 +#: guix-git/doc/guix.texi:38115 #, no-wrap msgid "guix home switch-generation -- -1\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37645 +#: guix-git/doc/guix.texi:38124 msgid "Switch to the preceding home generation. This is the inverse of @command{reconfigure}, and it is exactly the same as invoking @command{switch-generation} with an argument of @code{-1}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37647 +#: guix-git/doc/guix.texi:38126 #, no-wrap msgid "deleting home generations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37652 +#: guix-git/doc/guix.texi:38131 msgid "Delete home generations, making them candidates for garbage collection (@pxref{Invoking guix gc}, for information on how to run the ``garbage collector'')." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37656 +#: guix-git/doc/guix.texi:38135 msgid "This works in the same way as @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). With no arguments, all home generations but the current one are deleted:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37659 +#: guix-git/doc/guix.texi:38138 #, no-wrap msgid "guix home delete-generations\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37663 +#: guix-git/doc/guix.texi:38142 msgid "You can also select the generations you want to delete. The example below deletes all the home generations that are more than two months old:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37666 +#: guix-git/doc/guix.texi:38145 #, no-wrap msgid "guix home delete-generations 2m\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37672 +#: guix-git/doc/guix.texi:38151 msgid "Build the derivation of the home environment, which includes all the configuration files and programs needed. This action does not actually install anything." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37676 +#: guix-git/doc/guix.texi:38155 msgid "Describe the current home generation: its file name, as well as provenance information when available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37682 +#: guix-git/doc/guix.texi:38161 msgid "List a summary of each generation of the home environment available on disk, in a human-readable way. This is similar to the @option{--list-generations} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:37690 +#: guix-git/doc/guix.texi:38169 #, no-wrap msgid "$ guix home list-generations 10d\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37692 +#: guix-git/doc/guix.texi:38171 #, no-wrap msgid "import" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37699 +#: guix-git/doc/guix.texi:38178 msgid "Generate a @dfn{home environment} from the packages in the default profile and configuration files found in the user's home directory. The configuration files will be copied to the specified directory, and a @file{home-configuration.scm} will be populated with the home environment. Note that not every home service that exists is supported (@pxref{Home Services})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:37703 +#: guix-git/doc/guix.texi:38182 #, no-wrap msgid "" "$ guix home import ~/guix-config\n" @@ -66270,52 +67130,62 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37718 +#: guix-git/doc/guix.texi:38197 msgid "Consider the home-environment @var{expr} evaluates to. This is an alternative to specifying a file which evaluates to a home environment." msgstr "" +#. type: table +#: guix-git/doc/guix.texi:38200 +msgid "Instruct @command{guix home reconfigure} to allow system downgrades." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:38207 +msgid "Just like @command{guix system}, @command{guix home reconfigure}, by default, prevents you from downgrading your home to older or unrelated revisions compared to the channel revisions that were used to deploy it---those shown by @command{guix home describe}. Using @option{--allow-downgrades} allows you to bypass that check, at the risk of downgrading your home---be careful!" +msgstr "" + #. type: cindex -#: guix-git/doc/guix.texi:37724 +#: guix-git/doc/guix.texi:38213 #, no-wrap msgid "documentation, searching for" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37725 +#: guix-git/doc/guix.texi:38214 #, no-wrap msgid "searching for documentation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37726 +#: guix-git/doc/guix.texi:38215 #, no-wrap msgid "Info, documentation format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37727 +#: guix-git/doc/guix.texi:38216 #, no-wrap msgid "man pages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37728 +#: guix-git/doc/guix.texi:38217 #, no-wrap msgid "manual pages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37735 +#: guix-git/doc/guix.texi:38224 msgid "In most cases packages installed with Guix come with documentation. There are two main documentation formats: ``Info'', a browsable hypertext format used for GNU software, and ``manual pages'' (or ``man pages''), the linear documentation format traditionally found on Unix. Info manuals are accessed with the @command{info} command or with Emacs, and man pages are accessed using @command{man}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37739 +#: guix-git/doc/guix.texi:38228 msgid "You can look for documentation of software installed on your system by keyword. For example, the following command searches for information about ``TLS'' in Info manuals:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37747 +#: guix-git/doc/guix.texi:38236 #, no-wrap msgid "" "$ info -k TLS\n" @@ -66327,12 +67197,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37753 +#: guix-git/doc/guix.texi:38242 msgid "The command below searches for the same keyword in man pages@footnote{The database searched by @command{man -k} is only created in profiles that contain the @code{man-db} package.}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37759 +#: guix-git/doc/guix.texi:38248 #, no-wrap msgid "" "$ man -k TLS\n" @@ -66342,97 +67212,97 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37765 +#: guix-git/doc/guix.texi:38254 msgid "These searches are purely local to your computer so you have the guarantee that documentation you find corresponds to what you have actually installed, you can access it off-line, and your privacy is respected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37768 +#: guix-git/doc/guix.texi:38257 msgid "Once you have these results, you can view the relevant documentation by running, say:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37771 +#: guix-git/doc/guix.texi:38260 #, no-wrap msgid "$ info \"(gnutls)Core TLS API\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37775 +#: guix-git/doc/guix.texi:38264 msgid "or:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37778 +#: guix-git/doc/guix.texi:38267 #, no-wrap msgid "$ man certtool\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37786 +#: guix-git/doc/guix.texi:38275 msgid "Info manuals contain sections and indices as well as hyperlinks like those found in Web pages. The @command{info} reader (@pxref{Top, Info reader,, info-stnd, Stand-alone GNU Info}) and its Emacs counterpart (@pxref{Misc Help,,, emacs, The GNU Emacs Manual}) provide intuitive key bindings to navigate manuals. @xref{Getting Started,,, info, Info: An Introduction}, for an introduction to Info navigation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37790 +#: guix-git/doc/guix.texi:38279 #, no-wrap msgid "debugging files" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37796 +#: guix-git/doc/guix.texi:38285 msgid "Program binaries, as produced by the GCC compilers for instance, are typically written in the ELF format, with a section containing @dfn{debugging information}. Debugging information is what allows the debugger, GDB, to map binary code to source code; it is required to debug a compiled program in good conditions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37800 +#: guix-git/doc/guix.texi:38289 msgid "This chapter explains how to use separate debug info when packages provide it, and how to rebuild packages with debug info when it's missing." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37816 +#: guix-git/doc/guix.texi:38305 msgid "The problem with debugging information is that is takes up a fair amount of disk space. For example, debugging information for the GNU C Library weighs in at more than 60 MiB@. Thus, as a user, keeping all the debugging info of all the installed programs is usually not an option. Yet, space savings should not come at the cost of an impediment to debugging---especially in the GNU system, which should make it easier for users to exert their computing freedom (@pxref{GNU Distribution})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37823 +#: guix-git/doc/guix.texi:38312 msgid "Thankfully, the GNU Binary Utilities (Binutils) and GDB provide a mechanism that allows users to get the best of both worlds: debugging information can be stripped from the binaries and stored in separate files. GDB is then able to load debugging information from those files, when they are available (@pxref{Separate Debug Files,,, gdb, Debugging with GDB})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37831 +#: guix-git/doc/guix.texi:38320 msgid "The GNU distribution takes advantage of this by storing debugging information in the @code{lib/debug} sub-directory of a separate package output unimaginatively called @code{debug} (@pxref{Packages with Multiple Outputs}). Users can choose to install the @code{debug} output of a package when they need it. For instance, the following command installs the debugging information for the GNU C Library and for GNU Guile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37834 +#: guix-git/doc/guix.texi:38323 #, no-wrap msgid "guix install glibc:debug guile:debug\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37840 +#: guix-git/doc/guix.texi:38329 msgid "GDB must then be told to look for debug files in the user's profile, by setting the @code{debug-file-directory} variable (consider setting it from the @file{~/.gdbinit} file, @pxref{Startup,,, gdb, Debugging with GDB}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37843 +#: guix-git/doc/guix.texi:38332 #, no-wrap msgid "(gdb) set debug-file-directory ~/.guix-profile/lib/debug\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37847 +#: guix-git/doc/guix.texi:38336 msgid "From there on, GDB will pick up debugging information from the @file{.debug} files under @file{~/.guix-profile/lib/debug}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37852 +#: guix-git/doc/guix.texi:38341 msgid "Below is an alternative GDB script which is useful when working with other profiles. It takes advantage of the optional Guile integration in GDB. This snippet is included by default on Guix System in the @file{~/.gdbinit} file." msgstr "" #. type: example -#: guix-git/doc/guix.texi:37860 +#: guix-git/doc/guix.texi:38349 #, no-wrap msgid "" "guile\n" @@ -66444,32 +67314,32 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37868 +#: guix-git/doc/guix.texi:38357 msgid "In addition, you will most likely want GDB to be able to show the source code being debugged. To do that, you will have to unpack the source code of the package of interest (obtained with @code{guix build --source}, @pxref{Invoking guix build}), and to point GDB to that source directory using the @code{directory} command (@pxref{Source Path, @code{directory},, gdb, Debugging with GDB})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37876 +#: guix-git/doc/guix.texi:38365 msgid "The @code{debug} output mechanism in Guix is implemented by the @code{gnu-build-system} (@pxref{Build Systems}). Currently, it is opt-in---debugging information is available only for the packages with definitions explicitly declaring a @code{debug} output. To check whether a package has a @code{debug} output, use @command{guix package --list-available} (@pxref{Invoking guix package})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37878 +#: guix-git/doc/guix.texi:38367 msgid "Read on for how to deal with packages lacking a @code{debug} output." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37890 +#: guix-git/doc/guix.texi:38379 msgid "As we saw above, some packages, but not all, provide debugging info in a @code{debug} output. What can you do when debugging info is missing? The @option{--with-debug-info} option provides a solution to that: it allows you to rebuild the package(s) for which debugging info is missing---and only those---and to graft those onto the application you're debugging. Thus, while it's not as fast as installing a @code{debug} output, it is relatively inexpensive." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37895 +#: guix-git/doc/guix.texi:38384 msgid "Let's illustrate that. Suppose you're experiencing a bug in Inkscape and would like to see what's going on in GLib, a library that's deep down in its dependency graph. As it turns out, GLib does not have a @code{debug} output and the backtrace GDB shows is all sadness:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37906 +#: guix-git/doc/guix.texi:38395 #, no-wrap msgid "" "(gdb) bt\n" @@ -66484,17 +67354,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37910 +#: guix-git/doc/guix.texi:38399 msgid "To address that, you install Inkscape linked against a variant GLib that contains debug info:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37916 +#: guix-git/doc/guix.texi:38405 msgid "This time, debugging will be a whole lot nicer:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37934 +#: guix-git/doc/guix.texi:38423 #, no-wrap msgid "" "$ gdb --args sh -c 'exec inkscape'\n" @@ -66516,28 +67386,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37937 +#: guix-git/doc/guix.texi:38426 msgid "Much better!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37941 +#: guix-git/doc/guix.texi:38430 msgid "Note that there can be packages for which @option{--with-debug-info} will not have the desired effect. @xref{Package Transformation Options, @option{--with-debug-info}}, for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37945 +#: guix-git/doc/guix.texi:38434 #, no-wrap msgid "security updates" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37954 +#: guix-git/doc/guix.texi:38443 msgid "Occasionally, important security vulnerabilities are discovered in software packages and must be patched. Guix developers try hard to keep track of known vulnerabilities and to apply fixes as soon as possible in the @code{master} branch of Guix (we do not yet provide a ``stable'' branch containing only security updates). The @command{guix lint} tool helps developers find out about vulnerable versions of software packages in the distribution:" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:37961 +#: guix-git/doc/guix.texi:38450 #, no-wrap msgid "" "$ guix lint -c cve\n" @@ -66548,39 +67418,39 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37964 +#: guix-git/doc/guix.texi:38453 msgid "@xref{Invoking guix lint}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37973 +#: guix-git/doc/guix.texi:38462 msgid "Guix follows a functional package management discipline (@pxref{Introduction}), which implies that, when a package is changed, @emph{every package that depends on it} must be rebuilt. This can significantly slow down the deployment of fixes in core packages such as libc or Bash, since basically the whole distribution would need to be rebuilt. Using pre-built binaries helps (@pxref{Substitutes}), but deployment may still take more time than desired." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37974 +#: guix-git/doc/guix.texi:38463 #, no-wrap msgid "grafts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37982 +#: guix-git/doc/guix.texi:38471 msgid "To address this, Guix implements @dfn{grafts}, a mechanism that allows for fast deployment of critical updates without the costs associated with a whole-distribution rebuild. The idea is to rebuild only the package that needs to be patched, and then to ``graft'' it onto packages explicitly installed by the user and that were previously referring to the original package. The cost of grafting is typically very low, and order of magnitudes lower than a full rebuild of the dependency chain." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37983 +#: guix-git/doc/guix.texi:38472 #, no-wrap msgid "replacements of packages, for grafts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37989 +#: guix-git/doc/guix.texi:38478 msgid "For instance, suppose a security update needs to be applied to Bash. Guix developers will provide a package definition for the ``fixed'' Bash, say @code{bash-fixed}, in the usual way (@pxref{Defining Packages}). Then, the original package definition is augmented with a @code{replacement} field pointing to the package containing the bug fix:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37996 +#: guix-git/doc/guix.texi:38485 #, no-wrap msgid "" "(define bash\n" @@ -66591,190 +67461,190 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38006 +#: guix-git/doc/guix.texi:38495 msgid "From there on, any package depending directly or indirectly on Bash---as reported by @command{guix gc --requisites} (@pxref{Invoking guix gc})---that is installed is automatically ``rewritten'' to refer to @code{bash-fixed} instead of @code{bash}. This grafting process takes time proportional to the size of the package, usually less than a minute for an ``average'' package on a recent machine. Grafting is recursive: when an indirect dependency requires grafting, then grafting ``propagates'' up to the package that the user is installing." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38014 +#: guix-git/doc/guix.texi:38503 msgid "Currently, the length of the name and version of the graft and that of the package it replaces (@code{bash-fixed} and @code{bash} in the example above) must be equal. This restriction mostly comes from the fact that grafting works by patching files, including binary files, directly. Other restrictions may apply: for instance, when adding a graft to a package providing a shared library, the original shared library and its replacement must have the same @code{SONAME} and be binary-compatible." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38018 +#: guix-git/doc/guix.texi:38507 msgid "The @option{--no-grafts} command-line option allows you to forcefully avoid grafting (@pxref{Common Build Options, @option{--no-grafts}}). Thus, the command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38021 +#: guix-git/doc/guix.texi:38510 #, no-wrap msgid "guix build bash --no-grafts\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38025 +#: guix-git/doc/guix.texi:38514 msgid "returns the store file name of the original Bash, whereas:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38028 +#: guix-git/doc/guix.texi:38517 #, no-wrap msgid "guix build bash\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38033 +#: guix-git/doc/guix.texi:38522 msgid "returns the store file name of the ``fixed'', replacement Bash. This allows you to distinguish between the two variants of Bash." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38036 +#: guix-git/doc/guix.texi:38525 msgid "To verify which Bash your whole profile refers to, you can run (@pxref{Invoking guix gc}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38039 +#: guix-git/doc/guix.texi:38528 #, no-wrap msgid "guix gc -R $(readlink -f ~/.guix-profile) | grep bash\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38044 +#: guix-git/doc/guix.texi:38533 msgid "@dots{} and compare the store file names that you get with those above. Likewise for a complete Guix system generation:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38047 +#: guix-git/doc/guix.texi:38536 #, no-wrap msgid "guix gc -R $(guix system build my-config.scm) | grep bash\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38051 +#: guix-git/doc/guix.texi:38540 msgid "Lastly, to check which Bash running processes are using, you can use the @command{lsof} command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38054 +#: guix-git/doc/guix.texi:38543 #, no-wrap msgid "lsof | grep /gnu/store/.*bash\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:38062 +#: guix-git/doc/guix.texi:38551 #, no-wrap msgid "bootstrapping" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38069 +#: guix-git/doc/guix.texi:38558 msgid "Bootstrapping in our context refers to how the distribution gets built ``from nothing''. Remember that the build environment of a derivation contains nothing but its declared inputs (@pxref{Introduction}). So there's an obvious chicken-and-egg problem: how does the first package get built? How does the first compiler get compiled?" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38077 +#: guix-git/doc/guix.texi:38566 msgid "It is tempting to think of this question as one that only die-hard hackers may care about. However, while the answer to that question is technical in nature, its implications are wide-ranging. How the distribution is bootstrapped defines the extent to which we, as individuals and as a collective of users and hackers, can trust the software we run. It is a central concern from the standpoint of @emph{security} and from a @emph{user freedom} viewpoint." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:38078 guix-git/doc/guix.texi:38290 +#: guix-git/doc/guix.texi:38567 guix-git/doc/guix.texi:38779 #, no-wrap msgid "bootstrap binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38088 +#: guix-git/doc/guix.texi:38577 msgid "The GNU system is primarily made of C code, with libc at its core. The GNU build system itself assumes the availability of a Bourne shell and command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and `grep'. Furthermore, build programs---programs that run @code{./configure}, @code{make}, etc.---are written in Guile Scheme (@pxref{Derivations}). Consequently, to be able to build anything at all, from scratch, Guix relies on pre-built binaries of Guile, GCC, Binutils, libc, and the other packages mentioned above---the @dfn{bootstrap binaries}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38092 +#: guix-git/doc/guix.texi:38581 msgid "These bootstrap binaries are ``taken for granted'', though we can also re-create them if needed (@pxref{Preparing to Use the Bootstrap Binaries})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:38099 +#: guix-git/doc/guix.texi:38588 #, no-wrap msgid "The Reduced Binary Seed Bootstrap" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38106 +#: guix-git/doc/guix.texi:38595 msgid "Guix---like other GNU/Linux distributions---is traditionally bootstrapped from a set of bootstrap binaries: Bourne shell, command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and `grep' and Guile, GCC, Binutils, and the GNU C Library (@pxref{Bootstrapping}). Usually, these bootstrap binaries are ``taken for granted.''" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38112 +#: guix-git/doc/guix.texi:38601 msgid "Taking the bootstrap binaries for granted means that we consider them to be a correct and trustworthy ``seed'' for building the complete system. Therein lies a problem: the combined size of these bootstrap binaries is about 250MB (@pxref{Bootstrappable Builds,,, mes, GNU Mes}). Auditing or even inspecting these is next to impossible." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38117 +#: guix-git/doc/guix.texi:38606 msgid "For @code{i686-linux} and @code{x86_64-linux}, Guix now features a ``Reduced Binary Seed'' bootstrap @footnote{We would like to say: ``Full Source Bootstrap'' and while we are working towards that goal it would be hyperbole to use that term for what we do now.}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38123 +#: guix-git/doc/guix.texi:38612 msgid "The Reduced Binary Seed bootstrap removes the most critical tools---from a trust perspective---from the bootstrap binaries: GCC, Binutils and the GNU C Library are replaced by: @code{bootstrap-mescc-tools} (a tiny assembler and linker) and @code{bootstrap-mes} (a small Scheme Interpreter and a C compiler written in Scheme and the Mes C Library, built for TinyCC and for GCC)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38128 +#: guix-git/doc/guix.texi:38617 msgid "Using these new binary seeds the ``missing'' Binutils, GCC, and the GNU C Library are built from source. From here on the more traditional bootstrap process resumes. This approach has reduced the bootstrap binaries in size to about 145MB in Guix v1.1." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38136 +#: guix-git/doc/guix.texi:38625 msgid "The next step that Guix has taken is to replace the shell and all its utilities with implementations in Guile Scheme, the @emph{Scheme-only bootstrap}. Gash (@pxref{Gash,,, gash, The Gash manual}) is a POSIX-compatible shell that replaces Bash, and it comes with Gash Utils which has minimalist replacements for Awk, the GNU Core Utilities, Grep, Gzip, Sed, and Tar. The rest of the bootstrap binary seeds that were removed are now built from source." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38146 +#: guix-git/doc/guix.texi:38635 msgid "Building the GNU System from source is currently only possible by adding some historical GNU packages as intermediate steps@footnote{Packages such as @code{gcc-2.95.3}, @code{binutils-2.14}, @code{glibc-2.2.5}, @code{gzip-1.2.4}, @code{tar-1.22}, and some others. For details, see @file{gnu/packages/commencement.scm}.}. As Gash and Gash Utils mature, and GNU packages become more bootstrappable again (e.g., new releases of GNU Sed will also ship as gzipped tarballs again, as alternative to the hard to bootstrap @code{xz}-compression), this set of added packages can hopefully be reduced again." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38150 +#: guix-git/doc/guix.texi:38639 msgid "The graph below shows the resulting dependency graph for @code{gcc-core-mesboot0}, the bootstrap compiler used for the traditional bootstrap of the rest of the Guix System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38153 +#: guix-git/doc/guix.texi:38642 msgid "@image{images/gcc-core-mesboot0-graph,6in,,Dependency graph of gcc-core-mesboot0}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38160 +#: guix-git/doc/guix.texi:38649 msgid "The only significant binary bootstrap seeds that remain@footnote{ Ignoring the 68KB @code{mescc-tools}; that will be removed later, together with @code{mes}.} are a Scheme interpreter and a Scheme compiler: GNU Mes and GNU Guile@footnote{Not shown in this graph are the static binaries for @file{bash}, @code{tar}, and @code{xz} that are used to get Guile running.}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38163 +#: guix-git/doc/guix.texi:38652 msgid "This further reduction has brought down the size of the binary seed to about 60MB for @code{i686-linux} and @code{x86_64-linux}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38168 +#: guix-git/doc/guix.texi:38657 msgid "Work is ongoing to remove all binary blobs from our free software bootstrap stack, working towards a Full Source Bootstrap. Also ongoing is work to bring these bootstraps to the @code{arm-linux} and @code{aarch64-linux} architectures and to the Hurd." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38172 +#: guix-git/doc/guix.texi:38661 msgid "If you are interested, join us on @samp{#bootstrappable} on the Freenode IRC network or discuss on @email{bug-mes@@gnu.org} or @email{gash-devel@@nongnu.org}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38179 +#: guix-git/doc/guix.texi:38668 msgid "@image{images/bootstrap-graph,6in,,Dependency graph of the early bootstrap derivations}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38184 +#: guix-git/doc/guix.texi:38673 msgid "The figure above shows the very beginning of the dependency graph of the distribution, corresponding to the package definitions of the @code{(gnu packages bootstrap)} module. A similar figure can be generated with @command{guix graph} (@pxref{Invoking guix graph}), along the lines of:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38189 +#: guix-git/doc/guix.texi:38678 #, no-wrap msgid "" "guix graph -t derivation \\\n" @@ -66783,12 +67653,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38192 +#: guix-git/doc/guix.texi:38681 msgid "or, for the further Reduced Binary Seed bootstrap" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38197 +#: guix-git/doc/guix.texi:38686 #, no-wrap msgid "" "guix graph -t derivation \\\n" @@ -66797,43 +67667,43 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38206 +#: guix-git/doc/guix.texi:38695 msgid "At this level of detail, things are slightly complex. First, Guile itself consists of an ELF executable, along with many source and compiled Scheme files that are dynamically loaded when it runs. This gets stored in the @file{guile-2.0.7.tar.xz} tarball shown in this graph. This tarball is part of Guix's ``source'' distribution, and gets inserted into the store with @code{add-to-store} (@pxref{The Store})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38215 +#: guix-git/doc/guix.texi:38704 msgid "But how do we write a derivation that unpacks this tarball and adds it to the store? To solve this problem, the @code{guile-bootstrap-2.0.drv} derivation---the first one that gets built---uses @code{bash} as its builder, which runs @code{build-bootstrap-guile.sh}, which in turn calls @code{tar} to unpack the tarball. Thus, @file{bash}, @file{tar}, @file{xz}, and @file{mkdir} are statically-linked binaries, also part of the Guix source distribution, whose sole purpose is to allow the Guile tarball to be unpacked." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38227 +#: guix-git/doc/guix.texi:38716 msgid "Once @code{guile-bootstrap-2.0.drv} is built, we have a functioning Guile that can be used to run subsequent build programs. Its first task is to download tarballs containing the other pre-built binaries---this is what the @file{.tar.xz.drv} derivations do. Guix modules such as @code{ftp-client.scm} are used for this purpose. The @code{module-import.drv} derivations import those modules in a directory in the store, using the original layout. The @code{module-import-compiled.drv} derivations compile those modules, and write them in an output directory with the right layout. This corresponds to the @code{#:modules} argument of @code{build-expression->derivation} (@pxref{Derivations})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38232 +#: guix-git/doc/guix.texi:38721 msgid "Finally, the various tarballs are unpacked by the derivations @code{gcc-bootstrap-0.drv}, @code{glibc-bootstrap-0.drv}, or @code{bootstrap-mes-0.drv} and @code{bootstrap-mescc-tools-0.drv}, at which point we have a working C tool chain." msgstr "" #. type: unnumberedsec -#: guix-git/doc/guix.texi:38233 +#: guix-git/doc/guix.texi:38722 #, no-wrap msgid "Building the Build Tools" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38242 +#: guix-git/doc/guix.texi:38731 msgid "Bootstrapping is complete when we have a full tool chain that does not depend on the pre-built bootstrap tools discussed above. This no-dependency requirement is verified by checking whether the files of the final tool chain contain references to the @file{/gnu/store} directories of the bootstrap inputs. The process that leads to this ``final'' tool chain is described by the package definitions found in the @code{(gnu packages commencement)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38249 +#: guix-git/doc/guix.texi:38738 msgid "The @command{guix graph} command allows us to ``zoom out'' compared to the graph above, by looking at the level of package objects instead of individual derivations---remember that a package may translate to several derivations, typically one derivation to download its source, one to build the Guile modules it needs, and one to actually build the package from source. The command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38254 +#: guix-git/doc/guix.texi:38743 #, no-wrap msgid "" "guix graph -t bag \\\n" @@ -66842,164 +67712,164 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38261 +#: guix-git/doc/guix.texi:38750 msgid "displays the dependency graph leading to the ``final'' C library@footnote{You may notice the @code{glibc-intermediate} label, suggesting that it is not @emph{quite} final, but as a good approximation, we will consider it final.}, depicted below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38263 +#: guix-git/doc/guix.texi:38752 msgid "@image{images/bootstrap-packages,6in,,Dependency graph of the early packages}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38269 +#: guix-git/doc/guix.texi:38758 msgid "The first tool that gets built with the bootstrap binaries is GNU@tie{}Make---noted @code{make-boot0} above---which is a prerequisite for all the following packages. From there Findutils and Diffutils get built." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38274 +#: guix-git/doc/guix.texi:38763 msgid "Then come the first-stage Binutils and GCC, built as pseudo cross tools---i.e., with @option{--target} equal to @option{--host}. They are used to build libc. Thanks to this cross-build trick, this libc is guaranteed not to hold any reference to the initial tool chain." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38280 +#: guix-git/doc/guix.texi:38769 msgid "From there the final Binutils and GCC (not shown above) are built. GCC uses @command{ld} from the final Binutils, and links programs against the just-built libc. This tool chain is used to build the other packages used by Guix and by the GNU Build System: Guile, Bash, Coreutils, etc." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38286 +#: guix-git/doc/guix.texi:38775 msgid "And voilà! At this point we have the complete set of build tools that the GNU Build System expects. These are in the @code{%final-inputs} variable of the @code{(gnu packages commencement)} module, and are implicitly used by any package that uses @code{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}})." msgstr "" #. type: unnumberedsec -#: guix-git/doc/guix.texi:38288 +#: guix-git/doc/guix.texi:38777 #, no-wrap msgid "Building the Bootstrap Binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38295 +#: guix-git/doc/guix.texi:38784 msgid "Because the final tool chain does not depend on the bootstrap binaries, those rarely need to be updated. Nevertheless, it is useful to have an automated way to produce them, should an update occur, and this is what the @code{(gnu packages make-bootstrap)} module provides." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38301 +#: guix-git/doc/guix.texi:38790 msgid "The following command builds the tarballs containing the bootstrap binaries (Binutils, GCC, glibc, for the traditional bootstrap and linux-libre-headers, bootstrap-mescc-tools, bootstrap-mes for the Reduced Binary Seed bootstrap, and Guile, and a tarball containing a mixture of Coreutils and other basic command-line tools):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38304 +#: guix-git/doc/guix.texi:38793 #, no-wrap msgid "guix build bootstrap-tarballs\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38309 +#: guix-git/doc/guix.texi:38798 msgid "The generated tarballs are those that should be referred to in the @code{(gnu packages bootstrap)} module mentioned at the beginning of this section." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38315 +#: guix-git/doc/guix.texi:38804 msgid "Still here? Then perhaps by now you've started to wonder: when do we reach a fixed point? That is an interesting question! The answer is unknown, but if you would like to investigate further (and have significant computational and storage resources to do so), then let us know." msgstr "" #. type: unnumberedsec -#: guix-git/doc/guix.texi:38316 +#: guix-git/doc/guix.texi:38805 #, no-wrap msgid "Reducing the Set of Bootstrap Binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38324 +#: guix-git/doc/guix.texi:38813 msgid "Our traditional bootstrap includes GCC, GNU Libc, Guile, etc. That's a lot of binary code! Why is that a problem? It's a problem because these big chunks of binary code are practically non-auditable, which makes it hard to establish what source code produced them. Every unauditable binary also leaves us vulnerable to compiler backdoors as described by Ken Thompson in the 1984 paper @emph{Reflections on Trusting Trust}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38330 +#: guix-git/doc/guix.texi:38819 msgid "This is mitigated by the fact that our bootstrap binaries were generated from an earlier Guix revision. Nevertheless it lacks the level of transparency that we get in the rest of the package dependency graph, where Guix always gives us a source-to-binary mapping. Thus, our goal is to reduce the set of bootstrap binaries to the bare minimum." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38336 +#: guix-git/doc/guix.texi:38825 msgid "The @uref{https://bootstrappable.org, Bootstrappable.org web site} lists on-going projects to do that. One of these is about replacing the bootstrap GCC with a sequence of assemblers, interpreters, and compilers of increasing complexity, which could be built from source starting from a simple and auditable assembler." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38345 +#: guix-git/doc/guix.texi:38834 msgid "Our first major achievement is the replacement of of GCC, the GNU C Library and Binutils by MesCC-Tools (a simple hex linker and macro assembler) and Mes (@pxref{Top, GNU Mes Reference Manual,, mes, GNU Mes}, a Scheme interpreter and C compiler in Scheme). Neither MesCC-Tools nor Mes can be fully bootstrapped yet and thus we inject them as binary seeds. We call this the Reduced Binary Seed bootstrap, as it has halved the size of our bootstrap binaries! Also, it has eliminated the C compiler binary; i686-linux and x86_64-linux Guix packages are now bootstrapped without any binary C compiler." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38348 +#: guix-git/doc/guix.texi:38837 msgid "Work is ongoing to make MesCC-Tools and Mes fully bootstrappable and we are also looking at any other bootstrap binaries. Your help is welcome!" msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:38350 +#: guix-git/doc/guix.texi:38839 #, no-wrap msgid "Porting to a New Platform" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38359 +#: guix-git/doc/guix.texi:38848 msgid "As discussed above, the GNU distribution is self-contained, and self-containment is achieved by relying on pre-built ``bootstrap binaries'' (@pxref{Bootstrapping}). These binaries are specific to an operating system kernel, CPU architecture, and application binary interface (ABI). Thus, to port the distribution to a platform that is not yet supported, one must build those bootstrap binaries, and update the @code{(gnu packages bootstrap)} module to use them on that platform." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38364 +#: guix-git/doc/guix.texi:38853 msgid "Fortunately, Guix can @emph{cross compile} those bootstrap binaries. When everything goes well, and assuming the GNU tool chain supports the target platform, this can be as simple as running a command like this one:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38367 +#: guix-git/doc/guix.texi:38856 #, no-wrap msgid "guix build --target=armv5tel-linux-gnueabi bootstrap-tarballs\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38374 +#: guix-git/doc/guix.texi:38863 msgid "For this to work, the @code{glibc-dynamic-linker} procedure in @code{(gnu packages bootstrap)} must be augmented to return the right file name for libc's dynamic linker on that platform; likewise, @code{system->linux-architecture} in @code{(gnu packages linux)} must be taught about the new platform." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38383 +#: guix-git/doc/guix.texi:38872 msgid "Once these are built, the @code{(gnu packages bootstrap)} module needs to be updated to refer to these binaries on the target platform. That is, the hashes and URLs of the bootstrap tarballs for the new platform must be added alongside those of the currently supported platforms. The bootstrap Guile tarball is treated specially: it is expected to be available locally, and @file{gnu/local.mk} has rules to download it for the supported architectures; a rule for the new platform must be added as well." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38392 +#: guix-git/doc/guix.texi:38881 msgid "In practice, there may be some complications. First, it may be that the extended GNU triplet that specifies an ABI (like the @code{eabi} suffix above) is not recognized by all the GNU tools. Typically, glibc recognizes some of these, whereas GCC uses an extra @option{--with-abi} configure flag (see @code{gcc.scm} for examples of how to handle this). Second, some of the required packages could fail to build for that platform. Lastly, the generated binaries could be broken for some reason." msgstr "" #. type: include -#: guix-git/doc/guix.texi:38394 +#: guix-git/doc/guix.texi:38883 #, no-wrap msgid "contributing.texi" msgstr "contributing.fa.texi" #. type: Plain text -#: guix-git/doc/guix.texi:38407 +#: guix-git/doc/guix.texi:38896 msgid "Guix is based on the @uref{https://nixos.org/nix/, Nix package manager}, which was designed and implemented by Eelco Dolstra, with contributions from other people (see the @file{nix/AUTHORS} file in Guix). Nix pioneered functional package management, and promoted unprecedented features, such as transactional package upgrades and rollbacks, per-user profiles, and referentially transparent build processes. Without this work, Guix would not exist." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38410 +#: guix-git/doc/guix.texi:38899 msgid "The Nix-based software distributions, Nixpkgs and NixOS, have also been an inspiration for Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38416 +#: guix-git/doc/guix.texi:38905 msgid "GNU@tie{}Guix itself is a collective work with contributions from a number of people. See the @file{AUTHORS} file in Guix for more information on these fine people. The @file{THANKS} file lists people who have helped by reporting bugs, taking care of the infrastructure, providing artwork and themes, making suggestions, and more---thank you!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:38421 +#: guix-git/doc/guix.texi:38910 #, no-wrap msgid "license, GNU Free Documentation License" msgstr "" #. type: include -#: guix-git/doc/guix.texi:38422 +#: guix-git/doc/guix.texi:38911 #, no-wrap msgid "fdl-1.3.texi" msgstr "" diff --git a/po/doc/guix-manual.fi.po b/po/doc/guix-manual.fi.po index 5dba7a1a0f..064fcec2ee 100644 --- a/po/doc/guix-manual.fi.po +++ b/po/doc/guix-manual.fi.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE # Copyright (C) YEAR the authors of Guix (msgids) and the following authors (msgstr) # This file is distributed under the same license as the guix manual package. -# Jan Kuparinen , 2021. +# Jan Kuparinen , 2021, 2022. msgid "" msgstr "" "Project-Id-Version: guix manual checkout\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2021-12-21 15:18+0000\n" -"PO-Revision-Date: 2021-12-25 14:16+0000\n" +"POT-Creation-Date: 2022-02-02 15:18+0000\n" +"PO-Revision-Date: 2022-01-25 15:16+0000\n" "Last-Translator: Jan Kuparinen \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -67,8 +67,8 @@ msgid "The latest and greatest." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:161 -#: guix-git/doc/contributing.texi:162 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:173 +#: guix-git/doc/contributing.texi:174 #, no-wrap msgid "Running Guix Before It Is Installed" msgstr "" @@ -79,8 +79,8 @@ msgid "Hacker tricks." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:235 -#: guix-git/doc/contributing.texi:236 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:265 +#: guix-git/doc/contributing.texi:266 #, no-wrap msgid "The Perfect Setup" msgstr "" @@ -91,8 +91,8 @@ msgid "The right tools." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:326 -#: guix-git/doc/contributing.texi:327 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:356 +#: guix-git/doc/contributing.texi:357 #, no-wrap msgid "Packaging Guidelines" msgstr "Paketoinnin ohjenuoria" @@ -103,8 +103,8 @@ msgid "Growing the distribution." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:890 -#: guix-git/doc/contributing.texi:891 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:920 +#: guix-git/doc/contributing.texi:921 #, no-wrap msgid "Coding Style" msgstr "" @@ -115,8 +115,8 @@ msgid "Hygiene of the contributor." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:989 -#: guix-git/doc/contributing.texi:990 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1013 +#: guix-git/doc/contributing.texi:1014 #, no-wrap msgid "Submitting Patches" msgstr "" @@ -127,8 +127,8 @@ msgid "Share your work." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1270 -#: guix-git/doc/contributing.texi:1271 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1298 +#: guix-git/doc/contributing.texi:1299 #, no-wrap msgid "Tracking Bugs and Patches" msgstr "" @@ -139,8 +139,8 @@ msgid "Keeping it all organized." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1385 -#: guix-git/doc/contributing.texi:1386 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1413 +#: guix-git/doc/contributing.texi:1414 #, no-wrap msgid "Commit Access" msgstr "" @@ -151,8 +151,8 @@ msgid "Pushing to the official repository." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1611 -#: guix-git/doc/contributing.texi:1612 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1644 +#: guix-git/doc/contributing.texi:1645 #, no-wrap msgid "Updating the Guix Package" msgstr "" @@ -163,8 +163,8 @@ msgid "Updating the Guix package definition." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1652 -#: guix-git/doc/contributing.texi:1653 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1686 #, no-wrap msgid "Translating Guix" msgstr "" @@ -348,30 +348,31 @@ msgid "make authenticate GUIX_GIT_KEYRING=myremote/keyring\n" msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:154 guix-git/doc/contributing.texi:1463 -#: guix-git/doc/guix.texi:594 guix-git/doc/guix.texi:643 -#: guix-git/doc/guix.texi:833 guix-git/doc/guix.texi:1813 -#: guix-git/doc/guix.texi:2060 guix-git/doc/guix.texi:2244 -#: guix-git/doc/guix.texi:2465 guix-git/doc/guix.texi:2677 -#: guix-git/doc/guix.texi:3807 guix-git/doc/guix.texi:4548 -#: guix-git/doc/guix.texi:4562 guix-git/doc/guix.texi:4644 -#: guix-git/doc/guix.texi:4874 guix-git/doc/guix.texi:5615 -#: guix-git/doc/guix.texi:6082 guix-git/doc/guix.texi:6333 -#: guix-git/doc/guix.texi:6454 guix-git/doc/guix.texi:6482 -#: guix-git/doc/guix.texi:6535 guix-git/doc/guix.texi:9391 -#: guix-git/doc/guix.texi:9461 guix-git/doc/guix.texi:11198 -#: guix-git/doc/guix.texi:11238 guix-git/doc/guix.texi:11512 -#: guix-git/doc/guix.texi:11524 guix-git/doc/guix.texi:14000 -#: guix-git/doc/guix.texi:14631 guix-git/doc/guix.texi:15521 -#: guix-git/doc/guix.texi:16507 guix-git/doc/guix.texi:19140 -#: guix-git/doc/guix.texi:19310 guix-git/doc/guix.texi:27188 -#: guix-git/doc/guix.texi:30914 guix-git/doc/guix.texi:34669 -#: guix-git/doc/guix.texi:34903 guix-git/doc/guix.texi:35073 -#: guix-git/doc/guix.texi:35232 guix-git/doc/guix.texi:35334 -#: guix-git/doc/guix.texi:35435 guix-git/doc/guix.texi:35738 -#: guix-git/doc/guix.texi:36896 guix-git/doc/guix.texi:36971 -#: guix-git/doc/guix.texi:37006 guix-git/doc/guix.texi:37056 -#: guix-git/doc/guix.texi:37143 guix-git/doc/guix.texi:37564 +#: guix-git/doc/contributing.texi:154 guix-git/doc/contributing.texi:1496 +#: guix-git/doc/guix.texi:605 guix-git/doc/guix.texi:654 +#: guix-git/doc/guix.texi:844 guix-git/doc/guix.texi:1830 +#: guix-git/doc/guix.texi:2077 guix-git/doc/guix.texi:2261 +#: guix-git/doc/guix.texi:2482 guix-git/doc/guix.texi:2694 +#: guix-git/doc/guix.texi:3825 guix-git/doc/guix.texi:4566 +#: guix-git/doc/guix.texi:4580 guix-git/doc/guix.texi:4662 +#: guix-git/doc/guix.texi:4892 guix-git/doc/guix.texi:5633 +#: guix-git/doc/guix.texi:6119 guix-git/doc/guix.texi:6376 +#: guix-git/doc/guix.texi:6497 guix-git/doc/guix.texi:6525 +#: guix-git/doc/guix.texi:6578 guix-git/doc/guix.texi:9581 +#: guix-git/doc/guix.texi:9705 guix-git/doc/guix.texi:9775 +#: guix-git/doc/guix.texi:11512 guix-git/doc/guix.texi:11552 +#: guix-git/doc/guix.texi:11826 guix-git/doc/guix.texi:11838 +#: guix-git/doc/guix.texi:14357 guix-git/doc/guix.texi:14988 +#: guix-git/doc/guix.texi:15878 guix-git/doc/guix.texi:16864 +#: guix-git/doc/guix.texi:19502 guix-git/doc/guix.texi:19672 +#: guix-git/doc/guix.texi:27525 guix-git/doc/guix.texi:31279 +#: guix-git/doc/guix.texi:35108 guix-git/doc/guix.texi:35342 +#: guix-git/doc/guix.texi:35512 guix-git/doc/guix.texi:35676 +#: guix-git/doc/guix.texi:35778 guix-git/doc/guix.texi:35817 +#: guix-git/doc/guix.texi:35891 guix-git/doc/guix.texi:36228 +#: guix-git/doc/guix.texi:37386 guix-git/doc/guix.texi:37461 +#: guix-git/doc/guix.texi:37496 guix-git/doc/guix.texi:37546 +#: guix-git/doc/guix.texi:37633 guix-git/doc/guix.texi:38043 #, no-wrap msgid "Note" msgstr "Huomautus" @@ -382,28 +383,46 @@ msgid "You are advised to run @command{make authenticate} after every @command{g msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:168 +#: guix-git/doc/contributing.texi:162 +msgid "After updating the repository, @command{make} might fail with an error similar to the following example:" +msgstr "" + +#. type: example +#: guix-git/doc/contributing.texi:166 +#, no-wrap +msgid "" +"error: failed to load 'gnu/packages/dunst.scm':\n" +"ice-9/eval.scm:293:34: In procedure abi-check: #>: record ABI mismatch; recompilation needed\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:172 +msgid "This means that one of the record types that Guix defines (in this example, the @code{origin} record) has changed, and all of guix needs to be recompiled to take that change into account. To do so, run @command{make clean-go} followed by @command{make}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:180 msgid "In order to keep a sane working environment, you will find it useful to test the changes made in your local source tree checkout without actually installing them. So that you can distinguish between your ``end-user'' hat and your ``motley'' costume." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:179 +#: guix-git/doc/contributing.texi:191 msgid "To that end, all the command-line tools can be used even if you have not run @code{make install}. To do that, you first need to have an environment with all the dependencies available (@pxref{Building from Git}), and then simply prefix each command with @command{./pre-inst-env} (the @file{pre-inst-env} script lives in the top build tree of Guix; it is generated by running @command{./bootstrap} followed by @command{./configure}). As an example, here is how you would build the @code{hello} package as defined in your working tree (this assumes @command{guix-daemon} is already running on your system; it's OK if it's a different version):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:182 +#: guix-git/doc/contributing.texi:194 #, no-wrap msgid "$ ./pre-inst-env guix build hello\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:186 +#: guix-git/doc/contributing.texi:198 msgid "Similarly, an example for a Guile session using the Guix modules:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:189 +#: guix-git/doc/contributing.texi:201 #, no-wrap msgid "" "$ ./pre-inst-env guile -c '(use-modules (guix utils)) (pk (%current-system))'\n" @@ -411,30 +430,30 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:191 +#: guix-git/doc/contributing.texi:203 #, no-wrap msgid ";;; (\"x86_64-linux\")\n" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:194 +#: guix-git/doc/contributing.texi:206 #, no-wrap msgid "REPL" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:195 +#: guix-git/doc/contributing.texi:207 #, no-wrap msgid "read-eval-print loop" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:198 +#: guix-git/doc/contributing.texi:210 msgid "@dots{} and for a REPL (@pxref{Using Guile Interactively,,, guile, Guile Reference Manual}):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:213 +#: guix-git/doc/contributing.texi:225 #, no-wrap msgid "" "$ ./pre-inst-env guile\n" @@ -453,44 +472,67 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:221 +#: guix-git/doc/contributing.texi:233 msgid "If you are hacking on the daemon and its supporting code or if @command{guix-daemon} is not already running on your system, you can launch it straight from the build tree@footnote{The @option{-E} flag to @command{sudo} guarantees that @code{GUILE_LOAD_PATH} is correctly set such that @command{guix-daemon} and the tools it uses can find the Guile modules they need.}:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:224 +#: guix-git/doc/contributing.texi:236 #, no-wrap msgid "$ sudo -E ./pre-inst-env guix-daemon --build-users-group=guixbuild\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:228 +#: guix-git/doc/contributing.texi:240 msgid "The @command{pre-inst-env} script sets up all the environment variables necessary to support this, including @env{PATH} and @env{GUILE_LOAD_PATH}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:233 +#: guix-git/doc/contributing.texi:245 msgid "Note that @command{./pre-inst-env guix pull} does @emph{not} upgrade the local source tree; it simply updates the @file{~/.config/guix/current} symlink (@pxref{Invoking guix pull}). Run @command{git pull} instead if you want to upgrade your local source tree." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:243 +#: guix-git/doc/contributing.texi:249 +msgid "Sometimes, especially if you have recently updated your repository, running @command{./pre-inst-env} will print a message similar to the following example:" +msgstr "" + +#. type: example +#: guix-git/doc/contributing.texi:253 +#, no-wrap +msgid "" +";;; note: source file /home/user/projects/guix/guix/progress.scm\n" +";;; newer than compiled /home/user/projects/guix/guix/progress.go\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:259 +msgid "This is only a note and you can safely ignore it. You can get rid of the message by running @command{make -j4}. Until you do, Guile will run slightly slower because it will interpret the code instead of using prepared Guile object (@file{.go}) files." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:264 +msgid "You can run @command{make} automatically as you work using @command{watchexec} from the @code{watchexec} package. For example, to build again each time you update a package file, you can run @samp{watchexec -w gnu/packages make -j4}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:273 msgid "The Perfect Setup to hack on Guix is basically the perfect setup used for Guile hacking (@pxref{Using Guile in Emacs,,, guile, Guile Reference Manual}). First, you need more than an editor, you need @url{https://www.gnu.org/software/emacs, Emacs}, empowered by the wonderful @url{https://nongnu.org/geiser/, Geiser}. To set that up, run:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:246 +#: guix-git/doc/contributing.texi:276 #, no-wrap msgid "guix package -i emacs guile emacs-geiser emacs-geiser-guile\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:255 +#: guix-git/doc/contributing.texi:285 msgid "Geiser allows for interactive and incremental development from within Emacs: code compilation and evaluation from within buffers, access to on-line documentation (docstrings), context-sensitive completion, @kbd{M-.} to jump to an object definition, a REPL to try out your code, and more (@pxref{Introduction,,, geiser, Geiser User Manual}). For convenient Guix development, make sure to augment Guile’s load path so that it finds source files from your checkout:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:260 +#: guix-git/doc/contributing.texi:290 #, no-wrap msgid "" ";; @r{Assuming the Guix checkout is in ~/src/guix.}\n" @@ -499,35 +541,35 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:268 +#: guix-git/doc/contributing.texi:298 msgid "To actually edit the code, Emacs already has a neat Scheme mode. But in addition to that, you must not miss @url{https://www.emacswiki.org/emacs/ParEdit, Paredit}. It provides facilities to directly operate on the syntax tree, such as raising an s-expression or wrapping it, swallowing or rejecting the following s-expression, etc." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:269 +#: guix-git/doc/contributing.texi:299 #, no-wrap msgid "code snippets" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:270 +#: guix-git/doc/contributing.texi:300 #, no-wrap msgid "templates" msgstr "mallipohjia" #. type: cindex -#: guix-git/doc/contributing.texi:271 +#: guix-git/doc/contributing.texi:301 #, no-wrap msgid "reducing boilerplate" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:278 +#: guix-git/doc/contributing.texi:308 msgid "We also provide templates for common git commit messages and package definitions in the @file{etc/snippets} directory. These templates can be used with @url{https://joaotavora.github.io/yasnippet/, YASnippet} to expand short trigger strings to interactive text snippets. You may want to add the snippets directory to the @var{yas-snippet-dirs} variable in Emacs." msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:283 +#: guix-git/doc/contributing.texi:313 #, no-wrap msgid "" ";; @r{Assuming the Guix checkout is in ~/src/guix.}\n" @@ -536,40 +578,40 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:291 +#: guix-git/doc/contributing.texi:321 msgid "The commit message snippets depend on @url{https://magit.vc/, Magit} to display staged files. When editing a commit message type @code{add} followed by @kbd{TAB} to insert a commit message template for adding a package; type @code{update} followed by @kbd{TAB} to insert a template for updating a package; type @code{https} followed by @kbd{TAB} to insert a template for changing the home page URI of a package to HTTPS." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:297 +#: guix-git/doc/contributing.texi:327 msgid "The main snippet for @code{scheme-mode} is triggered by typing @code{package...} followed by @kbd{TAB}. This snippet also inserts the trigger string @code{origin...}, which can be expanded further. The @code{origin} snippet in turn may insert other trigger strings ending on @code{...}, which also can be expanded further." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:298 +#: guix-git/doc/contributing.texi:328 #, no-wrap msgid "insert or update copyright" msgstr "" #. type: code{#1} -#: guix-git/doc/contributing.texi:299 +#: guix-git/doc/contributing.texi:329 #, no-wrap msgid "M-x guix-copyright" msgstr "" #. type: code{#1} -#: guix-git/doc/contributing.texi:300 +#: guix-git/doc/contributing.texi:330 #, no-wrap msgid "M-x copyright-update" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:304 +#: guix-git/doc/contributing.texi:334 msgid "We additionally provide insertion and automatic update of a copyright in @file{etc/copyright.el}. You may want to set your full name, mail, and load a file." msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:310 +#: guix-git/doc/contributing.texi:340 #, no-wrap msgid "" "(setq user-full-name \"Alice Doe\")\n" @@ -579,17 +621,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:313 +#: guix-git/doc/contributing.texi:343 msgid "To insert a copyright at the current line invoke @code{M-x guix-copyright}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:315 +#: guix-git/doc/contributing.texi:345 msgid "To update a copyright you need to specify a @code{copyright-names-regexp}." msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:319 +#: guix-git/doc/contributing.texi:349 #, no-wrap msgid "" "(setq copyright-names-regexp\n" @@ -597,281 +639,281 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:325 +#: guix-git/doc/contributing.texi:355 msgid "You can check if your copyright is up to date by evaluating @code{M-x copyright-update}. If you want to do it automatically after each buffer save then add @code{(add-hook 'after-save-hook 'copyright-update)} in Emacs." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:329 +#: guix-git/doc/contributing.texi:359 #, no-wrap msgid "packages, creating" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:333 +#: guix-git/doc/contributing.texi:363 msgid "The GNU distribution is nascent and may well lack some of your favorite packages. This section describes how you can help make the distribution grow." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:341 +#: guix-git/doc/contributing.texi:371 msgid "Free software packages are usually distributed in the form of @dfn{source code tarballs}---typically @file{tar.gz} files that contain all the source files. Adding a package to the distribution means essentially two things: adding a @dfn{recipe} that describes how to build the package, including a list of other packages required to build it, and adding @dfn{package metadata} along with that recipe, such as a description and licensing information." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:350 +#: guix-git/doc/contributing.texi:380 msgid "In Guix all this information is embodied in @dfn{package definitions}. Package definitions provide a high-level view of the package. They are written using the syntax of the Scheme programming language; in fact, for each package we define a variable bound to the package definition, and export that variable from a module (@pxref{Package Modules}). However, in-depth Scheme knowledge is @emph{not} a prerequisite for creating packages. For more information on package definitions, @pxref{Defining Packages}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:356 +#: guix-git/doc/contributing.texi:386 msgid "Once a package definition is in place, stored in a file in the Guix source tree, it can be tested using the @command{guix build} command (@pxref{Invoking guix build}). For example, assuming the new package is called @code{gnew}, you may run this command from the Guix build tree (@pxref{Running Guix Before It Is Installed}):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:359 +#: guix-git/doc/contributing.texi:389 #, no-wrap msgid "./pre-inst-env guix build gnew --keep-failed\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:365 +#: guix-git/doc/contributing.texi:395 msgid "Using @code{--keep-failed} makes it easier to debug build failures since it provides access to the failed build tree. Another useful command-line option when debugging is @code{--log-file}, to access the build log." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:370 +#: guix-git/doc/contributing.texi:400 msgid "If the package is unknown to the @command{guix} command, it may be that the source file contains a syntax error, or lacks a @code{define-public} clause to export the package variable. To figure it out, you may load the module from Guile to get more information about the actual error:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:373 +#: guix-git/doc/contributing.texi:403 #, no-wrap msgid "./pre-inst-env guile -c '(use-modules (gnu packages gnew))'\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:380 +#: guix-git/doc/contributing.texi:410 msgid "Once your package builds correctly, please send us a patch (@pxref{Submitting Patches}). Well, if you need help, we will be happy to help you too. Once the patch is committed in the Guix repository, the new package automatically gets built on the supported platforms by @url{https://@value{SUBSTITUTE-SERVER-1}, our continuous integration system}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:381 +#: guix-git/doc/contributing.texi:411 #, no-wrap msgid "substituter" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:388 +#: guix-git/doc/contributing.texi:418 msgid "Users can obtain the new package definition simply by running @command{guix pull} (@pxref{Invoking guix pull}). When @code{@value{SUBSTITUTE-SERVER-1}} is done building the package, installing the package automatically downloads binaries from there (@pxref{Substitutes}). The only place where human intervention is needed is to review and apply the patch." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:404 -#: guix-git/doc/contributing.texi:405 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:434 +#: guix-git/doc/contributing.texi:435 #, no-wrap msgid "Software Freedom" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "What may go into the distribution." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:432 -#: guix-git/doc/contributing.texi:433 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:462 +#: guix-git/doc/contributing.texi:463 #, no-wrap msgid "Package Naming" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "What's in a name?" msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:465 -#: guix-git/doc/contributing.texi:466 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:495 +#: guix-git/doc/contributing.texi:496 #, no-wrap msgid "Version Numbers" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "When the name is not enough." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:572 -#: guix-git/doc/contributing.texi:573 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:602 +#: guix-git/doc/contributing.texi:603 #, no-wrap msgid "Synopses and Descriptions" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Helping users find the right package." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:651 -#: guix-git/doc/contributing.texi:652 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:681 +#: guix-git/doc/contributing.texi:682 #, no-wrap msgid "Snippets versus Phases" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Whether to use a snippet, or a build phase." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:666 -#: guix-git/doc/contributing.texi:667 guix-git/doc/guix.texi:1995 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:696 +#: guix-git/doc/contributing.texi:697 guix-git/doc/guix.texi:2012 #, no-wrap msgid "Emacs Packages" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Your Elisp fix." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:706 -#: guix-git/doc/contributing.texi:707 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:736 +#: guix-git/doc/contributing.texi:737 #, no-wrap msgid "Python Modules" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "A touch of British comedy." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:782 -#: guix-git/doc/contributing.texi:783 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:812 +#: guix-git/doc/contributing.texi:813 #, no-wrap msgid "Perl Modules" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Little pearls." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:798 -#: guix-git/doc/contributing.texi:799 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:828 +#: guix-git/doc/contributing.texi:829 #, no-wrap msgid "Java Packages" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Coffee break." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:818 -#: guix-git/doc/contributing.texi:819 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:848 +#: guix-git/doc/contributing.texi:849 #, no-wrap msgid "Rust Crates" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Beware of oxidation." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:852 -#: guix-git/doc/contributing.texi:853 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:882 +#: guix-git/doc/contributing.texi:883 #, no-wrap msgid "Fonts" msgstr "Fontit" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Fond of fonts." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:408 +#: guix-git/doc/contributing.texi:438 #, no-wrap msgid "free software" msgstr "vapaa ohjelmisto" #. type: Plain text -#: guix-git/doc/contributing.texi:416 +#: guix-git/doc/contributing.texi:446 msgid "The GNU operating system has been developed so that users can have freedom in their computing. GNU is @dfn{free software}, meaning that users have the @url{https://www.gnu.org/philosophy/free-sw.html,four essential freedoms}: to run the program, to study and change the program in source code form, to redistribute exact copies, and to distribute modified versions. Packages found in the GNU distribution provide only software that conveys these four freedoms." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:422 +#: guix-git/doc/contributing.texi:452 msgid "In addition, the GNU distribution follow the @url{https://www.gnu.org/distros/free-system-distribution-guidelines.html,free software distribution guidelines}. Among other things, these guidelines reject non-free firmware, recommendations of non-free software, and discuss ways to deal with trademarks and patents." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:430 +#: guix-git/doc/contributing.texi:460 msgid "Some otherwise free upstream package sources contain a small and optional subset that violates the above guidelines, for instance because this subset is itself non-free code. When that happens, the offending items are removed with appropriate patches or code snippets in the @code{origin} form of the package (@pxref{Defining Packages}). This way, @code{guix build --source} returns the ``freed'' source rather than the unmodified upstream source." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:435 +#: guix-git/doc/contributing.texi:465 #, no-wrap msgid "package name" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:443 +#: guix-git/doc/contributing.texi:473 msgid "A package actually has two names associated with it. First, there is the name of the @emph{Scheme variable}, the one following @code{define-public}. By this name, the package can be made known in the Scheme code, for instance as input to another package. Second, there is the string in the @code{name} field of a package definition. This name is used by package management commands such as @command{guix package} and @command{guix build}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:448 +#: guix-git/doc/contributing.texi:478 msgid "Both are usually the same and correspond to the lowercase conversion of the project name chosen upstream, with underscores replaced with hyphens. For instance, GNUnet is available as @code{gnunet}, and SDL_net as @code{sdl-net}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:456 +#: guix-git/doc/contributing.texi:486 msgid "A noteworthy exception to this rule is when the project name is only a single character, or if an older maintained project with the same name already exists---regardless of whether it has already been packaged for Guix. Use common sense to make such names unambiguous and meaningful. For example, Guix's package for the shell called ``s'' upstream is @code{s-shell} and @emph{not} @code{s}. Feel free to ask your fellow hackers for inspiration." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:461 +#: guix-git/doc/contributing.texi:491 msgid "We do not add @code{lib} prefixes for library packages, unless these are already part of the official project name. But @pxref{Python Modules} and @ref{Perl Modules} for special rules concerning modules for the Python and Perl languages." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:463 +#: guix-git/doc/contributing.texi:493 msgid "Font package names are handled differently, @pxref{Fonts}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:468 +#: guix-git/doc/contributing.texi:498 #, no-wrap msgid "package version" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:477 +#: guix-git/doc/contributing.texi:507 msgid "We usually package only the latest version of a given free software project. But sometimes, for instance for incompatible library versions, two (or more) versions of the same package are needed. These require different Scheme variable names. We use the name as defined in @ref{Package Naming} for the most recent version; previous versions use the same name, suffixed by @code{-} and the smallest prefix of the version number that may distinguish the two versions." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:480 +#: guix-git/doc/contributing.texi:510 msgid "The name inside the package definition is the same for all versions of a package and does not contain any version number." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:482 +#: guix-git/doc/contributing.texi:512 msgid "For instance, the versions 2.24.20 and 3.9.12 of GTK+ may be packaged as follows:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:494 +#: guix-git/doc/contributing.texi:524 #, no-wrap msgid "" "(define-public gtk+\n" @@ -887,12 +929,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:496 +#: guix-git/doc/contributing.texi:526 msgid "If we also wanted GTK+ 3.8.2, this would be packaged as" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:502 +#: guix-git/doc/contributing.texi:532 #, no-wrap msgid "" "(define-public gtk+-3.8\n" @@ -903,23 +945,23 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:506 +#: guix-git/doc/contributing.texi:536 #, no-wrap msgid "version number, for VCS snapshots" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:512 +#: guix-git/doc/contributing.texi:542 msgid "Occasionally, we package snapshots of upstream's version control system (VCS) instead of formal releases. This should remain exceptional, because it is up to upstream developers to clarify what the stable release is. Yet, it is sometimes necessary. So, what should we put in the @code{version} field?" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:520 +#: guix-git/doc/contributing.texi:550 msgid "Clearly, we need to make the commit identifier of the VCS snapshot visible in the version string, but we also need to make sure that the version string is monotonically increasing so that @command{guix package --upgrade} can determine which version is newer. Since commit identifiers, notably with Git, are not monotonically increasing, we add a revision number that we increase each time we upgrade to a newer snapshot. The resulting version string looks like this:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:529 +#: guix-git/doc/contributing.texi:559 #, no-wrap msgid "" "2.0.11-3.cabba9e\n" @@ -932,12 +974,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:539 +#: guix-git/doc/contributing.texi:569 msgid "It is a good idea to strip commit identifiers in the @code{version} field to, say, 7 digits. It avoids an aesthetic annoyance (assuming aesthetics have a role to play here) as well as problems related to OS limits such as the maximum shebang length (127 bytes for the Linux kernel). There are helper functions for doing this for packages using @code{git-fetch} or @code{hg-fetch} (see below). It is best to use the full commit identifiers in @code{origin}s, though, to avoid ambiguities. A typical package definition may look like this:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:556 +#: guix-git/doc/contributing.texi:586 #, no-wrap msgid "" "(define my-package\n" @@ -957,18 +999,18 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/contributing.texi:558 +#: guix-git/doc/contributing.texi:588 #, no-wrap msgid "{Scheme Procedure} git-version @var{VERSION} @var{REVISION} @var{COMMIT}" msgstr "" #. type: deffn -#: guix-git/doc/contributing.texi:560 +#: guix-git/doc/contributing.texi:590 msgid "Return the version string for packages using @code{git-fetch}." msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:564 +#: guix-git/doc/contributing.texi:594 #, no-wrap msgid "" "(git-version \"0.2.3\" \"0\" \"93818c936ee7e2f1ba1b315578bde363a7d43d05\")\n" @@ -976,71 +1018,71 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/contributing.texi:567 +#: guix-git/doc/contributing.texi:597 #, no-wrap msgid "{Scheme Procedure} hg-version @var{VERSION} @var{REVISION} @var{CHANGESET}" msgstr "" #. type: deffn -#: guix-git/doc/contributing.texi:570 +#: guix-git/doc/contributing.texi:600 msgid "Return the version string for packages using @code{hg-fetch}. It works in the same way as @code{git-version}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:575 +#: guix-git/doc/contributing.texi:605 #, no-wrap msgid "package description" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:576 +#: guix-git/doc/contributing.texi:606 #, no-wrap msgid "package synopsis" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:583 +#: guix-git/doc/contributing.texi:613 msgid "As we have seen before, each package in GNU@tie{}Guix includes a synopsis and a description (@pxref{Defining Packages}). Synopses and descriptions are important: They are what @command{guix package --search} searches, and a crucial piece of information to help users determine whether a given package suits their needs. Consequently, packagers should pay attention to what goes into them." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:591 +#: guix-git/doc/contributing.texi:621 msgid "Synopses must start with a capital letter and must not end with a period. They must not start with ``a'' or ``the'', which usually does not bring anything; for instance, prefer ``File-frobbing tool'' over ``A tool that frobs files''. The synopsis should say what the package is---e.g., ``Core GNU utilities (file, text, shell)''---or what it is used for---e.g., the synopsis for GNU@tie{}grep is ``Print lines matching a pattern''." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:601 +#: guix-git/doc/contributing.texi:631 msgid "Keep in mind that the synopsis must be meaningful for a very wide audience. For example, ``Manipulate alignments in the SAM format'' might make sense for a seasoned bioinformatics researcher, but might be fairly unhelpful or even misleading to a non-specialized audience. It is a good idea to come up with a synopsis that gives an idea of the application domain of the package. In this example, this might give something like ``Manipulate nucleotide sequence alignments'', which hopefully gives the user a better idea of whether this is what they are looking for." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:609 +#: guix-git/doc/contributing.texi:639 msgid "Descriptions should take between five and ten lines. Use full sentences, and avoid using acronyms without first introducing them. Please avoid marketing phrases such as ``world-leading'', ``industrial-strength'', and ``next-generation'', and avoid superlatives like ``the most advanced''---they are not helpful to users looking for a package and may even sound suspicious. Instead, try to be factual, mentioning use cases and features." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:610 +#: guix-git/doc/contributing.texi:640 #, no-wrap msgid "Texinfo markup, in package descriptions" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:619 +#: guix-git/doc/contributing.texi:649 msgid "Descriptions can include Texinfo markup, which is useful to introduce ornaments such as @code{@@code} or @code{@@dfn}, bullet lists, or hyperlinks (@pxref{Overview,,, texinfo, GNU Texinfo}). However you should be careful when using some characters for example @samp{@@} and curly braces which are the basic special characters in Texinfo (@pxref{Special Characters,,, texinfo, GNU Texinfo}). User interfaces such as @command{guix package --show} take care of rendering it appropriately." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:625 +#: guix-git/doc/contributing.texi:655 msgid "Synopses and descriptions are translated by volunteers @uref{https://translate.fedoraproject.org/projects/guix/packages, at Weblate} so that as many users as possible can read them in their native language. User interfaces search them and display them in the language specified by the current locale." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:630 +#: guix-git/doc/contributing.texi:660 msgid "To allow @command{xgettext} to extract them as translatable strings, synopses and descriptions @emph{must be literal strings}. This means that you cannot use @code{string-append} or @code{format} to construct these strings:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:636 +#: guix-git/doc/contributing.texi:666 #, no-wrap msgid "" "(package\n" @@ -1050,12 +1092,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:644 +#: guix-git/doc/contributing.texi:674 msgid "Translation is a lot of work so, as a packager, please pay even more attention to your synopses and descriptions as every change may entail additional work for translators. In order to help them, it is possible to make recommendations or instructions visible to them by inserting special comments like this (@pxref{xgettext Invocation,,, gettext, GNU Gettext}):" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:649 +#: guix-git/doc/contributing.texi:679 #, no-wrap msgid "" ";; TRANSLATORS: \"X11 resize-and-rotate\" should not be translated.\n" @@ -1064,440 +1106,439 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:654 +#: guix-git/doc/contributing.texi:684 #, no-wrap msgid "snippets, when to use" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:665 +#: guix-git/doc/contributing.texi:695 msgid "The boundary between using an origin snippet versus a build phase to modify the sources of a package can be elusive. Origin snippets are typically used to remove unwanted files such as bundled libraries, nonfree sources, or to apply simple substitutions. The source derived from an origin should produce a source that can be used to build the package on any system that the upstream package supports (i.e., act as the corresponding source). In particular, origin snippets must not embed store items in the sources; such patching should rather be done using build phases. Refer to the @code{origin} record documentation for more information (@pxref{origin Reference})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:669 +#: guix-git/doc/contributing.texi:699 #, no-wrap msgid "emacs, packaging" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:670 +#: guix-git/doc/contributing.texi:700 #, no-wrap msgid "elisp, packaging" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:682 +#: guix-git/doc/contributing.texi:712 msgid "Emacs packages should preferably use the Emacs build system (@pxref{emacs-build-system}), for uniformity and the benefits provided by its build phases, such as the auto-generation of the autoloads file and the byte compilation of the sources. Because there is no standardized way to run a test suite for Emacs packages, tests are disabled by default. When a test suite is available, it should be enabled by setting the @code{#:tests?} argument to @code{#true}. By default, the command to run the test is @command{make check}, but any command can be specified via the @code{#:test-command} argument. The @code{#:test-command} argument expects a list containing a command and its arguments, to be invoked during the @code{check} phase." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:687 +#: guix-git/doc/contributing.texi:717 msgid "The Elisp dependencies of Emacs packages are typically provided as @code{propagated-inputs} when required at run time. As for other packages, build or test dependencies should be specified as @code{native-inputs}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:696 +#: guix-git/doc/contributing.texi:726 msgid "Emacs packages sometimes depend on resources directories that should be installed along the Elisp files. The @code{#:include} argument can be used for that purpose, by specifying a list of regexps to match. The best practice when using the @code{#:include} argument is to extend rather than override its default value (accessible via the @code{%default-include} variable). As an example, a yasnippet extension package typically include a @file{snippets} directory, which could be copied to the installation directory using:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:699 +#: guix-git/doc/contributing.texi:729 #, no-wrap msgid "#:include (cons \"^snippets/\" %default-include)\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:705 +#: guix-git/doc/contributing.texi:735 msgid "When encountering problems, it is wise to check for the presence of the @code{Package-Requires} extension header in the package main source file, and whether any dependencies and their versions listed therein are satisfied." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:709 +#: guix-git/doc/contributing.texi:739 #, no-wrap msgid "python" msgstr "Python" #. type: Plain text -#: guix-git/doc/contributing.texi:715 +#: guix-git/doc/contributing.texi:745 msgid "We currently package Python 2 and Python 3, under the Scheme variable names @code{python-2} and @code{python} as explained in @ref{Version Numbers}. To avoid confusion and naming clashes with other programming languages, it seems desirable that the name of a package for a Python module contains the word @code{python}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:722 +#: guix-git/doc/contributing.texi:752 msgid "Some modules are compatible with only one version of Python, others with both. If the package Foo is compiled with Python 3, we name it @code{python-foo}. If it is compiled with Python 2, we name it @code{python2-foo}. Packages should be added when they are necessary; we don't add Python 2 variants of the package unless we are going to use them." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:728 +#: guix-git/doc/contributing.texi:758 msgid "If a project already contains the word @code{python}, we drop this; for instance, the module python-dateutil is packaged under the names @code{python-dateutil} and @code{python2-dateutil}. If the project name starts with @code{py} (e.g.@: @code{pytz}), we keep it and prefix it as described above." msgstr "" #. type: subsubsection -#: guix-git/doc/contributing.texi:729 +#: guix-git/doc/contributing.texi:759 #, no-wrap msgid "Specifying Dependencies" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:730 +#: guix-git/doc/contributing.texi:760 #, no-wrap msgid "inputs, for Python packages" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:735 +#: guix-git/doc/contributing.texi:765 msgid "Dependency information for Python packages is usually available in the package source tree, with varying degrees of accuracy: in the @file{setup.py} file, in @file{requirements.txt}, or in @file{tox.ini}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:741 +#: guix-git/doc/contributing.texi:771 msgid "Your mission, when writing a recipe for a Python package, is to map these dependencies to the appropriate type of ``input'' (@pxref{package Reference, inputs}). Although the @code{pypi} importer normally does a good job (@pxref{Invoking guix import}), you may want to check the following check list to determine which dependency goes where." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:749 +#: guix-git/doc/contributing.texi:779 msgid "We currently package Python 2 with @code{setuptools} and @code{pip} installed like Python 3.4 has per default. Thus you don't need to specify either of these as an input. @command{guix lint} will warn you if you do." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:755 +#: guix-git/doc/contributing.texi:785 msgid "Python dependencies required at run time go into @code{propagated-inputs}. They are typically defined with the @code{install_requires} keyword in @file{setup.py}, or in the @file{requirements.txt} file." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:763 +#: guix-git/doc/contributing.texi:793 msgid "Python packages required only at build time---e.g., those listed with the @code{setup_requires} keyword in @file{setup.py}---or only for testing---e.g., those in @code{tests_require}---go into @code{native-inputs}. The rationale is that (1) they do not need to be propagated because they are not needed at run time, and (2) in a cross-compilation context, it's the ``native'' input that we'd want." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:767 +#: guix-git/doc/contributing.texi:797 msgid "Examples are the @code{pytest}, @code{mock}, and @code{nose} test frameworks. Of course if any of these packages is also required at run-time, it needs to go to @code{propagated-inputs}." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:772 +#: guix-git/doc/contributing.texi:802 msgid "Anything that does not fall in the previous categories goes to @code{inputs}, for example programs or C libraries required for building Python packages containing C extensions." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:778 +#: guix-git/doc/contributing.texi:808 msgid "If a Python package has optional dependencies (@code{extras_require}), it is up to you to decide whether to add them or not, based on their usefulness/overhead ratio (@pxref{Submitting Patches, @command{guix size}})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:785 +#: guix-git/doc/contributing.texi:815 #, no-wrap msgid "perl" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:796 +#: guix-git/doc/contributing.texi:826 msgid "Perl programs standing for themselves are named as any other package, using the lowercase upstream name. For Perl packages containing a single class, we use the lowercase class name, replace all occurrences of @code{::} by dashes and prepend the prefix @code{perl-}. So the class @code{XML::Parser} becomes @code{perl-xml-parser}. Modules containing several classes keep their lowercase upstream name and are also prepended by @code{perl-}. Such modules tend to have the word @code{perl} somewhere in their name, which gets dropped in favor of the prefix. For instance, @code{libwww-perl} becomes @code{perl-libwww}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:801 +#: guix-git/doc/contributing.texi:831 #, no-wrap msgid "java" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:804 +#: guix-git/doc/contributing.texi:834 msgid "Java programs standing for themselves are named as any other package, using the lowercase upstream name." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:810 +#: guix-git/doc/contributing.texi:840 msgid "To avoid confusion and naming clashes with other programming languages, it is desirable that the name of a package for a Java package is prefixed with @code{java-}. If a project already contains the word @code{java}, we drop this; for instance, the package @code{ngsjava} is packaged under the name @code{java-ngs}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:816 +#: guix-git/doc/contributing.texi:846 msgid "For Java packages containing a single class or a small class hierarchy, we use the lowercase class name, replace all occurrences of @code{.} by dashes and prepend the prefix @code{java-}. So the class @code{apache.commons.cli} becomes package @code{java-apache-commons-cli}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:821 +#: guix-git/doc/contributing.texi:851 #, no-wrap msgid "rust" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:824 +#: guix-git/doc/contributing.texi:854 msgid "Rust programs standing for themselves are named as any other package, using the lowercase upstream name." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:828 +#: guix-git/doc/contributing.texi:858 msgid "To prevent namespace collisions we prefix all other Rust packages with the @code{rust-} prefix. The name should be changed to lowercase as appropriate and dashes should remain in place." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:834 +#: guix-git/doc/contributing.texi:864 msgid "In the rust ecosystem it is common for multiple incompatible versions of a package to be used at any given time, so all package definitions should have a versioned suffix. The versioned suffix is the left-most non-zero digit (and any leading zeros, of course). This follows the ``caret'' version scheme intended by Cargo. Examples@: @code{rust-clap-2}, @code{rust-rand-0.6}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:844 +#: guix-git/doc/contributing.texi:874 msgid "Because of the difficulty in reusing rust packages as pre-compiled inputs for other packages the Cargo build system (@pxref{Build Systems, @code{cargo-build-system}}) presents the @code{#:cargo-inputs} and @code{cargo-development-inputs} keywords as build system arguments. It would be helpful to think of these as similar to @code{propagated-inputs} and @code{native-inputs}. Rust @code{dependencies} and @code{build-dependencies} should go in @code{#:cargo-inputs}, and @code{dev-dependencies} should go in @code{#:cargo-development-inputs}. If a Rust package links to other libraries then the standard placement in @code{inputs} and the like should be used." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:850 +#: guix-git/doc/contributing.texi:880 msgid "Care should be taken to ensure the correct version of dependencies are used; to this end we try to refrain from skipping the tests or using @code{#:skip-build?} when possible. Of course this is not always possible, as the package may be developed for a different Operating System, depend on features from the Nightly Rust compiler, or the test suite may have atrophied since it was released." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:855 guix-git/doc/guix.texi:1930 +#: guix-git/doc/contributing.texi:885 guix-git/doc/guix.texi:1947 #, no-wrap msgid "fonts" msgstr "fontit" #. type: Plain text -#: guix-git/doc/contributing.texi:861 +#: guix-git/doc/contributing.texi:891 msgid "For fonts that are in general not installed by a user for typesetting purposes, or that are distributed as part of a larger software package, we rely on the general packaging rules for software; for instance, this applies to the fonts delivered as part of the X.Org system or fonts that are part of TeX Live." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:865 +#: guix-git/doc/contributing.texi:895 msgid "To make it easier for a user to search for fonts, names for other packages containing only fonts are constructed as follows, independently of the upstream package name." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:873 +#: guix-git/doc/contributing.texi:903 msgid "The name of a package containing only one font family starts with @code{font-}; it is followed by the foundry name and a dash @code{-} if the foundry is known, and the font family name, in which spaces are replaced by dashes (and as usual, all upper case letters are transformed to lower case). For example, the Gentium font family by SIL is packaged under the name @code{font-sil-gentium}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:882 +#: guix-git/doc/contributing.texi:912 msgid "For a package containing several font families, the name of the collection is used in the place of the font family name. For instance, the Liberation fonts consist of three families, Liberation Sans, Liberation Serif and Liberation Mono. These could be packaged separately under the names @code{font-liberation-sans} and so on; but as they are distributed together under a common name, we prefer to package them together as @code{font-liberation}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:888 +#: guix-git/doc/contributing.texi:918 msgid "In the case where several formats of the same font family or font collection are packaged separately, a short form of the format, prepended by a dash, is added to the package name. We use @code{-ttf} for TrueType fonts, @code{-otf} for OpenType fonts and @code{-type1} for PostScript Type 1 fonts." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:896 +#: guix-git/doc/contributing.texi:926 msgid "In general our code follows the GNU Coding Standards (@pxref{Top,,, standards, GNU Coding Standards}). However, they do not say much about Scheme, so here are some additional rules." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:904 -#: guix-git/doc/contributing.texi:905 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:934 +#: guix-git/doc/contributing.texi:935 #, no-wrap msgid "Programming Paradigm" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "How to compose your elements." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:911 -#: guix-git/doc/contributing.texi:912 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:941 +#: guix-git/doc/contributing.texi:942 #, no-wrap msgid "Modules" msgstr "Moduulit" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Where to store your code?" msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:922 -#: guix-git/doc/contributing.texi:923 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:952 +#: guix-git/doc/contributing.texi:953 #, no-wrap msgid "Data Types and Pattern Matching" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Implementing data structures." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:937 -#: guix-git/doc/contributing.texi:938 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:967 +#: guix-git/doc/contributing.texi:968 #, no-wrap msgid "Formatting Code" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Writing conventions." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:910 +#: guix-git/doc/contributing.texi:940 msgid "Scheme code in Guix is written in a purely functional style. One exception is code that involves input/output, and procedures that implement low-level concepts, such as the @code{memoize} procedure." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:918 +#: guix-git/doc/contributing.texi:948 msgid "Guile modules that are meant to be used on the builder side must live in the @code{(guix build @dots{})} name space. They must not refer to other Guix or GNU modules. However, it is OK for a ``host-side'' module to use a build-side module." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:921 +#: guix-git/doc/contributing.texi:951 msgid "Modules that deal with the broader GNU system should be in the @code{(gnu @dots{})} name space rather than @code{(guix @dots{})}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:930 +#: guix-git/doc/contributing.texi:960 msgid "The tendency in classical Lisp is to use lists to represent everything, and then to browse them ``by hand'' using @code{car}, @code{cdr}, @code{cadr}, and co. There are several problems with that style, notably the fact that it is hard to read, error-prone, and a hindrance to proper type error reports." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:936 +#: guix-git/doc/contributing.texi:966 msgid "Guix code should define appropriate data types (for instance, using @code{define-record-type*}) rather than abuse lists. In addition, it should use pattern matching, via Guile’s @code{(ice-9 match)} module, especially when matching lists (@pxref{Pattern Matching,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:940 +#: guix-git/doc/contributing.texi:970 #, no-wrap msgid "formatting code" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:941 +#: guix-git/doc/contributing.texi:971 #, no-wrap msgid "coding style" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:948 +#: guix-git/doc/contributing.texi:978 msgid "When writing Scheme code, we follow common wisdom among Scheme programmers. In general, we follow the @url{https://mumble.net/~campbell/scheme/style.txt, Riastradh's Lisp Style Rules}. This document happens to describe the conventions mostly used in Guile’s code too. It is very thoughtful and well written, so please do read it." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:955 +#: guix-git/doc/contributing.texi:985 msgid "Some special forms introduced in Guix, such as the @code{substitute*} macro, have special indentation rules. These are defined in the @file{.dir-locals.el} file, which Emacs automatically uses. Also note that Emacs-Guix provides @code{guix-devel-mode} mode that indents and highlights Guix code properly (@pxref{Development,,, emacs-guix, The Emacs-Guix Reference Manual})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:956 +#: guix-git/doc/contributing.texi:986 #, no-wrap msgid "indentation, of code" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:957 +#: guix-git/doc/contributing.texi:987 #, no-wrap msgid "formatting, of code" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:960 +#: guix-git/doc/contributing.texi:990 msgid "If you do not use Emacs, please make sure to let your editor knows these rules. To automatically indent a package definition, you can also run:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:963 +#: guix-git/doc/contributing.texi:993 #, no-wrap -msgid "./etc/indent-code.el gnu/packages/@var{file}.scm @var{package}\n" +msgid "./pre-inst-env guix style @var{package}\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:969 -msgid "This automatically indents the definition of @var{package} in @file{gnu/packages/@var{file}.scm} by running Emacs in batch mode. To indent a whole file, omit the second argument:" -msgstr "" - -#. type: example -#: guix-git/doc/contributing.texi:972 -#, no-wrap -msgid "./etc/indent-code.el gnu/services/@var{file}.scm\n" +#: guix-git/doc/contributing.texi:997 +msgid "@xref{Invoking guix style}, for more information." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:974 +#: guix-git/doc/contributing.texi:998 #, no-wrap msgid "Vim, Scheme code editing" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:980 +#: guix-git/doc/contributing.texi:1004 msgid "If you are editing code with Vim, we recommend that you run @code{:set autoindent} so that your code is automatically indented as you type. Additionally, @uref{https://www.vim.org/scripts/script.php?script_id=3998, @code{paredit.vim}} may help you deal with all these parentheses." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:984 +#: guix-git/doc/contributing.texi:1008 msgid "We require all top-level procedures to carry a docstring. This requirement can be relaxed for simple private procedures in the @code{(guix build @dots{})} name space, though." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:987 +#: guix-git/doc/contributing.texi:1011 msgid "Procedures should not have more than four positional parameters. Use keyword parameters for procedures that take more than four parameters." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1001 +#: guix-git/doc/contributing.texi:1025 msgid "Development is done using the Git distributed version control system. Thus, access to the repository is not strictly necessary. We welcome contributions in the form of patches as produced by @code{git format-patch} sent to the @email{guix-patches@@gnu.org} mailing list (@pxref{submitting patches,, Submitting patches to a project, git, Git User Manual}). Contributors are encouraged to take a moment to set some Git repository options (@pxref{Configuring Git}) first, which can improve the readability of patches. Seasoned Guix developers may also want to look at the section on commit access (@pxref{Commit Access})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1008 +#: guix-git/doc/contributing.texi:1032 msgid "This mailing list is backed by a Debbugs instance, which allows us to keep track of submissions (@pxref{Tracking Bugs and Patches}). Each message sent to that mailing list gets a new tracking number assigned; people can then follow up on the submission by sending email to @code{@var{NNN}@@debbugs.gnu.org}, where @var{NNN} is the tracking number (@pxref{Sending a Patch Series})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1012 +#: guix-git/doc/contributing.texi:1036 msgid "Please write commit logs in the ChangeLog format (@pxref{Change Logs,,, standards, GNU Coding Standards}); you can check the commit history for examples." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1015 +#: guix-git/doc/contributing.texi:1039 msgid "Before submitting a patch that adds or modifies a package definition, please run through this check list:" msgstr "" #. type: code{#1} -#: guix-git/doc/contributing.texi:1017 guix-git/doc/contributing.texi:1223 +#: guix-git/doc/contributing.texi:1041 guix-git/doc/contributing.texi:1251 #, no-wrap msgid "git format-patch" msgstr "" #. type: code{#1} -#: guix-git/doc/contributing.texi:1018 +#: guix-git/doc/contributing.texi:1042 #, no-wrap msgid "git-format-patch" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1025 +#: guix-git/doc/contributing.texi:1049 msgid "When generating your patches with @code{git format-patch} or @code{git send-email}, we recommend using the option @code{--base=}, perhaps with the value @code{auto}. This option adds a note to the patch stating which commit the patch is based on. This helps reviewers understand how to apply and review your patches." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1031 +#: guix-git/doc/contributing.texi:1055 msgid "If the authors of the packaged software provide a cryptographic signature for the release tarball, make an effort to verify the authenticity of the archive. For a detached GPG signature file this would be done with the @code{gpg --verify} command." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1035 +#: guix-git/doc/contributing.texi:1059 msgid "Take some time to provide an adequate synopsis and description for the package. @xref{Synopses and Descriptions}, for some guidelines." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1040 +#: guix-git/doc/contributing.texi:1064 msgid "Run @code{guix lint @var{package}}, where @var{package} is the name of the new or modified package, and fix any errors it reports (@pxref{Invoking guix lint})." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1044 +#: guix-git/doc/contributing.texi:1068 +msgid "Run @code{guix style @var{package}} to format the new package definition according to the project's conventions (@pxref{Invoking guix style})." +msgstr "" + +#. type: enumerate +#: guix-git/doc/contributing.texi:1072 msgid "Make sure the package builds on your platform, using @code{guix build @var{package}}." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1052 +#: guix-git/doc/contributing.texi:1080 msgid "We recommend you also try building the package on other supported platforms. As you may not have access to actual hardware platforms, we recommend using the @code{qemu-binfmt-service-type} to emulate them. In order to enable it, add the @code{virtualization} service module and the following service to the list of services in your @code{operating-system} configuration:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:1057 +#: guix-git/doc/contributing.texi:1085 #, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -1506,17 +1547,17 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1060 +#: guix-git/doc/contributing.texi:1088 msgid "Then reconfigure your system." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1065 +#: guix-git/doc/contributing.texi:1093 msgid "You can then build packages for different platforms by specifying the @code{--system} option. For example, to build the \"hello\" package for the armhf or aarch64 architectures, you would run the following commands, respectively:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1068 +#: guix-git/doc/contributing.texi:1096 #, no-wrap msgid "" "guix build --system=armhf-linux --rounds=2 hello\n" @@ -1524,231 +1565,231 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1071 +#: guix-git/doc/contributing.texi:1099 #, no-wrap msgid "bundling" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1074 +#: guix-git/doc/contributing.texi:1102 msgid "Make sure the package does not use bundled copies of software already available as separate packages." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1083 +#: guix-git/doc/contributing.texi:1111 msgid "Sometimes, packages include copies of the source code of their dependencies as a convenience for users. However, as a distribution, we want to make sure that such packages end up using the copy we already have in the distribution, if there is one. This improves resource usage (the dependency is built and stored only once), and allows the distribution to make transverse changes such as applying security updates for a given software package in a single place and have them affect the whole system---something that bundled copies prevent." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1092 +#: guix-git/doc/contributing.texi:1120 msgid "Take a look at the profile reported by @command{guix size} (@pxref{Invoking guix size}). This will allow you to notice references to other packages unwillingly retained. It may also help determine whether to split the package (@pxref{Packages with Multiple Outputs}), and which optional dependencies should be used. In particular, avoid adding @code{texlive} as a dependency: because of its extreme size, use the @code{texlive-tiny} package or @code{texlive-union} procedure instead." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1097 +#: guix-git/doc/contributing.texi:1125 msgid "For important changes, check that dependent packages (if applicable) are not affected by the change; @code{guix refresh --list-dependent @var{package}} will help you do that (@pxref{Invoking guix refresh})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1099 +#: guix-git/doc/contributing.texi:1127 #, no-wrap msgid "branching strategy" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1100 +#: guix-git/doc/contributing.texi:1128 #, no-wrap msgid "rebuild scheduling strategy" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1103 +#: guix-git/doc/contributing.texi:1131 msgid "Depending on the number of dependent packages and thus the amount of rebuilding induced, commits go to different branches, along these lines:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1105 +#: guix-git/doc/contributing.texi:1133 #, no-wrap msgid "300 dependent packages or less" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1107 +#: guix-git/doc/contributing.texi:1135 msgid "@code{master} branch (non-disruptive changes)." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1108 +#: guix-git/doc/contributing.texi:1136 #, no-wrap msgid "between 300 and 1,800 dependent packages" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1114 +#: guix-git/doc/contributing.texi:1142 msgid "@code{staging} branch (non-disruptive changes). This branch is intended to be merged in @code{master} every 6 weeks or so. Topical changes (e.g., an update of the GNOME stack) can instead go to a specific branch (say, @code{gnome-updates}). This branch is not expected to be buildable or usable until late in its development process." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1115 +#: guix-git/doc/contributing.texi:1143 #, no-wrap msgid "more than 1,800 dependent packages" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1120 +#: guix-git/doc/contributing.texi:1148 msgid "@code{core-updates} branch (may include major and potentially disruptive changes). This branch is intended to be merged in @code{master} every 6 months or so. This branch is not expected to be buildable or usable until late in its development process." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1127 +#: guix-git/doc/contributing.texi:1155 msgid "All these branches are @uref{https://@value{SUBSTITUTE-SERVER-1}, tracked by our build farm} and merged into @code{master} once everything has been successfully built. This allows us to fix issues before they hit users, and to reduce the window during which pre-built binaries are not available." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1136 +#: guix-git/doc/contributing.texi:1164 msgid "When we decide to start building the @code{staging} or @code{core-updates} branches, they will be forked and renamed with the suffix @code{-frozen}, at which time only bug fixes may be pushed to the frozen branches. The @code{core-updates} and @code{staging} branches will remain open to accept patches for the next cycle. Please ask on the mailing list or IRC if unsure where to place a patch." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1138 +#: guix-git/doc/contributing.texi:1166 #, no-wrap msgid "determinism, of build processes" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1139 +#: guix-git/doc/contributing.texi:1167 #, no-wrap msgid "reproducible builds, checking" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1143 +#: guix-git/doc/contributing.texi:1171 msgid "Check whether the package's build process is deterministic. This typically means checking whether an independent build of the package yields the exact same result that you obtained, bit for bit." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1146 +#: guix-git/doc/contributing.texi:1174 msgid "A simple way to do that is by building the same package several times in a row on your machine (@pxref{Invoking guix build}):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1149 +#: guix-git/doc/contributing.texi:1177 #, no-wrap msgid "guix build --rounds=2 my-package\n" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1153 +#: guix-git/doc/contributing.texi:1181 msgid "This is enough to catch a class of common non-determinism issues, such as timestamps or randomly-generated output in the build result." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1163 +#: guix-git/doc/contributing.texi:1191 msgid "Another option is to use @command{guix challenge} (@pxref{Invoking guix challenge}). You may run it once the package has been committed and built by @code{@value{SUBSTITUTE-SERVER-1}} to check whether it obtains the same result as you did. Better yet: Find another machine that can build it and run @command{guix publish}. Since the remote build machine is likely different from yours, this can catch non-determinism issues related to the hardware---e.g., use of different instruction set extensions---or to the operating system kernel---e.g., reliance on @code{uname} or @file{/proc} files." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1169 +#: guix-git/doc/contributing.texi:1197 msgid "When writing documentation, please use gender-neutral wording when referring to people, such as @uref{https://en.wikipedia.org/wiki/Singular_they, singular ``they''@comma{} ``their''@comma{} ``them''}, and so forth." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1173 +#: guix-git/doc/contributing.texi:1201 msgid "Verify that your patch contains only one set of related changes. Bundling unrelated changes together makes reviewing harder and slower." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1176 +#: guix-git/doc/contributing.texi:1204 msgid "Examples of unrelated changes include the addition of several packages, or a package update along with fixes to that package." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1181 -msgid "Please follow our code formatting rules, possibly running the @command{etc/indent-code.el} script to do that automatically for you (@pxref{Formatting Code})." +#: guix-git/doc/contributing.texi:1209 +msgid "Please follow our code formatting rules, possibly running @command{guix style} script to do that automatically for you (@pxref{Formatting Code})." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1189 +#: guix-git/doc/contributing.texi:1217 msgid "When possible, use mirrors in the source URL (@pxref{Invoking guix download}). Use reliable URLs, not generated ones. For instance, GitHub archives are not necessarily identical from one generation to the next, so in this case it's often better to clone the repository. Don't use the @command{name} field in the URL: it is not very useful and if the name changes, the URL will probably be wrong." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1193 +#: guix-git/doc/contributing.texi:1221 msgid "Check if Guix builds (@pxref{Building from Git}) and address the warnings, especially those about use of undefined symbols." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1196 +#: guix-git/doc/contributing.texi:1224 msgid "Make sure your changes do not break Guix and simulate a @code{guix pull} with:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1198 +#: guix-git/doc/contributing.texi:1226 #, no-wrap msgid "guix pull --url=/path/to/your/checkout --profile=/tmp/guix.master\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1211 +#: guix-git/doc/contributing.texi:1239 msgid "When posting a patch to the mailing list, use @samp{[PATCH] @dots{}} as a subject, if your patch is to be applied on a branch other than @code{master}, say @code{core-updates}, specify it in the subject like @samp{[PATCH core-updates] @dots{}}. You may use your email client or the @command{git send-email} command (@pxref{Sending a Patch Series}). We prefer to get patches in plain text messages, either inline or as MIME attachments. You are advised to pay attention if your email client changes anything like line breaks or indentation which could potentially break the patches." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1216 +#: guix-git/doc/contributing.texi:1244 msgid "Expect some delay when you submit your very first patch to @email{guix-patches@@gnu.org}. You have to wait until you get an acknowledgement with the assigned tracking number. Future acknowledgements should not be delayed." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1219 +#: guix-git/doc/contributing.texi:1247 msgid "When a bug is resolved, please close the thread by sending an email to @email{@var{NNN}-done@@debbugs.gnu.org}." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1220 guix-git/doc/contributing.texi:1221 +#: guix-git/doc/contributing.texi:1248 guix-git/doc/contributing.texi:1249 #, no-wrap msgid "Configuring Git" msgstr "Konfiguroidaan Gittiä" #. type: cindex -#: guix-git/doc/contributing.texi:1222 +#: guix-git/doc/contributing.texi:1250 #, no-wrap msgid "git configuration" msgstr "git-määritykset" #. type: code{#1} -#: guix-git/doc/contributing.texi:1224 guix-git/doc/contributing.texi:1259 +#: guix-git/doc/contributing.texi:1252 guix-git/doc/contributing.texi:1287 #, no-wrap msgid "git send-email" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1232 +#: guix-git/doc/contributing.texi:1260 msgid "If you have not done so already, you may wish to set a name and email that will be associated with your commits (@pxref{telling git your name, , Telling Git your name, git, Git User Manual}). If you wish to use a different name or email just for commits in this repository, you can use @command{git config --local}, or edit @file{.git/config} in the repository instead of @file{~/.gitconfig}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1238 +#: guix-git/doc/contributing.texi:1266 msgid "We provide some default settings in @file{etc/git/gitconfig} which modify how patches are generated, making them easier to read and apply. These settings can be applied by manually copying them to @file{.git/config} in your checkout, or by telling Git to include the whole file:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1241 +#: guix-git/doc/contributing.texi:1269 #, no-wrap msgid "git config --local include.path ../etc/git/gitconfig\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1245 +#: guix-git/doc/contributing.texi:1273 msgid "From then on, any changes to @file{etc/git/gitconfig} would automatically take effect." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1250 +#: guix-git/doc/contributing.texi:1278 msgid "Since the first patch in a series must be sent separately (@pxref{Sending a Patch Series}), it can also be helpful to tell @command{git format-patch} to handle the e-mail threading instead of @command{git send-email}:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1254 +#: guix-git/doc/contributing.texi:1282 #, no-wrap msgid "" "git config --local format.thread shallow\n" @@ -1756,184 +1797,184 @@ msgid "" msgstr "" #. type: anchor{#1} -#: guix-git/doc/contributing.texi:1256 guix-git/doc/contributing.texi:1258 +#: guix-git/doc/contributing.texi:1284 guix-git/doc/contributing.texi:1286 #, no-wrap msgid "Sending a Patch Series" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1258 +#: guix-git/doc/contributing.texi:1286 #, no-wrap msgid "patch series" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1269 +#: guix-git/doc/contributing.texi:1297 msgid "When sending a patch series (e.g., using @code{git send-email}), please first send one message to @email{guix-patches@@gnu.org}, and then send subsequent patches to @email{@var{NNN}@@debbugs.gnu.org} to make sure they are kept together. See @uref{https://debbugs.gnu.org/Advanced.html, the Debbugs documentation} for more information. You can install @command{git send-email} with @command{guix install git:send-email}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1275 +#: guix-git/doc/contributing.texi:1303 msgid "This section describes how the Guix project tracks its bug reports and patch submissions." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1282 -#: guix-git/doc/contributing.texi:1283 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1310 +#: guix-git/doc/contributing.texi:1311 #, no-wrap msgid "The Issue Tracker" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "The official bug and patch tracker." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1296 -#: guix-git/doc/contributing.texi:1297 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1324 +#: guix-git/doc/contributing.texi:1325 #, no-wrap msgid "Debbugs User Interfaces" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "Ways to interact with Debbugs." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1336 -#: guix-git/doc/contributing.texi:1337 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1364 +#: guix-git/doc/contributing.texi:1365 #, no-wrap msgid "Debbugs Usertags" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "Tag reports with custom labels." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1285 +#: guix-git/doc/contributing.texi:1313 #, no-wrap msgid "bug reports, tracking" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1286 +#: guix-git/doc/contributing.texi:1314 #, no-wrap msgid "patch submissions, tracking" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1287 +#: guix-git/doc/contributing.texi:1315 #, no-wrap msgid "issue tracking" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1288 +#: guix-git/doc/contributing.texi:1316 #, no-wrap msgid "Debbugs, issue tracking system" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1295 +#: guix-git/doc/contributing.texi:1323 msgid "Bug reports and patch submissions are currently tracked using the Debbugs instance at @uref{https://bugs.gnu.org}. Bug reports are filed against the @code{guix} ``package'' (in Debbugs parlance), by sending email to @email{bug-guix@@gnu.org}, while patch submissions are filed against the @code{guix-patches} package by sending email to @email{guix-patches@@gnu.org} (@pxref{Submitting Patches})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1301 +#: guix-git/doc/contributing.texi:1329 msgid "A web interface (actually @emph{two} web interfaces!) are available to browse issues:" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1310 +#: guix-git/doc/contributing.texi:1338 msgid "@url{https://issues.guix.gnu.org} provides a pleasant interface@footnote{The web interface at @url{https://issues.guix.gnu.org} is powered by Mumi, a nice piece of software written in Guile, and you can help! See @url{https://git.elephly.net/gitweb.cgi?p=software/mumi.git}.} to browse bug reports and patches, and to participate in discussions;" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1312 +#: guix-git/doc/contributing.texi:1340 msgid "@url{https://bugs.gnu.org/guix} lists bug reports;" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1314 +#: guix-git/doc/contributing.texi:1342 msgid "@url{https://bugs.gnu.org/guix-patches} lists patch submissions." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1319 +#: guix-git/doc/contributing.texi:1347 msgid "To view discussions related to issue number @var{n}, go to @indicateurl{https://issues.guix.gnu.org/@var{n}} or @indicateurl{https://bugs.gnu.org/@var{n}}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1322 +#: guix-git/doc/contributing.texi:1350 msgid "If you use Emacs, you may find it more convenient to interact with issues using @file{debbugs.el}, which you can install with:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1325 +#: guix-git/doc/contributing.texi:1353 #, no-wrap msgid "guix install emacs-debbugs\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1328 +#: guix-git/doc/contributing.texi:1356 msgid "For example, to list all open issues on @code{guix-patches}, hit:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1331 +#: guix-git/doc/contributing.texi:1359 #, no-wrap msgid "@kbd{C-u} @kbd{M-x} debbugs-gnu @kbd{RET} @kbd{RET} guix-patches @kbd{RET} n y\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1335 +#: guix-git/doc/contributing.texi:1363 msgid "@xref{Top,,, debbugs-ug, Debbugs User Guide}, for more information on this nifty tool!" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1339 +#: guix-git/doc/contributing.texi:1367 #, no-wrap msgid "usertags, for debbugs" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1340 +#: guix-git/doc/contributing.texi:1368 #, no-wrap msgid "Debbugs usertags" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1346 +#: guix-git/doc/contributing.texi:1374 msgid "Debbugs provides a feature called @dfn{usertags} that allows any user to tag any bug with an arbitrary label. Bugs can be searched by usertag, so this is a handy way to organize bugs@footnote{The list of usertags is public information, and anyone can modify any user's list of usertags, so keep that in mind if you choose to use this feature.}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1352 +#: guix-git/doc/contributing.texi:1380 msgid "For example, to view all the bug reports (or patches, in the case of @code{guix-patches}) tagged with the usertag @code{powerpc64le-linux} for the user @code{guix}, open a URL like the following in a web browser: @url{https://debbugs.gnu.org/cgi-bin/pkgreport.cgi?tag=powerpc64le-linux;users=guix}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1356 +#: guix-git/doc/contributing.texi:1384 msgid "For more information on how to use usertags, please refer to the documentation for Debbugs or the documentation for whatever tool you use to interact with Debbugs." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1361 +#: guix-git/doc/contributing.texi:1389 msgid "In Guix, we are experimenting with usertags to keep track of architecture-specific issues. To facilitate collaboration, all our usertags are associated with the single user @code{guix}. The following usertags currently exist for that user:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1364 guix-git/doc/guix.texi:556 +#: guix-git/doc/contributing.texi:1392 guix-git/doc/guix.texi:557 #, no-wrap msgid "powerpc64le-linux" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1372 +#: guix-git/doc/contributing.texi:1400 msgid "The purpose of this usertag is to make it easy to find the issues that matter most for the @code{powerpc64le-linux} system type. Please assign this usertag to bugs or patches that affect @code{powerpc64le-linux} but not other system types. In addition, you may use it to identify issues that for some reason are particularly important for the @code{powerpc64le-linux} system type, even if the issue affects other system types, too." msgstr "" @@ -1941,134 +1982,134 @@ msgstr "" #. type: item #. #-#-#-#-# guix.pot (guix manual checkout) #-#-#-#-# #. type: cindex -#: guix-git/doc/contributing.texi:1373 guix-git/doc/guix.texi:3070 -#: guix-git/doc/guix.texi:4771 +#: guix-git/doc/contributing.texi:1401 guix-git/doc/guix.texi:3087 +#: guix-git/doc/guix.texi:4789 #, no-wrap msgid "reproducibility" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1377 +#: guix-git/doc/contributing.texi:1405 msgid "For issues related to reproducibility. For example, it would be appropriate to assign this usertag to a bug report for a package that fails to build reproducibly." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1384 +#: guix-git/doc/contributing.texi:1412 msgid "If you're a committer and you want to add a usertag, just start using it with the @code{guix} user. If the usertag proves useful to you, consider updating this section of the manual so that others will know what your usertag means." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1388 +#: guix-git/doc/contributing.texi:1416 #, no-wrap msgid "commit access, for developers" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1394 -msgid "Everyone can contribute to Guix without having commit access (@pxref{Submitting Patches}). However, for frequent contributors, having write access to the repository can be convenient. Commit access should not be thought of as a ``badge of honor'' but rather as a responsibility a contributor is willing to take to help the project." +#: guix-git/doc/contributing.texi:1427 +msgid "Everyone can contribute to Guix without having commit access (@pxref{Submitting Patches}). However, for frequent contributors, having write access to the repository can be convenient. As a rule of thumb, a contributor should have accumulated fifty (50) reviewed commits to be considered as a committer and have sustained their activity in the project for at least 6 months. This ensures enough interactions with the contributor, which is essential for mentoring and assessing whether they are ready to become a committer. Commit access should not be thought of as a ``badge of honor'' but rather as a responsibility a contributor is willing to take to help the project." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1398 +#: guix-git/doc/contributing.texi:1431 msgid "The following sections explain how to get commit access, how to be ready to push commits, and the policies and community expectations for commits pushed upstream." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1399 +#: guix-git/doc/contributing.texi:1432 #, no-wrap msgid "Applying for Commit Access" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1403 +#: guix-git/doc/contributing.texi:1436 msgid "When you deem it necessary, consider applying for commit access by following these steps:" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1412 +#: guix-git/doc/contributing.texi:1445 msgid "Find three committers who would vouch for you. You can view the list of committers at @url{https://savannah.gnu.org/project/memberlist.php?group=guix}. Each of them should email a statement to @email{guix-maintainers@@gnu.org} (a private alias for the collective of maintainers), signed with their OpenPGP key." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1418 +#: guix-git/doc/contributing.texi:1451 msgid "Committers are expected to have had some interactions with you as a contributor and to be able to judge whether you are sufficiently familiar with the project's practices. It is @emph{not} a judgment on the value of your work, so a refusal should rather be interpreted as ``let's try again later''." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1425 +#: guix-git/doc/contributing.texi:1458 msgid "Send @email{guix-maintainers@@gnu.org} a message stating your intent, listing the three committers who support your application, signed with the OpenPGP key you will use to sign commits, and giving its fingerprint (see below). See @uref{https://emailselfdefense.fsf.org/en/}, for an introduction to public-key cryptography with GnuPG." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1431 +#: guix-git/doc/contributing.texi:1464 msgid "Set up GnuPG such that it never uses the SHA1 hash algorithm for digital signatures, which is known to be unsafe since 2019, for instance by adding the following line to @file{~/.gnupg/gpg.conf} (@pxref{GPG Esoteric Options,,, gnupg, The GNU Privacy Guard Manual}):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1434 +#: guix-git/doc/contributing.texi:1467 #, no-wrap msgid "digest-algo sha512\n" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1439 +#: guix-git/doc/contributing.texi:1472 msgid "Maintainers ultimately decide whether to grant you commit access, usually following your referrals' recommendation." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1441 +#: guix-git/doc/contributing.texi:1474 #, no-wrap msgid "OpenPGP, signed commits" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1446 +#: guix-git/doc/contributing.texi:1479 msgid "If and once you've been given access, please send a message to @email{guix-devel@@gnu.org} to say so, again signed with the OpenPGP key you will use to sign commits (do that before pushing your first commit). That way, everyone can notice and ensure you control that OpenPGP key." msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:1447 guix-git/doc/guix.texi:17972 +#: guix-git/doc/contributing.texi:1480 guix-git/doc/guix.texi:18334 #, no-wrap msgid "Important" msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:1449 +#: guix-git/doc/contributing.texi:1482 msgid "Before you can push for the first time, maintainers must:" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1453 +#: guix-git/doc/contributing.texi:1486 msgid "add your OpenPGP key to the @code{keyring} branch;" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1456 +#: guix-git/doc/contributing.texi:1489 msgid "add your OpenPGP fingerprint to the @file{.guix-authorizations} file of the branch(es) you will commit to." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1461 +#: guix-git/doc/contributing.texi:1494 msgid "Make sure to read the rest of this section and... profit!" msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:1467 +#: guix-git/doc/contributing.texi:1500 msgid "Maintainers are happy to give commit access to people who have been contributing for some time and have a track record---don't be shy and don't underestimate your work!" msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:1471 +#: guix-git/doc/contributing.texi:1504 msgid "However, note that the project is working towards a more automated patch review and merging system, which, as a consequence, may lead us to have fewer people with commit access to the main repository. Stay tuned!" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1478 +#: guix-git/doc/contributing.texi:1511 msgid "All commits that are pushed to the central repository on Savannah must be signed with an OpenPGP key, and the public key should be uploaded to your user account on Savannah and to public key servers, such as @code{keys.openpgp.org}. To configure Git to automatically sign commits, run:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1481 +#: guix-git/doc/contributing.texi:1514 #, no-wrap msgid "" "git config commit.gpgsign true\n" @@ -2076,7 +2117,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1484 +#: guix-git/doc/contributing.texi:1517 #, no-wrap msgid "" "# Substitute the fingerprint of your public PGP key.\n" @@ -2084,347 +2125,347 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1489 +#: guix-git/doc/contributing.texi:1522 msgid "You can prevent yourself from accidentally pushing unsigned commits to Savannah by using the pre-push Git hook located at @file{etc/git/pre-push}:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1492 +#: guix-git/doc/contributing.texi:1525 #, no-wrap msgid "cp etc/git/pre-push .git/hooks/pre-push\n" msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1494 +#: guix-git/doc/contributing.texi:1527 #, no-wrap msgid "Commit Policy" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1499 +#: guix-git/doc/contributing.texi:1532 msgid "If you get commit access, please make sure to follow the policy below (discussions of the policy can take place on @email{guix-devel@@gnu.org})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1504 +#: guix-git/doc/contributing.texi:1537 msgid "Non-trivial patches should always be posted to @email{guix-patches@@gnu.org} (trivial patches include fixing typos, etc.). This mailing list fills the patch-tracking database (@pxref{Tracking Bugs and Patches})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1513 +#: guix-git/doc/contributing.texi:1546 msgid "For patches that just add a new package, and a simple one, it's OK to commit, if you're confident (which means you successfully built it in a chroot setup, and have done a reasonable copyright and license auditing). Likewise for package upgrades, except upgrades that trigger a lot of rebuilds (for example, upgrading GnuTLS or GLib). We have a mailing list for commit notifications (@email{guix-commits@@gnu.org}), so people can notice. Before pushing your changes, make sure to run @code{git pull --rebase}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1518 +#: guix-git/doc/contributing.texi:1551 msgid "When pushing a commit on behalf of somebody else, please add a @code{Signed-off-by} line at the end of the commit log message---e.g., with @command{git am --signoff}. This improves tracking of who did what." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1522 +#: guix-git/doc/contributing.texi:1555 msgid "When adding channel news entries (@pxref{Channels, Writing Channel News}), make sure they are well-formed by running the following command right before pushing:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1525 +#: guix-git/doc/contributing.texi:1558 #, no-wrap msgid "make check-channel-news\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1531 +#: guix-git/doc/contributing.texi:1564 msgid "For anything else, please post to @email{guix-patches@@gnu.org} and leave time for a review, without committing anything (@pxref{Submitting Patches}). If you didn’t receive any reply after two weeks, and if you're confident, it's OK to commit." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1534 +#: guix-git/doc/contributing.texi:1567 msgid "That last part is subject to being adjusted, allowing individuals to commit directly on non-controversial changes on parts they’re familiar with." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1535 +#: guix-git/doc/contributing.texi:1568 #, no-wrap msgid "Addressing Issues" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1546 +#: guix-git/doc/contributing.texi:1579 msgid "Peer review (@pxref{Submitting Patches}) and tools such as @command{guix lint} (@pxref{Invoking guix lint}) and the test suite (@pxref{Running the Test Suite}) should catch issues before they are pushed. Yet, commits that ``break'' functionality might occasionally go through. When that happens, there are two priorities: mitigating the impact, and understanding what happened to reduce the chance of similar incidents in the future. The responsibility for both these things primarily lies with those involved, but like everything this is a group effort." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1551 +#: guix-git/doc/contributing.texi:1584 msgid "Some issues can directly affect all users---for instance because they make @command{guix pull} fail or break core functionality, because they break major packages (at build time or run time), or because they introduce known security vulnerabilities." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1552 +#: guix-git/doc/contributing.texi:1585 #, no-wrap msgid "reverting commits" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1558 +#: guix-git/doc/contributing.texi:1591 msgid "The people involved in authoring, reviewing, and pushing such commit(s) should be at the forefront to mitigate their impact in a timely fashion: by pushing a followup commit to fix it (if possible), or by reverting it to leave time to come up with a proper fix, and by communicating with other developers about the problem." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1564 +#: guix-git/doc/contributing.texi:1597 msgid "If these persons are unavailable to address the issue in time, other committers are entitled to revert the commit(s), explaining in the commit log and on the mailing list what the problem was, with the goal of leaving time to the original committer, reviewer(s), and author(s) to propose a way forward." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1573 +#: guix-git/doc/contributing.texi:1606 msgid "Once the problem has been dealt with, it is the responsibility of those involved to make sure the situation is understood. If you are working to understand what happened, focus on gathering information and avoid assigning any blame. Do ask those involved to describe what happened, do not ask them to explain the situation---this would implicitly blame them, which is unhelpful. Accountability comes from a consensus about the problem, learning from it and improving processes so that it's less likely to reoccur." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1574 +#: guix-git/doc/contributing.texi:1607 #, no-wrap msgid "Commit Revocation" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1581 +#: guix-git/doc/contributing.texi:1614 msgid "In order to reduce the possibility of mistakes, committers will have their Savannah account removed from the Guix Savannah project and their key removed from @file{.guix-authorizations} after 12 months of inactivity; they can ask to regain commit access by emailing the maintainers, without going through the vouching process." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1591 +#: guix-git/doc/contributing.texi:1624 msgid "Maintainers@footnote{See @uref{https://guix.gnu.org/en/about} for the current list of maintainers. You can email them privately at @email{guix-maintainers@@gnu.org}.} may also revoke an individual's commit rights, as a last resort, if cooperation with the rest of the community has caused too much friction---even within the bounds of the project's code of conduct (@pxref{Contributing}). They would only do so after public or private discussion with the individual and a clear notice. Examples of behavior that hinders cooperation and could lead to such a decision include:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1593 +#: guix-git/doc/contributing.texi:1626 #, no-wrap msgid "repeated violation of the commit policy stated above;" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1594 +#: guix-git/doc/contributing.texi:1627 #, no-wrap msgid "repeated failure to take peer criticism into account;" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1595 +#: guix-git/doc/contributing.texi:1628 #, no-wrap msgid "breaching trust through a series of grave incidents." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1602 +#: guix-git/doc/contributing.texi:1635 msgid "When maintainers resort to such a decision, they notify developers on @email{guix-devel@@gnu.org}; inquiries may be sent to @email{guix-maintainers@@gnu.org}. Depending on the situation, the individual may still be welcome to contribute." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1603 +#: guix-git/doc/contributing.texi:1636 #, no-wrap msgid "Helping Out" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1610 +#: guix-git/doc/contributing.texi:1643 msgid "One last thing: the project keeps moving forward because committers not only push their own awesome changes, but also offer some of their time @emph{reviewing} and pushing other people's changes. As a committer, you're welcome to use your expertise and commit rights to help other contributors, too!" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1614 +#: guix-git/doc/contributing.texi:1647 #, no-wrap msgid "update-guix-package, updating the guix package" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1620 +#: guix-git/doc/contributing.texi:1653 msgid "It is sometimes desirable to update the @code{guix} package itself (the package defined in @code{(gnu packages package-management)}), for example to make new daemon features available for use by the @code{guix-service-type} service type. In order to simplify this task, the following command can be used:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1623 +#: guix-git/doc/contributing.texi:1656 #, no-wrap msgid "make update-guix-package\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1630 +#: guix-git/doc/contributing.texi:1663 msgid "The @code{update-guix-package} make target will use the last known @emph{commit} corresponding to @code{HEAD} in your Guix checkout, compute the hash of the Guix sources corresponding to that commit and update the @code{commit}, @code{revision} and hash of the @code{guix} package definition." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1634 +#: guix-git/doc/contributing.texi:1667 msgid "To validate that the updated @code{guix} package hashes are correct and that it can be built successfully, the following command can be run from the directory of your Guix checkout:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1637 +#: guix-git/doc/contributing.texi:1670 #, no-wrap msgid "./pre-inst-env guix build guix\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1642 +#: guix-git/doc/contributing.texi:1675 msgid "To guard against accidentally updating the @code{guix} package to a commit that others can't refer to, a check is made that the commit used has already been pushed to the Savannah-hosted Guix git repository." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1647 +#: guix-git/doc/contributing.texi:1680 msgid "This check can be disabled, @emph{at your own peril}, by setting the @code{GUIX_ALLOW_ME_TO_USE_PRIVATE_COMMIT} environment variable. When this variable is set, the updated package source is also added to the store. This is used as part of the release process of Guix." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1648 +#: guix-git/doc/contributing.texi:1681 #, no-wrap msgid "translation" msgstr "käännös" #. type: cindex -#: guix-git/doc/contributing.texi:1649 +#: guix-git/doc/contributing.texi:1682 #, no-wrap msgid "l10n" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1650 +#: guix-git/doc/contributing.texi:1683 #, no-wrap msgid "i18n" msgstr "i18n" #. type: cindex -#: guix-git/doc/contributing.texi:1651 +#: guix-git/doc/contributing.texi:1684 #, no-wrap msgid "native language support" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1661 +#: guix-git/doc/contributing.texi:1694 msgid "Writing code and packages is not the only way to provide a meaningful contribution to Guix. Translating to a language you speak is another example of a valuable contribution you can make. This section is designed to describe the translation process. It gives you advice on how you can get involved, what can be translated, what mistakes you should avoid and what we can do to help you!" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1667 +#: guix-git/doc/contributing.texi:1700 msgid "Guix is a big project that has multiple components that can be translated. We coordinate the translation effort on a @uref{https://translate.fedoraproject.org/projects/guix/,Weblate instance} hosted by our friends at Fedora. You will need an account to submit translations." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1674 +#: guix-git/doc/contributing.texi:1707 msgid "Some of the software packaged in Guix also contain translations. We do not host a translation platform for them. If you want to translate a package provided by Guix, you should contact their developers or find the information on their website. As an example, you can find the homepage of the @code{hello} package by typing @code{guix show hello}. On the ``homepage'' line, you will see @url{https://www.gnu.org/software/hello/} as the homepage." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1679 +#: guix-git/doc/contributing.texi:1712 msgid "Many GNU and non-GNU packages can be translated on the @uref{https://translationproject.org,Translation Project}. Some projects with multiple components have their own platform. For instance, GNOME has its own platform, @uref{https://l10n.gnome.org/,Damned Lies}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1681 +#: guix-git/doc/contributing.texi:1714 msgid "Guix has five components hosted on Weblate." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1683 +#: guix-git/doc/contributing.texi:1716 #, no-wrap msgid "@code{guix} contains all the strings from the Guix software (the" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1718 msgid "guided system installer, the package manager, etc), excluding packages." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1718 #, no-wrap msgid "@code{packages} contains the synopsis (single-sentence description" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1687 +#: guix-git/doc/contributing.texi:1720 msgid "of a package) and description (longer description) of packages in Guix." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1687 +#: guix-git/doc/contributing.texi:1720 #, no-wrap msgid "@code{website} contains the official Guix website, except for" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1689 +#: guix-git/doc/contributing.texi:1722 msgid "blog posts and multimedia content." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1689 +#: guix-git/doc/contributing.texi:1722 #, no-wrap msgid "@code{documentation-manual} corresponds to this manual." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1690 +#: guix-git/doc/contributing.texi:1723 #, no-wrap msgid "@code{documentation-cookbook} is the component for the cookbook." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1693 +#: guix-git/doc/contributing.texi:1726 #, no-wrap msgid "General Directions" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1701 +#: guix-git/doc/contributing.texi:1734 msgid "Once you get an account, you should be able to select a component from @uref{https://translate.fedoraproject.org/projects/guix/,the guix project}, and select a language. If your language does not appear in the list, go to the bottom and click on the ``Start new translation'' button. Select the language you want to translate to from the list, to start your new translation." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1706 +#: guix-git/doc/contributing.texi:1739 msgid "Like lots of other free software packages, Guix uses @uref{https://www.gnu.org/software/gettext,GNU Gettext} for its translations, with which translatable strings are extracted from the source code to so-called PO files." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1717 +#: guix-git/doc/contributing.texi:1750 msgid "Even though PO files are text files, changes should not be made with a text editor but with PO editing software. Weblate integrates PO editing functionality. Alternatively, translators can use any of various free-software tools for filling in translations, of which @uref{https://poedit.net/,Poedit} is one example, and (after logging in) @uref{https://docs.weblate.org/en/latest/user/files.html,upload} the changed file. There is also a special @uref{https://www.emacswiki.org/emacs/PoMode,PO editing mode} for users of GNU Emacs. Over time translators find out what software they are happy with and what features they need." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1722 +#: guix-git/doc/contributing.texi:1755 msgid "On Weblate, you will find various links to the editor, that will show various subsets (or all) of the strings. Have a look around and at the @uref{https://docs.weblate.org/en/latest/,documentation} to familiarize yourself with the platform." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1723 +#: guix-git/doc/contributing.texi:1756 #, no-wrap msgid "Translation Components" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1728 +#: guix-git/doc/contributing.texi:1761 msgid "In this section, we provide more detailed guidance on the translation process, as well as details on what you should or should not do. When in doubt, please contact us, we will be happy to help!" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1730 guix-git/doc/guix.texi:9420 +#: guix-git/doc/contributing.texi:1763 guix-git/doc/guix.texi:9734 #, no-wrap msgid "guix" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1735 +#: guix-git/doc/contributing.texi:1768 msgid "Guix is written in the Guile programming language, and some strings contain special formatting that is interpreted by Guile. These special formatting should be highlighted by Weblate. They start with @code{~} followed by one or more characters." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1744 +#: guix-git/doc/contributing.texi:1777 msgid "When printing the string, Guile replaces the special formatting symbols with actual values. For instance, the string @samp{ambiguous package specification `~a'} would be substituted to contain said package specification instead of @code{~a}. To properly translate this string, you must keep the formatting code in your translation, although you can place it where it makes sense in your language. For instance, the French translation says @samp{spécification du paquet « ~a » ambiguë} because the adjective needs to be placed in the end of the sentence." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1748 +#: guix-git/doc/contributing.texi:1781 msgid "If there are multiple formatting symbols, make sure to respect the order. Guile does not know in which order you intended the string to be read, so it will substitute the symbols in the same order as the English sentence." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1756 +#: guix-git/doc/contributing.texi:1789 msgid "As an example, you cannot translate @samp{package '~a' has been superseded by '~a'} by @samp{'~a' superseeds package '~a'}, because the meaning would be reversed. If @var{foo} is superseded by @var{bar}, the translation would read @samp{'foo' superseeds package 'bar'}. To work around this problem, it is possible to use more advanced formatting to select a given piece of data, instead of following the default English order. @xref{Formatted Output,,, guile, GNU Guile Reference Manual}, for more information on formatting in Guile." msgstr "" @@ -2432,98 +2473,98 @@ msgstr "" #. type: item #. #-#-#-#-# guix.pot (guix manual checkout) #-#-#-#-# #. type: cindex -#: guix-git/doc/contributing.texi:1757 guix-git/doc/guix.texi:2988 +#: guix-git/doc/contributing.texi:1790 guix-git/doc/guix.texi:3005 #, no-wrap msgid "packages" msgstr "paketit" #. type: table -#: guix-git/doc/contributing.texi:1762 +#: guix-git/doc/contributing.texi:1795 msgid "Package descriptions occasionally contain Texinfo markup (@pxref{Synopses and Descriptions}). Texinfo markup looks like @samp{@@code@{rm -rf@}}, @samp{@@emph@{important@}}, etc. When translating, please leave markup as is." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1771 +#: guix-git/doc/contributing.texi:1804 msgid "The characters after ``@@'' form the name of the markup, and the text between ``@{'' and ``@}'' is its content. In general, you should not translate the content of markup like @code{@@code}, as it contains literal code that do not change with language. You can translate the content of formatting markup such as @code{@@emph}, @code{@@i}, @code{@@itemize}, @code{@@item}. However, do not translate the name of the markup, or it will not be recognized. Do not translate the word after @code{@@end}, it is the name of the markup that is closed at this position (e.g.@: @code{@@itemize ... @@end itemize})." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1772 +#: guix-git/doc/contributing.texi:1805 #, no-wrap msgid "documentation-manual and documentation-cookbook" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1776 +#: guix-git/doc/contributing.texi:1809 msgid "The first step to ensure a successful translation of the manual is to find and translate the following strings @emph{first}:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1778 +#: guix-git/doc/contributing.texi:1811 #, no-wrap msgid "@code{version.texi}: Translate this string as @code{version-xx.texi}," msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1781 +#: guix-git/doc/contributing.texi:1814 msgid "where @code{xx} is your language code (the one shown in the URL on weblate)." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1781 +#: guix-git/doc/contributing.texi:1814 #, no-wrap msgid "@code{contributing.texi}: Translate this string as" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1783 +#: guix-git/doc/contributing.texi:1816 msgid "@code{contributing.xx.texi}, where @code{xx} is the same language code." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1783 +#: guix-git/doc/contributing.texi:1816 #, no-wrap msgid "@code{Top}: Do not translate this string, it is important for Texinfo." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1786 +#: guix-git/doc/contributing.texi:1819 msgid "If you translate it, the document will be empty (missing a Top node). Please look for it, and register @code{Top} as its translation." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1791 +#: guix-git/doc/contributing.texi:1824 msgid "Translating these strings first ensure we can include your translation in the guix repository without breaking the make process or the @command{guix pull} machinery." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1798 +#: guix-git/doc/contributing.texi:1831 msgid "The manual and the cookbook both use Texinfo. As for @code{packages}, please keep Texinfo markup as is. There are more possible markup types in the manual than in the package descriptions. In general, do not translate the content of @code{@@code}, @code{@@file}, @code{@@var}, @code{@@value}, etc. You should translate the content of formatting markup such as @code{@@emph}, @code{@@i}, etc." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1806 +#: guix-git/doc/contributing.texi:1839 msgid "The manual contains sections that can be referred to by name by @code{@@ref}, @code{@@xref} and @code{@@pxref}. We have a mechanism in place so you do not have to translate their content. If you keep the English title, we will automatically replace it with your translation of that title. This ensures that Texinfo will always be able to find the node. If you decide to change the translation of the title, the references will automatically be updated and you will not have to update them all yourself." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1816 +#: guix-git/doc/contributing.texi:1849 msgid "When translating references from the cookbook to the manual, you need to replace the name of the manual and the name of the section. For instance, to translate @code{@@pxref@{Defining Packages,,, guix, GNU Guix Reference Manual@}}, you would replace @code{Defining Packages} with the title of that section in the translated manual @emph{only} if that title is translated. If the title is not translated in your language yet, do not translate it here, or the link will be broken. Replace @code{guix} with @code{guix.xx} where @code{xx} is your language code. @code{GNU Guix Reference Manual} is the text of the link. You can translate it however you wish." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1817 +#: guix-git/doc/contributing.texi:1850 #, no-wrap msgid "website" msgstr "verkkosivu" #. type: table -#: guix-git/doc/contributing.texi:1824 +#: guix-git/doc/contributing.texi:1857 msgid "The website pages are written using SXML, an s-expression version of HTML, the basic language of the web. We have a process to extract translatable strings from the source, and replace complex s-expressions with a more familiar XML markup, where each markup is numbered. Translators can arbitrarily change the ordering, as in the following example." msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1831 +#: guix-git/doc/contributing.texi:1864 #, no-wrap msgid "" "#. TRANSLATORS: Defining Packages is a section name\n" @@ -2534,138 +2575,138 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1834 +#: guix-git/doc/contributing.texi:1867 msgid "Note that you need to include the same markups. You cannot skip any." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1842 +#: guix-git/doc/contributing.texi:1875 msgid "In case you make a mistake, the component might fail to build properly with your language, or even make guix pull fail. To prevent that, we have a process in place to check the content of the files before pushing to our repository. We will not be able to update the translation for your language in Guix, so we will notify you (through weblate and/or by email) so you get a chance to fix the issue." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1843 +#: guix-git/doc/contributing.texi:1876 #, no-wrap msgid "Outside of Weblate" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1846 +#: guix-git/doc/contributing.texi:1879 msgid "Currently, some parts of Guix cannot be translated on Weblate, help wanted!" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1848 +#: guix-git/doc/contributing.texi:1881 #, no-wrap msgid "@command{guix pull} news can be translated in @file{news.scm}, but is not" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1854 +#: guix-git/doc/contributing.texi:1887 msgid "available from Weblate. If you want to provide a translation, you can prepare a patch as described above, or simply send us your translation with the name of the news entry you translated and your language. @xref{Writing Channel News}, for more information about channel news." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1854 +#: guix-git/doc/contributing.texi:1887 #, no-wrap msgid "Guix blog posts cannot currently be translated." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1855 +#: guix-git/doc/contributing.texi:1888 #, no-wrap msgid "The installer script (for foreign distributions) is entirely in English." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1856 +#: guix-git/doc/contributing.texi:1889 #, no-wrap msgid "Some of the libraries Guix uses cannot be translated or are translated" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1858 +#: guix-git/doc/contributing.texi:1891 msgid "outside of the Guix project. Guile itself is not internationalized." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1858 +#: guix-git/doc/contributing.texi:1891 #, no-wrap msgid "Other manuals linked from this manual or the cookbook might not be" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1860 +#: guix-git/doc/contributing.texi:1893 msgid "translated." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1862 +#: guix-git/doc/contributing.texi:1895 #, no-wrap msgid "Translation Infrastructure" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1873 +#: guix-git/doc/contributing.texi:1906 msgid "Weblate is backed by a git repository from which it discovers new strings to translate and pushes new and updated translations. Normally, it would be enough to give it commit access to our repositories. However, we decided to use a separate repository for two reasons. First, we would have to give Weblate commit access and authorize its signing key, but we do not trust it in the same way we trust guix developers, especially since we do not manage the instance ourselves. Second, if translators mess something up, it can break the generation of the website and/or guix pull for all our users, independently of their language." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1877 +#: guix-git/doc/contributing.texi:1910 msgid "For these reasons, we use a dedicated repository to host translations, and we synchronize it with our guix and artworks repositories after checking no issue was introduced in the translation." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1883 +#: guix-git/doc/contributing.texi:1916 msgid "Developers can download the latest PO files from weblate in the Guix repository by running the @command{make download-po} command. It will automatically download the latest files from weblate, reformat them to a canonical form, and check they do not contain issues. The manual needs to be built again to check for additional issues that might crash Texinfo." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1887 +#: guix-git/doc/contributing.texi:1920 msgid "Before pushing new translation files, developers should add them to the make machinery so the translations are actually available. The process differs for the various components." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1889 +#: guix-git/doc/contributing.texi:1922 #, no-wrap msgid "New po files for the @code{guix} and @code{packages} components must" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1892 +#: guix-git/doc/contributing.texi:1925 msgid "be registered by adding the new language to @file{po/guix/LINGUAS} or @file{po/packages/LINGUAS}." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1892 +#: guix-git/doc/contributing.texi:1925 #, no-wrap msgid "New po files for the @code{documentation-manual} component must be" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1898 +#: guix-git/doc/contributing.texi:1931 msgid "registered by adding the file name to @code{DOC_PO_FILES} in @file{po/doc/local.mk}, the generated @file{%D%/guix.xx.texi} manual to @code{info_TEXINFOS} in @file{doc/local.mk} and the generated @file{%D%/guix.xx.texi} and @file{%D%/contributing.xx.texi} to @code{TRANSLATED_INFO} also in @file{doc/local.mk}." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1898 +#: guix-git/doc/contributing.texi:1931 #, no-wrap msgid "New po files for the @code{documentation-cookbook} component must be" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1904 +#: guix-git/doc/contributing.texi:1937 msgid "registered by adding the file name to @code{DOC_COOKBOOK_PO_FILES} in @file{po/doc/local.mk}, the generated @file{%D%/guix-cookbook.xx.texi} manual to @code{info_TEXINFOS} in @file{doc/local.mk} and the generated @file{%D%/guix-cookbook.xx.texi} to @code{TRANSLATED_INFO} also in @file{doc/local.mk}." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1904 +#: guix-git/doc/contributing.texi:1937 #, no-wrap msgid "New po files for the @code{website} component must be added to the" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1909 +#: guix-git/doc/contributing.texi:1942 msgid "@code{guix-artwork} repository, in @file{website/po/}. @file{website/po/LINGUAS} and @file{website/po/ietf-tags.scm} must be updated accordingly (see @file{website/i18n-howto.txt} for more information on the process)." msgstr "" @@ -2688,7 +2729,7 @@ msgstr "version-fi.texi" #. type: copying #: guix-git/doc/guix.texi:103 -msgid "Copyright @copyright{} 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" +msgid "Copyright @copyright{} 2012-2022 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021, 2022 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021, 2022 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021, 2022 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021, 2022 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" msgstr "" #. type: copying @@ -2829,7 +2870,7 @@ msgstr "" #: guix-git/doc/guix.texi:146 #, no-wrap msgid "Top" -msgstr "" +msgstr "Top" #. type: top #: guix-git/doc/guix.texi:147 @@ -2849,7 +2890,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:192 -#: guix-git/doc/guix.texi:402 guix-git/doc/guix.texi:403 +#: guix-git/doc/guix.texi:403 guix-git/doc/guix.texi:404 #, no-wrap msgid "Introduction" msgstr "Johdanto" @@ -2861,7 +2902,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:197 -#: guix-git/doc/guix.texi:589 guix-git/doc/guix.texi:590 +#: guix-git/doc/guix.texi:600 guix-git/doc/guix.texi:601 #, no-wrap msgid "Installation" msgstr "Asennus" @@ -2873,7 +2914,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:213 -#: guix-git/doc/guix.texi:2049 guix-git/doc/guix.texi:2050 +#: guix-git/doc/guix.texi:2066 guix-git/doc/guix.texi:2067 #, no-wrap msgid "System Installation" msgstr "" @@ -2884,8 +2925,8 @@ msgid "Installing the whole operating system." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:2777 -#: guix-git/doc/guix.texi:2778 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:2794 +#: guix-git/doc/guix.texi:2795 #, no-wrap msgid "Getting Started" msgstr "" @@ -2897,7 +2938,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:230 -#: guix-git/doc/guix.texi:2985 guix-git/doc/guix.texi:2986 +#: guix-git/doc/guix.texi:3002 guix-git/doc/guix.texi:3003 #, no-wrap msgid "Package Management" msgstr "" @@ -2909,7 +2950,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:253 -#: guix-git/doc/guix.texi:5053 guix-git/doc/guix.texi:5054 +#: guix-git/doc/guix.texi:5071 guix-git/doc/guix.texi:5072 #, no-wrap msgid "Channels" msgstr "Kanavat" @@ -2921,7 +2962,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:267 -#: guix-git/doc/guix.texi:5581 guix-git/doc/guix.texi:5582 +#: guix-git/doc/guix.texi:5599 guix-git/doc/guix.texi:5600 #, no-wrap msgid "Development" msgstr "Kehitys" @@ -2933,7 +2974,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:275 -#: guix-git/doc/guix.texi:6799 guix-git/doc/guix.texi:6800 +#: guix-git/doc/guix.texi:6842 guix-git/doc/guix.texi:6843 #, no-wrap msgid "Programming Interface" msgstr "" @@ -2944,8 +2985,8 @@ msgid "Using Guix in Scheme." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:294 -#: guix-git/doc/guix.texi:10774 guix-git/doc/guix.texi:10775 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:295 +#: guix-git/doc/guix.texi:11088 guix-git/doc/guix.texi:11089 #, no-wrap msgid "Utilities" msgstr "Apuohjelmat" @@ -2956,8 +2997,8 @@ msgid "Package management commands." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:320 -#: guix-git/doc/guix.texi:14278 guix-git/doc/guix.texi:14279 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:321 +#: guix-git/doc/guix.texi:14635 guix-git/doc/guix.texi:14636 #, no-wrap msgid "System Configuration" msgstr "" @@ -2968,8 +3009,8 @@ msgid "Configuring the operating system." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:36881 -#: guix-git/doc/guix.texi:36882 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37371 +#: guix-git/doc/guix.texi:37372 #, no-wrap msgid "Home Configuration" msgstr "" @@ -2980,8 +3021,8 @@ msgid "Configuring the home environment." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37721 -#: guix-git/doc/guix.texi:37722 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38210 +#: guix-git/doc/guix.texi:38211 #, no-wrap msgid "Documentation" msgstr "Dokumentaatio" @@ -2992,8 +3033,8 @@ msgid "Browsing software user manuals." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:389 -#: guix-git/doc/guix.texi:37787 guix-git/doc/guix.texi:37788 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:390 +#: guix-git/doc/guix.texi:38276 guix-git/doc/guix.texi:38277 #, no-wrap msgid "Installing Debugging Files" msgstr "" @@ -3004,8 +3045,8 @@ msgid "Feeding the debugger." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37942 -#: guix-git/doc/guix.texi:37943 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38431 +#: guix-git/doc/guix.texi:38432 #, no-wrap msgid "Security Updates" msgstr "Tietoturvapäivitykset" @@ -3016,8 +3057,8 @@ msgid "Deploying security fixes quickly." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:394 -#: guix-git/doc/guix.texi:38057 guix-git/doc/guix.texi:38058 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:395 +#: guix-git/doc/guix.texi:38546 guix-git/doc/guix.texi:38547 #, no-wrap msgid "Bootstrapping" msgstr "" @@ -3028,7 +3069,7 @@ msgid "GNU/Linux built from scratch." msgstr "" #. type: node -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38349 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38838 #, no-wrap msgid "Porting" msgstr "" @@ -3044,8 +3085,8 @@ msgid "Your help needed!" msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38397 -#: guix-git/doc/guix.texi:38398 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38886 +#: guix-git/doc/guix.texi:38887 #, no-wrap msgid "Acknowledgments" msgstr "Kiitokset" @@ -3056,8 +3097,8 @@ msgid "Thanks!" msgstr "" #. type: appendix -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38419 -#: guix-git/doc/guix.texi:38420 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38908 +#: guix-git/doc/guix.texi:38909 #, no-wrap msgid "GNU Free Documentation License" msgstr "" @@ -3068,8 +3109,8 @@ msgid "The license of this manual." msgstr "" #. type: unnumbered -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38425 -#: guix-git/doc/guix.texi:38426 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38914 +#: guix-git/doc/guix.texi:38915 #, no-wrap msgid "Concept Index" msgstr "" @@ -3080,8 +3121,8 @@ msgid "Concepts." msgstr "" #. type: unnumbered -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38429 -#: guix-git/doc/guix.texi:38430 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38918 +#: guix-git/doc/guix.texi:38919 #, no-wrap msgid "Programming Index" msgstr "" @@ -3097,2129 +3138,2154 @@ msgid "--- The Detailed Node Listing ---" msgstr "" #. type: section -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 -#: guix-git/doc/guix.texi:431 guix-git/doc/guix.texi:432 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 +#: guix-git/doc/guix.texi:432 guix-git/doc/guix.texi:433 #, no-wrap msgid "Managing Software the Guix Way" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 msgid "What's special." msgstr "" #. type: section -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 -#: guix-git/doc/guix.texi:486 guix-git/doc/guix.texi:487 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 +#: guix-git/doc/guix.texi:487 guix-git/doc/guix.texi:488 #, no-wrap msgid "GNU Distribution" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 msgid "The packages and tools." msgstr "" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:631 guix-git/doc/guix.texi:632 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:642 guix-git/doc/guix.texi:643 #, no-wrap msgid "Binary Installation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Getting Guix running in no time!" msgstr "" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:871 guix-git/doc/guix.texi:872 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:882 guix-git/doc/guix.texi:883 #, no-wrap msgid "Requirements" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Software needed to build and run Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:957 guix-git/doc/guix.texi:958 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:969 guix-git/doc/guix.texi:970 #, no-wrap msgid "Running the Test Suite" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Testing Guix." msgstr "" #. type: section #: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:207 -#: guix-git/doc/guix.texi:629 guix-git/doc/guix.texi:1054 -#: guix-git/doc/guix.texi:1055 +#: guix-git/doc/guix.texi:640 guix-git/doc/guix.texi:1066 +#: guix-git/doc/guix.texi:1067 #, no-wrap msgid "Setting Up the Daemon" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Preparing the build daemon's environment." msgstr "" #. type: node -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:1525 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:1542 #, no-wrap msgid "Invoking guix-daemon" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Running the build daemon." msgstr "" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:1827 guix-git/doc/guix.texi:1828 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:1844 guix-git/doc/guix.texi:1845 #, no-wrap msgid "Application Setup" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Application-specific setup." msgstr "" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:2012 guix-git/doc/guix.texi:2013 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:2029 guix-git/doc/guix.texi:2030 #, no-wrap msgid "Upgrading Guix" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Upgrading Guix and its build daemon." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1076 guix-git/doc/guix.texi:1077 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1088 guix-git/doc/guix.texi:1089 #, no-wrap msgid "Build Environment Setup" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Preparing the isolated build environment." msgstr "" #. type: node -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1195 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1212 #, no-wrap msgid "Daemon Offload Setup" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Offloading builds to remote machines." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1434 guix-git/doc/guix.texi:1435 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1451 guix-git/doc/guix.texi:1452 #, no-wrap msgid "SELinux Support" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Using an SELinux policy for the daemon." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:1470 -#: guix-git/doc/guix.texi:2083 guix-git/doc/guix.texi:2085 -#: guix-git/doc/guix.texi:2086 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:1487 +#: guix-git/doc/guix.texi:2100 guix-git/doc/guix.texi:2102 +#: guix-git/doc/guix.texi:2103 #, no-wrap msgid "Limitations" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "What you can expect." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2111 guix-git/doc/guix.texi:2112 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2128 guix-git/doc/guix.texi:2129 #, no-wrap msgid "Hardware Considerations" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Supported hardware." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2146 guix-git/doc/guix.texi:2147 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2163 guix-git/doc/guix.texi:2164 #, no-wrap msgid "USB Stick and DVD Installation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Preparing the installation medium." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2227 guix-git/doc/guix.texi:2228 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2244 guix-git/doc/guix.texi:2245 #, no-wrap msgid "Preparing for Installation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Networking, partitioning, etc." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2250 guix-git/doc/guix.texi:2251 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2267 guix-git/doc/guix.texi:2268 #, no-wrap msgid "Guided Graphical Installation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Easy graphical installation." msgstr "" #. type: section #: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:225 -#: guix-git/doc/guix.texi:2083 guix-git/doc/guix.texi:2281 -#: guix-git/doc/guix.texi:2282 +#: guix-git/doc/guix.texi:2100 guix-git/doc/guix.texi:2298 +#: guix-git/doc/guix.texi:2299 #, no-wrap msgid "Manual Installation" msgstr "Manuaalinen asennus" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Manual installation for wizards." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2660 guix-git/doc/guix.texi:2661 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2677 guix-git/doc/guix.texi:2678 #, no-wrap msgid "After System Installation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "When installation succeeded." msgstr "" #. type: node -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2694 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2711 #, no-wrap msgid "Installing Guix in a VM" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Guix System playground." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2745 guix-git/doc/guix.texi:2746 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2762 guix-git/doc/guix.texi:2763 #, no-wrap msgid "Building the Installation Image" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "How this comes to be." msgstr "" #. type: node -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 -#: guix-git/doc/guix.texi:2301 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 +#: guix-git/doc/guix.texi:2318 #, no-wrap msgid "Keyboard Layout and Networking and Partitioning" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 msgid "Initial setup." msgstr "Alkumääritykset." #. type: subsection -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 -#: guix-git/doc/guix.texi:2571 guix-git/doc/guix.texi:2572 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 +#: guix-git/doc/guix.texi:2588 guix-git/doc/guix.texi:2589 #, no-wrap msgid "Proceeding with the Installation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 msgid "Installing." msgstr "Asennetaan." #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:3019 guix-git/doc/guix.texi:3020 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3036 guix-git/doc/guix.texi:3037 #, no-wrap msgid "Features" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "How Guix will make your life brighter." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:3109 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3126 #, no-wrap msgid "Invoking guix package" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Package installation, removal, etc." msgstr "" #. type: section #: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:243 -#: guix-git/doc/guix.texi:3017 guix-git/doc/guix.texi:3738 -#: guix-git/doc/guix.texi:3739 +#: guix-git/doc/guix.texi:3034 guix-git/doc/guix.texi:3756 +#: guix-git/doc/guix.texi:3757 #, no-wrap msgid "Substitutes" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Downloading pre-built binaries." msgstr "" #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4074 guix-git/doc/guix.texi:4075 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4092 guix-git/doc/guix.texi:4093 #, no-wrap msgid "Packages with Multiple Outputs" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Single source package, multiple outputs." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4128 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4146 #, no-wrap msgid "Invoking guix gc" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Running the garbage collector." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4338 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4356 #, no-wrap msgid "Invoking guix pull" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Fetching the latest Guix and distribution." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4585 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4603 #, no-wrap msgid "Invoking guix time-machine" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Running an older revision of Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4640 guix-git/doc/guix.texi:4641 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4658 guix-git/doc/guix.texi:4659 #, no-wrap msgid "Inferiors" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Interacting with another revision of Guix." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4768 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4786 #, no-wrap msgid "Invoking guix describe" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Display information about your Guix revision." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4863 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4881 #, no-wrap msgid "Invoking guix archive" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Exporting and importing store files." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3764 guix-git/doc/guix.texi:3765 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3782 guix-git/doc/guix.texi:3783 #, no-wrap msgid "Official Substitute Servers" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "One particular source of substitutes." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3794 guix-git/doc/guix.texi:3795 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3812 guix-git/doc/guix.texi:3813 #, no-wrap msgid "Substitute Server Authorization" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How to enable or disable substitutes." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3864 guix-git/doc/guix.texi:3865 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3882 guix-git/doc/guix.texi:3883 #, no-wrap msgid "Getting Substitutes from Other Servers" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "Substitute diversity." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3969 guix-git/doc/guix.texi:3970 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3987 guix-git/doc/guix.texi:3988 #, no-wrap msgid "Substitute Authentication" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How Guix verifies substitutes." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4004 guix-git/doc/guix.texi:4005 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4022 guix-git/doc/guix.texi:4023 #, no-wrap msgid "Proxy Settings" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How to get substitutes via proxy." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4016 guix-git/doc/guix.texi:4017 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4034 guix-git/doc/guix.texi:4035 #, no-wrap msgid "Substitution Failure" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "What happens when substitution fails." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4044 guix-git/doc/guix.texi:4045 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4062 guix-git/doc/guix.texi:4063 #, no-wrap msgid "On Trusting Binaries" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How can you trust that binary blob?" msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5086 guix-git/doc/guix.texi:5087 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5104 guix-git/doc/guix.texi:5105 #, no-wrap msgid "Specifying Additional Channels" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Extending the package collection." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5136 guix-git/doc/guix.texi:5137 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5154 guix-git/doc/guix.texi:5155 #, no-wrap msgid "Using a Custom Guix Channel" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Using a customized Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5158 guix-git/doc/guix.texi:5159 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5176 guix-git/doc/guix.texi:5177 #, no-wrap msgid "Replicating Guix" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Running the @emph{exact same} Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5199 guix-git/doc/guix.texi:5200 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5217 guix-git/doc/guix.texi:5218 #, no-wrap msgid "Channel Authentication" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How Guix verifies what it fetches." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5239 guix-git/doc/guix.texi:5240 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5257 guix-git/doc/guix.texi:5258 #, no-wrap msgid "Channels with Substitutes" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Using channels with available substitutes." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5264 guix-git/doc/guix.texi:5265 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5282 guix-git/doc/guix.texi:5283 #, no-wrap msgid "Creating a Channel" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How to write your custom channel." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5331 guix-git/doc/guix.texi:5332 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5349 guix-git/doc/guix.texi:5350 #, no-wrap msgid "Package Modules in a Sub-directory" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Specifying the channel's package modules location." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5345 guix-git/doc/guix.texi:5346 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5363 guix-git/doc/guix.texi:5364 #, no-wrap msgid "Declaring Channel Dependencies" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How to depend on other channels." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5387 guix-git/doc/guix.texi:5388 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5405 guix-git/doc/guix.texi:5406 #, no-wrap msgid "Specifying Channel Authorizations" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Defining channel authors authorizations." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5488 guix-git/doc/guix.texi:5489 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5506 guix-git/doc/guix.texi:5507 #, no-wrap msgid "Primary URL" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Distinguishing mirror to original." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5511 guix-git/doc/guix.texi:5512 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5529 guix-git/doc/guix.texi:5530 #, no-wrap msgid "Writing Channel News" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Communicating information to channel's users." msgstr "" #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:5603 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:5621 #, no-wrap msgid "Invoking guix shell" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Spawning one-off software environments." msgstr "" #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:5956 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:5993 #, no-wrap msgid "Invoking guix environment" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Setting up development environments." msgstr "" #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6325 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6368 #, no-wrap msgid "Invoking guix pack" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Creating software bundles." msgstr "" #. type: section -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6711 guix-git/doc/guix.texi:6712 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6754 guix-git/doc/guix.texi:6755 #, no-wrap msgid "The GCC toolchain" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Working with languages supported by GCC." msgstr "" #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6737 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6780 #, no-wrap msgid "Invoking guix git authenticate" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Authenticating Git repositories." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:6841 guix-git/doc/guix.texi:6842 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:6885 guix-git/doc/guix.texi:6886 #, no-wrap msgid "Package Modules" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Packages from the programmer's viewpoint." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:289 -#: guix-git/doc/guix.texi:6839 guix-git/doc/guix.texi:6903 -#: guix-git/doc/guix.texi:6904 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:290 +#: guix-git/doc/guix.texi:6883 guix-git/doc/guix.texi:6947 +#: guix-git/doc/guix.texi:6948 #, no-wrap msgid "Defining Packages" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Defining new packages." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:7554 guix-git/doc/guix.texi:7555 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:7612 guix-git/doc/guix.texi:7613 #, no-wrap msgid "Defining Package Variants" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Customizing packages." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:7821 guix-git/doc/guix.texi:7822 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:7879 guix-git/doc/guix.texi:7880 #, no-wrap msgid "Build Systems" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Specifying how packages are built." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:8861 guix-git/doc/guix.texi:8862 -#: guix-git/doc/guix.texi:9292 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:8918 guix-git/doc/guix.texi:8919 +#: guix-git/doc/guix.texi:9427 #, no-wrap msgid "Build Phases" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Phases of the build process of a package." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9055 guix-git/doc/guix.texi:9056 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9116 guix-git/doc/guix.texi:9117 #, no-wrap msgid "Build Utilities" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Helpers for your package definitions and more." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9369 guix-git/doc/guix.texi:9370 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9504 guix-git/doc/guix.texi:9505 +#, no-wrap +msgid "Search Paths" +msgstr "" + +#. type: menuentry +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#, fuzzy +#| msgid "environment variables" +msgid "Declaring search path environment variables." +msgstr "ympäristömuuttujat" + +#. type: section +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9683 guix-git/doc/guix.texi:9684 #, no-wrap msgid "The Store" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Manipulating the package store." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9522 guix-git/doc/guix.texi:9523 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9836 guix-git/doc/guix.texi:9837 #, no-wrap msgid "Derivations" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Low-level interface to package derivations." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9716 guix-git/doc/guix.texi:9717 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10030 guix-git/doc/guix.texi:10031 #, no-wrap msgid "The Store Monad" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Purely functional interface to the store." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:10035 guix-git/doc/guix.texi:10036 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10349 guix-git/doc/guix.texi:10350 #, no-wrap msgid "G-Expressions" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Manipulating build expressions." msgstr "" #. type: node -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:10674 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10988 #, no-wrap msgid "Invoking guix repl" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 +#: guix-git/doc/guix.texi:288 msgid "Programming Guix in Guile." msgstr "" #. type: node -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 -#: guix-git/doc/guix.texi:7103 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 +#: guix-git/doc/guix.texi:7147 #, no-wrap msgid "package Reference" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 msgid "The package data type." msgstr "" #. type: node -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 -#: guix-git/doc/guix.texi:7362 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 +#: guix-git/doc/guix.texi:7420 #, no-wrap msgid "origin Reference" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 msgid "The origin data type." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:10801 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:11115 #, no-wrap msgid "Invoking guix build" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Building packages from the command line." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11699 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12013 #, no-wrap msgid "Invoking guix edit" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Editing package definitions." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11729 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12043 #, no-wrap msgid "Invoking guix download" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Downloading a file and printing its hash." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11787 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12101 #, no-wrap msgid "Invoking guix hash" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Computing the cryptographic hash of a file." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11877 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12192 #, no-wrap msgid "Invoking guix import" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Importing package definitions." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12412 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12727 #, no-wrap msgid "Invoking guix refresh" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Updating package definitions." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12784 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13099 #, no-wrap msgid "Invoking guix style" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Styling package definitions." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12880 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13237 #, no-wrap msgid "Invoking guix lint" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Finding errors in package definitions." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13056 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13413 #, no-wrap msgid "Invoking guix size" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Profiling disk usage." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13200 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13557 #, no-wrap msgid "Invoking guix graph" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Visualizing the graph of packages." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13481 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13838 #, no-wrap msgid "Invoking guix publish" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Sharing substitutes." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13750 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14107 #, no-wrap msgid "Invoking guix challenge" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Challenging substitute servers." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13933 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14290 #, no-wrap msgid "Invoking guix copy" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Copying to and from a remote store." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13996 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14353 #, no-wrap msgid "Invoking guix container" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Process isolation." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:14050 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14407 #, no-wrap msgid "Invoking guix weather" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Assessing substitute availability." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:14180 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14537 #, no-wrap msgid "Invoking guix processes" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Listing client processes." msgstr "" #. type: section -#: guix-git/doc/guix.texi:313 guix-git/doc/guix.texi:10802 +#: guix-git/doc/guix.texi:314 guix-git/doc/guix.texi:11116 #, no-wrap msgid "Invoking @command{guix build}" msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:10855 guix-git/doc/guix.texi:10856 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11169 guix-git/doc/guix.texi:11170 #, no-wrap msgid "Common Build Options" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Build options for most commands." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11010 guix-git/doc/guix.texi:11011 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11324 guix-git/doc/guix.texi:11325 #, no-wrap msgid "Package Transformation Options" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Creating variants of packages." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11381 guix-git/doc/guix.texi:11382 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11695 guix-git/doc/guix.texi:11696 #, no-wrap msgid "Additional Build Options" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Options specific to 'guix build'." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11619 guix-git/doc/guix.texi:11620 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11933 guix-git/doc/guix.texi:11934 #, no-wrap msgid "Debugging Build Failures" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Real life packaging experience." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14324 guix-git/doc/guix.texi:14325 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:14681 guix-git/doc/guix.texi:14682 #, no-wrap msgid "Using the Configuration System" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Customizing your GNU system." msgstr "" #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14575 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:14932 #, no-wrap msgid "operating-system Reference" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Detail of operating-system declarations." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14798 guix-git/doc/guix.texi:14799 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15155 guix-git/doc/guix.texi:15156 #, no-wrap msgid "File Systems" msgstr "Tiedostojärjestelmät" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring file system mounts." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15151 guix-git/doc/guix.texi:15152 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15508 guix-git/doc/guix.texi:15509 #, no-wrap msgid "Mapped Devices" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Block device extra processing." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15300 guix-git/doc/guix.texi:15301 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15657 guix-git/doc/guix.texi:15658 #, no-wrap msgid "Swap Space" msgstr "Sivutuksen tila" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Backing RAM with disk space." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15400 guix-git/doc/guix.texi:15401 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15757 guix-git/doc/guix.texi:15758 #, no-wrap msgid "User Accounts" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Specifying user accounts." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:2308 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15581 -#: guix-git/doc/guix.texi:15582 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:2325 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:15938 +#: guix-git/doc/guix.texi:15939 #, no-wrap msgid "Keyboard Layout" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "How the system interprets key strokes." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1835 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15727 -#: guix-git/doc/guix.texi:15728 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:1852 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:16084 +#: guix-git/doc/guix.texi:16085 #, no-wrap msgid "Locales" msgstr "Sijainnit" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Language and cultural convention settings." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:345 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15867 -#: guix-git/doc/guix.texi:15868 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:346 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:16224 +#: guix-git/doc/guix.texi:16225 #, no-wrap msgid "Services" msgstr "Palvelut" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Specifying system services." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34056 guix-git/doc/guix.texi:34057 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34493 guix-git/doc/guix.texi:34494 #, no-wrap msgid "Setuid Programs" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Programs running with root privileges." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1984 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:34140 -#: guix-git/doc/guix.texi:34141 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:2001 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:34579 +#: guix-git/doc/guix.texi:34580 #, no-wrap msgid "X.509 Certificates" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Authenticating HTTPS servers." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1878 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:34203 -#: guix-git/doc/guix.texi:34204 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:1895 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:34642 +#: guix-git/doc/guix.texi:34643 #, no-wrap msgid "Name Service Switch" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring libc's name service switch." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34341 guix-git/doc/guix.texi:34342 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34780 guix-git/doc/guix.texi:34781 #, no-wrap msgid "Initial RAM Disk" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Linux-Libre bootstrapping." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34536 guix-git/doc/guix.texi:34537 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34975 guix-git/doc/guix.texi:34976 #, no-wrap msgid "Bootloader Configuration" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring the boot loader." msgstr "" #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34834 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:35273 #, no-wrap msgid "Invoking guix system" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Instantiating a system configuration." msgstr "" #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:35425 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:35881 #, no-wrap msgid "Invoking guix deploy" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Deploying a system configuration to a remote host." msgstr "" #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:35631 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:36121 #, no-wrap msgid "Running Guix in a VM" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "How to run Guix System in a virtual machine." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:381 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:35765 -#: guix-git/doc/guix.texi:35766 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:382 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:36255 +#: guix-git/doc/guix.texi:36256 #, no-wrap msgid "Defining Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Adding new service definitions." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:341 +#: guix-git/doc/guix.texi:342 msgid "Home Environment Configuration" msgstr "" #. type: node -#: guix-git/doc/guix.texi:343 guix-git/doc/guix.texi:36944 -#: guix-git/doc/guix.texi:37478 +#: guix-git/doc/guix.texi:344 guix-git/doc/guix.texi:37434 +#: guix-git/doc/guix.texi:37974 #, no-wrap msgid "Invoking guix home" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:343 +#: guix-git/doc/guix.texi:344 msgid "Instantiating a home environment configuration." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:15953 guix-git/doc/guix.texi:15954 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:16310 guix-git/doc/guix.texi:16311 #, no-wrap msgid "Base Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Essential system services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:16880 guix-git/doc/guix.texi:16881 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17242 guix-git/doc/guix.texi:17243 #, no-wrap msgid "Scheduled Job Execution" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The mcron service." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17030 guix-git/doc/guix.texi:17031 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17392 guix-git/doc/guix.texi:17393 #, no-wrap msgid "Log Rotation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The rottlog service." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17143 guix-git/doc/guix.texi:17144 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17505 guix-git/doc/guix.texi:17506 #, no-wrap msgid "Networking Setup" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Setting up network interfaces." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17561 guix-git/doc/guix.texi:17562 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17923 guix-git/doc/guix.texi:17924 #, no-wrap msgid "Networking Services" msgstr "Verkkopalvelut" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Firewall, SSH daemon, etc." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19020 guix-git/doc/guix.texi:19021 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19382 guix-git/doc/guix.texi:19383 #, no-wrap msgid "Unattended Upgrades" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Automated system upgrades." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19158 guix-git/doc/guix.texi:19159 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19520 guix-git/doc/guix.texi:19521 #, no-wrap msgid "X Window" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Graphical display." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19556 guix-git/doc/guix.texi:19557 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19918 guix-git/doc/guix.texi:19919 #, no-wrap msgid "Printing Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Local and remote printer support." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:20409 guix-git/doc/guix.texi:20410 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:20771 guix-git/doc/guix.texi:20772 #, no-wrap msgid "Desktop Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "D-Bus and desktop services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:20928 guix-git/doc/guix.texi:20929 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21290 guix-git/doc/guix.texi:21291 #, no-wrap msgid "Sound Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "ALSA and Pulseaudio services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:21068 guix-git/doc/guix.texi:21069 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21430 guix-git/doc/guix.texi:21431 #, no-wrap msgid "Database Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "SQL databases, key-value stores, etc." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:21403 guix-git/doc/guix.texi:21404 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21765 guix-git/doc/guix.texi:21766 #, no-wrap msgid "Mail Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "IMAP, POP3, SMTP, and all that." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:23262 guix-git/doc/guix.texi:23263 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:23624 guix-git/doc/guix.texi:23625 #, no-wrap msgid "Messaging Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Messaging services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:23765 guix-git/doc/guix.texi:23766 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:24127 guix-git/doc/guix.texi:24128 #, no-wrap msgid "Telephony Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Telephony services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:24996 guix-git/doc/guix.texi:24997 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25358 guix-git/doc/guix.texi:25359 #, no-wrap msgid "Monitoring Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Monitoring services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:25507 guix-git/doc/guix.texi:25508 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25844 guix-git/doc/guix.texi:25845 #, no-wrap msgid "Kerberos Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Kerberos services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:25633 guix-git/doc/guix.texi:25634 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25970 guix-git/doc/guix.texi:25971 #, no-wrap msgid "LDAP Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "LDAP services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:26112 guix-git/doc/guix.texi:26113 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:26449 guix-git/doc/guix.texi:26450 #, no-wrap msgid "Web Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Web servers." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:27320 guix-git/doc/guix.texi:27321 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:27657 guix-git/doc/guix.texi:27658 #, no-wrap msgid "Certificate Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "TLS certificates via Let's Encrypt." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:27501 guix-git/doc/guix.texi:27502 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:27838 guix-git/doc/guix.texi:27839 #, no-wrap msgid "DNS Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "DNS daemons." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28246 guix-git/doc/guix.texi:28247 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:28583 guix-git/doc/guix.texi:28584 #, no-wrap msgid "VPN Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "VPN daemons." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28758 guix-git/doc/guix.texi:28759 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29095 guix-git/doc/guix.texi:29096 #, no-wrap msgid "Network File System" msgstr "Verkkotiedostojärjestelmä" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "NFS related services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28954 guix-git/doc/guix.texi:28955 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29291 guix-git/doc/guix.texi:29292 #, no-wrap msgid "Continuous Integration" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Cuirass and Laminar services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29240 guix-git/doc/guix.texi:29241 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29577 guix-git/doc/guix.texi:29578 #, no-wrap msgid "Power Management Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Extending battery life." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29774 guix-git/doc/guix.texi:29775 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:30139 guix-git/doc/guix.texi:30140 #, no-wrap msgid "Audio Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The MPD." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29893 guix-git/doc/guix.texi:29894 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:30258 guix-git/doc/guix.texi:30259 #, no-wrap msgid "Virtualization Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Virtualization services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:31561 guix-git/doc/guix.texi:31562 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:31926 guix-git/doc/guix.texi:31927 #, no-wrap msgid "Version Control Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Providing remote access to Git repositories." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:32897 guix-git/doc/guix.texi:32898 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33262 guix-git/doc/guix.texi:33263 #, no-wrap msgid "Game Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Game servers." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:32929 guix-git/doc/guix.texi:32930 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33294 guix-git/doc/guix.texi:33295 #, no-wrap msgid "PAM Mount Service" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Service to mount volumes when logging in." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33012 guix-git/doc/guix.texi:33013 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33377 guix-git/doc/guix.texi:33378 #, no-wrap msgid "Guix Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services relating specifically to Guix." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33290 guix-git/doc/guix.texi:33291 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33727 guix-git/doc/guix.texi:33728 #, no-wrap msgid "Linux Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services tied to the Linux kernel." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33517 guix-git/doc/guix.texi:33518 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33954 guix-git/doc/guix.texi:33955 #, no-wrap msgid "Hurd Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services specific for a Hurd System." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33559 guix-git/doc/guix.texi:33560 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33996 guix-git/doc/guix.texi:33997 #, no-wrap msgid "Miscellaneous Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Other services." msgstr "Muut palvelut." #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35780 guix-git/doc/guix.texi:35781 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36270 guix-git/doc/guix.texi:36271 #, no-wrap msgid "Service Composition" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "The model for composing services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35836 guix-git/doc/guix.texi:35837 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36326 guix-git/doc/guix.texi:36327 #, no-wrap msgid "Service Types and Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "Types and services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35973 guix-git/doc/guix.texi:35974 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36463 guix-git/doc/guix.texi:36464 #, no-wrap msgid "Service Reference" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "API reference." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:36292 guix-git/doc/guix.texi:36293 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36782 guix-git/doc/guix.texi:36783 #, no-wrap msgid "Shepherd Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "A particular type of service." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:36511 guix-git/doc/guix.texi:36512 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:37001 guix-git/doc/guix.texi:37002 #, no-wrap msgid "Complex Configurations" msgstr "Moniosaiset asetukset" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "Defining bindings for complex configurations." msgstr "" #. type: section -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 -#: guix-git/doc/guix.texi:37806 guix-git/doc/guix.texi:37807 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 +#: guix-git/doc/guix.texi:38295 guix-git/doc/guix.texi:38296 #, no-wrap msgid "Separate Debug Info" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 msgid "Installing 'debug' outputs." msgstr "" #. type: section -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 -#: guix-git/doc/guix.texi:37879 guix-git/doc/guix.texi:37880 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 +#: guix-git/doc/guix.texi:38368 guix-git/doc/guix.texi:38369 #, no-wrap msgid "Rebuilding Debug Info" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 msgid "Building missing debug info." msgstr "" #. type: node -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 -#: guix-git/doc/guix.texi:38098 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 +#: guix-git/doc/guix.texi:38587 #, no-wrap msgid "Reduced Binary Seed Bootstrap" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 msgid "A Bootstrap worthy of GNU." msgstr "" #. type: section -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 -#: guix-git/doc/guix.texi:38173 guix-git/doc/guix.texi:38174 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 +#: guix-git/doc/guix.texi:38662 guix-git/doc/guix.texi:38663 #, no-wrap msgid "Preparing to Use the Bootstrap Binaries" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 msgid "Building that what matters most." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:405 +#: guix-git/doc/guix.texi:406 #, no-wrap msgid "purpose" msgstr "tarkoitus" #. type: Plain text -#: guix-git/doc/guix.texi:413 +#: guix-git/doc/guix.texi:414 msgid "GNU Guix@footnote{``Guix'' is pronounced like ``geeks'', or ``ɡiːks'' using the international phonetic alphabet (IPA).} is a package management tool for and distribution of the GNU system. Guix makes it easy for unprivileged users to install, upgrade, or remove software packages, to roll back to a previous package set, to build packages from source, and generally assists with the creation and maintenance of software environments." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:414 guix-git/doc/guix.texi:489 +#: guix-git/doc/guix.texi:415 guix-git/doc/guix.texi:490 #, no-wrap msgid "Guix System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:415 +#: guix-git/doc/guix.texi:416 #, no-wrap msgid "GuixSD, now Guix System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:416 +#: guix-git/doc/guix.texi:417 #, no-wrap msgid "Guix System Distribution, now Guix System" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:425 +#: guix-git/doc/guix.texi:426 msgid "You can install GNU@tie{}Guix on top of an existing GNU/Linux system where it complements the available tools without interference (@pxref{Installation}), or you can use it as a standalone operating system distribution, @dfn{Guix@tie{}System}@footnote{We used to refer to Guix System as ``Guix System Distribution'' or ``GuixSD''. We now consider it makes more sense to group everything under the ``Guix'' banner since, after all, Guix System is readily available through the @command{guix system} command, even if you're using a different distro underneath!}. @xref{GNU Distribution}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:434 +#: guix-git/doc/guix.texi:435 #, no-wrap msgid "user interfaces" msgstr "käyttöliittymät" #. type: Plain text -#: guix-git/doc/guix.texi:440 +#: guix-git/doc/guix.texi:441 msgid "Guix provides a command-line package management interface (@pxref{Package Management}), tools to help with software development (@pxref{Development}), command-line utilities for more advanced usage (@pxref{Utilities}), as well as Scheme programming interfaces (@pxref{Programming Interface})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:440 +#: guix-git/doc/guix.texi:441 #, no-wrap msgid "build daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:444 +#: guix-git/doc/guix.texi:445 msgid "Its @dfn{build daemon} is responsible for building packages on behalf of users (@pxref{Setting Up the Daemon}) and for downloading pre-built binaries from authorized sources (@pxref{Substitutes})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:445 +#: guix-git/doc/guix.texi:446 #, no-wrap msgid "extensibility of the distribution" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:446 guix-git/doc/guix.texi:6863 +#: guix-git/doc/guix.texi:447 guix-git/doc/guix.texi:6907 #, no-wrap msgid "customization, of packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:455 +#: guix-git/doc/guix.texi:456 msgid "Guix includes package definitions for many GNU and non-GNU packages, all of which @uref{https://www.gnu.org/philosophy/free-sw.html, respect the user's computing freedom}. It is @emph{extensible}: users can write their own package definitions (@pxref{Defining Packages}) and make them available as independent package modules (@pxref{Package Modules}). It is also @emph{customizable}: users can @emph{derive} specialized package definitions from existing ones, including from the command line (@pxref{Package Transformation Options})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:456 +#: guix-git/doc/guix.texi:457 #, no-wrap msgid "functional package management" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:457 +#: guix-git/doc/guix.texi:458 #, no-wrap msgid "isolation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:472 +#: guix-git/doc/guix.texi:473 msgid "Under the hood, Guix implements the @dfn{functional package management} discipline pioneered by Nix (@pxref{Acknowledgments}). In Guix, the package build and installation process is seen as a @emph{function}, in the mathematical sense. That function takes inputs, such as build scripts, a compiler, and libraries, and returns an installed package. As a pure function, its result depends solely on its inputs---for instance, it cannot refer to software or scripts that were not explicitly passed as inputs. A build function always produces the same result when passed a given set of inputs. It cannot alter the environment of the running system in any way; for instance, it cannot create, modify, or delete files outside of its build and installation directories. This is achieved by running build processes in isolated environments (or @dfn{containers}), where only their explicit inputs are visible." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:473 guix-git/doc/guix.texi:9372 +#: guix-git/doc/guix.texi:474 guix-git/doc/guix.texi:9686 #, no-wrap msgid "store" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:480 +#: guix-git/doc/guix.texi:481 msgid "The result of package build functions is @dfn{cached} in the file system, in a special directory called @dfn{the store} (@pxref{The Store}). Each package is installed in a directory of its own in the store---by default under @file{/gnu/store}. The directory name contains a hash of all the inputs used to build that package; thus, changing an input yields a different directory name." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:484 +#: guix-git/doc/guix.texi:485 msgid "This approach is the foundation for the salient features of Guix: support for transactional package upgrade and rollback, per-user installation, and garbage collection of packages (@pxref{Features})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:499 +#: guix-git/doc/guix.texi:500 msgid "Guix comes with a distribution of the GNU system consisting entirely of free software@footnote{The term ``free'' here refers to the @url{https://www.gnu.org/philosophy/free-sw.html,freedom provided to users of that software}.}. The distribution can be installed on its own (@pxref{System Installation}), but it is also possible to install Guix as a package manager on top of an installed GNU/Linux system (@pxref{Installation}). When we need to distinguish between the two, we refer to the standalone distribution as Guix@tie{}System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:505 +#: guix-git/doc/guix.texi:506 msgid "The distribution provides core GNU packages such as GNU libc, GCC, and Binutils, as well as many GNU and non-GNU applications. The complete list of available packages can be browsed @url{https://www.gnu.org/software/guix/packages,on-line} or by running @command{guix package} (@pxref{Invoking guix package}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:508 +#: guix-git/doc/guix.texi:509 #, no-wrap msgid "guix package --list-available\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:514 +#: guix-git/doc/guix.texi:515 msgid "Our goal is to provide a practical 100% free software distribution of Linux-based and other variants of GNU, with a focus on the promotion and tight integration of GNU components, and an emphasis on programs and tools that help users exert that freedom." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:516 +#: guix-git/doc/guix.texi:517 msgid "Packages are currently available on the following platforms:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:519 guix-git/doc/guix.texi:2155 +#: guix-git/doc/guix.texi:520 guix-git/doc/guix.texi:2172 #, no-wrap msgid "x86_64-linux" msgstr "" #. type: table -#: guix-git/doc/guix.texi:521 +#: guix-git/doc/guix.texi:522 msgid "Intel/AMD @code{x86_64} architecture, Linux-Libre kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:522 guix-git/doc/guix.texi:2158 +#: guix-git/doc/guix.texi:523 guix-git/doc/guix.texi:2175 #, no-wrap msgid "i686-linux" msgstr "" #. type: table -#: guix-git/doc/guix.texi:524 +#: guix-git/doc/guix.texi:525 msgid "Intel 32-bit architecture (IA32), Linux-Libre kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:525 +#: guix-git/doc/guix.texi:526 #, no-wrap msgid "armhf-linux" msgstr "" #. type: table -#: guix-git/doc/guix.texi:529 +#: guix-git/doc/guix.texi:530 msgid "ARMv7-A architecture with hard float, Thumb-2 and NEON, using the EABI hard-float application binary interface (ABI), and Linux-Libre kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:530 +#: guix-git/doc/guix.texi:531 #, no-wrap msgid "aarch64-linux" msgstr "" #. type: table -#: guix-git/doc/guix.texi:532 +#: guix-git/doc/guix.texi:533 msgid "little-endian 64-bit ARMv8-A processors, Linux-Libre kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:533 +#: guix-git/doc/guix.texi:534 #, no-wrap msgid "i586-gnu" msgstr "" #. type: table -#: guix-git/doc/guix.texi:536 +#: guix-git/doc/guix.texi:537 msgid "@uref{https://hurd.gnu.org, GNU/Hurd} on the Intel 32-bit architecture (IA32)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:542 +#: guix-git/doc/guix.texi:543 msgid "This configuration is experimental and under development. The easiest way for you to give it a try is by setting up an instance of @code{hurd-vm-service-type} on your GNU/Linux machine (@pxref{transparent-emulation-qemu, @code{hurd-vm-service-type}}). @xref{Contributing}, on how to help!" msgstr "" #. type: item -#: guix-git/doc/guix.texi:543 +#: guix-git/doc/guix.texi:544 #, no-wrap msgid "mips64el-linux (unsupported)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:549 +#: guix-git/doc/guix.texi:550 msgid "little-endian 64-bit MIPS processors, specifically the Loongson series, n32 ABI, and Linux-Libre kernel. This configuration is no longer fully supported; in particular, there is no ongoing work to ensure that this architecture still works. Should someone decide they wish to revive this architecture then the code is still available." msgstr "" #. type: item -#: guix-git/doc/guix.texi:550 +#: guix-git/doc/guix.texi:551 #, no-wrap msgid "powerpc-linux (unsupported)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:555 +#: guix-git/doc/guix.texi:556 msgid "big-endian 32-bit PowerPC processors, specifically the PowerPC G4 with AltiVec support, and Linux-Libre kernel. This configuration is not fully supported and there is no ongoing work to ensure this architecture works." msgstr "" #. type: table -#: guix-git/doc/guix.texi:566 +#: guix-git/doc/guix.texi:567 msgid "little-endian 64-bit Power ISA processors, Linux-Libre kernel. This includes POWER9 systems such as the @uref{https://www.fsf.org/news/talos-ii-mainboard-and-talos-ii-lite-mainboard-now-fsf-certified-to-respect-your-freedom, RYF Talos II mainboard}. This platform is available as a \"technology preview\": although it is supported, substitutes are not yet available from the build farm (@pxref{Substitutes}), and some packages may fail to build (@pxref{Tracking Bugs and Patches}). That said, the Guix community is actively working on improving this support, and now is a great time to try it and get involved!" msgstr "" -#. type: Plain text +#. type: item +#: guix-git/doc/guix.texi:568 +#, no-wrap +msgid "riscv64-linux" +msgstr "" + +#. type: table #: guix-git/doc/guix.texi:576 +msgid "little-endian 64-bit RISC-V processors, specifically RV64GC, and Linux-Libre kernel. This playform is available as a \"technology preview\": although it is supported, substitutes are not yet available from the build farm (@pxref{Substitutes}), and some packages may fail to build (@pxref{Tracking Bugs and Patches}). That said, the Guix community is actively working on improving this support, and now is a great time to try it and get involved!" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:586 msgid "With Guix@tie{}System, you @emph{declare} all aspects of the operating system configuration and Guix takes care of instantiating the configuration in a transactional, reproducible, and stateless fashion (@pxref{System Configuration}). Guix System uses the Linux-libre kernel, the Shepherd initialization system (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}), the well-known GNU utilities and tool chain, as well as the graphical environment or system services of your choice." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:579 -msgid "Guix System is available on all the above platforms except @code{mips64el-linux} and @code{powerpc64le-linux}." +#: guix-git/doc/guix.texi:590 +msgid "Guix System is available on all the above platforms except @code{mips64el-linux}, @code{powerpc-linux}, @code{powerpc64le-linux} and @code{riscv64-linux}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:583 +#: guix-git/doc/guix.texi:594 msgid "For information on porting to other architectures or kernels, @pxref{Porting}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:586 +#: guix-git/doc/guix.texi:597 msgid "Building this distribution is a cooperative effort, and you are invited to join! @xref{Contributing}, for information about how you can help." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:592 +#: guix-git/doc/guix.texi:603 #, no-wrap msgid "installing Guix" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:604 +#: guix-git/doc/guix.texi:615 msgid "We recommend the use of this @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, shell installer script} to install Guix on top of a running GNU/Linux system, thereafter called a @dfn{foreign distro}.@footnote{This section is concerned with the installation of the package manager, which can be done on top of a running GNU/Linux system. If, instead, you want to install the complete GNU operating system, @pxref{System Installation}.} The script automates the download, installation, and initial configuration of Guix. It should be run as the root user." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:606 guix-git/doc/guix.texi:1830 +#: guix-git/doc/guix.texi:617 guix-git/doc/guix.texi:1847 #, no-wrap msgid "foreign distro" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:607 +#: guix-git/doc/guix.texi:618 #, no-wrap msgid "directories related to foreign distro" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:612 +#: guix-git/doc/guix.texi:623 msgid "When installed on a foreign distro, GNU@tie{}Guix complements the available tools without interference. Its data lives exclusively in two directories, usually @file{/gnu/store} and @file{/var/guix}; other files on your system, such as @file{/etc}, are left untouched." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:615 +#: guix-git/doc/guix.texi:626 msgid "Once installed, Guix can be updated by running @command{guix pull} (@pxref{Invoking guix pull})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:620 +#: guix-git/doc/guix.texi:631 msgid "If you prefer to perform the installation steps manually or want to tweak them, you may find the following subsections useful. They describe the software requirements of Guix, as well as how to install it manually and get ready to use it." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:634 +#: guix-git/doc/guix.texi:645 #, no-wrap msgid "installing Guix from binaries" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:635 +#: guix-git/doc/guix.texi:646 #, no-wrap msgid "installer script" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:641 +#: guix-git/doc/guix.texi:652 msgid "This section describes how to install Guix on an arbitrary system from a self-contained tarball providing binaries for Guix and for all its dependencies. This is often quicker than installing from source, which is described in the next sections. The only requirement is to have GNU@tie{}tar and Xz." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:649 +#: guix-git/doc/guix.texi:660 msgid "We recommend the use of this @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, shell installer script}. The script automates the download, installation, and initial configuration steps described below. It should be run as the root user. As root, you can thus run this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:655 +#: guix-git/doc/guix.texi:666 #, no-wrap msgid "" "cd /tmp\n" @@ -5229,33 +5295,33 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:659 +#: guix-git/doc/guix.texi:670 msgid "When you're done, @pxref{Application Setup} for extra configuration you might need, and @ref{Getting Started} for your first steps!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:662 +#: guix-git/doc/guix.texi:673 msgid "Installing goes along these lines:" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:665 +#: guix-git/doc/guix.texi:676 #, no-wrap msgid "downloading Guix binary" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:671 +#: guix-git/doc/guix.texi:682 msgid "Download the binary tarball from @indicateurl{@value{BASE-URL}/guix-binary-@value{VERSION}.x86_64-linux.tar.xz}, where @code{x86_64-linux} can be replaced with @code{i686-linux} for an @code{i686} (32-bits) machine already running the kernel Linux, and so on (@pxref{GNU Distribution})." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:675 +#: guix-git/doc/guix.texi:686 msgid "Make sure to download the associated @file{.sig} file and to verify the authenticity of the tarball against it, along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:679 +#: guix-git/doc/guix.texi:690 #, no-wrap msgid "" "$ wget @value{BASE-URL}/guix-binary-@value{VERSION}.x86_64-linux.tar.xz.sig\n" @@ -5263,12 +5329,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:683 guix-git/doc/guix.texi:2173 +#: guix-git/doc/guix.texi:694 guix-git/doc/guix.texi:2190 msgid "If that command fails because you do not have the required public key, then run this command to import it:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:687 +#: guix-git/doc/guix.texi:698 #, no-wrap msgid "" "$ wget '@value{OPENPGP-SIGNING-KEY-URL}' \\\n" @@ -5276,22 +5342,22 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:691 guix-git/doc/guix.texi:2181 +#: guix-git/doc/guix.texi:702 guix-git/doc/guix.texi:2198 msgid "and rerun the @code{gpg --verify} command." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:694 guix-git/doc/guix.texi:2184 +#: guix-git/doc/guix.texi:705 guix-git/doc/guix.texi:2201 msgid "Take note that a warning like ``This key is not certified with a trusted signature!'' is normal." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:700 +#: guix-git/doc/guix.texi:711 msgid "Now, you need to become the @code{root} user. Depending on your distribution, you may have to run @code{su -} or @code{sudo -i}. As @code{root}, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:706 +#: guix-git/doc/guix.texi:717 #, no-wrap msgid "" "# cd /tmp\n" @@ -5301,27 +5367,27 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:711 +#: guix-git/doc/guix.texi:722 msgid "This creates @file{/gnu/store} (@pxref{The Store}) and @file{/var/guix}. The latter contains a ready-to-use profile for @code{root} (see next step)." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:714 +#: guix-git/doc/guix.texi:725 msgid "Do @emph{not} unpack the tarball on a working Guix system since that would overwrite its own essential files." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:724 +#: guix-git/doc/guix.texi:735 msgid "The @option{--warning=no-timestamp} option makes sure GNU@tie{}tar does not emit warnings about ``implausibly old time stamps'' (such warnings were triggered by GNU@tie{}tar 1.26 and older; recent versions are fine). They stem from the fact that all the files in the archive have their modification time set to 1 (which means January 1st, 1970). This is done on purpose to make sure the archive content is independent of its creation time, thus making it reproducible." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:728 +#: guix-git/doc/guix.texi:739 msgid "Make the profile available under @file{~root/.config/guix/current}, which is where @command{guix pull} will install updates (@pxref{Invoking guix pull}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:733 +#: guix-git/doc/guix.texi:744 #, no-wrap msgid "" "# mkdir -p ~root/.config/guix\n" @@ -5330,12 +5396,12 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:737 +#: guix-git/doc/guix.texi:748 msgid "Source @file{etc/profile} to augment @env{PATH} and other relevant environment variables:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:741 +#: guix-git/doc/guix.texi:752 #, no-wrap msgid "" "# GUIX_PROFILE=\"`echo ~root`/.config/guix/current\" ; \\\n" @@ -5343,22 +5409,22 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:746 +#: guix-git/doc/guix.texi:757 msgid "Create the group and user accounts for build users as explained below (@pxref{Build Environment Setup})." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:749 +#: guix-git/doc/guix.texi:760 msgid "Run the daemon, and set it to automatically start on boot." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:752 +#: guix-git/doc/guix.texi:763 msgid "If your host distro uses the systemd init system, this can be achieved with these commands:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:765 +#: guix-git/doc/guix.texi:776 #, no-wrap msgid "" "# cp ~root/.config/guix/current/lib/systemd/system/gnu-store.mount \\\n" @@ -5368,12 +5434,12 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:768 +#: guix-git/doc/guix.texi:779 msgid "You may also want to arrange for @command{guix gc} to run periodically:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:774 +#: guix-git/doc/guix.texi:785 #, no-wrap msgid "" "# cp ~root/.config/guix/current/lib/systemd/system/guix-gc.service \\\n" @@ -5383,17 +5449,17 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:778 +#: guix-git/doc/guix.texi:789 msgid "You may want to edit @file{guix-gc.service} to adjust the command line options to fit your needs (@pxref{Invoking guix gc})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:780 guix-git/doc/guix.texi:13740 +#: guix-git/doc/guix.texi:791 guix-git/doc/guix.texi:14097 msgid "If your host distro uses the Upstart init system:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:786 +#: guix-git/doc/guix.texi:797 #, no-wrap msgid "" "# initctl reload-configuration\n" @@ -5403,12 +5469,12 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:789 +#: guix-git/doc/guix.texi:800 msgid "Otherwise, you can still start the daemon manually with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:793 +#: guix-git/doc/guix.texi:804 #, no-wrap msgid "" "# ~root/.config/guix/current/bin/guix-daemon \\\n" @@ -5416,12 +5482,12 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:798 +#: guix-git/doc/guix.texi:809 msgid "Make the @command{guix} command available to other users on the machine, for instance with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:803 +#: guix-git/doc/guix.texi:814 #, no-wrap msgid "" "# mkdir -p /usr/local/bin\n" @@ -5430,12 +5496,12 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:807 +#: guix-git/doc/guix.texi:818 msgid "It is also a good idea to make the Info version of this manual available there:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:813 +#: guix-git/doc/guix.texi:824 #, no-wrap msgid "" "# mkdir -p /usr/local/share/info\n" @@ -5445,24 +5511,24 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:819 +#: guix-git/doc/guix.texi:830 msgid "That way, assuming @file{/usr/local/share/info} is in the search path, running @command{info guix} will open this manual (@pxref{Other Info Directories,,, texinfo, GNU Texinfo}, for more details on changing the Info search path)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:821 guix-git/doc/guix.texi:3798 -#: guix-git/doc/guix.texi:16494 +#: guix-git/doc/guix.texi:832 guix-git/doc/guix.texi:3816 +#: guix-git/doc/guix.texi:16851 #, no-wrap msgid "substitutes, authorization thereof" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:825 +#: guix-git/doc/guix.texi:836 msgid "To use substitutes from @code{@value{SUBSTITUTE-SERVER-1}}, @code{@value{SUBSTITUTE-SERVER-2}} or a mirror (@pxref{Substitutes}), authorize them:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:831 +#: guix-git/doc/guix.texi:842 #, no-wrap msgid "" "# guix archive --authorize < \\\n" @@ -5472,49 +5538,49 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:838 +#: guix-git/doc/guix.texi:849 msgid "If you do not enable substitutes, Guix will end up building @emph{everything} from source on your machine, making each installation and upgrade very expensive. @xref{On Trusting Binaries}, for a discussion of reasons why one might want do disable substitutes." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:843 +#: guix-git/doc/guix.texi:854 msgid "Each user may need to perform a few additional steps to make their Guix environment ready for use, @pxref{Application Setup}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:846 +#: guix-git/doc/guix.texi:857 msgid "Voilà, the installation is complete!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:849 +#: guix-git/doc/guix.texi:860 msgid "You can confirm that Guix is working by installing a sample package into the root profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:852 +#: guix-git/doc/guix.texi:863 #, no-wrap msgid "# guix install hello\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:856 +#: guix-git/doc/guix.texi:867 msgid "The binary installation tarball can be (re)produced and verified simply by running the following command in the Guix source tree:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:859 +#: guix-git/doc/guix.texi:870 #, no-wrap msgid "make guix-binary.@var{system}.tar.xz\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:863 +#: guix-git/doc/guix.texi:874 msgid "...@: which, in turn, runs:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:867 +#: guix-git/doc/guix.texi:878 #, no-wrap msgid "" "guix pack -s @var{system} --localstatedir \\\n" @@ -5522,223 +5588,228 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:870 +#: guix-git/doc/guix.texi:881 msgid "@xref{Invoking guix pack}, for more info on this handy tool." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:878 +#: guix-git/doc/guix.texi:889 msgid "This section lists requirements when building Guix from source. The build procedure for Guix is the same as for other GNU software, and is not covered here. Please see the files @file{README} and @file{INSTALL} in the Guix source tree for additional details." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:879 +#: guix-git/doc/guix.texi:890 #, no-wrap msgid "official website" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:882 +#: guix-git/doc/guix.texi:893 msgid "GNU Guix is available for download from its website at @url{https://www.gnu.org/software/guix/}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:884 +#: guix-git/doc/guix.texi:895 msgid "GNU Guix depends on the following packages:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:886 +#: guix-git/doc/guix.texi:897 #, no-wrap -msgid "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x;" +msgid "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x," +msgstr "" + +#. type: itemize +#: guix-git/doc/guix.texi:899 +msgid "version 3.0.3 or later;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:887 +#: guix-git/doc/guix.texi:899 #, no-wrap msgid "@url{https://notabug.org/cwebber/guile-gcrypt, Guile-Gcrypt}, version" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:889 +#: guix-git/doc/guix.texi:901 msgid "0.1.0 or later;" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:893 +#: guix-git/doc/guix.texi:905 msgid "@uref{https://gnutls.org/, GnuTLS}, specifically its Guile bindings (@pxref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile});" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:896 +#: guix-git/doc/guix.texi:908 msgid "@uref{https://notabug.org/guile-sqlite3/guile-sqlite3, Guile-SQLite3}, version 0.1.0 or later;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:896 +#: guix-git/doc/guix.texi:908 #, no-wrap msgid "@uref{https://notabug.org/guile-zlib/guile-zlib, Guile-zlib}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:898 +#: guix-git/doc/guix.texi:910 msgid "version 0.1.0 or later;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:898 +#: guix-git/doc/guix.texi:910 #, no-wrap msgid "@uref{https://notabug.org/guile-lzlib/guile-lzlib, Guile-lzlib};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:899 +#: guix-git/doc/guix.texi:911 #, no-wrap msgid "@uref{https://www.nongnu.org/guile-avahi/, Guile-Avahi};" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:903 +#: guix-git/doc/guix.texi:915 msgid "@uref{https://gitlab.com/guile-git/guile-git, Guile-Git}, version 0.5.0 or later;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:903 +#: guix-git/doc/guix.texi:915 #, no-wrap msgid "@uref{https://savannah.nongnu.org/projects/guile-json/, Guile-JSON}" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:905 +#: guix-git/doc/guix.texi:917 msgid "4.3.0 or later;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:905 +#: guix-git/doc/guix.texi:917 #, no-wrap msgid "@url{https://www.gnu.org/software/make/, GNU Make}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:909 +#: guix-git/doc/guix.texi:921 msgid "The following dependencies are optional:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:917 +#: guix-git/doc/guix.texi:929 msgid "Support for build offloading (@pxref{Daemon Offload Setup}) and @command{guix copy} (@pxref{Invoking guix copy}) depends on @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH}, version 0.13.0 or later." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:922 +#: guix-git/doc/guix.texi:934 msgid "@uref{https://notabug.org/guile-zstd/guile-zstd, Guile-zstd}, for zstd compression and decompression in @command{guix publish} and for substitutes (@pxref{Invoking guix publish})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:926 +#: guix-git/doc/guix.texi:938 msgid "@uref{https://ngyro.com/software/guile-semver.html, Guile-Semver} for the @code{crate} importer (@pxref{Invoking guix import})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:931 +#: guix-git/doc/guix.texi:943 msgid "@uref{https://www.nongnu.org/guile-lib/doc/ref/htmlprag/, Guile-Lib} for the @code{go} importer (@pxref{Invoking guix import}) and for some of the ``updaters'' (@pxref{Invoking guix refresh})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:935 +#: guix-git/doc/guix.texi:947 msgid "When @url{http://www.bzip.org, libbz2} is available, @command{guix-daemon} can use it to compress build logs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:939 +#: guix-git/doc/guix.texi:951 msgid "Unless @option{--disable-daemon} was passed to @command{configure}, the following packages are also needed:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:941 +#: guix-git/doc/guix.texi:953 #, no-wrap msgid "@url{https://gnupg.org/, GNU libgcrypt};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:942 +#: guix-git/doc/guix.texi:954 #, no-wrap msgid "@url{https://sqlite.org, SQLite 3};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:943 +#: guix-git/doc/guix.texi:955 #, no-wrap msgid "@url{https://gcc.gnu.org, GCC's g++}, with support for the" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:945 +#: guix-git/doc/guix.texi:957 msgid "C++11 standard." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:947 +#: guix-git/doc/guix.texi:959 #, no-wrap msgid "state directory" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:956 +#: guix-git/doc/guix.texi:968 msgid "When configuring Guix on a system that already has a Guix installation, be sure to specify the same state directory as the existing installation using the @option{--localstatedir} option of the @command{configure} script (@pxref{Directory Variables, @code{localstatedir},, standards, GNU Coding Standards}). Usually, this @var{localstatedir} option is set to the value @file{/var}. The @command{configure} script protects against unintended misconfiguration of @var{localstatedir} so you do not inadvertently corrupt your store (@pxref{The Store})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:960 +#: guix-git/doc/guix.texi:972 #, no-wrap msgid "test suite" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:966 +#: guix-git/doc/guix.texi:978 msgid "After a successful @command{configure} and @code{make} run, it is a good idea to run the test suite. It can help catch issues with the setup or environment, or bugs in Guix itself---and really, reporting test failures is a good way to help improve the software. To run the test suite, type:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:969 +#: guix-git/doc/guix.texi:981 #, no-wrap msgid "make check\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:976 +#: guix-git/doc/guix.texi:988 msgid "Test cases can run in parallel: you can use the @code{-j} option of GNU@tie{}make to speed things up. The first run may take a few minutes on a recent machine; subsequent runs will be faster because the store that is created for test purposes will already have various things in cache." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:979 +#: guix-git/doc/guix.texi:991 msgid "It is also possible to run a subset of the tests by defining the @code{TESTS} makefile variable as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:982 +#: guix-git/doc/guix.texi:994 #, no-wrap msgid "make check TESTS=\"tests/store.scm tests/cpio.scm\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:987 +#: guix-git/doc/guix.texi:999 msgid "By default, tests results are displayed at a file level. In order to see the details of every individual test cases, it is possible to define the @code{SCM_LOG_DRIVER_FLAGS} makefile variable as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:990 +#: guix-git/doc/guix.texi:1002 #, no-wrap msgid "make check TESTS=\"tests/base64.scm\" SCM_LOG_DRIVER_FLAGS=\"--brief=no\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:998 +#: guix-git/doc/guix.texi:1010 msgid "The underlying SRFI 64 custom Automake test driver used for the 'check' test suite (located at @file{build-aux/test-driver.scm}) also allows selecting which test cases to run at a finer level, via its @option{--select} and @option{--exclude} options. Here's an example, to run all the test cases from the @file{tests/packages.scm} test file whose names start with ``transaction-upgrade-entry'':" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1002 +#: guix-git/doc/guix.texi:1014 #, no-wrap msgid "" "export SCM_LOG_DRIVER_FLAGS=\"--select=^transaction-upgrade-entry\"\n" @@ -5746,114 +5817,114 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1008 +#: guix-git/doc/guix.texi:1020 msgid "Those wishing to inspect the results of failed tests directly from the command line can add the @option{--errors-only=yes} option to the @code{SCM_LOG_DRIVER_FLAGS} makefile variable and set the @code{VERBOSE} Automake makefile variable, as in:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1011 +#: guix-git/doc/guix.texi:1023 #, no-wrap msgid "make check SCM_LOG_DRIVER_FLAGS=\"--brief=no --errors-only=yes\" VERBOSE=1\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1016 +#: guix-git/doc/guix.texi:1028 msgid "The @option{--show-duration=yes} option can be used to print the duration of the individual test cases, when used in combination with @option{--brief=no}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1019 +#: guix-git/doc/guix.texi:1031 #, no-wrap msgid "make check SCM_LOG_DRIVER_FLAGS=\"--brief=no --show-duration=yes\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1023 +#: guix-git/doc/guix.texi:1035 msgid "@xref{Parallel Test Harness,,,automake,GNU Automake} for more information about the Automake Parallel Test Harness." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1028 +#: guix-git/doc/guix.texi:1040 msgid "Upon failure, please email @email{bug-guix@@gnu.org} and attach the @file{test-suite.log} file. Please specify the Guix version being used as well as version numbers of the dependencies (@pxref{Requirements}) in your message." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1032 +#: guix-git/doc/guix.texi:1044 msgid "Guix also comes with a whole-system test suite that tests complete Guix System instances. It can only run on systems where Guix is already installed, using:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1035 +#: guix-git/doc/guix.texi:1047 #, no-wrap msgid "make check-system\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1039 +#: guix-git/doc/guix.texi:1051 msgid "or, again, by defining @code{TESTS} to select a subset of tests to run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1042 +#: guix-git/doc/guix.texi:1054 #, no-wrap msgid "make check-system TESTS=\"basic mcron\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1050 +#: guix-git/doc/guix.texi:1062 msgid "These system tests are defined in the @code{(gnu tests @dots{})} modules. They work by running the operating systems under test with lightweight instrumentation in a virtual machine (VM). They can be computationally intensive or rather cheap, depending on whether substitutes are available for their dependencies (@pxref{Substitutes}). Some of them require a lot of storage space to hold VM images." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1053 +#: guix-git/doc/guix.texi:1065 msgid "Again in case of test failures, please send @email{bug-guix@@gnu.org} all the details." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1057 +#: guix-git/doc/guix.texi:1069 #, no-wrap msgid "daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1065 +#: guix-git/doc/guix.texi:1077 msgid "Operations such as building a package or running the garbage collector are all performed by a specialized process, the @dfn{build daemon}, on behalf of clients. Only the daemon may access the store and its associated database. Thus, any operation that manipulates the store goes through the daemon. For instance, command-line tools such as @command{guix package} and @command{guix build} communicate with the daemon (@i{via} remote procedure calls) to instruct it what to do." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1069 +#: guix-git/doc/guix.texi:1081 msgid "The following sections explain how to prepare the build daemon's environment. See also @ref{Substitutes}, for information on how to allow the daemon to download pre-built binaries." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1079 guix-git/doc/guix.texi:1542 +#: guix-git/doc/guix.texi:1091 guix-git/doc/guix.texi:1559 #, no-wrap msgid "build environment" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1087 +#: guix-git/doc/guix.texi:1099 msgid "In a standard multi-user setup, Guix and its daemon---the @command{guix-daemon} program---are installed by the system administrator; @file{/gnu/store} is owned by @code{root} and @command{guix-daemon} runs as @code{root}. Unprivileged users may use Guix tools to build packages or otherwise access the store, and the daemon will do it on their behalf, ensuring that the store is kept in a consistent state, and allowing built packages to be shared among users." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1088 +#: guix-git/doc/guix.texi:1100 #, no-wrap msgid "build users" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1099 +#: guix-git/doc/guix.texi:1111 msgid "When @command{guix-daemon} runs as @code{root}, you may not want package build processes themselves to run as @code{root} too, for obvious security reasons. To avoid that, a special pool of @dfn{build users} should be created for use by build processes started by the daemon. These build users need not have a shell and a home directory: they will just be used when the daemon drops @code{root} privileges in build processes. Having several such users allows the daemon to launch distinct build processes under separate UIDs, which guarantees that they do not interfere with each other---an essential feature since builds are regarded as pure functions (@pxref{Introduction})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1102 +#: guix-git/doc/guix.texi:1114 msgid "On a GNU/Linux system, a build user pool may be created like this (using Bash syntax and the @code{shadow} commands):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1114 +#: guix-git/doc/guix.texi:1126 #, no-wrap msgid "" "# groupadd --system guixbuild\n" @@ -5867,139 +5938,144 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1124 +#: guix-git/doc/guix.texi:1136 msgid "The number of build users determines how many build jobs may run in parallel, as specified by the @option{--max-jobs} option (@pxref{Invoking guix-daemon, @option{--max-jobs}}). To use @command{guix system vm} and related commands, you may need to add the build users to the @code{kvm} group so they can access @file{/dev/kvm}, using @code{-G guixbuild,kvm} instead of @code{-G guixbuild} (@pxref{Invoking guix system})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1133 +#: guix-git/doc/guix.texi:1145 msgid "The @code{guix-daemon} program may then be run as @code{root} with the following command@footnote{If your machine uses the systemd init system, dropping the @file{@var{prefix}/lib/systemd/system/guix-daemon.service} file in @file{/etc/systemd/system} will ensure that @command{guix-daemon} is automatically started. Similarly, if your machine uses the Upstart init system, drop the @file{@var{prefix}/lib/upstart/system/guix-daemon.conf} file in @file{/etc/init}.}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1136 guix-git/doc/guix.texi:1535 +#: guix-git/doc/guix.texi:1148 guix-git/doc/guix.texi:1552 #, no-wrap msgid "# guix-daemon --build-users-group=guixbuild\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1138 guix-git/doc/guix.texi:1540 +#: guix-git/doc/guix.texi:1150 guix-git/doc/guix.texi:1557 #, no-wrap msgid "chroot" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1143 +#: guix-git/doc/guix.texi:1155 msgid "This way, the daemon starts build processes in a chroot, under one of the @code{guixbuilder} users. On GNU/Linux, by default, the chroot environment contains nothing but:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1151 +#: guix-git/doc/guix.texi:1163 msgid "a minimal @code{/dev} directory, created mostly independently from the host @code{/dev}@footnote{``Mostly'', because while the set of files that appear in the chroot's @code{/dev} is fixed, most of these files can only be created if the host has them.};" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1155 +#: guix-git/doc/guix.texi:1167 msgid "the @code{/proc} directory; it only shows the processes of the container since a separate PID name space is used;" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1159 +#: guix-git/doc/guix.texi:1171 msgid "@file{/etc/passwd} with an entry for the current user and an entry for user @file{nobody};" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1162 +#: guix-git/doc/guix.texi:1174 msgid "@file{/etc/group} with an entry for the user's group;" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1166 +#: guix-git/doc/guix.texi:1178 msgid "@file{/etc/hosts} with an entry that maps @code{localhost} to @code{127.0.0.1};" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1169 +#: guix-git/doc/guix.texi:1181 msgid "a writable @file{/tmp} directory." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1178 +#: guix-git/doc/guix.texi:1187 +msgid "The chroot does not contain a @file{/home} directory, and the @env{HOME} environment variable is set to the non-existent @file{/homeless-shelter}. This helps to highlight inappropriate uses of @env{HOME} in the build scripts of packages." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:1195 msgid "You can influence the directory where the daemon stores build trees @i{via} the @env{TMPDIR} environment variable. However, the build tree within the chroot is always called @file{/tmp/guix-build-@var{name}.drv-0}, where @var{name} is the derivation name---e.g., @code{coreutils-8.24}. This way, the value of @env{TMPDIR} does not leak inside build environments, which avoids discrepancies in cases where build processes capture the name of their build tree." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:1179 guix-git/doc/guix.texi:4007 +#: guix-git/doc/guix.texi:1196 guix-git/doc/guix.texi:4025 #, no-wrap msgid "http_proxy" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:1180 guix-git/doc/guix.texi:4008 +#: guix-git/doc/guix.texi:1197 guix-git/doc/guix.texi:4026 #, no-wrap msgid "https_proxy" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1185 +#: guix-git/doc/guix.texi:1202 msgid "The daemon also honors the @env{http_proxy} and @env{https_proxy} environment variables for HTTP and HTTPS downloads it performs, be it for fixed-output derivations (@pxref{Derivations}) or for substitutes (@pxref{Substitutes})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1193 +#: guix-git/doc/guix.texi:1210 msgid "If you are installing Guix as an unprivileged user, it is still possible to run @command{guix-daemon} provided you pass @option{--disable-chroot}. However, build processes will not be isolated from one another, and not from the rest of the system. Thus, build processes may interfere with each other, and may access programs, libraries, and other files available on the system---making it much harder to view them as @emph{pure} functions." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:1196 +#: guix-git/doc/guix.texi:1213 #, no-wrap msgid "Using the Offload Facility" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1198 guix-git/doc/guix.texi:1601 +#: guix-git/doc/guix.texi:1215 guix-git/doc/guix.texi:1618 #, no-wrap msgid "offloading" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1199 +#: guix-git/doc/guix.texi:1216 #, no-wrap msgid "build hook" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1218 +#: guix-git/doc/guix.texi:1235 msgid "When desired, the build daemon can @dfn{offload} derivation builds to other machines running Guix, using the @code{offload} @dfn{build hook}@footnote{This feature is available only when @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH} is present.}. When that feature is enabled, a list of user-specified build machines is read from @file{/etc/guix/machines.scm}; every time a build is requested, for instance via @code{guix build}, the daemon attempts to offload it to one of the machines that satisfy the constraints of the derivation, in particular its system types---e.g., @code{x86_64-linux}. A single machine can have multiple system types, either because its architecture natively supports it, via emulation (@pxref{transparent-emulation-qemu, Transparent Emulation with QEMU}), or both. Missing prerequisites for the build are copied over SSH to the target machine, which then proceeds with the build; upon success the output(s) of the build are copied back to the initial machine. The offload facility comes with a basic scheduler that attempts to select the best machine. The best machine is chosen among the available machines based on criteria such as:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1224 +#: guix-git/doc/guix.texi:1241 msgid "The availability of a build slot. A build machine can have as many build slots (connections) as the value of the @code{parallel-builds} field of its @code{build-machine} object." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1228 +#: guix-git/doc/guix.texi:1245 msgid "Its relative speed, as defined via the @code{speed} field of its @code{build-machine} object." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1233 +#: guix-git/doc/guix.texi:1250 msgid "Its load. The normalized machine load must be lower than a threshold value, configurable via the @code{overload-threshold} field of its @code{build-machine} object." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1236 +#: guix-git/doc/guix.texi:1253 msgid "Disk space availability. More than a 100 MiB must be available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1239 +#: guix-git/doc/guix.texi:1256 msgid "The @file{/etc/guix/machines.scm} file typically looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:1247 +#: guix-git/doc/guix.texi:1264 #, no-wrap msgid "" "(list (build-machine\n" @@ -6012,7 +6088,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:1253 +#: guix-git/doc/guix.texi:1270 #, no-wrap msgid "" " (build-machine\n" @@ -6024,7 +6100,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:1257 +#: guix-git/doc/guix.texi:1274 #, no-wrap msgid "" " ;; Remember 'guix offload' is spawned by\n" @@ -6033,98 +6109,98 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1263 +#: guix-git/doc/guix.texi:1280 msgid "In the example above we specify a list of two build machines, one for the @code{x86_64} and @code{i686} architectures and one for the @code{aarch64} architecture." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1272 +#: guix-git/doc/guix.texi:1289 msgid "In fact, this file is---not surprisingly!---a Scheme file that is evaluated when the @code{offload} hook is started. Its return value must be a list of @code{build-machine} objects. While this example shows a fixed list of build machines, one could imagine, say, using DNS-SD to return a list of potential build machines discovered in the local network (@pxref{Introduction, Guile-Avahi,, guile-avahi, Using Avahi in Guile Scheme Programs}). The @code{build-machine} data type is detailed below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:1273 +#: guix-git/doc/guix.texi:1290 #, no-wrap msgid "{Data Type} build-machine" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:1276 +#: guix-git/doc/guix.texi:1293 msgid "This data type represents build machines to which the daemon may offload builds. The important fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1279 guix-git/doc/guix.texi:7113 -#: guix-git/doc/guix.texi:15446 guix-git/doc/guix.texi:15545 -#: guix-git/doc/guix.texi:15786 guix-git/doc/guix.texi:17314 -#: guix-git/doc/guix.texi:17935 guix-git/doc/guix.texi:18209 -#: guix-git/doc/guix.texi:21269 guix-git/doc/guix.texi:24179 -#: guix-git/doc/guix.texi:25568 guix-git/doc/guix.texi:26180 -#: guix-git/doc/guix.texi:26533 guix-git/doc/guix.texi:26574 -#: guix-git/doc/guix.texi:28735 guix-git/doc/guix.texi:31072 -#: guix-git/doc/guix.texi:31092 guix-git/doc/guix.texi:33766 -#: guix-git/doc/guix.texi:33783 guix-git/doc/guix.texi:34320 -#: guix-git/doc/guix.texi:36095 guix-git/doc/guix.texi:36422 +#: guix-git/doc/guix.texi:1296 guix-git/doc/guix.texi:7157 +#: guix-git/doc/guix.texi:15803 guix-git/doc/guix.texi:15902 +#: guix-git/doc/guix.texi:16143 guix-git/doc/guix.texi:17676 +#: guix-git/doc/guix.texi:18297 guix-git/doc/guix.texi:18571 +#: guix-git/doc/guix.texi:21631 guix-git/doc/guix.texi:24541 +#: guix-git/doc/guix.texi:25905 guix-git/doc/guix.texi:26517 +#: guix-git/doc/guix.texi:26870 guix-git/doc/guix.texi:26911 +#: guix-git/doc/guix.texi:29072 guix-git/doc/guix.texi:31437 +#: guix-git/doc/guix.texi:31457 guix-git/doc/guix.texi:34203 +#: guix-git/doc/guix.texi:34220 guix-git/doc/guix.texi:34759 +#: guix-git/doc/guix.texi:36585 guix-git/doc/guix.texi:36912 #, no-wrap msgid "name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1281 +#: guix-git/doc/guix.texi:1298 msgid "The host name of the remote machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1282 +#: guix-git/doc/guix.texi:1299 #, no-wrap msgid "systems" msgstr "järjestelmät" #. type: table -#: guix-git/doc/guix.texi:1285 +#: guix-git/doc/guix.texi:1302 msgid "The system types the remote machine supports---e.g., @code{(list \"x86_64-linux\" \"i686-linux\")}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1286 guix-git/doc/guix.texi:17945 +#: guix-git/doc/guix.texi:1303 guix-git/doc/guix.texi:18307 #, no-wrap msgid "user" msgstr "käyttäjä" #. type: table -#: guix-git/doc/guix.texi:1290 +#: guix-git/doc/guix.texi:1307 msgid "The user account to use when connecting to the remote machine over SSH. Note that the SSH key pair must @emph{not} be passphrase-protected, to allow non-interactive logins." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1291 +#: guix-git/doc/guix.texi:1308 #, no-wrap msgid "host-key" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1295 +#: guix-git/doc/guix.texi:1312 msgid "This must be the machine's SSH @dfn{public host key} in OpenSSH format. This is used to authenticate the machine when we connect to it. It is a long string that looks like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1298 +#: guix-git/doc/guix.texi:1315 #, no-wrap msgid "ssh-ed25519 AAAAC3NzaC@dots{}mde+UhL hint@@example.org\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1303 +#: guix-git/doc/guix.texi:1320 msgid "If the machine is running the OpenSSH daemon, @command{sshd}, the host key can be found in a file such as @file{/etc/ssh/ssh_host_ed25519_key.pub}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1308 +#: guix-git/doc/guix.texi:1325 msgid "If the machine is running the SSH daemon of GNU@tie{}lsh, @command{lshd}, the host key is in @file{/etc/lsh/host-key.pub} or a similar file. It can be converted to the OpenSSH format using @command{lsh-export-key} (@pxref{Converting keys,,, lsh, LSH Manual}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1312 +#: guix-git/doc/guix.texi:1329 #, no-wrap msgid "" "$ lsh-export-key --openssh < /etc/lsh/host-key.pub\n" @@ -6132,674 +6208,674 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:1317 +#: guix-git/doc/guix.texi:1334 msgid "A number of optional fields may be specified:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1320 guix-git/doc/guix.texi:35581 +#: guix-git/doc/guix.texi:1337 guix-git/doc/guix.texi:36061 #, no-wrap msgid "@code{port} (default: @code{22})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1322 +#: guix-git/doc/guix.texi:1339 msgid "Port number of SSH server on the machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1323 +#: guix-git/doc/guix.texi:1340 #, no-wrap msgid "@code{private-key} (default: @file{~root/.ssh/id_rsa})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1326 +#: guix-git/doc/guix.texi:1343 msgid "The SSH private key file to use when connecting to the machine, in OpenSSH format. This key must not be protected with a passphrase." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1329 +#: guix-git/doc/guix.texi:1346 msgid "Note that the default value is the private key @emph{of the root account}. Make sure it exists if you use the default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1330 +#: guix-git/doc/guix.texi:1347 #, no-wrap msgid "@code{compression} (default: @code{\"zlib@@openssh.com,zlib\"})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:1331 +#: guix-git/doc/guix.texi:1348 #, no-wrap msgid "@code{compression-level} (default: @code{3})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1333 +#: guix-git/doc/guix.texi:1350 msgid "The SSH-level compression methods and compression level requested." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1336 +#: guix-git/doc/guix.texi:1353 msgid "Note that offloading relies on SSH compression to reduce bandwidth usage when transferring files to and from build machines." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1337 +#: guix-git/doc/guix.texi:1354 #, no-wrap msgid "@code{daemon-socket} (default: @code{\"/var/guix/daemon-socket/socket\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1340 +#: guix-git/doc/guix.texi:1357 msgid "File name of the Unix-domain socket @command{guix-daemon} is listening to on that machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1341 +#: guix-git/doc/guix.texi:1358 #, no-wrap msgid "@code{overload-threshold} (default: @code{0.6})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1347 +#: guix-git/doc/guix.texi:1364 msgid "The load threshold above which a potential offload machine is disregarded by the offload scheduler. The value roughly translates to the total processor usage of the build machine, ranging from 0.0 (0%) to 1.0 (100%). It can also be disabled by setting @code{overload-threshold} to @code{#f}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1348 +#: guix-git/doc/guix.texi:1365 #, no-wrap msgid "@code{parallel-builds} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1350 +#: guix-git/doc/guix.texi:1367 msgid "The number of builds that may run in parallel on the machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1351 +#: guix-git/doc/guix.texi:1368 #, no-wrap msgid "@code{speed} (default: @code{1.0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1354 +#: guix-git/doc/guix.texi:1371 msgid "A ``relative speed factor''. The offload scheduler will tend to prefer machines with a higher speed factor." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1355 +#: guix-git/doc/guix.texi:1372 #, no-wrap msgid "@code{features} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1360 +#: guix-git/doc/guix.texi:1377 msgid "A list of strings denoting specific features supported by the machine. An example is @code{\"kvm\"} for machines that have the KVM Linux modules and corresponding hardware support. Derivations can request features by name, and they will be scheduled on matching build machines." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1366 +#: guix-git/doc/guix.texi:1383 msgid "The @command{guix} command must be in the search path on the build machines. You can check whether this is the case by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1369 +#: guix-git/doc/guix.texi:1386 #, no-wrap msgid "ssh build-machine guix repl --version\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1376 +#: guix-git/doc/guix.texi:1393 msgid "There is one last thing to do once @file{machines.scm} is in place. As explained above, when offloading, files are transferred back and forth between the machine stores. For this to work, you first need to generate a key pair on each machine to allow the daemon to export signed archives of files from the store (@pxref{Invoking guix archive}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1379 guix-git/doc/guix.texi:35509 +#: guix-git/doc/guix.texi:1396 guix-git/doc/guix.texi:35965 #, no-wrap msgid "# guix archive --generate-key\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1384 +#: guix-git/doc/guix.texi:1401 msgid "Each build machine must authorize the key of the master machine so that it accepts store items it receives from the master:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1387 +#: guix-git/doc/guix.texi:1404 #, no-wrap msgid "# guix archive --authorize < master-public-key.txt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1391 +#: guix-git/doc/guix.texi:1408 msgid "Likewise, the master machine must authorize the key of each build machine." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1397 +#: guix-git/doc/guix.texi:1414 msgid "All the fuss with keys is here to express pairwise mutual trust relations between the master and the build machines. Concretely, when the master receives files from a build machine (and @i{vice versa}), its build daemon can make sure they are genuine, have not been tampered with, and that they are signed by an authorized key." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1398 +#: guix-git/doc/guix.texi:1415 #, no-wrap msgid "offload test" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1401 +#: guix-git/doc/guix.texi:1418 msgid "To test whether your setup is operational, run this command on the master node:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1404 +#: guix-git/doc/guix.texi:1421 #, no-wrap msgid "# guix offload test\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1410 +#: guix-git/doc/guix.texi:1427 msgid "This will attempt to connect to each of the build machines specified in @file{/etc/guix/machines.scm}, make sure Guix is available on each machine, attempt to export to the machine and import from it, and report any error in the process." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1413 +#: guix-git/doc/guix.texi:1430 msgid "If you want to test a different machine file, just specify it on the command line:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1416 +#: guix-git/doc/guix.texi:1433 #, no-wrap msgid "# guix offload test machines-qualif.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1420 +#: guix-git/doc/guix.texi:1437 msgid "Last, you can test the subset of the machines whose name matches a regular expression like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1423 +#: guix-git/doc/guix.texi:1440 #, no-wrap msgid "# guix offload test machines.scm '\\.gnu\\.org$'\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1425 +#: guix-git/doc/guix.texi:1442 #, no-wrap msgid "offload status" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1428 +#: guix-git/doc/guix.texi:1445 msgid "To display the current load of all build hosts, run this command on the main node:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1431 +#: guix-git/doc/guix.texi:1448 #, no-wrap msgid "# guix offload status\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1437 +#: guix-git/doc/guix.texi:1454 #, no-wrap msgid "SELinux, daemon policy" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1438 +#: guix-git/doc/guix.texi:1455 #, no-wrap msgid "mandatory access control, SELinux" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1439 +#: guix-git/doc/guix.texi:1456 #, no-wrap msgid "security, guix-daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1445 +#: guix-git/doc/guix.texi:1462 msgid "Guix includes an SELinux policy file at @file{etc/guix-daemon.cil} that can be installed on a system where SELinux is enabled, in order to label Guix files and to specify the expected behavior of the daemon. Since Guix System does not provide an SELinux base policy, the daemon policy cannot be used on Guix System." msgstr "" #. type: subsubsection -#: guix-git/doc/guix.texi:1446 +#: guix-git/doc/guix.texi:1463 #, no-wrap msgid "Installing the SELinux policy" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1447 +#: guix-git/doc/guix.texi:1464 #, no-wrap msgid "SELinux, policy installation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1449 +#: guix-git/doc/guix.texi:1466 msgid "To install the policy run this command as root:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1452 +#: guix-git/doc/guix.texi:1469 #, no-wrap msgid "semodule -i etc/guix-daemon.cil\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1456 +#: guix-git/doc/guix.texi:1473 msgid "Then relabel the file system with @code{restorecon} or by a different mechanism provided by your system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1461 +#: guix-git/doc/guix.texi:1478 msgid "Once the policy is installed, the file system has been relabeled, and the daemon has been restarted, it should be running in the @code{guix_daemon_t} context. You can confirm this with the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1464 +#: guix-git/doc/guix.texi:1481 #, no-wrap msgid "ps -Zax | grep guix-daemon\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1469 +#: guix-git/doc/guix.texi:1486 msgid "Monitor the SELinux log files as you run a command like @code{guix build hello} to convince yourself that SELinux permits all necessary operations." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1471 +#: guix-git/doc/guix.texi:1488 #, no-wrap msgid "SELinux, limitations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1476 +#: guix-git/doc/guix.texi:1493 msgid "This policy is not perfect. Here is a list of limitations or quirks that should be considered when deploying the provided SELinux policy for the Guix daemon." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1483 +#: guix-git/doc/guix.texi:1500 msgid "@code{guix_daemon_socket_t} isn’t actually used. None of the socket operations involve contexts that have anything to do with @code{guix_daemon_socket_t}. It doesn’t hurt to have this unused label, but it would be preferable to define socket rules for only this label." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1494 +#: guix-git/doc/guix.texi:1511 msgid "@code{guix gc} cannot access arbitrary links to profiles. By design, the file label of the destination of a symlink is independent of the file label of the link itself. Although all profiles under $localstatedir are labelled, the links to these profiles inherit the label of the directory they are in. For links in the user’s home directory this will be @code{user_home_t}. But for links from the root user’s home directory, or @file{/tmp}, or the HTTP server’s working directory, etc, this won’t work. @code{guix gc} would be prevented from reading and following these links." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1499 +#: guix-git/doc/guix.texi:1516 msgid "The daemon’s feature to listen for TCP connections might no longer work. This might require extra rules, because SELinux treats network sockets differently from files." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1510 +#: guix-git/doc/guix.texi:1527 msgid "Currently all files with a name matching the regular expression @code{/gnu/store/.+-(guix-.+|profile)/bin/guix-daemon} are assigned the label @code{guix_daemon_exec_t}; this means that @emph{any} file with that name in any profile would be permitted to run in the @code{guix_daemon_t} domain. This is not ideal. An attacker could build a package that provides this executable and convince a user to install and run it, which lifts it into the @code{guix_daemon_t} domain. At that point SELinux could not prevent it from accessing files that are allowed for processes in that domain." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1515 +#: guix-git/doc/guix.texi:1532 msgid "You will need to relabel the store directory after all upgrades to @file{guix-daemon}, such as after running @code{guix pull}. Assuming the store is in @file{/gnu}, you can do this with @code{restorecon -vR /gnu}, or by other means provided by your operating system." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1523 +#: guix-git/doc/guix.texi:1540 msgid "We could generate a much more restrictive policy at installation time, so that only the @emph{exact} file name of the currently installed @code{guix-daemon} executable would be labelled with @code{guix_daemon_exec_t}, instead of using a broad regular expression. The downside is that root would have to install or upgrade the policy at installation time whenever the Guix package that provides the effectively running @code{guix-daemon} executable is upgraded." msgstr "" #. type: section -#: guix-git/doc/guix.texi:1526 +#: guix-git/doc/guix.texi:1543 #, no-wrap msgid "Invoking @command{guix-daemon}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1532 +#: guix-git/doc/guix.texi:1549 msgid "The @command{guix-daemon} program implements all the functionality to access the store. This includes launching build processes, running the garbage collector, querying the availability of a build result, etc. It is normally run as @code{root} like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1539 +#: guix-git/doc/guix.texi:1556 msgid "For details on how to set it up, @pxref{Setting Up the Daemon}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1541 +#: guix-git/doc/guix.texi:1558 #, no-wrap msgid "container, build environment" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1543 guix-git/doc/guix.texi:3071 -#: guix-git/doc/guix.texi:3988 guix-git/doc/guix.texi:13753 +#: guix-git/doc/guix.texi:1560 guix-git/doc/guix.texi:3088 +#: guix-git/doc/guix.texi:4006 guix-git/doc/guix.texi:14110 #, no-wrap msgid "reproducible builds" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1555 +#: guix-git/doc/guix.texi:1572 msgid "By default, @command{guix-daemon} launches build processes under different UIDs, taken from the build group specified with @option{--build-users-group}. In addition, each build process is run in a chroot environment that only contains the subset of the store that the build process depends on, as specified by its derivation (@pxref{Programming Interface, derivation}), plus a set of specific system directories. By default, the latter contains @file{/dev} and @file{/dev/pts}. Furthermore, on GNU/Linux, the build environment is a @dfn{container}: in addition to having its own file system tree, it has a separate mount name space, its own PID name space, network name space, etc. This helps achieve reproducible builds (@pxref{Features})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1561 +#: guix-git/doc/guix.texi:1578 msgid "When the daemon performs a build on behalf of the user, it creates a build directory under @file{/tmp} or under the directory specified by its @env{TMPDIR} environment variable. This directory is shared with the container for the duration of the build, though within the container, the build tree is always called @file{/tmp/guix-build-@var{name}.drv-0}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1565 +#: guix-git/doc/guix.texi:1582 msgid "The build directory is automatically deleted upon completion, unless the build failed and the client specified @option{--keep-failed} (@pxref{Common Build Options, @option{--keep-failed}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1571 +#: guix-git/doc/guix.texi:1588 msgid "The daemon listens for connections and spawns one sub-process for each session started by a client (one of the @command{guix} sub-commands). The @command{guix processes} command allows you to get an overview of the activity on your system by viewing each of the active sessions and clients. @xref{Invoking guix processes}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1573 +#: guix-git/doc/guix.texi:1590 msgid "The following command-line options are supported:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1575 +#: guix-git/doc/guix.texi:1592 #, no-wrap msgid "--build-users-group=@var{group}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1578 +#: guix-git/doc/guix.texi:1595 msgid "Take users from @var{group} to run build processes (@pxref{Setting Up the Daemon, build users})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1579 guix-git/doc/guix.texi:10915 +#: guix-git/doc/guix.texi:1596 guix-git/doc/guix.texi:11229 #, no-wrap msgid "--no-substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1580 guix-git/doc/guix.texi:3083 -#: guix-git/doc/guix.texi:3741 +#: guix-git/doc/guix.texi:1597 guix-git/doc/guix.texi:3100 +#: guix-git/doc/guix.texi:3759 #, no-wrap msgid "substitutes" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1584 guix-git/doc/guix.texi:10919 +#: guix-git/doc/guix.texi:1601 guix-git/doc/guix.texi:11233 msgid "Do not use substitutes for build products. That is, always build things locally instead of allowing downloads of pre-built binaries (@pxref{Substitutes})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1588 +#: guix-git/doc/guix.texi:1605 msgid "When the daemon runs with @option{--no-substitutes}, clients can still explicitly enable substitution @i{via} the @code{set-build-options} remote procedure call (@pxref{The Store})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:1590 +#: guix-git/doc/guix.texi:1607 msgid "daemon-substitute-urls" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1590 guix-git/doc/guix.texi:10902 -#: guix-git/doc/guix.texi:13160 guix-git/doc/guix.texi:13899 -#: guix-git/doc/guix.texi:14124 +#: guix-git/doc/guix.texi:1607 guix-git/doc/guix.texi:11216 +#: guix-git/doc/guix.texi:13517 guix-git/doc/guix.texi:14256 +#: guix-git/doc/guix.texi:14481 #, no-wrap msgid "--substitute-urls=@var{urls}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1594 +#: guix-git/doc/guix.texi:1611 msgid "Consider @var{urls} the default whitespace-separated list of substitute source URLs. When this option is omitted, @indicateurl{@value{SUBSTITUTE-URLS}} is used." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1597 +#: guix-git/doc/guix.texi:1614 msgid "This means that substitutes may be downloaded from @var{urls}, as long as they are signed by a trusted signature (@pxref{Substitutes})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1600 +#: guix-git/doc/guix.texi:1617 msgid "@xref{Getting Substitutes from Other Servers}, for more information on how to configure the daemon to get substitutes from other servers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1602 guix-git/doc/guix.texi:10938 +#: guix-git/doc/guix.texi:1619 guix-git/doc/guix.texi:11252 #, no-wrap msgid "--no-offload" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1606 guix-git/doc/guix.texi:10942 +#: guix-git/doc/guix.texi:1623 guix-git/doc/guix.texi:11256 msgid "Do not use offload builds to other machines (@pxref{Daemon Offload Setup}). That is, always build things locally instead of offloading builds to remote machines." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1607 +#: guix-git/doc/guix.texi:1624 #, no-wrap msgid "--cache-failures" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1609 +#: guix-git/doc/guix.texi:1626 msgid "Cache build failures. By default, only successful builds are cached." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1614 +#: guix-git/doc/guix.texi:1631 msgid "When this option is used, @command{guix gc --list-failures} can be used to query the set of store items marked as failed; @command{guix gc --clear-failures} removes store items from the set of cached failures. @xref{Invoking guix gc}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1615 guix-git/doc/guix.texi:10968 +#: guix-git/doc/guix.texi:1632 guix-git/doc/guix.texi:11282 #, no-wrap msgid "--cores=@var{n}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:1616 guix-git/doc/guix.texi:10969 +#: guix-git/doc/guix.texi:1633 guix-git/doc/guix.texi:11283 #, no-wrap msgid "-c @var{n}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1619 +#: guix-git/doc/guix.texi:1636 msgid "Use @var{n} CPU cores to build each derivation; @code{0} means as many as available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1623 +#: guix-git/doc/guix.texi:1640 msgid "The default value is @code{0}, but it may be overridden by clients, such as the @option{--cores} option of @command{guix build} (@pxref{Invoking guix build})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1627 +#: guix-git/doc/guix.texi:1644 msgid "The effect is to define the @env{NIX_BUILD_CORES} environment variable in the build process, which can then use it to exploit internal parallelism---for instance, by running @code{make -j$NIX_BUILD_CORES}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1628 guix-git/doc/guix.texi:10973 +#: guix-git/doc/guix.texi:1645 guix-git/doc/guix.texi:11287 #, no-wrap msgid "--max-jobs=@var{n}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:1629 guix-git/doc/guix.texi:10974 +#: guix-git/doc/guix.texi:1646 guix-git/doc/guix.texi:11288 #, no-wrap msgid "-M @var{n}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1634 +#: guix-git/doc/guix.texi:1651 msgid "Allow at most @var{n} build jobs in parallel. The default value is @code{1}. Setting it to @code{0} means that no builds will be performed locally; instead, the daemon will offload builds (@pxref{Daemon Offload Setup}), or simply fail." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1635 guix-git/doc/guix.texi:10943 +#: guix-git/doc/guix.texi:1652 guix-git/doc/guix.texi:11257 #, no-wrap msgid "--max-silent-time=@var{seconds}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1638 guix-git/doc/guix.texi:10946 +#: guix-git/doc/guix.texi:1655 guix-git/doc/guix.texi:11260 msgid "When the build or substitution process remains silent for more than @var{seconds}, terminate it and report a build failure." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1640 guix-git/doc/guix.texi:1649 +#: guix-git/doc/guix.texi:1657 guix-git/doc/guix.texi:1666 msgid "The default value is @code{0}, which disables the timeout." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1643 +#: guix-git/doc/guix.texi:1660 msgid "The value specified here can be overridden by clients (@pxref{Common Build Options, @option{--max-silent-time}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1644 guix-git/doc/guix.texi:10950 +#: guix-git/doc/guix.texi:1661 guix-git/doc/guix.texi:11264 #, no-wrap msgid "--timeout=@var{seconds}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1647 guix-git/doc/guix.texi:10953 +#: guix-git/doc/guix.texi:1664 guix-git/doc/guix.texi:11267 msgid "Likewise, when the build or substitution process lasts for more than @var{seconds}, terminate it and report a build failure." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1652 +#: guix-git/doc/guix.texi:1669 msgid "The value specified here can be overridden by clients (@pxref{Common Build Options, @option{--timeout}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1653 +#: guix-git/doc/guix.texi:1670 #, no-wrap msgid "--rounds=@var{N}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1658 +#: guix-git/doc/guix.texi:1675 msgid "Build each derivation @var{n} times in a row, and raise an error if consecutive build results are not bit-for-bit identical. Note that this setting can be overridden by clients such as @command{guix build} (@pxref{Invoking guix build})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1662 guix-git/doc/guix.texi:10937 -#: guix-git/doc/guix.texi:11561 +#: guix-git/doc/guix.texi:1679 guix-git/doc/guix.texi:11251 +#: guix-git/doc/guix.texi:11875 msgid "When used in conjunction with @option{--keep-failed}, the differing output is kept in the store, under @file{/gnu/store/@dots{}-check}. This makes it easy to look for differences between the two results." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1663 +#: guix-git/doc/guix.texi:1680 #, no-wrap msgid "--debug" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1665 +#: guix-git/doc/guix.texi:1682 msgid "Produce debugging output." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1669 +#: guix-git/doc/guix.texi:1686 msgid "This is useful to debug daemon start-up issues, but then it may be overridden by clients, for example the @option{--verbosity} option of @command{guix build} (@pxref{Invoking guix build})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1670 +#: guix-git/doc/guix.texi:1687 #, no-wrap msgid "--chroot-directory=@var{dir}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1672 +#: guix-git/doc/guix.texi:1689 msgid "Add @var{dir} to the build chroot." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1678 +#: guix-git/doc/guix.texi:1695 msgid "Doing this may change the result of build processes---for instance if they use optional dependencies found in @var{dir} when it is available, and not otherwise. For that reason, it is not recommended to do so. Instead, make sure that each derivation declares all the inputs that it needs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1679 +#: guix-git/doc/guix.texi:1696 #, no-wrap msgid "--disable-chroot" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1681 +#: guix-git/doc/guix.texi:1698 msgid "Disable chroot builds." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1686 +#: guix-git/doc/guix.texi:1703 msgid "Using this option is not recommended since, again, it would allow build processes to gain access to undeclared dependencies. It is necessary, though, when @command{guix-daemon} is running under an unprivileged user account." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1687 +#: guix-git/doc/guix.texi:1704 #, no-wrap msgid "--log-compression=@var{type}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1690 +#: guix-git/doc/guix.texi:1707 msgid "Compress build logs according to @var{type}, one of @code{gzip}, @code{bzip2}, or @code{none}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1694 -msgid "Unless @option{--lose-logs} is used, all the build logs are kept in the @var{localstatedir}. To save space, the daemon automatically compresses them with Bzip2 by default." +#: guix-git/doc/guix.texi:1711 +msgid "Unless @option{--lose-logs} is used, all the build logs are kept in the @var{localstatedir}. To save space, the daemon automatically compresses them with gzip by default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1695 +#: guix-git/doc/guix.texi:1712 #, no-wrap msgid "--discover[=yes|no]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1698 guix-git/doc/guix.texi:16563 +#: guix-git/doc/guix.texi:1715 guix-git/doc/guix.texi:16920 msgid "Whether to discover substitute servers on the local network using mDNS and DNS-SD." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1701 +#: guix-git/doc/guix.texi:1718 msgid "This feature is still experimental. However, here are a few considerations." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1705 +#: guix-git/doc/guix.texi:1722 msgid "It might be faster/less expensive than fetching from remote servers;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1708 +#: guix-git/doc/guix.texi:1725 msgid "There are no security risks, only genuine substitutes will be used (@pxref{Substitute Authentication});" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1712 +#: guix-git/doc/guix.texi:1729 msgid "An attacker advertising @command{guix publish} on your LAN cannot serve you malicious binaries, but they can learn what software you’re installing;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1715 +#: guix-git/doc/guix.texi:1732 msgid "Servers may serve substitute over HTTP, unencrypted, so anyone on the LAN can see what software you’re installing." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1719 +#: guix-git/doc/guix.texi:1736 msgid "It is also possible to enable or disable substitute server discovery at run-time by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1723 +#: guix-git/doc/guix.texi:1740 #, no-wrap msgid "" "herd discover guix-daemon on\n" @@ -6807,237 +6883,237 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1725 +#: guix-git/doc/guix.texi:1742 #, no-wrap msgid "--disable-deduplication" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1726 guix-git/doc/guix.texi:4326 +#: guix-git/doc/guix.texi:1743 guix-git/doc/guix.texi:4344 #, no-wrap msgid "deduplication" msgstr "päällekkäisyyksien poisto" #. type: table -#: guix-git/doc/guix.texi:1728 +#: guix-git/doc/guix.texi:1745 msgid "Disable automatic file ``deduplication'' in the store." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1735 +#: guix-git/doc/guix.texi:1752 msgid "By default, files added to the store are automatically ``deduplicated'': if a newly added file is identical to another one found in the store, the daemon makes the new file a hard link to the other file. This can noticeably reduce disk usage, at the expense of slightly increased input/output load at the end of a build process. This option disables this optimization." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1736 +#: guix-git/doc/guix.texi:1753 #, no-wrap msgid "--gc-keep-outputs[=yes|no]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1739 +#: guix-git/doc/guix.texi:1756 msgid "Tell whether the garbage collector (GC) must keep outputs of live derivations." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1740 guix-git/doc/guix.texi:4139 +#: guix-git/doc/guix.texi:1757 guix-git/doc/guix.texi:4157 #, no-wrap msgid "GC roots" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1741 guix-git/doc/guix.texi:4140 +#: guix-git/doc/guix.texi:1758 guix-git/doc/guix.texi:4158 #, no-wrap msgid "garbage collector roots" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1747 +#: guix-git/doc/guix.texi:1764 msgid "When set to @code{yes}, the GC will keep the outputs of any live derivation available in the store---the @file{.drv} files. The default is @code{no}, meaning that derivation outputs are kept only if they are reachable from a GC root. @xref{Invoking guix gc}, for more on GC roots." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1748 +#: guix-git/doc/guix.texi:1765 #, no-wrap msgid "--gc-keep-derivations[=yes|no]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1751 +#: guix-git/doc/guix.texi:1768 msgid "Tell whether the garbage collector (GC) must keep derivations corresponding to live outputs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1757 +#: guix-git/doc/guix.texi:1774 msgid "When set to @code{yes}, as is the case by default, the GC keeps derivations---i.e., @file{.drv} files---as long as at least one of their outputs is live. This allows users to keep track of the origins of items in their store. Setting it to @code{no} saves a bit of disk space." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1766 +#: guix-git/doc/guix.texi:1783 msgid "In this way, setting @option{--gc-keep-derivations} to @code{yes} causes liveness to flow from outputs to derivations, and setting @option{--gc-keep-outputs} to @code{yes} causes liveness to flow from derivations to outputs. When both are set to @code{yes}, the effect is to keep all the build prerequisites (the sources, compiler, libraries, and other build-time tools) of live objects in the store, regardless of whether these prerequisites are reachable from a GC root. This is convenient for developers since it saves rebuilds or downloads." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1767 +#: guix-git/doc/guix.texi:1784 #, no-wrap msgid "--impersonate-linux-2.6" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1770 +#: guix-git/doc/guix.texi:1787 msgid "On Linux-based systems, impersonate Linux 2.6. This means that the kernel's @command{uname} system call will report 2.6 as the release number." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1773 +#: guix-git/doc/guix.texi:1790 msgid "This might be helpful to build programs that (usually wrongfully) depend on the kernel version number." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1774 +#: guix-git/doc/guix.texi:1791 #, no-wrap msgid "--lose-logs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1777 +#: guix-git/doc/guix.texi:1794 msgid "Do not keep build logs. By default they are kept under @file{@var{localstatedir}/guix/log}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1778 guix-git/doc/guix.texi:4567 -#: guix-git/doc/guix.texi:5846 guix-git/doc/guix.texi:6229 -#: guix-git/doc/guix.texi:6629 guix-git/doc/guix.texi:11505 -#: guix-git/doc/guix.texi:13187 guix-git/doc/guix.texi:13452 -#: guix-git/doc/guix.texi:14129 guix-git/doc/guix.texi:34442 -#: guix-git/doc/guix.texi:35251 +#: guix-git/doc/guix.texi:1795 guix-git/doc/guix.texi:4585 +#: guix-git/doc/guix.texi:5859 guix-git/doc/guix.texi:6272 +#: guix-git/doc/guix.texi:6672 guix-git/doc/guix.texi:11819 +#: guix-git/doc/guix.texi:13544 guix-git/doc/guix.texi:13809 +#: guix-git/doc/guix.texi:14486 guix-git/doc/guix.texi:34881 +#: guix-git/doc/guix.texi:35695 #, no-wrap msgid "--system=@var{system}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1782 +#: guix-git/doc/guix.texi:1799 msgid "Assume @var{system} as the current system type. By default it is the architecture/kernel pair found at configure time, such as @code{x86_64-linux}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1783 guix-git/doc/guix.texi:10747 +#: guix-git/doc/guix.texi:1800 guix-git/doc/guix.texi:11061 #, no-wrap msgid "--listen=@var{endpoint}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1788 +#: guix-git/doc/guix.texi:1805 msgid "Listen for connections on @var{endpoint}. @var{endpoint} is interpreted as the file name of a Unix-domain socket if it starts with @code{/} (slash sign). Otherwise, @var{endpoint} is interpreted as a host name or host name and port to listen to. Here are a few examples:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1790 +#: guix-git/doc/guix.texi:1807 #, no-wrap msgid "--listen=/gnu/var/daemon" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1793 +#: guix-git/doc/guix.texi:1810 msgid "Listen for connections on the @file{/gnu/var/daemon} Unix-domain socket, creating it if needed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1794 +#: guix-git/doc/guix.texi:1811 #, no-wrap msgid "--listen=localhost" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1795 guix-git/doc/guix.texi:9421 +#: guix-git/doc/guix.texi:1812 guix-git/doc/guix.texi:9735 #, no-wrap msgid "daemon, remote access" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1796 guix-git/doc/guix.texi:9422 +#: guix-git/doc/guix.texi:1813 guix-git/doc/guix.texi:9736 #, no-wrap msgid "remote access to the daemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1797 guix-git/doc/guix.texi:9423 +#: guix-git/doc/guix.texi:1814 guix-git/doc/guix.texi:9737 #, no-wrap msgid "daemon, cluster setup" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1798 guix-git/doc/guix.texi:9424 +#: guix-git/doc/guix.texi:1815 guix-git/doc/guix.texi:9738 #, no-wrap msgid "clusters, daemon setup" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1801 +#: guix-git/doc/guix.texi:1818 msgid "Listen for TCP connections on the network interface corresponding to @code{localhost}, on port 44146." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1802 +#: guix-git/doc/guix.texi:1819 #, no-wrap msgid "--listen=128.0.0.42:1234" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1805 +#: guix-git/doc/guix.texi:1822 msgid "Listen for TCP connections on the network interface corresponding to @code{128.0.0.42}, on port 1234." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1812 +#: guix-git/doc/guix.texi:1829 msgid "This option can be repeated multiple times, in which case @command{guix-daemon} accepts connections on all the specified endpoints. Users can tell client commands what endpoint to connect to by setting the @env{GUIX_DAEMON_SOCKET} environment variable (@pxref{The Store, @env{GUIX_DAEMON_SOCKET}})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:1819 +#: guix-git/doc/guix.texi:1836 msgid "The daemon protocol is @emph{unauthenticated and unencrypted}. Using @option{--listen=@var{host}} is suitable on local networks, such as clusters, where only trusted nodes may connect to the build daemon. In other cases where remote access to the daemon is needed, we recommend using Unix-domain sockets along with SSH." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1824 +#: guix-git/doc/guix.texi:1841 msgid "When @option{--listen} is omitted, @command{guix-daemon} listens for connections on the Unix-domain socket located at @file{@var{localstatedir}/guix/daemon-socket/socket}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1834 +#: guix-git/doc/guix.texi:1851 msgid "When using Guix on top of GNU/Linux distribution other than Guix System---a so-called @dfn{foreign distro}---a few additional steps are needed to get everything in place. Here are some of them." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:1838 +#: guix-git/doc/guix.texi:1855 msgid "locales-and-locpath" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1838 +#: guix-git/doc/guix.texi:1855 #, no-wrap msgid "locales, when not on Guix System" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:1839 guix-git/doc/guix.texi:15770 +#: guix-git/doc/guix.texi:1856 guix-git/doc/guix.texi:16127 #, no-wrap msgid "LOCPATH" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:1840 +#: guix-git/doc/guix.texi:1857 #, no-wrap msgid "GUIX_LOCPATH" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1845 +#: guix-git/doc/guix.texi:1862 msgid "Packages installed @i{via} Guix will not use the locale data of the host system. Instead, you must first install one of the locale packages available with Guix and then define the @env{GUIX_LOCPATH} environment variable:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1849 +#: guix-git/doc/guix.texi:1866 #, no-wrap msgid "" "$ guix install glibc-locales\n" @@ -7045,132 +7121,132 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1855 +#: guix-git/doc/guix.texi:1872 msgid "Note that the @code{glibc-locales} package contains data for all the locales supported by the GNU@tie{}libc and weighs in at around 917@tie{}MiB@. Alternatively, the @code{glibc-utf8-locales} is smaller but limited to a few UTF-8 locales." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1859 +#: guix-git/doc/guix.texi:1876 msgid "The @env{GUIX_LOCPATH} variable plays a role similar to @env{LOCPATH} (@pxref{Locale Names, @env{LOCPATH},, libc, The GNU C Library Reference Manual}). There are two important differences though:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1866 +#: guix-git/doc/guix.texi:1883 msgid "@env{GUIX_LOCPATH} is honored only by the libc in Guix, and not by the libc provided by foreign distros. Thus, using @env{GUIX_LOCPATH} allows you to make sure the programs of the foreign distro will not end up loading incompatible locale data." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1873 +#: guix-git/doc/guix.texi:1890 msgid "libc suffixes each entry of @env{GUIX_LOCPATH} with @code{/X.Y}, where @code{X.Y} is the libc version---e.g., @code{2.22}. This means that, should your Guix profile contain a mixture of programs linked against different libc version, each libc version will only try to load locale data in the right format." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1877 +#: guix-git/doc/guix.texi:1894 msgid "This is important because the locale data format used by different libc versions may be incompatible." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1880 +#: guix-git/doc/guix.texi:1897 #, no-wrap msgid "name service switch, glibc" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1881 +#: guix-git/doc/guix.texi:1898 #, no-wrap msgid "NSS (name service switch), glibc" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1882 +#: guix-git/doc/guix.texi:1899 #, no-wrap msgid "nscd (name service caching daemon)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1883 +#: guix-git/doc/guix.texi:1900 #, no-wrap msgid "name service caching daemon (nscd)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1890 +#: guix-git/doc/guix.texi:1907 msgid "When using Guix on a foreign distro, we @emph{strongly recommend} that the system run the GNU C library's @dfn{name service cache daemon}, @command{nscd}, which should be listening on the @file{/var/run/nscd/socket} socket. Failing to do that, applications installed with Guix may fail to look up host names or user accounts, or may even crash. The next paragraphs explain why." msgstr "" #. type: file{#1} -#: guix-git/doc/guix.texi:1891 +#: guix-git/doc/guix.texi:1908 #, no-wrap msgid "nsswitch.conf" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1896 +#: guix-git/doc/guix.texi:1913 msgid "The GNU C library implements a @dfn{name service switch} (NSS), which is an extensible mechanism for ``name lookups'' in general: host name resolution, user accounts, and more (@pxref{Name Service Switch,,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1897 +#: guix-git/doc/guix.texi:1914 #, no-wrap msgid "Network information service (NIS)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1898 +#: guix-git/doc/guix.texi:1915 #, no-wrap msgid "NIS (Network information service)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1907 +#: guix-git/doc/guix.texi:1924 msgid "Being extensible, the NSS supports @dfn{plugins}, which provide new name lookup implementations: for example, the @code{nss-mdns} plugin allow resolution of @code{.local} host names, the @code{nis} plugin allows user account lookup using the Network information service (NIS), and so on. These extra ``lookup services'' are configured system-wide in @file{/etc/nsswitch.conf}, and all the programs running on the system honor those settings (@pxref{NSS Configuration File,,, libc, The GNU C Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1917 +#: guix-git/doc/guix.texi:1934 msgid "When they perform a name lookup---for instance by calling the @code{getaddrinfo} function in C---applications first try to connect to the nscd; on success, nscd performs name lookups on their behalf. If the nscd is not running, then they perform the name lookup by themselves, by loading the name lookup services into their own address space and running it. These name lookup services---the @file{libnss_*.so} files---are @code{dlopen}'d, but they may come from the host system's C library, rather than from the C library the application is linked against (the C library coming from Guix)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1922 +#: guix-git/doc/guix.texi:1939 msgid "And this is where the problem is: if your application is linked against Guix's C library (say, glibc 2.24) and tries to load NSS plugins from another C library (say, @code{libnss_mdns.so} for glibc 2.22), it will likely crash or have its name lookups fail unexpectedly." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1927 +#: guix-git/doc/guix.texi:1944 msgid "Running @command{nscd} on the system, among other advantages, eliminates this binary incompatibility problem because those @code{libnss_*.so} files are loaded in the @command{nscd} process, not in applications themselves." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:1928 +#: guix-git/doc/guix.texi:1945 #, no-wrap msgid "X11 Fonts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1938 +#: guix-git/doc/guix.texi:1955 msgid "The majority of graphical applications use Fontconfig to locate and load fonts and perform X11-client-side rendering. The @code{fontconfig} package in Guix looks for fonts in @file{$HOME/.guix-profile} by default. Thus, to allow graphical applications installed with Guix to display fonts, you have to install fonts with Guix as well. Essential font packages include @code{font-ghostscript}, @code{font-dejavu}, and @code{font-gnu-freefont}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1939 +#: guix-git/doc/guix.texi:1956 #, no-wrap msgid "fc-cache" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1940 +#: guix-git/doc/guix.texi:1957 #, no-wrap msgid "font cache" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1944 +#: guix-git/doc/guix.texi:1961 msgid "Once you have installed or removed fonts, or when you notice an application that does not find fonts, you may need to install Fontconfig and to force an update of its font cache by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1948 +#: guix-git/doc/guix.texi:1965 #, no-wrap msgid "" "guix install fontconfig\n" @@ -7178,266 +7254,266 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1956 +#: guix-git/doc/guix.texi:1973 msgid "To display text written in Chinese languages, Japanese, or Korean in graphical applications, consider installing @code{font-adobe-source-han-sans} or @code{font-wqy-zenhei}. The former has multiple outputs, one per language family (@pxref{Packages with Multiple Outputs}). For instance, the following command installs fonts for Chinese languages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1959 +#: guix-git/doc/guix.texi:1976 #, no-wrap msgid "guix install font-adobe-source-han-sans:cn\n" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1961 +#: guix-git/doc/guix.texi:1978 #, no-wrap msgid "xterm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1965 +#: guix-git/doc/guix.texi:1982 msgid "Older programs such as @command{xterm} do not use Fontconfig and instead rely on server-side font rendering. Such programs require to specify a full name of a font using XLFD (X Logical Font Description), like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1968 +#: guix-git/doc/guix.texi:1985 #, no-wrap msgid "-*-dejavu sans-medium-r-normal-*-*-100-*-*-*-*-*-1\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1972 +#: guix-git/doc/guix.texi:1989 msgid "To be able to use such full names for the TrueType fonts installed in your Guix profile, you need to extend the font path of the X server:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1977 +#: guix-git/doc/guix.texi:1994 #, no-wrap msgid "xset +fp $(dirname $(readlink -f ~/.guix-profile/share/fonts/truetype/fonts.dir))\n" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1979 +#: guix-git/doc/guix.texi:1996 #, no-wrap msgid "xlsfonts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1982 +#: guix-git/doc/guix.texi:1999 msgid "After that, you can run @code{xlsfonts} (from @code{xlsfonts} package) to make sure your TrueType fonts are listed there." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1986 guix-git/doc/guix.texi:34161 +#: guix-git/doc/guix.texi:2003 guix-git/doc/guix.texi:34600 #, no-wrap msgid "nss-certs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1989 +#: guix-git/doc/guix.texi:2006 msgid "The @code{nss-certs} package provides X.509 certificates, which allow programs to authenticate Web servers accessed over HTTPS." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1994 +#: guix-git/doc/guix.texi:2011 msgid "When using Guix on a foreign distro, you can install this package and define the relevant environment variables so that packages know where to look for certificates. @xref{X.509 Certificates}, for detailed information." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1997 +#: guix-git/doc/guix.texi:2014 #, no-wrap msgid "emacs" msgstr "Emacs" #. type: Plain text -#: guix-git/doc/guix.texi:2003 +#: guix-git/doc/guix.texi:2020 msgid "When you install Emacs packages with Guix, the Elisp files are placed under the @file{share/emacs/site-lisp/} directory of the profile in which they are installed. The Elisp libraries are made available to Emacs through the @env{EMACSLOADPATH} environment variable, which is set when installing Emacs itself." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2010 +#: guix-git/doc/guix.texi:2027 msgid "Additionally, autoload definitions are automatically evaluated at the initialization of Emacs, by the Guix-specific @code{guix-emacs-autoload-packages} procedure. If, for some reason, you want to avoid auto-loading the Emacs packages installed with Guix, you can do so by running Emacs with the @option{--no-site-file} option (@pxref{Init File,,, emacs, The GNU Emacs Manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2015 +#: guix-git/doc/guix.texi:2032 #, no-wrap msgid "Upgrading Guix, on a foreign distro" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2018 +#: guix-git/doc/guix.texi:2035 msgid "To upgrade Guix, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2021 guix-git/doc/guix.texi:2879 +#: guix-git/doc/guix.texi:2038 guix-git/doc/guix.texi:2896 #, no-wrap msgid "guix pull\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2024 +#: guix-git/doc/guix.texi:2041 msgid "@xref{Invoking guix pull}, for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2025 +#: guix-git/doc/guix.texi:2042 #, no-wrap msgid "upgrading Guix for the root user, on a foreign distro" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2026 +#: guix-git/doc/guix.texi:2043 #, no-wrap msgid "upgrading the Guix daemon, on a foreign distro" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2027 +#: guix-git/doc/guix.texi:2044 #, no-wrap msgid "@command{guix pull} for the root user, on a foreign distro" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2030 +#: guix-git/doc/guix.texi:2047 msgid "On a foreign distro, you can upgrade the build daemon by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2033 +#: guix-git/doc/guix.texi:2050 #, no-wrap msgid "sudo -i guix pull\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2038 +#: guix-git/doc/guix.texi:2055 msgid "followed by (assuming your distro uses the systemd service management tool):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2041 +#: guix-git/doc/guix.texi:2058 #, no-wrap msgid "systemctl restart guix-daemon.service\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2045 +#: guix-git/doc/guix.texi:2062 msgid "On Guix System, upgrading the daemon is achieved by reconfiguring the system (@pxref{Invoking guix system, @code{guix system reconfigure}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2052 +#: guix-git/doc/guix.texi:2069 #, no-wrap msgid "installing Guix System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2053 +#: guix-git/doc/guix.texi:2070 #, no-wrap msgid "Guix System, installation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2058 +#: guix-git/doc/guix.texi:2075 msgid "This section explains how to install Guix System on a machine. Guix, as a package manager, can also be installed on top of a running GNU/Linux system, @pxref{Installation}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2067 +#: guix-git/doc/guix.texi:2084 msgid "You are reading this documentation with an Info reader. For details on how to use it, hit the @key{RET} key (``return'' or ``enter'') on the link that follows: @pxref{Top, Info reader,, info-stnd, Stand-alone GNU Info}. Hit @kbd{l} afterwards to come back here." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2070 +#: guix-git/doc/guix.texi:2087 msgid "Alternatively, run @command{info info} in another tty to keep the manual available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2091 +#: guix-git/doc/guix.texi:2108 msgid "We consider Guix System to be ready for a wide range of ``desktop'' and server use cases. The reliability guarantees it provides---transactional upgrades and rollbacks, reproducibility---make it a solid foundation." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2094 +#: guix-git/doc/guix.texi:2111 msgid "Nevertheless, before you proceed with the installation, be aware of the following noteworthy limitations applicable to version @value{VERSION}:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2099 +#: guix-git/doc/guix.texi:2116 msgid "More and more system services are provided (@pxref{Services}), but some may be missing." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2104 +#: guix-git/doc/guix.texi:2121 msgid "GNOME, Xfce, LXDE, and Enlightenment are available (@pxref{Desktop Services}), as well as a number of X11 window managers. However, KDE is currently missing." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2109 +#: guix-git/doc/guix.texi:2126 msgid "More than a disclaimer, this is an invitation to report issues (and success stories!), and to join us in improving it. @xref{Contributing}, for more info." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2114 +#: guix-git/doc/guix.texi:2131 #, no-wrap msgid "hardware support on Guix System" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2123 +#: guix-git/doc/guix.texi:2140 msgid "GNU@tie{}Guix focuses on respecting the user's computing freedom. It builds around the kernel Linux-libre, which means that only hardware for which free software drivers and firmware exist is supported. Nowadays, a wide range of off-the-shelf hardware is supported on GNU/Linux-libre---from keyboards to graphics cards to scanners and Ethernet controllers. Unfortunately, there are still areas where hardware vendors deny users control over their own computing, and such hardware is not supported on Guix System." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2124 +#: guix-git/doc/guix.texi:2141 #, no-wrap msgid "WiFi, hardware support" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2133 +#: guix-git/doc/guix.texi:2150 msgid "One of the main areas where free drivers or firmware are lacking is WiFi devices. WiFi devices known to work include those using Atheros chips (AR9271 and AR7010), which corresponds to the @code{ath9k} Linux-libre driver, and those using Broadcom/AirForce chips (BCM43xx with Wireless-Core Revision 5), which corresponds to the @code{b43-open} Linux-libre driver. Free firmware exists for both and is available out-of-the-box on Guix System, as part of @code{%base-firmware} (@pxref{operating-system Reference, @code{firmware}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2134 +#: guix-git/doc/guix.texi:2151 #, no-wrap msgid "RYF, Respects Your Freedom" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2140 +#: guix-git/doc/guix.texi:2157 msgid "The @uref{https://www.fsf.org/, Free Software Foundation} runs @uref{https://www.fsf.org/ryf, @dfn{Respects Your Freedom}} (RYF), a certification program for hardware products that respect your freedom and your privacy and ensure that you have control over your device. We encourage you to check the list of RYF-certified devices." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2144 +#: guix-git/doc/guix.texi:2161 msgid "Another useful resource is the @uref{https://www.h-node.org/, H-Node} web site. It contains a catalog of hardware devices with information about their support in GNU/Linux." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2153 +#: guix-git/doc/guix.texi:2170 msgid "An ISO-9660 installation image that can be written to a USB stick or burnt to a DVD can be downloaded from @indicateurl{@value{BASE-URL}/guix-system-install-@value{VERSION}.x86_64-linux.iso}, where you can replace @code{x86_64-linux} with one of:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2157 +#: guix-git/doc/guix.texi:2174 msgid "for a GNU/Linux system on Intel/AMD-compatible 64-bit CPUs;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2160 +#: guix-git/doc/guix.texi:2177 msgid "for a 32-bit GNU/Linux system on Intel-compatible CPUs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2165 +#: guix-git/doc/guix.texi:2182 msgid "Make sure to download the associated @file{.sig} file and to verify the authenticity of the image against it, along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2169 +#: guix-git/doc/guix.texi:2186 #, no-wrap msgid "" "$ wget @value{BASE-URL}/guix-system-install-@value{VERSION}.x86_64-linux.iso.sig\n" @@ -7445,7 +7521,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2177 +#: guix-git/doc/guix.texi:2194 #, no-wrap msgid "" "$ wget @value{OPENPGP-SIGNING-KEY-URL} \\\n" @@ -7453,23 +7529,23 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2189 +#: guix-git/doc/guix.texi:2206 msgid "This image contains the tools necessary for an installation. It is meant to be copied @emph{as is} to a large-enough USB stick or DVD." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2190 +#: guix-git/doc/guix.texi:2207 #, no-wrap msgid "Copying to a USB Stick" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2195 +#: guix-git/doc/guix.texi:2212 msgid "Insert a USB stick of 1@tie{}GiB or more into your machine, and determine its device name. Assuming that the USB stick is known as @file{/dev/sdX}, copy the image with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2199 +#: guix-git/doc/guix.texi:2216 #, no-wrap msgid "" "dd if=guix-system-install-@value{VERSION}.x86_64-linux.iso of=/dev/sdX status=progress\n" @@ -7477,238 +7553,238 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2202 +#: guix-git/doc/guix.texi:2219 msgid "Access to @file{/dev/sdX} usually requires root privileges." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2203 +#: guix-git/doc/guix.texi:2220 #, no-wrap msgid "Burning on a DVD" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2208 +#: guix-git/doc/guix.texi:2225 msgid "Insert a blank DVD into your machine, and determine its device name. Assuming that the DVD drive is known as @file{/dev/srX}, copy the image with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2211 +#: guix-git/doc/guix.texi:2228 #, no-wrap msgid "growisofs -dvd-compat -Z /dev/srX=guix-system-install-@value{VERSION}.x86_64-linux.iso\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2214 +#: guix-git/doc/guix.texi:2231 msgid "Access to @file{/dev/srX} usually requires root privileges." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2215 +#: guix-git/doc/guix.texi:2232 #, no-wrap msgid "Booting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2222 +#: guix-git/doc/guix.texi:2239 msgid "Once this is done, you should be able to reboot the system and boot from the USB stick or DVD@. The latter usually requires you to get in the BIOS or UEFI boot menu, where you can choose to boot from the USB stick. In order to boot from Libreboot, switch to the command mode by pressing the @kbd{c} key and type @command{search_grub usb}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2225 +#: guix-git/doc/guix.texi:2242 msgid "@xref{Installing Guix in a VM}, if, instead, you would like to install Guix System in a virtual machine (VM)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2235 +#: guix-git/doc/guix.texi:2252 msgid "Once you have booted, you can use the guided graphical installer, which makes it easy to get started (@pxref{Guided Graphical Installation}). Alternatively, if you are already familiar with GNU/Linux and if you want more control than what the graphical installer provides, you can choose the ``manual'' installation process (@pxref{Manual Installation})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2243 +#: guix-git/doc/guix.texi:2260 msgid "The graphical installer is available on TTY1. You can obtain root shells on TTYs 3 to 6 by hitting @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4}, etc. TTY2 shows this documentation and you can reach it with @kbd{ctrl-alt-f2}. Documentation is browsable using the Info reader commands (@pxref{Top,,, info-stnd, Stand-alone GNU Info}). The installation system runs the GPM mouse daemon, which allows you to select text with the left mouse button and to paste it with the middle button." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2248 +#: guix-git/doc/guix.texi:2265 msgid "Installation requires access to the Internet so that any missing dependencies of your system configuration can be downloaded. See the ``Networking'' section below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2255 +#: guix-git/doc/guix.texi:2272 msgid "The graphical installer is a text-based user interface. It will guide you, with dialog boxes, through the steps needed to install GNU@tie{}Guix System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2260 +#: guix-git/doc/guix.texi:2277 msgid "The first dialog boxes allow you to set up the system as you use it during the installation: you can choose the language, keyboard layout, and set up networking, which will be used during the installation. The image below shows the networking dialog." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2262 +#: guix-git/doc/guix.texi:2279 msgid "@image{images/installer-network,5in,, networking setup with the graphical installer}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2267 +#: guix-git/doc/guix.texi:2284 msgid "Later steps allow you to partition your hard disk, as shown in the image below, to choose whether or not to use encrypted file systems, to enter the host name and root password, and to create an additional account, among other things." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2269 +#: guix-git/doc/guix.texi:2286 msgid "@image{images/installer-partitions,5in,, partitioning with the graphical installer}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2272 +#: guix-git/doc/guix.texi:2289 msgid "Note that, at any time, the installer allows you to exit the current installation step and resume at a previous step, as show in the image below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2274 +#: guix-git/doc/guix.texi:2291 msgid "@image{images/installer-resume,5in,, resuming the installation process}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2279 +#: guix-git/doc/guix.texi:2296 msgid "Once you're done, the installer produces an operating system configuration and displays it (@pxref{Using the Configuration System}). At that point you can hit ``OK'' and installation will proceed. On success, you can reboot into the new system and enjoy. @xref{After System Installation}, for what's next!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2289 +#: guix-git/doc/guix.texi:2306 msgid "This section describes how you would ``manually'' install GNU@tie{}Guix System on your machine. This option requires familiarity with GNU/Linux, with the shell, and with common administration tools. If you think this is not for you, consider using the guided graphical installer (@pxref{Guided Graphical Installation})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2295 +#: guix-git/doc/guix.texi:2312 msgid "The installation system provides root shells on TTYs 3 to 6; press @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4}, and so on to reach them. It includes many common tools needed to install the system. But it is also a full-blown Guix System, which means that you can install additional packages, should you need it, using @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:2302 +#: guix-git/doc/guix.texi:2319 #, no-wrap msgid "Keyboard Layout, Networking, and Partitioning" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2307 +#: guix-git/doc/guix.texi:2324 msgid "Before you can install the system, you may want to adjust the keyboard layout, set up networking, and partition your target hard disk. This section will guide you through this." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2310 guix-git/doc/guix.texi:15584 +#: guix-git/doc/guix.texi:2327 guix-git/doc/guix.texi:15941 #, no-wrap msgid "keyboard layout" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2314 +#: guix-git/doc/guix.texi:2331 msgid "The installation image uses the US qwerty keyboard layout. If you want to change it, you can use the @command{loadkeys} command. For example, the following command selects the Dvorak keyboard layout:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2317 +#: guix-git/doc/guix.texi:2334 #, no-wrap msgid "loadkeys dvorak\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2322 +#: guix-git/doc/guix.texi:2339 msgid "See the files under @file{/run/current-system/profile/share/keymaps} for a list of available keyboard layouts. Run @command{man loadkeys} for more information." msgstr "" #. type: subsubsection -#: guix-git/doc/guix.texi:2323 +#: guix-git/doc/guix.texi:2340 #, no-wrap msgid "Networking" msgstr "Verkko" #. type: Plain text -#: guix-git/doc/guix.texi:2326 +#: guix-git/doc/guix.texi:2343 msgid "Run the following command to see what your network interfaces are called:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2329 +#: guix-git/doc/guix.texi:2346 #, no-wrap msgid "ifconfig -a\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2333 guix-git/doc/guix.texi:2355 +#: guix-git/doc/guix.texi:2350 guix-git/doc/guix.texi:2372 msgid "@dots{} or, using the GNU/Linux-specific @command{ip} command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2336 +#: guix-git/doc/guix.texi:2353 #, no-wrap msgid "ip address\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2343 +#: guix-git/doc/guix.texi:2360 msgid "Wired interfaces have a name starting with @samp{e}; for example, the interface corresponding to the first on-board Ethernet controller is called @samp{eno1}. Wireless interfaces have a name starting with @samp{w}, like @samp{w1p2s0}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:2345 +#: guix-git/doc/guix.texi:2362 #, no-wrap msgid "Wired connection" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2348 +#: guix-git/doc/guix.texi:2365 msgid "To configure a wired network run the following command, substituting @var{interface} with the name of the wired interface you want to use." msgstr "" #. type: example -#: guix-git/doc/guix.texi:2351 +#: guix-git/doc/guix.texi:2368 #, no-wrap msgid "ifconfig @var{interface} up\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2358 +#: guix-git/doc/guix.texi:2375 #, no-wrap msgid "ip link set @var{interface} up\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:2360 +#: guix-git/doc/guix.texi:2377 #, no-wrap msgid "Wireless connection" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2361 guix-git/doc/guix.texi:17484 +#: guix-git/doc/guix.texi:2378 guix-git/doc/guix.texi:17846 #, no-wrap msgid "wireless" msgstr "langaton" #. type: cindex -#: guix-git/doc/guix.texi:2362 guix-git/doc/guix.texi:17485 +#: guix-git/doc/guix.texi:2379 guix-git/doc/guix.texi:17847 #, no-wrap msgid "WiFi" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2367 +#: guix-git/doc/guix.texi:2384 msgid "To configure wireless networking, you can create a configuration file for the @command{wpa_supplicant} configuration tool (its location is not important) using one of the available text editors such as @command{nano}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2370 +#: guix-git/doc/guix.texi:2387 #, no-wrap msgid "nano wpa_supplicant.conf\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2375 +#: guix-git/doc/guix.texi:2392 msgid "As an example, the following stanza can go to this file and will work for many wireless networks, provided you give the actual SSID and passphrase for the network you are connecting to:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2382 +#: guix-git/doc/guix.texi:2399 #, no-wrap msgid "" "network=@{\n" @@ -7719,229 +7795,229 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2387 +#: guix-git/doc/guix.texi:2404 msgid "Start the wireless service and run it in the background with the following command (substitute @var{interface} with the name of the network interface you want to use):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2390 +#: guix-git/doc/guix.texi:2407 #, no-wrap msgid "wpa_supplicant -c wpa_supplicant.conf -i @var{interface} -B\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2393 +#: guix-git/doc/guix.texi:2410 msgid "Run @command{man wpa_supplicant} for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2395 +#: guix-git/doc/guix.texi:2412 #, no-wrap msgid "DHCP" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2398 +#: guix-git/doc/guix.texi:2415 msgid "At this point, you need to acquire an IP address. On a network where IP addresses are automatically assigned @i{via} DHCP, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2401 +#: guix-git/doc/guix.texi:2418 #, no-wrap msgid "dhclient -v @var{interface}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2404 +#: guix-git/doc/guix.texi:2421 msgid "Try to ping a server to see if networking is up and running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2407 +#: guix-git/doc/guix.texi:2424 #, no-wrap msgid "ping -c 3 gnu.org\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2411 +#: guix-git/doc/guix.texi:2428 msgid "Setting up network access is almost always a requirement because the image does not contain all the software and tools that may be needed." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2412 +#: guix-git/doc/guix.texi:2429 #, no-wrap msgid "proxy, during system installation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2415 +#: guix-git/doc/guix.texi:2432 msgid "If you need HTTP and HTTPS access to go through a proxy, run the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2418 +#: guix-git/doc/guix.texi:2435 #, no-wrap msgid "herd set-http-proxy guix-daemon @var{URL}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2423 +#: guix-git/doc/guix.texi:2440 msgid "where @var{URL} is the proxy URL, for example @code{http://example.org:8118}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2424 +#: guix-git/doc/guix.texi:2441 #, no-wrap msgid "installing over SSH" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2427 +#: guix-git/doc/guix.texi:2444 msgid "If you want to, you can continue the installation remotely by starting an SSH server:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2430 +#: guix-git/doc/guix.texi:2447 #, no-wrap msgid "herd start ssh-daemon\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2434 +#: guix-git/doc/guix.texi:2451 msgid "Make sure to either set a password with @command{passwd}, or configure OpenSSH public key authentication before logging in." msgstr "" #. type: subsubsection -#: guix-git/doc/guix.texi:2435 +#: guix-git/doc/guix.texi:2452 #, no-wrap msgid "Disk Partitioning" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2439 +#: guix-git/doc/guix.texi:2456 msgid "Unless this has already been done, the next step is to partition, and then format the target partition(s)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2444 +#: guix-git/doc/guix.texi:2461 msgid "The installation image includes several partitioning tools, including Parted (@pxref{Overview,,, parted, GNU Parted User Manual}), @command{fdisk}, and @command{cfdisk}. Run it and set up your disk with the partition layout you want:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2447 +#: guix-git/doc/guix.texi:2464 #, no-wrap msgid "cfdisk\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2453 +#: guix-git/doc/guix.texi:2470 msgid "If your disk uses the GUID Partition Table (GPT) format and you plan to install BIOS-based GRUB (which is the default), make sure a BIOS Boot Partition is available (@pxref{BIOS installation,,, grub, GNU GRUB manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2454 +#: guix-git/doc/guix.texi:2471 #, no-wrap msgid "EFI, installation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2455 +#: guix-git/doc/guix.texi:2472 #, no-wrap msgid "UEFI, installation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2456 +#: guix-git/doc/guix.texi:2473 #, no-wrap msgid "ESP, EFI system partition" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2460 +#: guix-git/doc/guix.texi:2477 msgid "If you instead wish to use EFI-based GRUB, a FAT32 @dfn{EFI System Partition} (ESP) is required. This partition can be mounted at @file{/boot/efi} for instance and must have the @code{esp} flag set. E.g., for @command{parted}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2463 +#: guix-git/doc/guix.texi:2480 #, no-wrap msgid "parted /dev/sda set 1 esp on\n" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:2466 guix-git/doc/guix.texi:34580 +#: guix-git/doc/guix.texi:2483 guix-git/doc/guix.texi:35019 #, no-wrap msgid "grub-bootloader" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:2467 guix-git/doc/guix.texi:34574 +#: guix-git/doc/guix.texi:2484 guix-git/doc/guix.texi:35013 #, no-wrap msgid "grub-efi-bootloader" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2474 +#: guix-git/doc/guix.texi:2491 msgid "Unsure whether to use EFI- or BIOS-based GRUB? If the directory @file{/sys/firmware/efi} exists in the installation image, then you should probably perform an EFI installation, using @code{grub-efi-bootloader}. Otherwise you should use the BIOS-based GRUB, known as @code{grub-bootloader}. @xref{Bootloader Configuration}, for more info on bootloaders." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2482 +#: guix-git/doc/guix.texi:2499 msgid "Once you are done partitioning the target hard disk drive, you have to create a file system on the relevant partition(s)@footnote{Currently Guix System only supports ext4, btrfs, JFS, F2FS, and XFS file systems. In particular, code that reads file system UUIDs and labels only works for these file system types.}. For the ESP, if you have one and assuming it is @file{/dev/sda1}, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2485 +#: guix-git/doc/guix.texi:2502 #, no-wrap msgid "mkfs.fat -F32 /dev/sda1\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2492 +#: guix-git/doc/guix.texi:2509 msgid "For the root file system, ext4 is the most widely used format. Other file systems, such as Btrfs, support compression, which is reported to nicely complement file deduplication that the daemon performs independently of the file system (@pxref{Invoking guix-daemon, deduplication})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2499 +#: guix-git/doc/guix.texi:2516 msgid "Preferably, assign file systems a label so that you can easily and reliably refer to them in @code{file-system} declarations (@pxref{File Systems}). This is typically done using the @code{-L} option of @command{mkfs.ext4} and related commands. So, assuming the target root partition lives at @file{/dev/sda2}, a file system with the label @code{my-root} can be created with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2502 +#: guix-git/doc/guix.texi:2519 #, no-wrap msgid "mkfs.ext4 -L my-root /dev/sda2\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2504 guix-git/doc/guix.texi:14475 +#: guix-git/doc/guix.texi:2521 guix-git/doc/guix.texi:14832 #, no-wrap msgid "encrypted disk" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2509 +#: guix-git/doc/guix.texi:2526 msgid "If you are instead planning to encrypt the root partition, you can use the Cryptsetup/LUKS utilities to do that (see @inlinefmtifelse{html, @uref{https://linux.die.net/man/8/cryptsetup, @code{man cryptsetup}}, @code{man cryptsetup}} for more information)." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2510 guix-git/doc/guix.texi:5280 -#: guix-git/doc/guix.texi:6489 guix-git/doc/guix.texi:14601 -#: guix-git/doc/guix.texi:21013 guix-git/doc/guix.texi:21020 +#: guix-git/doc/guix.texi:2527 guix-git/doc/guix.texi:5298 +#: guix-git/doc/guix.texi:6532 guix-git/doc/guix.texi:14958 +#: guix-git/doc/guix.texi:21375 guix-git/doc/guix.texi:21382 #, no-wrap msgid "Warning" msgstr "Varoitus" #. type: quotation -#: guix-git/doc/guix.texi:2517 +#: guix-git/doc/guix.texi:2534 msgid "Note that GRUB can unlock LUKS2 devices since version 2.06, but only supports the PBKDF2 key derivation function, which is not the default for @command{cryptsetup luksFormat}. You can check which key derivation function is being used by a device by running @command{cryptsetup luksDump @var{device}}, and looking for the PBKDF field of your keyslots." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2522 +#: guix-git/doc/guix.texi:2539 msgid "Assuming you want to store the root partition on @file{/dev/sda2}, the command sequence to format it as a LUKS2 partition would be along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2527 +#: guix-git/doc/guix.texi:2544 #, no-wrap msgid "" "cryptsetup luksFormat --type luks2 --pbkdf pbkdf2 /dev/sda2\n" @@ -7950,28 +8026,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2532 +#: guix-git/doc/guix.texi:2549 msgid "Once that is done, mount the target file system under @file{/mnt} with a command like (again, assuming @code{my-root} is the label of the root file system):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2535 +#: guix-git/doc/guix.texi:2552 #, no-wrap msgid "mount LABEL=my-root /mnt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2541 +#: guix-git/doc/guix.texi:2558 msgid "Also mount any other file systems you would like to use on the target system relative to this path. If you have opted for @file{/boot/efi} as an EFI mount point for example, mount it at @file{/mnt/boot/efi} now so it is found by @code{guix system init} afterwards." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2545 +#: guix-git/doc/guix.texi:2562 msgid "Finally, if you plan to use one or more swap partitions (@pxref{Swap Space}), make sure to initialize them with @command{mkswap}. Assuming you have one swap partition on @file{/dev/sda3}, you would run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2549 +#: guix-git/doc/guix.texi:2566 #, no-wrap msgid "" "mkswap /dev/sda3\n" @@ -7979,12 +8055,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2557 +#: guix-git/doc/guix.texi:2574 msgid "Alternatively, you may use a swap file. For example, assuming that in the new system you want to use the file @file{/swapfile} as a swap file, you would run@footnote{This example will work for many types of file systems (e.g., ext4). However, for copy-on-write file systems (e.g., btrfs), the required steps may be different. For details, see the manual pages for @command{mkswap} and @command{swapon}.}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2565 +#: guix-git/doc/guix.texi:2582 #, no-wrap msgid "" "# This is 10 GiB of swap space. Adjust \"count\" to change the size.\n" @@ -7996,38 +8072,38 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2570 +#: guix-git/doc/guix.texi:2587 msgid "Note that if you have encrypted the root partition and created a swap file in its file system as described above, then the encryption also protects the swap file, just like any other file in that file system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2576 +#: guix-git/doc/guix.texi:2593 msgid "With the target partitions ready and the target root mounted on @file{/mnt}, we're ready to go. First, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2579 +#: guix-git/doc/guix.texi:2596 #, no-wrap msgid "herd start cow-store /mnt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2586 +#: guix-git/doc/guix.texi:2603 msgid "This makes @file{/gnu/store} copy-on-write, such that packages added to it during the installation phase are written to the target disk on @file{/mnt} rather than kept in memory. This is necessary because the first phase of the @command{guix system init} command (see below) entails downloads or builds to @file{/gnu/store} which, initially, is an in-memory file system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2597 +#: guix-git/doc/guix.texi:2614 msgid "Next, you have to edit a file and provide the declaration of the operating system to be installed. To that end, the installation system comes with three text editors. We recommend GNU nano (@pxref{Top,,, nano, GNU nano Manual}), which supports syntax highlighting and parentheses matching; other editors include mg (an Emacs clone), and nvi (a clone of the original BSD @command{vi} editor). We strongly recommend storing that file on the target root file system, say, as @file{/mnt/etc/config.scm}. Failing to do that, you will have lost your configuration file once you have rebooted into the newly-installed system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2604 +#: guix-git/doc/guix.texi:2621 msgid "@xref{Using the Configuration System}, for an overview of the configuration file. The example configurations discussed in that section are available under @file{/etc/configuration} in the installation image. Thus, to get started with a system configuration providing a graphical display server (a ``desktop'' system), you can run something along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2609 +#: guix-git/doc/guix.texi:2626 #, no-wrap msgid "" "# mkdir /mnt/etc\n" @@ -8036,53 +8112,53 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2613 +#: guix-git/doc/guix.texi:2630 msgid "You should pay attention to what your configuration file contains, and in particular:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2625 +#: guix-git/doc/guix.texi:2642 msgid "Make sure the @code{bootloader-configuration} form refers to the targets you want to install GRUB on. It should mention @code{grub-bootloader} if you are installing GRUB in the legacy way, or @code{grub-efi-bootloader} for newer UEFI systems. For legacy systems, the @code{targets} field contain the names of the devices, like @code{(list \"/dev/sda\")}; for UEFI systems it names the paths to mounted EFI partitions, like @code{(list \"/boot/efi\")}; do make sure the paths are currently mounted and a @code{file-system} entry is specified in your configuration." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2631 +#: guix-git/doc/guix.texi:2648 msgid "Be sure that your file system labels match the value of their respective @code{device} fields in your @code{file-system} configuration, assuming your @code{file-system} configuration uses the @code{file-system-label} procedure in its @code{device} field." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2635 +#: guix-git/doc/guix.texi:2652 msgid "If there are encrypted or RAID partitions, make sure to add a @code{mapped-devices} field to describe them (@pxref{Mapped Devices})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2640 +#: guix-git/doc/guix.texi:2657 msgid "Once you are done preparing the configuration file, the new system must be initialized (remember that the target root file system is mounted under @file{/mnt}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2643 +#: guix-git/doc/guix.texi:2660 #, no-wrap msgid "guix system init /mnt/etc/config.scm /mnt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2650 +#: guix-git/doc/guix.texi:2667 msgid "This copies all the necessary files and installs GRUB on @file{/dev/sdX}, unless you pass the @option{--no-bootloader} option. For more information, @pxref{Invoking guix system}. This command may trigger downloads or builds of missing packages, which can take some time." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2658 +#: guix-git/doc/guix.texi:2675 msgid "Once that command has completed---and hopefully succeeded!---you can run @command{reboot} and boot into the new system. The @code{root} password in the new system is initially empty; other users' passwords need to be initialized by running the @command{passwd} command as @code{root}, unless your configuration specifies otherwise (@pxref{user-account-password, user account passwords}). @xref{After System Installation}, for what's next!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2665 +#: guix-git/doc/guix.texi:2682 msgid "Success, you've now booted into Guix System! From then on, you can update the system whenever you want by running, say:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2669 +#: guix-git/doc/guix.texi:2686 #, no-wrap msgid "" "guix pull\n" @@ -8090,93 +8166,93 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2675 +#: guix-git/doc/guix.texi:2692 msgid "This builds a new system generation with the latest packages and services (@pxref{Invoking guix system}). We recommend doing that regularly so that your system includes the latest security updates (@pxref{Security Updates})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2678 +#: guix-git/doc/guix.texi:2695 #, no-wrap msgid "sudo vs. @command{guix pull}" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2682 +#: guix-git/doc/guix.texi:2699 msgid "Note that @command{sudo guix} runs your user's @command{guix} command and @emph{not} root's, because @command{sudo} leaves @env{PATH} unchanged. To explicitly run root's @command{guix}, type @command{sudo -i guix @dots{}}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2687 +#: guix-git/doc/guix.texi:2704 msgid "The difference matters here, because @command{guix pull} updates the @command{guix} command and package definitions only for the user it is run as. This means that if you choose to use @command{guix system reconfigure} in root's login shell, you'll need to @command{guix pull} separately." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2692 +#: guix-git/doc/guix.texi:2709 msgid "Now, @pxref{Getting Started}, and join us on @code{#guix} on the Libera Chat IRC network or on @email{guix-devel@@gnu.org} to share your experience!" msgstr "" #. type: section -#: guix-git/doc/guix.texi:2695 +#: guix-git/doc/guix.texi:2712 #, no-wrap msgid "Installing Guix in a Virtual Machine" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2697 +#: guix-git/doc/guix.texi:2714 #, no-wrap msgid "virtual machine, Guix System installation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2698 +#: guix-git/doc/guix.texi:2715 #, no-wrap msgid "virtual private server (VPS)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2699 +#: guix-git/doc/guix.texi:2716 #, no-wrap msgid "VPS (virtual private server)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2703 +#: guix-git/doc/guix.texi:2720 msgid "If you'd like to install Guix System in a virtual machine (VM) or on a virtual private server (VPS) rather than on your beloved machine, this section is for you." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2706 +#: guix-git/doc/guix.texi:2723 msgid "To boot a @uref{https://qemu.org/,QEMU} VM for installing Guix System in a disk image, follow these steps:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2711 +#: guix-git/doc/guix.texi:2728 msgid "First, retrieve and decompress the Guix system installation image as described previously (@pxref{USB Stick and DVD Installation})." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2715 +#: guix-git/doc/guix.texi:2732 msgid "Create a disk image that will hold the installed system. To make a qcow2-formatted disk image, use the @command{qemu-img} command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2718 +#: guix-git/doc/guix.texi:2735 #, no-wrap msgid "qemu-img create -f qcow2 guix-system.img 50G\n" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2722 +#: guix-git/doc/guix.texi:2739 msgid "The resulting file will be much smaller than 50 GB (typically less than 1 MB), but it will grow as the virtualized storage device is filled up." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2725 +#: guix-git/doc/guix.texi:2742 msgid "Boot the USB installation image in an VM:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2731 +#: guix-git/doc/guix.texi:2748 #, no-wrap msgid "" "qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \\\n" @@ -8186,115 +8262,115 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2735 +#: guix-git/doc/guix.texi:2752 msgid "@code{-enable-kvm} is optional, but significantly improves performance, @pxref{Running Guix in a VM}." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2739 +#: guix-git/doc/guix.texi:2756 msgid "You're now root in the VM, proceed with the installation process. @xref{Preparing for Installation}, and follow the instructions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2744 +#: guix-git/doc/guix.texi:2761 msgid "Once installation is complete, you can boot the system that's on your @file{guix-system.img} image. @xref{Running Guix in a VM}, for how to do that." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2748 +#: guix-git/doc/guix.texi:2765 #, no-wrap msgid "installation image" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2751 +#: guix-git/doc/guix.texi:2768 msgid "The installation image described above was built using the @command{guix system} command, specifically:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2754 +#: guix-git/doc/guix.texi:2771 #, no-wrap msgid "guix system image -t iso9660 gnu/system/install.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2759 +#: guix-git/doc/guix.texi:2776 msgid "Have a look at @file{gnu/system/install.scm} in the source tree, and see also @ref{Invoking guix system} for more information about the installation image." msgstr "" #. type: section -#: guix-git/doc/guix.texi:2760 +#: guix-git/doc/guix.texi:2777 #, no-wrap msgid "Building the Installation Image for ARM Boards" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2764 +#: guix-git/doc/guix.texi:2781 msgid "Many ARM boards require a specific variant of the @uref{https://www.denx.de/wiki/U-Boot/, U-Boot} bootloader." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2768 +#: guix-git/doc/guix.texi:2785 msgid "If you build a disk image and the bootloader is not available otherwise (on another boot drive etc), it's advisable to build an image that includes the bootloader, specifically:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2771 +#: guix-git/doc/guix.texi:2788 #, no-wrap msgid "guix system image --system=armhf-linux -e '((@@ (gnu system install) os-with-u-boot) (@@ (gnu system install) installation-os) \"A20-OLinuXino-Lime2\")'\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2775 +#: guix-git/doc/guix.texi:2792 msgid "@code{A20-OLinuXino-Lime2} is the name of the board. If you specify an invalid board, a list of possible boards will be printed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2785 +#: guix-git/doc/guix.texi:2802 msgid "Presumably, you've reached this section because either you have installed Guix on top of another distribution (@pxref{Installation}), or you've installed the standalone Guix System (@pxref{System Installation}). It's time for you to get started using Guix and this section aims to help you do that and give you a feel of what it's like." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2789 +#: guix-git/doc/guix.texi:2806 msgid "Guix is about installing software, so probably the first thing you'll want to do is to actually look for software. Let's say you're looking for a text editor, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2792 +#: guix-git/doc/guix.texi:2809 #, no-wrap msgid "guix search text editor\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2799 +#: guix-git/doc/guix.texi:2816 msgid "This command shows you a number of matching @dfn{packages}, each time showing the package's name, version, a description, and additional info. Once you've found out the one you want to use, let's say Emacs (ah ha!), you can go ahead and install it (run this command as a regular user, @emph{no need for root privileges}!):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2802 +#: guix-git/doc/guix.texi:2819 #, no-wrap msgid "guix install emacs\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2804 guix-git/doc/guix.texi:3116 -#: guix-git/doc/guix.texi:3168 +#: guix-git/doc/guix.texi:2821 guix-git/doc/guix.texi:3133 +#: guix-git/doc/guix.texi:3185 #, no-wrap msgid "profile" msgstr "profiili" #. type: Plain text -#: guix-git/doc/guix.texi:2812 +#: guix-git/doc/guix.texi:2829 msgid "You've installed your first package, congrats! The package is now visible in your default @dfn{profile}, @file{$HOME/.guix-profile}---a profile is a directory containing installed packages. In the process, you've probably noticed that Guix downloaded pre-built binaries; or, if you explicitly chose to @emph{not} use pre-built binaries, then probably Guix is still building software (@pxref{Substitutes}, for more info)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2815 +#: guix-git/doc/guix.texi:2832 msgid "Unless you're using Guix System, the @command{guix install} command must have printed this hint:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2818 +#: guix-git/doc/guix.texi:2835 #, no-wrap msgid "" "hint: Consider setting the necessary environment variables by running:\n" @@ -8302,7 +8378,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2821 +#: guix-git/doc/guix.texi:2838 #, no-wrap msgid "" " GUIX_PROFILE=\"$HOME/.guix-profile\"\n" @@ -8311,77 +8387,77 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2823 +#: guix-git/doc/guix.texi:2840 #, no-wrap msgid "Alternately, see `guix package --search-paths -p \"$HOME/.guix-profile\"'.\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2837 +#: guix-git/doc/guix.texi:2854 msgid "Indeed, you must now tell your shell where @command{emacs} and other programs installed with Guix are to be found. Pasting the two lines above will do just that: it will add @code{$HOME/.guix-profile/bin}---which is where the installed package is---to the @code{PATH} environment variable. You can paste these two lines in your shell so they take effect right away, but more importantly you should add them to @file{~/.bash_profile} (or equivalent file if you do not use Bash) so that environment variables are set next time you spawn a shell. You only need to do this once and other search paths environment variables will be taken care of similarly---e.g., if you eventually install @code{python} and Python libraries, @env{GUIX_PYTHONPATH} will be defined." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2840 +#: guix-git/doc/guix.texi:2857 msgid "You can go on installing packages at your will. To list installed packages, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2843 +#: guix-git/doc/guix.texi:2860 #, no-wrap msgid "guix package --list-installed\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2848 +#: guix-git/doc/guix.texi:2865 msgid "To remove a package, you would unsurprisingly run @command{guix remove}. A distinguishing feature is the ability to @dfn{roll back} any operation you made---installation, removal, upgrade---by simply typing:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2851 +#: guix-git/doc/guix.texi:2868 #, no-wrap msgid "guix package --roll-back\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2856 +#: guix-git/doc/guix.texi:2873 msgid "This is because each operation is in fact a @dfn{transaction} that creates a new @dfn{generation}. These generations and the difference between them can be displayed by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2859 +#: guix-git/doc/guix.texi:2876 #, no-wrap msgid "guix package --list-generations\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2862 +#: guix-git/doc/guix.texi:2879 msgid "Now you know the basics of package management!" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2863 guix-git/doc/guix.texi:2922 +#: guix-git/doc/guix.texi:2880 guix-git/doc/guix.texi:2939 #, no-wrap msgid "Going further" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2871 +#: guix-git/doc/guix.texi:2888 msgid "@xref{Package Management}, for more about package management. You may like @dfn{declarative} package management with @command{guix package --manifest}, managing separate @dfn{profiles} with @option{--profile}, deleting old generations, collecting garbage, and other nifty features that will come in handy as you become more familiar with Guix. If you are a developer, @pxref{Development} for additional tools. And if you're curious, @pxref{Features}, to peek under the hood." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2876 +#: guix-git/doc/guix.texi:2893 msgid "Once you've installed a set of packages, you will want to periodically @emph{upgrade} them to the latest and greatest version. To do that, you will first pull the latest revision of Guix and its package collection:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2886 +#: guix-git/doc/guix.texi:2903 msgid "The end result is a new @command{guix} command, under @file{~/.config/guix/current/bin}. Unless you're on Guix System, the first time you run @command{guix pull}, be sure to follow the hint that the command prints and, similar to what we saw above, paste these two lines in your terminal and @file{.bash_profile}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2890 +#: guix-git/doc/guix.texi:2907 #, no-wrap msgid "" "GUIX_PROFILE=\"$HOME/.config/guix/current\"\n" @@ -8389,336 +8465,336 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2894 +#: guix-git/doc/guix.texi:2911 msgid "You must also instruct your shell to point to this new @command{guix}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2897 +#: guix-git/doc/guix.texi:2914 #, no-wrap msgid "hash guix\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2901 +#: guix-git/doc/guix.texi:2918 msgid "At this point, you're running a brand new Guix. You can thus go ahead and actually upgrade all the packages you previously installed:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2904 +#: guix-git/doc/guix.texi:2921 #, no-wrap msgid "guix upgrade\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2910 +#: guix-git/doc/guix.texi:2927 msgid "As you run this command, you will see that binaries are downloaded (or perhaps some packages are built), and eventually you end up with the upgraded packages. Should one of these upgraded packages not be to your liking, remember you can always roll back!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2913 +#: guix-git/doc/guix.texi:2930 msgid "You can display the exact revision of Guix you're currently using by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2916 +#: guix-git/doc/guix.texi:2933 #, no-wrap msgid "guix describe\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2921 +#: guix-git/doc/guix.texi:2938 msgid "The information it displays is @emph{all it takes to reproduce the exact same Guix}, be it at a different point in time or on a different machine." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2927 +#: guix-git/doc/guix.texi:2944 msgid "@xref{Invoking guix pull}, for more information. @xref{Channels}, on how to specify additional @dfn{channels} to pull packages from, how to replicate Guix, and more. You may also find @command{time-machine} handy (@pxref{Invoking guix time-machine})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2932 +#: guix-git/doc/guix.texi:2949 msgid "If you installed Guix System, one of the first things you'll want to do is to upgrade your system. Once you've run @command{guix pull} to get the latest Guix, you can upgrade the system like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2935 +#: guix-git/doc/guix.texi:2952 #, no-wrap msgid "sudo guix system reconfigure /etc/config.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2944 +#: guix-git/doc/guix.texi:2961 msgid "Upon completion, the system runs the latest versions of its software packages. When you eventually reboot, you'll notice a sub-menu in the bootloader that reads ``Old system generations'': it's what allows you to boot @emph{an older generation of your system}, should the latest generation be ``broken'' or otherwise unsatisfying. Just like for packages, you can always @emph{roll back} to a previous generation @emph{of the whole system}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2947 +#: guix-git/doc/guix.texi:2964 #, no-wrap msgid "sudo guix system roll-back\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2954 +#: guix-git/doc/guix.texi:2971 msgid "There are many things you'll probably want to tweak on your system: adding new user accounts, adding new system services, fiddling with the configuration of those services, etc. The system configuration is @emph{entirely} described in the @file{/etc/config.scm} file. @xref{Using the Configuration System}, to learn how to change it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2956 +#: guix-git/doc/guix.texi:2973 msgid "Now you know enough to get started!" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2957 +#: guix-git/doc/guix.texi:2974 #, no-wrap msgid "Resources" msgstr "Resurssit" #. type: quotation -#: guix-git/doc/guix.texi:2960 +#: guix-git/doc/guix.texi:2977 msgid "The rest of this manual provides a reference for all things Guix. Here are some additional resources you may find useful:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2965 +#: guix-git/doc/guix.texi:2982 msgid "@xref{Top,,, guix-cookbook, The GNU Guix Cookbook}, for a list of ``how-to'' style of recipes for a variety of applications." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2970 +#: guix-git/doc/guix.texi:2987 msgid "The @uref{https://guix.gnu.org/guix-refcard.pdf, GNU Guix Reference Card} lists in two pages most of the commands and options you'll ever need." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2975 +#: guix-git/doc/guix.texi:2992 msgid "The web site contains @uref{https://guix.gnu.org/en/videos/, instructional videos} covering topics such as everyday use of Guix, how to get help, and how to become a contributor." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2979 +#: guix-git/doc/guix.texi:2996 msgid "@xref{Documentation}, to learn how to access documentation on your computer." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2982 +#: guix-git/doc/guix.texi:2999 msgid "We hope you will enjoy Guix as much as the community enjoys building it!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2993 +#: guix-git/doc/guix.texi:3010 msgid "The purpose of GNU Guix is to allow users to easily install, upgrade, and remove software packages, without having to know about their build procedures or dependencies. Guix also goes beyond this obvious set of features." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3001 +#: guix-git/doc/guix.texi:3018 msgid "This chapter describes the main features of Guix, as well as the package management tools it provides. Along with the command-line interface described below (@pxref{Invoking guix package, @code{guix package}}), you may also use the Emacs-Guix interface (@pxref{Top,,, emacs-guix, The Emacs-Guix Reference Manual}), after installing @code{emacs-guix} package (run @kbd{M-x guix-help} command to start with it):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3004 +#: guix-git/doc/guix.texi:3021 #, no-wrap msgid "guix install emacs-guix\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3025 +#: guix-git/doc/guix.texi:3042 msgid "Here we assume you've already made your first steps with Guix (@pxref{Getting Started}) and would like to get an overview about what's going on under the hood." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3029 +#: guix-git/doc/guix.texi:3046 msgid "When using Guix, each package ends up in the @dfn{package store}, in its own directory---something that resembles @file{/gnu/store/xxx-package-1.2}, where @code{xxx} is a base32 string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3051 msgid "Instead of referring to these directories, users have their own @dfn{profile}, which points to the packages that they actually want to use. These profiles are stored within each user's home directory, at @code{$HOME/.guix-profile}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3042 +#: guix-git/doc/guix.texi:3059 msgid "For example, @code{alice} installs GCC 4.7.2. As a result, @file{/home/alice/.guix-profile/bin/gcc} points to @file{/gnu/store/@dots{}-gcc-4.7.2/bin/gcc}. Now, on the same machine, @code{bob} had already installed GCC 4.8.0. The profile of @code{bob} simply continues to point to @file{/gnu/store/@dots{}-gcc-4.8.0/bin/gcc}---i.e., both versions of GCC coexist on the same system without any interference." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3046 +#: guix-git/doc/guix.texi:3063 msgid "The @command{guix package} command is the central tool to manage packages (@pxref{Invoking guix package}). It operates on the per-user profiles, and can be used @emph{with normal user privileges}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3047 guix-git/doc/guix.texi:3130 +#: guix-git/doc/guix.texi:3064 guix-git/doc/guix.texi:3147 #, no-wrap msgid "transactions" msgstr "transaktiot" #. type: Plain text -#: guix-git/doc/guix.texi:3054 +#: guix-git/doc/guix.texi:3071 msgid "The command provides the obvious install, remove, and upgrade operations. Each invocation is actually a @emph{transaction}: either the specified operation succeeds, or nothing happens. Thus, if the @command{guix package} process is terminated during the transaction, or if a power outage occurs during the transaction, then the user's profile remains in its previous state, and remains usable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3062 +#: guix-git/doc/guix.texi:3079 msgid "In addition, any package transaction may be @emph{rolled back}. So, if, for example, an upgrade installs a new version of a package that turns out to have a serious bug, users may roll back to the previous instance of their profile, which was known to work well. Similarly, the global system configuration on Guix is subject to transactional upgrades and roll-back (@pxref{Using the Configuration System})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3069 +#: guix-git/doc/guix.texi:3086 msgid "All packages in the package store may be @emph{garbage-collected}. Guix can determine which packages are still referenced by user profiles, and remove those that are provably no longer referenced (@pxref{Invoking guix gc}). Users may also explicitly remove old generations of their profile so that the packages they refer to can be collected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3082 +#: guix-git/doc/guix.texi:3099 msgid "Guix takes a @dfn{purely functional} approach to package management, as described in the introduction (@pxref{Introduction}). Each @file{/gnu/store} package directory name contains a hash of all the inputs that were used to build that package---compiler, libraries, build scripts, etc. This direct correspondence allows users to make sure a given package installation matches the current state of their distribution. It also helps maximize @dfn{build reproducibility}: thanks to the isolated build environments that are used, a given build is likely to yield bit-identical files when performed on different machines (@pxref{Invoking guix-daemon, container})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3093 +#: guix-git/doc/guix.texi:3110 msgid "This foundation allows Guix to support @dfn{transparent binary/source deployment}. When a pre-built binary for a @file{/gnu/store} item is available from an external source---a @dfn{substitute}, Guix just downloads it and unpacks it; otherwise, it builds the package from source, locally (@pxref{Substitutes}). Because build results are usually bit-for-bit reproducible, users do not have to trust servers that provide substitutes: they can force a local build and @emph{challenge} providers (@pxref{Invoking guix challenge})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3099 +#: guix-git/doc/guix.texi:3116 msgid "Control over the build environment is a feature that is also useful for developers. The @command{guix shell} command allows developers of a package to quickly set up the right development environment for their package, without having to manually install the dependencies of the package into their profile (@pxref{Invoking guix shell})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3100 +#: guix-git/doc/guix.texi:3117 #, no-wrap msgid "replication, of software environments" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3101 +#: guix-git/doc/guix.texi:3118 #, no-wrap msgid "provenance tracking, of software artifacts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3108 +#: guix-git/doc/guix.texi:3125 msgid "All of Guix and its package definitions is version-controlled, and @command{guix pull} allows you to ``travel in time'' on the history of Guix itself (@pxref{Invoking guix pull}). This makes it possible to replicate a Guix instance on a different machine or at a later point in time, which in turn allows you to @emph{replicate complete software environments}, while retaining precise @dfn{provenance tracking} of the software." msgstr "" #. type: section -#: guix-git/doc/guix.texi:3110 +#: guix-git/doc/guix.texi:3127 #, no-wrap msgid "Invoking @command{guix package}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3112 +#: guix-git/doc/guix.texi:3129 #, no-wrap msgid "installing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3113 +#: guix-git/doc/guix.texi:3130 #, no-wrap msgid "removing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3114 +#: guix-git/doc/guix.texi:3131 #, no-wrap msgid "package installation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3115 +#: guix-git/doc/guix.texi:3132 #, no-wrap msgid "package removal" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3125 +#: guix-git/doc/guix.texi:3142 msgid "The @command{guix package} command is the tool that allows users to install, upgrade, and remove packages, as well as rolling back to previous configurations. These operations work on a user @dfn{profile}---a directory of installed packages. Each user has a default profile in @file{$HOME/.guix-profile}. The command operates only on the user's own profile, and works with normal user privileges (@pxref{Features}). Its syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3128 +#: guix-git/doc/guix.texi:3145 #, no-wrap msgid "guix package @var{options}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3135 +#: guix-git/doc/guix.texi:3152 msgid "Primarily, @var{options} specifies the operations to be performed during the transaction. Upon completion, a new profile is created, but previous @dfn{generations} of the profile remain available, should the user want to roll back." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3138 +#: guix-git/doc/guix.texi:3155 msgid "For example, to remove @code{lua} and install @code{guile} and @code{guile-cairo} in a single transaction:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3141 +#: guix-git/doc/guix.texi:3158 #, no-wrap msgid "guix package -r lua -i guile guile-cairo\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3143 +#: guix-git/doc/guix.texi:3160 #, no-wrap msgid "aliases, for @command{guix package}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3145 +#: guix-git/doc/guix.texi:3162 msgid "For your convenience, we also provide the following aliases:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3149 +#: guix-git/doc/guix.texi:3166 msgid "@command{guix search} is an alias for @command{guix package -s}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3151 +#: guix-git/doc/guix.texi:3168 msgid "@command{guix install} is an alias for @command{guix package -i}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3153 +#: guix-git/doc/guix.texi:3170 msgid "@command{guix remove} is an alias for @command{guix package -r}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3155 +#: guix-git/doc/guix.texi:3172 msgid "@command{guix upgrade} is an alias for @command{guix package -u}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3157 +#: guix-git/doc/guix.texi:3174 msgid "and @command{guix show} is an alias for @command{guix package --show=}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3162 +#: guix-git/doc/guix.texi:3179 msgid "These aliases are less expressive than @command{guix package} and provide fewer options, so in some cases you'll probably want to use @command{guix package} directly." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3167 +#: guix-git/doc/guix.texi:3184 msgid "@command{guix package} also supports a @dfn{declarative approach} whereby the user specifies the exact set of packages to be available and passes it @i{via} the @option{--manifest} option (@pxref{profile-manifest, @option{--manifest}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3174 +#: guix-git/doc/guix.texi:3191 msgid "For each user, a symlink to the user's default profile is automatically created in @file{$HOME/.guix-profile}. This symlink always points to the current generation of the user's default profile. Thus, users can add @file{$HOME/.guix-profile/bin} to their @env{PATH} environment variable, and so on." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3174 guix-git/doc/guix.texi:3418 +#: guix-git/doc/guix.texi:3191 guix-git/doc/guix.texi:3435 #, no-wrap msgid "search paths" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3179 +#: guix-git/doc/guix.texi:3196 msgid "If you are not using Guix System, consider adding the following lines to your @file{~/.bash_profile} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}) so that newly-spawned shells get all the right environment variable definitions:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3183 +#: guix-git/doc/guix.texi:3200 #, no-wrap msgid "" "GUIX_PROFILE=\"$HOME/.guix-profile\" ; \\\n" @@ -8726,298 +8802,298 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3194 +#: guix-git/doc/guix.texi:3211 msgid "In a multi-user setup, user profiles are stored in a place registered as a @dfn{garbage-collector root}, which @file{$HOME/.guix-profile} points to (@pxref{Invoking guix gc}). That directory is normally @code{@var{localstatedir}/guix/profiles/per-user/@var{user}}, where @var{localstatedir} is the value passed to @code{configure} as @option{--localstatedir}, and @var{user} is the user name. The @file{per-user} directory is created when @command{guix-daemon} is started, and the @var{user} sub-directory is created by @command{guix package}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3196 +#: guix-git/doc/guix.texi:3213 msgid "The @var{options} can be among the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3199 +#: guix-git/doc/guix.texi:3216 #, no-wrap msgid "--install=@var{package} @dots{}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3200 +#: guix-git/doc/guix.texi:3217 #, no-wrap msgid "-i @var{package} @dots{}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3202 +#: guix-git/doc/guix.texi:3219 msgid "Install the specified @var{package}s." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3207 +#: guix-git/doc/guix.texi:3224 msgid "Each @var{package} may specify either a simple package name, such as @code{guile}, or a package name followed by an at-sign and version number, such as @code{guile@@1.8.8} or simply @code{guile@@1.8} (in the latter case, the newest version prefixed by @code{1.8} is selected)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3215 +#: guix-git/doc/guix.texi:3232 msgid "If no version number is specified, the newest available version will be selected. In addition, @var{package} may contain a colon, followed by the name of one of the outputs of the package, as in @code{gcc:doc} or @code{binutils@@2.22:lib} (@pxref{Packages with Multiple Outputs}). Packages with a corresponding name (and optionally version) are searched for among the GNU distribution modules (@pxref{Package Modules})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3216 +#: guix-git/doc/guix.texi:3233 #, no-wrap msgid "propagated inputs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3222 +#: guix-git/doc/guix.texi:3239 msgid "Sometimes packages have @dfn{propagated inputs}: these are dependencies that automatically get installed along with the required package (@pxref{package-propagated-inputs, @code{propagated-inputs} in @code{package} objects}, for information about propagated inputs in package definitions)." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3229 +#: guix-git/doc/guix.texi:3246 msgid "package-cmd-propagated-inputs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3229 +#: guix-git/doc/guix.texi:3246 msgid "An example is the GNU MPC library: its C header files refer to those of the GNU MPFR library, which in turn refer to those of the GMP library. Thus, when installing MPC, the MPFR and GMP libraries also get installed in the profile; removing MPC also removes MPFR and GMP---unless they had also been explicitly installed by the user." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3234 +#: guix-git/doc/guix.texi:3251 msgid "Besides, packages sometimes rely on the definition of environment variables for their search paths (see explanation of @option{--search-paths} below). Any missing or possibly incorrect environment variable definitions are reported here." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3235 +#: guix-git/doc/guix.texi:3252 #, no-wrap msgid "--install-from-expression=@var{exp}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3236 +#: guix-git/doc/guix.texi:3253 #, no-wrap msgid "-e @var{exp}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3238 +#: guix-git/doc/guix.texi:3255 msgid "Install the package @var{exp} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3243 +#: guix-git/doc/guix.texi:3260 msgid "@var{exp} must be a Scheme expression that evaluates to a @code{} object. This option is notably useful to disambiguate between same-named variants of a package, with expressions such as @code{(@@ (gnu packages base) guile-final)}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3247 +#: guix-git/doc/guix.texi:3264 msgid "Note that this option installs the first output of the specified package, which may be insufficient when needing a specific output of a multiple-output package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3248 +#: guix-git/doc/guix.texi:3265 #, no-wrap msgid "--install-from-file=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3249 guix-git/doc/guix.texi:5781 -#: guix-git/doc/guix.texi:11396 +#: guix-git/doc/guix.texi:3266 guix-git/doc/guix.texi:5799 +#: guix-git/doc/guix.texi:11710 #, no-wrap msgid "-f @var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3251 +#: guix-git/doc/guix.texi:3268 msgid "Install the package that the code within @var{file} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3254 guix-git/doc/guix.texi:5787 -#: guix-git/doc/guix.texi:6162 +#: guix-git/doc/guix.texi:3271 guix-git/doc/guix.texi:5805 +#: guix-git/doc/guix.texi:6199 msgid "As an example, @var{file} might contain a definition like this (@pxref{Defining Packages}):" msgstr "" #. type: include -#: guix-git/doc/guix.texi:3256 guix-git/doc/guix.texi:11404 +#: guix-git/doc/guix.texi:3273 guix-git/doc/guix.texi:11718 #, no-wrap msgid "package-hello.scm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3263 +#: guix-git/doc/guix.texi:3280 msgid "Developers may find it useful to include such a @file{guix.scm} file in the root of their project source tree that can be used to test development snapshots and create reproducible development environments (@pxref{Invoking guix shell})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3268 +#: guix-git/doc/guix.texi:3285 msgid "The @var{file} may also contain a JSON representation of one or more package definitions. Running @code{guix package -f} on @file{hello.json} with the following contents would result in installing the package @code{greeter} after building @code{myhello}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3271 guix-git/doc/guix.texi:11414 +#: guix-git/doc/guix.texi:3288 guix-git/doc/guix.texi:11728 #, no-wrap msgid "@verbatiminclude package-hello.json\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3273 +#: guix-git/doc/guix.texi:3290 #, no-wrap msgid "--remove=@var{package} @dots{}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3274 +#: guix-git/doc/guix.texi:3291 #, no-wrap msgid "-r @var{package} @dots{}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3276 +#: guix-git/doc/guix.texi:3293 msgid "Remove the specified @var{package}s." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3281 +#: guix-git/doc/guix.texi:3298 msgid "As for @option{--install}, each @var{package} may specify a version number and/or output name in addition to the package name. For instance, @samp{-r glibc:debug} would remove the @code{debug} output of @code{glibc}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3282 +#: guix-git/doc/guix.texi:3299 #, no-wrap msgid "--upgrade[=@var{regexp} @dots{}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3283 +#: guix-git/doc/guix.texi:3300 #, no-wrap msgid "-u [@var{regexp} @dots{}]" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3284 +#: guix-git/doc/guix.texi:3301 #, no-wrap msgid "upgrading packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3288 +#: guix-git/doc/guix.texi:3305 msgid "Upgrade all the installed packages. If one or more @var{regexp}s are specified, upgrade only installed packages whose name matches a @var{regexp}. Also see the @option{--do-not-upgrade} option below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3293 +#: guix-git/doc/guix.texi:3310 msgid "Note that this upgrades package to the latest version of packages found in the distribution currently installed. To update your distribution, you should regularly run @command{guix pull} (@pxref{Invoking guix pull})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3294 +#: guix-git/doc/guix.texi:3311 #, no-wrap msgid "package transformations, upgrades" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3299 +#: guix-git/doc/guix.texi:3316 msgid "When upgrading, package transformations that were originally applied when creating the profile are automatically re-applied (@pxref{Package Transformation Options}). For example, assume you first installed Emacs from the tip of its development branch with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3302 +#: guix-git/doc/guix.texi:3319 #, no-wrap msgid "guix install emacs-next --with-branch=emacs-next=master\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3307 +#: guix-git/doc/guix.texi:3324 msgid "Next time you run @command{guix upgrade}, Guix will again pull the tip of the Emacs development branch and build @code{emacs-next} from that checkout." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3312 +#: guix-git/doc/guix.texi:3329 msgid "Note that transformation options such as @option{--with-branch} and @option{--with-source} depend on external state; it is up to you to ensure that they work as expected. You can also discard a transformations that apply to a package by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3315 +#: guix-git/doc/guix.texi:3332 #, no-wrap msgid "guix install @var{package}\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3317 +#: guix-git/doc/guix.texi:3334 #, no-wrap msgid "--do-not-upgrade[=@var{regexp} @dots{}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3322 +#: guix-git/doc/guix.texi:3339 msgid "When used together with the @option{--upgrade} option, do @emph{not} upgrade any packages whose name matches a @var{regexp}. For example, to upgrade all packages in the current profile except those containing the substring ``emacs'':" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3325 +#: guix-git/doc/guix.texi:3342 #, no-wrap msgid "$ guix package --upgrade . --do-not-upgrade emacs\n" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3327 +#: guix-git/doc/guix.texi:3344 #, no-wrap msgid "profile-manifest" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3327 guix-git/doc/guix.texi:5799 -#: guix-git/doc/guix.texi:6167 guix-git/doc/guix.texi:6615 -#: guix-git/doc/guix.texi:12535 guix-git/doc/guix.texi:14135 +#: guix-git/doc/guix.texi:3344 guix-git/doc/guix.texi:5817 +#: guix-git/doc/guix.texi:6204 guix-git/doc/guix.texi:6658 +#: guix-git/doc/guix.texi:12850 guix-git/doc/guix.texi:14492 #, no-wrap msgid "--manifest=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3328 guix-git/doc/guix.texi:5800 -#: guix-git/doc/guix.texi:6168 guix-git/doc/guix.texi:6616 -#: guix-git/doc/guix.texi:12536 +#: guix-git/doc/guix.texi:3345 guix-git/doc/guix.texi:5818 +#: guix-git/doc/guix.texi:6205 guix-git/doc/guix.texi:6659 +#: guix-git/doc/guix.texi:12851 #, no-wrap msgid "-m @var{file}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3329 +#: guix-git/doc/guix.texi:3346 #, no-wrap msgid "profile declaration" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3330 +#: guix-git/doc/guix.texi:3347 #, no-wrap msgid "profile manifest" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3334 +#: guix-git/doc/guix.texi:3351 msgid "Create a new generation of the profile from the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3340 +#: guix-git/doc/guix.texi:3357 msgid "This allows you to @emph{declare} the profile's contents rather than constructing it through a sequence of @option{--install} and similar commands. The advantage is that @var{file} can be put under version control, copied to different machines to reproduce the same profile, and so on." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3344 +#: guix-git/doc/guix.texi:3361 msgid "@var{file} must return a @dfn{manifest} object, which is roughly a list of packages:" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:3345 +#: guix-git/doc/guix.texi:3362 #, no-wrap msgid "packages->manifest" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3348 +#: guix-git/doc/guix.texi:3365 #, no-wrap msgid "" "(use-package-modules guile emacs)\n" @@ -9025,7 +9101,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3354 +#: guix-git/doc/guix.texi:3371 #, no-wrap msgid "" "(packages->manifest\n" @@ -9036,18 +9112,18 @@ msgid "" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:3356 +#: guix-git/doc/guix.texi:3373 #, no-wrap msgid "specifications->manifest" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3363 +#: guix-git/doc/guix.texi:3380 msgid "In this example we have to know which modules define the @code{emacs} and @code{guile-2.0} variables to provide the right @code{use-package-modules} line, which can be cumbersome. We can instead provide regular package specifications and let @code{specifications->manifest} look up the corresponding package objects, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3367 +#: guix-git/doc/guix.texi:3384 #, no-wrap msgid "" "(specifications->manifest\n" @@ -9055,150 +9131,150 @@ msgid "" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:3369 +#: guix-git/doc/guix.texi:3386 #, no-wrap msgid "package->development-manifest" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3372 +#: guix-git/doc/guix.texi:3389 msgid "You might also want to create a manifest for all the dependencies of a package, rather than the package itself:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3375 +#: guix-git/doc/guix.texi:3392 #, no-wrap msgid "(package->development-manifest (specification->package \"emacs\"))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3379 +#: guix-git/doc/guix.texi:3396 msgid "The example above gives you all the software required to develop Emacs, similar to what @command{guix environment emacs} provides." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3382 +#: guix-git/doc/guix.texi:3399 msgid "@xref{export-manifest, @option{--export-manifest}}, to learn how to obtain a manifest file from an existing profile." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3383 guix-git/doc/guix.texi:4492 +#: guix-git/doc/guix.texi:3400 guix-git/doc/guix.texi:4510 #, no-wrap msgid "--roll-back" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3384 guix-git/doc/guix.texi:4493 -#: guix-git/doc/guix.texi:35006 guix-git/doc/guix.texi:37641 +#: guix-git/doc/guix.texi:3401 guix-git/doc/guix.texi:4511 +#: guix-git/doc/guix.texi:35445 guix-git/doc/guix.texi:38120 #, no-wrap msgid "rolling back" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3385 guix-git/doc/guix.texi:4494 +#: guix-git/doc/guix.texi:3402 guix-git/doc/guix.texi:4512 #, no-wrap msgid "undoing transactions" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3386 guix-git/doc/guix.texi:4495 +#: guix-git/doc/guix.texi:3403 guix-git/doc/guix.texi:4513 #, no-wrap msgid "transactions, undoing" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3389 +#: guix-git/doc/guix.texi:3406 msgid "Roll back to the previous @dfn{generation} of the profile---i.e., undo the last transaction." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3392 +#: guix-git/doc/guix.texi:3409 msgid "When combined with options such as @option{--install}, roll back occurs before any other actions." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3396 +#: guix-git/doc/guix.texi:3413 msgid "When rolling back from the first generation that actually contains installed packages, the profile is made to point to the @dfn{zeroth generation}, which contains no files apart from its own metadata." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3400 +#: guix-git/doc/guix.texi:3417 msgid "After having rolled back, installing, removing, or upgrading packages overwrites previous future generations. Thus, the history of the generations in a profile is always linear." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3401 guix-git/doc/guix.texi:4499 +#: guix-git/doc/guix.texi:3418 guix-git/doc/guix.texi:4517 #, no-wrap msgid "--switch-generation=@var{pattern}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3402 guix-git/doc/guix.texi:4500 +#: guix-git/doc/guix.texi:3419 guix-git/doc/guix.texi:4518 #, no-wrap msgid "-S @var{pattern}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3403 guix-git/doc/guix.texi:3635 -#: guix-git/doc/guix.texi:4501 guix-git/doc/guix.texi:34964 +#: guix-git/doc/guix.texi:3420 guix-git/doc/guix.texi:3653 +#: guix-git/doc/guix.texi:4519 guix-git/doc/guix.texi:35403 #, no-wrap msgid "generations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3405 guix-git/doc/guix.texi:4503 +#: guix-git/doc/guix.texi:3422 guix-git/doc/guix.texi:4521 msgid "Switch to a particular generation defined by @var{pattern}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3411 guix-git/doc/guix.texi:4509 +#: guix-git/doc/guix.texi:3428 guix-git/doc/guix.texi:4527 msgid "@var{pattern} may be either a generation number or a number prefixed with ``+'' or ``-''. The latter means: move forward/backward by a specified number of generations. For example, if you want to return to the latest generation after @option{--roll-back}, use @option{--switch-generation=+1}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3416 +#: guix-git/doc/guix.texi:3433 msgid "The difference between @option{--roll-back} and @option{--switch-generation=-1} is that @option{--switch-generation} will not make a zeroth generation, so if a specified generation does not exist, the current generation will not be changed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3417 +#: guix-git/doc/guix.texi:3434 #, no-wrap msgid "--search-paths[=@var{kind}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3423 +#: guix-git/doc/guix.texi:3440 msgid "Report environment variable definitions, in Bash syntax, that may be needed in order to use the set of installed packages. These environment variables are used to specify @dfn{search paths} for files used by some of the installed packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3431 -msgid "For example, GCC needs the @env{CPATH} and @env{LIBRARY_PATH} environment variables to be defined so it can look for headers and libraries in the user's profile (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C library are installed in the profile, then @option{--search-paths} will suggest setting these variables to @file{@var{profile}/include} and @file{@var{profile}/lib}, respectively." +#: guix-git/doc/guix.texi:3449 +msgid "For example, GCC needs the @env{CPATH} and @env{LIBRARY_PATH} environment variables to be defined so it can look for headers and libraries in the user's profile (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C library are installed in the profile, then @option{--search-paths} will suggest setting these variables to @file{@var{profile}/include} and @file{@var{profile}/lib}, respectively (@pxref{Search Paths}, for info on search path specifications associated with packages.)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3434 +#: guix-git/doc/guix.texi:3452 msgid "The typical use case is to define these environment variables in the shell:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3437 +#: guix-git/doc/guix.texi:3455 #, no-wrap msgid "$ eval `guix package --search-paths`\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3443 +#: guix-git/doc/guix.texi:3461 msgid "@var{kind} may be one of @code{exact}, @code{prefix}, or @code{suffix}, meaning that the returned environment variable definitions will either be exact settings, or prefixes or suffixes of the current value of these variables. When omitted, @var{kind} defaults to @code{exact}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3446 +#: guix-git/doc/guix.texi:3464 msgid "This option can also be used to compute the @emph{combined} search paths of several profiles. Consider this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3451 +#: guix-git/doc/guix.texi:3469 #, no-wrap msgid "" "$ guix package -p foo -i guile\n" @@ -9207,42 +9283,44 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3456 +#: guix-git/doc/guix.texi:3474 msgid "The last command above reports about the @env{GUILE_LOAD_PATH} variable, even though, taken individually, neither @file{foo} nor @file{bar} would lead to that recommendation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3458 +#: guix-git/doc/guix.texi:3476 #, no-wrap msgid "profile, choosing" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3459 guix-git/doc/guix.texi:4529 -#: guix-git/doc/guix.texi:4858 +#: guix-git/doc/guix.texi:3477 guix-git/doc/guix.texi:4547 +#: guix-git/doc/guix.texi:4876 guix-git/doc/guix.texi:5827 +#: guix-git/doc/guix.texi:6240 #, no-wrap msgid "--profile=@var{profile}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3460 guix-git/doc/guix.texi:4530 -#: guix-git/doc/guix.texi:4859 +#: guix-git/doc/guix.texi:3478 guix-git/doc/guix.texi:4548 +#: guix-git/doc/guix.texi:4877 guix-git/doc/guix.texi:5828 +#: guix-git/doc/guix.texi:6241 #, no-wrap msgid "-p @var{profile}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3462 +#: guix-git/doc/guix.texi:3480 msgid "Use @var{profile} instead of the user's default profile." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3467 +#: guix-git/doc/guix.texi:3485 msgid "@var{profile} must be the name of a file that will be created upon completion. Concretely, @var{profile} will be a mere symbolic link (``symlink'') pointing to the actual profile where packages are installed:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3473 +#: guix-git/doc/guix.texi:3491 #, no-wrap msgid "" "$ guix install hello -p ~/code/my-profile\n" @@ -9252,29 +9330,29 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3477 +#: guix-git/doc/guix.texi:3495 msgid "All it takes to get rid of the profile is to remove this symlink and its siblings that point to specific generations:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3480 +#: guix-git/doc/guix.texi:3498 #, no-wrap msgid "$ rm ~/code/my-profile ~/code/my-profile-*-link\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3482 +#: guix-git/doc/guix.texi:3500 #, no-wrap msgid "--list-profiles" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3484 +#: guix-git/doc/guix.texi:3502 msgid "List all the user's profiles:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3491 +#: guix-git/doc/guix.texi:3509 #, no-wrap msgid "" "$ guix package --list-profiles\n" @@ -9285,96 +9363,96 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3494 +#: guix-git/doc/guix.texi:3512 msgid "When running as root, list all the profiles of all the users." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3495 +#: guix-git/doc/guix.texi:3513 #, no-wrap msgid "collisions, in a profile" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3496 +#: guix-git/doc/guix.texi:3514 #, no-wrap msgid "colliding packages in profiles" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3497 +#: guix-git/doc/guix.texi:3515 #, no-wrap msgid "profile collisions" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3498 +#: guix-git/doc/guix.texi:3516 #, no-wrap msgid "--allow-collisions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3500 +#: guix-git/doc/guix.texi:3518 msgid "Allow colliding packages in the new profile. Use at your own risk!" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3504 +#: guix-git/doc/guix.texi:3522 msgid "By default, @command{guix package} reports as an error @dfn{collisions} in the profile. Collisions happen when two or more different versions or variants of a given package end up in the profile." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3505 guix-git/doc/guix.texi:4572 -#: guix-git/doc/guix.texi:6701 +#: guix-git/doc/guix.texi:3523 guix-git/doc/guix.texi:4590 +#: guix-git/doc/guix.texi:6744 #, no-wrap msgid "--bootstrap" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3508 +#: guix-git/doc/guix.texi:3526 msgid "Use the bootstrap Guile to build the profile. This option is only useful to distribution developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3514 +#: guix-git/doc/guix.texi:3532 msgid "In addition to these actions, @command{guix package} supports the following options to query the current state of a profile, or the availability of packages:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3517 +#: guix-git/doc/guix.texi:3535 #, no-wrap msgid "--search=@var{regexp}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3518 +#: guix-git/doc/guix.texi:3536 #, no-wrap msgid "-s @var{regexp}" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3520 +#: guix-git/doc/guix.texi:3538 msgid "guix-search" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3520 +#: guix-git/doc/guix.texi:3538 #, no-wrap msgid "searching for packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3526 +#: guix-git/doc/guix.texi:3544 msgid "List the available packages whose name, synopsis, or description matches @var{regexp} (in a case-insensitive fashion), sorted by relevance. Print all the metadata of matching packages in @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3529 +#: guix-git/doc/guix.texi:3547 msgid "This allows specific fields to be extracted using the @command{recsel} command, for instance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3535 +#: guix-git/doc/guix.texi:3553 #, no-wrap msgid "" "$ guix package -s malloc | recsel -p name,version,relevance\n" @@ -9385,7 +9463,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3539 +#: guix-git/doc/guix.texi:3557 #, no-wrap msgid "" "name: glibc\n" @@ -9395,7 +9473,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3543 +#: guix-git/doc/guix.texi:3561 #, no-wrap msgid "" "name: libgc\n" @@ -9404,12 +9482,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3547 +#: guix-git/doc/guix.texi:3565 msgid "Similarly, to show the name of all the packages available under the terms of the GNU@tie{}LGPL version 3:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3551 +#: guix-git/doc/guix.texi:3569 #, no-wrap msgid "" "$ guix package -s \"\" | recsel -p name -e 'license ~ \"LGPL 3\"'\n" @@ -9418,7 +9496,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3554 +#: guix-git/doc/guix.texi:3572 #, no-wrap msgid "" "name: gmp\n" @@ -9426,12 +9504,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3560 +#: guix-git/doc/guix.texi:3578 msgid "It is also possible to refine search results using several @code{-s} flags to @command{guix package}, or several arguments to @command{guix search}. For example, the following command returns a list of board games (this time using the @command{guix search} alias):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3565 +#: guix-git/doc/guix.texi:3583 #, no-wrap msgid "" "$ guix search '\\' game | recsel -p name\n" @@ -9440,17 +9518,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3571 +#: guix-git/doc/guix.texi:3589 msgid "If we were to omit @code{-s game}, we would also get software packages that deal with printed circuit boards; removing the angle brackets around @code{board} would further add packages that have to do with keyboards." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3575 +#: guix-git/doc/guix.texi:3593 msgid "And now for a more elaborate example. The following command searches for cryptographic libraries, filters out Haskell, Perl, Python, and Ruby libraries, and prints the name and synopsis of the matching packages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3579 +#: guix-git/doc/guix.texi:3597 #, no-wrap msgid "" "$ guix search crypto library | \\\n" @@ -9458,23 +9536,23 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3584 +#: guix-git/doc/guix.texi:3602 msgid "@xref{Selection Expressions,,, recutils, GNU recutils manual}, for more information on @dfn{selection expressions} for @code{recsel -e}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3585 +#: guix-git/doc/guix.texi:3603 #, no-wrap msgid "--show=@var{package}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3589 +#: guix-git/doc/guix.texi:3607 msgid "Show details about @var{package}, taken from the list of available packages, in @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:3594 +#: guix-git/doc/guix.texi:3612 #, no-wrap msgid "" "$ guix package --show=guile | recsel -p name,version\n" @@ -9484,7 +9562,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3597 +#: guix-git/doc/guix.texi:3615 #, no-wrap msgid "" "name: guile\n" @@ -9493,7 +9571,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3601 +#: guix-git/doc/guix.texi:3619 #, no-wrap msgid "" "name: guile\n" @@ -9502,12 +9580,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3605 +#: guix-git/doc/guix.texi:3623 msgid "You may also specify the full name of a package to only get details about a specific version of it (this time using the @command{guix show} alias):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3609 +#: guix-git/doc/guix.texi:3627 #, no-wrap msgid "" "$ guix show guile@@3.0.5 | recsel -p name,version\n" @@ -9516,297 +9594,297 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3611 +#: guix-git/doc/guix.texi:3629 #, no-wrap msgid "--list-installed[=@var{regexp}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3612 +#: guix-git/doc/guix.texi:3630 #, no-wrap msgid "-I [@var{regexp}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3616 +#: guix-git/doc/guix.texi:3634 msgid "List the currently installed packages in the specified profile, with the most recently installed packages shown last. When @var{regexp} is specified, list only installed packages whose name matches @var{regexp}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3622 +#: guix-git/doc/guix.texi:3640 msgid "For each installed package, print the following items, separated by tabs: the package name, its version string, the part of the package that is installed (for instance, @code{out} for the default output, @code{include} for its headers, etc.), and the path of this package in the store." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3623 +#: guix-git/doc/guix.texi:3641 #, no-wrap msgid "--list-available[=@var{regexp}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3624 +#: guix-git/doc/guix.texi:3642 #, no-wrap msgid "-A [@var{regexp}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3628 +#: guix-git/doc/guix.texi:3646 msgid "List packages currently available in the distribution for this system (@pxref{GNU Distribution}). When @var{regexp} is specified, list only available packages whose name matches @var{regexp}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3632 +#: guix-git/doc/guix.texi:3650 msgid "For each package, print the following items separated by tabs: its name, its version string, the parts of the package (@pxref{Packages with Multiple Outputs}), and the source location of its definition." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3633 guix-git/doc/guix.texi:4485 +#: guix-git/doc/guix.texi:3651 guix-git/doc/guix.texi:4503 #, no-wrap msgid "--list-generations[=@var{pattern}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3634 guix-git/doc/guix.texi:4486 +#: guix-git/doc/guix.texi:3652 guix-git/doc/guix.texi:4504 #, no-wrap msgid "-l [@var{pattern}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3640 +#: guix-git/doc/guix.texi:3658 msgid "Return a list of generations along with their creation dates; for each generation, show the installed packages, with the most recently installed packages shown last. Note that the zeroth generation is never shown." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3645 +#: guix-git/doc/guix.texi:3663 msgid "For each installed package, print the following items, separated by tabs: the name of a package, its version string, the part of the package that is installed (@pxref{Packages with Multiple Outputs}), and the location of this package in the store." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3648 +#: guix-git/doc/guix.texi:3666 msgid "When @var{pattern} is used, the command returns only matching generations. Valid patterns include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3650 +#: guix-git/doc/guix.texi:3668 #, no-wrap msgid "@emph{Integers and comma-separated integers}. Both patterns denote" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3653 +#: guix-git/doc/guix.texi:3671 msgid "generation numbers. For instance, @option{--list-generations=1} returns the first one." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3656 +#: guix-git/doc/guix.texi:3674 msgid "And @option{--list-generations=1,8,2} outputs three generations in the specified order. Neither spaces nor trailing commas are allowed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3657 +#: guix-git/doc/guix.texi:3675 #, no-wrap msgid "@emph{Ranges}. @option{--list-generations=2..9} prints the" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3660 +#: guix-git/doc/guix.texi:3678 msgid "specified generations and everything in between. Note that the start of a range must be smaller than its end." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3664 +#: guix-git/doc/guix.texi:3682 msgid "It is also possible to omit the endpoint. For example, @option{--list-generations=2..}, returns all generations starting from the second one." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3665 +#: guix-git/doc/guix.texi:3683 #, no-wrap msgid "@emph{Durations}. You can also get the last @emph{N}@tie{}days, weeks," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3669 +#: guix-git/doc/guix.texi:3687 msgid "or months by passing an integer along with the first letter of the duration. For example, @option{--list-generations=20d} lists generations that are up to 20 days old." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3671 guix-git/doc/guix.texi:4510 +#: guix-git/doc/guix.texi:3689 guix-git/doc/guix.texi:4528 #, no-wrap msgid "--delete-generations[=@var{pattern}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3672 guix-git/doc/guix.texi:4511 +#: guix-git/doc/guix.texi:3690 guix-git/doc/guix.texi:4529 #, no-wrap msgid "-d [@var{pattern}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3675 guix-git/doc/guix.texi:4514 +#: guix-git/doc/guix.texi:3693 guix-git/doc/guix.texi:4532 msgid "When @var{pattern} is omitted, delete all generations except the current one." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3681 guix-git/doc/guix.texi:4520 +#: guix-git/doc/guix.texi:3699 guix-git/doc/guix.texi:4538 msgid "This command accepts the same patterns as @option{--list-generations}. When @var{pattern} is specified, delete the matching generations. When @var{pattern} specifies a duration, generations @emph{older} than the specified duration match. For instance, @option{--delete-generations=1m} deletes generations that are more than one month old." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3684 +#: guix-git/doc/guix.texi:3702 msgid "If the current generation matches, it is @emph{not} deleted. Also, the zeroth generation is never deleted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3687 guix-git/doc/guix.texi:4525 +#: guix-git/doc/guix.texi:3705 guix-git/doc/guix.texi:4543 msgid "Note that deleting generations prevents rolling back to them. Consequently, this command must be used with care." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3688 +#: guix-git/doc/guix.texi:3706 #, no-wrap msgid "manifest, exporting" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3690 +#: guix-git/doc/guix.texi:3708 msgid "export-manifest" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3690 +#: guix-git/doc/guix.texi:3708 #, no-wrap msgid "--export-manifest" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3693 +#: guix-git/doc/guix.texi:3711 msgid "Write to standard output a manifest suitable for @option{--manifest} corresponding to the chosen profile(s)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3697 +#: guix-git/doc/guix.texi:3715 msgid "This option is meant to help you migrate from the ``imperative'' operating mode---running @command{guix install}, @command{guix upgrade}, etc.---to the declarative mode that @option{--manifest} offers." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3702 +#: guix-git/doc/guix.texi:3720 msgid "Be aware that the resulting manifest @emph{approximates} what your profile actually contains; for instance, depending on how your profile was created, it can refer to packages or package versions that are not exactly what you specified." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3707 +#: guix-git/doc/guix.texi:3725 msgid "Keep in mind that a manifest is purely symbolic: it only contains package names and possibly versions, and their meaning varies over time. If you wish to ``pin'' channels to the revisions that were used to build the profile(s), see @option{--export-channels} below." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3708 +#: guix-git/doc/guix.texi:3726 #, no-wrap msgid "pinning, channel revisions of a profile" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3709 +#: guix-git/doc/guix.texi:3727 #, no-wrap msgid "--export-channels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3713 +#: guix-git/doc/guix.texi:3731 msgid "Write to standard output the list of channels used by the chosen profile(s), in a format suitable for @command{guix pull --channels} or @command{guix time-machine --channels} (@pxref{Channels})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3717 +#: guix-git/doc/guix.texi:3735 msgid "Together with @option{--export-manifest}, this option provides information allowing you to replicate the current profile (@pxref{Replicating Guix})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3725 +#: guix-git/doc/guix.texi:3743 msgid "However, note that the output of this command @emph{approximates} what was actually used to build this profile. In particular, a single profile might have been built from several different revisions of the same channel. In that case, @option{--export-manifest} chooses the last one and writes the list of other revisions in a comment. If you really need to pick packages from different channel revisions, you can use inferiors in your manifest to do so (@pxref{Inferiors})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3730 +#: guix-git/doc/guix.texi:3748 msgid "Together with @option{--export-manifest}, this is a good starting point if you are willing to migrate from the ``imperative'' model to the fully declarative model consisting of a manifest file along with a channels file pinning the exact channel revision(s) you want." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3737 +#: guix-git/doc/guix.texi:3755 msgid "Finally, since @command{guix package} may actually start build processes, it supports all the common build options (@pxref{Common Build Options}). It also supports package transformation options, such as @option{--with-source}, and preserves them across upgrades (@pxref{Package Transformation Options})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3742 +#: guix-git/doc/guix.texi:3760 #, no-wrap msgid "pre-built binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3748 +#: guix-git/doc/guix.texi:3766 msgid "Guix supports transparent source/binary deployment, which means that it can either build things locally, or download pre-built items from a server, or both. We call these pre-built items @dfn{substitutes}---they are substitutes for local build results. In many cases, downloading a substitute is much faster than building things locally." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3753 +#: guix-git/doc/guix.texi:3771 msgid "Substitutes can be anything resulting from a derivation build (@pxref{Derivations}). Of course, in the common case, they are pre-built package binaries, but source tarballs, for instance, which also result from derivation builds, can be available as substitutes." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3767 +#: guix-git/doc/guix.texi:3785 #, no-wrap msgid "build farm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3778 +#: guix-git/doc/guix.texi:3796 msgid "@code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} are both front-ends to official build farms that build packages from Guix continuously for some architectures, and make them available as substitutes. These are the default source of substitutes; which can be overridden by passing the @option{--substitute-urls} option either to @command{guix-daemon} (@pxref{daemon-substitute-urls,, @code{guix-daemon --substitute-urls}}) or to client tools such as @command{guix package} (@pxref{client-substitute-urls,, client @option{--substitute-urls} option})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3784 +#: guix-git/doc/guix.texi:3802 msgid "Substitute URLs can be either HTTP or HTTPS. HTTPS is recommended because communications are encrypted; conversely, using HTTP makes all communications visible to an eavesdropper, who could use the information gathered to determine, for instance, whether your system has unpatched security vulnerabilities." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3793 +#: guix-git/doc/guix.texi:3811 msgid "Substitutes from the official build farms are enabled by default when using Guix System (@pxref{GNU Distribution}). However, they are disabled by default when using Guix on a foreign distribution, unless you have explicitly enabled them via one of the recommended installation steps (@pxref{Installation}). The following paragraphs describe how to enable or disable substitutes for the official build farm; the same procedure can also be used to enable substitutes for any other substitute server." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3797 +#: guix-git/doc/guix.texi:3815 #, no-wrap msgid "security" msgstr "turvallisuus" #. type: cindex -#: guix-git/doc/guix.texi:3799 +#: guix-git/doc/guix.texi:3817 #, no-wrap msgid "access control list (ACL), for substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3800 +#: guix-git/doc/guix.texi:3818 #, no-wrap msgid "ACL (access control list), for substitutes" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3806 +#: guix-git/doc/guix.texi:3824 msgid "To allow Guix to download substitutes from @code{@value{SUBSTITUTE-SERVER-1}}, @code{@value{SUBSTITUTE-SERVER-2}} or a mirror, you must add the relevant public key to the access control list (ACL) of archive imports, using the @command{guix archive} command (@pxref{Invoking guix archive}). Doing so implies that you trust the substitute server to not be compromised and to serve genuine substitutes." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:3811 +#: guix-git/doc/guix.texi:3829 msgid "If you are using Guix System, you can skip this section: Guix System authorizes substitutes from @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} by default." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3819 +#: guix-git/doc/guix.texi:3837 msgid "The public keys for each of the project maintained substitute servers are installed along with Guix, in @code{@var{prefix}/share/guix/}, where @var{prefix} is the installation prefix of Guix. If you installed Guix from source, make sure you checked the GPG signature of @file{guix-@value{VERSION}.tar.gz}, which contains this public key file. Then, you can run something like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3823 +#: guix-git/doc/guix.texi:3841 #, no-wrap msgid "" "# guix archive --authorize < @var{prefix}/share/guix/@value{SUBSTITUTE-SERVER-1}.pub\n" @@ -9814,12 +9892,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3827 +#: guix-git/doc/guix.texi:3845 msgid "Once this is in place, the output of a command like @code{guix build} should change from something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3836 +#: guix-git/doc/guix.texi:3854 #, no-wrap msgid "" "$ guix build emacs --dry-run\n" @@ -9832,12 +9910,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3840 +#: guix-git/doc/guix.texi:3858 msgid "to something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3849 +#: guix-git/doc/guix.texi:3867 #, no-wrap msgid "" "$ guix build emacs --dry-run\n" @@ -9850,49 +9928,49 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3856 +#: guix-git/doc/guix.texi:3874 msgid "The text changed from ``The following derivations would be built'' to ``112.3 MB would be downloaded''. This indicates that substitutes from the configured substitute servers are usable and will be downloaded, when possible, for future builds." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3857 +#: guix-git/doc/guix.texi:3875 #, no-wrap msgid "substitutes, how to disable" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3863 +#: guix-git/doc/guix.texi:3881 msgid "The substitute mechanism can be disabled globally by running @code{guix-daemon} with @option{--no-substitutes} (@pxref{Invoking guix-daemon}). It can also be disabled temporarily by passing the @option{--no-substitutes} option to @command{guix package}, @command{guix build}, and other command-line tools." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3867 +#: guix-git/doc/guix.texi:3885 #, no-wrap msgid "substitute servers, adding more" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3874 +#: guix-git/doc/guix.texi:3892 msgid "Guix can look up and fetch substitutes from several servers. This is useful when you are using packages from additional channels for which the official server does not have substitutes but another server provides them. Another situation where this is useful is when you would prefer to download from your organization's substitute server, resorting to the official server only as a fallback or dismissing it altogether." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3879 +#: guix-git/doc/guix.texi:3897 msgid "You can give Guix a list of substitute server URLs and it will check them in the specified order. You also need to explicitly authorize the public keys of substitute servers to instruct Guix to accept the substitutes they sign." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3886 +#: guix-git/doc/guix.texi:3904 msgid "On Guix System, this is achieved by modifying the configuration of the @code{guix} service. Since the @code{guix} service is part of the default lists of services, @code{%base-services} and @code{%desktop-services}, you can use @code{modify-services} to change its configuration and add the URLs and substitute keys that you want (@pxref{Service Reference, @code{modify-services}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3892 +#: guix-git/doc/guix.texi:3910 msgid "As an example, suppose you want to fetch substitutes from @code{guix.example.org} and to authorize the signing key of that server, in addition to the default @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}}. The resulting operating system configuration will look something like:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3909 +#: guix-git/doc/guix.texi:3927 #, no-wrap msgid "" "(operating-system\n" @@ -9913,12 +9991,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3916 +#: guix-git/doc/guix.texi:3934 msgid "This assumes that the file @file{key.pub} contains the signing key of @code{guix.example.org}. With this change in place in your operating system configuration file (say @file{/etc/config.scm}), you can reconfigure and restart the @code{guix-daemon} service or reboot so the changes take effect:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3920 +#: guix-git/doc/guix.texi:3938 #, no-wrap msgid "" "$ sudo guix system reconfigure /etc/config.scm\n" @@ -9926,28 +10004,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3924 +#: guix-git/doc/guix.texi:3942 msgid "If you're running Guix on a ``foreign distro'', you would instead take the following steps to get substitutes from additional servers:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:3933 +#: guix-git/doc/guix.texi:3951 msgid "Edit the service configuration file for @code{guix-daemon}; when using systemd, this is normally @file{/etc/systemd/system/guix-daemon.service}. Add the @option{--substitute-urls} option on the @command{guix-daemon} command line and list the URLs of interest (@pxref{daemon-substitute-urls, @code{guix-daemon --substitute-urls}}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3936 +#: guix-git/doc/guix.texi:3954 #, no-wrap msgid "@dots{} --substitute-urls='https://guix.example.org @value{SUBSTITUTE-URLS}'\n" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:3940 +#: guix-git/doc/guix.texi:3958 msgid "Restart the daemon. For systemd, it goes like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3944 +#: guix-git/doc/guix.texi:3962 #, no-wrap msgid "" "systemctl daemon-reload\n" @@ -9955,651 +10033,651 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:3948 +#: guix-git/doc/guix.texi:3966 msgid "Authorize the key of the new server (@pxref{Invoking guix archive}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3951 +#: guix-git/doc/guix.texi:3969 #, no-wrap msgid "guix archive --authorize < key.pub\n" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:3955 +#: guix-git/doc/guix.texi:3973 msgid "Again this assumes @file{key.pub} contains the public key that @code{guix.example.org} uses to sign substitutes." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3964 +#: guix-git/doc/guix.texi:3982 msgid "Now you're all set! Substitutes will be preferably taken from @code{https://guix.example.org}, using @code{@value{SUBSTITUTE-SERVER-1}} then @code{@value{SUBSTITUTE-SERVER-2}} as fallback options. Of course you can list as many substitute servers as you like, with the caveat that substitute lookup can be slowed down if too many servers need to be contacted." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3968 +#: guix-git/doc/guix.texi:3986 msgid "Note that there are also situations where one may want to add the URL of a substitute server @emph{without} authorizing its key. @xref{Substitute Authentication}, to understand this fine point." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3972 +#: guix-git/doc/guix.texi:3990 #, no-wrap msgid "digital signatures" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3976 +#: guix-git/doc/guix.texi:3994 msgid "Guix detects and raises an error when attempting to use a substitute that has been tampered with. Likewise, it ignores substitutes that are not signed, or that are not signed by one of the keys listed in the ACL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3982 +#: guix-git/doc/guix.texi:4000 msgid "There is one exception though: if an unauthorized server provides substitutes that are @emph{bit-for-bit identical} to those provided by an authorized server, then the unauthorized server becomes eligible for downloads. For example, assume we have chosen two substitute servers with this option:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3985 +#: guix-git/doc/guix.texi:4003 #, no-wrap msgid "--substitute-urls=\"https://a.example.org https://b.example.org\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3996 +#: guix-git/doc/guix.texi:4014 msgid "If the ACL contains only the key for @samp{b.example.org}, and if @samp{a.example.org} happens to serve the @emph{exact same} substitutes, then Guix will download substitutes from @samp{a.example.org} because it comes first in the list and can be considered a mirror of @samp{b.example.org}. In practice, independent build machines usually produce the same binaries, thanks to bit-reproducible builds (see below)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4003 +#: guix-git/doc/guix.texi:4021 msgid "When using HTTPS, the server's X.509 certificate is @emph{not} validated (in other words, the server is not authenticated), contrary to what HTTPS clients such as Web browsers usually do. This is because Guix authenticates substitute information itself, as explained above, which is what we care about (whereas X.509 certificates are about authenticating bindings between domain names and public keys)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4015 +#: guix-git/doc/guix.texi:4033 msgid "Substitutes are downloaded over HTTP or HTTPS@. The @env{http_proxy} and @env{https_proxy} environment variables can be set in the environment of @command{guix-daemon} and are honored for downloads of substitutes. Note that the value of those environment variables in the environment where @command{guix build}, @command{guix package}, and other client commands are run has @emph{absolutely no effect}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4024 +#: guix-git/doc/guix.texi:4042 msgid "Even when a substitute for a derivation is available, sometimes the substitution attempt will fail. This can happen for a variety of reasons: the substitute server might be offline, the substitute may recently have been deleted, the connection might have been interrupted, etc." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4038 +#: guix-git/doc/guix.texi:4056 msgid "When substitutes are enabled and a substitute for a derivation is available, but the substitution attempt fails, Guix will attempt to build the derivation locally depending on whether or not @option{--fallback} was given (@pxref{fallback-option,, common build option @option{--fallback}}). Specifically, if @option{--fallback} was omitted, then no local build will be performed, and the derivation is considered to have failed. However, if @option{--fallback} was given, then Guix will attempt to build the derivation locally, and the success or failure of the derivation depends on the success or failure of the local build. Note that when substitutes are disabled or no substitute is available for the derivation in question, a local build will @emph{always} be performed, regardless of whether or not @option{--fallback} was given." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4043 +#: guix-git/doc/guix.texi:4061 msgid "To get an idea of how many substitutes are available right now, you can try running the @command{guix weather} command (@pxref{Invoking guix weather}). This command provides statistics on the substitutes provided by a server." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4047 +#: guix-git/doc/guix.texi:4065 #, no-wrap msgid "trust, of pre-built binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4057 +#: guix-git/doc/guix.texi:4075 msgid "Today, each individual's control over their own computing is at the mercy of institutions, corporations, and groups with enough power and determination to subvert the computing infrastructure and exploit its weaknesses. While using substitutes can be convenient, we encourage users to also build on their own, or even run their own build farm, such that the project run substitute servers are less of an interesting target. One way to help is by publishing the software you build using @command{guix publish} so that others have one more choice of server to download substitutes from (@pxref{Invoking guix publish})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4069 +#: guix-git/doc/guix.texi:4087 msgid "Guix has the foundations to maximize build reproducibility (@pxref{Features}). In most cases, independent builds of a given package or derivation should yield bit-identical results. Thus, through a diverse set of independent package builds, we can strengthen the integrity of our systems. The @command{guix challenge} command aims to help users assess substitute servers, and to assist developers in finding out about non-deterministic package builds (@pxref{Invoking guix challenge}). Similarly, the @option{--check} option of @command{guix build} allows users to check whether previously-installed substitutes are genuine by rebuilding them locally (@pxref{build-check, @command{guix build --check}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4073 +#: guix-git/doc/guix.texi:4091 msgid "In the future, we want Guix to have support to publish and retrieve binaries to/from other users, in a peer-to-peer fashion. If you would like to discuss this project, join us on @email{guix-devel@@gnu.org}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4077 +#: guix-git/doc/guix.texi:4095 #, no-wrap msgid "multiple-output packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4078 +#: guix-git/doc/guix.texi:4096 #, no-wrap msgid "package outputs" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4079 +#: guix-git/doc/guix.texi:4097 #, no-wrap msgid "outputs" msgstr "ulostulot" #. type: Plain text -#: guix-git/doc/guix.texi:4089 +#: guix-git/doc/guix.texi:4107 msgid "Often, packages defined in Guix have a single @dfn{output}---i.e., the source package leads to exactly one directory in the store. When running @command{guix install glibc}, one installs the default output of the GNU libc package; the default output is called @code{out}, but its name can be omitted as shown in this command. In this particular case, the default output of @code{glibc} contains all the C header files, shared libraries, static libraries, Info documentation, and other supporting files." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4097 +#: guix-git/doc/guix.texi:4115 msgid "Sometimes it is more appropriate to separate the various types of files produced from a single source package into separate outputs. For instance, the GLib C library (used by GTK+ and related packages) installs more than 20 MiB of reference documentation as HTML pages. To save space for users who do not need it, the documentation goes to a separate output, called @code{doc}. To install the main GLib output, which contains everything but the documentation, one would run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4100 +#: guix-git/doc/guix.texi:4118 #, no-wrap msgid "guix install glib\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4102 guix-git/doc/guix.texi:36368 -#: guix-git/doc/guix.texi:36425 +#: guix-git/doc/guix.texi:4120 guix-git/doc/guix.texi:36858 +#: guix-git/doc/guix.texi:36915 #, no-wrap msgid "documentation" msgstr "dokumentaatio" #. type: Plain text -#: guix-git/doc/guix.texi:4104 +#: guix-git/doc/guix.texi:4122 msgid "The command to install its documentation is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4107 +#: guix-git/doc/guix.texi:4125 #, no-wrap msgid "guix install glib:doc\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4118 +#: guix-git/doc/guix.texi:4136 msgid "Some packages install programs with different ``dependency footprints''. For instance, the WordNet package installs both command-line tools and graphical user interfaces (GUIs). The former depend solely on the C library, whereas the latter depend on Tcl/Tk and the underlying X libraries. In this case, we leave the command-line tools in the default output, whereas the GUIs are in a separate output. This allows users who do not need the GUIs to save space. The @command{guix size} command can help find out about such situations (@pxref{Invoking guix size}). @command{guix graph} can also be helpful (@pxref{Invoking guix graph})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4126 +#: guix-git/doc/guix.texi:4144 msgid "There are several such multiple-output packages in the GNU distribution. Other conventional output names include @code{lib} for libraries and possibly header files, @code{bin} for stand-alone programs, and @code{debug} for debugging information (@pxref{Installing Debugging Files}). The outputs of a packages are listed in the third column of the output of @command{guix package --list-available} (@pxref{Invoking guix package})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4129 +#: guix-git/doc/guix.texi:4147 #, no-wrap msgid "Invoking @command{guix gc}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4131 +#: guix-git/doc/guix.texi:4149 #, no-wrap msgid "garbage collector" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4132 +#: guix-git/doc/guix.texi:4150 #, no-wrap msgid "disk space" msgstr "levytila" #. type: Plain text -#: guix-git/doc/guix.texi:4138 +#: guix-git/doc/guix.texi:4156 msgid "Packages that are installed, but not used, may be @dfn{garbage-collected}. The @command{guix gc} command allows users to explicitly run the garbage collector to reclaim space from the @file{/gnu/store} directory. It is the @emph{only} way to remove files from @file{/gnu/store}---removing files or directories manually may break it beyond repair!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4149 +#: guix-git/doc/guix.texi:4167 msgid "The garbage collector has a set of known @dfn{roots}: any file under @file{/gnu/store} reachable from a root is considered @dfn{live} and cannot be deleted; any other file is considered @dfn{dead} and may be deleted. The set of garbage collector roots (``GC roots'' for short) includes default user profiles; by default, the symlinks under @file{/var/guix/gcroots} represent these GC roots. New GC roots can be added with @command{guix build --root}, for example (@pxref{Invoking guix build}). The @command{guix gc --list-roots} command lists them." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4155 +#: guix-git/doc/guix.texi:4173 msgid "Prior to running @code{guix gc --collect-garbage} to make space, it is often useful to remove old generations from user profiles; that way, old package builds referenced by those generations can be reclaimed. This is achieved by running @code{guix package --delete-generations} (@pxref{Invoking guix package})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4159 +#: guix-git/doc/guix.texi:4177 msgid "Our recommendation is to run a garbage collection periodically, or when you are short on disk space. For instance, to guarantee that at least 5@tie{}GB are available on your disk, simply run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4162 +#: guix-git/doc/guix.texi:4180 #, no-wrap msgid "guix gc -F 5G\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4171 +#: guix-git/doc/guix.texi:4189 msgid "It is perfectly safe to run as a non-interactive periodic job (@pxref{Scheduled Job Execution}, for how to set up such a job). Running @command{guix gc} with no arguments will collect as much garbage as it can, but that is often inconvenient: you may find yourself having to rebuild or re-download software that is ``dead'' from the GC viewpoint but that is necessary to build other pieces of software---e.g., the compiler tool chain." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4177 +#: guix-git/doc/guix.texi:4195 msgid "The @command{guix gc} command has three modes of operation: it can be used to garbage-collect any dead files (the default), to delete specific files (the @option{--delete} option), to print garbage-collector information, or for more advanced queries. The garbage collection options are as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4179 +#: guix-git/doc/guix.texi:4197 #, no-wrap msgid "--collect-garbage[=@var{min}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4180 +#: guix-git/doc/guix.texi:4198 #, no-wrap msgid "-C [@var{min}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4184 +#: guix-git/doc/guix.texi:4202 msgid "Collect garbage---i.e., unreachable @file{/gnu/store} files and sub-directories. This is the default operation when no option is specified." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4189 +#: guix-git/doc/guix.texi:4207 msgid "When @var{min} is given, stop once @var{min} bytes have been collected. @var{min} may be a number of bytes, or it may include a unit as a suffix, such as @code{MiB} for mebibytes and @code{GB} for gigabytes (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4191 +#: guix-git/doc/guix.texi:4209 msgid "When @var{min} is omitted, collect all the garbage." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4192 +#: guix-git/doc/guix.texi:4210 #, no-wrap msgid "--free-space=@var{free}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4193 +#: guix-git/doc/guix.texi:4211 #, no-wrap msgid "-F @var{free}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4197 +#: guix-git/doc/guix.texi:4215 msgid "Collect garbage until @var{free} space is available under @file{/gnu/store}, if possible; @var{free} denotes storage space, such as @code{500MiB}, as described above." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4200 +#: guix-git/doc/guix.texi:4218 msgid "When @var{free} or more is already available in @file{/gnu/store}, do nothing and exit immediately." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4201 +#: guix-git/doc/guix.texi:4219 #, no-wrap msgid "--delete-generations[=@var{duration}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4202 +#: guix-git/doc/guix.texi:4220 #, no-wrap msgid "-d [@var{duration}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4206 +#: guix-git/doc/guix.texi:4224 msgid "Before starting the garbage collection process, delete all the generations older than @var{duration}, for all the user profiles; when run as root, this applies to all the profiles @emph{of all the users}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4210 +#: guix-git/doc/guix.texi:4228 msgid "For example, this command deletes all the generations of all your profiles that are older than 2 months (except generations that are current), and then proceeds to free space until at least 10 GiB are available:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4213 +#: guix-git/doc/guix.texi:4231 #, no-wrap msgid "guix gc -d 2m -F 10G\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4215 +#: guix-git/doc/guix.texi:4233 #, no-wrap msgid "--delete" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4216 guix-git/doc/guix.texi:5740 +#: guix-git/doc/guix.texi:4234 guix-git/doc/guix.texi:5758 #, no-wrap msgid "-D" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4220 +#: guix-git/doc/guix.texi:4238 msgid "Attempt to delete all the store files and directories specified as arguments. This fails if some of the files are not in the store, or if they are still live." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4221 +#: guix-git/doc/guix.texi:4239 #, no-wrap msgid "--list-failures" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4223 +#: guix-git/doc/guix.texi:4241 msgid "List store items corresponding to cached build failures." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4227 +#: guix-git/doc/guix.texi:4245 msgid "This prints nothing unless the daemon was started with @option{--cache-failures} (@pxref{Invoking guix-daemon, @option{--cache-failures}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4228 +#: guix-git/doc/guix.texi:4246 #, no-wrap msgid "--list-roots" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4231 +#: guix-git/doc/guix.texi:4249 msgid "List the GC roots owned by the user; when run as root, list @emph{all} the GC roots." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4232 +#: guix-git/doc/guix.texi:4250 #, no-wrap msgid "--list-busy" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4235 +#: guix-git/doc/guix.texi:4253 msgid "List store items in use by currently running processes. These store items are effectively considered GC roots: they cannot be deleted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4236 +#: guix-git/doc/guix.texi:4254 #, no-wrap msgid "--clear-failures" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4238 +#: guix-git/doc/guix.texi:4256 msgid "Remove the specified store items from the failed-build cache." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4241 +#: guix-git/doc/guix.texi:4259 msgid "Again, this option only makes sense when the daemon is started with @option{--cache-failures}. Otherwise, it does nothing." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4242 +#: guix-git/doc/guix.texi:4260 #, no-wrap msgid "--list-dead" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4245 +#: guix-git/doc/guix.texi:4263 msgid "Show the list of dead files and directories still present in the store---i.e., files and directories no longer reachable from any root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4246 +#: guix-git/doc/guix.texi:4264 #, no-wrap msgid "--list-live" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4248 +#: guix-git/doc/guix.texi:4266 msgid "Show the list of live store files and directories." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4252 +#: guix-git/doc/guix.texi:4270 msgid "In addition, the references among existing store files can be queried:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4255 +#: guix-git/doc/guix.texi:4273 #, no-wrap msgid "--references" msgstr "--viitteet" #. type: itemx -#: guix-git/doc/guix.texi:4256 +#: guix-git/doc/guix.texi:4274 #, no-wrap msgid "--referrers" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4257 guix-git/doc/guix.texi:13205 +#: guix-git/doc/guix.texi:4275 guix-git/doc/guix.texi:13562 #, no-wrap msgid "package dependencies" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4260 +#: guix-git/doc/guix.texi:4278 msgid "List the references (respectively, the referrers) of store files given as arguments." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4261 +#: guix-git/doc/guix.texi:4279 #, no-wrap msgid "--requisites" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4262 guix-git/doc/guix.texi:6501 +#: guix-git/doc/guix.texi:4280 guix-git/doc/guix.texi:6544 #, no-wrap msgid "-R" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4263 guix-git/doc/guix.texi:13061 -#: guix-git/doc/guix.texi:13089 guix-git/doc/guix.texi:13170 +#: guix-git/doc/guix.texi:4281 guix-git/doc/guix.texi:13418 +#: guix-git/doc/guix.texi:13446 guix-git/doc/guix.texi:13527 #, no-wrap msgid "closure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4268 +#: guix-git/doc/guix.texi:4286 msgid "List the requisites of the store files passed as arguments. Requisites include the store files themselves, their references, and the references of these, recursively. In other words, the returned list is the @dfn{transitive closure} of the store files." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4272 +#: guix-git/doc/guix.texi:4290 msgid "@xref{Invoking guix size}, for a tool to profile the size of the closure of an element. @xref{Invoking guix graph}, for a tool to visualize the graph of references." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4273 +#: guix-git/doc/guix.texi:4291 #, no-wrap msgid "--derivers" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4274 guix-git/doc/guix.texi:6815 -#: guix-git/doc/guix.texi:12917 guix-git/doc/guix.texi:13314 +#: guix-git/doc/guix.texi:4292 guix-git/doc/guix.texi:6858 +#: guix-git/doc/guix.texi:13274 guix-git/doc/guix.texi:13671 #, no-wrap msgid "derivation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4277 +#: guix-git/doc/guix.texi:4295 msgid "Return the derivation(s) leading to the given store items (@pxref{Derivations})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4279 +#: guix-git/doc/guix.texi:4297 msgid "For example, this command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4282 +#: guix-git/doc/guix.texi:4300 #, no-wrap msgid "guix gc --derivers $(guix package -I ^emacs$ | cut -f4)\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4287 +#: guix-git/doc/guix.texi:4305 msgid "returns the @file{.drv} file(s) leading to the @code{emacs} package installed in your profile." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4291 +#: guix-git/doc/guix.texi:4309 msgid "Note that there may be zero matching @file{.drv} files, for instance because these files have been garbage-collected. There can also be more than one matching @file{.drv} due to fixed-output derivations." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4295 +#: guix-git/doc/guix.texi:4313 msgid "Lastly, the following options allow you to check the integrity of the store and to control disk usage." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4298 +#: guix-git/doc/guix.texi:4316 #, no-wrap msgid "--verify[=@var{options}]" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4299 +#: guix-git/doc/guix.texi:4317 #, no-wrap msgid "integrity, of the store" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4300 +#: guix-git/doc/guix.texi:4318 #, no-wrap msgid "integrity checking" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4302 +#: guix-git/doc/guix.texi:4320 msgid "Verify the integrity of the store." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4305 +#: guix-git/doc/guix.texi:4323 msgid "By default, make sure that all the store items marked as valid in the database of the daemon actually exist in @file{/gnu/store}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4308 +#: guix-git/doc/guix.texi:4326 msgid "When provided, @var{options} must be a comma-separated list containing one or more of @code{contents} and @code{repair}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4314 +#: guix-git/doc/guix.texi:4332 msgid "When passing @option{--verify=contents}, the daemon computes the content hash of each store item and compares it against its hash in the database. Hash mismatches are reported as data corruptions. Because it traverses @emph{all the files in the store}, this command can take a long time, especially on systems with a slow disk drive." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4315 +#: guix-git/doc/guix.texi:4333 #, no-wrap msgid "repairing the store" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4316 guix-git/doc/guix.texi:11564 +#: guix-git/doc/guix.texi:4334 guix-git/doc/guix.texi:11878 #, no-wrap msgid "corruption, recovering from" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4324 +#: guix-git/doc/guix.texi:4342 msgid "Using @option{--verify=repair} or @option{--verify=contents,repair} causes the daemon to try to repair corrupt store items by fetching substitutes for them (@pxref{Substitutes}). Because repairing is not atomic, and thus potentially dangerous, it is available only to the system administrator. A lightweight alternative, when you know exactly which items in the store are corrupt, is @command{guix build --repair} (@pxref{Invoking guix build})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4325 +#: guix-git/doc/guix.texi:4343 #, no-wrap msgid "--optimize" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4329 +#: guix-git/doc/guix.texi:4347 msgid "Optimize the store by hard-linking identical files---this is @dfn{deduplication}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4335 +#: guix-git/doc/guix.texi:4353 msgid "The daemon performs deduplication after each successful build or archive import, unless it was started with @option{--disable-deduplication} (@pxref{Invoking guix-daemon, @option{--disable-deduplication}}). Thus, this option is primarily useful when the daemon was running with @option{--disable-deduplication}." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4339 +#: guix-git/doc/guix.texi:4357 #, no-wrap msgid "Invoking @command{guix pull}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4341 +#: guix-git/doc/guix.texi:4359 #, no-wrap msgid "upgrading Guix" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4342 +#: guix-git/doc/guix.texi:4360 #, no-wrap msgid "updating Guix" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:4343 +#: guix-git/doc/guix.texi:4361 #, no-wrap msgid "guix pull" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4344 +#: guix-git/doc/guix.texi:4362 #, no-wrap msgid "pull" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4345 +#: guix-git/doc/guix.texi:4363 #, no-wrap msgid "security, @command{guix pull}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4346 +#: guix-git/doc/guix.texi:4364 #, no-wrap msgid "authenticity, of code obtained with @command{guix pull}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4356 +#: guix-git/doc/guix.texi:4374 msgid "Packages are installed or upgraded to the latest version available in the distribution currently available on your local machine. To update that distribution, along with the Guix tools, you must run @command{guix pull}: the command downloads the latest Guix source code and package descriptions, and deploys it. Source code is downloaded from a @uref{https://git-scm.com, Git} repository, by default the official GNU@tie{}Guix repository, though this can be customized. @command{guix pull} ensures that the code it downloads is @emph{authentic} by verifying that commits are signed by Guix developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4359 +#: guix-git/doc/guix.texi:4377 msgid "Specifically, @command{guix pull} downloads code from the @dfn{channels} (@pxref{Channels}) specified by one of the followings, in this order:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4363 +#: guix-git/doc/guix.texi:4381 msgid "the @option{--channels} option;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4365 +#: guix-git/doc/guix.texi:4383 msgid "the user's @file{~/.config/guix/channels.scm} file;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4367 +#: guix-git/doc/guix.texi:4385 msgid "the system-wide @file{/etc/guix/channels.scm} file;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4370 +#: guix-git/doc/guix.texi:4388 msgid "the built-in default channels specified in the @code{%default-channels} variable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4377 +#: guix-git/doc/guix.texi:4395 msgid "On completion, @command{guix package} will use packages and package versions from this just-retrieved copy of Guix. Not only that, but all the Guix commands and Scheme modules will also be taken from that latest version. New @command{guix} sub-commands added by the update also become available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4383 +#: guix-git/doc/guix.texi:4401 msgid "Any user can update their Guix copy using @command{guix pull}, and the effect is limited to the user who ran @command{guix pull}. For instance, when user @code{root} runs @command{guix pull}, this has no effect on the version of Guix that user @code{alice} sees, and vice versa." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4389 +#: guix-git/doc/guix.texi:4407 msgid "The result of running @command{guix pull} is a @dfn{profile} available under @file{~/.config/guix/current} containing the latest Guix. Thus, make sure to add it to the beginning of your search path so that you use the latest version, and similarly for the Info manual (@pxref{Documentation}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4393 +#: guix-git/doc/guix.texi:4411 #, no-wrap msgid "" "export PATH=\"$HOME/.config/guix/current/bin:$PATH\"\n" @@ -10607,12 +10685,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4397 +#: guix-git/doc/guix.texi:4415 msgid "The @option{--list-generations} or @option{-l} option lists past generations produced by @command{guix pull}, along with details about their provenance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4405 +#: guix-git/doc/guix.texi:4423 #, no-wrap msgid "" "$ guix pull -l\n" @@ -10625,7 +10703,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4415 +#: guix-git/doc/guix.texi:4433 #, no-wrap msgid "" "Generation 2\tJun 11 2018 11:02:49\n" @@ -10641,7 +10719,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4423 +#: guix-git/doc/guix.texi:4441 #, no-wrap msgid "" "Generation 3\tJun 13 2018 23:31:07\t(current)\n" @@ -10654,17 +10732,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4427 +#: guix-git/doc/guix.texi:4445 msgid "@xref{Invoking guix describe, @command{guix describe}}, for other ways to describe the current status of Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4432 +#: guix-git/doc/guix.texi:4450 msgid "This @code{~/.config/guix/current} profile works exactly like the profiles created by @command{guix package} (@pxref{Invoking guix package}). That is, you can list generations, roll back to the previous generation---i.e., the previous Guix---and so on:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4438 +#: guix-git/doc/guix.texi:4456 #, no-wrap msgid "" "$ guix pull --roll-back\n" @@ -10674,12 +10752,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4442 +#: guix-git/doc/guix.texi:4460 msgid "You can also use @command{guix package} (@pxref{Invoking guix package}) to manage the profile by naming it explicitly:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4447 +#: guix-git/doc/guix.texi:4465 #, no-wrap msgid "" "$ guix package -p ~/.config/guix/current --roll-back\n" @@ -10689,354 +10767,355 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4451 +#: guix-git/doc/guix.texi:4469 msgid "The @command{guix pull} command is usually invoked with no arguments, but it supports the following options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4453 guix-git/doc/guix.texi:4611 +#: guix-git/doc/guix.texi:4471 guix-git/doc/guix.texi:4629 #, no-wrap msgid "--url=@var{url}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4454 guix-git/doc/guix.texi:4612 +#: guix-git/doc/guix.texi:4472 guix-git/doc/guix.texi:4630 #, no-wrap msgid "--commit=@var{commit}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4455 guix-git/doc/guix.texi:4613 +#: guix-git/doc/guix.texi:4473 guix-git/doc/guix.texi:4631 #, no-wrap msgid "--branch=@var{branch}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4459 +#: guix-git/doc/guix.texi:4477 msgid "Download code for the @code{guix} channel from the specified @var{url}, at the given @var{commit} (a valid Git commit ID represented as a hexadecimal string), or @var{branch}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4460 guix-git/doc/guix.texi:5057 +#: guix-git/doc/guix.texi:4478 guix-git/doc/guix.texi:5075 #, no-wrap msgid "@file{channels.scm}, configuration file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4461 guix-git/doc/guix.texi:5058 +#: guix-git/doc/guix.texi:4479 guix-git/doc/guix.texi:5076 #, no-wrap msgid "configuration file for channels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4465 +#: guix-git/doc/guix.texi:4483 msgid "These options are provided for convenience, but you can also specify your configuration in the @file{~/.config/guix/channels.scm} file or using the @option{--channels} option (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4466 guix-git/doc/guix.texi:4618 +#: guix-git/doc/guix.texi:4484 guix-git/doc/guix.texi:4636 #, no-wrap msgid "--channels=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4467 guix-git/doc/guix.texi:4619 +#: guix-git/doc/guix.texi:4485 guix-git/doc/guix.texi:4637 #, no-wrap msgid "-C @var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4473 +#: guix-git/doc/guix.texi:4491 msgid "Read the list of channels from @var{file} instead of @file{~/.config/guix/channels.scm} or @file{/etc/guix/channels.scm}. @var{file} must contain Scheme code that evaluates to a list of channel objects. @xref{Channels}, for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4474 +#: guix-git/doc/guix.texi:4492 #, no-wrap msgid "channel news" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4475 +#: guix-git/doc/guix.texi:4493 #, no-wrap msgid "--news" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4476 guix-git/doc/guix.texi:5864 -#: guix-git/doc/guix.texi:6247 guix-git/doc/guix.texi:35304 +#: guix-git/doc/guix.texi:4494 guix-git/doc/guix.texi:5877 +#: guix-git/doc/guix.texi:6290 guix-git/doc/guix.texi:35748 #, no-wrap msgid "-N" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4480 +#: guix-git/doc/guix.texi:4498 msgid "Display the list of packages added or upgraded since the previous generation, as well as, occasionally, news written by channel authors for their users (@pxref{Channels, Writing Channel News})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4484 +#: guix-git/doc/guix.texi:4502 msgid "The package information is the same as displayed upon @command{guix pull} completion, but without ellipses; it is also similar to the output of @command{guix pull -l} for the last generation (see below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4491 +#: guix-git/doc/guix.texi:4509 msgid "List all the generations of @file{~/.config/guix/current} or, if @var{pattern} is provided, the subset of generations that match @var{pattern}. The syntax of @var{pattern} is the same as with @code{guix package --list-generations} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4498 +#: guix-git/doc/guix.texi:4516 msgid "Roll back to the previous @dfn{generation} of @file{~/.config/guix/current}---i.e., undo the last transaction." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4522 +#: guix-git/doc/guix.texi:4540 msgid "If the current generation matches, it is @emph{not} deleted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4528 +#: guix-git/doc/guix.texi:4546 msgid "@xref{Invoking guix describe}, for a way to display information about the current generation only." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4532 +#: guix-git/doc/guix.texi:4550 msgid "Use @var{profile} instead of @file{~/.config/guix/current}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4533 guix-git/doc/guix.texi:10893 -#: guix-git/doc/guix.texi:12836 +#: guix-git/doc/guix.texi:4551 guix-git/doc/guix.texi:11207 +#: guix-git/doc/guix.texi:13162 #, no-wrap msgid "--dry-run" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4534 guix-git/doc/guix.texi:10894 -#: guix-git/doc/guix.texi:12837 guix-git/doc/guix.texi:13043 +#: guix-git/doc/guix.texi:4552 guix-git/doc/guix.texi:11208 +#: guix-git/doc/guix.texi:13163 guix-git/doc/guix.texi:13400 #, no-wrap msgid "-n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4537 +#: guix-git/doc/guix.texi:4555 msgid "Show which channel commit(s) would be used and what would be built or substituted but do not actually do it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4538 guix-git/doc/guix.texi:35323 +#: guix-git/doc/guix.texi:4556 guix-git/doc/guix.texi:35767 +#: guix-git/doc/guix.texi:38198 #, no-wrap msgid "--allow-downgrades" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4541 +#: guix-git/doc/guix.texi:4559 msgid "Allow pulling older or unrelated revisions of channels than those currently in use." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4542 +#: guix-git/doc/guix.texi:4560 #, no-wrap msgid "downgrade attacks, protection against" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4547 +#: guix-git/doc/guix.texi:4565 msgid "By default, @command{guix pull} protects against so-called ``downgrade attacks'' whereby the Git repository of a channel would be reset to an earlier or unrelated revision of itself, potentially leading you to install older, known-vulnerable versions of software packages." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4551 guix-git/doc/guix.texi:35337 +#: guix-git/doc/guix.texi:4569 guix-git/doc/guix.texi:35781 msgid "Make sure you understand its security implications before using @option{--allow-downgrades}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4553 +#: guix-git/doc/guix.texi:4571 #, no-wrap msgid "--disable-authentication" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4555 +#: guix-git/doc/guix.texi:4573 msgid "Allow pulling channel code without authenticating it." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4556 guix-git/doc/guix.texi:5203 +#: guix-git/doc/guix.texi:4574 guix-git/doc/guix.texi:5221 #, no-wrap msgid "authentication, of channel code" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4561 +#: guix-git/doc/guix.texi:4579 msgid "By default, @command{guix pull} authenticates code downloaded from channels by verifying that its commits are signed by authorized developers, and raises an error if this is not the case. This option instructs it to not perform any such verification." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4565 +#: guix-git/doc/guix.texi:4583 msgid "Make sure you understand its security implications before using @option{--disable-authentication}." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4568 guix-git/doc/guix.texi:5847 -#: guix-git/doc/guix.texi:6230 guix-git/doc/guix.texi:6630 -#: guix-git/doc/guix.texi:11506 guix-git/doc/guix.texi:13188 -#: guix-git/doc/guix.texi:13453 guix-git/doc/guix.texi:14130 -#: guix-git/doc/guix.texi:35252 +#: guix-git/doc/guix.texi:4586 guix-git/doc/guix.texi:5860 +#: guix-git/doc/guix.texi:6273 guix-git/doc/guix.texi:6673 +#: guix-git/doc/guix.texi:11820 guix-git/doc/guix.texi:13545 +#: guix-git/doc/guix.texi:13810 guix-git/doc/guix.texi:14487 +#: guix-git/doc/guix.texi:35696 #, no-wrap msgid "-s @var{system}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4571 guix-git/doc/guix.texi:6633 +#: guix-git/doc/guix.texi:4589 guix-git/doc/guix.texi:6676 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of the system type of the build host." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4575 +#: guix-git/doc/guix.texi:4593 msgid "Use the bootstrap Guile to build the latest Guix. This option is only useful to Guix developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4581 +#: guix-git/doc/guix.texi:4599 msgid "The @dfn{channel} mechanism allows you to instruct @command{guix pull} which repository and branch to pull from, as well as @emph{additional} repositories containing package modules that should be deployed. @xref{Channels}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4584 +#: guix-git/doc/guix.texi:4602 msgid "In addition, @command{guix pull} supports all the common build options (@pxref{Common Build Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4586 +#: guix-git/doc/guix.texi:4604 #, no-wrap msgid "Invoking @command{guix time-machine}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:4588 +#: guix-git/doc/guix.texi:4606 #, no-wrap msgid "guix time-machine" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4589 guix-git/doc/guix.texi:5161 +#: guix-git/doc/guix.texi:4607 guix-git/doc/guix.texi:5179 #, no-wrap msgid "pinning, channels" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4590 guix-git/doc/guix.texi:4772 -#: guix-git/doc/guix.texi:5162 +#: guix-git/doc/guix.texi:4608 guix-git/doc/guix.texi:4790 +#: guix-git/doc/guix.texi:5180 #, no-wrap msgid "replicating Guix" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4591 guix-git/doc/guix.texi:5163 +#: guix-git/doc/guix.texi:4609 guix-git/doc/guix.texi:5181 #, no-wrap msgid "reproducibility, of Guix" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4599 +#: guix-git/doc/guix.texi:4617 msgid "The @command{guix time-machine} command provides access to other revisions of Guix, for example to install older versions of packages, or to reproduce a computation in an identical environment. The revision of Guix to be used is defined by a commit or by a channel description file created by @command{guix describe} (@pxref{Invoking guix describe})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4601 guix-git/doc/guix.texi:5623 -#: guix-git/doc/guix.texi:5974 guix-git/doc/guix.texi:6753 -#: guix-git/doc/guix.texi:10689 guix-git/doc/guix.texi:10813 -#: guix-git/doc/guix.texi:11797 guix-git/doc/guix.texi:11892 -#: guix-git/doc/guix.texi:12825 guix-git/doc/guix.texi:13018 -#: guix-git/doc/guix.texi:13511 guix-git/doc/guix.texi:13884 -#: guix-git/doc/guix.texi:13973 guix-git/doc/guix.texi:14012 -#: guix-git/doc/guix.texi:14109 +#: guix-git/doc/guix.texi:4619 guix-git/doc/guix.texi:5641 +#: guix-git/doc/guix.texi:6011 guix-git/doc/guix.texi:6796 +#: guix-git/doc/guix.texi:11003 guix-git/doc/guix.texi:11127 +#: guix-git/doc/guix.texi:12111 guix-git/doc/guix.texi:12207 +#: guix-git/doc/guix.texi:13148 guix-git/doc/guix.texi:13375 +#: guix-git/doc/guix.texi:13868 guix-git/doc/guix.texi:14241 +#: guix-git/doc/guix.texi:14330 guix-git/doc/guix.texi:14369 +#: guix-git/doc/guix.texi:14466 msgid "The general syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4604 +#: guix-git/doc/guix.texi:4622 #, no-wrap msgid "guix time-machine @var{options}@dots{} -- @var{command} @var {arg}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4609 +#: guix-git/doc/guix.texi:4627 msgid "where @var{command} and @var{arg}@dots{} are passed unmodified to the @command{guix} command of the specified revision. The @var{options} that define this revision are the same as for @command{guix pull} (@pxref{Invoking guix pull}):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4617 +#: guix-git/doc/guix.texi:4635 msgid "Use the @code{guix} channel from the specified @var{url}, at the given @var{commit} (a valid Git commit ID represented as a hexadecimal string), or @var{branch}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4623 +#: guix-git/doc/guix.texi:4641 msgid "Read the list of channels from @var{file}. @var{file} must contain Scheme code that evaluates to a list of channel objects. @xref{Channels} for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4627 +#: guix-git/doc/guix.texi:4645 msgid "As for @command{guix pull}, the absence of any options means that the latest commit on the master branch will be used. The command" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4630 +#: guix-git/doc/guix.texi:4648 #, no-wrap msgid "guix time-machine -- build hello\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4635 +#: guix-git/doc/guix.texi:4653 msgid "will thus build the package @code{hello} as defined in the master branch, which is in general a newer revision of Guix than you have installed. Time travel works in both directions!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4639 +#: guix-git/doc/guix.texi:4657 msgid "Note that @command{guix time-machine} can trigger builds of channels and their dependencies, and these are controlled by the standard build options (@pxref{Common Build Options})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4647 +#: guix-git/doc/guix.texi:4665 msgid "The functionality described here is a ``technology preview'' as of version @value{VERSION}. As such, the interface is subject to change." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4649 guix-git/doc/guix.texi:10726 +#: guix-git/doc/guix.texi:4667 guix-git/doc/guix.texi:11040 #, no-wrap msgid "inferiors" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4650 +#: guix-git/doc/guix.texi:4668 #, no-wrap msgid "composition of Guix revisions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4655 +#: guix-git/doc/guix.texi:4673 msgid "Sometimes you might need to mix packages from the revision of Guix you're currently running with packages available in a different revision of Guix. Guix @dfn{inferiors} allow you to achieve that by composing different Guix revisions in arbitrary ways." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4656 guix-git/doc/guix.texi:4721 +#: guix-git/doc/guix.texi:4674 guix-git/doc/guix.texi:4739 #, no-wrap msgid "inferior packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4662 +#: guix-git/doc/guix.texi:4680 msgid "Technically, an ``inferior'' is essentially a separate Guix process connected to your main Guix process through a REPL (@pxref{Invoking guix repl}). The @code{(guix inferior)} module allows you to create inferiors and to communicate with them. It also provides a high-level interface to browse and manipulate the packages that an inferior provides---@dfn{inferior packages}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4672 +#: guix-git/doc/guix.texi:4690 msgid "When combined with channels (@pxref{Channels}), inferiors provide a simple way to interact with a separate revision of Guix. For example, let's assume you want to install in your profile the current @code{guile} package, along with the @code{guile-json} as it existed in an older revision of Guix---perhaps because the newer @code{guile-json} has an incompatible API and you want to run your code against the old API@. To do that, you could write a manifest for use by @code{guix package --manifest} (@pxref{Invoking guix package}); in that manifest, you would create an inferior for that old Guix revision you care about, and you would look up the @code{guile-json} package in the inferior:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4676 +#: guix-git/doc/guix.texi:4694 #, no-wrap msgid "" "(use-modules (guix inferior) (guix channels)\n" @@ -11045,7 +11124,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4685 +#: guix-git/doc/guix.texi:4703 #, no-wrap msgid "" "(define channels\n" @@ -11060,7 +11139,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4689 +#: guix-git/doc/guix.texi:4707 #, no-wrap msgid "" "(define inferior\n" @@ -11070,7 +11149,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4695 +#: guix-git/doc/guix.texi:4713 #, no-wrap msgid "" ";; Now create a manifest with the current \"guile\" package\n" @@ -11081,186 +11160,186 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4700 +#: guix-git/doc/guix.texi:4718 msgid "On its first run, @command{guix package --manifest} might have to build the channel you specified before it can create the inferior; subsequent runs will be much faster because the Guix revision will be cached." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4703 +#: guix-git/doc/guix.texi:4721 msgid "The @code{(guix inferior)} module provides the following procedures to open an inferior:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4704 +#: guix-git/doc/guix.texi:4722 #, no-wrap msgid "{Scheme Procedure} inferior-for-channels @var{channels} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4709 +#: guix-git/doc/guix.texi:4727 msgid "[#:cache-directory] [#:ttl] Return an inferior for @var{channels}, a list of channels. Use the cache at @var{cache-directory}, where entries can be reclaimed after @var{ttl} seconds. This procedure opens a new connection to the build daemon." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4712 +#: guix-git/doc/guix.texi:4730 msgid "As a side effect, this procedure may build or substitute binaries for @var{channels}, which can take time." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4714 +#: guix-git/doc/guix.texi:4732 #, no-wrap msgid "{Scheme Procedure} open-inferior @var{directory} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4719 +#: guix-git/doc/guix.texi:4737 msgid "[#:command \"bin/guix\"] Open the inferior Guix in @var{directory}, running @code{@var{directory}/@var{command} repl} or equivalent. Return @code{#f} if the inferior could not be launched." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4724 +#: guix-git/doc/guix.texi:4742 msgid "The procedures listed below allow you to obtain and manipulate inferior packages." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4725 +#: guix-git/doc/guix.texi:4743 #, no-wrap msgid "{Scheme Procedure} inferior-packages @var{inferior}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4727 +#: guix-git/doc/guix.texi:4745 msgid "Return the list of packages known to @var{inferior}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4729 +#: guix-git/doc/guix.texi:4747 #, no-wrap msgid "{Scheme Procedure} lookup-inferior-packages @var{inferior} @var{name} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4734 +#: guix-git/doc/guix.texi:4752 msgid "[@var{version}] Return the sorted list of inferior packages matching @var{name} in @var{inferior}, with highest version numbers first. If @var{version} is true, return only packages with a version number prefixed by @var{version}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4736 +#: guix-git/doc/guix.texi:4754 #, no-wrap msgid "{Scheme Procedure} inferior-package? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4738 +#: guix-git/doc/guix.texi:4756 msgid "Return true if @var{obj} is an inferior package." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4740 +#: guix-git/doc/guix.texi:4758 #, no-wrap msgid "{Scheme Procedure} inferior-package-name @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4741 +#: guix-git/doc/guix.texi:4759 #, no-wrap msgid "{Scheme Procedure} inferior-package-version @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4742 +#: guix-git/doc/guix.texi:4760 #, no-wrap msgid "{Scheme Procedure} inferior-package-synopsis @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4743 +#: guix-git/doc/guix.texi:4761 #, no-wrap msgid "{Scheme Procedure} inferior-package-description @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4744 +#: guix-git/doc/guix.texi:4762 #, no-wrap msgid "{Scheme Procedure} inferior-package-home-page @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4745 +#: guix-git/doc/guix.texi:4763 #, no-wrap msgid "{Scheme Procedure} inferior-package-location @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4746 +#: guix-git/doc/guix.texi:4764 #, no-wrap msgid "{Scheme Procedure} inferior-package-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4747 +#: guix-git/doc/guix.texi:4765 #, no-wrap msgid "{Scheme Procedure} inferior-package-native-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4748 +#: guix-git/doc/guix.texi:4766 #, no-wrap msgid "{Scheme Procedure} inferior-package-propagated-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4749 +#: guix-git/doc/guix.texi:4767 #, no-wrap msgid "{Scheme Procedure} inferior-package-transitive-propagated-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4750 +#: guix-git/doc/guix.texi:4768 #, no-wrap msgid "{Scheme Procedure} inferior-package-native-search-paths @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4751 +#: guix-git/doc/guix.texi:4769 #, no-wrap msgid "{Scheme Procedure} inferior-package-transitive-native-search-paths @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4752 +#: guix-git/doc/guix.texi:4770 #, no-wrap msgid "{Scheme Procedure} inferior-package-search-paths @var{package}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4757 +#: guix-git/doc/guix.texi:4775 msgid "These procedures are the counterpart of package record accessors (@pxref{package Reference}). Most of them work by querying the inferior @var{package} comes from, so the inferior must still be live when you call these procedures." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4767 +#: guix-git/doc/guix.texi:4785 msgid "Inferior packages can be used transparently like any other package or file-like object in G-expressions (@pxref{G-Expressions}). They are also transparently handled by the @code{packages->manifest} procedure, which is commonly used in manifests (@pxref{Invoking guix package, the @option{--manifest} option of @command{guix package}}). Thus you can insert an inferior package pretty much anywhere you would insert a regular package: in manifests, in the @code{packages} field of your @code{operating-system} declaration, and so on." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4769 +#: guix-git/doc/guix.texi:4787 #, no-wrap msgid "Invoking @command{guix describe}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4780 +#: guix-git/doc/guix.texi:4798 msgid "Often you may want to answer questions like: ``Which revision of Guix am I using?'' or ``Which channels am I using?'' This is useful information in many situations: if you want to @emph{replicate} an environment on a different machine or user account, if you want to report a bug or to determine what change in the channels you are using caused it, or if you want to record your system state for reproducibility purposes. The @command{guix describe} command answers these questions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4784 +#: guix-git/doc/guix.texi:4802 msgid "When run from a @command{guix pull}ed @command{guix}, @command{guix describe} displays the channel(s) that it was built from, including their repository URL and commit IDs (@pxref{Channels}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4792 +#: guix-git/doc/guix.texi:4810 #, no-wrap msgid "" "$ guix describe\n" @@ -11272,17 +11351,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4801 +#: guix-git/doc/guix.texi:4819 msgid "If you're familiar with the Git version control system, this is similar in spirit to @command{git describe}; the output is also similar to that of @command{guix pull --list-generations}, but limited to the current generation (@pxref{Invoking guix pull, the @option{--list-generations} option}). Because the Git commit ID shown above unambiguously refers to a snapshot of Guix, this information is all it takes to describe the revision of Guix you're using, and also to replicate it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4804 +#: guix-git/doc/guix.texi:4822 msgid "To make it easier to replicate Guix, @command{guix describe} can also be asked to return a list of channels instead of the human-readable description above:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4817 +#: guix-git/doc/guix.texi:4835 #, no-wrap msgid "" "$ guix describe -f channels\n" @@ -11299,190 +11378,190 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4826 +#: guix-git/doc/guix.texi:4844 msgid "You can save this to a file and feed it to @command{guix pull -C} on some other machine or at a later point in time, which will instantiate @emph{this exact Guix revision} (@pxref{Invoking guix pull, the @option{-C} option}). From there on, since you're able to deploy the same revision of Guix, you can just as well @emph{replicate a complete software environment}. We humbly think that this is @emph{awesome}, and we hope you'll like it too!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4829 +#: guix-git/doc/guix.texi:4847 msgid "The details of the options supported by @command{guix describe} are as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4831 guix-git/doc/guix.texi:6431 -#: guix-git/doc/guix.texi:14242 +#: guix-git/doc/guix.texi:4849 guix-git/doc/guix.texi:6474 +#: guix-git/doc/guix.texi:14599 #, no-wrap msgid "--format=@var{format}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4832 guix-git/doc/guix.texi:6432 -#: guix-git/doc/guix.texi:14243 +#: guix-git/doc/guix.texi:4850 guix-git/doc/guix.texi:6475 +#: guix-git/doc/guix.texi:14600 #, no-wrap msgid "-f @var{format}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4834 guix-git/doc/guix.texi:14245 +#: guix-git/doc/guix.texi:4852 guix-git/doc/guix.texi:14602 msgid "Produce output in the specified @var{format}, one of:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4836 +#: guix-git/doc/guix.texi:4854 #, no-wrap msgid "human" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4838 +#: guix-git/doc/guix.texi:4856 msgid "produce human-readable output;" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4838 guix-git/doc/guix.texi:5056 +#: guix-git/doc/guix.texi:4856 guix-git/doc/guix.texi:5074 #, no-wrap msgid "channels" msgstr "kanavat" #. type: table -#: guix-git/doc/guix.texi:4842 +#: guix-git/doc/guix.texi:4860 msgid "produce a list of channel specifications that can be passed to @command{guix pull -C} or installed as @file{~/.config/guix/channels.scm} (@pxref{Invoking guix pull});" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4842 +#: guix-git/doc/guix.texi:4860 #, no-wrap msgid "channels-sans-intro" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4848 +#: guix-git/doc/guix.texi:4866 msgid "like @code{channels}, but omit the @code{introduction} field; use it to produce a channel specification suitable for Guix version 1.1.0 or earlier---the @code{introduction} field has to do with channel authentication (@pxref{Channels, Channel Authentication}) and is not supported by these older versions;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4848 guix-git/doc/guix.texi:12109 +#: guix-git/doc/guix.texi:4866 guix-git/doc/guix.texi:12424 #, no-wrap msgid "json" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4849 +#: guix-git/doc/guix.texi:4867 #, no-wrap msgid "JSON" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4851 +#: guix-git/doc/guix.texi:4869 msgid "produce a list of channel specifications in JSON format;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4851 guix-git/doc/guix.texi:14247 +#: guix-git/doc/guix.texi:4869 guix-git/doc/guix.texi:14604 #, no-wrap msgid "recutils" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4853 +#: guix-git/doc/guix.texi:4871 msgid "produce a list of channel specifications in Recutils format." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4855 +#: guix-git/doc/guix.texi:4873 #, no-wrap msgid "--list-formats" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4857 +#: guix-git/doc/guix.texi:4875 msgid "Display available formats for @option{--format} option." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4861 +#: guix-git/doc/guix.texi:4879 msgid "Display information about @var{profile}." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4864 +#: guix-git/doc/guix.texi:4882 #, no-wrap msgid "Invoking @command{guix archive}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:4866 +#: guix-git/doc/guix.texi:4884 #, no-wrap msgid "guix archive" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4867 +#: guix-git/doc/guix.texi:4885 #, no-wrap msgid "archive" msgstr "arkisto" #. type: Plain text -#: guix-git/doc/guix.texi:4873 +#: guix-git/doc/guix.texi:4891 msgid "The @command{guix archive} command allows users to @dfn{export} files from the store into a single archive, and to later @dfn{import} them on a machine that runs Guix. In particular, it allows store files to be transferred from one machine to the store on another machine." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4877 +#: guix-git/doc/guix.texi:4895 msgid "If you're looking for a way to produce archives in a format suitable for tools other than Guix, @pxref{Invoking guix pack}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4879 +#: guix-git/doc/guix.texi:4897 #, no-wrap msgid "exporting store items" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4881 +#: guix-git/doc/guix.texi:4899 msgid "To export store files as an archive to standard output, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4884 +#: guix-git/doc/guix.texi:4902 #, no-wrap msgid "guix archive --export @var{options} @var{specifications}...\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4891 +#: guix-git/doc/guix.texi:4909 msgid "@var{specifications} may be either store file names or package specifications, as for @command{guix package} (@pxref{Invoking guix package}). For instance, the following command creates an archive containing the @code{gui} output of the @code{git} package and the main output of @code{emacs}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4894 +#: guix-git/doc/guix.texi:4912 #, no-wrap msgid "guix archive --export git:gui /gnu/store/...-emacs-24.3 > great.nar\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4899 +#: guix-git/doc/guix.texi:4917 msgid "If the specified packages are not built yet, @command{guix archive} automatically builds them. The build process may be controlled with the common build options (@pxref{Common Build Options})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4902 +#: guix-git/doc/guix.texi:4920 msgid "To transfer the @code{emacs} package to a machine connected over SSH, one would run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4905 +#: guix-git/doc/guix.texi:4923 #, no-wrap msgid "guix archive --export -r emacs | ssh the-machine guix archive --import\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4910 +#: guix-git/doc/guix.texi:4928 msgid "Similarly, a complete user profile may be transferred from one machine to another like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4914 +#: guix-git/doc/guix.texi:4932 #, no-wrap msgid "" "guix archive --export -r $(readlink -f ~/.guix-profile) | \\\n" @@ -11490,187 +11569,187 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4924 +#: guix-git/doc/guix.texi:4942 msgid "However, note that, in both examples, all of @code{emacs} and the profile as well as all of their dependencies are transferred (due to @option{-r}), regardless of what is already available in the store on the target machine. The @option{--missing} option can help figure out which items are missing from the target store. The @command{guix copy} command simplifies and optimizes this whole process, so this is probably what you should use in this case (@pxref{Invoking guix copy})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4925 +#: guix-git/doc/guix.texi:4943 #, no-wrap msgid "nar, archive format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4926 +#: guix-git/doc/guix.texi:4944 #, no-wrap msgid "normalized archive (nar)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4927 +#: guix-git/doc/guix.texi:4945 #, no-wrap msgid "nar bundle, archive format" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4932 +#: guix-git/doc/guix.texi:4950 msgid "Each store item is written in the @dfn{normalized archive} or @dfn{nar} format (described below), and the output of @command{guix archive --export} (and input of @command{guix archive --import}) is a @dfn{nar bundle}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4942 +#: guix-git/doc/guix.texi:4960 msgid "The nar format is comparable in spirit to `tar', but with differences that make it more appropriate for our purposes. First, rather than recording all Unix metadata for each file, the nar format only mentions the file type (regular, directory, or symbolic link); Unix permissions and owner/group are dismissed. Second, the order in which directory entries are stored always follows the order of file names according to the C locale collation order. This makes archive production fully deterministic." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4946 +#: guix-git/doc/guix.texi:4964 msgid "That nar bundle format is essentially the concatenation of zero or more nars along with metadata for each store item it contains: its file name, references, corresponding derivation, and a digital signature." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4952 +#: guix-git/doc/guix.texi:4970 msgid "When exporting, the daemon digitally signs the contents of the archive, and that digital signature is appended. When importing, the daemon verifies the signature and rejects the import in case of an invalid signature or if the signing key is not authorized." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4954 +#: guix-git/doc/guix.texi:4972 msgid "The main options are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4956 +#: guix-git/doc/guix.texi:4974 #, no-wrap msgid "--export" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4959 +#: guix-git/doc/guix.texi:4977 msgid "Export the specified store files or packages (see below). Write the resulting archive to the standard output." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4962 +#: guix-git/doc/guix.texi:4980 msgid "Dependencies are @emph{not} included in the output, unless @option{--recursive} is passed." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4963 guix-git/doc/guix.texi:11830 -#: guix-git/doc/guix.texi:11956 guix-git/doc/guix.texi:11981 -#: guix-git/doc/guix.texi:12013 guix-git/doc/guix.texi:12184 -#: guix-git/doc/guix.texi:12225 guix-git/doc/guix.texi:12276 -#: guix-git/doc/guix.texi:12301 guix-git/doc/guix.texi:12317 -#: guix-git/doc/guix.texi:12365 guix-git/doc/guix.texi:12401 +#: guix-git/doc/guix.texi:4981 guix-git/doc/guix.texi:12144 +#: guix-git/doc/guix.texi:12271 guix-git/doc/guix.texi:12296 +#: guix-git/doc/guix.texi:12328 guix-git/doc/guix.texi:12499 +#: guix-git/doc/guix.texi:12540 guix-git/doc/guix.texi:12591 +#: guix-git/doc/guix.texi:12616 guix-git/doc/guix.texi:12632 +#: guix-git/doc/guix.texi:12680 guix-git/doc/guix.texi:12716 #, no-wrap msgid "-r" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4964 guix-git/doc/guix.texi:11829 -#: guix-git/doc/guix.texi:11955 guix-git/doc/guix.texi:11980 -#: guix-git/doc/guix.texi:12012 guix-git/doc/guix.texi:12183 -#: guix-git/doc/guix.texi:12224 guix-git/doc/guix.texi:12275 -#: guix-git/doc/guix.texi:12300 guix-git/doc/guix.texi:12316 -#: guix-git/doc/guix.texi:12364 guix-git/doc/guix.texi:12400 -#: guix-git/doc/guix.texi:12449 +#: guix-git/doc/guix.texi:4982 guix-git/doc/guix.texi:12143 +#: guix-git/doc/guix.texi:12270 guix-git/doc/guix.texi:12295 +#: guix-git/doc/guix.texi:12327 guix-git/doc/guix.texi:12498 +#: guix-git/doc/guix.texi:12539 guix-git/doc/guix.texi:12590 +#: guix-git/doc/guix.texi:12615 guix-git/doc/guix.texi:12631 +#: guix-git/doc/guix.texi:12679 guix-git/doc/guix.texi:12715 +#: guix-git/doc/guix.texi:12764 #, no-wrap msgid "--recursive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4969 +#: guix-git/doc/guix.texi:4987 msgid "When combined with @option{--export}, this instructs @command{guix archive} to include dependencies of the given items in the archive. Thus, the resulting archive is self-contained: it contains the closure of the exported store items." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4970 +#: guix-git/doc/guix.texi:4988 #, no-wrap msgid "--import" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4975 +#: guix-git/doc/guix.texi:4993 msgid "Read an archive from the standard input, and import the files listed therein into the store. Abort if the archive has an invalid digital signature, or if it is signed by a public key not among the authorized keys (see @option{--authorize} below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4976 +#: guix-git/doc/guix.texi:4994 #, no-wrap msgid "--missing" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4980 +#: guix-git/doc/guix.texi:4998 msgid "Read a list of store file names from the standard input, one per line, and write on the standard output the subset of these files missing from the store." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4981 +#: guix-git/doc/guix.texi:4999 #, no-wrap msgid "--generate-key[=@var{parameters}]" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4982 +#: guix-git/doc/guix.texi:5000 #, no-wrap msgid "signing, archives" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4989 +#: guix-git/doc/guix.texi:5007 msgid "Generate a new key pair for the daemon. This is a prerequisite before archives can be exported with @option{--export}. This operation is usually instantaneous but it can take time if the system's entropy pool needs to be refilled. On Guix System, @code{guix-service-type} takes care of generating this key pair the first boot." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4999 +#: guix-git/doc/guix.texi:5017 msgid "The generated key pair is typically stored under @file{/etc/guix}, in @file{signing-key.pub} (public key) and @file{signing-key.sec} (private key, which must be kept secret). When @var{parameters} is omitted, an ECDSA key using the Ed25519 curve is generated, or, for Libgcrypt versions before 1.6.0, it is a 4096-bit RSA key. Alternatively, @var{parameters} can specify @code{genkey} parameters suitable for Libgcrypt (@pxref{General public-key related Functions, @code{gcry_pk_genkey},, gcrypt, The Libgcrypt Reference Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5000 +#: guix-git/doc/guix.texi:5018 #, no-wrap msgid "--authorize" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5001 +#: guix-git/doc/guix.texi:5019 #, no-wrap msgid "authorizing, archives" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5005 +#: guix-git/doc/guix.texi:5023 msgid "Authorize imports signed by the public key passed on standard input. The public key must be in ``s-expression advanced format''---i.e., the same format as the @file{signing-key.pub} file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5012 +#: guix-git/doc/guix.texi:5030 msgid "The list of authorized keys is kept in the human-editable file @file{/etc/guix/acl}. The file contains @url{https://people.csail.mit.edu/rivest/Sexp.txt, ``advanced-format s-expressions''} and is structured as an access-control list in the @url{https://theworld.com/~cme/spki.txt, Simple Public-Key Infrastructure (SPKI)}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5013 +#: guix-git/doc/guix.texi:5031 #, no-wrap msgid "--extract=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5014 +#: guix-git/doc/guix.texi:5032 #, no-wrap msgid "-x @var{directory}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5018 +#: guix-git/doc/guix.texi:5036 msgid "Read a single-item archive as served by substitute servers (@pxref{Substitutes}) and extract it to @var{directory}. This is a low-level operation needed in only very narrow use cases; see below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5021 +#: guix-git/doc/guix.texi:5039 msgid "For example, the following command extracts the substitute for Emacs served by @code{@value{SUBSTITUTE-SERVER-1}} to @file{/tmp/emacs}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5026 +#: guix-git/doc/guix.texi:5044 #, no-wrap msgid "" "$ wget -O - \\\n" @@ -11679,35 +11758,35 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5033 +#: guix-git/doc/guix.texi:5051 msgid "Single-item archives are different from multiple-item archives produced by @command{guix archive --export}; they contain a single store item, and they do @emph{not} embed a signature. Thus this operation does @emph{no} signature verification and its output should be considered unsafe." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5037 +#: guix-git/doc/guix.texi:5055 msgid "The primary purpose of this operation is to facilitate inspection of archive contents coming from possibly untrusted substitute servers (@pxref{Invoking guix challenge})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5038 +#: guix-git/doc/guix.texi:5056 #, no-wrap msgid "--list" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5039 guix-git/doc/guix.texi:12171 -#: guix-git/doc/guix.texi:12218 +#: guix-git/doc/guix.texi:5057 guix-git/doc/guix.texi:12486 +#: guix-git/doc/guix.texi:12533 #, no-wrap msgid "-t" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5043 +#: guix-git/doc/guix.texi:5061 msgid "Read a single-item archive as served by substitute servers (@pxref{Substitutes}) and print the list of files it contains, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5048 +#: guix-git/doc/guix.texi:5066 #, no-wrap msgid "" "$ wget -O - \\\n" @@ -11716,47 +11795,47 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5059 +#: guix-git/doc/guix.texi:5077 #, no-wrap msgid "@command{guix pull}, configuration file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5060 +#: guix-git/doc/guix.texi:5078 #, no-wrap msgid "configuration of @command{guix pull}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5071 +#: guix-git/doc/guix.texi:5089 msgid "Guix and its package collection are updated by running @command{guix pull} (@pxref{Invoking guix pull}). By default @command{guix pull} downloads and deploys Guix itself from the official GNU@tie{}Guix repository. This can be customized by defining @dfn{channels} in the @file{~/.config/guix/channels.scm} file. A channel specifies a URL and branch of a Git repository to be deployed, and @command{guix pull} can be instructed to pull from one or more channels. In other words, channels can be used to @emph{customize} and to @emph{extend} Guix, as we will see below. Guix is able to take into account security concerns and deal with authenticated updates." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5089 +#: guix-git/doc/guix.texi:5107 #, no-wrap msgid "extending the package collection (channels)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5090 +#: guix-git/doc/guix.texi:5108 #, no-wrap msgid "variant packages (channels)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5094 +#: guix-git/doc/guix.texi:5112 msgid "You can specify @emph{additional channels} to pull from. To use a channel, write @code{~/.config/guix/channels.scm} to instruct @command{guix pull} to pull from it @emph{in addition} to the default Guix channel(s):" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:5095 +#: guix-git/doc/guix.texi:5113 #, no-wrap msgid "%default-channels" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5120 #, no-wrap msgid "" ";; Add variant packages to those Guix provides.\n" @@ -11767,12 +11846,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5112 +#: guix-git/doc/guix.texi:5130 msgid "Note that the snippet above is (as always!)@: Scheme code; we use @code{cons} to add a channel the list of channels that the variable @code{%default-channels} is bound to (@pxref{Pairs, @code{cons} and lists,, guile, GNU Guile Reference Manual}). With this file in place, @command{guix pull} builds not only Guix but also the package modules from your own repository. The result in @file{~/.config/guix/current} is the union of Guix with your own package modules:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5127 +#: guix-git/doc/guix.texi:5145 #, no-wrap msgid "" "$ guix pull --list-generations\n" @@ -11791,17 +11870,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5135 +#: guix-git/doc/guix.texi:5153 msgid "The output of @command{guix pull} above shows that Generation@tie{}19 includes both Guix and packages from the @code{variant-personal-packages} channel. Among the new and upgraded packages that are listed, some like @code{variant-gimp} and @code{variant-emacs-with-cool-features} might come from @code{variant-packages}, while others come from the Guix default channel." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5144 +#: guix-git/doc/guix.texi:5162 msgid "The channel called @code{guix} specifies where Guix itself---its command-line tools as well as its package collection---should be downloaded. For instance, suppose you want to update from another copy of the Guix repository at @code{example.org}, and specifically the @code{super-hacks} branch, you can write in @code{~/.config/guix/channels.scm} this specification:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5151 +#: guix-git/doc/guix.texi:5169 #, no-wrap msgid "" ";; Tell 'guix pull' to use another repo.\n" @@ -11812,17 +11891,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5157 +#: guix-git/doc/guix.texi:5175 msgid "From there on, @command{guix pull} will fetch code from the @code{super-hacks} branch of the repository at @code{example.org}. The authentication concern is addressed below ((@pxref{Channel Authentication})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5168 +#: guix-git/doc/guix.texi:5186 msgid "The @command{guix pull --list-generations} output above shows precisely which commits were used to build this instance of Guix. We can thus replicate it, say, on another machine, by providing a channel specification in @file{~/.config/guix/channels.scm} that is ``pinned'' to these commits:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5179 +#: guix-git/doc/guix.texi:5197 #, no-wrap msgid "" ";; Deploy specific commits of my channels of interest.\n" @@ -11837,37 +11916,37 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5186 +#: guix-git/doc/guix.texi:5204 msgid "The @command{guix describe --format=channels} command can even generate this list of channels directly (@pxref{Invoking guix describe}). The resulting file can be used with the -C options of @command{guix pull} (@pxref{Invoking guix pull}) or @command{guix time-machine} (@pxref{Invoking guix time-machine})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5193 +#: guix-git/doc/guix.texi:5211 msgid "At this point the two machines run the @emph{exact same Guix}, with access to the @emph{exact same packages}. The output of @command{guix build gimp} on one machine will be exactly the same, bit for bit, as the output of the same command on the other machine. It also means both machines have access to all the source code of Guix and, transitively, to all the source code of every package it defines." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5198 +#: guix-git/doc/guix.texi:5216 msgid "This gives you super powers, allowing you to track the provenance of binary artifacts with very fine grain, and to reproduce software environments at will---some sort of ``meta reproducibility'' capabilities, if you will. @xref{Inferiors}, for another way to take advantage of these super powers." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:5203 +#: guix-git/doc/guix.texi:5221 msgid "channel-authentication" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5209 +#: guix-git/doc/guix.texi:5227 msgid "The @command{guix pull} and @command{guix time-machine} commands @dfn{authenticate} the code retrieved from channels: they make sure each commit that is fetched is signed by an authorized developer. The goal is to protect from unauthorized modifications to the channel that would lead users to run malicious code." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5214 +#: guix-git/doc/guix.texi:5232 msgid "As a user, you must provide a @dfn{channel introduction} in your channels file so that Guix knows how to authenticate its first commit. A channel specification, including its introduction, looks something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5224 +#: guix-git/doc/guix.texi:5242 #, no-wrap msgid "" "(channel\n" @@ -11881,27 +11960,27 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5230 +#: guix-git/doc/guix.texi:5248 msgid "The specification above shows the name and URL of the channel. The call to @code{make-channel-introduction} above specifies that authentication of this channel starts at commit @code{6f0d8cc@dots{}}, which is signed by the OpenPGP key with fingerprint @code{CABB A931@dots{}}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5236 +#: guix-git/doc/guix.texi:5254 msgid "For the main channel, called @code{guix}, you automatically get that information from your Guix installation. For other channels, include the channel introduction provided by the channel authors in your @file{channels.scm} file. Make sure you retrieve the channel introduction from a trusted source since that is the root of your trust." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5238 +#: guix-git/doc/guix.texi:5256 msgid "If you're curious about the authentication mechanics, read on!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5249 +#: guix-git/doc/guix.texi:5267 msgid "When running @command{guix pull}, Guix will first compile the definitions of every available package. This is an expensive operation for which substitutes (@pxref{Substitutes}) may be available. The following snippet in @file{channels.scm} will ensure that @command{guix pull} uses the latest commit with available substitutes for the package definitions: this is done by querying the continuous integration server at @url{https://ci.guix.gnu.org}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5252 +#: guix-git/doc/guix.texi:5270 #, no-wrap msgid "" "(use-modules (guix ci))\n" @@ -11909,7 +11988,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5256 +#: guix-git/doc/guix.texi:5274 #, no-wrap msgid "" "(list (channel-with-substitutes-available\n" @@ -11918,75 +11997,75 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5263 +#: guix-git/doc/guix.texi:5281 msgid "Note that this does not mean that all the packages that you will install after running @command{guix pull} will have available substitutes. It only ensures that @command{guix pull} will not try to compile package definitions. This is particularly useful when using machines with limited resources." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5267 +#: guix-git/doc/guix.texi:5285 #, no-wrap msgid "personal packages (channels)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5268 +#: guix-git/doc/guix.texi:5286 #, no-wrap msgid "channels, for personal packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5276 +#: guix-git/doc/guix.texi:5294 msgid "Let's say you have a bunch of custom package variants or personal packages that you think would make little sense to contribute to the Guix project, but would like to have these packages transparently available to you at the command line. You would first write modules containing those package definitions (@pxref{Package Modules}), maintain them in a Git repository, and then you and anyone else can use it as an additional channel to get packages from. Neat, no?" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5284 +#: guix-git/doc/guix.texi:5302 msgid "Before you, dear user, shout---``woow this is @emph{soooo coool}!''---and publish your personal channel to the world, we would like to share a few words of caution:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:5292 +#: guix-git/doc/guix.texi:5310 msgid "Before publishing a channel, please consider contributing your package definitions to Guix proper (@pxref{Contributing}). Guix as a project is open to free software of all sorts, and packages in Guix proper are readily available to all Guix users and benefit from the project's quality assurance process." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:5301 +#: guix-git/doc/guix.texi:5319 msgid "When you maintain package definitions outside Guix, we, Guix developers, consider that @emph{the compatibility burden is on you}. Remember that package modules and package definitions are just Scheme code that uses various programming interfaces (APIs). We want to remain free to change these APIs to keep improving Guix, possibly in ways that break your channel. We never change APIs gratuitously, but we will @emph{not} commit to freezing APIs either." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:5305 +#: guix-git/doc/guix.texi:5323 msgid "Corollary: if you're using an external channel and that channel breaks, please @emph{report the issue to the channel authors}, not to the Guix project." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5312 +#: guix-git/doc/guix.texi:5330 msgid "You've been warned! Having said this, we believe external channels are a practical way to exert your freedom to augment Guix' package collection and to share your improvements, which are basic tenets of @uref{https://www.gnu.org/philosophy/free-sw.html, free software}. Please email us at @email{guix-devel@@gnu.org} if you'd like to discuss this." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5324 +#: guix-git/doc/guix.texi:5342 msgid "To create a channel, create a Git repository containing your own package modules and make it available. The repository can contain anything, but a useful channel will contain Guile modules that export packages. Once you start using a channel, Guix will behave as if the root directory of that channel's Git repository has been added to the Guile load path (@pxref{Load Paths,,, guile, GNU Guile Reference Manual}). For example, if your channel contains a file at @file{my-packages/my-tools.scm} that defines a Guile module, then the module will be available under the name @code{(my-packages my-tools)}, and you will be able to use it like any other module (@pxref{Modules,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5329 +#: guix-git/doc/guix.texi:5347 msgid "As a channel author, consider bundling authentication material with your channel so that users can authenticate it. @xref{Channel Authentication}, and @ref{Specifying Channel Authorizations}, for info on how to do it." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5334 +#: guix-git/doc/guix.texi:5352 #, no-wrap msgid "subdirectory, channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5338 +#: guix-git/doc/guix.texi:5356 msgid "As a channel author, you may want to keep your channel modules in a sub-directory. If your modules are in the sub-directory @file{guix}, you must add a meta-data file @file{.guix-channel} that contains:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5343 +#: guix-git/doc/guix.texi:5361 #, no-wrap msgid "" "(channel\n" @@ -11995,29 +12074,29 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5348 +#: guix-git/doc/guix.texi:5366 #, no-wrap msgid "dependencies, channels" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5349 +#: guix-git/doc/guix.texi:5367 #, no-wrap msgid "meta-data, channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5354 +#: guix-git/doc/guix.texi:5372 msgid "Channel authors may decide to augment a package collection provided by other channels. They can declare their channel to be dependent on other channels in a meta-data file @file{.guix-channel}, which is to be placed in the root of the channel repository." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5356 +#: guix-git/doc/guix.texi:5374 msgid "The meta-data file should contain a simple S-expression like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5364 +#: guix-git/doc/guix.texi:5382 #, no-wrap msgid "" "(channel\n" @@ -12030,7 +12109,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5376 +#: guix-git/doc/guix.texi:5394 #, no-wrap msgid "" " ;; The 'introduction' bit below is optional: you would\n" @@ -12047,33 +12126,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5382 +#: guix-git/doc/guix.texi:5400 msgid "In the above example this channel is declared to depend on two other channels, which will both be fetched automatically. The modules provided by the channel will be compiled in an environment where the modules of all these declared channels are available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5386 +#: guix-git/doc/guix.texi:5404 msgid "For the sake of reliability and maintainability, you should avoid dependencies on channels that you don't control, and you should aim to keep the number of dependencies to a minimum." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5390 +#: guix-git/doc/guix.texi:5408 #, no-wrap msgid "channel authorizations" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:5404 +#: guix-git/doc/guix.texi:5422 msgid "channel-authorizations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5404 +#: guix-git/doc/guix.texi:5422 msgid "As we saw above, Guix ensures the source code it pulls from channels comes from authorized developers. As a channel author, you need to specify the list of authorized developers in the @file{.guix-authorizations} file in the channel's Git repository. The authentication rule is simple: each commit must be signed by a key listed in the @file{.guix-authorizations} file of its parent commit(s)@footnote{Git commits form a @dfn{directed acyclic graph} (DAG). Each commit can have zero or more parents; ``regular'' commits have one parent and merge commits have two parent commits. Read @uref{https://eagain.net/articles/git-for-computer-scientists/, @i{Git for Computer Scientists}} for a great overview.} The @file{.guix-authorizations} file looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5407 +#: guix-git/doc/guix.texi:5425 #, no-wrap msgid "" ";; Example '.guix-authorizations' file.\n" @@ -12081,7 +12160,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5410 +#: guix-git/doc/guix.texi:5428 #, no-wrap msgid "" "(authorizations\n" @@ -12090,7 +12169,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5417 +#: guix-git/doc/guix.texi:5435 #, no-wrap msgid "" " ((\"AD17 A21E F8AE D8F1 CC02 DBD9 F8AE D8F1 765C 61E3\"\n" @@ -12102,33 +12181,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5421 +#: guix-git/doc/guix.texi:5439 msgid "Each fingerprint is followed by optional key/value pairs, as in the example above. Currently these key/value pairs are ignored." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5426 +#: guix-git/doc/guix.texi:5444 msgid "This authentication rule creates a chicken-and-egg issue: how do we authenticate the first commit? Related to that: how do we deal with channels whose repository history contains unsigned commits and lack @file{.guix-authorizations}? And how do we fork existing channels?" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5427 +#: guix-git/doc/guix.texi:5445 #, no-wrap msgid "channel introduction" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5434 +#: guix-git/doc/guix.texi:5452 msgid "Channel introductions answer these questions by describing the first commit of a channel that should be authenticated. The first time a channel is fetched with @command{guix pull} or @command{guix time-machine}, the command looks up the introductory commit and verifies that it is signed by the specified OpenPGP key. From then on, it authenticates commits according to the rule above." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5441 +#: guix-git/doc/guix.texi:5459 msgid "Additionally, your channel must provide all the OpenPGP keys that were ever mentioned in @file{.guix-authorizations}, stored as @file{.key} files, which can be either binary or ``ASCII-armored''. By default, those @file{.key} files are searched for in the branch named @code{keyring} but you can specify a different branch name in @code{.guix-channel} like so:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5446 +#: guix-git/doc/guix.texi:5464 #, no-wrap msgid "" "(channel\n" @@ -12137,59 +12216,59 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5450 +#: guix-git/doc/guix.texi:5468 msgid "To summarize, as the author of a channel, there are three things you have to do to allow users to authenticate your code:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:5456 +#: guix-git/doc/guix.texi:5474 msgid "Export the OpenPGP keys of past and present committers with @command{gpg --export} and store them in @file{.key} files, by default in a branch named @code{keyring} (we recommend making it an @dfn{orphan branch})." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:5461 +#: guix-git/doc/guix.texi:5479 msgid "Introduce an initial @file{.guix-authorizations} in the channel's repository. Do that in a signed commit (@pxref{Commit Access}, for information on how to sign Git commits.)" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:5467 +#: guix-git/doc/guix.texi:5485 msgid "Advertise the channel introduction, for instance on your channel's web page. The channel introduction, as we saw above, is the commit/key pair---i.e., the commit that introduced @file{.guix-authorizations}, and the fingerprint of the OpenPGP used to sign it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5472 +#: guix-git/doc/guix.texi:5490 msgid "Before pushing to your public Git repository, you can run @command{guix git-authenticate} to verify that you did sign all the commits you are about to push with an authorized key:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5475 +#: guix-git/doc/guix.texi:5493 #, no-wrap msgid "guix git authenticate @var{commit} @var{signer}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5480 +#: guix-git/doc/guix.texi:5498 msgid "where @var{commit} and @var{signer} are your channel introduction. @xref{Invoking guix git authenticate}, for details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5487 +#: guix-git/doc/guix.texi:5505 msgid "Publishing a signed channel requires discipline: any mistake, such as an unsigned commit or a commit signed by an unauthorized key, will prevent users from pulling from your channel---well, that's the whole point of authentication! Pay attention to merges in particular: merge commits are considered authentic if and only if they are signed by a key present in the @file{.guix-authorizations} file of @emph{both} branches." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5491 +#: guix-git/doc/guix.texi:5509 #, no-wrap msgid "primary URL, channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5494 +#: guix-git/doc/guix.texi:5512 msgid "Channel authors can indicate the primary URL of their channel's Git repository in the @file{.guix-channel} file, like so:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5499 +#: guix-git/doc/guix.texi:5517 #, no-wrap msgid "" "(channel\n" @@ -12198,38 +12277,38 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5506 +#: guix-git/doc/guix.texi:5524 msgid "This allows @command{guix pull} to determine whether it is pulling code from a mirror of the channel; when that is the case, it warns the user that the mirror might be stale and displays the primary URL@. That way, users cannot be tricked into fetching code from a stale mirror that does not receive security updates." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5510 +#: guix-git/doc/guix.texi:5528 msgid "This feature only makes sense for authenticated repositories, such as the official @code{guix} channel, for which @command{guix pull} ensures the code it fetches is authentic." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5514 +#: guix-git/doc/guix.texi:5532 #, no-wrap msgid "news, for channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5518 +#: guix-git/doc/guix.texi:5536 msgid "Channel authors may occasionally want to communicate to their users information about important changes in the channel. You'd send them all an email, but that's not convenient." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5523 +#: guix-git/doc/guix.texi:5541 msgid "Instead, channels can provide a @dfn{news file}; when the channel users run @command{guix pull}, that news file is automatically read and @command{guix pull --news} can display the announcements that correspond to the new commits that have been pulled, if any." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5526 +#: guix-git/doc/guix.texi:5544 msgid "To do that, channel authors must first declare the name of the news file in their @file{.guix-channel} file:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5531 +#: guix-git/doc/guix.texi:5549 #, no-wrap msgid "" "(channel\n" @@ -12238,12 +12317,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5535 +#: guix-git/doc/guix.texi:5553 msgid "The news file itself, @file{etc/news.txt} in this example, must look something like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5548 +#: guix-git/doc/guix.texi:5566 #, no-wrap msgid "" "(channel-news\n" @@ -12260,164 +12339,164 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5555 +#: guix-git/doc/guix.texi:5573 msgid "While the news file is using the Scheme syntax, avoid naming it with a @file{.scm} extension or else it will get picked up when building the channel and yield an error since it is not a valid module. Alternatively, you can move the channel module to a subdirectory and store the news file in another directory." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5560 +#: guix-git/doc/guix.texi:5578 msgid "The file consists of a list of @dfn{news entries}. Each entry is associated with a commit or tag: it describes changes made in this commit, possibly in preceding commits as well. Users see entries only the first time they obtain the commit the entry refers to." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5566 +#: guix-git/doc/guix.texi:5584 msgid "The @code{title} field should be a one-line summary while @code{body} can be arbitrarily long, and both can contain Texinfo markup (@pxref{Overview,,, texinfo, GNU Texinfo}). Both the title and body are a list of language tag/message tuples, which allows @command{guix pull} to display news in the language that corresponds to the user's locale." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5572 +#: guix-git/doc/guix.texi:5590 msgid "If you want to translate news using a gettext-based workflow, you can extract translatable strings with @command{xgettext} (@pxref{xgettext Invocation,,, gettext, GNU Gettext Utilities}). For example, assuming you write news entries in English first, the command below creates a PO file containing the strings to translate:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5575 +#: guix-git/doc/guix.texi:5593 #, no-wrap msgid "xgettext -o news.po -l scheme -ken etc/news.txt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5579 +#: guix-git/doc/guix.texi:5597 msgid "To sum up, yes, you could use your channel as a blog. But beware, this is @emph{not quite} what your users might expect." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5584 +#: guix-git/doc/guix.texi:5602 #, no-wrap msgid "software development" msgstr "ohjelmistokehitys" #. type: Plain text -#: guix-git/doc/guix.texi:5588 +#: guix-git/doc/guix.texi:5606 msgid "If you are a software developer, Guix provides tools that you should find helpful---independently of the language you're developing in. This is what this chapter is about." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5594 +#: guix-git/doc/guix.texi:5612 msgid "The @command{guix shell} command provides a convenient way to set up one-off software environments, be it for development purposes or to run a command without installing it in your profile. The @command{guix pack} command allows you to create @dfn{application bundles} that can be easily distributed to users who do not run Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:5604 +#: guix-git/doc/guix.texi:5622 #, no-wrap msgid "Invoking @command{guix shell}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5606 +#: guix-git/doc/guix.texi:5624 #, no-wrap msgid "reproducible build environments" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5607 +#: guix-git/doc/guix.texi:5625 #, no-wrap msgid "development environments" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:5608 +#: guix-git/doc/guix.texi:5626 #, no-wrap msgid "guix environment" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5609 +#: guix-git/doc/guix.texi:5627 #, no-wrap msgid "environment, package build environment" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5614 +#: guix-git/doc/guix.texi:5632 msgid "The purpose of @command{guix shell} is to make it easy to create one-off software environments, without changing one's profile. It is typically used to create development environments; it is also a convenient way to run applications without ``polluting'' your profile." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5620 +#: guix-git/doc/guix.texi:5638 msgid "The @command{guix shell} command was recently introduced to supersede @command{guix environment} (@pxref{Invoking guix environment}). If you are familiar with @command{guix environment}, you will notice that it is similar but also---we hope!---more convenient." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5626 +#: guix-git/doc/guix.texi:5644 #, no-wrap msgid "guix shell [@var{options}] [@var{package}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5631 +#: guix-git/doc/guix.texi:5649 msgid "The following example creates an environment containing Python and NumPy, building or downloading any missing package, and runs the @command{python3} command in that environment:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5634 +#: guix-git/doc/guix.texi:5652 #, no-wrap msgid "guix shell python python-numpy -- python3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5639 +#: guix-git/doc/guix.texi:5657 msgid "Development environments can be created as in the example below, which spawns an interactive shell containing all the dependencies and environment variables needed to work on Inkscape:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5642 +#: guix-git/doc/guix.texi:5660 #, no-wrap msgid "guix shell --development inkscape\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5648 +#: guix-git/doc/guix.texi:5666 msgid "Exiting the shell places the user back in the original environment before @command{guix shell} was invoked. The next garbage collection (@pxref{Invoking guix gc}) may clean up packages that were installed in the environment and that are no longer used outside of it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5655 +#: guix-git/doc/guix.texi:5673 msgid "As an added convenience, when running from a directory that contains a @file{manifest.scm} or a @file{guix.scm} file (in this order), possibly in a parent directory, @command{guix shell} automatically loads the file---provided the directory is listed in @file{~/.config/guix/shell-authorized-directories}, and only for interactive use:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5658 +#: guix-git/doc/guix.texi:5676 #, no-wrap msgid "guix shell\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5662 +#: guix-git/doc/guix.texi:5680 msgid "This provides an easy way to define, share, and enter development environments." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5673 +#: guix-git/doc/guix.texi:5691 msgid "By default, the shell session or command runs in an @emph{augmented} environment, where the new packages are added to search path environment variables such as @code{PATH}. You can, instead, choose to create an @emph{isolated} environment containing nothing but the packages you asked for. Passing the @option{--pure} option clears environment variable definitions found in the parent environment@footnote{Be sure to use the @option{--check} option the first time you use @command{guix shell} interactively to make sure the shell does not undo the effect of @option{--pure}.}; passing @option{--container} goes one step further by spawning a @dfn{container} isolated from the rest of the system:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5676 +#: guix-git/doc/guix.texi:5694 #, no-wrap msgid "guix shell --container emacs gcc-toolchain\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5684 +#: guix-git/doc/guix.texi:5702 msgid "The command above spawns an interactive shell in a container where nothing but @code{emacs}, @code{gcc-toolchain}, and their dependencies is available. The container lacks network access and shares no files other than the current working directory with the surrounding environment. This is useful to prevent access to system-wide resources such as @file{/usr/bin} on foreign distros." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5691 +#: guix-git/doc/guix.texi:5709 msgid "This @option{--container} option can also prove useful if you wish to run a security-sensitive application, such as a web browser, in an isolated environment. For example, the command below launches Ungoogled-Chromium in an isolated environment, this time sharing network access with the host and preserving its @code{DISPLAY} environment variable, but without even sharing the current directory:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5695 +#: guix-git/doc/guix.texi:5713 #, no-wrap msgid "" "guix shell --container --network --no-cwd ungoogled-chromium \\\n" @@ -12425,18 +12504,18 @@ msgid "" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:5697 guix-git/doc/guix.texi:6008 +#: guix-git/doc/guix.texi:5715 guix-git/doc/guix.texi:6045 #, no-wrap msgid "GUIX_ENVIRONMENT" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5703 +#: guix-git/doc/guix.texi:5721 msgid "@command{guix shell} defines the @env{GUIX_ENVIRONMENT} variable in the shell it spawns; its value is the file name of the profile of this environment. This allows users to, say, define a specific prompt for development environments in their @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5709 guix-git/doc/guix.texi:6020 +#: guix-git/doc/guix.texi:5727 guix-git/doc/guix.texi:6057 #, no-wrap msgid "" "if [ -n \"$GUIX_ENVIRONMENT\" ]\n" @@ -12446,213 +12525,202 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5713 guix-git/doc/guix.texi:6024 +#: guix-git/doc/guix.texi:5731 guix-git/doc/guix.texi:6061 msgid "...@: or to browse the profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5716 guix-git/doc/guix.texi:6027 +#: guix-git/doc/guix.texi:5734 guix-git/doc/guix.texi:6064 #, no-wrap msgid "$ ls \"$GUIX_ENVIRONMENT/bin\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5719 guix-git/doc/guix.texi:6103 +#: guix-git/doc/guix.texi:5737 guix-git/doc/guix.texi:6140 msgid "The available options are summarized below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5721 guix-git/doc/guix.texi:6105 -#: guix-git/doc/guix.texi:11546 +#: guix-git/doc/guix.texi:5739 guix-git/doc/guix.texi:6142 +#: guix-git/doc/guix.texi:11860 #, no-wrap msgid "--check" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5726 +#: guix-git/doc/guix.texi:5744 msgid "Set up the environment and check whether the shell would clobber environment variables. It's a good idea to use this option the first time you run @command{guix shell} for an interactive session to make sure your setup is correct." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5730 +#: guix-git/doc/guix.texi:5748 msgid "For example, if the shell modifies the @env{PATH} environment variable, report it since you would get a different environment than what you asked for." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5738 +#: guix-git/doc/guix.texi:5756 msgid "Such problems usually indicate that the shell startup files are unexpectedly modifying those environment variables. For example, if you are using Bash, make sure that environment variables are set or modified in @file{~/.bash_profile} and @emph{not} in @file{~/.bashrc}---the former is sourced only by log-in shells. @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for details on Bash start-up files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5739 +#: guix-git/doc/guix.texi:5757 #, no-wrap msgid "--development" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5746 +#: guix-git/doc/guix.texi:5764 msgid "Cause @command{guix shell} to include in the environment the dependencies of the following package rather than the package itself. This can be combined with other packages. For instance, the command below starts an interactive shell containing the build-time dependencies of GNU@tie{}Guile, plus Autoconf, Automake, and Libtool:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5749 +#: guix-git/doc/guix.texi:5767 #, no-wrap msgid "guix shell -D guile autoconf automake libtool\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5751 guix-git/doc/guix.texi:6126 -#: guix-git/doc/guix.texi:6607 guix-git/doc/guix.texi:11421 -#: guix-git/doc/guix.texi:12494 guix-git/doc/guix.texi:12845 -#: guix-git/doc/guix.texi:13442 guix-git/doc/guix.texi:35243 -#: guix-git/doc/guix.texi:37713 +#: guix-git/doc/guix.texi:5769 guix-git/doc/guix.texi:6163 +#: guix-git/doc/guix.texi:6650 guix-git/doc/guix.texi:11735 +#: guix-git/doc/guix.texi:12809 guix-git/doc/guix.texi:13201 +#: guix-git/doc/guix.texi:13799 guix-git/doc/guix.texi:35687 +#: guix-git/doc/guix.texi:38192 #, no-wrap msgid "--expression=@var{expr}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5752 guix-git/doc/guix.texi:6127 -#: guix-git/doc/guix.texi:6608 guix-git/doc/guix.texi:11422 -#: guix-git/doc/guix.texi:12495 guix-git/doc/guix.texi:12846 -#: guix-git/doc/guix.texi:13443 guix-git/doc/guix.texi:35244 -#: guix-git/doc/guix.texi:37714 +#: guix-git/doc/guix.texi:5770 guix-git/doc/guix.texi:6164 +#: guix-git/doc/guix.texi:6651 guix-git/doc/guix.texi:11736 +#: guix-git/doc/guix.texi:12810 guix-git/doc/guix.texi:13202 +#: guix-git/doc/guix.texi:13800 guix-git/doc/guix.texi:35688 +#: guix-git/doc/guix.texi:38193 #, no-wrap msgid "-e @var{expr}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5755 guix-git/doc/guix.texi:6130 +#: guix-git/doc/guix.texi:5773 guix-git/doc/guix.texi:6167 msgid "Create an environment for the package or list of packages that @var{expr} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5757 guix-git/doc/guix.texi:6132 -#: guix-git/doc/guix.texi:12850 +#: guix-git/doc/guix.texi:5775 guix-git/doc/guix.texi:6169 +#: guix-git/doc/guix.texi:13206 msgid "For example, running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5760 +#: guix-git/doc/guix.texi:5778 #, no-wrap msgid "guix shell -D -e '(@@ (gnu packages maths) petsc-openmpi)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5764 guix-git/doc/guix.texi:6139 +#: guix-git/doc/guix.texi:5782 guix-git/doc/guix.texi:6176 msgid "starts a shell with the environment for this specific variant of the PETSc package." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5766 guix-git/doc/guix.texi:6141 +#: guix-git/doc/guix.texi:5784 guix-git/doc/guix.texi:6178 msgid "Running:" msgstr "Käynnissä:" #. type: example -#: guix-git/doc/guix.texi:5769 +#: guix-git/doc/guix.texi:5787 #, no-wrap msgid "guix shell -e '(@@ (gnu) %base-packages)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5772 guix-git/doc/guix.texi:6147 +#: guix-git/doc/guix.texi:5790 guix-git/doc/guix.texi:6184 msgid "starts a shell with all the base system packages available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5775 guix-git/doc/guix.texi:6150 +#: guix-git/doc/guix.texi:5793 guix-git/doc/guix.texi:6187 msgid "The above commands only use the default output of the given packages. To select other outputs, two element tuples can be specified:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5778 +#: guix-git/doc/guix.texi:5796 #, no-wrap msgid "guix shell -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5780 guix-git/doc/guix.texi:11395 +#: guix-git/doc/guix.texi:5798 guix-git/doc/guix.texi:11709 #, no-wrap msgid "--file=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5784 +#: guix-git/doc/guix.texi:5802 msgid "Create an environment containing the package or list of packages that the code within @var{file} evaluates to." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5790 guix-git/doc/guix.texi:6165 +#: guix-git/doc/guix.texi:5808 guix-git/doc/guix.texi:6202 #, no-wrap msgid "@verbatiminclude environment-gdb.scm\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5794 +#: guix-git/doc/guix.texi:5812 msgid "With the file above, you can enter a development environment for GDB by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5797 +#: guix-git/doc/guix.texi:5815 #, no-wrap msgid "guix shell -D -f gdb-devel.scm\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5804 guix-git/doc/guix.texi:6172 +#: guix-git/doc/guix.texi:5822 guix-git/doc/guix.texi:6209 msgid "Create an environment for the packages contained in the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5808 guix-git/doc/guix.texi:6176 +#: guix-git/doc/guix.texi:5826 guix-git/doc/guix.texi:6213 msgid "This is similar to the same-named option in @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) and uses the same manifest files." msgstr "" -#. type: item -#: guix-git/doc/guix.texi:5809 -#, no-wrap -msgid "--rebuild-cache" -msgstr "" - -#. type: table -#: guix-git/doc/guix.texi:5814 -msgid "When using @option{--manifest}, @option{--file}, or when invoked without arguments, @command{guix shell} caches the environment so that subsequent uses are instantaneous. The cache is invalidated anytime the file is modified." -msgstr "" - #. type: table -#: guix-git/doc/guix.texi:5819 -msgid "The @option{--rebuild-cache} forces the cached environment to be refreshed even if the file has not changed. This is useful if the @command{guix.scm} or @command{manifest.scm} has external dependencies, or if its behavior depends, say, on environment variables." +#: guix-git/doc/guix.texi:5832 guix-git/doc/guix.texi:6245 +msgid "Create an environment containing the packages installed in @var{profile}. Use @command{guix package} (@pxref{Invoking guix package}) to create and manage profiles." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5820 guix-git/doc/guix.texi:6203 +#: guix-git/doc/guix.texi:5833 guix-git/doc/guix.texi:6246 #, no-wrap msgid "--pure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5824 guix-git/doc/guix.texi:6207 +#: guix-git/doc/guix.texi:5837 guix-git/doc/guix.texi:6250 msgid "Unset existing environment variables when building the new environment, except those specified with @option{--preserve} (see below). This has the effect of creating an environment in which search paths only contain package inputs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5825 guix-git/doc/guix.texi:6208 +#: guix-git/doc/guix.texi:5838 guix-git/doc/guix.texi:6251 #, no-wrap msgid "--preserve=@var{regexp}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5826 guix-git/doc/guix.texi:6209 +#: guix-git/doc/guix.texi:5839 guix-git/doc/guix.texi:6252 #, no-wrap msgid "-E @var{regexp}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5831 guix-git/doc/guix.texi:6214 +#: guix-git/doc/guix.texi:5844 guix-git/doc/guix.texi:6257 msgid "When used alongside @option{--pure}, preserve the environment variables matching @var{regexp}---in other words, put them on a ``white list'' of environment variables that must be preserved. This option can be repeated several times." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5835 +#: guix-git/doc/guix.texi:5848 #, no-wrap msgid "" "guix shell --pure --preserve=^SLURM openmpi @dots{} \\\n" @@ -12660,116 +12728,116 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5841 guix-git/doc/guix.texi:6224 +#: guix-git/doc/guix.texi:5854 guix-git/doc/guix.texi:6267 msgid "This example runs @command{mpirun} in a context where the only environment variables defined are @env{PATH}, environment variables whose name starts with @samp{SLURM}, as well as the usual ``precious'' variables (@env{HOME}, @env{USER}, etc.)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5842 guix-git/doc/guix.texi:6225 +#: guix-git/doc/guix.texi:5855 guix-git/doc/guix.texi:6268 #, no-wrap msgid "--search-paths" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5845 guix-git/doc/guix.texi:6228 +#: guix-git/doc/guix.texi:5858 guix-git/doc/guix.texi:6271 msgid "Display the environment variable definitions that make up the environment." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5849 guix-git/doc/guix.texi:6232 +#: guix-git/doc/guix.texi:5862 guix-git/doc/guix.texi:6275 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5850 guix-git/doc/guix.texi:6233 +#: guix-git/doc/guix.texi:5863 guix-git/doc/guix.texi:6276 #, no-wrap msgid "--container" msgstr "--kontti" #. type: itemx -#: guix-git/doc/guix.texi:5851 guix-git/doc/guix.texi:6234 +#: guix-git/doc/guix.texi:5864 guix-git/doc/guix.texi:6277 #, no-wrap msgid "-C" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5852 guix-git/doc/guix.texi:6069 -#: guix-git/doc/guix.texi:6235 guix-git/doc/guix.texi:13998 -#: guix-git/doc/guix.texi:35211 +#: guix-git/doc/guix.texi:5865 guix-git/doc/guix.texi:6106 +#: guix-git/doc/guix.texi:6278 guix-git/doc/guix.texi:14355 +#: guix-git/doc/guix.texi:35655 #, no-wrap msgid "container" msgstr "kontti" #. type: table -#: guix-git/doc/guix.texi:5858 guix-git/doc/guix.texi:6241 +#: guix-git/doc/guix.texi:5871 guix-git/doc/guix.texi:6284 msgid "Run @var{command} within an isolated container. The current working directory outside the container is mapped inside the container. Additionally, unless overridden with @option{--user}, a dummy home directory is created that matches the current user's home directory, and @file{/etc/passwd} is configured accordingly." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5862 guix-git/doc/guix.texi:6245 +#: guix-git/doc/guix.texi:5875 guix-git/doc/guix.texi:6288 msgid "The spawned process runs as the current user outside the container. Inside the container, it has the same UID and GID as the current user, unless @option{--user} is passed (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5863 guix-git/doc/guix.texi:6246 -#: guix-git/doc/guix.texi:35303 +#: guix-git/doc/guix.texi:5876 guix-git/doc/guix.texi:6289 +#: guix-git/doc/guix.texi:35747 #, no-wrap msgid "--network" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5868 guix-git/doc/guix.texi:6251 +#: guix-git/doc/guix.texi:5881 guix-git/doc/guix.texi:6294 msgid "For containers, share the network namespace with the host system. Containers created without this flag only have access to the loopback device." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5869 guix-git/doc/guix.texi:6252 +#: guix-git/doc/guix.texi:5882 guix-git/doc/guix.texi:6295 #, no-wrap msgid "--link-profile" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5870 guix-git/doc/guix.texi:6253 +#: guix-git/doc/guix.texi:5883 guix-git/doc/guix.texi:6296 #, no-wrap msgid "-P" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5878 +#: guix-git/doc/guix.texi:5891 msgid "For containers, link the environment profile to @file{~/.guix-profile} within the container and set @code{GUIX_ENVIRONMENT} to that. This is equivalent to making @file{~/.guix-profile} a symlink to the actual profile within the container. Linking will fail and abort the environment if the directory already exists, which will certainly be the case if @command{guix shell} was invoked in the user's home directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5884 guix-git/doc/guix.texi:6267 +#: guix-git/doc/guix.texi:5897 guix-git/doc/guix.texi:6310 msgid "Certain packages are configured to look in @file{~/.guix-profile} for configuration files and data;@footnote{For example, the @code{fontconfig} package inspects @file{~/.guix-profile/share/fonts} for additional fonts.} @option{--link-profile} allows these programs to behave as expected within the environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5885 guix-git/doc/guix.texi:6268 -#: guix-git/doc/guix.texi:13575 +#: guix-git/doc/guix.texi:5898 guix-git/doc/guix.texi:6311 +#: guix-git/doc/guix.texi:13932 #, no-wrap msgid "--user=@var{user}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5886 guix-git/doc/guix.texi:6269 -#: guix-git/doc/guix.texi:13576 +#: guix-git/doc/guix.texi:5899 guix-git/doc/guix.texi:6312 +#: guix-git/doc/guix.texi:13933 #, no-wrap msgid "-u @var{user}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5893 guix-git/doc/guix.texi:6276 +#: guix-git/doc/guix.texi:5906 guix-git/doc/guix.texi:6319 msgid "For containers, use the username @var{user} in place of the current user. The generated @file{/etc/passwd} entry within the container will contain the name @var{user}, the home directory will be @file{/home/@var{user}}, and no user GECOS data will be copied. Furthermore, the UID and GID inside the container are 1000. @var{user} need not exist on the system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5898 guix-git/doc/guix.texi:6281 +#: guix-git/doc/guix.texi:5911 guix-git/doc/guix.texi:6324 msgid "Additionally, any shared or exposed path (see @option{--share} and @option{--expose} respectively) whose target is within the current user's home directory will be remapped relative to @file{/home/USER}; this includes the automatic mapping of the current working directory." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5905 +#: guix-git/doc/guix.texi:5918 #, no-wrap msgid "" "# will expose paths as /home/foo/wd, /home/foo/test, and /home/foo/target\n" @@ -12780,229 +12848,267 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5910 guix-git/doc/guix.texi:6293 +#: guix-git/doc/guix.texi:5923 guix-git/doc/guix.texi:6336 msgid "While this will limit the leaking of user identity through home paths and each of the user fields, this is only one useful component of a broader privacy/anonymity solution---not one in and of itself." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5911 guix-git/doc/guix.texi:6294 +#: guix-git/doc/guix.texi:5924 guix-git/doc/guix.texi:6337 #, no-wrap msgid "--no-cwd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5918 guix-git/doc/guix.texi:6301 +#: guix-git/doc/guix.texi:5931 guix-git/doc/guix.texi:6344 msgid "For containers, the default behavior is to share the current working directory with the isolated container and immediately change to that directory within the container. If this is undesirable, @option{--no-cwd} will cause the current working directory to @emph{not} be automatically shared and will change to the user's home directory within the container instead. See also @option{--user}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5919 guix-git/doc/guix.texi:6302 +#: guix-git/doc/guix.texi:5932 guix-git/doc/guix.texi:6345 #, no-wrap msgid "--expose=@var{source}[=@var{target}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5920 guix-git/doc/guix.texi:6303 +#: guix-git/doc/guix.texi:5933 guix-git/doc/guix.texi:6346 #, no-wrap msgid "--share=@var{source}[=@var{target}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5926 guix-git/doc/guix.texi:6309 +#: guix-git/doc/guix.texi:5939 guix-git/doc/guix.texi:6352 msgid "For containers, @option{--expose} (resp. @option{--share}) exposes the file system @var{source} from the host system as the read-only (resp. writable) file system @var{target} within the container. If @var{target} is not specified, @var{source} is used as the target mount point in the container." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5930 guix-git/doc/guix.texi:6313 +#: guix-git/doc/guix.texi:5943 guix-git/doc/guix.texi:6356 msgid "The example below spawns a Guile REPL in a container in which the user's home directory is accessible read-only via the @file{/exchange} directory:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5933 +#: guix-git/doc/guix.texi:5946 #, no-wrap msgid "guix shell --container --expose=$HOME=/exchange guile -- guile\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5935 guix-git/doc/guix.texi:6110 -#: guix-git/doc/guix.texi:6675 guix-git/doc/guix.texi:11575 -#: guix-git/doc/guix.texi:35308 +#: guix-git/doc/guix.texi:5948 +#, no-wrap +msgid "--rebuild-cache" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:5949 +#, no-wrap +msgid "caching, of profiles" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:5950 +#, no-wrap +msgid "caching, in @command{guix shell}" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:5956 +msgid "In most cases, @command{guix shell} caches the environment so that subsequent uses are instantaneous. Least-recently used cache entries are periodically removed. The cache is also invalidated, when using @option{--file} or @option{--manifest}, anytime the corresponding file is modified." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:5962 +msgid "The @option{--rebuild-cache} forces the cached environment to be refreshed. This is useful when using @option{--file} or @option{--manifest} and the @command{guix.scm} or @command{manifest.scm} file has external dependencies, or if its behavior depends, say, on environment variables." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:5963 guix-git/doc/guix.texi:6147 +#: guix-git/doc/guix.texi:6718 guix-git/doc/guix.texi:11889 +#: guix-git/doc/guix.texi:35752 #, no-wrap msgid "--root=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5936 guix-git/doc/guix.texi:6111 -#: guix-git/doc/guix.texi:6676 guix-git/doc/guix.texi:11576 -#: guix-git/doc/guix.texi:35309 +#: guix-git/doc/guix.texi:5964 guix-git/doc/guix.texi:6148 +#: guix-git/doc/guix.texi:6719 guix-git/doc/guix.texi:11890 +#: guix-git/doc/guix.texi:35753 #, no-wrap msgid "-r @var{file}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5937 guix-git/doc/guix.texi:6112 +#: guix-git/doc/guix.texi:5965 guix-git/doc/guix.texi:6149 #, no-wrap msgid "persistent environment" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5938 guix-git/doc/guix.texi:6113 +#: guix-git/doc/guix.texi:5966 guix-git/doc/guix.texi:6150 #, no-wrap msgid "garbage collector root, for environments" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5941 guix-git/doc/guix.texi:6116 +#: guix-git/doc/guix.texi:5969 guix-git/doc/guix.texi:6153 msgid "Make @var{file} a symlink to the profile for this environment, and register it as a garbage collector root." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5944 guix-git/doc/guix.texi:6119 +#: guix-git/doc/guix.texi:5972 guix-git/doc/guix.texi:6156 msgid "This is useful if you want to protect your environment from garbage collection, to make it ``persistent''." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5950 -msgid "When this option is omitted, the environment is protected from garbage collection only for the duration of the @command{guix shell} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages. @xref{Invoking guix gc}, for more on GC roots." +#: guix-git/doc/guix.texi:5978 +msgid "When this option is omitted, @command{guix shell} caches profiles so that subsequent uses of the same environment are instantaneous---this is comparable to using @option{--root} except that @command{guix shell} takes care of periodically removing the least-recently used garbage collector roots." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:5985 +msgid "In some cases, @command{guix shell} does not cache profiles---e.g., if transformation options such as @option{--with-latest} are used. In those cases, the environment is protected from garbage collection only for the duration of the @command{guix shell} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:5987 +msgid "@xref{Invoking guix gc}, for more on GC roots." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5955 +#: guix-git/doc/guix.texi:5992 msgid "@command{guix shell} also supports all of the common build options that @command{guix build} supports (@pxref{Common Build Options}) as well as package transformation options (@pxref{Package Transformation Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:5957 +#: guix-git/doc/guix.texi:5994 #, no-wrap msgid "Invoking @command{guix environment}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5961 +#: guix-git/doc/guix.texi:5998 msgid "The purpose of @command{guix environment} is to assist in creating development environments." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5962 +#: guix-git/doc/guix.texi:5999 #, no-wrap msgid "Deprecation warning" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5966 +#: guix-git/doc/guix.texi:6003 msgid "The @command{guix environment} command is deprecated in favor of @command{guix shell}, which performs similar functions but is more convenient to use. @xref{Invoking guix shell}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5971 +#: guix-git/doc/guix.texi:6008 msgid "Being deprecated, @command{guix environment} is slated for eventual removal, but the Guix project is committed to keeping it until May 1st, 2023. Please get in touch with us at @email{guix-devel@@gnu.org} if you would like to discuss it." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5977 +#: guix-git/doc/guix.texi:6014 #, no-wrap msgid "guix environment @var{options} @var{package}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5981 +#: guix-git/doc/guix.texi:6018 msgid "The following example spawns a new shell set up for the development of GNU@tie{}Guile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5984 +#: guix-git/doc/guix.texi:6021 #, no-wrap msgid "guix environment guile\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6001 +#: guix-git/doc/guix.texi:6038 msgid "If the needed dependencies are not built yet, @command{guix environment} automatically builds them. The environment of the new shell is an augmented version of the environment that @command{guix environment} was run in. It contains the necessary search paths for building the given package added to the existing environment variables. To create a ``pure'' environment, in which the original environment variables have been unset, use the @option{--pure} option@footnote{Users sometimes wrongfully augment environment variables such as @env{PATH} in their @file{~/.bashrc} file. As a consequence, when @command{guix environment} launches it, Bash may read @file{~/.bashrc}, thereby introducing ``impurities'' in these environment variables. It is an error to define such environment variables in @file{.bashrc}; instead, they should be defined in @file{.bash_profile}, which is sourced only by log-in shells. @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for details on Bash start-up files.}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6007 +#: guix-git/doc/guix.texi:6044 msgid "Exiting from a Guix environment is the same as exiting from the shell, and will place the user back in the old environment before @command{guix environment} was invoked. The next garbage collection (@pxref{Invoking guix gc}) will clean up packages that were installed from within the environment and are no longer used outside of it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6014 +#: guix-git/doc/guix.texi:6051 msgid "@command{guix environment} defines the @env{GUIX_ENVIRONMENT} variable in the shell it spawns; its value is the file name of the profile of this environment. This allows users to, say, define a specific prompt for development environments in their @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6033 +#: guix-git/doc/guix.texi:6070 msgid "Additionally, more than one package may be specified, in which case the union of the inputs for the given packages are used. For example, the command below spawns a shell where all of the dependencies of both Guile and Emacs are available:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6036 +#: guix-git/doc/guix.texi:6073 #, no-wrap msgid "guix environment guile emacs\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6041 +#: guix-git/doc/guix.texi:6078 msgid "Sometimes an interactive shell session is not desired. An arbitrary command may be invoked by placing the @code{--} token to separate the command from the rest of the arguments:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6044 +#: guix-git/doc/guix.texi:6081 #, no-wrap msgid "guix environment guile -- make -j4\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6050 +#: guix-git/doc/guix.texi:6087 msgid "In other situations, it is more convenient to specify the list of packages needed in the environment. For example, the following command runs @command{python} from an environment containing Python@tie{}3 and NumPy:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6053 +#: guix-git/doc/guix.texi:6090 #, no-wrap msgid "guix environment --ad-hoc python-numpy python -- python3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6064 +#: guix-git/doc/guix.texi:6101 msgid "Furthermore, one might want the dependencies of a package and also some additional packages that are not build-time or runtime dependencies, but are useful when developing nonetheless. Because of this, the @option{--ad-hoc} flag is positional. Packages appearing before @option{--ad-hoc} are interpreted as packages whose dependencies will be added to the environment. Packages appearing after are interpreted as packages that will be added to the environment directly. For example, the following command creates a Guix development environment that additionally includes Git and strace:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6067 +#: guix-git/doc/guix.texi:6104 #, no-wrap msgid "guix environment --pure guix --ad-hoc git strace\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6077 +#: guix-git/doc/guix.texi:6114 msgid "Sometimes it is desirable to isolate the environment as much as possible, for maximal purity and reproducibility. In particular, when using Guix on a host distro that is not Guix System, it is desirable to prevent access to @file{/usr/bin} and other system-wide resources from the development environment. For example, the following command spawns a Guile REPL in a ``container'' where only the store and the current working directory are mounted:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6080 +#: guix-git/doc/guix.texi:6117 #, no-wrap msgid "guix environment --ad-hoc --container guile -- guile\n" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6084 +#: guix-git/doc/guix.texi:6121 msgid "The @option{--container} option requires Linux-libre 3.19 or newer." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6086 +#: guix-git/doc/guix.texi:6123 #, no-wrap msgid "certificates" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6093 +#: guix-git/doc/guix.texi:6130 msgid "Another typical use case for containers is to run security-sensitive applications such as a web browser. To run Eolie, we must expose and share some files and directories; we include @code{nss-certs} and expose @file{/etc/ssl/certs/} for HTTPS authentication; finally we preserve the @env{DISPLAY} environment variable since containerized graphical applications won't display without it." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6100 +#: guix-git/doc/guix.texi:6137 #, no-wrap msgid "" "guix environment --preserve='^DISPLAY$' --container --network \\\n" @@ -13013,89 +13119,89 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6109 +#: guix-git/doc/guix.texi:6146 msgid "Set up the environment and check whether the shell would clobber environment variables. @xref{Invoking guix shell, @option{--check}}, for more info." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6125 +#: guix-git/doc/guix.texi:6162 msgid "When this option is omitted, the environment is protected from garbage collection only for the duration of the @command{guix environment} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages. @xref{Invoking guix gc}, for more on GC roots." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6135 +#: guix-git/doc/guix.texi:6172 #, no-wrap msgid "guix environment -e '(@@ (gnu packages maths) petsc-openmpi)'\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6144 +#: guix-git/doc/guix.texi:6181 #, no-wrap msgid "guix environment --ad-hoc -e '(@@ (gnu) %base-packages)'\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6153 +#: guix-git/doc/guix.texi:6190 #, no-wrap msgid "guix environment --ad-hoc -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6155 +#: guix-git/doc/guix.texi:6192 #, no-wrap msgid "--load=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6156 +#: guix-git/doc/guix.texi:6193 #, no-wrap msgid "-l @var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6159 +#: guix-git/doc/guix.texi:6196 msgid "Create an environment for the package or list of packages that the code within @var{file} evaluates to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6177 +#: guix-git/doc/guix.texi:6214 #, no-wrap msgid "--ad-hoc" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6182 +#: guix-git/doc/guix.texi:6219 msgid "Include all specified packages in the resulting environment, as if an @i{ad hoc} package were defined with them as inputs. This option is useful for quickly creating an environment without having to write a package expression to contain the desired inputs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6184 +#: guix-git/doc/guix.texi:6221 msgid "For instance, the command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6187 +#: guix-git/doc/guix.texi:6224 #, no-wrap msgid "guix environment --ad-hoc guile guile-sdl -- guile\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6191 +#: guix-git/doc/guix.texi:6228 msgid "runs @command{guile} in an environment where Guile and Guile-SDL are available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6196 +#: guix-git/doc/guix.texi:6233 msgid "Note that this example implicitly asks for the default output of @code{guile} and @code{guile-sdl}, but it is possible to ask for a specific output---e.g., @code{glib:bin} asks for the @code{bin} output of @code{glib} (@pxref{Packages with Multiple Outputs})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6202 +#: guix-git/doc/guix.texi:6239 msgid "This option may be composed with the default behavior of @command{guix environment}. Packages appearing before @option{--ad-hoc} are interpreted as packages whose dependencies will be added to the environment, the default behavior. Packages appearing after are interpreted as packages that will be added to the environment directly." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6218 +#: guix-git/doc/guix.texi:6261 #, no-wrap msgid "" "guix environment --pure --preserve=^SLURM --ad-hoc openmpi @dots{} \\\n" @@ -13103,12 +13209,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6261 +#: guix-git/doc/guix.texi:6304 msgid "For containers, link the environment profile to @file{~/.guix-profile} within the container and set @code{GUIX_ENVIRONMENT} to that. This is equivalent to making @file{~/.guix-profile} a symlink to the actual profile within the container. Linking will fail and abort the environment if the directory already exists, which will certainly be the case if @command{guix environment} was invoked in the user's home directory." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6288 +#: guix-git/doc/guix.texi:6331 #, no-wrap msgid "" "# will expose paths as /home/foo/wd, /home/foo/test, and /home/foo/target\n" @@ -13119,68 +13225,68 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6316 +#: guix-git/doc/guix.texi:6359 #, no-wrap msgid "guix environment --container --expose=$HOME=/exchange --ad-hoc guile -- guile\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6324 +#: guix-git/doc/guix.texi:6367 msgid "@command{guix environment} also supports all of the common build options that @command{guix build} supports (@pxref{Common Build Options}) as well as package transformation options (@pxref{Package Transformation Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:6326 +#: guix-git/doc/guix.texi:6369 #, no-wrap msgid "Invoking @command{guix pack}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6332 +#: guix-git/doc/guix.texi:6375 msgid "Occasionally you want to pass software to people who are not (yet!) lucky enough to be using Guix. You'd tell them to run @command{guix package -i @var{something}}, but that's not possible in this case. This is where @command{guix pack} comes in." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6337 +#: guix-git/doc/guix.texi:6380 msgid "If you are looking for ways to exchange binaries among machines that already run Guix, @pxref{Invoking guix copy}, @ref{Invoking guix publish}, and @ref{Invoking guix archive}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6339 +#: guix-git/doc/guix.texi:6382 #, no-wrap msgid "pack" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6340 +#: guix-git/doc/guix.texi:6383 #, no-wrap msgid "bundle" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6341 +#: guix-git/doc/guix.texi:6384 #, no-wrap msgid "application bundle" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6342 +#: guix-git/doc/guix.texi:6385 #, no-wrap msgid "software bundle" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6351 +#: guix-git/doc/guix.texi:6394 msgid "The @command{guix pack} command creates a shrink-wrapped @dfn{pack} or @dfn{software bundle}: it creates a tarball or some other archive containing the binaries of the software you're interested in, and all its dependencies. The resulting archive can be used on any machine that does not have Guix, and people can run the exact same binaries as those you have with Guix. The pack itself is created in a bit-reproducible fashion, so anyone can verify that it really contains the build results that you pretend to be shipping." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6354 +#: guix-git/doc/guix.texi:6397 msgid "For example, to create a bundle containing Guile, Emacs, Geiser, and all their dependencies, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6359 +#: guix-git/doc/guix.texi:6402 #, no-wrap msgid "" "$ guix pack guile emacs emacs-geiser\n" @@ -13189,61 +13295,61 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6367 +#: guix-git/doc/guix.texi:6410 msgid "The result here is a tarball containing a @file{/gnu/store} directory with all the relevant packages. The resulting tarball contains a @dfn{profile} with the three packages of interest; the profile is the same as would be created by @command{guix package -i}. It is this mechanism that is used to create Guix's own standalone binary tarball (@pxref{Binary Installation})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6372 +#: guix-git/doc/guix.texi:6415 msgid "Users of this pack would have to run @file{/gnu/store/@dots{}-profile/bin/guile} to run Guile, which you may find inconvenient. To work around it, you can create, say, a @file{/opt/gnu/bin} symlink to the profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6375 +#: guix-git/doc/guix.texi:6418 #, no-wrap msgid "guix pack -S /opt/gnu/bin=bin guile emacs emacs-geiser\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6379 +#: guix-git/doc/guix.texi:6422 msgid "That way, users can happily type @file{/opt/gnu/bin/guile} and enjoy." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6380 +#: guix-git/doc/guix.texi:6423 #, no-wrap msgid "relocatable binaries, with @command{guix pack}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6388 +#: guix-git/doc/guix.texi:6431 msgid "What if the recipient of your pack does not have root privileges on their machine, and thus cannot unpack it in the root file system? In that case, you will want to use the @option{--relocatable} option (see below). This option produces @dfn{relocatable binaries}, meaning they they can be placed anywhere in the file system hierarchy: in the example above, users can unpack your tarball in their home directory and directly run @file{./opt/gnu/bin/guile}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6389 +#: guix-git/doc/guix.texi:6432 #, no-wrap msgid "Docker, build an image with guix pack" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6392 +#: guix-git/doc/guix.texi:6435 msgid "Alternatively, you can produce a pack in the Docker image format using the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6395 +#: guix-git/doc/guix.texi:6438 #, no-wrap msgid "guix pack -f docker -S /bin=bin guile guile-readline\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6400 +#: guix-git/doc/guix.texi:6443 msgid "The result is a tarball that can be passed to the @command{docker load} command, followed by @code{docker run}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6404 +#: guix-git/doc/guix.texi:6447 #, no-wrap msgid "" "docker load < @var{file}\n" @@ -13251,169 +13357,169 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6411 +#: guix-git/doc/guix.texi:6454 msgid "where @var{file} is the image returned by @var{guix pack}, and @code{guile-guile-readline} is its ``image tag''. See the @uref{https://docs.docker.com/engine/reference/commandline/load/, Docker documentation} for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6412 +#: guix-git/doc/guix.texi:6455 #, no-wrap msgid "Singularity, build an image with guix pack" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6413 +#: guix-git/doc/guix.texi:6456 #, no-wrap msgid "SquashFS, build an image with guix pack" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6416 +#: guix-git/doc/guix.texi:6459 msgid "Yet another option is to produce a SquashFS image with the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6419 +#: guix-git/doc/guix.texi:6462 #, no-wrap msgid "guix pack -f squashfs bash guile emacs emacs-geiser\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6427 +#: guix-git/doc/guix.texi:6470 msgid "The result is a SquashFS file system image that can either be mounted or directly be used as a file system container image with the @uref{https://www.sylabs.io/docs/, Singularity container execution environment}, using commands like @command{singularity shell} or @command{singularity exec}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6429 +#: guix-git/doc/guix.texi:6472 msgid "Several command-line options allow you to customize your pack:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6434 +#: guix-git/doc/guix.texi:6477 msgid "Produce a pack in the given @var{format}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6436 +#: guix-git/doc/guix.texi:6479 msgid "The available formats are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6438 +#: guix-git/doc/guix.texi:6481 #, no-wrap msgid "tarball" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6441 +#: guix-git/doc/guix.texi:6484 msgid "This is the default format. It produces a tarball containing all the specified binaries and symlinks." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6442 +#: guix-git/doc/guix.texi:6485 #, no-wrap msgid "docker" msgstr "Docker" #. type: table -#: guix-git/doc/guix.texi:6448 +#: guix-git/doc/guix.texi:6491 msgid "This produces a tarball that follows the @uref{https://github.com/docker/docker/blob/master/image/spec/v1.2.md, Docker Image Specification}. The ``repository name'' as it appears in the output of the @command{docker images} command is computed from package names passed on the command line or in the manifest file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6449 +#: guix-git/doc/guix.texi:6492 #, no-wrap msgid "squashfs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6453 +#: guix-git/doc/guix.texi:6496 msgid "This produces a SquashFS image containing all the specified binaries and symlinks, as well as empty mount points for virtual file systems like procfs." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6459 +#: guix-git/doc/guix.texi:6502 msgid "Singularity @emph{requires} you to provide @file{/bin/sh} in the image. For that reason, @command{guix pack -f squashfs} always implies @code{-S /bin=bin}. Thus, your @command{guix pack} invocation must always start with something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6462 +#: guix-git/doc/guix.texi:6505 #, no-wrap msgid "guix pack -f squashfs bash @dots{}\n" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6467 +#: guix-git/doc/guix.texi:6510 msgid "If you forget the @code{bash} (or similar) package, @command{singularity run} and @command{singularity exec} will fail with an unhelpful ``no such file or directory'' message." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6469 +#: guix-git/doc/guix.texi:6512 #, no-wrap msgid "deb" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6477 +#: guix-git/doc/guix.texi:6520 msgid "This produces a Debian archive (a package with the @samp{.deb} file extension) containing all the specified binaries and symbolic links, that can be installed on top of any dpkg-based GNU(/Linux) distribution. Advanced options can be revealed via the @option{--help-deb-format} option. They allow embedding control files for more fine-grained control, such as activating specific triggers or providing a maintainer configure script to run arbitrary setup code upon installation." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6480 +#: guix-git/doc/guix.texi:6523 #, no-wrap msgid "guix pack -f deb -C xz -S /usr/bin/hello=bin/hello hello\n" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6487 +#: guix-git/doc/guix.texi:6530 msgid "Because archives produced with @command{guix pack} contain a collection of store items and because each @command{dpkg} package must not have conflicting files, in practice that means you likely won't be able to install more than one such archive on a given system." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6495 +#: guix-git/doc/guix.texi:6538 msgid "@command{dpkg} will assume ownership of any files contained in the pack that it does @emph{not} know about. It is unwise to install Guix-produced @samp{.deb} files on a system where @file{/gnu/store} is shared by other software, such as a Guix installation or other, non-deb packs." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6499 +#: guix-git/doc/guix.texi:6542 #, no-wrap msgid "relocatable binaries" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6500 +#: guix-git/doc/guix.texi:6543 #, no-wrap msgid "--relocatable" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6504 +#: guix-git/doc/guix.texi:6547 msgid "Produce @dfn{relocatable binaries}---i.e., binaries that can be placed anywhere in the file system hierarchy and run from there." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6512 +#: guix-git/doc/guix.texi:6555 msgid "When this option is passed once, the resulting binaries require support for @dfn{user namespaces} in the kernel Linux; when passed @emph{twice}@footnote{Here's a trick to memorize it: @code{-RR}, which adds PRoot support, can be thought of as the abbreviation of ``Really Relocatable''. Neat, isn't it?}, relocatable binaries fall to back to other techniques if user namespaces are unavailable, and essentially work anywhere---see below for the implications." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6514 +#: guix-git/doc/guix.texi:6557 msgid "For example, if you create a pack containing Bash with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6517 +#: guix-git/doc/guix.texi:6560 #, no-wrap msgid "guix pack -RR -S /mybin=bin bash\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6522 +#: guix-git/doc/guix.texi:6565 msgid "...@: you can copy that pack to a machine that lacks Guix, and from your home directory as a normal user, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6526 +#: guix-git/doc/guix.texi:6569 #, no-wrap msgid "" "tar xf pack.tar.gz\n" @@ -13421,121 +13527,121 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6534 +#: guix-git/doc/guix.texi:6577 msgid "In that shell, if you type @code{ls /gnu/store}, you'll notice that @file{/gnu/store} shows up and contains all the dependencies of @code{bash}, even though the machine actually lacks @file{/gnu/store} altogether! That is probably the simplest way to deploy Guix-built software on a non-Guix machine." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6540 +#: guix-git/doc/guix.texi:6583 msgid "By default, relocatable binaries rely on the @dfn{user namespace} feature of the kernel Linux, which allows unprivileged users to mount or change root. Old versions of Linux did not support it, and some GNU/Linux distributions turn it off." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6546 +#: guix-git/doc/guix.texi:6589 msgid "To produce relocatable binaries that work even in the absence of user namespaces, pass @option{--relocatable} or @option{-R} @emph{twice}. In that case, binaries will try user namespace support and fall back to another @dfn{execution engine} if user namespaces are not supported. The following execution engines are supported:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6548 guix-git/doc/guix.texi:17371 +#: guix-git/doc/guix.texi:6591 guix-git/doc/guix.texi:17733 #, no-wrap msgid "default" msgstr "oletus" #. type: table -#: guix-git/doc/guix.texi:6551 +#: guix-git/doc/guix.texi:6594 msgid "Try user namespaces and fall back to PRoot if user namespaces are not supported (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6552 +#: guix-git/doc/guix.texi:6595 #, no-wrap msgid "performance" msgstr "suorituskyky" #. type: table -#: guix-git/doc/guix.texi:6555 +#: guix-git/doc/guix.texi:6598 msgid "Try user namespaces and fall back to Fakechroot if user namespaces are not supported (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6556 +#: guix-git/doc/guix.texi:6599 #, no-wrap msgid "userns" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6559 +#: guix-git/doc/guix.texi:6602 msgid "Run the program through user namespaces and abort if they are not supported." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6560 +#: guix-git/doc/guix.texi:6603 #, no-wrap msgid "proot" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6567 +#: guix-git/doc/guix.texi:6610 msgid "Run through PRoot. The @uref{https://proot-me.github.io/, PRoot} program provides the necessary support for file system virtualization. It achieves that by using the @code{ptrace} system call on the running program. This approach has the advantage to work without requiring special kernel support, but it incurs run-time overhead every time a system call is made." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6568 +#: guix-git/doc/guix.texi:6611 #, no-wrap msgid "fakechroot" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6576 +#: guix-git/doc/guix.texi:6619 msgid "Run through Fakechroot. @uref{https://github.com/dex4er/fakechroot/, Fakechroot} virtualizes file system accesses by intercepting calls to C library functions such as @code{open}, @code{stat}, @code{exec}, and so on. Unlike PRoot, it incurs very little overhead. However, it does not always work: for example, some file system accesses made from within the C library are not intercepted, and file system accesses made @i{via} direct syscalls are not intercepted either, leading to erratic behavior." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:6578 +#: guix-git/doc/guix.texi:6621 #, no-wrap msgid "GUIX_EXECUTION_ENGINE" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6582 +#: guix-git/doc/guix.texi:6625 msgid "When running a wrapped program, you can explicitly request one of the execution engines listed above by setting the @env{GUIX_EXECUTION_ENGINE} environment variable accordingly." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6584 +#: guix-git/doc/guix.texi:6627 #, no-wrap msgid "entry point, for Docker images" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6585 +#: guix-git/doc/guix.texi:6628 #, no-wrap msgid "--entry-point=@var{command}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6590 +#: guix-git/doc/guix.texi:6633 msgid "Use @var{command} as the @dfn{entry point} of the resulting pack, if the pack format supports it---currently @code{docker} and @code{squashfs} (Singularity) support it. @var{command} must be relative to the profile contained in the pack." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6594 +#: guix-git/doc/guix.texi:6637 msgid "The entry point specifies the command that tools like @code{docker run} or @code{singularity run} automatically start by default. For example, you can do:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6597 +#: guix-git/doc/guix.texi:6640 #, no-wrap msgid "guix pack -f docker --entry-point=bin/guile guile\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6601 +#: guix-git/doc/guix.texi:6644 msgid "The resulting pack can easily be loaded and @code{docker run} with no extra arguments will spawn @code{bin/guile}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6605 +#: guix-git/doc/guix.texi:6648 #, no-wrap msgid "" "docker load -i pack.tar.gz\n" @@ -13543,398 +13649,398 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6610 guix-git/doc/guix.texi:12497 -#: guix-git/doc/guix.texi:13445 +#: guix-git/doc/guix.texi:6653 guix-git/doc/guix.texi:12812 +#: guix-git/doc/guix.texi:13802 msgid "Consider the package @var{expr} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6614 +#: guix-git/doc/guix.texi:6657 msgid "This has the same purpose as the same-named option in @command{guix build} (@pxref{Additional Build Options, @option{--expression} in @command{guix build}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6620 +#: guix-git/doc/guix.texi:6663 msgid "Use the packages contained in the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6628 +#: guix-git/doc/guix.texi:6671 msgid "This has a similar purpose as the same-named option in @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) and uses the same manifest files. It allows you to define a collection of packages once and use it both for creating profiles and for creating archives for use on machines that do not have Guix installed. Note that you can specify @emph{either} a manifest file @emph{or} a list of packages, but not both." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6634 guix-git/doc/guix.texi:11539 +#: guix-git/doc/guix.texi:6677 guix-git/doc/guix.texi:11853 #, no-wrap msgid "--target=@var{triplet}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6635 guix-git/doc/guix.texi:7080 -#: guix-git/doc/guix.texi:11540 +#: guix-git/doc/guix.texi:6678 guix-git/doc/guix.texi:7124 +#: guix-git/doc/guix.texi:11854 #, no-wrap msgid "cross-compilation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6639 +#: guix-git/doc/guix.texi:6682 msgid "Cross-build for @var{triplet}, which must be a valid GNU triplet, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying target triplets, GNU configuration triplets,, autoconf, Autoconf})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6640 +#: guix-git/doc/guix.texi:6683 #, no-wrap msgid "--compression=@var{tool}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6641 +#: guix-git/doc/guix.texi:6684 #, no-wrap msgid "-C @var{tool}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6645 +#: guix-git/doc/guix.texi:6688 msgid "Compress the resulting tarball using @var{tool}---one of @code{gzip}, @code{zstd}, @code{bzip2}, @code{xz}, @code{lzip}, or @code{none} for no compression." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6646 +#: guix-git/doc/guix.texi:6689 #, no-wrap msgid "--symlink=@var{spec}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6647 +#: guix-git/doc/guix.texi:6690 #, no-wrap msgid "-S @var{spec}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6650 +#: guix-git/doc/guix.texi:6693 msgid "Add the symlinks specified by @var{spec} to the pack. This option can appear several times." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6654 +#: guix-git/doc/guix.texi:6697 msgid "@var{spec} has the form @code{@var{source}=@var{target}}, where @var{source} is the symlink that will be created and @var{target} is the symlink target." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6657 +#: guix-git/doc/guix.texi:6700 msgid "For instance, @code{-S /opt/gnu/bin=bin} creates a @file{/opt/gnu/bin} symlink pointing to the @file{bin} sub-directory of the profile." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6658 guix-git/doc/guix.texi:35262 +#: guix-git/doc/guix.texi:6701 guix-git/doc/guix.texi:35706 #, no-wrap msgid "--save-provenance" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6662 +#: guix-git/doc/guix.texi:6705 msgid "Save provenance information for the packages passed on the command line. Provenance information includes the URL and commit of the channels in use (@pxref{Channels})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6668 +#: guix-git/doc/guix.texi:6711 msgid "Provenance information is saved in the @file{/gnu/store/@dots{}-profile/manifest} file in the pack, along with the usual package metadata---the name and version of each package, their propagated inputs, and so on. It is useful information to the recipient of the pack, who then knows how the pack was (supposedly) obtained." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6674 +#: guix-git/doc/guix.texi:6717 msgid "This option is not enabled by default because, like timestamps, provenance information contributes nothing to the build process. In other words, there is an infinity of channel URLs and commit IDs that can lead to the same pack. Recording such ``silent'' metadata in the output thus potentially breaks the source-to-binary bitwise reproducibility property." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6677 +#: guix-git/doc/guix.texi:6720 #, no-wrap msgid "garbage collector root, for packs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6680 +#: guix-git/doc/guix.texi:6723 msgid "Make @var{file} a symlink to the resulting pack, and register it as a garbage collector root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6681 +#: guix-git/doc/guix.texi:6724 #, no-wrap msgid "--localstatedir" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6682 +#: guix-git/doc/guix.texi:6725 #, no-wrap msgid "--profile-name=@var{name}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6687 +#: guix-git/doc/guix.texi:6730 msgid "Include the ``local state directory'', @file{/var/guix}, in the resulting pack, and notably the @file{/var/guix/profiles/per-user/root/@var{name}} profile---by default @var{name} is @code{guix-profile}, which corresponds to @file{~root/.guix-profile}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6693 +#: guix-git/doc/guix.texi:6736 msgid "@file{/var/guix} contains the store database (@pxref{The Store}) as well as garbage-collector roots (@pxref{Invoking guix gc}). Providing it in the pack means that the store is ``complete'' and manageable by Guix; not providing it pack means that the store is ``dead'': items cannot be added to it or removed from it after extraction of the pack." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6696 +#: guix-git/doc/guix.texi:6739 msgid "One use case for this is the Guix self-contained binary tarball (@pxref{Binary Installation})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6697 guix-git/doc/guix.texi:35256 +#: guix-git/doc/guix.texi:6740 guix-git/doc/guix.texi:35700 #, no-wrap msgid "--derivation" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6698 guix-git/doc/guix.texi:11571 -#: guix-git/doc/guix.texi:35257 +#: guix-git/doc/guix.texi:6741 guix-git/doc/guix.texi:11885 +#: guix-git/doc/guix.texi:35701 #, no-wrap msgid "-d" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6700 +#: guix-git/doc/guix.texi:6743 msgid "Print the name of the derivation that builds the pack." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6704 +#: guix-git/doc/guix.texi:6747 msgid "Use the bootstrap binaries to build the pack. This option is only useful to Guix developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6709 +#: guix-git/doc/guix.texi:6752 msgid "In addition, @command{guix pack} supports all the common build options (@pxref{Common Build Options}) and all the package transformation options (@pxref{Package Transformation Options})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6714 +#: guix-git/doc/guix.texi:6757 #, no-wrap msgid "GCC" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6715 +#: guix-git/doc/guix.texi:6758 #, no-wrap msgid "ld-wrapper" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6716 +#: guix-git/doc/guix.texi:6759 #, no-wrap msgid "linker wrapper" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6717 +#: guix-git/doc/guix.texi:6760 #, no-wrap msgid "toolchain, for C development" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6718 +#: guix-git/doc/guix.texi:6761 #, no-wrap msgid "toolchain, for Fortran development" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6725 +#: guix-git/doc/guix.texi:6768 msgid "If you need a complete toolchain for compiling and linking C or C++ source code, use the @code{gcc-toolchain} package. This package provides a complete GCC toolchain for C/C++ development, including GCC itself, the GNU C Library (headers and binaries, plus debugging symbols in the @code{debug} output), Binutils, and a linker wrapper." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6731 +#: guix-git/doc/guix.texi:6774 msgid "The wrapper's purpose is to inspect the @code{-L} and @code{-l} switches passed to the linker, add corresponding @code{-rpath} arguments, and invoke the actual linker with this new set of arguments. You can instruct the wrapper to refuse to link against libraries not in the store by setting the @env{GUIX_LD_WRAPPER_ALLOW_IMPURITIES} environment variable to @code{no}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6735 +#: guix-git/doc/guix.texi:6778 msgid "The package @code{gfortran-toolchain} provides a complete GCC toolchain for Fortran development. For other languages, please use @samp{guix search gcc toolchain} (@pxref{guix-search,, Invoking guix package})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:6738 +#: guix-git/doc/guix.texi:6781 #, no-wrap msgid "Invoking @command{guix git authenticate}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6746 +#: guix-git/doc/guix.texi:6789 msgid "The @command{guix git authenticate} command authenticates a Git checkout following the same rule as for channels (@pxref{channel-authentication, channel authentication}). That is, starting from a given commit, it ensures that all subsequent commits are signed by an OpenPGP key whose fingerprint appears in the @file{.guix-authorizations} file of its parent commit(s)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6751 +#: guix-git/doc/guix.texi:6794 msgid "You will find this command useful if you maintain a channel. But in fact, this authentication mechanism is useful in a broader context, so you might want to use it for Git repositories that have nothing to do with Guix." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6756 +#: guix-git/doc/guix.texi:6799 #, no-wrap msgid "guix git authenticate @var{commit} @var{signer} [@var{options}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6765 +#: guix-git/doc/guix.texi:6808 msgid "By default, this command authenticates the Git checkout in the current directory; it outputs nothing and exits with exit code zero on success and non-zero on failure. @var{commit} above denotes the first commit where authentication takes place, and @var{signer} is the OpenPGP fingerprint of public key used to sign @var{commit}. Together, they form a ``channel introduction'' (@pxref{channel-authentication, channel introduction}). The options below allow you to fine-tune the process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6767 +#: guix-git/doc/guix.texi:6810 #, no-wrap msgid "--repository=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6768 +#: guix-git/doc/guix.texi:6811 #, no-wrap msgid "-r @var{directory}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6771 +#: guix-git/doc/guix.texi:6814 msgid "Open the Git repository in @var{directory} instead of the current directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6772 +#: guix-git/doc/guix.texi:6815 #, no-wrap msgid "--keyring=@var{reference}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6773 +#: guix-git/doc/guix.texi:6816 #, no-wrap msgid "-k @var{reference}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6779 +#: guix-git/doc/guix.texi:6822 msgid "Load OpenPGP keyring from @var{reference}, the reference of a branch such as @code{origin/keyring} or @code{my-keyring}. The branch must contain OpenPGP public keys in @file{.key} files, either in binary form or ``ASCII-armored''. By default the keyring is loaded from the branch named @code{keyring}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6780 +#: guix-git/doc/guix.texi:6823 #, no-wrap msgid "--stats" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6782 +#: guix-git/doc/guix.texi:6825 msgid "Display commit signing statistics upon completion." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6783 +#: guix-git/doc/guix.texi:6826 #, no-wrap msgid "--cache-key=@var{key}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6787 +#: guix-git/doc/guix.texi:6830 msgid "Previously-authenticated commits are cached in a file under @file{~/.cache/guix/authentication}. This option forces the cache to be stored in file @var{key} in that directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6788 +#: guix-git/doc/guix.texi:6831 #, no-wrap msgid "--historical-authorizations=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6795 +#: guix-git/doc/guix.texi:6838 msgid "By default, any commit whose parent commit(s) lack the @file{.guix-authorizations} file is considered inauthentic. In contrast, this option considers the authorizations in @var{file} for any commit that lacks @file{.guix-authorizations}. The format of @var{file} is the same as that of @file{.guix-authorizations} (@pxref{channel-authorizations, @file{.guix-authorizations} format})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6808 +#: guix-git/doc/guix.texi:6851 msgid "GNU Guix provides several Scheme programming interfaces (APIs) to define, build, and query packages. The first interface allows users to write high-level package definitions. These definitions refer to familiar packaging concepts, such as the name and version of a package, its build system, and its dependencies. These definitions can then be turned into concrete build actions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6814 +#: guix-git/doc/guix.texi:6857 msgid "Build actions are performed by the Guix daemon, on behalf of users. In a standard setup, the daemon has write access to the store---the @file{/gnu/store} directory---whereas users do not. The recommended setup also has the daemon perform builds in chroots, under specific build users, to minimize interference with the rest of the system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6823 +#: guix-git/doc/guix.texi:6866 msgid "Lower-level APIs are available to interact with the daemon and the store. To instruct the daemon to perform a build action, users actually provide it with a @dfn{derivation}. A derivation is a low-level representation of the build actions to be taken, and the environment in which they should occur---derivations are to package definitions what assembly is to C programs. The term ``derivation'' comes from the fact that build results @emph{derive} from them." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6826 +#: guix-git/doc/guix.texi:6869 msgid "This chapter describes all these APIs in turn, starting from high-level package definitions." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:6883 msgid "Programming Guix in Guile" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6855 +#: guix-git/doc/guix.texi:6899 msgid "From a programming viewpoint, the package definitions of the GNU distribution are provided by Guile modules in the @code{(gnu packages @dots{})} name space@footnote{Note that packages under the @code{(gnu packages @dots{})} module name space are not necessarily ``GNU packages''. This module naming scheme follows the usual Guile module naming convention: @code{gnu} means that these modules are distributed as part of the GNU system, and @code{packages} identifies modules that define packages.} (@pxref{Modules, Guile modules,, guile, GNU Guile Reference Manual}). For instance, the @code{(gnu packages emacs)} module exports a variable named @code{emacs}, which is bound to a @code{} object (@pxref{Defining Packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6862 +#: guix-git/doc/guix.texi:6906 msgid "The @code{(gnu packages @dots{})} module name space is automatically scanned for packages by the command-line tools. For instance, when running @code{guix install emacs}, all the @code{(gnu packages @dots{})} modules are scanned until one that exports a package object whose name is @code{emacs} is found. This package search facility is implemented in the @code{(gnu packages)} module." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6864 +#: guix-git/doc/guix.texi:6908 #, no-wrap msgid "package module search path" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6873 +#: guix-git/doc/guix.texi:6917 msgid "Users can store package definitions in modules with different names---e.g., @code{(my-packages emacs)}@footnote{Note that the file name and module name must match. For instance, the @code{(my-packages emacs)} module must be stored in a @file{my-packages/emacs.scm} file relative to the load path specified with @option{--load-path} or @env{GUIX_PACKAGE_PATH}. @xref{Modules and the File System,,, guile, GNU Guile Reference Manual}, for details.}. There are two ways to make these package definitions visible to the user interfaces:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:6880 +#: guix-git/doc/guix.texi:6924 msgid "By adding the directory containing your package modules to the search path with the @code{-L} flag of @command{guix package} and other commands (@pxref{Common Build Options}), or by setting the @env{GUIX_PACKAGE_PATH} environment variable described below." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:6886 +#: guix-git/doc/guix.texi:6930 msgid "By defining a @dfn{channel} and configuring @command{guix pull} so that it pulls from it. A channel is essentially a Git repository containing package modules. @xref{Channels}, for more information on how to define and use channels." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6889 +#: guix-git/doc/guix.texi:6933 msgid "@env{GUIX_PACKAGE_PATH} works similarly to other search path variables:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:6890 +#: guix-git/doc/guix.texi:6934 #, no-wrap msgid "{Environment Variable} GUIX_PACKAGE_PATH" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:6894 +#: guix-git/doc/guix.texi:6938 msgid "This is a colon-separated list of directories to search for additional package modules. Directories listed in this variable take precedence over the own modules of the distribution." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6902 +#: guix-git/doc/guix.texi:6946 msgid "The distribution is fully @dfn{bootstrapped} and @dfn{self-contained}: each package is built based solely on other packages in the distribution. The root of this dependency graph is a small set of @dfn{bootstrap binaries}, provided by the @code{(gnu packages bootstrap)} module. For more information on bootstrapping, @pxref{Bootstrapping}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6910 +#: guix-git/doc/guix.texi:6954 msgid "The high-level interface to package definitions is implemented in the @code{(guix packages)} and @code{(guix build-system)} modules. As an example, the package definition, or @dfn{recipe}, for the GNU Hello package looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:6918 +#: guix-git/doc/guix.texi:6962 #, no-wrap msgid "" "(define-module (gnu packages hello)\n" @@ -13947,7 +14053,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:6937 +#: guix-git/doc/guix.texi:6981 #, no-wrap msgid "" "(define-public hello\n" @@ -13971,327 +14077,327 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6947 +#: guix-git/doc/guix.texi:6991 msgid "Without being a Scheme expert, the reader may have guessed the meaning of the various fields here. This expression binds the variable @code{hello} to a @code{} object, which is essentially a record (@pxref{SRFI-9, Scheme records,, guile, GNU Guile Reference Manual}). This package object can be inspected using procedures found in the @code{(guix packages)} module; for instance, @code{(package-name hello)} returns---surprise!---@code{\"hello\"}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6951 +#: guix-git/doc/guix.texi:6995 msgid "With luck, you may be able to import part or all of the definition of the package you are interested in from another repository, using the @code{guix import} command (@pxref{Invoking guix import})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6957 +#: guix-git/doc/guix.texi:7001 msgid "In the example above, @code{hello} is defined in a module of its own, @code{(gnu packages hello)}. Technically, this is not strictly necessary, but it is convenient to do so: all the packages defined in modules under @code{(gnu packages @dots{})} are automatically known to the command-line tools (@pxref{Package Modules})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6959 +#: guix-git/doc/guix.texi:7003 msgid "There are a few points worth noting in the above package definition:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6966 +#: guix-git/doc/guix.texi:7010 msgid "The @code{source} field of the package is an @code{} object (@pxref{origin Reference}, for the complete reference). Here, the @code{url-fetch} method from @code{(guix download)} is used, meaning that the source is a file to be downloaded over FTP or HTTP." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6969 +#: guix-git/doc/guix.texi:7013 msgid "The @code{mirror://gnu} prefix instructs @code{url-fetch} to use one of the GNU mirrors defined in @code{(guix download)}." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6976 +#: guix-git/doc/guix.texi:7020 msgid "The @code{sha256} field specifies the expected SHA256 hash of the file being downloaded. It is mandatory, and allows Guix to check the integrity of the file. The @code{(base32 @dots{})} form introduces the base32 representation of the hash. You can obtain this information with @code{guix download} (@pxref{Invoking guix download}) and @code{guix hash} (@pxref{Invoking guix hash})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6977 +#: guix-git/doc/guix.texi:7021 #, no-wrap msgid "patches" msgstr "paikkauksia" #. type: itemize -#: guix-git/doc/guix.texi:6981 +#: guix-git/doc/guix.texi:7025 msgid "When needed, the @code{origin} form can also have a @code{patches} field listing patches to be applied, and a @code{snippet} field giving a Scheme expression to modify the source code." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6983 +#: guix-git/doc/guix.texi:7027 #, no-wrap msgid "GNU Build System" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6989 +#: guix-git/doc/guix.texi:7033 msgid "The @code{build-system} field specifies the procedure to build the package (@pxref{Build Systems}). Here, @code{gnu-build-system} represents the familiar GNU Build System, where packages may be configured, built, and installed with the usual @code{./configure && make && make check && make install} command sequence." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6993 +#: guix-git/doc/guix.texi:7037 msgid "When you start packaging non-trivial software, you may need tools to manipulate those build phases, manipulate files, and so on. @xref{Build Utilities}, for more on this." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6999 +#: guix-git/doc/guix.texi:7043 msgid "The @code{arguments} field specifies options for the build system (@pxref{Build Systems}). Here it is interpreted by @code{gnu-build-system} as a request run @file{configure} with the @option{--enable-silent-rules} flag." msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7000 guix-git/doc/guix.texi:7003 +#: guix-git/doc/guix.texi:7044 guix-git/doc/guix.texi:7047 #, no-wrap msgid "quote" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7001 +#: guix-git/doc/guix.texi:7045 #, no-wrap msgid "quoting" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7002 +#: guix-git/doc/guix.texi:7046 #, no-wrap msgid "'" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7004 +#: guix-git/doc/guix.texi:7048 #, no-wrap msgid "backquote (quasiquote)" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7005 +#: guix-git/doc/guix.texi:7049 #, no-wrap msgid "`" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7006 +#: guix-git/doc/guix.texi:7050 #, no-wrap msgid "quasiquote" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7007 +#: guix-git/doc/guix.texi:7051 #, no-wrap msgid "comma (unquote)" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7008 +#: guix-git/doc/guix.texi:7052 #, no-wrap msgid "," msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7009 +#: guix-git/doc/guix.texi:7053 #, no-wrap msgid "unquote" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7019 +#: guix-git/doc/guix.texi:7063 msgid "What about these quote (@code{'}) characters? They are Scheme syntax to introduce a literal list; @code{'} is synonymous with @code{quote}. Sometimes you'll also see @code{`} (a backquote, synonymous with @code{quasiquote}) and @code{,} (a comma, synonymous with @code{unquote}). @xref{Expression Syntax, quoting,, guile, GNU Guile Reference Manual}, for details. Here the value of the @code{arguments} field is a list of arguments passed to the build system down the road, as with @code{apply} (@pxref{Fly Evaluation, @code{apply},, guile, GNU Guile Reference Manual})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7025 +#: guix-git/doc/guix.texi:7069 msgid "The hash-colon (@code{#:}) sequence defines a Scheme @dfn{keyword} (@pxref{Keywords,,, guile, GNU Guile Reference Manual}), and @code{#:configure-flags} is a keyword used to pass a keyword argument to the build system (@pxref{Coding With Keywords,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7031 +#: guix-git/doc/guix.texi:7075 msgid "The @code{inputs} field specifies inputs to the build process---i.e., build-time or run-time dependencies of the package. Here, we add an input, a reference to the @code{gawk} variable; @code{gawk} is itself bound to a @code{} object." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7035 +#: guix-git/doc/guix.texi:7079 msgid "Note that GCC, Coreutils, Bash, and other essential tools do not need to be specified as inputs here. Instead, @code{gnu-build-system} takes care of ensuring that they are present (@pxref{Build Systems})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7039 +#: guix-git/doc/guix.texi:7083 msgid "However, any other dependencies need to be specified in the @code{inputs} field. Any dependency not specified here will simply be unavailable to the build process, possibly leading to a build failure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7042 +#: guix-git/doc/guix.texi:7086 msgid "@xref{package Reference}, for a full description of possible fields." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7053 +#: guix-git/doc/guix.texi:7097 msgid "Once a package definition is in place, the package may actually be built using the @code{guix build} command-line tool (@pxref{Invoking guix build}), troubleshooting any build failures you encounter (@pxref{Debugging Build Failures}). You can easily jump back to the package definition using the @command{guix edit} command (@pxref{Invoking guix edit}). @xref{Packaging Guidelines}, for more information on how to test package definitions, and @ref{Invoking guix lint}, for information on how to check a definition for style conformance." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:7053 +#: guix-git/doc/guix.texi:7097 #, no-wrap msgid "GUIX_PACKAGE_PATH" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7057 +#: guix-git/doc/guix.texi:7101 msgid "Lastly, @pxref{Channels}, for information on how to extend the distribution by adding your own package definitions in a ``channel''." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7061 +#: guix-git/doc/guix.texi:7105 msgid "Finally, updating the package definition to a new upstream version can be partly automated by the @command{guix refresh} command (@pxref{Invoking guix refresh})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7067 +#: guix-git/doc/guix.texi:7111 msgid "Behind the scenes, a derivation corresponding to the @code{} object is first computed by the @code{package-derivation} procedure. That derivation is stored in a @file{.drv} file under @file{/gnu/store}. The build actions it prescribes may then be realized by using the @code{build-derivations} procedure (@pxref{The Store})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7068 +#: guix-git/doc/guix.texi:7112 #, no-wrap msgid "{Scheme Procedure} package-derivation @var{store} @var{package} [@var{system}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7071 +#: guix-git/doc/guix.texi:7115 msgid "Return the @code{} object of @var{package} for @var{system} (@pxref{Derivations})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7077 +#: guix-git/doc/guix.texi:7121 msgid "@var{package} must be a valid @code{} object, and @var{system} must be a string denoting the target system type---e.g., @code{\"x86_64-linux\"} for an x86_64 Linux-based GNU system. @var{store} must be a connection to the daemon, which operates on the store (@pxref{The Store})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7083 +#: guix-git/doc/guix.texi:7127 msgid "Similarly, it is possible to compute a derivation that cross-builds a package for some other system:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7084 +#: guix-git/doc/guix.texi:7128 #, no-wrap msgid "{Scheme Procedure} package-cross-derivation @var{store} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7088 +#: guix-git/doc/guix.texi:7132 msgid "@var{package} @var{target} [@var{system}] Return the @code{} object of @var{package} cross-built from @var{system} to @var{target}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7092 +#: guix-git/doc/guix.texi:7136 msgid "@var{target} must be a valid GNU triplet denoting the target hardware and operating system, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying Target Triplets,,, autoconf, Autoconf})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7096 +#: guix-git/doc/guix.texi:7140 msgid "Once you have package definitions, you can easily define @emph{variants} of those packages. @xref{Defining Package Variants}, for more on that." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:7104 +#: guix-git/doc/guix.texi:7148 #, no-wrap msgid "@code{package} Reference" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7108 +#: guix-git/doc/guix.texi:7152 msgid "This section summarizes all the options available in @code{package} declarations (@pxref{Defining Packages})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7109 +#: guix-git/doc/guix.texi:7153 #, no-wrap msgid "{Data Type} package" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7111 +#: guix-git/doc/guix.texi:7155 msgid "This is the data type representing a package recipe." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7115 +#: guix-git/doc/guix.texi:7159 msgid "The name of the package, as a string." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7116 +#: guix-git/doc/guix.texi:7160 #, no-wrap msgid "version" msgstr "versio" #. type: table -#: guix-git/doc/guix.texi:7119 +#: guix-git/doc/guix.texi:7163 msgid "The version of the package, as a string. @xref{Version Numbers}, for guidelines." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7120 guix-git/doc/guix.texi:12900 -#: guix-git/doc/guix.texi:15181 guix-git/doc/guix.texi:15790 +#: guix-git/doc/guix.texi:7164 guix-git/doc/guix.texi:13257 +#: guix-git/doc/guix.texi:15538 guix-git/doc/guix.texi:16147 #, no-wrap msgid "source" msgstr "lähde" #. type: table -#: guix-git/doc/guix.texi:7127 +#: guix-git/doc/guix.texi:7171 msgid "An object telling how the source code for the package should be acquired. Most of the time, this is an @code{origin} object, which denotes a file fetched from the Internet (@pxref{origin Reference}). It can also be any other ``file-like'' object such as a @code{local-file}, which denotes a file from the local file system (@pxref{G-Expressions, @code{local-file}})." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7128 +#: guix-git/doc/guix.texi:7172 #, no-wrap msgid "build-system" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7131 +#: guix-git/doc/guix.texi:7175 msgid "The build system that should be used to build the package (@pxref{Build Systems})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7132 guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:7176 guix-git/doc/guix.texi:18315 #, no-wrap msgid "@code{arguments} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7135 +#: guix-git/doc/guix.texi:7179 msgid "The arguments that should be passed to the build system. This is a list, typically containing sequential keyword-value pairs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7136 +#: guix-git/doc/guix.texi:7180 #, no-wrap msgid "@code{inputs} (default: @code{'()})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7137 +#: guix-git/doc/guix.texi:7181 #, no-wrap msgid "@code{native-inputs} (default: @code{'()})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7138 +#: guix-git/doc/guix.texi:7182 #, no-wrap msgid "@code{propagated-inputs} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7139 +#: guix-git/doc/guix.texi:7183 #, no-wrap msgid "inputs, of packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7146 +#: guix-git/doc/guix.texi:7190 msgid "These fields list dependencies of the package. Each element of these lists is either a package, origin, or other ``file-like object'' (@pxref{G-Expressions}); to specify the output of that file-like object that should be used, pass a two-element list where the second element is the output (@pxref{Packages with Multiple Outputs}, for more on package outputs). For example, the list below specifies three inputs:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7150 +#: guix-git/doc/guix.texi:7194 #, no-wrap msgid "" "(list libffi libunistring\n" @@ -14299,23 +14405,23 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7154 +#: guix-git/doc/guix.texi:7198 msgid "In the example above, the @code{\"out\"} output of @code{libffi} and @code{libunistring} is used." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:7155 +#: guix-git/doc/guix.texi:7199 #, no-wrap msgid "Compatibility Note" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:7162 +#: guix-git/doc/guix.texi:7206 msgid "Until version 1.3.0, input lists were a list of tuples, where each tuple has a label for the input (a string) as its first element, a package, origin, or derivation as its second element, and optionally the name of the output thereof that should be used, which defaults to @code{\"out\"}. For example, the list below is equivalent to the one above, but using the @dfn{old input style}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7168 +#: guix-git/doc/guix.texi:7212 #, no-wrap msgid "" ";; Old input style (deprecated).\n" @@ -14325,176 +14431,186 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:7174 +#: guix-git/doc/guix.texi:7218 msgid "This style is now deprecated; it is still supported but support will be removed in a future version. It should not be used for new package definitions. @xref{Invoking guix style}, on how to migrate to the new style." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7176 +#: guix-git/doc/guix.texi:7220 #, no-wrap msgid "cross compilation, package dependencies" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7182 +#: guix-git/doc/guix.texi:7226 msgid "The distinction between @code{native-inputs} and @code{inputs} is necessary when considering cross-compilation. When cross-compiling, dependencies listed in @code{inputs} are built for the @emph{target} architecture; conversely, dependencies listed in @code{native-inputs} are built for the architecture of the @emph{build} machine." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7187 +#: guix-git/doc/guix.texi:7231 msgid "@code{native-inputs} is typically used to list tools needed at build time, but not at run time, such as Autoconf, Automake, pkg-config, Gettext, or Bison. @command{guix lint} can report likely mistakes in this area (@pxref{Invoking guix lint})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:7195 +#: guix-git/doc/guix.texi:7239 msgid "package-propagated-inputs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7195 +#: guix-git/doc/guix.texi:7239 msgid "Lastly, @code{propagated-inputs} is similar to @code{inputs}, but the specified packages will be automatically installed to profiles (@pxref{Features, the role of profiles in Guix}) alongside the package they belong to (@pxref{package-cmd-propagated-inputs, @command{guix package}}, for information on how @command{guix package} deals with propagated inputs)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7199 +#: guix-git/doc/guix.texi:7243 msgid "For example this is necessary when packaging a C/C++ library that needs headers of another library to compile, or when a pkg-config file refers to another one @i{via} its @code{Requires} field." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7206 +#: guix-git/doc/guix.texi:7250 msgid "Another example where @code{propagated-inputs} is useful is for languages that lack a facility to record the run-time search path akin to the @code{RUNPATH} of ELF files; this includes Guile, Python, Perl, and more. When packaging libraries written in those languages, ensure they can find library code they depend on at run time by listing run-time dependencies in @code{propagated-inputs} rather than @code{inputs}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7207 +#: guix-git/doc/guix.texi:7251 #, no-wrap msgid "@code{outputs} (default: @code{'(\"out\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7210 +#: guix-git/doc/guix.texi:7254 msgid "The list of output names of the package. @xref{Packages with Multiple Outputs}, for typical uses of additional outputs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7211 +#: guix-git/doc/guix.texi:7255 #, no-wrap msgid "@code{native-search-paths} (default: @code{'()})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7212 +#: guix-git/doc/guix.texi:7256 #, no-wrap msgid "@code{search-paths} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7215 -msgid "A list of @code{search-path-specification} objects describing search-path environment variables honored by the package." +#: guix-git/doc/guix.texi:7260 +msgid "A list of @code{search-path-specification} objects describing search-path environment variables honored by the package. @xref{Search Paths}, for more on search path specifications." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:7266 +msgid "As for inputs, the distinction between @code{native-search-paths} and @code{search-paths} only matters when cross-compiling. In a cross-compilation context, @code{native-search-paths} applies exclusively to native inputs whereas @code{search-paths} applies only to host inputs." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:7273 +msgid "Packages such as cross-compilers care about target inputs---for instance, our (modified) GCC cross-compiler has @env{CROSS_C_INCLUDE_PATH} in @code{search-paths}, which allows it to pick @file{.h} files for the target system and @emph{not} those of native inputs. For the majority of packages though, only @code{native-search-paths} makes sense." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7216 +#: guix-git/doc/guix.texi:7274 #, no-wrap msgid "@code{replacement} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7220 +#: guix-git/doc/guix.texi:7278 msgid "This must be either @code{#f} or a package object that will be used as a @dfn{replacement} for this package. @xref{Security Updates, grafts}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7221 guix-git/doc/guix.texi:12892 +#: guix-git/doc/guix.texi:7279 guix-git/doc/guix.texi:13249 #, no-wrap msgid "synopsis" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7223 +#: guix-git/doc/guix.texi:7281 msgid "A one-line description of the package." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7224 guix-git/doc/guix.texi:12893 -#: guix-git/doc/guix.texi:35959 guix-git/doc/guix.texi:36119 +#: guix-git/doc/guix.texi:7282 guix-git/doc/guix.texi:13250 +#: guix-git/doc/guix.texi:36449 guix-git/doc/guix.texi:36609 #, no-wrap msgid "description" msgstr "kuvaus" #. type: table -#: guix-git/doc/guix.texi:7226 +#: guix-git/doc/guix.texi:7284 msgid "A more elaborate description of the package." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7227 +#: guix-git/doc/guix.texi:7285 #, no-wrap msgid "license" msgstr "lisenssi" #. type: cindex -#: guix-git/doc/guix.texi:7228 +#: guix-git/doc/guix.texi:7286 #, no-wrap msgid "license, of packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7231 +#: guix-git/doc/guix.texi:7289 msgid "The license of the package; a value from @code{(guix licenses)}, or a list of such values." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7232 guix-git/doc/guix.texi:12901 +#: guix-git/doc/guix.texi:7290 guix-git/doc/guix.texi:13258 #, no-wrap msgid "home-page" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7234 +#: guix-git/doc/guix.texi:7292 msgid "The URL to the home-page of the package, as a string." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7235 +#: guix-git/doc/guix.texi:7293 #, no-wrap msgid "@code{supported-systems} (default: @code{%supported-systems})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7238 +#: guix-git/doc/guix.texi:7296 msgid "The list of systems supported by the package, as strings of the form @code{architecture-kernel}, for example @code{\"x86_64-linux\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7239 +#: guix-git/doc/guix.texi:7297 #, no-wrap msgid "@code{location} (default: source location of the @code{package} form)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7243 +#: guix-git/doc/guix.texi:7301 msgid "The source location of the package. It is useful to override this when inheriting from another package, in which case this field is not automatically corrected." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7246 +#: guix-git/doc/guix.texi:7304 #, no-wrap msgid "{Scheme Syntax} this-package" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7249 +#: guix-git/doc/guix.texi:7307 msgid "When used in the @emph{lexical scope} of a package field definition, this identifier resolves to the package being defined." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7252 +#: guix-git/doc/guix.texi:7310 msgid "The example below shows how to add a package as a native input of itself when cross-compiling:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7257 +#: guix-git/doc/guix.texi:7315 #, no-wrap msgid "" "(package\n" @@ -14504,7 +14620,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7263 +#: guix-git/doc/guix.texi:7321 #, no-wrap msgid "" " ;; When cross-compiled, Guile, for example, depends on\n" @@ -14515,51 +14631,51 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7266 +#: guix-git/doc/guix.texi:7324 msgid "It is an error to refer to @code{this-package} outside a package definition." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7270 +#: guix-git/doc/guix.texi:7328 msgid "The following helper procedures are provided to help deal with package inputs." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7271 +#: guix-git/doc/guix.texi:7329 #, no-wrap msgid "{Scheme Procedure} lookup-package-input @var{package} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:7272 +#: guix-git/doc/guix.texi:7330 #, no-wrap msgid "{Scheme Procedure} lookup-package-native-input @var{package} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:7273 +#: guix-git/doc/guix.texi:7331 #, no-wrap msgid "{Scheme Procedure} lookup-package-propagated-input @var{package} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:7274 +#: guix-git/doc/guix.texi:7332 #, no-wrap msgid "{Scheme Procedure} lookup-package-direct-input @var{package} @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7277 +#: guix-git/doc/guix.texi:7335 msgid "Look up @var{name} among @var{package}'s inputs (or native, propagated, or direct inputs). Return it if found, @code{#f} otherwise." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7280 +#: guix-git/doc/guix.texi:7338 msgid "@var{name} is the name of a package depended on. Here's how you might use it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7283 +#: guix-git/doc/guix.texi:7341 #, no-wrap msgid "" "(use-modules (guix packages) (gnu packages base))\n" @@ -14567,7 +14683,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7286 +#: guix-git/doc/guix.texi:7344 #, no-wrap msgid "" "(lookup-package-direct-input coreutils \"gmp\")\n" @@ -14575,45 +14691,45 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7290 +#: guix-git/doc/guix.texi:7348 msgid "In this example we obtain the @code{gmp} package that is among the direct inputs of @code{coreutils}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7292 +#: guix-git/doc/guix.texi:7350 #, no-wrap msgid "development inputs, of a package" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7293 +#: guix-git/doc/guix.texi:7351 #, no-wrap msgid "implicit inputs, of a package" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7298 +#: guix-git/doc/guix.texi:7356 msgid "Sometimes you will want to obtain the list of inputs needed to @emph{develop} a package---all the inputs that are visible when the package is compiled. This is what the @code{package-development-inputs} procedure returns." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7299 +#: guix-git/doc/guix.texi:7357 #, no-wrap msgid "{Scheme Procedure} package-development-inputs @var{package} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7306 +#: guix-git/doc/guix.texi:7364 msgid "[@var{system}] [#:target #f] Return the list of inputs required by @var{package} for development purposes on @var{system}. When @var{target} is true, return the inputs needed to cross-compile @var{package} from @var{system} to @var{triplet}, where @var{triplet} is a triplet such as @code{\"aarch64-linux-gnu\"}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7310 +#: guix-git/doc/guix.texi:7368 msgid "Note that the result includes both explicit inputs and implicit inputs---inputs automatically added by the build system (@pxref{Build Systems}). Let us take the @code{hello} package to illustrate that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7313 +#: guix-git/doc/guix.texi:7371 #, no-wrap msgid "" "(use-modules (gnu packages base) (guix packages))\n" @@ -14621,7 +14737,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7316 +#: guix-git/doc/guix.texi:7374 #, no-wrap msgid "" "hello\n" @@ -14630,7 +14746,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7319 +#: guix-git/doc/guix.texi:7377 #, no-wrap msgid "" "(package-direct-inputs hello)\n" @@ -14639,7 +14755,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7322 +#: guix-git/doc/guix.texi:7380 #, no-wrap msgid "" "(package-development-inputs hello)\n" @@ -14647,39 +14763,39 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7331 +#: guix-git/doc/guix.texi:7389 msgid "In this example, @code{package-direct-inputs} returns the empty list, because @code{hello} has zero explicit dependencies. Conversely, @code{package-development-inputs} includes inputs implicitly added by @code{gnu-build-system} that are required to build @code{hello}: tar, gzip, GCC, libc, Bash, and more. To visualize it, @command{guix graph hello} would show you explicit inputs, whereas @command{guix graph -t bag hello} would include implicit inputs (@pxref{Invoking guix graph})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7337 +#: guix-git/doc/guix.texi:7395 msgid "Because packages are regular Scheme objects that capture a complete dependency graph and associated build procedures, it is often useful to write procedures that take a package and return a modified version thereof according to some parameters. Below are a few examples." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7338 +#: guix-git/doc/guix.texi:7396 #, no-wrap msgid "tool chain, choosing a package's tool chain" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7339 +#: guix-git/doc/guix.texi:7397 #, no-wrap msgid "{Scheme Procedure} package-with-c-toolchain @var{package} @var{toolchain}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7344 +#: guix-git/doc/guix.texi:7402 msgid "Return a variant of @var{package} that uses @var{toolchain} instead of the default GNU C/C++ toolchain. @var{toolchain} must be a list of inputs (label/package tuples) providing equivalent functionality, such as the @code{gcc-toolchain} package." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7348 +#: guix-git/doc/guix.texi:7406 msgid "The example below returns a variant of the @code{hello} package built with GCC@tie{}10.x and the rest of the GNU tool chain (Binutils and the GNU C Library) instead of the default tool chain:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7352 +#: guix-git/doc/guix.texi:7410 #, no-wrap msgid "" "(let ((toolchain (specification->package \"gcc-toolchain@@10\")))\n" @@ -14687,197 +14803,197 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7360 +#: guix-git/doc/guix.texi:7418 msgid "The build tool chain is part of the @dfn{implicit inputs} of packages---it's usually not listed as part of the various ``inputs'' fields and is instead pulled in by the build system. Consequently, this procedure works by changing the build system of @var{package} so that it pulls in @var{toolchain} instead of the defaults. @ref{Build Systems}, for more on build systems." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:7363 +#: guix-git/doc/guix.texi:7421 #, no-wrap msgid "@code{origin} Reference" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7371 +#: guix-git/doc/guix.texi:7429 msgid "This section documents @dfn{origins}. An @code{origin} declaration specifies data that must be ``produced''---downloaded, usually---and whose content hash is known in advance. Origins are primarily used to represent the source code of packages (@pxref{Defining Packages}). For that reason, the @code{origin} form allows you to declare patches to apply to the original source code as well as code snippets to modify it." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7372 +#: guix-git/doc/guix.texi:7430 #, no-wrap msgid "{Data Type} origin" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7374 +#: guix-git/doc/guix.texi:7432 msgid "This is the data type representing a source code origin." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7376 guix-git/doc/guix.texi:26552 +#: guix-git/doc/guix.texi:7434 guix-git/doc/guix.texi:26889 #, no-wrap msgid "uri" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7381 +#: guix-git/doc/guix.texi:7439 msgid "An object containing the URI of the source. The object type depends on the @code{method} (see below). For example, when using the @var{url-fetch} method of @code{(guix download)}, the valid @code{uri} values are: a URL represented as a string, or a list thereof." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7382 +#: guix-git/doc/guix.texi:7440 #, no-wrap msgid "fixed-output derivations, for download" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7383 +#: guix-git/doc/guix.texi:7441 #, no-wrap msgid "method" msgstr "menetelmä" #. type: table -#: guix-git/doc/guix.texi:7390 +#: guix-git/doc/guix.texi:7448 msgid "A monadic procedure that handles the given URI@. The procedure must accept at least three arguments: the value of the @code{uri} field and the hash algorithm and hash value specified by the @code{hash} field. It must return a store item or a derivation in the store monad (@pxref{The Store Monad}); most methods return a fixed-output derivation (@pxref{Derivations})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7394 +#: guix-git/doc/guix.texi:7452 msgid "Commonly used methods include @code{url-fetch}, which fetches data from a URL, and @code{git-fetch}, which fetches data from a Git repository (see below)." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7395 +#: guix-git/doc/guix.texi:7453 #, no-wrap msgid "sha256" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7399 +#: guix-git/doc/guix.texi:7457 msgid "A bytevector containing the SHA-256 hash of the source. This is equivalent to providing a @code{content-hash} SHA256 object in the @code{hash} field described below." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7400 +#: guix-git/doc/guix.texi:7458 #, no-wrap msgid "hash" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7403 +#: guix-git/doc/guix.texi:7461 msgid "The @code{content-hash} object of the source---see below for how to use @code{content-hash}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7407 +#: guix-git/doc/guix.texi:7465 msgid "You can obtain this information using @code{guix download} (@pxref{Invoking guix download}) or @code{guix hash} (@pxref{Invoking guix hash})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7408 +#: guix-git/doc/guix.texi:7466 #, no-wrap msgid "@code{file-name} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7414 +#: guix-git/doc/guix.texi:7472 msgid "The file name under which the source code should be saved. When this is @code{#f}, a sensible default value will be used in most cases. In case the source is fetched from a URL, the file name from the URL will be used. For version control checkouts, it is recommended to provide the file name explicitly because the default is not very descriptive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7415 +#: guix-git/doc/guix.texi:7473 #, no-wrap msgid "@code{patches} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7418 +#: guix-git/doc/guix.texi:7476 msgid "A list of file names, origins, or file-like objects (@pxref{G-Expressions, file-like objects}) pointing to patches to be applied to the source." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7422 +#: guix-git/doc/guix.texi:7480 msgid "This list of patches must be unconditional. In particular, it cannot depend on the value of @code{%current-system} or @code{%current-target-system}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7423 +#: guix-git/doc/guix.texi:7481 #, no-wrap msgid "@code{snippet} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7427 +#: guix-git/doc/guix.texi:7485 msgid "A G-expression (@pxref{G-Expressions}) or S-expression that will be run in the source directory. This is a convenient way to modify the source, sometimes more convenient than a patch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7428 +#: guix-git/doc/guix.texi:7486 #, no-wrap msgid "@code{patch-flags} (default: @code{'(\"-p1\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7431 +#: guix-git/doc/guix.texi:7489 msgid "A list of command-line flags that should be passed to the @code{patch} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7432 +#: guix-git/doc/guix.texi:7490 #, no-wrap msgid "@code{patch-inputs} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7436 +#: guix-git/doc/guix.texi:7494 msgid "Input packages or derivations to the patching process. When this is @code{#f}, the usual set of inputs necessary for patching are provided, such as GNU@tie{}Patch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7437 guix-git/doc/guix.texi:26425 +#: guix-git/doc/guix.texi:7495 guix-git/doc/guix.texi:26762 #, no-wrap msgid "@code{modules} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7440 +#: guix-git/doc/guix.texi:7498 msgid "A list of Guile modules that should be loaded during the patching process and while running the code in the @code{snippet} field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7441 +#: guix-git/doc/guix.texi:7499 #, no-wrap msgid "@code{patch-guile} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7444 +#: guix-git/doc/guix.texi:7502 msgid "The Guile package that should be used in the patching process. When this is @code{#f}, a sensible default is used." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7447 +#: guix-git/doc/guix.texi:7505 #, no-wrap msgid "{Data Type} content-hash @var{value} [@var{algorithm}]" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7451 +#: guix-git/doc/guix.texi:7509 msgid "Construct a content hash object for the given @var{algorithm}, and with @var{value} as its hash value. When @var{algorithm} is omitted, assume it is @code{sha256}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7454 +#: guix-git/doc/guix.texi:7512 msgid "@var{value} can be a literal string, in which case it is base32-decoded, or it can be a bytevector." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7456 +#: guix-git/doc/guix.texi:7514 msgid "The following forms are all equivalent:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7465 +#: guix-git/doc/guix.texi:7523 #, no-wrap msgid "" "(content-hash \"05zxkyz9bv3j9h0xyid1rhvh3klhsmrpkf3bcs6frvlgyr2gwilj\")\n" @@ -14890,103 +15006,103 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7470 +#: guix-git/doc/guix.texi:7528 msgid "Technically, @code{content-hash} is currently implemented as a macro. It performs sanity checks at macro-expansion time, when possible, such as ensuring that @var{value} has the right size for @var{algorithm}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7476 +#: guix-git/doc/guix.texi:7534 msgid "As we have seen above, how exactly the data an origin refers to is retrieved is determined by its @code{method} field. The @code{(guix download)} module provides the most common method, @code{url-fetch}, described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7477 +#: guix-git/doc/guix.texi:7535 #, no-wrap msgid "{Scheme Procedure} url-fetch @var{url} @var{hash-algo} @var{hash} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7485 +#: guix-git/doc/guix.texi:7543 msgid "[name] [#:executable? #f] Return a fixed-output derivation that fetches data from @var{url} (a string, or a list of strings denoting alternate URLs), which is expected to have hash @var{hash} of type @var{hash-algo} (a symbol). By default, the file name is the base name of URL; optionally, @var{name} can specify a different file name. When @var{executable?} is true, make the downloaded file executable." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7488 +#: guix-git/doc/guix.texi:7546 msgid "When one of the URL starts with @code{mirror://}, then its host part is interpreted as the name of a mirror scheme, taken from @file{%mirror-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7491 +#: guix-git/doc/guix.texi:7549 msgid "Alternatively, when URL starts with @code{file://}, return the corresponding file name in the store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7497 +#: guix-git/doc/guix.texi:7555 msgid "Likewise, the @code{(guix git-download)} module defines the @code{git-fetch} origin method, which fetches data from a Git version control repository, and the @code{git-reference} data type to describe the repository and revision to fetch." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7498 +#: guix-git/doc/guix.texi:7556 #, no-wrap msgid "{Scheme Procedure} git-fetch @var{ref} @var{hash-algo} @var{hash}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7503 +#: guix-git/doc/guix.texi:7561 msgid "Return a fixed-output derivation that fetches @var{ref}, a @code{} object. The output is expected to have recursive hash @var{hash} of type @var{hash-algo} (a symbol). Use @var{name} as the file name, or a generic name if @code{#f}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7505 +#: guix-git/doc/guix.texi:7563 #, no-wrap msgid "{Data Type} git-reference" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7508 +#: guix-git/doc/guix.texi:7566 msgid "This data type represents a Git reference for @code{git-fetch} to retrieve." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7510 guix-git/doc/guix.texi:24186 +#: guix-git/doc/guix.texi:7568 guix-git/doc/guix.texi:24548 #, no-wrap msgid "url" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7512 +#: guix-git/doc/guix.texi:7570 msgid "The URL of the Git repository to clone." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7513 +#: guix-git/doc/guix.texi:7571 #, no-wrap msgid "commit" msgstr "kommitointi" #. type: table -#: guix-git/doc/guix.texi:7518 +#: guix-git/doc/guix.texi:7576 msgid "This string denotes either the commit to fetch (a hexadecimal string), or the tag to fetch. You can also use a ``short'' commit ID or a @command{git describe} style identifier such as @code{v1.0.1-10-g58d7909c97}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7519 +#: guix-git/doc/guix.texi:7577 #, no-wrap msgid "@code{recursive?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7521 +#: guix-git/doc/guix.texi:7579 msgid "This Boolean indicates whether to recursively fetch Git sub-modules." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7525 +#: guix-git/doc/guix.texi:7583 msgid "The example below denotes the @code{v2.10} tag of the GNU@tie{}Hello repository:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7530 +#: guix-git/doc/guix.texi:7588 #, no-wrap msgid "" "(git-reference\n" @@ -14995,12 +15111,12 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7534 +#: guix-git/doc/guix.texi:7592 msgid "This is equivalent to the reference below, which explicitly names the commit:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7539 +#: guix-git/doc/guix.texi:7597 #, no-wrap msgid "" "(git-reference\n" @@ -15009,56 +15125,56 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7545 +#: guix-git/doc/guix.texi:7603 msgid "For Mercurial repositories, the module @code{(guix hg-download)} defines the @code{hg-fetch} origin method and @code{hg-reference} data type for support of the Mercurial version control system." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7546 +#: guix-git/doc/guix.texi:7604 #, no-wrap msgid "{Scheme Procedure} hg-fetch @var{ref} @var{hash-algo} @var{hash} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7552 +#: guix-git/doc/guix.texi:7610 msgid "[name] Return a fixed-output derivation that fetches @var{ref}, a @code{} object. The output is expected to have recursive hash @var{hash} of type @var{hash-algo} (a symbol). Use @var{name} as the file name, or a generic name if @code{#false}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7557 +#: guix-git/doc/guix.texi:7615 #, no-wrap msgid "customizing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7558 +#: guix-git/doc/guix.texi:7616 #, no-wrap msgid "variants, of packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7568 +#: guix-git/doc/guix.texi:7626 msgid "One of the nice things with Guix is that, given a package definition, you can easily @emph{derive} variants of that package---for a different upstream version, with different dependencies, different compilation options, and so on. Some of these custom packages can be defined straight from the command line (@pxref{Package Transformation Options}). This section describes how to define package variants in code. This can be useful in ``manifests'' (@pxref{profile-manifest, @option{--manifest}}) and in your own package collection (@pxref{Creating a Channel}), among others!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7569 +#: guix-git/doc/guix.texi:7627 #, no-wrap msgid "inherit, for package definitions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7576 +#: guix-git/doc/guix.texi:7634 msgid "As discussed earlier, packages are first-class objects in the Scheme language. The @code{(guix packages)} module provides the @code{package} construct to define new package objects (@pxref{package Reference}). The easiest way to define a package variant is using the @code{inherit} keyword together with @code{package}. This allows you to inherit from a package definition while overriding the fields you want." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7581 +#: guix-git/doc/guix.texi:7639 msgid "For example, given the @code{hello} variable, which contains a definition for the current version of GNU@tie{}Hello, here's how you would define a variant for version 2.2 (released in 2006, it's vintage!):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7584 +#: guix-git/doc/guix.texi:7642 #, no-wrap msgid "" "(use-modules (gnu packages base)) ;for 'hello'\n" @@ -15066,7 +15182,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7596 +#: guix-git/doc/guix.texi:7654 #, no-wrap msgid "" "(define hello-2.2\n" @@ -15083,17 +15199,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7605 +#: guix-git/doc/guix.texi:7663 msgid "The example above corresponds to what the @option{--with-source} package transformation option does. Essentially @code{hello-2.2} preserves all the fields of @code{hello}, except @code{version} and @code{source}, which it overrides. Note that the original @code{hello} variable is still there, in the @code{(gnu packages base)} module, unchanged. When you define a custom package like this, you are really @emph{adding} a new package definition; the original one remains available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7611 +#: guix-git/doc/guix.texi:7669 msgid "You can just as well define variants with a different set of dependencies than the original package. For example, the default @code{gdb} package depends on @code{guile}, but since that is an optional dependency, you can define a variant that removes that dependency like so:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7614 +#: guix-git/doc/guix.texi:7672 #, no-wrap msgid "" "(use-modules (gnu packages gdb)) ;for 'gdb'\n" @@ -15101,7 +15217,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7620 +#: guix-git/doc/guix.texi:7678 #, no-wrap msgid "" "(define gdb-sans-guile\n" @@ -15112,61 +15228,61 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7626 +#: guix-git/doc/guix.texi:7684 msgid "The @code{modify-inputs} form above removes the @code{\"guile\"} package from the @code{inputs} field of @code{gdb}. The @code{modify-inputs} macro is a helper that can prove useful anytime you want to remove, add, or replace package inputs." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7627 +#: guix-git/doc/guix.texi:7685 #, no-wrap msgid "{Scheme Syntax} modify-inputs @var{inputs} @var{clauses}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7631 +#: guix-git/doc/guix.texi:7689 msgid "Modify the given package inputs, as returned by @code{package-inputs} & co., according to the given clauses. Each clause must have one of the following forms:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:7633 +#: guix-git/doc/guix.texi:7691 #, no-wrap msgid "(delete @var{name}@dots{})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7635 +#: guix-git/doc/guix.texi:7693 msgid "Delete from the inputs packages with the given @var{name}s (strings)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7636 +#: guix-git/doc/guix.texi:7694 #, no-wrap msgid "(append @var{package}@dots{})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7638 +#: guix-git/doc/guix.texi:7696 msgid "Add @var{package}s to the end of the input list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7639 +#: guix-git/doc/guix.texi:7697 #, no-wrap msgid "(prepend @var{package}@dots{})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7641 +#: guix-git/doc/guix.texi:7699 msgid "Add @var{package}s to the front of the input list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7645 +#: guix-git/doc/guix.texi:7703 msgid "The example below removes the GMP and ACL inputs of Coreutils and adds libcap to the back of the input list:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7650 +#: guix-git/doc/guix.texi:7708 #, no-wrap msgid "" "(modify-inputs (package-inputs coreutils)\n" @@ -15175,12 +15291,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7654 +#: guix-git/doc/guix.texi:7712 msgid "The example below replaces the @code{guile} package from the inputs of @code{guile-redis} with @code{guile-2.2}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7658 +#: guix-git/doc/guix.texi:7716 #, no-wrap msgid "" "(modify-inputs (package-inputs guile-redis)\n" @@ -15188,17 +15304,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7662 +#: guix-git/doc/guix.texi:7720 msgid "The last type of clause is @code{prepend}, to add inputs to the front of the list." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7671 +#: guix-git/doc/guix.texi:7729 msgid "In some cases, you may find it useful to write functions (``procedures'', in Scheme parlance) that return a package based on some parameters. For example, consider the @code{luasocket} library for the Lua programming language. We want to create @code{luasocket} packages for major versions of Lua. One way to do that is to define a procedure that takes a Lua package and returns a @code{luasocket} package that depends on it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7681 +#: guix-git/doc/guix.texi:7739 #, no-wrap msgid "" "(define (make-lua-socket name lua)\n" @@ -15213,7 +15329,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7684 +#: guix-git/doc/guix.texi:7742 #, no-wrap msgid "" "(define-public lua5.1-socket\n" @@ -15222,7 +15338,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7687 +#: guix-git/doc/guix.texi:7745 #, no-wrap msgid "" "(define-public lua5.2-socket\n" @@ -15230,34 +15346,34 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7695 +#: guix-git/doc/guix.texi:7753 msgid "Here we have defined packages @code{lua5.1-socket} and @code{lua5.2-socket} by calling @code{make-lua-socket} with different arguments. @xref{Procedures,,, guile, GNU Guile Reference Manual}, for more info on procedures. Having top-level public definitions for these two packages means that they can be referred to from the command line (@pxref{Package Modules})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7696 +#: guix-git/doc/guix.texi:7754 #, no-wrap msgid "package transformations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7701 +#: guix-git/doc/guix.texi:7759 msgid "These are pretty simple package variants. As a convenience, the @code{(guix transformations)} module provides a high-level interface that directly maps to the more sophisticated package transformation options (@pxref{Package Transformation Options}):" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7702 +#: guix-git/doc/guix.texi:7760 #, no-wrap msgid "{Scheme Procedure} options->transformation @var{opts}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7706 +#: guix-git/doc/guix.texi:7764 msgid "Return a procedure that, when passed an object to build (package, derivation, etc.), applies the transformations specified by @var{opts} and returns the resulting objects. @var{opts} must be a list of symbol/string pairs such as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7710 +#: guix-git/doc/guix.texi:7768 #, no-wrap msgid "" "((with-branch . \"guile-gcrypt=master\")\n" @@ -15265,17 +15381,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7714 +#: guix-git/doc/guix.texi:7772 msgid "Each symbol names a transformation and the corresponding string is an argument to that transformation." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7717 +#: guix-git/doc/guix.texi:7775 msgid "For instance, a manifest equivalent to this command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:7722 +#: guix-git/doc/guix.texi:7780 #, no-wrap msgid "" "guix build guix \\\n" @@ -15284,12 +15400,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7726 +#: guix-git/doc/guix.texi:7784 msgid "... would look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7729 +#: guix-git/doc/guix.texi:7787 #, no-wrap msgid "" "(use-modules (guix transformations))\n" @@ -15297,7 +15413,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7735 +#: guix-git/doc/guix.texi:7793 #, no-wrap msgid "" "(define transform\n" @@ -15309,7 +15425,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7738 +#: guix-git/doc/guix.texi:7796 #, no-wrap msgid "" "(packages->manifest\n" @@ -15317,50 +15433,50 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7740 +#: guix-git/doc/guix.texi:7798 #, no-wrap msgid "input rewriting" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7741 +#: guix-git/doc/guix.texi:7799 #, no-wrap msgid "dependency graph rewriting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7748 +#: guix-git/doc/guix.texi:7806 msgid "The @code{options->transformation} procedure is convenient, but it's perhaps also not as flexible as you may like. How is it implemented? The astute reader probably noticed that most package transformation options go beyond the superficial changes shown in the first examples of this section: they involve @dfn{input rewriting}, whereby the dependency graph of a package is rewritten by replacing specific inputs by others." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7752 +#: guix-git/doc/guix.texi:7810 msgid "Dependency graph rewriting, for the purposes of swapping packages in the graph, is what the @code{package-input-rewriting} procedure in @code{(guix packages)} implements." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7753 +#: guix-git/doc/guix.texi:7811 #, no-wrap msgid "{Scheme Procedure} package-input-rewriting @var{replacements} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7760 +#: guix-git/doc/guix.texi:7818 msgid "[@var{rewrite-name}] [#:deep? #t] Return a procedure that, when passed a package, replaces its direct and indirect dependencies, including implicit inputs when @var{deep?} is true, according to @var{replacements}. @var{replacements} is a list of package pairs; the first element of each pair is the package to replace, and the second one is the replacement." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7763 +#: guix-git/doc/guix.texi:7821 msgid "Optionally, @var{rewrite-name} is a one-argument procedure that takes the name of a package and returns its new name after rewrite." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7767 guix-git/doc/guix.texi:11216 +#: guix-git/doc/guix.texi:7825 guix-git/doc/guix.texi:11530 msgid "Consider this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7773 +#: guix-git/doc/guix.texi:7831 #, no-wrap msgid "" "(define libressl-instead-of-openssl\n" @@ -15371,7 +15487,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7776 +#: guix-git/doc/guix.texi:7834 #, no-wrap msgid "" "(define git-with-libressl\n" @@ -15379,33 +15495,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7784 +#: guix-git/doc/guix.texi:7842 msgid "Here we first define a rewriting procedure that replaces @var{openssl} with @var{libressl}. Then we use it to define a @dfn{variant} of the @var{git} package that uses @var{libressl} instead of @var{openssl}. This is exactly what the @option{--with-input} command-line option does (@pxref{Package Transformation Options, @option{--with-input}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7787 +#: guix-git/doc/guix.texi:7845 msgid "The following variant of @code{package-input-rewriting} can match packages to be replaced by name rather than by identity." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7788 +#: guix-git/doc/guix.texi:7846 #, no-wrap msgid "{Scheme Procedure} package-input-rewriting/spec @var{replacements} [#:deep? #t]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7795 +#: guix-git/doc/guix.texi:7853 msgid "Return a procedure that, given a package, applies the given @var{replacements} to all the package graph, including implicit inputs unless @var{deep?} is false. @var{replacements} is a list of spec/procedures pair; each spec is a package specification such as @code{\"gcc\"} or @code{\"guile@@2\"}, and each procedure takes a matching package and returns a replacement for that package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7798 +#: guix-git/doc/guix.texi:7856 msgid "The example above could be rewritten this way:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7803 +#: guix-git/doc/guix.texi:7861 #, no-wrap msgid "" "(define libressl-instead-of-openssl\n" @@ -15414,872 +15530,872 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7808 +#: guix-git/doc/guix.texi:7866 msgid "The key difference here is that, this time, packages are matched by spec and not by identity. In other words, any package in the graph that is called @code{openssl} will be replaced." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7812 +#: guix-git/doc/guix.texi:7870 msgid "A more generic procedure to rewrite a package dependency graph is @code{package-mapping}: it supports arbitrary changes to nodes in the graph." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7813 +#: guix-git/doc/guix.texi:7871 #, no-wrap msgid "{Scheme Procedure} package-mapping @var{proc} [@var{cut?}] [#:deep? #f]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7818 +#: guix-git/doc/guix.texi:7876 msgid "Return a procedure that, given a package, applies @var{proc} to all the packages depended on and returns the resulting package. The procedure stops recursion when @var{cut?} returns true for a given package. When @var{deep?} is true, @var{proc} is applied to implicit inputs as well." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7824 +#: guix-git/doc/guix.texi:7882 #, no-wrap msgid "build system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7829 +#: guix-git/doc/guix.texi:7887 msgid "Each package definition specifies a @dfn{build system} and arguments for that build system (@pxref{Defining Packages}). This @code{build-system} field represents the build procedure of the package, as well as implicit dependencies of that build procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7833 +#: guix-git/doc/guix.texi:7891 msgid "Build systems are @code{} objects. The interface to create and manipulate them is provided by the @code{(guix build-system)} module, and actual build systems are exported by specific modules." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7834 +#: guix-git/doc/guix.texi:7892 #, no-wrap msgid "bag (low-level package representation)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7844 +#: guix-git/doc/guix.texi:7902 msgid "Under the hood, build systems first compile package objects to @dfn{bags}. A @dfn{bag} is like a package, but with less ornamentation---in other words, a bag is a lower-level representation of a package, which includes all the inputs of that package, including some that were implicitly added by the build system. This intermediate representation is then compiled to a derivation (@pxref{Derivations}). The @code{package-with-c-toolchain} is an example of a way to change the implicit inputs that a package's build system pulls in (@pxref{package Reference, @code{package-with-c-toolchain}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7852 +#: guix-git/doc/guix.texi:7910 msgid "Build systems accept an optional list of @dfn{arguments}. In package definitions, these are passed @i{via} the @code{arguments} field (@pxref{Defining Packages}). They are typically keyword arguments (@pxref{Optional Arguments, keyword arguments in Guile,, guile, GNU Guile Reference Manual}). The value of these arguments is usually evaluated in the @dfn{build stratum}---i.e., by a Guile process launched by the daemon (@pxref{Derivations})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7856 +#: guix-git/doc/guix.texi:7914 msgid "The main build system is @code{gnu-build-system}, which implements the standard build procedure for GNU and many other packages. It is provided by the @code{(guix build-system gnu)} module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7857 +#: guix-git/doc/guix.texi:7915 #, no-wrap msgid "{Scheme Variable} gnu-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7861 +#: guix-git/doc/guix.texi:7919 msgid "@code{gnu-build-system} represents the GNU Build System, and variants thereof (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7862 guix-git/doc/guix.texi:8812 -#: guix-git/doc/guix.texi:9294 +#: guix-git/doc/guix.texi:7920 guix-git/doc/guix.texi:8869 +#: guix-git/doc/guix.texi:9429 #, no-wrap msgid "build phases" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7869 +#: guix-git/doc/guix.texi:7927 msgid "In a nutshell, packages using it are configured, built, and installed with the usual @code{./configure && make && make check && make install} command sequence. In practice, a few additional steps are often needed. All these steps are split up in separate @dfn{phases}. @xref{Build Phases}, for more info on build phases and ways to customize them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7876 +#: guix-git/doc/guix.texi:7934 msgid "In addition, this build system ensures that the ``standard'' environment for GNU packages is available. This includes tools such as GCC, libc, Coreutils, Bash, Make, Diffutils, grep, and sed (see the @code{(guix build-system gnu)} module for a complete list). We call these the @dfn{implicit inputs} of a package, because package definitions do not have to mention them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7880 +#: guix-git/doc/guix.texi:7938 msgid "This build system supports a number of keyword arguments, which can be passed @i{via} the @code{arguments} field of a package. Here are some of the main parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:7882 +#: guix-git/doc/guix.texi:7940 #, no-wrap msgid "#:phases" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7885 +#: guix-git/doc/guix.texi:7943 msgid "This argument specifies build-side code that evaluates to an alist of build phases. @xref{Build Phases}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7886 +#: guix-git/doc/guix.texi:7944 #, no-wrap msgid "#:configure-flags" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7889 +#: guix-git/doc/guix.texi:7947 msgid "This is a list of flags (strings) passed to the @command{configure} script. @xref{Defining Packages}, for an example." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7890 +#: guix-git/doc/guix.texi:7948 #, no-wrap msgid "#:make-flags" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7894 +#: guix-git/doc/guix.texi:7952 msgid "This list of strings contains flags passed as arguments to @command{make} invocations in the @code{build}, @code{check}, and @code{install} phases." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7895 +#: guix-git/doc/guix.texi:7953 #, no-wrap msgid "#:out-of-source?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7898 +#: guix-git/doc/guix.texi:7956 msgid "This Boolean, @code{#f} by default, indicates whether to run builds in a build directory separate from the source tree." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7903 +#: guix-git/doc/guix.texi:7961 msgid "When it is true, the @code{configure} phase creates a separate build directory, changes to that directory, and runs the @code{configure} script from there. This is useful for packages that require it, such as @code{glibc}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7904 +#: guix-git/doc/guix.texi:7962 #, no-wrap msgid "#:tests?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7907 +#: guix-git/doc/guix.texi:7965 msgid "This Boolean, @code{#t} by default, indicates whether the @code{check} phase should run the package's test suite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7908 +#: guix-git/doc/guix.texi:7966 #, no-wrap msgid "#:test-target" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7911 +#: guix-git/doc/guix.texi:7969 msgid "This string, @code{\"check\"} by default, gives the name of the makefile target used by the @code{check} phase." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7912 +#: guix-git/doc/guix.texi:7970 #, no-wrap msgid "#:parallel-build?" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7913 +#: guix-git/doc/guix.texi:7971 #, no-wrap msgid "#:parallel-tests?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7920 +#: guix-git/doc/guix.texi:7978 msgid "These Boolean values specify whether to build, respectively run the test suite, in parallel, with the @code{-j} flag of @command{make}. When they are true, @code{make} is passed @code{-j@var{n}}, where @var{n} is the number specified as the @option{--cores} option of @command{guix-daemon} or that of the @command{guix} client command (@pxref{Common Build Options, @option{--cores}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7921 +#: guix-git/doc/guix.texi:7979 #, no-wrap msgid "RUNPATH, validation" msgstr "" #. type: item -#: guix-git/doc/guix.texi:7922 +#: guix-git/doc/guix.texi:7980 #, no-wrap msgid "#:validate-runpath?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7926 +#: guix-git/doc/guix.texi:7984 msgid "This Boolean, @code{#t} by default, determines whether to ``validate'' the @code{RUNPATH} of ELF binaries (@code{.so} shared libraries as well as executables) previously installed by the @code{install} phase." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7934 +#: guix-git/doc/guix.texi:7992 msgid "This validation step consists in making sure that all the shared libraries needed by an ELF binary, which are listed as @code{DT_NEEDED} entries in its @code{PT_DYNAMIC} segment, appear in the @code{DT_RUNPATH} entry of that binary. In other words, it ensures that running or using those binaries will not result in a ``file not found'' error at run time. @xref{Options, @option{-rpath},, ld, The GNU Linker}, for more information on @code{RUNPATH}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7935 +#: guix-git/doc/guix.texi:7993 #, no-wrap msgid "#:substitutable?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7939 +#: guix-git/doc/guix.texi:7997 msgid "This Boolean, @code{#t} by default, tells whether the package outputs should be substitutable---i.e., whether users should be able to obtain substitutes for them instead of building locally (@pxref{Substitutes})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7940 +#: guix-git/doc/guix.texi:7998 #, no-wrap msgid "#:allowed-references" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7941 +#: guix-git/doc/guix.texi:7999 #, no-wrap msgid "#:disallowed-references" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7946 +#: guix-git/doc/guix.texi:8004 msgid "When true, these arguments must be a list of dependencies that must not appear among the references of the build results. If, upon build completion, some of these references are retained, the build process fails." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7951 +#: guix-git/doc/guix.texi:8009 msgid "This is useful to ensure that a package does not erroneously keep a reference to some of it build-time inputs, in cases where doing so would, for example, unnecessarily increase its size (@pxref{Invoking guix size})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7954 +#: guix-git/doc/guix.texi:8012 msgid "Most other build systems support these keyword arguments." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7961 +#: guix-git/doc/guix.texi:8019 msgid "Other @code{} objects are defined to support other conventions and tools used by free software packages. They inherit most of @code{gnu-build-system}, and differ mainly in the set of inputs implicitly added to the build process, and in the list of phases executed. Some of these build systems are listed below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7962 +#: guix-git/doc/guix.texi:8020 #, no-wrap msgid "{Scheme Variable} ant-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7966 +#: guix-git/doc/guix.texi:8024 msgid "This variable is exported by @code{(guix build-system ant)}. It implements the build procedure for Java packages that can be built with @url{https://ant.apache.org/, Ant build tool}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7971 +#: guix-git/doc/guix.texi:8029 msgid "It adds both @code{ant} and the @dfn{Java Development Kit} (JDK) as provided by the @code{icedtea} package to the set of inputs. Different packages can be specified with the @code{#:ant} and @code{#:jdk} parameters, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7977 +#: guix-git/doc/guix.texi:8035 msgid "When the original package does not provide a suitable Ant build file, the parameter @code{#:jar-name} can be used to generate a minimal Ant build file @file{build.xml} with tasks to build the specified jar archive. In this case the parameter @code{#:source-dir} can be used to specify the source sub-directory, defaulting to ``src''." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7985 +#: guix-git/doc/guix.texi:8043 msgid "The @code{#:main-class} parameter can be used with the minimal ant buildfile to specify the main class of the resulting jar. This makes the jar file executable. The @code{#:test-include} parameter can be used to specify the list of junit tests to run. It defaults to @code{(list \"**/*Test.java\")}. The @code{#:test-exclude} can be used to disable some tests. It defaults to @code{(list \"**/Abstract*.java\")}, because abstract classes cannot be run as tests." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7989 +#: guix-git/doc/guix.texi:8047 msgid "The parameter @code{#:build-target} can be used to specify the Ant task that should be run during the @code{build} phase. By default the ``jar'' task will be run." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7992 +#: guix-git/doc/guix.texi:8050 #, no-wrap msgid "{Scheme Variable} android-ndk-build-system" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7993 +#: guix-git/doc/guix.texi:8051 #, no-wrap msgid "Android distribution" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7994 +#: guix-git/doc/guix.texi:8052 #, no-wrap msgid "Android NDK build system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7998 +#: guix-git/doc/guix.texi:8056 msgid "This variable is exported by @code{(guix build-system android-ndk)}. It implements a build procedure for Android NDK (native development kit) packages using a Guix-specific build process." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8002 +#: guix-git/doc/guix.texi:8060 msgid "The build system assumes that packages install their public interface (header) files to the subdirectory @file{include} of the @code{out} output and their libraries to the subdirectory @file{lib} the @code{out} output." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8005 +#: guix-git/doc/guix.texi:8063 msgid "It's also assumed that the union of all the dependencies of a package has no conflicting files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8008 +#: guix-git/doc/guix.texi:8066 msgid "For the time being, cross-compilation is not supported - so right now the libraries and header files are assumed to be host tools." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8011 +#: guix-git/doc/guix.texi:8069 #, no-wrap msgid "{Scheme Variable} asdf-build-system/source" msgstr "" #. type: defvrx -#: guix-git/doc/guix.texi:8012 +#: guix-git/doc/guix.texi:8070 #, no-wrap msgid "{Scheme Variable} asdf-build-system/sbcl" msgstr "" #. type: defvrx -#: guix-git/doc/guix.texi:8013 +#: guix-git/doc/guix.texi:8071 #, no-wrap msgid "{Scheme Variable} asdf-build-system/ecl" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8019 +#: guix-git/doc/guix.texi:8077 msgid "These variables, exported by @code{(guix build-system asdf)}, implement build procedures for Common Lisp packages using @url{https://common-lisp.net/project/asdf/, ``ASDF''}. ASDF is a system definition facility for Common Lisp programs and libraries." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8026 +#: guix-git/doc/guix.texi:8084 msgid "The @code{asdf-build-system/source} system installs the packages in source form, and can be loaded using any common lisp implementation, via ASDF@. The others, such as @code{asdf-build-system/sbcl}, install binary systems in the format which a particular implementation understands. These build systems can also be used to produce executable programs, or lisp images which contain a set of packages pre-loaded." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8030 +#: guix-git/doc/guix.texi:8088 msgid "The build system uses naming conventions. For binary packages, the package name should be prefixed with the lisp implementation, such as @code{sbcl-} for @code{asdf-build-system/sbcl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8034 +#: guix-git/doc/guix.texi:8092 msgid "Additionally, the corresponding source package should be labeled using the same convention as python packages (see @ref{Python Modules}), using the @code{cl-} prefix." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8042 +#: guix-git/doc/guix.texi:8100 msgid "In order to create executable programs and images, the build-side procedures @code{build-program} and @code{build-image} can be used. They should be called in a build phase after the @code{create-asdf-configuration} phase, so that the system which was just built can be used within the resulting image. @code{build-program} requires a list of Common Lisp expressions to be passed as the @code{#:entry-program} argument." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8051 +#: guix-git/doc/guix.texi:8109 msgid "By default, all the @file{.asd} files present in the sources are read to find system definitions. The @code{#:asd-files} parameter can be used to specify the list of @file{.asd} files to read. Furthermore, if the package defines a system for its tests in a separate file, it will be loaded before the tests are run if it is specified by the @code{#:test-asd-file} parameter. If it is not set, the files @code{-tests.asd}, @code{-test.asd}, @code{tests.asd}, and @code{test.asd} will be tried if they exist." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8056 +#: guix-git/doc/guix.texi:8114 msgid "If for some reason the package must be named in a different way than the naming conventions suggest, or if several systems must be compiled, the @code{#:asd-systems} parameter can be used to specify the list of system names." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8059 +#: guix-git/doc/guix.texi:8117 #, no-wrap msgid "{Scheme Variable} cargo-build-system" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8060 +#: guix-git/doc/guix.texi:8118 #, no-wrap msgid "Rust programming language" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8061 +#: guix-git/doc/guix.texi:8119 #, no-wrap msgid "Cargo (Rust build system)" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8065 +#: guix-git/doc/guix.texi:8123 msgid "This variable is exported by @code{(guix build-system cargo)}. It supports builds of packages using Cargo, the build tool of the @uref{https://www.rust-lang.org, Rust programming language}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8068 +#: guix-git/doc/guix.texi:8126 msgid "It adds @code{rustc} and @code{cargo} to the set of inputs. A different Rust package can be specified with the @code{#:rust} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8078 +#: guix-git/doc/guix.texi:8136 msgid "Regular cargo dependencies should be added to the package definition similarly to other packages; those needed only at build time to native-inputs, others to inputs. If you need to add source-only crates then you should add them to via the @code{#:cargo-inputs} parameter as a list of name and spec pairs, where the spec can be a package or a source definition. Note that the spec must evaluate to a path to a gzipped tarball which includes a @code{Cargo.toml} file at its root, or it will be ignored. Similarly, cargo dev-dependencies should be added to the package definition via the @code{#:cargo-development-inputs} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8088 +#: guix-git/doc/guix.texi:8146 msgid "In its @code{configure} phase, this build system will make any source inputs specified in the @code{#:cargo-inputs} and @code{#:cargo-development-inputs} parameters available to cargo. It will also remove an included @code{Cargo.lock} file to be recreated by @code{cargo} during the @code{build} phase. The @code{package} phase will run @code{cargo package} to create a source crate for future use. The @code{install} phase installs the binaries defined by the crate. Unless @code{install-source? #f} is defined it will also install a source crate repository of itself and unpacked sources, to ease in future hacking on rust packages." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8090 +#: guix-git/doc/guix.texi:8148 #, no-wrap msgid "{Scheme Variable} chicken-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8095 +#: guix-git/doc/guix.texi:8153 msgid "This variable is exported by @code{(guix build-system chicken)}. It builds @uref{https://call-cc.org/, CHICKEN Scheme} modules, also called ``eggs'' or ``extensions''. CHICKEN generates C source code, which then gets compiled by a C compiler, in this case GCC." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8098 +#: guix-git/doc/guix.texi:8156 msgid "This build system adds @code{chicken} to the package inputs, as well as the packages of @code{gnu-build-system}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8102 +#: guix-git/doc/guix.texi:8160 msgid "The build system can't (yet) deduce the egg's name automatically, so just like with @code{go-build-system} and its @code{#:import-path}, you should define @code{#:egg-name} in the package's @code{arguments} field." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8104 +#: guix-git/doc/guix.texi:8162 msgid "For example, if you are packaging the @code{srfi-1} egg:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8107 +#: guix-git/doc/guix.texi:8165 #, no-wrap msgid "(arguments '(#:egg-name \"srfi-1\"))\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8112 +#: guix-git/doc/guix.texi:8170 msgid "Egg dependencies must be defined in @code{propagated-inputs}, not @code{inputs} because CHICKEN doesn't embed absolute references in compiled eggs. Test dependencies should go to @code{native-inputs}, as usual." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8114 +#: guix-git/doc/guix.texi:8172 #, no-wrap msgid "{Scheme Variable} copy-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8118 +#: guix-git/doc/guix.texi:8176 msgid "This variable is exported by @code{(guix build-system copy)}. It supports builds of simple packages that don't require much compiling, mostly just moving files around." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8123 +#: guix-git/doc/guix.texi:8181 msgid "It adds much of the @code{gnu-build-system} packages to the set of inputs. Because of this, the @code{copy-build-system} does not require all the boilerplate code often needed for the @code{trivial-build-system}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8128 +#: guix-git/doc/guix.texi:8186 msgid "To further simplify the file installation process, an @code{#:install-plan} argument is exposed to let the packager specify which files go where. The install plan is a list of @code{(@var{source} @var{target} [@var{filters}])}. @var{filters} are optional." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8130 +#: guix-git/doc/guix.texi:8188 #, no-wrap msgid "When @var{source} matches a file or directory without trailing slash, install it to @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8132 +#: guix-git/doc/guix.texi:8190 #, no-wrap msgid "If @var{target} has a trailing slash, install @var{source} basename beneath @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8133 +#: guix-git/doc/guix.texi:8191 #, no-wrap msgid "Otherwise install @var{source} as @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8136 +#: guix-git/doc/guix.texi:8194 #, no-wrap msgid "When @var{source} is a directory with a trailing slash, or when @var{filters} are used," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8139 +#: guix-git/doc/guix.texi:8197 msgid "the trailing slash of @var{target} is implied with the same meaning as above." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8140 +#: guix-git/doc/guix.texi:8198 #, no-wrap msgid "Without @var{filters}, install the full @var{source} @emph{content} to @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8141 +#: guix-git/doc/guix.texi:8199 #, no-wrap msgid "With @var{filters} among @code{#:include}, @code{#:include-regexp}, @code{#:exclude}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8144 +#: guix-git/doc/guix.texi:8202 msgid "@code{#:exclude-regexp}, only select files are installed depending on the filters. Each filters is specified by a list of strings." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8145 +#: guix-git/doc/guix.texi:8203 #, no-wrap msgid "With @code{#:include}, install all the files which the path suffix matches" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8147 +#: guix-git/doc/guix.texi:8205 msgid "at least one of the elements in the given list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8147 +#: guix-git/doc/guix.texi:8205 #, no-wrap msgid "With @code{#:include-regexp}, install all the files which the" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8150 +#: guix-git/doc/guix.texi:8208 msgid "subpaths match at least one of the regular expressions in the given list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8150 +#: guix-git/doc/guix.texi:8208 #, no-wrap msgid "The @code{#:exclude} and @code{#:exclude-regexp} filters" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8155 +#: guix-git/doc/guix.texi:8213 msgid "are the complement of their inclusion counterpart. Without @code{#:include} flags, install all files but those matching the exclusion filters. If both inclusions and exclusions are specified, the exclusions are done on top of the inclusions." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8159 +#: guix-git/doc/guix.texi:8217 msgid "In all cases, the paths relative to @var{source} are preserved within @var{target}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8162 +#: guix-git/doc/guix.texi:8220 msgid "Examples:" msgstr "Esimerkkejä:" #. type: item -#: guix-git/doc/guix.texi:8164 +#: guix-git/doc/guix.texi:8222 #, no-wrap msgid "@code{(\"foo/bar\" \"share/my-app/\")}: Install @file{bar} to @file{share/my-app/bar}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8165 +#: guix-git/doc/guix.texi:8223 #, no-wrap msgid "@code{(\"foo/bar\" \"share/my-app/baz\")}: Install @file{bar} to @file{share/my-app/baz}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8166 +#: guix-git/doc/guix.texi:8224 #, no-wrap msgid "@code{(\"foo/\" \"share/my-app\")}: Install the content of @file{foo} inside @file{share/my-app}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8168 +#: guix-git/doc/guix.texi:8226 msgid "e.g., install @file{foo/sub/file} to @file{share/my-app/sub/file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8168 +#: guix-git/doc/guix.texi:8226 #, no-wrap msgid "@code{(\"foo/\" \"share/my-app\" #:include (\"sub/file\"))}: Install only @file{foo/sub/file} to" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8170 +#: guix-git/doc/guix.texi:8228 msgid "@file{share/my-app/sub/file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8170 +#: guix-git/doc/guix.texi:8228 #, no-wrap msgid "@code{(\"foo/sub\" \"share/my-app\" #:include (\"file\"))}: Install @file{foo/sub/file} to" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8172 +#: guix-git/doc/guix.texi:8230 msgid "@file{share/my-app/file}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8176 +#: guix-git/doc/guix.texi:8234 #, no-wrap msgid "Clojure (programming language)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8177 +#: guix-git/doc/guix.texi:8235 #, no-wrap msgid "simple Clojure build system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8178 +#: guix-git/doc/guix.texi:8236 #, no-wrap msgid "{Scheme Variable} clojure-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8183 +#: guix-git/doc/guix.texi:8241 msgid "This variable is exported by @code{(guix build-system clojure)}. It implements a simple build procedure for @uref{https://clojure.org/, Clojure} packages using plain old @code{compile} in Clojure. Cross-compilation is not supported yet." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8187 +#: guix-git/doc/guix.texi:8245 msgid "It adds @code{clojure}, @code{icedtea} and @code{zip} to the set of inputs. Different packages can be specified with the @code{#:clojure}, @code{#:jdk} and @code{#:zip} parameters, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8193 +#: guix-git/doc/guix.texi:8251 msgid "A list of source directories, test directories and jar names can be specified with the @code{#:source-dirs}, @code{#:test-dirs} and @code{#:jar-names} parameters, respectively. Compile directory and main class can be specified with the @code{#:compile-dir} and @code{#:main-class} parameters, respectively. Other parameters are documented below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8196 +#: guix-git/doc/guix.texi:8254 msgid "This build system is an extension of @code{ant-build-system}, but with the following phases changed:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8199 guix-git/doc/guix.texi:8773 -#: guix-git/doc/guix.texi:8822 guix-git/doc/guix.texi:8891 -#: guix-git/doc/guix.texi:35042 guix-git/doc/guix.texi:37668 +#: guix-git/doc/guix.texi:8257 guix-git/doc/guix.texi:8830 +#: guix-git/doc/guix.texi:8879 guix-git/doc/guix.texi:8952 +#: guix-git/doc/guix.texi:35481 guix-git/doc/guix.texi:38147 #, no-wrap msgid "build" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8208 +#: guix-git/doc/guix.texi:8266 msgid "This phase calls @code{compile} in Clojure to compile source files and runs @command{jar} to create jars from both source files and compiled files according to the include list and exclude list specified in @code{#:aot-include} and @code{#:aot-exclude}, respectively. The exclude list has priority over the include list. These lists consist of symbols representing Clojure libraries or the special keyword @code{#:all} representing all Clojure libraries found under the source directories. The parameter @code{#:omit-source?} decides if source should be included into the jars." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8209 guix-git/doc/guix.texi:8777 -#: guix-git/doc/guix.texi:8896 +#: guix-git/doc/guix.texi:8267 guix-git/doc/guix.texi:8834 +#: guix-git/doc/guix.texi:8957 #, no-wrap msgid "check" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8216 +#: guix-git/doc/guix.texi:8274 msgid "This phase runs tests according to the include list and exclude list specified in @code{#:test-include} and @code{#:test-exclude}, respectively. Their meanings are analogous to that of @code{#:aot-include} and @code{#:aot-exclude}, except that the special keyword @code{#:all} now stands for all Clojure libraries found under the test directories. The parameter @code{#:tests?} decides if tests should be run." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8217 guix-git/doc/guix.texi:8783 -#: guix-git/doc/guix.texi:8826 guix-git/doc/guix.texi:8902 +#: guix-git/doc/guix.texi:8275 guix-git/doc/guix.texi:8840 +#: guix-git/doc/guix.texi:8883 guix-git/doc/guix.texi:8963 #, no-wrap msgid "install" msgstr "asenna" #. type: table -#: guix-git/doc/guix.texi:8219 +#: guix-git/doc/guix.texi:8277 msgid "This phase installs all jars built previously." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8222 +#: guix-git/doc/guix.texi:8280 msgid "Apart from the above, this build system also contains an additional phase:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8225 +#: guix-git/doc/guix.texi:8283 #, no-wrap msgid "install-doc" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8230 +#: guix-git/doc/guix.texi:8288 msgid "This phase installs all top-level files with base name matching @code{%doc-regex}. A different regex can be specified with the @code{#:doc-regex} parameter. All files (recursively) inside the documentation directories specified in @code{#:doc-dirs} are installed as well." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8233 +#: guix-git/doc/guix.texi:8291 #, no-wrap msgid "{Scheme Variable} cmake-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8237 +#: guix-git/doc/guix.texi:8295 msgid "This variable is exported by @code{(guix build-system cmake)}. It implements the build procedure for packages using the @url{https://www.cmake.org, CMake build tool}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8241 +#: guix-git/doc/guix.texi:8299 msgid "It automatically adds the @code{cmake} package to the set of inputs. Which package is used can be specified with the @code{#:cmake} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8248 +#: guix-git/doc/guix.texi:8306 msgid "The @code{#:configure-flags} parameter is taken as a list of flags passed to the @command{cmake} command. The @code{#:build-type} parameter specifies in abstract terms the flags passed to the compiler; it defaults to @code{\"RelWithDebInfo\"} (short for ``release mode with debugging information''), which roughly means that code is compiled with @code{-O2 -g}, as is the case for Autoconf-based packages by default." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8250 +#: guix-git/doc/guix.texi:8308 #, no-wrap msgid "{Scheme Variable} dune-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8257 +#: guix-git/doc/guix.texi:8315 msgid "This variable is exported by @code{(guix build-system dune)}. It supports builds of packages using @uref{https://dune.build/, Dune}, a build tool for the OCaml programming language. It is implemented as an extension of the @code{ocaml-build-system} which is described below. As such, the @code{#:ocaml} and @code{#:findlib} parameters can be passed to this build system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8261 +#: guix-git/doc/guix.texi:8319 msgid "It automatically adds the @code{dune} package to the set of inputs. Which package is used can be specified with the @code{#:dune} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8265 +#: guix-git/doc/guix.texi:8323 msgid "There is no @code{configure} phase because dune packages typically don't need to be configured. The @code{#:build-flags} parameter is taken as a list of flags passed to the @code{dune} command during the build." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8269 +#: guix-git/doc/guix.texi:8327 msgid "The @code{#:jbuild?} parameter can be passed to use the @code{jbuild} command instead of the more recent @code{dune} command while building a package. Its default value is @code{#f}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8274 +#: guix-git/doc/guix.texi:8332 msgid "The @code{#:package} parameter can be passed to specify a package name, which is useful when a package contains multiple packages and you want to build only one of them. This is equivalent to passing the @code{-p} argument to @code{dune}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8277 +#: guix-git/doc/guix.texi:8335 #, no-wrap msgid "{Scheme Variable} go-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8282 +#: guix-git/doc/guix.texi:8340 msgid "This variable is exported by @code{(guix build-system go)}. It implements a build procedure for Go packages using the standard @url{https://golang.org/cmd/go/#hdr-Compile_packages_and_dependencies, Go build mechanisms}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8293 +#: guix-git/doc/guix.texi:8351 msgid "The user is expected to provide a value for the key @code{#:import-path} and, in some cases, @code{#:unpack-path}. The @url{https://golang.org/doc/code.html#ImportPaths, import path} corresponds to the file system path expected by the package's build scripts and any referring packages, and provides a unique way to refer to a Go package. It is typically based on a combination of the package source code's remote URI and file system hierarchy structure. In some cases, you will need to unpack the package's source code to a different directory structure than the one indicated by the import path, and @code{#:unpack-path} should be used in such cases." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8298 +#: guix-git/doc/guix.texi:8356 msgid "Packages that provide Go libraries should install their source code into the built output. The key @code{#:install-source?}, which defaults to @code{#t}, controls whether or not the source code is installed. It can be set to @code{#f} for packages that only provide executable files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8305 +#: guix-git/doc/guix.texi:8363 msgid "Packages can be cross-built, and if a specific architecture or operating system is desired then the keywords @code{#:goarch} and @code{#:goos} can be used to force the package to be built for that architecture and operating system. The combinations known to Go can be found @url{\"https://golang.org/doc/install/source#environment\", in their documentation}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8307 +#: guix-git/doc/guix.texi:8365 #, no-wrap msgid "{Scheme Variable} glib-or-gtk-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8310 +#: guix-git/doc/guix.texi:8368 msgid "This variable is exported by @code{(guix build-system glib-or-gtk)}. It is intended for use with packages making use of GLib or GTK+." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8313 +#: guix-git/doc/guix.texi:8371 msgid "This build system adds the following two phases to the ones defined by @code{gnu-build-system}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8315 guix-git/doc/guix.texi:8799 +#: guix-git/doc/guix.texi:8373 guix-git/doc/guix.texi:8856 #, no-wrap msgid "glib-or-gtk-wrap" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8322 +#: guix-git/doc/guix.texi:8380 msgid "The phase @code{glib-or-gtk-wrap} ensures that programs in @file{bin/} are able to find GLib ``schemas'' and @uref{https://developer.gnome.org/gtk3/stable/gtk-running.html, GTK+ modules}. This is achieved by wrapping the programs in launch scripts that appropriately set the @env{XDG_DATA_DIRS} and @env{GTK_PATH} environment variables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8329 +#: guix-git/doc/guix.texi:8387 msgid "It is possible to exclude specific package outputs from that wrapping process by listing their names in the @code{#:glib-or-gtk-wrap-excluded-outputs} parameter. This is useful when an output is known not to contain any GLib or GTK+ binaries, and where wrapping would gratuitously add a dependency of that output on GLib and GTK+." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8330 guix-git/doc/guix.texi:8803 +#: guix-git/doc/guix.texi:8388 guix-git/doc/guix.texi:8860 #, no-wrap msgid "glib-or-gtk-compile-schemas" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8338 +#: guix-git/doc/guix.texi:8396 msgid "The phase @code{glib-or-gtk-compile-schemas} makes sure that all @uref{https://developer.gnome.org/gio/stable/glib-compile-schemas.html, GSettings schemas} of GLib are compiled. Compilation is performed by the @command{glib-compile-schemas} program. It is provided by the package @code{glib:bin} which is automatically imported by the build system. The @code{glib} package providing @command{glib-compile-schemas} can be specified with the @code{#:glib} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8341 +#: guix-git/doc/guix.texi:8399 msgid "Both phases are executed after the @code{install} phase." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8343 +#: guix-git/doc/guix.texi:8401 #, no-wrap msgid "{Scheme Variable} guile-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8350 +#: guix-git/doc/guix.texi:8408 msgid "This build system is for Guile packages that consist exclusively of Scheme code and that are so lean that they don't even have a makefile, let alone a @file{configure} script. It compiles Scheme code using @command{guild compile} (@pxref{Compilation,,, guile, GNU Guile Reference Manual}) and installs the @file{.scm} and @file{.go} files in the right place. It also installs documentation." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8353 +#: guix-git/doc/guix.texi:8411 msgid "This build system supports cross-compilation by using the @option{--target} option of @samp{guild compile}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8356 +#: guix-git/doc/guix.texi:8414 msgid "Packages built with @code{guile-build-system} must provide a Guile package in their @code{native-inputs} field." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8358 +#: guix-git/doc/guix.texi:8416 #, no-wrap msgid "{Scheme Variable} julia-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8365 +#: guix-git/doc/guix.texi:8423 msgid "This variable is exported by @code{(guix build-system julia)}. It implements the build procedure used by @uref{https://julialang.org/, julia} packages, which essentially is similar to running @samp{julia -e 'using Pkg; Pkg.add(package)'} in an environment where @env{JULIA_LOAD_PATH} contains the paths to all Julia package inputs. Tests are run by calling @code{/test/runtests.jl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8369 -msgid "The Julia package name is read from the file @file{Project.toml}. This value can be overridden by passing the argument @code{#:julia-package-name} (which must be correctly capitalized)." +#: guix-git/doc/guix.texi:8428 +msgid "The Julia package name and uuid is read from the file @file{Project.toml}. These values can be overridden by passing the argument @code{#:julia-package-name} (which must be correctly capitalized) or @code{#:julia-package-uuid}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8373 +#: guix-git/doc/guix.texi:8432 msgid "Julia packages usually manage their binary dependencies via @code{JLLWrappers.jl}, a Julia package that creates a module (named after the wrapped library followed by @code{_jll.jl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8378 +#: guix-git/doc/guix.texi:8437 msgid "To add the binary path @code{_jll.jl} packages, you need to patch the files under @file{src/wrappers/}, replacing the call to the macro @code{JLLWrappers.@@generate_wrapper_header}, adding as a second argument containing the store path the binary." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8382 +#: guix-git/doc/guix.texi:8441 msgid "As an example, in the MbedTLS Julia package, we add a build phase (@pxref{Build Phases}) to insert the absolute file name of the wrapped MbedTLS package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8394 +#: guix-git/doc/guix.texi:8453 #, no-wrap msgid "" "(add-after 'unpack 'override-binary-path\n" @@ -16295,655 +16411,666 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8402 -msgid "Some older packages that aren't using @file{Package.toml} yet, will require this file to be created, too. The function @code{julia-create-package-toml} helps creating the file. You need to pass the outputs and the source of the package, its name (the same as the @code{file-name} parameter), the package uuid, the package version, and a list of dependencies specified by their name and their uuid." +#: guix-git/doc/guix.texi:8459 +msgid "Some older packages that aren't using @file{Project.toml} yet, will require this file to be created, too. It is internally done if the arguments @code{#:julia-package-name} and @code{#:julia-package-uuid} are provided." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8404 +#: guix-git/doc/guix.texi:8461 #, no-wrap msgid "{Scheme Variable} maven-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8411 +#: guix-git/doc/guix.texi:8468 msgid "This variable is exported by @code{(guix build-system maven)}. It implements a build procedure for @uref{https://maven.apache.org, Maven} packages. Maven is a dependency and lifecycle management tool for Java. A user of Maven specifies dependencies and plugins in a @file{pom.xml} file that Maven reads. When Maven does not have one of the dependencies or plugins in its repository, it will download them and use them to build the package." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8421 +#: guix-git/doc/guix.texi:8478 msgid "The maven build system ensures that maven will not try to download any dependency by running in offline mode. Maven will fail if a dependency is missing. Before running Maven, the @file{pom.xml} (and subprojects) are modified to specify the version of dependencies and plugins that match the versions available in the guix build environment. Dependencies and plugins must be installed in the fake maven repository at @file{lib/m2}, and are symlinked into a proper repository before maven is run. Maven is instructed to use that repository for the build and installs built artifacts there. Changed files are copied to the @file{lib/m2} directory of the package output." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8424 +#: guix-git/doc/guix.texi:8481 msgid "You can specify a @file{pom.xml} file with the @code{#:pom-file} argument, or let the build system use the default @file{pom.xml} file in the sources." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8430 +#: guix-git/doc/guix.texi:8487 msgid "In case you need to specify a dependency's version manually, you can use the @code{#:local-packages} argument. It takes an association list where the key is the groupId of the package and its value is an association list where the key is the artifactId of the package and its value is the version you want to override in the @file{pom.xml}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8436 +#: guix-git/doc/guix.texi:8493 msgid "Some packages use dependencies or plugins that are not useful at runtime nor at build time in Guix. You can alter the @file{pom.xml} file to remove them using the @code{#:exclude} argument. Its value is an association list where the key is the groupId of the plugin or dependency you want to remove, and the value is a list of artifactId you want to remove." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8439 +#: guix-git/doc/guix.texi:8496 msgid "You can override the default @code{jdk} and @code{maven} packages with the corresponding argument, @code{#:jdk} and @code{#:maven}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8444 +#: guix-git/doc/guix.texi:8501 msgid "The @code{#:maven-plugins} argument is a list of maven plugins used during the build, with the same format as the @code{inputs} fields of the package declaration. Its default value is @code{(default-maven-plugins)} which is also exported." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8446 +#: guix-git/doc/guix.texi:8503 #, no-wrap msgid "{Scheme Variable} minetest-mod-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8452 +#: guix-git/doc/guix.texi:8509 msgid "This variable is exported by @code{(guix build-system minetest)}. It implements a build procedure for @uref{https://www.minetest.net, Minetest} mods, which consists of copying Lua code, images and other resources to the location Minetest searches for mods. The build system also minimises PNG images and verifies that Minetest can load the mod without errors." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8454 +#: guix-git/doc/guix.texi:8511 #, no-wrap msgid "{Scheme Variable} minify-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8457 +#: guix-git/doc/guix.texi:8514 msgid "This variable is exported by @code{(guix build-system minify)}. It implements a minification procedure for simple JavaScript packages." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8463 +#: guix-git/doc/guix.texi:8520 msgid "It adds @code{uglify-js} to the set of inputs and uses it to compress all JavaScript files in the @file{src} directory. A different minifier package can be specified with the @code{#:uglify-js} parameter, but it is expected that the package writes the minified code to the standard output." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8467 +#: guix-git/doc/guix.texi:8524 msgid "When the input JavaScript files are not all located in the @file{src} directory, the parameter @code{#:javascript-files} can be used to specify a list of file names to feed to the minifier." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8469 +#: guix-git/doc/guix.texi:8526 #, no-wrap msgid "{Scheme Variable} ocaml-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8475 +#: guix-git/doc/guix.texi:8532 msgid "This variable is exported by @code{(guix build-system ocaml)}. It implements a build procedure for @uref{https://ocaml.org, OCaml} packages, which consists of choosing the correct set of commands to run for each package. OCaml packages can expect many different commands to be run. This build system will try some of them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8485 +#: guix-git/doc/guix.texi:8542 msgid "When the package has a @file{setup.ml} file present at the top-level, it will run @code{ocaml setup.ml -configure}, @code{ocaml setup.ml -build} and @code{ocaml setup.ml -install}. The build system will assume that this file was generated by @uref{http://oasis.forge.ocamlcore.org/, OASIS} and will take care of setting the prefix and enabling tests if they are not disabled. You can pass configure and build flags with the @code{#:configure-flags} and @code{#:build-flags}. The @code{#:test-flags} key can be passed to change the set of flags used to enable tests. The @code{#:use-make?} key can be used to bypass this system in the build and install phases." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8490 +#: guix-git/doc/guix.texi:8547 msgid "When the package has a @file{configure} file, it is assumed that it is a hand-made configure script that requires a different argument format than in the @code{gnu-build-system}. You can add more flags with the @code{#:configure-flags} key." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8494 +#: guix-git/doc/guix.texi:8551 msgid "When the package has a @file{Makefile} file (or @code{#:use-make?} is @code{#t}), it will be used and more flags can be passed to the build and install phases with the @code{#:make-flags} key." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8502 +#: guix-git/doc/guix.texi:8559 msgid "Finally, some packages do not have these files and use a somewhat standard location for its build system. In that case, the build system will run @code{ocaml pkg/pkg.ml} or @code{ocaml pkg/build.ml} and take care of providing the path to the required findlib module. Additional flags can be passed via the @code{#:build-flags} key. Install is taken care of by @command{opam-installer}. In this case, the @code{opam} package must be added to the @code{native-inputs} field of the package definition." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8510 +#: guix-git/doc/guix.texi:8567 msgid "Note that most OCaml packages assume they will be installed in the same directory as OCaml, which is not what we want in guix. In particular, they will install @file{.so} files in their module's directory, which is usually fine because it is in the OCaml compiler directory. In guix though, these libraries cannot be found and we use @env{CAML_LD_LIBRARY_PATH}. This variable points to @file{lib/ocaml/site-lib/stubslibs} and this is where @file{.so} libraries should be installed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8512 +#: guix-git/doc/guix.texi:8569 #, no-wrap msgid "{Scheme Variable} python-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8517 +#: guix-git/doc/guix.texi:8574 msgid "This variable is exported by @code{(guix build-system python)}. It implements the more or less standard build procedure used by Python packages, which consists in running @code{python setup.py build} and then @code{python setup.py install --prefix=/gnu/store/@dots{}}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8522 +#: guix-git/doc/guix.texi:8579 msgid "For packages that install stand-alone Python programs under @code{bin/}, it takes care of wrapping these programs so that their @env{GUIX_PYTHONPATH} environment variable points to all the Python libraries they depend on." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8528 +#: guix-git/doc/guix.texi:8585 msgid "Which Python package is used to perform the build can be specified with the @code{#:python} parameter. This is a useful way to force a package to be built for a specific version of the Python interpreter, which might be necessary if the package is only compatible with a single interpreter version." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8533 +#: guix-git/doc/guix.texi:8590 msgid "By default guix calls @code{setup.py} under control of @code{setuptools}, much like @command{pip} does. Some packages are not compatible with setuptools (and pip), thus you can disable this by setting the @code{#:use-setuptools?} parameter to @code{#f}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8539 +#: guix-git/doc/guix.texi:8596 msgid "If a @code{\"python\"} output is available, the package is installed into it instead of the default @code{\"out\"} output. This is useful for packages that include a Python package as only a part of the software, and thus want to combine the phases of @code{python-build-system} with another build system. Python bindings are a common usecase." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8542 +#: guix-git/doc/guix.texi:8599 #, no-wrap msgid "{Scheme Variable} perl-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8554 +#: guix-git/doc/guix.texi:8611 msgid "This variable is exported by @code{(guix build-system perl)}. It implements the standard build procedure for Perl packages, which either consists in running @code{perl Build.PL --prefix=/gnu/store/@dots{}}, followed by @code{Build} and @code{Build install}; or in running @code{perl Makefile.PL PREFIX=/gnu/store/@dots{}}, followed by @code{make} and @code{make install}, depending on which of @code{Build.PL} or @code{Makefile.PL} is present in the package distribution. Preference is given to the former if both @code{Build.PL} and @code{Makefile.PL} exist in the package distribution. This preference can be reversed by specifying @code{#t} for the @code{#:make-maker?} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8558 +#: guix-git/doc/guix.texi:8615 msgid "The initial @code{perl Makefile.PL} or @code{perl Build.PL} invocation passes flags specified by the @code{#:make-maker-flags} or @code{#:module-build-flags} parameter, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8560 +#: guix-git/doc/guix.texi:8617 msgid "Which Perl package is used can be specified with @code{#:perl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8562 +#: guix-git/doc/guix.texi:8619 #, no-wrap msgid "{Scheme Variable} renpy-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8566 +#: guix-git/doc/guix.texi:8623 msgid "This variable is exported by @code{(guix build-system renpy)}. It implements the more or less standard build procedure used by Ren'py games, which consists of loading @code{#:game} once, thereby creating bytecode for it." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8569 +#: guix-git/doc/guix.texi:8626 msgid "It further creates a wrapper script in @code{bin/} and a desktop entry in @code{share/applications}, both of which can be used to launch the game." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8573 +#: guix-git/doc/guix.texi:8630 msgid "Which Ren'py package is used can be specified with @code{#:renpy}. Games can also be installed in outputs other than ``out'' by using @code{#:output}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8575 +#: guix-git/doc/guix.texi:8632 #, no-wrap msgid "{Scheme Variable} qt-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8578 +#: guix-git/doc/guix.texi:8635 msgid "This variable is exported by @code{(guix build-system qt)}. It is intended for use with applications using Qt or KDE." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8581 +#: guix-git/doc/guix.texi:8638 msgid "This build system adds the following two phases to the ones defined by @code{cmake-build-system}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8583 +#: guix-git/doc/guix.texi:8640 #, no-wrap msgid "check-setup" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8590 +#: guix-git/doc/guix.texi:8647 msgid "The phase @code{check-setup} prepares the environment for running the checks as commonly used by Qt test programs. For now this only sets some environment variables: @code{QT_QPA_PLATFORM=offscreen}, @code{DBUS_FATAL_WARNINGS=0} and @code{CTEST_OUTPUT_ON_FAILURE=1}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8593 +#: guix-git/doc/guix.texi:8650 msgid "This phase is added before the @code{check} phase. It's a separate phase to ease adjusting if necessary." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8594 +#: guix-git/doc/guix.texi:8651 #, no-wrap msgid "qt-wrap" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8600 +#: guix-git/doc/guix.texi:8657 msgid "The phase @code{qt-wrap} searches for Qt5 plugin paths, QML paths and some XDG in the inputs and output. In case some path is found, all programs in the output's @file{bin/}, @file{sbin/}, @file{libexec/} and @file{lib/libexec/} directories are wrapped in scripts defining the necessary environment variables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8606 +#: guix-git/doc/guix.texi:8663 msgid "It is possible to exclude specific package outputs from that wrapping process by listing their names in the @code{#:qt-wrap-excluded-outputs} parameter. This is useful when an output is known not to contain any Qt binaries, and where wrapping would gratuitously add a dependency of that output on Qt, KDE, or such." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8608 +#: guix-git/doc/guix.texi:8665 msgid "This phase is added after the @code{install} phase." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8611 +#: guix-git/doc/guix.texi:8668 #, no-wrap msgid "{Scheme Variable} r-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8619 +#: guix-git/doc/guix.texi:8676 msgid "This variable is exported by @code{(guix build-system r)}. It implements the build procedure used by @uref{https://r-project.org, R} packages, which essentially is little more than running @samp{R CMD INSTALL --library=/gnu/store/@dots{}} in an environment where @env{R_LIBS_SITE} contains the paths to all R package inputs. Tests are run after installation using the R function @code{tools::testInstalledPackage}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8621 +#: guix-git/doc/guix.texi:8678 #, no-wrap msgid "{Scheme Variable} rakudo-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8629 +#: guix-git/doc/guix.texi:8686 msgid "This variable is exported by @code{(guix build-system rakudo)}. It implements the build procedure used by @uref{https://rakudo.org/, Rakudo} for @uref{https://perl6.org/, Perl6} packages. It installs the package to @code{/gnu/store/@dots{}/NAME-VERSION/share/perl6} and installs the binaries, library files and the resources, as well as wrap the files under the @code{bin/} directory. Tests can be skipped by passing @code{#f} to the @code{tests?} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8637 +#: guix-git/doc/guix.texi:8694 msgid "Which rakudo package is used can be specified with @code{rakudo}. Which perl6-tap-harness package used for the tests can be specified with @code{#:prove6} or removed by passing @code{#f} to the @code{with-prove6?} parameter. Which perl6-zef package used for tests and installing can be specified with @code{#:zef} or removed by passing @code{#f} to the @code{with-zef?} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8639 +#: guix-git/doc/guix.texi:8696 #, no-wrap msgid "{Scheme Variable} texlive-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8644 +#: guix-git/doc/guix.texi:8701 msgid "This variable is exported by @code{(guix build-system texlive)}. It is used to build TeX packages in batch mode with a specified engine. The build system sets the @env{TEXINPUTS} variable to find all TeX source files in the inputs." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8653 +#: guix-git/doc/guix.texi:8710 msgid "By default it runs @code{luatex} on all files ending on @code{ins}. A different engine and format can be specified with the @code{#:tex-format} argument. Different build targets can be specified with the @code{#:build-targets} argument, which expects a list of file names. The build system adds only @code{texlive-bin} and @code{texlive-latex-base} (both from @code{(gnu packages tex}) to the inputs. Both can be overridden with the arguments @code{#:texlive-bin} and @code{#:texlive-latex-base}, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8656 +#: guix-git/doc/guix.texi:8713 msgid "The @code{#:tex-directory} parameter tells the build system where to install the built files under the texmf tree." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8658 +#: guix-git/doc/guix.texi:8715 #, no-wrap msgid "{Scheme Variable} ruby-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8662 +#: guix-git/doc/guix.texi:8719 msgid "This variable is exported by @code{(guix build-system ruby)}. It implements the RubyGems build procedure used by Ruby packages, which involves running @code{gem build} followed by @code{gem install}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8670 +#: guix-git/doc/guix.texi:8727 msgid "The @code{source} field of a package that uses this build system typically references a gem archive, since this is the format that Ruby developers use when releasing their software. The build system unpacks the gem archive, potentially patches the source, runs the test suite, repackages the gem, and installs it. Additionally, directories and tarballs may be referenced to allow building unreleased gems from Git or a traditional source release tarball." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8674 +#: guix-git/doc/guix.texi:8731 msgid "Which Ruby package is used can be specified with the @code{#:ruby} parameter. A list of additional flags to be passed to the @command{gem} command can be specified with the @code{#:gem-flags} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8676 +#: guix-git/doc/guix.texi:8733 #, no-wrap msgid "{Scheme Variable} waf-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8682 +#: guix-git/doc/guix.texi:8739 msgid "This variable is exported by @code{(guix build-system waf)}. It implements a build procedure around the @code{waf} script. The common phases---@code{configure}, @code{build}, and @code{install}---are implemented by passing their names as arguments to the @code{waf} script." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8686 +#: guix-git/doc/guix.texi:8743 msgid "The @code{waf} script is executed by the Python interpreter. Which Python package is used to run the script can be specified with the @code{#:python} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8688 +#: guix-git/doc/guix.texi:8745 #, no-wrap msgid "{Scheme Variable} scons-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8694 +#: guix-git/doc/guix.texi:8751 msgid "This variable is exported by @code{(guix build-system scons)}. It implements the build procedure used by the SCons software construction tool. This build system runs @code{scons} to build the package, @code{scons test} to run tests, and then @code{scons install} to install the package." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8701 +#: guix-git/doc/guix.texi:8758 msgid "Additional flags to be passed to @code{scons} can be specified with the @code{#:scons-flags} parameter. The default build and install targets can be overridden with @code{#:build-targets} and @code{#:install-targets} respectively. The version of Python used to run SCons can be specified by selecting the appropriate SCons package with the @code{#:scons} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8703 +#: guix-git/doc/guix.texi:8760 #, no-wrap msgid "{Scheme Variable} haskell-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8717 +#: guix-git/doc/guix.texi:8774 msgid "This variable is exported by @code{(guix build-system haskell)}. It implements the Cabal build procedure used by Haskell packages, which involves running @code{runhaskell Setup.hs configure --prefix=/gnu/store/@dots{}} and @code{runhaskell Setup.hs build}. Instead of installing the package by running @code{runhaskell Setup.hs install}, to avoid trying to register libraries in the read-only compiler store directory, the build system uses @code{runhaskell Setup.hs copy}, followed by @code{runhaskell Setup.hs register}. In addition, the build system generates the package documentation by running @code{runhaskell Setup.hs haddock}, unless @code{#:haddock? #f} is passed. Optional Haddock parameters can be passed with the help of the @code{#:haddock-flags} parameter. If the file @code{Setup.hs} is not found, the build system looks for @code{Setup.lhs} instead." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8720 +#: guix-git/doc/guix.texi:8777 msgid "Which Haskell compiler is used can be specified with the @code{#:haskell} parameter which defaults to @code{ghc}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8722 +#: guix-git/doc/guix.texi:8779 #, no-wrap msgid "{Scheme Variable} dub-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8727 +#: guix-git/doc/guix.texi:8784 msgid "This variable is exported by @code{(guix build-system dub)}. It implements the Dub build procedure used by D packages, which involves running @code{dub build} and @code{dub run}. Installation is done by copying the files manually." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8730 +#: guix-git/doc/guix.texi:8787 msgid "Which D compiler is used can be specified with the @code{#:ldc} parameter which defaults to @code{ldc}." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:8733 +#: guix-git/doc/guix.texi:8790 msgid "emacs-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8733 +#: guix-git/doc/guix.texi:8790 #, no-wrap msgid "{Scheme Variable} emacs-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8737 +#: guix-git/doc/guix.texi:8794 msgid "This variable is exported by @code{(guix build-system emacs)}. It implements an installation procedure similar to the packaging system of Emacs itself (@pxref{Packages,,, emacs, The GNU Emacs Manual})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8743 +#: guix-git/doc/guix.texi:8800 msgid "It first creates the @code{@code{package}-autoloads.el} file, then it byte compiles all Emacs Lisp files. Differently from the Emacs packaging system, the Info documentation files are moved to the standard documentation directory and the @file{dir} file is deleted. The Elisp package files are installed directly under @file{share/emacs/site-lisp}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8745 +#: guix-git/doc/guix.texi:8802 #, no-wrap msgid "{Scheme Variable} font-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8751 +#: guix-git/doc/guix.texi:8808 msgid "This variable is exported by @code{(guix build-system font)}. It implements an installation procedure for font packages where upstream provides pre-compiled TrueType, OpenType, etc.@: font files that merely need to be copied into place. It copies font files to standard locations in the output directory." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8753 +#: guix-git/doc/guix.texi:8810 #, no-wrap msgid "{Scheme Variable} meson-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8757 +#: guix-git/doc/guix.texi:8814 msgid "This variable is exported by @code{(guix build-system meson)}. It implements the build procedure for packages that use @url{https://mesonbuild.com, Meson} as their build system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8761 +#: guix-git/doc/guix.texi:8818 msgid "It adds both Meson and @uref{https://ninja-build.org/, Ninja} to the set of inputs, and they can be changed with the parameters @code{#:meson} and @code{#:ninja} if needed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8764 +#: guix-git/doc/guix.texi:8821 msgid "This build system is an extension of @code{gnu-build-system}, but with the following phases changed to some specific for Meson:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8767 guix-git/doc/guix.texi:8818 -#: guix-git/doc/guix.texi:8886 +#: guix-git/doc/guix.texi:8824 guix-git/doc/guix.texi:8875 +#: guix-git/doc/guix.texi:8947 #, no-wrap msgid "configure" msgstr "muokkaa asetuksia" #. type: table -#: guix-git/doc/guix.texi:8772 +#: guix-git/doc/guix.texi:8829 msgid "The phase runs @code{meson} with the flags specified in @code{#:configure-flags}. The flag @option{--buildtype} is always set to @code{debugoptimized} unless something else is specified in @code{#:build-type}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8776 +#: guix-git/doc/guix.texi:8833 msgid "The phase runs @code{ninja} to build the package in parallel by default, but this can be changed with @code{#:parallel-build?}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8782 +#: guix-git/doc/guix.texi:8839 msgid "The phase runs @samp{meson test} with a base set of options that cannot be overridden. This base set of options can be extended via the @code{#:test-options} argument, for example to select or skip a specific test suite." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8785 +#: guix-git/doc/guix.texi:8842 msgid "The phase runs @code{ninja install} and can not be changed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8788 +#: guix-git/doc/guix.texi:8845 msgid "Apart from that, the build system also adds the following phases:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8791 +#: guix-git/doc/guix.texi:8848 #, no-wrap msgid "fix-runpath" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8798 +#: guix-git/doc/guix.texi:8855 msgid "This phase ensures that all binaries can find the libraries they need. It searches for required libraries in subdirectories of the package being built, and adds those to @code{RUNPATH} where needed. It also removes references to libraries left over from the build phase by @code{meson}, such as test dependencies, that aren't actually required for the program to run." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8802 guix-git/doc/guix.texi:8806 +#: guix-git/doc/guix.texi:8859 guix-git/doc/guix.texi:8863 msgid "This phase is the phase provided by @code{glib-or-gtk-build-system}, and it is not enabled by default. It can be enabled with @code{#:glib-or-gtk?}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8809 +#: guix-git/doc/guix.texi:8866 #, no-wrap msgid "{Scheme Variable} linux-module-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8811 +#: guix-git/doc/guix.texi:8868 msgid "@code{linux-module-build-system} allows building Linux kernel modules." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8815 +#: guix-git/doc/guix.texi:8872 msgid "This build system is an extension of @code{gnu-build-system}, but with the following phases changed:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8821 +#: guix-git/doc/guix.texi:8878 msgid "This phase configures the environment so that the Linux kernel's Makefile can be used to build the external kernel module." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8825 +#: guix-git/doc/guix.texi:8882 msgid "This phase uses the Linux kernel's Makefile in order to build the external kernel module." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8829 +#: guix-git/doc/guix.texi:8886 msgid "This phase uses the Linux kernel's Makefile in order to install the external kernel module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8834 +#: guix-git/doc/guix.texi:8891 msgid "It is possible and useful to specify the Linux kernel to use for building the module (in the @code{arguments} form of a package using the @code{linux-module-build-system}, use the key @code{#:linux} to specify it)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8836 +#: guix-git/doc/guix.texi:8893 #, no-wrap msgid "{Scheme Variable} node-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8841 +#: guix-git/doc/guix.texi:8898 msgid "This variable is exported by @code{(guix build-system node)}. It implements the build procedure used by @uref{https://nodejs.org, Node.js}, which implements an approximation of the @code{npm install} command, followed by an @code{npm test} command." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8845 +#: guix-git/doc/guix.texi:8902 msgid "Which Node.js package is used to interpret the @code{npm} commands can be specified with the @code{#:node} parameter which defaults to @code{node}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8851 +#: guix-git/doc/guix.texi:8908 msgid "Lastly, for packages that do not need anything as sophisticated, a ``trivial'' build system is provided. It is trivial in the sense that it provides basically no support: it does not pull any implicit inputs, and does not have a notion of build phases." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8852 +#: guix-git/doc/guix.texi:8909 #, no-wrap msgid "{Scheme Variable} trivial-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8854 +#: guix-git/doc/guix.texi:8911 msgid "This variable is exported by @code{(guix build-system trivial)}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8859 +#: guix-git/doc/guix.texi:8916 msgid "This build system requires a @code{#:builder} argument. This argument must be a Scheme expression that builds the package output(s)---as with @code{build-expression->derivation} (@pxref{Derivations, @code{build-expression->derivation}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8864 +#: guix-git/doc/guix.texi:8921 #, no-wrap msgid "build phases, for packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8870 +#: guix-git/doc/guix.texi:8927 msgid "Almost all package build systems implement a notion @dfn{build phases}: a sequence of actions that the build system executes, when you build the package, leading to the installed byproducts in the store. A notable exception is the ``bare-bones'' @code{trivial-build-system} (@pxref{Build Systems})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8874 +#: guix-git/doc/guix.texi:8931 msgid "As discussed in the previous section, those build systems provide a standard list of phases. For @code{gnu-build-system}, the main build phases are the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8876 +#: guix-git/doc/guix.texi:8933 +#, no-wrap +msgid "set-paths" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:8936 +msgid "Define search path environment variables for all the input packages, including @env{PATH} (@pxref{Search Paths})." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:8937 #, no-wrap msgid "unpack" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8880 +#: guix-git/doc/guix.texi:8941 msgid "Unpack the source tarball, and change the current directory to the extracted source tree. If the source is actually a directory, copy it to the build tree, and enter that directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8881 +#: guix-git/doc/guix.texi:8942 #, no-wrap msgid "patch-source-shebangs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8885 +#: guix-git/doc/guix.texi:8946 msgid "Patch shebangs encountered in source files so they refer to the right store file names. For instance, this changes @code{#!/bin/sh} to @code{#!/gnu/store/@dots{}-bash-4.3/bin/sh}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8890 +#: guix-git/doc/guix.texi:8951 msgid "Run the @file{configure} script with a number of default options, such as @option{--prefix=/gnu/store/@dots{}}, as well as the options specified by the @code{#:configure-flags} argument." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8895 +#: guix-git/doc/guix.texi:8956 msgid "Run @code{make} with the list of flags specified with @code{#:make-flags}. If the @code{#:parallel-build?} argument is true (the default), build with @code{make -j}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8901 +#: guix-git/doc/guix.texi:8962 msgid "Run @code{make check}, or some other target specified with @code{#:test-target}, unless @code{#:tests? #f} is passed. If the @code{#:parallel-tests?} argument is true (the default), run @code{make check -j}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8904 +#: guix-git/doc/guix.texi:8965 msgid "Run @code{make install} with the flags listed in @code{#:make-flags}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8905 +#: guix-git/doc/guix.texi:8966 #, no-wrap msgid "patch-shebangs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8907 +#: guix-git/doc/guix.texi:8968 msgid "Patch shebangs on the installed executable files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8908 +#: guix-git/doc/guix.texi:8969 #, no-wrap msgid "strip" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8912 +#: guix-git/doc/guix.texi:8973 msgid "Strip debugging symbols from ELF files (unless @code{#:strip-binaries?} is false), copying them to the @code{debug} output when available (@pxref{Installing Debugging Files})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8921 +#: guix-git/doc/guix.texi:8982 msgid "Other build systems have similar phases, with some variations. For example, @code{cmake-build-system} has same-named phases but its @code{configure} phases runs @code{cmake} instead of @code{./configure}. Others, such as @code{python-build-system}, have a wholly different list of standard phases. All this code runs on the @dfn{build side}: it is evaluated when you actually build the package, in a dedicated build process spawned by the build daemon (@pxref{Invoking guix-daemon})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8928 +#: guix-git/doc/guix.texi:8989 msgid "Build phases are represented as association lists or ``alists'' (@pxref{Association Lists,,, guile, GNU Guile Reference Manual}) where each key is a symbol for the name of the phase and the associated value is a procedure that accepts an arbitrary number of arguments. By convention, those procedures receive information about the build in the form of @dfn{keyword parameters}, which they can use or ignore." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:8929 +#: guix-git/doc/guix.texi:8990 #, no-wrap msgid "%standard-phases" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8935 +#: guix-git/doc/guix.texi:8996 msgid "For example, here is how @code{(guix build gnu-build-system)} defines @code{%standard-phases}, the variable holding its alist of build phases@footnote{We present a simplified view of those build phases, but do take a look at @code{(guix build gnu-build-system)} to see all the details!}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8938 +#: guix-git/doc/guix.texi:8999 #, no-wrap msgid "" ";; The build phases of 'gnu-build-system'.\n" @@ -16951,7 +17078,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8942 +#: guix-git/doc/guix.texi:9003 #, no-wrap msgid "" "(define* (unpack #:key source #:allow-other-keys)\n" @@ -16961,7 +17088,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8948 +#: guix-git/doc/guix.texi:9009 #, no-wrap msgid "" "(define* (configure #:key outputs #:allow-other-keys)\n" @@ -16973,7 +17100,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8952 +#: guix-git/doc/guix.texi:9013 #, no-wrap msgid "" "(define* (build #:allow-other-keys)\n" @@ -16983,7 +17110,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8959 +#: guix-git/doc/guix.texi:9020 #, no-wrap msgid "" "(define* (check #:key (test-target \"check\") (tests? #true)\n" @@ -16996,7 +17123,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8963 +#: guix-git/doc/guix.texi:9024 #, no-wrap msgid "" "(define* (install #:allow-other-keys)\n" @@ -17006,7 +17133,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8972 +#: guix-git/doc/guix.texi:9033 #, no-wrap msgid "" "(define %standard-phases\n" @@ -17020,38 +17147,38 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8982 +#: guix-git/doc/guix.texi:9043 msgid "This shows how @code{%standard-phases} is defined as a list of symbol/procedure pairs (@pxref{Pairs,,, guile, GNU Guile Reference Manual}). The first pair associates the @code{unpack} procedure with the @code{unpack} symbol---a name; the second pair defines the @code{configure} phase similarly, and so on. When building a package that uses @code{gnu-build-system} with its default list of phases, those phases are executed sequentially. You can see the name of each phase started and completed in the build log of packages that you build." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8988 +#: guix-git/doc/guix.texi:9049 msgid "Let's now look at the procedures themselves. Each one is defined with @code{define*}: @code{#:key} lists keyword parameters the procedure accepts, possibly with a default value, and @code{#:allow-other-keys} specifies that other keyword parameters are ignored (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9004 +#: guix-git/doc/guix.texi:9065 msgid "The @code{unpack} procedure honors the @code{source} parameter, which the build system uses to pass the file name of the source tarball (or version control checkout), and it ignores other parameters. The @code{configure} phase only cares about the @code{outputs} parameter, an alist mapping package output names to their store file name (@pxref{Packages with Multiple Outputs}). It extracts the file name of for @code{out}, the default output, and passes it to @command{./configure} as the installation prefix, meaning that @command{make install} will eventually copy all the files in that directory (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards}). @code{build} and @code{install} ignore all their arguments. @code{check} honors the @code{test-target} argument, which specifies the name of the Makefile target to run tests; it prints a message and skips tests when @code{tests?} is false." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9005 +#: guix-git/doc/guix.texi:9066 #, no-wrap msgid "build phases, customizing" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9014 +#: guix-git/doc/guix.texi:9075 msgid "The list of phases used for a particular package can be changed with the @code{#:phases} parameter of the build system. Changing the set of build phases boils down to building a new alist of phases based on the @code{%standard-phases} alist described above. This can be done with standard alist procedures such as @code{alist-delete} (@pxref{SRFI-1 Association Lists,,, guile, GNU Guile Reference Manual}); however, it is more convenient to do so with @code{modify-phases} (@pxref{Build Utilities, @code{modify-phases}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9019 +#: guix-git/doc/guix.texi:9080 msgid "Here is an example of a package definition that removes the @code{configure} phase of @code{%standard-phases} and inserts a new phase before the @code{build} phase, called @code{set-prefix-in-makefile}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9039 +#: guix-git/doc/guix.texi:9100 #, no-wrap msgid "" "(define-public example\n" @@ -17075,44 +17202,44 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9045 +#: guix-git/doc/guix.texi:9106 msgid "The new phase that is inserted is written as an anonymous procedure, introduced with @code{lambda*}; it honors the @code{outputs} parameter we have seen before. @xref{Build Utilities}, for more about the helpers used by this phase, and for more examples of @code{modify-phases}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9046 guix-git/doc/guix.texi:10046 +#: guix-git/doc/guix.texi:9107 guix-git/doc/guix.texi:10360 #, no-wrap msgid "code staging" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9047 guix-git/doc/guix.texi:10047 +#: guix-git/doc/guix.texi:9108 guix-git/doc/guix.texi:10361 #, no-wrap msgid "staging, of code" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9054 +#: guix-git/doc/guix.texi:9115 msgid "Keep in mind that build phases are code evaluated at the time the package is actually built. This explains why the whole @code{modify-phases} expression above is quoted (it comes after the @code{'} or apostrophe): it is @dfn{staged} for later execution. @xref{G-Expressions}, for an explanation of code staging and the @dfn{code strata} involved." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9064 +#: guix-git/doc/guix.texi:9125 msgid "As soon as you start writing non-trivial package definitions (@pxref{Defining Packages}) or other build actions (@pxref{G-Expressions}), you will likely start looking for helpers for ``shell-like'' actions---creating directories, copying and deleting files recursively, manipulating build phases, and so on. The @code{(guix build utils)} module provides such utility procedures." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9068 +#: guix-git/doc/guix.texi:9129 msgid "Most build systems load @code{(guix build utils)} (@pxref{Build Systems}). Thus, when writing custom build phases for your package definitions, you can usually assume those procedures are in scope." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9073 +#: guix-git/doc/guix.texi:9134 msgid "When writing G-expressions, you can import @code{(guix build utils)} on the ``build side'' using @code{with-imported-modules} and then put it in scope with the @code{use-modules} form (@pxref{Using Guile Modules,,, guile, GNU Guile Reference Manual}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9080 +#: guix-git/doc/guix.texi:9141 #, no-wrap msgid "" "(with-imported-modules '((guix build utils)) ;import it\n" @@ -17124,7 +17251,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9083 +#: guix-git/doc/guix.texi:9144 #, no-wrap msgid "" " ;; Happily use its 'mkdir-p' procedure.\n" @@ -17132,238 +17259,238 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9087 +#: guix-git/doc/guix.texi:9148 msgid "The remainder of this section is the reference for most of the utility procedures provided by @code{(guix build utils)}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9090 +#: guix-git/doc/guix.texi:9151 #, no-wrap msgid "Dealing with Store File Names" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9093 +#: guix-git/doc/guix.texi:9154 msgid "This section documents procedures that deal with store file names." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9094 +#: guix-git/doc/guix.texi:9155 #, no-wrap msgid "{Scheme Procedure} %store-directory" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9096 +#: guix-git/doc/guix.texi:9157 msgid "Return the directory name of the store." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9098 +#: guix-git/doc/guix.texi:9159 #, no-wrap msgid "{Scheme Procedure} store-file-name? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9100 +#: guix-git/doc/guix.texi:9161 msgid "Return true if @var{file} is in the store." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9102 +#: guix-git/doc/guix.texi:9163 #, no-wrap msgid "{Scheme Procedure} strip-store-file-name @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9105 +#: guix-git/doc/guix.texi:9166 msgid "Strip the @file{/gnu/store} and hash from @var{file}, a store file name. The result is typically a @code{\"@var{package}-@var{version}\"} string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9107 +#: guix-git/doc/guix.texi:9168 #, no-wrap msgid "{Scheme Procedure} package-name->name+version @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9112 +#: guix-git/doc/guix.texi:9173 msgid "Given @var{name}, a package name like @code{\"foo-0.9.1b\"}, return two values: @code{\"foo\"} and @code{\"0.9.1b\"}. When the version part is unavailable, @var{name} and @code{#f} are returned. The first hyphen followed by a digit is considered to introduce the version part." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9114 +#: guix-git/doc/guix.texi:9175 #, no-wrap msgid "File Types" msgstr "Tiedostotyyppejä" #. type: Plain text -#: guix-git/doc/guix.texi:9117 +#: guix-git/doc/guix.texi:9178 msgid "The procedures below deal with files and file types." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9118 +#: guix-git/doc/guix.texi:9179 #, no-wrap msgid "{Scheme Procedure} directory-exists? @var{dir}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9120 +#: guix-git/doc/guix.texi:9181 msgid "Return @code{#t} if @var{dir} exists and is a directory." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9122 +#: guix-git/doc/guix.texi:9183 #, no-wrap msgid "{Scheme Procedure} executable-file? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9124 +#: guix-git/doc/guix.texi:9185 msgid "Return @code{#t} if @var{file} exists and is executable." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9126 +#: guix-git/doc/guix.texi:9187 #, no-wrap msgid "{Scheme Procedure} symbolic-link? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9128 +#: guix-git/doc/guix.texi:9189 msgid "Return @code{#t} if @var{file} is a symbolic link (aka. a ``symlink'')." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9130 +#: guix-git/doc/guix.texi:9191 #, no-wrap msgid "{Scheme Procedure} elf-file? @var{file}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9131 +#: guix-git/doc/guix.texi:9192 #, no-wrap msgid "{Scheme Procedure} ar-file? @var{file}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9132 +#: guix-git/doc/guix.texi:9193 #, no-wrap msgid "{Scheme Procedure} gzip-file? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9135 +#: guix-git/doc/guix.texi:9196 msgid "Return @code{#t} if @var{file} is, respectively, an ELF file, an @code{ar} archive (such as a @file{.a} static library), or a gzip file." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9137 +#: guix-git/doc/guix.texi:9198 #, no-wrap msgid "{Scheme Procedure} reset-gzip-timestamp @var{file} [#:keep-mtime? #t]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9141 +#: guix-git/doc/guix.texi:9202 msgid "If @var{file} is a gzip file, reset its embedded timestamp (as with @command{gzip --no-name}) and return true. Otherwise return @code{#f}. When @var{keep-mtime?} is true, preserve @var{file}'s modification time." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9143 +#: guix-git/doc/guix.texi:9204 #, no-wrap msgid "File Manipulation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9150 +#: guix-git/doc/guix.texi:9211 msgid "The following procedures and macros help create, modify, and delete files. They provide functionality comparable to common shell utilities such as @command{mkdir -p}, @command{cp -r}, @command{rm -r}, and @command{sed}. They complement Guile's extensive, but low-level, file system interface (@pxref{POSIX,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9151 +#: guix-git/doc/guix.texi:9212 #, no-wrap msgid "{Scheme Syntax} with-directory-excursion @var{directory} @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9153 +#: guix-git/doc/guix.texi:9214 msgid "Run @var{body} with @var{directory} as the process's current directory." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9160 +#: guix-git/doc/guix.texi:9221 msgid "Essentially, this macro changes the current directory to @var{directory} before evaluating @var{body}, using @code{chdir} (@pxref{Processes,,, guile, GNU Guile Reference Manual}). It changes back to the initial directory when the dynamic extent of @var{body} is left, be it @i{via} normal procedure return or @i{via} a non-local exit such as an exception." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9162 +#: guix-git/doc/guix.texi:9223 #, no-wrap msgid "{Scheme Procedure} mkdir-p @var{dir}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9164 +#: guix-git/doc/guix.texi:9225 msgid "Create directory @var{dir} and all its ancestors." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9166 +#: guix-git/doc/guix.texi:9227 #, no-wrap msgid "{Scheme Procedure} install-file @var{file} @var{directory}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9169 +#: guix-git/doc/guix.texi:9230 msgid "Create @var{directory} if it does not exist and copy @var{file} in there under the same name." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9171 +#: guix-git/doc/guix.texi:9232 #, no-wrap msgid "{Scheme Procedure} make-file-writable @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9173 +#: guix-git/doc/guix.texi:9234 msgid "Make @var{file} writable for its owner." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9175 +#: guix-git/doc/guix.texi:9236 #, no-wrap msgid "{Scheme Procedure} copy-recursively @var{source} @var{destination} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9184 +#: guix-git/doc/guix.texi:9245 msgid "[#:log (current-output-port)] [#:follow-symlinks? #f] @ [#:copy-file copy-file] [#:keep-mtime? #f] [#:keep-permissions? #t] Copy @var{source} directory to @var{destination}. Follow symlinks if @var{follow-symlinks?} is true; otherwise, just preserve them. Call @var{copy-file} to copy regular files. When @var{keep-mtime?} is true, keep the modification time of the files in @var{source} on those of @var{destination}. When @var{keep-permissions?} is true, preserve file permissions. Write verbose output to the @var{log} port." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9186 +#: guix-git/doc/guix.texi:9247 #, no-wrap msgid "{Scheme Procedure} delete-file-recursively @var{dir} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9191 +#: guix-git/doc/guix.texi:9252 msgid "[#:follow-mounts? #f] Delete @var{dir} recursively, like @command{rm -rf}, without following symlinks. Don't follow mount points either, unless @var{follow-mounts?} is true. Report but ignore errors." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9193 +#: guix-git/doc/guix.texi:9254 #, no-wrap msgid "{Scheme Syntax} substitute* @var{file} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9198 +#: guix-git/doc/guix.texi:9259 msgid "((@var{regexp} @var{match-var}@dots{}) @var{body}@dots{}) @dots{} Substitute @var{regexp} in @var{file} by the string returned by @var{body}. @var{body} is evaluated with each @var{match-var} bound to the corresponding positional regexp sub-expression. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9205 +#: guix-git/doc/guix.texi:9266 #, no-wrap msgid "" "(substitute* file\n" @@ -17374,71 +17501,71 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9211 +#: guix-git/doc/guix.texi:9272 msgid "Here, anytime a line of @var{file} contains @code{hello}, it is replaced by @code{good morning}. Anytime a line of @var{file} matches the second regexp, @code{all} is bound to the complete match, @code{letters} is bound to the first sub-expression, and @code{end} is bound to the last one." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9214 +#: guix-git/doc/guix.texi:9275 msgid "When one of the @var{match-var} is @code{_}, no variable is bound to the corresponding match substring." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9217 +#: guix-git/doc/guix.texi:9278 msgid "Alternatively, @var{file} may be a list of file names, in which case they are all subject to the substitutions." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9220 +#: guix-git/doc/guix.texi:9281 msgid "Be careful about using @code{$} to match the end of a line; by itself it won't match the terminating newline of a line." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9222 +#: guix-git/doc/guix.texi:9283 #, no-wrap msgid "File Search" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9224 +#: guix-git/doc/guix.texi:9285 #, no-wrap msgid "file, searching" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9226 +#: guix-git/doc/guix.texi:9287 msgid "This section documents procedures to search and filter files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9227 +#: guix-git/doc/guix.texi:9288 #, no-wrap msgid "{Scheme Procedure} file-name-predicate @var{regexp}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9230 +#: guix-git/doc/guix.texi:9291 msgid "Return a predicate that returns true when passed a file name whose base name matches @var{regexp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9232 +#: guix-git/doc/guix.texi:9293 #, no-wrap msgid "{Scheme Procedure} find-files @var{dir} [@var{pred}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9243 +#: guix-git/doc/guix.texi:9304 msgid "[#:stat lstat] [#:directories? #f] [#:fail-on-error? #f] Return the lexicographically sorted list of files under @var{dir} for which @var{pred} returns true. @var{pred} is passed two arguments: the absolute file name, and its stat buffer; the default predicate always returns true. @var{pred} can also be a regular expression, in which case it is equivalent to @code{(file-name-predicate @var{pred})}. @var{stat} is used to obtain file information; using @code{lstat} means that symlinks are not followed. If @var{directories?} is true, then directories will also be included. If @var{fail-on-error?} is true, raise an exception upon error." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9247 +#: guix-git/doc/guix.texi:9308 msgid "Here are a few examples where we assume that the current directory is the root of the Guix source tree:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9252 +#: guix-git/doc/guix.texi:9313 #, no-wrap msgid "" ";; List all the regular files in the current directory.\n" @@ -17448,7 +17575,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9256 +#: guix-git/doc/guix.texi:9317 #, no-wrap msgid "" ";; List all the .scm files under gnu/services.\n" @@ -17458,7 +17585,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9260 +#: guix-git/doc/guix.texi:9321 #, no-wrap msgid "" ";; List ar files in the current directory.\n" @@ -17467,45 +17594,45 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9262 +#: guix-git/doc/guix.texi:9323 #, no-wrap msgid "{Scheme Procedure} which @var{program}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9265 +#: guix-git/doc/guix.texi:9326 msgid "Return the complete file name for @var{program} as found in @code{$PATH}, or @code{#f} if @var{program} could not be found." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9267 +#: guix-git/doc/guix.texi:9328 #, no-wrap msgid "{Scheme Procedure} search-input-file @var{inputs} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9268 +#: guix-git/doc/guix.texi:9329 #, no-wrap msgid "{Scheme Procedure} search-input-directory @var{inputs} @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9273 +#: guix-git/doc/guix.texi:9334 msgid "Return the complete file name for @var{name} as found in @var{inputs}; @code{search-input-file} searches for a regular file and @code{search-input-directory} searches for a directory. If @var{name} could not be found, an exception is raised." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9277 +#: guix-git/doc/guix.texi:9338 msgid "Here, @var{inputs} must be an association list like @code{inputs} and @code{native-inputs} as available to build phases (@pxref{Build Phases})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9281 +#: guix-git/doc/guix.texi:9342 msgid "Here is a (simplified) example of how @code{search-input-file} is used in a build phase of the @code{wireguard-tools} package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9290 +#: guix-git/doc/guix.texi:9351 #, no-wrap msgid "" "(add-after 'install 'wrap-wg-quick\n" @@ -17517,35 +17644,216 @@ msgid "" " `(\"PATH\" \":\" prefix ,(list coreutils))))))\n" msgstr "" +#. type: subsection +#: guix-git/doc/guix.texi:9353 +#, no-wrap +msgid "Program Invocation" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:9355 +#, no-wrap +msgid "program invocation, from Scheme" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:9356 +#, no-wrap +msgid "invoking programs, from Scheme" +msgstr "" + #. type: Plain text -#: guix-git/doc/guix.texi:9301 +#: guix-git/doc/guix.texi:9360 +msgid "You'll find handy procedures to spawn processes in this module, essentially convenient wrappers around Guile's @code{system*} (@pxref{Processes, @code{system*},, guile, GNU Guile Reference Manual})." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9361 +#, no-wrap +msgid "{Scheme Procedure} invoke @var{program} @var{args}@dots{}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9365 +msgid "Invoke @var{program} with the given @var{args}. Raise an @code{&invoke-error} exception if the exit code is non-zero; otherwise return @code{#t}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9369 +msgid "The advantage compared to @code{system*} is that you do not need to check the return value. This reduces boilerplate in shell-script-like snippets for instance in package build phases." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9371 +#, no-wrap +msgid "{Scheme Procedure} invoke-error? @var{c}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9373 +msgid "Return true if @var{c} is an @code{&invoke-error} condition." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9375 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-program @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9376 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-arguments @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9377 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-exit-status @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9378 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-term-signal @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9379 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-stop-signal @var{c}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9381 +msgid "Access specific fields of @var{c}, an @code{&invoke-error} condition." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9383 +#, no-wrap +msgid "{Scheme Procedure} report-invoke-error @var{c} [@var{port}]" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9386 +msgid "Report to @var{port} (by default the current error port) about @var{c}, an @code{&invoke-error} condition, in a human-friendly way." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9388 +msgid "Typical usage would look like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9392 +#, no-wrap +msgid "" +"(use-modules (srfi srfi-34) ;for 'guard'\n" +" (guix build utils))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9396 +#, no-wrap +msgid "" +"(guard (c ((invoke-error? c)\n" +" (report-invoke-error c)))\n" +" (invoke \"date\" \"--imaginary-option\"))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9398 +#, no-wrap +msgid "@print{} command \"date\" \"--imaginary-option\" failed with status 1\n" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9401 +#, no-wrap +msgid "{Scheme Procedure} invoke/quiet @var{program} @var{args}@dots{}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9407 +msgid "Invoke @var{program} with @var{args} and capture @var{program}'s standard output and standard error. If @var{program} succeeds, print nothing and return the unspecified value; otherwise, raise a @code{&message} error condition that includes the status code and the output of @var{program}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9409 +#, fuzzy +#| msgid "For example:" +msgid "Here's an example:" +msgstr "Esimerkiksi:" + +#. type: lisp +#: guix-git/doc/guix.texi:9414 +#, no-wrap +msgid "" +"(use-modules (srfi srfi-34) ;for 'guard'\n" +" (srfi srfi-35) ;for 'message-condition?'\n" +" (guix build utils))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9419 +#, no-wrap +msgid "" +"(guard (c ((message-condition? c)\n" +" (display (condition-message c))))\n" +" (invoke/quiet \"date\") ;all is fine\n" +" (invoke/quiet \"date\" \"--imaginary-option\"))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9421 +#, no-wrap +msgid "" +"@print{} 'date --imaginary-option' exited with status 1; output follows:\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9424 +#, no-wrap +msgid "" +" date: unrecognized option '--imaginary-option'\n" +" Try 'date --help' for more information.\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9436 msgid "The @code{(guix build utils)} also contains tools to manipulate build phases as used by build systems (@pxref{Build Systems}). Build phases are represented as association lists or ``alists'' (@pxref{Association Lists,,, guile, GNU Guile Reference Manual}) where each key is a symbol naming the phase and the associated value is a procedure (@pxref{Build Phases})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9305 +#: guix-git/doc/guix.texi:9440 msgid "Guile core and the @code{(srfi srfi-1)} module both provide tools to manipulate alists. The @code{(guix build utils)} module complements those with tools written with build phases in mind." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9306 +#: guix-git/doc/guix.texi:9441 #, no-wrap msgid "build phases, modifying" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9307 +#: guix-git/doc/guix.texi:9442 #, no-wrap msgid "{Scheme Syntax} modify-phases @var{phases} @var{clause}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9310 +#: guix-git/doc/guix.texi:9445 msgid "Modify @var{phases} sequentially as per each @var{clause}, which may have one of the following forms:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9316 +#: guix-git/doc/guix.texi:9451 #, no-wrap msgid "" "(delete @var{old-phase-name})\n" @@ -17555,17 +17863,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9320 +#: guix-git/doc/guix.texi:9455 msgid "Where every @var{phase-name} above is an expression evaluating to a symbol, and @var{new-phase} an expression evaluating to a procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9331 +#: guix-git/doc/guix.texi:9466 msgid "The example below is taken from the definition of the @code{grep} package. It adds a phase to run after the @code{install} phase, called @code{fix-egrep-and-fgrep}. That phase is a procedure (@code{lambda*} is for anonymous procedures) that takes a @code{#:outputs} keyword argument and ignores extra keyword arguments (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual}, for more on @code{lambda*} and optional and keyword arguments.) The phase uses @code{substitute*} to modify the installed @file{egrep} and @file{fgrep} scripts so that they refer to @code{grep} by its absolute file name:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9345 +#: guix-git/doc/guix.texi:9480 #, no-wrap msgid "" "(modify-phases %standard-phases\n" @@ -17583,12 +17891,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9352 +#: guix-git/doc/guix.texi:9487 msgid "In the example below, phases are modified in two ways: the standard @code{configure} phase is deleted, presumably because the package does not have a @file{configure} script or anything similar, and the default @code{install} phase is replaced by one that manually copies the executable files to be installed:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9365 +#: guix-git/doc/guix.texi:9500 #, no-wrap msgid "" "(modify-phases %standard-phases\n" @@ -17605,377 +17913,606 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9373 +#: guix-git/doc/guix.texi:9507 +#, fuzzy, no-wrap +#| msgid "search" +msgid "search path" +msgstr "haku" + +#. type: Plain text +#: guix-git/doc/guix.texi:9514 +msgid "Many programs and libraries look for input data in a @dfn{search path}, a list of directories: shells like Bash look for executables in the command search path, a C compiler looks for @file{.h} files in its header search path, the Python interpreter looks for @file{.py} files in its search path, the spell checker has a search path for dictionaries, and so on." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9522 +msgid "Search paths can usually be defined or overridden @i{via} environment variables (@pxref{Environment Variables,,, libc, The GNU C Library Reference Manual}). For example, the search paths mentioned above can be changed by defining the @env{PATH}, @env{C_INCLUDE_PATH}, @env{PYTHONPATH} (or @env{GUIX_PYTHONPATH}), and @env{DICPATH} environment variables---you know, all these something-PATH variables that you need to get right or things ``won't be found''." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9532 +msgid "You may have noticed from the command line that Guix ``knows'' which search path environment variables should be defined, and how. When you install packages in your default profile, the file @file{~/.guix-profile/etc/profile} is created, which you can ``source'' from the shell to set those variables. Likewise, if you ask @command{guix shell} to create an environment containing Python and NumPy, a Python library, and if you pass it the @option{--search-paths} option, it will tell you about @env{PATH} and @env{GUIX_PYTHONPATH} (@pxref{Invoking guix shell}):" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9537 +#, no-wrap +msgid "" +"$ guix shell python python-numpy --pure --search-paths\n" +"export PATH=\"/gnu/store/@dots{}-profile/bin\"\n" +"export GUIX_PYTHONPATH=\"/gnu/store/@dots{}-profile/lib/python3.9/site-packages\"\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9541 +msgid "When you omit @option{--search-paths}, it defines these environment variables right away, such that Python can readily find NumPy:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9550 +#, no-wrap +msgid "" +"$ guix shell python python-numpy -- python3\n" +"Python 3.9.6 (default, Jan 1 1970, 00:00:01)\n" +"[GCC 10.3.0] on linux\n" +"Type \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n" +">>> import numpy\n" +">>> numpy.version.version\n" +"'1.20.3'\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9555 +msgid "For this to work, the definition of the @code{python} package @emph{declares} the search path it cares about and its associated environment variable, @env{GUIX_PYTHONPATH}. It looks like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9565 +#, no-wrap +msgid "" +"(package\n" +" (name \"python\")\n" +" (version \"3.9.9\")\n" +" ;; some fields omitted...\n" +" (native-search-paths\n" +" (list (search-path-specification\n" +" (variable \"GUIX_PYTHONPATH\")\n" +" (files (list \"lib/python/3.9/site-packages\"))))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9580 +msgid "What this @code{native-search-paths} field says is that, when the @code{python} package is used, the @env{GUIX_PYTHONPATH} environment variable must be defined to include all the @file{lib/python/3.9/site-packages} sub-directories encountered in its environment. (The @code{native-} bit means that, if we are in a cross-compilation environment, only native inputs may be added to the search path; @pxref{package Reference, @code{search-paths}}.) In the NumPy example above, the profile where @code{python} appears contains exactly one such sub-directory, and @env{GUIX_PYTHONPATH} is set to that. When there are several @file{lib/python/3.9/site-packages}---this is the case in package build environments---they are all added to @env{GUIX_PYTHONPATH}, separated by colons (@code{:})." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9587 +msgid "Notice that @env{GUIX_PYTHONPATH} is specified as part of the definition of the @code{python} package, and @emph{not} as part of that of @code{python-numpy}. This is because this environment variable ``belongs'' to Python, not NumPy: Python actually reads the value of that variable and honors it." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9591 +msgid "Corollary: if you create a profile that does not contain @code{python}, @code{GUIX_PYTHONPATH} will @emph{not} be defined, even if it contains packages that provide @file{.py} files:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9595 +#, no-wrap +msgid "" +"$ guix shell python-numpy --search-paths --pure\n" +"export PATH=\"/gnu/store/@dots{}-profile/bin\"\n" +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9599 +msgid "This makes a lot of sense if we look at this profile in isolation: no software in this profile would read @env{GUIX_PYTHONPATH}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9609 +msgid "Of course, there are many variations on that theme: some packages honor more than one search path, some use separators other than colon, some accumulate several directories in their search path, and so on. A more complex example is the search path of libxml2: the value of the @env{XML_CATALOG_FILES} environment variable is space-separated, it must contain a list of @file{catalog.xml} files (not directories), which are to be found in @file{xml} sub-directories---nothing less. The search path specification looks like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9621 +#, no-wrap +msgid "" +"(package\n" +" (name \"libxml2\")\n" +" ;; some fields omitted\n" +" (native-search-paths\n" +" (list (search-path-specification\n" +" (variable \"XML_CATALOG_FILES\")\n" +" (separator \" \")\n" +" (files '(\"xml\"))\n" +" (file-pattern \"^catalog\\\\.xml$\")\n" +" (file-type 'regular)))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9624 +msgid "Worry not, search path specifications are usually not this tricky." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9628 +msgid "The @code{(guix search-paths)} module defines the data type of search path specifications and a number of helper procedures. Below is the reference of search path specifications." +msgstr "" + +#. type: deftp +#: guix-git/doc/guix.texi:9629 +#, no-wrap +msgid "{Data Type} search-path-specification" +msgstr "" + +#. type: deftp +#: guix-git/doc/guix.texi:9631 +msgid "The data type for search path specifications." +msgstr "" + +#. type: code{#1} +#: guix-git/doc/guix.texi:9633 +#, no-wrap +msgid "variable" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9635 +msgid "The name of the environment variable for this search path (a string)." +msgstr "" + +#. type: code{#1} +#: guix-git/doc/guix.texi:9636 guix-git/doc/guix.texi:17482 +#, no-wrap +msgid "files" +msgstr "tiedostot" + +#. type: table +#: guix-git/doc/guix.texi:9639 +msgid "The list of sub-directories (strings) that should be added to the search path." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9640 +#, no-wrap +msgid "@code{separator} (default: @code{\":\"})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9642 +msgid "The string used to separate search path components." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9650 +msgid "As a special case, a @code{separator} value of @code{#f} specifies a ``single-component search path''---in other words, a search path that cannot contain more than one element. This is useful in some cases, such as the @code{SSL_CERT_DIR} variable (honored by OpenSSL, cURL, and a few other packages) or the @code{ASPELL_DICT_DIR} variable (honored by the GNU Aspell spell checker), both of which must point to a single directory." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9651 +#, no-wrap +msgid "@code{file-type} (default: @code{'directory})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9655 +msgid "The type of file being matched---@code{'directory} or @code{'regular}, though it can be any symbol returned by @code{stat:type} (@pxref{File System, @code{stat},, guile, GNU Guile Reference Manual})." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9658 +msgid "In the libxml2 example above, we would match regular files; in the Python example, we would match directories." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9659 +#, no-wrap +msgid "@code{file-pattern} (default: @code{#f})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9663 +msgid "This must be either @code{#f} or a regular expression specifying files to be matched @emph{within} the sub-directories specified by the @code{files} field." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9665 +msgid "Again, the libxml2 example shows a situation where this is needed." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9671 +msgid "How do you turn search path specifications on one hand and a bunch of directories on the other hand in a set of environment variable definitions? That's the job of @code{evaluate-search-paths}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9672 +#, no-wrap +msgid "{Scheme Procedure} evaluate-search-paths @var{search-paths} @" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9678 +msgid "@var{directories} [@var{getenv}] Evaluate @var{search-paths}, a list of search-path specifications, for @var{directories}, a list of directory names, and return a list of specification/value pairs. Use @var{getenv} to determine the current settings and report only settings not already effective." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9682 +msgid "The @code{(guix profiles)} provides a higher-level helper procedure, @code{load-profile}, that sets the environment variables of a profile." +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:9687 #, no-wrap msgid "store items" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9374 +#: guix-git/doc/guix.texi:9688 #, no-wrap msgid "store paths" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9385 +#: guix-git/doc/guix.texi:9699 msgid "Conceptually, the @dfn{store} is the place where derivations that have been built successfully are stored---by default, @file{/gnu/store}. Sub-directories in the store are referred to as @dfn{store items} or sometimes @dfn{store paths}. The store has an associated database that contains information such as the store paths referred to by each store path, and the list of @emph{valid} store items---results of successful builds. This database resides in @file{@var{localstatedir}/guix/db}, where @var{localstatedir} is the state directory specified @i{via} @option{--localstatedir} at configure time, usually @file{/var}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9390 +#: guix-git/doc/guix.texi:9704 msgid "The store is @emph{always} accessed by the daemon on behalf of its clients (@pxref{Invoking guix-daemon}). To manipulate the store, clients connect to the daemon over a Unix-domain socket, send requests to it, and read the result---these are remote procedure calls, or RPCs." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:9395 +#: guix-git/doc/guix.texi:9709 msgid "Users must @emph{never} modify files under @file{/gnu/store} directly. This would lead to inconsistencies and break the immutability assumptions of Guix's functional model (@pxref{Introduction})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:9399 +#: guix-git/doc/guix.texi:9713 msgid "@xref{Invoking guix gc, @command{guix gc --verify}}, for information on how to check the integrity of the store and attempt recovery from accidental modifications." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9406 +#: guix-git/doc/guix.texi:9720 msgid "The @code{(guix store)} module provides procedures to connect to the daemon, and to perform RPCs. These are described below. By default, @code{open-connection}, and thus all the @command{guix} commands, connect to the local daemon or to the URI specified by the @env{GUIX_DAEMON_SOCKET} environment variable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9407 +#: guix-git/doc/guix.texi:9721 #, no-wrap msgid "{Environment Variable} GUIX_DAEMON_SOCKET" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9412 +#: guix-git/doc/guix.texi:9726 msgid "When set, the value of this variable should be a file name or a URI designating the daemon endpoint. When it is a file name, it denotes a Unix-domain socket to connect to. In addition to file names, the supported URI schemes are:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:9414 guix-git/doc/guix.texi:26183 +#: guix-git/doc/guix.texi:9728 guix-git/doc/guix.texi:26520 #, no-wrap msgid "file" msgstr "tiedosto" #. type: itemx -#: guix-git/doc/guix.texi:9415 +#: guix-git/doc/guix.texi:9729 #, no-wrap msgid "unix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:9419 +#: guix-git/doc/guix.texi:9733 msgid "These are for Unix-domain sockets. @code{file:///var/guix/daemon-socket/socket} is equivalent to @file{/var/guix/daemon-socket/socket}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:9428 +#: guix-git/doc/guix.texi:9742 msgid "These URIs denote connections over TCP/IP, without encryption nor authentication of the remote host. The URI must specify the host name and optionally a port number (by default port 44146 is used):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9431 +#: guix-git/doc/guix.texi:9745 #, no-wrap msgid "guix://master.guix.example.org:1234\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:9436 +#: guix-git/doc/guix.texi:9750 msgid "This setup is suitable on local networks, such as clusters, where only trusted nodes may connect to the build daemon at @code{master.guix.example.org}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:9440 +#: guix-git/doc/guix.texi:9754 msgid "The @option{--listen} option of @command{guix-daemon} can be used to instruct it to listen for TCP connections (@pxref{Invoking guix-daemon, @option{--listen}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:9441 +#: guix-git/doc/guix.texi:9755 #, no-wrap msgid "ssh" msgstr "ssh" #. type: cindex -#: guix-git/doc/guix.texi:9442 +#: guix-git/doc/guix.texi:9756 #, no-wrap msgid "SSH access to build daemons" msgstr "" #. type: table -#: guix-git/doc/guix.texi:9448 +#: guix-git/doc/guix.texi:9762 msgid "These URIs allow you to connect to a remote daemon over SSH@. This feature requires Guile-SSH (@pxref{Requirements}) and a working @command{guile} binary in @env{PATH} on the destination machine. It supports public key and GSSAPI authentication. A typical URL might look like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9451 +#: guix-git/doc/guix.texi:9765 #, no-wrap msgid "ssh://charlie@@guix.example.org:22\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:9455 +#: guix-git/doc/guix.texi:9769 msgid "As for @command{guix copy}, the usual OpenSSH client configuration files are honored (@pxref{Invoking guix copy})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9458 +#: guix-git/doc/guix.texi:9772 msgid "Additional URI schemes may be supported in the future." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:9465 +#: guix-git/doc/guix.texi:9779 msgid "The ability to connect to remote build daemons is considered experimental as of @value{VERSION}. Please get in touch with us to share any problems or suggestions you may have (@pxref{Contributing})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9468 +#: guix-git/doc/guix.texi:9782 #, no-wrap msgid "{Scheme Procedure} open-connection [@var{uri}] [#:reserve-space? #t]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9473 +#: guix-git/doc/guix.texi:9787 msgid "Connect to the daemon over the Unix-domain socket at @var{uri} (a string). When @var{reserve-space?} is true, instruct it to reserve a little bit of extra space on the file system so that the garbage collector can still operate should the disk become full. Return a server object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9476 +#: guix-git/doc/guix.texi:9790 msgid "@var{file} defaults to @code{%default-socket-path}, which is the normal location given the options that were passed to @command{configure}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9478 +#: guix-git/doc/guix.texi:9792 #, no-wrap msgid "{Scheme Procedure} close-connection @var{server}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9480 +#: guix-git/doc/guix.texi:9794 msgid "Close the connection to @var{server}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9482 +#: guix-git/doc/guix.texi:9796 #, no-wrap msgid "{Scheme Variable} current-build-output-port" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9485 +#: guix-git/doc/guix.texi:9799 msgid "This variable is bound to a SRFI-39 parameter, which refers to the port where build and error logs sent by the daemon should be written." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9489 +#: guix-git/doc/guix.texi:9803 msgid "Procedures that make RPCs all take a server object as their first argument." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9490 +#: guix-git/doc/guix.texi:9804 #, no-wrap msgid "{Scheme Procedure} valid-path? @var{server} @var{path}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9491 +#: guix-git/doc/guix.texi:9805 #, no-wrap msgid "invalid store items" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9496 +#: guix-git/doc/guix.texi:9810 msgid "Return @code{#t} when @var{path} designates a valid store item and @code{#f} otherwise (an invalid item may exist on disk but still be invalid, for instance because it is the result of an aborted or failed build)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9499 +#: guix-git/doc/guix.texi:9813 msgid "A @code{&store-protocol-error} condition is raised if @var{path} is not prefixed by the store directory (@file{/gnu/store})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9501 +#: guix-git/doc/guix.texi:9815 #, no-wrap msgid "{Scheme Procedure} add-text-to-store @var{server} @var{name} @var{text} [@var{references}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9505 +#: guix-git/doc/guix.texi:9819 msgid "Add @var{text} under file @var{name} in the store, and return its store path. @var{references} is the list of store paths referred to by the resulting store path." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9507 +#: guix-git/doc/guix.texi:9821 #, no-wrap msgid "{Scheme Procedure} build-derivations @var{store} @var{derivations} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9512 +#: guix-git/doc/guix.texi:9826 msgid "[@var{mode}] Build @var{derivations}, a list of @code{} objects, @file{.drv} file names, or derivation/output pairs, using the specified @var{mode}---@code{(build-mode normal)} by default." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9518 +#: guix-git/doc/guix.texi:9832 msgid "Note that the @code{(guix monads)} module provides a monad as well as monadic versions of the above procedures, with the goal of making it more convenient to work with code that accesses the store (@pxref{The Store Monad})." msgstr "" #. type: i{#1} -#: guix-git/doc/guix.texi:9521 +#: guix-git/doc/guix.texi:9835 msgid "This section is currently incomplete." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9525 +#: guix-git/doc/guix.texi:9839 #, no-wrap msgid "derivations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9529 +#: guix-git/doc/guix.texi:9843 msgid "Low-level build actions and the environment in which they are performed are represented by @dfn{derivations}. A derivation contains the following pieces of information:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9534 +#: guix-git/doc/guix.texi:9848 msgid "The outputs of the derivation---derivations produce at least one file or directory in the store, but may produce more." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9536 +#: guix-git/doc/guix.texi:9850 #, no-wrap msgid "build-time dependencies" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9537 +#: guix-git/doc/guix.texi:9851 #, no-wrap msgid "dependencies, build-time" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9541 +#: guix-git/doc/guix.texi:9855 msgid "The inputs of the derivations---i.e., its build-time dependencies---which may be other derivations or plain files in the store (patches, build scripts, etc.)." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9544 +#: guix-git/doc/guix.texi:9858 msgid "The system type targeted by the derivation---e.g., @code{x86_64-linux}." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9548 +#: guix-git/doc/guix.texi:9862 msgid "The file name of a build script in the store, along with the arguments to be passed." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9551 +#: guix-git/doc/guix.texi:9865 msgid "A list of environment variables to be defined." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9554 +#: guix-git/doc/guix.texi:9868 #, no-wrap msgid "derivation path" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9562 +#: guix-git/doc/guix.texi:9876 msgid "Derivations allow clients of the daemon to communicate build actions to the store. They exist in two forms: as an in-memory representation, both on the client- and daemon-side, and as files in the store whose name end in @file{.drv}---these files are referred to as @dfn{derivation paths}. Derivations paths can be passed to the @code{build-derivations} procedure to perform the build actions they prescribe (@pxref{The Store})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9563 +#: guix-git/doc/guix.texi:9877 #, no-wrap msgid "fixed-output derivations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9570 +#: guix-git/doc/guix.texi:9884 msgid "Operations such as file downloads and version-control checkouts for which the expected content hash is known in advance are modeled as @dfn{fixed-output derivations}. Unlike regular derivations, the outputs of a fixed-output derivation are independent of its inputs---e.g., a source code download produces the same result regardless of the download method and tools being used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:9571 guix-git/doc/guix.texi:13341 +#: guix-git/doc/guix.texi:9885 guix-git/doc/guix.texi:13698 #, no-wrap msgid "references" msgstr "viitteet" #. type: cindex -#: guix-git/doc/guix.texi:9572 +#: guix-git/doc/guix.texi:9886 #, no-wrap msgid "run-time dependencies" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9573 +#: guix-git/doc/guix.texi:9887 #, no-wrap msgid "dependencies, run-time" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9580 +#: guix-git/doc/guix.texi:9894 msgid "The outputs of derivations---i.e., the build results---have a set of @dfn{references}, as reported by the @code{references} RPC or the @command{guix gc --references} command (@pxref{Invoking guix gc}). References are the set of run-time dependencies of the build results. References are a subset of the inputs of the derivation; this subset is automatically computed by the build daemon by scanning all the files in the outputs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9585 +#: guix-git/doc/guix.texi:9899 msgid "The @code{(guix derivations)} module provides a representation of derivations as Scheme objects, along with procedures to create and otherwise manipulate derivations. The lowest-level primitive to create a derivation is the @code{derivation} procedure:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9586 +#: guix-git/doc/guix.texi:9900 #, no-wrap msgid "{Scheme Procedure} derivation @var{store} @var{name} @var{builder} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9595 +#: guix-git/doc/guix.texi:9909 msgid "@var{args} [#:outputs '(\"out\")] [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:inputs '()] [#:env-vars '()] @ [#:system (%current-system)] [#:references-graphs #f] @ [#:allowed-references #f] [#:disallowed-references #f] @ [#:leaked-env-vars #f] [#:local-build? #f] @ [#:substitutable? #t] [#:properties '()] Build a derivation with the given arguments, and return the resulting @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9602 +#: guix-git/doc/guix.texi:9916 msgid "When @var{hash} and @var{hash-algo} are given, a @dfn{fixed-output derivation} is created---i.e., one whose result is known in advance, such as a file download. If, in addition, @var{recursive?} is true, then that fixed output may be an executable file or a directory and @var{hash} must be the hash of an archive containing this output." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9607 +#: guix-git/doc/guix.texi:9921 msgid "When @var{references-graphs} is true, it must be a list of file name/store path pairs. In that case, the reference graph of each store path is exported in the build environment in the corresponding file, in a simple text format." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9612 +#: guix-git/doc/guix.texi:9926 msgid "When @var{allowed-references} is true, it must be a list of store items or outputs that the derivation's output may refer to. Likewise, @var{disallowed-references}, if true, must be a list of things the outputs may @emph{not} refer to." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9619 +#: guix-git/doc/guix.texi:9933 msgid "When @var{leaked-env-vars} is true, it must be a list of strings denoting environment variables that are allowed to ``leak'' from the daemon's environment to the build environment. This is only applicable to fixed-output derivations---i.e., when @var{hash} is true. The main use is to allow variables such as @code{http_proxy} to be passed to derivations that download files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9624 +#: guix-git/doc/guix.texi:9938 msgid "When @var{local-build?} is true, declare that the derivation is not a good candidate for offloading and should rather be built locally (@pxref{Daemon Offload Setup}). This is the case for small derivations where the costs of data transfers would outweigh the benefits." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9629 +#: guix-git/doc/guix.texi:9943 msgid "When @var{substitutable?} is false, declare that substitutes of the derivation's output should not be used (@pxref{Substitutes}). This is useful, for instance, when building packages that capture details of the host CPU instruction set." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9632 +#: guix-git/doc/guix.texi:9946 msgid "@var{properties} must be an association list describing ``properties'' of the derivation. It is kept as-is, uninterpreted, in the derivation." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9638 +#: guix-git/doc/guix.texi:9952 msgid "Here's an example with a shell script as its builder, assuming @var{store} is an open connection to the daemon, and @var{bash} points to a Bash executable in the store:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9643 +#: guix-git/doc/guix.texi:9957 #, no-wrap msgid "" "(use-modules (guix utils)\n" @@ -17985,7 +18522,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9652 +#: guix-git/doc/guix.texi:9966 #, no-wrap msgid "" "(let ((builder ; add the Bash script to the store\n" @@ -17999,48 +18536,48 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9659 +#: guix-git/doc/guix.texi:9973 msgid "As can be guessed, this primitive is cumbersome to use directly. A better approach is to write build scripts in Scheme, of course! The best course of action for that is to write the build code as a ``G-expression'', and to pass it to @code{gexp->derivation}. For more information, @pxref{G-Expressions}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9664 +#: guix-git/doc/guix.texi:9978 msgid "Once upon a time, @code{gexp->derivation} did not exist and constructing derivations with build code written in Scheme was achieved with @code{build-expression->derivation}, documented below. This procedure is now deprecated in favor of the much nicer @code{gexp->derivation}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9665 +#: guix-git/doc/guix.texi:9979 #, no-wrap msgid "{Scheme Procedure} build-expression->derivation @var{store} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9681 +#: guix-git/doc/guix.texi:9995 msgid "@var{name} @var{exp} @ [#:system (%current-system)] [#:inputs '()] @ [#:outputs '(\"out\")] [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:env-vars '()] [#:modules '()] @ [#:references-graphs #f] [#:allowed-references #f] @ [#:disallowed-references #f] @ [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f] Return a derivation that executes Scheme expression @var{exp} as a builder for derivation @var{name}. @var{inputs} must be a list of @code{(name drv-path sub-drv)} tuples; when @var{sub-drv} is omitted, @code{\"out\"} is assumed. @var{modules} is a list of names of Guile modules from the current search path to be copied in the store, compiled, and made available in the load path during the execution of @var{exp}---e.g., @code{((guix build utils) (guix build gnu-build-system))}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9689 +#: guix-git/doc/guix.texi:10003 msgid "@var{exp} is evaluated in an environment where @code{%outputs} is bound to a list of output/path pairs, and where @code{%build-inputs} is bound to a list of string/output-path pairs made from @var{inputs}. Optionally, @var{env-vars} is a list of string pairs specifying the name and value of environment variables visible to the builder. The builder terminates by passing the result of @var{exp} to @code{exit}; thus, when @var{exp} returns @code{#f}, the build is considered to have failed." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9693 +#: guix-git/doc/guix.texi:10007 msgid "@var{exp} is built using @var{guile-for-build} (a derivation). When @var{guile-for-build} is omitted or is @code{#f}, the value of the @code{%guile-for-build} fluid is used instead." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9698 +#: guix-git/doc/guix.texi:10012 msgid "See the @code{derivation} procedure for the meaning of @var{references-graphs}, @var{allowed-references}, @var{disallowed-references}, @var{local-build?}, and @var{substitutable?}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9703 +#: guix-git/doc/guix.texi:10017 msgid "Here's an example of a single-output derivation that creates a directory containing one file:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9711 +#: guix-git/doc/guix.texi:10025 #, no-wrap msgid "" "(let ((builder '(let ((out (assoc-ref %outputs \"out\")))\n" @@ -18053,51 +18590,51 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9713 +#: guix-git/doc/guix.texi:10027 #, no-wrap msgid "@result{} # @dots{}>\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9719 +#: guix-git/doc/guix.texi:10033 #, no-wrap msgid "monad" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9725 +#: guix-git/doc/guix.texi:10039 msgid "The procedures that operate on the store described in the previous sections all take an open connection to the build daemon as their first argument. Although the underlying model is functional, they either have side effects or depend on the current state of the store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9731 +#: guix-git/doc/guix.texi:10045 msgid "The former is inconvenient: the connection to the build daemon has to be carried around in all those functions, making it impossible to compose functions that do not take that parameter with functions that do. The latter can be problematic: since store operations have side effects and/or depend on external state, they have to be properly sequenced." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9732 +#: guix-git/doc/guix.texi:10046 #, no-wrap msgid "monadic values" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9733 +#: guix-git/doc/guix.texi:10047 #, no-wrap msgid "monadic functions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9743 +#: guix-git/doc/guix.texi:10057 msgid "This is where the @code{(guix monads)} module comes in. This module provides a framework for working with @dfn{monads}, and a particularly useful monad for our uses, the @dfn{store monad}. Monads are a construct that allows two things: associating ``context'' with values (in our case, the context is the store), and building sequences of computations (here computations include accesses to the store). Values in a monad---values that carry this additional context---are called @dfn{monadic values}; procedures that return such values are called @dfn{monadic procedures}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9745 +#: guix-git/doc/guix.texi:10059 msgid "Consider this ``normal'' procedure:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9754 +#: guix-git/doc/guix.texi:10068 #, no-wrap msgid "" "(define (sh-symlink store)\n" @@ -18110,12 +18647,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9758 +#: guix-git/doc/guix.texi:10072 msgid "Using @code{(guix monads)} and @code{(guix gexp)}, it may be rewritten as a monadic function:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9766 +#: guix-git/doc/guix.texi:10080 #, no-wrap msgid "" "(define (sh-symlink)\n" @@ -18127,17 +18664,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9773 +#: guix-git/doc/guix.texi:10087 msgid "There are several things to note in the second version: the @code{store} parameter is now implicit and is ``threaded'' in the calls to the @code{package->derivation} and @code{gexp->derivation} monadic procedures, and the monadic value returned by @code{package->derivation} is @dfn{bound} using @code{mlet} instead of plain @code{let}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9777 +#: guix-git/doc/guix.texi:10091 msgid "As it turns out, the call to @code{package->derivation} can even be omitted since it will take place implicitly, as we will see later (@pxref{G-Expressions}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9783 +#: guix-git/doc/guix.texi:10097 #, no-wrap msgid "" "(define (sh-symlink)\n" @@ -18147,12 +18684,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9792 +#: guix-git/doc/guix.texi:10106 msgid "Calling the monadic @code{sh-symlink} has no effect. As someone once said, ``you exit a monad like you exit a building on fire: by running''. So, to exit the monad and get the desired effect, one must use @code{run-with-store}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9796 +#: guix-git/doc/guix.texi:10110 #, no-wrap msgid "" "(run-with-store (open-connection) (sh-symlink))\n" @@ -18160,12 +18697,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9802 +#: guix-git/doc/guix.texi:10116 msgid "Note that the @code{(guix monad-repl)} module extends the Guile REPL with new ``meta-commands'' to make it easier to deal with monadic procedures: @code{run-in-store}, and @code{enter-store-monad}. The former is used to ``run'' a single monadic value through the store:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9806 +#: guix-git/doc/guix.texi:10120 #, no-wrap msgid "" "scheme@@(guile-user)> ,run-in-store (package->derivation hello)\n" @@ -18173,12 +18710,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9810 +#: guix-git/doc/guix.texi:10124 msgid "The latter enters a recursive REPL, where all the return values are automatically run through the store:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9819 +#: guix-git/doc/guix.texi:10133 #, no-wrap msgid "" "scheme@@(guile-user)> ,enter-store-monad\n" @@ -18191,50 +18728,50 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9824 +#: guix-git/doc/guix.texi:10138 msgid "Note that non-monadic values cannot be returned in the @code{store-monad} REPL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9827 +#: guix-git/doc/guix.texi:10141 msgid "The main syntactic forms to deal with monads in general are provided by the @code{(guix monads)} module and are described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9828 +#: guix-git/doc/guix.texi:10142 #, no-wrap msgid "{Scheme Syntax} with-monad @var{monad} @var{body} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9831 +#: guix-git/doc/guix.texi:10145 msgid "Evaluate any @code{>>=} or @code{return} forms in @var{body} as being in @var{monad}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9833 +#: guix-git/doc/guix.texi:10147 #, no-wrap msgid "{Scheme Syntax} return @var{val}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9835 +#: guix-git/doc/guix.texi:10149 msgid "Return a monadic value that encapsulates @var{val}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9837 +#: guix-git/doc/guix.texi:10151 #, no-wrap msgid "{Scheme Syntax} >>= @var{mval} @var{mproc} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9844 +#: guix-git/doc/guix.texi:10158 msgid "@dfn{Bind} monadic value @var{mval}, passing its ``contents'' to monadic procedures @var{mproc}@dots{}@footnote{This operation is commonly referred to as ``bind'', but that name denotes an unrelated procedure in Guile. Thus we use this somewhat cryptic symbol inherited from the Haskell language.}. There can be one @var{mproc} or several of them, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9852 +#: guix-git/doc/guix.texi:10166 #, no-wrap msgid "" "(run-with-state\n" @@ -18247,7 +18784,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9855 +#: guix-git/doc/guix.texi:10169 #, no-wrap msgid "" "@result{} 4\n" @@ -18255,99 +18792,99 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9858 +#: guix-git/doc/guix.texi:10172 #, no-wrap msgid "{Scheme Syntax} mlet @var{monad} ((@var{var} @var{mval}) ...) @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9860 +#: guix-git/doc/guix.texi:10174 msgid "@var{body} ..." msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9860 +#: guix-git/doc/guix.texi:10174 #, no-wrap msgid "{Scheme Syntax} mlet* @var{monad} ((@var{var} @var{mval}) ...) @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9872 +#: guix-git/doc/guix.texi:10186 msgid "@var{body} ... Bind the variables @var{var} to the monadic values @var{mval} in @var{body}, which is a sequence of expressions. As with the bind operator, this can be thought of as ``unpacking'' the raw, non-monadic value ``contained'' in @var{mval} and making @var{var} refer to that raw, non-monadic value within the scope of the @var{body}. The form (@var{var} -> @var{val}) binds @var{var} to the ``normal'' value @var{val}, as per @code{let}. The binding operations occur in sequence from left to right. The last expression of @var{body} must be a monadic expression, and its result will become the result of the @code{mlet} or @code{mlet*} when run in the @var{monad}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9875 +#: guix-git/doc/guix.texi:10189 msgid "@code{mlet*} is to @code{mlet} what @code{let*} is to @code{let} (@pxref{Local Bindings,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9877 +#: guix-git/doc/guix.texi:10191 #, no-wrap msgid "{Scheme System} mbegin @var{monad} @var{mexp} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9881 +#: guix-git/doc/guix.texi:10195 msgid "Bind @var{mexp} and the following monadic expressions in sequence, returning the result of the last expression. Every expression in the sequence must be a monadic expression." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9885 +#: guix-git/doc/guix.texi:10199 msgid "This is akin to @code{mlet}, except that the return values of the monadic expressions are ignored. In that sense, it is analogous to @code{begin}, but applied to monadic expressions." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9887 +#: guix-git/doc/guix.texi:10201 #, no-wrap msgid "{Scheme System} mwhen @var{condition} @var{mexp0} @var{mexp*} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9892 +#: guix-git/doc/guix.texi:10206 msgid "When @var{condition} is true, evaluate the sequence of monadic expressions @var{mexp0}..@var{mexp*} as in an @code{mbegin}. When @var{condition} is false, return @code{*unspecified*} in the current monad. Every expression in the sequence must be a monadic expression." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9894 +#: guix-git/doc/guix.texi:10208 #, no-wrap msgid "{Scheme System} munless @var{condition} @var{mexp0} @var{mexp*} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9899 +#: guix-git/doc/guix.texi:10213 msgid "When @var{condition} is false, evaluate the sequence of monadic expressions @var{mexp0}..@var{mexp*} as in an @code{mbegin}. When @var{condition} is true, return @code{*unspecified*} in the current monad. Every expression in the sequence must be a monadic expression." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9901 +#: guix-git/doc/guix.texi:10215 #, no-wrap msgid "state monad" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9905 +#: guix-git/doc/guix.texi:10219 msgid "The @code{(guix monads)} module provides the @dfn{state monad}, which allows an additional value---the state---to be @emph{threaded} through monadic procedure calls." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9906 +#: guix-git/doc/guix.texi:10220 #, no-wrap msgid "{Scheme Variable} %state-monad" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9909 +#: guix-git/doc/guix.texi:10223 msgid "The state monad. Procedures in the state monad can access and change the state that is threaded." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9913 +#: guix-git/doc/guix.texi:10227 msgid "Consider the example below. The @code{square} procedure returns a value in the state monad. It returns the square of its argument, but also increments the current state value:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9920 +#: guix-git/doc/guix.texi:10234 #, no-wrap msgid "" "(define (square x)\n" @@ -18359,7 +18896,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9924 +#: guix-git/doc/guix.texi:10238 #, no-wrap msgid "" "(run-with-state (sequence %state-monad (map square (iota 3))) 0)\n" @@ -18368,147 +18905,147 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9928 +#: guix-git/doc/guix.texi:10242 msgid "When ``run'' through @code{%state-monad}, we obtain that additional state value, which is the number of @code{square} calls." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9930 +#: guix-git/doc/guix.texi:10244 #, no-wrap msgid "{Monadic Procedure} current-state" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9932 +#: guix-git/doc/guix.texi:10246 msgid "Return the current state as a monadic value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9934 +#: guix-git/doc/guix.texi:10248 #, no-wrap msgid "{Monadic Procedure} set-current-state @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9937 +#: guix-git/doc/guix.texi:10251 msgid "Set the current state to @var{value} and return the previous state as a monadic value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9939 +#: guix-git/doc/guix.texi:10253 #, no-wrap msgid "{Monadic Procedure} state-push @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9942 +#: guix-git/doc/guix.texi:10256 msgid "Push @var{value} to the current state, which is assumed to be a list, and return the previous state as a monadic value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9944 +#: guix-git/doc/guix.texi:10258 #, no-wrap msgid "{Monadic Procedure} state-pop" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9947 +#: guix-git/doc/guix.texi:10261 msgid "Pop a value from the current state and return it as a monadic value. The state is assumed to be a list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9949 +#: guix-git/doc/guix.texi:10263 #, no-wrap msgid "{Scheme Procedure} run-with-state @var{mval} [@var{state}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9952 +#: guix-git/doc/guix.texi:10266 msgid "Run monadic value @var{mval} starting with @var{state} as the initial state. Return two values: the resulting value, and the resulting state." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9956 +#: guix-git/doc/guix.texi:10270 msgid "The main interface to the store monad, provided by the @code{(guix store)} module, is as follows." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9957 +#: guix-git/doc/guix.texi:10271 #, no-wrap msgid "{Scheme Variable} %store-monad" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9959 +#: guix-git/doc/guix.texi:10273 msgid "The store monad---an alias for @code{%state-monad}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9963 +#: guix-git/doc/guix.texi:10277 msgid "Values in the store monad encapsulate accesses to the store. When its effect is needed, a value of the store monad must be ``evaluated'' by passing it to the @code{run-with-store} procedure (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9965 +#: guix-git/doc/guix.texi:10279 #, no-wrap msgid "{Scheme Procedure} run-with-store @var{store} @var{mval} [#:guile-for-build] [#:system (%current-system)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9968 +#: guix-git/doc/guix.texi:10282 msgid "Run @var{mval}, a monadic value in the store monad, in @var{store}, an open store connection." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9970 +#: guix-git/doc/guix.texi:10284 #, no-wrap msgid "{Monadic Procedure} text-file @var{name} @var{text} [@var{references}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9974 +#: guix-git/doc/guix.texi:10288 msgid "Return as a monadic value the absolute file name in the store of the file containing @var{text}, a string. @var{references} is a list of store items that the resulting text file refers to; it defaults to the empty list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9976 +#: guix-git/doc/guix.texi:10290 #, no-wrap msgid "{Monadic Procedure} binary-file @var{name} @var{data} [@var{references}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9980 +#: guix-git/doc/guix.texi:10294 msgid "Return as a monadic value the absolute file name in the store of the file containing @var{data}, a bytevector. @var{references} is a list of store items that the resulting binary file refers to; it defaults to the empty list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9982 +#: guix-git/doc/guix.texi:10296 #, no-wrap msgid "{Monadic Procedure} interned-file @var{file} [@var{name}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9987 +#: guix-git/doc/guix.texi:10301 msgid "[#:recursive? #t] [#:select? (const #t)] Return the name of @var{file} once interned in the store. Use @var{name} as its store name, or the basename of @var{file} if @var{name} is omitted." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9991 guix-git/doc/guix.texi:10414 +#: guix-git/doc/guix.texi:10305 guix-git/doc/guix.texi:10728 msgid "When @var{recursive?} is true, the contents of @var{file} are added recursively; if @var{file} designates a flat file and @var{recursive?} is true, its contents are added, and its permission bits are kept." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9996 guix-git/doc/guix.texi:10419 +#: guix-git/doc/guix.texi:10310 guix-git/doc/guix.texi:10733 msgid "When @var{recursive?} is true, call @code{(@var{select?} @var{file} @var{stat})} for each directory entry, where @var{file} is the entry's absolute file name and @var{stat} is the result of @code{lstat}; exclude entries for which @var{select?} does not return true." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9998 +#: guix-git/doc/guix.texi:10312 msgid "The example below adds a file to the store, under two different names:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10004 +#: guix-git/doc/guix.texi:10318 #, no-wrap msgid "" "(run-with-store (open-connection)\n" @@ -18519,120 +19056,120 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10006 +#: guix-git/doc/guix.texi:10320 #, no-wrap msgid "@result{} (\"/gnu/store/rwm@dots{}-README\" \"/gnu/store/44i@dots{}-LEGU-MIN\")\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10012 +#: guix-git/doc/guix.texi:10326 msgid "The @code{(guix packages)} module exports the following package-related monadic procedures:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10013 +#: guix-git/doc/guix.texi:10327 #, no-wrap msgid "{Monadic Procedure} package-file @var{package} [@var{file}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10021 +#: guix-git/doc/guix.texi:10335 msgid "[#:system (%current-system)] [#:target #f] @ [#:output \"out\"] Return as a monadic value in the absolute file name of @var{file} within the @var{output} directory of @var{package}. When @var{file} is omitted, return the name of the @var{output} directory of @var{package}. When @var{target} is true, use it as a cross-compilation target triplet." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10025 +#: guix-git/doc/guix.texi:10339 msgid "Note that this procedure does @emph{not} build @var{package}. Thus, the result might or might not designate an existing file. We recommend not using this procedure unless you know what you are doing." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10027 +#: guix-git/doc/guix.texi:10341 #, no-wrap msgid "{Monadic Procedure} package->derivation @var{package} [@var{system}]" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:10028 +#: guix-git/doc/guix.texi:10342 #, no-wrap msgid "{Monadic Procedure} package->cross-derivation @var{package} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10032 +#: guix-git/doc/guix.texi:10346 msgid "@var{target} [@var{system}] Monadic version of @code{package-derivation} and @code{package-cross-derivation} (@pxref{Defining Packages})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10038 +#: guix-git/doc/guix.texi:10352 #, no-wrap msgid "G-expression" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10039 +#: guix-git/doc/guix.texi:10353 #, no-wrap msgid "build code quoting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10045 +#: guix-git/doc/guix.texi:10359 msgid "So we have ``derivations'', which represent a sequence of build actions to be performed to produce an item in the store (@pxref{Derivations}). These build actions are performed when asking the daemon to actually build the derivations; they are run by the daemon in a container (@pxref{Invoking guix-daemon})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10048 +#: guix-git/doc/guix.texi:10362 #, no-wrap msgid "strata of code" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10060 +#: guix-git/doc/guix.texi:10374 msgid "It should come as no surprise that we like to write these build actions in Scheme. When we do that, we end up with two @dfn{strata} of Scheme code@footnote{The term @dfn{stratum} in this context was coined by Manuel Serrano et al.@: in the context of their work on Hop. Oleg Kiselyov, who has written insightful @url{http://okmij.org/ftp/meta-programming/#meta-scheme, essays and code on this topic}, refers to this kind of code generation as @dfn{staging}.}: the ``host code''---code that defines packages, talks to the daemon, etc.---and the ``build code''---code that actually performs build actions, such as making directories, invoking @command{make}, and so on (@pxref{Build Phases})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10067 +#: guix-git/doc/guix.texi:10381 msgid "To describe a derivation and its build actions, one typically needs to embed build code inside host code. It boils down to manipulating build code as data, and the homoiconicity of Scheme---code has a direct representation as data---comes in handy for that. But we need more than the normal @code{quasiquote} mechanism in Scheme to construct build expressions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10076 +#: guix-git/doc/guix.texi:10390 msgid "The @code{(guix gexp)} module implements @dfn{G-expressions}, a form of S-expressions adapted to build expressions. G-expressions, or @dfn{gexps}, consist essentially of three syntactic forms: @code{gexp}, @code{ungexp}, and @code{ungexp-splicing} (or simply: @code{#~}, @code{#$}, and @code{#$@@}), which are comparable to @code{quasiquote}, @code{unquote}, and @code{unquote-splicing}, respectively (@pxref{Expression Syntax, @code{quasiquote},, guile, GNU Guile Reference Manual}). However, there are major differences:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:10081 +#: guix-git/doc/guix.texi:10395 msgid "Gexps are meant to be written to a file and run or manipulated by other processes." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:10086 +#: guix-git/doc/guix.texi:10400 msgid "When a high-level object such as a package or derivation is unquoted inside a gexp, the result is as if its output file name had been introduced." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:10091 +#: guix-git/doc/guix.texi:10405 msgid "Gexps carry information about the packages or derivations they refer to, and these dependencies are automatically added as inputs to the build processes that use them." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10093 guix-git/doc/guix.texi:10650 +#: guix-git/doc/guix.texi:10407 guix-git/doc/guix.texi:10964 #, no-wrap msgid "lowering, of high-level objects in gexps" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10103 +#: guix-git/doc/guix.texi:10417 msgid "This mechanism is not limited to package and derivation objects: @dfn{compilers} able to ``lower'' other high-level objects to derivations or files in the store can be defined, such that these objects can also be inserted into gexps. For example, a useful type of high-level objects that can be inserted in a gexp is ``file-like objects'', which make it easy to add files to the store and to refer to them in derivations and such (see @code{local-file} and @code{plain-file} below)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10105 +#: guix-git/doc/guix.texi:10419 msgid "To illustrate the idea, here is an example of a gexp:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10113 +#: guix-git/doc/guix.texi:10427 #, no-wrap msgid "" "(define build-exp\n" @@ -18644,34 +19181,34 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10118 +#: guix-git/doc/guix.texi:10432 msgid "This gexp can be passed to @code{gexp->derivation}; we obtain a derivation that builds a directory containing exactly one symlink to @file{/gnu/store/@dots{}-coreutils-8.22/bin/ls}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10121 +#: guix-git/doc/guix.texi:10435 #, no-wrap msgid "(gexp->derivation \"the-thing\" build-exp)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10129 +#: guix-git/doc/guix.texi:10443 msgid "As one would expect, the @code{\"/gnu/store/@dots{}-coreutils-8.22\"} string is substituted to the reference to the @var{coreutils} package in the actual build code, and @var{coreutils} is automatically made an input to the derivation. Likewise, @code{#$output} (equivalent to @code{(ungexp output)}) is replaced by a string containing the directory name of the output of the derivation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10130 +#: guix-git/doc/guix.texi:10444 #, no-wrap msgid "cross compilation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10136 +#: guix-git/doc/guix.texi:10450 msgid "In a cross-compilation context, it is useful to distinguish between references to the @emph{native} build of a package---that can run on the host---versus references to cross builds of a package. To that end, the @code{#+} plays the same role as @code{#$}, but is a reference to a native package build:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10147 +#: guix-git/doc/guix.texi:10461 #, no-wrap msgid "" "(gexp->derivation \"vi\"\n" @@ -18686,29 +19223,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10153 +#: guix-git/doc/guix.texi:10467 msgid "In the example above, the native build of @var{coreutils} is used, so that @command{ln} can actually run on the host; but then the cross-compiled build of @var{emacs} is referenced." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10154 +#: guix-git/doc/guix.texi:10468 #, no-wrap msgid "imported modules, for gexps" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:10155 +#: guix-git/doc/guix.texi:10469 #, no-wrap msgid "with-imported-modules" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10160 +#: guix-git/doc/guix.texi:10474 msgid "Another gexp feature is @dfn{imported modules}: sometimes you want to be able to use certain Guile modules from the ``host environment'' in the gexp, so those modules should be imported in the ``build environment''. The @code{with-imported-modules} form allows you to express that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10171 +#: guix-git/doc/guix.texi:10485 #, no-wrap msgid "" "(let ((build (with-imported-modules '((guix build utils))\n" @@ -18723,29 +19260,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10177 +#: guix-git/doc/guix.texi:10491 msgid "In this example, the @code{(guix build utils)} module is automatically pulled into the isolated build environment of our gexp, such that @code{(use-modules (guix build utils))} works as expected." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10178 +#: guix-git/doc/guix.texi:10492 #, no-wrap msgid "module closure" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:10179 +#: guix-git/doc/guix.texi:10493 #, no-wrap msgid "source-module-closure" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10186 +#: guix-git/doc/guix.texi:10500 msgid "Usually you want the @emph{closure} of the module to be imported---i.e., the module itself and all the modules it depends on---rather than just the module; failing to do that, attempts to use the module will fail because of missing dependent modules. The @code{source-module-closure} procedure computes the closure of a module by looking at its source file headers, which comes in handy in this case:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10189 +#: guix-git/doc/guix.texi:10503 #, no-wrap msgid "" "(use-modules (guix modules)) ;for 'source-module-closure'\n" @@ -18753,7 +19290,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10198 +#: guix-git/doc/guix.texi:10512 #, no-wrap msgid "" "(with-imported-modules (source-module-closure\n" @@ -18767,24 +19304,24 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10200 +#: guix-git/doc/guix.texi:10514 #, no-wrap msgid "extensions, for gexps" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:10201 +#: guix-git/doc/guix.texi:10515 #, no-wrap msgid "with-extensions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10206 +#: guix-git/doc/guix.texi:10520 msgid "In the same vein, sometimes you want to import not just pure-Scheme modules, but also ``extensions'' such as Guile bindings to C libraries or other ``full-blown'' packages. Say you need the @code{guile-json} package available on the build side, here's how you would do it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10209 +#: guix-git/doc/guix.texi:10523 #, no-wrap msgid "" "(use-modules (gnu packages guile)) ;for 'guile-json'\n" @@ -18792,7 +19329,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10215 +#: guix-git/doc/guix.texi:10529 #, no-wrap msgid "" "(with-extensions (list guile-json)\n" @@ -18803,184 +19340,184 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10218 +#: guix-git/doc/guix.texi:10532 msgid "The syntactic form to construct gexps is summarized below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10219 +#: guix-git/doc/guix.texi:10533 #, no-wrap msgid "{Scheme Syntax} #~@var{exp}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:10220 +#: guix-git/doc/guix.texi:10534 #, no-wrap msgid "{Scheme Syntax} (gexp @var{exp})" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10223 +#: guix-git/doc/guix.texi:10537 msgid "Return a G-expression containing @var{exp}. @var{exp} may contain one or more of the following forms:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10225 +#: guix-git/doc/guix.texi:10539 #, no-wrap msgid "#$@var{obj}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10226 +#: guix-git/doc/guix.texi:10540 #, no-wrap msgid "(ungexp @var{obj})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10231 +#: guix-git/doc/guix.texi:10545 msgid "Introduce a reference to @var{obj}. @var{obj} may have one of the supported types, for example a package or a derivation, in which case the @code{ungexp} form is replaced by its output file name---e.g., @code{\"/gnu/store/@dots{}-coreutils-8.22}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10234 +#: guix-git/doc/guix.texi:10548 msgid "If @var{obj} is a list, it is traversed and references to supported objects are substituted similarly." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10237 +#: guix-git/doc/guix.texi:10551 msgid "If @var{obj} is another gexp, its contents are inserted and its dependencies are added to those of the containing gexp." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10239 +#: guix-git/doc/guix.texi:10553 msgid "If @var{obj} is another kind of object, it is inserted as is." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10240 +#: guix-git/doc/guix.texi:10554 #, no-wrap msgid "#$@var{obj}:@var{output}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10241 +#: guix-git/doc/guix.texi:10555 #, no-wrap msgid "(ungexp @var{obj} @var{output})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10245 +#: guix-git/doc/guix.texi:10559 msgid "This is like the form above, but referring explicitly to the @var{output} of @var{obj}---this is useful when @var{obj} produces multiple outputs (@pxref{Packages with Multiple Outputs})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10246 +#: guix-git/doc/guix.texi:10560 #, no-wrap msgid "#+@var{obj}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10247 +#: guix-git/doc/guix.texi:10561 #, no-wrap msgid "#+@var{obj}:output" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10248 +#: guix-git/doc/guix.texi:10562 #, no-wrap msgid "(ungexp-native @var{obj})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10249 +#: guix-git/doc/guix.texi:10563 #, no-wrap msgid "(ungexp-native @var{obj} @var{output})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10252 +#: guix-git/doc/guix.texi:10566 msgid "Same as @code{ungexp}, but produces a reference to the @emph{native} build of @var{obj} when used in a cross compilation context." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10253 +#: guix-git/doc/guix.texi:10567 #, no-wrap msgid "#$output[:@var{output}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10254 +#: guix-git/doc/guix.texi:10568 #, no-wrap msgid "(ungexp output [@var{output}])" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10257 +#: guix-git/doc/guix.texi:10571 msgid "Insert a reference to derivation output @var{output}, or to the main output when @var{output} is omitted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10259 +#: guix-git/doc/guix.texi:10573 msgid "This only makes sense for gexps passed to @code{gexp->derivation}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10260 +#: guix-git/doc/guix.texi:10574 #, no-wrap msgid "#$@@@var{lst}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10261 +#: guix-git/doc/guix.texi:10575 #, no-wrap msgid "(ungexp-splicing @var{lst})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10264 +#: guix-git/doc/guix.texi:10578 msgid "Like the above, but splices the contents of @var{lst} inside the containing list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10265 +#: guix-git/doc/guix.texi:10579 #, no-wrap msgid "#+@@@var{lst}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10266 +#: guix-git/doc/guix.texi:10580 #, no-wrap msgid "(ungexp-native-splicing @var{lst})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10269 +#: guix-git/doc/guix.texi:10583 msgid "Like the above, but refers to native builds of the objects listed in @var{lst}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10274 +#: guix-git/doc/guix.texi:10588 msgid "G-expressions created by @code{gexp} or @code{#~} are run-time objects of the @code{gexp?} type (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10276 +#: guix-git/doc/guix.texi:10590 #, no-wrap msgid "{Scheme Syntax} with-imported-modules @var{modules} @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10279 +#: guix-git/doc/guix.texi:10593 msgid "Mark the gexps defined in @var{body}@dots{} as requiring @var{modules} in their execution environment." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10283 +#: guix-git/doc/guix.texi:10597 msgid "Each item in @var{modules} can be the name of a module, such as @code{(guix build utils)}, or it can be a module name, followed by an arrow, followed by a file-like object:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10289 +#: guix-git/doc/guix.texi:10603 #, no-wrap msgid "" "`((guix build utils)\n" @@ -18990,80 +19527,80 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10294 +#: guix-git/doc/guix.texi:10608 msgid "In the example above, the first two modules are taken from the search path, and the last one is created from the given file-like object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10298 +#: guix-git/doc/guix.texi:10612 msgid "This form has @emph{lexical} scope: it has an effect on the gexps directly defined in @var{body}@dots{}, but not on those defined, say, in procedures called from @var{body}@dots{}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10300 +#: guix-git/doc/guix.texi:10614 #, no-wrap msgid "{Scheme Syntax} with-extensions @var{extensions} @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10305 +#: guix-git/doc/guix.texi:10619 msgid "Mark the gexps defined in @var{body}@dots{} as requiring @var{extensions} in their build and execution environment. @var{extensions} is typically a list of package objects such as those defined in the @code{(gnu packages guile)} module." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10310 +#: guix-git/doc/guix.texi:10624 msgid "Concretely, the packages listed in @var{extensions} are added to the load path while compiling imported modules in @var{body}@dots{}; they are also added to the load path of the gexp returned by @var{body}@dots{}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10312 +#: guix-git/doc/guix.texi:10626 #, no-wrap msgid "{Scheme Procedure} gexp? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10314 +#: guix-git/doc/guix.texi:10628 msgid "Return @code{#t} if @var{obj} is a G-expression." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10320 +#: guix-git/doc/guix.texi:10634 msgid "G-expressions are meant to be written to disk, either as code building some derivation, or as plain files in the store. The monadic procedures below allow you to do that (@pxref{The Store Monad}, for more information about monads)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10321 +#: guix-git/doc/guix.texi:10635 #, no-wrap msgid "{Monadic Procedure} gexp->derivation @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10339 +#: guix-git/doc/guix.texi:10653 msgid "[#:system (%current-system)] [#:target #f] [#:graft? #t] @ [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:env-vars '()] [#:modules '()] @ [#:module-path @code{%load-path}] @ [#:effective-version \"2.2\"] @ [#:references-graphs #f] [#:allowed-references #f] @ [#:disallowed-references #f] @ [#:leaked-env-vars #f] @ [#:script-name (string-append @var{name} \"-builder\")] @ [#:deprecation-warnings #f] @ [#:local-build? #f] [#:substitutable? #t] @ [#:properties '()] [#:guile-for-build #f] Return a derivation @var{name} that runs @var{exp} (a gexp) with @var{guile-for-build} (a derivation) on @var{system}; @var{exp} is stored in a file called @var{script-name}. When @var{target} is true, it is used as the cross-compilation target triplet for packages referred to by @var{exp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10347 +#: guix-git/doc/guix.texi:10661 msgid "@var{modules} is deprecated in favor of @code{with-imported-modules}. Its meaning is to make @var{modules} available in the evaluation context of @var{exp}; @var{modules} is a list of names of Guile modules searched in @var{module-path} to be copied in the store, compiled, and made available in the load path during the execution of @var{exp}---e.g., @code{((guix build utils) (guix build gnu-build-system))}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10350 +#: guix-git/doc/guix.texi:10664 msgid "@var{effective-version} determines the string to use when adding extensions of @var{exp} (see @code{with-extensions}) to the search path---e.g., @code{\"2.2\"}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10353 +#: guix-git/doc/guix.texi:10667 msgid "@var{graft?} determines whether packages referred to by @var{exp} should be grafted when applicable." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10356 +#: guix-git/doc/guix.texi:10670 msgid "When @var{references-graphs} is true, it must be a list of tuples of one of the following forms:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10363 +#: guix-git/doc/guix.texi:10677 #, no-wrap msgid "" "(@var{file-name} @var{package})\n" @@ -19074,38 +19611,38 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10369 +#: guix-git/doc/guix.texi:10683 msgid "The right-hand-side of each element of @var{references-graphs} is automatically made an input of the build process of @var{exp}. In the build environment, each @var{file-name} contains the reference graph of the corresponding item, in a simple text format." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10375 +#: guix-git/doc/guix.texi:10689 msgid "@var{allowed-references} must be either @code{#f} or a list of output names and packages. In the latter case, the list denotes store items that the result is allowed to refer to. Any reference to another store item will lead to a build error. Similarly for @var{disallowed-references}, which can list items that must not be referenced by the outputs." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10378 +#: guix-git/doc/guix.texi:10692 msgid "@var{deprecation-warnings} determines whether to show deprecation warnings while compiling modules. It can be @code{#f}, @code{#t}, or @code{'detailed}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10380 +#: guix-git/doc/guix.texi:10694 msgid "The other arguments are as for @code{derivation} (@pxref{Derivations})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10382 +#: guix-git/doc/guix.texi:10696 #, no-wrap msgid "file-like objects" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10387 +#: guix-git/doc/guix.texi:10701 msgid "The @code{local-file}, @code{plain-file}, @code{computed-file}, @code{program-file}, and @code{scheme-file} procedures below return @dfn{file-like objects}. That is, when unquoted in a G-expression, these objects lead to a file in the store. Consider this G-expression:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10391 +#: guix-git/doc/guix.texi:10705 #, no-wrap msgid "" "#~(system* #$(file-append glibc \"/sbin/nscd\") \"-f\"\n" @@ -19113,76 +19650,76 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10400 +#: guix-git/doc/guix.texi:10714 msgid "The effect here is to ``intern'' @file{/tmp/my-nscd.conf} by copying it to the store. Once expanded, for instance @i{via} @code{gexp->derivation}, the G-expression refers to that copy under @file{/gnu/store}; thus, modifying or removing the file in @file{/tmp} does not have any effect on what the G-expression does. @code{plain-file} can be used similarly; it differs in that the file content is directly passed as a string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10401 +#: guix-git/doc/guix.texi:10715 #, no-wrap msgid "{Scheme Procedure} local-file @var{file} [@var{name}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10410 +#: guix-git/doc/guix.texi:10724 msgid "[#:recursive? #f] [#:select? (const #t)] Return an object representing local file @var{file} to add to the store; this object can be used in a gexp. If @var{file} is a literal string denoting a relative file name, it is looked up relative to the source file where it appears; if @var{file} is not a literal string, it is looked up relative to the current working directory at run time. @var{file} will be added to the store under @var{name}--by default the base name of @var{file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10422 +#: guix-git/doc/guix.texi:10736 msgid "This is the declarative counterpart of the @code{interned-file} monadic procedure (@pxref{The Store Monad, @code{interned-file}})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10424 +#: guix-git/doc/guix.texi:10738 #, no-wrap msgid "{Scheme Procedure} plain-file @var{name} @var{content}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10427 +#: guix-git/doc/guix.texi:10741 msgid "Return an object representing a text file called @var{name} with the given @var{content} (a string or a bytevector) to be added to the store." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10429 +#: guix-git/doc/guix.texi:10743 msgid "This is the declarative counterpart of @code{text-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10431 +#: guix-git/doc/guix.texi:10745 #, no-wrap msgid "{Scheme Procedure} computed-file @var{name} @var{gexp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10438 +#: guix-git/doc/guix.texi:10752 msgid "[#:local-build? #t] [#:options '()] Return an object representing the store item @var{name}, a file or directory computed by @var{gexp}. When @var{local-build?} is true (the default), the derivation is built locally. @var{options} is a list of additional arguments to pass to @code{gexp->derivation}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10440 +#: guix-git/doc/guix.texi:10754 msgid "This is the declarative counterpart of @code{gexp->derivation}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10442 +#: guix-git/doc/guix.texi:10756 #, no-wrap msgid "{Monadic Procedure} gexp->script @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10448 +#: guix-git/doc/guix.texi:10762 msgid "[#:guile (default-guile)] [#:module-path %load-path] @ [#:system (%current-system)] [#:target #f] Return an executable script @var{name} that runs @var{exp} using @var{guile}, with @var{exp}'s imported modules in its search path. Look up @var{exp}'s modules in @var{module-path}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10451 +#: guix-git/doc/guix.texi:10765 msgid "The example below builds a script that simply invokes the @command{ls} command:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10454 +#: guix-git/doc/guix.texi:10768 #, no-wrap msgid "" "(use-modules (guix gexp) (gnu packages base))\n" @@ -19190,7 +19727,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10458 +#: guix-git/doc/guix.texi:10772 #, no-wrap msgid "" "(gexp->script \"list-files\"\n" @@ -19199,12 +19736,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10463 +#: guix-git/doc/guix.texi:10777 msgid "When ``running'' it through the store (@pxref{The Store Monad, @code{run-with-store}}), we obtain a derivation that produces an executable file @file{/gnu/store/@dots{}-list-files} along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10468 +#: guix-git/doc/guix.texi:10782 #, no-wrap msgid "" "#!/gnu/store/@dots{}-guile-2.0.11/bin/guile -ds\n" @@ -19213,76 +19750,76 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10471 +#: guix-git/doc/guix.texi:10785 #, no-wrap msgid "{Scheme Procedure} program-file @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10476 +#: guix-git/doc/guix.texi:10790 msgid "[#:guile #f] [#:module-path %load-path] Return an object representing the executable store item @var{name} that runs @var{gexp}. @var{guile} is the Guile package used to execute that script. Imported modules of @var{gexp} are looked up in @var{module-path}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10478 +#: guix-git/doc/guix.texi:10792 msgid "This is the declarative counterpart of @code{gexp->script}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10480 +#: guix-git/doc/guix.texi:10794 #, no-wrap msgid "{Monadic Procedure} gexp->file @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10487 +#: guix-git/doc/guix.texi:10801 msgid "[#:set-load-path? #t] [#:module-path %load-path] @ [#:splice? #f] @ [#:guile (default-guile)] Return a derivation that builds a file @var{name} containing @var{exp}. When @var{splice?} is true, @var{exp} is considered to be a list of expressions that will be spliced in the resulting file." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10492 +#: guix-git/doc/guix.texi:10806 msgid "When @var{set-load-path?} is true, emit code in the resulting file to set @code{%load-path} and @code{%load-compiled-path} to honor @var{exp}'s imported modules. Look up @var{exp}'s modules in @var{module-path}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10495 +#: guix-git/doc/guix.texi:10809 msgid "The resulting file holds references to all the dependencies of @var{exp} or a subset thereof." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10497 +#: guix-git/doc/guix.texi:10811 #, no-wrap msgid "{Scheme Procedure} scheme-file @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10501 +#: guix-git/doc/guix.texi:10815 msgid "[#:splice? #f] [#:set-load-path? #t] Return an object representing the Scheme file @var{name} that contains @var{exp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10503 +#: guix-git/doc/guix.texi:10817 msgid "This is the declarative counterpart of @code{gexp->file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10505 +#: guix-git/doc/guix.texi:10819 #, no-wrap msgid "{Monadic Procedure} text-file* @var{name} @var{text} @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10511 +#: guix-git/doc/guix.texi:10825 msgid "Return as a monadic value a derivation that builds a text file containing all of @var{text}. @var{text} may list, in addition to strings, objects of any type that can be used in a gexp: packages, derivations, local file objects, etc. The resulting store file holds references to all these." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10516 +#: guix-git/doc/guix.texi:10830 msgid "This variant should be preferred over @code{text-file} anytime the file to create will reference items from the store. This is typically the case when building a configuration file that embeds store file names, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10524 +#: guix-git/doc/guix.texi:10838 #, no-wrap msgid "" "(define (profile.sh)\n" @@ -19294,23 +19831,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10529 +#: guix-git/doc/guix.texi:10843 msgid "In this example, the resulting @file{/gnu/store/@dots{}-profile.sh} file will reference @var{coreutils}, @var{grep}, and @var{sed}, thereby preventing them from being garbage-collected during its lifetime." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10531 +#: guix-git/doc/guix.texi:10845 #, no-wrap msgid "{Scheme Procedure} mixed-text-file @var{name} @var{text} @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10535 +#: guix-git/doc/guix.texi:10849 msgid "Return an object representing store file @var{name} containing @var{text}. @var{text} is a sequence of strings and file-like objects, as in:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10539 +#: guix-git/doc/guix.texi:10853 #, no-wrap msgid "" "(mixed-text-file \"profile\"\n" @@ -19318,23 +19855,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10542 +#: guix-git/doc/guix.texi:10856 msgid "This is the declarative counterpart of @code{text-file*}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10544 +#: guix-git/doc/guix.texi:10858 #, no-wrap msgid "{Scheme Procedure} file-union @var{name} @var{files}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10549 +#: guix-git/doc/guix.texi:10863 msgid "Return a @code{} that builds a directory containing all of @var{files}. Each item in @var{files} must be a two-element list where the first element is the file name to use in the new directory, and the second element is a gexp denoting the target file. Here's an example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10556 +#: guix-git/doc/guix.texi:10870 #, no-wrap msgid "" "(file-union \"etc\"\n" @@ -19345,50 +19882,50 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10559 +#: guix-git/doc/guix.texi:10873 msgid "This yields an @code{etc} directory containing these two files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10561 +#: guix-git/doc/guix.texi:10875 #, no-wrap msgid "{Scheme Procedure} directory-union @var{name} @var{things}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10564 +#: guix-git/doc/guix.texi:10878 msgid "Return a directory that is the union of @var{things}, where @var{things} is a list of file-like objects denoting directories. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10567 +#: guix-git/doc/guix.texi:10881 #, no-wrap msgid "(directory-union \"guile+emacs\" (list guile emacs))\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10570 +#: guix-git/doc/guix.texi:10884 msgid "yields a directory that is the union of the @code{guile} and @code{emacs} packages." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10572 +#: guix-git/doc/guix.texi:10886 #, no-wrap msgid "{Scheme Procedure} file-append @var{obj} @var{suffix} @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10576 +#: guix-git/doc/guix.texi:10890 msgid "Return a file-like object that expands to the concatenation of @var{obj} and @var{suffix}, where @var{obj} is a lowerable object and each @var{suffix} is a string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10578 +#: guix-git/doc/guix.texi:10892 msgid "As an example, consider this gexp:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10583 +#: guix-git/doc/guix.texi:10897 #, no-wrap msgid "" "(gexp->script \"run-uname\"\n" @@ -19397,12 +19934,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10586 +#: guix-git/doc/guix.texi:10900 msgid "The same effect could be achieved with:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10591 +#: guix-git/doc/guix.texi:10905 #, no-wrap msgid "" "(gexp->script \"run-uname\"\n" @@ -19411,39 +19948,39 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10597 +#: guix-git/doc/guix.texi:10911 msgid "There is one difference though: in the @code{file-append} case, the resulting script contains the absolute file name as a string, whereas in the second case, the resulting script contains a @code{(string-append @dots{})} expression to construct the file name @emph{at run time}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10599 +#: guix-git/doc/guix.texi:10913 #, no-wrap msgid "{Scheme Syntax} let-system @var{system} @var{body}@dots{}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:10600 +#: guix-git/doc/guix.texi:10914 #, no-wrap msgid "{Scheme Syntax} let-system (@var{system} @var{target}) @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10603 +#: guix-git/doc/guix.texi:10917 msgid "Bind @var{system} to the currently targeted system---e.g., @code{\"x86_64-linux\"}---within @var{body}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10608 +#: guix-git/doc/guix.texi:10922 msgid "In the second case, additionally bind @var{target} to the current cross-compilation target---a GNU triplet such as @code{\"arm-linux-gnueabihf\"}---or @code{#f} if we are not cross-compiling." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10611 +#: guix-git/doc/guix.texi:10925 msgid "@code{let-system} is useful in the occasional case where the object spliced into the gexp depends on the target system, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10622 +#: guix-git/doc/guix.texi:10936 #, no-wrap msgid "" "#~(system*\n" @@ -19458,23 +19995,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10625 +#: guix-git/doc/guix.texi:10939 #, no-wrap msgid "{Scheme Syntax} with-parameters ((@var{parameter} @var{value}) @dots{}) @var{exp}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10631 +#: guix-git/doc/guix.texi:10945 msgid "This macro is similar to the @code{parameterize} form for dynamically-bound @dfn{parameters} (@pxref{Parameters,,, guile, GNU Guile Reference Manual}). The key difference is that it takes effect when the file-like object returned by @var{exp} is lowered to a derivation or store item." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10634 +#: guix-git/doc/guix.texi:10948 msgid "A typical use of @code{with-parameters} is to force the system in effect for a given object:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10638 +#: guix-git/doc/guix.texi:10952 #, no-wrap msgid "" "(with-parameters ((%current-system \"i686-linux\"))\n" @@ -19482,94 +20019,94 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10642 +#: guix-git/doc/guix.texi:10956 msgid "The example above returns an object that corresponds to the i686 build of Coreutils, regardless of the current value of @code{%current-system}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10649 +#: guix-git/doc/guix.texi:10963 msgid "Of course, in addition to gexps embedded in ``host'' code, there are also modules containing build tools. To make it clear that they are meant to be used in the build stratum, these modules are kept in the @code{(guix build @dots{})} name space." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10655 +#: guix-git/doc/guix.texi:10969 msgid "Internally, high-level objects are @dfn{lowered}, using their compiler, to either derivations or store items. For instance, lowering a package yields a derivation, and lowering a @code{plain-file} yields a store item. This is achieved using the @code{lower-object} monadic procedure." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10656 +#: guix-git/doc/guix.texi:10970 #, no-wrap msgid "{Monadic Procedure} lower-object @var{obj} [@var{system}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10662 +#: guix-git/doc/guix.texi:10976 msgid "[#:target #f] Return as a value in @code{%store-monad} the derivation or store item corresponding to @var{obj} for @var{system}, cross-compiling for @var{target} if @var{target} is true. @var{obj} must be an object that has an associated gexp compiler, such as a @code{}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10664 +#: guix-git/doc/guix.texi:10978 #, no-wrap msgid "{Procedure} gexp->approximate-sexp @var{gexp}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10672 +#: guix-git/doc/guix.texi:10986 msgid "Sometimes, it may be useful to convert a G-exp into a S-exp. For example, some linters (@pxref{Invoking guix lint}) peek into the build phases of a package to detect potential problems. This conversion can be achieved with this procedure. However, some information can be lost in the process. More specifically, lowerable objects will be silently replaced with some arbitrary object -- currently the list @code{(*approximate*)}, but this may change." msgstr "" #. type: section -#: guix-git/doc/guix.texi:10675 +#: guix-git/doc/guix.texi:10989 #, no-wrap msgid "Invoking @command{guix repl}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10677 +#: guix-git/doc/guix.texi:10991 #, no-wrap msgid "REPL, read-eval-print loop, script" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10687 +#: guix-git/doc/guix.texi:11001 msgid "The @command{guix repl} command makes it easier to program Guix in Guile by launching a Guile @dfn{read-eval-print loop} (REPL) for interactive programming (@pxref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}), or by running Guile scripts (@pxref{Running Guile Scripts,,, guile, GNU Guile Reference Manual}). Compared to just launching the @command{guile} command, @command{guix repl} guarantees that all the Guix modules and all its dependencies are available in the search path." msgstr "" #. type: example -#: guix-git/doc/guix.texi:10692 +#: guix-git/doc/guix.texi:11006 #, no-wrap msgid "guix repl @var{options} [@var{file} @var{args}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10696 +#: guix-git/doc/guix.texi:11010 msgid "When a @var{file} argument is provided, @var{file} is executed as a Guile scripts:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10699 +#: guix-git/doc/guix.texi:11013 #, no-wrap msgid "guix repl my-script.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10703 +#: guix-git/doc/guix.texi:11017 msgid "To pass arguments to the script, use @code{--} to prevent them from being interpreted as arguments to @command{guix repl} itself:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10706 +#: guix-git/doc/guix.texi:11020 #, no-wrap msgid "guix repl -- my-script.scm --input=foo.txt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10711 +#: guix-git/doc/guix.texi:11025 msgid "To make a script executable directly from the shell, using the guix executable that is on the user's search path, add the following two lines at the top of the script:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10715 +#: guix-git/doc/guix.texi:11029 #, no-wrap msgid "" "@code{#!/usr/bin/env -S guix repl --}\n" @@ -19577,12 +20114,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10718 +#: guix-git/doc/guix.texi:11032 msgid "Without a file name argument, a Guile REPL is started:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10724 +#: guix-git/doc/guix.texi:11038 #, no-wrap msgid "" "$ guix repl\n" @@ -19592,169 +20129,169 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10731 +#: guix-git/doc/guix.texi:11045 msgid "In addition, @command{guix repl} implements a simple machine-readable REPL protocol for use by @code{(guix inferior)}, a facility to interact with @dfn{inferiors}, separate processes running a potentially different revision of Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10733 +#: guix-git/doc/guix.texi:11047 msgid "The available options are as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10735 guix-git/doc/guix.texi:13411 +#: guix-git/doc/guix.texi:11049 guix-git/doc/guix.texi:13768 #, no-wrap msgid "--type=@var{type}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10736 guix-git/doc/guix.texi:13412 -#: guix-git/doc/guix.texi:35281 +#: guix-git/doc/guix.texi:11050 guix-git/doc/guix.texi:13769 +#: guix-git/doc/guix.texi:35725 #, no-wrap msgid "-t @var{type}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10738 +#: guix-git/doc/guix.texi:11052 msgid "Start a REPL of the given @var{TYPE}, which can be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10740 +#: guix-git/doc/guix.texi:11054 #, no-wrap msgid "guile" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10742 +#: guix-git/doc/guix.texi:11056 msgid "This is default, and it spawns a standard full-featured Guile REPL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10742 +#: guix-git/doc/guix.texi:11056 #, no-wrap msgid "machine" msgstr "kone" #. type: table -#: guix-git/doc/guix.texi:10745 +#: guix-git/doc/guix.texi:11059 msgid "Spawn a REPL that uses the machine-readable protocol. This is the protocol that the @code{(guix inferior)} module speaks." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10751 +#: guix-git/doc/guix.texi:11065 msgid "By default, @command{guix repl} reads from standard input and writes to standard output. When this option is passed, it will instead listen for connections on @var{endpoint}. Here are examples of valid options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10753 +#: guix-git/doc/guix.texi:11067 #, no-wrap msgid "--listen=tcp:37146" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10755 +#: guix-git/doc/guix.texi:11069 msgid "Accept connections on localhost on port 37146." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10756 +#: guix-git/doc/guix.texi:11070 #, no-wrap msgid "--listen=unix:/tmp/socket" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10758 +#: guix-git/doc/guix.texi:11072 msgid "Accept connections on the Unix-domain socket @file{/tmp/socket}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10760 guix-git/doc/guix.texi:10865 -#: guix-git/doc/guix.texi:12763 guix-git/doc/guix.texi:12840 -#: guix-git/doc/guix.texi:13046 guix-git/doc/guix.texi:13191 -#: guix-git/doc/guix.texi:13459 +#: guix-git/doc/guix.texi:11074 guix-git/doc/guix.texi:11179 +#: guix-git/doc/guix.texi:13078 guix-git/doc/guix.texi:13196 +#: guix-git/doc/guix.texi:13403 guix-git/doc/guix.texi:13548 +#: guix-git/doc/guix.texi:13816 #, no-wrap msgid "--load-path=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10761 guix-git/doc/guix.texi:10866 -#: guix-git/doc/guix.texi:12841 guix-git/doc/guix.texi:13047 -#: guix-git/doc/guix.texi:13192 guix-git/doc/guix.texi:13460 +#: guix-git/doc/guix.texi:11075 guix-git/doc/guix.texi:11180 +#: guix-git/doc/guix.texi:13197 guix-git/doc/guix.texi:13404 +#: guix-git/doc/guix.texi:13549 guix-git/doc/guix.texi:13817 #, no-wrap msgid "-L @var{directory}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10764 guix-git/doc/guix.texi:10869 -#: guix-git/doc/guix.texi:12766 guix-git/doc/guix.texi:12844 -#: guix-git/doc/guix.texi:13050 guix-git/doc/guix.texi:13195 -#: guix-git/doc/guix.texi:13463 +#: guix-git/doc/guix.texi:11078 guix-git/doc/guix.texi:11183 +#: guix-git/doc/guix.texi:13081 guix-git/doc/guix.texi:13200 +#: guix-git/doc/guix.texi:13407 guix-git/doc/guix.texi:13552 +#: guix-git/doc/guix.texi:13820 msgid "Add @var{directory} to the front of the package module search path (@pxref{Package Modules})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10767 +#: guix-git/doc/guix.texi:11081 msgid "This allows users to define their own packages and make them visible to the script or REPL." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10768 guix-git/doc/guix.texi:11390 +#: guix-git/doc/guix.texi:11082 guix-git/doc/guix.texi:11704 #, no-wrap msgid "-q" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10771 +#: guix-git/doc/guix.texi:11085 msgid "Inhibit loading of the @file{~/.guile} file. By default, that configuration file is loaded when spawning a @code{guile} REPL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10781 +#: guix-git/doc/guix.texi:11095 msgid "This section describes Guix command-line utilities. Some of them are primarily targeted at developers and users who write new package definitions, while others are more generally useful. They complement the Scheme programming interface of Guix in a convenient way." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10804 +#: guix-git/doc/guix.texi:11118 #, no-wrap msgid "package building" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:10805 +#: guix-git/doc/guix.texi:11119 #, no-wrap msgid "guix build" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10811 +#: guix-git/doc/guix.texi:11125 msgid "The @command{guix build} command builds packages or derivations and their dependencies, and prints the resulting store paths. Note that it does not modify the user's profile---this is the job of the @command{guix package} command (@pxref{Invoking guix package}). Thus, it is mainly useful for distribution developers." msgstr "" #. type: example -#: guix-git/doc/guix.texi:10816 +#: guix-git/doc/guix.texi:11130 #, no-wrap msgid "guix build @var{options} @var{package-or-derivation}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10821 +#: guix-git/doc/guix.texi:11135 msgid "As an example, the following command builds the latest versions of Emacs and of Guile, displays their build logs, and finally displays the resulting directories:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10824 +#: guix-git/doc/guix.texi:11138 #, no-wrap msgid "guix build emacs guile\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10827 +#: guix-git/doc/guix.texi:11141 msgid "Similarly, the following command builds all the available packages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10831 +#: guix-git/doc/guix.texi:11145 #, no-wrap msgid "" "guix build --quiet --keep-going \\\n" @@ -19762,323 +20299,321 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10839 +#: guix-git/doc/guix.texi:11153 msgid "@var{package-or-derivation} may be either the name of a package found in the software distribution such as @code{coreutils} or @code{coreutils@@8.20}, or a derivation such as @file{/gnu/store/@dots{}-coreutils-8.19.drv}. In the former case, a package with the corresponding name (and optionally version) is searched for among the GNU distribution modules (@pxref{Package Modules})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10844 +#: guix-git/doc/guix.texi:11158 msgid "Alternatively, the @option{--expression} option may be used to specify a Scheme expression that evaluates to a package; this is useful when disambiguating among several same-named packages or package variants is needed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10847 +#: guix-git/doc/guix.texi:11161 msgid "There may be zero or more @var{options}. The available options are described in the subsections below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10862 +#: guix-git/doc/guix.texi:11176 msgid "A number of options that control the build process are common to @command{guix build} and other commands that can spawn builds, such as @command{guix package} or @command{guix archive}. These are the following:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10872 guix-git/doc/guix.texi:12769 -#: guix-git/doc/guix.texi:13053 guix-git/doc/guix.texi:13198 -#: guix-git/doc/guix.texi:13466 +#: guix-git/doc/guix.texi:11186 guix-git/doc/guix.texi:13084 +#: guix-git/doc/guix.texi:13410 guix-git/doc/guix.texi:13555 +#: guix-git/doc/guix.texi:13823 msgid "This allows users to define their own packages and make them visible to the command-line tools." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10873 +#: guix-git/doc/guix.texi:11187 #, no-wrap msgid "--keep-failed" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10874 +#: guix-git/doc/guix.texi:11188 #, no-wrap msgid "-K" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10880 +#: guix-git/doc/guix.texi:11194 msgid "Keep the build tree of failed builds. Thus, if a build fails, its build tree is kept under @file{/tmp}, in a directory whose name is shown at the end of the build log. This is useful when debugging build issues. @xref{Debugging Build Failures}, for tips and tricks on how to debug build issues." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10884 +#: guix-git/doc/guix.texi:11198 msgid "This option implies @option{--no-offload}, and it has no effect when connecting to a remote daemon with a @code{guix://} URI (@pxref{The Store, the @env{GUIX_DAEMON_SOCKET} variable})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10885 +#: guix-git/doc/guix.texi:11199 #, no-wrap msgid "--keep-going" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10886 +#: guix-git/doc/guix.texi:11200 #, no-wrap msgid "-k" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10889 +#: guix-git/doc/guix.texi:11203 msgid "Keep going when some of the derivations fail to build; return only once all the builds have either completed or failed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10892 +#: guix-git/doc/guix.texi:11206 msgid "The default behavior is to stop as soon as one of the specified derivations has failed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10896 +#: guix-git/doc/guix.texi:11210 msgid "Do not build the derivations." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:10898 +#: guix-git/doc/guix.texi:11212 msgid "fallback-option" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10898 +#: guix-git/doc/guix.texi:11212 #, no-wrap msgid "--fallback" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10901 +#: guix-git/doc/guix.texi:11215 msgid "When substituting a pre-built binary fails, fall back to building packages locally (@pxref{Substitution Failure})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:10907 +#: guix-git/doc/guix.texi:11221 msgid "client-substitute-urls" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10907 +#: guix-git/doc/guix.texi:11221 msgid "Consider @var{urls} the whitespace-separated list of substitute source URLs, overriding the default list of URLs of @command{guix-daemon} (@pxref{daemon-substitute-urls,, @command{guix-daemon} URLs})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10911 +#: guix-git/doc/guix.texi:11225 msgid "This means that substitutes may be downloaded from @var{urls}, provided they are signed by a key authorized by the system administrator (@pxref{Substitutes})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10914 +#: guix-git/doc/guix.texi:11228 msgid "When @var{urls} is the empty string, substitutes are effectively disabled." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10920 +#: guix-git/doc/guix.texi:11234 #, no-wrap msgid "--no-grafts" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10924 +#: guix-git/doc/guix.texi:11238 msgid "Do not ``graft'' packages. In practice, this means that package updates available as grafts are not applied. @xref{Security Updates}, for more information on grafts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10925 +#: guix-git/doc/guix.texi:11239 #, no-wrap msgid "--rounds=@var{n}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10928 +#: guix-git/doc/guix.texi:11242 msgid "Build each derivation @var{n} times in a row, and raise an error if consecutive build results are not bit-for-bit identical." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10933 +#: guix-git/doc/guix.texi:11247 msgid "This is a useful way to detect non-deterministic builds processes. Non-deterministic build processes are a problem because they make it practically impossible for users to @emph{verify} whether third-party binaries are genuine. @xref{Invoking guix challenge}, for more." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10949 +#: guix-git/doc/guix.texi:11263 msgid "By default, the daemon's setting is honored (@pxref{Invoking guix-daemon, @option{--max-silent-time}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10956 +#: guix-git/doc/guix.texi:11270 msgid "By default, the daemon's setting is honored (@pxref{Invoking guix-daemon, @option{--timeout}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10959 +#: guix-git/doc/guix.texi:11273 #, no-wrap msgid "verbosity, of the command-line tools" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10960 +#: guix-git/doc/guix.texi:11274 #, no-wrap msgid "build logs, verbosity" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10961 +#: guix-git/doc/guix.texi:11275 #, no-wrap msgid "-v @var{level}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10962 +#: guix-git/doc/guix.texi:11276 #, no-wrap msgid "--verbosity=@var{level}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10967 +#: guix-git/doc/guix.texi:11281 msgid "Use the given verbosity @var{level}, an integer. Choosing 0 means that no output is produced, 1 is for quiet output; 2 is similar to 1 but it additionally displays download URLs; 3 shows all the build log output on standard error." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10972 +#: guix-git/doc/guix.texi:11286 msgid "Allow the use of up to @var{n} CPU cores for the build. The special value @code{0} means to use as many CPU cores as available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10978 +#: guix-git/doc/guix.texi:11292 msgid "Allow at most @var{n} build jobs in parallel. @xref{Invoking guix-daemon, @option{--max-jobs}}, for details about this option and the equivalent @command{guix-daemon} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10979 +#: guix-git/doc/guix.texi:11293 #, no-wrap msgid "--debug=@var{level}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10983 +#: guix-git/doc/guix.texi:11297 msgid "Produce debugging output coming from the build daemon. @var{level} must be an integer between 0 and 5; higher means more verbose output. Setting a level of 4 or more may be helpful when debugging setup issues with the build daemon." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10990 +#: guix-git/doc/guix.texi:11304 msgid "Behind the scenes, @command{guix build} is essentially an interface to the @code{package-derivation} procedure of the @code{(guix packages)} module, and to the @code{build-derivations} procedure of the @code{(guix derivations)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10994 +#: guix-git/doc/guix.texi:11308 msgid "In addition to options explicitly passed on the command line, @command{guix build} and other @command{guix} commands that support building honor the @env{GUIX_BUILD_OPTIONS} environment variable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:10995 +#: guix-git/doc/guix.texi:11309 #, no-wrap msgid "{Environment Variable} GUIX_BUILD_OPTIONS" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:11000 +#: guix-git/doc/guix.texi:11314 msgid "Users can define this variable to a list of command line options that will automatically be used by @command{guix build} and other @command{guix} commands that can perform builds, as in the example below:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11003 +#: guix-git/doc/guix.texi:11317 #, no-wrap msgid "$ export GUIX_BUILD_OPTIONS=\"--no-substitutes -c 2 -L /foo/bar\"\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:11007 +#: guix-git/doc/guix.texi:11321 msgid "These options are parsed independently, and the result is appended to the parsed command-line options." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11013 +#: guix-git/doc/guix.texi:11327 #, no-wrap msgid "package variants" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11021 +#: guix-git/doc/guix.texi:11335 msgid "Another set of command-line options supported by @command{guix build} and also @command{guix package} are @dfn{package transformation options}. These are options that make it possible to define @dfn{package variants}---for instance, packages built from different source code. This is a convenient way to create customized packages on the fly without having to type in the definitions of package variants (@pxref{Defining Packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11025 +#: guix-git/doc/guix.texi:11339 msgid "Package transformation options are preserved across upgrades: @command{guix upgrade} attempts to apply transformation options initially used when creating the profile to the upgraded packages." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11030 +#: guix-git/doc/guix.texi:11344 msgid "The available options are listed below. Most commands support them and also support a @option{--help-transform} option that lists all the available options and a synopsis (these options are not shown in the @option{--help} output for brevity)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11033 -#, fuzzy, no-wrap -#| msgid "performance" +#: guix-git/doc/guix.texi:11347 +#, no-wrap msgid "performance, tuning code" -msgstr "suorituskyky" +msgstr "suorituskyky, virityskoodi" #. type: cindex -#: guix-git/doc/guix.texi:11034 +#: guix-git/doc/guix.texi:11348 #, no-wrap msgid "optimization, of package code" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11035 +#: guix-git/doc/guix.texi:11349 #, no-wrap msgid "tuning, of package code" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11036 +#: guix-git/doc/guix.texi:11350 #, no-wrap msgid "SIMD support" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11037 -#, fuzzy, no-wrap -#| msgid "packages" +#: guix-git/doc/guix.texi:11351 +#, no-wrap msgid "tunable packages" -msgstr "paketit" +msgstr "viritettävissä olevat paketit" #. type: cindex -#: guix-git/doc/guix.texi:11038 +#: guix-git/doc/guix.texi:11352 #, no-wrap msgid "package multi-versioning" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11039 +#: guix-git/doc/guix.texi:11353 #, no-wrap msgid "--tune[=@var{cpu}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11043 +#: guix-git/doc/guix.texi:11357 msgid "Use versions of the packages marked as ``tunable'' optimized for @var{cpu}. When @var{cpu} is @code{native}, or when it is omitted, tune for the CPU on which the @command{guix} command is running." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11049 +#: guix-git/doc/guix.texi:11363 msgid "Valid @var{cpu} names are those recognized by the underlying compiler, by default the GNU Compiler Collection. On x86_64 processors, this includes CPU names such as @code{nehalem}, @code{haswell}, and @code{skylake} (@pxref{x86 Options, @code{-march},, gcc, Using the GNU Compiler Collection (GCC)})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11056 +#: guix-git/doc/guix.texi:11370 msgid "As new generations of CPUs come out, they augment the standard instruction set architecture (ISA) with additional instructions, in particular instructions for single-instruction/multiple-data (SIMD) parallel processing. For example, while Core2 and Skylake CPUs both implement the x86_64 ISA, only the latter supports AVX2 SIMD instructions." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11063 +#: guix-git/doc/guix.texi:11377 msgid "The primary gain one can expect from @option{--tune} is for programs that can make use of those SIMD capabilities @emph{and} that do not already have a mechanism to select the right optimized code at run time. Packages that have the @code{tunable?} property set are considered @dfn{tunable packages} by the @option{--tune} option; a package definition with the property set looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:11068 +#: guix-git/doc/guix.texi:11382 #, no-wrap msgid "" "(package\n" @@ -20088,7 +20623,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:11072 +#: guix-git/doc/guix.texi:11386 #, no-wrap msgid "" " ;; This package may benefit from SIMD extensions so\n" @@ -20097,87 +20632,87 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11077 +#: guix-git/doc/guix.texi:11391 msgid "Other packages are not considered tunable. This allows Guix to use generic binaries in the cases where tuning for a specific CPU is unlikely to provide any gain." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11083 +#: guix-git/doc/guix.texi:11397 msgid "Tuned packages are built with @code{-march=@var{CPU}}; under the hood, the @option{-march} option is passed to the actual wrapper by a compiler wrapper. Since the build machine may not be able to run code for the target CPU micro-architecture, the test suite is not run when building a tuned package." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11087 +#: guix-git/doc/guix.texi:11401 msgid "To reduce rebuilds to the minimum, tuned packages are @emph{grafted} onto packages that depend on them (@pxref{Security Updates, grafts}). Thus, using @option{--no-grafts} cancels the effect of @option{--tune}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11093 +#: guix-git/doc/guix.texi:11407 msgid "We call this technique @dfn{package multi-versioning}: several variants of tunable packages may be built, one for each CPU variant. It is the coarse-grain counterpart of @dfn{function multi-versioning} as implemented by the GNU tool chain (@pxref{Function Multiversioning,,, gcc, Using the GNU Compiler Collection (GCC)})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11094 +#: guix-git/doc/guix.texi:11408 #, no-wrap msgid "--with-source=@var{source}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11095 +#: guix-git/doc/guix.texi:11409 #, no-wrap msgid "--with-source=@var{package}=@var{source}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11096 +#: guix-git/doc/guix.texi:11410 #, no-wrap msgid "--with-source=@var{package}@@@var{version}=@var{source}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11101 +#: guix-git/doc/guix.texi:11415 msgid "Use @var{source} as the source of @var{package}, and @var{version} as its version number. @var{source} must be a file name or a URL, as for @command{guix download} (@pxref{Invoking guix download})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11107 +#: guix-git/doc/guix.texi:11421 msgid "When @var{package} is omitted, it is taken to be the package name specified on the command line that matches the base of @var{source}---e.g., if @var{source} is @code{/src/guile-2.0.10.tar.gz}, the corresponding package is @code{guile}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11110 +#: guix-git/doc/guix.texi:11424 msgid "Likewise, when @var{version} is omitted, the version string is inferred from @var{source}; in the previous example, it is @code{2.0.10}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11115 +#: guix-git/doc/guix.texi:11429 msgid "This option allows users to try out versions of packages other than the one provided by the distribution. The example below downloads @file{ed-1.7.tar.gz} from a GNU mirror and uses that as the source for the @code{ed} package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11118 +#: guix-git/doc/guix.texi:11432 #, no-wrap msgid "guix build ed --with-source=mirror://gnu/ed/ed-1.7.tar.gz\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11122 +#: guix-git/doc/guix.texi:11436 msgid "As a developer, @option{--with-source} makes it easy to test release candidates:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11125 +#: guix-git/doc/guix.texi:11439 #, no-wrap msgid "guix build guile --with-source=../guile-2.0.9.219-e1bb7.tar.xz\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11128 +#: guix-git/doc/guix.texi:11442 msgid "@dots{} or to build from a checkout in a pristine environment:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11132 +#: guix-git/doc/guix.texi:11446 #, no-wrap msgid "" "$ git clone git://git.sv.gnu.org/guix.git\n" @@ -20185,126 +20720,126 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11134 +#: guix-git/doc/guix.texi:11448 #, no-wrap msgid "--with-input=@var{package}=@var{replacement}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11139 +#: guix-git/doc/guix.texi:11453 msgid "Replace dependency on @var{package} by a dependency on @var{replacement}. @var{package} must be a package name, and @var{replacement} must be a package specification such as @code{guile} or @code{guile@@1.8}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11143 +#: guix-git/doc/guix.texi:11457 msgid "For instance, the following command builds Guix, but replaces its dependency on the current stable version of Guile with a dependency on the legacy version of Guile, @code{guile@@2.0}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11146 +#: guix-git/doc/guix.texi:11460 #, no-wrap msgid "guix build --with-input=guile=guile@@2.0 guix\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11151 +#: guix-git/doc/guix.texi:11465 msgid "This is a recursive, deep replacement. So in this example, both @code{guix} and its dependency @code{guile-json} (which also depends on @code{guile}) get rebuilt against @code{guile@@2.0}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11154 +#: guix-git/doc/guix.texi:11468 msgid "This is implemented using the @code{package-input-rewriting} Scheme procedure (@pxref{Defining Packages, @code{package-input-rewriting}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11155 +#: guix-git/doc/guix.texi:11469 #, no-wrap msgid "--with-graft=@var{package}=@var{replacement}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11161 +#: guix-git/doc/guix.texi:11475 msgid "This is similar to @option{--with-input} but with an important difference: instead of rebuilding the whole dependency chain, @var{replacement} is built and then @dfn{grafted} onto the binaries that were initially referring to @var{package}. @xref{Security Updates}, for more information on grafts." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11165 +#: guix-git/doc/guix.texi:11479 msgid "For example, the command below grafts version 3.5.4 of GnuTLS onto Wget and all its dependencies, replacing references to the version of GnuTLS they currently refer to:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11168 +#: guix-git/doc/guix.texi:11482 #, no-wrap msgid "guix build --with-graft=gnutls=gnutls@@3.5.4 wget\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11177 +#: guix-git/doc/guix.texi:11491 msgid "This has the advantage of being much faster than rebuilding everything. But there is a caveat: it works if and only if @var{package} and @var{replacement} are strictly compatible---for example, if they provide a library, the application binary interface (ABI) of those libraries must be compatible. If @var{replacement} is somehow incompatible with @var{package}, then the resulting package may be unusable. Use with care!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11178 guix-git/doc/guix.texi:37882 +#: guix-git/doc/guix.texi:11492 guix-git/doc/guix.texi:38371 #, no-wrap msgid "debugging info, rebuilding" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11179 +#: guix-git/doc/guix.texi:11493 #, no-wrap msgid "--with-debug-info=@var{package}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11184 +#: guix-git/doc/guix.texi:11498 msgid "Build @var{package} in a way that preserves its debugging info and graft it onto packages that depend on it. This is useful if @var{package} does not already provide debugging info as a @code{debug} output (@pxref{Installing Debugging Files})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11190 +#: guix-git/doc/guix.texi:11504 msgid "For example, suppose you're experiencing a crash in Inkscape and would like to see what's up in GLib, a library deep down in Inkscape's dependency graph. GLib lacks a @code{debug} output, so debugging is tough. Fortunately, you rebuild GLib with debugging info and tack it on Inkscape:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11193 guix-git/doc/guix.texi:37913 +#: guix-git/doc/guix.texi:11507 guix-git/doc/guix.texi:38402 #, no-wrap msgid "guix install inkscape --with-debug-info=glib\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11197 +#: guix-git/doc/guix.texi:11511 msgid "Only GLib needs to be recompiled so this takes a reasonable amount of time. @xref{Installing Debugging Files}, for more info." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11203 +#: guix-git/doc/guix.texi:11517 msgid "Under the hood, this option works by passing the @samp{#:strip-binaries? #f} to the build system of the package of interest (@pxref{Build Systems}). Most build systems support that option but some do not. In that case, an error is raised." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11207 +#: guix-git/doc/guix.texi:11521 msgid "Likewise, if a C/C++ package is built without @code{-g} (which is rarely the case), debugging info will remain unavailable even when @code{#:strip-binaries?} is false." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11209 +#: guix-git/doc/guix.texi:11523 #, no-wrap msgid "tool chain, changing the build tool chain of a package" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11210 +#: guix-git/doc/guix.texi:11524 #, no-wrap msgid "--with-c-toolchain=@var{package}=@var{toolchain}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11214 +#: guix-git/doc/guix.texi:11528 msgid "This option changes the compilation of @var{package} and everything that depends on it so that they get built with @var{toolchain} instead of the default GNU tool chain for C/C++." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11221 +#: guix-git/doc/guix.texi:11535 #, no-wrap msgid "" "guix build octave-cli \\\n" @@ -20313,17 +20848,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11228 +#: guix-git/doc/guix.texi:11542 msgid "The command above builds a variant of the @code{fftw} and @code{fftwf} packages using version 10 of @code{gcc-toolchain} instead of the default tool chain, and then builds a variant of the GNU@tie{}Octave command-line interface using them. GNU@tie{}Octave itself is also built with @code{gcc-toolchain@@10}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11232 +#: guix-git/doc/guix.texi:11546 msgid "This other example builds the Hardware Locality (@code{hwloc}) library and its dependents up to @code{intel-mpi-benchmarks} with the Clang C compiler:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11236 +#: guix-git/doc/guix.texi:11550 #, no-wrap msgid "" "guix build --with-c-toolchain=hwloc=clang-toolchain \\\n" @@ -20331,40 +20866,40 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11245 +#: guix-git/doc/guix.texi:11559 msgid "There can be application binary interface (ABI) incompatibilities among tool chains. This is particularly true of the C++ standard library and run-time support libraries such as that of OpenMP@. By rebuilding all dependents with the same tool chain, @option{--with-c-toolchain} minimizes the risks of incompatibility but cannot entirely eliminate them. Choose @var{package} wisely." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11247 +#: guix-git/doc/guix.texi:11561 #, no-wrap msgid "--with-git-url=@var{package}=@var{url}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11248 +#: guix-git/doc/guix.texi:11562 #, no-wrap msgid "Git, using the latest commit" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11249 +#: guix-git/doc/guix.texi:11563 #, no-wrap msgid "latest commit, building" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11253 +#: guix-git/doc/guix.texi:11567 msgid "Build @var{package} from the latest commit of the @code{master} branch of the Git repository at @var{url}. Git sub-modules of the repository are fetched, recursively." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11256 +#: guix-git/doc/guix.texi:11570 msgid "For example, the following command builds the NumPy Python library against the latest commit of the master branch of Python itself:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11260 +#: guix-git/doc/guix.texi:11574 #, no-wrap msgid "" "guix build python-numpy \\\n" @@ -20372,318 +20907,318 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11264 +#: guix-git/doc/guix.texi:11578 msgid "This option can also be combined with @option{--with-branch} or @option{--with-commit} (see below)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11265 guix-git/doc/guix.texi:28957 +#: guix-git/doc/guix.texi:11579 guix-git/doc/guix.texi:29294 #, no-wrap msgid "continuous integration" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11271 +#: guix-git/doc/guix.texi:11585 msgid "Obviously, since it uses the latest commit of the given branch, the result of such a command varies over time. Nevertheless it is a convenient way to rebuild entire software stacks against the latest commit of one or more packages. This is particularly useful in the context of continuous integration (CI)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11275 +#: guix-git/doc/guix.texi:11589 msgid "Checkouts are kept in a cache under @file{~/.cache/guix/checkouts} to speed up consecutive accesses to the same repository. You may want to clean it up once in a while to save disk space." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11276 +#: guix-git/doc/guix.texi:11590 #, no-wrap msgid "--with-branch=@var{package}=@var{branch}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11282 +#: guix-git/doc/guix.texi:11596 msgid "Build @var{package} from the latest commit of @var{branch}. If the @code{source} field of @var{package} is an origin with the @code{git-fetch} method (@pxref{origin Reference}) or a @code{git-checkout} object, the repository URL is taken from that @code{source}. Otherwise you have to use @option{--with-git-url} to specify the URL of the Git repository." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11287 +#: guix-git/doc/guix.texi:11601 msgid "For instance, the following command builds @code{guile-sqlite3} from the latest commit of its @code{master} branch, and then builds @code{guix} (which depends on it) and @code{cuirass} (which depends on @code{guix}) against this specific @code{guile-sqlite3} build:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11290 +#: guix-git/doc/guix.texi:11604 #, no-wrap msgid "guix build --with-branch=guile-sqlite3=master cuirass\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11292 +#: guix-git/doc/guix.texi:11606 #, no-wrap msgid "--with-commit=@var{package}=@var{commit}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11297 +#: guix-git/doc/guix.texi:11611 msgid "This is similar to @option{--with-branch}, except that it builds from @var{commit} rather than the tip of a branch. @var{commit} must be a valid Git commit SHA1 identifier, a tag, or a @command{git describe} style identifier such as @code{1.0-3-gabc123}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11298 +#: guix-git/doc/guix.texi:11612 #, no-wrap msgid "--with-patch=@var{package}=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11305 +#: guix-git/doc/guix.texi:11619 msgid "Add @var{file} to the list of patches applied to @var{package}, where @var{package} is a spec such as @code{python@@3.8} or @code{glibc}. @var{file} must contain a patch; it is applied with the flags specified in the @code{origin} of @var{package} (@pxref{origin Reference}), which by default includes @code{-p1} (@pxref{patch Directories,,, diffutils, Comparing and Merging Files})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11308 +#: guix-git/doc/guix.texi:11622 msgid "As an example, the command below rebuilds Coreutils with the GNU C Library (glibc) patched with the given patch:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11311 +#: guix-git/doc/guix.texi:11625 #, no-wrap msgid "guix build coreutils --with-patch=glibc=./glibc-frob.patch\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11315 +#: guix-git/doc/guix.texi:11629 msgid "In this example, glibc itself as well as everything that leads to Coreutils in the dependency graph is rebuilt." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11316 +#: guix-git/doc/guix.texi:11630 #, no-wrap msgid "upstream, latest version" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11317 +#: guix-git/doc/guix.texi:11631 #, no-wrap msgid "--with-latest=@var{package}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11322 +#: guix-git/doc/guix.texi:11636 msgid "So you like living on the bleeding edge? This option is for you! It replaces occurrences of @var{package} in the dependency graph with its latest upstream version, as reported by @command{guix refresh} (@pxref{Invoking guix refresh})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11326 +#: guix-git/doc/guix.texi:11640 msgid "It does so by determining the latest upstream release of @var{package} (if possible), downloading it, and authenticating it @emph{if} it comes with an OpenPGP signature." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11329 +#: guix-git/doc/guix.texi:11643 msgid "As an example, the command below builds Guix against the latest version of Guile-JSON:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11332 +#: guix-git/doc/guix.texi:11646 #, no-wrap msgid "guix build guix --with-latest=guile-json\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11341 +#: guix-git/doc/guix.texi:11655 msgid "There are limitations. First, in cases where the tool cannot or does not know how to authenticate source code, you are at risk of running malicious code; a warning is emitted in this case. Second, this option simply changes the source used in the existing package definitions, which is not always sufficient: there might be additional dependencies that need to be added, patches to apply, and more generally the quality assurance work that Guix developers normally do will be missing." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11346 +#: guix-git/doc/guix.texi:11660 msgid "You've been warned! In all the other cases, it's a snappy way to stay on top. We encourage you to submit patches updating the actual package definitions once you have successfully tested an upgrade (@pxref{Contributing})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11347 +#: guix-git/doc/guix.texi:11661 #, no-wrap msgid "test suite, skipping" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11348 +#: guix-git/doc/guix.texi:11662 #, no-wrap msgid "--without-tests=@var{package}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11354 +#: guix-git/doc/guix.texi:11668 msgid "Build @var{package} without running its tests. This can be useful in situations where you want to skip the lengthy test suite of a intermediate package, or if a package's test suite fails in a non-deterministic fashion. It should be used with care because running the test suite is a good way to ensure a package is working as intended." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11358 +#: guix-git/doc/guix.texi:11672 msgid "Turning off tests leads to a different store item. Consequently, when using this option, anything that depends on @var{package} must be rebuilt, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11361 +#: guix-git/doc/guix.texi:11675 #, no-wrap msgid "guix install --without-tests=python python-notebook\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11367 +#: guix-git/doc/guix.texi:11681 msgid "The command above installs @code{python-notebook} on top of @code{python} built without running its test suite. To do so, it also rebuilds everything that depends on @code{python}, including @code{python-notebook} itself." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11373 +#: guix-git/doc/guix.texi:11687 msgid "Internally, @option{--without-tests} relies on changing the @code{#:tests?} option of a package's @code{check} phase (@pxref{Build Systems}). Note that some packages use a customized @code{check} phase that does not respect a @code{#:tests? #f} setting. Therefore, @option{--without-tests} has no effect on these packages." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11380 +#: guix-git/doc/guix.texi:11694 msgid "Wondering how to achieve the same effect using Scheme code, for example in your manifest, or how to write your own package transformation? @xref{Defining Package Variants}, for an overview of the programming interfaces available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11386 +#: guix-git/doc/guix.texi:11700 msgid "The command-line options presented below are specific to @command{guix build}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11389 +#: guix-git/doc/guix.texi:11703 #, no-wrap msgid "--quiet" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11394 +#: guix-git/doc/guix.texi:11708 msgid "Build quietly, without displaying the build log; this is equivalent to @option{--verbosity=0}. Upon completion, the build log is kept in @file{/var} (or similar) and can always be retrieved using the @option{--log-file} option." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11399 +#: guix-git/doc/guix.texi:11713 msgid "Build the package, derivation, or other file-like object that the code within @var{file} evaluates to (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11402 +#: guix-git/doc/guix.texi:11716 msgid "As an example, @var{file} might contain a package definition like this (@pxref{Defining Packages}):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11411 +#: guix-git/doc/guix.texi:11725 msgid "The @var{file} may also contain a JSON representation of one or more package definitions. Running @code{guix build -f} on @file{hello.json} with the following contents would result in building the packages @code{myhello} and @code{greeter}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11416 +#: guix-git/doc/guix.texi:11730 #, no-wrap msgid "--manifest=@var{manifest}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11417 +#: guix-git/doc/guix.texi:11731 #, no-wrap msgid "-m @var{manifest}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11420 +#: guix-git/doc/guix.texi:11734 msgid "Build all packages listed in the given @var{manifest} (@pxref{profile-manifest, @option{--manifest}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11424 +#: guix-git/doc/guix.texi:11738 msgid "Build the package or derivation @var{expr} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11428 +#: guix-git/doc/guix.texi:11742 msgid "For example, @var{expr} may be @code{(@@ (gnu packages guile) guile-1.8)}, which unambiguously designates this specific variant of version 1.8 of Guile." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11432 +#: guix-git/doc/guix.texi:11746 msgid "Alternatively, @var{expr} may be a G-expression, in which case it is used as a build program passed to @code{gexp->derivation} (@pxref{G-Expressions})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11436 +#: guix-git/doc/guix.texi:11750 msgid "Lastly, @var{expr} may refer to a zero-argument monadic procedure (@pxref{The Store Monad}). The procedure must return a derivation as a monadic value, which is then passed through @code{run-with-store}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11437 +#: guix-git/doc/guix.texi:11751 #, no-wrap msgid "--source" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11438 guix-git/doc/guix.texi:11835 +#: guix-git/doc/guix.texi:11752 #, no-wrap msgid "-S" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11441 +#: guix-git/doc/guix.texi:11755 msgid "Build the source derivations of the packages, rather than the packages themselves." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11445 +#: guix-git/doc/guix.texi:11759 msgid "For instance, @code{guix build -S gcc} returns something like @file{/gnu/store/@dots{}-gcc-4.7.2.tar.bz2}, which is the GCC source tarball." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11449 +#: guix-git/doc/guix.texi:11763 msgid "The returned source tarball is the result of applying any patches and code snippets specified in the package @code{origin} (@pxref{Defining Packages})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11450 +#: guix-git/doc/guix.texi:11764 #, no-wrap msgid "source, verification" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11456 +#: guix-git/doc/guix.texi:11770 msgid "As with other derivations, the result of building a source derivation can be verified using the @option{--check} option (@pxref{build-check}). This is useful to validate that a (potentially already built or substituted, thus cached) package source matches against its declared hash." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11461 +#: guix-git/doc/guix.texi:11775 msgid "Note that @command{guix build -S} compiles the sources only of the specified packages. They do not include the sources of statically linked dependencies and by themselves are insufficient for reproducing the packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11462 +#: guix-git/doc/guix.texi:11776 #, no-wrap msgid "--sources" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11469 +#: guix-git/doc/guix.texi:11783 msgid "Fetch and return the source of @var{package-or-derivation} and all their dependencies, recursively. This is a handy way to obtain a local copy of all the source code needed to build @var{packages}, allowing you to eventually build them even without network access. It is an extension of the @option{--source} option and can accept one of the following optional argument values:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11471 guix-git/doc/guix.texi:13252 +#: guix-git/doc/guix.texi:11785 guix-git/doc/guix.texi:13609 #, no-wrap msgid "package" msgstr "paketti" #. type: table -#: guix-git/doc/guix.texi:11474 +#: guix-git/doc/guix.texi:11788 msgid "This value causes the @option{--sources} option to behave in the same way as the @option{--source} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11475 guix-git/doc/guix.texi:19682 +#: guix-git/doc/guix.texi:11789 guix-git/doc/guix.texi:20044 #, no-wrap msgid "all" msgstr "kaikki" #. type: table -#: guix-git/doc/guix.texi:11478 +#: guix-git/doc/guix.texi:11792 msgid "Build the source derivations of all packages, including any source that might be listed as @code{inputs}. This is the default value." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11484 +#: guix-git/doc/guix.texi:11798 #, no-wrap msgid "" "$ guix build --sources tzdata\n" @@ -20693,18 +21228,18 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11486 +#: guix-git/doc/guix.texi:11800 #, no-wrap msgid "transitive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11490 +#: guix-git/doc/guix.texi:11804 msgid "Build the source derivations of all packages, as well of all transitive inputs to the packages. This can be used e.g.@: to prefetch package source for later offline building." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11501 +#: guix-git/doc/guix.texi:11815 #, no-wrap msgid "" "$ guix build --sources=transitive tzdata\n" @@ -20719,146 +21254,146 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11511 +#: guix-git/doc/guix.texi:11825 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of the system type of the build host. The @command{guix build} command allows you to repeat this option several times, in which case it builds for all the specified systems; other commands ignore extraneous @option{-s} options." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11516 +#: guix-git/doc/guix.texi:11830 msgid "The @option{--system} flag is for @emph{native} compilation and must not be confused with cross-compilation. See @option{--target} below for information on cross-compilation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11523 +#: guix-git/doc/guix.texi:11837 msgid "An example use of this is on Linux-based systems, which can emulate different personalities. For instance, passing @option{--system=i686-linux} on an @code{x86_64-linux} system or @option{--system=armhf-linux} on an @code{aarch64-linux} system allows you to build packages in a complete 32-bit environment." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11528 +#: guix-git/doc/guix.texi:11842 msgid "Building for an @code{armhf-linux} system is unconditionally enabled on @code{aarch64-linux} machines, although certain aarch64 chipsets do not allow for this functionality, notably the ThunderX." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11534 +#: guix-git/doc/guix.texi:11848 msgid "Similarly, when transparent emulation with QEMU and @code{binfmt_misc} is enabled (@pxref{Virtualization Services, @code{qemu-binfmt-service-type}}), you can build for any system for which a QEMU @code{binfmt_misc} handler is installed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11538 +#: guix-git/doc/guix.texi:11852 msgid "Builds for a system other than that of the machine you are using can also be offloaded to a remote machine of the right architecture. @xref{Daemon Offload Setup}, for more information on offloading." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11544 +#: guix-git/doc/guix.texi:11858 msgid "Cross-build for @var{triplet}, which must be a valid GNU triplet, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying Target Triplets, GNU configuration triplets,, autoconf, Autoconf})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:11546 +#: guix-git/doc/guix.texi:11860 msgid "build-check" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11547 +#: guix-git/doc/guix.texi:11861 #, no-wrap msgid "determinism, checking" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11548 +#: guix-git/doc/guix.texi:11862 #, no-wrap msgid "reproducibility, checking" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11552 +#: guix-git/doc/guix.texi:11866 msgid "Rebuild @var{package-or-derivation}, which are already available in the store, and raise an error if the build results are not bit-for-bit identical." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11557 +#: guix-git/doc/guix.texi:11871 msgid "This mechanism allows you to check whether previously installed substitutes are genuine (@pxref{Substitutes}), or whether the build result of a package is deterministic. @xref{Invoking guix challenge}, for more background information and tools." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11562 +#: guix-git/doc/guix.texi:11876 #, no-wrap msgid "--repair" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11563 +#: guix-git/doc/guix.texi:11877 #, no-wrap msgid "repairing store items" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11567 +#: guix-git/doc/guix.texi:11881 msgid "Attempt to repair the specified store items, if they are corrupt, by re-downloading or rebuilding them." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11569 +#: guix-git/doc/guix.texi:11883 msgid "This operation is not atomic and thus restricted to @code{root}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11570 +#: guix-git/doc/guix.texi:11884 #, no-wrap msgid "--derivations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11574 +#: guix-git/doc/guix.texi:11888 msgid "Return the derivation paths, not the output paths, of the given packages." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11577 +#: guix-git/doc/guix.texi:11891 #, no-wrap msgid "GC roots, adding" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11578 +#: guix-git/doc/guix.texi:11892 #, no-wrap msgid "garbage collector roots, adding" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11581 guix-git/doc/guix.texi:35312 +#: guix-git/doc/guix.texi:11895 guix-git/doc/guix.texi:35756 msgid "Make @var{file} a symlink to the result, and register it as a garbage collector root." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11587 +#: guix-git/doc/guix.texi:11901 msgid "Consequently, the results of this @command{guix build} invocation are protected from garbage collection until @var{file} is removed. When that option is omitted, build results are eligible for garbage collection as soon as the build completes. @xref{Invoking guix gc}, for more on GC roots." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11588 +#: guix-git/doc/guix.texi:11902 #, no-wrap msgid "--log-file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11589 +#: guix-git/doc/guix.texi:11903 #, no-wrap msgid "build logs, access" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11593 +#: guix-git/doc/guix.texi:11907 msgid "Return the build log file names or URLs for the given @var{package-or-derivation}, or raise an error if build logs are missing." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11596 +#: guix-git/doc/guix.texi:11910 msgid "This works regardless of how packages or derivations are specified. For instance, the following invocations are equivalent:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11602 +#: guix-git/doc/guix.texi:11916 #, no-wrap msgid "" "guix build --log-file $(guix build -d guile)\n" @@ -20868,17 +21403,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11607 +#: guix-git/doc/guix.texi:11921 msgid "If a log is unavailable locally, and unless @option{--no-substitutes} is passed, the command looks for a corresponding log on one of the substitute servers (as specified with @option{--substitute-urls})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11610 +#: guix-git/doc/guix.texi:11924 msgid "So for instance, imagine you want to see the build log of GDB on MIPS, but you are actually on an @code{x86_64} machine:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11614 +#: guix-git/doc/guix.texi:11928 #, no-wrap msgid "" "$ guix build --log-file gdb -s aarch64-linux\n" @@ -20886,33 +21421,33 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11617 +#: guix-git/doc/guix.texi:11931 msgid "You can freely access a huge library of build logs!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11622 +#: guix-git/doc/guix.texi:11936 #, no-wrap msgid "build failures, debugging" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11628 +#: guix-git/doc/guix.texi:11942 msgid "When defining a new package (@pxref{Defining Packages}), you will probably find yourself spending some time debugging and tweaking the build until it succeeds. To do that, you need to operate the build commands yourself in an environment as close as possible to the one the build daemon uses." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11633 +#: guix-git/doc/guix.texi:11947 msgid "To that end, the first thing to do is to use the @option{--keep-failed} or @option{-K} option of @command{guix build}, which will keep the failed build tree in @file{/tmp} or whatever directory you specified as @env{TMPDIR} (@pxref{Common Build Options, @option{--keep-failed}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11639 +#: guix-git/doc/guix.texi:11953 msgid "From there on, you can @command{cd} to the failed build tree and source the @file{environment-variables} file, which contains all the environment variable definitions that were in place when the build failed. So let's say you're debugging a build failure in package @code{foo}; a typical session would look like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11646 +#: guix-git/doc/guix.texi:11960 #, no-wrap msgid "" "$ guix build foo -K\n" @@ -20923,22 +21458,22 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11650 +#: guix-git/doc/guix.texi:11964 msgid "Now, you can invoke commands as if you were the daemon (almost) and troubleshoot your build process." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11656 +#: guix-git/doc/guix.texi:11970 msgid "Sometimes it happens that, for example, a package's tests pass when you run them manually but they fail when the daemon runs them. This can happen because the daemon runs builds in containers where, unlike in our environment above, network access is missing, @file{/bin/sh} does not exist, etc. (@pxref{Build Environment Setup})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11659 +#: guix-git/doc/guix.texi:11973 msgid "In such cases, you may need to run inspect the build process from within a container similar to the one the build daemon creates:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11667 +#: guix-git/doc/guix.texi:11981 #, no-wrap msgid "" "$ guix build -K foo\n" @@ -20950,708 +21485,714 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11676 +#: guix-git/doc/guix.texi:11990 msgid "Here, @command{guix shell -C} creates a container and spawns a new shell in it (@pxref{Invoking guix shell}). The @command{strace gdb} part adds the @command{strace} and @command{gdb} commands to the container, which you may find handy while debugging. The @option{--no-grafts} option makes sure we get the exact same environment, with ungrafted packages (@pxref{Security Updates}, for more info on grafts)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11679 +#: guix-git/doc/guix.texi:11993 msgid "To get closer to a container like that used by the build daemon, we can remove @file{/bin/sh}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11682 +#: guix-git/doc/guix.texi:11996 #, no-wrap msgid "[env]# rm /bin/sh\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11686 +#: guix-git/doc/guix.texi:12000 msgid "(Don't worry, this is harmless: this is all happening in the throw-away container created by @command{guix shell}.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11689 +#: guix-git/doc/guix.texi:12003 msgid "The @command{strace} command is probably not in the search path, but we can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11692 +#: guix-git/doc/guix.texi:12006 #, no-wrap msgid "[env]# $GUIX_ENVIRONMENT/bin/strace -f -o log make check\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11697 +#: guix-git/doc/guix.texi:12011 msgid "In this way, not only you will have reproduced the environment variables the daemon uses, you will also be running the build process in a container similar to the one the daemon uses." msgstr "" #. type: section -#: guix-git/doc/guix.texi:11700 +#: guix-git/doc/guix.texi:12014 #, no-wrap msgid "Invoking @command{guix edit}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:11702 +#: guix-git/doc/guix.texi:12016 #, no-wrap msgid "guix edit" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11703 +#: guix-git/doc/guix.texi:12017 #, no-wrap msgid "package definition, editing" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11708 +#: guix-git/doc/guix.texi:12022 msgid "So many packages, so many source files! The @command{guix edit} command facilitates the life of users and packagers by pointing their editor at the source file containing the definition of the specified packages. For instance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11711 +#: guix-git/doc/guix.texi:12025 #, no-wrap msgid "guix edit gcc@@4.9 vim\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11717 +#: guix-git/doc/guix.texi:12031 msgid "launches the program specified in the @env{VISUAL} or in the @env{EDITOR} environment variable to view the recipe of GCC@tie{}4.9.3 and that of Vim." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11723 +#: guix-git/doc/guix.texi:12037 msgid "If you are using a Guix Git checkout (@pxref{Building from Git}), or have created your own packages on @env{GUIX_PACKAGE_PATH} (@pxref{Package Modules}), you will be able to edit the package recipes. In other cases, you will be able to examine the read-only recipes for packages currently in the store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11728 +#: guix-git/doc/guix.texi:12042 msgid "Instead of @env{GUIX_PACKAGE_PATH}, the command-line option @option{--load-path=@var{directory}} (or in short @option{-L @var{directory}}) allows you to add @var{directory} to the front of the package module search path and so make your own packages visible." msgstr "" #. type: section -#: guix-git/doc/guix.texi:11730 +#: guix-git/doc/guix.texi:12044 #, no-wrap msgid "Invoking @command{guix download}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:11732 +#: guix-git/doc/guix.texi:12046 #, no-wrap msgid "guix download" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11733 +#: guix-git/doc/guix.texi:12047 #, no-wrap msgid "downloading package sources" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11740 +#: guix-git/doc/guix.texi:12054 msgid "When writing a package definition, developers typically need to download a source tarball, compute its SHA256 hash, and write that hash in the package definition (@pxref{Defining Packages}). The @command{guix download} tool helps with this task: it downloads a file from the given URI, adds it to the store, and prints both its file name in the store and its SHA256 hash." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11747 +#: guix-git/doc/guix.texi:12061 msgid "The fact that the downloaded file is added to the store saves bandwidth: when the developer eventually tries to build the newly defined package with @command{guix build}, the source tarball will not have to be downloaded again because it is already in the store. It is also a convenient way to temporarily stash files, which may be deleted eventually (@pxref{Invoking guix gc})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11755 +#: guix-git/doc/guix.texi:12069 msgid "The @command{guix download} command supports the same URIs as used in package definitions. In particular, it supports @code{mirror://} URIs. @code{https} URIs (HTTP over TLS) are supported @emph{provided} the Guile bindings for GnuTLS are available in the user's environment; when they are not available, an error is raised. @xref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11760 +#: guix-git/doc/guix.texi:12074 msgid "@command{guix download} verifies HTTPS server certificates by loading the certificates of X.509 authorities from the directory pointed to by the @env{SSL_CERT_DIR} environment variable (@pxref{X.509 Certificates}), unless @option{--no-check-certificate} is used." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11762 guix-git/doc/guix.texi:13565 +#: guix-git/doc/guix.texi:12076 guix-git/doc/guix.texi:13922 msgid "The following options are available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11764 guix-git/doc/guix.texi:11808 +#: guix-git/doc/guix.texi:12078 guix-git/doc/guix.texi:12122 #, no-wrap msgid "--hash=@var{algorithm}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11765 guix-git/doc/guix.texi:11809 +#: guix-git/doc/guix.texi:12079 guix-git/doc/guix.texi:12123 #, no-wrap msgid "-H @var{algorithm}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11768 +#: guix-git/doc/guix.texi:12082 msgid "Compute a hash using the specified @var{algorithm}. @xref{Invoking guix hash}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11769 guix-git/doc/guix.texi:11818 +#: guix-git/doc/guix.texi:12083 guix-git/doc/guix.texi:12132 #, no-wrap msgid "--format=@var{fmt}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11770 guix-git/doc/guix.texi:11819 +#: guix-git/doc/guix.texi:12084 guix-git/doc/guix.texi:12133 #, no-wrap msgid "-f @var{fmt}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11773 +#: guix-git/doc/guix.texi:12087 msgid "Write the hash in the format specified by @var{fmt}. For more information on the valid values for @var{fmt}, @pxref{Invoking guix hash}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11774 +#: guix-git/doc/guix.texi:12088 #, no-wrap msgid "--no-check-certificate" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11776 +#: guix-git/doc/guix.texi:12090 msgid "Do not validate the X.509 certificates of HTTPS servers." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11780 +#: guix-git/doc/guix.texi:12094 msgid "When using this option, you have @emph{absolutely no guarantee} that you are communicating with the authentic server responsible for the given URL, which makes you vulnerable to ``man-in-the-middle'' attacks." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11781 +#: guix-git/doc/guix.texi:12095 #, no-wrap msgid "--output=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11782 +#: guix-git/doc/guix.texi:12096 #, no-wrap msgid "-o @var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11785 +#: guix-git/doc/guix.texi:12099 msgid "Save the downloaded file to @var{file} instead of adding it to the store." msgstr "" #. type: section -#: guix-git/doc/guix.texi:11788 +#: guix-git/doc/guix.texi:12102 #, no-wrap msgid "Invoking @command{guix hash}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:11790 +#: guix-git/doc/guix.texi:12104 #, no-wrap msgid "guix hash" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11795 +#: guix-git/doc/guix.texi:12109 msgid "The @command{guix hash} command computes the hash of a file. It is primarily a convenience tool for anyone contributing to the distribution: it computes the cryptographic hash of one or more files, which can be used in the definition of a package (@pxref{Defining Packages})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11800 +#: guix-git/doc/guix.texi:12114 #, no-wrap msgid "guix hash @var{option} @var{file} ...\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11805 +#: guix-git/doc/guix.texi:12119 msgid "When @var{file} is @code{-} (a hyphen), @command{guix hash} computes the hash of data read from standard input. @command{guix hash} has the following options:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11812 +#: guix-git/doc/guix.texi:12126 msgid "Compute a hash using the specified @var{algorithm}, @code{sha256} by default." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11817 -msgid "@var{algorithm} must the name of a cryptographic hash algorithm supported by Libgcrypt @i{via} Guile-Gcrypt---e.g., @code{sha512} or @code{sha3-256} (@pxref{Hash Functions,,, guile-gcrypt, Guile-Gcrypt Reference Manual})." +#: guix-git/doc/guix.texi:12131 +msgid "@var{algorithm} must be the name of a cryptographic hash algorithm supported by Libgcrypt @i{via} Guile-Gcrypt---e.g., @code{sha512} or @code{sha3-256} (@pxref{Hash Functions,,, guile-gcrypt, Guile-Gcrypt Reference Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11821 +#: guix-git/doc/guix.texi:12135 msgid "Write the hash in the format specified by @var{fmt}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11824 +#: guix-git/doc/guix.texi:12138 msgid "Supported formats: @code{base64}, @code{nix-base32}, @code{base32}, @code{base16} (@code{hex} and @code{hexadecimal} can be used as well)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11828 +#: guix-git/doc/guix.texi:12142 msgid "If the @option{--format} option is not specified, @command{guix hash} will output the hash in @code{nix-base32}. This representation is used in the definitions of packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11833 -msgid "This option is deprecated in favor of @option{--serializer}. It is a legacy alias for @var{type} sets to @code{nar}." +#: guix-git/doc/guix.texi:12148 +msgid "The @option{--recursive} option is deprecated in favor of @option{--serializer=nar} (see below); @option{-r} remains accepted as a convenient shorthand." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11834 +#: guix-git/doc/guix.texi:12149 #, no-wrap msgid "--serializer=@var{type}" msgstr "" +#. type: itemx +#: guix-git/doc/guix.texi:12150 +#, no-wrap +msgid "-S @var{type}" +msgstr "" + #. type: table -#: guix-git/doc/guix.texi:11837 +#: guix-git/doc/guix.texi:12152 msgid "Compute the hash on @var{file} using @var{type} serialization." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11839 +#: guix-git/doc/guix.texi:12154 msgid "@var{type} may be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11841 guix-git/doc/guix.texi:13918 -#: guix-git/doc/guix.texi:17405 guix-git/doc/guix.texi:19679 +#: guix-git/doc/guix.texi:12156 guix-git/doc/guix.texi:14275 +#: guix-git/doc/guix.texi:17767 guix-git/doc/guix.texi:20041 #, no-wrap msgid "none" msgstr "ei mitään" #. type: table -#: guix-git/doc/guix.texi:11843 +#: guix-git/doc/guix.texi:12158 msgid "This is the default: it computes the hash of a file's contents." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11844 +#: guix-git/doc/guix.texi:12159 #, no-wrap msgid "nar" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11854 -msgid "Compute the hash of a ``normalized archive'' (or ``nar'') containing @var{file}, including its children if it is a directory. Some of the metadata of @var{file} is part of the archive; for instance, when @var{file} is a regular file, the hash is different depending on whether @var{file} is executable or not. Metadata such as time stamps has no impact on the hash (@pxref{Invoking guix archive}, for more info on the nar format)." +#: guix-git/doc/guix.texi:12169 +msgid "Compute the hash of a ``normalized archive'' (or ``nar'') containing @var{file}, including its children if it is a directory. Some of the metadata of @var{file} is part of the archive; for instance, when @var{file} is a regular file, the hash is different depending on whether @var{file} is executable or not. Metadata such as time stamps have no impact on the hash (@pxref{Invoking guix archive}, for more info on the nar format)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11855 +#: guix-git/doc/guix.texi:12170 #, no-wrap msgid "git" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11858 -msgid "Compute the has of the file or directory as a Git ``tree'', following the same method as the Git version control system." +#: guix-git/doc/guix.texi:12173 +msgid "Compute the hash of the file or directory as a Git ``tree'', following the same method as the Git version control system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11860 +#: guix-git/doc/guix.texi:12175 #, no-wrap msgid "--exclude-vcs" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11861 guix-git/doc/guix.texi:13038 +#: guix-git/doc/guix.texi:12176 guix-git/doc/guix.texi:13395 #, no-wrap msgid "-x" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11864 +#: guix-git/doc/guix.texi:12179 msgid "When combined with @option{--recursive}, exclude version control system directories (@file{.bzr}, @file{.git}, @file{.hg}, etc.)." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:11865 +#: guix-git/doc/guix.texi:12180 #, no-wrap msgid "git-fetch" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11869 +#: guix-git/doc/guix.texi:12184 msgid "As an example, here is how you would compute the hash of a Git checkout, which is useful when using the @code{git-fetch} method (@pxref{origin Reference}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11874 +#: guix-git/doc/guix.texi:12189 #, no-wrap msgid "" "$ git clone http://example.org/foo.git\n" "$ cd foo\n" -"$ guix hash -rx .\n" +"$ guix hash -x --serializer=nar .\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11878 guix-git/doc/guix.texi:11883 +#: guix-git/doc/guix.texi:12193 guix-git/doc/guix.texi:12198 #, no-wrap msgid "Invoking @command{guix import}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11880 +#: guix-git/doc/guix.texi:12195 #, no-wrap msgid "importing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11881 +#: guix-git/doc/guix.texi:12196 #, no-wrap msgid "package import" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11882 +#: guix-git/doc/guix.texi:12197 #, no-wrap msgid "package conversion" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11890 +#: guix-git/doc/guix.texi:12205 msgid "The @command{guix import} command is useful for people who would like to add a package to the distribution with as little work as possible---a legitimate demand. The command knows of a few repositories from which it can ``import'' package metadata. The result is a package definition, or a template thereof, in the format we know (@pxref{Defining Packages})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11895 +#: guix-git/doc/guix.texi:12210 #, no-wrap msgid "guix import @var{importer} @var{options}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11900 +#: guix-git/doc/guix.texi:12215 msgid "@var{importer} specifies the source from which to import package metadata, and @var{options} specifies a package identifier and other options specific to @var{importer}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11904 +#: guix-git/doc/guix.texi:12219 msgid "Some of the importers rely on the ability to run the @command{gpgv} command. For these, GnuPG must be installed and in @code{$PATH}; run @code{guix install gnupg} if needed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11906 +#: guix-git/doc/guix.texi:12221 msgid "Currently, the available ``importers'' are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11908 guix-git/doc/guix.texi:12546 +#: guix-git/doc/guix.texi:12223 guix-git/doc/guix.texi:12861 #, no-wrap msgid "gnu" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11912 +#: guix-git/doc/guix.texi:12227 msgid "Import metadata for the given GNU package. This provides a template for the latest version of that GNU package, including the hash of its source tarball, and its canonical synopsis and description." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11915 +#: guix-git/doc/guix.texi:12230 msgid "Additional information such as the package dependencies and its license needs to be figured out manually." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11918 +#: guix-git/doc/guix.texi:12233 msgid "For example, the following command returns a package definition for GNU@tie{}Hello:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11921 +#: guix-git/doc/guix.texi:12236 #, no-wrap msgid "guix import gnu hello\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11924 guix-git/doc/guix.texi:12165 -#: guix-git/doc/guix.texi:12215 guix-git/doc/guix.texi:12244 +#: guix-git/doc/guix.texi:12239 guix-git/doc/guix.texi:12480 +#: guix-git/doc/guix.texi:12530 guix-git/doc/guix.texi:12559 msgid "Specific command-line options are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11926 guix-git/doc/guix.texi:12743 +#: guix-git/doc/guix.texi:12241 guix-git/doc/guix.texi:13058 #, no-wrap msgid "--key-download=@var{policy}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11930 +#: guix-git/doc/guix.texi:12245 msgid "As for @command{guix refresh}, specify the policy to handle missing OpenPGP keys when verifying the package signature. @xref{Invoking guix refresh, @option{--key-download}}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11932 guix-git/doc/guix.texi:11933 -#: guix-git/doc/guix.texi:12570 +#: guix-git/doc/guix.texi:12247 guix-git/doc/guix.texi:12248 +#: guix-git/doc/guix.texi:12885 #, no-wrap msgid "pypi" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11940 +#: guix-git/doc/guix.texi:12255 msgid "Import metadata from the @uref{https://pypi.python.org/, Python Package Index}. Information is taken from the JSON-formatted description available at @code{pypi.python.org} and usually includes all the relevant information, including package dependencies. For maximum efficiency, it is recommended to install the @command{unzip} utility, so that the importer can unzip Python wheels and gather data from them." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11943 +#: guix-git/doc/guix.texi:12258 msgid "The command below imports metadata for the latest version of the @code{itsdangerous} Python package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11946 +#: guix-git/doc/guix.texi:12261 #, no-wrap msgid "guix import pypi itsdangerous\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11949 guix-git/doc/guix.texi:12052 -#: guix-git/doc/guix.texi:12393 +#: guix-git/doc/guix.texi:12264 guix-git/doc/guix.texi:12367 +#: guix-git/doc/guix.texi:12708 msgid "You can also ask for a specific version:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11952 +#: guix-git/doc/guix.texi:12267 #, no-wrap msgid "guix import pypi itsdangerous@@1.1.0\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11960 guix-git/doc/guix.texi:11985 -#: guix-git/doc/guix.texi:12017 guix-git/doc/guix.texi:12188 -#: guix-git/doc/guix.texi:12229 guix-git/doc/guix.texi:12280 -#: guix-git/doc/guix.texi:12305 guix-git/doc/guix.texi:12321 -#: guix-git/doc/guix.texi:12369 guix-git/doc/guix.texi:12405 +#: guix-git/doc/guix.texi:12275 guix-git/doc/guix.texi:12300 +#: guix-git/doc/guix.texi:12332 guix-git/doc/guix.texi:12503 +#: guix-git/doc/guix.texi:12544 guix-git/doc/guix.texi:12595 +#: guix-git/doc/guix.texi:12620 guix-git/doc/guix.texi:12636 +#: guix-git/doc/guix.texi:12684 guix-git/doc/guix.texi:12720 msgid "Traverse the dependency graph of the given upstream package recursively and generate package expressions for all those packages that are not yet in Guix." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11962 guix-git/doc/guix.texi:11963 -#: guix-git/doc/guix.texi:12572 +#: guix-git/doc/guix.texi:12277 guix-git/doc/guix.texi:12278 +#: guix-git/doc/guix.texi:12887 #, no-wrap msgid "gem" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11972 +#: guix-git/doc/guix.texi:12287 msgid "Import metadata from @uref{https://rubygems.org/, RubyGems}. Information is taken from the JSON-formatted description available at @code{rubygems.org} and includes most relevant information, including runtime dependencies. There are some caveats, however. The metadata doesn't distinguish between synopses and descriptions, so the same string is used for both fields. Additionally, the details of non-Ruby dependencies required to build native extensions is unavailable and left as an exercise to the packager." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11974 +#: guix-git/doc/guix.texi:12289 msgid "The command below imports metadata for the @code{rails} Ruby package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11977 +#: guix-git/doc/guix.texi:12292 #, no-wrap msgid "guix import gem rails\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11987 guix-git/doc/guix.texi:11988 +#: guix-git/doc/guix.texi:12302 guix-git/doc/guix.texi:12303 #, no-wrap msgid "minetest" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11989 +#: guix-git/doc/guix.texi:12304 #, no-wrap msgid "ContentDB" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11998 +#: guix-git/doc/guix.texi:12313 msgid "Import metadata from @uref{https://content.minetest.net, ContentDB}. Information is taken from the JSON-formatted metadata provided through @uref{https://content.minetest.net/help/api/, ContentDB's API} and includes most relevant information, including dependencies. There are some caveats, however. The license information is often incomplete. The commit hash is sometimes missing. The descriptions are in the Markdown format, but Guix uses Texinfo instead. Texture packs and subgames are unsupported." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12000 +#: guix-git/doc/guix.texi:12315 msgid "The command below imports metadata for the Mesecons mod by Jeija:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12003 +#: guix-git/doc/guix.texi:12318 #, no-wrap msgid "guix import minetest Jeija/mesecons\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12006 +#: guix-git/doc/guix.texi:12321 msgid "The author name can also be left out:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12009 +#: guix-git/doc/guix.texi:12324 #, no-wrap msgid "guix import minetest mesecons\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12019 guix-git/doc/guix.texi:12568 +#: guix-git/doc/guix.texi:12334 guix-git/doc/guix.texi:12883 #, no-wrap msgid "cpan" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12020 +#: guix-git/doc/guix.texi:12335 #, no-wrap msgid "CPAN" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12028 +#: guix-git/doc/guix.texi:12343 msgid "Import metadata from @uref{https://www.metacpan.org/, MetaCPAN}. Information is taken from the JSON-formatted metadata provided through @uref{https://fastapi.metacpan.org/, MetaCPAN's API} and includes most relevant information, such as module dependencies. License information should be checked closely. If Perl is available in the store, then the @code{corelist} utility will be used to filter core modules out of the list of dependencies." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12031 +#: guix-git/doc/guix.texi:12346 msgid "The command command below imports metadata for the Acme::Boolean Perl module:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12034 +#: guix-git/doc/guix.texi:12349 #, no-wrap msgid "guix import cpan Acme::Boolean\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12036 guix-git/doc/guix.texi:12564 +#: guix-git/doc/guix.texi:12351 guix-git/doc/guix.texi:12879 #, no-wrap msgid "cran" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12037 +#: guix-git/doc/guix.texi:12352 #, no-wrap msgid "CRAN" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12038 +#: guix-git/doc/guix.texi:12353 #, no-wrap msgid "Bioconductor" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12042 +#: guix-git/doc/guix.texi:12357 msgid "Import metadata from @uref{https://cran.r-project.org/, CRAN}, the central repository for the @uref{https://r-project.org, GNU@tie{}R statistical and graphical environment}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12044 +#: guix-git/doc/guix.texi:12359 msgid "Information is extracted from the @file{DESCRIPTION} file of the package." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12046 +#: guix-git/doc/guix.texi:12361 msgid "The command command below imports metadata for the Cairo R package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12049 +#: guix-git/doc/guix.texi:12364 #, no-wrap msgid "guix import cran Cairo\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12055 +#: guix-git/doc/guix.texi:12370 #, no-wrap msgid "guix import cran rasterVis@@0.50.3\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12060 +#: guix-git/doc/guix.texi:12375 msgid "When @option{--recursive} is added, the importer will traverse the dependency graph of the given upstream package recursively and generate package expressions for all those packages that are not yet in Guix." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12067 +#: guix-git/doc/guix.texi:12382 msgid "When @option{--style=specification} is added, the importer will generate package definitions whose inputs are package specifications instead of references to package variables. This is useful when generated package definitions are to be appended to existing user modules, as the list of used package modules need not be changed. The default is @option{--style=variable}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12072 +#: guix-git/doc/guix.texi:12387 msgid "When @option{--archive=bioconductor} is added, metadata is imported from @uref{https://www.bioconductor.org/, Bioconductor}, a repository of R packages for the analysis and comprehension of high-throughput genomic data in bioinformatics." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12075 +#: guix-git/doc/guix.texi:12390 msgid "Information is extracted from the @file{DESCRIPTION} file contained in the package archive." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12077 +#: guix-git/doc/guix.texi:12392 msgid "The command below imports metadata for the GenomicRanges R package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12080 +#: guix-git/doc/guix.texi:12395 #, no-wrap msgid "guix import cran --archive=bioconductor GenomicRanges\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12085 +#: guix-git/doc/guix.texi:12400 msgid "Finally, you can also import R packages that have not yet been published on CRAN or Bioconductor as long as they are in a git repository. Use @option{--archive=git} followed by the URL of the git repository:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12088 +#: guix-git/doc/guix.texi:12403 #, no-wrap msgid "guix import cran --archive=git https://github.com/immunogenomics/harmony\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12090 +#: guix-git/doc/guix.texi:12405 #, no-wrap msgid "texlive" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12091 +#: guix-git/doc/guix.texi:12406 #, no-wrap msgid "TeX Live" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12092 +#: guix-git/doc/guix.texi:12407 #, no-wrap msgid "CTAN" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12096 +#: guix-git/doc/guix.texi:12411 msgid "Import TeX package information from the TeX Live package database for TeX packages that are part of the @uref{https://www.tug.org/texlive/, TeX Live distribution}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12101 +#: guix-git/doc/guix.texi:12416 msgid "Information about the package is obtained from the TeX Live package database, a plain text file that is included in the @code{texlive-bin} package. The source code is downloaded from possibly multiple locations in the SVN repository of the Tex Live project." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12104 +#: guix-git/doc/guix.texi:12419 msgid "The command command below imports metadata for the @code{fontspec} TeX package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12107 +#: guix-git/doc/guix.texi:12422 #, no-wrap msgid "guix import texlive fontspec\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12110 +#: guix-git/doc/guix.texi:12425 #, no-wrap msgid "JSON, import" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12113 +#: guix-git/doc/guix.texi:12428 msgid "Import package metadata from a local JSON file. Consider the following example package definition in JSON format:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12126 +#: guix-git/doc/guix.texi:12441 #, no-wrap msgid "" "@{\n" @@ -21668,17 +22209,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12132 +#: guix-git/doc/guix.texi:12447 msgid "The field names are the same as for the @code{} record (@xref{Defining Packages}). References to other packages are provided as JSON lists of quoted package specification strings such as @code{guile} or @code{guile@@2.0}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12135 +#: guix-git/doc/guix.texi:12450 msgid "The importer also supports a more explicit source definition using the common fields for @code{} records:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12148 +#: guix-git/doc/guix.texi:12463 #, no-wrap msgid "" "@{\n" @@ -21695,382 +22236,382 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12152 +#: guix-git/doc/guix.texi:12467 msgid "The command below reads metadata from the JSON file @code{hello.json} and outputs a package expression:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12155 +#: guix-git/doc/guix.texi:12470 #, no-wrap msgid "guix import json hello.json\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12157 guix-git/doc/guix.texi:12158 -#: guix-git/doc/guix.texi:12576 +#: guix-git/doc/guix.texi:12472 guix-git/doc/guix.texi:12473 +#: guix-git/doc/guix.texi:12891 #, no-wrap msgid "hackage" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12163 +#: guix-git/doc/guix.texi:12478 msgid "Import metadata from the Haskell community's central package archive @uref{https://hackage.haskell.org/, Hackage}. Information is taken from Cabal files and includes all the relevant information, including package dependencies." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12167 +#: guix-git/doc/guix.texi:12482 #, no-wrap msgid "--stdin" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12168 +#: guix-git/doc/guix.texi:12483 #, no-wrap msgid "-s" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12170 +#: guix-git/doc/guix.texi:12485 msgid "Read a Cabal file from standard input." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12170 guix-git/doc/guix.texi:12217 +#: guix-git/doc/guix.texi:12485 guix-git/doc/guix.texi:12532 #, no-wrap msgid "--no-test-dependencies" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12173 guix-git/doc/guix.texi:12220 +#: guix-git/doc/guix.texi:12488 guix-git/doc/guix.texi:12535 msgid "Do not include dependencies required only by the test suites." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12173 +#: guix-git/doc/guix.texi:12488 #, no-wrap msgid "--cabal-environment=@var{alist}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12174 +#: guix-git/doc/guix.texi:12489 #, no-wrap msgid "-e @var{alist}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12183 +#: guix-git/doc/guix.texi:12498 msgid "@var{alist} is a Scheme alist defining the environment in which the Cabal conditionals are evaluated. The accepted keys are: @code{os}, @code{arch}, @code{impl} and a string representing the name of a flag. The value associated with a flag has to be either the symbol @code{true} or @code{false}. The value associated with other keys has to conform to the Cabal file format definition. The default value associated with the keys @code{os}, @code{arch} and @code{impl} is @samp{linux}, @samp{x86_64} and @samp{ghc}, respectively." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12193 +#: guix-git/doc/guix.texi:12508 msgid "The command below imports metadata for the latest version of the HTTP Haskell package without including test dependencies and specifying the value of the flag @samp{network-uri} as @code{false}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12196 +#: guix-git/doc/guix.texi:12511 #, no-wrap msgid "guix import hackage -t -e \"'((\\\"network-uri\\\" . false))\" HTTP\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12200 +#: guix-git/doc/guix.texi:12515 msgid "A specific package version may optionally be specified by following the package name by an at-sign and a version number as in the following example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12203 +#: guix-git/doc/guix.texi:12518 #, no-wrap msgid "guix import hackage mtl@@2.1.3.1\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12205 guix-git/doc/guix.texi:12206 -#: guix-git/doc/guix.texi:12578 +#: guix-git/doc/guix.texi:12520 guix-git/doc/guix.texi:12521 +#: guix-git/doc/guix.texi:12893 #, no-wrap msgid "stackage" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12213 +#: guix-git/doc/guix.texi:12528 msgid "The @code{stackage} importer is a wrapper around the @code{hackage} one. It takes a package name, looks up the package version included in a long-term support (LTS) @uref{https://www.stackage.org, Stackage} release and uses the @code{hackage} importer to retrieve its metadata. Note that it is up to you to select an LTS release compatible with the GHC compiler used by Guix." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12220 +#: guix-git/doc/guix.texi:12535 #, no-wrap msgid "--lts-version=@var{version}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12221 +#: guix-git/doc/guix.texi:12536 #, no-wrap msgid "-l @var{version}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12224 +#: guix-git/doc/guix.texi:12539 msgid "@var{version} is the desired LTS release version. If omitted the latest release is used." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12233 +#: guix-git/doc/guix.texi:12548 msgid "The command below imports metadata for the HTTP Haskell package included in the LTS Stackage release version 7.18:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12236 +#: guix-git/doc/guix.texi:12551 #, no-wrap msgid "guix import stackage --lts-version=7.18 HTTP\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12238 guix-git/doc/guix.texi:12239 -#: guix-git/doc/guix.texi:12562 +#: guix-git/doc/guix.texi:12553 guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12877 #, no-wrap msgid "elpa" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12242 +#: guix-git/doc/guix.texi:12557 msgid "Import metadata from an Emacs Lisp Package Archive (ELPA) package repository (@pxref{Packages,,, emacs, The GNU Emacs Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12246 +#: guix-git/doc/guix.texi:12561 #, no-wrap msgid "--archive=@var{repo}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12247 +#: guix-git/doc/guix.texi:12562 #, no-wrap msgid "-a @var{repo}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12251 +#: guix-git/doc/guix.texi:12566 msgid "@var{repo} identifies the archive repository from which to retrieve the information. Currently the supported repositories and their identifiers are:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12255 +#: guix-git/doc/guix.texi:12570 msgid "@uref{https://elpa.gnu.org/packages, GNU}, selected by the @code{gnu} identifier. This is the default." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12261 +#: guix-git/doc/guix.texi:12576 msgid "Packages from @code{elpa.gnu.org} are signed with one of the keys contained in the GnuPG keyring at @file{share/emacs/25.1/etc/package-keyring.gpg} (or similar) in the @code{emacs} package (@pxref{Package Installation, ELPA package signatures,, emacs, The GNU Emacs Manual})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12265 +#: guix-git/doc/guix.texi:12580 msgid "@uref{https://elpa.nongnu.org/nongnu/, NonGNU}, selected by the @code{nongnu} identifier." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12269 +#: guix-git/doc/guix.texi:12584 msgid "@uref{https://stable.melpa.org/packages, MELPA-Stable}, selected by the @code{melpa-stable} identifier." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12273 +#: guix-git/doc/guix.texi:12588 msgid "@uref{https://melpa.org/packages, MELPA}, selected by the @code{melpa} identifier." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12282 guix-git/doc/guix.texi:12283 -#: guix-git/doc/guix.texi:12580 +#: guix-git/doc/guix.texi:12597 guix-git/doc/guix.texi:12598 +#: guix-git/doc/guix.texi:12895 #, no-wrap msgid "crate" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12286 +#: guix-git/doc/guix.texi:12601 msgid "Import metadata from the crates.io Rust package repository @uref{https://crates.io, crates.io}, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12289 +#: guix-git/doc/guix.texi:12604 #, no-wrap msgid "guix import crate blake2-rfc\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12292 +#: guix-git/doc/guix.texi:12607 msgid "The crate importer also allows you to specify a version string:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12295 +#: guix-git/doc/guix.texi:12610 #, no-wrap msgid "guix import crate constant-time-eq@@0.1.0\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12298 guix-git/doc/guix.texi:12314 -#: guix-git/doc/guix.texi:12362 guix-git/doc/guix.texi:12399 +#: guix-git/doc/guix.texi:12613 guix-git/doc/guix.texi:12629 +#: guix-git/doc/guix.texi:12677 guix-git/doc/guix.texi:12714 msgid "Additional options include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12307 +#: guix-git/doc/guix.texi:12622 #, no-wrap msgid "opam" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12308 +#: guix-git/doc/guix.texi:12623 #, no-wrap msgid "OPAM" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12309 +#: guix-git/doc/guix.texi:12624 #, no-wrap msgid "OCaml" msgstr "OCaml" #. type: table -#: guix-git/doc/guix.texi:12312 +#: guix-git/doc/guix.texi:12627 msgid "Import metadata from the @uref{https://opam.ocaml.org/, OPAM} package repository used by the OCaml community." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12321 +#: guix-git/doc/guix.texi:12636 #, no-wrap msgid "--repo" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12325 +#: guix-git/doc/guix.texi:12640 msgid "By default, packages are searched in the official OPAM repository. This option, which can be used more than once, lets you add other repositories which will be searched for packages. It accepts as valid arguments:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12327 +#: guix-git/doc/guix.texi:12642 #, no-wrap msgid "the name of a known repository - can be one of @code{opam}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12330 +#: guix-git/doc/guix.texi:12645 msgid "@code{coq} (equivalent to @code{coq-released}), @code{coq-core-dev}, @code{coq-extra-dev} or @code{grew}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12330 +#: guix-git/doc/guix.texi:12645 #, no-wrap msgid "the URL of a repository as expected by the" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12334 +#: guix-git/doc/guix.texi:12649 msgid "@code{opam repository add} command (for instance, the URL equivalent of the above @code{opam} name would be @uref{https://opam.ocaml.org})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12334 +#: guix-git/doc/guix.texi:12649 #, no-wrap msgid "the path to a local copy of a repository (a directory containing a" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12336 +#: guix-git/doc/guix.texi:12651 msgid "@file{packages/} sub-directory)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12341 +#: guix-git/doc/guix.texi:12656 msgid "Repositories are assumed to be passed to this option by order of preference. The additional repositories will not replace the default @code{opam} repository, which is always kept as a fallback." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12346 +#: guix-git/doc/guix.texi:12661 msgid "Also, please note that versions are not compared across repositories. The first repository (from left to right) that has at least one version of a given package will prevail over any others, and the version imported will be the latest one found @emph{in this repository only}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12349 guix-git/doc/guix.texi:12350 +#: guix-git/doc/guix.texi:12664 guix-git/doc/guix.texi:12665 #, no-wrap msgid "go" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12353 +#: guix-git/doc/guix.texi:12668 msgid "Import metadata for a Go module using @uref{https://proxy.golang.org, proxy.golang.org}." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12356 +#: guix-git/doc/guix.texi:12671 #, no-wrap msgid "guix import go gopkg.in/yaml.v2\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12360 +#: guix-git/doc/guix.texi:12675 msgid "It is possible to use a package specification with a @code{@@VERSION} suffix to import a specific version." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12369 +#: guix-git/doc/guix.texi:12684 #, no-wrap msgid "--pin-versions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12377 +#: guix-git/doc/guix.texi:12692 msgid "When using this option, the importer preserves the exact versions of the Go modules dependencies instead of using their latest available versions. This can be useful when attempting to import packages that recursively depend on former versions of themselves to build. When using this mode, the symbol of the package is made by appending the version to its name, so that multiple versions of the same package can coexist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12379 guix-git/doc/guix.texi:12380 -#: guix-git/doc/guix.texi:12560 +#: guix-git/doc/guix.texi:12694 guix-git/doc/guix.texi:12695 +#: guix-git/doc/guix.texi:12875 #, no-wrap msgid "egg" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12387 +#: guix-git/doc/guix.texi:12702 msgid "Import metadata for @uref{https://wiki.call-cc.org/eggs, CHICKEN eggs}. The information is taken from @file{PACKAGE.egg} files found in the @uref{git://code.call-cc.org/eggs-5-all, eggs-5-all} Git repository. However, it does not provide all the information that we need, there is no ``description'' field, and the licenses used are not always precise (BSD is often used instead of BSD-N)." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12390 +#: guix-git/doc/guix.texi:12705 #, no-wrap msgid "guix import egg sourcehut\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12396 +#: guix-git/doc/guix.texi:12711 #, no-wrap msgid "guix import egg arrays@@1.0\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12411 +#: guix-git/doc/guix.texi:12726 msgid "The structure of the @command{guix import} code is modular. It would be useful to have more importers for other package formats, and your help is welcome here (@pxref{Contributing})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:12413 +#: guix-git/doc/guix.texi:12728 #, no-wrap msgid "Invoking @command{guix refresh}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:12415 +#: guix-git/doc/guix.texi:12730 #, no-wrap msgid "guix refresh" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12423 +#: guix-git/doc/guix.texi:12738 msgid "The primary audience of the @command{guix refresh} command is packagers. As a user, you may be interested in the @option{--with-latest} option, which can bring you package update superpowers built upon @command{guix refresh} (@pxref{Package Transformation Options, @option{--with-latest}}). By default, @command{guix refresh} reports any packages provided by the distribution that are outdated compared to the latest upstream version, like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12428 +#: guix-git/doc/guix.texi:12743 #, no-wrap msgid "" "$ guix refresh\n" @@ -22079,12 +22620,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12432 +#: guix-git/doc/guix.texi:12747 msgid "Alternatively, one can specify packages to consider, in which case a warning is emitted for packages that lack an updater:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12437 +#: guix-git/doc/guix.texi:12752 #, no-wrap msgid "" "$ guix refresh coreutils guile guile-ssh\n" @@ -22093,17 +22634,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12446 +#: guix-git/doc/guix.texi:12761 msgid "@command{guix refresh} browses the upstream repository of each package and determines the highest version number of the releases therein. The command knows how to update specific types of packages: GNU packages, ELPA packages, etc.---see the documentation for @option{--type} below. There are many packages, though, for which it lacks a method to determine whether a new upstream release is available. However, the mechanism is extensible, so feel free to get in touch with us to add a new method!" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12451 +#: guix-git/doc/guix.texi:12766 msgid "Consider the packages specified, and all the packages upon which they depend." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12459 +#: guix-git/doc/guix.texi:12774 #, no-wrap msgid "" "$ guix refresh --recursive coreutils\n" @@ -22115,12 +22656,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12467 +#: guix-git/doc/guix.texi:12782 msgid "Sometimes the upstream name differs from the package name used in Guix, and @command{guix refresh} needs a little help. Most updaters honor the @code{upstream-name} property in package definitions, which can be used to that effect:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12474 +#: guix-git/doc/guix.texi:12789 #, no-wrap msgid "" "(define-public network-manager\n" @@ -22131,325 +22672,325 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12483 +#: guix-git/doc/guix.texi:12798 msgid "When passed @option{--update}, it modifies distribution source files to update the version numbers and source tarball hashes of those package recipes (@pxref{Defining Packages}). This is achieved by downloading each package's latest source tarball and its associated OpenPGP signature, authenticating the downloaded tarball against its signature using @command{gpgv}, and finally computing its hash---note that GnuPG must be installed and in @code{$PATH}; run @code{guix install gnupg} if needed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12489 +#: guix-git/doc/guix.texi:12804 msgid "When the public key used to sign the tarball is missing from the user's keyring, an attempt is made to automatically retrieve it from a public key server; when this is successful, the key is added to the user's keyring; otherwise, @command{guix refresh} reports an error." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12491 +#: guix-git/doc/guix.texi:12806 msgid "The following options are supported:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12499 guix-git/doc/guix.texi:13447 +#: guix-git/doc/guix.texi:12814 guix-git/doc/guix.texi:13804 msgid "This is useful to precisely refer to a package, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12502 +#: guix-git/doc/guix.texi:12817 #, no-wrap msgid "guix refresh -l -e '(@@@@ (gnu packages commencement) glibc-final)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12506 +#: guix-git/doc/guix.texi:12821 msgid "This command lists the dependents of the ``final'' libc (essentially all the packages)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12507 +#: guix-git/doc/guix.texi:12822 #, no-wrap msgid "--update" msgstr "--päivitä" #. type: itemx -#: guix-git/doc/guix.texi:12508 +#: guix-git/doc/guix.texi:12823 #, no-wrap msgid "-u" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12512 +#: guix-git/doc/guix.texi:12827 msgid "Update distribution source files (package recipes) in place. This is usually run from a checkout of the Guix source tree (@pxref{Running Guix Before It Is Installed}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12515 +#: guix-git/doc/guix.texi:12830 #, no-wrap msgid "$ ./pre-inst-env guix refresh -s non-core -u\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12518 +#: guix-git/doc/guix.texi:12833 msgid "@xref{Defining Packages}, for more information on package definitions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12519 +#: guix-git/doc/guix.texi:12834 #, no-wrap msgid "--select=[@var{subset}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12520 +#: guix-git/doc/guix.texi:12835 #, no-wrap msgid "-s @var{subset}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12523 +#: guix-git/doc/guix.texi:12838 msgid "Select all the packages in @var{subset}, one of @code{core} or @code{non-core}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12530 +#: guix-git/doc/guix.texi:12845 msgid "The @code{core} subset refers to all the packages at the core of the distribution---i.e., packages that are used to build ``everything else''. This includes GCC, libc, Binutils, Bash, etc. Usually, changing one of these packages in the distribution entails a rebuild of all the others. Thus, such updates are an inconvenience to users in terms of build time or bandwidth used to achieve the upgrade." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12534 +#: guix-git/doc/guix.texi:12849 msgid "The @code{non-core} subset refers to the remaining packages. It is typically useful in cases where an update of the core packages would be inconvenient." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12539 +#: guix-git/doc/guix.texi:12854 msgid "Select all the packages from the manifest in @var{file}. This is useful to check if any packages of the user manifest can be updated." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12540 +#: guix-git/doc/guix.texi:12855 #, no-wrap msgid "--type=@var{updater}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12541 +#: guix-git/doc/guix.texi:12856 #, no-wrap msgid "-t @var{updater}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12544 +#: guix-git/doc/guix.texi:12859 msgid "Select only packages handled by @var{updater} (may be a comma-separated list of updaters). Currently, @var{updater} may be one of:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12548 +#: guix-git/doc/guix.texi:12863 msgid "the updater for GNU packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12548 +#: guix-git/doc/guix.texi:12863 #, no-wrap msgid "savannah" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12550 +#: guix-git/doc/guix.texi:12865 msgid "the updater for packages hosted at @uref{https://savannah.gnu.org, Savannah};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12550 +#: guix-git/doc/guix.texi:12865 #, no-wrap msgid "sourceforge" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12552 +#: guix-git/doc/guix.texi:12867 msgid "the updater for packages hosted at @uref{https://sourceforge.net, SourceForge};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12552 +#: guix-git/doc/guix.texi:12867 #, no-wrap msgid "gnome" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12869 msgid "the updater for GNOME packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12869 #, no-wrap msgid "kde" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12556 +#: guix-git/doc/guix.texi:12871 msgid "the updater for KDE packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12556 +#: guix-git/doc/guix.texi:12871 #, no-wrap msgid "xorg" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12558 +#: guix-git/doc/guix.texi:12873 msgid "the updater for X.org packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12558 +#: guix-git/doc/guix.texi:12873 #, no-wrap msgid "kernel.org" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12560 +#: guix-git/doc/guix.texi:12875 msgid "the updater for packages hosted on kernel.org;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12562 +#: guix-git/doc/guix.texi:12877 msgid "the updater for @uref{https://wiki.call-cc.org/eggs/, Egg} packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12564 +#: guix-git/doc/guix.texi:12879 msgid "the updater for @uref{https://elpa.gnu.org/, ELPA} packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12566 +#: guix-git/doc/guix.texi:12881 msgid "the updater for @uref{https://cran.r-project.org/, CRAN} packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12566 +#: guix-git/doc/guix.texi:12881 #, no-wrap msgid "bioconductor" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12568 +#: guix-git/doc/guix.texi:12883 msgid "the updater for @uref{https://www.bioconductor.org/, Bioconductor} R packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12570 +#: guix-git/doc/guix.texi:12885 msgid "the updater for @uref{https://www.cpan.org/, CPAN} packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12572 +#: guix-git/doc/guix.texi:12887 msgid "the updater for @uref{https://pypi.python.org, PyPI} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12574 +#: guix-git/doc/guix.texi:12889 msgid "the updater for @uref{https://rubygems.org, RubyGems} packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12574 +#: guix-git/doc/guix.texi:12889 #, no-wrap msgid "github" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12576 +#: guix-git/doc/guix.texi:12891 msgid "the updater for @uref{https://github.com, GitHub} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12578 +#: guix-git/doc/guix.texi:12893 msgid "the updater for @uref{https://hackage.haskell.org, Hackage} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12580 +#: guix-git/doc/guix.texi:12895 msgid "the updater for @uref{https://www.stackage.org, Stackage} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12582 +#: guix-git/doc/guix.texi:12897 msgid "the updater for @uref{https://crates.io, Crates} packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12582 +#: guix-git/doc/guix.texi:12897 #, no-wrap msgid "launchpad" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12584 +#: guix-git/doc/guix.texi:12899 msgid "the updater for @uref{https://launchpad.net, Launchpad} packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12584 +#: guix-git/doc/guix.texi:12899 #, no-wrap msgid "generic-html" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12587 +#: guix-git/doc/guix.texi:12902 msgid "a generic updater that crawls the HTML page where the source tarball of the package is hosted, when applicable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12588 +#: guix-git/doc/guix.texi:12903 #, no-wrap msgid "generic-git" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12593 +#: guix-git/doc/guix.texi:12908 msgid "a generic updater for packages hosted on Git repositories. It tries to be smart about parsing Git tag names, but if it is not able to parse the tag name and compare tags correctly, users can define the following properties for a package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12595 +#: guix-git/doc/guix.texi:12910 #, no-wrap msgid "@code{release-tag-prefix}: a regular expression for matching a prefix of" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12597 guix-git/doc/guix.texi:12600 +#: guix-git/doc/guix.texi:12912 guix-git/doc/guix.texi:12915 msgid "the tag name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12598 +#: guix-git/doc/guix.texi:12913 #, no-wrap msgid "@code{release-tag-suffix}: a regular expression for matching a suffix of" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12601 +#: guix-git/doc/guix.texi:12916 #, no-wrap msgid "@code{release-tag-version-delimiter}: a string used as the delimiter in" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12603 +#: guix-git/doc/guix.texi:12918 msgid "the tag name for separating the numbers of the version." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12604 +#: guix-git/doc/guix.texi:12919 #, no-wrap msgid "@code{accept-pre-releases}: by default, the updater will ignore" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12607 +#: guix-git/doc/guix.texi:12922 msgid "pre-releases; to make it also look for pre-releases, set the this property to @code{#t}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12618 +#: guix-git/doc/guix.texi:12933 #, no-wrap msgid "" "(package\n" @@ -22462,12 +23003,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12625 +#: guix-git/doc/guix.texi:12940 msgid "For instance, the following command only checks for updates of Emacs packages hosted at @code{elpa.gnu.org} and for updates of CRAN packages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12630 +#: guix-git/doc/guix.texi:12945 #, no-wrap msgid "" "$ guix refresh --type=elpa,cran\n" @@ -22476,45 +23017,45 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12632 +#: guix-git/doc/guix.texi:12947 #, no-wrap msgid "--list-updaters" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12633 +#: guix-git/doc/guix.texi:12948 #, no-wrap msgid "-L" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12635 +#: guix-git/doc/guix.texi:12950 msgid "List available updaters and exit (see @option{--type} above)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12638 +#: guix-git/doc/guix.texi:12953 msgid "For each updater, display the fraction of packages it covers; at the end, display the fraction of packages covered by all these updaters." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12642 +#: guix-git/doc/guix.texi:12957 msgid "In addition, @command{guix refresh} can be passed one or more package names, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12645 +#: guix-git/doc/guix.texi:12960 #, no-wrap msgid "$ ./pre-inst-env guix refresh -u emacs idutils gcc@@4.8\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12652 +#: guix-git/doc/guix.texi:12967 msgid "The command above specifically updates the @code{emacs} and @code{idutils} packages. The @option{--select} option would have no effect in this case. You might also want to update definitions that correspond to the packages installed in your profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12656 +#: guix-git/doc/guix.texi:12971 #, no-wrap msgid "" "$ ./pre-inst-env guix refresh -u \\\n" @@ -22522,39 +23063,39 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12662 +#: guix-git/doc/guix.texi:12977 msgid "When considering whether to upgrade a package, it is sometimes convenient to know which packages would be affected by the upgrade and should be checked for compatibility. For this the following option may be used when passing @command{guix refresh} one or more package names:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12665 +#: guix-git/doc/guix.texi:12980 #, no-wrap msgid "--list-dependent" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12666 guix-git/doc/guix.texi:13028 +#: guix-git/doc/guix.texi:12981 guix-git/doc/guix.texi:13385 #, no-wrap msgid "-l" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12669 +#: guix-git/doc/guix.texi:12984 msgid "List top-level dependent packages that would need to be rebuilt as a result of upgrading one or more packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12673 +#: guix-git/doc/guix.texi:12988 msgid "@xref{Invoking guix graph, the @code{reverse-package} type of @command{guix graph}}, for information on how to visualize the list of dependents of a package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12679 +#: guix-git/doc/guix.texi:12994 msgid "Be aware that the @option{--list-dependent} option only @emph{approximates} the rebuilds that would be required as a result of an upgrade. More rebuilds might be required under some circumstances." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12684 +#: guix-git/doc/guix.texi:12999 #, no-wrap msgid "" "$ guix refresh --list-dependent flex\n" @@ -22563,23 +23104,23 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12688 +#: guix-git/doc/guix.texi:13003 msgid "The command above lists a set of packages that could be built to check for compatibility with an upgraded @code{flex} package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12691 +#: guix-git/doc/guix.texi:13006 #, no-wrap msgid "--list-transitive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12693 +#: guix-git/doc/guix.texi:13008 msgid "List all the packages which one or more packages depend upon." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12698 +#: guix-git/doc/guix.texi:13013 #, no-wrap msgid "" "$ guix refresh --list-transitive flex\n" @@ -22588,60 +23129,60 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12704 +#: guix-git/doc/guix.texi:13019 msgid "The command above lists a set of packages which, when changed, would cause @code{flex} to be rebuilt." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12706 +#: guix-git/doc/guix.texi:13021 msgid "The following options can be used to customize GnuPG operation:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12709 +#: guix-git/doc/guix.texi:13024 #, no-wrap msgid "--gpg=@var{command}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12712 +#: guix-git/doc/guix.texi:13027 msgid "Use @var{command} as the GnuPG 2.x command. @var{command} is searched for in @code{$PATH}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12713 +#: guix-git/doc/guix.texi:13028 #, no-wrap msgid "--keyring=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12719 +#: guix-git/doc/guix.texi:13034 msgid "Use @var{file} as the keyring for upstream keys. @var{file} must be in the @dfn{keybox format}. Keybox files usually have a name ending in @file{.kbx} and the GNU@tie{}Privacy Guard (GPG) can manipulate these files (@pxref{kbxutil, @command{kbxutil},, gnupg, Using the GNU Privacy Guard}, for information on a tool to manipulate keybox files)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12725 +#: guix-git/doc/guix.texi:13040 msgid "When this option is omitted, @command{guix refresh} uses @file{~/.config/guix/upstream/trustedkeys.kbx} as the keyring for upstream signing keys. OpenPGP signatures are checked against keys from this keyring; missing keys are downloaded to this keyring as well (see @option{--key-download} below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12728 +#: guix-git/doc/guix.texi:13043 msgid "You can export keys from your default GPG keyring into a keybox file using commands like this one:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12731 +#: guix-git/doc/guix.texi:13046 #, no-wrap msgid "gpg --export rms@@gnu.org | kbxutil --import-openpgp >> mykeyring.kbx\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12734 +#: guix-git/doc/guix.texi:13049 msgid "Likewise, you can fetch keys to a specific keybox file like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12738 +#: guix-git/doc/guix.texi:13053 #, no-wrap msgid "" "gpg --no-default-keyring --keyring mykeyring.kbx \\\n" @@ -22649,83 +23190,93 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12742 +#: guix-git/doc/guix.texi:13057 msgid "@xref{GPG Configuration Options, @option{--keyring},, gnupg, Using the GNU Privacy Guard}, for more information on GPG's @option{--keyring} option." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12746 +#: guix-git/doc/guix.texi:13061 msgid "Handle missing OpenPGP keys according to @var{policy}, which may be one of:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12748 guix-git/doc/guix.texi:12871 -#: guix-git/doc/guix.texi:22249 +#: guix-git/doc/guix.texi:13063 guix-git/doc/guix.texi:13228 +#: guix-git/doc/guix.texi:22611 #, no-wrap msgid "always" msgstr "aina" #. type: table -#: guix-git/doc/guix.texi:12751 +#: guix-git/doc/guix.texi:13066 msgid "Always download missing OpenPGP keys from the key server, and add them to the user's GnuPG keyring." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12752 guix-git/doc/guix.texi:22251 +#: guix-git/doc/guix.texi:13067 guix-git/doc/guix.texi:22613 #, no-wrap msgid "never" msgstr "ei koskaan" #. type: table -#: guix-git/doc/guix.texi:12754 +#: guix-git/doc/guix.texi:13069 msgid "Never try to download missing OpenPGP keys. Instead just bail out." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12755 +#: guix-git/doc/guix.texi:13070 #, no-wrap msgid "interactive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12758 +#: guix-git/doc/guix.texi:13073 msgid "When a package signed with an unknown OpenPGP key is encountered, ask the user whether to download it or not. This is the default behavior." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12760 +#: guix-git/doc/guix.texi:13075 #, no-wrap msgid "--key-server=@var{host}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12762 +#: guix-git/doc/guix.texi:13077 msgid "Use @var{host} as the OpenPGP key server when importing a public key." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12782 +#: guix-git/doc/guix.texi:13097 msgid "The @code{github} updater uses the @uref{https://developer.github.com/v3/, GitHub API} to query for new releases. When used repeatedly e.g.@: when refreshing all packages, GitHub will eventually refuse to answer any further API requests. By default 60 API requests per hour are allowed, and a full refresh on all GitHub packages in Guix requires more than this. Authentication with GitHub through the use of an API token alleviates these limits. To use an API token, set the environment variable @env{GUIX_GITHUB_TOKEN} to a token procured from @uref{https://github.com/settings/tokens} or otherwise." msgstr "" #. type: section -#: guix-git/doc/guix.texi:12785 +#: guix-git/doc/guix.texi:13100 #, no-wrap msgid "Invoking @command{guix style}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12791 -msgid "The @command{guix style} command helps packagers style their package definitions according to the latest fashionable trends. The command currently focuses on one aspect: the style of package inputs. It may eventually be extended to handle other stylistic matters." +#: guix-git/doc/guix.texi:13105 +msgid "The @command{guix style} command helps packagers style their package definitions according to the latest fashionable trends. The command currently provides the following styling rules:" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix.texi:13110 +msgid "formatting package definitions according to the project's conventions (@pxref{Formatting Code});" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix.texi:13113 +msgid "rewriting package inputs to the ``new style'', as explained below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12796 +#: guix-git/doc/guix.texi:13119 msgid "The way package inputs are written is going through a transition (@pxref{package Reference}, for more on package inputs). Until version 1.3.0, package inputs were written using the ``old style'', where each input was given an explicit label, most of the time the package name:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12803 +#: guix-git/doc/guix.texi:13126 #, no-wrap msgid "" "(package\n" @@ -22736,12 +23287,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12807 +#: guix-git/doc/guix.texi:13130 msgid "Today, the old style is deprecated and the preferred style looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12813 +#: guix-git/doc/guix.texi:13136 #, no-wrap msgid "" "(package\n" @@ -22751,267 +23302,328 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12818 +#: guix-git/doc/guix.texi:13141 msgid "Likewise, uses of @code{alist-delete} and friends to manipulate inputs is now deprecated in favor of @code{modify-inputs} (@pxref{Defining Package Variants}, for more info on @code{modify-inputs})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12823 -msgid "In the vast majority of cases, this is a purely mechanical change on the surface syntax that does not even incur a package rebuild. Running @command{guix style} can do that for you, whether you're working on packages in Guix proper or in an external channel." +#: guix-git/doc/guix.texi:13146 +msgid "In the vast majority of cases, this is a purely mechanical change on the surface syntax that does not even incur a package rebuild. Running @command{guix style -S inputs} can do that for you, whether you're working on packages in Guix proper or in an external channel." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12828 +#: guix-git/doc/guix.texi:13151 #, no-wrap msgid "guix style [@var{options}] @var{package}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12834 -msgid "This causes @command{guix style} to analyze and rewrite the definition of @var{package}@dots{}. It does so in a conservative way: preserving comments and bailing out if it cannot make sense of the code that appears in an inputs field. The available options are listed below." +#: guix-git/doc/guix.texi:13158 +msgid "This causes @command{guix style} to analyze and rewrite the definition of @var{package}@dots{} or, when @var{package} is omitted, of @emph{all} the packages. The @option{--styling} or @option{-S} option allows you to select the style rule, the default rule being @code{format}---see below." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:13160 guix-git/doc/guix.texi:14479 +msgid "The available options are listed below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12839 +#: guix-git/doc/guix.texi:13165 msgid "Show source file locations that would be edited but do not modify them." msgstr "" +#. type: item +#: guix-git/doc/guix.texi:13166 +#, no-wrap +msgid "--styling=@var{rule}" +msgstr "" + +#. type: itemx +#: guix-git/doc/guix.texi:13167 +#, no-wrap +msgid "-S @var{rule}" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:13169 +msgid "Apply @var{rule}, one of the following styling rules:" +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:13171 +#, no-wrap +msgid "format" +msgstr "alusta" + +#. type: table +#: guix-git/doc/guix.texi:13176 +msgid "Format the given package definition(s)---this is the default styling rule. For example, a packager running Guix on a checkout (@pxref{Running Guix Before It Is Installed}) might want to reformat the definition of the Coreutils package like so:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:13179 +#, no-wrap +msgid "./pre-inst-env guix style coreutils\n" +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:13181 +#, no-wrap +msgid "inputs" +msgstr "sisääntulot" + +#. type: table +#: guix-git/doc/guix.texi:13185 +msgid "Rewrite package inputs to the ``new style'', as described above. This is how you would rewrite inputs of package @code{whatnot} in your own channel:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:13188 +#, no-wrap +msgid "guix style -L ~/my/channel -S inputs whatnot\n" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:13194 +msgid "Rewriting is done in a conservative way: preserving comments and bailing out if it cannot make sense of the code that appears in an inputs field. The @option{--input-simplification} option described below provides fine-grain control over when inputs should be simplified." +msgstr "" + #. type: table -#: guix-git/doc/guix.texi:12848 +#: guix-git/doc/guix.texi:13204 msgid "Style the package @var{expr} evaluates to." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12853 +#: guix-git/doc/guix.texi:13209 #, no-wrap msgid "guix style -e '(@@ (gnu packages gcc) gcc-5)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12856 +#: guix-git/doc/guix.texi:13212 msgid "styles the @code{gcc-5} package definition." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12857 +#: guix-git/doc/guix.texi:13213 #, no-wrap msgid "--input-simplification=@var{policy}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12861 -msgid "Specify the package input simplification policy for cases where an input label does not match the corresponding package name. @var{policy} may be one of the following:" +#: guix-git/doc/guix.texi:13218 +msgid "When using the @code{inputs} styling rule, with @samp{-S inputs}, this option specifies the package input simplification policy for cases where an input label does not match the corresponding package name. @var{policy} may be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12863 +#: guix-git/doc/guix.texi:13220 #, no-wrap msgid "silent" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12866 +#: guix-git/doc/guix.texi:13223 msgid "Simplify inputs only when the change is ``silent'', meaning that the package does not need to be rebuilt (its derivation is unchanged)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12867 +#: guix-git/doc/guix.texi:13224 #, no-wrap msgid "safe" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12870 +#: guix-git/doc/guix.texi:13227 msgid "Simplify inputs only when that is ``safe'' to do: the package might need to be rebuilt, but the change is known to have no observable effect." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12874 +#: guix-git/doc/guix.texi:13231 msgid "Simplify inputs even when input labels do not match package names, and even if that might have an observable effect." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12878 +#: guix-git/doc/guix.texi:13235 msgid "The default is @code{silent}, meaning that input simplifications do not trigger any package rebuild." msgstr "" #. type: section -#: guix-git/doc/guix.texi:12881 +#: guix-git/doc/guix.texi:13238 #, no-wrap msgid "Invoking @command{guix lint}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:12883 +#: guix-git/doc/guix.texi:13240 #, no-wrap msgid "guix lint" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12884 +#: guix-git/doc/guix.texi:13241 #, no-wrap msgid "package, checking for errors" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12890 +#: guix-git/doc/guix.texi:13247 msgid "The @command{guix lint} command is meant to help package developers avoid common errors and use a consistent style. It runs a number of checks on a given set of packages in order to find common mistakes in their definitions. Available @dfn{checkers} include (see @option{--list-checkers} for a complete list):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12896 +#: guix-git/doc/guix.texi:13253 msgid "Validate certain typographical and stylistic rules about package descriptions and synopses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12897 +#: guix-git/doc/guix.texi:13254 #, no-wrap msgid "inputs-should-be-native" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12899 +#: guix-git/doc/guix.texi:13256 msgid "Identify inputs that should most likely be native inputs." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12902 +#: guix-git/doc/guix.texi:13259 #, no-wrap msgid "mirror-url" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12903 +#: guix-git/doc/guix.texi:13260 #, no-wrap msgid "github-url" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12904 +#: guix-git/doc/guix.texi:13261 #, no-wrap msgid "source-file-name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12911 +#: guix-git/doc/guix.texi:13268 msgid "Probe @code{home-page} and @code{source} URLs and report those that are invalid. Suggest a @code{mirror://} URL when applicable. If the @code{source} URL redirects to a GitHub URL, recommend usage of the GitHub URL@. Check that the source file name is meaningful, e.g.@: is not just a version number or ``git-checkout'', without a declared @code{file-name} (@pxref{origin Reference})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12912 +#: guix-git/doc/guix.texi:13269 #, no-wrap msgid "source-unstable-tarball" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12916 +#: guix-git/doc/guix.texi:13273 msgid "Parse the @code{source} URL to determine if a tarball from GitHub is autogenerated or if it is a release tarball. Unfortunately GitHub's autogenerated tarballs are sometimes regenerated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12920 +#: guix-git/doc/guix.texi:13277 msgid "Check that the derivation of the given packages can be successfully computed for all the supported systems (@pxref{Derivations})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12921 +#: guix-git/doc/guix.texi:13278 #, no-wrap msgid "profile-collisions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12927 +#: guix-git/doc/guix.texi:13284 msgid "Check whether installing the given packages in a profile would lead to collisions. Collisions occur when several packages with the same name but a different version or a different store file name are propagated. @xref{package Reference, @code{propagated-inputs}}, for more information on propagated inputs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12928 +#: guix-git/doc/guix.texi:13285 #, no-wrap msgid "archival" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12929 +#: guix-git/doc/guix.texi:13286 #, no-wrap msgid "Software Heritage, source code archive" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12930 +#: guix-git/doc/guix.texi:13287 #, no-wrap msgid "archival of source code, Software Heritage" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12933 +#: guix-git/doc/guix.texi:13290 msgid "Checks whether the package's source code is archived at @uref{https://www.softwareheritage.org, Software Heritage}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12941 +#: guix-git/doc/guix.texi:13298 msgid "When the source code that is not archived comes from a version-control system (VCS)---e.g., it's obtained with @code{git-fetch}, send Software Heritage a ``save'' request so that it eventually archives it. This ensures that the source will remain available in the long term, and that Guix can fall back to Software Heritage should the source code disappear from its original host. The status of recent ``save'' requests can be @uref{https://archive.softwareheritage.org/save/#requests, viewed on-line}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12946 +#: guix-git/doc/guix.texi:13303 msgid "When source code is a tarball obtained with @code{url-fetch}, simply print a message when it is not archived. As of this writing, Software Heritage does not allow requests to save arbitrary tarballs; we are working on ways to ensure that non-VCS source code is also archived." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12952 +#: guix-git/doc/guix.texi:13309 msgid "Software Heritage @uref{https://archive.softwareheritage.org/api/#rate-limiting, limits the request rate per IP address}. When the limit is reached, @command{guix lint} prints a message and the @code{archival} checker stops doing anything until that limit has been reset." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12953 +#: guix-git/doc/guix.texi:13310 #, no-wrap msgid "cve" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12954 guix-git/doc/guix.texi:37946 +#: guix-git/doc/guix.texi:13311 guix-git/doc/guix.texi:38435 #, no-wrap msgid "security vulnerabilities" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12955 +#: guix-git/doc/guix.texi:13312 #, no-wrap msgid "CVE, Common Vulnerabilities and Exposures" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12960 +#: guix-git/doc/guix.texi:13317 msgid "Report known vulnerabilities found in the Common Vulnerabilities and Exposures (CVE) databases of the current and past year @uref{https://nvd.nist.gov/vuln/data-feeds, published by the US NIST}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12962 +#: guix-git/doc/guix.texi:13319 msgid "To view information about a particular vulnerability, visit pages such as:" msgstr "" #. type: indicateurl{#1} -#: guix-git/doc/guix.texi:12966 +#: guix-git/doc/guix.texi:13323 msgid "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-YYYY-ABCD" msgstr "" #. type: indicateurl{#1} -#: guix-git/doc/guix.texi:12968 +#: guix-git/doc/guix.texi:13325 msgid "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-YYYY-ABCD" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12973 +#: guix-git/doc/guix.texi:13330 msgid "where @code{CVE-YYYY-ABCD} is the CVE identifier---e.g., @code{CVE-2015-7554}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12978 +#: guix-git/doc/guix.texi:13335 msgid "Package developers can specify in package recipes the @uref{https://nvd.nist.gov/products/cpe,Common Platform Enumeration (CPE)} name and version of the package when they differ from the name or version that Guix uses, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12986 +#: guix-git/doc/guix.texi:13343 #, no-wrap msgid "" "(package\n" @@ -23023,12 +23635,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12993 +#: guix-git/doc/guix.texi:13350 msgid "Some entries in the CVE database do not specify which version of a package they apply to, and would thus ``stick around'' forever. Package developers who found CVE alerts and verified they can be ignored can declare them as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:13003 +#: guix-git/doc/guix.texi:13360 #, no-wrap msgid "" "(package\n" @@ -23042,124 +23654,124 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13005 +#: guix-git/doc/guix.texi:13362 #, no-wrap msgid "formatting" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13008 +#: guix-git/doc/guix.texi:13365 msgid "Warn about obvious source code formatting issues: trailing white space, use of tabulations, etc." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13009 +#: guix-git/doc/guix.texi:13366 #, no-wrap msgid "input-labels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13015 +#: guix-git/doc/guix.texi:13372 msgid "Report old-style input labels that do not match the name of the corresponding package. This aims to help migrate from the ``old input style''. @xref{package Reference}, for more information on package inputs and input styles. @xref{Invoking guix style}, on how to migrate to the new style." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13021 +#: guix-git/doc/guix.texi:13378 #, no-wrap msgid "guix lint @var{options} @var{package}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13025 +#: guix-git/doc/guix.texi:13382 msgid "If no package is given on the command line, then all packages are checked. The @var{options} may be zero or more of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13027 +#: guix-git/doc/guix.texi:13384 #, no-wrap msgid "--list-checkers" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13031 +#: guix-git/doc/guix.texi:13388 msgid "List and describe all the available checkers that will be run on packages and exit." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13032 +#: guix-git/doc/guix.texi:13389 #, no-wrap msgid "--checkers" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13033 +#: guix-git/doc/guix.texi:13390 #, no-wrap msgid "-c" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13036 +#: guix-git/doc/guix.texi:13393 msgid "Only enable the checkers specified in a comma-separated list using the names returned by @option{--list-checkers}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13037 +#: guix-git/doc/guix.texi:13394 #, no-wrap msgid "--exclude" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13041 +#: guix-git/doc/guix.texi:13398 msgid "Only disable the checkers specified in a comma-separated list using the names returned by @option{--list-checkers}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13042 +#: guix-git/doc/guix.texi:13399 #, no-wrap msgid "--no-network" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13045 +#: guix-git/doc/guix.texi:13402 msgid "Only enable the checkers that do not depend on Internet access." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13057 +#: guix-git/doc/guix.texi:13414 #, no-wrap msgid "Invoking @command{guix size}" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:13059 guix-git/doc/guix.texi:35624 +#: guix-git/doc/guix.texi:13416 guix-git/doc/guix.texi:36114 #, no-wrap msgid "size" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13060 +#: guix-git/doc/guix.texi:13417 #, no-wrap msgid "package size" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13062 +#: guix-git/doc/guix.texi:13419 #, no-wrap msgid "guix size" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13069 +#: guix-git/doc/guix.texi:13426 msgid "The @command{guix size} command helps package developers profile the disk usage of packages. It is easy to overlook the impact of an additional dependency added to a package, or the impact of using a single output for a package that could easily be split (@pxref{Packages with Multiple Outputs}). Such are the typical issues that @command{guix size} can highlight." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13074 +#: guix-git/doc/guix.texi:13431 msgid "The command can be passed one or more package specifications such as @code{gcc@@4.8} or @code{guile:debug}, or a file name in the store. Consider this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13087 +#: guix-git/doc/guix.texi:13444 #, no-wrap msgid "" "$ guix size coreutils\n" @@ -23176,54 +23788,54 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13093 +#: guix-git/doc/guix.texi:13450 msgid "The store items listed here constitute the @dfn{transitive closure} of Coreutils---i.e., Coreutils and all its dependencies, recursively---as would be returned by:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13096 +#: guix-git/doc/guix.texi:13453 #, no-wrap msgid "$ guix gc -R /gnu/store/@dots{}-coreutils-8.23\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13104 +#: guix-git/doc/guix.texi:13461 msgid "Here the output shows three columns next to store items. The first column, labeled ``total'', shows the size in mebibytes (MiB) of the closure of the store item---that is, its own size plus the size of all its dependencies. The next column, labeled ``self'', shows the size of the item itself. The last column shows the ratio of the size of the item itself to the space occupied by all the items listed here." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13110 +#: guix-git/doc/guix.texi:13467 msgid "In this example, we see that the closure of Coreutils weighs in at 79@tie{}MiB, most of which is taken by libc and GCC's run-time support libraries. (That libc and GCC's libraries represent a large fraction of the closure is not a problem @i{per se} because they are always available on the system anyway.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13113 +#: guix-git/doc/guix.texi:13470 msgid "Since the command also accepts store file names, assessing the size of a build result is straightforward:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13116 +#: guix-git/doc/guix.texi:13473 #, no-wrap msgid "guix size $(guix system build config.scm)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13126 +#: guix-git/doc/guix.texi:13483 msgid "When the package(s) passed to @command{guix size} are available in the store@footnote{More precisely, @command{guix size} looks for the @emph{ungrafted} variant of the given package(s), as returned by @code{guix build @var{package} --no-grafts}. @xref{Security Updates}, for information on grafts.}, @command{guix size} queries the daemon to determine its dependencies, and measures its size in the store, similar to @command{du -ms --apparent-size} (@pxref{du invocation,,, coreutils, GNU Coreutils})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13131 +#: guix-git/doc/guix.texi:13488 msgid "When the given packages are @emph{not} in the store, @command{guix size} reports information based on the available substitutes (@pxref{Substitutes}). This makes it possible it to profile disk usage of store items that are not even on disk, only available remotely." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13133 +#: guix-git/doc/guix.texi:13490 msgid "You can also specify several package names:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13143 +#: guix-git/doc/guix.texi:13500 #, no-wrap msgid "" "$ guix size coreutils grep sed bash\n" @@ -23237,365 +23849,365 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13149 +#: guix-git/doc/guix.texi:13506 msgid "In this example we see that the combination of the four packages takes 102.3@tie{}MiB in total, which is much less than the sum of each closure since they have a lot of dependencies in common." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13155 +#: guix-git/doc/guix.texi:13512 msgid "When looking at the profile returned by @command{guix size}, you may find yourself wondering why a given package shows up in the profile at all. To understand it, you can use @command{guix graph --path -t references} to display the shortest path between the two packages (@pxref{Invoking guix graph})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13157 +#: guix-git/doc/guix.texi:13514 msgid "The available options are:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13163 +#: guix-git/doc/guix.texi:13520 msgid "Use substitute information from @var{urls}. @xref{client-substitute-urls, the same option for @code{guix build}}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13164 +#: guix-git/doc/guix.texi:13521 #, no-wrap msgid "--sort=@var{key}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13166 +#: guix-git/doc/guix.texi:13523 msgid "Sort lines according to @var{key}, one of the following options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13168 +#: guix-git/doc/guix.texi:13525 #, no-wrap msgid "self" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13170 +#: guix-git/doc/guix.texi:13527 msgid "the size of each item (the default);" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13172 +#: guix-git/doc/guix.texi:13529 msgid "the total size of the item's closure." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13174 +#: guix-git/doc/guix.texi:13531 #, no-wrap msgid "--map-file=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13176 +#: guix-git/doc/guix.texi:13533 msgid "Write a graphical map of disk usage in PNG format to @var{file}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13178 +#: guix-git/doc/guix.texi:13535 msgid "For the example above, the map looks like this:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13181 +#: guix-git/doc/guix.texi:13538 msgid "@image{images/coreutils-size-map,5in,, map of Coreutils disk usage produced by @command{guix size}}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13186 +#: guix-git/doc/guix.texi:13543 msgid "This option requires that @uref{https://wingolog.org/software/guile-charting/, Guile-Charting} be installed and visible in Guile's module search path. When that is not the case, @command{guix size} fails as it tries to load it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13190 +#: guix-git/doc/guix.texi:13547 msgid "Consider packages for @var{system}---e.g., @code{x86_64-linux}." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13201 +#: guix-git/doc/guix.texi:13558 #, no-wrap msgid "Invoking @command{guix graph}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13203 +#: guix-git/doc/guix.texi:13560 #, no-wrap msgid "DAG" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13204 +#: guix-git/doc/guix.texi:13561 #, no-wrap msgid "guix graph" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13219 +#: guix-git/doc/guix.texi:13576 msgid "Packages and their dependencies form a @dfn{graph}, specifically a directed acyclic graph (DAG). It can quickly become difficult to have a mental model of the package DAG, so the @command{guix graph} command provides a visual representation of the DAG@. By default, @command{guix graph} emits a DAG representation in the input format of @uref{https://www.graphviz.org/, Graphviz}, so its output can be passed directly to the @command{dot} command of Graphviz. It can also emit an HTML page with embedded JavaScript code to display a ``chord diagram'' in a Web browser, using the @uref{https://d3js.org/, d3.js} library, or emit Cypher queries to construct a graph in a graph database supporting the @uref{https://www.opencypher.org/, openCypher} query language. With @option{--path}, it simply displays the shortest path between two packages. The general syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13222 +#: guix-git/doc/guix.texi:13579 #, no-wrap msgid "guix graph @var{options} @var{package}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13227 +#: guix-git/doc/guix.texi:13584 msgid "For example, the following command generates a PDF file representing the package DAG for the GNU@tie{}Core Utilities, showing its build-time dependencies:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13230 +#: guix-git/doc/guix.texi:13587 #, no-wrap msgid "guix graph coreutils | dot -Tpdf > dag.pdf\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13233 +#: guix-git/doc/guix.texi:13590 msgid "The output looks like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13235 +#: guix-git/doc/guix.texi:13592 msgid "@image{images/coreutils-graph,2in,,Dependency graph of the GNU Coreutils}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13237 +#: guix-git/doc/guix.texi:13594 msgid "Nice little graph, no?" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13240 +#: guix-git/doc/guix.texi:13597 msgid "You may find it more pleasant to navigate the graph interactively with @command{xdot} (from the @code{xdot} package):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13243 +#: guix-git/doc/guix.texi:13600 #, no-wrap msgid "guix graph coreutils | xdot -\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13250 +#: guix-git/doc/guix.texi:13607 msgid "But there is more than one graph! The one above is concise: it is the graph of package objects, omitting implicit inputs such as GCC, libc, grep, etc. It is often useful to have such a concise graph, but sometimes one may want to see more details. @command{guix graph} supports several types of graphs, allowing you to choose the level of detail:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13256 +#: guix-git/doc/guix.texi:13613 msgid "This is the default type used in the example above. It shows the DAG of package objects, excluding implicit dependencies. It is concise, but filters out many details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13257 +#: guix-git/doc/guix.texi:13614 #, no-wrap msgid "reverse-package" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13259 +#: guix-git/doc/guix.texi:13616 msgid "This shows the @emph{reverse} DAG of packages. For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13262 +#: guix-git/doc/guix.texi:13619 #, no-wrap msgid "guix graph --type=reverse-package ocaml\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13267 +#: guix-git/doc/guix.texi:13624 msgid "...@: yields the graph of packages that @emph{explicitly} depend on OCaml (if you are also interested in cases where OCaml is an implicit dependency, see @code{reverse-bag} below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13272 +#: guix-git/doc/guix.texi:13629 msgid "Note that for core packages this can yield huge graphs. If all you want is to know the number of packages that depend on a given package, use @command{guix refresh --list-dependent} (@pxref{Invoking guix refresh, @option{--list-dependent}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13273 +#: guix-git/doc/guix.texi:13630 #, no-wrap msgid "bag-emerged" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13275 +#: guix-git/doc/guix.texi:13632 msgid "This is the package DAG, @emph{including} implicit inputs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13277 +#: guix-git/doc/guix.texi:13634 msgid "For instance, the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13280 +#: guix-git/doc/guix.texi:13637 #, no-wrap msgid "guix graph --type=bag-emerged coreutils\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13283 +#: guix-git/doc/guix.texi:13640 msgid "...@: yields this bigger graph:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13285 +#: guix-git/doc/guix.texi:13642 msgid "@image{images/coreutils-bag-graph,,5in,Detailed dependency graph of the GNU Coreutils}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13288 +#: guix-git/doc/guix.texi:13645 msgid "At the bottom of the graph, we see all the implicit inputs of @var{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13292 +#: guix-git/doc/guix.texi:13649 msgid "Now, note that the dependencies of these implicit inputs---that is, the @dfn{bootstrap dependencies} (@pxref{Bootstrapping})---are not shown here, for conciseness." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13293 +#: guix-git/doc/guix.texi:13650 #, no-wrap msgid "bag" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13296 +#: guix-git/doc/guix.texi:13653 msgid "Similar to @code{bag-emerged}, but this time including all the bootstrap dependencies." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13297 +#: guix-git/doc/guix.texi:13654 #, no-wrap msgid "bag-with-origins" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13299 +#: guix-git/doc/guix.texi:13656 msgid "Similar to @code{bag}, but also showing origins and their dependencies." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13300 +#: guix-git/doc/guix.texi:13657 #, no-wrap msgid "reverse-bag" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13303 +#: guix-git/doc/guix.texi:13660 msgid "This shows the @emph{reverse} DAG of packages. Unlike @code{reverse-package}, it also takes implicit dependencies into account. For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13306 +#: guix-git/doc/guix.texi:13663 #, no-wrap msgid "guix graph -t reverse-bag dune\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13313 +#: guix-git/doc/guix.texi:13670 msgid "...@: yields the graph of all packages that depend on Dune, directly or indirectly. Since Dune is an @emph{implicit} dependency of many packages @i{via} @code{dune-build-system}, this shows a large number of packages, whereas @code{reverse-package} would show very few if any." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13319 +#: guix-git/doc/guix.texi:13676 msgid "This is the most detailed representation: It shows the DAG of derivations (@pxref{Derivations}) and plain store items. Compared to the above representation, many additional nodes are visible, including build scripts, patches, Guile modules, etc." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13322 +#: guix-git/doc/guix.texi:13679 msgid "For this type of graph, it is also possible to pass a @file{.drv} file name instead of a package name, as in:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13325 +#: guix-git/doc/guix.texi:13682 #, no-wrap msgid "guix graph -t derivation $(guix system build -d my-config.scm)\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13327 +#: guix-git/doc/guix.texi:13684 #, no-wrap msgid "module" msgstr "moduuli" #. type: table -#: guix-git/doc/guix.texi:13331 +#: guix-git/doc/guix.texi:13688 msgid "This is the graph of @dfn{package modules} (@pxref{Package Modules}). For example, the following command shows the graph for the package module that defines the @code{guile} package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13334 +#: guix-git/doc/guix.texi:13691 #, no-wrap msgid "guix graph -t module guile | xdot -\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13339 +#: guix-git/doc/guix.texi:13696 msgid "All the types above correspond to @emph{build-time dependencies}. The following graph type represents the @emph{run-time dependencies}:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13344 +#: guix-git/doc/guix.texi:13701 msgid "This is the graph of @dfn{references} of a package output, as returned by @command{guix gc --references} (@pxref{Invoking guix gc})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13347 +#: guix-git/doc/guix.texi:13704 msgid "If the given package output is not available in the store, @command{guix graph} attempts to obtain dependency information from substitutes." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13351 +#: guix-git/doc/guix.texi:13708 msgid "Here you can also pass a store file name instead of a package name. For example, the command below produces the reference graph of your profile (which can be big!):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13354 +#: guix-git/doc/guix.texi:13711 #, no-wrap msgid "guix graph -t references $(readlink -f ~/.guix-profile)\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13356 +#: guix-git/doc/guix.texi:13713 #, no-wrap msgid "referrers" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13359 +#: guix-git/doc/guix.texi:13716 msgid "This is the graph of the @dfn{referrers} of a store item, as returned by @command{guix gc --referrers} (@pxref{Invoking guix gc})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13365 +#: guix-git/doc/guix.texi:13722 msgid "This relies exclusively on local information from your store. For instance, let us suppose that the current Inkscape is available in 10 profiles on your machine; @command{guix graph -t referrers inkscape} will show a graph rooted at Inkscape and with those 10 profiles linked to it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13368 +#: guix-git/doc/guix.texi:13725 msgid "It can help determine what is preventing a store item from being garbage collected." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13371 +#: guix-git/doc/guix.texi:13728 #, no-wrap msgid "shortest path, between packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13378 +#: guix-git/doc/guix.texi:13735 msgid "Often, the graph of the package you are interested in does not fit on your screen, and anyway all you want to know is @emph{why} that package actually depends on some seemingly unrelated package. The @option{--path} option instructs @command{guix graph} to display the shortest path between two packages (or derivations, or store items, etc.):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13392 +#: guix-git/doc/guix.texi:13749 #, no-wrap msgid "" "$ guix graph --path emacs libunistring\n" @@ -23613,88 +24225,88 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13400 +#: guix-git/doc/guix.texi:13757 msgid "Sometimes you still want to visualize the graph but would like to trim it so it can actually be displayed. One way to do it is via the @option{--max-depth} (or @option{-M}) option, which lets you specify the maximum depth of the graph. In the example below, we visualize only @code{libreoffice} and the nodes whose distance to @code{libreoffice} is at most 2:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13403 +#: guix-git/doc/guix.texi:13760 #, no-wrap msgid "guix graph -M 2 libreoffice | xdot -f fdp -\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13407 +#: guix-git/doc/guix.texi:13764 msgid "Mind you, that's still a big ball of spaghetti, but at least @command{dot} can render it quickly and it can be browsed somewhat." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13409 +#: guix-git/doc/guix.texi:13766 msgid "The available options are the following:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13415 +#: guix-git/doc/guix.texi:13772 msgid "Produce a graph output of @var{type}, where @var{type} must be one of the values listed above." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13416 +#: guix-git/doc/guix.texi:13773 #, no-wrap msgid "--list-types" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13418 +#: guix-git/doc/guix.texi:13775 msgid "List the supported graph types." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13419 +#: guix-git/doc/guix.texi:13776 #, no-wrap msgid "--backend=@var{backend}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13420 +#: guix-git/doc/guix.texi:13777 #, no-wrap msgid "-b @var{backend}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13422 +#: guix-git/doc/guix.texi:13779 msgid "Produce a graph using the selected @var{backend}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13423 +#: guix-git/doc/guix.texi:13780 #, no-wrap msgid "--list-backends" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13425 +#: guix-git/doc/guix.texi:13782 msgid "List the supported graph backends." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13427 +#: guix-git/doc/guix.texi:13784 msgid "Currently, the available backends are Graphviz and d3.js." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13428 +#: guix-git/doc/guix.texi:13785 #, no-wrap msgid "--path" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13433 +#: guix-git/doc/guix.texi:13790 msgid "Display the shortest path between two nodes of the type specified by @option{--type}. The example below shows the shortest path between @code{libreoffice} and @code{llvm} according to the references of @code{libreoffice}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13440 +#: guix-git/doc/guix.texi:13797 #, no-wrap msgid "" "$ guix graph --path -t references libreoffice llvm\n" @@ -23705,398 +24317,398 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13450 +#: guix-git/doc/guix.texi:13807 #, no-wrap msgid "guix graph -e '(@@@@ (gnu packages commencement) gnu-make-final)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13455 +#: guix-git/doc/guix.texi:13812 msgid "Display the graph for @var{system}---e.g., @code{i686-linux}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13458 +#: guix-git/doc/guix.texi:13815 msgid "The package dependency graph is largely architecture-independent, but there are some architecture-dependent bits that this option allows you to visualize." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13474 +#: guix-git/doc/guix.texi:13831 msgid "On top of that, @command{guix graph} supports all the usual package transformation options (@pxref{Package Transformation Options}). This makes it easy to view the effect of a graph-rewriting transformation such as @option{--with-input}. For example, the command below outputs the graph of @code{git} once @code{openssl} has been replaced by @code{libressl} everywhere in the graph:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13477 +#: guix-git/doc/guix.texi:13834 #, no-wrap msgid "guix graph git --with-input=openssl=libressl\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13480 +#: guix-git/doc/guix.texi:13837 msgid "So many possibilities, so much fun!" msgstr "" #. type: section -#: guix-git/doc/guix.texi:13482 +#: guix-git/doc/guix.texi:13839 #, no-wrap msgid "Invoking @command{guix publish}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13484 +#: guix-git/doc/guix.texi:13841 #, no-wrap msgid "guix publish" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13488 +#: guix-git/doc/guix.texi:13845 msgid "The purpose of @command{guix publish} is to enable users to easily share their store with others, who can then use it as a substitute server (@pxref{Substitutes})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13494 +#: guix-git/doc/guix.texi:13851 msgid "When @command{guix publish} runs, it spawns an HTTP server which allows anyone with network access to obtain substitutes from it. This means that any machine running Guix can also act as if it were a build farm, since the HTTP interface is compatible with Cuirass, the software behind the @code{@value{SUBSTITUTE-SERVER-1}} build farm." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13500 +#: guix-git/doc/guix.texi:13857 msgid "For security, each substitute is signed, allowing recipients to check their authenticity and integrity (@pxref{Substitutes}). Because @command{guix publish} uses the signing key of the system, which is only readable by the system administrator, it must be started as root; the @option{--user} option makes it drop root privileges early on." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13504 +#: guix-git/doc/guix.texi:13861 msgid "The signing key pair must be generated before @command{guix publish} is launched, using @command{guix archive --generate-key} (@pxref{Invoking guix archive})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13509 +#: guix-git/doc/guix.texi:13866 msgid "When the @option{--advertise} option is passed, the server advertises its availability on the local network using multicast DNS (mDNS) and DNS service discovery (DNS-SD), currently @i{via} Guile-Avahi (@pxref{Top,,, guile-avahi, Using Avahi in Guile Scheme Programs})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13514 +#: guix-git/doc/guix.texi:13871 #, no-wrap msgid "guix publish @var{options}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13518 +#: guix-git/doc/guix.texi:13875 msgid "Running @command{guix publish} without any additional arguments will spawn an HTTP server on port 8080:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13521 +#: guix-git/doc/guix.texi:13878 #, no-wrap msgid "guix publish\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13525 +#: guix-git/doc/guix.texi:13882 msgid "Once a publishing server has been authorized, the daemon may download substitutes from it. @xref{Getting Substitutes from Other Servers}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13533 +#: guix-git/doc/guix.texi:13890 msgid "By default, @command{guix publish} compresses archives on the fly as it serves them. This ``on-the-fly'' mode is convenient in that it requires no setup and is immediately available. However, when serving lots of clients, we recommend using the @option{--cache} option, which enables caching of the archives before they are sent to clients---see below for details. The @command{guix weather} command provides a handy way to check what a server provides (@pxref{Invoking guix weather})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13540 +#: guix-git/doc/guix.texi:13897 msgid "As a bonus, @command{guix publish} also serves as a content-addressed mirror for source files referenced in @code{origin} records (@pxref{origin Reference}). For instance, assuming @command{guix publish} is running on @code{example.org}, the following URL returns the raw @file{hello-2.10.tar.gz} file with the given SHA256 hash (represented in @code{nix-base32} format, @pxref{Invoking guix hash}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13543 +#: guix-git/doc/guix.texi:13900 #, no-wrap msgid "http://example.org/file/hello-2.10.tar.gz/sha256/0ssi1@dots{}ndq1i\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13547 +#: guix-git/doc/guix.texi:13904 msgid "Obviously, these URLs only work for files that are in the store; in other cases, they return 404 (``Not Found'')." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13548 +#: guix-git/doc/guix.texi:13905 #, no-wrap msgid "build logs, publication" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13550 +#: guix-git/doc/guix.texi:13907 msgid "Build logs are available from @code{/log} URLs like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13553 +#: guix-git/doc/guix.texi:13910 #, no-wrap msgid "http://example.org/log/gwspk@dots{}-guile-2.2.3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13563 +#: guix-git/doc/guix.texi:13920 msgid "When @command{guix-daemon} is configured to save compressed build logs, as is the case by default (@pxref{Invoking guix-daemon}), @code{/log} URLs return the compressed log as-is, with an appropriate @code{Content-Type} and/or @code{Content-Encoding} header. We recommend running @command{guix-daemon} with @option{--log-compression=gzip} since Web browsers can automatically decompress it, which is not the case with Bzip2 compression." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13567 +#: guix-git/doc/guix.texi:13924 #, no-wrap msgid "--port=@var{port}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13568 +#: guix-git/doc/guix.texi:13925 #, no-wrap msgid "-p @var{port}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13570 +#: guix-git/doc/guix.texi:13927 msgid "Listen for HTTP requests on @var{port}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13571 +#: guix-git/doc/guix.texi:13928 #, no-wrap msgid "--listen=@var{host}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13574 +#: guix-git/doc/guix.texi:13931 msgid "Listen on the network interface for @var{host}. The default is to accept connections from any interface." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13579 +#: guix-git/doc/guix.texi:13936 msgid "Change privileges to @var{user} as soon as possible---i.e., once the server socket is open and the signing key has been read." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13580 +#: guix-git/doc/guix.texi:13937 #, no-wrap msgid "--compression[=@var{method}[:@var{level}]]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13581 +#: guix-git/doc/guix.texi:13938 #, no-wrap msgid "-C [@var{method}[:@var{level}]]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13585 +#: guix-git/doc/guix.texi:13942 msgid "Compress data using the given @var{method} and @var{level}. @var{method} is one of @code{lzip}, @code{zstd}, and @code{gzip}; when @var{method} is omitted, @code{gzip} is used." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13589 +#: guix-git/doc/guix.texi:13946 msgid "When @var{level} is zero, disable compression. The range 1 to 9 corresponds to different compression levels: 1 is the fastest, and 9 is the best (CPU-intensive). The default is 3." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13596 +#: guix-git/doc/guix.texi:13953 msgid "Usually, @code{lzip} compresses noticeably better than @code{gzip} for a small increase in CPU usage; see @uref{https://nongnu.org/lzip/lzip_benchmark.html,benchmarks on the lzip Web page}. However, @code{lzip} achieves low decompression throughput (on the order of 50@tie{}MiB/s on modern hardware), which can be a bottleneck for someone who downloads over a fast network connection." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13600 +#: guix-git/doc/guix.texi:13957 msgid "The compression ratio of @code{zstd} is between that of @code{lzip} and that of @code{gzip}; its main advantage is a @uref{https://facebook.github.io/zstd/,high decompression speed}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13609 +#: guix-git/doc/guix.texi:13966 msgid "Unless @option{--cache} is used, compression occurs on the fly and the compressed streams are not cached. Thus, to reduce load on the machine that runs @command{guix publish}, it may be a good idea to choose a low compression level, to run @command{guix publish} behind a caching proxy, or to use @option{--cache}. Using @option{--cache} has the advantage that it allows @command{guix publish} to add @code{Content-Length} HTTP header to its responses." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13614 +#: guix-git/doc/guix.texi:13971 msgid "This option can be repeated, in which case every substitute gets compressed using all the selected methods, and all of them are advertised. This is useful when users may not support all the compression methods: they can select the one they support." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13615 +#: guix-git/doc/guix.texi:13972 #, no-wrap msgid "--cache=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13616 +#: guix-git/doc/guix.texi:13973 #, no-wrap msgid "-c @var{directory}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13619 +#: guix-git/doc/guix.texi:13976 msgid "Cache archives and meta-data (@code{.narinfo} URLs) to @var{directory} and only serve archives that are in cache." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13627 +#: guix-git/doc/guix.texi:13984 msgid "When this option is omitted, archives and meta-data are created on-the-fly. This can reduce the available bandwidth, especially when compression is enabled, since this may become CPU-bound. Another drawback of the default mode is that the length of archives is not known in advance, so @command{guix publish} does not add a @code{Content-Length} HTTP header to its responses, which in turn prevents clients from knowing the amount of data being downloaded." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13635 +#: guix-git/doc/guix.texi:13992 msgid "Conversely, when @option{--cache} is used, the first request for a store item (@i{via} a @code{.narinfo} URL) triggers a background process to @dfn{bake} the archive---computing its @code{.narinfo} and compressing the archive, if needed. Once the archive is cached in @var{directory}, subsequent requests succeed and are served directly from the cache, which guarantees that clients get the best possible bandwidth." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13642 +#: guix-git/doc/guix.texi:13999 msgid "That first @code{.narinfo} request nonetheless returns 200, provided the requested store item is ``small enough'', below the cache bypass threshold---see @option{--cache-bypass-threshold} below. That way, clients do not have to wait until the archive is baked. For larger store items, the first @code{.narinfo} request returns 404, meaning that clients have to wait until the archive is baked." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13646 +#: guix-git/doc/guix.texi:14003 msgid "The ``baking'' process is performed by worker threads. By default, one thread per CPU core is created, but this can be customized. See @option{--workers} below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13649 +#: guix-git/doc/guix.texi:14006 msgid "When @option{--ttl} is used, cached entries are automatically deleted when they have expired." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13650 +#: guix-git/doc/guix.texi:14007 #, no-wrap msgid "--workers=@var{N}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13653 +#: guix-git/doc/guix.texi:14010 msgid "When @option{--cache} is used, request the allocation of @var{N} worker threads to ``bake'' archives." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13654 +#: guix-git/doc/guix.texi:14011 #, no-wrap msgid "--ttl=@var{ttl}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13658 +#: guix-git/doc/guix.texi:14015 msgid "Produce @code{Cache-Control} HTTP headers that advertise a time-to-live (TTL) of @var{ttl}. @var{ttl} must denote a duration: @code{5d} means 5 days, @code{1m} means 1 month, and so on." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13663 +#: guix-git/doc/guix.texi:14020 msgid "This allows the user's Guix to keep substitute information in cache for @var{ttl}. However, note that @code{guix publish} does not itself guarantee that the store items it provides will indeed remain available for as long as @var{ttl}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13667 +#: guix-git/doc/guix.texi:14024 msgid "Additionally, when @option{--cache} is used, cached entries that have not been accessed for @var{ttl} and that no longer have a corresponding item in the store, may be deleted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13668 +#: guix-git/doc/guix.texi:14025 #, no-wrap msgid "--negative-ttl=@var{ttl}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13673 +#: guix-git/doc/guix.texi:14030 msgid "Similarly produce @code{Cache-Control} HTTP headers to advertise the time-to-live (TTL) of @emph{negative} lookups---missing store items, for which the HTTP 404 code is returned. By default, no negative TTL is advertised." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13677 +#: guix-git/doc/guix.texi:14034 msgid "This parameter can help adjust server load and substitute latency by instructing cooperating clients to be more or less patient when a store item is missing." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13678 +#: guix-git/doc/guix.texi:14035 #, no-wrap msgid "--cache-bypass-threshold=@var{size}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13683 +#: guix-git/doc/guix.texi:14040 msgid "When used in conjunction with @option{--cache}, store items smaller than @var{size} are immediately available, even when they are not yet in cache. @var{size} is a size in bytes, or it can be suffixed by @code{M} for megabytes and so on. The default is @code{10M}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13688 +#: guix-git/doc/guix.texi:14045 msgid "``Cache bypass'' allows you to reduce the publication delay for clients at the expense of possibly additional I/O and CPU use on the server side: depending on the client access patterns, those store items can end up being baked several times until a copy is available in cache." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13692 +#: guix-git/doc/guix.texi:14049 msgid "Increasing the threshold may be useful for sites that have few users, or to guarantee that users get substitutes even for store items that are not popular." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13693 +#: guix-git/doc/guix.texi:14050 #, no-wrap msgid "--nar-path=@var{path}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13696 +#: guix-git/doc/guix.texi:14053 msgid "Use @var{path} as the prefix for the URLs of ``nar'' files (@pxref{Invoking guix archive, normalized archives})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13700 +#: guix-git/doc/guix.texi:14057 msgid "By default, nars are served at a URL such as @code{/nar/gzip/@dots{}-coreutils-8.25}. This option allows you to change the @code{/nar} part to @var{path}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13701 +#: guix-git/doc/guix.texi:14058 #, no-wrap msgid "--public-key=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13702 +#: guix-git/doc/guix.texi:14059 #, no-wrap msgid "--private-key=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13705 guix-git/doc/guix.texi:29141 -#: guix-git/doc/guix.texi:29178 +#: guix-git/doc/guix.texi:14062 guix-git/doc/guix.texi:29478 +#: guix-git/doc/guix.texi:29515 msgid "Use the specific @var{file}s as the public/private key pair used to sign the store items being published." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13712 +#: guix-git/doc/guix.texi:14069 msgid "The files must correspond to the same key pair (the private key is used for signing and the public key is merely advertised in the signature metadata). They must contain keys in the canonical s-expression format as produced by @command{guix archive --generate-key} (@pxref{Invoking guix archive}). By default, @file{/etc/guix/signing-key.pub} and @file{/etc/guix/signing-key.sec} are used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13713 +#: guix-git/doc/guix.texi:14070 #, no-wrap msgid "--repl[=@var{port}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13714 +#: guix-git/doc/guix.texi:14071 #, no-wrap msgid "-r [@var{port}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13718 +#: guix-git/doc/guix.texi:14075 msgid "Spawn a Guile REPL server (@pxref{REPL Servers,,, guile, GNU Guile Reference Manual}) on @var{port} (37146 by default). This is used primarily for debugging a running @command{guix publish} server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13724 +#: guix-git/doc/guix.texi:14081 msgid "Enabling @command{guix publish} on Guix System is a one-liner: just instantiate a @code{guix-publish-service-type} service in the @code{services} field of the @code{operating-system} declaration (@pxref{guix-publish-service-type, @code{guix-publish-service-type}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13727 +#: guix-git/doc/guix.texi:14084 msgid "If you are instead running Guix on a ``foreign distro'', follow these instructions:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:13731 +#: guix-git/doc/guix.texi:14088 msgid "If your host distro uses the systemd init system:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13736 +#: guix-git/doc/guix.texi:14093 #, no-wrap msgid "" "# ln -s ~root/.guix-profile/lib/systemd/system/guix-publish.service \\\n" @@ -24105,7 +24717,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13744 +#: guix-git/doc/guix.texi:14101 #, no-wrap msgid "" "# ln -s ~root/.guix-profile/lib/upstart/system/guix-publish.conf /etc/init/\n" @@ -24113,56 +24725,56 @@ msgid "" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:13748 +#: guix-git/doc/guix.texi:14105 msgid "Otherwise, proceed similarly with your distro's init system." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13751 +#: guix-git/doc/guix.texi:14108 #, no-wrap msgid "Invoking @command{guix challenge}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13754 +#: guix-git/doc/guix.texi:14111 #, no-wrap msgid "verifiable builds" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13755 +#: guix-git/doc/guix.texi:14112 #, no-wrap msgid "guix challenge" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13756 +#: guix-git/doc/guix.texi:14113 #, no-wrap msgid "challenge" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13761 +#: guix-git/doc/guix.texi:14118 msgid "Do the binaries provided by this server really correspond to the source code it claims to build? Is a package build process deterministic? These are the questions the @command{guix challenge} command attempts to answer." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13769 +#: guix-git/doc/guix.texi:14126 msgid "The former is obviously an important question: Before using a substitute server (@pxref{Substitutes}), one had better @emph{verify} that it provides the right binaries, and thus @emph{challenge} it. The latter is what enables the former: If package builds are deterministic, then independent builds of the package should yield the exact same result, bit for bit; if a server provides a binary different from the one obtained locally, it may be either corrupt or malicious." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13778 +#: guix-git/doc/guix.texi:14135 msgid "We know that the hash that shows up in @file{/gnu/store} file names is the hash of all the inputs of the process that built the file or directory---compilers, libraries, build scripts, etc. (@pxref{Introduction}). Assuming deterministic build processes, one store file name should map to exactly one build output. @command{guix challenge} checks whether there is, indeed, a single mapping by comparing the build outputs of several independent builds of any given store item." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13780 +#: guix-git/doc/guix.texi:14137 msgid "The command output looks like this:" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13792 +#: guix-git/doc/guix.texi:14149 #, no-wrap msgid "" "$ guix challenge --substitute-urls=\"https://@value{SUBSTITUTE-SERVER-1} https://guix.example.org\"\n" @@ -24179,7 +24791,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13799 +#: guix-git/doc/guix.texi:14156 #, no-wrap msgid "" "/gnu/store/@dots{}-git-2.5.0 contents differ:\n" @@ -24192,7 +24804,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13806 +#: guix-git/doc/guix.texi:14163 #, no-wrap msgid "" "/gnu/store/@dots{}-pius-2.1.1 contents differ:\n" @@ -24205,7 +24817,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13808 +#: guix-git/doc/guix.texi:14165 #, no-wrap msgid "" "@dots{}\n" @@ -24213,7 +24825,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13813 +#: guix-git/doc/guix.texi:14170 #, no-wrap msgid "" "6,406 store items were analyzed:\n" @@ -24223,28 +24835,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13821 +#: guix-git/doc/guix.texi:14178 msgid "In this example, @command{guix challenge} first scans the store to determine the set of locally-built derivations---as opposed to store items that were downloaded from a substitute server---and then queries all the substitute servers. It then reports those store items for which the servers obtained a result different from the local build." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13822 +#: guix-git/doc/guix.texi:14179 #, no-wrap msgid "non-determinism, in package builds" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13833 +#: guix-git/doc/guix.texi:14190 msgid "As an example, @code{guix.example.org} always gets a different answer. Conversely, @code{@value{SUBSTITUTE-SERVER-1}} agrees with local builds, except in the case of Git. This might indicate that the build process of Git is non-deterministic, meaning that its output varies as a function of various things that Guix does not fully control, in spite of building packages in isolated environments (@pxref{Features}). Most common sources of non-determinism include the addition of timestamps in build results, the inclusion of random numbers, and directory listings sorted by inode number. See @uref{https://reproducible-builds.org/docs/}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13836 +#: guix-git/doc/guix.texi:14193 msgid "To find out what is wrong with this Git binary, the easiest approach is to run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13841 +#: guix-git/doc/guix.texi:14198 #, no-wrap msgid "" "guix challenge git \\\n" @@ -24253,17 +24865,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13845 +#: guix-git/doc/guix.texi:14202 msgid "This automatically invokes @command{diffoscope}, which displays detailed information about files that differ." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13848 +#: guix-git/doc/guix.texi:14205 msgid "Alternatively, we can do something along these lines (@pxref{Invoking guix archive}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13853 +#: guix-git/doc/guix.texi:14210 #, no-wrap msgid "" "$ wget -q -O - https://@value{SUBSTITUTE-SERVER-1}/nar/lzip/@dots{}-git-2.5.0 \\\n" @@ -24272,160 +24884,160 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13862 +#: guix-git/doc/guix.texi:14219 msgid "This command shows the difference between the files resulting from the local build, and the files resulting from the build on @code{@value{SUBSTITUTE-SERVER-1}} (@pxref{Overview, Comparing and Merging Files,, diffutils, Comparing and Merging Files}). The @command{diff} command works great for text files. When binary files differ, a better option is @uref{https://diffoscope.org/, Diffoscope}, a tool that helps visualize differences for all kinds of files." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13870 +#: guix-git/doc/guix.texi:14227 msgid "Once you have done that work, you can tell whether the differences are due to a non-deterministic build process or to a malicious server. We try hard to remove sources of non-determinism in packages to make it easier to verify substitutes, but of course, this is a process that involves not just Guix, but a large part of the free software community. In the meantime, @command{guix challenge} is one tool to help address the problem." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13874 +#: guix-git/doc/guix.texi:14231 msgid "If you are writing packages for Guix, you are encouraged to check whether @code{@value{SUBSTITUTE-SERVER-1}} and other substitute servers obtain the same build result as you did with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13877 +#: guix-git/doc/guix.texi:14234 #, no-wrap msgid "$ guix challenge @var{package}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13882 +#: guix-git/doc/guix.texi:14239 msgid "where @var{package} is a package specification such as @code{guile@@2.0} or @code{glibc:debug}." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13887 +#: guix-git/doc/guix.texi:14244 #, no-wrap msgid "guix challenge @var{options} [@var{packages}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13894 +#: guix-git/doc/guix.texi:14251 msgid "When a difference is found between the hash of a locally-built item and that of a server-provided substitute, or among substitutes provided by different servers, the command displays it as in the example above and its exit code is 2 (other non-zero exit codes denote other kinds of errors)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13896 +#: guix-git/doc/guix.texi:14253 msgid "The one option that matters is:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13902 +#: guix-git/doc/guix.texi:14259 msgid "Consider @var{urls} the whitespace-separated list of substitute source URLs to compare to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13903 +#: guix-git/doc/guix.texi:14260 #, no-wrap msgid "--diff=@var{mode}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13905 +#: guix-git/doc/guix.texi:14262 msgid "Upon mismatches, show differences according to @var{mode}, one of:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13907 +#: guix-git/doc/guix.texi:14264 #, no-wrap msgid "@code{simple} (the default)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13909 +#: guix-git/doc/guix.texi:14266 msgid "Show the list of files that differ." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:13910 +#: guix-git/doc/guix.texi:14267 #, no-wrap msgid "diffoscope" msgstr "" #. type: var{#1} -#: guix-git/doc/guix.texi:13911 +#: guix-git/doc/guix.texi:14268 #, no-wrap msgid "command" msgstr "komento" #. type: table -#: guix-git/doc/guix.texi:13914 +#: guix-git/doc/guix.texi:14271 msgid "Invoke @uref{https://diffoscope.org/, Diffoscope}, passing it two directories whose contents do not match." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13917 +#: guix-git/doc/guix.texi:14274 msgid "When @var{command} is an absolute file name, run @var{command} instead of Diffoscope." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13920 +#: guix-git/doc/guix.texi:14277 msgid "Do not show further details about the differences." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13925 +#: guix-git/doc/guix.texi:14282 msgid "Thus, unless @option{--diff=none} is passed, @command{guix challenge} downloads the store items from the given substitute servers so that it can compare them." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13926 +#: guix-git/doc/guix.texi:14283 #, no-wrap msgid "--verbose" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13927 +#: guix-git/doc/guix.texi:14284 #, no-wrap msgid "-v" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13930 +#: guix-git/doc/guix.texi:14287 msgid "Show details about matches (identical contents) in addition to information about mismatches." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13934 +#: guix-git/doc/guix.texi:14291 #, no-wrap msgid "Invoking @command{guix copy}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13936 +#: guix-git/doc/guix.texi:14293 #, no-wrap msgid "copy, of store items, over SSH" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13937 +#: guix-git/doc/guix.texi:14294 #, no-wrap msgid "SSH, copy of store items" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13938 +#: guix-git/doc/guix.texi:14295 #, no-wrap msgid "sharing store items across machines" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13939 +#: guix-git/doc/guix.texi:14296 #, no-wrap msgid "transferring store items across machines" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13946 +#: guix-git/doc/guix.texi:14303 msgid "The @command{guix copy} command copies items from the store of one machine to that of another machine over a secure shell (SSH) connection@footnote{This command is available only when Guile-SSH was found. @xref{Requirements}, for details.}. For example, the following command copies the @code{coreutils} package, the user's profile, and all their dependencies over to @var{host}, logged in as @var{user}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13950 +#: guix-git/doc/guix.texi:14307 #, no-wrap msgid "" "guix copy --to=@var{user}@@@var{host} \\\n" @@ -24433,192 +25045,192 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13954 +#: guix-git/doc/guix.texi:14311 msgid "If some of the items to be copied are already present on @var{host}, they are not actually sent." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13957 +#: guix-git/doc/guix.texi:14314 msgid "The command below retrieves @code{libreoffice} and @code{gimp} from @var{host}, assuming they are available there:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13960 +#: guix-git/doc/guix.texi:14317 #, no-wrap msgid "guix copy --from=@var{host} libreoffice gimp\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13965 +#: guix-git/doc/guix.texi:14322 msgid "The SSH connection is established using the Guile-SSH client, which is compatible with OpenSSH: it honors @file{~/.ssh/known_hosts} and @file{~/.ssh/config}, and uses the SSH agent for authentication." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13971 +#: guix-git/doc/guix.texi:14328 msgid "The key used to sign items that are sent must be accepted by the remote machine. Likewise, the key used by the remote machine to sign items you are retrieving must be in @file{/etc/guix/acl} so it is accepted by your own daemon. @xref{Invoking guix archive}, for more information about store item authentication." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13976 +#: guix-git/doc/guix.texi:14333 #, no-wrap msgid "guix copy [--to=@var{spec}|--from=@var{spec}] @var{items}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13979 +#: guix-git/doc/guix.texi:14336 msgid "You must always specify one of the following options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13981 +#: guix-git/doc/guix.texi:14338 #, no-wrap msgid "--to=@var{spec}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13982 +#: guix-git/doc/guix.texi:14339 #, no-wrap msgid "--from=@var{spec}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13986 +#: guix-git/doc/guix.texi:14343 msgid "Specify the host to send to or receive from. @var{spec} must be an SSH spec such as @code{example.org}, @code{charlie@@example.org}, or @code{charlie@@example.org:2222}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13990 +#: guix-git/doc/guix.texi:14347 msgid "The @var{items} can be either package names, such as @code{gimp}, or store items, such as @file{/gnu/store/@dots{}-idutils-4.6}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13994 +#: guix-git/doc/guix.texi:14351 msgid "When specifying the name of a package to send, it is first built if needed, unless @option{--dry-run} was specified. Common build options are supported (@pxref{Common Build Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13997 +#: guix-git/doc/guix.texi:14354 #, no-wrap msgid "Invoking @command{guix container}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13999 +#: guix-git/doc/guix.texi:14356 #, no-wrap msgid "guix container" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:14003 +#: guix-git/doc/guix.texi:14360 msgid "As of version @value{VERSION}, this tool is experimental. The interface is subject to radical change in the future." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14010 +#: guix-git/doc/guix.texi:14367 msgid "The purpose of @command{guix container} is to manipulate processes running within an isolated environment, commonly known as a ``container'', typically created by the @command{guix shell} (@pxref{Invoking guix shell}) and @command{guix system container} (@pxref{Invoking guix system}) commands." msgstr "" #. type: example -#: guix-git/doc/guix.texi:14015 +#: guix-git/doc/guix.texi:14372 #, no-wrap msgid "guix container @var{action} @var{options}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14019 +#: guix-git/doc/guix.texi:14376 msgid "@var{action} specifies the operation to perform with a container, and @var{options} specifies the context-specific arguments for the action." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14021 +#: guix-git/doc/guix.texi:14378 msgid "The following actions are available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14023 +#: guix-git/doc/guix.texi:14380 #, no-wrap msgid "exec" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14025 +#: guix-git/doc/guix.texi:14382 msgid "Execute a command within the context of a running container." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14027 +#: guix-git/doc/guix.texi:14384 msgid "The syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14030 +#: guix-git/doc/guix.texi:14387 #, no-wrap msgid "guix container exec @var{pid} @var{program} @var{arguments}@dots{}\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14036 +#: guix-git/doc/guix.texi:14393 msgid "@var{pid} specifies the process ID of the running container. @var{program} specifies an executable file name within the root file system of the container. @var{arguments} are the additional options that will be passed to @var{program}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14040 +#: guix-git/doc/guix.texi:14397 msgid "The following command launches an interactive login shell inside a Guix system container, started by @command{guix system container}, and whose process ID is 9001:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14043 +#: guix-git/doc/guix.texi:14400 #, no-wrap msgid "guix container exec 9001 /run/current-system/profile/bin/bash --login\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14047 +#: guix-git/doc/guix.texi:14404 msgid "Note that the @var{pid} cannot be the parent process of a container. It must be PID 1 of the container or one of its child processes." msgstr "" #. type: section -#: guix-git/doc/guix.texi:14051 +#: guix-git/doc/guix.texi:14408 #, no-wrap msgid "Invoking @command{guix weather}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14060 +#: guix-git/doc/guix.texi:14417 msgid "Occasionally you're grumpy because substitutes are lacking and you end up building packages by yourself (@pxref{Substitutes}). The @command{guix weather} command reports on substitute availability on the specified servers so you can have an idea of whether you'll be grumpy today. It can sometimes be useful info as a user, but it is primarily useful to people running @command{guix publish} (@pxref{Invoking guix publish})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14061 +#: guix-git/doc/guix.texi:14418 #, no-wrap msgid "statistics, for substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14062 +#: guix-git/doc/guix.texi:14419 #, no-wrap msgid "availability of substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14063 +#: guix-git/doc/guix.texi:14420 #, no-wrap msgid "substitute availability" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14064 +#: guix-git/doc/guix.texi:14421 #, no-wrap msgid "weather, substitute availability" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14066 +#: guix-git/doc/guix.texi:14423 msgid "Here's a sample run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14078 +#: guix-git/doc/guix.texi:14435 #, no-wrap msgid "" "$ guix weather --substitute-urls=https://guix.example.org\n" @@ -24635,7 +25247,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14088 +#: guix-git/doc/guix.texi:14445 #, no-wrap msgid "" " 9.8% (342 out of 3,470) of the missing items are queued\n" @@ -24650,76 +25262,71 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14090 +#: guix-git/doc/guix.texi:14447 #, no-wrap msgid "continuous integration, statistics" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14101 +#: guix-git/doc/guix.texi:14458 msgid "As you can see, it reports the fraction of all the packages for which substitutes are available on the server---regardless of whether substitutes are enabled, and regardless of whether this server's signing key is authorized. It also reports the size of the compressed archives (``nars'') provided by the server, the size the corresponding store items occupy in the store (assuming deduplication is turned off), and the server's throughput. The second part gives continuous integration (CI) statistics, if the server supports it. In addition, using the @option{--coverage} option, @command{guix weather} can list ``important'' package substitutes missing on the server (see below)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14107 +#: guix-git/doc/guix.texi:14464 msgid "To achieve that, @command{guix weather} queries over HTTP(S) meta-data (@dfn{narinfos}) for all the relevant store items. Like @command{guix challenge}, it ignores signatures on those substitutes, which is innocuous since the command only gathers statistics and cannot install those substitutes." msgstr "" #. type: example -#: guix-git/doc/guix.texi:14112 +#: guix-git/doc/guix.texi:14469 #, no-wrap msgid "guix weather @var{options}@dots{} [@var{packages}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14120 +#: guix-git/doc/guix.texi:14477 msgid "When @var{packages} is omitted, @command{guix weather} checks the availability of substitutes for @emph{all} the packages, or for those specified with @option{--manifest}; otherwise it only considers the specified packages. It is also possible to query specific system types with @option{--system}. @command{guix weather} exits with a non-zero code when the fraction of available substitutes is below 100%." msgstr "" -#. type: Plain text -#: guix-git/doc/guix.texi:14122 -msgid "The available options are listed below." -msgstr "" - #. type: table -#: guix-git/doc/guix.texi:14128 +#: guix-git/doc/guix.texi:14485 msgid "@var{urls} is the space-separated list of substitute server URLs to query. When this option is omitted, the default set of substitute servers is queried." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14134 +#: guix-git/doc/guix.texi:14491 msgid "Query substitutes for @var{system}---e.g., @code{aarch64-linux}. This option can be repeated, in which case @command{guix weather} will query substitutes for several system types." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14140 +#: guix-git/doc/guix.texi:14497 msgid "Instead of querying substitutes for all the packages, only ask for those specified in @var{file}. @var{file} must contain a @dfn{manifest}, as with the @code{-m} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14143 +#: guix-git/doc/guix.texi:14500 msgid "This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14144 +#: guix-git/doc/guix.texi:14501 #, no-wrap msgid "--coverage[=@var{count}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:14145 +#: guix-git/doc/guix.texi:14502 #, no-wrap msgid "-c [@var{count}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14151 +#: guix-git/doc/guix.texi:14508 msgid "Report on substitute coverage for packages: list packages with at least @var{count} dependents (zero by default) for which substitutes are unavailable. Dependent packages themselves are not listed: if @var{b} depends on @var{a} and @var{a} has no substitutes, only @var{a} is listed, even though @var{b} usually lacks substitutes as well. The result looks like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14165 +#: guix-git/doc/guix.texi:14522 #, no-wrap msgid "" "$ guix weather --substitute-urls=@value{SUBSTITUTE-URLS} -c 10\n" @@ -24737,39 +25344,39 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14171 +#: guix-git/doc/guix.texi:14528 msgid "What this example shows is that @code{kcoreaddons} and presumably the 58 packages that depend on it have no substitutes at @code{@value{SUBSTITUTE-SERVER-1}}; likewise for @code{qgpgme} and the 46 packages that depend on it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14175 +#: guix-git/doc/guix.texi:14532 msgid "If you are a Guix developer, or if you are taking care of this build farm, you'll probably want to have a closer look at these packages: they may simply fail to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14176 +#: guix-git/doc/guix.texi:14533 #, no-wrap msgid "--display-missing" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14178 +#: guix-git/doc/guix.texi:14535 msgid "Display the list of store items for which substitutes are missing." msgstr "" #. type: section -#: guix-git/doc/guix.texi:14181 +#: guix-git/doc/guix.texi:14538 #, no-wrap msgid "Invoking @command{guix processes}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14189 +#: guix-git/doc/guix.texi:14546 msgid "The @command{guix processes} command can be useful to developers and system administrators, especially on multi-user machines and on build farms: it lists the current sessions (connections to the daemon), as well as information about the processes involved@footnote{Remote sessions, when @command{guix-daemon} is started with @option{--listen} specifying a TCP endpoint, are @emph{not} listed.}. Here's an example of the information it returns:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14195 +#: guix-git/doc/guix.texi:14552 #, no-wrap msgid "" "$ sudo guix processes\n" @@ -24780,7 +25387,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14199 +#: guix-git/doc/guix.texi:14556 #, no-wrap msgid "" "SessionPID: 19402\n" @@ -24790,7 +25397,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14212 +#: guix-git/doc/guix.texi:14569 #, no-wrap msgid "" "SessionPID: 19444\n" @@ -24808,22 +25415,22 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14219 +#: guix-git/doc/guix.texi:14576 msgid "In this example we see that @command{guix-daemon} has three clients: @command{guix environment}, @command{guix publish}, and the Cuirass continuous integration tool; their process identifier (PID) is given by the @code{ClientPID} field. The @code{SessionPID} field gives the PID of the @command{guix-daemon} sub-process of this particular session." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14226 +#: guix-git/doc/guix.texi:14583 msgid "The @code{LockHeld} fields show which store items are currently locked by this session, which corresponds to store items being built or substituted (the @code{LockHeld} field is not displayed when @command{guix processes} is not running as root). Last, by looking at the @code{ChildPID} and @code{ChildCommand} fields, we understand that these three builds are being offloaded (@pxref{Daemon Offload Setup})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14231 +#: guix-git/doc/guix.texi:14588 msgid "The output is in Recutils format so we can use the handy @command{recsel} command to select sessions of interest (@pxref{Selection Expressions,,, recutils, GNU recutils manual}). As an example, the command shows the command line and PID of the client that triggered the build of a Perl package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14237 +#: guix-git/doc/guix.texi:14594 #, no-wrap msgid "" "$ sudo guix processes | \\\n" @@ -24833,28 +25440,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14240 +#: guix-git/doc/guix.texi:14597 msgid "Additional options are listed below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14250 +#: guix-git/doc/guix.texi:14607 msgid "The default option. It outputs a set of Session recutils records that include each @code{ChildProcess} as a field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14251 +#: guix-git/doc/guix.texi:14608 #, no-wrap msgid "normalized" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14258 +#: guix-git/doc/guix.texi:14615 msgid "Normalize the output records into record sets (@pxref{Record Sets,,, recutils, GNU recutils manual}). Normalizing into record sets allows joins across record types. The example below lists the PID of each @code{ChildProcess} and the associated PID for @code{Session} that spawned the @code{ChildProcess} where the @code{Session} was started using @command{guix build}." msgstr "" #. type: example -#: guix-git/doc/guix.texi:14268 +#: guix-git/doc/guix.texi:14625 #, no-wrap msgid "" "$ guix processes --format=normalized | \\\n" @@ -24869,7 +25476,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14271 +#: guix-git/doc/guix.texi:14628 #, no-wrap msgid "" "PID: 4554\n" @@ -24878,7 +25485,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14274 +#: guix-git/doc/guix.texi:14631 #, no-wrap msgid "" "PID: 4646\n" @@ -24886,90 +25493,90 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14281 +#: guix-git/doc/guix.texi:14638 #, no-wrap msgid "system configuration" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14287 +#: guix-git/doc/guix.texi:14644 msgid "Guix System supports a consistent whole-system configuration mechanism. By that we mean that all aspects of the global system configuration---such as the available system services, timezone and locale settings, user accounts---are declared in a single place. Such a @dfn{system configuration} can be @dfn{instantiated}---i.e., effected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14297 +#: guix-git/doc/guix.texi:14654 msgid "One of the advantages of putting all the system configuration under the control of Guix is that it supports transactional system upgrades, and makes it possible to roll back to a previous system instantiation, should something go wrong with the new one (@pxref{Features}). Another advantage is that it makes it easy to replicate the exact same configuration across different machines, or at different points in time, without having to resort to additional administration tools layered on top of the own tools of the system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14302 +#: guix-git/doc/guix.texi:14659 msgid "This section describes this mechanism. First we focus on the system administrator's viewpoint---explaining how the system is configured and instantiated. Then we show how this mechanism can be extended, for instance to support new system services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14332 +#: guix-git/doc/guix.texi:14689 msgid "The operating system is configured by providing an @code{operating-system} declaration in a file that can then be passed to the @command{guix system} command (@pxref{Invoking guix system}). A simple setup, with the default system services, the default Linux-Libre kernel, initial RAM disk, and boot loader looks like this:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14333 guix-git/doc/guix.texi:35553 +#: guix-git/doc/guix.texi:14690 guix-git/doc/guix.texi:36033 #, no-wrap msgid "operating-system" msgstr "käyttöjärjestelmä" #. type: include -#: guix-git/doc/guix.texi:14335 +#: guix-git/doc/guix.texi:14692 #, no-wrap msgid "os-config-bare-bones.texi" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14342 +#: guix-git/doc/guix.texi:14699 msgid "This example should be self-describing. Some of the fields defined above, such as @code{host-name} and @code{bootloader}, are mandatory. Others, such as @code{packages} and @code{services}, can be omitted, in which case they get a default value." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14347 +#: guix-git/doc/guix.texi:14704 msgid "Below we discuss the effect of some of the most important fields (@pxref{operating-system Reference}, for details about all the available fields), and how to @dfn{instantiate} the operating system using @command{guix system}." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14348 +#: guix-git/doc/guix.texi:14705 #, no-wrap msgid "Bootloader" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14350 +#: guix-git/doc/guix.texi:14707 #, no-wrap msgid "legacy boot, on Intel machines" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14351 +#: guix-git/doc/guix.texi:14708 #, no-wrap msgid "BIOS boot, on Intel machines" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14352 +#: guix-git/doc/guix.texi:14709 #, no-wrap msgid "UEFI boot" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14353 +#: guix-git/doc/guix.texi:14710 #, no-wrap msgid "EFI boot" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14359 +#: guix-git/doc/guix.texi:14716 msgid "The @code{bootloader} field describes the method that will be used to boot your system. Machines based on Intel processors can boot in ``legacy'' BIOS mode, as in the example above. However, more recent machines rely instead on the @dfn{Unified Extensible Firmware Interface} (UEFI) to boot. In that case, the @code{bootloader} field should contain something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14364 +#: guix-git/doc/guix.texi:14721 #, no-wrap msgid "" "(bootloader-configuration\n" @@ -24978,29 +25585,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14368 +#: guix-git/doc/guix.texi:14725 msgid "@xref{Bootloader Configuration}, for more information on the available configuration options." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14369 +#: guix-git/doc/guix.texi:14726 #, no-wrap msgid "Globally-Visible Packages" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:14371 +#: guix-git/doc/guix.texi:14728 #, no-wrap msgid "%base-packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14384 +#: guix-git/doc/guix.texi:14741 msgid "The @code{packages} field lists packages that will be globally visible on the system, for all user accounts---i.e., in every user's @env{PATH} environment variable---in addition to the per-user profiles (@pxref{Invoking guix package}). The @code{%base-packages} variable provides all the tools one would expect for basic user and administrator tasks---including the GNU Core Utilities, the GNU Networking Utilities, the @command{mg} lightweight text editor, @command{find}, @command{grep}, etc. The example above adds GNU@tie{}Screen to those, taken from the @code{(gnu packages screen)} module (@pxref{Package Modules}). The @code{(list package output)} syntax can be used to add a specific output of a package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14388 +#: guix-git/doc/guix.texi:14745 #, no-wrap msgid "" "(use-modules (gnu packages))\n" @@ -25009,7 +25616,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14393 +#: guix-git/doc/guix.texi:14750 #, no-wrap msgid "" "(operating-system\n" @@ -25019,18 +25626,18 @@ msgid "" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:14395 +#: guix-git/doc/guix.texi:14752 #, no-wrap msgid "specification->package" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14404 +#: guix-git/doc/guix.texi:14761 msgid "Referring to packages by variable name, like @code{isc-bind} above, has the advantage of being unambiguous; it also allows typos and such to be diagnosed right away as ``unbound variables''. The downside is that one needs to know which module defines which package, and to augment the @code{use-package-modules} line accordingly. To avoid that, one can use the @code{specification->package} procedure of the @code{(gnu packages)} module, which returns the best package for a given name or name and version:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14407 +#: guix-git/doc/guix.texi:14764 #, no-wrap msgid "" "(use-modules (gnu packages))\n" @@ -25038,7 +25645,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14413 +#: guix-git/doc/guix.texi:14770 #, no-wrap msgid "" "(operating-system\n" @@ -25049,58 +25656,58 @@ msgid "" msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14415 +#: guix-git/doc/guix.texi:14772 #, no-wrap msgid "System Services" msgstr "Järjestelmäpalvelut" #. type: cindex -#: guix-git/doc/guix.texi:14417 guix-git/doc/guix.texi:34307 -#: guix-git/doc/guix.texi:35783 +#: guix-git/doc/guix.texi:14774 guix-git/doc/guix.texi:34746 +#: guix-git/doc/guix.texi:36273 #, no-wrap msgid "services" msgstr "palvelut" #. type: vindex -#: guix-git/doc/guix.texi:14418 +#: guix-git/doc/guix.texi:14775 #, no-wrap msgid "%base-services" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14428 +#: guix-git/doc/guix.texi:14785 msgid "The @code{services} field lists @dfn{system services} to be made available when the system starts (@pxref{Services}). The @code{operating-system} declaration above specifies that, in addition to the basic services, we want the OpenSSH secure shell daemon listening on port 2222 (@pxref{Networking Services, @code{openssh-service-type}}). Under the hood, @code{openssh-service-type} arranges so that @command{sshd} is started with the right command-line options, possibly with supporting configuration files generated as needed (@pxref{Defining Services})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14429 +#: guix-git/doc/guix.texi:14786 #, no-wrap msgid "customization, of services" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:14430 +#: guix-git/doc/guix.texi:14787 #, no-wrap msgid "modify-services" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14434 +#: guix-git/doc/guix.texi:14791 msgid "Occasionally, instead of using the base services as is, you will want to customize them. To do this, use @code{modify-services} (@pxref{Service Reference, @code{modify-services}}) to modify the list." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:14440 +#: guix-git/doc/guix.texi:14797 msgid "auto-login to TTY" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14440 +#: guix-git/doc/guix.texi:14797 msgid "For example, suppose you want to modify @code{guix-daemon} and Mingetty (the console log-in) in the @code{%base-services} list (@pxref{Base Services, @code{%base-services}}). To do that, you can write the following in your operating system declaration:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14457 +#: guix-git/doc/guix.texi:14814 #, no-wrap msgid "" "(define %my-services\n" @@ -25116,13 +25723,13 @@ msgid "" " (mingetty-service-type config =>\n" " (mingetty-configuration\n" " (inherit config)\n" -" ;; Automatially log in as \"guest\".\n" +" ;; Automatically log in as \"guest\".\n" " (auto-login \"guest\")))))\n" "\n" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14461 +#: guix-git/doc/guix.texi:14818 #, no-wrap msgid "" "(operating-system\n" @@ -25131,49 +25738,49 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14474 +#: guix-git/doc/guix.texi:14831 msgid "This changes the configuration---i.e., the service parameters---of the @code{guix-service-type} instance, and that of all the @code{mingetty-service-type} instances in the @code{%base-services} list (@pxref{Auto-Login to a Specific TTY, see the cookbook for how to auto-login one user to a specific TTY,, guix-cookbook, GNU Guix Cookbook})). Observe how this is accomplished: first, we arrange for the original configuration to be bound to the identifier @code{config} in the @var{body}, and then we write the @var{body} so that it evaluates to the desired configuration. In particular, notice how we use @code{inherit} to create a new configuration which has the same values as the old configuration, but with a few modifications." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14481 +#: guix-git/doc/guix.texi:14838 msgid "The configuration for a typical ``desktop'' usage, with an encrypted root partition, a swap file on the root partition, the X11 display server, GNOME and Xfce (users can choose which of these desktop environments to use at the log-in screen by pressing @kbd{F1}), network management, power management, and more, would look like this:" msgstr "" #. type: include -#: guix-git/doc/guix.texi:14483 +#: guix-git/doc/guix.texi:14840 #, no-wrap msgid "os-config-desktop.texi" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14488 +#: guix-git/doc/guix.texi:14845 msgid "A graphical system with a choice of lightweight window managers instead of full-blown desktop environments would look like this:" msgstr "" #. type: include -#: guix-git/doc/guix.texi:14490 +#: guix-git/doc/guix.texi:14847 #, no-wrap msgid "os-config-lightweight-desktop.texi" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14496 +#: guix-git/doc/guix.texi:14853 msgid "This example refers to the @file{/boot/efi} file system by its UUID, @code{1234-ABCD}. Replace this UUID with the right UUID on your system, as returned by the @command{blkid} command." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14500 +#: guix-git/doc/guix.texi:14857 msgid "@xref{Desktop Services}, for the exact list of services provided by @code{%desktop-services}. @xref{X.509 Certificates}, for background information about the @code{nss-certs} package that is used here." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14507 +#: guix-git/doc/guix.texi:14864 msgid "Again, @code{%desktop-services} is just a list of service objects. If you want to remove services from there, you can do so using the procedures for list filtering (@pxref{SRFI-1 Filtering and Partitioning,,, guile, GNU Guile Reference Manual}). For instance, the following expression returns a list that contains all the services in @code{%desktop-services} minus the Avahi service:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14512 +#: guix-git/doc/guix.texi:14869 #, no-wrap msgid "" "(remove (lambda (service)\n" @@ -25182,12 +25789,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14515 +#: guix-git/doc/guix.texi:14872 msgid "Alternatively, the @code{modify-services} macro can be used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14519 +#: guix-git/doc/guix.texi:14876 #, no-wrap msgid "" "(modify-services %desktop-services\n" @@ -25195,356 +25802,356 @@ msgid "" msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14522 +#: guix-git/doc/guix.texi:14879 #, no-wrap msgid "Instantiating the System" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14529 +#: guix-git/doc/guix.texi:14886 msgid "Assuming the @code{operating-system} declaration is stored in the @file{my-system-config.scm} file, the @command{guix system reconfigure my-system-config.scm} command instantiates that configuration, and makes it the default GRUB boot entry (@pxref{Invoking guix system})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14537 +#: guix-git/doc/guix.texi:14894 msgid "The normal way to change the system configuration is by updating this file and re-running @command{guix system reconfigure}. One should never have to touch files in @file{/etc} or to run commands that modify the system state such as @command{useradd} or @command{grub-install}. In fact, you must avoid that since that would not only void your warranty but also prevent you from rolling back to previous versions of your system, should you ever need to." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14538 +#: guix-git/doc/guix.texi:14895 #, no-wrap msgid "roll-back, of the operating system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14548 +#: guix-git/doc/guix.texi:14905 msgid "Speaking of roll-back, each time you run @command{guix system reconfigure}, a new @dfn{generation} of the system is created---without modifying or deleting previous generations. Old system generations get an entry in the bootloader boot menu, allowing you to boot them in case something went wrong with the latest generation. Reassuring, no? The @command{guix system list-generations} command lists the system generations available on disk. It is also possible to roll back the system via the commands @command{guix system roll-back} and @command{guix system switch-generation}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14554 +#: guix-git/doc/guix.texi:14911 msgid "Although the @command{guix system reconfigure} command will not modify previous generations, you must take care when the current generation is not the latest (e.g., after invoking @command{guix system roll-back}), since the operation might overwrite a later generation (@pxref{Invoking guix system})." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14555 +#: guix-git/doc/guix.texi:14912 #, no-wrap msgid "The Programming Interface" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14560 +#: guix-git/doc/guix.texi:14917 msgid "At the Scheme level, the bulk of an @code{operating-system} declaration is instantiated with the following monadic procedure (@pxref{The Store Monad}):" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14561 +#: guix-git/doc/guix.texi:14918 #, no-wrap msgid "{Monadic Procedure} operating-system-derivation os" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14564 +#: guix-git/doc/guix.texi:14921 msgid "Return a derivation that builds @var{os}, an @code{operating-system} object (@pxref{Derivations})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14568 +#: guix-git/doc/guix.texi:14925 msgid "The output of the derivation is a single directory that refers to all the packages, configuration files, and other supporting files needed to instantiate @var{os}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14573 +#: guix-git/doc/guix.texi:14930 msgid "This procedure is provided by the @code{(gnu system)} module. Along with @code{(gnu services)} (@pxref{Services}), this module contains the guts of Guix System. Make sure to visit it!" msgstr "" #. type: section -#: guix-git/doc/guix.texi:14576 +#: guix-git/doc/guix.texi:14933 #, no-wrap msgid "@code{operating-system} Reference" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14581 +#: guix-git/doc/guix.texi:14938 msgid "This section summarizes all the options available in @code{operating-system} declarations (@pxref{Using the Configuration System})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14582 +#: guix-git/doc/guix.texi:14939 #, no-wrap msgid "{Data Type} operating-system" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14586 +#: guix-git/doc/guix.texi:14943 msgid "This is the data type representing an operating system configuration. By that, we mean all the global system configuration, not per-user configuration (@pxref{Using the Configuration System})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14588 +#: guix-git/doc/guix.texi:14945 #, no-wrap msgid "@code{kernel} (default: @code{linux-libre})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14593 +#: guix-git/doc/guix.texi:14950 msgid "The package object of the operating system kernel to use@footnote{Currently only the Linux-libre kernel is fully supported. Using GNU@tie{}mach with the GNU@tie{}Hurd is experimental and only available when building a virtual machine disk image.}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14594 guix-git/doc/guix.texi:30733 +#: guix-git/doc/guix.texi:14951 guix-git/doc/guix.texi:31098 #, no-wrap msgid "hurd" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14595 +#: guix-git/doc/guix.texi:14952 #, no-wrap msgid "@code{hurd} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14600 +#: guix-git/doc/guix.texi:14957 msgid "The package object of the Hurd to be started by the kernel. When this field is set, produce a GNU/Hurd operating system. In that case, @code{kernel} must also be set to the @code{gnumach} package---the microkernel the Hurd runs on." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:14603 +#: guix-git/doc/guix.texi:14960 msgid "This feature is experimental and only supported for disk images." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14605 +#: guix-git/doc/guix.texi:14962 #, no-wrap msgid "@code{kernel-loadable-modules} (default: '())" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14608 +#: guix-git/doc/guix.texi:14965 msgid "A list of objects (usually packages) to collect loadable kernel modules from--e.g. @code{(list ddcci-driver-linux)}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14609 +#: guix-git/doc/guix.texi:14966 #, no-wrap msgid "@code{kernel-arguments} (default: @code{%default-kernel-arguments})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14612 +#: guix-git/doc/guix.texi:14969 msgid "List of strings or gexps representing additional arguments to pass on the command-line of the kernel---e.g., @code{(\"console=ttyS0\")}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14613 guix-git/doc/guix.texi:34539 -#: guix-git/doc/guix.texi:34558 +#: guix-git/doc/guix.texi:14970 guix-git/doc/guix.texi:34978 +#: guix-git/doc/guix.texi:34997 #, no-wrap msgid "bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14615 +#: guix-git/doc/guix.texi:14972 msgid "The system bootloader configuration object. @xref{Bootloader Configuration}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14616 guix-git/doc/guix.texi:34732 +#: guix-git/doc/guix.texi:14973 guix-git/doc/guix.texi:35171 #, no-wrap msgid "label" msgstr "nimiö" #. type: table -#: guix-git/doc/guix.texi:14619 +#: guix-git/doc/guix.texi:14976 msgid "This is the label (a string) as it appears in the bootloader's menu entry. The default label includes the kernel name and version." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14620 guix-git/doc/guix.texi:16318 -#: guix-git/doc/guix.texi:19503 guix-git/doc/guix.texi:34662 +#: guix-git/doc/guix.texi:14977 guix-git/doc/guix.texi:16675 +#: guix-git/doc/guix.texi:19865 guix-git/doc/guix.texi:35101 #, no-wrap msgid "@code{keyboard-layout} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14625 +#: guix-git/doc/guix.texi:14982 msgid "This field specifies the keyboard layout to use in the console. It can be either @code{#f}, in which case the default keyboard layout is used (usually US English), or a @code{} record. @xref{Keyboard Layout}, for more information." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14630 +#: guix-git/doc/guix.texi:14987 msgid "This keyboard layout is in effect as soon as the kernel has booted. For instance, it is the keyboard layout in effect when you type a passphrase if your root file system is on a @code{luks-device-mapping} mapped device (@pxref{Mapped Devices})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:14637 +#: guix-git/doc/guix.texi:14994 msgid "This does @emph{not} specify the keyboard layout used by the bootloader, nor that used by the graphical display server. @xref{Bootloader Configuration}, for information on how to specify the bootloader's keyboard layout. @xref{X Window}, for information on how to specify the keyboard layout used by the X Window System." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14639 +#: guix-git/doc/guix.texi:14996 #, no-wrap msgid "@code{initrd-modules} (default: @code{%base-initrd-modules})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14640 guix-git/doc/guix.texi:34344 -#: guix-git/doc/guix.texi:34467 +#: guix-git/doc/guix.texi:14997 guix-git/doc/guix.texi:34783 +#: guix-git/doc/guix.texi:34906 #, no-wrap msgid "initrd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14641 guix-git/doc/guix.texi:34345 -#: guix-git/doc/guix.texi:34468 +#: guix-git/doc/guix.texi:14998 guix-git/doc/guix.texi:34784 +#: guix-git/doc/guix.texi:34907 #, no-wrap msgid "initial RAM disk" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14644 +#: guix-git/doc/guix.texi:15001 msgid "The list of Linux kernel modules that need to be available in the initial RAM disk. @xref{Initial RAM Disk}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14645 +#: guix-git/doc/guix.texi:15002 #, no-wrap msgid "@code{initrd} (default: @code{base-initrd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14649 +#: guix-git/doc/guix.texi:15006 msgid "A procedure that returns an initial RAM disk for the Linux kernel. This field is provided to support low-level customization and should rarely be needed for casual use. @xref{Initial RAM Disk}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14650 +#: guix-git/doc/guix.texi:15007 #, no-wrap msgid "@code{firmware} (default: @code{%base-firmware})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14651 +#: guix-git/doc/guix.texi:15008 #, no-wrap msgid "firmware" msgstr "laiteohjelmisto" #. type: table -#: guix-git/doc/guix.texi:14653 +#: guix-git/doc/guix.texi:15010 msgid "List of firmware packages loadable by the operating system kernel." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14658 +#: guix-git/doc/guix.texi:15015 msgid "The default includes firmware needed for Atheros- and Broadcom-based WiFi devices (Linux-libre modules @code{ath9k} and @code{b43-open}, respectively). @xref{Hardware Considerations}, for more info on supported hardware." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14659 guix-git/doc/guix.texi:35572 +#: guix-git/doc/guix.texi:15016 guix-git/doc/guix.texi:36052 #, no-wrap msgid "host-name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14661 +#: guix-git/doc/guix.texi:15018 msgid "The host name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14662 +#: guix-git/doc/guix.texi:15019 #, no-wrap msgid "hosts-file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14663 +#: guix-git/doc/guix.texi:15020 #, no-wrap msgid "hosts file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14668 +#: guix-git/doc/guix.texi:15025 msgid "A file-like object (@pxref{G-Expressions, file-like objects}) for use as @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). The default is a file with entries for @code{localhost} and @var{host-name}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14669 +#: guix-git/doc/guix.texi:15026 #, no-wrap msgid "@code{mapped-devices} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14671 +#: guix-git/doc/guix.texi:15028 msgid "A list of mapped devices. @xref{Mapped Devices}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14672 +#: guix-git/doc/guix.texi:15029 #, no-wrap msgid "file-systems" msgstr "tiedostojärjestelmät" #. type: table -#: guix-git/doc/guix.texi:14674 +#: guix-git/doc/guix.texi:15031 msgid "A list of file systems. @xref{File Systems}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14675 +#: guix-git/doc/guix.texi:15032 #, no-wrap msgid "@code{swap-devices} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14676 +#: guix-git/doc/guix.texi:15033 #, no-wrap msgid "swap devices" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14678 +#: guix-git/doc/guix.texi:15035 msgid "A list of swap spaces. @xref{Swap Space}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15036 #, no-wrap msgid "@code{users} (default: @code{%base-user-accounts})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:14680 +#: guix-git/doc/guix.texi:15037 #, no-wrap msgid "@code{groups} (default: @code{%base-groups})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14682 +#: guix-git/doc/guix.texi:15039 msgid "List of user accounts and groups. @xref{User Accounts}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14685 +#: guix-git/doc/guix.texi:15042 msgid "If the @code{users} list lacks a user account with UID@tie{}0, a ``root'' account with UID@tie{}0 is automatically added." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14686 +#: guix-git/doc/guix.texi:15043 #, no-wrap msgid "@code{skeletons} (default: @code{(default-skeletons)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14690 +#: guix-git/doc/guix.texi:15047 msgid "A list of target file name/file-like object tuples (@pxref{G-Expressions, file-like objects}). These are the skeleton files that will be added to the home directory of newly-created user accounts." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14692 +#: guix-git/doc/guix.texi:15049 msgid "For instance, a valid value may look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14698 +#: guix-git/doc/guix.texi:15055 #, no-wrap msgid "" "`((\".bashrc\" ,(plain-file \"bashrc\" \"echo Hello\\n\"))\n" @@ -25554,29 +26161,29 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14700 +#: guix-git/doc/guix.texi:15057 #, no-wrap msgid "@code{issue} (default: @code{%default-issue})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14703 +#: guix-git/doc/guix.texi:15060 msgid "A string denoting the contents of the @file{/etc/issue} file, which is displayed when users log in on a text console." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14704 +#: guix-git/doc/guix.texi:15061 #, no-wrap msgid "@code{packages} (default: @code{%base-packages})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14708 +#: guix-git/doc/guix.texi:15065 msgid "A list of packages to be installed in the global profile, which is accessible at @file{/run/current-system/profile}. Each element is either a package variable or a package/output tuple. Here's a simple example of both:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14713 +#: guix-git/doc/guix.texi:15070 #, no-wrap msgid "" "(cons* git ; the default \"out\" output\n" @@ -25585,172 +26192,172 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14718 +#: guix-git/doc/guix.texi:15075 msgid "The default set includes core utilities and it is good practice to install non-core utilities in user profiles (@pxref{Invoking guix package})." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14719 +#: guix-git/doc/guix.texi:15076 #, no-wrap msgid "timezone" msgstr "aikavyöhyke" #. type: table -#: guix-git/doc/guix.texi:14721 +#: guix-git/doc/guix.texi:15078 msgid "A timezone identifying string---e.g., @code{\"Europe/Paris\"}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14725 +#: guix-git/doc/guix.texi:15082 msgid "You can run the @command{tzselect} command to find out which timezone string corresponds to your region. Choosing an invalid timezone name causes @command{guix system} to fail." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14726 guix-git/doc/guix.texi:21115 +#: guix-git/doc/guix.texi:15083 guix-git/doc/guix.texi:21477 #, no-wrap msgid "@code{locale} (default: @code{\"en_US.utf8\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14729 +#: guix-git/doc/guix.texi:15086 msgid "The name of the default locale (@pxref{Locale Names,,, libc, The GNU C Library Reference Manual}). @xref{Locales}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14730 +#: guix-git/doc/guix.texi:15087 #, no-wrap msgid "@code{locale-definitions} (default: @code{%default-locale-definitions})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14733 +#: guix-git/doc/guix.texi:15090 msgid "The list of locale definitions to be compiled and that may be used at run time. @xref{Locales}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14734 +#: guix-git/doc/guix.texi:15091 #, no-wrap msgid "@code{locale-libcs} (default: @code{(list @var{glibc})})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14738 +#: guix-git/doc/guix.texi:15095 msgid "The list of GNU@tie{}libc packages whose locale data and tools are used to build the locale definitions. @xref{Locales}, for compatibility considerations that justify this option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14739 +#: guix-git/doc/guix.texi:15096 #, no-wrap msgid "@code{name-service-switch} (default: @code{%default-nss})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14743 +#: guix-git/doc/guix.texi:15100 msgid "Configuration of the libc name service switch (NSS)---a @code{} object. @xref{Name Service Switch}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14744 +#: guix-git/doc/guix.texi:15101 #, no-wrap msgid "@code{services} (default: @code{%base-services})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14746 +#: guix-git/doc/guix.texi:15103 msgid "A list of service objects denoting system services. @xref{Services}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14747 +#: guix-git/doc/guix.texi:15104 #, no-wrap msgid "essential services" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14748 +#: guix-git/doc/guix.texi:15105 #, no-wrap msgid "@code{essential-services} (default: ...)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14753 +#: guix-git/doc/guix.texi:15110 msgid "The list of ``essential services''---i.e., things like instances of @code{system-service-type} and @code{host-name-service-type} (@pxref{Service Reference}), which are derived from the operating system definition itself. As a user you should @emph{never} need to touch this field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14754 +#: guix-git/doc/guix.texi:15111 #, no-wrap msgid "@code{pam-services} (default: @code{(base-pam-services)})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14755 +#: guix-git/doc/guix.texi:15112 #, no-wrap msgid "PAM" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14756 +#: guix-git/doc/guix.texi:15113 #, no-wrap msgid "pluggable authentication modules" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14759 +#: guix-git/doc/guix.texi:15116 msgid "Linux @dfn{pluggable authentication module} (PAM) services." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14760 +#: guix-git/doc/guix.texi:15117 #, no-wrap msgid "@code{setuid-programs} (default: @code{%setuid-programs})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14763 +#: guix-git/doc/guix.texi:15120 msgid "List of @code{}. @xref{Setuid Programs}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14764 +#: guix-git/doc/guix.texi:15121 #, no-wrap msgid "@code{sudoers-file} (default: @code{%sudoers-specification})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14765 +#: guix-git/doc/guix.texi:15122 #, no-wrap msgid "sudoers file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14768 +#: guix-git/doc/guix.texi:15125 msgid "The contents of the @file{/etc/sudoers} file as a file-like object (@pxref{G-Expressions, @code{local-file} and @code{plain-file}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14773 +#: guix-git/doc/guix.texi:15130 msgid "This file specifies which users can use the @command{sudo} command, what they are allowed to do, and what privileges they may gain. The default is that only @code{root} and members of the @code{wheel} group may use @code{sudo}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14776 +#: guix-git/doc/guix.texi:15133 #, no-wrap msgid "{Scheme Syntax} this-operating-system" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14779 +#: guix-git/doc/guix.texi:15136 msgid "When used in the @emph{lexical scope} of an operating system field definition, this identifier resolves to the operating system being defined." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14782 +#: guix-git/doc/guix.texi:15139 msgid "The example below shows how to refer to the operating system being defined in the definition of the @code{label} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14785 guix-git/doc/guix.texi:18711 +#: guix-git/doc/guix.texi:15142 guix-git/doc/guix.texi:19073 #, no-wrap msgid "" "(use-modules (gnu) (guix))\n" @@ -25758,7 +26365,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14790 +#: guix-git/doc/guix.texi:15147 #, no-wrap msgid "" "(operating-system\n" @@ -25768,17 +26375,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14794 +#: guix-git/doc/guix.texi:15151 msgid "It is an error to refer to @code{this-operating-system} outside an operating system definition." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14805 +#: guix-git/doc/guix.texi:15162 msgid "The list of file systems to be mounted is specified in the @code{file-systems} field of the operating system declaration (@pxref{Using the Configuration System}). Each file system is declared using the @code{file-system} form, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14811 +#: guix-git/doc/guix.texi:15168 #, no-wrap msgid "" "(file-system\n" @@ -25788,68 +26395,68 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14815 +#: guix-git/doc/guix.texi:15172 msgid "As usual, some of the fields are mandatory---those shown in the example above---while others can be omitted. These are described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14816 +#: guix-git/doc/guix.texi:15173 #, no-wrap msgid "{Data Type} file-system" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14819 +#: guix-git/doc/guix.texi:15176 msgid "Objects of this type represent file systems to be mounted. They contain the following members:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14821 guix-git/doc/guix.texi:15201 -#: guix-git/doc/guix.texi:17317 +#: guix-git/doc/guix.texi:15178 guix-git/doc/guix.texi:15558 +#: guix-git/doc/guix.texi:17679 #, no-wrap msgid "type" msgstr "tyyppi" #. type: table -#: guix-git/doc/guix.texi:14824 +#: guix-git/doc/guix.texi:15181 msgid "This is a string specifying the type of the file system---e.g., @code{\"ext4\"}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14825 +#: guix-git/doc/guix.texi:15182 #, no-wrap msgid "mount-point" msgstr "liitospiste" #. type: table -#: guix-git/doc/guix.texi:14827 +#: guix-git/doc/guix.texi:15184 msgid "This designates the place where the file system is to be mounted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14828 guix-git/doc/guix.texi:17267 +#: guix-git/doc/guix.texi:15185 guix-git/doc/guix.texi:17629 #, no-wrap msgid "device" msgstr "laite" #. type: table -#: guix-git/doc/guix.texi:14838 +#: guix-git/doc/guix.texi:15195 msgid "This names the ``source'' of the file system. It can be one of three things: a file system label, a file system UUID, or the name of a @file{/dev} node. Labels and UUIDs offer a way to refer to file systems without having to hard-code their actual device name@footnote{Note that, while it is tempting to use @file{/dev/disk/by-uuid} and similar device names to achieve the same result, this is not recommended: These special device nodes are created by the udev daemon and may be unavailable at the time the device is mounted.}." msgstr "" #. type: findex -#: guix-git/doc/guix.texi:14839 +#: guix-git/doc/guix.texi:15196 #, no-wrap msgid "file-system-label" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14844 +#: guix-git/doc/guix.texi:15201 msgid "File system labels are created using the @code{file-system-label} procedure, UUIDs are created using @code{uuid}, and @file{/dev} node are plain strings. Here's an example of a file system referred to by its label, as shown by the @command{e2label} command:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14850 +#: guix-git/doc/guix.texi:15207 #, no-wrap msgid "" "(file-system\n" @@ -25859,19 +26466,19 @@ msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14852 guix-git/doc/guix.texi:33130 -#: guix-git/doc/guix.texi:33146 +#: guix-git/doc/guix.texi:15209 guix-git/doc/guix.texi:33495 +#: guix-git/doc/guix.texi:33511 #, no-wrap msgid "uuid" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14860 +#: guix-git/doc/guix.texi:15217 msgid "UUIDs are converted from their string representation (as shown by the @command{tune2fs -l} command) using the @code{uuid} form@footnote{The @code{uuid} form expects 16-byte UUIDs as defined in @uref{https://tools.ietf.org/html/rfc4122, RFC@tie{}4122}. This is the form of UUID used by the ext2 family of file systems and others, but it is different from ``UUIDs'' found in FAT file systems, for instance.}, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14866 +#: guix-git/doc/guix.texi:15223 #, no-wrap msgid "" "(file-system\n" @@ -25881,168 +26488,168 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14874 +#: guix-git/doc/guix.texi:15231 msgid "When the source of a file system is a mapped device (@pxref{Mapped Devices}), its @code{device} field @emph{must} refer to the mapped device name---e.g., @file{\"/dev/mapper/root-partition\"}. This is required so that the system knows that mounting the file system depends on having the corresponding device mapping established." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14875 +#: guix-git/doc/guix.texi:15232 #, no-wrap msgid "@code{flags} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14885 +#: guix-git/doc/guix.texi:15242 msgid "This is a list of symbols denoting mount flags. Recognized flags include @code{read-only}, @code{bind-mount}, @code{no-dev} (disallow access to special files), @code{no-suid} (ignore setuid and setgid bits), @code{no-atime} (do not update file access times), @code{strict-atime} (update file access time), @code{lazy-time} (only update time on the in-memory version of the file inode), and @code{no-exec} (disallow program execution). @xref{Mount-Unmount-Remount,,, libc, The GNU C Library Reference Manual}, for more information on these flags." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14886 +#: guix-git/doc/guix.texi:15243 #, no-wrap msgid "@code{options} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14895 +#: guix-git/doc/guix.texi:15252 msgid "This is either @code{#f}, or a string denoting mount options passed to the file system driver. @xref{Mount-Unmount-Remount,,, libc, The GNU C Library Reference Manual}, for details and run @command{man 8 mount} for options for various file systems. Note that the @code{file-system-options->alist} and @code{alist->file-system-options} procedures from @code{(gnu system file-systems)} can be used to convert file system options given as an association list to the string representation, and vice-versa." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14896 +#: guix-git/doc/guix.texi:15253 #, no-wrap msgid "@code{mount?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14901 +#: guix-git/doc/guix.texi:15258 msgid "This value indicates whether to automatically mount the file system when the system is brought up. When set to @code{#f}, the file system gets an entry in @file{/etc/fstab} (read by the @command{mount} command) but is not automatically mounted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14902 +#: guix-git/doc/guix.texi:15259 #, no-wrap msgid "@code{needed-for-boot?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14907 +#: guix-git/doc/guix.texi:15264 msgid "This Boolean value indicates whether the file system is needed when booting. If that is true, then the file system is mounted when the initial RAM disk (initrd) is loaded. This is always the case, for instance, for the root file system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14908 +#: guix-git/doc/guix.texi:15265 #, no-wrap msgid "@code{check?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14912 +#: guix-git/doc/guix.texi:15269 msgid "This Boolean indicates whether the file system should be checked for errors before being mounted. How and when this happens can be further adjusted with the following options." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14913 +#: guix-git/doc/guix.texi:15270 #, no-wrap msgid "@code{skip-check-if-clean?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14918 +#: guix-git/doc/guix.texi:15275 msgid "When true, this Boolean indicates that a file system check triggered by @code{check?} may exit early if the file system is marked as ``clean'', meaning that it was previously correctly unmounted and should not contain errors." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14922 +#: guix-git/doc/guix.texi:15279 msgid "Setting this to false will always force a full consistency check when @code{check?} is true. This may take a very long time and is not recommended on healthy systems---in fact, it may reduce reliability!" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14926 +#: guix-git/doc/guix.texi:15283 msgid "Conversely, some primitive file systems like @code{fat} do not keep track of clean shutdowns and will perform a full scan regardless of the value of this option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14927 +#: guix-git/doc/guix.texi:15284 #, no-wrap msgid "@code{repair} (default: @code{'preen})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14930 +#: guix-git/doc/guix.texi:15287 msgid "When @code{check?} finds errors, it can (try to) repair them and continue booting. This option controls when and how to do so." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14934 +#: guix-git/doc/guix.texi:15291 msgid "If false, try not to modify the file system at all. Checking certain file systems like @code{jfs} may still write to the device to replay the journal. No repairs will be attempted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14937 +#: guix-git/doc/guix.texi:15294 msgid "If @code{#t}, try to repair any errors found and assume ``yes'' to all questions. This will fix the most errors, but may be risky." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14941 +#: guix-git/doc/guix.texi:15298 msgid "If @code{'preen}, repair only errors that are safe to fix without human interaction. What that means is left up to the developers of each file system and may be equivalent to ``none'' or ``all''." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14942 +#: guix-git/doc/guix.texi:15299 #, no-wrap msgid "@code{create-mount-point?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14944 +#: guix-git/doc/guix.texi:15301 msgid "When true, the mount point is created if it does not exist yet." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14945 +#: guix-git/doc/guix.texi:15302 #, no-wrap msgid "@code{mount-may-fail?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14950 +#: guix-git/doc/guix.texi:15307 msgid "When true, this indicates that mounting this file system can fail but that should not be considered an error. This is useful in unusual cases; an example of this is @code{efivarfs}, a file system that can only be mounted on EFI/UEFI systems." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14951 guix-git/doc/guix.texi:15347 +#: guix-git/doc/guix.texi:15308 guix-git/doc/guix.texi:15704 #, no-wrap msgid "@code{dependencies} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14955 +#: guix-git/doc/guix.texi:15312 msgid "This is a list of @code{} or @code{} objects representing file systems that must be mounted or mapped devices that must be opened before (and unmounted or closed after) this one." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14959 +#: guix-git/doc/guix.texi:15316 msgid "As an example, consider a hierarchy of mounts: @file{/sys/fs/cgroup} is a dependency of @file{/sys/fs/cgroup/cpu} and @file{/sys/fs/cgroup/memory}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14962 +#: guix-git/doc/guix.texi:15319 msgid "Another example is a file system that depends on a mapped device, for example for an encrypted partition (@pxref{Mapped Devices})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14965 +#: guix-git/doc/guix.texi:15322 #, no-wrap msgid "{Scheme Procedure} file-system-label @var{str}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14968 +#: guix-git/doc/guix.texi:15325 msgid "This procedure returns an opaque file system label from @var{str}, a string:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14972 +#: guix-git/doc/guix.texi:15329 #, no-wrap msgid "" "(file-system-label \"home\")\n" @@ -26050,104 +26657,104 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14976 +#: guix-git/doc/guix.texi:15333 msgid "File system labels are used to refer to file systems by label rather than by device name. See above for examples." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14980 +#: guix-git/doc/guix.texi:15337 msgid "The @code{(gnu system file-systems)} exports the following useful variables." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14981 +#: guix-git/doc/guix.texi:15338 #, no-wrap msgid "{Scheme Variable} %base-file-systems" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14986 +#: guix-git/doc/guix.texi:15343 msgid "These are essential file systems that are required on normal systems, such as @code{%pseudo-terminal-file-system} and @code{%immutable-store} (see below). Operating system declarations should always contain at least these." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14988 +#: guix-git/doc/guix.texi:15345 #, no-wrap msgid "{Scheme Variable} %pseudo-terminal-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14994 +#: guix-git/doc/guix.texi:15351 msgid "This is the file system to be mounted as @file{/dev/pts}. It supports @dfn{pseudo-terminals} created @i{via} @code{openpty} and similar functions (@pxref{Pseudo-Terminals,,, libc, The GNU C Library Reference Manual}). Pseudo-terminals are used by terminal emulators such as @command{xterm}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14996 +#: guix-git/doc/guix.texi:15353 #, no-wrap msgid "{Scheme Variable} %shared-memory-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15000 +#: guix-git/doc/guix.texi:15357 msgid "This file system is mounted as @file{/dev/shm} and is used to support memory sharing across processes (@pxref{Memory-mapped I/O, @code{shm_open},, libc, The GNU C Library Reference Manual})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15002 +#: guix-git/doc/guix.texi:15359 #, no-wrap msgid "{Scheme Variable} %immutable-store" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15007 +#: guix-git/doc/guix.texi:15364 msgid "This file system performs a read-only ``bind mount'' of @file{/gnu/store}, making it read-only for all the users including @code{root}. This prevents against accidental modification by software running as @code{root} or by system administrators." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15010 +#: guix-git/doc/guix.texi:15367 msgid "The daemon itself is still able to write to the store: it remounts it read-write in its own ``name space.''" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15012 +#: guix-git/doc/guix.texi:15369 #, no-wrap msgid "{Scheme Variable} %binary-format-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15016 +#: guix-git/doc/guix.texi:15373 msgid "The @code{binfmt_misc} file system, which allows handling of arbitrary executable file types to be delegated to user space. This requires the @code{binfmt.ko} kernel module to be loaded." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15018 +#: guix-git/doc/guix.texi:15375 #, no-wrap msgid "{Scheme Variable} %fuse-control-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15022 +#: guix-git/doc/guix.texi:15379 msgid "The @code{fusectl} file system, which allows unprivileged users to mount and unmount user-space FUSE file systems. This requires the @code{fuse.ko} kernel module to be loaded." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15026 +#: guix-git/doc/guix.texi:15383 msgid "The @code{(gnu system uuid)} module provides tools to deal with file system ``unique identifiers'' (UUIDs)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15027 +#: guix-git/doc/guix.texi:15384 #, no-wrap msgid "{Scheme Procedure} uuid @var{str} [@var{type}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15030 +#: guix-git/doc/guix.texi:15387 msgid "Return an opaque UUID (unique identifier) object of the given @var{type} (a symbol) by parsing @var{str} (a string):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15034 +#: guix-git/doc/guix.texi:15391 #, no-wrap msgid "" "(uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\")\n" @@ -26156,7 +26763,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15037 +#: guix-git/doc/guix.texi:15394 #, no-wrap msgid "" "(uuid \"1234-ABCD\" 'fat)\n" @@ -26164,33 +26771,33 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15041 +#: guix-git/doc/guix.texi:15398 msgid "@var{type} may be one of @code{dce}, @code{iso9660}, @code{fat}, @code{ntfs}, or one of the commonly found synonyms for these." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15044 +#: guix-git/doc/guix.texi:15401 msgid "UUIDs are another way to unambiguously refer to file systems in operating system configuration. See the examples above." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:15047 guix-git/doc/guix.texi:15048 +#: guix-git/doc/guix.texi:15404 guix-git/doc/guix.texi:15405 #, no-wrap msgid "Btrfs file system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15054 +#: guix-git/doc/guix.texi:15411 msgid "The Btrfs has special features, such as subvolumes, that merit being explained in more details. The following section attempts to cover basic as well as complex uses of a Btrfs file system with the Guix System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15057 +#: guix-git/doc/guix.texi:15414 msgid "In its simplest usage, a Btrfs file system can be described, for example, by:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15063 +#: guix-git/doc/guix.texi:15420 #, no-wrap msgid "" "(file-system\n" @@ -26200,12 +26807,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15069 +#: guix-git/doc/guix.texi:15426 msgid "The example below is more complex, as it makes use of a Btrfs subvolume, named @code{rootfs}. The parent Btrfs file system is labeled @code{my-btrfs-pool}, and is located on an encrypted device (hence the dependency on @code{mapped-devices}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15077 +#: guix-git/doc/guix.texi:15434 #, no-wrap msgid "" "(file-system\n" @@ -26217,17 +26824,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15088 +#: guix-git/doc/guix.texi:15445 msgid "Some bootloaders, for example GRUB, only mount a Btrfs partition at its top level during the early boot, and rely on their configuration to refer to the correct subvolume path within that top level. The bootloaders operating in this way typically produce their configuration on a running system where the Btrfs partitions are already mounted and where the subvolume information is readily available. As an example, @command{grub-mkconfig}, the configuration generator command shipped with GRUB, reads @file{/proc/self/mountinfo} to determine the top-level path of a subvolume." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15096 +#: guix-git/doc/guix.texi:15453 msgid "The Guix System produces a bootloader configuration using the operating system configuration as its sole input; it is therefore necessary to extract the subvolume name on which @file{/gnu/store} lives (if any) from that operating system configuration. To better illustrate, consider a subvolume named 'rootfs' which contains the root file system data. In such situation, the GRUB bootloader would only see the top level of the root Btrfs partition, e.g.:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15103 +#: guix-git/doc/guix.texi:15460 #, no-wrap msgid "" "/ (top level)\n" @@ -26238,17 +26845,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15108 +#: guix-git/doc/guix.texi:15465 msgid "Thus, the subvolume name must be prepended to the @file{/gnu/store} path of the kernel, initrd binaries and any other files referred to in the GRUB configuration that must be found during the early boot." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15111 +#: guix-git/doc/guix.texi:15468 msgid "The next example shows a nested hierarchy of subvolumes and directories:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15118 +#: guix-git/doc/guix.texi:15475 #, no-wrap msgid "" "/ (top level)\n" @@ -26259,17 +26866,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15125 +#: guix-git/doc/guix.texi:15482 msgid "This scenario would work without mounting the 'store' subvolume. Mounting 'rootfs' is sufficient, since the subvolume name matches its intended mount point in the file system hierarchy. Alternatively, the 'store' subvolume could be referred to by setting the @code{subvol} option to either @code{/rootfs/gnu/store} or @code{rootfs/gnu/store}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15127 +#: guix-git/doc/guix.texi:15484 msgid "Finally, a more contrived example of nested subvolumes:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15134 +#: guix-git/doc/guix.texi:15491 #, no-wrap msgid "" "/ (top level)\n" @@ -26280,12 +26887,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15141 +#: guix-git/doc/guix.texi:15498 msgid "Here, the 'guix-store' subvolume doesn't match its intended mount point, so it is necessary to mount it. The subvolume must be fully specified, by passing its file name to the @code{subvol} option. To illustrate, the 'guix-store' subvolume could be mounted on @file{/gnu/store} by using a file system declaration such as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15149 +#: guix-git/doc/guix.texi:15506 #, no-wrap msgid "" "(file-system\n" @@ -26297,128 +26904,128 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15154 +#: guix-git/doc/guix.texi:15511 #, no-wrap msgid "device mapping" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15155 +#: guix-git/doc/guix.texi:15512 #, no-wrap msgid "mapped devices" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15172 +#: guix-git/doc/guix.texi:15529 msgid "The Linux kernel has a notion of @dfn{device mapping}: a block device, such as a hard disk partition, can be @dfn{mapped} into another device, usually in @code{/dev/mapper/}, with additional processing over the data that flows through it@footnote{Note that the GNU@tie{}Hurd makes no difference between the concept of a ``mapped device'' and that of a file system: both boil down to @emph{translating} input/output operations made on a file to operations on its backing store. Thus, the Hurd implements mapped devices, like file systems, using the generic @dfn{translator} mechanism (@pxref{Translators,,, hurd, The GNU Hurd Reference Manual}).}. A typical example is encryption device mapping: all writes to the mapped device are encrypted, and all reads are deciphered, transparently. Guix extends this notion by considering any device or set of devices that are @dfn{transformed} in some way to create a new device; for instance, RAID devices are obtained by @dfn{assembling} several other devices, such as hard disks or partitions, into a new one that behaves as one partition." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15175 +#: guix-git/doc/guix.texi:15532 msgid "Mapped devices are declared using the @code{mapped-device} form, defined as follows; for examples, see below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15176 +#: guix-git/doc/guix.texi:15533 #, no-wrap msgid "{Data Type} mapped-device" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15179 +#: guix-git/doc/guix.texi:15536 msgid "Objects of this type represent device mappings that will be made when the system boots up." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15186 +#: guix-git/doc/guix.texi:15543 msgid "This is either a string specifying the name of the block device to be mapped, such as @code{\"/dev/sda3\"}, or a list of such strings when several devices need to be assembled for creating a new one. In case of LVM this is a string specifying name of the volume group to be mapped." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:15187 guix-git/doc/guix.texi:15342 +#: guix-git/doc/guix.texi:15544 guix-git/doc/guix.texi:15699 #, no-wrap msgid "target" msgstr "kohde" #. type: table -#: guix-git/doc/guix.texi:15196 +#: guix-git/doc/guix.texi:15553 msgid "This string specifies the name of the resulting mapped device. For kernel mappers such as encrypted devices of type @code{luks-device-mapping}, specifying @code{\"my-partition\"} leads to the creation of the @code{\"/dev/mapper/my-partition\"} device. For RAID devices of type @code{raid-device-mapping}, the full device name such as @code{\"/dev/md0\"} needs to be given. LVM logical volumes of type @code{lvm-device-mapping} need to be specified as @code{\"VGNAME-LVNAME\"}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:15197 guix-git/doc/guix.texi:34634 +#: guix-git/doc/guix.texi:15554 guix-git/doc/guix.texi:35073 #, no-wrap msgid "targets" msgstr "kohteet" #. type: table -#: guix-git/doc/guix.texi:15200 +#: guix-git/doc/guix.texi:15557 msgid "This list of strings specifies names of the resulting mapped devices in case there are several. The format is identical to @var{target}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15204 +#: guix-git/doc/guix.texi:15561 msgid "This must be a @code{mapped-device-kind} object, which specifies how @var{source} is mapped to @var{target}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15207 +#: guix-git/doc/guix.texi:15564 #, no-wrap msgid "{Scheme Variable} luks-device-mapping" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15211 +#: guix-git/doc/guix.texi:15568 msgid "This defines LUKS block device encryption using the @command{cryptsetup} command from the package with the same name. It relies on the @code{dm-crypt} Linux kernel module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15213 +#: guix-git/doc/guix.texi:15570 #, no-wrap msgid "{Scheme Variable} raid-device-mapping" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15218 +#: guix-git/doc/guix.texi:15575 msgid "This defines a RAID device, which is assembled using the @code{mdadm} command from the package with the same name. It requires a Linux kernel module for the appropriate RAID level to be loaded, such as @code{raid456} for RAID-4, RAID-5 or RAID-6, or @code{raid10} for RAID-10." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15220 +#: guix-git/doc/guix.texi:15577 #, no-wrap msgid "LVM, logical volume manager" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15221 +#: guix-git/doc/guix.texi:15578 #, no-wrap msgid "{Scheme Variable} lvm-device-mapping" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15226 +#: guix-git/doc/guix.texi:15583 msgid "This defines one or more logical volumes for the Linux @uref{https://www.sourceware.org/lvm2/, Logical Volume Manager (LVM)}. The volume group is activated by the @command{vgchange} command from the @code{lvm2} package." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15228 +#: guix-git/doc/guix.texi:15585 #, no-wrap msgid "disk encryption" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15229 +#: guix-git/doc/guix.texi:15586 #, no-wrap msgid "LUKS" msgstr "LUKS" #. type: Plain text -#: guix-git/doc/guix.texi:15237 +#: guix-git/doc/guix.texi:15594 msgid "The following example specifies a mapping from @file{/dev/sda3} to @file{/dev/mapper/home} using LUKS---the @url{https://gitlab.com/cryptsetup/cryptsetup,Linux Unified Key Setup}, a standard mechanism for disk encryption. The @file{/dev/mapper/home} device can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15243 +#: guix-git/doc/guix.texi:15600 #, no-wrap msgid "" "(mapped-device\n" @@ -26428,23 +27035,23 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15248 +#: guix-git/doc/guix.texi:15605 msgid "Alternatively, to become independent of device numbering, one may obtain the LUKS UUID (@dfn{unique identifier}) of the source device by a command like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15251 +#: guix-git/doc/guix.texi:15608 #, no-wrap msgid "cryptsetup luksUUID /dev/sda3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15254 +#: guix-git/doc/guix.texi:15611 msgid "and use it as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15260 +#: guix-git/doc/guix.texi:15617 #, no-wrap msgid "" "(mapped-device\n" @@ -26454,23 +27061,23 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15262 +#: guix-git/doc/guix.texi:15619 #, no-wrap msgid "swap encryption" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15269 +#: guix-git/doc/guix.texi:15626 msgid "It is also desirable to encrypt swap space, since swap space may contain sensitive data. One way to accomplish that is to use a swap file in a file system on a device mapped via LUKS encryption. In this way, the swap file is encrypted because the entire device is encrypted. @xref{Swap Space}, or @xref{Preparing for Installation,,Disk Partitioning}, for an example." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15272 +#: guix-git/doc/guix.texi:15629 msgid "A RAID device formed of the partitions @file{/dev/sda1} and @file{/dev/sdb1} may be declared as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15278 +#: guix-git/doc/guix.texi:15635 #, no-wrap msgid "" "(mapped-device\n" @@ -26480,17 +27087,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15285 +#: guix-git/doc/guix.texi:15642 msgid "The @file{/dev/md0} device can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems}). Note that the RAID level need not be given; it is chosen during the initial creation and formatting of the RAID device and is determined automatically later." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15288 +#: guix-git/doc/guix.texi:15645 msgid "LVM logical volumes ``alpha'' and ``beta'' from volume group ``vg0'' can be declared as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15294 +#: guix-git/doc/guix.texi:15651 #, no-wrap msgid "" "(mapped-device\n" @@ -26500,102 +27107,102 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15299 +#: guix-git/doc/guix.texi:15656 msgid "Devices @file{/dev/mapper/vg0-alpha} and @file{/dev/mapper/vg0-beta} can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15302 +#: guix-git/doc/guix.texi:15659 #, no-wrap msgid "swap space" msgstr "sivutuksen tila" #. type: Plain text -#: guix-git/doc/guix.texi:15312 +#: guix-git/doc/guix.texi:15669 msgid "Swap space, as it is commonly called, is a disk area specifically designated for paging: the process in charge of memory management (the Linux kernel or Hurd's default pager) can decide that some memory pages stored in RAM which belong to a running program but are unused should be stored on disk instead. It unloads those from the RAM, freeing up precious fast memory, and writes them to the swap space. If the program tries to access that very page, the memory management process loads it back into memory for the program to use." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15318 +#: guix-git/doc/guix.texi:15675 msgid "A common misconception about swap is that it is only useful when small amounts of RAM are available to the system. However, it should be noted that kernels often use all available RAM for disk access caching to make I/O faster, and thus paging out unused portions of program memory will expand the RAM available for such caching." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15322 +#: guix-git/doc/guix.texi:15679 msgid "For a more detailed description of how memory is managed from the viewpoint of a monolithic kernel, @xref{Memory Concepts,,, libc, The GNU C Library Reference Manual}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15331 +#: guix-git/doc/guix.texi:15688 msgid "The Linux kernel has support for swap partitions and swap files: the former uses a whole disk partition for paging, whereas the second uses a file on a file system for that (the file system driver needs to support it). On a comparable setup, both have the same performance, so one should consider ease of use when deciding between them. Partitions are ``simpler'' and do not need file system support, but need to be allocated at disk formatting time (logical volumes notwithstanding), whereas files can be allocated and deallocated at any time." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15336 +#: guix-git/doc/guix.texi:15693 msgid "Note that swap space is not zeroed on shutdown, so sensitive data (such as passwords) may linger on it if it was paged out. As such, you should consider having your swap reside on an encrypted device (@pxref{Mapped Devices})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15337 +#: guix-git/doc/guix.texi:15694 #, no-wrap msgid "{Data Type} swap-space" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15340 +#: guix-git/doc/guix.texi:15697 msgid "Objects of this type represent swap spaces. They contain the following members:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15346 +#: guix-git/doc/guix.texi:15703 msgid "The device or file to use, either a UUID, a @code{file-system-label} or a string, as in the definition of a @code{file-system} (@pxref{File Systems})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15353 +#: guix-git/doc/guix.texi:15710 msgid "A list of @code{file-system} or @code{mapped-device} objects, upon which the availability of the space depends. Note that just like for @code{file-system} objects, dependencies which are needed for boot and mounted in early userspace are not managed by the Shepherd, and so automatically filtered out for you." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15354 +#: guix-git/doc/guix.texi:15711 #, no-wrap msgid "@code{priority} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15361 +#: guix-git/doc/guix.texi:15718 msgid "Only supported by the Linux kernel. Either @code{#f} to disable swap priority, or an integer between 0 and 32767. The kernel will first use swap spaces of higher priority when paging, and use same priority spaces on a round-robin basis. The kernel will use swap spaces without a set priority after prioritized spaces, and in the order that they appeared in (not round-robin)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15362 +#: guix-git/doc/guix.texi:15719 #, no-wrap msgid "@code{discard?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15366 +#: guix-git/doc/guix.texi:15723 msgid "Only supported by the Linux kernel. When true, the kernel will notify the disk controller of discarded pages, for example with the TRIM operation on Solid State Drives." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15371 +#: guix-git/doc/guix.texi:15728 msgid "Here are some examples:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15374 +#: guix-git/doc/guix.texi:15731 #, no-wrap msgid "(swap-space (target (uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\")))\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15379 +#: guix-git/doc/guix.texi:15736 msgid "Use the swap partition with the given UUID@. You can learn the UUID of a Linux swap partition by running @command{swaplabel @var{device}}, where @var{device} is the @file{/dev} file name of that partition." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15384 +#: guix-git/doc/guix.texi:15741 #, no-wrap msgid "" "(swap-space\n" @@ -26604,12 +27211,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15390 +#: guix-git/doc/guix.texi:15747 msgid "Use the partition with label @code{swap}, which can be found after the @var{lvm-device} mapped device has been opened. Again, the @command{swaplabel} command allows you to view and change the label of a Linux swap partition." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15395 +#: guix-git/doc/guix.texi:15752 #, no-wrap msgid "" "(swap-space\n" @@ -26618,35 +27225,35 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15399 +#: guix-git/doc/guix.texi:15756 msgid "Use the file @file{/btrfs/swapfile} as swap space, which is present on the @var{btrfs-fs} filesystem." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15403 +#: guix-git/doc/guix.texi:15760 #, no-wrap msgid "users" msgstr "käyttäjät" #. type: cindex -#: guix-git/doc/guix.texi:15404 +#: guix-git/doc/guix.texi:15761 #, no-wrap msgid "accounts" msgstr "käyttäjätilit" #. type: cindex -#: guix-git/doc/guix.texi:15405 +#: guix-git/doc/guix.texi:15762 #, no-wrap msgid "user accounts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15409 +#: guix-git/doc/guix.texi:15766 msgid "User accounts and groups are entirely managed through the @code{operating-system} declaration. They are specified with the @code{user-account} and @code{user-group} forms:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15419 +#: guix-git/doc/guix.texi:15776 #, no-wrap msgid "" "(user-account\n" @@ -26660,12 +27267,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15423 +#: guix-git/doc/guix.texi:15780 msgid "Here's a user account that uses a different shell and a custom home directory (the default would be @file{\"/home/bob\"}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15431 +#: guix-git/doc/guix.texi:15788 #, no-wrap msgid "" "(user-account\n" @@ -26677,171 +27284,171 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15440 +#: guix-git/doc/guix.texi:15797 msgid "When booting or upon completion of @command{guix system reconfigure}, the system ensures that only the user accounts and groups specified in the @code{operating-system} declaration exist, and with the specified properties. Thus, account or group creations or modifications made by directly invoking commands such as @command{useradd} are lost upon reconfiguration or reboot. This ensures that the system remains exactly as declared." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15441 +#: guix-git/doc/guix.texi:15798 #, no-wrap msgid "{Data Type} user-account" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15444 +#: guix-git/doc/guix.texi:15801 msgid "Objects of this type represent user accounts. The following members may be specified:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15448 +#: guix-git/doc/guix.texi:15805 msgid "The name of the user account." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:15449 guix-git/doc/guix.texi:34298 +#: guix-git/doc/guix.texi:15806 guix-git/doc/guix.texi:34737 #, no-wrap msgid "group" msgstr "ryhmä" #. type: cindex -#: guix-git/doc/guix.texi:15450 guix-git/doc/guix.texi:15534 +#: guix-git/doc/guix.texi:15807 guix-git/doc/guix.texi:15891 #, no-wrap msgid "groups" msgstr "ryhmät" #. type: table -#: guix-git/doc/guix.texi:15453 +#: guix-git/doc/guix.texi:15810 msgid "This is the name (a string) or identifier (a number) of the user group this account belongs to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15454 +#: guix-git/doc/guix.texi:15811 #, no-wrap msgid "@code{supplementary-groups} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15457 +#: guix-git/doc/guix.texi:15814 msgid "Optionally, this can be defined as a list of group names that this account belongs to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15458 +#: guix-git/doc/guix.texi:15815 #, no-wrap msgid "@code{uid} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15462 +#: guix-git/doc/guix.texi:15819 msgid "This is the user ID for this account (a number), or @code{#f}. In the latter case, a number is automatically chosen by the system when the account is created." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15463 guix-git/doc/guix.texi:18217 +#: guix-git/doc/guix.texi:15820 guix-git/doc/guix.texi:18579 #, no-wrap msgid "@code{comment} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15465 +#: guix-git/doc/guix.texi:15822 msgid "A comment about the account, such as the account owner's full name." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15470 +#: guix-git/doc/guix.texi:15827 msgid "Note that, for non-system accounts, users are free to change their real name as it appears in @file{/etc/passwd} using the @command{chfn} command. When they do, their choice prevails over the system administrator's choice; reconfiguring does @emph{not} change their name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:15471 +#: guix-git/doc/guix.texi:15828 #, no-wrap msgid "home-directory" msgstr "kotihakemisto" #. type: table -#: guix-git/doc/guix.texi:15473 +#: guix-git/doc/guix.texi:15830 msgid "This is the name of the home directory for the account." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15474 +#: guix-git/doc/guix.texi:15831 #, no-wrap msgid "@code{create-home-directory?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15477 +#: guix-git/doc/guix.texi:15834 msgid "Indicates whether the home directory of this account should be created if it does not exist yet." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15478 +#: guix-git/doc/guix.texi:15835 #, no-wrap msgid "@code{shell} (default: Bash)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15482 +#: guix-git/doc/guix.texi:15839 msgid "This is a G-expression denoting the file name of a program to be used as the shell (@pxref{G-Expressions}). For example, you would refer to the Bash executable like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15485 +#: guix-git/doc/guix.texi:15842 #, no-wrap msgid "(file-append bash \"/bin/bash\")\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15489 +#: guix-git/doc/guix.texi:15846 msgid "... and to the Zsh executable like that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15492 +#: guix-git/doc/guix.texi:15849 #, no-wrap msgid "(file-append zsh \"/bin/zsh\")\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:15494 guix-git/doc/guix.texi:15552 +#: guix-git/doc/guix.texi:15851 guix-git/doc/guix.texi:15909 #, no-wrap msgid "@code{system?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15498 +#: guix-git/doc/guix.texi:15855 msgid "This Boolean value indicates whether the account is a ``system'' account. System accounts are sometimes treated specially; for instance, graphical login managers do not list them." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:15500 +#: guix-git/doc/guix.texi:15857 msgid "user-account-password" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15500 +#: guix-git/doc/guix.texi:15857 #, no-wrap msgid "password, for user accounts" msgstr "" #. type: item -#: guix-git/doc/guix.texi:15501 guix-git/doc/guix.texi:15556 +#: guix-git/doc/guix.texi:15858 guix-git/doc/guix.texi:15913 #, no-wrap msgid "@code{password} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15507 +#: guix-git/doc/guix.texi:15864 msgid "You would normally leave this field to @code{#f}, initialize user passwords as @code{root} with the @command{passwd} command, and then let users change it with @command{passwd}. Passwords set with @command{passwd} are of course preserved across reboot and reconfiguration." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15511 +#: guix-git/doc/guix.texi:15868 msgid "If you @emph{do} want to set an initial password for an account, then this field must contain the encrypted password, as a string. You can use the @code{crypt} procedure for this purpose:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15516 +#: guix-git/doc/guix.texi:15873 #, no-wrap msgid "" "(user-account\n" @@ -26851,7 +27458,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15519 +#: guix-git/doc/guix.texi:15876 #, no-wrap msgid "" " ;; Specify a SHA-512-hashed initial password.\n" @@ -26859,171 +27466,171 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:15525 +#: guix-git/doc/guix.texi:15882 msgid "The hash of this initial password will be available in a file in @file{/gnu/store}, readable by all the users, so this method must be used with care." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15530 +#: guix-git/doc/guix.texi:15887 msgid "@xref{Passphrase Storage,,, libc, The GNU C Library Reference Manual}, for more information on password encryption, and @ref{Encryption,,, guile, GNU Guile Reference Manual}, for information on Guile's @code{crypt} procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15536 +#: guix-git/doc/guix.texi:15893 msgid "User group declarations are even simpler:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15539 +#: guix-git/doc/guix.texi:15896 #, no-wrap msgid "(user-group (name \"students\"))\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15541 +#: guix-git/doc/guix.texi:15898 #, no-wrap msgid "{Data Type} user-group" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15543 +#: guix-git/doc/guix.texi:15900 msgid "This type is for, well, user groups. There are just a few fields:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15547 +#: guix-git/doc/guix.texi:15904 msgid "The name of the group." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15548 guix-git/doc/guix.texi:30819 +#: guix-git/doc/guix.texi:15905 guix-git/doc/guix.texi:31184 #, no-wrap msgid "@code{id} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15551 +#: guix-git/doc/guix.texi:15908 msgid "The group identifier (a number). If @code{#f}, a new number is automatically allocated when the group is created." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15555 +#: guix-git/doc/guix.texi:15912 msgid "This Boolean value indicates whether the group is a ``system'' group. System groups have low numerical IDs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15559 +#: guix-git/doc/guix.texi:15916 msgid "What, user groups can have a password? Well, apparently yes. Unless @code{#f}, this field specifies the password of the group." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15565 +#: guix-git/doc/guix.texi:15922 msgid "For convenience, a variable lists all the basic user groups one may expect:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15566 +#: guix-git/doc/guix.texi:15923 #, no-wrap msgid "{Scheme Variable} %base-groups" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15571 +#: guix-git/doc/guix.texi:15928 msgid "This is the list of basic user groups that users and/or packages expect to be present on the system. This includes groups such as ``root'', ``wheel'', and ``users'', as well as groups used to control access to specific devices such as ``audio'', ``disk'', and ``cdrom''." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15573 +#: guix-git/doc/guix.texi:15930 #, no-wrap msgid "{Scheme Variable} %base-user-accounts" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15576 +#: guix-git/doc/guix.texi:15933 msgid "This is the list of basic system accounts that programs may expect to find on a GNU/Linux system, such as the ``nobody'' account." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15579 +#: guix-git/doc/guix.texi:15936 msgid "Note that the ``root'' account is not included here. It is a special-case and is automatically added whether or not it is specified." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15585 +#: guix-git/doc/guix.texi:15942 #, no-wrap msgid "keymap" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15593 +#: guix-git/doc/guix.texi:15950 msgid "To specify what each key of your keyboard does, you need to tell the operating system what @dfn{keyboard layout} you want to use. The default, when nothing is specified, is the US English QWERTY layout for 105-key PC keyboards. However, German speakers will usually prefer the German QWERTZ layout, French speakers will want the AZERTY layout, and so on; hackers might prefer Dvorak or bépo, and they might even want to further customize the effect of some of the keys. This section explains how to get that done." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15594 +#: guix-git/doc/guix.texi:15951 #, no-wrap msgid "keyboard layout, definition" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15596 +#: guix-git/doc/guix.texi:15953 msgid "There are three components that will want to know about your keyboard layout:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15603 +#: guix-git/doc/guix.texi:15960 msgid "The @emph{bootloader} may want to know what keyboard layout you want to use (@pxref{Bootloader Configuration, @code{keyboard-layout}}). This is useful if you want, for instance, to make sure that you can type the passphrase of your encrypted root partition using the right layout." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15608 +#: guix-git/doc/guix.texi:15965 msgid "The @emph{operating system kernel}, Linux, will need that so that the console is properly configured (@pxref{operating-system Reference, @code{keyboard-layout}})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15612 +#: guix-git/doc/guix.texi:15969 msgid "The @emph{graphical display server}, usually Xorg, also has its own idea of the keyboard layout (@pxref{X Window, @code{keyboard-layout}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15616 +#: guix-git/doc/guix.texi:15973 msgid "Guix allows you to configure all three separately but, fortunately, it allows you to share the same keyboard layout for all three components." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15617 +#: guix-git/doc/guix.texi:15974 #, no-wrap msgid "XKB, keyboard layouts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15625 +#: guix-git/doc/guix.texi:15982 msgid "Keyboard layouts are represented by records created by the @code{keyboard-layout} procedure of @code{(gnu system keyboard)}. Following the X Keyboard extension (XKB), each layout has four attributes: a name (often a language code such as ``fi'' for Finnish or ``jp'' for Japanese), an optional variant name, an optional keyboard model name, and a possibly empty list of additional options. In most cases the layout name is all you care about." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15626 +#: guix-git/doc/guix.texi:15983 #, no-wrap msgid "{Scheme Procedure} keyboard-layout @var{name} [@var{variant}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15629 +#: guix-git/doc/guix.texi:15986 msgid "[#:model] [#:options '()] Return a new keyboard layout with the given @var{name} and @var{variant}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15633 +#: guix-git/doc/guix.texi:15990 msgid "@var{name} must be a string such as @code{\"fr\"}; @var{variant} must be a string such as @code{\"bepo\"} or @code{\"nodeadkeys\"}. See the @code{xkeyboard-config} package for valid options." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15636 +#: guix-git/doc/guix.texi:15993 msgid "Here are a few examples:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15641 +#: guix-git/doc/guix.texi:15998 #, no-wrap msgid "" ";; The German QWERTZ layout. Here we assume a standard\n" @@ -27033,7 +27640,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15644 +#: guix-git/doc/guix.texi:16001 #, no-wrap msgid "" ";; The bépo variant of the French layout.\n" @@ -27042,7 +27649,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15647 +#: guix-git/doc/guix.texi:16004 #, no-wrap msgid "" ";; The Catalan layout.\n" @@ -27051,7 +27658,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15650 +#: guix-git/doc/guix.texi:16007 #, no-wrap msgid "" ";; Arabic layout with \"Alt-Shift\" to switch to US layout.\n" @@ -27060,7 +27667,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15657 +#: guix-git/doc/guix.texi:16014 #, no-wrap msgid "" ";; The Latin American Spanish layout. In addition, the\n" @@ -27073,7 +27680,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15660 +#: guix-git/doc/guix.texi:16017 #, no-wrap msgid "" ";; The Russian layout for a ThinkPad keyboard.\n" @@ -27082,7 +27689,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15665 +#: guix-git/doc/guix.texi:16022 #, no-wrap msgid "" ";; The \"US international\" layout, which is the US layout plus\n" @@ -27092,29 +27699,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15669 +#: guix-git/doc/guix.texi:16026 msgid "See the @file{share/X11/xkb} directory of the @code{xkeyboard-config} package for a complete list of supported layouts, variants, and models." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15670 +#: guix-git/doc/guix.texi:16027 #, no-wrap msgid "keyboard layout, configuration" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15674 +#: guix-git/doc/guix.texi:16031 msgid "Let's say you want your system to use the Turkish keyboard layout throughout your system---bootloader, console, and Xorg. Here's what your system configuration would look like:" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:15675 +#: guix-git/doc/guix.texi:16032 #, no-wrap msgid "set-xorg-configuration" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15679 +#: guix-git/doc/guix.texi:16036 #, no-wrap msgid "" ";; Using the Turkish layout for the bootloader, the console,\n" @@ -27123,7 +27730,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15691 +#: guix-git/doc/guix.texi:16048 #, no-wrap msgid "" "(operating-system\n" @@ -27140,76 +27747,76 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15698 +#: guix-git/doc/guix.texi:16055 msgid "In the example above, for GRUB and for Xorg, we just refer to the @code{keyboard-layout} field defined above, but we could just as well refer to a different layout. The @code{set-xorg-configuration} procedure communicates the desired Xorg configuration to the graphical log-in manager, by default GDM." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15701 +#: guix-git/doc/guix.texi:16058 msgid "We've discussed how to specify the @emph{default} keyboard layout of your system when it starts, but you can also adjust it at run time:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15706 +#: guix-git/doc/guix.texi:16063 msgid "If you're using GNOME, its settings panel has a ``Region & Language'' entry where you can select one or more keyboard layouts." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15711 +#: guix-git/doc/guix.texi:16068 msgid "Under Xorg, the @command{setxkbmap} command (from the same-named package) allows you to change the current layout. For example, this is how you would change the layout to US Dvorak:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15714 +#: guix-git/doc/guix.texi:16071 #, no-wrap msgid "setxkbmap us dvorak\n" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15721 +#: guix-git/doc/guix.texi:16078 msgid "The @code{loadkeys} command changes the keyboard layout in effect in the Linux console. However, note that @code{loadkeys} does @emph{not} use the XKB keyboard layout categorization described above. The command below loads the French bépo layout:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15724 +#: guix-git/doc/guix.texi:16081 #, no-wrap msgid "loadkeys fr-bepo\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15730 +#: guix-git/doc/guix.texi:16087 #, no-wrap msgid "locale" msgstr "sijainti" #. type: Plain text -#: guix-git/doc/guix.texi:15737 +#: guix-git/doc/guix.texi:16094 msgid "A @dfn{locale} defines cultural conventions for a particular language and region of the world (@pxref{Locales,,, libc, The GNU C Library Reference Manual}). Each locale has a name that typically has the form @code{@var{language}_@var{territory}.@var{codeset}}---e.g., @code{fr_LU.utf8} designates the locale for the French language, with cultural conventions from Luxembourg, and using the UTF-8 encoding." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15738 +#: guix-git/doc/guix.texi:16095 #, no-wrap msgid "locale definition" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15742 +#: guix-git/doc/guix.texi:16099 msgid "Usually, you will want to specify the default locale for the machine using the @code{locale} field of the @code{operating-system} declaration (@pxref{operating-system Reference, @code{locale}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15751 +#: guix-git/doc/guix.texi:16108 msgid "The selected locale is automatically added to the @dfn{locale definitions} known to the system if needed, with its codeset inferred from its name---e.g., @code{bo_CN.utf8} will be assumed to use the @code{UTF-8} codeset. Additional locale definitions can be specified in the @code{locale-definitions} slot of @code{operating-system}---this is useful, for instance, if the codeset could not be inferred from the locale name. The default set of locale definitions includes some widely used locales, but not all the available locales, in order to save space." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15754 +#: guix-git/doc/guix.texi:16111 msgid "For instance, to add the North Frisian locale for Germany, the value of that field may be:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15759 +#: guix-git/doc/guix.texi:16116 #, no-wrap msgid "" "(cons (locale-definition\n" @@ -27218,12 +27825,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15763 +#: guix-git/doc/guix.texi:16120 msgid "Likewise, to save space, one might want @code{locale-definitions} to list only the locales that are actually used, as in:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15768 +#: guix-git/doc/guix.texi:16125 #, no-wrap msgid "" "(list (locale-definition\n" @@ -27232,114 +27839,114 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15777 +#: guix-git/doc/guix.texi:16134 msgid "The compiled locale definitions are available at @file{/run/current-system/locale/X.Y}, where @code{X.Y} is the libc version, which is the default location where the GNU@tie{}libc provided by Guix looks for locale data. This can be overridden using the @env{LOCPATH} environment variable (@pxref{locales-and-locpath, @env{LOCPATH} and locale packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15780 +#: guix-git/doc/guix.texi:16137 msgid "The @code{locale-definition} form is provided by the @code{(gnu system locale)} module. Details are given below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15781 +#: guix-git/doc/guix.texi:16138 #, no-wrap msgid "{Data Type} locale-definition" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15783 +#: guix-git/doc/guix.texi:16140 msgid "This is the data type of a locale definition." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15789 +#: guix-git/doc/guix.texi:16146 msgid "The name of the locale. @xref{Locale Names,,, libc, The GNU C Library Reference Manual}, for more information on locale names." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15793 +#: guix-git/doc/guix.texi:16150 msgid "The name of the source for that locale. This is typically the @code{@var{language}_@var{territory}} part of the locale name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15794 +#: guix-git/doc/guix.texi:16151 #, no-wrap msgid "@code{charset} (default: @code{\"UTF-8\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15798 +#: guix-git/doc/guix.texi:16155 msgid "The ``character set'' or ``code set'' for that locale, @uref{https://www.iana.org/assignments/character-sets, as defined by IANA}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15802 +#: guix-git/doc/guix.texi:16159 #, no-wrap msgid "{Scheme Variable} %default-locale-definitions" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15806 +#: guix-git/doc/guix.texi:16163 msgid "A list of commonly used UTF-8 locales, used as the default value of the @code{locale-definitions} field of @code{operating-system} declarations." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15807 +#: guix-git/doc/guix.texi:16164 #, no-wrap msgid "locale name" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15808 +#: guix-git/doc/guix.texi:16165 #, no-wrap msgid "normalized codeset in locale names" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15814 +#: guix-git/doc/guix.texi:16171 msgid "These locale definitions use the @dfn{normalized codeset} for the part that follows the dot in the name (@pxref{Using gettextized software, normalized codeset,, libc, The GNU C Library Reference Manual}). So for instance it has @code{uk_UA.utf8} but @emph{not}, say, @code{uk_UA.UTF-8}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:15816 +#: guix-git/doc/guix.texi:16173 #, no-wrap msgid "Locale Data Compatibility Considerations" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15818 +#: guix-git/doc/guix.texi:16175 #, no-wrap msgid "incompatibility, of locale data" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15825 +#: guix-git/doc/guix.texi:16182 msgid "@code{operating-system} declarations provide a @code{locale-libcs} field to specify the GNU@tie{}libc packages that are used to compile locale declarations (@pxref{operating-system Reference}). ``Why would I care?'', you may ask. Well, it turns out that the binary format of locale data is occasionally incompatible from one libc version to another." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15837 +#: guix-git/doc/guix.texi:16194 msgid "For instance, a program linked against libc version 2.21 is unable to read locale data produced with libc 2.22; worse, that program @emph{aborts} instead of simply ignoring the incompatible locale data@footnote{Versions 2.23 and later of GNU@tie{}libc will simply skip the incompatible locale data, which is already an improvement.}. Similarly, a program linked against libc 2.22 can read most, but not all, of the locale data from libc 2.21 (specifically, @env{LC_COLLATE} data is incompatible); thus calls to @code{setlocale} may fail, but programs will not abort." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15842 +#: guix-git/doc/guix.texi:16199 msgid "The ``problem'' with Guix is that users have a lot of freedom: They can choose whether and when to upgrade software in their profiles, and might be using a libc version different from the one the system administrator used to build the system-wide locale data." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15846 +#: guix-git/doc/guix.texi:16203 msgid "Fortunately, unprivileged users can also install their own locale data and define @env{GUIX_LOCPATH} accordingly (@pxref{locales-and-locpath, @env{GUIX_LOCPATH} and locale packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15853 +#: guix-git/doc/guix.texi:16210 msgid "Still, it is best if the system-wide locale data at @file{/run/current-system/locale} is built for all the libc versions actually in use on the system, so that all the programs can access it---this is especially crucial on a multi-user system. To do that, the administrator can specify several libc packages in the @code{locale-libcs} field of @code{operating-system}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15856 +#: guix-git/doc/guix.texi:16213 #, no-wrap msgid "" "(use-package-modules base)\n" @@ -27347,7 +27954,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15860 +#: guix-git/doc/guix.texi:16217 #, no-wrap msgid "" "(operating-system\n" @@ -27356,39 +27963,39 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15865 +#: guix-git/doc/guix.texi:16222 msgid "This example would lead to a system containing locale definitions for both libc 2.21 and the current version of libc in @file{/run/current-system/locale}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15870 +#: guix-git/doc/guix.texi:16227 #, no-wrap msgid "system services" msgstr "järjestelmäpalvelut" #. type: Plain text -#: guix-git/doc/guix.texi:15876 +#: guix-git/doc/guix.texi:16233 msgid "An important part of preparing an @code{operating-system} declaration is listing @dfn{system services} and their configuration (@pxref{Using the Configuration System}). System services are typically daemons launched when the system boots, or other actions needed at that time---e.g., configuring network access." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15883 +#: guix-git/doc/guix.texi:16240 msgid "Guix has a broad definition of ``service'' (@pxref{Service Composition}), but many services are managed by the GNU@tie{}Shepherd (@pxref{Shepherd Services}). On a running system, the @command{herd} command allows you to list the available services, show their status, start and stop them, or do other specific operations (@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}). For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15886 +#: guix-git/doc/guix.texi:16243 #, no-wrap msgid "# herd status\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15891 +#: guix-git/doc/guix.texi:16248 msgid "The above command, run as @code{root}, lists the currently defined services. The @command{herd doc} command shows a synopsis of the given service and its associated actions:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15895 +#: guix-git/doc/guix.texi:16252 #, no-wrap msgid "" "# herd doc nscd\n" @@ -27397,7 +28004,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15898 +#: guix-git/doc/guix.texi:16255 #, no-wrap msgid "" "# herd doc nscd action invalidate\n" @@ -27405,12 +28012,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15903 +#: guix-git/doc/guix.texi:16260 msgid "The @command{start}, @command{stop}, and @command{restart} sub-commands have the effect you would expect. For instance, the commands below stop the nscd service and restart the Xorg display server:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15910 +#: guix-git/doc/guix.texi:16267 #, no-wrap msgid "" "# herd stop nscd\n" @@ -27421,45 +28028,45 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15915 +#: guix-git/doc/guix.texi:16272 msgid "The following sections document the available services, starting with the core services, that may be used in an @code{operating-system} declaration." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:15951 guix-git/doc/guix.texi:24198 -#: guix-git/doc/guix.texi:24199 +#: guix-git/doc/guix.texi:16308 guix-git/doc/guix.texi:24560 +#: guix-git/doc/guix.texi:24561 #, no-wrap msgid "File-Sharing Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:16308 msgid "File-sharing services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15959 +#: guix-git/doc/guix.texi:16316 msgid "The @code{(gnu services base)} module provides definitions for the basic services that one expects from the system. The services exported by this module are listed below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15960 +#: guix-git/doc/guix.texi:16317 #, no-wrap msgid "{Scheme Variable} %base-services" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15966 +#: guix-git/doc/guix.texi:16323 msgid "This variable contains a list of basic services (@pxref{Service Types and Services}, for more information on service objects) one would expect from the system: a login service (mingetty) on each tty, syslogd, the libc name service cache daemon (nscd), the udev device manager, and more." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15971 +#: guix-git/doc/guix.texi:16328 msgid "This is the default value of the @code{services} field of @code{operating-system} declarations. Usually, when customizing a system, you will want to append services to @code{%base-services}, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15976 +#: guix-git/doc/guix.texi:16333 #, no-wrap msgid "" "(append (list (service avahi-service-type)\n" @@ -27468,58 +28075,58 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15979 +#: guix-git/doc/guix.texi:16336 #, no-wrap msgid "{Scheme Variable} special-files-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15982 +#: guix-git/doc/guix.texi:16339 msgid "This is the service that sets up ``special files'' such as @file{/bin/sh}; an instance of it is part of @code{%base-services}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15986 +#: guix-git/doc/guix.texi:16343 msgid "The value associated with @code{special-files-service-type} services must be a list of tuples where the first element is the ``special file'' and the second element is its target. By default it is:" msgstr "" #. type: file{#1} -#: guix-git/doc/guix.texi:15987 +#: guix-git/doc/guix.texi:16344 #, no-wrap msgid "/bin/sh" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15988 +#: guix-git/doc/guix.texi:16345 #, no-wrap msgid "@file{sh}, in @file{/bin}" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15991 +#: guix-git/doc/guix.texi:16348 #, no-wrap msgid "`((\"/bin/sh\" ,(file-append bash \"/bin/sh\")))\n" msgstr "" #. type: file{#1} -#: guix-git/doc/guix.texi:15993 +#: guix-git/doc/guix.texi:16350 #, no-wrap msgid "/usr/bin/env" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15994 +#: guix-git/doc/guix.texi:16351 #, no-wrap msgid "@file{env}, in @file{/usr/bin}" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15997 +#: guix-git/doc/guix.texi:16354 msgid "If you want to add, say, @code{/usr/bin/env} to your system, you can change it to:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16001 +#: guix-git/doc/guix.texi:16358 #, no-wrap msgid "" "`((\"/bin/sh\" ,(file-append bash \"/bin/sh\"))\n" @@ -27527,28 +28134,28 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16008 +#: guix-git/doc/guix.texi:16365 msgid "Since this is part of @code{%base-services}, you can use @code{modify-services} to customize the set of special files (@pxref{Service Reference, @code{modify-services}}). But the simple way to add a special file is @i{via} the @code{extra-special-file} procedure (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16010 +#: guix-git/doc/guix.texi:16367 #, no-wrap msgid "{Scheme Procedure} extra-special-file @var{file} @var{target}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16012 +#: guix-git/doc/guix.texi:16369 msgid "Use @var{target} as the ``special file'' @var{file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16016 +#: guix-git/doc/guix.texi:16373 msgid "For example, adding the following lines to the @code{services} field of your operating system declaration leads to a @file{/usr/bin/env} symlink:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16020 +#: guix-git/doc/guix.texi:16377 #, no-wrap msgid "" "(extra-special-file \"/usr/bin/env\"\n" @@ -27556,29 +28163,29 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16023 +#: guix-git/doc/guix.texi:16380 #, no-wrap msgid "{Scheme Procedure} host-name-service @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16025 +#: guix-git/doc/guix.texi:16382 msgid "Return a service that sets the host name to @var{name}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16027 +#: guix-git/doc/guix.texi:16384 #, no-wrap msgid "{Scheme Variable} console-font-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16032 +#: guix-git/doc/guix.texi:16389 msgid "Install the given fonts on the specified ttys (fonts are per virtual console on the kernel Linux). The value of this service is a list of tty/font pairs. The font can be the name of a font provided by the @code{kbd} package or any valid argument to @command{setfont}, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16041 +#: guix-git/doc/guix.texi:16398 #, no-wrap msgid "" "`((\"tty1\" . \"LatGrkCyr-8x16\")\n" @@ -27591,1109 +28198,1109 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16044 +#: guix-git/doc/guix.texi:16401 #, no-wrap msgid "{Scheme Procedure} login-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16048 +#: guix-git/doc/guix.texi:16405 msgid "Return a service to run login according to @var{config}, a @code{} object, which specifies the message of the day, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16050 +#: guix-git/doc/guix.texi:16407 #, no-wrap msgid "{Data Type} login-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16052 +#: guix-git/doc/guix.texi:16409 msgid "This is the data type representing the configuration of login." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16055 +#: guix-git/doc/guix.texi:16412 #, no-wrap msgid "motd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16056 +#: guix-git/doc/guix.texi:16413 #, no-wrap msgid "message of the day" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16058 +#: guix-git/doc/guix.texi:16415 msgid "A file-like object containing the ``message of the day''." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16059 guix-git/doc/guix.texi:19280 +#: guix-git/doc/guix.texi:16416 guix-git/doc/guix.texi:19642 #, no-wrap msgid "@code{allow-empty-passwords?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16062 +#: guix-git/doc/guix.texi:16419 msgid "Allow empty passwords by default so that first-time users can log in when the 'root' account has just been created." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16066 +#: guix-git/doc/guix.texi:16423 #, no-wrap msgid "{Scheme Procedure} mingetty-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16070 +#: guix-git/doc/guix.texi:16427 msgid "Return a service to run mingetty according to @var{config}, a @code{} object, which specifies the tty to run, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16072 +#: guix-git/doc/guix.texi:16429 #, no-wrap msgid "{Data Type} mingetty-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16075 +#: guix-git/doc/guix.texi:16432 msgid "This is the data type representing the configuration of Mingetty, which provides the default implementation of virtual console log-in." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16078 guix-git/doc/guix.texi:16117 -#: guix-git/doc/guix.texi:33550 +#: guix-git/doc/guix.texi:16435 guix-git/doc/guix.texi:16474 +#: guix-git/doc/guix.texi:33987 #, no-wrap msgid "tty" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16080 +#: guix-git/doc/guix.texi:16437 msgid "The name of the console this Mingetty runs on---e.g., @code{\"tty1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16081 guix-git/doc/guix.texi:16146 -#: guix-git/doc/guix.texi:16305 +#: guix-git/doc/guix.texi:16438 guix-git/doc/guix.texi:16503 +#: guix-git/doc/guix.texi:16662 #, no-wrap msgid "@code{auto-login} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16085 +#: guix-git/doc/guix.texi:16442 msgid "When true, this field must be a string denoting the user name under which the system automatically logs in. When it is @code{#f}, a user name and password must be entered to log in." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16086 +#: guix-git/doc/guix.texi:16443 #, no-wrap msgid "@code{login-program} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16090 +#: guix-git/doc/guix.texi:16447 msgid "This must be either @code{#f}, in which case the default log-in program is used (@command{login} from the Shadow tool suite), or a gexp denoting the name of the log-in program." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16091 +#: guix-git/doc/guix.texi:16448 #, no-wrap msgid "@code{login-pause?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16094 +#: guix-git/doc/guix.texi:16451 msgid "When set to @code{#t} in conjunction with @var{auto-login}, the user will have to press a key before the log-in shell is launched." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16095 +#: guix-git/doc/guix.texi:16452 #, no-wrap msgid "@code{clear-on-logout?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16097 +#: guix-git/doc/guix.texi:16454 msgid "When set to @code{#t}, the screen will be cleared after logout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16098 +#: guix-git/doc/guix.texi:16455 #, no-wrap msgid "@code{mingetty} (default: @var{mingetty})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16100 +#: guix-git/doc/guix.texi:16457 msgid "The Mingetty package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16104 +#: guix-git/doc/guix.texi:16461 #, no-wrap msgid "{Scheme Procedure} agetty-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16108 +#: guix-git/doc/guix.texi:16465 msgid "Return a service to run agetty according to @var{config}, an @code{} object, which specifies the tty to run, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16110 +#: guix-git/doc/guix.texi:16467 #, no-wrap msgid "{Data Type} agetty-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16114 +#: guix-git/doc/guix.texi:16471 msgid "This is the data type representing the configuration of agetty, which implements virtual and serial console log-in. See the @code{agetty(8)} man page for more information." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16121 +#: guix-git/doc/guix.texi:16478 msgid "The name of the console this agetty runs on, as a string---e.g., @code{\"ttyS0\"}. This argument is optional, it will default to a reasonable default serial port used by the kernel Linux." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16125 +#: guix-git/doc/guix.texi:16482 msgid "For this, if there is a value for an option @code{agetty.tty} in the kernel command line, agetty will extract the device name of the serial port from it and use that." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16129 +#: guix-git/doc/guix.texi:16486 msgid "If not and if there is a value for an option @code{console} with a tty in the Linux command line, agetty will extract the device name of the serial port from it and use that." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16133 +#: guix-git/doc/guix.texi:16490 msgid "In both cases, agetty will leave the other serial device settings (baud rate etc.)@: alone---in the hope that Linux pinned them to the correct values." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16134 guix-git/doc/guix.texi:33711 +#: guix-git/doc/guix.texi:16491 guix-git/doc/guix.texi:34148 #, no-wrap msgid "@code{baud-rate} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16137 +#: guix-git/doc/guix.texi:16494 msgid "A string containing a comma-separated list of one or more baud rates, in descending order." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16138 +#: guix-git/doc/guix.texi:16495 #, no-wrap msgid "@code{term} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16141 +#: guix-git/doc/guix.texi:16498 msgid "A string containing the value used for the @env{TERM} environment variable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16142 +#: guix-git/doc/guix.texi:16499 #, no-wrap msgid "@code{eight-bits?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16145 +#: guix-git/doc/guix.texi:16502 msgid "When @code{#t}, the tty is assumed to be 8-bit clean, and parity detection is disabled." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16149 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:16506 guix-git/doc/guix.texi:16665 msgid "When passed a login name, as a string, the specified user will be logged in automatically without prompting for their login name or password." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16150 +#: guix-git/doc/guix.texi:16507 #, no-wrap msgid "@code{no-reset?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16152 +#: guix-git/doc/guix.texi:16509 msgid "When @code{#t}, don't reset terminal cflags (control modes)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16153 +#: guix-git/doc/guix.texi:16510 #, no-wrap msgid "@code{host} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16156 +#: guix-git/doc/guix.texi:16513 msgid "This accepts a string containing the ``login_host'', which will be written into the @file{/var/run/utmpx} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16157 +#: guix-git/doc/guix.texi:16514 #, no-wrap msgid "@code{remote?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16161 +#: guix-git/doc/guix.texi:16518 msgid "When set to @code{#t} in conjunction with @var{host}, this will add an @code{-r} fakehost option to the command line of the login program specified in @var{login-program}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16162 +#: guix-git/doc/guix.texi:16519 #, no-wrap msgid "@code{flow-control?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16164 +#: guix-git/doc/guix.texi:16521 msgid "When set to @code{#t}, enable hardware (RTS/CTS) flow control." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16165 +#: guix-git/doc/guix.texi:16522 #, no-wrap msgid "@code{no-issue?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16168 +#: guix-git/doc/guix.texi:16525 msgid "When set to @code{#t}, the contents of the @file{/etc/issue} file will not be displayed before presenting the login prompt." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16169 +#: guix-git/doc/guix.texi:16526 #, no-wrap msgid "@code{init-string} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16172 +#: guix-git/doc/guix.texi:16529 msgid "This accepts a string that will be sent to the tty or modem before sending anything else. It can be used to initialize a modem." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16173 +#: guix-git/doc/guix.texi:16530 #, no-wrap msgid "@code{no-clear?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16176 +#: guix-git/doc/guix.texi:16533 msgid "When set to @code{#t}, agetty will not clear the screen before showing the login prompt." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16177 +#: guix-git/doc/guix.texi:16534 #, no-wrap msgid "@code{login-program} (default: (file-append shadow \"/bin/login\"))" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16181 +#: guix-git/doc/guix.texi:16538 msgid "This must be either a gexp denoting the name of a log-in program, or unset, in which case the default value is the @command{login} from the Shadow tool suite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16182 +#: guix-git/doc/guix.texi:16539 #, no-wrap msgid "@code{local-line} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16186 +#: guix-git/doc/guix.texi:16543 msgid "Control the CLOCAL line flag. This accepts one of three symbols as arguments, @code{'auto}, @code{'always}, or @code{'never}. If @code{#f}, the default value chosen by agetty is @code{'auto}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16187 +#: guix-git/doc/guix.texi:16544 #, no-wrap msgid "@code{extract-baud?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16190 +#: guix-git/doc/guix.texi:16547 msgid "When set to @code{#t}, instruct agetty to try to extract the baud rate from the status messages produced by certain types of modems." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16191 +#: guix-git/doc/guix.texi:16548 #, no-wrap msgid "@code{skip-login?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16195 +#: guix-git/doc/guix.texi:16552 msgid "When set to @code{#t}, do not prompt the user for a login name. This can be used with @var{login-program} field to use non-standard login systems." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16196 +#: guix-git/doc/guix.texi:16553 #, no-wrap msgid "@code{no-newline?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16199 +#: guix-git/doc/guix.texi:16556 msgid "When set to @code{#t}, do not print a newline before printing the @file{/etc/issue} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16201 +#: guix-git/doc/guix.texi:16558 #, no-wrap msgid "@code{login-options} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16206 +#: guix-git/doc/guix.texi:16563 msgid "This option accepts a string containing options that are passed to the login program. When used with the @var{login-program}, be aware that a malicious user could try to enter a login name containing embedded options that could be parsed by the login program." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16207 +#: guix-git/doc/guix.texi:16564 #, no-wrap msgid "@code{login-pause} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16211 +#: guix-git/doc/guix.texi:16568 msgid "When set to @code{#t}, wait for any key before showing the login prompt. This can be used in conjunction with @var{auto-login} to save memory by lazily spawning shells." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16212 +#: guix-git/doc/guix.texi:16569 #, no-wrap msgid "@code{chroot} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16215 +#: guix-git/doc/guix.texi:16572 msgid "Change root to the specified directory. This option accepts a directory path as a string." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16216 +#: guix-git/doc/guix.texi:16573 #, no-wrap msgid "@code{hangup?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16219 +#: guix-git/doc/guix.texi:16576 msgid "Use the Linux system call @code{vhangup} to do a virtual hangup of the specified terminal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16220 +#: guix-git/doc/guix.texi:16577 #, no-wrap msgid "@code{keep-baud?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16224 +#: guix-git/doc/guix.texi:16581 msgid "When set to @code{#t}, try to keep the existing baud rate. The baud rates from @var{baud-rate} are used when agetty receives a @key{BREAK} character." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16225 +#: guix-git/doc/guix.texi:16582 #, no-wrap msgid "@code{timeout} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16228 +#: guix-git/doc/guix.texi:16585 msgid "When set to an integer value, terminate if no user name could be read within @var{timeout} seconds." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16229 +#: guix-git/doc/guix.texi:16586 #, no-wrap msgid "@code{detect-case?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16235 +#: guix-git/doc/guix.texi:16592 msgid "When set to @code{#t}, turn on support for detecting an uppercase-only terminal. This setting will detect a login name containing only uppercase letters as indicating an uppercase-only terminal and turn on some upper-to-lower case conversions. Note that this will not support Unicode characters." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16236 +#: guix-git/doc/guix.texi:16593 #, no-wrap msgid "@code{wait-cr?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16241 +#: guix-git/doc/guix.texi:16598 msgid "When set to @code{#t}, wait for the user or modem to send a carriage-return or linefeed character before displaying @file{/etc/issue} or login prompt. This is typically used with the @var{init-string} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16242 +#: guix-git/doc/guix.texi:16599 #, no-wrap msgid "@code{no-hints?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16245 +#: guix-git/doc/guix.texi:16602 msgid "When set to @code{#t}, do not print hints about Num, Caps, and Scroll locks." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16246 +#: guix-git/doc/guix.texi:16603 #, no-wrap msgid "@code{no-hostname?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16249 +#: guix-git/doc/guix.texi:16606 msgid "By default, the hostname is printed. When this option is set to @code{#t}, no hostname will be shown at all." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16250 +#: guix-git/doc/guix.texi:16607 #, no-wrap msgid "@code{long-hostname?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16254 +#: guix-git/doc/guix.texi:16611 msgid "By default, the hostname is only printed until the first dot. When this option is set to @code{#t}, the fully qualified hostname by @code{gethostname} or @code{getaddrinfo} is shown." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16255 +#: guix-git/doc/guix.texi:16612 #, no-wrap msgid "@code{erase-characters} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16258 +#: guix-git/doc/guix.texi:16615 msgid "This option accepts a string of additional characters that should be interpreted as backspace when the user types their login name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16259 +#: guix-git/doc/guix.texi:16616 #, no-wrap msgid "@code{kill-characters} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16263 +#: guix-git/doc/guix.texi:16620 msgid "This option accepts a string that should be interpreted to mean ``ignore all previous characters'' (also called a ``kill'' character) when the user types their login name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16264 +#: guix-git/doc/guix.texi:16621 #, no-wrap msgid "@code{chdir} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16267 +#: guix-git/doc/guix.texi:16624 msgid "This option accepts, as a string, a directory path that will be changed to before login." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16268 +#: guix-git/doc/guix.texi:16625 #, no-wrap msgid "@code{delay} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16271 +#: guix-git/doc/guix.texi:16628 msgid "This options accepts, as an integer, the number of seconds to sleep before opening the tty and displaying the login prompt." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16272 +#: guix-git/doc/guix.texi:16629 #, no-wrap msgid "@code{nice} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16275 +#: guix-git/doc/guix.texi:16632 msgid "This option accepts, as an integer, the nice value with which to run the @command{login} program." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16276 guix-git/doc/guix.texi:16564 -#: guix-git/doc/guix.texi:17478 guix-git/doc/guix.texi:25181 -#: guix-git/doc/guix.texi:26658 guix-git/doc/guix.texi:29074 -#: guix-git/doc/guix.texi:29869 guix-git/doc/guix.texi:31622 -#: guix-git/doc/guix.texi:34051 +#: guix-git/doc/guix.texi:16633 guix-git/doc/guix.texi:16921 +#: guix-git/doc/guix.texi:17840 guix-git/doc/guix.texi:25543 +#: guix-git/doc/guix.texi:26995 guix-git/doc/guix.texi:29411 +#: guix-git/doc/guix.texi:30234 guix-git/doc/guix.texi:31987 +#: guix-git/doc/guix.texi:34488 #, no-wrap msgid "@code{extra-options} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16279 +#: guix-git/doc/guix.texi:16636 msgid "This option provides an ``escape hatch'' for the user to provide arbitrary command-line arguments to @command{agetty} as a list of strings." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16283 +#: guix-git/doc/guix.texi:16640 #, no-wrap msgid "{Scheme Procedure} kmscon-service-type @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16287 +#: guix-git/doc/guix.texi:16644 msgid "Return a service to run @uref{https://www.freedesktop.org/wiki/Software/kmscon,kmscon} according to @var{config}, a @code{} object, which specifies the tty to run, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16289 +#: guix-git/doc/guix.texi:16646 #, no-wrap msgid "{Data Type} kmscon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16292 +#: guix-git/doc/guix.texi:16649 msgid "This is the data type representing the configuration of Kmscon, which implements virtual console log-in." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16295 +#: guix-git/doc/guix.texi:16652 #, no-wrap msgid "virtual-terminal" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16297 +#: guix-git/doc/guix.texi:16654 msgid "The name of the console this Kmscon runs on---e.g., @code{\"tty1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16298 +#: guix-git/doc/guix.texi:16655 #, no-wrap msgid "@code{login-program} (default: @code{#~(string-append #$shadow \"/bin/login\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16301 +#: guix-git/doc/guix.texi:16658 msgid "A gexp denoting the name of the log-in program. The default log-in program is @command{login} from the Shadow tool suite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16302 +#: guix-git/doc/guix.texi:16659 #, no-wrap msgid "@code{login-arguments} (default: @code{'(\"-p\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16304 +#: guix-git/doc/guix.texi:16661 msgid "A list of arguments to pass to @command{login}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16309 +#: guix-git/doc/guix.texi:16666 #, no-wrap msgid "@code{hardware-acceleration?} (default: #f)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16311 +#: guix-git/doc/guix.texi:16668 msgid "Whether to use hardware acceleration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16312 +#: guix-git/doc/guix.texi:16669 #, no-wrap msgid "@code{font-engine} (default: @code{\"pango\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16314 +#: guix-git/doc/guix.texi:16671 msgid "Font engine used in Kmscon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16315 +#: guix-git/doc/guix.texi:16672 #, no-wrap msgid "@code{font-size} (default: @code{12})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16317 +#: guix-git/doc/guix.texi:16674 msgid "Font size used in Kmscon." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16321 +#: guix-git/doc/guix.texi:16678 msgid "If this is @code{#f}, Kmscon uses the default keyboard layout---usually US English (``qwerty'') for a 105-key PC keyboard." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16325 +#: guix-git/doc/guix.texi:16682 msgid "Otherwise this must be a @code{keyboard-layout} object specifying the keyboard layout. @xref{Keyboard Layout}, for more information on how to specify the keyboard layout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16326 +#: guix-git/doc/guix.texi:16683 #, no-wrap msgid "@code{kmscon} (default: @var{kmscon})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16328 +#: guix-git/doc/guix.texi:16685 msgid "The Kmscon package to use." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16332 +#: guix-git/doc/guix.texi:16689 #, no-wrap msgid "name service cache daemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16333 +#: guix-git/doc/guix.texi:16690 #, no-wrap msgid "nscd" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16334 +#: guix-git/doc/guix.texi:16691 #, no-wrap msgid "{Scheme Procedure} nscd-service [@var{config}] [#:glibc glibc] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16339 +#: guix-git/doc/guix.texi:16696 msgid "[#:name-services '()] Return a service that runs the libc name service cache daemon (nscd) with the given @var{config}---an @code{} object. @xref{Name Service Switch}, for an example." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16341 +#: guix-git/doc/guix.texi:16698 msgid "For convenience, the Shepherd service for nscd provides the following actions:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16343 +#: guix-git/doc/guix.texi:16700 #, no-wrap msgid "invalidate" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16344 +#: guix-git/doc/guix.texi:16701 #, no-wrap msgid "cache invalidation, nscd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16345 +#: guix-git/doc/guix.texi:16702 #, no-wrap msgid "nscd, cache invalidation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16347 +#: guix-git/doc/guix.texi:16704 msgid "This invalidate the given cache. For instance, running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16350 +#: guix-git/doc/guix.texi:16707 #, no-wrap msgid "herd invalidate nscd hosts\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16354 +#: guix-git/doc/guix.texi:16711 msgid "invalidates the host name lookup cache of nscd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16355 +#: guix-git/doc/guix.texi:16712 #, no-wrap msgid "statistics" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16358 +#: guix-git/doc/guix.texi:16715 msgid "Running @command{herd statistics nscd} displays information about nscd usage and caches." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16362 +#: guix-git/doc/guix.texi:16719 #, no-wrap msgid "{Scheme Variable} %nscd-default-configuration" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16366 +#: guix-git/doc/guix.texi:16723 msgid "This is the default @code{} value (see below) used by @code{nscd-service}. It uses the caches defined by @code{%nscd-default-caches}; see below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16368 +#: guix-git/doc/guix.texi:16725 #, no-wrap msgid "{Data Type} nscd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16371 +#: guix-git/doc/guix.texi:16728 msgid "This is the data type representing the name service cache daemon (nscd) configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16374 +#: guix-git/doc/guix.texi:16731 #, no-wrap msgid "@code{name-services} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16377 +#: guix-git/doc/guix.texi:16734 msgid "List of packages denoting @dfn{name services} that must be visible to the nscd---e.g., @code{(list @var{nss-mdns})}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16378 +#: guix-git/doc/guix.texi:16735 #, no-wrap msgid "@code{glibc} (default: @var{glibc})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16381 +#: guix-git/doc/guix.texi:16738 msgid "Package object denoting the GNU C Library providing the @command{nscd} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16382 +#: guix-git/doc/guix.texi:16739 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/nscd.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16385 +#: guix-git/doc/guix.texi:16742 msgid "Name of the nscd log file. This is where debugging output goes when @code{debug-level} is strictly positive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16386 +#: guix-git/doc/guix.texi:16743 #, no-wrap msgid "@code{debug-level} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16389 +#: guix-git/doc/guix.texi:16746 msgid "Integer denoting the debugging levels. Higher numbers mean that more debugging output is logged." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16390 +#: guix-git/doc/guix.texi:16747 #, no-wrap msgid "@code{caches} (default: @code{%nscd-default-caches})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16393 +#: guix-git/doc/guix.texi:16750 msgid "List of @code{} objects denoting things to be cached; see below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16397 +#: guix-git/doc/guix.texi:16754 #, no-wrap msgid "{Data Type} nscd-cache" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16399 +#: guix-git/doc/guix.texi:16756 msgid "Data type representing a cache database of nscd and its parameters." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16402 guix-git/doc/guix.texi:21071 +#: guix-git/doc/guix.texi:16759 guix-git/doc/guix.texi:21433 #, no-wrap msgid "database" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16407 +#: guix-git/doc/guix.texi:16764 msgid "This is a symbol representing the name of the database to be cached. Valid values are @code{passwd}, @code{group}, @code{hosts}, and @code{services}, which designate the corresponding NSS database (@pxref{NSS Basics,,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16408 +#: guix-git/doc/guix.texi:16765 #, no-wrap msgid "positive-time-to-live" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:16409 +#: guix-git/doc/guix.texi:16766 #, no-wrap msgid "@code{negative-time-to-live} (default: @code{20})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16412 +#: guix-git/doc/guix.texi:16769 msgid "A number representing the number of seconds during which a positive or negative lookup result remains in cache." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16413 +#: guix-git/doc/guix.texi:16770 #, no-wrap msgid "@code{check-files?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16416 +#: guix-git/doc/guix.texi:16773 msgid "Whether to check for updates of the files corresponding to @var{database}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16420 +#: guix-git/doc/guix.texi:16777 msgid "For instance, when @var{database} is @code{hosts}, setting this flag instructs nscd to check for updates in @file{/etc/hosts} and to take them into account." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16421 +#: guix-git/doc/guix.texi:16778 #, no-wrap msgid "@code{persistent?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16423 +#: guix-git/doc/guix.texi:16780 msgid "Whether the cache should be stored persistently on disk." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16424 +#: guix-git/doc/guix.texi:16781 #, no-wrap msgid "@code{shared?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16426 +#: guix-git/doc/guix.texi:16783 msgid "Whether the cache should be shared among users." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16427 +#: guix-git/doc/guix.texi:16784 #, no-wrap msgid "@code{max-database-size} (default: 32@tie{}MiB)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16429 +#: guix-git/doc/guix.texi:16786 msgid "Maximum size in bytes of the database cache." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16436 +#: guix-git/doc/guix.texi:16793 #, no-wrap msgid "{Scheme Variable} %nscd-default-caches" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16439 +#: guix-git/doc/guix.texi:16796 msgid "List of @code{} objects used by default by @code{nscd-configuration} (see above)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16445 +#: guix-git/doc/guix.texi:16802 msgid "It enables persistent and aggressive caching of service and host name lookups. The latter provides better host name lookup performance, resilience in the face of unreliable name servers, and also better privacy---often the result of host name lookups is in local cache, so external name servers do not even need to be queried." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16448 +#: guix-git/doc/guix.texi:16805 msgid "syslog-configuration-type" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16448 guix-git/doc/guix.texi:16464 +#: guix-git/doc/guix.texi:16805 guix-git/doc/guix.texi:16821 #, no-wrap msgid "syslog" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16449 guix-git/doc/guix.texi:17035 +#: guix-git/doc/guix.texi:16806 guix-git/doc/guix.texi:17397 #, no-wrap msgid "logging" msgstr "kirjoittaa logia" #. type: deftp -#: guix-git/doc/guix.texi:16450 +#: guix-git/doc/guix.texi:16807 #, no-wrap msgid "{Data Type} syslog-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16452 +#: guix-git/doc/guix.texi:16809 msgid "This data type represents the configuration of the syslog daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16454 +#: guix-git/doc/guix.texi:16811 #, no-wrap msgid "@code{syslogd} (default: @code{#~(string-append #$inetutils \"/libexec/syslogd\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16456 +#: guix-git/doc/guix.texi:16813 msgid "The syslog daemon to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16457 +#: guix-git/doc/guix.texi:16814 #, no-wrap msgid "@code{config-file} (default: @code{%default-syslog.conf})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16459 +#: guix-git/doc/guix.texi:16816 msgid "The syslog configuration file to use." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16464 +#: guix-git/doc/guix.texi:16821 msgid "syslog-service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16465 +#: guix-git/doc/guix.texi:16822 #, no-wrap msgid "{Scheme Procedure} syslog-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16467 +#: guix-git/doc/guix.texi:16824 msgid "Return a service that runs a syslog daemon according to @var{config}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16470 +#: guix-git/doc/guix.texi:16827 msgid "@xref{syslogd invocation,,, inetutils, GNU Inetutils}, for more information on the configuration file syntax." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16472 +#: guix-git/doc/guix.texi:16829 #, no-wrap msgid "{Scheme Variable} guix-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16476 +#: guix-git/doc/guix.texi:16833 msgid "This is the type of the service that runs the build daemon, @command{guix-daemon} (@pxref{Invoking guix-daemon}). Its value must be a @code{guix-configuration} record as described below." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16479 +#: guix-git/doc/guix.texi:16836 msgid "guix-configuration-type" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16479 +#: guix-git/doc/guix.texi:16836 #, no-wrap msgid "{Data Type} guix-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16482 +#: guix-git/doc/guix.texi:16839 msgid "This data type represents the configuration of the Guix build daemon. @xref{Invoking guix-daemon}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16484 +#: guix-git/doc/guix.texi:16841 #, no-wrap msgid "@code{guix} (default: @var{guix})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16486 guix-git/doc/guix.texi:16763 +#: guix-git/doc/guix.texi:16843 guix-git/doc/guix.texi:17120 msgid "The Guix package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16487 +#: guix-git/doc/guix.texi:16844 #, no-wrap msgid "@code{build-group} (default: @code{\"guixbuild\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16489 +#: guix-git/doc/guix.texi:16846 msgid "Name of the group for build user accounts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16490 +#: guix-git/doc/guix.texi:16847 #, no-wrap msgid "@code{build-accounts} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16492 +#: guix-git/doc/guix.texi:16849 msgid "Number of build user accounts to create." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16493 +#: guix-git/doc/guix.texi:16850 #, no-wrap msgid "@code{authorize-key?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16500 +#: guix-git/doc/guix.texi:16857 msgid "Whether to authorize the substitute keys listed in @code{authorized-keys}---by default that of @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} (@pxref{Substitutes})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16506 +#: guix-git/doc/guix.texi:16863 msgid "When @code{authorize-key?} is true, @file{/etc/guix/acl} cannot be changed by invoking @command{guix archive --authorize}. You must instead adjust @code{guix-configuration} as you wish and reconfigure the system. This ensures that your operating system configuration file is self-contained." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:16513 +#: guix-git/doc/guix.texi:16870 msgid "When booting or reconfiguring to a system where @code{authorize-key?} is true, the existing @file{/etc/guix/acl} file is backed up as @file{/etc/guix/acl.bak} if it was determined to be a manually modified file. This is to facilitate migration from earlier versions, which allowed for in-place modifications to @file{/etc/guix/acl}." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:16515 +#: guix-git/doc/guix.texi:16872 #, no-wrap msgid "%default-authorized-guix-keys" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16516 +#: guix-git/doc/guix.texi:16873 #, no-wrap msgid "@code{authorized-keys} (default: @code{%default-authorized-guix-keys})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16522 +#: guix-git/doc/guix.texi:16879 msgid "The list of authorized key files for archive imports, as a list of string-valued gexps (@pxref{Invoking guix archive}). By default, it contains that of @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} (@pxref{Substitutes}). See @code{substitute-urls} below for an example on how to change it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16523 +#: guix-git/doc/guix.texi:16880 #, no-wrap msgid "@code{use-substitutes?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16525 +#: guix-git/doc/guix.texi:16882 msgid "Whether to use substitutes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16526 guix-git/doc/guix.texi:29171 +#: guix-git/doc/guix.texi:16883 guix-git/doc/guix.texi:29508 #, no-wrap msgid "@code{substitute-urls} (default: @code{%default-substitute-urls})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16528 guix-git/doc/guix.texi:29173 +#: guix-git/doc/guix.texi:16885 guix-git/doc/guix.texi:29510 msgid "The list of URLs where to look for substitutes by default." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16535 +#: guix-git/doc/guix.texi:16892 msgid "Suppose you would like to fetch substitutes from @code{guix.example.org} in addition to @code{@value{SUBSTITUTE-SERVER-1}}. You will need to do two things: (1) add @code{guix.example.org} to @code{substitute-urls}, and (2) authorize its signing key, having done appropriate checks (@pxref{Substitute Server Authorization}). The configuration below does exactly that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16544 +#: guix-git/doc/guix.texi:16901 #, no-wrap msgid "" "(guix-configuration\n" @@ -28706,150 +29313,150 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16549 +#: guix-git/doc/guix.texi:16906 msgid "This example assumes that the file @file{./guix.example.org-key.pub} contains the public key that @code{guix.example.org} uses to sign substitutes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16550 +#: guix-git/doc/guix.texi:16907 #, no-wrap msgid "@code{max-silent-time} (default: @code{0})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:16551 +#: guix-git/doc/guix.texi:16908 #, no-wrap msgid "@code{timeout} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16555 +#: guix-git/doc/guix.texi:16912 msgid "The number of seconds of silence and the number of seconds of activity, respectively, after which a build process times out. A value of zero disables the timeout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16556 +#: guix-git/doc/guix.texi:16913 #, no-wrap -msgid "@code{log-compression} (default: @code{'bzip2})" +msgid "@code{log-compression} (default: @code{'gzip})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16559 +#: guix-git/doc/guix.texi:16916 msgid "The type of compression used for build logs---one of @code{gzip}, @code{bzip2}, or @code{none}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16560 +#: guix-git/doc/guix.texi:16917 #, no-wrap msgid "@code{discover?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16566 +#: guix-git/doc/guix.texi:16923 msgid "List of extra command-line options for @command{guix-daemon}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16567 +#: guix-git/doc/guix.texi:16924 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/guix-daemon.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16570 +#: guix-git/doc/guix.texi:16927 msgid "File where @command{guix-daemon}'s standard output and standard error are written." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16571 +#: guix-git/doc/guix.texi:16928 #, no-wrap msgid "HTTP proxy, for @code{guix-daemon}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16572 +#: guix-git/doc/guix.texi:16929 #, no-wrap msgid "proxy, for @code{guix-daemon} HTTP access" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16573 +#: guix-git/doc/guix.texi:16930 #, no-wrap msgid "@code{http-proxy} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16576 +#: guix-git/doc/guix.texi:16933 msgid "The URL of the HTTP and HTTPS proxy used for downloading fixed-output derivations and substitutes." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16579 +#: guix-git/doc/guix.texi:16936 msgid "It is also possible to change the daemon's proxy at run time through the @code{set-http-proxy} action, which restarts it:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16582 +#: guix-git/doc/guix.texi:16939 #, no-wrap msgid "herd set-http-proxy guix-daemon http://localhost:8118\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16585 +#: guix-git/doc/guix.texi:16942 msgid "To clear the proxy settings, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16588 +#: guix-git/doc/guix.texi:16945 #, no-wrap msgid "herd set-http-proxy guix-daemon\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16590 +#: guix-git/doc/guix.texi:16947 #, no-wrap msgid "@code{tmpdir} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16592 +#: guix-git/doc/guix.texi:16949 msgid "A directory path where the @command{guix-daemon} will perform builds." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16596 +#: guix-git/doc/guix.texi:16953 #, no-wrap msgid "{Scheme Procedure} udev-service [#:udev @var{eudev} #:rules @code{'()}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16602 +#: guix-git/doc/guix.texi:16959 msgid "Run @var{udev}, which populates the @file{/dev} directory dynamically. udev rules can be provided as a list of files through the @var{rules} variable. The procedures @code{udev-rule}, @code{udev-rules-service} and @code{file->udev-rule} from @code{(gnu services base)} simplify the creation of such rule files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16605 +#: guix-git/doc/guix.texi:16962 msgid "The @command{herd rules udev} command, as root, returns the name of the directory containing all the active udev rules." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16607 +#: guix-git/doc/guix.texi:16964 #, no-wrap msgid "{Scheme Procedure} udev-rule [@var{file-name} @var{contents}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16610 +#: guix-git/doc/guix.texi:16967 msgid "Return a udev-rule file named @var{file-name} containing the rules defined by the @var{contents} literal." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16614 +#: guix-git/doc/guix.texi:16971 msgid "In the following example, a rule for a USB device is defined to be stored in the file @file{90-usb-thing.rules}. The rule runs a script upon detecting a USB device with a given product identifier." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16622 +#: guix-git/doc/guix.texi:16979 #, no-wrap msgid "" "(define %example-udev-rule\n" @@ -28861,23 +29468,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16625 +#: guix-git/doc/guix.texi:16982 #, no-wrap msgid "{Scheme Procedure} udev-rules-service [@var{name} @var{rules}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16632 +#: guix-git/doc/guix.texi:16989 msgid "[#:groups @var{groups}] Return a service that extends @code{udev-service-type } with @var{rules} and @code{account-service-type} with @var{groups} as system groups. This works by creating a singleton service type @code{@var{name}-udev-rules}, of which the returned service is an instance." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16635 +#: guix-git/doc/guix.texi:16992 msgid "Here we show how it can be used to extend @code{udev-service-type} with the previously defined rule @code{%example-udev-rule}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16642 +#: guix-git/doc/guix.texi:16999 #, no-wrap msgid "" "(operating-system\n" @@ -28888,23 +29495,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16645 +#: guix-git/doc/guix.texi:17002 #, no-wrap msgid "{Scheme Procedure} file->udev-rule [@var{file-name} @var{file}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16648 +#: guix-git/doc/guix.texi:17005 msgid "Return a udev file named @var{file-name} containing the rules defined within @var{file}, a file-like object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16650 +#: guix-git/doc/guix.texi:17007 msgid "The following example showcases how we can use an existing rule file." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16655 +#: guix-git/doc/guix.texi:17012 #, no-wrap msgid "" "(use-modules (guix download) ;for url-fetch\n" @@ -28914,7 +29521,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16666 +#: guix-git/doc/guix.texi:17023 #, no-wrap msgid "" "(define %android-udev-rules\n" @@ -28930,17 +29537,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16675 +#: guix-git/doc/guix.texi:17032 msgid "Additionally, Guix package definitions can be included in @var{rules} in order to extend the udev rules with the definitions found under their @file{lib/udev/rules.d} sub-directory. In lieu of the previous @var{file->udev-rule} example, we could have used the @var{android-udev-rules} package which exists in Guix in the @code{(gnu packages android)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16684 +#: guix-git/doc/guix.texi:17041 msgid "The following example shows how to use the @var{android-udev-rules} package so that the Android tool @command{adb} can detect devices without root privileges. It also details how to create the @code{adbusers} group, which is required for the proper functioning of the rules defined within the @code{android-udev-rules} package. To create such a group, we must define it both as part of the @code{supplementary-groups} of our @code{user-account} declaration, as well as in the @var{groups} of the @code{udev-rules-service} procedure." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16689 +#: guix-git/doc/guix.texi:17046 #, no-wrap msgid "" "(use-modules (gnu packages android) ;for android-udev-rules\n" @@ -28950,7 +29557,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16702 +#: guix-git/doc/guix.texi:17059 #, no-wrap msgid "" "(operating-system\n" @@ -28968,328 +29575,339 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16704 +#: guix-git/doc/guix.texi:17061 #, no-wrap msgid "{Scheme Variable} urandom-seed-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16709 +#: guix-git/doc/guix.texi:17066 msgid "Save some entropy in @code{%random-seed-file} to seed @file{/dev/urandom} when rebooting. It also tries to seed @file{/dev/urandom} from @file{/dev/hwrng} while booting, if @file{/dev/hwrng} exists and is readable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16711 +#: guix-git/doc/guix.texi:17068 #, no-wrap msgid "{Scheme Variable} %random-seed-file" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16715 +#: guix-git/doc/guix.texi:17072 msgid "This is the name of the file where some random bytes are saved by @var{urandom-seed-service} to seed @file{/dev/urandom} when rebooting. It defaults to @file{/var/lib/random-seed}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16717 +#: guix-git/doc/guix.texi:17074 #, no-wrap msgid "mouse" msgstr "hiiri" #. type: cindex -#: guix-git/doc/guix.texi:16718 +#: guix-git/doc/guix.texi:17075 #, no-wrap msgid "gpm" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16719 +#: guix-git/doc/guix.texi:17076 #, no-wrap msgid "{Scheme Variable} gpm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16724 +#: guix-git/doc/guix.texi:17081 msgid "This is the type of the service that runs GPM, the @dfn{general-purpose mouse daemon}, which provides mouse support to the Linux console. GPM allows users to use the mouse in the console, notably to select, copy, and paste text." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16727 +#: guix-git/doc/guix.texi:17084 msgid "The value for services of this type must be a @code{gpm-configuration} (see below). This service is not part of @code{%base-services}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16729 +#: guix-git/doc/guix.texi:17086 #, no-wrap msgid "{Data Type} gpm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16731 +#: guix-git/doc/guix.texi:17088 msgid "Data type representing the configuration of GPM." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16733 +#: guix-git/doc/guix.texi:17090 #, no-wrap msgid "@code{options} (default: @code{%default-gpm-options})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16738 +#: guix-git/doc/guix.texi:17095 msgid "Command-line options passed to @command{gpm}. The default set of options instruct @command{gpm} to listen to mouse events on @file{/dev/input/mice}. @xref{Command Line,,, gpm, gpm manual}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16739 +#: guix-git/doc/guix.texi:17096 #, no-wrap msgid "@code{gpm} (default: @code{gpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16741 +#: guix-git/doc/guix.texi:17098 msgid "The GPM package to use." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16746 +#: guix-git/doc/guix.texi:17103 msgid "guix-publish-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16746 +#: guix-git/doc/guix.texi:17103 #, no-wrap msgid "{Scheme Variable} guix-publish-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16750 +#: guix-git/doc/guix.texi:17107 msgid "This is the service type for @command{guix publish} (@pxref{Invoking guix publish}). Its value must be a @code{guix-publish-configuration} object, as described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16754 +#: guix-git/doc/guix.texi:17111 msgid "This assumes that @file{/etc/guix} already contains a signing key pair as created by @command{guix archive --generate-key} (@pxref{Invoking guix archive}). If that is not the case, the service will fail to start." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16756 +#: guix-git/doc/guix.texi:17113 #, no-wrap msgid "{Data Type} guix-publish-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16759 +#: guix-git/doc/guix.texi:17116 msgid "Data type representing the configuration of the @code{guix publish} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16761 +#: guix-git/doc/guix.texi:17118 #, no-wrap msgid "@code{guix} (default: @code{guix})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16764 guix-git/doc/guix.texi:31477 +#: guix-git/doc/guix.texi:17121 guix-git/doc/guix.texi:31842 #, no-wrap msgid "@code{port} (default: @code{80})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16766 +#: guix-git/doc/guix.texi:17123 msgid "The TCP port to listen for connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16767 guix-git/doc/guix.texi:29054 -#: guix-git/doc/guix.texi:32858 +#: guix-git/doc/guix.texi:17124 guix-git/doc/guix.texi:29391 +#: guix-git/doc/guix.texi:33223 #, no-wrap msgid "@code{host} (default: @code{\"localhost\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16770 +#: guix-git/doc/guix.texi:17127 msgid "The host (and thus, network interface) to listen to. Use @code{\"0.0.0.0\"} to listen on all the network interfaces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16771 +#: guix-git/doc/guix.texi:17128 #, no-wrap msgid "@code{advertise?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16774 +#: guix-git/doc/guix.texi:17131 msgid "When true, advertise the service on the local network @i{via} the DNS-SD protocol, using Avahi." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16778 +#: guix-git/doc/guix.texi:17135 msgid "This allows neighboring Guix devices with discovery on (see @code{guix-configuration} above) to discover this @command{guix publish} instance and to automatically download substitutes from it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16779 +#: guix-git/doc/guix.texi:17136 #, no-wrap msgid "@code{compression} (default: @code{'((\"gzip\" 3) (\"zstd\" 3))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16783 +#: guix-git/doc/guix.texi:17140 msgid "This is a list of compression method/level tuple used when compressing substitutes. For example, to compress all substitutes with @emph{both} lzip at level 7 and gzip at level 9, write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16786 +#: guix-git/doc/guix.texi:17143 #, no-wrap msgid "'((\"lzip\" 7) (\"gzip\" 9))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16792 +#: guix-git/doc/guix.texi:17149 msgid "Level 9 achieves the best compression ratio at the expense of increased CPU usage, whereas level 1 achieves fast compression. @xref{Invoking guix publish}, for more information on the available compression methods and the tradeoffs involved." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16794 +#: guix-git/doc/guix.texi:17151 msgid "An empty list disables compression altogether." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16795 +#: guix-git/doc/guix.texi:17152 #, no-wrap msgid "@code{nar-path} (default: @code{\"nar\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16798 +#: guix-git/doc/guix.texi:17155 msgid "The URL path at which ``nars'' can be fetched. @xref{Invoking guix publish, @option{--nar-path}}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16799 +#: guix-git/doc/guix.texi:17156 #, no-wrap msgid "@code{cache} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16805 +#: guix-git/doc/guix.texi:17162 msgid "When it is @code{#f}, disable caching and instead generate archives on demand. Otherwise, this should be the name of a directory---e.g., @code{\"/var/cache/guix/publish\"}---where @command{guix publish} caches archives and meta-data ready to be sent. @xref{Invoking guix publish, @option{--cache}}, for more information on the tradeoffs involved." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16806 +#: guix-git/doc/guix.texi:17163 #, no-wrap msgid "@code{workers} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16810 +#: guix-git/doc/guix.texi:17167 msgid "When it is an integer, this is the number of worker threads used for caching; when @code{#f}, the number of processors is used. @xref{Invoking guix publish, @option{--workers}}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16811 +#: guix-git/doc/guix.texi:17168 #, no-wrap msgid "@code{cache-bypass-threshold} (default: 10 MiB)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16816 +#: guix-git/doc/guix.texi:17173 msgid "When @code{cache} is true, this is the maximum size in bytes of a store item for which @command{guix publish} may bypass its cache in case of a cache miss. @xref{Invoking guix publish, @option{--cache-bypass-threshold}}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16817 +#: guix-git/doc/guix.texi:17174 #, no-wrap msgid "@code{ttl} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16821 +#: guix-git/doc/guix.texi:17178 msgid "When it is an integer, this denotes the @dfn{time-to-live} in seconds of the published archives. @xref{Invoking guix publish, @option{--ttl}}, for more information." msgstr "" +#. type: item +#: guix-git/doc/guix.texi:17179 +#, no-wrap +msgid "@code{negative-ttl} (default: @code{#f})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:17183 +msgid "When it is an integer, this denotes the @dfn{time-to-live} in seconds for the negative lookups. @xref{Invoking guix publish, @option{--negative-ttl}}, for more information." +msgstr "" + #. type: anchor{#1} -#: guix-git/doc/guix.texi:16825 +#: guix-git/doc/guix.texi:17187 msgid "rngd-service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16825 +#: guix-git/doc/guix.texi:17187 #, no-wrap msgid "{Scheme Procedure} rngd-service [#:rng-tools @var{rng-tools}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16830 +#: guix-git/doc/guix.texi:17192 msgid "[#:device \"/dev/hwrng\"] Return a service that runs the @command{rngd} program from @var{rng-tools} to add @var{device} to the kernel's entropy pool. The service will fail if @var{device} does not exist." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16833 +#: guix-git/doc/guix.texi:17195 msgid "pam-limits-service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16833 +#: guix-git/doc/guix.texi:17195 #, no-wrap msgid "session limits" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16834 +#: guix-git/doc/guix.texi:17196 #, no-wrap msgid "ulimit" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16835 +#: guix-git/doc/guix.texi:17197 #, no-wrap msgid "priority" msgstr "prioriteetti" #. type: cindex -#: guix-git/doc/guix.texi:16836 +#: guix-git/doc/guix.texi:17198 #, no-wrap msgid "realtime" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16837 +#: guix-git/doc/guix.texi:17199 #, no-wrap msgid "jackd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16838 +#: guix-git/doc/guix.texi:17200 #, no-wrap msgid "nofile" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16839 +#: guix-git/doc/guix.texi:17201 #, no-wrap msgid "open file descriptors" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16840 +#: guix-git/doc/guix.texi:17202 #, no-wrap msgid "{Scheme Procedure} pam-limits-service [#:limits @code{'()}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16847 +#: guix-git/doc/guix.texi:17209 msgid "Return a service that installs a configuration file for the @uref{http://linux-pam.org/Linux-PAM-html/sag-pam_limits.html, @code{pam_limits} module}. The procedure optionally takes a list of @code{pam-limits-entry} values, which can be used to specify @code{ulimit} limits and @code{nice} priority limits to user sessions." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16850 +#: guix-git/doc/guix.texi:17212 msgid "The following limits definition sets two hard and soft limits for all login sessions of users in the @code{realtime} group:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16856 +#: guix-git/doc/guix.texi:17218 #, no-wrap msgid "" "(pam-limits-service\n" @@ -29299,17 +29917,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16862 +#: guix-git/doc/guix.texi:17224 msgid "The first entry increases the maximum realtime priority for non-privileged processes; the second entry lifts any restriction of the maximum address space that can be locked in memory. These settings are commonly used for real-time audio systems." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16865 +#: guix-git/doc/guix.texi:17227 msgid "Another useful example is raising the maximum number of open file descriptors that can be used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16870 +#: guix-git/doc/guix.texi:17232 #, no-wrap msgid "" "(pam-limits-service\n" @@ -29318,40 +29936,40 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16878 +#: guix-git/doc/guix.texi:17240 msgid "In the above example, the asterisk means the limit should apply to any user. It is important to ensure the chosen value doesn't exceed the maximum system value visible in the @file{/proc/sys/fs/file-max} file, else the users would be prevented from login in. For more information about the Pluggable Authentication Module (PAM) limits, refer to the @samp{pam_limits} man page from the @code{linux-pam} package." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16883 guix-git/doc/guix.texi:37407 +#: guix-git/doc/guix.texi:17245 guix-git/doc/guix.texi:37897 #, no-wrap msgid "cron" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16884 guix-git/doc/guix.texi:37408 +#: guix-git/doc/guix.texi:17246 guix-git/doc/guix.texi:37898 #, no-wrap msgid "mcron" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16885 guix-git/doc/guix.texi:37409 +#: guix-git/doc/guix.texi:17247 guix-git/doc/guix.texi:37899 #, no-wrap msgid "scheduling jobs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16892 +#: guix-git/doc/guix.texi:17254 msgid "The @code{(gnu services mcron)} module provides an interface to GNU@tie{}mcron, a daemon to run jobs at scheduled times (@pxref{Top,,, mcron, GNU@tie{}mcron}). GNU@tie{}mcron is similar to the traditional Unix @command{cron} daemon; the main difference is that it is implemented in Guile Scheme, which provides a lot of flexibility when specifying the scheduling of jobs and their actions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16900 +#: guix-git/doc/guix.texi:17262 msgid "The example below defines an operating system that runs the @command{updatedb} (@pxref{Invoking updatedb,,, find, Finding Files}) and the @command{guix gc} commands (@pxref{Invoking guix gc}) daily, as well as the @command{mkid} command on behalf of an unprivileged user (@pxref{mkid invocation,,, idutils, ID Database Utilities}). It uses gexps to introduce job definitions that are passed to mcron (@pxref{G-Expressions})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16904 +#: guix-git/doc/guix.texi:17266 #, no-wrap msgid "" "(use-modules (guix) (gnu) (gnu services mcron))\n" @@ -29360,7 +29978,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16914 +#: guix-git/doc/guix.texi:17276 #, no-wrap msgid "" "(define updatedb-job\n" @@ -29376,7 +29994,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16920 +#: guix-git/doc/guix.texi:17282 #, no-wrap msgid "" "(define garbage-collector-job\n" @@ -29388,7 +30006,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16927 +#: guix-git/doc/guix.texi:17289 #, no-wrap msgid "" "(define idutils-job\n" @@ -29401,7 +30019,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16930 +#: guix-git/doc/guix.texi:17292 #, no-wrap msgid "" "(operating-system\n" @@ -29410,7 +30028,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16940 +#: guix-git/doc/guix.texi:17302 #, no-wrap msgid "" " ;; %BASE-SERVICES already includes an instance of\n" @@ -29425,23 +30043,23 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:16942 +#: guix-git/doc/guix.texi:17304 #, no-wrap msgid "Tip" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:16948 +#: guix-git/doc/guix.texi:17310 msgid "When providing the action of a job specification as a procedure, you should provide an explicit name for the job via the optional 3rd argument as done in the @code{updatedb-job} example above. Otherwise, the job would appear as ``Lambda function'' in the output of @command{herd schedule mcron}, which is not nearly descriptive enough!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16955 +#: guix-git/doc/guix.texi:17317 msgid "For more complex jobs defined in Scheme where you need control over the top level, for instance to introduce a @code{use-modules} form, you can move your code to a separate program using the @code{program-file} procedure of the @code{(guix gexp)} module (@pxref{G-Expressions}). The example below illustrates that." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16971 +#: guix-git/doc/guix.texi:17333 #, no-wrap msgid "" "(define %battery-alert-job\n" @@ -29462,7 +30080,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16973 +#: guix-git/doc/guix.texi:17335 #, no-wrap msgid "" " (define %min-level 20)\n" @@ -29470,7 +30088,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16984 +#: guix-git/doc/guix.texi:17346 #, no-wrap msgid "" " (setenv \"LC_ALL\" \"C\") ;ensure English output\n" @@ -29486,106 +30104,106 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16989 +#: guix-git/doc/guix.texi:17351 msgid "@xref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron}, for more information on mcron job specifications. Below is the reference of the mcron service." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16992 +#: guix-git/doc/guix.texi:17354 msgid "On a running system, you can use the @code{schedule} action of the service to visualize the mcron jobs that will be executed next:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16995 +#: guix-git/doc/guix.texi:17357 #, no-wrap msgid "# herd schedule mcron\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17000 +#: guix-git/doc/guix.texi:17362 msgid "The example above lists the next five tasks that will be executed, but you can also specify the number of tasks to display:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:17003 +#: guix-git/doc/guix.texi:17365 #, no-wrap msgid "# herd schedule mcron 10\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17005 +#: guix-git/doc/guix.texi:17367 #, no-wrap msgid "{Scheme Variable} mcron-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17008 +#: guix-git/doc/guix.texi:17370 msgid "This is the type of the @code{mcron} service, whose value is an @code{mcron-configuration} object." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17013 guix-git/doc/guix.texi:37428 +#: guix-git/doc/guix.texi:17375 guix-git/doc/guix.texi:37918 msgid "This service type can be the target of a service extension that provides additional job specifications (@pxref{Service Composition}). In other words, it is possible to define services that provide additional mcron jobs to run." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17015 +#: guix-git/doc/guix.texi:17377 #, no-wrap msgid "{Data Type} mcron-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17017 guix-git/doc/guix.texi:37432 +#: guix-git/doc/guix.texi:17379 guix-git/doc/guix.texi:37922 msgid "Data type representing the configuration of mcron." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17019 guix-git/doc/guix.texi:37434 +#: guix-git/doc/guix.texi:17381 guix-git/doc/guix.texi:37924 #, no-wrap msgid "@code{mcron} (default: @var{mcron})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17021 guix-git/doc/guix.texi:37436 +#: guix-git/doc/guix.texi:17383 guix-git/doc/guix.texi:37926 msgid "The mcron package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17022 guix-git/doc/guix.texi:17091 -#: guix-git/doc/guix.texi:37437 +#: guix-git/doc/guix.texi:17384 guix-git/doc/guix.texi:17453 +#: guix-git/doc/guix.texi:37927 #, no-wrap msgid "jobs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17026 guix-git/doc/guix.texi:37441 +#: guix-git/doc/guix.texi:17388 guix-git/doc/guix.texi:37931 msgid "This is a list of gexps (@pxref{G-Expressions}), where each gexp corresponds to an mcron job specification (@pxref{Syntax, mcron job specifications,, mcron, GNU@tie{}mcron})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17033 +#: guix-git/doc/guix.texi:17395 #, no-wrap msgid "rottlog" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17034 +#: guix-git/doc/guix.texi:17396 #, no-wrap msgid "log rotation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17041 +#: guix-git/doc/guix.texi:17403 msgid "Log files such as those found in @file{/var/log} tend to grow endlessly, so it's a good idea to @dfn{rotate} them once in a while---i.e., archive their contents in separate files, possibly compressed. The @code{(gnu services admin)} module provides an interface to GNU@tie{}Rot[t]log, a log rotation tool (@pxref{Top,,, rottlog, GNU Rot[t]log Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17047 +#: guix-git/doc/guix.texi:17409 msgid "This service is part of @code{%base-services}, and thus enabled by default, with the default settings, for commonly encountered log files. The example below shows how to extend it with an additional @dfn{rotation}, should you need to do that (usually, services that produce log files already take care of that):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17051 +#: guix-git/doc/guix.texi:17413 #, no-wrap msgid "" "(use-modules (guix) (gnu))\n" @@ -29594,7 +30212,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17055 +#: guix-git/doc/guix.texi:17417 #, no-wrap msgid "" "(define my-log-files\n" @@ -29604,7 +30222,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17064 +#: guix-git/doc/guix.texi:17426 #, no-wrap msgid "" "(operating-system\n" @@ -29618,93 +30236,93 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17066 +#: guix-git/doc/guix.texi:17428 #, no-wrap msgid "{Scheme Variable} rottlog-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17069 +#: guix-git/doc/guix.texi:17431 msgid "This is the type of the Rottlog service, whose value is a @code{rottlog-configuration} object." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17072 +#: guix-git/doc/guix.texi:17434 msgid "Other services can extend this one with new @code{log-rotation} objects (see below), thereby augmenting the set of files to be rotated." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17075 +#: guix-git/doc/guix.texi:17437 msgid "This service type can define mcron jobs (@pxref{Scheduled Job Execution}) to run the rottlog service." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17077 +#: guix-git/doc/guix.texi:17439 #, no-wrap msgid "{Data Type} rottlog-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17079 +#: guix-git/doc/guix.texi:17441 msgid "Data type representing the configuration of rottlog." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17081 +#: guix-git/doc/guix.texi:17443 #, no-wrap msgid "@code{rottlog} (default: @code{rottlog})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17083 +#: guix-git/doc/guix.texi:17445 msgid "The Rottlog package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17084 +#: guix-git/doc/guix.texi:17446 #, no-wrap msgid "@code{rc-file} (default: @code{(file-append rottlog \"/etc/rc\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17087 +#: guix-git/doc/guix.texi:17449 msgid "The Rottlog configuration file to use (@pxref{Mandatory RC Variables,,, rottlog, GNU Rot[t]log Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17088 +#: guix-git/doc/guix.texi:17450 #, no-wrap msgid "@code{rotations} (default: @code{%default-rotations})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17090 +#: guix-git/doc/guix.texi:17452 msgid "A list of @code{log-rotation} objects as defined below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17094 +#: guix-git/doc/guix.texi:17456 msgid "This is a list of gexps where each gexp corresponds to an mcron job specification (@pxref{Scheduled Job Execution})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17097 +#: guix-git/doc/guix.texi:17459 #, no-wrap msgid "{Data Type} log-rotation" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17099 +#: guix-git/doc/guix.texi:17461 msgid "Data type representing the rotation of a group of log files." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17103 +#: guix-git/doc/guix.texi:17465 msgid "Taking an example from the Rottlog manual (@pxref{Period Related File Examples,,, rottlog, GNU Rot[t]log Manual}), a log rotation might be defined like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17112 +#: guix-git/doc/guix.texi:17474 #, no-wrap msgid "" "(log-rotation\n" @@ -29717,121 +30335,115 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17115 +#: guix-git/doc/guix.texi:17477 msgid "The list of fields is as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17117 +#: guix-git/doc/guix.texi:17479 #, no-wrap msgid "@code{frequency} (default: @code{'weekly})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17119 +#: guix-git/doc/guix.texi:17481 msgid "The log rotation frequency, a symbol." msgstr "" -#. type: code{#1} -#: guix-git/doc/guix.texi:17120 -#, no-wrap -msgid "files" -msgstr "tiedostot" - #. type: table -#: guix-git/doc/guix.texi:17122 +#: guix-git/doc/guix.texi:17484 msgid "The list of files or file glob patterns to rotate." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17123 +#: guix-git/doc/guix.texi:17485 #, no-wrap msgid "@code{options} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17126 +#: guix-git/doc/guix.texi:17488 msgid "The list of rottlog options for this rotation (@pxref{Configuration parameters,,, rottlog, GNU Rot[t]lg Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17127 +#: guix-git/doc/guix.texi:17489 #, no-wrap msgid "@code{post-rotate} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17129 +#: guix-git/doc/guix.texi:17491 msgid "Either @code{#f} or a gexp to execute once the rotation has completed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17132 +#: guix-git/doc/guix.texi:17494 #, no-wrap msgid "{Scheme Variable} %default-rotations" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17135 +#: guix-git/doc/guix.texi:17497 msgid "Specifies weekly rotation of @code{%rotated-files} and of @file{/var/log/guix-daemon.log}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17137 +#: guix-git/doc/guix.texi:17499 #, no-wrap msgid "{Scheme Variable} %rotated-files" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17141 +#: guix-git/doc/guix.texi:17503 msgid "The list of syslog-controlled files to be rotated. By default it is: @code{'(\"/var/log/messages\" \"/var/log/secure\" \"/var/log/debug\" \\ \"/var/log/maillog\")}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17154 +#: guix-git/doc/guix.texi:17516 msgid "The @code{(gnu services networking)} module provides services to configure network interfaces and set up networking on your machine. Those services provide different ways for you to set up your machine: by declaring a static network configuration, by running a Dynamic Host Configuration Protocol (DHCP) client, or by running daemons such as NetworkManager and Connman that automate the whole process, automatically adapt to connectivity changes, and provide a high-level user interface." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17160 +#: guix-git/doc/guix.texi:17522 msgid "On a laptop, NetworkManager and Connman are by far the most convenient options, which is why the default desktop services include NetworkManager (@pxref{Desktop Services, @code{%desktop-services}}). For a server, or for a virtual machine or a container, static network configuration or a simple DHCP client are often more appropriate." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17163 +#: guix-git/doc/guix.texi:17525 msgid "This section describes the various network setup services available, starting with static network configuration." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17164 +#: guix-git/doc/guix.texi:17526 #, no-wrap msgid "{Scheme Variable} static-networking-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17169 +#: guix-git/doc/guix.texi:17531 msgid "This is the type for statically-configured network interfaces. Its value must be a list of @code{static-networking} records. Each of them declares a set of @dfn{addresses}, @dfn{routes}, and @dfn{links}, as show below." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17170 +#: guix-git/doc/guix.texi:17532 #, no-wrap msgid "network interface controller (NIC)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17171 +#: guix-git/doc/guix.texi:17533 #, no-wrap msgid "NIC, networking interface controller" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17174 +#: guix-git/doc/guix.texi:17536 msgid "Here is the simplest configuration, with only one network interface controller (NIC) and only IPv4 connectivity:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17188 +#: guix-git/doc/guix.texi:17550 #, no-wrap msgid "" ";; Static networking for one NIC, IPv4-only.\n" @@ -29849,28 +30461,28 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17197 +#: guix-git/doc/guix.texi:17559 msgid "The snippet above can be added to the @code{services} field of your operating system configuration (@pxref{Using the Configuration System}). It will configure your machine to have 10.0.2.15 as its IP address, with a 24-bit netmask for the local network---meaning that any 10.0.2.@var{x} address is on the local area network (LAN). Traffic to addresses outside the local network is routed @i{via} 10.0.2.2. Host names are resolved by sending domain name system (DNS) queries to 10.0.2.3." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17199 +#: guix-git/doc/guix.texi:17561 #, no-wrap msgid "{Data Type} static-networking" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17201 +#: guix-git/doc/guix.texi:17563 msgid "This is the data type representing a static network configuration." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17205 +#: guix-git/doc/guix.texi:17567 msgid "As an example, here is how you would declare the configuration of a machine with a single network interface controller (NIC) available as @code{eno1}, and with one IPv4 and one IPv6 address:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17222 +#: guix-git/doc/guix.texi:17584 #, no-wrap msgid "" ";; Network configuration for one NIC, IPv4 + IPv6.\n" @@ -29891,12 +30503,12 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17228 +#: guix-git/doc/guix.texi:17590 msgid "If you are familiar with the @command{ip} command of the @uref{https://wiki.linuxfoundation.org/networking/iproute2, @code{iproute2} package} found on Linux-based systems, the declaration above is equivalent to typing:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:17234 +#: guix-git/doc/guix.texi:17596 #, no-wrap msgid "" "ip address add 10.0.2.15/24 dev eno1\n" @@ -29906,353 +30518,353 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17239 +#: guix-git/doc/guix.texi:17601 msgid "Run @command{man 8 ip} for more info. Venerable GNU/Linux users will certainly know how to do it with @command{ifconfig} and @command{route}, but we'll spare you that." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17241 +#: guix-git/doc/guix.texi:17603 msgid "The available fields of this data type are as follows:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17243 +#: guix-git/doc/guix.texi:17605 #, no-wrap msgid "addresses" msgstr "osoitteet" #. type: itemx -#: guix-git/doc/guix.texi:17244 +#: guix-git/doc/guix.texi:17606 #, no-wrap msgid "@code{links} (default: @code{'()})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:17245 +#: guix-git/doc/guix.texi:17607 #, no-wrap msgid "@code{routes} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17248 +#: guix-git/doc/guix.texi:17610 msgid "The list of @code{network-address}, @code{network-link}, and @code{network-route} records for this network (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17249 +#: guix-git/doc/guix.texi:17611 #, no-wrap msgid "@code{name-servers} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17252 +#: guix-git/doc/guix.texi:17614 msgid "The list of IP addresses (strings) of domain name servers. These IP addresses go to @file{/etc/resolv.conf}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17253 +#: guix-git/doc/guix.texi:17615 #, no-wrap msgid "@code{provision} (default: @code{'(networking)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17256 +#: guix-git/doc/guix.texi:17618 msgid "If true, this should be a list of symbols for the Shepherd service corresponding to this network configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17257 +#: guix-git/doc/guix.texi:17619 #, no-wrap msgid "@code{requirement} (default @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17259 +#: guix-git/doc/guix.texi:17621 msgid "The list of Shepherd services depended on." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17262 +#: guix-git/doc/guix.texi:17624 #, no-wrap msgid "{Data Type} network-address" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17265 +#: guix-git/doc/guix.texi:17627 msgid "This is the data type representing the IP address of a network interface." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17270 +#: guix-git/doc/guix.texi:17632 msgid "The name of the network interface for this address---e.g., @code{\"eno1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17271 +#: guix-git/doc/guix.texi:17633 #, no-wrap msgid "value" msgstr "arvo" #. type: table -#: guix-git/doc/guix.texi:17275 +#: guix-git/doc/guix.texi:17637 msgid "The actual IP address and network mask, in @uref{https://en.wikipedia.org/wiki/CIDR#CIDR_notation, @acronym{CIDR, Classless Inter-Domain Routing} notation}, as a string." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17279 +#: guix-git/doc/guix.texi:17641 msgid "For example, @code{\"10.0.2.15/24\"} denotes IPv4 address 10.0.2.15 on a 24-bit sub-network---all 10.0.2.@var{x} addresses are on the same local network." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17280 +#: guix-git/doc/guix.texi:17642 #, no-wrap msgid "ipv6?" msgstr "ipv6?" #. type: table -#: guix-git/doc/guix.texi:17283 +#: guix-git/doc/guix.texi:17645 msgid "Whether @code{value} denotes an IPv6 address. By default this is automatically determined." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17286 +#: guix-git/doc/guix.texi:17648 #, no-wrap msgid "{Data Type} network-route" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17288 +#: guix-git/doc/guix.texi:17650 msgid "This is the data type representing a network route." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17290 +#: guix-git/doc/guix.texi:17652 #, no-wrap msgid "destination" msgstr "kohde" #. type: table -#: guix-git/doc/guix.texi:17293 +#: guix-git/doc/guix.texi:17655 msgid "The route destination (a string), either an IP address or @code{\"default\"} to denote the default route." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17294 +#: guix-git/doc/guix.texi:17656 #, no-wrap msgid "@code{source} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17296 +#: guix-git/doc/guix.texi:17658 msgid "The route source." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17297 guix-git/doc/guix.texi:34761 +#: guix-git/doc/guix.texi:17659 guix-git/doc/guix.texi:35200 #, no-wrap msgid "@code{device} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17299 +#: guix-git/doc/guix.texi:17661 msgid "The device used for this route---e.g., @code{\"eno2\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17300 +#: guix-git/doc/guix.texi:17662 #, no-wrap msgid "@code{ipv6?} (default: auto)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17303 +#: guix-git/doc/guix.texi:17665 msgid "Whether this is an IPv6 route. By default this is automatically determined based on @code{destination} or @code{gateway}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17304 +#: guix-git/doc/guix.texi:17666 #, no-wrap msgid "@code{gateway} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17306 +#: guix-git/doc/guix.texi:17668 msgid "IP address (a string) through which traffic is routed." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17309 +#: guix-git/doc/guix.texi:17671 #, no-wrap msgid "{Data Type} network-link" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17312 +#: guix-git/doc/guix.texi:17674 msgid "Data type for a network link (@pxref{Link,,, guile-netlink, Guile-Netlink Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17316 +#: guix-git/doc/guix.texi:17678 msgid "The name of the link---e.g., @code{\"v0p0\"}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17319 +#: guix-git/doc/guix.texi:17681 msgid "A symbol denoting the type of the link---e.g., @code{'veth}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17320 +#: guix-git/doc/guix.texi:17682 #, no-wrap msgid "arguments" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17322 +#: guix-git/doc/guix.texi:17684 msgid "List of arguments for this type of link." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17325 +#: guix-git/doc/guix.texi:17687 #, no-wrap msgid "loopback device" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17326 +#: guix-git/doc/guix.texi:17688 #, no-wrap msgid "{Scheme Variable} %loopback-static-networking" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17330 +#: guix-git/doc/guix.texi:17692 msgid "This is the @code{static-networking} record representing the ``loopback device'', @code{lo}, for IP addresses 127.0.0.1 and ::1, and providing the @code{loopback} Shepherd service." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17332 +#: guix-git/doc/guix.texi:17694 #, no-wrap msgid "networking, with QEMU" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17333 +#: guix-git/doc/guix.texi:17695 #, no-wrap msgid "QEMU, networking" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17334 +#: guix-git/doc/guix.texi:17696 #, no-wrap msgid "{Scheme Variable} %qemu-static-networking" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17338 +#: guix-git/doc/guix.texi:17700 msgid "This is the @code{static-networking} record representing network setup when using QEMU's user-mode network stack on @code{eth0} (@pxref{Using the user mode network stack,,, QEMU, QEMU Documentation})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17340 +#: guix-git/doc/guix.texi:17702 #, no-wrap msgid "DHCP, networking service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17341 +#: guix-git/doc/guix.texi:17703 #, no-wrap msgid "{Scheme Variable} dhcp-client-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17345 +#: guix-git/doc/guix.texi:17707 msgid "This is the type of services that run @var{dhcp}, a Dynamic Host Configuration Protocol (DHCP) client, on all the non-loopback network interfaces. Its value is the DHCP client package to use, @code{isc-dhcp} by default." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17347 +#: guix-git/doc/guix.texi:17709 #, no-wrap msgid "NetworkManager" msgstr "NetworkManager" #. type: defvr -#: guix-git/doc/guix.texi:17349 +#: guix-git/doc/guix.texi:17711 #, no-wrap msgid "{Scheme Variable} network-manager-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17354 +#: guix-git/doc/guix.texi:17716 msgid "This is the service type for the @uref{https://wiki.gnome.org/Projects/NetworkManager, NetworkManager} service. The value for this service type is a @code{network-manager-configuration} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17357 guix-git/doc/guix.texi:17509 -#: guix-git/doc/guix.texi:17538 +#: guix-git/doc/guix.texi:17719 guix-git/doc/guix.texi:17871 +#: guix-git/doc/guix.texi:17900 msgid "This service is part of @code{%desktop-services} (@pxref{Desktop Services})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17359 +#: guix-git/doc/guix.texi:17721 #, no-wrap msgid "{Data Type} network-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17361 +#: guix-git/doc/guix.texi:17723 msgid "Data type representing the configuration of NetworkManager." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17363 +#: guix-git/doc/guix.texi:17725 #, no-wrap msgid "@code{network-manager} (default: @code{network-manager})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17365 +#: guix-git/doc/guix.texi:17727 msgid "The NetworkManager package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17366 +#: guix-git/doc/guix.texi:17728 #, no-wrap msgid "@code{dns} (default: @code{\"default\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17369 +#: guix-git/doc/guix.texi:17731 msgid "Processing mode for DNS, which affects how NetworkManager uses the @code{resolv.conf} configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17374 +#: guix-git/doc/guix.texi:17736 msgid "NetworkManager will update @code{resolv.conf} to reflect the nameservers provided by currently active connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17375 +#: guix-git/doc/guix.texi:17737 #, no-wrap msgid "dnsmasq" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17379 +#: guix-git/doc/guix.texi:17741 msgid "NetworkManager will run @code{dnsmasq} as a local caching nameserver, using a @dfn{conditional forwarding} configuration if you are connected to a VPN, and then update @code{resolv.conf} to point to the local nameserver." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17385 +#: guix-git/doc/guix.texi:17747 msgid "With this setting, you can share your network connection. For example when you want to share your network connection to another laptop @i{via} an Ethernet cable, you can open @command{nm-connection-editor} and configure the Wired connection's method for IPv4 and IPv6 to be ``Shared to other computers'' and reestablish the connection (or reboot)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17392 +#: guix-git/doc/guix.texi:17754 msgid "You can also set up a @dfn{host-to-guest connection} to QEMU VMs (@pxref{Installing Guix in a VM}). With a host-to-guest connection, you can e.g.@: access a Web server running on the VM (@pxref{Web Services}) from a Web browser on your host system, or connect to the VM @i{via} SSH (@pxref{Networking Services, @code{openssh-service-type}}). To set up a host-to-guest connection, run this command once:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:17399 +#: guix-git/doc/guix.texi:17761 #, no-wrap msgid "" "nmcli connection add type tun \\\n" @@ -30263,50 +30875,50 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17404 +#: guix-git/doc/guix.texi:17766 msgid "Then each time you launch your QEMU VM (@pxref{Running Guix in a VM}), pass @option{-nic tap,ifname=tap0,script=no,downscript=no} to @command{qemu-system-...}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17407 +#: guix-git/doc/guix.texi:17769 msgid "NetworkManager will not modify @code{resolv.conf}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17409 +#: guix-git/doc/guix.texi:17771 #, no-wrap msgid "@code{vpn-plugins} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17413 +#: guix-git/doc/guix.texi:17775 msgid "This is the list of available plugins for virtual private networks (VPNs). An example of this is the @code{network-manager-openvpn} package, which allows NetworkManager to manage VPNs @i{via} OpenVPN." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17417 +#: guix-git/doc/guix.texi:17779 #, no-wrap msgid "Connman" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17418 +#: guix-git/doc/guix.texi:17780 #, no-wrap msgid "{Scheme Variable} connman-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17421 +#: guix-git/doc/guix.texi:17783 msgid "This is the service type to run @url{https://01.org/connman,Connman}, a network connection manager." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17424 +#: guix-git/doc/guix.texi:17786 msgid "Its value must be an @code{connman-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17429 +#: guix-git/doc/guix.texi:17791 #, no-wrap msgid "" "(service connman-service-type\n" @@ -30315,311 +30927,311 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17432 +#: guix-git/doc/guix.texi:17794 msgid "See below for details about @code{connman-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17434 +#: guix-git/doc/guix.texi:17796 #, no-wrap msgid "{Data Type} connman-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17436 +#: guix-git/doc/guix.texi:17798 msgid "Data Type representing the configuration of connman." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17438 +#: guix-git/doc/guix.texi:17800 #, no-wrap msgid "@code{connman} (default: @var{connman})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17440 +#: guix-git/doc/guix.texi:17802 msgid "The connman package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17441 +#: guix-git/doc/guix.texi:17803 #, no-wrap msgid "@code{disable-vpn?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17443 +#: guix-git/doc/guix.texi:17805 msgid "When true, disable connman's vpn plugin." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17446 +#: guix-git/doc/guix.texi:17808 #, no-wrap msgid "WPA Supplicant" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17447 +#: guix-git/doc/guix.texi:17809 #, no-wrap msgid "{Scheme Variable} wpa-supplicant-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17451 +#: guix-git/doc/guix.texi:17813 msgid "This is the service type to run @url{https://w1.fi/wpa_supplicant/,WPA supplicant}, an authentication daemon required to authenticate against encrypted WiFi or ethernet networks." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17453 +#: guix-git/doc/guix.texi:17815 #, no-wrap msgid "{Data Type} wpa-supplicant-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17455 +#: guix-git/doc/guix.texi:17817 msgid "Data type representing the configuration of WPA Supplicant." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17457 guix-git/doc/guix.texi:32945 +#: guix-git/doc/guix.texi:17819 guix-git/doc/guix.texi:33310 msgid "It takes the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17459 +#: guix-git/doc/guix.texi:17821 #, no-wrap msgid "@code{wpa-supplicant} (default: @code{wpa-supplicant})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17461 +#: guix-git/doc/guix.texi:17823 msgid "The WPA Supplicant package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17462 +#: guix-git/doc/guix.texi:17824 #, no-wrap msgid "@code{requirement} (default: @code{'(user-processes loopback syslogd)}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17464 +#: guix-git/doc/guix.texi:17826 msgid "List of services that should be started before WPA Supplicant starts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17465 +#: guix-git/doc/guix.texi:17827 #, no-wrap msgid "@code{dbus?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17467 +#: guix-git/doc/guix.texi:17829 msgid "Whether to listen for requests on D-Bus." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17468 +#: guix-git/doc/guix.texi:17830 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/wpa_supplicant.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17470 +#: guix-git/doc/guix.texi:17832 msgid "Where to store the PID file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17471 guix-git/doc/guix.texi:31246 -#: guix-git/doc/guix.texi:31388 +#: guix-git/doc/guix.texi:17833 guix-git/doc/guix.texi:31611 +#: guix-git/doc/guix.texi:31753 #, no-wrap msgid "@code{interface} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17474 +#: guix-git/doc/guix.texi:17836 msgid "If this is set, it must specify the name of a network interface that WPA supplicant will control." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17475 guix-git/doc/guix.texi:17591 -#: guix-git/doc/guix.texi:22879 +#: guix-git/doc/guix.texi:17837 guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:23241 #, no-wrap msgid "@code{config-file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17477 +#: guix-git/doc/guix.texi:17839 msgid "Optional configuration file to use." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17480 +#: guix-git/doc/guix.texi:17842 msgid "List of additional command-line arguments to pass to the daemon." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17483 +#: guix-git/doc/guix.texi:17845 #, no-wrap msgid "wicd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17486 +#: guix-git/doc/guix.texi:17848 #, no-wrap msgid "network management" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17487 +#: guix-git/doc/guix.texi:17849 #, no-wrap msgid "{Scheme Procedure} wicd-service [#:wicd @var{wicd}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17490 +#: guix-git/doc/guix.texi:17852 msgid "Return a service that runs @url{https://launchpad.net/wicd,Wicd}, a network management daemon that aims to simplify wired and wireless networking." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17495 +#: guix-git/doc/guix.texi:17857 msgid "This service adds the @var{wicd} package to the global profile, providing several commands to interact with the daemon and configure networking: @command{wicd-client}, a graphical user interface, and the @command{wicd-cli} and @command{wicd-curses} user interfaces." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17497 +#: guix-git/doc/guix.texi:17859 #, no-wrap msgid "ModemManager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17500 +#: guix-git/doc/guix.texi:17862 msgid "Some networking devices such as modems require special care, and this is what the services below focus on." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17501 +#: guix-git/doc/guix.texi:17863 #, no-wrap msgid "{Scheme Variable} modem-manager-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17506 +#: guix-git/doc/guix.texi:17868 msgid "This is the service type for the @uref{https://wiki.gnome.org/Projects/ModemManager, ModemManager} service. The value for this service type is a @code{modem-manager-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17511 +#: guix-git/doc/guix.texi:17873 #, no-wrap msgid "{Data Type} modem-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17513 +#: guix-git/doc/guix.texi:17875 msgid "Data type representing the configuration of ModemManager." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17515 +#: guix-git/doc/guix.texi:17877 #, no-wrap msgid "@code{modem-manager} (default: @code{modem-manager})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17517 +#: guix-git/doc/guix.texi:17879 msgid "The ModemManager package to use." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17521 +#: guix-git/doc/guix.texi:17883 #, no-wrap msgid "USB_ModeSwitch" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17522 +#: guix-git/doc/guix.texi:17884 #, no-wrap msgid "Modeswitching" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17524 +#: guix-git/doc/guix.texi:17886 #, no-wrap msgid "{Scheme Variable} usb-modeswitch-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17529 +#: guix-git/doc/guix.texi:17891 msgid "This is the service type for the @uref{https://www.draisberghof.de/usb_modeswitch/, USB_ModeSwitch} service. The value for this service type is a @code{usb-modeswitch-configuration} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17535 +#: guix-git/doc/guix.texi:17897 msgid "When plugged in, some USB modems (and other USB devices) initially present themselves as a read-only storage medium and not as a modem. They need to be @dfn{modeswitched} before they are usable. The USB_ModeSwitch service type installs udev rules to automatically modeswitch these devices when they are plugged in." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17540 +#: guix-git/doc/guix.texi:17902 #, no-wrap msgid "{Data Type} usb-modeswitch-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17542 +#: guix-git/doc/guix.texi:17904 msgid "Data type representing the configuration of USB_ModeSwitch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17544 +#: guix-git/doc/guix.texi:17906 #, no-wrap msgid "@code{usb-modeswitch} (default: @code{usb-modeswitch})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17546 +#: guix-git/doc/guix.texi:17908 msgid "The USB_ModeSwitch package providing the binaries for modeswitching." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17547 +#: guix-git/doc/guix.texi:17909 #, no-wrap msgid "@code{usb-modeswitch-data} (default: @code{usb-modeswitch-data})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17550 +#: guix-git/doc/guix.texi:17912 msgid "The package providing the device data and udev rules file used by USB_ModeSwitch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17551 +#: guix-git/doc/guix.texi:17913 #, no-wrap msgid "@code{config-file} (default: @code{#~(string-append #$usb-modeswitch:dispatcher \"/etc/usb_modeswitch.conf\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17556 +#: guix-git/doc/guix.texi:17918 msgid "Which config file to use for the USB_ModeSwitch dispatcher. By default the config file shipped with USB_ModeSwitch is used which disables logging to @file{/var/log} among other default settings. If set to @code{#f}, no config file is used." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17570 +#: guix-git/doc/guix.texi:17932 msgid "The @code{(gnu services networking)} module discussed in the previous section provides services for more advanced setups: providing a DHCP service for others to use, filtering packets with iptables or nftables, running a WiFi access point with @command{hostapd}, running the @command{inetd} ``superdaemon'', and more. This section describes those." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17571 +#: guix-git/doc/guix.texi:17933 #, no-wrap msgid "{Scheme Procedure} dhcpd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17575 +#: guix-git/doc/guix.texi:17937 msgid "This type defines a service that runs a DHCP daemon. To create a service of this type, you must supply a @code{}. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17581 +#: guix-git/doc/guix.texi:17943 #, no-wrap msgid "" "(service dhcpd-service-type\n" @@ -30629,96 +31241,96 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17584 +#: guix-git/doc/guix.texi:17946 #, no-wrap msgid "{Data Type} dhcpd-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17586 +#: guix-git/doc/guix.texi:17948 #, no-wrap msgid "@code{package} (default: @code{isc-dhcp})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17591 +#: guix-git/doc/guix.texi:17953 msgid "The package that provides the DHCP daemon. This package is expected to provide the daemon at @file{sbin/dhcpd} relative to its output directory. The default package is the @uref{https://www.isc.org/products/DHCP, ISC's DHCP server}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17596 +#: guix-git/doc/guix.texi:17958 msgid "The configuration file to use. This is required. It will be passed to @code{dhcpd} via its @code{-cf} option. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). See @code{man dhcpd.conf} for details on the configuration file syntax." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17596 +#: guix-git/doc/guix.texi:17958 #, no-wrap msgid "@code{version} (default: @code{\"4\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17601 +#: guix-git/doc/guix.texi:17963 msgid "The DHCP version to use. The ISC DHCP server supports the values ``4'', ``6'', and ``4o6''. These correspond to the @code{dhcpd} program options @code{-4}, @code{-6}, and @code{-4o6}. See @code{man dhcpd} for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17601 +#: guix-git/doc/guix.texi:17963 #, no-wrap msgid "@code{run-directory} (default: @code{\"/run/dhcpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17604 +#: guix-git/doc/guix.texi:17966 msgid "The run directory to use. At service activation time, this directory will be created if it does not exist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17604 +#: guix-git/doc/guix.texi:17966 #, no-wrap msgid "@code{pid-file} (default: @code{\"/run/dhcpd/dhcpd.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17607 +#: guix-git/doc/guix.texi:17969 msgid "The PID file to use. This corresponds to the @code{-pf} option of @code{dhcpd}. See @code{man dhcpd} for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17607 +#: guix-git/doc/guix.texi:17969 #, no-wrap msgid "@code{interfaces} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17613 +#: guix-git/doc/guix.texi:17975 msgid "The names of the network interfaces on which dhcpd should listen for broadcasts. If this list is not empty, then its elements (which must be strings) will be appended to the @code{dhcpd} invocation when starting the daemon. It may not be necessary to explicitly specify any interfaces here; see @code{man dhcpd} for details." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17616 +#: guix-git/doc/guix.texi:17978 #, no-wrap msgid "hostapd service, for Wi-Fi access points" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17617 +#: guix-git/doc/guix.texi:17979 #, no-wrap msgid "Wi-Fi access points, hostapd service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17618 +#: guix-git/doc/guix.texi:17980 #, no-wrap msgid "{Scheme Variable} hostapd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17623 +#: guix-git/doc/guix.texi:17985 msgid "This is the service type to run the @uref{https://w1.fi/hostapd/, hostapd} daemon to set up WiFi (IEEE 802.11) access points and authentication servers. Its associated value must be a @code{hostapd-configuration} as shown below:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17631 +#: guix-git/doc/guix.texi:17993 #, no-wrap msgid "" ";; Use wlan1 to run the access point for \"My Network\".\n" @@ -30730,129 +31342,129 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17634 +#: guix-git/doc/guix.texi:17996 #, no-wrap msgid "{Data Type} hostapd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17637 +#: guix-git/doc/guix.texi:17999 msgid "This data type represents the configuration of the hostapd service, with the following fields:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17639 +#: guix-git/doc/guix.texi:18001 #, no-wrap msgid "@code{package} (default: @code{hostapd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17641 +#: guix-git/doc/guix.texi:18003 msgid "The hostapd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17642 +#: guix-git/doc/guix.texi:18004 #, no-wrap msgid "@code{interface} (default: @code{\"wlan0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17644 +#: guix-git/doc/guix.texi:18006 msgid "The network interface to run the WiFi access point." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17645 +#: guix-git/doc/guix.texi:18007 #, no-wrap msgid "ssid" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17648 +#: guix-git/doc/guix.texi:18010 msgid "The SSID (@dfn{service set identifier}), a string that identifies this network." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17649 +#: guix-git/doc/guix.texi:18011 #, no-wrap msgid "@code{broadcast-ssid?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17651 +#: guix-git/doc/guix.texi:18013 msgid "Whether to broadcast this SSID." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17652 +#: guix-git/doc/guix.texi:18014 #, no-wrap msgid "@code{channel} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17654 +#: guix-git/doc/guix.texi:18016 msgid "The WiFi channel to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17655 +#: guix-git/doc/guix.texi:18017 #, no-wrap msgid "@code{driver} (default: @code{\"nl80211\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17659 +#: guix-git/doc/guix.texi:18021 msgid "The driver interface type. @code{\"nl80211\"} is used with all Linux mac80211 drivers. Use @code{\"none\"} if building hostapd as a standalone RADIUS server that does # not control any wireless/wired driver." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17660 guix-git/doc/guix.texi:23728 -#: guix-git/doc/guix.texi:26807 +#: guix-git/doc/guix.texi:18022 guix-git/doc/guix.texi:24090 +#: guix-git/doc/guix.texi:27144 #, no-wrap msgid "@code{extra-settings} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17664 +#: guix-git/doc/guix.texi:18026 msgid "Extra settings to append as-is to the hostapd configuration file. See @uref{https://w1.fi/cgit/hostap/plain/hostapd/hostapd.conf} for the configuration file reference." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17667 +#: guix-git/doc/guix.texi:18029 #, no-wrap msgid "{Scheme Variable} simulated-wifi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17674 +#: guix-git/doc/guix.texi:18036 msgid "This is the type of a service to simulate WiFi networking, which can be useful in virtual machines for testing purposes. The service loads the Linux kernel @uref{https://www.kernel.org/doc/html/latest/networking/mac80211_hwsim/mac80211_hwsim.html, @code{mac80211_hwsim} module} and starts hostapd to create a pseudo WiFi network that can be seen on @code{wlan0}, by default." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17676 +#: guix-git/doc/guix.texi:18038 msgid "The service's value is a @code{hostapd-configuration} record." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17679 +#: guix-git/doc/guix.texi:18041 #, no-wrap msgid "iptables" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17680 +#: guix-git/doc/guix.texi:18042 #, no-wrap msgid "{Scheme Variable} iptables-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17686 +#: guix-git/doc/guix.texi:18048 msgid "This is the service type to set up an iptables configuration. iptables is a packet filtering framework supported by the Linux kernel. This service supports configuring iptables for both IPv4 and IPv6. A simple example configuration rejecting all incoming connections except those to the ssh port 22 is shown below." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17708 +#: guix-git/doc/guix.texi:18070 #, no-wrap msgid "" "(service iptables-service-type\n" @@ -30878,241 +31490,241 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17711 +#: guix-git/doc/guix.texi:18073 #, no-wrap msgid "{Data Type} iptables-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17713 +#: guix-git/doc/guix.texi:18075 msgid "The data type representing the configuration of iptables." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17715 +#: guix-git/doc/guix.texi:18077 #, no-wrap msgid "@code{iptables} (default: @code{iptables})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17718 +#: guix-git/doc/guix.texi:18080 msgid "The iptables package that provides @code{iptables-restore} and @code{ip6tables-restore}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17718 +#: guix-git/doc/guix.texi:18080 #, no-wrap msgid "@code{ipv4-rules} (default: @code{%iptables-accept-all-rules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17722 +#: guix-git/doc/guix.texi:18084 msgid "The iptables rules to use. It will be passed to @code{iptables-restore}. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17722 +#: guix-git/doc/guix.texi:18084 #, no-wrap msgid "@code{ipv6-rules} (default: @code{%iptables-accept-all-rules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17726 +#: guix-git/doc/guix.texi:18088 msgid "The ip6tables rules to use. It will be passed to @code{ip6tables-restore}. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17729 +#: guix-git/doc/guix.texi:18091 #, no-wrap msgid "nftables" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17730 +#: guix-git/doc/guix.texi:18092 #, no-wrap msgid "{Scheme Variable} nftables-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17738 +#: guix-git/doc/guix.texi:18100 msgid "This is the service type to set up a nftables configuration. nftables is a netfilter project that aims to replace the existing iptables, ip6tables, arptables and ebtables framework. It provides a new packet filtering framework, a new user-space utility @command{nft}, and a compatibility layer for iptables. This service comes with a default ruleset @code{%default-nftables-ruleset} that rejecting all incoming connections except those to the ssh port 22. To use it, simply write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17741 +#: guix-git/doc/guix.texi:18103 #, no-wrap msgid "(service nftables-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17744 +#: guix-git/doc/guix.texi:18106 #, no-wrap msgid "{Data Type} nftables-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17746 +#: guix-git/doc/guix.texi:18108 msgid "The data type representing the configuration of nftables." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17748 +#: guix-git/doc/guix.texi:18110 #, no-wrap msgid "@code{package} (default: @code{nftables})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17750 +#: guix-git/doc/guix.texi:18112 msgid "The nftables package that provides @command{nft}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17750 +#: guix-git/doc/guix.texi:18112 #, no-wrap msgid "@code{ruleset} (default: @code{%default-nftables-ruleset})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17753 +#: guix-git/doc/guix.texi:18115 msgid "The nftables ruleset to use. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17756 +#: guix-git/doc/guix.texi:18118 #, no-wrap msgid "NTP (Network Time Protocol), service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17757 +#: guix-git/doc/guix.texi:18119 #, no-wrap msgid "ntpd, service for the Network Time Protocol daemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17758 +#: guix-git/doc/guix.texi:18120 #, no-wrap msgid "real time clock" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17759 +#: guix-git/doc/guix.texi:18121 #, no-wrap msgid "{Scheme Variable} ntp-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17763 +#: guix-git/doc/guix.texi:18125 msgid "This is the type of the service running the @uref{https://www.ntp.org, Network Time Protocol (NTP)} daemon, @command{ntpd}. The daemon will keep the system clock synchronized with that of the specified NTP servers." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17766 +#: guix-git/doc/guix.texi:18128 msgid "The value of this service is an @code{ntpd-configuration} object, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17768 +#: guix-git/doc/guix.texi:18130 #, no-wrap msgid "{Data Type} ntp-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17770 +#: guix-git/doc/guix.texi:18132 msgid "This is the data type for the NTP service configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17772 +#: guix-git/doc/guix.texi:18134 #, no-wrap msgid "@code{servers} (default: @code{%ntp-servers})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17776 +#: guix-git/doc/guix.texi:18138 msgid "This is the list of servers (@code{} records) with which @command{ntpd} will be synchronized. See the @code{ntp-server} data type definition below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17777 +#: guix-git/doc/guix.texi:18139 #, no-wrap msgid "@code{allow-large-adjustment?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17780 +#: guix-git/doc/guix.texi:18142 msgid "This determines whether @command{ntpd} is allowed to make an initial adjustment of more than 1,000 seconds." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17781 +#: guix-git/doc/guix.texi:18143 #, no-wrap msgid "@code{ntp} (default: @code{ntp})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17783 +#: guix-git/doc/guix.texi:18145 msgid "The NTP package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17786 +#: guix-git/doc/guix.texi:18148 #, no-wrap msgid "{Scheme Variable} %ntp-servers" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17789 +#: guix-git/doc/guix.texi:18151 msgid "List of host names used as the default NTP servers. These are servers of the @uref{https://www.ntppool.org/en/, NTP Pool Project}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17791 +#: guix-git/doc/guix.texi:18153 #, no-wrap msgid "{Data Type} ntp-server" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17793 +#: guix-git/doc/guix.texi:18155 msgid "The data type representing the configuration of a NTP server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17795 +#: guix-git/doc/guix.texi:18157 #, no-wrap msgid "@code{type} (default: @code{'server})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17798 +#: guix-git/doc/guix.texi:18160 msgid "The type of the NTP server, given as a symbol. One of @code{'pool}, @code{'server}, @code{'peer}, @code{'broadcast} or @code{'manycastclient}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17799 +#: guix-git/doc/guix.texi:18161 #, no-wrap msgid "address" msgstr "osoite" #. type: table -#: guix-git/doc/guix.texi:17801 +#: guix-git/doc/guix.texi:18163 msgid "The address of the server, as a string." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17802 guix-git/doc/guix.texi:33774 -#: guix-git/doc/guix.texi:33794 +#: guix-git/doc/guix.texi:18164 guix-git/doc/guix.texi:34211 +#: guix-git/doc/guix.texi:34231 #, no-wrap msgid "options" msgstr "vaihtoehdot" #. type: table -#: guix-git/doc/guix.texi:17807 +#: guix-git/doc/guix.texi:18169 msgid "NTPD options to use with that specific server, given as a list of option names and/or of option names and values tuples. The following example define a server to use with the options @option{iburst} and @option{prefer}, as well as @option{version} 3 and a @option{maxpoll} time of 16 seconds." msgstr "" #. type: example -#: guix-git/doc/guix.texi:17813 +#: guix-git/doc/guix.texi:18175 #, no-wrap msgid "" "(ntp-server\n" @@ -31122,24 +31734,24 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17817 +#: guix-git/doc/guix.texi:18179 #, no-wrap msgid "OpenNTPD" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17818 +#: guix-git/doc/guix.texi:18180 #, no-wrap msgid "{Scheme Procedure} openntpd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17822 +#: guix-git/doc/guix.texi:18184 msgid "Run the @command{ntpd}, the Network Time Protocol (NTP) daemon, as implemented by @uref{http://www.openntpd.org, OpenNTPD}. The daemon will keep the system clock synchronized with that of the given servers." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17831 +#: guix-git/doc/guix.texi:18193 #, no-wrap msgid "" "(service\n" @@ -31153,134 +31765,134 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17835 +#: guix-git/doc/guix.texi:18197 #, no-wrap msgid "{Scheme Variable} %openntpd-servers" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17838 +#: guix-git/doc/guix.texi:18200 msgid "This variable is a list of the server addresses defined in @code{%ntp-servers}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17840 +#: guix-git/doc/guix.texi:18202 #, no-wrap msgid "{Data Type} openntpd-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17842 +#: guix-git/doc/guix.texi:18204 #, no-wrap msgid "@code{openntpd} (default: @code{(file-append openntpd \"/sbin/ntpd\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17844 +#: guix-git/doc/guix.texi:18206 msgid "The openntpd executable to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17844 +#: guix-git/doc/guix.texi:18206 #, no-wrap msgid "@code{listen-on} (default: @code{'(\"127.0.0.1\" \"::1\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17846 +#: guix-git/doc/guix.texi:18208 msgid "A list of local IP addresses or hostnames the ntpd daemon should listen on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17846 +#: guix-git/doc/guix.texi:18208 #, no-wrap msgid "@code{query-from} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17848 +#: guix-git/doc/guix.texi:18210 msgid "A list of local IP address the ntpd daemon should use for outgoing queries." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17848 +#: guix-git/doc/guix.texi:18210 #, no-wrap msgid "@code{sensor} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17853 +#: guix-git/doc/guix.texi:18215 msgid "Specify a list of timedelta sensor devices ntpd should use. @code{ntpd} will listen to each sensor that actually exists and ignore non-existent ones. See @uref{https://man.openbsd.org/ntpd.conf, upstream documentation} for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17853 +#: guix-git/doc/guix.texi:18215 #, no-wrap msgid "@code{server} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17855 +#: guix-git/doc/guix.texi:18217 msgid "Specify a list of IP addresses or hostnames of NTP servers to synchronize to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17855 +#: guix-git/doc/guix.texi:18217 #, no-wrap msgid "@code{servers} (default: @code{%openntp-servers})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17857 +#: guix-git/doc/guix.texi:18219 msgid "Specify a list of IP addresses or hostnames of NTP pools to synchronize to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17857 +#: guix-git/doc/guix.texi:18219 #, no-wrap msgid "@code{constraint-from} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17864 +#: guix-git/doc/guix.texi:18226 msgid "@code{ntpd} can be configured to query the ‘Date’ from trusted HTTPS servers via TLS. This time information is not used for precision but acts as an authenticated constraint, thereby reducing the impact of unauthenticated NTP man-in-the-middle attacks. Specify a list of URLs, IP addresses or hostnames of HTTPS servers to provide a constraint." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17864 +#: guix-git/doc/guix.texi:18226 #, no-wrap msgid "@code{constraints-from} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17868 +#: guix-git/doc/guix.texi:18230 msgid "As with constraint from, specify a list of URLs, IP addresses or hostnames of HTTPS servers to provide a constraint. Should the hostname resolve to multiple IP addresses, @code{ntpd} will calculate a median constraint from all of them." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17871 +#: guix-git/doc/guix.texi:18233 #, no-wrap msgid "inetd" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17872 +#: guix-git/doc/guix.texi:18234 #, no-wrap msgid "{Scheme variable} inetd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17877 +#: guix-git/doc/guix.texi:18239 msgid "This service runs the @command{inetd} (@pxref{inetd invocation,,, inetutils, GNU Inetutils}) daemon. @command{inetd} listens for connections on internet sockets, and lazily starts the specified server program when a connection is made on one of these sockets." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17883 +#: guix-git/doc/guix.texi:18245 msgid "The value of this service is an @code{inetd-configuration} object. The following example configures the @command{inetd} daemon to provide the built-in @command{echo} service, as well as an smtp service which forwards smtp traffic over ssh to a server @code{smtp-server} behind a gateway @code{hostname}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17906 +#: guix-git/doc/guix.texi:18268 #, no-wrap msgid "" "(service\n" @@ -31307,463 +31919,465 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17909 +#: guix-git/doc/guix.texi:18271 msgid "See below for more details about @code{inetd-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17911 +#: guix-git/doc/guix.texi:18273 #, no-wrap msgid "{Data Type} inetd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17913 +#: guix-git/doc/guix.texi:18275 msgid "Data type representing the configuration of @command{inetd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17915 +#: guix-git/doc/guix.texi:18277 #, no-wrap msgid "@code{program} (default: @code{(file-append inetutils \"/libexec/inetd\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17917 +#: guix-git/doc/guix.texi:18279 msgid "The @command{inetd} executable to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17918 guix-git/doc/guix.texi:27655 +#: guix-git/doc/guix.texi:18280 guix-git/doc/guix.texi:27992 #, no-wrap msgid "@code{entries} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17921 +#: guix-git/doc/guix.texi:18283 msgid "A list of @command{inetd} service entries. Each entry should be created by the @code{inetd-entry} constructor." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17924 +#: guix-git/doc/guix.texi:18286 #, no-wrap msgid "{Data Type} inetd-entry" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17928 +#: guix-git/doc/guix.texi:18290 msgid "Data type representing an entry in the @command{inetd} configuration. Each entry corresponds to a socket where @command{inetd} will listen for requests." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17930 +#: guix-git/doc/guix.texi:18292 #, no-wrap msgid "@code{node} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17935 +#: guix-git/doc/guix.texi:18297 msgid "Optional string, a comma-separated list of local addresses @command{inetd} should use when listening for this service. @xref{Configuration file,,, inetutils, GNU Inetutils} for a complete description of all options." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17937 +#: guix-git/doc/guix.texi:18299 msgid "A string, the name must correspond to an entry in @code{/etc/services}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17937 +#: guix-git/doc/guix.texi:18299 #, no-wrap msgid "socket-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17940 +#: guix-git/doc/guix.texi:18302 msgid "One of @code{'stream}, @code{'dgram}, @code{'raw}, @code{'rdm} or @code{'seqpacket}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17940 +#: guix-git/doc/guix.texi:18302 #, no-wrap msgid "protocol" msgstr "protokolla" #. type: table -#: guix-git/doc/guix.texi:17942 +#: guix-git/doc/guix.texi:18304 msgid "A string, must correspond to an entry in @code{/etc/protocols}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17942 +#: guix-git/doc/guix.texi:18304 #, no-wrap msgid "@code{wait?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17945 +#: guix-git/doc/guix.texi:18307 msgid "Whether @command{inetd} should wait for the server to exit before listening to new service requests." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17950 +#: guix-git/doc/guix.texi:18312 msgid "A string containing the user (and, optionally, group) name of the user as whom the server should run. The group name can be specified in a suffix, separated by a colon or period, i.e.@: @code{\"user\"}, @code{\"user:group\"} or @code{\"user.group\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17950 +#: guix-git/doc/guix.texi:18312 #, no-wrap msgid "@code{program} (default: @code{\"internal\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:18315 msgid "The server program which will serve the requests, or @code{\"internal\"} if @command{inetd} should use a built-in service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17958 +#: guix-git/doc/guix.texi:18320 msgid "A list strings or file-like objects, which are the server program's arguments, starting with the zeroth argument, i.e.@: the name of the program itself. For @command{inetd}'s internal services, this entry must be @code{'()} or @code{'(\"internal\")}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17962 +#: guix-git/doc/guix.texi:18324 msgid "@xref{Configuration file,,, inetutils, GNU Inetutils} for a more detailed discussion of each configuration field." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17964 +#: guix-git/doc/guix.texi:18326 #, no-wrap msgid "opendht, distributed hash table network service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17965 +#: guix-git/doc/guix.texi:18327 #, no-wrap msgid "dhtproxy, for use with jami" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17966 +#: guix-git/doc/guix.texi:18328 #, no-wrap msgid "{Scheme Variable} opendht-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17971 +#: guix-git/doc/guix.texi:18333 msgid "This is the type of the service running a @uref{https://opendht.net, OpenDHT} node, @command{dhtnode}. The daemon can be used to host your own proxy service to the distributed hash table (DHT), for example to connect to with Jami, among other applications." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:17981 +#: guix-git/doc/guix.texi:18343 msgid "When using the OpenDHT proxy server, the IP addresses it ``sees'' from the clients should be addresses reachable from other peers. In practice this means that a publicly reachable address is best suited for a proxy server, outside of your private network. For example, hosting the proxy server on a IPv4 private local network and exposing it via port forwarding could work for external peers, but peers local to the proxy would have their private addresses shared with the external peers, leading to connectivity problems." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17985 +#: guix-git/doc/guix.texi:18347 msgid "The value of this service is a @code{opendht-configuration} object, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17987 +#: guix-git/doc/guix.texi:18349 #, no-wrap msgid "{Data Type} opendht-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17989 +#: guix-git/doc/guix.texi:18351 msgid "This is the data type for the OpenDHT service configuration." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17994 +#: guix-git/doc/guix.texi:18356 msgid "Available @code{opendht-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:17995 +#: guix-git/doc/guix.texi:18357 #, no-wrap msgid "{@code{opendht-configuration} parameter} package opendht" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:17997 +#: guix-git/doc/guix.texi:18359 msgid "The @code{opendht} package to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18000 +#: guix-git/doc/guix.texi:18362 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean peer-discovery?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18002 +#: guix-git/doc/guix.texi:18364 msgid "Whether to enable the multicast local peer discovery mechanism." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18004 guix-git/doc/guix.texi:18012 -#: guix-git/doc/guix.texi:18020 guix-git/doc/guix.texi:19712 -#: guix-git/doc/guix.texi:19788 guix-git/doc/guix.texi:19830 -#: guix-git/doc/guix.texi:19850 guix-git/doc/guix.texi:19856 -#: guix-git/doc/guix.texi:19872 guix-git/doc/guix.texi:19960 -#: guix-git/doc/guix.texi:20048 guix-git/doc/guix.texi:20361 -#: guix-git/doc/guix.texi:20374 guix-git/doc/guix.texi:21492 -#: guix-git/doc/guix.texi:22970 guix-git/doc/guix.texi:23076 -#: guix-git/doc/guix.texi:23141 guix-git/doc/guix.texi:23150 -#: guix-git/doc/guix.texi:24383 guix-git/doc/guix.texi:24427 -#: guix-git/doc/guix.texi:24444 guix-git/doc/guix.texi:24452 -#: guix-git/doc/guix.texi:24467 guix-git/doc/guix.texi:24485 -#: guix-git/doc/guix.texi:24509 guix-git/doc/guix.texi:24562 -#: guix-git/doc/guix.texi:24695 guix-git/doc/guix.texi:24729 -#: guix-git/doc/guix.texi:24765 guix-git/doc/guix.texi:24781 -#: guix-git/doc/guix.texi:24809 guix-git/doc/guix.texi:24870 -#: guix-git/doc/guix.texi:24953 guix-git/doc/guix.texi:28367 -#: guix-git/doc/guix.texi:28381 guix-git/doc/guix.texi:28403 -#: guix-git/doc/guix.texi:28522 guix-git/doc/guix.texi:28536 -#: guix-git/doc/guix.texi:28557 guix-git/doc/guix.texi:28578 -#: guix-git/doc/guix.texi:28585 guix-git/doc/guix.texi:28630 -#: guix-git/doc/guix.texi:28637 guix-git/doc/guix.texi:29426 -#: guix-git/doc/guix.texi:29440 guix-git/doc/guix.texi:29612 -#: guix-git/doc/guix.texi:29657 guix-git/doc/guix.texi:29744 -#: guix-git/doc/guix.texi:29946 guix-git/doc/guix.texi:29979 -#: guix-git/doc/guix.texi:30119 guix-git/doc/guix.texi:30130 -#: guix-git/doc/guix.texi:30381 guix-git/doc/guix.texi:31900 -#: guix-git/doc/guix.texi:31909 guix-git/doc/guix.texi:31917 -#: guix-git/doc/guix.texi:31925 guix-git/doc/guix.texi:31941 -#: guix-git/doc/guix.texi:31957 guix-git/doc/guix.texi:31965 -#: guix-git/doc/guix.texi:31973 guix-git/doc/guix.texi:31982 -#: guix-git/doc/guix.texi:31991 guix-git/doc/guix.texi:32007 -#: guix-git/doc/guix.texi:32071 guix-git/doc/guix.texi:32177 -#: guix-git/doc/guix.texi:32185 guix-git/doc/guix.texi:32193 -#: guix-git/doc/guix.texi:32218 guix-git/doc/guix.texi:32272 -#: guix-git/doc/guix.texi:32320 guix-git/doc/guix.texi:32521 -#: guix-git/doc/guix.texi:32528 +#: guix-git/doc/guix.texi:18366 guix-git/doc/guix.texi:18374 +#: guix-git/doc/guix.texi:18382 guix-git/doc/guix.texi:20074 +#: guix-git/doc/guix.texi:20150 guix-git/doc/guix.texi:20192 +#: guix-git/doc/guix.texi:20212 guix-git/doc/guix.texi:20218 +#: guix-git/doc/guix.texi:20234 guix-git/doc/guix.texi:20322 +#: guix-git/doc/guix.texi:20410 guix-git/doc/guix.texi:20723 +#: guix-git/doc/guix.texi:20736 guix-git/doc/guix.texi:21854 +#: guix-git/doc/guix.texi:23332 guix-git/doc/guix.texi:23438 +#: guix-git/doc/guix.texi:23503 guix-git/doc/guix.texi:23512 +#: guix-git/doc/guix.texi:24745 guix-git/doc/guix.texi:24789 +#: guix-git/doc/guix.texi:24806 guix-git/doc/guix.texi:24814 +#: guix-git/doc/guix.texi:24829 guix-git/doc/guix.texi:24847 +#: guix-git/doc/guix.texi:24871 guix-git/doc/guix.texi:24924 +#: guix-git/doc/guix.texi:25057 guix-git/doc/guix.texi:25091 +#: guix-git/doc/guix.texi:25127 guix-git/doc/guix.texi:25143 +#: guix-git/doc/guix.texi:25171 guix-git/doc/guix.texi:25232 +#: guix-git/doc/guix.texi:25315 guix-git/doc/guix.texi:28704 +#: guix-git/doc/guix.texi:28718 guix-git/doc/guix.texi:28740 +#: guix-git/doc/guix.texi:28859 guix-git/doc/guix.texi:28873 +#: guix-git/doc/guix.texi:28894 guix-git/doc/guix.texi:28915 +#: guix-git/doc/guix.texi:28922 guix-git/doc/guix.texi:28967 +#: guix-git/doc/guix.texi:28974 guix-git/doc/guix.texi:29763 +#: guix-git/doc/guix.texi:29777 guix-git/doc/guix.texi:29977 +#: guix-git/doc/guix.texi:30022 guix-git/doc/guix.texi:30109 +#: guix-git/doc/guix.texi:30311 guix-git/doc/guix.texi:30344 +#: guix-git/doc/guix.texi:30484 guix-git/doc/guix.texi:30495 +#: guix-git/doc/guix.texi:30746 guix-git/doc/guix.texi:32265 +#: guix-git/doc/guix.texi:32274 guix-git/doc/guix.texi:32282 +#: guix-git/doc/guix.texi:32290 guix-git/doc/guix.texi:32306 +#: guix-git/doc/guix.texi:32322 guix-git/doc/guix.texi:32330 +#: guix-git/doc/guix.texi:32338 guix-git/doc/guix.texi:32347 +#: guix-git/doc/guix.texi:32356 guix-git/doc/guix.texi:32372 +#: guix-git/doc/guix.texi:32436 guix-git/doc/guix.texi:32542 +#: guix-git/doc/guix.texi:32550 guix-git/doc/guix.texi:32558 +#: guix-git/doc/guix.texi:32583 guix-git/doc/guix.texi:32637 +#: guix-git/doc/guix.texi:32685 guix-git/doc/guix.texi:32886 +#: guix-git/doc/guix.texi:32893 msgid "Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18007 +#: guix-git/doc/guix.texi:18369 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean enable-logging?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18010 +#: guix-git/doc/guix.texi:18372 msgid "Whether to enable logging messages to syslog. It is disabled by default as it is rather verbose." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18015 +#: guix-git/doc/guix.texi:18377 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean debug?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18018 +#: guix-git/doc/guix.texi:18380 msgid "Whether to enable debug-level logging messages. This has no effect if logging is disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18023 +#: guix-git/doc/guix.texi:18385 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-string bootstrap-host" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18029 +#: guix-git/doc/guix.texi:18391 msgid "The node host name that is used to make the first connection to the network. A specific port value can be provided by appending the @code{:PORT} suffix. By default, it uses the Jami bootstrap nodes, but any host can be specified here. It's also possible to disable bootsrapping by setting this to the @code{'disabled} symbol." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18031 +#: guix-git/doc/guix.texi:18393 msgid "Defaults to @samp{\"bootstrap.jami.net:4222\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18034 +#: guix-git/doc/guix.texi:18396 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18037 +#: guix-git/doc/guix.texi:18399 msgid "The UDP port to bind to. When set to @code{'disabled}, an available port is automatically selected." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18039 +#: guix-git/doc/guix.texi:18401 msgid "Defaults to @samp{4222}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18042 +#: guix-git/doc/guix.texi:18404 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number proxy-server-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18044 +#: guix-git/doc/guix.texi:18406 msgid "Spawn a proxy server listening on the specified port." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18046 guix-git/doc/guix.texi:18053 -#: guix-git/doc/guix.texi:24391 guix-git/doc/guix.texi:24435 -#: guix-git/doc/guix.texi:24648 guix-git/doc/guix.texi:24704 -#: guix-git/doc/guix.texi:24878 guix-git/doc/guix.texi:24889 -#: guix-git/doc/guix.texi:24962 guix-git/doc/guix.texi:25687 -#: guix-git/doc/guix.texi:25730 guix-git/doc/guix.texi:25738 -#: guix-git/doc/guix.texi:25746 guix-git/doc/guix.texi:25754 -#: guix-git/doc/guix.texi:25763 guix-git/doc/guix.texi:25771 -#: guix-git/doc/guix.texi:25778 guix-git/doc/guix.texi:25786 -#: guix-git/doc/guix.texi:25794 guix-git/doc/guix.texi:25804 -#: guix-git/doc/guix.texi:25811 guix-git/doc/guix.texi:25835 -#: guix-git/doc/guix.texi:25843 guix-git/doc/guix.texi:25869 -#: guix-git/doc/guix.texi:25878 guix-git/doc/guix.texi:25887 -#: guix-git/doc/guix.texi:25896 guix-git/doc/guix.texi:25905 -#: guix-git/doc/guix.texi:25914 guix-git/doc/guix.texi:25922 -#: guix-git/doc/guix.texi:25930 guix-git/doc/guix.texi:25937 -#: guix-git/doc/guix.texi:25945 guix-git/doc/guix.texi:25952 -#: guix-git/doc/guix.texi:25960 guix-git/doc/guix.texi:25968 -#: guix-git/doc/guix.texi:25977 guix-git/doc/guix.texi:25986 -#: guix-git/doc/guix.texi:25994 guix-git/doc/guix.texi:26002 -#: guix-git/doc/guix.texi:26010 guix-git/doc/guix.texi:26021 -#: guix-git/doc/guix.texi:26031 guix-git/doc/guix.texi:26042 -#: guix-git/doc/guix.texi:26051 guix-git/doc/guix.texi:26061 -#: guix-git/doc/guix.texi:26069 guix-git/doc/guix.texi:26080 -#: guix-git/doc/guix.texi:26089 guix-git/doc/guix.texi:26099 -#: guix-git/doc/guix.texi:29339 guix-git/doc/guix.texi:29346 -#: guix-git/doc/guix.texi:29353 guix-git/doc/guix.texi:29360 -#: guix-git/doc/guix.texi:29367 guix-git/doc/guix.texi:29374 -#: guix-git/doc/guix.texi:29382 guix-git/doc/guix.texi:29390 -#: guix-git/doc/guix.texi:29397 guix-git/doc/guix.texi:29404 -#: guix-git/doc/guix.texi:29411 guix-git/doc/guix.texi:29418 -#: guix-git/doc/guix.texi:29448 guix-git/doc/guix.texi:29486 -#: guix-git/doc/guix.texi:29493 guix-git/doc/guix.texi:29502 -#: guix-git/doc/guix.texi:29524 guix-git/doc/guix.texi:29532 -#: guix-git/doc/guix.texi:29539 guix-git/doc/guix.texi:29694 -#: guix-git/doc/guix.texi:29714 guix-git/doc/guix.texi:29729 -#: guix-git/doc/guix.texi:29736 guix-git/doc/guix.texi:32473 -#: guix-git/doc/guix.texi:32481 guix-git/doc/guix.texi:32489 -#: guix-git/doc/guix.texi:32497 guix-git/doc/guix.texi:32505 -#: guix-git/doc/guix.texi:32513 +#: guix-git/doc/guix.texi:18408 guix-git/doc/guix.texi:18415 +#: guix-git/doc/guix.texi:24753 guix-git/doc/guix.texi:24797 +#: guix-git/doc/guix.texi:25010 guix-git/doc/guix.texi:25066 +#: guix-git/doc/guix.texi:25240 guix-git/doc/guix.texi:25251 +#: guix-git/doc/guix.texi:25324 guix-git/doc/guix.texi:26024 +#: guix-git/doc/guix.texi:26067 guix-git/doc/guix.texi:26075 +#: guix-git/doc/guix.texi:26083 guix-git/doc/guix.texi:26091 +#: guix-git/doc/guix.texi:26100 guix-git/doc/guix.texi:26108 +#: guix-git/doc/guix.texi:26115 guix-git/doc/guix.texi:26123 +#: guix-git/doc/guix.texi:26131 guix-git/doc/guix.texi:26141 +#: guix-git/doc/guix.texi:26148 guix-git/doc/guix.texi:26172 +#: guix-git/doc/guix.texi:26180 guix-git/doc/guix.texi:26206 +#: guix-git/doc/guix.texi:26215 guix-git/doc/guix.texi:26224 +#: guix-git/doc/guix.texi:26233 guix-git/doc/guix.texi:26242 +#: guix-git/doc/guix.texi:26251 guix-git/doc/guix.texi:26259 +#: guix-git/doc/guix.texi:26267 guix-git/doc/guix.texi:26274 +#: guix-git/doc/guix.texi:26282 guix-git/doc/guix.texi:26289 +#: guix-git/doc/guix.texi:26297 guix-git/doc/guix.texi:26305 +#: guix-git/doc/guix.texi:26314 guix-git/doc/guix.texi:26323 +#: guix-git/doc/guix.texi:26331 guix-git/doc/guix.texi:26339 +#: guix-git/doc/guix.texi:26347 guix-git/doc/guix.texi:26358 +#: guix-git/doc/guix.texi:26368 guix-git/doc/guix.texi:26379 +#: guix-git/doc/guix.texi:26388 guix-git/doc/guix.texi:26398 +#: guix-git/doc/guix.texi:26406 guix-git/doc/guix.texi:26417 +#: guix-git/doc/guix.texi:26426 guix-git/doc/guix.texi:26436 +#: guix-git/doc/guix.texi:29676 guix-git/doc/guix.texi:29683 +#: guix-git/doc/guix.texi:29690 guix-git/doc/guix.texi:29697 +#: guix-git/doc/guix.texi:29704 guix-git/doc/guix.texi:29711 +#: guix-git/doc/guix.texi:29719 guix-git/doc/guix.texi:29727 +#: guix-git/doc/guix.texi:29734 guix-git/doc/guix.texi:29741 +#: guix-git/doc/guix.texi:29748 guix-git/doc/guix.texi:29755 +#: guix-git/doc/guix.texi:29785 guix-git/doc/guix.texi:29823 +#: guix-git/doc/guix.texi:29830 guix-git/doc/guix.texi:29839 +#: guix-git/doc/guix.texi:29861 guix-git/doc/guix.texi:29869 +#: guix-git/doc/guix.texi:29876 guix-git/doc/guix.texi:29905 +#: guix-git/doc/guix.texi:29912 guix-git/doc/guix.texi:29919 +#: guix-git/doc/guix.texi:29926 guix-git/doc/guix.texi:30059 +#: guix-git/doc/guix.texi:30079 guix-git/doc/guix.texi:30094 +#: guix-git/doc/guix.texi:30101 guix-git/doc/guix.texi:32838 +#: guix-git/doc/guix.texi:32846 guix-git/doc/guix.texi:32854 +#: guix-git/doc/guix.texi:32862 guix-git/doc/guix.texi:32870 +#: guix-git/doc/guix.texi:32878 msgid "Defaults to @samp{disabled}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18049 +#: guix-git/doc/guix.texi:18411 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number proxy-server-port-tls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18051 +#: guix-git/doc/guix.texi:18413 msgid "Spawn a proxy server listening to TLS connections on the specified port." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18057 +#: guix-git/doc/guix.texi:18419 #, no-wrap msgid "Tor" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18058 +#: guix-git/doc/guix.texi:18420 #, no-wrap msgid "{Scheme Variable} tor-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18063 +#: guix-git/doc/guix.texi:18425 msgid "This is the type for a service that runs the @uref{https://torproject.org, Tor} anonymous networking daemon. The service is configured using a @code{} record. By default, the Tor daemon runs as the @code{tor} unprivileged user, which is a member of the @code{tor} group." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18066 +#: guix-git/doc/guix.texi:18428 #, no-wrap msgid "{Data Type} tor-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18068 +#: guix-git/doc/guix.texi:18430 #, no-wrap msgid "@code{tor} (default: @code{tor})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18073 +#: guix-git/doc/guix.texi:18435 msgid "The package that provides the Tor daemon. This package is expected to provide the daemon at @file{bin/tor} relative to its output directory. The default package is the @uref{https://www.torproject.org, Tor Project's} implementation." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18074 +#: guix-git/doc/guix.texi:18436 #, no-wrap msgid "@code{config-file} (default: @code{(plain-file \"empty\" \"\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18080 +#: guix-git/doc/guix.texi:18442 msgid "The configuration file to use. It will be appended to a default configuration file, and the final configuration file will be passed to @code{tor} via its @code{-f} option. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). See @code{man tor} for details on the configuration file syntax." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18081 +#: guix-git/doc/guix.texi:18443 #, no-wrap msgid "@code{hidden-services} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18087 +#: guix-git/doc/guix.texi:18449 msgid "The list of @code{} records to use. For any hidden service you include in this list, appropriate configuration to enable the hidden service will be automatically added to the default configuration file. You may conveniently create @code{} records using the @code{tor-hidden-service} procedure described below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18088 +#: guix-git/doc/guix.texi:18450 #, no-wrap msgid "@code{socks-socket-type} (default: @code{'tcp})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18095 +#: guix-git/doc/guix.texi:18457 msgid "The default socket type that Tor should use for its SOCKS socket. This must be either @code{'tcp} or @code{'unix}. If it is @code{'tcp}, then by default Tor will listen on TCP port 9050 on the loopback interface (i.e., localhost). If it is @code{'unix}, then Tor will listen on the UNIX domain socket @file{/var/run/tor/socks-sock}, which will be made writable by members of the @code{tor} group." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18100 +#: guix-git/doc/guix.texi:18462 msgid "If you want to customize the SOCKS socket in more detail, leave @code{socks-socket-type} at its default value of @code{'tcp} and use @code{config-file} to override the default by providing your own @code{SocksPort} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18101 +#: guix-git/doc/guix.texi:18463 #, no-wrap msgid "@code{control-socket?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18107 +#: guix-git/doc/guix.texi:18469 msgid "Whether or not to provide a ``control socket'' by which Tor can be controlled to, for instance, dynamically instantiate tor onion services. If @code{#t}, Tor will listen for control commands on the UNIX domain socket @file{/var/run/tor/control-sock}, which will be made writable by members of the @code{tor} group." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18111 +#: guix-git/doc/guix.texi:18473 #, no-wrap msgid "hidden service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18112 +#: guix-git/doc/guix.texi:18474 #, no-wrap msgid "{Scheme Procedure} tor-hidden-service @var{name} @var{mapping}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18115 +#: guix-git/doc/guix.texi:18477 msgid "Define a new Tor @dfn{hidden service} called @var{name} and implementing @var{mapping}. @var{mapping} is a list of port/host tuples, such as:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18119 +#: guix-git/doc/guix.texi:18481 #, no-wrap msgid "" " '((22 \"127.0.0.1:22\")\n" @@ -31771,43 +32385,43 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18123 +#: guix-git/doc/guix.texi:18485 msgid "In this example, port 22 of the hidden service is mapped to local port 22, and port 80 is mapped to local port 8080." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18127 +#: guix-git/doc/guix.texi:18489 msgid "This creates a @file{/var/lib/tor/hidden-services/@var{name}} directory, where the @file{hostname} file contains the @code{.onion} host name for the hidden service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18130 +#: guix-git/doc/guix.texi:18492 msgid "See @uref{https://www.torproject.org/docs/tor-hidden-service.html.en, the Tor project's documentation} for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18133 +#: guix-git/doc/guix.texi:18495 msgid "The @code{(gnu services rsync)} module provides the following services:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18137 +#: guix-git/doc/guix.texi:18499 msgid "You might want an rsync daemon if you have files that you want available so anyone (or just yourself) can download existing files or upload new files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18138 +#: guix-git/doc/guix.texi:18500 #, no-wrap msgid "{Scheme Variable} rsync-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18142 +#: guix-git/doc/guix.texi:18504 msgid "This is the service type for the @uref{https://rsync.samba.org, rsync} daemon, The value for this service type is a @command{rsync-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18155 +#: guix-git/doc/guix.texi:18517 #, no-wrap msgid "" ";; Export two directories over rsync. By default rsync listens on\n" @@ -31824,236 +32438,236 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18158 +#: guix-git/doc/guix.texi:18520 msgid "See below for details about @code{rsync-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18160 +#: guix-git/doc/guix.texi:18522 #, no-wrap msgid "{Data Type} rsync-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18162 +#: guix-git/doc/guix.texi:18524 msgid "Data type representing the configuration for @code{rsync-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18164 +#: guix-git/doc/guix.texi:18526 #, no-wrap msgid "@code{package} (default: @var{rsync})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18166 +#: guix-git/doc/guix.texi:18528 msgid "@code{rsync} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18167 guix-git/doc/guix.texi:31480 +#: guix-git/doc/guix.texi:18529 guix-git/doc/guix.texi:31845 #, no-wrap msgid "@code{address} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18170 +#: guix-git/doc/guix.texi:18532 msgid "IP address on which @command{rsync} listens for incoming connections. If unspecified, it defaults to listening on all available addresses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18171 +#: guix-git/doc/guix.texi:18533 #, no-wrap msgid "@code{port-number} (default: @code{873})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18175 +#: guix-git/doc/guix.texi:18537 msgid "TCP port on which @command{rsync} listens for incoming connections. If port is less than @code{1024} @command{rsync} needs to be started as the @code{root} user and group." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18176 +#: guix-git/doc/guix.texi:18538 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/rsyncd/rsyncd.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18178 +#: guix-git/doc/guix.texi:18540 msgid "Name of the file where @command{rsync} writes its PID." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18179 +#: guix-git/doc/guix.texi:18541 #, no-wrap msgid "@code{lock-file} (default: @code{\"/var/run/rsyncd/rsyncd.lock\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18181 +#: guix-git/doc/guix.texi:18543 msgid "Name of the file where @command{rsync} writes its lock file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18182 +#: guix-git/doc/guix.texi:18544 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/rsyncd.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18184 +#: guix-git/doc/guix.texi:18546 msgid "Name of the file where @command{rsync} writes its log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18185 guix-git/doc/guix.texi:35582 +#: guix-git/doc/guix.texi:18547 guix-git/doc/guix.texi:36062 #, no-wrap msgid "@code{user} (default: @code{\"root\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18187 +#: guix-git/doc/guix.texi:18549 msgid "Owner of the @code{rsync} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18188 +#: guix-git/doc/guix.texi:18550 #, no-wrap msgid "@code{group} (default: @code{\"root\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18190 +#: guix-git/doc/guix.texi:18552 msgid "Group of the @code{rsync} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18191 +#: guix-git/doc/guix.texi:18553 #, no-wrap msgid "@code{uid} (default: @code{\"rsyncd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18194 +#: guix-git/doc/guix.texi:18556 msgid "User name or user ID that file transfers to and from that module should take place as when the daemon was run as @code{root}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18195 +#: guix-git/doc/guix.texi:18557 #, no-wrap msgid "@code{gid} (default: @code{\"rsyncd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18197 guix-git/doc/guix.texi:18676 +#: guix-git/doc/guix.texi:18559 guix-git/doc/guix.texi:19038 msgid "Group name or group ID that will be used when accessing the module." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18198 guix-git/doc/guix.texi:36378 +#: guix-git/doc/guix.texi:18560 guix-git/doc/guix.texi:36868 #, no-wrap msgid "@code{modules} (default: @code{%default-modules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18201 +#: guix-git/doc/guix.texi:18563 msgid "List of ``modules''---i.e., directories exported over rsync. Each element must be a @code{rsync-module} record, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18204 +#: guix-git/doc/guix.texi:18566 #, no-wrap msgid "{Data Type} rsync-module" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18207 +#: guix-git/doc/guix.texi:18569 msgid "This is the data type for rsync ``modules''. A module is a directory exported over the rsync protocol. The available fields are as follows:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18213 +#: guix-git/doc/guix.texi:18575 msgid "The module name. This is the name that shows up in URLs. For example, if the module is called @code{music}, the corresponding URL will be @code{rsync://host.example.org/music}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18214 +#: guix-git/doc/guix.texi:18576 #, no-wrap msgid "file-name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18216 +#: guix-git/doc/guix.texi:18578 msgid "Name of the directory being exported." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18220 +#: guix-git/doc/guix.texi:18582 msgid "Comment associated with the module. Client user interfaces may display it when they obtain the list of available modules." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18221 +#: guix-git/doc/guix.texi:18583 #, no-wrap msgid "@code{read-only?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18225 +#: guix-git/doc/guix.texi:18587 msgid "Whether or not client will be able to upload files. If this is false, the uploads will be authorized if permissions on the daemon side permit it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18226 +#: guix-git/doc/guix.texi:18588 #, no-wrap msgid "@code{chroot?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18230 +#: guix-git/doc/guix.texi:18592 msgid "When this is true, the rsync daemon changes root to the module's directory before starting file transfers with the client. This improves security, but requires rsync to run as root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18231 +#: guix-git/doc/guix.texi:18593 #, no-wrap msgid "@code{timeout} (default: @code{300})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18234 +#: guix-git/doc/guix.texi:18596 msgid "Idle time in seconds after which the daemon closes a connection with the client." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18238 +#: guix-git/doc/guix.texi:18600 msgid "The @code{(gnu services syncthing)} module provides the following services:" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18238 +#: guix-git/doc/guix.texi:18600 #, no-wrap msgid "syncthing" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18243 +#: guix-git/doc/guix.texi:18605 msgid "You might want a syncthing daemon if you have files between two or more computers and want to sync them in real time, safely protected from prying eyes." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18244 +#: guix-git/doc/guix.texi:18606 #, no-wrap msgid "{Scheme Variable} syncthing-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18248 +#: guix-git/doc/guix.texi:18610 msgid "This is the service type for the @uref{https://syncthing.net/, syncthing} daemon, The value for this service type is a @command{syncthing-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18252 +#: guix-git/doc/guix.texi:18614 #, no-wrap msgid "" "(service syncthing-service-type\n" @@ -32061,160 +32675,160 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18255 +#: guix-git/doc/guix.texi:18617 msgid "See below for details about @code{syncthing-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18256 +#: guix-git/doc/guix.texi:18618 #, no-wrap msgid "{Data Type} syncthing-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18258 +#: guix-git/doc/guix.texi:18620 msgid "Data type representing the configuration for @code{syncthing-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18260 +#: guix-git/doc/guix.texi:18622 #, no-wrap msgid "@code{syncthing} (default: @var{syncthing})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18262 +#: guix-git/doc/guix.texi:18624 msgid "@code{syncthing} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18263 +#: guix-git/doc/guix.texi:18625 #, no-wrap msgid "@code{arguments} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18265 +#: guix-git/doc/guix.texi:18627 msgid "List of command-line arguments passing to @code{syncthing} binary." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18266 +#: guix-git/doc/guix.texi:18628 #, no-wrap msgid "@code{logflags} (default: @var{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18269 +#: guix-git/doc/guix.texi:18631 msgid "Sum of logging flags, see @uref{https://docs.syncthing.net/users/syncthing.html#cmdoption-logflags, Syncthing documentation logflags}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18270 +#: guix-git/doc/guix.texi:18632 #, no-wrap msgid "@code{user} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18273 +#: guix-git/doc/guix.texi:18635 msgid "The user as which the Syncthing service is to be run. This assumes that the specified user exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18274 +#: guix-git/doc/guix.texi:18636 #, no-wrap msgid "@code{group} (default: @var{\"users\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18277 +#: guix-git/doc/guix.texi:18639 msgid "The group as which the Syncthing service is to be run. This assumes that the specified group exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18278 +#: guix-git/doc/guix.texi:18640 #, no-wrap msgid "@code{home} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18281 +#: guix-git/doc/guix.texi:18643 msgid "Common configuration and data directory. The default configuration directory is @file{$HOME} of the specified Syncthing @code{user}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18287 +#: guix-git/doc/guix.texi:18649 msgid "Furthermore, @code{(gnu services ssh)} provides the following services." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18287 guix-git/doc/guix.texi:18326 -#: guix-git/doc/guix.texi:35715 +#: guix-git/doc/guix.texi:18649 guix-git/doc/guix.texi:18688 +#: guix-git/doc/guix.texi:36205 #, no-wrap msgid "SSH" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18288 guix-git/doc/guix.texi:18327 -#: guix-git/doc/guix.texi:35716 +#: guix-git/doc/guix.texi:18650 guix-git/doc/guix.texi:18689 +#: guix-git/doc/guix.texi:36206 #, no-wrap msgid "SSH server" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18290 +#: guix-git/doc/guix.texi:18652 #, no-wrap msgid "{Scheme Procedure} lsh-service [#:host-key \"/etc/lsh/host-key\"] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18299 +#: guix-git/doc/guix.texi:18661 msgid "[#:daemonic? #t] [#:interfaces '()] [#:port-number 22] @ [#:allow-empty-passwords? #f] [#:root-login? #f] @ [#:syslog-output? #t] [#:x11-forwarding? #t] @ [#:tcp/ip-forwarding? #t] [#:password-authentication? #t] @ [#:public-key-authentication? #t] [#:initialize? #t] Run the @command{lshd} program from @var{lsh} to listen on port @var{port-number}. @var{host-key} must designate a file containing the host key, and readable only by root." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18305 +#: guix-git/doc/guix.texi:18667 msgid "When @var{daemonic?} is true, @command{lshd} will detach from the controlling terminal and log its output to syslogd, unless one sets @var{syslog-output?} to false. Obviously, it also makes lsh-service depend on existence of syslogd service. When @var{pid-file?} is true, @command{lshd} writes its PID to the file called @var{pid-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18309 +#: guix-git/doc/guix.texi:18671 msgid "When @var{initialize?} is true, automatically create the seed and host key upon service activation if they do not exist yet. This may take long and require interaction." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18314 +#: guix-git/doc/guix.texi:18676 msgid "When @var{initialize?} is false, it is up to the user to initialize the randomness generator (@pxref{lsh-make-seed,,, lsh, LSH Manual}), and to create a key pair with the private key stored in file @var{host-key} (@pxref{lshd basics,,, lsh, LSH Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18318 +#: guix-git/doc/guix.texi:18680 msgid "When @var{interfaces} is empty, lshd listens for connections on all the network interfaces; otherwise, @var{interfaces} must be a list of host names or addresses." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18322 +#: guix-git/doc/guix.texi:18684 msgid "@var{allow-empty-passwords?} specifies whether to accept log-ins with empty passwords, and @var{root-login?} specifies whether to accept log-ins as root." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18324 +#: guix-git/doc/guix.texi:18686 msgid "The other options should be self-descriptive." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18328 +#: guix-git/doc/guix.texi:18690 #, no-wrap msgid "{Scheme Variable} openssh-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18332 +#: guix-git/doc/guix.texi:18694 msgid "This is the type for the @uref{http://www.openssh.org, OpenSSH} secure shell daemon, @command{sshd}. Its value must be an @code{openssh-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18341 +#: guix-git/doc/guix.texi:18703 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -32227,17 +32841,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18344 +#: guix-git/doc/guix.texi:18706 msgid "See below for details about @code{openssh-configuration}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18347 +#: guix-git/doc/guix.texi:18709 msgid "This service can be extended with extra authorized keys, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18352 +#: guix-git/doc/guix.texi:18714 #, no-wrap msgid "" "(service-extension openssh-service-type\n" @@ -32246,203 +32860,203 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18355 +#: guix-git/doc/guix.texi:18717 #, no-wrap msgid "{Data Type} openssh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18357 +#: guix-git/doc/guix.texi:18719 msgid "This is the configuration record for OpenSSH's @command{sshd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18359 +#: guix-git/doc/guix.texi:18721 #, no-wrap msgid "@code{openssh} (default @var{openssh})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18361 +#: guix-git/doc/guix.texi:18723 msgid "The Openssh package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18362 +#: guix-git/doc/guix.texi:18724 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/sshd.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18364 +#: guix-git/doc/guix.texi:18726 msgid "Name of the file where @command{sshd} writes its PID." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18365 +#: guix-git/doc/guix.texi:18727 #, no-wrap msgid "@code{port-number} (default: @code{22})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18367 +#: guix-git/doc/guix.texi:18729 msgid "TCP port on which @command{sshd} listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18368 +#: guix-git/doc/guix.texi:18730 #, no-wrap msgid "@code{permit-root-login} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18373 +#: guix-git/doc/guix.texi:18735 msgid "This field determines whether and when to allow logins as root. If @code{#f}, root logins are disallowed; if @code{#t}, they are allowed. If it's the symbol @code{'prohibit-password}, then root logins are permitted but not with password-based authentication." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18374 guix-git/doc/guix.texi:18535 +#: guix-git/doc/guix.texi:18736 guix-git/doc/guix.texi:18897 #, no-wrap msgid "@code{allow-empty-passwords?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18377 +#: guix-git/doc/guix.texi:18739 msgid "When true, users with empty passwords may log in. When false, they may not." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18378 guix-git/doc/guix.texi:18538 +#: guix-git/doc/guix.texi:18740 guix-git/doc/guix.texi:18900 #, no-wrap msgid "@code{password-authentication?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18381 +#: guix-git/doc/guix.texi:18743 msgid "When true, users may log in with their password. When false, they have other authentication methods." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18382 +#: guix-git/doc/guix.texi:18744 #, no-wrap msgid "@code{public-key-authentication?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18385 +#: guix-git/doc/guix.texi:18747 msgid "When true, users may log in using public key authentication. When false, users have to use other authentication method." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18388 +#: guix-git/doc/guix.texi:18750 msgid "Authorized public keys are stored in @file{~/.ssh/authorized_keys}. This is used only by protocol version 2." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18389 +#: guix-git/doc/guix.texi:18751 #, no-wrap msgid "@code{x11-forwarding?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18393 +#: guix-git/doc/guix.texi:18755 msgid "When true, forwarding of X11 graphical client connections is enabled---in other words, @command{ssh} options @option{-X} and @option{-Y} will work." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18394 +#: guix-git/doc/guix.texi:18756 #, no-wrap msgid "@code{allow-agent-forwarding?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18396 +#: guix-git/doc/guix.texi:18758 msgid "Whether to allow agent forwarding." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18397 +#: guix-git/doc/guix.texi:18759 #, no-wrap msgid "@code{allow-tcp-forwarding?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18399 +#: guix-git/doc/guix.texi:18761 msgid "Whether to allow TCP forwarding." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18400 +#: guix-git/doc/guix.texi:18762 #, no-wrap msgid "@code{gateway-ports?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18402 +#: guix-git/doc/guix.texi:18764 msgid "Whether to allow gateway ports." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18403 +#: guix-git/doc/guix.texi:18765 #, no-wrap msgid "@code{challenge-response-authentication?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18406 +#: guix-git/doc/guix.texi:18768 msgid "Specifies whether challenge response authentication is allowed (e.g.@: via PAM)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18407 +#: guix-git/doc/guix.texi:18769 #, no-wrap msgid "@code{use-pam?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18413 +#: guix-git/doc/guix.texi:18775 msgid "Enables the Pluggable Authentication Module interface. If set to @code{#t}, this will enable PAM authentication using @code{challenge-response-authentication?} and @code{password-authentication?}, in addition to PAM account and session module processing for all authentication types." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18418 +#: guix-git/doc/guix.texi:18780 msgid "Because PAM challenge response authentication usually serves an equivalent role to password authentication, you should disable either @code{challenge-response-authentication?} or @code{password-authentication?}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18419 +#: guix-git/doc/guix.texi:18781 #, no-wrap msgid "@code{print-last-log?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18422 +#: guix-git/doc/guix.texi:18784 msgid "Specifies whether @command{sshd} should print the date and time of the last user login when a user logs in interactively." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18423 +#: guix-git/doc/guix.texi:18785 #, no-wrap msgid "@code{subsystems} (default: @code{'((\"sftp\" \"internal-sftp\"))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18425 +#: guix-git/doc/guix.texi:18787 msgid "Configures external subsystems (e.g.@: file transfer daemon)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18429 +#: guix-git/doc/guix.texi:18791 msgid "This is a list of two-element lists, each of which containing the subsystem name and a command (with optional arguments) to execute upon subsystem request." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18432 +#: guix-git/doc/guix.texi:18794 msgid "The command @command{internal-sftp} implements an in-process SFTP server. Alternatively, one can specify the @command{sftp-server} command:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18437 +#: guix-git/doc/guix.texi:18799 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -32452,28 +33066,28 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18439 +#: guix-git/doc/guix.texi:18801 #, no-wrap msgid "@code{accepted-environment} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18441 +#: guix-git/doc/guix.texi:18803 msgid "List of strings describing which environment variables may be exported." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18444 +#: guix-git/doc/guix.texi:18806 msgid "Each string gets on its own line. See the @code{AcceptEnv} option in @code{man sshd_config}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18449 +#: guix-git/doc/guix.texi:18811 msgid "This example allows ssh-clients to export the @env{COLORTERM} variable. It is set by terminal emulators, which support colors. You can use it in your shell's resource file to enable colors for the prompt and commands if this variable is set." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18454 +#: guix-git/doc/guix.texi:18816 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -32482,30 +33096,30 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18456 +#: guix-git/doc/guix.texi:18818 #, no-wrap msgid "@code{authorized-keys} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18457 +#: guix-git/doc/guix.texi:18819 #, no-wrap msgid "authorized keys, SSH" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18458 +#: guix-git/doc/guix.texi:18820 #, no-wrap msgid "SSH authorized keys" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18462 +#: guix-git/doc/guix.texi:18824 msgid "This is the list of authorized keys. Each element of the list is a user name followed by one or more file-like objects that represent SSH public keys. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18469 +#: guix-git/doc/guix.texi:18831 #, no-wrap msgid "" "(openssh-configuration\n" @@ -32516,45 +33130,45 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18474 +#: guix-git/doc/guix.texi:18836 msgid "registers the specified public keys for user accounts @code{rekado}, @code{chris}, and @code{root}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18477 +#: guix-git/doc/guix.texi:18839 msgid "Additional authorized keys can be specified @i{via} @code{service-extension}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18480 +#: guix-git/doc/guix.texi:18842 msgid "Note that this does @emph{not} interfere with the use of @file{~/.ssh/authorized_keys}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18481 guix-git/doc/guix.texi:18912 +#: guix-git/doc/guix.texi:18843 guix-git/doc/guix.texi:19274 #, no-wrap msgid "@code{log-level} (default: @code{'info})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18485 +#: guix-git/doc/guix.texi:18847 msgid "This is a symbol specifying the logging level: @code{quiet}, @code{fatal}, @code{error}, @code{info}, @code{verbose}, @code{debug}, etc. See the man page for @file{sshd_config} for the full list of level names." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18486 guix-git/doc/guix.texi:21328 -#: guix-git/doc/guix.texi:26469 +#: guix-git/doc/guix.texi:18848 guix-git/doc/guix.texi:21690 +#: guix-git/doc/guix.texi:26806 #, no-wrap msgid "@code{extra-content} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18491 +#: guix-git/doc/guix.texi:18853 msgid "This field can be used to append arbitrary text to the configuration file. It is especially useful for elaborate configurations that cannot be expressed otherwise. This configuration, for example, would generally disable root logins, but permit them from one specific IP address:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18497 +#: guix-git/doc/guix.texi:18859 #, no-wrap msgid "" "(openssh-configuration\n" @@ -32564,23 +33178,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18502 +#: guix-git/doc/guix.texi:18864 #, no-wrap msgid "{Scheme Procedure} dropbear-service [@var{config}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18506 +#: guix-git/doc/guix.texi:18868 msgid "Run the @uref{https://matt.ucc.asn.au/dropbear/dropbear.html,Dropbear SSH daemon} with the given @var{config}, a @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18509 +#: guix-git/doc/guix.texi:18871 msgid "For example, to specify a Dropbear service listening on port 1234, add this call to the operating system's @code{services} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18513 +#: guix-git/doc/guix.texi:18875 #, no-wrap msgid "" "(dropbear-service (dropbear-configuration\n" @@ -32588,110 +33202,110 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18516 +#: guix-git/doc/guix.texi:18878 #, no-wrap msgid "{Data Type} dropbear-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18518 +#: guix-git/doc/guix.texi:18880 msgid "This data type represents the configuration of a Dropbear SSH daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18520 +#: guix-git/doc/guix.texi:18882 #, no-wrap msgid "@code{dropbear} (default: @var{dropbear})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18522 +#: guix-git/doc/guix.texi:18884 msgid "The Dropbear package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18523 +#: guix-git/doc/guix.texi:18885 #, no-wrap msgid "@code{port-number} (default: 22)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18525 +#: guix-git/doc/guix.texi:18887 msgid "The TCP port where the daemon waits for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18526 +#: guix-git/doc/guix.texi:18888 #, no-wrap msgid "@code{syslog-output?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18528 +#: guix-git/doc/guix.texi:18890 msgid "Whether to enable syslog output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18529 +#: guix-git/doc/guix.texi:18891 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/dropbear.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18531 +#: guix-git/doc/guix.texi:18893 msgid "File name of the daemon's PID file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18532 +#: guix-git/doc/guix.texi:18894 #, no-wrap msgid "@code{root-login?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18534 +#: guix-git/doc/guix.texi:18896 msgid "Whether to allow @code{root} logins." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18537 +#: guix-git/doc/guix.texi:18899 msgid "Whether to allow empty passwords." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18540 +#: guix-git/doc/guix.texi:18902 msgid "Whether to enable password-based authentication." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18543 +#: guix-git/doc/guix.texi:18905 #, no-wrap msgid "AutoSSH" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18544 +#: guix-git/doc/guix.texi:18906 #, no-wrap msgid "{Scheme Variable} autossh-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18552 +#: guix-git/doc/guix.texi:18914 msgid "This is the type for the @uref{https://www.harding.motd.ca/autossh, AutoSSH} program that runs a copy of @command{ssh} and monitors it, restarting it as necessary should it die or stop passing traffic. AutoSSH can be run manually from the command-line by passing arguments to the binary @command{autossh} from the package @code{autossh}, but it can also be run as a Guix service. This latter use case is documented here." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18556 +#: guix-git/doc/guix.texi:18918 msgid "AutoSSH can be used to forward local traffic to a remote machine using an SSH tunnel, and it respects the @file{~/.ssh/config} of the user it is run as." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18561 +#: guix-git/doc/guix.texi:18923 msgid "For example, to specify a service running autossh as the user @code{pino} and forwarding all local connections to port @code{8081} to @code{remote:8081} using an SSH tunnel, add this call to the operating system's @code{services} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18567 +#: guix-git/doc/guix.texi:18929 #, no-wrap msgid "" "(service autossh-service-type\n" @@ -32701,139 +33315,139 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18570 +#: guix-git/doc/guix.texi:18932 #, no-wrap msgid "{Data Type} autossh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18572 +#: guix-git/doc/guix.texi:18934 msgid "This data type represents the configuration of an AutoSSH service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18575 +#: guix-git/doc/guix.texi:18937 #, no-wrap msgid "@code{user} (default @code{\"autossh\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18578 +#: guix-git/doc/guix.texi:18940 msgid "The user as which the AutoSSH service is to be run. This assumes that the specified user exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18579 +#: guix-git/doc/guix.texi:18941 #, no-wrap msgid "@code{poll} (default @code{600})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18581 +#: guix-git/doc/guix.texi:18943 msgid "Specifies the connection poll time in seconds." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18582 +#: guix-git/doc/guix.texi:18944 #, no-wrap msgid "@code{first-poll} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18588 +#: guix-git/doc/guix.texi:18950 msgid "Specifies how many seconds AutoSSH waits before the first connection test. After this first test, polling is resumed at the pace defined in @code{poll}. When set to @code{#f}, the first poll is not treated specially and will also use the connection poll specified in @code{poll}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18589 +#: guix-git/doc/guix.texi:18951 #, no-wrap msgid "@code{gate-time} (default @code{30})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18592 +#: guix-git/doc/guix.texi:18954 msgid "Specifies how many seconds an SSH connection must be active before it is considered successful." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18593 +#: guix-git/doc/guix.texi:18955 #, no-wrap msgid "@code{log-level} (default @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18596 +#: guix-git/doc/guix.texi:18958 msgid "The log level, corresponding to the levels used by syslog---so @code{0} is the most silent while @code{7} is the chattiest." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18597 +#: guix-git/doc/guix.texi:18959 #, no-wrap msgid "@code{max-start} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18600 +#: guix-git/doc/guix.texi:18962 msgid "The maximum number of times SSH may be (re)started before AutoSSH exits. When set to @code{#f}, no maximum is configured and AutoSSH may restart indefinitely." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18601 +#: guix-git/doc/guix.texi:18963 #, no-wrap msgid "@code{message} (default @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18603 +#: guix-git/doc/guix.texi:18965 msgid "The message to append to the echo message sent when testing connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18604 +#: guix-git/doc/guix.texi:18966 #, no-wrap msgid "@code{port} (default @code{\"0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18614 +#: guix-git/doc/guix.texi:18976 msgid "The ports used for monitoring the connection. When set to @code{\"0\"}, monitoring is disabled. When set to @code{\"@var{n}\"} where @var{n} is a positive integer, ports @var{n} and @var{n}+1 are used for monitoring the connection, such that port @var{n} is the base monitoring port and @code{n+1} is the echo port. When set to @code{\"@var{n}:@var{m}\"} where @var{n} and @var{m} are positive integers, the ports @var{n} and @var{m} are used for monitoring the connection, such that port @var{n} is the base monitoring port and @var{m} is the echo port." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18615 +#: guix-git/doc/guix.texi:18977 #, no-wrap msgid "@code{ssh-options} (default @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18619 +#: guix-git/doc/guix.texi:18981 msgid "The list of command-line arguments to pass to @command{ssh} when it is run. Options @option{-f} and @option{-M} are reserved for AutoSSH and may cause undefined behaviour." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18623 +#: guix-git/doc/guix.texi:18985 #, no-wrap msgid "WebSSH" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18624 +#: guix-git/doc/guix.texi:18986 #, no-wrap msgid "{Scheme Variable} webssh-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18630 +#: guix-git/doc/guix.texi:18992 msgid "This is the type for the @uref{https://webssh.huashengdun.org/, WebSSH} program that runs a web SSH client. WebSSH can be run manually from the command-line by passing arguments to the binary @command{wssh} from the package @code{webssh}, but it can also be run as a Guix service. This latter use case is documented here." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18636 +#: guix-git/doc/guix.texi:18998 msgid "For example, to specify a service running WebSSH on loopback interface on port @code{8888} with reject policy with a list of allowed to connection hosts, and NGINX as a reverse-proxy to this service listening for HTTPS connection, add this call to the operating system's @code{services} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18644 +#: guix-git/doc/guix.texi:19006 #, no-wrap msgid "" "(service webssh-service-type\n" @@ -32846,7 +33460,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18660 +#: guix-git/doc/guix.texi:19022 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -32867,128 +33481,128 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18663 +#: guix-git/doc/guix.texi:19025 #, no-wrap msgid "{Data Type} webssh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18665 +#: guix-git/doc/guix.texi:19027 msgid "Data type representing the configuration for @code{webssh-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18667 +#: guix-git/doc/guix.texi:19029 #, no-wrap msgid "@code{package} (default: @var{webssh})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18669 +#: guix-git/doc/guix.texi:19031 msgid "@code{webssh} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18670 +#: guix-git/doc/guix.texi:19032 #, no-wrap msgid "@code{user-name} (default: @var{\"webssh\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18673 +#: guix-git/doc/guix.texi:19035 msgid "User name or user ID that file transfers to and from that module should take place." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18674 +#: guix-git/doc/guix.texi:19036 #, no-wrap msgid "@code{group-name} (default: @var{\"webssh\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18677 +#: guix-git/doc/guix.texi:19039 #, no-wrap msgid "@code{address} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18679 +#: guix-git/doc/guix.texi:19041 msgid "IP address on which @command{webssh} listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18680 +#: guix-git/doc/guix.texi:19042 #, no-wrap msgid "@code{port} (default: @var{8888})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18682 +#: guix-git/doc/guix.texi:19044 msgid "TCP port on which @command{webssh} listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18683 +#: guix-git/doc/guix.texi:19045 #, no-wrap msgid "@code{policy} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18685 +#: guix-git/doc/guix.texi:19047 msgid "Connection policy. @var{reject} policy requires to specify @var{known-hosts}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18686 +#: guix-git/doc/guix.texi:19048 #, no-wrap msgid "@code{known-hosts} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18688 +#: guix-git/doc/guix.texi:19050 msgid "List of hosts which allowed for SSH connection from @command{webssh}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18689 +#: guix-git/doc/guix.texi:19051 #, no-wrap msgid "@code{log-file} (default: @file{\"/var/log/webssh.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18691 +#: guix-git/doc/guix.texi:19053 msgid "Name of the file where @command{webssh} writes its log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18692 +#: guix-git/doc/guix.texi:19054 #, no-wrap msgid "@code{log-level} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18694 +#: guix-git/doc/guix.texi:19056 msgid "Logging level." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18698 +#: guix-git/doc/guix.texi:19060 #, no-wrap msgid "{Scheme Variable} %facebook-host-aliases" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18704 +#: guix-git/doc/guix.texi:19066 msgid "This variable contains a string for use in @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). Each line contains a entry that maps a known server name of the Facebook on-line service---e.g., @code{www.facebook.com}---to the local host---@code{127.0.0.1} or its IPv6 equivalent, @code{::1}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18708 +#: guix-git/doc/guix.texi:19070 msgid "This variable is typically used in the @code{hosts-file} field of an @code{operating-system} declaration (@pxref{operating-system Reference, @file{/etc/hosts}}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18721 +#: guix-git/doc/guix.texi:19083 #, no-wrap msgid "" "(operating-system\n" @@ -33003,176 +33617,176 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18725 +#: guix-git/doc/guix.texi:19087 msgid "This mechanism can prevent programs running locally, such as Web browsers, from accessing Facebook." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18728 +#: guix-git/doc/guix.texi:19090 msgid "The @code{(gnu services avahi)} provides the following definition." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18729 +#: guix-git/doc/guix.texi:19091 #, no-wrap msgid "{Scheme Variable} avahi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18734 +#: guix-git/doc/guix.texi:19096 msgid "This is the service that runs @command{avahi-daemon}, a system-wide mDNS/DNS-SD responder that allows for service discovery and ``zero-configuration'' host name lookups (see @uref{https://avahi.org/}). Its value must be an @code{avahi-configuration} record---see below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18739 +#: guix-git/doc/guix.texi:19101 msgid "This service extends the name service cache daemon (nscd) so that it can resolve @code{.local} host names using @uref{https://0pointer.de/lennart/projects/nss-mdns/, nss-mdns}. @xref{Name Service Switch}, for information on host name resolution." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18742 +#: guix-git/doc/guix.texi:19104 msgid "Additionally, add the @var{avahi} package to the system profile so that commands such as @command{avahi-browse} are directly usable." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18744 +#: guix-git/doc/guix.texi:19106 #, no-wrap msgid "{Data Type} avahi-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18746 +#: guix-git/doc/guix.texi:19108 msgid "Data type representation the configuration for Avahi." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18749 +#: guix-git/doc/guix.texi:19111 #, no-wrap msgid "@code{host-name} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18752 +#: guix-git/doc/guix.texi:19114 msgid "If different from @code{#f}, use that as the host name to publish for this machine; otherwise, use the machine's actual host name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18753 guix-git/doc/guix.texi:29132 +#: guix-git/doc/guix.texi:19115 guix-git/doc/guix.texi:29469 #, no-wrap msgid "@code{publish?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18756 +#: guix-git/doc/guix.texi:19118 msgid "When true, allow host names and services to be published (broadcast) over the network." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18757 +#: guix-git/doc/guix.texi:19119 #, no-wrap msgid "@code{publish-workstation?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18761 +#: guix-git/doc/guix.texi:19123 msgid "When true, @command{avahi-daemon} publishes the machine's host name and IP address via mDNS on the local network. To view the host names published on your local network, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18764 +#: guix-git/doc/guix.texi:19126 #, no-wrap msgid "avahi-browse _workstation._tcp\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18766 +#: guix-git/doc/guix.texi:19128 #, no-wrap msgid "@code{wide-area?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18768 +#: guix-git/doc/guix.texi:19130 msgid "When true, DNS-SD over unicast DNS is enabled." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18769 +#: guix-git/doc/guix.texi:19131 #, no-wrap msgid "@code{ipv4?} (default: @code{#t})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:18770 +#: guix-git/doc/guix.texi:19132 #, no-wrap msgid "@code{ipv6?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18772 +#: guix-git/doc/guix.texi:19134 msgid "These fields determine whether to use IPv4/IPv6 sockets." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18773 +#: guix-git/doc/guix.texi:19135 #, no-wrap msgid "@code{domains-to-browse} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18775 +#: guix-git/doc/guix.texi:19137 msgid "This is a list of domains to browse." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18778 +#: guix-git/doc/guix.texi:19140 #, no-wrap msgid "{Scheme Variable} openvswitch-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18782 +#: guix-git/doc/guix.texi:19144 msgid "This is the type of the @uref{https://www.openvswitch.org, Open vSwitch} service, whose value should be an @code{openvswitch-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18784 +#: guix-git/doc/guix.texi:19146 #, no-wrap msgid "{Data Type} openvswitch-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18788 +#: guix-git/doc/guix.texi:19150 msgid "Data type representing the configuration of Open vSwitch, a multilayer virtual switch which is designed to enable massive network automation through programmatic extension." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18790 +#: guix-git/doc/guix.texi:19152 #, no-wrap msgid "@code{package} (default: @var{openvswitch})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18792 +#: guix-git/doc/guix.texi:19154 msgid "Package object of the Open vSwitch." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18796 +#: guix-git/doc/guix.texi:19158 #, no-wrap msgid "{Scheme Variable} pagekite-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18801 +#: guix-git/doc/guix.texi:19163 msgid "This is the service type for the @uref{https://pagekite.net, PageKite} service, a tunneling solution for making localhost servers publicly visible, even from behind restrictive firewalls or NAT without forwarded ports. The value for this service type is a @code{pagekite-configuration} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18803 +#: guix-git/doc/guix.texi:19165 msgid "Here's an example exposing the local HTTP and SSH daemons:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18810 +#: guix-git/doc/guix.texi:19172 #, no-wrap msgid "" "(service pagekite-service-type\n" @@ -33183,110 +33797,110 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18813 +#: guix-git/doc/guix.texi:19175 #, no-wrap msgid "{Data Type} pagekite-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18815 +#: guix-git/doc/guix.texi:19177 msgid "Data type representing the configuration of PageKite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18817 +#: guix-git/doc/guix.texi:19179 #, no-wrap msgid "@code{package} (default: @var{pagekite})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18819 +#: guix-git/doc/guix.texi:19181 msgid "Package object of PageKite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18820 +#: guix-git/doc/guix.texi:19182 #, no-wrap msgid "@code{kitename} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18822 +#: guix-git/doc/guix.texi:19184 msgid "PageKite name for authenticating to the frontend server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18823 +#: guix-git/doc/guix.texi:19185 #, no-wrap msgid "@code{kitesecret} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18826 +#: guix-git/doc/guix.texi:19188 msgid "Shared secret for authenticating to the frontend server. You should probably put this inside @code{extra-file} instead." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18827 +#: guix-git/doc/guix.texi:19189 #, no-wrap msgid "@code{frontend} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18830 +#: guix-git/doc/guix.texi:19192 msgid "Connect to the named PageKite frontend server instead of the @uref{https://pagekite.net,,pagekite.net} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18831 +#: guix-git/doc/guix.texi:19193 #, no-wrap msgid "@code{kites} (default: @code{'(\"http:@@kitename:localhost:80:@@kitesecret\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18834 +#: guix-git/doc/guix.texi:19196 msgid "List of service kites to use. Exposes HTTP on port 80 by default. The format is @code{proto:kitename:host:port:secret}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18835 +#: guix-git/doc/guix.texi:19197 #, no-wrap msgid "@code{extra-file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18838 +#: guix-git/doc/guix.texi:19200 msgid "Extra configuration file to read, which you are expected to create manually. Use this to add additional options and manage shared secrets out-of-band." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18842 +#: guix-git/doc/guix.texi:19204 #, no-wrap msgid "{Scheme Variable} yggdrasil-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18846 +#: guix-git/doc/guix.texi:19208 msgid "The service type for connecting to the @uref{https://yggdrasil-network.github.io/, Yggdrasil network}, an early-stage implementation of a fully end-to-end encrypted IPv6 network." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:18853 +#: guix-git/doc/guix.texi:19215 msgid "Yggdrasil provides name-independent routing with cryptographically generated addresses. Static addressing means you can keep the same address as long as you want, even if you move to a new location, or generate a new address (by generating new keys) whenever you want. @uref{https://yggdrasil-network.github.io/2018/07/28/addressing.html}" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18857 +#: guix-git/doc/guix.texi:19219 msgid "Pass it a value of @code{yggdrasil-configuration} to connect it to public peers and/or local peers." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18861 +#: guix-git/doc/guix.texi:19223 msgid "Here is an example using public peers and a static address. The static signing and encryption keys are defined in @file{/etc/yggdrasil-private.conf} (the default value for @code{config-file})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18873 +#: guix-git/doc/guix.texi:19235 #, no-wrap msgid "" ";; part of the operating-system declaration\n" @@ -33302,7 +33916,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18880 +#: guix-git/doc/guix.texi:19242 #, no-wrap msgid "" "# sample content for /etc/yggdrasil-private.conf\n" @@ -33314,7 +33928,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18883 +#: guix-git/doc/guix.texi:19245 #, no-wrap msgid "" " # Your private encryption key. DO NOT share this with anyone!\n" @@ -33323,7 +33937,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18887 +#: guix-git/doc/guix.texi:19249 #, no-wrap msgid "" " # Your public signing key. You should not ordinarily need to share\n" @@ -33333,7 +33947,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18891 +#: guix-git/doc/guix.texi:19253 #, no-wrap msgid "" " # Your private signing key. DO NOT share this with anyone!\n" @@ -33342,124 +33956,124 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18894 +#: guix-git/doc/guix.texi:19256 #, no-wrap msgid "{Data Type} yggdrasil-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18896 +#: guix-git/doc/guix.texi:19258 msgid "Data type representing the configuration of Yggdrasil." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18898 +#: guix-git/doc/guix.texi:19260 #, no-wrap msgid "@code{package} (default: @code{yggdrasil})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18900 +#: guix-git/doc/guix.texi:19262 msgid "Package object of Yggdrasil." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18901 +#: guix-git/doc/guix.texi:19263 #, no-wrap msgid "@code{json-config} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18907 +#: guix-git/doc/guix.texi:19269 msgid "Contents of @file{/etc/yggdrasil.conf}. Will be merged with @file{/etc/yggdrasil-private.conf}. Note that these settings are stored in the Guix store, which is readable to all users. @strong{Do not store your private keys in it}. See the output of @code{yggdrasil -genconf} for a quick overview of valid keys and their default values." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18908 +#: guix-git/doc/guix.texi:19270 #, no-wrap msgid "@code{autoconf?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18911 +#: guix-git/doc/guix.texi:19273 msgid "Whether to use automatic mode. Enabling it makes Yggdrasil use adynamic IP and peer with IPv6 neighbors." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18914 +#: guix-git/doc/guix.texi:19276 msgid "How much detail to include in logs. Use @code{'debug} for more detail." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18915 +#: guix-git/doc/guix.texi:19277 #, no-wrap msgid "@code{log-to} (default: @code{'stdout})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18919 +#: guix-git/doc/guix.texi:19281 msgid "Where to send logs. By default, the service logs standard output to @file{/var/log/yggdrasil.log}. The alternative is @code{'syslog}, which sends output to the running syslog service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18920 +#: guix-git/doc/guix.texi:19282 #, no-wrap msgid "@code{config-file} (default: @code{\"/etc/yggdrasil-private.conf\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18927 +#: guix-git/doc/guix.texi:19289 msgid "What HJSON file to load sensitive data from. This is where private keys should be stored, which are necessary to specify if you don't want a randomized address after each restart. Use @code{#f} to disable. Options defined in this file take precedence over @code{json-config}. Use the output of @code{yggdrasil -genconf} as a starting point. To configure a static address, delete everything except these options:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18929 +#: guix-git/doc/guix.texi:19291 #, no-wrap msgid "EncryptionPublicKey" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18930 +#: guix-git/doc/guix.texi:19292 #, no-wrap msgid "EncryptionPrivateKey" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18931 +#: guix-git/doc/guix.texi:19293 #, no-wrap msgid "SigningPublicKey" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18932 +#: guix-git/doc/guix.texi:19294 #, no-wrap msgid "SigningPrivateKey" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18937 +#: guix-git/doc/guix.texi:19299 #, no-wrap msgid "IPFS" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18938 +#: guix-git/doc/guix.texi:19300 #, no-wrap msgid "{Scheme Variable} ipfs-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18942 +#: guix-git/doc/guix.texi:19304 msgid "The service type for connecting to the @uref{https://ipfs.io,IPFS network}, a global, versioned, peer-to-peer file system. Pass it a @code{ipfs-configuration} to change the ports used for the gateway and API." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18944 +#: guix-git/doc/guix.texi:19306 msgid "Here's an example configuration, using some non-standard ports:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18950 +#: guix-git/doc/guix.texi:19312 #, no-wrap msgid "" "(service ipfs-service-type\n" @@ -33469,68 +34083,68 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18953 +#: guix-git/doc/guix.texi:19315 #, no-wrap msgid "{Data Type} ipfs-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18955 +#: guix-git/doc/guix.texi:19317 msgid "Data type representing the configuration of IPFS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18957 +#: guix-git/doc/guix.texi:19319 #, no-wrap msgid "@code{package} (default: @code{go-ipfs})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18959 +#: guix-git/doc/guix.texi:19321 msgid "Package object of IPFS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18960 +#: guix-git/doc/guix.texi:19322 #, no-wrap msgid "@code{gateway} (default: @code{\"/ip4/127.0.0.1/tcp/8082\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18962 +#: guix-git/doc/guix.texi:19324 msgid "Address of the gateway, in ‘multiaddress’ format." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18963 +#: guix-git/doc/guix.texi:19325 #, no-wrap msgid "@code{api} (default: @code{\"/ip4/127.0.0.1/tcp/5001\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18965 +#: guix-git/doc/guix.texi:19327 msgid "Address of the API endpoint, in ‘multiaddress’ format." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18968 +#: guix-git/doc/guix.texi:19330 #, no-wrap msgid "keepalived" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18969 +#: guix-git/doc/guix.texi:19331 #, no-wrap msgid "{Scheme Variable} keepalived-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18974 +#: guix-git/doc/guix.texi:19336 msgid "This is the type for the @uref{https://www.keepalived.org/, Keepalived} routing software, @command{keepalived}. Its value must be an @code{keepalived-configuration} record as in this example for master machine:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18979 +#: guix-git/doc/guix.texi:19341 #, no-wrap msgid "" "(service keepalived-service-type\n" @@ -33539,12 +34153,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18982 +#: guix-git/doc/guix.texi:19344 msgid "where @file{keepalived-master.conf}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18994 +#: guix-git/doc/guix.texi:19356 #, no-wrap msgid "" "vrrp_instance my-group @{\n" @@ -33560,12 +34174,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18997 +#: guix-git/doc/guix.texi:19359 msgid "and for backup machine:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19002 +#: guix-git/doc/guix.texi:19364 #, no-wrap msgid "" "(service keepalived-service-type\n" @@ -33574,12 +34188,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19005 +#: guix-git/doc/guix.texi:19367 msgid "where @file{keepalived-backup.conf}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:19017 +#: guix-git/doc/guix.texi:19379 #, no-wrap msgid "" "vrrp_instance my-group @{\n" @@ -33595,135 +34209,135 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19023 +#: guix-git/doc/guix.texi:19385 #, no-wrap msgid "unattended upgrades" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19024 +#: guix-git/doc/guix.texi:19386 #, no-wrap msgid "upgrades, unattended" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19029 +#: guix-git/doc/guix.texi:19391 msgid "Guix provides a service to perform @emph{unattended upgrades}: periodically, the system automatically reconfigures itself from the latest Guix. Guix System has several properties that make unattended upgrades safe:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19034 +#: guix-git/doc/guix.texi:19396 msgid "upgrades are transactional (either the upgrade succeeds or it fails, but you cannot end up with an ``in-between'' system state);" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19038 +#: guix-git/doc/guix.texi:19400 msgid "the upgrade log is kept---you can view it with @command{guix system list-generations}---and you can roll back to any previous generation, should the upgraded system fail to behave as intended;" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19041 +#: guix-git/doc/guix.texi:19403 msgid "channel code is authenticated so you know you can only run genuine code (@pxref{Channels});" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19044 +#: guix-git/doc/guix.texi:19406 msgid "@command{guix system reconfigure} prevents downgrades, which makes it immune to @dfn{downgrade attacks}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19049 +#: guix-git/doc/guix.texi:19411 msgid "To set up unattended upgrades, add an instance of @code{unattended-upgrade-service-type} like the one below to the list of your operating system services:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19052 +#: guix-git/doc/guix.texi:19414 #, no-wrap msgid "(service unattended-upgrade-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19059 +#: guix-git/doc/guix.texi:19421 msgid "The defaults above set up weekly upgrades: every Sunday at midnight. You do not need to provide the operating system configuration file: it uses @file{/run/current-system/configuration.scm}, which ensures it always uses your latest configuration---@pxref{provenance-service-type}, for more information about this file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19065 +#: guix-git/doc/guix.texi:19427 msgid "There are several things that can be configured, in particular the periodicity and services (daemons) to be restarted upon completion. When the upgrade is successful, the service takes care of deleting system generations older that some threshold, as per @command{guix system delete-generations}. See the reference below for details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19069 +#: guix-git/doc/guix.texi:19431 msgid "To ensure that upgrades are actually happening, you can run @command{guix system describe}. To investigate upgrade failures, visit the unattended upgrade log file (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19070 +#: guix-git/doc/guix.texi:19432 #, no-wrap msgid "{Scheme Variable} unattended-upgrade-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19074 +#: guix-git/doc/guix.texi:19436 msgid "This is the service type for unattended upgrades. It sets up an mcron job (@pxref{Scheduled Job Execution}) that runs @command{guix system reconfigure} from the latest version of the specified channels." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19077 +#: guix-git/doc/guix.texi:19439 msgid "Its value must be a @code{unattended-upgrade-configuration} record (see below)." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19079 +#: guix-git/doc/guix.texi:19441 #, no-wrap msgid "{Data Type} unattended-upgrade-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19082 +#: guix-git/doc/guix.texi:19444 msgid "This data type represents the configuration of the unattended upgrade service. The following fields are available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19084 +#: guix-git/doc/guix.texi:19446 #, no-wrap msgid "@code{schedule} (default: @code{\"30 01 * * 0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19088 +#: guix-git/doc/guix.texi:19450 msgid "This is the schedule of upgrades, expressed as a gexp containing an mcron job schedule (@pxref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19089 +#: guix-git/doc/guix.texi:19451 #, no-wrap msgid "@code{channels} (default: @code{#~%default-channels})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19093 +#: guix-git/doc/guix.texi:19455 msgid "This gexp specifies the channels to use for the upgrade (@pxref{Channels}). By default, the tip of the official @code{guix} channel is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19094 +#: guix-git/doc/guix.texi:19456 #, no-wrap msgid "@code{operating-system-file} (default: @code{\"/run/current-system/configuration.scm\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19097 +#: guix-git/doc/guix.texi:19459 msgid "This field specifies the operating system configuration file to use. The default is to reuse the config file of the current configuration." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19103 +#: guix-git/doc/guix.texi:19465 msgid "There are cases, though, where referring to @file{/run/current-system/configuration.scm} is not enough, for instance because that file refers to extra files (SSH public keys, extra configuration files, etc.) @i{via} @code{local-file} and similar constructs. For those cases, we recommend something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19109 +#: guix-git/doc/guix.texi:19471 #, no-wrap msgid "" "(unattended-upgrade-configuration\n" @@ -33733,312 +34347,312 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19116 +#: guix-git/doc/guix.texi:19478 msgid "The effect here is to import all of the current directory into the store, and to refer to @file{config.scm} within that directory. Therefore, uses of @code{local-file} within @file{config.scm} will work as expected. @xref{G-Expressions}, for information about @code{local-file} and @code{file-append}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19117 +#: guix-git/doc/guix.texi:19479 #, no-wrap msgid "@code{services-to-restart} (default: @code{'(mcron)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19120 +#: guix-git/doc/guix.texi:19482 msgid "This field specifies the Shepherd services to restart when the upgrade completes." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19127 +#: guix-git/doc/guix.texi:19489 msgid "Those services are restarted right away upon completion, as with @command{herd restart}, which ensures that the latest version is running---remember that by default @command{guix system reconfigure} only restarts services that are not currently running, which is conservative: it minimizes disruption but leaves outdated services running." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19131 +#: guix-git/doc/guix.texi:19493 msgid "Use @command{herd status} to find out candidates for restarting. @xref{Services}, for general information about services. Common services to restart would include @code{ntpd} and @code{ssh-daemon}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19134 +#: guix-git/doc/guix.texi:19496 msgid "By default, the @code{mcron} service is restarted. This ensures that the latest version of the unattended upgrade job will be used next time." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19135 +#: guix-git/doc/guix.texi:19497 #, no-wrap msgid "@code{system-expiration} (default: @code{(* 3 30 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19139 +#: guix-git/doc/guix.texi:19501 msgid "This is the expiration time in seconds for system generations. System generations older that this amount of time are deleted with @command{guix system delete-generations} when an upgrade completes." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:19144 +#: guix-git/doc/guix.texi:19506 msgid "The unattended upgrade service does not run the garbage collector. You will probably want to set up your own mcron job to run @command{guix gc} periodically." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19146 +#: guix-git/doc/guix.texi:19508 #, no-wrap msgid "@code{maximum-duration} (default: @code{3600})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19149 +#: guix-git/doc/guix.texi:19511 msgid "Maximum duration in seconds for the upgrade; past that time, the upgrade aborts." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19152 +#: guix-git/doc/guix.texi:19514 msgid "This is primarily useful to ensure the upgrade does not end up rebuilding or re-downloading ``the world''." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19153 +#: guix-git/doc/guix.texi:19515 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/unattended-upgrade.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19155 +#: guix-git/doc/guix.texi:19517 msgid "File where unattended upgrades are logged." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19161 +#: guix-git/doc/guix.texi:19523 #, no-wrap msgid "X11" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19162 +#: guix-git/doc/guix.texi:19524 #, no-wrap msgid "X Window System" msgstr "X-ikkunointijärjestelmä" #. type: cindex -#: guix-git/doc/guix.texi:19163 guix-git/doc/guix.texi:19436 +#: guix-git/doc/guix.texi:19525 guix-git/doc/guix.texi:19798 #, no-wrap msgid "login manager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19168 +#: guix-git/doc/guix.texi:19530 msgid "Support for the X Window graphical display system---specifically Xorg---is provided by the @code{(gnu services xorg)} module. Note that there is no @code{xorg-service} procedure. Instead, the X server is started by the @dfn{login manager}, by default the GNOME Display Manager (GDM)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19169 +#: guix-git/doc/guix.texi:19531 #, no-wrap msgid "GDM" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19170 +#: guix-git/doc/guix.texi:19532 #, no-wrap msgid "GNOME, login manager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19174 +#: guix-git/doc/guix.texi:19536 msgid "GDM of course allows users to log in into window managers and desktop environments other than GNOME; for those using GNOME, GDM is required for features such as automatic screen locking." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19175 +#: guix-git/doc/guix.texi:19537 #, no-wrap msgid "window manager" msgstr "Ikkunahallitsija" #. type: Plain text -#: guix-git/doc/guix.texi:19180 +#: guix-git/doc/guix.texi:19542 msgid "To use X11, you must install at least one @dfn{window manager}---for example the @code{windowmaker} or @code{openbox} packages---preferably by adding it to the @code{packages} field of your operating system definition (@pxref{operating-system Reference, system-wide packages})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:19186 +#: guix-git/doc/guix.texi:19548 msgid "wayland-gdm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19186 +#: guix-git/doc/guix.texi:19548 msgid "GDM also supports Wayland: it can itself use Wayland instead of X11 for its user interface, and it can also start Wayland sessions. The former is required for the latter, to enable, set @code{wayland?} to @code{#t} in @code{gdm-configuration}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19187 +#: guix-git/doc/guix.texi:19549 #, no-wrap msgid "{Scheme Variable} gdm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19192 +#: guix-git/doc/guix.texi:19554 msgid "This is the type for the @uref{https://wiki.gnome.org/Projects/GDM/, GNOME Desktop Manager} (GDM), a program that manages graphical display servers and handles graphical user logins. Its value must be a @code{gdm-configuration} (see below)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19193 +#: guix-git/doc/guix.texi:19555 #, no-wrap msgid "session types" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19201 +#: guix-git/doc/guix.texi:19563 msgid "GDM looks for @dfn{session types} described by the @file{.desktop} files in @file{/run/current-system/profile/share/xsessions} (for X11 sessions) and @file{/run/current-system/profile/share/wayland-sessions} (for Wayland sessions) and allows users to choose a session from the log-in screen. Packages such as @code{gnome}, @code{xfce}, @code{i3} and @code{sway} provide @file{.desktop} files; adding them to the system-wide set of packages automatically makes them available at the log-in screen." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19205 +#: guix-git/doc/guix.texi:19567 msgid "In addition, @file{~/.xsession} files are honored. When available, @file{~/.xsession} must be an executable that starts a window manager and/or other X clients." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19207 +#: guix-git/doc/guix.texi:19569 #, no-wrap msgid "{Data Type} gdm-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19209 guix-git/doc/guix.texi:19291 +#: guix-git/doc/guix.texi:19571 guix-git/doc/guix.texi:19653 #, no-wrap msgid "@code{auto-login?} (default: @code{#f})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:19210 +#: guix-git/doc/guix.texi:19572 #, no-wrap msgid "@code{default-user} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19212 +#: guix-git/doc/guix.texi:19574 msgid "When @code{auto-login?} is false, GDM presents a log-in screen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19215 +#: guix-git/doc/guix.texi:19577 msgid "When @code{auto-login?} is true, GDM logs in directly as @code{default-user}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19216 guix-git/doc/guix.texi:25077 -#: guix-git/doc/guix.texi:26786 guix-git/doc/guix.texi:31266 -#: guix-git/doc/guix.texi:31295 guix-git/doc/guix.texi:31324 -#: guix-git/doc/guix.texi:31351 guix-git/doc/guix.texi:31406 -#: guix-git/doc/guix.texi:31431 guix-git/doc/guix.texi:31458 -#: guix-git/doc/guix.texi:31484 guix-git/doc/guix.texi:31526 +#: guix-git/doc/guix.texi:19578 guix-git/doc/guix.texi:25439 +#: guix-git/doc/guix.texi:27123 guix-git/doc/guix.texi:31631 +#: guix-git/doc/guix.texi:31660 guix-git/doc/guix.texi:31689 +#: guix-git/doc/guix.texi:31716 guix-git/doc/guix.texi:31771 +#: guix-git/doc/guix.texi:31796 guix-git/doc/guix.texi:31823 +#: guix-git/doc/guix.texi:31849 guix-git/doc/guix.texi:31891 #, no-wrap msgid "@code{debug?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19218 +#: guix-git/doc/guix.texi:19580 msgid "When true, GDM writes debug messages to its log." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19219 +#: guix-git/doc/guix.texi:19581 #, no-wrap msgid "@code{gnome-shell-assets} (default: ...)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19221 +#: guix-git/doc/guix.texi:19583 msgid "List of GNOME Shell assets needed by GDM: icon theme, fonts, etc." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19222 +#: guix-git/doc/guix.texi:19584 #, no-wrap msgid "@code{xorg-configuration} (default: @code{(xorg-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19224 guix-git/doc/guix.texi:19318 -#: guix-git/doc/guix.texi:19402 +#: guix-git/doc/guix.texi:19586 guix-git/doc/guix.texi:19680 +#: guix-git/doc/guix.texi:19764 msgid "Configuration of the Xorg graphical server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19225 +#: guix-git/doc/guix.texi:19587 #, no-wrap msgid "@code{xsession} (default: @code{(xinitrc)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19227 guix-git/doc/guix.texi:19417 +#: guix-git/doc/guix.texi:19589 guix-git/doc/guix.texi:19779 msgid "Script to run before starting a X session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19228 +#: guix-git/doc/guix.texi:19590 #, no-wrap msgid "@code{dbus-daemon} (default: @code{dbus-daemon-wrapper})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19230 +#: guix-git/doc/guix.texi:19592 msgid "File name of the @code{dbus-daemon} executable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19231 +#: guix-git/doc/guix.texi:19593 #, no-wrap msgid "@code{gdm} (default: @code{gdm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19233 +#: guix-git/doc/guix.texi:19595 msgid "The GDM package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19234 +#: guix-git/doc/guix.texi:19596 #, no-wrap msgid "@code{wayland?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19236 +#: guix-git/doc/guix.texi:19598 msgid "When true, enables Wayland in GDM, necessary to use Wayland sessions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19237 +#: guix-git/doc/guix.texi:19599 #, no-wrap msgid "@code{wayland-session} (default: @code{gdm-wayland-session-wrapper})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19240 +#: guix-git/doc/guix.texi:19602 msgid "The Wayland session wrapper to use, needed to setup the environment." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19243 +#: guix-git/doc/guix.texi:19605 #, no-wrap msgid "{Scheme Variable} slim-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19245 +#: guix-git/doc/guix.texi:19607 msgid "This is the type for the SLiM graphical login manager for X11." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19249 +#: guix-git/doc/guix.texi:19611 msgid "Like GDM, SLiM looks for session types described by @file{.desktop} files and allows users to choose a session from the log-in screen using @kbd{F1}. It also honors @file{~/.xsession} files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19256 +#: guix-git/doc/guix.texi:19618 msgid "Unlike GDM, SLiM does not spawn the user session on a different VT after logging in, which means that you can only start one graphical session. If you want to be able to run multiple graphical sessions at the same time you have to add multiple SLiM services to your system services. The following example shows how to replace the default GDM service with two SLiM services on tty7 and tty8." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19261 +#: guix-git/doc/guix.texi:19623 #, no-wrap msgid "" "(use-modules (gnu services)\n" @@ -34048,7 +34662,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19272 +#: guix-git/doc/guix.texi:19634 #, no-wrap msgid "" "(operating-system\n" @@ -34064,491 +34678,491 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19276 +#: guix-git/doc/guix.texi:19638 #, no-wrap msgid "{Data Type} slim-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19278 +#: guix-git/doc/guix.texi:19640 msgid "Data type representing the configuration of @code{slim-service-type}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19282 +#: guix-git/doc/guix.texi:19644 msgid "Whether to allow logins with empty passwords." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19283 +#: guix-git/doc/guix.texi:19645 #, no-wrap msgid "@code{gnupg?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19290 +#: guix-git/doc/guix.texi:19652 msgid "If enabled, @code{pam-gnupg} will attempt to automatically unlock the user's GPG keys with the login password via @code{gpg-agent}. The keygrips of all keys to be unlocked should be written to @file{~/.pam-gnupg}, and can be queried with @code{gpg -K --with-keygrip}. Presetting passphrases must be enabled by adding @code{allow-preset-passphrase} in @file{~/.gnupg/gpg-agent.conf}." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:19292 +#: guix-git/doc/guix.texi:19654 #, no-wrap msgid "@code{default-user} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19294 +#: guix-git/doc/guix.texi:19656 msgid "When @code{auto-login?} is false, SLiM presents a log-in screen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19297 +#: guix-git/doc/guix.texi:19659 msgid "When @code{auto-login?} is true, SLiM logs in directly as @code{default-user}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19298 +#: guix-git/doc/guix.texi:19660 #, no-wrap msgid "@code{theme} (default: @code{%default-slim-theme})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:19299 +#: guix-git/doc/guix.texi:19661 #, no-wrap msgid "@code{theme-name} (default: @code{%default-slim-theme-name})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19301 +#: guix-git/doc/guix.texi:19663 msgid "The graphical theme to use and its name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19302 +#: guix-git/doc/guix.texi:19664 #, no-wrap msgid "@code{auto-login-session} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19305 +#: guix-git/doc/guix.texi:19667 msgid "If true, this must be the name of the executable to start as the default session---e.g., @code{(file-append windowmaker \"/bin/windowmaker\")}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19309 +#: guix-git/doc/guix.texi:19671 msgid "If false, a session described by one of the available @file{.desktop} files in @code{/run/current-system/profile} and @code{~/.guix-profile} will be used." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:19314 +#: guix-git/doc/guix.texi:19676 msgid "You must install at least one window manager in the system profile or in your user profile. Failing to do that, if @code{auto-login-session} is false, you will be unable to log in." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19316 guix-git/doc/guix.texi:19400 +#: guix-git/doc/guix.texi:19678 guix-git/doc/guix.texi:19762 #, no-wrap msgid "@code{xorg-configuration} (default @code{(xorg-configuration)})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19319 +#: guix-git/doc/guix.texi:19681 #, no-wrap msgid "@code{display} (default @code{\":0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19321 +#: guix-git/doc/guix.texi:19683 msgid "The display on which to start the Xorg graphical server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19322 +#: guix-git/doc/guix.texi:19684 #, no-wrap msgid "@code{vt} (default @code{\"vt7\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19324 +#: guix-git/doc/guix.texi:19686 msgid "The VT on which to start the Xorg graphical server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19325 +#: guix-git/doc/guix.texi:19687 #, no-wrap msgid "@code{xauth} (default: @code{xauth})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19327 +#: guix-git/doc/guix.texi:19689 msgid "The XAuth package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19328 +#: guix-git/doc/guix.texi:19690 #, no-wrap msgid "@code{shepherd} (default: @code{shepherd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19331 +#: guix-git/doc/guix.texi:19693 msgid "The Shepherd package used when invoking @command{halt} and @command{reboot}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19332 +#: guix-git/doc/guix.texi:19694 #, no-wrap msgid "@code{sessreg} (default: @code{sessreg})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19334 +#: guix-git/doc/guix.texi:19696 msgid "The sessreg package used in order to register the session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19335 +#: guix-git/doc/guix.texi:19697 #, no-wrap msgid "@code{slim} (default: @code{slim})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19337 +#: guix-git/doc/guix.texi:19699 msgid "The SLiM package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19340 +#: guix-git/doc/guix.texi:19702 #, no-wrap msgid "{Scheme Variable} %default-theme" msgstr "" #. type: defvrx -#: guix-git/doc/guix.texi:19341 +#: guix-git/doc/guix.texi:19703 #, no-wrap msgid "{Scheme Variable} %default-theme-name" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19343 +#: guix-git/doc/guix.texi:19705 msgid "The default SLiM theme and its name." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19346 guix-git/doc/guix.texi:19453 +#: guix-git/doc/guix.texi:19708 guix-git/doc/guix.texi:19815 #, no-wrap msgid "{Data Type} sddm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19348 +#: guix-git/doc/guix.texi:19710 msgid "This is the data type representing the SDDM service configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19350 +#: guix-git/doc/guix.texi:19712 #, no-wrap msgid "@code{display-server} (default: \"x11\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19353 +#: guix-git/doc/guix.texi:19715 msgid "Select display server to use for the greeter. Valid values are @samp{\"x11\"} or @samp{\"wayland\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19354 +#: guix-git/doc/guix.texi:19716 #, no-wrap msgid "@code{numlock} (default: \"on\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19356 +#: guix-git/doc/guix.texi:19718 msgid "Valid values are @samp{\"on\"}, @samp{\"off\"} or @samp{\"none\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19357 +#: guix-git/doc/guix.texi:19719 #, no-wrap msgid "@code{halt-command} (default @code{#~(string-apppend #$shepherd \"/sbin/halt\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19359 +#: guix-git/doc/guix.texi:19721 msgid "Command to run when halting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19360 +#: guix-git/doc/guix.texi:19722 #, no-wrap msgid "@code{reboot-command} (default @code{#~(string-append #$shepherd \"/sbin/reboot\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19362 +#: guix-git/doc/guix.texi:19724 msgid "Command to run when rebooting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19363 +#: guix-git/doc/guix.texi:19725 #, no-wrap msgid "@code{theme} (default \"maldives\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19366 +#: guix-git/doc/guix.texi:19728 msgid "Theme to use. Default themes provided by SDDM are @samp{\"elarun\"}, @samp{\"maldives\"} or @samp{\"maya\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19367 +#: guix-git/doc/guix.texi:19729 #, no-wrap msgid "@code{themes-directory} (default \"/run/current-system/profile/share/sddm/themes\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19369 +#: guix-git/doc/guix.texi:19731 msgid "Directory to look for themes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19370 +#: guix-git/doc/guix.texi:19732 #, no-wrap msgid "@code{faces-directory} (default \"/run/current-system/profile/share/sddm/faces\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19372 +#: guix-git/doc/guix.texi:19734 msgid "Directory to look for faces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19373 +#: guix-git/doc/guix.texi:19735 #, no-wrap msgid "@code{default-path} (default \"/run/current-system/profile/bin\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19375 +#: guix-git/doc/guix.texi:19737 msgid "Default PATH to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19376 +#: guix-git/doc/guix.texi:19738 #, no-wrap msgid "@code{minimum-uid} (default: 1000)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19378 +#: guix-git/doc/guix.texi:19740 msgid "Minimum UID displayed in SDDM and allowed for log-in." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19379 +#: guix-git/doc/guix.texi:19741 #, no-wrap msgid "@code{maximum-uid} (default: 2000)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19381 +#: guix-git/doc/guix.texi:19743 msgid "Maximum UID to display in SDDM." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19382 +#: guix-git/doc/guix.texi:19744 #, no-wrap msgid "@code{remember-last-user?} (default #t)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19384 +#: guix-git/doc/guix.texi:19746 msgid "Remember last user." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19385 +#: guix-git/doc/guix.texi:19747 #, no-wrap msgid "@code{remember-last-session?} (default #t)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19387 +#: guix-git/doc/guix.texi:19749 msgid "Remember last session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19388 +#: guix-git/doc/guix.texi:19750 #, no-wrap msgid "@code{hide-users} (default \"\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19390 +#: guix-git/doc/guix.texi:19752 msgid "Usernames to hide from SDDM greeter." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19391 +#: guix-git/doc/guix.texi:19753 #, no-wrap msgid "@code{hide-shells} (default @code{#~(string-append #$shadow \"/sbin/nologin\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19393 +#: guix-git/doc/guix.texi:19755 msgid "Users with shells listed will be hidden from the SDDM greeter." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19394 +#: guix-git/doc/guix.texi:19756 #, no-wrap msgid "@code{session-command} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/wayland-session\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19396 +#: guix-git/doc/guix.texi:19758 msgid "Script to run before starting a wayland session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19397 +#: guix-git/doc/guix.texi:19759 #, no-wrap msgid "@code{sessions-directory} (default \"/run/current-system/profile/share/wayland-sessions\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19399 +#: guix-git/doc/guix.texi:19761 msgid "Directory to look for desktop files starting wayland sessions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19403 +#: guix-git/doc/guix.texi:19765 #, no-wrap msgid "@code{xauth-path} (default @code{#~(string-append #$xauth \"/bin/xauth\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19405 +#: guix-git/doc/guix.texi:19767 msgid "Path to xauth." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19406 +#: guix-git/doc/guix.texi:19768 #, no-wrap msgid "@code{xephyr-path} (default @code{#~(string-append #$xorg-server \"/bin/Xephyr\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19408 +#: guix-git/doc/guix.texi:19770 msgid "Path to Xephyr." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19409 +#: guix-git/doc/guix.texi:19771 #, no-wrap msgid "@code{xdisplay-start} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/Xsetup\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19411 +#: guix-git/doc/guix.texi:19773 msgid "Script to run after starting xorg-server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19412 +#: guix-git/doc/guix.texi:19774 #, no-wrap msgid "@code{xdisplay-stop} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/Xstop\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19414 +#: guix-git/doc/guix.texi:19776 msgid "Script to run before stopping xorg-server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19415 +#: guix-git/doc/guix.texi:19777 #, no-wrap msgid "@code{xsession-command} (default: @code{xinitrc})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19418 +#: guix-git/doc/guix.texi:19780 #, no-wrap msgid "@code{xsessions-directory} (default: \"/run/current-system/profile/share/xsessions\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19420 +#: guix-git/doc/guix.texi:19782 msgid "Directory to look for desktop files starting X sessions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19421 +#: guix-git/doc/guix.texi:19783 #, no-wrap msgid "@code{minimum-vt} (default: 7)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19423 +#: guix-git/doc/guix.texi:19785 msgid "Minimum VT to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19424 +#: guix-git/doc/guix.texi:19786 #, no-wrap msgid "@code{auto-login-user} (default \"\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19426 +#: guix-git/doc/guix.texi:19788 msgid "User to use for auto-login." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19427 +#: guix-git/doc/guix.texi:19789 #, no-wrap msgid "@code{auto-login-session} (default \"\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19429 +#: guix-git/doc/guix.texi:19791 msgid "Desktop file to use for auto-login." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19430 +#: guix-git/doc/guix.texi:19792 #, no-wrap msgid "@code{relogin?} (default #f)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19432 +#: guix-git/doc/guix.texi:19794 msgid "Relogin after logout." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19437 +#: guix-git/doc/guix.texi:19799 #, no-wrap msgid "X11 login" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19438 +#: guix-git/doc/guix.texi:19800 #, no-wrap msgid "{Scheme Variable} sddm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19442 +#: guix-git/doc/guix.texi:19804 msgid "This is the type of the service to run the @uref{https://github.com/sddm/sddm,SDDM display manager}. Its value must be a @code{sddm-configuration} record (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19444 +#: guix-git/doc/guix.texi:19806 msgid "Here's an example use:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19450 +#: guix-git/doc/guix.texi:19812 #, no-wrap msgid "" "(service sddm-service-type\n" @@ -34558,265 +35172,265 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19456 +#: guix-git/doc/guix.texi:19818 msgid "This data type represents the configuration of the SDDM login manager. The available fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19458 +#: guix-git/doc/guix.texi:19820 #, no-wrap msgid "@code{sddm} (default: @code{sddm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19460 +#: guix-git/doc/guix.texi:19822 msgid "The SDDM package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19461 +#: guix-git/doc/guix.texi:19823 #, no-wrap msgid "@code{display-server} (default: @code{\"x11\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19463 +#: guix-git/doc/guix.texi:19825 msgid "This must be either @code{\"x11\"} or @code{\"wayland\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19466 +#: guix-git/doc/guix.texi:19828 #, no-wrap msgid "@code{auto-login-user} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19469 +#: guix-git/doc/guix.texi:19831 msgid "If non-empty, this is the user account under which to log in automatically." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19470 +#: guix-git/doc/guix.texi:19832 #, no-wrap msgid "@code{auto-login-session} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19473 +#: guix-git/doc/guix.texi:19835 msgid "If non-empty, this is the @file{.desktop} file name to use as the auto-login session." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19476 +#: guix-git/doc/guix.texi:19838 #, no-wrap msgid "Xorg, configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19477 +#: guix-git/doc/guix.texi:19839 #, no-wrap msgid "{Data Type} xorg-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19482 +#: guix-git/doc/guix.texi:19844 msgid "This data type represents the configuration of the Xorg graphical display server. Note that there is no Xorg service; instead, the X server is started by a ``display manager'' such as GDM, SDDM, and SLiM@. Thus, the configuration of these display managers aggregates an @code{xorg-configuration} record." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19484 +#: guix-git/doc/guix.texi:19846 #, no-wrap msgid "@code{modules} (default: @code{%default-xorg-modules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19487 +#: guix-git/doc/guix.texi:19849 msgid "This is a list of @dfn{module packages} loaded by the Xorg server---e.g., @code{xf86-video-vesa}, @code{xf86-input-keyboard}, and so on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19488 +#: guix-git/doc/guix.texi:19850 #, no-wrap msgid "@code{fonts} (default: @code{%default-xorg-fonts})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19490 +#: guix-git/doc/guix.texi:19852 msgid "This is a list of font directories to add to the server's @dfn{font path}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19491 +#: guix-git/doc/guix.texi:19853 #, no-wrap msgid "@code{drivers} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19495 +#: guix-git/doc/guix.texi:19857 msgid "This must be either the empty list, in which case Xorg chooses a graphics driver automatically, or a list of driver names that will be tried in this order---e.g., @code{(\"modesetting\" \"vesa\")}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19496 +#: guix-git/doc/guix.texi:19858 #, no-wrap msgid "@code{resolutions} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19500 +#: guix-git/doc/guix.texi:19862 msgid "When @code{resolutions} is the empty list, Xorg chooses an appropriate screen resolution. Otherwise, it must be a list of resolutions---e.g., @code{((1024 768) (640 480))}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19501 +#: guix-git/doc/guix.texi:19863 #, no-wrap msgid "keyboard layout, for Xorg" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19502 +#: guix-git/doc/guix.texi:19864 #, no-wrap msgid "keymap, for Xorg" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19506 +#: guix-git/doc/guix.texi:19868 msgid "If this is @code{#f}, Xorg uses the default keyboard layout---usually US English (``qwerty'') for a 105-key PC keyboard." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19510 +#: guix-git/doc/guix.texi:19872 msgid "Otherwise this must be a @code{keyboard-layout} object specifying the keyboard layout in use when Xorg is running. @xref{Keyboard Layout}, for more information on how to specify the keyboard layout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19511 guix-git/doc/guix.texi:21223 -#: guix-git/doc/guix.texi:34046 +#: guix-git/doc/guix.texi:19873 guix-git/doc/guix.texi:21585 +#: guix-git/doc/guix.texi:34483 #, no-wrap msgid "@code{extra-config} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19514 guix-git/doc/guix.texi:34050 +#: guix-git/doc/guix.texi:19876 guix-git/doc/guix.texi:34487 msgid "This is a list of strings or objects appended to the configuration file. It is used to pass extra text to be added verbatim to the configuration file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19515 +#: guix-git/doc/guix.texi:19877 #, no-wrap msgid "@code{server} (default: @code{xorg-server})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19517 +#: guix-git/doc/guix.texi:19879 msgid "This is the package providing the Xorg server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19518 +#: guix-git/doc/guix.texi:19880 #, no-wrap msgid "@code{server-arguments} (default: @code{%default-xorg-server-arguments})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19521 +#: guix-git/doc/guix.texi:19883 msgid "This is the list of command-line arguments to pass to the X server. The default is @code{-nolisten tcp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19524 +#: guix-git/doc/guix.texi:19886 #, no-wrap msgid "{Scheme Procedure} set-xorg-configuration @var{config} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19528 +#: guix-git/doc/guix.texi:19890 msgid "[@var{login-manager-service-type}] Tell the log-in manager (of type @var{login-manager-service-type}) to use @var{config}, an @code{} record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19532 +#: guix-git/doc/guix.texi:19894 msgid "Since the Xorg configuration is embedded in the log-in manager's configuration---e.g., @code{gdm-configuration}---this procedure provides a shorthand to set the Xorg configuration." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19534 +#: guix-git/doc/guix.texi:19896 #, no-wrap msgid "{Scheme Procedure} xorg-start-command [@var{config}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19538 +#: guix-git/doc/guix.texi:19900 msgid "Return a @code{startx} script in which the modules, fonts, etc. specified in @var{config}, are available. The result should be used in place of @code{startx}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19540 +#: guix-git/doc/guix.texi:19902 msgid "Usually the X server is started by a login manager." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19543 +#: guix-git/doc/guix.texi:19905 #, no-wrap msgid "{Scheme Procedure} screen-locker-service @var{package} [@var{program}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19547 +#: guix-git/doc/guix.texi:19909 msgid "Add @var{package}, a package for a screen locker or screen saver whose command is @var{program}, to the set of setuid programs and add a PAM entry for it. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19550 +#: guix-git/doc/guix.texi:19912 #, no-wrap msgid "(screen-locker-service xlockmore \"xlock\")\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19553 +#: guix-git/doc/guix.texi:19915 msgid "makes the good ol' XlockMore usable." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19559 +#: guix-git/doc/guix.texi:19921 #, no-wrap msgid "printer support with CUPS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19563 +#: guix-git/doc/guix.texi:19925 msgid "The @code{(gnu services cups)} module provides a Guix service definition for the CUPS printing service. To add printer support to a Guix system, add a @code{cups-service} to the operating system definition:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19564 +#: guix-git/doc/guix.texi:19926 #, no-wrap msgid "{Scheme Variable} cups-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19568 +#: guix-git/doc/guix.texi:19930 msgid "The service type for the CUPS print server. Its value should be a valid CUPS configuration (see below). To use the default settings, simply write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19570 +#: guix-git/doc/guix.texi:19932 #, no-wrap msgid "(service cups-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19580 +#: guix-git/doc/guix.texi:19942 msgid "The CUPS configuration controls the basic things about your CUPS installation: what interfaces it listens on, what to do if a print job fails, how much logging to do, and so on. To actually add a printer, you have to visit the @url{http://localhost:631} URL, or use a tool such as GNOME's printer configuration services. By default, configuring a CUPS service will generate a self-signed certificate if needed, for secure connections to the print server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19586 +#: guix-git/doc/guix.texi:19948 msgid "Suppose you want to enable the Web interface of CUPS and also add support for Epson printers @i{via} the @code{epson-inkjet-printer-escpr} package and for HP printers @i{via} the @code{hplip-minimal} package. You can do that directly, like this (you need to use the @code{(gnu packages cups)} module):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19593 +#: guix-git/doc/guix.texi:19955 #, no-wrap msgid "" "(service cups-service-type\n" @@ -34827,1584 +35441,1582 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19598 +#: guix-git/doc/guix.texi:19960 msgid "Note: If you wish to use the Qt5 based GUI which comes with the hplip package then it is suggested that you install the @code{hplip} package, either in your OS configuration file or as your user." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19605 +#: guix-git/doc/guix.texi:19967 msgid "The available configuration parameters follow. Each parameter definition is preceded by its type; for example, @samp{string-list foo} indicates that the @code{foo} parameter should be specified as a list of strings. There is also a way to specify the configuration as a string, if you have an old @code{cupsd.conf} file that you want to port over from some other system; see the end for more details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19616 +#: guix-git/doc/guix.texi:19978 msgid "Available @code{cups-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19617 +#: guix-git/doc/guix.texi:19979 #, no-wrap msgid "{@code{cups-configuration} parameter} package cups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19619 guix-git/doc/guix.texi:20387 +#: guix-git/doc/guix.texi:19981 guix-git/doc/guix.texi:20749 msgid "The CUPS package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19621 +#: guix-git/doc/guix.texi:19983 #, no-wrap msgid "{@code{cups-configuration} parameter} package-list extensions (default: @code{(list brlaser cups-filters epson-inkjet-printer-escpr foomatic-filters hplip-minimal splix)})" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19623 +#: guix-git/doc/guix.texi:19985 msgid "Drivers and other extensions to the CUPS package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19625 +#: guix-git/doc/guix.texi:19987 #, no-wrap msgid "{@code{cups-configuration} parameter} files-configuration files-configuration" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19628 +#: guix-git/doc/guix.texi:19990 msgid "Configuration of where to write logs, what directories to use for print spools, and related privileged configuration parameters." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19630 +#: guix-git/doc/guix.texi:19992 msgid "Available @code{files-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19631 +#: guix-git/doc/guix.texi:19993 #, no-wrap msgid "{@code{files-configuration} parameter} log-location access-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19639 +#: guix-git/doc/guix.texi:20001 msgid "Defines the access log filename. Specifying a blank filename disables access log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-access_log}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19641 +#: guix-git/doc/guix.texi:20003 msgid "Defaults to @samp{\"/var/log/cups/access_log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19643 +#: guix-git/doc/guix.texi:20005 #, no-wrap msgid "{@code{files-configuration} parameter} file-name cache-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19645 +#: guix-git/doc/guix.texi:20007 msgid "Where CUPS should cache data." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19647 +#: guix-git/doc/guix.texi:20009 msgid "Defaults to @samp{\"/var/cache/cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19649 +#: guix-git/doc/guix.texi:20011 #, no-wrap msgid "{@code{files-configuration} parameter} string config-file-perm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19652 +#: guix-git/doc/guix.texi:20014 msgid "Specifies the permissions for all configuration files that the scheduler writes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19658 +#: guix-git/doc/guix.texi:20020 msgid "Note that the permissions for the printers.conf file are currently masked to only allow access from the scheduler user (typically root). This is done because printer device URIs sometimes contain sensitive authentication information that should not be generally known on the system. There is no way to disable this security feature." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19660 +#: guix-git/doc/guix.texi:20022 msgid "Defaults to @samp{\"0640\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19662 +#: guix-git/doc/guix.texi:20024 #, no-wrap msgid "{@code{files-configuration} parameter} log-location error-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19670 +#: guix-git/doc/guix.texi:20032 msgid "Defines the error log filename. Specifying a blank filename disables error log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-error_log}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19672 +#: guix-git/doc/guix.texi:20034 msgid "Defaults to @samp{\"/var/log/cups/error_log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19674 +#: guix-git/doc/guix.texi:20036 #, no-wrap msgid "{@code{files-configuration} parameter} string fatal-errors" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19677 +#: guix-git/doc/guix.texi:20039 msgid "Specifies which errors are fatal, causing the scheduler to exit. The kind strings are:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19681 +#: guix-git/doc/guix.texi:20043 msgid "No errors are fatal." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19684 +#: guix-git/doc/guix.texi:20046 msgid "All of the errors below are fatal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19685 +#: guix-git/doc/guix.texi:20047 #, no-wrap msgid "browse" msgstr "selaa" #. type: table -#: guix-git/doc/guix.texi:19688 +#: guix-git/doc/guix.texi:20050 msgid "Browsing initialization errors are fatal, for example failed connections to the DNS-SD daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19689 +#: guix-git/doc/guix.texi:20051 #, no-wrap msgid "config" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19691 +#: guix-git/doc/guix.texi:20053 msgid "Configuration file syntax errors are fatal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19692 +#: guix-git/doc/guix.texi:20054 #, no-wrap msgid "listen" msgstr "kuuntele" #. type: table -#: guix-git/doc/guix.texi:19695 +#: guix-git/doc/guix.texi:20057 msgid "Listen or Port errors are fatal, except for IPv6 failures on the loopback or @code{any} addresses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19696 +#: guix-git/doc/guix.texi:20058 #, no-wrap msgid "log" msgstr "kirjaa" #. type: table -#: guix-git/doc/guix.texi:19698 +#: guix-git/doc/guix.texi:20060 msgid "Log file creation or write errors are fatal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19699 +#: guix-git/doc/guix.texi:20061 #, no-wrap msgid "permissions" msgstr "käyttöoikeudet" #. type: table -#: guix-git/doc/guix.texi:19702 +#: guix-git/doc/guix.texi:20064 msgid "Bad startup file permissions are fatal, for example shared TLS certificate and key files with world-read permissions." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19705 +#: guix-git/doc/guix.texi:20067 msgid "Defaults to @samp{\"all -browse\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19707 +#: guix-git/doc/guix.texi:20069 #, no-wrap msgid "{@code{files-configuration} parameter} boolean file-device?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19710 +#: guix-git/doc/guix.texi:20072 msgid "Specifies whether the file pseudo-device can be used for new printer queues. The URI @uref{file:///dev/null} is always allowed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19714 +#: guix-git/doc/guix.texi:20076 #, no-wrap msgid "{@code{files-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19717 +#: guix-git/doc/guix.texi:20079 msgid "Specifies the group name or ID that will be used when executing external programs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19719 guix-git/doc/guix.texi:19805 +#: guix-git/doc/guix.texi:20081 guix-git/doc/guix.texi:20167 msgid "Defaults to @samp{\"lp\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19721 +#: guix-git/doc/guix.texi:20083 #, no-wrap msgid "{@code{files-configuration} parameter} string log-file-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19723 +#: guix-git/doc/guix.texi:20085 msgid "Specifies the group name or ID that will be used for log files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19725 +#: guix-git/doc/guix.texi:20087 msgid "Defaults to @samp{\"lpadmin\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19727 +#: guix-git/doc/guix.texi:20089 #, no-wrap msgid "{@code{files-configuration} parameter} string log-file-perm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19729 +#: guix-git/doc/guix.texi:20091 msgid "Specifies the permissions for all log files that the scheduler writes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19731 +#: guix-git/doc/guix.texi:20093 msgid "Defaults to @samp{\"0644\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19733 +#: guix-git/doc/guix.texi:20095 #, no-wrap msgid "{@code{files-configuration} parameter} log-location page-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19741 +#: guix-git/doc/guix.texi:20103 msgid "Defines the page log filename. Specifying a blank filename disables page log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-page_log}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19743 +#: guix-git/doc/guix.texi:20105 msgid "Defaults to @samp{\"/var/log/cups/page_log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19745 +#: guix-git/doc/guix.texi:20107 #, no-wrap msgid "{@code{files-configuration} parameter} string remote-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19748 +#: guix-git/doc/guix.texi:20110 msgid "Specifies the username that is associated with unauthenticated accesses by clients claiming to be the root user. The default is @code{remroot}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19750 +#: guix-git/doc/guix.texi:20112 msgid "Defaults to @samp{\"remroot\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19752 +#: guix-git/doc/guix.texi:20114 #, no-wrap msgid "{@code{files-configuration} parameter} file-name request-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19755 +#: guix-git/doc/guix.texi:20117 msgid "Specifies the directory that contains print jobs and other HTTP request data." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19757 +#: guix-git/doc/guix.texi:20119 msgid "Defaults to @samp{\"/var/spool/cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19759 +#: guix-git/doc/guix.texi:20121 #, no-wrap msgid "{@code{files-configuration} parameter} sandboxing sandboxing" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19764 +#: guix-git/doc/guix.texi:20126 msgid "Specifies the level of security sandboxing that is applied to print filters, backends, and other child processes of the scheduler; either @code{relaxed} or @code{strict}. This directive is currently only used/supported on macOS." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19766 +#: guix-git/doc/guix.texi:20128 msgid "Defaults to @samp{strict}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19768 +#: guix-git/doc/guix.texi:20130 #, no-wrap msgid "{@code{files-configuration} parameter} file-name server-keychain" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19773 +#: guix-git/doc/guix.texi:20135 msgid "Specifies the location of TLS certificates and private keys. CUPS will look for public and private keys in this directory: @file{.crt} files for PEM-encoded certificates and corresponding @file{.key} files for PEM-encoded private keys." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19775 +#: guix-git/doc/guix.texi:20137 msgid "Defaults to @samp{\"/etc/cups/ssl\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19777 +#: guix-git/doc/guix.texi:20139 #, no-wrap msgid "{@code{files-configuration} parameter} file-name server-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19779 +#: guix-git/doc/guix.texi:20141 msgid "Specifies the directory containing the server configuration files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19781 +#: guix-git/doc/guix.texi:20143 msgid "Defaults to @samp{\"/etc/cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19783 +#: guix-git/doc/guix.texi:20145 #, no-wrap msgid "{@code{files-configuration} parameter} boolean sync-on-close?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19786 +#: guix-git/doc/guix.texi:20148 msgid "Specifies whether the scheduler calls fsync(2) after writing configuration or state files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19790 +#: guix-git/doc/guix.texi:20152 #, no-wrap msgid "{@code{files-configuration} parameter} space-separated-string-list system-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19792 +#: guix-git/doc/guix.texi:20154 msgid "Specifies the group(s) to use for @code{@@SYSTEM} group authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19794 +#: guix-git/doc/guix.texi:20156 #, no-wrap msgid "{@code{files-configuration} parameter} file-name temp-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19796 +#: guix-git/doc/guix.texi:20158 msgid "Specifies the directory where temporary files are stored." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19798 +#: guix-git/doc/guix.texi:20160 msgid "Defaults to @samp{\"/var/spool/cups/tmp\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19800 +#: guix-git/doc/guix.texi:20162 #, no-wrap msgid "{@code{files-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19803 +#: guix-git/doc/guix.texi:20165 msgid "Specifies the user name or ID that is used when running external programs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19807 +#: guix-git/doc/guix.texi:20169 #, no-wrap msgid "{@code{files-configuration} parameter} string set-env" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19809 +#: guix-git/doc/guix.texi:20171 msgid "Set the specified environment variable to be passed to child processes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19811 +#: guix-git/doc/guix.texi:20173 msgid "Defaults to @samp{\"variable value\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19814 +#: guix-git/doc/guix.texi:20176 #, no-wrap msgid "{@code{cups-configuration} parameter} access-log-level access-log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19821 +#: guix-git/doc/guix.texi:20183 msgid "Specifies the logging level for the AccessLog file. The @code{config} level logs when printers and classes are added, deleted, or modified and when configuration files are accessed or updated. The @code{actions} level logs when print jobs are submitted, held, released, modified, or canceled, and any of the conditions for @code{config}. The @code{all} level logs all requests." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19823 +#: guix-git/doc/guix.texi:20185 msgid "Defaults to @samp{actions}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19825 +#: guix-git/doc/guix.texi:20187 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean auto-purge-jobs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19828 +#: guix-git/doc/guix.texi:20190 msgid "Specifies whether to purge job history data automatically when it is no longer required for quotas." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19832 +#: guix-git/doc/guix.texi:20194 #, no-wrap msgid "{@code{cups-configuration} parameter} comma-separated-string-list browse-dns-sd-sub-types" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19836 +#: guix-git/doc/guix.texi:20198 msgid "Specifies a list of DNS-SD sub-types to advertise for each shared printer. For example, @samp{\"_cups\" \"_print\"} will tell network clients that both CUPS sharing and IPP Everywhere are supported." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19838 +#: guix-git/doc/guix.texi:20200 msgid "Defaults to @samp{\"_cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19840 +#: guix-git/doc/guix.texi:20202 #, no-wrap msgid "{@code{cups-configuration} parameter} browse-local-protocols browse-local-protocols" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19842 +#: guix-git/doc/guix.texi:20204 msgid "Specifies which protocols to use for local printer sharing." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19844 +#: guix-git/doc/guix.texi:20206 msgid "Defaults to @samp{dnssd}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19846 +#: guix-git/doc/guix.texi:20208 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean browse-web-if?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19848 +#: guix-git/doc/guix.texi:20210 msgid "Specifies whether the CUPS web interface is advertised." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19852 +#: guix-git/doc/guix.texi:20214 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean browsing?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19854 +#: guix-git/doc/guix.texi:20216 msgid "Specifies whether shared printers are advertised." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19858 +#: guix-git/doc/guix.texi:20220 #, no-wrap msgid "{@code{cups-configuration} parameter} string classification" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19863 +#: guix-git/doc/guix.texi:20225 msgid "Specifies the security classification of the server. Any valid banner name can be used, including @samp{\"classified\"}, @samp{\"confidential\"}, @samp{\"secret\"}, @samp{\"topsecret\"}, and @samp{\"unclassified\"}, or the banner can be omitted to disable secure printing functions." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19865 guix-git/doc/guix.texi:20196 -#: guix-git/doc/guix.texi:22180 guix-git/doc/guix.texi:22192 -#: guix-git/doc/guix.texi:22220 guix-git/doc/guix.texi:22977 -#: guix-git/doc/guix.texi:22991 guix-git/doc/guix.texi:22998 -#: guix-git/doc/guix.texi:23005 guix-git/doc/guix.texi:23035 -#: guix-git/doc/guix.texi:23133 guix-git/doc/guix.texi:25252 -#: guix-git/doc/guix.texi:25278 guix-git/doc/guix.texi:25314 -#: guix-git/doc/guix.texi:25360 guix-git/doc/guix.texi:25379 -#: guix-git/doc/guix.texi:25418 guix-git/doc/guix.texi:25477 -#: guix-git/doc/guix.texi:25487 guix-git/doc/guix.texi:30085 -#: guix-git/doc/guix.texi:30093 guix-git/doc/guix.texi:30101 -#: guix-git/doc/guix.texi:30109 guix-git/doc/guix.texi:30388 -#: guix-git/doc/guix.texi:31743 guix-git/doc/guix.texi:31751 -#: guix-git/doc/guix.texi:31759 guix-git/doc/guix.texi:31867 -#: guix-git/doc/guix.texi:31892 guix-git/doc/guix.texi:32023 -#: guix-git/doc/guix.texi:32031 guix-git/doc/guix.texi:32039 -#: guix-git/doc/guix.texi:32047 guix-git/doc/guix.texi:32055 -#: guix-git/doc/guix.texi:32063 guix-git/doc/guix.texi:32086 -#: guix-git/doc/guix.texi:32094 guix-git/doc/guix.texi:32146 -#: guix-git/doc/guix.texi:32162 guix-git/doc/guix.texi:32170 -#: guix-git/doc/guix.texi:32209 guix-git/doc/guix.texi:32232 -#: guix-git/doc/guix.texi:32254 guix-git/doc/guix.texi:32261 -#: guix-git/doc/guix.texi:32296 guix-git/doc/guix.texi:32304 -#: guix-git/doc/guix.texi:32328 guix-git/doc/guix.texi:32360 -#: guix-git/doc/guix.texi:32389 guix-git/doc/guix.texi:32396 -#: guix-git/doc/guix.texi:32403 guix-git/doc/guix.texi:32411 -#: guix-git/doc/guix.texi:32425 guix-git/doc/guix.texi:32434 -#: guix-git/doc/guix.texi:32444 guix-git/doc/guix.texi:32451 -#: guix-git/doc/guix.texi:32458 guix-git/doc/guix.texi:32465 -#: guix-git/doc/guix.texi:32536 guix-git/doc/guix.texi:32543 -#: guix-git/doc/guix.texi:32550 guix-git/doc/guix.texi:32559 -#: guix-git/doc/guix.texi:32575 guix-git/doc/guix.texi:32582 -#: guix-git/doc/guix.texi:32589 guix-git/doc/guix.texi:32596 -#: guix-git/doc/guix.texi:32604 guix-git/doc/guix.texi:32612 +#: guix-git/doc/guix.texi:20227 guix-git/doc/guix.texi:20558 +#: guix-git/doc/guix.texi:22542 guix-git/doc/guix.texi:22554 +#: guix-git/doc/guix.texi:22582 guix-git/doc/guix.texi:23339 +#: guix-git/doc/guix.texi:23353 guix-git/doc/guix.texi:23360 +#: guix-git/doc/guix.texi:23367 guix-git/doc/guix.texi:23397 +#: guix-git/doc/guix.texi:23495 guix-git/doc/guix.texi:25614 +#: guix-git/doc/guix.texi:25640 guix-git/doc/guix.texi:25676 +#: guix-git/doc/guix.texi:25722 guix-git/doc/guix.texi:25741 +#: guix-git/doc/guix.texi:25780 guix-git/doc/guix.texi:30450 +#: guix-git/doc/guix.texi:30458 guix-git/doc/guix.texi:30466 +#: guix-git/doc/guix.texi:30474 guix-git/doc/guix.texi:30753 +#: guix-git/doc/guix.texi:32108 guix-git/doc/guix.texi:32116 +#: guix-git/doc/guix.texi:32124 guix-git/doc/guix.texi:32232 +#: guix-git/doc/guix.texi:32257 guix-git/doc/guix.texi:32388 +#: guix-git/doc/guix.texi:32396 guix-git/doc/guix.texi:32404 +#: guix-git/doc/guix.texi:32412 guix-git/doc/guix.texi:32420 +#: guix-git/doc/guix.texi:32428 guix-git/doc/guix.texi:32451 +#: guix-git/doc/guix.texi:32459 guix-git/doc/guix.texi:32511 +#: guix-git/doc/guix.texi:32527 guix-git/doc/guix.texi:32535 +#: guix-git/doc/guix.texi:32574 guix-git/doc/guix.texi:32597 +#: guix-git/doc/guix.texi:32619 guix-git/doc/guix.texi:32626 +#: guix-git/doc/guix.texi:32661 guix-git/doc/guix.texi:32669 +#: guix-git/doc/guix.texi:32693 guix-git/doc/guix.texi:32725 +#: guix-git/doc/guix.texi:32754 guix-git/doc/guix.texi:32761 +#: guix-git/doc/guix.texi:32768 guix-git/doc/guix.texi:32776 +#: guix-git/doc/guix.texi:32790 guix-git/doc/guix.texi:32799 +#: guix-git/doc/guix.texi:32809 guix-git/doc/guix.texi:32816 +#: guix-git/doc/guix.texi:32823 guix-git/doc/guix.texi:32830 +#: guix-git/doc/guix.texi:32901 guix-git/doc/guix.texi:32908 +#: guix-git/doc/guix.texi:32915 guix-git/doc/guix.texi:32924 +#: guix-git/doc/guix.texi:32940 guix-git/doc/guix.texi:32947 +#: guix-git/doc/guix.texi:32954 guix-git/doc/guix.texi:32961 +#: guix-git/doc/guix.texi:32969 guix-git/doc/guix.texi:32977 msgid "Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19867 +#: guix-git/doc/guix.texi:20229 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean classify-override?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19870 +#: guix-git/doc/guix.texi:20232 msgid "Specifies whether users may override the classification (cover page) of individual print jobs using the @code{job-sheets} option." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19874 +#: guix-git/doc/guix.texi:20236 #, no-wrap msgid "{@code{cups-configuration} parameter} default-auth-type default-auth-type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19876 +#: guix-git/doc/guix.texi:20238 msgid "Specifies the default type of authentication to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19878 +#: guix-git/doc/guix.texi:20240 msgid "Defaults to @samp{Basic}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19880 +#: guix-git/doc/guix.texi:20242 #, no-wrap msgid "{@code{cups-configuration} parameter} default-encryption default-encryption" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19882 +#: guix-git/doc/guix.texi:20244 msgid "Specifies whether encryption will be used for authenticated requests." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19884 +#: guix-git/doc/guix.texi:20246 msgid "Defaults to @samp{Required}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19886 +#: guix-git/doc/guix.texi:20248 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-language" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19888 +#: guix-git/doc/guix.texi:20250 msgid "Specifies the default language to use for text and web content." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19890 +#: guix-git/doc/guix.texi:20252 msgid "Defaults to @samp{\"en\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19892 +#: guix-git/doc/guix.texi:20254 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-paper-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19897 +#: guix-git/doc/guix.texi:20259 msgid "Specifies the default paper size for new print queues. @samp{\"Auto\"} uses a locale-specific default, while @samp{\"None\"} specifies there is no default paper size. Specific size names are typically @samp{\"Letter\"} or @samp{\"A4\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19899 +#: guix-git/doc/guix.texi:20261 msgid "Defaults to @samp{\"Auto\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19901 +#: guix-git/doc/guix.texi:20263 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-policy" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19903 +#: guix-git/doc/guix.texi:20265 msgid "Specifies the default access policy to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19905 +#: guix-git/doc/guix.texi:20267 msgid "Defaults to @samp{\"default\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19907 +#: guix-git/doc/guix.texi:20269 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean default-shared?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19909 +#: guix-git/doc/guix.texi:20271 msgid "Specifies whether local printers are shared by default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19911 guix-git/doc/guix.texi:19991 -#: guix-git/doc/guix.texi:20281 guix-git/doc/guix.texi:23067 -#: guix-git/doc/guix.texi:23118 guix-git/doc/guix.texi:23125 -#: guix-git/doc/guix.texi:24407 guix-git/doc/guix.texi:24595 -#: guix-git/doc/guix.texi:24712 guix-git/doc/guix.texi:24748 -#: guix-git/doc/guix.texi:24799 guix-git/doc/guix.texi:24818 -#: guix-git/doc/guix.texi:24828 guix-git/doc/guix.texi:24838 -#: guix-git/doc/guix.texi:24897 guix-git/doc/guix.texi:24919 -#: guix-git/doc/guix.texi:24944 guix-git/doc/guix.texi:24970 -#: guix-git/doc/guix.texi:24988 guix-git/doc/guix.texi:28180 -#: guix-git/doc/guix.texi:28208 guix-git/doc/guix.texi:28344 -#: guix-git/doc/guix.texi:28351 guix-git/doc/guix.texi:28359 -#: guix-git/doc/guix.texi:28396 guix-git/doc/guix.texi:28410 -#: guix-git/doc/guix.texi:28499 guix-git/doc/guix.texi:28506 -#: guix-git/doc/guix.texi:28514 guix-git/doc/guix.texi:29293 -#: guix-git/doc/guix.texi:29433 guix-git/doc/guix.texi:29619 -#: guix-git/doc/guix.texi:29626 guix-git/doc/guix.texi:29648 -#: guix-git/doc/guix.texi:29687 guix-git/doc/guix.texi:29707 -#: guix-git/doc/guix.texi:29721 guix-git/doc/guix.texi:29934 -#: guix-git/doc/guix.texi:31845 guix-git/doc/guix.texi:31933 -#: guix-git/doc/guix.texi:31949 guix-git/doc/guix.texi:31999 +#: guix-git/doc/guix.texi:20273 guix-git/doc/guix.texi:20353 +#: guix-git/doc/guix.texi:20643 guix-git/doc/guix.texi:23429 +#: guix-git/doc/guix.texi:23480 guix-git/doc/guix.texi:23487 +#: guix-git/doc/guix.texi:24769 guix-git/doc/guix.texi:24957 +#: guix-git/doc/guix.texi:25074 guix-git/doc/guix.texi:25110 +#: guix-git/doc/guix.texi:25161 guix-git/doc/guix.texi:25180 +#: guix-git/doc/guix.texi:25190 guix-git/doc/guix.texi:25200 +#: guix-git/doc/guix.texi:25259 guix-git/doc/guix.texi:25281 +#: guix-git/doc/guix.texi:25306 guix-git/doc/guix.texi:25332 +#: guix-git/doc/guix.texi:25350 guix-git/doc/guix.texi:28517 +#: guix-git/doc/guix.texi:28545 guix-git/doc/guix.texi:28681 +#: guix-git/doc/guix.texi:28688 guix-git/doc/guix.texi:28696 +#: guix-git/doc/guix.texi:28733 guix-git/doc/guix.texi:28747 +#: guix-git/doc/guix.texi:28836 guix-git/doc/guix.texi:28843 +#: guix-git/doc/guix.texi:28851 guix-git/doc/guix.texi:29630 +#: guix-git/doc/guix.texi:29770 guix-git/doc/guix.texi:29984 +#: guix-git/doc/guix.texi:29991 guix-git/doc/guix.texi:30013 +#: guix-git/doc/guix.texi:30052 guix-git/doc/guix.texi:30072 +#: guix-git/doc/guix.texi:30086 guix-git/doc/guix.texi:30299 +#: guix-git/doc/guix.texi:32210 guix-git/doc/guix.texi:32298 +#: guix-git/doc/guix.texi:32314 guix-git/doc/guix.texi:32364 msgid "Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19913 +#: guix-git/doc/guix.texi:20275 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer dirty-clean-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19917 +#: guix-git/doc/guix.texi:20279 msgid "Specifies the delay for updating of configuration and state files, in seconds. A value of 0 causes the update to happen as soon as possible, typically within a few milliseconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19919 guix-git/doc/guix.texi:19967 -#: guix-git/doc/guix.texi:19976 guix-git/doc/guix.texi:20288 -#: guix-git/doc/guix.texi:24757 guix-git/doc/guix.texi:24790 +#: guix-git/doc/guix.texi:20281 guix-git/doc/guix.texi:20329 +#: guix-git/doc/guix.texi:20338 guix-git/doc/guix.texi:20650 +#: guix-git/doc/guix.texi:25119 guix-git/doc/guix.texi:25152 msgid "Defaults to @samp{30}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19921 +#: guix-git/doc/guix.texi:20283 #, no-wrap msgid "{@code{cups-configuration} parameter} error-policy error-policy" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19927 +#: guix-git/doc/guix.texi:20289 msgid "Specifies what to do when an error occurs. Possible values are @code{abort-job}, which will discard the failed print job; @code{retry-job}, which will retry the job at a later time; @code{retry-current-job}, which retries the failed job immediately; and @code{stop-printer}, which stops the printer." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19929 +#: guix-git/doc/guix.texi:20291 msgid "Defaults to @samp{stop-printer}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19931 +#: guix-git/doc/guix.texi:20293 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer filter-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19939 +#: guix-git/doc/guix.texi:20301 msgid "Specifies the maximum cost of filters that are run concurrently, which can be used to minimize disk, memory, and CPU resource problems. A limit of 0 disables filter limiting. An average print to a non-PostScript printer needs a filter limit of about 200. A PostScript printer needs about half that (100). Setting the limit below these thresholds will effectively limit the scheduler to printing a single job at any time." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19941 guix-git/doc/guix.texi:19949 -#: guix-git/doc/guix.texi:19998 guix-git/doc/guix.texi:20114 -#: guix-git/doc/guix.texi:20128 guix-git/doc/guix.texi:20135 -#: guix-git/doc/guix.texi:21622 guix-git/doc/guix.texi:21638 -#: guix-git/doc/guix.texi:22295 guix-git/doc/guix.texi:22307 -#: guix-git/doc/guix.texi:23086 guix-git/doc/guix.texi:23095 -#: guix-git/doc/guix.texi:23103 guix-git/doc/guix.texi:23111 -#: guix-git/doc/guix.texi:29309 guix-git/doc/guix.texi:29634 -#: guix-git/doc/guix.texi:31838 guix-git/doc/guix.texi:32138 -#: guix-git/doc/guix.texi:32312 +#: guix-git/doc/guix.texi:20303 guix-git/doc/guix.texi:20311 +#: guix-git/doc/guix.texi:20360 guix-git/doc/guix.texi:20476 +#: guix-git/doc/guix.texi:20490 guix-git/doc/guix.texi:20497 +#: guix-git/doc/guix.texi:21984 guix-git/doc/guix.texi:22000 +#: guix-git/doc/guix.texi:22657 guix-git/doc/guix.texi:22669 +#: guix-git/doc/guix.texi:23448 guix-git/doc/guix.texi:23457 +#: guix-git/doc/guix.texi:23465 guix-git/doc/guix.texi:23473 +#: guix-git/doc/guix.texi:29646 guix-git/doc/guix.texi:29999 +#: guix-git/doc/guix.texi:32203 guix-git/doc/guix.texi:32503 +#: guix-git/doc/guix.texi:32677 msgid "Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19943 +#: guix-git/doc/guix.texi:20305 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer filter-nice" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19947 +#: guix-git/doc/guix.texi:20309 msgid "Specifies the scheduling priority of filters that are run to print a job. The nice value ranges from 0, the highest priority, to 19, the lowest priority." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19951 +#: guix-git/doc/guix.texi:20313 #, no-wrap msgid "{@code{cups-configuration} parameter} host-name-lookups host-name-lookups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19958 +#: guix-git/doc/guix.texi:20320 msgid "Specifies whether to do reverse lookups on connecting clients. The @code{double} setting causes @code{cupsd} to verify that the hostname resolved from the address matches one of the addresses returned for that hostname. Double lookups also prevent clients with unregistered addresses from connecting to your server. Only set this option to @code{#t} or @code{double} if absolutely required." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19962 +#: guix-git/doc/guix.texi:20324 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-kill-delay" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19965 +#: guix-git/doc/guix.texi:20327 msgid "Specifies the number of seconds to wait before killing the filters and backend associated with a canceled or held job." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19969 +#: guix-git/doc/guix.texi:20331 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-retry-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19974 +#: guix-git/doc/guix.texi:20336 msgid "Specifies the interval between retries of jobs in seconds. This is typically used for fax queues but can also be used with normal print queues whose error policy is @code{retry-job} or @code{retry-current-job}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19978 +#: guix-git/doc/guix.texi:20340 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-retry-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19983 +#: guix-git/doc/guix.texi:20345 msgid "Specifies the number of retries that are done for jobs. This is typically used for fax queues but can also be used with normal print queues whose error policy is @code{retry-job} or @code{retry-current-job}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19985 guix-git/doc/guix.texi:24721 -#: guix-git/doc/guix.texi:30186 guix-git/doc/guix.texi:30206 -#: guix-git/doc/guix.texi:30222 guix-git/doc/guix.texi:30236 -#: guix-git/doc/guix.texi:30243 guix-git/doc/guix.texi:30250 -#: guix-git/doc/guix.texi:30257 guix-git/doc/guix.texi:30417 -#: guix-git/doc/guix.texi:30433 guix-git/doc/guix.texi:30440 -#: guix-git/doc/guix.texi:30447 guix-git/doc/guix.texi:30458 -#: guix-git/doc/guix.texi:31790 guix-git/doc/guix.texi:31798 -#: guix-git/doc/guix.texi:31806 guix-git/doc/guix.texi:31830 +#: guix-git/doc/guix.texi:20347 guix-git/doc/guix.texi:25083 +#: guix-git/doc/guix.texi:30551 guix-git/doc/guix.texi:30571 +#: guix-git/doc/guix.texi:30587 guix-git/doc/guix.texi:30601 +#: guix-git/doc/guix.texi:30608 guix-git/doc/guix.texi:30615 +#: guix-git/doc/guix.texi:30622 guix-git/doc/guix.texi:30782 +#: guix-git/doc/guix.texi:30798 guix-git/doc/guix.texi:30805 +#: guix-git/doc/guix.texi:30812 guix-git/doc/guix.texi:30823 +#: guix-git/doc/guix.texi:32155 guix-git/doc/guix.texi:32163 +#: guix-git/doc/guix.texi:32171 guix-git/doc/guix.texi:32195 msgid "Defaults to @samp{5}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19987 +#: guix-git/doc/guix.texi:20349 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean keep-alive?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19989 +#: guix-git/doc/guix.texi:20351 msgid "Specifies whether to support HTTP keep-alive connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19993 +#: guix-git/doc/guix.texi:20355 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer limit-request-body" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19996 +#: guix-git/doc/guix.texi:20358 msgid "Specifies the maximum size of print files, IPP requests, and HTML form data. A limit of 0 disables the limit check." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20000 +#: guix-git/doc/guix.texi:20362 #, no-wrap msgid "{@code{cups-configuration} parameter} multiline-string-list listen" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20007 +#: guix-git/doc/guix.texi:20369 msgid "Listens on the specified interfaces for connections. Valid values are of the form @var{address}:@var{port}, where @var{address} is either an IPv6 address enclosed in brackets, an IPv4 address, or @code{*} to indicate all addresses. Values can also be file names of local UNIX domain sockets. The Listen directive is similar to the Port directive but allows you to restrict access to specific interfaces or networks." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20009 +#: guix-git/doc/guix.texi:20371 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer listen-back-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20016 +#: guix-git/doc/guix.texi:20378 msgid "Specifies the number of pending connections that will be allowed. This normally only affects very busy servers that have reached the MaxClients limit, but can also be triggered by large numbers of simultaneous connections. When the limit is reached, the operating system will refuse additional connections until the scheduler can accept the pending ones." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20018 +#: guix-git/doc/guix.texi:20380 msgid "Defaults to @samp{128}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20020 +#: guix-git/doc/guix.texi:20382 #, no-wrap msgid "{@code{cups-configuration} parameter} location-access-control-list location-access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20022 +#: guix-git/doc/guix.texi:20384 msgid "Specifies a set of additional access controls." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20024 +#: guix-git/doc/guix.texi:20386 msgid "Available @code{location-access-controls} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20025 +#: guix-git/doc/guix.texi:20387 #, no-wrap msgid "{@code{location-access-controls} parameter} file-name path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20027 +#: guix-git/doc/guix.texi:20389 msgid "Specifies the URI path to which the access control applies." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20029 +#: guix-git/doc/guix.texi:20391 #, no-wrap msgid "{@code{location-access-controls} parameter} access-control-list access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20032 +#: guix-git/doc/guix.texi:20394 msgid "Access controls for all access to this path, in the same format as the @code{access-controls} of @code{operation-access-control}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20034 guix-git/doc/guix.texi:20040 -#: guix-git/doc/guix.texi:20054 guix-git/doc/guix.texi:20061 -#: guix-git/doc/guix.texi:20203 guix-git/doc/guix.texi:20262 -#: guix-git/doc/guix.texi:20340 guix-git/doc/guix.texi:20354 -#: guix-git/doc/guix.texi:21502 guix-git/doc/guix.texi:21511 -#: guix-git/doc/guix.texi:22781 guix-git/doc/guix.texi:22984 -#: guix-git/doc/guix.texi:23012 guix-git/doc/guix.texi:23042 -#: guix-git/doc/guix.texi:23157 guix-git/doc/guix.texi:23170 -#: guix-git/doc/guix.texi:23177 guix-git/doc/guix.texi:24927 -#: guix-git/doc/guix.texi:25322 guix-git/doc/guix.texi:25426 -#: guix-git/doc/guix.texi:25853 guix-git/doc/guix.texi:25861 -#: guix-git/doc/guix.texi:26106 guix-git/doc/guix.texi:28239 -#: guix-git/doc/guix.texi:28417 guix-git/doc/guix.texi:28616 -#: guix-git/doc/guix.texi:30077 guix-git/doc/guix.texi:30137 -#: guix-git/doc/guix.texi:30145 guix-git/doc/guix.texi:31853 -#: guix-git/doc/guix.texi:31860 guix-git/doc/guix.texi:32202 -#: guix-git/doc/guix.texi:32280 guix-git/doc/guix.texi:32374 -#: guix-git/doc/guix.texi:32382 guix-git/doc/guix.texi:32418 -#: guix-git/doc/guix.texi:32568 guix-git/doc/guix.texi:32619 -#: guix-git/doc/guix.texi:32628 +#: guix-git/doc/guix.texi:20396 guix-git/doc/guix.texi:20402 +#: guix-git/doc/guix.texi:20416 guix-git/doc/guix.texi:20423 +#: guix-git/doc/guix.texi:20565 guix-git/doc/guix.texi:20624 +#: guix-git/doc/guix.texi:20702 guix-git/doc/guix.texi:20716 +#: guix-git/doc/guix.texi:21864 guix-git/doc/guix.texi:21873 +#: guix-git/doc/guix.texi:23143 guix-git/doc/guix.texi:23346 +#: guix-git/doc/guix.texi:23374 guix-git/doc/guix.texi:23404 +#: guix-git/doc/guix.texi:23519 guix-git/doc/guix.texi:23532 +#: guix-git/doc/guix.texi:23539 guix-git/doc/guix.texi:25289 +#: guix-git/doc/guix.texi:25684 guix-git/doc/guix.texi:25788 +#: guix-git/doc/guix.texi:26190 guix-git/doc/guix.texi:26198 +#: guix-git/doc/guix.texi:26443 guix-git/doc/guix.texi:28576 +#: guix-git/doc/guix.texi:28754 guix-git/doc/guix.texi:28953 +#: guix-git/doc/guix.texi:30442 guix-git/doc/guix.texi:30502 +#: guix-git/doc/guix.texi:30510 guix-git/doc/guix.texi:32218 +#: guix-git/doc/guix.texi:32225 guix-git/doc/guix.texi:32567 +#: guix-git/doc/guix.texi:32645 guix-git/doc/guix.texi:32739 +#: guix-git/doc/guix.texi:32747 guix-git/doc/guix.texi:32783 +#: guix-git/doc/guix.texi:32933 guix-git/doc/guix.texi:32984 +#: guix-git/doc/guix.texi:32993 msgid "Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20036 +#: guix-git/doc/guix.texi:20398 #, no-wrap msgid "{@code{location-access-controls} parameter} method-access-control-list method-access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20038 +#: guix-git/doc/guix.texi:20400 msgid "Access controls for method-specific access to this path." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20042 +#: guix-git/doc/guix.texi:20404 msgid "Available @code{method-access-controls} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20043 +#: guix-git/doc/guix.texi:20405 #, no-wrap msgid "{@code{method-access-controls} parameter} boolean reverse?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20046 +#: guix-git/doc/guix.texi:20408 msgid "If @code{#t}, apply access controls to all methods except the listed methods. Otherwise apply to only the listed methods." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20050 +#: guix-git/doc/guix.texi:20412 #, no-wrap msgid "{@code{method-access-controls} parameter} method-list methods" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20052 +#: guix-git/doc/guix.texi:20414 msgid "Methods to which this access control applies." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20056 +#: guix-git/doc/guix.texi:20418 #, no-wrap msgid "{@code{method-access-controls} parameter} access-control-list access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20059 +#: guix-git/doc/guix.texi:20421 msgid "Access control directives, as a list of strings. Each string should be one directive, such as @samp{\"Order allow,deny\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20065 +#: guix-git/doc/guix.texi:20427 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer log-debug-history" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20069 +#: guix-git/doc/guix.texi:20431 msgid "Specifies the number of debugging messages that are retained for logging if an error occurs in a print job. Debug messages are logged regardless of the LogLevel setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20071 guix-git/doc/guix.texi:20092 -#: guix-git/doc/guix.texi:20099 guix-git/doc/guix.texi:22541 -#: guix-git/doc/guix.texi:24459 guix-git/doc/guix.texi:24474 -#: guix-git/doc/guix.texi:28601 +#: guix-git/doc/guix.texi:20433 guix-git/doc/guix.texi:20454 +#: guix-git/doc/guix.texi:20461 guix-git/doc/guix.texi:22903 +#: guix-git/doc/guix.texi:24821 guix-git/doc/guix.texi:24836 +#: guix-git/doc/guix.texi:28938 msgid "Defaults to @samp{100}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20073 +#: guix-git/doc/guix.texi:20435 #, no-wrap msgid "{@code{cups-configuration} parameter} log-level log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20076 +#: guix-git/doc/guix.texi:20438 msgid "Specifies the level of logging for the ErrorLog file. The value @code{none} stops all logging while @code{debug2} logs everything." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20078 guix-git/doc/guix.texi:24936 +#: guix-git/doc/guix.texi:20440 guix-git/doc/guix.texi:25298 msgid "Defaults to @samp{info}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20080 +#: guix-git/doc/guix.texi:20442 #, no-wrap msgid "{@code{cups-configuration} parameter} log-time-format log-time-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20083 +#: guix-git/doc/guix.texi:20445 msgid "Specifies the format of the date and time in the log files. The value @code{standard} logs whole seconds while @code{usecs} logs microseconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20085 +#: guix-git/doc/guix.texi:20447 msgid "Defaults to @samp{standard}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20087 +#: guix-git/doc/guix.texi:20449 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20090 +#: guix-git/doc/guix.texi:20452 msgid "Specifies the maximum number of simultaneous clients that are allowed by the scheduler." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20094 +#: guix-git/doc/guix.texi:20456 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-clients-per-host" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20097 +#: guix-git/doc/guix.texi:20459 msgid "Specifies the maximum number of simultaneous clients that are allowed from a single address." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20101 +#: guix-git/doc/guix.texi:20463 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-copies" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20104 +#: guix-git/doc/guix.texi:20466 msgid "Specifies the maximum number of copies that a user can print of each job." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20106 +#: guix-git/doc/guix.texi:20468 msgid "Defaults to @samp{9999}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20108 +#: guix-git/doc/guix.texi:20470 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-hold-time" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20112 +#: guix-git/doc/guix.texi:20474 msgid "Specifies the maximum time a job may remain in the @code{indefinite} hold state before it is canceled. A value of 0 disables cancellation of held jobs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20116 +#: guix-git/doc/guix.texi:20478 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20119 +#: guix-git/doc/guix.texi:20481 msgid "Specifies the maximum number of simultaneous jobs that are allowed. Set to 0 to allow an unlimited number of jobs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20121 +#: guix-git/doc/guix.texi:20483 msgid "Defaults to @samp{500}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20123 +#: guix-git/doc/guix.texi:20485 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs-per-printer" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20126 +#: guix-git/doc/guix.texi:20488 msgid "Specifies the maximum number of simultaneous jobs that are allowed per printer. A value of 0 allows up to MaxJobs jobs per printer." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20130 +#: guix-git/doc/guix.texi:20492 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs-per-user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20133 +#: guix-git/doc/guix.texi:20495 msgid "Specifies the maximum number of simultaneous jobs that are allowed per user. A value of 0 allows up to MaxJobs jobs per user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20137 +#: guix-git/doc/guix.texi:20499 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-job-time" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20140 +#: guix-git/doc/guix.texi:20502 msgid "Specifies the maximum time a job may take to print before it is canceled, in seconds. Set to 0 to disable cancellation of ``stuck'' jobs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20142 +#: guix-git/doc/guix.texi:20504 msgid "Defaults to @samp{10800}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20144 +#: guix-git/doc/guix.texi:20506 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-log-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20147 +#: guix-git/doc/guix.texi:20509 msgid "Specifies the maximum size of the log files before they are rotated, in bytes. The value 0 disables log rotation." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20149 +#: guix-git/doc/guix.texi:20511 msgid "Defaults to @samp{1048576}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20151 +#: guix-git/doc/guix.texi:20513 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer multiple-operation-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20154 +#: guix-git/doc/guix.texi:20516 msgid "Specifies the maximum amount of time to allow between files in a multiple file print job, in seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20156 guix-git/doc/guix.texi:20367 +#: guix-git/doc/guix.texi:20518 guix-git/doc/guix.texi:20729 msgid "Defaults to @samp{900}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20158 +#: guix-git/doc/guix.texi:20520 #, no-wrap msgid "{@code{cups-configuration} parameter} string page-log-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20163 +#: guix-git/doc/guix.texi:20525 msgid "Specifies the format of PageLog lines. Sequences beginning with percent (@samp{%}) characters are replaced with the corresponding information, while all other characters are copied literally. The following percent sequences are recognized:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20165 +#: guix-git/doc/guix.texi:20527 #, no-wrap msgid "%%" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20167 +#: guix-git/doc/guix.texi:20529 msgid "insert a single percent character" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20168 +#: guix-git/doc/guix.texi:20530 #, no-wrap msgid "%@{name@}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20170 +#: guix-git/doc/guix.texi:20532 msgid "insert the value of the specified IPP attribute" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20171 +#: guix-git/doc/guix.texi:20533 #, no-wrap msgid "%C" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20173 +#: guix-git/doc/guix.texi:20535 msgid "insert the number of copies for the current page" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20174 +#: guix-git/doc/guix.texi:20536 #, no-wrap msgid "%P" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20176 +#: guix-git/doc/guix.texi:20538 msgid "insert the current page number" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20177 +#: guix-git/doc/guix.texi:20539 #, no-wrap msgid "%T" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20179 +#: guix-git/doc/guix.texi:20541 msgid "insert the current date and time in common log format" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20180 +#: guix-git/doc/guix.texi:20542 #, no-wrap msgid "%j" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20182 +#: guix-git/doc/guix.texi:20544 msgid "insert the job ID" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20183 guix-git/doc/guix.texi:22140 +#: guix-git/doc/guix.texi:20545 guix-git/doc/guix.texi:22502 #, no-wrap msgid "%p" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20185 +#: guix-git/doc/guix.texi:20547 msgid "insert the printer name" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20186 guix-git/doc/guix.texi:22163 +#: guix-git/doc/guix.texi:20548 guix-git/doc/guix.texi:22525 #, no-wrap msgid "%u" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20188 +#: guix-git/doc/guix.texi:20550 msgid "insert the username" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20194 +#: guix-git/doc/guix.texi:20556 msgid "A value of the empty string disables page logging. The string @code{%p %u %j %T %P %C %@{job-billing@} %@{job-originating-host-name@} %@{job-name@} %@{media@} %@{sides@}} creates a page log with the standard items." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20198 +#: guix-git/doc/guix.texi:20560 #, no-wrap msgid "{@code{cups-configuration} parameter} environment-variables environment-variables" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20201 +#: guix-git/doc/guix.texi:20563 msgid "Passes the specified environment variable(s) to child processes; a list of strings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20205 +#: guix-git/doc/guix.texi:20567 #, no-wrap msgid "{@code{cups-configuration} parameter} policy-configuration-list policies" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20207 +#: guix-git/doc/guix.texi:20569 msgid "Specifies named access control policies." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20209 +#: guix-git/doc/guix.texi:20571 msgid "Available @code{policy-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20210 +#: guix-git/doc/guix.texi:20572 #, no-wrap msgid "{@code{policy-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20212 +#: guix-git/doc/guix.texi:20574 msgid "Name of the policy." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20214 +#: guix-git/doc/guix.texi:20576 #, no-wrap msgid "{@code{policy-configuration} parameter} string job-private-access" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20224 +#: guix-git/doc/guix.texi:20586 msgid "Specifies an access list for a job's private values. @code{@@ACL} maps to the printer's requesting-user-name-allowed or requesting-user-name-denied values. @code{@@OWNER} maps to the job's owner. @code{@@SYSTEM} maps to the groups listed for the @code{system-group} field of the @code{files-configuration}, which is reified into the @code{cups-files.conf(5)} file. Other possible elements of the access list include specific user names, and @code{@@@var{group}} to indicate members of a specific group. The access list may also be simply @code{all} or @code{default}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20226 guix-git/doc/guix.texi:20248 +#: guix-git/doc/guix.texi:20588 guix-git/doc/guix.texi:20610 msgid "Defaults to @samp{\"@@OWNER @@SYSTEM\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20228 +#: guix-git/doc/guix.texi:20590 #, no-wrap msgid "{@code{policy-configuration} parameter} string job-private-values" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20231 guix-git/doc/guix.texi:20253 +#: guix-git/doc/guix.texi:20593 guix-git/doc/guix.texi:20615 msgid "Specifies the list of job values to make private, or @code{all}, @code{default}, or @code{none}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20234 +#: guix-git/doc/guix.texi:20596 msgid "Defaults to @samp{\"job-name job-originating-host-name job-originating-user-name phone\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20236 +#: guix-git/doc/guix.texi:20598 #, no-wrap msgid "{@code{policy-configuration} parameter} string subscription-private-access" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20246 +#: guix-git/doc/guix.texi:20608 msgid "Specifies an access list for a subscription's private values. @code{@@ACL} maps to the printer's requesting-user-name-allowed or requesting-user-name-denied values. @code{@@OWNER} maps to the job's owner. @code{@@SYSTEM} maps to the groups listed for the @code{system-group} field of the @code{files-configuration}, which is reified into the @code{cups-files.conf(5)} file. Other possible elements of the access list include specific user names, and @code{@@@var{group}} to indicate members of a specific group. The access list may also be simply @code{all} or @code{default}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20250 +#: guix-git/doc/guix.texi:20612 #, no-wrap msgid "{@code{policy-configuration} parameter} string subscription-private-values" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20256 +#: guix-git/doc/guix.texi:20618 msgid "Defaults to @samp{\"notify-events notify-pull-method notify-recipient-uri notify-subscriber-user-name notify-user-data\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20258 +#: guix-git/doc/guix.texi:20620 #, no-wrap msgid "{@code{policy-configuration} parameter} operation-access-control-list access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20260 +#: guix-git/doc/guix.texi:20622 msgid "Access control by IPP operation." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20265 +#: guix-git/doc/guix.texi:20627 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean-or-non-negative-integer preserve-job-files" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20270 +#: guix-git/doc/guix.texi:20632 msgid "Specifies whether job files (documents) are preserved after a job is printed. If a numeric value is specified, job files are preserved for the indicated number of seconds after printing. Otherwise a boolean value applies indefinitely." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20272 +#: guix-git/doc/guix.texi:20634 msgid "Defaults to @samp{86400}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20274 +#: guix-git/doc/guix.texi:20636 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean-or-non-negative-integer preserve-job-history" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20279 +#: guix-git/doc/guix.texi:20641 msgid "Specifies whether the job history is preserved after a job is printed. If a numeric value is specified, the job history is preserved for the indicated number of seconds after printing. If @code{#t}, the job history is preserved until the MaxJobs limit is reached." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20283 +#: guix-git/doc/guix.texi:20645 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer reload-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20286 +#: guix-git/doc/guix.texi:20648 msgid "Specifies the amount of time to wait for job completion before restarting the scheduler." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20290 +#: guix-git/doc/guix.texi:20652 #, no-wrap msgid "{@code{cups-configuration} parameter} string rip-cache" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20293 +#: guix-git/doc/guix.texi:20655 msgid "Specifies the maximum amount of memory to use when converting documents into bitmaps for a printer." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20295 +#: guix-git/doc/guix.texi:20657 msgid "Defaults to @samp{\"128m\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20297 +#: guix-git/doc/guix.texi:20659 #, no-wrap msgid "{@code{cups-configuration} parameter} string server-admin" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20299 +#: guix-git/doc/guix.texi:20661 msgid "Specifies the email address of the server administrator." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20301 +#: guix-git/doc/guix.texi:20663 msgid "Defaults to @samp{\"root@@localhost.localdomain\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20303 +#: guix-git/doc/guix.texi:20665 #, no-wrap msgid "{@code{cups-configuration} parameter} host-name-list-or-* server-alias" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20311 +#: guix-git/doc/guix.texi:20673 msgid "The ServerAlias directive is used for HTTP Host header validation when clients connect to the scheduler from external interfaces. Using the special name @code{*} can expose your system to known browser-based DNS rebinding attacks, even when accessing sites through a firewall. If the auto-discovery of alternate names does not work, we recommend listing each alternate name with a ServerAlias directive instead of using @code{*}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20313 +#: guix-git/doc/guix.texi:20675 msgid "Defaults to @samp{*}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20315 +#: guix-git/doc/guix.texi:20677 #, no-wrap msgid "{@code{cups-configuration} parameter} string server-name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20317 +#: guix-git/doc/guix.texi:20679 msgid "Specifies the fully-qualified host name of the server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20319 guix-git/doc/guix.texi:25449 -#: guix-git/doc/guix.texi:25494 +#: guix-git/doc/guix.texi:20681 msgid "Defaults to @samp{\"localhost\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20321 +#: guix-git/doc/guix.texi:20683 #, no-wrap msgid "{@code{cups-configuration} parameter} server-tokens server-tokens" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20329 +#: guix-git/doc/guix.texi:20691 msgid "Specifies what information is included in the Server header of HTTP responses. @code{None} disables the Server header. @code{ProductOnly} reports @code{CUPS}. @code{Major} reports @code{CUPS 2}. @code{Minor} reports @code{CUPS 2.0}. @code{Minimal} reports @code{CUPS 2.0.0}. @code{OS} reports @code{CUPS 2.0.0 (@var{uname})} where @var{uname} is the output of the @code{uname} command. @code{Full} reports @code{CUPS 2.0.0 (@var{uname}) IPP/2.0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20331 +#: guix-git/doc/guix.texi:20693 msgid "Defaults to @samp{Minimal}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20333 +#: guix-git/doc/guix.texi:20695 #, no-wrap msgid "{@code{cups-configuration} parameter} multiline-string-list ssl-listen" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20338 +#: guix-git/doc/guix.texi:20700 msgid "Listens on the specified interfaces for encrypted connections. Valid values are of the form @var{address}:@var{port}, where @var{address} is either an IPv6 address enclosed in brackets, an IPv4 address, or @code{*} to indicate all addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20342 +#: guix-git/doc/guix.texi:20704 #, no-wrap msgid "{@code{cups-configuration} parameter} ssl-options ssl-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20352 +#: guix-git/doc/guix.texi:20714 msgid "Sets encryption options. By default, CUPS only supports encryption using TLS v1.0 or higher using known secure cipher suites. Security is reduced when @code{Allow} options are used, and enhanced when @code{Deny} options are used. The @code{AllowRC4} option enables the 128-bit RC4 cipher suites, which are required for some older clients. The @code{AllowSSL3} option enables SSL v3.0, which is required for some older clients that do not support TLS v1.0. The @code{DenyCBC} option disables all CBC cipher suites. The @code{DenyTLS1.0} option disables TLS v1.0 support - this sets the minimum protocol version to TLS v1.1." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20356 +#: guix-git/doc/guix.texi:20718 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean strict-conformance?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20359 +#: guix-git/doc/guix.texi:20721 msgid "Specifies whether the scheduler requires clients to strictly adhere to the IPP specifications." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20363 +#: guix-git/doc/guix.texi:20725 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20365 +#: guix-git/doc/guix.texi:20727 msgid "Specifies the HTTP request timeout, in seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20370 +#: guix-git/doc/guix.texi:20732 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean web-interface?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20372 +#: guix-git/doc/guix.texi:20734 msgid "Specifies whether the web interface is enabled." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20382 +#: guix-git/doc/guix.texi:20744 msgid "At this point you're probably thinking ``oh dear, Guix manual, I like you but you can stop already with the configuration options''. Indeed. However, one more point: it could be that you have an existing @code{cupsd.conf} that you want to use. In that case, you can pass an @code{opaque-cups-configuration} as the configuration of a @code{cups-service-type}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20384 +#: guix-git/doc/guix.texi:20746 msgid "Available @code{opaque-cups-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20385 +#: guix-git/doc/guix.texi:20747 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} package cups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20389 +#: guix-git/doc/guix.texi:20751 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} string cupsd.conf" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20391 +#: guix-git/doc/guix.texi:20753 msgid "The contents of the @code{cupsd.conf}, as a string." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20393 +#: guix-git/doc/guix.texi:20755 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} string cups-files.conf" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20395 +#: guix-git/doc/guix.texi:20757 msgid "The contents of the @code{cups-files.conf} file, as a string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20400 +#: guix-git/doc/guix.texi:20762 msgid "For example, if your @code{cupsd.conf} and @code{cups-files.conf} are in strings of the same name, you could instantiate a CUPS service like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20406 +#: guix-git/doc/guix.texi:20768 #, no-wrap msgid "" "(service cups-service-type\n" @@ -36414,238 +37026,238 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20417 +#: guix-git/doc/guix.texi:20779 msgid "The @code{(gnu services desktop)} module provides services that are usually useful in the context of a ``desktop'' setup---that is, on a machine running a graphical display server, possibly with graphical user interfaces, etc. It also defines services that provide specific desktop environments like GNOME, Xfce or MATE." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20421 +#: guix-git/doc/guix.texi:20783 msgid "To simplify things, the module defines a variable containing the set of services that users typically expect on a machine with a graphical environment and networking:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20422 +#: guix-git/doc/guix.texi:20784 #, no-wrap msgid "{Scheme Variable} %desktop-services" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20425 +#: guix-git/doc/guix.texi:20787 msgid "This is a list of services that builds upon @code{%base-services} and adds or adjusts services for a typical ``desktop'' setup." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20436 +#: guix-git/doc/guix.texi:20798 msgid "In particular, it adds a graphical login manager (@pxref{X Window, @code{gdm-service-type}}), screen lockers, a network management tool (@pxref{Networking Services, @code{network-manager-service-type}}) with modem support (@pxref{Networking Services, @code{modem-manager-service-type}}), energy and color management services, the @code{elogind} login and seat manager, the Polkit privilege service, the GeoClue location service, the AccountsService daemon that allows authorized users change system passwords, an NTP client (@pxref{Networking Services}), the Avahi daemon, and has the name service switch service configured to be able to use @code{nss-mdns} (@pxref{Name Service Switch, mDNS})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20441 +#: guix-git/doc/guix.texi:20803 msgid "The @code{%desktop-services} variable can be used as the @code{services} field of an @code{operating-system} declaration (@pxref{operating-system Reference, @code{services}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20464 +#: guix-git/doc/guix.texi:20826 msgid "Additionally, the @code{gnome-desktop-service-type}, @code{xfce-desktop-service}, @code{mate-desktop-service-type}, @code{lxqt-desktop-service-type} and @code{enlightenment-desktop-service-type} procedures can add GNOME, Xfce, MATE and/or Enlightenment to a system. To ``add GNOME'' means that system-level services like the backlight adjustment helpers and the power management utilities are added to the system, extending @code{polkit} and @code{dbus} appropriately, allowing GNOME to operate with elevated privileges on a limited number of special-purpose system interfaces. Additionally, adding a service made by @code{gnome-desktop-service-type} adds the GNOME metapackage to the system profile. Likewise, adding the Xfce service not only adds the @code{xfce} metapackage to the system profile, but it also gives the Thunar file manager the ability to open a ``root-mode'' file management window, if the user authenticates using the administrator's password via the standard polkit graphical interface. To ``add MATE'' means that @code{polkit} and @code{dbus} are extended appropriately, allowing MATE to operate with elevated privileges on a limited number of special-purpose system interfaces. Additionally, adding a service of type @code{mate-desktop-service-type} adds the MATE metapackage to the system profile. ``Adding Enlightenment'' means that @code{dbus} is extended appropriately, and several of Enlightenment's binaries are set as setuid, allowing Enlightenment's screen locker and other functionality to work as expected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20474 +#: guix-git/doc/guix.texi:20836 msgid "The desktop environments in Guix use the Xorg display server by default. If you'd like to use the newer display server protocol called Wayland, you need to enable Wayland support in GDM (@pxref{wayland-gdm}). Another solution is to use the @code{sddm-service} instead of GDM as the graphical login manager. You should then select the ``GNOME (Wayland)'' session in SDDM@. Alternatively you can also try starting GNOME on Wayland manually from a TTY with the command ``XDG_SESSION_TYPE=wayland exec dbus-run-session gnome-session``. Currently only GNOME has support for Wayland." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20475 +#: guix-git/doc/guix.texi:20837 #, no-wrap msgid "{Scheme Variable} gnome-desktop-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20479 +#: guix-git/doc/guix.texi:20841 msgid "This is the type of the service that adds the @uref{https://www.gnome.org, GNOME} desktop environment. Its value is a @code{gnome-desktop-configuration} object (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20482 +#: guix-git/doc/guix.texi:20844 msgid "This service adds the @code{gnome} package to the system profile, and extends polkit with the actions from @code{gnome-settings-daemon}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20484 +#: guix-git/doc/guix.texi:20846 #, no-wrap msgid "{Data Type} gnome-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20486 +#: guix-git/doc/guix.texi:20848 msgid "Configuration record for the GNOME desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20488 +#: guix-git/doc/guix.texi:20850 #, no-wrap msgid "@code{gnome} (default: @code{gnome})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20490 +#: guix-git/doc/guix.texi:20852 msgid "The GNOME package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20493 +#: guix-git/doc/guix.texi:20855 #, no-wrap msgid "{Scheme Variable} xfce-desktop-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20497 +#: guix-git/doc/guix.texi:20859 msgid "This is the type of a service to run the @uref{Xfce, https://xfce.org/} desktop environment. Its value is an @code{xfce-desktop-configuration} object (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20502 +#: guix-git/doc/guix.texi:20864 msgid "This service adds the @code{xfce} package to the system profile, and extends polkit with the ability for @code{thunar} to manipulate the file system as root from within a user session, after the user has authenticated with the administrator's password." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20508 +#: guix-git/doc/guix.texi:20870 msgid "Note that @code{xfce4-panel} and its plugin packages should be installed in the same profile to ensure compatibility. When using this service, you should add extra plugins (@code{xfce4-whiskermenu-plugin}, @code{xfce4-weather-plugin}, etc.) to the @code{packages} field of your @code{operating-system}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20510 +#: guix-git/doc/guix.texi:20872 #, no-wrap msgid "{Data Type} xfce-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20512 +#: guix-git/doc/guix.texi:20874 msgid "Configuration record for the Xfce desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20514 +#: guix-git/doc/guix.texi:20876 #, no-wrap msgid "@code{xfce} (default: @code{xfce})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20516 +#: guix-git/doc/guix.texi:20878 msgid "The Xfce package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20519 +#: guix-git/doc/guix.texi:20881 #, no-wrap msgid "{Scheme Variable} mate-desktop-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20523 +#: guix-git/doc/guix.texi:20885 msgid "This is the type of the service that runs the @uref{https://mate-desktop.org/, MATE desktop environment}. Its value is a @code{mate-desktop-configuration} object (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20527 +#: guix-git/doc/guix.texi:20889 msgid "This service adds the @code{mate} package to the system profile, and extends polkit with the actions from @code{mate-settings-daemon}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20529 +#: guix-git/doc/guix.texi:20891 #, no-wrap msgid "{Data Type} mate-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20531 +#: guix-git/doc/guix.texi:20893 msgid "Configuration record for the MATE desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20533 +#: guix-git/doc/guix.texi:20895 #, no-wrap msgid "@code{mate} (default: @code{mate})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20535 +#: guix-git/doc/guix.texi:20897 msgid "The MATE package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20538 +#: guix-git/doc/guix.texi:20900 #, no-wrap msgid "{Scheme Variable} lxqt-desktop-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20542 +#: guix-git/doc/guix.texi:20904 msgid "This is the type of the service that runs the @uref{https://lxqt-project.org, LXQt desktop environment}. Its value is a @code{lxqt-desktop-configuration} object (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20545 +#: guix-git/doc/guix.texi:20907 msgid "This service adds the @code{lxqt} package to the system profile." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20547 +#: guix-git/doc/guix.texi:20909 #, no-wrap msgid "{Data Type} lxqt-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20549 +#: guix-git/doc/guix.texi:20911 msgid "Configuration record for the LXQt desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20551 +#: guix-git/doc/guix.texi:20913 #, no-wrap msgid "@code{lxqt} (default: @code{lxqt})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20553 +#: guix-git/doc/guix.texi:20915 msgid "The LXQT package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20556 +#: guix-git/doc/guix.texi:20918 #, no-wrap msgid "{Scheme Variable} enlightenment-desktop-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20559 +#: guix-git/doc/guix.texi:20921 msgid "Return a service that adds the @code{enlightenment} package to the system profile, and extends dbus with actions from @code{efl}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20561 +#: guix-git/doc/guix.texi:20923 #, no-wrap msgid "{Data Type} enlightenment-desktop-service-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20563 +#: guix-git/doc/guix.texi:20925 #, no-wrap msgid "@code{enlightenment} (default: @code{enlightenment})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20565 +#: guix-git/doc/guix.texi:20927 msgid "The enlightenment package to use." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20573 +#: guix-git/doc/guix.texi:20935 msgid "Because the GNOME, Xfce and MATE desktop services pull in so many packages, the default @code{%desktop-services} variable doesn't include any of them by default. To add GNOME, Xfce or MATE, just @code{cons} them onto @code{%desktop-services} in the @code{services} field of your @code{operating-system}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20584 +#: guix-git/doc/guix.texi:20946 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -36660,576 +37272,576 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20588 +#: guix-git/doc/guix.texi:20950 msgid "These desktop environments will then be available as options in the graphical login window." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20592 +#: guix-git/doc/guix.texi:20954 msgid "The actual service definitions included in @code{%desktop-services} and provided by @code{(gnu services dbus)} and @code{(gnu services desktop)} are described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20593 +#: guix-git/doc/guix.texi:20955 #, no-wrap msgid "{Scheme Procedure} dbus-service [#:dbus @var{dbus}] [#:services '()]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20596 +#: guix-git/doc/guix.texi:20958 msgid "Return a service that runs the ``system bus'', using @var{dbus}, with support for @var{services}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20600 +#: guix-git/doc/guix.texi:20962 msgid "@uref{https://dbus.freedesktop.org/, D-Bus} is an inter-process communication facility. Its system bus is used to allow system services to communicate and to be notified of system-wide events." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20605 +#: guix-git/doc/guix.texi:20967 msgid "@var{services} must be a list of packages that provide an @file{etc/dbus-1/system.d} directory containing additional D-Bus configuration and policy files. For example, to allow avahi-daemon to use the system bus, @var{services} must be equal to @code{(list avahi)}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20607 +#: guix-git/doc/guix.texi:20969 #, no-wrap msgid "{Scheme Procedure} elogind-service [#:config @var{config}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20613 +#: guix-git/doc/guix.texi:20975 msgid "Return a service that runs the @code{elogind} login and seat management daemon. @uref{https://github.com/elogind/elogind, Elogind} exposes a D-Bus interface that can be used to know which users are logged in, know what kind of sessions they have open, suspend the system, inhibit system suspend, reboot the system, and other tasks." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20617 +#: guix-git/doc/guix.texi:20979 msgid "Elogind handles most system-level power events for a computer, for example suspending the system when a lid is closed, or shutting it down when the power button is pressed." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20622 +#: guix-git/doc/guix.texi:20984 msgid "The @var{config} keyword argument specifies the configuration for elogind, and should be the result of an @code{(elogind-configuration (@var{parameter} @var{value})...)} invocation. Available parameters and their default values are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20624 +#: guix-git/doc/guix.texi:20986 #, no-wrap msgid "kill-user-processes?" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20626 guix-git/doc/guix.texi:20646 -#: guix-git/doc/guix.texi:20648 guix-git/doc/guix.texi:20650 -#: guix-git/doc/guix.texi:20662 +#: guix-git/doc/guix.texi:20988 guix-git/doc/guix.texi:21008 +#: guix-git/doc/guix.texi:21010 guix-git/doc/guix.texi:21012 +#: guix-git/doc/guix.texi:21024 msgid "#f" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20626 +#: guix-git/doc/guix.texi:20988 #, no-wrap msgid "kill-only-users" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20628 guix-git/doc/guix.texi:20668 +#: guix-git/doc/guix.texi:20990 guix-git/doc/guix.texi:21030 msgid "()" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20628 +#: guix-git/doc/guix.texi:20990 #, no-wrap msgid "kill-exclude-users" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20630 +#: guix-git/doc/guix.texi:20992 msgid "(\"root\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20630 +#: guix-git/doc/guix.texi:20992 #, no-wrap msgid "inhibit-delay-max-seconds" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20632 +#: guix-git/doc/guix.texi:20994 msgid "5" msgstr "5" #. type: item -#: guix-git/doc/guix.texi:20632 +#: guix-git/doc/guix.texi:20994 #, no-wrap msgid "handle-power-key" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20634 +#: guix-git/doc/guix.texi:20996 msgid "poweroff" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20634 +#: guix-git/doc/guix.texi:20996 #, no-wrap msgid "handle-suspend-key" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20636 guix-git/doc/guix.texi:20640 +#: guix-git/doc/guix.texi:20998 guix-git/doc/guix.texi:21002 msgid "suspend" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20636 +#: guix-git/doc/guix.texi:20998 #, no-wrap msgid "handle-hibernate-key" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20638 +#: guix-git/doc/guix.texi:21000 msgid "hibernate" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20638 +#: guix-git/doc/guix.texi:21000 #, no-wrap msgid "handle-lid-switch" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20640 +#: guix-git/doc/guix.texi:21002 #, no-wrap msgid "handle-lid-switch-docked" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20642 guix-git/doc/guix.texi:20644 -#: guix-git/doc/guix.texi:20656 +#: guix-git/doc/guix.texi:21004 guix-git/doc/guix.texi:21006 +#: guix-git/doc/guix.texi:21018 msgid "ignore" msgstr "ohita" #. type: item -#: guix-git/doc/guix.texi:20642 +#: guix-git/doc/guix.texi:21004 #, no-wrap msgid "handle-lid-switch-external-power" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20644 +#: guix-git/doc/guix.texi:21006 #, no-wrap msgid "power-key-ignore-inhibited?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20646 +#: guix-git/doc/guix.texi:21008 #, no-wrap msgid "suspend-key-ignore-inhibited?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20648 +#: guix-git/doc/guix.texi:21010 #, no-wrap msgid "hibernate-key-ignore-inhibited?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20650 +#: guix-git/doc/guix.texi:21012 #, no-wrap msgid "lid-switch-ignore-inhibited?" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20652 guix-git/doc/guix.texi:20664 +#: guix-git/doc/guix.texi:21014 guix-git/doc/guix.texi:21026 msgid "#t" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20652 +#: guix-git/doc/guix.texi:21014 #, no-wrap msgid "holdoff-timeout-seconds" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20654 +#: guix-git/doc/guix.texi:21016 msgid "30" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20654 +#: guix-git/doc/guix.texi:21016 #, no-wrap msgid "idle-action" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20656 +#: guix-git/doc/guix.texi:21018 #, no-wrap msgid "idle-action-seconds" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20658 +#: guix-git/doc/guix.texi:21020 msgid "(* 30 60)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20658 +#: guix-git/doc/guix.texi:21020 #, no-wrap msgid "runtime-directory-size-percent" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20660 +#: guix-git/doc/guix.texi:21022 msgid "10" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20660 +#: guix-git/doc/guix.texi:21022 #, no-wrap msgid "runtime-directory-size" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20662 +#: guix-git/doc/guix.texi:21024 #, no-wrap msgid "remove-ipc?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20664 +#: guix-git/doc/guix.texi:21026 #, no-wrap msgid "suspend-state" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20666 +#: guix-git/doc/guix.texi:21028 msgid "(\"mem\" \"standby\" \"freeze\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20666 +#: guix-git/doc/guix.texi:21028 #, no-wrap msgid "suspend-mode" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20668 +#: guix-git/doc/guix.texi:21030 #, no-wrap msgid "hibernate-state" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20670 guix-git/doc/guix.texi:20674 +#: guix-git/doc/guix.texi:21032 guix-git/doc/guix.texi:21036 msgid "(\"disk\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20670 +#: guix-git/doc/guix.texi:21032 #, no-wrap msgid "hibernate-mode" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20672 +#: guix-git/doc/guix.texi:21034 msgid "(\"platform\" \"shutdown\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20672 +#: guix-git/doc/guix.texi:21034 #, no-wrap msgid "hybrid-sleep-state" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20674 +#: guix-git/doc/guix.texi:21036 #, no-wrap msgid "hybrid-sleep-mode" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20676 +#: guix-git/doc/guix.texi:21038 msgid "(\"suspend\" \"platform\" \"shutdown\")" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20679 +#: guix-git/doc/guix.texi:21041 #, no-wrap msgid "{Scheme Procedure} accountsservice-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20687 +#: guix-git/doc/guix.texi:21049 msgid "[#:accountsservice @var{accountsservice}] Return a service that runs AccountsService, a system service that can list available accounts, change their passwords, and so on. AccountsService integrates with PolicyKit to enable unprivileged users to acquire the capability to modify their system configuration. @uref{https://www.freedesktop.org/wiki/Software/AccountsService/, the accountsservice web site} for more information." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20690 +#: guix-git/doc/guix.texi:21052 msgid "The @var{accountsservice} keyword argument is the @code{accountsservice} package to expose as a service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20692 +#: guix-git/doc/guix.texi:21054 #, no-wrap msgid "{Scheme Procedure} polkit-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20701 +#: guix-git/doc/guix.texi:21063 msgid "[#:polkit @var{polkit}] Return a service that runs the @uref{https://www.freedesktop.org/wiki/Software/polkit/, Polkit privilege management service}, which allows system administrators to grant access to privileged operations in a structured way. By querying the Polkit service, a privileged system component can know when it should grant additional capabilities to ordinary users. For example, an ordinary user can be granted the capability to suspend the system if the user is logged in locally." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20703 +#: guix-git/doc/guix.texi:21065 #, no-wrap msgid "{Scheme Variable} polkit-wheel-service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20708 +#: guix-git/doc/guix.texi:21070 msgid "Service that adds the @code{wheel} group as admins to the Polkit service. This makes it so that users in the @code{wheel} group are queried for their own passwords when performing administrative actions instead of @code{root}'s, similar to the behaviour used by @code{sudo}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20710 +#: guix-git/doc/guix.texi:21072 #, no-wrap msgid "{Scheme Variable} upower-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20714 +#: guix-git/doc/guix.texi:21076 msgid "Service that runs @uref{https://upower.freedesktop.org/, @command{upowerd}}, a system-wide monitor for power consumption and battery levels, with the given configuration settings." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20717 +#: guix-git/doc/guix.texi:21079 msgid "It implements the @code{org.freedesktop.UPower} D-Bus interface, and is notably used by GNOME." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20719 +#: guix-git/doc/guix.texi:21081 #, no-wrap msgid "{Data Type} upower-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20721 +#: guix-git/doc/guix.texi:21083 msgid "Data type representation the configuration for UPower." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20724 +#: guix-git/doc/guix.texi:21086 #, no-wrap msgid "@code{upower} (default: @var{upower})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20726 +#: guix-git/doc/guix.texi:21088 msgid "Package to use for @code{upower}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20727 +#: guix-git/doc/guix.texi:21089 #, no-wrap msgid "@code{watts-up-pro?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20729 +#: guix-git/doc/guix.texi:21091 msgid "Enable the Watts Up Pro device." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20730 +#: guix-git/doc/guix.texi:21092 #, no-wrap msgid "@code{poll-batteries?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20732 +#: guix-git/doc/guix.texi:21094 msgid "Enable polling the kernel for battery level changes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20733 +#: guix-git/doc/guix.texi:21095 #, no-wrap msgid "@code{ignore-lid?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20735 +#: guix-git/doc/guix.texi:21097 msgid "Ignore the lid state, this can be useful if it's incorrect on a device." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20736 +#: guix-git/doc/guix.texi:21098 #, no-wrap msgid "@code{use-percentage-for-policy?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20739 +#: guix-git/doc/guix.texi:21101 msgid "Whether battery percentage based policy should be used. The default is to use the time left, change to @code{#t} to use the percentage." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20740 +#: guix-git/doc/guix.texi:21102 #, no-wrap msgid "@code{percentage-low} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20743 +#: guix-git/doc/guix.texi:21105 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which the battery is considered low." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20744 +#: guix-git/doc/guix.texi:21106 #, no-wrap msgid "@code{percentage-critical} (default: @code{3})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20747 +#: guix-git/doc/guix.texi:21109 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which the battery is considered critical." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20748 +#: guix-git/doc/guix.texi:21110 #, no-wrap msgid "@code{percentage-action} (default: @code{2})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20751 +#: guix-git/doc/guix.texi:21113 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which action will be taken." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20752 +#: guix-git/doc/guix.texi:21114 #, no-wrap msgid "@code{time-low} (default: @code{1200})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20755 +#: guix-git/doc/guix.texi:21117 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which the battery is considered low." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20756 +#: guix-git/doc/guix.texi:21118 #, no-wrap msgid "@code{time-critical} (default: @code{300})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20759 +#: guix-git/doc/guix.texi:21121 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which the battery is considered critical." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20760 +#: guix-git/doc/guix.texi:21122 #, no-wrap msgid "@code{time-action} (default: @code{120})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20763 +#: guix-git/doc/guix.texi:21125 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which action will be taken." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20764 +#: guix-git/doc/guix.texi:21126 #, no-wrap msgid "@code{critical-power-action} (default: @code{'hybrid-sleep})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20767 +#: guix-git/doc/guix.texi:21129 msgid "The action taken when @code{percentage-action} or @code{time-action} is reached (depending on the configuration of @code{use-percentage-for-policy?})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20769 +#: guix-git/doc/guix.texi:21131 msgid "Possible values are:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20773 +#: guix-git/doc/guix.texi:21135 msgid "'power-off" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20776 +#: guix-git/doc/guix.texi:21138 msgid "'hibernate" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:20779 +#: guix-git/doc/guix.texi:21141 msgid "@code{'hybrid-sleep}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20784 +#: guix-git/doc/guix.texi:21146 #, no-wrap msgid "{Scheme Procedure} udisks-service [#:udisks @var{udisks}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20794 +#: guix-git/doc/guix.texi:21156 msgid "Return a service for @uref{https://udisks.freedesktop.org/docs/latest/, UDisks}, a @dfn{disk management} daemon that provides user interfaces with notifications and ways to mount/unmount disks. Programs that talk to UDisks include the @command{udisksctl} command, part of UDisks, and GNOME Disks. Note that Udisks relies on the @command{mount} command, so it will only be able to use the file-system utilities installed in the system profile. For example if you want to be able to mount NTFS file-systems in read and write fashion, you'll need to have @code{ntfs-3g} installed system-wide." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20796 +#: guix-git/doc/guix.texi:21158 #, no-wrap msgid "{Scheme Variable} colord-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20803 +#: guix-git/doc/guix.texi:21165 msgid "This is the type of the service that runs @command{colord}, a system service with a D-Bus interface to manage the color profiles of input and output devices such as screens and scanners. It is notably used by the GNOME Color Manager graphical tool. See @uref{https://www.freedesktop.org/software/colord/, the colord web site} for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20805 +#: guix-git/doc/guix.texi:21167 #, no-wrap msgid "scanner access" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20806 +#: guix-git/doc/guix.texi:21168 #, no-wrap msgid "{Scheme Variable} sane-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20812 +#: guix-git/doc/guix.texi:21174 msgid "This service provides access to scanners @i{via} @uref{http://www.sane-project.org, SANE} by installing the necessary udev rules. It is included in @code{%desktop-services} (@pxref{Desktop Services}) and relies by default on @code{sane-backends-minimal} package (see below) for hardware support." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20814 +#: guix-git/doc/guix.texi:21176 #, no-wrap msgid "{Scheme Variable} sane-backends-minimal" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20817 +#: guix-git/doc/guix.texi:21179 msgid "The default package which the @code{sane-service-type} installs. It supports many recent scanners." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20819 +#: guix-git/doc/guix.texi:21181 #, no-wrap msgid "{Scheme Variable} sane-backends" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20826 +#: guix-git/doc/guix.texi:21188 msgid "This package includes support for all scanners that @code{sane-backends-minimal} supports, plus older Hewlett-Packard scanners supported by @code{hplip} package. In order to use this on a system which relies on @code{%desktop-services}, you may use @code{modify-services} (@pxref{Service Reference, @code{modify-services}}) as illustrated below:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20835 +#: guix-git/doc/guix.texi:21197 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -37243,7 +37855,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20840 +#: guix-git/doc/guix.texi:21202 #, no-wrap msgid "" "(define %my-desktop-services\n" @@ -37254,7 +37866,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20844 +#: guix-git/doc/guix.texi:21206 #, no-wrap msgid "" "(operating-system\n" @@ -37263,214 +37875,214 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20847 +#: guix-git/doc/guix.texi:21209 #, no-wrap msgid "{Scheme Procedure} geoclue-application name [#:allowed? #t] [#:system? #f] [#:users '()]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20856 +#: guix-git/doc/guix.texi:21218 msgid "Return a configuration allowing an application to access GeoClue location data. @var{name} is the Desktop ID of the application, without the @code{.desktop} part. If @var{allowed?} is true, the application will have access to location information by default. The boolean @var{system?} value indicates whether an application is a system component or not. Finally @var{users} is a list of UIDs of all users for which this application is allowed location info access. An empty users list means that all users are allowed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20858 +#: guix-git/doc/guix.texi:21220 #, no-wrap msgid "{Scheme Variable} %standard-geoclue-applications" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20865 +#: guix-git/doc/guix.texi:21227 msgid "The standard list of well-known GeoClue application configurations, granting authority to the GNOME date-and-time utility to ask for the current location in order to set the time zone, and allowing the IceCat and Epiphany web browsers to request location information. IceCat and Epiphany both query the user before allowing a web page to know the user's location." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20867 +#: guix-git/doc/guix.texi:21229 #, no-wrap msgid "{Scheme Procedure} geoclue-service [#:colord @var{colord}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20880 +#: guix-git/doc/guix.texi:21242 msgid "[#:whitelist '()] @ [#:wifi-geolocation-url \"https://location.services.mozilla.com/v1/geolocate?key=geoclue\"] @ [#:submit-data? #f] [#:wifi-submission-url \"https://location.services.mozilla.com/v1/submit?key=geoclue\"] @ [#:submission-nick \"geoclue\"] @ [#:applications %standard-geoclue-applications] Return a service that runs the GeoClue location service. This service provides a D-Bus interface to allow applications to request access to a user's physical location, and optionally to add information to online location databases. See @uref{https://wiki.freedesktop.org/www/Software/GeoClue/, the GeoClue web site} for more information." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20882 +#: guix-git/doc/guix.texi:21244 #, no-wrap msgid "{Scheme Procedure} bluetooth-service [#:bluez @var{bluez}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20889 +#: guix-git/doc/guix.texi:21251 msgid "[@w{#:auto-enable? #f}] Return a service that runs the @command{bluetoothd} daemon, which manages all the Bluetooth devices and provides a number of D-Bus interfaces. When AUTO-ENABLE? is true, the bluetooth controller is powered automatically at boot, which can be useful when using a bluetooth keyboard or mouse." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20891 +#: guix-git/doc/guix.texi:21253 msgid "Users need to be in the @code{lp} group to access the D-Bus service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20893 +#: guix-git/doc/guix.texi:21255 #, no-wrap msgid "{Scheme Variable} gnome-keyring-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20897 +#: guix-git/doc/guix.texi:21259 msgid "This is the type of the service that adds the @uref{https://wiki.gnome.org/Projects/GnomeKeyring, GNOME Keyring}. Its value is a @code{gnome-keyring-configuration} object (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20901 +#: guix-git/doc/guix.texi:21263 msgid "This service adds the @code{gnome-keyring} package to the system profile and extends PAM with entries using @code{pam_gnome_keyring.so}, unlocking a user's login keyring when they log in or setting its password with passwd." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20903 +#: guix-git/doc/guix.texi:21265 #, no-wrap msgid "{Data Type} gnome-keyring-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20905 +#: guix-git/doc/guix.texi:21267 msgid "Configuration record for the GNOME Keyring service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20907 +#: guix-git/doc/guix.texi:21269 #, no-wrap msgid "@code{keyring} (default: @code{gnome-keyring})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20909 +#: guix-git/doc/guix.texi:21271 msgid "The GNOME keyring package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20910 +#: guix-git/doc/guix.texi:21272 #, no-wrap msgid "pam-services" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20915 +#: guix-git/doc/guix.texi:21277 msgid "A list of @code{(@var{service} . @var{kind})} pairs denoting PAM services to extend, where @var{service} is the name of an existing service to extend and @var{kind} is one of @code{login} or @code{passwd}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20921 +#: guix-git/doc/guix.texi:21283 msgid "If @code{login} is given, it adds an optional @code{pam_gnome_keyring.so} to the auth block without arguments and to the session block with @code{auto_start}. If @code{passwd} is given, it adds an optional @code{pam_gnome_keyring.so} to the password block without arguments." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20924 +#: guix-git/doc/guix.texi:21286 msgid "By default, this field contains ``gdm-password'' with the value @code{login} and ``passwd'' is with the value @code{passwd}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20931 +#: guix-git/doc/guix.texi:21293 #, no-wrap msgid "sound support" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20932 +#: guix-git/doc/guix.texi:21294 #, no-wrap msgid "ALSA" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20933 +#: guix-git/doc/guix.texi:21295 #, no-wrap msgid "PulseAudio, sound support" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20938 +#: guix-git/doc/guix.texi:21300 msgid "The @code{(gnu services sound)} module provides a service to configure the Advanced Linux Sound Architecture (ALSA) system, which makes PulseAudio the preferred ALSA output driver." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20939 +#: guix-git/doc/guix.texi:21301 #, no-wrap msgid "{Scheme Variable} alsa-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20944 +#: guix-git/doc/guix.texi:21306 msgid "This is the type for the @uref{https://alsa-project.org/, Advanced Linux Sound Architecture} (ALSA) system, which generates the @file{/etc/asound.conf} configuration file. The value for this type is a @command{alsa-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20947 +#: guix-git/doc/guix.texi:21309 #, no-wrap msgid "(service alsa-service-type)\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20950 +#: guix-git/doc/guix.texi:21312 msgid "See below for details about @code{alsa-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20952 +#: guix-git/doc/guix.texi:21314 #, no-wrap msgid "{Data Type} alsa-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20954 +#: guix-git/doc/guix.texi:21316 msgid "Data type representing the configuration for @code{alsa-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20956 +#: guix-git/doc/guix.texi:21318 #, no-wrap msgid "@code{alsa-plugins} (default: @var{alsa-plugins})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20958 +#: guix-git/doc/guix.texi:21320 msgid "@code{alsa-plugins} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20959 +#: guix-git/doc/guix.texi:21321 #, no-wrap msgid "@code{pulseaudio?} (default: @var{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20962 +#: guix-git/doc/guix.texi:21324 msgid "Whether ALSA applications should transparently be made to use the @uref{https://www.pulseaudio.org/, PulseAudio} sound server." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20966 +#: guix-git/doc/guix.texi:21328 msgid "Using PulseAudio allows you to run several sound-producing applications at the same time and to individual control them @i{via} @command{pavucontrol}, among other things." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20967 +#: guix-git/doc/guix.texi:21329 #, no-wrap msgid "@code{extra-options} (default: @var{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20969 +#: guix-git/doc/guix.texi:21331 msgid "String to append to the @file{/etc/asound.conf} file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20975 +#: guix-git/doc/guix.texi:21337 msgid "Individual users who want to override the system configuration of ALSA can do it with the @file{~/.asoundrc} file:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:20981 +#: guix-git/doc/guix.texi:21343 #, no-wrap msgid "" "# In guix, we have to specify the absolute path for plugins.\n" @@ -37481,7 +38093,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:20990 +#: guix-git/doc/guix.texi:21352 #, no-wrap msgid "" "# Routing ALSA to jack:\n" @@ -37496,7 +38108,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:20996 +#: guix-git/doc/guix.texi:21358 #, no-wrap msgid "" " capture_ports @{\n" @@ -37508,7 +38120,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:21003 +#: guix-git/doc/guix.texi:21365 #, no-wrap msgid "" "pcm.!default @{\n" @@ -37520,104 +38132,104 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21007 +#: guix-git/doc/guix.texi:21369 msgid "See @uref{https://www.alsa-project.org/main/index.php/Asoundrc} for the details." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21008 +#: guix-git/doc/guix.texi:21370 #, no-wrap msgid "{Scheme Variable} pulseaudio-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21012 +#: guix-git/doc/guix.texi:21374 msgid "This is the type for the @uref{https://www.pulseaudio.org/, PulseAudio} sound server. It exists to allow system overrides of the default settings via @code{pulseaudio-configuration}, see below." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:21018 +#: guix-git/doc/guix.texi:21380 msgid "This service overrides per-user configuration files. If you want PulseAudio to honor configuration files in @file{~/.config/pulse} you have to unset the environment variables @env{PULSE_CONFIG} and @env{PULSE_CLIENTCONFIG} in your @file{~/.bash_profile}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:21026 +#: guix-git/doc/guix.texi:21388 msgid "This service on its own does not ensure, that the @code{pulseaudio} package exists on your machine. It merely adds configuration files for it, as detailed below. In the (admittedly unlikely) case, that you find yourself without a @code{pulseaudio} package, consider enabling it through the @code{alsa-service-type} above." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21029 +#: guix-git/doc/guix.texi:21391 #, no-wrap msgid "{Data Type} pulseaudio-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21031 +#: guix-git/doc/guix.texi:21393 msgid "Data type representing the configuration for @code{pulseaudio-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21033 +#: guix-git/doc/guix.texi:21395 #, no-wrap msgid "@code{client-conf} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21038 -msgid "List of settings to set in @file{client.conf}. Accepts a list of strings or a symbol-value pairs. A string will be inserted as-is with a newline added. A pair will be formatted as ``key = value'', again with a newline added." +#: guix-git/doc/guix.texi:21400 +msgid "List of settings to set in @file{client.conf}. Accepts a list of strings or symbol-value pairs. A string will be inserted as-is with a newline added. A pair will be formatted as ``key = value'', again with a newline added." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21039 +#: guix-git/doc/guix.texi:21401 #, no-wrap msgid "@code{daemon-conf} (default: @code{'((flat-volumes . no))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21042 +#: guix-git/doc/guix.texi:21404 msgid "List of settings to set in @file{daemon.conf}, formatted just like @var{client-conf}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21043 +#: guix-git/doc/guix.texi:21405 #, no-wrap msgid "@code{script-file} (default: @code{(file-append pulseaudio \"/etc/pulse/default.pa\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21045 +#: guix-git/doc/guix.texi:21407 msgid "Script file to use as @file{default.pa}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21046 +#: guix-git/doc/guix.texi:21408 #, no-wrap msgid "@code{system-script-file} (default: @code{(file-append pulseaudio \"/etc/pulse/system.pa\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21048 +#: guix-git/doc/guix.texi:21410 msgid "Script file to use as @file{system.pa}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21051 +#: guix-git/doc/guix.texi:21413 #, no-wrap msgid "{Scheme Variable} ladspa-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21054 +#: guix-git/doc/guix.texi:21416 msgid "This service sets the @var{LADSPA_PATH} variable, so that programs, which respect it, e.g. PulseAudio, can load LADSPA plugins." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21057 +#: guix-git/doc/guix.texi:21419 msgid "The following example will setup the service to enable modules from the @code{swh-plugins} package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21061 +#: guix-git/doc/guix.texi:21423 #, no-wrap msgid "" "(service ladspa-service-type\n" @@ -37625,34 +38237,34 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21065 +#: guix-git/doc/guix.texi:21427 msgid "See @uref{http://plugin.org.uk/ladspa-swh/docs/ladspa-swh.html} for the details." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21072 +#: guix-git/doc/guix.texi:21434 #, no-wrap msgid "SQL" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21074 +#: guix-git/doc/guix.texi:21436 msgid "The @code{(gnu services databases)} module provides the following services." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21075 +#: guix-git/doc/guix.texi:21437 #, no-wrap msgid "PostgreSQL" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21079 +#: guix-git/doc/guix.texi:21441 msgid "The following example describes a PostgreSQL service with the default configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21084 +#: guix-git/doc/guix.texi:21446 #, no-wrap msgid "" "(service postgresql-service-type\n" @@ -37661,17 +38273,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21090 +#: guix-git/doc/guix.texi:21452 msgid "If the services fails to start, it may be due to an incompatible cluster already present in @var{data-directory}. Adjust it (or, if you don't need the cluster anymore, delete @var{data-directory}), then restart the service." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21097 +#: guix-git/doc/guix.texi:21459 msgid "Peer authentication is used by default and the @code{postgres} user account has no shell, which prevents the direct execution of @code{psql} commands as this user. To use @code{psql}, you can temporarily log in as @code{postgres} using a shell, create a PostgreSQL superuser with the same name as one of the system users and then create the associated database." msgstr "" #. type: example -#: guix-git/doc/guix.texi:21102 +#: guix-git/doc/guix.texi:21464 #, no-wrap msgid "" "sudo -u postgres -s /bin/sh\n" @@ -37680,101 +38292,101 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21104 +#: guix-git/doc/guix.texi:21466 #, no-wrap msgid "{Data Type} postgresql-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21107 +#: guix-git/doc/guix.texi:21469 msgid "Data type representing the configuration for the @code{postgresql-service-type}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:21109 +#: guix-git/doc/guix.texi:21471 #, no-wrap msgid "postgresql" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21111 +#: guix-git/doc/guix.texi:21473 msgid "PostgreSQL package to use for the service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21112 +#: guix-git/doc/guix.texi:21474 #, no-wrap msgid "@code{port} (default: @code{5432})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21114 +#: guix-git/doc/guix.texi:21476 msgid "Port on which PostgreSQL should listen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21117 +#: guix-git/doc/guix.texi:21479 msgid "Locale to use as the default when creating the database cluster." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21118 +#: guix-git/doc/guix.texi:21480 #, no-wrap msgid "@code{config-file} (default: @code{(postgresql-config-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21122 +#: guix-git/doc/guix.texi:21484 msgid "The configuration file to use when running PostgreSQL@. The default behaviour uses the postgresql-config-file record with the default values for the fields." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21123 +#: guix-git/doc/guix.texi:21485 #, no-wrap msgid "@code{log-directory} (default: @code{\"/var/log/postgresql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21127 +#: guix-git/doc/guix.texi:21489 msgid "The directory where @command{pg_ctl} output will be written in a file named @code{\"pg_ctl.log\"}. This file can be useful to debug PostgreSQL configuration errors for instance." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21128 +#: guix-git/doc/guix.texi:21490 #, no-wrap msgid "@code{data-directory} (default: @code{\"/var/lib/postgresql/data\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21130 +#: guix-git/doc/guix.texi:21492 msgid "Directory in which to store the data." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21131 +#: guix-git/doc/guix.texi:21493 #, no-wrap msgid "@code{extension-packages} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21132 +#: guix-git/doc/guix.texi:21494 #, no-wrap msgid "postgresql extension-packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21137 +#: guix-git/doc/guix.texi:21499 msgid "Additional extensions are loaded from packages listed in @var{extension-packages}. Extensions are available at runtime. For instance, to create a geographic database using the @code{postgis} extension, a user can configure the postgresql-service as in this example:" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21138 +#: guix-git/doc/guix.texi:21500 #, no-wrap msgid "postgis" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21141 +#: guix-git/doc/guix.texi:21503 #, no-wrap msgid "" "(use-package-modules databases geo)\n" @@ -37782,7 +38394,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21154 +#: guix-git/doc/guix.texi:21516 #, no-wrap msgid "" "(operating-system\n" @@ -37800,12 +38412,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21158 +#: guix-git/doc/guix.texi:21520 msgid "Then the extension becomes visible and you can initialise an empty geographic database in this way:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:21165 +#: guix-git/doc/guix.texi:21527 #, no-wrap msgid "" "psql -U postgres\n" @@ -37816,23 +38428,23 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21170 +#: guix-git/doc/guix.texi:21532 msgid "There is no need to add this field for contrib extensions such as hstore or dblink as they are already loadable by postgresql. This field is only required to add extensions provided by other packages." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21174 +#: guix-git/doc/guix.texi:21536 #, no-wrap msgid "{Data Type} postgresql-config-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21180 +#: guix-git/doc/guix.texi:21542 msgid "Data type representing the PostgreSQL configuration file. As shown in the following example, this can be used to customize the configuration of PostgreSQL@. Note that you can use any G-expression or filename in place of this record, if you already have a configuration file you'd like to use for example." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21200 +#: guix-git/doc/guix.texi:21562 #, no-wrap msgid "" "(service postgresql-service-type\n" @@ -37856,77 +38468,77 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:21203 +#: guix-git/doc/guix.texi:21565 #, no-wrap msgid "@code{log-destination} (default: @code{\"syslog\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21206 +#: guix-git/doc/guix.texi:21568 msgid "The logging method to use for PostgreSQL@. Multiple values are accepted, separated by commas." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21207 +#: guix-git/doc/guix.texi:21569 #, no-wrap msgid "@code{hba-file} (default: @code{%default-postgres-hba})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21210 +#: guix-git/doc/guix.texi:21572 msgid "Filename or G-expression for the host-based authentication configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21211 +#: guix-git/doc/guix.texi:21573 #, no-wrap msgid "@code{ident-file} (default: @code{%default-postgres-ident})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21213 +#: guix-git/doc/guix.texi:21575 msgid "Filename or G-expression for the user name mapping configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21214 +#: guix-git/doc/guix.texi:21576 #, no-wrap msgid "@code{socket-directory} (default: @code{\"/var/run/postgresql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21219 +#: guix-git/doc/guix.texi:21581 msgid "Specifies the directory of the Unix-domain socket(s) on which PostgreSQL is to listen for connections from client applications. If set to @code{\"\"} PostgreSQL does not listen on any Unix-domain sockets, in which case only TCP/IP sockets can be used to connect to the server." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21222 +#: guix-git/doc/guix.texi:21584 msgid "By default, the @code{#false} value means the PostgreSQL default value will be used, which is currently @samp{/tmp}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21227 +#: guix-git/doc/guix.texi:21589 msgid "List of additional keys and values to include in the PostgreSQL config file. Each entry in the list should be a list where the first element is the key, and the remaining elements are the values." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21233 +#: guix-git/doc/guix.texi:21595 msgid "The values can be numbers, booleans or strings and will be mapped to PostgreSQL parameters types @code{Boolean}, @code{String}, @code{Numeric}, @code{Numeric with Unit} and @code{Enumerated} described @uref{https://www.postgresql.org/docs/current/config-setting.html, here}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21237 +#: guix-git/doc/guix.texi:21599 #, no-wrap msgid "{Scheme Variable} postgresql-role-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21240 +#: guix-git/doc/guix.texi:21602 msgid "This service allows to create PostgreSQL roles and databases after PostgreSQL service start. Here is an example of its use." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21248 +#: guix-git/doc/guix.texi:21610 #, no-wrap msgid "" "(service postgresql-role-service-type\n" @@ -37938,12 +38550,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21252 +#: guix-git/doc/guix.texi:21614 msgid "This service can be extended with extra roles, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21258 +#: guix-git/doc/guix.texi:21620 #, no-wrap msgid "" "(service-extension postgresql-role-service-type\n" @@ -37953,398 +38565,398 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21261 +#: guix-git/doc/guix.texi:21623 #, no-wrap msgid "{Data Type} postgresql-role" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21267 +#: guix-git/doc/guix.texi:21629 msgid "PostgreSQL manages database access permissions using the concept of roles. A role can be thought of as either a database user, or a group of database users, depending on how the role is set up. Roles can own database objects (for example, tables) and can assign privileges on those objects to other roles to control who has access to which objects." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21271 +#: guix-git/doc/guix.texi:21633 msgid "The role name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21272 +#: guix-git/doc/guix.texi:21634 #, no-wrap msgid "@code{permissions} (default: @code{'(createdb login)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21276 +#: guix-git/doc/guix.texi:21638 msgid "The role permissions list. Supported permissions are @code{bypassrls}, @code{createdb}, @code{createrole}, @code{login}, @code{replication} and @code{superuser}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21277 +#: guix-git/doc/guix.texi:21639 #, no-wrap msgid "@code{create-database?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21279 +#: guix-git/doc/guix.texi:21641 msgid "Whether to create a database with the same name as the role." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21283 +#: guix-git/doc/guix.texi:21645 #, no-wrap msgid "{Data Type} postgresql-role-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21286 +#: guix-git/doc/guix.texi:21648 msgid "Data type representing the configuration of @var{postgresql-role-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21288 +#: guix-git/doc/guix.texi:21650 #, no-wrap msgid "@code{host} (default: @code{\"/var/run/postgresql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21290 +#: guix-git/doc/guix.texi:21652 msgid "The PostgreSQL host to connect to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21291 +#: guix-git/doc/guix.texi:21653 #, no-wrap msgid "@code{log} (default: @code{\"/var/log/postgresql_roles.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21293 +#: guix-git/doc/guix.texi:21655 msgid "File name of the log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21294 +#: guix-git/doc/guix.texi:21656 #, no-wrap msgid "@code{roles} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21296 +#: guix-git/doc/guix.texi:21658 msgid "The initial PostgreSQL roles to create." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21299 +#: guix-git/doc/guix.texi:21661 #, no-wrap msgid "MariaDB/MySQL" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21301 +#: guix-git/doc/guix.texi:21663 #, no-wrap msgid "{Scheme Variable} mysql-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21305 +#: guix-git/doc/guix.texi:21667 msgid "This is the service type for a MySQL or MariaDB database server. Its value is a @code{mysql-configuration} object that specifies which package to use, as well as various settings for the @command{mysqld} daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21307 +#: guix-git/doc/guix.texi:21669 #, no-wrap msgid "{Data Type} mysql-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21309 +#: guix-git/doc/guix.texi:21671 msgid "Data type representing the configuration of @var{mysql-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21311 +#: guix-git/doc/guix.texi:21673 #, no-wrap msgid "@code{mysql} (default: @var{mariadb})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21314 +#: guix-git/doc/guix.texi:21676 msgid "Package object of the MySQL database server, can be either @var{mariadb} or @var{mysql}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21317 +#: guix-git/doc/guix.texi:21679 msgid "For MySQL, a temporary root password will be displayed at activation time. For MariaDB, the root password is empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21318 guix-git/doc/guix.texi:25138 +#: guix-git/doc/guix.texi:21680 guix-git/doc/guix.texi:25500 #, no-wrap msgid "@code{bind-address} (default: @code{\"127.0.0.1\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21321 +#: guix-git/doc/guix.texi:21683 msgid "The IP on which to listen for network connections. Use @code{\"0.0.0.0\"} to bind to all available network interfaces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21322 +#: guix-git/doc/guix.texi:21684 #, no-wrap msgid "@code{port} (default: @code{3306})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21324 +#: guix-git/doc/guix.texi:21686 msgid "TCP port on which the database server listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21325 +#: guix-git/doc/guix.texi:21687 #, no-wrap msgid "@code{socket} (default: @code{\"/run/mysqld/mysqld.sock\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21327 +#: guix-git/doc/guix.texi:21689 msgid "Socket file to use for local (non-network) connections." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21330 +#: guix-git/doc/guix.texi:21692 msgid "Additional settings for the @file{my.cnf} configuration file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21331 +#: guix-git/doc/guix.texi:21693 #, no-wrap msgid "@code{extra-environment} (default: @code{#~'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21333 +#: guix-git/doc/guix.texi:21695 msgid "List of environment variables passed to the @command{mysqld} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21334 +#: guix-git/doc/guix.texi:21696 #, no-wrap msgid "@code{auto-upgrade?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21339 +#: guix-git/doc/guix.texi:21701 msgid "Whether to automatically run @command{mysql_upgrade} after starting the service. This is necessary to upgrade the @dfn{system schema} after ``major'' updates (such as switching from MariaDB 10.4 to 10.5), but can be disabled if you would rather do that manually." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21343 +#: guix-git/doc/guix.texi:21705 #, no-wrap msgid "Memcached" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21345 +#: guix-git/doc/guix.texi:21707 #, no-wrap msgid "{Scheme Variable} memcached-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21349 +#: guix-git/doc/guix.texi:21711 msgid "This is the service type for the @uref{https://memcached.org/, Memcached} service, which provides a distributed in memory cache. The value for the service type is a @code{memcached-configuration} object." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21353 +#: guix-git/doc/guix.texi:21715 #, no-wrap msgid "(service memcached-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21355 +#: guix-git/doc/guix.texi:21717 #, no-wrap msgid "{Data Type} memcached-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21357 +#: guix-git/doc/guix.texi:21719 msgid "Data type representing the configuration of memcached." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21359 +#: guix-git/doc/guix.texi:21721 #, no-wrap msgid "@code{memcached} (default: @code{memcached})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21361 +#: guix-git/doc/guix.texi:21723 msgid "The Memcached package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21362 +#: guix-git/doc/guix.texi:21724 #, no-wrap msgid "@code{interfaces} (default: @code{'(\"0.0.0.0\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21364 +#: guix-git/doc/guix.texi:21726 msgid "Network interfaces on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21365 +#: guix-git/doc/guix.texi:21727 #, no-wrap msgid "@code{tcp-port} (default: @code{11211})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21367 +#: guix-git/doc/guix.texi:21729 msgid "Port on which to accept connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21368 +#: guix-git/doc/guix.texi:21730 #, no-wrap msgid "@code{udp-port} (default: @code{11211})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21371 +#: guix-git/doc/guix.texi:21733 msgid "Port on which to accept UDP connections on, a value of 0 will disable listening on a UDP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21372 +#: guix-git/doc/guix.texi:21734 #, no-wrap msgid "@code{additional-options} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21374 +#: guix-git/doc/guix.texi:21736 msgid "Additional command line options to pass to @code{memcached}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21377 +#: guix-git/doc/guix.texi:21739 #, no-wrap msgid "Redis" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21379 +#: guix-git/doc/guix.texi:21741 #, no-wrap msgid "{Scheme Variable} redis-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21382 +#: guix-git/doc/guix.texi:21744 msgid "This is the service type for the @uref{https://redis.io/, Redis} key/value store, whose value is a @code{redis-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21384 +#: guix-git/doc/guix.texi:21746 #, no-wrap msgid "{Data Type} redis-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21386 +#: guix-git/doc/guix.texi:21748 msgid "Data type representing the configuration of redis." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21388 +#: guix-git/doc/guix.texi:21750 #, no-wrap msgid "@code{redis} (default: @code{redis})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21390 +#: guix-git/doc/guix.texi:21752 msgid "The Redis package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21391 +#: guix-git/doc/guix.texi:21753 #, no-wrap msgid "@code{bind} (default: @code{\"127.0.0.1\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21393 +#: guix-git/doc/guix.texi:21755 msgid "Network interface on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21394 +#: guix-git/doc/guix.texi:21756 #, no-wrap msgid "@code{port} (default: @code{6379})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21397 +#: guix-git/doc/guix.texi:21759 msgid "Port on which to accept connections on, a value of 0 will disable listening on a TCP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21398 +#: guix-git/doc/guix.texi:21760 #, no-wrap msgid "@code{working-directory} (default: @code{\"/var/lib/redis\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21400 +#: guix-git/doc/guix.texi:21762 msgid "Directory in which to store the database and related files." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21406 +#: guix-git/doc/guix.texi:21768 #, no-wrap msgid "mail" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21407 +#: guix-git/doc/guix.texi:21769 #, no-wrap msgid "email" msgstr "sähköposti" #. type: Plain text -#: guix-git/doc/guix.texi:21412 +#: guix-git/doc/guix.texi:21774 msgid "The @code{(gnu services mail)} module provides Guix service definitions for email services: IMAP, POP3, and LMTP servers, as well as mail transport agents (MTAs). Lots of acronyms! These services are detailed in the subsections below." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21413 +#: guix-git/doc/guix.texi:21775 #, no-wrap msgid "Dovecot Service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21415 +#: guix-git/doc/guix.texi:21777 #, no-wrap msgid "{Scheme Procedure} dovecot-service [#:config (dovecot-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21417 +#: guix-git/doc/guix.texi:21779 msgid "Return a service that runs the Dovecot IMAP/POP3/LMTP mail server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21427 +#: guix-git/doc/guix.texi:21789 msgid "By default, Dovecot does not need much configuration; the default configuration object created by @code{(dovecot-configuration)} will suffice if your mail is delivered to @code{~/Maildir}. A self-signed certificate will be generated for TLS-protected connections, though Dovecot will also listen on cleartext ports by default. There are a number of options, though, which mail administrators might need to change, and as is the case with other services, Guix allows the system administrator to specify these parameters via a uniform Scheme interface." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21430 +#: guix-git/doc/guix.texi:21792 msgid "For example, to specify that mail is located at @code{maildir~/.mail}, one would instantiate the Dovecot service like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21435 +#: guix-git/doc/guix.texi:21797 #, no-wrap msgid "" "(dovecot-service #:config\n" @@ -38353,2433 +38965,2433 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21443 +#: guix-git/doc/guix.texi:21805 msgid "The available configuration parameters follow. Each parameter definition is preceded by its type; for example, @samp{string-list foo} indicates that the @code{foo} parameter should be specified as a list of strings. There is also a way to specify the configuration as a string, if you have an old @code{dovecot.conf} file that you want to port over from some other system; see the end for more details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21453 +#: guix-git/doc/guix.texi:21815 msgid "Available @code{dovecot-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21454 +#: guix-git/doc/guix.texi:21816 #, no-wrap msgid "{@code{dovecot-configuration} parameter} package dovecot" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21456 guix-git/doc/guix.texi:22805 +#: guix-git/doc/guix.texi:21818 guix-git/doc/guix.texi:23167 msgid "The dovecot package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21458 +#: guix-git/doc/guix.texi:21820 #, no-wrap msgid "{@code{dovecot-configuration} parameter} comma-separated-string-list listen" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21464 +#: guix-git/doc/guix.texi:21826 msgid "A list of IPs or hosts where to listen for connections. @samp{*} listens on all IPv4 interfaces, @samp{::} listens on all IPv6 interfaces. If you want to specify non-default ports or anything more complex, customize the address and port fields of the @samp{inet-listener} of the specific services you are interested in." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21466 +#: guix-git/doc/guix.texi:21828 #, no-wrap msgid "{@code{dovecot-configuration} parameter} protocol-configuration-list protocols" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21469 +#: guix-git/doc/guix.texi:21831 msgid "List of protocols we want to serve. Available protocols include @samp{imap}, @samp{pop3}, and @samp{lmtp}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21471 +#: guix-git/doc/guix.texi:21833 msgid "Available @code{protocol-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21472 +#: guix-git/doc/guix.texi:21834 #, no-wrap msgid "{@code{protocol-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21474 +#: guix-git/doc/guix.texi:21836 msgid "The name of the protocol." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21476 +#: guix-git/doc/guix.texi:21838 #, no-wrap msgid "{@code{protocol-configuration} parameter} string auth-socket-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21480 +#: guix-git/doc/guix.texi:21842 msgid "UNIX socket path to the master authentication server to find users. This is used by imap (for shared users) and lda. It defaults to @samp{\"/var/run/dovecot/auth-userdb\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21482 +#: guix-git/doc/guix.texi:21844 #, no-wrap msgid "{@code{protocol-configuration} parameter} boolean imap-metadata?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21487 +#: guix-git/doc/guix.texi:21849 msgid "Whether to enable the @code{IMAP METADATA} extension as defined in @uref{https://tools.ietf.org/html/rfc5464,RFC@tie{}5464}, which provides a means for clients to set and retrieve per-mailbox, per-user metadata and annotations over IMAP." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21490 +#: guix-git/doc/guix.texi:21852 msgid "If this is @samp{#t}, you must also specify a dictionary @i{via} the @code{mail-attribute-dict} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21495 +#: guix-git/doc/guix.texi:21857 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list managesieve-notify-capabilities" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21500 +#: guix-git/doc/guix.texi:21862 msgid "Which NOTIFY capabilities to report to clients that first connect to the ManageSieve service, before authentication. These may differ from the capabilities offered to authenticated users. If this field is left empty, report what the Sieve interpreter supports by default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21504 +#: guix-git/doc/guix.texi:21866 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list managesieve-sieve-capability" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21509 +#: guix-git/doc/guix.texi:21871 msgid "Which SIEVE capabilities to report to clients that first connect to the ManageSieve service, before authentication. These may differ from the capabilities offered to authenticated users. If this field is left empty, report what the Sieve interpreter supports by default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21514 +#: guix-git/doc/guix.texi:21876 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list mail-plugins" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21516 +#: guix-git/doc/guix.texi:21878 msgid "Space separated list of plugins to load." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21518 +#: guix-git/doc/guix.texi:21880 #, no-wrap msgid "{@code{protocol-configuration} parameter} non-negative-integer mail-max-userip-connections" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21522 +#: guix-git/doc/guix.texi:21884 msgid "Maximum number of IMAP connections allowed for a user from each IP address. NOTE: The username is compared case-sensitively. Defaults to @samp{10}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21526 +#: guix-git/doc/guix.texi:21888 #, no-wrap msgid "{@code{dovecot-configuration} parameter} service-configuration-list services" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21530 +#: guix-git/doc/guix.texi:21892 msgid "List of services to enable. Available services include @samp{imap}, @samp{imap-login}, @samp{pop3}, @samp{pop3-login}, @samp{auth}, and @samp{lmtp}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21532 +#: guix-git/doc/guix.texi:21894 msgid "Available @code{service-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21533 +#: guix-git/doc/guix.texi:21895 #, no-wrap msgid "{@code{service-configuration} parameter} string kind" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21538 +#: guix-git/doc/guix.texi:21900 msgid "The service kind. Valid values include @code{director}, @code{imap-login}, @code{pop3-login}, @code{lmtp}, @code{imap}, @code{pop3}, @code{auth}, @code{auth-worker}, @code{dict}, @code{tcpwrap}, @code{quota-warning}, or anything else." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21540 +#: guix-git/doc/guix.texi:21902 #, no-wrap msgid "{@code{service-configuration} parameter} listener-configuration-list listeners" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21545 +#: guix-git/doc/guix.texi:21907 msgid "Listeners for the service. A listener is either a @code{unix-listener-configuration}, a @code{fifo-listener-configuration}, or an @code{inet-listener-configuration}. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21547 +#: guix-git/doc/guix.texi:21909 msgid "Available @code{unix-listener-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21548 +#: guix-git/doc/guix.texi:21910 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21551 guix-git/doc/guix.texi:21574 +#: guix-git/doc/guix.texi:21913 guix-git/doc/guix.texi:21936 msgid "Path to the file, relative to @code{base-dir} field. This is also used as the section name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21553 +#: guix-git/doc/guix.texi:21915 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string mode" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21556 guix-git/doc/guix.texi:21579 +#: guix-git/doc/guix.texi:21918 guix-git/doc/guix.texi:21941 msgid "The access mode for the socket. Defaults to @samp{\"0600\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21558 +#: guix-git/doc/guix.texi:21920 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21561 guix-git/doc/guix.texi:21584 +#: guix-git/doc/guix.texi:21923 guix-git/doc/guix.texi:21946 msgid "The user to own the socket. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21563 +#: guix-git/doc/guix.texi:21925 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21566 guix-git/doc/guix.texi:21589 +#: guix-git/doc/guix.texi:21928 guix-git/doc/guix.texi:21951 msgid "The group to own the socket. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21570 +#: guix-git/doc/guix.texi:21932 msgid "Available @code{fifo-listener-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21571 +#: guix-git/doc/guix.texi:21933 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21576 +#: guix-git/doc/guix.texi:21938 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string mode" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21581 +#: guix-git/doc/guix.texi:21943 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21586 +#: guix-git/doc/guix.texi:21948 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21593 +#: guix-git/doc/guix.texi:21955 msgid "Available @code{inet-listener-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21594 +#: guix-git/doc/guix.texi:21956 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} string protocol" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21596 +#: guix-git/doc/guix.texi:21958 msgid "The protocol to listen for." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21598 +#: guix-git/doc/guix.texi:21960 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} string address" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21601 +#: guix-git/doc/guix.texi:21963 msgid "The address on which to listen, or empty for all addresses. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21603 +#: guix-git/doc/guix.texi:21965 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} non-negative-integer port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21605 +#: guix-git/doc/guix.texi:21967 msgid "The port on which to listen." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21607 +#: guix-git/doc/guix.texi:21969 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} boolean ssl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21611 +#: guix-git/doc/guix.texi:21973 msgid "Whether to use SSL for this service; @samp{yes}, @samp{no}, or @samp{required}. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21615 +#: guix-git/doc/guix.texi:21977 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer client-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21620 +#: guix-git/doc/guix.texi:21982 msgid "Maximum number of simultaneous client connections per process. Once this number of connections is received, the next incoming connection will prompt Dovecot to spawn another process. If set to 0, @code{default-client-limit} is used instead." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21625 +#: guix-git/doc/guix.texi:21987 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer service-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21630 +#: guix-git/doc/guix.texi:21992 msgid "Number of connections to handle before starting a new process. Typically the only useful values are 0 (unlimited) or 1. 1 is more secure, but 0 is faster. . Defaults to @samp{1}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21633 +#: guix-git/doc/guix.texi:21995 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer process-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21636 +#: guix-git/doc/guix.texi:21998 msgid "Maximum number of processes that can exist for this service. If set to 0, @code{default-process-limit} is used instead." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21641 +#: guix-git/doc/guix.texi:22003 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer process-min-avail" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21644 +#: guix-git/doc/guix.texi:22006 msgid "Number of processes to always keep waiting for more connections. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21646 +#: guix-git/doc/guix.texi:22008 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer vsz-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21650 +#: guix-git/doc/guix.texi:22012 msgid "If you set @samp{service-count 0}, you probably need to grow this. Defaults to @samp{256000000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21654 +#: guix-git/doc/guix.texi:22016 #, no-wrap msgid "{@code{dovecot-configuration} parameter} dict-configuration dict" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21657 +#: guix-git/doc/guix.texi:22019 msgid "Dict configuration, as created by the @code{dict-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21659 +#: guix-git/doc/guix.texi:22021 msgid "Available @code{dict-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21660 +#: guix-git/doc/guix.texi:22022 #, no-wrap msgid "{@code{dict-configuration} parameter} free-form-fields entries" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21663 +#: guix-git/doc/guix.texi:22025 msgid "A list of key-value pairs that this dict should hold. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21667 +#: guix-git/doc/guix.texi:22029 #, no-wrap msgid "{@code{dovecot-configuration} parameter} passdb-configuration-list passdbs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21670 +#: guix-git/doc/guix.texi:22032 msgid "A list of passdb configurations, each one created by the @code{passdb-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21672 +#: guix-git/doc/guix.texi:22034 msgid "Available @code{passdb-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21673 +#: guix-git/doc/guix.texi:22035 #, no-wrap msgid "{@code{passdb-configuration} parameter} string driver" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21678 +#: guix-git/doc/guix.texi:22040 msgid "The driver that the passdb should use. Valid values include @samp{pam}, @samp{passwd}, @samp{shadow}, @samp{bsdauth}, and @samp{static}. Defaults to @samp{\"pam\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21680 +#: guix-git/doc/guix.texi:22042 #, no-wrap msgid "{@code{passdb-configuration} parameter} space-separated-string-list args" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21683 +#: guix-git/doc/guix.texi:22045 msgid "Space separated list of arguments to the passdb driver. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21687 +#: guix-git/doc/guix.texi:22049 #, no-wrap msgid "{@code{dovecot-configuration} parameter} userdb-configuration-list userdbs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21690 +#: guix-git/doc/guix.texi:22052 msgid "List of userdb configurations, each one created by the @code{userdb-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21692 +#: guix-git/doc/guix.texi:22054 msgid "Available @code{userdb-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21693 +#: guix-git/doc/guix.texi:22055 #, no-wrap msgid "{@code{userdb-configuration} parameter} string driver" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21697 +#: guix-git/doc/guix.texi:22059 msgid "The driver that the userdb should use. Valid values include @samp{passwd} and @samp{static}. Defaults to @samp{\"passwd\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21699 +#: guix-git/doc/guix.texi:22061 #, no-wrap msgid "{@code{userdb-configuration} parameter} space-separated-string-list args" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21702 +#: guix-git/doc/guix.texi:22064 msgid "Space separated list of arguments to the userdb driver. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21704 +#: guix-git/doc/guix.texi:22066 #, no-wrap msgid "{@code{userdb-configuration} parameter} free-form-args override-fields" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21707 +#: guix-git/doc/guix.texi:22069 msgid "Override fields from passwd. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21711 +#: guix-git/doc/guix.texi:22073 #, no-wrap msgid "{@code{dovecot-configuration} parameter} plugin-configuration plugin-configuration" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21714 +#: guix-git/doc/guix.texi:22076 msgid "Plug-in configuration, created by the @code{plugin-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21716 +#: guix-git/doc/guix.texi:22078 #, no-wrap msgid "{@code{dovecot-configuration} parameter} list-of-namespace-configuration namespaces" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21719 +#: guix-git/doc/guix.texi:22081 msgid "List of namespaces. Each item in the list is created by the @code{namespace-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21721 +#: guix-git/doc/guix.texi:22083 msgid "Available @code{namespace-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21722 +#: guix-git/doc/guix.texi:22084 #, no-wrap msgid "{@code{namespace-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21724 +#: guix-git/doc/guix.texi:22086 msgid "Name for this namespace." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21726 +#: guix-git/doc/guix.texi:22088 #, no-wrap msgid "{@code{namespace-configuration} parameter} string type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21729 +#: guix-git/doc/guix.texi:22091 msgid "Namespace type: @samp{private}, @samp{shared} or @samp{public}. Defaults to @samp{\"private\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21731 +#: guix-git/doc/guix.texi:22093 #, no-wrap msgid "{@code{namespace-configuration} parameter} string separator" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21737 +#: guix-git/doc/guix.texi:22099 msgid "Hierarchy separator to use. You should use the same separator for all namespaces or some clients get confused. @samp{/} is usually a good one. The default however depends on the underlying mail storage format. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21739 +#: guix-git/doc/guix.texi:22101 #, no-wrap msgid "{@code{namespace-configuration} parameter} string prefix" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21743 +#: guix-git/doc/guix.texi:22105 msgid "Prefix required to access this namespace. This needs to be different for all namespaces. For example @samp{Public/}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21745 +#: guix-git/doc/guix.texi:22107 #, no-wrap msgid "{@code{namespace-configuration} parameter} string location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21749 +#: guix-git/doc/guix.texi:22111 msgid "Physical location of the mailbox. This is in the same format as mail_location, which is also the default for it. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21751 +#: guix-git/doc/guix.texi:22113 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean inbox?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21755 +#: guix-git/doc/guix.texi:22117 msgid "There can be only one INBOX, and this setting defines which namespace has it. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21757 +#: guix-git/doc/guix.texi:22119 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean hidden?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21765 +#: guix-git/doc/guix.texi:22127 msgid "If namespace is hidden, it's not advertised to clients via NAMESPACE extension. You'll most likely also want to set @samp{list? #f}. This is mostly useful when converting from another server with different namespaces which you want to deprecate but still keep working. For example you can create hidden namespaces with prefixes @samp{~/mail/}, @samp{~%u/mail/} and @samp{mail/}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21767 +#: guix-git/doc/guix.texi:22129 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean list?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21773 +#: guix-git/doc/guix.texi:22135 msgid "Show the mailboxes under this namespace with the LIST command. This makes the namespace visible for clients that do not support the NAMESPACE extension. The special @code{children} value lists child mailboxes, but hides the namespace prefix. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21775 +#: guix-git/doc/guix.texi:22137 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean subscriptions?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21780 +#: guix-git/doc/guix.texi:22142 msgid "Namespace handles its own subscriptions. If set to @code{#f}, the parent namespace handles them. The empty prefix should always have this as @code{#t}). Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21782 +#: guix-git/doc/guix.texi:22144 #, no-wrap msgid "{@code{namespace-configuration} parameter} mailbox-configuration-list mailboxes" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21785 +#: guix-git/doc/guix.texi:22147 msgid "List of predefined mailboxes in this namespace. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21787 +#: guix-git/doc/guix.texi:22149 msgid "Available @code{mailbox-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21788 +#: guix-git/doc/guix.texi:22150 #, no-wrap msgid "{@code{mailbox-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21790 +#: guix-git/doc/guix.texi:22152 msgid "Name for this mailbox." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21792 +#: guix-git/doc/guix.texi:22154 #, no-wrap msgid "{@code{mailbox-configuration} parameter} string auto" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21796 +#: guix-git/doc/guix.texi:22158 msgid "@samp{create} will automatically create this mailbox. @samp{subscribe} will both create and subscribe to the mailbox. Defaults to @samp{\"no\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21798 +#: guix-git/doc/guix.texi:22160 #, no-wrap msgid "{@code{mailbox-configuration} parameter} space-separated-string-list special-use" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21803 +#: guix-git/doc/guix.texi:22165 msgid "List of IMAP @code{SPECIAL-USE} attributes as specified by RFC 6154. Valid values are @code{\\All}, @code{\\Archive}, @code{\\Drafts}, @code{\\Flagged}, @code{\\Junk}, @code{\\Sent}, and @code{\\Trash}. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21809 +#: guix-git/doc/guix.texi:22171 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name base-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21812 +#: guix-git/doc/guix.texi:22174 msgid "Base directory where to store runtime data. Defaults to @samp{\"/var/run/dovecot/\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21814 +#: guix-git/doc/guix.texi:22176 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string login-greeting" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21817 +#: guix-git/doc/guix.texi:22179 msgid "Greeting message for clients. Defaults to @samp{\"Dovecot ready.\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21819 +#: guix-git/doc/guix.texi:22181 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-trusted-networks" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21826 +#: guix-git/doc/guix.texi:22188 msgid "List of trusted network ranges. Connections from these IPs are allowed to override their IP addresses and ports (for logging and for authentication checks). @samp{disable-plaintext-auth} is also ignored for these networks. Typically you would specify your IMAP proxy servers here. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21828 +#: guix-git/doc/guix.texi:22190 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-access-sockets" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21831 +#: guix-git/doc/guix.texi:22193 msgid "List of login access check sockets (e.g.@: tcpwrap). Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21833 +#: guix-git/doc/guix.texi:22195 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean verbose-proctitle?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21839 +#: guix-git/doc/guix.texi:22201 msgid "Show more verbose process titles (in ps). Currently shows user name and IP address. Useful for seeing who is actually using the IMAP processes (e.g.@: shared mailboxes or if the same uid is used for multiple accounts). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21841 +#: guix-git/doc/guix.texi:22203 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean shutdown-clients?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21847 +#: guix-git/doc/guix.texi:22209 msgid "Should all processes be killed when Dovecot master process shuts down. Setting this to @code{#f} means that Dovecot can be upgraded without forcing existing client connections to close (although that could also be a problem if the upgrade is e.g.@: due to a security fix). Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21849 +#: guix-git/doc/guix.texi:22211 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer doveadm-worker-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21853 +#: guix-git/doc/guix.texi:22215 msgid "If non-zero, run mail commands via this many connections to doveadm server, instead of running them directly in the same process. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21855 +#: guix-git/doc/guix.texi:22217 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string doveadm-socket-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21858 +#: guix-git/doc/guix.texi:22220 msgid "UNIX socket or host:port used for connecting to doveadm server. Defaults to @samp{\"doveadm-server\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21860 +#: guix-git/doc/guix.texi:22222 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list import-environment" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21864 +#: guix-git/doc/guix.texi:22226 msgid "List of environment variables that are preserved on Dovecot startup and passed down to all of its child processes. You can also give key=value pairs to always set specific settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21866 +#: guix-git/doc/guix.texi:22228 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean disable-plaintext-auth?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21873 +#: guix-git/doc/guix.texi:22235 msgid "Disable LOGIN command and all other plaintext authentications unless SSL/TLS is used (LOGINDISABLED capability). Note that if the remote IP matches the local IP (i.e.@: you're connecting from the same computer), the connection is considered secure and plaintext authentication is allowed. See also ssl=required setting. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21875 +#: guix-git/doc/guix.texi:22237 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer auth-cache-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21880 +#: guix-git/doc/guix.texi:22242 msgid "Authentication cache size (e.g.@: @samp{#e10e6}). 0 means it's disabled. Note that bsdauth, PAM and vpopmail require @samp{cache-key} to be set for caching to be used. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21882 +#: guix-git/doc/guix.texi:22244 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-cache-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21890 +#: guix-git/doc/guix.texi:22252 msgid "Time to live for cached data. After TTL expires the cached record is no longer used, *except* if the main database lookup returns internal failure. We also try to handle password changes automatically: If user's previous authentication was successful, but this one wasn't, the cache isn't used. For now this works only with plaintext authentication. Defaults to @samp{\"1 hour\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21892 +#: guix-git/doc/guix.texi:22254 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-cache-negative-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21896 +#: guix-git/doc/guix.texi:22258 msgid "TTL for negative hits (user not found, password mismatch). 0 disables caching them completely. Defaults to @samp{\"1 hour\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21898 +#: guix-git/doc/guix.texi:22260 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list auth-realms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21904 +#: guix-git/doc/guix.texi:22266 msgid "List of realms for SASL authentication mechanisms that need them. You can leave it empty if you don't want to support multiple realms. Many clients simply use the first one listed here, so keep the default realm first. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21906 +#: guix-git/doc/guix.texi:22268 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-default-realm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21911 +#: guix-git/doc/guix.texi:22273 msgid "Default realm/domain to use if none was specified. This is used for both SASL realms and appending @@domain to username in plaintext logins. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21913 +#: guix-git/doc/guix.texi:22275 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-chars" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21920 +#: guix-git/doc/guix.texi:22282 msgid "List of allowed characters in username. If the user-given username contains a character not listed in here, the login automatically fails. This is just an extra check to make sure user can't exploit any potential quote escaping vulnerabilities with SQL/LDAP databases. If you want to allow all characters, set this value to empty. Defaults to @samp{\"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@@\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21922 +#: guix-git/doc/guix.texi:22284 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-translation" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21928 +#: guix-git/doc/guix.texi:22290 msgid "Username character translations before it's looked up from databases. The value contains series of from -> to characters. For example @samp{#@@/@@} means that @samp{#} and @samp{/} characters are translated to @samp{@@}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21930 +#: guix-git/doc/guix.texi:22292 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21937 +#: guix-git/doc/guix.texi:22299 msgid "Username formatting before it's looked up from databases. You can use the standard variables here, e.g.@: %Lu would lowercase the username, %n would drop away the domain if it was given, or @samp{%n-AT-%d} would change the @samp{@@} into @samp{-AT-}. This translation is done after @samp{auth-username-translation} changes. Defaults to @samp{\"%Lu\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21939 +#: guix-git/doc/guix.texi:22301 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-master-user-separator" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21947 +#: guix-git/doc/guix.texi:22309 msgid "If you want to allow master users to log in by specifying the master username within the normal username string (i.e.@: not using SASL mechanism's support for it), you can specify the separator character here. The format is then . UW-IMAP uses @samp{*} as the separator, so that could be a good choice. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21949 +#: guix-git/doc/guix.texi:22311 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-anonymous-username" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21953 +#: guix-git/doc/guix.texi:22315 msgid "Username to use for users logging in with ANONYMOUS SASL mechanism. Defaults to @samp{\"anonymous\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21955 +#: guix-git/doc/guix.texi:22317 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer auth-worker-max-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21960 +#: guix-git/doc/guix.texi:22322 msgid "Maximum number of dovecot-auth worker processes. They're used to execute blocking passdb and userdb queries (e.g.@: MySQL and PAM). They're automatically created and destroyed as needed. Defaults to @samp{30}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21962 +#: guix-git/doc/guix.texi:22324 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-gssapi-hostname" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21967 +#: guix-git/doc/guix.texi:22329 msgid "Host name to use in GSSAPI principal names. The default is to use the name returned by gethostname(). Use @samp{$ALL} (with quotes) to allow all keytab entries. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21969 +#: guix-git/doc/guix.texi:22331 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-krb5-keytab" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21975 +#: guix-git/doc/guix.texi:22337 msgid "Kerberos keytab to use for the GSSAPI mechanism. Will use the system default (usually @file{/etc/krb5.keytab}) if not specified. You may need to change the auth service to run as root to be able to read this file. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21977 +#: guix-git/doc/guix.texi:22339 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-use-winbind?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21982 +#: guix-git/doc/guix.texi:22344 msgid "Do NTLM and GSS-SPNEGO authentication using Samba's winbind daemon and @samp{ntlm-auth} helper. . Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21984 +#: guix-git/doc/guix.texi:22346 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name auth-winbind-helper-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21987 +#: guix-git/doc/guix.texi:22349 msgid "Path for Samba's @samp{ntlm-auth} helper binary. Defaults to @samp{\"/usr/bin/ntlm_auth\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21989 +#: guix-git/doc/guix.texi:22351 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-failure-delay" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21992 +#: guix-git/doc/guix.texi:22354 msgid "Time to delay before replying to failed authentications. Defaults to @samp{\"2 secs\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21994 +#: guix-git/doc/guix.texi:22356 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-ssl-require-client-cert?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21998 +#: guix-git/doc/guix.texi:22360 msgid "Require a valid SSL client certificate or the authentication fails. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22000 +#: guix-git/doc/guix.texi:22362 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-ssl-username-from-cert?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22005 +#: guix-git/doc/guix.texi:22367 msgid "Take the username from client's SSL certificate, using @code{X509_NAME_get_text_by_NID()} which returns the subject's DN's CommonName. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22007 +#: guix-git/doc/guix.texi:22369 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list auth-mechanisms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22013 +#: guix-git/doc/guix.texi:22375 msgid "List of wanted authentication mechanisms. Supported mechanisms are: @samp{plain}, @samp{login}, @samp{digest-md5}, @samp{cram-md5}, @samp{ntlm}, @samp{rpa}, @samp{apop}, @samp{anonymous}, @samp{gssapi}, @samp{otp}, @samp{skey}, and @samp{gss-spnego}. NOTE: See also @samp{disable-plaintext-auth} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22015 +#: guix-git/doc/guix.texi:22377 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list director-servers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22020 +#: guix-git/doc/guix.texi:22382 msgid "List of IPs or hostnames to all director servers, including ourself. Ports can be specified as ip:port. The default port is the same as what director service's @samp{inet-listener} is using. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22022 +#: guix-git/doc/guix.texi:22384 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list director-mail-servers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22026 +#: guix-git/doc/guix.texi:22388 msgid "List of IPs or hostnames to all backend mail servers. Ranges are allowed too, like 10.0.0.10-10.0.0.30. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22028 +#: guix-git/doc/guix.texi:22390 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string director-user-expire" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22032 +#: guix-git/doc/guix.texi:22394 msgid "How long to redirect users to a specific server after it no longer has any connections. Defaults to @samp{\"15 min\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22034 +#: guix-git/doc/guix.texi:22396 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string director-username-hash" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22039 +#: guix-git/doc/guix.texi:22401 msgid "How the username is translated before being hashed. Useful values include %Ln if user can log in with or without @@domain, %Ld if mailboxes are shared within domain. Defaults to @samp{\"%Lu\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22041 +#: guix-git/doc/guix.texi:22403 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string log-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22045 +#: guix-git/doc/guix.texi:22407 msgid "Log file to use for error messages. @samp{syslog} logs to syslog, @samp{/dev/stderr} logs to stderr. Defaults to @samp{\"syslog\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22047 +#: guix-git/doc/guix.texi:22409 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string info-log-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22051 +#: guix-git/doc/guix.texi:22413 msgid "Log file to use for informational messages. Defaults to @samp{log-path}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22053 +#: guix-git/doc/guix.texi:22415 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string debug-log-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22057 +#: guix-git/doc/guix.texi:22419 msgid "Log file to use for debug messages. Defaults to @samp{info-log-path}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22059 +#: guix-git/doc/guix.texi:22421 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string syslog-facility" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22064 +#: guix-git/doc/guix.texi:22426 msgid "Syslog facility to use if you're logging to syslog. Usually if you don't want to use @samp{mail}, you'll use local0..local7. Also other standard facilities are supported. Defaults to @samp{\"mail\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22066 +#: guix-git/doc/guix.texi:22428 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-verbose?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22070 +#: guix-git/doc/guix.texi:22432 msgid "Log unsuccessful authentication attempts and the reasons why they failed. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22072 +#: guix-git/doc/guix.texi:22434 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-verbose-passwords" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22079 +#: guix-git/doc/guix.texi:22441 msgid "In case of password mismatches, log the attempted password. Valid values are no, plain and sha1. sha1 can be useful for detecting brute force password attempts vs. user simply trying the same password over and over again. You can also truncate the value to n chars by appending \":n\" (e.g.@: sha1:6). Defaults to @samp{\"no\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22081 +#: guix-git/doc/guix.texi:22443 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-debug?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22085 +#: guix-git/doc/guix.texi:22447 msgid "Even more verbose logging for debugging purposes. Shows for example SQL queries. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22087 +#: guix-git/doc/guix.texi:22449 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-debug-passwords?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22092 +#: guix-git/doc/guix.texi:22454 msgid "In case of password mismatches, log the passwords and used scheme so the problem can be debugged. Enabling this also enables @samp{auth-debug}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22094 +#: guix-git/doc/guix.texi:22456 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-debug?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22098 +#: guix-git/doc/guix.texi:22460 msgid "Enable mail process debugging. This can help you figure out why Dovecot isn't finding your mails. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22100 +#: guix-git/doc/guix.texi:22462 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean verbose-ssl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22103 +#: guix-git/doc/guix.texi:22465 msgid "Show protocol level SSL errors. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22105 +#: guix-git/doc/guix.texi:22467 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string log-timestamp" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22109 +#: guix-git/doc/guix.texi:22471 msgid "Prefix for each line written to log file. % codes are in strftime(3) format. Defaults to @samp{\"\\\"%b %d %H:%M:%S \\\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22111 +#: guix-git/doc/guix.texi:22473 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-log-format-elements" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22115 +#: guix-git/doc/guix.texi:22477 msgid "List of elements we want to log. The elements which have a non-empty variable value are joined together to form a comma-separated string." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22117 +#: guix-git/doc/guix.texi:22479 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string login-log-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22121 +#: guix-git/doc/guix.texi:22483 msgid "Login log format. %s contains @samp{login-log-format-elements} string, %$ contains the data we want to log. Defaults to @samp{\"%$: %s\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22123 +#: guix-git/doc/guix.texi:22485 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-log-prefix" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22127 +#: guix-git/doc/guix.texi:22489 msgid "Log prefix for mail processes. See doc/wiki/Variables.txt for list of possible variables you can use. Defaults to @samp{\"\\\"%s(%u)<%@{pid@}><%@{session@}>: \\\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22129 +#: guix-git/doc/guix.texi:22491 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string deliver-log-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22131 +#: guix-git/doc/guix.texi:22493 msgid "Format to use for logging mail deliveries. You can use variables:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22132 +#: guix-git/doc/guix.texi:22494 #, no-wrap msgid "%$" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22134 +#: guix-git/doc/guix.texi:22496 msgid "Delivery status message (e.g.@: @samp{saved to INBOX})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22134 +#: guix-git/doc/guix.texi:22496 #, no-wrap msgid "%m" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22136 +#: guix-git/doc/guix.texi:22498 msgid "Message-ID" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22136 guix-git/doc/guix.texi:22679 +#: guix-git/doc/guix.texi:22498 guix-git/doc/guix.texi:23041 #, no-wrap msgid "%s" msgstr "%s" #. type: table -#: guix-git/doc/guix.texi:22138 +#: guix-git/doc/guix.texi:22500 msgid "Subject" msgstr "Otsikko" #. type: item -#: guix-git/doc/guix.texi:22138 +#: guix-git/doc/guix.texi:22500 #, no-wrap msgid "%f" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22140 +#: guix-git/doc/guix.texi:22502 msgid "From address" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22142 +#: guix-git/doc/guix.texi:22504 msgid "Physical size" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22142 +#: guix-git/doc/guix.texi:22504 #, no-wrap msgid "%w" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22144 +#: guix-git/doc/guix.texi:22506 msgid "Virtual size." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22146 +#: guix-git/doc/guix.texi:22508 msgid "Defaults to @samp{\"msgid=%m: %$\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22148 +#: guix-git/doc/guix.texi:22510 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22153 +#: guix-git/doc/guix.texi:22515 msgid "Location for users' mailboxes. The default is empty, which means that Dovecot tries to find the mailboxes automatically. This won't work if the user doesn't yet have any mail, so you should explicitly tell Dovecot the full location." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22159 +#: guix-git/doc/guix.texi:22521 msgid "If you're using mbox, giving a path to the INBOX file (e.g.@: @file{/var/mail/%u}) isn't enough. You'll also need to tell Dovecot where the other mailboxes are kept. This is called the @emph{root mail directory}, and it must be the first path given in the @samp{mail-location} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22161 +#: guix-git/doc/guix.texi:22523 msgid "There are a few special variables you can use, e.g.:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22165 +#: guix-git/doc/guix.texi:22527 msgid "username" msgstr "käyttäjänimi" #. type: item -#: guix-git/doc/guix.texi:22165 guix-git/doc/guix.texi:22675 +#: guix-git/doc/guix.texi:22527 guix-git/doc/guix.texi:23037 #, no-wrap msgid "%n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22167 +#: guix-git/doc/guix.texi:22529 msgid "user part in user@@domain, same as %u if there's no domain" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22167 +#: guix-git/doc/guix.texi:22529 #, no-wrap msgid "%d" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22169 +#: guix-git/doc/guix.texi:22531 msgid "domain part in user@@domain, empty if there's no domain" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22169 +#: guix-git/doc/guix.texi:22531 #, no-wrap msgid "%h" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22171 +#: guix-git/doc/guix.texi:22533 msgid "home director" msgstr "kotihakemisto" #. type: deftypevr -#: guix-git/doc/guix.texi:22174 +#: guix-git/doc/guix.texi:22536 msgid "See doc/wiki/Variables.txt for full list. Some examples:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22175 +#: guix-git/doc/guix.texi:22537 #, no-wrap msgid "maildir:~/Maildir" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22176 +#: guix-git/doc/guix.texi:22538 #, no-wrap msgid "mbox:~/mail:INBOX=/var/mail/%u" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22177 +#: guix-git/doc/guix.texi:22539 #, no-wrap msgid "mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22182 +#: guix-git/doc/guix.texi:22544 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22187 +#: guix-git/doc/guix.texi:22549 msgid "System user and group used to access mails. If you use multiple, userdb can override these by returning uid or gid fields. You can use either numbers or names. . Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22189 +#: guix-git/doc/guix.texi:22551 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22194 +#: guix-git/doc/guix.texi:22556 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-privileged-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22200 +#: guix-git/doc/guix.texi:22562 msgid "Group to enable temporarily for privileged operations. Currently this is used only with INBOX when either its initial creation or dotlocking fails. Typically this is set to @samp{\"mail\"} to give access to @file{/var/mail}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22202 +#: guix-git/doc/guix.texi:22564 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-access-groups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22210 +#: guix-git/doc/guix.texi:22572 msgid "Grant access to these supplementary groups for mail processes. Typically these are used to set up access to shared mailboxes. Note that it may be dangerous to set these if users can create symlinks (e.g.@: if @samp{mail} group is set here, @code{ln -s /var/mail ~/mail/var} could allow a user to delete others' mailboxes, or @code{ln -s /secret/shared/box ~/mail/mybox} would allow reading it). Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22212 +#: guix-git/doc/guix.texi:22574 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attribute-dict" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22215 +#: guix-git/doc/guix.texi:22577 msgid "The location of a dictionary used to store @code{IMAP METADATA} as defined by @uref{https://tools.ietf.org/html/rfc5464, RFC@tie{}5464}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22218 +#: guix-git/doc/guix.texi:22580 msgid "The IMAP METADATA commands are available only if the ``imap'' protocol configuration's @code{imap-metadata?} field is @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22223 +#: guix-git/doc/guix.texi:22585 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-full-filesystem-access?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22229 +#: guix-git/doc/guix.texi:22591 msgid "Allow full file system access to clients. There's no access checks other than what the operating system does for the active UID/GID@. It works with both maildir and mboxes, allowing you to prefix mailboxes names with e.g.@: @file{/path/} or @file{~user/}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22231 +#: guix-git/doc/guix.texi:22593 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mmap-disable?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22235 +#: guix-git/doc/guix.texi:22597 msgid "Don't use @code{mmap()} at all. This is required if you store indexes to shared file systems (NFS or clustered file system). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22237 +#: guix-git/doc/guix.texi:22599 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean dotlock-use-excl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22242 +#: guix-git/doc/guix.texi:22604 msgid "Rely on @samp{O_EXCL} to work when creating dotlock files. NFS supports @samp{O_EXCL} since version 3, so this should be safe to use nowadays by default. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22244 +#: guix-git/doc/guix.texi:22606 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-fsync" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22246 +#: guix-git/doc/guix.texi:22608 msgid "When to use fsync() or fdatasync() calls:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22247 +#: guix-git/doc/guix.texi:22609 #, no-wrap msgid "optimized" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22249 +#: guix-git/doc/guix.texi:22611 msgid "Whenever necessary to avoid losing important data" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22251 +#: guix-git/doc/guix.texi:22613 msgid "Useful with e.g.@: NFS when @code{write()}s are delayed" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22253 +#: guix-git/doc/guix.texi:22615 msgid "Never use it (best performance, but crashes can lose data)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22255 +#: guix-git/doc/guix.texi:22617 msgid "Defaults to @samp{\"optimized\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22257 +#: guix-git/doc/guix.texi:22619 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-nfs-storage?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22262 +#: guix-git/doc/guix.texi:22624 msgid "Mail storage exists in NFS@. Set this to yes to make Dovecot flush NFS caches whenever needed. If you're using only a single mail server this isn't needed. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22264 +#: guix-git/doc/guix.texi:22626 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-nfs-index?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22268 +#: guix-git/doc/guix.texi:22630 msgid "Mail index files also exist in NFS@. Setting this to yes requires @samp{mmap-disable? #t} and @samp{fsync-disable? #f}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22270 +#: guix-git/doc/guix.texi:22632 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string lock-method" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22276 +#: guix-git/doc/guix.texi:22638 msgid "Locking method for index files. Alternatives are fcntl, flock and dotlock. Dotlocking uses some tricks which may create more disk I/O than other locking methods. NFS users: flock doesn't work, remember to change @samp{mmap-disable}. Defaults to @samp{\"fcntl\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22278 +#: guix-git/doc/guix.texi:22640 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name mail-temp-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22282 +#: guix-git/doc/guix.texi:22644 msgid "Directory in which LDA/LMTP temporarily stores incoming mails >128 kB. Defaults to @samp{\"/tmp\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22284 +#: guix-git/doc/guix.texi:22646 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer first-valid-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22290 +#: guix-git/doc/guix.texi:22652 msgid "Valid UID range for users. This is mostly to make sure that users can't log in as daemons or other system users. Note that denying root logins is hardcoded to dovecot binary and can't be done even if @samp{first-valid-uid} is set to 0. Defaults to @samp{500}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22292 +#: guix-git/doc/guix.texi:22654 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer last-valid-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22297 +#: guix-git/doc/guix.texi:22659 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer first-valid-gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22302 +#: guix-git/doc/guix.texi:22664 msgid "Valid GID range for users. Users having non-valid GID as primary group ID aren't allowed to log in. If user belongs to supplementary groups with non-valid GIDs, those groups are not set. Defaults to @samp{1}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22304 +#: guix-git/doc/guix.texi:22666 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer last-valid-gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22309 +#: guix-git/doc/guix.texi:22671 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-max-keyword-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22313 +#: guix-git/doc/guix.texi:22675 msgid "Maximum allowed length for mail keyword name. It's only forced when trying to create new keywords. Defaults to @samp{50}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22315 +#: guix-git/doc/guix.texi:22677 #, no-wrap msgid "{@code{dovecot-configuration} parameter} colon-separated-file-name-list valid-chroot-dirs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22325 +#: guix-git/doc/guix.texi:22687 msgid "List of directories under which chrooting is allowed for mail processes (i.e.@: @file{/var/mail} will allow chrooting to @file{/var/mail/foo/bar} too). This setting doesn't affect @samp{login-chroot} @samp{mail-chroot} or auth chroot settings. If this setting is empty, @samp{/./} in home dirs are ignored. WARNING: Never add directories here which local users can modify, that may lead to root exploit. Usually this should be done only if you don't allow shell access for users. . Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22327 +#: guix-git/doc/guix.texi:22689 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-chroot" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22336 +#: guix-git/doc/guix.texi:22698 msgid "Default chroot directory for mail processes. This can be overridden for specific users in user database by giving @samp{/./} in user's home directory (e.g.@: @samp{/home/./user} chroots into @file{/home}). Note that usually there is no real need to do chrooting, Dovecot doesn't allow users to access files outside their mail directory anyway. If your home directories are prefixed with the chroot directory, append @samp{/.} to @samp{mail-chroot}. . Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22338 +#: guix-git/doc/guix.texi:22700 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name auth-socket-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22342 +#: guix-git/doc/guix.texi:22704 msgid "UNIX socket path to master authentication server to find users. This is used by imap (for shared users) and lda. Defaults to @samp{\"/var/run/dovecot/auth-userdb\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22344 +#: guix-git/doc/guix.texi:22706 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name mail-plugin-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22347 +#: guix-git/doc/guix.texi:22709 msgid "Directory where to look up mail plugins. Defaults to @samp{\"/usr/lib/dovecot\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22349 +#: guix-git/doc/guix.texi:22711 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mail-plugins" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22353 +#: guix-git/doc/guix.texi:22715 msgid "List of plugins to load for all services. Plugins specific to IMAP, LDA, etc.@: are added to this list in their own .conf files. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22355 +#: guix-git/doc/guix.texi:22717 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-cache-min-mail-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22360 +#: guix-git/doc/guix.texi:22722 msgid "The minimum number of mails in a mailbox before updates are done to cache file. This allows optimizing Dovecot's behavior to do less disk writes at the cost of more disk reads. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22362 +#: guix-git/doc/guix.texi:22724 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mailbox-idle-check-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22369 +#: guix-git/doc/guix.texi:22731 msgid "When IDLE command is running, mailbox is checked once in a while to see if there are any new mails or other changes. This setting defines the minimum time to wait between those checks. Dovecot can also use dnotify, inotify and kqueue to find out immediately when changes occur. Defaults to @samp{\"30 secs\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22371 +#: guix-git/doc/guix.texi:22733 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-save-crlf?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22378 +#: guix-git/doc/guix.texi:22740 msgid "Save mails with CR+LF instead of plain LF@. This makes sending those mails take less CPU, especially with sendfile() syscall with Linux and FreeBSD@. But it also creates a bit more disk I/O which may just make it slower. Also note that if other software reads the mboxes/maildirs, they may handle the extra CRs wrong and cause problems. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22380 +#: guix-git/doc/guix.texi:22742 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-stat-dirs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22388 +#: guix-git/doc/guix.texi:22750 msgid "By default LIST command returns all entries in maildir beginning with a dot. Enabling this option makes Dovecot return only entries which are directories. This is done by stat()ing each entry, so it causes more disk I/O. (For systems setting struct @samp{dirent->d_type} this check is free and it's done always regardless of this setting). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22390 +#: guix-git/doc/guix.texi:22752 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-copy-with-hardlinks?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22395 +#: guix-git/doc/guix.texi:22757 msgid "When copying a message, do it with hard links whenever possible. This makes the performance much better, and it's unlikely to have any side effects. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22397 +#: guix-git/doc/guix.texi:22759 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-very-dirty-syncs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22402 +#: guix-git/doc/guix.texi:22764 msgid "Assume Dovecot is the only MUA accessing Maildir: Scan cur/ directory only when its mtime changes unexpectedly or when we can't find the mail otherwise. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22404 +#: guix-git/doc/guix.texi:22766 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mbox-read-locks" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22407 +#: guix-git/doc/guix.texi:22769 msgid "Which locking methods to use for locking mbox. There are four available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22409 +#: guix-git/doc/guix.texi:22771 #, no-wrap msgid "dotlock" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22413 +#: guix-git/doc/guix.texi:22775 msgid "Create .lock file. This is the oldest and most NFS-safe solution. If you want to use /var/mail/ like directory, the users will need write access to that directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22413 +#: guix-git/doc/guix.texi:22775 #, no-wrap msgid "dotlock-try" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22416 +#: guix-git/doc/guix.texi:22778 msgid "Same as dotlock, but if it fails because of permissions or because there isn't enough disk space, just skip it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22416 +#: guix-git/doc/guix.texi:22778 #, no-wrap msgid "fcntl" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22418 +#: guix-git/doc/guix.texi:22780 msgid "Use this if possible. Works with NFS too if lockd is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22418 +#: guix-git/doc/guix.texi:22780 #, no-wrap msgid "flock" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22420 guix-git/doc/guix.texi:22422 +#: guix-git/doc/guix.texi:22782 guix-git/doc/guix.texi:22784 msgid "May not exist in all systems. Doesn't work with NFS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22420 +#: guix-git/doc/guix.texi:22782 #, no-wrap msgid "lockf" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22428 +#: guix-git/doc/guix.texi:22790 msgid "You can use multiple locking methods; if you do the order they're declared in is important to avoid deadlocks if other MTAs/MUAs are using multiple locking methods as well. Some operating systems don't allow using some of them simultaneously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22430 +#: guix-git/doc/guix.texi:22792 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mbox-write-locks" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22434 +#: guix-git/doc/guix.texi:22796 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mbox-lock-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22437 +#: guix-git/doc/guix.texi:22799 msgid "Maximum time to wait for lock (all of them) before aborting. Defaults to @samp{\"5 mins\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22439 +#: guix-git/doc/guix.texi:22801 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mbox-dotlock-change-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22443 +#: guix-git/doc/guix.texi:22805 msgid "If dotlock exists but the mailbox isn't modified in any way, override the lock file after this much time. Defaults to @samp{\"2 mins\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22445 +#: guix-git/doc/guix.texi:22807 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-dirty-syncs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22456 +#: guix-git/doc/guix.texi:22818 msgid "When mbox changes unexpectedly we have to fully read it to find out what changed. If the mbox is large this can take a long time. Since the change is usually just a newly appended mail, it'd be faster to simply read the new mails. If this setting is enabled, Dovecot does this but still safely fallbacks to re-reading the whole mbox file whenever something in mbox isn't how it's expected to be. The only real downside to this setting is that if some other MUA changes message flags, Dovecot doesn't notice it immediately. Note that a full sync is done with SELECT, EXAMINE, EXPUNGE and CHECK commands. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22458 +#: guix-git/doc/guix.texi:22820 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-very-dirty-syncs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22463 +#: guix-git/doc/guix.texi:22825 msgid "Like @samp{mbox-dirty-syncs}, but don't do full syncs even with SELECT, EXAMINE, EXPUNGE or CHECK commands. If this is set, @samp{mbox-dirty-syncs} is ignored. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22465 +#: guix-git/doc/guix.texi:22827 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-lazy-writes?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22471 +#: guix-git/doc/guix.texi:22833 msgid "Delay writing mbox headers until doing a full write sync (EXPUNGE and CHECK commands and when closing the mailbox). This is especially useful for POP3 where clients often delete all mails. The downside is that our changes aren't immediately visible to other MUAs. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22473 +#: guix-git/doc/guix.texi:22835 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mbox-min-index-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22478 +#: guix-git/doc/guix.texi:22840 msgid "If mbox size is smaller than this (e.g.@: 100k), don't write index files. If an index file already exists it's still read, just not updated. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22480 +#: guix-git/doc/guix.texi:22842 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mdbox-rotate-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22483 +#: guix-git/doc/guix.texi:22845 msgid "Maximum dbox file size until it's rotated. Defaults to @samp{10000000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22485 +#: guix-git/doc/guix.texi:22847 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mdbox-rotate-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22490 +#: guix-git/doc/guix.texi:22852 msgid "Maximum dbox file age until it's rotated. Typically in days. Day begins from midnight, so 1d = today, 2d = yesterday, etc. 0 = check disabled. Defaults to @samp{\"1d\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22492 +#: guix-git/doc/guix.texi:22854 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mdbox-preallocate-space?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22497 +#: guix-git/doc/guix.texi:22859 msgid "When creating new mdbox files, immediately preallocate their size to @samp{mdbox-rotate-size}. This setting currently works only in Linux with some file systems (ext4, xfs). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22499 +#: guix-git/doc/guix.texi:22861 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22503 +#: guix-git/doc/guix.texi:22865 msgid "sdbox and mdbox support saving mail attachments to external files, which also allows single instance storage for them. Other backends don't support this for now." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22505 +#: guix-git/doc/guix.texi:22867 msgid "WARNING: This feature hasn't been tested much yet. Use at your own risk." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22508 +#: guix-git/doc/guix.texi:22870 msgid "Directory root where to store mail attachments. Disabled, if empty. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22510 +#: guix-git/doc/guix.texi:22872 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-attachment-min-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22515 +#: guix-git/doc/guix.texi:22877 msgid "Attachments smaller than this aren't saved externally. It's also possible to write a plugin to disable saving specific attachments externally. Defaults to @samp{128000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22517 +#: guix-git/doc/guix.texi:22879 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-fs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22519 +#: guix-git/doc/guix.texi:22881 msgid "File system backend to use for saving attachments:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22520 +#: guix-git/doc/guix.texi:22882 #, no-wrap msgid "posix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22522 +#: guix-git/doc/guix.texi:22884 msgid "No SiS done by Dovecot (but this might help FS's own deduplication)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22522 +#: guix-git/doc/guix.texi:22884 #, no-wrap msgid "sis posix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22524 +#: guix-git/doc/guix.texi:22886 msgid "SiS with immediate byte-by-byte comparison during saving" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22524 +#: guix-git/doc/guix.texi:22886 #, no-wrap msgid "sis-queue posix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22526 +#: guix-git/doc/guix.texi:22888 msgid "SiS with delayed comparison and deduplication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22528 +#: guix-git/doc/guix.texi:22890 msgid "Defaults to @samp{\"sis posix\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22530 +#: guix-git/doc/guix.texi:22892 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-hash" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22536 +#: guix-git/doc/guix.texi:22898 msgid "Hash format to use in attachment filenames. You can add any text and variables: @code{%@{md4@}}, @code{%@{md5@}}, @code{%@{sha1@}}, @code{%@{sha256@}}, @code{%@{sha512@}}, @code{%@{size@}}. Variables can be truncated, e.g.@: @code{%@{sha256:80@}} returns only first 80 bits. Defaults to @samp{\"%@{sha1@}\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22538 +#: guix-git/doc/guix.texi:22900 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-process-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22543 +#: guix-git/doc/guix.texi:22905 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-client-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22546 guix-git/doc/guix.texi:30171 +#: guix-git/doc/guix.texi:22908 guix-git/doc/guix.texi:30536 msgid "Defaults to @samp{1000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22548 +#: guix-git/doc/guix.texi:22910 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-vsz-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22553 +#: guix-git/doc/guix.texi:22915 msgid "Default VSZ (virtual memory size) limit for service processes. This is mainly intended to catch and kill processes that leak memory before they eat up everything. Defaults to @samp{256000000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22555 +#: guix-git/doc/guix.texi:22917 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string default-login-user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22560 +#: guix-git/doc/guix.texi:22922 msgid "Login user is internally used by login processes. This is the most untrusted user in Dovecot system. It shouldn't have access to anything at all. Defaults to @samp{\"dovenull\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22562 +#: guix-git/doc/guix.texi:22924 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string default-internal-user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22567 +#: guix-git/doc/guix.texi:22929 msgid "Internal user is used by unprivileged processes. It should be separate from login user, so that login processes can't disturb other processes. Defaults to @samp{\"dovecot\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22569 +#: guix-git/doc/guix.texi:22931 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string ssl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22572 +#: guix-git/doc/guix.texi:22934 msgid "SSL/TLS support: yes, no, required. . Defaults to @samp{\"required\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22574 +#: guix-git/doc/guix.texi:22936 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string ssl-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22577 +#: guix-git/doc/guix.texi:22939 msgid "PEM encoded X.509 SSL/TLS certificate (public key). Defaults to @samp{\" was automatically rejected:%n%r\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22687 +#: guix-git/doc/guix.texi:23049 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string recipient-delimiter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22691 +#: guix-git/doc/guix.texi:23053 msgid "Delimiter character between local-part and detail in email address. Defaults to @samp{\"+\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22693 +#: guix-git/doc/guix.texi:23055 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string lda-original-recipient-header" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22699 +#: guix-git/doc/guix.texi:23061 msgid "Header where the original recipient address (SMTP's RCPT TO: address) is taken from if not available elsewhere. With dovecot-lda -a parameter overrides this. A commonly used header for this is X-Original-To. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22701 +#: guix-git/doc/guix.texi:23063 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean lda-mailbox-autocreate?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22705 +#: guix-git/doc/guix.texi:23067 msgid "Should saving a mail to a nonexistent mailbox automatically create it?. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22707 +#: guix-git/doc/guix.texi:23069 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean lda-mailbox-autosubscribe?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22711 +#: guix-git/doc/guix.texi:23073 msgid "Should automatically created mailboxes be also automatically subscribed?. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22713 +#: guix-git/doc/guix.texi:23075 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer imap-max-line-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22719 +#: guix-git/doc/guix.texi:23081 msgid "Maximum IMAP command line length. Some clients generate very long command lines with huge mailboxes, so you may need to raise this if you get \"Too long argument\" or \"IMAP command line too large\" errors often. Defaults to @samp{64000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22721 +#: guix-git/doc/guix.texi:23083 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-logout-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22723 +#: guix-git/doc/guix.texi:23085 msgid "IMAP logout format string:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22724 +#: guix-git/doc/guix.texi:23086 #, no-wrap msgid "%i" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22726 +#: guix-git/doc/guix.texi:23088 msgid "total number of bytes read from client" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22726 +#: guix-git/doc/guix.texi:23088 #, no-wrap msgid "%o" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22728 +#: guix-git/doc/guix.texi:23090 msgid "total number of bytes sent to client." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22731 +#: guix-git/doc/guix.texi:23093 msgid "See @file{doc/wiki/Variables.txt} for a list of all the variables you can use. Defaults to @samp{\"in=%i out=%o deleted=%@{deleted@} expunged=%@{expunged@} trashed=%@{trashed@} hdr_count=%@{fetch_hdr_count@} hdr_bytes=%@{fetch_hdr_bytes@} body_count=%@{fetch_body_count@} body_bytes=%@{fetch_body_bytes@}\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22733 +#: guix-git/doc/guix.texi:23095 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-capability" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22737 +#: guix-git/doc/guix.texi:23099 msgid "Override the IMAP CAPABILITY response. If the value begins with '+', add the given capabilities on top of the defaults (e.g.@: +XFOO XBAR). Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22739 +#: guix-git/doc/guix.texi:23101 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-idle-notify-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22743 +#: guix-git/doc/guix.texi:23105 msgid "How long to wait between \"OK Still here\" notifications when client is IDLEing. Defaults to @samp{\"2 mins\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22745 +#: guix-git/doc/guix.texi:23107 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-id-send" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22751 +#: guix-git/doc/guix.texi:23113 msgid "ID field names and values to send to clients. Using * as the value makes Dovecot use the default value. The following fields have default values currently: name, version, os, os-version, support-url, support-email. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22753 +#: guix-git/doc/guix.texi:23115 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-id-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22756 +#: guix-git/doc/guix.texi:23118 msgid "ID fields sent by client to log. * means everything. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22758 +#: guix-git/doc/guix.texi:23120 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list imap-client-workarounds" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22760 +#: guix-git/doc/guix.texi:23122 msgid "Workarounds for various client bugs:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22762 +#: guix-git/doc/guix.texi:23124 #, no-wrap msgid "delay-newmail" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22769 +#: guix-git/doc/guix.texi:23131 msgid "Send EXISTS/RECENT new mail notifications only when replying to NOOP and CHECK commands. Some clients ignore them otherwise, for example OSX Mail (' before setting it here, to get a feel for which cipher suites you will get. After setting this option, it is recommend that you inspect your Murmur log to ensure that Murmur is using the cipher suites that you expected it to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24159 +#: guix-git/doc/guix.texi:24521 msgid "Note: Changing this option may impact the backwards compatibility of your Murmur server, and can remove the ability for older Mumble clients to be able to connect to it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:24160 +#: guix-git/doc/guix.texi:24522 #, no-wrap msgid "@code{public-registration} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:24162 +#: guix-git/doc/guix.texi:24524 msgid "Must be a @code{} record or @code{#f}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24167 +#: guix-git/doc/guix.texi:24529 msgid "You can optionally register your server in the public server list that the @code{mumble} client shows on startup. You cannot register your server if you have set a @code{server-password}, or set @code{allow-ping} to @code{#f}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24169 +#: guix-git/doc/guix.texi:24531 msgid "It might take a few hours until it shows up in the public list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:24170 guix-git/doc/guix.texi:26407 +#: guix-git/doc/guix.texi:24532 guix-git/doc/guix.texi:26744 #, no-wrap msgid "@code{file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:24172 +#: guix-git/doc/guix.texi:24534 msgid "Optional alternative override for this configuration." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24175 +#: guix-git/doc/guix.texi:24537 #, no-wrap msgid "{Data Type} murmur-public-registration-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24177 +#: guix-git/doc/guix.texi:24539 msgid "Configuration for public registration of a murmur service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24181 +#: guix-git/doc/guix.texi:24543 msgid "This is a display name for your server. Not to be confused with the hostname." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:24182 guix-git/doc/guix.texi:33135 -#: guix-git/doc/guix.texi:34304 +#: guix-git/doc/guix.texi:24544 guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:34743 #, no-wrap msgid "password" msgstr "salasana" #. type: table -#: guix-git/doc/guix.texi:24185 +#: guix-git/doc/guix.texi:24547 msgid "A password to identify your registration. Subsequent updates will need the same password. Don't lose your password." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24189 +#: guix-git/doc/guix.texi:24551 msgid "This should be a @code{http://} or @code{https://} link to your web site." msgstr "" #. type: item -#: guix-git/doc/guix.texi:24190 guix-git/doc/guix.texi:27292 +#: guix-git/doc/guix.texi:24552 guix-git/doc/guix.texi:27629 #, no-wrap msgid "@code{hostname} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:24193 +#: guix-git/doc/guix.texi:24555 msgid "By default your server will be listed by its IP address. If it is set your server will be linked by this host name instead." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24203 +#: guix-git/doc/guix.texi:24565 msgid "The @code{(gnu services file-sharing)} module provides services that assist with transferring files over peer-to-peer file-sharing networks." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:24204 +#: guix-git/doc/guix.texi:24566 #, no-wrap msgid "Transmission Daemon Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24212 +#: guix-git/doc/guix.texi:24574 msgid "@uref{https://transmissionbt.com/, Transmission} is a flexible BitTorrent client that offers a variety of graphical and command-line interfaces. A @code{transmission-daemon-service-type} service provides Transmission's headless variant, @command{transmission-daemon}, as a system service, allowing users to share files via BitTorrent even when they are not logged in." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24213 +#: guix-git/doc/guix.texi:24575 #, no-wrap msgid "{Scheme Variable} transmission-daemon-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24217 +#: guix-git/doc/guix.texi:24579 msgid "The service type for the Transmission Daemon BitTorrent client. Its value must be a @code{transmission-daemon-configuration} object as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24228 +#: guix-git/doc/guix.texi:24590 #, no-wrap msgid "" "(service transmission-daemon-service-type\n" @@ -43430,7 +44042,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24233 +#: guix-git/doc/guix.texi:24595 #, no-wrap msgid "" " ;; Accept requests from this and other hosts on the\n" @@ -43441,7 +44053,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24237 +#: guix-git/doc/guix.texi:24599 #, no-wrap msgid "" " ;; Limit bandwidth use during work hours\n" @@ -43451,7 +44063,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24244 +#: guix-git/doc/guix.texi:24606 #, no-wrap msgid "" " (alt-speed-time-enabled? #t)\n" @@ -43463,49 +44075,49 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24257 +#: guix-git/doc/guix.texi:24619 msgid "Once the service is started, users can interact with the daemon through its Web interface (at @code{http://localhost:9091/}) or by using the @command{transmission-remote} command-line tool, available in the @code{transmission} package. (Emacs users may want to also consider the @code{emacs-transmission} package.) Both communicate with the daemon through its remote procedure call (RPC) interface, which by default is available to all users on the system; you may wish to change this by assigning values to the @code{rpc-authentication-required?}, @code{rpc-username} and @code{rpc-password} settings, as shown in the example above and documented further below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24265 +#: guix-git/doc/guix.texi:24627 msgid "The value for @code{rpc-password} must be a password hash of the type generated and used by Transmission clients. This can be copied verbatim from an existing @file{settings.json} file, if another Transmission client is already being used. Otherwise, the @code{transmission-password-hash} and @code{transmission-random-salt} procedures provided by this module can be used to obtain a suitable hash value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24266 +#: guix-git/doc/guix.texi:24628 #, no-wrap msgid "{Scheme Procedure} transmission-password-hash @var{password} @var{salt}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24270 +#: guix-git/doc/guix.texi:24632 msgid "Returns a string containing the result of hashing @var{password} together with @var{salt}, in the format recognized by Transmission clients for their @code{rpc-password} configuration setting." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24274 +#: guix-git/doc/guix.texi:24636 msgid "@var{salt} must be an eight-character string. The @code{transmission-random-salt} procedure can be used to generate a suitable salt value at random." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24276 +#: guix-git/doc/guix.texi:24638 #, no-wrap msgid "{Scheme Procedure} transmission-random-salt" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24280 +#: guix-git/doc/guix.texi:24642 msgid "Returns a string containing a random, eight-character salt value of the type generated and used by Transmission clients, suitable for passing to the @code{transmission-password-hash} procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24286 +#: guix-git/doc/guix.texi:24648 msgid "These procedures are accessible from within a Guile REPL started with the @command{guix repl} command (@pxref{Invoking guix repl}). This is useful for obtaining a random salt value to provide as the second parameter to `transmission-password-hash`, as in this example session:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:24292 +#: guix-git/doc/guix.texi:24654 #, no-wrap msgid "" "$ guix repl\n" @@ -43515,12 +44127,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24295 +#: guix-git/doc/guix.texi:24657 msgid "Alternatively, a complete password hash can generated in a single step:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:24300 +#: guix-git/doc/guix.texi:24662 #, no-wrap msgid "" "scheme@@(guix-user)> (transmission-password-hash \"transmission\"\n" @@ -43529,480 +44141,480 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24305 +#: guix-git/doc/guix.texi:24667 msgid "The resulting string can be used as-is for the value of @code{rpc-password}, allowing the password to be kept hidden even in the operating-system configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24314 +#: guix-git/doc/guix.texi:24676 msgid "Torrent files downloaded by the daemon are directly accessible only to users in the ``transmission'' user group, who receive read-only access to the directory specified by the @code{download-dir} configuration setting (and also the directory specified by @code{incomplete-dir}, if @code{incomplete-dir-enabled?} is @code{#t}). Downloaded files can be moved to another directory or deleted altogether using @command{transmission-remote} with its @code{--move} and @code{--remove-and-delete} options." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24321 +#: guix-git/doc/guix.texi:24683 msgid "If the @code{watch-dir-enabled?} setting is set to @code{#t}, users in the ``transmission'' group are able also to place @file{.torrent} files in the directory specified by @code{watch-dir} to have the corresponding torrents added by the daemon. (The @code{trash-original-torrent-files?} setting controls whether the daemon deletes these files after processing them.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24326 +#: guix-git/doc/guix.texi:24688 msgid "Some of the daemon's configuration settings can be changed temporarily by @command{transmission-remote} and similar tools. To undo these changes, use the service's @code{reload} action to have the daemon reload its settings from disk:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:24329 +#: guix-git/doc/guix.texi:24691 #, no-wrap msgid "# herd reload transmission-daemon\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24333 +#: guix-git/doc/guix.texi:24695 msgid "The full set of available configuration settings is defined by the @code{transmission-daemon-configuration} data type." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24334 +#: guix-git/doc/guix.texi:24696 #, no-wrap msgid "{Data Type} transmission-daemon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24338 +#: guix-git/doc/guix.texi:24700 msgid "The data type representing configuration settings for Transmission Daemon. These correspond directly to the settings recognized by Transmission clients in their @file{settings.json} file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24352 +#: guix-git/doc/guix.texi:24714 msgid "Available @code{transmission-daemon-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24353 +#: guix-git/doc/guix.texi:24715 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} package transmission" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24355 +#: guix-git/doc/guix.texi:24717 msgid "The Transmission package to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24358 +#: guix-git/doc/guix.texi:24720 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer stop-wait-period" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24364 +#: guix-git/doc/guix.texi:24726 msgid "The period, in seconds, to wait when stopping the service for @command{transmission-daemon} to exit before killing its process. This allows the daemon time to complete its housekeeping and send a final update to trackers as it shuts down. On slow hosts, or hosts with a slow network connection, this value may need to be increased." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24366 guix-git/doc/guix.texi:24738 -#: guix-git/doc/guix.texi:32101 guix-git/doc/guix.texi:32336 -#: guix-git/doc/guix.texi:32344 guix-git/doc/guix.texi:32352 +#: guix-git/doc/guix.texi:24728 guix-git/doc/guix.texi:25100 +#: guix-git/doc/guix.texi:32466 guix-git/doc/guix.texi:32701 +#: guix-git/doc/guix.texi:32709 guix-git/doc/guix.texi:32717 msgid "Defaults to @samp{10}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24369 +#: guix-git/doc/guix.texi:24731 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string download-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24371 +#: guix-git/doc/guix.texi:24733 msgid "The directory to which torrent files are downloaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24373 +#: guix-git/doc/guix.texi:24735 msgid "Defaults to @samp{\"/var/lib/transmission-daemon/downloads\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24376 +#: guix-git/doc/guix.texi:24738 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean incomplete-dir-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24381 +#: guix-git/doc/guix.texi:24743 msgid "If @code{#t}, files will be held in @code{incomplete-dir} while their torrent is being downloaded, then moved to @code{download-dir} once the torrent is complete. Otherwise, files for all torrents (including those still being downloaded) will be placed in @code{download-dir}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24386 +#: guix-git/doc/guix.texi:24748 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string incomplete-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24389 +#: guix-git/doc/guix.texi:24751 msgid "The directory in which files from incompletely downloaded torrents will be held when @code{incomplete-dir-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24394 +#: guix-git/doc/guix.texi:24756 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} umask umask" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24397 +#: guix-git/doc/guix.texi:24759 msgid "The file mode creation mask used for downloaded files. (See the @command{umask} man page for more information.)" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24399 +#: guix-git/doc/guix.texi:24761 msgid "Defaults to @samp{18}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24402 +#: guix-git/doc/guix.texi:24764 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rename-partial-files?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24405 +#: guix-git/doc/guix.texi:24767 msgid "When @code{#t}, ``.part'' is appended to the name of partially downloaded files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24410 +#: guix-git/doc/guix.texi:24772 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} preallocation-mode preallocation" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24415 +#: guix-git/doc/guix.texi:24777 msgid "The mode by which space should be preallocated for downloaded files, one of @code{none}, @code{fast} (or @code{sparse}) and @code{full}. Specifying @code{full} will minimize disk fragmentation at a cost to file-creation speed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24417 +#: guix-git/doc/guix.texi:24779 msgid "Defaults to @samp{fast}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24420 +#: guix-git/doc/guix.texi:24782 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean watch-dir-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24425 +#: guix-git/doc/guix.texi:24787 msgid "If @code{#t}, the directory specified by @code{watch-dir} will be watched for new @file{.torrent} files and the torrents they describe added automatically (and the original files removed, if @code{trash-original-torrent-files?} is @code{#t})." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24430 +#: guix-git/doc/guix.texi:24792 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string watch-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24433 +#: guix-git/doc/guix.texi:24795 msgid "The directory to be watched for @file{.torrent} files indicating new torrents to be added, when @code{watch-dir-enabled} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24438 +#: guix-git/doc/guix.texi:24800 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean trash-original-torrent-files?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24442 +#: guix-git/doc/guix.texi:24804 msgid "When @code{#t}, @file{.torrent} files will be deleted from the watch directory once their torrent has been added (see @code{watch-directory-enabled?})." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24447 +#: guix-git/doc/guix.texi:24809 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean speed-limit-down-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24450 +#: guix-git/doc/guix.texi:24812 msgid "When @code{#t}, the daemon's download speed will be limited to the rate specified by @code{speed-limit-down}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24455 +#: guix-git/doc/guix.texi:24817 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer speed-limit-down" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24457 +#: guix-git/doc/guix.texi:24819 msgid "The default global-maximum download speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24462 +#: guix-git/doc/guix.texi:24824 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean speed-limit-up-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24465 +#: guix-git/doc/guix.texi:24827 msgid "When @code{#t}, the daemon's upload speed will be limited to the rate specified by @code{speed-limit-up}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24470 +#: guix-git/doc/guix.texi:24832 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer speed-limit-up" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24472 +#: guix-git/doc/guix.texi:24834 msgid "The default global-maximum upload speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24477 +#: guix-git/doc/guix.texi:24839 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean alt-speed-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24483 +#: guix-git/doc/guix.texi:24845 msgid "When @code{#t}, the alternate speed limits @code{alt-speed-down} and @code{alt-speed-up} are used (in place of @code{speed-limit-down} and @code{speed-limit-up}, if they are enabled) to constrain the daemon's bandwidth usage. This can be scheduled to occur automatically at certain times during the week; see @code{alt-speed-time-enabled?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24488 +#: guix-git/doc/guix.texi:24850 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-down" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24490 +#: guix-git/doc/guix.texi:24852 msgid "The alternate global-maximum download speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24492 guix-git/doc/guix.texi:24499 -#: guix-git/doc/guix.texi:24671 guix-git/doc/guix.texi:32108 -#: guix-git/doc/guix.texi:32123 +#: guix-git/doc/guix.texi:24854 guix-git/doc/guix.texi:24861 +#: guix-git/doc/guix.texi:25033 guix-git/doc/guix.texi:32473 +#: guix-git/doc/guix.texi:32488 msgid "Defaults to @samp{50}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24495 +#: guix-git/doc/guix.texi:24857 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-up" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24497 +#: guix-git/doc/guix.texi:24859 msgid "The alternate global-maximum upload speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24502 +#: guix-git/doc/guix.texi:24864 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean alt-speed-time-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24507 +#: guix-git/doc/guix.texi:24869 msgid "When @code{#t}, the alternate speed limits @code{alt-speed-down} and @code{alt-speed-up} will be enabled automatically during the periods specified by @code{alt-speed-time-day}, @code{alt-speed-time-begin} and @code{alt-time-speed-end}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24512 +#: guix-git/doc/guix.texi:24874 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} day-list alt-speed-time-day" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24517 +#: guix-git/doc/guix.texi:24879 msgid "The days of the week on which the alternate-speed schedule should be used, specified either as a list of days (@code{sunday}, @code{monday}, and so on) or using one of the symbols @code{weekdays}, @code{weekends} or @code{all}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24519 +#: guix-git/doc/guix.texi:24881 msgid "Defaults to @samp{all}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24522 +#: guix-git/doc/guix.texi:24884 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-time-begin" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24525 +#: guix-git/doc/guix.texi:24887 msgid "The time of day at which to enable the alternate speed limits, expressed as a number of minutes since midnight." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24527 +#: guix-git/doc/guix.texi:24889 msgid "Defaults to @samp{540}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24530 +#: guix-git/doc/guix.texi:24892 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-time-end" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24533 +#: guix-git/doc/guix.texi:24895 msgid "The time of day at which to disable the alternate speed limits, expressed as a number of minutes since midnight." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24535 +#: guix-git/doc/guix.texi:24897 msgid "Defaults to @samp{1020}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24538 +#: guix-git/doc/guix.texi:24900 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string bind-address-ipv4" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24541 +#: guix-git/doc/guix.texi:24903 msgid "The IP address at which to listen for peer connections, or ``0.0.0.0'' to listen at all available IP addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24543 guix-git/doc/guix.texi:24846 -#: guix-git/doc/guix.texi:29969 +#: guix-git/doc/guix.texi:24905 guix-git/doc/guix.texi:25208 +#: guix-git/doc/guix.texi:30334 msgid "Defaults to @samp{\"0.0.0.0\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24546 +#: guix-git/doc/guix.texi:24908 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string bind-address-ipv6" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24549 +#: guix-git/doc/guix.texi:24911 msgid "The IPv6 address at which to listen for peer connections, or ``::'' to listen at all available IPv6 addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24551 +#: guix-git/doc/guix.texi:24913 msgid "Defaults to @samp{\"::\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24554 +#: guix-git/doc/guix.texi:24916 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean peer-port-random-on-start?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24560 +#: guix-git/doc/guix.texi:24922 msgid "If @code{#t}, when the daemon starts it will select a port at random on which to listen for peer connections, from the range specified (inclusively) by @code{peer-port-random-low} and @code{peer-port-random-high}. Otherwise, it listens on the port specified by @code{peer-port}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24565 +#: guix-git/doc/guix.texi:24927 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port-random-low" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24568 +#: guix-git/doc/guix.texi:24930 msgid "The lowest selectable port number when @code{peer-port-random-on-start?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24570 +#: guix-git/doc/guix.texi:24932 msgid "Defaults to @samp{49152}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24573 +#: guix-git/doc/guix.texi:24935 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port-random-high" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24576 +#: guix-git/doc/guix.texi:24938 msgid "The highest selectable port number when @code{peer-port-random-on-start} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24578 +#: guix-git/doc/guix.texi:24940 msgid "Defaults to @samp{65535}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24581 +#: guix-git/doc/guix.texi:24943 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24584 +#: guix-git/doc/guix.texi:24946 msgid "The port on which to listen for peer connections when @code{peer-port-random-on-start?} is @code{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24586 +#: guix-git/doc/guix.texi:24948 msgid "Defaults to @samp{51413}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24589 +#: guix-git/doc/guix.texi:24951 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean port-forwarding-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24593 +#: guix-git/doc/guix.texi:24955 msgid "If @code{#t}, the daemon will attempt to configure port-forwarding on an upstream gateway automatically using @acronym{UPnP} and @acronym{NAT-PMP}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24598 +#: guix-git/doc/guix.texi:24960 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} encryption-mode encryption" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24603 +#: guix-git/doc/guix.texi:24965 msgid "The encryption preference for peer connections, one of @code{prefer-unencrypted-connections}, @code{prefer-encrypted-connections} or @code{require-encrypted-connections}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24605 +#: guix-git/doc/guix.texi:24967 msgid "Defaults to @samp{prefer-encrypted-connections}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24608 +#: guix-git/doc/guix.texi:24970 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string peer-congestion-algorithm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24613 +#: guix-git/doc/guix.texi:24975 msgid "The TCP congestion-control algorithm to use for peer connections, specified using a string recognized by the operating system in calls to @code{setsockopt} (or set to @code{disabled}, in which case the operating-system default is used)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24622 +#: guix-git/doc/guix.texi:24984 msgid "Note that on GNU/Linux systems, the kernel must be configured to allow processes to use a congestion-control algorithm not in the default set; otherwise, it will deny these requests with ``Operation not permitted''. To see which algorithms are available on your system and which are currently permitted for use, look at the contents of the files @file{tcp_available_congestion_control} and @file{tcp_allowed_congestion_control} in the @file{/proc/sys/net/ipv4} directory." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24630 +#: guix-git/doc/guix.texi:24992 msgid "As an example, to have Transmission Daemon use @uref{http://www-ece.rice.edu/networks/TCP-LP/,the TCP Low Priority congestion-control algorithm}, you'll need to modify your kernel configuration to build in support for the algorithm, then update your operating-system configuration to allow its use by adding a @code{sysctl-service-type} service (or updating the existing one's configuration) with lines like the following:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24637 +#: guix-git/doc/guix.texi:24999 #, no-wrap msgid "" "(service sysctl-service-type\n" @@ -44013,529 +44625,529 @@ msgid "" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24640 +#: guix-git/doc/guix.texi:25002 msgid "The Transmission Daemon configuration can then be updated with" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24643 +#: guix-git/doc/guix.texi:25005 #, no-wrap msgid "(peer-congestion-algorithm \"lp\")\n" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24646 +#: guix-git/doc/guix.texi:25008 msgid "and the system reconfigured to have the changes take effect." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24651 +#: guix-git/doc/guix.texi:25013 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} tcp-type-of-service peer-socket-tos" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24655 +#: guix-git/doc/guix.texi:25017 msgid "The type of service to request in outgoing @acronym{TCP} packets, one of @code{default}, @code{low-cost}, @code{throughput}, @code{low-delay} and @code{reliability}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24657 +#: guix-git/doc/guix.texi:25019 msgid "Defaults to @samp{default}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24660 +#: guix-git/doc/guix.texi:25022 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-limit-global" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24662 +#: guix-git/doc/guix.texi:25024 msgid "The global limit on the number of connected peers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24664 +#: guix-git/doc/guix.texi:25026 msgid "Defaults to @samp{200}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24667 +#: guix-git/doc/guix.texi:25029 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-limit-per-torrent" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24669 +#: guix-git/doc/guix.texi:25031 msgid "The per-torrent limit on the number of connected peers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24674 +#: guix-git/doc/guix.texi:25036 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer upload-slots-per-torrent" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24677 +#: guix-git/doc/guix.texi:25039 msgid "The maximum number of peers to which the daemon will upload data simultaneously for each torrent." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24679 +#: guix-git/doc/guix.texi:25041 msgid "Defaults to @samp{14}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24682 +#: guix-git/doc/guix.texi:25044 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-id-ttl-hours" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24685 +#: guix-git/doc/guix.texi:25047 msgid "The maximum lifespan, in hours, of the peer ID associated with each public torrent before it is regenerated." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24687 +#: guix-git/doc/guix.texi:25049 msgid "Defaults to @samp{6}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24690 +#: guix-git/doc/guix.texi:25052 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean blocklist-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24693 +#: guix-git/doc/guix.texi:25055 msgid "When @code{#t}, the daemon will ignore peers mentioned in the blocklist it has most recently downloaded from @code{blocklist-url}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24698 +#: guix-git/doc/guix.texi:25060 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string blocklist-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24702 +#: guix-git/doc/guix.texi:25064 msgid "The URL of a peer blocklist (in @acronym{P2P}-plaintext or eMule @file{.dat} format) to be periodically downloaded and applied when @code{blocklist-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24707 +#: guix-git/doc/guix.texi:25069 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean download-queue-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24710 +#: guix-git/doc/guix.texi:25072 msgid "If @code{#t}, the daemon will be limited to downloading at most @code{download-queue-size} non-stalled torrents simultaneously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24715 +#: guix-git/doc/guix.texi:25077 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer download-queue-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24719 +#: guix-git/doc/guix.texi:25081 msgid "The size of the daemon's download queue, which limits the number of non-stalled torrents it will download at any one time when @code{download-queue-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24724 +#: guix-git/doc/guix.texi:25086 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean seed-queue-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24727 +#: guix-git/doc/guix.texi:25089 msgid "If @code{#t}, the daemon will be limited to seeding at most @code{seed-queue-size} non-stalled torrents simultaneously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24732 +#: guix-git/doc/guix.texi:25094 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer seed-queue-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24736 +#: guix-git/doc/guix.texi:25098 msgid "The size of the daemon's seed queue, which limits the number of non-stalled torrents it will seed at any one time when @code{seed-queue-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24741 +#: guix-git/doc/guix.texi:25103 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean queue-stalled-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24746 +#: guix-git/doc/guix.texi:25108 msgid "When @code{#t}, the daemon will consider torrents for which it has not shared data in the past @code{queue-stalled-minutes} minutes to be stalled and not count them against its @code{download-queue-size} and @code{seed-queue-size} limits." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24751 +#: guix-git/doc/guix.texi:25113 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer queue-stalled-minutes" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24755 +#: guix-git/doc/guix.texi:25117 msgid "The maximum period, in minutes, a torrent may be idle before it is considered to be stalled, when @code{queue-stalled-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24760 +#: guix-git/doc/guix.texi:25122 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean ratio-limit-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24763 +#: guix-git/doc/guix.texi:25125 msgid "When @code{#t}, a torrent being seeded will automatically be paused once it reaches the ratio specified by @code{ratio-limit}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24768 +#: guix-git/doc/guix.texi:25130 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-rational ratio-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24771 +#: guix-git/doc/guix.texi:25133 msgid "The ratio at which a torrent being seeded will be paused, when @code{ratio-limit-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24773 +#: guix-git/doc/guix.texi:25135 msgid "Defaults to @samp{2.0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24776 +#: guix-git/doc/guix.texi:25138 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean idle-seeding-limit-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24779 +#: guix-git/doc/guix.texi:25141 msgid "When @code{#t}, a torrent being seeded will automatically be paused once it has been idle for @code{idle-seeding-limit} minutes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24784 +#: guix-git/doc/guix.texi:25146 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer idle-seeding-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24788 +#: guix-git/doc/guix.texi:25150 msgid "The maximum period, in minutes, a torrent being seeded may be idle before it is paused, when @code{idle-seeding-limit-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24793 +#: guix-git/doc/guix.texi:25155 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean dht-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24797 +#: guix-git/doc/guix.texi:25159 msgid "Enable @uref{http://bittorrent.org/beps/bep_0005.html,the distributed hash table (@acronym{DHT}) protocol}, which supports the use of trackerless torrents." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24802 +#: guix-git/doc/guix.texi:25164 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean lpd-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24807 +#: guix-git/doc/guix.texi:25169 msgid "Enable @uref{https://en.wikipedia.org/wiki/Local_Peer_Discovery,local peer discovery} (@acronym{LPD}), which allows the discovery of peers on the local network and may reduce the amount of data sent over the public Internet." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24812 +#: guix-git/doc/guix.texi:25174 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean pex-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24816 +#: guix-git/doc/guix.texi:25178 msgid "Enable @uref{https://en.wikipedia.org/wiki/Peer_exchange,peer exchange} (@acronym{PEX}), which reduces the daemon's reliance on external trackers and may improve its performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24821 +#: guix-git/doc/guix.texi:25183 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean utp-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24826 +#: guix-git/doc/guix.texi:25188 msgid "Enable @uref{http://bittorrent.org/beps/bep_0029.html,the micro transport protocol} (@acronym{uTP}), which aims to reduce the impact of BitTorrent traffic on other users of the local network while maintaining full utilization of the available bandwidth." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24831 +#: guix-git/doc/guix.texi:25193 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24836 +#: guix-git/doc/guix.texi:25198 msgid "If @code{#t}, enable the remote procedure call (@acronym{RPC}) interface, which allows remote control of the daemon via its Web interface, the @command{transmission-remote} command-line client, and similar tools." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24841 +#: guix-git/doc/guix.texi:25203 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string rpc-bind-address" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24844 +#: guix-git/doc/guix.texi:25206 msgid "The IP address at which to listen for @acronym{RPC} connections, or ``0.0.0.0'' to listen at all available IP addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24849 +#: guix-git/doc/guix.texi:25211 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number rpc-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24851 +#: guix-git/doc/guix.texi:25213 msgid "The port on which to listen for @acronym{RPC} connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24853 +#: guix-git/doc/guix.texi:25215 msgid "Defaults to @samp{9091}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24856 +#: guix-git/doc/guix.texi:25218 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string rpc-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24858 +#: guix-git/doc/guix.texi:25220 msgid "The path prefix to use in the @acronym{RPC}-endpoint @acronym{URL}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24860 +#: guix-git/doc/guix.texi:25222 msgid "Defaults to @samp{\"/transmission/\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24863 +#: guix-git/doc/guix.texi:25225 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-authentication-required?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24868 +#: guix-git/doc/guix.texi:25230 msgid "When @code{#t}, clients must authenticate (see @code{rpc-username} and @code{rpc-password}) when using the @acronym{RPC} interface. Note this has the side effect of disabling host-name whitelisting (see @code{rpc-host-whitelist-enabled?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24873 +#: guix-git/doc/guix.texi:25235 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string rpc-username" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24876 +#: guix-git/doc/guix.texi:25238 msgid "The username required by clients to access the @acronym{RPC} interface when @code{rpc-authentication-required?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24881 +#: guix-git/doc/guix.texi:25243 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-transmission-password-hash rpc-password" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24887 +#: guix-git/doc/guix.texi:25249 msgid "The password required by clients to access the @acronym{RPC} interface when @code{rpc-authentication-required?} is @code{#t}. This must be specified using a password hash in the format recognized by Transmission clients, either copied from an existing @file{settings.json} file or generated using the @code{transmission-password-hash} procedure." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24892 +#: guix-git/doc/guix.texi:25254 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-whitelist-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24895 +#: guix-git/doc/guix.texi:25257 msgid "When @code{#t}, @acronym{RPC} requests will be accepted only when they originate from an address specified in @code{rpc-whitelist}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24900 +#: guix-git/doc/guix.texi:25262 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string-list rpc-whitelist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24904 +#: guix-git/doc/guix.texi:25266 msgid "The list of IP and IPv6 addresses from which @acronym{RPC} requests will be accepted when @code{rpc-whitelist-enabled?} is @code{#t}. Wildcards may be specified using @samp{*}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24906 +#: guix-git/doc/guix.texi:25268 msgid "Defaults to @samp{(\"127.0.0.1\" \"::1\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24909 +#: guix-git/doc/guix.texi:25271 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-host-whitelist-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24914 +#: guix-git/doc/guix.texi:25276 msgid "When @code{#t}, @acronym{RPC} requests will be accepted only when they are addressed to a host named in @code{rpc-host-whitelist}. Note that requests to ``localhost'' or ``localhost.'', or to a numeric address, are always accepted regardless of these settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24917 +#: guix-git/doc/guix.texi:25279 msgid "Note also this functionality is disabled when @code{rpc-authentication-required?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24922 +#: guix-git/doc/guix.texi:25284 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string-list rpc-host-whitelist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24925 +#: guix-git/doc/guix.texi:25287 msgid "The list of host names recognized by the @acronym{RPC} server when @code{rpc-host-whitelist-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24930 +#: guix-git/doc/guix.texi:25292 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} message-level message-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24934 +#: guix-git/doc/guix.texi:25296 msgid "The minimum severity level of messages to be logged (to @file{/var/log/transmission.log}) by the daemon, one of @code{none} (no logging), @code{error}, @code{info} and @code{debug}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24939 +#: guix-git/doc/guix.texi:25301 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean start-added-torrents?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24942 +#: guix-git/doc/guix.texi:25304 msgid "When @code{#t}, torrents are started as soon as they are added; otherwise, they are added in ``paused'' state." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24947 +#: guix-git/doc/guix.texi:25309 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean script-torrent-done-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24951 +#: guix-git/doc/guix.texi:25313 msgid "When @code{#t}, the script specified by @code{script-torrent-done-filename} will be invoked each time a torrent completes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24956 +#: guix-git/doc/guix.texi:25318 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-file-object script-torrent-done-filename" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24960 +#: guix-git/doc/guix.texi:25322 msgid "A file name or file-like object specifying a script to run each time a torrent completes, when @code{script-torrent-done-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24965 +#: guix-git/doc/guix.texi:25327 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean scrape-paused-torrents-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24968 +#: guix-git/doc/guix.texi:25330 msgid "When @code{#t}, the daemon will scrape trackers for a torrent even when the torrent is paused." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24973 +#: guix-git/doc/guix.texi:25335 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer cache-size-mb" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24977 +#: guix-git/doc/guix.texi:25339 msgid "The amount of memory, in megabytes, to allocate for the daemon's in-memory cache. A larger value may increase performance by reducing the frequency of disk I/O." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24979 +#: guix-git/doc/guix.texi:25341 msgid "Defaults to @samp{4}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24982 +#: guix-git/doc/guix.texi:25344 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean prefetch-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24986 +#: guix-git/doc/guix.texi:25348 msgid "When @code{#t}, the daemon will try to improve I/O performance by hinting to the operating system which data is likely to be read next from disk to satisfy requests from peers." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:24999 +#: guix-git/doc/guix.texi:25361 #, no-wrap msgid "Tailon Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25003 +#: guix-git/doc/guix.texi:25365 msgid "@uref{https://tailon.readthedocs.io/, Tailon} is a web application for viewing and searching log files." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25006 +#: guix-git/doc/guix.texi:25368 msgid "The following example will configure the service with default values. By default, Tailon can be accessed on port 8080 (@code{http://localhost:8080})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25009 +#: guix-git/doc/guix.texi:25371 #, no-wrap msgid "(service tailon-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25013 +#: guix-git/doc/guix.texi:25375 msgid "The following example customises more of the Tailon configuration, adding @command{sed} to the list of allowed commands." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25020 +#: guix-git/doc/guix.texi:25382 #, no-wrap msgid "" "(service tailon-service-type\n" @@ -44546,34 +45158,34 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25023 +#: guix-git/doc/guix.texi:25385 #, no-wrap msgid "{Data Type} tailon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25026 +#: guix-git/doc/guix.texi:25388 msgid "Data type representing the configuration of Tailon. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25028 +#: guix-git/doc/guix.texi:25390 #, no-wrap msgid "@code{config-file} (default: @code{(tailon-configuration-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25032 +#: guix-git/doc/guix.texi:25394 msgid "The configuration file to use for Tailon. This can be set to a @dfn{tailon-configuration-file} record value, or any gexp (@pxref{G-Expressions})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25035 +#: guix-git/doc/guix.texi:25397 msgid "For example, to instead use a local file, the @code{local-file} function can be used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25040 +#: guix-git/doc/guix.texi:25402 #, no-wrap msgid "" "(service tailon-service-type\n" @@ -44582,144 +45194,144 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25042 +#: guix-git/doc/guix.texi:25404 #, no-wrap msgid "@code{package} (default: @code{tailon})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25044 +#: guix-git/doc/guix.texi:25406 msgid "The tailon package to use." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25048 +#: guix-git/doc/guix.texi:25410 #, no-wrap msgid "{Data Type} tailon-configuration-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25051 +#: guix-git/doc/guix.texi:25413 msgid "Data type representing the configuration options for Tailon. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25053 +#: guix-git/doc/guix.texi:25415 #, no-wrap msgid "@code{files} (default: @code{(list \"/var/log\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25058 +#: guix-git/doc/guix.texi:25420 msgid "List of files to display. The list can include strings for a single file or directory, or a list, where the first item is the name of a subsection, and the remaining items are the files or directories in that subsection." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25059 +#: guix-git/doc/guix.texi:25421 #, no-wrap msgid "@code{bind} (default: @code{\"localhost:8080\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25061 +#: guix-git/doc/guix.texi:25423 msgid "Address and port to which Tailon should bind on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25062 +#: guix-git/doc/guix.texi:25424 #, no-wrap msgid "@code{relative-root} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25064 +#: guix-git/doc/guix.texi:25426 msgid "URL path to use for Tailon, set to @code{#f} to not use a path." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25065 +#: guix-git/doc/guix.texi:25427 #, no-wrap msgid "@code{allow-transfers?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25067 +#: guix-git/doc/guix.texi:25429 msgid "Allow downloading the log files in the web interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25068 +#: guix-git/doc/guix.texi:25430 #, no-wrap msgid "@code{follow-names?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25070 +#: guix-git/doc/guix.texi:25432 msgid "Allow tailing of not-yet existent files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25071 +#: guix-git/doc/guix.texi:25433 #, no-wrap msgid "@code{tail-lines} (default: @code{200})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25073 +#: guix-git/doc/guix.texi:25435 msgid "Number of lines to read initially from each file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25074 +#: guix-git/doc/guix.texi:25436 #, no-wrap msgid "@code{allowed-commands} (default: @code{(list \"tail\" \"grep\" \"awk\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25076 +#: guix-git/doc/guix.texi:25438 msgid "Commands to allow running. By default, @code{sed} is disabled." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25079 +#: guix-git/doc/guix.texi:25441 msgid "Set @code{debug?} to @code{#t} to show debug messages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25080 +#: guix-git/doc/guix.texi:25442 #, no-wrap msgid "@code{wrap-lines} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25084 +#: guix-git/doc/guix.texi:25446 msgid "Initial line wrapping state in the web interface. Set to @code{#t} to initially wrap lines (the default), or to @code{#f} to initially not wrap lines." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25085 +#: guix-git/doc/guix.texi:25447 #, no-wrap msgid "@code{http-auth} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25089 +#: guix-git/doc/guix.texi:25451 msgid "HTTP authentication type to use. Set to @code{#f} to disable authentication (the default). Supported values are @code{\"digest\"} or @code{\"basic\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25090 +#: guix-git/doc/guix.texi:25452 #, no-wrap msgid "@code{users} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25095 +#: guix-git/doc/guix.texi:25457 msgid "If HTTP authentication is enabled (see @code{http-auth}), access will be restricted to the credentials provided here. To configure users, use a list of pairs, where the first element of the pair is the username, and the 2nd element of the pair is the password." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25101 +#: guix-git/doc/guix.texi:25463 #, no-wrap msgid "" "(tailon-configuration-file\n" @@ -44729,35 +45341,35 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25107 +#: guix-git/doc/guix.texi:25469 #, no-wrap msgid "Darkstat Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25108 +#: guix-git/doc/guix.texi:25470 #, no-wrap msgid "darkstat" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25111 +#: guix-git/doc/guix.texi:25473 msgid "Darkstat is a packet sniffer that captures network traffic, calculates statistics about usage, and serves reports over HTTP." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25112 +#: guix-git/doc/guix.texi:25474 #, no-wrap msgid "{Scheme Variable} darkstat-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25117 +#: guix-git/doc/guix.texi:25479 msgid "This is the service type for the @uref{https://unix4lyfe.org/darkstat/, darkstat} service, its value must be a @code{darkstat-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25122 +#: guix-git/doc/guix.texi:25484 #, no-wrap msgid "" "(service darkstat-service-type\n" @@ -44766,715 +45378,726 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25125 +#: guix-git/doc/guix.texi:25487 #, no-wrap msgid "{Data Type} darkstat-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25127 +#: guix-git/doc/guix.texi:25489 msgid "Data type representing the configuration of @command{darkstat}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25129 +#: guix-git/doc/guix.texi:25491 #, no-wrap msgid "@code{package} (default: @code{darkstat})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25131 +#: guix-git/doc/guix.texi:25493 msgid "The darkstat package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25132 +#: guix-git/doc/guix.texi:25494 #, no-wrap msgid "interface" msgstr "liitäntä" #. type: table -#: guix-git/doc/guix.texi:25134 +#: guix-git/doc/guix.texi:25496 msgid "Capture traffic on the specified network interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25135 +#: guix-git/doc/guix.texi:25497 #, no-wrap msgid "@code{port} (default: @code{\"667\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25137 +#: guix-git/doc/guix.texi:25499 msgid "Bind the web interface to the specified port." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25140 guix-git/doc/guix.texi:25175 +#: guix-git/doc/guix.texi:25502 guix-git/doc/guix.texi:25537 msgid "Bind the web interface to the specified address." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25141 +#: guix-git/doc/guix.texi:25503 #, no-wrap msgid "@code{base} (default: @code{\"/\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25144 +#: guix-git/doc/guix.texi:25506 msgid "Specify the path of the base URL@. This can be useful if @command{darkstat} is accessed via a reverse proxy." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25148 +#: guix-git/doc/guix.texi:25510 #, no-wrap msgid "Prometheus Node Exporter Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25150 +#: guix-git/doc/guix.texi:25512 #, no-wrap msgid "prometheus-node-exporter" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25155 +#: guix-git/doc/guix.texi:25517 msgid "The Prometheus ``node exporter'' makes hardware and operating system statistics provided by the Linux kernel available for the Prometheus monitoring system. This service should be deployed on all physical nodes and virtual machines, where monitoring these statistics is desirable." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25156 +#: guix-git/doc/guix.texi:25518 #, no-wrap msgid "{Scheme variable} prometheus-node-exporter-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25160 +#: guix-git/doc/guix.texi:25522 msgid "This is the service type for the @uref{https://github.com/prometheus/node_exporter/, prometheus-node-exporter} service, its value must be a @code{prometheus-node-exporter-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25163 +#: guix-git/doc/guix.texi:25525 #, no-wrap msgid "(service prometheus-node-exporter-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25166 +#: guix-git/doc/guix.texi:25528 #, no-wrap msgid "{Data Type} prometheus-node-exporter-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25168 +#: guix-git/doc/guix.texi:25530 msgid "Data type representing the configuration of @command{node_exporter}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25170 +#: guix-git/doc/guix.texi:25532 #, no-wrap msgid "@code{package} (default: @code{go-github-com-prometheus-node-exporter})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25172 +#: guix-git/doc/guix.texi:25534 msgid "The prometheus-node-exporter package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25173 +#: guix-git/doc/guix.texi:25535 #, no-wrap msgid "@code{web-listen-address} (default: @code{\":9100\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25176 +#: guix-git/doc/guix.texi:25538 #, no-wrap msgid "@code{textfile-directory} (default: @code{\"/var/lib/prometheus/node-exporter\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25180 +#: guix-git/doc/guix.texi:25542 msgid "This directory can be used to export metrics specific to this machine. Files containing metrics in the text format, with the filename ending in @code{.prom} should be placed in this directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25183 +#: guix-git/doc/guix.texi:25545 msgid "Extra options to pass to the Prometheus node exporter." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25187 +#: guix-git/doc/guix.texi:25549 #, no-wrap msgid "Zabbix server" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25188 +#: guix-git/doc/guix.texi:25550 #, no-wrap msgid "zabbix zabbix-server" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25191 +#: guix-git/doc/guix.texi:25553 msgid "Zabbix provides monitoring metrics, among others network utilization, CPU load and disk space consumption:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25193 +#: guix-git/doc/guix.texi:25555 #, no-wrap msgid "High performance, high capacity (able to monitor hundreds of thousands of devices)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25194 +#: guix-git/doc/guix.texi:25556 #, no-wrap msgid "Auto-discovery of servers and network devices and interfaces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25195 +#: guix-git/doc/guix.texi:25557 #, no-wrap msgid "Low-level discovery, allows to automatically start monitoring new items, file systems or network interfaces among others." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25196 +#: guix-git/doc/guix.texi:25558 #, no-wrap msgid "Distributed monitoring with centralized web administration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25197 +#: guix-git/doc/guix.texi:25559 #, no-wrap msgid "Native high performance agents." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25198 +#: guix-git/doc/guix.texi:25560 #, no-wrap msgid "SLA, and ITIL KPI metrics on reporting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25199 +#: guix-git/doc/guix.texi:25561 #, no-wrap msgid "High-level (business) view of monitored resources through user-defined visual console screens and dashboards." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25200 +#: guix-git/doc/guix.texi:25562 #, no-wrap msgid "Remote command execution through Zabbix proxies." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25206 +#: guix-git/doc/guix.texi:25568 msgid "Available @code{zabbix-server-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25207 +#: guix-git/doc/guix.texi:25569 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} package zabbix-server" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25209 +#: guix-git/doc/guix.texi:25571 msgid "The zabbix-server package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25212 +#: guix-git/doc/guix.texi:25574 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25214 +#: guix-git/doc/guix.texi:25576 msgid "User who will run the Zabbix server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25216 guix-git/doc/guix.texi:25223 -#: guix-git/doc/guix.texi:25237 guix-git/doc/guix.texi:25244 -#: guix-git/doc/guix.texi:25345 guix-git/doc/guix.texi:25352 -#: guix-git/doc/guix.texi:25463 guix-git/doc/guix.texi:25470 +#: guix-git/doc/guix.texi:25578 guix-git/doc/guix.texi:25585 +#: guix-git/doc/guix.texi:25599 guix-git/doc/guix.texi:25606 +#: guix-git/doc/guix.texi:25707 guix-git/doc/guix.texi:25714 msgid "Defaults to @samp{\"zabbix\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25219 +#: guix-git/doc/guix.texi:25581 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} group group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25221 +#: guix-git/doc/guix.texi:25583 msgid "Group who will run the Zabbix server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25226 +#: guix-git/doc/guix.texi:25588 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-host" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25228 guix-git/doc/guix.texi:25447 +#. type: table +#: guix-git/doc/guix.texi:25590 guix-git/doc/guix.texi:25813 msgid "Database host name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25230 +#: guix-git/doc/guix.texi:25592 msgid "Defaults to @samp{\"127.0.0.1\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25233 +#: guix-git/doc/guix.texi:25595 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-name" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25235 guix-git/doc/guix.texi:25461 +#. type: table +#: guix-git/doc/guix.texi:25597 guix-git/doc/guix.texi:25819 msgid "Database name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25240 +#: guix-git/doc/guix.texi:25602 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-user" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25242 guix-git/doc/guix.texi:25468 +#. type: table +#: guix-git/doc/guix.texi:25604 guix-git/doc/guix.texi:25822 msgid "Database user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25247 +#: guix-git/doc/guix.texi:25609 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-password" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25250 +#: guix-git/doc/guix.texi:25612 msgid "Database password. Please, use @code{include-files} with @code{DBPassword=SECRET} inside a specified file instead." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25255 +#: guix-git/doc/guix.texi:25617 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} number db-port" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25257 guix-git/doc/guix.texi:25454 +#. type: table +#: guix-git/doc/guix.texi:25619 guix-git/doc/guix.texi:25816 msgid "Database port." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25259 guix-git/doc/guix.texi:25456 +#: guix-git/doc/guix.texi:25621 msgid "Defaults to @samp{5432}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25262 +#: guix-git/doc/guix.texi:25624 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string log-type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25264 guix-git/doc/guix.texi:25365 +#: guix-git/doc/guix.texi:25626 guix-git/doc/guix.texi:25727 msgid "Specifies where log messages are written to:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25268 guix-git/doc/guix.texi:25369 +#: guix-git/doc/guix.texi:25630 guix-git/doc/guix.texi:25731 msgid "@code{system} - syslog." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25271 guix-git/doc/guix.texi:25372 +#: guix-git/doc/guix.texi:25633 guix-git/doc/guix.texi:25734 msgid "@code{file} - file specified with @code{log-file} parameter." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25274 guix-git/doc/guix.texi:25375 +#: guix-git/doc/guix.texi:25636 guix-git/doc/guix.texi:25737 msgid "@code{console} - standard output." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25281 +#: guix-git/doc/guix.texi:25643 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string log-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25283 guix-git/doc/guix.texi:25384 +#: guix-git/doc/guix.texi:25645 guix-git/doc/guix.texi:25746 msgid "Log file name for @code{log-type} @code{file} parameter." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25285 +#: guix-git/doc/guix.texi:25647 msgid "Defaults to @samp{\"/var/log/zabbix/server.log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25288 +#: guix-git/doc/guix.texi:25650 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25290 guix-git/doc/guix.texi:25391 +#: guix-git/doc/guix.texi:25652 guix-git/doc/guix.texi:25753 msgid "Name of PID file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25292 +#: guix-git/doc/guix.texi:25654 msgid "Defaults to @samp{\"/var/run/zabbix/zabbix_server.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25295 +#: guix-git/doc/guix.texi:25657 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string ssl-ca-location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25298 +#: guix-git/doc/guix.texi:25660 msgid "The location of certificate authority (CA) files for SSL server certificate verification." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25300 +#: guix-git/doc/guix.texi:25662 msgid "Defaults to @samp{\"/etc/ssl/certs/ca-certificates.crt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25303 +#: guix-git/doc/guix.texi:25665 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string ssl-cert-location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25305 +#: guix-git/doc/guix.texi:25667 msgid "Location of SSL client certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25307 +#: guix-git/doc/guix.texi:25669 msgid "Defaults to @samp{\"/etc/ssl/certs\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25310 +#: guix-git/doc/guix.texi:25672 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25312 guix-git/doc/guix.texi:25416 +#: guix-git/doc/guix.texi:25674 guix-git/doc/guix.texi:25778 msgid "Extra options will be appended to Zabbix server configuration file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25317 +#: guix-git/doc/guix.texi:25679 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} include-files include-files" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25320 guix-git/doc/guix.texi:25424 +#: guix-git/doc/guix.texi:25682 guix-git/doc/guix.texi:25786 msgid "You may include individual files or all files in a directory in the configuration file." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25327 +#: guix-git/doc/guix.texi:25689 #, no-wrap msgid "Zabbix agent" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25328 +#: guix-git/doc/guix.texi:25690 #, no-wrap msgid "zabbix zabbix-agent" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25331 +#: guix-git/doc/guix.texi:25693 msgid "Zabbix agent gathers information for Zabbix server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25335 +#: guix-git/doc/guix.texi:25697 msgid "Available @code{zabbix-agent-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25336 +#: guix-git/doc/guix.texi:25698 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} package zabbix-agent" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25338 +#: guix-git/doc/guix.texi:25700 msgid "The zabbix-agent package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25341 +#: guix-git/doc/guix.texi:25703 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25343 +#: guix-git/doc/guix.texi:25705 msgid "User who will run the Zabbix agent." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25348 +#: guix-git/doc/guix.texi:25710 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} group group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25350 +#: guix-git/doc/guix.texi:25712 msgid "Group who will run the Zabbix agent." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25355 +#: guix-git/doc/guix.texi:25717 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string hostname" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25358 +#: guix-git/doc/guix.texi:25720 msgid "Unique, case sensitive hostname which is required for active checks and must match hostname as configured on the server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25363 +#: guix-git/doc/guix.texi:25725 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string log-type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25382 +#: guix-git/doc/guix.texi:25744 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string log-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25386 +#: guix-git/doc/guix.texi:25748 msgid "Defaults to @samp{\"/var/log/zabbix/agent.log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25389 +#: guix-git/doc/guix.texi:25751 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25393 +#: guix-git/doc/guix.texi:25755 msgid "Defaults to @samp{\"/var/run/zabbix/zabbix_agent.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25396 +#: guix-git/doc/guix.texi:25758 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} list server" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25400 +#: guix-git/doc/guix.texi:25762 msgid "List of IP addresses, optionally in CIDR notation, or hostnames of Zabbix servers and Zabbix proxies. Incoming connections will be accepted only from the hosts listed here." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25402 guix-git/doc/guix.texi:25411 +#: guix-git/doc/guix.texi:25764 guix-git/doc/guix.texi:25773 msgid "Defaults to @samp{(\"127.0.0.1\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25405 +#: guix-git/doc/guix.texi:25767 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} list server-active" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25409 +#: guix-git/doc/guix.texi:25771 msgid "List of IP:port (or hostname:port) pairs of Zabbix servers and Zabbix proxies for active checks. If port is not specified, default port is used. If this parameter is not specified, active checks are disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25414 +#: guix-git/doc/guix.texi:25776 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25421 +#: guix-git/doc/guix.texi:25783 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} include-files include-files" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25431 +#: guix-git/doc/guix.texi:25793 #, no-wrap msgid "Zabbix front-end" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25432 +#: guix-git/doc/guix.texi:25794 #, no-wrap msgid "zabbix zabbix-front-end" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25435 +#: guix-git/doc/guix.texi:25797 msgid "This service provides a WEB interface to Zabbix server." msgstr "" -#. type: Plain text -#: guix-git/doc/guix.texi:25439 +#. type: deftp +#: guix-git/doc/guix.texi:25800 +#, no-wrap +msgid "{Data Type} zabbix-front-end-configuration" +msgstr "" + +#. type: deftp +#: guix-git/doc/guix.texi:25802 msgid "Available @code{zabbix-front-end-configuration} fields are:" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25440 +#. type: item +#: guix-git/doc/guix.texi:25804 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} nginx-server-configuration-list nginx" +msgid "@code{zabbix-server} (default: @code{zabbix-server}) (type: file-like)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25442 guix-git/doc/guix.texi:31735 -msgid "NGINX configuration." +#. type: table +#: guix-git/doc/guix.texi:25806 +msgid "The Zabbix server package to use." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25445 +#. type: item +#: guix-git/doc/guix.texi:25807 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-host" +msgid "@code{fastcgi-params} (type: list)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25452 +#. type: table +#: guix-git/doc/guix.texi:25810 +msgid "List of FastCGI parameter pairs that will be included in the NGINX configuration." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:25811 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} number db-port" +msgid "@code{db-host} (default: @code{\\\"localhost\\\"}) (type: string)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25459 +#. type: item +#: guix-git/doc/guix.texi:25814 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-name" +msgid "@code{db-port} (default: @code{5432}) (type: number)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25466 +#. type: item +#: guix-git/doc/guix.texi:25817 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-user" +msgid "@code{db-name} (default: @code{\\\"zabbix\\\"}) (type: string)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25473 +#. type: item +#: guix-git/doc/guix.texi:25820 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-password" +msgid "@code{db-user} (default: @code{\\\"zabbix\\\"}) (type: string)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25475 +#. type: item +#: guix-git/doc/guix.texi:25823 +#, no-wrap +msgid "@code{db-password} (default: @code{\\\"\\\"}) (type: string)" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:25825 msgid "Database password. Please, use @code{db-secret-file} instead." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25480 +#. type: item +#: guix-git/doc/guix.texi:25826 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-secret-file" +msgid "@code{db-secret-file} (default: @code{\\\"\\\"}) (type: string)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25485 -msgid "Secret file containing the credentials for the Zabbix front-end. The value must be a local file name, not a G-expression. You are expected to create this file manually. Its contents will be copied into @file{zabbix.conf.php} as the value of @code{$DB['PASSWORD']}." +#. type: table +#: guix-git/doc/guix.texi:25830 +msgid "Secret file which will be appended to @file{zabbix.conf.php} file. This file contains credentials for use by Zabbix front-end. You are expected to create it manually." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25490 +#. type: item +#: guix-git/doc/guix.texi:25831 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string zabbix-host" +msgid "@code{zabbix-host} (default: @code{\\\"localhost\\\"}) (type: string)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25492 +#. type: table +#: guix-git/doc/guix.texi:25833 msgid "Zabbix server hostname." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25497 +#. type: item +#: guix-git/doc/guix.texi:25834 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} number zabbix-port" +msgid "@code{zabbix-port} (default: @code{10051}) (type: number)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25499 +#. type: table +#: guix-git/doc/guix.texi:25836 msgid "Zabbix server port." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25501 -msgid "Defaults to @samp{10051}." -msgstr "" - #. type: cindex -#: guix-git/doc/guix.texi:25509 +#: guix-git/doc/guix.texi:25846 #, no-wrap msgid "Kerberos" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25513 +#: guix-git/doc/guix.texi:25850 msgid "The @code{(gnu services kerberos)} module provides services relating to the authentication protocol @dfn{Kerberos}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25514 +#: guix-git/doc/guix.texi:25851 #, no-wrap msgid "Krb5 Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25521 +#: guix-git/doc/guix.texi:25858 msgid "Programs using a Kerberos client library normally expect a configuration file in @file{/etc/krb5.conf}. This service generates such a file from a definition provided in the operating system declaration. It does not cause any daemon to be started." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25525 +#: guix-git/doc/guix.texi:25862 msgid "No ``keytab'' files are provided by this service---you must explicitly create them. This service is known to work with the MIT client library, @code{mit-krb5}. Other implementations have not been tested." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25526 +#: guix-git/doc/guix.texi:25863 #, no-wrap msgid "{Scheme Variable} krb5-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25528 +#: guix-git/doc/guix.texi:25865 msgid "A service type for Kerberos 5 clients." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25532 +#: guix-git/doc/guix.texi:25869 msgid "Here is an example of its use:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25546 +#: guix-git/doc/guix.texi:25883 #, no-wrap msgid "" "(service krb5-service-type\n" @@ -45493,206 +46116,206 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25550 +#: guix-git/doc/guix.texi:25887 msgid "This example provides a Kerberos@tie{}5 client configuration which:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25551 +#: guix-git/doc/guix.texi:25888 #, no-wrap msgid "Recognizes two realms, @i{viz:} ``EXAMPLE.COM'' and ``ARGRX.EDU'', both" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25553 +#: guix-git/doc/guix.texi:25890 msgid "of which have distinct administration servers and key distribution centers;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25553 +#: guix-git/doc/guix.texi:25890 #, no-wrap msgid "Will default to the realm ``EXAMPLE.COM'' if the realm is not explicitly" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25555 +#: guix-git/doc/guix.texi:25892 msgid "specified by clients;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25555 +#: guix-git/doc/guix.texi:25892 #, no-wrap msgid "Accepts services which only support encryption types known to be weak." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25563 +#: guix-git/doc/guix.texi:25900 msgid "The @code{krb5-realm} and @code{krb5-configuration} types have many fields. Only the most commonly used ones are described here. For a full list, and more detailed explanation of each, see the MIT @uref{https://web.mit.edu/kerberos/krb5-devel/doc/admin/conf_files/krb5_conf.html,,krb5.conf} documentation." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25565 +#: guix-git/doc/guix.texi:25902 #, no-wrap msgid "{Data Type} krb5-realm" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25566 +#: guix-git/doc/guix.texi:25903 #, no-wrap msgid "realm, kerberos" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25572 +#: guix-git/doc/guix.texi:25909 msgid "This field is a string identifying the name of the realm. A common convention is to use the fully qualified DNS name of your organization, converted to upper case." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25573 +#: guix-git/doc/guix.texi:25910 #, no-wrap msgid "admin-server" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25576 +#: guix-git/doc/guix.texi:25913 msgid "This field is a string identifying the host where the administration server is running." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25577 +#: guix-git/doc/guix.texi:25914 #, no-wrap msgid "kdc" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25580 +#: guix-git/doc/guix.texi:25917 msgid "This field is a string identifying the key distribution center for the realm." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25583 +#: guix-git/doc/guix.texi:25920 #, no-wrap msgid "{Data Type} krb5-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25586 +#: guix-git/doc/guix.texi:25923 #, no-wrap msgid "@code{allow-weak-crypto?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25589 +#: guix-git/doc/guix.texi:25926 msgid "If this flag is @code{#t} then services which only offer encryption algorithms known to be weak will be accepted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25590 +#: guix-git/doc/guix.texi:25927 #, no-wrap msgid "@code{default-realm} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25597 +#: guix-git/doc/guix.texi:25934 msgid "This field should be a string identifying the default Kerberos realm for the client. You should set this field to the name of your Kerberos realm. If this value is @code{#f} then a realm must be specified with every Kerberos principal when invoking programs such as @command{kinit}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25598 +#: guix-git/doc/guix.texi:25935 #, no-wrap msgid "realms" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25603 +#: guix-git/doc/guix.texi:25940 msgid "This should be a non-empty list of @code{krb5-realm} objects, which clients may access. Normally, one of them will have a @code{name} field matching the @code{default-realm} field." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25607 +#: guix-git/doc/guix.texi:25944 #, no-wrap msgid "PAM krb5 Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25608 +#: guix-git/doc/guix.texi:25945 #, no-wrap msgid "pam-krb5" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25614 +#: guix-git/doc/guix.texi:25951 msgid "The @code{pam-krb5} service allows for login authentication and password management via Kerberos. You will need this service if you want PAM enabled applications to authenticate users using Kerberos." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25615 +#: guix-git/doc/guix.texi:25952 #, no-wrap msgid "{Scheme Variable} pam-krb5-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25617 +#: guix-git/doc/guix.texi:25954 msgid "A service type for the Kerberos 5 PAM module." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25619 +#: guix-git/doc/guix.texi:25956 #, no-wrap msgid "{Data Type} pam-krb5-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25622 +#: guix-git/doc/guix.texi:25959 msgid "Data type representing the configuration of the Kerberos 5 PAM module. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25623 +#: guix-git/doc/guix.texi:25960 #, no-wrap msgid "@code{pam-krb5} (default: @code{pam-krb5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25625 +#: guix-git/doc/guix.texi:25962 msgid "The pam-krb5 package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25626 +#: guix-git/doc/guix.texi:25963 #, no-wrap msgid "@code{minimum-uid} (default: @code{1000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25629 +#: guix-git/doc/guix.texi:25966 msgid "The smallest user ID for which Kerberos authentications should be attempted. Local accounts with lower values will silently fail to authenticate." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25635 +#: guix-git/doc/guix.texi:25972 #, no-wrap msgid "LDAP" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25636 +#: guix-git/doc/guix.texi:25973 #, no-wrap msgid "nslcd, LDAP service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25643 +#: guix-git/doc/guix.texi:25980 msgid "The @code{(gnu services authentication)} module provides the @code{nslcd-service-type}, which can be used to authenticate against an LDAP server. In addition to configuring the service itself, you may want to add @code{ldap} as a name service to the Name Service Switch. @xref{Name Service Switch} for detailed information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25647 +#: guix-git/doc/guix.texi:25984 msgid "Here is a simple operating system declaration with a default configuration of the @code{nslcd-service-type} and a Name Service Switch configuration that consults the @code{ldap} name service last:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25670 +#: guix-git/doc/guix.texi:26007 #, no-wrap msgid "" "(use-service-modules authentication)\n" @@ -45719,643 +46342,643 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25675 +#: guix-git/doc/guix.texi:26012 msgid "Available @code{nslcd-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25676 +#: guix-git/doc/guix.texi:26013 #, no-wrap msgid "{@code{nslcd-configuration} parameter} package nss-pam-ldapd" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25678 +#: guix-git/doc/guix.texi:26015 msgid "The @code{nss-pam-ldapd} package to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25681 +#: guix-git/doc/guix.texi:26018 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number threads" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25685 +#: guix-git/doc/guix.texi:26022 msgid "The number of threads to start that can handle requests and perform LDAP queries. Each thread opens a separate connection to the LDAP server. The default is to start 5 threads." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25690 +#: guix-git/doc/guix.texi:26027 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25692 +#: guix-git/doc/guix.texi:26029 msgid "This specifies the user id with which the daemon should be run." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25694 guix-git/doc/guix.texi:25701 +#: guix-git/doc/guix.texi:26031 guix-git/doc/guix.texi:26038 msgid "Defaults to @samp{\"nslcd\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25697 +#: guix-git/doc/guix.texi:26034 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25699 +#: guix-git/doc/guix.texi:26036 msgid "This specifies the group id with which the daemon should be run." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25704 +#: guix-git/doc/guix.texi:26041 #, no-wrap msgid "{@code{nslcd-configuration} parameter} log-option log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25712 +#: guix-git/doc/guix.texi:26049 msgid "This option controls the way logging is done via a list containing SCHEME and LEVEL@. The SCHEME argument may either be the symbols @samp{none} or @samp{syslog}, or an absolute file name. The LEVEL argument is optional and specifies the log level. The log level may be one of the following symbols: @samp{crit}, @samp{error}, @samp{warning}, @samp{notice}, @samp{info} or @samp{debug}. All messages with the specified log level or higher are logged." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25714 +#: guix-git/doc/guix.texi:26051 msgid "Defaults to @samp{(\"/var/log/nslcd\" info)}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25717 +#: guix-git/doc/guix.texi:26054 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list uri" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25720 +#: guix-git/doc/guix.texi:26057 msgid "The list of LDAP server URIs. Normally, only the first server will be used with the following servers as fall-back." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25722 +#: guix-git/doc/guix.texi:26059 msgid "Defaults to @samp{(\"ldap://localhost:389/\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25725 +#: guix-git/doc/guix.texi:26062 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string ldap-version" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25728 +#: guix-git/doc/guix.texi:26065 msgid "The version of the LDAP protocol to use. The default is to use the maximum version supported by the LDAP library." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25733 +#: guix-git/doc/guix.texi:26070 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string binddn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25736 +#: guix-git/doc/guix.texi:26073 msgid "Specifies the distinguished name with which to bind to the directory server for lookups. The default is to bind anonymously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25741 +#: guix-git/doc/guix.texi:26078 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string bindpw" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25744 +#: guix-git/doc/guix.texi:26081 msgid "Specifies the credentials with which to bind. This option is only applicable when used with binddn." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25749 +#: guix-git/doc/guix.texi:26086 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string rootpwmoddn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25752 +#: guix-git/doc/guix.texi:26089 msgid "Specifies the distinguished name to use when the root user tries to modify a user's password using the PAM module." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25757 +#: guix-git/doc/guix.texi:26094 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string rootpwmodpw" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25761 +#: guix-git/doc/guix.texi:26098 msgid "Specifies the credentials with which to bind if the root user tries to change a user's password. This option is only applicable when used with rootpwmoddn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25766 +#: guix-git/doc/guix.texi:26103 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-mech" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25769 +#: guix-git/doc/guix.texi:26106 msgid "Specifies the SASL mechanism to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25774 +#: guix-git/doc/guix.texi:26111 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-realm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25776 +#: guix-git/doc/guix.texi:26113 msgid "Specifies the SASL realm to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25781 +#: guix-git/doc/guix.texi:26118 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-authcid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25784 +#: guix-git/doc/guix.texi:26121 msgid "Specifies the authentication identity to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25789 +#: guix-git/doc/guix.texi:26126 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-authzid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25792 +#: guix-git/doc/guix.texi:26129 msgid "Specifies the authorization identity to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25797 +#: guix-git/doc/guix.texi:26134 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean sasl-canonicalize?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25802 +#: guix-git/doc/guix.texi:26139 msgid "Determines whether the LDAP server host name should be canonicalised. If this is enabled the LDAP library will do a reverse host name lookup. By default, it is left up to the LDAP library whether this check is performed or not." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25807 +#: guix-git/doc/guix.texi:26144 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string krb5-ccname" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25809 +#: guix-git/doc/guix.texi:26146 msgid "Set the name for the GSS-API Kerberos credentials cache." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25814 +#: guix-git/doc/guix.texi:26151 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string base" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25816 +#: guix-git/doc/guix.texi:26153 msgid "The directory search base." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25818 +#: guix-git/doc/guix.texi:26155 msgid "Defaults to @samp{\"dc=example,dc=com\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25821 +#: guix-git/doc/guix.texi:26158 #, no-wrap msgid "{@code{nslcd-configuration} parameter} scope-option scope" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25825 +#: guix-git/doc/guix.texi:26162 msgid "Specifies the search scope (subtree, onelevel, base or children). The default scope is subtree; base scope is almost never useful for name service lookups; children scope is not supported on all servers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25827 +#: guix-git/doc/guix.texi:26164 msgid "Defaults to @samp{(subtree)}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25830 +#: guix-git/doc/guix.texi:26167 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-deref-option deref" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25833 +#: guix-git/doc/guix.texi:26170 msgid "Specifies the policy for dereferencing aliases. The default policy is to never dereference aliases." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25838 +#: guix-git/doc/guix.texi:26175 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean referrals" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25841 +#: guix-git/doc/guix.texi:26178 msgid "Specifies whether automatic referral chasing should be enabled. The default behaviour is to chase referrals." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25846 +#: guix-git/doc/guix.texi:26183 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list-of-map-entries maps" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25851 +#: guix-git/doc/guix.texi:26188 msgid "This option allows for custom attributes to be looked up instead of the default RFC 2307 attributes. It is a list of maps, each consisting of the name of a map, the RFC 2307 attribute to match and the query expression for the attribute as it is available in the directory." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25856 +#: guix-git/doc/guix.texi:26193 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list-of-filter-entries filters" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25859 +#: guix-git/doc/guix.texi:26196 msgid "A list of filters consisting of the name of a map to which the filter applies and an LDAP search filter expression." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25864 +#: guix-git/doc/guix.texi:26201 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number bind-timelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25867 +#: guix-git/doc/guix.texi:26204 msgid "Specifies the time limit in seconds to use when connecting to the directory server. The default value is 10 seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25872 +#: guix-git/doc/guix.texi:26209 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number timelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25876 +#: guix-git/doc/guix.texi:26213 msgid "Specifies the time limit (in seconds) to wait for a response from the LDAP server. A value of zero, which is the default, is to wait indefinitely for searches to be completed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25881 +#: guix-git/doc/guix.texi:26218 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number idle-timelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25885 +#: guix-git/doc/guix.texi:26222 msgid "Specifies the period if inactivity (in seconds) after which the con‐ nection to the LDAP server will be closed. The default is not to time out connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25890 +#: guix-git/doc/guix.texi:26227 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number reconnect-sleeptime" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25894 +#: guix-git/doc/guix.texi:26231 msgid "Specifies the number of seconds to sleep when connecting to all LDAP servers fails. By default one second is waited between the first failure and the first retry." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25899 +#: guix-git/doc/guix.texi:26236 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number reconnect-retrytime" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25903 +#: guix-git/doc/guix.texi:26240 msgid "Specifies the time after which the LDAP server is considered to be permanently unavailable. Once this time is reached retries will be done only once per this time period. The default value is 10 seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25908 +#: guix-git/doc/guix.texi:26245 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-ssl-option ssl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25912 +#: guix-git/doc/guix.texi:26249 msgid "Specifies whether to use SSL/TLS or not (the default is not to). If 'start-tls is specified then StartTLS is used rather than raw LDAP over SSL." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25917 +#: guix-git/doc/guix.texi:26254 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-tls-reqcert-option tls-reqcert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25920 +#: guix-git/doc/guix.texi:26257 msgid "Specifies what checks to perform on a server-supplied certificate. The meaning of the values is described in the ldap.conf(5) manual page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25925 +#: guix-git/doc/guix.texi:26262 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cacertdir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25928 +#: guix-git/doc/guix.texi:26265 msgid "Specifies the directory containing X.509 certificates for peer authen‐ tication. This parameter is ignored when using GnuTLS." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25933 +#: guix-git/doc/guix.texi:26270 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cacertfile" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25935 +#: guix-git/doc/guix.texi:26272 msgid "Specifies the path to the X.509 certificate for peer authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25940 +#: guix-git/doc/guix.texi:26277 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-randfile" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25943 +#: guix-git/doc/guix.texi:26280 msgid "Specifies the path to an entropy source. This parameter is ignored when using GnuTLS." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25948 +#: guix-git/doc/guix.texi:26285 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-ciphers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25950 +#: guix-git/doc/guix.texi:26287 msgid "Specifies the ciphers to use for TLS as a string." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25955 +#: guix-git/doc/guix.texi:26292 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25958 +#: guix-git/doc/guix.texi:26295 msgid "Specifies the path to the file containing the local certificate for client TLS authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25963 +#: guix-git/doc/guix.texi:26300 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-key" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25966 +#: guix-git/doc/guix.texi:26303 msgid "Specifies the path to the file containing the private key for client TLS authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25971 +#: guix-git/doc/guix.texi:26308 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number pagesize" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25975 +#: guix-git/doc/guix.texi:26312 msgid "Set this to a number greater than 0 to request paged results from the LDAP server in accordance with RFC2696. The default (0) is to not request paged results." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25980 +#: guix-git/doc/guix.texi:26317 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-ignore-users-option nss-initgroups-ignoreusers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25984 +#: guix-git/doc/guix.texi:26321 msgid "This option prevents group membership lookups through LDAP for the specified users. Alternatively, the value 'all-local may be used. With that value nslcd builds a full list of non-LDAP users on startup." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25989 +#: guix-git/doc/guix.texi:26326 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-min-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25992 +#: guix-git/doc/guix.texi:26329 msgid "This option ensures that LDAP users with a numeric user id lower than the specified value are ignored." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25997 +#: guix-git/doc/guix.texi:26334 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-uid-offset" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26000 +#: guix-git/doc/guix.texi:26337 msgid "This option specifies an offset that is added to all LDAP numeric user ids. This can be used to avoid user id collisions with local users." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26005 +#: guix-git/doc/guix.texi:26342 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-gid-offset" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26008 +#: guix-git/doc/guix.texi:26345 msgid "This option specifies an offset that is added to all LDAP numeric group ids. This can be used to avoid user id collisions with local groups." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26013 +#: guix-git/doc/guix.texi:26350 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-nested-groups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26019 +#: guix-git/doc/guix.texi:26356 msgid "If this option is set, the member attribute of a group may point to another group. Members of nested groups are also returned in the higher level group and parent groups are returned when finding groups for a specific user. The default is not to perform extra searches for nested groups." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26024 +#: guix-git/doc/guix.texi:26361 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-getgrent-skipmembers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26029 +#: guix-git/doc/guix.texi:26366 msgid "If this option is set, the group member list is not retrieved when looking up groups. Lookups for finding which groups a user belongs to will remain functional so the user will likely still get the correct groups assigned on login." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26034 +#: guix-git/doc/guix.texi:26371 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-disable-enumeration" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26040 +#: guix-git/doc/guix.texi:26377 msgid "If this option is set, functions which cause all user/group entries to be loaded from the directory will not succeed in doing so. This can dramatically reduce LDAP server load in situations where there are a great number of users and/or groups. This option is not recommended for most configurations." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26045 +#: guix-git/doc/guix.texi:26382 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string validnames" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26049 +#: guix-git/doc/guix.texi:26386 msgid "This option can be used to specify how user and group names are verified within the system. This pattern is used to check all user and group names that are requested and returned from LDAP." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26054 +#: guix-git/doc/guix.texi:26391 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean ignorecase" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26059 +#: guix-git/doc/guix.texi:26396 msgid "This specifies whether or not to perform searches using case-insensitive matching. Enabling this could open up the system to authorization bypass vulnerabilities and introduce nscd cache poisoning vulnerabilities which allow denial of service." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26064 +#: guix-git/doc/guix.texi:26401 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean pam-authc-ppolicy" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26067 +#: guix-git/doc/guix.texi:26404 msgid "This option specifies whether password policy controls are requested and handled from the LDAP server when performing user authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26072 +#: guix-git/doc/guix.texi:26409 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-authc-search" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26078 +#: guix-git/doc/guix.texi:26415 msgid "By default nslcd performs an LDAP search with the user's credentials after BIND (authentication) to ensure that the BIND operation was successful. The default search is a simple check to see if the user's DN exists. A search filter can be specified that will be used instead. It should return at least one entry." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26083 +#: guix-git/doc/guix.texi:26420 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-authz-search" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26087 +#: guix-git/doc/guix.texi:26424 msgid "This option allows flexible fine tuning of the authorisation check that should be performed. The search filter specified is executed and if any entries match, access is granted, otherwise access is denied." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26092 +#: guix-git/doc/guix.texi:26429 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-password-prohibit-message" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26097 +#: guix-git/doc/guix.texi:26434 msgid "If this option is set password modification using pam_ldap will be denied and the specified message will be presented to the user instead. The message can be used to direct the user to an alternative means of changing their password." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26102 +#: guix-git/doc/guix.texi:26439 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list pam-services" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26104 +#: guix-git/doc/guix.texi:26441 msgid "List of pam service names for which LDAP authentication should suffice." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26115 +#: guix-git/doc/guix.texi:26452 #, no-wrap msgid "web" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26116 +#: guix-git/doc/guix.texi:26453 #, no-wrap msgid "www" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26117 +#: guix-git/doc/guix.texi:26454 #, no-wrap msgid "HTTP" msgstr "HTTP" #. type: Plain text -#: guix-git/doc/guix.texi:26120 +#: guix-git/doc/guix.texi:26457 msgid "The @code{(gnu services web)} module provides the Apache HTTP Server, the nginx web server, and also a fastcgi wrapper daemon." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26121 +#: guix-git/doc/guix.texi:26458 #, no-wrap msgid "Apache HTTP Server" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26123 +#: guix-git/doc/guix.texi:26460 #, no-wrap msgid "{Scheme Variable} httpd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26127 +#: guix-git/doc/guix.texi:26464 msgid "Service type for the @uref{https://httpd.apache.org/,Apache HTTP} server (@dfn{httpd}). The value for this service type is a @code{httpd-configuration} record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26129 guix-git/doc/guix.texi:26311 +#: guix-git/doc/guix.texi:26466 guix-git/doc/guix.texi:26648 msgid "A simple example configuration is given below." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26137 +#: guix-git/doc/guix.texi:26474 #, no-wrap msgid "" "(service httpd-service-type\n" @@ -46367,12 +46990,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26141 +#: guix-git/doc/guix.texi:26478 msgid "Other services can also extend the @code{httpd-service-type} to add to the configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26150 guix-git/doc/guix.texi:26290 +#: guix-git/doc/guix.texi:26487 guix-git/doc/guix.texi:26627 #, no-wrap msgid "" "(simple-service 'www.example.com-server httpd-service-type\n" @@ -46385,115 +47008,115 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26156 +#: guix-git/doc/guix.texi:26493 msgid "The details for the @code{httpd-configuration}, @code{httpd-module}, @code{httpd-config-file} and @code{httpd-virtualhost} record types are given below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26157 +#: guix-git/doc/guix.texi:26494 #, no-wrap msgid "{Data Type} httpd-configuration" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26159 +#: guix-git/doc/guix.texi:26496 msgid "This data type represents the configuration for the httpd service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26161 +#: guix-git/doc/guix.texi:26498 #, no-wrap msgid "@code{package} (default: @code{httpd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26163 +#: guix-git/doc/guix.texi:26500 msgid "The httpd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26164 guix-git/doc/guix.texi:26253 +#: guix-git/doc/guix.texi:26501 guix-git/doc/guix.texi:26590 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/httpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26166 +#: guix-git/doc/guix.texi:26503 msgid "The pid file used by the shepherd-service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26167 +#: guix-git/doc/guix.texi:26504 #, no-wrap msgid "@code{config} (default: @code{(httpd-config-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26172 +#: guix-git/doc/guix.texi:26509 msgid "The configuration file to use with the httpd service. The default value is a @code{httpd-config-file} record, but this can also be a different G-expression that generates a file, for example a @code{plain-file}. A file outside of the store can also be specified through a string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26176 +#: guix-git/doc/guix.texi:26513 #, no-wrap msgid "{Data Type} httpd-module" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26178 +#: guix-git/doc/guix.texi:26515 msgid "This data type represents a module for the httpd service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26182 +#: guix-git/doc/guix.texi:26519 msgid "The name of the module." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26188 +#: guix-git/doc/guix.texi:26525 msgid "The file for the module. This can be relative to the httpd package being used, the absolute location of a file, or a G-expression for a file within the store, for example @code{(file-append mod-wsgi \"/modules/mod_wsgi.so\")}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26192 +#: guix-git/doc/guix.texi:26529 #, no-wrap msgid "{Scheme Variable} %default-httpd-modules" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26194 +#: guix-git/doc/guix.texi:26531 msgid "A default list of @code{httpd-module} objects." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26196 +#: guix-git/doc/guix.texi:26533 #, no-wrap msgid "{Data Type} httpd-config-file" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26198 +#: guix-git/doc/guix.texi:26535 msgid "This data type represents a configuration file for the httpd service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26200 +#: guix-git/doc/guix.texi:26537 #, no-wrap msgid "@code{modules} (default: @code{%default-httpd-modules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26203 +#: guix-git/doc/guix.texi:26540 msgid "The modules to load. Additional modules can be added here, or loaded by additional configuration." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26206 +#: guix-git/doc/guix.texi:26543 msgid "For example, in order to handle requests for PHP files, you can use Apache’s @code{mod_proxy_fcgi} module along with @code{php-fpm-service-type}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26228 +#: guix-git/doc/guix.texi:26565 #, no-wrap msgid "" "(service httpd-service-type\n" @@ -46519,165 +47142,165 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26230 +#: guix-git/doc/guix.texi:26567 #, no-wrap msgid "@code{server-root} (default: @code{httpd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26234 +#: guix-git/doc/guix.texi:26571 msgid "The @code{ServerRoot} in the configuration file, defaults to the httpd package. Directives including @code{Include} and @code{LoadModule} are taken as relative to the server root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26235 +#: guix-git/doc/guix.texi:26572 #, no-wrap msgid "@code{server-name} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26239 +#: guix-git/doc/guix.texi:26576 msgid "The @code{ServerName} in the configuration file, used to specify the request scheme, hostname and port that the server uses to identify itself." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26243 +#: guix-git/doc/guix.texi:26580 msgid "This doesn't need to be set in the server config, and can be specified in virtual hosts. The default is @code{#f} to not specify a @code{ServerName}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26244 +#: guix-git/doc/guix.texi:26581 #, no-wrap msgid "@code{document-root} (default: @code{\"/srv/http\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26246 +#: guix-git/doc/guix.texi:26583 msgid "The @code{DocumentRoot} from which files will be served." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26247 +#: guix-git/doc/guix.texi:26584 #, no-wrap msgid "@code{listen} (default: @code{'(\"80\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26252 +#: guix-git/doc/guix.texi:26589 msgid "The list of values for the @code{Listen} directives in the config file. The value should be a list of strings, when each string can specify the port number to listen on, and optionally the IP address and protocol to use." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26257 +#: guix-git/doc/guix.texi:26594 msgid "The @code{PidFile} to use. This should match the @code{pid-file} set in the @code{httpd-configuration} so that the Shepherd service is configured correctly." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26258 +#: guix-git/doc/guix.texi:26595 #, no-wrap msgid "@code{error-log} (default: @code{\"/var/log/httpd/error_log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26260 +#: guix-git/doc/guix.texi:26597 msgid "The @code{ErrorLog} to which the server will log errors." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26261 guix-git/doc/guix.texi:26823 +#: guix-git/doc/guix.texi:26598 guix-git/doc/guix.texi:27160 #, no-wrap msgid "@code{user} (default: @code{\"httpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26263 +#: guix-git/doc/guix.texi:26600 msgid "The @code{User} which the server will answer requests as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26264 +#: guix-git/doc/guix.texi:26601 #, no-wrap msgid "@code{group} (default: @code{\"httpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26266 +#: guix-git/doc/guix.texi:26603 msgid "The @code{Group} which the server will answer requests as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26267 +#: guix-git/doc/guix.texi:26604 #, no-wrap msgid "@code{extra-config} (default: @code{(list \"TypesConfig etc/httpd/mime.types\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26270 +#: guix-git/doc/guix.texi:26607 msgid "A flat list of strings and G-expressions which will be added to the end of the configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26273 +#: guix-git/doc/guix.texi:26610 msgid "Any values which the service is extended with will be appended to this list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26277 +#: guix-git/doc/guix.texi:26614 #, no-wrap msgid "{Data Type} httpd-virtualhost" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26279 +#: guix-git/doc/guix.texi:26616 msgid "This data type represents a virtualhost configuration block for the httpd service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26281 +#: guix-git/doc/guix.texi:26618 msgid "These should be added to the extra-config for the httpd-service." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26293 +#: guix-git/doc/guix.texi:26630 #, no-wrap msgid "addresses-and-ports" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26295 +#: guix-git/doc/guix.texi:26632 msgid "The addresses and ports for the @code{VirtualHost} directive." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26296 +#: guix-git/doc/guix.texi:26633 #, no-wrap msgid "contents" msgstr "sisältö" #. type: table -#: guix-git/doc/guix.texi:26299 +#: guix-git/doc/guix.texi:26636 msgid "The contents of the @code{VirtualHost} directive, this should be a list of strings and G-expressions." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26304 +#: guix-git/doc/guix.texi:26641 #, no-wrap msgid "NGINX" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26306 +#: guix-git/doc/guix.texi:26643 #, no-wrap msgid "{Scheme Variable} nginx-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26309 +#: guix-git/doc/guix.texi:26646 msgid "Service type for the @uref{https://nginx.org/,NGinx} web server. The value for this service type is a @code{} record." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26319 guix-git/doc/guix.texi:26373 +#: guix-git/doc/guix.texi:26656 guix-git/doc/guix.texi:26710 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -46689,12 +47312,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26324 +#: guix-git/doc/guix.texi:26661 msgid "In addition to adding server blocks to the service configuration directly, this service can be extended by other services to add server blocks, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26330 +#: guix-git/doc/guix.texi:26667 #, no-wrap msgid "" "(simple-service 'my-extra-server nginx-service-type\n" @@ -46704,88 +47327,88 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26341 +#: guix-git/doc/guix.texi:26678 msgid "At startup, @command{nginx} has not yet read its configuration file, so it uses a default file to log error messages. If it fails to load its configuration file, that is where error messages are logged. After the configuration file is loaded, the default error log file changes as per configuration. In our case, startup error messages can be found in @file{/var/run/nginx/logs/error.log}, and after configuration in @file{/var/log/nginx/error.log}. The second location can be changed with the @var{log-directory} configuration option." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26342 +#: guix-git/doc/guix.texi:26679 #, no-wrap msgid "{Data Type} nginx-configuration" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26346 +#: guix-git/doc/guix.texi:26683 msgid "This data type represents the configuration for NGinx. Some configuration can be done through this and the other provided record types, or alternatively, a config file can be provided." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26348 +#: guix-git/doc/guix.texi:26685 #, no-wrap msgid "@code{nginx} (default: @code{nginx})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26350 +#: guix-git/doc/guix.texi:26687 msgid "The nginx package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26351 +#: guix-git/doc/guix.texi:26688 #, no-wrap msgid "@code{log-directory} (default: @code{\"/var/log/nginx\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26353 +#: guix-git/doc/guix.texi:26690 msgid "The directory to which NGinx will write log files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26354 +#: guix-git/doc/guix.texi:26691 #, no-wrap msgid "@code{run-directory} (default: @code{\"/var/run/nginx\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26357 +#: guix-git/doc/guix.texi:26694 msgid "The directory in which NGinx will create a pid file, and write temporary files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26358 +#: guix-git/doc/guix.texi:26695 #, no-wrap msgid "@code{server-blocks} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26362 +#: guix-git/doc/guix.texi:26699 msgid "A list of @dfn{server blocks} to create in the generated configuration file, the elements should be of type @code{}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26366 +#: guix-git/doc/guix.texi:26703 msgid "The following example would setup NGinx to serve @code{www.example.com} from the @code{/srv/http/www.example.com} directory, without using HTTPS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26375 +#: guix-git/doc/guix.texi:26712 #, no-wrap msgid "@code{upstream-blocks} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26379 +#: guix-git/doc/guix.texi:26716 msgid "A list of @dfn{upstream blocks} to create in the generated configuration file, the elements should be of type @code{}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26386 +#: guix-git/doc/guix.texi:26723 msgid "Configuring upstreams through the @code{upstream-blocks} can be useful when combined with @code{locations} in the @code{} records. The following example creates a server configuration with one location configuration, that will proxy requests to a upstream configuration, which will handle requests with two servers." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26405 +#: guix-git/doc/guix.texi:26742 #, no-wrap msgid "" "(service\n" @@ -46808,44 +47431,44 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26413 +#: guix-git/doc/guix.texi:26750 msgid "If a configuration @var{file} is provided, this will be used, rather than generating a configuration file from the provided @code{log-directory}, @code{run-directory}, @code{server-blocks} and @code{upstream-blocks}. For proper operation, these arguments should match what is in @var{file} to ensure that the directories are created when the service is activated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26417 +#: guix-git/doc/guix.texi:26754 msgid "This can be useful if you have an existing configuration file, or it's not possible to do what is required through the other parts of the nginx-configuration record." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26418 +#: guix-git/doc/guix.texi:26755 #, no-wrap msgid "@code{server-names-hash-bucket-size} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26421 +#: guix-git/doc/guix.texi:26758 msgid "Bucket size for the server names hash tables, defaults to @code{#f} to use the size of the processors cache line." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26422 +#: guix-git/doc/guix.texi:26759 #, no-wrap msgid "@code{server-names-hash-bucket-max-size} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26424 +#: guix-git/doc/guix.texi:26761 msgid "Maximum bucket size for the server names hash tables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26428 +#: guix-git/doc/guix.texi:26765 msgid "List of nginx dynamic modules to load. This should be a list of file names of loadable modules, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26436 +#: guix-git/doc/guix.texi:26773 #, no-wrap msgid "" "(modules\n" @@ -46857,18 +47480,18 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26438 +#: guix-git/doc/guix.texi:26775 #, no-wrap msgid "@code{lua-package-path} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26441 +#: guix-git/doc/guix.texi:26778 msgid "List of nginx lua packages to load. This should be a list of package names of loadable lua modules, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26448 +#: guix-git/doc/guix.texi:26785 #, no-wrap msgid "" "(lua-package-path (list lua-resty-core\n" @@ -46879,35 +47502,35 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26450 +#: guix-git/doc/guix.texi:26787 #, no-wrap msgid "@code{lua-package-cpath} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26453 +#: guix-git/doc/guix.texi:26790 msgid "List of nginx lua C packages to load. This should be a list of package names of loadable lua C modules, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26456 +#: guix-git/doc/guix.texi:26793 #, no-wrap msgid "(lua-package-cpath (list lua-resty-signal))\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26458 +#: guix-git/doc/guix.texi:26795 #, no-wrap msgid "@code{global-directives} (default: @code{'((events . ()))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26461 +#: guix-git/doc/guix.texi:26798 msgid "Association list of global directives for the top level of the nginx configuration. Values may themselves be association lists." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26467 +#: guix-git/doc/guix.texi:26804 #, no-wrap msgid "" "(global-directives\n" @@ -46917,312 +47540,312 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26472 +#: guix-git/doc/guix.texi:26809 msgid "Extra content for the @code{http} block. Should be string or a string valued G-expression." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26476 +#: guix-git/doc/guix.texi:26813 #, no-wrap msgid "{Data Type} nginx-server-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26479 +#: guix-git/doc/guix.texi:26816 msgid "Data type representing the configuration of an nginx server block. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26481 +#: guix-git/doc/guix.texi:26818 #, no-wrap msgid "@code{listen} (default: @code{'(\"80\" \"443 ssl\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26486 +#: guix-git/doc/guix.texi:26823 msgid "Each @code{listen} directive sets the address and port for IP, or the path for a UNIX-domain socket on which the server will accept requests. Both address and port, or only address or only port can be specified. An address may also be a hostname, for example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26489 +#: guix-git/doc/guix.texi:26826 #, no-wrap msgid "'(\"127.0.0.1:8000\" \"127.0.0.1\" \"8000\" \"*:8000\" \"localhost:8000\")\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26491 +#: guix-git/doc/guix.texi:26828 #, no-wrap msgid "@code{server-name} (default: @code{(list 'default)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26494 +#: guix-git/doc/guix.texi:26831 msgid "A list of server names this server represents. @code{'default} represents the default server for connections matching no other server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26495 +#: guix-git/doc/guix.texi:26832 #, no-wrap msgid "@code{root} (default: @code{\"/srv/http\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26497 +#: guix-git/doc/guix.texi:26834 msgid "Root of the website nginx will serve." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26498 +#: guix-git/doc/guix.texi:26835 #, no-wrap msgid "@code{locations} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26502 +#: guix-git/doc/guix.texi:26839 msgid "A list of @dfn{nginx-location-configuration} or @dfn{nginx-named-location-configuration} records to use within this server block." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26503 +#: guix-git/doc/guix.texi:26840 #, no-wrap msgid "@code{index} (default: @code{(list \"index.html\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26506 +#: guix-git/doc/guix.texi:26843 msgid "Index files to look for when clients ask for a directory. If it cannot be found, Nginx will send the list of files in the directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26507 +#: guix-git/doc/guix.texi:26844 #, no-wrap msgid "@code{try-files} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26510 +#: guix-git/doc/guix.texi:26847 msgid "A list of files whose existence is checked in the specified order. @code{nginx} will use the first file it finds to process the request." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26511 +#: guix-git/doc/guix.texi:26848 #, no-wrap msgid "@code{ssl-certificate} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26514 +#: guix-git/doc/guix.texi:26851 msgid "Where to find the certificate for secure connections. Set it to @code{#f} if you don't have a certificate or you don't want to use HTTPS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26515 +#: guix-git/doc/guix.texi:26852 #, no-wrap msgid "@code{ssl-certificate-key} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26518 +#: guix-git/doc/guix.texi:26855 msgid "Where to find the private key for secure connections. Set it to @code{#f} if you don't have a key or you don't want to use HTTPS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26519 +#: guix-git/doc/guix.texi:26856 #, no-wrap msgid "@code{server-tokens?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26521 +#: guix-git/doc/guix.texi:26858 msgid "Whether the server should add its configuration to response." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26522 +#: guix-git/doc/guix.texi:26859 #, no-wrap msgid "@code{raw-content} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26524 +#: guix-git/doc/guix.texi:26861 msgid "A list of raw lines added to the server block." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26528 +#: guix-git/doc/guix.texi:26865 #, no-wrap msgid "{Data Type} nginx-upstream-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26531 +#: guix-git/doc/guix.texi:26868 msgid "Data type representing the configuration of an nginx @code{upstream} block. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26535 +#: guix-git/doc/guix.texi:26872 msgid "Name for this group of servers." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26536 +#: guix-git/doc/guix.texi:26873 #, no-wrap msgid "servers" msgstr "palvelimet" #. type: table -#: guix-git/doc/guix.texi:26543 +#: guix-git/doc/guix.texi:26880 msgid "Specify the addresses of the servers in the group. The address can be specified as a IP address (e.g.@: @samp{127.0.0.1}), domain name (e.g.@: @samp{backend1.example.com}) or a path to a UNIX socket using the prefix @samp{unix:}. For addresses using an IP address or domain name, the default port is 80, and a different port can be specified explicitly." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26547 +#: guix-git/doc/guix.texi:26884 #, no-wrap msgid "{Data Type} nginx-location-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26550 +#: guix-git/doc/guix.texi:26887 msgid "Data type representing the configuration of an nginx @code{location} block. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26554 +#: guix-git/doc/guix.texi:26891 msgid "URI which this location block matches." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:26556 +#: guix-git/doc/guix.texi:26893 msgid "nginx-location-configuration body" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26556 guix-git/doc/guix.texi:26577 +#: guix-git/doc/guix.texi:26893 guix-git/doc/guix.texi:26914 #, no-wrap msgid "body" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26563 +#: guix-git/doc/guix.texi:26900 msgid "Body of the location block, specified as a list of strings. This can contain many configuration directives. For example, to pass requests to a upstream server group defined using an @code{nginx-upstream-configuration} block, the following directive would be specified in the body @samp{(list \"proxy_pass http://upstream-name;\")}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26567 +#: guix-git/doc/guix.texi:26904 #, no-wrap msgid "{Data Type} nginx-named-location-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26572 +#: guix-git/doc/guix.texi:26909 msgid "Data type representing the configuration of an nginx named location block. Named location blocks are used for request redirection, and not used for regular request processing. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26576 +#: guix-git/doc/guix.texi:26913 msgid "Name to identify this location block." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26582 +#: guix-git/doc/guix.texi:26919 msgid "@xref{nginx-location-configuration body}, as the body for named location blocks can be used in a similar way to the @code{nginx-location-configuration body}. One restriction is that the body of a named location block cannot contain location blocks." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26586 +#: guix-git/doc/guix.texi:26923 #, no-wrap msgid "Varnish Cache" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26587 +#: guix-git/doc/guix.texi:26924 #, no-wrap msgid "Varnish" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26592 +#: guix-git/doc/guix.texi:26929 msgid "Varnish is a fast cache server that sits in between web applications and end users. It proxies requests from clients and caches the accessed URLs such that multiple requests for the same resource only creates one request to the back-end." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26593 +#: guix-git/doc/guix.texi:26930 #, no-wrap msgid "{Scheme Variable} varnish-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26595 +#: guix-git/doc/guix.texi:26932 msgid "Service type for the Varnish daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26597 +#: guix-git/doc/guix.texi:26934 #, no-wrap msgid "{Data Type} varnish-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26600 +#: guix-git/doc/guix.texi:26937 msgid "Data type representing the @code{varnish} service configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26602 +#: guix-git/doc/guix.texi:26939 #, no-wrap msgid "@code{package} (default: @code{varnish})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26604 +#: guix-git/doc/guix.texi:26941 msgid "The Varnish package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26605 +#: guix-git/doc/guix.texi:26942 #, no-wrap msgid "@code{name} (default: @code{\"default\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26610 +#: guix-git/doc/guix.texi:26947 msgid "A name for this Varnish instance. Varnish will create a directory in @file{/var/varnish/} with this name and keep temporary files there. If the name starts with a forward slash, it is interpreted as an absolute directory name." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26613 +#: guix-git/doc/guix.texi:26950 msgid "Pass the @code{-n} argument to other Varnish programs to connect to the named instance, e.g.@: @command{varnishncsa -n default}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26614 +#: guix-git/doc/guix.texi:26951 #, no-wrap msgid "@code{backend} (default: @code{\"localhost:8080\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26616 +#: guix-git/doc/guix.texi:26953 msgid "The backend to use. This option has no effect if @code{vcl} is set." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26617 +#: guix-git/doc/guix.texi:26954 #, no-wrap msgid "@code{vcl} (default: #f)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26622 +#: guix-git/doc/guix.texi:26959 msgid "The @dfn{VCL} (Varnish Configuration Language) program to run. If this is @code{#f}, Varnish will proxy @code{backend} using the default configuration. Otherwise this must be a file-like object with valid VCL syntax." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26626 +#: guix-git/doc/guix.texi:26963 msgid "For example, to mirror @url{https://www.gnu.org,www.gnu.org} with VCL you can do something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26632 +#: guix-git/doc/guix.texi:26969 #, no-wrap msgid "" "(define %gnu-mirror\n" @@ -47233,7 +47856,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26640 +#: guix-git/doc/guix.texi:26977 #, no-wrap msgid "" "(operating-system\n" @@ -47246,82 +47869,82 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26644 +#: guix-git/doc/guix.texi:26981 msgid "The configuration of an already running Varnish instance can be inspected and changed using the @command{varnishadm} program." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26648 +#: guix-git/doc/guix.texi:26985 msgid "Consult the @url{https://varnish-cache.org/docs/,Varnish User Guide} and @url{https://book.varnish-software.com/4.0/,Varnish Book} for comprehensive documentation on Varnish and its configuration language." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26649 +#: guix-git/doc/guix.texi:26986 #, no-wrap msgid "@code{listen} (default: @code{'(\"localhost:80\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26651 +#: guix-git/doc/guix.texi:26988 msgid "List of addresses Varnish will listen on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26652 +#: guix-git/doc/guix.texi:26989 #, no-wrap msgid "@code{storage} (default: @code{'(\"malloc,128m\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26654 +#: guix-git/doc/guix.texi:26991 msgid "List of storage backends that will be available in VCL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26655 +#: guix-git/doc/guix.texi:26992 #, no-wrap msgid "@code{parameters} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26657 +#: guix-git/doc/guix.texi:26994 msgid "List of run-time parameters in the form @code{'((\"parameter\" . \"value\"))}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26660 +#: guix-git/doc/guix.texi:26997 msgid "Additional arguments to pass to the @command{varnishd} process." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26664 guix-git/doc/guix.texi:26665 +#: guix-git/doc/guix.texi:27001 guix-git/doc/guix.texi:27002 #, no-wrap msgid "Patchwork" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26668 +#: guix-git/doc/guix.texi:27005 msgid "Patchwork is a patch tracking system. It can collect patches sent to a mailing list, and display them in a web interface." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26669 +#: guix-git/doc/guix.texi:27006 #, no-wrap msgid "{Scheme Variable} patchwork-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26671 +#: guix-git/doc/guix.texi:27008 msgid "Service type for Patchwork." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26675 +#: guix-git/doc/guix.texi:27012 msgid "The following example is an example of a minimal service for Patchwork, for the @code{patchwork.example.com} domain." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26695 +#: guix-git/doc/guix.texi:27032 #, no-wrap msgid "" "(service patchwork-service-type\n" @@ -47346,806 +47969,806 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26701 +#: guix-git/doc/guix.texi:27038 msgid "There are three records for configuring the Patchwork service. The @code{} relates to the configuration for Patchwork within the HTTPD service." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26705 +#: guix-git/doc/guix.texi:27042 msgid "The @code{settings-module} field within the @code{} record can be populated with the @code{} record, which describes a settings module that is generated within the Guix store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26709 +#: guix-git/doc/guix.texi:27046 msgid "For the @code{database-configuration} field within the @code{}, the @code{} must be used." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26710 +#: guix-git/doc/guix.texi:27047 #, no-wrap msgid "{Data Type} patchwork-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26713 +#: guix-git/doc/guix.texi:27050 msgid "Data type representing the Patchwork service configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26715 +#: guix-git/doc/guix.texi:27052 #, no-wrap msgid "@code{patchwork} (default: @code{patchwork})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26717 +#: guix-git/doc/guix.texi:27054 msgid "The Patchwork package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26718 +#: guix-git/doc/guix.texi:27055 #, no-wrap msgid "domain" msgstr "toimialue" #. type: table -#: guix-git/doc/guix.texi:26721 +#: guix-git/doc/guix.texi:27058 msgid "The domain to use for Patchwork, this is used in the HTTPD service virtual host." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26722 +#: guix-git/doc/guix.texi:27059 #, no-wrap msgid "settings-module" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26728 +#: guix-git/doc/guix.texi:27065 msgid "The settings module to use for Patchwork. As a Django application, Patchwork is configured with a Python module containing the settings. This can either be an instance of the @code{} record, any other record that represents the settings in the store, or a directory outside of the store." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26729 +#: guix-git/doc/guix.texi:27066 #, no-wrap msgid "@code{static-path} (default: @code{\"/static/\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26731 +#: guix-git/doc/guix.texi:27068 msgid "The path under which the HTTPD service should serve the static files." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26732 +#: guix-git/doc/guix.texi:27069 #, no-wrap msgid "getmail-retriever-config" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26736 +#: guix-git/doc/guix.texi:27073 msgid "The getmail-retriever-configuration record value to use with Patchwork. Getmail will be configured with this value, the messages will be delivered to Patchwork." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26740 +#: guix-git/doc/guix.texi:27077 #, no-wrap msgid "{Data Type} patchwork-settings-module" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26745 +#: guix-git/doc/guix.texi:27082 msgid "Data type representing a settings module for Patchwork. Some of these settings relate directly to Patchwork, but others relate to Django, the web framework used by Patchwork, or the Django Rest Framework library. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26747 +#: guix-git/doc/guix.texi:27084 #, no-wrap msgid "@code{database-configuration} (default: @code{(patchwork-database-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26750 +#: guix-git/doc/guix.texi:27087 msgid "The database connection settings used for Patchwork. See the @code{} record type for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26751 +#: guix-git/doc/guix.texi:27088 #, no-wrap msgid "@code{secret-key-file} (default: @code{\"/etc/patchwork/django-secret-key\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26754 +#: guix-git/doc/guix.texi:27091 msgid "Patchwork, as a Django web application uses a secret key for cryptographically signing values. This file should contain a unique unpredictable value." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26757 +#: guix-git/doc/guix.texi:27094 msgid "If this file does not exist, it will be created and populated with a random value by the patchwork-setup shepherd service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26759 +#: guix-git/doc/guix.texi:27096 msgid "This setting relates to Django." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26760 +#: guix-git/doc/guix.texi:27097 #, no-wrap msgid "allowed-hosts" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26763 +#: guix-git/doc/guix.texi:27100 msgid "A list of valid hosts for this Patchwork service. This should at least include the domain specified in the @code{} record." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26765 guix-git/doc/guix.texi:26779 -#: guix-git/doc/guix.texi:26785 guix-git/doc/guix.texi:26791 +#: guix-git/doc/guix.texi:27102 guix-git/doc/guix.texi:27116 +#: guix-git/doc/guix.texi:27122 guix-git/doc/guix.texi:27128 msgid "This is a Django setting." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26766 +#: guix-git/doc/guix.texi:27103 #, no-wrap msgid "default-from-email" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26768 +#: guix-git/doc/guix.texi:27105 msgid "The email address from which Patchwork should send email by default." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26770 guix-git/doc/guix.texi:26796 -#: guix-git/doc/guix.texi:26801 guix-git/doc/guix.texi:26806 +#: guix-git/doc/guix.texi:27107 guix-git/doc/guix.texi:27133 +#: guix-git/doc/guix.texi:27138 guix-git/doc/guix.texi:27143 msgid "This is a Patchwork setting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26771 +#: guix-git/doc/guix.texi:27108 #, no-wrap msgid "@code{static-url} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26774 +#: guix-git/doc/guix.texi:27111 msgid "The URL to use when serving static assets. It can be part of a URL, or a full URL, but must end in a @code{/}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26777 +#: guix-git/doc/guix.texi:27114 msgid "If the default value is used, the @code{static-path} value from the @code{} record will be used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26780 +#: guix-git/doc/guix.texi:27117 #, no-wrap msgid "@code{admins} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26783 +#: guix-git/doc/guix.texi:27120 msgid "Email addresses to send the details of errors that occur. Each value should be a list containing two elements, the name and then the email address." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26789 +#: guix-git/doc/guix.texi:27126 msgid "Whether to run Patchwork in debug mode. If set to @code{#t}, detailed error messages will be shown." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26792 +#: guix-git/doc/guix.texi:27129 #, no-wrap msgid "@code{enable-rest-api?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26794 +#: guix-git/doc/guix.texi:27131 msgid "Whether to enable the Patchwork REST API." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26797 +#: guix-git/doc/guix.texi:27134 #, no-wrap msgid "@code{enable-xmlrpc?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26799 +#: guix-git/doc/guix.texi:27136 msgid "Whether to enable the XML RPC API." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26802 +#: guix-git/doc/guix.texi:27139 #, no-wrap msgid "@code{force-https-links?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26804 +#: guix-git/doc/guix.texi:27141 msgid "Whether to use HTTPS links on Patchwork pages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26809 +#: guix-git/doc/guix.texi:27146 msgid "Extra code to place at the end of the Patchwork settings module." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26813 +#: guix-git/doc/guix.texi:27150 #, no-wrap msgid "{Data Type} patchwork-database-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26815 +#: guix-git/doc/guix.texi:27152 msgid "Data type representing the database configuration for Patchwork." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26817 +#: guix-git/doc/guix.texi:27154 #, no-wrap msgid "@code{engine} (default: @code{\"django.db.backends.postgresql_psycopg2\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26819 +#: guix-git/doc/guix.texi:27156 msgid "The database engine to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26820 +#: guix-git/doc/guix.texi:27157 #, no-wrap msgid "@code{name} (default: @code{\"patchwork\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26822 +#: guix-git/doc/guix.texi:27159 msgid "The name of the database to use." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26825 +#: guix-git/doc/guix.texi:27162 msgid "The user to connect to the database as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26826 +#: guix-git/doc/guix.texi:27163 #, no-wrap msgid "@code{password} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26828 +#: guix-git/doc/guix.texi:27165 msgid "The password to use when connecting to the database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26829 +#: guix-git/doc/guix.texi:27166 #, no-wrap msgid "@code{host} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26831 +#: guix-git/doc/guix.texi:27168 msgid "The host to make the database connection to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26832 +#: guix-git/doc/guix.texi:27169 #, no-wrap msgid "@code{port} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26834 +#: guix-git/doc/guix.texi:27171 msgid "The port on which to connect to the database." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26838 +#: guix-git/doc/guix.texi:27175 #, no-wrap msgid "Mumi" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26840 +#: guix-git/doc/guix.texi:27177 #, no-wrap msgid "Mumi, Debbugs Web interface" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26841 +#: guix-git/doc/guix.texi:27178 #, no-wrap msgid "Debbugs, Mumi Web interface" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26846 +#: guix-git/doc/guix.texi:27183 msgid "@uref{https://git.elephly.net/gitweb.cgi?p=software/mumi.git, Mumi} is a Web interface to the Debbugs bug tracker, by default for @uref{https://bugs.gnu.org, the GNU instance}. Mumi is a Web server, but it also fetches and indexes mail retrieved from Debbugs." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26847 +#: guix-git/doc/guix.texi:27184 #, no-wrap msgid "{Scheme Variable} mumi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26849 +#: guix-git/doc/guix.texi:27186 msgid "This is the service type for Mumi." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26851 +#: guix-git/doc/guix.texi:27188 #, no-wrap msgid "{Data Type} mumi-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26854 +#: guix-git/doc/guix.texi:27191 msgid "Data type representing the Mumi service configuration. This type has the following fields:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26856 +#: guix-git/doc/guix.texi:27193 #, no-wrap msgid "@code{mumi} (default: @code{mumi})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26858 +#: guix-git/doc/guix.texi:27195 msgid "The Mumi package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26859 +#: guix-git/doc/guix.texi:27196 #, no-wrap msgid "@code{mailer?} (default: @code{#true})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26861 +#: guix-git/doc/guix.texi:27198 msgid "Whether to enable or disable the mailer component." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26862 +#: guix-git/doc/guix.texi:27199 #, no-wrap msgid "mumi-configuration-sender" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26864 +#: guix-git/doc/guix.texi:27201 msgid "The email address used as the sender for comments." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26865 +#: guix-git/doc/guix.texi:27202 #, no-wrap msgid "mumi-configuration-smtp" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26870 +#: guix-git/doc/guix.texi:27207 msgid "A URI to configure the SMTP settings for Mailutils. This could be something like @code{sendmail:///path/to/bin/msmtp} or any other URI supported by Mailutils. @xref{SMTP Mailboxes, SMTP Mailboxes,, mailutils, GNU@tie{}Mailutils}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26875 +#: guix-git/doc/guix.texi:27212 #, no-wrap msgid "FastCGI" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26876 +#: guix-git/doc/guix.texi:27213 #, no-wrap msgid "fastcgi" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26877 +#: guix-git/doc/guix.texi:27214 #, no-wrap msgid "fcgiwrap" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26884 +#: guix-git/doc/guix.texi:27221 msgid "FastCGI is an interface between the front-end and the back-end of a web service. It is a somewhat legacy facility; new web services should generally just talk HTTP between the front-end and the back-end. However there are a number of back-end services such as PHP or the optimized HTTP Git repository access that use FastCGI, so we have support for it in Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26891 +#: guix-git/doc/guix.texi:27228 msgid "To use FastCGI, you configure the front-end web server (e.g., nginx) to dispatch some subset of its requests to the fastcgi backend, which listens on a local TCP or UNIX socket. There is an intermediary @code{fcgiwrap} program that sits between the actual backend process and the web server. The front-end indicates which backend program to run, passing that information to the @code{fcgiwrap} process." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26892 +#: guix-git/doc/guix.texi:27229 #, no-wrap msgid "{Scheme Variable} fcgiwrap-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26894 +#: guix-git/doc/guix.texi:27231 msgid "A service type for the @code{fcgiwrap} FastCGI proxy." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26896 +#: guix-git/doc/guix.texi:27233 #, no-wrap msgid "{Data Type} fcgiwrap-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26899 +#: guix-git/doc/guix.texi:27236 msgid "Data type representing the configuration of the @code{fcgiwrap} service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26900 +#: guix-git/doc/guix.texi:27237 #, no-wrap msgid "@code{package} (default: @code{fcgiwrap})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26902 +#: guix-git/doc/guix.texi:27239 msgid "The fcgiwrap package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26903 +#: guix-git/doc/guix.texi:27240 #, no-wrap msgid "@code{socket} (default: @code{tcp:127.0.0.1:9000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26909 +#: guix-git/doc/guix.texi:27246 msgid "The socket on which the @code{fcgiwrap} process should listen, as a string. Valid @var{socket} values include @code{unix:@var{/path/to/unix/socket}}, @code{tcp:@var{dot.ted.qu.ad}:@var{port}} and @code{tcp6:[@var{ipv6_addr}]:port}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26910 +#: guix-git/doc/guix.texi:27247 #, no-wrap msgid "@code{user} (default: @code{fcgiwrap})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:26911 +#: guix-git/doc/guix.texi:27248 #, no-wrap msgid "@code{group} (default: @code{fcgiwrap})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26916 +#: guix-git/doc/guix.texi:27253 msgid "The user and group names, as strings, under which to run the @code{fcgiwrap} process. The @code{fastcgi} service will ensure that if the user asks for the specific user or group names @code{fcgiwrap} that the corresponding user and/or group is present on the system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26923 +#: guix-git/doc/guix.texi:27260 msgid "It is possible to configure a FastCGI-backed web service to pass HTTP authentication information from the front-end to the back-end, and to allow @code{fcgiwrap} to run the back-end process as a corresponding local user. To enable this capability on the back-end, run @code{fcgiwrap} as the @code{root} user and group. Note that this capability also has to be configured on the front-end as well." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26926 +#: guix-git/doc/guix.texi:27263 #, no-wrap msgid "php-fpm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26929 +#: guix-git/doc/guix.texi:27266 msgid "PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI implementation with some additional features useful for sites of any size." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26931 +#: guix-git/doc/guix.texi:27268 msgid "These features include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26932 +#: guix-git/doc/guix.texi:27269 #, no-wrap msgid "Adaptive process spawning" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26933 +#: guix-git/doc/guix.texi:27270 #, no-wrap msgid "Basic statistics (similar to Apache's mod_status)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26934 +#: guix-git/doc/guix.texi:27271 #, no-wrap msgid "Advanced process management with graceful stop/start" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26935 +#: guix-git/doc/guix.texi:27272 #, no-wrap msgid "Ability to start workers with different uid/gid/chroot/environment" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:26937 +#: guix-git/doc/guix.texi:27274 msgid "and different php.ini (replaces safe_mode)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26937 +#: guix-git/doc/guix.texi:27274 #, no-wrap msgid "Stdout & stderr logging" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26938 +#: guix-git/doc/guix.texi:27275 #, no-wrap msgid "Emergency restart in case of accidental opcode cache destruction" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26939 +#: guix-git/doc/guix.texi:27276 #, no-wrap msgid "Accelerated upload support" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26940 +#: guix-git/doc/guix.texi:27277 #, no-wrap msgid "Support for a \"slowlog\"" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26941 +#: guix-git/doc/guix.texi:27278 #, no-wrap msgid "Enhancements to FastCGI, such as fastcgi_finish_request() -" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:26944 +#: guix-git/doc/guix.texi:27281 msgid "a special function to finish request & flush all data while continuing to do something time-consuming (video converting, stats processing, etc.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26946 +#: guix-git/doc/guix.texi:27283 msgid "...@: and much more." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26947 +#: guix-git/doc/guix.texi:27284 #, no-wrap msgid "{Scheme Variable} php-fpm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26949 +#: guix-git/doc/guix.texi:27286 msgid "A Service type for @code{php-fpm}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26951 +#: guix-git/doc/guix.texi:27288 #, no-wrap msgid "{Data Type} php-fpm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26953 +#: guix-git/doc/guix.texi:27290 msgid "Data Type for php-fpm service configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26954 +#: guix-git/doc/guix.texi:27291 #, no-wrap msgid "@code{php} (default: @code{php})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26956 +#: guix-git/doc/guix.texi:27293 msgid "The php package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26956 +#: guix-git/doc/guix.texi:27293 #, no-wrap msgid "@code{socket} (default: @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.sock\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26958 +#: guix-git/doc/guix.texi:27295 msgid "The address on which to accept FastCGI requests. Valid syntaxes are:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26959 +#: guix-git/doc/guix.texi:27296 #, no-wrap msgid "\"ip.add.re.ss:port\"" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26961 +#: guix-git/doc/guix.texi:27298 msgid "Listen on a TCP socket to a specific address on a specific port." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26961 +#: guix-git/doc/guix.texi:27298 #, no-wrap msgid "\"port\"" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26963 +#: guix-git/doc/guix.texi:27300 msgid "Listen on a TCP socket to all addresses on a specific port." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26963 +#: guix-git/doc/guix.texi:27300 #, no-wrap msgid "\"/path/to/unix/socket\"" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26965 +#: guix-git/doc/guix.texi:27302 msgid "Listen on a unix socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26967 +#: guix-git/doc/guix.texi:27304 #, no-wrap msgid "@code{user} (default: @code{php-fpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26969 +#: guix-git/doc/guix.texi:27306 msgid "User who will own the php worker processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26969 +#: guix-git/doc/guix.texi:27306 #, no-wrap msgid "@code{group} (default: @code{php-fpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26971 +#: guix-git/doc/guix.texi:27308 msgid "Group of the worker processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26971 +#: guix-git/doc/guix.texi:27308 #, no-wrap msgid "@code{socket-user} (default: @code{php-fpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26973 +#: guix-git/doc/guix.texi:27310 msgid "User who can speak to the php-fpm socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26973 +#: guix-git/doc/guix.texi:27310 #, no-wrap msgid "@code{socket-group} (default: @code{nginx})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26975 +#: guix-git/doc/guix.texi:27312 msgid "Group that can speak to the php-fpm socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26975 +#: guix-git/doc/guix.texi:27312 #, no-wrap msgid "@code{pid-file} (default: @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.pid\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26978 +#: guix-git/doc/guix.texi:27315 msgid "The process id of the php-fpm process is written to this file once the service has started." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26978 +#: guix-git/doc/guix.texi:27315 #, no-wrap msgid "@code{log-file} (default: @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.log\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26980 +#: guix-git/doc/guix.texi:27317 msgid "Log for the php-fpm master process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26980 +#: guix-git/doc/guix.texi:27317 #, no-wrap msgid "@code{process-manager} (default: @code{(php-fpm-dynamic-process-manager-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26983 +#: guix-git/doc/guix.texi:27320 msgid "Detailed settings for the php-fpm process manager. Must be one of:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26984 +#: guix-git/doc/guix.texi:27321 #, no-wrap msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26985 +#: guix-git/doc/guix.texi:27322 #, no-wrap msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26986 +#: guix-git/doc/guix.texi:27323 #, no-wrap msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26988 +#: guix-git/doc/guix.texi:27325 #, no-wrap msgid "@code{display-errors} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26993 +#: guix-git/doc/guix.texi:27330 msgid "Determines whether php errors and warning should be sent to clients and displayed in their browsers. This is useful for local php development, but a security risk for public sites, as error messages can reveal passwords and personal data." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26993 +#: guix-git/doc/guix.texi:27330 #, no-wrap msgid "@code{timezone} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26995 +#: guix-git/doc/guix.texi:27332 msgid "Specifies @code{php_admin_value[date.timezone]} parameter." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26995 +#: guix-git/doc/guix.texi:27332 #, no-wrap msgid "@code{workers-logfile} (default @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.www.log\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26998 +#: guix-git/doc/guix.texi:27335 msgid "This file will log the @code{stderr} outputs of php worker processes. Can be set to @code{#f} to disable logging." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26998 +#: guix-git/doc/guix.texi:27335 #, no-wrap msgid "@code{file} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27001 +#: guix-git/doc/guix.texi:27338 msgid "An optional override of the whole configuration. You can use the @code{mixed-text-file} function or an absolute filepath for it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27001 +#: guix-git/doc/guix.texi:27338 #, no-wrap msgid "@code{php-ini-file} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27005 +#: guix-git/doc/guix.texi:27342 msgid "An optional override of the default php settings. It may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). You can use the @code{mixed-text-file} function or an absolute filepath for it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27009 +#: guix-git/doc/guix.texi:27346 msgid "For local development it is useful to set a higher timeout and memory limit for spawned php processes. This be accomplished with the following operating system configuration snippet:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27014 +#: guix-git/doc/guix.texi:27351 #, no-wrap msgid "" "(define %local-php-ini\n" @@ -48156,7 +48779,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27021 +#: guix-git/doc/guix.texi:27358 #, no-wrap msgid "" "(operating-system\n" @@ -48168,118 +48791,118 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27026 +#: guix-git/doc/guix.texi:27363 msgid "Consult the @url{https://www.php.net/manual/en/ini.core.php,core php.ini directives} for comprehensive documentation on the acceptable @file{php.ini} directives." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27029 +#: guix-git/doc/guix.texi:27366 #, no-wrap msgid "{Data type} php-fpm-dynamic-process-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27033 +#: guix-git/doc/guix.texi:27370 msgid "Data Type for the @code{dynamic} php-fpm process manager. With the @code{dynamic} process manager, spare worker processes are kept around based on its configured limits." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27034 guix-git/doc/guix.texi:27050 -#: guix-git/doc/guix.texi:27060 +#: guix-git/doc/guix.texi:27371 guix-git/doc/guix.texi:27387 +#: guix-git/doc/guix.texi:27397 #, no-wrap msgid "@code{max-children} (default: @code{5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27036 guix-git/doc/guix.texi:27052 -#: guix-git/doc/guix.texi:27062 +#: guix-git/doc/guix.texi:27373 guix-git/doc/guix.texi:27389 +#: guix-git/doc/guix.texi:27399 msgid "Maximum of worker processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27036 +#: guix-git/doc/guix.texi:27373 #, no-wrap msgid "@code{start-servers} (default: @code{2})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27038 +#: guix-git/doc/guix.texi:27375 msgid "How many worker processes should be started on start-up." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27038 +#: guix-git/doc/guix.texi:27375 #, no-wrap msgid "@code{min-spare-servers} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27040 +#: guix-git/doc/guix.texi:27377 msgid "How many spare worker processes should be kept around at minimum." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27040 +#: guix-git/doc/guix.texi:27377 #, no-wrap msgid "@code{max-spare-servers} (default: @code{3})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27042 +#: guix-git/doc/guix.texi:27379 msgid "How many spare worker processes should be kept around at maximum." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27045 +#: guix-git/doc/guix.texi:27382 #, no-wrap msgid "{Data type} php-fpm-static-process-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27049 +#: guix-git/doc/guix.texi:27386 msgid "Data Type for the @code{static} php-fpm process manager. With the @code{static} process manager, an unchanging number of worker processes are created." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27055 +#: guix-git/doc/guix.texi:27392 #, no-wrap msgid "{Data type} php-fpm-on-demand-process-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27059 +#: guix-git/doc/guix.texi:27396 msgid "Data Type for the @code{on-demand} php-fpm process manager. With the @code{on-demand} process manager, worker processes are only created as requests arrive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27062 +#: guix-git/doc/guix.texi:27399 #, no-wrap msgid "@code{process-idle-timeout} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27064 +#: guix-git/doc/guix.texi:27401 msgid "The time in seconds after which a process with no requests is killed." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27068 +#: guix-git/doc/guix.texi:27405 #, no-wrap msgid "{Scheme Procedure} nginx-php-location @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27074 +#: guix-git/doc/guix.texi:27411 msgid "[#:nginx-package nginx] @ [socket (string-append \"/var/run/php\" @ (version-major (package-version php)) @ \"-fpm.sock\")] A helper function to quickly add php to an @code{nginx-server-configuration}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27077 +#: guix-git/doc/guix.texi:27414 msgid "A simple services setup for nginx with php can look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27090 +#: guix-git/doc/guix.texi:27427 #, no-wrap msgid "" "(services (cons* (service dhcp-client-service-type)\n" @@ -48297,34 +48920,34 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27092 +#: guix-git/doc/guix.texi:27429 #, no-wrap msgid "cat-avatar-generator" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27096 +#: guix-git/doc/guix.texi:27433 msgid "The cat avatar generator is a simple service to demonstrate the use of php-fpm in @code{Nginx}. It is used to generate cat avatar from a seed, for instance the hash of a user's email address." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27097 +#: guix-git/doc/guix.texi:27434 #, no-wrap msgid "{Scheme Procedure} cat-avatar-generator-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27105 +#: guix-git/doc/guix.texi:27442 msgid "[#:cache-dir \"/var/cache/cat-avatar-generator\"] @ [#:package cat-avatar-generator] @ [#:configuration (nginx-server-configuration)] Returns an nginx-server-configuration that inherits @code{configuration}. It extends the nginx configuration to add a server block that serves @code{package}, a version of cat-avatar-generator. During execution, cat-avatar-generator will be able to use @code{cache-dir} as its cache directory." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27108 +#: guix-git/doc/guix.texi:27445 msgid "A simple setup for cat-avatar-generator can look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27115 +#: guix-git/doc/guix.texi:27452 #, no-wrap msgid "" "(services (cons* (cat-avatar-generator-service\n" @@ -48336,177 +48959,177 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27117 +#: guix-git/doc/guix.texi:27454 #, no-wrap msgid "Hpcguix-web" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27119 +#: guix-git/doc/guix.texi:27456 #, no-wrap msgid "hpcguix-web" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27124 +#: guix-git/doc/guix.texi:27461 msgid "The @uref{https://github.com/UMCUGenetics/hpcguix-web/, hpcguix-web} program is a customizable web interface to browse Guix packages, initially designed for users of high-performance computing (HPC) clusters." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27125 +#: guix-git/doc/guix.texi:27462 #, no-wrap msgid "{Scheme Variable} hpcguix-web-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27127 +#: guix-git/doc/guix.texi:27464 msgid "The service type for @code{hpcguix-web}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27129 +#: guix-git/doc/guix.texi:27466 #, no-wrap msgid "{Data Type} hpcguix-web-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27131 +#: guix-git/doc/guix.texi:27468 msgid "Data type for the hpcguix-web service configuration." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:27133 +#: guix-git/doc/guix.texi:27470 #, no-wrap msgid "specs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27136 +#: guix-git/doc/guix.texi:27473 msgid "A gexp (@pxref{G-Expressions}) specifying the hpcguix-web service configuration. The main items available in this spec are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27138 +#: guix-git/doc/guix.texi:27475 #, no-wrap msgid "@code{title-prefix} (default: @code{\"hpcguix | \"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27140 +#: guix-git/doc/guix.texi:27477 msgid "The page title prefix." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27141 +#: guix-git/doc/guix.texi:27478 #, no-wrap msgid "@code{guix-command} (default: @code{\"guix\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27143 +#: guix-git/doc/guix.texi:27480 msgid "The @command{guix} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27144 +#: guix-git/doc/guix.texi:27481 #, no-wrap msgid "@code{package-filter-proc} (default: @code{(const #t)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27146 +#: guix-git/doc/guix.texi:27483 msgid "A procedure specifying how to filter packages that are displayed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27147 +#: guix-git/doc/guix.texi:27484 #, no-wrap msgid "@code{package-page-extension-proc} (default: @code{(const '())})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27149 +#: guix-git/doc/guix.texi:27486 msgid "Extension package for @code{hpcguix-web}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27150 +#: guix-git/doc/guix.texi:27487 #, no-wrap msgid "@code{menu} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27152 +#: guix-git/doc/guix.texi:27489 msgid "Additional entry in page @code{menu}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27153 +#: guix-git/doc/guix.texi:27490 #, no-wrap msgid "@code{channels} (default: @code{%default-channels})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27155 +#: guix-git/doc/guix.texi:27492 msgid "List of channels from which the package list is built (@pxref{Channels})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27156 +#: guix-git/doc/guix.texi:27493 #, no-wrap msgid "@code{package-list-expiration} (default: @code{(* 12 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27159 +#: guix-git/doc/guix.texi:27496 msgid "The expiration time, in seconds, after which the package list is rebuilt from the latest instances of the given channels." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27164 +#: guix-git/doc/guix.texi:27501 msgid "See the hpcguix-web repository for a @uref{https://github.com/UMCUGenetics/hpcguix-web/blob/master/hpcweb-configuration.scm, complete example}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27165 +#: guix-git/doc/guix.texi:27502 #, no-wrap msgid "@code{package} (default: @code{hpcguix-web})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27167 +#: guix-git/doc/guix.texi:27504 msgid "The hpcguix-web package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27168 +#: guix-git/doc/guix.texi:27505 #, no-wrap msgid "@code{address} (default: @code{\"127.0.0.1\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27170 +#: guix-git/doc/guix.texi:27507 msgid "The IP address to listen to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27171 +#: guix-git/doc/guix.texi:27508 #, no-wrap msgid "@code{port} (default: @code{5000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27173 +#: guix-git/doc/guix.texi:27510 msgid "The port number to listen to." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27177 +#: guix-git/doc/guix.texi:27514 msgid "A typical hpcguix-web service declaration looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27186 +#: guix-git/doc/guix.texi:27523 #, no-wrap msgid "" "(service hpcguix-web-service-type\n" @@ -48519,39 +49142,39 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:27193 +#: guix-git/doc/guix.texi:27530 msgid "The hpcguix-web service periodically updates the package list it publishes by pulling channels from Git. To that end, it needs to access X.509 certificates so that it can authenticate Git servers when communicating over HTTPS, and it assumes that @file{/etc/ssl/certs} contains those certificates." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:27197 +#: guix-git/doc/guix.texi:27534 msgid "Thus, make sure to add @code{nss-certs} or another certificate package to the @code{packages} field of your configuration. @ref{X.509 Certificates}, for more information on X.509 certificates." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27199 guix-git/doc/guix.texi:27201 +#: guix-git/doc/guix.texi:27536 guix-git/doc/guix.texi:27538 #, no-wrap msgid "gmnisrv" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27204 +#: guix-git/doc/guix.texi:27541 msgid "The @uref{https://git.sr.ht/~sircmpwn/gmnisrv, gmnisrv} program is a simple @uref{https://gemini.circumlunar.space/, Gemini} protocol server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27205 +#: guix-git/doc/guix.texi:27542 #, no-wrap msgid "{Scheme Variable} gmnisrv-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27208 +#: guix-git/doc/guix.texi:27545 msgid "This is the type of the gmnisrv service, whose value should be a @code{gmnisrv-configuration} object, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27213 +#: guix-git/doc/guix.texi:27550 #, no-wrap msgid "" "(service gmnisrv-service-type\n" @@ -48560,68 +49183,68 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27216 +#: guix-git/doc/guix.texi:27553 #, no-wrap msgid "{Data Type} gmnisrv-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27218 +#: guix-git/doc/guix.texi:27555 msgid "Data type representing the configuration of gmnisrv." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27220 +#: guix-git/doc/guix.texi:27557 #, no-wrap msgid "@code{package} (default: @var{gmnisrv})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27222 +#: guix-git/doc/guix.texi:27559 msgid "Package object of the gmnisrv server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27223 +#: guix-git/doc/guix.texi:27560 #, no-wrap msgid "@code{config-file} (default: @code{%default-gmnisrv-config-file})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27229 +#: guix-git/doc/guix.texi:27566 msgid "File-like object of the gmnisrv configuration file to use. The default configuration listens on port 1965 and serves files from @file{/srv/gemini}. Certificates are stored in @file{/var/lib/gemini/certs}. For more information, run @command{man gmnisrv} and @command{man gmnisrv.ini}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27233 +#: guix-git/doc/guix.texi:27570 #, no-wrap msgid "Agate" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27235 +#: guix-git/doc/guix.texi:27572 #, no-wrap msgid "agate" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27240 +#: guix-git/doc/guix.texi:27577 msgid "The @uref{gemini://qwertqwefsday.eu/agate.gmi, Agate} (@uref{https://github.com/mbrubeck/agate, GitHub page over HTTPS}) program is a simple @uref{https://gemini.circumlunar.space/, Gemini} protocol server written in Rust." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27241 +#: guix-git/doc/guix.texi:27578 #, no-wrap msgid "{Scheme Variable} agate-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27244 +#: guix-git/doc/guix.texi:27581 msgid "This is the type of the agate service, whose value should be an @code{agate-service-type} object, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27251 +#: guix-git/doc/guix.texi:27588 #, no-wrap msgid "" "(service agate-service-type\n" @@ -48632,17 +49255,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27256 +#: guix-git/doc/guix.texi:27593 msgid "The example above represents the minimal tweaking necessary to get Agate up and running. Specifying the path to the certificate and key is always necessary, as the Gemini protocol requires TLS by default." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27259 +#: guix-git/doc/guix.texi:27596 msgid "To obtain a certificate and a key, you could, for example, use OpenSSL, running a command similar to the following example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:27263 +#: guix-git/doc/guix.texi:27600 #, no-wrap msgid "" "openssl req -x509 -newkey rsa:4096 -keyout key.rsa -out cert.pem \\\n" @@ -48650,220 +49273,220 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27268 +#: guix-git/doc/guix.texi:27605 msgid "Of course, you'll have to replace @i{example.com} with your own domain name, and then point the Agate configuration towards the path of the generated key and certificate." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27271 +#: guix-git/doc/guix.texi:27608 #, no-wrap msgid "{Data Type} agate-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27273 +#: guix-git/doc/guix.texi:27610 msgid "Data type representing the configuration of Agate." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27275 +#: guix-git/doc/guix.texi:27612 #, no-wrap msgid "@code{package} (default: @code{agate})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27277 +#: guix-git/doc/guix.texi:27614 msgid "The package object of the Agate server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27278 +#: guix-git/doc/guix.texi:27615 #, no-wrap msgid "@code{content} (default: @file{\"/srv/gemini\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27280 +#: guix-git/doc/guix.texi:27617 msgid "The directory from which Agate will serve files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27281 +#: guix-git/doc/guix.texi:27618 #, no-wrap msgid "@code{cert} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27284 +#: guix-git/doc/guix.texi:27621 msgid "The path to the TLS certificate PEM file to be used for encrypted connections. Must be filled in with a value from the user." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27285 guix-git/doc/guix.texi:27721 +#: guix-git/doc/guix.texi:27622 guix-git/doc/guix.texi:28058 #, no-wrap msgid "@code{key} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27288 +#: guix-git/doc/guix.texi:27625 msgid "The path to the PKCS8 private key file to be used for encrypted connections. Must be filled in with a value from the user." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27289 +#: guix-git/doc/guix.texi:27626 #, no-wrap msgid "@code{addr} (default: @code{'(\"0.0.0.0:1965\" \"[::]:1965\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27291 +#: guix-git/doc/guix.texi:27628 msgid "A list of the addresses to listen on." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27294 +#: guix-git/doc/guix.texi:27631 msgid "The domain name of this Gemini server. Optional." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27295 +#: guix-git/doc/guix.texi:27632 #, no-wrap msgid "@code{lang} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27297 +#: guix-git/doc/guix.texi:27634 msgid "RFC 4646 language code(s) for text/gemini documents. Optional." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27298 +#: guix-git/doc/guix.texi:27635 #, no-wrap msgid "@code{silent?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27300 +#: guix-git/doc/guix.texi:27637 msgid "Set to @code{#t} to disable logging output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27301 +#: guix-git/doc/guix.texi:27638 #, no-wrap msgid "@code{serve-secret?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27304 +#: guix-git/doc/guix.texi:27641 msgid "Set to @code{#t} to serve secret files (files/directories starting with a dot)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27305 +#: guix-git/doc/guix.texi:27642 #, no-wrap msgid "@code{log-ip?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27307 +#: guix-git/doc/guix.texi:27644 msgid "Whether or not to output IP addresses when logging." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27308 +#: guix-git/doc/guix.texi:27645 #, no-wrap msgid "@code{user} (default: @code{\"agate\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27310 +#: guix-git/doc/guix.texi:27647 msgid "Owner of the @code{agate} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27311 +#: guix-git/doc/guix.texi:27648 #, no-wrap msgid "@code{group} (default: @code{\"agate\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27313 +#: guix-git/doc/guix.texi:27650 msgid "Owner's group of the @code{agate} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27314 +#: guix-git/doc/guix.texi:27651 #, no-wrap msgid "@code{log-file} (default: @file{\"/var/log/agate.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27316 +#: guix-git/doc/guix.texi:27653 msgid "The file which should store the logging output of Agate." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27323 +#: guix-git/doc/guix.texi:27660 #, no-wrap msgid "Web" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27324 +#: guix-git/doc/guix.texi:27661 #, no-wrap msgid "HTTP, HTTPS" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27325 +#: guix-git/doc/guix.texi:27662 #, no-wrap msgid "Let's Encrypt" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27326 +#: guix-git/doc/guix.texi:27663 #, no-wrap msgid "TLS certificates" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27333 +#: guix-git/doc/guix.texi:27670 msgid "The @code{(gnu services certbot)} module provides a service to automatically obtain a valid TLS certificate from the Let's Encrypt certificate authority. These certificates can then be used to serve content securely over HTTPS or other TLS-based protocols, with the knowledge that the client will be able to verify the server's authenticity." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27345 +#: guix-git/doc/guix.texi:27682 msgid "@url{https://letsencrypt.org/, Let's Encrypt} provides the @code{certbot} tool to automate the certification process. This tool first securely generates a key on the server. It then makes a request to the Let's Encrypt certificate authority (CA) to sign the key. The CA checks that the request originates from the host in question by using a challenge-response protocol, requiring the server to provide its response over HTTP@. If that protocol completes successfully, the CA signs the key, resulting in a certificate. That certificate is valid for a limited period of time, and therefore to continue to provide TLS services, the server needs to periodically ask the CA to renew its signature." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27352 +#: guix-git/doc/guix.texi:27689 msgid "The certbot service automates this process: the initial key generation, the initial certification request to the Let's Encrypt service, the web server challenge/response integration, writing the certificate to disk, the automated periodic renewals, and the deployment tasks associated with the renewal (e.g.@: reloading services, copying keys with different permissions)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27358 +#: guix-git/doc/guix.texi:27695 msgid "Certbot is run twice a day, at a random minute within the hour. It won't do anything until your certificates are due for renewal or revoked, but running it regularly would give your service a chance of staying online in case a Let's Encrypt-initiated revocation happened for some reason." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27362 +#: guix-git/doc/guix.texi:27699 msgid "By using this service, you agree to the ACME Subscriber Agreement, which can be found there: @url{https://acme-v01.api.letsencrypt.org/directory}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27363 +#: guix-git/doc/guix.texi:27700 #, no-wrap msgid "{Scheme Variable} certbot-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27366 +#: guix-git/doc/guix.texi:27703 msgid "A service type for the @code{certbot} Let's Encrypt client. Its value must be a @code{certbot-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27373 +#: guix-git/doc/guix.texi:27710 #, no-wrap msgid "" "(define %nginx-deploy-hook\n" @@ -48875,7 +49498,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27384 +#: guix-git/doc/guix.texi:27721 #, no-wrap msgid "" "(service certbot-service-type\n" @@ -48891,241 +49514,241 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27387 +#: guix-git/doc/guix.texi:27724 msgid "See below for details about @code{certbot-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27389 +#: guix-git/doc/guix.texi:27726 #, no-wrap msgid "{Data Type} certbot-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27392 +#: guix-git/doc/guix.texi:27729 msgid "Data type representing the configuration of the @code{certbot} service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27394 +#: guix-git/doc/guix.texi:27731 #, no-wrap msgid "@code{package} (default: @code{certbot})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27396 +#: guix-git/doc/guix.texi:27733 msgid "The certbot package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27397 +#: guix-git/doc/guix.texi:27734 #, no-wrap msgid "@code{webroot} (default: @code{/var/www})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27400 +#: guix-git/doc/guix.texi:27737 msgid "The directory from which to serve the Let's Encrypt challenge/response files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27401 +#: guix-git/doc/guix.texi:27738 #, no-wrap msgid "@code{certificates} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27405 +#: guix-git/doc/guix.texi:27742 msgid "A list of @code{certificates-configuration}s for which to generate certificates and request signatures. Each certificate has a @code{name} and several @code{domains}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27406 +#: guix-git/doc/guix.texi:27743 #, no-wrap msgid "@code{email} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27410 +#: guix-git/doc/guix.texi:27747 msgid "Optional email address used for registration and recovery contact. Setting this is encouraged as it allows you to receive important notifications about the account and issued certificates." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27411 guix-git/doc/guix.texi:29158 +#: guix-git/doc/guix.texi:27748 guix-git/doc/guix.texi:29495 #, no-wrap msgid "@code{server} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27414 +#: guix-git/doc/guix.texi:27751 msgid "Optional URL of ACME server. Setting this overrides certbot's default, which is the Let's Encrypt server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27415 +#: guix-git/doc/guix.texi:27752 #, no-wrap msgid "@code{rsa-key-size} (default: @code{2048})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27417 +#: guix-git/doc/guix.texi:27754 msgid "Size of the RSA key." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27418 +#: guix-git/doc/guix.texi:27755 #, no-wrap msgid "@code{default-location} (default: @i{see below})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27427 +#: guix-git/doc/guix.texi:27764 msgid "The default @code{nginx-location-configuration}. Because @code{certbot} needs to be able to serve challenges and responses, it needs to be able to run a web server. It does so by extending the @code{nginx} web service with an @code{nginx-server-configuration} listening on the @var{domains} on port 80, and which has a @code{nginx-location-configuration} for the @code{/.well-known/} URI path subspace used by Let's Encrypt. @xref{Web Services}, for more on these nginx configuration data types." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27431 +#: guix-git/doc/guix.texi:27768 msgid "Requests to other URL paths will be matched by the @code{default-location}, which if present is added to all @code{nginx-server-configuration}s." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27435 +#: guix-git/doc/guix.texi:27772 msgid "By default, the @code{default-location} will issue a redirect from @code{http://@var{domain}/...} to @code{https://@var{domain}/...}, leaving you to define what to serve on your site via @code{https}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27437 +#: guix-git/doc/guix.texi:27774 msgid "Pass @code{#f} to not issue a default location." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27440 +#: guix-git/doc/guix.texi:27777 #, no-wrap msgid "{Data Type} certificate-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27443 +#: guix-git/doc/guix.texi:27780 msgid "Data type representing the configuration of a certificate. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27445 +#: guix-git/doc/guix.texi:27782 #, no-wrap msgid "@code{name} (default: @i{see below})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27449 +#: guix-git/doc/guix.texi:27786 msgid "This name is used by Certbot for housekeeping and in file paths; it doesn't affect the content of the certificate itself. To see certificate names, run @code{certbot certificates}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27451 +#: guix-git/doc/guix.texi:27788 msgid "Its default is the first provided domain." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27452 +#: guix-git/doc/guix.texi:27789 #, no-wrap msgid "@code{domains} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27455 +#: guix-git/doc/guix.texi:27792 msgid "The first domain provided will be the subject CN of the certificate, and all domains will be Subject Alternative Names on the certificate." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27456 +#: guix-git/doc/guix.texi:27793 #, no-wrap msgid "@code{challenge} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27463 +#: guix-git/doc/guix.texi:27800 msgid "The challenge type that has to be run by certbot. If @code{#f} is specified, default to the HTTP challenge. If a value is specified, defaults to the manual plugin (see @code{authentication-hook}, @code{cleanup-hook} and the documentation at @url{https://certbot.eff.org/docs/using.html#hooks}), and gives Let's Encrypt permission to log the public IP address of the requesting machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27464 +#: guix-git/doc/guix.texi:27801 #, no-wrap msgid "@code{csr} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27471 +#: guix-git/doc/guix.texi:27808 msgid "File name of Certificate Signing Request (CSR) in DER or PEM format. If @code{#f} is specified, this argument will not be passed to certbot. If a value is specified, certbot will use it to obtain a certificate, instead of using a self-generated CSR. The domain-name(s) mentioned in @code{domains}, must be consistent with the domain-name(s) mentioned in CSR file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27472 +#: guix-git/doc/guix.texi:27809 #, no-wrap msgid "@code{authentication-hook} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27478 +#: guix-git/doc/guix.texi:27815 msgid "Command to be run in a shell once for each certificate challenge to be answered. For this command, the shell variable @code{$CERTBOT_DOMAIN} will contain the domain being authenticated, @code{$CERTBOT_VALIDATION} contains the validation string and @code{$CERTBOT_TOKEN} contains the file name of the resource requested when performing an HTTP-01 challenge." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27479 +#: guix-git/doc/guix.texi:27816 #, no-wrap msgid "@code{cleanup-hook} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27485 +#: guix-git/doc/guix.texi:27822 msgid "Command to be run in a shell once for each certificate challenge that have been answered by the @code{auth-hook}. For this command, the shell variables available in the @code{auth-hook} script are still available, and additionally @code{$CERTBOT_AUTH_OUTPUT} will contain the standard output of the @code{auth-hook} script." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27486 +#: guix-git/doc/guix.texi:27823 #, no-wrap msgid "@code{deploy-hook} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27494 +#: guix-git/doc/guix.texi:27831 msgid "Command to be run in a shell once for each successfully issued certificate. For this command, the shell variable @code{$RENEWED_LINEAGE} will point to the config live subdirectory (for example, @samp{\"/etc/letsencrypt/live/example.com\"}) containing the new certificates and keys; the shell variable @code{$RENEWED_DOMAINS} will contain a space-delimited list of renewed certificate domains (for example, @samp{\"example.com www.example.com\"}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27501 +#: guix-git/doc/guix.texi:27838 msgid "For each @code{certificate-configuration}, the certificate is saved to @code{/etc/letsencrypt/live/@var{name}/fullchain.pem} and the key is saved to @code{/etc/letsencrypt/live/@var{name}/privkey.pem}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27503 +#: guix-git/doc/guix.texi:27840 #, no-wrap msgid "DNS (domain name system)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27504 +#: guix-git/doc/guix.texi:27841 #, no-wrap msgid "domain name system (DNS)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27512 +#: guix-git/doc/guix.texi:27849 msgid "The @code{(gnu services dns)} module provides services related to the @dfn{domain name system} (DNS). It provides a server service for hosting an @emph{authoritative} DNS server for multiple zones, slave or master. This service uses @uref{https://www.knot-dns.cz/, Knot DNS}. And also a caching and forwarding DNS server for the LAN, which uses @uref{http://www.thekelleys.org.uk/dnsmasq/doc.html, dnsmasq}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27513 +#: guix-git/doc/guix.texi:27850 #, no-wrap msgid "Knot Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27517 +#: guix-git/doc/guix.texi:27854 msgid "An example configuration of an authoritative server for two zones, one master and one slave, is:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27524 +#: guix-git/doc/guix.texi:27861 #, no-wrap msgid "" "(define-zone-entries example.org.zone\n" @@ -49137,7 +49760,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27531 +#: guix-git/doc/guix.texi:27868 #, no-wrap msgid "" "(define master-zone\n" @@ -49150,7 +49773,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27537 +#: guix-git/doc/guix.texi:27874 #, no-wrap msgid "" "(define slave-zone\n" @@ -49162,7 +49785,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27542 +#: guix-git/doc/guix.texi:27879 #, no-wrap msgid "" "(define plop-master\n" @@ -49173,7 +49796,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27551 +#: guix-git/doc/guix.texi:27888 #, no-wrap msgid "" "(operating-system\n" @@ -49187,857 +49810,857 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27553 +#: guix-git/doc/guix.texi:27890 #, no-wrap msgid "{Scheme Variable} knot-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27555 +#: guix-git/doc/guix.texi:27892 msgid "This is the type for the Knot DNS server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27563 +#: guix-git/doc/guix.texi:27900 msgid "Knot DNS is an authoritative DNS server, meaning that it can serve multiple zones, that is to say domain names you would buy from a registrar. This server is not a resolver, meaning that it can only resolve names for which it is authoritative. This server can be configured to serve zones as a master server or a slave server as a per-zone basis. Slave zones will get their data from masters, and will serve it as an authoritative server. From the point of view of a resolver, there is no difference between master and slave." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27565 +#: guix-git/doc/guix.texi:27902 msgid "The following data types are used to configure the Knot DNS server:" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27567 +#: guix-git/doc/guix.texi:27904 #, no-wrap msgid "{Data Type} knot-key-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27570 +#: guix-git/doc/guix.texi:27907 msgid "Data type representing a key. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27572 guix-git/doc/guix.texi:27592 -#: guix-git/doc/guix.texi:27707 guix-git/doc/guix.texi:27733 -#: guix-git/doc/guix.texi:27768 +#: guix-git/doc/guix.texi:27909 guix-git/doc/guix.texi:27929 +#: guix-git/doc/guix.texi:28044 guix-git/doc/guix.texi:28070 +#: guix-git/doc/guix.texi:28105 #, no-wrap msgid "@code{id} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27575 guix-git/doc/guix.texi:27595 +#: guix-git/doc/guix.texi:27912 guix-git/doc/guix.texi:27932 msgid "An identifier for other configuration fields to refer to this key. IDs must be unique and must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27576 +#: guix-git/doc/guix.texi:27913 #, no-wrap msgid "@code{algorithm} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27580 +#: guix-git/doc/guix.texi:27917 msgid "The algorithm to use. Choose between @code{#f}, @code{'hmac-md5}, @code{'hmac-sha1}, @code{'hmac-sha224}, @code{'hmac-sha256}, @code{'hmac-sha384} and @code{'hmac-sha512}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27581 +#: guix-git/doc/guix.texi:27918 #, no-wrap msgid "@code{secret} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27583 +#: guix-git/doc/guix.texi:27920 msgid "The secret key itself." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27587 +#: guix-git/doc/guix.texi:27924 #, no-wrap msgid "{Data Type} knot-acl-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27590 +#: guix-git/doc/guix.texi:27927 msgid "Data type representing an Access Control List (ACL) configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27596 guix-git/doc/guix.texi:27711 +#: guix-git/doc/guix.texi:27933 guix-git/doc/guix.texi:28048 #, no-wrap msgid "@code{address} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27600 +#: guix-git/doc/guix.texi:27937 msgid "An ordered list of IP addresses, network subnets, or network ranges represented with strings. The query must match one of them. Empty value means that address match is not required." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27601 +#: guix-git/doc/guix.texi:27938 #, no-wrap msgid "@code{key} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27605 +#: guix-git/doc/guix.texi:27942 msgid "An ordered list of references to keys represented with strings. The string must match a key ID defined in a @code{knot-key-configuration}. No key means that a key is not require to match that ACL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27606 +#: guix-git/doc/guix.texi:27943 #, no-wrap msgid "@code{action} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27610 +#: guix-git/doc/guix.texi:27947 msgid "An ordered list of actions that are permitted or forbidden by this ACL@. Possible values are lists of zero or more elements from @code{'transfer}, @code{'notify} and @code{'update}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27611 +#: guix-git/doc/guix.texi:27948 #, no-wrap msgid "@code{deny?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27614 +#: guix-git/doc/guix.texi:27951 msgid "When true, the ACL defines restrictions. Listed actions are forbidden. When false, listed actions are allowed." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27618 +#: guix-git/doc/guix.texi:27955 #, no-wrap msgid "{Data Type} zone-entry" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27621 +#: guix-git/doc/guix.texi:27958 msgid "Data type representing a record entry in a zone file. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27623 +#: guix-git/doc/guix.texi:27960 #, no-wrap msgid "@code{name} (default: @code{\"@@\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27629 +#: guix-git/doc/guix.texi:27966 msgid "The name of the record. @code{\"@@\"} refers to the origin of the zone. Names are relative to the origin of the zone. For example, in the @code{example.org} zone, @code{\"ns.example.org\"} actually refers to @code{ns.example.org.example.org}. Names ending with a dot are absolute, which means that @code{\"ns.example.org.\"} refers to @code{ns.example.org}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27630 +#: guix-git/doc/guix.texi:27967 #, no-wrap msgid "@code{ttl} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27632 +#: guix-git/doc/guix.texi:27969 msgid "The Time-To-Live (TTL) of this record. If not set, the default TTL is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27633 +#: guix-git/doc/guix.texi:27970 #, no-wrap msgid "@code{class} (default: @code{\"IN\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27636 +#: guix-git/doc/guix.texi:27973 msgid "The class of the record. Knot currently supports only @code{\"IN\"} and partially @code{\"CH\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27637 +#: guix-git/doc/guix.texi:27974 #, no-wrap msgid "@code{type} (default: @code{\"A\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27641 +#: guix-git/doc/guix.texi:27978 msgid "The type of the record. Common types include A (IPv4 address), AAAA (IPv6 address), NS (Name Server) and MX (Mail eXchange). Many other types are defined." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27642 +#: guix-git/doc/guix.texi:27979 #, no-wrap msgid "@code{data} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27646 +#: guix-git/doc/guix.texi:27983 msgid "The data contained in the record. For instance an IP address associated with an A record, or a domain name associated with an NS record. Remember that domain names are relative to the origin unless they end with a dot." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27650 +#: guix-git/doc/guix.texi:27987 #, no-wrap msgid "{Data Type} zone-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27653 +#: guix-git/doc/guix.texi:27990 msgid "Data type representing the content of a zone file. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27662 +#: guix-git/doc/guix.texi:27999 msgid "The list of entries. The SOA record is taken care of, so you don't need to put it in the list of entries. This list should probably contain an entry for your primary authoritative DNS server. Other than using a list of entries directly, you can use @code{define-zone-entries} to define a object containing the list of entries more easily, that you can later pass to the @code{entries} field of the @code{zone-file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27663 +#: guix-git/doc/guix.texi:28000 #, no-wrap msgid "@code{origin} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27665 +#: guix-git/doc/guix.texi:28002 msgid "The name of your zone. This parameter cannot be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27666 +#: guix-git/doc/guix.texi:28003 #, no-wrap msgid "@code{ns} (default: @code{\"ns\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27671 +#: guix-git/doc/guix.texi:28008 msgid "The domain of your primary authoritative DNS server. The name is relative to the origin, unless it ends with a dot. It is mandatory that this primary DNS server corresponds to an NS record in the zone and that it is associated to an IP address in the list of entries." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27672 +#: guix-git/doc/guix.texi:28009 #, no-wrap msgid "@code{mail} (default: @code{\"hostmaster\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27675 +#: guix-git/doc/guix.texi:28012 msgid "An email address people can contact you at, as the owner of the zone. This is translated as @code{@@}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27676 +#: guix-git/doc/guix.texi:28013 #, no-wrap msgid "@code{serial} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27680 +#: guix-git/doc/guix.texi:28017 msgid "The serial number of the zone. As this is used to keep track of changes by both slaves and resolvers, it is mandatory that it @emph{never} decreases. Always increment it when you make a change in your zone." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27681 +#: guix-git/doc/guix.texi:28018 #, no-wrap msgid "@code{refresh} (default: @code{(* 2 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27685 +#: guix-git/doc/guix.texi:28022 msgid "The frequency at which slaves will do a zone transfer. This value is a number of seconds. It can be computed by multiplications or with @code{(string->duration)}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27686 +#: guix-git/doc/guix.texi:28023 #, no-wrap msgid "@code{retry} (default: @code{(* 15 60)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27689 +#: guix-git/doc/guix.texi:28026 msgid "The period after which a slave will retry to contact its master when it fails to do so a first time." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27690 +#: guix-git/doc/guix.texi:28027 #, no-wrap msgid "@code{expiry} (default: @code{(* 14 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27694 +#: guix-git/doc/guix.texi:28031 msgid "Default TTL of records. Existing records are considered correct for at most this amount of time. After this period, resolvers will invalidate their cache and check again that it still exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27695 +#: guix-git/doc/guix.texi:28032 #, no-wrap msgid "@code{nx} (default: @code{3600})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27698 +#: guix-git/doc/guix.texi:28035 msgid "Default TTL of inexistent records. This delay is usually short because you want your new domains to reach everyone quickly." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27702 +#: guix-git/doc/guix.texi:28039 #, no-wrap msgid "{Data Type} knot-remote-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27705 +#: guix-git/doc/guix.texi:28042 msgid "Data type representing a remote configuration. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27710 +#: guix-git/doc/guix.texi:28047 msgid "An identifier for other configuration fields to refer to this remote. IDs must be unique and must not be empty." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27715 +#: guix-git/doc/guix.texi:28052 msgid "An ordered list of destination IP addresses. Addresses are tried in sequence. An optional port can be given with the @@ separator. For instance: @code{(list \"1.2.3.4\" \"2.3.4.5@@53\")}. Default port is 53." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27716 +#: guix-git/doc/guix.texi:28053 #, no-wrap msgid "@code{via} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27720 +#: guix-git/doc/guix.texi:28057 msgid "An ordered list of source IP addresses. An empty list will have Knot choose an appropriate source IP@. An optional port can be given with the @@ separator. The default is to choose at random." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27724 +#: guix-git/doc/guix.texi:28061 msgid "A reference to a key, that is a string containing the identifier of a key defined in a @code{knot-key-configuration} field." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27728 +#: guix-git/doc/guix.texi:28065 #, no-wrap msgid "{Data Type} knot-keystore-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27731 +#: guix-git/doc/guix.texi:28068 msgid "Data type representing a keystore to hold dnssec keys. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27735 +#: guix-git/doc/guix.texi:28072 msgid "The id of the keystore. It must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27736 +#: guix-git/doc/guix.texi:28073 #, no-wrap msgid "@code{backend} (default: @code{'pem})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27738 +#: guix-git/doc/guix.texi:28075 msgid "The backend to store the keys in. Can be @code{'pem} or @code{'pkcs11}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27739 +#: guix-git/doc/guix.texi:28076 #, no-wrap msgid "@code{config} (default: @code{\"/var/lib/knot/keys/keys\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27743 +#: guix-git/doc/guix.texi:28080 msgid "The configuration string of the backend. An example for the PKCS#11 is: @code{\"pkcs11:token=knot;pin-value=1234 /gnu/store/.../lib/pkcs11/libsofthsm2.so\"}. For the pem backend, the string represents a path in the file system." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27747 +#: guix-git/doc/guix.texi:28084 #, no-wrap msgid "{Data Type} knot-policy-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27751 +#: guix-git/doc/guix.texi:28088 msgid "Data type representing a dnssec policy. Knot DNS is able to automatically sign your zones. It can either generate and manage your keys automatically or use keys that you generate." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27758 +#: guix-git/doc/guix.texi:28095 msgid "Dnssec is usually implemented using two keys: a Key Signing Key (KSK) that is used to sign the second, and a Zone Signing Key (ZSK) that is used to sign the zone. In order to be trusted, the KSK needs to be present in the parent zone (usually a top-level domain). If your registrar supports dnssec, you will have to send them your KSK's hash so they can add a DS record in their zone. This is not automated and need to be done each time you change your KSK." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27764 +#: guix-git/doc/guix.texi:28101 msgid "The policy also defines the lifetime of keys. Usually, ZSK can be changed easily and use weaker cryptographic functions (they use lower parameters) in order to sign records quickly, so they are changed often. The KSK however requires manual interaction with the registrar, so they are changed less often and use stronger parameters because they sign only one record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27766 +#: guix-git/doc/guix.texi:28103 msgid "This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27770 +#: guix-git/doc/guix.texi:28107 msgid "The id of the policy. It must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27771 +#: guix-git/doc/guix.texi:28108 #, no-wrap msgid "@code{keystore} (default: @code{\"default\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27776 +#: guix-git/doc/guix.texi:28113 msgid "A reference to a keystore, that is a string containing the identifier of a keystore defined in a @code{knot-keystore-configuration} field. The @code{\"default\"} identifier means the default keystore (a kasp database that was setup by this service)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27777 +#: guix-git/doc/guix.texi:28114 #, no-wrap msgid "@code{manual?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27779 +#: guix-git/doc/guix.texi:28116 msgid "Whether the key management is manual or automatic." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27780 +#: guix-git/doc/guix.texi:28117 #, no-wrap msgid "@code{single-type-signing?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27782 +#: guix-git/doc/guix.texi:28119 msgid "When @code{#t}, use the Single-Type Signing Scheme." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27783 +#: guix-git/doc/guix.texi:28120 #, no-wrap msgid "@code{algorithm} (default: @code{\"ecdsap256sha256\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27785 +#: guix-git/doc/guix.texi:28122 msgid "An algorithm of signing keys and issued signatures." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27786 +#: guix-git/doc/guix.texi:28123 #, no-wrap msgid "@code{ksk-size} (default: @code{256})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27789 +#: guix-git/doc/guix.texi:28126 msgid "The length of the KSK@. Note that this value is correct for the default algorithm, but would be unsecure for other algorithms." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27790 +#: guix-git/doc/guix.texi:28127 #, no-wrap msgid "@code{zsk-size} (default: @code{256})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27793 +#: guix-git/doc/guix.texi:28130 msgid "The length of the ZSK@. Note that this value is correct for the default algorithm, but would be unsecure for other algorithms." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27794 +#: guix-git/doc/guix.texi:28131 #, no-wrap msgid "@code{dnskey-ttl} (default: @code{'default})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27797 +#: guix-git/doc/guix.texi:28134 msgid "The TTL value for DNSKEY records added into zone apex. The special @code{'default} value means same as the zone SOA TTL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27798 +#: guix-git/doc/guix.texi:28135 #, no-wrap msgid "@code{zsk-lifetime} (default: @code{(* 30 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27800 +#: guix-git/doc/guix.texi:28137 msgid "The period between ZSK publication and the next rollover initiation." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27801 +#: guix-git/doc/guix.texi:28138 #, no-wrap msgid "@code{propagation-delay} (default: @code{(* 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27804 +#: guix-git/doc/guix.texi:28141 msgid "An extra delay added for each key rollover step. This value should be high enough to cover propagation of data from the master server to all slaves." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27805 +#: guix-git/doc/guix.texi:28142 #, no-wrap msgid "@code{rrsig-lifetime} (default: @code{(* 14 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27807 +#: guix-git/doc/guix.texi:28144 msgid "A validity period of newly issued signatures." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27808 +#: guix-git/doc/guix.texi:28145 #, no-wrap msgid "@code{rrsig-refresh} (default: @code{(* 7 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27810 +#: guix-git/doc/guix.texi:28147 msgid "A period how long before a signature expiration the signature will be refreshed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27811 +#: guix-git/doc/guix.texi:28148 #, no-wrap msgid "@code{nsec3?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27813 +#: guix-git/doc/guix.texi:28150 msgid "When @code{#t}, NSEC3 will be used instead of NSEC." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27814 +#: guix-git/doc/guix.texi:28151 #, no-wrap msgid "@code{nsec3-iterations} (default: @code{5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27816 +#: guix-git/doc/guix.texi:28153 msgid "The number of additional times the hashing is performed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27817 +#: guix-git/doc/guix.texi:28154 #, no-wrap msgid "@code{nsec3-salt-length} (default: @code{8})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27820 +#: guix-git/doc/guix.texi:28157 msgid "The length of a salt field in octets, which is appended to the original owner name before hashing." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27821 +#: guix-git/doc/guix.texi:28158 #, no-wrap msgid "@code{nsec3-salt-lifetime} (default: @code{(* 30 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27823 +#: guix-git/doc/guix.texi:28160 msgid "The validity period of newly issued salt field." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27827 +#: guix-git/doc/guix.texi:28164 #, no-wrap msgid "{Data Type} knot-zone-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27830 +#: guix-git/doc/guix.texi:28167 msgid "Data type representing a zone served by Knot. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27832 +#: guix-git/doc/guix.texi:28169 #, no-wrap msgid "@code{domain} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27834 +#: guix-git/doc/guix.texi:28171 msgid "The domain served by this configuration. It must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27835 +#: guix-git/doc/guix.texi:28172 #, no-wrap msgid "@code{file} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27838 +#: guix-git/doc/guix.texi:28175 msgid "The file where this zone is saved. This parameter is ignored by master zones. Empty means default location that depends on the domain name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27839 +#: guix-git/doc/guix.texi:28176 #, no-wrap msgid "@code{zone} (default: @code{(zone-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27842 +#: guix-git/doc/guix.texi:28179 msgid "The content of the zone file. This parameter is ignored by slave zones. It must contain a zone-file record." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27843 +#: guix-git/doc/guix.texi:28180 #, no-wrap msgid "@code{master} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27846 +#: guix-git/doc/guix.texi:28183 msgid "A list of master remotes. When empty, this zone is a master. When set, this zone is a slave. This is a list of remotes identifiers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27847 +#: guix-git/doc/guix.texi:28184 #, no-wrap msgid "@code{ddns-master} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27850 +#: guix-git/doc/guix.texi:28187 msgid "The main master. When empty, it defaults to the first master in the list of masters." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27851 +#: guix-git/doc/guix.texi:28188 #, no-wrap msgid "@code{notify} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27853 +#: guix-git/doc/guix.texi:28190 msgid "A list of slave remote identifiers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27854 +#: guix-git/doc/guix.texi:28191 #, no-wrap msgid "@code{acl} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27856 +#: guix-git/doc/guix.texi:28193 msgid "A list of acl identifiers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27857 +#: guix-git/doc/guix.texi:28194 #, no-wrap msgid "@code{semantic-checks?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27859 +#: guix-git/doc/guix.texi:28196 msgid "When set, this adds more semantic checks to the zone." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27860 +#: guix-git/doc/guix.texi:28197 #, no-wrap msgid "@code{zonefile-sync} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27863 +#: guix-git/doc/guix.texi:28200 msgid "The delay between a modification in memory and on disk. 0 means immediate synchronization." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27864 +#: guix-git/doc/guix.texi:28201 #, no-wrap msgid "@code{zonefile-load} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27867 +#: guix-git/doc/guix.texi:28204 msgid "The way the zone file contents are applied during zone load. Possible values are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27869 +#: guix-git/doc/guix.texi:28206 #, no-wrap msgid "@code{#f} for using the default value from Knot," msgstr "" #. type: item -#: guix-git/doc/guix.texi:27870 +#: guix-git/doc/guix.texi:28207 #, no-wrap msgid "@code{'none} for not using the zone file at all," msgstr "" #. type: item -#: guix-git/doc/guix.texi:27871 +#: guix-git/doc/guix.texi:28208 #, no-wrap msgid "@code{'difference} for computing the difference between already available" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:27873 +#: guix-git/doc/guix.texi:28210 msgid "contents and zone contents and applying it to the current zone contents," msgstr "" #. type: item -#: guix-git/doc/guix.texi:27873 +#: guix-git/doc/guix.texi:28210 #, no-wrap msgid "@code{'difference-no-serial} for the same as @code{'difference}, but" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:27876 +#: guix-git/doc/guix.texi:28213 msgid "ignoring the SOA serial in the zone file, while the server takes care of it automatically." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27876 +#: guix-git/doc/guix.texi:28213 #, no-wrap msgid "@code{'whole} for loading zone contents from the zone file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27879 +#: guix-git/doc/guix.texi:28216 #, no-wrap msgid "@code{journal-content} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27884 +#: guix-git/doc/guix.texi:28221 msgid "The way the journal is used to store zone and its changes. Possible values are @code{'none} to not use it at all, @code{'changes} to store changes and @code{'all} to store contents. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27885 +#: guix-git/doc/guix.texi:28222 #, no-wrap msgid "@code{max-journal-usage} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27888 +#: guix-git/doc/guix.texi:28225 msgid "The maximum size for the journal on disk. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27889 +#: guix-git/doc/guix.texi:28226 #, no-wrap msgid "@code{max-journal-depth} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27892 +#: guix-git/doc/guix.texi:28229 msgid "The maximum size of the history. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27893 +#: guix-git/doc/guix.texi:28230 #, no-wrap msgid "@code{max-zone-size} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27897 +#: guix-git/doc/guix.texi:28234 msgid "The maximum size of the zone file. This limit is enforced for incoming transfer and updates. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27898 +#: guix-git/doc/guix.texi:28235 #, no-wrap msgid "@code{dnssec-policy} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27902 +#: guix-git/doc/guix.texi:28239 msgid "A reference to a @code{knot-policy-configuration} record, or the special name @code{\"default\"}. If the value is @code{#f}, there is no dnssec signing on this zone." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27903 +#: guix-git/doc/guix.texi:28240 #, no-wrap msgid "@code{serial-policy} (default: @code{'increment})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27905 +#: guix-git/doc/guix.texi:28242 msgid "A policy between @code{'increment} and @code{'unixtime}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27909 +#: guix-git/doc/guix.texi:28246 #, no-wrap msgid "{Data Type} knot-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27912 +#: guix-git/doc/guix.texi:28249 msgid "Data type representing the Knot configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27914 +#: guix-git/doc/guix.texi:28251 #, no-wrap msgid "@code{knot} (default: @code{knot})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27916 +#: guix-git/doc/guix.texi:28253 msgid "The Knot package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27917 +#: guix-git/doc/guix.texi:28254 #, no-wrap msgid "@code{run-directory} (default: @code{\"/var/run/knot\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27919 +#: guix-git/doc/guix.texi:28256 msgid "The run directory. This directory will be used for pid file and sockets." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27920 +#: guix-git/doc/guix.texi:28257 #, no-wrap msgid "@code{includes} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27923 +#: guix-git/doc/guix.texi:28260 msgid "A list of strings or file-like objects denoting other files that must be included at the top of the configuration file." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27924 +#: guix-git/doc/guix.texi:28261 #, no-wrap msgid "secrets, Knot service" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27930 +#: guix-git/doc/guix.texi:28267 msgid "This can be used to manage secrets out-of-band. For example, secret keys may be stored in an out-of-band file not managed by Guix, and thus not visible in @file{/gnu/store}---e.g., you could store secret key configuration in @file{/etc/knot/secrets.conf} and add this file to the @code{includes} list." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27935 +#: guix-git/doc/guix.texi:28272 msgid "One can generate a secret tsig key (for nsupdate and zone transfers with the keymgr command from the knot package. Note that the package is not automatically installed by the service. The following example shows how to generate a new tsig key:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:27939 +#: guix-git/doc/guix.texi:28276 #, no-wrap msgid "" "keymgr -t mysecret > /etc/knot/secrets.conf\n" @@ -50045,106 +50668,106 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27945 +#: guix-git/doc/guix.texi:28282 msgid "Also note that the generated key will be named @var{mysecret}, so it is the name that needs to be used in the @var{key} field of the @code{knot-acl-configuration} record and in other places that need to refer to that key." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27947 +#: guix-git/doc/guix.texi:28284 msgid "It can also be used to add configuration not supported by this interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27948 +#: guix-git/doc/guix.texi:28285 #, no-wrap msgid "@code{listen-v4} (default: @code{\"0.0.0.0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27950 guix-git/doc/guix.texi:27953 +#: guix-git/doc/guix.texi:28287 guix-git/doc/guix.texi:28290 msgid "An ip address on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27951 +#: guix-git/doc/guix.texi:28288 #, no-wrap msgid "@code{listen-v6} (default: @code{\"::\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27954 +#: guix-git/doc/guix.texi:28291 #, no-wrap msgid "@code{listen-port} (default: @code{53})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27956 +#: guix-git/doc/guix.texi:28293 msgid "A port on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27957 +#: guix-git/doc/guix.texi:28294 #, no-wrap msgid "@code{keys} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27959 +#: guix-git/doc/guix.texi:28296 msgid "The list of knot-key-configuration used by this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27960 +#: guix-git/doc/guix.texi:28297 #, no-wrap msgid "@code{acls} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27962 +#: guix-git/doc/guix.texi:28299 msgid "The list of knot-acl-configuration used by this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27963 +#: guix-git/doc/guix.texi:28300 #, no-wrap msgid "@code{remotes} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27965 +#: guix-git/doc/guix.texi:28302 msgid "The list of knot-remote-configuration used by this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27966 +#: guix-git/doc/guix.texi:28303 #, no-wrap msgid "@code{zones} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27968 +#: guix-git/doc/guix.texi:28305 msgid "The list of knot-zone-configuration used by this configuration." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27972 +#: guix-git/doc/guix.texi:28309 #, no-wrap msgid "Knot Resolver Service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27974 +#: guix-git/doc/guix.texi:28311 #, no-wrap msgid "{Scheme Variable} knot-resolver-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27977 +#: guix-git/doc/guix.texi:28314 msgid "This is the type of the knot resolver service, whose value should be an @code{knot-resolver-configuration} object as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27987 +#: guix-git/doc/guix.texi:28324 #, no-wrap msgid "" "(service knot-resolver-service-type\n" @@ -50158,73 +50781,73 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27990 +#: guix-git/doc/guix.texi:28327 msgid "For more information, refer its @url{https://knot-resolver.readthedocs.org/en/stable/daemon.html#configuration, manual}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27992 +#: guix-git/doc/guix.texi:28329 #, no-wrap msgid "{Data Type} knot-resolver-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27994 +#: guix-git/doc/guix.texi:28331 msgid "Data type representing the configuration of knot-resolver." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27996 +#: guix-git/doc/guix.texi:28333 #, no-wrap msgid "@code{package} (default: @var{knot-resolver})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27998 +#: guix-git/doc/guix.texi:28335 msgid "Package object of the knot DNS resolver." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27999 +#: guix-git/doc/guix.texi:28336 #, no-wrap msgid "@code{kresd-config-file} (default: %kresd.conf)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28002 +#: guix-git/doc/guix.texi:28339 msgid "File-like object of the kresd configuration file to use, by default it will listen on @code{127.0.0.1} and @code{::1}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28003 +#: guix-git/doc/guix.texi:28340 #, no-wrap msgid "@code{garbage-collection-interval} (default: 1000)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28005 +#: guix-git/doc/guix.texi:28342 msgid "Number of milliseconds for @code{kres-cache-gc} to periodically trim the cache." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28010 +#: guix-git/doc/guix.texi:28347 #, no-wrap msgid "Dnsmasq Service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28012 +#: guix-git/doc/guix.texi:28349 #, no-wrap msgid "{Scheme Variable} dnsmasq-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28015 +#: guix-git/doc/guix.texi:28352 msgid "This is the type of the dnsmasq service, whose value should be an @code{dnsmasq-configuration} object as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28021 +#: guix-git/doc/guix.texi:28358 #, no-wrap msgid "" "(service dnsmasq-service-type\n" @@ -50234,122 +50857,122 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28024 +#: guix-git/doc/guix.texi:28361 #, no-wrap msgid "{Data Type} dnsmasq-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28026 +#: guix-git/doc/guix.texi:28363 msgid "Data type representing the configuration of dnsmasq." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28028 +#: guix-git/doc/guix.texi:28365 #, no-wrap msgid "@code{package} (default: @var{dnsmasq})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28030 +#: guix-git/doc/guix.texi:28367 msgid "Package object of the dnsmasq server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28031 +#: guix-git/doc/guix.texi:28368 #, no-wrap msgid "@code{no-hosts?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28033 +#: guix-git/doc/guix.texi:28370 msgid "When true, don't read the hostnames in /etc/hosts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28034 +#: guix-git/doc/guix.texi:28371 #, no-wrap msgid "@code{port} (default: @code{53})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28037 +#: guix-git/doc/guix.texi:28374 msgid "The port to listen on. Setting this to zero completely disables DNS responses, leaving only DHCP and/or TFTP functions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28038 +#: guix-git/doc/guix.texi:28375 #, no-wrap msgid "@code{local-service?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28041 +#: guix-git/doc/guix.texi:28378 msgid "Accept DNS queries only from hosts whose address is on a local subnet, ie a subnet for which an interface exists on the server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28042 +#: guix-git/doc/guix.texi:28379 #, no-wrap msgid "@code{listen-addresses} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28044 +#: guix-git/doc/guix.texi:28381 msgid "Listen on the given IP addresses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28045 +#: guix-git/doc/guix.texi:28382 #, no-wrap msgid "@code{resolv-file} (default: @code{\"/etc/resolv.conf\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28047 +#: guix-git/doc/guix.texi:28384 msgid "The file to read the IP address of the upstream nameservers from." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28048 +#: guix-git/doc/guix.texi:28385 #, no-wrap msgid "@code{no-resolv?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28050 +#: guix-git/doc/guix.texi:28387 msgid "When true, don't read @var{resolv-file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28051 +#: guix-git/doc/guix.texi:28388 #, no-wrap msgid "@code{servers} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28053 +#: guix-git/doc/guix.texi:28390 msgid "Specify IP address of upstream servers directly." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28054 +#: guix-git/doc/guix.texi:28391 #, no-wrap msgid "@code{addresses} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28058 +#: guix-git/doc/guix.texi:28395 msgid "For each entry, specify an IP address to return for any host in the given domains. Queries in the domains are never forwarded and always replied to with the specified IP address." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28060 +#: guix-git/doc/guix.texi:28397 msgid "This is useful for redirecting hosts locally, for example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28069 +#: guix-git/doc/guix.texi:28406 #, no-wrap msgid "" "(service dnsmasq-service-type\n" @@ -50362,1007 +50985,1007 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28072 +#: guix-git/doc/guix.texi:28409 msgid "Note that rules in @file{/etc/hosts} take precedence over this." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28073 +#: guix-git/doc/guix.texi:28410 #, no-wrap msgid "@code{cache-size} (default: @code{150})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28076 +#: guix-git/doc/guix.texi:28413 msgid "Set the size of dnsmasq's cache. Setting the cache size to zero disables caching." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28077 +#: guix-git/doc/guix.texi:28414 #, no-wrap msgid "@code{negative-cache?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28079 +#: guix-git/doc/guix.texi:28416 msgid "When false, disable negative caching." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28080 +#: guix-git/doc/guix.texi:28417 #, no-wrap msgid "@code{tftp-enable?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28082 +#: guix-git/doc/guix.texi:28419 msgid "Whether to enable the built-in TFTP server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28083 +#: guix-git/doc/guix.texi:28420 #, no-wrap msgid "@code{tftp-no-fail?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28085 +#: guix-git/doc/guix.texi:28422 msgid "If true, does not fail dnsmasq if the TFTP server could not start up." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28086 +#: guix-git/doc/guix.texi:28423 #, no-wrap msgid "@code{tftp-single-port?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28088 +#: guix-git/doc/guix.texi:28425 msgid "Whether to use only one single port for TFTP." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28089 +#: guix-git/doc/guix.texi:28426 #, no-wrap msgid "@code{tftp-secure?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28091 +#: guix-git/doc/guix.texi:28428 msgid "If true, only files owned by the user running the dnsmasq process are accessible." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28095 +#: guix-git/doc/guix.texi:28432 msgid "If dnsmasq is being run as root, different rules apply: @code{tftp-secure?} has no effect, but only files which have the world-readable bit set are accessible." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28096 +#: guix-git/doc/guix.texi:28433 #, no-wrap msgid "@code{tftp-max} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28098 +#: guix-git/doc/guix.texi:28435 msgid "If set, sets the maximal number of concurrent connections allowed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28099 +#: guix-git/doc/guix.texi:28436 #, no-wrap msgid "@code{tftp-mtu} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28101 +#: guix-git/doc/guix.texi:28438 msgid "If set, sets the MTU for TFTP packets to that value." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28102 +#: guix-git/doc/guix.texi:28439 #, no-wrap msgid "@code{tftp-no-blocksize?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28104 +#: guix-git/doc/guix.texi:28441 msgid "If true, stops the TFTP server from negotiating the blocksize with a client." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28105 +#: guix-git/doc/guix.texi:28442 #, no-wrap msgid "@code{tftp-lowercase?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28107 +#: guix-git/doc/guix.texi:28444 msgid "Whether to convert all filenames in TFTP requests to lowercase." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28108 +#: guix-git/doc/guix.texi:28445 #, no-wrap msgid "@code{tftp-port-range} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28111 +#: guix-git/doc/guix.texi:28448 msgid "If set, fixes the dynamical ports (one per client) to the given range (@code{\",\"})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28112 +#: guix-git/doc/guix.texi:28449 #, no-wrap msgid "@code{tftp-root} (default: @code{/var/empty,lo})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28119 +#: guix-git/doc/guix.texi:28456 msgid "Look for files to transfer using TFTP relative to the given directory. When this is set, TFTP paths which include @samp{..} are rejected, to stop clients getting outside the specified root. Absolute paths (starting with @samp{/}) are allowed, but they must be within the TFTP-root. If the optional interface argument is given, the directory is only used for TFTP requests via that interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28120 +#: guix-git/doc/guix.texi:28457 #, no-wrap msgid "@code{tftp-unique-root} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28125 +#: guix-git/doc/guix.texi:28462 msgid "If set, add the IP or hardware address of the TFTP client as a path component on the end of the TFTP-root. Only valid if a TFTP root is set and the directory exists. Defaults to adding IP address (in standard dotted-quad format)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28134 +#: guix-git/doc/guix.texi:28471 msgid "For instance, if @option{--tftp-root} is @samp{/tftp} and client @samp{1.2.3.4} requests file @file{myfile} then the effective path will be @file{/tftp/1.2.3.4/myfile} if @file{/tftp/1.2.3.4} exists or @file{/tftp/myfile} otherwise. When @samp{=mac} is specified it will append the MAC address instead, using lowercase zero padded digits separated by dashes, e.g.: @samp{01-02-03-04-aa-bb}. Note that resolving MAC addresses is only possible if the client is in the local network or obtained a DHCP lease from dnsmasq." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28138 +#: guix-git/doc/guix.texi:28475 #, no-wrap msgid "ddclient Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28140 +#: guix-git/doc/guix.texi:28477 #, no-wrap msgid "ddclient" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28144 +#: guix-git/doc/guix.texi:28481 msgid "The ddclient service described below runs the ddclient daemon, which takes care of automatically updating DNS entries for service providers such as @uref{https://dyn.com/dns/, Dyn}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28147 +#: guix-git/doc/guix.texi:28484 msgid "The following example show instantiates the service with its default configuration:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28150 +#: guix-git/doc/guix.texi:28487 #, no-wrap msgid "(service ddclient-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28159 +#: guix-git/doc/guix.texi:28496 msgid "Note that ddclient needs to access credentials that are stored in a @dfn{secret file}, by default @file{/etc/ddclient/secrets} (see @code{secret-file} below). You are expected to create this file manually, in an ``out-of-band'' fashion (you @emph{could} make this file part of the service configuration, for instance by using @code{plain-file}, but it will be world-readable @i{via} @file{/gnu/store}). See the examples in the @file{share/ddclient} directory of the @code{ddclient} package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28163 +#: guix-git/doc/guix.texi:28500 msgid "Available @code{ddclient-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28164 +#: guix-git/doc/guix.texi:28501 #, no-wrap msgid "{@code{ddclient-configuration} parameter} package ddclient" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28166 +#: guix-git/doc/guix.texi:28503 msgid "The ddclient package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28169 +#: guix-git/doc/guix.texi:28506 #, no-wrap msgid "{@code{ddclient-configuration} parameter} integer daemon" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28171 +#: guix-git/doc/guix.texi:28508 msgid "The period after which ddclient will retry to check IP and domain name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28173 +#: guix-git/doc/guix.texi:28510 msgid "Defaults to @samp{300}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28176 +#: guix-git/doc/guix.texi:28513 #, no-wrap msgid "{@code{ddclient-configuration} parameter} boolean syslog" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28178 +#: guix-git/doc/guix.texi:28515 msgid "Use syslog for the output." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28183 +#: guix-git/doc/guix.texi:28520 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string mail" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28185 +#: guix-git/doc/guix.texi:28522 msgid "Mail to user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28187 guix-git/doc/guix.texi:28194 -#: guix-git/doc/guix.texi:29996 +#: guix-git/doc/guix.texi:28524 guix-git/doc/guix.texi:28531 +#: guix-git/doc/guix.texi:30361 msgid "Defaults to @samp{\"root\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28190 +#: guix-git/doc/guix.texi:28527 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string mail-failure" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28192 +#: guix-git/doc/guix.texi:28529 msgid "Mail failed update to user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28197 +#: guix-git/doc/guix.texi:28534 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string pid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28199 +#: guix-git/doc/guix.texi:28536 msgid "The ddclient PID file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28201 +#: guix-git/doc/guix.texi:28538 msgid "Defaults to @samp{\"/var/run/ddclient/ddclient.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28204 +#: guix-git/doc/guix.texi:28541 #, no-wrap msgid "{@code{ddclient-configuration} parameter} boolean ssl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28206 +#: guix-git/doc/guix.texi:28543 msgid "Enable SSL support." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28211 +#: guix-git/doc/guix.texi:28548 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28214 +#: guix-git/doc/guix.texi:28551 msgid "Specifies the user name or ID that is used when running ddclient program." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28216 guix-git/doc/guix.texi:28223 +#: guix-git/doc/guix.texi:28553 guix-git/doc/guix.texi:28560 msgid "Defaults to @samp{\"ddclient\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28219 +#: guix-git/doc/guix.texi:28556 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28221 +#: guix-git/doc/guix.texi:28558 msgid "Group of the user who will run the ddclient program." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28226 +#: guix-git/doc/guix.texi:28563 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string secret-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28230 +#: guix-git/doc/guix.texi:28567 msgid "Secret file which will be appended to @file{ddclient.conf} file. This file contains credentials for use by ddclient. You are expected to create it manually." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28232 +#: guix-git/doc/guix.texi:28569 msgid "Defaults to @samp{\"/etc/ddclient/secrets.conf\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28235 +#: guix-git/doc/guix.texi:28572 #, no-wrap msgid "{@code{ddclient-configuration} parameter} list extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28237 +#: guix-git/doc/guix.texi:28574 msgid "Extra options will be appended to @file{ddclient.conf} file." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28248 +#: guix-git/doc/guix.texi:28585 #, no-wrap msgid "VPN (virtual private network)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28249 +#: guix-git/doc/guix.texi:28586 #, no-wrap msgid "virtual private network (VPN)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28253 +#: guix-git/doc/guix.texi:28590 msgid "The @code{(gnu services vpn)} module provides services related to @dfn{virtual private networks} (VPNs)." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28254 +#: guix-git/doc/guix.texi:28591 #, no-wrap msgid "Bitmask" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28256 +#: guix-git/doc/guix.texi:28593 #, no-wrap msgid "{Scheme Variable} bitmask-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28261 +#: guix-git/doc/guix.texi:28598 msgid "A service type for the @uref{https://bitmask.net, Bitmask} VPN client. It makes the client available in the system and loads its polkit policy. Please note that the client expects an active polkit-agent, which is either run by your desktop-environment or should be run manually." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28263 +#: guix-git/doc/guix.texi:28600 #, no-wrap msgid "OpenVPN" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28267 +#: guix-git/doc/guix.texi:28604 msgid "It provides a @emph{client} service for your machine to connect to a VPN, and a @emph{server} service for your machine to host a VPN@." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28268 +#: guix-git/doc/guix.texi:28605 #, no-wrap msgid "{Scheme Procedure} openvpn-client-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28270 +#: guix-git/doc/guix.texi:28607 msgid "[#:config (openvpn-client-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28272 +#: guix-git/doc/guix.texi:28609 msgid "Return a service that runs @command{openvpn}, a VPN daemon, as a client." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28274 +#: guix-git/doc/guix.texi:28611 #, no-wrap msgid "{Scheme Procedure} openvpn-server-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28276 +#: guix-git/doc/guix.texi:28613 msgid "[#:config (openvpn-server-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28278 +#: guix-git/doc/guix.texi:28615 msgid "Return a service that runs @command{openvpn}, a VPN daemon, as a server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28280 +#: guix-git/doc/guix.texi:28617 msgid "Both can be run simultaneously." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28285 +#: guix-git/doc/guix.texi:28622 msgid "Available @code{openvpn-client-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28286 +#: guix-git/doc/guix.texi:28623 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} package openvpn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28288 guix-git/doc/guix.texi:28443 +#: guix-git/doc/guix.texi:28625 guix-git/doc/guix.texi:28780 msgid "The OpenVPN package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28291 +#: guix-git/doc/guix.texi:28628 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28293 guix-git/doc/guix.texi:28448 +#: guix-git/doc/guix.texi:28630 guix-git/doc/guix.texi:28785 msgid "The OpenVPN pid file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28295 guix-git/doc/guix.texi:28450 +#: guix-git/doc/guix.texi:28632 guix-git/doc/guix.texi:28787 msgid "Defaults to @samp{\"/var/run/openvpn/openvpn.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28298 +#: guix-git/doc/guix.texi:28635 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} proto proto" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28301 guix-git/doc/guix.texi:28456 +#: guix-git/doc/guix.texi:28638 guix-git/doc/guix.texi:28793 msgid "The protocol (UDP or TCP) used to open a channel between clients and servers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28303 guix-git/doc/guix.texi:28458 +#: guix-git/doc/guix.texi:28640 guix-git/doc/guix.texi:28795 msgid "Defaults to @samp{udp}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28306 +#: guix-git/doc/guix.texi:28643 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} dev dev" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28308 guix-git/doc/guix.texi:28463 +#: guix-git/doc/guix.texi:28645 guix-git/doc/guix.texi:28800 msgid "The device type used to represent the VPN connection." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28310 guix-git/doc/guix.texi:28465 +#: guix-git/doc/guix.texi:28647 guix-git/doc/guix.texi:28802 msgid "Defaults to @samp{tun}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28316 guix-git/doc/guix.texi:28471 +#: guix-git/doc/guix.texi:28653 guix-git/doc/guix.texi:28808 msgid "If you do not have some of these files (eg.@: you use a username and password), you can disable any of the following three fields by setting it to @code{'disabled}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28317 +#: guix-git/doc/guix.texi:28654 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string ca" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28319 guix-git/doc/guix.texi:28474 +#: guix-git/doc/guix.texi:28656 guix-git/doc/guix.texi:28811 msgid "The certificate authority to check connections against." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28321 guix-git/doc/guix.texi:28476 +#: guix-git/doc/guix.texi:28658 guix-git/doc/guix.texi:28813 msgid "Defaults to @samp{\"/etc/openvpn/ca.crt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28324 +#: guix-git/doc/guix.texi:28661 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28327 guix-git/doc/guix.texi:28482 +#: guix-git/doc/guix.texi:28664 guix-git/doc/guix.texi:28819 msgid "The certificate of the machine the daemon is running on. It should be signed by the authority given in @code{ca}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28329 guix-git/doc/guix.texi:28484 +#: guix-git/doc/guix.texi:28666 guix-git/doc/guix.texi:28821 msgid "Defaults to @samp{\"/etc/openvpn/client.crt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28332 +#: guix-git/doc/guix.texi:28669 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string key" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28335 guix-git/doc/guix.texi:28490 +#: guix-git/doc/guix.texi:28672 guix-git/doc/guix.texi:28827 msgid "The key of the machine the daemon is running on. It must be the key whose certificate is @code{cert}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28337 guix-git/doc/guix.texi:28492 +#: guix-git/doc/guix.texi:28674 guix-git/doc/guix.texi:28829 msgid "Defaults to @samp{\"/etc/openvpn/client.key\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28340 +#: guix-git/doc/guix.texi:28677 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean comp-lzo?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28342 guix-git/doc/guix.texi:28497 +#: guix-git/doc/guix.texi:28679 guix-git/doc/guix.texi:28834 msgid "Whether to use the lzo compression algorithm." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28347 +#: guix-git/doc/guix.texi:28684 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean persist-key?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28349 guix-git/doc/guix.texi:28504 +#: guix-git/doc/guix.texi:28686 guix-git/doc/guix.texi:28841 msgid "Don't re-read key files across SIGUSR1 or --ping-restart." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28354 +#: guix-git/doc/guix.texi:28691 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean persist-tun?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28357 guix-git/doc/guix.texi:28512 +#: guix-git/doc/guix.texi:28694 guix-git/doc/guix.texi:28849 msgid "Don't close and reopen TUN/TAP device or run up/down scripts across SIGUSR1 or --ping-restart restarts." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28362 +#: guix-git/doc/guix.texi:28699 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean fast-io?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28365 guix-git/doc/guix.texi:28520 +#: guix-git/doc/guix.texi:28702 guix-git/doc/guix.texi:28857 msgid "(Experimental) Optimize TUN/TAP/UDP I/O writes by avoiding a call to poll/epoll/select prior to the write operation." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28369 +#: guix-git/doc/guix.texi:28706 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} number verbosity" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28371 guix-git/doc/guix.texi:28526 +#: guix-git/doc/guix.texi:28708 guix-git/doc/guix.texi:28863 msgid "Verbosity level." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28373 guix-git/doc/guix.texi:28528 -#: guix-git/doc/guix.texi:30264 guix-git/doc/guix.texi:30488 +#: guix-git/doc/guix.texi:28710 guix-git/doc/guix.texi:28865 +#: guix-git/doc/guix.texi:30629 guix-git/doc/guix.texi:30853 msgid "Defaults to @samp{3}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28376 +#: guix-git/doc/guix.texi:28713 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} tls-auth-client tls-auth" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28379 guix-git/doc/guix.texi:28534 +#: guix-git/doc/guix.texi:28716 guix-git/doc/guix.texi:28871 msgid "Add an additional layer of HMAC authentication on top of the TLS control channel to protect against DoS attacks." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28384 +#: guix-git/doc/guix.texi:28721 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string auth-user-pass" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28388 +#: guix-git/doc/guix.texi:28725 msgid "Authenticate with server using username/password. The option is a file containing username/password on 2 lines. Do not use a file-like object as it would be added to the store and readable by any user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28390 +#: guix-git/doc/guix.texi:28727 msgid "Defaults to @samp{'disabled}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28392 +#: guix-git/doc/guix.texi:28729 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} key-usage verify-key-usage?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28394 +#: guix-git/doc/guix.texi:28731 msgid "Whether to check the server certificate has server usage extension." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28399 +#: guix-git/doc/guix.texi:28736 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} bind bind?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28401 +#: guix-git/doc/guix.texi:28738 msgid "Bind to a specific local port number." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28406 +#: guix-git/doc/guix.texi:28743 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} resolv-retry resolv-retry?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28408 +#: guix-git/doc/guix.texi:28745 msgid "Retry resolving server address." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28413 +#: guix-git/doc/guix.texi:28750 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} openvpn-remote-list remote" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28415 +#: guix-git/doc/guix.texi:28752 msgid "A list of remote servers to connect to." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28419 +#: guix-git/doc/guix.texi:28756 msgid "Available @code{openvpn-remote-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28420 +#: guix-git/doc/guix.texi:28757 #, no-wrap msgid "{@code{openvpn-remote-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28422 +#: guix-git/doc/guix.texi:28759 msgid "Server name." msgstr "Palvelimen nimi." #. type: deftypevr -#: guix-git/doc/guix.texi:28424 +#: guix-git/doc/guix.texi:28761 msgid "Defaults to @samp{\"my-server\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28427 +#: guix-git/doc/guix.texi:28764 #, no-wrap msgid "{@code{openvpn-remote-configuration} parameter} number port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28429 +#: guix-git/doc/guix.texi:28766 msgid "Port number the server listens to." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28431 guix-git/doc/guix.texi:28543 +#: guix-git/doc/guix.texi:28768 guix-git/doc/guix.texi:28880 msgid "Defaults to @samp{1194}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28440 +#: guix-git/doc/guix.texi:28777 msgid "Available @code{openvpn-server-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28441 +#: guix-git/doc/guix.texi:28778 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} package openvpn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28446 +#: guix-git/doc/guix.texi:28783 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28453 +#: guix-git/doc/guix.texi:28790 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} proto proto" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28461 +#: guix-git/doc/guix.texi:28798 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} dev dev" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28472 +#: guix-git/doc/guix.texi:28809 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string ca" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28479 +#: guix-git/doc/guix.texi:28816 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28487 +#: guix-git/doc/guix.texi:28824 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string key" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28495 +#: guix-git/doc/guix.texi:28832 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean comp-lzo?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28502 +#: guix-git/doc/guix.texi:28839 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean persist-key?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28509 +#: guix-git/doc/guix.texi:28846 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean persist-tun?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28517 +#: guix-git/doc/guix.texi:28854 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean fast-io?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28524 +#: guix-git/doc/guix.texi:28861 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number verbosity" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28531 +#: guix-git/doc/guix.texi:28868 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} tls-auth-server tls-auth" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28539 +#: guix-git/doc/guix.texi:28876 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28541 +#: guix-git/doc/guix.texi:28878 msgid "Specifies the port number on which the server listens." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28546 +#: guix-git/doc/guix.texi:28883 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} ip-mask server" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28548 +#: guix-git/doc/guix.texi:28885 msgid "An ip and mask specifying the subnet inside the virtual network." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28550 +#: guix-git/doc/guix.texi:28887 msgid "Defaults to @samp{\"10.8.0.0 255.255.255.0\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28553 +#: guix-git/doc/guix.texi:28890 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} cidr6 server-ipv6" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28555 +#: guix-git/doc/guix.texi:28892 msgid "A CIDR notation specifying the IPv6 subnet inside the virtual network." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28560 +#: guix-git/doc/guix.texi:28897 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string dh" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28562 +#: guix-git/doc/guix.texi:28899 msgid "The Diffie-Hellman parameters file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28564 +#: guix-git/doc/guix.texi:28901 msgid "Defaults to @samp{\"/etc/openvpn/dh2048.pem\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28567 +#: guix-git/doc/guix.texi:28904 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string ifconfig-pool-persist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28569 +#: guix-git/doc/guix.texi:28906 msgid "The file that records client IPs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28571 +#: guix-git/doc/guix.texi:28908 msgid "Defaults to @samp{\"/etc/openvpn/ipp.txt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28574 +#: guix-git/doc/guix.texi:28911 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} gateway redirect-gateway?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28576 +#: guix-git/doc/guix.texi:28913 msgid "When true, the server will act as a gateway for its clients." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28581 +#: guix-git/doc/guix.texi:28918 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean client-to-client?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28583 +#: guix-git/doc/guix.texi:28920 msgid "When true, clients are allowed to talk to each other inside the VPN." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28588 +#: guix-git/doc/guix.texi:28925 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} keepalive keepalive" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28594 +#: guix-git/doc/guix.texi:28931 msgid "Causes ping-like messages to be sent back and forth over the link so that each side knows when the other side has gone down. @code{keepalive} requires a pair. The first element is the period of the ping sending, and the second element is the timeout before considering the other side down." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28597 +#: guix-git/doc/guix.texi:28934 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28599 +#: guix-git/doc/guix.texi:28936 msgid "The maximum number of clients." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28604 +#: guix-git/doc/guix.texi:28941 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string status" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28607 +#: guix-git/doc/guix.texi:28944 msgid "The status file. This file shows a small report on current connection. It is truncated and rewritten every minute." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28609 +#: guix-git/doc/guix.texi:28946 msgid "Defaults to @samp{\"/var/run/openvpn/status\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28612 +#: guix-git/doc/guix.texi:28949 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} openvpn-ccd-list client-config-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28614 +#: guix-git/doc/guix.texi:28951 msgid "The list of configuration for some clients." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28618 +#: guix-git/doc/guix.texi:28955 msgid "Available @code{openvpn-ccd-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28619 +#: guix-git/doc/guix.texi:28956 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28621 +#: guix-git/doc/guix.texi:28958 msgid "Client name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28623 +#: guix-git/doc/guix.texi:28960 msgid "Defaults to @samp{\"client\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28626 +#: guix-git/doc/guix.texi:28963 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} ip-mask iroute" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28628 +#: guix-git/doc/guix.texi:28965 msgid "Client own network" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28633 +#: guix-git/doc/guix.texi:28970 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} ip-mask ifconfig-push" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28635 +#: guix-git/doc/guix.texi:28972 msgid "Client VPN IP." msgstr "" #. type: subheading -#: guix-git/doc/guix.texi:28644 +#: guix-git/doc/guix.texi:28981 #, no-wrap msgid "strongSwan" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28648 +#: guix-git/doc/guix.texi:28985 msgid "Currently, the strongSwan service only provides legacy-style configuration with @file{ipsec.conf} and @file{ipsec.secrets} files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28649 +#: guix-git/doc/guix.texi:28986 #, no-wrap msgid "{Scheme Variable} strongswan-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28653 +#: guix-git/doc/guix.texi:28990 msgid "A service type for configuring strongSwan for IPsec @acronym{VPN, Virtual Private Networking}. Its value must be a @code{strongswan-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28659 +#: guix-git/doc/guix.texi:28996 #, no-wrap msgid "" "(service strongswan-service-type\n" @@ -51372,68 +51995,68 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28663 +#: guix-git/doc/guix.texi:29000 #, no-wrap msgid "{Data Type} strongswan-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28665 +#: guix-git/doc/guix.texi:29002 msgid "Data type representing the configuration of the StrongSwan service." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:28667 +#: guix-git/doc/guix.texi:29004 #, no-wrap msgid "strongswan" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28669 +#: guix-git/doc/guix.texi:29006 msgid "The strongSwan package to use for this service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28670 +#: guix-git/doc/guix.texi:29007 #, no-wrap msgid "@code{ipsec-conf} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28673 +#: guix-git/doc/guix.texi:29010 msgid "The file name of your @file{ipsec.conf}. If not @code{#f}, then this and @code{ipsec-secrets} must both be strings." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28674 +#: guix-git/doc/guix.texi:29011 #, no-wrap msgid "@code{ipsec-secrets} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28677 +#: guix-git/doc/guix.texi:29014 msgid "The file name of your @file{ipsec.secrets}. If not @code{#f}, then this and @code{ipsec-conf} must both be strings." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28681 +#: guix-git/doc/guix.texi:29018 #, no-wrap msgid "Wireguard" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28683 +#: guix-git/doc/guix.texi:29020 #, no-wrap msgid "{Scheme Variable} wireguard-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28686 +#: guix-git/doc/guix.texi:29023 msgid "A service type for a Wireguard tunnel interface. Its value must be a @code{wireguard-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28697 +#: guix-git/doc/guix.texi:29034 #, no-wrap msgid "" "(service wireguard-service-type\n" @@ -51448,250 +52071,250 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28701 +#: guix-git/doc/guix.texi:29038 #, no-wrap msgid "{Data Type} wireguard-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28703 +#: guix-git/doc/guix.texi:29040 msgid "Data type representing the configuration of the Wireguard service." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:28705 +#: guix-git/doc/guix.texi:29042 #, no-wrap msgid "wireguard" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28707 +#: guix-git/doc/guix.texi:29044 msgid "The wireguard package to use for this service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28708 +#: guix-git/doc/guix.texi:29045 #, no-wrap msgid "@code{interface} (default: @code{\"wg0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28710 +#: guix-git/doc/guix.texi:29047 msgid "The interface name for the VPN." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28711 +#: guix-git/doc/guix.texi:29048 #, no-wrap msgid "@code{addresses} (default: @code{'(\"10.0.0.1/32\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28713 +#: guix-git/doc/guix.texi:29050 msgid "The IP addresses to be assigned to the above interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28714 +#: guix-git/doc/guix.texi:29051 #, no-wrap msgid "@code{port} (default: @code{51820})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28716 +#: guix-git/doc/guix.texi:29053 msgid "The port on which to listen for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28717 +#: guix-git/doc/guix.texi:29054 #, no-wrap msgid "@code{dns} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28719 +#: guix-git/doc/guix.texi:29056 msgid "The DNS server(s) to announce to VPN clients via DHCP." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28720 +#: guix-git/doc/guix.texi:29057 #, no-wrap msgid "@code{private-key} (default: @code{\"/etc/wireguard/private.key\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28723 +#: guix-git/doc/guix.texi:29060 msgid "The private key file for the interface. It is automatically generated if the file does not exist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28724 +#: guix-git/doc/guix.texi:29061 #, no-wrap msgid "@code{peers} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28727 +#: guix-git/doc/guix.texi:29064 msgid "The authorized peers on this interface. This is a list of @var{wireguard-peer} records." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28731 +#: guix-git/doc/guix.texi:29068 #, no-wrap msgid "{Data Type} wireguard-peer" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28733 +#: guix-git/doc/guix.texi:29070 msgid "Data type representing a Wireguard peer attached to a given interface." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28737 +#: guix-git/doc/guix.texi:29074 msgid "The peer name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28738 +#: guix-git/doc/guix.texi:29075 #, no-wrap msgid "@code{endpoint} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28741 +#: guix-git/doc/guix.texi:29078 msgid "The optional endpoint for the peer, such as @code{\"demo.wireguard.com:51820\"}." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:28742 guix-git/doc/guix.texi:29137 -#: guix-git/doc/guix.texi:29174 guix-git/doc/guix.texi:34305 +#: guix-git/doc/guix.texi:29079 guix-git/doc/guix.texi:29474 +#: guix-git/doc/guix.texi:29511 guix-git/doc/guix.texi:34744 #, no-wrap msgid "public-key" msgstr "julkinen avain" #. type: table -#: guix-git/doc/guix.texi:28744 +#: guix-git/doc/guix.texi:29081 msgid "The peer public-key represented as a base64 string." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:28745 +#: guix-git/doc/guix.texi:29082 #, no-wrap msgid "allowed-ips" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28748 +#: guix-git/doc/guix.texi:29085 msgid "A list of IP addresses from which incoming traffic for this peer is allowed and to which incoming traffic for this peer is directed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28749 +#: guix-git/doc/guix.texi:29086 #, no-wrap msgid "@code{keep-alive} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28754 +#: guix-git/doc/guix.texi:29091 msgid "An optional time interval in seconds. A packet will be sent to the server endpoint once per time interval. This helps receiving incoming connections from this peer when you are behind a NAT or a firewall." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28760 +#: guix-git/doc/guix.texi:29097 #, no-wrap msgid "NFS" msgstr "NFS" #. type: Plain text -#: guix-git/doc/guix.texi:28765 +#: guix-git/doc/guix.texi:29102 msgid "The @code{(gnu services nfs)} module provides the following services, which are most commonly used in relation to mounting or exporting directory trees as @dfn{network file systems} (NFS)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28769 +#: guix-git/doc/guix.texi:29106 msgid "While it is possible to use the individual components that together make up a Network File System service, we recommended to configure an NFS server with the @code{nfs-service-type}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28770 +#: guix-git/doc/guix.texi:29107 #, no-wrap msgid "NFS Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28771 +#: guix-git/doc/guix.texi:29108 #, no-wrap msgid "NFS, server" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28776 +#: guix-git/doc/guix.texi:29113 msgid "The NFS service takes care of setting up all NFS component services, kernel configuration file systems, and installs configuration files in the locations that NFS expects." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28777 +#: guix-git/doc/guix.texi:29114 #, no-wrap msgid "{Scheme Variable} nfs-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28779 +#: guix-git/doc/guix.texi:29116 msgid "A service type for a complete NFS server." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28781 +#: guix-git/doc/guix.texi:29118 #, no-wrap msgid "{Data Type} nfs-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28784 +#: guix-git/doc/guix.texi:29121 msgid "This data type represents the configuration of the NFS service and all of its subsystems." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28786 +#: guix-git/doc/guix.texi:29123 msgid "It has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28787 guix-git/doc/guix.texi:28912 -#: guix-git/doc/guix.texi:28937 +#: guix-git/doc/guix.texi:29124 guix-git/doc/guix.texi:29249 +#: guix-git/doc/guix.texi:29274 #, no-wrap msgid "@code{nfs-utils} (default: @code{nfs-utils})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28789 +#: guix-git/doc/guix.texi:29126 msgid "The nfs-utils package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28790 +#: guix-git/doc/guix.texi:29127 #, no-wrap msgid "@code{nfs-versions} (default: @code{'(\"4.2\" \"4.1\" \"4.0\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28793 +#: guix-git/doc/guix.texi:29130 msgid "If a list of string values is provided, the @command{rpc.nfsd} daemon will be limited to supporting the given versions of the NFS protocol." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28794 +#: guix-git/doc/guix.texi:29131 #, no-wrap msgid "@code{exports} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28799 +#: guix-git/doc/guix.texi:29136 msgid "This is a list of directories the NFS server should export. Each entry is a list consisting of two elements: a directory name and a string containing all options. This is an example in which the directory @file{/export} is served to all NFS clients as a read-only share:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28805 +#: guix-git/doc/guix.texi:29142 #, no-wrap msgid "" "(nfs-configuration\n" @@ -51701,384 +52324,384 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28807 +#: guix-git/doc/guix.texi:29144 #, no-wrap msgid "@code{rpcmountd-port} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28809 +#: guix-git/doc/guix.texi:29146 msgid "The network port that the @command{rpc.mountd} daemon should use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28810 +#: guix-git/doc/guix.texi:29147 #, no-wrap msgid "@code{rpcstatd-port} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28812 +#: guix-git/doc/guix.texi:29149 msgid "The network port that the @command{rpc.statd} daemon should use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28813 guix-git/doc/guix.texi:28861 +#: guix-git/doc/guix.texi:29150 guix-git/doc/guix.texi:29198 #, no-wrap msgid "@code{rpcbind} (default: @code{rpcbind})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28815 guix-git/doc/guix.texi:28863 +#: guix-git/doc/guix.texi:29152 guix-git/doc/guix.texi:29200 msgid "The rpcbind package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28816 +#: guix-git/doc/guix.texi:29153 #, no-wrap msgid "@code{idmap-domain} (default: @code{\"localdomain\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28818 +#: guix-git/doc/guix.texi:29155 msgid "The local NFSv4 domain name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28819 +#: guix-git/doc/guix.texi:29156 #, no-wrap msgid "@code{nfsd-port} (default: @code{2049})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28821 +#: guix-git/doc/guix.texi:29158 msgid "The network port that the @command{nfsd} daemon should use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28822 +#: guix-git/doc/guix.texi:29159 #, no-wrap msgid "@code{nfsd-threads} (default: @code{8})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28824 +#: guix-git/doc/guix.texi:29161 msgid "The number of threads used by the @command{nfsd} daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28825 +#: guix-git/doc/guix.texi:29162 #, no-wrap msgid "@code{nfsd-tcp?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28827 +#: guix-git/doc/guix.texi:29164 msgid "Whether the @command{nfsd} daemon should listen on a TCP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28828 +#: guix-git/doc/guix.texi:29165 #, no-wrap msgid "@code{nfsd-udp?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28830 +#: guix-git/doc/guix.texi:29167 msgid "Whether the @command{nfsd} daemon should listen on a UDP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28831 guix-git/doc/guix.texi:28915 -#: guix-git/doc/guix.texi:28940 +#: guix-git/doc/guix.texi:29168 guix-git/doc/guix.texi:29252 +#: guix-git/doc/guix.texi:29277 #, no-wrap msgid "@code{pipefs-directory} (default: @code{\"/var/lib/nfs/rpc_pipefs\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28833 guix-git/doc/guix.texi:28917 -#: guix-git/doc/guix.texi:28942 +#: guix-git/doc/guix.texi:29170 guix-git/doc/guix.texi:29254 +#: guix-git/doc/guix.texi:29279 msgid "The directory where the pipefs file system is mounted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28834 +#: guix-git/doc/guix.texi:29171 #, no-wrap msgid "@code{debug} (default: @code{'()\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28838 +#: guix-git/doc/guix.texi:29175 msgid "A list of subsystems for which debugging output should be enabled. This is a list of symbols. Any of these symbols are valid: @code{nfsd}, @code{nfs}, @code{rpc}, @code{idmap}, @code{statd}, or @code{mountd}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28843 +#: guix-git/doc/guix.texi:29180 msgid "If you don't need a complete NFS service or prefer to build it yourself you can use the individual component services that are documented below." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28844 +#: guix-git/doc/guix.texi:29181 #, no-wrap msgid "RPC Bind Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28845 +#: guix-git/doc/guix.texi:29182 #, no-wrap msgid "rpcbind" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28851 +#: guix-git/doc/guix.texi:29188 msgid "The RPC Bind service provides a facility to map program numbers into universal addresses. Many NFS related services use this facility. Hence it is automatically started when a dependent service starts." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28852 +#: guix-git/doc/guix.texi:29189 #, no-wrap msgid "{Scheme Variable} rpcbind-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28854 +#: guix-git/doc/guix.texi:29191 msgid "A service type for the RPC portmapper daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28857 +#: guix-git/doc/guix.texi:29194 #, no-wrap msgid "{Data Type} rpcbind-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28860 +#: guix-git/doc/guix.texi:29197 msgid "Data type representing the configuration of the RPC Bind Service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28864 +#: guix-git/doc/guix.texi:29201 #, no-wrap msgid "@code{warm-start?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28868 +#: guix-git/doc/guix.texi:29205 msgid "If this parameter is @code{#t}, then the daemon will read a state file on startup thus reloading state information saved by a previous instance." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28872 +#: guix-git/doc/guix.texi:29209 #, no-wrap msgid "Pipefs Pseudo File System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28873 +#: guix-git/doc/guix.texi:29210 #, no-wrap msgid "pipefs" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28874 +#: guix-git/doc/guix.texi:29211 #, no-wrap msgid "rpc_pipefs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28878 +#: guix-git/doc/guix.texi:29215 msgid "The pipefs file system is used to transfer NFS related data between the kernel and user space programs." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28879 +#: guix-git/doc/guix.texi:29216 #, no-wrap msgid "{Scheme Variable} pipefs-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28881 +#: guix-git/doc/guix.texi:29218 msgid "A service type for the pipefs pseudo file system." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28883 +#: guix-git/doc/guix.texi:29220 #, no-wrap msgid "{Data Type} pipefs-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28886 +#: guix-git/doc/guix.texi:29223 msgid "Data type representing the configuration of the pipefs pseudo file system service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28887 +#: guix-git/doc/guix.texi:29224 #, no-wrap msgid "@code{mount-point} (default: @code{\"/var/lib/nfs/rpc_pipefs\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28889 +#: guix-git/doc/guix.texi:29226 msgid "The directory to which the file system is to be attached." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28893 +#: guix-git/doc/guix.texi:29230 #, no-wrap msgid "GSS Daemon Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28894 +#: guix-git/doc/guix.texi:29231 #, no-wrap msgid "GSSD" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28895 +#: guix-git/doc/guix.texi:29232 #, no-wrap msgid "GSS" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28896 +#: guix-git/doc/guix.texi:29233 #, no-wrap msgid "global security system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28903 +#: guix-git/doc/guix.texi:29240 msgid "The @dfn{global security system} (GSS) daemon provides strong security for RPC based protocols. Before exchanging RPC requests an RPC client must establish a security context. Typically this is done using the Kerberos command @command{kinit} or automatically at login time using PAM services (@pxref{Kerberos Services})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28904 +#: guix-git/doc/guix.texi:29241 #, no-wrap msgid "{Scheme Variable} gss-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28906 +#: guix-git/doc/guix.texi:29243 msgid "A service type for the Global Security System (GSS) daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28908 +#: guix-git/doc/guix.texi:29245 #, no-wrap msgid "{Data Type} gss-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28911 +#: guix-git/doc/guix.texi:29248 msgid "Data type representing the configuration of the GSS daemon service. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28914 +#: guix-git/doc/guix.texi:29251 msgid "The package in which the @command{rpc.gssd} command is to be found." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28922 +#: guix-git/doc/guix.texi:29259 #, no-wrap msgid "IDMAP Daemon Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28923 +#: guix-git/doc/guix.texi:29260 #, no-wrap msgid "idmapd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28924 +#: guix-git/doc/guix.texi:29261 #, no-wrap msgid "name mapper" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28928 +#: guix-git/doc/guix.texi:29265 msgid "The idmap daemon service provides mapping between user IDs and user names. Typically it is required in order to access file systems mounted via NFSv4." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28929 +#: guix-git/doc/guix.texi:29266 #, no-wrap msgid "{Scheme Variable} idmap-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28931 +#: guix-git/doc/guix.texi:29268 msgid "A service type for the Identity Mapper (IDMAP) daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28933 +#: guix-git/doc/guix.texi:29270 #, no-wrap msgid "{Data Type} idmap-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28936 +#: guix-git/doc/guix.texi:29273 msgid "Data type representing the configuration of the IDMAP daemon service. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28939 +#: guix-git/doc/guix.texi:29276 msgid "The package in which the @command{rpc.idmapd} command is to be found." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28943 +#: guix-git/doc/guix.texi:29280 #, no-wrap msgid "@code{domain} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28947 +#: guix-git/doc/guix.texi:29284 msgid "The local NFSv4 domain name. This must be a string or @code{#f}. If it is @code{#f} then the daemon will use the host's fully qualified domain name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28948 +#: guix-git/doc/guix.texi:29285 #, no-wrap msgid "@code{verbosity} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28950 +#: guix-git/doc/guix.texi:29287 msgid "The verbosity level of the daemon." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28961 +#: guix-git/doc/guix.texi:29298 msgid "@uref{https://guix.gnu.org/cuirass/, Cuirass} is a continuous integration tool for Guix. It can be used both for development and for providing substitutes to others (@pxref{Substitutes})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28963 +#: guix-git/doc/guix.texi:29300 msgid "The @code{(gnu services cuirass)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28964 +#: guix-git/doc/guix.texi:29301 #, no-wrap msgid "{Scheme Procedure} cuirass-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28967 +#: guix-git/doc/guix.texi:29304 msgid "The type of the Cuirass service. Its value must be a @code{cuirass-configuration} object, as described below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28972 +#: guix-git/doc/guix.texi:29309 msgid "To add build jobs, you have to set the @code{specifications} field of the configuration. For instance, the following example will build all the packages provided by the @code{my-channel} channel." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28983 +#: guix-git/doc/guix.texi:29320 #, no-wrap msgid "" "(define %cuirass-specs\n" @@ -52094,7 +52717,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28987 guix-git/doc/guix.texi:29001 +#: guix-git/doc/guix.texi:29324 guix-git/doc/guix.texi:29338 #, no-wrap msgid "" "(service cuirass-service-type\n" @@ -52103,12 +52726,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28991 +#: guix-git/doc/guix.texi:29328 msgid "To build the @code{linux-libre} package defined by the default Guix channel, one can use the following configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28997 +#: guix-git/doc/guix.texi:29334 #, no-wrap msgid "" "(define %cuirass-specs\n" @@ -52119,572 +52742,572 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29006 +#: guix-git/doc/guix.texi:29343 msgid "The other configuration possibilities, as well as the specification record itself are described in the Cuirass manual (@pxref{Specifications,,, cuirass, Cuirass})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29010 +#: guix-git/doc/guix.texi:29347 msgid "While information related to build jobs is located directly in the specifications, global settings for the @command{cuirass} process are accessible in other @code{cuirass-configuration} fields." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29011 +#: guix-git/doc/guix.texi:29348 #, no-wrap msgid "{Data Type} cuirass-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29013 +#: guix-git/doc/guix.texi:29350 msgid "Data type representing the configuration of Cuirass." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29015 guix-git/doc/guix.texi:29152 +#: guix-git/doc/guix.texi:29352 guix-git/doc/guix.texi:29489 #, no-wrap msgid "@code{cuirass} (default: @code{cuirass})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29017 guix-git/doc/guix.texi:29154 +#: guix-git/doc/guix.texi:29354 guix-git/doc/guix.texi:29491 msgid "The Cuirass package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29018 +#: guix-git/doc/guix.texi:29355 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29020 guix-git/doc/guix.texi:29124 -#: guix-git/doc/guix.texi:29167 +#: guix-git/doc/guix.texi:29357 guix-git/doc/guix.texi:29461 +#: guix-git/doc/guix.texi:29504 msgid "Location of the log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29021 +#: guix-git/doc/guix.texi:29358 #, no-wrap msgid "@code{web-log-file} (default: @code{\"/var/log/cuirass-web.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29023 +#: guix-git/doc/guix.texi:29360 msgid "Location of the log file used by the web interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29024 +#: guix-git/doc/guix.texi:29361 #, no-wrap msgid "@code{cache-directory} (default: @code{\"/var/cache/cuirass\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29026 +#: guix-git/doc/guix.texi:29363 msgid "Location of the repository cache." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29027 +#: guix-git/doc/guix.texi:29364 #, no-wrap msgid "@code{user} (default: @code{\"cuirass\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29029 +#: guix-git/doc/guix.texi:29366 msgid "Owner of the @code{cuirass} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29030 +#: guix-git/doc/guix.texi:29367 #, no-wrap msgid "@code{group} (default: @code{\"cuirass\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29032 +#: guix-git/doc/guix.texi:29369 msgid "Owner's group of the @code{cuirass} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29033 +#: guix-git/doc/guix.texi:29370 #, no-wrap msgid "@code{interval} (default: @code{60})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29036 +#: guix-git/doc/guix.texi:29373 msgid "Number of seconds between the poll of the repositories followed by the Cuirass jobs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29037 +#: guix-git/doc/guix.texi:29374 #, no-wrap msgid "@code{parameters} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29040 +#: guix-git/doc/guix.texi:29377 msgid "Read parameters from the given @var{parameters} file. The supported parameters are described here (@pxref{Parameters,,, cuirass, Cuirass})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29041 +#: guix-git/doc/guix.texi:29378 #, no-wrap msgid "@code{remote-server} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29044 +#: guix-git/doc/guix.texi:29381 msgid "A @code{cuirass-remote-server-configuration} record to use the build remote mechanism or @code{#f} to use the default build mechanism." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29045 +#: guix-git/doc/guix.texi:29382 #, no-wrap msgid "@code{database} (default: @code{\"dbname=cuirass host=/var/run/postgresql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29050 +#: guix-git/doc/guix.texi:29387 msgid "Use @var{database} as the database containing the jobs and the past build results. Since Cuirass uses PostgreSQL as a database engine, @var{database} must be a string such as @code{\"dbname=cuirass host=localhost\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29051 +#: guix-git/doc/guix.texi:29388 #, no-wrap msgid "@code{port} (default: @code{8081})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29053 +#: guix-git/doc/guix.texi:29390 msgid "Port number used by the HTTP server." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29057 +#: guix-git/doc/guix.texi:29394 msgid "Listen on the network interface for @var{host}. The default is to accept connections from localhost." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29058 +#: guix-git/doc/guix.texi:29395 #, no-wrap msgid "@code{specifications} (default: @code{#~'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29062 +#: guix-git/doc/guix.texi:29399 msgid "A gexp (@pxref{G-Expressions}) that evaluates to a list of specifications records. The specification record is described in the Cuirass manual (@pxref{Specifications,,, cuirass, Cuirass})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29063 +#: guix-git/doc/guix.texi:29400 #, no-wrap msgid "@code{use-substitutes?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29066 +#: guix-git/doc/guix.texi:29403 msgid "This allows using substitutes to avoid building every dependencies of a job from source." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29067 guix-git/doc/guix.texi:36336 +#: guix-git/doc/guix.texi:29404 guix-git/doc/guix.texi:36826 #, no-wrap msgid "@code{one-shot?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29069 +#: guix-git/doc/guix.texi:29406 msgid "Only evaluate specifications and build derivations once." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29070 +#: guix-git/doc/guix.texi:29407 #, no-wrap msgid "@code{fallback?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29073 +#: guix-git/doc/guix.texi:29410 msgid "When substituting a pre-built binary fails, fall back to building packages locally." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29076 +#: guix-git/doc/guix.texi:29413 msgid "Extra options to pass when running the Cuirass processes." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29080 +#: guix-git/doc/guix.texi:29417 #, no-wrap msgid "remote build" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29081 +#: guix-git/doc/guix.texi:29418 #, no-wrap msgid "Cuirass remote building" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29084 +#: guix-git/doc/guix.texi:29421 msgid "Cuirass supports two mechanisms to build derivations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29086 +#: guix-git/doc/guix.texi:29423 #, no-wrap msgid "Using the local Guix daemon." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:29090 +#: guix-git/doc/guix.texi:29427 msgid "This is the default build mechanism. Once the build jobs are evaluated, they are sent to the local Guix daemon. Cuirass then listens to the Guix daemon output to detect the various build events." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29091 +#: guix-git/doc/guix.texi:29428 #, no-wrap msgid "Using the remote build mechanism." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:29095 +#: guix-git/doc/guix.texi:29432 msgid "The build jobs are not submitted to the local Guix daemon. Instead, a remote server dispatches build requests to the connect remote workers, according to the build priorities." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29102 +#: guix-git/doc/guix.texi:29439 msgid "To enable this build mode a @code{cuirass-remote-server-configuration} record must be passed as @code{remote-server} argument of the @code{cuirass-configuration} record. The @code{cuirass-remote-server-configuration} record is described below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29107 +#: guix-git/doc/guix.texi:29444 msgid "This build mode scales way better than the default build mode. This is the build mode that is used on the GNU Guix build farm at @url{https://ci.guix.gnu.org}. It should be preferred when using Cuirass to build large amount of packages." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29108 +#: guix-git/doc/guix.texi:29445 #, no-wrap msgid "{Data Type} cuirass-remote-server-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29110 +#: guix-git/doc/guix.texi:29447 msgid "Data type representing the configuration of the Cuirass remote-server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29112 +#: guix-git/doc/guix.texi:29449 #, no-wrap msgid "@code{backend-port} (default: @code{5555})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29115 +#: guix-git/doc/guix.texi:29452 msgid "The TCP port for communicating with @code{remote-worker} processes using ZMQ. It defaults to @code{5555}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29116 +#: guix-git/doc/guix.texi:29453 #, no-wrap msgid "@code{log-port} (default: @code{5556})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29118 +#: guix-git/doc/guix.texi:29455 msgid "The TCP port of the log server. It defaults to @code{5556}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29119 +#: guix-git/doc/guix.texi:29456 #, no-wrap msgid "@code{publish-port} (default: @code{5557})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29121 +#: guix-git/doc/guix.texi:29458 msgid "The TCP port of the publish server. It defaults to @code{5557}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29122 +#: guix-git/doc/guix.texi:29459 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass-remote-server.log\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:29125 +#: guix-git/doc/guix.texi:29462 #, no-wrap msgid "@code{cache} (default: @code{\"/var/cache/cuirass/remote\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29127 +#: guix-git/doc/guix.texi:29464 msgid "Use @var{cache} directory to cache build log files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29128 +#: guix-git/doc/guix.texi:29465 #, no-wrap msgid "@code{trigger-url} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29131 +#: guix-git/doc/guix.texi:29468 msgid "Once a substitute is successfully fetched, trigger substitute baking at @var{trigger-url}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29136 +#: guix-git/doc/guix.texi:29473 msgid "If set to false, do not start a publish server and ignore the @code{publish-port} argument. This can be useful if there is already a standalone publish server standing next to the remote server." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:29138 guix-git/doc/guix.texi:29175 +#: guix-git/doc/guix.texi:29475 guix-git/doc/guix.texi:29512 #, no-wrap msgid "private-key" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29147 +#: guix-git/doc/guix.texi:29484 msgid "At least one remote worker must also be started on any machine of the local network to actually perform the builds and report their status." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29148 +#: guix-git/doc/guix.texi:29485 #, no-wrap msgid "{Data Type} cuirass-remote-worker-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29150 +#: guix-git/doc/guix.texi:29487 msgid "Data type representing the configuration of the Cuirass remote-worker." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29155 +#: guix-git/doc/guix.texi:29492 #, no-wrap msgid "@code{workers} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29157 +#: guix-git/doc/guix.texi:29494 msgid "Start @var{workers} parallel workers." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29161 +#: guix-git/doc/guix.texi:29498 msgid "Do not use Avahi discovery and connect to the given @code{server} IP address instead." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29162 +#: guix-git/doc/guix.texi:29499 #, no-wrap msgid "@code{systems} (default: @code{(list (%current-system))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29164 +#: guix-git/doc/guix.texi:29501 msgid "Only request builds for the given @var{systems}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29165 +#: guix-git/doc/guix.texi:29502 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass-remote-worker.log\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:29168 +#: guix-git/doc/guix.texi:29505 #, no-wrap msgid "@code{publish-port} (default: @code{5558})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29170 +#: guix-git/doc/guix.texi:29507 msgid "The TCP port of the publish server. It defaults to @code{5558}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29182 +#: guix-git/doc/guix.texi:29519 #, no-wrap msgid "Laminar" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29187 +#: guix-git/doc/guix.texi:29524 msgid "@uref{https://laminar.ohwg.net/, Laminar} is a lightweight and modular Continuous Integration service. It doesn't have a configuration web UI instead uses version-controllable configuration files and scripts." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29190 +#: guix-git/doc/guix.texi:29527 msgid "Laminar encourages the use of existing tools such as bash and cron instead of reinventing them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29191 +#: guix-git/doc/guix.texi:29528 #, no-wrap msgid "{Scheme Procedure} laminar-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29194 +#: guix-git/doc/guix.texi:29531 msgid "The type of the Laminar service. Its value must be a @code{laminar-configuration} object, as described below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29198 +#: guix-git/doc/guix.texi:29535 msgid "All configuration values have defaults, a minimal configuration to get Laminar running is shown below. By default, the web interface is available on port 8080." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29201 +#: guix-git/doc/guix.texi:29538 #, no-wrap msgid "(service laminar-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29204 +#: guix-git/doc/guix.texi:29541 #, no-wrap msgid "{Data Type} laminar-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29206 +#: guix-git/doc/guix.texi:29543 msgid "Data type representing the configuration of Laminar." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29208 +#: guix-git/doc/guix.texi:29545 #, no-wrap msgid "@code{laminar} (default: @code{laminar})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29210 +#: guix-git/doc/guix.texi:29547 msgid "The Laminar package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29211 +#: guix-git/doc/guix.texi:29548 #, no-wrap msgid "@code{home-directory} (default: @code{\"/var/lib/laminar\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29213 +#: guix-git/doc/guix.texi:29550 msgid "The directory for job configurations and run directories." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29214 +#: guix-git/doc/guix.texi:29551 #, no-wrap msgid "@code{bind-http} (default: @code{\"*:8080\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29217 +#: guix-git/doc/guix.texi:29554 msgid "The interface/port or unix socket on which laminard should listen for incoming connections to the web frontend." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29218 +#: guix-git/doc/guix.texi:29555 #, no-wrap msgid "@code{bind-rpc} (default: @code{\"unix-abstract:laminar\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29221 +#: guix-git/doc/guix.texi:29558 msgid "The interface/port or unix socket on which laminard should listen for incoming commands such as build triggers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29222 +#: guix-git/doc/guix.texi:29559 #, no-wrap msgid "@code{title} (default: @code{\"Laminar\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29224 +#: guix-git/doc/guix.texi:29561 msgid "The page title to show in the web frontend." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29225 +#: guix-git/doc/guix.texi:29562 #, no-wrap msgid "@code{keep-rundirs} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29229 +#: guix-git/doc/guix.texi:29566 msgid "Set to an integer defining how many rundirs to keep per job. The lowest-numbered ones will be deleted. The default is 0, meaning all run dirs will be immediately deleted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29230 +#: guix-git/doc/guix.texi:29567 #, no-wrap msgid "@code{archive-url} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29233 +#: guix-git/doc/guix.texi:29570 msgid "The web frontend served by laminard will use this URL to form links to artefacts archived jobs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29234 +#: guix-git/doc/guix.texi:29571 #, no-wrap msgid "@code{base-url} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29236 +#: guix-git/doc/guix.texi:29573 msgid "Base URL to use for links to laminar itself." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29243 +#: guix-git/doc/guix.texi:29580 #, no-wrap msgid "tlp" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29244 +#: guix-git/doc/guix.texi:29581 #, no-wrap msgid "power management with TLP" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29245 +#: guix-git/doc/guix.texi:29582 #, no-wrap msgid "TLP daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29249 +#: guix-git/doc/guix.texi:29586 msgid "The @code{(gnu services pm)} module provides a Guix service definition for the Linux power management tool TLP." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29255 +#: guix-git/doc/guix.texi:29592 msgid "TLP enables various powersaving modes in userspace and kernel. Contrary to @code{upower-service}, it is not a passive, monitoring tool, as it will apply custom settings each time a new power source is detected. More information can be found at @uref{https://linrunner.de/en/tlp/tlp.html, TLP home page}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29256 +#: guix-git/doc/guix.texi:29593 #, no-wrap msgid "{Scheme Variable} tlp-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29260 +#: guix-git/doc/guix.texi:29597 msgid "The service type for the TLP tool. The default settings are optimised for battery life on most systems, but you can tweak them to your heart's content by adding a valid @code{tlp-configuration}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29265 +#: guix-git/doc/guix.texi:29602 #, no-wrap msgid "" "(service tlp-service-type\n" @@ -52694,888 +53317,932 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29273 +#: guix-git/doc/guix.texi:29610 msgid "Each parameter definition is preceded by its type; for example, @samp{boolean foo} indicates that the @code{foo} parameter should be specified as a boolean. Types starting with @code{maybe-} denote parameters that won't show up in TLP config file when their value is @code{'disabled}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29283 +#: guix-git/doc/guix.texi:29620 msgid "Available @code{tlp-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29284 +#: guix-git/doc/guix.texi:29621 #, no-wrap msgid "{@code{tlp-configuration} parameter} package tlp" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29286 +#: guix-git/doc/guix.texi:29623 msgid "The TLP package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29289 +#: guix-git/doc/guix.texi:29626 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean tlp-enable?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29291 +#: guix-git/doc/guix.texi:29628 msgid "Set to true if you wish to enable TLP." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29296 +#: guix-git/doc/guix.texi:29633 #, no-wrap msgid "{@code{tlp-configuration} parameter} string tlp-default-mode" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29299 +#: guix-git/doc/guix.texi:29636 msgid "Default mode when no power supply can be detected. Alternatives are AC and BAT." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29301 +#: guix-git/doc/guix.texi:29638 msgid "Defaults to @samp{\"AC\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29304 +#: guix-git/doc/guix.texi:29641 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer disk-idle-secs-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29307 +#: guix-git/doc/guix.texi:29644 msgid "Number of seconds Linux kernel has to wait after the disk goes idle, before syncing on AC." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29312 +#: guix-git/doc/guix.texi:29649 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer disk-idle-secs-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29314 +#: guix-git/doc/guix.texi:29651 msgid "Same as @code{disk-idle-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29316 +#: guix-git/doc/guix.texi:29653 msgid "Defaults to @samp{2}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29319 +#: guix-git/doc/guix.texi:29656 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer max-lost-work-secs-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29321 +#: guix-git/doc/guix.texi:29658 msgid "Dirty pages flushing periodicity, expressed in seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29323 guix-git/doc/guix.texi:29546 -#: guix-git/doc/guix.texi:31814 guix-git/doc/guix.texi:31822 +#: guix-git/doc/guix.texi:29660 guix-git/doc/guix.texi:29883 +#: guix-git/doc/guix.texi:32179 guix-git/doc/guix.texi:32187 msgid "Defaults to @samp{15}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29326 +#: guix-git/doc/guix.texi:29663 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer max-lost-work-secs-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29328 +#: guix-git/doc/guix.texi:29665 msgid "Same as @code{max-lost-work-secs-on-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29330 +#: guix-git/doc/guix.texi:29667 msgid "Defaults to @samp{60}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29333 +#: guix-git/doc/guix.texi:29670 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list cpu-scaling-governor-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29337 +#: guix-git/doc/guix.texi:29674 msgid "CPU frequency scaling governor on AC mode. With intel_pstate driver, alternatives are powersave and performance. With acpi-cpufreq driver, alternatives are ondemand, powersave, performance and conservative." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29342 +#: guix-git/doc/guix.texi:29679 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list cpu-scaling-governor-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29344 +#: guix-git/doc/guix.texi:29681 msgid "Same as @code{cpu-scaling-governor-on-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29349 +#: guix-git/doc/guix.texi:29686 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-min-freq-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29351 +#: guix-git/doc/guix.texi:29688 msgid "Set the min available frequency for the scaling governor on AC." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29356 +#: guix-git/doc/guix.texi:29693 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-max-freq-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29358 +#: guix-git/doc/guix.texi:29695 msgid "Set the max available frequency for the scaling governor on AC." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29363 +#: guix-git/doc/guix.texi:29700 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-min-freq-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29365 +#: guix-git/doc/guix.texi:29702 msgid "Set the min available frequency for the scaling governor on BAT." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29370 +#: guix-git/doc/guix.texi:29707 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-max-freq-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29372 +#: guix-git/doc/guix.texi:29709 msgid "Set the max available frequency for the scaling governor on BAT." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29377 +#: guix-git/doc/guix.texi:29714 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-min-perf-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29380 +#: guix-git/doc/guix.texi:29717 msgid "Limit the min P-state to control the power dissipation of the CPU, in AC mode. Values are stated as a percentage of the available performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29385 +#: guix-git/doc/guix.texi:29722 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29388 +#: guix-git/doc/guix.texi:29725 msgid "Limit the max P-state to control the power dissipation of the CPU, in AC mode. Values are stated as a percentage of the available performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29393 +#: guix-git/doc/guix.texi:29730 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-min-perf-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29395 +#: guix-git/doc/guix.texi:29732 msgid "Same as @code{cpu-min-perf-on-ac} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29400 +#: guix-git/doc/guix.texi:29737 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29402 +#: guix-git/doc/guix.texi:29739 msgid "Same as @code{cpu-max-perf-on-ac} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29407 +#: guix-git/doc/guix.texi:29744 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean cpu-boost-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29409 +#: guix-git/doc/guix.texi:29746 msgid "Enable CPU turbo boost feature on AC mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29414 +#: guix-git/doc/guix.texi:29751 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean cpu-boost-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29416 +#: guix-git/doc/guix.texi:29753 msgid "Same as @code{cpu-boost-on-ac?} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29421 +#: guix-git/doc/guix.texi:29758 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean sched-powersave-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29424 +#: guix-git/doc/guix.texi:29761 msgid "Allow Linux kernel to minimize the number of CPU cores/hyper-threads used under light load conditions." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29429 +#: guix-git/doc/guix.texi:29766 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean sched-powersave-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29431 +#: guix-git/doc/guix.texi:29768 msgid "Same as @code{sched-powersave-on-ac?} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29436 +#: guix-git/doc/guix.texi:29773 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean nmi-watchdog?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29438 +#: guix-git/doc/guix.texi:29775 msgid "Enable Linux kernel NMI watchdog." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29443 +#: guix-git/doc/guix.texi:29780 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string phc-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29446 +#: guix-git/doc/guix.texi:29783 msgid "For Linux kernels with PHC patch applied, change CPU voltages. An example value would be @samp{\"F:V F:V F:V F:V\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29451 +#: guix-git/doc/guix.texi:29788 #, no-wrap msgid "{@code{tlp-configuration} parameter} string energy-perf-policy-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29454 +#: guix-git/doc/guix.texi:29791 msgid "Set CPU performance versus energy saving policy on AC@. Alternatives are performance, normal, powersave." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29456 guix-git/doc/guix.texi:29554 -#: guix-git/doc/guix.texi:29584 +#: guix-git/doc/guix.texi:29793 guix-git/doc/guix.texi:29891 +#: guix-git/doc/guix.texi:29949 msgid "Defaults to @samp{\"performance\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29459 +#: guix-git/doc/guix.texi:29796 #, no-wrap msgid "{@code{tlp-configuration} parameter} string energy-perf-policy-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29461 +#: guix-git/doc/guix.texi:29798 msgid "Same as @code{energy-perf-policy-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29463 guix-git/doc/guix.texi:29561 +#: guix-git/doc/guix.texi:29800 guix-git/doc/guix.texi:29898 msgid "Defaults to @samp{\"powersave\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29466 +#: guix-git/doc/guix.texi:29803 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disks-devices" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29468 +#: guix-git/doc/guix.texi:29805 msgid "Hard disk devices." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29471 +#: guix-git/doc/guix.texi:29808 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disk-apm-level-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29473 +#: guix-git/doc/guix.texi:29810 msgid "Hard disk advanced power management level." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29476 +#: guix-git/doc/guix.texi:29813 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disk-apm-level-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29478 +#: guix-git/doc/guix.texi:29815 msgid "Same as @code{disk-apm-bat} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29481 +#: guix-git/doc/guix.texi:29818 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-spindown-timeout-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29484 +#: guix-git/doc/guix.texi:29821 msgid "Hard disk spin down timeout. One value has to be specified for each declared hard disk." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29489 +#: guix-git/doc/guix.texi:29826 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-spindown-timeout-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29491 +#: guix-git/doc/guix.texi:29828 msgid "Same as @code{disk-spindown-timeout-on-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29496 +#: guix-git/doc/guix.texi:29833 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-iosched" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29500 +#: guix-git/doc/guix.texi:29837 msgid "Select IO scheduler for disk devices. One value has to be specified for each declared hard disk. Example alternatives are cfq, deadline and noop." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29505 +#: guix-git/doc/guix.texi:29842 #, no-wrap msgid "{@code{tlp-configuration} parameter} string sata-linkpwr-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29508 +#: guix-git/doc/guix.texi:29845 msgid "SATA aggressive link power management (ALPM) level. Alternatives are min_power, medium_power, max_performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29510 +#: guix-git/doc/guix.texi:29847 msgid "Defaults to @samp{\"max_performance\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29513 +#: guix-git/doc/guix.texi:29850 #, no-wrap msgid "{@code{tlp-configuration} parameter} string sata-linkpwr-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29515 +#: guix-git/doc/guix.texi:29852 msgid "Same as @code{sata-linkpwr-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29517 +#: guix-git/doc/guix.texi:29854 msgid "Defaults to @samp{\"min_power\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29520 +#: guix-git/doc/guix.texi:29857 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string sata-linkpwr-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29522 +#: guix-git/doc/guix.texi:29859 msgid "Exclude specified SATA host devices for link power management." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29527 +#: guix-git/doc/guix.texi:29864 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-on-off-boolean ahci-runtime-pm-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29530 +#: guix-git/doc/guix.texi:29867 msgid "Enable Runtime Power Management for AHCI controller and disks on AC mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29535 +#: guix-git/doc/guix.texi:29872 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-on-off-boolean ahci-runtime-pm-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29537 +#: guix-git/doc/guix.texi:29874 msgid "Same as @code{ahci-runtime-pm-on-ac} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29542 +#: guix-git/doc/guix.texi:29879 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer ahci-runtime-pm-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29544 +#: guix-git/doc/guix.texi:29881 msgid "Seconds of inactivity before disk is suspended." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29549 +#: guix-git/doc/guix.texi:29886 #, no-wrap msgid "{@code{tlp-configuration} parameter} string pcie-aspm-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29552 +#: guix-git/doc/guix.texi:29889 msgid "PCI Express Active State Power Management level. Alternatives are default, performance, powersave." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29557 +#: guix-git/doc/guix.texi:29894 #, no-wrap msgid "{@code{tlp-configuration} parameter} string pcie-aspm-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29559 +#: guix-git/doc/guix.texi:29896 msgid "Same as @code{pcie-aspm-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29564 +#: guix-git/doc/guix.texi:29901 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer start-charge-thresh-bat0" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29903 +msgid "Percentage when battery 0 should begin charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29908 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer stop-charge-thresh-bat0" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29910 +msgid "Percentage when battery 0 should stop charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29915 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer start-charge-thresh-bat1" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29917 +msgid "Percentage when battery 1 should begin charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29922 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer stop-charge-thresh-bat1" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29924 +msgid "Percentage when battery 1 should stop charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29929 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-power-profile-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29567 +#: guix-git/doc/guix.texi:29932 msgid "Radeon graphics clock speed level. Alternatives are low, mid, high, auto, default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29569 +#: guix-git/doc/guix.texi:29934 msgid "Defaults to @samp{\"high\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29572 +#: guix-git/doc/guix.texi:29937 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-power-profile-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29574 +#: guix-git/doc/guix.texi:29939 msgid "Same as @code{radeon-power-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29576 +#: guix-git/doc/guix.texi:29941 msgid "Defaults to @samp{\"low\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29579 +#: guix-git/doc/guix.texi:29944 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-state-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29582 +#: guix-git/doc/guix.texi:29947 msgid "Radeon dynamic power management method (DPM). Alternatives are battery, performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29587 +#: guix-git/doc/guix.texi:29952 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-state-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29589 +#: guix-git/doc/guix.texi:29954 msgid "Same as @code{radeon-dpm-state-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29591 +#: guix-git/doc/guix.texi:29956 msgid "Defaults to @samp{\"battery\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29594 +#: guix-git/doc/guix.texi:29959 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-perf-level-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29596 +#: guix-git/doc/guix.texi:29961 msgid "Radeon DPM performance level. Alternatives are auto, low, high." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29598 guix-git/doc/guix.texi:29605 -#: guix-git/doc/guix.texi:29679 +#: guix-git/doc/guix.texi:29963 guix-git/doc/guix.texi:29970 +#: guix-git/doc/guix.texi:30044 msgid "Defaults to @samp{\"auto\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29601 +#: guix-git/doc/guix.texi:29966 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-perf-level-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29603 +#: guix-git/doc/guix.texi:29968 msgid "Same as @code{radeon-dpm-perf-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29608 +#: guix-git/doc/guix.texi:29973 #, no-wrap msgid "{@code{tlp-configuration} parameter} on-off-boolean wifi-pwr-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29610 +#: guix-git/doc/guix.texi:29975 msgid "Wifi power saving mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29615 +#: guix-git/doc/guix.texi:29980 #, no-wrap msgid "{@code{tlp-configuration} parameter} on-off-boolean wifi-pwr-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29617 +#: guix-git/doc/guix.texi:29982 msgid "Same as @code{wifi-power-ac?} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29622 +#: guix-git/doc/guix.texi:29987 #, no-wrap msgid "{@code{tlp-configuration} parameter} y-n-boolean wol-disable?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29624 +#: guix-git/doc/guix.texi:29989 msgid "Disable wake on LAN." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29629 +#: guix-git/doc/guix.texi:29994 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer sound-power-save-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29632 +#: guix-git/doc/guix.texi:29997 msgid "Timeout duration in seconds before activating audio power saving on Intel HDA and AC97 devices. A value of 0 disables power saving." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29637 +#: guix-git/doc/guix.texi:30002 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer sound-power-save-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29639 +#: guix-git/doc/guix.texi:30004 msgid "Same as @code{sound-powersave-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29644 +#: guix-git/doc/guix.texi:30009 #, no-wrap msgid "{@code{tlp-configuration} parameter} y-n-boolean sound-power-save-controller?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29646 +#: guix-git/doc/guix.texi:30011 msgid "Disable controller in powersaving mode on Intel HDA devices." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29651 +#: guix-git/doc/guix.texi:30016 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean bay-poweroff-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29655 +#: guix-git/doc/guix.texi:30020 msgid "Enable optical drive in UltraBay/MediaBay on BAT mode. Drive can be powered on again by releasing (and reinserting) the eject lever or by pressing the disc eject button on newer models." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29660 +#: guix-git/doc/guix.texi:30025 #, no-wrap msgid "{@code{tlp-configuration} parameter} string bay-device" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29662 +#: guix-git/doc/guix.texi:30027 msgid "Name of the optical drive device to power off." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29664 +#: guix-git/doc/guix.texi:30029 msgid "Defaults to @samp{\"sr0\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29667 +#: guix-git/doc/guix.texi:30032 #, no-wrap msgid "{@code{tlp-configuration} parameter} string runtime-pm-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29670 +#: guix-git/doc/guix.texi:30035 msgid "Runtime Power Management for PCI(e) bus devices. Alternatives are on and auto." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29672 +#: guix-git/doc/guix.texi:30037 msgid "Defaults to @samp{\"on\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29675 +#: guix-git/doc/guix.texi:30040 #, no-wrap msgid "{@code{tlp-configuration} parameter} string runtime-pm-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29677 +#: guix-git/doc/guix.texi:30042 msgid "Same as @code{runtime-pm-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29682 +#: guix-git/doc/guix.texi:30047 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean runtime-pm-all?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29685 +#: guix-git/doc/guix.texi:30050 msgid "Runtime Power Management for all PCI(e) bus devices, except blacklisted ones." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29690 +#: guix-git/doc/guix.texi:30055 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list runtime-pm-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29692 +#: guix-git/doc/guix.texi:30057 msgid "Exclude specified PCI(e) device addresses from Runtime Power Management." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29697 +#: guix-git/doc/guix.texi:30062 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list runtime-pm-driver-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29700 +#: guix-git/doc/guix.texi:30065 msgid "Exclude PCI(e) devices assigned to the specified drivers from Runtime Power Management." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29703 +#: guix-git/doc/guix.texi:30068 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean usb-autosuspend?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29705 +#: guix-git/doc/guix.texi:30070 msgid "Enable USB autosuspend feature." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29710 +#: guix-git/doc/guix.texi:30075 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string usb-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29712 +#: guix-git/doc/guix.texi:30077 msgid "Exclude specified devices from USB autosuspend." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29717 +#: guix-git/doc/guix.texi:30082 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean usb-blacklist-wwan?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29719 +#: guix-git/doc/guix.texi:30084 msgid "Exclude WWAN devices from USB autosuspend." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29724 +#: guix-git/doc/guix.texi:30089 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string usb-whitelist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29727 +#: guix-git/doc/guix.texi:30092 msgid "Include specified devices into USB autosuspend, even if they are already excluded by the driver or via @code{usb-blacklist-wwan?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29732 +#: guix-git/doc/guix.texi:30097 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean usb-autosuspend-disable-on-shutdown?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29734 +#: guix-git/doc/guix.texi:30099 msgid "Enable USB autosuspend before shutdown." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29739 +#: guix-git/doc/guix.texi:30104 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean restore-device-state-on-startup?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29742 +#: guix-git/doc/guix.texi:30107 msgid "Restore radio device state (bluetooth, wifi, wwan) from previous shutdown on system startup." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29747 +#: guix-git/doc/guix.texi:30112 #, no-wrap msgid "thermald" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29748 +#: guix-git/doc/guix.texi:30113 #, no-wrap msgid "CPU frequency scaling with thermald" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29749 +#: guix-git/doc/guix.texi:30114 #, no-wrap msgid "Thermald daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29753 +#: guix-git/doc/guix.texi:30118 msgid "The @code{(gnu services pm)} module provides an interface to thermald, a CPU frequency scaling service which helps prevent overheating." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29754 +#: guix-git/doc/guix.texi:30119 #, no-wrap msgid "{Scheme Variable} thermald-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29759 +#: guix-git/doc/guix.texi:30124 msgid "This is the service type for @uref{https://01.org/linux-thermal-daemon/, thermald}, the Linux Thermal Daemon, which is responsible for controlling the thermal state of processors and preventing overheating." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29761 +#: guix-git/doc/guix.texi:30126 #, no-wrap msgid "{Data Type} thermald-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29763 +#: guix-git/doc/guix.texi:30128 msgid "Data type representing the configuration of @code{thermald-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29765 +#: guix-git/doc/guix.texi:30130 #, no-wrap msgid "@code{ignore-cpuid-check?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29767 +#: guix-git/doc/guix.texi:30132 msgid "Ignore cpuid check for supported CPU models." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29768 +#: guix-git/doc/guix.texi:30133 #, no-wrap msgid "@code{thermald} (default: @var{thermald})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29770 +#: guix-git/doc/guix.texi:30135 msgid "Package object of thermald." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29779 +#: guix-git/doc/guix.texi:30144 msgid "The @code{(gnu services audio)} module provides a service to start MPD (the Music Player Daemon)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29780 +#: guix-git/doc/guix.texi:30145 #, no-wrap msgid "mpd" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29781 +#: guix-git/doc/guix.texi:30146 #, no-wrap msgid "Music Player Daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29786 +#: guix-git/doc/guix.texi:30151 msgid "The Music Player Daemon (MPD) is a service that can play music while being controlled from the local machine or over the network by a variety of clients." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29789 +#: guix-git/doc/guix.texi:30154 msgid "The following example shows how one might run @code{mpd} as user @code{\"bob\"} on port @code{6666}. It uses pulseaudio for output." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29795 +#: guix-git/doc/guix.texi:30160 #, no-wrap msgid "" "(service mpd-service-type\n" @@ -53585,215 +54252,215 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29797 +#: guix-git/doc/guix.texi:30162 #, no-wrap msgid "{Scheme Variable} mpd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29799 +#: guix-git/doc/guix.texi:30164 msgid "The service type for @command{mpd}" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29801 +#: guix-git/doc/guix.texi:30166 #, no-wrap msgid "{Data Type} mpd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29803 +#: guix-git/doc/guix.texi:30168 msgid "Data type representing the configuration of @command{mpd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29805 +#: guix-git/doc/guix.texi:30170 #, no-wrap msgid "@code{user} (default: @code{\"mpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29807 +#: guix-git/doc/guix.texi:30172 msgid "The user to run mpd as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29808 +#: guix-git/doc/guix.texi:30173 #, no-wrap msgid "@code{music-dir} (default: @code{\"~/Music\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29810 +#: guix-git/doc/guix.texi:30175 msgid "The directory to scan for music files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29811 +#: guix-git/doc/guix.texi:30176 #, no-wrap msgid "@code{playlist-dir} (default: @code{\"~/.mpd/playlists\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29813 +#: guix-git/doc/guix.texi:30178 msgid "The directory to store playlists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29814 +#: guix-git/doc/guix.texi:30179 #, no-wrap msgid "@code{db-file} (default: @code{\"~/.mpd/tag_cache\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29816 +#: guix-git/doc/guix.texi:30181 msgid "The location of the music database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29817 +#: guix-git/doc/guix.texi:30182 #, no-wrap msgid "@code{state-file} (default: @code{\"~/.mpd/state\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29819 +#: guix-git/doc/guix.texi:30184 msgid "The location of the file that stores current MPD's state." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29820 +#: guix-git/doc/guix.texi:30185 #, no-wrap msgid "@code{sticker-file} (default: @code{\"~/.mpd/sticker.sql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29822 +#: guix-git/doc/guix.texi:30187 msgid "The location of the sticker database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29823 +#: guix-git/doc/guix.texi:30188 #, no-wrap msgid "@code{port} (default: @code{\"6600\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29825 +#: guix-git/doc/guix.texi:30190 msgid "The port to run mpd on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29826 +#: guix-git/doc/guix.texi:30191 #, no-wrap msgid "@code{address} (default: @code{\"any\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29829 +#: guix-git/doc/guix.texi:30194 msgid "The address that mpd will bind to. To use a Unix domain socket, an absolute path can be specified here." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29830 +#: guix-git/doc/guix.texi:30195 #, no-wrap msgid "@code{outputs} (default: @code{\"(list (mpd-output))\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29832 +#: guix-git/doc/guix.texi:30197 msgid "The audio outputs that MPD can use. By default this is a single output using pulseaudio." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29836 +#: guix-git/doc/guix.texi:30201 #, no-wrap msgid "{Data Type} mpd-output" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29838 +#: guix-git/doc/guix.texi:30203 msgid "Data type representing an @command{mpd} audio output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29840 +#: guix-git/doc/guix.texi:30205 #, no-wrap msgid "@code{name} (default: @code{\"MPD\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29842 +#: guix-git/doc/guix.texi:30207 msgid "The name of the audio output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29843 +#: guix-git/doc/guix.texi:30208 #, no-wrap msgid "@code{type} (default: @code{\"pulse\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29845 +#: guix-git/doc/guix.texi:30210 msgid "The type of audio output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29846 +#: guix-git/doc/guix.texi:30211 #, no-wrap msgid "@code{enabled?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29851 +#: guix-git/doc/guix.texi:30216 msgid "Specifies whether this audio output is enabled when MPD is started. By default, all audio outputs are enabled. This is just the default setting when there is no state file; with a state file, the previous state is restored." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29852 +#: guix-git/doc/guix.texi:30217 #, no-wrap msgid "@code{tags?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29856 +#: guix-git/doc/guix.texi:30221 msgid "If set to @code{#f}, then MPD will not send tags to this output. This is only useful for output plugins that can receive tags, for example the @code{httpd} output plugin." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29857 +#: guix-git/doc/guix.texi:30222 #, no-wrap msgid "@code{always-on?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29861 +#: guix-git/doc/guix.texi:30226 msgid "If set to @code{#t}, then MPD attempts to keep this audio output always open. This may be useful for streaming servers, when you don’t want to disconnect all listeners even when playback is accidentally stopped." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:29862 +#: guix-git/doc/guix.texi:30227 #, no-wrap msgid "mixer-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29868 +#: guix-git/doc/guix.texi:30233 msgid "This field accepts a symbol that specifies which mixer should be used for this audio output: the @code{hardware} mixer, the @code{software} mixer, the @code{null} mixer (allows setting the volume, but with no effect; this can be used as a trick to implement an external mixer External Mixer) or no mixer (@code{none})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29872 +#: guix-git/doc/guix.texi:30237 msgid "An association list of option symbols to string values to be appended to the audio output configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29878 +#: guix-git/doc/guix.texi:30243 msgid "The following example shows a configuration of @code{mpd} that provides an HTTP audio streaming output." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29890 +#: guix-git/doc/guix.texi:30255 #, no-wrap msgid "" "(service mpd-service-type\n" @@ -53809,34 +54476,34 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29899 +#: guix-git/doc/guix.texi:30264 msgid "The @code{(gnu services virtualization)} module provides services for the libvirt and virtlog daemons, as well as other virtualization-related services." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29900 +#: guix-git/doc/guix.texi:30265 #, no-wrap msgid "Libvirt daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29905 +#: guix-git/doc/guix.texi:30270 msgid "@code{libvirtd} is the server side daemon component of the libvirt virtualization management system. This daemon runs on host servers and performs required management tasks for virtualized guests." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29906 +#: guix-git/doc/guix.texi:30271 #, no-wrap msgid "{Scheme Variable} libvirt-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29909 +#: guix-git/doc/guix.texi:30274 msgid "This is the type of the @uref{https://libvirt.org, libvirt daemon}. Its value must be a @code{libvirt-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29915 +#: guix-git/doc/guix.texi:30280 #, no-wrap msgid "" "(service libvirt-service-type\n" @@ -53846,870 +54513,870 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29920 +#: guix-git/doc/guix.texi:30285 msgid "Available @code{libvirt-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29921 +#: guix-git/doc/guix.texi:30286 #, no-wrap msgid "{@code{libvirt-configuration} parameter} package libvirt" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29923 +#: guix-git/doc/guix.texi:30288 msgid "Libvirt package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29926 +#: guix-git/doc/guix.texi:30291 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean listen-tls?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29929 +#: guix-git/doc/guix.texi:30294 msgid "Flag listening for secure TLS connections on the public TCP/IP port. You must set @code{listen} for this to have any effect." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29932 +#: guix-git/doc/guix.texi:30297 msgid "It is necessary to setup a CA and issue server certificates before using this capability." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29937 +#: guix-git/doc/guix.texi:30302 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean listen-tcp?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29940 +#: guix-git/doc/guix.texi:30305 msgid "Listen for unencrypted TCP connections on the public TCP/IP port. You must set @code{listen} for this to have any effect." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29944 +#: guix-git/doc/guix.texi:30309 msgid "Using the TCP socket requires SASL authentication by default. Only SASL mechanisms which support data encryption are allowed. This is DIGEST_MD5 and GSSAPI (Kerberos5)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29949 +#: guix-git/doc/guix.texi:30314 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tls-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29952 +#: guix-git/doc/guix.texi:30317 msgid "Port for accepting secure TLS connections. This can be a port number, or service name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29954 +#: guix-git/doc/guix.texi:30319 msgid "Defaults to @samp{\"16514\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29957 +#: guix-git/doc/guix.texi:30322 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tcp-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29960 +#: guix-git/doc/guix.texi:30325 msgid "Port for accepting insecure TCP connections. This can be a port number, or service name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29962 +#: guix-git/doc/guix.texi:30327 msgid "Defaults to @samp{\"16509\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29965 +#: guix-git/doc/guix.texi:30330 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string listen-addr" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29967 +#: guix-git/doc/guix.texi:30332 msgid "IP address or hostname used for client connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29972 +#: guix-git/doc/guix.texi:30337 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean mdns-adv?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29974 +#: guix-git/doc/guix.texi:30339 msgid "Flag toggling mDNS advertisement of the libvirt service." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29977 +#: guix-git/doc/guix.texi:30342 msgid "Alternatively can disable for all services on a host by stopping the Avahi daemon." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29982 +#: guix-git/doc/guix.texi:30347 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string mdns-name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29985 +#: guix-git/doc/guix.texi:30350 msgid "Default mDNS advertisement name. This must be unique on the immediate broadcast network." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29987 +#: guix-git/doc/guix.texi:30352 msgid "Defaults to @samp{\"Virtualization Host \"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29990 +#: guix-git/doc/guix.texi:30355 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29994 +#: guix-git/doc/guix.texi:30359 msgid "UNIX domain socket group ownership. This can be used to allow a 'trusted' set of users access to management capabilities without becoming root." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29999 +#: guix-git/doc/guix.texi:30364 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-ro-perms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30002 +#: guix-git/doc/guix.texi:30367 msgid "UNIX socket permissions for the R/O socket. This is used for monitoring VM status only." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30004 guix-git/doc/guix.texi:30022 +#: guix-git/doc/guix.texi:30369 guix-git/doc/guix.texi:30387 msgid "Defaults to @samp{\"0777\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30007 +#: guix-git/doc/guix.texi:30372 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-rw-perms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30011 +#: guix-git/doc/guix.texi:30376 msgid "UNIX socket permissions for the R/W socket. Default allows only root. If PolicyKit is enabled on the socket, the default will change to allow everyone (eg, 0777)" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30013 +#: guix-git/doc/guix.texi:30378 msgid "Defaults to @samp{\"0770\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30016 +#: guix-git/doc/guix.texi:30381 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-admin-perms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30020 +#: guix-git/doc/guix.texi:30385 msgid "UNIX socket permissions for the admin socket. Default allows only owner (root), do not change it unless you are sure to whom you are exposing the access to." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30025 +#: guix-git/doc/guix.texi:30390 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30027 +#: guix-git/doc/guix.texi:30392 msgid "The directory in which sockets will be found/created." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30029 +#: guix-git/doc/guix.texi:30394 msgid "Defaults to @samp{\"/var/run/libvirt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30032 +#: guix-git/doc/guix.texi:30397 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-unix-ro" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30035 +#: guix-git/doc/guix.texi:30400 msgid "Authentication scheme for UNIX read-only sockets. By default socket permissions allow anyone to connect" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30037 guix-git/doc/guix.texi:30046 +#: guix-git/doc/guix.texi:30402 guix-git/doc/guix.texi:30411 msgid "Defaults to @samp{\"polkit\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30040 +#: guix-git/doc/guix.texi:30405 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-unix-rw" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30044 +#: guix-git/doc/guix.texi:30409 msgid "Authentication scheme for UNIX read-write sockets. By default socket permissions only allow root. If PolicyKit support was compiled into libvirt, the default will be to use 'polkit' auth." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30049 +#: guix-git/doc/guix.texi:30414 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-tcp" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30053 +#: guix-git/doc/guix.texi:30418 msgid "Authentication scheme for TCP sockets. If you don't enable SASL, then all TCP traffic is cleartext. Don't do this outside of a dev/test scenario." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30055 +#: guix-git/doc/guix.texi:30420 msgid "Defaults to @samp{\"sasl\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30058 +#: guix-git/doc/guix.texi:30423 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-tls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30062 +#: guix-git/doc/guix.texi:30427 msgid "Authentication scheme for TLS sockets. TLS sockets already have encryption provided by the TLS layer, and limited authentication is done by certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30065 +#: guix-git/doc/guix.texi:30430 msgid "It is possible to make use of any SASL authentication mechanism as well, by using 'sasl' for this option" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30067 +#: guix-git/doc/guix.texi:30432 msgid "Defaults to @samp{\"none\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30070 +#: guix-git/doc/guix.texi:30435 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list access-drivers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30072 +#: guix-git/doc/guix.texi:30437 msgid "API access control scheme." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30075 +#: guix-git/doc/guix.texi:30440 msgid "By default an authenticated user is allowed access to all APIs. Access drivers can place restrictions on this." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30080 +#: guix-git/doc/guix.texi:30445 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string key-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30083 +#: guix-git/doc/guix.texi:30448 msgid "Server key file path. If set to an empty string, then no private key is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30088 +#: guix-git/doc/guix.texi:30453 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string cert-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30091 +#: guix-git/doc/guix.texi:30456 msgid "Server key file path. If set to an empty string, then no certificate is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30096 +#: guix-git/doc/guix.texi:30461 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string ca-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30099 +#: guix-git/doc/guix.texi:30464 msgid "Server key file path. If set to an empty string, then no CA certificate is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30104 +#: guix-git/doc/guix.texi:30469 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string crl-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30107 +#: guix-git/doc/guix.texi:30472 msgid "Certificate revocation list path. If set to an empty string, then no CRL is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30112 +#: guix-git/doc/guix.texi:30477 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean tls-no-sanity-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30114 +#: guix-git/doc/guix.texi:30479 msgid "Disable verification of our own server certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30117 +#: guix-git/doc/guix.texi:30482 msgid "When libvirtd starts it performs some sanity checks against its own certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30122 +#: guix-git/doc/guix.texi:30487 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean tls-no-verify-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30124 +#: guix-git/doc/guix.texi:30489 msgid "Disable verification of client certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30128 +#: guix-git/doc/guix.texi:30493 msgid "Client certificate verification is the primary authentication mechanism. Any client which does not present a certificate signed by the CA will be rejected." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30133 +#: guix-git/doc/guix.texi:30498 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list tls-allowed-dn-list" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30135 +#: guix-git/doc/guix.texi:30500 msgid "Whitelist of allowed x509 Distinguished Name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30140 +#: guix-git/doc/guix.texi:30505 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list sasl-allowed-usernames" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30143 +#: guix-git/doc/guix.texi:30508 msgid "Whitelist of allowed SASL usernames. The format for username depends on the SASL authentication mechanism." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30148 +#: guix-git/doc/guix.texi:30513 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tls-priority" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30152 +#: guix-git/doc/guix.texi:30517 msgid "Override the compile time default TLS priority string. The default is usually @samp{\"NORMAL\"} unless overridden at build time. Only set this is it is desired for libvirt to deviate from the global default settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30154 +#: guix-git/doc/guix.texi:30519 msgid "Defaults to @samp{\"NORMAL\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30157 +#: guix-git/doc/guix.texi:30522 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30160 guix-git/doc/guix.texi:30584 +#: guix-git/doc/guix.texi:30525 guix-git/doc/guix.texi:30949 msgid "Maximum number of concurrent client connections to allow over all sockets combined." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30162 +#: guix-git/doc/guix.texi:30527 msgid "Defaults to @samp{5000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30165 +#: guix-git/doc/guix.texi:30530 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-queued-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30169 +#: guix-git/doc/guix.texi:30534 msgid "Maximum length of queue of connections waiting to be accepted by the daemon. Note, that some protocols supporting retransmission may obey this so that a later reattempt at connection succeeds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30174 +#: guix-git/doc/guix.texi:30539 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-anonymous-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30177 +#: guix-git/doc/guix.texi:30542 msgid "Maximum length of queue of accepted but not yet authenticated clients. Set this to zero to turn this feature off" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30179 guix-git/doc/guix.texi:30197 -#: guix-git/doc/guix.texi:30213 +#: guix-git/doc/guix.texi:30544 guix-git/doc/guix.texi:30562 +#: guix-git/doc/guix.texi:30578 msgid "Defaults to @samp{20}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30182 +#: guix-git/doc/guix.texi:30547 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer min-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30184 +#: guix-git/doc/guix.texi:30549 msgid "Number of workers to start up initially." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30189 +#: guix-git/doc/guix.texi:30554 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30191 +#: guix-git/doc/guix.texi:30556 msgid "Maximum number of worker threads." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30195 +#: guix-git/doc/guix.texi:30560 msgid "If the number of active clients exceeds @code{min-workers}, then more threads are spawned, up to max_workers limit. Typically you'd want max_workers to equal maximum number of clients allowed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30200 +#: guix-git/doc/guix.texi:30565 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer prio-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30204 +#: guix-git/doc/guix.texi:30569 msgid "Number of priority workers. If all workers from above pool are stuck, some calls marked as high priority (notably domainDestroy) can be executed in this pool." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30209 +#: guix-git/doc/guix.texi:30574 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-requests" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30211 +#: guix-git/doc/guix.texi:30576 msgid "Total global limit on concurrent RPC calls." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30216 +#: guix-git/doc/guix.texi:30581 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-client-requests" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30220 +#: guix-git/doc/guix.texi:30585 msgid "Limit on concurrent requests from a single client connection. To avoid one client monopolizing the server this should be a small fraction of the global max_requests and max_workers parameter." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30225 +#: guix-git/doc/guix.texi:30590 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-min-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30227 +#: guix-git/doc/guix.texi:30592 msgid "Same as @code{min-workers} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30232 +#: guix-git/doc/guix.texi:30597 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30234 +#: guix-git/doc/guix.texi:30599 msgid "Same as @code{max-workers} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30239 +#: guix-git/doc/guix.texi:30604 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30241 +#: guix-git/doc/guix.texi:30606 msgid "Same as @code{max-clients} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30246 +#: guix-git/doc/guix.texi:30611 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-queued-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30248 +#: guix-git/doc/guix.texi:30613 msgid "Same as @code{max-queued-clients} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30253 +#: guix-git/doc/guix.texi:30618 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-client-requests" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30255 +#: guix-git/doc/guix.texi:30620 msgid "Same as @code{max-client-requests} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30260 +#: guix-git/doc/guix.texi:30625 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30262 guix-git/doc/guix.texi:30486 +#: guix-git/doc/guix.texi:30627 guix-git/doc/guix.texi:30851 msgid "Logging level. 4 errors, 3 warnings, 2 information, 1 debug." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30267 +#: guix-git/doc/guix.texi:30632 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string log-filters" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30269 guix-git/doc/guix.texi:30493 +#: guix-git/doc/guix.texi:30634 guix-git/doc/guix.texi:30858 msgid "Logging filters." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30272 +#: guix-git/doc/guix.texi:30637 msgid "A filter allows to select a different logging level for a given category of logs. The format for a filter is one of:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30276 guix-git/doc/guix.texi:30500 +#: guix-git/doc/guix.texi:30641 guix-git/doc/guix.texi:30865 msgid "x:name" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30279 guix-git/doc/guix.texi:30503 +#: guix-git/doc/guix.texi:30644 guix-git/doc/guix.texi:30868 msgid "x:+name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30290 +#: guix-git/doc/guix.texi:30655 msgid "where @code{name} is a string which is matched against the category given in the @code{VIR_LOG_INIT()} at the top of each libvirt source file, e.g., @samp{\"remote\"}, @samp{\"qemu\"}, or @samp{\"util.json\"} (the name in the filter can be a substring of the full category name, in order to match multiple similar categories), the optional @samp{\"+\"} prefix tells libvirt to log stack trace for each message matching name, and @code{x} is the minimal level where matching messages should be logged:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30294 guix-git/doc/guix.texi:30339 -#: guix-git/doc/guix.texi:30517 guix-git/doc/guix.texi:30562 +#: guix-git/doc/guix.texi:30659 guix-git/doc/guix.texi:30704 +#: guix-git/doc/guix.texi:30882 guix-git/doc/guix.texi:30927 msgid "1: DEBUG" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30297 guix-git/doc/guix.texi:30342 -#: guix-git/doc/guix.texi:30520 guix-git/doc/guix.texi:30565 +#: guix-git/doc/guix.texi:30662 guix-git/doc/guix.texi:30707 +#: guix-git/doc/guix.texi:30885 guix-git/doc/guix.texi:30930 msgid "2: INFO" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30300 guix-git/doc/guix.texi:30345 -#: guix-git/doc/guix.texi:30523 guix-git/doc/guix.texi:30568 +#: guix-git/doc/guix.texi:30665 guix-git/doc/guix.texi:30710 +#: guix-git/doc/guix.texi:30888 guix-git/doc/guix.texi:30933 msgid "3: WARNING" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30303 guix-git/doc/guix.texi:30348 -#: guix-git/doc/guix.texi:30526 guix-git/doc/guix.texi:30571 +#: guix-git/doc/guix.texi:30668 guix-git/doc/guix.texi:30713 +#: guix-git/doc/guix.texi:30891 guix-git/doc/guix.texi:30936 msgid "4: ERROR" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30308 guix-git/doc/guix.texi:30531 +#: guix-git/doc/guix.texi:30673 guix-git/doc/guix.texi:30896 msgid "Multiple filters can be defined in a single filters statement, they just need to be separated by spaces." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30310 guix-git/doc/guix.texi:30533 +#: guix-git/doc/guix.texi:30675 guix-git/doc/guix.texi:30898 msgid "Defaults to @samp{\"3:remote 4:event\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30313 +#: guix-git/doc/guix.texi:30678 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string log-outputs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30315 guix-git/doc/guix.texi:30538 +#: guix-git/doc/guix.texi:30680 guix-git/doc/guix.texi:30903 msgid "Logging outputs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30318 +#: guix-git/doc/guix.texi:30683 msgid "An output is one of the places to save logging information. The format for an output can be:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30320 guix-git/doc/guix.texi:30543 +#: guix-git/doc/guix.texi:30685 guix-git/doc/guix.texi:30908 #, no-wrap msgid "x:stderr" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30322 guix-git/doc/guix.texi:30545 +#: guix-git/doc/guix.texi:30687 guix-git/doc/guix.texi:30910 msgid "output goes to stderr" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30323 guix-git/doc/guix.texi:30546 +#: guix-git/doc/guix.texi:30688 guix-git/doc/guix.texi:30911 #, no-wrap msgid "x:syslog:name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30325 guix-git/doc/guix.texi:30548 +#: guix-git/doc/guix.texi:30690 guix-git/doc/guix.texi:30913 msgid "use syslog for the output and use the given name as the ident" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30326 guix-git/doc/guix.texi:30549 +#: guix-git/doc/guix.texi:30691 guix-git/doc/guix.texi:30914 #, no-wrap msgid "x:file:file_path" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30328 guix-git/doc/guix.texi:30551 +#: guix-git/doc/guix.texi:30693 guix-git/doc/guix.texi:30916 msgid "output to a file, with the given filepath" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30329 guix-git/doc/guix.texi:30552 +#: guix-git/doc/guix.texi:30694 guix-git/doc/guix.texi:30917 #, no-wrap msgid "x:journald" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30331 guix-git/doc/guix.texi:30554 +#: guix-git/doc/guix.texi:30696 guix-git/doc/guix.texi:30919 msgid "output to journald logging system" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30335 guix-git/doc/guix.texi:30558 +#: guix-git/doc/guix.texi:30700 guix-git/doc/guix.texi:30923 msgid "In all case the x prefix is the minimal level, acting as a filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30353 guix-git/doc/guix.texi:30576 +#: guix-git/doc/guix.texi:30718 guix-git/doc/guix.texi:30941 msgid "Multiple outputs can be defined, they just need to be separated by spaces." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30355 guix-git/doc/guix.texi:30578 +#: guix-git/doc/guix.texi:30720 guix-git/doc/guix.texi:30943 msgid "Defaults to @samp{\"3:stderr\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30358 +#: guix-git/doc/guix.texi:30723 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer audit-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30360 +#: guix-git/doc/guix.texi:30725 msgid "Allows usage of the auditing subsystem to be altered" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30364 +#: guix-git/doc/guix.texi:30729 msgid "0: disable all auditing" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30367 +#: guix-git/doc/guix.texi:30732 msgid "1: enable auditing, only if enabled on host" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30370 +#: guix-git/doc/guix.texi:30735 msgid "2: enable auditing, and exit if disabled on host." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30377 +#: guix-git/doc/guix.texi:30742 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean audit-logging" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30379 +#: guix-git/doc/guix.texi:30744 msgid "Send audit messages via libvirt logging infrastructure." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30384 +#: guix-git/doc/guix.texi:30749 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-string host-uuid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30386 +#: guix-git/doc/guix.texi:30751 msgid "Host UUID@. UUID must not have all digits be the same." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30391 +#: guix-git/doc/guix.texi:30756 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string host-uuid-source" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30393 +#: guix-git/doc/guix.texi:30758 msgid "Source to read host UUID." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30397 +#: guix-git/doc/guix.texi:30762 msgid "@code{smbios}: fetch the UUID from @code{dmidecode -s system-uuid}" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30400 +#: guix-git/doc/guix.texi:30765 msgid "@code{machine-id}: fetch the UUID from @code{/etc/machine-id}" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30405 +#: guix-git/doc/guix.texi:30770 msgid "If @code{dmidecode} does not provide a valid UUID a temporary UUID will be generated." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30407 +#: guix-git/doc/guix.texi:30772 msgid "Defaults to @samp{\"smbios\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30410 +#: guix-git/doc/guix.texi:30775 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer keepalive-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30415 +#: guix-git/doc/guix.texi:30780 msgid "A keepalive message is sent to a client after @code{keepalive_interval} seconds of inactivity to check if the client is still responding. If set to -1, libvirtd will never send keepalive requests; however clients can still send them and the daemon will send responses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30420 +#: guix-git/doc/guix.texi:30785 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer keepalive-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30424 +#: guix-git/doc/guix.texi:30789 msgid "Maximum number of keepalive messages that are allowed to be sent to the client without getting any response before the connection is considered broken." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30431 +#: guix-git/doc/guix.texi:30796 msgid "In other words, the connection is automatically closed approximately after @code{keepalive_interval * (keepalive_count + 1)} seconds since the last message received from the client. When @code{keepalive-count} is set to 0, connections will be automatically closed after @code{keepalive-interval} seconds of inactivity without sending any keepalive messages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30436 +#: guix-git/doc/guix.texi:30801 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-keepalive-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30438 guix-git/doc/guix.texi:30445 +#: guix-git/doc/guix.texi:30803 guix-git/doc/guix.texi:30810 msgid "Same as above but for admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30443 +#: guix-git/doc/guix.texi:30808 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-keepalive-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30450 +#: guix-git/doc/guix.texi:30815 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer ovs-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30452 +#: guix-git/doc/guix.texi:30817 msgid "Timeout for Open vSwitch calls." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30456 +#: guix-git/doc/guix.texi:30821 msgid "The @code{ovs-vsctl} utility is used for the configuration and its timeout option is set by default to 5 seconds to avoid potential infinite waits blocking libvirt." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30463 +#: guix-git/doc/guix.texi:30828 #, no-wrap msgid "Virtlog daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30466 +#: guix-git/doc/guix.texi:30831 msgid "The virtlogd service is a server side daemon component of libvirt that is used to manage logs from virtual machine consoles." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30472 +#: guix-git/doc/guix.texi:30837 msgid "This daemon is not used directly by libvirt client applications, rather it is called on their behalf by @code{libvirtd}. By maintaining the logs in a standalone daemon, the main @code{libvirtd} daemon can be restarted without risk of losing logs. The @code{virtlogd} daemon has the ability to re-exec() itself upon receiving @code{SIGUSR1}, to allow live upgrades without downtime." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30473 +#: guix-git/doc/guix.texi:30838 #, no-wrap msgid "{Scheme Variable} virtlog-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30476 +#: guix-git/doc/guix.texi:30841 msgid "This is the type of the virtlog daemon. Its value must be a @code{virtlog-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30481 +#: guix-git/doc/guix.texi:30846 #, no-wrap msgid "" "(service virtlog-service-type\n" @@ -54718,122 +55385,122 @@ msgid "" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30484 +#: guix-git/doc/guix.texi:30849 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30491 +#: guix-git/doc/guix.texi:30856 #, no-wrap msgid "{@code{virtlog-configuration} parameter} string log-filters" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30496 +#: guix-git/doc/guix.texi:30861 msgid "A filter allows to select a different logging level for a given category of logs The format for a filter is one of:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30513 +#: guix-git/doc/guix.texi:30878 msgid "where @code{name} is a string which is matched against the category given in the @code{VIR_LOG_INIT()} at the top of each libvirt source file, e.g., \"remote\", \"qemu\", or \"util.json\" (the name in the filter can be a substring of the full category name, in order to match multiple similar categories), the optional \"+\" prefix tells libvirt to log stack trace for each message matching name, and @code{x} is the minimal level where matching messages should be logged:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30536 +#: guix-git/doc/guix.texi:30901 #, no-wrap msgid "{@code{virtlog-configuration} parameter} string log-outputs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30541 +#: guix-git/doc/guix.texi:30906 msgid "An output is one of the places to save logging information The format for an output can be:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30581 +#: guix-git/doc/guix.texi:30946 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30586 +#: guix-git/doc/guix.texi:30951 msgid "Defaults to @samp{1024}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30589 +#: guix-git/doc/guix.texi:30954 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30591 +#: guix-git/doc/guix.texi:30956 msgid "Maximum file size before rolling over." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30593 +#: guix-git/doc/guix.texi:30958 msgid "Defaults to @samp{2MB}" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30596 +#: guix-git/doc/guix.texi:30961 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-backups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30598 +#: guix-git/doc/guix.texi:30963 msgid "Maximum number of backup files to keep." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30600 +#: guix-git/doc/guix.texi:30965 msgid "Defaults to @samp{3}" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:30604 +#: guix-git/doc/guix.texi:30969 msgid "transparent-emulation-qemu" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30604 +#: guix-git/doc/guix.texi:30969 #, no-wrap msgid "Transparent Emulation with QEMU" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30606 guix-git/doc/guix.texi:30686 +#: guix-git/doc/guix.texi:30971 guix-git/doc/guix.texi:31051 #, no-wrap msgid "emulation" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:30607 +#: guix-git/doc/guix.texi:30972 #, no-wrap msgid "binfmt_misc" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30615 +#: guix-git/doc/guix.texi:30980 msgid "@code{qemu-binfmt-service-type} provides support for transparent emulation of program binaries built for different architectures---e.g., it allows you to transparently execute an ARMv7 program on an x86_64 machine. It achieves this by combining the @uref{https://www.qemu.org, QEMU} emulator and the @code{binfmt_misc} feature of the kernel Linux. This feature only allows you to emulate GNU/Linux on a different architecture, but see below for GNU/Hurd support." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30616 +#: guix-git/doc/guix.texi:30981 #, no-wrap msgid "{Scheme Variable} qemu-binfmt-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30621 +#: guix-git/doc/guix.texi:30986 msgid "This is the type of the QEMU/binfmt service for transparent emulation. Its value must be a @code{qemu-binfmt-configuration} object, which specifies the QEMU package to use as well as the architecture we want to emulated:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30626 +#: guix-git/doc/guix.texi:30991 #, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -54842,39 +55509,39 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30632 +#: guix-git/doc/guix.texi:30997 msgid "In this example, we enable transparent emulation for the ARM and aarch64 platforms. Running @code{herd stop qemu-binfmt} turns it off, and running @code{herd start qemu-binfmt} turns it back on (@pxref{Invoking herd, the @command{herd} command,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30634 +#: guix-git/doc/guix.texi:30999 #, no-wrap msgid "{Data Type} qemu-binfmt-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30636 +#: guix-git/doc/guix.texi:31001 msgid "This is the configuration for the @code{qemu-binfmt} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30638 +#: guix-git/doc/guix.texi:31003 #, no-wrap msgid "@code{platforms} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30641 +#: guix-git/doc/guix.texi:31006 msgid "The list of emulated QEMU platforms. Each item must be a @dfn{platform object} as returned by @code{lookup-qemu-platforms} (see below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30644 +#: guix-git/doc/guix.texi:31009 msgid "For example, let's suppose you're on an x86_64 machine and you have this service:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30649 +#: guix-git/doc/guix.texi:31014 #, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -54883,79 +55550,79 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30652 +#: guix-git/doc/guix.texi:31017 msgid "You can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30655 +#: guix-git/doc/guix.texi:31020 #, no-wrap msgid "guix build -s armhf-linux inkscape\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30662 +#: guix-git/doc/guix.texi:31027 msgid "and it will build Inkscape for ARMv7 @emph{as if it were a native build}, transparently using QEMU to emulate the ARMv7 CPU@. Pretty handy if you'd like to test a package build for an architecture you don't have access to!" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30663 +#: guix-git/doc/guix.texi:31028 #, no-wrap msgid "@code{qemu} (default: @code{qemu})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30665 guix-git/doc/guix.texi:30723 -#: guix-git/doc/guix.texi:30805 +#: guix-git/doc/guix.texi:31030 guix-git/doc/guix.texi:31088 +#: guix-git/doc/guix.texi:31170 msgid "The QEMU package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30668 +#: guix-git/doc/guix.texi:31033 #, no-wrap msgid "{Scheme Procedure} lookup-qemu-platforms @var{platforms}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30673 +#: guix-git/doc/guix.texi:31038 msgid "Return the list of QEMU platform objects corresponding to @var{platforms}@dots{}. @var{platforms} must be a list of strings corresponding to platform names, such as @code{\"arm\"}, @code{\"sparc\"}, @code{\"mips64el\"}, and so on." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30675 +#: guix-git/doc/guix.texi:31040 #, no-wrap msgid "{Scheme Procedure} qemu-platform? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30677 +#: guix-git/doc/guix.texi:31042 msgid "Return true if @var{obj} is a platform object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30679 +#: guix-git/doc/guix.texi:31044 #, no-wrap msgid "{Scheme Procedure} qemu-platform-name @var{platform}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30681 +#: guix-git/doc/guix.texi:31046 msgid "Return the name of @var{platform}---a string such as @code{\"arm\"}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30684 +#: guix-git/doc/guix.texi:31049 #, no-wrap msgid "QEMU Guest Agent" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30692 +#: guix-git/doc/guix.texi:31057 msgid "The QEMU guest agent provides control over the emulated system to the host. The @code{qemu-guest-agent} service runs the agent on Guix guests. To control the agent from the host, open a socket by invoking QEMU with the following arguments:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30699 +#: guix-git/doc/guix.texi:31064 #, no-wrap msgid "" "qemu-system-x86_64 \\\n" @@ -54966,12 +55633,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30703 +#: guix-git/doc/guix.texi:31068 msgid "This creates a socket at @file{/tmp/qga.sock} on the host. Once the guest agent is running, you can issue commands with @code{socat}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30708 +#: guix-git/doc/guix.texi:31073 #, no-wrap msgid "" "$ guix shell socat -- socat unix-connect:/tmp/qga.sock stdio\n" @@ -54980,74 +55647,74 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30712 +#: guix-git/doc/guix.texi:31077 msgid "See @url{https://wiki.qemu.org/Features/GuestAgent,QEMU guest agent documentation} for more options and commands." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30713 +#: guix-git/doc/guix.texi:31078 #, no-wrap msgid "{Scheme Variable} qemu-guest-agent-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30715 +#: guix-git/doc/guix.texi:31080 msgid "Service type for the QEMU guest agent service." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30717 +#: guix-git/doc/guix.texi:31082 #, no-wrap msgid "{Data Type} qemu-guest-agent-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30719 +#: guix-git/doc/guix.texi:31084 msgid "Configuration for the @code{qemu-guest-agent} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30721 guix-git/doc/guix.texi:30803 +#: guix-git/doc/guix.texi:31086 guix-git/doc/guix.texi:31168 #, no-wrap msgid "@code{qemu} (default: @code{qemu-minimal})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30724 +#: guix-git/doc/guix.texi:31089 #, no-wrap msgid "@code{device} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30727 +#: guix-git/doc/guix.texi:31092 msgid "File name of the device or socket the agent uses to communicate with the host. If empty, QEMU uses a default file name." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30731 +#: guix-git/doc/guix.texi:31096 #, no-wrap msgid "The Hurd in a Virtual Machine" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30734 +#: guix-git/doc/guix.texi:31099 #, no-wrap msgid "the Hurd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30735 +#: guix-git/doc/guix.texi:31100 #, no-wrap msgid "childhurd" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30743 +#: guix-git/doc/guix.texi:31108 msgid "Service @code{hurd-vm} provides support for running GNU/Hurd in a virtual machine (VM), a so-called @dfn{childhurd}. This service is meant to be used on GNU/Linux and the given GNU/Hurd operating system configuration is cross-compiled. The virtual machine is a Shepherd service that can be referred to by the names @code{hurd-vm} and @code{childhurd} and be controlled with commands such as:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30747 +#: guix-git/doc/guix.texi:31112 #, no-wrap msgid "" "herd start hurd-vm\n" @@ -55055,50 +55722,50 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30751 +#: guix-git/doc/guix.texi:31116 msgid "When the service is running, you can view its console by connecting to it with a VNC client, for example with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30754 +#: guix-git/doc/guix.texi:31119 #, no-wrap msgid "guix shell tigervnc-client -- vncviewer localhost:5900\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30760 +#: guix-git/doc/guix.texi:31125 msgid "The default configuration (see @code{hurd-vm-configuration} below) spawns a secure shell (SSH) server in your GNU/Hurd system, which QEMU (the virtual machine emulator) redirects to port 10222 on the host. Thus, you can connect over SSH to the childhurd with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30763 +#: guix-git/doc/guix.texi:31128 #, no-wrap msgid "ssh root@@localhost -p 10022\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30772 +#: guix-git/doc/guix.texi:31137 msgid "The childhurd is volatile and stateless: it starts with a fresh root file system every time you restart it. By default though, all the files under @file{/etc/childhurd} on the host are copied as is to the root file system of the childhurd when it boots. This allows you to initialize ``secrets'' inside the VM: SSH host keys, authorized substitute keys, and so on---see the explanation of @code{secret-root} below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30773 +#: guix-git/doc/guix.texi:31138 #, no-wrap msgid "{Scheme Variable} hurd-vm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30779 +#: guix-git/doc/guix.texi:31144 msgid "This is the type of the Hurd in a Virtual Machine service. Its value must be a @code{hurd-vm-configuration} object, which specifies the operating system (@pxref{operating-system Reference}) and the disk size for the Hurd Virtual Machine, the QEMU package to use as well as the options for running it." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30781 +#: guix-git/doc/guix.texi:31146 msgid "For example:" msgstr "Esimerkiksi:" #. type: lisp -#: guix-git/doc/guix.texi:30787 +#: guix-git/doc/guix.texi:31152 #, no-wrap msgid "" "(service hurd-vm-service-type\n" @@ -55108,99 +55775,99 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30791 +#: guix-git/doc/guix.texi:31156 msgid "would create a disk image big enough to build GNU@tie{}Hello, with some extra memory." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30793 +#: guix-git/doc/guix.texi:31158 #, no-wrap msgid "{Data Type} hurd-vm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30796 +#: guix-git/doc/guix.texi:31161 msgid "The data type representing the configuration for @code{hurd-vm-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30798 +#: guix-git/doc/guix.texi:31163 #, no-wrap msgid "@code{os} (default: @var{%hurd-vm-operating-system})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30802 +#: guix-git/doc/guix.texi:31167 msgid "The operating system to instantiate. This default is bare-bones with a permissive OpenSSH secure shell daemon listening on port 2222 (@pxref{Networking Services, @code{openssh-service-type}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30806 +#: guix-git/doc/guix.texi:31171 #, no-wrap msgid "@code{image} (default: @var{hurd-vm-disk-image})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30809 +#: guix-git/doc/guix.texi:31174 msgid "The procedure used to build the disk-image built from this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30810 +#: guix-git/doc/guix.texi:31175 #, no-wrap msgid "@code{disk-size} (default: @code{'guess})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30812 +#: guix-git/doc/guix.texi:31177 msgid "The size of the disk image." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30813 +#: guix-git/doc/guix.texi:31178 #, no-wrap msgid "@code{memory-size} (default: @code{512})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30815 +#: guix-git/doc/guix.texi:31180 msgid "The memory size of the Virtual Machine in mebibytes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30816 +#: guix-git/doc/guix.texi:31181 #, no-wrap msgid "@code{options} (default: @code{'(\"--snapshot\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30818 +#: guix-git/doc/guix.texi:31183 msgid "The extra options for running QEMU." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30823 +#: guix-git/doc/guix.texi:31188 msgid "If set, a non-zero positive integer used to parameterize Childhurd instances. It is appended to the service's name, e.g. @code{childhurd1}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30824 +#: guix-git/doc/guix.texi:31189 #, no-wrap msgid "@code{net-options} (default: @var{hurd-vm-net-options})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30826 +#: guix-git/doc/guix.texi:31191 msgid "The procedure used to produce the list of QEMU networking options." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30828 +#: guix-git/doc/guix.texi:31193 msgid "By default, it produces" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30836 +#: guix-git/doc/guix.texi:31201 #, no-wrap msgid "" "'(\"--device\" \"rtl8139,netdev=net0\"\n" @@ -55212,12 +55879,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30839 +#: guix-git/doc/guix.texi:31204 msgid "with forwarded ports:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30844 +#: guix-git/doc/guix.texi:31209 #, no-wrap msgid "" "@var{secrets-port}: @code{(+ 11004 (* 1000 @var{ID}))}\n" @@ -55226,28 +55893,28 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30846 +#: guix-git/doc/guix.texi:31211 #, no-wrap msgid "@code{secret-root} (default: @file{/etc/childhurd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30851 +#: guix-git/doc/guix.texi:31216 msgid "The root directory with out-of-band secrets to be installed into the childhurd once it runs. Childhurds are volatile which means that on every startup, secrets such as the SSH host keys and Guix signing key are recreated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30855 +#: guix-git/doc/guix.texi:31220 msgid "If the @file{/etc/childhurd} directory does not exist, the @code{secret-service} running in the Childhurd will be sent an empty list of secrets." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30858 +#: guix-git/doc/guix.texi:31223 msgid "By default, the service automatically populates @file{/etc/childhurd} with the following non-volatile secrets, unless they already exist:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30867 +#: guix-git/doc/guix.texi:31232 #, no-wrap msgid "" "/etc/childhurd/etc/guix/acl\n" @@ -55260,34 +55927,34 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30871 +#: guix-git/doc/guix.texi:31236 msgid "These files are automatically sent to the guest Hurd VM when it boots, including permissions." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30872 +#: guix-git/doc/guix.texi:31237 #, no-wrap msgid "childhurd, offloading" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30873 +#: guix-git/doc/guix.texi:31238 #, no-wrap msgid "Hurd, offloading" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30877 +#: guix-git/doc/guix.texi:31242 msgid "Having these files in place means that only a couple of things are missing to allow the host to offload @code{i586-gnu} builds to the childhurd:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:30882 +#: guix-git/doc/guix.texi:31247 msgid "Authorizing the childhurd's key on the host so that the host accepts build results coming from the childhurd, which can be done like so:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30886 +#: guix-git/doc/guix.texi:31251 #, no-wrap msgid "" "guix archive --authorize < \\\n" @@ -55295,22 +55962,22 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:30891 +#: guix-git/doc/guix.texi:31256 msgid "Adding the childhurd to @file{/etc/guix/machines.scm} (@pxref{Daemon Offload Setup})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30895 +#: guix-git/doc/guix.texi:31260 msgid "We're working towards making that happen automatically---get in touch with us at @email{guix-devel@@gnu.org} to discuss it!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30902 +#: guix-git/doc/guix.texi:31267 msgid "Note that by default the VM image is volatile, i.e., once stopped the contents are lost. If you want a stateful image instead, override the configuration's @code{image} and @code{options} without the @code{--snapshot} flag using something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30908 +#: guix-git/doc/guix.texi:31273 #, no-wrap msgid "" "(service hurd-vm-service-type\n" @@ -55320,34 +55987,34 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30910 +#: guix-git/doc/guix.texi:31275 #, no-wrap msgid "Ganeti" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30912 +#: guix-git/doc/guix.texi:31277 #, no-wrap msgid "ganeti" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:30919 +#: guix-git/doc/guix.texi:31284 msgid "This service is considered experimental. Configuration options may be changed in a backwards-incompatible manner, and not all features have been thorougly tested. Users of this service are encouraged to share their experience at @email{guix-devel@@gnu.org}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30929 +#: guix-git/doc/guix.texi:31294 msgid "Ganeti is a virtual machine management system. It is designed to keep virtual machines running on a cluster of servers even in the event of hardware failures, and to make maintenance and recovery tasks easy. It consists of multiple services which are described later in this section. In addition to the Ganeti service, you will need the OpenSSH service (@pxref{Networking Services, @code{openssh-service-type}}), and update the @file{/etc/hosts} file (@pxref{operating-system Reference, @code{hosts-file}}) with the cluster name and address (or use a DNS server)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30934 +#: guix-git/doc/guix.texi:31299 msgid "All nodes participating in a Ganeti cluster should have the same Ganeti and @file{/etc/hosts} configuration. Here is an example configuration for a Ganeti cluster node that supports multiple storage backends, and installs the @code{debootstrap} and @code{guix} @dfn{OS providers}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30944 +#: guix-git/doc/guix.texi:31309 #, no-wrap msgid "" "(use-package-modules virtualization)\n" @@ -55362,7 +56029,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30949 +#: guix-git/doc/guix.texi:31314 #, no-wrap msgid "" "192.168.1.200 ganeti.example.com\n" @@ -55373,7 +56040,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30970 +#: guix-git/doc/guix.texi:31335 #, no-wrap msgid "" " ;; Install QEMU so we can use KVM-based instances, and LVM, DRBD and Ceph\n" @@ -55400,7 +56067,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30975 +#: guix-git/doc/guix.texi:31340 #, no-wrap msgid "" " ;; Ganeti uses SSH to communicate between nodes.\n" @@ -55411,7 +56078,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30985 +#: guix-git/doc/guix.texi:31350 #, no-wrap msgid "" " (service ganeti-service-type\n" @@ -55426,120 +56093,120 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30993 +#: guix-git/doc/guix.texi:31358 msgid "Users are advised to read the @url{http://docs.ganeti.org/ganeti/master/html/admin.html,Ganeti administrators guide} to learn about the various cluster options and day-to-day operations. There is also a @url{https://guix.gnu.org/blog/2020/running-a-ganeti-cluster-on-guix/,blog post} describing how to configure and initialize a small cluster." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30994 +#: guix-git/doc/guix.texi:31359 #, no-wrap msgid "{Scheme Variable} ganeti-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30997 +#: guix-git/doc/guix.texi:31362 msgid "This is a service type that includes all the various services that Ganeti nodes should run." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31002 +#: guix-git/doc/guix.texi:31367 msgid "Its value is a @code{ganeti-configuration} object that defines the package to use for CLI operations, as well as configuration for the various daemons. Allowed file storage paths and available guest operating systems are also configured through this data type." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31004 +#: guix-git/doc/guix.texi:31369 #, no-wrap msgid "{Data Type} ganeti-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31006 +#: guix-git/doc/guix.texi:31371 msgid "The @code{ganeti} service takes the following configuration options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31008 guix-git/doc/guix.texi:31236 -#: guix-git/doc/guix.texi:31286 guix-git/doc/guix.texi:31316 -#: guix-git/doc/guix.texi:31343 guix-git/doc/guix.texi:31375 -#: guix-git/doc/guix.texi:31428 guix-git/doc/guix.texi:31448 -#: guix-git/doc/guix.texi:31474 guix-git/doc/guix.texi:31507 -#: guix-git/doc/guix.texi:31547 +#: guix-git/doc/guix.texi:31373 guix-git/doc/guix.texi:31601 +#: guix-git/doc/guix.texi:31651 guix-git/doc/guix.texi:31681 +#: guix-git/doc/guix.texi:31708 guix-git/doc/guix.texi:31740 +#: guix-git/doc/guix.texi:31793 guix-git/doc/guix.texi:31813 +#: guix-git/doc/guix.texi:31839 guix-git/doc/guix.texi:31872 +#: guix-git/doc/guix.texi:31912 #, no-wrap msgid "@code{ganeti} (default: @code{ganeti})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31013 +#: guix-git/doc/guix.texi:31378 msgid "The @code{ganeti} package to use. It will be installed to the system profile and make @command{gnt-cluster}, @command{gnt-instance}, etc available. Note that the value specified here does not affect the other services as each refer to a specific @code{ganeti} package (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31014 +#: guix-git/doc/guix.texi:31379 #, no-wrap msgid "@code{noded-configuration} (default: @code{(ganeti-noded-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31015 +#: guix-git/doc/guix.texi:31380 #, no-wrap msgid "@code{confd-configuration} (default: @code{(ganeti-confd-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31016 +#: guix-git/doc/guix.texi:31381 #, no-wrap msgid "@code{wconfd-configuration} (default: @code{(ganeti-wconfd-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31017 +#: guix-git/doc/guix.texi:31382 #, no-wrap msgid "@code{luxid-configuration} (default: @code{(ganeti-luxid-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31018 +#: guix-git/doc/guix.texi:31383 #, no-wrap msgid "@code{rapi-configuration} (default: @code{(ganeti-rapi-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31019 +#: guix-git/doc/guix.texi:31384 #, no-wrap msgid "@code{kvmd-configuration} (default: @code{(ganeti-kvmd-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31020 +#: guix-git/doc/guix.texi:31385 #, no-wrap msgid "@code{mond-configuration} (default: @code{(ganeti-mond-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31021 +#: guix-git/doc/guix.texi:31386 #, no-wrap msgid "@code{metad-configuration} (default: @code{(ganeti-metad-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31022 +#: guix-git/doc/guix.texi:31387 #, no-wrap msgid "@code{watcher-configuration} (default: @code{(ganeti-watcher-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31023 +#: guix-git/doc/guix.texi:31388 #, no-wrap msgid "@code{cleaner-configuration} (default: @code{(ganeti-cleaner-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31028 +#: guix-git/doc/guix.texi:31393 msgid "These options control the various daemons and cron jobs that are distributed with Ganeti. The possible values for these are described in detail below. To override a setting, you must use the configuration type for that service:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31038 +#: guix-git/doc/guix.texi:31403 #, no-wrap msgid "" "(service ganeti-service-type\n" @@ -55553,34 +56220,34 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31040 +#: guix-git/doc/guix.texi:31405 #, no-wrap msgid "@code{file-storage-paths} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31042 +#: guix-git/doc/guix.texi:31407 msgid "List of allowed directories for file storage backend." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31043 +#: guix-git/doc/guix.texi:31408 #, no-wrap msgid "@code{os} (default: @code{%default-ganeti-os})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31045 +#: guix-git/doc/guix.texi:31410 msgid "List of @code{} records." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31049 +#: guix-git/doc/guix.texi:31414 msgid "In essence @code{ganeti-service-type} is shorthand for declaring each service individually:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31060 +#: guix-git/doc/guix.texi:31425 #, no-wrap msgid "" "(service ganeti-noded-service-type)\n" @@ -55595,297 +56262,297 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31064 +#: guix-git/doc/guix.texi:31429 msgid "Plus a service extension for @code{etc-service-type} that configures the file storage backend and OS variants." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31067 +#: guix-git/doc/guix.texi:31432 #, no-wrap msgid "{Data Type} ganeti-os" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31070 +#: guix-git/doc/guix.texi:31435 msgid "This data type is suitable for passing to the @code{os} parameter of @code{ganeti-configuration}. It takes the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31076 +#: guix-git/doc/guix.texi:31441 msgid "The name for this OS provider. It is only used to specify where the configuration ends up. Setting it to ``debootstrap'' will create @file{/etc/ganeti/instance-debootstrap}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:31077 +#: guix-git/doc/guix.texi:31442 #, no-wrap msgid "extension" msgstr "laajennus" #. type: table -#: guix-git/doc/guix.texi:31080 +#: guix-git/doc/guix.texi:31445 msgid "The file extension for variants of this OS type. For example @file{.conf} or @file{.scm}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31081 +#: guix-git/doc/guix.texi:31446 #, no-wrap msgid "@code{variants} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31083 +#: guix-git/doc/guix.texi:31448 msgid "List of @code{ganeti-os-variant} objects for this OS." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31087 +#: guix-git/doc/guix.texi:31452 #, no-wrap msgid "{Data Type} ganeti-os-variant" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31090 +#: guix-git/doc/guix.texi:31455 msgid "This is the data type for a Ganeti OS variant. It takes the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31094 +#: guix-git/doc/guix.texi:31459 msgid "The name of this variant." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:31095 +#: guix-git/doc/guix.texi:31460 #, no-wrap msgid "configuration" msgstr "asetukset" #. type: table -#: guix-git/doc/guix.texi:31097 +#: guix-git/doc/guix.texi:31462 msgid "A configuration file for this variant." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31100 +#: guix-git/doc/guix.texi:31465 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-hooks" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31102 +#: guix-git/doc/guix.texi:31467 msgid "This variable contains hooks to configure networking and the GRUB bootloader." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31104 +#: guix-git/doc/guix.texi:31469 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-extra-pkgs" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31106 +#: guix-git/doc/guix.texi:31471 msgid "This variable contains a list of packages suitable for a fully-virtualized guest." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31108 +#: guix-git/doc/guix.texi:31473 #, no-wrap msgid "{Data Type} debootstrap-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31111 +#: guix-git/doc/guix.texi:31476 msgid "This data type creates configuration files suitable for the debootstrap OS provider." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31113 +#: guix-git/doc/guix.texi:31478 #, no-wrap msgid "@code{hooks} (default: @code{%default-debootstrap-hooks})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31117 +#: guix-git/doc/guix.texi:31482 msgid "When not @code{#f}, this must be a G-expression that specifies a directory with scripts that will run when the OS is installed. It can also be a list of @code{(name . file-like)} pairs. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31120 +#: guix-git/doc/guix.texi:31485 #, no-wrap msgid "`((99-hello-world . ,(plain-file \"#!/bin/sh\\necho Hello, World\")))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31125 +#: guix-git/doc/guix.texi:31490 msgid "That will create a directory with one executable named @code{99-hello-world} and run it every time this variant is installed. If set to @code{#f}, hooks in @file{/etc/ganeti/instance-debootstrap/hooks} will be used, if any." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31125 +#: guix-git/doc/guix.texi:31490 #, no-wrap msgid "@code{proxy} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31127 +#: guix-git/doc/guix.texi:31492 msgid "Optional HTTP proxy to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31127 +#: guix-git/doc/guix.texi:31492 guix-git/doc/guix.texi:33685 #, no-wrap msgid "@code{mirror} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31130 +#: guix-git/doc/guix.texi:31495 msgid "The Debian mirror. Typically something like @code{http://ftp.no.debian.org/debian}. The default varies depending on the distribution." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31130 +#: guix-git/doc/guix.texi:31495 #, no-wrap msgid "@code{arch} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31133 +#: guix-git/doc/guix.texi:31498 msgid "The dpkg architecture. Set to @code{armhf} to debootstrap an ARMv7 instance on an AArch64 host. Default is to use the current system architecture." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31133 +#: guix-git/doc/guix.texi:31498 #, no-wrap msgid "@code{suite} (default: @code{\"stable\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31136 +#: guix-git/doc/guix.texi:31501 msgid "When set, this must be a Debian distribution ``suite'' such as @code{buster} or @code{focal}. If set to @code{#f}, the default for the OS provider is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31136 +#: guix-git/doc/guix.texi:31501 #, no-wrap msgid "@code{extra-pkgs} (default: @code{%default-debootstrap-extra-pkgs})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31139 +#: guix-git/doc/guix.texi:31504 msgid "List of extra packages that will get installed by dpkg in addition to the minimal system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31139 +#: guix-git/doc/guix.texi:31504 #, no-wrap msgid "@code{components} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31142 +#: guix-git/doc/guix.texi:31507 msgid "When set, must be a list of Debian repository ``components''. For example @code{'(\"main\" \"contrib\")}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31142 +#: guix-git/doc/guix.texi:31507 #, no-wrap msgid "@code{generate-cache?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31144 +#: guix-git/doc/guix.texi:31509 msgid "Whether to automatically cache the generated debootstrap archive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31144 +#: guix-git/doc/guix.texi:31509 #, no-wrap msgid "@code{clean-cache} (default: @code{14})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31147 +#: guix-git/doc/guix.texi:31512 msgid "Discard the cache after this amount of days. Use @code{#f} to never clear the cache." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31147 +#: guix-git/doc/guix.texi:31512 #, no-wrap msgid "@code{partition-style} (default: @code{'msdos})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31150 +#: guix-git/doc/guix.texi:31515 msgid "The type of partition to create. When set, it must be one of @code{'msdos}, @code{'none} or a string." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31150 +#: guix-git/doc/guix.texi:31515 #, no-wrap msgid "@code{partition-alignment} (default: @code{2048})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31152 +#: guix-git/doc/guix.texi:31517 msgid "Alignment of the partition in sectors." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31155 +#: guix-git/doc/guix.texi:31520 #, no-wrap msgid "{Scheme Procedure} debootstrap-variant @var{name} @var{configuration}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31158 +#: guix-git/doc/guix.texi:31523 msgid "This is a helper procedure that creates a @code{ganeti-os-variant} record. It takes two parameters: a name and a @code{debootstrap-configuration} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31160 +#: guix-git/doc/guix.texi:31525 #, no-wrap msgid "{Scheme Procedure} debootstrap-os @var{variants}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31163 +#: guix-git/doc/guix.texi:31528 msgid "This is a helper procedure that creates a @code{ganeti-os} record. It takes a list of variants created with @code{debootstrap-variant}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31165 +#: guix-git/doc/guix.texi:31530 #, no-wrap msgid "{Scheme Procedure} guix-variant @var{name} @var{configuration}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31170 +#: guix-git/doc/guix.texi:31535 msgid "This is a helper procedure that creates a @code{ganeti-os-variant} record for use with the Guix OS provider. It takes a name and a G-expression that returns a ``file-like'' (@pxref{G-Expressions, file-like objects}) object containing a Guix System configuration." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31172 +#: guix-git/doc/guix.texi:31537 #, no-wrap msgid "{Scheme Procedure} guix-os @var{variants}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31175 +#: guix-git/doc/guix.texi:31540 msgid "This is a helper procedure that creates a @code{ganeti-os} record. It takes a list of variants produced by @code{guix-variant}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31177 +#: guix-git/doc/guix.texi:31542 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-variants" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31181 +#: guix-git/doc/guix.texi:31546 msgid "This is a convenience variable to make the debootstrap provider work ``out of the box'' without users having to declare variants manually. It contains a single debootstrap variant with the default configuration:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31186 +#: guix-git/doc/guix.texi:31551 #, no-wrap msgid "" "(list (debootstrap-variant\n" @@ -55894,18 +56561,18 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31189 +#: guix-git/doc/guix.texi:31554 #, no-wrap msgid "{Scheme Variable} %default-guix-variants" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31193 +#: guix-git/doc/guix.texi:31558 msgid "This is a convenience variable to make the Guix OS provider work without additional configuration. It creates a virtual machine that has an SSH server, a serial console, and authorizes the Ganeti hosts SSH keys." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31199 +#: guix-git/doc/guix.texi:31564 #, no-wrap msgid "" "(list (guix-variant\n" @@ -55915,12 +56582,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31205 +#: guix-git/doc/guix.texi:31570 msgid "Users can implement support for OS providers unbeknownst to Guix by extending the @code{ganeti-os} and @code{ganeti-os-variant} records appropriately. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31214 +#: guix-git/doc/guix.texi:31579 #, no-wrap msgid "" "(ganeti-os\n" @@ -55933,726 +56600,726 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31219 +#: guix-git/doc/guix.texi:31584 msgid "That creates @file{/etc/ganeti/instance-custom/variants/foo.conf} which points to a file in the store with contents @code{this is fine}. It also creates @file{/etc/ganeti/instance-custom/variants/variants.list} with contents @code{foo}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31222 +#: guix-git/doc/guix.texi:31587 msgid "Obviously this may not work for all OS providers out there. If you find the interface limiting, please reach out to @email{guix-devel@@gnu.org}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31225 +#: guix-git/doc/guix.texi:31590 msgid "The rest of this section documents the various services that are included by @code{ganeti-service-type}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31226 +#: guix-git/doc/guix.texi:31591 #, no-wrap msgid "{Scheme Variable} ganeti-noded-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31230 +#: guix-git/doc/guix.texi:31595 msgid "@command{ganeti-noded} is the daemon responsible for node-specific functions within the Ganeti system. The value of this service must be a @code{ganeti-noded-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31232 +#: guix-git/doc/guix.texi:31597 #, no-wrap msgid "{Data Type} ganeti-noded-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31234 +#: guix-git/doc/guix.texi:31599 msgid "This is the configuration for the @code{ganeti-noded} service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31238 guix-git/doc/guix.texi:31288 -#: guix-git/doc/guix.texi:31318 guix-git/doc/guix.texi:31345 -#: guix-git/doc/guix.texi:31377 guix-git/doc/guix.texi:31430 -#: guix-git/doc/guix.texi:31450 guix-git/doc/guix.texi:31476 -#: guix-git/doc/guix.texi:31509 +#: guix-git/doc/guix.texi:31603 guix-git/doc/guix.texi:31653 +#: guix-git/doc/guix.texi:31683 guix-git/doc/guix.texi:31710 +#: guix-git/doc/guix.texi:31742 guix-git/doc/guix.texi:31795 +#: guix-git/doc/guix.texi:31815 guix-git/doc/guix.texi:31841 +#: guix-git/doc/guix.texi:31874 msgid "The @code{ganeti} package to use for this service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31239 +#: guix-git/doc/guix.texi:31604 #, no-wrap msgid "@code{port} (default: @code{1811})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31241 +#: guix-git/doc/guix.texi:31606 msgid "The TCP port on which the node daemon listens for network requests." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31242 guix-git/doc/guix.texi:31292 -#: guix-git/doc/guix.texi:31384 guix-git/doc/guix.texi:31454 +#: guix-git/doc/guix.texi:31607 guix-git/doc/guix.texi:31657 +#: guix-git/doc/guix.texi:31749 guix-git/doc/guix.texi:31819 #, no-wrap msgid "@code{address} (default: @code{\"0.0.0.0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31245 +#: guix-git/doc/guix.texi:31610 msgid "The network address that the daemon will bind to. The default address means bind to all available addresses." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31249 +#: guix-git/doc/guix.texi:31614 msgid "When this is set, it must be a specific network interface (e.g.@: @code{eth0}) that the daemon will bind to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31250 guix-git/doc/guix.texi:31392 +#: guix-git/doc/guix.texi:31615 guix-git/doc/guix.texi:31757 #, no-wrap msgid "@code{max-clients} (default: @code{20})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31254 +#: guix-git/doc/guix.texi:31619 msgid "This sets a limit on the maximum number of simultaneous client connections that the daemon will handle. Connections above this count are accepted, but no responses will be sent until enough connections have closed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31255 guix-git/doc/guix.texi:31397 +#: guix-git/doc/guix.texi:31620 guix-git/doc/guix.texi:31762 #, no-wrap msgid "@code{ssl?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31259 +#: guix-git/doc/guix.texi:31624 msgid "Whether to use SSL/TLS to encrypt network communications. The certificate is automatically provisioned by the cluster and can be rotated with @command{gnt-cluster renew-crypto}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31260 guix-git/doc/guix.texi:31400 +#: guix-git/doc/guix.texi:31625 guix-git/doc/guix.texi:31765 #, no-wrap msgid "@code{ssl-key} (default: @file{\"/var/lib/ganeti/server.pem\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31262 guix-git/doc/guix.texi:31402 +#: guix-git/doc/guix.texi:31627 guix-git/doc/guix.texi:31767 msgid "This can be used to provide a specific encryption key for TLS communications." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31263 guix-git/doc/guix.texi:31403 +#: guix-git/doc/guix.texi:31628 guix-git/doc/guix.texi:31768 #, no-wrap msgid "@code{ssl-cert} (default: @file{\"/var/lib/ganeti/server.pem\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31265 guix-git/doc/guix.texi:31405 +#: guix-git/doc/guix.texi:31630 guix-git/doc/guix.texi:31770 msgid "This can be used to provide a specific certificate for TLS communications." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31269 guix-git/doc/guix.texi:31409 +#: guix-git/doc/guix.texi:31634 guix-git/doc/guix.texi:31774 msgid "When true, the daemon performs additional logging for debugging purposes. Note that this will leak encryption details to the log files, use with caution." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31273 +#: guix-git/doc/guix.texi:31638 #, no-wrap msgid "{Scheme Variable} ganeti-confd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31279 +#: guix-git/doc/guix.texi:31644 msgid "@command{ganeti-confd} answers queries related to the configuration of a Ganeti cluster. The purpose of this daemon is to have a highly available and fast way to query cluster configuration values. It is automatically active on all @dfn{master candidates}. The value of this service must be a @code{ganeti-confd-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31282 +#: guix-git/doc/guix.texi:31647 #, no-wrap msgid "{Data Type} ganeti-confd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31284 +#: guix-git/doc/guix.texi:31649 msgid "This is the configuration for the @code{ganeti-confd} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31289 +#: guix-git/doc/guix.texi:31654 #, no-wrap msgid "@code{port} (default: @code{1814})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31291 +#: guix-git/doc/guix.texi:31656 msgid "The UDP port on which to listen for network requests." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31294 +#: guix-git/doc/guix.texi:31659 msgid "Network address that the daemon will bind to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31297 guix-git/doc/guix.texi:31326 -#: guix-git/doc/guix.texi:31353 guix-git/doc/guix.texi:31433 -#: guix-git/doc/guix.texi:31460 guix-git/doc/guix.texi:31486 +#: guix-git/doc/guix.texi:31662 guix-git/doc/guix.texi:31691 +#: guix-git/doc/guix.texi:31718 guix-git/doc/guix.texi:31798 +#: guix-git/doc/guix.texi:31825 guix-git/doc/guix.texi:31851 msgid "When true, the daemon performs additional logging for debugging purposes." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31301 +#: guix-git/doc/guix.texi:31666 #, no-wrap msgid "{Scheme Variable} ganeti-wconfd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31307 +#: guix-git/doc/guix.texi:31672 msgid "@command{ganeti-wconfd} is the daemon that has authoritative knowledge about the cluster configuration and is the only entity that can accept changes to it. All jobs that need to modify the configuration will do so by sending appropriate requests to this daemon. It only runs on the @dfn{master node} and will automatically disable itself on other nodes." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31310 +#: guix-git/doc/guix.texi:31675 msgid "The value of this service must be a @code{ganeti-wconfd-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31312 +#: guix-git/doc/guix.texi:31677 #, no-wrap msgid "{Data Type} ganeti-wconfd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31314 +#: guix-git/doc/guix.texi:31679 msgid "This is the configuration for the @code{ganeti-wconfd} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31319 guix-git/doc/guix.texi:31346 +#: guix-git/doc/guix.texi:31684 guix-git/doc/guix.texi:31711 #, no-wrap msgid "@code{no-voting?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31323 +#: guix-git/doc/guix.texi:31688 msgid "The daemon will refuse to start if the majority of cluster nodes does not agree that it is running on the master node. Set to @code{#t} to start even if a quorum can not be reached (dangerous, use with caution)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31330 +#: guix-git/doc/guix.texi:31695 #, no-wrap msgid "{Scheme Variable} ganeti-luxid-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31335 +#: guix-git/doc/guix.texi:31700 msgid "@command{ganeti-luxid} is a daemon used to answer queries related to the configuration and the current live state of a Ganeti cluster. Additionally, it is the authoritative daemon for the Ganeti job queue. Jobs can be submitted via this daemon and it schedules and starts them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31337 +#: guix-git/doc/guix.texi:31702 msgid "It takes a @code{ganeti-luxid-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31339 +#: guix-git/doc/guix.texi:31704 #, no-wrap msgid "{Data Type} ganeti-luxid-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31341 +#: guix-git/doc/guix.texi:31706 msgid "This is the configuration for the @code{ganeti-luxid} service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31350 +#: guix-git/doc/guix.texi:31715 msgid "The daemon will refuse to start if it cannot verify that the majority of cluster nodes believes that it is running on the master node. Set to @code{#t} to ignore such checks and start anyway (this can be dangerous)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31357 +#: guix-git/doc/guix.texi:31722 #, no-wrap msgid "{Scheme Variable} ganeti-rapi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31361 +#: guix-git/doc/guix.texi:31726 msgid "@command{ganeti-rapi} provides a remote API for Ganeti clusters. It runs on the master node and can be used to perform cluster actions programmatically via a JSON-based RPC protocol." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31367 +#: guix-git/doc/guix.texi:31732 msgid "Most query operations are allowed without authentication (unless @var{require-authentication?} is set), whereas write operations require explicit authorization via the @file{/var/lib/ganeti/rapi/users} file. See the @url{http://docs.ganeti.org/ganeti/master/html/rapi.html, Ganeti Remote API documentation} for more information." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31369 +#: guix-git/doc/guix.texi:31734 msgid "The value of this service must be a @code{ganeti-rapi-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31371 +#: guix-git/doc/guix.texi:31736 #, no-wrap msgid "{Data Type} ganeti-rapi-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31373 +#: guix-git/doc/guix.texi:31738 msgid "This is the configuration for the @code{ganeti-rapi} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31378 +#: guix-git/doc/guix.texi:31743 #, no-wrap msgid "@code{require-authentication?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31380 +#: guix-git/doc/guix.texi:31745 msgid "Whether to require authentication even for read-only operations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31381 +#: guix-git/doc/guix.texi:31746 #, no-wrap msgid "@code{port} (default: @code{5080})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31383 +#: guix-git/doc/guix.texi:31748 msgid "The TCP port on which to listen to API requests." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31387 +#: guix-git/doc/guix.texi:31752 msgid "The network address that the service will bind to. By default it listens on all configured addresses." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31391 +#: guix-git/doc/guix.texi:31756 msgid "When set, it must specify a specific network interface such as @code{eth0} that the daemon will bind to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31396 +#: guix-git/doc/guix.texi:31761 msgid "The maximum number of simultaneous client requests to handle. Further connections are allowed, but no responses are sent until enough connections have closed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31399 +#: guix-git/doc/guix.texi:31764 msgid "Whether to use SSL/TLS encryption on the RAPI port." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31413 +#: guix-git/doc/guix.texi:31778 #, no-wrap msgid "{Scheme Variable} ganeti-kvmd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31421 +#: guix-git/doc/guix.texi:31786 msgid "@command{ganeti-kvmd} is responsible for determining whether a given KVM instance was shut down by an administrator or a user. Normally Ganeti will restart an instance that was not stopped through Ganeti itself. If the cluster option @code{user_shutdown} is true, this daemon monitors the @code{QMP} socket provided by QEMU and listens for shutdown events, and marks the instance as @dfn{USER_down} instead of @dfn{ERROR_down} when it shuts down gracefully by itself." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31423 +#: guix-git/doc/guix.texi:31788 msgid "It takes a @code{ganeti-kvmd-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31425 +#: guix-git/doc/guix.texi:31790 #, no-wrap msgid "{Data Type} ganeti-kvmd-configuration" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31437 +#: guix-git/doc/guix.texi:31802 #, no-wrap msgid "{Scheme Variable} ganeti-mond-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31441 +#: guix-git/doc/guix.texi:31806 msgid "@command{ganeti-mond} is an optional daemon that provides Ganeti monitoring functionality. It is responsible for running data collectors and publish the collected information through a HTTP interface." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31443 +#: guix-git/doc/guix.texi:31808 msgid "It takes a @code{ganeti-mond-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31445 +#: guix-git/doc/guix.texi:31810 #, no-wrap msgid "{Data Type} ganeti-mond-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31451 +#: guix-git/doc/guix.texi:31816 #, no-wrap msgid "@code{port} (default: @code{1815})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31453 guix-git/doc/guix.texi:31479 +#: guix-git/doc/guix.texi:31818 guix-git/doc/guix.texi:31844 msgid "The port on which the daemon will listen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31457 +#: guix-git/doc/guix.texi:31822 msgid "The network address that the daemon will bind to. By default it binds to all available interfaces." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31464 +#: guix-git/doc/guix.texi:31829 #, no-wrap msgid "{Scheme Variable} ganeti-metad-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31467 +#: guix-git/doc/guix.texi:31832 msgid "@command{ganeti-metad} is an optional daemon that can be used to provide information about the cluster to instances or OS install scripts." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31469 +#: guix-git/doc/guix.texi:31834 msgid "It takes a @code{ganeti-metad-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31471 +#: guix-git/doc/guix.texi:31836 #, no-wrap msgid "{Data Type} ganeti-metad-configuration" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31483 +#: guix-git/doc/guix.texi:31848 msgid "If set, the daemon will bind to this address only. If left unset, the behavior depends on the cluster configuration." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31490 +#: guix-git/doc/guix.texi:31855 #, no-wrap msgid "{Scheme Variable} ganeti-watcher-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31498 +#: guix-git/doc/guix.texi:31863 msgid "@command{ganeti-watcher} is a script designed to run periodically and ensure the health of a cluster. It will automatically restart instances that have stopped without Ganeti's consent, and repairs DRBD links in case a node has rebooted. It also archives old cluster jobs and restarts Ganeti daemons that are not running. If the cluster parameter @code{ensure_node_health} is set, the watcher will also shutdown instances and DRBD devices if the node it is running on is declared offline by known master candidates." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31500 +#: guix-git/doc/guix.texi:31865 msgid "It can be paused on all nodes with @command{gnt-cluster watcher pause}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31502 +#: guix-git/doc/guix.texi:31867 msgid "The service takes a @code{ganeti-watcher-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31504 +#: guix-git/doc/guix.texi:31869 #, no-wrap msgid "{Data Type} ganeti-watcher-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31510 +#: guix-git/doc/guix.texi:31875 #, no-wrap msgid "@code{schedule} (default: @code{'(next-second-from (next-minute (range 0 60 5)))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31512 +#: guix-git/doc/guix.texi:31877 msgid "How often to run the script. The default is every five minutes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31513 +#: guix-git/doc/guix.texi:31878 #, no-wrap msgid "@code{rapi-ip} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31516 +#: guix-git/doc/guix.texi:31881 msgid "This option needs to be specified only if the RAPI daemon is configured to use a particular interface or address. By default the cluster address is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31517 +#: guix-git/doc/guix.texi:31882 #, no-wrap msgid "@code{job-age} (default: @code{(* 6 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31520 +#: guix-git/doc/guix.texi:31885 msgid "Archive cluster jobs older than this age, specified in seconds. The default is 6 hours. This keeps @command{gnt-job list} manageable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31521 +#: guix-git/doc/guix.texi:31886 #, no-wrap msgid "@code{verify-disks?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31525 +#: guix-git/doc/guix.texi:31890 msgid "If this is @code{#f}, the watcher will not try to repair broken DRBD links automatically. Administrators will need to use @command{gnt-cluster verify-disks} manually instead." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31528 +#: guix-git/doc/guix.texi:31893 msgid "When @code{#t}, the script performs additional logging for debugging purposes." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31532 +#: guix-git/doc/guix.texi:31897 #, no-wrap msgid "{Scheme Variable} ganeti-cleaner-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31540 +#: guix-git/doc/guix.texi:31905 msgid "@command{ganeti-cleaner} is a script designed to run periodically and remove old files from the cluster. This service type controls two @dfn{cron jobs}: one intended for the master node that permanently purges old cluster jobs, and one intended for every node that removes expired X509 certificates, keys, and outdated @command{ganeti-watcher} information. Like all Ganeti services, it is safe to include even on non-master nodes as it will disable itself as necessary." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31542 +#: guix-git/doc/guix.texi:31907 msgid "It takes a @code{ganeti-cleaner-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31544 +#: guix-git/doc/guix.texi:31909 #, no-wrap msgid "{Data Type} ganeti-cleaner-configuration" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31549 +#: guix-git/doc/guix.texi:31914 msgid "The @code{ganeti} package to use for the @command{gnt-cleaner} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31550 +#: guix-git/doc/guix.texi:31915 #, no-wrap msgid "@code{master-schedule} (default: @code{\"45 1 * * *\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31553 +#: guix-git/doc/guix.texi:31918 msgid "How often to run the master cleaning job. The default is once per day, at 01:45:00." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31554 +#: guix-git/doc/guix.texi:31919 #, no-wrap msgid "@code{node-schedule} (default: @code{\"45 2 * * *\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31557 +#: guix-git/doc/guix.texi:31922 msgid "How often to run the node cleaning job. The default is once per day, at 02:45:00." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31571 +#: guix-git/doc/guix.texi:31936 msgid "The @code{(gnu services version-control)} module provides a service to allow remote access to local Git repositories. There are three options: the @code{git-daemon-service}, which provides access to repositories via the @code{git://} unsecured TCP-based protocol, extending the @code{nginx} web server to proxy some requests to @code{git-http-backend}, or providing a web interface with @code{cgit-service-type}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31572 +#: guix-git/doc/guix.texi:31937 #, no-wrap msgid "{Scheme Procedure} git-daemon-service [#:config (git-daemon-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31576 +#: guix-git/doc/guix.texi:31941 msgid "Return a service that runs @command{git daemon}, a simple TCP server to expose repositories over the Git protocol for anonymous access." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31582 +#: guix-git/doc/guix.texi:31947 msgid "The optional @var{config} argument should be a @code{} object, by default it allows read-only access to exported@footnote{By creating the magic file @file{git-daemon-export-ok} in the repository directory.} repositories under @file{/srv/git}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31585 +#: guix-git/doc/guix.texi:31950 #, no-wrap msgid "{Data Type} git-daemon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31587 +#: guix-git/doc/guix.texi:31952 msgid "Data type representing the configuration for @code{git-daemon-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31589 +#: guix-git/doc/guix.texi:31954 #, no-wrap msgid "@code{package} (default: @code{git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31591 guix-git/doc/guix.texi:31651 +#: guix-git/doc/guix.texi:31956 guix-git/doc/guix.texi:32016 msgid "Package object of the Git distributed version control system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31592 guix-git/doc/guix.texi:31655 +#: guix-git/doc/guix.texi:31957 guix-git/doc/guix.texi:32020 #, no-wrap msgid "@code{export-all?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31595 +#: guix-git/doc/guix.texi:31960 msgid "Whether to allow access for all Git repositories, even if they do not have the @file{git-daemon-export-ok} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31596 +#: guix-git/doc/guix.texi:31961 #, no-wrap msgid "@code{base-path} (default: @file{/srv/git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31602 +#: guix-git/doc/guix.texi:31967 msgid "Whether to remap all the path requests as relative to the given path. If you run @command{git daemon} with @code{(base-path \"/srv/git\")} on @samp{example.com}, then if you later try to pull @indicateurl{git://example.com/hello.git}, git daemon will interpret the path as @file{/srv/git/hello.git}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31603 +#: guix-git/doc/guix.texi:31968 #, no-wrap msgid "@code{user-path} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31611 +#: guix-git/doc/guix.texi:31976 msgid "Whether to allow @code{~user} notation to be used in requests. When specified with empty string, requests to @indicateurl{git://host/~alice/foo} is taken as a request to access @code{foo} repository in the home directory of user @code{alice}. If @code{(user-path \"@var{path}\")} is specified, the same request is taken as a request to access @file{@var{path}/foo} repository in the home directory of user @code{alice}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31612 +#: guix-git/doc/guix.texi:31977 #, no-wrap msgid "@code{listen} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31615 +#: guix-git/doc/guix.texi:31980 msgid "Whether to listen on specific IP addresses or hostnames, defaults to all." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31616 +#: guix-git/doc/guix.texi:31981 #, no-wrap msgid "@code{port} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31618 +#: guix-git/doc/guix.texi:31983 msgid "Whether to listen on an alternative port, which defaults to 9418." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31619 +#: guix-git/doc/guix.texi:31984 #, no-wrap msgid "@code{whitelist} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31621 +#: guix-git/doc/guix.texi:31986 msgid "If not empty, only allow access to this list of directories." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31625 +#: guix-git/doc/guix.texi:31990 msgid "Extra options will be passed to @command{git daemon}, please run @command{man git-daemon} for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31639 +#: guix-git/doc/guix.texi:32004 msgid "The @code{git://} protocol lacks authentication. When you pull from a repository fetched via @code{git://}, you don't know whether the data you receive was modified or is even coming from the specified host, and your connection is subject to eavesdropping. It's better to use an authenticated and encrypted transport, such as @code{https}. Although Git allows you to serve repositories using unsophisticated file-based web servers, there is a faster protocol implemented by the @code{git-http-backend} program. This program is the back-end of a proper Git web service. It is designed to sit behind a FastCGI proxy. @xref{Web Services}, for more on running the necessary @code{fcgiwrap} daemon." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31642 +#: guix-git/doc/guix.texi:32007 msgid "Guix has a separate configuration data type for serving Git repositories over HTTP." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31643 +#: guix-git/doc/guix.texi:32008 #, no-wrap msgid "{Data Type} git-http-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31647 +#: guix-git/doc/guix.texi:32012 msgid "Data type representing the configuration for a future @code{git-http-service-type}; can currently be used to configure Nginx through @code{git-http-nginx-location-configuration}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31649 +#: guix-git/doc/guix.texi:32014 #, no-wrap msgid "@code{package} (default: @var{git})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31652 +#: guix-git/doc/guix.texi:32017 #, no-wrap msgid "@code{git-root} (default: @file{/srv/git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31654 +#: guix-git/doc/guix.texi:32019 msgid "Directory containing the Git repositories to expose to the world." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31658 +#: guix-git/doc/guix.texi:32023 msgid "Whether to expose access for all Git repositories in @var{git-root}, even if they do not have the @file{git-daemon-export-ok} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31659 +#: guix-git/doc/guix.texi:32024 #, no-wrap msgid "@code{uri-path} (default: @samp{/git/})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31664 +#: guix-git/doc/guix.texi:32029 msgid "Path prefix for Git access. With the default @samp{/git/} prefix, this will map @indicateurl{http://@var{server}/git/@var{repo}.git} to @file{/srv/git/@var{repo}.git}. Requests whose URI paths do not begin with this prefix are not passed on to this Git instance." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31665 +#: guix-git/doc/guix.texi:32030 #, no-wrap msgid "@code{fcgiwrap-socket} (default: @code{127.0.0.1:9000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31668 +#: guix-git/doc/guix.texi:32033 msgid "The socket on which the @code{fcgiwrap} daemon is listening. @xref{Web Services}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31675 +#: guix-git/doc/guix.texi:32040 msgid "There is no @code{git-http-service-type}, currently; instead you can create an @code{nginx-location-configuration} from a @code{git-http-configuration} and then add that location to a web server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31676 +#: guix-git/doc/guix.texi:32041 #, no-wrap msgid "{Scheme Procedure} git-http-nginx-location-configuration @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31681 +#: guix-git/doc/guix.texi:32046 msgid "[config=(git-http-configuration)] Compute an @code{nginx-location-configuration} that corresponds to the given Git http configuration. An example nginx service definition to serve the default @file{/srv/git} over HTTPS might be:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31698 +#: guix-git/doc/guix.texi:32063 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -56673,1409 +57340,1414 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31705 +#: guix-git/doc/guix.texi:32070 msgid "This example assumes that you are using Let's Encrypt to get your TLS certificate. @xref{Certificate Services}. The default @code{certbot} service will redirect all HTTP traffic on @code{git.my-host.org} to HTTPS@. You will also need to add an @code{fcgiwrap} proxy to your system services. @xref{Web Services}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:31707 +#: guix-git/doc/guix.texi:32072 #, no-wrap msgid "Cgit Service" msgstr "Cgit palvelu" #. type: cindex -#: guix-git/doc/guix.texi:31709 +#: guix-git/doc/guix.texi:32074 #, no-wrap msgid "Cgit service" msgstr "Cgit palvelu" #. type: cindex -#: guix-git/doc/guix.texi:31710 +#: guix-git/doc/guix.texi:32075 #, no-wrap msgid "Git, web interface" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31713 +#: guix-git/doc/guix.texi:32078 msgid "@uref{https://git.zx2c4.com/cgit/, Cgit} is a web frontend for Git repositories written in C." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31716 +#: guix-git/doc/guix.texi:32081 msgid "The following example will configure the service with default values. By default, Cgit can be accessed on port 80 (@code{http://localhost:80})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31719 +#: guix-git/doc/guix.texi:32084 #, no-wrap msgid "(service cgit-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31723 +#: guix-git/doc/guix.texi:32088 msgid "The @code{file-object} type designates either a file-like object (@pxref{G-Expressions, file-like objects}) or a string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31727 +#: guix-git/doc/guix.texi:32092 msgid "Available @code{cgit-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31728 +#: guix-git/doc/guix.texi:32093 #, no-wrap msgid "{@code{cgit-configuration} parameter} package package" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31730 +#: guix-git/doc/guix.texi:32095 msgid "The CGIT package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31733 +#: guix-git/doc/guix.texi:32098 #, no-wrap msgid "{@code{cgit-configuration} parameter} nginx-server-configuration-list nginx" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31738 +#: guix-git/doc/guix.texi:32100 +msgid "NGINX configuration." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:32103 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object about-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31741 +#: guix-git/doc/guix.texi:32106 msgid "Specifies a command which will be invoked to format the content of about pages (both top-level and for each repository)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31746 +#: guix-git/doc/guix.texi:32111 #, no-wrap msgid "{@code{cgit-configuration} parameter} string agefile" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31749 +#: guix-git/doc/guix.texi:32114 msgid "Specifies a path, relative to each repository path, which can be used to specify the date and time of the youngest commit in the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31754 +#: guix-git/doc/guix.texi:32119 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object auth-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31757 +#: guix-git/doc/guix.texi:32122 msgid "Specifies a command that will be invoked for authenticating repository access." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31762 +#: guix-git/doc/guix.texi:32127 #, no-wrap msgid "{@code{cgit-configuration} parameter} string branch-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31765 +#: guix-git/doc/guix.texi:32130 msgid "Flag which, when set to @samp{age}, enables date ordering in the branch ref list, and when set @samp{name} enables ordering by branch name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31767 +#: guix-git/doc/guix.texi:32132 msgid "Defaults to @samp{\"name\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31770 +#: guix-git/doc/guix.texi:32135 #, no-wrap msgid "{@code{cgit-configuration} parameter} string cache-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31772 +#: guix-git/doc/guix.texi:32137 msgid "Path used to store the cgit cache entries." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31774 +#: guix-git/doc/guix.texi:32139 msgid "Defaults to @samp{\"/var/cache/cgit\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31777 +#: guix-git/doc/guix.texi:32142 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-static-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31780 +#: guix-git/doc/guix.texi:32145 msgid "Number which specifies the time-to-live, in minutes, for the cached version of repository pages accessed with a fixed SHA1." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31782 guix-git/doc/guix.texi:32225 +#: guix-git/doc/guix.texi:32147 guix-git/doc/guix.texi:32590 msgid "Defaults to @samp{-1}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31785 +#: guix-git/doc/guix.texi:32150 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-dynamic-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31788 +#: guix-git/doc/guix.texi:32153 msgid "Number which specifies the time-to-live, in minutes, for the cached version of repository pages accessed without a fixed SHA1." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31793 +#: guix-git/doc/guix.texi:32158 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-repo-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31796 +#: guix-git/doc/guix.texi:32161 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository summary page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31801 +#: guix-git/doc/guix.texi:32166 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-root-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31804 +#: guix-git/doc/guix.texi:32169 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31809 +#: guix-git/doc/guix.texi:32174 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-scanrc-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31812 +#: guix-git/doc/guix.texi:32177 msgid "Number which specifies the time-to-live, in minutes, for the result of scanning a path for Git repositories." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31817 +#: guix-git/doc/guix.texi:32182 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-about-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31820 +#: guix-git/doc/guix.texi:32185 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository about page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31825 +#: guix-git/doc/guix.texi:32190 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-snapshot-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31828 +#: guix-git/doc/guix.texi:32193 msgid "Number which specifies the time-to-live, in minutes, for the cached version of snapshots." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31833 +#: guix-git/doc/guix.texi:32198 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31836 +#: guix-git/doc/guix.texi:32201 msgid "The maximum number of entries in the cgit cache. When set to @samp{0}, caching is disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31841 +#: guix-git/doc/guix.texi:32206 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean case-sensitive-sort?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31843 +#: guix-git/doc/guix.texi:32208 msgid "Sort items in the repo list case sensitively." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31848 +#: guix-git/doc/guix.texi:32213 #, no-wrap msgid "{@code{cgit-configuration} parameter} list clone-prefix" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31851 +#: guix-git/doc/guix.texi:32216 msgid "List of common prefixes which, when combined with a repository URL, generates valid clone URLs for the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31856 +#: guix-git/doc/guix.texi:32221 #, no-wrap msgid "{@code{cgit-configuration} parameter} list clone-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31858 +#: guix-git/doc/guix.texi:32223 msgid "List of @code{clone-url} templates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31863 +#: guix-git/doc/guix.texi:32228 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object commit-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31865 +#: guix-git/doc/guix.texi:32230 msgid "Command which will be invoked to format commit messages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31870 +#: guix-git/doc/guix.texi:32235 #, no-wrap msgid "{@code{cgit-configuration} parameter} string commit-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31874 guix-git/doc/guix.texi:32432 +#: guix-git/doc/guix.texi:32239 guix-git/doc/guix.texi:32797 msgid "Flag which, when set to @samp{date}, enables strict date ordering in the commit log, and when set to @samp{topo} enables strict topological ordering." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31876 +#: guix-git/doc/guix.texi:32241 msgid "Defaults to @samp{\"git log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31879 +#: guix-git/doc/guix.texi:32244 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object css" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31881 +#: guix-git/doc/guix.texi:32246 msgid "URL which specifies the css document to include in all cgit pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31883 +#: guix-git/doc/guix.texi:32248 msgid "Defaults to @samp{\"/share/cgit/cgit.css\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31886 +#: guix-git/doc/guix.texi:32251 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object email-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31890 +#: guix-git/doc/guix.texi:32255 msgid "Specifies a command which will be invoked to format names and email address of committers, authors, and taggers, as represented in various places throughout the cgit interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31895 +#: guix-git/doc/guix.texi:32260 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean embedded?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31898 +#: guix-git/doc/guix.texi:32263 msgid "Flag which, when set to @samp{#t}, will make cgit generate a HTML fragment suitable for embedding in other HTML pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31903 +#: guix-git/doc/guix.texi:32268 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-commit-graph?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31907 +#: guix-git/doc/guix.texi:32272 msgid "Flag which, when set to @samp{#t}, will make cgit print an ASCII-art commit history graph to the left of the commit messages in the repository log page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31912 +#: guix-git/doc/guix.texi:32277 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-filter-overrides?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31915 +#: guix-git/doc/guix.texi:32280 msgid "Flag which, when set to @samp{#t}, allows all filter settings to be overridden in repository-specific cgitrc files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31920 +#: guix-git/doc/guix.texi:32285 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-follow-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31923 +#: guix-git/doc/guix.texi:32288 msgid "Flag which, when set to @samp{#t}, allows users to follow a file in the log view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31928 +#: guix-git/doc/guix.texi:32293 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-http-clone?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31931 +#: guix-git/doc/guix.texi:32296 msgid "If set to @samp{#t}, cgit will act as an dumb HTTP endpoint for Git clones." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31936 +#: guix-git/doc/guix.texi:32301 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-index-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31939 +#: guix-git/doc/guix.texi:32304 msgid "Flag which, when set to @samp{#t}, will make cgit generate extra links \"summary\", \"commit\", \"tree\" for each repo in the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31944 +#: guix-git/doc/guix.texi:32309 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-index-owner?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31947 +#: guix-git/doc/guix.texi:32312 msgid "Flag which, when set to @samp{#t}, will make cgit display the owner of each repo in the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31952 +#: guix-git/doc/guix.texi:32317 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-log-filecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31955 +#: guix-git/doc/guix.texi:32320 msgid "Flag which, when set to @samp{#t}, will make cgit print the number of modified files for each commit on the repository log page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31960 +#: guix-git/doc/guix.texi:32325 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-log-linecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31963 +#: guix-git/doc/guix.texi:32328 msgid "Flag which, when set to @samp{#t}, will make cgit print the number of added and removed lines for each commit on the repository log page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31968 +#: guix-git/doc/guix.texi:32333 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-remote-branches?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31971 guix-git/doc/guix.texi:32495 +#: guix-git/doc/guix.texi:32336 guix-git/doc/guix.texi:32860 msgid "Flag which, when set to @code{#t}, will make cgit display remote branches in the summary and refs views." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31976 +#: guix-git/doc/guix.texi:32341 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-subject-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31980 +#: guix-git/doc/guix.texi:32345 msgid "Flag which, when set to @code{1}, will make cgit use the subject of the parent commit as link text when generating links to parent commits in commit view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31985 +#: guix-git/doc/guix.texi:32350 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-html-serving?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31989 +#: guix-git/doc/guix.texi:32354 msgid "Flag which, when set to @samp{#t}, will make cgit use the subject of the parent commit as link text when generating links to parent commits in commit view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31994 +#: guix-git/doc/guix.texi:32359 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-tree-linenumbers?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31997 +#: guix-git/doc/guix.texi:32362 msgid "Flag which, when set to @samp{#t}, will make cgit generate linenumber links for plaintext blobs printed in the tree view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32002 +#: guix-git/doc/guix.texi:32367 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-git-config?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32005 +#: guix-git/doc/guix.texi:32370 msgid "Flag which, when set to @samp{#f}, will allow cgit to use Git config to set any repo specific settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32010 +#: guix-git/doc/guix.texi:32375 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object favicon" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32012 +#: guix-git/doc/guix.texi:32377 msgid "URL used as link to a shortcut icon for cgit." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32014 +#: guix-git/doc/guix.texi:32379 msgid "Defaults to @samp{\"/favicon.ico\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32017 +#: guix-git/doc/guix.texi:32382 #, no-wrap msgid "{@code{cgit-configuration} parameter} string footer" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32021 +#: guix-git/doc/guix.texi:32386 msgid "The content of the file specified with this option will be included verbatim at the bottom of all pages (i.e.@: it replaces the standard \"generated by...\"@: message)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32026 +#: guix-git/doc/guix.texi:32391 #, no-wrap msgid "{@code{cgit-configuration} parameter} string head-include" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32029 +#: guix-git/doc/guix.texi:32394 msgid "The content of the file specified with this option will be included verbatim in the HTML HEAD section on all pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32034 +#: guix-git/doc/guix.texi:32399 #, no-wrap msgid "{@code{cgit-configuration} parameter} string header" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32037 +#: guix-git/doc/guix.texi:32402 msgid "The content of the file specified with this option will be included verbatim at the top of all pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32042 +#: guix-git/doc/guix.texi:32407 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object include" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32045 +#: guix-git/doc/guix.texi:32410 msgid "Name of a configfile to include before the rest of the current config- file is parsed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32050 +#: guix-git/doc/guix.texi:32415 #, no-wrap msgid "{@code{cgit-configuration} parameter} string index-header" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32053 +#: guix-git/doc/guix.texi:32418 msgid "The content of the file specified with this option will be included verbatim above the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32058 +#: guix-git/doc/guix.texi:32423 #, no-wrap msgid "{@code{cgit-configuration} parameter} string index-info" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32061 +#: guix-git/doc/guix.texi:32426 msgid "The content of the file specified with this option will be included verbatim below the heading on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32066 +#: guix-git/doc/guix.texi:32431 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean local-time?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32069 +#: guix-git/doc/guix.texi:32434 msgid "Flag which, if set to @samp{#t}, makes cgit print commit and tag times in the servers timezone." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32074 +#: guix-git/doc/guix.texi:32439 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object logo" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32077 +#: guix-git/doc/guix.texi:32442 msgid "URL which specifies the source of an image which will be used as a logo on all cgit pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32079 +#: guix-git/doc/guix.texi:32444 msgid "Defaults to @samp{\"/share/cgit/cgit.png\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32082 +#: guix-git/doc/guix.texi:32447 #, no-wrap msgid "{@code{cgit-configuration} parameter} string logo-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32084 guix-git/doc/guix.texi:32541 +#: guix-git/doc/guix.texi:32449 guix-git/doc/guix.texi:32906 msgid "URL loaded when clicking on the cgit logo image." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32089 +#: guix-git/doc/guix.texi:32454 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object owner-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32092 +#: guix-git/doc/guix.texi:32457 msgid "Command which will be invoked to format the Owner column of the main page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32097 +#: guix-git/doc/guix.texi:32462 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-atom-items" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32099 +#: guix-git/doc/guix.texi:32464 msgid "Number of items to display in atom feeds view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32104 +#: guix-git/doc/guix.texi:32469 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-commit-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32106 +#: guix-git/doc/guix.texi:32471 msgid "Number of entries to list per page in \"log\" view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32111 +#: guix-git/doc/guix.texi:32476 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-message-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32113 +#: guix-git/doc/guix.texi:32478 msgid "Number of commit message characters to display in \"log\" view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32115 guix-git/doc/guix.texi:32131 +#: guix-git/doc/guix.texi:32480 guix-git/doc/guix.texi:32496 msgid "Defaults to @samp{80}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32118 +#: guix-git/doc/guix.texi:32483 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-repo-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32121 +#: guix-git/doc/guix.texi:32486 msgid "Specifies the number of entries to list per page on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32126 +#: guix-git/doc/guix.texi:32491 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-repodesc-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32129 +#: guix-git/doc/guix.texi:32494 msgid "Specifies the maximum number of repo description characters to display on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32134 +#: guix-git/doc/guix.texi:32499 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-blob-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32136 +#: guix-git/doc/guix.texi:32501 msgid "Specifies the maximum size of a blob to display HTML for in KBytes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32141 +#: guix-git/doc/guix.texi:32506 #, no-wrap msgid "{@code{cgit-configuration} parameter} string max-stats" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32144 +#: guix-git/doc/guix.texi:32509 msgid "Maximum statistics period. Valid values are @samp{week},@samp{month}, @samp{quarter} and @samp{year}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32149 +#: guix-git/doc/guix.texi:32514 #, no-wrap msgid "{@code{cgit-configuration} parameter} mimetype-alist mimetype" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32151 +#: guix-git/doc/guix.texi:32516 msgid "Mimetype for the specified filename extension." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32155 +#: guix-git/doc/guix.texi:32520 msgid "Defaults to @samp{((gif \"image/gif\") (html \"text/html\") (jpg \"image/jpeg\") (jpeg \"image/jpeg\") (pdf \"application/pdf\") (png \"image/png\") (svg \"image/svg+xml\"))}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32158 +#: guix-git/doc/guix.texi:32523 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object mimetype-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32160 +#: guix-git/doc/guix.texi:32525 msgid "Specifies the file to use for automatic mimetype lookup." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32165 +#: guix-git/doc/guix.texi:32530 #, no-wrap msgid "{@code{cgit-configuration} parameter} string module-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32168 +#: guix-git/doc/guix.texi:32533 msgid "Text which will be used as the formatstring for a hyperlink when a submodule is printed in a directory listing." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32173 +#: guix-git/doc/guix.texi:32538 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean nocache?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32175 +#: guix-git/doc/guix.texi:32540 msgid "If set to the value @samp{#t} caching will be disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32180 +#: guix-git/doc/guix.texi:32545 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean noplainemail?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32183 +#: guix-git/doc/guix.texi:32548 msgid "If set to @samp{#t} showing full author email addresses will be disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32188 +#: guix-git/doc/guix.texi:32553 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean noheader?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32191 +#: guix-git/doc/guix.texi:32556 msgid "Flag which, when set to @samp{#t}, will make cgit omit the standard header on all pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32196 +#: guix-git/doc/guix.texi:32561 #, no-wrap msgid "{@code{cgit-configuration} parameter} project-list project-list" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32200 +#: guix-git/doc/guix.texi:32565 msgid "A list of subdirectories inside of @code{repository-directory}, relative to it, that should loaded as Git repositories. An empty list means that all subdirectories will be loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32205 +#: guix-git/doc/guix.texi:32570 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object readme" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32207 +#: guix-git/doc/guix.texi:32572 msgid "Text which will be used as default value for @code{cgit-repo-readme}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32212 +#: guix-git/doc/guix.texi:32577 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean remove-suffix?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32216 +#: guix-git/doc/guix.texi:32581 msgid "If set to @code{#t} and @code{repository-directory} is enabled, if any repositories are found with a suffix of @code{.git}, this suffix will be removed for the URL and name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32221 +#: guix-git/doc/guix.texi:32586 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer renamelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32223 +#: guix-git/doc/guix.texi:32588 msgid "Maximum number of files to consider when detecting renames." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32228 +#: guix-git/doc/guix.texi:32593 #, no-wrap msgid "{@code{cgit-configuration} parameter} string repository-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32230 +#: guix-git/doc/guix.texi:32595 msgid "The way in which repositories in each section are sorted." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32235 +#: guix-git/doc/guix.texi:32600 #, no-wrap msgid "{@code{cgit-configuration} parameter} robots-list robots" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32237 +#: guix-git/doc/guix.texi:32602 msgid "Text used as content for the @code{robots} meta-tag." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32239 +#: guix-git/doc/guix.texi:32604 msgid "Defaults to @samp{(\"noindex\" \"nofollow\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32242 +#: guix-git/doc/guix.texi:32607 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-desc" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32244 +#: guix-git/doc/guix.texi:32609 msgid "Text printed below the heading on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32246 +#: guix-git/doc/guix.texi:32611 msgid "Defaults to @samp{\"a fast webinterface for the git dscm\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32249 +#: guix-git/doc/guix.texi:32614 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-readme" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32252 +#: guix-git/doc/guix.texi:32617 msgid "The content of the file specified with this option will be included verbatim below the ``about'' link on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32257 +#: guix-git/doc/guix.texi:32622 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-title" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32259 +#: guix-git/doc/guix.texi:32624 msgid "Text printed as heading on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32264 +#: guix-git/doc/guix.texi:32629 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean scan-hidden-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32270 +#: guix-git/doc/guix.texi:32635 msgid "If set to @samp{#t} and repository-directory is enabled, repository-directory will recurse into directories whose name starts with a period. Otherwise, repository-directory will stay away from such directories, considered as ``hidden''. Note that this does not apply to the @file{.git} directory in non-bare repos." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32275 +#: guix-git/doc/guix.texi:32640 #, no-wrap msgid "{@code{cgit-configuration} parameter} list snapshots" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32278 +#: guix-git/doc/guix.texi:32643 msgid "Text which specifies the default set of snapshot formats that cgit generates links for." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32283 +#: guix-git/doc/guix.texi:32648 #, no-wrap msgid "{@code{cgit-configuration} parameter} repository-directory repository-directory" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32286 +#: guix-git/doc/guix.texi:32651 msgid "Name of the directory to scan for repositories (represents @code{scan-path})." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32288 +#: guix-git/doc/guix.texi:32653 msgid "Defaults to @samp{\"/srv/git\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32291 +#: guix-git/doc/guix.texi:32656 #, no-wrap msgid "{@code{cgit-configuration} parameter} string section" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32294 guix-git/doc/guix.texi:32610 +#: guix-git/doc/guix.texi:32659 guix-git/doc/guix.texi:32975 msgid "The name of the current repository section - all repositories defined after this option will inherit the current section name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32299 +#: guix-git/doc/guix.texi:32664 #, no-wrap msgid "{@code{cgit-configuration} parameter} string section-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32302 +#: guix-git/doc/guix.texi:32667 msgid "Flag which, when set to @samp{1}, will sort the sections on the repository listing by name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32307 +#: guix-git/doc/guix.texi:32672 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer section-from-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32310 +#: guix-git/doc/guix.texi:32675 msgid "A number which, if defined prior to repository-directory, specifies how many path elements from each repo path to use as a default section name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32315 +#: guix-git/doc/guix.texi:32680 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean side-by-side-diffs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32318 +#: guix-git/doc/guix.texi:32683 msgid "If set to @samp{#t} shows side-by-side diffs instead of unidiffs per default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32323 +#: guix-git/doc/guix.texi:32688 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object source-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32326 +#: guix-git/doc/guix.texi:32691 msgid "Specifies a command which will be invoked to format plaintext blobs in the tree view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32331 +#: guix-git/doc/guix.texi:32696 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-branches" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32334 +#: guix-git/doc/guix.texi:32699 msgid "Specifies the number of branches to display in the repository ``summary'' view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32339 +#: guix-git/doc/guix.texi:32704 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32342 +#: guix-git/doc/guix.texi:32707 msgid "Specifies the number of log entries to display in the repository ``summary'' view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32347 +#: guix-git/doc/guix.texi:32712 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-tags" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32350 +#: guix-git/doc/guix.texi:32715 msgid "Specifies the number of tags to display in the repository ``summary'' view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32355 +#: guix-git/doc/guix.texi:32720 #, no-wrap msgid "{@code{cgit-configuration} parameter} string strict-export" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32358 +#: guix-git/doc/guix.texi:32723 msgid "Filename which, if specified, needs to be present within the repository for cgit to allow access to that repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32363 +#: guix-git/doc/guix.texi:32728 #, no-wrap msgid "{@code{cgit-configuration} parameter} string virtual-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32365 +#: guix-git/doc/guix.texi:32730 msgid "URL which, if specified, will be used as root for all cgit links." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32367 +#: guix-git/doc/guix.texi:32732 msgid "Defaults to @samp{\"/\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32370 +#: guix-git/doc/guix.texi:32735 #, no-wrap msgid "{@code{cgit-configuration} parameter} repository-cgit-configuration-list repositories" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32372 +#: guix-git/doc/guix.texi:32737 msgid "A list of @dfn{cgit-repo} records to use with config." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32376 +#: guix-git/doc/guix.texi:32741 msgid "Available @code{repository-cgit-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32377 +#: guix-git/doc/guix.texi:32742 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list snapshots" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32380 +#: guix-git/doc/guix.texi:32745 msgid "A mask of snapshot formats for this repo that cgit generates links for, restricted by the global @code{snapshots} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32385 +#: guix-git/doc/guix.texi:32750 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object source-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32387 +#: guix-git/doc/guix.texi:32752 msgid "Override the default @code{source-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32392 +#: guix-git/doc/guix.texi:32757 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32394 +#: guix-git/doc/guix.texi:32759 msgid "The relative URL used to access the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32399 +#: guix-git/doc/guix.texi:32764 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object about-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32401 +#: guix-git/doc/guix.texi:32766 msgid "Override the default @code{about-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32406 +#: guix-git/doc/guix.texi:32771 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string branch-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32409 +#: guix-git/doc/guix.texi:32774 msgid "Flag which, when set to @samp{age}, enables date ordering in the branch ref list, and when set to @samp{name} enables ordering by branch name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32414 +#: guix-git/doc/guix.texi:32779 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list clone-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32416 +#: guix-git/doc/guix.texi:32781 msgid "A list of URLs which can be used to clone repo." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32421 +#: guix-git/doc/guix.texi:32786 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object commit-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32423 +#: guix-git/doc/guix.texi:32788 msgid "Override the default @code{commit-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32428 +#: guix-git/doc/guix.texi:32793 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string commit-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32437 +#: guix-git/doc/guix.texi:32802 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string defbranch" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32442 +#: guix-git/doc/guix.texi:32807 msgid "The name of the default branch for this repository. If no such branch exists in the repository, the first branch name (when sorted) is used as default instead. By default branch pointed to by HEAD, or ``master'' if there is no suitable HEAD." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32447 +#: guix-git/doc/guix.texi:32812 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string desc" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32449 +#: guix-git/doc/guix.texi:32814 msgid "The value to show as repository description." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32454 +#: guix-git/doc/guix.texi:32819 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string homepage" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32456 +#: guix-git/doc/guix.texi:32821 msgid "The value to show as repository homepage." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32461 +#: guix-git/doc/guix.texi:32826 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object email-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32463 +#: guix-git/doc/guix.texi:32828 msgid "Override the default @code{email-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32468 +#: guix-git/doc/guix.texi:32833 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-commit-graph?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32471 +#: guix-git/doc/guix.texi:32836 msgid "A flag which can be used to disable the global setting @code{enable-commit-graph?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32476 +#: guix-git/doc/guix.texi:32841 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-log-filecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32479 +#: guix-git/doc/guix.texi:32844 msgid "A flag which can be used to disable the global setting @code{enable-log-filecount?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32484 +#: guix-git/doc/guix.texi:32849 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-log-linecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32487 +#: guix-git/doc/guix.texi:32852 msgid "A flag which can be used to disable the global setting @code{enable-log-linecount?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32492 +#: guix-git/doc/guix.texi:32857 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-remote-branches?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32500 +#: guix-git/doc/guix.texi:32865 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-subject-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32503 +#: guix-git/doc/guix.texi:32868 msgid "A flag which can be used to override the global setting @code{enable-subject-links?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32508 +#: guix-git/doc/guix.texi:32873 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-html-serving?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32511 +#: guix-git/doc/guix.texi:32876 msgid "A flag which can be used to override the global setting @code{enable-html-serving?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32516 +#: guix-git/doc/guix.texi:32881 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-boolean hide?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32519 +#: guix-git/doc/guix.texi:32884 msgid "Flag which, when set to @code{#t}, hides the repository from the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32524 +#: guix-git/doc/guix.texi:32889 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-boolean ignore?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32526 +#: guix-git/doc/guix.texi:32891 msgid "Flag which, when set to @samp{#t}, ignores the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32531 +#: guix-git/doc/guix.texi:32896 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object logo" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32534 +#: guix-git/doc/guix.texi:32899 msgid "URL which specifies the source of an image which will be used as a logo on this repo’s pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32539 +#: guix-git/doc/guix.texi:32904 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string logo-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32546 +#: guix-git/doc/guix.texi:32911 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object owner-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32548 +#: guix-git/doc/guix.texi:32913 msgid "Override the default @code{owner-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32553 +#: guix-git/doc/guix.texi:32918 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string module-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32557 +#: guix-git/doc/guix.texi:32922 msgid "Text which will be used as the formatstring for a hyperlink when a submodule is printed in a directory listing. The arguments for the formatstring are the path and SHA1 of the submodule commit." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32562 +#: guix-git/doc/guix.texi:32927 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} module-link-path module-link-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32566 +#: guix-git/doc/guix.texi:32931 msgid "Text which will be used as the formatstring for a hyperlink when a submodule with the specified subdirectory path is printed in a directory listing." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32571 +#: guix-git/doc/guix.texi:32936 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string max-stats" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32573 +#: guix-git/doc/guix.texi:32938 msgid "Override the default maximum statistics period." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32578 +#: guix-git/doc/guix.texi:32943 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32580 +#: guix-git/doc/guix.texi:32945 msgid "The value to show as repository name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32585 +#: guix-git/doc/guix.texi:32950 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string owner" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32587 +#: guix-git/doc/guix.texi:32952 msgid "A value used to identify the owner of the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32592 +#: guix-git/doc/guix.texi:32957 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32594 +#: guix-git/doc/guix.texi:32959 msgid "An absolute path to the repository directory." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32599 +#: guix-git/doc/guix.texi:32964 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string readme" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32602 +#: guix-git/doc/guix.texi:32967 msgid "A path (relative to repo) which specifies a file to include verbatim as the ``About'' page for this repo." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32607 +#: guix-git/doc/guix.texi:32972 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string section" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32615 +#: guix-git/doc/guix.texi:32980 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32617 guix-git/doc/guix.texi:32626 +#: guix-git/doc/guix.texi:32982 guix-git/doc/guix.texi:32991 msgid "Extra options will be appended to cgitrc file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32624 +#: guix-git/doc/guix.texi:32989 #, no-wrap msgid "{@code{cgit-configuration} parameter} list extra-options" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32638 +#: guix-git/doc/guix.texi:33003 msgid "However, it could be that you just want to get a @code{cgitrc} up and running. In that case, you can pass an @code{opaque-cgit-configuration} as a record to @code{cgit-service-type}. As its name indicates, an opaque configuration does not have easy reflective capabilities." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32640 +#: guix-git/doc/guix.texi:33005 msgid "Available @code{opaque-cgit-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32641 +#: guix-git/doc/guix.texi:33006 #, no-wrap msgid "{@code{opaque-cgit-configuration} parameter} package cgit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32643 +#: guix-git/doc/guix.texi:33008 msgid "The cgit package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32645 +#: guix-git/doc/guix.texi:33010 #, no-wrap msgid "{@code{opaque-cgit-configuration} parameter} string string" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32647 +#: guix-git/doc/guix.texi:33012 msgid "The contents of the @code{cgitrc}, as a string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32651 +#: guix-git/doc/guix.texi:33016 msgid "For example, if your @code{cgitrc} is just the empty string, you could instantiate a cgit service like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32656 +#: guix-git/doc/guix.texi:33021 #, no-wrap msgid "" "(service cgit-service-type\n" @@ -58084,40 +58756,40 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:32658 +#: guix-git/doc/guix.texi:33023 #, no-wrap msgid "Gitolite Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32660 +#: guix-git/doc/guix.texi:33025 #, no-wrap msgid "Gitolite service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32661 +#: guix-git/doc/guix.texi:33026 #, no-wrap msgid "Git, hosting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32664 +#: guix-git/doc/guix.texi:33029 msgid "@uref{https://gitolite.com/gitolite/, Gitolite} is a tool for hosting Git repositories on a central server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32667 +#: guix-git/doc/guix.texi:33032 msgid "Gitolite can handle multiple repositories and users, and supports flexible configuration of the permissions for the users on the repositories." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32670 +#: guix-git/doc/guix.texi:33035 msgid "The following example will configure Gitolite using the default @code{git} user, and the provided SSH public key." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32677 +#: guix-git/doc/guix.texi:33042 #, no-wrap msgid "" "(service gitolite-service-type\n" @@ -58128,220 +58800,220 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32682 +#: guix-git/doc/guix.texi:33047 msgid "Gitolite is configured through a special admin repository which you can clone, for example, if you setup Gitolite on @code{example.com}, you would run the following command to clone the admin repository." msgstr "" #. type: example -#: guix-git/doc/guix.texi:32685 +#: guix-git/doc/guix.texi:33050 #, no-wrap msgid "git clone git@@example.com:gitolite-admin\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32691 +#: guix-git/doc/guix.texi:33056 msgid "When the Gitolite service is activated, the provided @code{admin-pubkey} will be inserted in to the @file{keydir} directory in the gitolite-admin repository. If this results in a change in the repository, it will be committed using the message ``gitolite setup by GNU Guix''." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32692 +#: guix-git/doc/guix.texi:33057 #, no-wrap msgid "{Data Type} gitolite-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32694 +#: guix-git/doc/guix.texi:33059 msgid "Data type representing the configuration for @code{gitolite-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32696 +#: guix-git/doc/guix.texi:33061 #, no-wrap msgid "@code{package} (default: @var{gitolite})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32698 +#: guix-git/doc/guix.texi:33063 msgid "Gitolite package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32699 +#: guix-git/doc/guix.texi:33064 #, no-wrap msgid "@code{user} (default: @var{git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32702 +#: guix-git/doc/guix.texi:33067 msgid "User to use for Gitolite. This will be user that you use when accessing Gitolite over SSH." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32703 +#: guix-git/doc/guix.texi:33068 #, no-wrap msgid "@code{group} (default: @var{git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32705 +#: guix-git/doc/guix.texi:33070 msgid "Group to use for Gitolite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32706 +#: guix-git/doc/guix.texi:33071 #, no-wrap msgid "@code{home-directory} (default: @var{\"/var/lib/gitolite\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32708 +#: guix-git/doc/guix.texi:33073 msgid "Directory in which to store the Gitolite configuration and repositories." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32709 +#: guix-git/doc/guix.texi:33074 #, no-wrap msgid "@code{rc-file} (default: @var{(gitolite-rc-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32712 +#: guix-git/doc/guix.texi:33077 msgid "A ``file-like'' object (@pxref{G-Expressions, file-like objects}), representing the configuration for Gitolite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32713 +#: guix-git/doc/guix.texi:33078 #, no-wrap msgid "@code{admin-pubkey} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32717 +#: guix-git/doc/guix.texi:33082 msgid "A ``file-like'' object (@pxref{G-Expressions, file-like objects}) used to setup Gitolite. This will be inserted in to the @file{keydir} directory within the gitolite-admin repository." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32719 +#: guix-git/doc/guix.texi:33084 msgid "To specify the SSH key as a string, use the @code{plain-file} function." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32722 +#: guix-git/doc/guix.texi:33087 #, no-wrap msgid "(plain-file \"yourname.pub\" \"ssh-rsa AAAA... guix@@example.com\")\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32727 +#: guix-git/doc/guix.texi:33092 #, no-wrap msgid "{Data Type} gitolite-rc-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32729 +#: guix-git/doc/guix.texi:33094 msgid "Data type representing the Gitolite RC file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32731 +#: guix-git/doc/guix.texi:33096 #, no-wrap msgid "@code{umask} (default: @code{#o0077})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32734 +#: guix-git/doc/guix.texi:33099 msgid "This controls the permissions Gitolite sets on the repositories and their contents." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32738 +#: guix-git/doc/guix.texi:33103 msgid "A value like @code{#o0027} will give read access to the group used by Gitolite (by default: @code{git}). This is necessary when using Gitolite with software like cgit or gitweb." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32739 +#: guix-git/doc/guix.texi:33104 #, no-wrap msgid "@code{unsafe-pattern} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32744 +#: guix-git/doc/guix.texi:33109 msgid "An optional Perl regular expression for catching unsafe configurations in the configuration file. See @uref{https://gitolite.com/gitolite/git-config.html#compensating-for-unsafe_patt, Gitolite's documentation} for more information." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32751 +#: guix-git/doc/guix.texi:33116 msgid "When the value is not @code{#f}, it should be a string containing a Perl regular expression, such as @samp{\"[`~#\\$\\&()|;<>]\"}, which is the default value used by gitolite. It rejects any special character in configuration that might be interpreted by a shell, which is useful when sharing the administration burden with other people that do not otherwise have shell access on the server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32752 +#: guix-git/doc/guix.texi:33117 #, no-wrap msgid "@code{git-config-keys} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32755 +#: guix-git/doc/guix.texi:33120 msgid "Gitolite allows you to set git config values using the @samp{config} keyword. This setting allows control over the config keys to accept." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32756 +#: guix-git/doc/guix.texi:33121 #, no-wrap msgid "@code{roles} (default: @code{'((\"READERS\" . 1) (\"WRITERS\" . ))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32758 +#: guix-git/doc/guix.texi:33123 msgid "Set the role names allowed to be used by users running the perms command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32759 +#: guix-git/doc/guix.texi:33124 #, no-wrap msgid "@code{enable} (default: @code{'(\"help\" \"desc\" \"info\" \"perms\" \"writable\" \"ssh-authkeys\" \"git-config\" \"daemon\" \"gitweb\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32761 +#: guix-git/doc/guix.texi:33126 msgid "This setting controls the commands and features to enable within Gitolite." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:32766 +#: guix-git/doc/guix.texi:33131 #, no-wrap msgid "Gitile Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32768 +#: guix-git/doc/guix.texi:33133 #, no-wrap msgid "Gitile service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32769 +#: guix-git/doc/guix.texi:33134 #, no-wrap msgid "Git, forge" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32772 +#: guix-git/doc/guix.texi:33137 msgid "@uref{https://git.lepiller.eu/gitile, Gitile} is a Git forge for viewing public git repository contents from a web browser." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32778 +#: guix-git/doc/guix.texi:33143 msgid "Gitile works best in collaboration with Gitolite, and will serve the public repositories from Gitolite by default. The service should listen only on a local port, and a webserver should be configured to serve static resources. The gitile service provides an easy way to extend the Nginx service for that purpose (@pxref{NGINX})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32782 +#: guix-git/doc/guix.texi:33147 msgid "The following example will configure Gitile to serve repositories from a custom location, with some default messages for the home page and the footers." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32805 +#: guix-git/doc/guix.texi:33170 #, no-wrap msgid "" "(service gitile-service-type\n" @@ -58368,12 +59040,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32814 +#: guix-git/doc/guix.texi:33179 msgid "In addition to the configuration record, you should configure your git repositories to contain some optional information. First, your public repositories need to contain the @file{git-daemon-export-ok} magic file that allows Git to export the repository. Gitile uses the presence of this file to detect public repositories it should make accessible. To do so with Gitolite for instance, modify your @file{conf/gitolite.conf} to include this in the repositories you want to make public:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:32818 +#: guix-git/doc/guix.texi:33183 #, no-wrap msgid "" "repo foo\n" @@ -58381,12 +59053,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32824 +#: guix-git/doc/guix.texi:33189 msgid "In addition, Gitile can read the repository configuration to display more information on the repository. Gitile uses the gitweb namespace for its configuration. As an example, you can use the following in your @file{conf/gitolite.conf}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:32831 +#: guix-git/doc/guix.texi:33196 #, no-wrap msgid "" "repo foo\n" @@ -58397,12 +59069,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32837 +#: guix-git/doc/guix.texi:33202 msgid "Do not forget to commit and push these changes once you are satisfied. You may need to change your gitolite configuration to allow the previous configuration options to be set. One way to do that is to add the following service definition:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32849 +#: guix-git/doc/guix.texi:33214 #, no-wrap msgid "" "(service gitolite-service-type\n" @@ -58418,243 +59090,243 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32851 +#: guix-git/doc/guix.texi:33216 #, no-wrap msgid "{Data Type} gitile-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32853 +#: guix-git/doc/guix.texi:33218 msgid "Data type representing the configuration for @code{gitile-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32855 +#: guix-git/doc/guix.texi:33220 #, no-wrap msgid "@code{package} (default: @var{gitile})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32857 +#: guix-git/doc/guix.texi:33222 msgid "Gitile package to use." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32860 +#: guix-git/doc/guix.texi:33225 msgid "The host on which gitile is listening." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32861 +#: guix-git/doc/guix.texi:33226 #, no-wrap msgid "@code{port} (default: @code{8080})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32863 +#: guix-git/doc/guix.texi:33228 msgid "The port on which gitile is listening." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32864 +#: guix-git/doc/guix.texi:33229 #, no-wrap msgid "@code{database} (default: @code{\"/var/lib/gitile/gitile-db.sql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32866 +#: guix-git/doc/guix.texi:33231 msgid "The location of the database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32867 +#: guix-git/doc/guix.texi:33232 #, no-wrap msgid "@code{repositories} (default: @code{\"/var/lib/gitolite/repositories\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32871 +#: guix-git/doc/guix.texi:33236 msgid "The location of the repositories. Note that only public repositories will be shown by Gitile. To make a repository public, add an empty @file{git-daemon-export-ok} file at the root of that repository." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:32872 +#: guix-git/doc/guix.texi:33237 #, no-wrap msgid "base-git-url" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32874 +#: guix-git/doc/guix.texi:33239 msgid "The base git url that will be used to show clone commands." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32875 +#: guix-git/doc/guix.texi:33240 #, no-wrap msgid "@code{index-title} (default: @code{\"Index\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32877 +#: guix-git/doc/guix.texi:33242 msgid "The page title for the index page that lists all the available repositories." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32878 +#: guix-git/doc/guix.texi:33243 #, no-wrap msgid "@code{intro} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32881 +#: guix-git/doc/guix.texi:33246 msgid "The intro content, as a list of sxml expressions. This is shown above the list of repositories, on the index page." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32882 +#: guix-git/doc/guix.texi:33247 #, no-wrap msgid "@code{footer} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32885 +#: guix-git/doc/guix.texi:33250 msgid "The footer content, as a list of sxml expressions. This is shown on every page served by Gitile." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:32886 +#: guix-git/doc/guix.texi:33251 #, no-wrap msgid "nginx-server-block" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32889 +#: guix-git/doc/guix.texi:33254 msgid "An nginx server block that will be extended and used as a reverse proxy by Gitile to serve its pages, and as a normal web server to serve its assets." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32893 +#: guix-git/doc/guix.texi:33258 msgid "You can use this block to add more custom URLs to your domain, such as a @code{/git/} URL for anonymous clones, or serving any other files you would like to serve." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:32900 +#: guix-git/doc/guix.texi:33265 #, no-wrap msgid "The Battle for Wesnoth Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32901 +#: guix-git/doc/guix.texi:33266 #, no-wrap msgid "wesnothd" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32905 +#: guix-git/doc/guix.texi:33270 msgid "@uref{https://wesnoth.org, The Battle for Wesnoth} is a fantasy, turn based tactical strategy game, with several single player campaigns, and multiplayer games (both networked and local)." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32906 +#: guix-git/doc/guix.texi:33271 #, no-wrap msgid "{Scheme Variable} wesnothd-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32910 +#: guix-git/doc/guix.texi:33275 msgid "Service type for the wesnothd service. Its value must be a @code{wesnothd-configuration} object. To run wesnothd in the default configuration, instantiate it as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32913 +#: guix-git/doc/guix.texi:33278 #, no-wrap msgid "(service wesnothd-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32916 +#: guix-git/doc/guix.texi:33281 #, no-wrap msgid "{Data Type} wesnothd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32918 +#: guix-git/doc/guix.texi:33283 msgid "Data type representing the configuration of @command{wesnothd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32920 +#: guix-git/doc/guix.texi:33285 #, no-wrap msgid "@code{package} (default: @code{wesnoth-server})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32922 +#: guix-git/doc/guix.texi:33287 msgid "The wesnoth server package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32923 +#: guix-git/doc/guix.texi:33288 #, no-wrap msgid "@code{port} (default: @code{15000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32925 +#: guix-git/doc/guix.texi:33290 guix-git/doc/guix.texi:33681 msgid "The port to bind the server to." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32931 +#: guix-git/doc/guix.texi:33296 #, no-wrap msgid "pam-mount" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32936 +#: guix-git/doc/guix.texi:33301 msgid "The @code{(gnu services pam-mount)} module provides a service allowing users to mount volumes when they log in. It should be able to mount any volume format supported by the system." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32937 +#: guix-git/doc/guix.texi:33302 #, no-wrap msgid "{Scheme Variable} pam-mount-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32939 +#: guix-git/doc/guix.texi:33304 msgid "Service type for PAM Mount support." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32941 +#: guix-git/doc/guix.texi:33306 #, no-wrap msgid "{Data Type} pam-mount-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32943 +#: guix-git/doc/guix.texi:33308 msgid "Data type representing the configuration of PAM Mount." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:32947 +#: guix-git/doc/guix.texi:33312 #, no-wrap msgid "rules" msgstr "säännöt" #. type: table -#: guix-git/doc/guix.texi:32950 +#: guix-git/doc/guix.texi:33315 msgid "The configuration rules that will be used to generate @file{/etc/security/pam_mount.conf.xml}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32954 +#: guix-git/doc/guix.texi:33319 msgid "The configuration rules are SXML elements (@pxref{SXML,,, guile, GNU Guile Reference Manual}), and the default ones don't mount anything for anyone at login:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32969 +#: guix-git/doc/guix.texi:33334 #, no-wrap msgid "" "`((debug (@@ (enable \"0\")))\n" @@ -58673,12 +59345,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32975 +#: guix-git/doc/guix.texi:33340 msgid "Some @code{volume} elements must be added to automatically mount volumes at login. Here's an example allowing the user @code{alice} to mount her encrypted @env{HOME} directory and allowing the user @code{bob} to mount the partition where he stores his data:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33000 +#: guix-git/doc/guix.texi:33365 #, no-wrap msgid "" "(define pam-mount-rules\n" @@ -58708,7 +59380,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33004 +#: guix-git/doc/guix.texi:33369 #, no-wrap msgid "" "(service pam-mount-service-type\n" @@ -58717,770 +59389,909 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33008 +#: guix-git/doc/guix.texi:33373 msgid "The complete list of possible options can be found in the man page for @uref{http://pam-mount.sourceforge.net/pam_mount.conf.5.html, pam_mount.conf}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33015 +#: guix-git/doc/guix.texi:33380 #, no-wrap msgid "Guix Build Coordinator" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33021 +#: guix-git/doc/guix.texi:33386 msgid "The @uref{https://git.cbaines.net/guix/build-coordinator/,Guix Build Coordinator} aids in distributing derivation builds among machines running an @dfn{agent}. The build daemon is still used to build the derivations, but the Guix Build Coordinator manages allocating builds and working with the results." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33027 +#: guix-git/doc/guix.texi:33392 msgid "The Guix Build Coordinator consists of one @dfn{coordinator}, and one or more connected @dfn{agent} processes. The coordinator process handles clients submitting builds, and allocating builds to agents. The agent processes talk to a build daemon to actually perform the builds, then send the results back to the coordinator." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33031 +#: guix-git/doc/guix.texi:33396 msgid "There is a script to run the coordinator component of the Guix Build Coordinator, but the Guix service uses a custom Guile script instead, to provide better integration with G-expressions used in the configuration." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33032 +#: guix-git/doc/guix.texi:33397 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33035 +#: guix-git/doc/guix.texi:33400 msgid "Service type for the Guix Build Coordinator. Its value must be a @code{guix-build-coordinator-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33037 +#: guix-git/doc/guix.texi:33402 #, no-wrap msgid "{Data Type} guix-build-coordinator-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33039 +#: guix-git/doc/guix.texi:33404 msgid "Data type representing the configuration of the Guix Build Coordinator." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33041 guix-git/doc/guix.texi:33211 +#: guix-git/doc/guix.texi:33406 guix-git/doc/guix.texi:33576 #, no-wrap msgid "@code{package} (default: @code{guix-build-coordinator})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33043 guix-git/doc/guix.texi:33087 -#: guix-git/doc/guix.texi:33213 +#: guix-git/doc/guix.texi:33408 guix-git/doc/guix.texi:33452 +#: guix-git/doc/guix.texi:33578 msgid "The Guix Build Coordinator package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33044 +#: guix-git/doc/guix.texi:33409 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33046 guix-git/doc/guix.texi:33090 -#: guix-git/doc/guix.texi:33216 guix-git/doc/guix.texi:33262 +#: guix-git/doc/guix.texi:33411 guix-git/doc/guix.texi:33455 +#: guix-git/doc/guix.texi:33581 guix-git/doc/guix.texi:33627 +#: guix-git/doc/guix.texi:33675 msgid "The system user to run the service as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33047 +#: guix-git/doc/guix.texi:33412 #, no-wrap msgid "@code{group} (default: @code{\"guix-build-coordinator\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33049 guix-git/doc/guix.texi:33265 +#: guix-git/doc/guix.texi:33414 guix-git/doc/guix.texi:33630 +#: guix-git/doc/guix.texi:33678 msgid "The system group to run the service as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33050 +#: guix-git/doc/guix.texi:33415 #, no-wrap msgid "@code{database-uri-string} (default: @code{\"sqlite:///var/lib/guix-build-coordinator/guix_build_coordinator.db\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33052 +#: guix-git/doc/guix.texi:33417 msgid "The URI to use for the database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33053 +#: guix-git/doc/guix.texi:33418 #, no-wrap msgid "@code{agent-communication-uri} (default: @code{\"http://0.0.0.0:8745\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33055 +#: guix-git/doc/guix.texi:33420 msgid "The URI describing how to listen to requests from agent processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33056 +#: guix-git/doc/guix.texi:33421 #, no-wrap msgid "@code{client-communication-uri} (default: @code{\"http://127.0.0.1:8746\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33060 +#: guix-git/doc/guix.texi:33425 msgid "The URI describing how to listen to requests from clients. The client API allows submitting builds and currently isn't authenticated, so take care when configuring this value." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33061 +#: guix-git/doc/guix.texi:33426 #, no-wrap msgid "@code{allocation-strategy} (default: @code{#~basic-build-allocation-strategy})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33065 +#: guix-git/doc/guix.texi:33430 msgid "A G-expression for the allocation strategy to be used. This is a procedure that takes the datastore as an argument and populates the allocation plan in the database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33066 +#: guix-git/doc/guix.texi:33431 #, no-wrap msgid "@code{hooks} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33069 +#: guix-git/doc/guix.texi:33434 msgid "An association list of hooks. These provide a way to execute arbitrary code upon certain events, like a build result being processed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33070 +#: guix-git/doc/guix.texi:33435 #, no-wrap msgid "@code{guile} (default: @code{guile-3.0-latest})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33072 +#: guix-git/doc/guix.texi:33437 msgid "The Guile package with which to run the Guix Build Coordinator." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33076 +#: guix-git/doc/guix.texi:33441 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-agent-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33079 +#: guix-git/doc/guix.texi:33444 msgid "Service type for a Guix Build Coordinator agent. Its value must be a @code{guix-build-coordinator-agent-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33081 +#: guix-git/doc/guix.texi:33446 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33083 +#: guix-git/doc/guix.texi:33448 msgid "Data type representing the configuration a Guix Build Coordinator agent." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33085 +#: guix-git/doc/guix.texi:33450 #, no-wrap msgid "@code{package} (default: @code{guix-build-coordinator/agent-only})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33088 +#: guix-git/doc/guix.texi:33453 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator-agent\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33091 +#: guix-git/doc/guix.texi:33456 #, no-wrap msgid "@code{coordinator} (default: @code{\"http://localhost:8745\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33093 guix-git/doc/guix.texi:33219 +#: guix-git/doc/guix.texi:33458 guix-git/doc/guix.texi:33584 msgid "The URI to use when connecting to the coordinator." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33094 +#: guix-git/doc/guix.texi:33459 #, no-wrap msgid "authentication" msgstr "tunnistautuminen" #. type: table -#: guix-git/doc/guix.texi:33097 +#: guix-git/doc/guix.texi:33462 msgid "Record describing how this agent should authenticate with the coordinator. Possible record types are described below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33098 guix-git/doc/guix.texi:33220 +#: guix-git/doc/guix.texi:33463 guix-git/doc/guix.texi:33585 #, no-wrap msgid "@code{systems} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33101 +#: guix-git/doc/guix.texi:33466 msgid "The systems for which this agent should fetch builds. The agent process will use the current system it's running on as the default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33102 +#: guix-git/doc/guix.texi:33467 #, no-wrap msgid "@code{max-parallel-builds} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33104 +#: guix-git/doc/guix.texi:33469 msgid "The number of builds to perform in parallel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33105 +#: guix-git/doc/guix.texi:33470 #, no-wrap msgid "@code{max-1min-load-average} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33109 +#: guix-git/doc/guix.texi:33474 msgid "Load average value to look at when considering starting new builds, if the 1 minute load average exceeds this value, the agent will wait before starting new builds." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33113 +#: guix-git/doc/guix.texi:33478 msgid "This will be unspecified if the value is @code{#f}, and the agent will use the number of cores reported by the system as the max 1 minute load average." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33114 +#: guix-git/doc/guix.texi:33479 #, no-wrap msgid "@code{derivation-substitute-urls} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33117 +#: guix-git/doc/guix.texi:33482 msgid "URLs from which to attempt to fetch substitutes for derivations, if the derivations aren't already available." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33118 +#: guix-git/doc/guix.texi:33483 #, no-wrap msgid "@code{non-derivation-substitute-urls} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33121 +#: guix-git/doc/guix.texi:33486 msgid "URLs from which to attempt to fetch substitutes for build inputs, if the input store items aren't already available." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33125 +#: guix-git/doc/guix.texi:33490 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-password-auth" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33128 +#: guix-git/doc/guix.texi:33493 msgid "Data type representing an agent authenticating with a coordinator via a UUID and password." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33134 guix-git/doc/guix.texi:33150 +#: guix-git/doc/guix.texi:33499 guix-git/doc/guix.texi:33515 msgid "The UUID of the agent. This should be generated by the coordinator process, stored in the coordinator database, and used by the intended agent." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33137 +#: guix-git/doc/guix.texi:33502 msgid "The password to use when connecting to the coordinator." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33141 +#: guix-git/doc/guix.texi:33506 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-password-file-auth" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33144 +#: guix-git/doc/guix.texi:33509 msgid "Data type representing an agent authenticating with a coordinator via a UUID and password read from a file." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33151 +#: guix-git/doc/guix.texi:33516 #, no-wrap msgid "password-file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33154 +#: guix-git/doc/guix.texi:33519 msgid "A file containing the password to use when connecting to the coordinator." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33158 +#: guix-git/doc/guix.texi:33523 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-dynamic-auth" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33161 +#: guix-git/doc/guix.texi:33526 msgid "Data type representing an agent authenticating with a coordinator via a dynamic auth token and agent name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33163 guix-git/doc/guix.texi:33180 +#: guix-git/doc/guix.texi:33528 guix-git/doc/guix.texi:33545 #, no-wrap msgid "agent-name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33167 guix-git/doc/guix.texi:33184 +#: guix-git/doc/guix.texi:33532 guix-git/doc/guix.texi:33549 msgid "Name of an agent, this is used to match up to an existing entry in the database if there is one. When no existing entry is found, a new entry is automatically added." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33168 +#: guix-git/doc/guix.texi:33533 #, no-wrap msgid "token" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33171 +#: guix-git/doc/guix.texi:33536 msgid "Dynamic auth token, this is created and stored in the coordinator database, and is used by the agent to authenticate." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33175 +#: guix-git/doc/guix.texi:33540 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-dynamic-auth-with-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33178 +#: guix-git/doc/guix.texi:33543 msgid "Data type representing an agent authenticating with a coordinator via a dynamic auth token read from a file and agent name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33185 +#: guix-git/doc/guix.texi:33550 #, no-wrap msgid "token-file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33188 +#: guix-git/doc/guix.texi:33553 msgid "File containing the dynamic auth token, this is created and stored in the coordinator database, and is used by the agent to authenticate." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33198 +#: guix-git/doc/guix.texi:33563 msgid "The Guix Build Coordinator package contains a script to query an instance of the Guix Data Service for derivations to build, and then submit builds for those derivations to the coordinator. The service type below assists in running this script. This is an additional tool that may be useful when building derivations contained within an instance of the Guix Data Service." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33199 +#: guix-git/doc/guix.texi:33564 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-queue-builds-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33204 +#: guix-git/doc/guix.texi:33569 msgid "Service type for the guix-build-coordinator-queue-builds-from-guix-data-service script. Its value must be a @code{guix-build-coordinator-queue-builds-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33206 +#: guix-git/doc/guix.texi:33571 #, no-wrap msgid "{Data Type} guix-build-coordinator-queue-builds-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33209 +#: guix-git/doc/guix.texi:33574 msgid "Data type representing the options to the queue builds from guix data service script." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33214 +#: guix-git/doc/guix.texi:33579 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator-queue-builds\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33217 +#: guix-git/doc/guix.texi:33582 #, no-wrap msgid "@code{coordinator} (default: @code{\"http://localhost:8746\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33222 +#: guix-git/doc/guix.texi:33587 msgid "The systems for which to fetch derivations to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33223 +#: guix-git/doc/guix.texi:33588 #, no-wrap msgid "@code{systems-and-targets} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33226 +#: guix-git/doc/guix.texi:33591 msgid "An association list of system and target pairs for which to fetch derivations to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33227 +#: guix-git/doc/guix.texi:33592 #, no-wrap msgid "@code{guix-data-service} (default: @code{\"https://data.guix.gnu.org\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33230 +#: guix-git/doc/guix.texi:33595 msgid "The Guix Data Service instance from which to query to find out about derivations to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33231 +#: guix-git/doc/guix.texi:33596 #, no-wrap msgid "@code{processed-commits-file} (default: @code{\"/var/cache/guix-build-coordinator-queue-builds/processed-commits\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33234 +#: guix-git/doc/guix.texi:33599 msgid "A file to record which commits have been processed, to avoid needlessly processing them again if the service is restarted." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33238 +#: guix-git/doc/guix.texi:33603 #, no-wrap msgid "Guix Data Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33242 +#: guix-git/doc/guix.texi:33607 msgid "The @uref{http://data.guix.gnu.org,Guix Data Service} processes, stores and provides data about GNU Guix. This includes information about packages, derivations and lint warnings." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33245 +#: guix-git/doc/guix.texi:33610 msgid "The data is stored in a PostgreSQL database, and available through a web interface." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33246 +#: guix-git/doc/guix.texi:33611 #, no-wrap msgid "{Scheme Variable} guix-data-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33251 +#: guix-git/doc/guix.texi:33616 msgid "Service type for the Guix Data Service. Its value must be a @code{guix-data-service-configuration} object. The service optionally extends the getmail service, as the guix-commits mailing list is used to find out about changes in the Guix git repository." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33253 +#: guix-git/doc/guix.texi:33618 #, no-wrap msgid "{Data Type} guix-data-service-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33255 +#: guix-git/doc/guix.texi:33620 guix-git/doc/guix.texi:33668 msgid "Data type representing the configuration of the Guix Data Service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33257 +#: guix-git/doc/guix.texi:33622 #, no-wrap msgid "@code{package} (default: @code{guix-data-service})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33259 +#: guix-git/doc/guix.texi:33624 msgid "The Guix Data Service package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33260 +#: guix-git/doc/guix.texi:33625 #, no-wrap msgid "@code{user} (default: @code{\"guix-data-service\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33263 +#: guix-git/doc/guix.texi:33628 #, no-wrap msgid "@code{group} (default: @code{\"guix-data-service\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33266 +#: guix-git/doc/guix.texi:33631 #, no-wrap msgid "@code{port} (default: @code{8765})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33268 +#: guix-git/doc/guix.texi:33633 msgid "The port to bind the web service to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33269 +#: guix-git/doc/guix.texi:33634 guix-git/doc/guix.texi:33682 #, no-wrap msgid "@code{host} (default: @code{\"127.0.0.1\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33271 +#: guix-git/doc/guix.texi:33636 msgid "The host to bind the web service to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33272 +#: guix-git/doc/guix.texi:33637 #, no-wrap msgid "@code{getmail-idle-mailboxes} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33275 +#: guix-git/doc/guix.texi:33640 msgid "If set, this is the list of mailboxes that the getmail service will be configured to listen to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33276 +#: guix-git/doc/guix.texi:33641 #, no-wrap msgid "@code{commits-getmail-retriever-configuration} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33280 +#: guix-git/doc/guix.texi:33645 msgid "If set, this is the @code{getmail-retriever-configuration} object with which to configure getmail to fetch mail from the guix-commits mailing list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33281 +#: guix-git/doc/guix.texi:33646 #, no-wrap msgid "@code{extra-options} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33283 +#: guix-git/doc/guix.texi:33648 msgid "Extra command line options for @code{guix-data-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33284 +#: guix-git/doc/guix.texi:33649 #, no-wrap msgid "@code{extra-process-jobs-options} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33286 +#: guix-git/doc/guix.texi:33651 msgid "Extra command line options for @code{guix-data-service-process-jobs}." msgstr "" +#. type: subsubheading +#: guix-git/doc/guix.texi:33655 +#, no-wrap +msgid "Nar Herder" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:33658 +msgid "The @uref{https://git.cbaines.net/guix/nar-herder/about/,Nar Herder} is a utility for managing a collection of nars." +msgstr "" + +#. type: defvar +#: guix-git/doc/guix.texi:33659 +#, no-wrap +msgid "{Scheme Variable} nar-herder-type" +msgstr "" + +#. type: defvar +#: guix-git/doc/guix.texi:33664 +msgid "Service type for the Guix Data Service. Its value must be a @code{nar-herder-configuration} object. The service optionally extends the getmail service, as the guix-commits mailing list is used to find out about changes in the Guix git repository." +msgstr "" + +#. type: deftp +#: guix-git/doc/guix.texi:33666 +#, no-wrap +msgid "{Data Type} nar-herder-configuration" +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33670 +#, no-wrap +msgid "@code{package} (default: @code{nar-herder})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33672 +msgid "The Nar Herder package to use." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33673 +#, no-wrap +msgid "@code{user} (default: @code{\"nar-herder\"})" +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33676 +#, no-wrap +msgid "@code{group} (default: @code{\"nar-herder\"})" +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33679 +#, no-wrap +msgid "@code{port} (default: @code{8734})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33684 +msgid "The host to bind the server to." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33689 +msgid "Optional URL of the other Nar Herder instance which should be mirrored. This means that this Nar Herder instance will download it's database, and keep it up to date." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33690 +#, no-wrap +msgid "@code{database} (default: @code{\"/var/lib/nar-herder/nar_herder.db\"})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33695 +msgid "Location for the database. If this Nar Herder instance is mirroring another, the database will be downloaded if it doesn't exist. If this Nar Herder instance isn't mirroring another, an empty database will be created." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33696 +#, no-wrap +msgid "@code{database-dump} (default: @code{\"/var/lib/nar-herder/nar_herder_dump.db\"})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33700 +msgid "Location of the database dump. This is created and regularly updated by taking a copy of the database. This is the version of the database that is available to download." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33701 +#, no-wrap +msgid "@code{storage} (default: @code{#f})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33703 +msgid "Optional location in which to store nars." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33704 +#, no-wrap +msgid "@code{storage-limit} (default: @code{\"none\"})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33707 +msgid "Limit in bytes for the nars stored in the storage location. This can also be set to ``none'' so that there is no limit." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33710 +msgid "When the storage location exceeds this size, nars are removed according to the nar removal criteria." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33711 +#, no-wrap +msgid "@code{storage-nar-removal-criteria} (default: @code{'()})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33714 +msgid "Criteria used to remove nars from the storage location. These are used in conjunction with the storage limit." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33719 +msgid "When the storage location exceeds the storage limit size, nars will be checked against the nar removal criteria and if any of the criteria match, they will be removed. This will continue until the storage location is below the storage limit size." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33723 +msgid "Each criteria is specified by a string, then an equals sign, then another string. Currently, only one criteria is supported, checking if a nar is stored on another Nar Herder instance." +msgstr "" + #. type: cindex -#: guix-git/doc/guix.texi:33293 +#: guix-git/doc/guix.texi:33730 #, no-wrap msgid "oom" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33294 +#: guix-git/doc/guix.texi:33731 #, no-wrap msgid "out of memory killer" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33295 +#: guix-git/doc/guix.texi:33732 #, no-wrap msgid "earlyoom" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33296 +#: guix-git/doc/guix.texi:33733 #, no-wrap msgid "early out of memory daemon" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33297 +#: guix-git/doc/guix.texi:33734 #, no-wrap msgid "Early OOM Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33304 +#: guix-git/doc/guix.texi:33741 msgid "@uref{https://github.com/rfjakob/earlyoom,Early OOM}, also known as Earlyoom, is a minimalist out of memory (OOM) daemon that runs in user space and provides a more responsive and configurable alternative to the in-kernel OOM killer. It is useful to prevent the system from becoming unresponsive when it runs out of memory." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33305 +#: guix-git/doc/guix.texi:33742 #, no-wrap msgid "{Scheme Variable} earlyoom-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33310 +#: guix-git/doc/guix.texi:33747 msgid "The service type for running @command{earlyoom}, the Early OOM daemon. Its value must be a @code{earlyoom-configuration} object, described below. The service can be instantiated in its default configuration with:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33313 +#: guix-git/doc/guix.texi:33750 #, no-wrap msgid "(service earlyoom-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33316 +#: guix-git/doc/guix.texi:33753 #, no-wrap msgid "{Data Type} earlyoom-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33318 +#: guix-git/doc/guix.texi:33755 msgid "This is the configuration record for the @code{earlyoom-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33320 +#: guix-git/doc/guix.texi:33757 #, no-wrap msgid "@code{earlyoom} (default: @var{earlyoom})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33322 +#: guix-git/doc/guix.texi:33759 msgid "The Earlyoom package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33323 +#: guix-git/doc/guix.texi:33760 #, no-wrap msgid "@code{minimum-available-memory} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33325 +#: guix-git/doc/guix.texi:33762 msgid "The threshold for the minimum @emph{available} memory, in percentages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33326 +#: guix-git/doc/guix.texi:33763 #, no-wrap msgid "@code{minimum-free-swap} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33328 +#: guix-git/doc/guix.texi:33765 msgid "The threshold for the minimum free swap memory, in percentages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33329 +#: guix-git/doc/guix.texi:33766 #, no-wrap msgid "@code{prefer-regexp} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33332 +#: guix-git/doc/guix.texi:33769 msgid "A regular expression (as a string) to match the names of the processes that should be preferably killed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33333 +#: guix-git/doc/guix.texi:33770 #, no-wrap msgid "@code{avoid-regexp} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33336 +#: guix-git/doc/guix.texi:33773 msgid "A regular expression (as a string) to match the names of the processes that should @emph{not} be killed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33337 +#: guix-git/doc/guix.texi:33774 #, no-wrap msgid "@code{memory-report-interval} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33340 +#: guix-git/doc/guix.texi:33777 msgid "The interval in seconds at which a memory report is printed. It is disabled by default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33341 +#: guix-git/doc/guix.texi:33778 #, no-wrap msgid "@code{ignore-positive-oom-score-adj?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33344 +#: guix-git/doc/guix.texi:33781 msgid "A boolean indicating whether the positive adjustments set in @file{/proc/*/oom_score_adj} should be ignored." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33345 +#: guix-git/doc/guix.texi:33782 #, no-wrap msgid "@code{show-debug-messages?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33348 +#: guix-git/doc/guix.texi:33785 msgid "A boolean indicating whether debug messages should be printed. The logs are saved at @file{/var/log/earlyoom.log}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33349 +#: guix-git/doc/guix.texi:33786 #, no-wrap msgid "@code{send-notification-command} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33352 +#: guix-git/doc/guix.texi:33789 msgid "This can be used to provide a custom command used for sending notifications." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33355 +#: guix-git/doc/guix.texi:33792 #, no-wrap msgid "modprobe" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33356 +#: guix-git/doc/guix.texi:33793 #, no-wrap msgid "kernel module loader" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33357 +#: guix-git/doc/guix.texi:33794 #, no-wrap msgid "Kernel Module Loader Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33363 +#: guix-git/doc/guix.texi:33800 msgid "The kernel module loader service allows one to load loadable kernel modules at boot. This is especially useful for modules that don't autoload and need to be manually loaded, as is the case with @code{ddcci}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33364 +#: guix-git/doc/guix.texi:33801 #, no-wrap msgid "{Scheme Variable} kernel-module-loader-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33370 +#: guix-git/doc/guix.texi:33807 msgid "The service type for loading loadable kernel modules at boot with @command{modprobe}. Its value must be a list of strings representing module names. For example loading the drivers provided by @code{ddcci-driver-linux}, in debugging mode by passing some module parameters, can be done as follow:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33375 +#: guix-git/doc/guix.texi:33812 #, no-wrap msgid "" "(use-modules (gnu) (gnu services))\n" @@ -59490,7 +60301,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33379 +#: guix-git/doc/guix.texi:33816 #, no-wrap msgid "" "(define ddcci-config\n" @@ -59500,7 +60311,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33389 +#: guix-git/doc/guix.texi:33826 #, no-wrap msgid "" "(operating-system\n" @@ -59515,411 +60326,411 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33392 +#: guix-git/doc/guix.texi:33829 #, no-wrap msgid "rasdaemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33393 +#: guix-git/doc/guix.texi:33830 #, no-wrap msgid "Platform Reliability, Availability and Serviceability daemon" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33394 +#: guix-git/doc/guix.texi:33831 #, no-wrap msgid "Rasdaemon Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33399 +#: guix-git/doc/guix.texi:33836 msgid "The Rasdaemon service provides a daemon which monitors platform @acronym{RAS, Reliability@comma{} Availability@comma{} and Serviceability} reports from Linux kernel trace events, logging them to syslogd." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33402 +#: guix-git/doc/guix.texi:33839 msgid "Reliability, Availability and Serviceability is a concept used on servers meant to measure their robustness." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33405 +#: guix-git/doc/guix.texi:33842 msgid "@strong{Relability} is the probability that a system will produce correct outputs:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33407 +#: guix-git/doc/guix.texi:33844 #, no-wrap msgid "Generally measured as Mean Time Between Failures (MTBF), and" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33408 +#: guix-git/doc/guix.texi:33845 #, no-wrap msgid "Enhanced by features that help to avoid, detect and repair hardware" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:33410 +#: guix-git/doc/guix.texi:33847 msgid "faults" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33414 +#: guix-git/doc/guix.texi:33851 msgid "@strong{Availability} is the probability that a system is operational at a given time:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33416 +#: guix-git/doc/guix.texi:33853 #, no-wrap msgid "Generally measured as a percentage of downtime per a period of time, and" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33417 +#: guix-git/doc/guix.texi:33854 #, no-wrap msgid "Often uses mechanisms to detect and correct hardware faults in runtime." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33422 +#: guix-git/doc/guix.texi:33859 msgid "@strong{Serviceability} is the simplicity and speed with which a system can be repaired or maintained:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33424 +#: guix-git/doc/guix.texi:33861 #, no-wrap msgid "Generally measured on Mean Time Between Repair (MTBR)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33429 +#: guix-git/doc/guix.texi:33866 msgid "Among the monitoring measures, the most usual ones include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33431 +#: guix-git/doc/guix.texi:33868 #, no-wrap msgid "CPU – detect errors at instruction execution and at L1/L2/L3 caches;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33432 +#: guix-git/doc/guix.texi:33869 #, no-wrap msgid "Memory – add error correction logic (ECC) to detect and correct errors;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33433 +#: guix-git/doc/guix.texi:33870 #, no-wrap msgid "I/O – add CRC checksums for transferred data;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33434 +#: guix-git/doc/guix.texi:33871 #, no-wrap msgid "Storage – RAID, journal file systems, checksums, Self-Monitoring," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:33436 +#: guix-git/doc/guix.texi:33873 msgid "Analysis and Reporting Technology (SMART)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33442 +#: guix-git/doc/guix.texi:33879 msgid "By monitoring the number of occurrences of error detections, it is possible to identify if the probability of hardware errors is increasing, and, on such case, do a preventive maintenance to replace a degraded component while those errors are correctable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33446 +#: guix-git/doc/guix.texi:33883 msgid "For detailed information about the types of error events gathered and how to make sense of them, see the kernel administrator's guide at @url{https://www.kernel.org/doc/html/latest/admin-guide/ras.html}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33447 +#: guix-git/doc/guix.texi:33884 #, no-wrap msgid "{Scheme Variable} rasdaemon-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33450 +#: guix-git/doc/guix.texi:33887 msgid "Service type for the @command{rasdaemon} service. It accepts a @code{rasdaemon-configuration} object. Instantiating like" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33453 +#: guix-git/doc/guix.texi:33890 #, no-wrap msgid "(service rasdaemon-service-type)\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33457 +#: guix-git/doc/guix.texi:33894 msgid "will load with a default configuration, which monitors all events and logs to syslogd." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33459 +#: guix-git/doc/guix.texi:33896 #, no-wrap msgid "{Data Type} rasdaemon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33461 +#: guix-git/doc/guix.texi:33898 msgid "The data type representing the configuration of @command{rasdaemon}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33463 +#: guix-git/doc/guix.texi:33900 #, no-wrap msgid "@code{record?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33468 +#: guix-git/doc/guix.texi:33905 msgid "A boolean indicating whether to record the events in an SQLite database. This provides a more structured access to the information contained in the log file. The database location is hard-coded to @file{/var/lib/rasdaemon/ras-mc_event.db}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33472 +#: guix-git/doc/guix.texi:33909 #, no-wrap msgid "zram" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33473 +#: guix-git/doc/guix.texi:33910 #, no-wrap msgid "compressed swap" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33474 +#: guix-git/doc/guix.texi:33911 #, no-wrap msgid "Compressed RAM-based block devices" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33475 +#: guix-git/doc/guix.texi:33912 #, no-wrap msgid "Zram Device Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33481 +#: guix-git/doc/guix.texi:33918 msgid "The Zram device service provides a compressed swap device in system memory. The Linux Kernel documentation has more information about @uref{https://www.kernel.org/doc/html/latest/admin-guide/blockdev/zram.html,zram} devices." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33482 +#: guix-git/doc/guix.texi:33919 #, no-wrap msgid "{Scheme Variable} zram-device-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33486 +#: guix-git/doc/guix.texi:33923 msgid "This service creates the zram block device, formats it as swap and enables it as a swap device. The service's value is a @code{zram-device-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33487 +#: guix-git/doc/guix.texi:33924 #, no-wrap msgid "{Data Type} zram-device-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33490 +#: guix-git/doc/guix.texi:33927 msgid "This is the data type representing the configuration for the zram-device service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33492 +#: guix-git/doc/guix.texi:33929 #, no-wrap msgid "@code{size} (default @code{\"1G\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33496 +#: guix-git/doc/guix.texi:33933 msgid "This is the amount of space you wish to provide for the zram device. It accepts a string and can be a number of bytes or use a suffix, eg.: @code{\"512M\"} or @code{1024000}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33496 +#: guix-git/doc/guix.texi:33933 #, no-wrap msgid "@code{compression-algorithm} (default @code{'lzo})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:33937 msgid "This is the compression algorithm you wish to use. It is difficult to list all the possible compression options, but common ones supported by Guix's Linux Libre Kernel include @code{'lzo}, @code{'lz4} and @code{'zstd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:33937 #, no-wrap msgid "@code{memory-limit} (default @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33507 +#: guix-git/doc/guix.texi:33944 msgid "This is the maximum amount of memory which the zram device can use. Setting it to '0' disables the limit. While it is generally expected that compression will be 2:1, it is possible that uncompressable data can be written to swap and this is a method to limit how much memory can be used. It accepts a string and can be a number of bytes or use a suffix, eg.: @code{\"2G\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33507 +#: guix-git/doc/guix.texi:33944 #, no-wrap msgid "@code{priority} (default @code{-1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33512 +#: guix-git/doc/guix.texi:33949 msgid "This is the priority of the swap device created from the zram device. @code{swapon} accepts values between -1 and 32767, with higher values indicating higher priority. Higher priority swap will generally be used first." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33520 +#: guix-git/doc/guix.texi:33957 #, no-wrap msgid "{Scheme Variable} hurd-console-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33522 +#: guix-git/doc/guix.texi:33959 msgid "This service starts the fancy @code{VGA} console client on the Hurd." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33524 +#: guix-git/doc/guix.texi:33961 msgid "The service's value is a @code{hurd-console-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33526 +#: guix-git/doc/guix.texi:33963 #, no-wrap msgid "{Data Type} hurd-console-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33529 +#: guix-git/doc/guix.texi:33966 msgid "This is the data type representing the configuration for the hurd-console-service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33531 guix-git/doc/guix.texi:33547 +#: guix-git/doc/guix.texi:33968 guix-git/doc/guix.texi:33984 #, no-wrap msgid "@code{hurd} (default: @var{hurd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33533 guix-git/doc/guix.texi:33549 +#: guix-git/doc/guix.texi:33970 guix-git/doc/guix.texi:33986 msgid "The Hurd package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33536 +#: guix-git/doc/guix.texi:33973 #, no-wrap msgid "{Scheme Variable} hurd-getty-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33538 +#: guix-git/doc/guix.texi:33975 msgid "This service starts a tty using the Hurd @code{getty} program." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33540 +#: guix-git/doc/guix.texi:33977 msgid "The service's value is a @code{hurd-getty-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33542 +#: guix-git/doc/guix.texi:33979 #, no-wrap msgid "{Data Type} hurd-getty-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33545 +#: guix-git/doc/guix.texi:33982 msgid "This is the data type representing the configuration for the hurd-getty-service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33552 +#: guix-git/doc/guix.texi:33989 msgid "The name of the console this Getty runs on---e.g., @code{\"tty1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33553 +#: guix-git/doc/guix.texi:33990 #, no-wrap msgid "@code{baud-rate} (default: @code{38400})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33555 +#: guix-git/doc/guix.texi:33992 msgid "An integer specifying the baud rate of the tty." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33562 +#: guix-git/doc/guix.texi:33999 #, no-wrap msgid "fingerprint" msgstr "sormenjälki" #. type: subsubheading -#: guix-git/doc/guix.texi:33563 +#: guix-git/doc/guix.texi:34000 #, no-wrap msgid "Fingerprint Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33567 +#: guix-git/doc/guix.texi:34004 msgid "The @code{(gnu services authentication)} module provides a DBus service to read and identify fingerprints via a fingerprint sensor." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33568 +#: guix-git/doc/guix.texi:34005 #, no-wrap msgid "{Scheme Variable} fprintd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33571 +#: guix-git/doc/guix.texi:34008 msgid "The service type for @command{fprintd}, which provides the fingerprint reading capability." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33574 +#: guix-git/doc/guix.texi:34011 #, no-wrap msgid "(service fprintd-service-type)\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33577 +#: guix-git/doc/guix.texi:34014 #, no-wrap msgid "sysctl" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33578 +#: guix-git/doc/guix.texi:34015 #, no-wrap msgid "System Control Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33582 +#: guix-git/doc/guix.texi:34019 msgid "The @code{(gnu services sysctl)} provides a service to configure kernel parameters at boot." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33583 +#: guix-git/doc/guix.texi:34020 #, no-wrap msgid "{Scheme Variable} sysctl-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33587 +#: guix-git/doc/guix.texi:34024 msgid "The service type for @command{sysctl}, which modifies kernel parameters under @file{/proc/sys/}. To enable IPv4 forwarding, it can be instantiated as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33592 +#: guix-git/doc/guix.texi:34029 #, no-wrap msgid "" "(service sysctl-service-type\n" @@ -59928,12 +60739,12 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33599 +#: guix-git/doc/guix.texi:34036 msgid "Since @code{sysctl-service-type} is used in the default lists of services, @code{%base-services} and @code{%desktop-services}, you can use @code{modify-services} to change its configuration and add the kernel parameters that you want (@pxref{Service Reference, @code{modify-services}})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33606 +#: guix-git/doc/guix.texi:34043 #, no-wrap msgid "" "(modify-services %base-services\n" @@ -59944,463 +60755,463 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33610 +#: guix-git/doc/guix.texi:34047 #, no-wrap msgid "{Data Type} sysctl-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33612 +#: guix-git/doc/guix.texi:34049 msgid "The data type representing the configuration of @command{sysctl}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33614 +#: guix-git/doc/guix.texi:34051 #, no-wrap msgid "@code{sysctl} (default: @code{(file-append procps \"/sbin/sysctl\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33616 +#: guix-git/doc/guix.texi:34053 msgid "The @command{sysctl} executable to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33617 +#: guix-git/doc/guix.texi:34054 #, no-wrap msgid "@code{settings} (default: @code{%default-sysctl-settings})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33619 +#: guix-git/doc/guix.texi:34056 msgid "An association list specifies kernel parameters and their values." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33622 +#: guix-git/doc/guix.texi:34059 #, no-wrap msgid "{Scheme Variable} %default-sysctl-settings" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33625 +#: guix-git/doc/guix.texi:34062 msgid "An association list specifying the default @command{sysctl} parameters on Guix System." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33627 +#: guix-git/doc/guix.texi:34064 #, no-wrap msgid "pcscd" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33628 +#: guix-git/doc/guix.texi:34065 #, no-wrap msgid "PC/SC Smart Card Daemon Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33635 +#: guix-git/doc/guix.texi:34072 msgid "The @code{(gnu services security-token)} module provides the following service to run @command{pcscd}, the PC/SC Smart Card Daemon. @command{pcscd} is the daemon program for pcsc-lite and the MuscleCard framework. It is a resource manager that coordinates communications with smart card readers, smart cards and cryptographic tokens that are connected to the system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33636 +#: guix-git/doc/guix.texi:34073 #, no-wrap msgid "{Scheme Variable} pcscd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33640 +#: guix-git/doc/guix.texi:34077 msgid "Service type for the @command{pcscd} service. Its value must be a @code{pcscd-configuration} object. To run pcscd in the default configuration, instantiate it as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33643 +#: guix-git/doc/guix.texi:34080 #, no-wrap msgid "(service pcscd-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33646 +#: guix-git/doc/guix.texi:34083 #, no-wrap msgid "{Data Type} pcscd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33648 +#: guix-git/doc/guix.texi:34085 msgid "The data type representing the configuration of @command{pcscd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33650 +#: guix-git/doc/guix.texi:34087 #, no-wrap msgid "@code{pcsc-lite} (default: @code{pcsc-lite})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33652 +#: guix-git/doc/guix.texi:34089 msgid "The pcsc-lite package that provides pcscd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33652 +#: guix-git/doc/guix.texi:34089 #, no-wrap msgid "@code{usb-drivers} (default: @code{(list ccid)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33655 +#: guix-git/doc/guix.texi:34092 msgid "List of packages that provide USB drivers to pcscd. Drivers are expected to be under @file{pcsc/drivers} in the store directory of the package." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33658 +#: guix-git/doc/guix.texi:34095 #, no-wrap msgid "lirc" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33659 +#: guix-git/doc/guix.texi:34096 #, no-wrap msgid "Lirc Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33662 +#: guix-git/doc/guix.texi:34099 msgid "The @code{(gnu services lirc)} module provides the following service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33663 +#: guix-git/doc/guix.texi:34100 #, no-wrap msgid "{Scheme Procedure} lirc-service [#:lirc lirc] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33668 +#: guix-git/doc/guix.texi:34105 msgid "[#:device #f] [#:driver #f] [#:config-file #f] @ [#:extra-options '()] Return a service that runs @url{http://www.lirc.org,LIRC}, a daemon that decodes infrared signals from remote controls." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33672 +#: guix-git/doc/guix.texi:34109 msgid "Optionally, @var{device}, @var{driver} and @var{config-file} (configuration file name) may be specified. See @command{lircd} manual for details." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33675 +#: guix-git/doc/guix.texi:34112 msgid "Finally, @var{extra-options} is a list of additional command-line options passed to @command{lircd}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33677 +#: guix-git/doc/guix.texi:34114 #, no-wrap msgid "spice" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33678 +#: guix-git/doc/guix.texi:34115 #, no-wrap msgid "Spice Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33681 +#: guix-git/doc/guix.texi:34118 msgid "The @code{(gnu services spice)} module provides the following service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33682 +#: guix-git/doc/guix.texi:34119 #, no-wrap msgid "{Scheme Procedure} spice-vdagent-service [#:spice-vdagent]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33686 +#: guix-git/doc/guix.texi:34123 msgid "Returns a service that runs @url{https://www.spice-space.org,VDAGENT}, a daemon that enables sharing the clipboard with a vm and setting the guest display resolution when the graphical console window resizes." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33688 +#: guix-git/doc/guix.texi:34125 #, no-wrap msgid "inputattach" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33689 +#: guix-git/doc/guix.texi:34126 #, no-wrap msgid "inputattach Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33691 +#: guix-git/doc/guix.texi:34128 #, no-wrap msgid "tablet input, for Xorg" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33692 +#: guix-git/doc/guix.texi:34129 #, no-wrap msgid "touchscreen input, for Xorg" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33696 +#: guix-git/doc/guix.texi:34133 msgid "The @uref{https://linuxwacom.github.io/, inputattach} service allows you to use input devices such as Wacom tablets, touchscreens, or joysticks with the Xorg display server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33697 +#: guix-git/doc/guix.texi:34134 #, no-wrap msgid "{Scheme Variable} inputattach-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33700 +#: guix-git/doc/guix.texi:34137 msgid "Type of a service that runs @command{inputattach} on a device and dispatches events from it." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33702 +#: guix-git/doc/guix.texi:34139 #, no-wrap msgid "{Data Type} inputattach-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33704 +#: guix-git/doc/guix.texi:34141 #, no-wrap msgid "@code{device-type} (default: @code{\"wacom\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33707 +#: guix-git/doc/guix.texi:34144 msgid "The type of device to connect to. Run @command{inputattach --help}, from the @code{inputattach} package, to see the list of supported device types." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33708 +#: guix-git/doc/guix.texi:34145 #, no-wrap msgid "@code{device} (default: @code{\"/dev/ttyS0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33710 +#: guix-git/doc/guix.texi:34147 msgid "The device file to connect to the device." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33714 +#: guix-git/doc/guix.texi:34151 msgid "Baud rate to use for the serial connection. Should be a number or @code{#f}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33715 +#: guix-git/doc/guix.texi:34152 #, no-wrap msgid "@code{log-file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33717 +#: guix-git/doc/guix.texi:34154 msgid "If true, this must be the name of a file to log messages to." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33720 +#: guix-git/doc/guix.texi:34157 #, no-wrap msgid "Dictionary Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33721 +#: guix-git/doc/guix.texi:34158 #, no-wrap msgid "dictionary" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33723 +#: guix-git/doc/guix.texi:34160 msgid "The @code{(gnu services dict)} module provides the following service:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33724 +#: guix-git/doc/guix.texi:34161 #, no-wrap msgid "{Scheme Variable} dicod-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33727 +#: guix-git/doc/guix.texi:34164 msgid "This is the type of the service that runs the @command{dicod} daemon, an implementation of DICT server (@pxref{Dicod,,, dico, GNU Dico Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33729 +#: guix-git/doc/guix.texi:34166 #, no-wrap msgid "{Scheme Procedure} dicod-service [#:config (dicod-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33732 +#: guix-git/doc/guix.texi:34169 msgid "Return a service that runs the @command{dicod} daemon, an implementation of DICT server (@pxref{Dicod,,, dico, GNU Dico Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33736 +#: guix-git/doc/guix.texi:34173 msgid "The optional @var{config} argument specifies the configuration for @command{dicod}, which should be a @code{} object, by default it serves the GNU Collaborative International Dictionary of English." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33740 +#: guix-git/doc/guix.texi:34177 msgid "You can add @command{open localhost} to your @file{~/.dico} file to make @code{localhost} the default server for @command{dico} client (@pxref{Initialization File,,, dico, GNU Dico Manual})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33742 +#: guix-git/doc/guix.texi:34179 #, no-wrap msgid "{Data Type} dicod-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33744 +#: guix-git/doc/guix.texi:34181 msgid "Data type representing the configuration of dicod." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33746 +#: guix-git/doc/guix.texi:34183 #, no-wrap msgid "@code{dico} (default: @var{dico})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33748 +#: guix-git/doc/guix.texi:34185 msgid "Package object of the GNU Dico dictionary server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33749 +#: guix-git/doc/guix.texi:34186 #, no-wrap msgid "@code{interfaces} (default: @var{'(\"localhost\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33753 +#: guix-git/doc/guix.texi:34190 msgid "This is the list of IP addresses and ports and possibly socket file names to listen to (@pxref{Server Settings, @code{listen} directive,, dico, GNU Dico Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33754 +#: guix-git/doc/guix.texi:34191 #, no-wrap msgid "@code{handlers} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33756 +#: guix-git/doc/guix.texi:34193 msgid "List of @code{} objects denoting handlers (module instances)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33757 +#: guix-git/doc/guix.texi:34194 #, no-wrap msgid "@code{databases} (default: @var{(list %dicod-database:gcide)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33759 +#: guix-git/doc/guix.texi:34196 msgid "List of @code{} objects denoting dictionaries to be served." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33762 +#: guix-git/doc/guix.texi:34199 #, no-wrap msgid "{Data Type} dicod-handler" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33764 +#: guix-git/doc/guix.texi:34201 msgid "Data type representing a dictionary handler (module instance)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33768 +#: guix-git/doc/guix.texi:34205 msgid "Name of the handler (module instance)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33769 +#: guix-git/doc/guix.texi:34206 #, no-wrap msgid "@code{module} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33773 +#: guix-git/doc/guix.texi:34210 msgid "Name of the dicod module of the handler (instance). If it is @code{#f}, the module has the same name as the handler. (@pxref{Modules,,, dico, GNU Dico Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33776 +#: guix-git/doc/guix.texi:34213 msgid "List of strings or gexps representing the arguments for the module handler" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33779 +#: guix-git/doc/guix.texi:34216 #, no-wrap msgid "{Data Type} dicod-database" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33781 +#: guix-git/doc/guix.texi:34218 msgid "Data type representing a dictionary database." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33785 +#: guix-git/doc/guix.texi:34222 msgid "Name of the database, will be used in DICT commands." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33786 +#: guix-git/doc/guix.texi:34223 #, no-wrap msgid "handler" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33789 +#: guix-git/doc/guix.texi:34226 msgid "Name of the dicod handler (module instance) used by this database (@pxref{Handlers,,, dico, GNU Dico Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33790 +#: guix-git/doc/guix.texi:34227 #, no-wrap msgid "@code{complex?} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33793 +#: guix-git/doc/guix.texi:34230 msgid "Whether the database configuration complex. The complex configuration will need a corresponding @code{} object, otherwise not." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33797 +#: guix-git/doc/guix.texi:34234 msgid "List of strings or gexps representing the arguments for the database (@pxref{Databases,,, dico, GNU Dico Manual})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33800 +#: guix-git/doc/guix.texi:34237 #, no-wrap msgid "{Scheme Variable} %dicod-database:gcide" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33803 +#: guix-git/doc/guix.texi:34240 msgid "A @code{} object serving the GNU Collaborative International Dictionary of English using the @code{gcide} package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33806 +#: guix-git/doc/guix.texi:34243 msgid "The following is an example @code{dicod-service} configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33821 +#: guix-git/doc/guix.texi:34258 #, no-wrap msgid "" "(dicod-service #:config\n" @@ -60419,139 +61230,139 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33823 +#: guix-git/doc/guix.texi:34260 #, no-wrap msgid "Docker" msgstr "Docker" #. type: subsubheading -#: guix-git/doc/guix.texi:33824 +#: guix-git/doc/guix.texi:34261 #, no-wrap msgid "Docker Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33827 +#: guix-git/doc/guix.texi:34264 msgid "The @code{(gnu services docker)} module provides the following services." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33828 +#: guix-git/doc/guix.texi:34265 #, no-wrap msgid "{Scheme Variable} docker-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33833 +#: guix-git/doc/guix.texi:34270 msgid "This is the type of the service that runs @url{https://www.docker.com,Docker}, a daemon that can execute application bundles (sometimes referred to as ``containers'') in isolated environments." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33836 +#: guix-git/doc/guix.texi:34273 #, no-wrap msgid "{Data Type} docker-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33838 +#: guix-git/doc/guix.texi:34275 msgid "This is the data type representing the configuration of Docker and Containerd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33841 +#: guix-git/doc/guix.texi:34278 #, no-wrap msgid "@code{docker} (default: @code{docker})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33843 +#: guix-git/doc/guix.texi:34280 msgid "The Docker daemon package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33844 +#: guix-git/doc/guix.texi:34281 #, no-wrap msgid "@code{docker-cli} (default: @code{docker-cli})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33846 +#: guix-git/doc/guix.texi:34283 msgid "The Docker client package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33847 +#: guix-git/doc/guix.texi:34284 #, no-wrap msgid "@code{containerd} (default: @var{containerd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33849 +#: guix-git/doc/guix.texi:34286 msgid "The Containerd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33850 +#: guix-git/doc/guix.texi:34287 #, no-wrap msgid "@code{proxy} (default @var{docker-libnetwork-cmd-proxy})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33852 +#: guix-git/doc/guix.texi:34289 msgid "The Docker user-land networking proxy package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33853 +#: guix-git/doc/guix.texi:34290 #, no-wrap msgid "@code{enable-proxy?} (default @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33855 +#: guix-git/doc/guix.texi:34292 msgid "Enable or disable the use of the Docker user-land networking proxy." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33856 +#: guix-git/doc/guix.texi:34293 #, no-wrap msgid "@code{debug?} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33858 +#: guix-git/doc/guix.texi:34295 msgid "Enable or disable debug output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33859 +#: guix-git/doc/guix.texi:34296 #, no-wrap msgid "@code{enable-iptables?} (default @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33861 +#: guix-git/doc/guix.texi:34298 msgid "Enable or disable the addition of iptables rules." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33862 +#: guix-git/doc/guix.texi:34299 #, no-wrap msgid "@code{environment-variables} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33864 +#: guix-git/doc/guix.texi:34301 msgid "List of environment variables to set for @command{dockerd}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33867 +#: guix-git/doc/guix.texi:34304 msgid "This must be a list of strings where each string has the form @samp{@var{key}=@var{value}} as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33871 +#: guix-git/doc/guix.texi:34308 #, no-wrap msgid "" "(list \"LANGUAGE=eo:ca:eu\"\n" @@ -60559,196 +61370,196 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33876 +#: guix-git/doc/guix.texi:34313 #, no-wrap msgid "Singularity, container service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33877 +#: guix-git/doc/guix.texi:34314 #, no-wrap msgid "{Scheme Variable} singularity-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33882 +#: guix-git/doc/guix.texi:34319 msgid "This is the type of the service that allows you to run @url{https://www.sylabs.io/singularity/, Singularity}, a Docker-style tool to create and run application bundles (aka. ``containers''). The value for this service is the Singularity package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33886 +#: guix-git/doc/guix.texi:34323 msgid "The service does not install a daemon; instead, it installs helper programs as setuid-root (@pxref{Setuid Programs}) such that unprivileged users can invoke @command{singularity run} and similar commands." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33888 +#: guix-git/doc/guix.texi:34325 #, no-wrap msgid "Audit" msgstr "Auditointi" #. type: subsubheading -#: guix-git/doc/guix.texi:33889 +#: guix-git/doc/guix.texi:34326 #, no-wrap msgid "Auditd Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33892 +#: guix-git/doc/guix.texi:34329 msgid "The @code{(gnu services auditd)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33893 +#: guix-git/doc/guix.texi:34330 #, no-wrap msgid "{Scheme Variable} auditd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33898 +#: guix-git/doc/guix.texi:34335 msgid "This is the type of the service that runs @url{https://people.redhat.com/sgrubb/audit/,auditd}, a daemon that tracks security-relevant information on your system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33900 +#: guix-git/doc/guix.texi:34337 msgid "Examples of things that can be tracked:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33904 +#: guix-git/doc/guix.texi:34341 msgid "File accesses" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33906 +#: guix-git/doc/guix.texi:34343 msgid "System calls" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33908 +#: guix-git/doc/guix.texi:34345 msgid "Invoked commands" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33910 +#: guix-git/doc/guix.texi:34347 msgid "Failed login attempts" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33912 +#: guix-git/doc/guix.texi:34349 msgid "Firewall filtering" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33914 +#: guix-git/doc/guix.texi:34351 msgid "Network access" msgstr "Verkkopääsy" #. type: defvr -#: guix-git/doc/guix.texi:33925 +#: guix-git/doc/guix.texi:34362 msgid "@command{auditctl} from the @code{audit} package can be used in order to add or remove events to be tracked (until the next reboot). In order to permanently track events, put the command line arguments of auditctl into a file called @code{audit.rules} in the configuration directory (see below). @command{aureport} from the @code{audit} package can be used in order to view a report of all recorded events. The audit daemon by default logs into the file @file{/var/log/audit.log}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33928 +#: guix-git/doc/guix.texi:34365 #, no-wrap msgid "{Data Type} auditd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33930 +#: guix-git/doc/guix.texi:34367 msgid "This is the data type representing the configuration of auditd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33933 +#: guix-git/doc/guix.texi:34370 #, no-wrap msgid "@code{audit} (default: @code{audit})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33935 +#: guix-git/doc/guix.texi:34372 msgid "The audit package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33936 +#: guix-git/doc/guix.texi:34373 #, no-wrap msgid "@code{configuration-directory} (default: @code{%default-auditd-configuration-directory})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33940 +#: guix-git/doc/guix.texi:34377 msgid "The directory containing the configuration file for the audit package, which must be named @code{auditd.conf}, and optionally some audit rules to instantiate on startup." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33944 +#: guix-git/doc/guix.texi:34381 #, no-wrap msgid "rshiny" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33945 +#: guix-git/doc/guix.texi:34382 #, no-wrap msgid "R-Shiny service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33948 +#: guix-git/doc/guix.texi:34385 msgid "The @code{(gnu services science)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33949 +#: guix-git/doc/guix.texi:34386 #, no-wrap msgid "{Scheme Variable} rshiny-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33954 +#: guix-git/doc/guix.texi:34391 msgid "This is a type of service which is used to run a webapp created with @code{r-shiny}. This service sets the @env{R_LIBS_USER} environment variable and runs the provided script to call @code{runApp}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33955 +#: guix-git/doc/guix.texi:34392 #, no-wrap msgid "{Data Type} rshiny-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33957 +#: guix-git/doc/guix.texi:34394 msgid "This is the data type representing the configuration of rshiny." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33960 +#: guix-git/doc/guix.texi:34397 #, no-wrap msgid "@code{package} (default: @code{r-shiny})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33962 +#: guix-git/doc/guix.texi:34399 msgid "The package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33963 +#: guix-git/doc/guix.texi:34400 #, no-wrap msgid "@code{binary} (defaunlt @code{\"rshiny\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33966 +#: guix-git/doc/guix.texi:34403 msgid "The name of the binary or shell script located at @code{package/bin/} to run when the service is run." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33968 +#: guix-git/doc/guix.texi:34405 msgid "The common way to create this file is as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33985 +#: guix-git/doc/guix.texi:34422 #, no-wrap msgid "" "@dots{}\n" @@ -60769,35 +61580,35 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33991 +#: guix-git/doc/guix.texi:34428 #, no-wrap msgid "Nix" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33992 +#: guix-git/doc/guix.texi:34429 #, no-wrap msgid "Nix service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33995 +#: guix-git/doc/guix.texi:34432 msgid "The @code{(gnu services nix)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33996 +#: guix-git/doc/guix.texi:34433 #, no-wrap msgid "{Scheme Variable} nix-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34001 +#: guix-git/doc/guix.texi:34438 msgid "This is the type of the service that runs build daemon of the @url{https://nixos.org/nix/, Nix} package manager. Here is an example showing how to use it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34006 +#: guix-git/doc/guix.texi:34443 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -60807,7 +61618,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34011 +#: guix-git/doc/guix.texi:34448 #, no-wrap msgid "" "(operating-system\n" @@ -60818,7 +61629,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34014 +#: guix-git/doc/guix.texi:34451 #, no-wrap msgid "" " (services (append (list (service nix-service-type))\n" @@ -60826,29 +61637,29 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34017 +#: guix-git/doc/guix.texi:34454 msgid "After @command{guix system reconfigure} configure Nix for your user:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34019 +#: guix-git/doc/guix.texi:34456 #, no-wrap msgid "Add a Nix channel and update it. See" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:34021 +#: guix-git/doc/guix.texi:34458 msgid "@url{https://nixos.org/nix/manual/, Nix Package Manager Guide}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34022 +#: guix-git/doc/guix.texi:34459 #, no-wrap msgid "Create a symlink to your profile and activate Nix profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34028 +#: guix-git/doc/guix.texi:34465 #, no-wrap msgid "" "$ ln -s \"/nix/var/nix/profiles/per-user/$USER/profile\" ~/.nix-profile\n" @@ -60856,77 +61667,77 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34032 +#: guix-git/doc/guix.texi:34469 #, no-wrap msgid "{Data Type} nix-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34034 +#: guix-git/doc/guix.texi:34471 msgid "This data type represents the configuration of the Nix daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34036 +#: guix-git/doc/guix.texi:34473 #, no-wrap msgid "@code{nix} (default: @code{nix})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34038 +#: guix-git/doc/guix.texi:34475 msgid "The Nix package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34039 +#: guix-git/doc/guix.texi:34476 #, no-wrap msgid "@code{sandbox} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34041 +#: guix-git/doc/guix.texi:34478 msgid "Specifies whether builds are sandboxed by default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34042 +#: guix-git/doc/guix.texi:34479 #, no-wrap msgid "@code{build-sandbox-items} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34045 +#: guix-git/doc/guix.texi:34482 msgid "This is a list of strings or objects appended to the @code{build-sandbox-items} field of the configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34053 +#: guix-git/doc/guix.texi:34490 msgid "Extra command line options for @code{nix-service-type}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34059 +#: guix-git/doc/guix.texi:34496 #, no-wrap msgid "setuid programs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34069 +#: guix-git/doc/guix.texi:34506 msgid "Some programs need to run with ``root'' privileges, even when they are launched by unprivileged users. A notorious example is the @command{passwd} program, which users can run to change their password, and which needs to access the @file{/etc/passwd} and @file{/etc/shadow} files---something normally restricted to root, for obvious security reasons. To address that, these executables are @dfn{setuid-root}, meaning that they always run with root privileges (@pxref{How Change Persona,,, libc, The GNU C Library Reference Manual}, for more info about the setuid mechanism)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34076 +#: guix-git/doc/guix.texi:34513 msgid "The store itself @emph{cannot} contain setuid programs: that would be a security issue since any user on the system can write derivations that populate the store (@pxref{The Store}). Thus, a different mechanism is used: instead of changing the setuid bit directly on files that are in the store, we let the system administrator @emph{declare} which programs should be setuid root." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34083 +#: guix-git/doc/guix.texi:34520 msgid "The @code{setuid-programs} field of an @code{operating-system} declaration contains a list of @code{} denoting the names of programs to have a setuid or setgid bit set (@pxref{Using the Configuration System}). For instance, the @command{mount.nfs} program, which is part of the nfs-utils package, with a setuid root can be designated like this:" msgstr "" -#. type: example -#: guix-git/doc/guix.texi:34087 +#. type: lisp +#: guix-git/doc/guix.texi:34524 #, no-wrap msgid "" "(setuid-program\n" @@ -60934,162 +61745,164 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34092 +#: guix-git/doc/guix.texi:34529 msgid "And then, to make @command{mount.nfs} setuid on your system, add the previous example to your operating system declaration by appending it to @code{%setuid-programs} like this:" msgstr "" -#. type: example -#: guix-git/doc/guix.texi:34098 +#. type: lisp +#: guix-git/doc/guix.texi:34537 #, no-wrap msgid "" -"(setuid-programs\n" -" (append (list (setuid-program\n" -" (program (file-append nfs-utils \"/sbin/mount.nfs\"))))\n" -" %setuid-programs))\n" +"(operating-system\n" +" ;; Some fields omitted...\n" +" (setuid-programs\n" +" (append (list (setuid-program\n" +" (program (file-append nfs-utils \"/sbin/mount.nfs\")))\n" +" %setuid-programs))))\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34100 +#: guix-git/doc/guix.texi:34539 #, no-wrap msgid "{Data Type} setuid-program" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34102 +#: guix-git/doc/guix.texi:34541 msgid "This data type represents a program with a setuid or setgid bit set." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:34104 +#: guix-git/doc/guix.texi:34543 #, no-wrap msgid "program" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34106 +#: guix-git/doc/guix.texi:34545 msgid "A file-like object having its setuid and/or setgid bit set." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34107 +#: guix-git/doc/guix.texi:34546 #, no-wrap msgid "@code{setuid?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34109 +#: guix-git/doc/guix.texi:34548 msgid "Whether to set user setuid bit." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34110 +#: guix-git/doc/guix.texi:34549 #, no-wrap msgid "@code{setgid?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34112 +#: guix-git/doc/guix.texi:34551 msgid "Whether to set group setgid bit." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34113 +#: guix-git/doc/guix.texi:34552 #, no-wrap msgid "@code{user} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34116 +#: guix-git/doc/guix.texi:34555 msgid "UID (integer) or user name (string) for the user owner of the program, defaults to root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34117 +#: guix-git/doc/guix.texi:34556 #, no-wrap msgid "@code{group} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34120 +#: guix-git/doc/guix.texi:34559 msgid "GID (integer) goup name (string) for the group owner of the program, defaults to root." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34126 +#: guix-git/doc/guix.texi:34565 msgid "A default set of setuid programs is defined by the @code{%setuid-programs} variable of the @code{(gnu system)} module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34127 +#: guix-git/doc/guix.texi:34566 #, no-wrap msgid "{Scheme Variable} %setuid-programs" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34130 +#: guix-git/doc/guix.texi:34569 msgid "A list of @code{} denoting common programs that are setuid-root." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34133 +#: guix-git/doc/guix.texi:34572 msgid "The list includes commands such as @command{passwd}, @command{ping}, @command{su}, and @command{sudo}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34139 +#: guix-git/doc/guix.texi:34578 msgid "Under the hood, the actual setuid programs are created in the @file{/run/setuid-programs} directory at system activation time. The files in this directory refer to the ``real'' binaries, which are in the store." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34143 +#: guix-git/doc/guix.texi:34582 #, no-wrap msgid "HTTPS, certificates" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34144 +#: guix-git/doc/guix.texi:34583 #, no-wrap msgid "X.509 certificates" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34145 +#: guix-git/doc/guix.texi:34584 #, no-wrap msgid "TLS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34152 +#: guix-git/doc/guix.texi:34591 msgid "Web servers available over HTTPS (that is, HTTP over the transport-layer security mechanism, TLS) send client programs an @dfn{X.509 certificate} that the client can then use to @emph{authenticate} the server. To do that, clients verify that the server's certificate is signed by a so-called @dfn{certificate authority} (CA). But to verify the CA's signature, clients must have first acquired the CA's certificate." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34156 +#: guix-git/doc/guix.texi:34595 msgid "Web browsers such as GNU@tie{}IceCat include their own set of CA certificates, such that they are able to verify CA signatures out-of-the-box." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34160 +#: guix-git/doc/guix.texi:34599 msgid "However, most other programs that can talk HTTPS---@command{wget}, @command{git}, @command{w3m}, etc.---need to be told where CA certificates can be found." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34167 +#: guix-git/doc/guix.texi:34606 msgid "In Guix, this is done by adding a package that provides certificates to the @code{packages} field of the @code{operating-system} declaration (@pxref{operating-system Reference}). Guix includes one such package, @code{nss-certs}, which is a set of CA certificates provided as part of Mozilla's Network Security Services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34172 +#: guix-git/doc/guix.texi:34611 msgid "Note that it is @emph{not} part of @code{%base-packages}, so you need to explicitly add it. The @file{/etc/ssl/certs} directory, which is where most applications and libraries look for certificates by default, points to the certificates installed globally." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34182 +#: guix-git/doc/guix.texi:34621 msgid "Unprivileged users, including users of Guix on a foreign distro, can also install their own certificate package in their profile. A number of environment variables need to be defined so that applications and libraries know where to find them. Namely, the OpenSSL library honors the @env{SSL_CERT_DIR} and @env{SSL_CERT_FILE} variables. Some applications add their own environment variables; for instance, the Git version control system honors the certificate bundle pointed to by the @env{GIT_SSL_CAINFO} environment variable. Thus, you would typically run something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34188 +#: guix-git/doc/guix.texi:34627 #, no-wrap msgid "" "guix install nss-certs\n" @@ -61099,12 +61912,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34193 +#: guix-git/doc/guix.texi:34632 msgid "As another example, R requires the @env{CURL_CA_BUNDLE} environment variable to point to a certificate bundle, so you would have to run something like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34197 +#: guix-git/doc/guix.texi:34636 #, no-wrap msgid "" "guix install nss-certs\n" @@ -61112,51 +61925,51 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34201 +#: guix-git/doc/guix.texi:34640 msgid "For other applications you may want to look up the required environment variable in the relevant documentation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34206 +#: guix-git/doc/guix.texi:34645 #, no-wrap msgid "name service switch" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34207 +#: guix-git/doc/guix.texi:34646 #, no-wrap msgid "NSS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34216 +#: guix-git/doc/guix.texi:34655 msgid "The @code{(gnu system nss)} module provides bindings to the configuration file of the libc @dfn{name service switch} or @dfn{NSS} (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference Manual}). In a nutshell, the NSS is a mechanism that allows libc to be extended with new ``name'' lookup methods for system databases, which includes host names, service names, user accounts, and more (@pxref{Name Service Switch, System Databases and Name Service Switch,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34223 +#: guix-git/doc/guix.texi:34662 msgid "The NSS configuration specifies, for each system database, which lookup method is to be used, and how the various methods are chained together---for instance, under which circumstances NSS should try the next method in the list. The NSS configuration is given in the @code{name-service-switch} field of @code{operating-system} declarations (@pxref{operating-system Reference, @code{name-service-switch}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34224 +#: guix-git/doc/guix.texi:34663 #, no-wrap msgid "nss-mdns" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34225 +#: guix-git/doc/guix.texi:34664 #, no-wrap msgid ".local, host name lookup" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34230 +#: guix-git/doc/guix.texi:34669 msgid "As an example, the declaration below configures the NSS to use the @uref{https://0pointer.de/lennart/projects/nss-mdns/, @code{nss-mdns} back-end}, which supports host name lookups over multicast DNS (mDNS) for host names ending in @code{.local}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34234 +#: guix-git/doc/guix.texi:34673 #, no-wrap msgid "" "(name-service-switch\n" @@ -61165,7 +61978,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34239 +#: guix-git/doc/guix.texi:34678 #, no-wrap msgid "" " ;; If the above did not succeed, try\n" @@ -61176,7 +61989,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34245 +#: guix-git/doc/guix.texi:34684 #, no-wrap msgid "" " ;; 'mdns_minimal' is authoritative for\n" @@ -61188,7 +62001,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34249 +#: guix-git/doc/guix.texi:34688 #, no-wrap msgid "" " ;; Then fall back to DNS.\n" @@ -61198,7 +62011,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34253 +#: guix-git/doc/guix.texi:34692 #, no-wrap msgid "" " ;; Finally, try with the \"full\" 'mdns'.\n" @@ -61207,151 +62020,151 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34258 +#: guix-git/doc/guix.texi:34697 msgid "Do not worry: the @code{%mdns-host-lookup-nss} variable (see below) contains this configuration, so you will not have to type it if all you want is to have @code{.local} host lookup working." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34266 +#: guix-git/doc/guix.texi:34705 msgid "Note that, in this case, in addition to setting the @code{name-service-switch} of the @code{operating-system} declaration, you also need to use @code{avahi-service-type} (@pxref{Networking Services, @code{avahi-service-type}}), or @code{%desktop-services}, which includes it (@pxref{Desktop Services}). Doing this makes @code{nss-mdns} accessible to the name service cache daemon (@pxref{Base Services, @code{nscd-service}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34269 +#: guix-git/doc/guix.texi:34708 msgid "For convenience, the following variables provide typical NSS configurations." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34270 +#: guix-git/doc/guix.texi:34709 #, no-wrap msgid "{Scheme Variable} %default-nss" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34273 +#: guix-git/doc/guix.texi:34712 msgid "This is the default name service switch configuration, a @code{name-service-switch} object." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34275 +#: guix-git/doc/guix.texi:34714 #, no-wrap msgid "{Scheme Variable} %mdns-host-lookup-nss" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34278 +#: guix-git/doc/guix.texi:34717 msgid "This is the name service switch configuration with support for host name lookup over multicast DNS (mDNS) for host names ending in @code{.local}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34288 +#: guix-git/doc/guix.texi:34727 msgid "The reference for name service switch configuration is given below. It is a direct mapping of the configuration file format of the C library , so please refer to the C library manual for more information (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference Manual}). Compared to the configuration file format of libc NSS, it has the advantage not only of adding this warm parenthetic feel that we like, but also static checks: you will know about syntax errors and typos as soon as you run @command{guix system}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34289 +#: guix-git/doc/guix.texi:34728 #, no-wrap msgid "{Data Type} name-service-switch" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34294 +#: guix-git/doc/guix.texi:34733 msgid "This is the data type representation the configuration of libc's name service switch (NSS). Each field below represents one of the supported system databases." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34296 +#: guix-git/doc/guix.texi:34735 #, no-wrap msgid "aliases" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34297 +#: guix-git/doc/guix.texi:34736 #, no-wrap msgid "ethers" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34299 +#: guix-git/doc/guix.texi:34738 #, no-wrap msgid "gshadow" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34300 +#: guix-git/doc/guix.texi:34739 #, no-wrap msgid "hosts" msgstr "isännät" #. type: itemx -#: guix-git/doc/guix.texi:34301 +#: guix-git/doc/guix.texi:34740 #, no-wrap msgid "initgroups" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34302 +#: guix-git/doc/guix.texi:34741 #, no-wrap msgid "netgroup" msgstr "verkkoryhmä" #. type: itemx -#: guix-git/doc/guix.texi:34303 +#: guix-git/doc/guix.texi:34742 #, no-wrap msgid "networks" msgstr "verkot" #. type: itemx -#: guix-git/doc/guix.texi:34306 +#: guix-git/doc/guix.texi:34745 #, no-wrap msgid "rpc" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34308 +#: guix-git/doc/guix.texi:34747 #, no-wrap msgid "shadow" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34311 +#: guix-git/doc/guix.texi:34750 msgid "The system databases handled by the NSS@. Each of these fields must be a list of @code{} objects (see below)." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34314 +#: guix-git/doc/guix.texi:34753 #, no-wrap msgid "{Data Type} name-service" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34318 +#: guix-git/doc/guix.texi:34757 msgid "This is the data type representing an actual name service and the associated lookup action." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34323 +#: guix-git/doc/guix.texi:34762 msgid "A string denoting the name service (@pxref{Services in the NSS configuration,,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34328 +#: guix-git/doc/guix.texi:34767 msgid "Note that name services listed here must be visible to nscd. This is achieved by passing the @code{#:name-services} argument to @code{nscd-service} the list of packages providing the needed name services (@pxref{Base Services, @code{nscd-service}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34329 +#: guix-git/doc/guix.texi:34768 #, no-wrap msgid "reaction" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34333 +#: guix-git/doc/guix.texi:34772 msgid "An action specified using the @code{lookup-specification} macro (@pxref{Actions in the NSS configuration,,, libc, The GNU C Library Reference Manual}). For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34337 +#: guix-git/doc/guix.texi:34776 #, no-wrap msgid "" "(lookup-specification (unavailable => continue)\n" @@ -61359,17 +62172,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34351 +#: guix-git/doc/guix.texi:34790 msgid "For bootstrapping purposes, the Linux-Libre kernel is passed an @dfn{initial RAM disk}, or @dfn{initrd}. An initrd contains a temporary root file system as well as an initialization script. The latter is responsible for mounting the real root file system, and for loading any kernel modules that may be needed to achieve that." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34360 +#: guix-git/doc/guix.texi:34799 msgid "The @code{initrd-modules} field of an @code{operating-system} declaration allows you to specify Linux-libre kernel modules that must be available in the initrd. In particular, this is where you would list modules needed to actually drive the hard disk where your root partition is---although the default value of @code{initrd-modules} should cover most use cases. For example, assuming you need the @code{megaraid_sas} module in addition to the default modules to be able to access your root file system, you would write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34365 +#: guix-git/doc/guix.texi:34804 #, no-wrap msgid "" "(operating-system\n" @@ -61378,28 +62191,28 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34367 +#: guix-git/doc/guix.texi:34806 #, no-wrap msgid "{Scheme Variable} %base-initrd-modules" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34369 +#: guix-git/doc/guix.texi:34808 msgid "This is the list of kernel modules included in the initrd by default." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34377 +#: guix-git/doc/guix.texi:34816 msgid "Furthermore, if you need lower-level customization, the @code{initrd} field of an @code{operating-system} declaration allows you to specify which initrd you would like to use. The @code{(gnu system linux-initrd)} module provides three ways to build an initrd: the high-level @code{base-initrd} procedure and the low-level @code{raw-initrd} and @code{expression->initrd} procedures." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34382 +#: guix-git/doc/guix.texi:34821 msgid "The @code{base-initrd} procedure is intended to cover most common uses. For example, if you want to add a bunch of kernel modules to be loaded at boot time, you can define the @code{initrd} field of the operating system declaration like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34390 +#: guix-git/doc/guix.texi:34829 #, no-wrap msgid "" "(initrd (lambda (file-systems . rest)\n" @@ -61411,447 +62224,447 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34395 +#: guix-git/doc/guix.texi:34834 msgid "The @code{base-initrd} procedure also handles common use cases that involves using the system as a QEMU guest, or as a ``live'' system with volatile root file system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34402 +#: guix-git/doc/guix.texi:34841 msgid "The @code{base-initrd} procedure is built from @code{raw-initrd} procedure. Unlike @code{base-initrd}, @code{raw-initrd} doesn't do anything high-level, such as trying to guess which kernel modules and packages should be included to the initrd. An example use of @code{raw-initrd} is when a user has a custom Linux kernel configuration and default kernel modules included by @code{base-initrd} are not available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34407 +#: guix-git/doc/guix.texi:34846 msgid "The initial RAM disk produced by @code{base-initrd} or @code{raw-initrd} honors several options passed on the Linux kernel command line (that is, arguments passed @i{via} the @code{linux} command of GRUB, or the @code{-append} option of QEMU), notably:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34409 +#: guix-git/doc/guix.texi:34848 #, no-wrap msgid "--load=@var{boot}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34412 +#: guix-git/doc/guix.texi:34851 msgid "Tell the initial RAM disk to load @var{boot}, a file containing a Scheme program, once it has mounted the root file system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34416 +#: guix-git/doc/guix.texi:34855 msgid "Guix uses this option to yield control to a boot program that runs the service activation programs and then spawns the GNU@tie{}Shepherd, the initialization system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34417 +#: guix-git/doc/guix.texi:34856 #, no-wrap msgid "--root=@var{root}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34422 +#: guix-git/doc/guix.texi:34861 msgid "Mount @var{root} as the root file system. @var{root} can be a device name like @code{/dev/sda1}, a file system label, or a file system UUID. When unspecified, the device name from the root file system of the operating system declaration is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34423 +#: guix-git/doc/guix.texi:34862 #, no-wrap msgid "fsck.mode=@var{mode}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34429 +#: guix-git/doc/guix.texi:34868 msgid "Whether to check the @var{root} file system for errors before mounting it. @var{mode} is one of @code{skip} (never check), @code{force} (always check), or @code{auto} to respect the root file-system object's 'check?' setting (@pxref{File Systems}) and run a full scan only if the file system was not cleanly shut down." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34432 +#: guix-git/doc/guix.texi:34871 msgid "@code{auto} is the default if this option is not present or if @var{mode} is not one of the above." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34433 +#: guix-git/doc/guix.texi:34872 #, no-wrap msgid "fsck.repair=@var{level}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34438 +#: guix-git/doc/guix.texi:34877 msgid "The level of repairs to perform automatically if errors are found in the @var{root} file system. @var{level} is one of @code{no} (do not write to @var{root} at all if possible), @code{yes} (repair as much as possible), or @code{preen} to repair problems considered safe to repair automatically." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34441 +#: guix-git/doc/guix.texi:34880 msgid "@code{preen} is the default if this option is not present or if @var{level} is not one of the above." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34445 +#: guix-git/doc/guix.texi:34884 msgid "Have @file{/run/booted-system} and @file{/run/current-system} point to @var{system}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34446 +#: guix-git/doc/guix.texi:34885 #, no-wrap msgid "modprobe.blacklist=@var{modules}@dots{}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34447 +#: guix-git/doc/guix.texi:34886 #, no-wrap msgid "module, black-listing" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34448 +#: guix-git/doc/guix.texi:34887 #, no-wrap msgid "black list, of kernel modules" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34453 +#: guix-git/doc/guix.texi:34892 msgid "Instruct the initial RAM disk as well as the @command{modprobe} command (from the kmod package) to refuse to load @var{modules}. @var{modules} must be a comma-separated list of module names---e.g., @code{usbkbd,9pnet}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34454 +#: guix-git/doc/guix.texi:34893 #, no-wrap msgid "--repl" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34460 +#: guix-git/doc/guix.texi:34899 msgid "Start a read-eval-print loop (REPL) from the initial RAM disk before it tries to load kernel modules and to mount the root file system. Our marketing team calls it @dfn{boot-to-Guile}. The Schemer in you will love it. @xref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}, for more information on Guile's REPL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34466 +#: guix-git/doc/guix.texi:34905 msgid "Now that you know all the features that initial RAM disks produced by @code{base-initrd} and @code{raw-initrd} provide, here is how to use it and customize it further." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34469 +#: guix-git/doc/guix.texi:34908 #, no-wrap msgid "{Scheme Procedure} raw-initrd @var{file-systems} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34483 +#: guix-git/doc/guix.texi:34922 msgid "[#:linux-modules '()] [#:mapped-devices '()] @ [#:keyboard-layout #f] @ [#:helper-packages '()] [#:qemu-networking? #f] [#:volatile-root? #f] Return a derivation that builds a raw initrd. @var{file-systems} is a list of file systems to be mounted by the initrd, possibly in addition to the root file system specified on the kernel command line via @option{--root}. @var{linux-modules} is a list of kernel modules to be loaded at boot time. @var{mapped-devices} is a list of device mappings to realize before @var{file-systems} are mounted (@pxref{Mapped Devices}). @var{helper-packages} is a list of packages to be copied in the initrd. It may include @code{e2fsck/static} or other packages needed by the initrd to check the root file system." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34489 guix-git/doc/guix.texi:34513 +#: guix-git/doc/guix.texi:34928 guix-git/doc/guix.texi:34952 msgid "When true, @var{keyboard-layout} is a @code{} record denoting the desired console keyboard layout. This is done before @var{mapped-devices} are set up and before @var{file-systems} are mounted such that, should the user need to enter a passphrase or use the REPL, this happens using the intended keyboard layout." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34493 +#: guix-git/doc/guix.texi:34932 msgid "When @var{qemu-networking?} is true, set up networking with the standard QEMU parameters. When @var{virtio?} is true, load additional modules so that the initrd can be used as a QEMU guest with para-virtualized I/O drivers." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34496 +#: guix-git/doc/guix.texi:34935 msgid "When @var{volatile-root?} is true, the root file system is writable but any changes to it are lost." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34498 +#: guix-git/doc/guix.texi:34937 #, no-wrap msgid "{Scheme Procedure} base-initrd @var{file-systems} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34507 +#: guix-git/doc/guix.texi:34946 msgid "[#:mapped-devices '()] [#:keyboard-layout #f] @ [#:qemu-networking? #f] [#:volatile-root? #f] @ [#:linux-modules '()] Return as a file-like object a generic initrd, with kernel modules taken from @var{linux}. @var{file-systems} is a list of file-systems to be mounted by the initrd, possibly in addition to the root file system specified on the kernel command line via @option{--root}. @var{mapped-devices} is a list of device mappings to realize before @var{file-systems} are mounted." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34515 +#: guix-git/doc/guix.texi:34954 msgid "@var{qemu-networking?} and @var{volatile-root?} behaves as in @code{raw-initrd}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34520 +#: guix-git/doc/guix.texi:34959 msgid "The initrd is automatically populated with all the kernel modules necessary for @var{file-systems} and for the given options. Additional kernel modules can be listed in @var{linux-modules}. They will be added to the initrd, and loaded at boot time in the order in which they appear." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34527 +#: guix-git/doc/guix.texi:34966 msgid "Needless to say, the initrds we produce and use embed a statically-linked Guile, and the initialization program is a Guile program. That gives a lot of flexibility. The @code{expression->initrd} procedure builds such an initrd, given the program to run in that initrd." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34528 +#: guix-git/doc/guix.texi:34967 #, no-wrap msgid "{Scheme Procedure} expression->initrd @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34534 +#: guix-git/doc/guix.texi:34973 msgid "[#:guile %guile-static-stripped] [#:name \"guile-initrd\"] Return as a file-like object a Linux initrd (a gzipped cpio archive) containing @var{guile} and that evaluates @var{exp}, a G-expression, upon booting. All the derivations referenced by @var{exp} are automatically copied to the initrd." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34540 +#: guix-git/doc/guix.texi:34979 #, no-wrap msgid "boot loader" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34547 +#: guix-git/doc/guix.texi:34986 msgid "The operating system supports multiple bootloaders. The bootloader is configured using @code{bootloader-configuration} declaration. All the fields of this structure are bootloader agnostic except for one field, @code{bootloader} that indicates the bootloader to be configured and installed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34552 +#: guix-git/doc/guix.texi:34991 msgid "Some of the bootloaders do not honor every field of @code{bootloader-configuration}. For instance, the extlinux bootloader does not support themes and thus ignores the @code{theme} field." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34553 +#: guix-git/doc/guix.texi:34992 #, no-wrap msgid "{Data Type} bootloader-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34555 +#: guix-git/doc/guix.texi:34994 msgid "The type of a bootloader configuration declaration." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34559 +#: guix-git/doc/guix.texi:34998 #, no-wrap msgid "EFI, bootloader" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34560 +#: guix-git/doc/guix.texi:34999 #, no-wrap msgid "UEFI, bootloader" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34561 +#: guix-git/doc/guix.texi:35000 #, no-wrap msgid "BIOS, bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34566 +#: guix-git/doc/guix.texi:35005 msgid "The bootloader to use, as a @code{bootloader} object. For now @code{grub-bootloader}, @code{grub-efi-bootloader}, @code{grub-efi-netboot-bootloader}, @code{extlinux-bootloader} and @code{u-boot-bootloader} are supported." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34567 +#: guix-git/doc/guix.texi:35006 #, no-wrap msgid "ARM, bootloaders" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34568 +#: guix-git/doc/guix.texi:35007 #, no-wrap msgid "AArch64, bootloaders" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34573 +#: guix-git/doc/guix.texi:35012 msgid "Available bootloaders are described in @code{(gnu bootloader @dots{})} modules. In particular, @code{(gnu bootloader u-boot)} contains definitions of bootloaders for a wide range of ARM and AArch64 systems, using the @uref{https://www.denx.de/wiki/U-Boot/, U-Boot bootloader}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34579 +#: guix-git/doc/guix.texi:35018 msgid "@code{grub-efi-bootloader} allows to boot on modern systems using the @dfn{Unified Extensible Firmware Interface} (UEFI). This is what you should use if the installation image contains a @file{/sys/firmware/efi} directory when you boot it on your system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34583 +#: guix-git/doc/guix.texi:35022 msgid "@code{grub-bootloader} allows you to boot in particular Intel-based machines in ``legacy'' BIOS mode." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:34584 +#: guix-git/doc/guix.texi:35023 #, no-wrap msgid "grub-efi-netboot-bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34588 +#: guix-git/doc/guix.texi:35027 msgid "@code{grub-efi-netboot-bootloader} allows you to boot your system over network through TFTP@. In combination with an NFS root file system this allows you to build a diskless Guix system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34594 +#: guix-git/doc/guix.texi:35033 msgid "The installation of the @code{grub-efi-netboot-bootloader} generates the content of the TFTP root directory at @code{targets} (@pxref{Bootloader Configuration, @code{targets}}), to be served by a TFTP server. You may want to mount your TFTP server directories onto the @code{targets} to move the required files to the TFTP server automatically." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34603 +#: guix-git/doc/guix.texi:35042 msgid "If you plan to use an NFS root file system as well (actually if you mount the store from an NFS share), then the TFTP server needs to serve the file @file{/boot/grub/grub.cfg} and other files from the store (like GRUBs background image, the kernel (@pxref{operating-system Reference, @code{kernel}}) and the initrd (@pxref{operating-system Reference, @code{initrd}})), too. All these files from the store will be accessed by GRUB through TFTP with their normal store path, for example as @file{tftp://tftp-server/gnu/store/…-initrd/initrd.cpio.gz}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34612 +#: guix-git/doc/guix.texi:35051 msgid "Two symlinks are created to make this possible. For each target in the @code{targets} field, the first symlink is @samp{target}@file{/efi/Guix/boot/grub/grub.cfg} pointing to @file{../../../boot/grub/grub.cfg}, where @samp{target} may be @file{/boot}. In this case the link is not leaving the served TFTP root directory, but otherwise it does. The second link is @samp{target}@file{/gnu/store} and points to @file{../gnu/store}. This link is leaving the served TFTP root directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34618 +#: guix-git/doc/guix.texi:35057 msgid "The assumption behind all this is that you have an NFS server exporting the root file system for your Guix system, and additionally a TFTP server exporting your @code{targets} directories—usually a single @file{/boot}—from that same root file system for your Guix system. In this constellation the symlinks will work." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34623 +#: guix-git/doc/guix.texi:35062 msgid "For other constellations you will have to program your own bootloader installer, which then takes care to make necessary files from the store accessible through TFTP, for example by copying them into the TFTP root directory to your @code{targets}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34628 +#: guix-git/doc/guix.texi:35067 msgid "It is important to note that symlinks pointing outside the TFTP root directory may need to be allowed in the configuration of your TFTP server. Further the store link exposes the whole store through TFTP@. Both points need to be considered carefully for security aspects." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34633 +#: guix-git/doc/guix.texi:35072 msgid "Beside the @code{grub-efi-netboot-bootloader}, the already mentioned TFTP and NFS servers, you also need a properly configured DHCP server to make the booting over netboot possible. For all this we can currently only recommend you to look for instructions about @acronym{PXE, Preboot eXecution Environment}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34637 +#: guix-git/doc/guix.texi:35076 msgid "This is a list of strings denoting the targets onto which to install the bootloader." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34647 +#: guix-git/doc/guix.texi:35086 msgid "The interpretation of targets depends on the bootloader in question. For @code{grub-bootloader}, for example, they should be device names understood by the bootloader @command{installer} command, such as @code{/dev/sda} or @code{(hd0)} (@pxref{Invoking grub-install,,, grub, GNU GRUB Manual}). For @code{grub-efi-bootloader}, they should be mount points of the EFI file system, usually @file{/boot/efi}. For @code{grub-efi-netboot-bootloader}, @code{targets} should be the mount points corresponding to TFTP root directories served by your TFTP server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34648 +#: guix-git/doc/guix.texi:35087 #, no-wrap msgid "@code{menu-entries} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34652 +#: guix-git/doc/guix.texi:35091 msgid "A possibly empty list of @code{menu-entry} objects (see below), denoting entries to appear in the bootloader menu, in addition to the current system entry and the entry pointing to previous system generations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34653 +#: guix-git/doc/guix.texi:35092 #, no-wrap msgid "@code{default-entry} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34656 +#: guix-git/doc/guix.texi:35095 msgid "The index of the default boot menu entry. Index 0 is for the entry of the current system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34657 +#: guix-git/doc/guix.texi:35096 #, no-wrap msgid "@code{timeout} (default: @code{5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34660 +#: guix-git/doc/guix.texi:35099 msgid "The number of seconds to wait for keyboard input before booting. Set to 0 to boot immediately, and to -1 to wait indefinitely." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34661 +#: guix-git/doc/guix.texi:35100 #, no-wrap msgid "keyboard layout, for the bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34665 +#: guix-git/doc/guix.texi:35104 msgid "If this is @code{#f}, the bootloader's menu (if any) uses the default keyboard layout, usually US@tie{}English (``qwerty'')." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34668 +#: guix-git/doc/guix.texi:35107 msgid "Otherwise, this must be a @code{keyboard-layout} object (@pxref{Keyboard Layout})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:34672 +#: guix-git/doc/guix.texi:35111 msgid "This option is currently ignored by bootloaders other than @code{grub} and @code{grub-efi}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34674 +#: guix-git/doc/guix.texi:35113 #, no-wrap msgid "@code{theme} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34678 +#: guix-git/doc/guix.texi:35117 msgid "The bootloader theme object describing the theme to use. If no theme is provided, some bootloaders might use a default theme, that's true for GRUB." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34679 +#: guix-git/doc/guix.texi:35118 #, no-wrap msgid "@code{terminal-outputs} (default: @code{'(gfxterm)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34686 +#: guix-git/doc/guix.texi:35125 msgid "The output terminals used for the bootloader boot menu, as a list of symbols. GRUB accepts the values: @code{console}, @code{serial}, @code{serial_@{0-3@}}, @code{gfxterm}, @code{vga_text}, @code{mda_text}, @code{morse}, and @code{pkmodem}. This field corresponds to the GRUB variable @code{GRUB_TERMINAL_OUTPUT} (@pxref{Simple configuration,,, grub,GNU GRUB manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34687 +#: guix-git/doc/guix.texi:35126 #, no-wrap msgid "@code{terminal-inputs} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34695 +#: guix-git/doc/guix.texi:35134 msgid "The input terminals used for the bootloader boot menu, as a list of symbols. For GRUB, the default is the native platform terminal as determined at run-time. GRUB accepts the values: @code{console}, @code{serial}, @code{serial_@{0-3@}}, @code{at_keyboard}, and @code{usb_keyboard}. This field corresponds to the GRUB variable @code{GRUB_TERMINAL_INPUT} (@pxref{Simple configuration,,, grub,GNU GRUB manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34696 +#: guix-git/doc/guix.texi:35135 #, no-wrap msgid "@code{serial-unit} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34700 +#: guix-git/doc/guix.texi:35139 msgid "The serial unit used by the bootloader, as an integer from 0 to 3. For GRUB, it is chosen at run-time; currently GRUB chooses 0, which corresponds to COM1 (@pxref{Serial terminal,,, grub,GNU GRUB manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34701 +#: guix-git/doc/guix.texi:35140 #, no-wrap msgid "@code{serial-speed} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34705 +#: guix-git/doc/guix.texi:35144 msgid "The speed of the serial interface, as an integer. For GRUB, the default value is chosen at run-time; currently GRUB chooses 9600@tie{}bps (@pxref{Serial terminal,,, grub,GNU GRUB manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34709 +#: guix-git/doc/guix.texi:35148 #, no-wrap msgid "dual boot" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34710 +#: guix-git/doc/guix.texi:35149 #, no-wrap msgid "boot menu" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34716 +#: guix-git/doc/guix.texi:35155 msgid "Should you want to list additional boot menu entries @i{via} the @code{menu-entries} field above, you will need to create them with the @code{menu-entry} form. For example, imagine you want to be able to boot another distro (hard to imagine!), you can define a menu entry along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34723 +#: guix-git/doc/guix.texi:35162 #, no-wrap msgid "" "(menu-entry\n" @@ -61862,132 +62675,132 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34726 +#: guix-git/doc/guix.texi:35165 msgid "Details below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34727 +#: guix-git/doc/guix.texi:35166 #, no-wrap msgid "{Data Type} menu-entry" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34729 +#: guix-git/doc/guix.texi:35168 msgid "The type of an entry in the bootloader menu." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34734 +#: guix-git/doc/guix.texi:35173 msgid "The label to show in the menu---e.g., @code{\"GNU\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34735 +#: guix-git/doc/guix.texi:35174 #, no-wrap msgid "@code{linux} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34737 +#: guix-git/doc/guix.texi:35176 msgid "The Linux kernel image to boot, for example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34740 +#: guix-git/doc/guix.texi:35179 #, no-wrap msgid "(file-append linux-libre \"/bzImage\")\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34745 +#: guix-git/doc/guix.texi:35184 msgid "For GRUB, it is also possible to specify a device explicitly in the file path using GRUB's device naming convention (@pxref{Naming convention,,, grub, GNU GRUB manual}), for example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34748 +#: guix-git/doc/guix.texi:35187 #, no-wrap msgid "\"(hd0,msdos1)/boot/vmlinuz\"\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34752 +#: guix-git/doc/guix.texi:35191 msgid "If the device is specified explicitly as above, then the @code{device} field is ignored entirely." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34753 +#: guix-git/doc/guix.texi:35192 #, no-wrap msgid "@code{linux-arguments} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34756 +#: guix-git/doc/guix.texi:35195 msgid "The list of extra Linux kernel command-line arguments---e.g., @code{(\"console=ttyS0\")}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34757 +#: guix-git/doc/guix.texi:35196 #, no-wrap msgid "@code{initrd} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34760 +#: guix-git/doc/guix.texi:35199 msgid "A G-Expression or string denoting the file name of the initial RAM disk to use (@pxref{G-Expressions})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34764 +#: guix-git/doc/guix.texi:35203 msgid "The device where the kernel and initrd are to be found---i.e., for GRUB, @dfn{root} for this menu entry (@pxref{root,,, grub, GNU GRUB manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34770 +#: guix-git/doc/guix.texi:35209 msgid "This may be a file system label (a string), a file system UUID (a bytevector, @pxref{File Systems}), or @code{#f}, in which case the bootloader will search the device containing the file specified by the @code{linux} field (@pxref{search,,, grub, GNU GRUB manual}). It must @emph{not} be an OS device name such as @file{/dev/sda1}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34771 +#: guix-git/doc/guix.texi:35210 #, no-wrap msgid "@code{multiboot-kernel} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34775 +#: guix-git/doc/guix.texi:35214 msgid "The kernel to boot in Multiboot-mode (@pxref{multiboot,,, grub, GNU GRUB manual}). When this field is set, a Multiboot menu-entry is generated. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34778 +#: guix-git/doc/guix.texi:35217 #, no-wrap msgid "(file-append mach \"/boot/gnumach\")\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34780 +#: guix-git/doc/guix.texi:35219 #, no-wrap msgid "@code{multiboot-arguments} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34782 +#: guix-git/doc/guix.texi:35221 msgid "The list of extra command-line arguments for the multiboot-kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34783 +#: guix-git/doc/guix.texi:35222 #, no-wrap msgid "@code{multiboot-modules} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34785 +#: guix-git/doc/guix.texi:35224 msgid "The list of commands for loading Multiboot modules. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34791 +#: guix-git/doc/guix.texi:35230 #, no-wrap msgid "" "(list (list (file-append hurd \"/hurd/ext2fs.static\") \"ext2fs\"\n" @@ -61997,73 +62810,73 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34796 guix-git/doc/guix.texi:34855 +#: guix-git/doc/guix.texi:35235 guix-git/doc/guix.texi:35294 #, no-wrap msgid "HDPI" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34797 guix-git/doc/guix.texi:34856 +#: guix-git/doc/guix.texi:35236 guix-git/doc/guix.texi:35295 #, no-wrap msgid "HiDPI" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34798 guix-git/doc/guix.texi:34857 +#: guix-git/doc/guix.texi:35237 guix-git/doc/guix.texi:35296 #, no-wrap msgid "resolution" msgstr "resoluutio" #. type: Plain text -#: guix-git/doc/guix.texi:34802 +#: guix-git/doc/guix.texi:35241 msgid "For now only GRUB has theme support. GRUB themes are created using the @code{grub-theme} form, which is not fully documented yet." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34803 +#: guix-git/doc/guix.texi:35242 #, no-wrap msgid "{Data Type} grub-theme" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34805 +#: guix-git/doc/guix.texi:35244 msgid "Data type representing the configuration of the GRUB theme." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34807 +#: guix-git/doc/guix.texi:35246 #, no-wrap msgid "@code{gfxmode} (default: @code{'(\"auto\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34810 +#: guix-git/doc/guix.texi:35249 msgid "The GRUB @code{gfxmode} to set (a list of screen resolution strings, @pxref{gfxmode,,, grub, GNU GRUB manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34813 +#: guix-git/doc/guix.texi:35252 #, no-wrap msgid "{Scheme Procedure} grub-theme" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34817 +#: guix-git/doc/guix.texi:35256 msgid "Return the default GRUB theme used by the operating system if no @code{theme} field is specified in @code{bootloader-configuration} record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34820 +#: guix-git/doc/guix.texi:35259 msgid "It comes with a fancy background image displaying the GNU and Guix logos." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34824 +#: guix-git/doc/guix.texi:35263 msgid "For example, to override the default resolution, you may use something like" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34832 +#: guix-git/doc/guix.texi:35271 #, no-wrap msgid "" "(bootloader\n" @@ -62075,40 +62888,40 @@ msgid "" msgstr "" #. type: section -#: guix-git/doc/guix.texi:34835 +#: guix-git/doc/guix.texi:35274 #, no-wrap msgid "Invoking @code{guix system}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34840 +#: guix-git/doc/guix.texi:35279 msgid "Once you have written an operating system declaration as seen in the previous section, it can be @dfn{instantiated} using the @command{guix system} command. The synopsis is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34843 +#: guix-git/doc/guix.texi:35282 #, no-wrap msgid "guix system @var{options}@dots{} @var{action} @var{file}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34849 +#: guix-git/doc/guix.texi:35288 msgid "@var{file} must be the name of a file containing an @code{operating-system} declaration. @var{action} specifies how the operating system is instantiated. Currently the following values are supported:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34851 guix-git/doc/guix.texi:37496 +#: guix-git/doc/guix.texi:35290 guix-git/doc/guix.texi:37992 #, no-wrap msgid "search" msgstr "haku" #. type: table -#: guix-git/doc/guix.texi:34854 +#: guix-git/doc/guix.texi:35293 msgid "Display available service type definitions that match the given regular expressions, sorted by relevance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34876 +#: guix-git/doc/guix.texi:35315 #, no-wrap msgid "" "$ guix system search console\n" @@ -62132,7 +62945,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34882 +#: guix-git/doc/guix.texi:35321 #, no-wrap msgid "" "name: mingetty\n" @@ -62144,7 +62957,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34889 +#: guix-git/doc/guix.texi:35328 #, no-wrap msgid "" "name: login\n" @@ -62157,72 +62970,72 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34891 guix-git/doc/guix.texi:37549 +#: guix-git/doc/guix.texi:35330 guix-git/doc/guix.texi:38028 #, no-wrap msgid "@dots{}\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34896 guix-git/doc/guix.texi:37554 +#: guix-git/doc/guix.texi:35335 msgid "As for @command{guix package --search}, the result is written in @code{recutils} format, which makes it easy to filter the output (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34897 guix-git/doc/guix.texi:37555 +#: guix-git/doc/guix.texi:35336 guix-git/doc/guix.texi:38034 #, no-wrap msgid "reconfigure" msgstr "muokkaa asetuksia" #. type: table -#: guix-git/doc/guix.texi:34902 +#: guix-git/doc/guix.texi:35341 msgid "Build the operating system described in @var{file}, activate it, and switch to it@footnote{This action (and the related actions @code{switch-generation} and @code{roll-back}) are usable only on systems already running Guix System.}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:34910 +#: guix-git/doc/guix.texi:35349 msgid "It is highly recommended to run @command{guix pull} once before you run @command{guix system reconfigure} for the first time (@pxref{Invoking guix pull}). Failing to do that you would see an older version of Guix once @command{reconfigure} has completed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34918 +#: guix-git/doc/guix.texi:35357 msgid "This effects all the configuration specified in @var{file}: user accounts, system services, global package list, setuid programs, etc. The command starts system services specified in @var{file} that are not currently running; if a service is currently running this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop X} or @code{herd restart X})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34924 +#: guix-git/doc/guix.texi:35363 msgid "This command creates a new generation whose number is one greater than the current generation (as reported by @command{guix system list-generations}). If that generation already exists, it will be overwritten. This behavior mirrors that of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34929 +#: guix-git/doc/guix.texi:35368 msgid "It also adds a bootloader menu entry for the new OS configuration, ---unless @option{--no-bootloader} is passed. For GRUB, it moves entries for older configurations to a submenu, allowing you to choose an older system generation at boot time should you need it." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34930 guix-git/doc/guix.texi:35261 -#: guix-git/doc/guix.texi:36223 +#: guix-git/doc/guix.texi:35369 guix-git/doc/guix.texi:35705 +#: guix-git/doc/guix.texi:36713 #, no-wrap msgid "provenance tracking, of the operating system" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34935 +#: guix-git/doc/guix.texi:35374 msgid "Upon completion, the new system is deployed under @file{/run/current-system}. This directory contains @dfn{provenance meta-data}: the list of channels in use (@pxref{Channels}) and @var{file} itself, when available. You can view it by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34938 +#: guix-git/doc/guix.texi:35377 #, no-wrap msgid "guix system describe\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34944 +#: guix-git/doc/guix.texi:35383 msgid "This information is useful should you later want to inspect how this particular generation was built. In fact, assuming @var{file} is self-contained, you can later rebuild generation @var{n} of your operating system with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34950 +#: guix-git/doc/guix.texi:35389 #, no-wrap msgid "" "guix time-machine \\\n" @@ -62232,233 +63045,238 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34956 +#: guix-git/doc/guix.texi:35395 msgid "You can think of it as some sort of built-in version control! Your system is not just a binary artifact: @emph{it carries its own source}. @xref{Service Reference, @code{provenance-service-type}}, for more information on provenance tracking." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34962 +#: guix-git/doc/guix.texi:35401 msgid "By default, @command{reconfigure} @emph{prevents you from downgrading your system}, which could (re)introduce security vulnerabilities and also cause problems with ``stateful'' services such as database management systems. You can override that behavior by passing @option{--allow-downgrades}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34963 guix-git/doc/guix.texi:37614 +#: guix-git/doc/guix.texi:35402 guix-git/doc/guix.texi:38093 #, no-wrap msgid "switch-generation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34972 +#: guix-git/doc/guix.texi:35411 msgid "Switch to an existing system generation. This action atomically switches the system profile to the specified system generation. It also rearranges the system's existing bootloader menu entries. It makes the menu entry for the specified system generation the default, and it moves the entries for the other generations to a submenu, if supported by the bootloader being used. The next time the system boots, it will use the specified system generation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34976 +#: guix-git/doc/guix.texi:35415 msgid "The bootloader itself is not being reinstalled when using this command. Thus, the installed bootloader is used with an updated configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34980 +#: guix-git/doc/guix.texi:35419 msgid "The target generation can be specified explicitly by its generation number. For example, the following invocation would switch to system generation 7:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34983 +#: guix-git/doc/guix.texi:35422 #, no-wrap msgid "guix system switch-generation 7\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34991 guix-git/doc/guix.texi:37633 +#: guix-git/doc/guix.texi:35430 guix-git/doc/guix.texi:38112 msgid "The target generation can also be specified relative to the current generation with the form @code{+N} or @code{-N}, where @code{+3} means ``3 generations ahead of the current generation,'' and @code{-1} means ``1 generation prior to the current generation.'' When specifying a negative value such as @code{-1}, you must precede it with @code{--} to prevent it from being parsed as an option. For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34994 +#: guix-git/doc/guix.texi:35433 #, no-wrap msgid "guix system switch-generation -- -1\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35002 +#: guix-git/doc/guix.texi:35441 msgid "Currently, the effect of invoking this action is @emph{only} to switch the system profile to an existing generation and rearrange the bootloader menu entries. To actually start using the target system generation, you must reboot after running this action. In the future, it will be updated to do the same things as @command{reconfigure}, like activating and deactivating services." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35004 guix-git/doc/guix.texi:37639 +#: guix-git/doc/guix.texi:35443 guix-git/doc/guix.texi:38118 msgid "This action will fail if the specified generation does not exist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35005 guix-git/doc/guix.texi:37640 +#: guix-git/doc/guix.texi:35444 guix-git/doc/guix.texi:38119 #, no-wrap msgid "roll-back" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35011 +#: guix-git/doc/guix.texi:35450 msgid "Switch to the preceding system generation. The next time the system boots, it will use the preceding system generation. This is the inverse of @command{reconfigure}, and it is exactly the same as invoking @command{switch-generation} with an argument of @code{-1}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35015 +#: guix-git/doc/guix.texi:35454 msgid "Currently, as with @command{switch-generation}, you must reboot after running this action to actually start using the preceding system generation." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35016 guix-git/doc/guix.texi:37646 +#: guix-git/doc/guix.texi:35455 guix-git/doc/guix.texi:38125 #, no-wrap msgid "delete-generations" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35017 +#: guix-git/doc/guix.texi:35456 #, no-wrap msgid "deleting system generations" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35018 guix-git/doc/guix.texi:37648 +#: guix-git/doc/guix.texi:35457 guix-git/doc/guix.texi:38127 #, no-wrap msgid "saving space" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35022 +#: guix-git/doc/guix.texi:35461 msgid "Delete system generations, making them candidates for garbage collection (@pxref{Invoking guix gc}, for information on how to run the ``garbage collector'')." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35026 +#: guix-git/doc/guix.texi:35465 msgid "This works in the same way as @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). With no arguments, all system generations but the current one are deleted:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35029 +#: guix-git/doc/guix.texi:35468 #, no-wrap msgid "guix system delete-generations\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35033 +#: guix-git/doc/guix.texi:35472 msgid "You can also select the generations you want to delete. The example below deletes all the system generations that are more than two months old:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35036 +#: guix-git/doc/guix.texi:35475 #, no-wrap msgid "guix system delete-generations 2m\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35041 +#: guix-git/doc/guix.texi:35480 msgid "Running this command automatically reinstalls the bootloader with an updated list of menu entries---e.g., the ``old generations'' sub-menu in GRUB no longer lists the generations that have been deleted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35046 +#: guix-git/doc/guix.texi:35485 msgid "Build the derivation of the operating system, which includes all the configuration files and programs needed to boot and run the system. This action does not actually install anything." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35047 +#: guix-git/doc/guix.texi:35486 #, no-wrap msgid "init" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35051 +#: guix-git/doc/guix.texi:35490 msgid "Populate the given directory with all the files necessary to run the operating system specified in @var{file}. This is useful for first-time installations of Guix System. For instance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35054 +#: guix-git/doc/guix.texi:35493 #, no-wrap msgid "guix system init my-os-config.scm /mnt\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35061 +#: guix-git/doc/guix.texi:35500 msgid "copies to @file{/mnt} all the store items required by the configuration specified in @file{my-os-config.scm}. This includes configuration files, packages, and so on. It also creates other essential files needed for the system to operate correctly---e.g., the @file{/etc}, @file{/var}, and @file{/run} directories, and the @file{/bin/sh} file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35065 +#: guix-git/doc/guix.texi:35504 msgid "This command also installs bootloader on the targets specified in @file{my-os-config}, unless the @option{--no-bootloader} option was passed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35066 +#: guix-git/doc/guix.texi:35505 #, no-wrap msgid "vm" msgstr "vm" #. type: cindex -#: guix-git/doc/guix.texi:35067 guix-git/doc/guix.texi:35634 +#: guix-git/doc/guix.texi:35506 guix-git/doc/guix.texi:36124 #, no-wrap msgid "virtual machine" msgstr "virtuaalikone" #. type: cindex -#: guix-git/doc/guix.texi:35068 +#: guix-git/doc/guix.texi:35507 #, no-wrap msgid "VM" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35072 +#: guix-git/doc/guix.texi:35511 msgid "guix system vm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35072 +#: guix-git/doc/guix.texi:35511 msgid "Build a virtual machine (VM) that contains the operating system declared in @var{file}, and return a script to run that VM." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35080 +#: guix-git/doc/guix.texi:35519 msgid "The @code{vm} action and others below can use KVM support in the Linux-libre kernel. Specifically, if the machine has hardware virtualization support, the corresponding KVM kernel module should be loaded, and the @file{/dev/kvm} device node must exist and be readable and writable by the user and by the build users of the daemon (@pxref{Build Environment Setup})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35085 +#: guix-git/doc/guix.texi:35524 msgid "Arguments given to the script are passed to QEMU as in the example below, which enables networking and requests 1@tie{}GiB of RAM for the emulated machine:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35088 +#: guix-git/doc/guix.texi:35527 #, no-wrap msgid "$ /gnu/store/@dots{}-run-vm.sh -m 1024 -smp 2 -nic user,model=virtio-net-pci\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35091 +#: guix-git/doc/guix.texi:35530 msgid "It's possible to combine the two steps into one:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35094 +#: guix-git/doc/guix.texi:35533 #, no-wrap msgid "$ $(guix system vm my-config.scm) -m 1024 -smp 2 -nic user,model=virtio-net-pci\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35097 +#: guix-git/doc/guix.texi:35536 msgid "The VM shares its store with the host system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35102 +#: guix-git/doc/guix.texi:35541 +msgid "By default, the root file system of the VM is mounted volatile; the @option{--persistent} option can be provided to make it persistent instead. In that case, the VM disk-image file will be copied from the store to the @env{TMPDIR} directory to make it writable." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:35546 msgid "Additional file systems can be shared between the host and the VM using the @option{--share} and @option{--expose} command-line options: the former specifies a directory to be shared with write access, while the latter provides read-only access to the shared directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35106 +#: guix-git/doc/guix.texi:35550 msgid "The example below creates a VM in which the user's home directory is accessible read-only, and where the @file{/exchange} directory is a read-write mapping of @file{$HOME/tmp} on the host:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35110 +#: guix-git/doc/guix.texi:35554 #, no-wrap msgid "" "guix system vm my-config.scm \\\n" @@ -62466,56 +63284,56 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35115 +#: guix-git/doc/guix.texi:35559 msgid "On GNU/Linux, the default is to boot directly to the kernel; this has the advantage of requiring only a very tiny root disk image since the store of the host can then be mounted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35120 +#: guix-git/doc/guix.texi:35564 msgid "The @option{--full-boot} option forces a complete boot sequence, starting with the bootloader. This requires more disk space since a root image containing at least the kernel, initrd, and bootloader data files must be created." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35123 +#: guix-git/doc/guix.texi:35567 msgid "The @option{--image-size} option can be used to specify the size of the image." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35130 +#: guix-git/doc/guix.texi:35574 msgid "The @option{--no-graphic} option will instruct @command{guix system} to spawn a headless VM that will use the invoking tty for IO. Among other things, this enables copy-pasting, and scrollback. Use the @kbd{ctrl-a} prefix to issue QEMU commands; e.g. @kbd{ctrl-a h} prints a help, @kbd{ctrl-a x} quits the VM, and @kbd{ctrl-a c} switches between the QEMU monitor and the VM." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35131 +#: guix-git/doc/guix.texi:35575 #, no-wrap msgid "System images, creation in various formats" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35132 +#: guix-git/doc/guix.texi:35576 #, no-wrap msgid "Creating system images in various formats" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35133 +#: guix-git/doc/guix.texi:35577 #, no-wrap msgid "image" msgstr "levykuva" #. type: cindex -#: guix-git/doc/guix.texi:35134 +#: guix-git/doc/guix.texi:35578 #, no-wrap msgid "image, creating disk images" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35146 +#: guix-git/doc/guix.texi:35590 msgid "The @code{image} command can produce various image types. The image type can be selected using the @option{--image-type} option. It defaults to @code{efi-raw}. When its value is @code{iso9660}, the @option{--label} option can be used to specify a volume ID with @code{image}. By default, the root file system of a disk image is mounted non-volatile; the @option{--volatile} option can be provided to make it volatile instead. When using @code{image}, the bootloader installed on the generated image is taken from the provided @code{operating-system} definition. The following example demonstrates how to generate an image that uses the @code{grub-efi-bootloader} bootloader and boot it with QEMU:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35154 +#: guix-git/doc/guix.texi:35598 #, no-wrap msgid "" "image=$(guix system image --image-type=qcow2 \\\n" @@ -62527,45 +63345,45 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35160 +#: guix-git/doc/guix.texi:35604 msgid "When using the @code{efi-raw} image type, a raw disk image is produced; it can be copied as is to a USB stick, for instance. Assuming @code{/dev/sdc} is the device corresponding to a USB stick, one can copy the image to it using the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35163 +#: guix-git/doc/guix.texi:35607 #, no-wrap msgid "# dd if=$(guix system image my-os.scm) of=/dev/sdc status=progress\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35167 +#: guix-git/doc/guix.texi:35611 msgid "The @code{--list-image-types} command lists all the available image types." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35168 +#: guix-git/doc/guix.texi:35612 #, no-wrap msgid "creating virtual machine images" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35177 +#: guix-git/doc/guix.texi:35621 msgid "When using the @code{qcow2} image type, the returned image is in qcow2 format, which the QEMU emulator can efficiently use. @xref{Running Guix in a VM}, for more information on how to run the image in a virtual machine. The @code{grub-bootloader} bootloader is always used independently of what is declared in the @code{operating-system} file passed as argument. This is to make it easier to work with QEMU, which uses the SeaBIOS BIOS by default, expecting a bootloader to be installed in the Master Boot Record (MBR)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35178 +#: guix-git/doc/guix.texi:35622 #, no-wrap msgid "docker-image, creating docker images" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35184 +#: guix-git/doc/guix.texi:35628 msgid "When using the @code{docker} image type, a Docker image is produced. Guix builds the image from scratch, not from a pre-existing Docker base image. As a result, it contains @emph{exactly} what you define in the operating system configuration file. You can then load the image and launch a Docker container using commands like the following:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35189 +#: guix-git/doc/guix.texi:35633 #, no-wrap msgid "" "image_id=\"$(docker load < guix-system-docker-image.tar.gz)\"\n" @@ -62574,43 +63392,43 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35196 +#: guix-git/doc/guix.texi:35640 msgid "This command starts a new Docker container from the specified image. It will boot the Guix system in the usual manner, which means it will start any services you have defined in the operating system configuration. You can get an interactive shell running in the container using @command{docker exec}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35199 +#: guix-git/doc/guix.texi:35643 #, no-wrap msgid "docker exec -ti $container_id /run/current-system/profile/bin/bash --login\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35206 +#: guix-git/doc/guix.texi:35650 msgid "Depending on what you run in the Docker container, it may be necessary to give the container additional permissions. For example, if you intend to build software using Guix inside of the Docker container, you may need to pass the @option{--privileged} option to @code{docker create}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35210 +#: guix-git/doc/guix.texi:35654 msgid "Last, the @option{--network} option applies to @command{guix system docker-image}: it produces an image where network is supposedly shared with the host, and thus without services like nscd or NetworkManager." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35218 +#: guix-git/doc/guix.texi:35662 msgid "Return a script to run the operating system declared in @var{file} within a container. Containers are a set of lightweight isolation mechanisms provided by the kernel Linux-libre. Containers are substantially less resource-demanding than full virtual machines since the kernel, shared objects, and other resources can be shared with the host system; this also means they provide thinner isolation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35222 +#: guix-git/doc/guix.texi:35666 msgid "Currently, the script must be run as root in order to support more than a single user and group. The container shares its store with the host system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35226 +#: guix-git/doc/guix.texi:35670 msgid "As with the @code{vm} action (@pxref{guix system vm}), additional file systems to be shared between the host and container can be specified using the @option{--share} and @option{--expose} options:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35230 +#: guix-git/doc/guix.texi:35674 #, no-wrap msgid "" "guix system container my-config.scm \\\n" @@ -62618,319 +63436,329 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35234 +#: guix-git/doc/guix.texi:35678 msgid "This option requires Linux-libre 3.19 or newer." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35241 guix-git/doc/guix.texi:37710 +#: guix-git/doc/guix.texi:35685 guix-git/doc/guix.texi:38189 msgid "@var{options} can contain any of the common build options (@pxref{Common Build Options}). In addition, @var{options} can contain one of the following:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35250 +#: guix-git/doc/guix.texi:35694 msgid "Consider the operating-system @var{expr} evaluates to. This is an alternative to specifying a file which evaluates to an operating system. This is used to generate the Guix system installer @pxref{Building the Installation Image})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35255 +#: guix-git/doc/guix.texi:35699 msgid "Attempt to build for @var{system} instead of the host system type. This works as per @command{guix build} (@pxref{Invoking guix build})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35260 +#: guix-git/doc/guix.texi:35704 msgid "Return the derivation file name of the given operating system without building anything." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35269 +#: guix-git/doc/guix.texi:35713 msgid "As discussed above, @command{guix system init} and @command{guix system reconfigure} always save provenance information @i{via} a dedicated service (@pxref{Service Reference, @code{provenance-service-type}}). However, other commands don't do that by default. If you wish to, say, create a virtual machine image that contains provenance information, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35272 +#: guix-git/doc/guix.texi:35716 #, no-wrap msgid "guix system image -t qcow2 --save-provenance config.scm\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35279 +#: guix-git/doc/guix.texi:35723 msgid "That way, the resulting image will effectively ``embed its own source'' in the form of meta-data in @file{/run/current-system}. With that information, one can rebuild the image to make sure it really contains what it pretends to contain; or they could use that to derive a variant of the image." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35280 +#: guix-git/doc/guix.texi:35724 #, no-wrap msgid "--image-type=@var{type}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35283 +#: guix-git/doc/guix.texi:35727 msgid "For the @code{image} action, create an image with given @var{type}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35286 +#: guix-git/doc/guix.texi:35730 msgid "When this option is omitted, @command{guix system} uses the @code{efi-raw} image type." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35287 +#: guix-git/doc/guix.texi:35731 #, no-wrap msgid "ISO-9660 format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35288 +#: guix-git/doc/guix.texi:35732 #, no-wrap msgid "CD image format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35289 +#: guix-git/doc/guix.texi:35733 #, no-wrap msgid "DVD image format" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35292 +#: guix-git/doc/guix.texi:35736 msgid "@option{--image-type=iso9660} produces an ISO-9660 image, suitable for burning on CDs and DVDs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35293 +#: guix-git/doc/guix.texi:35737 #, no-wrap msgid "--image-size=@var{size}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35298 +#: guix-git/doc/guix.texi:35742 msgid "For the @code{image} action, create an image of the given @var{size}. @var{size} may be a number of bytes, or it may include a unit as a suffix (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35302 +#: guix-git/doc/guix.texi:35746 msgid "When this option is omitted, @command{guix system} computes an estimate of the image size as a function of the size of the system declared in @var{file}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35307 +#: guix-git/doc/guix.texi:35751 msgid "For the @code{container} action, allow containers to access the host network, that is, do not create a network namespace." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35313 +#: guix-git/doc/guix.texi:35757 #, no-wrap msgid "--skip-checks" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35315 +#: guix-git/doc/guix.texi:35759 msgid "Skip pre-installation safety checks." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35322 +#: guix-git/doc/guix.texi:35766 msgid "By default, @command{guix system init} and @command{guix system reconfigure} perform safety checks: they make sure the file systems that appear in the @code{operating-system} declaration actually exist (@pxref{File Systems}), and that any Linux kernel modules that may be needed at boot time are listed in @code{initrd-modules} (@pxref{Initial RAM Disk}). Passing this option skips these tests altogether." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35325 +#: guix-git/doc/guix.texi:35769 msgid "Instruct @command{guix system reconfigure} to allow system downgrades." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35333 +#: guix-git/doc/guix.texi:35777 msgid "By default, @command{reconfigure} prevents you from downgrading your system. It achieves that by comparing the provenance info of your system (shown by @command{guix system describe}) with that of your @command{guix} command (shown by @command{guix describe}). If the commits for @command{guix} are not descendants of those used for your system, @command{guix system reconfigure} errors out. Passing @option{--allow-downgrades} allows you to bypass these checks." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35339 +#: guix-git/doc/guix.texi:35783 #, no-wrap msgid "on-error" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35340 +#: guix-git/doc/guix.texi:35784 #, no-wrap msgid "on-error strategy" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35341 +#: guix-git/doc/guix.texi:35785 #, no-wrap msgid "error strategy" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35342 +#: guix-git/doc/guix.texi:35786 #, no-wrap msgid "--on-error=@var{strategy}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35345 +#: guix-git/doc/guix.texi:35789 msgid "Apply @var{strategy} when an error occurs when reading @var{file}. @var{strategy} may be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35347 +#: guix-git/doc/guix.texi:35791 #, no-wrap msgid "nothing-special" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35349 +#: guix-git/doc/guix.texi:35793 msgid "Report the error concisely and exit. This is the default strategy." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35350 +#: guix-git/doc/guix.texi:35794 #, no-wrap msgid "backtrace" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35352 +#: guix-git/doc/guix.texi:35796 msgid "Likewise, but also display a backtrace." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35353 +#: guix-git/doc/guix.texi:35797 #, no-wrap msgid "debug" msgstr "virheenjäljitys" #. type: table -#: guix-git/doc/guix.texi:35359 +#: guix-git/doc/guix.texi:35803 msgid "Report the error and enter Guile's debugger. From there, you can run commands such as @code{,bt} to get a backtrace, @code{,locals} to display local variable values, and more generally inspect the state of the program. @xref{Debug Commands,,, guile, GNU Guile Reference Manual}, for a list of available debugging commands." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35366 +#: guix-git/doc/guix.texi:35810 msgid "Once you have built, configured, re-configured, and re-re-configured your Guix installation, you may find it useful to list the operating system generations available on disk---and that you can choose from the bootloader boot menu:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35369 guix-git/doc/guix.texi:37673 +#: guix-git/doc/guix.texi:35813 guix-git/doc/guix.texi:38152 #, no-wrap msgid "describe" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35372 -msgid "Describe the current system generation: its file name, the kernel and bootloader used, etc., as well as provenance information when available." +#: guix-git/doc/guix.texi:35816 +msgid "Describe the running system generation: its file name, the kernel and bootloader used, etc., as well as provenance information when available." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:35823 +msgid "The @emph{running} system generation---referred to by @file{/run/current-system}---is not necessarily the @emph{current} system generation---referred to by @file{/var/guix/profiles/system}: it differs when, for instance, you chose from the bootloader menu to boot an older generation." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:35827 +msgid "It can also differ from the @emph{booted} system generation---referred to by @file{/run/booted-system}---for instance because you reconfigured the system in the meantime." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35373 guix-git/doc/guix.texi:37677 +#: guix-git/doc/guix.texi:35829 guix-git/doc/guix.texi:38156 #, no-wrap msgid "list-generations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35378 +#: guix-git/doc/guix.texi:35834 msgid "List a summary of each generation of the operating system available on disk, in a human-readable way. This is similar to the @option{--list-generations} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35383 guix-git/doc/guix.texi:37687 +#: guix-git/doc/guix.texi:35839 guix-git/doc/guix.texi:38166 msgid "Optionally, one can specify a pattern, with the same syntax that is used in @command{guix package --list-generations}, to restrict the list of generations displayed. For instance, the following command displays generations that are up to 10 days old:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35386 +#: guix-git/doc/guix.texi:35842 #, no-wrap msgid "$ guix system list-generations 10d\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35393 +#: guix-git/doc/guix.texi:35849 msgid "The @command{guix system} command has even more to offer! The following sub-commands allow you to visualize how your system services relate to each other:" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35395 +#: guix-git/doc/guix.texi:35851 msgid "system-extension-graph" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35397 +#: guix-git/doc/guix.texi:35853 #, no-wrap msgid "extension-graph" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35404 +#: guix-git/doc/guix.texi:35860 msgid "Emit to standard output the @dfn{service extension graph} of the operating system defined in @var{file} (@pxref{Service Composition}, for more information on service extensions). By default the output is in Dot/Graphviz format, but you can choose a different format with @option{--graph-backend}, as with @command{guix graph} (@pxref{Invoking guix graph, @option{--backend}}):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35406 +#: guix-git/doc/guix.texi:35862 msgid "The command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35409 +#: guix-git/doc/guix.texi:35865 #, no-wrap msgid "$ guix system extension-graph @var{file} | xdot -\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35412 +#: guix-git/doc/guix.texi:35868 msgid "shows the extension relations among services." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35414 +#: guix-git/doc/guix.texi:35870 msgid "system-shepherd-graph" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35414 +#: guix-git/doc/guix.texi:35870 #, no-wrap msgid "shepherd-graph" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35419 +#: guix-git/doc/guix.texi:35875 msgid "Emit to standard output the @dfn{dependency graph} of shepherd services of the operating system defined in @var{file}. @xref{Shepherd Services}, for more information and for an example graph." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35422 +#: guix-git/doc/guix.texi:35878 msgid "Again, the default output format is Dot/Graphviz, but you can pass @option{--graph-backend} to select a different one." msgstr "" #. type: section -#: guix-git/doc/guix.texi:35426 +#: guix-git/doc/guix.texi:35882 #, no-wrap msgid "Invoking @code{guix deploy}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35434 +#: guix-git/doc/guix.texi:35890 msgid "We've already seen @code{operating-system} declarations used to manage a machine's configuration locally. Suppose you need to configure multiple machines, though---perhaps you're managing a service on the web that's comprised of several servers. @command{guix deploy} enables you to use those same @code{operating-system} declarations to manage multiple remote hosts at once as a logical ``deployment''." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35439 guix-git/doc/guix.texi:36900 +#: guix-git/doc/guix.texi:35895 guix-git/doc/guix.texi:37390 msgid "The functionality described in this section is still under development and is subject to change. Get in touch with us on @email{guix-devel@@gnu.org}!" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35443 +#: guix-git/doc/guix.texi:35899 #, no-wrap msgid "guix deploy @var{file}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35447 +#: guix-git/doc/guix.texi:35903 msgid "Such an invocation will deploy the machines that the code within @var{file} evaluates to. As an example, @var{file} might contain a definition like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35454 +#: guix-git/doc/guix.texi:35910 #, no-wrap msgid "" ";; This is a Guix deployment of a \"bare bones\" setup, with\n" @@ -62942,7 +63770,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35457 +#: guix-git/doc/guix.texi:35913 #, no-wrap msgid "" "(use-service-modules networking ssh)\n" @@ -62951,7 +63779,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35478 +#: guix-git/doc/guix.texi:35934 #, no-wrap msgid "" "(define %system\n" @@ -62978,7 +63806,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35488 +#: guix-git/doc/guix.texi:35944 #, no-wrap msgid "" "(list (machine\n" @@ -62993,33 +63821,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35501 +#: guix-git/doc/guix.texi:35957 msgid "The file should evaluate to a list of @var{machine} objects. This example, upon being deployed, will create a new generation on the remote system realizing the @code{operating-system} declaration @code{%system}. @code{environment} and @code{configuration} specify how the machine should be provisioned---that is, how the computing resources should be created and managed. The above example does not create any resources, as a @code{'managed-host} is a machine that is already running the Guix system and available over the network. This is a particularly simple case; a more complex deployment may involve, for example, starting virtual machines through a Virtual Private Server (VPS) provider. In such a case, a different @var{environment} type would be used." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35506 +#: guix-git/doc/guix.texi:35962 msgid "Do note that you first need to generate a key pair on the coordinator machine to allow the daemon to export signed archives of files from the store (@pxref{Invoking guix archive}), though this step is automatic on Guix System:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35514 +#: guix-git/doc/guix.texi:35970 msgid "Each target machine must authorize the key of the master machine so that it accepts store items it receives from the coordinator:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35517 +#: guix-git/doc/guix.texi:35973 #, no-wrap msgid "# guix archive --authorize < coordinator-public-key.txt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35528 +#: guix-git/doc/guix.texi:35984 msgid "@code{user}, in this example, specifies the name of the user account to log in as to perform the deployment. Its default value is @code{root}, but root login over SSH may be forbidden in some cases. To work around this, @command{guix deploy} can log in as an unprivileged user and employ @code{sudo} to escalate privileges. This will only work if @code{sudo} is currently installed on the remote and can be invoked non-interactively as @code{user}. That is, the line in @code{sudoers} granting @code{user} the ability to use @code{sudo} must contain the @code{NOPASSWD} tag. This can be accomplished with the following operating system configuration snippet:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35532 +#: guix-git/doc/guix.texi:35988 #, no-wrap msgid "" "(use-modules ...\n" @@ -63028,7 +63856,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35534 +#: guix-git/doc/guix.texi:35990 #, no-wrap msgid "" "(define %user \"username\")\n" @@ -63036,7 +63864,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35542 +#: guix-git/doc/guix.texi:35998 #, no-wrap msgid "" "(operating-system\n" @@ -63050,235 +63878,283 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35547 +#: guix-git/doc/guix.texi:36003 msgid "For more information regarding the format of the @file{sudoers} file, consult @command{man sudoers}." msgstr "" +#. type: Plain text +#: guix-git/doc/guix.texi:36008 +msgid "Once you've deployed a system on a set of machines, you may find it useful to run a command on all of them. The @option{--execute} or @option{-x} option lets you do that; the example below runs @command{uname -a} on all the machines listed in the deployment file:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:36011 +#, no-wrap +msgid "guix deploy @var{file} -x -- uname -a\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36015 +msgid "One thing you may often need to do after deployment is restart specific services on all the machines, which you can do like so:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:36018 +#, no-wrap +msgid "guix deploy @var{file} -x -- herd restart @var{service}\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36022 +msgid "The @command{guix deploy -x} command returns zero if and only if the command succeeded on all the machines." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36027 +msgid "Below are the data types you need to know about when writing a deployment file." +msgstr "" + #. type: deftp -#: guix-git/doc/guix.texi:35548 +#: guix-git/doc/guix.texi:36028 #, no-wrap msgid "{Data Type} machine" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35551 +#: guix-git/doc/guix.texi:36031 msgid "This is the data type representing a single machine in a heterogeneous Guix deployment." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35555 +#: guix-git/doc/guix.texi:36035 msgid "The object of the operating system configuration to deploy." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35556 +#: guix-git/doc/guix.texi:36036 #, no-wrap msgid "environment" msgstr "ympäristö" #. type: table -#: guix-git/doc/guix.texi:35558 +#: guix-git/doc/guix.texi:36038 msgid "An @code{environment-type} describing how the machine should be provisioned." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35559 +#: guix-git/doc/guix.texi:36039 #, no-wrap msgid "@code{configuration} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35564 +#: guix-git/doc/guix.texi:36044 msgid "An object describing the configuration for the machine's @code{environment}. If the @code{environment} has a default configuration, @code{#f} may be used. If @code{#f} is used for an environment with no default configuration, however, an error will be thrown." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35567 +#: guix-git/doc/guix.texi:36047 #, no-wrap msgid "{Data Type} machine-ssh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35570 +#: guix-git/doc/guix.texi:36050 msgid "This is the data type representing the SSH client parameters for a machine with an @code{environment} of @code{managed-host-environment-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35573 +#: guix-git/doc/guix.texi:36053 #, no-wrap msgid "@code{build-locally?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35575 +#: guix-git/doc/guix.texi:36055 msgid "If false, system derivations will be built on the machine being deployed to." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35575 +#: guix-git/doc/guix.texi:36055 #, no-wrap msgid "system" msgstr "järjestelmä" #. type: table -#: guix-git/doc/guix.texi:35578 +#: guix-git/doc/guix.texi:36058 msgid "The system type describing the architecture of the machine being deployed to---e.g., @code{\"x86_64-linux\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35578 +#: guix-git/doc/guix.texi:36058 #, no-wrap msgid "@code{authorize?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35581 +#: guix-git/doc/guix.texi:36061 msgid "If true, the coordinator's signing key will be added to the remote's ACL keyring." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35583 +#: guix-git/doc/guix.texi:36063 #, no-wrap msgid "@code{identity} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35586 +#: guix-git/doc/guix.texi:36066 msgid "If specified, the path to the SSH private key to use to authenticate with the remote host." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35587 +#: guix-git/doc/guix.texi:36067 #, no-wrap msgid "@code{host-key} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35589 +#: guix-git/doc/guix.texi:36069 msgid "This should be the SSH host key of the machine, which looks like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35592 +#: guix-git/doc/guix.texi:36072 #, no-wrap msgid "ssh-ed25519 AAAAC3Nz@dots{} root@@example.org\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35597 +#: guix-git/doc/guix.texi:36077 msgid "When @code{host-key} is @code{#f}, the server is authenticated against the @file{~/.ssh/known_hosts} file, just like the OpenSSH @command{ssh} client does." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35598 +#: guix-git/doc/guix.texi:36078 #, no-wrap msgid "@code{allow-downgrades?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35600 +#: guix-git/doc/guix.texi:36080 msgid "Whether to allow potential downgrades." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35608 +#: guix-git/doc/guix.texi:36088 msgid "Like @command{guix system reconfigure}, @command{guix deploy} compares the channel commits currently deployed on the remote host (as returned by @command{guix system describe}) to those currently in use (as returned by @command{guix describe}) to determine whether commits currently in use are descendants of those deployed. When this is not the case and @code{allow-downgrades?} is false, it raises an error. This ensures you do not accidentally downgrade remote machines." msgstr "" +#. type: item +#: guix-git/doc/guix.texi:36089 +#, no-wrap +msgid "@code{safety-checks?} (default: @code{#t})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:36095 +msgid "Whether to perform ``safety checks'' before deployment. This includes verifying that devices and file systems referred to in the operating system configuration actually exist on the target machine, and making sure that Linux modules required to access storage devices at boot time are listed in the @code{initrd-modules} field of the operating system." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:36098 +msgid "These safety checks ensure that you do not inadvertently deploy a system that would fail to boot. Be careful before turning them off!" +msgstr "" + #. type: deftp -#: guix-git/doc/guix.texi:35611 +#: guix-git/doc/guix.texi:36101 #, no-wrap msgid "{Data Type} digital-ocean-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35614 +#: guix-git/doc/guix.texi:36104 msgid "This is the data type describing the Droplet that should be created for a machine with an @code{environment} of @code{digital-ocean-environment-type}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35616 +#: guix-git/doc/guix.texi:36106 #, no-wrap msgid "ssh-key" msgstr "ssh-avain" #. type: table -#: guix-git/doc/guix.texi:35619 +#: guix-git/doc/guix.texi:36109 msgid "The path to the SSH private key to use to authenticate with the remote host. In the future, this field may not exist." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35619 +#: guix-git/doc/guix.texi:36109 #, no-wrap msgid "tags" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35622 +#: guix-git/doc/guix.texi:36112 msgid "A list of string ``tags'' that uniquely identify the machine. Must be given such that no two machines in the deployment have the same set of tags." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35622 +#: guix-git/doc/guix.texi:36112 #, no-wrap msgid "region" msgstr "alue" #. type: table -#: guix-git/doc/guix.texi:35624 +#: guix-git/doc/guix.texi:36114 msgid "A Digital Ocean region slug, such as @code{\"nyc3\"}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35626 +#: guix-git/doc/guix.texi:36116 msgid "A Digital Ocean size slug, such as @code{\"s-1vcpu-1gb\"}" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35626 +#: guix-git/doc/guix.texi:36116 #, no-wrap msgid "enable-ipv6?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35628 +#: guix-git/doc/guix.texi:36118 msgid "Whether or not the droplet should be created with IPv6 networking." msgstr "" #. type: section -#: guix-git/doc/guix.texi:35632 +#: guix-git/doc/guix.texi:36122 #, no-wrap msgid "Running Guix in a Virtual Machine" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35640 +#: guix-git/doc/guix.texi:36130 msgid "To run Guix in a virtual machine (VM), one can use the pre-built Guix VM image distributed at @url{@value{BASE-URL}/guix-system-vm-image-@value{VERSION}.x86_64-linux.qcow2}. This image is a compressed image in QCOW format. You can pass it to an emulator such as @uref{https://qemu.org/, QEMU} (see below for details)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35647 +#: guix-git/doc/guix.texi:36137 msgid "This image boots the Xfce graphical environment and it contains some commonly used tools. You can install more software in the image by running @command{guix package} in a terminal (@pxref{Invoking guix package}). You can also reconfigure the system based on its initial configuration file available as @file{/run/current-system/configuration.scm} (@pxref{Using the Configuration System})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35650 +#: guix-git/doc/guix.texi:36140 msgid "Instead of using this pre-built image, one can also build their own image using @command{guix system image} (@pxref{Invoking guix system})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35651 +#: guix-git/doc/guix.texi:36141 #, no-wrap msgid "QEMU" msgstr "QEMU" #. type: Plain text -#: guix-git/doc/guix.texi:35658 +#: guix-git/doc/guix.texi:36148 msgid "If you built your own image, you must copy it out of the store (@pxref{The Store}) and give yourself permission to write to the copy before you can use it. When invoking QEMU, you must choose a system emulator that is suitable for your hardware platform. Here is a minimal QEMU invocation that will boot the result of @command{guix system image -t qcow2} on x86_64 hardware:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35665 +#: guix-git/doc/guix.texi:36155 #, no-wrap msgid "" "$ qemu-system-x86_64 \\\n" @@ -63289,137 +64165,137 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35668 +#: guix-git/doc/guix.texi:36158 msgid "Here is what each of these options means:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35670 +#: guix-git/doc/guix.texi:36160 #, no-wrap msgid "qemu-system-x86_64" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35673 +#: guix-git/doc/guix.texi:36163 msgid "This specifies the hardware platform to emulate. This should match the host." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35674 +#: guix-git/doc/guix.texi:36164 #, no-wrap msgid "-nic user,model=virtio-net-pci" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35682 +#: guix-git/doc/guix.texi:36172 msgid "Enable the unprivileged user-mode network stack. The guest OS can access the host but not vice versa. This is the simplest way to get the guest OS online. @code{model} specifies which network device to emulate: @code{virtio-net-pci} is a special device made for virtualized operating systems and recommended for most uses. Assuming your hardware platform is x86_64, you can get a list of available NIC models by running @command{qemu-system-x86_64 -nic model=help}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35683 +#: guix-git/doc/guix.texi:36173 #, no-wrap msgid "-enable-kvm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35687 +#: guix-git/doc/guix.texi:36177 msgid "If your system has hardware virtualization extensions, enabling the virtual machine support (KVM) of the Linux kernel will make things run faster." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35689 +#: guix-git/doc/guix.texi:36179 #, no-wrap msgid "-m 1024" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35692 +#: guix-git/doc/guix.texi:36182 msgid "RAM available to the guest OS, in mebibytes. Defaults to 128@tie{}MiB, which may be insufficient for some operations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35693 +#: guix-git/doc/guix.texi:36183 #, no-wrap msgid "-device virtio-blk,drive=myhd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35698 +#: guix-git/doc/guix.texi:36188 msgid "Create a @code{virtio-blk} drive called ``myhd''. @code{virtio-blk} is a ``paravirtualization'' mechanism for block devices that allows QEMU to achieve better performance than if it were emulating a complete disk drive. See the QEMU and KVM documentation for more info." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35699 +#: guix-git/doc/guix.texi:36189 #, no-wrap msgid "-drive if=none,file=/tmp/qemu-image,id=myhd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35702 +#: guix-git/doc/guix.texi:36192 msgid "Use our QCOW image, the @file{/tmp/qemu-image} file, as the backing store of the ``myhd'' drive." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35712 +#: guix-git/doc/guix.texi:36202 msgid "The default @command{run-vm.sh} script that is returned by an invocation of @command{guix system vm} does not add a @command{-nic user} flag by default. To get network access from within the vm add the @code{(dhcp-client-service)} to your system definition and start the VM using @command{$(guix system vm config.scm) -nic user}. An important caveat of using @command{-nic user} for networking is that @command{ping} will not work, because it uses the ICMP protocol. You'll have to use a different command to check for network connectivity, for example @command{guix download}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:35713 +#: guix-git/doc/guix.texi:36203 #, no-wrap msgid "Connecting Through SSH" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35721 +#: guix-git/doc/guix.texi:36211 msgid "To enable SSH inside a VM you need to add an SSH server like @code{openssh-service-type} to your VM (@pxref{Networking Services, @code{openssh-service-type}}). In addition you need to forward the SSH port, 22 by default, to the host. You can do this with" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35724 +#: guix-git/doc/guix.texi:36214 #, no-wrap msgid "$(guix system vm config.scm) -nic user,model=virtio-net-pci,hostfwd=tcp::10022-:22\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35727 +#: guix-git/doc/guix.texi:36217 msgid "To connect to the VM you can run" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35730 +#: guix-git/doc/guix.texi:36220 #, no-wrap msgid "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 10022 localhost\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35737 +#: guix-git/doc/guix.texi:36227 msgid "The @command{-p} tells @command{ssh} the port you want to connect to. @command{-o UserKnownHostsFile=/dev/null} prevents @command{ssh} from complaining every time you modify your @command{config.scm} file and the @command{-o StrictHostKeyChecking=no} prevents you from having to allow a connection to an unknown host every time you connect." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35743 +#: guix-git/doc/guix.texi:36233 msgid "If you find the above @samp{hostfwd} example not to be working (e.g., your SSH client hangs attempting to connect to the mapped port of your VM), make sure that your Guix System VM has networking support, such as by using the @code{dhcp-client-service-type} service type." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:35745 +#: guix-git/doc/guix.texi:36235 #, no-wrap msgid "Using @command{virt-viewer} with Spice" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35751 +#: guix-git/doc/guix.texi:36241 msgid "As an alternative to the default @command{qemu} graphical client you can use the @command{remote-viewer} from the @command{virt-viewer} package. To connect pass the @command{-spice port=5930,disable-ticketing} flag to @command{qemu}. See previous section for further information on how to do this." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35754 +#: guix-git/doc/guix.texi:36244 msgid "Spice also allows you to do some nice stuff like share your clipboard with your VM@. To enable that you'll also have to pass the following flags to @command{qemu}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35760 +#: guix-git/doc/guix.texi:36250 #, no-wrap msgid "" "-device virtio-serial-pci,id=virtio-serial0,max_ports=16,bus=pci.0,addr=0x5\n" @@ -63429,81 +64305,81 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35764 +#: guix-git/doc/guix.texi:36254 msgid "You'll also need to add the @code{(spice-vdagent-service)} to your system definition (@pxref{Miscellaneous Services, Spice service})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35771 +#: guix-git/doc/guix.texi:36261 msgid "The previous sections show the available services and how one can combine them in an @code{operating-system} declaration. But how do we define them in the first place? And what is a service anyway?" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35784 +#: guix-git/doc/guix.texi:36274 #, no-wrap msgid "daemons" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35797 +#: guix-git/doc/guix.texi:36287 msgid "Here we define a @dfn{service} as, broadly, something that extends the functionality of the operating system. Often a service is a process---a @dfn{daemon}---started when the system boots: a secure shell server, a Web server, the Guix build daemon, etc. Sometimes a service is a daemon whose execution can be triggered by another daemon---e.g., an FTP server started by @command{inetd} or a D-Bus service activated by @command{dbus-daemon}. Occasionally, a service does not map to a daemon. For instance, the ``account'' service collects user accounts and makes sure they exist when the system runs; the ``udev'' service collects device management rules and makes them available to the eudev daemon; the @file{/etc} service populates the @file{/etc} directory of the system." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35798 +#: guix-git/doc/guix.texi:36288 #, no-wrap msgid "service extensions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35810 +#: guix-git/doc/guix.texi:36300 msgid "Guix system services are connected by @dfn{extensions}. For instance, the secure shell service @emph{extends} the Shepherd---the initialization system, running as PID@tie{}1---by giving it the command lines to start and stop the secure shell daemon (@pxref{Networking Services, @code{openssh-service-type}}); the UPower service extends the D-Bus service by passing it its @file{.service} specification, and extends the udev service by passing it device management rules (@pxref{Desktop Services, @code{upower-service}}); the Guix daemon service extends the Shepherd by passing it the command lines to start and stop the daemon, and extends the account service by passing it a list of required build user accounts (@pxref{Base Services})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35814 +#: guix-git/doc/guix.texi:36304 msgid "All in all, services and their ``extends'' relations form a directed acyclic graph (DAG). If we represent services as boxes and extensions as arrows, a typical system might provide something like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35816 +#: guix-git/doc/guix.texi:36306 msgid "@image{images/service-graph,,5in,Typical service extension graph.}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35817 +#: guix-git/doc/guix.texi:36307 #, no-wrap msgid "system service" msgstr "järjestelmäpalvelu" #. type: Plain text -#: guix-git/doc/guix.texi:35825 +#: guix-git/doc/guix.texi:36315 msgid "At the bottom, we see the @dfn{system service}, which produces the directory containing everything to run and boot the system, as returned by the @command{guix system build} command. @xref{Service Reference}, to learn about the other service types shown here. @xref{system-extension-graph, the @command{guix system extension-graph} command}, for information on how to generate this representation for a particular operating system definition." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35826 +#: guix-git/doc/guix.texi:36316 #, no-wrap msgid "service types" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35832 +#: guix-git/doc/guix.texi:36322 msgid "Technically, developers can define @dfn{service types} to express these relations. There can be any number of services of a given type on the system---for instance, a system running two instances of the GNU secure shell server (lsh) has two instances of @code{lsh-service-type}, with different parameters." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35835 +#: guix-git/doc/guix.texi:36325 msgid "The following section describes the programming interface for service types and services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35842 +#: guix-git/doc/guix.texi:36332 msgid "A @dfn{service type} is a node in the DAG described above. Let us start with a simple example, the service type for the Guix build daemon (@pxref{Invoking guix-daemon}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35852 +#: guix-git/doc/guix.texi:36342 #, no-wrap msgid "" "(define guix-service-type\n" @@ -63517,75 +64393,75 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35856 +#: guix-git/doc/guix.texi:36346 msgid "It defines three things:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35860 +#: guix-git/doc/guix.texi:36350 msgid "A name, whose sole purpose is to make inspection and debugging easier." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35865 +#: guix-git/doc/guix.texi:36355 msgid "A list of @dfn{service extensions}, where each extension designates the target service type and a procedure that, given the parameters of the service, returns a list of objects to extend the service of that type." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35868 +#: guix-git/doc/guix.texi:36358 msgid "Every service type has at least one service extension. The only exception is the @dfn{boot service type}, which is the ultimate service." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35871 +#: guix-git/doc/guix.texi:36361 msgid "Optionally, a default value for instances of this type." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35874 +#: guix-git/doc/guix.texi:36364 msgid "In this example, @code{guix-service-type} extends three services:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35876 +#: guix-git/doc/guix.texi:36366 #, no-wrap msgid "shepherd-root-service-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35881 +#: guix-git/doc/guix.texi:36371 msgid "The @code{guix-shepherd-service} procedure defines how the Shepherd service is extended. Namely, it returns a @code{} object that defines how @command{guix-daemon} is started and stopped (@pxref{Shepherd Services})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35882 +#: guix-git/doc/guix.texi:36372 #, no-wrap msgid "account-service-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35887 +#: guix-git/doc/guix.texi:36377 msgid "This extension for this service is computed by @code{guix-accounts}, which returns a list of @code{user-group} and @code{user-account} objects representing the build user accounts (@pxref{Invoking guix-daemon})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35888 +#: guix-git/doc/guix.texi:36378 #, no-wrap msgid "activation-service-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35892 +#: guix-git/doc/guix.texi:36382 msgid "Here @code{guix-activation} is a procedure that returns a gexp, which is a code snippet to run at ``activation time''---e.g., when the service is booted." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35895 +#: guix-git/doc/guix.texi:36385 msgid "A service of this type is instantiated like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35901 +#: guix-git/doc/guix.texi:36391 #, no-wrap msgid "" "(service guix-service-type\n" @@ -63595,28 +64471,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35909 +#: guix-git/doc/guix.texi:36399 msgid "The second argument to the @code{service} form is a value representing the parameters of this specific service instance. @xref{guix-configuration-type, @code{guix-configuration}}, for information about the @code{guix-configuration} data type. When the value is omitted, the default value specified by @code{guix-service-type} is used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35912 +#: guix-git/doc/guix.texi:36402 #, no-wrap msgid "(service guix-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35916 +#: guix-git/doc/guix.texi:36406 msgid "@code{guix-service-type} is quite simple because it extends other services but is not extensible itself." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35920 +#: guix-git/doc/guix.texi:36410 msgid "The service type for an @emph{extensible} service looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35927 +#: guix-git/doc/guix.texi:36417 #, no-wrap msgid "" "(define udev-service-type\n" @@ -63628,7 +64504,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35935 +#: guix-git/doc/guix.texi:36425 #, no-wrap msgid "" " (compose concatenate) ;concatenate the list of rules\n" @@ -63641,96 +64517,96 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35941 +#: guix-git/doc/guix.texi:36431 msgid "This is the service type for the @uref{https://wiki.gentoo.org/wiki/Project:Eudev, eudev device management daemon}. Compared to the previous example, in addition to an extension of @code{shepherd-root-service-type}, we see two new fields:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35943 +#: guix-git/doc/guix.texi:36433 #, no-wrap msgid "compose" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35946 +#: guix-git/doc/guix.texi:36436 msgid "This is the procedure to @dfn{compose} the list of extensions to services of this type." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35949 +#: guix-git/doc/guix.texi:36439 msgid "Services can extend the udev service by passing it lists of rules; we compose those extensions simply by concatenating them." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35950 +#: guix-git/doc/guix.texi:36440 #, no-wrap msgid "extend" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35953 +#: guix-git/doc/guix.texi:36443 msgid "This procedure defines how the value of the service is @dfn{extended} with the composition of the extensions." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35958 +#: guix-git/doc/guix.texi:36448 msgid "Udev extensions are composed into a list of rules, but the udev service value is itself a @code{} record. So here, we extend that record by appending the list of rules it contains to the list of contributed rules." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35964 +#: guix-git/doc/guix.texi:36454 msgid "This is a string giving an overview of the service type. The string can contain Texinfo markup (@pxref{Overview,,, texinfo, GNU Texinfo}). The @command{guix system search} command searches these strings and displays them (@pxref{Invoking guix system})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35969 +#: guix-git/doc/guix.texi:36459 msgid "There can be only one instance of an extensible service type such as @code{udev-service-type}. If there were more, the @code{service-extension} specifications would be ambiguous." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35972 +#: guix-git/doc/guix.texi:36462 msgid "Still here? The next section provides a reference of the programming interface for services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35980 +#: guix-git/doc/guix.texi:36470 msgid "We have seen an overview of service types (@pxref{Service Types and Services}). This section provides a reference on how to manipulate services and service types. This interface is provided by the @code{(gnu services)} module." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35981 +#: guix-git/doc/guix.texi:36471 #, no-wrap msgid "{Scheme Procedure} service @var{type} [@var{value}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35985 +#: guix-git/doc/guix.texi:36475 msgid "Return a new service of @var{type}, a @code{} object (see below). @var{value} can be any object; it represents the parameters of this particular service instance." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35989 +#: guix-git/doc/guix.texi:36479 msgid "When @var{value} is omitted, the default value specified by @var{type} is used; if @var{type} does not specify a default value, an error is raised." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35991 +#: guix-git/doc/guix.texi:36481 msgid "For instance, this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35994 +#: guix-git/doc/guix.texi:36484 #, no-wrap msgid "(service openssh-service-type)\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35998 +#: guix-git/doc/guix.texi:36488 msgid "is equivalent to this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36002 +#: guix-git/doc/guix.texi:36492 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -63738,50 +64614,50 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36006 +#: guix-git/doc/guix.texi:36496 msgid "In both cases the result is an instance of @code{openssh-service-type} with the default configuration." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36008 +#: guix-git/doc/guix.texi:36498 #, no-wrap msgid "{Scheme Procedure} service? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36010 +#: guix-git/doc/guix.texi:36500 msgid "Return true if @var{obj} is a service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36012 +#: guix-git/doc/guix.texi:36502 #, no-wrap msgid "{Scheme Procedure} service-kind @var{service}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36014 +#: guix-git/doc/guix.texi:36504 msgid "Return the type of @var{service}---i.e., a @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36016 +#: guix-git/doc/guix.texi:36506 #, no-wrap msgid "{Scheme Procedure} service-value @var{service}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36019 +#: guix-git/doc/guix.texi:36509 msgid "Return the value associated with @var{service}. It represents its parameters." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36022 +#: guix-git/doc/guix.texi:36512 msgid "Here is an example of how a service is created and manipulated:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36031 +#: guix-git/doc/guix.texi:36521 #, no-wrap msgid "" "(define s\n" @@ -63795,7 +64671,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36034 +#: guix-git/doc/guix.texi:36524 #, no-wrap msgid "" "(service? s)\n" @@ -63804,7 +64680,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36037 +#: guix-git/doc/guix.texi:36527 #, no-wrap msgid "" "(eq? (service-kind s) nginx-service-type)\n" @@ -63812,210 +64688,210 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36047 +#: guix-git/doc/guix.texi:36537 msgid "The @code{modify-services} form provides a handy way to change the parameters of some of the services of a list such as @code{%base-services} (@pxref{Base Services, @code{%base-services}}). It evaluates to a list of services. Of course, you could always use standard list combinators such as @code{map} and @code{fold} to do that (@pxref{SRFI-1, List Library,, guile, GNU Guile Reference Manual}); @code{modify-services} simply provides a more concise form for this common pattern." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36048 +#: guix-git/doc/guix.texi:36538 #, no-wrap msgid "{Scheme Syntax} modify-services @var{services} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36050 +#: guix-git/doc/guix.texi:36540 msgid "(@var{type} @var{variable} => @var{body}) @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36053 +#: guix-git/doc/guix.texi:36543 msgid "Modify the services listed in @var{services} according to the given clauses. Each clause has the form:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36056 +#: guix-git/doc/guix.texi:36546 #, no-wrap msgid "(@var{type} @var{variable} => @var{body})\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36063 +#: guix-git/doc/guix.texi:36553 msgid "where @var{type} is a service type---e.g., @code{guix-service-type}---and @var{variable} is an identifier that is bound within the @var{body} to the service parameters---e.g., a @code{guix-configuration} instance---of the original service of that @var{type}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36070 +#: guix-git/doc/guix.texi:36560 msgid "The @var{body} should evaluate to the new service parameters, which will be used to configure the new service. This new service will replace the original in the resulting list. Because a service's service parameters are created using @code{define-record-type*}, you can write a succinct @var{body} that evaluates to the new service parameters by using the @code{inherit} feature that @code{define-record-type*} provides." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36072 +#: guix-git/doc/guix.texi:36562 msgid "Clauses can also have the following form:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36075 +#: guix-git/doc/guix.texi:36565 #, no-wrap msgid "(delete @var{type})\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36079 +#: guix-git/doc/guix.texi:36569 msgid "Such a clause removes all services of the given @var{type} from @var{services}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36081 +#: guix-git/doc/guix.texi:36571 msgid "@xref{Using the Configuration System}, for example usage." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36088 +#: guix-git/doc/guix.texi:36578 msgid "Next comes the programming interface for service types. This is something you want to know when writing new service definitions, but not necessarily when simply looking for ways to customize your @code{operating-system} declaration." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36089 +#: guix-git/doc/guix.texi:36579 #, no-wrap msgid "{Data Type} service-type" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36090 +#: guix-git/doc/guix.texi:36580 #, no-wrap msgid "service type" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36093 +#: guix-git/doc/guix.texi:36583 msgid "This is the representation of a @dfn{service type} (@pxref{Service Types and Services})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36097 +#: guix-git/doc/guix.texi:36587 msgid "This is a symbol, used only to simplify inspection and debugging." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:36098 +#: guix-git/doc/guix.texi:36588 #, no-wrap msgid "extensions" msgstr "laajennukset" #. type: table -#: guix-git/doc/guix.texi:36100 +#: guix-git/doc/guix.texi:36590 msgid "A non-empty list of @code{} objects (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36101 +#: guix-git/doc/guix.texi:36591 #, no-wrap msgid "@code{compose} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36105 +#: guix-git/doc/guix.texi:36595 msgid "If this is @code{#f}, then the service type denotes services that cannot be extended---i.e., services that do not receive ``values'' from other services." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36109 +#: guix-git/doc/guix.texi:36599 msgid "Otherwise, it must be a one-argument procedure. The procedure is called by @code{fold-services} and is passed a list of values collected from extensions. It may return any single value." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36110 +#: guix-git/doc/guix.texi:36600 #, no-wrap msgid "@code{extend} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36112 +#: guix-git/doc/guix.texi:36602 msgid "If this is @code{#f}, services of this type cannot be extended." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36118 +#: guix-git/doc/guix.texi:36608 msgid "Otherwise, it must be a two-argument procedure: @code{fold-services} calls it, passing it the initial value of the service as the first argument and the result of applying @code{compose} to the extension values as the second argument. It must return a value that is a valid parameter value for the service instance." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36124 +#: guix-git/doc/guix.texi:36614 msgid "This is a string, possibly using Texinfo markup, describing in a couple of sentences what the service is about. This string allows users to find about the service through @command{guix system search} (@pxref{Invoking guix system})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36125 +#: guix-git/doc/guix.texi:36615 #, no-wrap msgid "@code{default-value} (default: @code{&no-default-value})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36128 +#: guix-git/doc/guix.texi:36618 msgid "The default value associated for instances of this service type. This allows users to use the @code{service} form without its second argument:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36131 +#: guix-git/doc/guix.texi:36621 #, no-wrap msgid "(service @var{type})\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36135 +#: guix-git/doc/guix.texi:36625 msgid "The returned service in this case has the default value specified by @var{type}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36138 +#: guix-git/doc/guix.texi:36628 msgid "@xref{Service Types and Services}, for examples." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36140 +#: guix-git/doc/guix.texi:36630 #, no-wrap msgid "{Scheme Procedure} service-extension @var{target-type} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36146 +#: guix-git/doc/guix.texi:36636 msgid "@var{compute} Return a new extension for services of type @var{target-type}. @var{compute} must be a one-argument procedure: @code{fold-services} calls it, passing it the value associated with the service that provides the extension; it must return a valid value for the target service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36148 +#: guix-git/doc/guix.texi:36638 #, no-wrap msgid "{Scheme Procedure} service-extension? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36150 +#: guix-git/doc/guix.texi:36640 msgid "Return true if @var{obj} is a service extension." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36156 +#: guix-git/doc/guix.texi:36646 msgid "Occasionally, you might want to simply extend an existing service. This involves creating a new service type and specifying the extension of interest, which can be verbose; the @code{simple-service} procedure provides a shorthand for this." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36157 +#: guix-git/doc/guix.texi:36647 #, no-wrap msgid "{Scheme Procedure} simple-service @var{name} @var{target} @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36161 +#: guix-git/doc/guix.texi:36651 msgid "Return a service that extends @var{target} with @var{value}. This works by creating a singleton service type @var{name}, of which the returned service is an instance." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36164 +#: guix-git/doc/guix.texi:36654 msgid "For example, this extends mcron (@pxref{Scheduled Job Execution}) with an additional job:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36168 +#: guix-git/doc/guix.texi:36658 #, no-wrap msgid "" "(simple-service 'my-mcron-job mcron-service-type\n" @@ -64023,185 +64899,185 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36178 +#: guix-git/doc/guix.texi:36668 msgid "At the core of the service abstraction lies the @code{fold-services} procedure, which is responsible for ``compiling'' a list of services down to a single directory that contains everything needed to boot and run the system---the directory shown by the @command{guix system build} command (@pxref{Invoking guix system}). In essence, it propagates service extensions down the service graph, updating each node parameters on the way, until it reaches the root node." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36179 +#: guix-git/doc/guix.texi:36669 #, no-wrap msgid "{Scheme Procedure} fold-services @var{services} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36183 +#: guix-git/doc/guix.texi:36673 msgid "[#:target-type @var{system-service-type}] Fold @var{services} by propagating their extensions down to the root of type @var{target-type}; return the root service adjusted accordingly." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36187 +#: guix-git/doc/guix.texi:36677 msgid "Lastly, the @code{(gnu services)} module also defines several essential service types, some of which are listed below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36188 +#: guix-git/doc/guix.texi:36678 #, no-wrap msgid "{Scheme Variable} system-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36191 +#: guix-git/doc/guix.texi:36681 msgid "This is the root of the service graph. It produces the system directory as returned by the @command{guix system build} command." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36193 +#: guix-git/doc/guix.texi:36683 #, no-wrap msgid "{Scheme Variable} boot-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36196 +#: guix-git/doc/guix.texi:36686 msgid "The type of the ``boot service'', which produces the @dfn{boot script}. The boot script is what the initial RAM disk runs when booting." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36198 +#: guix-git/doc/guix.texi:36688 #, no-wrap msgid "{Scheme Variable} etc-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36202 +#: guix-git/doc/guix.texi:36692 msgid "The type of the @file{/etc} service. This service is used to create files under @file{/etc} and can be extended by passing it name/file tuples such as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36205 +#: guix-git/doc/guix.texi:36695 #, no-wrap msgid "(list `(\"issue\" ,(plain-file \"issue\" \"Welcome!\\n\")))\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36209 +#: guix-git/doc/guix.texi:36699 msgid "In this example, the effect would be to add an @file{/etc/issue} file pointing to the given file." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36211 +#: guix-git/doc/guix.texi:36701 #, no-wrap msgid "{Scheme Variable} setuid-program-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36215 +#: guix-git/doc/guix.texi:36705 msgid "Type for the ``setuid-program service''. This service collects lists of executable file names, passed as gexps, and adds them to the set of setuid-root programs on the system (@pxref{Setuid Programs})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36217 +#: guix-git/doc/guix.texi:36707 #, no-wrap msgid "{Scheme Variable} profile-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36221 +#: guix-git/doc/guix.texi:36711 msgid "Type of the service that populates the @dfn{system profile}---i.e., the programs under @file{/run/current-system/profile}. Other services can extend it by passing it lists of packages to add to the system profile." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:36225 +#: guix-git/doc/guix.texi:36715 msgid "provenance-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36225 +#: guix-git/doc/guix.texi:36715 #, no-wrap msgid "{Scheme Variable} provenance-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36229 +#: guix-git/doc/guix.texi:36719 msgid "This is the type of the service that records @dfn{provenance meta-data} in the system itself. It creates several files under @file{/run/current-system}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36231 +#: guix-git/doc/guix.texi:36721 #, no-wrap msgid "channels.scm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36236 +#: guix-git/doc/guix.texi:36726 msgid "This is a ``channel file'' that can be passed to @command{guix pull -C} or @command{guix time-machine -C}, and which describes the channels used to build the system, if that information was available (@pxref{Channels})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36237 +#: guix-git/doc/guix.texi:36727 #, no-wrap msgid "configuration.scm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36242 +#: guix-git/doc/guix.texi:36732 msgid "This is the file that was passed as the value for this @code{provenance-service-type} service. By default, @command{guix system reconfigure} automatically passes the OS configuration file it received on the command line." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36243 +#: guix-git/doc/guix.texi:36733 #, no-wrap msgid "provenance" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36246 +#: guix-git/doc/guix.texi:36736 msgid "This contains the same information as the two other files but in a format that is more readily processable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36250 +#: guix-git/doc/guix.texi:36740 msgid "In general, these two pieces of information (channels and configuration file) are enough to reproduce the operating system ``from source''." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36251 +#: guix-git/doc/guix.texi:36741 #, no-wrap msgid "Caveats" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36258 +#: guix-git/doc/guix.texi:36748 msgid "This information is necessary to rebuild your operating system, but it is not always sufficient. In particular, @file{configuration.scm} itself is insufficient if it is not self-contained---if it refers to external Guile modules or to extra files. If you want @file{configuration.scm} to be self-contained, we recommend that modules or files it refers to be part of a channel." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36266 +#: guix-git/doc/guix.texi:36756 msgid "Besides, provenance meta-data is ``silent'' in the sense that it does not change the bits contained in your system, @emph{except for the meta-data bits themselves}. Two different OS configurations or sets of channels can lead to the same system, bit-for-bit; when @code{provenance-service-type} is used, these two systems will have different meta-data and thus different store file names, which makes comparison less trivial." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36271 +#: guix-git/doc/guix.texi:36761 msgid "This service is automatically added to your operating system configuration when you use @command{guix system reconfigure}, @command{guix system init}, or @command{guix deploy}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36273 +#: guix-git/doc/guix.texi:36763 #, no-wrap msgid "{Scheme Variable} linux-loadable-module-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36277 +#: guix-git/doc/guix.texi:36767 msgid "Type of the service that collects lists of packages containing kernel-loadable modules, and adds them to the set of kernel-loadable modules." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36280 +#: guix-git/doc/guix.texi:36770 msgid "This service type is intended to be extended by other service types, such as below:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36286 +#: guix-git/doc/guix.texi:36776 #, no-wrap msgid "" "(simple-service 'installing-module\n" @@ -64211,192 +65087,192 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36290 +#: guix-git/doc/guix.texi:36780 msgid "This does not actually load modules at bootup, only adds it to the kernel profile so that it @emph{can} be loaded by other means." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36295 guix-git/doc/guix.texi:37447 +#: guix-git/doc/guix.texi:36785 #, no-wrap msgid "shepherd services" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36296 +#: guix-git/doc/guix.texi:36786 #, no-wrap msgid "PID 1" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36297 +#: guix-git/doc/guix.texi:36787 #, no-wrap msgid "init system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36303 +#: guix-git/doc/guix.texi:36793 msgid "The @code{(gnu services shepherd)} module provides a way to define services managed by the GNU@tie{}Shepherd, which is the initialization system---the first process that is started when the system boots, also known as PID@tie{}1 (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36309 +#: guix-git/doc/guix.texi:36799 msgid "Services in the Shepherd can depend on each other. For instance, the SSH daemon may need to be started after the syslog daemon has been started, which in turn can only happen once all the file systems have been mounted. The simple operating system defined earlier (@pxref{Using the Configuration System}) results in a service graph like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36311 +#: guix-git/doc/guix.texi:36801 msgid "@image{images/shepherd-graph,,5in,Typical shepherd service graph.}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36315 +#: guix-git/doc/guix.texi:36805 msgid "You can actually generate such a graph for any operating system definition using the @command{guix system shepherd-graph} command (@pxref{system-shepherd-graph, @command{guix system shepherd-graph}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36319 +#: guix-git/doc/guix.texi:36809 msgid "The @code{%shepherd-root-service} is a service object representing PID@tie{}1, of type @code{shepherd-root-service-type}; it can be extended by passing it lists of @code{} objects." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36320 +#: guix-git/doc/guix.texi:36810 #, no-wrap msgid "{Data Type} shepherd-service" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36322 +#: guix-git/doc/guix.texi:36812 msgid "The data type representing a service managed by the Shepherd." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:36324 +#: guix-git/doc/guix.texi:36814 #, no-wrap msgid "provision" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36326 +#: guix-git/doc/guix.texi:36816 msgid "This is a list of symbols denoting what the service provides." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36331 +#: guix-git/doc/guix.texi:36821 msgid "These are the names that may be passed to @command{herd start}, @command{herd status}, and similar commands (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual}). @xref{Slots of services, the @code{provides} slot,, shepherd, The GNU Shepherd Manual}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36332 +#: guix-git/doc/guix.texi:36822 #, no-wrap msgid "@code{requirement} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36334 +#: guix-git/doc/guix.texi:36824 msgid "List of symbols denoting the Shepherd services this one depends on." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36335 +#: guix-git/doc/guix.texi:36825 #, no-wrap msgid "one-shot services, for the Shepherd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36340 +#: guix-git/doc/guix.texi:36830 msgid "Whether this service is @dfn{one-shot}. One-shot services stop immediately after their @code{start} action has completed. @xref{Slots of services,,, shepherd, The GNU Shepherd Manual}, for more info." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36341 +#: guix-git/doc/guix.texi:36831 #, no-wrap msgid "@code{respawn?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36344 +#: guix-git/doc/guix.texi:36834 msgid "Whether to restart the service when it stops, for instance when the underlying process dies." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:36345 +#: guix-git/doc/guix.texi:36835 #, no-wrap msgid "start" msgstr "käynnistä" #. type: itemx -#: guix-git/doc/guix.texi:36346 +#: guix-git/doc/guix.texi:36836 #, no-wrap msgid "@code{stop} (default: @code{#~(const #f)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36352 +#: guix-git/doc/guix.texi:36842 msgid "The @code{start} and @code{stop} fields refer to the Shepherd's facilities to start and stop processes (@pxref{Service De- and Constructors,,, shepherd, The GNU Shepherd Manual}). They are given as G-expressions that get expanded in the Shepherd configuration file (@pxref{G-Expressions})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36353 +#: guix-git/doc/guix.texi:36843 #, no-wrap msgid "@code{actions} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36354 +#: guix-git/doc/guix.texi:36844 #, no-wrap msgid "actions, of Shepherd services" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36359 +#: guix-git/doc/guix.texi:36849 msgid "This is a list of @code{shepherd-action} objects (see below) defining @dfn{actions} supported by the service, in addition to the standard @code{start} and @code{stop} actions. Actions listed here become available as @command{herd} sub-commands:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36362 +#: guix-git/doc/guix.texi:36852 #, no-wrap msgid "herd @var{action} @var{service} [@var{arguments}@dots{}]\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36364 +#: guix-git/doc/guix.texi:36854 #, no-wrap msgid "@code{auto-start?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36367 +#: guix-git/doc/guix.texi:36857 msgid "Whether this service should be started automatically by the Shepherd. If it is @code{#f} the service has to be started manually with @code{herd start}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36370 +#: guix-git/doc/guix.texi:36860 msgid "A documentation string, as shown when running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36373 +#: guix-git/doc/guix.texi:36863 #, no-wrap msgid "herd doc @var{service-name}\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36377 +#: guix-git/doc/guix.texi:36867 msgid "where @var{service-name} is one of the symbols in @code{provision} (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36381 +#: guix-git/doc/guix.texi:36871 msgid "This is the list of modules that must be in scope when @code{start} and @code{stop} are evaluated." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36389 +#: guix-git/doc/guix.texi:36879 msgid "The example below defines a Shepherd service that spawns @command{syslogd}, the system logger from the GNU Networking Utilities (@pxref{syslogd invocation, @command{syslogd},, inetutils, GNU Inetutils}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36401 +#: guix-git/doc/guix.texi:36891 #, no-wrap msgid "" "(let ((config (plain-file \"syslogd.conf\" \"@dots{}\")))\n" @@ -64412,55 +65288,55 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36416 +#: guix-git/doc/guix.texi:36906 msgid "Key elements in this example are the @code{start} and @code{stop} fields: they are @dfn{staged} code snippets that use the @code{make-forkexec-constructor} procedure provided by the Shepherd and its dual, @code{make-kill-destructor} (@pxref{Service De- and Constructors,,, shepherd, The GNU Shepherd Manual}). The @code{start} field will have @command{shepherd} spawn @command{syslogd} with the given option; note that we pass @code{config} after @option{--rcfile}, which is a configuration file declared above (contents of this file are omitted). Likewise, the @code{stop} field tells how this service is to be stopped; in this case, it is stopped by making the @code{kill} system call on its PID@. Code staging is achieved using G-expressions: @code{#~} stages code, while @code{#$} ``escapes'' back to host code (@pxref{G-Expressions})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36417 +#: guix-git/doc/guix.texi:36907 #, no-wrap msgid "{Data Type} shepherd-action" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36420 +#: guix-git/doc/guix.texi:36910 msgid "This is the data type that defines additional actions implemented by a Shepherd service (see above)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36424 +#: guix-git/doc/guix.texi:36914 msgid "Symbol naming the action." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36427 +#: guix-git/doc/guix.texi:36917 msgid "This is a documentation string for the action. It can be viewed by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36430 +#: guix-git/doc/guix.texi:36920 #, no-wrap msgid "herd doc @var{service} action @var{action}\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36432 +#: guix-git/doc/guix.texi:36922 #, no-wrap msgid "procedure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36436 +#: guix-git/doc/guix.texi:36926 msgid "This should be a gexp that evaluates to a procedure of at least one argument, which is the ``running value'' of the service (@pxref{Slots of services,,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36440 +#: guix-git/doc/guix.texi:36930 msgid "The following example defines an action called @code{say-hello} that kindly greets the user:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36449 +#: guix-git/doc/guix.texi:36939 #, no-wrap msgid "" "(shepherd-action\n" @@ -64473,12 +65349,12 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36452 +#: guix-git/doc/guix.texi:36942 msgid "Assuming this action is added to the @code{example} service, then you can do:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36458 +#: guix-git/doc/guix.texi:36948 #, no-wrap msgid "" "# herd say-hello example\n" @@ -64488,66 +65364,66 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36463 +#: guix-git/doc/guix.texi:36953 msgid "This, as you can see, is a fairly sophisticated way to say hello. @xref{Service Convenience,,, shepherd, The GNU Shepherd Manual}, for more info on actions." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36465 +#: guix-git/doc/guix.texi:36955 #, no-wrap msgid "{Scheme Variable} shepherd-root-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36467 +#: guix-git/doc/guix.texi:36957 msgid "The service type for the Shepherd ``root service''---i.e., PID@tie{}1." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36472 +#: guix-git/doc/guix.texi:36962 msgid "This is the service type that extensions target when they want to create shepherd services (@pxref{Service Types and Services}, for an example). Each extension must pass a list of @code{}. Its value must be a @code{shepherd-configuration}, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36474 +#: guix-git/doc/guix.texi:36964 #, no-wrap msgid "{Data Type} shepherd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36476 guix-git/doc/guix.texi:37463 +#: guix-git/doc/guix.texi:36966 guix-git/doc/guix.texi:37959 msgid "This data type represents the Shepherd's configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36478 guix-git/doc/guix.texi:37465 +#: guix-git/doc/guix.texi:36968 guix-git/doc/guix.texi:37961 #, no-wrap msgid "shepherd (default: @code{shepherd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36480 guix-git/doc/guix.texi:37467 +#: guix-git/doc/guix.texi:36970 guix-git/doc/guix.texi:37963 msgid "The Shepherd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36481 guix-git/doc/guix.texi:37471 +#: guix-git/doc/guix.texi:36971 guix-git/doc/guix.texi:37967 #, no-wrap msgid "services (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36485 guix-git/doc/guix.texi:37475 +#: guix-git/doc/guix.texi:36975 guix-git/doc/guix.texi:37971 msgid "A list of @code{} to start. You should probably use the service extension mechanism instead (@pxref{Shepherd Services})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36490 +#: guix-git/doc/guix.texi:36980 msgid "The following example specifies the Shepherd package for the operating system:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36505 +#: guix-git/doc/guix.texi:36995 #, no-wrap msgid "" "(operating-system\n" @@ -64566,50 +65442,50 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36507 +#: guix-git/doc/guix.texi:36997 #, no-wrap msgid "{Scheme Variable} %shepherd-root-service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36509 +#: guix-git/doc/guix.texi:36999 msgid "This service represents PID@tie{}1." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36513 +#: guix-git/doc/guix.texi:37003 #, no-wrap msgid "complex configurations" msgstr "moniosaiset asetukset" #. type: Plain text -#: guix-git/doc/guix.texi:36518 +#: guix-git/doc/guix.texi:37008 msgid "Some programs might have rather complex configuration files or formats, and to make it easier to create Scheme bindings for these configuration files, you can use the utilities defined in the @code{(gnu services configuration)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36526 +#: guix-git/doc/guix.texi:37016 msgid "The main utility is the @code{define-configuration} macro, which you will use to define a Scheme record type (@pxref{Record Overview,,, guile, GNU Guile Reference Manual}). The Scheme record will be serialized to a configuration file by using @dfn{serializers}, which are procedures that take some kind of Scheme value and returns a G-expression (@pxref{G-Expressions}), which should, once serialized to the disk, return a string. More details are listed below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36527 +#: guix-git/doc/guix.texi:37017 #, no-wrap msgid "{Scheme Syntax} define-configuration @var{name} @var{clause1} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36531 +#: guix-git/doc/guix.texi:37021 msgid "@var{clause2} ... Create a record type named @code{@var{name}} that contains the fields found in the clauses." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36533 +#: guix-git/doc/guix.texi:37023 msgid "A clause can have one of the following forms:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36538 +#: guix-git/doc/guix.texi:37028 #, no-wrap msgid "" "(@var{field-name}\n" @@ -64619,7 +65495,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36543 +#: guix-git/doc/guix.texi:37033 #, no-wrap msgid "" "(@var{field-name}\n" @@ -64630,7 +65506,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36547 +#: guix-git/doc/guix.texi:37037 #, no-wrap msgid "" "(@var{field-name}\n" @@ -64640,7 +65516,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36552 +#: guix-git/doc/guix.texi:37042 #, no-wrap msgid "" "(@var{field-name}\n" @@ -64650,37 +65526,37 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36556 +#: guix-git/doc/guix.texi:37046 msgid "@var{field-name} is an identifier that denotes the name of the field in the generated record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36564 +#: guix-git/doc/guix.texi:37054 msgid "@var{type} is the type of the value corresponding to @var{field-name}; since Guile is untyped, a predicate procedure---@code{@var{type}?}---will be called on the value corresponding to the field to ensure that the value is of the correct type. This means that if say, @var{type} is @code{package}, then a procedure named @code{package?} will be applied on the value to make sure that it is indeed a @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36568 +#: guix-git/doc/guix.texi:37058 msgid "@var{default-value} is the default value corresponding to the field; if none is specified, the user is forced to provide a value when creating an object of the record type." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36573 +#: guix-git/doc/guix.texi:37063 msgid "@var{documentation} is a string formatted with Texinfo syntax which should provide a description of what setting this field does." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36580 +#: guix-git/doc/guix.texi:37070 msgid "@var{serializer} is the name of a procedure which takes two arguments, the first is the name of the field, and the second is the value corresponding to the field. The procedure should return a string or G-expression (@pxref{G-Expressions}) that represents the content that will be serialized to the configuration file. If none is specified, a procedure of the name @code{serialize-@var{type}} will be used." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36582 +#: guix-git/doc/guix.texi:37072 msgid "A simple serializer procedure could look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36587 +#: guix-git/doc/guix.texi:37077 #, no-wrap msgid "" "(define (serialize-boolean field-name value)\n" @@ -64689,12 +65565,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36598 +#: guix-git/doc/guix.texi:37088 msgid "In some cases multiple different configuration records might be defined in the same file, but their serializers for the same type might have to be different, because they have different configuration formats. For example, the @code{serialize-boolean} procedure for the Getmail service would have to be different for the one for the Transmission service. To make it easier to deal with this situation, one can specify a serializer prefix by using the @code{prefix} literal in the @code{define-configuration} form. This means that one doesn't have to manually specify a custom @var{serializer} for every field." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36602 +#: guix-git/doc/guix.texi:37092 #, no-wrap msgid "" "(define (foo-serialize-string field-name value)\n" @@ -64703,7 +65579,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36605 +#: guix-git/doc/guix.texi:37095 #, no-wrap msgid "" "(define (bar-serialize-string field-name value)\n" @@ -64712,7 +65588,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36611 +#: guix-git/doc/guix.texi:37101 #, no-wrap msgid "" "(define-configuration foo-configuration\n" @@ -64724,7 +65600,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36617 +#: guix-git/doc/guix.texi:37107 #, no-wrap msgid "" "(define-configuration bar-configuration\n" @@ -64735,12 +65611,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36623 +#: guix-git/doc/guix.texi:37113 msgid "However, in some cases you might not want to serialize any of the values of the record, to do this, you can use the @code{no-serialization} literal. There is also the @code{define-configuration/no-serialization} macro which is a shorthand of this." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36631 +#: guix-git/doc/guix.texi:37121 #, no-wrap msgid "" ";; Nothing will be serialized to disk.\n" @@ -64753,7 +65629,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36637 +#: guix-git/doc/guix.texi:37127 #, no-wrap msgid "" ";; The same thing as above.\n" @@ -64764,23 +65640,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36640 +#: guix-git/doc/guix.texi:37130 #, no-wrap msgid "{Scheme Syntax} define-maybe @var{type}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36645 +#: guix-git/doc/guix.texi:37135 msgid "Sometimes a field should not be serialized if the user doesn’t specify a value. To achieve this, you can use the @code{define-maybe} macro to define a ``maybe type''; if the value of a maybe type is set to the @code{disabled}, it will not be serialized." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36652 +#: guix-git/doc/guix.texi:37142 msgid "When defining a ``maybe type'', the corresponding serializer for the regular type will be used by default. For example, a field of type @code{maybe-string} will be serialized using the @code{serialize-string} procedure by default, you can of course change this by specifying a custom serializer procedure. Likewise, the type of the value would have to be a string, unless it is set to the @code{disabled} symbol." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36655 +#: guix-git/doc/guix.texi:37145 #, no-wrap msgid "" "(define-maybe string)\n" @@ -64788,7 +65664,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36658 +#: guix-git/doc/guix.texi:37148 #, no-wrap msgid "" "(define (serialize-string field-name value)\n" @@ -64797,7 +65673,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36665 +#: guix-git/doc/guix.texi:37155 #, no-wrap msgid "" "(define-configuration baz-configuration\n" @@ -64809,12 +65685,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36669 +#: guix-git/doc/guix.texi:37159 msgid "Like with @code{define-configuration}, one can set a prefix for the serializer name by using the @code{prefix} literal." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36673 +#: guix-git/doc/guix.texi:37163 #, no-wrap msgid "" "(define-maybe integer\n" @@ -64823,7 +65699,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36676 +#: guix-git/doc/guix.texi:37166 #, no-wrap msgid "" "(define (baz-serialize-interger field-name value)\n" @@ -64831,12 +65707,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36683 +#: guix-git/doc/guix.texi:37173 msgid "There is also the @code{no-serialization} literal, which when set means that no serializer will be defined for the ``maybe type'', regardless of its value is @code{disabled} or not. @code{define-maybe/no-serialization} is a shorthand for specifying the @code{no-serialization} literal." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36686 +#: guix-git/doc/guix.texi:37176 #, no-wrap msgid "" "(define-maybe/no-serialization symbol)\n" @@ -64844,7 +65720,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36691 +#: guix-git/doc/guix.texi:37181 #, no-wrap msgid "" "(define-configuration/no-serialization test-configuration\n" @@ -64854,66 +65730,66 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36694 +#: guix-git/doc/guix.texi:37184 #, no-wrap msgid "{Scheme Procedure} serialize-configuration @var{configuration} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36700 +#: guix-git/doc/guix.texi:37190 msgid "@var{fields} Return a G-expression that contains the values corresponding to the @var{fields} of @var{configuration}, a record that has been generated by @code{define-configuration}. The G-expression can then be serialized to disk by using something like @code{mixed-text-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36702 +#: guix-git/doc/guix.texi:37192 #, no-wrap msgid "{Scheme Procedure} validate-configuration @var{configuration}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36706 +#: guix-git/doc/guix.texi:37196 msgid "@var{fields} Type-check @var{fields}, a list of field names of @var{configuration}, a configuration record created by @code{define-configuration}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36708 +#: guix-git/doc/guix.texi:37198 #, no-wrap msgid "{Scheme Procedure} empty-serializer @var{field-name} @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36711 +#: guix-git/doc/guix.texi:37201 msgid "A serializer that just returns an empty string. The @code{serialize-package} procedure is an alias for this." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36716 +#: guix-git/doc/guix.texi:37206 msgid "Once you have defined a configuration record, you will most likely also want to document it so that other people know to use it. To help with that, there are two procedures, both of which are documented below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36717 +#: guix-git/doc/guix.texi:37207 #, no-wrap msgid "{Scheme Procedure} generate-documentation @var{documentation} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36724 +#: guix-git/doc/guix.texi:37214 msgid "@var{documentation-name} Generate a Texinfo fragment from the docstrings in @var{documentation}, a list of @code{(@var{label} @var{fields} @var{sub-documentation} ...)}. @var{label} should be a symbol and should be the name of the configuration record. @var{fields} should be a list of all the fields available for the configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36729 +#: guix-git/doc/guix.texi:37219 msgid "@var{sub-documentation} is a @code{(@var{field-name} @var{configuration-name})} tuple. @var{field-name} is the name of the field which takes another configuration record as its value, and @var{configuration-name} is the name of that configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36736 +#: guix-git/doc/guix.texi:37226 msgid "@var{sub-documentation} is only needed if there are nested configuration records. For example, the @code{getmail-configuration} record (@pxref{Mail Services}) accepts a @code{getmail-configuration-file} record in one of its @code{rcfile} field, therefore documentation for @code{getmail-configuration-file} is nested in @code{getmail-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36743 +#: guix-git/doc/guix.texi:37233 #, no-wrap msgid "" "(generate-documentation\n" @@ -64924,33 +65800,33 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36747 +#: guix-git/doc/guix.texi:37237 msgid "@var{documentation-name} should be a symbol and should be the name of the configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36750 +#: guix-git/doc/guix.texi:37240 #, no-wrap msgid "{Scheme Procedure} configuration->documentation" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36757 +#: guix-git/doc/guix.texi:37247 msgid "@var{configuration-symbol} Take @var{configuration-symbol}, the symbol corresponding to the name used when defining a configuration record with @code{define-configuration}, and print the Texinfo documentation of its fields. This is useful if there aren’t any nested configuration records since it only prints the documentation for the top-level fields." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36765 +#: guix-git/doc/guix.texi:37255 msgid "As of right now, there is no automated way to generate documentation for configuration records and put them in the manual. Instead, every time you make a change to the docstrings of a configuration record, you have to manually call @code{generate-documentation} or @code{configuration->documentation}, and paste the output into the @file{doc/guix.texi} file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36769 +#: guix-git/doc/guix.texi:37259 msgid "Below is an example of a record type created using @code{define-configuration} and friends." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36776 +#: guix-git/doc/guix.texi:37266 #, no-wrap msgid "" "(use-modules (gnu services)\n" @@ -64962,7 +65838,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36784 +#: guix-git/doc/guix.texi:37274 #, no-wrap msgid "" ";; Turn field names, which are Scheme symbols into strings\n" @@ -64976,7 +65852,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36787 +#: guix-git/doc/guix.texi:37277 #, no-wrap msgid "" "(define (serialize-string field-name value)\n" @@ -64985,7 +65861,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36790 +#: guix-git/doc/guix.texi:37280 #, no-wrap msgid "" "(define (serialize-integer field-name value)\n" @@ -64994,7 +65870,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36793 +#: guix-git/doc/guix.texi:37283 #, no-wrap msgid "" "(define (serialize-boolean field-name value)\n" @@ -65003,7 +65879,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36796 +#: guix-git/doc/guix.texi:37286 #, no-wrap msgid "" "(define (serialize-contact-name field-name value)\n" @@ -65012,7 +65888,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36799 +#: guix-git/doc/guix.texi:37289 #, no-wrap msgid "" "(define (list-of-contact-configurations? lst)\n" @@ -65021,7 +65897,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36804 +#: guix-git/doc/guix.texi:37294 #, no-wrap msgid "" "(define (serialize-list-of-contact-configurations field-name value)\n" @@ -65032,7 +65908,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36811 +#: guix-git/doc/guix.texi:37301 #, no-wrap msgid "" "(define (serialize-contacts-list-configuration configuration)\n" @@ -65045,7 +65921,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36814 +#: guix-git/doc/guix.texi:37304 #, no-wrap msgid "" "(define-maybe integer)\n" @@ -65054,7 +65930,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36829 +#: guix-git/doc/guix.texi:37319 #, no-wrap msgid "" "(define-configuration contact-configuration\n" @@ -65075,7 +65951,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36841 +#: guix-git/doc/guix.texi:37331 #, no-wrap msgid "" "(define-configuration contacts-list-configuration\n" @@ -65092,12 +65968,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36844 +#: guix-git/doc/guix.texi:37334 msgid "A contacts list configuration could then be created like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36860 +#: guix-git/doc/guix.texi:37350 #, no-wrap msgid "" "(define my-contacts\n" @@ -65117,12 +65993,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36864 +#: guix-git/doc/guix.texi:37354 msgid "After serializing the configuration to disk, the resulting file would look like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36869 +#: guix-git/doc/guix.texi:37359 #, no-wrap msgid "" "[owner]\n" @@ -65132,7 +66008,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36874 +#: guix-git/doc/guix.texi:37364 #, no-wrap msgid "" "[Bob]\n" @@ -65143,7 +66019,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36878 +#: guix-git/doc/guix.texi:37368 #, no-wrap msgid "" "[Charlie]\n" @@ -65152,202 +66028,202 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36883 +#: guix-git/doc/guix.texi:37373 #, no-wrap msgid "home configuration" msgstr "kotiasetukset" #. type: Plain text -#: guix-git/doc/guix.texi:36895 +#: guix-git/doc/guix.texi:37385 msgid "Guix supports declarative configuration of @dfn{home environments} by utilizing the configuration mechanism described in the previous chapter (@pxref{Defining Services}), but for user's dotfiles and packages. It works both on Guix System and foreign distros and allows users to declare all the packages and services that should be installed and configured for the user. Once a user has written a file containing @code{home-environment} record, such a configuration can be @dfn{instantiated} by an unprivileged user with the @command{guix home} command (@pxref{Invoking guix home})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36912 +#: guix-git/doc/guix.texi:37402 msgid "The user's home environment usually consists of three basic parts: software, configuration, and state. Software in mainstream distros are usually installed system-wide, but with GNU Guix most software packages can be installed on a per-user basis without needing root privileges, and are thus considered part of the user’s @dfn{home environment}. Packages on their own not very useful in many cases, because often they require some additional configuration, usually config files that reside in @env{XDG_CONFIG_HOME} (@file{~/.config} by default) or other directories. Everything else can be considered state, like media files, application databases, and logs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36915 +#: guix-git/doc/guix.texi:37405 msgid "Using Guix for managing home environments provides a number of advantages:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36918 +#: guix-git/doc/guix.texi:37408 #, no-wrap msgid "All software can be configured in one language (Guile Scheme)," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36921 +#: guix-git/doc/guix.texi:37411 msgid "this gives users the ability to share values between configurations of different programs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36922 +#: guix-git/doc/guix.texi:37412 #, no-wrap msgid "A well-defined home environment is self-contained and can be" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36925 +#: guix-git/doc/guix.texi:37415 msgid "created in a declarative and reproducible way---there is no need to grab external binaries or manually edit some configuration file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36926 +#: guix-git/doc/guix.texi:37416 #, no-wrap msgid "After every @command{guix home reconfigure} invocation, a new home" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36930 +#: guix-git/doc/guix.texi:37420 msgid "environment generation will be created. This means that users can rollback to a previous home environment generation so they don’t have to worry about breaking their configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36931 +#: guix-git/doc/guix.texi:37421 #, no-wrap msgid "It is possible to manage stateful data with Guix Home, this" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36936 +#: guix-git/doc/guix.texi:37426 msgid "includes the ability to automatically clone Git repositories on the initial setup of the machine, and periodically running commands like @command{rsync} to sync data with another host. This functionality is still in an experimental stage, though." msgstr "" #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:36946 -#: guix-git/doc/guix.texi:36947 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37436 +#: guix-git/doc/guix.texi:37437 #, no-wrap msgid "Declaring the Home Environment" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 msgid "Customizing your Home." msgstr "" #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:37014 -#: guix-git/doc/guix.texi:37015 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37504 +#: guix-git/doc/guix.texi:37505 #, no-wrap msgid "Configuring the Shell" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 msgid "Enabling home environment." msgstr "" #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:37061 -#: guix-git/doc/guix.texi:37062 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37551 +#: guix-git/doc/guix.texi:37552 #, no-wrap msgid "Home Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 msgid "Specifying home services." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 msgid "Instantiating a home configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36953 +#: guix-git/doc/guix.texi:37443 msgid "The home environment is configured by providing a @code{home-environment} declaration in a file that can be passed to the @command{guix home} command (@pxref{Invoking guix home}). The easiest way to get started is by generating an initial configuration with @command{guix home import}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36956 +#: guix-git/doc/guix.texi:37446 #, no-wrap msgid "guix home import ~/src/guix-config\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36964 +#: guix-git/doc/guix.texi:37454 msgid "The @command{guix home import} command reads some of the ``dot files'' such as @file{~/.bashrc} found in your home directory and copies them to the given directory, @file{~/src/guix-config} in this case; it also reads the contents of your profile, @file{~/.guix-profile}, and, based on that, it populates @file{~/src/guix-config/home-configuration.scm} with a Home configuration that resembles your current configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36970 +#: guix-git/doc/guix.texi:37460 msgid "A simple setup can include Bash and a custom text configuration, like in the example below. Don't be afraid to declare home environment parts, which overlaps with your current dot files: before installing any configuration files, Guix Home will back up existing config files to a separate place in the home directory." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36976 +#: guix-git/doc/guix.texi:37466 msgid "It is highly recommended that you manage your shell or shells with Guix Home, because it will make sure that all the necessary scripts are sourced by the shell configuration file. Otherwise you will need to do it manually. (@pxref{Configuring the Shell})." msgstr "" #. type: findex -#: guix-git/doc/guix.texi:36978 +#: guix-git/doc/guix.texi:37468 #, no-wrap msgid "home-environment" msgstr "" #. type: include -#: guix-git/doc/guix.texi:36980 +#: guix-git/doc/guix.texi:37470 #, no-wrap msgid "he-config-bare-bones.scm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36987 +#: guix-git/doc/guix.texi:37477 msgid "The @code{packages} field should be self-explanatory, it will install the list of packages into the user's profile. The most important field is @code{services}, it contains a list of @dfn{home services}, which are the basic building blocks of a home environment." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36995 +#: guix-git/doc/guix.texi:37485 msgid "There is no daemon (at least not necessarily) related to a home service, a home service is just an element that is used to declare part of home environment and extend other parts of it. The extension mechanism discussed in the previous chapter (@pxref{Defining Services}) should not be confused with Shepherd services (@pxref{Shepherd Services}). Using this extension mechanism and some Scheme code that glues things together gives the user the freedom to declare their own, very custom, home environments." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36998 +#: guix-git/doc/guix.texi:37488 msgid "Once you have a configuration file that suits your needs, you can reconfigure your home by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37001 +#: guix-git/doc/guix.texi:37491 #, no-wrap msgid "guix home reconfigure config.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37005 +#: guix-git/doc/guix.texi:37495 msgid "This ``builds'' your home environment and creates @file{~/.guix-home} pointing to it. Voilà!" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37012 +#: guix-git/doc/guix.texi:37502 msgid "Make sure the operating system has elogind, systemd, or a similar mechanism to create the XDG run-time directory and has the @env{XDG_RUNTIME_DIR} variable set. Failing that, the @file{on-first-login} script will not execute anything, and processes like user Shepherd and its descendants will not start." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37018 +#: guix-git/doc/guix.texi:37508 msgid "This section is safe to skip if your shell or shells are managed by Guix Home. Otherwise, read it carefully." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37025 +#: guix-git/doc/guix.texi:37515 msgid "There are a few scripts that must be evaluated by a login shell to activate the home environment. The shell startup files only read by login shells often have @code{profile} suffix. For more information about login shells see @ref{Invoking Bash,,, bash, The GNU Bash Reference Manual} and see @ref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37032 +#: guix-git/doc/guix.texi:37522 msgid "The first script that needs to be sourced is @file{setup-environment}, which sets all the necessary environment variables (including variables declared by the user) and the second one is @file{on-first-login}, which starts Shepherd for the current user and performs actions declared by other home services that extends @code{home-run-on-first-login-service-type}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37035 +#: guix-git/doc/guix.texi:37525 msgid "Guix Home will always create @file{~/.profile}, which contains the following lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37040 +#: guix-git/doc/guix.texi:37530 #, no-wrap msgid "" "HOME_ENVIRONMENT=$HOME/.guix-home\n" @@ -65356,107 +66232,107 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37050 +#: guix-git/doc/guix.texi:37540 msgid "This makes POSIX compliant login shells activate the home environment. However, in most cases this file won't be read by most modern shells, because they are run in non POSIX mode by default and have their own @file{*profile} startup files. For example Bash will prefer @file{~/.bash_profile} in case it exists and only if it doesn't will it fallback to @file{~/.profile}. Zsh (if no additional options are specified) will ignore @file{~/.profile}, even if @file{~/.zprofile} doesn't exist." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37055 +#: guix-git/doc/guix.texi:37545 msgid "To make your shell respect @file{~/.profile}, add @code{. ~/.profile} or @code{source ~/profile} to the startup file for the login shell. In case of Bash, it is @file{~/.bash_profile}, and in case of Zsh, it is @file{~/.zprofile}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37059 +#: guix-git/doc/guix.texi:37549 msgid "This step is only required if your shell is NOT managed by Guix Home. Otherwise, everything will be done automatically." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37063 +#: guix-git/doc/guix.texi:37553 #, no-wrap msgid "home services" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37072 +#: guix-git/doc/guix.texi:37562 msgid "A @dfn{home service} is not necessarily something that has a daemon and is managed by Shepherd (@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}), in most cases it doesn't. It's a simple building block of the home environment, often declaring a set of packages to be installed in the home environment profile, a set of config files to be symlinked into @env{XDG_CONFIG_HOME} (@file{~/.config} by default), and environment variables to be set by a login shell." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37080 +#: guix-git/doc/guix.texi:37570 msgid "There is a service extension mechanism (@pxref{Service Composition}) which allows home services to extend other home services and utilize capabilities they provide; for example: declare mcron jobs (@pxref{Top,,, mcron, GNU@tie{}Mcron}) by extending @ref{Mcron Home Service}; declare daemons by extending @ref{Shepherd Home Service}; add commands, which will be invoked on by the Bash by extending @ref{Shells Home Services, @code{home-bash-service-type}}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37091 -msgid "A good way to discover avaliable home services is using the @command{guix home search} command (@pxref{Invoking guix home}). After the required home services are found, include its module with the @code{use-modules} form (@pxref{use-modules,, Using Guile Modules, guile, The GNU Guile Reference Manual}), or the @code{#:use-modules} directive (@pxref{define-module,, Creating Guile Modules, guile, The GNU Guile Reference Manual}) and declare a home service using the @code{service} function, or extend a service type by declaring a new service with the @code{simple-service} procedure from @code{(gnu services)}." +#: guix-git/doc/guix.texi:37581 +msgid "A good way to discover available home services is using the @command{guix home search} command (@pxref{Invoking guix home}). After the required home services are found, include its module with the @code{use-modules} form (@pxref{use-modules,, Using Guile Modules, guile, The GNU Guile Reference Manual}), or the @code{#:use-modules} directive (@pxref{define-module,, Creating Guile Modules, guile, The GNU Guile Reference Manual}) and declare a home service using the @code{service} function, or extend a service type by declaring a new service with the @code{simple-service} procedure from @code{(gnu services)}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:37097 guix-git/doc/guix.texi:37100 -#: guix-git/doc/guix.texi:37101 +#: guix-git/doc/guix.texi:37587 guix-git/doc/guix.texi:37590 +#: guix-git/doc/guix.texi:37591 #, no-wrap msgid "Essential Home Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Environment variables, packages, on-* scripts." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Shells: Shells Home Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "POSIX shells, Bash, Zsh." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Mcron: Mcron Home Service" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Scheduled User's Job Execution." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Shepherd: Shepherd Home Service" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Managing User's Daemons." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37106 +#: guix-git/doc/guix.texi:37596 msgid "There are a few essential home services defined in @code{(gnu services)}, they are mostly for internal use and are required to build a home environment, but some of them will be useful for the end user." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37107 +#: guix-git/doc/guix.texi:37597 #, no-wrap msgid "environment variables" msgstr "ympäristömuuttujat" #. type: defvr -#: guix-git/doc/guix.texi:37109 +#: guix-git/doc/guix.texi:37599 #, no-wrap msgid "{Scheme Variable} home-environment-variables-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37114 +#: guix-git/doc/guix.texi:37604 msgid "The service of this type will be instantiated by every home environment automatically by default, there is no need to define it, but someone may want to extend it with a list of pairs to set some environment variables." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37118 +#: guix-git/doc/guix.texi:37608 #, no-wrap msgid "" "(list (\"ENV_VAR1\" . \"value1\")\n" @@ -65464,12 +66340,12 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37123 +#: guix-git/doc/guix.texi:37613 msgid "The easiest way to extend a service type, without defining new service type is to use the @code{simple-service} helper from @code{(gnu services)}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37131 +#: guix-git/doc/guix.texi:37621 #, no-wrap msgid "" "(simple-service 'some-useful-env-vars-service\n" @@ -65481,12 +66357,12 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37136 +#: guix-git/doc/guix.texi:37626 msgid "If you include such a service in you home environment definition, it will add the following content to the @file{setup-environment} script (which is expected to be sourced by the login shell):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37141 +#: guix-git/doc/guix.texi:37631 #, no-wrap msgid "" "export LESSHISTFILE=$XDG_CACHE_HOME/.lesshst\n" @@ -65495,595 +66371,577 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37148 +#: guix-git/doc/guix.texi:37638 msgid "Make sure that module @code{(gnu packages shells)} is imported with @code{use-modules} or any other way, this namespace contains the definition of the @code{zsh} packages, which is used in the example above." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37161 +#: guix-git/doc/guix.texi:37651 msgid "The association list (@pxref{Association Lists, alists, Association Lists, guile, The GNU Guile Reference manual}) is a data structure containing key-value pairs, for @code{home-environment-variables-service-type} the key is always a string, the value can be a string, string-valued gexp (@pxref{G-Expressions}), file-like object (@pxref{G-Expressions, file-like object}) or boolean. For gexps, the variable will be set to the value of the gexp; for file-like objects, it will be set to the path of the file in the store (@pxref{The Store}); for @code{#t}, it will export the variable without any value; and for @code{#f}, it will omit variable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37164 +#: guix-git/doc/guix.texi:37654 #, no-wrap msgid "{Scheme Variable} home-profile-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37170 -msgid "The service of this type will be instantiated by every home environment automatically, there is no need to define it, but you may want to extend it with a list of packages if you want to install additional packages into your profile. Other services, which need to make some programs avaliable to the user will also extend this service type." +#: guix-git/doc/guix.texi:37660 +msgid "The service of this type will be instantiated by every home environment automatically, there is no need to define it, but you may want to extend it with a list of packages if you want to install additional packages into your profile. Other services, which need to make some programs available to the user will also extend this service type." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37172 +#: guix-git/doc/guix.texi:37662 msgid "The extension value is just a list of packages:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37175 +#: guix-git/doc/guix.texi:37665 #, no-wrap msgid "(list htop vim emacs)\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37185 +#: guix-git/doc/guix.texi:37675 msgid "The same approach as @code{simple-service} (@pxref{Service Reference, simple-service}) for @code{home-environment-variables-service-type} can be used here, too. Make sure that modules containing the specified packages are imported with @code{use-modules}. To find a package or information about its module use @command{guix search} (@pxref{Invoking guix package}). Alternatively, @code{specification->package} can be used to get the package record from string without importing related module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37189 +#: guix-git/doc/guix.texi:37679 msgid "There are few more essential services, but users are not expected to extend them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37190 +#: guix-git/doc/guix.texi:37680 #, no-wrap msgid "{Scheme Variable} home-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37195 +#: guix-git/doc/guix.texi:37685 msgid "The root of home services DAG, it generates a folder, which later will be symlinked to @file{~/.guix-home}, it contains configurations, profile with binaries and libraries, and some necessary scripts to glue things together." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37197 +#: guix-git/doc/guix.texi:37687 #, no-wrap msgid "{Scheme Variable} home-run-on-first-login-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37202 +#: guix-git/doc/guix.texi:37692 msgid "The service of this type generates a Guile script, which is expected to be executed by the login shell. It is only executed if the special flag file inside @env{XDG_RUNTIME_DIR} hasn't been created, this prevents redundant executions of the script if multiple login shells are spawned." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37208 +#: guix-git/doc/guix.texi:37698 msgid "It can be extended with a gexp. However, to autostart an application, users @emph{should not} use this service, in most cases it's better to extend @code{home-shepherd-service-type} with a Shepherd service (@pxref{Shepherd Services}), or extend the shell's startup file with the required command using the appropriate service type." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37210 +#: guix-git/doc/guix.texi:37700 #, no-wrap msgid "{Scheme Variable} home-activation-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37214 +#: guix-git/doc/guix.texi:37704 msgid "The service of this type generates a guile script, which runs on every @command{guix home reconfigure} invocation or any other action, which leads to the activation of the home environment." msgstr "" #. type: node -#: guix-git/doc/guix.texi:37216 +#: guix-git/doc/guix.texi:37706 #, no-wrap msgid "Shells Home Services" msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:37217 +#: guix-git/doc/guix.texi:37707 #, no-wrap msgid "Shells" msgstr "Komentotulkit" #. type: cindex -#: guix-git/doc/guix.texi:37219 guix-git/doc/guix.texi:37500 +#: guix-git/doc/guix.texi:37709 guix-git/doc/guix.texi:37996 #, no-wrap msgid "shell" msgstr "komentotulkki" #. type: cindex -#: guix-git/doc/guix.texi:37220 +#: guix-git/doc/guix.texi:37710 #, no-wrap msgid "login shell" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37221 +#: guix-git/doc/guix.texi:37711 #, no-wrap msgid "interactive shell" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37222 guix-git/doc/guix.texi:37502 +#: guix-git/doc/guix.texi:37712 guix-git/doc/guix.texi:37998 #, no-wrap msgid "bash" msgstr "bash" #. type: cindex -#: guix-git/doc/guix.texi:37223 guix-git/doc/guix.texi:37503 +#: guix-git/doc/guix.texi:37713 guix-git/doc/guix.texi:37999 #, no-wrap msgid "zsh" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37229 +#: guix-git/doc/guix.texi:37719 msgid "Shells play a quite important role in the environment initialization process, you can configure them manually as described in section @ref{Configuring the Shell}, but the recommended way is to use home services listed below. It's both easier and more reliable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37239 +#: guix-git/doc/guix.texi:37729 msgid "Each home environment instantiates @code{home-shell-profile-service-type}, which creates a @file{~/.profile} startup file for all POSIX-compatible shells. This file contains all the necessary steps to properly initialize the environment, but many modern shells like Bash or Zsh prefer their own startup files, that's why the respective home services (@code{home-bash-service-type} and @code{home-zsh-service-type}) ensure that @file{~/.profile} is sourced by @file{~/.bash_profile} and @file{~/.zprofile}, respectively." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:37240 +#: guix-git/doc/guix.texi:37730 #, no-wrap msgid "Shell Profile Service" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37242 +#: guix-git/doc/guix.texi:37732 #, no-wrap msgid "{Data Type} home-shell-profile-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37244 +#: guix-git/doc/guix.texi:37734 msgid "Available @code{home-shell-profile-configuration} fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37246 +#: guix-git/doc/guix.texi:37736 #, no-wrap msgid "@code{profile} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37256 -msgid "@code{home-shell-profile} is instantiated automatically by @code{home-environment}, DO NOT create this service manually, it can only be extended. @code{profile} is a list of file-like objects, which will go to @file{~/.profile}. By default @file{~/.profile} contains the initialization code, which have to be evaluated by login shell to make home-environment's profile avaliable to the user, but other commands can be added to the file if it is really necessary. In most cases shell's configuration files are preferred places for user's customizations. Extend home-shell-profile service only if you really know what you do." +#: guix-git/doc/guix.texi:37746 +msgid "@code{home-shell-profile} is instantiated automatically by @code{home-environment}, DO NOT create this service manually, it can only be extended. @code{profile} is a list of file-like objects, which will go to @file{~/.profile}. By default @file{~/.profile} contains the initialization code which must be evaluated by the login shell to make home-environment's profile available to the user, but other commands can be added to the file if it is really necessary. In most cases shell's configuration files are preferred places for user's customizations. Extend home-shell-profile service only if you really know what you do." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:37261 +#: guix-git/doc/guix.texi:37751 #, no-wrap msgid "Bash Home Service" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:37264 +#: guix-git/doc/guix.texi:37754 msgid "home-bash-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37264 +#: guix-git/doc/guix.texi:37754 #, no-wrap msgid "{Data Type} home-bash-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37266 +#: guix-git/doc/guix.texi:37756 msgid "Available @code{home-bash-configuration} fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37268 +#: guix-git/doc/guix.texi:37758 #, no-wrap msgid "@code{package} (default: @code{bash}) (type: package)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37270 +#: guix-git/doc/guix.texi:37760 msgid "The Bash package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37271 +#: guix-git/doc/guix.texi:37761 #, no-wrap msgid "@code{guix-defaults?} (default: @code{#t}) (type: boolean)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37274 +#: guix-git/doc/guix.texi:37764 msgid "Add sane defaults like reading @file{/etc/bashrc} and coloring the output of @command{ls} to the end of the @file{.bashrc} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37275 guix-git/doc/guix.texi:37329 -#: guix-git/doc/guix.texi:37368 +#: guix-git/doc/guix.texi:37765 guix-git/doc/guix.texi:37819 +#: guix-git/doc/guix.texi:37858 #, no-wrap msgid "@code{environment-variables} (default: @code{()}) (type: alist)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37280 +#: guix-git/doc/guix.texi:37770 msgid "Association list of environment variables to set for the Bash session. The rules for the @code{home-environment-variables-service-type} apply here (@pxref{Essential Home Services}). The contents of this field will be added after the contents of the @code{bash-profile} field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37281 guix-git/doc/guix.texi:37334 +#: guix-git/doc/guix.texi:37771 guix-git/doc/guix.texi:37824 #, no-wrap msgid "@code{aliases} (default: @code{()}) (type: alist)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37286 +#: guix-git/doc/guix.texi:37776 msgid "Association list of aliases to set for the Bash session. The aliases will be defined after the contents of the @code{bashrc} field has been put in the @file{.bashrc} file. The alias will automatically be quoted, so something line this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37289 +#: guix-git/doc/guix.texi:37779 #, no-wrap msgid "'((\\\"ls\\\" . \\\"ls -alF\\\"))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37292 +#: guix-git/doc/guix.texi:37782 msgid "turns into" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37295 +#: guix-git/doc/guix.texi:37785 #, no-wrap msgid "alias ls=\\\"ls -alF\\\"\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37297 guix-git/doc/guix.texi:37338 +#: guix-git/doc/guix.texi:37787 guix-git/doc/guix.texi:37828 #, no-wrap msgid "@code{bash-profile} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37302 +#: guix-git/doc/guix.texi:37792 msgid "List of file-like objects, which will be added to @file{.bash_profile}. Used for executing user's commands at start of login shell (In most cases the shell started on tty just after login). @file{.bash_login} won't be ever read, because @file{.bash_profile} always present." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37303 guix-git/doc/guix.texi:37342 +#: guix-git/doc/guix.texi:37793 guix-git/doc/guix.texi:37832 #, no-wrap msgid "@code{bashrc} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37308 +#: guix-git/doc/guix.texi:37798 msgid "List of file-like objects, which will be added to @file{.bashrc}. Used for executing user's commands at start of interactive shell (The shell for interactive usage started by typing @code{bash} or by terminal app or any other program)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37309 guix-git/doc/guix.texi:37346 +#: guix-git/doc/guix.texi:37799 guix-git/doc/guix.texi:37836 #, no-wrap msgid "@code{bash-logout} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37314 +#: guix-git/doc/guix.texi:37804 msgid "List of file-like objects, which will be added to @file{.bash_logout}. Used for executing user's commands at the exit of login shell. It won't be read in some cases (if the shell terminates by exec'ing another process for example)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37324 +#: guix-git/doc/guix.texi:37814 msgid "You can extend the Bash service by using the @code{home-bash-extension} configuration record, whose fields most mirror that of @code{home-bash-configuration} (@pxref{home-bash-configuration}). The contents of the extensions will be added to the end of the corresponding Bash configuration files (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37325 +#: guix-git/doc/guix.texi:37815 #, no-wrap msgid "{Data Type} home-bash-extension" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37327 +#: guix-git/doc/guix.texi:37817 msgid "Available @code{home-bash-extension} fields are:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37333 +#: guix-git/doc/guix.texi:37823 msgid "Additional environment variables to set. These will be combined with the environment variables from other extensions and the base service to form one coherent block of environment variables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37337 +#: guix-git/doc/guix.texi:37827 msgid "Additional aliases to set. These will be combined with the aliases from other extensions and the base service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37341 +#: guix-git/doc/guix.texi:37831 msgid "Additional text blocks to add to @file{.bash_profile}, which will be combined with text blocks from other extensions and the base service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37345 +#: guix-git/doc/guix.texi:37835 msgid "Additional text blocks to add to @file{.bashrc}, which will be combined with text blocks from other extensions and the base service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37349 +#: guix-git/doc/guix.texi:37839 msgid "Additional text blocks to add to @file{.bash_logout}, which will be combined with text blocks from other extensions and the base service." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:37353 +#: guix-git/doc/guix.texi:37843 #, no-wrap msgid "Zsh Home Service" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37355 +#: guix-git/doc/guix.texi:37845 #, no-wrap msgid "{Data Type} home-zsh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37357 +#: guix-git/doc/guix.texi:37847 msgid "Available @code{home-zsh-configuration} fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37359 +#: guix-git/doc/guix.texi:37849 #, no-wrap msgid "@code{package} (default: @code{zsh}) (type: package)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37361 +#: guix-git/doc/guix.texi:37851 msgid "The Zsh package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37362 +#: guix-git/doc/guix.texi:37852 #, no-wrap msgid "@code{xdg-flavor?} (default: @code{#t}) (type: boolean)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37367 +#: guix-git/doc/guix.texi:37857 msgid "Place all the configs to @file{$XDG_CONFIG_HOME/zsh}. Makes @file{~/.zshenv} to set @env{ZDOTDIR} to @file{$XDG_CONFIG_HOME/zsh}. Shell startup process will continue with @file{$XDG_CONFIG_HOME/zsh/.zshenv}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37370 +#: guix-git/doc/guix.texi:37860 msgid "Association list of environment variables to set for the Zsh session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37371 +#: guix-git/doc/guix.texi:37861 #, no-wrap msgid "@code{zshenv} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37376 +#: guix-git/doc/guix.texi:37866 msgid "List of file-like objects, which will be added to @file{.zshenv}. Used for setting user's shell environment variables. Must not contain commands assuming the presence of tty or producing output. Will be read always. Will be read before any other file in @env{ZDOTDIR}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37377 +#: guix-git/doc/guix.texi:37867 #, no-wrap msgid "@code{zprofile} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37382 +#: guix-git/doc/guix.texi:37872 msgid "List of file-like objects, which will be added to @file{.zprofile}. Used for executing user's commands at start of login shell (In most cases the shell started on tty just after login). Will be read before @file{.zlogin}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37383 +#: guix-git/doc/guix.texi:37873 #, no-wrap msgid "@code{zshrc} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37388 +#: guix-git/doc/guix.texi:37878 msgid "List of file-like objects, which will be added to @file{.zshrc}. Used for executing user's commands at start of interactive shell (The shell for interactive usage started by typing @code{zsh} or by terminal app or any other program)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37389 +#: guix-git/doc/guix.texi:37879 #, no-wrap msgid "@code{zlogin} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37393 +#: guix-git/doc/guix.texi:37883 msgid "List of file-like objects, which will be added to @file{.zlogin}. Used for executing user's commands at the end of starting process of login shell." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37394 +#: guix-git/doc/guix.texi:37884 #, no-wrap msgid "@code{zlogout} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37399 +#: guix-git/doc/guix.texi:37889 msgid "List of file-like objects, which will be added to @file{.zlogout}. Used for executing user's commands at the exit of login shell. It won't be read in some cases (if the shell terminates by exec'ing another process for example)." msgstr "" #. type: node -#: guix-git/doc/guix.texi:37404 +#: guix-git/doc/guix.texi:37894 #, no-wrap msgid "Mcron Home Service" msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:37405 +#: guix-git/doc/guix.texi:37895 #, no-wrap msgid "Scheduled User's Job Execution" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37418 +#: guix-git/doc/guix.texi:37908 msgid "The @code{(gnu home services mcron)} module provides an interface to GNU@tie{}mcron, a daemon to run jobs at scheduled times (@pxref{Top,,, mcron, GNU@tie{}mcron}). The information about system's mcron is applicable here (@pxref{Scheduled Job Execution}), the only difference for home services is that they have to be declared in a @code{home-envirnoment} record instead of an @code{operating-system} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37419 +#: guix-git/doc/guix.texi:37909 #, no-wrap msgid "{Scheme Variable} home-mcron-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37423 +#: guix-git/doc/guix.texi:37913 msgid "This is the type of the @code{mcron} home service, whose value is an @code{home-mcron-configuration} object. It allows to manage scheduled tasks." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37430 +#: guix-git/doc/guix.texi:37920 #, no-wrap msgid "{Data Type} home-mcron-configuration" msgstr "" #. type: node -#: guix-git/doc/guix.texi:37444 +#: guix-git/doc/guix.texi:37934 #, no-wrap msgid "Shepherd Home Service" msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:37445 +#: guix-git/doc/guix.texi:37935 #, no-wrap -msgid "Managing User's Daemons" +msgid "Managing User Daemons" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:37937 +#, no-wrap +msgid "shepherd services, for users" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:37944 +msgid "The @code{(gnu home services shepherd)} module supports the definitions of per-user Shepherd services (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}). You extend @code{home-shepherd-service-type} with new services; Guix Home then takes care of starting the @code{shepherd} daemon for you when you log in, which in turns starts the services you asked for." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37449 +#: guix-git/doc/guix.texi:37945 #, no-wrap msgid "{Scheme Variable} home-shepherd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37454 +#: guix-git/doc/guix.texi:37950 msgid "The service type for the userland Shepherd, which allows one to manage long-running processes or one-shot tasks. User's Shepherd is not an init process (PID 1), but almost all other information described in (@pxref{Shepherd Services}) is applicable here too." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37459 +#: guix-git/doc/guix.texi:37955 msgid "This is the service type that extensions target when they want to create shepherd services (@pxref{Service Types and Services}, for an example). Each extension must pass a list of @code{}. Its value must be a @code{home-shepherd-configuration}, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37461 +#: guix-git/doc/guix.texi:37957 #, no-wrap msgid "{Data Type} home-shepherd-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37468 +#: guix-git/doc/guix.texi:37964 #, no-wrap msgid "auto-start? (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37470 +#: guix-git/doc/guix.texi:37966 msgid "Whether or not to start Shepherd on first login." msgstr "" #. type: section -#: guix-git/doc/guix.texi:37479 +#: guix-git/doc/guix.texi:37975 #, no-wrap msgid "Invoking @code{guix home}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37484 +#: guix-git/doc/guix.texi:37980 msgid "Once you have written a home environment declaration (@pxref{Declaring the Home Environment,,,,}, it can be @dfn{instantiated} using the @command{guix home} command. The synopsis is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37487 +#: guix-git/doc/guix.texi:37983 #, no-wrap msgid "guix home @var{options}@dots{} @var{action} @var{file}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37494 +#: guix-git/doc/guix.texi:37990 msgid "@var{file} must be the name of a file containing a @code{home-environment} declaration. @var{action} specifies how the home environment is instantiated, but there are few auxiliary actions which don't instantiate it. Currently the following values are supported:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37499 +#: guix-git/doc/guix.texi:37995 msgid "Display available home service type definitions that match the given regular expressions, sorted by relevance:" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37501 +#: guix-git/doc/guix.texi:37997 #, no-wrap msgid "shell-profile" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37513 +#: guix-git/doc/guix.texi:38008 #, no-wrap msgid "" "$ guix home search shell\n" "name: home-shell-profile\n" -"location: gnu/home/services/shells.scm:73:2\n" +"location: gnu/home/services/shells.scm:100:2\n" "extends: home-files\n" -"description: Create `~/.profile', which is used for environment initialization\n" -"+ of POSIX compatible login shells. Can be extended with a list of strings or\n" -"+ gexps.\n" +"description: Create `~/.profile', which is used for environment initialization of POSIX compliant login shells.\n" +"+ This service type can be extended with a list of file-like objects.\n" "relevance: 6\n" "\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37519 -#, no-wrap -msgid "" -"name: home-zsh-plugin-manager\n" -"location: gnu/home/services/shellutils.scm:28:2\n" -"extends: home-zsh home-profile\n" -"description: Install plugins in profile and configure Zsh to load them.\n" -"relevance: 1\n" -"\n" -msgstr "" - -#. type: example -#: guix-git/doc/guix.texi:37526 -#, no-wrap -msgid "" -"name: home-zsh-direnv\n" -"location: gnu/home/services/shellutils.scm:69:2\n" -"extends: home-profile home-zsh\n" -"description: Enables `direnv' for `zsh'. Adds hook to `.zshrc' and installs a\n" -"+ package in the profile.\n" -"relevance: 1\n" -"\n" -msgstr "" - -#. type: example -#: guix-git/doc/guix.texi:37535 +#: guix-git/doc/guix.texi:38014 #, no-wrap msgid "" -"name: home-zsh-autosuggestions\n" -"location: gnu/home/services/shellutils.scm:43:2\n" -"extends: home-zsh-plugin-manager home-zsh\n" -"description: Enables Fish-like fast/unobtrusive autosuggestions for `zsh' and\n" -"+ sets reasonable default values for some plugin's variables to improve perfomance\n" -"+ and adjust behavior: `(history completion)' is set for strategy, manual rebind\n" -"+ and async are enabled.\n" -"relevance: 1\n" +"name: home-fish\n" +"location: gnu/home/services/shells.scm:640:2\n" +"extends: home-files home-profile\n" +"description: Install and configure Fish, the friendly interactive shell.\n" +"relevance: 3\n" "\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37541 +#: guix-git/doc/guix.texi:38020 #, no-wrap msgid "" "name: home-zsh\n" -"location: gnu/home/services/shells.scm:236:2\n" +"location: gnu/home/services/shells.scm:290:2\n" "extends: home-files home-profile\n" "description: Install and configure Zsh.\n" "relevance: 1\n" @@ -66091,61 +66949,66 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37547 +#: guix-git/doc/guix.texi:38026 #, no-wrap msgid "" "name: home-bash\n" -"location: gnu/home/services/shells.scm:388:2\n" +"location: gnu/home/services/shells.scm:508:2\n" "extends: home-files home-profile\n" -"description: Install and configure Bash.\n" +"description: Install and configure GNU Bash.\n" "relevance: 1\n" "\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37563 -msgid "Build the home environment described in @var{file}, and switch to it. Switching means that the activation script will be evaluated and (in basic scenario) symlinks to configuration files generated from @code{home-environment} declaration will be created in @file{~}. If the file with the same path already exists in home folder it will be moved to @file{~/TIMESTAMP-guix-home-legacy-configs-backup}, where TIMESTAMP is a current UNIX epoch time." +#: guix-git/doc/guix.texi:38033 +msgid "As for @command{guix search}, the result is written in @code{recutils} format, which makes it easy to filter the output (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:38042 +msgid "Build the home environment described in @var{file}, and switch to it. Switching means that the activation script will be evaluated and (in basic scenario) symlinks to configuration files generated from @code{home-environment} declaration will be created in @file{~}. If the file with the same path already exists in home folder it will be moved to @file{~/@var{timestamp}-guix-home-legacy-configs-backup}, where @var{timestamp} is a current UNIX epoch time." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37568 +#: guix-git/doc/guix.texi:38047 msgid "It is highly recommended to run @command{guix pull} once before you run @command{guix home reconfigure} for the first time (@pxref{Invoking guix pull})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37575 -msgid "This effects all the configuration specified in @var{file}. The command starts Shepherd services specified in @var{file} that are not currently running; if a service is currently running, this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop X} or @code{herd restart X})." +#: guix-git/doc/guix.texi:38054 +msgid "This effects all the configuration specified in @var{file}. The command starts Shepherd services specified in @var{file} that are not currently running; if a service is currently running, this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop @var{service}} or @code{herd restart @var{service}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37581 +#: guix-git/doc/guix.texi:38060 msgid "This command creates a new generation whose number is one greater than the current generation (as reported by @command{guix home list-generations}). If that generation already exists, it will be overwritten. This behavior mirrors that of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37582 +#: guix-git/doc/guix.texi:38061 #, no-wrap msgid "provenance tracking, of the home environment" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37587 +#: guix-git/doc/guix.texi:38066 msgid "Upon completion, the new home is deployed under @file{~/.guix-home}. This directory contains @dfn{provenance meta-data}: the list of channels in use (@pxref{Channels}) and @var{file} itself, when available. You can view the provenance information by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37590 +#: guix-git/doc/guix.texi:38069 #, no-wrap msgid "guix home describe\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37596 +#: guix-git/doc/guix.texi:38075 msgid "This information is useful should you later want to inspect how this particular generation was built. In fact, assuming @var{file} is self-contained, you can later rebuild generation @var{n} of your home environment with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37602 +#: guix-git/doc/guix.texi:38081 #, no-wrap msgid "" "guix time-machine \\\n" @@ -66156,110 +67019,110 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37609 +#: guix-git/doc/guix.texi:38088 msgid "You can think of it as some sort of built-in version control! Your home is not just a binary artifact: @emph{it carries its own source}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37615 +#: guix-git/doc/guix.texi:38094 #, no-wrap msgid "home generations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37618 +#: guix-git/doc/guix.texi:38097 msgid "Switch to an existing home generation. This action atomically switches the home profile to the specified home generation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37622 +#: guix-git/doc/guix.texi:38101 msgid "The target generation can be specified explicitly by its generation number. For example, the following invocation would switch to home generation 7:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37625 +#: guix-git/doc/guix.texi:38104 #, no-wrap msgid "guix home switch-generation 7\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37636 +#: guix-git/doc/guix.texi:38115 #, no-wrap msgid "guix home switch-generation -- -1\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37645 +#: guix-git/doc/guix.texi:38124 msgid "Switch to the preceding home generation. This is the inverse of @command{reconfigure}, and it is exactly the same as invoking @command{switch-generation} with an argument of @code{-1}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37647 +#: guix-git/doc/guix.texi:38126 #, no-wrap msgid "deleting home generations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37652 +#: guix-git/doc/guix.texi:38131 msgid "Delete home generations, making them candidates for garbage collection (@pxref{Invoking guix gc}, for information on how to run the ``garbage collector'')." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37656 +#: guix-git/doc/guix.texi:38135 msgid "This works in the same way as @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). With no arguments, all home generations but the current one are deleted:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37659 +#: guix-git/doc/guix.texi:38138 #, no-wrap msgid "guix home delete-generations\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37663 +#: guix-git/doc/guix.texi:38142 msgid "You can also select the generations you want to delete. The example below deletes all the home generations that are more than two months old:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37666 +#: guix-git/doc/guix.texi:38145 #, no-wrap msgid "guix home delete-generations 2m\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37672 +#: guix-git/doc/guix.texi:38151 msgid "Build the derivation of the home environment, which includes all the configuration files and programs needed. This action does not actually install anything." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37676 +#: guix-git/doc/guix.texi:38155 msgid "Describe the current home generation: its file name, as well as provenance information when available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37682 +#: guix-git/doc/guix.texi:38161 msgid "List a summary of each generation of the home environment available on disk, in a human-readable way. This is similar to the @option{--list-generations} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:37690 +#: guix-git/doc/guix.texi:38169 #, no-wrap msgid "$ guix home list-generations 10d\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37692 +#: guix-git/doc/guix.texi:38171 #, no-wrap msgid "import" msgstr "tuo" #. type: table -#: guix-git/doc/guix.texi:37699 +#: guix-git/doc/guix.texi:38178 msgid "Generate a @dfn{home environment} from the packages in the default profile and configuration files found in the user's home directory. The configuration files will be copied to the specified directory, and a @file{home-configuration.scm} will be populated with the home environment. Note that not every home service that exists is supported (@pxref{Home Services})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:37703 +#: guix-git/doc/guix.texi:38182 #, no-wrap msgid "" "$ guix home import ~/guix-config\n" @@ -66267,52 +67130,62 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37718 +#: guix-git/doc/guix.texi:38197 msgid "Consider the home-environment @var{expr} evaluates to. This is an alternative to specifying a file which evaluates to a home environment." msgstr "" +#. type: table +#: guix-git/doc/guix.texi:38200 +msgid "Instruct @command{guix home reconfigure} to allow system downgrades." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:38207 +msgid "Just like @command{guix system}, @command{guix home reconfigure}, by default, prevents you from downgrading your home to older or unrelated revisions compared to the channel revisions that were used to deploy it---those shown by @command{guix home describe}. Using @option{--allow-downgrades} allows you to bypass that check, at the risk of downgrading your home---be careful!" +msgstr "" + #. type: cindex -#: guix-git/doc/guix.texi:37724 +#: guix-git/doc/guix.texi:38213 #, no-wrap msgid "documentation, searching for" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37725 +#: guix-git/doc/guix.texi:38214 #, no-wrap msgid "searching for documentation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37726 +#: guix-git/doc/guix.texi:38215 #, no-wrap msgid "Info, documentation format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37727 +#: guix-git/doc/guix.texi:38216 #, no-wrap msgid "man pages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37728 +#: guix-git/doc/guix.texi:38217 #, no-wrap msgid "manual pages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37735 +#: guix-git/doc/guix.texi:38224 msgid "In most cases packages installed with Guix come with documentation. There are two main documentation formats: ``Info'', a browsable hypertext format used for GNU software, and ``manual pages'' (or ``man pages''), the linear documentation format traditionally found on Unix. Info manuals are accessed with the @command{info} command or with Emacs, and man pages are accessed using @command{man}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37739 +#: guix-git/doc/guix.texi:38228 msgid "You can look for documentation of software installed on your system by keyword. For example, the following command searches for information about ``TLS'' in Info manuals:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37747 +#: guix-git/doc/guix.texi:38236 #, no-wrap msgid "" "$ info -k TLS\n" @@ -66324,12 +67197,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37753 +#: guix-git/doc/guix.texi:38242 msgid "The command below searches for the same keyword in man pages@footnote{The database searched by @command{man -k} is only created in profiles that contain the @code{man-db} package.}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37759 +#: guix-git/doc/guix.texi:38248 #, no-wrap msgid "" "$ man -k TLS\n" @@ -66339,97 +67212,97 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37765 +#: guix-git/doc/guix.texi:38254 msgid "These searches are purely local to your computer so you have the guarantee that documentation you find corresponds to what you have actually installed, you can access it off-line, and your privacy is respected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37768 +#: guix-git/doc/guix.texi:38257 msgid "Once you have these results, you can view the relevant documentation by running, say:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37771 +#: guix-git/doc/guix.texi:38260 #, no-wrap msgid "$ info \"(gnutls)Core TLS API\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37775 +#: guix-git/doc/guix.texi:38264 msgid "or:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37778 +#: guix-git/doc/guix.texi:38267 #, no-wrap msgid "$ man certtool\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37786 +#: guix-git/doc/guix.texi:38275 msgid "Info manuals contain sections and indices as well as hyperlinks like those found in Web pages. The @command{info} reader (@pxref{Top, Info reader,, info-stnd, Stand-alone GNU Info}) and its Emacs counterpart (@pxref{Misc Help,,, emacs, The GNU Emacs Manual}) provide intuitive key bindings to navigate manuals. @xref{Getting Started,,, info, Info: An Introduction}, for an introduction to Info navigation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37790 +#: guix-git/doc/guix.texi:38279 #, no-wrap msgid "debugging files" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37796 +#: guix-git/doc/guix.texi:38285 msgid "Program binaries, as produced by the GCC compilers for instance, are typically written in the ELF format, with a section containing @dfn{debugging information}. Debugging information is what allows the debugger, GDB, to map binary code to source code; it is required to debug a compiled program in good conditions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37800 +#: guix-git/doc/guix.texi:38289 msgid "This chapter explains how to use separate debug info when packages provide it, and how to rebuild packages with debug info when it's missing." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37816 +#: guix-git/doc/guix.texi:38305 msgid "The problem with debugging information is that is takes up a fair amount of disk space. For example, debugging information for the GNU C Library weighs in at more than 60 MiB@. Thus, as a user, keeping all the debugging info of all the installed programs is usually not an option. Yet, space savings should not come at the cost of an impediment to debugging---especially in the GNU system, which should make it easier for users to exert their computing freedom (@pxref{GNU Distribution})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37823 +#: guix-git/doc/guix.texi:38312 msgid "Thankfully, the GNU Binary Utilities (Binutils) and GDB provide a mechanism that allows users to get the best of both worlds: debugging information can be stripped from the binaries and stored in separate files. GDB is then able to load debugging information from those files, when they are available (@pxref{Separate Debug Files,,, gdb, Debugging with GDB})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37831 +#: guix-git/doc/guix.texi:38320 msgid "The GNU distribution takes advantage of this by storing debugging information in the @code{lib/debug} sub-directory of a separate package output unimaginatively called @code{debug} (@pxref{Packages with Multiple Outputs}). Users can choose to install the @code{debug} output of a package when they need it. For instance, the following command installs the debugging information for the GNU C Library and for GNU Guile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37834 +#: guix-git/doc/guix.texi:38323 #, no-wrap msgid "guix install glibc:debug guile:debug\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37840 +#: guix-git/doc/guix.texi:38329 msgid "GDB must then be told to look for debug files in the user's profile, by setting the @code{debug-file-directory} variable (consider setting it from the @file{~/.gdbinit} file, @pxref{Startup,,, gdb, Debugging with GDB}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37843 +#: guix-git/doc/guix.texi:38332 #, no-wrap msgid "(gdb) set debug-file-directory ~/.guix-profile/lib/debug\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37847 +#: guix-git/doc/guix.texi:38336 msgid "From there on, GDB will pick up debugging information from the @file{.debug} files under @file{~/.guix-profile/lib/debug}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37852 +#: guix-git/doc/guix.texi:38341 msgid "Below is an alternative GDB script which is useful when working with other profiles. It takes advantage of the optional Guile integration in GDB. This snippet is included by default on Guix System in the @file{~/.gdbinit} file." msgstr "" #. type: example -#: guix-git/doc/guix.texi:37860 +#: guix-git/doc/guix.texi:38349 #, no-wrap msgid "" "guile\n" @@ -66441,32 +67314,32 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37868 +#: guix-git/doc/guix.texi:38357 msgid "In addition, you will most likely want GDB to be able to show the source code being debugged. To do that, you will have to unpack the source code of the package of interest (obtained with @code{guix build --source}, @pxref{Invoking guix build}), and to point GDB to that source directory using the @code{directory} command (@pxref{Source Path, @code{directory},, gdb, Debugging with GDB})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37876 +#: guix-git/doc/guix.texi:38365 msgid "The @code{debug} output mechanism in Guix is implemented by the @code{gnu-build-system} (@pxref{Build Systems}). Currently, it is opt-in---debugging information is available only for the packages with definitions explicitly declaring a @code{debug} output. To check whether a package has a @code{debug} output, use @command{guix package --list-available} (@pxref{Invoking guix package})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37878 +#: guix-git/doc/guix.texi:38367 msgid "Read on for how to deal with packages lacking a @code{debug} output." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37890 +#: guix-git/doc/guix.texi:38379 msgid "As we saw above, some packages, but not all, provide debugging info in a @code{debug} output. What can you do when debugging info is missing? The @option{--with-debug-info} option provides a solution to that: it allows you to rebuild the package(s) for which debugging info is missing---and only those---and to graft those onto the application you're debugging. Thus, while it's not as fast as installing a @code{debug} output, it is relatively inexpensive." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37895 +#: guix-git/doc/guix.texi:38384 msgid "Let's illustrate that. Suppose you're experiencing a bug in Inkscape and would like to see what's going on in GLib, a library that's deep down in its dependency graph. As it turns out, GLib does not have a @code{debug} output and the backtrace GDB shows is all sadness:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37906 +#: guix-git/doc/guix.texi:38395 #, no-wrap msgid "" "(gdb) bt\n" @@ -66481,17 +67354,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37910 +#: guix-git/doc/guix.texi:38399 msgid "To address that, you install Inkscape linked against a variant GLib that contains debug info:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37916 +#: guix-git/doc/guix.texi:38405 msgid "This time, debugging will be a whole lot nicer:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37934 +#: guix-git/doc/guix.texi:38423 #, no-wrap msgid "" "$ gdb --args sh -c 'exec inkscape'\n" @@ -66513,28 +67386,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37937 +#: guix-git/doc/guix.texi:38426 msgid "Much better!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37941 +#: guix-git/doc/guix.texi:38430 msgid "Note that there can be packages for which @option{--with-debug-info} will not have the desired effect. @xref{Package Transformation Options, @option{--with-debug-info}}, for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37945 +#: guix-git/doc/guix.texi:38434 #, no-wrap msgid "security updates" msgstr "tietoturvapäivitykset" #. type: Plain text -#: guix-git/doc/guix.texi:37954 +#: guix-git/doc/guix.texi:38443 msgid "Occasionally, important security vulnerabilities are discovered in software packages and must be patched. Guix developers try hard to keep track of known vulnerabilities and to apply fixes as soon as possible in the @code{master} branch of Guix (we do not yet provide a ``stable'' branch containing only security updates). The @command{guix lint} tool helps developers find out about vulnerable versions of software packages in the distribution:" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:37961 +#: guix-git/doc/guix.texi:38450 #, no-wrap msgid "" "$ guix lint -c cve\n" @@ -66545,39 +67418,39 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37964 +#: guix-git/doc/guix.texi:38453 msgid "@xref{Invoking guix lint}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37973 +#: guix-git/doc/guix.texi:38462 msgid "Guix follows a functional package management discipline (@pxref{Introduction}), which implies that, when a package is changed, @emph{every package that depends on it} must be rebuilt. This can significantly slow down the deployment of fixes in core packages such as libc or Bash, since basically the whole distribution would need to be rebuilt. Using pre-built binaries helps (@pxref{Substitutes}), but deployment may still take more time than desired." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37974 +#: guix-git/doc/guix.texi:38463 #, no-wrap msgid "grafts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37982 +#: guix-git/doc/guix.texi:38471 msgid "To address this, Guix implements @dfn{grafts}, a mechanism that allows for fast deployment of critical updates without the costs associated with a whole-distribution rebuild. The idea is to rebuild only the package that needs to be patched, and then to ``graft'' it onto packages explicitly installed by the user and that were previously referring to the original package. The cost of grafting is typically very low, and order of magnitudes lower than a full rebuild of the dependency chain." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37983 +#: guix-git/doc/guix.texi:38472 #, no-wrap msgid "replacements of packages, for grafts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37989 +#: guix-git/doc/guix.texi:38478 msgid "For instance, suppose a security update needs to be applied to Bash. Guix developers will provide a package definition for the ``fixed'' Bash, say @code{bash-fixed}, in the usual way (@pxref{Defining Packages}). Then, the original package definition is augmented with a @code{replacement} field pointing to the package containing the bug fix:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37996 +#: guix-git/doc/guix.texi:38485 #, no-wrap msgid "" "(define bash\n" @@ -66588,190 +67461,190 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38006 +#: guix-git/doc/guix.texi:38495 msgid "From there on, any package depending directly or indirectly on Bash---as reported by @command{guix gc --requisites} (@pxref{Invoking guix gc})---that is installed is automatically ``rewritten'' to refer to @code{bash-fixed} instead of @code{bash}. This grafting process takes time proportional to the size of the package, usually less than a minute for an ``average'' package on a recent machine. Grafting is recursive: when an indirect dependency requires grafting, then grafting ``propagates'' up to the package that the user is installing." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38014 +#: guix-git/doc/guix.texi:38503 msgid "Currently, the length of the name and version of the graft and that of the package it replaces (@code{bash-fixed} and @code{bash} in the example above) must be equal. This restriction mostly comes from the fact that grafting works by patching files, including binary files, directly. Other restrictions may apply: for instance, when adding a graft to a package providing a shared library, the original shared library and its replacement must have the same @code{SONAME} and be binary-compatible." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38018 +#: guix-git/doc/guix.texi:38507 msgid "The @option{--no-grafts} command-line option allows you to forcefully avoid grafting (@pxref{Common Build Options, @option{--no-grafts}}). Thus, the command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38021 +#: guix-git/doc/guix.texi:38510 #, no-wrap msgid "guix build bash --no-grafts\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38025 +#: guix-git/doc/guix.texi:38514 msgid "returns the store file name of the original Bash, whereas:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38028 +#: guix-git/doc/guix.texi:38517 #, no-wrap msgid "guix build bash\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38033 +#: guix-git/doc/guix.texi:38522 msgid "returns the store file name of the ``fixed'', replacement Bash. This allows you to distinguish between the two variants of Bash." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38036 +#: guix-git/doc/guix.texi:38525 msgid "To verify which Bash your whole profile refers to, you can run (@pxref{Invoking guix gc}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38039 +#: guix-git/doc/guix.texi:38528 #, no-wrap msgid "guix gc -R $(readlink -f ~/.guix-profile) | grep bash\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38044 +#: guix-git/doc/guix.texi:38533 msgid "@dots{} and compare the store file names that you get with those above. Likewise for a complete Guix system generation:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38047 +#: guix-git/doc/guix.texi:38536 #, no-wrap msgid "guix gc -R $(guix system build my-config.scm) | grep bash\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38051 +#: guix-git/doc/guix.texi:38540 msgid "Lastly, to check which Bash running processes are using, you can use the @command{lsof} command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38054 +#: guix-git/doc/guix.texi:38543 #, no-wrap msgid "lsof | grep /gnu/store/.*bash\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:38062 +#: guix-git/doc/guix.texi:38551 #, no-wrap msgid "bootstrapping" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38069 +#: guix-git/doc/guix.texi:38558 msgid "Bootstrapping in our context refers to how the distribution gets built ``from nothing''. Remember that the build environment of a derivation contains nothing but its declared inputs (@pxref{Introduction}). So there's an obvious chicken-and-egg problem: how does the first package get built? How does the first compiler get compiled?" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38077 +#: guix-git/doc/guix.texi:38566 msgid "It is tempting to think of this question as one that only die-hard hackers may care about. However, while the answer to that question is technical in nature, its implications are wide-ranging. How the distribution is bootstrapped defines the extent to which we, as individuals and as a collective of users and hackers, can trust the software we run. It is a central concern from the standpoint of @emph{security} and from a @emph{user freedom} viewpoint." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:38078 guix-git/doc/guix.texi:38290 +#: guix-git/doc/guix.texi:38567 guix-git/doc/guix.texi:38779 #, no-wrap msgid "bootstrap binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38088 +#: guix-git/doc/guix.texi:38577 msgid "The GNU system is primarily made of C code, with libc at its core. The GNU build system itself assumes the availability of a Bourne shell and command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and `grep'. Furthermore, build programs---programs that run @code{./configure}, @code{make}, etc.---are written in Guile Scheme (@pxref{Derivations}). Consequently, to be able to build anything at all, from scratch, Guix relies on pre-built binaries of Guile, GCC, Binutils, libc, and the other packages mentioned above---the @dfn{bootstrap binaries}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38092 +#: guix-git/doc/guix.texi:38581 msgid "These bootstrap binaries are ``taken for granted'', though we can also re-create them if needed (@pxref{Preparing to Use the Bootstrap Binaries})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:38099 +#: guix-git/doc/guix.texi:38588 #, no-wrap msgid "The Reduced Binary Seed Bootstrap" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38106 +#: guix-git/doc/guix.texi:38595 msgid "Guix---like other GNU/Linux distributions---is traditionally bootstrapped from a set of bootstrap binaries: Bourne shell, command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and `grep' and Guile, GCC, Binutils, and the GNU C Library (@pxref{Bootstrapping}). Usually, these bootstrap binaries are ``taken for granted.''" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38112 +#: guix-git/doc/guix.texi:38601 msgid "Taking the bootstrap binaries for granted means that we consider them to be a correct and trustworthy ``seed'' for building the complete system. Therein lies a problem: the combined size of these bootstrap binaries is about 250MB (@pxref{Bootstrappable Builds,,, mes, GNU Mes}). Auditing or even inspecting these is next to impossible." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38117 +#: guix-git/doc/guix.texi:38606 msgid "For @code{i686-linux} and @code{x86_64-linux}, Guix now features a ``Reduced Binary Seed'' bootstrap @footnote{We would like to say: ``Full Source Bootstrap'' and while we are working towards that goal it would be hyperbole to use that term for what we do now.}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38123 +#: guix-git/doc/guix.texi:38612 msgid "The Reduced Binary Seed bootstrap removes the most critical tools---from a trust perspective---from the bootstrap binaries: GCC, Binutils and the GNU C Library are replaced by: @code{bootstrap-mescc-tools} (a tiny assembler and linker) and @code{bootstrap-mes} (a small Scheme Interpreter and a C compiler written in Scheme and the Mes C Library, built for TinyCC and for GCC)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38128 +#: guix-git/doc/guix.texi:38617 msgid "Using these new binary seeds the ``missing'' Binutils, GCC, and the GNU C Library are built from source. From here on the more traditional bootstrap process resumes. This approach has reduced the bootstrap binaries in size to about 145MB in Guix v1.1." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38136 +#: guix-git/doc/guix.texi:38625 msgid "The next step that Guix has taken is to replace the shell and all its utilities with implementations in Guile Scheme, the @emph{Scheme-only bootstrap}. Gash (@pxref{Gash,,, gash, The Gash manual}) is a POSIX-compatible shell that replaces Bash, and it comes with Gash Utils which has minimalist replacements for Awk, the GNU Core Utilities, Grep, Gzip, Sed, and Tar. The rest of the bootstrap binary seeds that were removed are now built from source." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38146 +#: guix-git/doc/guix.texi:38635 msgid "Building the GNU System from source is currently only possible by adding some historical GNU packages as intermediate steps@footnote{Packages such as @code{gcc-2.95.3}, @code{binutils-2.14}, @code{glibc-2.2.5}, @code{gzip-1.2.4}, @code{tar-1.22}, and some others. For details, see @file{gnu/packages/commencement.scm}.}. As Gash and Gash Utils mature, and GNU packages become more bootstrappable again (e.g., new releases of GNU Sed will also ship as gzipped tarballs again, as alternative to the hard to bootstrap @code{xz}-compression), this set of added packages can hopefully be reduced again." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38150 +#: guix-git/doc/guix.texi:38639 msgid "The graph below shows the resulting dependency graph for @code{gcc-core-mesboot0}, the bootstrap compiler used for the traditional bootstrap of the rest of the Guix System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38153 +#: guix-git/doc/guix.texi:38642 msgid "@image{images/gcc-core-mesboot0-graph,6in,,Dependency graph of gcc-core-mesboot0}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38160 +#: guix-git/doc/guix.texi:38649 msgid "The only significant binary bootstrap seeds that remain@footnote{ Ignoring the 68KB @code{mescc-tools}; that will be removed later, together with @code{mes}.} are a Scheme interpreter and a Scheme compiler: GNU Mes and GNU Guile@footnote{Not shown in this graph are the static binaries for @file{bash}, @code{tar}, and @code{xz} that are used to get Guile running.}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38163 +#: guix-git/doc/guix.texi:38652 msgid "This further reduction has brought down the size of the binary seed to about 60MB for @code{i686-linux} and @code{x86_64-linux}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38168 +#: guix-git/doc/guix.texi:38657 msgid "Work is ongoing to remove all binary blobs from our free software bootstrap stack, working towards a Full Source Bootstrap. Also ongoing is work to bring these bootstraps to the @code{arm-linux} and @code{aarch64-linux} architectures and to the Hurd." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38172 +#: guix-git/doc/guix.texi:38661 msgid "If you are interested, join us on @samp{#bootstrappable} on the Freenode IRC network or discuss on @email{bug-mes@@gnu.org} or @email{gash-devel@@nongnu.org}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38179 +#: guix-git/doc/guix.texi:38668 msgid "@image{images/bootstrap-graph,6in,,Dependency graph of the early bootstrap derivations}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38184 +#: guix-git/doc/guix.texi:38673 msgid "The figure above shows the very beginning of the dependency graph of the distribution, corresponding to the package definitions of the @code{(gnu packages bootstrap)} module. A similar figure can be generated with @command{guix graph} (@pxref{Invoking guix graph}), along the lines of:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38189 +#: guix-git/doc/guix.texi:38678 #, no-wrap msgid "" "guix graph -t derivation \\\n" @@ -66780,12 +67653,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38192 +#: guix-git/doc/guix.texi:38681 msgid "or, for the further Reduced Binary Seed bootstrap" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38197 +#: guix-git/doc/guix.texi:38686 #, no-wrap msgid "" "guix graph -t derivation \\\n" @@ -66794,43 +67667,43 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38206 +#: guix-git/doc/guix.texi:38695 msgid "At this level of detail, things are slightly complex. First, Guile itself consists of an ELF executable, along with many source and compiled Scheme files that are dynamically loaded when it runs. This gets stored in the @file{guile-2.0.7.tar.xz} tarball shown in this graph. This tarball is part of Guix's ``source'' distribution, and gets inserted into the store with @code{add-to-store} (@pxref{The Store})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38215 +#: guix-git/doc/guix.texi:38704 msgid "But how do we write a derivation that unpacks this tarball and adds it to the store? To solve this problem, the @code{guile-bootstrap-2.0.drv} derivation---the first one that gets built---uses @code{bash} as its builder, which runs @code{build-bootstrap-guile.sh}, which in turn calls @code{tar} to unpack the tarball. Thus, @file{bash}, @file{tar}, @file{xz}, and @file{mkdir} are statically-linked binaries, also part of the Guix source distribution, whose sole purpose is to allow the Guile tarball to be unpacked." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38227 +#: guix-git/doc/guix.texi:38716 msgid "Once @code{guile-bootstrap-2.0.drv} is built, we have a functioning Guile that can be used to run subsequent build programs. Its first task is to download tarballs containing the other pre-built binaries---this is what the @file{.tar.xz.drv} derivations do. Guix modules such as @code{ftp-client.scm} are used for this purpose. The @code{module-import.drv} derivations import those modules in a directory in the store, using the original layout. The @code{module-import-compiled.drv} derivations compile those modules, and write them in an output directory with the right layout. This corresponds to the @code{#:modules} argument of @code{build-expression->derivation} (@pxref{Derivations})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38232 +#: guix-git/doc/guix.texi:38721 msgid "Finally, the various tarballs are unpacked by the derivations @code{gcc-bootstrap-0.drv}, @code{glibc-bootstrap-0.drv}, or @code{bootstrap-mes-0.drv} and @code{bootstrap-mescc-tools-0.drv}, at which point we have a working C tool chain." msgstr "" #. type: unnumberedsec -#: guix-git/doc/guix.texi:38233 +#: guix-git/doc/guix.texi:38722 #, no-wrap msgid "Building the Build Tools" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38242 +#: guix-git/doc/guix.texi:38731 msgid "Bootstrapping is complete when we have a full tool chain that does not depend on the pre-built bootstrap tools discussed above. This no-dependency requirement is verified by checking whether the files of the final tool chain contain references to the @file{/gnu/store} directories of the bootstrap inputs. The process that leads to this ``final'' tool chain is described by the package definitions found in the @code{(gnu packages commencement)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38249 +#: guix-git/doc/guix.texi:38738 msgid "The @command{guix graph} command allows us to ``zoom out'' compared to the graph above, by looking at the level of package objects instead of individual derivations---remember that a package may translate to several derivations, typically one derivation to download its source, one to build the Guile modules it needs, and one to actually build the package from source. The command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38254 +#: guix-git/doc/guix.texi:38743 #, no-wrap msgid "" "guix graph -t bag \\\n" @@ -66839,164 +67712,164 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38261 +#: guix-git/doc/guix.texi:38750 msgid "displays the dependency graph leading to the ``final'' C library@footnote{You may notice the @code{glibc-intermediate} label, suggesting that it is not @emph{quite} final, but as a good approximation, we will consider it final.}, depicted below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38263 +#: guix-git/doc/guix.texi:38752 msgid "@image{images/bootstrap-packages,6in,,Dependency graph of the early packages}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38269 +#: guix-git/doc/guix.texi:38758 msgid "The first tool that gets built with the bootstrap binaries is GNU@tie{}Make---noted @code{make-boot0} above---which is a prerequisite for all the following packages. From there Findutils and Diffutils get built." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38274 +#: guix-git/doc/guix.texi:38763 msgid "Then come the first-stage Binutils and GCC, built as pseudo cross tools---i.e., with @option{--target} equal to @option{--host}. They are used to build libc. Thanks to this cross-build trick, this libc is guaranteed not to hold any reference to the initial tool chain." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38280 +#: guix-git/doc/guix.texi:38769 msgid "From there the final Binutils and GCC (not shown above) are built. GCC uses @command{ld} from the final Binutils, and links programs against the just-built libc. This tool chain is used to build the other packages used by Guix and by the GNU Build System: Guile, Bash, Coreutils, etc." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38286 +#: guix-git/doc/guix.texi:38775 msgid "And voilà! At this point we have the complete set of build tools that the GNU Build System expects. These are in the @code{%final-inputs} variable of the @code{(gnu packages commencement)} module, and are implicitly used by any package that uses @code{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}})." msgstr "" #. type: unnumberedsec -#: guix-git/doc/guix.texi:38288 +#: guix-git/doc/guix.texi:38777 #, no-wrap msgid "Building the Bootstrap Binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38295 +#: guix-git/doc/guix.texi:38784 msgid "Because the final tool chain does not depend on the bootstrap binaries, those rarely need to be updated. Nevertheless, it is useful to have an automated way to produce them, should an update occur, and this is what the @code{(gnu packages make-bootstrap)} module provides." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38301 +#: guix-git/doc/guix.texi:38790 msgid "The following command builds the tarballs containing the bootstrap binaries (Binutils, GCC, glibc, for the traditional bootstrap and linux-libre-headers, bootstrap-mescc-tools, bootstrap-mes for the Reduced Binary Seed bootstrap, and Guile, and a tarball containing a mixture of Coreutils and other basic command-line tools):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38304 +#: guix-git/doc/guix.texi:38793 #, no-wrap msgid "guix build bootstrap-tarballs\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38309 +#: guix-git/doc/guix.texi:38798 msgid "The generated tarballs are those that should be referred to in the @code{(gnu packages bootstrap)} module mentioned at the beginning of this section." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38315 +#: guix-git/doc/guix.texi:38804 msgid "Still here? Then perhaps by now you've started to wonder: when do we reach a fixed point? That is an interesting question! The answer is unknown, but if you would like to investigate further (and have significant computational and storage resources to do so), then let us know." msgstr "" #. type: unnumberedsec -#: guix-git/doc/guix.texi:38316 +#: guix-git/doc/guix.texi:38805 #, no-wrap msgid "Reducing the Set of Bootstrap Binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38324 +#: guix-git/doc/guix.texi:38813 msgid "Our traditional bootstrap includes GCC, GNU Libc, Guile, etc. That's a lot of binary code! Why is that a problem? It's a problem because these big chunks of binary code are practically non-auditable, which makes it hard to establish what source code produced them. Every unauditable binary also leaves us vulnerable to compiler backdoors as described by Ken Thompson in the 1984 paper @emph{Reflections on Trusting Trust}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38330 +#: guix-git/doc/guix.texi:38819 msgid "This is mitigated by the fact that our bootstrap binaries were generated from an earlier Guix revision. Nevertheless it lacks the level of transparency that we get in the rest of the package dependency graph, where Guix always gives us a source-to-binary mapping. Thus, our goal is to reduce the set of bootstrap binaries to the bare minimum." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38336 +#: guix-git/doc/guix.texi:38825 msgid "The @uref{https://bootstrappable.org, Bootstrappable.org web site} lists on-going projects to do that. One of these is about replacing the bootstrap GCC with a sequence of assemblers, interpreters, and compilers of increasing complexity, which could be built from source starting from a simple and auditable assembler." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38345 +#: guix-git/doc/guix.texi:38834 msgid "Our first major achievement is the replacement of of GCC, the GNU C Library and Binutils by MesCC-Tools (a simple hex linker and macro assembler) and Mes (@pxref{Top, GNU Mes Reference Manual,, mes, GNU Mes}, a Scheme interpreter and C compiler in Scheme). Neither MesCC-Tools nor Mes can be fully bootstrapped yet and thus we inject them as binary seeds. We call this the Reduced Binary Seed bootstrap, as it has halved the size of our bootstrap binaries! Also, it has eliminated the C compiler binary; i686-linux and x86_64-linux Guix packages are now bootstrapped without any binary C compiler." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38348 +#: guix-git/doc/guix.texi:38837 msgid "Work is ongoing to make MesCC-Tools and Mes fully bootstrappable and we are also looking at any other bootstrap binaries. Your help is welcome!" msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:38350 +#: guix-git/doc/guix.texi:38839 #, no-wrap msgid "Porting to a New Platform" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38359 +#: guix-git/doc/guix.texi:38848 msgid "As discussed above, the GNU distribution is self-contained, and self-containment is achieved by relying on pre-built ``bootstrap binaries'' (@pxref{Bootstrapping}). These binaries are specific to an operating system kernel, CPU architecture, and application binary interface (ABI). Thus, to port the distribution to a platform that is not yet supported, one must build those bootstrap binaries, and update the @code{(gnu packages bootstrap)} module to use them on that platform." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38364 +#: guix-git/doc/guix.texi:38853 msgid "Fortunately, Guix can @emph{cross compile} those bootstrap binaries. When everything goes well, and assuming the GNU tool chain supports the target platform, this can be as simple as running a command like this one:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38367 +#: guix-git/doc/guix.texi:38856 #, no-wrap msgid "guix build --target=armv5tel-linux-gnueabi bootstrap-tarballs\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38374 +#: guix-git/doc/guix.texi:38863 msgid "For this to work, the @code{glibc-dynamic-linker} procedure in @code{(gnu packages bootstrap)} must be augmented to return the right file name for libc's dynamic linker on that platform; likewise, @code{system->linux-architecture} in @code{(gnu packages linux)} must be taught about the new platform." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38383 +#: guix-git/doc/guix.texi:38872 msgid "Once these are built, the @code{(gnu packages bootstrap)} module needs to be updated to refer to these binaries on the target platform. That is, the hashes and URLs of the bootstrap tarballs for the new platform must be added alongside those of the currently supported platforms. The bootstrap Guile tarball is treated specially: it is expected to be available locally, and @file{gnu/local.mk} has rules to download it for the supported architectures; a rule for the new platform must be added as well." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38392 +#: guix-git/doc/guix.texi:38881 msgid "In practice, there may be some complications. First, it may be that the extended GNU triplet that specifies an ABI (like the @code{eabi} suffix above) is not recognized by all the GNU tools. Typically, glibc recognizes some of these, whereas GCC uses an extra @option{--with-abi} configure flag (see @code{gcc.scm} for examples of how to handle this). Second, some of the required packages could fail to build for that platform. Lastly, the generated binaries could be broken for some reason." msgstr "" #. type: include -#: guix-git/doc/guix.texi:38394 +#: guix-git/doc/guix.texi:38883 #, no-wrap msgid "contributing.texi" msgstr "contributing.fi.texi" #. type: Plain text -#: guix-git/doc/guix.texi:38407 +#: guix-git/doc/guix.texi:38896 msgid "Guix is based on the @uref{https://nixos.org/nix/, Nix package manager}, which was designed and implemented by Eelco Dolstra, with contributions from other people (see the @file{nix/AUTHORS} file in Guix). Nix pioneered functional package management, and promoted unprecedented features, such as transactional package upgrades and rollbacks, per-user profiles, and referentially transparent build processes. Without this work, Guix would not exist." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38410 +#: guix-git/doc/guix.texi:38899 msgid "The Nix-based software distributions, Nixpkgs and NixOS, have also been an inspiration for Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38416 +#: guix-git/doc/guix.texi:38905 msgid "GNU@tie{}Guix itself is a collective work with contributions from a number of people. See the @file{AUTHORS} file in Guix for more information on these fine people. The @file{THANKS} file lists people who have helped by reporting bugs, taking care of the infrastructure, providing artwork and themes, making suggestions, and more---thank you!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:38421 +#: guix-git/doc/guix.texi:38910 #, no-wrap msgid "license, GNU Free Documentation License" msgstr "" #. type: include -#: guix-git/doc/guix.texi:38422 +#: guix-git/doc/guix.texi:38911 #, no-wrap msgid "fdl-1.3.texi" msgstr "" diff --git a/po/doc/guix-manual.fr.po b/po/doc/guix-manual.fr.po index 3c4f42062c..12fbdf8d00 100644 --- a/po/doc/guix-manual.fr.po +++ b/po/doc/guix-manual.fr.po @@ -5,7 +5,7 @@ # Ludovic Courtès , 2019 # hubert lombard , 2020. # Julien Lepiller , 2018, 2020. -# Julien Lepiller , 2020, 2021. +# Julien Lepiller , 2020, 2021, 2022. # Hubert Lombard , 2021. # tisse vert , 2021. # Philippe SWARTVAGHER , 2021. @@ -44,8 +44,8 @@ msgid "" msgstr "" "Project-Id-Version: guix-manual 1.2.0-pre3\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2021-12-21 15:18+0000\n" -"PO-Revision-Date: 2021-12-25 14:16+0000\n" +"POT-Creation-Date: 2022-02-02 15:18+0000\n" +"PO-Revision-Date: 2022-02-01 06:16+0000\n" "Last-Translator: Julien Lepiller \n" "Language-Team: French \n" "Language: fr\n" @@ -106,8 +106,8 @@ msgid "The latest and greatest." msgstr "Toujours le plus récent." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:161 -#: guix-git/doc/contributing.texi:162 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:173 +#: guix-git/doc/contributing.texi:174 #, no-wrap msgid "Running Guix Before It Is Installed" msgstr "Lancer Guix avant qu'il ne soit installé" @@ -118,8 +118,8 @@ msgid "Hacker tricks." msgstr "Astuces pour les hackers." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:235 -#: guix-git/doc/contributing.texi:236 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:265 +#: guix-git/doc/contributing.texi:266 #, no-wrap msgid "The Perfect Setup" msgstr "La configuration parfaite" @@ -130,8 +130,8 @@ msgid "The right tools." msgstr "Les bons outils." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:326 -#: guix-git/doc/contributing.texi:327 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:356 +#: guix-git/doc/contributing.texi:357 #, no-wrap msgid "Packaging Guidelines" msgstr "Consignes d'empaquetage" @@ -142,8 +142,8 @@ msgid "Growing the distribution." msgstr "Faire grandir la distribution." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:890 -#: guix-git/doc/contributing.texi:891 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:920 +#: guix-git/doc/contributing.texi:921 #, no-wrap msgid "Coding Style" msgstr "Style de code" @@ -154,8 +154,8 @@ msgid "Hygiene of the contributor." msgstr "Hygiène des contributeur·rices." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:989 -#: guix-git/doc/contributing.texi:990 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1013 +#: guix-git/doc/contributing.texi:1014 #, no-wrap msgid "Submitting Patches" msgstr "Envoyer des correctifs" @@ -166,8 +166,8 @@ msgid "Share your work." msgstr "Partager votre travail." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1270 -#: guix-git/doc/contributing.texi:1271 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1298 +#: guix-git/doc/contributing.texi:1299 #, no-wrap msgid "Tracking Bugs and Patches" msgstr "Suivi des bogues et des correctifs" @@ -178,8 +178,8 @@ msgid "Keeping it all organized." msgstr "Tout bien ranger." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1385 -#: guix-git/doc/contributing.texi:1386 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1413 +#: guix-git/doc/contributing.texi:1414 #, no-wrap msgid "Commit Access" msgstr "Accès en commit" @@ -190,8 +190,8 @@ msgid "Pushing to the official repository." msgstr "Pousser sur le dépôt officiel." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1611 -#: guix-git/doc/contributing.texi:1612 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1644 +#: guix-git/doc/contributing.texi:1645 #, no-wrap msgid "Updating the Guix Package" msgstr "Mettre à jour Guix" @@ -202,8 +202,8 @@ msgid "Updating the Guix package definition." msgstr "Mettre à jour les définitions de paquets de Guix." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1652 -#: guix-git/doc/contributing.texi:1653 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1686 #, no-wrap msgid "Translating Guix" msgstr "Traduire Guix" @@ -390,30 +390,31 @@ msgid "make authenticate GUIX_GIT_KEYRING=myremote/keyring\n" msgstr "make authenticate GUIX_GIT_KEYRING=myremote/keyring\n" #. type: quotation -#: guix-git/doc/contributing.texi:154 guix-git/doc/contributing.texi:1463 -#: guix-git/doc/guix.texi:594 guix-git/doc/guix.texi:643 -#: guix-git/doc/guix.texi:833 guix-git/doc/guix.texi:1813 -#: guix-git/doc/guix.texi:2060 guix-git/doc/guix.texi:2244 -#: guix-git/doc/guix.texi:2465 guix-git/doc/guix.texi:2677 -#: guix-git/doc/guix.texi:3807 guix-git/doc/guix.texi:4548 -#: guix-git/doc/guix.texi:4562 guix-git/doc/guix.texi:4644 -#: guix-git/doc/guix.texi:4874 guix-git/doc/guix.texi:5615 -#: guix-git/doc/guix.texi:6082 guix-git/doc/guix.texi:6333 -#: guix-git/doc/guix.texi:6454 guix-git/doc/guix.texi:6482 -#: guix-git/doc/guix.texi:6535 guix-git/doc/guix.texi:9391 -#: guix-git/doc/guix.texi:9461 guix-git/doc/guix.texi:11198 -#: guix-git/doc/guix.texi:11238 guix-git/doc/guix.texi:11512 -#: guix-git/doc/guix.texi:11524 guix-git/doc/guix.texi:14000 -#: guix-git/doc/guix.texi:14631 guix-git/doc/guix.texi:15521 -#: guix-git/doc/guix.texi:16507 guix-git/doc/guix.texi:19140 -#: guix-git/doc/guix.texi:19310 guix-git/doc/guix.texi:27188 -#: guix-git/doc/guix.texi:30914 guix-git/doc/guix.texi:34669 -#: guix-git/doc/guix.texi:34903 guix-git/doc/guix.texi:35073 -#: guix-git/doc/guix.texi:35232 guix-git/doc/guix.texi:35334 -#: guix-git/doc/guix.texi:35435 guix-git/doc/guix.texi:35738 -#: guix-git/doc/guix.texi:36896 guix-git/doc/guix.texi:36971 -#: guix-git/doc/guix.texi:37006 guix-git/doc/guix.texi:37056 -#: guix-git/doc/guix.texi:37143 guix-git/doc/guix.texi:37564 +#: guix-git/doc/contributing.texi:154 guix-git/doc/contributing.texi:1496 +#: guix-git/doc/guix.texi:605 guix-git/doc/guix.texi:654 +#: guix-git/doc/guix.texi:844 guix-git/doc/guix.texi:1830 +#: guix-git/doc/guix.texi:2077 guix-git/doc/guix.texi:2261 +#: guix-git/doc/guix.texi:2482 guix-git/doc/guix.texi:2694 +#: guix-git/doc/guix.texi:3825 guix-git/doc/guix.texi:4566 +#: guix-git/doc/guix.texi:4580 guix-git/doc/guix.texi:4662 +#: guix-git/doc/guix.texi:4892 guix-git/doc/guix.texi:5633 +#: guix-git/doc/guix.texi:6119 guix-git/doc/guix.texi:6376 +#: guix-git/doc/guix.texi:6497 guix-git/doc/guix.texi:6525 +#: guix-git/doc/guix.texi:6578 guix-git/doc/guix.texi:9581 +#: guix-git/doc/guix.texi:9705 guix-git/doc/guix.texi:9775 +#: guix-git/doc/guix.texi:11512 guix-git/doc/guix.texi:11552 +#: guix-git/doc/guix.texi:11826 guix-git/doc/guix.texi:11838 +#: guix-git/doc/guix.texi:14357 guix-git/doc/guix.texi:14988 +#: guix-git/doc/guix.texi:15878 guix-git/doc/guix.texi:16864 +#: guix-git/doc/guix.texi:19502 guix-git/doc/guix.texi:19672 +#: guix-git/doc/guix.texi:27525 guix-git/doc/guix.texi:31279 +#: guix-git/doc/guix.texi:35108 guix-git/doc/guix.texi:35342 +#: guix-git/doc/guix.texi:35512 guix-git/doc/guix.texi:35676 +#: guix-git/doc/guix.texi:35778 guix-git/doc/guix.texi:35817 +#: guix-git/doc/guix.texi:35891 guix-git/doc/guix.texi:36228 +#: guix-git/doc/guix.texi:37386 guix-git/doc/guix.texi:37461 +#: guix-git/doc/guix.texi:37496 guix-git/doc/guix.texi:37546 +#: guix-git/doc/guix.texi:37633 guix-git/doc/guix.texi:38043 #, no-wrap msgid "Note" msgstr "Remarque" @@ -424,28 +425,48 @@ msgid "You are advised to run @command{make authenticate} after every @command{g msgstr "Nous vous conseillons d'exécuter @command{make authenticate} après chaque invocation de @command{git pull}. Cela vous garantit de continuer à recevoir des modifications valables dans le dépôt." #. type: Plain text -#: guix-git/doc/contributing.texi:168 +#: guix-git/doc/contributing.texi:162 +msgid "After updating the repository, @command{make} might fail with an error similar to the following example:" +msgstr "Après la mise à jour du dépôt, @command{make} peut échouer avec une erreur semblable à celle de l'exemple suivant :" + +#. type: example +#: guix-git/doc/contributing.texi:166 +#, no-wrap +msgid "" +"error: failed to load 'gnu/packages/dunst.scm':\n" +"ice-9/eval.scm:293:34: In procedure abi-check: #>: record ABI mismatch; recompilation needed\n" +msgstr "" +"error: failed to load 'gnu/packages/dunst.scm':\n" +"ice-9/eval.scm:293:34: In procedure abi-check: #>: record ABI mismatch; recompilation needed\n" + +#. type: Plain text +#: guix-git/doc/contributing.texi:172 +msgid "This means that one of the record types that Guix defines (in this example, the @code{origin} record) has changed, and all of guix needs to be recompiled to take that change into account. To do so, run @command{make clean-go} followed by @command{make}." +msgstr "Cela signifie qu'un des types d'enregistrement que Guix définie (dans cet exemple, l'enregistrement @code{origin}) a changé, et que l'entièreté de guix doit être recompilé pour prendre ce changement en compte. Pour ce faire, lancez @command{make clean-go} suivi de @command{make}." + +#. type: Plain text +#: guix-git/doc/contributing.texi:180 msgid "In order to keep a sane working environment, you will find it useful to test the changes made in your local source tree checkout without actually installing them. So that you can distinguish between your ``end-user'' hat and your ``motley'' costume." msgstr "Pour garder un environnement de travail sain, il est utile de tester les changement localement sans les installer pour de vrai. Pour pouvoir distinguer votre rôle « d'utilisateur·rice final·e » de celui parfois haut en couleur de « développeur·euse »." #. type: Plain text -#: guix-git/doc/contributing.texi:179 +#: guix-git/doc/contributing.texi:191 msgid "To that end, all the command-line tools can be used even if you have not run @code{make install}. To do that, you first need to have an environment with all the dependencies available (@pxref{Building from Git}), and then simply prefix each command with @command{./pre-inst-env} (the @file{pre-inst-env} script lives in the top build tree of Guix; it is generated by running @command{./bootstrap} followed by @command{./configure}). As an example, here is how you would build the @code{hello} package as defined in your working tree (this assumes @command{guix-daemon} is already running on your system; it's OK if it's a different version):" msgstr "Pour cela, tous les outils en ligne de commande sont utilisables même sans avoir lancé @code{make install}. Pour faire cela, vous devez d'abord avoir un environnement avec toutes les dépendances disponibles (@pxref{Building from Git}), et puis préfixer simplement chaque commande avec @command{./pre-inst-env} (le script @file{pre-inst-env} se trouve dans le répertoire de plus haut niveau de l'arborescence des sources de Guix ; il est généré en lançant @command{./bootstrap} suivit de @command{./configure}). À titre d'exemple, voici comment construire le paquet @code{hello} tel que défini dans votre arborescence de travail (cela suppose que @command{guix-daemon} fonctionne déjà sur votre système ; c'est OK si c'est une version différente) :" #. type: example -#: guix-git/doc/contributing.texi:182 +#: guix-git/doc/contributing.texi:194 #, no-wrap msgid "$ ./pre-inst-env guix build hello\n" msgstr "$ ./pre-inst-env guix build hello \n" #. type: Plain text -#: guix-git/doc/contributing.texi:186 +#: guix-git/doc/contributing.texi:198 msgid "Similarly, an example for a Guile session using the Guix modules:" msgstr "De même, pour une session Guile qui utilise les modules Guix :" #. type: example -#: guix-git/doc/contributing.texi:189 +#: guix-git/doc/contributing.texi:201 #, no-wrap msgid "" "$ ./pre-inst-env guile -c '(use-modules (guix utils)) (pk (%current-system))'\n" @@ -455,30 +476,30 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/contributing.texi:191 +#: guix-git/doc/contributing.texi:203 #, no-wrap msgid ";;; (\"x86_64-linux\")\n" msgstr ";;; (\"x86_64-linux\")\n" #. type: cindex -#: guix-git/doc/contributing.texi:194 +#: guix-git/doc/contributing.texi:206 #, no-wrap msgid "REPL" msgstr "REPL" #. type: cindex -#: guix-git/doc/contributing.texi:195 +#: guix-git/doc/contributing.texi:207 #, no-wrap msgid "read-eval-print loop" msgstr "read-eval-print loop" #. type: Plain text -#: guix-git/doc/contributing.texi:198 +#: guix-git/doc/contributing.texi:210 msgid "@dots{} and for a REPL (@pxref{Using Guile Interactively,,, guile, Guile Reference Manual}):" msgstr "@dots{} et pour une REPL (@pxref{Using Guile Interactively,,, guile, Guile Reference Manual}) :" #. type: example -#: guix-git/doc/contributing.texi:213 +#: guix-git/doc/contributing.texi:225 #, no-wrap msgid "" "$ ./pre-inst-env guile\n" @@ -510,44 +531,69 @@ msgstr "" "$1 = 361\n" #. type: Plain text -#: guix-git/doc/contributing.texi:221 +#: guix-git/doc/contributing.texi:233 msgid "If you are hacking on the daemon and its supporting code or if @command{guix-daemon} is not already running on your system, you can launch it straight from the build tree@footnote{The @option{-E} flag to @command{sudo} guarantees that @code{GUILE_LOAD_PATH} is correctly set such that @command{guix-daemon} and the tools it uses can find the Guile modules they need.}:" msgstr "Si vous travaillez sur le démon et son code supporté ou si @command{guix-daemon} n'est pas déjà lancé sur votre système, vous pouvez le lancer directement depuis l'arborescence de construction@footnote{Le drapeau @option{-E} de @command{sudo} garantit que @code{GUILE_LOAD_PATH} est correctement configuré de sorte que @command{guix-daemon} et les outils qu'il utilise puissent trouver les modules Guile dont ils ont besoin.} :" #. type: example -#: guix-git/doc/contributing.texi:224 +#: guix-git/doc/contributing.texi:236 #, no-wrap msgid "$ sudo -E ./pre-inst-env guix-daemon --build-users-group=guixbuild\n" msgstr "$ sudo -E ./pre-inst-env guix-daemon --build-users-group=guixbuild\n" #. type: Plain text -#: guix-git/doc/contributing.texi:228 +#: guix-git/doc/contributing.texi:240 msgid "The @command{pre-inst-env} script sets up all the environment variables necessary to support this, including @env{PATH} and @env{GUILE_LOAD_PATH}." msgstr "Le script @command{pre-inst-env} paramètre toutes les variables d'environnement nécessaires, dont @env{PATH} et @env{GUILE_LOAD_PATH}." #. type: Plain text -#: guix-git/doc/contributing.texi:233 +#: guix-git/doc/contributing.texi:245 msgid "Note that @command{./pre-inst-env guix pull} does @emph{not} upgrade the local source tree; it simply updates the @file{~/.config/guix/current} symlink (@pxref{Invoking guix pull}). Run @command{git pull} instead if you want to upgrade your local source tree." msgstr "Remarquez que @command{./pre-inst-env guix pull} ne met @emph{pas} à jour l'arborescence des sources locale ; cela met seulement à jour le lien symbolique de @file{~/.config/guix/current} (@pxref{Invoking guix pull}). Lancez @command{git pull} à la place si vous voulez mettre à jour votre arborescence des source locale." #. type: Plain text -#: guix-git/doc/contributing.texi:243 +#: guix-git/doc/contributing.texi:249 +msgid "Sometimes, especially if you have recently updated your repository, running @command{./pre-inst-env} will print a message similar to the following example:" +msgstr "Parfois, surtout si vous avez récemment mis à jour votre dépôt, lancer @command{./pre-inst-env} affichera des messages semblables à l'exemple suivant :" + +#. type: example +#: guix-git/doc/contributing.texi:253 +#, no-wrap +msgid "" +";;; note: source file /home/user/projects/guix/guix/progress.scm\n" +";;; newer than compiled /home/user/projects/guix/guix/progress.go\n" +msgstr "" +";;; note: source file /home/user/projects/guix/guix/progress.scm\n" +";;; newer than compiled /home/user/projects/guix/guix/progress.go\n" + +#. type: Plain text +#: guix-git/doc/contributing.texi:259 +msgid "This is only a note and you can safely ignore it. You can get rid of the message by running @command{make -j4}. Until you do, Guile will run slightly slower because it will interpret the code instead of using prepared Guile object (@file{.go}) files." +msgstr "Ce n'est qu'une remarque et vous pouvez l'ignorer sans problème. Vous pouvez vous débarrasser de ce message en lançant @command{make -j4}. Jusqu'à ce que vous fassiez cela, Guile sera un tout petit peu plus lent parce qu'il doit interpréter le code au lieu d'utiliser les fichiers objets Guile (@file{.go}) précompilés." + +#. type: Plain text +#: guix-git/doc/contributing.texi:264 +msgid "You can run @command{make} automatically as you work using @command{watchexec} from the @code{watchexec} package. For example, to build again each time you update a package file, you can run @samp{watchexec -w gnu/packages make -j4}." +msgstr "Vous pouvez lancer @command{make} automatiquement quand vous travaillez avec @command{watchexec} du paquet @code{watchexec}. Par exemple, pour construire de nouveau à chaque fois que vous modifiez un fichier de paquet vous pouvez lancer @samp{watchexec -w gnu/packages make -j4}." + +#. type: Plain text +#: guix-git/doc/contributing.texi:273 msgid "The Perfect Setup to hack on Guix is basically the perfect setup used for Guile hacking (@pxref{Using Guile in Emacs,,, guile, Guile Reference Manual}). First, you need more than an editor, you need @url{https://www.gnu.org/software/emacs, Emacs}, empowered by the wonderful @url{https://nongnu.org/geiser/, Geiser}. To set that up, run:" msgstr "La configuration parfaite pour travailler sur Guix est simplement la configuration parfaite pour travailler en Guile (@pxref{Using Guile in Emacs,,, guile, Guile Reference Manual}). Tout d'abord, vous avez besoin de mieux qu'un éditeur de texte, vous avez besoin de @url{http://www.gnu.org/software/emacs, Emacs}, amélioré par le superbe @url{http://nongnu.org/geiser/, Geiser}. Pour paramétrer cela, lancez :" #. type: example -#: guix-git/doc/contributing.texi:246 +#: guix-git/doc/contributing.texi:276 #, no-wrap msgid "guix package -i emacs guile emacs-geiser emacs-geiser-guile\n" msgstr "guix package -i emacs guile emacs-geiser emacs-geiser-guile\n" #. type: Plain text -#: guix-git/doc/contributing.texi:255 +#: guix-git/doc/contributing.texi:285 msgid "Geiser allows for interactive and incremental development from within Emacs: code compilation and evaluation from within buffers, access to on-line documentation (docstrings), context-sensitive completion, @kbd{M-.} to jump to an object definition, a REPL to try out your code, and more (@pxref{Introduction,,, geiser, Geiser User Manual}). For convenient Guix development, make sure to augment Guile’s load path so that it finds source files from your checkout:" msgstr "Geiser permet le développement interactif et incrémental depuis Emacs : la compilation du code et son évaluation depuis les tampons, l'accès à la documentation en ligne (docstrings), la complétion sensible au contexte, @kbd{M-.} pour sauter à la définition d'un objet, un REPL pour tester votre code, et bien plus (@pxref{Introduction,,, geiser, Geiser User Manual}). Pour travailler confortablement sur Guix, assurez-vous de modifier le chemin de chargement de Guile pour qu'il trouve les fichiers source de votre dépôt :" #. type: lisp -#: guix-git/doc/contributing.texi:260 +#: guix-git/doc/contributing.texi:290 #, no-wrap msgid "" ";; @r{Assuming the Guix checkout is in ~/src/guix.}\n" @@ -559,35 +605,35 @@ msgstr "" " (add-to-list 'geiser-guile-load-path \"~/src/guix\"))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:268 +#: guix-git/doc/contributing.texi:298 msgid "To actually edit the code, Emacs already has a neat Scheme mode. But in addition to that, you must not miss @url{https://www.emacswiki.org/emacs/ParEdit, Paredit}. It provides facilities to directly operate on the syntax tree, such as raising an s-expression or wrapping it, swallowing or rejecting the following s-expression, etc." msgstr "Pour effectivement éditer le code, Emacs a déjà un très bon mode Scheme. Mais en plus de ça, vous ne devez pas rater @url{http://www.emacswiki.org/emacs/ParEdit, Paredit}. Il fournit des fonctionnalités pour opérer directement sur l'arbre de syntaxe, comme relever une s-expression ou l'envelopper, absorber ou rejeter la s-expression suivante, etc." #. type: cindex -#: guix-git/doc/contributing.texi:269 +#: guix-git/doc/contributing.texi:299 #, no-wrap msgid "code snippets" msgstr "extraits de code" #. type: cindex -#: guix-git/doc/contributing.texi:270 +#: guix-git/doc/contributing.texi:300 #, no-wrap msgid "templates" msgstr "modèles" #. type: cindex -#: guix-git/doc/contributing.texi:271 +#: guix-git/doc/contributing.texi:301 #, no-wrap msgid "reducing boilerplate" msgstr "réduire la quantité de code commun" #. type: Plain text -#: guix-git/doc/contributing.texi:278 +#: guix-git/doc/contributing.texi:308 msgid "We also provide templates for common git commit messages and package definitions in the @file{etc/snippets} directory. These templates can be used with @url{https://joaotavora.github.io/yasnippet/, YASnippet} to expand short trigger strings to interactive text snippets. You may want to add the snippets directory to the @var{yas-snippet-dirs} variable in Emacs." msgstr "Nous fournissons aussi des modèles pour les messages de commit git courants et les définitions de paquets dans le répertoire @file{etc/snippets}. Ces modèles s'utilisent avec @url{http://joaotavora.github.io/yasnippet/, YASnippet} pour développer de courtes chaînes de déclenchement en extraits de texte interactifs. Vous pouvez ajouter le répertoire des modèles dans la variables @var{yas-snippet-dirs} d'Emacs." #. type: lisp -#: guix-git/doc/contributing.texi:283 +#: guix-git/doc/contributing.texi:313 #, no-wrap msgid "" ";; @r{Assuming the Guix checkout is in ~/src/guix.}\n" @@ -599,40 +645,40 @@ msgstr "" " (add-to-list 'yas-snippet-dirs \"~/src/guix/etc/snippets\"))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:291 +#: guix-git/doc/contributing.texi:321 msgid "The commit message snippets depend on @url{https://magit.vc/, Magit} to display staged files. When editing a commit message type @code{add} followed by @kbd{TAB} to insert a commit message template for adding a package; type @code{update} followed by @kbd{TAB} to insert a template for updating a package; type @code{https} followed by @kbd{TAB} to insert a template for changing the home page URI of a package to HTTPS." msgstr "Les extraits de messages de commit dépendent de @url{https://magit.vc/, Magit} pour afficher les fichiers sélectionnés. Lors de la modification d'un message de commit, tapez @code{add} suivi de @kbd{TAB} pour insérer un modèle de message de commit pour ajouter un paquet ; tapez @code{update} suivi de @kbd{TAB} pour insérer un modèle pour la mise à jour d'un paquet ; tapez @code{https} suivi de @kbd{TAB} pour insérer un modèle pour le changement à HTTPS de l'URI de la page d'accueil." #. type: Plain text -#: guix-git/doc/contributing.texi:297 +#: guix-git/doc/contributing.texi:327 msgid "The main snippet for @code{scheme-mode} is triggered by typing @code{package...} followed by @kbd{TAB}. This snippet also inserts the trigger string @code{origin...}, which can be expanded further. The @code{origin} snippet in turn may insert other trigger strings ending on @code{...}, which also can be expanded further." msgstr "L'extrait principal pour @code{scheme-mode} est lancé en tapant @code{package…} suivi par @kbd{TAB}. Cet extrait insère aussi la chaîne de déclenchement @code{origin…}, qui peut aussi être étendue. L'extrait @code{origin} lui-même peut aussi insérer des chaînes de déclenchement qui finissent sur @code{…}, qui peuvent aussi être étendues." #. type: cindex -#: guix-git/doc/contributing.texi:298 +#: guix-git/doc/contributing.texi:328 #, no-wrap msgid "insert or update copyright" msgstr "insérer ou mettre à jour la ligne de copyright" #. type: code{#1} -#: guix-git/doc/contributing.texi:299 +#: guix-git/doc/contributing.texi:329 #, no-wrap msgid "M-x guix-copyright" msgstr "M-x guix-copyright" #. type: code{#1} -#: guix-git/doc/contributing.texi:300 +#: guix-git/doc/contributing.texi:330 #, no-wrap msgid "M-x copyright-update" msgstr "M-x copyright-update" #. type: Plain text -#: guix-git/doc/contributing.texi:304 +#: guix-git/doc/contributing.texi:334 msgid "We additionally provide insertion and automatic update of a copyright in @file{etc/copyright.el}. You may want to set your full name, mail, and load a file." msgstr "De plus, nous fournissons l'insertion et la mise à jour automatique d'une ligne de copyright dans @file{etc/copyright.el}. Vous voudrez sans doute indiquer votre nom complet, adresse de courriel et charger le fichier." #. type: lisp -#: guix-git/doc/contributing.texi:310 +#: guix-git/doc/contributing.texi:340 #, no-wrap msgid "" "(setq user-full-name \"Alice Doe\")\n" @@ -646,17 +692,17 @@ msgstr "" "(load-file \"~/src/guix/etc/copyright.el\")\n" #. type: Plain text -#: guix-git/doc/contributing.texi:313 +#: guix-git/doc/contributing.texi:343 msgid "To insert a copyright at the current line invoke @code{M-x guix-copyright}." msgstr "Pour insérer une ligne de copyright à la ligne actuelle invoquez @code{M-x guix-copyright}." #. type: Plain text -#: guix-git/doc/contributing.texi:315 +#: guix-git/doc/contributing.texi:345 msgid "To update a copyright you need to specify a @code{copyright-names-regexp}." msgstr "Pour mettre à jour une ligne de copyright vous devez spécifier un @code{copyright-names-regexp}." #. type: lisp -#: guix-git/doc/contributing.texi:319 +#: guix-git/doc/contributing.texi:349 #, no-wrap msgid "" "(setq copyright-names-regexp\n" @@ -666,281 +712,281 @@ msgstr "" " (format \"%s <%s>\" user-full-name user-mail-address))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:325 +#: guix-git/doc/contributing.texi:355 msgid "You can check if your copyright is up to date by evaluating @code{M-x copyright-update}. If you want to do it automatically after each buffer save then add @code{(add-hook 'after-save-hook 'copyright-update)} in Emacs." msgstr "Vous pouvez vérifier si votre ligne de copyright est à jour en évaluant @code{M-x copyright-update}. Si vous voulez le faire automatiquement après chaque sauvegarde de tampon ajoutez @code{(add-hook 'after-save-hook 'copyright-update)} dans Emacs." #. type: cindex -#: guix-git/doc/contributing.texi:329 +#: guix-git/doc/contributing.texi:359 #, no-wrap msgid "packages, creating" msgstr "paquets, création" #. type: Plain text -#: guix-git/doc/contributing.texi:333 +#: guix-git/doc/contributing.texi:363 msgid "The GNU distribution is nascent and may well lack some of your favorite packages. This section describes how you can help make the distribution grow." msgstr "La distribution GNU est jeune et vos paquets préférés peuvent manquer. Cette section décrit comment vous pouvez aider à agrandir la distribution." #. type: Plain text -#: guix-git/doc/contributing.texi:341 +#: guix-git/doc/contributing.texi:371 msgid "Free software packages are usually distributed in the form of @dfn{source code tarballs}---typically @file{tar.gz} files that contain all the source files. Adding a package to the distribution means essentially two things: adding a @dfn{recipe} that describes how to build the package, including a list of other packages required to build it, and adding @dfn{package metadata} along with that recipe, such as a description and licensing information." msgstr "Les paquets de logiciels libres sont habituellement distribués sous forme @dfn{d'archives de sources} — typiquement des fichiers @file{.tar.gz} contenant tous les fichiers sources. Ajouter un paquet à la distribution signifie en substance deux choses : ajouter une @dfn{recette} qui décrit comment construire le paquet, avec une liste d'autres paquets requis pour le construire, et ajouter des @dfn{métadonnées de paquet} avec la recette, comme une description et une licence." #. type: Plain text -#: guix-git/doc/contributing.texi:350 +#: guix-git/doc/contributing.texi:380 msgid "In Guix all this information is embodied in @dfn{package definitions}. Package definitions provide a high-level view of the package. They are written using the syntax of the Scheme programming language; in fact, for each package we define a variable bound to the package definition, and export that variable from a module (@pxref{Package Modules}). However, in-depth Scheme knowledge is @emph{not} a prerequisite for creating packages. For more information on package definitions, @pxref{Defining Packages}." msgstr "Dans Guix, toutes ces informations sont incorporées dans les @dfn{définitions de paquets}. Les définitions de paquets fournissent une vue de haut-niveau du paquet. Elles sont écrites avec la syntaxe du langage de programmation Scheme ; en fait, pour chaque paquet nous définissons une variable liée à la définition et exportons cette variable à partir d'un module (@pxref{Package Modules}). Cependant, il n'est @emph{pas} nécessaire d'avoir une connaissance approfondie du Scheme pour créer des paquets. Pour plus d'informations sur les définitions des paquets, @pxref{Defining Packages}." #. type: Plain text -#: guix-git/doc/contributing.texi:356 +#: guix-git/doc/contributing.texi:386 msgid "Once a package definition is in place, stored in a file in the Guix source tree, it can be tested using the @command{guix build} command (@pxref{Invoking guix build}). For example, assuming the new package is called @code{gnew}, you may run this command from the Guix build tree (@pxref{Running Guix Before It Is Installed}):" msgstr "Une fois une définition de paquet en place, stocké dans un fichier de l'arborescence des sources de Guix, il peut être testé avec la commande @command{guix build} (@pxref{Invoking guix build}). Par exemple, en supposant que le nouveau paquet s'appelle @code{gnew}, vous pouvez lancer cette commande depuis l'arborescence de construction de Guix (@pxref{Running Guix Before It Is Installed}) :" #. type: example -#: guix-git/doc/contributing.texi:359 +#: guix-git/doc/contributing.texi:389 #, no-wrap msgid "./pre-inst-env guix build gnew --keep-failed\n" msgstr "./pre-inst-env guix build gnew --keep-failed\n" #. type: Plain text -#: guix-git/doc/contributing.texi:365 +#: guix-git/doc/contributing.texi:395 msgid "Using @code{--keep-failed} makes it easier to debug build failures since it provides access to the failed build tree. Another useful command-line option when debugging is @code{--log-file}, to access the build log." msgstr "Utiliser @code{--keep-failed} rend facile le débogage des échecs car il fournit l'accès à l'arborescence de construction qui a échouée. Une autre sous-commande utile pour le débogage est @code{--log-file}, pour accéder au journal de construction." #. type: Plain text -#: guix-git/doc/contributing.texi:370 +#: guix-git/doc/contributing.texi:400 msgid "If the package is unknown to the @command{guix} command, it may be that the source file contains a syntax error, or lacks a @code{define-public} clause to export the package variable. To figure it out, you may load the module from Guile to get more information about the actual error:" msgstr "Si le paquet n'est pas connu de la commande @command{guix}, il se peut que le fichier source ait une erreur de syntaxe, ou qu'il manque une clause @code{define-public} pour exporter la variable du paquet. Pour comprendre cela, vous pouvez charger le module depuis Guile pour avoir plus d'informations sur la véritable erreur :" #. type: example -#: guix-git/doc/contributing.texi:373 +#: guix-git/doc/contributing.texi:403 #, no-wrap msgid "./pre-inst-env guile -c '(use-modules (gnu packages gnew))'\n" msgstr "./pre-inst-env guile -c '(use-modules (gnu packages gnew))'\n" #. type: Plain text -#: guix-git/doc/contributing.texi:380 +#: guix-git/doc/contributing.texi:410 msgid "Once your package builds correctly, please send us a patch (@pxref{Submitting Patches}). Well, if you need help, we will be happy to help you too. Once the patch is committed in the Guix repository, the new package automatically gets built on the supported platforms by @url{https://@value{SUBSTITUTE-SERVER-1}, our continuous integration system}." msgstr "Une fois que votre paquet est correctement construit, envoyez-nous un correctif (@pxref{Contributing}). Enfin, si vous avez besoin d'aide, nous serons ravis de vous aider aussi. Une fois que le correctif soumis est commité dans le dépôt Guix, le nouveau paquet est automatiquement construit sur les plate-formes supportées par @url{https://@value{SUBSTITUTE-SERVER-1}, notre système d'intégration continue}." #. type: cindex -#: guix-git/doc/contributing.texi:381 +#: guix-git/doc/contributing.texi:411 #, no-wrap msgid "substituter" msgstr "substitution" #. type: Plain text -#: guix-git/doc/contributing.texi:388 +#: guix-git/doc/contributing.texi:418 msgid "Users can obtain the new package definition simply by running @command{guix pull} (@pxref{Invoking guix pull}). When @code{@value{SUBSTITUTE-SERVER-1}} is done building the package, installing the package automatically downloads binaries from there (@pxref{Substitutes}). The only place where human intervention is needed is to review and apply the patch." msgstr "On peut obtenir la nouvelle définition du paquet simplement en lançant @command{guix pull} (@pxref{Invoking guix pull}). Lorsque @code{@value{SUBSTITUTE-SERVER-1}} a fini de construire le paquet, l'installation du paquet y télécharge automatiquement les binaires (@pxref{Substituts}). La seule intervention humaine requise est pendant la revue et l'application du correctif." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:404 -#: guix-git/doc/contributing.texi:405 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:434 +#: guix-git/doc/contributing.texi:435 #, no-wrap msgid "Software Freedom" msgstr "Liberté logiciel" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "What may go into the distribution." msgstr "Ce que la distribution peut contenir." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:432 -#: guix-git/doc/contributing.texi:433 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:462 +#: guix-git/doc/contributing.texi:463 #, no-wrap msgid "Package Naming" msgstr "Conventions de nommage" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "What's in a name?" msgstr "Qu'est-ce qu'un bon nom ?" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:465 -#: guix-git/doc/contributing.texi:466 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:495 +#: guix-git/doc/contributing.texi:496 #, no-wrap msgid "Version Numbers" msgstr "Numéros de version" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "When the name is not enough." msgstr "Lorsque le nom n'est pas suffisant." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:572 -#: guix-git/doc/contributing.texi:573 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:602 +#: guix-git/doc/contributing.texi:603 #, no-wrap msgid "Synopses and Descriptions" msgstr "Synopsis et descriptions" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Helping users find the right package." msgstr "Aider les utilisateur·rices à trouver le bon paquet." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:651 -#: guix-git/doc/contributing.texi:652 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:681 +#: guix-git/doc/contributing.texi:682 #, no-wrap msgid "Snippets versus Phases" msgstr "Substituts ou Phases" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Whether to use a snippet, or a build phase." msgstr "Qu'il s'agisse d'un substitut ou d'une phase de construction." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:666 -#: guix-git/doc/contributing.texi:667 guix-git/doc/guix.texi:1995 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:696 +#: guix-git/doc/contributing.texi:697 guix-git/doc/guix.texi:2012 #, no-wrap msgid "Emacs Packages" msgstr "Paquets emacs" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Your Elisp fix." msgstr "Votre dose d'Elisp." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:706 -#: guix-git/doc/contributing.texi:707 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:736 +#: guix-git/doc/contributing.texi:737 #, no-wrap msgid "Python Modules" msgstr "Modules Python" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "A touch of British comedy." msgstr "Un peu de comédie anglaise." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:782 -#: guix-git/doc/contributing.texi:783 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:812 +#: guix-git/doc/contributing.texi:813 #, no-wrap msgid "Perl Modules" msgstr "Modules Perl" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Little pearls." msgstr "Petites perles." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:798 -#: guix-git/doc/contributing.texi:799 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:828 +#: guix-git/doc/contributing.texi:829 #, no-wrap msgid "Java Packages" msgstr "Paquets Java" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Coffee break." msgstr "Pause café." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:818 -#: guix-git/doc/contributing.texi:819 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:848 +#: guix-git/doc/contributing.texi:849 #, no-wrap msgid "Rust Crates" msgstr "Paquets Rust" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Beware of oxidation." msgstr "Attention à l'oxydation." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:852 -#: guix-git/doc/contributing.texi:853 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:882 +#: guix-git/doc/contributing.texi:883 #, no-wrap msgid "Fonts" msgstr "Polices de caractères" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Fond of fonts." msgstr "À fond les fontes." #. type: cindex -#: guix-git/doc/contributing.texi:408 +#: guix-git/doc/contributing.texi:438 #, no-wrap msgid "free software" msgstr "logiciel libre" #. type: Plain text -#: guix-git/doc/contributing.texi:416 +#: guix-git/doc/contributing.texi:446 msgid "The GNU operating system has been developed so that users can have freedom in their computing. GNU is @dfn{free software}, meaning that users have the @url{https://www.gnu.org/philosophy/free-sw.html,four essential freedoms}: to run the program, to study and change the program in source code form, to redistribute exact copies, and to distribute modified versions. Packages found in the GNU distribution provide only software that conveys these four freedoms." msgstr "Le système d'exploitation GNU a été développé pour que les utilisatrices et utilisateurs puissent utiliser leur ordinateur en toute liberté. GNU est un @dfn{logiciel libre}, ce qui signifie que chaque personne l'utilisant bénéficie des @url{https://www.gnu.org/philosophy/free-sw.fr.html,quatre libertés essentielles} : exécuter le programmer, étudier et modifier le programme sous sa forme source, redistribuer des copies exactes et distribuer les versions modifiées. Les paquets qui se trouvent dans la distribution GNU ne fournissent que des logiciels qui respectent ces quatre libertés." #. type: Plain text -#: guix-git/doc/contributing.texi:422 +#: guix-git/doc/contributing.texi:452 msgid "In addition, the GNU distribution follow the @url{https://www.gnu.org/distros/free-system-distribution-guidelines.html,free software distribution guidelines}. Among other things, these guidelines reject non-free firmware, recommendations of non-free software, and discuss ways to deal with trademarks and patents." msgstr "En plus, la distribution GNU suit les @url{https://www.gnu.org/distros/free-system-distribution-guidelines.html,recommandations pour les distributions systèmes libres}. Entre autres choses, ces recommandations rejettent les microgiciels non libres, les recommandations de logiciels non libres et discute des façon de gérer les marques et les brevets." #. type: Plain text -#: guix-git/doc/contributing.texi:430 +#: guix-git/doc/contributing.texi:460 msgid "Some otherwise free upstream package sources contain a small and optional subset that violates the above guidelines, for instance because this subset is itself non-free code. When that happens, the offending items are removed with appropriate patches or code snippets in the @code{origin} form of the package (@pxref{Defining Packages}). This way, @code{guix build --source} returns the ``freed'' source rather than the unmodified upstream source." msgstr "Certaines sources amont autrement parfaitement libres contiennent une petite partie facultative qui viole les recommandations ci-dessus, par exemple car cette partie est du code non-libre. Lorsque cela arrive, les éléments en question sont supprimés avec des correctifs ou des bouts de codes appropriés dans la forme @code{origin} du paquet (@pxref{Defining Packages}). De cette manière, @code{guix build --source} renvoie la source « libérée » plutôt que la source amont sans modification." #. type: cindex -#: guix-git/doc/contributing.texi:435 +#: guix-git/doc/contributing.texi:465 #, no-wrap msgid "package name" msgstr "nom du paquet" #. type: Plain text -#: guix-git/doc/contributing.texi:443 +#: guix-git/doc/contributing.texi:473 msgid "A package actually has two names associated with it. First, there is the name of the @emph{Scheme variable}, the one following @code{define-public}. By this name, the package can be made known in the Scheme code, for instance as input to another package. Second, there is the string in the @code{name} field of a package definition. This name is used by package management commands such as @command{guix package} and @command{guix build}." msgstr "Un paquet a en fait deux noms qui lui sont associés. Premièrement il y a le nom de la @emph{variable Scheme}, celui qui suit @code{define-public}. Par ce nom, le paquet peut se faire connaître par le code Scheme, par exemple comme entrée d'un autre paquet. Deuxièmement, il y a la chaîne dans le champ @code{name} d'une définition de paquet. Ce nom est utilisé par les commandes de gestion des paquets comme @command{guix package} et @command{guix build}." #. type: Plain text -#: guix-git/doc/contributing.texi:448 +#: guix-git/doc/contributing.texi:478 msgid "Both are usually the same and correspond to the lowercase conversion of the project name chosen upstream, with underscores replaced with hyphens. For instance, GNUnet is available as @code{gnunet}, and SDL_net as @code{sdl-net}." msgstr "Les deux sont habituellement les mêmes et correspondent à la conversion en minuscule du nom du projet choisi en amont, où les underscores sont remplacés par des tirets. Par exemple, GNUnet est disponible en tant que @code{gnunet} et SDL_net en tant que @code{sdl-net}." #. type: Plain text -#: guix-git/doc/contributing.texi:456 +#: guix-git/doc/contributing.texi:486 msgid "A noteworthy exception to this rule is when the project name is only a single character, or if an older maintained project with the same name already exists---regardless of whether it has already been packaged for Guix. Use common sense to make such names unambiguous and meaningful. For example, Guix's package for the shell called ``s'' upstream is @code{s-shell} and @emph{not} @code{s}. Feel free to ask your fellow hackers for inspiration." msgstr "Une exception notable à cette règle est lorsque le nom du projet consiste en un unique caractère, ou si un projet maintenu plus ancien avec le même nom existe déjà — indépendamment de s'il a été empaqueté dans Guix on nom. Utilisez votre bon sens pour éviter de rendre ces noms ambigües et de leur enlever leur sens. Par exemple, le paquet Guix pour le shell nommé « s » en amont est @code{s-shell} et @emph{pas} @code{s}. N'hésitez pas à demander si vous êtes en panne d'inspiration." #. type: Plain text -#: guix-git/doc/contributing.texi:461 +#: guix-git/doc/contributing.texi:491 msgid "We do not add @code{lib} prefixes for library packages, unless these are already part of the official project name. But @pxref{Python Modules} and @ref{Perl Modules} for special rules concerning modules for the Python and Perl languages." msgstr "Nous n'ajoutons pas de préfixe @code{lib} au bibliothèques de paquets, à moins qu'il ne fasse partie du nom officiel du projet. Mais @pxref{Python Modules} et @ref{Perl Modules} pour des règles spéciales concernant les modules pour les langages Python et Perl." #. type: Plain text -#: guix-git/doc/contributing.texi:463 +#: guix-git/doc/contributing.texi:493 msgid "Font package names are handled differently, @pxref{Fonts}." msgstr "Les noms de paquets de polices sont gérés différemment, @pxref{Fonts}." #. type: cindex -#: guix-git/doc/contributing.texi:468 +#: guix-git/doc/contributing.texi:498 #, no-wrap msgid "package version" msgstr "version du paquet" #. type: Plain text -#: guix-git/doc/contributing.texi:477 +#: guix-git/doc/contributing.texi:507 msgid "We usually package only the latest version of a given free software project. But sometimes, for instance for incompatible library versions, two (or more) versions of the same package are needed. These require different Scheme variable names. We use the name as defined in @ref{Package Naming} for the most recent version; previous versions use the same name, suffixed by @code{-} and the smallest prefix of the version number that may distinguish the two versions." msgstr "Nous n'incluons en général que la dernière version d'un projet de logiciel libre donné. Mais parfois, par exemple pour des versions incompatibles de bibliothèques, deux (ou plus) versions du même paquet sont requises. Elles ont besoin d'un nom de variable Scheme différent. Nous utilisons le nom défini dans @ref{Package Naming} pour la version la plus récente ; les versions précédentes utilisent le même nom, suffixé par @code{-} et le plus petit préfixe du numéro de version qui permet de distinguer deux versions." #. type: Plain text -#: guix-git/doc/contributing.texi:480 +#: guix-git/doc/contributing.texi:510 msgid "The name inside the package definition is the same for all versions of a package and does not contain any version number." msgstr "Le nom dans la définition du paquet est le même pour toutes les versions d'un paquet et ne contient pas de numéro de version." #. type: Plain text -#: guix-git/doc/contributing.texi:482 +#: guix-git/doc/contributing.texi:512 msgid "For instance, the versions 2.24.20 and 3.9.12 of GTK+ may be packaged as follows:" msgstr "Par exemple, les version 2.24.20 et 3.9.12 de GTK+ peuvent être inclus de cette manière :" #. type: lisp -#: guix-git/doc/contributing.texi:494 +#: guix-git/doc/contributing.texi:524 #, no-wrap msgid "" "(define-public gtk+\n" @@ -966,12 +1012,12 @@ msgstr "" " ...))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:496 +#: guix-git/doc/contributing.texi:526 msgid "If we also wanted GTK+ 3.8.2, this would be packaged as" msgstr "Si nous voulons aussi GTK+ 3.8.2, cela serait inclus de cette manière" #. type: lisp -#: guix-git/doc/contributing.texi:502 +#: guix-git/doc/contributing.texi:532 #, no-wrap msgid "" "(define-public gtk+-3.8\n" @@ -987,23 +1033,23 @@ msgstr "" " ...))\n" #. type: cindex -#: guix-git/doc/contributing.texi:506 +#: guix-git/doc/contributing.texi:536 #, no-wrap msgid "version number, for VCS snapshots" msgstr "numéro de version, pour les instantanés des systèmes de contrôle de version" #. type: Plain text -#: guix-git/doc/contributing.texi:512 +#: guix-git/doc/contributing.texi:542 msgid "Occasionally, we package snapshots of upstream's version control system (VCS) instead of formal releases. This should remain exceptional, because it is up to upstream developers to clarify what the stable release is. Yet, it is sometimes necessary. So, what should we put in the @code{version} field?" msgstr "Parfois, nous incluons des paquets provenant d'instantanés de systèmes de contrôle de version (VCS) au lieu de versions publiées formellement. Cela devrait rester exceptionnel, car c'est le rôle des développeurs amont de spécifier quel est la version stable. Cependant, c'est parfois nécessaire. Donc, que faut-il mettre dans le champ @code{version} ?" #. type: Plain text -#: guix-git/doc/contributing.texi:520 +#: guix-git/doc/contributing.texi:550 msgid "Clearly, we need to make the commit identifier of the VCS snapshot visible in the version string, but we also need to make sure that the version string is monotonically increasing so that @command{guix package --upgrade} can determine which version is newer. Since commit identifiers, notably with Git, are not monotonically increasing, we add a revision number that we increase each time we upgrade to a newer snapshot. The resulting version string looks like this:" msgstr "Clairement, nous devons rendre l'identifiant de commit de l'instantané du VCS visible dans la version, mais nous devons aussi nous assurer que la version augmente de manière monotone pour que @command{guix package --upgrade} puisse déterminer quelle version est la plus récente. Comme les identifiants de commits, notamment avec Git, n'augmentent pas, nous ajoutons un numéro de révision qui nous augmentons à chaque fois que nous mettons à jour vers un nouvel instantané. La chaîne qui en résulte ressemble à cela :" #. type: example -#: guix-git/doc/contributing.texi:529 +#: guix-git/doc/contributing.texi:559 #, no-wrap msgid "" "2.0.11-3.cabba9e\n" @@ -1023,12 +1069,12 @@ msgstr "" "dernière version en amont\n" #. type: Plain text -#: guix-git/doc/contributing.texi:539 +#: guix-git/doc/contributing.texi:569 msgid "It is a good idea to strip commit identifiers in the @code{version} field to, say, 7 digits. It avoids an aesthetic annoyance (assuming aesthetics have a role to play here) as well as problems related to OS limits such as the maximum shebang length (127 bytes for the Linux kernel). There are helper functions for doing this for packages using @code{git-fetch} or @code{hg-fetch} (see below). It is best to use the full commit identifiers in @code{origin}s, though, to avoid ambiguities. A typical package definition may look like this:" msgstr "C'est une bonne idée de tronquer les identifiants dans le champ @code{version} à disons 7 caractères. Cela évite un problème esthétique (en supposant que l'esthétique ait un rôle à jouer ici) et des problèmes avec les limites de l'OS comme la longueur maximale d'un shebang (127 octets pour le noyau Linux). Il y a des fonctions auxiliaires pour faire cela avec les paquets qui utilisent @code{git-fetch} ou @code{hg-fetch} (voir plus bas). Il vaut mieux cependant utiliser l'identifiant de commit complet dans @code{origin}, pour éviter les ambiguïtés. Une définition de paquet peut ressembler à ceci :" #. type: lisp -#: guix-git/doc/contributing.texi:556 +#: guix-git/doc/contributing.texi:586 #, no-wrap msgid "" "(define my-package\n" @@ -1062,18 +1108,18 @@ msgstr "" " )))\n" #. type: deffn -#: guix-git/doc/contributing.texi:558 +#: guix-git/doc/contributing.texi:588 #, no-wrap msgid "{Scheme Procedure} git-version @var{VERSION} @var{REVISION} @var{COMMIT}" msgstr "{Procédure Scheme} git-version @var{VERSION} @var{REVISION} @var{COMMIT}" #. type: deffn -#: guix-git/doc/contributing.texi:560 +#: guix-git/doc/contributing.texi:590 msgid "Return the version string for packages using @code{git-fetch}." msgstr "Renvoie la chaîne de version pour les paquets qui utilisent @code{git-fetch}." #. type: lisp -#: guix-git/doc/contributing.texi:564 +#: guix-git/doc/contributing.texi:594 #, no-wrap msgid "" "(git-version \"0.2.3\" \"0\" \"93818c936ee7e2f1ba1b315578bde363a7d43d05\")\n" @@ -1083,71 +1129,71 @@ msgstr "" "@result{} \"0.2.3-0.93818c9\"\n" #. type: deffn -#: guix-git/doc/contributing.texi:567 +#: guix-git/doc/contributing.texi:597 #, no-wrap msgid "{Scheme Procedure} hg-version @var{VERSION} @var{REVISION} @var{CHANGESET}" msgstr "{Procédure Scheme} hg-version @var{VERSION} @var{REVISION} @var{CHANGESET}" #. type: deffn -#: guix-git/doc/contributing.texi:570 +#: guix-git/doc/contributing.texi:600 msgid "Return the version string for packages using @code{hg-fetch}. It works in the same way as @code{git-version}." msgstr "Renvoie la chaîne de version pour les paquets qui utilisent @code{hg-fetch}. Cela fonctionne de la même manière que @code{git-fetch}." #. type: cindex -#: guix-git/doc/contributing.texi:575 +#: guix-git/doc/contributing.texi:605 #, no-wrap msgid "package description" msgstr "description du paquet" #. type: cindex -#: guix-git/doc/contributing.texi:576 +#: guix-git/doc/contributing.texi:606 #, no-wrap msgid "package synopsis" msgstr "résumé du paquet" #. type: Plain text -#: guix-git/doc/contributing.texi:583 +#: guix-git/doc/contributing.texi:613 msgid "As we have seen before, each package in GNU@tie{}Guix includes a synopsis and a description (@pxref{Defining Packages}). Synopses and descriptions are important: They are what @command{guix package --search} searches, and a crucial piece of information to help users determine whether a given package suits their needs. Consequently, packagers should pay attention to what goes into them." msgstr "Comme nous l'avons vu avant, chaque paquet dans GNU@tie{}Guix contient un résumé et une description (@pxref{Defining Packages}). Les résumés et les descriptions sont importants : ce sont eux que recherche @command{guix package --search}, et c'est une source d'informations cruciale pour aider les utilisateur·rices à déterminer si un paquet donné correspond à leurs besoins. En conséquence, il convient de prêter attention à leur contenu lorsqu'on travaille sur un paquet." #. type: Plain text -#: guix-git/doc/contributing.texi:591 +#: guix-git/doc/contributing.texi:621 msgid "Synopses must start with a capital letter and must not end with a period. They must not start with ``a'' or ``the'', which usually does not bring anything; for instance, prefer ``File-frobbing tool'' over ``A tool that frobs files''. The synopsis should say what the package is---e.g., ``Core GNU utilities (file, text, shell)''---or what it is used for---e.g., the synopsis for GNU@tie{}grep is ``Print lines matching a pattern''." msgstr "Les résumés doivent commencer par une lettre capitale et ne doit pas finir par un point. Ils ne doivent pas commencer par « a » ou « the » (« un » ou « le/la »), ce qui n'apporte généralement rien ; par exemple, préférez « File-frobbing tool » (« Outil de frobage de fichier ») à « A tool that frobs file » (« Un outil qui frobe les fichiers »). Le résumé devrait dire ce que le paquet est — p.@: ex.@: « Utilitaire du cœur de GNU (fichier, text, shell) » — ou ce à quoi il sert — p.@: ex.@: le résumé de grep est « Affiche des lignes correspondant à un motif »." #. type: Plain text -#: guix-git/doc/contributing.texi:601 +#: guix-git/doc/contributing.texi:631 msgid "Keep in mind that the synopsis must be meaningful for a very wide audience. For example, ``Manipulate alignments in the SAM format'' might make sense for a seasoned bioinformatics researcher, but might be fairly unhelpful or even misleading to a non-specialized audience. It is a good idea to come up with a synopsis that gives an idea of the application domain of the package. In this example, this might give something like ``Manipulate nucleotide sequence alignments'', which hopefully gives the user a better idea of whether this is what they are looking for." msgstr "Gardez à l'esprit que le résumé doit avoir du sens pour un large public. Par exemple « Manipulation d'alignements au format SAM » peut avoir du sens pour un bioinformaticien chevronné, mais n'aidera pas ou pourra perdre une audience de non-spécialistes. C'est une bonne idée de créer un résumé qui donne une idée du domaine d'application du paquet. Dans cet exemple, cela donnerait « Manipulation d'alignements de séquences de nucléotides », ce qui devrait donner une meilleure idée à la personne qui le lit pour savoir si c'est ce qu'elle recherche." #. type: Plain text -#: guix-git/doc/contributing.texi:609 +#: guix-git/doc/contributing.texi:639 msgid "Descriptions should take between five and ten lines. Use full sentences, and avoid using acronyms without first introducing them. Please avoid marketing phrases such as ``world-leading'', ``industrial-strength'', and ``next-generation'', and avoid superlatives like ``the most advanced''---they are not helpful to users looking for a package and may even sound suspicious. Instead, try to be factual, mentioning use cases and features." msgstr "Les descriptions devraient faire entre cinq et dix lignes. Utilisez des phrases complètes, et évitez d'utiliser des acronymes sans les introduire d'abord. Évitez les expressions commerciales comme « world-leading », « industrial-strength » et « next-generation » et évitez les superlatifs comme « the most advanced » — ils ne sont pas utiles aux personnes qui cherchent un paquet et semblent même un peu suspects. À la place, essayez d'être factuels, en mentionnant les cas d'utilisation et les fonctionnalités." #. type: cindex -#: guix-git/doc/contributing.texi:610 +#: guix-git/doc/contributing.texi:640 #, no-wrap msgid "Texinfo markup, in package descriptions" msgstr "Balisage texinfo, dans les descriptions de paquets" #. type: Plain text -#: guix-git/doc/contributing.texi:619 +#: guix-git/doc/contributing.texi:649 msgid "Descriptions can include Texinfo markup, which is useful to introduce ornaments such as @code{@@code} or @code{@@dfn}, bullet lists, or hyperlinks (@pxref{Overview,,, texinfo, GNU Texinfo}). However you should be careful when using some characters for example @samp{@@} and curly braces which are the basic special characters in Texinfo (@pxref{Special Characters,,, texinfo, GNU Texinfo}). User interfaces such as @command{guix package --show} take care of rendering it appropriately." msgstr "Les descriptions peuvent inclure du balisage Texinfo, ce qui est utile pour introduire des ornements comme @code{@@code} ou @code{@@dfn}, des listes à points ou des hyperliens (@pxref{Overview,,, texinfo, GNU Texinfo}). Cependant soyez prudents lorsque vous utilisez certains symboles, par exemple @samp{@@} et les accolades qui sont les caractères spéciaux de base en Texinfo (@pxref{Special Characters,,, texinfo, GNU Texinfo}). Les commandes et outils comme @command{guix package --show} prennent en charge le rendu." #. type: Plain text -#: guix-git/doc/contributing.texi:625 +#: guix-git/doc/contributing.texi:655 msgid "Synopses and descriptions are translated by volunteers @uref{https://translate.fedoraproject.org/projects/guix/packages, at Weblate} so that as many users as possible can read them in their native language. User interfaces search them and display them in the language specified by the current locale." msgstr "Les résumés et les descriptions sont traduits par des volontaires @uref{https://translate.fedoraproject.org/projects/guix/packages, sur Weblate} pour que le plus de personnes possible puissent les lire dans leur langue natale. Les interfaces les recherchent et les affichent dans la langue spécifiée par le paramètre de régionalisation actuel." #. type: Plain text -#: guix-git/doc/contributing.texi:630 +#: guix-git/doc/contributing.texi:660 msgid "To allow @command{xgettext} to extract them as translatable strings, synopses and descriptions @emph{must be literal strings}. This means that you cannot use @code{string-append} or @code{format} to construct these strings:" msgstr "Pour permettre à @command{xgettext} de les extraire comme des chaînes traduisibles, les résumés et les descriptions @emph{doivent être des chaînes litérales}. Cela signifie que vous ne pouvez pas utiliser @code{string-append} ou @code{format} pour construire ces chaînes :" #. type: lisp -#: guix-git/doc/contributing.texi:636 +#: guix-git/doc/contributing.texi:666 #, no-wrap msgid "" "(package\n" @@ -1161,12 +1207,12 @@ msgstr "" " (description (string-append \"Ceci n'est \" \"*pas*\" \" traduisible.\")))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:644 +#: guix-git/doc/contributing.texi:674 msgid "Translation is a lot of work so, as a packager, please pay even more attention to your synopses and descriptions as every change may entail additional work for translators. In order to help them, it is possible to make recommendations or instructions visible to them by inserting special comments like this (@pxref{xgettext Invocation,,, gettext, GNU Gettext}):" msgstr "La traduction demande beaucoup de travail, faites donc d'autant plus attention à vos résumés et descriptions lorsque vous développez un paquet car chaque changement peut demander du de travail de la part des traducteur·rices. Pour les aider, il est possible de donner des recommandations ou des instructions qu'ils et elles pourront voir en insérant des commentaires spéciaux comme ceci (@pxref{xgettext Invocation,,, gettext, GNU Gettext}) :" #. type: lisp -#: guix-git/doc/contributing.texi:649 +#: guix-git/doc/contributing.texi:679 #, no-wrap msgid "" ";; TRANSLATORS: \"X11 resize-and-rotate\" should not be translated.\n" @@ -1178,440 +1224,439 @@ msgstr "" "for the X11 resize-and-rotate (RandR) extension. @dots{}\")\n" #. type: cindex -#: guix-git/doc/contributing.texi:654 +#: guix-git/doc/contributing.texi:684 #, no-wrap msgid "snippets, when to use" msgstr "substituts, quand les utiliser" #. type: Plain text -#: guix-git/doc/contributing.texi:665 +#: guix-git/doc/contributing.texi:695 msgid "The boundary between using an origin snippet versus a build phase to modify the sources of a package can be elusive. Origin snippets are typically used to remove unwanted files such as bundled libraries, nonfree sources, or to apply simple substitutions. The source derived from an origin should produce a source that can be used to build the package on any system that the upstream package supports (i.e., act as the corresponding source). In particular, origin snippets must not embed store items in the sources; such patching should rather be done using build phases. Refer to the @code{origin} record documentation for more information (@pxref{origin Reference})." msgstr "La différence entre l'utilisation d'un bout de code (snippet) dans origin et une phase de construction pour modifier les sources d'un paquet peut être particulièrement subtile. Les bouts de code dans origin sont en général utilisés pour supprimer des fichiers indésirables, comme des bibliothèques incluses, des sources non libres ou pour appliquer de simples substitutions. La source dérivée d'un objet origin devrait produire une source qui peut être utilisée pour construire le paquet sur n'importe quel système pris en charge par le paquet en amont (c.-à-d.@:, être la source correspondante). En particulier, les bouts de code dans origin ne doivent pas inclure d'éléments du dépôt dans les sources ; de telles corrections devraient plutôt être faites avec une phase de construction. Référez-vous à la documentation sur l'enregistrement @code{origin} pour plus d'information (@pxref{origin Reference})." #. type: cindex -#: guix-git/doc/contributing.texi:669 +#: guix-git/doc/contributing.texi:699 #, no-wrap msgid "emacs, packaging" msgstr "emacs, création de paquets" #. type: cindex -#: guix-git/doc/contributing.texi:670 +#: guix-git/doc/contributing.texi:700 #, no-wrap msgid "elisp, packaging" msgstr "elips, création de paquets" #. type: Plain text -#: guix-git/doc/contributing.texi:682 +#: guix-git/doc/contributing.texi:712 msgid "Emacs packages should preferably use the Emacs build system (@pxref{emacs-build-system}), for uniformity and the benefits provided by its build phases, such as the auto-generation of the autoloads file and the byte compilation of the sources. Because there is no standardized way to run a test suite for Emacs packages, tests are disabled by default. When a test suite is available, it should be enabled by setting the @code{#:tests?} argument to @code{#true}. By default, the command to run the test is @command{make check}, but any command can be specified via the @code{#:test-command} argument. The @code{#:test-command} argument expects a list containing a command and its arguments, to be invoked during the @code{check} phase." msgstr "Les paquets Emacs devraient plutôt utiliser le système de construction Emacs (@pxref{emacs-build-system}), pour l'uniformité et les bénéfices apportés par ses phases de construction, comme la génération automatique du fichier autoloads et la compilation des sources. Comme il n'y a pas de manière standardisée de lancer une suite de tests pour les paquets Emacs, les tests sont désactivés par défaut. Lorsqu'une suite de tests est disponible, elle devrait être activée en mettant l'argument @code{#:tests?} à @code{#true}. Par défaut, la commande pour lancer les tests est @command{make check}, mais on peut spécifier une autre commande via l'argument @code{#:test-command}. L'argument @code{#:test-command} attend une liste contenant une commande et ses arguments, à invoquer pendant la phase @code{check}." #. type: Plain text -#: guix-git/doc/contributing.texi:687 +#: guix-git/doc/contributing.texi:717 msgid "The Elisp dependencies of Emacs packages are typically provided as @code{propagated-inputs} when required at run time. As for other packages, build or test dependencies should be specified as @code{native-inputs}." msgstr "Les dépendances Elisp des paquets Emacs sont en général fournie dans @code{propagated-inputs} lorsqu'elles sont requises à l'exécution. Comme pour les autres paquets, les dépendances de test et de construction doivent être spécifiées dans @code{native-inputs}." #. type: Plain text -#: guix-git/doc/contributing.texi:696 +#: guix-git/doc/contributing.texi:726 msgid "Emacs packages sometimes depend on resources directories that should be installed along the Elisp files. The @code{#:include} argument can be used for that purpose, by specifying a list of regexps to match. The best practice when using the @code{#:include} argument is to extend rather than override its default value (accessible via the @code{%default-include} variable). As an example, a yasnippet extension package typically include a @file{snippets} directory, which could be copied to the installation directory using:" msgstr "Les paquets Emacs dépendent parfois de répertoires de ressources qui devraient être installés avec les fichiers Elisp. L'argument @code{#:include} peut être utilisé pour cela, en spécifiant une liste d'expression régulières. La bonne pratique pour utiliser l'argument @code{#:include} est d'étendre plutôt que de remplacer sa valeur par défaut (accessible via la variable @code{%default-include}). Par exemple, un paquet d'extension yasnippet inclut en général un répertoire @file{snippets}, qui pourrait être copié vers le répertoire d'installation avec :" #. type: lisp -#: guix-git/doc/contributing.texi:699 +#: guix-git/doc/contributing.texi:729 #, no-wrap msgid "#:include (cons \"^snippets/\" %default-include)\n" msgstr "#:include (cons \"^snippets/\" %default-include)\n" #. type: Plain text -#: guix-git/doc/contributing.texi:705 +#: guix-git/doc/contributing.texi:735 msgid "When encountering problems, it is wise to check for the presence of the @code{Package-Requires} extension header in the package main source file, and whether any dependencies and their versions listed therein are satisfied." msgstr "Lorsque vous rencontrez des problèmes, il est utile de vérifier la présence de l'en-tête d'extension @code{Package-Requires} dans le fichier source principal du paquet, et si les dépendances et leurs versions qui y sont listées sont satisfaites." #. type: cindex -#: guix-git/doc/contributing.texi:709 +#: guix-git/doc/contributing.texi:739 #, no-wrap msgid "python" msgstr "python" #. type: Plain text -#: guix-git/doc/contributing.texi:715 +#: guix-git/doc/contributing.texi:745 msgid "We currently package Python 2 and Python 3, under the Scheme variable names @code{python-2} and @code{python} as explained in @ref{Version Numbers}. To avoid confusion and naming clashes with other programming languages, it seems desirable that the name of a package for a Python module contains the word @code{python}." msgstr "Nous incluons actuellement Python 2 et Python 3, sous les noms de variables Scheme @code{python-2} et @code{python} comme expliqué dans @ref{Version Numbers}. Pour éviter la confusion et les problèmes de noms avec d'autres langages de programmation, il semble désirable que le nom d'un paquet pour un module Python contienne le mot @code{python}." #. type: Plain text -#: guix-git/doc/contributing.texi:722 +#: guix-git/doc/contributing.texi:752 msgid "Some modules are compatible with only one version of Python, others with both. If the package Foo is compiled with Python 3, we name it @code{python-foo}. If it is compiled with Python 2, we name it @code{python2-foo}. Packages should be added when they are necessary; we don't add Python 2 variants of the package unless we are going to use them." msgstr "Certains modules ne sont compatibles qu'avec une version de Python, d'autres avec les deux. Si le paquet Toto ne compile qu'avec Python 3, on le nomme @code{python-toto}. S'il est compilé avec Python 2, on le nome @code{python2-toto}. Les paquets ne devraient être ajoutés que lorsqu'ils sont nécessaires ; nous n'ajoutons pas les variantes Python 2 du paquet à moins qu'on ne les utilise ensuite." #. type: Plain text -#: guix-git/doc/contributing.texi:728 +#: guix-git/doc/contributing.texi:758 msgid "If a project already contains the word @code{python}, we drop this; for instance, the module python-dateutil is packaged under the names @code{python-dateutil} and @code{python2-dateutil}. If the project name starts with @code{py} (e.g.@: @code{pytz}), we keep it and prefix it as described above." msgstr "Si un projet contient déjà le mot @code{python}, on l'enlève, par exemple le module python-dateutil est packagé sous les noms @code{python-dateutil} et @code{python2-dateutil}. Si le nom du projet commence par @code{py} (p.@: ex.@: @code{pytz}), on le garde et on le préfixe comme décrit ci-dessus." #. type: subsubsection -#: guix-git/doc/contributing.texi:729 +#: guix-git/doc/contributing.texi:759 #, no-wrap msgid "Specifying Dependencies" msgstr "Spécifier les dépendances" #. type: cindex -#: guix-git/doc/contributing.texi:730 +#: guix-git/doc/contributing.texi:760 #, no-wrap msgid "inputs, for Python packages" msgstr "entrées, pour les paquets Python" #. type: Plain text -#: guix-git/doc/contributing.texi:735 +#: guix-git/doc/contributing.texi:765 msgid "Dependency information for Python packages is usually available in the package source tree, with varying degrees of accuracy: in the @file{setup.py} file, in @file{requirements.txt}, or in @file{tox.ini}." msgstr "Les informations de dépendances pour les paquets Python se trouvent généralement dans l'arborescence des source du paquet, avec plus ou moins de précision : dans le fichier @file{setup.py}, dans @file{requirements.txt} ou dans @file{tox.ini}." #. type: Plain text -#: guix-git/doc/contributing.texi:741 +#: guix-git/doc/contributing.texi:771 msgid "Your mission, when writing a recipe for a Python package, is to map these dependencies to the appropriate type of ``input'' (@pxref{package Reference, inputs}). Although the @code{pypi} importer normally does a good job (@pxref{Invoking guix import}), you may want to check the following check list to determine which dependency goes where." msgstr "Votre mission, lorsque vous écrivez une recette pour un paquet Python, est de faire correspondre ces dépendances au bon type « d'entrée » (@pxref{package Reference, inputs}). Bien que l'importeur @code{pypi} fasse du bon boulot (@pxref{Invoking guix import}), vous devriez vérifier la liste suivant pour déterminer où va telle dépendance." #. type: itemize -#: guix-git/doc/contributing.texi:749 +#: guix-git/doc/contributing.texi:779 msgid "We currently package Python 2 with @code{setuptools} and @code{pip} installed like Python 3.4 has per default. Thus you don't need to specify either of these as an input. @command{guix lint} will warn you if you do." msgstr "Nous empaquetons Python 2 avec @code{setuptools} et @code{pip} installé comme Python 3.4 par défaut. Ainsi, vous n'avez pas à spécifié ces entrées. @command{guix lint} vous avertira si vous faîtes cela." #. type: itemize -#: guix-git/doc/contributing.texi:755 +#: guix-git/doc/contributing.texi:785 msgid "Python dependencies required at run time go into @code{propagated-inputs}. They are typically defined with the @code{install_requires} keyword in @file{setup.py}, or in the @file{requirements.txt} file." msgstr "Les dépendances Python requises à l'exécutions vont dans @code{propagated-inputs}. Elles sont typiquement définies dans le mot-clef @code{install_requires} dans @file{setup.py} ou dans le fichier @file{requirements.txt}." #. type: itemize -#: guix-git/doc/contributing.texi:763 +#: guix-git/doc/contributing.texi:793 msgid "Python packages required only at build time---e.g., those listed with the @code{setup_requires} keyword in @file{setup.py}---or only for testing---e.g., those in @code{tests_require}---go into @code{native-inputs}. The rationale is that (1) they do not need to be propagated because they are not needed at run time, and (2) in a cross-compilation context, it's the ``native'' input that we'd want." msgstr "Les paquets Python requis uniquement à la construction — p.@: ex.@: ceux listés dans le mot-clef @code{setup_requires} de @file{setup.py} — ou seulement pour les tests — p.@: ex.@: ceux dans @code{tests_require} — vont dans @code{native-inputs}. La raison est qu'ils n'ont pas besoin d'être propagés car ils ne sont pas requis à l'exécution et dans le cas d'une compilation croisée, c'est l'entrée « native » qu'il nous faut." #. type: itemize -#: guix-git/doc/contributing.texi:767 +#: guix-git/doc/contributing.texi:797 msgid "Examples are the @code{pytest}, @code{mock}, and @code{nose} test frameworks. Of course if any of these packages is also required at run-time, it needs to go to @code{propagated-inputs}." msgstr "Les cadriciels de tests @code{pytest}, @code{mock} et @code{nose} sont des exemples. Bien sûr si l'un de ces paquets est aussi requis à l'exécution, il doit aller dans @code{propagated-inputs}." #. type: itemize -#: guix-git/doc/contributing.texi:772 +#: guix-git/doc/contributing.texi:802 msgid "Anything that does not fall in the previous categories goes to @code{inputs}, for example programs or C libraries required for building Python packages containing C extensions." msgstr "Tout ce qui ne tombe pas dans les catégories précédentes va dans @code{inputs}, par exemple des programmes pour des bibliothèques C requises pour construire des paquets Python avec des extensions C." #. type: itemize -#: guix-git/doc/contributing.texi:778 +#: guix-git/doc/contributing.texi:808 msgid "If a Python package has optional dependencies (@code{extras_require}), it is up to you to decide whether to add them or not, based on their usefulness/overhead ratio (@pxref{Submitting Patches, @command{guix size}})." msgstr "Si un paquet Python a des dépendances facultatives (@code{extras_require}), c'est à vous de décider de les ajouter ou non, en fonction du ratio entre utilité et complexité (@pxref{Submitting Patches, @command{guix size}})." #. type: cindex -#: guix-git/doc/contributing.texi:785 +#: guix-git/doc/contributing.texi:815 #, no-wrap msgid "perl" msgstr "perl" #. type: Plain text -#: guix-git/doc/contributing.texi:796 +#: guix-git/doc/contributing.texi:826 msgid "Perl programs standing for themselves are named as any other package, using the lowercase upstream name. For Perl packages containing a single class, we use the lowercase class name, replace all occurrences of @code{::} by dashes and prepend the prefix @code{perl-}. So the class @code{XML::Parser} becomes @code{perl-xml-parser}. Modules containing several classes keep their lowercase upstream name and are also prepended by @code{perl-}. Such modules tend to have the word @code{perl} somewhere in their name, which gets dropped in favor of the prefix. For instance, @code{libwww-perl} becomes @code{perl-libwww}." msgstr "Les programmes Perl utiles en soit sont nommés comme les autres paquets, avec le nom amont en minuscule. Pour les paquets Perl contenant une seule classe, nous utilisons le nom de la classe en minuscule, en remplaçant les occurrences de @code{::} par des tirets et en préfixant le tout par @code{perl-}. Donc la classe @code{XML::Parser} devient @code{perl-xml-parser}. Les modules contenant plusieurs classes gardent leur nom amont en minuscule et sont aussi préfixés par @code{perl-}. Ces modules tendent à avoir le mot @code{perl} quelque part dans leur nom, que nous supprimons en faveur du préfixe. Par exemple, @code{libwww-perl} devient @code{perl-libwww}." #. type: cindex -#: guix-git/doc/contributing.texi:801 +#: guix-git/doc/contributing.texi:831 #, no-wrap msgid "java" msgstr "java" #. type: Plain text -#: guix-git/doc/contributing.texi:804 +#: guix-git/doc/contributing.texi:834 msgid "Java programs standing for themselves are named as any other package, using the lowercase upstream name." msgstr "Le programmes Java utiles en soit sont nommés comme les autres paquets, avec le nom amont en minuscule." #. type: Plain text -#: guix-git/doc/contributing.texi:810 +#: guix-git/doc/contributing.texi:840 msgid "To avoid confusion and naming clashes with other programming languages, it is desirable that the name of a package for a Java package is prefixed with @code{java-}. If a project already contains the word @code{java}, we drop this; for instance, the package @code{ngsjava} is packaged under the name @code{java-ngs}." msgstr "Pour éviter les confusions et les problèmes de nom avec d'autres langages de programmation, il est désirable que le nom d'un paquet Java soit préfixé par @code{java-}. Si un projet contient déjà le mot @code{java}, nous le supprimons, par exemple le paquet @code{ngsjava} est empaqueté sous le nom @code{java-ngs}." #. type: Plain text -#: guix-git/doc/contributing.texi:816 +#: guix-git/doc/contributing.texi:846 msgid "For Java packages containing a single class or a small class hierarchy, we use the lowercase class name, replace all occurrences of @code{.} by dashes and prepend the prefix @code{java-}. So the class @code{apache.commons.cli} becomes package @code{java-apache-commons-cli}." msgstr "Pour les paquets java contenant une seul classe ou une petite hiérarchie de classes, nous utilisons le nom de la classe en minuscule, en remplaçant les occurrences de @code{.} par des tirets et en préfixant le tout par @code{java-}. Donc la classe @code{apache.commons.cli} devient @code{java-apache-commons-cli}." #. type: cindex -#: guix-git/doc/contributing.texi:821 +#: guix-git/doc/contributing.texi:851 #, no-wrap msgid "rust" msgstr "rust" #. type: Plain text -#: guix-git/doc/contributing.texi:824 +#: guix-git/doc/contributing.texi:854 msgid "Rust programs standing for themselves are named as any other package, using the lowercase upstream name." msgstr "Le programmes Rust utiles en soit sont nommés comme les autres paquets, avec le nom amont en minuscule." #. type: Plain text -#: guix-git/doc/contributing.texi:828 +#: guix-git/doc/contributing.texi:858 msgid "To prevent namespace collisions we prefix all other Rust packages with the @code{rust-} prefix. The name should be changed to lowercase as appropriate and dashes should remain in place." msgstr "Pour éviter des collisions de noms nous préfixons les autres paquets avec le préfixe @code{rust-}. Vous devrez changer le nom en minuscule et garder les tirets en place." #. type: Plain text -#: guix-git/doc/contributing.texi:834 +#: guix-git/doc/contributing.texi:864 msgid "In the rust ecosystem it is common for multiple incompatible versions of a package to be used at any given time, so all package definitions should have a versioned suffix. The versioned suffix is the left-most non-zero digit (and any leading zeros, of course). This follows the ``caret'' version scheme intended by Cargo. Examples@: @code{rust-clap-2}, @code{rust-rand-0.6}." msgstr "Dans l'écosystème rust il est courant d'avoir plusieurs versions incompatibles d'un paquet utilisées en même temps, donc toutes les définitions des paquets devraient avoir un suffixe de version. Le suffixe de version est le nombre le plus à gauche qui n'est pas un zéro (et tous les zéros précédents, évidemment). Cela suit les conventions de version « caret » de Cargo. Par exemple @code{rust-clap-2}, @code{rust-rand-0.6}." #. type: Plain text -#: guix-git/doc/contributing.texi:844 +#: guix-git/doc/contributing.texi:874 msgid "Because of the difficulty in reusing rust packages as pre-compiled inputs for other packages the Cargo build system (@pxref{Build Systems, @code{cargo-build-system}}) presents the @code{#:cargo-inputs} and @code{cargo-development-inputs} keywords as build system arguments. It would be helpful to think of these as similar to @code{propagated-inputs} and @code{native-inputs}. Rust @code{dependencies} and @code{build-dependencies} should go in @code{#:cargo-inputs}, and @code{dev-dependencies} should go in @code{#:cargo-development-inputs}. If a Rust package links to other libraries then the standard placement in @code{inputs} and the like should be used." msgstr "À cause de la difficulté à réutiliser des paquets rust en entrées précompilées pour d'autres paquets, le systèmes de construction Cargo (@pxref{Build Systems, @code{cargo-build-system}}) présente les mots-clefs @code{#:cargo-inputs} et @code{cargo-development-inputs} en argument du système de construction. Vous pouvez y penser comme les équivalents de @code{propagated-inputs} et @code{native-inputs}. Les @code{dependencies} et @code{build-dependencies} de Rust devraient aller dans @code{#:cargo-inputs} et @code{dev-dependencies} dans @code{#:cargo-development-inputs}. Si un paquet Rust se lie à d'autres bibliothèques alors vous devriez utiliser l'emplacement @code{inputs} standard et compagnie." #. type: Plain text -#: guix-git/doc/contributing.texi:850 +#: guix-git/doc/contributing.texi:880 msgid "Care should be taken to ensure the correct version of dependencies are used; to this end we try to refrain from skipping the tests or using @code{#:skip-build?} when possible. Of course this is not always possible, as the package may be developed for a different Operating System, depend on features from the Nightly Rust compiler, or the test suite may have atrophied since it was released." msgstr "Vous devriez faire attention à vous assurer que la bonne version des dépendances est utilisée ; pour cela nous essayons d'éviter de passer les tests ou d'utiliser @code{#:skip-build?} lorsque c'est possible. Bien sûr ce n'est pas toujours possible, comme le paquet peut être développé sur un autre système d'exploitation, dépendre d'une fonctionnalité du compilateur Rust Nightly ou la suite de test atrophiée depuis la sortie." #. type: cindex -#: guix-git/doc/contributing.texi:855 guix-git/doc/guix.texi:1930 +#: guix-git/doc/contributing.texi:885 guix-git/doc/guix.texi:1947 #, no-wrap msgid "fonts" msgstr "polices" #. type: Plain text -#: guix-git/doc/contributing.texi:861 +#: guix-git/doc/contributing.texi:891 msgid "For fonts that are in general not installed by a user for typesetting purposes, or that are distributed as part of a larger software package, we rely on the general packaging rules for software; for instance, this applies to the fonts delivered as part of the X.Org system or fonts that are part of TeX Live." msgstr "Pour les polices qui ne sont en général pas installées pour être utilisées pour du traitement de texte, ou qui sont distribuées en tant que partie d'un paquet logiciel plus gros, nous nous appuyons sur les règles générales pour les logiciels ; par exemple, cela s'applique aux polices livrées avec le système X.Org ou les polices qui font partie de TeX Live." #. type: Plain text -#: guix-git/doc/contributing.texi:865 +#: guix-git/doc/contributing.texi:895 msgid "To make it easier for a user to search for fonts, names for other packages containing only fonts are constructed as follows, independently of the upstream package name." msgstr "Pour rendre plus facile la recherche par l'utilisatrice ou l'utilisateur, les noms des autres paquets contenant seulement des polices sont construits ainsi, indépendamment du nom du paquet en amont." #. type: Plain text -#: guix-git/doc/contributing.texi:873 +#: guix-git/doc/contributing.texi:903 msgid "The name of a package containing only one font family starts with @code{font-}; it is followed by the foundry name and a dash @code{-} if the foundry is known, and the font family name, in which spaces are replaced by dashes (and as usual, all upper case letters are transformed to lower case). For example, the Gentium font family by SIL is packaged under the name @code{font-sil-gentium}." msgstr "Le nom d'un paquet contenant une unique famille de polices commence par @code{font-} ; il est suivi du nom du fondeur et d'un tiret @code{-} si le fondeur est connu, et du nom de la police, dont les espaces sont remplacés par des tirets (et comme d'habitude, toutes les lettres majuscules sont transformées en minuscules). Par exemple, la famille de polices Gentium de SIL est empaqueté sous le nom @code{font-sil-gentium}." #. type: Plain text -#: guix-git/doc/contributing.texi:882 +#: guix-git/doc/contributing.texi:912 msgid "For a package containing several font families, the name of the collection is used in the place of the font family name. For instance, the Liberation fonts consist of three families, Liberation Sans, Liberation Serif and Liberation Mono. These could be packaged separately under the names @code{font-liberation-sans} and so on; but as they are distributed together under a common name, we prefer to package them together as @code{font-liberation}." msgstr "Pour un paquet contenant plusieurs familles de polices, le nom de la collection est utilisée à la place du nom de la famille. Par exemple les polices Liberation consistent en trois familles, Liberation Sans, Liberation Serif et Liberation Mono. Elles pourraient être empaquetées séparément sous les noms @code{font-liberation-sans} etc, mais comme elles sont distribuées ensemble sous un nom commun, nous préférons les empaqueter ensemble en tant que @code{font-liberation}." #. type: Plain text -#: guix-git/doc/contributing.texi:888 +#: guix-git/doc/contributing.texi:918 msgid "In the case where several formats of the same font family or font collection are packaged separately, a short form of the format, prepended by a dash, is added to the package name. We use @code{-ttf} for TrueType fonts, @code{-otf} for OpenType fonts and @code{-type1} for PostScript Type 1 fonts." msgstr "Dans le cas où plusieurs formats de la même famille ou collection sont empaquetés séparément, une forme courte du format, préfixé d'un tiret est ajouté au nom du paquet. Nous utilisont @code{-ttf} pour les polices TrueType, @code{-otf} pour les polices OpenType et @code{-type1} pour les polices Type 1 de PostScript." #. type: Plain text -#: guix-git/doc/contributing.texi:896 +#: guix-git/doc/contributing.texi:926 msgid "In general our code follows the GNU Coding Standards (@pxref{Top,,, standards, GNU Coding Standards}). However, they do not say much about Scheme, so here are some additional rules." msgstr "En général notre code suit le Standard de Code GNU (@pxref{Top,,, standards, GNU Coding Standards}). Cependant, il ne parle pas beaucoup de Scheme, donc voici quelques règles supplémentaires." #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:904 -#: guix-git/doc/contributing.texi:905 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:934 +#: guix-git/doc/contributing.texi:935 #, no-wrap msgid "Programming Paradigm" msgstr "Paradigme de programmation" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "How to compose your elements." msgstr "Comment composer vos éléments." #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:911 -#: guix-git/doc/contributing.texi:912 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:941 +#: guix-git/doc/contributing.texi:942 #, no-wrap msgid "Modules" msgstr "Modules" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Where to store your code?" msgstr "Où stocker votre code ?" #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:922 -#: guix-git/doc/contributing.texi:923 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:952 +#: guix-git/doc/contributing.texi:953 #, no-wrap msgid "Data Types and Pattern Matching" msgstr "Types de données et reconnaissance de motif" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Implementing data structures." msgstr "Implémenter des structures de données." #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:937 -#: guix-git/doc/contributing.texi:938 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:967 +#: guix-git/doc/contributing.texi:968 #, no-wrap msgid "Formatting Code" msgstr "Formatage du code" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Writing conventions." msgstr "Conventions d'écriture." #. type: Plain text -#: guix-git/doc/contributing.texi:910 +#: guix-git/doc/contributing.texi:940 msgid "Scheme code in Guix is written in a purely functional style. One exception is code that involves input/output, and procedures that implement low-level concepts, such as the @code{memoize} procedure." msgstr "Le code Scheme dans Guix est écrit dans un style purement fonctionnel. Le code qui s'occupe des entrées-sorties est une exception ainsi que les procédures qui implémentent des concepts bas-niveau comme la procédure @code{memoize}." #. type: Plain text -#: guix-git/doc/contributing.texi:918 +#: guix-git/doc/contributing.texi:948 msgid "Guile modules that are meant to be used on the builder side must live in the @code{(guix build @dots{})} name space. They must not refer to other Guix or GNU modules. However, it is OK for a ``host-side'' module to use a build-side module." msgstr "Les modules Guile qui sont sensés être utilisés du côté de la construction doivent se trouver dans l'espace de nom @code{(guix build @dots{})}. Ils ne doivent pas se référer à d'autres modules Guix ou GNU@. Cependant il est correct pour un module « côté hôte » de dépendre d'un module coté construction." #. type: Plain text -#: guix-git/doc/contributing.texi:921 +#: guix-git/doc/contributing.texi:951 msgid "Modules that deal with the broader GNU system should be in the @code{(gnu @dots{})} name space rather than @code{(guix @dots{})}." msgstr "Les modules qui s'occupent du système GNU général devraient se trouver dans l'espace de nom @code{(gnu @dots{})} plutôt que @code{(guix @dots{})}." #. type: Plain text -#: guix-git/doc/contributing.texi:930 +#: guix-git/doc/contributing.texi:960 msgid "The tendency in classical Lisp is to use lists to represent everything, and then to browse them ``by hand'' using @code{car}, @code{cdr}, @code{cadr}, and co. There are several problems with that style, notably the fact that it is hard to read, error-prone, and a hindrance to proper type error reports." msgstr "La tendance en Lisp classique est d'utiliser des listes pour tout représenter et de naviguer dedans « à la main ( avec @code{car}, @code{cdr}, @code{cadr} et compagnie. Il y a plusieurs problèmes avec ce style, notamment le fait qu'il soit dur à lire, source d'erreur et un obstacle aux rapports d'erreur bien typés." #. type: Plain text -#: guix-git/doc/contributing.texi:936 +#: guix-git/doc/contributing.texi:966 msgid "Guix code should define appropriate data types (for instance, using @code{define-record-type*}) rather than abuse lists. In addition, it should use pattern matching, via Guile’s @code{(ice-9 match)} module, especially when matching lists (@pxref{Pattern Matching,,, guile, GNU Guile Reference Manual})." msgstr "Le code de Guix devrait définir des types de données appropriées (par exemple, avec @code{define-record-type*}) plutôt que d'abuser des listes. En plus, il devrait utiliser la recherche de motifs, via le module Guile @code{(ice-9 match)}, surtout pour rechercher dans des listes (@pxref{Pattern Matching,,, guile, GNU Guile Reference Manual})." #. type: cindex -#: guix-git/doc/contributing.texi:940 +#: guix-git/doc/contributing.texi:970 #, no-wrap msgid "formatting code" msgstr "formater le code" #. type: cindex -#: guix-git/doc/contributing.texi:941 +#: guix-git/doc/contributing.texi:971 #, no-wrap msgid "coding style" msgstr "style de code" #. type: Plain text -#: guix-git/doc/contributing.texi:948 +#: guix-git/doc/contributing.texi:978 msgid "When writing Scheme code, we follow common wisdom among Scheme programmers. In general, we follow the @url{https://mumble.net/~campbell/scheme/style.txt, Riastradh's Lisp Style Rules}. This document happens to describe the conventions mostly used in Guile’s code too. It is very thoughtful and well written, so please do read it." msgstr "Lorsque nous écrivons du code Scheme, nous suivons la sagesse commune aux programmeurs Scheme. En général, nous suivons les @url{https://mumble.net/~campbell/scheme/style.txt, règles de style de Riastradh}. Ce document décrit aussi les conventions utilisées dans le code de Guile. Il est bien pensé et bien écrit, alors n'hésitez pas à le lire." #. type: Plain text -#: guix-git/doc/contributing.texi:955 +#: guix-git/doc/contributing.texi:985 msgid "Some special forms introduced in Guix, such as the @code{substitute*} macro, have special indentation rules. These are defined in the @file{.dir-locals.el} file, which Emacs automatically uses. Also note that Emacs-Guix provides @code{guix-devel-mode} mode that indents and highlights Guix code properly (@pxref{Development,,, emacs-guix, The Emacs-Guix Reference Manual})." msgstr "Certaines formes spéciales introduites dans Guix comme la macro @code{substitute*} ont des règles d'indentation spécifiques. Elles sont définies dans le fichier @file{.dir-locals.el} qu'Emacs utilise automatiquement. Remarquez aussi qu'Emacs-Guix fournit le mode @code{guix-devel-mode} qui indente et colore le code Guix correctement (@pxref{Development,,, emacs-guix, The Emacs-Guix Reference Manual})." #. type: cindex -#: guix-git/doc/contributing.texi:956 +#: guix-git/doc/contributing.texi:986 #, no-wrap msgid "indentation, of code" msgstr "indentation, du code" #. type: cindex -#: guix-git/doc/contributing.texi:957 +#: guix-git/doc/contributing.texi:987 #, no-wrap msgid "formatting, of code" msgstr "formatage, du code" #. type: Plain text -#: guix-git/doc/contributing.texi:960 +#: guix-git/doc/contributing.texi:990 msgid "If you do not use Emacs, please make sure to let your editor knows these rules. To automatically indent a package definition, you can also run:" msgstr "Si vous n'utilisez pas Emacs, assurez-vous que votre éditeur connaisse ces règles. Pour indenter automatiquement une définition de paquet, vous pouvez aussi lancer :" #. type: example -#: guix-git/doc/contributing.texi:963 +#: guix-git/doc/contributing.texi:993 #, no-wrap -msgid "./etc/indent-code.el gnu/packages/@var{file}.scm @var{package}\n" -msgstr "./etc/indent-code.el gnu/packages/@var{file}.scm @var{package}\n" +msgid "./pre-inst-env guix style @var{package}\n" +msgstr "./pre-inst-env guix style @var{paquet}\n" #. type: Plain text -#: guix-git/doc/contributing.texi:969 -msgid "This automatically indents the definition of @var{package} in @file{gnu/packages/@var{file}.scm} by running Emacs in batch mode. To indent a whole file, omit the second argument:" -msgstr "Cela indente automatiquement la définition de @var{package} dans @file{gnu/packages/@var{file}.scm} en lançant Emacs en mode commande. Pour indenter un fichier complet, n'indiquez pas de second argument :" - -#. type: example -#: guix-git/doc/contributing.texi:972 -#, no-wrap -msgid "./etc/indent-code.el gnu/services/@var{file}.scm\n" -msgstr "./etc/indent-code.el gnu/services/@var{file}.scm\n" +#: guix-git/doc/contributing.texi:997 +msgid "@xref{Invoking guix style}, for more information." +msgstr "@xref{Invoking guix style}, pour plus d'informations." #. type: cindex -#: guix-git/doc/contributing.texi:974 +#: guix-git/doc/contributing.texi:998 #, no-wrap msgid "Vim, Scheme code editing" msgstr "Vim, édition de code Scheme" #. type: Plain text -#: guix-git/doc/contributing.texi:980 +#: guix-git/doc/contributing.texi:1004 msgid "If you are editing code with Vim, we recommend that you run @code{:set autoindent} so that your code is automatically indented as you type. Additionally, @uref{https://www.vim.org/scripts/script.php?script_id=3998, @code{paredit.vim}} may help you deal with all these parentheses." msgstr "Si vous éditez du code avec Vim, nous recommandons de lancer @code{:set autoindent} pour que votre code soit automatiquement indenté au moment où vous l'entrez. En plus, @uref{https://www.vim.org/scripts/script.php?script_id=3998, @code{paredit.vim}} peut vous aider à gérer toutes ces parenthèses." #. type: Plain text -#: guix-git/doc/contributing.texi:984 +#: guix-git/doc/contributing.texi:1008 msgid "We require all top-level procedures to carry a docstring. This requirement can be relaxed for simple private procedures in the @code{(guix build @dots{})} name space, though." msgstr "Nous demandons que toutes les procédure de premier niveau contiennent une chaîne de documentation. Ce prérequis peut être relâché pour les procédures privées simples dans l'espace de nom @code{(guix build @dots{})} cependant." #. type: Plain text -#: guix-git/doc/contributing.texi:987 +#: guix-git/doc/contributing.texi:1011 msgid "Procedures should not have more than four positional parameters. Use keyword parameters for procedures that take more than four parameters." msgstr "Les procédures ne devraient pas avoir plus de quatre paramètres positionnés. Utilisez des paramètres nommés pour les procédures qui prennent plus de quatre paramètres." #. type: Plain text -#: guix-git/doc/contributing.texi:1001 +#: guix-git/doc/contributing.texi:1025 msgid "Development is done using the Git distributed version control system. Thus, access to the repository is not strictly necessary. We welcome contributions in the form of patches as produced by @code{git format-patch} sent to the @email{guix-patches@@gnu.org} mailing list (@pxref{submitting patches,, Submitting patches to a project, git, Git User Manual}). Contributors are encouraged to take a moment to set some Git repository options (@pxref{Configuring Git}) first, which can improve the readability of patches. Seasoned Guix developers may also want to look at the section on commit access (@pxref{Commit Access})." msgstr "Le développement se fait avec le système de contrôle de version Git. Ainsi, l'accès au dépôt n'est pas strictement nécessaire. Nous accueillons les contributions sous forme de correctifs produits par @code{git format-patch} envoyés sur la liste de diffusion @email{guix-patches@@gnu.org} (@pxref{submitting patches,, Submitting patches to a project, git, Git User Manual}). Si vous voulez contribuer, nous vous encourageons à prendre un moment pour changer quelques options du dépôt Git pour améliorer la lisibilité des correctifs avant de commencer (@pxref{Configuring Git}). Si vous avez bien expérimenté la contribution à Guix, vous pouvez aussi regarder la section sur les accès en commit (@pxref{Commit Access})." #. type: Plain text -#: guix-git/doc/contributing.texi:1008 +#: guix-git/doc/contributing.texi:1032 msgid "This mailing list is backed by a Debbugs instance, which allows us to keep track of submissions (@pxref{Tracking Bugs and Patches}). Each message sent to that mailing list gets a new tracking number assigned; people can then follow up on the submission by sending email to @code{@var{NNN}@@debbugs.gnu.org}, where @var{NNN} is the tracking number (@pxref{Sending a Patch Series})." msgstr "Cette liste de diffusion est gérée par une instance Debbugs, qui nous permet de suivre les soumissions. Chaque message envoyé à cette liste se voit attribuer un nouveau numéro de suivi ; les gens peuvent ensuite répondre à cette soumission en envoyant un courriel à @code{@var{NNN}@@debbugs.gnu.org}, où @var{NNN} est le numéro de suivi (@pxref{Sending a Patch Series})." #. type: Plain text -#: guix-git/doc/contributing.texi:1012 +#: guix-git/doc/contributing.texi:1036 msgid "Please write commit logs in the ChangeLog format (@pxref{Change Logs,,, standards, GNU Coding Standards}); you can check the commit history for examples." msgstr "Veuillez écrire les messages de commit dans le format ChangeLog (@pxref{Change Logs,,, standards, GNU Coding Standards}) ; vous pouvez regarder l'historique des commits pour trouver des exemples." #. type: Plain text -#: guix-git/doc/contributing.texi:1015 +#: guix-git/doc/contributing.texi:1039 msgid "Before submitting a patch that adds or modifies a package definition, please run through this check list:" msgstr "Avant de soumettre un correctif qui ajoute ou modifie la définition d'un paquet, veuillez vérifier cette check-list :" #. type: code{#1} -#: guix-git/doc/contributing.texi:1017 guix-git/doc/contributing.texi:1223 +#: guix-git/doc/contributing.texi:1041 guix-git/doc/contributing.texi:1251 #, no-wrap msgid "git format-patch" msgstr "git format-patch" #. type: code{#1} -#: guix-git/doc/contributing.texi:1018 +#: guix-git/doc/contributing.texi:1042 #, no-wrap msgid "git-format-patch" msgstr "git-format-patch" #. type: enumerate -#: guix-git/doc/contributing.texi:1025 +#: guix-git/doc/contributing.texi:1049 msgid "When generating your patches with @code{git format-patch} or @code{git send-email}, we recommend using the option @code{--base=}, perhaps with the value @code{auto}. This option adds a note to the patch stating which commit the patch is based on. This helps reviewers understand how to apply and review your patches." msgstr "Lorsque vous générez vos correctifs avec @code{git format-patch} ou @code{git send-email}, nous vous recommandons d'utiliser l'option @code{--base=}, éventuellement avec la valeur @code{auto}. Cette option ajoute une note au correctif pour indiquer le commit sur lequel le correctif se base. Cela aide les relecteurs et relectrices à comprendre comment appliquer et revoir vos correctifs." #. type: enumerate -#: guix-git/doc/contributing.texi:1031 +#: guix-git/doc/contributing.texi:1055 msgid "If the authors of the packaged software provide a cryptographic signature for the release tarball, make an effort to verify the authenticity of the archive. For a detached GPG signature file this would be done with the @code{gpg --verify} command." msgstr "Si les auteurs ou autrices du paquet logiciel fournissent une signature cryptographique pour l'archive, faites un effort pour vérifier l'authenticité de l'archive. Pour un fichier de signature GPG détaché, cela se fait avec la commande @code{gpg --verify}." #. type: enumerate -#: guix-git/doc/contributing.texi:1035 +#: guix-git/doc/contributing.texi:1059 msgid "Take some time to provide an adequate synopsis and description for the package. @xref{Synopses and Descriptions}, for some guidelines." msgstr "Prenez un peu de temps pour fournir un synopsis et une description adéquats pour le paquet. Voir @xref{Synopsis et descriptions} pour quelques lignes directrices." #. type: enumerate -#: guix-git/doc/contributing.texi:1040 +#: guix-git/doc/contributing.texi:1064 msgid "Run @code{guix lint @var{package}}, where @var{package} is the name of the new or modified package, and fix any errors it reports (@pxref{Invoking guix lint})." msgstr "Lancez @code{guix lint @var{paquet}}, où @var{paquet} est le nom du nouveau paquet ou du paquet modifié, et corrigez les erreurs qu'il rapporte (@pxref{Invoquer guix lint})." #. type: enumerate -#: guix-git/doc/contributing.texi:1044 +#: guix-git/doc/contributing.texi:1068 +msgid "Run @code{guix style @var{package}} to format the new package definition according to the project's conventions (@pxref{Invoking guix style})." +msgstr "Lancez @code{guix style @var{paquet}} pour formater la nouvelle définition du paquet en suivant les conventions du projet (@pxref{Invoking guix style})." + +#. type: enumerate +#: guix-git/doc/contributing.texi:1072 msgid "Make sure the package builds on your platform, using @code{guix build @var{package}}." msgstr "Assurez-vous que le paquet se construise sur votre plate-forme avec @code{guix build @var{paquet}}." #. type: enumerate -#: guix-git/doc/contributing.texi:1052 +#: guix-git/doc/contributing.texi:1080 msgid "We recommend you also try building the package on other supported platforms. As you may not have access to actual hardware platforms, we recommend using the @code{qemu-binfmt-service-type} to emulate them. In order to enable it, add the @code{virtualization} service module and the following service to the list of services in your @code{operating-system} configuration:" msgstr "Nous vous recommandons aussi d'essayer de construire le paquet sur les autres plate-formes prises en charge. Comme vous n'avez pas forcément accès aux plate-formes matérielles, nous vous recommandons d'utiliser le @code{qemu-binfmt-service-type} pour les émuler. Pour cela, ajoutez le module de service @code{virtualization} et le service suivant à la liste des services dans votre configuration de système d'exploitation :" #. type: lisp -#: guix-git/doc/contributing.texi:1057 +#: guix-git/doc/contributing.texi:1085 #, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -1623,17 +1668,17 @@ msgstr "" " (platforms (lookup-qemu-platforms \"arm\" \"aarch64\"))))\n" #. type: enumerate -#: guix-git/doc/contributing.texi:1060 +#: guix-git/doc/contributing.texi:1088 msgid "Then reconfigure your system." msgstr "Puis reconfigurez votre système." #. type: enumerate -#: guix-git/doc/contributing.texi:1065 +#: guix-git/doc/contributing.texi:1093 msgid "You can then build packages for different platforms by specifying the @code{--system} option. For example, to build the \"hello\" package for the armhf or aarch64 architectures, you would run the following commands, respectively:" msgstr "Vous pourrez ensuite construire les paquets pour différentes plate-formes en spécifiant l'option @code{--system}. Par exemple pour construire le paquet « hello » pour les architectures armhf ou aarch64, vous devrez lancer les commandes suivantes, respectivement :" #. type: example -#: guix-git/doc/contributing.texi:1068 +#: guix-git/doc/contributing.texi:1096 #, no-wrap msgid "" "guix build --system=armhf-linux --rounds=2 hello\n" @@ -1643,231 +1688,231 @@ msgstr "" "guix build --system=aarch64-linux --rounds=2 hello\n" #. type: cindex -#: guix-git/doc/contributing.texi:1071 +#: guix-git/doc/contributing.texi:1099 #, no-wrap msgid "bundling" msgstr "construction groupée" #. type: enumerate -#: guix-git/doc/contributing.texi:1074 +#: guix-git/doc/contributing.texi:1102 msgid "Make sure the package does not use bundled copies of software already available as separate packages." msgstr "Assurez-vous que le paquet n'utilise pas de copie groupée d'un logiciel déjà disponible dans un paquet séparé." #. type: enumerate -#: guix-git/doc/contributing.texi:1083 +#: guix-git/doc/contributing.texi:1111 msgid "Sometimes, packages include copies of the source code of their dependencies as a convenience for users. However, as a distribution, we want to make sure that such packages end up using the copy we already have in the distribution, if there is one. This improves resource usage (the dependency is built and stored only once), and allows the distribution to make transverse changes such as applying security updates for a given software package in a single place and have them affect the whole system---something that bundled copies prevent." msgstr "Parfois, les paquets incluent des copie du code source de leurs dépendances pour le confort des utilisateur·rices. Cependant, en tant que distribution, nous voulons nous assurer que ces paquets utilisent bien les copient que nous avons déjà dans la distribution si elles existent. Cela améliore l'utilisation des ressources (la dépendance n'est construite et stockée qu'une seule fois) et permet à la distribution de faire des changements transversaux comme appliquer des correctifs de sécurité pour un paquet donné depuis un unique emplacement et qu'ils affectent tout le système, ce qu'empêchent les copies groupées." #. type: enumerate -#: guix-git/doc/contributing.texi:1092 +#: guix-git/doc/contributing.texi:1120 msgid "Take a look at the profile reported by @command{guix size} (@pxref{Invoking guix size}). This will allow you to notice references to other packages unwillingly retained. It may also help determine whether to split the package (@pxref{Packages with Multiple Outputs}), and which optional dependencies should be used. In particular, avoid adding @code{texlive} as a dependency: because of its extreme size, use the @code{texlive-tiny} package or @code{texlive-union} procedure instead." msgstr "Regardez le profil rapporté par @command{guix size} (@pxref{Invoking guix size}). Cela vous permettra de remarquer des références à d'autres paquets qui ont été retenus sans que vous vous y attendiez. Il peut aussi aider à déterminer s'il faut découper le paquet (@pxref{Des paquets avec plusieurs résultats}) et quelles dépendances facultatives utiliser. En particulier, évitez d'ajouter @code{texlive} en dépendance : à cause de sa taille extrême, utilisez @code{texlive-tiny} ou @code{texlive-union} à la place." #. type: enumerate -#: guix-git/doc/contributing.texi:1097 +#: guix-git/doc/contributing.texi:1125 msgid "For important changes, check that dependent packages (if applicable) are not affected by the change; @code{guix refresh --list-dependent @var{package}} will help you do that (@pxref{Invoking guix refresh})." msgstr "Pour les changements important, vérifiez que les paquets qui en dépendent (s'ils existent) ne sont pas affectés par le changement ; @code{guix refresh --list-dependant @var{paquet}} vous aidera (@pxref{Invoquer guix refresh})." #. type: cindex -#: guix-git/doc/contributing.texi:1099 +#: guix-git/doc/contributing.texi:1127 #, no-wrap msgid "branching strategy" msgstr "stratégie de branche" #. type: cindex -#: guix-git/doc/contributing.texi:1100 +#: guix-git/doc/contributing.texi:1128 #, no-wrap msgid "rebuild scheduling strategy" msgstr "stratégie de planification des reconstructions" #. type: enumerate -#: guix-git/doc/contributing.texi:1103 +#: guix-git/doc/contributing.texi:1131 msgid "Depending on the number of dependent packages and thus the amount of rebuilding induced, commits go to different branches, along these lines:" msgstr "Suivant le nombre de paquets dépendants et donc le nombre de reconstruction induites, les commits vont vers des branches différentes, suivant ces principes :" #. type: item -#: guix-git/doc/contributing.texi:1105 +#: guix-git/doc/contributing.texi:1133 #, no-wrap msgid "300 dependent packages or less" msgstr "300 paquets dépendants ou moins" #. type: table -#: guix-git/doc/contributing.texi:1107 +#: guix-git/doc/contributing.texi:1135 msgid "@code{master} branch (non-disruptive changes)." msgstr "branche @code{master} (changements non-disruptifs)." #. type: item -#: guix-git/doc/contributing.texi:1108 +#: guix-git/doc/contributing.texi:1136 #, no-wrap msgid "between 300 and 1,800 dependent packages" msgstr "entre 300 et 1 800 paquets dépendants" #. type: table -#: guix-git/doc/contributing.texi:1114 +#: guix-git/doc/contributing.texi:1142 msgid "@code{staging} branch (non-disruptive changes). This branch is intended to be merged in @code{master} every 6 weeks or so. Topical changes (e.g., an update of the GNOME stack) can instead go to a specific branch (say, @code{gnome-updates}). This branch is not expected to be buildable or usable until late in its development process." msgstr "branche @code{staging} (changements non-disruptifs). Cette branche devrait être fusionnées dans @code{master} toutes les 6 semaines. Les changements par thèmes (par exemple une mise à jour de la pile GNOME) peuvent aller dans une branche spécifique (disons, @code{gnome-updates}). Il n'est pas forcément possible de construire ni utiliser cette branche jusque tard dans le processus de développement." #. type: item -#: guix-git/doc/contributing.texi:1115 +#: guix-git/doc/contributing.texi:1143 #, no-wrap msgid "more than 1,800 dependent packages" msgstr "plus de 1 800 paquets dépendants" #. type: table -#: guix-git/doc/contributing.texi:1120 +#: guix-git/doc/contributing.texi:1148 msgid "@code{core-updates} branch (may include major and potentially disruptive changes). This branch is intended to be merged in @code{master} every 6 months or so. This branch is not expected to be buildable or usable until late in its development process." msgstr "la branche @code{core-updates} (peut inclure des changements majeurs et potentiellement disruptifs). Cette branche devrait être fusionnée dans @code{master} tous les 6 mois environ. Il n'est pas forcément possible de construire ni utiliser cette branche jusque tard dans le processus de développement." #. type: enumerate -#: guix-git/doc/contributing.texi:1127 +#: guix-git/doc/contributing.texi:1155 msgid "All these branches are @uref{https://@value{SUBSTITUTE-SERVER-1}, tracked by our build farm} and merged into @code{master} once everything has been successfully built. This allows us to fix issues before they hit users, and to reduce the window during which pre-built binaries are not available." msgstr "Toutes ces branches sont @uref{https://@value{SUBSTITUTE-SERVER-1}, gérées par notre ferme de construction} et fusionnées dans @code{master} une fois que tout a été construit correctement. Cela nous permet de corriger des problèmes avant qu'ils n'atteignent les utilisateur·rices et réduit la fenêtre pendant laquelle les binaires pré-construits ne sont pas disponibles." #. type: enumerate -#: guix-git/doc/contributing.texi:1136 +#: guix-git/doc/contributing.texi:1164 msgid "When we decide to start building the @code{staging} or @code{core-updates} branches, they will be forked and renamed with the suffix @code{-frozen}, at which time only bug fixes may be pushed to the frozen branches. The @code{core-updates} and @code{staging} branches will remain open to accept patches for the next cycle. Please ask on the mailing list or IRC if unsure where to place a patch." msgstr "Lorsqu'on décide de commencer à construire la branche @code{staging} ou @code{core-updates}, on les fork et on les renomme avec le suffixe @code{-frozen}, et à partir de ce moment, seuls les corrections de bogues sont poussées sur les branches gelées. Les branches @code{core-updates} et @code{staging} restent ouvertes et acceptent des correctifs pour le prochain cycle. Demandez sur la liste de diffusion ou sur IRC si vous ne savez pas où envoyer un correctif." #. type: cindex -#: guix-git/doc/contributing.texi:1138 +#: guix-git/doc/contributing.texi:1166 #, no-wrap msgid "determinism, of build processes" msgstr "déterminisme, du processus de construction" #. type: cindex -#: guix-git/doc/contributing.texi:1139 +#: guix-git/doc/contributing.texi:1167 #, no-wrap msgid "reproducible builds, checking" msgstr "construction reproductibles, vérification" #. type: enumerate -#: guix-git/doc/contributing.texi:1143 +#: guix-git/doc/contributing.texi:1171 msgid "Check whether the package's build process is deterministic. This typically means checking whether an independent build of the package yields the exact same result that you obtained, bit for bit." msgstr "Vérifiez si le processus de construction du paquet est déterministe. Cela signifie typiquement vérifier qu'une construction indépendante du paquet renvoie exactement le même résultat que vous avez obtenu, bit à bit." #. type: enumerate -#: guix-git/doc/contributing.texi:1146 +#: guix-git/doc/contributing.texi:1174 msgid "A simple way to do that is by building the same package several times in a row on your machine (@pxref{Invoking guix build}):" msgstr "Une manière simple de le faire est de reconstruire le paquet plusieurs fois à la suite sur votre machine (@pxref{Invoquer guix build}) :" #. type: example -#: guix-git/doc/contributing.texi:1149 +#: guix-git/doc/contributing.texi:1177 #, no-wrap msgid "guix build --rounds=2 my-package\n" msgstr "guix build --rounds=2 mon-paquet\n" #. type: enumerate -#: guix-git/doc/contributing.texi:1153 +#: guix-git/doc/contributing.texi:1181 msgid "This is enough to catch a class of common non-determinism issues, such as timestamps or randomly-generated output in the build result." msgstr "Cela est suffisant pour trouver une classe de non-déterminisme commune, comme l'horodatage ou des sorties générées aléatoirement dans le résultat de la construction." #. type: enumerate -#: guix-git/doc/contributing.texi:1163 +#: guix-git/doc/contributing.texi:1191 msgid "Another option is to use @command{guix challenge} (@pxref{Invoking guix challenge}). You may run it once the package has been committed and built by @code{@value{SUBSTITUTE-SERVER-1}} to check whether it obtains the same result as you did. Better yet: Find another machine that can build it and run @command{guix publish}. Since the remote build machine is likely different from yours, this can catch non-determinism issues related to the hardware---e.g., use of different instruction set extensions---or to the operating system kernel---e.g., reliance on @code{uname} or @file{/proc} files." msgstr "Une autre option consiste à utiliser @command{guix challenge} (@pxref{Invoquer guix challenge}). Vous pouvez lancer la commande une fois que les paquets ont été committés et construits par @code{@value{SUBSTITUTE-SERVER-1}} pour vérifier s'il obtient le même résultat que vous. Mieux encore : trouvez une autre machine qui peut le construire et lancez @command{guix publish}. Puisque la machine distante est sûrement différente de la vôtre, cela peut trouver des problèmes de non-déterminisme liés au matériel — par exemple utiliser une extension du jeu d'instruction — ou du noyau du système d'exploitation — par exemple se reposer sur @code{uname} ou les fichiers de @file{/proc}." #. type: enumerate -#: guix-git/doc/contributing.texi:1169 +#: guix-git/doc/contributing.texi:1197 msgid "When writing documentation, please use gender-neutral wording when referring to people, such as @uref{https://en.wikipedia.org/wiki/Singular_they, singular ``they''@comma{} ``their''@comma{} ``them''}, and so forth." msgstr "Lorsque vous écrivez de la documentation, utilisez une formulation au genre neutre lorsque vous vous référez à des personnes, comme le @uref{https://fr.wikipedia.org/wiki/They_singulier, ``they''@comma{} ``their''@comma{} ``them'' singulier} (en anglais)." #. type: enumerate -#: guix-git/doc/contributing.texi:1173 +#: guix-git/doc/contributing.texi:1201 msgid "Verify that your patch contains only one set of related changes. Bundling unrelated changes together makes reviewing harder and slower." msgstr "Vérifiez que votre correctif contienne seulement un ensemble de changements liés. Grouper des changements non liés ensemble rend la revue plus difficile et plus lente." #. type: enumerate -#: guix-git/doc/contributing.texi:1176 +#: guix-git/doc/contributing.texi:1204 msgid "Examples of unrelated changes include the addition of several packages, or a package update along with fixes to that package." msgstr "Ajouter plusieurs paquet ou une mise à jour d'un paquet avec des corrections dans ce paquet sont des exemples de changements sans rapport." #. type: enumerate -#: guix-git/doc/contributing.texi:1181 -msgid "Please follow our code formatting rules, possibly running the @command{etc/indent-code.el} script to do that automatically for you (@pxref{Formatting Code})." -msgstr "Suivez nos règles de formatage de code, éventuellement en lançant le script @command{et/indent-code.el} pour le faire automatiquement (@pxref{Formatage du code})." +#: guix-git/doc/contributing.texi:1209 +msgid "Please follow our code formatting rules, possibly running @command{guix style} script to do that automatically for you (@pxref{Formatting Code})." +msgstr "Suivez nos règles de formatage de code, éventuellement en lançant le script @command{guix style} pour le faire automatiquement (@pxref{Formatage du code})." #. type: enumerate -#: guix-git/doc/contributing.texi:1189 +#: guix-git/doc/contributing.texi:1217 msgid "When possible, use mirrors in the source URL (@pxref{Invoking guix download}). Use reliable URLs, not generated ones. For instance, GitHub archives are not necessarily identical from one generation to the next, so in this case it's often better to clone the repository. Don't use the @command{name} field in the URL: it is not very useful and if the name changes, the URL will probably be wrong." msgstr "Si possible, utilisez des miroirs dans l'URL des sources (@pxref{Invoking guix download}). Utilisez des URL stable, pas des URL générées. Par exemple, les archives GitHub ne sont pas nécessairement identiques d'une génération à la suivante, donc il vaut mieux dans ce cas cloner le dépôt. N'utilisez pas le champ @command{name} dans l'URL : ce n'est pas très utile et si le nom change, l'URL sera probablement erronée." #. type: enumerate -#: guix-git/doc/contributing.texi:1193 +#: guix-git/doc/contributing.texi:1221 msgid "Check if Guix builds (@pxref{Building from Git}) and address the warnings, especially those about use of undefined symbols." msgstr "Vérifiez si Guix compile (@pxref{Building from Git}) et corrigez les avertissements, surtout ceux à propos de symboles manquants." #. type: enumerate -#: guix-git/doc/contributing.texi:1196 +#: guix-git/doc/contributing.texi:1224 msgid "Make sure your changes do not break Guix and simulate a @code{guix pull} with:" msgstr "Assurez-vous que vos changements ne cassent pas Guix et simulez un @code{guix pull} avec :" #. type: example -#: guix-git/doc/contributing.texi:1198 +#: guix-git/doc/contributing.texi:1226 #, no-wrap msgid "guix pull --url=/path/to/your/checkout --profile=/tmp/guix.master\n" msgstr "guix pull --url=/path/to/your/checkout --profile=/tmp/guix.master\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1211 +#: guix-git/doc/contributing.texi:1239 msgid "When posting a patch to the mailing list, use @samp{[PATCH] @dots{}} as a subject, if your patch is to be applied on a branch other than @code{master}, say @code{core-updates}, specify it in the subject like @samp{[PATCH core-updates] @dots{}}. You may use your email client or the @command{git send-email} command (@pxref{Sending a Patch Series}). We prefer to get patches in plain text messages, either inline or as MIME attachments. You are advised to pay attention if your email client changes anything like line breaks or indentation which could potentially break the patches." msgstr "Lorsque vous postez un patch sur la liste de diffusion, utilisez @samp{[PATCH] @dots{}} comme sujet, si votre patch doit être appliqué sur une branche autre que @code{master}, disons @code{core-updates}, spécifiez le dans le sujet comme @samp{[PATCH core-updates] @dots{}}. Vous pouvez utiliser votre client de messagerie ou la commande @command{git send-email} (@pxref{Sending a Patch Series}). Nous préférons recevoir les correctifs dans des messages en texte clair, soit en ligne, soit sous forme de pièces jointes MIME. Il vous est conseillé de faire attention si votre client de messagerie modifie quoi que ce soit, comme des sauts de ligne ou des indentations, qui pourraient potentiellement casser les correctifs." #. type: Plain text -#: guix-git/doc/contributing.texi:1216 +#: guix-git/doc/contributing.texi:1244 msgid "Expect some delay when you submit your very first patch to @email{guix-patches@@gnu.org}. You have to wait until you get an acknowledgement with the assigned tracking number. Future acknowledgements should not be delayed." msgstr "Attendez-vous à un délai entre le moment où vous envoyez votre tout premier correctif à @email{guix-patches@@gnu.org} et le moment où le message sera reçu. Vous devez attendre de recevoir un message de confirmation avec le numéro de suivi assigné à votre correctif. Les confirmations suivantes ne seront pas retardées." #. type: Plain text -#: guix-git/doc/contributing.texi:1219 +#: guix-git/doc/contributing.texi:1247 msgid "When a bug is resolved, please close the thread by sending an email to @email{@var{NNN}-done@@debbugs.gnu.org}." msgstr "Lorsqu'un bogue est résolu, veuillez fermer le fil en envoyant un courriel à @email{@var{NNN}-done@@debbugs.gnu.org}." #. type: subsection -#: guix-git/doc/contributing.texi:1220 guix-git/doc/contributing.texi:1221 +#: guix-git/doc/contributing.texi:1248 guix-git/doc/contributing.texi:1249 #, no-wrap msgid "Configuring Git" msgstr "Configurer Git" #. type: cindex -#: guix-git/doc/contributing.texi:1222 +#: guix-git/doc/contributing.texi:1250 #, no-wrap msgid "git configuration" msgstr "configuration git" #. type: code{#1} -#: guix-git/doc/contributing.texi:1224 guix-git/doc/contributing.texi:1259 +#: guix-git/doc/contributing.texi:1252 guix-git/doc/contributing.texi:1287 #, no-wrap msgid "git send-email" msgstr "git send-email" #. type: Plain text -#: guix-git/doc/contributing.texi:1232 +#: guix-git/doc/contributing.texi:1260 msgid "If you have not done so already, you may wish to set a name and email that will be associated with your commits (@pxref{telling git your name, , Telling Git your name, git, Git User Manual}). If you wish to use a different name or email just for commits in this repository, you can use @command{git config --local}, or edit @file{.git/config} in the repository instead of @file{~/.gitconfig}." msgstr "Si vous ne l'avez pas encore fait, vous devriez indiquer un nom et une adresse de courriel qui seront associés à vos commits (@pxref{telling git your name, , Telling Git your name, git, Git User Manual}). Si vous souhaitez utiliser un nom ou une adresse différent pour les commits de ce dépôt, vous pouvez utiliser @command{git config --local}, ou modifier @file{.git/config} dans le dépôt au lieu de @file{~/.gitconfig}." #. type: Plain text -#: guix-git/doc/contributing.texi:1238 +#: guix-git/doc/contributing.texi:1266 msgid "We provide some default settings in @file{etc/git/gitconfig} which modify how patches are generated, making them easier to read and apply. These settings can be applied by manually copying them to @file{.git/config} in your checkout, or by telling Git to include the whole file:" msgstr "Nous fournissons quelques paramètres par défaut dans @file{etc/git/gitconfig} qui modifient la manière de générer des correctifs, pour les rendre plus lisibles et plus faciles à appliquer. Vous pouvez appliquer ces paramètres manuellement en les copiant dans @file{.git/config} dans votre dépôt, ou en disant à Git d'inclure le fichier complet :" #. type: example -#: guix-git/doc/contributing.texi:1241 +#: guix-git/doc/contributing.texi:1269 #, no-wrap msgid "git config --local include.path ../etc/git/gitconfig\n" msgstr "git config --local include.path ../etc/git/gitconfig\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1245 +#: guix-git/doc/contributing.texi:1273 msgid "From then on, any changes to @file{etc/git/gitconfig} would automatically take effect." msgstr "À partir de maintenant, tout changement de @file{etc/git/gitconfig} prendra automatiquement effet." #. type: Plain text -#: guix-git/doc/contributing.texi:1250 +#: guix-git/doc/contributing.texi:1278 msgid "Since the first patch in a series must be sent separately (@pxref{Sending a Patch Series}), it can also be helpful to tell @command{git format-patch} to handle the e-mail threading instead of @command{git send-email}:" msgstr "Comme le premier correctif d'une série doit être envoyé séparément (@pxref{Sending a Patch Series}), il peut être intéressant de dire à @command{git format-patch} de se charger de la création d'un fil de discussion à la place de @command{git send-email} :" #. type: example -#: guix-git/doc/contributing.texi:1254 +#: guix-git/doc/contributing.texi:1282 #, no-wrap msgid "" "git config --local format.thread shallow\n" @@ -1877,184 +1922,184 @@ msgstr "" "git config --local sendemail.thread no\n" #. type: anchor{#1} -#: guix-git/doc/contributing.texi:1256 guix-git/doc/contributing.texi:1258 +#: guix-git/doc/contributing.texi:1284 guix-git/doc/contributing.texi:1286 #, no-wrap msgid "Sending a Patch Series" msgstr "Envoyer une série de correctifs" #. type: cindex -#: guix-git/doc/contributing.texi:1258 +#: guix-git/doc/contributing.texi:1286 #, no-wrap msgid "patch series" msgstr "série de correctifs" #. type: Plain text -#: guix-git/doc/contributing.texi:1269 +#: guix-git/doc/contributing.texi:1297 msgid "When sending a patch series (e.g., using @code{git send-email}), please first send one message to @email{guix-patches@@gnu.org}, and then send subsequent patches to @email{@var{NNN}@@debbugs.gnu.org} to make sure they are kept together. See @uref{https://debbugs.gnu.org/Advanced.html, the Debbugs documentation} for more information. You can install @command{git send-email} with @command{guix install git:send-email}." msgstr "Lorsque vous envoyez une série de correctifs (p.@: ex.@: avec @code{git send-email}), envoyez d'abord une premier message à @email{guix-patches@@gnu.org} puis envoyez le reste des correctifs à @email{@var{NNN}@@debbugs.gnu.org} pour vous assurer qu'ils seront groupés ensemble. Voyez @uref{https://debbugs.gnu.org/Advanced.html, la documentation de Debbugs} pour plus d'informations. Vous pouvez installer @command{git send-email} avec @command{guix install git:send-email}." #. type: Plain text -#: guix-git/doc/contributing.texi:1275 +#: guix-git/doc/contributing.texi:1303 msgid "This section describes how the Guix project tracks its bug reports and patch submissions." msgstr "Cette section décrit comme le projet Guix suit les rapports de bogues et les soumissions de correctifs." #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1282 -#: guix-git/doc/contributing.texi:1283 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1310 +#: guix-git/doc/contributing.texi:1311 #, no-wrap msgid "The Issue Tracker" msgstr "L'outil de gestion des défauts" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "The official bug and patch tracker." msgstr "L'outil de gestion des bogues et des correctifs officiel." #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1296 -#: guix-git/doc/contributing.texi:1297 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1324 +#: guix-git/doc/contributing.texi:1325 #, no-wrap msgid "Debbugs User Interfaces" msgstr "Interfaces utilisateurs à Debbugs" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "Ways to interact with Debbugs." msgstr "Plusieurs manières d'interagir avec Debbugs." #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1336 -#: guix-git/doc/contributing.texi:1337 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1364 +#: guix-git/doc/contributing.texi:1365 #, no-wrap msgid "Debbugs Usertags" msgstr "Étiquettes personnalisées de Debbugs" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "Tag reports with custom labels." msgstr "Étiqueter les rapports avec des étiquettes personnalisées." #. type: cindex -#: guix-git/doc/contributing.texi:1285 +#: guix-git/doc/contributing.texi:1313 #, no-wrap msgid "bug reports, tracking" msgstr "rapports de bogue, suivi" #. type: cindex -#: guix-git/doc/contributing.texi:1286 +#: guix-git/doc/contributing.texi:1314 #, no-wrap msgid "patch submissions, tracking" msgstr "soumission de correctifs, suivi" #. type: cindex -#: guix-git/doc/contributing.texi:1287 +#: guix-git/doc/contributing.texi:1315 #, no-wrap msgid "issue tracking" msgstr "suivi de tickets" #. type: cindex -#: guix-git/doc/contributing.texi:1288 +#: guix-git/doc/contributing.texi:1316 #, no-wrap msgid "Debbugs, issue tracking system" msgstr "Debbugs, système de suivi de tickets" #. type: Plain text -#: guix-git/doc/contributing.texi:1295 +#: guix-git/doc/contributing.texi:1323 msgid "Bug reports and patch submissions are currently tracked using the Debbugs instance at @uref{https://bugs.gnu.org}. Bug reports are filed against the @code{guix} ``package'' (in Debbugs parlance), by sending email to @email{bug-guix@@gnu.org}, while patch submissions are filed against the @code{guix-patches} package by sending email to @email{guix-patches@@gnu.org} (@pxref{Submitting Patches})." msgstr "Les rapports de bogue et les correctifs soumis sont actuellement suivis par l'instance Debbugs @uref{https://bugs.gnu.org}. Les rapports de bogue sont rempli pour le « paquet » @code{guix} (dans le vocabulaire de Debbugs), en envoyant un courriel à @email{bug-guix@@gnu.org}, tandis que les correctifs sont soumis pour le paquet @code{guix-patches} en envoyant un courriel à @email{guix-patches@@gnu.org} (@pxref{Submitting Patches})." #. type: Plain text -#: guix-git/doc/contributing.texi:1301 +#: guix-git/doc/contributing.texi:1329 msgid "A web interface (actually @emph{two} web interfaces!) are available to browse issues:" msgstr "Une interface web (en fait @emph{deux} interfaces web !) sont disponibles pour naviguer dans les tickets :" #. type: itemize -#: guix-git/doc/contributing.texi:1310 +#: guix-git/doc/contributing.texi:1338 msgid "@url{https://issues.guix.gnu.org} provides a pleasant interface@footnote{The web interface at @url{https://issues.guix.gnu.org} is powered by Mumi, a nice piece of software written in Guile, and you can help! See @url{https://git.elephly.net/gitweb.cgi?p=software/mumi.git}.} to browse bug reports and patches, and to participate in discussions;" msgstr "@url{https://issues.guix.gnu.org} fournit une interface agréable@footnote{L'interface web à @url{https://issues.guix.gnu.org} est alimentée par Mumi, un logiciel très cool écrit en Guile, votre aide est la bienvenue ! Voir @url{https://git.elephly.net/gitweb.cgi?p=software/mumi.git}.} pour consulter les rapports de bogues et les correctifs, et pour participer aux discussions ;" #. type: itemize -#: guix-git/doc/contributing.texi:1312 +#: guix-git/doc/contributing.texi:1340 msgid "@url{https://bugs.gnu.org/guix} lists bug reports;" msgstr "@url{https://bugs.gnu.org/guix} liste les rapports de bogues ;" #. type: itemize -#: guix-git/doc/contributing.texi:1314 +#: guix-git/doc/contributing.texi:1342 msgid "@url{https://bugs.gnu.org/guix-patches} lists patch submissions." msgstr "@url{https://bugs.gnu.org/guix-patches} liste les tickets soumis." #. type: Plain text -#: guix-git/doc/contributing.texi:1319 +#: guix-git/doc/contributing.texi:1347 msgid "To view discussions related to issue number @var{n}, go to @indicateurl{https://issues.guix.gnu.org/@var{n}} or @indicateurl{https://bugs.gnu.org/@var{n}}." msgstr "Pour consulter les discussions relatives au numéro d'édition @var{n}, rendez-vous sur @indicateurl{https://issues.guix.gnu.org/@var{n}} ou @indicateurl{https://bugs.gnu.org/@var{n}}." #. type: Plain text -#: guix-git/doc/contributing.texi:1322 +#: guix-git/doc/contributing.texi:1350 msgid "If you use Emacs, you may find it more convenient to interact with issues using @file{debbugs.el}, which you can install with:" msgstr "Si vous utilisez Emacs, vous pourriez trouver plus confortable d'interagir avec les tickets en utilisant @file{debbugs.el}, que vous pouvez installer avec :" #. type: example -#: guix-git/doc/contributing.texi:1325 +#: guix-git/doc/contributing.texi:1353 #, no-wrap msgid "guix install emacs-debbugs\n" msgstr "guix install emacs-debbugs\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1328 +#: guix-git/doc/contributing.texi:1356 msgid "For example, to list all open issues on @code{guix-patches}, hit:" msgstr "Par exemple, pour lister tous les tickets ouverts sur @code{guix-patches}, tapez :" #. type: example -#: guix-git/doc/contributing.texi:1331 +#: guix-git/doc/contributing.texi:1359 #, no-wrap msgid "@kbd{C-u} @kbd{M-x} debbugs-gnu @kbd{RET} @kbd{RET} guix-patches @kbd{RET} n y\n" msgstr "@kbd{C-u} @kbd{M-x} debbugs-gnu @kbd{RET} @kbd{RET} guix-patches @kbd{RET} n y\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1335 +#: guix-git/doc/contributing.texi:1363 msgid "@xref{Top,,, debbugs-ug, Debbugs User Guide}, for more information on this nifty tool!" msgstr "@xref{Top,,, debbugs-ug, Debbugs User Guide}, pour plus d'info sur cet outil pratique !" #. type: cindex -#: guix-git/doc/contributing.texi:1339 +#: guix-git/doc/contributing.texi:1367 #, no-wrap msgid "usertags, for debbugs" msgstr "étiquettes personnalisées, pour debbugs" #. type: cindex -#: guix-git/doc/contributing.texi:1340 +#: guix-git/doc/contributing.texi:1368 #, no-wrap msgid "Debbugs usertags" msgstr "Étiquettes personnalisées pour Debbugs" #. type: Plain text -#: guix-git/doc/contributing.texi:1346 +#: guix-git/doc/contributing.texi:1374 msgid "Debbugs provides a feature called @dfn{usertags} that allows any user to tag any bug with an arbitrary label. Bugs can be searched by usertag, so this is a handy way to organize bugs@footnote{The list of usertags is public information, and anyone can modify any user's list of usertags, so keep that in mind if you choose to use this feature.}." msgstr "Debbugs fournit une fonctionnalité nommée @dfn{étiquettes personnalisées} (usertags) qui permettent à tous d’étiqueter un bogue avec une étiquette arbitraire. On peut rechercher les bogues par étiquette, ce qui les rend pratiques pour organiser les bogues@footnote{La liste des étiquettes personnalisées est publique, et n'importe qui peut modifier la liste des étiquettes de n'importe qui, donc pensez-y si vous utilisez cette fonctionnalité.}." #. type: Plain text -#: guix-git/doc/contributing.texi:1352 +#: guix-git/doc/contributing.texi:1380 msgid "For example, to view all the bug reports (or patches, in the case of @code{guix-patches}) tagged with the usertag @code{powerpc64le-linux} for the user @code{guix}, open a URL like the following in a web browser: @url{https://debbugs.gnu.org/cgi-bin/pkgreport.cgi?tag=powerpc64le-linux;users=guix}." msgstr "Par exemple, pour voir tous les rapports de bogues (ou les correctifs, dans le cas de @code{guix-patches} avec l'étiquette personnalisée @code{powerpc64le-linux} pour l'utilisateur @code{guix}, ouvrez cette URL dans un navigateur web : @url{https://debbugs.gnu.org/cgi-bin/pkgreport.cgi?tag=powerpc64le-linux;users=guix}." #. type: Plain text -#: guix-git/doc/contributing.texi:1356 +#: guix-git/doc/contributing.texi:1384 msgid "For more information on how to use usertags, please refer to the documentation for Debbugs or the documentation for whatever tool you use to interact with Debbugs." msgstr "Pour plus d'informations sur le fonctionnement des étiquettes personnalisées, référez-vous à la documentation de Debbugs ou à la documentation de n'importe quel outil que vous utilisez pour interagir avec Debbugs." #. type: Plain text -#: guix-git/doc/contributing.texi:1361 +#: guix-git/doc/contributing.texi:1389 msgid "In Guix, we are experimenting with usertags to keep track of architecture-specific issues. To facilitate collaboration, all our usertags are associated with the single user @code{guix}. The following usertags currently exist for that user:" msgstr "Dans Guix, nous expérimentons les étiquettes personnalisées pour suivre les problèmes spécifiques aux différentes architectures. Pour faciliter la collaboration, toutes les étiquettes personnalisées sont associées à un unique utilisateur @code{guix}. Les étiquettes suivantes existent pour cet utilisateur :" #. type: item -#: guix-git/doc/contributing.texi:1364 guix-git/doc/guix.texi:556 +#: guix-git/doc/contributing.texi:1392 guix-git/doc/guix.texi:557 #, no-wrap msgid "powerpc64le-linux" msgstr "powerpc64le-linux" #. type: table -#: guix-git/doc/contributing.texi:1372 +#: guix-git/doc/contributing.texi:1400 msgid "The purpose of this usertag is to make it easy to find the issues that matter most for the @code{powerpc64le-linux} system type. Please assign this usertag to bugs or patches that affect @code{powerpc64le-linux} but not other system types. In addition, you may use it to identify issues that for some reason are particularly important for the @code{powerpc64le-linux} system type, even if the issue affects other system types, too." msgstr "Le but de cet étiquettes est de faciliter la découverte des problèmes qui sont les plus importants pour le type de système @code{powerpc64le-linux}. Assignez cette étiquette aux bogues et aux correctifs qui affectent @code{powerpc64le-linux} mais pas les autres types de systèmes. En plus, vous pouvez l'utiliser pour identifier les problèmes particulièrement importants pour le type de système @code{powerpc64le-linux}, même si le problème affecte d'autres types de systèmes aussi." @@ -2062,134 +2107,136 @@ msgstr "Le but de cet étiquettes est de faciliter la découverte des problèmes #. type: item #. #-#-#-#-# guix.pot (guix manual checkout) #-#-#-#-# #. type: cindex -#: guix-git/doc/contributing.texi:1373 guix-git/doc/guix.texi:3070 -#: guix-git/doc/guix.texi:4771 +#: guix-git/doc/contributing.texi:1401 guix-git/doc/guix.texi:3087 +#: guix-git/doc/guix.texi:4789 #, no-wrap msgid "reproducibility" msgstr "reproductibilité" #. type: table -#: guix-git/doc/contributing.texi:1377 +#: guix-git/doc/contributing.texi:1405 msgid "For issues related to reproducibility. For example, it would be appropriate to assign this usertag to a bug report for a package that fails to build reproducibly." msgstr "Pour les problèmes de reproductibilité. Par exemple, ce serait approprié d'assigner cette étiquette à un rapport de bogue pour un paquet qui ne se construit pas de manière reproductible." #. type: Plain text -#: guix-git/doc/contributing.texi:1384 +#: guix-git/doc/contributing.texi:1412 msgid "If you're a committer and you want to add a usertag, just start using it with the @code{guix} user. If the usertag proves useful to you, consider updating this section of the manual so that others will know what your usertag means." msgstr "Si vous avez les droits en commit et que vous souhaitez ajouter une étiquette personnalisée, utilisez-la simplement avec l'utilisateur @code{guix}. Si l'étiquette vous est utile, vous pourrez alors mettre à jour cette section du manuel pour que d'autres puissent savoir ce que votre étiquette signifie." #. type: cindex -#: guix-git/doc/contributing.texi:1388 +#: guix-git/doc/contributing.texi:1416 #, no-wrap msgid "commit access, for developers" msgstr "accès en commit, pour les développeurs" #. type: Plain text -#: guix-git/doc/contributing.texi:1394 -msgid "Everyone can contribute to Guix without having commit access (@pxref{Submitting Patches}). However, for frequent contributors, having write access to the repository can be convenient. Commit access should not be thought of as a ``badge of honor'' but rather as a responsibility a contributor is willing to take to help the project." +#: guix-git/doc/contributing.texi:1427 +#, fuzzy +#| msgid "Everyone can contribute to Guix without having commit access (@pxref{Submitting Patches}). However, for frequent contributors, having write access to the repository can be convenient. Commit access should not be thought of as a ``badge of honor'' but rather as a responsibility a contributor is willing to take to help the project." +msgid "Everyone can contribute to Guix without having commit access (@pxref{Submitting Patches}). However, for frequent contributors, having write access to the repository can be convenient. As a rule of thumb, a contributor should have accumulated fifty (50) reviewed commits to be considered as a committer and have sustained their activity in the project for at least 6 months. This ensures enough interactions with the contributor, which is essential for mentoring and assessing whether they are ready to become a committer. Commit access should not be thought of as a ``badge of honor'' but rather as a responsibility a contributor is willing to take to help the project." msgstr "Tout le monde peut contribuer à Guix même sans accès en commit (@pxref{Submitting Patches}). Cependant, pour les contributeurs et contributrices fréquent·e·s, l'accès en écriture au dépôt peut être pratique. L'accès en commit n'est pas une médaille mais plutôt une responsabilité qu'un contributeur ou une contributrice accepte pour aider le projet." #. type: Plain text -#: guix-git/doc/contributing.texi:1398 +#: guix-git/doc/contributing.texi:1431 msgid "The following sections explain how to get commit access, how to be ready to push commits, and the policies and community expectations for commits pushed upstream." msgstr "Les sections suivantes expliquent comment recevoir des accès en commit, comment se préparer à pousser des commits et la politique et les attentes de la communauté pour les commits poussés en amont." #. type: subsection -#: guix-git/doc/contributing.texi:1399 +#: guix-git/doc/contributing.texi:1432 #, no-wrap msgid "Applying for Commit Access" msgstr "Candidater pour avoir accès en commit" #. type: Plain text -#: guix-git/doc/contributing.texi:1403 +#: guix-git/doc/contributing.texi:1436 msgid "When you deem it necessary, consider applying for commit access by following these steps:" msgstr "Lorsque vous l'estimez nécessaire, pensez à candidater à l'accès en commit en suivant les étapes suivantes :" #. type: enumerate -#: guix-git/doc/contributing.texi:1412 +#: guix-git/doc/contributing.texi:1445 msgid "Find three committers who would vouch for you. You can view the list of committers at @url{https://savannah.gnu.org/project/memberlist.php?group=guix}. Each of them should email a statement to @email{guix-maintainers@@gnu.org} (a private alias for the collective of maintainers), signed with their OpenPGP key." msgstr "Trouvez trois personnes ayant les accès en commit et qui soutiendront votre candidature. Vous pouvez trouver la liste de ces personnes sur @url{https://savannah.gnu.org/project/memberlist.php?group=guix}. Chacune d'entre elles devra envoyer une déclaration à @email{guix-maintainers@@gnu.org} (un alias privé pour le collectif des mainteneur·ses), signé de leur clef OpenPGP." #. type: enumerate -#: guix-git/doc/contributing.texi:1418 +#: guix-git/doc/contributing.texi:1451 msgid "Committers are expected to have had some interactions with you as a contributor and to be able to judge whether you are sufficiently familiar with the project's practices. It is @emph{not} a judgment on the value of your work, so a refusal should rather be interpreted as ``let's try again later''." msgstr "Les commiteurs devront avoir eu des interactions avec vous en tant que contributeur et pouvoir juger si vous êtes suffisament familier avec les pratiques du projet. Ce n'est @emph{pas} un jugement sur la valeur de votre travail, donc vous devriez plutôt interpréter un refus comme un « essayons un peu plus tard »." #. type: enumerate -#: guix-git/doc/contributing.texi:1425 +#: guix-git/doc/contributing.texi:1458 msgid "Send @email{guix-maintainers@@gnu.org} a message stating your intent, listing the three committers who support your application, signed with the OpenPGP key you will use to sign commits, and giving its fingerprint (see below). See @uref{https://emailselfdefense.fsf.org/en/}, for an introduction to public-key cryptography with GnuPG." msgstr "Envoyez un message à @email{guix-maintainers@@gnu.org} déclarant votre intention, listant les trois commiteur·ses qui supportent votre candidature, signez-le avec la clef OpenPGP que vous utiliserez pour signer vos commits et donnez son empreinte (voir plus bas). Voir @uref{https://emailselfdefense.fsf.org/fr/}, pour une introduction à la cryptopgraphie à clef publique avec GnuPG." #. type: enumerate -#: guix-git/doc/contributing.texi:1431 +#: guix-git/doc/contributing.texi:1464 msgid "Set up GnuPG such that it never uses the SHA1 hash algorithm for digital signatures, which is known to be unsafe since 2019, for instance by adding the following line to @file{~/.gnupg/gpg.conf} (@pxref{GPG Esoteric Options,,, gnupg, The GNU Privacy Guard Manual}):" msgstr "Configurer GnuPG de manière à ce qu'il n'utilise jamais l'algorithme de hachage SHA1 pour les signatures numériques, dont on sait qu'il est dangereux depuis 2019, par exemple en ajoutant la ligne suivante à @file{~/.gnupg/gpg.conf} (@pxref{GPG Esoteric Options, , , gnupg, The GNU Privacy Guard Manual}) :" #. type: example -#: guix-git/doc/contributing.texi:1434 +#: guix-git/doc/contributing.texi:1467 #, no-wrap msgid "digest-algo sha512\n" msgstr "digest-algo sha512\n" #. type: enumerate -#: guix-git/doc/contributing.texi:1439 +#: guix-git/doc/contributing.texi:1472 msgid "Maintainers ultimately decide whether to grant you commit access, usually following your referrals' recommendation." msgstr "Les mainteneur·ses ont le dernier mot sur la décision de vous donner accès et suivent généralement l'avis de vos référents." #. type: cindex -#: guix-git/doc/contributing.texi:1441 +#: guix-git/doc/contributing.texi:1474 #, no-wrap msgid "OpenPGP, signed commits" msgstr "OpenPGP, commits signés" #. type: enumerate -#: guix-git/doc/contributing.texi:1446 +#: guix-git/doc/contributing.texi:1479 msgid "If and once you've been given access, please send a message to @email{guix-devel@@gnu.org} to say so, again signed with the OpenPGP key you will use to sign commits (do that before pushing your first commit). That way, everyone can notice and ensure you control that OpenPGP key." msgstr "Si vous obtenez l'accès, envoyez un message à @email{guix-devel@@gnu.org} pour le faire savoir, en signant de nouveau avec le clef OpenPGP que vous utiliserez pour signer les commits (faites-le avant votre premier commit). De cette manière, tout le monde peut s'en rendre compte et s'assurer que c'est bien vous qui contrôlez cette clef OpenPGP." #. type: quotation -#: guix-git/doc/contributing.texi:1447 guix-git/doc/guix.texi:17972 +#: guix-git/doc/contributing.texi:1480 guix-git/doc/guix.texi:18334 #, no-wrap msgid "Important" msgstr "Important" #. type: quotation -#: guix-git/doc/contributing.texi:1449 +#: guix-git/doc/contributing.texi:1482 msgid "Before you can push for the first time, maintainers must:" msgstr "Avant d'envoyer pour la première fois, les mainteneur·ses doivent :" #. type: enumerate -#: guix-git/doc/contributing.texi:1453 +#: guix-git/doc/contributing.texi:1486 msgid "add your OpenPGP key to the @code{keyring} branch;" msgstr "ajoutez votre clé OpenPGP à la branche @code{keyring} ;" #. type: enumerate -#: guix-git/doc/contributing.texi:1456 +#: guix-git/doc/contributing.texi:1489 msgid "add your OpenPGP fingerprint to the @file{.guix-authorizations} file of the branch(es) you will commit to." msgstr "ajoutez votre empreinte OpenPGP au fichier @file{.guix-authorizations} de la (des) branche(s) sur laquelle (lesquelles) vous vous engagez." #. type: enumerate -#: guix-git/doc/contributing.texi:1461 +#: guix-git/doc/contributing.texi:1494 msgid "Make sure to read the rest of this section and... profit!" msgstr "Assurez-vous de lire le reste de cette section et… profitez !" #. type: quotation -#: guix-git/doc/contributing.texi:1467 +#: guix-git/doc/contributing.texi:1500 msgid "Maintainers are happy to give commit access to people who have been contributing for some time and have a track record---don't be shy and don't underestimate your work!" msgstr "Les mainteneur·ses se réjouissent de donnéer l'accès en commit aux personnes qui ont contribué depuis un certain temps et ont un historique — ne soyez pas timide et ne sous-estimez pas votre travail !" #. type: quotation -#: guix-git/doc/contributing.texi:1471 +#: guix-git/doc/contributing.texi:1504 msgid "However, note that the project is working towards a more automated patch review and merging system, which, as a consequence, may lead us to have fewer people with commit access to the main repository. Stay tuned!" msgstr "Cependant, remarquez que le projet travail sur un système de revu de correctifs et de fusion plus automatisé, qui, en conséquence, pourra nous faire réduire le nombre de personne ayant accès en commit au dépôt principal. Restez à l'écoute !" #. type: Plain text -#: guix-git/doc/contributing.texi:1478 +#: guix-git/doc/contributing.texi:1511 msgid "All commits that are pushed to the central repository on Savannah must be signed with an OpenPGP key, and the public key should be uploaded to your user account on Savannah and to public key servers, such as @code{keys.openpgp.org}. To configure Git to automatically sign commits, run:" msgstr "Tous les commits poussés sur le dépôt central sur Savannah doivent être signés avec une clef OpenPGP et la clef publique doit être chargée sur votre compte utilisateur dans Savannah et les serveurs de clef publique, comme @code{keys.opengpg.org}. Pour configurer Git pour signer automatiquement vos commits, lancez :" #. type: example -#: guix-git/doc/contributing.texi:1481 +#: guix-git/doc/contributing.texi:1514 #, no-wrap msgid "" "git config commit.gpgsign true\n" @@ -2199,7 +2246,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/contributing.texi:1484 +#: guix-git/doc/contributing.texi:1517 #, no-wrap msgid "" "# Substitute the fingerprint of your public PGP key.\n" @@ -2209,347 +2256,347 @@ msgstr "" "git config user.signingkey CABBA6EA1DC0FF33\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1489 +#: guix-git/doc/contributing.texi:1522 msgid "You can prevent yourself from accidentally pushing unsigned commits to Savannah by using the pre-push Git hook located at @file{etc/git/pre-push}:" msgstr "Vous pouvez éviter de pousser accidentellement des commits non signés vers Savannah et utilisant le crochet Git de pré-envoi situé dans @file{etc/git/pre-push} :" #. type: example -#: guix-git/doc/contributing.texi:1492 +#: guix-git/doc/contributing.texi:1525 #, no-wrap msgid "cp etc/git/pre-push .git/hooks/pre-push\n" msgstr "cp etc/git/pre-push .git/hooks/pre-push\n" #. type: subsection -#: guix-git/doc/contributing.texi:1494 +#: guix-git/doc/contributing.texi:1527 #, no-wrap msgid "Commit Policy" msgstr "Politique de commit" #. type: Plain text -#: guix-git/doc/contributing.texi:1499 +#: guix-git/doc/contributing.texi:1532 msgid "If you get commit access, please make sure to follow the policy below (discussions of the policy can take place on @email{guix-devel@@gnu.org})." msgstr "Si vous avez accès en commit, assurez-vous de respecter la politique ci-dessous (les discussions à propos de cette politique peuvent avoir lieu sur @email{guix-devel@@gnu.org})." #. type: Plain text -#: guix-git/doc/contributing.texi:1504 +#: guix-git/doc/contributing.texi:1537 msgid "Non-trivial patches should always be posted to @email{guix-patches@@gnu.org} (trivial patches include fixing typos, etc.). This mailing list fills the patch-tracking database (@pxref{Tracking Bugs and Patches})." msgstr "Les correctifs non triviaux doivent toujours être postés sur @email{guix-patches@@gnu.org} (les correctifs triviaux consistent en des correctifs de coquilles, etc). Cette liste de diffusion rempli la base de données de correctifs (@pxref{Tracking Bugs and Patches})." #. type: Plain text -#: guix-git/doc/contributing.texi:1513 +#: guix-git/doc/contributing.texi:1546 msgid "For patches that just add a new package, and a simple one, it's OK to commit, if you're confident (which means you successfully built it in a chroot setup, and have done a reasonable copyright and license auditing). Likewise for package upgrades, except upgrades that trigger a lot of rebuilds (for example, upgrading GnuTLS or GLib). We have a mailing list for commit notifications (@email{guix-commits@@gnu.org}), so people can notice. Before pushing your changes, make sure to run @code{git pull --rebase}." msgstr "Pour les correctifs qui ne font qu'ajouter un nouveau paquet, et un paquet simple, commiter directement est accepté si vous êtes en confiance (ce qui signifie que vous avez réussi à le construire dans un environnement chroot et avez fait un audit suffisant des copyrights et de la licence). Pareil pour les mises à jour de paquets, sauf pour les mises à jour qui occasionnent beaucoup de reconstruction (par exemple mettre à jour GnuTLS ou GLib). Nous avons une liste de diffusion pour les notifications de commit (@email{guix-commits@@gnu.org}), pour que les gens puissent s'en rendre compte. Avant de pousser vos changements, assurez-vous d'avoir lancé @code{git pull --rebase}." #. type: Plain text -#: guix-git/doc/contributing.texi:1518 +#: guix-git/doc/contributing.texi:1551 msgid "When pushing a commit on behalf of somebody else, please add a @code{Signed-off-by} line at the end of the commit log message---e.g., with @command{git am --signoff}. This improves tracking of who did what." msgstr "Lorsque vous poussez un commit pour le compte de quelqu'un d'autre, ajoutez une ligne @code{Signed-off-by} à la fin du message de commit — p.@: ex.@: avec @command{git am --signoff}. Cela amélior le suivi que qui fait quoi." #. type: Plain text -#: guix-git/doc/contributing.texi:1522 +#: guix-git/doc/contributing.texi:1555 msgid "When adding channel news entries (@pxref{Channels, Writing Channel News}), make sure they are well-formed by running the following command right before pushing:" msgstr "Quand vous ajoutez de nouvelles entrées au canal (@pxref{Channels, Writing Channel News}), assurez-vous qu'elles sont bien formées en exécutant la commande suivante juste avant d'envoyer :" #. type: example -#: guix-git/doc/contributing.texi:1525 +#: guix-git/doc/contributing.texi:1558 #, no-wrap msgid "make check-channel-news\n" msgstr "make check-channel-news\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1531 +#: guix-git/doc/contributing.texi:1564 msgid "For anything else, please post to @email{guix-patches@@gnu.org} and leave time for a review, without committing anything (@pxref{Submitting Patches}). If you didn’t receive any reply after two weeks, and if you're confident, it's OK to commit." msgstr "Pour tout autre chose, envoyez un correctif à @email{guix-patches@@gnu.org} et laissez un peu de temps pour la revue, sans rien commiter (@pxref{Submitting Patches}). Si vous ne recevez pas de réponse dans les deux semaines et que vous avez confiance, vous pouvez commiter." #. type: Plain text -#: guix-git/doc/contributing.texi:1534 +#: guix-git/doc/contributing.texi:1567 msgid "That last part is subject to being adjusted, allowing individuals to commit directly on non-controversial changes on parts they’re familiar with." msgstr "La dernière partie est sujète à ajustement, pour permettre à certains de commiter directement des changements non controversés sur des parties qui leurs sont familières." #. type: subsection -#: guix-git/doc/contributing.texi:1535 +#: guix-git/doc/contributing.texi:1568 #, no-wrap msgid "Addressing Issues" msgstr "Régler les problèmes" #. type: Plain text -#: guix-git/doc/contributing.texi:1546 +#: guix-git/doc/contributing.texi:1579 msgid "Peer review (@pxref{Submitting Patches}) and tools such as @command{guix lint} (@pxref{Invoking guix lint}) and the test suite (@pxref{Running the Test Suite}) should catch issues before they are pushed. Yet, commits that ``break'' functionality might occasionally go through. When that happens, there are two priorities: mitigating the impact, and understanding what happened to reduce the chance of similar incidents in the future. The responsibility for both these things primarily lies with those involved, but like everything this is a group effort." msgstr "La revue par les pairs (@pxref{Submitting Patches}) et les outils comme @command{guix lint} (@pxref{Invoking guix lint}) et la suite de tests (@pxref{Running the Test Suite}) devraient trouver les problèmes avant qu'ils ne soient poussés. Pourtant, il arrive parfois que des commits qui « cassent » une fonctionnalité passent à travers les mailles du filet. Lorsque cela arrive, il y a deux priorités : minimiser l'impact et comprendre ce qui s'est passé, pour réduire les chances qu'un incident similaire se produise à nouveau. Les personnes impliquées ont la plus grande part de responsabilité dans ces deux tâches, mais comme pour tout le reste, c'est aussi un travail commun." #. type: Plain text -#: guix-git/doc/contributing.texi:1551 +#: guix-git/doc/contributing.texi:1584 msgid "Some issues can directly affect all users---for instance because they make @command{guix pull} fail or break core functionality, because they break major packages (at build time or run time), or because they introduce known security vulnerabilities." msgstr "Certains problèmes peuvent directement affecter les utilisateurs et utilisatrices — par exemple si @command{guix pull} échoue ou qu'une fonctionnalité importante est cassée parce que des paquets importants sont cassés (à la construction ou à l'exécution), ou parce qu'ils introduisent des problèmes de sécurités connus." #. type: cindex -#: guix-git/doc/contributing.texi:1552 +#: guix-git/doc/contributing.texi:1585 #, no-wrap msgid "reverting commits" msgstr "inverser des comits" #. type: Plain text -#: guix-git/doc/contributing.texi:1558 +#: guix-git/doc/contributing.texi:1591 msgid "The people involved in authoring, reviewing, and pushing such commit(s) should be at the forefront to mitigate their impact in a timely fashion: by pushing a followup commit to fix it (if possible), or by reverting it to leave time to come up with a proper fix, and by communicating with other developers about the problem." msgstr "Les personnes impliquées, auteurs, relecteurs et ayant poussé ces commits devraient avant tout réduire leur impact rapidement en poussant un nouveau commit qui le corrige (si c'est possible) ou en inversant les commits pour laisser du temps avant de trouver un correctif satisfaisant, et en communiquant le problème aux autres développeurs." #. type: Plain text -#: guix-git/doc/contributing.texi:1564 +#: guix-git/doc/contributing.texi:1597 msgid "If these persons are unavailable to address the issue in time, other committers are entitled to revert the commit(s), explaining in the commit log and on the mailing list what the problem was, with the goal of leaving time to the original committer, reviewer(s), and author(s) to propose a way forward." msgstr "Si ces personnes ne peuvent pas s'occuper du problème à temps, les autres commiteurs peuvent inverser les commits, en expliquant le problème dans le message de commit et sur la liste de diffusion, dans le but de donner du temps au commiteur, aux relecteurs et aux auteurs de proposer une solution." #. type: Plain text -#: guix-git/doc/contributing.texi:1573 +#: guix-git/doc/contributing.texi:1606 msgid "Once the problem has been dealt with, it is the responsibility of those involved to make sure the situation is understood. If you are working to understand what happened, focus on gathering information and avoid assigning any blame. Do ask those involved to describe what happened, do not ask them to explain the situation---this would implicitly blame them, which is unhelpful. Accountability comes from a consensus about the problem, learning from it and improving processes so that it's less likely to reoccur." msgstr "Une fois que le problème a été réglé, il est de la responsabilité des personnes impliquées de s'assurer que la situation a été comprise. Si vous travaillez à comprendre ce qui est arrivé, efforcez-vous de récolter des informations plutôt que de désigner des coupables. Demandez aux gens impliqués de décrire ce qui est arrivé, ne leur demandez pas d'expliquer la situation -- ce qui les mettrait implicitement dans une position de responsabilité et n'est d'aucune aide. La responsabilité vient une fois atteint un consensus sur le problème, qui permet d'apprendre de ce qui s'est passé et d'améliorer les processus afin qu'il soit moins à risque de se reproduire." #. type: subsection -#: guix-git/doc/contributing.texi:1574 +#: guix-git/doc/contributing.texi:1607 #, no-wrap msgid "Commit Revocation" msgstr "Révocation des droits en commit" #. type: Plain text -#: guix-git/doc/contributing.texi:1581 +#: guix-git/doc/contributing.texi:1614 msgid "In order to reduce the possibility of mistakes, committers will have their Savannah account removed from the Guix Savannah project and their key removed from @file{.guix-authorizations} after 12 months of inactivity; they can ask to regain commit access by emailing the maintainers, without going through the vouching process." msgstr "Pour réduire la probabilité de faire une erreur, celles et ceux qui peuvent commiter seront retiré·e·s du projet Guix sur Savannah et leur clé supprimée de @file{.guix-authorizations} après 12 mois d'inactivité ; ils et elles pourront retrouver leur accès en envoyant un courriel aux mainteneur·ses, sans avoir à passer par le processus de cooptation." #. type: Plain text -#: guix-git/doc/contributing.texi:1591 +#: guix-git/doc/contributing.texi:1624 msgid "Maintainers@footnote{See @uref{https://guix.gnu.org/en/about} for the current list of maintainers. You can email them privately at @email{guix-maintainers@@gnu.org}.} may also revoke an individual's commit rights, as a last resort, if cooperation with the rest of the community has caused too much friction---even within the bounds of the project's code of conduct (@pxref{Contributing}). They would only do so after public or private discussion with the individual and a clear notice. Examples of behavior that hinders cooperation and could lead to such a decision include:" msgstr "Les mainteneur·ses@footnote{Voir @uref{https ://guix.gnu.org/fr/about} pour la liste à jour des mainteneur·ses. Vous pouvez leur envoyer un courriel en privé à l'adresse @email{guix-maintainers@@gnu.org}.} peuvent aussi révoquer les droits en commit de quelqu'un, en dernier recours, si la coopération avec le reste de la communauté a créé trop de friction -- même en restant dans le cadre du code de conduite (@pxref{Contributing}) du projet. Ils ne le feraient qu'après une discussion publique ou privée avec la personne concernée et un avertissement clair. Voici des exemples de comportements qui gênent la coopération et pourraient mener à une telle décision :" #. type: item -#: guix-git/doc/contributing.texi:1593 +#: guix-git/doc/contributing.texi:1626 #, no-wrap msgid "repeated violation of the commit policy stated above;" msgstr "enfreindre de manière répétée la politique de commit indiquée ci-dessus ;" #. type: item -#: guix-git/doc/contributing.texi:1594 +#: guix-git/doc/contributing.texi:1627 #, no-wrap msgid "repeated failure to take peer criticism into account;" msgstr "échouer de manière répétée à prendre en compte les critiques de la communauté ;" #. type: item -#: guix-git/doc/contributing.texi:1595 +#: guix-git/doc/contributing.texi:1628 #, no-wrap msgid "breaching trust through a series of grave incidents." msgstr "briser la confiance suite à une série d'incidents graves." #. type: Plain text -#: guix-git/doc/contributing.texi:1602 +#: guix-git/doc/contributing.texi:1635 msgid "When maintainers resort to such a decision, they notify developers on @email{guix-devel@@gnu.org}; inquiries may be sent to @email{guix-maintainers@@gnu.org}. Depending on the situation, the individual may still be welcome to contribute." msgstr "Quand les mainteneurs recourent à une telle décision, ils en informent les développeurs sur @email{guix-devel@@gnu.org} ; des questions peuvent être envoyées à @email{guix-maintainers@@gnu.org}. Suivant la situation, les contributions de la personne peuvent rester bienvenues." #. type: subsection -#: guix-git/doc/contributing.texi:1603 +#: guix-git/doc/contributing.texi:1636 #, no-wrap msgid "Helping Out" msgstr "Aider" #. type: Plain text -#: guix-git/doc/contributing.texi:1610 +#: guix-git/doc/contributing.texi:1643 msgid "One last thing: the project keeps moving forward because committers not only push their own awesome changes, but also offer some of their time @emph{reviewing} and pushing other people's changes. As a committer, you're welcome to use your expertise and commit rights to help other contributors, too!" msgstr "Une dernière chose : le projet continue à avancer non seulement parce que les commiteurs poussent leurs propres changements, mais aussi parce qu'ils offrent de leur temps pour @emph{revoir} et pousser les changements des autres personnes. En tant que commiteur, vous pouvez utiliser votre expertise et vos droits en commit pour aider d'autres contributeaurs aussi !" #. type: cindex -#: guix-git/doc/contributing.texi:1614 +#: guix-git/doc/contributing.texi:1647 #, no-wrap msgid "update-guix-package, updating the guix package" msgstr "update-guix-package, mise à jour du paquet guix" #. type: Plain text -#: guix-git/doc/contributing.texi:1620 +#: guix-git/doc/contributing.texi:1653 msgid "It is sometimes desirable to update the @code{guix} package itself (the package defined in @code{(gnu packages package-management)}), for example to make new daemon features available for use by the @code{guix-service-type} service type. In order to simplify this task, the following command can be used:" msgstr "Il est quelquefois souhaitable de mettre à jour le paquet @code{guix} lui-même (le paquet défini dans @code{(gnu packages package-management)}), par exemple pour rendre de nouvelles caractéristiques disponibles à l'utilisation par le type de service @code{guix-service-type}. Afin de simplifier cette tâche, la commande suivante peut être utilisée :" #. type: example -#: guix-git/doc/contributing.texi:1623 +#: guix-git/doc/contributing.texi:1656 #, no-wrap msgid "make update-guix-package\n" msgstr "make update-guix-package\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1630 +#: guix-git/doc/contributing.texi:1663 msgid "The @code{update-guix-package} make target will use the last known @emph{commit} corresponding to @code{HEAD} in your Guix checkout, compute the hash of the Guix sources corresponding to that commit and update the @code{commit}, @code{revision} and hash of the @code{guix} package definition." msgstr "Le make target @code{update-guix-package} utilisera le dernier @emph{commit} connu correspondant à @code{HEAD} dans votre checkout Guix, calculera le hash des sources Guix correspondant à ce commit et mettra à jour la définition des paquets @code{commit}, @code{revision} et le hash du paquet @code{guix}." #. type: Plain text -#: guix-git/doc/contributing.texi:1634 +#: guix-git/doc/contributing.texi:1667 msgid "To validate that the updated @code{guix} package hashes are correct and that it can be built successfully, the following command can be run from the directory of your Guix checkout:" msgstr "Pour avoir la certitude que les hash du paquet @code{guix} mis à jour sont corrects et qu'il peut être construit avec succès, la commande suivante peut être lancée depuis le répertoire de votre checkout Guix :" #. type: example -#: guix-git/doc/contributing.texi:1637 +#: guix-git/doc/contributing.texi:1670 #, no-wrap msgid "./pre-inst-env guix build guix\n" msgstr "./pre-inst-env guix build guix\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1642 +#: guix-git/doc/contributing.texi:1675 msgid "To guard against accidentally updating the @code{guix} package to a commit that others can't refer to, a check is made that the commit used has already been pushed to the Savannah-hosted Guix git repository." msgstr "Pour éviter de mettre à jour accidentellement le paquet @code{guix} en un commit auquel les autres ne peuvent pas se référer, on vérifie que le commit utilisé a déjà été placé dans le dépôt git de Guix hébergé par Savannah." #. type: Plain text -#: guix-git/doc/contributing.texi:1647 +#: guix-git/doc/contributing.texi:1680 msgid "This check can be disabled, @emph{at your own peril}, by setting the @code{GUIX_ALLOW_ME_TO_USE_PRIVATE_COMMIT} environment variable. When this variable is set, the updated package source is also added to the store. This is used as part of the release process of Guix." msgstr "Cette vérification peut être désactivée, @emph{à vos risques et périls}, en passant la variable d'environnement @code{GUIX_ALLOW_ME_TO_USE_PRIVATE_COMMIT}. Lorsque cette variable est initialisée, les source du paquet mis à jour est aussi ajouté au dépôt. Cela est utilisé dans le processus de publication de Guix." #. type: cindex -#: guix-git/doc/contributing.texi:1648 +#: guix-git/doc/contributing.texi:1681 #, no-wrap msgid "translation" msgstr "traduction" #. type: cindex -#: guix-git/doc/contributing.texi:1649 +#: guix-git/doc/contributing.texi:1682 #, no-wrap msgid "l10n" msgstr "l10n" #. type: cindex -#: guix-git/doc/contributing.texi:1650 +#: guix-git/doc/contributing.texi:1683 #, no-wrap msgid "i18n" msgstr "i18n" #. type: cindex -#: guix-git/doc/contributing.texi:1651 +#: guix-git/doc/contributing.texi:1684 #, no-wrap msgid "native language support" msgstr "prise en charge des langues" #. type: Plain text -#: guix-git/doc/contributing.texi:1661 +#: guix-git/doc/contributing.texi:1694 msgid "Writing code and packages is not the only way to provide a meaningful contribution to Guix. Translating to a language you speak is another example of a valuable contribution you can make. This section is designed to describe the translation process. It gives you advice on how you can get involved, what can be translated, what mistakes you should avoid and what we can do to help you!" msgstr "Écrire du code et des paquets n'est pas la seule manière possible de proposer une contribution intéressante à Guix. Traduire vers une langue que vous parlez est un autre exemple de contribution importante que vous pouvez faire. Cette section décrit le processus de traduction. Elle vous donner des conseils sur comment vous impliquer, ce qui peut être traduit, les erreurs à éviter et ce que vous pouvez faire pour nous aider !" #. type: Plain text -#: guix-git/doc/contributing.texi:1667 +#: guix-git/doc/contributing.texi:1700 msgid "Guix is a big project that has multiple components that can be translated. We coordinate the translation effort on a @uref{https://translate.fedoraproject.org/projects/guix/,Weblate instance} hosted by our friends at Fedora. You will need an account to submit translations." msgstr "Guix est un gros projet qui a plusieurs composants traduisibles. Nous coordonnons l'effort de traduction sur une @uref{https://translate.fedoraproject.org/projects/guix/,instance Weblate} hébergée par nos amis de Fedora. Vous aurez besoin d'un compte pour soumettre vos traductions." #. type: Plain text -#: guix-git/doc/contributing.texi:1674 +#: guix-git/doc/contributing.texi:1707 msgid "Some of the software packaged in Guix also contain translations. We do not host a translation platform for them. If you want to translate a package provided by Guix, you should contact their developers or find the information on their website. As an example, you can find the homepage of the @code{hello} package by typing @code{guix show hello}. On the ``homepage'' line, you will see @url{https://www.gnu.org/software/hello/} as the homepage." msgstr "Certains logiciels empaquetés par Guix contiennent aussi des traductions. Nous n'hébergeons pas de plateforme de traduction pour eux. Si vous voulez traduire un paquet fournit par Guix, vous devrez contacter ses développeurs ou trouver plus d'information sur son site web. Par exemple, vous pouvez trouver la page d'accueil du paquet @code{hello} en lançant @code{guix show hello}. Sur la ligne indiquant « homepage », vous verrez que la page d'accueil est @url{https://www.gnu.org/software/hello/}." #. type: Plain text -#: guix-git/doc/contributing.texi:1679 +#: guix-git/doc/contributing.texi:1712 msgid "Many GNU and non-GNU packages can be translated on the @uref{https://translationproject.org,Translation Project}. Some projects with multiple components have their own platform. For instance, GNOME has its own platform, @uref{https://l10n.gnome.org/,Damned Lies}." msgstr "De nombreux paquets GNU et non-GNU peuvent être traduits sur le @uref{https://translationproject.org,Projet de traduction}. Certains projets avec de multiples composants ont leur propre plateforme. Par exemple, GNOME a sa propre plateforme, @uref{https://l10n.gnome.org/,Damned Lies}." #. type: Plain text -#: guix-git/doc/contributing.texi:1681 +#: guix-git/doc/contributing.texi:1714 msgid "Guix has five components hosted on Weblate." msgstr "Guix a cinq composants hébergés sur Weblate." #. type: item -#: guix-git/doc/contributing.texi:1683 +#: guix-git/doc/contributing.texi:1716 #, no-wrap msgid "@code{guix} contains all the strings from the Guix software (the" msgstr "@code{guix} contient toutes les chaînes du logiciel Guix (le guide" #. type: itemize -#: guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1718 msgid "guided system installer, the package manager, etc), excluding packages." msgstr "d'installation du système, le gestionnaire de paquets, etc), en dehors des paquets." #. type: item -#: guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1718 #, no-wrap msgid "@code{packages} contains the synopsis (single-sentence description" msgstr "@code{packages} contient le synopsis (une description courte en" #. type: itemize -#: guix-git/doc/contributing.texi:1687 +#: guix-git/doc/contributing.texi:1720 msgid "of a package) and description (longer description) of packages in Guix." msgstr "une ligne) et la description (longue) des paquets de Guix." #. type: item -#: guix-git/doc/contributing.texi:1687 +#: guix-git/doc/contributing.texi:1720 #, no-wrap msgid "@code{website} contains the official Guix website, except for" msgstr "@code{website} contient le site web officiel de Guix, en dehors" #. type: itemize -#: guix-git/doc/contributing.texi:1689 +#: guix-git/doc/contributing.texi:1722 msgid "blog posts and multimedia content." msgstr "des billets de blog et du contenu multimédia." #. type: item -#: guix-git/doc/contributing.texi:1689 +#: guix-git/doc/contributing.texi:1722 #, no-wrap msgid "@code{documentation-manual} corresponds to this manual." msgstr "@code{documentation-manual} correspond à ce manuel." #. type: item -#: guix-git/doc/contributing.texi:1690 +#: guix-git/doc/contributing.texi:1723 #, no-wrap msgid "@code{documentation-cookbook} is the component for the cookbook." msgstr "@code{documentation-cookbook} est le composant du livre de recettes." #. type: subsubheading -#: guix-git/doc/contributing.texi:1693 +#: guix-git/doc/contributing.texi:1726 #, no-wrap msgid "General Directions" msgstr "Instructions générales" #. type: Plain text -#: guix-git/doc/contributing.texi:1701 +#: guix-git/doc/contributing.texi:1734 msgid "Once you get an account, you should be able to select a component from @uref{https://translate.fedoraproject.org/projects/guix/,the guix project}, and select a language. If your language does not appear in the list, go to the bottom and click on the ``Start new translation'' button. Select the language you want to translate to from the list, to start your new translation." msgstr "Une fois que vous aurez un compte, vous pourrez choisir un composant dans @uref{https://translate.fedoraproject.org/projects/guix/,projet guix}, et choisir une langue. Si votre langue n'apparaît pas dans la liste, allez en bas et cliquez sur le bouton « commencer une nouvelle traduction ». Choisissez la langue en laquelle vous voulez traduire dans la liste pour commencer votre nouvelle traduction." #. type: Plain text -#: guix-git/doc/contributing.texi:1706 +#: guix-git/doc/contributing.texi:1739 msgid "Like lots of other free software packages, Guix uses @uref{https://www.gnu.org/software/gettext,GNU Gettext} for its translations, with which translatable strings are extracted from the source code to so-called PO files." msgstr "Comme de nombreux autres logiciels libres, Guix utilise @uref{https://www.gnu.org/software/gettext,GNU Gettext} pour ses traductions. Grâce à lui, les chaînes traduisibles sont extraites du code source en des fichier dits PO." #. type: Plain text -#: guix-git/doc/contributing.texi:1717 +#: guix-git/doc/contributing.texi:1750 msgid "Even though PO files are text files, changes should not be made with a text editor but with PO editing software. Weblate integrates PO editing functionality. Alternatively, translators can use any of various free-software tools for filling in translations, of which @uref{https://poedit.net/,Poedit} is one example, and (after logging in) @uref{https://docs.weblate.org/en/latest/user/files.html,upload} the changed file. There is also a special @uref{https://www.emacswiki.org/emacs/PoMode,PO editing mode} for users of GNU Emacs. Over time translators find out what software they are happy with and what features they need." msgstr "Même si les fichiers PO sont des fichiers textes, vous devriez les modifier non pas avec un éditeur de texte mais avec un logiciel d'édition de PO. Weblate intègre une fonctionnalité d'édition de PO. Autrement, vous pouvez utiliser n'importe lequel des divers outils libres pour remplir les traductions, dont @uref{https://poedit.net/,Poedit} est un exemple, et (après vous être connecté) @uref{https://docs.weblate.org/en/latest/user/files.html,téléverser} le fichier modifié. Il y a aussi un @uref{https://www.emacswiki.org/emacs/PoMode,mode d'édition de PO} spécial pour GNU Emacs. Avec le temps vous trouverez les logiciels qui vous satisfont et les fonctionnalités dont vous avez besoin." #. type: Plain text -#: guix-git/doc/contributing.texi:1722 +#: guix-git/doc/contributing.texi:1755 msgid "On Weblate, you will find various links to the editor, that will show various subsets (or all) of the strings. Have a look around and at the @uref{https://docs.weblate.org/en/latest/,documentation} to familiarize yourself with the platform." msgstr "Sur Weblate, vous trouverez plusieurs liens vers l'éditeur, qui vous montreront divers sous-ensemble (ou la totalité) des chaînes. Explorez Weblate et consultez la @uref{https://docs.weblate.org/fr/latest/,documentation} pour vous familiariser avec la plateforme." #. type: subsubheading -#: guix-git/doc/contributing.texi:1723 +#: guix-git/doc/contributing.texi:1756 #, no-wrap msgid "Translation Components" msgstr "Composants des traductions" #. type: Plain text -#: guix-git/doc/contributing.texi:1728 +#: guix-git/doc/contributing.texi:1761 msgid "In this section, we provide more detailed guidance on the translation process, as well as details on what you should or should not do. When in doubt, please contact us, we will be happy to help!" msgstr "Dans cette section, nous proposons un guide plus détaillé du processus de traduction, ainsi que des détails sur ce que vous devriez ou ne devriez pas faire. Si vous avez un doute, contactez-nous, nous serons ravis de vous aider !" #. type: item -#: guix-git/doc/contributing.texi:1730 guix-git/doc/guix.texi:9420 +#: guix-git/doc/contributing.texi:1763 guix-git/doc/guix.texi:9734 #, no-wrap msgid "guix" msgstr "guix" #. type: table -#: guix-git/doc/contributing.texi:1735 +#: guix-git/doc/contributing.texi:1768 msgid "Guix is written in the Guile programming language, and some strings contain special formatting that is interpreted by Guile. These special formatting should be highlighted by Weblate. They start with @code{~} followed by one or more characters." msgstr "Guix est écrit dans le langage de programmation Guile, et certaines chaînes contiennent du formatage spécial interprété par Guile. Ce formatage spécial devrait être mis en évidence par Weblate. Il commence par @code{~} suivi d'un ou plusieurs caractères." #. type: table -#: guix-git/doc/contributing.texi:1744 +#: guix-git/doc/contributing.texi:1777 msgid "When printing the string, Guile replaces the special formatting symbols with actual values. For instance, the string @samp{ambiguous package specification `~a'} would be substituted to contain said package specification instead of @code{~a}. To properly translate this string, you must keep the formatting code in your translation, although you can place it where it makes sense in your language. For instance, the French translation says @samp{spécification du paquet « ~a » ambiguë} because the adjective needs to be placed in the end of the sentence." msgstr "Lors de l'affichage des chaînes, Guile remplace les symboles de formatage spéciaux avec les vrais valeurs. Par exemple, la chaîne @samp{ambiguous package specification `~a'} serait modifiée pour contenir la spécification du paquet en question au lieu de @code{~a}. Pour traduire cette chaîne correctement, vous devez garder le formatage dans vos traduction, même si vous pouvez le placer là où cela a le plus de sens dans votre langue. Par exemple, la traduction française dit @samp{spécification du paquet « ~a » ambiguë} parce que l'adjectif doit être placé à la fin de la phrase." #. type: table -#: guix-git/doc/contributing.texi:1748 +#: guix-git/doc/contributing.texi:1781 msgid "If there are multiple formatting symbols, make sure to respect the order. Guile does not know in which order you intended the string to be read, so it will substitute the symbols in the same order as the English sentence." msgstr "S'il y a plusieurs symboles de formatage, assurez-vous de respecter l'ordre. Guile ne sait pas dans quel ordre vous voulez qu'il lise la chaîne, donc il remplacera les symboles dans le même ordre que la phrase anglaise." #. type: table -#: guix-git/doc/contributing.texi:1756 +#: guix-git/doc/contributing.texi:1789 msgid "As an example, you cannot translate @samp{package '~a' has been superseded by '~a'} by @samp{'~a' superseeds package '~a'}, because the meaning would be reversed. If @var{foo} is superseded by @var{bar}, the translation would read @samp{'foo' superseeds package 'bar'}. To work around this problem, it is possible to use more advanced formatting to select a given piece of data, instead of following the default English order. @xref{Formatted Output,,, guile, GNU Guile Reference Manual}, for more information on formatting in Guile." msgstr "Par exemple, vous ne pouvez pas traduire @samp{package '~a' has been superseded by '~a'} par @samp{« ~a » remplace le paquet « ~a »}, parce que le sens serait renversé. Si @var{toto} est remplacé par @var{titi}, la traduction dirait @samp{« toto » remplace le paquet « titi »}. Pour éviter ce problème, il est possible d'utiliser un formatage plus avancé pour désigner une donnée particulière, au lieu de suivre l'ordre anglais par défaut. @xref{Formatted Output,,, guile, GNU Guile Reference Manual}, pour plus d'information sur le formatage en Guile." @@ -2557,98 +2604,98 @@ msgstr "Par exemple, vous ne pouvez pas traduire @samp{package '~a' has been sup #. type: item #. #-#-#-#-# guix.pot (guix manual checkout) #-#-#-#-# #. type: cindex -#: guix-git/doc/contributing.texi:1757 guix-git/doc/guix.texi:2988 +#: guix-git/doc/contributing.texi:1790 guix-git/doc/guix.texi:3005 #, no-wrap msgid "packages" msgstr "paquets" #. type: table -#: guix-git/doc/contributing.texi:1762 +#: guix-git/doc/contributing.texi:1795 msgid "Package descriptions occasionally contain Texinfo markup (@pxref{Synopses and Descriptions}). Texinfo markup looks like @samp{@@code@{rm -rf@}}, @samp{@@emph@{important@}}, etc. When translating, please leave markup as is." msgstr "Les descriptions de paquets contiennent parfois du balisage Texinfo (@pxref{Synopses and Descriptions}). Le balisage Texinfo ressemble à @samp{@@code@{rm -rf@}}, @samp{@@emph@{important@}}, etc. Lors de la traduction, laissez le balisage tel quel." #. type: table -#: guix-git/doc/contributing.texi:1771 +#: guix-git/doc/contributing.texi:1804 msgid "The characters after ``@@'' form the name of the markup, and the text between ``@{'' and ``@}'' is its content. In general, you should not translate the content of markup like @code{@@code}, as it contains literal code that do not change with language. You can translate the content of formatting markup such as @code{@@emph}, @code{@@i}, @code{@@itemize}, @code{@@item}. However, do not translate the name of the markup, or it will not be recognized. Do not translate the word after @code{@@end}, it is the name of the markup that is closed at this position (e.g.@: @code{@@itemize ... @@end itemize})." msgstr "Les caractères après « @@ » forment le nom de la balise, et le texte entre « @{ » et « @} » est son contenu. En général, vous ne devriez pas traduire le contenu des balises comme @code{@@code}, car elles contiennent littéralement du code qui ne change pas avec la langue. Vous pouvez traduire le contenu des balises de formatage comme @code{@@emph}, @code{@@i}, @code{@@itemize}, @code{@@item}. Cependant, ne traduisez pas le nom de la balise, ou elle ne sera plus reconnue. Ne traduisez pas le mot après @code{@@end}, c'est le nom de la balise fermée à cet endroit (p. ex. @code{@@itemize ... @@end itemize})." #. type: item -#: guix-git/doc/contributing.texi:1772 +#: guix-git/doc/contributing.texi:1805 #, no-wrap msgid "documentation-manual and documentation-cookbook" msgstr "documentation-manual et documentation-cookbook" #. type: table -#: guix-git/doc/contributing.texi:1776 +#: guix-git/doc/contributing.texi:1809 msgid "The first step to ensure a successful translation of the manual is to find and translate the following strings @emph{first}:" msgstr "La première étape pour assurer la traduction du manuel est de trouver et traduire les chaîne suivantes @emph{en premier} :" #. type: item -#: guix-git/doc/contributing.texi:1778 +#: guix-git/doc/contributing.texi:1811 #, no-wrap msgid "@code{version.texi}: Translate this string as @code{version-xx.texi}," msgstr "@code{version.texi} : Traduisez cette chaîne en @code{version-xx.texi}," #. type: itemize -#: guix-git/doc/contributing.texi:1781 +#: guix-git/doc/contributing.texi:1814 msgid "where @code{xx} is your language code (the one shown in the URL on weblate)." msgstr "où @code{xx} est le code de votre langue (celui affiché dans l'URL sur weblate)." #. type: item -#: guix-git/doc/contributing.texi:1781 +#: guix-git/doc/contributing.texi:1814 #, no-wrap msgid "@code{contributing.texi}: Translate this string as" msgstr "@code{contributing.texi} : Traduisez cette chaîne en" #. type: itemize -#: guix-git/doc/contributing.texi:1783 +#: guix-git/doc/contributing.texi:1816 msgid "@code{contributing.xx.texi}, where @code{xx} is the same language code." msgstr "@code{contributing.xx.texi}, où @code{xx} est le même code de langue." #. type: item -#: guix-git/doc/contributing.texi:1783 +#: guix-git/doc/contributing.texi:1816 #, no-wrap msgid "@code{Top}: Do not translate this string, it is important for Texinfo." msgstr "@code{Top} : Ne traduisez pas cette chaîne, c'est important pour Texinfo." #. type: itemize -#: guix-git/doc/contributing.texi:1786 +#: guix-git/doc/contributing.texi:1819 msgid "If you translate it, the document will be empty (missing a Top node). Please look for it, and register @code{Top} as its translation." msgstr "Si vous la traduisez, le document sera vide (il manquera le nœud Top). Cherchez-là et utilisez @code{Top} comme traduction." #. type: table -#: guix-git/doc/contributing.texi:1791 +#: guix-git/doc/contributing.texi:1824 msgid "Translating these strings first ensure we can include your translation in the guix repository without breaking the make process or the @command{guix pull} machinery." msgstr "Traduire ces chaînes en premier s'assure que nous pouvez inclure vos traduction dans le dépôt guix sans casser le processus make ni la machinerie derrière @command{guix pull}." #. type: table -#: guix-git/doc/contributing.texi:1798 +#: guix-git/doc/contributing.texi:1831 msgid "The manual and the cookbook both use Texinfo. As for @code{packages}, please keep Texinfo markup as is. There are more possible markup types in the manual than in the package descriptions. In general, do not translate the content of @code{@@code}, @code{@@file}, @code{@@var}, @code{@@value}, etc. You should translate the content of formatting markup such as @code{@@emph}, @code{@@i}, etc." msgstr "Le manuel et le livre de recettes utilisent tous les deux Texinfo. Comme pour @code{packages}, gardez le balisage Texinfo intact. Il y a plus de types de balises possibles dans le manuel que dans les descriptions de paquets. En général, ne traduisez pas le contenu de @code{@@code}, @code{@@file}, @code{@@var}, @code{@@value}, etc. Vous devriez traduire le contenu des balises de formatage comme @code{@@emph}, @code{@@i}, etc." #. type: table -#: guix-git/doc/contributing.texi:1806 +#: guix-git/doc/contributing.texi:1839 msgid "The manual contains sections that can be referred to by name by @code{@@ref}, @code{@@xref} and @code{@@pxref}. We have a mechanism in place so you do not have to translate their content. If you keep the English title, we will automatically replace it with your translation of that title. This ensures that Texinfo will always be able to find the node. If you decide to change the translation of the title, the references will automatically be updated and you will not have to update them all yourself." msgstr "Le manuel contient des sections auxquelles on peut se référer par leur nom avec @code{@@ref}, @code{@@xref} et @code{@@pxref}. Nous avons mis en place un mécanisme pour que vous n'ayez pas besoin de traduire leur contenu. Si vous gardez le titre anglais, nous le remplacerons automatiquement par votre traduction de ce titre. Cela s'assure que Texinfo sera toujours capable de trouver le nœud. Si vous décidez de changer la traduction du titre, les références seront automatiquement mises à jour et vous n'aurez pas à les mettre à jour vous-même." #. type: table -#: guix-git/doc/contributing.texi:1816 +#: guix-git/doc/contributing.texi:1849 msgid "When translating references from the cookbook to the manual, you need to replace the name of the manual and the name of the section. For instance, to translate @code{@@pxref@{Defining Packages,,, guix, GNU Guix Reference Manual@}}, you would replace @code{Defining Packages} with the title of that section in the translated manual @emph{only} if that title is translated. If the title is not translated in your language yet, do not translate it here, or the link will be broken. Replace @code{guix} with @code{guix.xx} where @code{xx} is your language code. @code{GNU Guix Reference Manual} is the text of the link. You can translate it however you wish." msgstr "Lorsque vous traduirez des références de livre de recettes vers le manuel, vous devrez remplacer le nom du manuel et le nom de la section. Par exemple, pour traduire @code{@@pxref@{Defining Packages,,, guix, GNU Guix Reference Manual@}}, vous devrez remplacer @code{Defining Packages} par le titre de cette section dans le manuel traduit @emph{seulement} si ce titre est traduit. Si le titre n'est pas encore traduit dans votre langue, ne le traduisez pas ici, ou le lien sera cassé. Remplacez @code{guix} par @code{guix.xx} où @code{xx} est le code de votre langue. @code{GNU Guix Reference Manual} est le texte du lien. Vous pouvez le traduire comme bon vous semble." #. type: item -#: guix-git/doc/contributing.texi:1817 +#: guix-git/doc/contributing.texi:1850 #, no-wrap msgid "website" msgstr "website" #. type: table -#: guix-git/doc/contributing.texi:1824 +#: guix-git/doc/contributing.texi:1857 msgid "The website pages are written using SXML, an s-expression version of HTML, the basic language of the web. We have a process to extract translatable strings from the source, and replace complex s-expressions with a more familiar XML markup, where each markup is numbered. Translators can arbitrarily change the ordering, as in the following example." msgstr "Les pages du site web sont écrite en SXML, une manière d'écrire du HTML, le langage de base du web, avec des s-expressions. Nous avons un processus pour extraire les chaînes traduisibles dans les sources, et pour remplacer les s-expressions complexes avec du balisage XML plus familier, où chaque balise est numérotée. Vous pouvez changer l'ordre comme bon vous semble, comme dans l'exemple suivant." #. type: example -#: guix-git/doc/contributing.texi:1831 +#: guix-git/doc/contributing.texi:1864 #, no-wrap msgid "" "#. TRANSLATORS: Defining Packages is a section name\n" @@ -2664,138 +2711,138 @@ msgstr "" "msgstr \"Pakete werden als reine <2>Guile-Module <1>definiert<1.1>de<1.2>Pakete-definieren.html.\"\n" #. type: table -#: guix-git/doc/contributing.texi:1834 +#: guix-git/doc/contributing.texi:1867 msgid "Note that you need to include the same markups. You cannot skip any." msgstr "Remarquez que vous devez inclure les même balises. Vous ne devez pas en oublier." #. type: Plain text -#: guix-git/doc/contributing.texi:1842 +#: guix-git/doc/contributing.texi:1875 msgid "In case you make a mistake, the component might fail to build properly with your language, or even make guix pull fail. To prevent that, we have a process in place to check the content of the files before pushing to our repository. We will not be able to update the translation for your language in Guix, so we will notify you (through weblate and/or by email) so you get a chance to fix the issue." msgstr "Si vous faites une erreur, le composant peut échouer à construire correctement dans votre langue, voir casser guix pull. Pour éviter cela, nous avons mis en place un processus pour vérifier le contenu des fichiers avant de les pousser dans notre dépôt. Nous ne pourrons alors pas mettre à jour la traduction en votre langue dans Guix, donc nous vous notifierons (à travers weblate ou par courriel) pour que vous puissez corriger le problème." #. type: subsubheading -#: guix-git/doc/contributing.texi:1843 +#: guix-git/doc/contributing.texi:1876 #, no-wrap msgid "Outside of Weblate" msgstr "En dehors de Weblate" #. type: Plain text -#: guix-git/doc/contributing.texi:1846 +#: guix-git/doc/contributing.texi:1879 msgid "Currently, some parts of Guix cannot be translated on Weblate, help wanted!" msgstr "Actuellement, certaines parties de Guix ne peuvent pas être traduites sur Weblate, nous avons besoin d'aide !" #. type: item -#: guix-git/doc/contributing.texi:1848 +#: guix-git/doc/contributing.texi:1881 #, no-wrap msgid "@command{guix pull} news can be translated in @file{news.scm}, but is not" msgstr "Les nouvelles de @command{guix pull} peuvent être traduites dans @file{news.scm}, mais ne sont" #. type: itemize -#: guix-git/doc/contributing.texi:1854 +#: guix-git/doc/contributing.texi:1887 msgid "available from Weblate. If you want to provide a translation, you can prepare a patch as described above, or simply send us your translation with the name of the news entry you translated and your language. @xref{Writing Channel News}, for more information about channel news." msgstr "pas disponibles sur Weblate. Si vous voulez fournir une traduction, vous pouvez préparer un correctif comme décrit plus haut, ou simplement nous envoyer votre traduction avec le nom de l'entrée que vous avez traduite et votre langue. @xref{Writing Channel News}, pour plus d'information sur les nouvelles de canaux." #. type: item -#: guix-git/doc/contributing.texi:1854 +#: guix-git/doc/contributing.texi:1887 #, no-wrap msgid "Guix blog posts cannot currently be translated." msgstr "Les billets de blog de Guix ne peuvent pas encore être traduits." #. type: item -#: guix-git/doc/contributing.texi:1855 +#: guix-git/doc/contributing.texi:1888 #, no-wrap msgid "The installer script (for foreign distributions) is entirely in English." msgstr "Le script d'installation (pour les distributions externes) est entièrement en anglais." #. type: item -#: guix-git/doc/contributing.texi:1856 +#: guix-git/doc/contributing.texi:1889 #, no-wrap msgid "Some of the libraries Guix uses cannot be translated or are translated" msgstr "Certaines bibliothèques que Guix utilise ne peuvent pas être traduites ou leurs traductions" #. type: itemize -#: guix-git/doc/contributing.texi:1858 +#: guix-git/doc/contributing.texi:1891 msgid "outside of the Guix project. Guile itself is not internationalized." msgstr "sont en dehors du projet Guix. Guile lui-même n'est pas internationalisé." #. type: item -#: guix-git/doc/contributing.texi:1858 +#: guix-git/doc/contributing.texi:1891 #, no-wrap msgid "Other manuals linked from this manual or the cookbook might not be" msgstr "Les liens vers les autres manuels ici ou dans le livre de recettes ne sont pas" #. type: itemize -#: guix-git/doc/contributing.texi:1860 +#: guix-git/doc/contributing.texi:1893 msgid "translated." msgstr "forcément traduits." #. type: subsubheading -#: guix-git/doc/contributing.texi:1862 +#: guix-git/doc/contributing.texi:1895 #, no-wrap msgid "Translation Infrastructure" msgstr "Infrastructure de traduction" #. type: Plain text -#: guix-git/doc/contributing.texi:1873 +#: guix-git/doc/contributing.texi:1906 msgid "Weblate is backed by a git repository from which it discovers new strings to translate and pushes new and updated translations. Normally, it would be enough to give it commit access to our repositories. However, we decided to use a separate repository for two reasons. First, we would have to give Weblate commit access and authorize its signing key, but we do not trust it in the same way we trust guix developers, especially since we do not manage the instance ourselves. Second, if translators mess something up, it can break the generation of the website and/or guix pull for all our users, independently of their language." msgstr "Weblate s'appuie sur un dépôt git à partir duquel il découvre les nouvelles chaînes à traduire et vers lequel il pousse les nouvelles traductions. Normalement, il suffirait de lui donner accès en commit à nos dépôts. Cependant, nous avons préféré utiliser un dépôt séparé pour deux raisons. Tout d'abord, nous aurions du donner à Weblate l'accès en commit et autoriser sa clé de signature, mais nous ne lui faisons pas autant confiance qu'aux développeurs de guix, d'autant plus que nous ne gérons pas l'instance nous-même. Ensuite, si les traducteurs et les traductrices font une erreur, cela peut casser la génération du site web ou guix pull pour tout le monde, quelle que soit la langue." #. type: Plain text -#: guix-git/doc/contributing.texi:1877 +#: guix-git/doc/contributing.texi:1910 msgid "For these reasons, we use a dedicated repository to host translations, and we synchronize it with our guix and artworks repositories after checking no issue was introduced in the translation." msgstr "Pour ces raisons, nous utilisons un dépôt dédié pour héberger les traductions, et nous le synchronisons avec nos dépôts guix et artwork après avoir vérifié qu'aucun problème n'est introduit par les traductions." #. type: Plain text -#: guix-git/doc/contributing.texi:1883 +#: guix-git/doc/contributing.texi:1916 msgid "Developers can download the latest PO files from weblate in the Guix repository by running the @command{make download-po} command. It will automatically download the latest files from weblate, reformat them to a canonical form, and check they do not contain issues. The manual needs to be built again to check for additional issues that might crash Texinfo." msgstr "vous pouvez télécharger les derniers fichiers PO de weblate dans le dépôt Guix en lançant la commande @command{make download-po}. Cela télécharge automatiquement les derniers fichiers de weblate, les reformate vers une forme canonique, et vérifie qu'ils ne contiennent pas de problème. Le manuel doit être reconstruit pour vérifier qu'il n'y a pas de problème supplémentaire qui ferait planter Texinfo." #. type: Plain text -#: guix-git/doc/contributing.texi:1887 +#: guix-git/doc/contributing.texi:1920 msgid "Before pushing new translation files, developers should add them to the make machinery so the translations are actually available. The process differs for the various components." msgstr "Avant de pousser de nouveaux fichiers de traduction, qui n'existaient pas avant, vous devez les ajouter à la machinerie make pour que les traductions soit effectivement disponibles. Le processus diffère en fonction des composants." #. type: item -#: guix-git/doc/contributing.texi:1889 +#: guix-git/doc/contributing.texi:1922 #, no-wrap msgid "New po files for the @code{guix} and @code{packages} components must" msgstr "Les nouveau fichiers po pour les composants @code{guix} et @code{packages} doivent" #. type: itemize -#: guix-git/doc/contributing.texi:1892 +#: guix-git/doc/contributing.texi:1925 msgid "be registered by adding the new language to @file{po/guix/LINGUAS} or @file{po/packages/LINGUAS}." msgstr "être enregistrés en ajoutant la nouvelle langue dans @file{po/guix/LINGUAS} ou @file{po/packages/LINGUAS}." #. type: item -#: guix-git/doc/contributing.texi:1892 +#: guix-git/doc/contributing.texi:1925 #, no-wrap msgid "New po files for the @code{documentation-manual} component must be" msgstr "Le nouveaux fichiers pour le composant @code{documentation-manuel} doivent" #. type: itemize -#: guix-git/doc/contributing.texi:1898 +#: guix-git/doc/contributing.texi:1931 msgid "registered by adding the file name to @code{DOC_PO_FILES} in @file{po/doc/local.mk}, the generated @file{%D%/guix.xx.texi} manual to @code{info_TEXINFOS} in @file{doc/local.mk} and the generated @file{%D%/guix.xx.texi} and @file{%D%/contributing.xx.texi} to @code{TRANSLATED_INFO} also in @file{doc/local.mk}." msgstr "être enregistrés en ajoutant le nom de fichier à @code{DOC_PO_FILES} dans @file{po/doc/local.mk}, le manuel généré @file{%D%/guix.xx.texi} à @code{info_TEXINFOS} dans @file{doc/local.mk} et les fichiers @file{%D%/guix.xx.texi} et @file{%D%/contributing.xx.texi} à @code{TRANSLATED_INFO} aussi dans @file{doc/local.mk}." #. type: item -#: guix-git/doc/contributing.texi:1898 +#: guix-git/doc/contributing.texi:1931 #, no-wrap msgid "New po files for the @code{documentation-cookbook} component must be" msgstr "Les nouveaux fichiers po pour le composant @code{documentation-cookbook} doivent" #. type: itemize -#: guix-git/doc/contributing.texi:1904 +#: guix-git/doc/contributing.texi:1937 msgid "registered by adding the file name to @code{DOC_COOKBOOK_PO_FILES} in @file{po/doc/local.mk}, the generated @file{%D%/guix-cookbook.xx.texi} manual to @code{info_TEXINFOS} in @file{doc/local.mk} and the generated @file{%D%/guix-cookbook.xx.texi} to @code{TRANSLATED_INFO} also in @file{doc/local.mk}." msgstr "être enregistrés en ajoutant le nom de fichier à @code{DOC_COOKBOOK_PO_FILES} dans @file{po/doc/local.mk}, le manuel généré @file{%D%/guix-cookbook.xx.texi} à @code{info_TEXINFOS} dans @file{doc/local.mk} et le fichier généré @file{%D%/guix-cookbook.xx.texi} à @code{TRANSLATED_INFO} aussi dans @file{doc/local.mk}." #. type: item -#: guix-git/doc/contributing.texi:1904 +#: guix-git/doc/contributing.texi:1937 #, no-wrap msgid "New po files for the @code{website} component must be added to the" msgstr "Les nouveau fichiers po pour le composant @code{website} doivent être ajoutés dans" #. type: itemize -#: guix-git/doc/contributing.texi:1909 +#: guix-git/doc/contributing.texi:1942 msgid "@code{guix-artwork} repository, in @file{website/po/}. @file{website/po/LINGUAS} and @file{website/po/ietf-tags.scm} must be updated accordingly (see @file{website/i18n-howto.txt} for more information on the process)." msgstr "le dépôt @code{guix-artwork}, dans @file{website/po/}. Vous devez mettre à jour @file{website/po/LINGUAS} et @file{website/po/ietf-tags.scm} en fonction (voir @file{website/i18n-howto.txt} pour plus d'information sur le processus)." @@ -2822,10 +2869,10 @@ msgstr "version-fr.texi" #. type: copying #: guix-git/doc/guix.texi:103 #, fuzzy -#| msgid "Copyright @copyright{} 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" -msgid "Copyright @copyright{} 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" +#| msgid "Copyright @copyright{} 2012-2022 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021, 2022 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021, 2022 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021, 2022 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" +msgid "Copyright @copyright{} 2012-2022 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021, 2022 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021, 2022 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021, 2022 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021, 2022 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" msgstr "" -"Copyright @copyright{} 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès@*\n" +"Copyright @copyright{} 2012-2022 Ludovic Courtès@*\n" "Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@*\n" "Copyright @copyright{} 2013 Nikita Karetnikov@*\n" "Copyright @copyright{} 2014, 2015, 2016 Alex Kost@*\n" @@ -2836,7 +2883,7 @@ msgstr "" "Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@*\n" "Copyright @copyright{} 2016 Ben Woodcroft@*\n" "Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@*\n" -"Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner@*\n" +"Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021, 2022 Efraim Flashner@*\n" "Copyright @copyright{} 2016 John Darrington@*\n" "Copyright @copyright{} 2016, 2017 Nikita Gillmann@*\n" "Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@*\n" @@ -2853,7 +2900,7 @@ msgstr "" "Copyright @copyright{} 2017, 2018, 2019, 2020, 2021 Marius Bakke@*\n" "Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@*\n" "Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@*\n" -"Copyright @copyright{} 2017, 2018, 2019, 2020, 2021 Tobias Geerinckx-Rice@*\n" +"Copyright @copyright{} 2017-2022 Tobias Geerinckx-Rice@*\n" "Copyright @copyright{} 2017 George Clemmer@*\n" "Copyright @copyright{} 2017 Andy Wingo@*\n" "Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@*\n" @@ -2872,9 +2919,9 @@ msgstr "" "Copyright @copyright{} 2019 Jakob L. Kreuze@*\n" "Copyright @copyright{} 2019 Kyle Andrews@*\n" "Copyright @copyright{} 2019 Alex Griffin@*\n" -"Copyright @copyright{} 2019, 2020, 2021 Guillaume Le Vaillant@*\n" +"Copyright @copyright{} 2019, 2020, 2021, 2022 Guillaume Le Vaillant@*\n" "Copyright @copyright{} 2020 Liliana Marie Prikler@*\n" -"Copyright @copyright{} 2019, 2020, 2021 Simon Tournier@*\n" +"Copyright @copyright{} 2019, 2020, 2021, 2022 Simon Tournier@*\n" "Copyright @copyright{} 2020 Wiktor Żelazny@*\n" "Copyright @copyright{} 2020 Damien Cassou@*\n" "Copyright @copyright{} 2020 Jakub Kądziołka@*\n" @@ -3062,7 +3109,7 @@ msgstr "Ce manuel est aussi disponible en anglais (@pxref{Top,,, guix, GNU Guix #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:192 -#: guix-git/doc/guix.texi:402 guix-git/doc/guix.texi:403 +#: guix-git/doc/guix.texi:403 guix-git/doc/guix.texi:404 #, no-wrap msgid "Introduction" msgstr "Introduction" @@ -3074,7 +3121,7 @@ msgstr "Qu'est-ce que Guix ?" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:197 -#: guix-git/doc/guix.texi:589 guix-git/doc/guix.texi:590 +#: guix-git/doc/guix.texi:600 guix-git/doc/guix.texi:601 #, no-wrap msgid "Installation" msgstr "Installation" @@ -3086,7 +3133,7 @@ msgstr "Installer Guix." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:213 -#: guix-git/doc/guix.texi:2049 guix-git/doc/guix.texi:2050 +#: guix-git/doc/guix.texi:2066 guix-git/doc/guix.texi:2067 #, no-wrap msgid "System Installation" msgstr "Installation du système" @@ -3097,8 +3144,8 @@ msgid "Installing the whole operating system." msgstr "Installer le système d'exploitation complet." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:2777 -#: guix-git/doc/guix.texi:2778 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:2794 +#: guix-git/doc/guix.texi:2795 #, no-wrap msgid "Getting Started" msgstr "Pour démarrer" @@ -3110,7 +3157,7 @@ msgstr "Vos premiers pas." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:230 -#: guix-git/doc/guix.texi:2985 guix-git/doc/guix.texi:2986 +#: guix-git/doc/guix.texi:3002 guix-git/doc/guix.texi:3003 #, no-wrap msgid "Package Management" msgstr "Gestion de paquets" @@ -3122,7 +3169,7 @@ msgstr "Installation des paquets, mises à jour, etc." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:253 -#: guix-git/doc/guix.texi:5053 guix-git/doc/guix.texi:5054 +#: guix-git/doc/guix.texi:5071 guix-git/doc/guix.texi:5072 #, no-wrap msgid "Channels" msgstr "Canaux" @@ -3134,7 +3181,7 @@ msgstr "Personnaliser la collection des paquets." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:267 -#: guix-git/doc/guix.texi:5581 guix-git/doc/guix.texi:5582 +#: guix-git/doc/guix.texi:5599 guix-git/doc/guix.texi:5600 #, no-wrap msgid "Development" msgstr "Développement" @@ -3146,7 +3193,7 @@ msgstr "Développement logiciel simplifié par Guix." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:275 -#: guix-git/doc/guix.texi:6799 guix-git/doc/guix.texi:6800 +#: guix-git/doc/guix.texi:6842 guix-git/doc/guix.texi:6843 #, no-wrap msgid "Programming Interface" msgstr "Interface de programmation" @@ -3157,8 +3204,8 @@ msgid "Using Guix in Scheme." msgstr "Utiliser Guix en Scheme." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:294 -#: guix-git/doc/guix.texi:10774 guix-git/doc/guix.texi:10775 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:295 +#: guix-git/doc/guix.texi:11088 guix-git/doc/guix.texi:11089 #, no-wrap msgid "Utilities" msgstr "Utilitaires" @@ -3169,8 +3216,8 @@ msgid "Package management commands." msgstr "Commandes de gestion de paquets." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:320 -#: guix-git/doc/guix.texi:14278 guix-git/doc/guix.texi:14279 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:321 +#: guix-git/doc/guix.texi:14635 guix-git/doc/guix.texi:14636 #, no-wrap msgid "System Configuration" msgstr "Configuration du système" @@ -3181,8 +3228,8 @@ msgid "Configuring the operating system." msgstr "Configurer le système d'exploitation." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:36881 -#: guix-git/doc/guix.texi:36882 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37371 +#: guix-git/doc/guix.texi:37372 #, no-wrap msgid "Home Configuration" msgstr "Configuration du dossier personnel" @@ -3193,8 +3240,8 @@ msgid "Configuring the home environment." msgstr "Configurer l'environnement personnel." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37721 -#: guix-git/doc/guix.texi:37722 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38210 +#: guix-git/doc/guix.texi:38211 #, no-wrap msgid "Documentation" msgstr "Documentation" @@ -3205,8 +3252,8 @@ msgid "Browsing software user manuals." msgstr "Visualiser les manuels des logiciels." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:389 -#: guix-git/doc/guix.texi:37787 guix-git/doc/guix.texi:37788 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:390 +#: guix-git/doc/guix.texi:38276 guix-git/doc/guix.texi:38277 #, no-wrap msgid "Installing Debugging Files" msgstr "Installer les fichiers de débogage" @@ -3217,8 +3264,8 @@ msgid "Feeding the debugger." msgstr "Nourrir le débogueur." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37942 -#: guix-git/doc/guix.texi:37943 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38431 +#: guix-git/doc/guix.texi:38432 #, no-wrap msgid "Security Updates" msgstr "Mises à jour de sécurité" @@ -3229,8 +3276,8 @@ msgid "Deploying security fixes quickly." msgstr "Déployer des correctifs de sécurité rapidement." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:394 -#: guix-git/doc/guix.texi:38057 guix-git/doc/guix.texi:38058 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:395 +#: guix-git/doc/guix.texi:38546 guix-git/doc/guix.texi:38547 #, no-wrap msgid "Bootstrapping" msgstr "Bootstrapping" @@ -3241,7 +3288,7 @@ msgid "GNU/Linux built from scratch." msgstr "GNU/Linux depuis zéro." #. type: node -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38349 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38838 #, no-wrap msgid "Porting" msgstr "Porter" @@ -3257,8 +3304,8 @@ msgid "Your help needed!" msgstr "Nous avons besoin de votre aide !" #. type: chapter -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38397 -#: guix-git/doc/guix.texi:38398 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38886 +#: guix-git/doc/guix.texi:38887 #, no-wrap msgid "Acknowledgments" msgstr "Remerciements" @@ -3269,8 +3316,8 @@ msgid "Thanks!" msgstr "Merci !" #. type: appendix -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38419 -#: guix-git/doc/guix.texi:38420 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38908 +#: guix-git/doc/guix.texi:38909 #, no-wrap msgid "GNU Free Documentation License" msgstr "La licence GNU Free Documentation" @@ -3281,8 +3328,8 @@ msgid "The license of this manual." msgstr "La licence de ce manuel." #. type: unnumbered -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38425 -#: guix-git/doc/guix.texi:38426 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38914 +#: guix-git/doc/guix.texi:38915 #, no-wrap msgid "Concept Index" msgstr "Index des concepts" @@ -3293,8 +3340,8 @@ msgid "Concepts." msgstr "Les concepts." #. type: unnumbered -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38429 -#: guix-git/doc/guix.texi:38430 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38918 +#: guix-git/doc/guix.texi:38919 #, no-wrap msgid "Programming Index" msgstr "Index de programmation" @@ -3310,2129 +3357,2152 @@ msgid "--- The Detailed Node Listing ---" msgstr "--- Liste détaillée des nœuds ---" #. type: section -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 -#: guix-git/doc/guix.texi:431 guix-git/doc/guix.texi:432 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 +#: guix-git/doc/guix.texi:432 guix-git/doc/guix.texi:433 #, no-wrap msgid "Managing Software the Guix Way" msgstr "Gérer ses logiciels avec Guix" #. type: menuentry -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 msgid "What's special." msgstr "Ce qui est spécial." #. type: section -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 -#: guix-git/doc/guix.texi:486 guix-git/doc/guix.texi:487 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 +#: guix-git/doc/guix.texi:487 guix-git/doc/guix.texi:488 #, no-wrap msgid "GNU Distribution" msgstr "Distribution GNU" #. type: menuentry -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 msgid "The packages and tools." msgstr "Les paquets et les outils." #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:631 guix-git/doc/guix.texi:632 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:642 guix-git/doc/guix.texi:643 #, no-wrap msgid "Binary Installation" msgstr "Installation binaire" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Getting Guix running in no time!" msgstr "Commencer à utiliser Guix en un rien de temps !" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:871 guix-git/doc/guix.texi:872 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:882 guix-git/doc/guix.texi:883 #, no-wrap msgid "Requirements" msgstr "Prérequis" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Software needed to build and run Guix." msgstr "Logiciels requis pour construire et lancer Guix." #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:957 guix-git/doc/guix.texi:958 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:969 guix-git/doc/guix.texi:970 #, no-wrap msgid "Running the Test Suite" msgstr "Lancer la suite de tests" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Testing Guix." msgstr "Tester Guix." #. type: section #: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:207 -#: guix-git/doc/guix.texi:629 guix-git/doc/guix.texi:1054 -#: guix-git/doc/guix.texi:1055 +#: guix-git/doc/guix.texi:640 guix-git/doc/guix.texi:1066 +#: guix-git/doc/guix.texi:1067 #, no-wrap msgid "Setting Up the Daemon" msgstr "Paramétrer le démon" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Preparing the build daemon's environment." msgstr "Préparer l'environnement du démon de construction." #. type: node -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:1525 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:1542 #, no-wrap msgid "Invoking guix-daemon" msgstr "Invoquer guix-daemon" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Running the build daemon." msgstr "Lancer le démon de construction." #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:1827 guix-git/doc/guix.texi:1828 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:1844 guix-git/doc/guix.texi:1845 #, no-wrap msgid "Application Setup" msgstr "Réglages applicatifs" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Application-specific setup." msgstr "Réglages spécifiques pour les application." #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:2012 guix-git/doc/guix.texi:2013 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:2029 guix-git/doc/guix.texi:2030 #, no-wrap msgid "Upgrading Guix" msgstr "Mettre à niveau Guix" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Upgrading Guix and its build daemon." msgstr "Mettre à niveau Guix et son démon de construction." #. type: subsection -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1076 guix-git/doc/guix.texi:1077 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1088 guix-git/doc/guix.texi:1089 #, no-wrap msgid "Build Environment Setup" msgstr "Réglages de l'environnement de construction" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Preparing the isolated build environment." msgstr "Préparer l'environnement de construction isolé." #. type: node -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1195 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1212 #, no-wrap msgid "Daemon Offload Setup" msgstr "Réglages du déchargement du démon" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Offloading builds to remote machines." msgstr "Envoyer des constructions à des machines distantes." #. type: subsection -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1434 guix-git/doc/guix.texi:1435 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1451 guix-git/doc/guix.texi:1452 #, no-wrap msgid "SELinux Support" msgstr "Support de SELinux" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Using an SELinux policy for the daemon." msgstr "Utiliser une politique SELinux pour le démon." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:1470 -#: guix-git/doc/guix.texi:2083 guix-git/doc/guix.texi:2085 -#: guix-git/doc/guix.texi:2086 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:1487 +#: guix-git/doc/guix.texi:2100 guix-git/doc/guix.texi:2102 +#: guix-git/doc/guix.texi:2103 #, no-wrap msgid "Limitations" msgstr "Limitations" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "What you can expect." msgstr "Ce à quoi vous attendre." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2111 guix-git/doc/guix.texi:2112 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2128 guix-git/doc/guix.texi:2129 #, no-wrap msgid "Hardware Considerations" msgstr "Considérations matérielles" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Supported hardware." msgstr "Matériel supporté." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2146 guix-git/doc/guix.texi:2147 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2163 guix-git/doc/guix.texi:2164 #, no-wrap msgid "USB Stick and DVD Installation" msgstr "Installation depuis une clef USB ou un DVD" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Preparing the installation medium." msgstr "Préparer le média d'installation." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2227 guix-git/doc/guix.texi:2228 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2244 guix-git/doc/guix.texi:2245 #, no-wrap msgid "Preparing for Installation" msgstr "Préparer l'installation" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Networking, partitioning, etc." msgstr "Réseau, partitionnement, etc." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2250 guix-git/doc/guix.texi:2251 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2267 guix-git/doc/guix.texi:2268 #, no-wrap msgid "Guided Graphical Installation" msgstr "Installation graphique guidée" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Easy graphical installation." msgstr "Installation graphique facile." #. type: section #: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:225 -#: guix-git/doc/guix.texi:2083 guix-git/doc/guix.texi:2281 -#: guix-git/doc/guix.texi:2282 +#: guix-git/doc/guix.texi:2100 guix-git/doc/guix.texi:2298 +#: guix-git/doc/guix.texi:2299 #, no-wrap msgid "Manual Installation" msgstr "Installation manuelle" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Manual installation for wizards." msgstr "Installation manuelle pour les sorciers." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2660 guix-git/doc/guix.texi:2661 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2677 guix-git/doc/guix.texi:2678 #, no-wrap msgid "After System Installation" msgstr "Après l'installation du système" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "When installation succeeded." msgstr "Une fois que l'installation a réussi." #. type: node -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2694 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2711 #, no-wrap msgid "Installing Guix in a VM" msgstr "Installer Guix dans une VM" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Guix System playground." msgstr "Jouer avec le système Guix." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2745 guix-git/doc/guix.texi:2746 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2762 guix-git/doc/guix.texi:2763 #, no-wrap msgid "Building the Installation Image" msgstr "Construire l'image d'installation" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "How this comes to be." msgstr "D'où vient tout cela." #. type: node -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 -#: guix-git/doc/guix.texi:2301 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 +#: guix-git/doc/guix.texi:2318 #, no-wrap msgid "Keyboard Layout and Networking and Partitioning" msgstr "Disposition du clavier réseau et partitionnement" #. type: menuentry -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 msgid "Initial setup." msgstr "Paramètres initiaux." #. type: subsection -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 -#: guix-git/doc/guix.texi:2571 guix-git/doc/guix.texi:2572 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 +#: guix-git/doc/guix.texi:2588 guix-git/doc/guix.texi:2589 #, no-wrap msgid "Proceeding with the Installation" msgstr "Effectuer l'installation" #. type: menuentry -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 msgid "Installing." msgstr "Installer." #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:3019 guix-git/doc/guix.texi:3020 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3036 guix-git/doc/guix.texi:3037 #, no-wrap msgid "Features" msgstr "Fonctionnalités" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "How Guix will make your life brighter." msgstr "Comment Guix va rendre votre vie plus heureuse." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:3109 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3126 #, no-wrap msgid "Invoking guix package" msgstr "Invoquer guix package" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Package installation, removal, etc." msgstr "Installation, suppression, etc.@: de paquets." #. type: section #: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:243 -#: guix-git/doc/guix.texi:3017 guix-git/doc/guix.texi:3738 -#: guix-git/doc/guix.texi:3739 +#: guix-git/doc/guix.texi:3034 guix-git/doc/guix.texi:3756 +#: guix-git/doc/guix.texi:3757 #, no-wrap msgid "Substitutes" msgstr "Substituts" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Downloading pre-built binaries." msgstr "Télécharger des binaire déjà construits." #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4074 guix-git/doc/guix.texi:4075 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4092 guix-git/doc/guix.texi:4093 #, no-wrap msgid "Packages with Multiple Outputs" msgstr "Des paquets avec plusieurs résultats" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Single source package, multiple outputs." msgstr "Un seul paquet source, plusieurs résultats." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4128 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4146 #, no-wrap msgid "Invoking guix gc" msgstr "Invoquer guix gc" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Running the garbage collector." msgstr "Lancer le ramasse-miettes." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4338 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4356 #, no-wrap msgid "Invoking guix pull" msgstr "Invoquer guix pull" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Fetching the latest Guix and distribution." msgstr "Récupérer la dernière version de Guix et de la distribution." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4585 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4603 #, no-wrap msgid "Invoking guix time-machine" msgstr "Invoquer guix time-machine" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Running an older revision of Guix." msgstr "Lancer une ancienne révision de Guix." #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4640 guix-git/doc/guix.texi:4641 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4658 guix-git/doc/guix.texi:4659 #, no-wrap msgid "Inferiors" msgstr "Inférieurs" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Interacting with another revision of Guix." msgstr "Interagir avec une autre révision de Guix." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4768 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4786 #, no-wrap msgid "Invoking guix describe" msgstr "Invoquer guix describe" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Display information about your Guix revision." msgstr "Affiche des informations sur la révision Guix actuelle." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4863 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4881 #, no-wrap msgid "Invoking guix archive" msgstr "Invoquer guix archive" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Exporting and importing store files." msgstr "Exporter et importer des fichiers du dépôt." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3764 guix-git/doc/guix.texi:3765 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3782 guix-git/doc/guix.texi:3783 #, no-wrap msgid "Official Substitute Servers" msgstr "Serveur de substituts officiel" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "One particular source of substitutes." msgstr "Une source particulière de substituts." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3794 guix-git/doc/guix.texi:3795 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3812 guix-git/doc/guix.texi:3813 #, no-wrap msgid "Substitute Server Authorization" msgstr "Autoriser un serveur de substituts" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How to enable or disable substitutes." msgstr "Comment activer ou désactiver les substituts." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3864 guix-git/doc/guix.texi:3865 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3882 guix-git/doc/guix.texi:3883 #, no-wrap msgid "Getting Substitutes from Other Servers" msgstr "Récupérer des substituts d'autres serveurs" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "Substitute diversity." msgstr "Diversité des substituts." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3969 guix-git/doc/guix.texi:3970 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3987 guix-git/doc/guix.texi:3988 #, no-wrap msgid "Substitute Authentication" msgstr "Authentification des substituts" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How Guix verifies substitutes." msgstr "Comment Guix vérifie les substituts." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4004 guix-git/doc/guix.texi:4005 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4022 guix-git/doc/guix.texi:4023 #, no-wrap msgid "Proxy Settings" msgstr "Paramètres de serveur mandataire" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How to get substitutes via proxy." msgstr "Comment récupérer des substituts à travers un serveur mandataire." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4016 guix-git/doc/guix.texi:4017 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4034 guix-git/doc/guix.texi:4035 #, no-wrap msgid "Substitution Failure" msgstr "Échec de substitution" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "What happens when substitution fails." msgstr "Qu'arrive-t-il quand la substitution échoue." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4044 guix-git/doc/guix.texi:4045 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4062 guix-git/doc/guix.texi:4063 #, no-wrap msgid "On Trusting Binaries" msgstr "De la confiance en des binaires" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How can you trust that binary blob?" msgstr "Comment pouvez-vous avoir confiance en un paquet binaire ?" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5086 guix-git/doc/guix.texi:5087 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5104 guix-git/doc/guix.texi:5105 #, no-wrap msgid "Specifying Additional Channels" msgstr "Spécifier des canaux supplémentaires" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Extending the package collection." msgstr "Personnaliser la collection des paquets." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5136 guix-git/doc/guix.texi:5137 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5154 guix-git/doc/guix.texi:5155 #, no-wrap msgid "Using a Custom Guix Channel" msgstr "Utiliser un canal Guix personnalisé" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Using a customized Guix." msgstr "Utiliser un canal Guix personnalisé." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5158 guix-git/doc/guix.texi:5159 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5176 guix-git/doc/guix.texi:5177 #, no-wrap msgid "Replicating Guix" msgstr "Répliquer Guix" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Running the @emph{exact same} Guix." msgstr "Exécution de @emph{exactement le même} Guix." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5199 guix-git/doc/guix.texi:5200 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5217 guix-git/doc/guix.texi:5218 #, no-wrap msgid "Channel Authentication" msgstr "Authentification des canaux" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How Guix verifies what it fetches." msgstr "Comment Guix vérifie ce qu'il va chercher." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5239 guix-git/doc/guix.texi:5240 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5257 guix-git/doc/guix.texi:5258 #, no-wrap msgid "Channels with Substitutes" msgstr "Canaux avec des substituts" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Using channels with available substitutes." msgstr "Utiliser des canaux dont les substituts sont disponibles." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5264 guix-git/doc/guix.texi:5265 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5282 guix-git/doc/guix.texi:5283 #, no-wrap msgid "Creating a Channel" msgstr "Écrire de nouveaux de canaux" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How to write your custom channel." msgstr "Comment écrire votre canal personnalisé." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5331 guix-git/doc/guix.texi:5332 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5349 guix-git/doc/guix.texi:5350 #, no-wrap msgid "Package Modules in a Sub-directory" msgstr "Modules de paquets dans un sous-répertoire" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Specifying the channel's package modules location." msgstr "Préciser l'emplacement des modules de paquets du canal." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5345 guix-git/doc/guix.texi:5346 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5363 guix-git/doc/guix.texi:5364 #, no-wrap msgid "Declaring Channel Dependencies" msgstr "Déclarer des dépendances de canaux" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How to depend on other channels." msgstr "Comment dépendre d'autres canaux." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5387 guix-git/doc/guix.texi:5388 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5405 guix-git/doc/guix.texi:5406 #, no-wrap msgid "Specifying Channel Authorizations" msgstr "Spécifier les autorisations des canaux" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Defining channel authors authorizations." msgstr "Définir les autorisations des auteurs des canaux." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5488 guix-git/doc/guix.texi:5489 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5506 guix-git/doc/guix.texi:5507 #, no-wrap msgid "Primary URL" msgstr "URL primaire" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Distinguishing mirror to original." msgstr "Miroir distinctif de l'original." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5511 guix-git/doc/guix.texi:5512 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5529 guix-git/doc/guix.texi:5530 #, no-wrap msgid "Writing Channel News" msgstr "Écrire des nouveautés de canaux" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Communicating information to channel's users." msgstr "Communiquer des informations aux utilisateurs du canal." #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:5603 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:5621 #, no-wrap msgid "Invoking guix shell" msgstr "Invoquer guix shell" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Spawning one-off software environments." msgstr "Créer des environnements logiciels à usage unique." #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:5956 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:5993 #, no-wrap msgid "Invoking guix environment" msgstr "Invoquer guix environment" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Setting up development environments." msgstr "Mettre en place des environnements de développement." #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6325 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6368 #, no-wrap msgid "Invoking guix pack" msgstr "Invoquer guix pack" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Creating software bundles." msgstr "Créer des lots de logiciels." #. type: section -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6711 guix-git/doc/guix.texi:6712 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6754 guix-git/doc/guix.texi:6755 #, no-wrap msgid "The GCC toolchain" msgstr "La chaîne d'outils GCC" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Working with languages supported by GCC." msgstr "Travailler avec les langages pris en charge par GCC." #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6737 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6780 #, no-wrap msgid "Invoking guix git authenticate" msgstr "Invoquer guix git authenticate" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Authenticating Git repositories." msgstr "Authentification des dépôts Git." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:6841 guix-git/doc/guix.texi:6842 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:6885 guix-git/doc/guix.texi:6886 #, no-wrap msgid "Package Modules" msgstr "Modules de paquets" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Packages from the programmer's viewpoint." msgstr "Les paquets du point de vu du programmeur." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:289 -#: guix-git/doc/guix.texi:6839 guix-git/doc/guix.texi:6903 -#: guix-git/doc/guix.texi:6904 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:290 +#: guix-git/doc/guix.texi:6883 guix-git/doc/guix.texi:6947 +#: guix-git/doc/guix.texi:6948 #, no-wrap msgid "Defining Packages" msgstr "Définition des paquets" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Defining new packages." msgstr "Définir de nouveaux paquets." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:7554 guix-git/doc/guix.texi:7555 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:7612 guix-git/doc/guix.texi:7613 #, no-wrap msgid "Defining Package Variants" msgstr "Définition de variantes de paquets" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Customizing packages." msgstr "Créer des paquets personnalisés." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:7821 guix-git/doc/guix.texi:7822 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:7879 guix-git/doc/guix.texi:7880 #, no-wrap msgid "Build Systems" msgstr "Systèmes de construction" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Specifying how packages are built." msgstr "Spécifier comment construire les paquets." #. type: subsection -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:8861 guix-git/doc/guix.texi:8862 -#: guix-git/doc/guix.texi:9292 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:8918 guix-git/doc/guix.texi:8919 +#: guix-git/doc/guix.texi:9427 #, no-wrap msgid "Build Phases" msgstr "Phases de construction" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Phases of the build process of a package." msgstr "Phases du processus de construction d'un paquet." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9055 guix-git/doc/guix.texi:9056 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9116 guix-git/doc/guix.texi:9117 #, no-wrap msgid "Build Utilities" msgstr "Utilitaires de construction" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Helpers for your package definitions and more." msgstr "Des aides pour les définitions de vos paquets et plus encore." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9369 guix-git/doc/guix.texi:9370 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9504 guix-git/doc/guix.texi:9505 +#, no-wrap +msgid "Search Paths" +msgstr "Chemins de recherche" + +#. type: menuentry +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +msgid "Declaring search path environment variables." +msgstr "Déclarer les variables d'environnements pour les chemins de recherche." + +#. type: section +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9683 guix-git/doc/guix.texi:9684 #, no-wrap msgid "The Store" msgstr "Le dépôt" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Manipulating the package store." msgstr "Manipuler le dépôt de paquets." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9522 guix-git/doc/guix.texi:9523 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9836 guix-git/doc/guix.texi:9837 #, no-wrap msgid "Derivations" msgstr "Dérivations" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Low-level interface to package derivations." msgstr "Interface de bas-niveau avec les dérivations de paquets." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9716 guix-git/doc/guix.texi:9717 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10030 guix-git/doc/guix.texi:10031 #, no-wrap msgid "The Store Monad" msgstr "La monade du dépôt" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Purely functional interface to the store." msgstr "Interface purement fonctionnelle avec le dépôt." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:10035 guix-git/doc/guix.texi:10036 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10349 guix-git/doc/guix.texi:10350 #, no-wrap msgid "G-Expressions" msgstr "G-Expressions" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Manipulating build expressions." msgstr "Manipuler les expressions de construction." #. type: node -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:10674 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10988 #, no-wrap msgid "Invoking guix repl" msgstr "Invoquer guix repl" #. type: menuentry -#: guix-git/doc/guix.texi:287 +#: guix-git/doc/guix.texi:288 msgid "Programming Guix in Guile." msgstr "Programmer Guix dans Guile." #. type: node -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 -#: guix-git/doc/guix.texi:7103 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 +#: guix-git/doc/guix.texi:7147 #, no-wrap msgid "package Reference" msgstr "référence de package" #. type: menuentry -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 msgid "The package data type." msgstr "Le type de donnée des paquets." #. type: node -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 -#: guix-git/doc/guix.texi:7362 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 +#: guix-git/doc/guix.texi:7420 #, no-wrap msgid "origin Reference" msgstr "référence de origin" #. type: menuentry -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 msgid "The origin data type." msgstr "Le type de données d'origine." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:10801 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:11115 #, no-wrap msgid "Invoking guix build" msgstr "Invoquer guix build" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Building packages from the command line." msgstr "Construire des paquets depuis la ligne de commande." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11699 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12013 #, no-wrap msgid "Invoking guix edit" msgstr "Invoquer guix edit" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Editing package definitions." msgstr "Modifier les définitions de paquets." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11729 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12043 #, no-wrap msgid "Invoking guix download" msgstr "Invoquer guix download" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Downloading a file and printing its hash." msgstr "Télécharger un fichier et afficher son hash." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11787 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12101 #, no-wrap msgid "Invoking guix hash" msgstr "Invoquer guix hash" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Computing the cryptographic hash of a file." msgstr "Calculer le hash cryptographique d'un fichier." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11877 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12192 #, no-wrap msgid "Invoking guix import" msgstr "Invoquer guix import" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Importing package definitions." msgstr "Importer des définitions de paquets." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12412 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12727 #, no-wrap msgid "Invoking guix refresh" msgstr "Invoquer guix refresh" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Updating package definitions." msgstr "Mettre à jour les définitions de paquets." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12784 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13099 #, no-wrap msgid "Invoking guix style" msgstr "Invoquer guix style" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Styling package definitions." msgstr "Modifier le style des définitions de paquets." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12880 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13237 #, no-wrap msgid "Invoking guix lint" msgstr "Invoquer guix lint" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Finding errors in package definitions." msgstr "Trouver des erreurs dans les définitions de paquets." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13056 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13413 #, no-wrap msgid "Invoking guix size" msgstr "Invoquer guix size" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Profiling disk usage." msgstr "Profiler l'utilisation du disque." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13200 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13557 #, no-wrap msgid "Invoking guix graph" msgstr "Invoquer guix graph" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Visualizing the graph of packages." msgstr "Visualiser le graphe des paquets." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13481 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13838 #, no-wrap msgid "Invoking guix publish" msgstr "Invoquer guix publish" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Sharing substitutes." msgstr "Partager des substituts." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13750 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14107 #, no-wrap msgid "Invoking guix challenge" msgstr "Invoquer guix challenge" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Challenging substitute servers." msgstr "Défier les serveurs de substituts." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13933 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14290 #, no-wrap msgid "Invoking guix copy" msgstr "Invoquer guix copy" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Copying to and from a remote store." msgstr "Copier vers et depuis un dépôt distant." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13996 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14353 #, no-wrap msgid "Invoking guix container" msgstr "Invoquer guix container" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Process isolation." msgstr "Isolation de processus." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:14050 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14407 #, no-wrap msgid "Invoking guix weather" msgstr "Invoquer guix weather" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Assessing substitute availability." msgstr "Mesurer la disponibilité des substituts." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:14180 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14537 #, no-wrap msgid "Invoking guix processes" msgstr "Invoquer guix processes" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Listing client processes." msgstr "Lister les processus clients." #. type: section -#: guix-git/doc/guix.texi:313 guix-git/doc/guix.texi:10802 +#: guix-git/doc/guix.texi:314 guix-git/doc/guix.texi:11116 #, no-wrap msgid "Invoking @command{guix build}" msgstr "Invoquer @command{guix build}" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:10855 guix-git/doc/guix.texi:10856 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11169 guix-git/doc/guix.texi:11170 #, no-wrap msgid "Common Build Options" msgstr "Options de construction communes" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Build options for most commands." msgstr "Options de construction pour la plupart des commandes." #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11010 guix-git/doc/guix.texi:11011 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11324 guix-git/doc/guix.texi:11325 #, no-wrap msgid "Package Transformation Options" msgstr "Options de transformation de paquets" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Creating variants of packages." msgstr "Créer des variantes de paquets." #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11381 guix-git/doc/guix.texi:11382 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11695 guix-git/doc/guix.texi:11696 #, no-wrap msgid "Additional Build Options" msgstr "Options de construction supplémentaires" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Options specific to 'guix build'." msgstr "Options spécifiques à « guix build »." #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11619 guix-git/doc/guix.texi:11620 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11933 guix-git/doc/guix.texi:11934 #, no-wrap msgid "Debugging Build Failures" msgstr "Débogage des échecs de construction" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Real life packaging experience." msgstr "L'empaquetage dans la vraie vie." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14324 guix-git/doc/guix.texi:14325 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:14681 guix-git/doc/guix.texi:14682 #, no-wrap msgid "Using the Configuration System" msgstr "Utiliser le système de configuration" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Customizing your GNU system." msgstr "Personnaliser votre système GNU@." #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14575 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:14932 #, no-wrap msgid "operating-system Reference" msgstr "référence de operating-system" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Detail of operating-system declarations." msgstr "Détail sur la déclaration de système d'exploitation." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14798 guix-git/doc/guix.texi:14799 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15155 guix-git/doc/guix.texi:15156 #, no-wrap msgid "File Systems" msgstr "Systèmes de fichiers" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring file system mounts." msgstr "Configurer les montages de systèmes de fichiers." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15151 guix-git/doc/guix.texi:15152 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15508 guix-git/doc/guix.texi:15509 #, no-wrap msgid "Mapped Devices" msgstr "Périphériques mappés" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Block device extra processing." msgstr "Gestion des périphériques de bloc." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15300 guix-git/doc/guix.texi:15301 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15657 guix-git/doc/guix.texi:15658 #, no-wrap msgid "Swap Space" msgstr "Espace d'échange" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Backing RAM with disk space." msgstr "Complémenter la RAM avec de l'espace disque." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15400 guix-git/doc/guix.texi:15401 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15757 guix-git/doc/guix.texi:15758 #, no-wrap msgid "User Accounts" msgstr "Comptes utilisateurs" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Specifying user accounts." msgstr "Spécifier des comptes utilisateurs." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:2308 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15581 -#: guix-git/doc/guix.texi:15582 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:2325 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:15938 +#: guix-git/doc/guix.texi:15939 #, no-wrap msgid "Keyboard Layout" msgstr "Disposition du clavier" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "How the system interprets key strokes." msgstr "La manière dont le système interprète les touches du clavier." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1835 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15727 -#: guix-git/doc/guix.texi:15728 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:1852 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:16084 +#: guix-git/doc/guix.texi:16085 #, no-wrap msgid "Locales" msgstr "Régionalisation" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Language and cultural convention settings." msgstr "Paramétrer la langue et les conventions culturelles." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:345 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15867 -#: guix-git/doc/guix.texi:15868 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:346 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:16224 +#: guix-git/doc/guix.texi:16225 #, no-wrap msgid "Services" msgstr "Services" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Specifying system services." msgstr "Spécifier les services du système." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34056 guix-git/doc/guix.texi:34057 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34493 guix-git/doc/guix.texi:34494 #, no-wrap msgid "Setuid Programs" msgstr "Programmes setuid" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Programs running with root privileges." msgstr "Programmes tournant avec les privilèges root." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1984 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:34140 -#: guix-git/doc/guix.texi:34141 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:2001 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:34579 +#: guix-git/doc/guix.texi:34580 #, no-wrap msgid "X.509 Certificates" msgstr "Certificats X.509" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Authenticating HTTPS servers." msgstr "Authentifier les serveurs HTTPS@." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1878 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:34203 -#: guix-git/doc/guix.texi:34204 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:1895 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:34642 +#: guix-git/doc/guix.texi:34643 #, no-wrap msgid "Name Service Switch" msgstr "Name Service Switch" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring libc's name service switch." msgstr "Configurer le « name service switch » de la libc." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34341 guix-git/doc/guix.texi:34342 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34780 guix-git/doc/guix.texi:34781 #, no-wrap msgid "Initial RAM Disk" msgstr "Disque de RAM initial" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Linux-Libre bootstrapping." msgstr "Démarrage de Linux-Libre." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34536 guix-git/doc/guix.texi:34537 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34975 guix-git/doc/guix.texi:34976 #, no-wrap msgid "Bootloader Configuration" msgstr "Configuration du chargeur d'amorçage" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring the boot loader." msgstr "Configurer le chargeur d'amorçage." #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34834 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:35273 #, no-wrap msgid "Invoking guix system" msgstr "Invoquer guix system" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Instantiating a system configuration." msgstr "Instantier une configuration du système." #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:35425 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:35881 #, no-wrap msgid "Invoking guix deploy" msgstr "Invoquer guix deploy" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Deploying a system configuration to a remote host." msgstr "Deployer une configuration du système sur un hôte distant." #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:35631 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:36121 #, no-wrap msgid "Running Guix in a VM" msgstr "Lancer Guix dans une VM" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "How to run Guix System in a virtual machine." msgstr "Comment lancer Guix dans une machine virtuelle." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:381 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:35765 -#: guix-git/doc/guix.texi:35766 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:382 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:36255 +#: guix-git/doc/guix.texi:36256 #, no-wrap msgid "Defining Services" msgstr "Définir des services" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Adding new service definitions." msgstr "Ajouter de nouvelles définitions de services." #. type: menuentry -#: guix-git/doc/guix.texi:341 +#: guix-git/doc/guix.texi:342 msgid "Home Environment Configuration" msgstr "Configuration de l'environnement personnel" #. type: node -#: guix-git/doc/guix.texi:343 guix-git/doc/guix.texi:36944 -#: guix-git/doc/guix.texi:37478 +#: guix-git/doc/guix.texi:344 guix-git/doc/guix.texi:37434 +#: guix-git/doc/guix.texi:37974 #, no-wrap msgid "Invoking guix home" msgstr "Invoquer guix home" #. type: menuentry -#: guix-git/doc/guix.texi:343 +#: guix-git/doc/guix.texi:344 msgid "Instantiating a home environment configuration." msgstr "Instancier une configuration de l'environnement personnel." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:15953 guix-git/doc/guix.texi:15954 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:16310 guix-git/doc/guix.texi:16311 #, no-wrap msgid "Base Services" msgstr "Services de base" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Essential system services." msgstr "Services systèmes essentiels." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:16880 guix-git/doc/guix.texi:16881 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17242 guix-git/doc/guix.texi:17243 #, no-wrap msgid "Scheduled Job Execution" msgstr "Exécution de tâches planifiées" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The mcron service." msgstr "Le service mcron." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17030 guix-git/doc/guix.texi:17031 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17392 guix-git/doc/guix.texi:17393 #, no-wrap msgid "Log Rotation" msgstr "Rotation des journaux" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The rottlog service." msgstr "Le service rottlog." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17143 guix-git/doc/guix.texi:17144 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17505 guix-git/doc/guix.texi:17506 #, no-wrap msgid "Networking Setup" msgstr "Configuration du réseau" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Setting up network interfaces." msgstr "Paramétrage des interfaces réseau." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17561 guix-git/doc/guix.texi:17562 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17923 guix-git/doc/guix.texi:17924 #, no-wrap msgid "Networking Services" msgstr "Services réseau" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Firewall, SSH daemon, etc." msgstr "Pare-feu, démon SSH, etc." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19020 guix-git/doc/guix.texi:19021 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19382 guix-git/doc/guix.texi:19383 #, no-wrap msgid "Unattended Upgrades" msgstr "Mises à jour non surveillées (Unattended Upgrades)" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Automated system upgrades." msgstr "Mise à jour du système automatisé." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19158 guix-git/doc/guix.texi:19159 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19520 guix-git/doc/guix.texi:19521 #, no-wrap msgid "X Window" msgstr "Système de fenêtrage X" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Graphical display." msgstr "Affichage graphique." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19556 guix-git/doc/guix.texi:19557 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19918 guix-git/doc/guix.texi:19919 #, no-wrap msgid "Printing Services" msgstr "Services d'impression" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Local and remote printer support." msgstr "Support pour les imprimantes locales et distantes." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:20409 guix-git/doc/guix.texi:20410 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:20771 guix-git/doc/guix.texi:20772 #, no-wrap msgid "Desktop Services" msgstr "Services de bureaux" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "D-Bus and desktop services." msgstr "D-Bus et les services de bureaux." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:20928 guix-git/doc/guix.texi:20929 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21290 guix-git/doc/guix.texi:21291 #, no-wrap msgid "Sound Services" msgstr "Services de son" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "ALSA and Pulseaudio services." msgstr "Services ALSA et Pulseaudio." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:21068 guix-git/doc/guix.texi:21069 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21430 guix-git/doc/guix.texi:21431 #, no-wrap msgid "Database Services" msgstr "Services de bases de données" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "SQL databases, key-value stores, etc." msgstr "Bases SQL, clefs-valeurs, etc." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:21403 guix-git/doc/guix.texi:21404 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21765 guix-git/doc/guix.texi:21766 #, no-wrap msgid "Mail Services" msgstr "Services de courriels" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "IMAP, POP3, SMTP, and all that." msgstr "IMAP, POP3, SMTP, et tout ça." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:23262 guix-git/doc/guix.texi:23263 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:23624 guix-git/doc/guix.texi:23625 #, no-wrap msgid "Messaging Services" msgstr "Services de messagerie" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Messaging services." msgstr "Services de messagerie." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:23765 guix-git/doc/guix.texi:23766 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:24127 guix-git/doc/guix.texi:24128 #, no-wrap msgid "Telephony Services" msgstr "Services de téléphonie" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Telephony services." msgstr "Services de téléphonie." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:24996 guix-git/doc/guix.texi:24997 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25358 guix-git/doc/guix.texi:25359 #, no-wrap msgid "Monitoring Services" msgstr "Services de surveillance" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Monitoring services." msgstr "Services de surveillance." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:25507 guix-git/doc/guix.texi:25508 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25844 guix-git/doc/guix.texi:25845 #, no-wrap msgid "Kerberos Services" msgstr "Services Kerberos" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Kerberos services." msgstr "Services Kerberos." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:25633 guix-git/doc/guix.texi:25634 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25970 guix-git/doc/guix.texi:25971 #, no-wrap msgid "LDAP Services" msgstr "Services LDAP" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "LDAP services." msgstr "Services LDAP." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:26112 guix-git/doc/guix.texi:26113 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:26449 guix-git/doc/guix.texi:26450 #, no-wrap msgid "Web Services" msgstr "Services web" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Web servers." msgstr "Services web." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:27320 guix-git/doc/guix.texi:27321 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:27657 guix-git/doc/guix.texi:27658 #, no-wrap msgid "Certificate Services" msgstr "Services de certificats" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "TLS certificates via Let's Encrypt." msgstr "Certificats TLS via Let's Encrypt." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:27501 guix-git/doc/guix.texi:27502 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:27838 guix-git/doc/guix.texi:27839 #, no-wrap msgid "DNS Services" msgstr "Services DNS" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "DNS daemons." msgstr "Démons DNS@." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28246 guix-git/doc/guix.texi:28247 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:28583 guix-git/doc/guix.texi:28584 #, no-wrap msgid "VPN Services" msgstr "Services VPN" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "VPN daemons." msgstr "Démons VPN." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28758 guix-git/doc/guix.texi:28759 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29095 guix-git/doc/guix.texi:29096 #, no-wrap msgid "Network File System" msgstr "Système de fichiers en réseau" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "NFS related services." msgstr "Services liés à NFS@." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28954 guix-git/doc/guix.texi:28955 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29291 guix-git/doc/guix.texi:29292 #, no-wrap msgid "Continuous Integration" msgstr "Intégration continue" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Cuirass and Laminar services." msgstr "Les services Cuirass et Laminar." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29240 guix-git/doc/guix.texi:29241 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29577 guix-git/doc/guix.texi:29578 #, no-wrap msgid "Power Management Services" msgstr "Services de gestion de l'énergie" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Extending battery life." msgstr "Augmenter la durée de vie de la batterie." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29774 guix-git/doc/guix.texi:29775 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:30139 guix-git/doc/guix.texi:30140 #, no-wrap msgid "Audio Services" msgstr "Services audio" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The MPD." msgstr "MPD@." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29893 guix-git/doc/guix.texi:29894 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:30258 guix-git/doc/guix.texi:30259 #, no-wrap msgid "Virtualization Services" msgstr "Services de virtualisation" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Virtualization services." msgstr "Services de virtualisation." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:31561 guix-git/doc/guix.texi:31562 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:31926 guix-git/doc/guix.texi:31927 #, no-wrap msgid "Version Control Services" msgstr "Services de contrôle de version" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Providing remote access to Git repositories." msgstr "Fournit des accès distants à des dépôts Git." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:32897 guix-git/doc/guix.texi:32898 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33262 guix-git/doc/guix.texi:33263 #, no-wrap msgid "Game Services" msgstr "Services de jeu" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Game servers." msgstr "Serveurs de jeu." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:32929 guix-git/doc/guix.texi:32930 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33294 guix-git/doc/guix.texi:33295 #, no-wrap msgid "PAM Mount Service" msgstr "Service PAM de montage" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Service to mount volumes when logging in." msgstr "Service pour monter des volumes quand vous vous connectez." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33012 guix-git/doc/guix.texi:33013 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33377 guix-git/doc/guix.texi:33378 #, no-wrap msgid "Guix Services" msgstr "Services Guix" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services relating specifically to Guix." msgstr "Services liés spécifiquement à Guix." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33290 guix-git/doc/guix.texi:33291 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33727 guix-git/doc/guix.texi:33728 #, no-wrap msgid "Linux Services" msgstr "Services Linux" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services tied to the Linux kernel." msgstr "Services liés au noyau Linux." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33517 guix-git/doc/guix.texi:33518 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33954 guix-git/doc/guix.texi:33955 #, no-wrap msgid "Hurd Services" msgstr "Services Hurd" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services specific for a Hurd System." msgstr "Services spécifiques pour un système Hurd." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33559 guix-git/doc/guix.texi:33560 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33996 guix-git/doc/guix.texi:33997 #, no-wrap msgid "Miscellaneous Services" msgstr "Services divers" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Other services." msgstr "D'autres services." #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35780 guix-git/doc/guix.texi:35781 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36270 guix-git/doc/guix.texi:36271 #, no-wrap msgid "Service Composition" msgstr "Composition de services" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "The model for composing services." msgstr "Le modèle de composition des services." #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35836 guix-git/doc/guix.texi:35837 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36326 guix-git/doc/guix.texi:36327 #, no-wrap msgid "Service Types and Services" msgstr "Types service et services" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "Types and services." msgstr "Types et services." #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35973 guix-git/doc/guix.texi:35974 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36463 guix-git/doc/guix.texi:36464 #, no-wrap msgid "Service Reference" msgstr "Référence de service" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "API reference." msgstr "Référence de l'API@." #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:36292 guix-git/doc/guix.texi:36293 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36782 guix-git/doc/guix.texi:36783 #, no-wrap msgid "Shepherd Services" msgstr "Services Shepherd" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "A particular type of service." msgstr "Un type de service particulier." #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:36511 guix-git/doc/guix.texi:36512 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:37001 guix-git/doc/guix.texi:37002 #, no-wrap msgid "Complex Configurations" msgstr "Configurations complexes" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "Defining bindings for complex configurations." msgstr "Définir des liaisons pour les configurations complexes." #. type: section -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 -#: guix-git/doc/guix.texi:37806 guix-git/doc/guix.texi:37807 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 +#: guix-git/doc/guix.texi:38295 guix-git/doc/guix.texi:38296 #, no-wrap msgid "Separate Debug Info" msgstr "Informations de débogage séparées" #. type: menuentry -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 msgid "Installing 'debug' outputs." msgstr "Installer les fichiers de débogage." #. type: section -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 -#: guix-git/doc/guix.texi:37879 guix-git/doc/guix.texi:37880 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 +#: guix-git/doc/guix.texi:38368 guix-git/doc/guix.texi:38369 #, no-wrap msgid "Rebuilding Debug Info" msgstr "Reconstruire les informations de débogage" #. type: menuentry -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 msgid "Building missing debug info." msgstr "Construire les informations manquantes de débogage." #. type: node -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 -#: guix-git/doc/guix.texi:38098 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 +#: guix-git/doc/guix.texi:38587 #, no-wrap msgid "Reduced Binary Seed Bootstrap" msgstr "Binary Seed Bootstrap réduit" #. type: menuentry -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 msgid "A Bootstrap worthy of GNU." msgstr "Un Bootstrap digne de GNU." #. type: section -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 -#: guix-git/doc/guix.texi:38173 guix-git/doc/guix.texi:38174 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 +#: guix-git/doc/guix.texi:38662 guix-git/doc/guix.texi:38663 #, no-wrap msgid "Preparing to Use the Bootstrap Binaries" msgstr "Se préparer à utiliser les binaires de bootstrap" #. type: menuentry -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 msgid "Building that what matters most." msgstr "Construire ce qui compte le plus." #. type: cindex -#: guix-git/doc/guix.texi:405 +#: guix-git/doc/guix.texi:406 #, no-wrap msgid "purpose" msgstr "but" #. type: Plain text -#: guix-git/doc/guix.texi:413 +#: guix-git/doc/guix.texi:414 msgid "GNU Guix@footnote{``Guix'' is pronounced like ``geeks'', or ``ɡiːks'' using the international phonetic alphabet (IPA).} is a package management tool for and distribution of the GNU system. Guix makes it easy for unprivileged users to install, upgrade, or remove software packages, to roll back to a previous package set, to build packages from source, and generally assists with the creation and maintenance of software environments." msgstr "GNU Guix@footnote{« Guix » se prononce comme « geeks » (en prononçant le « s »), ou « ɡiːks » dans l'alphabet phonétique international (API).} est un outil de gestion de paquets et une distribution pour le système GNU@. Guix facilite pour les utilisateur·rice·s non privilégié·e·s l'installation, la mise à jour et la suppression de paquets, la restauration à un ensemble de paquets précédent, la construction de paquets depuis les sources et plus généralement aide à la création et à la maintenance d'environnements logiciels." #. type: cindex -#: guix-git/doc/guix.texi:414 guix-git/doc/guix.texi:489 +#: guix-git/doc/guix.texi:415 guix-git/doc/guix.texi:490 #, no-wrap msgid "Guix System" msgstr "Système Guix" #. type: cindex -#: guix-git/doc/guix.texi:415 +#: guix-git/doc/guix.texi:416 #, no-wrap msgid "GuixSD, now Guix System" msgstr "GuixSD, maintenant le système Guix" #. type: cindex -#: guix-git/doc/guix.texi:416 +#: guix-git/doc/guix.texi:417 #, no-wrap msgid "Guix System Distribution, now Guix System" msgstr "Distribution Système Guix, maintenant le système Guix" #. type: Plain text -#: guix-git/doc/guix.texi:425 +#: guix-git/doc/guix.texi:426 msgid "You can install GNU@tie{}Guix on top of an existing GNU/Linux system where it complements the available tools without interference (@pxref{Installation}), or you can use it as a standalone operating system distribution, @dfn{Guix@tie{}System}@footnote{We used to refer to Guix System as ``Guix System Distribution'' or ``GuixSD''. We now consider it makes more sense to group everything under the ``Guix'' banner since, after all, Guix System is readily available through the @command{guix system} command, even if you're using a different distro underneath!}. @xref{GNU Distribution}." msgstr "Vous pouvez installer GNU@tie{}Guix sur un système GNU/Linux existant pour compléter les outils disponibles sans interférence (@pxref{Installation}) ou vous pouvez l'utiliser comme distribution système indépendante, @dfn{Guix System}@footnote{Nous appelions le système Guix « la distribution système Guix » ou « GuixSD ». nous considérons maintenant qu'il est plus pertinent de regrouper tout sous la bannière de « Guix » comme, après tout, Guix System est directement disponible sous la commande @command{guix system}, meme si vous utilisez une autre distro en dessous !}. @xref{GNU Distribution}." #. type: cindex -#: guix-git/doc/guix.texi:434 +#: guix-git/doc/guix.texi:435 #, no-wrap msgid "user interfaces" msgstr "interfaces utilisateur·rice" #. type: Plain text -#: guix-git/doc/guix.texi:440 +#: guix-git/doc/guix.texi:441 msgid "Guix provides a command-line package management interface (@pxref{Package Management}), tools to help with software development (@pxref{Development}), command-line utilities for more advanced usage (@pxref{Utilities}), as well as Scheme programming interfaces (@pxref{Programming Interface})." msgstr "Guix fournit une interface de gestion des paquets par la ligne de commande (@pxref{Package Management}), des outils pour aider au développement logiciel (@pxref{Development}), des utilitaires en ligne de commande pour des utilisations plus avancées (@pxref{Utilities}) ainsi que des interfaces de programmation Scheme (@pxref{Programming Interface})." #. type: cindex -#: guix-git/doc/guix.texi:440 +#: guix-git/doc/guix.texi:441 #, no-wrap msgid "build daemon" msgstr "démon de construction" #. type: Plain text -#: guix-git/doc/guix.texi:444 +#: guix-git/doc/guix.texi:445 msgid "Its @dfn{build daemon} is responsible for building packages on behalf of users (@pxref{Setting Up the Daemon}) and for downloading pre-built binaries from authorized sources (@pxref{Substitutes})." msgstr "Son @dfn{démon de construction} est responsable de la construction des paquets pour les utilisateur·rice·s (@pxref{Paramétrer le démon}) et du téléchargement des binaires pré-construits depuis les sources autorisées (@pxref{Substituts})." #. type: cindex -#: guix-git/doc/guix.texi:445 +#: guix-git/doc/guix.texi:446 #, no-wrap msgid "extensibility of the distribution" msgstr "extensibilité de la distribution" #. type: cindex -#: guix-git/doc/guix.texi:446 guix-git/doc/guix.texi:6863 +#: guix-git/doc/guix.texi:447 guix-git/doc/guix.texi:6907 #, no-wrap msgid "customization, of packages" msgstr "personnalisation, des paquets" #. type: Plain text -#: guix-git/doc/guix.texi:455 +#: guix-git/doc/guix.texi:456 msgid "Guix includes package definitions for many GNU and non-GNU packages, all of which @uref{https://www.gnu.org/philosophy/free-sw.html, respect the user's computing freedom}. It is @emph{extensible}: users can write their own package definitions (@pxref{Defining Packages}) and make them available as independent package modules (@pxref{Package Modules}). It is also @emph{customizable}: users can @emph{derive} specialized package definitions from existing ones, including from the command line (@pxref{Package Transformation Options})." msgstr "Guix contient de nombreuses définitions de paquet GNU et non-GNU qui respectent tous les @uref{https://www.gnu.org/philosophy/free-sw.fr.html, libertés de l'utilisateur ou utilisatrice}. Il est @emph{extensible}  : chacun·e peut écrire ses propres définitions de paquets (@pxref{Defining Packages}) et les rendre disponibles dans des modules de paquets indépendants (@pxref{Package Modules}). Il est aussi @emph{personnalisable} : on peut @emph{dériver} des définitions de paquets spécialisées à partir de définitions existantes, même depuis la ligne de commande (@pxref{Package Transformation Options})." #. type: cindex -#: guix-git/doc/guix.texi:456 +#: guix-git/doc/guix.texi:457 #, no-wrap msgid "functional package management" msgstr "gestion de paquet fonctionnelle" #. type: cindex -#: guix-git/doc/guix.texi:457 +#: guix-git/doc/guix.texi:458 #, no-wrap msgid "isolation" msgstr "isolation" #. type: Plain text -#: guix-git/doc/guix.texi:472 +#: guix-git/doc/guix.texi:473 msgid "Under the hood, Guix implements the @dfn{functional package management} discipline pioneered by Nix (@pxref{Acknowledgments}). In Guix, the package build and installation process is seen as a @emph{function}, in the mathematical sense. That function takes inputs, such as build scripts, a compiler, and libraries, and returns an installed package. As a pure function, its result depends solely on its inputs---for instance, it cannot refer to software or scripts that were not explicitly passed as inputs. A build function always produces the same result when passed a given set of inputs. It cannot alter the environment of the running system in any way; for instance, it cannot create, modify, or delete files outside of its build and installation directories. This is achieved by running build processes in isolated environments (or @dfn{containers}), where only their explicit inputs are visible." msgstr "Sous le capot, Guix implémente la discipline de @dfn{gestion de paquet fonctionnel} inventé par Nix (@pxref{Remerciements}). Dans Guix le processus de construction et d'installation des paquets est vu comme une @emph{fonction} dans le sens mathématique du terme. Cette fonction a des entrées (comme des scripts de construction, un compilateur et des bibliothèques) et renvoie un paquet installé. En tant que fonction pure, son résultat ne dépend que de ses entrées. Par exemple, il ne peut pas faire référence à des logiciels ou des scripts qui n'ont pas été explicitement passés en entrée. Une fonction de construction produit toujours le même résultat quand on lui donne le même ensemble d'entrée. Elle ne peut pas modifier l'environnement du système en cours d'exécution d'aucune manière ; par exemple elle ne peut pas créer, modifier ou supprimer des fichiers en dehors de ses répertoires de construction et d'installation. Ce résultat s'obtient en lançant les processus de construction dans des environnements isolés (ou des @dfn{conteneurs}) où seules les entrées explicites sont visibles." #. type: cindex -#: guix-git/doc/guix.texi:473 guix-git/doc/guix.texi:9372 +#: guix-git/doc/guix.texi:474 guix-git/doc/guix.texi:9686 #, no-wrap msgid "store" msgstr "dépôt" #. type: Plain text -#: guix-git/doc/guix.texi:480 +#: guix-git/doc/guix.texi:481 msgid "The result of package build functions is @dfn{cached} in the file system, in a special directory called @dfn{the store} (@pxref{The Store}). Each package is installed in a directory of its own in the store---by default under @file{/gnu/store}. The directory name contains a hash of all the inputs used to build that package; thus, changing an input yields a different directory name." msgstr "Le résultat des fonctions de construction de paquets est mis en @dfn{cache} dans le système de fichier, dans répertoire spécial appelé le @dfn{dépôt} (@pxref{The Store}). Chaque paquet est installé dans son répertoire propre dans le dépôt — par défaut dans @file{/gnu/store}. Le nom du répertoire contient un hash de toutes les entrées utilisées pour construire le paquet ; ainsi, changer une entrée donnera un nom de répertoire différent." #. type: Plain text -#: guix-git/doc/guix.texi:484 +#: guix-git/doc/guix.texi:485 msgid "This approach is the foundation for the salient features of Guix: support for transactional package upgrade and rollback, per-user installation, and garbage collection of packages (@pxref{Features})." msgstr "Cette approche est le fondement des fonctionnalités les plus importante de Guix : le support des mises à jour des paquets et des retours en arrière transactionnels, l'installation différenciée par utilisateur·rice et le ramassage de miettes pour les paquets (@pxref{Fonctionnalités})." #. type: Plain text -#: guix-git/doc/guix.texi:499 +#: guix-git/doc/guix.texi:500 msgid "Guix comes with a distribution of the GNU system consisting entirely of free software@footnote{The term ``free'' here refers to the @url{https://www.gnu.org/philosophy/free-sw.html,freedom provided to users of that software}.}. The distribution can be installed on its own (@pxref{System Installation}), but it is also possible to install Guix as a package manager on top of an installed GNU/Linux system (@pxref{Installation}). When we need to distinguish between the two, we refer to the standalone distribution as Guix@tie{}System." msgstr "Guix fournit aussi une distribution du système GNU contenant uniquement des logiciels libres@footnote{Le terme « libre » se réfère ici bien sûr à @url{http://www.gnu.org/philosophy/free-sw.fr.html,la liberté offerte à la personne qui utilise ces logiciels}.}. On peut installer la distribution elle-même (@pxref{System Installation}), mais on peut aussi installer Guix comme gestionnaire de paquets par dessus un système GNU/Linux déjà installé (@pxref{Installation}). Pour distinguer ces deux cas, on appelle la distribution autonome le « système Guix » ou Guix@tie{}System." #. type: Plain text -#: guix-git/doc/guix.texi:505 +#: guix-git/doc/guix.texi:506 msgid "The distribution provides core GNU packages such as GNU libc, GCC, and Binutils, as well as many GNU and non-GNU applications. The complete list of available packages can be browsed @url{https://www.gnu.org/software/guix/packages,on-line} or by running @command{guix package} (@pxref{Invoking guix package}):" msgstr "La distribution fournit les paquets cœur de GNU comme la GNU libc, GCC et Binutils, ainsi que de nombreuses applications GNU et non-GNU. La liste complète des paquets disponibles se trouve @url{http://www.gnu.org/software/guix/packages,en ligne} ou en lançant @command{guix package} (@pxref{Invoking guix package}) :" #. type: example -#: guix-git/doc/guix.texi:508 +#: guix-git/doc/guix.texi:509 #, no-wrap msgid "guix package --list-available\n" msgstr "guix package --list-available\n" #. type: Plain text -#: guix-git/doc/guix.texi:514 +#: guix-git/doc/guix.texi:515 msgid "Our goal is to provide a practical 100% free software distribution of Linux-based and other variants of GNU, with a focus on the promotion and tight integration of GNU components, and an emphasis on programs and tools that help users exert that freedom." msgstr "Notre but est de fournir une distribution logicielle entièrement libre de GNU/Linux et d'autres variantes de GNU, en se concentrant sur la promotion et l'intégration étroite des composants GNU en insistant sur les programmes et les outils qui aident l'utilisateur·rice à exercer ses libertés." #. type: Plain text -#: guix-git/doc/guix.texi:516 +#: guix-git/doc/guix.texi:517 msgid "Packages are currently available on the following platforms:" msgstr "Les paquets sont actuellement disponibles pour les plateformes suivantes :" #. type: item -#: guix-git/doc/guix.texi:519 guix-git/doc/guix.texi:2155 +#: guix-git/doc/guix.texi:520 guix-git/doc/guix.texi:2172 #, no-wrap msgid "x86_64-linux" msgstr "x86_64-linux" #. type: table -#: guix-git/doc/guix.texi:521 +#: guix-git/doc/guix.texi:522 msgid "Intel/AMD @code{x86_64} architecture, Linux-Libre kernel." msgstr "Intel/AMD @code{x86_64} avec le noyau Linux-libre." #. type: item -#: guix-git/doc/guix.texi:522 guix-git/doc/guix.texi:2158 +#: guix-git/doc/guix.texi:523 guix-git/doc/guix.texi:2175 #, no-wrap msgid "i686-linux" msgstr "i686-linux" #. type: table -#: guix-git/doc/guix.texi:524 +#: guix-git/doc/guix.texi:525 msgid "Intel 32-bit architecture (IA32), Linux-Libre kernel." msgstr "Architecture Intel 32 bits (IA32) avec le noyau Linux-libre." #. type: item -#: guix-git/doc/guix.texi:525 +#: guix-git/doc/guix.texi:526 #, no-wrap msgid "armhf-linux" msgstr "armhf-linux" #. type: table -#: guix-git/doc/guix.texi:529 +#: guix-git/doc/guix.texi:530 msgid "ARMv7-A architecture with hard float, Thumb-2 and NEON, using the EABI hard-float application binary interface (ABI), and Linux-Libre kernel." msgstr "L'architecture ARMv7-A avec gestion des flottants matérielle, Thumb-2 et NEON, avec l'interface binaire applicative (ABI) EABI hard-float et le noyau Linux-libre." #. type: item -#: guix-git/doc/guix.texi:530 +#: guix-git/doc/guix.texi:531 #, no-wrap msgid "aarch64-linux" msgstr "aarch64-linux" #. type: table -#: guix-git/doc/guix.texi:532 +#: guix-git/doc/guix.texi:533 msgid "little-endian 64-bit ARMv8-A processors, Linux-Libre kernel." msgstr "les processeurs 64 bits ARMv8-A en little-endian, avec le noyau Linux-libre." #. type: item -#: guix-git/doc/guix.texi:533 +#: guix-git/doc/guix.texi:534 #, no-wrap msgid "i586-gnu" msgstr "i586-gnu" #. type: table -#: guix-git/doc/guix.texi:536 +#: guix-git/doc/guix.texi:537 msgid "@uref{https://hurd.gnu.org, GNU/Hurd} on the Intel 32-bit architecture (IA32)." msgstr "@uref{https://hurd.gnu.org, GNU/Hurd} sur l'architecture Intel 32-bit (IA32)." #. type: table -#: guix-git/doc/guix.texi:542 +#: guix-git/doc/guix.texi:543 msgid "This configuration is experimental and under development. The easiest way for you to give it a try is by setting up an instance of @code{hurd-vm-service-type} on your GNU/Linux machine (@pxref{transparent-emulation-qemu, @code{hurd-vm-service-type}}). @xref{Contributing}, on how to help!" msgstr "Cette configuration en cours de développement est expérimentale. La manière la plus facile pour vous de l'essayer est de créer une instance @code{hurd-vm-service-type} sur votre machine GNU/Linux (@pxref{transparent-emulation-qemu, @code{hurd-vm-service-type}}). @xref{Contributing}, sur la façon d'aider !" #. type: item -#: guix-git/doc/guix.texi:543 +#: guix-git/doc/guix.texi:544 #, no-wrap msgid "mips64el-linux (unsupported)" msgstr "mips64el-linux (non pris en charge)" #. type: table -#: guix-git/doc/guix.texi:549 +#: guix-git/doc/guix.texi:550 msgid "little-endian 64-bit MIPS processors, specifically the Loongson series, n32 ABI, and Linux-Libre kernel. This configuration is no longer fully supported; in particular, there is no ongoing work to ensure that this architecture still works. Should someone decide they wish to revive this architecture then the code is still available." msgstr "les processeurs MIPS 64 bits little-endian, en particulier la série Loongson, l'ABI n32 et le noyau Linux-Libre. Cette configuration n'est plus entièrement prise en charge ; en particulier, il n'y a pas de travaux en cours pour s'assurer que cette architecture fonctionne encore. Si quelqu'un décide de faire revivre cette architecture, le code est toujours disponible." #. type: item -#: guix-git/doc/guix.texi:550 +#: guix-git/doc/guix.texi:551 #, no-wrap msgid "powerpc-linux (unsupported)" msgstr "powerpc-linux (non pris en charge)" #. type: table -#: guix-git/doc/guix.texi:555 +#: guix-git/doc/guix.texi:556 msgid "big-endian 32-bit PowerPC processors, specifically the PowerPC G4 with AltiVec support, and Linux-Libre kernel. This configuration is not fully supported and there is no ongoing work to ensure this architecture works." msgstr "les processeurs PowerPC 32 bits big-endian, en particulier PowerPC G4 avec la prise en charge d'AltVec et le noyau Linux-Libre. Cette configuration n'est pas entièrement prise en charge et il n'y a pas de travaux en cours pour s'assurer que cette architecture fonctionne." #. type: table -#: guix-git/doc/guix.texi:566 +#: guix-git/doc/guix.texi:567 msgid "little-endian 64-bit Power ISA processors, Linux-Libre kernel. This includes POWER9 systems such as the @uref{https://www.fsf.org/news/talos-ii-mainboard-and-talos-ii-lite-mainboard-now-fsf-certified-to-respect-your-freedom, RYF Talos II mainboard}. This platform is available as a \"technology preview\": although it is supported, substitutes are not yet available from the build farm (@pxref{Substitutes}), and some packages may fail to build (@pxref{Tracking Bugs and Patches}). That said, the Guix community is actively working on improving this support, and now is a great time to try it and get involved!" msgstr "Les processeurs little-endian et le noyau linux-Libre. Cela couvre les systèmes POWER9 comme @uref{https://www.fsf.org/news/talos-ii-mainboard-and-talos-ii-lite-mainboard-now-fsf-certified-to-respect-your-freedom, la carte mère Talos II certifiée RYF}. Cette plateforme est disponible en tant que « démonstrateur technique » : bien qu'elle soit prise en charge, les substituts ne sont pas encore disponibles dans notre ferme de construction (@pxref{Substitutes}) et certains paquets peuvent ne pas construire (@pxref{Tracking Bugs and Patches}). Cela dit, la communauté Guix travaille activement à améliorer cette prise en charge et c'est donc maintenant le bon moment pour l'essayer et participer !" -#. type: Plain text +#. type: item +#: guix-git/doc/guix.texi:568 +#, no-wrap +msgid "riscv64-linux" +msgstr "riscv64-linux" + +#. type: table #: guix-git/doc/guix.texi:576 +msgid "little-endian 64-bit RISC-V processors, specifically RV64GC, and Linux-Libre kernel. This playform is available as a \"technology preview\": although it is supported, substitutes are not yet available from the build farm (@pxref{Substitutes}), and some packages may fail to build (@pxref{Tracking Bugs and Patches}). That said, the Guix community is actively working on improving this support, and now is a great time to try it and get involved!" +msgstr "Les processeurs little-endian RISC-V, en particulier RV64GC, et le noyau linux-Libre. Cette plateforme est disponible en tant que « démonstrateur technique » : bien qu'elle soit prise en charge, les substituts ne sont pas encore disponibles dans notre ferme de construction (@pxref{Substitutes}) et certains paquets peuvent ne pas construire (@pxref{Tracking Bugs and Patches}). Cela dit, la communauté Guix travaille activement à améliorer cette prise en charge et c'est donc maintenant le bon moment pour l'essayer et participer !" + +#. type: Plain text +#: guix-git/doc/guix.texi:586 msgid "With Guix@tie{}System, you @emph{declare} all aspects of the operating system configuration and Guix takes care of instantiating the configuration in a transactional, reproducible, and stateless fashion (@pxref{System Configuration}). Guix System uses the Linux-libre kernel, the Shepherd initialization system (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}), the well-known GNU utilities and tool chain, as well as the graphical environment or system services of your choice." msgstr "Avec Guix@tie{}System, vous @emph{déclarez} tous les aspects de la configuration du système d'exploitation et guix s'occupe d'instancier la configuration de manière transactionnelle, reproductible et sans état (@pxref{System Configuration}). Guix System utilise le noyau Linux-libre, le système d'initialisation Shepherd (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}), les outils GNU et la chaîne d'outils familière ainsi que l'environnement graphique et les services systèmes de votre choix." #. type: Plain text -#: guix-git/doc/guix.texi:579 -msgid "Guix System is available on all the above platforms except @code{mips64el-linux} and @code{powerpc64le-linux}." -msgstr "Guix System est disponible sur toutes les plateformes ci-dessus à part @code{mips64el-linux} et @code{powerpc64le-linux}." +#: guix-git/doc/guix.texi:590 +msgid "Guix System is available on all the above platforms except @code{mips64el-linux}, @code{powerpc-linux}, @code{powerpc64le-linux} and @code{riscv64-linux}." +msgstr "Guix System est disponible sur toutes les plateformes ci-dessus à part @code{mips64el-linux}, @code{powerpc-linux}, @code{powerpc64le-linux} et @code{riscv64-linux}." #. type: Plain text -#: guix-git/doc/guix.texi:583 +#: guix-git/doc/guix.texi:594 msgid "For information on porting to other architectures or kernels, @pxref{Porting}." msgstr "Pour des informations sur comment porter vers d'autres architectures et d'autres noyau, @pxref{Porting}." #. type: Plain text -#: guix-git/doc/guix.texi:586 +#: guix-git/doc/guix.texi:597 msgid "Building this distribution is a cooperative effort, and you are invited to join! @xref{Contributing}, for information about how you can help." msgstr "La construction de cette distribution est un effort collaboratif et nous vous invitons à nous rejoindre ! @xref{Contributing}, pour des informations sur la manière de nous aider." #. type: cindex -#: guix-git/doc/guix.texi:592 +#: guix-git/doc/guix.texi:603 #, no-wrap msgid "installing Guix" msgstr "installer Guix" #. type: quotation -#: guix-git/doc/guix.texi:604 +#: guix-git/doc/guix.texi:615 msgid "We recommend the use of this @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, shell installer script} to install Guix on top of a running GNU/Linux system, thereafter called a @dfn{foreign distro}.@footnote{This section is concerned with the installation of the package manager, which can be done on top of a running GNU/Linux system. If, instead, you want to install the complete GNU operating system, @pxref{System Installation}.} The script automates the download, installation, and initial configuration of Guix. It should be run as the root user." msgstr "Nous vous recommandons d'utiliser ce @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, script shell d'installation} pour installer Guix sur un système GNU/Linux fonctionnel, que nous appelons une @dfn{distro externe}@footnote{Cette section s'occupe de l'installation du gestionnaire de paquet, ce qui peut se faire sur un système GNU/Linux existant. Si vous voulez plutôt installer le système d'exploitation GNU complet, @pxref{System Installation}.}. Le script automatise le téléchargement, l'installation et la configuration initiale de Guix. Vous devez l'exécuter en tant que root." #. type: cindex -#: guix-git/doc/guix.texi:606 guix-git/doc/guix.texi:1830 +#: guix-git/doc/guix.texi:617 guix-git/doc/guix.texi:1847 #, no-wrap msgid "foreign distro" msgstr "distro externe" #. type: cindex -#: guix-git/doc/guix.texi:607 +#: guix-git/doc/guix.texi:618 #, no-wrap msgid "directories related to foreign distro" msgstr "répertoires liés aux distro externes" #. type: Plain text -#: guix-git/doc/guix.texi:612 +#: guix-git/doc/guix.texi:623 msgid "When installed on a foreign distro, GNU@tie{}Guix complements the available tools without interference. Its data lives exclusively in two directories, usually @file{/gnu/store} and @file{/var/guix}; other files on your system, such as @file{/etc}, are left untouched." msgstr "Lorsqu'il est installé sur une distro externe, GNU@tie{}Guix complète les outils disponibles sans interférence. Ses données se trouvent exclusivement dans deux répertoires, typiquement @file{/gnu/store} et @file{/var/guix} ; les autres fichiers de votre système comme @file{/etc} sont laissés intacts." #. type: Plain text -#: guix-git/doc/guix.texi:615 +#: guix-git/doc/guix.texi:626 msgid "Once installed, Guix can be updated by running @command{guix pull} (@pxref{Invoking guix pull})." msgstr "Une fois installé, Guix peut être mis à jour en lançant @command{guix pull} (@pxref{Invoking guix pull})." #. type: Plain text -#: guix-git/doc/guix.texi:620 +#: guix-git/doc/guix.texi:631 msgid "If you prefer to perform the installation steps manually or want to tweak them, you may find the following subsections useful. They describe the software requirements of Guix, as well as how to install it manually and get ready to use it." msgstr "Si vous préférez effectuer les étapes d'installation manuellement ou si vous voulez les personnaliser, vous trouverez les sections suivantes utile. Elles décrivent les prérequis logiciels pour Guix, ainsi que la manière de l'installer manuellement et de se préparer à l'utiliser." #. type: cindex -#: guix-git/doc/guix.texi:634 +#: guix-git/doc/guix.texi:645 #, no-wrap msgid "installing Guix from binaries" msgstr "installer Guix depuis les binaires" #. type: cindex -#: guix-git/doc/guix.texi:635 +#: guix-git/doc/guix.texi:646 #, no-wrap msgid "installer script" msgstr "script d'installation" #. type: Plain text -#: guix-git/doc/guix.texi:641 +#: guix-git/doc/guix.texi:652 msgid "This section describes how to install Guix on an arbitrary system from a self-contained tarball providing binaries for Guix and for all its dependencies. This is often quicker than installing from source, which is described in the next sections. The only requirement is to have GNU@tie{}tar and Xz." msgstr "Cette section décrit comment installer Guix sur un système quelconque depuis un archive autonome qui fournit les binaires pour Guix et toutes ses dépendances. C'est souvent plus rapide que d'installer depuis les sources, ce qui est décrit dans les sections suivantes. Le seul prérequis est d'avoir GNU@tie{}tar et Xz." #. type: quotation -#: guix-git/doc/guix.texi:649 +#: guix-git/doc/guix.texi:660 msgid "We recommend the use of this @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, shell installer script}. The script automates the download, installation, and initial configuration steps described below. It should be run as the root user. As root, you can thus run this:" msgstr "Nous recommandons l'utilisation de ce @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, script d'installation du shell}. Ce script automatise les étapes de téléchargement, d'installation et de configuration initiale décrites ci-dessous. Il doit être exécuté sous l'utilisateur root. Vous pouvez donc l'exécuter en tant que root :" #. type: example -#: guix-git/doc/guix.texi:655 +#: guix-git/doc/guix.texi:666 #, no-wrap msgid "" "cd /tmp\n" @@ -5446,33 +5516,33 @@ msgstr "" "./guix-install.sh\n" #. type: quotation -#: guix-git/doc/guix.texi:659 +#: guix-git/doc/guix.texi:670 msgid "When you're done, @pxref{Application Setup} for extra configuration you might need, and @ref{Getting Started} for your first steps!" msgstr "Lorsque vous aurez terminé, @pxref{Application Setup} pour la configuration supplémentaire dont vous pourriez avoir besoin, et @ref{Getting Started} pour vos premiers pas !" #. type: Plain text -#: guix-git/doc/guix.texi:662 +#: guix-git/doc/guix.texi:673 msgid "Installing goes along these lines:" msgstr "L'installation se comme ceci :" #. type: cindex -#: guix-git/doc/guix.texi:665 +#: guix-git/doc/guix.texi:676 #, no-wrap msgid "downloading Guix binary" msgstr "téléchargement du Guix binaire" #. type: enumerate -#: guix-git/doc/guix.texi:671 +#: guix-git/doc/guix.texi:682 msgid "Download the binary tarball from @indicateurl{@value{BASE-URL}/guix-binary-@value{VERSION}.x86_64-linux.tar.xz}, where @code{x86_64-linux} can be replaced with @code{i686-linux} for an @code{i686} (32-bits) machine already running the kernel Linux, and so on (@pxref{GNU Distribution})." msgstr "Télécharger le tarball binaire à partir de @indicateurl{@value{BASE-URL}/guix-binary-@value{VERSION}.x86_64-linux.tar.xz}, où @code{x86_64-linux} peut être remplacé par @code{i686-linux} pour une @code{i686} (32-bits) machine fonctionnant déjà avec le noyau Linux, et autres (@pxref{GNU Distribution})." #. type: enumerate -#: guix-git/doc/guix.texi:675 +#: guix-git/doc/guix.texi:686 msgid "Make sure to download the associated @file{.sig} file and to verify the authenticity of the tarball against it, along these lines:" msgstr "Assurez-vous de télécharger le fichier @file{.sig} associé et de vérifier l'authenticité de l'archive avec, comme ceci :" #. type: example -#: guix-git/doc/guix.texi:679 +#: guix-git/doc/guix.texi:690 #, no-wrap msgid "" "$ wget @value{BASE-URL}/guix-binary-@value{VERSION}.x86_64-linux.tar.xz.sig\n" @@ -5482,12 +5552,12 @@ msgstr "" "$ gpg --verify guix-binary-@value{VERSION}.x86_64-linux.tar.xz.sig\n" #. type: Plain text -#: guix-git/doc/guix.texi:683 guix-git/doc/guix.texi:2173 +#: guix-git/doc/guix.texi:694 guix-git/doc/guix.texi:2190 msgid "If that command fails because you do not have the required public key, then run this command to import it:" msgstr "Si cette commande échoue parce que vous n'avez pas la clef publique requise, lancez cette commande pour l'importer :" #. type: example -#: guix-git/doc/guix.texi:687 +#: guix-git/doc/guix.texi:698 #, no-wrap msgid "" "$ wget '@value{OPENPGP-SIGNING-KEY-URL}' \\\n" @@ -5497,22 +5567,22 @@ msgstr "" " -qO - | gpg --import -\n" #. type: Plain text -#: guix-git/doc/guix.texi:691 guix-git/doc/guix.texi:2181 +#: guix-git/doc/guix.texi:702 guix-git/doc/guix.texi:2198 msgid "and rerun the @code{gpg --verify} command." msgstr "et relancez la commande @code{gpg --verify}." #. type: Plain text -#: guix-git/doc/guix.texi:694 guix-git/doc/guix.texi:2184 +#: guix-git/doc/guix.texi:705 guix-git/doc/guix.texi:2201 msgid "Take note that a warning like ``This key is not certified with a trusted signature!'' is normal." msgstr "Remarquez qu'un avertissement du type « Cette clef n'est pas certifiée par une signature de confiance ! » est normal." #. type: enumerate -#: guix-git/doc/guix.texi:700 +#: guix-git/doc/guix.texi:711 msgid "Now, you need to become the @code{root} user. Depending on your distribution, you may have to run @code{su -} or @code{sudo -i}. As @code{root}, run:" msgstr "Maintenant, vous devez devenir @code{root}. En fonction de votre distribution, vous devrez lancer @code{su -} ou @code{sudo -i}. En tant que @code{root}, lancez :" #. type: example -#: guix-git/doc/guix.texi:706 +#: guix-git/doc/guix.texi:717 #, no-wrap msgid "" "# cd /tmp\n" @@ -5526,27 +5596,27 @@ msgstr "" "# mv var/guix /var/ && mv gnu /\n" #. type: enumerate -#: guix-git/doc/guix.texi:711 +#: guix-git/doc/guix.texi:722 msgid "This creates @file{/gnu/store} (@pxref{The Store}) and @file{/var/guix}. The latter contains a ready-to-use profile for @code{root} (see next step)." msgstr "Cela crée @file{/gnu/store} (@pxref{The Store}) and @file{/var/guix}. Ce dernier contient un profil prêt à être utilisé pour @code{root} (voir les étapes suivantes)." #. type: enumerate -#: guix-git/doc/guix.texi:714 +#: guix-git/doc/guix.texi:725 msgid "Do @emph{not} unpack the tarball on a working Guix system since that would overwrite its own essential files." msgstr "Ne décompressez @emph{pas} l'archive sur un système Guix lancé car cela écraserait ses propres fichiers essentiels." #. type: enumerate -#: guix-git/doc/guix.texi:724 +#: guix-git/doc/guix.texi:735 msgid "The @option{--warning=no-timestamp} option makes sure GNU@tie{}tar does not emit warnings about ``implausibly old time stamps'' (such warnings were triggered by GNU@tie{}tar 1.26 and older; recent versions are fine). They stem from the fact that all the files in the archive have their modification time set to 1 (which means January 1st, 1970). This is done on purpose to make sure the archive content is independent of its creation time, thus making it reproducible." msgstr "L'option @option{--warning=no-timestamp} permet de s'assurer que GNU@tie{}tar n'émet pas d'avertissements concernant des « horodatages manifestement anciens » (de tels avertissements ont été déclenchés par GNU@tie{}tar 1.26 et plus anciens ; les versions récentes conviennent). Ils proviennent du fait que tous les fichiers de l'archive ont leur heure de modification fixée à un (ce qui signifie le 1er janvier 1970). Ceci est fait exprès pour s'assurer que le contenu de l'archive est indépendant de son temps de création, la rendant ainsi reproductible." #. type: enumerate -#: guix-git/doc/guix.texi:728 +#: guix-git/doc/guix.texi:739 msgid "Make the profile available under @file{~root/.config/guix/current}, which is where @command{guix pull} will install updates (@pxref{Invoking guix pull}):" msgstr "Rendez le profil disponible sous @file{~root/.config/guix/current}, qui est l'emplacement où @command{guix pull} installera les mises à jour (@pxref{Invoking guix pull}) :" #. type: example -#: guix-git/doc/guix.texi:733 +#: guix-git/doc/guix.texi:744 #, no-wrap msgid "" "# mkdir -p ~root/.config/guix\n" @@ -5558,12 +5628,12 @@ msgstr "" " ~root/.config/guix/current\n" #. type: enumerate -#: guix-git/doc/guix.texi:737 +#: guix-git/doc/guix.texi:748 msgid "Source @file{etc/profile} to augment @env{PATH} and other relevant environment variables:" msgstr "Agrémentez @file{etc/profile} pour augmenter @code{PATH} et les autres variables d'environnement nécessaires :" #. type: example -#: guix-git/doc/guix.texi:741 +#: guix-git/doc/guix.texi:752 #, no-wrap msgid "" "# GUIX_PROFILE=\"`echo ~root`/.config/guix/current\" ; \\\n" @@ -5573,22 +5643,22 @@ msgstr "" " source $GUIX_PROFILE/etc/profile\n" #. type: enumerate -#: guix-git/doc/guix.texi:746 +#: guix-git/doc/guix.texi:757 msgid "Create the group and user accounts for build users as explained below (@pxref{Build Environment Setup})." msgstr "Créez le groupe et les comptes utilisés pour la construction comme expliqué plus loin (@pxref{Build Environment Setup})." #. type: enumerate -#: guix-git/doc/guix.texi:749 +#: guix-git/doc/guix.texi:760 msgid "Run the daemon, and set it to automatically start on boot." msgstr "Lancez le démon et paramétrez-le pour démarrer automatiquement au démarrage." #. type: enumerate -#: guix-git/doc/guix.texi:752 +#: guix-git/doc/guix.texi:763 msgid "If your host distro uses the systemd init system, this can be achieved with these commands:" msgstr "Si votre distribution hôte utilise le système d'initialisation systemd, cela peut se faire avec ces commandes :" #. type: example -#: guix-git/doc/guix.texi:765 +#: guix-git/doc/guix.texi:776 #, no-wrap msgid "" "# cp ~root/.config/guix/current/lib/systemd/system/gnu-store.mount \\\n" @@ -5602,12 +5672,12 @@ msgstr "" "# systemctl enable --now gnu-store.mount guix-daemon\n" #. type: enumerate -#: guix-git/doc/guix.texi:768 +#: guix-git/doc/guix.texi:779 msgid "You may also want to arrange for @command{guix gc} to run periodically:" msgstr "Vous pourriez aussi vouloir faire en sorte que @command{guix gc} soit lancé périodiquement :" #. type: example -#: guix-git/doc/guix.texi:774 +#: guix-git/doc/guix.texi:785 #, no-wrap msgid "" "# cp ~root/.config/guix/current/lib/systemd/system/guix-gc.service \\\n" @@ -5621,17 +5691,17 @@ msgstr "" "# systemctl enable --now guix-gc.timer\n" #. type: enumerate -#: guix-git/doc/guix.texi:778 +#: guix-git/doc/guix.texi:789 msgid "You may want to edit @file{guix-gc.service} to adjust the command line options to fit your needs (@pxref{Invoking guix gc})." msgstr "Vous voudrez peut-être éditer @file{guix-gc.service} pour ajuster la ligne de commande à vos besoins (@pxref{Invoquer guix gc})." #. type: itemize -#: guix-git/doc/guix.texi:780 guix-git/doc/guix.texi:13740 +#: guix-git/doc/guix.texi:791 guix-git/doc/guix.texi:14097 msgid "If your host distro uses the Upstart init system:" msgstr "Si votre distribution hôte utilise le système d'initialisation Upstart :" #. type: example -#: guix-git/doc/guix.texi:786 +#: guix-git/doc/guix.texi:797 #, no-wrap msgid "" "# initctl reload-configuration\n" @@ -5645,12 +5715,12 @@ msgstr "" "# start guix-daemon\n" #. type: enumerate -#: guix-git/doc/guix.texi:789 +#: guix-git/doc/guix.texi:800 msgid "Otherwise, you can still start the daemon manually with:" msgstr "Sinon, vous pouvez toujours démarrer le démon manuellement avec :" #. type: example -#: guix-git/doc/guix.texi:793 +#: guix-git/doc/guix.texi:804 #, no-wrap msgid "" "# ~root/.config/guix/current/bin/guix-daemon \\\n" @@ -5660,12 +5730,12 @@ msgstr "" " --build-users-group=guixbuild\n" #. type: enumerate -#: guix-git/doc/guix.texi:798 +#: guix-git/doc/guix.texi:809 msgid "Make the @command{guix} command available to other users on the machine, for instance with:" msgstr "Rendez la commande @command{guix} disponible pour les autres personnes sur la machine, par exemple avec :" #. type: example -#: guix-git/doc/guix.texi:803 +#: guix-git/doc/guix.texi:814 #, no-wrap msgid "" "# mkdir -p /usr/local/bin\n" @@ -5677,12 +5747,12 @@ msgstr "" "# ln -s /var/guix/profiles/per-user/root/current-guix/bin/guix\n" #. type: enumerate -#: guix-git/doc/guix.texi:807 +#: guix-git/doc/guix.texi:818 msgid "It is also a good idea to make the Info version of this manual available there:" msgstr "C'est aussi une bonne idée de rendre la version Info de ce manuel disponible ici :" #. type: example -#: guix-git/doc/guix.texi:813 +#: guix-git/doc/guix.texi:824 #, no-wrap msgid "" "# mkdir -p /usr/local/share/info\n" @@ -5696,24 +5766,24 @@ msgstr "" " do ln -s $i ; done\n" #. type: enumerate -#: guix-git/doc/guix.texi:819 +#: guix-git/doc/guix.texi:830 msgid "That way, assuming @file{/usr/local/share/info} is in the search path, running @command{info guix} will open this manual (@pxref{Other Info Directories,,, texinfo, GNU Texinfo}, for more details on changing the Info search path)." msgstr "Ainsi, en supposant que @file{/usr/local/share/info} se trouve dans le chemin de recherche, l'exécution de @command{info guix} ouvrira ce manuel (@pxref{Other Info Directories, , texinfo, GNU Texinfo}, pour plus de détails sur la modification du chemin de recherche Info)." #. type: cindex -#: guix-git/doc/guix.texi:821 guix-git/doc/guix.texi:3798 -#: guix-git/doc/guix.texi:16494 +#: guix-git/doc/guix.texi:832 guix-git/doc/guix.texi:3816 +#: guix-git/doc/guix.texi:16851 #, no-wrap msgid "substitutes, authorization thereof" msgstr "substituts, autorisations" #. type: enumerate -#: guix-git/doc/guix.texi:825 +#: guix-git/doc/guix.texi:836 msgid "To use substitutes from @code{@value{SUBSTITUTE-SERVER-1}}, @code{@value{SUBSTITUTE-SERVER-2}} or a mirror (@pxref{Substitutes}), authorize them:" msgstr "Pour utiliser les substituts de @code{@value{SUBSTITUTE-SERVER-1}}, @code{@value{SUBSTITUTE-SERVER-2}} ou l'un de leurs miroirs (@pxref{Substituts}), autorisez-les :" #. type: example -#: guix-git/doc/guix.texi:831 +#: guix-git/doc/guix.texi:842 #, no-wrap msgid "" "# guix archive --authorize < \\\n" @@ -5727,49 +5797,49 @@ msgstr "" " ~root/.config/guix/current/share/guix/@value{SUBSTITUTE-SERVER-2}.pub\n" #. type: quotation -#: guix-git/doc/guix.texi:838 +#: guix-git/doc/guix.texi:849 msgid "If you do not enable substitutes, Guix will end up building @emph{everything} from source on your machine, making each installation and upgrade very expensive. @xref{On Trusting Binaries}, for a discussion of reasons why one might want do disable substitutes." msgstr "Si vous n'activez pas les substituts, Guix va @emph{tout} compiler depuis les sources sur votre machine, rendant très coûteuse chaque installation et chaque mise à jour. @xref{On Trusting Binaries}, pour une discussion des raisons pour lesquelles on pourrait vouloir désactiver les substituts." #. type: enumerate -#: guix-git/doc/guix.texi:843 +#: guix-git/doc/guix.texi:854 msgid "Each user may need to perform a few additional steps to make their Guix environment ready for use, @pxref{Application Setup}." msgstr "On peut avoir besoin d'effectuer des étapes supplémentaires pour que son environnement Guix soit prêt à être utilisé, @pxref{Application Setup}." #. type: Plain text -#: guix-git/doc/guix.texi:846 +#: guix-git/doc/guix.texi:857 msgid "Voilà, the installation is complete!" msgstr "Voilà, l'installation est terminée !" #. type: Plain text -#: guix-git/doc/guix.texi:849 +#: guix-git/doc/guix.texi:860 msgid "You can confirm that Guix is working by installing a sample package into the root profile:" msgstr "Vous pouvez confirmer que Guix fonctionne en installant un paquet d'exemple dans le profil de root :" #. type: example -#: guix-git/doc/guix.texi:852 +#: guix-git/doc/guix.texi:863 #, no-wrap msgid "# guix install hello\n" msgstr "# guix install hello\n" #. type: Plain text -#: guix-git/doc/guix.texi:856 +#: guix-git/doc/guix.texi:867 msgid "The binary installation tarball can be (re)produced and verified simply by running the following command in the Guix source tree:" msgstr "L'archive d'installation binaire peut être (re)produite et vérifiée simplement en lançant la commande suivante dans l'arborescence des sources de Guix :" #. type: example -#: guix-git/doc/guix.texi:859 +#: guix-git/doc/guix.texi:870 #, no-wrap msgid "make guix-binary.@var{system}.tar.xz\n" msgstr "make guix-binary.@var{system}.tar.xz\n" #. type: Plain text -#: guix-git/doc/guix.texi:863 +#: guix-git/doc/guix.texi:874 msgid "...@: which, in turn, runs:" msgstr "…@: ce qui à son tour lance :" #. type: example -#: guix-git/doc/guix.texi:867 +#: guix-git/doc/guix.texi:878 #, no-wrap msgid "" "guix pack -s @var{system} --localstatedir \\\n" @@ -5779,223 +5849,228 @@ msgstr "" " --profile-name=current-guix guix\n" #. type: Plain text -#: guix-git/doc/guix.texi:870 +#: guix-git/doc/guix.texi:881 msgid "@xref{Invoking guix pack}, for more info on this handy tool." msgstr "@xref{Invoking guix pack}, pour plus d'info sur cet outil pratique." #. type: Plain text -#: guix-git/doc/guix.texi:878 +#: guix-git/doc/guix.texi:889 msgid "This section lists requirements when building Guix from source. The build procedure for Guix is the same as for other GNU software, and is not covered here. Please see the files @file{README} and @file{INSTALL} in the Guix source tree for additional details." msgstr "Cette section dresse la liste des prérequis pour la construction de Guix depuis les sources. La procédure de construction pour Guix est la même que pour les autres logiciels GNU, et n'est pas expliquée ici. Regardez les fichiers @file{README} et @file{INSTALL} dans l'arborescence des sources de Guix pour plus de détails." #. type: cindex -#: guix-git/doc/guix.texi:879 +#: guix-git/doc/guix.texi:890 #, no-wrap msgid "official website" msgstr "site officiel" #. type: Plain text -#: guix-git/doc/guix.texi:882 +#: guix-git/doc/guix.texi:893 msgid "GNU Guix is available for download from its website at @url{https://www.gnu.org/software/guix/}." msgstr "GNU Guix est disponible au téléchargement depuis son site web sur @url{http://www.gnu.org/software/guix/}." #. type: Plain text -#: guix-git/doc/guix.texi:884 +#: guix-git/doc/guix.texi:895 msgid "GNU Guix depends on the following packages:" msgstr "GNU Guix dépend des paquets suivants :" #. type: item -#: guix-git/doc/guix.texi:886 +#: guix-git/doc/guix.texi:897 #, no-wrap -msgid "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x;" +msgid "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x," msgstr "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x ;" +#. type: itemize +#: guix-git/doc/guix.texi:899 +msgid "version 3.0.3 or later;" +msgstr "version 3.0.3 ou supérieure ;" + #. type: item -#: guix-git/doc/guix.texi:887 +#: guix-git/doc/guix.texi:899 #, no-wrap msgid "@url{https://notabug.org/cwebber/guile-gcrypt, Guile-Gcrypt}, version" msgstr "@url{https://notabug.org/cwebber/guile-gcrypt, Guile-Gcrypt}, version" #. type: itemize -#: guix-git/doc/guix.texi:889 +#: guix-git/doc/guix.texi:901 msgid "0.1.0 or later;" msgstr "0.1.0 ou supérieure ;" #. type: itemize -#: guix-git/doc/guix.texi:893 +#: guix-git/doc/guix.texi:905 msgid "@uref{https://gnutls.org/, GnuTLS}, specifically its Guile bindings (@pxref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile});" msgstr "@uref{https://gnutls.org/, GnuTLS}, en particulier ses liaisons Guile (@pxref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile}) ;" #. type: itemize -#: guix-git/doc/guix.texi:896 +#: guix-git/doc/guix.texi:908 msgid "@uref{https://notabug.org/guile-sqlite3/guile-sqlite3, Guile-SQLite3}, version 0.1.0 or later;" msgstr "@uref{https://notabug.org/guile-sqlite3/guile-sqlite3, Guile-SQLite3}, version 0.1.0 ou supérieure ;" #. type: item -#: guix-git/doc/guix.texi:896 +#: guix-git/doc/guix.texi:908 #, no-wrap msgid "@uref{https://notabug.org/guile-zlib/guile-zlib, Guile-zlib}," msgstr "@uref{https://notabug.org/guile-zlib/guile-zlib, Guile-zlib}," #. type: itemize -#: guix-git/doc/guix.texi:898 +#: guix-git/doc/guix.texi:910 msgid "version 0.1.0 or later;" msgstr "version 0.1.0 ou supérieure ;" #. type: item -#: guix-git/doc/guix.texi:898 +#: guix-git/doc/guix.texi:910 #, no-wrap msgid "@uref{https://notabug.org/guile-lzlib/guile-lzlib, Guile-lzlib};" msgstr "@uref{https://notabug.org/guile-lzlib/guile-lzlib, Guile-lzlib} ;" #. type: item -#: guix-git/doc/guix.texi:899 +#: guix-git/doc/guix.texi:911 #, no-wrap msgid "@uref{https://www.nongnu.org/guile-avahi/, Guile-Avahi};" msgstr "@uref{https://www.nongnu.org/guile-avahi/, Guile-Avahi} ;" #. type: itemize -#: guix-git/doc/guix.texi:903 +#: guix-git/doc/guix.texi:915 msgid "@uref{https://gitlab.com/guile-git/guile-git, Guile-Git}, version 0.5.0 or later;" msgstr "@uref{https://gitlab.com/guile-git/guile-git, Guile-Git}, version 0.5.0 ou supérieure ;" #. type: item -#: guix-git/doc/guix.texi:903 +#: guix-git/doc/guix.texi:915 #, no-wrap msgid "@uref{https://savannah.nongnu.org/projects/guile-json/, Guile-JSON}" msgstr "@uref{https://savannah.nongnu.org/projects/guile-json/, Guile-JSON}" #. type: itemize -#: guix-git/doc/guix.texi:905 +#: guix-git/doc/guix.texi:917 msgid "4.3.0 or later;" msgstr "4.3.0 ou plus récent ;" #. type: item -#: guix-git/doc/guix.texi:905 +#: guix-git/doc/guix.texi:917 #, no-wrap msgid "@url{https://www.gnu.org/software/make/, GNU Make}." msgstr "@url{https://www.gnu.org/software/make/, GNU Make}." #. type: Plain text -#: guix-git/doc/guix.texi:909 +#: guix-git/doc/guix.texi:921 msgid "The following dependencies are optional:" msgstr "Les dépendances suivantes sont facultatives :" #. type: itemize -#: guix-git/doc/guix.texi:917 +#: guix-git/doc/guix.texi:929 msgid "Support for build offloading (@pxref{Daemon Offload Setup}) and @command{guix copy} (@pxref{Invoking guix copy}) depends on @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH}, version 0.13.0 or later." msgstr "Traitement du déchargement des builds (@pxref{Daemon Offload Setup}) et @command{guix copy} (@pxref{Invoquer guix copy}) dépend de @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH}, version 0.13.0 ou ultérieure." #. type: itemize -#: guix-git/doc/guix.texi:922 +#: guix-git/doc/guix.texi:934 msgid "@uref{https://notabug.org/guile-zstd/guile-zstd, Guile-zstd}, for zstd compression and decompression in @command{guix publish} and for substitutes (@pxref{Invoking guix publish})." msgstr "@uref{https://notabug.org/guile-zstd/guile-zstd, Guile-zstd}, pour la compression et la décompression zstd dans @command{guix publish} et pour les substituts (@pxref{Invoking guix publish})." #. type: itemize -#: guix-git/doc/guix.texi:926 +#: guix-git/doc/guix.texi:938 msgid "@uref{https://ngyro.com/software/guile-semver.html, Guile-Semver} for the @code{crate} importer (@pxref{Invoking guix import})." msgstr "@uref{https://ngyro.com/software/guile-semver.html, Guile-Semver} pour l'importateur @code{crate} (@pxref{Invoking guix import})." #. type: itemize -#: guix-git/doc/guix.texi:931 +#: guix-git/doc/guix.texi:943 msgid "@uref{https://www.nongnu.org/guile-lib/doc/ref/htmlprag/, Guile-Lib} for the @code{go} importer (@pxref{Invoking guix import}) and for some of the ``updaters'' (@pxref{Invoking guix refresh})." msgstr "@uref{https://www.nongnu.org/guile-lib/doc/ref/htmlprag/, Guile-Lib} pour l'importateur @code{go} (@pxref{Invoking guix import}) et pour certains programmes de mise à jour .(@pxref{Invoking guix refresh})." #. type: itemize -#: guix-git/doc/guix.texi:935 +#: guix-git/doc/guix.texi:947 msgid "When @url{http://www.bzip.org, libbz2} is available, @command{guix-daemon} can use it to compress build logs." msgstr "Lorsque @url{http://www.bzip.org, libbz2} est disponible, @command{guix-daemon} peut l'utiliser pour compresser les journaux de construction." #. type: Plain text -#: guix-git/doc/guix.texi:939 +#: guix-git/doc/guix.texi:951 msgid "Unless @option{--disable-daemon} was passed to @command{configure}, the following packages are also needed:" msgstr "Sauf si @option{--disable-daemon} a été passé à @command{configure}, les paquets suivants sont également nécessaires :" #. type: item -#: guix-git/doc/guix.texi:941 +#: guix-git/doc/guix.texi:953 #, no-wrap msgid "@url{https://gnupg.org/, GNU libgcrypt};" msgstr "@url{https://gnupg.org/, GNU libgcrypt} ;" #. type: item -#: guix-git/doc/guix.texi:942 +#: guix-git/doc/guix.texi:954 #, no-wrap msgid "@url{https://sqlite.org, SQLite 3};" msgstr "@url{https://sqlite.org, SQLite 3} ;" #. type: item -#: guix-git/doc/guix.texi:943 +#: guix-git/doc/guix.texi:955 #, no-wrap msgid "@url{https://gcc.gnu.org, GCC's g++}, with support for the" msgstr "@url{https://gcc.gnu.org, GCC's g++}, avec le support pour le" #. type: itemize -#: guix-git/doc/guix.texi:945 +#: guix-git/doc/guix.texi:957 msgid "C++11 standard." msgstr "Standard C++11." #. type: cindex -#: guix-git/doc/guix.texi:947 +#: guix-git/doc/guix.texi:959 #, no-wrap msgid "state directory" msgstr "répertoire d'état" #. type: Plain text -#: guix-git/doc/guix.texi:956 +#: guix-git/doc/guix.texi:968 msgid "When configuring Guix on a system that already has a Guix installation, be sure to specify the same state directory as the existing installation using the @option{--localstatedir} option of the @command{configure} script (@pxref{Directory Variables, @code{localstatedir},, standards, GNU Coding Standards}). Usually, this @var{localstatedir} option is set to the value @file{/var}. The @command{configure} script protects against unintended misconfiguration of @var{localstatedir} so you do not inadvertently corrupt your store (@pxref{The Store})." msgstr "Lorsque vous configurez Guix sur un système qui a déjà une installation de Guix, assurez-vous de spécifier le même répertoire d'état que l'installation existante avec l'option @code{--localstatedir} du script @command{configure} (@pxref{Directory Variables, @code{localstatedir},, standards, GNU Coding Standards}). Habituellement cette option @var{localstatedir} est initialisée à @file{/var}. Le script @command{configure} vous protège des configurations involontaires de @var{localstatedir} pour éviter que vous ne corrompiez votre dépôt (@pxref{The Store})." #. type: cindex -#: guix-git/doc/guix.texi:960 +#: guix-git/doc/guix.texi:972 #, no-wrap msgid "test suite" msgstr "suite de tests" #. type: Plain text -#: guix-git/doc/guix.texi:966 +#: guix-git/doc/guix.texi:978 msgid "After a successful @command{configure} and @code{make} run, it is a good idea to run the test suite. It can help catch issues with the setup or environment, or bugs in Guix itself---and really, reporting test failures is a good way to help improve the software. To run the test suite, type:" msgstr "Après avoir lancé @command{configure} et @code{make} correctement, c'est une bonne idée de lancer la suite de tests. Elle peut aider à trouver des erreurs avec la configuration ou l'environnement, ou des bogues dans Guix lui-même — et vraiment, rapporter des échecs de tests est une bonne manière d'aider à améliorer le logiciel. Pour lancer la suite de tests, tapez :" #. type: example -#: guix-git/doc/guix.texi:969 +#: guix-git/doc/guix.texi:981 #, no-wrap msgid "make check\n" msgstr "make check\n" #. type: Plain text -#: guix-git/doc/guix.texi:976 +#: guix-git/doc/guix.texi:988 msgid "Test cases can run in parallel: you can use the @code{-j} option of GNU@tie{}make to speed things up. The first run may take a few minutes on a recent machine; subsequent runs will be faster because the store that is created for test purposes will already have various things in cache." msgstr "Les cas de tests peuvent être lancés en parallèle : vous pouvez utiliser l'option @code{-j} de GNU@tie{}make pour accélérer les choses. Le premier lancement peut prendre plusieurs minutes sur une machine récente ; les lancements suivants seront plus rapides car le dépôt créé pour les tests aura déjà plusieurs choses en cache." #. type: Plain text -#: guix-git/doc/guix.texi:979 +#: guix-git/doc/guix.texi:991 msgid "It is also possible to run a subset of the tests by defining the @code{TESTS} makefile variable as in this example:" msgstr "Il est aussi possible de lancer un sous-ensemble des tests en définissant la variable makefile @code{TESTS} comme dans cet exemple :" #. type: example -#: guix-git/doc/guix.texi:982 +#: guix-git/doc/guix.texi:994 #, no-wrap msgid "make check TESTS=\"tests/store.scm tests/cpio.scm\"\n" msgstr "make check TESTS=\"tests/store.scm tests/cpio.scm\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:987 +#: guix-git/doc/guix.texi:999 msgid "By default, tests results are displayed at a file level. In order to see the details of every individual test cases, it is possible to define the @code{SCM_LOG_DRIVER_FLAGS} makefile variable as in this example:" msgstr "Par défaut, les résultats des tests sont affichés au niveau du fichier. Pour voir les détails de chaque cas de test individuel, il est possible de définir la variable makefile @code{SCM_LOG_DRIVER_FLAGS} comme dans cet exemple :" #. type: example -#: guix-git/doc/guix.texi:990 +#: guix-git/doc/guix.texi:1002 #, no-wrap msgid "make check TESTS=\"tests/base64.scm\" SCM_LOG_DRIVER_FLAGS=\"--brief=no\"\n" msgstr "make check TESTS=\"tests/base64.scm\" SCM_LOG_DRIVER_FLAGS=\"--brief=no\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:998 +#: guix-git/doc/guix.texi:1010 msgid "The underlying SRFI 64 custom Automake test driver used for the 'check' test suite (located at @file{build-aux/test-driver.scm}) also allows selecting which test cases to run at a finer level, via its @option{--select} and @option{--exclude} options. Here's an example, to run all the test cases from the @file{tests/packages.scm} test file whose names start with ``transaction-upgrade-entry'':" msgstr "Le pilote de tests Automake personnalisé avec SRFI 64 utilisé pour la suite de tests « check » (située dans @file{build-aux/test-driver.scm}) permet aussi de choisir les cas de test à lancer à plus fine granularité, via ses options @option{--select} et @option{--exclude}. Voici un exemple, pour lancer tous les cas de tests du fichier de tests @file{tests/packages.scm} dont les noms commencent par « transaction-upgrade-entry » :" #. type: example -#: guix-git/doc/guix.texi:1002 +#: guix-git/doc/guix.texi:1014 #, no-wrap msgid "" "export SCM_LOG_DRIVER_FLAGS=\"--select=^transaction-upgrade-entry\"\n" @@ -6005,114 +6080,114 @@ msgstr "" "make check TESTS=\"tests/packages.scm\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:1008 +#: guix-git/doc/guix.texi:1020 msgid "Those wishing to inspect the results of failed tests directly from the command line can add the @option{--errors-only=yes} option to the @code{SCM_LOG_DRIVER_FLAGS} makefile variable and set the @code{VERBOSE} Automake makefile variable, as in:" msgstr "Pour celles et ceux qui veulent inspecter les résultats des tests échoués directement depuis la ligne de commande, il est possible d'ajouter l'option @option{--errors-only=yes} à la variable @code{SCM_LOG_DRIVER_FLAGS} du Makefile et d'initialiser la variable Automake du Makefile @code{VERBOSE}, de cette manière :" #. type: example -#: guix-git/doc/guix.texi:1011 +#: guix-git/doc/guix.texi:1023 #, no-wrap msgid "make check SCM_LOG_DRIVER_FLAGS=\"--brief=no --errors-only=yes\" VERBOSE=1\n" msgstr "make check SCM_LOG_DRIVER_FLAGS=\"--brief=no --errors-only=yes\" VERBOSE=1\n" #. type: Plain text -#: guix-git/doc/guix.texi:1016 +#: guix-git/doc/guix.texi:1028 msgid "The @option{--show-duration=yes} option can be used to print the duration of the individual test cases, when used in combination with @option{--brief=no}:" msgstr "L'option @option{--show-duration=yes} peut être utilisée pour afficher la durée des cas de test individuels, en combinaison avec @option{--brief=no} :" #. type: example -#: guix-git/doc/guix.texi:1019 +#: guix-git/doc/guix.texi:1031 #, no-wrap msgid "make check SCM_LOG_DRIVER_FLAGS=\"--brief=no --show-duration=yes\"\n" msgstr "make check SCM_LOG_DRIVER_FLAGS=\"--brief=no --show-duration=yes\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:1023 +#: guix-git/doc/guix.texi:1035 msgid "@xref{Parallel Test Harness,,,automake,GNU Automake} for more information about the Automake Parallel Test Harness." msgstr "@xref{Parallel Test Harness,,,automake,GNU Automake} pour plus d'information sur le banc de tests parallèle d'Automake." #. type: Plain text -#: guix-git/doc/guix.texi:1028 +#: guix-git/doc/guix.texi:1040 msgid "Upon failure, please email @email{bug-guix@@gnu.org} and attach the @file{test-suite.log} file. Please specify the Guix version being used as well as version numbers of the dependencies (@pxref{Requirements}) in your message." msgstr "Après un échec, envoyez un courriel à @email{bug-guix@@gnu.org} et attachez le fichier @file{test-suite.log}. Précisez la version de Guix utilisée ainsi que les numéros de version de ses dépendances (@pxref{Requirements}) dans votre message." #. type: Plain text -#: guix-git/doc/guix.texi:1032 +#: guix-git/doc/guix.texi:1044 msgid "Guix also comes with a whole-system test suite that tests complete Guix System instances. It can only run on systems where Guix is already installed, using:" msgstr "Guix possède aussi une suite de tests de systèmes complets qui test des instances complètes du système Guix. Elle ne peut être lancée qui sur un système où Guix est déjà installé, avec :" #. type: example -#: guix-git/doc/guix.texi:1035 +#: guix-git/doc/guix.texi:1047 #, no-wrap msgid "make check-system\n" msgstr "make check-system\n" #. type: Plain text -#: guix-git/doc/guix.texi:1039 +#: guix-git/doc/guix.texi:1051 msgid "or, again, by defining @code{TESTS} to select a subset of tests to run:" msgstr "ou, de nouveau, en définissant @code{TESTS} pour choisir un sous-ensemble des tests à lancer :" #. type: example -#: guix-git/doc/guix.texi:1042 +#: guix-git/doc/guix.texi:1054 #, no-wrap msgid "make check-system TESTS=\"basic mcron\"\n" msgstr "make check-system TESTS=\"basic mcron\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:1050 +#: guix-git/doc/guix.texi:1062 msgid "These system tests are defined in the @code{(gnu tests @dots{})} modules. They work by running the operating systems under test with lightweight instrumentation in a virtual machine (VM). They can be computationally intensive or rather cheap, depending on whether substitutes are available for their dependencies (@pxref{Substitutes}). Some of them require a lot of storage space to hold VM images." msgstr "Ces tests systèmes sont définis dans les modules @code{(gnu tests @dots{})}. Ils fonctionnent en lançant les systèmes d'exploitation sous test avec une instrumentation légère dans une machine virtuelle (VM). Ils peuvent être intenses en terme de calculs ou plutôt rapides en fonction de la disponibilité des substituts de leurs dépendances (@pxref{Substituts}). Certains requièrent beaucoup d'espace disque pour contenir les images des VM@." #. type: Plain text -#: guix-git/doc/guix.texi:1053 +#: guix-git/doc/guix.texi:1065 msgid "Again in case of test failures, please send @email{bug-guix@@gnu.org} all the details." msgstr "De nouveau, en cas d'échec, envoyez tous les détails à @email{bug-guix@@gnu.org}." #. type: cindex -#: guix-git/doc/guix.texi:1057 +#: guix-git/doc/guix.texi:1069 #, no-wrap msgid "daemon" msgstr "démon" #. type: Plain text -#: guix-git/doc/guix.texi:1065 +#: guix-git/doc/guix.texi:1077 msgid "Operations such as building a package or running the garbage collector are all performed by a specialized process, the @dfn{build daemon}, on behalf of clients. Only the daemon may access the store and its associated database. Thus, any operation that manipulates the store goes through the daemon. For instance, command-line tools such as @command{guix package} and @command{guix build} communicate with the daemon (@i{via} remote procedure calls) to instruct it what to do." msgstr "Les opérations comme la construction d'un paquet ou le lancement du ramasse-miettes sont toutes effectuées par un processus spécialisé, le @dfn{démon de construction}, pour le compte des clients. Seul le démon peut accéder au dépôt et à sa base de données associée. Ainsi, toute opération manipulant le dépôt passe par le démon. Par exemple, les outils en ligne de commande comme @command{guix package} et @command{guix build} communiquent avec le démon (@i{via} des appels de procédures distantes) pour lui dire quoi faire." #. type: Plain text -#: guix-git/doc/guix.texi:1069 +#: guix-git/doc/guix.texi:1081 msgid "The following sections explain how to prepare the build daemon's environment. See also @ref{Substitutes}, for information on how to allow the daemon to download pre-built binaries." msgstr "Les sections suivantes expliquent comment préparer l'environnement du démon de construction. Voir aussi @ref{Substituts} pour apprendre comment permettre le téléchargement de binaires pré-construits." #. type: cindex -#: guix-git/doc/guix.texi:1079 guix-git/doc/guix.texi:1542 +#: guix-git/doc/guix.texi:1091 guix-git/doc/guix.texi:1559 #, no-wrap msgid "build environment" msgstr "environnement de construction" #. type: Plain text -#: guix-git/doc/guix.texi:1087 +#: guix-git/doc/guix.texi:1099 msgid "In a standard multi-user setup, Guix and its daemon---the @command{guix-daemon} program---are installed by the system administrator; @file{/gnu/store} is owned by @code{root} and @command{guix-daemon} runs as @code{root}. Unprivileged users may use Guix tools to build packages or otherwise access the store, and the daemon will do it on their behalf, ensuring that the store is kept in a consistent state, and allowing built packages to be shared among users." msgstr "Dans une installation standard multi-utilisateur·rice·s, Guix et son démon — le programme @command{guix-daemon} — sont installés par la personne qui administre le système ; @file{/gnu/store} appartient à @code{root} et @command{guix-daemon} est lancé en @code{root}. Les utilisateur·rice·s non-privilégié·e·s peuvent utiliser les outils Guix pour construire des paquets ou accéder au dépôt et le démon le fera pour leur compte en s'assurant que le dépôt garde un état cohérent et permet le partage des paquets déjà construits entre les utilisateur·rice·s." #. type: cindex -#: guix-git/doc/guix.texi:1088 +#: guix-git/doc/guix.texi:1100 #, no-wrap msgid "build users" msgstr "comptes de construction" #. type: Plain text -#: guix-git/doc/guix.texi:1099 +#: guix-git/doc/guix.texi:1111 msgid "When @command{guix-daemon} runs as @code{root}, you may not want package build processes themselves to run as @code{root} too, for obvious security reasons. To avoid that, a special pool of @dfn{build users} should be created for use by build processes started by the daemon. These build users need not have a shell and a home directory: they will just be used when the daemon drops @code{root} privileges in build processes. Having several such users allows the daemon to launch distinct build processes under separate UIDs, which guarantees that they do not interfere with each other---an essential feature since builds are regarded as pure functions (@pxref{Introduction})." msgstr "Alors que @command{guix-daemon} tourne en @code{root}, vous n'avez pas forcément envie que les processus de construction de paquets tournent aussi en @code{root}, pour des raisons de sécurité évidentes. Pour éviter cela, vous devriez créer une réserve spéciale de @dfn{comptes de construction} que les processus de construction démarrés par le démon utiliseront. Ces comptes de construction n'ont pas besoin d'un shell ou d'un répertoire personnel ; ils seront seulement utilisés quand le démon délaissera ses privilèges @code{root} dans les processus de construction. En ayant plusieurs de ces comptes, vous permettez au démon de lancer des processus de construction distincts sous des UID différent, ce qui garanti qu'aucune interférence n'ait lieu entre les uns et les autres — une fonctionnalité essentielle puisque les constructions sont supposées être des fonctions pures (@pxref{Introduction})." #. type: Plain text -#: guix-git/doc/guix.texi:1102 +#: guix-git/doc/guix.texi:1114 msgid "On a GNU/Linux system, a build user pool may be created like this (using Bash syntax and the @code{shadow} commands):" msgstr "Sur un système GNU/Linux, on peut créer une réserve de comptes de construction comme ceci (avec la syntaxe Bash et les commandes @code{shadow}) :" #. type: example -#: guix-git/doc/guix.texi:1114 +#: guix-git/doc/guix.texi:1126 #, no-wrap msgid "" "# groupadd --system guixbuild\n" @@ -6134,139 +6209,144 @@ msgstr "" " done\n" #. type: Plain text -#: guix-git/doc/guix.texi:1124 +#: guix-git/doc/guix.texi:1136 msgid "The number of build users determines how many build jobs may run in parallel, as specified by the @option{--max-jobs} option (@pxref{Invoking guix-daemon, @option{--max-jobs}}). To use @command{guix system vm} and related commands, you may need to add the build users to the @code{kvm} group so they can access @file{/dev/kvm}, using @code{-G guixbuild,kvm} instead of @code{-G guixbuild} (@pxref{Invoking guix system})." msgstr "Le nombre de comptes de construction détermine le nombre de tâches de constructions qui peuvent tourner en parallèle, tel que spécifié par l'option @option{--max-jobs} (@pxref{Invoking guix-daemon, @option{--max-jobs}}). Pour utiliser @command{guix system vm} et les commandes liées, vous devrez ajouter les comptes de construction au groupe @code{kvm} pour qu'ils puissent accéder à @file{/dev/kvm} avec @code{-G guixbuild,kvm} plutôt que @code{-G guixbuild} (@pxref{Invoking guix system})." #. type: Plain text -#: guix-git/doc/guix.texi:1133 +#: guix-git/doc/guix.texi:1145 msgid "The @code{guix-daemon} program may then be run as @code{root} with the following command@footnote{If your machine uses the systemd init system, dropping the @file{@var{prefix}/lib/systemd/system/guix-daemon.service} file in @file{/etc/systemd/system} will ensure that @command{guix-daemon} is automatically started. Similarly, if your machine uses the Upstart init system, drop the @file{@var{prefix}/lib/upstart/system/guix-daemon.conf} file in @file{/etc/init}.}:" msgstr "Le programme @code{guix-daemon} peut ensuite être lancé en @code{root} avec la commande suivante@footnote{Si votre machine utilise le système d'initialisation systemd, copiez le fichier @file{@var{prefix}/lib/systemd/system/guix-daemon.service} dans @file{/etc/systemd/system} pour vous assurer que @command{guix-daemon} est démarré automatiquement. De même, si votre machine utilise le système d'initialisation Upstart, copiez le fichier @file{@var{prefix}/lib/upstart/system/guix-daemon.conf} dans @file{/etc/init}.} :" #. type: example -#: guix-git/doc/guix.texi:1136 guix-git/doc/guix.texi:1535 +#: guix-git/doc/guix.texi:1148 guix-git/doc/guix.texi:1552 #, no-wrap msgid "# guix-daemon --build-users-group=guixbuild\n" msgstr "# guix-daemon --build-users-group=guixbuild\n" #. type: cindex -#: guix-git/doc/guix.texi:1138 guix-git/doc/guix.texi:1540 +#: guix-git/doc/guix.texi:1150 guix-git/doc/guix.texi:1557 #, no-wrap msgid "chroot" msgstr "chroot" #. type: Plain text -#: guix-git/doc/guix.texi:1143 +#: guix-git/doc/guix.texi:1155 msgid "This way, the daemon starts build processes in a chroot, under one of the @code{guixbuilder} users. On GNU/Linux, by default, the chroot environment contains nothing but:" msgstr "De cette façon, le démon démarre les processus de construction dans un chroot, sous un des comptes @code{guixbuilder}. Sur GNU/Linux par défaut, l'environnement chroot ne contient rien d'autre que :" #. type: itemize -#: guix-git/doc/guix.texi:1151 +#: guix-git/doc/guix.texi:1163 msgid "a minimal @code{/dev} directory, created mostly independently from the host @code{/dev}@footnote{``Mostly'', because while the set of files that appear in the chroot's @code{/dev} is fixed, most of these files can only be created if the host has them.};" msgstr "un répertoire @code{/dev} minimal, créé presque indépendamment du @code{/dev} de l'hôte@footnote{« presque », parce que même si l'ensemble des fichiers qui apparaissent dans le @code{/dev} du chroot sont déterminés à l'avance, la plupart de ces fichiers ne peut pas être créée si l'hôte ne les a pas.} ;" #. type: itemize -#: guix-git/doc/guix.texi:1155 +#: guix-git/doc/guix.texi:1167 msgid "the @code{/proc} directory; it only shows the processes of the container since a separate PID name space is used;" msgstr "le répertoire @code{/proc} ; il ne montre que les processus du conteneur car on utilise une espace de nom séparé pour les PID ;" #. type: itemize -#: guix-git/doc/guix.texi:1159 +#: guix-git/doc/guix.texi:1171 msgid "@file{/etc/passwd} with an entry for the current user and an entry for user @file{nobody};" msgstr "@file{/etc/passwd} avec une entrée pour le compte actuel et une entrée pour le compte @file{nobody} ;" #. type: itemize -#: guix-git/doc/guix.texi:1162 +#: guix-git/doc/guix.texi:1174 msgid "@file{/etc/group} with an entry for the user's group;" msgstr "@file{/etc/group} avec une entrée pour le groupe de ce compte ;" #. type: itemize -#: guix-git/doc/guix.texi:1166 +#: guix-git/doc/guix.texi:1178 msgid "@file{/etc/hosts} with an entry that maps @code{localhost} to @code{127.0.0.1};" msgstr "@file{/etc/hosts} avec une entrée qui fait correspondre @code{localhost} à @code{127.0.0.1} ;" #. type: itemize -#: guix-git/doc/guix.texi:1169 +#: guix-git/doc/guix.texi:1181 msgid "a writable @file{/tmp} directory." msgstr "un répertoire @file{/tmp} inscriptible." #. type: Plain text -#: guix-git/doc/guix.texi:1178 +#: guix-git/doc/guix.texi:1187 +msgid "The chroot does not contain a @file{/home} directory, and the @env{HOME} environment variable is set to the non-existent @file{/homeless-shelter}. This helps to highlight inappropriate uses of @env{HOME} in the build scripts of packages." +msgstr "Le chroot ne contient pas de dossier @file{/home}, et la variable d'environnement @env{HOME} est initialisée au répertoire @file{/homeless-shelter} inexistant. Cela permet de mettre en valeur les utilisations inappropriées de @env{HOME} dans les scripts de construction des paquets." + +#. type: Plain text +#: guix-git/doc/guix.texi:1195 msgid "You can influence the directory where the daemon stores build trees @i{via} the @env{TMPDIR} environment variable. However, the build tree within the chroot is always called @file{/tmp/guix-build-@var{name}.drv-0}, where @var{name} is the derivation name---e.g., @code{coreutils-8.24}. This way, the value of @env{TMPDIR} does not leak inside build environments, which avoids discrepancies in cases where build processes capture the name of their build tree." msgstr "Vous pouvez influencer le répertoire où le démon stocke les arbres de construction @i{via} la variable d'environnement @code{TMPDIR}. Cependant, l'arbre de construction dans le chroot sera toujours appelé @file{/tmp/guix-build-@var{nom}.drv-0}, où @var{nom} est le nom de la dérivation — p.ex., @: @code{coreutils-8.24}. De cette façon, la valeur de @code{TMPDIR} ne fuite pas à l'intérieur des environnements de construction, ce qui évite des différences lorsque le processus de construction retient le nom de leur répertoire de construction." #. type: vindex -#: guix-git/doc/guix.texi:1179 guix-git/doc/guix.texi:4007 +#: guix-git/doc/guix.texi:1196 guix-git/doc/guix.texi:4025 #, no-wrap msgid "http_proxy" msgstr "http_proxy" #. type: vindex -#: guix-git/doc/guix.texi:1180 guix-git/doc/guix.texi:4008 +#: guix-git/doc/guix.texi:1197 guix-git/doc/guix.texi:4026 #, no-wrap msgid "https_proxy" msgstr "https_proxy" #. type: Plain text -#: guix-git/doc/guix.texi:1185 +#: guix-git/doc/guix.texi:1202 msgid "The daemon also honors the @env{http_proxy} and @env{https_proxy} environment variables for HTTP and HTTPS downloads it performs, be it for fixed-output derivations (@pxref{Derivations}) or for substitutes (@pxref{Substitutes})." msgstr "Le démon prend en compte aussi la variable d'environnement @code{https_proxy} pour ses téléchargements HTTP et HTTPS, que ce soit pour les dérivations à sortie fixes (@pxref{Derivations}) ou pour les substituts (@pxref{Substituts})." #. type: Plain text -#: guix-git/doc/guix.texi:1193 +#: guix-git/doc/guix.texi:1210 msgid "If you are installing Guix as an unprivileged user, it is still possible to run @command{guix-daemon} provided you pass @option{--disable-chroot}. However, build processes will not be isolated from one another, and not from the rest of the system. Thus, build processes may interfere with each other, and may access programs, libraries, and other files available on the system---making it much harder to view them as @emph{pure} functions." msgstr "Si vous installez Guix en tant qu'utilisateur·rice non privilégié·ée, il est toujours possible d'exécuter @command{guix-daemon} à condition de passer @option{--disable-chroot}. Cependant, les processus de compilation ne seront pas isolés les uns des autres, ni du reste du système. Ainsi, les processus de compilation peuvent interférer les uns avec les autres, et peuvent accéder à des programmes, des bibliothèques et d'autres fichiers disponibles sur le système - ce qui rend beaucoup plus difficile de les considérer comme des fonctions @emph{pures}." #. type: subsection -#: guix-git/doc/guix.texi:1196 +#: guix-git/doc/guix.texi:1213 #, no-wrap msgid "Using the Offload Facility" msgstr "Utiliser le dispositif de déchargement" #. type: cindex -#: guix-git/doc/guix.texi:1198 guix-git/doc/guix.texi:1601 +#: guix-git/doc/guix.texi:1215 guix-git/doc/guix.texi:1618 #, no-wrap msgid "offloading" msgstr "déchargement" #. type: cindex -#: guix-git/doc/guix.texi:1199 +#: guix-git/doc/guix.texi:1216 #, no-wrap msgid "build hook" msgstr "crochet de construction" #. type: Plain text -#: guix-git/doc/guix.texi:1218 +#: guix-git/doc/guix.texi:1235 msgid "When desired, the build daemon can @dfn{offload} derivation builds to other machines running Guix, using the @code{offload} @dfn{build hook}@footnote{This feature is available only when @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH} is present.}. When that feature is enabled, a list of user-specified build machines is read from @file{/etc/guix/machines.scm}; every time a build is requested, for instance via @code{guix build}, the daemon attempts to offload it to one of the machines that satisfy the constraints of the derivation, in particular its system types---e.g., @code{x86_64-linux}. A single machine can have multiple system types, either because its architecture natively supports it, via emulation (@pxref{transparent-emulation-qemu, Transparent Emulation with QEMU}), or both. Missing prerequisites for the build are copied over SSH to the target machine, which then proceeds with the build; upon success the output(s) of the build are copied back to the initial machine. The offload facility comes with a basic scheduler that attempts to select the best machine. The best machine is chosen among the available machines based on criteria such as:" msgstr "Si vous le souhaitez, le démon de construction peut @dfn{décharger} des constructions de dérivation sur d'autres machines Guix avec le @dfn{crochet de construction} @code{offload}@footnote{Cette fonctionnalité n'est disponible que si @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH} est présent.}. Lorsque cette fonctionnalité est activée, Guix lit une liste de machines de constructions spécifiée par l'utilisateur·rice dans @file{/etc/guix/machines.scm} ; à chaque fois qu'une construction est demandée, par exemple par @code{guix build}, le démon essaie de la décharger sur une des machines qui satisfont les contraintes de la dérivation, en particulier le type de système, p.@: ex.@: @file{x86_64-linux}. Une même machine peut avoir plusieurs types de systèmes, soit parce que son architecture le supporte nativement, soit par émulation (@pxref{transparent-emulation-qemu, Émulation transparente avec QEMU}), soit les deux. Les prérequis manquants pour la construction sont copiés par SSH sur la machine de construction qui procède ensuite à la construction ; si elle réussit, les sorties de la construction sont copiés vers la machine de départ. Le dispsitif de déchargement est dotée d'un scheduler de base qui tente de sélectionner la meilleure machine. La meilleure machine est choisie parmi les machines disponibles sur la base de critères tels que :" #. type: enumerate -#: guix-git/doc/guix.texi:1224 +#: guix-git/doc/guix.texi:1241 msgid "The availability of a build slot. A build machine can have as many build slots (connections) as the value of the @code{parallel-builds} field of its @code{build-machine} object." msgstr "La disponibilité d'un créneau de construction. Une machine de construction peut avoir autant de slots de construction (connexions) que la valeur du champ @code{parallel-builds} de son objet @code{build-machine}." #. type: enumerate -#: guix-git/doc/guix.texi:1228 +#: guix-git/doc/guix.texi:1245 msgid "Its relative speed, as defined via the @code{speed} field of its @code{build-machine} object." msgstr "Sa vitesse relative, telle que définie dans le champ @code{speed} de son objet @code{build-machine}." #. type: enumerate -#: guix-git/doc/guix.texi:1233 +#: guix-git/doc/guix.texi:1250 msgid "Its load. The normalized machine load must be lower than a threshold value, configurable via the @code{overload-threshold} field of its @code{build-machine} object." msgstr "Sa charge. La charge normalisée de la machine doit être inférieure à une valeur seuil, configurable via le champ @code{overload-threshold} de son objet @code{build-machine}." #. type: enumerate -#: guix-git/doc/guix.texi:1236 +#: guix-git/doc/guix.texi:1253 msgid "Disk space availability. More than a 100 MiB must be available." msgstr "Disponibilité de l'espace disque. Plus de 100 Mio doivent être disponibles." #. type: Plain text -#: guix-git/doc/guix.texi:1239 +#: guix-git/doc/guix.texi:1256 msgid "The @file{/etc/guix/machines.scm} file typically looks like this:" msgstr "Le fichier @file{/etc/guix/machines.scm} ressemble typiquement à cela :" #. type: lisp -#: guix-git/doc/guix.texi:1247 +#: guix-git/doc/guix.texi:1264 #, no-wrap msgid "" "(list (build-machine\n" @@ -6286,16 +6366,8 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:1253 -#, fuzzy, no-wrap -#| msgid "" -#| "(list (build-machine\n" -#| " (name \"eightysix.example.org\")\n" -#| " (systems (list \"x86_64-linux\" \"i686-linux\"))\n" -#| " (host-key \"ssh-ed25519 AAAAC3Nza@dots{}\")\n" -#| " (user \"bob\")\n" -#| " (speed 2.)) ;incredibly fast!\n" -#| "\n" +#: guix-git/doc/guix.texi:1270 +#, no-wrap msgid "" " (build-machine\n" " (name \"armeight.example.org\")\n" @@ -6304,116 +6376,118 @@ msgid "" " (user \"alice\")\n" "\n" msgstr "" -"(list (build-machine\n" -" (name \"eightysix.example.org\")\n" -" (system \"x86_64-linux\")\n" -" (host-key \"ssh-ed25519 AAAAC3Nza@dots{}\")\n" -" (user \"bob\")\n" -" (speed 2.)) ;incroyablement rapide !\n" +" (build-machine\n" +" (name \"armeight.example.org\")\n" +" (systems (list \"aarch64-linux\"))\n" +" (host-key \"ssh-rsa AAAAB3Nza@dots{}\")\n" +" (user \"alice\")\n" "\n" #. type: lisp -#: guix-git/doc/guix.texi:1257 +#: guix-git/doc/guix.texi:1274 #, no-wrap msgid "" " ;; Remember 'guix offload' is spawned by\n" " ;; 'guix-daemon' as root.\n" " (private-key \"/root/.ssh/identity-for-guix\")))\n" msgstr "" +" ;; Rappelez-vous que « guix offload » est démarré par\n" +" ;; « guix-daemon » en root.\n" +" (private-key \"/root/.ssh/identité-pour-guix\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:1263 +#: guix-git/doc/guix.texi:1280 msgid "In the example above we specify a list of two build machines, one for the @code{x86_64} and @code{i686} architectures and one for the @code{aarch64} architecture." msgstr "Dans l'exemple ci-dessus nous spécifions une liste de deux machines de construction, une pour l'architecture @code{x86_64} et @code{i686}et une pour l'architecture @code{aarch64}." #. type: Plain text -#: guix-git/doc/guix.texi:1272 +#: guix-git/doc/guix.texi:1289 msgid "In fact, this file is---not surprisingly!---a Scheme file that is evaluated when the @code{offload} hook is started. Its return value must be a list of @code{build-machine} objects. While this example shows a fixed list of build machines, one could imagine, say, using DNS-SD to return a list of potential build machines discovered in the local network (@pxref{Introduction, Guile-Avahi,, guile-avahi, Using Avahi in Guile Scheme Programs}). The @code{build-machine} data type is detailed below." msgstr "En fait, ce fichier est — et ça ne devrait pas vous surprendre ! — un fichier Scheme qui est évalué au démarrage du crochet @code{offload}. Sa valeur de retour doit être une liste d'objets @code{build-machine}. Même si cet exemple montre une liste fixée de machines de construction, on pourrait imaginer par exemple utiliser DNS-SD pour renvoyer une liste de machines de constructions potentielles découvertes sur le réseau local (@pxref{Introduction, Guile-Avahi,, guile-avahi, Using Avahi in Guile Scheme Programs}). Le type de données @code{build-machine} est détaillé plus bas." #. type: deftp -#: guix-git/doc/guix.texi:1273 +#: guix-git/doc/guix.texi:1290 #, no-wrap msgid "{Data Type} build-machine" msgstr "{Type de données} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:1276 +#: guix-git/doc/guix.texi:1293 msgid "This data type represents build machines to which the daemon may offload builds. The important fields are:" msgstr "Ce type de données représente les machines de construction sur lesquelles le démon peut décharger des constructions. Les champs importants sont :" #. type: item -#: guix-git/doc/guix.texi:1279 guix-git/doc/guix.texi:7113 -#: guix-git/doc/guix.texi:15446 guix-git/doc/guix.texi:15545 -#: guix-git/doc/guix.texi:15786 guix-git/doc/guix.texi:17314 -#: guix-git/doc/guix.texi:17935 guix-git/doc/guix.texi:18209 -#: guix-git/doc/guix.texi:21269 guix-git/doc/guix.texi:24179 -#: guix-git/doc/guix.texi:25568 guix-git/doc/guix.texi:26180 -#: guix-git/doc/guix.texi:26533 guix-git/doc/guix.texi:26574 -#: guix-git/doc/guix.texi:28735 guix-git/doc/guix.texi:31072 -#: guix-git/doc/guix.texi:31092 guix-git/doc/guix.texi:33766 -#: guix-git/doc/guix.texi:33783 guix-git/doc/guix.texi:34320 -#: guix-git/doc/guix.texi:36095 guix-git/doc/guix.texi:36422 +#: guix-git/doc/guix.texi:1296 guix-git/doc/guix.texi:7157 +#: guix-git/doc/guix.texi:15803 guix-git/doc/guix.texi:15902 +#: guix-git/doc/guix.texi:16143 guix-git/doc/guix.texi:17676 +#: guix-git/doc/guix.texi:18297 guix-git/doc/guix.texi:18571 +#: guix-git/doc/guix.texi:21631 guix-git/doc/guix.texi:24541 +#: guix-git/doc/guix.texi:25905 guix-git/doc/guix.texi:26517 +#: guix-git/doc/guix.texi:26870 guix-git/doc/guix.texi:26911 +#: guix-git/doc/guix.texi:29072 guix-git/doc/guix.texi:31437 +#: guix-git/doc/guix.texi:31457 guix-git/doc/guix.texi:34203 +#: guix-git/doc/guix.texi:34220 guix-git/doc/guix.texi:34759 +#: guix-git/doc/guix.texi:36585 guix-git/doc/guix.texi:36912 #, no-wrap msgid "name" msgstr "name" #. type: table -#: guix-git/doc/guix.texi:1281 +#: guix-git/doc/guix.texi:1298 msgid "The host name of the remote machine." msgstr "Le nom d'hôte de la machine distante." #. type: item -#: guix-git/doc/guix.texi:1282 +#: guix-git/doc/guix.texi:1299 #, no-wrap msgid "systems" msgstr "systèmes" #. type: table -#: guix-git/doc/guix.texi:1285 +#: guix-git/doc/guix.texi:1302 msgid "The system types the remote machine supports---e.g., @code{(list \"x86_64-linux\" \"i686-linux\")}." msgstr "Le type de système de la machine distante, p. ex., @code{(list \"x86_64-linux\" \"i686-linux\")}." #. type: code{#1} -#: guix-git/doc/guix.texi:1286 guix-git/doc/guix.texi:17945 +#: guix-git/doc/guix.texi:1303 guix-git/doc/guix.texi:18307 #, no-wrap msgid "user" msgstr "user" #. type: table -#: guix-git/doc/guix.texi:1290 +#: guix-git/doc/guix.texi:1307 msgid "The user account to use when connecting to the remote machine over SSH. Note that the SSH key pair must @emph{not} be passphrase-protected, to allow non-interactive logins." msgstr "Le compte à utiliser lors de la connexion à la machine distante par SSH@. Remarquez que la paire de clef SSH ne doit @emph{pas} être protégée par mot de passe pour permettre des connexions non-interactives." #. type: item -#: guix-git/doc/guix.texi:1291 +#: guix-git/doc/guix.texi:1308 #, no-wrap msgid "host-key" msgstr "host-key" #. type: table -#: guix-git/doc/guix.texi:1295 +#: guix-git/doc/guix.texi:1312 msgid "This must be the machine's SSH @dfn{public host key} in OpenSSH format. This is used to authenticate the machine when we connect to it. It is a long string that looks like this:" msgstr "Cela doit être la @dfn{clef d'hôte SSH publique} de la machine au format OpenSSH@. Elle est utilisée pour authentifier la machine lors de la connexion. C'est une longue chaîne qui ressemble à cela :" #. type: example -#: guix-git/doc/guix.texi:1298 +#: guix-git/doc/guix.texi:1315 #, no-wrap msgid "ssh-ed25519 AAAAC3NzaC@dots{}mde+UhL hint@@example.org\n" msgstr "ssh-ed25519 AAAAC3NzaC@dots{}mde+UhL hint@@example.org\n" #. type: table -#: guix-git/doc/guix.texi:1303 +#: guix-git/doc/guix.texi:1320 msgid "If the machine is running the OpenSSH daemon, @command{sshd}, the host key can be found in a file such as @file{/etc/ssh/ssh_host_ed25519_key.pub}." msgstr "Si la machine utilise le démon OpenSSH, @command{sshd}, la clef d'hôte se trouve dans un fichier comme @file{/etc/ssh/ssh_host_ed25519_key.pub}." #. type: table -#: guix-git/doc/guix.texi:1308 +#: guix-git/doc/guix.texi:1325 msgid "If the machine is running the SSH daemon of GNU@tie{}lsh, @command{lshd}, the host key is in @file{/etc/lsh/host-key.pub} or a similar file. It can be converted to the OpenSSH format using @command{lsh-export-key} (@pxref{Converting keys,,, lsh, LSH Manual}):" msgstr "Si la machine utilise le démon SSH de GNU@tie{}lsh, la clef d'hôte est dans @file{/etc/lsh/host-key.pub} ou un fichier similaire. Elle peut être convertie au format OpenSSH avec @command{lsh-export-key} (@pxref{Converting keys,,, lsh, LSH Manual}) :" #. type: example -#: guix-git/doc/guix.texi:1312 +#: guix-git/doc/guix.texi:1329 #, no-wrap msgid "" "$ lsh-export-key --openssh < /etc/lsh/host-key.pub\n" @@ -6423,674 +6497,674 @@ msgstr "" "ssh-rsa AAAAB3NzaC1yc2EAAAAEOp8FoQAAAQEAs1eB46LV@dots{}\n" #. type: deftp -#: guix-git/doc/guix.texi:1317 +#: guix-git/doc/guix.texi:1334 msgid "A number of optional fields may be specified:" msgstr "Il y a un certain nombre de champs facultatifs que vous pouvez remplir :" #. type: item -#: guix-git/doc/guix.texi:1320 guix-git/doc/guix.texi:35581 +#: guix-git/doc/guix.texi:1337 guix-git/doc/guix.texi:36061 #, no-wrap msgid "@code{port} (default: @code{22})" msgstr "@code{port} (par défaut : @code{22})" #. type: table -#: guix-git/doc/guix.texi:1322 +#: guix-git/doc/guix.texi:1339 msgid "Port number of SSH server on the machine." msgstr "Numéro de port du serveur SSH sur la machine." #. type: item -#: guix-git/doc/guix.texi:1323 +#: guix-git/doc/guix.texi:1340 #, no-wrap msgid "@code{private-key} (default: @file{~root/.ssh/id_rsa})" msgstr "@code{private-key} (par défaut : @file{~root/.ssh/id_rsa})" #. type: table -#: guix-git/doc/guix.texi:1326 +#: guix-git/doc/guix.texi:1343 msgid "The SSH private key file to use when connecting to the machine, in OpenSSH format. This key must not be protected with a passphrase." msgstr "Le fichier de clef privée SSH à utiliser lors de la connexion à la machine, au format OpenSSH@. Cette clef ne doit pas être protégée par phrase de passe." #. type: table -#: guix-git/doc/guix.texi:1329 +#: guix-git/doc/guix.texi:1346 msgid "Note that the default value is the private key @emph{of the root account}. Make sure it exists if you use the default." msgstr "Remarquez que la valeur par défaut est la clef privée @emph{du compte root}. Assurez-vous qu'elle existe si vous utilisez la valeur par défaut." #. type: item -#: guix-git/doc/guix.texi:1330 +#: guix-git/doc/guix.texi:1347 #, no-wrap msgid "@code{compression} (default: @code{\"zlib@@openssh.com,zlib\"})" msgstr "@code{compression} (par défaut : @code{\"zlib@@openssh.com,zlib\"})" #. type: itemx -#: guix-git/doc/guix.texi:1331 +#: guix-git/doc/guix.texi:1348 #, no-wrap msgid "@code{compression-level} (default: @code{3})" msgstr "@code{compression-level} (par défaut : @code{3})" #. type: table -#: guix-git/doc/guix.texi:1333 +#: guix-git/doc/guix.texi:1350 msgid "The SSH-level compression methods and compression level requested." msgstr "Les méthodes de compression au niveau SSH et le niveau de compression demandé." #. type: table -#: guix-git/doc/guix.texi:1336 +#: guix-git/doc/guix.texi:1353 msgid "Note that offloading relies on SSH compression to reduce bandwidth usage when transferring files to and from build machines." msgstr "Remarquez que le déchargement utilise la compression SSH pour réduire la bande passante utilisée lors du transfert vers et depuis les machines de construction." #. type: item -#: guix-git/doc/guix.texi:1337 +#: guix-git/doc/guix.texi:1354 #, no-wrap msgid "@code{daemon-socket} (default: @code{\"/var/guix/daemon-socket/socket\"})" msgstr "@code{daemon-socket} (par défaut : @code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:1340 +#: guix-git/doc/guix.texi:1357 msgid "File name of the Unix-domain socket @command{guix-daemon} is listening to on that machine." msgstr "Le nom de fichier du socket Unix-domain sur lequel @command{guix-daemon} écoute sur cette machine." #. type: item -#: guix-git/doc/guix.texi:1341 +#: guix-git/doc/guix.texi:1358 #, no-wrap msgid "@code{overload-threshold} (default: @code{0.6})" msgstr "@code{overload-threshold} (par défaut : @code{0.6})" #. type: table -#: guix-git/doc/guix.texi:1347 +#: guix-git/doc/guix.texi:1364 msgid "The load threshold above which a potential offload machine is disregarded by the offload scheduler. The value roughly translates to the total processor usage of the build machine, ranging from 0.0 (0%) to 1.0 (100%). It can also be disabled by setting @code{overload-threshold} to @code{#f}." msgstr "Le seuil de charge au-dessus duquel une machine de déchargement potentielle est ignorée par le programme de déchargement. Cette valeur se traduit approximativement par l'utilisation totale du processeur de la machine de construction, allant de 0,0 (0%) à 1,0 (100%). Elle peut également être désactivée en réglant @code{overload-threshold} sur @code{#f}." #. type: item -#: guix-git/doc/guix.texi:1348 +#: guix-git/doc/guix.texi:1365 #, no-wrap msgid "@code{parallel-builds} (default: @code{1})" msgstr "@code{parallel-builds} (par défaut : @code{1})" #. type: table -#: guix-git/doc/guix.texi:1350 +#: guix-git/doc/guix.texi:1367 msgid "The number of builds that may run in parallel on the machine." msgstr "Le nombre de constructions qui peuvent tourner simultanément sur la machine." #. type: item -#: guix-git/doc/guix.texi:1351 +#: guix-git/doc/guix.texi:1368 #, no-wrap msgid "@code{speed} (default: @code{1.0})" msgstr "@code{speed} (par défaut : @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:1354 +#: guix-git/doc/guix.texi:1371 msgid "A ``relative speed factor''. The offload scheduler will tend to prefer machines with a higher speed factor." msgstr "Un « facteur de vitesse relatif ». L'ordonnanceur des constructions tendra à préférer les machines avec un plus grand facteur de vitesse." #. type: item -#: guix-git/doc/guix.texi:1355 +#: guix-git/doc/guix.texi:1372 #, no-wrap msgid "@code{features} (default: @code{'()})" msgstr "@code{features} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:1360 +#: guix-git/doc/guix.texi:1377 msgid "A list of strings denoting specific features supported by the machine. An example is @code{\"kvm\"} for machines that have the KVM Linux modules and corresponding hardware support. Derivations can request features by name, and they will be scheduled on matching build machines." msgstr "Une liste de chaînes qui contient les fonctionnalités spécifiques supportées par la machine. Un exemple est @code{\"kvm\"} pour les machines qui ont le module Linux KVM et le support matériel correspondant. Les dérivations peuvent demander des fonctionnalités par leur nom et seront orchestrées sur les machines de construction correspondantes." #. type: Plain text -#: guix-git/doc/guix.texi:1366 +#: guix-git/doc/guix.texi:1383 msgid "The @command{guix} command must be in the search path on the build machines. You can check whether this is the case by running:" msgstr "La commande @code{guix} doit être dans le chemin de recherche des machines de construction. Vous pouvez vérifier si c'est le cas en lançant :" #. type: example -#: guix-git/doc/guix.texi:1369 +#: guix-git/doc/guix.texi:1386 #, no-wrap msgid "ssh build-machine guix repl --version\n" msgstr "ssh build-machine guix repl --version\n" #. type: Plain text -#: guix-git/doc/guix.texi:1376 +#: guix-git/doc/guix.texi:1393 msgid "There is one last thing to do once @file{machines.scm} is in place. As explained above, when offloading, files are transferred back and forth between the machine stores. For this to work, you first need to generate a key pair on each machine to allow the daemon to export signed archives of files from the store (@pxref{Invoking guix archive}):" msgstr "Il reste une dernière chose à faire maintenant que @file{machines.scm} est en place. Comme expliqué ci-dessus, lors du déchargement les fichiers sont transférés entre les dépôts des machines. Pour que cela fonctionne, vous devez d'abord générer une paire de clef sur chaque machine pour permettre au démon d'exporter des archives signées des fichiers de son dépôt (@pxref{Invoking guix archive}) :" #. type: example -#: guix-git/doc/guix.texi:1379 guix-git/doc/guix.texi:35509 +#: guix-git/doc/guix.texi:1396 guix-git/doc/guix.texi:35965 #, no-wrap msgid "# guix archive --generate-key\n" msgstr "# guix archive --generate-key\n" #. type: Plain text -#: guix-git/doc/guix.texi:1384 +#: guix-git/doc/guix.texi:1401 msgid "Each build machine must authorize the key of the master machine so that it accepts store items it receives from the master:" msgstr "Chaque machine de construction doit autoriser la clef de la machine maîtresse pour qu'ils acceptent les éléments de dépôt de celle-ci :" #. type: example -#: guix-git/doc/guix.texi:1387 +#: guix-git/doc/guix.texi:1404 #, no-wrap msgid "# guix archive --authorize < master-public-key.txt\n" msgstr "# guix archive --authorize < master-public-key.txt\n" #. type: Plain text -#: guix-git/doc/guix.texi:1391 +#: guix-git/doc/guix.texi:1408 msgid "Likewise, the master machine must authorize the key of each build machine." msgstr "De même, la machine maîtresse doit autoriser les clefs de chaque machine de construction." #. type: Plain text -#: guix-git/doc/guix.texi:1397 +#: guix-git/doc/guix.texi:1414 msgid "All the fuss with keys is here to express pairwise mutual trust relations between the master and the build machines. Concretely, when the master receives files from a build machine (and @i{vice versa}), its build daemon can make sure they are genuine, have not been tampered with, and that they are signed by an authorized key." msgstr "Toute cette histoire de clefs permet d'exprimer la confiance mutuelle deux-à-deux entre le maître et les machines de construction. Concrètement, lorsque le maître reçoit des fichiers d'une machine de construction (et vice-versa), son démon de construction s'assure qu'ils sont authentiques, n'ont pas été modifiés par un tiers et qu'il sont signés par un clef autorisée." #. type: cindex -#: guix-git/doc/guix.texi:1398 +#: guix-git/doc/guix.texi:1415 #, no-wrap msgid "offload test" msgstr "test du déchargement" #. type: Plain text -#: guix-git/doc/guix.texi:1401 +#: guix-git/doc/guix.texi:1418 msgid "To test whether your setup is operational, run this command on the master node:" msgstr "Pour tester que votre paramétrage fonctionne, lancez cette commande sur le nœud maître :" #. type: example -#: guix-git/doc/guix.texi:1404 +#: guix-git/doc/guix.texi:1421 #, no-wrap msgid "# guix offload test\n" msgstr "# guix offload test\n" #. type: Plain text -#: guix-git/doc/guix.texi:1410 +#: guix-git/doc/guix.texi:1427 msgid "This will attempt to connect to each of the build machines specified in @file{/etc/guix/machines.scm}, make sure Guix is available on each machine, attempt to export to the machine and import from it, and report any error in the process." msgstr "Cela essaiera de se connecter à toutes les machines de construction spécifiées dans @file{/etc/guix/machines.scm}, s'assurera que Guix est disponible sur toutes les machines et tentera d'exporter vers la machine et d'importer depuis elle, et rapportera toute erreur survenu pendant le processus." #. type: Plain text -#: guix-git/doc/guix.texi:1413 +#: guix-git/doc/guix.texi:1430 msgid "If you want to test a different machine file, just specify it on the command line:" msgstr "Si vous souhaitez tester un fichier de machines différent, spécifiez-le sur la ligne de commande :" #. type: example -#: guix-git/doc/guix.texi:1416 +#: guix-git/doc/guix.texi:1433 #, no-wrap msgid "# guix offload test machines-qualif.scm\n" msgstr "# guix offload test machines-qualif.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:1420 +#: guix-git/doc/guix.texi:1437 msgid "Last, you can test the subset of the machines whose name matches a regular expression like this:" msgstr "Enfin, vous pouvez tester un sous-ensemble de machines dont le nom correspond à une expression rationnelle comme ceci :" #. type: example -#: guix-git/doc/guix.texi:1423 +#: guix-git/doc/guix.texi:1440 #, no-wrap msgid "# guix offload test machines.scm '\\.gnu\\.org$'\n" msgstr "# guix offload test machines.scm '\\.gnu\\.org$'\n" #. type: cindex -#: guix-git/doc/guix.texi:1425 +#: guix-git/doc/guix.texi:1442 #, no-wrap msgid "offload status" msgstr "statut du déchargement" #. type: Plain text -#: guix-git/doc/guix.texi:1428 +#: guix-git/doc/guix.texi:1445 msgid "To display the current load of all build hosts, run this command on the main node:" msgstr "Pour afficher la charge actuelle de tous les hôtes de construction, lancez cette commande sur le nœud principal :" #. type: example -#: guix-git/doc/guix.texi:1431 +#: guix-git/doc/guix.texi:1448 #, no-wrap msgid "# guix offload status\n" msgstr "# guix offload status\n" #. type: cindex -#: guix-git/doc/guix.texi:1437 +#: guix-git/doc/guix.texi:1454 #, no-wrap msgid "SELinux, daemon policy" msgstr "SELinux, politique du démon" #. type: cindex -#: guix-git/doc/guix.texi:1438 +#: guix-git/doc/guix.texi:1455 #, no-wrap msgid "mandatory access control, SELinux" msgstr "contrôle d'accès obligatoire, SELinux" #. type: cindex -#: guix-git/doc/guix.texi:1439 +#: guix-git/doc/guix.texi:1456 #, no-wrap msgid "security, guix-daemon" msgstr "sécurité, guix-daemon" #. type: Plain text -#: guix-git/doc/guix.texi:1445 +#: guix-git/doc/guix.texi:1462 msgid "Guix includes an SELinux policy file at @file{etc/guix-daemon.cil} that can be installed on a system where SELinux is enabled, in order to label Guix files and to specify the expected behavior of the daemon. Since Guix System does not provide an SELinux base policy, the daemon policy cannot be used on Guix System." msgstr "Guix inclus un fichier de politique SELinux dans @file{etc/guix-daemon.cil} qui peut être installé sur un système où SELinux est activé pour que les fichiers Guix soient étiquetés et pour spécifier le comportement attendu du démon. Comme Guix System ne fournit pas de politique SELinux de base, la politique du démon ne peut pas être utilisée sur le système Guix." #. type: subsubsection -#: guix-git/doc/guix.texi:1446 +#: guix-git/doc/guix.texi:1463 #, no-wrap msgid "Installing the SELinux policy" msgstr "Installer la politique SELinux" #. type: cindex -#: guix-git/doc/guix.texi:1447 +#: guix-git/doc/guix.texi:1464 #, no-wrap msgid "SELinux, policy installation" msgstr "SELinux, installation de la politique" #. type: Plain text -#: guix-git/doc/guix.texi:1449 +#: guix-git/doc/guix.texi:1466 msgid "To install the policy run this command as root:" msgstr "Pour installer la politique, lancez cette commande en root :" #. type: example -#: guix-git/doc/guix.texi:1452 +#: guix-git/doc/guix.texi:1469 #, no-wrap msgid "semodule -i etc/guix-daemon.cil\n" msgstr "semodule -i etc/guix-daemon.cil\n" #. type: Plain text -#: guix-git/doc/guix.texi:1456 +#: guix-git/doc/guix.texi:1473 msgid "Then relabel the file system with @code{restorecon} or by a different mechanism provided by your system." msgstr "Puis ré-étiquetez le système de fichier avec @code{restorecon} ou par un mécanisme différent fournit par votre système." #. type: Plain text -#: guix-git/doc/guix.texi:1461 +#: guix-git/doc/guix.texi:1478 msgid "Once the policy is installed, the file system has been relabeled, and the daemon has been restarted, it should be running in the @code{guix_daemon_t} context. You can confirm this with the following command:" msgstr "Une fois la politique installée, le système de fichier ré-étiqueté et le démon redémarré, il devrait être lancé dans le contexte @code{guix_daemon_t}. Vous pouvez le confirmer avec la commande suivante :" #. type: example -#: guix-git/doc/guix.texi:1464 +#: guix-git/doc/guix.texi:1481 #, no-wrap msgid "ps -Zax | grep guix-daemon\n" msgstr "ps -Zax | grep guix-daemon\n" #. type: Plain text -#: guix-git/doc/guix.texi:1469 +#: guix-git/doc/guix.texi:1486 msgid "Monitor the SELinux log files as you run a command like @code{guix build hello} to convince yourself that SELinux permits all necessary operations." msgstr "Surveillez les fichiers journaux de SELinux pendant que vous lancez une commande comme @code{guix build hello} pour vous convaincre que SELniux permet toutes les opérations nécessaires." #. type: cindex -#: guix-git/doc/guix.texi:1471 +#: guix-git/doc/guix.texi:1488 #, no-wrap msgid "SELinux, limitations" msgstr "SELinux, limites" #. type: Plain text -#: guix-git/doc/guix.texi:1476 +#: guix-git/doc/guix.texi:1493 msgid "This policy is not perfect. Here is a list of limitations or quirks that should be considered when deploying the provided SELinux policy for the Guix daemon." msgstr "La politique n'est pas parfaite. Voici une liste de limitations et de bizarreries qui vous devriez prendre en compte avant de déployer la politique SELinux fournie pour le démon Guix." #. type: enumerate -#: guix-git/doc/guix.texi:1483 +#: guix-git/doc/guix.texi:1500 msgid "@code{guix_daemon_socket_t} isn’t actually used. None of the socket operations involve contexts that have anything to do with @code{guix_daemon_socket_t}. It doesn’t hurt to have this unused label, but it would be preferable to define socket rules for only this label." msgstr "@code{guix_daemon_socket_t} n'est pas vraiment utilisé. Aucune des opérations sur les sockets n'impliquent de contextes qui ont quoi que ce soit à voir avec @code{guix_daemon_socket_t}. Ça ne fait pas de mal d'avoir une étiquette inutilisée, mais il serait préférable de définir des règles sur les sockets uniquement pour cette étiquette." #. type: enumerate -#: guix-git/doc/guix.texi:1494 +#: guix-git/doc/guix.texi:1511 msgid "@code{guix gc} cannot access arbitrary links to profiles. By design, the file label of the destination of a symlink is independent of the file label of the link itself. Although all profiles under $localstatedir are labelled, the links to these profiles inherit the label of the directory they are in. For links in the user’s home directory this will be @code{user_home_t}. But for links from the root user’s home directory, or @file{/tmp}, or the HTTP server’s working directory, etc, this won’t work. @code{guix gc} would be prevented from reading and following these links." msgstr "@code{guix gc} ne peut pas accéder à n'importe quel lien vers les profils. Par conception, l'étiquette de fichier de la destination d'un lien symbolique est indépendant de l'étiquette du lien lui-même. Bien que tous les profils sous $localstatedir aient une étiquette, les liens vers ces profils héritent de l'étiquette du répertoire dans lequel ils se trouvent. Pour les liens dans le répertoire personnel cela sera @code{user_home_t}. Mais pour les liens du répertoire personnel de root, ou @file{/tmp}, ou du répertoire de travail du serveur HTTP, etc, cela ne fonctionnera pas. SELinux empêcherait @code{guix gc} de lire et de suivre ces liens." #. type: enumerate -#: guix-git/doc/guix.texi:1499 +#: guix-git/doc/guix.texi:1516 msgid "The daemon’s feature to listen for TCP connections might no longer work. This might require extra rules, because SELinux treats network sockets differently from files." msgstr "La fonctionnalité du démon d'écouter des connexions TCP pourrait ne plus fonctionner. Cela demande des règles supplémentaires car SELinux traite les sockets réseau différemment des fichiers." #. type: enumerate -#: guix-git/doc/guix.texi:1510 +#: guix-git/doc/guix.texi:1527 msgid "Currently all files with a name matching the regular expression @code{/gnu/store/.+-(guix-.+|profile)/bin/guix-daemon} are assigned the label @code{guix_daemon_exec_t}; this means that @emph{any} file with that name in any profile would be permitted to run in the @code{guix_daemon_t} domain. This is not ideal. An attacker could build a package that provides this executable and convince a user to install and run it, which lifts it into the @code{guix_daemon_t} domain. At that point SELinux could not prevent it from accessing files that are allowed for processes in that domain." msgstr "Actuellement tous les fichiers qui correspondent à l'expression rationnelle @code{/gnu/store/.+-(guix-.+|profile)/bin/guix-daemon} reçoivent l'étiquette @code{guix_daemon_exec_t} ; cela signifie que @emph{tout} fichier avec ce nom dans n'importe quel profil serait autorisé à se lancer dans le domaine @code{guix_daemon_t}. Ce n'est pas idéal. Un attaquant pourrait construire un paquet qui fournit cet exécutable et convaincre un·e utilisateur·rice de l'installer et de le lancer, ce qui l'élève dans le domaine @code{guix_daemon_t}. À ce moment SELinux ne pourrait pas l'empêcher d'accéder à des fichiers autorisés pour les processus de ce domaine." #. type: enumerate -#: guix-git/doc/guix.texi:1515 +#: guix-git/doc/guix.texi:1532 msgid "You will need to relabel the store directory after all upgrades to @file{guix-daemon}, such as after running @code{guix pull}. Assuming the store is in @file{/gnu}, you can do this with @code{restorecon -vR /gnu}, or by other means provided by your operating system." msgstr "Vous devrez renommer le répertoire du dépôt après chaque mise à jour de @file{guix-daemon}, par exemple après avoir lancé @code{guix pull}. En supposant que le dépôt est dans @file{/gnu}, vous pouvez le faire avec @code{restorecon -vR /gnu}, ou par d'autres moyens fournis par votre système d'exploitation." #. type: enumerate -#: guix-git/doc/guix.texi:1523 +#: guix-git/doc/guix.texi:1540 msgid "We could generate a much more restrictive policy at installation time, so that only the @emph{exact} file name of the currently installed @code{guix-daemon} executable would be labelled with @code{guix_daemon_exec_t}, instead of using a broad regular expression. The downside is that root would have to install or upgrade the policy at installation time whenever the Guix package that provides the effectively running @code{guix-daemon} executable is upgraded." msgstr "Nous pourrions générer une politique bien plus restrictive à l'installation, pour que seuls les noms de fichiers @emph{exacts} de l'exécutable @code{guix-daemon} actuellement installé soit étiqueté avec @code{guix_daemon_exec_t}, plutôt que d'utiliser une expression rationnelle plus large. L'inconvénient c'est que root devrait installer ou mettre à jour la politique à l'installation à chaque fois que le paquet Guix qui fournit l'exécutable @code{guix-daemon} effectivement exécuté est mis à jour." #. type: section -#: guix-git/doc/guix.texi:1526 +#: guix-git/doc/guix.texi:1543 #, no-wrap msgid "Invoking @command{guix-daemon}" msgstr "Invoquer @command{guix-daemon}" #. type: Plain text -#: guix-git/doc/guix.texi:1532 +#: guix-git/doc/guix.texi:1549 msgid "The @command{guix-daemon} program implements all the functionality to access the store. This includes launching build processes, running the garbage collector, querying the availability of a build result, etc. It is normally run as @code{root} like this:" msgstr "Le programme @command{guix-daemon} implémente toutes les fonctionnalités d'accès au dépôt. Cela inclus le lancement des processus de construction, le lancement du ramasse-miettes, la demande de disponibilité des résultats de construction, etc. Il tourne normalement en @code{root} comme ceci :" #. type: Plain text -#: guix-git/doc/guix.texi:1539 +#: guix-git/doc/guix.texi:1556 msgid "For details on how to set it up, @pxref{Setting Up the Daemon}." msgstr "Pour des détails sur son paramétrage, @pxref{Paramétrer le démon}." #. type: cindex -#: guix-git/doc/guix.texi:1541 +#: guix-git/doc/guix.texi:1558 #, no-wrap msgid "container, build environment" msgstr "conteneur, environnement de construction" #. type: cindex -#: guix-git/doc/guix.texi:1543 guix-git/doc/guix.texi:3071 -#: guix-git/doc/guix.texi:3988 guix-git/doc/guix.texi:13753 +#: guix-git/doc/guix.texi:1560 guix-git/doc/guix.texi:3088 +#: guix-git/doc/guix.texi:4006 guix-git/doc/guix.texi:14110 #, no-wrap msgid "reproducible builds" msgstr "constructions reproductibles" #. type: Plain text -#: guix-git/doc/guix.texi:1555 +#: guix-git/doc/guix.texi:1572 msgid "By default, @command{guix-daemon} launches build processes under different UIDs, taken from the build group specified with @option{--build-users-group}. In addition, each build process is run in a chroot environment that only contains the subset of the store that the build process depends on, as specified by its derivation (@pxref{Programming Interface, derivation}), plus a set of specific system directories. By default, the latter contains @file{/dev} and @file{/dev/pts}. Furthermore, on GNU/Linux, the build environment is a @dfn{container}: in addition to having its own file system tree, it has a separate mount name space, its own PID name space, network name space, etc. This helps achieve reproducible builds (@pxref{Features})." msgstr "Par défaut, @command{guix-daemon} lance les processus de construction sous différents UIDs récupérés depuis le groupe de construction spécifié avec @code{--build-users-group}. En plus, chaque processus de construction est lancé dans un environnement chroot qui ne contient que le sous-ensemble du dépôt dont le processus de construction dépend, tel que spécifié par sa dérivation (@pxref{Interface de programmation, dérivation}), plus un ensemble de répertoires systèmes spécifiques. Par défaut ce dernier contient @file{/dev} et @file{/dev/pts}. De plus, sous GNU/Linux, l'environnement de construction est un @dfn{conteneur} : en plus d'avoir sa propre arborescence du système de fichier, il a un espace de nom de montage séparé, son propre espace de nom PID, son espace de nom de réseau, etc. Cela aide à obtenir des constructions reproductibles (@pxref{Fonctionnalités})." #. type: Plain text -#: guix-git/doc/guix.texi:1561 +#: guix-git/doc/guix.texi:1578 msgid "When the daemon performs a build on behalf of the user, it creates a build directory under @file{/tmp} or under the directory specified by its @env{TMPDIR} environment variable. This directory is shared with the container for the duration of the build, though within the container, the build tree is always called @file{/tmp/guix-build-@var{name}.drv-0}." msgstr "Lorsque le démon effectue une construction pour le compte de l'utilisateur·rice, il crée un répertoire de construction sous @file{/tmp} ou sous le répertoire spécifié par sa variable d'environnement @env{TMPDIR}. Ce répertoire est partagé avec le conteneur pendant toute la durée de la construction, bien que dans le conteneur, l'arbre de compilation soit toujours appelé @file{/tmp/guix-build-@var{name}.drv-0}." #. type: Plain text -#: guix-git/doc/guix.texi:1565 +#: guix-git/doc/guix.texi:1582 msgid "The build directory is automatically deleted upon completion, unless the build failed and the client specified @option{--keep-failed} (@pxref{Common Build Options, @option{--keep-failed}})." msgstr "Le répertoire de construction est automatiquement supprimé à la fin, à moins que la construction n'ait échoué et que le client ait spécifié @option{--keep-failed} (@pxref{Common Build Options, @option{--keep-failed}})." #. type: Plain text -#: guix-git/doc/guix.texi:1571 +#: guix-git/doc/guix.texi:1588 msgid "The daemon listens for connections and spawns one sub-process for each session started by a client (one of the @command{guix} sub-commands). The @command{guix processes} command allows you to get an overview of the activity on your system by viewing each of the active sessions and clients. @xref{Invoking guix processes}, for more information." msgstr "Le démon écoute les connexions et démarre un sous-processus pour chaque session démarrée par un client (l'une des sous-commandes de @command{guix}). La commande @command{guix processes} vous permet d'obtenir un aperçu de l'activité sur votre système en affichant chaque session et client actifs. @xref{Invoking guix processes} pour plus d'informations." #. type: Plain text -#: guix-git/doc/guix.texi:1573 +#: guix-git/doc/guix.texi:1590 msgid "The following command-line options are supported:" msgstr "Les options en ligne de commande suivantes sont disponibles :" #. type: item -#: guix-git/doc/guix.texi:1575 +#: guix-git/doc/guix.texi:1592 #, no-wrap msgid "--build-users-group=@var{group}" msgstr "--build-users-group=@var{groupe}" #. type: table -#: guix-git/doc/guix.texi:1578 +#: guix-git/doc/guix.texi:1595 msgid "Take users from @var{group} to run build processes (@pxref{Setting Up the Daemon, build users})." msgstr "Utiliser les comptes du @var{groupe} pour lancer les processus de construction (@pxref{Paramétrer le démon, comptes de construction})." #. type: item -#: guix-git/doc/guix.texi:1579 guix-git/doc/guix.texi:10915 +#: guix-git/doc/guix.texi:1596 guix-git/doc/guix.texi:11229 #, no-wrap msgid "--no-substitutes" msgstr "--no-substitutes" #. type: cindex -#: guix-git/doc/guix.texi:1580 guix-git/doc/guix.texi:3083 -#: guix-git/doc/guix.texi:3741 +#: guix-git/doc/guix.texi:1597 guix-git/doc/guix.texi:3100 +#: guix-git/doc/guix.texi:3759 #, no-wrap msgid "substitutes" msgstr "substituts" #. type: table -#: guix-git/doc/guix.texi:1584 guix-git/doc/guix.texi:10919 +#: guix-git/doc/guix.texi:1601 guix-git/doc/guix.texi:11233 msgid "Do not use substitutes for build products. That is, always build things locally instead of allowing downloads of pre-built binaries (@pxref{Substitutes})." msgstr "Ne pas utiliser de substitut pour les résultats de la construction. C'est-à-dire, toujours construire localement plutôt que de permettre le téléchargement de binaires pré-construits (@pxref{Substituts})." #. type: table -#: guix-git/doc/guix.texi:1588 +#: guix-git/doc/guix.texi:1605 msgid "When the daemon runs with @option{--no-substitutes}, clients can still explicitly enable substitution @i{via} the @code{set-build-options} remote procedure call (@pxref{The Store})." msgstr "Lorsque le démon est lancé avec @code{--no-substitutes}, les clients peuvent toujours activer explicitement la substitution @i{via} l'appel de procédure distante @code{set-build-options} (@pxref{The Store})." #. type: anchor{#1} -#: guix-git/doc/guix.texi:1590 +#: guix-git/doc/guix.texi:1607 msgid "daemon-substitute-urls" msgstr "daemon-substitute-urls" #. type: item -#: guix-git/doc/guix.texi:1590 guix-git/doc/guix.texi:10902 -#: guix-git/doc/guix.texi:13160 guix-git/doc/guix.texi:13899 -#: guix-git/doc/guix.texi:14124 +#: guix-git/doc/guix.texi:1607 guix-git/doc/guix.texi:11216 +#: guix-git/doc/guix.texi:13517 guix-git/doc/guix.texi:14256 +#: guix-git/doc/guix.texi:14481 #, no-wrap msgid "--substitute-urls=@var{urls}" msgstr "--substitute-urls=@var{urls}" #. type: table -#: guix-git/doc/guix.texi:1594 +#: guix-git/doc/guix.texi:1611 msgid "Consider @var{urls} the default whitespace-separated list of substitute source URLs. When this option is omitted, @indicateurl{@value{SUBSTITUTE-URLS}} is used." msgstr "Considérer @var{urls} comme la liste séparée par des espaces des URL des sources de substituts par défaut. Lorsque cette option est omise, @indicateurl{@value{SUBSTITUTE-URLS}} est utilisé." #. type: table -#: guix-git/doc/guix.texi:1597 +#: guix-git/doc/guix.texi:1614 msgid "This means that substitutes may be downloaded from @var{urls}, as long as they are signed by a trusted signature (@pxref{Substitutes})." msgstr "Cela signifie que les substituts sont téléchargés depuis les @var{urls}, tant qu'ils sont signés par une signature de confiance (@pxref{Substituts})." #. type: table -#: guix-git/doc/guix.texi:1600 +#: guix-git/doc/guix.texi:1617 msgid "@xref{Getting Substitutes from Other Servers}, for more information on how to configure the daemon to get substitutes from other servers." msgstr "@xref{Getting Substitutes from Other Servers}, pour plus d'information sur la configuration du démon pour récupérer des substituts d'autres serveurs." #. type: item -#: guix-git/doc/guix.texi:1602 guix-git/doc/guix.texi:10938 +#: guix-git/doc/guix.texi:1619 guix-git/doc/guix.texi:11252 #, no-wrap msgid "--no-offload" msgstr "--no-offload" #. type: table -#: guix-git/doc/guix.texi:1606 guix-git/doc/guix.texi:10942 +#: guix-git/doc/guix.texi:1623 guix-git/doc/guix.texi:11256 msgid "Do not use offload builds to other machines (@pxref{Daemon Offload Setup}). That is, always build things locally instead of offloading builds to remote machines." msgstr "N'essaye pas de décharger les constructions vers d'autres machines (@pxref{Daemon Offload Setup}). C'est-à-dire que tout sera construit localement au lieu de décharger les constructions à une machine distante." #. type: item -#: guix-git/doc/guix.texi:1607 +#: guix-git/doc/guix.texi:1624 #, no-wrap msgid "--cache-failures" msgstr "--cache-failures" #. type: table -#: guix-git/doc/guix.texi:1609 +#: guix-git/doc/guix.texi:1626 msgid "Cache build failures. By default, only successful builds are cached." msgstr "Mettre les échecs de construction en cache. Par défaut, seules les constructions réussies sont mises en cache." #. type: table -#: guix-git/doc/guix.texi:1614 +#: guix-git/doc/guix.texi:1631 msgid "When this option is used, @command{guix gc --list-failures} can be used to query the set of store items marked as failed; @command{guix gc --clear-failures} removes store items from the set of cached failures. @xref{Invoking guix gc}." msgstr "Lorsque cette option est utilisée, @command{guix gc --list-failures} peut être utilisé pour demander l'ensemble des éléments du dépôt marqués comme échoués ; @command{guix gc --clear-failures} vide la liste des éléments aillant échoué. @xref{Invoking guix gc}." #. type: item -#: guix-git/doc/guix.texi:1615 guix-git/doc/guix.texi:10968 +#: guix-git/doc/guix.texi:1632 guix-git/doc/guix.texi:11282 #, no-wrap msgid "--cores=@var{n}" msgstr "--cores=@var{n}" #. type: itemx -#: guix-git/doc/guix.texi:1616 guix-git/doc/guix.texi:10969 +#: guix-git/doc/guix.texi:1633 guix-git/doc/guix.texi:11283 #, no-wrap msgid "-c @var{n}" msgstr "-c @var{n}" #. type: table -#: guix-git/doc/guix.texi:1619 +#: guix-git/doc/guix.texi:1636 msgid "Use @var{n} CPU cores to build each derivation; @code{0} means as many as available." msgstr "Utiliser @var{n} cœurs CPU pour construire chaque dérivation ; @code{0} signifie autant que possible." #. type: table -#: guix-git/doc/guix.texi:1623 +#: guix-git/doc/guix.texi:1640 msgid "The default value is @code{0}, but it may be overridden by clients, such as the @option{--cores} option of @command{guix build} (@pxref{Invoking guix build})." msgstr "La valeur par défaut est @code{0}, mais elle peut être annulée par les clients, comme avec l'option @code{--cores} de @command{guix build} (@pxref{Invoking guix build})." #. type: table -#: guix-git/doc/guix.texi:1627 +#: guix-git/doc/guix.texi:1644 msgid "The effect is to define the @env{NIX_BUILD_CORES} environment variable in the build process, which can then use it to exploit internal parallelism---for instance, by running @code{make -j$NIX_BUILD_CORES}." msgstr "L'effet est de définir la variable d'environnement @env{NIX_BUILD_CORES} dans le processus de construction, qui peut ensuite l'utiliser pour exploiter le parallélisme en interne — par exemple en lançant @code{make -j$NIX_BUILD_CORES}." #. type: item -#: guix-git/doc/guix.texi:1628 guix-git/doc/guix.texi:10973 +#: guix-git/doc/guix.texi:1645 guix-git/doc/guix.texi:11287 #, no-wrap msgid "--max-jobs=@var{n}" msgstr "--max-jobs=@var{n}" #. type: itemx -#: guix-git/doc/guix.texi:1629 guix-git/doc/guix.texi:10974 +#: guix-git/doc/guix.texi:1646 guix-git/doc/guix.texi:11288 #, no-wrap msgid "-M @var{n}" msgstr "-M @var{n}" #. type: table -#: guix-git/doc/guix.texi:1634 +#: guix-git/doc/guix.texi:1651 msgid "Allow at most @var{n} build jobs in parallel. The default value is @code{1}. Setting it to @code{0} means that no builds will be performed locally; instead, the daemon will offload builds (@pxref{Daemon Offload Setup}), or simply fail." msgstr "Permettre au plus @var{n} travaux de construction en parallèle. La valeur par défaut est @code{1}. La mettre à @code{0} signifie qu'aucune construction ne sera effectuée localement ; à la place, le démon déchargera les constructions (@pxref{Daemon Offload Setup}) ou échouera." #. type: item -#: guix-git/doc/guix.texi:1635 guix-git/doc/guix.texi:10943 +#: guix-git/doc/guix.texi:1652 guix-git/doc/guix.texi:11257 #, no-wrap msgid "--max-silent-time=@var{seconds}" msgstr "--max-silent-time=@var{secondes}" #. type: table -#: guix-git/doc/guix.texi:1638 guix-git/doc/guix.texi:10946 +#: guix-git/doc/guix.texi:1655 guix-git/doc/guix.texi:11260 msgid "When the build or substitution process remains silent for more than @var{seconds}, terminate it and report a build failure." msgstr "Lorsque le processus de construction ou de substitution restent silencieux pendant plus de @var{secondes}, le terminer et rapporter une erreur de construction." #. type: table -#: guix-git/doc/guix.texi:1640 guix-git/doc/guix.texi:1649 +#: guix-git/doc/guix.texi:1657 guix-git/doc/guix.texi:1666 msgid "The default value is @code{0}, which disables the timeout." msgstr "La valeur par défaut est @code{0}, ce qui désactive le délai." #. type: table -#: guix-git/doc/guix.texi:1643 +#: guix-git/doc/guix.texi:1660 msgid "The value specified here can be overridden by clients (@pxref{Common Build Options, @option{--max-silent-time}})." msgstr "La valeur spécifiée ici peut être annulée par les clients (@pxref{Common Build Options, @code{--max-silent-time}})." #. type: item -#: guix-git/doc/guix.texi:1644 guix-git/doc/guix.texi:10950 +#: guix-git/doc/guix.texi:1661 guix-git/doc/guix.texi:11264 #, no-wrap msgid "--timeout=@var{seconds}" msgstr "--timeout=@var{secondes}" #. type: table -#: guix-git/doc/guix.texi:1647 guix-git/doc/guix.texi:10953 +#: guix-git/doc/guix.texi:1664 guix-git/doc/guix.texi:11267 msgid "Likewise, when the build or substitution process lasts for more than @var{seconds}, terminate it and report a build failure." msgstr "De même, lorsque le processus de construction ou de substitution dure plus de @var{secondes}, le terminer et rapporter une erreur de construction." #. type: table -#: guix-git/doc/guix.texi:1652 +#: guix-git/doc/guix.texi:1669 msgid "The value specified here can be overridden by clients (@pxref{Common Build Options, @option{--timeout}})." msgstr "La valeur spécifiée ici peut être annulée par les clients (@pxref{Common Build Options, @code{--timeout}})." #. type: item -#: guix-git/doc/guix.texi:1653 +#: guix-git/doc/guix.texi:1670 #, no-wrap msgid "--rounds=@var{N}" msgstr "--rounds=@var{N}" #. type: table -#: guix-git/doc/guix.texi:1658 +#: guix-git/doc/guix.texi:1675 msgid "Build each derivation @var{n} times in a row, and raise an error if consecutive build results are not bit-for-bit identical. Note that this setting can be overridden by clients such as @command{guix build} (@pxref{Invoking guix build})." msgstr "Construire chaque dérivations @var{N} fois à la suite, et lever une erreur si les résultats de construction consécutifs ne sont pas identiques bit-à-bit. Remarquez que ce paramètre peut être modifié par les clients comme @command{guix build} (@pxref{Invoking guix build})." #. type: table -#: guix-git/doc/guix.texi:1662 guix-git/doc/guix.texi:10937 -#: guix-git/doc/guix.texi:11561 +#: guix-git/doc/guix.texi:1679 guix-git/doc/guix.texi:11251 +#: guix-git/doc/guix.texi:11875 msgid "When used in conjunction with @option{--keep-failed}, the differing output is kept in the store, under @file{/gnu/store/@dots{}-check}. This makes it easy to look for differences between the two results." msgstr "Lorsqu'utilisé avec @option{--keep-failed}, la sortie différente est gardée dans le dépôt sous @file{/gnu/store/@dots{}-check}. Cela rend plus facile l'étude des différences entre les deux résultats." #. type: item -#: guix-git/doc/guix.texi:1663 +#: guix-git/doc/guix.texi:1680 #, no-wrap msgid "--debug" msgstr "--debug" #. type: table -#: guix-git/doc/guix.texi:1665 +#: guix-git/doc/guix.texi:1682 msgid "Produce debugging output." msgstr "Produire une sortie de débogage." #. type: table -#: guix-git/doc/guix.texi:1669 +#: guix-git/doc/guix.texi:1686 msgid "This is useful to debug daemon start-up issues, but then it may be overridden by clients, for example the @option{--verbosity} option of @command{guix build} (@pxref{Invoking guix build})." msgstr "Cela est utile pour déboguer des problèmes de démarrage du démon, mais ensuite elle peut être annulée par les clients, par exemple par l'option @code{--verbosity} de @command{guix build} (@pxref{Invoking guix build})." #. type: item -#: guix-git/doc/guix.texi:1670 +#: guix-git/doc/guix.texi:1687 #, no-wrap msgid "--chroot-directory=@var{dir}" msgstr "--chroot-directory=@var{rép}" #. type: table -#: guix-git/doc/guix.texi:1672 +#: guix-git/doc/guix.texi:1689 msgid "Add @var{dir} to the build chroot." msgstr "Ajouter @var{rép} au chroot de construction." #. type: table -#: guix-git/doc/guix.texi:1678 +#: guix-git/doc/guix.texi:1695 msgid "Doing this may change the result of build processes---for instance if they use optional dependencies found in @var{dir} when it is available, and not otherwise. For that reason, it is not recommended to do so. Instead, make sure that each derivation declares all the inputs that it needs." msgstr "Cela peut changer le résultat d'un processus de construction — par exemple s'il utilise une dépendance facultative trouvée dans @var{rép} lorsqu'elle est disponible ou pas sinon. Pour cette raison, il n'est pas recommandé d'utiliser cette option. À la place, assurez-vous que chaque dérivation déclare toutes les entrées dont elle a besoin." #. type: item -#: guix-git/doc/guix.texi:1679 +#: guix-git/doc/guix.texi:1696 #, no-wrap msgid "--disable-chroot" msgstr "--disable-chroot" #. type: table -#: guix-git/doc/guix.texi:1681 +#: guix-git/doc/guix.texi:1698 msgid "Disable chroot builds." msgstr "Désactive les constructions dans un chroot." #. type: table -#: guix-git/doc/guix.texi:1686 +#: guix-git/doc/guix.texi:1703 msgid "Using this option is not recommended since, again, it would allow build processes to gain access to undeclared dependencies. It is necessary, though, when @command{guix-daemon} is running under an unprivileged user account." msgstr "Utiliser cette option n'est pas recommandé car, de nouveau, elle permet aux processus de construction d'accéder à des dépendances non déclarées. Elle est nécessaire cependant lorsque @command{guix-daemon} tourne sans privilèges." #. type: item -#: guix-git/doc/guix.texi:1687 +#: guix-git/doc/guix.texi:1704 #, no-wrap msgid "--log-compression=@var{type}" msgstr "--log-compression=@var{type}" #. type: table -#: guix-git/doc/guix.texi:1690 +#: guix-git/doc/guix.texi:1707 msgid "Compress build logs according to @var{type}, one of @code{gzip}, @code{bzip2}, or @code{none}." msgstr "Compresser les journaux de construction suivant le @var{type}, parmi @code{gzip}, @code{bzip2} ou @code{none}." #. type: table -#: guix-git/doc/guix.texi:1694 -msgid "Unless @option{--lose-logs} is used, all the build logs are kept in the @var{localstatedir}. To save space, the daemon automatically compresses them with Bzip2 by default." -msgstr "À moins que @option{--lose-logs} ne soit utilisé, tous les journaux de construction sont gardés dans @var{localstatedir}. Pour gagner de la place, le démon les compresse automatiquement avec bzip2 par défaut." +#: guix-git/doc/guix.texi:1711 +msgid "Unless @option{--lose-logs} is used, all the build logs are kept in the @var{localstatedir}. To save space, the daemon automatically compresses them with gzip by default." +msgstr "À moins que @option{--lose-logs} ne soit utilisé, tous les journaux de construction sont gardés dans @var{localstatedir}. Pour gagner de la place, le démon les compresse automatiquement avec gzip par défaut." #. type: item -#: guix-git/doc/guix.texi:1695 +#: guix-git/doc/guix.texi:1712 #, no-wrap msgid "--discover[=yes|no]" msgstr "--discover[=yes|no]" #. type: table -#: guix-git/doc/guix.texi:1698 guix-git/doc/guix.texi:16563 +#: guix-git/doc/guix.texi:1715 guix-git/doc/guix.texi:16920 msgid "Whether to discover substitute servers on the local network using mDNS and DNS-SD." msgstr "Indique s'il faut découvrir les serveurs de substitut sur le réseau local avec mDNS et DNS-SD." #. type: table -#: guix-git/doc/guix.texi:1701 +#: guix-git/doc/guix.texi:1718 msgid "This feature is still experimental. However, here are a few considerations." msgstr "Cette fonction est encore expérimentale. Cependant, voici quelques réflexions sur le sujet." #. type: enumerate -#: guix-git/doc/guix.texi:1705 +#: guix-git/doc/guix.texi:1722 msgid "It might be faster/less expensive than fetching from remote servers;" msgstr "Cela peut être plus rapide ou moins cher que la récupération depuis des serveurs distants ;" #. type: enumerate -#: guix-git/doc/guix.texi:1708 +#: guix-git/doc/guix.texi:1725 msgid "There are no security risks, only genuine substitutes will be used (@pxref{Substitute Authentication});" msgstr "Il n'y a pas de risque de sécurité, seuls des substituts authentiques seront utilisés (@pxref{Substitute Authentication}) ;" #. type: enumerate -#: guix-git/doc/guix.texi:1712 +#: guix-git/doc/guix.texi:1729 msgid "An attacker advertising @command{guix publish} on your LAN cannot serve you malicious binaries, but they can learn what software you’re installing;" msgstr "Un·e attaquant·e qui publierait @command{guix publish} sur votre LAN ne peut pas vous proposer de binaire malveillants, mais il ou elle pourrait apprendre quels logiciels vous installez ;" #. type: enumerate -#: guix-git/doc/guix.texi:1715 +#: guix-git/doc/guix.texi:1732 msgid "Servers may serve substitute over HTTP, unencrypted, so anyone on the LAN can see what software you’re installing." msgstr "Les serveurs peuvent servir des substituts en HTTP, sans chiffrement, donc n'importe qui sur votre LAN peut voir quels logiciels vous installez." #. type: table -#: guix-git/doc/guix.texi:1719 +#: guix-git/doc/guix.texi:1736 msgid "It is also possible to enable or disable substitute server discovery at run-time by running:" msgstr "Il est aussi possible d'activer ou de désactiver la découverte de serveurs de substituts à l'exécution en lançant :" #. type: example -#: guix-git/doc/guix.texi:1723 +#: guix-git/doc/guix.texi:1740 #, no-wrap msgid "" "herd discover guix-daemon on\n" @@ -7100,237 +7174,237 @@ msgstr "" "herd discover guix-daemon off\n" #. type: item -#: guix-git/doc/guix.texi:1725 +#: guix-git/doc/guix.texi:1742 #, no-wrap msgid "--disable-deduplication" msgstr "--disable-deduplication" #. type: cindex -#: guix-git/doc/guix.texi:1726 guix-git/doc/guix.texi:4326 +#: guix-git/doc/guix.texi:1743 guix-git/doc/guix.texi:4344 #, no-wrap msgid "deduplication" msgstr "déduplication" #. type: table -#: guix-git/doc/guix.texi:1728 +#: guix-git/doc/guix.texi:1745 msgid "Disable automatic file ``deduplication'' in the store." msgstr "Désactiver la « déduplication » automatique des fichiers dans le dépôt." #. type: table -#: guix-git/doc/guix.texi:1735 +#: guix-git/doc/guix.texi:1752 msgid "By default, files added to the store are automatically ``deduplicated'': if a newly added file is identical to another one found in the store, the daemon makes the new file a hard link to the other file. This can noticeably reduce disk usage, at the expense of slightly increased input/output load at the end of a build process. This option disables this optimization." msgstr "Par défaut, les fichiers ajoutés au dépôt sont automatiquement « dédupliqués » : si un nouveau fichier est identique à un autre fichier trouvé dans le dépôt, le démon en fait un lien en dur vers l'autre fichier. Cela réduit considérablement l'utilisation de l'espace disque au prix d'une charge en entrée/sortie plus grande à la fin d'un processus de construction. Cette option désactive cette optimisation." #. type: item -#: guix-git/doc/guix.texi:1736 +#: guix-git/doc/guix.texi:1753 #, no-wrap msgid "--gc-keep-outputs[=yes|no]" msgstr "--gc-keep-outputs[=yes|no]" #. type: table -#: guix-git/doc/guix.texi:1739 +#: guix-git/doc/guix.texi:1756 msgid "Tell whether the garbage collector (GC) must keep outputs of live derivations." msgstr "Dire si le ramasse-miettes (GC) doit garder les sorties des dérivations utilisées." #. type: cindex -#: guix-git/doc/guix.texi:1740 guix-git/doc/guix.texi:4139 +#: guix-git/doc/guix.texi:1757 guix-git/doc/guix.texi:4157 #, no-wrap msgid "GC roots" msgstr "Racines du GC" #. type: cindex -#: guix-git/doc/guix.texi:1741 guix-git/doc/guix.texi:4140 +#: guix-git/doc/guix.texi:1758 guix-git/doc/guix.texi:4158 #, no-wrap msgid "garbage collector roots" msgstr "racines du ramasse-miettes" #. type: table -#: guix-git/doc/guix.texi:1747 +#: guix-git/doc/guix.texi:1764 msgid "When set to @code{yes}, the GC will keep the outputs of any live derivation available in the store---the @file{.drv} files. The default is @code{no}, meaning that derivation outputs are kept only if they are reachable from a GC root. @xref{Invoking guix gc}, for more on GC roots." msgstr "Lorsqu'il est réglé sur @code{yes}, le GC conservera les sorties de toute dérivation active disponibles dans le dépôt---les fichiers @file{.drv}. La valeur par défaut est @code{no}, ce qui signifie que les sorties des dérivations ne sont conservées que si elles sont accessibles à partir d'une racine GC. @xref{Invoquer guix gc}, pour en savoir plus sur les racines GC." #. type: item -#: guix-git/doc/guix.texi:1748 +#: guix-git/doc/guix.texi:1765 #, no-wrap msgid "--gc-keep-derivations[=yes|no]" msgstr "--gc-keep-derivations[=yes|no]" #. type: table -#: guix-git/doc/guix.texi:1751 +#: guix-git/doc/guix.texi:1768 msgid "Tell whether the garbage collector (GC) must keep derivations corresponding to live outputs." msgstr "Dire si le ramasse-miettes (GC) doit garder les dérivations correspondant à des sorties utilisées." #. type: table -#: guix-git/doc/guix.texi:1757 +#: guix-git/doc/guix.texi:1774 msgid "When set to @code{yes}, as is the case by default, the GC keeps derivations---i.e., @file{.drv} files---as long as at least one of their outputs is live. This allows users to keep track of the origins of items in their store. Setting it to @code{no} saves a bit of disk space." msgstr "Lorsqu'il est réglé à « yes », comme c'est le cas par défaut, le GC garde les dérivations — c.-à-d.@: les fichiers @file{.drv} — tant qu'au moins une de leurs sorties est utilisée. Cela permet de garder une trace de l'origine des éléments du dépôt. Le mettre à @code{no} préserve un peu d'espace disque." #. type: table -#: guix-git/doc/guix.texi:1766 +#: guix-git/doc/guix.texi:1783 msgid "In this way, setting @option{--gc-keep-derivations} to @code{yes} causes liveness to flow from outputs to derivations, and setting @option{--gc-keep-outputs} to @code{yes} causes liveness to flow from derivations to outputs. When both are set to @code{yes}, the effect is to keep all the build prerequisites (the sources, compiler, libraries, and other build-time tools) of live objects in the store, regardless of whether these prerequisites are reachable from a GC root. This is convenient for developers since it saves rebuilds or downloads." msgstr "De cette manière, le réglage de l'option @option{--gc-keep-derivations} sur @code{yes} étend le résultat des sorties aux dérivations, et le réglage de l'option @option{--gc-keep-outputs} sur @code{yes} étend le résultat des dérivations aux sorties. Lorsque les deux sont réglés sur @code{yes}, l'effet est de conserver tous les prérequis de construction (les sources, le compilateur, les bibliothèques et autres outils de construction) des objets actifs dans le dépôt, que ces prérequis soient accessibles ou non depuis une racine GC. Cela est pratique pour les développeurs car cela permet d'éviter les reconstructions ou les téléchargements." #. type: item -#: guix-git/doc/guix.texi:1767 +#: guix-git/doc/guix.texi:1784 #, no-wrap msgid "--impersonate-linux-2.6" msgstr "--impersonate-linux-2.6" #. type: table -#: guix-git/doc/guix.texi:1770 +#: guix-git/doc/guix.texi:1787 msgid "On Linux-based systems, impersonate Linux 2.6. This means that the kernel's @command{uname} system call will report 2.6 as the release number." msgstr "Sur les systèmes basés sur Linux, imiter Linux 2.6. Cela signifie que l'appel système @command{uname} du noyau indiquera 2.6 comme numéro de version." #. type: table -#: guix-git/doc/guix.texi:1773 +#: guix-git/doc/guix.texi:1790 msgid "This might be helpful to build programs that (usually wrongfully) depend on the kernel version number." msgstr "Cela peut être utile pour construire des programmes qui dépendent (généralement sans fondement) du numéro de version du noyau." #. type: item -#: guix-git/doc/guix.texi:1774 +#: guix-git/doc/guix.texi:1791 #, no-wrap msgid "--lose-logs" msgstr "--lose-logs" #. type: table -#: guix-git/doc/guix.texi:1777 +#: guix-git/doc/guix.texi:1794 msgid "Do not keep build logs. By default they are kept under @file{@var{localstatedir}/guix/log}." msgstr "Ne pas garder les journaux de construction. Par défaut ils sont gardés dans @file{@var{localstatedir}/guix/log}." #. type: item -#: guix-git/doc/guix.texi:1778 guix-git/doc/guix.texi:4567 -#: guix-git/doc/guix.texi:5846 guix-git/doc/guix.texi:6229 -#: guix-git/doc/guix.texi:6629 guix-git/doc/guix.texi:11505 -#: guix-git/doc/guix.texi:13187 guix-git/doc/guix.texi:13452 -#: guix-git/doc/guix.texi:14129 guix-git/doc/guix.texi:34442 -#: guix-git/doc/guix.texi:35251 +#: guix-git/doc/guix.texi:1795 guix-git/doc/guix.texi:4585 +#: guix-git/doc/guix.texi:5859 guix-git/doc/guix.texi:6272 +#: guix-git/doc/guix.texi:6672 guix-git/doc/guix.texi:11819 +#: guix-git/doc/guix.texi:13544 guix-git/doc/guix.texi:13809 +#: guix-git/doc/guix.texi:14486 guix-git/doc/guix.texi:34881 +#: guix-git/doc/guix.texi:35695 #, no-wrap msgid "--system=@var{system}" msgstr "--system=@var{système}" #. type: table -#: guix-git/doc/guix.texi:1782 +#: guix-git/doc/guix.texi:1799 msgid "Assume @var{system} as the current system type. By default it is the architecture/kernel pair found at configure time, such as @code{x86_64-linux}." msgstr "Supposer que @var{système} est le type de système actuel. Par défaut c'est la paire architecture-noyau trouvée à la configuration, comme @code{x86_64-linux}." #. type: item -#: guix-git/doc/guix.texi:1783 guix-git/doc/guix.texi:10747 +#: guix-git/doc/guix.texi:1800 guix-git/doc/guix.texi:11061 #, no-wrap msgid "--listen=@var{endpoint}" msgstr "--listen=@var{extrémité}" #. type: table -#: guix-git/doc/guix.texi:1788 +#: guix-git/doc/guix.texi:1805 msgid "Listen for connections on @var{endpoint}. @var{endpoint} is interpreted as the file name of a Unix-domain socket if it starts with @code{/} (slash sign). Otherwise, @var{endpoint} is interpreted as a host name or host name and port to listen to. Here are a few examples:" msgstr "Écouter les connexions sur @var{extrémité}. @var{extrémité} est interprété comme un nom de fichier d'un socket Unix-domain s'il commence par @code{/} (barre oblique). Sinon, @var{extrémité} est interprété comme un nom de domaine ou d'hôte et un port sur lequel écouter. Voici quelques exemples :" #. type: item -#: guix-git/doc/guix.texi:1790 +#: guix-git/doc/guix.texi:1807 #, no-wrap msgid "--listen=/gnu/var/daemon" msgstr "--listen=/gnu/var/daemon" #. type: table -#: guix-git/doc/guix.texi:1793 +#: guix-git/doc/guix.texi:1810 msgid "Listen for connections on the @file{/gnu/var/daemon} Unix-domain socket, creating it if needed." msgstr "Écouter les connexions sur le socket Unix-domain @file{/gnu/var/daemon} en le créant si besoin." #. type: item -#: guix-git/doc/guix.texi:1794 +#: guix-git/doc/guix.texi:1811 #, no-wrap msgid "--listen=localhost" msgstr "--listen=localhost" #. type: cindex -#: guix-git/doc/guix.texi:1795 guix-git/doc/guix.texi:9421 +#: guix-git/doc/guix.texi:1812 guix-git/doc/guix.texi:9735 #, no-wrap msgid "daemon, remote access" msgstr "démon, accès distant" #. type: cindex -#: guix-git/doc/guix.texi:1796 guix-git/doc/guix.texi:9422 +#: guix-git/doc/guix.texi:1813 guix-git/doc/guix.texi:9736 #, no-wrap msgid "remote access to the daemon" msgstr "accès distant au démon" #. type: cindex -#: guix-git/doc/guix.texi:1797 guix-git/doc/guix.texi:9423 +#: guix-git/doc/guix.texi:1814 guix-git/doc/guix.texi:9737 #, no-wrap msgid "daemon, cluster setup" msgstr "démon, paramètres de grappes" #. type: cindex -#: guix-git/doc/guix.texi:1798 guix-git/doc/guix.texi:9424 +#: guix-git/doc/guix.texi:1815 guix-git/doc/guix.texi:9738 #, no-wrap msgid "clusters, daemon setup" msgstr "grappes, paramètres du démon" #. type: table -#: guix-git/doc/guix.texi:1801 +#: guix-git/doc/guix.texi:1818 msgid "Listen for TCP connections on the network interface corresponding to @code{localhost}, on port 44146." msgstr "Écouter les connexions TCP sur l'interface réseau correspondant à @code{localhost} sur le port 44146." #. type: item -#: guix-git/doc/guix.texi:1802 +#: guix-git/doc/guix.texi:1819 #, no-wrap msgid "--listen=128.0.0.42:1234" msgstr "--listen=128.0.0.42:1234" #. type: table -#: guix-git/doc/guix.texi:1805 +#: guix-git/doc/guix.texi:1822 msgid "Listen for TCP connections on the network interface corresponding to @code{128.0.0.42}, on port 1234." msgstr "Écouter les connexions TCP sur l'interface réseau correspondant à @code{128.0.0.42} sur le port 1234." #. type: table -#: guix-git/doc/guix.texi:1812 +#: guix-git/doc/guix.texi:1829 msgid "This option can be repeated multiple times, in which case @command{guix-daemon} accepts connections on all the specified endpoints. Users can tell client commands what endpoint to connect to by setting the @env{GUIX_DAEMON_SOCKET} environment variable (@pxref{The Store, @env{GUIX_DAEMON_SOCKET}})." msgstr "Cette option peut être répétée plusieurs fois, auquel cas @command{guix-daemon} accepte des connexions sur tous les paramètres spécifiés. On peut indiquer aux commandes clientes à quoi se connecter en paramétrant la variable d'environnement @env{GUIX_DAEMON_SOCKET} (@pxref{The Store, @code{GUIX_DAEMON_SOCKET}})." #. type: quotation -#: guix-git/doc/guix.texi:1819 +#: guix-git/doc/guix.texi:1836 msgid "The daemon protocol is @emph{unauthenticated and unencrypted}. Using @option{--listen=@var{host}} is suitable on local networks, such as clusters, where only trusted nodes may connect to the build daemon. In other cases where remote access to the daemon is needed, we recommend using Unix-domain sockets along with SSH." msgstr "Le protocole du démon est @emph{non authentifié et non chiffré}. Utiliser @option{--listen=@var{host}} est adapté sur des réseaux locaux, comme pour des grappes de serveurs, où seuls des nœuds de confiance peuvent se connecter au démon de construction. Dans les autres cas où l'accès à distance au démon est requis, nous conseillons d'utiliser un socket Unix-domain avec SSH." #. type: table -#: guix-git/doc/guix.texi:1824 +#: guix-git/doc/guix.texi:1841 msgid "When @option{--listen} is omitted, @command{guix-daemon} listens for connections on the Unix-domain socket located at @file{@var{localstatedir}/guix/daemon-socket/socket}." msgstr "Lorsque @option{--listen} est omis, @command{guix-daemon} écoute les connexions sur le socket Unix-domain situé à @file{@var{localstatedir}/guix/daemon-socket/socket}." #. type: Plain text -#: guix-git/doc/guix.texi:1834 +#: guix-git/doc/guix.texi:1851 msgid "When using Guix on top of GNU/Linux distribution other than Guix System---a so-called @dfn{foreign distro}---a few additional steps are needed to get everything in place. Here are some of them." msgstr "Lorsque vous utilisez Guix par dessus une distribution GNU/Linux qui n'est pas Guix System — ce qu'on appelle une @dfn{distro externe} — quelques étapes supplémentaires sont requises pour que tout soit en place. En voici certaines." #. type: anchor{#1} -#: guix-git/doc/guix.texi:1838 +#: guix-git/doc/guix.texi:1855 msgid "locales-and-locpath" msgstr "locales-and-locpath" #. type: cindex -#: guix-git/doc/guix.texi:1838 +#: guix-git/doc/guix.texi:1855 #, no-wrap msgid "locales, when not on Guix System" msgstr "régionalisation, en dehors de Guix System" #. type: vindex -#: guix-git/doc/guix.texi:1839 guix-git/doc/guix.texi:15770 +#: guix-git/doc/guix.texi:1856 guix-git/doc/guix.texi:16127 #, no-wrap msgid "LOCPATH" msgstr "LOCPATH" #. type: vindex -#: guix-git/doc/guix.texi:1840 +#: guix-git/doc/guix.texi:1857 #, no-wrap msgid "GUIX_LOCPATH" msgstr "GUIX_LOCPATH" #. type: Plain text -#: guix-git/doc/guix.texi:1845 +#: guix-git/doc/guix.texi:1862 msgid "Packages installed @i{via} Guix will not use the locale data of the host system. Instead, you must first install one of the locale packages available with Guix and then define the @env{GUIX_LOCPATH} environment variable:" msgstr "Les paquets installés @i{via} Guix n'utiliseront pas les données de régionalisation du système hôte. À la place, vous devrez d'abord installer l'un des paquets linguistiques disponibles dans Guix puis définir la variable d'environnement @env{GUIX_LOCPATH} :" #. type: example -#: guix-git/doc/guix.texi:1849 +#: guix-git/doc/guix.texi:1866 #, no-wrap msgid "" "$ guix install glibc-locales\n" @@ -7340,132 +7414,132 @@ msgstr "" "$ export GUIX_LOCPATH=$HOME/.guix-profile/lib/locale\n" #. type: Plain text -#: guix-git/doc/guix.texi:1855 +#: guix-git/doc/guix.texi:1872 msgid "Note that the @code{glibc-locales} package contains data for all the locales supported by the GNU@tie{}libc and weighs in at around 917@tie{}MiB@. Alternatively, the @code{glibc-utf8-locales} is smaller but limited to a few UTF-8 locales." msgstr "Remarquez que le paquet @code{glibc-locales} contient les données pour tous les environnement linguistiques supportés par la GNU@tie{}libc et pèse environ 917@tie{}Mo. Autrement, les @code{glibc-utf8-locales} est plus petit mais limité à quelques environnements UTF-8." #. type: Plain text -#: guix-git/doc/guix.texi:1859 +#: guix-git/doc/guix.texi:1876 msgid "The @env{GUIX_LOCPATH} variable plays a role similar to @env{LOCPATH} (@pxref{Locale Names, @env{LOCPATH},, libc, The GNU C Library Reference Manual}). There are two important differences though:" msgstr "La variable @env{GUIX_LOCPATH} joue un rôle similaire à @env{LOCPATH} (@pxref{Locale Names, @code{LOCPATH},, libc, The GNU C Library Reference Manual}). Il y a deux différences importantes cependant :" #. type: enumerate -#: guix-git/doc/guix.texi:1866 +#: guix-git/doc/guix.texi:1883 msgid "@env{GUIX_LOCPATH} is honored only by the libc in Guix, and not by the libc provided by foreign distros. Thus, using @env{GUIX_LOCPATH} allows you to make sure the programs of the foreign distro will not end up loading incompatible locale data." msgstr "@env{GUIX_LOCPATH} n'est compris que par la libc dans Guix et pas par la libc fournie par les distros externes. Ainsi, utiliser @env{GUIX_LOCPATH} vous permet de vous assurer que les programmes de la distro externe ne chargeront pas de données linguistiques incompatibles." #. type: enumerate -#: guix-git/doc/guix.texi:1873 +#: guix-git/doc/guix.texi:1890 msgid "libc suffixes each entry of @env{GUIX_LOCPATH} with @code{/X.Y}, where @code{X.Y} is the libc version---e.g., @code{2.22}. This means that, should your Guix profile contain a mixture of programs linked against different libc version, each libc version will only try to load locale data in the right format." msgstr "la libc ajoute un suffixe @code{/X.Y} à chaque entrée de @env{GUIX_LOCPATH}, où @code{X.Y} est la version de la libc — p.@: ex.@: @code{2.22}. Cela signifie que, si votre profile Guix contient un mélange de programmes liés avec des versions différentes de la libc, chaque version de la libc essaiera de charger les environnements linguistiques dans le bon format." #. type: Plain text -#: guix-git/doc/guix.texi:1877 +#: guix-git/doc/guix.texi:1894 msgid "This is important because the locale data format used by different libc versions may be incompatible." msgstr "Cela est important car le format des données linguistiques utilisés par différentes version de la libc peuvent être incompatibles." #. type: cindex -#: guix-git/doc/guix.texi:1880 +#: guix-git/doc/guix.texi:1897 #, no-wrap msgid "name service switch, glibc" msgstr "name service switch, glibc" #. type: cindex -#: guix-git/doc/guix.texi:1881 +#: guix-git/doc/guix.texi:1898 #, no-wrap msgid "NSS (name service switch), glibc" msgstr "NSS (name service switch), glibc" #. type: cindex -#: guix-git/doc/guix.texi:1882 +#: guix-git/doc/guix.texi:1899 #, no-wrap msgid "nscd (name service caching daemon)" msgstr "nscd (name service caching daemon)" #. type: cindex -#: guix-git/doc/guix.texi:1883 +#: guix-git/doc/guix.texi:1900 #, no-wrap msgid "name service caching daemon (nscd)" msgstr "name service caching daemon (nscd)" #. type: Plain text -#: guix-git/doc/guix.texi:1890 +#: guix-git/doc/guix.texi:1907 msgid "When using Guix on a foreign distro, we @emph{strongly recommend} that the system run the GNU C library's @dfn{name service cache daemon}, @command{nscd}, which should be listening on the @file{/var/run/nscd/socket} socket. Failing to do that, applications installed with Guix may fail to look up host names or user accounts, or may even crash. The next paragraphs explain why." msgstr "Lorsque vous utilisez Guix sur une distro externe, nous @emph{recommandons fortement} que ce système fasse tourner le @dfn{démon de cache de service de noms} de la bibliothèque C de GNU, @command{nscd}, qui devrait écouter sur le socket @file{/var/run/nscd/socket}. Sans cela, les applications installées avec Guix peuvent échouer à résoudre des noms d'hôtes ou de comptes, ou même planter. Les paragraphes suivants expliquent pourquoi." #. type: file{#1} -#: guix-git/doc/guix.texi:1891 +#: guix-git/doc/guix.texi:1908 #, no-wrap msgid "nsswitch.conf" msgstr "nsswitch.conf" #. type: Plain text -#: guix-git/doc/guix.texi:1896 +#: guix-git/doc/guix.texi:1913 msgid "The GNU C library implements a @dfn{name service switch} (NSS), which is an extensible mechanism for ``name lookups'' in general: host name resolution, user accounts, and more (@pxref{Name Service Switch,,, libc, The GNU C Library Reference Manual})." msgstr "La bibliothèque C de GNU implémente un @dfn{name service switch} (NSS), qui est un mécanisme d'extension pour les « résolutions de noms » en général : résolution de nom d'hôte, de compte utilisateur·rice et plus (@pxref{Name Service Switch,,, libc, The GNU C Library Reference Manual})." #. type: cindex -#: guix-git/doc/guix.texi:1897 +#: guix-git/doc/guix.texi:1914 #, no-wrap msgid "Network information service (NIS)" msgstr "Network information service (NIS)" #. type: cindex -#: guix-git/doc/guix.texi:1898 +#: guix-git/doc/guix.texi:1915 #, no-wrap msgid "NIS (Network information service)" msgstr "NIS (Network information service)" #. type: Plain text -#: guix-git/doc/guix.texi:1907 +#: guix-git/doc/guix.texi:1924 msgid "Being extensible, the NSS supports @dfn{plugins}, which provide new name lookup implementations: for example, the @code{nss-mdns} plugin allow resolution of @code{.local} host names, the @code{nis} plugin allows user account lookup using the Network information service (NIS), and so on. These extra ``lookup services'' are configured system-wide in @file{/etc/nsswitch.conf}, and all the programs running on the system honor those settings (@pxref{NSS Configuration File,,, libc, The GNU C Reference Manual})." msgstr "Comme il est extensible, NSS supporte des @dfn{greffons} qui fournissent une nouvelle implémentation de résolution de nom : par exemple le greffon @code{nss-mdns} permet la résolution de noms d'hôtes en @code{.local}, le greffon @code{nis} permet la résolution de comptes avec le Network Information Service (NIS), etc. Ces « services de recherches » supplémentaires sont configurés au niveau du système dans @file{/etc/nsswitch.conf}, et tous les programmes qui tournent sur ce système honorent ces paramètres (@pxref{NSS Configuration File,,, libc, The GNU C Reference Manual})." #. type: Plain text -#: guix-git/doc/guix.texi:1917 +#: guix-git/doc/guix.texi:1934 msgid "When they perform a name lookup---for instance by calling the @code{getaddrinfo} function in C---applications first try to connect to the nscd; on success, nscd performs name lookups on their behalf. If the nscd is not running, then they perform the name lookup by themselves, by loading the name lookup services into their own address space and running it. These name lookup services---the @file{libnss_*.so} files---are @code{dlopen}'d, but they may come from the host system's C library, rather than from the C library the application is linked against (the C library coming from Guix)." msgstr "Lorsqu'ils essayent d'effectuer une résolution de nom — par exemple en appelant la fonction @code{getaddrinfo} en C — les applications essayent d'abord de se connecter au nscd ; en cas de réussite, nscd effectue la résolution de nom pour eux. Si le nscd ne tourne pas, alors ils effectuent la résolution eux-mêmes, en changeant les service de résolution dans leur propre espace d'adressage et en le lançant. Ce services de résolution de noms — les fichiers @file{libnns_*.so} — sont @code{dlopen}és mais ils peuvent provenir de la bibliothèque C du système, plutôt que de la bibliothèque C à laquelle l'application est liée (la bibliothèque C de Guix)." #. type: Plain text -#: guix-git/doc/guix.texi:1922 +#: guix-git/doc/guix.texi:1939 msgid "And this is where the problem is: if your application is linked against Guix's C library (say, glibc 2.24) and tries to load NSS plugins from another C library (say, @code{libnss_mdns.so} for glibc 2.22), it will likely crash or have its name lookups fail unexpectedly." msgstr "Et c'est là que se trouve le problème : si votre application est liée à la bibliothèque C de Guix (disons, glibc-2.24) et essaye de charger les greffons NSS d'une autre bibliothèque C (disons, @code{libnss_mdns.so} pour glibc-2.22), il est très probable qu'elle plante ou que sa résolution de nom échoue de manière inattendue." #. type: Plain text -#: guix-git/doc/guix.texi:1927 +#: guix-git/doc/guix.texi:1944 msgid "Running @command{nscd} on the system, among other advantages, eliminates this binary incompatibility problem because those @code{libnss_*.so} files are loaded in the @command{nscd} process, not in applications themselves." msgstr "Lancer @command{nscd} sur le système, entre autres avantages, élimine ce problème d'incompatibilité binaire car ces fichiers @code{libnss_*.so} sont chargés par le processus @command{nscd}, pas par l'application elle-même." #. type: subsection -#: guix-git/doc/guix.texi:1928 +#: guix-git/doc/guix.texi:1945 #, no-wrap msgid "X11 Fonts" msgstr "Polices X11" #. type: Plain text -#: guix-git/doc/guix.texi:1938 +#: guix-git/doc/guix.texi:1955 msgid "The majority of graphical applications use Fontconfig to locate and load fonts and perform X11-client-side rendering. The @code{fontconfig} package in Guix looks for fonts in @file{$HOME/.guix-profile} by default. Thus, to allow graphical applications installed with Guix to display fonts, you have to install fonts with Guix as well. Essential font packages include @code{font-ghostscript}, @code{font-dejavu}, and @code{font-gnu-freefont}." msgstr "La majorité des applications graphiques utilisent fontconfig pour trouver et charger les polices et effectuer le rendu côté client X11. Le paquet @code{fontconfig} dans Guix cherche les polices dans @file{$HOME/.guix-profile} par défaut. Ainsi, pour permettre aux applications graphiques installées avec Guix d'afficher des polices, vous devez aussi installer des polices avec Guix. Les paquets de polices essentiels sont @code{font-ghostscript}, @code{font-dejavu} et @code{font-gnu-freefont}." #. type: code{#1} -#: guix-git/doc/guix.texi:1939 +#: guix-git/doc/guix.texi:1956 #, no-wrap msgid "fc-cache" msgstr "fc-cache" #. type: cindex -#: guix-git/doc/guix.texi:1940 +#: guix-git/doc/guix.texi:1957 #, no-wrap msgid "font cache" msgstr "cache de polices" #. type: Plain text -#: guix-git/doc/guix.texi:1944 +#: guix-git/doc/guix.texi:1961 msgid "Once you have installed or removed fonts, or when you notice an application that does not find fonts, you may need to install Fontconfig and to force an update of its font cache by running:" msgstr "Lorsque vous installez ou supprimez des polices, ou lorsque vous remarquez qu'une application ne trouve pas les polices, vous pouvez avoir besoin d'installer Fontconfig et de forcer un rafraîchissement de son cache de police avec :" #. type: example -#: guix-git/doc/guix.texi:1948 +#: guix-git/doc/guix.texi:1965 #, no-wrap msgid "" "guix install fontconfig\n" @@ -7475,266 +7549,266 @@ msgstr "" "fc-cache -rv\n" #. type: Plain text -#: guix-git/doc/guix.texi:1956 +#: guix-git/doc/guix.texi:1973 msgid "To display text written in Chinese languages, Japanese, or Korean in graphical applications, consider installing @code{font-adobe-source-han-sans} or @code{font-wqy-zenhei}. The former has multiple outputs, one per language family (@pxref{Packages with Multiple Outputs}). For instance, the following command installs fonts for Chinese languages:" msgstr "Pour afficher des textes écrits en chinois, en japonais ou en coréen dans les applications graphiques, installez @code{font-adobe-source-han-sans} ou @code{font-wqy-zenhei}. Le premier a plusieurs sorties, une par famille de langue (@pxref{Packages with Multiple Outputs}). Par exemple, la commande suivante installe les polices pour le chinois :" #. type: example -#: guix-git/doc/guix.texi:1959 +#: guix-git/doc/guix.texi:1976 #, no-wrap msgid "guix install font-adobe-source-han-sans:cn\n" msgstr "guix install font-adobe-source-han-sans:cn\n" #. type: code{#1} -#: guix-git/doc/guix.texi:1961 +#: guix-git/doc/guix.texi:1978 #, no-wrap msgid "xterm" msgstr "xterm" #. type: Plain text -#: guix-git/doc/guix.texi:1965 +#: guix-git/doc/guix.texi:1982 msgid "Older programs such as @command{xterm} do not use Fontconfig and instead rely on server-side font rendering. Such programs require to specify a full name of a font using XLFD (X Logical Font Description), like this:" msgstr "Les vieux programmes comme @command{xterm} n'utilisent pas fontconfig et s'appuient sur le rendu du côté du serveur. Ces programmes ont besoin de spécifier le nom complet de la police en utilisant XLFD (X Logical Font Description), comme ceci :" #. type: example -#: guix-git/doc/guix.texi:1968 +#: guix-git/doc/guix.texi:1985 #, no-wrap msgid "-*-dejavu sans-medium-r-normal-*-*-100-*-*-*-*-*-1\n" msgstr "-*-dejavu sans-medium-r-normal-*-*-100-*-*-*-*-*-1\n" #. type: Plain text -#: guix-git/doc/guix.texi:1972 +#: guix-git/doc/guix.texi:1989 msgid "To be able to use such full names for the TrueType fonts installed in your Guix profile, you need to extend the font path of the X server:" msgstr "Pour pouvoir utiliser ces noms complets avec les polices TrueType installées dans votre profil Guix, vous devez étendre le chemin des polices du serveur X :" #. type: example -#: guix-git/doc/guix.texi:1977 +#: guix-git/doc/guix.texi:1994 #, no-wrap msgid "xset +fp $(dirname $(readlink -f ~/.guix-profile/share/fonts/truetype/fonts.dir))\n" msgstr "xset +fp $(dirname $(readlink -f ~/.guix-profile/share/fonts/truetype/fonts.dir))\n" #. type: code{#1} -#: guix-git/doc/guix.texi:1979 +#: guix-git/doc/guix.texi:1996 #, no-wrap msgid "xlsfonts" msgstr "xlsfonts" #. type: Plain text -#: guix-git/doc/guix.texi:1982 +#: guix-git/doc/guix.texi:1999 msgid "After that, you can run @code{xlsfonts} (from @code{xlsfonts} package) to make sure your TrueType fonts are listed there." msgstr "Ensuite, vous pouvez lancer @code{xlsfonts} (du paquet @code{xlsfonts}) pour vous assurer que vos polices TrueType y sont listées." #. type: code{#1} -#: guix-git/doc/guix.texi:1986 guix-git/doc/guix.texi:34161 +#: guix-git/doc/guix.texi:2003 guix-git/doc/guix.texi:34600 #, no-wrap msgid "nss-certs" msgstr "nss-certs" #. type: Plain text -#: guix-git/doc/guix.texi:1989 +#: guix-git/doc/guix.texi:2006 msgid "The @code{nss-certs} package provides X.509 certificates, which allow programs to authenticate Web servers accessed over HTTPS." msgstr "Le paquet @code{nss-certs} fournit les certificats X.509 qui permettent aux programmes d'authentifier les serveurs web par HTTPS@." #. type: Plain text -#: guix-git/doc/guix.texi:1994 +#: guix-git/doc/guix.texi:2011 msgid "When using Guix on a foreign distro, you can install this package and define the relevant environment variables so that packages know where to look for certificates. @xref{X.509 Certificates}, for detailed information." msgstr "Lorsque vous utilisez Guix sur une distribution externe, vous pouvez installer ce paquet et définir les variables d'environnement adéquates pour que les paquets sachent où trouver les certificats. @xref{X.509 Certificates}, pour des informations détaillées." #. type: code{#1} -#: guix-git/doc/guix.texi:1997 +#: guix-git/doc/guix.texi:2014 #, no-wrap msgid "emacs" msgstr "emacs" #. type: Plain text -#: guix-git/doc/guix.texi:2003 +#: guix-git/doc/guix.texi:2020 msgid "When you install Emacs packages with Guix, the Elisp files are placed under the @file{share/emacs/site-lisp/} directory of the profile in which they are installed. The Elisp libraries are made available to Emacs through the @env{EMACSLOADPATH} environment variable, which is set when installing Emacs itself." msgstr "Quand vous installez des paquets Emacs avec Guix, les fichiers Elips sont placés dans le répertoire @file{share/emacs/site-lisp/} du profil dans lequel ils sont installés. Les bibliothèques Elisp sont rendues disponibles dans Emacs avec la variable d'environnement @env{EMACSLOADPATH}, qui est initialisée à l'installation d'Emacs lui-même." #. type: Plain text -#: guix-git/doc/guix.texi:2010 +#: guix-git/doc/guix.texi:2027 msgid "Additionally, autoload definitions are automatically evaluated at the initialization of Emacs, by the Guix-specific @code{guix-emacs-autoload-packages} procedure. If, for some reason, you want to avoid auto-loading the Emacs packages installed with Guix, you can do so by running Emacs with the @option{--no-site-file} option (@pxref{Init File,,, emacs, The GNU Emacs Manual})." msgstr "En plus, des définitions autoload sont automatiquement évaluées au démarrage d'Emacs, par la procédure @code{guix-emacs-autoload-packages} de Guix. Si, pour quelque raison que ce soit, vous souhaitez éviter de charger automatiquement les paquets Emacs installés avec Guix, vous pouvez le faire en lançant Emacs avec l'option @option{--no-site-file} (@pxref{Init File,,, emacs, The GNU Emacs Manual})." #. type: cindex -#: guix-git/doc/guix.texi:2015 +#: guix-git/doc/guix.texi:2032 #, no-wrap msgid "Upgrading Guix, on a foreign distro" msgstr "Mise à niveau de Guix, sur une distro externe" #. type: Plain text -#: guix-git/doc/guix.texi:2018 +#: guix-git/doc/guix.texi:2035 msgid "To upgrade Guix, run:" msgstr "Pour mettre Guix à niveau, lancez :" #. type: example -#: guix-git/doc/guix.texi:2021 guix-git/doc/guix.texi:2879 +#: guix-git/doc/guix.texi:2038 guix-git/doc/guix.texi:2896 #, no-wrap msgid "guix pull\n" msgstr "guix pull\n" #. type: Plain text -#: guix-git/doc/guix.texi:2024 +#: guix-git/doc/guix.texi:2041 msgid "@xref{Invoking guix pull}, for more information." msgstr "@xref{Invoking guix pull}, pour plus d'informations." #. type: cindex -#: guix-git/doc/guix.texi:2025 +#: guix-git/doc/guix.texi:2042 #, no-wrap msgid "upgrading Guix for the root user, on a foreign distro" msgstr "mise à niveau de Guix pour l'utilisateur root, sur une distro externe" #. type: cindex -#: guix-git/doc/guix.texi:2026 +#: guix-git/doc/guix.texi:2043 #, no-wrap msgid "upgrading the Guix daemon, on a foreign distro" msgstr "mise à niveau du démon Guix, sur une distro externe" #. type: cindex -#: guix-git/doc/guix.texi:2027 +#: guix-git/doc/guix.texi:2044 #, no-wrap msgid "@command{guix pull} for the root user, on a foreign distro" msgstr "@command{guix pull} pour l'utilisateur·rice root, sur une distribution externe" #. type: Plain text -#: guix-git/doc/guix.texi:2030 +#: guix-git/doc/guix.texi:2047 msgid "On a foreign distro, you can upgrade the build daemon by running:" msgstr "Sur une distribution externe, vous pouvez mettre à jour le démon de construction en lançant :" #. type: example -#: guix-git/doc/guix.texi:2033 +#: guix-git/doc/guix.texi:2050 #, no-wrap msgid "sudo -i guix pull\n" msgstr "sudo -i guix pull\n" #. type: Plain text -#: guix-git/doc/guix.texi:2038 +#: guix-git/doc/guix.texi:2055 msgid "followed by (assuming your distro uses the systemd service management tool):" msgstr "suivi de (dans le cas où votre distribution utilise l'outil de gestion de services Systemd) :" #. type: example -#: guix-git/doc/guix.texi:2041 +#: guix-git/doc/guix.texi:2058 #, no-wrap msgid "systemctl restart guix-daemon.service\n" msgstr "systemctl restart guix-daemon.service\n" #. type: Plain text -#: guix-git/doc/guix.texi:2045 +#: guix-git/doc/guix.texi:2062 msgid "On Guix System, upgrading the daemon is achieved by reconfiguring the system (@pxref{Invoking guix system, @code{guix system reconfigure}})." msgstr "Sur Guix System, la mise à jour du démon est effectuée par la reconfiguration du système (@pxref{Invoking guix system, @code{guix system reconfigure}})." #. type: cindex -#: guix-git/doc/guix.texi:2052 +#: guix-git/doc/guix.texi:2069 #, no-wrap msgid "installing Guix System" msgstr "installer Guix System" #. type: cindex -#: guix-git/doc/guix.texi:2053 +#: guix-git/doc/guix.texi:2070 #, no-wrap msgid "Guix System, installation" msgstr "Guix System, installation" #. type: Plain text -#: guix-git/doc/guix.texi:2058 +#: guix-git/doc/guix.texi:2075 msgid "This section explains how to install Guix System on a machine. Guix, as a package manager, can also be installed on top of a running GNU/Linux system, @pxref{Installation}." msgstr "Cette section explique comment installer Guix System sur une machine. Guix, en tant que gestionnaire de paquets, peut aussi être installé sur un système GNU/Linux déjà installé, @pxref{Installation}." #. type: quotation -#: guix-git/doc/guix.texi:2067 +#: guix-git/doc/guix.texi:2084 msgid "You are reading this documentation with an Info reader. For details on how to use it, hit the @key{RET} key (``return'' or ``enter'') on the link that follows: @pxref{Top, Info reader,, info-stnd, Stand-alone GNU Info}. Hit @kbd{l} afterwards to come back here." msgstr "Vous lisez cette documentation avec un lecteur Info. Pour des détails sur son utilisation, appuyez sur la touche @key{ENTRÉE} (« Entrée » ou « à la ligne ») sur le lien suivant : @pxref{Top, Info reader,, info-stnd, Stand-alone GNU Info}. Appuyez ensuite sur @kbd{l} pour revenir ici." #. type: quotation -#: guix-git/doc/guix.texi:2070 +#: guix-git/doc/guix.texi:2087 msgid "Alternatively, run @command{info info} in another tty to keep the manual available." msgstr "Vous pouvez aussi exécuter @command{info info} dans un autre tty pour garder le manuel disponible." #. type: Plain text -#: guix-git/doc/guix.texi:2091 +#: guix-git/doc/guix.texi:2108 msgid "We consider Guix System to be ready for a wide range of ``desktop'' and server use cases. The reliability guarantees it provides---transactional upgrades and rollbacks, reproducibility---make it a solid foundation." -msgstr "Nous considérons Guix System comme prêt pour une grande variété de cas d'utilisation pour le « bureau » et le serveur. Les garantis de fiabilité qu'il fournit — les mises à jour transactionnelles, les retours en arrières et la reproductibilité — en font une solide fondation." +msgstr "Nous considérons Guix System comme prêt pour une grande variété de cas d'utilisation pour le « bureau » et le serveur. Les garanties de fiabilité qu'il fournit — les mises à jour transactionnelles, les retours en arrières et la reproductibilité — en font une solide fondation." #. type: Plain text -#: guix-git/doc/guix.texi:2094 +#: guix-git/doc/guix.texi:2111 msgid "Nevertheless, before you proceed with the installation, be aware of the following noteworthy limitations applicable to version @value{VERSION}:" msgstr "Néanmoins, avant de procéder à l'installation, soyez conscient de ces limitations les plus importantes qui s'appliquent à la version @value{VERSION} :" #. type: itemize -#: guix-git/doc/guix.texi:2099 +#: guix-git/doc/guix.texi:2116 msgid "More and more system services are provided (@pxref{Services}), but some may be missing." msgstr "De plus en plus de services systèmes sont fournis (@pxref{Services}) mais certains manquent toujours cruellement." #. type: itemize -#: guix-git/doc/guix.texi:2104 +#: guix-git/doc/guix.texi:2121 msgid "GNOME, Xfce, LXDE, and Enlightenment are available (@pxref{Desktop Services}), as well as a number of X11 window managers. However, KDE is currently missing." msgstr "GNOME, Xfce, LXDE et Enlightenment sont disponibles (@pxref{Desktop Services}), ainsi qu'un certain nombre de gestionnaires de fenêtres X11. Cependant, il manque actuellement KDE." #. type: Plain text -#: guix-git/doc/guix.texi:2109 +#: guix-git/doc/guix.texi:2126 msgid "More than a disclaimer, this is an invitation to report issues (and success stories!), and to join us in improving it. @xref{Contributing}, for more info." msgstr "Plus qu'un avertissement, c'est une invitation à rapporter les problèmes (et vos succès !) et à nous rejoindre pour améliorer la distribution. @xref{Contributing}, pour plus d'info." #. type: cindex -#: guix-git/doc/guix.texi:2114 +#: guix-git/doc/guix.texi:2131 #, no-wrap msgid "hardware support on Guix System" msgstr "prise en charge du matériel sur Guix System" #. type: Plain text -#: guix-git/doc/guix.texi:2123 +#: guix-git/doc/guix.texi:2140 msgid "GNU@tie{}Guix focuses on respecting the user's computing freedom. It builds around the kernel Linux-libre, which means that only hardware for which free software drivers and firmware exist is supported. Nowadays, a wide range of off-the-shelf hardware is supported on GNU/Linux-libre---from keyboards to graphics cards to scanners and Ethernet controllers. Unfortunately, there are still areas where hardware vendors deny users control over their own computing, and such hardware is not supported on Guix System." msgstr "GNU@tie{}Guix se concentre sur le respect des libertés de ses utilisateurs et utilisatrices. Il est construit autour du noyau Linux-libre, ce qui signifie que seuls les matériels pour lesquels des pilotes logiciels et des microgiciels libres sont disponibles sont pris en charge. De nos jours, une grande gamme de matériel qu'on peut acheter est prise en charge par GNU/Linux-libre — des claviers aux cartes graphiques en passant par les scanners et les contrôleurs Ethernet. Malheureusement, il reste des produits dont les fabricants refusent de laisser le contrôle aux utilisateur·rice·s sur leur propre utilisation de l'ordinateur, et ces matériels ne sont pas pris en charge par Guix System." #. type: cindex -#: guix-git/doc/guix.texi:2124 +#: guix-git/doc/guix.texi:2141 #, no-wrap msgid "WiFi, hardware support" msgstr "WiFi, support matériel" #. type: Plain text -#: guix-git/doc/guix.texi:2133 +#: guix-git/doc/guix.texi:2150 msgid "One of the main areas where free drivers or firmware are lacking is WiFi devices. WiFi devices known to work include those using Atheros chips (AR9271 and AR7010), which corresponds to the @code{ath9k} Linux-libre driver, and those using Broadcom/AirForce chips (BCM43xx with Wireless-Core Revision 5), which corresponds to the @code{b43-open} Linux-libre driver. Free firmware exists for both and is available out-of-the-box on Guix System, as part of @code{%base-firmware} (@pxref{operating-system Reference, @code{firmware}})." msgstr "L'un des types de matériels où les pilotes ou les microgiciels sont le moins disponibles sont les appareils WiFi. Les appareils WiFi connus pour fonctionner sont ceux qui utilisent des puces Atheros (AR9271 et AR7010) qui correspondent au pilote @code{ath9k} de Linux-libre, et ceux qui utilisent des puces Broadcom/AirForce (BCM43xx avec la révision Wireless-Core 5), qui correspondent au pilote @code{b43-open} de Linux-libre. Des microgiciels libres existent pour les deux et sont disponibles directement sur Guix System, dans @var{%base-firmware} (@pxref{operating-system Reference, @code{firmware}})." #. type: cindex -#: guix-git/doc/guix.texi:2134 +#: guix-git/doc/guix.texi:2151 #, no-wrap msgid "RYF, Respects Your Freedom" msgstr "RYF, Respects Your Freedom" #. type: Plain text -#: guix-git/doc/guix.texi:2140 +#: guix-git/doc/guix.texi:2157 msgid "The @uref{https://www.fsf.org/, Free Software Foundation} runs @uref{https://www.fsf.org/ryf, @dfn{Respects Your Freedom}} (RYF), a certification program for hardware products that respect your freedom and your privacy and ensure that you have control over your device. We encourage you to check the list of RYF-certified devices." msgstr "La @uref{https://www.fsf.org/, Free Software Foundation} a un programme de certification nommé @uref{https://www.fsf.org/ryf, @dfn{Respects Your Freedom}} (RYF), pour les produits matériels qui respectent votre liberté et votre vie privée en s'assurant que vous avez le contrôle sur l'appareil. Nous vous encourageons à vérifier la liste des appareils certifiés par RYF." #. type: Plain text -#: guix-git/doc/guix.texi:2144 +#: guix-git/doc/guix.texi:2161 msgid "Another useful resource is the @uref{https://www.h-node.org/, H-Node} web site. It contains a catalog of hardware devices with information about their support in GNU/Linux." msgstr "Une autre ressource utile est le site web @uref{https://www.h-node.org/, H-Node}. Il contient un catalogue d'appareils avec des informations sur leur support dans GNU/Linux." #. type: Plain text -#: guix-git/doc/guix.texi:2153 +#: guix-git/doc/guix.texi:2170 msgid "An ISO-9660 installation image that can be written to a USB stick or burnt to a DVD can be downloaded from @indicateurl{@value{BASE-URL}/guix-system-install-@value{VERSION}.x86_64-linux.iso}, where you can replace @code{x86_64-linux} with one of:" msgstr "Une image d'installation ISO-9660 qui peut être écrite sur une clé USB ou être gravée sur un DVD est téléchargeable à partir de @indicateurl{@value{BASE-URL}/guix-system-install-@value{VERSION}.x86_64-linux.iso}, où vous pouvez remplacer @code{x86_64-linux} par l'un des éléments suivants :" #. type: table -#: guix-git/doc/guix.texi:2157 +#: guix-git/doc/guix.texi:2174 msgid "for a GNU/Linux system on Intel/AMD-compatible 64-bit CPUs;" msgstr "pour un système GNU/Linux sur un CPU compatible Intel/AMD 64-bits ;" #. type: table -#: guix-git/doc/guix.texi:2160 +#: guix-git/doc/guix.texi:2177 msgid "for a 32-bit GNU/Linux system on Intel-compatible CPUs." msgstr "pour un système GNU/Linux sur un CPU compatible Intel 32-bits." #. type: Plain text -#: guix-git/doc/guix.texi:2165 +#: guix-git/doc/guix.texi:2182 msgid "Make sure to download the associated @file{.sig} file and to verify the authenticity of the image against it, along these lines:" msgstr "Assurez-vous de télécharger les fichiers @file{.sig} associés et de vérifier l'authenticité de l'image avec, de cette manière :" #. type: example -#: guix-git/doc/guix.texi:2169 +#: guix-git/doc/guix.texi:2186 #, no-wrap msgid "" "$ wget @value{BASE-URL}/guix-system-install-@value{VERSION}.x86_64-linux.iso.sig\n" @@ -7744,7 +7818,7 @@ msgstr "" "$ gpg --verify guix-system-install-@value{VERSION}.x86_64-linux.iso.sig\n" #. type: example -#: guix-git/doc/guix.texi:2177 +#: guix-git/doc/guix.texi:2194 #, no-wrap msgid "" "$ wget @value{OPENPGP-SIGNING-KEY-URL} \\\n" @@ -7754,23 +7828,23 @@ msgstr "" " -qO - | gpg --import -\n" #. type: Plain text -#: guix-git/doc/guix.texi:2189 +#: guix-git/doc/guix.texi:2206 msgid "This image contains the tools necessary for an installation. It is meant to be copied @emph{as is} to a large-enough USB stick or DVD." msgstr "Cette image contient les outils nécessaires à l'installation. Elle est faite pour être copiée @emph{telle quelle} sur une clef USB assez grosse ou un DVD." #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2190 +#: guix-git/doc/guix.texi:2207 #, no-wrap msgid "Copying to a USB Stick" msgstr "Copie sur une clef USB" #. type: Plain text -#: guix-git/doc/guix.texi:2195 +#: guix-git/doc/guix.texi:2212 msgid "Insert a USB stick of 1@tie{}GiB or more into your machine, and determine its device name. Assuming that the USB stick is known as @file{/dev/sdX}, copy the image with:" msgstr "Insérez la clef USB de 1@tie{}Gio ou plus dans votre machine et déterminez son nom d'appareil. En supposant que la clef usb est connue sous le nom de @file{/dev/sdX}, copiez l'image avec :" #. type: example -#: guix-git/doc/guix.texi:2199 +#: guix-git/doc/guix.texi:2216 #, no-wrap msgid "" "dd if=guix-system-install-@value{VERSION}.x86_64-linux.iso of=/dev/sdX status=progress\n" @@ -7780,238 +7854,238 @@ msgstr "" "sync\n" #. type: Plain text -#: guix-git/doc/guix.texi:2202 +#: guix-git/doc/guix.texi:2219 msgid "Access to @file{/dev/sdX} usually requires root privileges." msgstr "Accéder à @file{/dev/sdX} requiert généralement les privilèges d'administration." #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2203 +#: guix-git/doc/guix.texi:2220 #, no-wrap msgid "Burning on a DVD" msgstr "Graver sur un DVD" #. type: Plain text -#: guix-git/doc/guix.texi:2208 +#: guix-git/doc/guix.texi:2225 msgid "Insert a blank DVD into your machine, and determine its device name. Assuming that the DVD drive is known as @file{/dev/srX}, copy the image with:" msgstr "Insérez un DVD vierge dans votre machine et déterminez son nom d'appareil. En supposant que le DVD soit connu sont le nom de @file{/dev/srX}, copiez l'image avec :" #. type: example -#: guix-git/doc/guix.texi:2211 +#: guix-git/doc/guix.texi:2228 #, no-wrap msgid "growisofs -dvd-compat -Z /dev/srX=guix-system-install-@value{VERSION}.x86_64-linux.iso\n" msgstr "growisofs -dvd-compat -Z /dev/srX=guix-system-install-@value{VERSION}.x86_64-linux.iso\n" #. type: Plain text -#: guix-git/doc/guix.texi:2214 +#: guix-git/doc/guix.texi:2231 msgid "Access to @file{/dev/srX} usually requires root privileges." msgstr "Accéder à @file{/dev/srX} requiert généralement les privilèges root." #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2215 +#: guix-git/doc/guix.texi:2232 #, no-wrap msgid "Booting" msgstr "Démarrage" #. type: Plain text -#: guix-git/doc/guix.texi:2222 +#: guix-git/doc/guix.texi:2239 msgid "Once this is done, you should be able to reboot the system and boot from the USB stick or DVD@. The latter usually requires you to get in the BIOS or UEFI boot menu, where you can choose to boot from the USB stick. In order to boot from Libreboot, switch to the command mode by pressing the @kbd{c} key and type @command{search_grub usb}." msgstr "Une fois que c'est fait, vous devriez pouvoir redémarrer le système et démarrer depuis la clé USB ou le DVD@. Pour cela, vous devrez généralement entrer dans le menu de démarrage BIOS ou UEFI, où vous pourrez choisir de démarrer sur la clé USB. Pour démarrer depuis Libreboot, passez en mode de commande en appuyant sur la touche @kbd{c} et en tapant @command{search grub usb}." #. type: Plain text -#: guix-git/doc/guix.texi:2225 +#: guix-git/doc/guix.texi:2242 msgid "@xref{Installing Guix in a VM}, if, instead, you would like to install Guix System in a virtual machine (VM)." msgstr "@xref{Installing Guix in a VM}, si, à la place, vous souhaitez installer Guix System dans une machine virtuelle (VM)." #. type: Plain text -#: guix-git/doc/guix.texi:2235 +#: guix-git/doc/guix.texi:2252 msgid "Once you have booted, you can use the guided graphical installer, which makes it easy to get started (@pxref{Guided Graphical Installation}). Alternatively, if you are already familiar with GNU/Linux and if you want more control than what the graphical installer provides, you can choose the ``manual'' installation process (@pxref{Manual Installation})." msgstr "Une fois que vous avez démarré, vous pouvez utiliser l'installateur graphique, qui rend facile la prise en main (@pxref{Guided Graphical Installation}). Sinon, si vous êtes déjà familier avec GNU/Linux et que vous voulez plus de contrôle que ce que l'installateur graphique propose, vous pouvez choisir le processus d'installation « manuel » (@pxref{Manual Installation})." #. type: Plain text -#: guix-git/doc/guix.texi:2243 +#: guix-git/doc/guix.texi:2260 msgid "The graphical installer is available on TTY1. You can obtain root shells on TTYs 3 to 6 by hitting @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4}, etc. TTY2 shows this documentation and you can reach it with @kbd{ctrl-alt-f2}. Documentation is browsable using the Info reader commands (@pxref{Top,,, info-stnd, Stand-alone GNU Info}). The installation system runs the GPM mouse daemon, which allows you to select text with the left mouse button and to paste it with the middle button." msgstr "L'installateur graphique est disponible sur le TTY1. Vous pouvez obtenir des shells root sur les TTY 3 à 6 en tapant @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4} etc. Le TTY2 affiche cette documentation que vous pouvez atteindre avec @kbd{ctrl-alt-f2}. On peut naviguer dans la documentation avec les commandes du lecteur Info (@pxref{Top,,, info-stnd, Stand-alone GNU Info}). Le démon de souris GPM tourne sur le système d'installation, ce qui vous permet de sélectionner du texte avec le bouton gauche de la souris et de le coller en appuyant sur la molette." #. type: quotation -#: guix-git/doc/guix.texi:2248 +#: guix-git/doc/guix.texi:2265 msgid "Installation requires access to the Internet so that any missing dependencies of your system configuration can be downloaded. See the ``Networking'' section below." msgstr "L'installation nécessite un accès au réseau pour que les dépendances manquantes de votre configuration système puissent être téléchargées. Voyez la section « réseau » plus bas." #. type: Plain text -#: guix-git/doc/guix.texi:2255 +#: guix-git/doc/guix.texi:2272 msgid "The graphical installer is a text-based user interface. It will guide you, with dialog boxes, through the steps needed to install GNU@tie{}Guix System." msgstr "L'installateur graphique est une interface utilisateur en mode texte. Il vous guidera, avec des boîtes de dialogue, le long des étapes requises pour installer GNU@tie{}Guix System." #. type: Plain text -#: guix-git/doc/guix.texi:2260 +#: guix-git/doc/guix.texi:2277 msgid "The first dialog boxes allow you to set up the system as you use it during the installation: you can choose the language, keyboard layout, and set up networking, which will be used during the installation. The image below shows the networking dialog." msgstr "La première boîte de dialogue vous permet de paramétrer le système comme vous le souhaitez pendant l'installation : vous pouvez choisir la langue, la disposition du clavier et paramétrer le réseau, qui sera utilisé pendant l'installation. L'image ci-dessous montre le dialogue pour le réseau." #. type: Plain text -#: guix-git/doc/guix.texi:2262 +#: guix-git/doc/guix.texi:2279 msgid "@image{images/installer-network,5in,, networking setup with the graphical installer}" msgstr "@image{images/installer-network,5in,, paramétrage du réseau avec l'installateur graphique}" #. type: Plain text -#: guix-git/doc/guix.texi:2267 +#: guix-git/doc/guix.texi:2284 msgid "Later steps allow you to partition your hard disk, as shown in the image below, to choose whether or not to use encrypted file systems, to enter the host name and root password, and to create an additional account, among other things." msgstr "Les étapes suivantes vous permettent de partitionner votre disque dur, comme le montre l'image ci-dessous, de choisir si vous voulez ou non utiliser des systèmes de fichiers chiffrés, de saisir le nom d'hôte et le mot de passe root et de créer un compte supplémentaire, entre autres choses." #. type: Plain text -#: guix-git/doc/guix.texi:2269 +#: guix-git/doc/guix.texi:2286 msgid "@image{images/installer-partitions,5in,, partitioning with the graphical installer}" msgstr "@image{images/installer-partitions,5in,, partitionnement du disque avec l'installateur graphique}" #. type: Plain text -#: guix-git/doc/guix.texi:2272 +#: guix-git/doc/guix.texi:2289 msgid "Note that, at any time, the installer allows you to exit the current installation step and resume at a previous step, as show in the image below." msgstr "Remarquez que, à tout moment, l'installateur vous permet de sortir de l'étape d'installation actuelle et de recommencer une étape précédente, comme le montre l'image ci-dessous." #. type: Plain text -#: guix-git/doc/guix.texi:2274 +#: guix-git/doc/guix.texi:2291 msgid "@image{images/installer-resume,5in,, resuming the installation process}" msgstr "@image{images/installer-resume,5in,, reprise du processus d'installation}" #. type: Plain text -#: guix-git/doc/guix.texi:2279 +#: guix-git/doc/guix.texi:2296 msgid "Once you're done, the installer produces an operating system configuration and displays it (@pxref{Using the Configuration System}). At that point you can hit ``OK'' and installation will proceed. On success, you can reboot into the new system and enjoy. @xref{After System Installation}, for what's next!" msgstr "Une fois que vous avez fini, l'installateur produit une configuration de système d'exploitation et vous la montre (@pxref{Using the Configuration System}). À ce moment, vous pouvez appuyer sur « OK » et l'installation continuera. Lorsqu'elle aura réussi, vous pourrez redémarrer sur le nouveau système et vous amuser. @xref{After System Installation}, pour la suite des festivités !" #. type: Plain text -#: guix-git/doc/guix.texi:2289 +#: guix-git/doc/guix.texi:2306 msgid "This section describes how you would ``manually'' install GNU@tie{}Guix System on your machine. This option requires familiarity with GNU/Linux, with the shell, and with common administration tools. If you think this is not for you, consider using the guided graphical installer (@pxref{Guided Graphical Installation})." msgstr "Cette section décrit comme vous pourriez installe « manuellement » GNU@tie{}Guix System sur votre machine. Cette option nécessite que vous soyez familier avec GNU/Linux, le shell et avec les outils d'administration usuels. Si vous pensez que ce n'est pas pour vous, pensez à utiliser l'installateur graphique (@pxref{Guided Graphical Installation})." #. type: Plain text -#: guix-git/doc/guix.texi:2295 +#: guix-git/doc/guix.texi:2312 msgid "The installation system provides root shells on TTYs 3 to 6; press @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4}, and so on to reach them. It includes many common tools needed to install the system. But it is also a full-blown Guix System, which means that you can install additional packages, should you need it, using @command{guix package} (@pxref{Invoking guix package})." msgstr "Le système d'installation fournit des shells root sur les TTY 3 à 6 ; appuyez sur @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4} etc pour y accéder. Il inclus plusieurs outils usuels pour requis pour cette tâche. Mais c'est aussi un système Guix complet, ce qui signifie que vous pouvez installer des paquets supplémentaires si vous en avez besoin, avec @command{guix package} (@pxref{Invoking guix package})." #. type: subsection -#: guix-git/doc/guix.texi:2302 +#: guix-git/doc/guix.texi:2319 #, no-wrap msgid "Keyboard Layout, Networking, and Partitioning" msgstr "Disposition du clavier réseau et partitionnement" #. type: Plain text -#: guix-git/doc/guix.texi:2307 +#: guix-git/doc/guix.texi:2324 msgid "Before you can install the system, you may want to adjust the keyboard layout, set up networking, and partition your target hard disk. This section will guide you through this." msgstr "Avant que vous ne puissiez installer le système, vous voudrez sans doute ajuster la disposition du clavier, paramétrer le réseau et partitionner le disque dur cible. Cette section vous guidera à travers tout cela." #. type: cindex -#: guix-git/doc/guix.texi:2310 guix-git/doc/guix.texi:15584 +#: guix-git/doc/guix.texi:2327 guix-git/doc/guix.texi:15941 #, no-wrap msgid "keyboard layout" msgstr "disposition du clavier" #. type: Plain text -#: guix-git/doc/guix.texi:2314 +#: guix-git/doc/guix.texi:2331 msgid "The installation image uses the US qwerty keyboard layout. If you want to change it, you can use the @command{loadkeys} command. For example, the following command selects the Dvorak keyboard layout:" msgstr "L'image d'installation utilise la disposition clavier qwerty (US). Si vous voulez la changer, vous pouvez utiliser la commande @command{loadkeys}. Par exemple, la commande suivante sélectionne la disposition Dvorak :" #. type: example -#: guix-git/doc/guix.texi:2317 +#: guix-git/doc/guix.texi:2334 #, no-wrap msgid "loadkeys dvorak\n" msgstr "loadkeys dvorak\n" #. type: Plain text -#: guix-git/doc/guix.texi:2322 +#: guix-git/doc/guix.texi:2339 msgid "See the files under @file{/run/current-system/profile/share/keymaps} for a list of available keyboard layouts. Run @command{man loadkeys} for more information." msgstr "Consultez les fichiers dans @file{/run/current-system/profile/share/keymaps} pour trouver une liste des dispositions disponibles. Lancez @command{man loadkey} pour plus d'informations." #. type: subsubsection -#: guix-git/doc/guix.texi:2323 +#: guix-git/doc/guix.texi:2340 #, no-wrap msgid "Networking" msgstr "Réseau" #. type: Plain text -#: guix-git/doc/guix.texi:2326 +#: guix-git/doc/guix.texi:2343 msgid "Run the following command to see what your network interfaces are called:" msgstr "Lancez la commande suivante pour voir comment vos interfaces réseau sont appelées :" #. type: example -#: guix-git/doc/guix.texi:2329 +#: guix-git/doc/guix.texi:2346 #, no-wrap msgid "ifconfig -a\n" msgstr "ifconfig -a\n" #. type: table -#: guix-git/doc/guix.texi:2333 guix-git/doc/guix.texi:2355 +#: guix-git/doc/guix.texi:2350 guix-git/doc/guix.texi:2372 msgid "@dots{} or, using the GNU/Linux-specific @command{ip} command:" msgstr "@dots{} ou, avec la commande spécifique à GNU/Linux @command{ip} :" #. type: example -#: guix-git/doc/guix.texi:2336 +#: guix-git/doc/guix.texi:2353 #, no-wrap msgid "ip address\n" msgstr "ip address\n" #. type: Plain text -#: guix-git/doc/guix.texi:2343 +#: guix-git/doc/guix.texi:2360 msgid "Wired interfaces have a name starting with @samp{e}; for example, the interface corresponding to the first on-board Ethernet controller is called @samp{eno1}. Wireless interfaces have a name starting with @samp{w}, like @samp{w1p2s0}." msgstr "Les interfaces filaires ont un nom qui commence par @samp{e} ; par exemple, l'interface qui correspond au premier contrôleur Ethernet sur la carte mère est appelé @samp{eno1}. Les interfaces sans-fil ont un nom qui commence par @samp{w}, comme @samp{w1p2s0}." #. type: item -#: guix-git/doc/guix.texi:2345 +#: guix-git/doc/guix.texi:2362 #, no-wrap msgid "Wired connection" msgstr "Connexion filaire" #. type: table -#: guix-git/doc/guix.texi:2348 +#: guix-git/doc/guix.texi:2365 msgid "To configure a wired network run the following command, substituting @var{interface} with the name of the wired interface you want to use." msgstr "Pour configure une connexion filaire, lancez la commande suivante, en remplaçant @var{interface} par le nom de l'interface filaire que vous voulez utiliser." #. type: example -#: guix-git/doc/guix.texi:2351 +#: guix-git/doc/guix.texi:2368 #, no-wrap msgid "ifconfig @var{interface} up\n" msgstr "ifconfig @var{interface} up\n" #. type: example -#: guix-git/doc/guix.texi:2358 +#: guix-git/doc/guix.texi:2375 #, no-wrap msgid "ip link set @var{interface} up\n" msgstr "ip link set @var{interface} up\n" #. type: item -#: guix-git/doc/guix.texi:2360 +#: guix-git/doc/guix.texi:2377 #, no-wrap msgid "Wireless connection" msgstr "Connexion sans-fil" #. type: cindex -#: guix-git/doc/guix.texi:2361 guix-git/doc/guix.texi:17484 +#: guix-git/doc/guix.texi:2378 guix-git/doc/guix.texi:17846 #, no-wrap msgid "wireless" msgstr "sans-fil" #. type: cindex -#: guix-git/doc/guix.texi:2362 guix-git/doc/guix.texi:17485 +#: guix-git/doc/guix.texi:2379 guix-git/doc/guix.texi:17847 #, no-wrap msgid "WiFi" msgstr "WiFi" #. type: table -#: guix-git/doc/guix.texi:2367 +#: guix-git/doc/guix.texi:2384 msgid "To configure wireless networking, you can create a configuration file for the @command{wpa_supplicant} configuration tool (its location is not important) using one of the available text editors such as @command{nano}:" msgstr "Pour configurer le réseau sans-fil, vous pouvez créer un fichier de configuration pour l'outil de configuration @command{wpa_supplicant} (son emplacement importe peu) avec l'un des éditeurs de texte disponibles comme @command{nano} :" #. type: example -#: guix-git/doc/guix.texi:2370 +#: guix-git/doc/guix.texi:2387 #, no-wrap msgid "nano wpa_supplicant.conf\n" msgstr "nano wpa_supplicant.conf\n" #. type: table -#: guix-git/doc/guix.texi:2375 +#: guix-git/doc/guix.texi:2392 msgid "As an example, the following stanza can go to this file and will work for many wireless networks, provided you give the actual SSID and passphrase for the network you are connecting to:" msgstr "Par exemple, la déclaration qui suit peut aller dans ce fichier et fonctionnera pour plusieurs réseaux sans-fil, si vous donnez le vrai SSID et la phrase de passe pour le réseau auquel vous vous connectez :" #. type: example -#: guix-git/doc/guix.texi:2382 +#: guix-git/doc/guix.texi:2399 #, no-wrap msgid "" "network=@{\n" @@ -8027,229 +8101,229 @@ msgstr "" "@}\n" #. type: table -#: guix-git/doc/guix.texi:2387 +#: guix-git/doc/guix.texi:2404 msgid "Start the wireless service and run it in the background with the following command (substitute @var{interface} with the name of the network interface you want to use):" msgstr "Démarrez le service sans-fil et lancez-le en tâche de fond avec la commande suivante (en remplaçant @var{interface} par le nom de l'interface réseau que vous voulez utiliser) :" #. type: example -#: guix-git/doc/guix.texi:2390 +#: guix-git/doc/guix.texi:2407 #, no-wrap msgid "wpa_supplicant -c wpa_supplicant.conf -i @var{interface} -B\n" msgstr "wpa_supplicant -c wpa_supplicant.conf -i @var{interface} -B\n" #. type: table -#: guix-git/doc/guix.texi:2393 +#: guix-git/doc/guix.texi:2410 msgid "Run @command{man wpa_supplicant} for more information." msgstr "Lancez @command{man wpa_supplicant} pour plus d'informations." #. type: cindex -#: guix-git/doc/guix.texi:2395 +#: guix-git/doc/guix.texi:2412 #, no-wrap msgid "DHCP" msgstr "DHCP" #. type: Plain text -#: guix-git/doc/guix.texi:2398 +#: guix-git/doc/guix.texi:2415 msgid "At this point, you need to acquire an IP address. On a network where IP addresses are automatically assigned @i{via} DHCP, you can run:" msgstr "À partir de ce moment, vous avez besoin d'une adresse IP. Sur les réseaux où les IP sont automatiquement attribuée par DHCP, vous pouvez lancer :" #. type: example -#: guix-git/doc/guix.texi:2401 +#: guix-git/doc/guix.texi:2418 #, no-wrap msgid "dhclient -v @var{interface}\n" msgstr "dhclient -v @var{interface}\n" #. type: Plain text -#: guix-git/doc/guix.texi:2404 +#: guix-git/doc/guix.texi:2421 msgid "Try to ping a server to see if networking is up and running:" msgstr "Essayez de pinger un serveur pour voir si le réseau fonctionne :" #. type: example -#: guix-git/doc/guix.texi:2407 +#: guix-git/doc/guix.texi:2424 #, no-wrap msgid "ping -c 3 gnu.org\n" msgstr "ping -c 3 gnu.org\n" #. type: Plain text -#: guix-git/doc/guix.texi:2411 +#: guix-git/doc/guix.texi:2428 msgid "Setting up network access is almost always a requirement because the image does not contain all the software and tools that may be needed." msgstr "Mettre en place un accès réseau est presque toujours une nécessité parce que l'image ne contient pas tous les logiciels et les outils dont vous pourriez avoir besoin." #. type: cindex -#: guix-git/doc/guix.texi:2412 +#: guix-git/doc/guix.texi:2429 #, no-wrap msgid "proxy, during system installation" msgstr "mandataire, pendant l'installation du système" #. type: Plain text -#: guix-git/doc/guix.texi:2415 +#: guix-git/doc/guix.texi:2432 msgid "If you need HTTP and HTTPS access to go through a proxy, run the following command:" msgstr "Si vous avez besoin d'un accès HTTP et HTTPS pour passer à travers un proxy, lancez la commande suivante :" #. type: example -#: guix-git/doc/guix.texi:2418 +#: guix-git/doc/guix.texi:2435 #, no-wrap msgid "herd set-http-proxy guix-daemon @var{URL}\n" msgstr "herd set-http-proxy guix-daemon @var{URL}\n" #. type: Plain text -#: guix-git/doc/guix.texi:2423 +#: guix-git/doc/guix.texi:2440 msgid "where @var{URL} is the proxy URL, for example @code{http://example.org:8118}." msgstr "où @var{URL} est l'URL du proxy, par exemple @code{http://example.org:8118}." #. type: cindex -#: guix-git/doc/guix.texi:2424 +#: guix-git/doc/guix.texi:2441 #, no-wrap msgid "installing over SSH" msgstr "installer par SSH" #. type: Plain text -#: guix-git/doc/guix.texi:2427 +#: guix-git/doc/guix.texi:2444 msgid "If you want to, you can continue the installation remotely by starting an SSH server:" msgstr "Si vous le souhaitez, vous pouvez continuer l'installation à distance en démarrant un serveur SSH :" #. type: example -#: guix-git/doc/guix.texi:2430 +#: guix-git/doc/guix.texi:2447 #, no-wrap msgid "herd start ssh-daemon\n" msgstr "herd start ssh-daemon\n" #. type: Plain text -#: guix-git/doc/guix.texi:2434 +#: guix-git/doc/guix.texi:2451 msgid "Make sure to either set a password with @command{passwd}, or configure OpenSSH public key authentication before logging in." msgstr "Assurez-vous soit de définir un mot de passe avec @command{passwd}, soit de configurer l'authentification par clef OpenSSH avant de vous connecter." #. type: subsubsection -#: guix-git/doc/guix.texi:2435 +#: guix-git/doc/guix.texi:2452 #, no-wrap msgid "Disk Partitioning" msgstr "Partitionnement" #. type: Plain text -#: guix-git/doc/guix.texi:2439 +#: guix-git/doc/guix.texi:2456 msgid "Unless this has already been done, the next step is to partition, and then format the target partition(s)." msgstr "À moins que vous ne l'ayez déjà fait, l'étape suivante consiste à partitionner le disque puis à formater les partitions cibles." #. type: Plain text -#: guix-git/doc/guix.texi:2444 +#: guix-git/doc/guix.texi:2461 msgid "The installation image includes several partitioning tools, including Parted (@pxref{Overview,,, parted, GNU Parted User Manual}), @command{fdisk}, and @command{cfdisk}. Run it and set up your disk with the partition layout you want:" msgstr "L'image d'installation inclus plusieurs outils de partitionnement, dont Parted (@pxref{Overview,,, parted, GNU Parted User Manual}), @command{fdisk}, et @command{cfdisk}. Lancez-en un et paramétrez votre disque avec le partitionnement qui vous convient :" #. type: example -#: guix-git/doc/guix.texi:2447 +#: guix-git/doc/guix.texi:2464 #, no-wrap msgid "cfdisk\n" msgstr "cfdisk\n" #. type: Plain text -#: guix-git/doc/guix.texi:2453 +#: guix-git/doc/guix.texi:2470 msgid "If your disk uses the GUID Partition Table (GPT) format and you plan to install BIOS-based GRUB (which is the default), make sure a BIOS Boot Partition is available (@pxref{BIOS installation,,, grub, GNU GRUB manual})." msgstr "Si votre disque utilise le format des tables de partitions GUID (GPT) et que vous souhaitez installer un GRUB pour système BIOS (c'est le cas par défaut), assurez-vous de créer qu'une partition de démarrage BIOS soit bien disponible (@pxref{BIOS installation,,, grub, GNU GRUB manual})." #. type: cindex -#: guix-git/doc/guix.texi:2454 +#: guix-git/doc/guix.texi:2471 #, no-wrap msgid "EFI, installation" msgstr "EFI, installation" #. type: cindex -#: guix-git/doc/guix.texi:2455 +#: guix-git/doc/guix.texi:2472 #, no-wrap msgid "UEFI, installation" msgstr "UEFI, installation" #. type: cindex -#: guix-git/doc/guix.texi:2456 +#: guix-git/doc/guix.texi:2473 #, no-wrap msgid "ESP, EFI system partition" msgstr "ESP, partition système EFI" #. type: Plain text -#: guix-git/doc/guix.texi:2460 +#: guix-git/doc/guix.texi:2477 msgid "If you instead wish to use EFI-based GRUB, a FAT32 @dfn{EFI System Partition} (ESP) is required. This partition can be mounted at @file{/boot/efi} for instance and must have the @code{esp} flag set. E.g., for @command{parted}:" msgstr "Si vous souhaitez à la place utilise GRUB pour système EFI, vous devrez avoir une @dfn{partition système EFI} (ESP) en FAT32. Cette partition peut être montée dans @file{/boot/efi} par exemple et doit avoir le drapeau @code{esp}. P.@: ex.@: pour @command{parted} :" #. type: example -#: guix-git/doc/guix.texi:2463 +#: guix-git/doc/guix.texi:2480 #, no-wrap msgid "parted /dev/sda set 1 esp on\n" msgstr "parted /dev/sda set 1 esp on\n" #. type: vindex -#: guix-git/doc/guix.texi:2466 guix-git/doc/guix.texi:34580 +#: guix-git/doc/guix.texi:2483 guix-git/doc/guix.texi:35019 #, no-wrap msgid "grub-bootloader" msgstr "grub-bootloader" #. type: vindex -#: guix-git/doc/guix.texi:2467 guix-git/doc/guix.texi:34574 +#: guix-git/doc/guix.texi:2484 guix-git/doc/guix.texi:35013 #, no-wrap msgid "grub-efi-bootloader" msgstr "grub-efi-bootloader" #. type: quotation -#: guix-git/doc/guix.texi:2474 +#: guix-git/doc/guix.texi:2491 msgid "Unsure whether to use EFI- or BIOS-based GRUB? If the directory @file{/sys/firmware/efi} exists in the installation image, then you should probably perform an EFI installation, using @code{grub-efi-bootloader}. Otherwise you should use the BIOS-based GRUB, known as @code{grub-bootloader}. @xref{Bootloader Configuration}, for more info on bootloaders." msgstr "Vous n'êtes pas sûr de savoir si vous devez utiliser un GRUB EFI ou BIOS ? Si le répertoire @file{/sys/firmware/efi} existe sur l'image d'installation, vous devriez probablement effectuer une installation EFI, avec @code{grub-efi-bootloader}. Sinon, vous devriez utiliser le GRUB en BIOS, @code{grub-bootloader}. @xref{Bootloader Configuration} pour plus d'information sur le chargeur d'amorçage." #. type: Plain text -#: guix-git/doc/guix.texi:2482 +#: guix-git/doc/guix.texi:2499 msgid "Once you are done partitioning the target hard disk drive, you have to create a file system on the relevant partition(s)@footnote{Currently Guix System only supports ext4, btrfs, JFS, F2FS, and XFS file systems. In particular, code that reads file system UUIDs and labels only works for these file system types.}. For the ESP, if you have one and assuming it is @file{/dev/sda1}, run:" msgstr "Une fois que vous avez fini le partitionnement du disque dur cible, vous devez créer un système de fichier sur les partitions@footnote{Actuellement Guix System ne prend en charge que les systèmes de fichiers ext4, btrfs, JFS, F2FS et XFS. En particulier, le code qui lit les UUID des systèmes de fichiers et les étiquettes ne fonctionne que pour ces types de systèmes de fichiers.}. Pour l'ESP, si vous en avez une et en supposant que ce soit @file{/dev/sda1}, lancez :" #. type: example -#: guix-git/doc/guix.texi:2485 +#: guix-git/doc/guix.texi:2502 #, no-wrap msgid "mkfs.fat -F32 /dev/sda1\n" msgstr "mkfs.fat -F32 /dev/sda1\n" #. type: Plain text -#: guix-git/doc/guix.texi:2492 +#: guix-git/doc/guix.texi:2509 msgid "For the root file system, ext4 is the most widely used format. Other file systems, such as Btrfs, support compression, which is reported to nicely complement file deduplication that the daemon performs independently of the file system (@pxref{Invoking guix-daemon, deduplication})." msgstr "Concernant le système de fichier root, ext4 est le format le plus largement utilisé. D'autres systèmes de fichiers, comme Btrfs, supportent la compression, laquelle est reportée pour compléter agréablement la dédupplication que le démon réalise indépendamment du système de fichier (@pxref{Invoking guix-daemon, deduplication})." #. type: Plain text -#: guix-git/doc/guix.texi:2499 +#: guix-git/doc/guix.texi:2516 msgid "Preferably, assign file systems a label so that you can easily and reliably refer to them in @code{file-system} declarations (@pxref{File Systems}). This is typically done using the @code{-L} option of @command{mkfs.ext4} and related commands. So, assuming the target root partition lives at @file{/dev/sda2}, a file system with the label @code{my-root} can be created with:" msgstr "Préférez assigner une étiquette au système de fichier pour que vous puissiez vous y référer de manière fiable dans la déclaration @code{file-system} (@pxref{File Systems}). On le fait habituellement avec l'option @code{-L} de @command{mkfs.ext4} et des commandes liées. Donc, en supposant que la partition racine soit sur @file{/dev/sda2}, on peut créer un système de fichier avec pour étiquette @code{my-root} avec :" #. type: example -#: guix-git/doc/guix.texi:2502 +#: guix-git/doc/guix.texi:2519 #, no-wrap msgid "mkfs.ext4 -L my-root /dev/sda2\n" msgstr "mkfs.ext4 -L my-root /dev/sda2\n" #. type: cindex -#: guix-git/doc/guix.texi:2504 guix-git/doc/guix.texi:14475 +#: guix-git/doc/guix.texi:2521 guix-git/doc/guix.texi:14832 #, no-wrap msgid "encrypted disk" msgstr "chiffrement du disque" #. type: Plain text -#: guix-git/doc/guix.texi:2509 +#: guix-git/doc/guix.texi:2526 msgid "If you are instead planning to encrypt the root partition, you can use the Cryptsetup/LUKS utilities to do that (see @inlinefmtifelse{html, @uref{https://linux.die.net/man/8/cryptsetup, @code{man cryptsetup}}, @code{man cryptsetup}} for more information)." msgstr "Si vous voulez plutôt chiffrer la partition root, vous pouvez utiliser les utilitaires Cryptsetup et LUKS pour cela (voir @inlinefmtifelse{html, @uref{https://linux.die.net/man/8/cryptsetup, @code{man cryptsetup}}, @code{man cryptsetup}} pour plus d'informations)." #. type: quotation -#: guix-git/doc/guix.texi:2510 guix-git/doc/guix.texi:5280 -#: guix-git/doc/guix.texi:6489 guix-git/doc/guix.texi:14601 -#: guix-git/doc/guix.texi:21013 guix-git/doc/guix.texi:21020 +#: guix-git/doc/guix.texi:2527 guix-git/doc/guix.texi:5298 +#: guix-git/doc/guix.texi:6532 guix-git/doc/guix.texi:14958 +#: guix-git/doc/guix.texi:21375 guix-git/doc/guix.texi:21382 #, no-wrap msgid "Warning" msgstr "Attention" #. type: quotation -#: guix-git/doc/guix.texi:2517 +#: guix-git/doc/guix.texi:2534 msgid "Note that GRUB can unlock LUKS2 devices since version 2.06, but only supports the PBKDF2 key derivation function, which is not the default for @command{cryptsetup luksFormat}. You can check which key derivation function is being used by a device by running @command{cryptsetup luksDump @var{device}}, and looking for the PBKDF field of your keyslots." msgstr "Remarquez que GRUB peut déverrouiller des périphériques LUKS2 depuis la version 2.06, mais il prend en charge uniquement la fonction de dérivation de clé PBKDF2, qui n'est pas celle par défaut de @command{cryptsetup luksFormat}. Vous pouvez vérifier quelle fonction de dérivation de clé est utilisée par un périphérique avec @command{cryptsetup luksDump @var{périphérique}}, et en regardant le champ PBKDF de vos emplacements de clés." #. type: Plain text -#: guix-git/doc/guix.texi:2522 +#: guix-git/doc/guix.texi:2539 msgid "Assuming you want to store the root partition on @file{/dev/sda2}, the command sequence to format it as a LUKS2 partition would be along these lines:" msgstr "En supposant que vous voulez stocker la partition racine sur @file{/dev/sda2}, voici la séquence de commandes pour la formater en partition LUKS2 :" #. type: example -#: guix-git/doc/guix.texi:2527 +#: guix-git/doc/guix.texi:2544 #, no-wrap msgid "" "cryptsetup luksFormat --type luks2 --pbkdf pbkdf2 /dev/sda2\n" @@ -8261,28 +8335,28 @@ msgstr "" "mkfs.ext4 -L my-root /dev/mapper/ma-partition\n" #. type: Plain text -#: guix-git/doc/guix.texi:2532 +#: guix-git/doc/guix.texi:2549 msgid "Once that is done, mount the target file system under @file{/mnt} with a command like (again, assuming @code{my-root} is the label of the root file system):" msgstr "Une fois cela effectué, montez le système de fichier cible dans @file{/mnt} avec une commande comme (de nouveau, en supposant que @code{my-root} est l'étiquette du système de fichiers racine) :" #. type: example -#: guix-git/doc/guix.texi:2535 +#: guix-git/doc/guix.texi:2552 #, no-wrap msgid "mount LABEL=my-root /mnt\n" msgstr "mount LABEL=my-root /mnt\n" #. type: Plain text -#: guix-git/doc/guix.texi:2541 +#: guix-git/doc/guix.texi:2558 msgid "Also mount any other file systems you would like to use on the target system relative to this path. If you have opted for @file{/boot/efi} as an EFI mount point for example, mount it at @file{/mnt/boot/efi} now so it is found by @code{guix system init} afterwards." msgstr "Montez aussi tous les systèmes de fichiers que vous voudriez utiliser sur le système cible relativement à ce chemin. Si vous avez choisi d'avoir un @file{/boot/efi} comme point de montage EFI par exemple, montez-la sur @file{/mnt/boot/efi} maintenant pour qu'elle puisse être trouvée par @code{guix system init} ensuite." #. type: Plain text -#: guix-git/doc/guix.texi:2545 +#: guix-git/doc/guix.texi:2562 msgid "Finally, if you plan to use one or more swap partitions (@pxref{Swap Space}), make sure to initialize them with @command{mkswap}. Assuming you have one swap partition on @file{/dev/sda3}, you would run:" msgstr "Enfin, si vous souhaitez utiliser une ou plusieurs partitions de swap (@pxref{Swap Space}), assurez-vous de les initialiser avec @command{mkswap}. En supposant que vous avez une partition de swap sur @file{/dev/sda3}, vous pouvez lancer :" #. type: example -#: guix-git/doc/guix.texi:2549 +#: guix-git/doc/guix.texi:2566 #, no-wrap msgid "" "mkswap /dev/sda3\n" @@ -8292,12 +8366,12 @@ msgstr "" "swapon /dev/sda3\n" #. type: Plain text -#: guix-git/doc/guix.texi:2557 +#: guix-git/doc/guix.texi:2574 msgid "Alternatively, you may use a swap file. For example, assuming that in the new system you want to use the file @file{/swapfile} as a swap file, you would run@footnote{This example will work for many types of file systems (e.g., ext4). However, for copy-on-write file systems (e.g., btrfs), the required steps may be different. For details, see the manual pages for @command{mkswap} and @command{swapon}.}:" msgstr "Autrement, vous pouvez utiliser un fichier de swap. Par exemple, en supposant que dans le nouveau système vous voulez utiliser le fichier @file{/swapfile} comme fichier de swap, vous lanceriez@footnote{Cet exemple fonctionnera sur plusieurs types de systèmes de fichiers (p.@: ex.@: ext4). Cependant, pour les systèmes de fichiers qui utilisent la copie sur écriture (COW) comme btrfs, les étapes requises peuvent varier. Pour plus de détails, regardez les pages de manuel de @command{mkswap} et @command{swapon}.} :" #. type: example -#: guix-git/doc/guix.texi:2565 +#: guix-git/doc/guix.texi:2582 #, no-wrap msgid "" "# This is 10 GiB of swap space. Adjust \"count\" to change the size.\n" @@ -8315,38 +8389,38 @@ msgstr "" "swapon /mnt/swapfile\n" #. type: Plain text -#: guix-git/doc/guix.texi:2570 +#: guix-git/doc/guix.texi:2587 msgid "Note that if you have encrypted the root partition and created a swap file in its file system as described above, then the encryption also protects the swap file, just like any other file in that file system." msgstr "Remarquez que si vous avez chiffré la partition racine et créé un fichier d'échange dans son système de fichier comme décrit ci-dessus, alors le chiffrement protégera aussi le fichier d'échange, comme n'importe quel fichier de ce système de fichiers." #. type: Plain text -#: guix-git/doc/guix.texi:2576 +#: guix-git/doc/guix.texi:2593 msgid "With the target partitions ready and the target root mounted on @file{/mnt}, we're ready to go. First, run:" msgstr "Lorsque la partition cible est prête et que les autres partitions sont montées, on est prêt à commencer l'installation. Commencez par :" #. type: example -#: guix-git/doc/guix.texi:2579 +#: guix-git/doc/guix.texi:2596 #, no-wrap msgid "herd start cow-store /mnt\n" msgstr "herd start cow-store /mnt\n" #. type: Plain text -#: guix-git/doc/guix.texi:2586 +#: guix-git/doc/guix.texi:2603 msgid "This makes @file{/gnu/store} copy-on-write, such that packages added to it during the installation phase are written to the target disk on @file{/mnt} rather than kept in memory. This is necessary because the first phase of the @command{guix system init} command (see below) entails downloads or builds to @file{/gnu/store} which, initially, is an in-memory file system." msgstr "Cela rend @file{/gnu/store} capable de faire de la copie sur écriture, de sorte que les paquets ajoutés pendant l'installation sont écrits sur le disque cible sur @file{/mnt} plutôt que gardés en mémoire. Cela est nécessaire parce que la première phase de la commande @command{guix system init} (voir plus bas) implique de télécharger ou de construire des éléments de @file{/gnu/store} qui est initialement un système de fichiers en mémoire." #. type: Plain text -#: guix-git/doc/guix.texi:2597 +#: guix-git/doc/guix.texi:2614 msgid "Next, you have to edit a file and provide the declaration of the operating system to be installed. To that end, the installation system comes with three text editors. We recommend GNU nano (@pxref{Top,,, nano, GNU nano Manual}), which supports syntax highlighting and parentheses matching; other editors include mg (an Emacs clone), and nvi (a clone of the original BSD @command{vi} editor). We strongly recommend storing that file on the target root file system, say, as @file{/mnt/etc/config.scm}. Failing to do that, you will have lost your configuration file once you have rebooted into the newly-installed system." msgstr "Ensuite, vous devrez modifier un fichier et fournir la déclaration du système à installer. Pour cela, le système d'installation propose trois éditeurs de texte. Nous recommandons GNU nano (@pxref{Top,,, nano, GNU nano Manual}), qui supporte la coloration syntaxique la correspondance de parenthèses ; les autres éditeurs sont mg (un clone d'Emacs) et nvi (un clone de l'éditeur @command{vi} original de BSD). Nous recommandons vivement de stocker ce fichier sur le système de fichier racine cible, disons en tant que @file{/mnt/etc/config.scm}. Sinon, vous perdrez votre fichier de configuration une fois que vous aurez redémarré sur votre nouveau système." #. type: Plain text -#: guix-git/doc/guix.texi:2604 +#: guix-git/doc/guix.texi:2621 msgid "@xref{Using the Configuration System}, for an overview of the configuration file. The example configurations discussed in that section are available under @file{/etc/configuration} in the installation image. Thus, to get started with a system configuration providing a graphical display server (a ``desktop'' system), you can run something along these lines:" msgstr "@xref{Using the Configuration System}, pour un aperçu de comment créer votre fichier de configuration. Les exemples de configuration dont on parle dans cette section sont disponibles dans @file{/etc/configuration} sur l'image d'installation. Ainsi, pour commencer avec une configuration du système qui fournit un serveur d'affichage graphique (un système de « bureau »), vous pouvez lancer ce qui suit :" #. type: example -#: guix-git/doc/guix.texi:2609 +#: guix-git/doc/guix.texi:2626 #, no-wrap msgid "" "# mkdir /mnt/etc\n" @@ -8358,53 +8432,53 @@ msgstr "" "# nano /mnt/etc/config.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:2613 +#: guix-git/doc/guix.texi:2630 msgid "You should pay attention to what your configuration file contains, and in particular:" msgstr "Vous devriez faire attention à ce que contient votre fichier de configuration, en particulier :" #. type: itemize -#: guix-git/doc/guix.texi:2625 +#: guix-git/doc/guix.texi:2642 msgid "Make sure the @code{bootloader-configuration} form refers to the targets you want to install GRUB on. It should mention @code{grub-bootloader} if you are installing GRUB in the legacy way, or @code{grub-efi-bootloader} for newer UEFI systems. For legacy systems, the @code{targets} field contain the names of the devices, like @code{(list \"/dev/sda\")}; for UEFI systems it names the paths to mounted EFI partitions, like @code{(list \"/boot/efi\")}; do make sure the paths are currently mounted and a @code{file-system} entry is specified in your configuration." msgstr "Assurez-vous que la forme @code{bootloader-configuration} se réfère aux cibles où vous voulez installer GRUB. Elle devrait aussi mentionner @code{grub-bootloader} si vous installer GRUB en mode BIOS (ou « legacy ») ou @code{grub-efi-bootloader} pour les système UEFI plus récents. Pour les anciens systèmes, le champs @code{targets} contient le nom des périphériques comme @code{(list \"/dev/sda\")} ; pour les systèmes UEFI il contient les chemins vers les partitions EFI montées, comme @code{(list \"/boot/efi\")} ; assurez-vous bien que ces chemins sont montés et qu'il y a une entrée @code{file-system} dans votre configuration." #. type: itemize -#: guix-git/doc/guix.texi:2631 +#: guix-git/doc/guix.texi:2648 msgid "Be sure that your file system labels match the value of their respective @code{device} fields in your @code{file-system} configuration, assuming your @code{file-system} configuration uses the @code{file-system-label} procedure in its @code{device} field." msgstr "Assurez-vous que les étiquettes de vos systèmes de fichiers correspondent aux valeurs de leur champs @code{device} dans votre configuration @code{file-system}, en supposant que la configuration @code{file-system} utilise la procédure @code{file-system-label} dans son champ @code{device}." #. type: itemize -#: guix-git/doc/guix.texi:2635 +#: guix-git/doc/guix.texi:2652 msgid "If there are encrypted or RAID partitions, make sure to add a @code{mapped-devices} field to describe them (@pxref{Mapped Devices})." msgstr "Si vous avez des partitions RAID ou chiffrées, assurez-vous d'ajouter un champ @code{mapped-device} pour les décrire (@pxref{Mapped Devices})." #. type: Plain text -#: guix-git/doc/guix.texi:2640 +#: guix-git/doc/guix.texi:2657 msgid "Once you are done preparing the configuration file, the new system must be initialized (remember that the target root file system is mounted under @file{/mnt}):" msgstr "Une fois que vous avez fini les préparatifs sur le fichier de configuration, le nouveau système peut être initialisé (rappelez-vous que le système de fichiers racine cible est dans @file{/mnt}) :" #. type: example -#: guix-git/doc/guix.texi:2643 +#: guix-git/doc/guix.texi:2660 #, no-wrap msgid "guix system init /mnt/etc/config.scm /mnt\n" msgstr "guix system init /mnt/etc/config.scm /mnt\n" #. type: Plain text -#: guix-git/doc/guix.texi:2650 +#: guix-git/doc/guix.texi:2667 msgid "This copies all the necessary files and installs GRUB on @file{/dev/sdX}, unless you pass the @option{--no-bootloader} option. For more information, @pxref{Invoking guix system}. This command may trigger downloads or builds of missing packages, which can take some time." msgstr "Cela copie tous les fichiers nécessaires et installe GRUB sur @file{/dev/sdX} à moins que vous ne passiez l'option @option{--no-bootloader}. Pour plus d'informations, @pxref{Invoking guix system}. Cette commande peut engendrer des téléchargements ou des constructions pour les paquets manquants, ce qui peut prendre du temps." #. type: Plain text -#: guix-git/doc/guix.texi:2658 +#: guix-git/doc/guix.texi:2675 msgid "Once that command has completed---and hopefully succeeded!---you can run @command{reboot} and boot into the new system. The @code{root} password in the new system is initially empty; other users' passwords need to be initialized by running the @command{passwd} command as @code{root}, unless your configuration specifies otherwise (@pxref{user-account-password, user account passwords}). @xref{After System Installation}, for what's next!" msgstr "Une fois que cette commande a terminé — et on l'espère réussi ! — vous pouvez lancer @command{reboot} et démarrer sur votre nouveau système. Le mot de passe @code{root} est d'abord vide ; les mots de passe des autres comptes doivent être initialisés avec la commande @command{passwd} en tant que @code{root}, à mois que votre configuration ne spécifie autre chose (@pxref{user-account-password, mot de passe des comptes}). @xref{After System Installation}, pour la suite !" #. type: Plain text -#: guix-git/doc/guix.texi:2665 +#: guix-git/doc/guix.texi:2682 msgid "Success, you've now booted into Guix System! From then on, you can update the system whenever you want by running, say:" msgstr "Bravo ! Vous avez maintenant redémarré sur votre système Guix ! À partir de maintenant, vous pouvez mettre à jour le système quand vous voudrez, avec :" #. type: example -#: guix-git/doc/guix.texi:2669 +#: guix-git/doc/guix.texi:2686 #, no-wrap msgid "" "guix pull\n" @@ -8414,93 +8488,93 @@ msgstr "" "sudo guix system reconfigure /etc/config.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:2675 +#: guix-git/doc/guix.texi:2692 msgid "This builds a new system generation with the latest packages and services (@pxref{Invoking guix system}). We recommend doing that regularly so that your system includes the latest security updates (@pxref{Security Updates})." msgstr "Cela crée une nouvelle génération du système avec les derniers paquets et services (@pxref{Invoking guix system}). Nous vous recommandons de le faire régulièrement pour que votre système inclue les dernières misse à jour de sécurité (@pxref{Security Updates})." #. type: cindex -#: guix-git/doc/guix.texi:2678 +#: guix-git/doc/guix.texi:2695 #, no-wrap msgid "sudo vs. @command{guix pull}" msgstr "sudo vs.@: @command{guix pull}" #. type: quotation -#: guix-git/doc/guix.texi:2682 +#: guix-git/doc/guix.texi:2699 msgid "Note that @command{sudo guix} runs your user's @command{guix} command and @emph{not} root's, because @command{sudo} leaves @env{PATH} unchanged. To explicitly run root's @command{guix}, type @command{sudo -i guix @dots{}}." msgstr "Remarquez que @command{sudo guix} exécute la commande @command{guix} de votre compte et @emph{non} celle de root, parce que @command{sudo} ne change pas @env{PATH}. Pour utiliser explicitement le @command{guix} de root, tapez @command{sudo -i guix @dots{}}." #. type: quotation -#: guix-git/doc/guix.texi:2687 +#: guix-git/doc/guix.texi:2704 msgid "The difference matters here, because @command{guix pull} updates the @command{guix} command and package definitions only for the user it is run as. This means that if you choose to use @command{guix system reconfigure} in root's login shell, you'll need to @command{guix pull} separately." msgstr "La différence est importante ici, car @command{guix pull} met à jour la commande @command{guix} et les définitions de paquets uniquement pour l'utilisateur sous lequel elle est exécutée. Cela signifie que si vous choisissez d'utiliser la commande @command{guix system reconfigure} dans le shell de connexion de root, vous devrez utiliser séparément la commande @command{guix pull}." #. type: Plain text -#: guix-git/doc/guix.texi:2692 +#: guix-git/doc/guix.texi:2709 msgid "Now, @pxref{Getting Started}, and join us on @code{#guix} on the Libera Chat IRC network or on @email{guix-devel@@gnu.org} to share your experience!" msgstr "Maintenant, @pxref{Getting Started}, et rejoignez-nous sur @code{#guix} sur le réseau IRC Libera Chat ou sur @email{guix-devel@@gnu.org} pour partager votre expérience !" #. type: section -#: guix-git/doc/guix.texi:2695 +#: guix-git/doc/guix.texi:2712 #, no-wrap msgid "Installing Guix in a Virtual Machine" msgstr "Installer Guix sur une machine virtuelle" #. type: cindex -#: guix-git/doc/guix.texi:2697 +#: guix-git/doc/guix.texi:2714 #, no-wrap msgid "virtual machine, Guix System installation" msgstr "machine virtuelle, installation de Guix System" #. type: cindex -#: guix-git/doc/guix.texi:2698 +#: guix-git/doc/guix.texi:2715 #, no-wrap msgid "virtual private server (VPS)" msgstr "serveur privé virtuel (VPS)" #. type: cindex -#: guix-git/doc/guix.texi:2699 +#: guix-git/doc/guix.texi:2716 #, no-wrap msgid "VPS (virtual private server)" msgstr "VPS (serveur privé virtuel)" #. type: Plain text -#: guix-git/doc/guix.texi:2703 +#: guix-git/doc/guix.texi:2720 msgid "If you'd like to install Guix System in a virtual machine (VM) or on a virtual private server (VPS) rather than on your beloved machine, this section is for you." msgstr "Si vous souhaitez installer Guix System sur une machine virtuelle (VM) ou un serveur privé virtuel (VPS) plutôt que sur votre machine chérie, cette section est faite pour vous." #. type: Plain text -#: guix-git/doc/guix.texi:2706 +#: guix-git/doc/guix.texi:2723 msgid "To boot a @uref{https://qemu.org/,QEMU} VM for installing Guix System in a disk image, follow these steps:" msgstr "Pour démarrer une VM @uref{https://qemu.org/,QEMU} pour installer Guix System sur une image disque, suivez ces étapes :" #. type: enumerate -#: guix-git/doc/guix.texi:2711 +#: guix-git/doc/guix.texi:2728 msgid "First, retrieve and decompress the Guix system installation image as described previously (@pxref{USB Stick and DVD Installation})." msgstr "Tout d'abord récupérez et décompressez l'image d'installation du système Guix comme décrit précédemment (@pxref{USB Stick and DVD Installation})." #. type: enumerate -#: guix-git/doc/guix.texi:2715 +#: guix-git/doc/guix.texi:2732 msgid "Create a disk image that will hold the installed system. To make a qcow2-formatted disk image, use the @command{qemu-img} command:" msgstr "Créez une image disque qui contiendra le système installé. Pour créer une image qcow2, utilise la commande @command{qemu-img} :" #. type: example -#: guix-git/doc/guix.texi:2718 +#: guix-git/doc/guix.texi:2735 #, no-wrap msgid "qemu-img create -f qcow2 guix-system.img 50G\n" msgstr "qemu-img create -f qcow2 guix-system.img 50G\n" #. type: enumerate -#: guix-git/doc/guix.texi:2722 +#: guix-git/doc/guix.texi:2739 msgid "The resulting file will be much smaller than 50 GB (typically less than 1 MB), but it will grow as the virtualized storage device is filled up." msgstr "Le fichier qui en résulte sera bien plus petit que les 50 Go (habituellement moins de 1 Mo) mais il grossira au fur et à mesure que le stockage virtuel grossira." #. type: enumerate -#: guix-git/doc/guix.texi:2725 +#: guix-git/doc/guix.texi:2742 msgid "Boot the USB installation image in an VM:" msgstr "Démarrez l'image d'installation USB dans une VM :" #. type: example -#: guix-git/doc/guix.texi:2731 +#: guix-git/doc/guix.texi:2748 #, no-wrap msgid "" "qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \\\n" @@ -8514,115 +8588,115 @@ msgstr "" " -drive media=cdrom,file=guix-system-install-@value{VERSION}.@var{système}.iso\n" #. type: enumerate -#: guix-git/doc/guix.texi:2735 +#: guix-git/doc/guix.texi:2752 msgid "@code{-enable-kvm} is optional, but significantly improves performance, @pxref{Running Guix in a VM}." msgstr "@code{-enable-kvm} est facultatif, mais améliore nettement les performances, @pxref{Running Guix in a VM}." #. type: enumerate -#: guix-git/doc/guix.texi:2739 +#: guix-git/doc/guix.texi:2756 msgid "You're now root in the VM, proceed with the installation process. @xref{Preparing for Installation}, and follow the instructions." msgstr "Vous êtes maintenant root dans la VM, continuez en suivant la procédure d'installation. @xref{Preparing for Installation}, et suivez les instructions." #. type: Plain text -#: guix-git/doc/guix.texi:2744 +#: guix-git/doc/guix.texi:2761 msgid "Once installation is complete, you can boot the system that's on your @file{guix-system.img} image. @xref{Running Guix in a VM}, for how to do that." msgstr "Une fois l'installation terminée, vous pouvez démarrer le système dans votre image @file{guix-system.img}. @xref{Running Guix in a VM}, pour une manière de faire." #. type: cindex -#: guix-git/doc/guix.texi:2748 +#: guix-git/doc/guix.texi:2765 #, no-wrap msgid "installation image" msgstr "image d'installation" #. type: Plain text -#: guix-git/doc/guix.texi:2751 +#: guix-git/doc/guix.texi:2768 msgid "The installation image described above was built using the @command{guix system} command, specifically:" msgstr "L'image d'installation décrite plus haut a été construite avec la commande @command{guix system}, plus précisément :" #. type: example -#: guix-git/doc/guix.texi:2754 +#: guix-git/doc/guix.texi:2771 #, no-wrap msgid "guix system image -t iso9660 gnu/system/install.scm\n" msgstr "guix system image -t iso9660 gnu/system/install.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:2759 +#: guix-git/doc/guix.texi:2776 msgid "Have a look at @file{gnu/system/install.scm} in the source tree, and see also @ref{Invoking guix system} for more information about the installation image." msgstr "Regardez le fichier @file{gnu/system/install.scm} dans l'arborescence des sources et regardez aussi @ref{Invoking guix system} pour plus d'informations sur l'image d'installation." #. type: section -#: guix-git/doc/guix.texi:2760 +#: guix-git/doc/guix.texi:2777 #, no-wrap msgid "Building the Installation Image for ARM Boards" msgstr "Construire l'image d'installation pour les cartes ARM" #. type: Plain text -#: guix-git/doc/guix.texi:2764 +#: guix-git/doc/guix.texi:2781 msgid "Many ARM boards require a specific variant of the @uref{https://www.denx.de/wiki/U-Boot/, U-Boot} bootloader." msgstr "De nombreuses cartes ARM requièrent une variante spécifique du chargeur d'amorçage @uref{https://www.denx.de/wiki/U-Boot/, U-Boot}." #. type: Plain text -#: guix-git/doc/guix.texi:2768 +#: guix-git/doc/guix.texi:2785 msgid "If you build a disk image and the bootloader is not available otherwise (on another boot drive etc), it's advisable to build an image that includes the bootloader, specifically:" msgstr "Si vous construisez une image disque et que le chargeur d'amorçage n'est pas disponible autrement (sur un autre périphérique d'amorçage etc), il est recommandé de construire une image qui inclus le chargeur d'amorçage, plus précisément :" #. type: example -#: guix-git/doc/guix.texi:2771 +#: guix-git/doc/guix.texi:2788 #, no-wrap msgid "guix system image --system=armhf-linux -e '((@@ (gnu system install) os-with-u-boot) (@@ (gnu system install) installation-os) \"A20-OLinuXino-Lime2\")'\n" msgstr "guix system image --system=armhf-linux -e '((@@ (gnu system install) os-with-u-boot) (@@ (gnu system install) installation-os) \"A20-OLinuXino-Lime2\")'\n" #. type: Plain text -#: guix-git/doc/guix.texi:2775 +#: guix-git/doc/guix.texi:2792 msgid "@code{A20-OLinuXino-Lime2} is the name of the board. If you specify an invalid board, a list of possible boards will be printed." msgstr "@code{A20-OLinuXino-Lime2} est le nom de la carte. Si vous spécifiez une carte invalide, une liste de cartes possibles sera affichée." #. type: Plain text -#: guix-git/doc/guix.texi:2785 +#: guix-git/doc/guix.texi:2802 msgid "Presumably, you've reached this section because either you have installed Guix on top of another distribution (@pxref{Installation}), or you've installed the standalone Guix System (@pxref{System Installation}). It's time for you to get started using Guix and this section aims to help you do that and give you a feel of what it's like." msgstr "Vous êtes certainement arrivé·e à cette section parce que vous avez installé Guix sur une autre distribution (@pxref{Installation}), ou bien vous avez installé Guix System (@pxref{Installation du système}). Il est temps pour vous de commencer à utiliser Guix et cette section est là pour vous aider à le faire et vous donner une idée de ce que c'est." #. type: Plain text -#: guix-git/doc/guix.texi:2789 +#: guix-git/doc/guix.texi:2806 msgid "Guix is about installing software, so probably the first thing you'll want to do is to actually look for software. Let's say you're looking for a text editor, you can run:" msgstr "Guix est, entre autres, un programme d'installation de logiciels, donc la première chose que vous voudrez probablement faire est de chercher un logiciel. Disons que vous cherchez un éditeur de texte, vous pouvez lancer :" #. type: example -#: guix-git/doc/guix.texi:2792 +#: guix-git/doc/guix.texi:2809 #, no-wrap msgid "guix search text editor\n" msgstr "guix search text editor\n" #. type: Plain text -#: guix-git/doc/guix.texi:2799 +#: guix-git/doc/guix.texi:2816 msgid "This command shows you a number of matching @dfn{packages}, each time showing the package's name, version, a description, and additional info. Once you've found out the one you want to use, let's say Emacs (ah ha!), you can go ahead and install it (run this command as a regular user, @emph{no need for root privileges}!):" msgstr "Cette commande vous montre un certain nombre de @dfn{paquets} correspondants, en indiquant à chaque fois le nom du paquet, sa version, une description et des informations supplémentaires. Une fois que vous avez trouvé celui que vous voulez utiliser, disons Emacs (ah ha !), vous pouvez l'installer (lancez cette commande en tant qu' utilisateur·rice, @emph{pas besoin des privilèges d'administration} !) :" #. type: example -#: guix-git/doc/guix.texi:2802 +#: guix-git/doc/guix.texi:2819 #, no-wrap msgid "guix install emacs\n" msgstr "guix install emacs\n" #. type: cindex -#: guix-git/doc/guix.texi:2804 guix-git/doc/guix.texi:3116 -#: guix-git/doc/guix.texi:3168 +#: guix-git/doc/guix.texi:2821 guix-git/doc/guix.texi:3133 +#: guix-git/doc/guix.texi:3185 #, no-wrap msgid "profile" msgstr "profil" #. type: Plain text -#: guix-git/doc/guix.texi:2812 +#: guix-git/doc/guix.texi:2829 msgid "You've installed your first package, congrats! The package is now visible in your default @dfn{profile}, @file{$HOME/.guix-profile}---a profile is a directory containing installed packages. In the process, you've probably noticed that Guix downloaded pre-built binaries; or, if you explicitly chose to @emph{not} use pre-built binaries, then probably Guix is still building software (@pxref{Substitutes}, for more info)." msgstr "Vous avez installé votre premier paquet, félicitations ! Le paquet est maintenant visible dans votre @dfn{profil} par défaut, @file{$HOME/.guix-profile} --- un profil est un répertoire contenant les paquets installés. Vous avez probablement remarqué que Guix a téléchargé des binaires pré-compilés ; ou bien, si vous vous êtes dit : @emph{non}, pas de binaires pré-compilés, alors Guix est probablement encore en train de construire un logiciel (@pxref{Substitutes}, pour plus d'informations)." #. type: Plain text -#: guix-git/doc/guix.texi:2815 +#: guix-git/doc/guix.texi:2832 msgid "Unless you're using Guix System, the @command{guix install} command must have printed this hint:" msgstr "À moins que vous utilisiez Guix System, la commande @command{guix install} doit avoir affiché cet indice :" #. type: example -#: guix-git/doc/guix.texi:2818 +#: guix-git/doc/guix.texi:2835 #, no-wrap msgid "" "hint: Consider setting the necessary environment variables by running:\n" @@ -8632,7 +8706,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:2821 +#: guix-git/doc/guix.texi:2838 #, no-wrap msgid "" " GUIX_PROFILE=\"$HOME/.guix-profile\"\n" @@ -8644,77 +8718,77 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:2823 +#: guix-git/doc/guix.texi:2840 #, no-wrap msgid "Alternately, see `guix package --search-paths -p \"$HOME/.guix-profile\"'.\n" msgstr "Vous pouvez également consulter `guix package --search-paths -p \"$HOME/.guix-profile\"'.\n" #. type: Plain text -#: guix-git/doc/guix.texi:2837 +#: guix-git/doc/guix.texi:2854 msgid "Indeed, you must now tell your shell where @command{emacs} and other programs installed with Guix are to be found. Pasting the two lines above will do just that: it will add @code{$HOME/.guix-profile/bin}---which is where the installed package is---to the @code{PATH} environment variable. You can paste these two lines in your shell so they take effect right away, but more importantly you should add them to @file{~/.bash_profile} (or equivalent file if you do not use Bash) so that environment variables are set next time you spawn a shell. You only need to do this once and other search paths environment variables will be taken care of similarly---e.g., if you eventually install @code{python} and Python libraries, @env{GUIX_PYTHONPATH} will be defined." msgstr "En effet, vous devez maintenant indiquer à votre @i{shell} où se trouvent @command{emacs} et les autres programmes installés avec Guix. En collant les deux lignes ci-dessus, c'est exactement ce que vous ferez : vous ajouterez @code{$HOME/.guix-profile/bin} --- qui est l'endroit où se trouve le paquet installé --- à la variable d'environnement @code{PATH}. Vous pouvez coller ces deux lignes dans votre shell pour qu'elles prennent effet immédiatement, mais surtout vous devez les ajouter à @file{~/.bash_profile} (ou un fichier équivalent si vous n'utilisez pas Bash) afin que les variables d'environnement soient définies la prochaine fois que vous lancerez un shell. Vous n'avez besoin de le faire qu'une seule fois et les autres variables d'environnement des chemins de recherche seront traitées de la même manière --- par exemple, si vous installez les bibliothèques @code{python} et Python, @env{GUIX_PYTHONPATH} sera définie." #. type: Plain text -#: guix-git/doc/guix.texi:2840 +#: guix-git/doc/guix.texi:2857 msgid "You can go on installing packages at your will. To list installed packages, run:" msgstr "Vous pouvez continuer à installer des paquets à votre guise. Pour lister les paquets installés, lancez :" #. type: example -#: guix-git/doc/guix.texi:2843 +#: guix-git/doc/guix.texi:2860 #, no-wrap msgid "guix package --list-installed\n" msgstr "guix package --list-installed\n" #. type: Plain text -#: guix-git/doc/guix.texi:2848 +#: guix-git/doc/guix.texi:2865 msgid "To remove a package, you would unsurprisingly run @command{guix remove}. A distinguishing feature is the ability to @dfn{roll back} any operation you made---installation, removal, upgrade---by simply typing:" msgstr "Pour supprimer un paquet, sans surprise, lancez @command{guix remove}. Une caractéristique distinctive est la possibilité de faire @dfn{revenir en arrière} toute opération que vous avez effectuée --- installation, suppression, mise à niveau --- en tapant simplement :" #. type: example -#: guix-git/doc/guix.texi:2851 +#: guix-git/doc/guix.texi:2868 #, no-wrap msgid "guix package --roll-back\n" msgstr "guix package --roll-back\n" #. type: Plain text -#: guix-git/doc/guix.texi:2856 +#: guix-git/doc/guix.texi:2873 msgid "This is because each operation is in fact a @dfn{transaction} that creates a new @dfn{generation}. These generations and the difference between them can be displayed by running:" msgstr "C'est parce que chaque opération est en fait une @dfn{transaction} qui crée une nouvelle @dfn{génération}. Les générations et leurs différences entre elles peuvent être affichées en lançant :" #. type: example -#: guix-git/doc/guix.texi:2859 +#: guix-git/doc/guix.texi:2876 #, no-wrap msgid "guix package --list-generations\n" msgstr "guix package --list-generations\n" #. type: Plain text -#: guix-git/doc/guix.texi:2862 +#: guix-git/doc/guix.texi:2879 msgid "Now you know the basics of package management!" msgstr "Vous connaissez maintenant les bases de la gestion des paquets !" #. type: quotation -#: guix-git/doc/guix.texi:2863 guix-git/doc/guix.texi:2922 +#: guix-git/doc/guix.texi:2880 guix-git/doc/guix.texi:2939 #, no-wrap msgid "Going further" msgstr "Aller plus loin" #. type: quotation -#: guix-git/doc/guix.texi:2871 +#: guix-git/doc/guix.texi:2888 msgid "@xref{Package Management}, for more about package management. You may like @dfn{declarative} package management with @command{guix package --manifest}, managing separate @dfn{profiles} with @option{--profile}, deleting old generations, collecting garbage, and other nifty features that will come in handy as you become more familiar with Guix. If you are a developer, @pxref{Development} for additional tools. And if you're curious, @pxref{Features}, to peek under the hood." msgstr "@xref{Package Management}, pour en savoir plus sur la gestion des paquets. Vous pouvez aimer la gestion @dfn{declarative} des paquets avec @command{guix package --manifest}, la gestion de @dfn{profils} séparés avec @option{--profil}, la suppression des anciennes générations, le ramasse-miettes et d'autres fonctionnalités astucieuses qui vous seront utiles à mesure que vous vous familiariserez avec Guix. Si vous développez du code, @pxref{Development} pour des outils supplémentaires. Et si vous êtes curieux·euse, @pxref{Features}, pour jeter un coup d'œil sous le capot." #. type: Plain text -#: guix-git/doc/guix.texi:2876 +#: guix-git/doc/guix.texi:2893 msgid "Once you've installed a set of packages, you will want to periodically @emph{upgrade} them to the latest and greatest version. To do that, you will first pull the latest revision of Guix and its package collection:" msgstr "Une fois que vous avez installé un ensemble de paquets, vous voudrez périodiquement faire une @emph{mise à jour} à la dernière version flambant neuve. Pour cela, vous devez d'abord récupérer la dernière révision de Guix et de sa collection de paquets :" #. type: Plain text -#: guix-git/doc/guix.texi:2886 +#: guix-git/doc/guix.texi:2903 msgid "The end result is a new @command{guix} command, under @file{~/.config/guix/current/bin}. Unless you're on Guix System, the first time you run @command{guix pull}, be sure to follow the hint that the command prints and, similar to what we saw above, paste these two lines in your terminal and @file{.bash_profile}:" msgstr "Le résultat final est une nouvelle commande @command{guix}, sous @file{~/.config/guix/current/bin}. A moins que vous ne soyez sous Guix System, la première fois que vous lancez @command{guix pull}, assurez-vous de suivre le conseil que la commande affiche et, comme nous l'avons vu ci-dessus, collez ces deux lignes dans votre terminal et dans @file{.bash_profile} :" #. type: example -#: guix-git/doc/guix.texi:2890 +#: guix-git/doc/guix.texi:2907 #, no-wrap msgid "" "GUIX_PROFILE=\"$HOME/.config/guix/current\"\n" @@ -8724,336 +8798,336 @@ msgstr "" ". \"$GUIX_PROFILE/etc/profile\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:2894 +#: guix-git/doc/guix.texi:2911 msgid "You must also instruct your shell to point to this new @command{guix}:" msgstr "Vous devez aussi informer votre shell de pointer sur ce nouveau @command{guix} :" #. type: example -#: guix-git/doc/guix.texi:2897 +#: guix-git/doc/guix.texi:2914 #, no-wrap msgid "hash guix\n" msgstr "hash guix\n" #. type: Plain text -#: guix-git/doc/guix.texi:2901 +#: guix-git/doc/guix.texi:2918 msgid "At this point, you're running a brand new Guix. You can thus go ahead and actually upgrade all the packages you previously installed:" msgstr "A ce stade, vous pilotez un Guix tout neuf. Vous pouvez donc aller de l'avant et mettre effectivement à jour tous les paquets que vous avez installés précédemment :" #. type: example -#: guix-git/doc/guix.texi:2904 +#: guix-git/doc/guix.texi:2921 #, no-wrap msgid "guix upgrade\n" msgstr "guix upgrade\n" #. type: Plain text -#: guix-git/doc/guix.texi:2910 +#: guix-git/doc/guix.texi:2927 msgid "As you run this command, you will see that binaries are downloaded (or perhaps some packages are built), and eventually you end up with the upgraded packages. Should one of these upgraded packages not be to your liking, remember you can always roll back!" msgstr "En exécutant cette commande, vous verrez que des binaires sont téléchargés (ou peut-être que certains paquets sont construits), et vous finirez par obtenir les paquets mis à jour. Si l'un de ces paquets n'est pas à votre goût, n'oubliez pas que vous pouvez toujours revenir en arrière !" #. type: Plain text -#: guix-git/doc/guix.texi:2913 +#: guix-git/doc/guix.texi:2930 msgid "You can display the exact revision of Guix you're currently using by running:" msgstr "Vous pouvez afficher la révision exacte de Guix actuellement en cours d'exécution en lançant :" #. type: example -#: guix-git/doc/guix.texi:2916 +#: guix-git/doc/guix.texi:2933 #, no-wrap msgid "guix describe\n" msgstr "guix describe\n" #. type: Plain text -#: guix-git/doc/guix.texi:2921 +#: guix-git/doc/guix.texi:2938 msgid "The information it displays is @emph{all it takes to reproduce the exact same Guix}, be it at a different point in time or on a different machine." msgstr "L'information affichée est @emph{tout ce qu'il faut pour reproduire exactement le même Guix}, que ce soit à un moment différent ou sur une machine différente." #. type: quotation -#: guix-git/doc/guix.texi:2927 +#: guix-git/doc/guix.texi:2944 msgid "@xref{Invoking guix pull}, for more information. @xref{Channels}, on how to specify additional @dfn{channels} to pull packages from, how to replicate Guix, and more. You may also find @command{time-machine} handy (@pxref{Invoking guix time-machine})." msgstr "@xref{Invoquer guix pull}, pour plus d'informations. @xref{Channels}, sur la façon de spécifier des @dfn{canaux} supplémentaires pour extraire des paquets, sur la façon de répliquer Guix, et plus encore. Vous pouvez également trouver @command{time-machine} pratique (@pxref{Invoquer guix time-machine})." #. type: Plain text -#: guix-git/doc/guix.texi:2932 +#: guix-git/doc/guix.texi:2949 msgid "If you installed Guix System, one of the first things you'll want to do is to upgrade your system. Once you've run @command{guix pull} to get the latest Guix, you can upgrade the system like this:" msgstr "Si vous avez installé Guix System, une des premières choses que vous voudrez faire est de le mettre à jour. Une fois que vous avez lancé @command{guix pull} pour obtenir le dernier Guix, vous pouvez mettre à jour le système comme ceci :" #. type: example -#: guix-git/doc/guix.texi:2935 +#: guix-git/doc/guix.texi:2952 #, no-wrap msgid "sudo guix system reconfigure /etc/config.scm\n" msgstr "sudo guix system reconfigure /etc/config.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:2944 +#: guix-git/doc/guix.texi:2961 msgid "Upon completion, the system runs the latest versions of its software packages. When you eventually reboot, you'll notice a sub-menu in the bootloader that reads ``Old system generations'': it's what allows you to boot @emph{an older generation of your system}, should the latest generation be ``broken'' or otherwise unsatisfying. Just like for packages, you can always @emph{roll back} to a previous generation @emph{of the whole system}:" msgstr "Ceci terminé, le système exécute les dernières versions de ses logiciels. Lorsque vous redémarrez, vous remarquerez un sous-menu dans le chargeur d'amorçage qui indique « Old system generations » : c'est ce qui vous permet de démarrer @emph{une ancienne génération de votre système}, si la dernière génération est « cassée » ou insatisfaisante. Tout comme pour les paquets, vous pouvez toujours @emph{revenir} à une génération précédente @emph{de l'ensemble du système} :" #. type: example -#: guix-git/doc/guix.texi:2947 +#: guix-git/doc/guix.texi:2964 #, no-wrap msgid "sudo guix system roll-back\n" msgstr "sudo guix system roll-back\n" #. type: Plain text -#: guix-git/doc/guix.texi:2954 +#: guix-git/doc/guix.texi:2971 msgid "There are many things you'll probably want to tweak on your system: adding new user accounts, adding new system services, fiddling with the configuration of those services, etc. The system configuration is @emph{entirely} described in the @file{/etc/config.scm} file. @xref{Using the Configuration System}, to learn how to change it." msgstr "Il y a beaucoup de choses que vous voudrez probablement modifier sur votre système : ajouter de nouveaux comptes utilisateur·rice·s, ajouter de nouveaux services système, modifier la configuration de ces services, etc. La configuration du système est @emph{entièrement} décrite dans le fichier @file{/etc/config.scm}. @xref{Utiliser le système de configuration}, pour apprendre à le modifier." #. type: Plain text -#: guix-git/doc/guix.texi:2956 +#: guix-git/doc/guix.texi:2973 msgid "Now you know enough to get started!" msgstr "Maintenant, vous en savez assez pour commencer !" #. type: quotation -#: guix-git/doc/guix.texi:2957 +#: guix-git/doc/guix.texi:2974 #, no-wrap msgid "Resources" msgstr "Ressources" #. type: quotation -#: guix-git/doc/guix.texi:2960 +#: guix-git/doc/guix.texi:2977 msgid "The rest of this manual provides a reference for all things Guix. Here are some additional resources you may find useful:" msgstr "Le reste de ce manuel constitue une référence pour tout ce qui concerne Guix. Voici quelques ressources supplémentaires que vous pourriez trouver utiles :" #. type: itemize -#: guix-git/doc/guix.texi:2965 +#: guix-git/doc/guix.texi:2982 msgid "@xref{Top,,, guix-cookbook, The GNU Guix Cookbook}, for a list of ``how-to'' style of recipes for a variety of applications." msgstr "@xref{Top, , , guix-cookbook, The GNU Guix Cookbook}, pour une liste de recettes de style \"how-to\" pour une variété d'applications." #. type: itemize -#: guix-git/doc/guix.texi:2970 +#: guix-git/doc/guix.texi:2987 msgid "The @uref{https://guix.gnu.org/guix-refcard.pdf, GNU Guix Reference Card} lists in two pages most of the commands and options you'll ever need." msgstr "La @uref{https://guix.gnu.org/guix-refcard.pdf, GNU Guix Reference Card} énumère en deux pages la plupart des commandes et options dont vous aurez besoin." #. type: itemize -#: guix-git/doc/guix.texi:2975 +#: guix-git/doc/guix.texi:2992 msgid "The web site contains @uref{https://guix.gnu.org/en/videos/, instructional videos} covering topics such as everyday use of Guix, how to get help, and how to become a contributor." msgstr "Le site web contient @uref{https://guix.gnu.org/en/videos/, des vidéos instructives} couvrant des sujets tels que l'utilisation quotidienne de Guix, comment obtenir de l'aide et comment devenir un·e contributeur·rice." #. type: itemize -#: guix-git/doc/guix.texi:2979 +#: guix-git/doc/guix.texi:2996 msgid "@xref{Documentation}, to learn how to access documentation on your computer." msgstr "@xref{Documentation}, pour savoir comment accéder à la documentation sur votre ordinateur." #. type: quotation -#: guix-git/doc/guix.texi:2982 +#: guix-git/doc/guix.texi:2999 msgid "We hope you will enjoy Guix as much as the community enjoys building it!" msgstr "Nous espérons que vous apprécierez Guix autant que la communauté a de plaisir à le construire !" #. type: Plain text -#: guix-git/doc/guix.texi:2993 +#: guix-git/doc/guix.texi:3010 msgid "The purpose of GNU Guix is to allow users to easily install, upgrade, and remove software packages, without having to know about their build procedures or dependencies. Guix also goes beyond this obvious set of features." msgstr "Le but de GNU Guix est de permettre à ses utilisatrices et utilisateurs d'installer, mettre à jour et supprimer facilement des paquets logiciels sans devoir connaître leur procédure de construction ou leurs dépendances. Guix va aussi plus loin que ces fonctionnalités évidentes." #. type: Plain text -#: guix-git/doc/guix.texi:3001 +#: guix-git/doc/guix.texi:3018 msgid "This chapter describes the main features of Guix, as well as the package management tools it provides. Along with the command-line interface described below (@pxref{Invoking guix package, @code{guix package}}), you may also use the Emacs-Guix interface (@pxref{Top,,, emacs-guix, The Emacs-Guix Reference Manual}), after installing @code{emacs-guix} package (run @kbd{M-x guix-help} command to start with it):" msgstr "Ce chapitre décrit les principales fonctionnalités de Guix, ainsi que des outils de gestion des paquets qu'il fournit. En plus de l'interface en ligne de commande décrite en dessous de (@pxref{Invoquer guix package, @code{guix package}}), vous pouvez aussi utiliser l'interface Emacs-Guix (@pxref{Top,,, emacs-guix, Le manuel de référence de emacs-guix}), après avoir installé le paquet @code{emacs-guix} (lancez la commande @kbd{M-x guix-help} pour le démarrer) :" #. type: example -#: guix-git/doc/guix.texi:3004 +#: guix-git/doc/guix.texi:3021 #, no-wrap msgid "guix install emacs-guix\n" msgstr "guix install emacs-guix\n" #. type: Plain text -#: guix-git/doc/guix.texi:3025 +#: guix-git/doc/guix.texi:3042 msgid "Here we assume you've already made your first steps with Guix (@pxref{Getting Started}) and would like to get an overview about what's going on under the hood." msgstr "Ici, nous supposons que vous avez déjà fait vos premiers pas avec Guix @pxref{Getting Started}) et que vous voulez avoir un aperçu de ce qui se passe sous le capot." #. type: Plain text -#: guix-git/doc/guix.texi:3029 +#: guix-git/doc/guix.texi:3046 msgid "When using Guix, each package ends up in the @dfn{package store}, in its own directory---something that resembles @file{/gnu/store/xxx-package-1.2}, where @code{xxx} is a base32 string." msgstr "Lorsque vous utilisez Guix, chaque paquet arrive dans @dfn{dépôt des paquets}, dans son propre répertoire — quelque chose comme @file{/gnu/store/xxx-paquet-1.2}, où @code{xxx} est une chaîne en base32." #. type: Plain text -#: guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3051 msgid "Instead of referring to these directories, users have their own @dfn{profile}, which points to the packages that they actually want to use. These profiles are stored within each user's home directory, at @code{$HOME/.guix-profile}." msgstr "Plutôt que de se rapporter à ces répertoires, les utilisateur·rice·s ont leur propre @dfn{profil} qui pointe vers les paquets qu'ils ou elles veulent vraiment utiliser. Ces profils sont stockés dans le répertoire personnel de chacun·e dans @code{$HOME/.guix-profile}." #. type: Plain text -#: guix-git/doc/guix.texi:3042 +#: guix-git/doc/guix.texi:3059 msgid "For example, @code{alice} installs GCC 4.7.2. As a result, @file{/home/alice/.guix-profile/bin/gcc} points to @file{/gnu/store/@dots{}-gcc-4.7.2/bin/gcc}. Now, on the same machine, @code{bob} had already installed GCC 4.8.0. The profile of @code{bob} simply continues to point to @file{/gnu/store/@dots{}-gcc-4.8.0/bin/gcc}---i.e., both versions of GCC coexist on the same system without any interference." msgstr "Par exemple, @code{alice} installe GCC 4.7.2. Il en résulte que @file{/home/alice/.guix-profile/bin/gcc} pointe vers @file{/gnu/store/@dots{}-gcc-4.7.2/bin/gcc}. Maintenant, sur la même machine, @code{bob} a déjà installé GCC 4.8.0. Le profil de @code{bob} continue simplement de pointer vers @file{/gnu/store/@dots{}-gcc-4.8.0/bin/gcc} — c.-à-d.@: les deux versions de GCC coexistent surs le même système sans aucune interférence." #. type: Plain text -#: guix-git/doc/guix.texi:3046 +#: guix-git/doc/guix.texi:3063 msgid "The @command{guix package} command is the central tool to manage packages (@pxref{Invoking guix package}). It operates on the per-user profiles, and can be used @emph{with normal user privileges}." msgstr "La commande @command{guix package} est l'outil central pour gérer les paquets (@pxref{Invoking guix package}). Il opère sur les profils de chaque utilisateur·rice et peut être utilisé avec les @emph{privilèges normaux}." #. type: cindex -#: guix-git/doc/guix.texi:3047 guix-git/doc/guix.texi:3130 +#: guix-git/doc/guix.texi:3064 guix-git/doc/guix.texi:3147 #, no-wrap msgid "transactions" msgstr "transactions" #. type: Plain text -#: guix-git/doc/guix.texi:3054 +#: guix-git/doc/guix.texi:3071 msgid "The command provides the obvious install, remove, and upgrade operations. Each invocation is actually a @emph{transaction}: either the specified operation succeeds, or nothing happens. Thus, if the @command{guix package} process is terminated during the transaction, or if a power outage occurs during the transaction, then the user's profile remains in its previous state, and remains usable." msgstr "La commande fournit les opérations évidentes d'installation, de suppression et de mise à jour. Chaque invocation est en fait une @emph{transaction} : soit l'opération demandée réussit, soit rien ne se passe. Ainsi, si le processus @command{guix package} est terminé pendant la transaction ou si une panne de courant arrive pendant la transaction, le profil reste dans son état précédent et reste utilisable." #. type: Plain text -#: guix-git/doc/guix.texi:3062 +#: guix-git/doc/guix.texi:3079 msgid "In addition, any package transaction may be @emph{rolled back}. So, if, for example, an upgrade installs a new version of a package that turns out to have a serious bug, users may roll back to the previous instance of their profile, which was known to work well. Similarly, the global system configuration on Guix is subject to transactional upgrades and roll-back (@pxref{Using the Configuration System})." msgstr "En plus, il est possible @emph{d'annuler} toute transaction sur les paquets. Donc si par exemple un mise à jour installe une nouvelle version d'un paquet qui révèle un bogue sérieux, vous pouvez revenir en arrière à l'instance précédente de votre profil que vous saviez bien fonctionner. De même, la configuration globale du système dans Guix est sujette aux mises à jour transactionnelles et aux annulations (@pxref{Using the Configuration System})." #. type: Plain text -#: guix-git/doc/guix.texi:3069 +#: guix-git/doc/guix.texi:3086 msgid "All packages in the package store may be @emph{garbage-collected}. Guix can determine which packages are still referenced by user profiles, and remove those that are provably no longer referenced (@pxref{Invoking guix gc}). Users may also explicitly remove old generations of their profile so that the packages they refer to can be collected." msgstr "Tout paquet du dépôt des paquets peut être @emph{glané}. Guix peut déterminer quels paquets sont toujours référencés par les profils des utilisateur·rice·s et supprimer ceux qui ne sont de tout évidence plus référencés (@pxref{Invoking guix gc}). Les utilisateur·rice·s peuvent toujours explicitement supprimer les anciennes générations de leur profil pour que les paquets auxquels elles faisaient référence puissent être glanés." #. type: Plain text -#: guix-git/doc/guix.texi:3082 +#: guix-git/doc/guix.texi:3099 msgid "Guix takes a @dfn{purely functional} approach to package management, as described in the introduction (@pxref{Introduction}). Each @file{/gnu/store} package directory name contains a hash of all the inputs that were used to build that package---compiler, libraries, build scripts, etc. This direct correspondence allows users to make sure a given package installation matches the current state of their distribution. It also helps maximize @dfn{build reproducibility}: thanks to the isolated build environments that are used, a given build is likely to yield bit-identical files when performed on different machines (@pxref{Invoking guix-daemon, container})." msgstr "Guix prend une approche @dfn{purement fonctionnelle} de la gestion de paquets, telle que décrite dans l'introduction (@pxref{Introduction}). Chaque nom de répertoire de paquet dans @file{/gnu/store} contient un hash de toutes les entrées qui ont été utilisées pendant la construction de ce paquet — le compilateur, les bibliothèques, les scripts de construction, etc. Cette correspondance directe permet aux utilisateur·rice·s de s'assurer que l'installation d'un paquet donné correspond à l'état actuel de leur distribution. Elle aide aussi à maximiser la @dfn{reproductibilité} : grâce aux environnements de construction utilisés, une construction donnée a de forte chances de donner des fichiers identiques bit-à-bit lorsqu'elle est effectuée sur des machines différentes (@pxref{Invoking guix-daemon, container})." #. type: Plain text -#: guix-git/doc/guix.texi:3093 +#: guix-git/doc/guix.texi:3110 msgid "This foundation allows Guix to support @dfn{transparent binary/source deployment}. When a pre-built binary for a @file{/gnu/store} item is available from an external source---a @dfn{substitute}, Guix just downloads it and unpacks it; otherwise, it builds the package from source, locally (@pxref{Substitutes}). Because build results are usually bit-for-bit reproducible, users do not have to trust servers that provide substitutes: they can force a local build and @emph{challenge} providers (@pxref{Invoking guix challenge})." msgstr "Ce fondement permet à Guix de supporter le @dfn{déploiement transparent de binaire ou source}. Lorsqu'une binaire pré-construit pour une entrée de @file{/gnu/store} est disponible depuis une source externe (un @dfn{substitut}), Guix le télécharge simplement et le décompresse ; sinon, il construit le paquet depuis les sources localement (@pxref{Substituts}). Comme les résultats des constructions sont généralement reproductibles au bit près, si vous n'avez pas besoin de faire confiance aux serveurs qui fournissent les substituts : vous pouvez forcer une construction locale et @emph{défier} les fournisseurs (@pxref{Invoking guix challenge})." #. type: Plain text -#: guix-git/doc/guix.texi:3099 +#: guix-git/doc/guix.texi:3116 msgid "Control over the build environment is a feature that is also useful for developers. The @command{guix shell} command allows developers of a package to quickly set up the right development environment for their package, without having to manually install the dependencies of the package into their profile (@pxref{Invoking guix shell})." msgstr "Le contrôle de l'environnement de construction est aussi une fonctionnalité utile pour les développeurs. La commande @command{guix shell} permet aux développeurs d'un paquet de mettre en place rapidement le bon environnement de développement pour leur paquet, sans avoir à installer manuellement les dépendances du paquet dans leur profil (@pxref{Invoking guix shell})." #. type: cindex -#: guix-git/doc/guix.texi:3100 +#: guix-git/doc/guix.texi:3117 #, no-wrap msgid "replication, of software environments" msgstr "réplication, des environnements logiciels" #. type: cindex -#: guix-git/doc/guix.texi:3101 +#: guix-git/doc/guix.texi:3118 #, no-wrap msgid "provenance tracking, of software artifacts" msgstr "suivi de la provenance, des artefacts logiciels" #. type: Plain text -#: guix-git/doc/guix.texi:3108 +#: guix-git/doc/guix.texi:3125 msgid "All of Guix and its package definitions is version-controlled, and @command{guix pull} allows you to ``travel in time'' on the history of Guix itself (@pxref{Invoking guix pull}). This makes it possible to replicate a Guix instance on a different machine or at a later point in time, which in turn allows you to @emph{replicate complete software environments}, while retaining precise @dfn{provenance tracking} of the software." msgstr "La totalité de Guix et des définitions de paquets sont placés sous contrôle de version, et @command{guix pull} vous permet de « voyager dans le temps » de l'historique de Guix lui-même (@pxref{Invoking guix pull}). Cela est rend possible la réplication d'une instance Guix sur une machine différente ou plus tard, ce qui vous permet de @emph{répliquer des environnements logiciels complets}, tout en garantissant un @dfn{suivi de provenance} précis des logiciels." #. type: section -#: guix-git/doc/guix.texi:3110 +#: guix-git/doc/guix.texi:3127 #, no-wrap msgid "Invoking @command{guix package}" msgstr "Invoquer @command{guix package}" #. type: cindex -#: guix-git/doc/guix.texi:3112 +#: guix-git/doc/guix.texi:3129 #, no-wrap msgid "installing packages" msgstr "installer des paquets" #. type: cindex -#: guix-git/doc/guix.texi:3113 +#: guix-git/doc/guix.texi:3130 #, no-wrap msgid "removing packages" msgstr "supprimer des paquets" #. type: cindex -#: guix-git/doc/guix.texi:3114 +#: guix-git/doc/guix.texi:3131 #, no-wrap msgid "package installation" msgstr "installation de paquets" #. type: cindex -#: guix-git/doc/guix.texi:3115 +#: guix-git/doc/guix.texi:3132 #, no-wrap msgid "package removal" msgstr "suppression de paquets" #. type: Plain text -#: guix-git/doc/guix.texi:3125 +#: guix-git/doc/guix.texi:3142 msgid "The @command{guix package} command is the tool that allows users to install, upgrade, and remove packages, as well as rolling back to previous configurations. These operations work on a user @dfn{profile}---a directory of installed packages. Each user has a default profile in @file{$HOME/.guix-profile}. The command operates only on the user's own profile, and works with normal user privileges (@pxref{Features}). Its syntax is:" msgstr "La commande @command{guix package} est l'outil qui permet d'installer, mettre à jour et supprimer les paquets ainsi que de revenir à une configuration précédente. Ces opérations fonctionnent sur un @dfn{profil} utilisateur---un répertoire avec les paquets installés. Chaque utilisateur a un profile par défaut dans @file{$HOME/.guix-profile}. La commande n'opère que dans le profil de l'utilisateur·rice et fonctionne avec les privilèges normaux (@pxref{Fonctionnalités}). Sa syntaxe est :" #. type: example -#: guix-git/doc/guix.texi:3128 +#: guix-git/doc/guix.texi:3145 #, no-wrap msgid "guix package @var{options}\n" msgstr "guix package @var{options}\n" #. type: Plain text -#: guix-git/doc/guix.texi:3135 +#: guix-git/doc/guix.texi:3152 msgid "Primarily, @var{options} specifies the operations to be performed during the transaction. Upon completion, a new profile is created, but previous @dfn{generations} of the profile remain available, should the user want to roll back." msgstr "@var{options} spécifie d'abord les opérations à effectuer pendant la transaction. À la fin, une nouvelle génération du profil est créée mais les @dfn{générations} précédentes du profil restent disponibles si l'utilisateur·rice souhaite y revenir." #. type: Plain text -#: guix-git/doc/guix.texi:3138 +#: guix-git/doc/guix.texi:3155 msgid "For example, to remove @code{lua} and install @code{guile} and @code{guile-cairo} in a single transaction:" msgstr "Par exemple, pour supprimer @code{lua} et installer @code{guile} et @code{guile-cairo} en une seule transaction :" #. type: example -#: guix-git/doc/guix.texi:3141 +#: guix-git/doc/guix.texi:3158 #, no-wrap msgid "guix package -r lua -i guile guile-cairo\n" msgstr "guix package -r lua -i guile guile-cairo\n" #. type: cindex -#: guix-git/doc/guix.texi:3143 +#: guix-git/doc/guix.texi:3160 #, no-wrap msgid "aliases, for @command{guix package}" msgstr "alias, de @command{guix package}" #. type: Plain text -#: guix-git/doc/guix.texi:3145 +#: guix-git/doc/guix.texi:3162 msgid "For your convenience, we also provide the following aliases:" msgstr "Parce que c'est pratique, nous fournissons aussi les alias suivants :" #. type: itemize -#: guix-git/doc/guix.texi:3149 +#: guix-git/doc/guix.texi:3166 msgid "@command{guix search} is an alias for @command{guix package -s}," msgstr "@command{guix search} est un alias de @command{guix package -s}," #. type: itemize -#: guix-git/doc/guix.texi:3151 +#: guix-git/doc/guix.texi:3168 msgid "@command{guix install} is an alias for @command{guix package -i}," msgstr "@command{guix install} est un alias de @command{guix package -i}," #. type: itemize -#: guix-git/doc/guix.texi:3153 +#: guix-git/doc/guix.texi:3170 msgid "@command{guix remove} is an alias for @command{guix package -r}," msgstr "@command{guix remove} est un alias de @command{guix package -r}," #. type: itemize -#: guix-git/doc/guix.texi:3155 +#: guix-git/doc/guix.texi:3172 msgid "@command{guix upgrade} is an alias for @command{guix package -u}," msgstr "@command{guix upgrade} est un alias de @command{guix package -u}," #. type: itemize -#: guix-git/doc/guix.texi:3157 +#: guix-git/doc/guix.texi:3174 msgid "and @command{guix show} is an alias for @command{guix package --show=}." msgstr "et @command{guix search} est un alias de @command{guix package -s}." #. type: Plain text -#: guix-git/doc/guix.texi:3162 +#: guix-git/doc/guix.texi:3179 msgid "These aliases are less expressive than @command{guix package} and provide fewer options, so in some cases you'll probably want to use @command{guix package} directly." msgstr "Ces alias sont moins expressifs que @command{guix package} et fournissent moins d'options, donc dans certains cas vous devrez probablement utiliser @command{guix package} directement." #. type: Plain text -#: guix-git/doc/guix.texi:3167 +#: guix-git/doc/guix.texi:3184 msgid "@command{guix package} also supports a @dfn{declarative approach} whereby the user specifies the exact set of packages to be available and passes it @i{via} the @option{--manifest} option (@pxref{profile-manifest, @option{--manifest}})." msgstr "@command{guix package} supporte aussi une @dfn{approche déclarative} où on spécifie l'ensemble exact des paquets qui doivent être disponibles que l'on passe @i{via} l'option @option{--manifest} (@pxref{profile-manifest, @option{--manifest}})." #. type: Plain text -#: guix-git/doc/guix.texi:3174 +#: guix-git/doc/guix.texi:3191 msgid "For each user, a symlink to the user's default profile is automatically created in @file{$HOME/.guix-profile}. This symlink always points to the current generation of the user's default profile. Thus, users can add @file{$HOME/.guix-profile/bin} to their @env{PATH} environment variable, and so on." msgstr "Pour chaque utilisateur·rice, un lien symbolique vers son profil par défaut est automatiquement créé dans @file{$HOME/.guix-profile}. Ce lien symbolique pointe toujours vers la génération actuelle du profil par défaut du compte. Ainsi, on peut ajouter @file{$HOME/.guix-profile/bin} à sa variable d'environnement @env{PATH} etc." #. type: cindex -#: guix-git/doc/guix.texi:3174 guix-git/doc/guix.texi:3418 +#: guix-git/doc/guix.texi:3191 guix-git/doc/guix.texi:3435 #, no-wrap msgid "search paths" msgstr "chemins de recherche" #. type: Plain text -#: guix-git/doc/guix.texi:3179 +#: guix-git/doc/guix.texi:3196 msgid "If you are not using Guix System, consider adding the following lines to your @file{~/.bash_profile} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}) so that newly-spawned shells get all the right environment variable definitions:" msgstr "Si vous n'utilisez pas la distribution système Guix, vous devriez ajouter les lignes suivantes à votre @file{~/.bash_profile} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}) pour que les shells créés ensuite aient tous les bonnes définitions des variables d'environnement :" #. type: example -#: guix-git/doc/guix.texi:3183 +#: guix-git/doc/guix.texi:3200 #, no-wrap msgid "" "GUIX_PROFILE=\"$HOME/.guix-profile\" ; \\\n" @@ -9063,298 +9137,298 @@ msgstr "" "source \"$GUIX_PROFILE/etc/profile\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:3194 +#: guix-git/doc/guix.texi:3211 msgid "In a multi-user setup, user profiles are stored in a place registered as a @dfn{garbage-collector root}, which @file{$HOME/.guix-profile} points to (@pxref{Invoking guix gc}). That directory is normally @code{@var{localstatedir}/guix/profiles/per-user/@var{user}}, where @var{localstatedir} is the value passed to @code{configure} as @option{--localstatedir}, and @var{user} is the user name. The @file{per-user} directory is created when @command{guix-daemon} is started, and the @var{user} sub-directory is created by @command{guix package}." msgstr "Dans un environnement multi-utilisateur·rice, les profils des utilisateur·rice·s sont stockés dans un emplacement enregistré comme @dfn{garbage-collector root}, vers lequel @file{$HOME/.guix-profile} pointe (@pxref{Invoquer guix gc}). Ce répertoire est normalement @code{@var{localstatedir}/guix/profiles/per-user/@var{user}}, où @var{localstatedir} est la valeur passée à @code{configure} comme @option{--localstatedir}, et @var{user} est le nom d'utilisateur·rice. Le répertoire @file{per-user} est créé au démarrage de @command{guix-daemon}, et le sous-répertoire @var{user} est créé par @command{guix package}." #. type: Plain text -#: guix-git/doc/guix.texi:3196 +#: guix-git/doc/guix.texi:3213 msgid "The @var{options} can be among the following:" msgstr "Les @var{options} peuvent être les suivante :" #. type: item -#: guix-git/doc/guix.texi:3199 +#: guix-git/doc/guix.texi:3216 #, no-wrap msgid "--install=@var{package} @dots{}" msgstr "--install=@var{paquet} @dots{}" #. type: itemx -#: guix-git/doc/guix.texi:3200 +#: guix-git/doc/guix.texi:3217 #, no-wrap msgid "-i @var{package} @dots{}" msgstr "-i @var{paquet} @dots{}" #. type: table -#: guix-git/doc/guix.texi:3202 +#: guix-git/doc/guix.texi:3219 msgid "Install the specified @var{package}s." msgstr "Installer les @var{paquet}s spécifiés." #. type: table -#: guix-git/doc/guix.texi:3207 +#: guix-git/doc/guix.texi:3224 msgid "Each @var{package} may specify either a simple package name, such as @code{guile}, or a package name followed by an at-sign and version number, such as @code{guile@@1.8.8} or simply @code{guile@@1.8} (in the latter case, the newest version prefixed by @code{1.8} is selected)." msgstr "Chaque @var{paquet} peut spécifier soit un simple nom de paquet, tel que @code{guile}, soit un nom de paquet suivi d'un at-sign et d'un numéro de version, tel que @code{guile@@1.8.8} ou simplement @code{guile@@1.8}. (dans ce dernier cas, la version la plus récente préfixée par @code{1.8} est sélectionnée)." #. type: table -#: guix-git/doc/guix.texi:3215 +#: guix-git/doc/guix.texi:3232 msgid "If no version number is specified, the newest available version will be selected. In addition, @var{package} may contain a colon, followed by the name of one of the outputs of the package, as in @code{gcc:doc} or @code{binutils@@2.22:lib} (@pxref{Packages with Multiple Outputs}). Packages with a corresponding name (and optionally version) are searched for among the GNU distribution modules (@pxref{Package Modules})." msgstr "Si aucun numéro de version n'est spécifié, la version la plus récente disponible est choisie. En plus, @var{paquet} peut contenir un deux-points, suivi du nom d'une des sorties du paquet, comme dans @code{gcc:doc} ou @code{binutils@@2.22:lib} (@pxref{Packages with Multiple Outputs}). Des paquets avec un nom correspondant et (éventuellement une version) sont recherchés dans les modules de la distribution GNU (@pxref{Package Modules})." #. type: cindex -#: guix-git/doc/guix.texi:3216 +#: guix-git/doc/guix.texi:3233 #, no-wrap msgid "propagated inputs" msgstr "entrées propagées" #. type: table -#: guix-git/doc/guix.texi:3222 +#: guix-git/doc/guix.texi:3239 msgid "Sometimes packages have @dfn{propagated inputs}: these are dependencies that automatically get installed along with the required package (@pxref{package-propagated-inputs, @code{propagated-inputs} in @code{package} objects}, for information about propagated inputs in package definitions)." msgstr "Parfois les paquets ont des @dfn{entrées propagées} : ce sont des dépendances qui sont installées automatiquement avec le paquet demandé (@pxref{package-propagated-inputs, @code{propagated-inputs} in @code{package} objects} pour plus d'informations sur les entrées propagées dans les définitions des paquets)." #. type: anchor{#1} -#: guix-git/doc/guix.texi:3229 +#: guix-git/doc/guix.texi:3246 msgid "package-cmd-propagated-inputs" msgstr "package-cmd-propagated-inputs" #. type: table -#: guix-git/doc/guix.texi:3229 +#: guix-git/doc/guix.texi:3246 msgid "An example is the GNU MPC library: its C header files refer to those of the GNU MPFR library, which in turn refer to those of the GMP library. Thus, when installing MPC, the MPFR and GMP libraries also get installed in the profile; removing MPC also removes MPFR and GMP---unless they had also been explicitly installed by the user." msgstr "Un exemple est la bibliothèque MPC de GNU : ses fichiers d'en-tête C se réfèrent à ceux de la bibliothèque MPFR de GNU, qui se réfèrent en retour à ceux de la bibliothèque GMP. Ainsi, lorsqu'on installe MPC, les bibliothèques MPFR et GMP sont aussi installées dans le profil ; supprimer MPC supprimera aussi MPFR et GMP — à moins qu'ils n'aient été aussi installés explicitement par l'utilisateur·rice." #. type: table -#: guix-git/doc/guix.texi:3234 +#: guix-git/doc/guix.texi:3251 msgid "Besides, packages sometimes rely on the definition of environment variables for their search paths (see explanation of @option{--search-paths} below). Any missing or possibly incorrect environment variable definitions are reported here." msgstr "En outre, les paquets s'appuient parfois sur la définition de variables d'environnement pour leurs chemins de recherche (voir l'explication de l'@option{--chemins de recherche} ci-dessous). Toute définition de variable d'environnement manquante ou éventuellement incorrecte est reportée ici." #. type: item -#: guix-git/doc/guix.texi:3235 +#: guix-git/doc/guix.texi:3252 #, no-wrap msgid "--install-from-expression=@var{exp}" msgstr "--install-from-expression=@var{exp}" #. type: itemx -#: guix-git/doc/guix.texi:3236 +#: guix-git/doc/guix.texi:3253 #, no-wrap msgid "-e @var{exp}" msgstr "-e @var{exp}" #. type: table -#: guix-git/doc/guix.texi:3238 +#: guix-git/doc/guix.texi:3255 msgid "Install the package @var{exp} evaluates to." msgstr "Installer le paquet évalué par @var{exp}." #. type: table -#: guix-git/doc/guix.texi:3243 +#: guix-git/doc/guix.texi:3260 msgid "@var{exp} must be a Scheme expression that evaluates to a @code{} object. This option is notably useful to disambiguate between same-named variants of a package, with expressions such as @code{(@@ (gnu packages base) guile-final)}." msgstr "@var{exp} doit être une expression Scheme qui s'évalue en un objet @code{}. Cette option est notamment utile pour distinguer les variantes d'un paquet avec le même nom, avec des expressions comme @code{(@@ (gnu packages base) guile-final)}." #. type: table -#: guix-git/doc/guix.texi:3247 +#: guix-git/doc/guix.texi:3264 msgid "Note that this option installs the first output of the specified package, which may be insufficient when needing a specific output of a multiple-output package." msgstr "Remarquez que cette option installe la première sortie du paquet, ce qui peut être insuffisant lorsque vous avez besoin d'une sortie spécifique d'un paquet à plusieurs sorties." #. type: item -#: guix-git/doc/guix.texi:3248 +#: guix-git/doc/guix.texi:3265 #, no-wrap msgid "--install-from-file=@var{file}" msgstr "--install-from-file=@var{fichier}" #. type: itemx -#: guix-git/doc/guix.texi:3249 guix-git/doc/guix.texi:5781 -#: guix-git/doc/guix.texi:11396 +#: guix-git/doc/guix.texi:3266 guix-git/doc/guix.texi:5799 +#: guix-git/doc/guix.texi:11710 #, no-wrap msgid "-f @var{file}" msgstr "-f @var{fichier}" #. type: table -#: guix-git/doc/guix.texi:3251 +#: guix-git/doc/guix.texi:3268 msgid "Install the package that the code within @var{file} evaluates to." msgstr "Installer le paquet évalué par le code dans le @var{fichier}." #. type: table -#: guix-git/doc/guix.texi:3254 guix-git/doc/guix.texi:5787 -#: guix-git/doc/guix.texi:6162 +#: guix-git/doc/guix.texi:3271 guix-git/doc/guix.texi:5805 +#: guix-git/doc/guix.texi:6199 msgid "As an example, @var{file} might contain a definition like this (@pxref{Defining Packages}):" msgstr "Par exemple, @var{fichier} peut contenir une définition comme celle-ci (@pxref{Defining Packages}) :" #. type: include -#: guix-git/doc/guix.texi:3256 guix-git/doc/guix.texi:11404 +#: guix-git/doc/guix.texi:3273 guix-git/doc/guix.texi:11718 #, no-wrap msgid "package-hello.scm" msgstr "package-hello.scm" #. type: table -#: guix-git/doc/guix.texi:3263 +#: guix-git/doc/guix.texi:3280 msgid "Developers may find it useful to include such a @file{guix.scm} file in the root of their project source tree that can be used to test development snapshots and create reproducible development environments (@pxref{Invoking guix shell})." msgstr "Lorsqu'on développe, on peut trouver utile d'inclure un tel fichier @file{guix.scm} à la racine de l'arborescence des sources de son projet qui pourrait être utilisé pour tester des versions de développement et créer des environnements de développement reproductibles (@pxref{Invoking guix shell})." #. type: table -#: guix-git/doc/guix.texi:3268 +#: guix-git/doc/guix.texi:3285 msgid "The @var{file} may also contain a JSON representation of one or more package definitions. Running @code{guix package -f} on @file{hello.json} with the following contents would result in installing the package @code{greeter} after building @code{myhello}:" msgstr "Le @var{fichier} peut aussi contenir une représentation JSON d'une ou de plusieurs définitions de paquets. L'exécution de @code{guix package -f} sur @file{hello.json} avec le contenu suivant entraînerait l'installation du paquet @code{greeter} après la construction de @code{myhello} :" #. type: example -#: guix-git/doc/guix.texi:3271 guix-git/doc/guix.texi:11414 +#: guix-git/doc/guix.texi:3288 guix-git/doc/guix.texi:11728 #, no-wrap msgid "@verbatiminclude package-hello.json\n" msgstr "@verbatiminclude package-hello.json\n" #. type: item -#: guix-git/doc/guix.texi:3273 +#: guix-git/doc/guix.texi:3290 #, no-wrap msgid "--remove=@var{package} @dots{}" msgstr "--remove=@var{paquet} @dots{}" #. type: itemx -#: guix-git/doc/guix.texi:3274 +#: guix-git/doc/guix.texi:3291 #, no-wrap msgid "-r @var{package} @dots{}" msgstr "-r @var{paquet} @dots{}" #. type: table -#: guix-git/doc/guix.texi:3276 +#: guix-git/doc/guix.texi:3293 msgid "Remove the specified @var{package}s." msgstr "Supprimer les @var{paquet}s spécifiés." #. type: table -#: guix-git/doc/guix.texi:3281 +#: guix-git/doc/guix.texi:3298 msgid "As for @option{--install}, each @var{package} may specify a version number and/or output name in addition to the package name. For instance, @samp{-r glibc:debug} would remove the @code{debug} output of @code{glibc}." msgstr "Comme pour @option{--install}, chaque @var{paquet} peut spécifier un numéro de version ou un nom de sortie en plus du nom du paquet. Par exemple, @samp{-r glibc:debug} supprimerait la sortie @code{debug} de @code{glibc}." #. type: item -#: guix-git/doc/guix.texi:3282 +#: guix-git/doc/guix.texi:3299 #, no-wrap msgid "--upgrade[=@var{regexp} @dots{}]" msgstr "--upgrade[=@var{regexp} @dots{}]" #. type: itemx -#: guix-git/doc/guix.texi:3283 +#: guix-git/doc/guix.texi:3300 #, no-wrap msgid "-u [@var{regexp} @dots{}]" msgstr "-u [@var{regexp} @dots{}]" #. type: cindex -#: guix-git/doc/guix.texi:3284 +#: guix-git/doc/guix.texi:3301 #, no-wrap msgid "upgrading packages" msgstr "mettre à jour des paquets" #. type: table -#: guix-git/doc/guix.texi:3288 +#: guix-git/doc/guix.texi:3305 msgid "Upgrade all the installed packages. If one or more @var{regexp}s are specified, upgrade only installed packages whose name matches a @var{regexp}. Also see the @option{--do-not-upgrade} option below." msgstr "Mettre à jour tous les paquets installés. Si un ou plusieurs @var{regexp} sont spécifiés, la mise à jour n'installera que les paquets dont le nom correspond à @var{regexp}. Voir aussi l'option @option{--do-not-upgrade} ci-dessous." #. type: table -#: guix-git/doc/guix.texi:3293 +#: guix-git/doc/guix.texi:3310 msgid "Note that this upgrades package to the latest version of packages found in the distribution currently installed. To update your distribution, you should regularly run @command{guix pull} (@pxref{Invoking guix pull})." msgstr "Remarquez que cela met à jour vers la dernière version des paquets trouvée dans la distribution actuellement installée. Pour mettre à jour votre distribution, vous devriez lancer régulièrement @command{guix pull} (@pxref{Invoking guix pull})." #. type: cindex -#: guix-git/doc/guix.texi:3294 +#: guix-git/doc/guix.texi:3311 #, no-wrap msgid "package transformations, upgrades" msgstr "transformations de paquets, mises à jour" #. type: table -#: guix-git/doc/guix.texi:3299 +#: guix-git/doc/guix.texi:3316 msgid "When upgrading, package transformations that were originally applied when creating the profile are automatically re-applied (@pxref{Package Transformation Options}). For example, assume you first installed Emacs from the tip of its development branch with:" msgstr "Quand une mise à jour est en cours d'exécution, les transformations de paquets initialement appliquées lors de la création du profil sont automatiquement réappliquées (@pxref{Package Transformation Options}). Par exemple, supposons que vous ayez d'abord installé Emacs depuis l'extrémité de sa branche de développement avec :" #. type: example -#: guix-git/doc/guix.texi:3302 +#: guix-git/doc/guix.texi:3319 #, no-wrap msgid "guix install emacs-next --with-branch=emacs-next=master\n" msgstr "guix install emacs-next --with-branch=emacs-next=master\n" #. type: table -#: guix-git/doc/guix.texi:3307 +#: guix-git/doc/guix.texi:3324 msgid "Next time you run @command{guix upgrade}, Guix will again pull the tip of the Emacs development branch and build @code{emacs-next} from that checkout." msgstr "La prochaine fois que vous lancerez @command{guix upgrade}, Guix va à nouveau extraire l'extrémité de la branche de développement Emacs et construira @code{emacs-next} à partir de ce checkout." #. type: table -#: guix-git/doc/guix.texi:3312 +#: guix-git/doc/guix.texi:3329 msgid "Note that transformation options such as @option{--with-branch} and @option{--with-source} depend on external state; it is up to you to ensure that they work as expected. You can also discard a transformations that apply to a package by running:" msgstr "Notez que les options de transformation comme @option{--with-branch} et @option{--with-source} dépendent de l'état exterieur ; c'est à vous de vous assurer qu'elles fonctionnent comme souhaité. Vous pouvez également écarter une transformation qui s'applique à un paquet en lançant :" #. type: example -#: guix-git/doc/guix.texi:3315 +#: guix-git/doc/guix.texi:3332 #, no-wrap msgid "guix install @var{package}\n" msgstr "$ guix install @var{paquet}\n" #. type: item -#: guix-git/doc/guix.texi:3317 +#: guix-git/doc/guix.texi:3334 #, no-wrap msgid "--do-not-upgrade[=@var{regexp} @dots{}]" msgstr "--do-not-upgrade[=@var{regexp} @dots{}]" #. type: table -#: guix-git/doc/guix.texi:3322 +#: guix-git/doc/guix.texi:3339 msgid "When used together with the @option{--upgrade} option, do @emph{not} upgrade any packages whose name matches a @var{regexp}. For example, to upgrade all packages in the current profile except those containing the substring ``emacs'':" msgstr "Lors d'une utilisation conjointe avec l'option @option{--upgrade}, ne @emph{pas} mettre à jour les paquets dont le nom correspond à @var{regexp}. Par exemple, pour mettre à jour tous les paquets du profil actuel à l'exception de ceux qui contiennent la chaîne « emacs » :" #. type: example -#: guix-git/doc/guix.texi:3325 +#: guix-git/doc/guix.texi:3342 #, no-wrap msgid "$ guix package --upgrade . --do-not-upgrade emacs\n" msgstr "$ guix package --upgrade . --do-not-upgrade emacs\n" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3327 +#: guix-git/doc/guix.texi:3344 #, no-wrap msgid "profile-manifest" msgstr "profile-manifest" #. type: item -#: guix-git/doc/guix.texi:3327 guix-git/doc/guix.texi:5799 -#: guix-git/doc/guix.texi:6167 guix-git/doc/guix.texi:6615 -#: guix-git/doc/guix.texi:12535 guix-git/doc/guix.texi:14135 +#: guix-git/doc/guix.texi:3344 guix-git/doc/guix.texi:5817 +#: guix-git/doc/guix.texi:6204 guix-git/doc/guix.texi:6658 +#: guix-git/doc/guix.texi:12850 guix-git/doc/guix.texi:14492 #, no-wrap msgid "--manifest=@var{file}" msgstr "--manifest=@var{fichier}" #. type: itemx -#: guix-git/doc/guix.texi:3328 guix-git/doc/guix.texi:5800 -#: guix-git/doc/guix.texi:6168 guix-git/doc/guix.texi:6616 -#: guix-git/doc/guix.texi:12536 +#: guix-git/doc/guix.texi:3345 guix-git/doc/guix.texi:5818 +#: guix-git/doc/guix.texi:6205 guix-git/doc/guix.texi:6659 +#: guix-git/doc/guix.texi:12851 #, no-wrap msgid "-m @var{file}" msgstr "-m @var{fichier}" #. type: cindex -#: guix-git/doc/guix.texi:3329 +#: guix-git/doc/guix.texi:3346 #, no-wrap msgid "profile declaration" msgstr "déclaration de profil" #. type: cindex -#: guix-git/doc/guix.texi:3330 +#: guix-git/doc/guix.texi:3347 #, no-wrap msgid "profile manifest" msgstr "manifest de profil" #. type: table -#: guix-git/doc/guix.texi:3334 +#: guix-git/doc/guix.texi:3351 msgid "Create a new generation of the profile from the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "Créer une nouvelle génération du profil depuis l'objet manifeste renvoyé par le code Scheme dans @var{fichier}. Cette option peut être répétée plusieurs fois, auquel cas les manifestes sont concaténés." #. type: table -#: guix-git/doc/guix.texi:3340 +#: guix-git/doc/guix.texi:3357 msgid "This allows you to @emph{declare} the profile's contents rather than constructing it through a sequence of @option{--install} and similar commands. The advantage is that @var{file} can be put under version control, copied to different machines to reproduce the same profile, and so on." msgstr "Cela vous permet de @emph{déclarer} le contenu du profil plutôt que de le construire avec une série de @option{--install} et de commandes similaires. L'avantage étant que le @var{fichier} peut être placé sous contrôle de version, copié vers d'autres machines pour reproduire le même profil, etc." #. type: table -#: guix-git/doc/guix.texi:3344 +#: guix-git/doc/guix.texi:3361 msgid "@var{file} must return a @dfn{manifest} object, which is roughly a list of packages:" msgstr "@var{fichier} doit renvoyer un objet @dfn{manifest} qui est en gros une liste de paquets :" #. type: findex -#: guix-git/doc/guix.texi:3345 +#: guix-git/doc/guix.texi:3362 #, no-wrap msgid "packages->manifest" msgstr "packages->manifest" #. type: lisp -#: guix-git/doc/guix.texi:3348 +#: guix-git/doc/guix.texi:3365 #, no-wrap msgid "" "(use-package-modules guile emacs)\n" @@ -9364,7 +9438,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:3354 +#: guix-git/doc/guix.texi:3371 #, no-wrap msgid "" "(packages->manifest\n" @@ -9380,18 +9454,18 @@ msgstr "" " (list guile-2.0 \"debug\")))\n" #. type: findex -#: guix-git/doc/guix.texi:3356 +#: guix-git/doc/guix.texi:3373 #, no-wrap msgid "specifications->manifest" msgstr "specifications->manifest" #. type: table -#: guix-git/doc/guix.texi:3363 +#: guix-git/doc/guix.texi:3380 msgid "In this example we have to know which modules define the @code{emacs} and @code{guile-2.0} variables to provide the right @code{use-package-modules} line, which can be cumbersome. We can instead provide regular package specifications and let @code{specifications->manifest} look up the corresponding package objects, like this:" msgstr "Dans cet exemple on doit savoir quels modules définissent les variables @code{emacs} et @code{guile-2.0} pour fournir la bonne ligne @code{use-package-modules} ce qui peut être embêtant. On peut à la place fournir des spécifications de paquets normales et laisser @code{specifications->manifest} rechercher les objets de paquets correspondants, comme ceci :" #. type: lisp -#: guix-git/doc/guix.texi:3367 +#: guix-git/doc/guix.texi:3384 #, no-wrap msgid "" "(specifications->manifest\n" @@ -9401,150 +9475,150 @@ msgstr "" " '(\"emacs\" \"guile@@2.2\" \"guile@@2.2:debug\"))\n" #. type: findex -#: guix-git/doc/guix.texi:3369 +#: guix-git/doc/guix.texi:3386 #, no-wrap msgid "package->development-manifest" msgstr "package->development-manifest" #. type: table -#: guix-git/doc/guix.texi:3372 +#: guix-git/doc/guix.texi:3389 msgid "You might also want to create a manifest for all the dependencies of a package, rather than the package itself:" msgstr "Vous pourriez aussi vouloir créer un manifeste pour toutes les dépendances d'un paquet, plutôt que pour le paquet lui-même :" #. type: lisp -#: guix-git/doc/guix.texi:3375 +#: guix-git/doc/guix.texi:3392 #, no-wrap msgid "(package->development-manifest (specification->package \"emacs\"))\n" msgstr "(package->development-manifest (specification->package \"emacs\"))\n" #. type: table -#: guix-git/doc/guix.texi:3379 +#: guix-git/doc/guix.texi:3396 msgid "The example above gives you all the software required to develop Emacs, similar to what @command{guix environment emacs} provides." msgstr "L'exemple plus haut vous donne tous les logiciels requis pour développer Emacs, comme ce que @command{guix environment emacs} vous donnerait." #. type: table -#: guix-git/doc/guix.texi:3382 +#: guix-git/doc/guix.texi:3399 msgid "@xref{export-manifest, @option{--export-manifest}}, to learn how to obtain a manifest file from an existing profile." msgstr "@xref{export-manifest, @option{--export-manifest}}, pour apprendre à obtenir un fichier manifeste depuis un profil existant." #. type: item -#: guix-git/doc/guix.texi:3383 guix-git/doc/guix.texi:4492 +#: guix-git/doc/guix.texi:3400 guix-git/doc/guix.texi:4510 #, no-wrap msgid "--roll-back" msgstr "--roll-back" #. type: cindex -#: guix-git/doc/guix.texi:3384 guix-git/doc/guix.texi:4493 -#: guix-git/doc/guix.texi:35006 guix-git/doc/guix.texi:37641 +#: guix-git/doc/guix.texi:3401 guix-git/doc/guix.texi:4511 +#: guix-git/doc/guix.texi:35445 guix-git/doc/guix.texi:38120 #, no-wrap msgid "rolling back" msgstr "revenir en arrière" #. type: cindex -#: guix-git/doc/guix.texi:3385 guix-git/doc/guix.texi:4494 +#: guix-git/doc/guix.texi:3402 guix-git/doc/guix.texi:4512 #, no-wrap msgid "undoing transactions" msgstr "défaire des transactions" #. type: cindex -#: guix-git/doc/guix.texi:3386 guix-git/doc/guix.texi:4495 +#: guix-git/doc/guix.texi:3403 guix-git/doc/guix.texi:4513 #, no-wrap msgid "transactions, undoing" msgstr "transactions, défaire" #. type: table -#: guix-git/doc/guix.texi:3389 +#: guix-git/doc/guix.texi:3406 msgid "Roll back to the previous @dfn{generation} of the profile---i.e., undo the last transaction." msgstr "Revenir à la @dfn{génération} précédente du profil c.-à-d.@: défaire la dernière transaction." #. type: table -#: guix-git/doc/guix.texi:3392 +#: guix-git/doc/guix.texi:3409 msgid "When combined with options such as @option{--install}, roll back occurs before any other actions." msgstr "Lorsqu'elle est combinée avec des options comme @option{--install}, Le retour en arrière se produit avant toute autre action." #. type: table -#: guix-git/doc/guix.texi:3396 +#: guix-git/doc/guix.texi:3413 msgid "When rolling back from the first generation that actually contains installed packages, the profile is made to point to the @dfn{zeroth generation}, which contains no files apart from its own metadata." msgstr "Lorsque vous revenez de la première génération qui contient des fichiers, le profil pointera vers la @dfn{zéroième génération} qui ne contient aucun fichier en dehors de ses propres métadonnées." #. type: table -#: guix-git/doc/guix.texi:3400 +#: guix-git/doc/guix.texi:3417 msgid "After having rolled back, installing, removing, or upgrading packages overwrites previous future generations. Thus, the history of the generations in a profile is always linear." msgstr "Après être revenu en arrière, l'installation, la suppression et la mise à jour de paquets réécrit les futures générations précédentes. Ainsi, l'historique des générations dans un profil est toujours linéaire." #. type: item -#: guix-git/doc/guix.texi:3401 guix-git/doc/guix.texi:4499 +#: guix-git/doc/guix.texi:3418 guix-git/doc/guix.texi:4517 #, no-wrap msgid "--switch-generation=@var{pattern}" msgstr "--switch-generation=@var{motif}" #. type: itemx -#: guix-git/doc/guix.texi:3402 guix-git/doc/guix.texi:4500 +#: guix-git/doc/guix.texi:3419 guix-git/doc/guix.texi:4518 #, no-wrap msgid "-S @var{pattern}" msgstr "-S @var{motif}" #. type: cindex -#: guix-git/doc/guix.texi:3403 guix-git/doc/guix.texi:3635 -#: guix-git/doc/guix.texi:4501 guix-git/doc/guix.texi:34964 +#: guix-git/doc/guix.texi:3420 guix-git/doc/guix.texi:3653 +#: guix-git/doc/guix.texi:4519 guix-git/doc/guix.texi:35403 #, no-wrap msgid "generations" msgstr "générations" #. type: table -#: guix-git/doc/guix.texi:3405 guix-git/doc/guix.texi:4503 +#: guix-git/doc/guix.texi:3422 guix-git/doc/guix.texi:4521 msgid "Switch to a particular generation defined by @var{pattern}." msgstr "Basculer vers une génération particulière définie par le @var{motif}." #. type: table -#: guix-git/doc/guix.texi:3411 guix-git/doc/guix.texi:4509 +#: guix-git/doc/guix.texi:3428 guix-git/doc/guix.texi:4527 msgid "@var{pattern} may be either a generation number or a number prefixed with ``+'' or ``-''. The latter means: move forward/backward by a specified number of generations. For example, if you want to return to the latest generation after @option{--roll-back}, use @option{--switch-generation=+1}." msgstr "Le @var{motif} peut être soit un numéro de génération soit un nombre précédé de « + » ou « - ». Ce dernier signifie : se déplacer en avant ou en arrière d'un nombre donné de générations. Par exemple, si vous voulez retourner à la dernière génération après @option{--roll-back}, utilisez @option{--switch-generation=+1}." #. type: table -#: guix-git/doc/guix.texi:3416 +#: guix-git/doc/guix.texi:3433 msgid "The difference between @option{--roll-back} and @option{--switch-generation=-1} is that @option{--switch-generation} will not make a zeroth generation, so if a specified generation does not exist, the current generation will not be changed." msgstr "La différence entre @option{--roll-back} et @option{--switch-generation=-1} est que @option{--switch-generation} ne vous amènera pas à la génération initiale, donc si la génération demandée n'existe pas la génération actuelle ne changera pas." #. type: item -#: guix-git/doc/guix.texi:3417 +#: guix-git/doc/guix.texi:3434 #, no-wrap msgid "--search-paths[=@var{kind}]" msgstr "--search-paths[=@var{genre}]" #. type: table -#: guix-git/doc/guix.texi:3423 +#: guix-git/doc/guix.texi:3440 msgid "Report environment variable definitions, in Bash syntax, that may be needed in order to use the set of installed packages. These environment variables are used to specify @dfn{search paths} for files used by some of the installed packages." msgstr "Rapporter les définitions des variables d'environnement dans la syntaxe Bash qui peuvent être requises pour utiliser l'ensemble des paquets installés. Ces variables d'environnement sont utilisées pour spécifier les @dfn{chemins de recherche} de fichiers utilisés par les paquets installés." #. type: table -#: guix-git/doc/guix.texi:3431 -msgid "For example, GCC needs the @env{CPATH} and @env{LIBRARY_PATH} environment variables to be defined so it can look for headers and libraries in the user's profile (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C library are installed in the profile, then @option{--search-paths} will suggest setting these variables to @file{@var{profile}/include} and @file{@var{profile}/lib}, respectively." -msgstr "Par exemple, GCC a besoin des variables d'environnement @env{CPATH} et @env{LIBRARY_PATH} pour trouver les en-têtes et les bibliothèques dans le profil de l'utilisateur·rice (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). Si GCC et, disons, la bibliothèque C sont installés dans le profil, alors @option{--search-paths} suggérera d'initialiser ces variables à @file{@var{profil}/include} et @file{@var{profil}/lib}, respectivement." +#: guix-git/doc/guix.texi:3449 +msgid "For example, GCC needs the @env{CPATH} and @env{LIBRARY_PATH} environment variables to be defined so it can look for headers and libraries in the user's profile (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C library are installed in the profile, then @option{--search-paths} will suggest setting these variables to @file{@var{profile}/include} and @file{@var{profile}/lib}, respectively (@pxref{Search Paths}, for info on search path specifications associated with packages.)" +msgstr "Par exemple, GCC a besoin des variables d'environnement @env{CPATH} et @env{LIBRARY_PATH} pour trouver les en-têtes et les bibliothèques dans le profil de l'utilisateur·rice (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). Si GCC et, disons, la bibliothèque C sont installés dans le profil, alors @option{--search-paths} suggérera d'initialiser ces variables à @file{@var{profil}/include} et @file{@var{profil}/lib}, respectivement (@pxref{Search Paths}, pour des infos sur les spécifications de chemins de recherche associées aux paquets)." #. type: table -#: guix-git/doc/guix.texi:3434 +#: guix-git/doc/guix.texi:3452 msgid "The typical use case is to define these environment variables in the shell:" msgstr "Le cas d'utilisation typique est de définir ces variables d'environnement dans le shell :" #. type: example -#: guix-git/doc/guix.texi:3437 +#: guix-git/doc/guix.texi:3455 #, no-wrap msgid "$ eval `guix package --search-paths`\n" msgstr "$ eval `guix package --search-paths`\n" #. type: table -#: guix-git/doc/guix.texi:3443 +#: guix-git/doc/guix.texi:3461 msgid "@var{kind} may be one of @code{exact}, @code{prefix}, or @code{suffix}, meaning that the returned environment variable definitions will either be exact settings, or prefixes or suffixes of the current value of these variables. When omitted, @var{kind} defaults to @code{exact}." msgstr "@var{genre} peut être l'une des valeurs @code{exact}, @code{prefix} ou @code{suffix}, ce qui signifie que les définitions des variables d'environnement renvoyées seront soit les paramètres exacts, soit placés avant ou après la valeur actuelle de ces paramètres. Lorsqu'il est omis, @var{genre} a pour valeur par défaut @code{exact}." #. type: table -#: guix-git/doc/guix.texi:3446 +#: guix-git/doc/guix.texi:3464 msgid "This option can also be used to compute the @emph{combined} search paths of several profiles. Consider this example:" msgstr "Cette option peut aussi être utilisé pour calculer les chemins de recherche @emph{combinés} de plusieurs profils. Regardez cet exemple :" #. type: example -#: guix-git/doc/guix.texi:3451 +#: guix-git/doc/guix.texi:3469 #, no-wrap msgid "" "$ guix package -p foo -i guile\n" @@ -9556,42 +9630,44 @@ msgstr "" "$ guix package -p toto -p titi --search-paths\n" #. type: table -#: guix-git/doc/guix.texi:3456 +#: guix-git/doc/guix.texi:3474 msgid "The last command above reports about the @env{GUILE_LOAD_PATH} variable, even though, taken individually, neither @file{foo} nor @file{bar} would lead to that recommendation." msgstr "La dernière commande ci-dessus montre la variable @env{GUILE_LOAD_PATH} bien que, pris individuellement, ni @file{toto} ni @file{titi} n'auraient donné cette recommandation." #. type: cindex -#: guix-git/doc/guix.texi:3458 +#: guix-git/doc/guix.texi:3476 #, no-wrap msgid "profile, choosing" msgstr "profil, choix du" #. type: item -#: guix-git/doc/guix.texi:3459 guix-git/doc/guix.texi:4529 -#: guix-git/doc/guix.texi:4858 +#: guix-git/doc/guix.texi:3477 guix-git/doc/guix.texi:4547 +#: guix-git/doc/guix.texi:4876 guix-git/doc/guix.texi:5827 +#: guix-git/doc/guix.texi:6240 #, no-wrap msgid "--profile=@var{profile}" msgstr "--profile=@var{profil}" #. type: itemx -#: guix-git/doc/guix.texi:3460 guix-git/doc/guix.texi:4530 -#: guix-git/doc/guix.texi:4859 +#: guix-git/doc/guix.texi:3478 guix-git/doc/guix.texi:4548 +#: guix-git/doc/guix.texi:4877 guix-git/doc/guix.texi:5828 +#: guix-git/doc/guix.texi:6241 #, no-wrap msgid "-p @var{profile}" msgstr "-p @var{profil}" #. type: table -#: guix-git/doc/guix.texi:3462 +#: guix-git/doc/guix.texi:3480 msgid "Use @var{profile} instead of the user's default profile." msgstr "Utiliser le @var{profil} à la place du profil par défaut du compte." #. type: table -#: guix-git/doc/guix.texi:3467 +#: guix-git/doc/guix.texi:3485 msgid "@var{profile} must be the name of a file that will be created upon completion. Concretely, @var{profile} will be a mere symbolic link (``symlink'') pointing to the actual profile where packages are installed:" msgstr "@var{profil} doit être le nom d'un fichier qui sera créé une fois terminé. Concrètement, @var{profil} sera un simple lien symbolique (« symlink ») pointant vers le profil réel où les paquets sont installés :" #. type: example -#: guix-git/doc/guix.texi:3473 +#: guix-git/doc/guix.texi:3491 #, no-wrap msgid "" "$ guix install hello -p ~/code/my-profile\n" @@ -9605,29 +9681,29 @@ msgstr "" "Hello, world!\n" #. type: table -#: guix-git/doc/guix.texi:3477 +#: guix-git/doc/guix.texi:3495 msgid "All it takes to get rid of the profile is to remove this symlink and its siblings that point to specific generations:" msgstr "Tout ce qu'il faut pour se débarrasser du profil est de supprimer ce lien symbolique et ses frères et sœurs qui pointent vers des générations spécifiques :" #. type: example -#: guix-git/doc/guix.texi:3480 +#: guix-git/doc/guix.texi:3498 #, no-wrap msgid "$ rm ~/code/my-profile ~/code/my-profile-*-link\n" msgstr "$ rm ~/code/my-profile ~/code/my-profile-*-link\n" #. type: item -#: guix-git/doc/guix.texi:3482 +#: guix-git/doc/guix.texi:3500 #, no-wrap msgid "--list-profiles" msgstr "--list-profiles" #. type: table -#: guix-git/doc/guix.texi:3484 +#: guix-git/doc/guix.texi:3502 msgid "List all the user's profiles:" msgstr "Liste tous les profils utilisateur·rice :" #. type: example -#: guix-git/doc/guix.texi:3491 +#: guix-git/doc/guix.texi:3509 #, no-wrap msgid "" "$ guix package --list-profiles\n" @@ -9643,96 +9719,96 @@ msgstr "" "/home/charlie/tmp/test\n" #. type: table -#: guix-git/doc/guix.texi:3494 +#: guix-git/doc/guix.texi:3512 msgid "When running as root, list all the profiles of all the users." msgstr "En cours d'exécution sous root, liste tous les profils de tou·te·s les utilisateur·rice·s." #. type: cindex -#: guix-git/doc/guix.texi:3495 +#: guix-git/doc/guix.texi:3513 #, no-wrap msgid "collisions, in a profile" msgstr "collisions, dans un profil" #. type: cindex -#: guix-git/doc/guix.texi:3496 +#: guix-git/doc/guix.texi:3514 #, no-wrap msgid "colliding packages in profiles" msgstr "faire des collisions de paquets dans des profils" #. type: cindex -#: guix-git/doc/guix.texi:3497 +#: guix-git/doc/guix.texi:3515 #, no-wrap msgid "profile collisions" msgstr "profil, collisions" #. type: item -#: guix-git/doc/guix.texi:3498 +#: guix-git/doc/guix.texi:3516 #, no-wrap msgid "--allow-collisions" msgstr "--allow-collisions" #. type: table -#: guix-git/doc/guix.texi:3500 +#: guix-git/doc/guix.texi:3518 msgid "Allow colliding packages in the new profile. Use at your own risk!" msgstr "Permettre des collisions de paquets dans le nouveau profil. À utiliser à vos risques et périls !" #. type: table -#: guix-git/doc/guix.texi:3504 +#: guix-git/doc/guix.texi:3522 msgid "By default, @command{guix package} reports as an error @dfn{collisions} in the profile. Collisions happen when two or more different versions or variants of a given package end up in the profile." msgstr "Par défaut, @command{guix package} rapporte les @dfn{collisions} dans le profil comme des erreurs. Les collisions ont lieu quand deux version ou variantes d'un paquet donné se retrouvent dans le profil." #. type: item -#: guix-git/doc/guix.texi:3505 guix-git/doc/guix.texi:4572 -#: guix-git/doc/guix.texi:6701 +#: guix-git/doc/guix.texi:3523 guix-git/doc/guix.texi:4590 +#: guix-git/doc/guix.texi:6744 #, no-wrap msgid "--bootstrap" msgstr "--bootstrap" #. type: table -#: guix-git/doc/guix.texi:3508 +#: guix-git/doc/guix.texi:3526 msgid "Use the bootstrap Guile to build the profile. This option is only useful to distribution developers." msgstr "Utiliser le programme d'amorçage Guile pour compiler le profil. Cette option n'est utile qu'aux personnes qui développent la distribution." #. type: Plain text -#: guix-git/doc/guix.texi:3514 +#: guix-git/doc/guix.texi:3532 msgid "In addition to these actions, @command{guix package} supports the following options to query the current state of a profile, or the availability of packages:" msgstr "En plus de ces actions, @command{guix package} supporte les options suivantes pour demander l'état actuel d'un profil ou la disponibilité des paquets :" #. type: item -#: guix-git/doc/guix.texi:3517 +#: guix-git/doc/guix.texi:3535 #, no-wrap msgid "--search=@var{regexp}" msgstr "--search=@var{regexp}" #. type: itemx -#: guix-git/doc/guix.texi:3518 +#: guix-git/doc/guix.texi:3536 #, no-wrap msgid "-s @var{regexp}" msgstr "-s @var{regexp}" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3520 +#: guix-git/doc/guix.texi:3538 msgid "guix-search" msgstr "guix-search" #. type: cindex -#: guix-git/doc/guix.texi:3520 +#: guix-git/doc/guix.texi:3538 #, no-wrap msgid "searching for packages" msgstr "chercher des paquets" #. type: table -#: guix-git/doc/guix.texi:3526 +#: guix-git/doc/guix.texi:3544 msgid "List the available packages whose name, synopsis, or description matches @var{regexp} (in a case-insensitive fashion), sorted by relevance. Print all the metadata of matching packages in @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "Lister les paquets disponibles dont le nom, le synopsis ou la description correspondent à la @var{regexp} (en étant insensible à la casse), triés par pertinence. Afficher toutes les métadonnées des paquets correspondants au format @code{recutils} (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." #. type: table -#: guix-git/doc/guix.texi:3529 +#: guix-git/doc/guix.texi:3547 msgid "This allows specific fields to be extracted using the @command{recsel} command, for instance:" msgstr "Cela permet à des champs spécifiques d'être extraits avec la commande @command{recsel}, par exemple :" #. type: example -#: guix-git/doc/guix.texi:3535 +#: guix-git/doc/guix.texi:3553 #, no-wrap msgid "" "$ guix package -s malloc | recsel -p name,version,relevance\n" @@ -9748,7 +9824,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:3539 +#: guix-git/doc/guix.texi:3557 #, no-wrap msgid "" "name: glibc\n" @@ -9762,7 +9838,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:3543 +#: guix-git/doc/guix.texi:3561 #, no-wrap msgid "" "name: libgc\n" @@ -9774,12 +9850,12 @@ msgstr "" "relevance: 1\n" #. type: table -#: guix-git/doc/guix.texi:3547 +#: guix-git/doc/guix.texi:3565 msgid "Similarly, to show the name of all the packages available under the terms of the GNU@tie{}LGPL version 3:" msgstr "De manière similaire, pour montrer le nom de tous les paquets disponibles sous license GNU@tie{}LGPL version 3 :" #. type: example -#: guix-git/doc/guix.texi:3551 +#: guix-git/doc/guix.texi:3569 #, no-wrap msgid "" "$ guix package -s \"\" | recsel -p name -e 'license ~ \"LGPL 3\"'\n" @@ -9791,7 +9867,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:3554 +#: guix-git/doc/guix.texi:3572 #, no-wrap msgid "" "name: gmp\n" @@ -9801,12 +9877,12 @@ msgstr "" "@dots{}\n" #. type: table -#: guix-git/doc/guix.texi:3560 +#: guix-git/doc/guix.texi:3578 msgid "It is also possible to refine search results using several @code{-s} flags to @command{guix package}, or several arguments to @command{guix search}. For example, the following command returns a list of board games (this time using the @command{guix search} alias):" msgstr "Il est aussi possible de raffiner les résultats de la recherche en donnant plusieurs options @code{-s} à @command{guix package}, ou plusieurs arguments à @command{guix search}. Par exemple, la commande suivante renvoie la liste des jeux de plateau (cette fois-ci avec l'alias @command{guix search}) :" #. type: example -#: guix-git/doc/guix.texi:3565 +#: guix-git/doc/guix.texi:3583 #, no-wrap msgid "" "$ guix search '\\' game | recsel -p name\n" @@ -9818,17 +9894,17 @@ msgstr "" "@dots{}\n" #. type: table -#: guix-git/doc/guix.texi:3571 +#: guix-git/doc/guix.texi:3589 msgid "If we were to omit @code{-s game}, we would also get software packages that deal with printed circuit boards; removing the angle brackets around @code{board} would further add packages that have to do with keyboards." msgstr "Si on avait oublié @code{-s game}, on aurait aussi eu les paquets logiciels qui s'occupent de circuits imprimés (en anglais : circuit board) ; supprimer les chevrons autour de @code{board} aurait aussi ajouté les paquets qui parlent de clavier (en anglais : key@emph{board})." #. type: table -#: guix-git/doc/guix.texi:3575 +#: guix-git/doc/guix.texi:3593 msgid "And now for a more elaborate example. The following command searches for cryptographic libraries, filters out Haskell, Perl, Python, and Ruby libraries, and prints the name and synopsis of the matching packages:" msgstr "Et maintenant un exemple plus élaboré. La commande suivante recherche les bibliothèques cryptographiques, retire les bibliothèques Haskell, Perl, Python et Ruby et affiche le nom et le synopsis des paquets correspondants :" #. type: example -#: guix-git/doc/guix.texi:3579 +#: guix-git/doc/guix.texi:3597 #, no-wrap msgid "" "$ guix search crypto library | \\\n" @@ -9838,23 +9914,23 @@ msgstr "" " recsel -e '! (name ~ \"^(ghc|perl|python|ruby)\")' -p name,synopsis\n" #. type: table -#: guix-git/doc/guix.texi:3584 +#: guix-git/doc/guix.texi:3602 msgid "@xref{Selection Expressions,,, recutils, GNU recutils manual}, for more information on @dfn{selection expressions} for @code{recsel -e}." msgstr "@xref{Selection Expressions,,, recutils, GNU recutils manual} pour plus d'information sur les @dfn{expressions de sélection} pour @code{recsel -e}." #. type: item -#: guix-git/doc/guix.texi:3585 +#: guix-git/doc/guix.texi:3603 #, no-wrap msgid "--show=@var{package}" msgstr "--show=@var{paquet}" #. type: table -#: guix-git/doc/guix.texi:3589 +#: guix-git/doc/guix.texi:3607 msgid "Show details about @var{package}, taken from the list of available packages, in @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "Afficher les détails du @var{paquet} dans la liste des paquets disponibles, au format @code{recutils} (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." #. type: example -#: guix-git/doc/guix.texi:3594 +#: guix-git/doc/guix.texi:3612 #, no-wrap msgid "" "$ guix package --show=guile | recsel -p name,version\n" @@ -9868,7 +9944,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:3597 +#: guix-git/doc/guix.texi:3615 #, no-wrap msgid "" "name: guile\n" @@ -9880,7 +9956,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:3601 +#: guix-git/doc/guix.texi:3619 #, no-wrap msgid "" "name: guile\n" @@ -9892,12 +9968,12 @@ msgstr "" "@dots{}\n" #. type: table -#: guix-git/doc/guix.texi:3605 +#: guix-git/doc/guix.texi:3623 msgid "You may also specify the full name of a package to only get details about a specific version of it (this time using the @command{guix show} alias):" msgstr "Vous pouvez aussi spécifier le nom complet d'un paquet pour n'avoir que les détails concernant une version spécifique (cette fois-ci avec l'alias @command{guix show}) :" #. type: example -#: guix-git/doc/guix.texi:3609 +#: guix-git/doc/guix.texi:3627 #, no-wrap msgid "" "$ guix show guile@@3.0.5 | recsel -p name,version\n" @@ -9909,297 +9985,297 @@ msgstr "" "version: 3.0.5\n" #. type: item -#: guix-git/doc/guix.texi:3611 +#: guix-git/doc/guix.texi:3629 #, no-wrap msgid "--list-installed[=@var{regexp}]" msgstr "--list-installed[=@var{regexp}]" #. type: itemx -#: guix-git/doc/guix.texi:3612 +#: guix-git/doc/guix.texi:3630 #, no-wrap msgid "-I [@var{regexp}]" msgstr "-I [@var{regexp}]" #. type: table -#: guix-git/doc/guix.texi:3616 +#: guix-git/doc/guix.texi:3634 msgid "List the currently installed packages in the specified profile, with the most recently installed packages shown last. When @var{regexp} is specified, list only installed packages whose name matches @var{regexp}." msgstr "Liste les paquets actuellement installés dans le profil spécifié, avec les paquets les plus récemment installés en dernier. Lorsque @var{regexp} est spécifié, liste uniquement les paquets installés dont le nom correspond à @var{regexp}." #. type: table -#: guix-git/doc/guix.texi:3622 +#: guix-git/doc/guix.texi:3640 msgid "For each installed package, print the following items, separated by tabs: the package name, its version string, the part of the package that is installed (for instance, @code{out} for the default output, @code{include} for its headers, etc.), and the path of this package in the store." msgstr "Pour chaque paquet installé, affiche les éléments suivants, séparés par des tabulations : le nom du paquet, sa version, la partie du paquet qui est installé (par exemple, @code{out} pour la sortie par défaut, @code{include} pour ses en-têtes, etc) et le chemin du paquet dans le dépôt." #. type: item -#: guix-git/doc/guix.texi:3623 +#: guix-git/doc/guix.texi:3641 #, no-wrap msgid "--list-available[=@var{regexp}]" msgstr "--list-available[=@var{regexp}]" #. type: itemx -#: guix-git/doc/guix.texi:3624 +#: guix-git/doc/guix.texi:3642 #, no-wrap msgid "-A [@var{regexp}]" msgstr "-A [@var{regexp}]" #. type: table -#: guix-git/doc/guix.texi:3628 +#: guix-git/doc/guix.texi:3646 msgid "List packages currently available in the distribution for this system (@pxref{GNU Distribution}). When @var{regexp} is specified, list only available packages whose name matches @var{regexp}." msgstr "Lister les paquets actuellement disponibles dans la distribution pour ce système (@pxref{GNU Distribution}). Lorsque @var{regexp} est spécifié, lister uniquement les paquets dont le nom correspond à @var{regexp}." #. type: table -#: guix-git/doc/guix.texi:3632 +#: guix-git/doc/guix.texi:3650 msgid "For each package, print the following items separated by tabs: its name, its version string, the parts of the package (@pxref{Packages with Multiple Outputs}), and the source location of its definition." msgstr "Pour chaque paquet, affiche les éléments suivants séparés par des tabulations : son nom, sa version, les parties du paquet (@pxref{Packages with Multiple Outputs}), et l'emplacement de sa définition." #. type: item -#: guix-git/doc/guix.texi:3633 guix-git/doc/guix.texi:4485 +#: guix-git/doc/guix.texi:3651 guix-git/doc/guix.texi:4503 #, no-wrap msgid "--list-generations[=@var{pattern}]" msgstr "--list-generations[=@var{motif}]" #. type: itemx -#: guix-git/doc/guix.texi:3634 guix-git/doc/guix.texi:4486 +#: guix-git/doc/guix.texi:3652 guix-git/doc/guix.texi:4504 #, no-wrap msgid "-l [@var{pattern}]" msgstr "-l [@var{motif}]" #. type: table -#: guix-git/doc/guix.texi:3640 +#: guix-git/doc/guix.texi:3658 msgid "Return a list of generations along with their creation dates; for each generation, show the installed packages, with the most recently installed packages shown last. Note that the zeroth generation is never shown." msgstr "Renvoyer la liste des générations avec leur date de création ; pour chaque génération, montre les paquets installés avec les paquets installés les plus récemment en dernier. Remarquez que la zéroième génération n'est jamais montrée." #. type: table -#: guix-git/doc/guix.texi:3645 +#: guix-git/doc/guix.texi:3663 msgid "For each installed package, print the following items, separated by tabs: the name of a package, its version string, the part of the package that is installed (@pxref{Packages with Multiple Outputs}), and the location of this package in the store." msgstr "Pour chaque paquet installé, afficher les éléments suivants, séparés par des tabulations : le nom du paquet, sa version, la partie du paquet qui a été installée (@pxref{Packages with Multiple Outputs}), et l'emplacement du paquet dans le dépôt." #. type: table -#: guix-git/doc/guix.texi:3648 +#: guix-git/doc/guix.texi:3666 msgid "When @var{pattern} is used, the command returns only matching generations. Valid patterns include:" msgstr "Lorsque @var{motif} est utilisé, la commande ne renvoie que les générations correspondantes. Les motifs valides sont :" #. type: item -#: guix-git/doc/guix.texi:3650 +#: guix-git/doc/guix.texi:3668 #, no-wrap msgid "@emph{Integers and comma-separated integers}. Both patterns denote" msgstr "@emph{Des entiers et des entiers séparés par des virgules}. Les deux motifs correspondent" #. type: itemize -#: guix-git/doc/guix.texi:3653 +#: guix-git/doc/guix.texi:3671 msgid "generation numbers. For instance, @option{--list-generations=1} returns the first one." msgstr "numéros de génération. Par exemple, @option{--list-generations=1} renvoie la première." #. type: itemize -#: guix-git/doc/guix.texi:3656 +#: guix-git/doc/guix.texi:3674 msgid "And @option{--list-generations=1,8,2} outputs three generations in the specified order. Neither spaces nor trailing commas are allowed." msgstr "Et @option{--list-generations=1,8,2} renvoie les trois générations dans l'ordre spécifié. Aucun espace ni virgule surnuméraire ne sont permis." #. type: item -#: guix-git/doc/guix.texi:3657 +#: guix-git/doc/guix.texi:3675 #, no-wrap msgid "@emph{Ranges}. @option{--list-generations=2..9} prints the" msgstr "@emph{Ranges}. @option{--list-generations=2..9} affiche les" #. type: itemize -#: guix-git/doc/guix.texi:3660 +#: guix-git/doc/guix.texi:3678 msgid "specified generations and everything in between. Note that the start of a range must be smaller than its end." msgstr "générations demandées et tout ce qui se trouve entre elles. Remarquez que le début d'un intervalle doit être plus petit que sa fin." #. type: itemize -#: guix-git/doc/guix.texi:3664 +#: guix-git/doc/guix.texi:3682 msgid "It is also possible to omit the endpoint. For example, @option{--list-generations=2..}, returns all generations starting from the second one." msgstr "Il est aussi possible d'omettre le numéro final. Par exemple, @option{--list-generations=2..} renvoie toutes les générations à partir de la deuxième." #. type: item -#: guix-git/doc/guix.texi:3665 +#: guix-git/doc/guix.texi:3683 #, no-wrap msgid "@emph{Durations}. You can also get the last @emph{N}@tie{}days, weeks," msgstr "@emph{Des durées}. Vous pouvez aussi récupérer les derniers @emph{N}@tie{}jours, semaines," #. type: itemize -#: guix-git/doc/guix.texi:3669 +#: guix-git/doc/guix.texi:3687 msgid "or months by passing an integer along with the first letter of the duration. For example, @option{--list-generations=20d} lists generations that are up to 20 days old." msgstr "ou mois en passant un entier avec la première lettre de la durée (en anglais : d, w ou m). Par exemple @option{--list-generations=20d} liste les générations qui sont âgées d'au plus 20 jours." #. type: item -#: guix-git/doc/guix.texi:3671 guix-git/doc/guix.texi:4510 +#: guix-git/doc/guix.texi:3689 guix-git/doc/guix.texi:4528 #, no-wrap msgid "--delete-generations[=@var{pattern}]" msgstr "--delete-generations[=@var{motif}]" #. type: itemx -#: guix-git/doc/guix.texi:3672 guix-git/doc/guix.texi:4511 +#: guix-git/doc/guix.texi:3690 guix-git/doc/guix.texi:4529 #, no-wrap msgid "-d [@var{pattern}]" msgstr "-d [@var{motif}]" #. type: table -#: guix-git/doc/guix.texi:3675 guix-git/doc/guix.texi:4514 +#: guix-git/doc/guix.texi:3693 guix-git/doc/guix.texi:4532 msgid "When @var{pattern} is omitted, delete all generations except the current one." msgstr "Lorsque @var{motif} est omis, supprimer toutes les générations en dehors de l'actuelle." #. type: table -#: guix-git/doc/guix.texi:3681 guix-git/doc/guix.texi:4520 +#: guix-git/doc/guix.texi:3699 guix-git/doc/guix.texi:4538 msgid "This command accepts the same patterns as @option{--list-generations}. When @var{pattern} is specified, delete the matching generations. When @var{pattern} specifies a duration, generations @emph{older} than the specified duration match. For instance, @option{--delete-generations=1m} deletes generations that are more than one month old." msgstr "Cette commande accepte les même motifs que @option{--list-generations}. Lorsque @var{motif} est spécifié, supprime les générations correspondantes. Lorsque @var{motif} spécifie une durée, les générations @emph{plus anciennes} que la durée spécifiée correspondent. Par exemple @option{--delete-generations=1m} supprime les générations vieilles de plus d'un mois." #. type: table -#: guix-git/doc/guix.texi:3684 +#: guix-git/doc/guix.texi:3702 msgid "If the current generation matches, it is @emph{not} deleted. Also, the zeroth generation is never deleted." msgstr "Si la génération actuelle correspond, elle n'est @emph{pas} supprimée. La zéroième génération n'est elle non plus jamais supprimée." #. type: table -#: guix-git/doc/guix.texi:3687 guix-git/doc/guix.texi:4525 +#: guix-git/doc/guix.texi:3705 guix-git/doc/guix.texi:4543 msgid "Note that deleting generations prevents rolling back to them. Consequently, this command must be used with care." msgstr "Remarquez que supprimer des générations empêche de revenir en arrière vers elles. Ainsi, cette commande doit être utilisée avec précaution." #. type: cindex -#: guix-git/doc/guix.texi:3688 +#: guix-git/doc/guix.texi:3706 #, no-wrap msgid "manifest, exporting" msgstr "manifeste, export" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3690 +#: guix-git/doc/guix.texi:3708 msgid "export-manifest" msgstr "export-manifest" #. type: item -#: guix-git/doc/guix.texi:3690 +#: guix-git/doc/guix.texi:3708 #, no-wrap msgid "--export-manifest" msgstr "--export-manifest" #. type: table -#: guix-git/doc/guix.texi:3693 +#: guix-git/doc/guix.texi:3711 msgid "Write to standard output a manifest suitable for @option{--manifest} corresponding to the chosen profile(s)." msgstr "Écrire un manifeste vers la sortie standard utilisable avec @option{--manifest} et qui correspond à un ou plusieurs profils choisis." #. type: table -#: guix-git/doc/guix.texi:3697 +#: guix-git/doc/guix.texi:3715 msgid "This option is meant to help you migrate from the ``imperative'' operating mode---running @command{guix install}, @command{guix upgrade}, etc.---to the declarative mode that @option{--manifest} offers." msgstr "Cette option est conçue pour vous aider à migre du mode de fonctionnement « impératif » --- lancer @command{guix install}, @command{guix upgrade}, etc --- au mode déclaratif offert par @option{--manifest}." #. type: table -#: guix-git/doc/guix.texi:3702 +#: guix-git/doc/guix.texi:3720 msgid "Be aware that the resulting manifest @emph{approximates} what your profile actually contains; for instance, depending on how your profile was created, it can refer to packages or package versions that are not exactly what you specified." msgstr "Soyez conscient que le manifeste qui est résulte est une @emph{approximation} de ce que votre profil contient vraiment ; par exemple, en fonction de la manière dont votre profil a été créé, il peut se référer à des paquets ou des versions de paquets qui ne sont pas exactement ce que vous avez spécifié." #. type: table -#: guix-git/doc/guix.texi:3707 +#: guix-git/doc/guix.texi:3725 msgid "Keep in mind that a manifest is purely symbolic: it only contains package names and possibly versions, and their meaning varies over time. If you wish to ``pin'' channels to the revisions that were used to build the profile(s), see @option{--export-channels} below." msgstr "Gardez en tête qu'un manifeste est purement symbolique : il ne contient que des noms de paquets et éventuellement des versions, et leur signification varie avec le temps. Si vous voulez « épingler » des canaux aux révisions qui ont été utilisées pour construire les profils, voir @option{--export-channels} plus bas." #. type: cindex -#: guix-git/doc/guix.texi:3708 +#: guix-git/doc/guix.texi:3726 #, no-wrap msgid "pinning, channel revisions of a profile" msgstr "épinglage, des révisions des canaux d'un profil" #. type: item -#: guix-git/doc/guix.texi:3709 +#: guix-git/doc/guix.texi:3727 #, no-wrap msgid "--export-channels" msgstr "--export-channels" #. type: table -#: guix-git/doc/guix.texi:3713 +#: guix-git/doc/guix.texi:3731 msgid "Write to standard output the list of channels used by the chosen profile(s), in a format suitable for @command{guix pull --channels} or @command{guix time-machine --channels} (@pxref{Channels})." msgstr "Écrit sur la sortie standard la liste des canaux utilisés par les profils choisi, dans un format convenable pour @command{guix pull --channels} ou @command{guix time-machine --channels} (@pxref{Channels})." #. type: table -#: guix-git/doc/guix.texi:3717 +#: guix-git/doc/guix.texi:3735 msgid "Together with @option{--export-manifest}, this option provides information allowing you to replicate the current profile (@pxref{Replicating Guix})." msgstr "Avec @option{--export-manifest}, cette option fournit les informations qui vous permettent de répliquer le profil actuel (@pxref{Replicating Guix})." #. type: table -#: guix-git/doc/guix.texi:3725 +#: guix-git/doc/guix.texi:3743 msgid "However, note that the output of this command @emph{approximates} what was actually used to build this profile. In particular, a single profile might have been built from several different revisions of the same channel. In that case, @option{--export-manifest} chooses the last one and writes the list of other revisions in a comment. If you really need to pick packages from different channel revisions, you can use inferiors in your manifest to do so (@pxref{Inferiors})." msgstr "Cependant, remarquez que la sortie de cette commande est une @emph{approximation} de ce qui a vraiment été utilisé pour construire le profil. En particulier, a profil unique peut avoir été construit à partir de plusieurs révisions du même canal. Dans ce cas, @option{--export-manifest} choisi la dernière et écrit la liste des autres révisions dans un commentaire. Si vous avez vraiment besoin de choisir des paquets à partir d'autres révisions des canaux, vous pouvez utiliser des inférieurs dans votre manifeste pour cela (@pxref{Inferiors})." #. type: table -#: guix-git/doc/guix.texi:3730 +#: guix-git/doc/guix.texi:3748 msgid "Together with @option{--export-manifest}, this is a good starting point if you are willing to migrate from the ``imperative'' model to the fully declarative model consisting of a manifest file along with a channels file pinning the exact channel revision(s) you want." msgstr "Avec @option{--export-manifest}, c'est un bon point de départ si vous voulez migrer du modèle « impératif » au modèle complètement déclaratif qui consiste en un fichier manifeste et un fichier de canaux qui épingle les révisions exactes des canaux que vous voulez." #. type: Plain text -#: guix-git/doc/guix.texi:3737 +#: guix-git/doc/guix.texi:3755 msgid "Finally, since @command{guix package} may actually start build processes, it supports all the common build options (@pxref{Common Build Options}). It also supports package transformation options, such as @option{--with-source}, and preserves them across upgrades (@pxref{Package Transformation Options})." msgstr "Enfin, comme @command{guix package} peut démarrer des processus de construction, il supporte les options de construction communes (@pxref{Common Build Options}). Il prend aussi en charge les options de transformation de paquets comme @option{--with-source}, et les préserve à travers les mises à jour (@pxref{Package Transformation Options})." #. type: cindex -#: guix-git/doc/guix.texi:3742 +#: guix-git/doc/guix.texi:3760 #, no-wrap msgid "pre-built binaries" msgstr "binaires pré-construits" #. type: Plain text -#: guix-git/doc/guix.texi:3748 +#: guix-git/doc/guix.texi:3766 msgid "Guix supports transparent source/binary deployment, which means that it can either build things locally, or download pre-built items from a server, or both. We call these pre-built items @dfn{substitutes}---they are substitutes for local build results. In many cases, downloading a substitute is much faster than building things locally." msgstr "Guix gère le déploiement depuis des binaires ou des sources de manière transparente ce qui signifie qu'il peut aussi bien construire localement que télécharger des éléments pré-construits depuis un serveur ou les deux. Nous appelons ces éléments pré-construits des @dfn{substituts} — ils se substituent aux résultats des constructions locales. Dans la plupart des cas, télécharger un substitut est bien plus rapide que de construire les choses localement." #. type: Plain text -#: guix-git/doc/guix.texi:3753 +#: guix-git/doc/guix.texi:3771 msgid "Substitutes can be anything resulting from a derivation build (@pxref{Derivations}). Of course, in the common case, they are pre-built package binaries, but source tarballs, for instance, which also result from derivation builds, can be available as substitutes." msgstr "Les substituts peuvent être tout ce qui résulte d'une construction de dérivation (@pxref{Derivations}). Bien sûr dans le cas général, il s'agit de paquets binaires pré-construits, mais les archives des sources par exemple résultent aussi de la construction d'une dérivation qui peut aussi être disponible en tant que substitut." #. type: cindex -#: guix-git/doc/guix.texi:3767 +#: guix-git/doc/guix.texi:3785 #, no-wrap msgid "build farm" msgstr "ferme de construction" #. type: Plain text -#: guix-git/doc/guix.texi:3778 +#: guix-git/doc/guix.texi:3796 msgid "@code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} are both front-ends to official build farms that build packages from Guix continuously for some architectures, and make them available as substitutes. These are the default source of substitutes; which can be overridden by passing the @option{--substitute-urls} option either to @command{guix-daemon} (@pxref{daemon-substitute-urls,, @code{guix-daemon --substitute-urls}}) or to client tools such as @command{guix package} (@pxref{client-substitute-urls,, client @option{--substitute-urls} option})." msgstr "@code{@value{SUBSTITUTE-SERVER-1}} et @code{@value{SUBSTITUTE-SERVER-2}} sont tous deux des interfaces aux fermes de construction officielles qui construisent des paquets pour Guix continuellement pour certaines architectures et les rend disponibles en tant que substituts. Ce sont les sources par défaut des substituts qui peuvent être modifiées en passant l'option @option{--substitute-urls} soit à @command{guix-daemon} (@pxref{daemon-substitute-urls,, @code{guix-daemon --substitute-urls}}) soit aux outils clients comme @command{guix package} (@pxref{client-substitute-urls,, client @option{--substitute-urls} option})." #. type: Plain text -#: guix-git/doc/guix.texi:3784 +#: guix-git/doc/guix.texi:3802 msgid "Substitute URLs can be either HTTP or HTTPS. HTTPS is recommended because communications are encrypted; conversely, using HTTP makes all communications visible to an eavesdropper, who could use the information gathered to determine, for instance, whether your system has unpatched security vulnerabilities." msgstr "Les URL des substituts peuvent être soit en HTTP soit en HTTPS. Le HTTPS est recommandé parce que les communications sont chiffrées ; à l'inverse HTTP rend les communications visibles pour un espion qui peut utiliser les informations accumulées sur vous pour déterminer par exemple si votre système a des vulnérabilités de sécurités non corrigées." #. type: Plain text -#: guix-git/doc/guix.texi:3793 +#: guix-git/doc/guix.texi:3811 msgid "Substitutes from the official build farms are enabled by default when using Guix System (@pxref{GNU Distribution}). However, they are disabled by default when using Guix on a foreign distribution, unless you have explicitly enabled them via one of the recommended installation steps (@pxref{Installation}). The following paragraphs describe how to enable or disable substitutes for the official build farm; the same procedure can also be used to enable substitutes for any other substitute server." msgstr "Les substituts des fermes de construction officielles sont activés par défaut dans la distribution système Guix (@pxref{GNU Distribution}). Cependant, ils sont désactivés par défaut lorsque vous utilisez Guix sur une distribution externe, à moins que vous ne les ayez explicitement activés via l'une des étapes d'installation recommandées (@pxref{Installation}). Les paragraphes suivants décrivent comment activer ou désactiver les substituts pour la ferme de construction officielle ; la même procédure peut être utilisée pour activer les substituts de n'importe quel autre serveur de substituts." #. type: cindex -#: guix-git/doc/guix.texi:3797 +#: guix-git/doc/guix.texi:3815 #, no-wrap msgid "security" msgstr "sécurité" #. type: cindex -#: guix-git/doc/guix.texi:3799 +#: guix-git/doc/guix.texi:3817 #, no-wrap msgid "access control list (ACL), for substitutes" msgstr "liste de contrôle d'accès (ACL), pour les substituts" #. type: cindex -#: guix-git/doc/guix.texi:3800 +#: guix-git/doc/guix.texi:3818 #, no-wrap msgid "ACL (access control list), for substitutes" msgstr "ACL (liste de contrôle d'accès), pour les substituts" #. type: Plain text -#: guix-git/doc/guix.texi:3806 +#: guix-git/doc/guix.texi:3824 msgid "To allow Guix to download substitutes from @code{@value{SUBSTITUTE-SERVER-1}}, @code{@value{SUBSTITUTE-SERVER-2}} or a mirror, you must add the relevant public key to the access control list (ACL) of archive imports, using the @command{guix archive} command (@pxref{Invoking guix archive}). Doing so implies that you trust the substitute server to not be compromised and to serve genuine substitutes." msgstr "Pour permettre à Guix de télécharger les substituts depuis @code{@value{SUBSTITUTE-SERVER-1}}, @code{@value{SUBSTITUTE-SERVER-2}} ou un miroir, vous devez ajouter la clé publique correspondante à la liste de contrôle d'accès (ACL) des imports d'archives, avec la commande @command{guix archive} (@pxref{Invoking guix archive}). Cela implique que vous faîtes confiance au serveur de substituts pour ne pas être compromis et vous servir des substituts authentiques." #. type: quotation -#: guix-git/doc/guix.texi:3811 +#: guix-git/doc/guix.texi:3829 msgid "If you are using Guix System, you can skip this section: Guix System authorizes substitutes from @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} by default." msgstr "Si vous utilisez le système Guix, vous pouvez sauter cette section : le système Guix autorise les substituts de @code{@value{SUBSTITUTE-SERVER-1}} et @code{@value{SUBSTITUTE-SERVER-2}} par défaut." #. type: Plain text -#: guix-git/doc/guix.texi:3819 +#: guix-git/doc/guix.texi:3837 msgid "The public keys for each of the project maintained substitute servers are installed along with Guix, in @code{@var{prefix}/share/guix/}, where @var{prefix} is the installation prefix of Guix. If you installed Guix from source, make sure you checked the GPG signature of @file{guix-@value{VERSION}.tar.gz}, which contains this public key file. Then, you can run something like this:" msgstr "Les clés publiques de chaque serveur de substituts maintenu par le projet sont installées avec Guix, dans @code{@var{préfixe}/share/guix/}, où @var{préfixe} est le préfixe d'installation de Guix. Si vous avez installé Guix depuis les sources, assurez-vous d'avoir vérifié la signature GPG de @file{guix-@value{VERSION}.tar.gz} qui contient ce fichier de clef publique. Ensuite vous pouvez lancer quelque chose comme ceci :" #. type: example -#: guix-git/doc/guix.texi:3823 +#: guix-git/doc/guix.texi:3841 #, no-wrap msgid "" "# guix archive --authorize < @var{prefix}/share/guix/@value{SUBSTITUTE-SERVER-1}.pub\n" @@ -10209,12 +10285,12 @@ msgstr "" "# guix archive --authorize < @var{prefix}/share/guix/@value{SUBSTITUTE-SERVER-2}.pub\n" #. type: Plain text -#: guix-git/doc/guix.texi:3827 +#: guix-git/doc/guix.texi:3845 msgid "Once this is in place, the output of a command like @code{guix build} should change from something like:" msgstr "Une fois que cela est en place, la sortie d'une commande comme @code{guix build} devrait changer de quelque chose comme :" #. type: example -#: guix-git/doc/guix.texi:3836 +#: guix-git/doc/guix.texi:3854 #, no-wrap msgid "" "$ guix build emacs --dry-run\n" @@ -10234,12 +10310,12 @@ msgstr "" "@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:3840 +#: guix-git/doc/guix.texi:3858 msgid "to something like:" msgstr "à quelque chose comme :" #. type: example -#: guix-git/doc/guix.texi:3849 +#: guix-git/doc/guix.texi:3867 #, no-wrap msgid "" "$ guix build emacs --dry-run\n" @@ -10259,49 +10335,49 @@ msgstr "" "@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:3856 +#: guix-git/doc/guix.texi:3874 msgid "The text changed from ``The following derivations would be built'' to ``112.3 MB would be downloaded''. This indicates that substitutes from the configured substitute servers are usable and will be downloaded, when possible, for future builds." msgstr "Le texte a changé de « Les dérivations suivantes seront construites » à « 112,3 Mio seront téléchargés ». Cela indique que les substituts des serveurs configurés sont utilisables et seront téléchargés, si possible, pour les futures constructions." #. type: cindex -#: guix-git/doc/guix.texi:3857 +#: guix-git/doc/guix.texi:3875 #, no-wrap msgid "substitutes, how to disable" msgstr "substituts, comment les désactiver" #. type: Plain text -#: guix-git/doc/guix.texi:3863 +#: guix-git/doc/guix.texi:3881 msgid "The substitute mechanism can be disabled globally by running @code{guix-daemon} with @option{--no-substitutes} (@pxref{Invoking guix-daemon}). It can also be disabled temporarily by passing the @option{--no-substitutes} option to @command{guix package}, @command{guix build}, and other command-line tools." msgstr "Le mécanisme de substitution peut être désactivé globalement en lançant @code{guix-daemon} avec @option{--no-substitutes} (@pxref{Invoking guix-daemon}). Il peut aussi être désactivé temporairement en passant l'option @option{--no-substitutes} à @command{guix package}, @command{guix build} et aux autres outils en ligne de commande." #. type: cindex -#: guix-git/doc/guix.texi:3867 +#: guix-git/doc/guix.texi:3885 #, no-wrap msgid "substitute servers, adding more" msgstr "serveurs de substituts, en ajouter" #. type: Plain text -#: guix-git/doc/guix.texi:3874 +#: guix-git/doc/guix.texi:3892 msgid "Guix can look up and fetch substitutes from several servers. This is useful when you are using packages from additional channels for which the official server does not have substitutes but another server provides them. Another situation where this is useful is when you would prefer to download from your organization's substitute server, resorting to the official server only as a fallback or dismissing it altogether." msgstr "Guix peut chercher et récupérer des substituts à partir de plusieurs serveurs. C'est utile si vous utilisez des paquets de canaux supplémentaires pour lesquels le serveur officiel n'a pas de substituts mais que d'autres serveurs les fournissent. Une autre situation où cela est utile est si vous souhaitez télécharger depuis les serveurs de substituts de votre organisation, en utilisant le serveur officiel en dernier recours, ou en ne l'utilisant pas du tout." #. type: Plain text -#: guix-git/doc/guix.texi:3879 +#: guix-git/doc/guix.texi:3897 msgid "You can give Guix a list of substitute server URLs and it will check them in the specified order. You also need to explicitly authorize the public keys of substitute servers to instruct Guix to accept the substitutes they sign." msgstr "Vous pouvez donner à Guix une liste d'URL de serveurs de substituts et il les vérifiera dans l'ordre indiqué. Vous devez aussi explicitement autoriser les clés publiques des serveurs de substituts pour dire à Guix d'accepter les substituts qu'ils signent." #. type: Plain text -#: guix-git/doc/guix.texi:3886 +#: guix-git/doc/guix.texi:3904 msgid "On Guix System, this is achieved by modifying the configuration of the @code{guix} service. Since the @code{guix} service is part of the default lists of services, @code{%base-services} and @code{%desktop-services}, you can use @code{modify-services} to change its configuration and add the URLs and substitute keys that you want (@pxref{Service Reference, @code{modify-services}})." msgstr "Sur le système Guix, cela se fait en modifiant la configuration du service @code{guix}. Comme le service @code{guix} fait partie des services par défaut, @code{%base-services} et @code{%desktop-services}, vous pouvez utiliser @code{modify-services} pour changer sa configuration et ajouter les URL et les clés des serveurs de substituts que vous voulez (@pxref{Service Reference, @code{modify-services}})." #. type: Plain text -#: guix-git/doc/guix.texi:3892 +#: guix-git/doc/guix.texi:3910 msgid "As an example, suppose you want to fetch substitutes from @code{guix.example.org} and to authorize the signing key of that server, in addition to the default @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}}. The resulting operating system configuration will look something like:" msgstr "Par exemple, supposons que vous vouliez récupérer les substituts de @code{guix.example.org} et autoriser la clé de signature de ce serveur, en plus des serveurs @code{@value{SUBSTITUTE-SERVER-1}} et @code{@value{SUBSTITUTE-SERVER-2}} par défaut. La configuration du système d'exploitation qui en résulte ressemblera à :" #. type: lisp -#: guix-git/doc/guix.texi:3909 +#: guix-git/doc/guix.texi:3927 #, no-wrap msgid "" "(operating-system\n" @@ -10337,12 +10413,12 @@ msgstr "" " %default-authorized-guix-keys)))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:3916 +#: guix-git/doc/guix.texi:3934 msgid "This assumes that the file @file{key.pub} contains the signing key of @code{guix.example.org}. With this change in place in your operating system configuration file (say @file{/etc/config.scm}), you can reconfigure and restart the @code{guix-daemon} service or reboot so the changes take effect:" msgstr "Cela suppose que le fichier @file{key.pub} contient la clé de signature de @code{guix.example.org}. Avec ce changement dans le fichier de configuration de votre système d'exploitation (disons @file{/etc/config.scm}), vous pouvez reconfigurer et redémarrer le service @code{guix-daemon} ou redémarrer pour que les changements prennent effet :" #. type: example -#: guix-git/doc/guix.texi:3920 +#: guix-git/doc/guix.texi:3938 #, no-wrap msgid "" "$ sudo guix system reconfigure /etc/config.scm\n" @@ -10352,28 +10428,28 @@ msgstr "" "$ sudo herd restart guix-daemon\n" #. type: Plain text -#: guix-git/doc/guix.texi:3924 +#: guix-git/doc/guix.texi:3942 msgid "If you're running Guix on a ``foreign distro'', you would instead take the following steps to get substitutes from additional servers:" msgstr "Si vous utilisez Guix sur une « distro externe », vous suivrez plutôt les étapes suivantes pour avoir des substituts de serveurs supplémentaires :" #. type: enumerate -#: guix-git/doc/guix.texi:3933 +#: guix-git/doc/guix.texi:3951 msgid "Edit the service configuration file for @code{guix-daemon}; when using systemd, this is normally @file{/etc/systemd/system/guix-daemon.service}. Add the @option{--substitute-urls} option on the @command{guix-daemon} command line and list the URLs of interest (@pxref{daemon-substitute-urls, @code{guix-daemon --substitute-urls}}):" msgstr "Modifier le fichier de configuration du service @code{guix-daemon} ; pour systemd, c'est normalement @file{/etc/systemd/system/guix-daemon.service}. Ajouter l'option @option{--substitute-urls} à la ligne de command @command{guix-daemon} et listez les URL qui vous intéressent (@pxref{daemon-substitute-urls, @code{guix-daemon --substitute-urls}}) :" #. type: example -#: guix-git/doc/guix.texi:3936 +#: guix-git/doc/guix.texi:3954 #, no-wrap msgid "@dots{} --substitute-urls='https://guix.example.org @value{SUBSTITUTE-URLS}'\n" msgstr "@dots{} --substitute-urls='https://guix.example.org @value{SUBSTITUTE-URLS}'\n" #. type: enumerate -#: guix-git/doc/guix.texi:3940 +#: guix-git/doc/guix.texi:3958 msgid "Restart the daemon. For systemd, it goes like this:" msgstr "Redémarrez le démon. Pour systemd, cela ressemble à :" #. type: example -#: guix-git/doc/guix.texi:3944 +#: guix-git/doc/guix.texi:3962 #, no-wrap msgid "" "systemctl daemon-reload\n" @@ -10383,651 +10459,651 @@ msgstr "" "systemctl restart guix-daemon.service\n" #. type: enumerate -#: guix-git/doc/guix.texi:3948 +#: guix-git/doc/guix.texi:3966 msgid "Authorize the key of the new server (@pxref{Invoking guix archive}):" msgstr "Autorisez la clé du nouveau serveur (@pxref{Invoking guix archive}) :" #. type: example -#: guix-git/doc/guix.texi:3951 +#: guix-git/doc/guix.texi:3969 #, no-wrap msgid "guix archive --authorize < key.pub\n" msgstr "guix archive --authorize < key.pub\n" #. type: enumerate -#: guix-git/doc/guix.texi:3955 +#: guix-git/doc/guix.texi:3973 msgid "Again this assumes @file{key.pub} contains the public key that @code{guix.example.org} uses to sign substitutes." msgstr "De nouveau, cela suppose que @file{key.pub} contient la clé publique que @code{guix.example.org} utilise pour signer les substituts." #. type: Plain text -#: guix-git/doc/guix.texi:3964 +#: guix-git/doc/guix.texi:3982 msgid "Now you're all set! Substitutes will be preferably taken from @code{https://guix.example.org}, using @code{@value{SUBSTITUTE-SERVER-1}} then @code{@value{SUBSTITUTE-SERVER-2}} as fallback options. Of course you can list as many substitute servers as you like, with the caveat that substitute lookup can be slowed down if too many servers need to be contacted." msgstr "Maintenant vous êtes paré ! Les substituts seront téléchargés de préférence à partir de @code{https://guix.example.org}, avec @code{@value{SUBSTITUTE-SERVER-1}} puis @code{@value{SUBSTITUTE-SERVER-2}} en réserve. Évidemment vous pouvez lister autant de serveurs de substituts que vous voulez, avec l'inconvénient que la recherche de substituts sera ralentie si vous devez contacter trop de serveurs." #. type: Plain text -#: guix-git/doc/guix.texi:3968 +#: guix-git/doc/guix.texi:3986 msgid "Note that there are also situations where one may want to add the URL of a substitute server @emph{without} authorizing its key. @xref{Substitute Authentication}, to understand this fine point." msgstr "Remarquez qu'il à des situations où vous pourriez vouloir ajouter l'URL d'un serveur de substitut @emph{sans} autoriser sa clé. @xref{Substitute Authentication}, pour comprendre ce point délicat." #. type: cindex -#: guix-git/doc/guix.texi:3972 +#: guix-git/doc/guix.texi:3990 #, no-wrap msgid "digital signatures" msgstr "signatures numériques" #. type: Plain text -#: guix-git/doc/guix.texi:3976 +#: guix-git/doc/guix.texi:3994 msgid "Guix detects and raises an error when attempting to use a substitute that has been tampered with. Likewise, it ignores substitutes that are not signed, or that are not signed by one of the keys listed in the ACL." msgstr "Guix détecte et lève une erreur lorsqu'il essaye d'utiliser un substitut qui a été modifié. De même, il ignore les substituts qui ne sont pas signés ou qui ne sont pas signés par l'une des clefs listées dans l'ACL." #. type: Plain text -#: guix-git/doc/guix.texi:3982 +#: guix-git/doc/guix.texi:4000 msgid "There is one exception though: if an unauthorized server provides substitutes that are @emph{bit-for-bit identical} to those provided by an authorized server, then the unauthorized server becomes eligible for downloads. For example, assume we have chosen two substitute servers with this option:" msgstr "Il y a une exception cependant : si un serveur non autorisé fournit des substituts qui sont @emph{identiques bit-à-bit} à ceux fournis par un serveur autorisé, alors le serveur non autorisé devient disponible pour les téléchargements. Par exemple en supposant qu'on a choisi deux serveurs de substituts avec cette option :" #. type: example -#: guix-git/doc/guix.texi:3985 +#: guix-git/doc/guix.texi:4003 #, no-wrap msgid "--substitute-urls=\"https://a.example.org https://b.example.org\"\n" msgstr "--substitute-urls=\"https://a.example.org https://b.example.org\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:3996 +#: guix-git/doc/guix.texi:4014 msgid "If the ACL contains only the key for @samp{b.example.org}, and if @samp{a.example.org} happens to serve the @emph{exact same} substitutes, then Guix will download substitutes from @samp{a.example.org} because it comes first in the list and can be considered a mirror of @samp{b.example.org}. In practice, independent build machines usually produce the same binaries, thanks to bit-reproducible builds (see below)." msgstr "Si l'ACL contient uniquement la clef de @samp{b.example.org}, et si @samp{a.example.org} sert @emph{exactement les mêmes} substituts, alors Guix téléchargera les substituts de @samp{a.example.org} parce qu'il vient en premier dans la liste et peut être considéré comme un miroir de @samp{b.example.org}. En pratique, les machines de construction indépendantes produisent généralement les mêmes binaires, grâce à des constructions reproductibles au bit près (voir ci-dessous)." #. type: Plain text -#: guix-git/doc/guix.texi:4003 +#: guix-git/doc/guix.texi:4021 msgid "When using HTTPS, the server's X.509 certificate is @emph{not} validated (in other words, the server is not authenticated), contrary to what HTTPS clients such as Web browsers usually do. This is because Guix authenticates substitute information itself, as explained above, which is what we care about (whereas X.509 certificates are about authenticating bindings between domain names and public keys)." msgstr "Lorsque vous utilisez HTTPS, le certificat X.509 du serveur n'est @emph{pas} validé (en d'autre termes, le serveur n'est pas authentifié), contrairement à ce que des clients HTTPS comme des navigateurs web font habituellement. Cela est dû au fait que Guix authentifie les informations sur les substituts eux-mêmes, comme expliqué plus haut, ce dont on se soucie réellement (alors que les certificats X.509 authentifient la relation entre nom de domaine et clef publique)." #. type: Plain text -#: guix-git/doc/guix.texi:4015 +#: guix-git/doc/guix.texi:4033 msgid "Substitutes are downloaded over HTTP or HTTPS@. The @env{http_proxy} and @env{https_proxy} environment variables can be set in the environment of @command{guix-daemon} and are honored for downloads of substitutes. Note that the value of those environment variables in the environment where @command{guix build}, @command{guix package}, and other client commands are run has @emph{absolutely no effect}." msgstr "Les substituts sont téléchargés par HTTP ou HTTPS@. Les variables d'environnement @env{http_proxy} et @env{https_proxy} peuvent être initialisées dans l'environnement de @command{guix-daemon} et sont respectées pour le téléchargement des substituts. Remarquez que la valeur de ces variables d'environnement dans l'environnement où sont exécutés @command{guix build}, @command{guix package}, et d'autres commandes client n'a @emph{absolument aucun effet}." #. type: Plain text -#: guix-git/doc/guix.texi:4024 +#: guix-git/doc/guix.texi:4042 msgid "Even when a substitute for a derivation is available, sometimes the substitution attempt will fail. This can happen for a variety of reasons: the substitute server might be offline, the substitute may recently have been deleted, the connection might have been interrupted, etc." msgstr "Même lorsqu'un substitut pour une dérivation est disponible, la substitution échoue parfois. Cela peut arriver pour plusieurs raisons : le serveur de substitut peut être hors ligne, le substitut a récemment été supprimé du serveur, la connexion peut avoir été interrompue, etc." #. type: Plain text -#: guix-git/doc/guix.texi:4038 +#: guix-git/doc/guix.texi:4056 msgid "When substitutes are enabled and a substitute for a derivation is available, but the substitution attempt fails, Guix will attempt to build the derivation locally depending on whether or not @option{--fallback} was given (@pxref{fallback-option,, common build option @option{--fallback}}). Specifically, if @option{--fallback} was omitted, then no local build will be performed, and the derivation is considered to have failed. However, if @option{--fallback} was given, then Guix will attempt to build the derivation locally, and the success or failure of the derivation depends on the success or failure of the local build. Note that when substitutes are disabled or no substitute is available for the derivation in question, a local build will @emph{always} be performed, regardless of whether or not @option{--fallback} was given." msgstr "Lorsque les substituts sont activés et qu'un substitut pour une dérivation est disponible, mais que la tentative de substitution échoue, Guix essaiera de construire la dérivation localement si @option{--fallback} a été passé en argument (@pxref{fallback-option,, common build option @code{--fallback}}). Plus spécifiquement, si cet option n'a pas été passée en argument, alors aucune construction locale n'est effectuée et la dérivation est considérée comme étant en échec. Cependant, si @option{--fallback} est passé en argument, alors Guix essaiera de construire la dérivation localement et l'échec ou le succès de la dérivation dépend de l'échec ou du succès de la construction locale. Remarquez que lorsque les substituts sont désactivés ou qu'aucun substitut n'est disponible pour la dérivation en question, une construction locale sera @emph{toujours} effectuée, indépendamment du fait que l'argument @option{--fallback} ait été ou non passé." #. type: Plain text -#: guix-git/doc/guix.texi:4043 +#: guix-git/doc/guix.texi:4061 msgid "To get an idea of how many substitutes are available right now, you can try running the @command{guix weather} command (@pxref{Invoking guix weather}). This command provides statistics on the substitutes provided by a server." msgstr "Pour se donner une idée du nombre de substituts disponibles maintenant, vous pouvez essayer de lancer la commande @command{guix weather} (@pxref{Invoking guix weather}). Cette command fournit des statistiques sur les substituts fournis par un serveur." #. type: cindex -#: guix-git/doc/guix.texi:4047 +#: guix-git/doc/guix.texi:4065 #, no-wrap msgid "trust, of pre-built binaries" msgstr "confiance, en des binaires pré-construits" #. type: Plain text -#: guix-git/doc/guix.texi:4057 +#: guix-git/doc/guix.texi:4075 msgid "Today, each individual's control over their own computing is at the mercy of institutions, corporations, and groups with enough power and determination to subvert the computing infrastructure and exploit its weaknesses. While using substitutes can be convenient, we encourage users to also build on their own, or even run their own build farm, such that the project run substitute servers are less of an interesting target. One way to help is by publishing the software you build using @command{guix publish} so that others have one more choice of server to download substitutes from (@pxref{Invoking guix publish})." msgstr "De nos jours, le contrôle individuel sur son utilisation propre de l'informatique est à la merci d'institutions, de sociétés et de groupes avec assez de pouvoir et de détermination pour contourner les infrastructures informatiques et exploiter leurs faiblesses. Bien qu'utiliser les substituts soit pratique, nous encourageons chacun·e à construire aussi par soi-même, voire à faire tourner sa propre ferme de construction, pour que les serveurs de substituts du projet deviennent une cible moins intéressante. Une façon d'aider est de publier les logiciels que vous construisez avec @command{guix publish} pour que les autres aient plus de choix de serveurs où télécharger les substituts (@pxref{Invoking guix publish})." #. type: Plain text -#: guix-git/doc/guix.texi:4069 +#: guix-git/doc/guix.texi:4087 msgid "Guix has the foundations to maximize build reproducibility (@pxref{Features}). In most cases, independent builds of a given package or derivation should yield bit-identical results. Thus, through a diverse set of independent package builds, we can strengthen the integrity of our systems. The @command{guix challenge} command aims to help users assess substitute servers, and to assist developers in finding out about non-deterministic package builds (@pxref{Invoking guix challenge}). Similarly, the @option{--check} option of @command{guix build} allows users to check whether previously-installed substitutes are genuine by rebuilding them locally (@pxref{build-check, @command{guix build --check}})." msgstr "Guix possède les fondations pour maximiser la reproductibilité logicielle (@pxref{Features}). Dans la plupart des cas, des constructions indépendantes d'un paquet donnée ou d'une dérivation devrait donner des résultats identiques au bit près. Ainsi, à travers un ensemble de constructions de paquets indépendantes il est possible de renforcer l'intégrité du système. La commande @command{guix challenge} a pour but d'aider les utilisateur·rices à tester les serveurs de substituts et à aider les développeur·euses à trouver les constructions de paquets non-déterministes (@pxref{Invoking guix challenge}). De même, l'option @option{--check} de @command{guix build} permet à chaque personne de vérifier si les substituts précédemment installés sont authentiques en les reconstruisant localement (@pxref{build-check, @command{guix build --check}})." #. type: Plain text -#: guix-git/doc/guix.texi:4073 +#: guix-git/doc/guix.texi:4091 msgid "In the future, we want Guix to have support to publish and retrieve binaries to/from other users, in a peer-to-peer fashion. If you would like to discuss this project, join us on @email{guix-devel@@gnu.org}." msgstr "À l'avenir, nous aimerions que Guix puisse publier et recevoir des binaires d'autres personnes, de manière pair-à-pair. Si vous voulez discuter de ce projet, rejoignez-nous sur @email{guix-devel@@gnu.org}." #. type: cindex -#: guix-git/doc/guix.texi:4077 +#: guix-git/doc/guix.texi:4095 #, no-wrap msgid "multiple-output packages" msgstr "paquets avec plusieurs résultats" #. type: cindex -#: guix-git/doc/guix.texi:4078 +#: guix-git/doc/guix.texi:4096 #, no-wrap msgid "package outputs" msgstr "sorties de paquets" #. type: cindex -#: guix-git/doc/guix.texi:4079 +#: guix-git/doc/guix.texi:4097 #, no-wrap msgid "outputs" msgstr "sorties" #. type: Plain text -#: guix-git/doc/guix.texi:4089 +#: guix-git/doc/guix.texi:4107 msgid "Often, packages defined in Guix have a single @dfn{output}---i.e., the source package leads to exactly one directory in the store. When running @command{guix install glibc}, one installs the default output of the GNU libc package; the default output is called @code{out}, but its name can be omitted as shown in this command. In this particular case, the default output of @code{glibc} contains all the C header files, shared libraries, static libraries, Info documentation, and other supporting files." msgstr "Souvent, les paquets définis dans Guix ont une seule @dfn{sortie} — c.-à-d.@: que le paquet source conduit à exactement un répertoire dans le dépôt. Lorsque vous lancez @command{guix install glibc}, vous installez la sortie par défaut du paquet GNU libc ; la sortie par défaut est appelée @code{out} mais son nom peut être omis comme le montre cette commande. Dans ce cas particulier, la sortie par défaut de @code{glibc} contient tous les fichiers d'en-tête C, les bibliothèques partagées, les bibliothèques statiques, la documentation Info et les autres fichiers de support." #. type: Plain text -#: guix-git/doc/guix.texi:4097 +#: guix-git/doc/guix.texi:4115 msgid "Sometimes it is more appropriate to separate the various types of files produced from a single source package into separate outputs. For instance, the GLib C library (used by GTK+ and related packages) installs more than 20 MiB of reference documentation as HTML pages. To save space for users who do not need it, the documentation goes to a separate output, called @code{doc}. To install the main GLib output, which contains everything but the documentation, one would run:" msgstr "Parfois il est plus approprié de séparer les divers types de fichiers produits par un même paquet source en plusieurs sorties. Par exemple, la bibliothèque C GLib (utilisée par GTK+ et des paquets associés) installe plus de 20 Mo de documentation de référence dans des pages HTML. Pour préserver l'espace disque des utilisateurs qui n'en ont pas besoin, la documentation va dans une sortie séparée nommée @code{doc}. Pour installer la sortie principale de GLib, qui contient tout sauf la documentation, on devrait lancer :" #. type: example -#: guix-git/doc/guix.texi:4100 +#: guix-git/doc/guix.texi:4118 #, no-wrap msgid "guix install glib\n" msgstr "guix install glib\n" #. type: item -#: guix-git/doc/guix.texi:4102 guix-git/doc/guix.texi:36368 -#: guix-git/doc/guix.texi:36425 +#: guix-git/doc/guix.texi:4120 guix-git/doc/guix.texi:36858 +#: guix-git/doc/guix.texi:36915 #, no-wrap msgid "documentation" msgstr "documentation" #. type: Plain text -#: guix-git/doc/guix.texi:4104 +#: guix-git/doc/guix.texi:4122 msgid "The command to install its documentation is:" msgstr "La commande pour installer la documentation est :" #. type: example -#: guix-git/doc/guix.texi:4107 +#: guix-git/doc/guix.texi:4125 #, no-wrap msgid "guix install glib:doc\n" msgstr "guix install glib:doc\n" #. type: Plain text -#: guix-git/doc/guix.texi:4118 +#: guix-git/doc/guix.texi:4136 msgid "Some packages install programs with different ``dependency footprints''. For instance, the WordNet package installs both command-line tools and graphical user interfaces (GUIs). The former depend solely on the C library, whereas the latter depend on Tcl/Tk and the underlying X libraries. In this case, we leave the command-line tools in the default output, whereas the GUIs are in a separate output. This allows users who do not need the GUIs to save space. The @command{guix size} command can help find out about such situations (@pxref{Invoking guix size}). @command{guix graph} can also be helpful (@pxref{Invoking guix graph})." msgstr "Certains paquets installent des programmes avec des « empreintes dépendances » différentes. Par exemple le paquet WordNet installe à la fois les outils en ligne de commande et les interfaces graphiques (GUI). La première ne dépend que de la bibliothèque C, alors que cette dernière dépend de Tcl/Tk et des bibliothèques X sous-jacentes. Dans ce cas, nous laissons les outils en ligne de commande dans la sortie par défaut et l'interface graphique dans une sortie séparée. Cela permet aux utilisateurs qui n'ont pas besoin d'interface graphique de gagner de la place. La commande @command{guix size} peut aider à trouver ces situations (@pxref{Invoking guix size}). @command{guix graph} peut aussi être utile (@pxref{Invoking guix graph})." #. type: Plain text -#: guix-git/doc/guix.texi:4126 +#: guix-git/doc/guix.texi:4144 msgid "There are several such multiple-output packages in the GNU distribution. Other conventional output names include @code{lib} for libraries and possibly header files, @code{bin} for stand-alone programs, and @code{debug} for debugging information (@pxref{Installing Debugging Files}). The outputs of a packages are listed in the third column of the output of @command{guix package --list-available} (@pxref{Invoking guix package})." msgstr "Il y a plusieurs paquets à sorties multiples dans la distribution GNU. D'autres noms de sorties conventionnels sont @code{lib} pour les bibliothèques et éventuellement les fichiers d'en-tête, @code{bin} pour les programmes indépendants et @code{debug} pour les informations de débogage (@pxref{Installing Debugging Files}). Les sorties d'un paquet sont listés dans la troisième colonne de la sortie de @command{guix package --list-available} (@pxref{Invoking guix package})." #. type: section -#: guix-git/doc/guix.texi:4129 +#: guix-git/doc/guix.texi:4147 #, no-wrap msgid "Invoking @command{guix gc}" msgstr "Invoquer @command{guix gc}" #. type: cindex -#: guix-git/doc/guix.texi:4131 +#: guix-git/doc/guix.texi:4149 #, no-wrap msgid "garbage collector" msgstr "ramasse-miettes" #. type: cindex -#: guix-git/doc/guix.texi:4132 +#: guix-git/doc/guix.texi:4150 #, no-wrap msgid "disk space" msgstr "espace disque" #. type: Plain text -#: guix-git/doc/guix.texi:4138 +#: guix-git/doc/guix.texi:4156 msgid "Packages that are installed, but not used, may be @dfn{garbage-collected}. The @command{guix gc} command allows users to explicitly run the garbage collector to reclaim space from the @file{/gnu/store} directory. It is the @emph{only} way to remove files from @file{/gnu/store}---removing files or directories manually may break it beyond repair!" msgstr "Les paquets qui sont installés mais pas utilisés peuvent être @dfn{glanés}. La commande @command{guix gc} permet aux utilisateurs de lancer explicitement le ramasse-miettes pour récupérer de l'espace dans le répertoire @file{/gnu/store}. C'est la @emph{seule} manière de supprimer des fichiers de @file{/gnu/store} — supprimer des fichiers ou des répertoires à la main peut le casser de manière impossible à réparer !" #. type: Plain text -#: guix-git/doc/guix.texi:4149 +#: guix-git/doc/guix.texi:4167 msgid "The garbage collector has a set of known @dfn{roots}: any file under @file{/gnu/store} reachable from a root is considered @dfn{live} and cannot be deleted; any other file is considered @dfn{dead} and may be deleted. The set of garbage collector roots (``GC roots'' for short) includes default user profiles; by default, the symlinks under @file{/var/guix/gcroots} represent these GC roots. New GC roots can be added with @command{guix build --root}, for example (@pxref{Invoking guix build}). The @command{guix gc --list-roots} command lists them." msgstr "Le ramasse-miettes a un ensemble de @dfn{racines} connues : tout fichier dans @file{/gnu/store} atteignable depuis une racine est considéré comme @dfn{utilisé} et ne peut pas être supprimé ; tous les autres fichiers sont considérés comme @dfn{inutilisés} et peuvent être supprimés. L'ensemble des racines du ramasse-miettes (ou « racines du GC » pour faire court) inclue les profils par défaut des utilisateurs ; par défaut les liens symboliques sous @file{/var/guix/gcroots} représentent ces racines du GC. De nouvelles racines du GC peuvent être ajoutées avec la @command{guix build -- root} par exemple (@pxref{Invoking guix build}). La commande @command{guix gc --list-roots} permet de les lister." #. type: Plain text -#: guix-git/doc/guix.texi:4155 +#: guix-git/doc/guix.texi:4173 msgid "Prior to running @code{guix gc --collect-garbage} to make space, it is often useful to remove old generations from user profiles; that way, old package builds referenced by those generations can be reclaimed. This is achieved by running @code{guix package --delete-generations} (@pxref{Invoking guix package})." msgstr "Avant de lancer @code{guix gc --collect-garbage} pour faire de la place, c'est souvent utile de supprimer les anciennes génération des profils utilisateurs ; de cette façon les anciennes constructions de paquets référencées par ces générations peuvent être glanées. Cela se fait en lançant @code{guix package --delete-generations} (@pxref{Invoking guix package})." #. type: Plain text -#: guix-git/doc/guix.texi:4159 +#: guix-git/doc/guix.texi:4177 msgid "Our recommendation is to run a garbage collection periodically, or when you are short on disk space. For instance, to guarantee that at least 5@tie{}GB are available on your disk, simply run:" msgstr "Nous recommandons de lancer le ramasse-miettes régulièrement ou lorsque vous avez besoin d'espace disque. Par exemple pour garantir qu'au moins 5@tie{}Go d'espace reste libre sur votre disque, lancez simplement :" #. type: example -#: guix-git/doc/guix.texi:4162 +#: guix-git/doc/guix.texi:4180 #, no-wrap msgid "guix gc -F 5G\n" msgstr "guix gc -F 5G\n" #. type: Plain text -#: guix-git/doc/guix.texi:4171 +#: guix-git/doc/guix.texi:4189 msgid "It is perfectly safe to run as a non-interactive periodic job (@pxref{Scheduled Job Execution}, for how to set up such a job). Running @command{guix gc} with no arguments will collect as much garbage as it can, but that is often inconvenient: you may find yourself having to rebuild or re-download software that is ``dead'' from the GC viewpoint but that is necessary to build other pieces of software---e.g., the compiler tool chain." msgstr "Il est parfaitement possible de le lancer comme une tâche périodique non-interactive (@pxref{Scheduled Job Execution} pour apprendre comment paramétrer une telle tâche). Lancer @command{guix gc} sans argument ramassera autant de miettes que possible mais ça n'est pas le plus pratique : vous pourriez vous retrouver à reconstruire ou re-télécharger des logiciels « inutilisés » du point de vu du GC mais qui sont nécessaires pour construire d'autres logiciels — p.@: ex.@: la chaîne de compilation." #. type: Plain text -#: guix-git/doc/guix.texi:4177 +#: guix-git/doc/guix.texi:4195 msgid "The @command{guix gc} command has three modes of operation: it can be used to garbage-collect any dead files (the default), to delete specific files (the @option{--delete} option), to print garbage-collector information, or for more advanced queries. The garbage collection options are as follows:" msgstr "La commande @command{guix gc} a trois modes d'opération : elle peut être utilisée pour glaner des fichiers inutilisés (par défaut), pour supprimer des fichiers spécifiques (l'option @option{--delete}), pour afficher des informations sur le ramasse-miettes ou pour des requêtes plus avancées. Les options du ramasse-miettes sont :" #. type: item -#: guix-git/doc/guix.texi:4179 +#: guix-git/doc/guix.texi:4197 #, no-wrap msgid "--collect-garbage[=@var{min}]" msgstr "--collect-garbage[=@var{min}]" #. type: itemx -#: guix-git/doc/guix.texi:4180 +#: guix-git/doc/guix.texi:4198 #, no-wrap msgid "-C [@var{min}]" msgstr "-C [@var{min}]" #. type: table -#: guix-git/doc/guix.texi:4184 +#: guix-git/doc/guix.texi:4202 msgid "Collect garbage---i.e., unreachable @file{/gnu/store} files and sub-directories. This is the default operation when no option is specified." msgstr "Ramasse les miettes — c.-à-d.@: les fichiers inaccessibles de @file{/gnu/store} et ses sous-répertoires. C'est l'opération par défaut lorsqu'aucune option n'est spécifiée." #. type: table -#: guix-git/doc/guix.texi:4189 +#: guix-git/doc/guix.texi:4207 msgid "When @var{min} is given, stop once @var{min} bytes have been collected. @var{min} may be a number of bytes, or it may include a unit as a suffix, such as @code{MiB} for mebibytes and @code{GB} for gigabytes (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." msgstr "Lorsque @var{min} est donné, s'arrêter une fois que @var{min} octets ont été collectés. @var{min} peut être un nombre d'octets ou inclure un suffixe d'unité, comme @code{MiB} pour mébioctet et @code{GB} pour gigaoctet (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." #. type: table -#: guix-git/doc/guix.texi:4191 +#: guix-git/doc/guix.texi:4209 msgid "When @var{min} is omitted, collect all the garbage." msgstr "Lorsque @var{min} est omis, tout glaner." #. type: item -#: guix-git/doc/guix.texi:4192 +#: guix-git/doc/guix.texi:4210 #, no-wrap msgid "--free-space=@var{free}" msgstr "--free-space=@var{libre}" #. type: itemx -#: guix-git/doc/guix.texi:4193 +#: guix-git/doc/guix.texi:4211 #, no-wrap msgid "-F @var{free}" msgstr "-F @var{libre}" #. type: table -#: guix-git/doc/guix.texi:4197 +#: guix-git/doc/guix.texi:4215 msgid "Collect garbage until @var{free} space is available under @file{/gnu/store}, if possible; @var{free} denotes storage space, such as @code{500MiB}, as described above." msgstr "Glaner jusqu'à ce que @var{libre} espace soit disponible dans @file{/gnu/store} si possible ; @var{libre} est une quantité de stockage comme @code{500MiB} comme décrit ci-dessus." #. type: table -#: guix-git/doc/guix.texi:4200 +#: guix-git/doc/guix.texi:4218 msgid "When @var{free} or more is already available in @file{/gnu/store}, do nothing and exit immediately." msgstr "Lorsque @var{libre} ou plus est disponible dans @file{/gnu/store} ne rien faire et s'arrêter immédiatement." #. type: item -#: guix-git/doc/guix.texi:4201 +#: guix-git/doc/guix.texi:4219 #, no-wrap msgid "--delete-generations[=@var{duration}]" msgstr "--delete-generations[=@var{durée}]" #. type: itemx -#: guix-git/doc/guix.texi:4202 +#: guix-git/doc/guix.texi:4220 #, no-wrap msgid "-d [@var{duration}]" msgstr "-d [@var{durée}]" #. type: table -#: guix-git/doc/guix.texi:4206 +#: guix-git/doc/guix.texi:4224 msgid "Before starting the garbage collection process, delete all the generations older than @var{duration}, for all the user profiles; when run as root, this applies to all the profiles @emph{of all the users}." msgstr "Avant de commencer le glanage, supprimer toutes les générations plus vielles que @var{durée}, pour tous les profils utilisateurs ; lorsque cela est lancé en root, cela s'applique à tous les profils @emph{de tous les utilisateurs}." #. type: table -#: guix-git/doc/guix.texi:4210 +#: guix-git/doc/guix.texi:4228 msgid "For example, this command deletes all the generations of all your profiles that are older than 2 months (except generations that are current), and then proceeds to free space until at least 10 GiB are available:" msgstr "Par exemple, cette commande supprime toutes les générations de tous vos profils plus vieilles que 2 mois (sauf s'il s'agit de la génération actuelle) puis libère de l'espace jusqu'à atteindre au moins 10 Go d'espace libre :" #. type: example -#: guix-git/doc/guix.texi:4213 +#: guix-git/doc/guix.texi:4231 #, no-wrap msgid "guix gc -d 2m -F 10G\n" msgstr "guix gc -d 2m -F 10G\n" #. type: item -#: guix-git/doc/guix.texi:4215 +#: guix-git/doc/guix.texi:4233 #, no-wrap msgid "--delete" msgstr "--delete" #. type: itemx -#: guix-git/doc/guix.texi:4216 guix-git/doc/guix.texi:5740 +#: guix-git/doc/guix.texi:4234 guix-git/doc/guix.texi:5758 #, no-wrap msgid "-D" msgstr "-D" #. type: table -#: guix-git/doc/guix.texi:4220 +#: guix-git/doc/guix.texi:4238 msgid "Attempt to delete all the store files and directories specified as arguments. This fails if some of the files are not in the store, or if they are still live." msgstr "Essayer de supprimer tous les fichiers et les répertoires du dépôt spécifiés en argument. Cela échoue si certains des fichiers ne sont pas dans le dépôt ou s'ils sont toujours utilisés." #. type: item -#: guix-git/doc/guix.texi:4221 +#: guix-git/doc/guix.texi:4239 #, no-wrap msgid "--list-failures" msgstr "--list-failures" #. type: table -#: guix-git/doc/guix.texi:4223 +#: guix-git/doc/guix.texi:4241 msgid "List store items corresponding to cached build failures." msgstr "Lister les éléments du dépôt qui correspondent à des échecs de construction." #. type: table -#: guix-git/doc/guix.texi:4227 +#: guix-git/doc/guix.texi:4245 msgid "This prints nothing unless the daemon was started with @option{--cache-failures} (@pxref{Invoking guix-daemon, @option{--cache-failures}})." msgstr "Cela n'affiche rien à moins que le démon n'ait été démarré avec @option{--cache-failures} (@pxref{Invoking guix-daemon, @option{--cache-failures}})." #. type: item -#: guix-git/doc/guix.texi:4228 +#: guix-git/doc/guix.texi:4246 #, no-wrap msgid "--list-roots" msgstr "--list-roots" #. type: table -#: guix-git/doc/guix.texi:4231 +#: guix-git/doc/guix.texi:4249 msgid "List the GC roots owned by the user; when run as root, list @emph{all} the GC roots." msgstr "Lister les racines du GC appartenant à l'utilisateur ; lorsque la commande est lancée en root, lister @emph{toutes} les racines du GC." #. type: item -#: guix-git/doc/guix.texi:4232 +#: guix-git/doc/guix.texi:4250 #, no-wrap msgid "--list-busy" msgstr "--list-busy" #. type: table -#: guix-git/doc/guix.texi:4235 +#: guix-git/doc/guix.texi:4253 msgid "List store items in use by currently running processes. These store items are effectively considered GC roots: they cannot be deleted." msgstr "Liste des éléments de stockage utilisés par les processus en cours d'exécution. Ces éléments de stockage sont effectivement considérés comme des racines GC : ils ne peuvent pas être supprimés." #. type: item -#: guix-git/doc/guix.texi:4236 +#: guix-git/doc/guix.texi:4254 #, no-wrap msgid "--clear-failures" msgstr "--clear-failures" #. type: table -#: guix-git/doc/guix.texi:4238 +#: guix-git/doc/guix.texi:4256 msgid "Remove the specified store items from the failed-build cache." msgstr "Supprimer les éléments du dépôt spécifiés du cache des constructions échouées." #. type: table -#: guix-git/doc/guix.texi:4241 +#: guix-git/doc/guix.texi:4259 msgid "Again, this option only makes sense when the daemon is started with @option{--cache-failures}. Otherwise, it does nothing." msgstr "De nouveau, cette option ne fait de sens que lorsque le démon est démarré avec @option{--cache-failures}. Autrement elle ne fait rien." #. type: item -#: guix-git/doc/guix.texi:4242 +#: guix-git/doc/guix.texi:4260 #, no-wrap msgid "--list-dead" msgstr "--list-dead" #. type: table -#: guix-git/doc/guix.texi:4245 +#: guix-git/doc/guix.texi:4263 msgid "Show the list of dead files and directories still present in the store---i.e., files and directories no longer reachable from any root." msgstr "Montrer la liste des fichiers et des répertoires inutilisés encore présents dans le dépôt — c.-à-d.@: les fichiers et les répertoires qui ne sont plus atteignables par aucune racine." #. type: item -#: guix-git/doc/guix.texi:4246 +#: guix-git/doc/guix.texi:4264 #, no-wrap msgid "--list-live" msgstr "--list-live" #. type: table -#: guix-git/doc/guix.texi:4248 +#: guix-git/doc/guix.texi:4266 msgid "Show the list of live store files and directories." msgstr "Montrer la liste des fichiers et des répertoires du dépôt utilisés." #. type: Plain text -#: guix-git/doc/guix.texi:4252 +#: guix-git/doc/guix.texi:4270 msgid "In addition, the references among existing store files can be queried:" msgstr "En plus, les références entre les fichiers existants du dépôt peuvent être demandés :" #. type: item -#: guix-git/doc/guix.texi:4255 +#: guix-git/doc/guix.texi:4273 #, no-wrap msgid "--references" msgstr "--references" #. type: itemx -#: guix-git/doc/guix.texi:4256 +#: guix-git/doc/guix.texi:4274 #, no-wrap msgid "--referrers" msgstr "--referrers" #. type: cindex -#: guix-git/doc/guix.texi:4257 guix-git/doc/guix.texi:13205 +#: guix-git/doc/guix.texi:4275 guix-git/doc/guix.texi:13562 #, no-wrap msgid "package dependencies" msgstr "dépendances des paquets" #. type: table -#: guix-git/doc/guix.texi:4260 +#: guix-git/doc/guix.texi:4278 msgid "List the references (respectively, the referrers) of store files given as arguments." msgstr "Lister les références (respectivement les référents) des fichiers du dépôt en argument." #. type: item -#: guix-git/doc/guix.texi:4261 +#: guix-git/doc/guix.texi:4279 #, no-wrap msgid "--requisites" msgstr "--requisites" #. type: itemx -#: guix-git/doc/guix.texi:4262 guix-git/doc/guix.texi:6501 +#: guix-git/doc/guix.texi:4280 guix-git/doc/guix.texi:6544 #, no-wrap msgid "-R" msgstr "-R" #. type: item -#: guix-git/doc/guix.texi:4263 guix-git/doc/guix.texi:13061 -#: guix-git/doc/guix.texi:13089 guix-git/doc/guix.texi:13170 +#: guix-git/doc/guix.texi:4281 guix-git/doc/guix.texi:13418 +#: guix-git/doc/guix.texi:13446 guix-git/doc/guix.texi:13527 #, no-wrap msgid "closure" msgstr "closure" #. type: table -#: guix-git/doc/guix.texi:4268 +#: guix-git/doc/guix.texi:4286 msgid "List the requisites of the store files passed as arguments. Requisites include the store files themselves, their references, and the references of these, recursively. In other words, the returned list is the @dfn{transitive closure} of the store files." msgstr "Lister les prérequis des fichiers du dépôt passés en argument. Les prérequis sont le fichier du dépôt lui-même, leur références et les références de ces références, récursivement. En d'autre termes, la liste retournée est la @dfn{closure transitive} des fichiers du dépôt." #. type: table -#: guix-git/doc/guix.texi:4272 +#: guix-git/doc/guix.texi:4290 msgid "@xref{Invoking guix size}, for a tool to profile the size of the closure of an element. @xref{Invoking guix graph}, for a tool to visualize the graph of references." msgstr "@xref{Invoking guix size} pour un outil pour surveiller la taille de la closure d'un élément. @xref{Invoking guix graph} pour un outil pour visualiser le graphe des références." #. type: item -#: guix-git/doc/guix.texi:4273 +#: guix-git/doc/guix.texi:4291 #, no-wrap msgid "--derivers" msgstr "--derivers" #. type: item -#: guix-git/doc/guix.texi:4274 guix-git/doc/guix.texi:6815 -#: guix-git/doc/guix.texi:12917 guix-git/doc/guix.texi:13314 +#: guix-git/doc/guix.texi:4292 guix-git/doc/guix.texi:6858 +#: guix-git/doc/guix.texi:13274 guix-git/doc/guix.texi:13671 #, no-wrap msgid "derivation" msgstr "dérivation" #. type: table -#: guix-git/doc/guix.texi:4277 +#: guix-git/doc/guix.texi:4295 msgid "Return the derivation(s) leading to the given store items (@pxref{Derivations})." msgstr "Renvoie les dérivations menant aux éléments du dépôt donnés (@pxref{Derivations})." #. type: table -#: guix-git/doc/guix.texi:4279 +#: guix-git/doc/guix.texi:4297 msgid "For example, this command:" msgstr "Par exemple cette commande :" #. type: example -#: guix-git/doc/guix.texi:4282 +#: guix-git/doc/guix.texi:4300 #, no-wrap msgid "guix gc --derivers $(guix package -I ^emacs$ | cut -f4)\n" msgstr "guix gc --derivers $(uix package -I ^emacs$ | cut -f4)\n" #. type: table -#: guix-git/doc/guix.texi:4287 +#: guix-git/doc/guix.texi:4305 msgid "returns the @file{.drv} file(s) leading to the @code{emacs} package installed in your profile." msgstr "renvoie les fichiers @file{.drv} menant au paquet @code{emacs} installé dans votre profil." #. type: table -#: guix-git/doc/guix.texi:4291 +#: guix-git/doc/guix.texi:4309 msgid "Note that there may be zero matching @file{.drv} files, for instance because these files have been garbage-collected. There can also be more than one matching @file{.drv} due to fixed-output derivations." msgstr "Remarquez qu'il peut n'y avoir aucun fichier @file{.drv} par exemple quand ces fichiers ont été glanés. Il peut aussi y avoir plus d'un fichier @file{.drv} correspondant à cause de dérivations à sortie fixées." #. type: Plain text -#: guix-git/doc/guix.texi:4295 +#: guix-git/doc/guix.texi:4313 msgid "Lastly, the following options allow you to check the integrity of the store and to control disk usage." msgstr "Enfin, les options suivantes vous permettent de vérifier l'intégrité du dépôt et de contrôler l'utilisation du disque." #. type: item -#: guix-git/doc/guix.texi:4298 +#: guix-git/doc/guix.texi:4316 #, no-wrap msgid "--verify[=@var{options}]" msgstr "--verify[=@var{options}]" #. type: cindex -#: guix-git/doc/guix.texi:4299 +#: guix-git/doc/guix.texi:4317 #, no-wrap msgid "integrity, of the store" msgstr "intégrité, du dépôt" #. type: cindex -#: guix-git/doc/guix.texi:4300 +#: guix-git/doc/guix.texi:4318 #, no-wrap msgid "integrity checking" msgstr "vérification d'intégrité" #. type: table -#: guix-git/doc/guix.texi:4302 +#: guix-git/doc/guix.texi:4320 msgid "Verify the integrity of the store." msgstr "Vérifier l'intégrité du dépôt." #. type: table -#: guix-git/doc/guix.texi:4305 +#: guix-git/doc/guix.texi:4323 msgid "By default, make sure that all the store items marked as valid in the database of the daemon actually exist in @file{/gnu/store}." msgstr "Par défaut, s'assurer que tous les éléments du dépôt marqués comme valides dans la base de données du démon existent bien dans @file{/gnu/store}." #. type: table -#: guix-git/doc/guix.texi:4308 +#: guix-git/doc/guix.texi:4326 msgid "When provided, @var{options} must be a comma-separated list containing one or more of @code{contents} and @code{repair}." msgstr "Lorsqu'elle est fournie, l'@var{option} doit être une liste séparée par des virgule de l'un ou plus parmi @code{contents} et @code{repair}." #. type: table -#: guix-git/doc/guix.texi:4314 +#: guix-git/doc/guix.texi:4332 msgid "When passing @option{--verify=contents}, the daemon computes the content hash of each store item and compares it against its hash in the database. Hash mismatches are reported as data corruptions. Because it traverses @emph{all the files in the store}, this command can take a long time, especially on systems with a slow disk drive." msgstr "Lorsque vous passez @option{--verify=contents}, le démon calcul le hash du contenu de chaque élément du dépôt et le compare au hash de sa base de données. Les différences de hash sont rapportées comme des corruptions de données. Comme elle traverse @emph{tous les fichiers du dépôt}, cette commande peut prendre très longtemps pour terminer, surtout sur un système avec un disque lent." #. type: cindex -#: guix-git/doc/guix.texi:4315 +#: guix-git/doc/guix.texi:4333 #, no-wrap msgid "repairing the store" msgstr "réparer le dépôt" #. type: cindex -#: guix-git/doc/guix.texi:4316 guix-git/doc/guix.texi:11564 +#: guix-git/doc/guix.texi:4334 guix-git/doc/guix.texi:11878 #, no-wrap msgid "corruption, recovering from" msgstr "corruption, récupérer de" #. type: table -#: guix-git/doc/guix.texi:4324 +#: guix-git/doc/guix.texi:4342 msgid "Using @option{--verify=repair} or @option{--verify=contents,repair} causes the daemon to try to repair corrupt store items by fetching substitutes for them (@pxref{Substitutes}). Because repairing is not atomic, and thus potentially dangerous, it is available only to the system administrator. A lightweight alternative, when you know exactly which items in the store are corrupt, is @command{guix build --repair} (@pxref{Invoking guix build})." msgstr "Utiliser @option{--verify=repair} ou @option{--verify=contents,repair} fait que le démon essaie de réparer les objets du dépôt corrompus en récupérant leurs substituts (@pxref{Substituts}). Comme la réparation n'est pas atomique et donc potentiellement dangereuse, elle n'est disponible que pour l'administrateur système. Une alternative plus légère lorsque vous connaissez exactement quelle entrée est corrompue consiste à lancer @command{guix build --repair} (@pxref{Invoking guix build})." #. type: item -#: guix-git/doc/guix.texi:4325 +#: guix-git/doc/guix.texi:4343 #, no-wrap msgid "--optimize" msgstr "--optimize" #. type: table -#: guix-git/doc/guix.texi:4329 +#: guix-git/doc/guix.texi:4347 msgid "Optimize the store by hard-linking identical files---this is @dfn{deduplication}." msgstr "Optimiser le dépôt en liant en dur les fichiers identiques — c'est la @dfn{déduplication}." #. type: table -#: guix-git/doc/guix.texi:4335 +#: guix-git/doc/guix.texi:4353 msgid "The daemon performs deduplication after each successful build or archive import, unless it was started with @option{--disable-deduplication} (@pxref{Invoking guix-daemon, @option{--disable-deduplication}}). Thus, this option is primarily useful when the daemon was running with @option{--disable-deduplication}." msgstr "Le démon effectue une déduplication après chaque import d'archive ou construction réussie, à moins qu'il n'ait été lancé avec @option{--disable-deduplication} (@pxref{Invoking guix-daemon, @option{--disable-deduplication}}). Ainsi, cette option est surtout utile lorsque le démon tourne avec @option{--disable-deduplication}." #. type: section -#: guix-git/doc/guix.texi:4339 +#: guix-git/doc/guix.texi:4357 #, no-wrap msgid "Invoking @command{guix pull}" msgstr "Invoquer @command{guix pull}" #. type: cindex -#: guix-git/doc/guix.texi:4341 +#: guix-git/doc/guix.texi:4359 #, no-wrap msgid "upgrading Guix" msgstr "mettre à niveau Guix" #. type: cindex -#: guix-git/doc/guix.texi:4342 +#: guix-git/doc/guix.texi:4360 #, no-wrap msgid "updating Guix" msgstr "mettre à jour Guix" #. type: command{#1} -#: guix-git/doc/guix.texi:4343 +#: guix-git/doc/guix.texi:4361 #, no-wrap msgid "guix pull" msgstr "guix pull" #. type: cindex -#: guix-git/doc/guix.texi:4344 +#: guix-git/doc/guix.texi:4362 #, no-wrap msgid "pull" msgstr "pull" #. type: cindex -#: guix-git/doc/guix.texi:4345 +#: guix-git/doc/guix.texi:4363 #, no-wrap msgid "security, @command{guix pull}" msgstr "sécurité, @command{guix pull}" #. type: cindex -#: guix-git/doc/guix.texi:4346 +#: guix-git/doc/guix.texi:4364 #, no-wrap msgid "authenticity, of code obtained with @command{guix pull}" msgstr "authenticité de code obtenue avec @command{guix pull}" #. type: Plain text -#: guix-git/doc/guix.texi:4356 +#: guix-git/doc/guix.texi:4374 msgid "Packages are installed or upgraded to the latest version available in the distribution currently available on your local machine. To update that distribution, along with the Guix tools, you must run @command{guix pull}: the command downloads the latest Guix source code and package descriptions, and deploys it. Source code is downloaded from a @uref{https://git-scm.com, Git} repository, by default the official GNU@tie{}Guix repository, though this can be customized. @command{guix pull} ensures that the code it downloads is @emph{authentic} by verifying that commits are signed by Guix developers." msgstr "Les paquets sont installés ou mis à jour vers la dernière version disponible dans la distribution active sur votre machine locale. Pour mettre à jour cette distribution, en même temps que les outils Guix, vous devez lancer @command{guix pull} ; la commande télécharge le dernier code source de Guix ainsi que des descriptions de paquets, et le déploie. Le code source est téléchargé depuis un dépôt @uref{https://git-scm.com, Git}, par défaut le dépôt officiel de GNU@tie{}Guix, bien que cela puisse être personnalisé. @command{guix pull} garantit que le code téléchargé est @emph{authentique} en vérifiant que les commits sont signés par les développeur·euses de Guix." #. type: Plain text -#: guix-git/doc/guix.texi:4359 +#: guix-git/doc/guix.texi:4377 msgid "Specifically, @command{guix pull} downloads code from the @dfn{channels} (@pxref{Channels}) specified by one of the followings, in this order:" msgstr "Spécifiquement, @command{guix pull} télécharge le code depuis les @dfn{canaux} (voir @pxref{Channels}) spécifiés par un des points suivants, dans cet ordre :" #. type: enumerate -#: guix-git/doc/guix.texi:4363 +#: guix-git/doc/guix.texi:4381 msgid "the @option{--channels} option;" msgstr "l'option @option{--channels} ;" #. type: enumerate -#: guix-git/doc/guix.texi:4365 +#: guix-git/doc/guix.texi:4383 msgid "the user's @file{~/.config/guix/channels.scm} file;" msgstr "le fichier utilisateur·rice @file{~/.config/guix/channels.scm} ;" #. type: enumerate -#: guix-git/doc/guix.texi:4367 +#: guix-git/doc/guix.texi:4385 msgid "the system-wide @file{/etc/guix/channels.scm} file;" msgstr "le fichier de l'ensemble du système @file{/etc/guix/channels.scm} ;" #. type: enumerate -#: guix-git/doc/guix.texi:4370 +#: guix-git/doc/guix.texi:4388 msgid "the built-in default channels specified in the @code{%default-channels} variable." msgstr "les canaux intégrés par défaut spécifiés dans la variable @code{%default-channels}." #. type: Plain text -#: guix-git/doc/guix.texi:4377 +#: guix-git/doc/guix.texi:4395 msgid "On completion, @command{guix package} will use packages and package versions from this just-retrieved copy of Guix. Not only that, but all the Guix commands and Scheme modules will also be taken from that latest version. New @command{guix} sub-commands added by the update also become available." msgstr "À la fin, @command{guix package} utilisera les paquets et les versions des paquets de la copie de Guix tout juste récupérée. Non seulement ça, mais toutes les commandes Guix et les modules Scheme seront aussi récupérés depuis la dernière version. Les nouvelles sous-commandes de @command{guix} ajoutés par la mise à jour sont aussi maintenant disponibles." #. type: Plain text -#: guix-git/doc/guix.texi:4383 +#: guix-git/doc/guix.texi:4401 msgid "Any user can update their Guix copy using @command{guix pull}, and the effect is limited to the user who ran @command{guix pull}. For instance, when user @code{root} runs @command{guix pull}, this has no effect on the version of Guix that user @code{alice} sees, and vice versa." msgstr "Chaque utilisateur peut mettre à jour sa copie de Guix avec @command{guix pull} et l'effet est limité à l'utilisateur qui a lancé @command{guix pull}. Par exemple, lorsque l'utilisateur @code{root} lance @command{guix pull}, cela n'a pas d'effet sur la version de Guix que voit @code{alice} et vice-versa." #. type: Plain text -#: guix-git/doc/guix.texi:4389 +#: guix-git/doc/guix.texi:4407 msgid "The result of running @command{guix pull} is a @dfn{profile} available under @file{~/.config/guix/current} containing the latest Guix. Thus, make sure to add it to the beginning of your search path so that you use the latest version, and similarly for the Info manual (@pxref{Documentation}):" msgstr "Le résultat après avoir lancé @command{guix pull} est un @dfn{profil} disponible sous @file{~/.config/guix/current} contenant la dernière version de Guix. Ainsi, assurez-vous de l'ajouter au début de votre chemin de recherche pour que vous utilisiez la dernière version. Le même conseil s'applique au manuel Info (@pxref{Documentation}) :" #. type: example -#: guix-git/doc/guix.texi:4393 +#: guix-git/doc/guix.texi:4411 #, no-wrap msgid "" "export PATH=\"$HOME/.config/guix/current/bin:$PATH\"\n" @@ -11037,12 +11113,12 @@ msgstr "" "export INFOPATH=\"$HOME/.config/guix/current/share/info:$INFOPATH\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:4397 +#: guix-git/doc/guix.texi:4415 msgid "The @option{--list-generations} or @option{-l} option lists past generations produced by @command{guix pull}, along with details about their provenance:" msgstr "L'option @option{--list-generations} ou @option{-l} liste les anciennes générations produites par @command{guix pull}, avec des détails sur leur origine :" #. type: example -#: guix-git/doc/guix.texi:4405 +#: guix-git/doc/guix.texi:4423 #, no-wrap msgid "" "$ guix pull -l\n" @@ -11062,7 +11138,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:4415 +#: guix-git/doc/guix.texi:4433 #, no-wrap msgid "" "Generation 2\tJun 11 2018 11:02:49\n" @@ -11088,7 +11164,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:4423 +#: guix-git/doc/guix.texi:4441 #, no-wrap msgid "" "Generation 3\tJun 13 2018 23:31:07\t(current)\n" @@ -11108,17 +11184,17 @@ msgstr "" " 69 paquets mis à jour : borg@@1.1.6, cheese@@3.28.0, @dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:4427 +#: guix-git/doc/guix.texi:4445 msgid "@xref{Invoking guix describe, @command{guix describe}}, for other ways to describe the current status of Guix." msgstr "@xref{Invoking guix describe, @command{guix describe}}, pour d'autres manières de décrire le statut actuel de Guix." #. type: Plain text -#: guix-git/doc/guix.texi:4432 +#: guix-git/doc/guix.texi:4450 msgid "This @code{~/.config/guix/current} profile works exactly like the profiles created by @command{guix package} (@pxref{Invoking guix package}). That is, you can list generations, roll back to the previous generation---i.e., the previous Guix---and so on:" msgstr "Ce profil @code{~/.config/guix/current} fonctionne comme les profils créés par @command{guix package} (@pxref{Invoking guix package}). C'est-à-dire que vous pouvez lister les générations, revenir en arrière à une génération précédente — c.-à-d.@: la version de Guix précédente — etc.@: :" #. type: example -#: guix-git/doc/guix.texi:4438 +#: guix-git/doc/guix.texi:4456 #, no-wrap msgid "" "$ guix pull --roll-back\n" @@ -11132,12 +11208,12 @@ msgstr "" "supperssion de /var/guix/profiles/per-user/charlie/current-guix-1-link\n" #. type: Plain text -#: guix-git/doc/guix.texi:4442 +#: guix-git/doc/guix.texi:4460 msgid "You can also use @command{guix package} (@pxref{Invoking guix package}) to manage the profile by naming it explicitly:" msgstr "Vous pouvez aussi utiliser @command{guix package} (@pxref{Invoquer guix package}) pour contrôler le profil en le nommant explicitement :" #. type: example -#: guix-git/doc/guix.texi:4447 +#: guix-git/doc/guix.texi:4465 #, no-wrap msgid "" "$ guix package -p ~/.config/guix/current --roll-back\n" @@ -11151,354 +11227,355 @@ msgstr "" "suppression de /var/guix/profiles/per-user/charlie/current-guix-1-link\n" #. type: Plain text -#: guix-git/doc/guix.texi:4451 +#: guix-git/doc/guix.texi:4469 msgid "The @command{guix pull} command is usually invoked with no arguments, but it supports the following options:" msgstr "La commande @command{guix pull} est typiquement invoquée sans arguments mais elle prend en charge les options suivantes :" #. type: item -#: guix-git/doc/guix.texi:4453 guix-git/doc/guix.texi:4611 +#: guix-git/doc/guix.texi:4471 guix-git/doc/guix.texi:4629 #, no-wrap msgid "--url=@var{url}" msgstr "--url=@var{url}" #. type: itemx -#: guix-git/doc/guix.texi:4454 guix-git/doc/guix.texi:4612 +#: guix-git/doc/guix.texi:4472 guix-git/doc/guix.texi:4630 #, no-wrap msgid "--commit=@var{commit}" msgstr "--commit=@var{commit}" #. type: itemx -#: guix-git/doc/guix.texi:4455 guix-git/doc/guix.texi:4613 +#: guix-git/doc/guix.texi:4473 guix-git/doc/guix.texi:4631 #, no-wrap msgid "--branch=@var{branch}" msgstr "--branch=@var{branche}" #. type: table -#: guix-git/doc/guix.texi:4459 +#: guix-git/doc/guix.texi:4477 msgid "Download code for the @code{guix} channel from the specified @var{url}, at the given @var{commit} (a valid Git commit ID represented as a hexadecimal string), or @var{branch}." msgstr "Télécharger le code pour le canal @code{guix} depuis l'@var{url} spécifié, au @var{commit} donné (un commit Git valide représenté par une chaîne hexadécimale) ou à la branche @var{branch}." #. type: cindex -#: guix-git/doc/guix.texi:4460 guix-git/doc/guix.texi:5057 +#: guix-git/doc/guix.texi:4478 guix-git/doc/guix.texi:5075 #, no-wrap msgid "@file{channels.scm}, configuration file" msgstr "@file{channels.scm}, fichier de configuration" #. type: cindex -#: guix-git/doc/guix.texi:4461 guix-git/doc/guix.texi:5058 +#: guix-git/doc/guix.texi:4479 guix-git/doc/guix.texi:5076 #, no-wrap msgid "configuration file for channels" msgstr "fichier de configuration pour les canaux" #. type: table -#: guix-git/doc/guix.texi:4465 +#: guix-git/doc/guix.texi:4483 msgid "These options are provided for convenience, but you can also specify your configuration in the @file{~/.config/guix/channels.scm} file or using the @option{--channels} option (see below)." msgstr "Ces options sont fournies pour votre confort, mais vous pouvez aussi spécifier votre configuration dans le fichier @file{~/.config/guix/channels.scm} ou en utilisant l'option @option{--channels} (voir plus bas)." #. type: item -#: guix-git/doc/guix.texi:4466 guix-git/doc/guix.texi:4618 +#: guix-git/doc/guix.texi:4484 guix-git/doc/guix.texi:4636 #, no-wrap msgid "--channels=@var{file}" msgstr "--channels=@var{file}" #. type: itemx -#: guix-git/doc/guix.texi:4467 guix-git/doc/guix.texi:4619 +#: guix-git/doc/guix.texi:4485 guix-git/doc/guix.texi:4637 #, no-wrap msgid "-C @var{file}" msgstr "-C @var{file}" #. type: table -#: guix-git/doc/guix.texi:4473 +#: guix-git/doc/guix.texi:4491 msgid "Read the list of channels from @var{file} instead of @file{~/.config/guix/channels.scm} or @file{/etc/guix/channels.scm}. @var{file} must contain Scheme code that evaluates to a list of channel objects. @xref{Channels}, for more information." msgstr "Lit la liste des canaux dans @var{file} plutôt que dans @file{~/.config/guix/channels.scm} ou @file{/etc/guix/channels.scm}. @var{file} doit contenir un code Scheme qui s'évalue en une liste d'objets de canaux. @xref{Channels} pour plus d'informations." #. type: cindex -#: guix-git/doc/guix.texi:4474 +#: guix-git/doc/guix.texi:4492 #, no-wrap msgid "channel news" msgstr "nouveautés des canaux" #. type: item -#: guix-git/doc/guix.texi:4475 +#: guix-git/doc/guix.texi:4493 #, no-wrap msgid "--news" msgstr "--news" #. type: itemx -#: guix-git/doc/guix.texi:4476 guix-git/doc/guix.texi:5864 -#: guix-git/doc/guix.texi:6247 guix-git/doc/guix.texi:35304 +#: guix-git/doc/guix.texi:4494 guix-git/doc/guix.texi:5877 +#: guix-git/doc/guix.texi:6290 guix-git/doc/guix.texi:35748 #, no-wrap msgid "-N" msgstr "-N" #. type: table -#: guix-git/doc/guix.texi:4480 +#: guix-git/doc/guix.texi:4498 msgid "Display the list of packages added or upgraded since the previous generation, as well as, occasionally, news written by channel authors for their users (@pxref{Channels, Writing Channel News})." msgstr "Afficher la liste des paquets ajoutés ou mis à jour depuis la génération précédente, ainsi que, occasionnellement, les nouvelles écrites par les auteur·e·s des chaînes pour leurs utilisateur·rice·s (@pxref{Channels, Writing Channel News})." #. type: table -#: guix-git/doc/guix.texi:4484 +#: guix-git/doc/guix.texi:4502 msgid "The package information is the same as displayed upon @command{guix pull} completion, but without ellipses; it is also similar to the output of @command{guix pull -l} for the last generation (see below)." msgstr "Les informations sur les paquets sont les mêmes que celles présentées à la fin de @command{guix pull}, mais sans les points de suspension, et sont aussi similaires à celles présentées par @command{guix pull -l} pour la dernière génération (voir plus bas)." #. type: table -#: guix-git/doc/guix.texi:4491 +#: guix-git/doc/guix.texi:4509 msgid "List all the generations of @file{~/.config/guix/current} or, if @var{pattern} is provided, the subset of generations that match @var{pattern}. The syntax of @var{pattern} is the same as with @code{guix package --list-generations} (@pxref{Invoking guix package})." msgstr "Liste toutes les générations de @file{~/.config/guix/current} ou, si @var{motif} est fournit, le sous-ensemble des générations qui correspondent à @var{motif}. La syntaxe de @var{motif} est la même qu'avec @code{guix package --list-generations} (@pxref{Invoking guix package})." #. type: table -#: guix-git/doc/guix.texi:4498 +#: guix-git/doc/guix.texi:4516 msgid "Roll back to the previous @dfn{generation} of @file{~/.config/guix/current}---i.e., undo the last transaction." msgstr "Revenir à la @dfn{génération} précédente de @file{~/.config/guix/current} c.-à-d.@: défaire la dernière transaction." #. type: table -#: guix-git/doc/guix.texi:4522 +#: guix-git/doc/guix.texi:4540 msgid "If the current generation matches, it is @emph{not} deleted." msgstr "Si la génération actuelle correspond, elle n'est @emph{pas} supprimée." #. type: table -#: guix-git/doc/guix.texi:4528 +#: guix-git/doc/guix.texi:4546 msgid "@xref{Invoking guix describe}, for a way to display information about the current generation only." msgstr "@xref{Invoking guix describe}, pour une manière d'afficher des informations sur la génération actuelle uniquement." #. type: table -#: guix-git/doc/guix.texi:4532 +#: guix-git/doc/guix.texi:4550 msgid "Use @var{profile} instead of @file{~/.config/guix/current}." msgstr "Utiliser le @var{profil} à la place de @file{~/.config/guix/current}." #. type: item -#: guix-git/doc/guix.texi:4533 guix-git/doc/guix.texi:10893 -#: guix-git/doc/guix.texi:12836 +#: guix-git/doc/guix.texi:4551 guix-git/doc/guix.texi:11207 +#: guix-git/doc/guix.texi:13162 #, no-wrap msgid "--dry-run" msgstr "--dry-run" #. type: itemx -#: guix-git/doc/guix.texi:4534 guix-git/doc/guix.texi:10894 -#: guix-git/doc/guix.texi:12837 guix-git/doc/guix.texi:13043 +#: guix-git/doc/guix.texi:4552 guix-git/doc/guix.texi:11208 +#: guix-git/doc/guix.texi:13163 guix-git/doc/guix.texi:13400 #, no-wrap msgid "-n" msgstr "-n" #. type: table -#: guix-git/doc/guix.texi:4537 +#: guix-git/doc/guix.texi:4555 msgid "Show which channel commit(s) would be used and what would be built or substituted but do not actually do it." msgstr "Montrer quels commits des canaux seraient utilisés et ce qui serait construit ou substitué mais ne pas le faire vraiment." #. type: item -#: guix-git/doc/guix.texi:4538 guix-git/doc/guix.texi:35323 +#: guix-git/doc/guix.texi:4556 guix-git/doc/guix.texi:35767 +#: guix-git/doc/guix.texi:38198 #, no-wrap msgid "--allow-downgrades" msgstr "--allow-downgrades" #. type: table -#: guix-git/doc/guix.texi:4541 +#: guix-git/doc/guix.texi:4559 msgid "Allow pulling older or unrelated revisions of channels than those currently in use." msgstr "Permet d'extraire des révisions de canaux plus anciennes ou sans rapport avec celles qui sont actuellement utilisées." #. type: cindex -#: guix-git/doc/guix.texi:4542 +#: guix-git/doc/guix.texi:4560 #, no-wrap msgid "downgrade attacks, protection against" msgstr "protection contre les attaques dites de \"downgrade\"" #. type: table -#: guix-git/doc/guix.texi:4547 +#: guix-git/doc/guix.texi:4565 msgid "By default, @command{guix pull} protects against so-called ``downgrade attacks'' whereby the Git repository of a channel would be reset to an earlier or unrelated revision of itself, potentially leading you to install older, known-vulnerable versions of software packages." msgstr "Par défaut, @command{guix pull} protège contre les attaques dites de \"downgrade\", par lesquelles le dépôt Git d'un canal serait réinitialisé à une révision antérieure ou sans rapport avec lui-même, ce qui pourrait vous conduire à installer des versions plus anciennes de paquets logiciels, ou connues pour être vulnérables." #. type: quotation -#: guix-git/doc/guix.texi:4551 guix-git/doc/guix.texi:35337 +#: guix-git/doc/guix.texi:4569 guix-git/doc/guix.texi:35781 msgid "Make sure you understand its security implications before using @option{--allow-downgrades}." msgstr "Assurez-vous de comprendre les implications de sa sécurité avant d'utiliser @option{--allow-downgrades}." #. type: item -#: guix-git/doc/guix.texi:4553 +#: guix-git/doc/guix.texi:4571 #, no-wrap msgid "--disable-authentication" msgstr "--disable-authentication" #. type: table -#: guix-git/doc/guix.texi:4555 +#: guix-git/doc/guix.texi:4573 msgid "Allow pulling channel code without authenticating it." msgstr "Permet de \"tirer\" le code du canal sans l'authentifier." #. type: cindex -#: guix-git/doc/guix.texi:4556 guix-git/doc/guix.texi:5203 +#: guix-git/doc/guix.texi:4574 guix-git/doc/guix.texi:5221 #, no-wrap msgid "authentication, of channel code" msgstr "authentification d'un extrait de Guix" #. type: table -#: guix-git/doc/guix.texi:4561 +#: guix-git/doc/guix.texi:4579 msgid "By default, @command{guix pull} authenticates code downloaded from channels by verifying that its commits are signed by authorized developers, and raises an error if this is not the case. This option instructs it to not perform any such verification." msgstr "Par défaut, @command{guix pull} authentifie le code téléchargé depuis les canaux en vérifiant que ses commits sont signés par les développeur·euses, et renvoie une erreur si ce n'est pas le cas. Cette option lui enjoint de ne pas effectuer une telle vérification." #. type: quotation -#: guix-git/doc/guix.texi:4565 +#: guix-git/doc/guix.texi:4583 msgid "Make sure you understand its security implications before using @option{--disable-authentication}." msgstr "Assurez-vous de comprendre les implications de sa sécurité avant d'utiliser @option{--disable-authentication}." #. type: itemx -#: guix-git/doc/guix.texi:4568 guix-git/doc/guix.texi:5847 -#: guix-git/doc/guix.texi:6230 guix-git/doc/guix.texi:6630 -#: guix-git/doc/guix.texi:11506 guix-git/doc/guix.texi:13188 -#: guix-git/doc/guix.texi:13453 guix-git/doc/guix.texi:14130 -#: guix-git/doc/guix.texi:35252 +#: guix-git/doc/guix.texi:4586 guix-git/doc/guix.texi:5860 +#: guix-git/doc/guix.texi:6273 guix-git/doc/guix.texi:6673 +#: guix-git/doc/guix.texi:11820 guix-git/doc/guix.texi:13545 +#: guix-git/doc/guix.texi:13810 guix-git/doc/guix.texi:14487 +#: guix-git/doc/guix.texi:35696 #, no-wrap msgid "-s @var{system}" msgstr "-s @var{système}" #. type: table -#: guix-git/doc/guix.texi:4571 guix-git/doc/guix.texi:6633 +#: guix-git/doc/guix.texi:4589 guix-git/doc/guix.texi:6676 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of the system type of the build host." msgstr "Tenter de construire pour le @var{système} — p.@: ex.@: @code{i686-linux} — plutôt que pour le type de système de l'hôte de construction." #. type: table -#: guix-git/doc/guix.texi:4575 +#: guix-git/doc/guix.texi:4593 msgid "Use the bootstrap Guile to build the latest Guix. This option is only useful to Guix developers." msgstr "Utiliser le programme d'amorçage Guile pour construire la dernière version de Guix. Cette option n'est utile qu'aux personnes qui développent Guix." #. type: Plain text -#: guix-git/doc/guix.texi:4581 +#: guix-git/doc/guix.texi:4599 msgid "The @dfn{channel} mechanism allows you to instruct @command{guix pull} which repository and branch to pull from, as well as @emph{additional} repositories containing package modules that should be deployed. @xref{Channels}, for more information." msgstr "Le mécanisme de @dfn{canaux} vous permet de dire à @command{guix pull} quels répertoires et branches récupérer, ainsi que les dépôts @emph{supplémentaires} contenant des modules de paquets qui devraient être déployés. @xref{Channels} pour plus d'information." #. type: Plain text -#: guix-git/doc/guix.texi:4584 +#: guix-git/doc/guix.texi:4602 msgid "In addition, @command{guix pull} supports all the common build options (@pxref{Common Build Options})." msgstr "En plus, @command{guix pull} supporte toutes les options de construction communes (@pxref{Common Build Options})." #. type: section -#: guix-git/doc/guix.texi:4586 +#: guix-git/doc/guix.texi:4604 #, no-wrap msgid "Invoking @command{guix time-machine}" msgstr "Invoquer @command{guix time-machine}" #. type: command{#1} -#: guix-git/doc/guix.texi:4588 +#: guix-git/doc/guix.texi:4606 #, no-wrap msgid "guix time-machine" msgstr "guix time-machine" #. type: cindex -#: guix-git/doc/guix.texi:4589 guix-git/doc/guix.texi:5161 +#: guix-git/doc/guix.texi:4607 guix-git/doc/guix.texi:5179 #, no-wrap msgid "pinning, channels" msgstr "épinglage, canaux" #. type: cindex -#: guix-git/doc/guix.texi:4590 guix-git/doc/guix.texi:4772 -#: guix-git/doc/guix.texi:5162 +#: guix-git/doc/guix.texi:4608 guix-git/doc/guix.texi:4790 +#: guix-git/doc/guix.texi:5180 #, no-wrap msgid "replicating Guix" msgstr "répliquer Guix" #. type: cindex -#: guix-git/doc/guix.texi:4591 guix-git/doc/guix.texi:5163 +#: guix-git/doc/guix.texi:4609 guix-git/doc/guix.texi:5181 #, no-wrap msgid "reproducibility, of Guix" msgstr "reproductibilité, de Guix" #. type: Plain text -#: guix-git/doc/guix.texi:4599 +#: guix-git/doc/guix.texi:4617 msgid "The @command{guix time-machine} command provides access to other revisions of Guix, for example to install older versions of packages, or to reproduce a computation in an identical environment. The revision of Guix to be used is defined by a commit or by a channel description file created by @command{guix describe} (@pxref{Invoking guix describe})." msgstr "La commande @command{guix time-machine} donne accès à d'autres révisions de Guix, par exemple pour installer d'anciennes versions de paquets, ou pour reproduire un calcul dans un environnement identique. La révision de Guix à utiliser est définie par un commit ou par un fichier de description de canal créé par @command{guix describe} (@pxref{Invoquer guix describe})." #. type: Plain text -#: guix-git/doc/guix.texi:4601 guix-git/doc/guix.texi:5623 -#: guix-git/doc/guix.texi:5974 guix-git/doc/guix.texi:6753 -#: guix-git/doc/guix.texi:10689 guix-git/doc/guix.texi:10813 -#: guix-git/doc/guix.texi:11797 guix-git/doc/guix.texi:11892 -#: guix-git/doc/guix.texi:12825 guix-git/doc/guix.texi:13018 -#: guix-git/doc/guix.texi:13511 guix-git/doc/guix.texi:13884 -#: guix-git/doc/guix.texi:13973 guix-git/doc/guix.texi:14012 -#: guix-git/doc/guix.texi:14109 +#: guix-git/doc/guix.texi:4619 guix-git/doc/guix.texi:5641 +#: guix-git/doc/guix.texi:6011 guix-git/doc/guix.texi:6796 +#: guix-git/doc/guix.texi:11003 guix-git/doc/guix.texi:11127 +#: guix-git/doc/guix.texi:12111 guix-git/doc/guix.texi:12207 +#: guix-git/doc/guix.texi:13148 guix-git/doc/guix.texi:13375 +#: guix-git/doc/guix.texi:13868 guix-git/doc/guix.texi:14241 +#: guix-git/doc/guix.texi:14330 guix-git/doc/guix.texi:14369 +#: guix-git/doc/guix.texi:14466 msgid "The general syntax is:" msgstr "La syntaxe générale est :" #. type: example -#: guix-git/doc/guix.texi:4604 +#: guix-git/doc/guix.texi:4622 #, no-wrap msgid "guix time-machine @var{options}@dots{} -- @var{command} @var {arg}@dots{}\n" msgstr "guix time-machine @var{options}@dots{} -- @var{commande} @var {arg}@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:4609 +#: guix-git/doc/guix.texi:4627 msgid "where @var{command} and @var{arg}@dots{} are passed unmodified to the @command{guix} command of the specified revision. The @var{options} that define this revision are the same as for @command{guix pull} (@pxref{Invoking guix pull}):" msgstr "où @var{command} et @var{arg}@dots{} sont passés sans modification à la commande @command{guix} de la révision spécifiée. Les @var{options} qui définissent cette révision sont les mêmes que pour la commande @command{guix pull} (@pxref{Invoquer guix pull}) :" #. type: table -#: guix-git/doc/guix.texi:4617 +#: guix-git/doc/guix.texi:4635 msgid "Use the @code{guix} channel from the specified @var{url}, at the given @var{commit} (a valid Git commit ID represented as a hexadecimal string), or @var{branch}." msgstr "Utiliser le canal @code{guix} depuis l'@var{url} spécifiée, au @var{commit} donné (un commit Git valide représenté par une chaîne hexadécimale) ou à la branche @var{branch}." #. type: table -#: guix-git/doc/guix.texi:4623 +#: guix-git/doc/guix.texi:4641 msgid "Read the list of channels from @var{file}. @var{file} must contain Scheme code that evaluates to a list of channel objects. @xref{Channels} for more information." msgstr "Lit la liste des canaux dans @var{file}. @var{file} doit contenir un code Scheme qui s'évalue en une liste d'objets de canaux. @xref{Channels} pour plus d'informations." #. type: Plain text -#: guix-git/doc/guix.texi:4627 +#: guix-git/doc/guix.texi:4645 msgid "As for @command{guix pull}, the absence of any options means that the latest commit on the master branch will be used. The command" msgstr "Quant à @command{guix pull}, l'absence d'options signifie que le dernier commit sur la branche master sera utilisé. La commande" #. type: example -#: guix-git/doc/guix.texi:4630 +#: guix-git/doc/guix.texi:4648 #, no-wrap msgid "guix time-machine -- build hello\n" msgstr "guix time-machine -- build hello\n" #. type: Plain text -#: guix-git/doc/guix.texi:4635 +#: guix-git/doc/guix.texi:4653 msgid "will thus build the package @code{hello} as defined in the master branch, which is in general a newer revision of Guix than you have installed. Time travel works in both directions!" msgstr "va donc construire le paquet @code{hello} tel que défini dans la branche master, qui est en général une révision de Guix plus récente que celle que vous avez installée. Le voyage dans le temps fonctionne dans les deux sens !" #. type: Plain text -#: guix-git/doc/guix.texi:4639 +#: guix-git/doc/guix.texi:4657 msgid "Note that @command{guix time-machine} can trigger builds of channels and their dependencies, and these are controlled by the standard build options (@pxref{Common Build Options})." msgstr "Remarquez que @command{guix time-machine} peut lancer des constructions de canaux et de leurs dépendances, et qu'elles peuvent être contrôlées avec les options de construction communes (@pxref{Common Build Options})." #. type: quotation -#: guix-git/doc/guix.texi:4647 +#: guix-git/doc/guix.texi:4665 msgid "The functionality described here is a ``technology preview'' as of version @value{VERSION}. As such, the interface is subject to change." msgstr "La fonctionnalité décrite ici est un « démonstrateur technique » à la version @value{VERSION}. Ainsi, l'interface est sujette à changements." #. type: cindex -#: guix-git/doc/guix.texi:4649 guix-git/doc/guix.texi:10726 +#: guix-git/doc/guix.texi:4667 guix-git/doc/guix.texi:11040 #, no-wrap msgid "inferiors" msgstr "inférieurs" #. type: cindex -#: guix-git/doc/guix.texi:4650 +#: guix-git/doc/guix.texi:4668 #, no-wrap msgid "composition of Guix revisions" msgstr "composition de révisions de Guix" #. type: Plain text -#: guix-git/doc/guix.texi:4655 +#: guix-git/doc/guix.texi:4673 msgid "Sometimes you might need to mix packages from the revision of Guix you're currently running with packages available in a different revision of Guix. Guix @dfn{inferiors} allow you to achieve that by composing different Guix revisions in arbitrary ways." msgstr "Parfois vous pourriez avoir à mélanger des paquets de votre révision de Guix avec des paquets disponibles dans une révision différente de Guix. Les @dfn{inférieurs} de Guix vous permettent d'accomplir cette tâche en composant différentes versions de Guix de manière arbitraire." #. type: cindex -#: guix-git/doc/guix.texi:4656 guix-git/doc/guix.texi:4721 +#: guix-git/doc/guix.texi:4674 guix-git/doc/guix.texi:4739 #, no-wrap msgid "inferior packages" msgstr "paquets inférieurs" #. type: Plain text -#: guix-git/doc/guix.texi:4662 +#: guix-git/doc/guix.texi:4680 msgid "Technically, an ``inferior'' is essentially a separate Guix process connected to your main Guix process through a REPL (@pxref{Invoking guix repl}). The @code{(guix inferior)} module allows you to create inferiors and to communicate with them. It also provides a high-level interface to browse and manipulate the packages that an inferior provides---@dfn{inferior packages}." msgstr "Techniquement, un « inférieur » est surtout un processus Guix séparé connecté à votre processus Guix principal à travers un REPL (@pxref{Invoking guix repl}). Le module @code{(guix inferior)} vous permet de créer des inférieurs et de communiquer avec eux. Il fournit aussi une interface de haut-niveau pour naviguer dans les paquets d'un inférieur — @dfn{des paquets inférieurs} — et les manipuler." #. type: Plain text -#: guix-git/doc/guix.texi:4672 +#: guix-git/doc/guix.texi:4690 msgid "When combined with channels (@pxref{Channels}), inferiors provide a simple way to interact with a separate revision of Guix. For example, let's assume you want to install in your profile the current @code{guile} package, along with the @code{guile-json} as it existed in an older revision of Guix---perhaps because the newer @code{guile-json} has an incompatible API and you want to run your code against the old API@. To do that, you could write a manifest for use by @code{guix package --manifest} (@pxref{Invoking guix package}); in that manifest, you would create an inferior for that old Guix revision you care about, and you would look up the @code{guile-json} package in the inferior:" msgstr "Lorsqu'on les combine avec des canaux (@pxref{Channels}), les inférieurs fournissent une manière simple d'interagir avec un révision de Guix séparée. Par exemple, disons que vous souhaitiez installer dans votre profil le paquet guile actuel, avec le @code{guile-json} d'une ancienne révision de Guix — peut-être parce que la nouvelle version de @code{guile-json} a une API incompatible et que vous voulez lancer du code avec l'ancienne API. Pour cela, vous pourriez écrire un manifeste à utiliser avec @code{guix package --manifest} (@pxref{Invoking guix package}) ; dans ce manifeste, vous créeriez un inférieur pour l'ancienne révision de Guix qui vous intéresse et vous chercheriez le paquet @code{guile-json} dans l'inférieur :" #. type: lisp -#: guix-git/doc/guix.texi:4676 +#: guix-git/doc/guix.texi:4694 #, no-wrap msgid "" "(use-modules (guix inferior) (guix channels)\n" @@ -11510,7 +11587,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:4685 +#: guix-git/doc/guix.texi:4703 #, no-wrap msgid "" "(define channels\n" @@ -11534,7 +11611,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:4689 +#: guix-git/doc/guix.texi:4707 #, no-wrap msgid "" "(define inferior\n" @@ -11548,7 +11625,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:4695 +#: guix-git/doc/guix.texi:4713 #, no-wrap msgid "" ";; Now create a manifest with the current \"guile\" package\n" @@ -11564,192 +11641,192 @@ msgstr "" " (specification->package \"guile\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:4700 +#: guix-git/doc/guix.texi:4718 msgid "On its first run, @command{guix package --manifest} might have to build the channel you specified before it can create the inferior; subsequent runs will be much faster because the Guix revision will be cached." msgstr "Durant la première exécution, @command{guix package --manifest} pourrait avoir besoin de construire le canal que vous avez spécifié avant de créer l'inférieur ; les exécutions suivantes seront bien plus rapides parce que la révision de Guix sera déjà en cache." #. type: Plain text -#: guix-git/doc/guix.texi:4703 +#: guix-git/doc/guix.texi:4721 msgid "The @code{(guix inferior)} module provides the following procedures to open an inferior:" msgstr "Le module @code{(guix inferior)} fournit les procédures suivantes pour ouvrir un inférieur :" #. type: deffn -#: guix-git/doc/guix.texi:4704 +#: guix-git/doc/guix.texi:4722 #, no-wrap msgid "{Scheme Procedure} inferior-for-channels @var{channels} @" msgstr "{Procédure Scheme} inferior-for-channels @var{channels} @" #. type: deffn -#: guix-git/doc/guix.texi:4709 +#: guix-git/doc/guix.texi:4727 msgid "[#:cache-directory] [#:ttl] Return an inferior for @var{channels}, a list of channels. Use the cache at @var{cache-directory}, where entries can be reclaimed after @var{ttl} seconds. This procedure opens a new connection to the build daemon." msgstr "" "[#:cache-directory] [#:ttl]\n" "Renvoie un inférieur pour @var{channels}, une liste de canaux. Elle utilise le cache dans @var{cache-directory}, où les entrées peuvent être glanées après @var{ttl} secondes. Cette procédure ouvre une nouvelle connexion au démon de construction." #. type: deffn -#: guix-git/doc/guix.texi:4712 +#: guix-git/doc/guix.texi:4730 msgid "As a side effect, this procedure may build or substitute binaries for @var{channels}, which can take time." msgstr "Elle a pour effet de bord de construire ou de substituer des binaires pour @var{channels}, ce qui peut prendre du temps." #. type: deffn -#: guix-git/doc/guix.texi:4714 +#: guix-git/doc/guix.texi:4732 #, no-wrap msgid "{Scheme Procedure} open-inferior @var{directory} @" msgstr "{Procédure Scheme} open-inferior @var{directory} @" #. type: deffn -#: guix-git/doc/guix.texi:4719 +#: guix-git/doc/guix.texi:4737 msgid "[#:command \"bin/guix\"] Open the inferior Guix in @var{directory}, running @code{@var{directory}/@var{command} repl} or equivalent. Return @code{#f} if the inferior could not be launched." msgstr "" "[#:command \"bin/guix\"]\n" "Ouvre le Guix inférieur dans @var{directory} et lance @code{@var{directory}/@var{command} repl} ou équivalent. Renvoie @code{#f} si l'inférieur n'a pas pu être lancé." #. type: Plain text -#: guix-git/doc/guix.texi:4724 +#: guix-git/doc/guix.texi:4742 msgid "The procedures listed below allow you to obtain and manipulate inferior packages." msgstr "Les procédures listées plus bas vous permettent d'obtenir et de manipuler des paquets inférieurs." #. type: deffn -#: guix-git/doc/guix.texi:4725 +#: guix-git/doc/guix.texi:4743 #, no-wrap msgid "{Scheme Procedure} inferior-packages @var{inferior}" msgstr "{Procédure Scheme} inferior-packages @var{inferior}" #. type: deffn -#: guix-git/doc/guix.texi:4727 +#: guix-git/doc/guix.texi:4745 msgid "Return the list of packages known to @var{inferior}." msgstr "Renvoie la liste des paquets connus de l'inférieur @var{inferior}." #. type: deffn -#: guix-git/doc/guix.texi:4729 +#: guix-git/doc/guix.texi:4747 #, no-wrap msgid "{Scheme Procedure} lookup-inferior-packages @var{inferior} @var{name} @" msgstr "{Procédure Scheme} lookup-inferior-packages @var{inferior} @var{name} @" #. type: deffn -#: guix-git/doc/guix.texi:4734 +#: guix-git/doc/guix.texi:4752 msgid "[@var{version}] Return the sorted list of inferior packages matching @var{name} in @var{inferior}, with highest version numbers first. If @var{version} is true, return only packages with a version number prefixed by @var{version}." msgstr "" "[@var{version}]\n" "Renvoie la liste triée des paquets inférieurs qui correspondent à @var{name} dans @var{inferior}, avec le plus haut numéro de version en premier. Si @var{version} est vrai, renvoie seulement les paquets avec un numéro de version préfixé par @var{version}." #. type: deffn -#: guix-git/doc/guix.texi:4736 +#: guix-git/doc/guix.texi:4754 #, no-wrap msgid "{Scheme Procedure} inferior-package? @var{obj}" msgstr "{Procédure Scheme} inferior-package? @var{obj}" #. type: deffn -#: guix-git/doc/guix.texi:4738 +#: guix-git/doc/guix.texi:4756 msgid "Return true if @var{obj} is an inferior package." msgstr "Renvoie vrai si @var{obj} est un paquet inférieur." #. type: deffn -#: guix-git/doc/guix.texi:4740 +#: guix-git/doc/guix.texi:4758 #, no-wrap msgid "{Scheme Procedure} inferior-package-name @var{package}" msgstr "{Procédure Scheme} inferior-package-name @var{package}" #. type: deffnx -#: guix-git/doc/guix.texi:4741 +#: guix-git/doc/guix.texi:4759 #, no-wrap msgid "{Scheme Procedure} inferior-package-version @var{package}" msgstr "{Procédure Scheme} inferior-package-version @var{package}" #. type: deffnx -#: guix-git/doc/guix.texi:4742 +#: guix-git/doc/guix.texi:4760 #, no-wrap msgid "{Scheme Procedure} inferior-package-synopsis @var{package}" msgstr "{Procédure Scheme} inferior-package-synopsis @var{package}" #. type: deffnx -#: guix-git/doc/guix.texi:4743 +#: guix-git/doc/guix.texi:4761 #, no-wrap msgid "{Scheme Procedure} inferior-package-description @var{package}" msgstr "{Procédure Scheme} inferior-package-description @var{package}" #. type: deffnx -#: guix-git/doc/guix.texi:4744 +#: guix-git/doc/guix.texi:4762 #, no-wrap msgid "{Scheme Procedure} inferior-package-home-page @var{package}" msgstr "{Procédure Scheme} inferior-package-home-page @var{package}" #. type: deffnx -#: guix-git/doc/guix.texi:4745 +#: guix-git/doc/guix.texi:4763 #, no-wrap msgid "{Scheme Procedure} inferior-package-location @var{package}" msgstr "{Procédure Scheme} inferior-package-location @var{package}" #. type: deffnx -#: guix-git/doc/guix.texi:4746 +#: guix-git/doc/guix.texi:4764 #, no-wrap msgid "{Scheme Procedure} inferior-package-inputs @var{package}" msgstr "{Procédure Scheme} inferior-package-inputs @var{package}" #. type: deffnx -#: guix-git/doc/guix.texi:4747 +#: guix-git/doc/guix.texi:4765 #, no-wrap msgid "{Scheme Procedure} inferior-package-native-inputs @var{package}" msgstr "{Procédure Scheme} inferior-package-native-inputs @var{package}" #. type: deffnx -#: guix-git/doc/guix.texi:4748 +#: guix-git/doc/guix.texi:4766 #, no-wrap msgid "{Scheme Procedure} inferior-package-propagated-inputs @var{package}" msgstr "{Procédure Scheme} inferior-package-propagated-inputs @var{package}" #. type: deffnx -#: guix-git/doc/guix.texi:4749 +#: guix-git/doc/guix.texi:4767 #, no-wrap msgid "{Scheme Procedure} inferior-package-transitive-propagated-inputs @var{package}" msgstr "{Procédure Scheme} inferior-package-transitive-propagated-inputs @var{package}" #. type: deffnx -#: guix-git/doc/guix.texi:4750 +#: guix-git/doc/guix.texi:4768 #, no-wrap msgid "{Scheme Procedure} inferior-package-native-search-paths @var{package}" msgstr "{Procédure Scheme} inferior-package-native-search-paths @var{package}" #. type: deffnx -#: guix-git/doc/guix.texi:4751 +#: guix-git/doc/guix.texi:4769 #, no-wrap msgid "{Scheme Procedure} inferior-package-transitive-native-search-paths @var{package}" msgstr "{Procédure Scheme} inferior-package-transitive-native-search-paths @var{package}" #. type: deffnx -#: guix-git/doc/guix.texi:4752 +#: guix-git/doc/guix.texi:4770 #, no-wrap msgid "{Scheme Procedure} inferior-package-search-paths @var{package}" msgstr "{Procédure Scheme} inferior-package-search-paths @var{package}" #. type: deffn -#: guix-git/doc/guix.texi:4757 +#: guix-git/doc/guix.texi:4775 msgid "These procedures are the counterpart of package record accessors (@pxref{package Reference}). Most of them work by querying the inferior @var{package} comes from, so the inferior must still be live when you call these procedures." msgstr "Ces procédures sont la contrepartie des accesseurs des enregistrements de paquets (@pxref{package Reference}). La plupart fonctionne en effectuant des requêtes à l'inférieur dont provient @var{package}, donc l'inférieur doit toujours être disponible lorsque vous appelez ces procédures." #. type: Plain text -#: guix-git/doc/guix.texi:4767 +#: guix-git/doc/guix.texi:4785 msgid "Inferior packages can be used transparently like any other package or file-like object in G-expressions (@pxref{G-Expressions}). They are also transparently handled by the @code{packages->manifest} procedure, which is commonly used in manifests (@pxref{Invoking guix package, the @option{--manifest} option of @command{guix package}}). Thus you can insert an inferior package pretty much anywhere you would insert a regular package: in manifests, in the @code{packages} field of your @code{operating-system} declaration, and so on." msgstr "Les paquets inférieurs peuvent être utilisés de manière transparente comme tout autre paquet ou objet simili-fichier dans des G-expressions (@pxref{G-Expressions}). Ils sont aussi gérés de manière transparente par la procédure @code{packages->manifest}, qui est typiquement utilisée dans des manifestes (@pxref{Invoking guix package, l'option @option{--manifest} de @command{guix package}}). Ainsi, vous pouvez insérer un paquet inférieur à peu près n'importe où vous utiliseriez un paquet normal : dans des manifestes, dans le champ @code{packages} de votre déclaration @code{operating-system}, etc." #. type: section -#: guix-git/doc/guix.texi:4769 +#: guix-git/doc/guix.texi:4787 #, no-wrap msgid "Invoking @command{guix describe}" msgstr "Invoquer @command{guix describe}" #. type: Plain text -#: guix-git/doc/guix.texi:4780 +#: guix-git/doc/guix.texi:4798 msgid "Often you may want to answer questions like: ``Which revision of Guix am I using?'' or ``Which channels am I using?'' This is useful information in many situations: if you want to @emph{replicate} an environment on a different machine or user account, if you want to report a bug or to determine what change in the channels you are using caused it, or if you want to record your system state for reproducibility purposes. The @command{guix describe} command answers these questions." msgstr "Souvent vous voudrez répondre à des questions comme « quelle révision de Guix j'utilise ? » ou « quels canaux est-ce que j'utilise ? ». C'est une information utile dans de nombreuses situations : si vous voulez @emph{répliquer} un environnement sur une machine différente ou un compte utilisateur, si vous voulez rapporter un bogue ou pour déterminer quel changement dans les canaux que vous utilisez l'a causé ou si vous voulez enregistrer l'état de votre système pour le reproduire. La commande @command{guix describe} répond à ces questions." #. type: Plain text -#: guix-git/doc/guix.texi:4784 +#: guix-git/doc/guix.texi:4802 msgid "When run from a @command{guix pull}ed @command{guix}, @command{guix describe} displays the channel(s) that it was built from, including their repository URL and commit IDs (@pxref{Channels}):" msgstr "Lorsqu'elle est lancée depuis un @command{guix} mis à jour avec @command{guix pull}, @command{guix describe} affiche les canaux qui ont été construits, avec l'URL de leur dépôt et l'ID de leur commit (@pxref{Channels}) :" #. type: example -#: guix-git/doc/guix.texi:4792 +#: guix-git/doc/guix.texi:4810 #, no-wrap msgid "" "$ guix describe\n" @@ -11767,17 +11844,17 @@ msgstr "" " commit : e0fa68c7718fffd33d81af415279d6ddb518f727\n" #. type: Plain text -#: guix-git/doc/guix.texi:4801 +#: guix-git/doc/guix.texi:4819 msgid "If you're familiar with the Git version control system, this is similar in spirit to @command{git describe}; the output is also similar to that of @command{guix pull --list-generations}, but limited to the current generation (@pxref{Invoking guix pull, the @option{--list-generations} option}). Because the Git commit ID shown above unambiguously refers to a snapshot of Guix, this information is all it takes to describe the revision of Guix you're using, and also to replicate it." msgstr "Si vous connaissez bien le système de contrôle de version Git, cela ressemble en essence à @command{git describe} ; la sortie est aussi similaire à celle de @command{guix pull --list-generations}, mais limitée à la génération actuelle (@pxref{Invoking guix pull, l'option @option{--list-generations}}). Comme l'ID de commit de Git ci-dessus se réfère sans aucune ambiguïté à un instantané de Guix, cette information est tout ce dont vous avez besoin pour décrire la révision de Guix que vous utilisez et pour la répliquer." #. type: Plain text -#: guix-git/doc/guix.texi:4804 +#: guix-git/doc/guix.texi:4822 msgid "To make it easier to replicate Guix, @command{guix describe} can also be asked to return a list of channels instead of the human-readable description above:" msgstr "Pour rendre plus facile la réplication de Guix, @command{guix describe} peut aussi renvoyer une liste de canaux plutôt que la description lisible par un humain au-dessus :" #. type: example -#: guix-git/doc/guix.texi:4817 +#: guix-git/doc/guix.texi:4835 #, no-wrap msgid "" "$ guix describe -f channels\n" @@ -11805,190 +11882,190 @@ msgstr "" " \"BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA\")))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:4826 +#: guix-git/doc/guix.texi:4844 msgid "You can save this to a file and feed it to @command{guix pull -C} on some other machine or at a later point in time, which will instantiate @emph{this exact Guix revision} (@pxref{Invoking guix pull, the @option{-C} option}). From there on, since you're able to deploy the same revision of Guix, you can just as well @emph{replicate a complete software environment}. We humbly think that this is @emph{awesome}, and we hope you'll like it too!" msgstr "Vous pouvez sauvegarder ceci dans un fichier et le donner à @command{guix pull -C} sur une autre machine ou plus tard, ce qui instantiera @emph{exactement la même révision de Guix} (@pxref{Invoking guix pull, l'option @option{-C}}). À partir de là, comme vous pouvez déployer la même révision de Guix, vous pouvez aussi bien @emph{répliquer un environnement logiciel complet}. Nous pensons humblement que c'est @emph{génial}, et nous espérons que vous aimerez ça aussi !" #. type: Plain text -#: guix-git/doc/guix.texi:4829 +#: guix-git/doc/guix.texi:4847 msgid "The details of the options supported by @command{guix describe} are as follows:" msgstr "Voici les détails des options supportées par @command{guix describe} :" #. type: item -#: guix-git/doc/guix.texi:4831 guix-git/doc/guix.texi:6431 -#: guix-git/doc/guix.texi:14242 +#: guix-git/doc/guix.texi:4849 guix-git/doc/guix.texi:6474 +#: guix-git/doc/guix.texi:14599 #, no-wrap msgid "--format=@var{format}" msgstr "--format=@var{format}" #. type: itemx -#: guix-git/doc/guix.texi:4832 guix-git/doc/guix.texi:6432 -#: guix-git/doc/guix.texi:14243 +#: guix-git/doc/guix.texi:4850 guix-git/doc/guix.texi:6475 +#: guix-git/doc/guix.texi:14600 #, no-wrap msgid "-f @var{format}" msgstr "-f @var{format}" #. type: table -#: guix-git/doc/guix.texi:4834 guix-git/doc/guix.texi:14245 +#: guix-git/doc/guix.texi:4852 guix-git/doc/guix.texi:14602 msgid "Produce output in the specified @var{format}, one of:" msgstr "Produire la sortie dans le @var{format} donné, parmi :" #. type: item -#: guix-git/doc/guix.texi:4836 +#: guix-git/doc/guix.texi:4854 #, no-wrap msgid "human" msgstr "human" #. type: table -#: guix-git/doc/guix.texi:4838 +#: guix-git/doc/guix.texi:4856 msgid "produce human-readable output;" msgstr "produire une sortie lisible par un humain ;" #. type: cindex -#: guix-git/doc/guix.texi:4838 guix-git/doc/guix.texi:5056 +#: guix-git/doc/guix.texi:4856 guix-git/doc/guix.texi:5074 #, no-wrap msgid "channels" msgstr "canaux" #. type: table -#: guix-git/doc/guix.texi:4842 +#: guix-git/doc/guix.texi:4860 msgid "produce a list of channel specifications that can be passed to @command{guix pull -C} or installed as @file{~/.config/guix/channels.scm} (@pxref{Invoking guix pull});" msgstr "produire une liste de spécifications de canaux qui peut être passée à @command{guix pull -C} ou installée dans @file{~/.config/guix/channels.scm} (@pxref{Invoking guix pull}) ;" #. type: item -#: guix-git/doc/guix.texi:4842 +#: guix-git/doc/guix.texi:4860 #, no-wrap msgid "channels-sans-intro" msgstr "channels-sans-intro" #. type: table -#: guix-git/doc/guix.texi:4848 +#: guix-git/doc/guix.texi:4866 msgid "like @code{channels}, but omit the @code{introduction} field; use it to produce a channel specification suitable for Guix version 1.1.0 or earlier---the @code{introduction} field has to do with channel authentication (@pxref{Channels, Channel Authentication}) and is not supported by these older versions;" msgstr "comme @code{canaux}, mais oubliez le champ @code{introduction} ; utilisez-le pour produire une spécification de canal adaptée à la version 1.1.0 ou antérieure de Guix--le champ @code{introduction} concerne l'authentification des canaux (@pxref{Channels, Channel Authentication}) et n'est pas pris en charge par ces versions antérieures ;" #. type: item -#: guix-git/doc/guix.texi:4848 guix-git/doc/guix.texi:12109 +#: guix-git/doc/guix.texi:4866 guix-git/doc/guix.texi:12424 #, no-wrap msgid "json" msgstr "json" #. type: cindex -#: guix-git/doc/guix.texi:4849 +#: guix-git/doc/guix.texi:4867 #, no-wrap msgid "JSON" msgstr "JSON" #. type: table -#: guix-git/doc/guix.texi:4851 +#: guix-git/doc/guix.texi:4869 msgid "produce a list of channel specifications in JSON format;" msgstr "produire une liste de spécifications de canaux dans le format JSON ;" #. type: item -#: guix-git/doc/guix.texi:4851 guix-git/doc/guix.texi:14247 +#: guix-git/doc/guix.texi:4869 guix-git/doc/guix.texi:14604 #, no-wrap msgid "recutils" msgstr "recutils" #. type: table -#: guix-git/doc/guix.texi:4853 +#: guix-git/doc/guix.texi:4871 msgid "produce a list of channel specifications in Recutils format." msgstr "produire une liste de spécifications de canaux dans le format Recutils." #. type: item -#: guix-git/doc/guix.texi:4855 +#: guix-git/doc/guix.texi:4873 #, no-wrap msgid "--list-formats" msgstr "--list-formats" #. type: table -#: guix-git/doc/guix.texi:4857 +#: guix-git/doc/guix.texi:4875 msgid "Display available formats for @option{--format} option." msgstr "Affiche les formats disponibles pour l'option @option{--format}." #. type: table -#: guix-git/doc/guix.texi:4861 +#: guix-git/doc/guix.texi:4879 msgid "Display information about @var{profile}." msgstr "Afficher les informations sur le @var{profil}." #. type: section -#: guix-git/doc/guix.texi:4864 +#: guix-git/doc/guix.texi:4882 #, no-wrap msgid "Invoking @command{guix archive}" msgstr "Invoquer @command{guix archive}" #. type: command{#1} -#: guix-git/doc/guix.texi:4866 +#: guix-git/doc/guix.texi:4884 #, no-wrap msgid "guix archive" msgstr "guix archive" #. type: cindex -#: guix-git/doc/guix.texi:4867 +#: guix-git/doc/guix.texi:4885 #, no-wrap msgid "archive" msgstr "archive" #. type: Plain text -#: guix-git/doc/guix.texi:4873 +#: guix-git/doc/guix.texi:4891 msgid "The @command{guix archive} command allows users to @dfn{export} files from the store into a single archive, and to later @dfn{import} them on a machine that runs Guix. In particular, it allows store files to be transferred from one machine to the store on another machine." msgstr "La commande @command{guix archive} permet aux utilisateurs d'@dfn{exporter} des fichiers du dépôt dans une simple archive puis ensuite de les @dfn{importer} sur une machine qui fait tourner Guix. En particulier, elle permet de transférer des fichiers du dépôt d'une machine vers le dépôt d'une autre machine." #. type: quotation -#: guix-git/doc/guix.texi:4877 +#: guix-git/doc/guix.texi:4895 msgid "If you're looking for a way to produce archives in a format suitable for tools other than Guix, @pxref{Invoking guix pack}." msgstr "Si vous chercher une manière de produire des archives dans un format adapté pour des outils autres que Guix, @pxref{Invoking guix pack}." #. type: cindex -#: guix-git/doc/guix.texi:4879 +#: guix-git/doc/guix.texi:4897 #, no-wrap msgid "exporting store items" msgstr "exporter des éléments du dépôt" #. type: Plain text -#: guix-git/doc/guix.texi:4881 +#: guix-git/doc/guix.texi:4899 msgid "To export store files as an archive to standard output, run:" msgstr "Pour exporter des fichiers du dépôt comme une archive sur la sortie standard, lancez :" #. type: example -#: guix-git/doc/guix.texi:4884 +#: guix-git/doc/guix.texi:4902 #, no-wrap msgid "guix archive --export @var{options} @var{specifications}...\n" msgstr "guix archive --export @var{options} @var{spécifications}...\n" #. type: Plain text -#: guix-git/doc/guix.texi:4891 +#: guix-git/doc/guix.texi:4909 msgid "@var{specifications} may be either store file names or package specifications, as for @command{guix package} (@pxref{Invoking guix package}). For instance, the following command creates an archive containing the @code{gui} output of the @code{git} package and the main output of @code{emacs}:" msgstr "@var{spécifications} peut être soit des noms de fichiers soit des spécifications de paquets, comme pour @command{guix package} (@pxref{Invoking guix package}). Par exemple, la commande suivante crée une archive contenant la sortie @code{gui} du paquet @code{git} et la sortie principale de @code{emacs} :" #. type: example -#: guix-git/doc/guix.texi:4894 +#: guix-git/doc/guix.texi:4912 #, no-wrap msgid "guix archive --export git:gui /gnu/store/...-emacs-24.3 > great.nar\n" msgstr "guix archive --export git:gui /gnu/store/...-emacs-24.3 > great.nar\n" #. type: Plain text -#: guix-git/doc/guix.texi:4899 +#: guix-git/doc/guix.texi:4917 msgid "If the specified packages are not built yet, @command{guix archive} automatically builds them. The build process may be controlled with the common build options (@pxref{Common Build Options})." msgstr "Si les paquets spécifiés ne sont pas déjà construits, @command{guix archive} les construit automatiquement. Le processus de construction peut être contrôlé avec les options de construction communes (@pxref{Common Build Options})." #. type: Plain text -#: guix-git/doc/guix.texi:4902 +#: guix-git/doc/guix.texi:4920 msgid "To transfer the @code{emacs} package to a machine connected over SSH, one would run:" msgstr "Pour transférer le paquet @code{emacs} vers une machine connectée en SSH, on pourrait lancer :" #. type: example -#: guix-git/doc/guix.texi:4905 +#: guix-git/doc/guix.texi:4923 #, no-wrap msgid "guix archive --export -r emacs | ssh the-machine guix archive --import\n" msgstr "guix archive --export -r emacs | ssh la-machine guix archive --import\n" #. type: Plain text -#: guix-git/doc/guix.texi:4910 +#: guix-git/doc/guix.texi:4928 msgid "Similarly, a complete user profile may be transferred from one machine to another like this:" msgstr "De même, on peut transférer un profil utilisateur complet d'une machine à une autre comme cela :" #. type: example -#: guix-git/doc/guix.texi:4914 +#: guix-git/doc/guix.texi:4932 #, no-wrap msgid "" "guix archive --export -r $(readlink -f ~/.guix-profile) | \\\n" @@ -11998,187 +12075,187 @@ msgstr "" " ssh the-machine guix archive --import\n" #. type: Plain text -#: guix-git/doc/guix.texi:4924 +#: guix-git/doc/guix.texi:4942 msgid "However, note that, in both examples, all of @code{emacs} and the profile as well as all of their dependencies are transferred (due to @option{-r}), regardless of what is already available in the store on the target machine. The @option{--missing} option can help figure out which items are missing from the target store. The @command{guix copy} command simplifies and optimizes this whole process, so this is probably what you should use in this case (@pxref{Invoking guix copy})." msgstr "Toutefois, il faut noter que, dans les deux exemples, tous les @code{emacs} et le profil, ainsi que toutes leurs dépendances sont transférés (en raison de l'@option{-r}), indépendamment de ce qui est déjà disponible dans le dépôt sur la machine cible. L'option @option{--missing} peut aider à déterminer quels sont les éléments manquants dans le dépôt cible. La commande @command{guix copy} simplifie et optimise tout ce processus, c'est donc probablement ce que vous devriez utiliser dans ce cas (@pxref{Invoquer guix copy})." #. type: cindex -#: guix-git/doc/guix.texi:4925 +#: guix-git/doc/guix.texi:4943 #, no-wrap msgid "nar, archive format" msgstr "nar, format d'archive" #. type: cindex -#: guix-git/doc/guix.texi:4926 +#: guix-git/doc/guix.texi:4944 #, no-wrap msgid "normalized archive (nar)" msgstr "archive normalisée (nar)" #. type: cindex -#: guix-git/doc/guix.texi:4927 +#: guix-git/doc/guix.texi:4945 #, no-wrap msgid "nar bundle, archive format" msgstr "nar bundle, format d'archive" #. type: Plain text -#: guix-git/doc/guix.texi:4932 +#: guix-git/doc/guix.texi:4950 msgid "Each store item is written in the @dfn{normalized archive} or @dfn{nar} format (described below), and the output of @command{guix archive --export} (and input of @command{guix archive --import}) is a @dfn{nar bundle}." msgstr "Chaque élément du dépôt est écrit dans le format @dfn{archive normalisée} ou @dfn{nar} (décrit ci-dessous), et la sortie de @command{guix archive --export} (et entrée de @command{guix archive --import}) est un @dfn{nar bundle}." #. type: Plain text -#: guix-git/doc/guix.texi:4942 +#: guix-git/doc/guix.texi:4960 msgid "The nar format is comparable in spirit to `tar', but with differences that make it more appropriate for our purposes. First, rather than recording all Unix metadata for each file, the nar format only mentions the file type (regular, directory, or symbolic link); Unix permissions and owner/group are dismissed. Second, the order in which directory entries are stored always follows the order of file names according to the C locale collation order. This makes archive production fully deterministic." msgstr "Le format nar est comparable dans l'esprit au format \"tar\", mais avec des différences qui le rendent plus approprié à nos objectifs. Premièrement, plutôt que d'enregistrer toutes les métadonnées Unix pour chaque fichier, le format nar ne mentionne que le type de fichier (régulier, répertoire ou lien symbolique) ; les autorisations Unix et le propriétaire/groupe sont rejetés. Deuxièmement, l'ordre dans lequel les entrées de répertoire sont stockées, suit toujours celui des noms de fichiers selon leur vérification de concordance des locales C. Cela rend la production d'archives entièrement déterministe." #. type: Plain text -#: guix-git/doc/guix.texi:4946 +#: guix-git/doc/guix.texi:4964 msgid "That nar bundle format is essentially the concatenation of zero or more nars along with metadata for each store item it contains: its file name, references, corresponding derivation, and a digital signature." msgstr "Ce format de lot nar est surtout la concaténation de zéro, un ou plusieurs nar avec des métadonnées pour chaque élément du dépôt qu'il contient : son nom de fichier, ses références, la dérivation correspondante et une signature numérique." #. type: Plain text -#: guix-git/doc/guix.texi:4952 +#: guix-git/doc/guix.texi:4970 msgid "When exporting, the daemon digitally signs the contents of the archive, and that digital signature is appended. When importing, the daemon verifies the signature and rejects the import in case of an invalid signature or if the signing key is not authorized." msgstr "Lors de l'export, le démon signe numériquement le contenu de l'archive et cette signature est ajoutée à la fin du fichier. Lors de l'import, le démon vérifie la signature et rejette l'import en cas de signature invalide ou si la clef de signature n'est pas autorisée." #. type: Plain text -#: guix-git/doc/guix.texi:4954 +#: guix-git/doc/guix.texi:4972 msgid "The main options are:" msgstr "Les principales options sont :" #. type: item -#: guix-git/doc/guix.texi:4956 +#: guix-git/doc/guix.texi:4974 #, no-wrap msgid "--export" msgstr "--export" #. type: table -#: guix-git/doc/guix.texi:4959 +#: guix-git/doc/guix.texi:4977 msgid "Export the specified store files or packages (see below). Write the resulting archive to the standard output." msgstr "Exporter les fichiers ou les paquets spécifiés du dépôt (voir plus bas). Écrire l'archive résultante sur la sortie standard." #. type: table -#: guix-git/doc/guix.texi:4962 +#: guix-git/doc/guix.texi:4980 msgid "Dependencies are @emph{not} included in the output, unless @option{--recursive} is passed." msgstr "Les dépendances ne sont @emph{pas} incluses dans la sortie à moins que @option{--recursive} ne soit passé." #. type: itemx -#: guix-git/doc/guix.texi:4963 guix-git/doc/guix.texi:11830 -#: guix-git/doc/guix.texi:11956 guix-git/doc/guix.texi:11981 -#: guix-git/doc/guix.texi:12013 guix-git/doc/guix.texi:12184 -#: guix-git/doc/guix.texi:12225 guix-git/doc/guix.texi:12276 -#: guix-git/doc/guix.texi:12301 guix-git/doc/guix.texi:12317 -#: guix-git/doc/guix.texi:12365 guix-git/doc/guix.texi:12401 +#: guix-git/doc/guix.texi:4981 guix-git/doc/guix.texi:12144 +#: guix-git/doc/guix.texi:12271 guix-git/doc/guix.texi:12296 +#: guix-git/doc/guix.texi:12328 guix-git/doc/guix.texi:12499 +#: guix-git/doc/guix.texi:12540 guix-git/doc/guix.texi:12591 +#: guix-git/doc/guix.texi:12616 guix-git/doc/guix.texi:12632 +#: guix-git/doc/guix.texi:12680 guix-git/doc/guix.texi:12716 #, no-wrap msgid "-r" msgstr "-r" #. type: item -#: guix-git/doc/guix.texi:4964 guix-git/doc/guix.texi:11829 -#: guix-git/doc/guix.texi:11955 guix-git/doc/guix.texi:11980 -#: guix-git/doc/guix.texi:12012 guix-git/doc/guix.texi:12183 -#: guix-git/doc/guix.texi:12224 guix-git/doc/guix.texi:12275 -#: guix-git/doc/guix.texi:12300 guix-git/doc/guix.texi:12316 -#: guix-git/doc/guix.texi:12364 guix-git/doc/guix.texi:12400 -#: guix-git/doc/guix.texi:12449 +#: guix-git/doc/guix.texi:4982 guix-git/doc/guix.texi:12143 +#: guix-git/doc/guix.texi:12270 guix-git/doc/guix.texi:12295 +#: guix-git/doc/guix.texi:12327 guix-git/doc/guix.texi:12498 +#: guix-git/doc/guix.texi:12539 guix-git/doc/guix.texi:12590 +#: guix-git/doc/guix.texi:12615 guix-git/doc/guix.texi:12631 +#: guix-git/doc/guix.texi:12679 guix-git/doc/guix.texi:12715 +#: guix-git/doc/guix.texi:12764 #, no-wrap msgid "--recursive" msgstr "--recursive" #. type: table -#: guix-git/doc/guix.texi:4969 +#: guix-git/doc/guix.texi:4987 msgid "When combined with @option{--export}, this instructs @command{guix archive} to include dependencies of the given items in the archive. Thus, the resulting archive is self-contained: it contains the closure of the exported store items." msgstr "En combinaison avec @option{--export}, cette option demande à @command{guix archive} d'inclure les dépendances des éléments donnés dans l'archive. Ainsi, l'archive résultante est autonome : elle contient la fermeture des éléments de dépôt exportés." #. type: item -#: guix-git/doc/guix.texi:4970 +#: guix-git/doc/guix.texi:4988 #, no-wrap msgid "--import" msgstr "--import" #. type: table -#: guix-git/doc/guix.texi:4975 +#: guix-git/doc/guix.texi:4993 msgid "Read an archive from the standard input, and import the files listed therein into the store. Abort if the archive has an invalid digital signature, or if it is signed by a public key not among the authorized keys (see @option{--authorize} below)." msgstr "Lire une archive depuis l'entrée standard et importer les fichiers inclus dans le dépôt. Annuler si l'archive a une signature invalide ou si elle est signée par une clef publique qui ne se trouve pas dans le clefs autorisées (voir @option{--authorize} plus bas)." #. type: item -#: guix-git/doc/guix.texi:4976 +#: guix-git/doc/guix.texi:4994 #, no-wrap msgid "--missing" msgstr "--missing" #. type: table -#: guix-git/doc/guix.texi:4980 +#: guix-git/doc/guix.texi:4998 msgid "Read a list of store file names from the standard input, one per line, and write on the standard output the subset of these files missing from the store." msgstr "Liste une liste de noms de fichiers du dépôt sur l'entrée standard, un par ligne, et écrit sur l'entrée standard le sous-ensemble de ces fichiers qui manquent dans le dépôt." #. type: item -#: guix-git/doc/guix.texi:4981 +#: guix-git/doc/guix.texi:4999 #, no-wrap msgid "--generate-key[=@var{parameters}]" msgstr "--generate-key[=@var{paramètres}]" #. type: cindex -#: guix-git/doc/guix.texi:4982 +#: guix-git/doc/guix.texi:5000 #, no-wrap msgid "signing, archives" msgstr "signature, archives" #. type: table -#: guix-git/doc/guix.texi:4989 +#: guix-git/doc/guix.texi:5007 msgid "Generate a new key pair for the daemon. This is a prerequisite before archives can be exported with @option{--export}. This operation is usually instantaneous but it can take time if the system's entropy pool needs to be refilled. On Guix System, @code{guix-service-type} takes care of generating this key pair the first boot." msgstr "Génére une nouvelle paire de clefs pour le démon. C' est un prérequis avant que les archives ne puissent être exportées avec @option{--export}. Cette opération est habituellement instantanée mais elle peut prendre du temps parce qu'elle doit récupérer suffisamment d'entropie pour générer la paire de clefs. Sur Guix System, @code{guix-service-type}prend soin de générer cette paire de clés au premier démarrage." #. type: table -#: guix-git/doc/guix.texi:4999 +#: guix-git/doc/guix.texi:5017 msgid "The generated key pair is typically stored under @file{/etc/guix}, in @file{signing-key.pub} (public key) and @file{signing-key.sec} (private key, which must be kept secret). When @var{parameters} is omitted, an ECDSA key using the Ed25519 curve is generated, or, for Libgcrypt versions before 1.6.0, it is a 4096-bit RSA key. Alternatively, @var{parameters} can specify @code{genkey} parameters suitable for Libgcrypt (@pxref{General public-key related Functions, @code{gcry_pk_genkey},, gcrypt, The Libgcrypt Reference Manual})." msgstr "La paire de clés générée est typiquement stockée dans @file{/etc/guix}, dans @file{signing-key.pub} (clé publique) et @file{signing-key.sec} (clé privée, qui doit rester secrète). Lorsque @var{paramètres} est omis, une clé ECDSA utilisant la courbe Ed25519 est générée, ou pour les version de libgcrypt avant 1.6.0, une clé RSA de 4096 bits. Autrement, @var{paramètres} peut spécifier les paramètres @code{genkey} adaptés pour libgcrypt (@pxref{General public-key related Functions, @code{gcry_pk_genkey},, gcrypt, The Libgcrypt Reference Manual})." #. type: item -#: guix-git/doc/guix.texi:5000 +#: guix-git/doc/guix.texi:5018 #, no-wrap msgid "--authorize" msgstr "--authorize" #. type: cindex -#: guix-git/doc/guix.texi:5001 +#: guix-git/doc/guix.texi:5019 #, no-wrap msgid "authorizing, archives" msgstr "autorisation, archives" #. type: table -#: guix-git/doc/guix.texi:5005 +#: guix-git/doc/guix.texi:5023 msgid "Authorize imports signed by the public key passed on standard input. The public key must be in ``s-expression advanced format''---i.e., the same format as the @file{signing-key.pub} file." msgstr "Autoriser les imports signés par la clef publique passée sur l'entrée standard. La clef publique doit être au « format avancé s-expression » — c.-à-d.@: le même format que le fichier @file{signing-key.pub}." #. type: table -#: guix-git/doc/guix.texi:5012 +#: guix-git/doc/guix.texi:5030 msgid "The list of authorized keys is kept in the human-editable file @file{/etc/guix/acl}. The file contains @url{https://people.csail.mit.edu/rivest/Sexp.txt, ``advanced-format s-expressions''} and is structured as an access-control list in the @url{https://theworld.com/~cme/spki.txt, Simple Public-Key Infrastructure (SPKI)}." msgstr "La liste des clés autorisées est gardée dans un fichier modifiable par des humains dans @file{/etc/guix/acl}. Le fichier contient des @url{https://people.csail.mit.edu/rivest/Sexp.txt, « s-expressions au format avancé »} et est structuré comme une liste de contrôle d'accès dans l'@url{https://theworld.com/~cme/spki.txt, infrastructure à clefs publiques simple (SPKI)}." #. type: item -#: guix-git/doc/guix.texi:5013 +#: guix-git/doc/guix.texi:5031 #, no-wrap msgid "--extract=@var{directory}" msgstr "--extract=@var{répertoire}" #. type: itemx -#: guix-git/doc/guix.texi:5014 +#: guix-git/doc/guix.texi:5032 #, no-wrap msgid "-x @var{directory}" msgstr "-x @var{répertoire}" #. type: table -#: guix-git/doc/guix.texi:5018 +#: guix-git/doc/guix.texi:5036 msgid "Read a single-item archive as served by substitute servers (@pxref{Substitutes}) and extract it to @var{directory}. This is a low-level operation needed in only very narrow use cases; see below." msgstr "Lit une archive à un seul élément telle que servie par un serveur de substituts (@pxref{Substituts}) et l'extrait dans @var{répertoire}. C'est une opération de bas niveau requise seulement dans de rares cas d'usage ; voir plus loin." #. type: table -#: guix-git/doc/guix.texi:5021 +#: guix-git/doc/guix.texi:5039 msgid "For example, the following command extracts the substitute for Emacs served by @code{@value{SUBSTITUTE-SERVER-1}} to @file{/tmp/emacs}:" msgstr "Par exemple, la commande suivante extrait le substitut pour Emacs servi par @code{@value{SUBSTITUTE-SERVER-1}} dans @file{/tmp/emacs} :" #. type: example -#: guix-git/doc/guix.texi:5026 +#: guix-git/doc/guix.texi:5044 #, no-wrap msgid "" "$ wget -O - \\\n" @@ -12190,35 +12267,35 @@ msgstr "" " | gunzip | guix archive -x /tmp/emacs\n" #. type: table -#: guix-git/doc/guix.texi:5033 +#: guix-git/doc/guix.texi:5051 msgid "Single-item archives are different from multiple-item archives produced by @command{guix archive --export}; they contain a single store item, and they do @emph{not} embed a signature. Thus this operation does @emph{no} signature verification and its output should be considered unsafe." msgstr "Les archives à un seul élément sont différentes des archives à plusieurs éléments produites par @command{guix archive --export} ; elles contiennent un seul élément du dépôt et elles n'embarquent @emph{pas} de signature. Ainsi cette opération ne vérifie @emph{pas} de signature et sa sortie devrait être considérée comme non sûre." #. type: table -#: guix-git/doc/guix.texi:5037 +#: guix-git/doc/guix.texi:5055 msgid "The primary purpose of this operation is to facilitate inspection of archive contents coming from possibly untrusted substitute servers (@pxref{Invoking guix challenge})." msgstr "Le but principal de cette opération est de faciliter l'inspection du contenu des archives venant de serveurs auxquels on ne fait potentiellement pas confiance. (@pxref{Invoquer guix challenge})." #. type: item -#: guix-git/doc/guix.texi:5038 +#: guix-git/doc/guix.texi:5056 #, no-wrap msgid "--list" msgstr "--list" #. type: itemx -#: guix-git/doc/guix.texi:5039 guix-git/doc/guix.texi:12171 -#: guix-git/doc/guix.texi:12218 +#: guix-git/doc/guix.texi:5057 guix-git/doc/guix.texi:12486 +#: guix-git/doc/guix.texi:12533 #, no-wrap msgid "-t" msgstr "-t" #. type: table -#: guix-git/doc/guix.texi:5043 +#: guix-git/doc/guix.texi:5061 msgid "Read a single-item archive as served by substitute servers (@pxref{Substitutes}) and print the list of files it contains, as in this example:" msgstr "Lit une archive à un seul élément telle que servie par un serveur de substituts (@pxref{Substitutes}) et affiche la liste des fichiers qu'elle contient, comme dans cet exemple :" #. type: example -#: guix-git/doc/guix.texi:5048 +#: guix-git/doc/guix.texi:5066 #, no-wrap msgid "" "$ wget -O - \\\n" @@ -12230,47 +12307,47 @@ msgstr "" " | lzip -d | guix archive -t\n" #. type: cindex -#: guix-git/doc/guix.texi:5059 +#: guix-git/doc/guix.texi:5077 #, no-wrap msgid "@command{guix pull}, configuration file" msgstr "@command{guix pull}, fichier de configuration" #. type: cindex -#: guix-git/doc/guix.texi:5060 +#: guix-git/doc/guix.texi:5078 #, no-wrap msgid "configuration of @command{guix pull}" msgstr "configuration de @command{guix pull}" #. type: Plain text -#: guix-git/doc/guix.texi:5071 +#: guix-git/doc/guix.texi:5089 msgid "Guix and its package collection are updated by running @command{guix pull} (@pxref{Invoking guix pull}). By default @command{guix pull} downloads and deploys Guix itself from the official GNU@tie{}Guix repository. This can be customized by defining @dfn{channels} in the @file{~/.config/guix/channels.scm} file. A channel specifies a URL and branch of a Git repository to be deployed, and @command{guix pull} can be instructed to pull from one or more channels. In other words, channels can be used to @emph{customize} and to @emph{extend} Guix, as we will see below. Guix is able to take into account security concerns and deal with authenticated updates." msgstr "Guix et sa collection de paquets sont mis à jour en lançant @command{guix pull} (@pxref{Invoking guix pull}). Par défaut @command{guix pull} télécharge et déploie Guix lui-même depuis le dépôt officiel de GNU@tie{}Guix. Cela peut être personnalisé en définissant des @dfn{canaux} dans le fichier @file{~/.config/guix/channels.scm}. Un canal spécifie l'URL et la branche d'un répertoire Git à déployer et on peut demander à @command{guix pull} de récupérer un ou plusieurs canaux. En d'autres termes, les canaux peuvent être utilisés pour @emph{personnaliser} et pour @emph{étendre} Guix, comme on le verra plus bas. Guix est en mesure de prendre en compte les préoccupations de sécurité et de traiter les mises à jour authentifiées." #. type: cindex -#: guix-git/doc/guix.texi:5089 +#: guix-git/doc/guix.texi:5107 #, no-wrap msgid "extending the package collection (channels)" msgstr "étendre la collection de paquets (canaux)" #. type: cindex -#: guix-git/doc/guix.texi:5090 +#: guix-git/doc/guix.texi:5108 #, no-wrap msgid "variant packages (channels)" msgstr "des variantes de paquets (canaux)" #. type: Plain text -#: guix-git/doc/guix.texi:5094 +#: guix-git/doc/guix.texi:5112 msgid "You can specify @emph{additional channels} to pull from. To use a channel, write @code{~/.config/guix/channels.scm} to instruct @command{guix pull} to pull from it @emph{in addition} to the default Guix channel(s):" msgstr "Vous pouvez spécifier des @emph{canaux supplémentaires} à utiliser. Pour utiliser un canal, écrivez dans @code{~/.config/guix/channels.scm} pour dire à @command{guix pull} de récupérer votre canal personnel @emph{en plus} des canaux par défaut de Guix :" #. type: vindex -#: guix-git/doc/guix.texi:5095 +#: guix-git/doc/guix.texi:5113 #, no-wrap msgid "%default-channels" msgstr "%default-channels" #. type: lisp -#: guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5120 #, no-wrap msgid "" ";; Add variant packages to those Guix provides.\n" @@ -12286,12 +12363,12 @@ msgstr "" " %default-channels)\n" #. type: Plain text -#: guix-git/doc/guix.texi:5112 +#: guix-git/doc/guix.texi:5130 msgid "Note that the snippet above is (as always!)@: Scheme code; we use @code{cons} to add a channel the list of channels that the variable @code{%default-channels} is bound to (@pxref{Pairs, @code{cons} and lists,, guile, GNU Guile Reference Manual}). With this file in place, @command{guix pull} builds not only Guix but also the package modules from your own repository. The result in @file{~/.config/guix/current} is the union of Guix with your own package modules:" msgstr "Remarquez que le bout de code au-dessus est (comme toujours !)@: du code Scheme ; nous utilisons @code{cons} pour ajouter un canal à la liste des canaux que la variable @code{%default-channels} représente (@pxref{Pairs, @code{cons} and lists,, guile, GNU Guile Reference Manual}). Avec ce fichier en place, @command{guix pull} construit non seulement Guix mais aussi les modules de paquets de votre propre dépôt. Le résultat dans @file{~/.config/guix/current} est l'union de Guix et de vos propres modules de paquets :" #. type: example -#: guix-git/doc/guix.texi:5127 +#: guix-git/doc/guix.texi:5145 #, no-wrap msgid "" "$ guix pull --list-generations\n" @@ -12323,17 +12400,17 @@ msgstr "" " 4 paquets mis à jour : emacs-racket-mode@@0.0.2-2.1b78827, @dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:5135 +#: guix-git/doc/guix.texi:5153 msgid "The output of @command{guix pull} above shows that Generation@tie{}19 includes both Guix and packages from the @code{variant-personal-packages} channel. Among the new and upgraded packages that are listed, some like @code{variant-gimp} and @code{variant-emacs-with-cool-features} might come from @code{variant-packages}, while others come from the Guix default channel." msgstr "La sortie de @command{guix pull} ci-dessus montre que la génération@tie{}19 contient aussi bien Guix que les paquets du canal @code{variant-packages}. Parmi les nouveaux paquets et les paquets mis à jour qui sont listés, certains comme @code{variant-gimp} et @code{variant-emacs-with-cool-features} peuvent provenir de @code{variant-packages}, tandis que d'autres viennent du canal par défaut de Guix." #. type: Plain text -#: guix-git/doc/guix.texi:5144 +#: guix-git/doc/guix.texi:5162 msgid "The channel called @code{guix} specifies where Guix itself---its command-line tools as well as its package collection---should be downloaded. For instance, suppose you want to update from another copy of the Guix repository at @code{example.org}, and specifically the @code{super-hacks} branch, you can write in @code{~/.config/guix/channels.scm} this specification:" msgstr "Le canal nommé @code{guix} spécifie où Guix lui-même — ses outils en ligne de commande ainsi que sa collection de paquets — seront téléchargés. Par exemple, supposons que vous voulez effectuer les mises à jour depuis votre propre copie du dépôt Guix sur @code{example.org}, et plus particulièrement depuis la branche @code{super-hacks}. Vous pouvez écrire cette spécification dans @code{~/.config/guix/channels.scm} :" #. type: lisp -#: guix-git/doc/guix.texi:5151 +#: guix-git/doc/guix.texi:5169 #, no-wrap msgid "" ";; Tell 'guix pull' to use another repo.\n" @@ -12349,17 +12426,17 @@ msgstr "" " (branch \"super-hacks\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5157 +#: guix-git/doc/guix.texi:5175 msgid "From there on, @command{guix pull} will fetch code from the @code{super-hacks} branch of the repository at @code{example.org}. The authentication concern is addressed below ((@pxref{Channel Authentication})." msgstr "Maintenant, @command{guix pull} récupérera le code depuis la branche @code{super-hacks} du dépôt sur @code{example.org}. La question de l'authentification est traitée ci-dessous ((@pxref{Channel Authentication})." #. type: Plain text -#: guix-git/doc/guix.texi:5168 +#: guix-git/doc/guix.texi:5186 msgid "The @command{guix pull --list-generations} output above shows precisely which commits were used to build this instance of Guix. We can thus replicate it, say, on another machine, by providing a channel specification in @file{~/.config/guix/channels.scm} that is ``pinned'' to these commits:" msgstr "La sortie de @command{guix pull --list-generations} ci-dessus montre précisément quels commits ont été utilisés pour construire cette instance de Guix. Nous pouvons donc la répliquer, disons sur une autre machine, en fournissant une spécification de canal dans @file{~/.config/guix/channels.scm} qui est « épinglé » à ces commits :" #. type: lisp -#: guix-git/doc/guix.texi:5179 +#: guix-git/doc/guix.texi:5197 #, no-wrap msgid "" ";; Deploy specific commits of my channels of interest.\n" @@ -12383,37 +12460,37 @@ msgstr "" " (commit \"dd3df5e2c8818760a8fc0bd699e55d3b69fef2bb\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5186 +#: guix-git/doc/guix.texi:5204 msgid "The @command{guix describe --format=channels} command can even generate this list of channels directly (@pxref{Invoking guix describe}). The resulting file can be used with the -C options of @command{guix pull} (@pxref{Invoking guix pull}) or @command{guix time-machine} (@pxref{Invoking guix time-machine})." msgstr "La commande @command{guix describe --format=channels} peut même générer cette liste de canaux directement (@pxref{Invoking guix describe}). Le fichier qui en résulte peut être utilisé avec l'option -C de @command{guix pull} (@pxref{Invoking guix pull}) ou @command{guix time-machine} (@pxref{Invoking guix time-machine})." #. type: Plain text -#: guix-git/doc/guix.texi:5193 +#: guix-git/doc/guix.texi:5211 msgid "At this point the two machines run the @emph{exact same Guix}, with access to the @emph{exact same packages}. The output of @command{guix build gimp} on one machine will be exactly the same, bit for bit, as the output of the same command on the other machine. It also means both machines have access to all the source code of Guix and, transitively, to all the source code of every package it defines." msgstr "À ce moment les deux machines font tourner @emph{exactement le même Guix}, avec l'accès @emph{exactement aux même paquets}. La sortie de @command{guix build gimp} sur une machine sera exactement la même, au bit près, que la sortie de la même commande sur l'autre machine. Cela signifie aussi que les deux machines ont accès à tous les codes sources de Guix, et transitivement, à tous les codes sources de tous les paquets qu'il définit." #. type: Plain text -#: guix-git/doc/guix.texi:5198 +#: guix-git/doc/guix.texi:5216 msgid "This gives you super powers, allowing you to track the provenance of binary artifacts with very fine grain, and to reproduce software environments at will---some sort of ``meta reproducibility'' capabilities, if you will. @xref{Inferiors}, for another way to take advantage of these super powers." msgstr "Cela vous donne des super-pouvoirs, ce qui vous permet de suivre la provenance des artefacts binaires avec un grain très fin et de reproduire les environnements logiciels à volonté — une sorte de capacité de « méta-reproductibilité », si vous voulez. @xref{Inferiors}, pour une autre manière d'utiliser ces super-pouvoirs." #. type: anchor{#1} -#: guix-git/doc/guix.texi:5203 +#: guix-git/doc/guix.texi:5221 msgid "channel-authentication" msgstr "channel-authentication" #. type: Plain text -#: guix-git/doc/guix.texi:5209 +#: guix-git/doc/guix.texi:5227 msgid "The @command{guix pull} and @command{guix time-machine} commands @dfn{authenticate} the code retrieved from channels: they make sure each commit that is fetched is signed by an authorized developer. The goal is to protect from unauthorized modifications to the channel that would lead users to run malicious code." msgstr "Les commandes @command{guix pull} et @command{guix time-machine} @dfn{authenticate} téléchargent et contrôlent le code récupéré sur les canaux : elles s'assurent que chaque commit récupéré est signé par un·e développeur·euse autorisé·e. L'objectif est de protéger contre les modifications non autorisées du canal qui conduiraient les utilisateur·rice·s à exécuter du code malveillant." #. type: Plain text -#: guix-git/doc/guix.texi:5214 +#: guix-git/doc/guix.texi:5232 msgid "As a user, you must provide a @dfn{channel introduction} in your channels file so that Guix knows how to authenticate its first commit. A channel specification, including its introduction, looks something along these lines:" msgstr "En tant qu'utilisateur, vous devez fournir une @dfn{introduction de canal} dans votre fichier de canaux afin que Guix sache comment authentifier son premier commit. Une spécification de canal, y compris son introduction, ressemble à quelque chose de ce genre :" #. type: lisp -#: guix-git/doc/guix.texi:5224 +#: guix-git/doc/guix.texi:5242 #, no-wrap msgid "" "(channel\n" @@ -12435,27 +12512,27 @@ msgstr "" " \"CABB A931 C0FF EEC6 900D 0CFB 090B 1199 3D9A EBB5\"))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5230 +#: guix-git/doc/guix.texi:5248 msgid "The specification above shows the name and URL of the channel. The call to @code{make-channel-introduction} above specifies that authentication of this channel starts at commit @code{6f0d8cc@dots{}}, which is signed by the OpenPGP key with fingerprint @code{CABB A931@dots{}}." msgstr "La spécification ci-dessus indique le nom et l'URL du canal. L'appel à @code{make-channel-introduction} ci-dessus spécifie que l'authentification de ce canal commence au commit @code{6f0d8cc@dots{}}, qui est signé par la clé OpenPGP avec l'empreinte digitale @code{CABB A931@dots{}}." #. type: Plain text -#: guix-git/doc/guix.texi:5236 +#: guix-git/doc/guix.texi:5254 msgid "For the main channel, called @code{guix}, you automatically get that information from your Guix installation. For other channels, include the channel introduction provided by the channel authors in your @file{channels.scm} file. Make sure you retrieve the channel introduction from a trusted source since that is the root of your trust." msgstr "Pour le canal principal, appelé @code{guix}, vous obtenez automatiquement cette information à partir de votre installation de Guix. Pour les autres canaux, incluez l'introduction du canal fournie par les auteurs du canal dans votre fichier @file{channels.scm}. Assurez-vous de récupérer l'introduction du canal à partir d'une source fiable, car c'est la base de votre confiance." #. type: Plain text -#: guix-git/doc/guix.texi:5238 +#: guix-git/doc/guix.texi:5256 msgid "If you're curious about the authentication mechanics, read on!" msgstr "Si vous êtes curieux·euse à propos des mécanismes d'authentification, lisez !" #. type: Plain text -#: guix-git/doc/guix.texi:5249 +#: guix-git/doc/guix.texi:5267 msgid "When running @command{guix pull}, Guix will first compile the definitions of every available package. This is an expensive operation for which substitutes (@pxref{Substitutes}) may be available. The following snippet in @file{channels.scm} will ensure that @command{guix pull} uses the latest commit with available substitutes for the package definitions: this is done by querying the continuous integration server at @url{https://ci.guix.gnu.org}." msgstr "Lorsque vous lancez @command{guix pull}, Guix compilera d'abord les définitions de tous les paquets disponibles. C'est une opération coûteuse pour laquelle des substituts (@pxref{Substitutes}) peuvent être disponibles. L'extrait de code suivant dans @file{channels.scm} s'assure que @command{guix pull} utilise le dernier commit pour lequel des substituts sont disponibles pour les définitions des paquets : pour cela, on demande au serveur d’intégration continue @url{https://ci.guix.gnu.org}." #. type: lisp -#: guix-git/doc/guix.texi:5252 +#: guix-git/doc/guix.texi:5270 #, no-wrap msgid "" "(use-modules (guix ci))\n" @@ -12465,7 +12542,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:5256 +#: guix-git/doc/guix.texi:5274 #, no-wrap msgid "" "(list (channel-with-substitutes-available\n" @@ -12477,75 +12554,75 @@ msgstr "" " \"https://ci.guix.gnu.org\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5263 +#: guix-git/doc/guix.texi:5281 msgid "Note that this does not mean that all the packages that you will install after running @command{guix pull} will have available substitutes. It only ensures that @command{guix pull} will not try to compile package definitions. This is particularly useful when using machines with limited resources." msgstr "Remarquez que cela ne signifie pas que tous les paquets que vous installerez après avoir lancé @command{guix pull} auront des substituts. Cela s'assure uniquement que @command{guix pull} n'essaiera pas de compiler les définitions des paquets. C'est particulièrement pratique si vous utilisez une machine avec des ressources limitées." #. type: cindex -#: guix-git/doc/guix.texi:5267 +#: guix-git/doc/guix.texi:5285 #, no-wrap msgid "personal packages (channels)" msgstr "paquets personnels (canaux)" #. type: cindex -#: guix-git/doc/guix.texi:5268 +#: guix-git/doc/guix.texi:5286 #, no-wrap msgid "channels, for personal packages" msgstr "canaux, pour des paquets personnels" #. type: Plain text -#: guix-git/doc/guix.texi:5276 +#: guix-git/doc/guix.texi:5294 msgid "Let's say you have a bunch of custom package variants or personal packages that you think would make little sense to contribute to the Guix project, but would like to have these packages transparently available to you at the command line. You would first write modules containing those package definitions (@pxref{Package Modules}), maintain them in a Git repository, and then you and anyone else can use it as an additional channel to get packages from. Neat, no?" msgstr "Disons que vous avez un ensemble de paquets personnels ou de variantes personnalisées dont vous pensez qu'il ne vaudrait pas le coup de contribuer au projet Guix, mais que vous voudriez pouvoir utiliser de manière transparente sur la ligne de commande : vous écririez d'abord des modules contenant ces définitions de paquets (@pxref{Package Modules}), en les maintenant dans un dépôt Git, puis vous ou n'importe qui d'autre pourrait l'utiliser comme un canal supplémentaire où trouver ces paquets. Sympa, non ?" #. type: quotation -#: guix-git/doc/guix.texi:5284 +#: guix-git/doc/guix.texi:5302 msgid "Before you, dear user, shout---``woow this is @emph{soooo coool}!''---and publish your personal channel to the world, we would like to share a few words of caution:" msgstr "Avant que vous, cher utilisateur, ne vous exclamiez « Oh mais c'est @emph{super génial} ! » et que vous ne publiez vos canaux personnels publiquement, nous voudrions vous donner quelques avertissements :" #. type: itemize -#: guix-git/doc/guix.texi:5292 +#: guix-git/doc/guix.texi:5310 msgid "Before publishing a channel, please consider contributing your package definitions to Guix proper (@pxref{Contributing}). Guix as a project is open to free software of all sorts, and packages in Guix proper are readily available to all Guix users and benefit from the project's quality assurance process." msgstr "Avant de publier un canal, envisagez de contribuer vos définitions de paquets dans Guix (@pxref{Contributing}). Guix en tant que projet est ouvert à tous les logiciels libres de toutes sortes, et les paquets dans Guix sont déjà disponibles à tous les utilisateurs de Guix et bénéficient des processus d'assurance qualité du projet." #. type: itemize -#: guix-git/doc/guix.texi:5301 +#: guix-git/doc/guix.texi:5319 msgid "When you maintain package definitions outside Guix, we, Guix developers, consider that @emph{the compatibility burden is on you}. Remember that package modules and package definitions are just Scheme code that uses various programming interfaces (APIs). We want to remain free to change these APIs to keep improving Guix, possibly in ways that break your channel. We never change APIs gratuitously, but we will @emph{not} commit to freezing APIs either." msgstr "Lorsque vous maintenez des définitions de paquets en dehors de Guix, nous, les développeur·euses de Guix, considérons que @emph{la charge de la compatibilité vous incombe}. Rappelez-vous que les modules de paquets et les définitions de paquets ne sont que du code Scheme qui utilise diverses interfaces de programmation (API). Nous souhaitons rester libres de changer ces API pour continuer à améliorer Guix, éventuellement d'une manière qui casse votre canal. Nous ne changeons jamais l'API gratuitement, mais nous ne nous engageons @emph{pas} à geler les API non plus." #. type: itemize -#: guix-git/doc/guix.texi:5305 +#: guix-git/doc/guix.texi:5323 msgid "Corollary: if you're using an external channel and that channel breaks, please @emph{report the issue to the channel authors}, not to the Guix project." msgstr "Corollaire : si vous utilisez un canal externe et que le canal est cassé, merci de @emph{rapporter le problème à l'auteur du canal}, pas au projet Guix." #. type: quotation -#: guix-git/doc/guix.texi:5312 +#: guix-git/doc/guix.texi:5330 msgid "You've been warned! Having said this, we believe external channels are a practical way to exert your freedom to augment Guix' package collection and to share your improvements, which are basic tenets of @uref{https://www.gnu.org/philosophy/free-sw.html, free software}. Please email us at @email{guix-devel@@gnu.org} if you'd like to discuss this." msgstr "Vous avez été prévenus ! Maintenant, nous pensons que des canaux externes sont une manière pratique d'exercer votre liberté pour augmenter la collection de paquets de Guix et de partager vos améliorations, qui sont les principes de bases du @uref{https://www.gnu.org/philosophy/free-sw.html, logiciel libre}. Contactez-nous par courriel sur @email{guix-devel@@gnu.org} si vous souhaitez discuter à ce propos." #. type: Plain text -#: guix-git/doc/guix.texi:5324 +#: guix-git/doc/guix.texi:5342 msgid "To create a channel, create a Git repository containing your own package modules and make it available. The repository can contain anything, but a useful channel will contain Guile modules that export packages. Once you start using a channel, Guix will behave as if the root directory of that channel's Git repository has been added to the Guile load path (@pxref{Load Paths,,, guile, GNU Guile Reference Manual}). For example, if your channel contains a file at @file{my-packages/my-tools.scm} that defines a Guile module, then the module will be available under the name @code{(my-packages my-tools)}, and you will be able to use it like any other module (@pxref{Modules,,, guile, GNU Guile Reference Manual})." msgstr "Pour créer un canal, créez un dépôt Git contenant vos propres modules de paquets et rendez-le disponible. Le dépôt peut contenir tout ce que vous voulez, mais un canal utile contiendra des modules Guile qui exportent des paquets. Une fois que vous avez démarré un canal, Guix se comportera comme si le répertoire de la racine du dépôt Git de ce canal était ajouté au chemin de chargement de Guile (@pxref{Load Paths,,, guile, GNU Guile Reference Manual}). Par exemple, si votre canal contient un fichier @file{mes-paquets/mes-outils.scm} qui définit un module Guile, le module sera disponible sous le nom de @code{(mes-paquets mes-outils)} et vous pourrez l'utiliser comme les autres modules (@pxref{Modules,,, guile, GNU Guile Reference Manual})." #. type: Plain text -#: guix-git/doc/guix.texi:5329 +#: guix-git/doc/guix.texi:5347 msgid "As a channel author, consider bundling authentication material with your channel so that users can authenticate it. @xref{Channel Authentication}, and @ref{Specifying Channel Authorizations}, for info on how to do it." msgstr "En tant qu'auteur.e d'un canal, envisagez de regrouper le nécessaire d'authentification avec votre canal afin que les utilisatrice·eur·s puissent l'authentifier. @xref{Channel Authentication}, et @ref{Specifying Channel Authorizations}, pour savoir comment les utiliser." #. type: cindex -#: guix-git/doc/guix.texi:5334 +#: guix-git/doc/guix.texi:5352 #, no-wrap msgid "subdirectory, channels" msgstr "sous-répertoire, canaux" #. type: Plain text -#: guix-git/doc/guix.texi:5338 +#: guix-git/doc/guix.texi:5356 msgid "As a channel author, you may want to keep your channel modules in a sub-directory. If your modules are in the sub-directory @file{guix}, you must add a meta-data file @file{.guix-channel} that contains:" msgstr "En tant qu'auteur.e d'un canal, vous voudriez garder vos modules de canal dans un sous-répertoire. Si vos modules sont dans le sous-répertoire @file{guix}, vous devez ajouter un fichier de métadonnées @file{.guix-channel} qui contient :" #. type: lisp -#: guix-git/doc/guix.texi:5343 +#: guix-git/doc/guix.texi:5361 #, no-wrap msgid "" "(channel\n" @@ -12557,29 +12634,29 @@ msgstr "" " (directory \"guix\"))\n" #. type: cindex -#: guix-git/doc/guix.texi:5348 +#: guix-git/doc/guix.texi:5366 #, no-wrap msgid "dependencies, channels" msgstr "dépendances, canaux" #. type: cindex -#: guix-git/doc/guix.texi:5349 +#: guix-git/doc/guix.texi:5367 #, no-wrap msgid "meta-data, channels" msgstr "métadonnées, canaux" #. type: Plain text -#: guix-git/doc/guix.texi:5354 +#: guix-git/doc/guix.texi:5372 msgid "Channel authors may decide to augment a package collection provided by other channels. They can declare their channel to be dependent on other channels in a meta-data file @file{.guix-channel}, which is to be placed in the root of the channel repository." msgstr "Les auteurs de canaux peuvent décider d'augmenter une collection de paquets fournie par d'autres canaux. Ils peuvent déclarer leur canal comme dépendant d'autres canaux dans le fichier de métadonnées @file{.guix-channel} qui doit être placé à la racine de dépôt du canal." #. type: Plain text -#: guix-git/doc/guix.texi:5356 +#: guix-git/doc/guix.texi:5374 msgid "The meta-data file should contain a simple S-expression like this:" msgstr "Le fichier de métadonnées devrait contenir une S-expression simple comme cela :" #. type: lisp -#: guix-git/doc/guix.texi:5364 +#: guix-git/doc/guix.texi:5382 #, no-wrap msgid "" "(channel\n" @@ -12599,7 +12676,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:5376 +#: guix-git/doc/guix.texi:5394 #, no-wrap msgid "" " ;; The 'introduction' bit below is optional: you would\n" @@ -12627,33 +12704,33 @@ msgstr "" " (branch \"testing\"))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5382 +#: guix-git/doc/guix.texi:5400 msgid "In the above example this channel is declared to depend on two other channels, which will both be fetched automatically. The modules provided by the channel will be compiled in an environment where the modules of all these declared channels are available." msgstr "Dans l'exemple ci-dessus, ce canal est déclaré comme dépendant de deux autres canaux, qui seront récupérés automatiquement. Les modules fournis par le canal seront compilés dans un environnement où les modules de tous les canaux déclarés sont disponibles." #. type: Plain text -#: guix-git/doc/guix.texi:5386 +#: guix-git/doc/guix.texi:5404 msgid "For the sake of reliability and maintainability, you should avoid dependencies on channels that you don't control, and you should aim to keep the number of dependencies to a minimum." msgstr "Pour des raisons de fiabilité et de maintenabilité, vous devriez éviter d'avoir des dépendances sur des canaux que vous ne maîtrisez pas et vous devriez ajouter le minimum de dépendances possible." #. type: cindex -#: guix-git/doc/guix.texi:5390 +#: guix-git/doc/guix.texi:5408 #, no-wrap msgid "channel authorizations" msgstr "les autorisations des canaux" #. type: anchor{#1} -#: guix-git/doc/guix.texi:5404 +#: guix-git/doc/guix.texi:5422 msgid "channel-authorizations" msgstr "channel-authorizations" #. type: Plain text -#: guix-git/doc/guix.texi:5404 +#: guix-git/doc/guix.texi:5422 msgid "As we saw above, Guix ensures the source code it pulls from channels comes from authorized developers. As a channel author, you need to specify the list of authorized developers in the @file{.guix-authorizations} file in the channel's Git repository. The authentication rule is simple: each commit must be signed by a key listed in the @file{.guix-authorizations} file of its parent commit(s)@footnote{Git commits form a @dfn{directed acyclic graph} (DAG). Each commit can have zero or more parents; ``regular'' commits have one parent and merge commits have two parent commits. Read @uref{https://eagain.net/articles/git-for-computer-scientists/, @i{Git for Computer Scientists}} for a great overview.} The @file{.guix-authorizations} file looks like this:" msgstr "Comme nous l'avons vu plus haut, Guix garantit le code source qu'il récupère depuis les canaux venant de développeur·euses autorisé·es. En tant qu'auteur·e, vous devez spécifiez la liste des développeur·euses autorisé·es dans le fichier @file{.guix-authorizations} dans le dépôt Git des canaux. Le rôle de l'authentification est simple : chaque commit doit être signé par une clé listée dans le fichier @file{.guix-authorizations} de son (ses) commit(s) parent(s)@footnote{Les commits de Git forment un @dfn{graphe acyclique orienté} (DAG en anglais). Chaque commit peut avoir zéro ou plusieurs parents ; les commits « usuels » ont un seul parent et les commits de fusion ont deux parents. Lisez @uref{https://eagain.net/articles/git-for-computer-scientists/, @i{Git for Computer Scientists}} pour une bonne vue d'ensemble.} Le fichier @file{.guix-authorizations} ressemble à ceci :" #. type: lisp -#: guix-git/doc/guix.texi:5407 +#: guix-git/doc/guix.texi:5425 #, no-wrap msgid "" ";; Example '.guix-authorizations' file.\n" @@ -12663,7 +12740,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:5410 +#: guix-git/doc/guix.texi:5428 #, no-wrap msgid "" "(authorizations\n" @@ -12675,7 +12752,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:5417 +#: guix-git/doc/guix.texi:5435 #, no-wrap msgid "" " ((\"AD17 A21E F8AE D8F1 CC02 DBD9 F8AE D8F1 765C 61E3\"\n" @@ -12693,33 +12770,33 @@ msgstr "" " (name \"charlie\"))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5421 +#: guix-git/doc/guix.texi:5439 msgid "Each fingerprint is followed by optional key/value pairs, as in the example above. Currently these key/value pairs are ignored." msgstr "Chaque empreinte digitale est suivie de paires de clés/valeurs facultatives, comme dans l'exemple ci-dessus. Actuellement, ces paires clé/valeur sont ignorées." #. type: Plain text -#: guix-git/doc/guix.texi:5426 +#: guix-git/doc/guix.texi:5444 msgid "This authentication rule creates a chicken-and-egg issue: how do we authenticate the first commit? Related to that: how do we deal with channels whose repository history contains unsigned commits and lack @file{.guix-authorizations}? And how do we fork existing channels?" msgstr "Ce rôle d'authentification crée un problème de poule et d’œuf : comment authentifions-nous le premier commit ? Par rapport à cela : comment traiter les canaux dont l'historique du dépôt contient des commits non signés et qui n'ont pas de@file{.guix-authorisations} ? Et comment bifurquer des canaux existants ?" #. type: cindex -#: guix-git/doc/guix.texi:5427 +#: guix-git/doc/guix.texi:5445 #, no-wrap msgid "channel introduction" msgstr "introduction des canaux" #. type: Plain text -#: guix-git/doc/guix.texi:5434 +#: guix-git/doc/guix.texi:5452 msgid "Channel introductions answer these questions by describing the first commit of a channel that should be authenticated. The first time a channel is fetched with @command{guix pull} or @command{guix time-machine}, the command looks up the introductory commit and verifies that it is signed by the specified OpenPGP key. From then on, it authenticates commits according to the rule above." msgstr "Les présentations de canaux répondent à ces questions en décrivant le premier commit d'un canal qui doit être authentifiée. La première fois qu'un canal est récupéré avec @command{guix pull} ou @command{guix time-machine}, la commande recherche le commit d'introduction et vérifie qu'il est signé par la clé OpenPGP spécifiée. Elle authentifie ensuite les commits selon la règle ci-dessus." #. type: Plain text -#: guix-git/doc/guix.texi:5441 +#: guix-git/doc/guix.texi:5459 msgid "Additionally, your channel must provide all the OpenPGP keys that were ever mentioned in @file{.guix-authorizations}, stored as @file{.key} files, which can be either binary or ``ASCII-armored''. By default, those @file{.key} files are searched for in the branch named @code{keyring} but you can specify a different branch name in @code{.guix-channel} like so:" msgstr "De plus, votre canal doit fournir toutes les clés OpenPGP qui ont été mentionnées dans les fichiers @file{.guix-authorizations}, stockés dans les fichiers @file{.key}, qui peuvent être soit binaires soit \"blindés ASCII\". Par défaut, ces fichiers @file{.key} sont recherchés dans la branche nommée @code{keyring}, mais vous pouvez spécifier un nom de branche différent dans @code{.guix-channel} de cette façon :" #. type: lisp -#: guix-git/doc/guix.texi:5446 +#: guix-git/doc/guix.texi:5464 #, no-wrap msgid "" "(channel\n" @@ -12731,59 +12808,59 @@ msgstr "" " (keyring-reference \"my-keyring-branch\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5450 +#: guix-git/doc/guix.texi:5468 msgid "To summarize, as the author of a channel, there are three things you have to do to allow users to authenticate your code:" msgstr "En résumé, en tant qu'auteur.e d'une chaîne, il y a trois choses que vous devez faire pour permettre aux utilisateur·rice·s d'authentifier votre code :" #. type: enumerate -#: guix-git/doc/guix.texi:5456 +#: guix-git/doc/guix.texi:5474 msgid "Export the OpenPGP keys of past and present committers with @command{gpg --export} and store them in @file{.key} files, by default in a branch named @code{keyring} (we recommend making it an @dfn{orphan branch})." msgstr "Exporter les clés OpenPGP des committers passés et présents avec @command{gpg -export} et les stocker dans des fichiers @file{.key}, par défaut dans une branche nommée @code{keyring} (nous recommandons d'en faire une @dfn{branche orpheline})." #. type: enumerate -#: guix-git/doc/guix.texi:5461 +#: guix-git/doc/guix.texi:5479 msgid "Introduce an initial @file{.guix-authorizations} in the channel's repository. Do that in a signed commit (@pxref{Commit Access}, for information on how to sign Git commits.)" msgstr "Introduisez un fichier @file{.guix-authorisations} initial dans le dépôt du canal. Faites cela dans un commit signé (@pxref{Commit Access}, pour savoir comment signer les commit Git)." #. type: enumerate -#: guix-git/doc/guix.texi:5467 +#: guix-git/doc/guix.texi:5485 msgid "Advertise the channel introduction, for instance on your channel's web page. The channel introduction, as we saw above, is the commit/key pair---i.e., the commit that introduced @file{.guix-authorizations}, and the fingerprint of the OpenPGP used to sign it." msgstr "Annoncez l'introduction du canal, par exemple sur la page web de votre canal. L'introduction du canal, comme nous l'avons vu ci-dessus, est la paire de clés commit---c'est-à-dire le commit qui a introduit @file{.guix-authorizations}, et l'empreinte digitale de l'OpenPGP utilisé pour le signer." #. type: Plain text -#: guix-git/doc/guix.texi:5472 +#: guix-git/doc/guix.texi:5490 msgid "Before pushing to your public Git repository, you can run @command{guix git-authenticate} to verify that you did sign all the commits you are about to push with an authorized key:" msgstr "Avant de pousser vers votre dépôt Git public, vous pouvez lancer @command{guix git-authenticate} pour vérifier que vous avez bien signé tous les commits que vous allez pousser avec une clé autorisée :" #. type: example -#: guix-git/doc/guix.texi:5475 +#: guix-git/doc/guix.texi:5493 #, no-wrap msgid "guix git authenticate @var{commit} @var{signer}\n" msgstr "guix git authenticate @var{commit} @var{signer}\n" #. type: Plain text -#: guix-git/doc/guix.texi:5480 +#: guix-git/doc/guix.texi:5498 msgid "where @var{commit} and @var{signer} are your channel introduction. @xref{Invoking guix git authenticate}, for details." msgstr "où @var{commit} et @var{signer} sont votre présentation de canal. @xref{Invoquer guix git authenticate}, pour plus de détails." #. type: Plain text -#: guix-git/doc/guix.texi:5487 +#: guix-git/doc/guix.texi:5505 msgid "Publishing a signed channel requires discipline: any mistake, such as an unsigned commit or a commit signed by an unauthorized key, will prevent users from pulling from your channel---well, that's the whole point of authentication! Pay attention to merges in particular: merge commits are considered authentic if and only if they are signed by a key present in the @file{.guix-authorizations} file of @emph{both} branches." msgstr "Publier un canal signé demande de la discipline : toute faute, comme un commit non signé ou un commit signée par une clé non autorisée, vont empêcher les utilisateur·rice·s de récupérer depuis votre canal---bref, c'est tout l'intérêt de l'authentification ! Faites particulièrement attention aux merges : les merge commits sont considérés comme authentiques si et seulement s'ils sont signés par une clé présente dans le fichier @file{.guix-authorizations} des branches @emph{both}." #. type: cindex -#: guix-git/doc/guix.texi:5491 +#: guix-git/doc/guix.texi:5509 #, no-wrap msgid "primary URL, channels" msgstr "principale URL, canaux" #. type: Plain text -#: guix-git/doc/guix.texi:5494 +#: guix-git/doc/guix.texi:5512 msgid "Channel authors can indicate the primary URL of their channel's Git repository in the @file{.guix-channel} file, like so:" msgstr "Les auteur.e.s de canaux peuvent indiquer l'URL principale de leur dépôt Git de canal dans le fichier @file{.guix-channel} comme ceci :" #. type: lisp -#: guix-git/doc/guix.texi:5499 +#: guix-git/doc/guix.texi:5517 #, no-wrap msgid "" "(channel\n" @@ -12795,38 +12872,38 @@ msgstr "" " (url \"https://example.org/guix.git\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5506 +#: guix-git/doc/guix.texi:5524 msgid "This allows @command{guix pull} to determine whether it is pulling code from a mirror of the channel; when that is the case, it warns the user that the mirror might be stale and displays the primary URL@. That way, users cannot be tricked into fetching code from a stale mirror that does not receive security updates." msgstr "Cela permet à @command{guix pull} de déterminer si elle récupère du code d'un miroir du canal ; lorsque c'est le cas, elle avertit l'utilisateur·rice que le miroir pourrait être périmé et affiche l'URL primaire. De cette façon, les utilisateur·rice·s ne peuvent pas être amené·e·s à extraire du code d'un miroir périmé qui ne reçoit pas les mises à jour de sécurité." #. type: Plain text -#: guix-git/doc/guix.texi:5510 +#: guix-git/doc/guix.texi:5528 msgid "This feature only makes sense for authenticated repositories, such as the official @code{guix} channel, for which @command{guix pull} ensures the code it fetches is authentic." msgstr "Cette fonctionnalité n'a de sens que pour les dépôts authentifiés, tels que le canal officiel @code{guix}, pour lequel @command{guix pull} garantit l'authenticité du code qu'il récupère." #. type: cindex -#: guix-git/doc/guix.texi:5514 +#: guix-git/doc/guix.texi:5532 #, no-wrap msgid "news, for channels" msgstr "nouveautés, canaux" #. type: Plain text -#: guix-git/doc/guix.texi:5518 +#: guix-git/doc/guix.texi:5536 msgid "Channel authors may occasionally want to communicate to their users information about important changes in the channel. You'd send them all an email, but that's not convenient." msgstr "Les auteur.e.s de canaux peuvent occasionnellement vouloir communiquer à leurs utilisateur·rice·s des informations au sujet de changements importants dans le canal. Vous pourriez leur envoyer un courriel, mais ce n'est pas pratique." #. type: Plain text -#: guix-git/doc/guix.texi:5523 +#: guix-git/doc/guix.texi:5541 msgid "Instead, channels can provide a @dfn{news file}; when the channel users run @command{guix pull}, that news file is automatically read and @command{guix pull --news} can display the announcements that correspond to the new commits that have been pulled, if any." msgstr "Au lieu de cela, les canaux peuvent fournir un @dfn{fichier de nouvelles} ; lorsque les utilisateur·rice·s du canal exécutent @command{guix pull}, ce fichier de nouvelles est automatiquement lu et @command{guix pull --news} peut afficher les annonces qui correspondent aux nouveaux commits qui ont été récupérés, le cas échéant." #. type: Plain text -#: guix-git/doc/guix.texi:5526 +#: guix-git/doc/guix.texi:5544 msgid "To do that, channel authors must first declare the name of the news file in their @file{.guix-channel} file:" msgstr "Pour cela, les auteur·e·s de canaux doivent en premier lieu déclarer le nom du fichier de nouvelles dans leur fichier @file{.guix-channel} :" #. type: lisp -#: guix-git/doc/guix.texi:5531 +#: guix-git/doc/guix.texi:5549 #, no-wrap msgid "" "(channel\n" @@ -12838,12 +12915,12 @@ msgstr "" " (news-file \"etc/news.txt\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5535 +#: guix-git/doc/guix.texi:5553 msgid "The news file itself, @file{etc/news.txt} in this example, must look something like this:" msgstr "Le fichier de nouvelles lui-même, @file{etc/news.txt} dans cet exemple, doit ressembler à quelque chose comme ceci :" #. type: lisp -#: guix-git/doc/guix.texi:5548 +#: guix-git/doc/guix.texi:5566 #, no-wrap msgid "" "(channel-news\n" @@ -12871,164 +12948,164 @@ msgstr "" " (body (en \"Don't miss the @@code@{hello@} package!\"))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5555 +#: guix-git/doc/guix.texi:5573 msgid "While the news file is using the Scheme syntax, avoid naming it with a @file{.scm} extension or else it will get picked up when building the channel and yield an error since it is not a valid module. Alternatively, you can move the channel module to a subdirectory and store the news file in another directory." msgstr "Tandis que le fichier de nouvelles utilise la syntaxe Scheme, évitez de le nommer avec une extension @file{.scm}, sinon il sera récupéré lors de la construction du canal et produira une erreur puisqu'il ne s'agit pas d'un module valide. Vous pouvez également déplacer le module du canal dans un sous-répertoire et stocker le fichier de nouvelles dans un autre répertoire." #. type: Plain text -#: guix-git/doc/guix.texi:5560 +#: guix-git/doc/guix.texi:5578 msgid "The file consists of a list of @dfn{news entries}. Each entry is associated with a commit or tag: it describes changes made in this commit, possibly in preceding commits as well. Users see entries only the first time they obtain the commit the entry refers to." msgstr "Le fichier consiste en une liste de @dfn{news entries}. Chaque entrée est associée à un commit ou un tag : elle décrit les changements faits dans ce commit, éventuellement dans les commits précédents comme il faut. Les utilisateur·rice·s ne voient les entrées que la première fois qu'il·elle·s obtiennent le commit auquel l'entrée se réfère." #. type: Plain text -#: guix-git/doc/guix.texi:5566 +#: guix-git/doc/guix.texi:5584 msgid "The @code{title} field should be a one-line summary while @code{body} can be arbitrarily long, and both can contain Texinfo markup (@pxref{Overview,,, texinfo, GNU Texinfo}). Both the title and body are a list of language tag/message tuples, which allows @command{guix pull} to display news in the language that corresponds to the user's locale." msgstr "Le @code{titre} doit être un résumé d'une ligne tandis que @code{body} peut être arbitrairement long, et les deux peuvent contenir des balises Texinfo (@pxref{Overview,,, texinfo, GNU Texinfo}). Le titre et le corps sont tous deux une liste de tuples de balises/messages de langue, ce qui permet à @command{guix pull} d'afficher les nouvelles dans la langue qui correspond à la locale de l'utilisateur." #. type: Plain text -#: guix-git/doc/guix.texi:5572 +#: guix-git/doc/guix.texi:5590 msgid "If you want to translate news using a gettext-based workflow, you can extract translatable strings with @command{xgettext} (@pxref{xgettext Invocation,,, gettext, GNU Gettext Utilities}). For example, assuming you write news entries in English first, the command below creates a PO file containing the strings to translate:" msgstr "Si vous souhaitez traduire des actualités en utilisant un déroulement basé sur gettext, vous pouvez extraire des chaînes traduisibles avec @command{xgettext} (@pxref{xgettext Invocation,,, gettext, GNU Gettext Utilities}). Par exemple, en supposant que vous écriviez d'abord les entrées de nouvelles en anglais, la commande ci-dessous crée un fichier PO contenant les chaînes à traduire :" #. type: example -#: guix-git/doc/guix.texi:5575 +#: guix-git/doc/guix.texi:5593 #, no-wrap msgid "xgettext -o news.po -l scheme -ken etc/news.txt\n" msgstr "xgettext -o news.po -l scheme -ken etc/news.txt\n" #. type: Plain text -#: guix-git/doc/guix.texi:5579 +#: guix-git/doc/guix.texi:5597 msgid "To sum up, yes, you could use your channel as a blog. But beware, this is @emph{not quite} what your users might expect." msgstr "Pour résumer, oui, vous pourriez utiliser votre chaîne comme un blog. Mais attention, ce n'est @emph{pas tout à fait} ce à quoi vos utilisateur·rice·s pourraient s'attendre." #. type: cindex -#: guix-git/doc/guix.texi:5584 +#: guix-git/doc/guix.texi:5602 #, no-wrap msgid "software development" msgstr "développement logiciel" #. type: Plain text -#: guix-git/doc/guix.texi:5588 +#: guix-git/doc/guix.texi:5606 msgid "If you are a software developer, Guix provides tools that you should find helpful---independently of the language you're developing in. This is what this chapter is about." msgstr "Si vous êtes développeur de logiciels, Guix fournit des outils que vous devriez trouver utiles — indépendamment du langage dans lequel vous développez. C'est ce dont parle ce chapitre." #. type: Plain text -#: guix-git/doc/guix.texi:5594 +#: guix-git/doc/guix.texi:5612 msgid "The @command{guix shell} command provides a convenient way to set up one-off software environments, be it for development purposes or to run a command without installing it in your profile. The @command{guix pack} command allows you to create @dfn{application bundles} that can be easily distributed to users who do not run Guix." msgstr "La commande @command{guix shell} permet de créer des environnements logiciels à usage unique, que ce soit pour le développement ou pour lancer une commande sans l'installer dans votre profil. La commande @command{guix pack} vous permet de créer des @dfn{lots applicatifs} qui peuvent facilement être distribués à des utilisateurs qui n'utilisent pas Guix." #. type: section -#: guix-git/doc/guix.texi:5604 +#: guix-git/doc/guix.texi:5622 #, no-wrap msgid "Invoking @command{guix shell}" msgstr "Invoquer @command{guix shell}" #. type: cindex -#: guix-git/doc/guix.texi:5606 +#: guix-git/doc/guix.texi:5624 #, no-wrap msgid "reproducible build environments" msgstr "environnements de construction reproductibles" #. type: cindex -#: guix-git/doc/guix.texi:5607 +#: guix-git/doc/guix.texi:5625 #, no-wrap msgid "development environments" msgstr "environnement de développement" #. type: command{#1} -#: guix-git/doc/guix.texi:5608 +#: guix-git/doc/guix.texi:5626 #, no-wrap msgid "guix environment" msgstr "guix environment" #. type: cindex -#: guix-git/doc/guix.texi:5609 +#: guix-git/doc/guix.texi:5627 #, no-wrap msgid "environment, package build environment" msgstr "environnement de construction de paquets" #. type: Plain text -#: guix-git/doc/guix.texi:5614 +#: guix-git/doc/guix.texi:5632 msgid "The purpose of @command{guix shell} is to make it easy to create one-off software environments, without changing one's profile. It is typically used to create development environments; it is also a convenient way to run applications without ``polluting'' your profile." msgstr "Le but de @command{guix shell} est de faciliter la création d'environnements logiciels à usage unique, sans changer votre profil. Vous l'utiliserez typiquement pour créer des environnement de développement ; c'est aussi une commande pratique pour lancer des applications sans « polluer » votre profil." #. type: quotation -#: guix-git/doc/guix.texi:5620 +#: guix-git/doc/guix.texi:5638 msgid "The @command{guix shell} command was recently introduced to supersede @command{guix environment} (@pxref{Invoking guix environment}). If you are familiar with @command{guix environment}, you will notice that it is similar but also---we hope!---more convenient." msgstr "La commande @command{guix shell} a été introduite récemment pour remplacer @command{guix environment} (@pxref{Invoking guix environment}). Si vous connaissez déjà @command{guix environment}, vous remarquerez qu'elle est similaire mais aussi (on l'espère) plus pratique." #. type: example -#: guix-git/doc/guix.texi:5626 +#: guix-git/doc/guix.texi:5644 #, no-wrap msgid "guix shell [@var{options}] [@var{package}@dots{}]\n" msgstr "guix shell [@var{options}] [@var{paquet}@dots{}]\n" #. type: Plain text -#: guix-git/doc/guix.texi:5631 +#: guix-git/doc/guix.texi:5649 msgid "The following example creates an environment containing Python and NumPy, building or downloading any missing package, and runs the @command{python3} command in that environment:" msgstr "L'exemple suivant crée un environnement contenant Python et NumPy, en construisant ou en téléchargeant les paquets manquants et lance la commande @command{python3} dans cet environnement :" #. type: example -#: guix-git/doc/guix.texi:5634 +#: guix-git/doc/guix.texi:5652 #, no-wrap msgid "guix shell python python-numpy -- python3\n" msgstr "guix shell python python-numpy -- python3\n" #. type: Plain text -#: guix-git/doc/guix.texi:5639 +#: guix-git/doc/guix.texi:5657 msgid "Development environments can be created as in the example below, which spawns an interactive shell containing all the dependencies and environment variables needed to work on Inkscape:" msgstr "Vous pouvez créer des environnements de développement comme dans l'exemple ci-dessous, qui ouvre un shell interactif contenant toutes les dépendance et les variables d'environnement requises pour travailler sur Inkscape :" #. type: example -#: guix-git/doc/guix.texi:5642 +#: guix-git/doc/guix.texi:5660 #, no-wrap msgid "guix shell --development inkscape\n" msgstr "guix shell --development inkscape\n" #. type: Plain text -#: guix-git/doc/guix.texi:5648 +#: guix-git/doc/guix.texi:5666 msgid "Exiting the shell places the user back in the original environment before @command{guix shell} was invoked. The next garbage collection (@pxref{Invoking guix gc}) may clean up packages that were installed in the environment and that are no longer used outside of it." msgstr "Sortir du shell vous replacera dans l'environnement de départ, avant d'avoir invoqué la commande @command{guix shell}. Au prochain lancement du ramasse-miettes (@pxref{Invoking guix gc}), les paquets installés dans l'environnement et qui ne sont plus utilisés en dehors seront possiblement supprimés." #. type: Plain text -#: guix-git/doc/guix.texi:5655 +#: guix-git/doc/guix.texi:5673 msgid "As an added convenience, when running from a directory that contains a @file{manifest.scm} or a @file{guix.scm} file (in this order), possibly in a parent directory, @command{guix shell} automatically loads the file---provided the directory is listed in @file{~/.config/guix/shell-authorized-directories}, and only for interactive use:" msgstr "Pour plus de praticité, lorsque vous lancez la commande depuis un répertoire qui contient un @file{manifest.scm} ou un @file{guix.scm} (dans cet ordre), ou dont un répertoire parent les contient, @command{guix shell} chargera automatiquement le fichier — du moment que le répertoire est indiqué dans @file{~/.config/guix/shell-authorized-directories} et seulement pour l'utilisation interactive :" #. type: example -#: guix-git/doc/guix.texi:5658 +#: guix-git/doc/guix.texi:5676 #, no-wrap msgid "guix shell\n" msgstr "guix shell\n" #. type: Plain text -#: guix-git/doc/guix.texi:5662 +#: guix-git/doc/guix.texi:5680 msgid "This provides an easy way to define, share, and enter development environments." msgstr "Cela permet de facilement définir, partager et entrer dans des environnements de développement." #. type: Plain text -#: guix-git/doc/guix.texi:5673 +#: guix-git/doc/guix.texi:5691 msgid "By default, the shell session or command runs in an @emph{augmented} environment, where the new packages are added to search path environment variables such as @code{PATH}. You can, instead, choose to create an @emph{isolated} environment containing nothing but the packages you asked for. Passing the @option{--pure} option clears environment variable definitions found in the parent environment@footnote{Be sure to use the @option{--check} option the first time you use @command{guix shell} interactively to make sure the shell does not undo the effect of @option{--pure}.}; passing @option{--container} goes one step further by spawning a @dfn{container} isolated from the rest of the system:" msgstr "Par défaut, la session shell ou la commande est lancée dans un environnement @emph{augmenté}, où les nouveaux paquets sont ajoutés aux variables d'environnement de recherche comme @code{PATH}. Vous pouvez à la place créer un environnement @emph{isolé} ne contenant rien d'autre que les paquets que vous avez demandé. Passez l'option @option{--pure} pour nettoyer les définitions des variables d'environnement qui se trouvent dans l'environnement parent@footnote{Assurez-vous d'utiliser l'option @option{--check} la première fois que vous utilisez @command{guix shell} de manière interactive pour vous assurer que le shell ne défait pas les effets de @option{--pure}.} ; en passant @option{--container} vous pouvez aller plus loin en démarrant un @dfn{conteneur} isolé du reste du système :" #. type: example -#: guix-git/doc/guix.texi:5676 +#: guix-git/doc/guix.texi:5694 #, no-wrap msgid "guix shell --container emacs gcc-toolchain\n" msgstr "guix shell --container emacs gcc-toolchain\n" #. type: Plain text -#: guix-git/doc/guix.texi:5684 +#: guix-git/doc/guix.texi:5702 msgid "The command above spawns an interactive shell in a container where nothing but @code{emacs}, @code{gcc-toolchain}, and their dependencies is available. The container lacks network access and shares no files other than the current working directory with the surrounding environment. This is useful to prevent access to system-wide resources such as @file{/usr/bin} on foreign distros." msgstr "La commande ci-dessus démarre un shell interactif dans un conteneur avec rien d'autre que @code{emacs}, @code{gcc-toolchain} et leurs dépendances. Le conteneur n'a pas d'accès au réseau et ne partage pas les fichiers autres que ceux du répertoire de travail avec son environnement. C'est utile pour éviter d'accéder à des ressources systèmes comme @file{/usr/bin} sur les distributions externes." #. type: Plain text -#: guix-git/doc/guix.texi:5691 +#: guix-git/doc/guix.texi:5709 msgid "This @option{--container} option can also prove useful if you wish to run a security-sensitive application, such as a web browser, in an isolated environment. For example, the command below launches Ungoogled-Chromium in an isolated environment, this time sharing network access with the host and preserving its @code{DISPLAY} environment variable, but without even sharing the current directory:" msgstr "Cette option @option{--container} peut aussi être utile si vous voulez lancer une application sensible en terme de sécurité, comme un navigateur web, dans un environnement isolé. Par exemple, la commande suivante lance Ungoogled-Chromium dans un environnement isolé, cette fois en partageant l'accès réseau de l'hôte et en préservant sa variable d'environnement @code{DISPLAY}, mais sans partager même le répertoire actuel :" #. type: example -#: guix-git/doc/guix.texi:5695 +#: guix-git/doc/guix.texi:5713 #, no-wrap msgid "" "guix shell --container --network --no-cwd ungoogled-chromium \\\n" @@ -13038,18 +13115,18 @@ msgstr "" " --preserve='^DISPLAY$' -- chromium\n" #. type: vindex -#: guix-git/doc/guix.texi:5697 guix-git/doc/guix.texi:6008 +#: guix-git/doc/guix.texi:5715 guix-git/doc/guix.texi:6045 #, no-wrap msgid "GUIX_ENVIRONMENT" msgstr "GUIX_ENVIRONMENT" #. type: Plain text -#: guix-git/doc/guix.texi:5703 +#: guix-git/doc/guix.texi:5721 msgid "@command{guix shell} defines the @env{GUIX_ENVIRONMENT} variable in the shell it spawns; its value is the file name of the profile of this environment. This allows users to, say, define a specific prompt for development environments in their @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):" msgstr "@command{guix shell} définie la variable @env{GUIX_ENVIRONMENT} dans le shell qu'il crée ; sa valeur est le nom de fichier du profil de cet environnement. Cela permet aux utilisatrice·eur·s, disons, de définir un prompt spécifique pour les environnement de développement dans leur @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}) :" #. type: example -#: guix-git/doc/guix.texi:5709 guix-git/doc/guix.texi:6020 +#: guix-git/doc/guix.texi:5727 guix-git/doc/guix.texi:6057 #, no-wrap msgid "" "if [ -n \"$GUIX_ENVIRONMENT\" ]\n" @@ -13063,213 +13140,204 @@ msgstr "" "fi\n" #. type: Plain text -#: guix-git/doc/guix.texi:5713 guix-git/doc/guix.texi:6024 +#: guix-git/doc/guix.texi:5731 guix-git/doc/guix.texi:6061 msgid "...@: or to browse the profile:" msgstr "…@: ou de naviguer dans le profil :" #. type: example -#: guix-git/doc/guix.texi:5716 guix-git/doc/guix.texi:6027 +#: guix-git/doc/guix.texi:5734 guix-git/doc/guix.texi:6064 #, no-wrap msgid "$ ls \"$GUIX_ENVIRONMENT/bin\"\n" msgstr "$ ls \"$GUIX_ENVIRONMENT/bin\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:5719 guix-git/doc/guix.texi:6103 +#: guix-git/doc/guix.texi:5737 guix-git/doc/guix.texi:6140 msgid "The available options are summarized below." msgstr "Les options disponibles sont résumées ci-dessous." #. type: item -#: guix-git/doc/guix.texi:5721 guix-git/doc/guix.texi:6105 -#: guix-git/doc/guix.texi:11546 +#: guix-git/doc/guix.texi:5739 guix-git/doc/guix.texi:6142 +#: guix-git/doc/guix.texi:11860 #, no-wrap msgid "--check" msgstr "--check" #. type: table -#: guix-git/doc/guix.texi:5726 +#: guix-git/doc/guix.texi:5744 msgid "Set up the environment and check whether the shell would clobber environment variables. It's a good idea to use this option the first time you run @command{guix shell} for an interactive session to make sure your setup is correct." msgstr "Met en place l'environnement et vérifie si le shell peut écraser les variables d'environnement. C'est une bonne idée d'utiliser cette option la première fois que vous lancez @command{guix shell} pour une session interactive pour vous assurer que votre configuration est correcte." #. type: table -#: guix-git/doc/guix.texi:5730 +#: guix-git/doc/guix.texi:5748 msgid "For example, if the shell modifies the @env{PATH} environment variable, report it since you would get a different environment than what you asked for." msgstr "Par exemple, si le shell modifie la variable d'environnement @env{PATH}, cela sera rapporté car vous auriez un environnement différent de celui que vous avez demandé." #. type: table -#: guix-git/doc/guix.texi:5738 +#: guix-git/doc/guix.texi:5756 msgid "Such problems usually indicate that the shell startup files are unexpectedly modifying those environment variables. For example, if you are using Bash, make sure that environment variables are set or modified in @file{~/.bash_profile} and @emph{not} in @file{~/.bashrc}---the former is sourced only by log-in shells. @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for details on Bash start-up files." msgstr "Ces problèmes indiquent en général que les fichiers de démarrage du shell modifient ces variables d'environnement de manière inattendue. Par exemple, si vous utilisez Bash, assurez-vous que les variables d'environnement sont définie ou modifiées dans @file{~/.bash_profile} @emph{et non} dans @file{~/.bashrc} --- ce premier est sourcé seulement par les shells de connexion. @xref{Bash Startup Files,,, bash, le manuel de référence de Bash} pour plus de détails sur les fichiers de démarrage de Bash." #. type: item -#: guix-git/doc/guix.texi:5739 +#: guix-git/doc/guix.texi:5757 #, no-wrap msgid "--development" msgstr "--development" #. type: table -#: guix-git/doc/guix.texi:5746 +#: guix-git/doc/guix.texi:5764 msgid "Cause @command{guix shell} to include in the environment the dependencies of the following package rather than the package itself. This can be combined with other packages. For instance, the command below starts an interactive shell containing the build-time dependencies of GNU@tie{}Guile, plus Autoconf, Automake, and Libtool:" msgstr "Fait en sorte que @command{guix shell} ajoute à l'environnement les dépendances du paquet suivant au lieu du paquet lui-même. Vous pouvez combiner cette option avec d'autres paquets. Par exemple, la commande suivante démarre un shell interactif contenant les dépendances à la construction de GNU@tie{}Guile, plus Autoconf, Automake et Libtool :" #. type: example -#: guix-git/doc/guix.texi:5749 +#: guix-git/doc/guix.texi:5767 #, no-wrap msgid "guix shell -D guile autoconf automake libtool\n" msgstr "guix shell -D guile autoconf automake libtool\n" #. type: item -#: guix-git/doc/guix.texi:5751 guix-git/doc/guix.texi:6126 -#: guix-git/doc/guix.texi:6607 guix-git/doc/guix.texi:11421 -#: guix-git/doc/guix.texi:12494 guix-git/doc/guix.texi:12845 -#: guix-git/doc/guix.texi:13442 guix-git/doc/guix.texi:35243 -#: guix-git/doc/guix.texi:37713 +#: guix-git/doc/guix.texi:5769 guix-git/doc/guix.texi:6163 +#: guix-git/doc/guix.texi:6650 guix-git/doc/guix.texi:11735 +#: guix-git/doc/guix.texi:12809 guix-git/doc/guix.texi:13201 +#: guix-git/doc/guix.texi:13799 guix-git/doc/guix.texi:35687 +#: guix-git/doc/guix.texi:38192 #, no-wrap msgid "--expression=@var{expr}" msgstr "--expression=@var{expr}" #. type: itemx -#: guix-git/doc/guix.texi:5752 guix-git/doc/guix.texi:6127 -#: guix-git/doc/guix.texi:6608 guix-git/doc/guix.texi:11422 -#: guix-git/doc/guix.texi:12495 guix-git/doc/guix.texi:12846 -#: guix-git/doc/guix.texi:13443 guix-git/doc/guix.texi:35244 -#: guix-git/doc/guix.texi:37714 +#: guix-git/doc/guix.texi:5770 guix-git/doc/guix.texi:6164 +#: guix-git/doc/guix.texi:6651 guix-git/doc/guix.texi:11736 +#: guix-git/doc/guix.texi:12810 guix-git/doc/guix.texi:13202 +#: guix-git/doc/guix.texi:13800 guix-git/doc/guix.texi:35688 +#: guix-git/doc/guix.texi:38193 #, no-wrap msgid "-e @var{expr}" msgstr "-e @var{expr}" #. type: table -#: guix-git/doc/guix.texi:5755 guix-git/doc/guix.texi:6130 +#: guix-git/doc/guix.texi:5773 guix-git/doc/guix.texi:6167 msgid "Create an environment for the package or list of packages that @var{expr} evaluates to." msgstr "Crée un environnement pour le paquet ou la liste de paquets en lesquels s'évalue @var{expr}." #. type: table -#: guix-git/doc/guix.texi:5757 guix-git/doc/guix.texi:6132 -#: guix-git/doc/guix.texi:12850 +#: guix-git/doc/guix.texi:5775 guix-git/doc/guix.texi:6169 +#: guix-git/doc/guix.texi:13206 msgid "For example, running:" msgstr "Par exemple, lancer :" #. type: example -#: guix-git/doc/guix.texi:5760 +#: guix-git/doc/guix.texi:5778 #, no-wrap msgid "guix shell -D -e '(@@ (gnu packages maths) petsc-openmpi)'\n" msgstr "guix shell -D -e '(@@ (gnu packages maths) petsc-openmpi)'\n" #. type: table -#: guix-git/doc/guix.texi:5764 guix-git/doc/guix.texi:6139 +#: guix-git/doc/guix.texi:5782 guix-git/doc/guix.texi:6176 msgid "starts a shell with the environment for this specific variant of the PETSc package." msgstr "démarre un shell avec l'environnement pour cette variante spécifique du paquet PETSc." #. type: table -#: guix-git/doc/guix.texi:5766 guix-git/doc/guix.texi:6141 +#: guix-git/doc/guix.texi:5784 guix-git/doc/guix.texi:6178 msgid "Running:" msgstr "Lancer :" #. type: example -#: guix-git/doc/guix.texi:5769 +#: guix-git/doc/guix.texi:5787 #, no-wrap msgid "guix shell -e '(@@ (gnu) %base-packages)'\n" msgstr "guix shell -e '(@@ (gnu) %base-packages)'\n" #. type: table -#: guix-git/doc/guix.texi:5772 guix-git/doc/guix.texi:6147 +#: guix-git/doc/guix.texi:5790 guix-git/doc/guix.texi:6184 msgid "starts a shell with all the base system packages available." msgstr "démarre un shell où tous les paquets de base du système sont disponibles." #. type: table -#: guix-git/doc/guix.texi:5775 guix-git/doc/guix.texi:6150 +#: guix-git/doc/guix.texi:5793 guix-git/doc/guix.texi:6187 msgid "The above commands only use the default output of the given packages. To select other outputs, two element tuples can be specified:" msgstr "Les commande au-dessus n'utilisent que les sorties par défaut des paquets donnés. Pour choisir d'autres sorties, on peut spécifier des pairs :" #. type: example -#: guix-git/doc/guix.texi:5778 +#: guix-git/doc/guix.texi:5796 #, no-wrap msgid "guix shell -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" msgstr "guix shell -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" #. type: item -#: guix-git/doc/guix.texi:5780 guix-git/doc/guix.texi:11395 +#: guix-git/doc/guix.texi:5798 guix-git/doc/guix.texi:11709 #, no-wrap msgid "--file=@var{file}" msgstr "--file=@var{fichier}" #. type: table -#: guix-git/doc/guix.texi:5784 +#: guix-git/doc/guix.texi:5802 msgid "Create an environment containing the package or list of packages that the code within @var{file} evaluates to." msgstr "Crée un environnement contenant le paquet ou la liste de paquets en lesquels @var{fichier} s'évalue." #. type: lisp -#: guix-git/doc/guix.texi:5790 guix-git/doc/guix.texi:6165 +#: guix-git/doc/guix.texi:5808 guix-git/doc/guix.texi:6202 #, no-wrap msgid "@verbatiminclude environment-gdb.scm\n" msgstr "@verbatiminclude environment-gdb.scm\n" #. type: table -#: guix-git/doc/guix.texi:5794 +#: guix-git/doc/guix.texi:5812 msgid "With the file above, you can enter a development environment for GDB by running:" msgstr "Avec le fichier ci-dessus, vous pouvez entrer un environnement de développement pour GDB en lançant :" #. type: example -#: guix-git/doc/guix.texi:5797 +#: guix-git/doc/guix.texi:5815 #, no-wrap msgid "guix shell -D -f gdb-devel.scm\n" msgstr "guix shell -D -f gdb-devel.scm\n" #. type: table -#: guix-git/doc/guix.texi:5804 guix-git/doc/guix.texi:6172 +#: guix-git/doc/guix.texi:5822 guix-git/doc/guix.texi:6209 msgid "Create an environment for the packages contained in the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "Crée un environnement pour les paquets contenus dans l'objet manifeste renvoyé par le code Scheme dans @var{fichier}. Vous pouvez répéter cette option plusieurs fois, auquel cas les manifestes sont concaténés." #. type: table -#: guix-git/doc/guix.texi:5808 guix-git/doc/guix.texi:6176 +#: guix-git/doc/guix.texi:5826 guix-git/doc/guix.texi:6213 msgid "This is similar to the same-named option in @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) and uses the same manifest files." msgstr "C'est similaire à l'option de même nom de @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) et utilise les même fichiers manifestes." -#. type: item -#: guix-git/doc/guix.texi:5809 -#, no-wrap -msgid "--rebuild-cache" -msgstr "--rebuild-cache" - -#. type: table -#: guix-git/doc/guix.texi:5814 -msgid "When using @option{--manifest}, @option{--file}, or when invoked without arguments, @command{guix shell} caches the environment so that subsequent uses are instantaneous. The cache is invalidated anytime the file is modified." -msgstr "Lorsque vous utilisez @option{--manifest}, @option{--file} ou que vous l'invoquez sans argument, @command{guix shell} met en cache l'environnement pour que les utilisations ultérieures soient instantanées. Le cache est invalidé si le fichier est modifié." - #. type: table -#: guix-git/doc/guix.texi:5819 -msgid "The @option{--rebuild-cache} forces the cached environment to be refreshed even if the file has not changed. This is useful if the @command{guix.scm} or @command{manifest.scm} has external dependencies, or if its behavior depends, say, on environment variables." -msgstr "L'option @option{--rebuild-cache} force l'environnement en cache à être rafraîchi même si le fichier n'a pas changé. C'est utile si @command{guix.scm} ou @command{manifest.scm} a des dépendances externes, ou si son comportement dépendant, disons, de variables d'environnements." +#: guix-git/doc/guix.texi:5832 guix-git/doc/guix.texi:6245 +#, fuzzy +#| msgid "You can also use @command{guix package} (@pxref{Invoking guix package}) to manage the profile by naming it explicitly:" +msgid "Create an environment containing the packages installed in @var{profile}. Use @command{guix package} (@pxref{Invoking guix package}) to create and manage profiles." +msgstr "Vous pouvez aussi utiliser @command{guix package} (@pxref{Invoquer guix package}) pour contrôler le profil en le nommant explicitement :" #. type: item -#: guix-git/doc/guix.texi:5820 guix-git/doc/guix.texi:6203 +#: guix-git/doc/guix.texi:5833 guix-git/doc/guix.texi:6246 #, no-wrap msgid "--pure" msgstr "--pure" #. type: table -#: guix-git/doc/guix.texi:5824 guix-git/doc/guix.texi:6207 +#: guix-git/doc/guix.texi:5837 guix-git/doc/guix.texi:6250 msgid "Unset existing environment variables when building the new environment, except those specified with @option{--preserve} (see below). This has the effect of creating an environment in which search paths only contain package inputs." msgstr "Réinitialisation des variables d'environnement existantes lors de la construction du nouvel environnement, sauf celles spécifiées avec l'option @option{--preserve}. (voir ci-dessous). Cela a pour effet de créer un environnement dans lequel les chemins de recherche ne contiennent que des entrées de paquets." #. type: item -#: guix-git/doc/guix.texi:5825 guix-git/doc/guix.texi:6208 +#: guix-git/doc/guix.texi:5838 guix-git/doc/guix.texi:6251 #, no-wrap msgid "--preserve=@var{regexp}" msgstr "--preserve=@var{regexp}" #. type: itemx -#: guix-git/doc/guix.texi:5826 guix-git/doc/guix.texi:6209 +#: guix-git/doc/guix.texi:5839 guix-git/doc/guix.texi:6252 #, no-wrap msgid "-E @var{regexp}" msgstr "-E @var{regexp}" #. type: table -#: guix-git/doc/guix.texi:5831 guix-git/doc/guix.texi:6214 +#: guix-git/doc/guix.texi:5844 guix-git/doc/guix.texi:6257 msgid "When used alongside @option{--pure}, preserve the environment variables matching @var{regexp}---in other words, put them on a ``white list'' of environment variables that must be preserved. This option can be repeated several times." msgstr "Lorsque vous utilisez @option{--pure}, préserver les variables d'environnement qui correspondent à @var{regexp} — en d'autres termes, cela les met en « liste blanche » de variables d'environnement qui doivent être préservées. Cette option peut être répétée plusieurs fois." #. type: example -#: guix-git/doc/guix.texi:5835 +#: guix-git/doc/guix.texi:5848 #, no-wrap msgid "" "guix shell --pure --preserve=^SLURM openmpi @dots{} \\\n" @@ -13279,116 +13347,116 @@ msgstr "" " -- mpirun @dots{}\n" #. type: table -#: guix-git/doc/guix.texi:5841 guix-git/doc/guix.texi:6224 +#: guix-git/doc/guix.texi:5854 guix-git/doc/guix.texi:6267 msgid "This example runs @command{mpirun} in a context where the only environment variables defined are @env{PATH}, environment variables whose name starts with @samp{SLURM}, as well as the usual ``precious'' variables (@env{HOME}, @env{USER}, etc.)." msgstr "Cet exemple exécute @command{mpirun} dans un contexte où les seules variables d'environnement définies sont @env{PATH}, les variables d'environnement dont le nom commence par @samp{SLURM}, ainsi que les variables « importantes » habituelles (@env{HOME}, @env{USER}, etc.)." #. type: item -#: guix-git/doc/guix.texi:5842 guix-git/doc/guix.texi:6225 +#: guix-git/doc/guix.texi:5855 guix-git/doc/guix.texi:6268 #, no-wrap msgid "--search-paths" msgstr "--search-paths" #. type: table -#: guix-git/doc/guix.texi:5845 guix-git/doc/guix.texi:6228 +#: guix-git/doc/guix.texi:5858 guix-git/doc/guix.texi:6271 msgid "Display the environment variable definitions that make up the environment." msgstr "Affiche les définitions des variables d'environnement qui composent l'environnement." #. type: table -#: guix-git/doc/guix.texi:5849 guix-git/doc/guix.texi:6232 +#: guix-git/doc/guix.texi:5862 guix-git/doc/guix.texi:6275 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}." msgstr "Essaye de construire pour @var{système} — p.@: ex.@: @code{i686-linux}." #. type: item -#: guix-git/doc/guix.texi:5850 guix-git/doc/guix.texi:6233 +#: guix-git/doc/guix.texi:5863 guix-git/doc/guix.texi:6276 #, no-wrap msgid "--container" msgstr "--container" #. type: itemx -#: guix-git/doc/guix.texi:5851 guix-git/doc/guix.texi:6234 +#: guix-git/doc/guix.texi:5864 guix-git/doc/guix.texi:6277 #, no-wrap msgid "-C" msgstr "-C" #. type: item -#: guix-git/doc/guix.texi:5852 guix-git/doc/guix.texi:6069 -#: guix-git/doc/guix.texi:6235 guix-git/doc/guix.texi:13998 -#: guix-git/doc/guix.texi:35211 +#: guix-git/doc/guix.texi:5865 guix-git/doc/guix.texi:6106 +#: guix-git/doc/guix.texi:6278 guix-git/doc/guix.texi:14355 +#: guix-git/doc/guix.texi:35655 #, no-wrap msgid "container" msgstr "conteneur" #. type: table -#: guix-git/doc/guix.texi:5858 guix-git/doc/guix.texi:6241 +#: guix-git/doc/guix.texi:5871 guix-git/doc/guix.texi:6284 msgid "Run @var{command} within an isolated container. The current working directory outside the container is mapped inside the container. Additionally, unless overridden with @option{--user}, a dummy home directory is created that matches the current user's home directory, and @file{/etc/passwd} is configured accordingly." msgstr "Lance @var{commande} dans un conteneur isolé. Le répertoire de travail actuel en dehors du conteneur est monté dans le conteneur. En plus, à moins de le changer avec @option{--user}, un répertoire personnel fictif est créé pour correspondre à celui de l'utilisateur·rice actuel·le et @file{/etc/passwd} est configuré en conséquence." #. type: table -#: guix-git/doc/guix.texi:5862 guix-git/doc/guix.texi:6245 +#: guix-git/doc/guix.texi:5875 guix-git/doc/guix.texi:6288 msgid "The spawned process runs as the current user outside the container. Inside the container, it has the same UID and GID as the current user, unless @option{--user} is passed (see below)." msgstr "Le processus de création s'exécute en tant qu'utilisateur·rice actuel·le à l'extérieur du conteneur. À l'intérieur du conteneur, il possède les mêmes UID et GID que l'utilisateur·rice actuel·le, sauf si l'option @option{--user} est passée (voir ci-dessous)." #. type: item -#: guix-git/doc/guix.texi:5863 guix-git/doc/guix.texi:6246 -#: guix-git/doc/guix.texi:35303 +#: guix-git/doc/guix.texi:5876 guix-git/doc/guix.texi:6289 +#: guix-git/doc/guix.texi:35747 #, no-wrap msgid "--network" msgstr "--network" #. type: table -#: guix-git/doc/guix.texi:5868 guix-git/doc/guix.texi:6251 +#: guix-git/doc/guix.texi:5881 guix-git/doc/guix.texi:6294 msgid "For containers, share the network namespace with the host system. Containers created without this flag only have access to the loopback device." msgstr "Pour les conteneurs, partage l'espace de nom du réseau avec le système hôte. Les conteneurs créés sans cette option n'ont accès qu'à l'interface de boucle locale." #. type: item -#: guix-git/doc/guix.texi:5869 guix-git/doc/guix.texi:6252 +#: guix-git/doc/guix.texi:5882 guix-git/doc/guix.texi:6295 #, no-wrap msgid "--link-profile" msgstr "--link-profile" #. type: itemx -#: guix-git/doc/guix.texi:5870 guix-git/doc/guix.texi:6253 +#: guix-git/doc/guix.texi:5883 guix-git/doc/guix.texi:6296 #, no-wrap msgid "-P" msgstr "-P" #. type: table -#: guix-git/doc/guix.texi:5878 +#: guix-git/doc/guix.texi:5891 msgid "For containers, link the environment profile to @file{~/.guix-profile} within the container and set @code{GUIX_ENVIRONMENT} to that. This is equivalent to making @file{~/.guix-profile} a symlink to the actual profile within the container. Linking will fail and abort the environment if the directory already exists, which will certainly be the case if @command{guix shell} was invoked in the user's home directory." msgstr "Pour les conteneurs, liez le profil d'environnement à @file{~/.guix-profile} à l'intérieur du conteneur et définissez @code{GUIX_ENVIRONNEMENT} à cet endroit. Cela équivaut à faire de @file{~/.guix-profile} un lien symbolique vers le profil réel à l'intérieur du conteneur. La liaison échouera et interrompra l'environnement si le répertoire existe déjà, ce qui sera certainement le cas si @command{guix shell} a été invoqué dans le répertoire personnel de l'utilisateur·rice." #. type: table -#: guix-git/doc/guix.texi:5884 guix-git/doc/guix.texi:6267 +#: guix-git/doc/guix.texi:5897 guix-git/doc/guix.texi:6310 msgid "Certain packages are configured to look in @file{~/.guix-profile} for configuration files and data;@footnote{For example, the @code{fontconfig} package inspects @file{~/.guix-profile/share/fonts} for additional fonts.} @option{--link-profile} allows these programs to behave as expected within the environment." msgstr "Certains paquets sont configurés pour chercher des fichiers de configuration et des données dans @file{~/.guix-profile} ; @footnote{Par exemple, le paquet @code{fontconfig} inspecte @file{~/.guix-profile/share/fonts} pour trouver des polices supplémentaires.} ; @option{--link-profile} permet à ces programmes de se comporter comme attendu dans l'environnement." #. type: item -#: guix-git/doc/guix.texi:5885 guix-git/doc/guix.texi:6268 -#: guix-git/doc/guix.texi:13575 +#: guix-git/doc/guix.texi:5898 guix-git/doc/guix.texi:6311 +#: guix-git/doc/guix.texi:13932 #, no-wrap msgid "--user=@var{user}" msgstr "--user=@var{utilisateur}" #. type: itemx -#: guix-git/doc/guix.texi:5886 guix-git/doc/guix.texi:6269 -#: guix-git/doc/guix.texi:13576 +#: guix-git/doc/guix.texi:5899 guix-git/doc/guix.texi:6312 +#: guix-git/doc/guix.texi:13933 #, no-wrap msgid "-u @var{user}" msgstr "-u @var{utilisateur}" #. type: table -#: guix-git/doc/guix.texi:5893 guix-git/doc/guix.texi:6276 +#: guix-git/doc/guix.texi:5906 guix-git/doc/guix.texi:6319 msgid "For containers, use the username @var{user} in place of the current user. The generated @file{/etc/passwd} entry within the container will contain the name @var{user}, the home directory will be @file{/home/@var{user}}, and no user GECOS data will be copied. Furthermore, the UID and GID inside the container are 1000. @var{user} need not exist on the system." msgstr "Pour les conteneurs, utilise le nom d'utilisateur @var{utilisateur} à la place de l'utilisateur actuel. L'entrée générée dans @file{/etc/passwd} dans le conteneur contiendra le nom @var{utilisateur} ; le répertoire personnel sera @file{/home/@var{utilisateur}} ; et aucune donnée GECOS ne sera copiée. En plus, l'UID et le GID dans le conteneur seront 1000. @var{user} n'a pas besoin d'exister sur le système." #. type: table -#: guix-git/doc/guix.texi:5898 guix-git/doc/guix.texi:6281 +#: guix-git/doc/guix.texi:5911 guix-git/doc/guix.texi:6324 msgid "Additionally, any shared or exposed path (see @option{--share} and @option{--expose} respectively) whose target is within the current user's home directory will be remapped relative to @file{/home/USER}; this includes the automatic mapping of the current working directory." msgstr "En plus, tous les chemins partagés ou exposés (voir @option{--share} et @option{--expose} respectivement) dont la cible est dans le répertoire personnel de l'utilisateur·rice seront remontés relativement à @file{/home/USER} ; cela comprend le montage automatique du répertoire de travail actuel." #. type: example -#: guix-git/doc/guix.texi:5905 +#: guix-git/doc/guix.texi:5918 #, no-wrap msgid "" "# will expose paths as /home/foo/wd, /home/foo/test, and /home/foo/target\n" @@ -13404,229 +13472,273 @@ msgstr "" " --expose=/tmp/target=$HOME/target\n" #. type: table -#: guix-git/doc/guix.texi:5910 guix-git/doc/guix.texi:6293 +#: guix-git/doc/guix.texi:5923 guix-git/doc/guix.texi:6336 msgid "While this will limit the leaking of user identity through home paths and each of the user fields, this is only one useful component of a broader privacy/anonymity solution---not one in and of itself." msgstr "Bien que cela limite la fuite de l'identité de l'utilisateur à travers le chemin du répertoire personnel et des champs de l'utilisateur, ce n'est qu'un composant utile pour une solution d'anonymisation ou de préservation de la vie privée — pas une solution en elle-même." #. type: item -#: guix-git/doc/guix.texi:5911 guix-git/doc/guix.texi:6294 +#: guix-git/doc/guix.texi:5924 guix-git/doc/guix.texi:6337 #, no-wrap msgid "--no-cwd" msgstr "--no-cwd" #. type: table -#: guix-git/doc/guix.texi:5918 guix-git/doc/guix.texi:6301 +#: guix-git/doc/guix.texi:5931 guix-git/doc/guix.texi:6344 msgid "For containers, the default behavior is to share the current working directory with the isolated container and immediately change to that directory within the container. If this is undesirable, @option{--no-cwd} will cause the current working directory to @emph{not} be automatically shared and will change to the user's home directory within the container instead. See also @option{--user}." msgstr "Pour les conteneurs, le comportement par défaut est de partager le répertoire de travail actuel avec le conteneur isolé et de passer immédiatement à ce répertoire à l'intérieur du conteneur. Si cela n'est pas souhaitable, @option{--no-cwd} fera en sorte que le répertoire de travail courant soit automatiquement partagé @emph{not} et passera au répertoire personnel de l'utilisateur·rice dans le conteneur à la place. Voir aussi @option{--user}." #. type: item -#: guix-git/doc/guix.texi:5919 guix-git/doc/guix.texi:6302 +#: guix-git/doc/guix.texi:5932 guix-git/doc/guix.texi:6345 #, no-wrap msgid "--expose=@var{source}[=@var{target}]" msgstr "--expose=@var{source}[=@var{cible}]" #. type: itemx -#: guix-git/doc/guix.texi:5920 guix-git/doc/guix.texi:6303 +#: guix-git/doc/guix.texi:5933 guix-git/doc/guix.texi:6346 #, no-wrap msgid "--share=@var{source}[=@var{target}]" msgstr "--share=@var{source}[=@var{cible}]" #. type: table -#: guix-git/doc/guix.texi:5926 guix-git/doc/guix.texi:6309 +#: guix-git/doc/guix.texi:5939 guix-git/doc/guix.texi:6352 msgid "For containers, @option{--expose} (resp. @option{--share}) exposes the file system @var{source} from the host system as the read-only (resp. writable) file system @var{target} within the container. If @var{target} is not specified, @var{source} is used as the target mount point in the container." msgstr "Pour les conteneurs, @option{--expose} (resp. @option{--share}) expose le système de fichiers @var{source} du système hôte comme un système de fichiers @var{target} en lecture seule (resp. en lecture-écriture) dans le conteneur. Si @var{target} n'est pas spécifiée, @var{source} est utilisé comme point de montage dans le conteneur." #. type: table -#: guix-git/doc/guix.texi:5930 guix-git/doc/guix.texi:6313 +#: guix-git/doc/guix.texi:5943 guix-git/doc/guix.texi:6356 msgid "The example below spawns a Guile REPL in a container in which the user's home directory is accessible read-only via the @file{/exchange} directory:" msgstr "L'exemple ci-dessous crée un REPL Guile dans un conteneur dans lequel le répertoire personnel de l'utilisateur est accessible en lecture-seule via le répertoire @file{/exchange} :" #. type: example -#: guix-git/doc/guix.texi:5933 +#: guix-git/doc/guix.texi:5946 #, no-wrap msgid "guix shell --container --expose=$HOME=/exchange guile -- guile\n" msgstr "guix shell --container --expose=$HOME=/exchange guile -- guile\n" #. type: item -#: guix-git/doc/guix.texi:5935 guix-git/doc/guix.texi:6110 -#: guix-git/doc/guix.texi:6675 guix-git/doc/guix.texi:11575 -#: guix-git/doc/guix.texi:35308 +#: guix-git/doc/guix.texi:5948 +#, no-wrap +msgid "--rebuild-cache" +msgstr "--rebuild-cache" + +#. type: cindex +#: guix-git/doc/guix.texi:5949 +#, no-wrap +msgid "caching, of profiles" +msgstr "cache, des profils" + +#. type: cindex +#: guix-git/doc/guix.texi:5950 +#, no-wrap +msgid "caching, in @command{guix shell}" +msgstr "cache, dans @command{guix shell}" + +#. type: table +#: guix-git/doc/guix.texi:5956 +msgid "In most cases, @command{guix shell} caches the environment so that subsequent uses are instantaneous. Least-recently used cache entries are periodically removed. The cache is also invalidated, when using @option{--file} or @option{--manifest}, anytime the corresponding file is modified." +msgstr "La plupart du temps, @command{guix shell} met en cache l'environnement pour que les utilisations suivantes soient instantanées. Les entrées du cache utilisées le moins récemment sont régulièrement supprimées. Le cache est aussi invalidé lorsque vous utilisez @option{--file} ou @option{--manifest} à chaque fois que le fichier correspondant est modifié." + +#. type: table +#: guix-git/doc/guix.texi:5962 +#, fuzzy +#| msgid "The @option{--rebuild-cache} forces the cached environment to be refreshed even if the file has not changed. This is useful if the @command{guix.scm} or @command{manifest.scm} has external dependencies, or if its behavior depends, say, on environment variables." +msgid "The @option{--rebuild-cache} forces the cached environment to be refreshed. This is useful when using @option{--file} or @option{--manifest} and the @command{guix.scm} or @command{manifest.scm} file has external dependencies, or if its behavior depends, say, on environment variables." +msgstr "L'option @option{--rebuild-cache} force l'environnement en cache à être rafraîchi même si le fichier n'a pas changé. C'est utile si @command{guix.scm} ou @command{manifest.scm} a des dépendances externes, ou si son comportement dépendant, disons, de variables d'environnements." + +#. type: item +#: guix-git/doc/guix.texi:5963 guix-git/doc/guix.texi:6147 +#: guix-git/doc/guix.texi:6718 guix-git/doc/guix.texi:11889 +#: guix-git/doc/guix.texi:35752 #, no-wrap msgid "--root=@var{file}" msgstr "--root=@var{fichier}" #. type: itemx -#: guix-git/doc/guix.texi:5936 guix-git/doc/guix.texi:6111 -#: guix-git/doc/guix.texi:6676 guix-git/doc/guix.texi:11576 -#: guix-git/doc/guix.texi:35309 +#: guix-git/doc/guix.texi:5964 guix-git/doc/guix.texi:6148 +#: guix-git/doc/guix.texi:6719 guix-git/doc/guix.texi:11890 +#: guix-git/doc/guix.texi:35753 #, no-wrap msgid "-r @var{file}" msgstr "-r @var{fichier}" #. type: cindex -#: guix-git/doc/guix.texi:5937 guix-git/doc/guix.texi:6112 +#: guix-git/doc/guix.texi:5965 guix-git/doc/guix.texi:6149 #, no-wrap msgid "persistent environment" msgstr "environnement persistent" #. type: cindex -#: guix-git/doc/guix.texi:5938 guix-git/doc/guix.texi:6113 +#: guix-git/doc/guix.texi:5966 guix-git/doc/guix.texi:6150 #, no-wrap msgid "garbage collector root, for environments" msgstr "racine du ramasse-miettes, pour les environnements" #. type: table -#: guix-git/doc/guix.texi:5941 guix-git/doc/guix.texi:6116 +#: guix-git/doc/guix.texi:5969 guix-git/doc/guix.texi:6153 msgid "Make @var{file} a symlink to the profile for this environment, and register it as a garbage collector root." msgstr "Fait de @var{fichier} un lien symbolique vers le profil de cet environnement, et l'enregistre comme une racine du ramasse-miettes." #. type: table -#: guix-git/doc/guix.texi:5944 guix-git/doc/guix.texi:6119 +#: guix-git/doc/guix.texi:5972 guix-git/doc/guix.texi:6156 msgid "This is useful if you want to protect your environment from garbage collection, to make it ``persistent''." msgstr "C'est utile si vous souhaitez protéger votre environnement du ramasse-miettes, pour le rendre « persistent »." #. type: table -#: guix-git/doc/guix.texi:5950 -msgid "When this option is omitted, the environment is protected from garbage collection only for the duration of the @command{guix shell} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages. @xref{Invoking guix gc}, for more on GC roots." +#: guix-git/doc/guix.texi:5978 +msgid "When this option is omitted, @command{guix shell} caches profiles so that subsequent uses of the same environment are instantaneous---this is comparable to using @option{--root} except that @command{guix shell} takes care of periodically removing the least-recently used garbage collector roots." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:5985 +#, fuzzy +#| msgid "When this option is omitted, the environment is protected from garbage collection only for the duration of the @command{guix shell} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages. @xref{Invoking guix gc}, for more on GC roots." +msgid "In some cases, @command{guix shell} does not cache profiles---e.g., if transformation options such as @option{--with-latest} are used. In those cases, the environment is protected from garbage collection only for the duration of the @command{guix shell} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages." msgstr "Lorsque cette option est omise, l'environnement n'est protégé du ramasse-miettes que le temps de la session @command{guix shell}. Cela signifie que la prochaine fois que vous créerez le même environnement, vous pourriez avoir à reconstruire ou télécharger des paquets. @xref{Invoking guix gc}, pour plus d'informations sur les racines du GC." +#. type: table +#: guix-git/doc/guix.texi:5987 +#, fuzzy +#| msgid "@xref{Invoking guix pull}, for more information." +msgid "@xref{Invoking guix gc}, for more on GC roots." +msgstr "@xref{Invoking guix pull}, pour plus d'informations." + #. type: Plain text -#: guix-git/doc/guix.texi:5955 +#: guix-git/doc/guix.texi:5992 msgid "@command{guix shell} also supports all of the common build options that @command{guix build} supports (@pxref{Common Build Options}) as well as package transformation options (@pxref{Package Transformation Options})." msgstr "En plus, @command{guix shell} prend en charge toutes les options de construction communes prises en charge par @command{guix build} (@pxref{Common Build Options}) et toutes les options de transformation de paquets (@pxref{Package Transformation Options})." #. type: section -#: guix-git/doc/guix.texi:5957 +#: guix-git/doc/guix.texi:5994 #, no-wrap msgid "Invoking @command{guix environment}" msgstr "Invoquer @command{guix environment}" #. type: Plain text -#: guix-git/doc/guix.texi:5961 +#: guix-git/doc/guix.texi:5998 msgid "The purpose of @command{guix environment} is to assist in creating development environments." msgstr "Le but de @command{guix environment} est de vous aider à créer des environnements de développement." #. type: quotation -#: guix-git/doc/guix.texi:5962 +#: guix-git/doc/guix.texi:5999 #, no-wrap msgid "Deprecation warning" msgstr "Avertissement d’obsolescence" #. type: quotation -#: guix-git/doc/guix.texi:5966 +#: guix-git/doc/guix.texi:6003 msgid "The @command{guix environment} command is deprecated in favor of @command{guix shell}, which performs similar functions but is more convenient to use. @xref{Invoking guix shell}." msgstr "La commande @command{guix environment} est obsolète et remplacée par @command{guix shell}, qui effectue les même tâches mais est plus pratique à utiliser. @xref{Invoking guix shell}." #. type: quotation -#: guix-git/doc/guix.texi:5971 +#: guix-git/doc/guix.texi:6008 msgid "Being deprecated, @command{guix environment} is slated for eventual removal, but the Guix project is committed to keeping it until May 1st, 2023. Please get in touch with us at @email{guix-devel@@gnu.org} if you would like to discuss it." msgstr "Étant obsolète, @command{guix environment} sera supprimée à un moment, mais le projet Guix s'engage à la garder jusqu'au premier mai 2023. Contactez-nous sur @email{guix-devel@@gnu.org} si vous voulez en parler." #. type: example -#: guix-git/doc/guix.texi:5977 +#: guix-git/doc/guix.texi:6014 #, no-wrap msgid "guix environment @var{options} @var{package}@dots{}\n" msgstr "guix environment @var{options} @var{paquet}@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:5981 +#: guix-git/doc/guix.texi:6018 msgid "The following example spawns a new shell set up for the development of GNU@tie{}Guile:" msgstr "L'exemple suivant crée un nouveau shell préparé pour le développement de GNU@tie{}Guile :" #. type: example -#: guix-git/doc/guix.texi:5984 +#: guix-git/doc/guix.texi:6021 #, no-wrap msgid "guix environment guile\n" msgstr "guix environment guile\n" #. type: Plain text -#: guix-git/doc/guix.texi:6001 +#: guix-git/doc/guix.texi:6038 msgid "If the needed dependencies are not built yet, @command{guix environment} automatically builds them. The environment of the new shell is an augmented version of the environment that @command{guix environment} was run in. It contains the necessary search paths for building the given package added to the existing environment variables. To create a ``pure'' environment, in which the original environment variables have been unset, use the @option{--pure} option@footnote{Users sometimes wrongfully augment environment variables such as @env{PATH} in their @file{~/.bashrc} file. As a consequence, when @command{guix environment} launches it, Bash may read @file{~/.bashrc}, thereby introducing ``impurities'' in these environment variables. It is an error to define such environment variables in @file{.bashrc}; instead, they should be defined in @file{.bash_profile}, which is sourced only by log-in shells. @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for details on Bash start-up files.}." msgstr "Si les dépendances requises ne sont pas déjà construites, @command{guix environment} les construit automatiquement. L'environnement du nouveau shell est une version améliorée de l'environnement dans lequel @command{guix environment} a été lancé. Il contient les chemins de recherche nécessaires à la construction du paquet donné en plus des variables d'environnement existantes. Pour créer un environnement « pur », dans lequel les variables d'environnement de départ ont été nettoyées, utilisez l'option @option{--pure}@footnote{Les utilisatrice·eur·s ajoutent parfois à tort des valeurs supplémentaires dans les variables comme @env{PATH} dans leur @file{~/.bashrc}. En conséquence, lorsque @command{guix environment} le lance, Bash peut lire @file{~/.bashrc}, ce qui produit des « impuretés » dans ces variables d'environnement. C'est une erreur de définir ces variables d'environnement dans @file{.bashrc} ; à la place, elles devraient être définie dans @file{.bash_profile}, qui est sourcé uniquement par les shells de connexion. @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, pour des détails sur les fichiers de démarrage de Bash.}." #. type: Plain text -#: guix-git/doc/guix.texi:6007 +#: guix-git/doc/guix.texi:6044 msgid "Exiting from a Guix environment is the same as exiting from the shell, and will place the user back in the old environment before @command{guix environment} was invoked. The next garbage collection (@pxref{Invoking guix gc}) will clean up packages that were installed from within the environment and are no longer used outside of it." msgstr "Sortir d'un environnement Guix est comme sortir du shell, et cela vous replacera dans l'ancien environnement avant d'avoir invoqué la commande @command{guix environment}. Au prochain lancement du ramasse-miettes (@pxref{Invoking guix gc}), les paquets installés pour l'environnement seront supprimés et ne seront plus disponibles en dehors de celui-ci." #. type: Plain text -#: guix-git/doc/guix.texi:6014 +#: guix-git/doc/guix.texi:6051 msgid "@command{guix environment} defines the @env{GUIX_ENVIRONMENT} variable in the shell it spawns; its value is the file name of the profile of this environment. This allows users to, say, define a specific prompt for development environments in their @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):" msgstr "@command{guix environment} définie la variable @env{GUIX_ENVIRONMENT} dans le shell qu'il crée ; sa valeur est le nom de fichier du profil de cet environnement. Cela permet aux utilisatrice·eur·s, disons, de définir un prompt spécifique pour les environnement de développement dans leur @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}) :" #. type: Plain text -#: guix-git/doc/guix.texi:6033 +#: guix-git/doc/guix.texi:6070 msgid "Additionally, more than one package may be specified, in which case the union of the inputs for the given packages are used. For example, the command below spawns a shell where all of the dependencies of both Guile and Emacs are available:" msgstr "De surcroît, plus d'un paquet peut être spécifié, auquel cas l'union des entrées des paquets données est utilisée. Par exemple, la commande ci-dessous crée un shell où toutes les dépendances de Guile et Emacs sont disponibles :" #. type: example -#: guix-git/doc/guix.texi:6036 +#: guix-git/doc/guix.texi:6073 #, no-wrap msgid "guix environment guile emacs\n" msgstr "guix environment guile emacs\n" #. type: Plain text -#: guix-git/doc/guix.texi:6041 +#: guix-git/doc/guix.texi:6078 msgid "Sometimes an interactive shell session is not desired. An arbitrary command may be invoked by placing the @code{--} token to separate the command from the rest of the arguments:" msgstr "Parfois, une session shell interactive est inutile. On peut invoquer une commande arbitraire en plaçant le jeton @code{--} pour séparer la commande du reste des arguments :" #. type: example -#: guix-git/doc/guix.texi:6044 +#: guix-git/doc/guix.texi:6081 #, no-wrap msgid "guix environment guile -- make -j4\n" msgstr "guix environment guile -- make -j4\n" #. type: Plain text -#: guix-git/doc/guix.texi:6050 +#: guix-git/doc/guix.texi:6087 msgid "In other situations, it is more convenient to specify the list of packages needed in the environment. For example, the following command runs @command{python} from an environment containing Python@tie{}3 and NumPy:" msgstr "Dans d'autres situations, il est plus pratique de spécifier la liste des paquets requis dans l'environnement. Par exemple, la commande suivante lance @command{python} dans un environnement contenant Python@tie{}3 et NumPy :" #. type: example -#: guix-git/doc/guix.texi:6053 +#: guix-git/doc/guix.texi:6090 #, no-wrap msgid "guix environment --ad-hoc python-numpy python -- python3\n" msgstr "guix environment --ad-hoc python-numpy python -- python3\n" #. type: Plain text -#: guix-git/doc/guix.texi:6064 +#: guix-git/doc/guix.texi:6101 msgid "Furthermore, one might want the dependencies of a package and also some additional packages that are not build-time or runtime dependencies, but are useful when developing nonetheless. Because of this, the @option{--ad-hoc} flag is positional. Packages appearing before @option{--ad-hoc} are interpreted as packages whose dependencies will be added to the environment. Packages appearing after are interpreted as packages that will be added to the environment directly. For example, the following command creates a Guix development environment that additionally includes Git and strace:" msgstr "En plus, on peut vouloir les dépendance d'un paquet et aussi des paquets supplémentaires qui ne sont pas des dépendances à l'exécution ou à la construction, mais qui sont utiles au développement tout de même. À cause de cela, le tag @option{--ad-hoc} est positionnel. Les paquets qui apparaissent avant @option{--ad-hoc} sont interprétés comme les paquets dont les dépendances seront ajoutées à l'environnement. Les paquets qui apparaissent après @option{--ad-hoc} sont interprétés comme les paquets à ajouter à l'environnement directement. Par exemple, la commande suivante crée un environnement de développement pour Guix avec les paquets Git et strace en plus :" #. type: example -#: guix-git/doc/guix.texi:6067 +#: guix-git/doc/guix.texi:6104 #, no-wrap msgid "guix environment --pure guix --ad-hoc git strace\n" msgstr "guix environment --pure guix --ad-hoc git strace\n" #. type: Plain text -#: guix-git/doc/guix.texi:6077 +#: guix-git/doc/guix.texi:6114 msgid "Sometimes it is desirable to isolate the environment as much as possible, for maximal purity and reproducibility. In particular, when using Guix on a host distro that is not Guix System, it is desirable to prevent access to @file{/usr/bin} and other system-wide resources from the development environment. For example, the following command spawns a Guile REPL in a ``container'' where only the store and the current working directory are mounted:" msgstr "Parfois il est souhaitable d'isoler l'environnement le plus possible, pour une pureté et une reproductibilité maximale. En particulier, lorsque vous utilisez Guix sur une distribution hôte qui n'est pas le système Guix, il est souhaitable d'éviter l'accès à @file{/usr/bin} et d'autres ressources du système depuis les environnements de développement. Par exemple, la commande suivante crée un REPL Guile dans un « conteneur » où seuls le dépôt et le répertoire de travail actuel sont montés :" #. type: example -#: guix-git/doc/guix.texi:6080 +#: guix-git/doc/guix.texi:6117 #, no-wrap msgid "guix environment --ad-hoc --container guile -- guile\n" msgstr "guix environment --ad-hoc --container guile -- guile\n" #. type: quotation -#: guix-git/doc/guix.texi:6084 +#: guix-git/doc/guix.texi:6121 msgid "The @option{--container} option requires Linux-libre 3.19 or newer." msgstr "L'option @option{--container} requiert Linux-libre 3.19 ou supérieur." #. type: cindex -#: guix-git/doc/guix.texi:6086 +#: guix-git/doc/guix.texi:6123 #, no-wrap msgid "certificates" msgstr "certificats" #. type: Plain text -#: guix-git/doc/guix.texi:6093 +#: guix-git/doc/guix.texi:6130 msgid "Another typical use case for containers is to run security-sensitive applications such as a web browser. To run Eolie, we must expose and share some files and directories; we include @code{nss-certs} and expose @file{/etc/ssl/certs/} for HTTPS authentication; finally we preserve the @env{DISPLAY} environment variable since containerized graphical applications won't display without it." msgstr "Un autre cas d'usage typique pour les conteneurs est de lancer des applications sensibles à la sécurité, comme un navigateur web. Pour faire fonctionner Eolie, nous devons exposer et partager certains fichiers et répertoires ; nous incluons @code{nss-certs} et exposons @file{/etc/ssl/certs/} pour l'authentification HTTPS ; enfin, nous préservons la variable d'environnement @env{DISPLAY} puisque les applications graphiques conteneurisées ne s'afficheront pas sans elle." #. type: example -#: guix-git/doc/guix.texi:6100 +#: guix-git/doc/guix.texi:6137 #, no-wrap msgid "" "guix environment --preserve='^DISPLAY$' --container --network \\\n" @@ -13642,89 +13754,89 @@ msgstr "" " --ad-hoc eolie nss-certs dbus -- eolie\n" #. type: table -#: guix-git/doc/guix.texi:6109 +#: guix-git/doc/guix.texi:6146 msgid "Set up the environment and check whether the shell would clobber environment variables. @xref{Invoking guix shell, @option{--check}}, for more info." msgstr "Configure l'environnement et vérifie si le shell écraserait les variables d'environnement. @xref{Invoking guix shell, @option{--check}}, pour plus d'informations." #. type: table -#: guix-git/doc/guix.texi:6125 +#: guix-git/doc/guix.texi:6162 msgid "When this option is omitted, the environment is protected from garbage collection only for the duration of the @command{guix environment} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages. @xref{Invoking guix gc}, for more on GC roots." msgstr "Lorsque cette option est omise, l'environnement n'est protégé du ramasse-miettes que le temps de la session @command{guix environment}. Cela signifie que la prochaine fois que vous créerez le même environnement, vous pourriez avoir à reconstruire ou télécharger des paquets. @xref{Invoking guix gc}, pour plus d'informations sur les racines du GC." #. type: example -#: guix-git/doc/guix.texi:6135 +#: guix-git/doc/guix.texi:6172 #, no-wrap msgid "guix environment -e '(@@ (gnu packages maths) petsc-openmpi)'\n" msgstr "guix environment -e '(@@ (gnu packages maths) petsc-openmpi)'\n" #. type: example -#: guix-git/doc/guix.texi:6144 +#: guix-git/doc/guix.texi:6181 #, no-wrap msgid "guix environment --ad-hoc -e '(@@ (gnu) %base-packages)'\n" msgstr "guix environment --ad-hoc -e '(@@ (gnu) %base-packages)'\n" #. type: example -#: guix-git/doc/guix.texi:6153 +#: guix-git/doc/guix.texi:6190 #, no-wrap msgid "guix environment --ad-hoc -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" msgstr "guix environment --ad-hoc -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" #. type: item -#: guix-git/doc/guix.texi:6155 +#: guix-git/doc/guix.texi:6192 #, no-wrap msgid "--load=@var{file}" msgstr "--load=@var{fichier}" #. type: itemx -#: guix-git/doc/guix.texi:6156 +#: guix-git/doc/guix.texi:6193 #, no-wrap msgid "-l @var{file}" msgstr "-l @var{fichier}" #. type: table -#: guix-git/doc/guix.texi:6159 +#: guix-git/doc/guix.texi:6196 msgid "Create an environment for the package or list of packages that the code within @var{file} evaluates to." msgstr "Crée un environnement pour le paquet ou la liste de paquets en lesquels @var{fichier} s'évalue." #. type: item -#: guix-git/doc/guix.texi:6177 +#: guix-git/doc/guix.texi:6214 #, no-wrap msgid "--ad-hoc" msgstr "--ad-hoc" #. type: table -#: guix-git/doc/guix.texi:6182 +#: guix-git/doc/guix.texi:6219 msgid "Include all specified packages in the resulting environment, as if an @i{ad hoc} package were defined with them as inputs. This option is useful for quickly creating an environment without having to write a package expression to contain the desired inputs." msgstr "Inclut tous les paquets spécifiés dans l'environnement qui en résulte, comme si un paquet @i{ad hoc} était spécifié, avec ces paquets comme entrées. Cette option est utile pour créer un environnement rapidement sans avoir à écrire une expression de paquet contenant les entrées désirées." #. type: table -#: guix-git/doc/guix.texi:6184 +#: guix-git/doc/guix.texi:6221 msgid "For instance, the command:" msgstr "Par exemple la commande :" #. type: example -#: guix-git/doc/guix.texi:6187 +#: guix-git/doc/guix.texi:6224 #, no-wrap msgid "guix environment --ad-hoc guile guile-sdl -- guile\n" msgstr "guix environment --ad-hoc guile guile-sdl -- guile\n" #. type: table -#: guix-git/doc/guix.texi:6191 +#: guix-git/doc/guix.texi:6228 msgid "runs @command{guile} in an environment where Guile and Guile-SDL are available." msgstr "lance @command{guile} dans un environnement où Guile et Guile-SDDL sont disponibles." #. type: table -#: guix-git/doc/guix.texi:6196 +#: guix-git/doc/guix.texi:6233 msgid "Note that this example implicitly asks for the default output of @code{guile} and @code{guile-sdl}, but it is possible to ask for a specific output---e.g., @code{glib:bin} asks for the @code{bin} output of @code{glib} (@pxref{Packages with Multiple Outputs})." msgstr "Remarquez que cet exemple demande implicitement la sortie par défaut de @code{guile} et @code{guile-sdl}, mais il est possible de demander une sortie spécifique — p.@: ex.@: @code{glib:bin} demande la sortie @code{bin} de @code{glib} (@pxref{Packages with Multiple Outputs})." #. type: table -#: guix-git/doc/guix.texi:6202 +#: guix-git/doc/guix.texi:6239 msgid "This option may be composed with the default behavior of @command{guix environment}. Packages appearing before @option{--ad-hoc} are interpreted as packages whose dependencies will be added to the environment, the default behavior. Packages appearing after are interpreted as packages that will be added to the environment directly." msgstr "Cette option peut être composée avec le comportement par défaut de @command{guix environment}. Les paquets qui apparaissent avant @option{--ad-hoc} sont interprétés comme les paquets dont les dépendances seront ajoutées à l'environnement, le comportement par défaut. Les paquets qui apparaissent après @option{--ad-hoc} sont interprétés comme les paquets à ajouter à l'environnement directement." #. type: example -#: guix-git/doc/guix.texi:6218 +#: guix-git/doc/guix.texi:6261 #, no-wrap msgid "" "guix environment --pure --preserve=^SLURM --ad-hoc openmpi @dots{} \\\n" @@ -13734,12 +13846,12 @@ msgstr "" " -- mpirun @dots{}\n" #. type: table -#: guix-git/doc/guix.texi:6261 +#: guix-git/doc/guix.texi:6304 msgid "For containers, link the environment profile to @file{~/.guix-profile} within the container and set @code{GUIX_ENVIRONMENT} to that. This is equivalent to making @file{~/.guix-profile} a symlink to the actual profile within the container. Linking will fail and abort the environment if the directory already exists, which will certainly be the case if @command{guix environment} was invoked in the user's home directory." msgstr "Pour les conteneurs, liez le profil d'environnement à @file{~/.guix-profile} à l'intérieur du conteneur et définissez @code{GUIX_ENVIRONNEMENT} à cet endroit. Cela équivaut à faire de @file{~/.guix-profile} un lien symbolique vers le profil réel à l'intérieur du conteneur. La liaison échouera et interrompra l'environnement si le répertoire existe déjà, ce qui sera certainement le cas si @command{guix environment} a été invoqué dans le répertoire personnel de l'utilisateur·rice." #. type: example -#: guix-git/doc/guix.texi:6288 +#: guix-git/doc/guix.texi:6331 #, no-wrap msgid "" "# will expose paths as /home/foo/wd, /home/foo/test, and /home/foo/target\n" @@ -13755,68 +13867,68 @@ msgstr "" " --expose=/tmp/target=$HOME/target\n" #. type: example -#: guix-git/doc/guix.texi:6316 +#: guix-git/doc/guix.texi:6359 #, no-wrap msgid "guix environment --container --expose=$HOME=/exchange --ad-hoc guile -- guile\n" msgstr "guix environment --container --expose=$HOME=/exchange --ad-hoc guile -- guile\n" #. type: Plain text -#: guix-git/doc/guix.texi:6324 +#: guix-git/doc/guix.texi:6367 msgid "@command{guix environment} also supports all of the common build options that @command{guix build} supports (@pxref{Common Build Options}) as well as package transformation options (@pxref{Package Transformation Options})." msgstr "En plus, @command{guix environment} prend en charge toutes les options de construction communes prises en charge par @command{guix build} (@pxref{Common Build Options}) et toutes les options de transformation de paquets (@pxref{Package Transformation Options})." #. type: section -#: guix-git/doc/guix.texi:6326 +#: guix-git/doc/guix.texi:6369 #, no-wrap msgid "Invoking @command{guix pack}" msgstr "Invoquer @command{guix pack}" #. type: Plain text -#: guix-git/doc/guix.texi:6332 +#: guix-git/doc/guix.texi:6375 msgid "Occasionally you want to pass software to people who are not (yet!) lucky enough to be using Guix. You'd tell them to run @command{guix package -i @var{something}}, but that's not possible in this case. This is where @command{guix pack} comes in." msgstr "Parfois vous voulez passer un logiciel à des gens qui n'ont pas (encore !) la chance d'utiliser Guix. Vous leur diriez bien de lancer @command{guix package -i @var{quelque chose}} mais ce n'est pas possible dans ce cas. C'est là que @command{guix pack} entre en jeu." #. type: quotation -#: guix-git/doc/guix.texi:6337 +#: guix-git/doc/guix.texi:6380 msgid "If you are looking for ways to exchange binaries among machines that already run Guix, @pxref{Invoking guix copy}, @ref{Invoking guix publish}, and @ref{Invoking guix archive}." msgstr "Si vous cherchez comment échanger des binaires entre des machines où Guix est déjà installé, @pxref{Invoking guix copy}, @ref{Invoking guix publish}, et @ref{Invoking guix archive}." #. type: cindex -#: guix-git/doc/guix.texi:6339 +#: guix-git/doc/guix.texi:6382 #, no-wrap msgid "pack" msgstr "pack" #. type: cindex -#: guix-git/doc/guix.texi:6340 +#: guix-git/doc/guix.texi:6383 #, no-wrap msgid "bundle" msgstr "lot" #. type: cindex -#: guix-git/doc/guix.texi:6341 +#: guix-git/doc/guix.texi:6384 #, no-wrap msgid "application bundle" msgstr "lot d'applications" #. type: cindex -#: guix-git/doc/guix.texi:6342 +#: guix-git/doc/guix.texi:6385 #, no-wrap msgid "software bundle" msgstr "lot de logiciels" #. type: Plain text -#: guix-git/doc/guix.texi:6351 +#: guix-git/doc/guix.texi:6394 msgid "The @command{guix pack} command creates a shrink-wrapped @dfn{pack} or @dfn{software bundle}: it creates a tarball or some other archive containing the binaries of the software you're interested in, and all its dependencies. The resulting archive can be used on any machine that does not have Guix, and people can run the exact same binaries as those you have with Guix. The pack itself is created in a bit-reproducible fashion, so anyone can verify that it really contains the build results that you pretend to be shipping." msgstr "La commande @command{guix pack} crée un @dfn{pack} ou @dfn{lot de logiciels} : elle crée une archive tar ou un autre type d'archive contenant les binaires pour le logiciel qui vous intéresse ainsi que ses dépendances. L'archive qui en résulte peut être utilisée sur toutes les machines qui n'ont pas Guix et les gens peuvent lancer exactement les mêmes binaires que ceux que vous avez avec Guix. Le pack lui-même est créé d'une manière reproductible au bit près, pour que n'importe qui puisse vérifier qu'il contient bien les résultats que vous prétendez proposer." #. type: Plain text -#: guix-git/doc/guix.texi:6354 +#: guix-git/doc/guix.texi:6397 msgid "For example, to create a bundle containing Guile, Emacs, Geiser, and all their dependencies, you can run:" msgstr "Par exemple, pour créer un lot contenant Guile, Emacs, Geiser et toutes leurs dépendances, vous pouvez lancer :" #. type: example -#: guix-git/doc/guix.texi:6359 +#: guix-git/doc/guix.texi:6402 #, no-wrap msgid "" "$ guix pack guile emacs emacs-geiser\n" @@ -13828,61 +13940,61 @@ msgstr "" "/gnu/store/@dots{}-pack.tar.gz\n" #. type: Plain text -#: guix-git/doc/guix.texi:6367 +#: guix-git/doc/guix.texi:6410 msgid "The result here is a tarball containing a @file{/gnu/store} directory with all the relevant packages. The resulting tarball contains a @dfn{profile} with the three packages of interest; the profile is the same as would be created by @command{guix package -i}. It is this mechanism that is used to create Guix's own standalone binary tarball (@pxref{Binary Installation})." msgstr "Le résultat ici est une archive tar contenant un répertoire @file{/gnu/store} avec tous les paquets nécessaires. L'archive qui en résulte contient un @dfn{profil} avec les trois paquets qui vous intéressent ; le profil est le même qui celui qui aurait été créé avec @command{guix package -i}. C'est ce mécanisme qui est utilisé pour créer les archives tar binaires indépendantes de Guix (@pxref{Binary Installation})." #. type: Plain text -#: guix-git/doc/guix.texi:6372 +#: guix-git/doc/guix.texi:6415 msgid "Users of this pack would have to run @file{/gnu/store/@dots{}-profile/bin/guile} to run Guile, which you may find inconvenient. To work around it, you can create, say, a @file{/opt/gnu/bin} symlink to the profile:" msgstr "Les utilisateurs de ce pack devraient lancer @file{/gnu/store/@dots{}-profile/bin/guile} pour lancer Guile, ce qui n'est pas très pratique. Pour éviter cela, vous pouvez créer, disons, un lien symbolique @file{/opt/gnu/bin} vers le profil :" #. type: example -#: guix-git/doc/guix.texi:6375 +#: guix-git/doc/guix.texi:6418 #, no-wrap msgid "guix pack -S /opt/gnu/bin=bin guile emacs emacs-geiser\n" msgstr "guix pack -S /opt/gnu/bin=bin guile emacs emacs-geiser\n" #. type: Plain text -#: guix-git/doc/guix.texi:6379 +#: guix-git/doc/guix.texi:6422 msgid "That way, users can happily type @file{/opt/gnu/bin/guile} and enjoy." msgstr "De cette façon, les utilisateurs peuvent joyeusement taper @file{/opt/gnu/bin/guile} et profiter." #. type: cindex -#: guix-git/doc/guix.texi:6380 +#: guix-git/doc/guix.texi:6423 #, no-wrap msgid "relocatable binaries, with @command{guix pack}" msgstr "binaires repositionnables, avec @command{guix pack}" #. type: Plain text -#: guix-git/doc/guix.texi:6388 +#: guix-git/doc/guix.texi:6431 msgid "What if the recipient of your pack does not have root privileges on their machine, and thus cannot unpack it in the root file system? In that case, you will want to use the @option{--relocatable} option (see below). This option produces @dfn{relocatable binaries}, meaning they they can be placed anywhere in the file system hierarchy: in the example above, users can unpack your tarball in their home directory and directly run @file{./opt/gnu/bin/guile}." msgstr "Et si le destinataire de votre pack n'a pas les privilèges root sur sa machine, et ne peut donc pas le décompresser dans le système de fichiers root ? Dans ce cas, vous pourriez utiliser l'option @code{--relocatable} (voir plus bas). Cette option produit des @dfn{binaires repositionnables}, ce qui signifie qu'ils peuvent être placés n'importe où dans l'arborescence du système de fichiers : dans l'exemple au-dessus, les utilisateur·rice·s peuvent décompresser votre archive dans leur répertoire personnel et lancer directement @file{./opt/gnu/bin/guile}." #. type: cindex -#: guix-git/doc/guix.texi:6389 +#: guix-git/doc/guix.texi:6432 #, no-wrap msgid "Docker, build an image with guix pack" msgstr "Docker, construire une image avec guix pack" #. type: Plain text -#: guix-git/doc/guix.texi:6392 +#: guix-git/doc/guix.texi:6435 msgid "Alternatively, you can produce a pack in the Docker image format using the following command:" msgstr "Autrement, vous pouvez produire un pack au format d'image Docker avec la commande suivante :" #. type: example -#: guix-git/doc/guix.texi:6395 +#: guix-git/doc/guix.texi:6438 #, no-wrap msgid "guix pack -f docker -S /bin=bin guile guile-readline\n" msgstr "guix pack -f docker -S /bin=bin guile guile-readline\n" #. type: Plain text -#: guix-git/doc/guix.texi:6400 +#: guix-git/doc/guix.texi:6443 msgid "The result is a tarball that can be passed to the @command{docker load} command, followed by @code{docker run}:" msgstr "Le résultat est une archive tar qui peut être passée à la commande @command{docker load}, puis à @code{docker run} :" #. type: example -#: guix-git/doc/guix.texi:6404 +#: guix-git/doc/guix.texi:6447 #, no-wrap msgid "" "docker load < @var{file}\n" @@ -13892,169 +14004,169 @@ msgstr "" "docker run -ti guile-guile-readline /bin/guile\n" #. type: Plain text -#: guix-git/doc/guix.texi:6411 +#: guix-git/doc/guix.texi:6454 msgid "where @var{file} is the image returned by @var{guix pack}, and @code{guile-guile-readline} is its ``image tag''. See the @uref{https://docs.docker.com/engine/reference/commandline/load/, Docker documentation} for more information." msgstr "où @var{fichier} est l'image renvoyée par @var{guix pack} et @code{guile-guile-readline} est son « tag d'image ». Voir la @uref{https://docs.docker.com/engine/reference/commandline/load/, documentation de Docker} pour plus d'informations." #. type: cindex -#: guix-git/doc/guix.texi:6412 +#: guix-git/doc/guix.texi:6455 #, no-wrap msgid "Singularity, build an image with guix pack" msgstr "Singularity, construire une image avec guix pack" #. type: cindex -#: guix-git/doc/guix.texi:6413 +#: guix-git/doc/guix.texi:6456 #, no-wrap msgid "SquashFS, build an image with guix pack" msgstr "SquashFS, construire une image avec guix pack" #. type: Plain text -#: guix-git/doc/guix.texi:6416 +#: guix-git/doc/guix.texi:6459 msgid "Yet another option is to produce a SquashFS image with the following command:" msgstr "Autrement, vous pouvez produire une image SquashFS avec la commande suivante :" #. type: example -#: guix-git/doc/guix.texi:6419 +#: guix-git/doc/guix.texi:6462 #, no-wrap msgid "guix pack -f squashfs bash guile emacs emacs-geiser\n" msgstr "guix pack -f squashfs bash guile emacs emacs-geiser\n" #. type: Plain text -#: guix-git/doc/guix.texi:6427 +#: guix-git/doc/guix.texi:6470 msgid "The result is a SquashFS file system image that can either be mounted or directly be used as a file system container image with the @uref{https://www.sylabs.io/docs/, Singularity container execution environment}, using commands like @command{singularity shell} or @command{singularity exec}." msgstr "Le résultat est une image de système de fichiers SquashFS qui peut soit être montée directement soit être utilisée comme image de conteneur de système de fichiers avec l'@uref{https://singularity.lbl.gov, Singularity container execution environment}, avec des commandes comme @command{singularity shell} ou @command{singularity exec}." #. type: Plain text -#: guix-git/doc/guix.texi:6429 +#: guix-git/doc/guix.texi:6472 msgid "Several command-line options allow you to customize your pack:" msgstr "Diverses options en ligne de commande vous permettent de personnaliser votre pack :" #. type: table -#: guix-git/doc/guix.texi:6434 +#: guix-git/doc/guix.texi:6477 msgid "Produce a pack in the given @var{format}." msgstr "Produire un pack dans le @var{format} donné." #. type: table -#: guix-git/doc/guix.texi:6436 +#: guix-git/doc/guix.texi:6479 msgid "The available formats are:" msgstr "Les formats disponibles sont :" #. type: item -#: guix-git/doc/guix.texi:6438 +#: guix-git/doc/guix.texi:6481 #, no-wrap msgid "tarball" msgstr "tarball" #. type: table -#: guix-git/doc/guix.texi:6441 +#: guix-git/doc/guix.texi:6484 msgid "This is the default format. It produces a tarball containing all the specified binaries and symlinks." msgstr "C'est le format par défaut. Il produit une archive tar contenant tous les binaires et les liens symboliques spécifiés." #. type: item -#: guix-git/doc/guix.texi:6442 +#: guix-git/doc/guix.texi:6485 #, no-wrap msgid "docker" msgstr "docker" #. type: table -#: guix-git/doc/guix.texi:6448 +#: guix-git/doc/guix.texi:6491 msgid "This produces a tarball that follows the @uref{https://github.com/docker/docker/blob/master/image/spec/v1.2.md, Docker Image Specification}. The ``repository name'' as it appears in the output of the @command{docker images} command is computed from package names passed on the command line or in the manifest file." msgstr "Cela produit une archive tar qui suit la @uref{https://github.com/docker/docker/blob/master/image/spec/v1.2.md, spécification des images Docker}. Le « nom de dépôt » qui apparaît dans la sortie de la commande @command{docker images} est calculé à partir des noms des paquets passés sur la ligne de commande ou dans le fichier manifeste." #. type: item -#: guix-git/doc/guix.texi:6449 +#: guix-git/doc/guix.texi:6492 #, no-wrap msgid "squashfs" msgstr "squashfs" #. type: table -#: guix-git/doc/guix.texi:6453 +#: guix-git/doc/guix.texi:6496 msgid "This produces a SquashFS image containing all the specified binaries and symlinks, as well as empty mount points for virtual file systems like procfs." msgstr "Cela produit une image SquashFS contenant tous les binaires et liens symboliques spécifiés, ainsi que des points de montages vides pour les systèmes de fichiers virtuels comme procfs." #. type: quotation -#: guix-git/doc/guix.texi:6459 +#: guix-git/doc/guix.texi:6502 msgid "Singularity @emph{requires} you to provide @file{/bin/sh} in the image. For that reason, @command{guix pack -f squashfs} always implies @code{-S /bin=bin}. Thus, your @command{guix pack} invocation must always start with something like:" msgstr "Singularity @emph{requiert} que vous fournissiez @file{/bin/sh} dans l'image. Pour cette raison, @command{guix pack -f squashfs} implique toujours @code{-S /bin=bin}. Ainsi, votre invocation @command{guix pack} doit toujours commencer par quelque chose comme :" #. type: example -#: guix-git/doc/guix.texi:6462 +#: guix-git/doc/guix.texi:6505 #, no-wrap msgid "guix pack -f squashfs bash @dots{}\n" msgstr "guix pack -f squashfs bash @dots{}\n" #. type: quotation -#: guix-git/doc/guix.texi:6467 +#: guix-git/doc/guix.texi:6510 msgid "If you forget the @code{bash} (or similar) package, @command{singularity run} and @command{singularity exec} will fail with an unhelpful ``no such file or directory'' message." msgstr "Si vous oubliez le paquet @code{bash} (ou similaire), @command{singularity run} et @command{singularity exec} vont échouer avec un message « no such file or directory » peu utile." #. type: item -#: guix-git/doc/guix.texi:6469 +#: guix-git/doc/guix.texi:6512 #, no-wrap msgid "deb" msgstr "deb" #. type: table -#: guix-git/doc/guix.texi:6477 +#: guix-git/doc/guix.texi:6520 msgid "This produces a Debian archive (a package with the @samp{.deb} file extension) containing all the specified binaries and symbolic links, that can be installed on top of any dpkg-based GNU(/Linux) distribution. Advanced options can be revealed via the @option{--help-deb-format} option. They allow embedding control files for more fine-grained control, such as activating specific triggers or providing a maintainer configure script to run arbitrary setup code upon installation." msgstr "Cela produit une archive Debian (un paquet avec l'extension @samp{.deb}) contenant tous les binaires et les liens symboliques spécifiés, qui peut être installée sur n'importe quelle distribution GNU(/Linux) basée sur dpkg. Vous trouverez des options avancées avec l'option @option{--help-deb-format}. Elles permettent d'insérer des fichiers control pour un contrôle plus fin, comme pour activer des trigger ou fournir un script de configuration pour mainteneur pour lancer du code de configuration arbitraire à l'installation." #. type: example -#: guix-git/doc/guix.texi:6480 +#: guix-git/doc/guix.texi:6523 #, no-wrap msgid "guix pack -f deb -C xz -S /usr/bin/hello=bin/hello hello\n" msgstr "guix pack -f deb -C xz -S /usr/bin/hello=bin/hello hello\n" #. type: quotation -#: guix-git/doc/guix.texi:6487 +#: guix-git/doc/guix.texi:6530 msgid "Because archives produced with @command{guix pack} contain a collection of store items and because each @command{dpkg} package must not have conflicting files, in practice that means you likely won't be able to install more than one such archive on a given system." msgstr "Comme les archives produites par @command{guix pack} contiennent une collection d'objets du dépôt et comme chaque paquet @command{dpkg} ne doit pas avoir de conflits de fichiers, en pratique cela signifie que vous ne pourrez sans doute pas installer plus d'une archive de ce genre sur un système donné." #. type: quotation -#: guix-git/doc/guix.texi:6495 +#: guix-git/doc/guix.texi:6538 msgid "@command{dpkg} will assume ownership of any files contained in the pack that it does @emph{not} know about. It is unwise to install Guix-produced @samp{.deb} files on a system where @file{/gnu/store} is shared by other software, such as a Guix installation or other, non-deb packs." msgstr "@command{dpkg} prendra possession de tout fichier contenu dans le pack qu'il ne connaît @emph{pas}. Il est peu avisé d'installer des fichiers @samp{.deb} produits par Guix sur un système où @file{/gnu/store} est partagé avec un autre logiciel, comme une installation de Guix ou d'autres packs non deb." #. type: cindex -#: guix-git/doc/guix.texi:6499 +#: guix-git/doc/guix.texi:6542 #, no-wrap msgid "relocatable binaries" msgstr "binaires repositionnables" #. type: item -#: guix-git/doc/guix.texi:6500 +#: guix-git/doc/guix.texi:6543 #, no-wrap msgid "--relocatable" msgstr "--relocatable" #. type: table -#: guix-git/doc/guix.texi:6504 +#: guix-git/doc/guix.texi:6547 msgid "Produce @dfn{relocatable binaries}---i.e., binaries that can be placed anywhere in the file system hierarchy and run from there." msgstr "Produire des @dfn{binaires repositionnables} — c.-à-d.@: des binaires que vous pouvez placer n'importe où dans l'arborescence du système de fichiers et les lancer à partir de là." #. type: table -#: guix-git/doc/guix.texi:6512 +#: guix-git/doc/guix.texi:6555 msgid "When this option is passed once, the resulting binaries require support for @dfn{user namespaces} in the kernel Linux; when passed @emph{twice}@footnote{Here's a trick to memorize it: @code{-RR}, which adds PRoot support, can be thought of as the abbreviation of ``Really Relocatable''. Neat, isn't it?}, relocatable binaries fall to back to other techniques if user namespaces are unavailable, and essentially work anywhere---see below for the implications." msgstr "Lorsque vous passez cette option une fois, les binaires qui en résultent demandent le support des @dfn{espaces de nom utilisateurs} dans le noyau Linux ; lorsque vous la passez @emph{deux fois}@footnote{Il y a une astuce pour s'en souvenir : on peut envisager @code{-RR}, qui ajoute le support PRoot, comme étant l'abréviation de « Réellement Repositionnable ». Pas mal, hein ?}, les binaires repositionnables utilisent PRoot si les espaces de noms ne sont pas utilisables, et ça fonctionne à peu près partout — voir plus bas pour comprendre les implications." #. type: table -#: guix-git/doc/guix.texi:6514 +#: guix-git/doc/guix.texi:6557 msgid "For example, if you create a pack containing Bash with:" msgstr "Par exemple, si vous créez un pack contenant Bash avec :" #. type: example -#: guix-git/doc/guix.texi:6517 +#: guix-git/doc/guix.texi:6560 #, no-wrap msgid "guix pack -RR -S /mybin=bin bash\n" msgstr "guix pack -RR -S /mybin=bin bash\n" #. type: table -#: guix-git/doc/guix.texi:6522 +#: guix-git/doc/guix.texi:6565 msgid "...@: you can copy that pack to a machine that lacks Guix, and from your home directory as a normal user, run:" msgstr "…@: vous pouvez copier ce pack sur une machine qui n'a pas Guix et depuis votre répertoire personnel en tant qu'utilisateur non-privilégié, lancer :" #. type: example -#: guix-git/doc/guix.texi:6526 +#: guix-git/doc/guix.texi:6569 #, no-wrap msgid "" "tar xf pack.tar.gz\n" @@ -14064,123 +14176,123 @@ msgstr "" "./mybin/sh\n" #. type: table -#: guix-git/doc/guix.texi:6534 +#: guix-git/doc/guix.texi:6577 msgid "In that shell, if you type @code{ls /gnu/store}, you'll notice that @file{/gnu/store} shows up and contains all the dependencies of @code{bash}, even though the machine actually lacks @file{/gnu/store} altogether! That is probably the simplest way to deploy Guix-built software on a non-Guix machine." msgstr "Dans ce shell, si vous tapez @code{ls /gnu/store}, vous remarquerez que @file{/gnu/store} apparaît et contient toutes les dépendances de @code{bash}, même si la machine n'a pas du tout de @file{/gnu/store} ! C'est sans doute la manière la plus simple de déployer du logiciel construit avec Guix sur une machine sans Guix." #. type: quotation -#: guix-git/doc/guix.texi:6540 +#: guix-git/doc/guix.texi:6583 msgid "By default, relocatable binaries rely on the @dfn{user namespace} feature of the kernel Linux, which allows unprivileged users to mount or change root. Old versions of Linux did not support it, and some GNU/Linux distributions turn it off." msgstr "Par défaut ,les binaires repositionnables s'appuient sur les @dfn{espaces de noms utilisateurs} du noyau Linux, qui permet à des utilisateurs non-privilégiés d'effectuer des montages et de changer de racine. Les anciennes versions de Linux ne le supportait pas et certaines distributions GNU/Linux le désactive." #. type: quotation -#: guix-git/doc/guix.texi:6546 +#: guix-git/doc/guix.texi:6589 msgid "To produce relocatable binaries that work even in the absence of user namespaces, pass @option{--relocatable} or @option{-R} @emph{twice}. In that case, binaries will try user namespace support and fall back to another @dfn{execution engine} if user namespaces are not supported. The following execution engines are supported:" msgstr "Pour produire des binaires repositionnables qui fonctionnent même sans espace de nom utilisatrice·eur, passez @option{--relocatable} ou @option{-R} @emph{deux fois}. Dans ce cas, les binaires testeront la prise en charge des espaces de noms utilisatrice·eur·s et utiliseront PRoot s'ils ne sont pas pris en charge. Les moteurs d'exécution suivants sont pris en charge :" #. type: item -#: guix-git/doc/guix.texi:6548 guix-git/doc/guix.texi:17371 +#: guix-git/doc/guix.texi:6591 guix-git/doc/guix.texi:17733 #, no-wrap msgid "default" msgstr "default" #. type: table -#: guix-git/doc/guix.texi:6551 +#: guix-git/doc/guix.texi:6594 msgid "Try user namespaces and fall back to PRoot if user namespaces are not supported (see below)." msgstr "Essayez les espaces de noms utilisateur·rice·s et revenez à PRoot si les espaces de noms utilisateur·rice·s ne sont pas pris en charge (voir ci-dessous)." #. type: item -#: guix-git/doc/guix.texi:6552 +#: guix-git/doc/guix.texi:6595 #, no-wrap msgid "performance" msgstr "performance" #. type: table -#: guix-git/doc/guix.texi:6555 +#: guix-git/doc/guix.texi:6598 msgid "Try user namespaces and fall back to Fakechroot if user namespaces are not supported (see below)." msgstr "Essayez les espaces de noms utilisateur·rice·s et revenez à Fakechroot si les espaces de noms utilisateur·rice·s ne sont pas pris en charge (voir ci-dessous)." # Le message original 'userns' semble contenir une coquille. 'users' serait # adapté semble-t-il. #. type: item -#: guix-git/doc/guix.texi:6556 +#: guix-git/doc/guix.texi:6599 #, no-wrap msgid "userns" msgstr "users" #. type: table -#: guix-git/doc/guix.texi:6559 +#: guix-git/doc/guix.texi:6602 msgid "Run the program through user namespaces and abort if they are not supported." msgstr "Lance le programme à travers les espaces de nom utilisateur·rice et échoue s'ils ne sont pas supportés." #. type: item -#: guix-git/doc/guix.texi:6560 +#: guix-git/doc/guix.texi:6603 #, no-wrap msgid "proot" msgstr "proot" #. type: table -#: guix-git/doc/guix.texi:6567 +#: guix-git/doc/guix.texi:6610 msgid "Run through PRoot. The @uref{https://proot-me.github.io/, PRoot} program provides the necessary support for file system virtualization. It achieves that by using the @code{ptrace} system call on the running program. This approach has the advantage to work without requiring special kernel support, but it incurs run-time overhead every time a system call is made." msgstr "Passez à travers PRoot. Le programme @uref{https://proot-me.github.io/, PRoot} fournit la prise en charge nécessaire pour la virtualisation du système de fichier. Il y parvient en utilisant l'appel système @code{ptrace} sur le programme courant. Cette approche a l'avantage de fonctionner sans demander de support spécial de la part du noyau, mais occasionne un coût supplémentaire en temps pour chaque appel système effectué." #. type: item -#: guix-git/doc/guix.texi:6568 +#: guix-git/doc/guix.texi:6611 #, no-wrap msgid "fakechroot" msgstr "fakechroot" #. type: table -#: guix-git/doc/guix.texi:6576 +#: guix-git/doc/guix.texi:6619 msgid "Run through Fakechroot. @uref{https://github.com/dex4er/fakechroot/, Fakechroot} virtualizes file system accesses by intercepting calls to C library functions such as @code{open}, @code{stat}, @code{exec}, and so on. Unlike PRoot, it incurs very little overhead. However, it does not always work: for example, some file system accesses made from within the C library are not intercepted, and file system accesses made @i{via} direct syscalls are not intercepted either, leading to erratic behavior." msgstr "Passez à travers Fakechroot. @uref{https://github.com/dex4er/fakechroot/, Fakechroot} virtualise les accès au système de fichier en interceptant les appels vers les fonctions de la bibliothèque C telles que @code{open}, @code{stat}, @code{exec}, et ainsi de suite. Contrairement à PRoot, il n'engendre que très peu de coûts généraux. Cependant, il ne fonctionne pas encore tout-à-fait : par exemple, certains accès au système de fichier effectués à partir de la bibliothèque C ne sont pas interceptés, et les accès au système de fichier effectués @i{via} les appels système directs ne sont pas non plus interceptés, conduisant à un comportement erratique." #. type: vindex -#: guix-git/doc/guix.texi:6578 +#: guix-git/doc/guix.texi:6621 #, no-wrap msgid "GUIX_EXECUTION_ENGINE" msgstr "GUIX_EXECUTION_ENGINE" #. type: quotation -#: guix-git/doc/guix.texi:6582 +#: guix-git/doc/guix.texi:6625 msgid "When running a wrapped program, you can explicitly request one of the execution engines listed above by setting the @env{GUIX_EXECUTION_ENGINE} environment variable accordingly." msgstr "Lors de l'exécution d'un programme complet, vous pouvez demander explicitement l'un des moteurs d'exécution énumérés ci-dessus en définissant en conséquence la variable d'environnement @env{GUIX_EXECUTION_ENGINE}." #. type: cindex -#: guix-git/doc/guix.texi:6584 +#: guix-git/doc/guix.texi:6627 #, no-wrap msgid "entry point, for Docker images" msgstr "point d'entrée, pour les images Docker" #. type: item -#: guix-git/doc/guix.texi:6585 +#: guix-git/doc/guix.texi:6628 #, no-wrap msgid "--entry-point=@var{command}" msgstr "--entry-point=@var{commande}" #. type: table -#: guix-git/doc/guix.texi:6590 +#: guix-git/doc/guix.texi:6633 msgid "Use @var{command} as the @dfn{entry point} of the resulting pack, if the pack format supports it---currently @code{docker} and @code{squashfs} (Singularity) support it. @var{command} must be relative to the profile contained in the pack." msgstr "Utiliser @var{commande} comme @dfn{point d'entrée} du paquet résultant, si le format du paquet le supporte--actuellement @code{docker} et @code{squashfs} (Singularity) la supportent. @var{command} doit être relatif au profil contenu dans le pack." #. type: table -#: guix-git/doc/guix.texi:6594 +#: guix-git/doc/guix.texi:6637 msgid "The entry point specifies the command that tools like @code{docker run} or @code{singularity run} automatically start by default. For example, you can do:" msgstr "Le point d'entrée spécifie la commande que des outils comme @code{docker run} or @code{singularity run} lancent automatiquement par défaut. Par exemple, vous pouvez faire :" #. type: example -#: guix-git/doc/guix.texi:6597 +#: guix-git/doc/guix.texi:6640 #, no-wrap msgid "guix pack -f docker --entry-point=bin/guile guile\n" msgstr "guix pack -f docker --entry-point=bin/guile guile\n" #. type: table -#: guix-git/doc/guix.texi:6601 +#: guix-git/doc/guix.texi:6644 msgid "The resulting pack can easily be loaded and @code{docker run} with no extra arguments will spawn @code{bin/guile}:" msgstr "Le pack résultant peut être facilement chargé et @code{docker run} sans arguments supplémentaires engendrera @code{bin/guile} :" #. type: example -#: guix-git/doc/guix.texi:6605 +#: guix-git/doc/guix.texi:6648 #, no-wrap msgid "" "docker load -i pack.tar.gz\n" @@ -14190,398 +14302,398 @@ msgstr "" "docker run @var{image-id}\n" #. type: table -#: guix-git/doc/guix.texi:6610 guix-git/doc/guix.texi:12497 -#: guix-git/doc/guix.texi:13445 +#: guix-git/doc/guix.texi:6653 guix-git/doc/guix.texi:12812 +#: guix-git/doc/guix.texi:13802 msgid "Consider the package @var{expr} evaluates to." msgstr "Considérer le paquet évalué par @var{expr}." #. type: table -#: guix-git/doc/guix.texi:6614 +#: guix-git/doc/guix.texi:6657 msgid "This has the same purpose as the same-named option in @command{guix build} (@pxref{Additional Build Options, @option{--expression} in @command{guix build}})." msgstr "Cela a le but identique que l'option de même nom de @command{guix build} (@pxref{Additional Build Options, @code{--expression} dans @command{guix build}})." #. type: table -#: guix-git/doc/guix.texi:6620 +#: guix-git/doc/guix.texi:6663 msgid "Use the packages contained in the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "Utiliser les paquets contenus dans l'objet manifeste renvoyé par le code Scheme dans @var{fichier}. Vous pouvez répéter cette option plusieurs fois, auquel cas les manifestes sont concaténés." #. type: table -#: guix-git/doc/guix.texi:6628 +#: guix-git/doc/guix.texi:6671 msgid "This has a similar purpose as the same-named option in @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) and uses the same manifest files. It allows you to define a collection of packages once and use it both for creating profiles and for creating archives for use on machines that do not have Guix installed. Note that you can specify @emph{either} a manifest file @emph{or} a list of packages, but not both." msgstr "Elle a un but similaire à l'option de même nom dans @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) et utilise les mêmes fichiers manifeste. Ils vous permettent de définir une collection de paquets une fois et de l'utiliser aussi bien pour créer des profils que pour créer des archives pour des machines qui n'ont pas Guix d'installé. Remarquez que vous pouvez spécifier @emph{soit} un fichier manifeste, @emph{soit} une liste de paquet, mais pas les deux." #. type: item -#: guix-git/doc/guix.texi:6634 guix-git/doc/guix.texi:11539 +#: guix-git/doc/guix.texi:6677 guix-git/doc/guix.texi:11853 #, no-wrap msgid "--target=@var{triplet}" msgstr "--target=@var{triplet}" #. type: cindex -#: guix-git/doc/guix.texi:6635 guix-git/doc/guix.texi:7080 -#: guix-git/doc/guix.texi:11540 +#: guix-git/doc/guix.texi:6678 guix-git/doc/guix.texi:7124 +#: guix-git/doc/guix.texi:11854 #, no-wrap msgid "cross-compilation" msgstr "compilation croisée" #. type: table -#: guix-git/doc/guix.texi:6639 +#: guix-git/doc/guix.texi:6682 msgid "Cross-build for @var{triplet}, which must be a valid GNU triplet, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying target triplets, GNU configuration triplets,, autoconf, Autoconf})." msgstr "Effectuer une compilation croisée pour @var{triplet} qui doit être un triplet GNU valide, comme @code{\"\"aarch64-linux-gnu\"\"} (@pxref{Specifying target triplets, GNU configuration triplets,, autoconf, Autoconf})." #. type: item -#: guix-git/doc/guix.texi:6640 +#: guix-git/doc/guix.texi:6683 #, no-wrap msgid "--compression=@var{tool}" msgstr "--compression=@var{outil}" #. type: itemx -#: guix-git/doc/guix.texi:6641 +#: guix-git/doc/guix.texi:6684 #, no-wrap msgid "-C @var{tool}" msgstr "-C @var{outil}" #. type: table -#: guix-git/doc/guix.texi:6645 +#: guix-git/doc/guix.texi:6688 msgid "Compress the resulting tarball using @var{tool}---one of @code{gzip}, @code{zstd}, @code{bzip2}, @code{xz}, @code{lzip}, or @code{none} for no compression." msgstr "Compresser l'archive résultante avec @var{outil} — l'un des outils parmi @code{gzip}, @code{zstd}, @code{bzip2}, @code{xz}, @code{lzip}, ou @code{none} pour aucune compression." #. type: item -#: guix-git/doc/guix.texi:6646 +#: guix-git/doc/guix.texi:6689 #, no-wrap msgid "--symlink=@var{spec}" msgstr "--symlink=@var{spec}" #. type: itemx -#: guix-git/doc/guix.texi:6647 +#: guix-git/doc/guix.texi:6690 #, no-wrap msgid "-S @var{spec}" msgstr "-S @var{spec}" #. type: table -#: guix-git/doc/guix.texi:6650 +#: guix-git/doc/guix.texi:6693 msgid "Add the symlinks specified by @var{spec} to the pack. This option can appear several times." msgstr "Ajouter les liens symboliques spécifiés par @var{spec} dans le pack. Cette option peut apparaître plusieurs fois." #. type: table -#: guix-git/doc/guix.texi:6654 +#: guix-git/doc/guix.texi:6697 msgid "@var{spec} has the form @code{@var{source}=@var{target}}, where @var{source} is the symlink that will be created and @var{target} is the symlink target." msgstr "@var{spec} a la forme @code{@var{source}=@var{cible}}, où @var{source} est le lien symbolique qui sera créé et @var{cible} est la cible du lien." #. type: table -#: guix-git/doc/guix.texi:6657 +#: guix-git/doc/guix.texi:6700 msgid "For instance, @code{-S /opt/gnu/bin=bin} creates a @file{/opt/gnu/bin} symlink pointing to the @file{bin} sub-directory of the profile." msgstr "Par exemple, @code{-S /opt/gnu/bin=bin} crée un lien symbolique @file{/opt/gnu/bin} qui pointe vers le sous-répertoire @file{bin} du profil." #. type: item -#: guix-git/doc/guix.texi:6658 guix-git/doc/guix.texi:35262 +#: guix-git/doc/guix.texi:6701 guix-git/doc/guix.texi:35706 #, no-wrap msgid "--save-provenance" msgstr "--save-provenance" #. type: table -#: guix-git/doc/guix.texi:6662 +#: guix-git/doc/guix.texi:6705 msgid "Save provenance information for the packages passed on the command line. Provenance information includes the URL and commit of the channels in use (@pxref{Channels})." msgstr "Sauvegarder les informations de provenance des paquets passés sur la ligne de commande. Les informations de provenance contiennent l'URL et le commit des canaux utilisés (@pxref{Channels})." #. type: table -#: guix-git/doc/guix.texi:6668 +#: guix-git/doc/guix.texi:6711 msgid "Provenance information is saved in the @file{/gnu/store/@dots{}-profile/manifest} file in the pack, along with the usual package metadata---the name and version of each package, their propagated inputs, and so on. It is useful information to the recipient of the pack, who then knows how the pack was (supposedly) obtained." msgstr "Les informations de provenance sont sauvegardées dans le fichier @file{/gnu/store/@dots{}-profile/manifest} du pack, avec les métadonnées de paquets habituelles — le nom et la version de chaque paquet, leurs entrées propagées, etc. Ce sont des informations utiles pour le destinataire du pack, qui sait alors comment le pack a (normalement) été obtenu." #. type: table -#: guix-git/doc/guix.texi:6674 +#: guix-git/doc/guix.texi:6717 msgid "This option is not enabled by default because, like timestamps, provenance information contributes nothing to the build process. In other words, there is an infinity of channel URLs and commit IDs that can lead to the same pack. Recording such ``silent'' metadata in the output thus potentially breaks the source-to-binary bitwise reproducibility property." msgstr "Cette option n'est pas activée par défaut car, comme l'horodatage, les informations de provenance ne contribuent en rien au processus de construction. En d'autres termes, il y a une infinité d'URL et d'ID de commit qui permettent d'obtenir le même pack. Enregistrer de telles métadonnées « silencieuses » dans la sortie casse donc éventuellement la propriété de reproductibilité au bit près." #. type: cindex -#: guix-git/doc/guix.texi:6677 +#: guix-git/doc/guix.texi:6720 #, no-wrap msgid "garbage collector root, for packs" msgstr "racines du ramasse-miettes, pour les packs" #. type: table -#: guix-git/doc/guix.texi:6680 +#: guix-git/doc/guix.texi:6723 msgid "Make @var{file} a symlink to the resulting pack, and register it as a garbage collector root." msgstr "Fait de @var{fichier} un lien symbolique vers le résultat, et l'enregistre en tant que racine du ramasse-miettes." #. type: item -#: guix-git/doc/guix.texi:6681 +#: guix-git/doc/guix.texi:6724 #, no-wrap msgid "--localstatedir" msgstr "--localstatedir" #. type: itemx -#: guix-git/doc/guix.texi:6682 +#: guix-git/doc/guix.texi:6725 #, no-wrap msgid "--profile-name=@var{name}" msgstr "--profile-name=@var{nom}" #. type: table -#: guix-git/doc/guix.texi:6687 +#: guix-git/doc/guix.texi:6730 msgid "Include the ``local state directory'', @file{/var/guix}, in the resulting pack, and notably the @file{/var/guix/profiles/per-user/root/@var{name}} profile---by default @var{name} is @code{guix-profile}, which corresponds to @file{~root/.guix-profile}." msgstr "Inclus le « répertoire d'état local », @file{/var/guix}, dans le lot qui en résulte, et notamment le profil @file{/var/guix/profiles/per-user/root/@var{nom}} — par défaut @var{nom} est @code{guix-profile}, ce qui correspond à @file{~root/.guix-profile}." #. type: table -#: guix-git/doc/guix.texi:6693 +#: guix-git/doc/guix.texi:6736 msgid "@file{/var/guix} contains the store database (@pxref{The Store}) as well as garbage-collector roots (@pxref{Invoking guix gc}). Providing it in the pack means that the store is ``complete'' and manageable by Guix; not providing it pack means that the store is ``dead'': items cannot be added to it or removed from it after extraction of the pack." msgstr "@file{/var/guix} contient la base de données du dépôt (@pxref{The Store}) ainsi que les racines du ramasse-miettes (@pxref{Invoking guix gc}). Le fournir dans le pack signifie que le dépôt et « complet » et gérable par Guix ; ne pas le fournir dans le pack signifie que le dépôt est « mort » : aucun élément ne peut être ajouté ni enlevé après l'extraction du pack." #. type: table -#: guix-git/doc/guix.texi:6696 +#: guix-git/doc/guix.texi:6739 msgid "One use case for this is the Guix self-contained binary tarball (@pxref{Binary Installation})." msgstr "Un cas d'utilisation est l'archive binaire indépendante de Guix (@pxref{Binary Installation})." #. type: item -#: guix-git/doc/guix.texi:6697 guix-git/doc/guix.texi:35256 +#: guix-git/doc/guix.texi:6740 guix-git/doc/guix.texi:35700 #, no-wrap msgid "--derivation" msgstr "--derivation" #. type: itemx -#: guix-git/doc/guix.texi:6698 guix-git/doc/guix.texi:11571 -#: guix-git/doc/guix.texi:35257 +#: guix-git/doc/guix.texi:6741 guix-git/doc/guix.texi:11885 +#: guix-git/doc/guix.texi:35701 #, no-wrap msgid "-d" msgstr "-d" #. type: table -#: guix-git/doc/guix.texi:6700 +#: guix-git/doc/guix.texi:6743 msgid "Print the name of the derivation that builds the pack." msgstr "Affiche le nom de la dérivation que le pack construit." #. type: table -#: guix-git/doc/guix.texi:6704 +#: guix-git/doc/guix.texi:6747 msgid "Use the bootstrap binaries to build the pack. This option is only useful to Guix developers." msgstr "Utiliser les programmes d'amorçage pour construire le pack. Cette option n'est utile que pour les personnes qui développent Guix." #. type: Plain text -#: guix-git/doc/guix.texi:6709 +#: guix-git/doc/guix.texi:6752 msgid "In addition, @command{guix pack} supports all the common build options (@pxref{Common Build Options}) and all the package transformation options (@pxref{Package Transformation Options})." msgstr "En plus, @command{guix pack} supporte toutes les options de construction communes (@pxref{Common Build Options}) et toutes les options de transformation de paquets (@pxref{Package Transformation Options})." #. type: cindex -#: guix-git/doc/guix.texi:6714 +#: guix-git/doc/guix.texi:6757 #, no-wrap msgid "GCC" msgstr "GCC" #. type: cindex -#: guix-git/doc/guix.texi:6715 +#: guix-git/doc/guix.texi:6758 #, no-wrap msgid "ld-wrapper" msgstr "ld-wrapper" #. type: cindex -#: guix-git/doc/guix.texi:6716 +#: guix-git/doc/guix.texi:6759 #, no-wrap msgid "linker wrapper" msgstr "linker wrapper" #. type: cindex -#: guix-git/doc/guix.texi:6717 +#: guix-git/doc/guix.texi:6760 #, no-wrap msgid "toolchain, for C development" msgstr "chaîne d'outils, pour le développement en C" #. type: cindex -#: guix-git/doc/guix.texi:6718 +#: guix-git/doc/guix.texi:6761 #, no-wrap msgid "toolchain, for Fortran development" msgstr "chaîne d'outils, pour le développement en Fortran" #. type: Plain text -#: guix-git/doc/guix.texi:6725 +#: guix-git/doc/guix.texi:6768 msgid "If you need a complete toolchain for compiling and linking C or C++ source code, use the @code{gcc-toolchain} package. This package provides a complete GCC toolchain for C/C++ development, including GCC itself, the GNU C Library (headers and binaries, plus debugging symbols in the @code{debug} output), Binutils, and a linker wrapper." msgstr "Guix offre des paquets de compilateurs individuels comme @code{gcc} mais si vous avez besoin d'une chaîne de compilation complète pour compiler et lier du code source, utilisez le paquet @code{gcc-toolchain}. Ce paquet fournit une chaîne d'outils complète GCC pour le développement C/C++, dont GCC lui-même, la bibliothèque C de GNU (les en-têtes et les binaires, plus les symboles de débogage dans la sortie @code{debug}), Binutils et un wrapper pour l'éditeur de liens." #. type: Plain text -#: guix-git/doc/guix.texi:6731 +#: guix-git/doc/guix.texi:6774 msgid "The wrapper's purpose is to inspect the @code{-L} and @code{-l} switches passed to the linker, add corresponding @code{-rpath} arguments, and invoke the actual linker with this new set of arguments. You can instruct the wrapper to refuse to link against libraries not in the store by setting the @env{GUIX_LD_WRAPPER_ALLOW_IMPURITIES} environment variable to @code{no}." msgstr "Le rôle de l'enveloppe est d'inspecter les paramètres @code{-L} et @code{-l} passés à l'éditeur de liens, d'ajouter des arguments @code{-rpath} correspondants et d'invoquer l'actuel éditeur de liens avec ce nouvel ensemble d'arguments. Vous pouvez dire au wrapper de refuser de lier les programmes à des bibliothèques en dehors du dépôt en paramétrant la variable d'environnement @env{GUIX_LD_WRAPPER_ALLOW_IMPURITIES} sur @code{no}." #. type: Plain text -#: guix-git/doc/guix.texi:6735 +#: guix-git/doc/guix.texi:6778 msgid "The package @code{gfortran-toolchain} provides a complete GCC toolchain for Fortran development. For other languages, please use @samp{guix search gcc toolchain} (@pxref{guix-search,, Invoking guix package})." msgstr "Le paquet @code{gfortran-toolchain} fournit une chaîne d'outils GCC complète pour le développement en Fortran. Pour d'autres langages, veuillez utiliser @samp{guix search gcc toolchain} (@pxref{guix-search,, Invoquer guix package})." #. type: section -#: guix-git/doc/guix.texi:6738 +#: guix-git/doc/guix.texi:6781 #, no-wrap msgid "Invoking @command{guix git authenticate}" msgstr "Invoquer @command{guix git authenticate}" #. type: Plain text -#: guix-git/doc/guix.texi:6746 +#: guix-git/doc/guix.texi:6789 msgid "The @command{guix git authenticate} command authenticates a Git checkout following the same rule as for channels (@pxref{channel-authentication, channel authentication}). That is, starting from a given commit, it ensures that all subsequent commits are signed by an OpenPGP key whose fingerprint appears in the @file{.guix-authorizations} file of its parent commit(s)." msgstr "La commande @command{guix git authenticate} authentifie un checkout Git en suivant la même règle que pour les canaux (@pxref{channel-authentication, channel authentication}). C'est-à-dire qu'à partir d'un commit donné, il s'assure que tous les commit suivants sont signés par une clé OpenPGP dont l'empreinte digitale apparaît dans le fichier @file{.guix-authorizations} de son ou ses commit(s) parent(s)." #. type: Plain text -#: guix-git/doc/guix.texi:6751 +#: guix-git/doc/guix.texi:6794 msgid "You will find this command useful if you maintain a channel. But in fact, this authentication mechanism is useful in a broader context, so you might want to use it for Git repositories that have nothing to do with Guix." msgstr "Vous allez trouver cette commande utile si vous maintenez un canal. Mais en fait, ce mécanisme d'authentification est utile dans un contexte plus large, Vous pourriez donc vouloir l'utiliser pour des dépôts Git qui n'ont rien à voir avec Guix." #. type: example -#: guix-git/doc/guix.texi:6756 +#: guix-git/doc/guix.texi:6799 #, no-wrap msgid "guix git authenticate @var{commit} @var{signer} [@var{options}@dots{}]\n" msgstr "guix git authenticate @var{commit} @var{signer} [@var{options}@dots{}]\n" #. type: Plain text -#: guix-git/doc/guix.texi:6765 +#: guix-git/doc/guix.texi:6808 msgid "By default, this command authenticates the Git checkout in the current directory; it outputs nothing and exits with exit code zero on success and non-zero on failure. @var{commit} above denotes the first commit where authentication takes place, and @var{signer} is the OpenPGP fingerprint of public key used to sign @var{commit}. Together, they form a ``channel introduction'' (@pxref{channel-authentication, channel introduction}). The options below allow you to fine-tune the process." msgstr "Par défaut, cette commande authentifie le chekout Git dans le répertoire courant ; il ne produit rien et sort avec le code de sortie zéro en cas de succès et non zéro en cas d'échec. @var{commit} ci-dessus désigne le premier commit où l'authentification a lieu, et @var{signer} est l'empreinte OpenPGP de la clé publique utilisée pour signer @var{commit}. Ensemble, ils forment une «introduction de canal» (@pxref{channel-authentication, introduction de canal}). Les options ci-dessous vous permettent d'affiner le processus." #. type: item -#: guix-git/doc/guix.texi:6767 +#: guix-git/doc/guix.texi:6810 #, no-wrap msgid "--repository=@var{directory}" msgstr "--repository=@var{répertoire}" #. type: itemx -#: guix-git/doc/guix.texi:6768 +#: guix-git/doc/guix.texi:6811 #, no-wrap msgid "-r @var{directory}" msgstr "-r @var{répertoire}" #. type: table -#: guix-git/doc/guix.texi:6771 +#: guix-git/doc/guix.texi:6814 msgid "Open the Git repository in @var{directory} instead of the current directory." msgstr "Ouvre le dépôt Git dans @var{directory} au lieu du répertoire courant." #. type: item -#: guix-git/doc/guix.texi:6772 +#: guix-git/doc/guix.texi:6815 #, no-wrap msgid "--keyring=@var{reference}" msgstr "--keyring=@var{référence}" #. type: itemx -#: guix-git/doc/guix.texi:6773 +#: guix-git/doc/guix.texi:6816 #, no-wrap msgid "-k @var{reference}" msgstr "-k @var{féférence}" #. type: table -#: guix-git/doc/guix.texi:6779 +#: guix-git/doc/guix.texi:6822 msgid "Load OpenPGP keyring from @var{reference}, the reference of a branch such as @code{origin/keyring} or @code{my-keyring}. The branch must contain OpenPGP public keys in @file{.key} files, either in binary form or ``ASCII-armored''. By default the keyring is loaded from the branch named @code{keyring}." msgstr "Chargez le porte-clés OpenPGP à partir de @var{référence}, la référence d'une branche telle que @code{origin/keyring} ou @code{my-keyring}. La branche doit contenir des clés publiques OpenPGP dans des fichiers @file{.key}, soit sous forme binaire, soit \"blindée ASCII\". Par défaut, le porte-clés est chargé à partir de la branche nommée @code{keyring}." #. type: item -#: guix-git/doc/guix.texi:6780 +#: guix-git/doc/guix.texi:6823 #, no-wrap msgid "--stats" msgstr "--stats" #. type: table -#: guix-git/doc/guix.texi:6782 +#: guix-git/doc/guix.texi:6825 msgid "Display commit signing statistics upon completion." msgstr "Affiche les statistiques sur les signatures de commits à l'issue de la procédure." #. type: item -#: guix-git/doc/guix.texi:6783 +#: guix-git/doc/guix.texi:6826 #, no-wrap msgid "--cache-key=@var{key}" msgstr "--cache-key=@var{key}" #. type: table -#: guix-git/doc/guix.texi:6787 +#: guix-git/doc/guix.texi:6830 msgid "Previously-authenticated commits are cached in a file under @file{~/.cache/guix/authentication}. This option forces the cache to be stored in file @var{key} in that directory." msgstr "Les commits préalablement authentifiés sont mis en cache dans un fichier sous @file{~/.cache/guix/authentication}. Cette option force le cache à être stocké dans le fichier @var{key} de ce répertoire." #. type: item -#: guix-git/doc/guix.texi:6788 +#: guix-git/doc/guix.texi:6831 #, no-wrap msgid "--historical-authorizations=@var{file}" msgstr "--historical-authorizations=@var{fichier}" #. type: table -#: guix-git/doc/guix.texi:6795 +#: guix-git/doc/guix.texi:6838 msgid "By default, any commit whose parent commit(s) lack the @file{.guix-authorizations} file is considered inauthentic. In contrast, this option considers the authorizations in @var{file} for any commit that lacks @file{.guix-authorizations}. The format of @var{file} is the same as that of @file{.guix-authorizations} (@pxref{channel-authorizations, @file{.guix-authorizations} format})." msgstr "Par défaut, tout commit dont le(s) commit(s) parent(s) ne contient(nt) pas le fichier @file{.guix-authorizations} est considéré comme non authentique. En revanche, cette option considère les autorisations dans @var{file} pour tout commit dont le fichier @file{.guix-authorizations} est manquant. Le format de @var{file} est le même que celui de @file{.guix-authorizations} (au format @pxref{channel-authorizations, @file{.guix-autorizations}})." #. type: Plain text -#: guix-git/doc/guix.texi:6808 +#: guix-git/doc/guix.texi:6851 msgid "GNU Guix provides several Scheme programming interfaces (APIs) to define, build, and query packages. The first interface allows users to write high-level package definitions. These definitions refer to familiar packaging concepts, such as the name and version of a package, its build system, and its dependencies. These definitions can then be turned into concrete build actions." msgstr "GNU Guix fournit diverses interface de programmation Scheme (API) qui pour définir, construire et faire des requêtes sur des paquets. La première interface permet aux utilisateurs d'écrire des définitions de paquets de haut-niveau. Ces définitions se réfèrent à des concepts de création de paquets familiers, comme le nom et la version du paquet, son système de construction et ses dépendances. Ces définitions peuvent ensuite être transformées en actions concrètes lors de la construction." #. type: Plain text -#: guix-git/doc/guix.texi:6814 +#: guix-git/doc/guix.texi:6857 msgid "Build actions are performed by the Guix daemon, on behalf of users. In a standard setup, the daemon has write access to the store---the @file{/gnu/store} directory---whereas users do not. The recommended setup also has the daemon perform builds in chroots, under specific build users, to minimize interference with the rest of the system." msgstr "Les actions de construction sont effectuées par le démon Guix, pour le compte des utilisateur·rice·s. Dans un environnement standard, le démon possède les droits en écriture sur le dépôt — le répertoire @file{/gnu/store} — mais pas les utilisateur·rice·s. La configuration recommandée permet aussi au démon d'effectuer la construction dans des chroots, à l'adresse des utilisateur·rice·s de construction spécifiques, pour minimiser les interférences avec le reste du système." #. type: Plain text -#: guix-git/doc/guix.texi:6823 +#: guix-git/doc/guix.texi:6866 msgid "Lower-level APIs are available to interact with the daemon and the store. To instruct the daemon to perform a build action, users actually provide it with a @dfn{derivation}. A derivation is a low-level representation of the build actions to be taken, and the environment in which they should occur---derivations are to package definitions what assembly is to C programs. The term ``derivation'' comes from the fact that build results @emph{derive} from them." msgstr "Il y a des API de plus bas niveau pour interagir avec le démon et le dépôt. Pour demander au démon d'effectuer une action de construction, les utilisateurs lui donnent en fait une @dfn{dérivation}. Une dérivation est une représentation à bas-niveau des actions de construction à entreprendre et l'environnement dans lequel elles devraient avoir lieu — les dérivations sont aux définitions de paquets ce que l'assembleur est aux programmes C. Le terme de « dérivation » vient du fait que les résultats de la construction en @emph{dérivent}." #. type: Plain text -#: guix-git/doc/guix.texi:6826 +#: guix-git/doc/guix.texi:6869 msgid "This chapter describes all these APIs in turn, starting from high-level package definitions." msgstr "Ce chapitre décrit toutes ces API tour à tour, à partir des définitions de paquets à haut-niveau." #. type: menuentry -#: guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:6883 msgid "Programming Guix in Guile" msgstr "Programmer Guix dans Guile" #. type: Plain text -#: guix-git/doc/guix.texi:6855 +#: guix-git/doc/guix.texi:6899 msgid "From a programming viewpoint, the package definitions of the GNU distribution are provided by Guile modules in the @code{(gnu packages @dots{})} name space@footnote{Note that packages under the @code{(gnu packages @dots{})} module name space are not necessarily ``GNU packages''. This module naming scheme follows the usual Guile module naming convention: @code{gnu} means that these modules are distributed as part of the GNU system, and @code{packages} identifies modules that define packages.} (@pxref{Modules, Guile modules,, guile, GNU Guile Reference Manual}). For instance, the @code{(gnu packages emacs)} module exports a variable named @code{emacs}, which is bound to a @code{} object (@pxref{Defining Packages})." msgstr "D'un point de vue programmatique, les définitions de paquets de la distribution GNU sont fournies par des modules Guile dans l'espace de noms @code{(gnu packages @dots{})}@footnote{Remarquez que les paquets sous l'espace de nom @code{(gnu packages @dots{})} ne sont pas nécessairement des « paquets GNU ». Le nom de ce module suit la convention de nommage usuelle de Guile : @code{gnu} signifie que ces modules sont distribués dans le système GNU, et @code{packages} identifie les modules qui définissent les paquets.} (@pxref{Modules, Guile modules,, guile, GNU Guile Reference Manual}). Par exemple, le module @code{(gnu packages emacs)} exporte une variable nommée @code{emacs}, qui est liée à un objet @code{} (@pxref{Defining Packages})." #. type: Plain text -#: guix-git/doc/guix.texi:6862 +#: guix-git/doc/guix.texi:6906 msgid "The @code{(gnu packages @dots{})} module name space is automatically scanned for packages by the command-line tools. For instance, when running @code{guix install emacs}, all the @code{(gnu packages @dots{})} modules are scanned until one that exports a package object whose name is @code{emacs} is found. This package search facility is implemented in the @code{(gnu packages)} module." msgstr "L'espace de nom @code{(gnu packages @dots{})} est automatiquement scanné par les outils en ligne de commande. Par exemple, lorsque vous lancez @code{guix install emacs}, tous les modules @code{(gnu packages @dots{})} sont scannés jusqu'à en trouver un qui exporte un objet de paquet dont le nom est @code{emacs}. Cette capacité à chercher des paquets est implémentée dans le module @code{(gnu packages)}." #. type: cindex -#: guix-git/doc/guix.texi:6864 +#: guix-git/doc/guix.texi:6908 #, no-wrap msgid "package module search path" msgstr "chemin de recherche des modules de paquets" #. type: Plain text -#: guix-git/doc/guix.texi:6873 +#: guix-git/doc/guix.texi:6917 msgid "Users can store package definitions in modules with different names---e.g., @code{(my-packages emacs)}@footnote{Note that the file name and module name must match. For instance, the @code{(my-packages emacs)} module must be stored in a @file{my-packages/emacs.scm} file relative to the load path specified with @option{--load-path} or @env{GUIX_PACKAGE_PATH}. @xref{Modules and the File System,,, guile, GNU Guile Reference Manual}, for details.}. There are two ways to make these package definitions visible to the user interfaces:" msgstr "Les utilisateur·rice·s peuvent stocker les définitions de paquets dans des modules ayant des noms différents---par exemple, @code{(my-packages emacs)}@footnote{Remarquez que le nom du fichier et le nom du module doivent correspondre. Par exemple, le module @code{(my-packages emacs)} doit être stocké dans un fichier @file{my-packages/emacs.scm} relatif au chemin de chargement spécifié avec @option{--load-path} ou @env{GUIX_PACKAGE_PATH}. @xref{Modules and the File System,,, guile, GNU Guile Reference Manual}, pour plus de détails.}. Il y a deux façons de rendre ces définitions de paquets visibles pour les interfaces utilisateur·rice :" #. type: enumerate -#: guix-git/doc/guix.texi:6880 +#: guix-git/doc/guix.texi:6924 msgid "By adding the directory containing your package modules to the search path with the @code{-L} flag of @command{guix package} and other commands (@pxref{Common Build Options}), or by setting the @env{GUIX_PACKAGE_PATH} environment variable described below." msgstr "En ajoutant le répertoire contenant vos modules de paquets au chemin de recherche avec le tag @code{-L} de @command{guix package} et des autres commandes (@pxref{Common Build Options}) ou en indiquant la variable d'environnement @env{GUIX_PACKAGE_PATH} décrite plus bas." #. type: enumerate -#: guix-git/doc/guix.texi:6886 +#: guix-git/doc/guix.texi:6930 msgid "By defining a @dfn{channel} and configuring @command{guix pull} so that it pulls from it. A channel is essentially a Git repository containing package modules. @xref{Channels}, for more information on how to define and use channels." msgstr "En définissant un @dfn{canal} et en configurant @command{guix pull} pour qu'il l'utilise. Un canal est en substance un dépôt Git contenant des modules de paquets. @xref{Channels}, pour plus d'informations sur comment définir et utiliser des canaux." #. type: Plain text -#: guix-git/doc/guix.texi:6889 +#: guix-git/doc/guix.texi:6933 msgid "@env{GUIX_PACKAGE_PATH} works similarly to other search path variables:" msgstr "@env{GUIX_PACKAGE_PATH} fonctionne comme les autres variables de chemins de recherche :" #. type: defvr -#: guix-git/doc/guix.texi:6890 +#: guix-git/doc/guix.texi:6934 #, no-wrap msgid "{Environment Variable} GUIX_PACKAGE_PATH" msgstr "{Variable d'environnement} GUIX_PACKAGE_PATH" #. type: defvr -#: guix-git/doc/guix.texi:6894 +#: guix-git/doc/guix.texi:6938 msgid "This is a colon-separated list of directories to search for additional package modules. Directories listed in this variable take precedence over the own modules of the distribution." msgstr "C'est une liste séparée par des deux-points de répertoires dans lesquels trouver des modules de paquets supplémentaires. Les répertoires listés dans cette variable sont prioritaires par rapport aux paquets de la distribution." #. type: Plain text -#: guix-git/doc/guix.texi:6902 +#: guix-git/doc/guix.texi:6946 msgid "The distribution is fully @dfn{bootstrapped} and @dfn{self-contained}: each package is built based solely on other packages in the distribution. The root of this dependency graph is a small set of @dfn{bootstrap binaries}, provided by the @code{(gnu packages bootstrap)} module. For more information on bootstrapping, @pxref{Bootstrapping}." msgstr "La distribution est entièrement @dfn{bootstrappée} et @dfn{auto-contenue} : chaque paquet est construit uniquement à partir d'autres paquets de la distribution. La racine de ce graphe de dépendance est un petit ensemble de @dfn{binaires de bootstrap} fournis par le module @code{(gnu packages bootstrap)}. Pour plus d'informations sur le bootstrap, @pxref{Bootstrapping}." #. type: Plain text -#: guix-git/doc/guix.texi:6910 +#: guix-git/doc/guix.texi:6954 msgid "The high-level interface to package definitions is implemented in the @code{(guix packages)} and @code{(guix build-system)} modules. As an example, the package definition, or @dfn{recipe}, for the GNU Hello package looks like this:" msgstr "L'interface de haut-niveau pour les définitions de paquets est implémentée dans les modules @code{(guix packages)} et @code{(guix build-system)}. Par exemple, la définition du paquet, ou la @dfn{recette}, du paquet GNU Hello ressemble à cela :" #. type: lisp -#: guix-git/doc/guix.texi:6918 +#: guix-git/doc/guix.texi:6962 #, no-wrap msgid "" "(define-module (gnu packages hello)\n" @@ -14601,7 +14713,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:6937 +#: guix-git/doc/guix.texi:6981 #, no-wrap msgid "" "(define-public hello\n" @@ -14643,327 +14755,327 @@ msgstr "" " (license gpl3+)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:6947 +#: guix-git/doc/guix.texi:6991 msgid "Without being a Scheme expert, the reader may have guessed the meaning of the various fields here. This expression binds the variable @code{hello} to a @code{} object, which is essentially a record (@pxref{SRFI-9, Scheme records,, guile, GNU Guile Reference Manual}). This package object can be inspected using procedures found in the @code{(guix packages)} module; for instance, @code{(package-name hello)} returns---surprise!---@code{\"hello\"}." msgstr "Sans être expert·e en Scheme, on peut comprendre la signification des différents champs présents. Cette expression lie la variable @code{hello} à un objet @code{}, qui est en substance un enregistrement (@pxref{SRFI-9, Scheme records,, guile, GNU Guile Reference Manual}). On peut inspecter cet objet de paquet avec les procédures qui se trouvent dans le module @code{(guix packages)} ; par exemple, @code{(package-name hello)} renvoie — ô surprise ! — @code{\"hello\"}." #. type: Plain text -#: guix-git/doc/guix.texi:6951 +#: guix-git/doc/guix.texi:6995 msgid "With luck, you may be able to import part or all of the definition of the package you are interested in from another repository, using the @code{guix import} command (@pxref{Invoking guix import})." msgstr "Avec un peu de chance, vous pourrez importer tout ou partie de la définition du paquet qui vous intéresse depuis un autre répertoire avec la commande @code{guix import} (@pxref{Invoking guix import})." #. type: Plain text -#: guix-git/doc/guix.texi:6957 +#: guix-git/doc/guix.texi:7001 msgid "In the example above, @code{hello} is defined in a module of its own, @code{(gnu packages hello)}. Technically, this is not strictly necessary, but it is convenient to do so: all the packages defined in modules under @code{(gnu packages @dots{})} are automatically known to the command-line tools (@pxref{Package Modules})." msgstr "Dans l'exemple précédent, @code{hello} est défini dans un module à part, @code{(gnu packages hello)}. Techniquement, cela n'est pas strictement nécessaire, mais c'est pratique : tous les paquets définis dans des modules sous @code{(gnu packages @dots{})} sont automatiquement connus des outils en ligne de commande (@pxref{Package Modules})." #. type: Plain text -#: guix-git/doc/guix.texi:6959 +#: guix-git/doc/guix.texi:7003 msgid "There are a few points worth noting in the above package definition:" msgstr "Il y a quelques points à remarquer dans la définition de paquet précédente :" #. type: itemize -#: guix-git/doc/guix.texi:6966 +#: guix-git/doc/guix.texi:7010 msgid "The @code{source} field of the package is an @code{} object (@pxref{origin Reference}, for the complete reference). Here, the @code{url-fetch} method from @code{(guix download)} is used, meaning that the source is a file to be downloaded over FTP or HTTP." msgstr "Le champ @code{source} du paquet est un objet @code{} (@pxref{origin Reference}, pour la référence complète). Ici, on utilise la méthode @code{url-fetch} de @code{(guix download)}, ce qui signifie que la source est un fichier à télécharger par FTP ou HTTP." #. type: itemize -#: guix-git/doc/guix.texi:6969 +#: guix-git/doc/guix.texi:7013 msgid "The @code{mirror://gnu} prefix instructs @code{url-fetch} to use one of the GNU mirrors defined in @code{(guix download)}." msgstr "Le préfixe @code{mirror://gnu} demande à @code{url-fetch} d'utiliser l'un des miroirs GNU définis dans @code{(guix download)}." #. type: itemize -#: guix-git/doc/guix.texi:6976 +#: guix-git/doc/guix.texi:7020 msgid "The @code{sha256} field specifies the expected SHA256 hash of the file being downloaded. It is mandatory, and allows Guix to check the integrity of the file. The @code{(base32 @dots{})} form introduces the base32 representation of the hash. You can obtain this information with @code{guix download} (@pxref{Invoking guix download}) and @code{guix hash} (@pxref{Invoking guix hash})." msgstr "Le champ @code{sha256} spécifie le hash SHA256 attendu pour le fichier téléchargé. Il est requis et permet à Guix de vérifier l'intégrité du fichier. La forme @code{(base32 @dots{})} introduit a représentation en base32 du hash. Vous pouvez obtenir cette information avec @code{guix download} (@pxref{Invoking guix download}) et @code{guix hash} (@pxref{Invoking guix hash})." #. type: cindex -#: guix-git/doc/guix.texi:6977 +#: guix-git/doc/guix.texi:7021 #, no-wrap msgid "patches" msgstr "correctifs" #. type: itemize -#: guix-git/doc/guix.texi:6981 +#: guix-git/doc/guix.texi:7025 msgid "When needed, the @code{origin} form can also have a @code{patches} field listing patches to be applied, and a @code{snippet} field giving a Scheme expression to modify the source code." msgstr "Lorsque cela est requis, la forme @code{origin} peut aussi avec un champ @code{patches} qui liste les correctifs à appliquer et un champ @code{snippet} qui donne une expression Scheme pour modifier le code source." #. type: cindex -#: guix-git/doc/guix.texi:6983 +#: guix-git/doc/guix.texi:7027 #, no-wrap msgid "GNU Build System" msgstr "Système de construction GNU" #. type: itemize -#: guix-git/doc/guix.texi:6989 +#: guix-git/doc/guix.texi:7033 msgid "The @code{build-system} field specifies the procedure to build the package (@pxref{Build Systems}). Here, @code{gnu-build-system} represents the familiar GNU Build System, where packages may be configured, built, and installed with the usual @code{./configure && make && make check && make install} command sequence." msgstr "Le champ @code{build-system} spécifie la procédure pour construire le paquet (@pxref{Build Systems}). Ici, @code{gnu-build-system} représente le système de construction GNU familier, où les paquets peuvent être configurés, construits et installés avec la séquence @code{./configure && make && make check && make install} habituelle." #. type: itemize -#: guix-git/doc/guix.texi:6993 +#: guix-git/doc/guix.texi:7037 msgid "When you start packaging non-trivial software, you may need tools to manipulate those build phases, manipulate files, and so on. @xref{Build Utilities}, for more on this." msgstr "Lorsque vous commencez à empaqueter des logiciels non triviaux, vous pouvez avoir besoin d'outils pour manipuler ces phases de construction, manipuler des fichiers, etc. @xref{Build Utilities}, pour en savoir plus." #. type: itemize -#: guix-git/doc/guix.texi:6999 +#: guix-git/doc/guix.texi:7043 msgid "The @code{arguments} field specifies options for the build system (@pxref{Build Systems}). Here it is interpreted by @code{gnu-build-system} as a request run @file{configure} with the @option{--enable-silent-rules} flag." msgstr "Le champ @code{arguments} spécifie des options pour le système de construction (@pxref{Build Systems}). Ici il est interprété par @code{gnu-build-system} comme une demande de lancer @file{configure} avec le tag @option{--enable-silent-rules}." #. type: findex -#: guix-git/doc/guix.texi:7000 guix-git/doc/guix.texi:7003 +#: guix-git/doc/guix.texi:7044 guix-git/doc/guix.texi:7047 #, no-wrap msgid "quote" msgstr "quote" #. type: cindex -#: guix-git/doc/guix.texi:7001 +#: guix-git/doc/guix.texi:7045 #, no-wrap msgid "quoting" msgstr "quoting" #. type: findex -#: guix-git/doc/guix.texi:7002 +#: guix-git/doc/guix.texi:7046 #, no-wrap msgid "'" msgstr "'" #. type: cindex -#: guix-git/doc/guix.texi:7004 +#: guix-git/doc/guix.texi:7048 #, no-wrap msgid "backquote (quasiquote)" msgstr "accent grave (quasiquote)" #. type: findex -#: guix-git/doc/guix.texi:7005 +#: guix-git/doc/guix.texi:7049 #, no-wrap msgid "`" msgstr "`" #. type: findex -#: guix-git/doc/guix.texi:7006 +#: guix-git/doc/guix.texi:7050 #, no-wrap msgid "quasiquote" msgstr "quasiquote" #. type: cindex -#: guix-git/doc/guix.texi:7007 +#: guix-git/doc/guix.texi:7051 #, no-wrap msgid "comma (unquote)" msgstr "virgule (unquote)" #. type: findex -#: guix-git/doc/guix.texi:7008 +#: guix-git/doc/guix.texi:7052 #, no-wrap msgid "," msgstr "," #. type: findex -#: guix-git/doc/guix.texi:7009 +#: guix-git/doc/guix.texi:7053 #, no-wrap msgid "unquote" msgstr "unquote" #. type: itemize -#: guix-git/doc/guix.texi:7019 +#: guix-git/doc/guix.texi:7063 msgid "What about these quote (@code{'}) characters? They are Scheme syntax to introduce a literal list; @code{'} is synonymous with @code{quote}. Sometimes you'll also see @code{`} (a backquote, synonymous with @code{quasiquote}) and @code{,} (a comma, synonymous with @code{unquote}). @xref{Expression Syntax, quoting,, guile, GNU Guile Reference Manual}, for details. Here the value of the @code{arguments} field is a list of arguments passed to the build system down the road, as with @code{apply} (@pxref{Fly Evaluation, @code{apply},, guile, GNU Guile Reference Manual})." msgstr "Que sont ces apostrophes (@code{'}) ? C'est de la syntaxe Scheme pour introduire une liste ; @code{'} est synonyme de la fonction @code{quote}. Parfois vous verrez aussi @code{`} (un accent grave synonyme de @code{quasiquote}) et @code{,} (une virgule, synonyme de @code{unquote}). @xref{Expression Syntax, quoting,, guile, GNU Guile Reference Manual}, pour des détails. Ice la valeur du champ @code{arguments} est une liste d'arguments passés au système de construction plus tard, comme avec @code{apply} (@pxref{Fly Evaluation, @code{apply},, guile, GNU Guile Reference Manual})." #. type: itemize -#: guix-git/doc/guix.texi:7025 +#: guix-git/doc/guix.texi:7069 msgid "The hash-colon (@code{#:}) sequence defines a Scheme @dfn{keyword} (@pxref{Keywords,,, guile, GNU Guile Reference Manual}), and @code{#:configure-flags} is a keyword used to pass a keyword argument to the build system (@pxref{Coding With Keywords,,, guile, GNU Guile Reference Manual})." msgstr "La séquence dièse-deux-points (@code{#:}) définie un @dfn{mot-clef} Scheme (@pxref{Keywords,,, guile, GNU Guile Reference Manual}), et @code{#:configure-flags} est un mot-clef utilisé pour passer un argument au système de construction (@pxref{Coding With Keywords,,, guile, GNU Guile Reference Manual})." #. type: itemize -#: guix-git/doc/guix.texi:7031 +#: guix-git/doc/guix.texi:7075 msgid "The @code{inputs} field specifies inputs to the build process---i.e., build-time or run-time dependencies of the package. Here, we add an input, a reference to the @code{gawk} variable; @code{gawk} is itself bound to a @code{} object." msgstr "Le champ @code{inputs} spécifie les entrées du processus de construction — c.-à-d.@: les dépendances à la construction ou à l'exécution du paquet. Ici, nous ajoutons en entrée une référence à la variable @code{gawk} ; @code{gawk} est lui-même lié à un objet @code{}." #. type: itemize -#: guix-git/doc/guix.texi:7035 +#: guix-git/doc/guix.texi:7079 msgid "Note that GCC, Coreutils, Bash, and other essential tools do not need to be specified as inputs here. Instead, @code{gnu-build-system} takes care of ensuring that they are present (@pxref{Build Systems})." msgstr "Remarquez que GCC, Coreutils, Bash et les autres outils essentiels n'ont pas besoin d'être spécifiés en tant qu'entrées ici. À la place, le @code{gnu-build-system} est en mesure de s'assurer qu'ils sont présents (@pxref{Build Systems})." #. type: itemize -#: guix-git/doc/guix.texi:7039 +#: guix-git/doc/guix.texi:7083 msgid "However, any other dependencies need to be specified in the @code{inputs} field. Any dependency not specified here will simply be unavailable to the build process, possibly leading to a build failure." msgstr "Cependant, toutes les autres dépendances doivent être spécifiées dans le champ @code{inputs}. Toute dépendance qui ne serait pas spécifiée ici sera simplement indisponible pour le processus de construction, ce qui peut mener à un échec de la construction." #. type: Plain text -#: guix-git/doc/guix.texi:7042 +#: guix-git/doc/guix.texi:7086 msgid "@xref{package Reference}, for a full description of possible fields." msgstr "@xref{package Reference}, pour une description complète des champs possibles." #. type: Plain text -#: guix-git/doc/guix.texi:7053 +#: guix-git/doc/guix.texi:7097 msgid "Once a package definition is in place, the package may actually be built using the @code{guix build} command-line tool (@pxref{Invoking guix build}), troubleshooting any build failures you encounter (@pxref{Debugging Build Failures}). You can easily jump back to the package definition using the @command{guix edit} command (@pxref{Invoking guix edit}). @xref{Packaging Guidelines}, for more information on how to test package definitions, and @ref{Invoking guix lint}, for information on how to check a definition for style conformance." msgstr "Lorsqu'une définition de paquet est en place, le paquet peut enfin être construit avec l'outil en ligne de commande @code{guix build} (@pxref{Invoking guix build}), pour résoudre les échecs de construction que vous pourriez rencontrer (@pxref{Debugging Build Failures}). Vous pouvez aisément revenir à la définition du paquet avec la commande @command{guix edit} (@pxref{Invoking guix edit}). @xref{Packaging Guidelines}, pour plus d'informations sur la manière de tester des définitions de paquets et @ref{Invoking guix lint}, pour des informations sur la manière de vérifier que la définition respecte les conventions de style." #. type: vindex -#: guix-git/doc/guix.texi:7053 +#: guix-git/doc/guix.texi:7097 #, no-wrap msgid "GUIX_PACKAGE_PATH" msgstr "GUIX_PACKAGE_PATH" #. type: Plain text -#: guix-git/doc/guix.texi:7057 +#: guix-git/doc/guix.texi:7101 msgid "Lastly, @pxref{Channels}, for information on how to extend the distribution by adding your own package definitions in a ``channel''." msgstr "Enfin, @pxref{Channels} pour des informations sur la manière d'étendre la distribution en ajoutant vos propres définitions de paquets dans un « canal »." #. type: Plain text -#: guix-git/doc/guix.texi:7061 +#: guix-git/doc/guix.texi:7105 msgid "Finally, updating the package definition to a new upstream version can be partly automated by the @command{guix refresh} command (@pxref{Invoking guix refresh})." msgstr "Finalement, la mise à jour de la définition du paquet à une nouvelle version amont peut en partie s'automatiser avec la commande @command{guix refresh} (@pxref{Invoking guix refresh})." #. type: Plain text -#: guix-git/doc/guix.texi:7067 +#: guix-git/doc/guix.texi:7111 msgid "Behind the scenes, a derivation corresponding to the @code{} object is first computed by the @code{package-derivation} procedure. That derivation is stored in a @file{.drv} file under @file{/gnu/store}. The build actions it prescribes may then be realized by using the @code{build-derivations} procedure (@pxref{The Store})." msgstr "Sous le capot, une dérivation qui correspond à un objet @code{} est d'abord calculé par la procédure @code{package-derivation}. Cette dérivation est stockée dans un fichier @file{.drv} dans @file{/gnu/store}. Les actions de construction qu'il prescrit peuvent ensuite être réalisées par la procédure @code{build-derivation} (@pxref{The Store})." #. type: deffn -#: guix-git/doc/guix.texi:7068 +#: guix-git/doc/guix.texi:7112 #, no-wrap msgid "{Scheme Procedure} package-derivation @var{store} @var{package} [@var{system}]" msgstr "{Procédure Scheme} package-derivation @var{store} @var{package} [@var{system}]" #. type: deffn -#: guix-git/doc/guix.texi:7071 +#: guix-git/doc/guix.texi:7115 msgid "Return the @code{} object of @var{package} for @var{system} (@pxref{Derivations})." msgstr "Renvoie l'objet @code{} du @var{paquet} pour le @var{système} (@pxref{Derivations})." #. type: deffn -#: guix-git/doc/guix.texi:7077 +#: guix-git/doc/guix.texi:7121 msgid "@var{package} must be a valid @code{} object, and @var{system} must be a string denoting the target system type---e.g., @code{\"x86_64-linux\"} for an x86_64 Linux-based GNU system. @var{store} must be a connection to the daemon, which operates on the store (@pxref{The Store})." msgstr "@var{paquet} doit être un objet @code{} valide et @var{système} une chaîne indiquant le type de système cible — p.@: ex.@: @code{\"x86_64-linux\"} pour un système GNU x86_64 basé sur Linux. @var{dépôt} doit être une connexion au démon, qui opère sur les dépôt (@pxref{The Store})." #. type: Plain text -#: guix-git/doc/guix.texi:7083 +#: guix-git/doc/guix.texi:7127 msgid "Similarly, it is possible to compute a derivation that cross-builds a package for some other system:" msgstr "De manière identique, il est possible de calculer une dérivation qui effectue une compilation croisée d'un paquet pour un autre système :" #. type: deffn -#: guix-git/doc/guix.texi:7084 +#: guix-git/doc/guix.texi:7128 #, no-wrap msgid "{Scheme Procedure} package-cross-derivation @var{store} @" msgstr "{Procédure Scheme} package-cross-derivation @var{store} @" #. type: deffn -#: guix-git/doc/guix.texi:7088 +#: guix-git/doc/guix.texi:7132 msgid "@var{package} @var{target} [@var{system}] Return the @code{} object of @var{package} cross-built from @var{system} to @var{target}." msgstr "@var{paquet} @var{cible} [@var{système}] renvoie l'objet @code{} du @var{paquet} construit depuis @var{système} pour @var{cible}." #. type: deffn -#: guix-git/doc/guix.texi:7092 +#: guix-git/doc/guix.texi:7136 msgid "@var{target} must be a valid GNU triplet denoting the target hardware and operating system, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying Target Triplets,,, autoconf, Autoconf})." msgstr "@var{cible} doit être un triplet GNU valide indiquant le matériel cible et le système d'exploitation, comme @code{\"aarch64-linux-gnu\"} (@pxref{Specifying Target Triplets,,, autoconf, Autoconf})." #. type: Plain text -#: guix-git/doc/guix.texi:7096 +#: guix-git/doc/guix.texi:7140 msgid "Once you have package definitions, you can easily define @emph{variants} of those packages. @xref{Defining Package Variants}, for more on that." msgstr "Une fois qu'on a une définition de paquet, on peut facilement définir des @emph{variantes} du paquet. @xref{Defining Package Variants}, pour plus d'informations." #. type: subsection -#: guix-git/doc/guix.texi:7104 +#: guix-git/doc/guix.texi:7148 #, no-wrap msgid "@code{package} Reference" msgstr "Référence de @code{package}" #. type: Plain text -#: guix-git/doc/guix.texi:7108 +#: guix-git/doc/guix.texi:7152 msgid "This section summarizes all the options available in @code{package} declarations (@pxref{Defining Packages})." msgstr "Cette section résume toutes les options disponibles dans les déclarations @code{package} (@pxref{Defining Packages})." #. type: deftp -#: guix-git/doc/guix.texi:7109 +#: guix-git/doc/guix.texi:7153 #, no-wrap msgid "{Data Type} package" msgstr "{Type de données} package" #. type: deftp -#: guix-git/doc/guix.texi:7111 +#: guix-git/doc/guix.texi:7155 msgid "This is the data type representing a package recipe." msgstr "C'est le type de donnée représentant une recette de paquets." #. type: table -#: guix-git/doc/guix.texi:7115 +#: guix-git/doc/guix.texi:7159 msgid "The name of the package, as a string." msgstr "Le nom du paquet, comme une chaîne de caractères." #. type: code{#1} -#: guix-git/doc/guix.texi:7116 +#: guix-git/doc/guix.texi:7160 #, no-wrap msgid "version" msgstr "version" #. type: table -#: guix-git/doc/guix.texi:7119 +#: guix-git/doc/guix.texi:7163 msgid "The version of the package, as a string. @xref{Version Numbers}, for guidelines." msgstr "La version du paquet, comme une chaine de caractères. @xref{Version Numbers}, pour un guide." #. type: code{#1} -#: guix-git/doc/guix.texi:7120 guix-git/doc/guix.texi:12900 -#: guix-git/doc/guix.texi:15181 guix-git/doc/guix.texi:15790 +#: guix-git/doc/guix.texi:7164 guix-git/doc/guix.texi:13257 +#: guix-git/doc/guix.texi:15538 guix-git/doc/guix.texi:16147 #, no-wrap msgid "source" msgstr "source" #. type: table -#: guix-git/doc/guix.texi:7127 +#: guix-git/doc/guix.texi:7171 msgid "An object telling how the source code for the package should be acquired. Most of the time, this is an @code{origin} object, which denotes a file fetched from the Internet (@pxref{origin Reference}). It can also be any other ``file-like'' object such as a @code{local-file}, which denotes a file from the local file system (@pxref{G-Expressions, @code{local-file}})." msgstr "Un objet qui indique comment le code source du paquet devrait être récupéré. La plupart du temps, c'est un objet @code{origin} qui indique un fichier récupéré depuis internet (@pxref{origin Reference}). Il peut aussi s'agir de tout autre objet « simili-fichier » comme un @code{local-file} qui indique un fichier du système de fichier local (@pxref{G-Expressions, @code{local-file}})." #. type: code{#1} -#: guix-git/doc/guix.texi:7128 +#: guix-git/doc/guix.texi:7172 #, no-wrap msgid "build-system" msgstr "build-system" #. type: table -#: guix-git/doc/guix.texi:7131 +#: guix-git/doc/guix.texi:7175 msgid "The build system that should be used to build the package (@pxref{Build Systems})." msgstr "Le système de construction qui devrait être utilisé pour construire le paquet (@pxref{Build Systems})." #. type: item -#: guix-git/doc/guix.texi:7132 guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:7176 guix-git/doc/guix.texi:18315 #, no-wrap msgid "@code{arguments} (default: @code{'()})" msgstr "@code{arguments} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:7135 +#: guix-git/doc/guix.texi:7179 msgid "The arguments that should be passed to the build system. This is a list, typically containing sequential keyword-value pairs." msgstr "Les arguments à passer au système de construction. C'est une liste qui contient typiquement une séquence de paires de clefs-valeurs." #. type: item -#: guix-git/doc/guix.texi:7136 +#: guix-git/doc/guix.texi:7180 #, no-wrap msgid "@code{inputs} (default: @code{'()})" msgstr "@code{inputs} (par défaut : @code{'()})" #. type: itemx -#: guix-git/doc/guix.texi:7137 +#: guix-git/doc/guix.texi:7181 #, no-wrap msgid "@code{native-inputs} (default: @code{'()})" msgstr "@code{native-inputs} (par défaut : @code{'()})" #. type: itemx -#: guix-git/doc/guix.texi:7138 +#: guix-git/doc/guix.texi:7182 #, no-wrap msgid "@code{propagated-inputs} (default: @code{'()})" msgstr "@code{propagated-inputs} (par défaut : @code{'()})" #. type: cindex -#: guix-git/doc/guix.texi:7139 +#: guix-git/doc/guix.texi:7183 #, no-wrap msgid "inputs, of packages" msgstr "entrées, des paquets" #. type: table -#: guix-git/doc/guix.texi:7146 +#: guix-git/doc/guix.texi:7190 msgid "These fields list dependencies of the package. Each element of these lists is either a package, origin, or other ``file-like object'' (@pxref{G-Expressions}); to specify the output of that file-like object that should be used, pass a two-element list where the second element is the output (@pxref{Packages with Multiple Outputs}, for more on package outputs). For example, the list below specifies three inputs:" msgstr "Ces champs listent les dépendances du paquet. Chacune de ces listes est soit un paquet, une origine ou un autre « objet simili-fichier » (@pxref{G-Expressions}) ; pour spécifier la sortie de cet objet simili-fichier à utiliser, passez une liste à deux éléments où le second élément est la sortie (@pxref{Packages with Multiple Outputs}, pour plus d'informations sur les sorties des paquets). Par exemple, la liste suivante spécifie trois entrées :" #. type: lisp -#: guix-git/doc/guix.texi:7150 +#: guix-git/doc/guix.texi:7194 #, no-wrap msgid "" "(list libffi libunistring\n" @@ -14973,209 +15085,218 @@ msgstr "" " `(,glib \"bin\")) ;la sortie « bin » de GLib\n" #. type: table -#: guix-git/doc/guix.texi:7154 +#: guix-git/doc/guix.texi:7198 msgid "In the example above, the @code{\"out\"} output of @code{libffi} and @code{libunistring} is used." msgstr "Dans l'exemple au-dessus, on utilise la sortie @code{\"out\"} de @code{libffi} et de @code{libunistring}." #. type: quotation -#: guix-git/doc/guix.texi:7155 +#: guix-git/doc/guix.texi:7199 #, no-wrap msgid "Compatibility Note" msgstr "Notes de compatibilité" #. type: quotation -#: guix-git/doc/guix.texi:7162 +#: guix-git/doc/guix.texi:7206 msgid "Until version 1.3.0, input lists were a list of tuples, where each tuple has a label for the input (a string) as its first element, a package, origin, or derivation as its second element, and optionally the name of the output thereof that should be used, which defaults to @code{\"out\"}. For example, the list below is equivalent to the one above, but using the @dfn{old input style}:" msgstr "Jusqu'à la version 1.3.0, les listes d'entrées étaient des listes de tuples, où chaque tuple a une étiquette pour une entrée (une chaîne de caractères) comme premier élément, un paquet, une origine ou une dérivation comme deuxième élément et éventuellement le nom d'une sortie à utiliser qui est @code{\"out\"} par défaut. Par exemple, la liste ci-dessous est équivalente à celle au-dessus, mais utilise @dfn{l'ancien style d'entrées} :" #. type: lisp -#: guix-git/doc/guix.texi:7168 -#, fuzzy, no-wrap -#| msgid "" -#| "`((\"libffi\" ,libffi)\n" -#| " (\"libunistring\" ,libunistring)\n" -#| " (\"glib:bin\" ,glib \"bin\")) ;the \"bin\" output of Glib\n" +#: guix-git/doc/guix.texi:7212 +#, no-wrap msgid "" ";; Old input style (deprecated).\n" "`((\"libffi\" ,libffi)\n" " (\"libunistring\" ,libunistring)\n" " (\"glib:bin\" ,glib \"bin\")) ;the \"bin\" output of GLib\n" msgstr "" +";; Ancien style d'entrées (obsolète)\n" "`((\"libffi\" ,libffi)\n" " (\"libunistring\" ,libunistring)\n" " (\"glib:bin\" ,glib \"bin\")) ;la sortie \"bin\" de Glib\n" #. type: quotation -#: guix-git/doc/guix.texi:7174 +#: guix-git/doc/guix.texi:7218 msgid "This style is now deprecated; it is still supported but support will be removed in a future version. It should not be used for new package definitions. @xref{Invoking guix style}, on how to migrate to the new style." -msgstr "" +msgstr "Ce style est maintenant obsolète ; il est toujours pris en charge mais la prise en charge sera supprimée dans une future version. Vous ne devriez pas l'utiliser pour de nouvelles définitions de paquets. @xref{Invoking guix style}, pour apprendre à migrer vers le nouveau style." #. type: cindex -#: guix-git/doc/guix.texi:7176 +#: guix-git/doc/guix.texi:7220 #, no-wrap msgid "cross compilation, package dependencies" msgstr "compilation croisée, dépendances des paquets" #. type: table -#: guix-git/doc/guix.texi:7182 +#: guix-git/doc/guix.texi:7226 msgid "The distinction between @code{native-inputs} and @code{inputs} is necessary when considering cross-compilation. When cross-compiling, dependencies listed in @code{inputs} are built for the @emph{target} architecture; conversely, dependencies listed in @code{native-inputs} are built for the architecture of the @emph{build} machine." msgstr "La distinction entre @code{native-inputs} et @code{inputs} est nécessaire lorsqu'on considère la compilation croisée. Lors d'une compilation croisée, les dépendances listées dans @code{inputs} sont construites pour l'architecture @emph{cible} ; inversement, les dépendances listées dans @code{native-inputs} sont construites pour l'architecture de la machine de @emph{construction}." #. type: table -#: guix-git/doc/guix.texi:7187 +#: guix-git/doc/guix.texi:7231 msgid "@code{native-inputs} is typically used to list tools needed at build time, but not at run time, such as Autoconf, Automake, pkg-config, Gettext, or Bison. @command{guix lint} can report likely mistakes in this area (@pxref{Invoking guix lint})." msgstr "@code{native-inputs} est typiquement utilisé pour lister les outils requis à la construction mais pas à l'exécution, comme Autoconf, Automake, pkg-config, Gettext ou Bison. @command{guix lint} peut rapporter des erreurs de ce type (@pxref{Invoking guix lint})." #. type: anchor{#1} -#: guix-git/doc/guix.texi:7195 +#: guix-git/doc/guix.texi:7239 msgid "package-propagated-inputs" msgstr "package-propagated-inputs" #. type: table -#: guix-git/doc/guix.texi:7195 +#: guix-git/doc/guix.texi:7239 msgid "Lastly, @code{propagated-inputs} is similar to @code{inputs}, but the specified packages will be automatically installed to profiles (@pxref{Features, the role of profiles in Guix}) alongside the package they belong to (@pxref{package-cmd-propagated-inputs, @command{guix package}}, for information on how @command{guix package} deals with propagated inputs)." msgstr "Enfin, @code{propagated-inputs} est similaire à @code{inputs}, mais les paquets spécifiés seront automatiquement installés sur les profils (@pxref{Features, le rôle des profils dans Guix}) à côté du paquet auquel ils appartiennent (@pxref{package-cmd-propagated-inputs, @command{guix package}}, pour savoir comment @command{guix package} traite les entrées propagées)." #. type: table -#: guix-git/doc/guix.texi:7199 +#: guix-git/doc/guix.texi:7243 msgid "For example this is necessary when packaging a C/C++ library that needs headers of another library to compile, or when a pkg-config file refers to another one @i{via} its @code{Requires} field." msgstr "Par exemple, cela est nécessaire lors de l'empaquetage d'une bibliothèque C/C++ qui a besoin des en-têtes d'une autre bibliothèque pour se compiler, ou lorsqu'un fichier pkg-config fait référence à un autre @i{via} son champ @code{Requires}." #. type: table -#: guix-git/doc/guix.texi:7206 +#: guix-git/doc/guix.texi:7250 msgid "Another example where @code{propagated-inputs} is useful is for languages that lack a facility to record the run-time search path akin to the @code{RUNPATH} of ELF files; this includes Guile, Python, Perl, and more. When packaging libraries written in those languages, ensure they can find library code they depend on at run time by listing run-time dependencies in @code{propagated-inputs} rather than @code{inputs}." msgstr "Un autre exemple où le @code{propagated-inputs} est utile, c'est pour les langues qui ne disposent pas de la possibilité d'enregistrer le chemin de recherche à l'exécution comme le @code{RUNPATH} des fichiers ELF ; cela inclut Guile, Python, Perl, et plus encore. Lors de l'empaquetage de bibliothèques écrites dans ces langages, assurez-vous qu'elles peuvent trouver le code de bibliothèque dont elles dépendent au moment de l'exécution en listant les dépendances d'exécution dans @code{propagated-inputs} plutôt que @code{inputs}." #. type: item -#: guix-git/doc/guix.texi:7207 +#: guix-git/doc/guix.texi:7251 #, no-wrap msgid "@code{outputs} (default: @code{'(\"out\")})" msgstr "@code{outputs} (par défaut : @code{'(\"out\")})" #. type: table -#: guix-git/doc/guix.texi:7210 +#: guix-git/doc/guix.texi:7254 msgid "The list of output names of the package. @xref{Packages with Multiple Outputs}, for typical uses of additional outputs." msgstr "La liste des noms de sorties du paquet. @xref{Packages with Multiple Outputs}, pour des exemples typiques d'utilisation de sorties supplémentaires." #. type: item -#: guix-git/doc/guix.texi:7211 +#: guix-git/doc/guix.texi:7255 #, no-wrap msgid "@code{native-search-paths} (default: @code{'()})" msgstr "@code{native-search-paths} (par défaut : @code{'()})" #. type: itemx -#: guix-git/doc/guix.texi:7212 +#: guix-git/doc/guix.texi:7256 #, no-wrap msgid "@code{search-paths} (default: @code{'()})" msgstr "@code{search-paths} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:7215 -msgid "A list of @code{search-path-specification} objects describing search-path environment variables honored by the package." +#: guix-git/doc/guix.texi:7260 +#, fuzzy +#| msgid "A list of @code{search-path-specification} objects describing search-path environment variables honored by the package." +msgid "A list of @code{search-path-specification} objects describing search-path environment variables honored by the package. @xref{Search Paths}, for more on search path specifications." msgstr "Une liste d'objets @code{search-path-specification} décrivant les variables d'environnement de recherche de chemins que ce paquet utilise." +#. type: table +#: guix-git/doc/guix.texi:7266 +msgid "As for inputs, the distinction between @code{native-search-paths} and @code{search-paths} only matters when cross-compiling. In a cross-compilation context, @code{native-search-paths} applies exclusively to native inputs whereas @code{search-paths} applies only to host inputs." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:7273 +msgid "Packages such as cross-compilers care about target inputs---for instance, our (modified) GCC cross-compiler has @env{CROSS_C_INCLUDE_PATH} in @code{search-paths}, which allows it to pick @file{.h} files for the target system and @emph{not} those of native inputs. For the majority of packages though, only @code{native-search-paths} makes sense." +msgstr "" + #. type: item -#: guix-git/doc/guix.texi:7216 +#: guix-git/doc/guix.texi:7274 #, no-wrap msgid "@code{replacement} (default: @code{#f})" msgstr "@code{replacement} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:7220 +#: guix-git/doc/guix.texi:7278 msgid "This must be either @code{#f} or a package object that will be used as a @dfn{replacement} for this package. @xref{Security Updates, grafts}, for details." msgstr "Ce champ doit être soit @code{#f} soit un objet de paquet qui sera utilisé comme @dfn{remplaçant} de ce paquet. @xref{Security Updates, grafts}, pour plus de détails." #. type: item -#: guix-git/doc/guix.texi:7221 guix-git/doc/guix.texi:12892 +#: guix-git/doc/guix.texi:7279 guix-git/doc/guix.texi:13249 #, no-wrap msgid "synopsis" msgstr "synopsis" #. type: table -#: guix-git/doc/guix.texi:7223 +#: guix-git/doc/guix.texi:7281 msgid "A one-line description of the package." msgstr "Une description sur une ligne du paquet." #. type: code{#1} -#: guix-git/doc/guix.texi:7224 guix-git/doc/guix.texi:12893 -#: guix-git/doc/guix.texi:35959 guix-git/doc/guix.texi:36119 +#: guix-git/doc/guix.texi:7282 guix-git/doc/guix.texi:13250 +#: guix-git/doc/guix.texi:36449 guix-git/doc/guix.texi:36609 #, no-wrap msgid "description" msgstr "description" #. type: table -#: guix-git/doc/guix.texi:7226 +#: guix-git/doc/guix.texi:7284 msgid "A more elaborate description of the package." msgstr "Une description plus détaillée du paquet." #. type: code{#1} -#: guix-git/doc/guix.texi:7227 +#: guix-git/doc/guix.texi:7285 #, no-wrap msgid "license" msgstr "license" #. type: cindex -#: guix-git/doc/guix.texi:7228 +#: guix-git/doc/guix.texi:7286 #, no-wrap msgid "license, of packages" msgstr "licence, des paquets" #. type: table -#: guix-git/doc/guix.texi:7231 +#: guix-git/doc/guix.texi:7289 msgid "The license of the package; a value from @code{(guix licenses)}, or a list of such values." msgstr "La licence du paquet ; une valeur tirée de @code{(guix licenses)} ou une liste de ces valeurs." #. type: itemx -#: guix-git/doc/guix.texi:7232 guix-git/doc/guix.texi:12901 +#: guix-git/doc/guix.texi:7290 guix-git/doc/guix.texi:13258 #, no-wrap msgid "home-page" msgstr "home-page" #. type: table -#: guix-git/doc/guix.texi:7234 +#: guix-git/doc/guix.texi:7292 msgid "The URL to the home-page of the package, as a string." msgstr "L'URL de la page d'accueil du paquet, en tant que chaîne de caractères." #. type: item -#: guix-git/doc/guix.texi:7235 +#: guix-git/doc/guix.texi:7293 #, no-wrap msgid "@code{supported-systems} (default: @code{%supported-systems})" msgstr "@code{supported-systems} (par défaut : @code{%supported-systems})" #. type: table -#: guix-git/doc/guix.texi:7238 +#: guix-git/doc/guix.texi:7296 msgid "The list of systems supported by the package, as strings of the form @code{architecture-kernel}, for example @code{\"x86_64-linux\"}." msgstr "La liste des systèmes supportés par le paquet, comme des chaînes de caractères de la forme @code{architecture-noyau}, par exemple @code{\"x86_64-linux\"}." #. type: item -#: guix-git/doc/guix.texi:7239 +#: guix-git/doc/guix.texi:7297 #, no-wrap msgid "@code{location} (default: source location of the @code{package} form)" msgstr "@code{location} (par défaut : emplacement de la source de la forme @code{package})" #. type: table -#: guix-git/doc/guix.texi:7243 +#: guix-git/doc/guix.texi:7301 msgid "The source location of the package. It is useful to override this when inheriting from another package, in which case this field is not automatically corrected." msgstr "L'emplacement de la source du paquet. C'est utile de le remplacer lorsqu'on hérite d'un autre paquet, auquel cas ce champ n'est pas automatiquement corrigé." #. type: deffn -#: guix-git/doc/guix.texi:7246 +#: guix-git/doc/guix.texi:7304 #, no-wrap msgid "{Scheme Syntax} this-package" msgstr "{Syntaxe Scheme} this-package" #. type: deffn -#: guix-git/doc/guix.texi:7249 +#: guix-git/doc/guix.texi:7307 msgid "When used in the @emph{lexical scope} of a package field definition, this identifier resolves to the package being defined." msgstr "Lorsque vous l'utilisez dans la @emph{portée lexicale} du champ d'une définition de paquet, cet identifiant est résolu comme étant le paquet définit." #. type: deffn -#: guix-git/doc/guix.texi:7252 +#: guix-git/doc/guix.texi:7310 msgid "The example below shows how to add a package as a native input of itself when cross-compiling:" msgstr "L'exemple ci-dessous montre l'ajout d'un paquet comme entrée native de lui-même pour la compilation croisée :" #. type: lisp -#: guix-git/doc/guix.texi:7257 +#: guix-git/doc/guix.texi:7315 #, no-wrap msgid "" "(package\n" @@ -15189,7 +15310,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7263 +#: guix-git/doc/guix.texi:7321 #, no-wrap msgid "" " ;; When cross-compiled, Guile, for example, depends on\n" @@ -15205,55 +15326,51 @@ msgstr "" " '())))\n" #. type: deffn -#: guix-git/doc/guix.texi:7266 +#: guix-git/doc/guix.texi:7324 msgid "It is an error to refer to @code{this-package} outside a package definition." msgstr "C'est une erreur que de se référer à @code{this-package} en dehors de la définition d'un paquet." #. type: Plain text -#: guix-git/doc/guix.texi:7270 +#: guix-git/doc/guix.texi:7328 msgid "The following helper procedures are provided to help deal with package inputs." -msgstr "" +msgstr "Les procédures auxiliaires suivantes vous aideront à utiliser les entrées des paquets." #. type: deffn -#: guix-git/doc/guix.texi:7271 -#, fuzzy, no-wrap -#| msgid "{Scheme Procedure} inferior-package-inputs @var{package}" +#: guix-git/doc/guix.texi:7329 +#, no-wrap msgid "{Scheme Procedure} lookup-package-input @var{package} @var{name}" -msgstr "{Procédure Scheme} inferior-package-inputs @var{package}" +msgstr "{Procédure Scheme} lookup-package-input @var{package} @var{name}" #. type: deffnx -#: guix-git/doc/guix.texi:7272 -#, fuzzy, no-wrap -#| msgid "{Scheme Procedure} inferior-package-native-inputs @var{package}" +#: guix-git/doc/guix.texi:7330 +#, no-wrap msgid "{Scheme Procedure} lookup-package-native-input @var{package} @var{name}" -msgstr "{Procédure Scheme} inferior-package-native-inputs @var{package}" +msgstr "{Procédure Scheme} lookup-package-native-input @var{package} @var{name}" #. type: deffnx -#: guix-git/doc/guix.texi:7273 -#, fuzzy, no-wrap -#| msgid "{Scheme Procedure} inferior-package-propagated-inputs @var{package}" +#: guix-git/doc/guix.texi:7331 +#, no-wrap msgid "{Scheme Procedure} lookup-package-propagated-input @var{package} @var{name}" -msgstr "{Procédure Scheme} inferior-package-propagated-inputs @var{package}" +msgstr "{Procédure Scheme} lookup-package-propagated-input @var{package} @var{name}" #. type: deffnx -#: guix-git/doc/guix.texi:7274 -#, fuzzy, no-wrap -#| msgid "{Scheme Procedure} package-development-inputs @var{package} @" +#: guix-git/doc/guix.texi:7332 +#, no-wrap msgid "{Scheme Procedure} lookup-package-direct-input @var{package} @var{name}" -msgstr "{Procédure Scheme} package-development-inputs @var{package} @" +msgstr "{Procédure Scheme} lookup-package-direct-input @var{package} @var{name}" #. type: deffn -#: guix-git/doc/guix.texi:7277 +#: guix-git/doc/guix.texi:7335 msgid "Look up @var{name} among @var{package}'s inputs (or native, propagated, or direct inputs). Return it if found, @code{#f} otherwise." -msgstr "" +msgstr "Cherche @var{name} dans les entrées de @var{package} (ou les entrées natives, propagées ou directes). Renvoie l'entrée si elle la trouve, et @code{#f} sinon." #. type: deffn -#: guix-git/doc/guix.texi:7280 +#: guix-git/doc/guix.texi:7338 msgid "@var{name} is the name of a package depended on. Here's how you might use it:" -msgstr "" +msgstr "@var{name} est le nom d'un paquet de dépendance. Voici comment vous pouvez l'utiliser :" #. type: lisp -#: guix-git/doc/guix.texi:7283 +#: guix-git/doc/guix.texi:7341 #, no-wrap msgid "" "(use-modules (guix packages) (gnu packages base))\n" @@ -15263,55 +15380,57 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7286 +#: guix-git/doc/guix.texi:7344 #, no-wrap msgid "" "(lookup-package-direct-input coreutils \"gmp\")\n" "@result{} #\n" msgstr "" +"(lookup-package-direct-input coreutils \"gmp\")\n" +"@result{} #\n" #. type: deffn -#: guix-git/doc/guix.texi:7290 +#: guix-git/doc/guix.texi:7348 msgid "In this example we obtain the @code{gmp} package that is among the direct inputs of @code{coreutils}." -msgstr "" +msgstr "Dans cet exemple, on obtient le paquet @code{gmp} qui fait partie des entrées directes de @code{coreutils}." #. type: cindex -#: guix-git/doc/guix.texi:7292 +#: guix-git/doc/guix.texi:7350 #, no-wrap msgid "development inputs, of a package" msgstr "entrées de développement, d'un paquet" #. type: cindex -#: guix-git/doc/guix.texi:7293 +#: guix-git/doc/guix.texi:7351 #, no-wrap msgid "implicit inputs, of a package" msgstr "entrées implicites, d'un paquet" #. type: Plain text -#: guix-git/doc/guix.texi:7298 +#: guix-git/doc/guix.texi:7356 msgid "Sometimes you will want to obtain the list of inputs needed to @emph{develop} a package---all the inputs that are visible when the package is compiled. This is what the @code{package-development-inputs} procedure returns." msgstr "Parfois vous voudrez obtenir la liste des entrées requises pour @emph{développer} un paquet — toutes les entrées visibles quand le paquet est compilé. C'est ce que la procédure @code{package-development-inputs} renvoie." #. type: deffn -#: guix-git/doc/guix.texi:7299 +#: guix-git/doc/guix.texi:7357 #, no-wrap msgid "{Scheme Procedure} package-development-inputs @var{package} @" msgstr "{Procédure Scheme} package-development-inputs @var{package} @" #. type: deffn -#: guix-git/doc/guix.texi:7306 +#: guix-git/doc/guix.texi:7364 msgid "[@var{system}] [#:target #f] Return the list of inputs required by @var{package} for development purposes on @var{system}. When @var{target} is true, return the inputs needed to cross-compile @var{package} from @var{system} to @var{triplet}, where @var{triplet} is a triplet such as @code{\"aarch64-linux-gnu\"}." msgstr "" "[@var{system}] [#:target #f]\n" "Renvoie la liste des entrées requises par @var{package} pour le développement sur @var{system}. Lorsque @var{target} est vrai, les entrées renvoyées sont celles requises pour la compilation croisée de @var{package} de @var{system} vers @var{triplet}, où @var{triplet} est un triplet comme @code{\"aarch64-linux-gnu\"}." #. type: deffn -#: guix-git/doc/guix.texi:7310 +#: guix-git/doc/guix.texi:7368 msgid "Note that the result includes both explicit inputs and implicit inputs---inputs automatically added by the build system (@pxref{Build Systems}). Let us take the @code{hello} package to illustrate that:" msgstr "Remarquez que le résultat inclus à la fois les entrées explicites et implicites — les entrées ajoutées automatiquement par le système de construction (@pxref{Build Systems}). Prenons le paquet @code{hello} pour illustrer :" #. type: lisp -#: guix-git/doc/guix.texi:7313 +#: guix-git/doc/guix.texi:7371 #, no-wrap msgid "" "(use-modules (gnu packages base) (guix packages))\n" @@ -15321,7 +15440,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7316 +#: guix-git/doc/guix.texi:7374 #, no-wrap msgid "" "hello\n" @@ -15333,7 +15452,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7319 +#: guix-git/doc/guix.texi:7377 #, no-wrap msgid "" "(package-direct-inputs hello)\n" @@ -15345,7 +15464,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7322 +#: guix-git/doc/guix.texi:7380 #, no-wrap msgid "" "(package-development-inputs hello)\n" @@ -15355,39 +15474,39 @@ msgstr "" "@result{} ((\"source\" @dots{}) (\"tar\" #) @dots{})\n" #. type: deffn -#: guix-git/doc/guix.texi:7331 +#: guix-git/doc/guix.texi:7389 msgid "In this example, @code{package-direct-inputs} returns the empty list, because @code{hello} has zero explicit dependencies. Conversely, @code{package-development-inputs} includes inputs implicitly added by @code{gnu-build-system} that are required to build @code{hello}: tar, gzip, GCC, libc, Bash, and more. To visualize it, @command{guix graph hello} would show you explicit inputs, whereas @command{guix graph -t bag hello} would include implicit inputs (@pxref{Invoking guix graph})." msgstr "Dans cet exemple, @code{package-direct-inputs} renvoie la liste vide, parce que @code{hello} n'a pas de dépendance explicite. À l'inverse, @code{package-development-inputs} inclut les entrées implicites ajoutées par @code{gnu-build-system} qui sont requises pour construire @code{hello} : tar, gzip, GCC, libc, Bash et d'autres. Pour les visualiser, @command{guix graph hello} montrerait les entrées explicites, alors que @command{guix graph -t bag hello} inclurait les entrées implicites (@pxref{Invoking guix graph})." #. type: Plain text -#: guix-git/doc/guix.texi:7337 +#: guix-git/doc/guix.texi:7395 msgid "Because packages are regular Scheme objects that capture a complete dependency graph and associated build procedures, it is often useful to write procedures that take a package and return a modified version thereof according to some parameters. Below are a few examples." msgstr "Comme les paquets sont des objets Scheme réguliers qui capturent un graphe de dépendance complet et les procédures de construction associées, il est souvent utile d'écrire des procédures qui prennent un paquet et renvoient une version modifiée de celui-ci en fonction de certains paramètres. En voici quelques exemples." #. type: cindex -#: guix-git/doc/guix.texi:7338 +#: guix-git/doc/guix.texi:7396 #, no-wrap msgid "tool chain, choosing a package's tool chain" msgstr "chaîne d'outils, choisir la chaîne d'outils d'un paquet" #. type: deffn -#: guix-git/doc/guix.texi:7339 +#: guix-git/doc/guix.texi:7397 #, no-wrap msgid "{Scheme Procedure} package-with-c-toolchain @var{package} @var{toolchain}" msgstr "{Procédure Scheme} package-with-c-toolchain @var{package} @var{toolchain}" #. type: deffn -#: guix-git/doc/guix.texi:7344 +#: guix-git/doc/guix.texi:7402 msgid "Return a variant of @var{package} that uses @var{toolchain} instead of the default GNU C/C++ toolchain. @var{toolchain} must be a list of inputs (label/package tuples) providing equivalent functionality, such as the @code{gcc-toolchain} package." msgstr "Renvoie une variante de @var{package} qui utilise @var{toolchain} au lieu de la chaîne d'outils GNU C/C++ par défaut. @var{toolchain} doit être une liste d'entrées (tuples label/package) fournissant une fonctionnalité équivalente, comme le paquet @code{gcc-toolchain}." #. type: deffn -#: guix-git/doc/guix.texi:7348 +#: guix-git/doc/guix.texi:7406 msgid "The example below returns a variant of the @code{hello} package built with GCC@tie{}10.x and the rest of the GNU tool chain (Binutils and the GNU C Library) instead of the default tool chain:" msgstr "L'exemple ci-dessous renvoie une variante du paquet @code{hello} construit avec GCC@tie{}10.x et le reste de la chaîne d'outils GNU (Binutils et la bibliothèque C GNU) au lieu de la chaîne d'outils par défaut :" #. type: lisp -#: guix-git/doc/guix.texi:7352 +#: guix-git/doc/guix.texi:7410 #, no-wrap msgid "" "(let ((toolchain (specification->package \"gcc-toolchain@@10\")))\n" @@ -15397,197 +15516,197 @@ msgstr "" " (package-with-c-toolchain hello `((\"toolchain\" ,toolchain))))\n" #. type: deffn -#: guix-git/doc/guix.texi:7360 +#: guix-git/doc/guix.texi:7418 msgid "The build tool chain is part of the @dfn{implicit inputs} of packages---it's usually not listed as part of the various ``inputs'' fields and is instead pulled in by the build system. Consequently, this procedure works by changing the build system of @var{package} so that it pulls in @var{toolchain} instead of the defaults. @ref{Build Systems}, for more on build systems." msgstr "La chaîne d'outils de construction fait partie des @dfn{entrées implicites} des paquets--- elle n'est généralement pas listée comme faisant partie des différents champs \"entrées\" et est à la place récupérée par le système de construction. Par conséquent, cette procédure fonctionne en modifiant le système de compilation de @var{paquet} de sorte qu'il utilise @var{toolchain} au lieu des valeurs par défaut. @ref{Build Systems}, pour en savoir plus sur les systèmes de construction." #. type: subsection -#: guix-git/doc/guix.texi:7363 +#: guix-git/doc/guix.texi:7421 #, no-wrap msgid "@code{origin} Reference" msgstr "Référence de @code{origin}" #. type: Plain text -#: guix-git/doc/guix.texi:7371 +#: guix-git/doc/guix.texi:7429 msgid "This section documents @dfn{origins}. An @code{origin} declaration specifies data that must be ``produced''---downloaded, usually---and whose content hash is known in advance. Origins are primarily used to represent the source code of packages (@pxref{Defining Packages}). For that reason, the @code{origin} form allows you to declare patches to apply to the original source code as well as code snippets to modify it." msgstr "Cette section documente @dfn{origins}. Une déclaration @code{origin} spécifie les données qui doivent être \"produites\" -- téléchargées, généralement -- et dont le contenu est connu à l'avance. Les origines sont principalement utilisées pour représenter le code source des paquets (@pxref{Defining Packages}). Pour cette raison, le formulaire @code{origin} permet de déclarer des correctifs à appliquer au code source original ainsi que des bribes de code pour le modifier." #. type: deftp -#: guix-git/doc/guix.texi:7372 +#: guix-git/doc/guix.texi:7430 #, no-wrap msgid "{Data Type} origin" msgstr "{Type de données} origin" #. type: deftp -#: guix-git/doc/guix.texi:7374 +#: guix-git/doc/guix.texi:7432 msgid "This is the data type representing a source code origin." msgstr "C'est le type de donnée qui représente l'origine d'un code source." #. type: code{#1} -#: guix-git/doc/guix.texi:7376 guix-git/doc/guix.texi:26552 +#: guix-git/doc/guix.texi:7434 guix-git/doc/guix.texi:26889 #, no-wrap msgid "uri" msgstr "uri" #. type: table -#: guix-git/doc/guix.texi:7381 +#: guix-git/doc/guix.texi:7439 msgid "An object containing the URI of the source. The object type depends on the @code{method} (see below). For example, when using the @var{url-fetch} method of @code{(guix download)}, the valid @code{uri} values are: a URL represented as a string, or a list thereof." msgstr "Un objet contenant l'URI de la source. Le type d'objet dépend de la @code{method} (voir plus bas). Par exemple, avec la méthode @var{url-fetch} de @code{(guix download)}, les valeurs valide d'@code{uri} sont : une URL représentée par une chaîne de caractères, ou une liste de chaînes de caractères." #. type: cindex -#: guix-git/doc/guix.texi:7382 +#: guix-git/doc/guix.texi:7440 #, no-wrap msgid "fixed-output derivations, for download" msgstr "dérivations à sortie fixe, pour télécharger" #. type: code{#1} -#: guix-git/doc/guix.texi:7383 +#: guix-git/doc/guix.texi:7441 #, no-wrap msgid "method" msgstr "method" #. type: table -#: guix-git/doc/guix.texi:7390 +#: guix-git/doc/guix.texi:7448 msgid "A monadic procedure that handles the given URI@. The procedure must accept at least three arguments: the value of the @code{uri} field and the hash algorithm and hash value specified by the @code{hash} field. It must return a store item or a derivation in the store monad (@pxref{The Store Monad}); most methods return a fixed-output derivation (@pxref{Derivations})." msgstr "Une procédure monadique qui gère l'URI donné. La procédure doit accepter au moins trois arguments : la valeur du champ @code{uri} et l'algorithme de hachage et la valeur de hachage spécifiée par le champ @code{hash}. Elle doit renvoyer un élément du dépôt ou une dérivation dans la monade du dépôt (@pxref{The Store Monad}) ; la plupart des méthodes renvoient une dérivation à sortie fixe (@pxref{Derivations})." #. type: table -#: guix-git/doc/guix.texi:7394 +#: guix-git/doc/guix.texi:7452 msgid "Commonly used methods include @code{url-fetch}, which fetches data from a URL, and @code{git-fetch}, which fetches data from a Git repository (see below)." msgstr "Les méthodes couramment utilisées comprennent @code{url-fetch}, qui récupère les données à partir d'une URL, et @code{git-fetch}, qui récupère les données à partir d'un dépôt Git (voir ci-dessous)." #. type: code{#1} -#: guix-git/doc/guix.texi:7395 +#: guix-git/doc/guix.texi:7453 #, no-wrap msgid "sha256" msgstr "sha256" #. type: table -#: guix-git/doc/guix.texi:7399 +#: guix-git/doc/guix.texi:7457 msgid "A bytevector containing the SHA-256 hash of the source. This is equivalent to providing a @code{content-hash} SHA256 object in the @code{hash} field described below." msgstr "Un bytevector contenant le hachage SHA-256 de la source. Cela équivaut à fournir un @code{content-hash} Objet SHA256 dans le champ @code{hash} décrit ci-dessous." #. type: code{#1} -#: guix-git/doc/guix.texi:7400 +#: guix-git/doc/guix.texi:7458 #, no-wrap msgid "hash" msgstr "hash" #. type: table -#: guix-git/doc/guix.texi:7403 +#: guix-git/doc/guix.texi:7461 msgid "The @code{content-hash} object of the source---see below for how to use @code{content-hash}." msgstr "L'objet @code{content-hash} de la source--voir ci-dessous pour savoir comment utiliser @code{content-hash}." #. type: table -#: guix-git/doc/guix.texi:7407 +#: guix-git/doc/guix.texi:7465 msgid "You can obtain this information using @code{guix download} (@pxref{Invoking guix download}) or @code{guix hash} (@pxref{Invoking guix hash})." msgstr "Vous pouvez obtenir cette information avec @code{guix download} (@pxref{Invoking guix download}) ou @code{guix hash} (@pxref{Invoking guix hash})." #. type: item -#: guix-git/doc/guix.texi:7408 +#: guix-git/doc/guix.texi:7466 #, no-wrap msgid "@code{file-name} (default: @code{#f})" msgstr "@code{file-name} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:7414 +#: guix-git/doc/guix.texi:7472 msgid "The file name under which the source code should be saved. When this is @code{#f}, a sensible default value will be used in most cases. In case the source is fetched from a URL, the file name from the URL will be used. For version control checkouts, it is recommended to provide the file name explicitly because the default is not very descriptive." msgstr "Le nom de fichier à utiliser pour sauvegarder le fichier. Lorsqu'elle est à @code{#f}, une valeur par défaut raisonnable est utilisée dans la plupart des cas. Dans le cas où la source est récupérée depuis une URL, le nom de fichier est celui de l'URL. Pour les sources récupérées depuis un outil de contrôle de version, il est recommandé de fournir un nom de fichier explicitement parce que le nom par défaut n'est pas très descriptif." #. type: item -#: guix-git/doc/guix.texi:7415 +#: guix-git/doc/guix.texi:7473 #, no-wrap msgid "@code{patches} (default: @code{'()})" msgstr "@code{patches} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:7418 +#: guix-git/doc/guix.texi:7476 msgid "A list of file names, origins, or file-like objects (@pxref{G-Expressions, file-like objects}) pointing to patches to be applied to the source." msgstr "Une liste de noms de fichiers, d'origines ou d'objets simili-fichiers (@pxref{G-Expressions, file-like objects}) qui pointent vers des correctifs à appliquer sur la source." #. type: table -#: guix-git/doc/guix.texi:7422 +#: guix-git/doc/guix.texi:7480 msgid "This list of patches must be unconditional. In particular, it cannot depend on the value of @code{%current-system} or @code{%current-target-system}." msgstr "Cette liste de correctifs doit être inconditionnelle. En particulier, elle ne peut pas dépendre des valeurs de @code{%current-system} ou @code{%current-target-system}." #. type: item -#: guix-git/doc/guix.texi:7423 +#: guix-git/doc/guix.texi:7481 #, no-wrap msgid "@code{snippet} (default: @code{#f})" msgstr "@code{snippet} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:7427 +#: guix-git/doc/guix.texi:7485 msgid "A G-expression (@pxref{G-Expressions}) or S-expression that will be run in the source directory. This is a convenient way to modify the source, sometimes more convenient than a patch." msgstr "Une G-expression (@pxref{G-Expressions}) ou une S-expression qui sera lancée dans le répertoire des sources. C'est une manière pratique de modifier la source, parfois plus qu'un correctif." #. type: item -#: guix-git/doc/guix.texi:7428 +#: guix-git/doc/guix.texi:7486 #, no-wrap msgid "@code{patch-flags} (default: @code{'(\"-p1\")})" msgstr "@code{patch-flags} (par défaut : @code{'(\"-p1\")})" #. type: table -#: guix-git/doc/guix.texi:7431 +#: guix-git/doc/guix.texi:7489 msgid "A list of command-line flags that should be passed to the @code{patch} command." msgstr "Une liste de drapeaux à passer à la commande @code{patch}." #. type: item -#: guix-git/doc/guix.texi:7432 +#: guix-git/doc/guix.texi:7490 #, no-wrap msgid "@code{patch-inputs} (default: @code{#f})" msgstr "@code{patch-inputs} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:7436 +#: guix-git/doc/guix.texi:7494 msgid "Input packages or derivations to the patching process. When this is @code{#f}, the usual set of inputs necessary for patching are provided, such as GNU@tie{}Patch." msgstr "Paquets d'entrées ou dérivations pour le processus de correction. Lorsqu'elle est à @code{#f}, l'ensemble d'entrées habituellement nécessaire pour appliquer des correctifs est fournit, comme GNU@tie{}Patch." #. type: item -#: guix-git/doc/guix.texi:7437 guix-git/doc/guix.texi:26425 +#: guix-git/doc/guix.texi:7495 guix-git/doc/guix.texi:26762 #, no-wrap msgid "@code{modules} (default: @code{'()})" msgstr "@code{modules} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:7440 +#: guix-git/doc/guix.texi:7498 msgid "A list of Guile modules that should be loaded during the patching process and while running the code in the @code{snippet} field." msgstr "Une liste de modules Guile qui devraient être chargés pendant le processus de correction et pendant que le lancement du code du champ @code{snippet}." #. type: item -#: guix-git/doc/guix.texi:7441 +#: guix-git/doc/guix.texi:7499 #, no-wrap msgid "@code{patch-guile} (default: @code{#f})" msgstr "@code{patch-guile} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:7444 +#: guix-git/doc/guix.texi:7502 msgid "The Guile package that should be used in the patching process. When this is @code{#f}, a sensible default is used." msgstr "Le paquet Guile à utiliser dans le processus de correction. Lorsqu'elle est à @code{#f}, une valeur par défaut raisonnable est utilisée." #. type: deftp -#: guix-git/doc/guix.texi:7447 +#: guix-git/doc/guix.texi:7505 #, no-wrap msgid "{Data Type} content-hash @var{value} [@var{algorithm}]" msgstr "{Data Type} content-hash @var{value} [@var{algorithm}]" #. type: deftp -#: guix-git/doc/guix.texi:7451 +#: guix-git/doc/guix.texi:7509 msgid "Construct a content hash object for the given @var{algorithm}, and with @var{value} as its hash value. When @var{algorithm} is omitted, assume it is @code{sha256}." msgstr "Construire un objet de hash de contenu pour l'@var{algorithme} donné, et avec @var{valeur} comme valeur de hachage. Lorsque @var{algorithme} est omis, on suppose qu'il s'agit de @code{sha256}." #. type: deftp -#: guix-git/doc/guix.texi:7454 +#: guix-git/doc/guix.texi:7512 msgid "@var{value} can be a literal string, in which case it is base32-decoded, or it can be a bytevector." msgstr "@var{value} peut être une chaîne littérale, auquel cas elle est décodée en base32, ou il peut s'agir d'un bytevecteur." #. type: deftp -#: guix-git/doc/guix.texi:7456 +#: guix-git/doc/guix.texi:7514 msgid "The following forms are all equivalent:" msgstr "Les options suivantes sont équivalentes :" #. type: lisp -#: guix-git/doc/guix.texi:7465 +#: guix-git/doc/guix.texi:7523 #, no-wrap msgid "" "(content-hash \"05zxkyz9bv3j9h0xyid1rhvh3klhsmrpkf3bcs6frvlgyr2gwilj\")\n" @@ -15607,103 +15726,103 @@ msgstr "" " sha256)\n" #. type: deftp -#: guix-git/doc/guix.texi:7470 +#: guix-git/doc/guix.texi:7528 msgid "Technically, @code{content-hash} is currently implemented as a macro. It performs sanity checks at macro-expansion time, when possible, such as ensuring that @var{value} has the right size for @var{algorithm}." msgstr "Techniquement, le @code{content-hash} est actuellement mis en œuvre sous forme de macro. Il effectue des contrôles de bon sens au moment de l'expansion de la macro, lorsque cela est possible, en s'assurant par exemple que @var{valeur} a la bonne taille pour @var{algorithme}." #. type: Plain text -#: guix-git/doc/guix.texi:7476 +#: guix-git/doc/guix.texi:7534 msgid "As we have seen above, how exactly the data an origin refers to is retrieved is determined by its @code{method} field. The @code{(guix download)} module provides the most common method, @code{url-fetch}, described below." msgstr "Comme nous l'avons vu plus haut, la manière dont les données auxquelles une origine se réfère exactement sont récupérées est déterminée par son champ @code{method}. Le module @code{(guix download)} fournit la méthode la plus courante, @code{url-fetch}, décrite ci-dessous." #. type: deffn -#: guix-git/doc/guix.texi:7477 +#: guix-git/doc/guix.texi:7535 #, no-wrap msgid "{Scheme Procedure} url-fetch @var{url} @var{hash-algo} @var{hash} @" msgstr "{Procédure Scheme} url-fetch @var{url} @var{hash-algo} @var{hash} @" #. type: deffn -#: guix-git/doc/guix.texi:7485 +#: guix-git/doc/guix.texi:7543 msgid "[name] [#:executable? #f] Return a fixed-output derivation that fetches data from @var{url} (a string, or a list of strings denoting alternate URLs), which is expected to have hash @var{hash} of type @var{hash-algo} (a symbol). By default, the file name is the base name of URL; optionally, @var{name} can specify a different file name. When @var{executable?} is true, make the downloaded file executable." msgstr "[name] [#:executable ? #f] Renvoie une dérivation à sortie fixe qui récupère les données de @var{url} (une chaîne de caractères, ou une liste de chaînes de caractères désignant des URLs alternatives), qui est censée avoir un hash @var{hash} de type @var{hash-algo} (un symbole). Par défaut, le nom du fichier est le nom de base de l'URL ; en option, @var{nom} peut spécifier un nom de fichier différent. Lorsque @var{executable?} est vrai, rendez le fichier téléchargé exécutable." #. type: deffn -#: guix-git/doc/guix.texi:7488 +#: guix-git/doc/guix.texi:7546 msgid "When one of the URL starts with @code{mirror://}, then its host part is interpreted as the name of a mirror scheme, taken from @file{%mirror-file}." msgstr "Lorsque l'une des URL commence par @code{mirror://}, sa partie hôte est alors interprétée comme le nom d'un schéma de miroir, tiré de @file{%mirror-file}." #. type: deffn -#: guix-git/doc/guix.texi:7491 +#: guix-git/doc/guix.texi:7549 msgid "Alternatively, when URL starts with @code{file://}, return the corresponding file name in the store." msgstr "Alternativement, lorsque l'URL commence par @code{file://}, renvoie le nom du fichier correspondant dans le dépôt." #. type: Plain text -#: guix-git/doc/guix.texi:7497 +#: guix-git/doc/guix.texi:7555 msgid "Likewise, the @code{(guix git-download)} module defines the @code{git-fetch} origin method, which fetches data from a Git version control repository, and the @code{git-reference} data type to describe the repository and revision to fetch." msgstr "De même, le module @code{(guix git-download)} définit la méthode d'origine @code{git-download}, qui récupère les données d'un dépôt de contrôle de version Git, et le type de données @code{git-reference} pour décrire le dépôt et la révision à récupérer." #. type: deffn -#: guix-git/doc/guix.texi:7498 +#: guix-git/doc/guix.texi:7556 #, no-wrap msgid "{Scheme Procedure} git-fetch @var{ref} @var{hash-algo} @var{hash}" msgstr "{Procédure Scheme} git-fetch @var{ref} @var{hash-algo} @var{hash}" #. type: deffn -#: guix-git/doc/guix.texi:7503 +#: guix-git/doc/guix.texi:7561 msgid "Return a fixed-output derivation that fetches @var{ref}, a @code{} object. The output is expected to have recursive hash @var{hash} of type @var{hash-algo} (a symbol). Use @var{name} as the file name, or a generic name if @code{#f}." msgstr "Renvoie une dérivation à sortie fixe qui va chercher @var{ref}, un objet @code{}. La sortie est censée avoir un hash récursif @var{hash} de type @var{hash-algo} (un symbole). Utilisez @var{name} comme nom de fichier, ou un nom générique si @code{#f}." #. type: deftp -#: guix-git/doc/guix.texi:7505 +#: guix-git/doc/guix.texi:7563 #, no-wrap msgid "{Data Type} git-reference" msgstr "{Type de données} git-reference" #. type: deftp -#: guix-git/doc/guix.texi:7508 +#: guix-git/doc/guix.texi:7566 msgid "This data type represents a Git reference for @code{git-fetch} to retrieve." msgstr "Ce type de données représente une référence Git pour le @code{git-fetch} à récupérer." #. type: code{#1} -#: guix-git/doc/guix.texi:7510 guix-git/doc/guix.texi:24186 +#: guix-git/doc/guix.texi:7568 guix-git/doc/guix.texi:24548 #, no-wrap msgid "url" msgstr "url" #. type: table -#: guix-git/doc/guix.texi:7512 +#: guix-git/doc/guix.texi:7570 msgid "The URL of the Git repository to clone." msgstr "L'URL du dépôt Git à cloner." #. type: code{#1} -#: guix-git/doc/guix.texi:7513 +#: guix-git/doc/guix.texi:7571 #, no-wrap msgid "commit" msgstr "commit" #. type: table -#: guix-git/doc/guix.texi:7518 +#: guix-git/doc/guix.texi:7576 msgid "This string denotes either the commit to fetch (a hexadecimal string), or the tag to fetch. You can also use a ``short'' commit ID or a @command{git describe} style identifier such as @code{v1.0.1-10-g58d7909c97}." msgstr "Cette chaîne indique soit le commit à récupérer (une chaîne hexadécimale), soit le tag à récupérer. Vous pouvez aussi utiliser une chaîne de commit « courte » ou un identifiant dans le style de @command{git describe} comme @code{v1.0.1-10-g58d7909c97}." #. type: item -#: guix-git/doc/guix.texi:7519 +#: guix-git/doc/guix.texi:7577 #, no-wrap msgid "@code{recursive?} (default: @code{#f})" msgstr "@code{recursive?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:7521 +#: guix-git/doc/guix.texi:7579 msgid "This Boolean indicates whether to recursively fetch Git sub-modules." msgstr "Ce booléen indique s'il faut aller chercher récursivement les sous-modules de Git." #. type: deftp -#: guix-git/doc/guix.texi:7525 +#: guix-git/doc/guix.texi:7583 msgid "The example below denotes the @code{v2.10} tag of the GNU@tie{}Hello repository:" msgstr "L'exemple ci-dessous indique la balise @code{v2.10} du dépôt GNU@tie{}Hello :" #. type: lisp -#: guix-git/doc/guix.texi:7530 +#: guix-git/doc/guix.texi:7588 #, no-wrap msgid "" "(git-reference\n" @@ -15715,12 +15834,12 @@ msgstr "" " (commit \"v2.10\"))\n" #. type: deftp -#: guix-git/doc/guix.texi:7534 +#: guix-git/doc/guix.texi:7592 msgid "This is equivalent to the reference below, which explicitly names the commit:" msgstr "C'est équivalent à la référence ci-dessous, qui nomme explicitement le commit :" #. type: lisp -#: guix-git/doc/guix.texi:7539 +#: guix-git/doc/guix.texi:7597 #, no-wrap msgid "" "(git-reference\n" @@ -15732,58 +15851,58 @@ msgstr "" " (commit \"dc7dc56a00e48fe6f231a58f6537139fe2908fb9\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:7545 +#: guix-git/doc/guix.texi:7603 msgid "For Mercurial repositories, the module @code{(guix hg-download)} defines the @code{hg-fetch} origin method and @code{hg-reference} data type for support of the Mercurial version control system." msgstr "Pour les dépôts Mercurial, le module @code{(guix hg-download)} définit la méthode d'origine @code{hg-download} et le type de données @code{hg-reference} pour la prise en charge du système de contrôle de version Mercurial." #. type: deffn -#: guix-git/doc/guix.texi:7546 +#: guix-git/doc/guix.texi:7604 #, no-wrap msgid "{Scheme Procedure} hg-fetch @var{ref} @var{hash-algo} @var{hash} @" msgstr "{Procédure Scheme} hg-fetch @var{ref} @var{hash-algo} @var{hash} @" #. type: deffn -#: guix-git/doc/guix.texi:7552 +#: guix-git/doc/guix.texi:7610 msgid "[name] Return a fixed-output derivation that fetches @var{ref}, a @code{} object. The output is expected to have recursive hash @var{hash} of type @var{hash-algo} (a symbol). Use @var{name} as the file name, or a generic name if @code{#false}." msgstr "" "[name]\n" "Renvoie une dérivation à sortie fixe qui va chercher @var{ref}, un objet @code{}. La sortie est censée avoir un hash récursif @var{hash} de type @var{hash-algo} (un symbole). Utilisez @var{name} comme nom de fichier, ou un nom générique si @code{#false}." #. type: cindex -#: guix-git/doc/guix.texi:7557 +#: guix-git/doc/guix.texi:7615 #, no-wrap msgid "customizing packages" msgstr "personnalisation des paquets" #. type: cindex -#: guix-git/doc/guix.texi:7558 +#: guix-git/doc/guix.texi:7616 #, no-wrap msgid "variants, of packages" msgstr "variantes, des paquets" #. type: Plain text -#: guix-git/doc/guix.texi:7568 +#: guix-git/doc/guix.texi:7626 msgid "One of the nice things with Guix is that, given a package definition, you can easily @emph{derive} variants of that package---for a different upstream version, with different dependencies, different compilation options, and so on. Some of these custom packages can be defined straight from the command line (@pxref{Package Transformation Options}). This section describes how to define package variants in code. This can be useful in ``manifests'' (@pxref{profile-manifest, @option{--manifest}}) and in your own package collection (@pxref{Creating a Channel}), among others!" msgstr "L'une des choses intéressantes avec Guix est qu'à partir d'une définition, on peut facilement @emph{dériver} des variantes du paquet --- pour une version en amont différente, avec des dépendances différentes, des options de compilation différentes, etc. Certains de ces paquets personnalisés peuvent être définis directement par la ligne de commande (@pxref{Package Transformation Options}). Cette section décrit comment définir des variantes de paquets avec du code. Cela est utile dans les « manifestes » (@pxref{profile-manifest, @option{--manifest}}) et dans votre propre collection de paquets (@pxref{Creating a Channel}), entre autres chose !" #. type: cindex -#: guix-git/doc/guix.texi:7569 +#: guix-git/doc/guix.texi:7627 #, no-wrap msgid "inherit, for package definitions" msgstr "héritage, pour les définitions des paquets" #. type: Plain text -#: guix-git/doc/guix.texi:7576 +#: guix-git/doc/guix.texi:7634 msgid "As discussed earlier, packages are first-class objects in the Scheme language. The @code{(guix packages)} module provides the @code{package} construct to define new package objects (@pxref{package Reference}). The easiest way to define a package variant is using the @code{inherit} keyword together with @code{package}. This allows you to inherit from a package definition while overriding the fields you want." msgstr "Comme nous en avons parlé plus tôt, les paquets sont des objets de première classe dans le langage Scheme. Le module @code{(guix packages)} fournit la construction @code{package} pour définir de nouveaux objets de paquets (@pxref{package Reference}). La manière la plus simple de définir la variante d'un paquet est d'utiliser le mot-clé @code{inherit} avec @code{package}. Cela vous permet d'hériter la définition d'un paquet tout en redéfinissant les champs que vous voulez." #. type: Plain text -#: guix-git/doc/guix.texi:7581 +#: guix-git/doc/guix.texi:7639 msgid "For example, given the @code{hello} variable, which contains a definition for the current version of GNU@tie{}Hello, here's how you would define a variant for version 2.2 (released in 2006, it's vintage!):" msgstr "Par exemple, étant donné la variable @code{hello}, qui contient la définition d'une version récente de GNU@tie{}Hello, voici comment définir une variante pour la version 2.2 (publiée en 2006, c'est vintage !) :" #. type: lisp -#: guix-git/doc/guix.texi:7584 +#: guix-git/doc/guix.texi:7642 #, no-wrap msgid "" "(use-modules (gnu packages base)) ;for 'hello'\n" @@ -15793,7 +15912,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7596 +#: guix-git/doc/guix.texi:7654 #, no-wrap msgid "" "(define hello-2.2\n" @@ -15821,17 +15940,17 @@ msgstr "" " \"0lappv4slgb5spyqbh6yl5r013zv72yqg2pcl30mginf3wdqd8k9\"))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:7605 +#: guix-git/doc/guix.texi:7663 msgid "The example above corresponds to what the @option{--with-source} package transformation option does. Essentially @code{hello-2.2} preserves all the fields of @code{hello}, except @code{version} and @code{source}, which it overrides. Note that the original @code{hello} variable is still there, in the @code{(gnu packages base)} module, unchanged. When you define a custom package like this, you are really @emph{adding} a new package definition; the original one remains available." msgstr "L'exemple ci-dessus correspond à ce que l'option de transformation des paquets @option{--with-source} fait. En substance, @code{hello-2.2} préserve tous les champs de @code{hello}, sauf @code{version} et @code{source}, qu'il remplace. Remarquez que la variable @code{hello} originale est toujours là, dans le module @code{(gnu packages base)}, et n'est pas modifiée. Lorsque vous définissez un paquet personnalisé comme ceci, vous @emph{ajoutez} en fait une nouvelle définition de paquet ; la version originale est toujours disponible." #. type: Plain text -#: guix-git/doc/guix.texi:7611 +#: guix-git/doc/guix.texi:7669 msgid "You can just as well define variants with a different set of dependencies than the original package. For example, the default @code{gdb} package depends on @code{guile}, but since that is an optional dependency, you can define a variant that removes that dependency like so:" msgstr "Vous pouvez aussi bien définir des variantes avec un ensemble de dépendances différent du paquet d'origine. Par exemple, le paquet @code{gdb} par défaut dépend de @code{guile}, mais comme c'est une dépendance facultative, vous pouvez définir une variante qu supprime cette dépendance de cette manière :" #. type: lisp -#: guix-git/doc/guix.texi:7614 +#: guix-git/doc/guix.texi:7672 #, no-wrap msgid "" "(use-modules (gnu packages gdb)) ;for 'gdb'\n" @@ -15841,7 +15960,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7620 +#: guix-git/doc/guix.texi:7678 #, fuzzy, no-wrap #| msgid "" #| "(define gdb-sans-guile\n" @@ -15863,67 +15982,67 @@ msgstr "" " (package-inputs gdb)))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:7626 +#: guix-git/doc/guix.texi:7684 msgid "The @code{modify-inputs} form above removes the @code{\"guile\"} package from the @code{inputs} field of @code{gdb}. The @code{modify-inputs} macro is a helper that can prove useful anytime you want to remove, add, or replace package inputs." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7627 +#: guix-git/doc/guix.texi:7685 #, fuzzy, no-wrap #| msgid "{Scheme Syntax} modify-phases @var{phases} @var{clause}@dots{}" msgid "{Scheme Syntax} modify-inputs @var{inputs} @var{clauses}" msgstr "{Syntaxe Scheme} modify-phases @var{phases} @var{clause}@dots{}" #. type: deffn -#: guix-git/doc/guix.texi:7631 +#: guix-git/doc/guix.texi:7689 #, fuzzy #| msgid "Modify the services listed in @var{services} according to the given clauses. Each clause has the form:" msgid "Modify the given package inputs, as returned by @code{package-inputs} & co., according to the given clauses. Each clause must have one of the following forms:" msgstr "Modifie les services listés dans @var{services} en fonction des clauses données. Chaque clause à la forme :" #. type: item -#: guix-git/doc/guix.texi:7633 +#: guix-git/doc/guix.texi:7691 #, fuzzy, no-wrap #| msgid "(service @var{type})\n" msgid "(delete @var{name}@dots{})" msgstr "(service @var{type})\n" #. type: table -#: guix-git/doc/guix.texi:7635 +#: guix-git/doc/guix.texi:7693 msgid "Delete from the inputs packages with the given @var{name}s (strings)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7636 +#: guix-git/doc/guix.texi:7694 #, fuzzy, no-wrap #| msgid "-i @var{package} @dots{}" msgid "(append @var{package}@dots{})" msgstr "-i @var{paquet} @dots{}" #. type: table -#: guix-git/doc/guix.texi:7638 +#: guix-git/doc/guix.texi:7696 msgid "Add @var{package}s to the end of the input list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7639 +#: guix-git/doc/guix.texi:7697 #, fuzzy, no-wrap #| msgid "-r @var{package} @dots{}" msgid "(prepend @var{package}@dots{})" msgstr "-r @var{paquet} @dots{}" #. type: table -#: guix-git/doc/guix.texi:7641 +#: guix-git/doc/guix.texi:7699 msgid "Add @var{package}s to the front of the input list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7645 +#: guix-git/doc/guix.texi:7703 msgid "The example below removes the GMP and ACL inputs of Coreutils and adds libcap to the back of the input list:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7650 +#: guix-git/doc/guix.texi:7708 #, no-wrap msgid "" "(modify-inputs (package-inputs coreutils)\n" @@ -15932,12 +16051,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7654 +#: guix-git/doc/guix.texi:7712 msgid "The example below replaces the @code{guile} package from the inputs of @code{guile-redis} with @code{guile-2.2}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7658 +#: guix-git/doc/guix.texi:7716 #, no-wrap msgid "" "(modify-inputs (package-inputs guile-redis)\n" @@ -15945,17 +16064,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7662 +#: guix-git/doc/guix.texi:7720 msgid "The last type of clause is @code{prepend}, to add inputs to the front of the list." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7671 +#: guix-git/doc/guix.texi:7729 msgid "In some cases, you may find it useful to write functions (``procedures'', in Scheme parlance) that return a package based on some parameters. For example, consider the @code{luasocket} library for the Lua programming language. We want to create @code{luasocket} packages for major versions of Lua. One way to do that is to define a procedure that takes a Lua package and returns a @code{luasocket} package that depends on it:" msgstr "Dans certains cas, vous pouvez trouver cela utile d'écrire des fonctions (« procédures », pour Scheme) qui renvoie un paquet en fonction de certains paramètres. Par exemple, considérez la bibliothèque @code{luasocket} pour le langage de programmation lua. Nous voulons créer des paquets @code{luasocket} pour les versions majeures de Lua. Une manière de faire est de définir une procédure qui prend un paquet Lua et renvoie un paquet @code{luasocket} qui en dépend :" #. type: lisp -#: guix-git/doc/guix.texi:7681 +#: guix-git/doc/guix.texi:7739 #, no-wrap msgid "" "(define (make-lua-socket name lua)\n" @@ -15979,7 +16098,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7684 +#: guix-git/doc/guix.texi:7742 #, no-wrap msgid "" "(define-public lua5.1-socket\n" @@ -15991,7 +16110,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7687 +#: guix-git/doc/guix.texi:7745 #, no-wrap msgid "" "(define-public lua5.2-socket\n" @@ -16001,34 +16120,34 @@ msgstr "" " (make-lua-socket \"lua5.2-socket\" lua-5.2))\n" #. type: Plain text -#: guix-git/doc/guix.texi:7695 +#: guix-git/doc/guix.texi:7753 msgid "Here we have defined packages @code{lua5.1-socket} and @code{lua5.2-socket} by calling @code{make-lua-socket} with different arguments. @xref{Procedures,,, guile, GNU Guile Reference Manual}, for more info on procedures. Having top-level public definitions for these two packages means that they can be referred to from the command line (@pxref{Package Modules})." msgstr "ici nous avons défini les paquets @code{lua5.1-socket} et @code{lua5.2-socket} en appelant @code{make-lua-socket} avec différents arguments. @xref{Procedures,,, guile, GNU Guile Reference Manual}, pour plus d'informations sur les procédures. Avoir des définitions publiques au premier niveau pour ces deux paquets signifie qu'ils sont disponibles depuis la ligne de commande (@pxref{Package Modules})." #. type: cindex -#: guix-git/doc/guix.texi:7696 +#: guix-git/doc/guix.texi:7754 #, no-wrap msgid "package transformations" msgstr "transformations de paquets" #. type: Plain text -#: guix-git/doc/guix.texi:7701 +#: guix-git/doc/guix.texi:7759 msgid "These are pretty simple package variants. As a convenience, the @code{(guix transformations)} module provides a high-level interface that directly maps to the more sophisticated package transformation options (@pxref{Package Transformation Options}):" msgstr "Ce sont des variantes simples de paquets. Par simplicité, le module @code{(guix transformations)} fournit une interface de haut niveau qui correspond directement aux options de transformations de paquets plus sophistiquées (@pxref{Package Transformation Options}) :" #. type: deffn -#: guix-git/doc/guix.texi:7702 +#: guix-git/doc/guix.texi:7760 #, no-wrap msgid "{Scheme Procedure} options->transformation @var{opts}" msgstr "{Procédure Scheme} options->transformation @var{opts}" #. type: deffn -#: guix-git/doc/guix.texi:7706 +#: guix-git/doc/guix.texi:7764 msgid "Return a procedure that, when passed an object to build (package, derivation, etc.), applies the transformations specified by @var{opts} and returns the resulting objects. @var{opts} must be a list of symbol/string pairs such as:" msgstr "Renvoie une procédure qui, lorsqu'on lui passe un objet à construire (un paquet, une dérivation, etc), applique les transformations spécifiées par @var{opts} et renvoie les objets qui en résultent. @var{opts} doit être une liste de pairs de symboles et de chaine comme dans :" #. type: lisp -#: guix-git/doc/guix.texi:7710 +#: guix-git/doc/guix.texi:7768 #, no-wrap msgid "" "((with-branch . \"guile-gcrypt=master\")\n" @@ -16038,17 +16157,17 @@ msgstr "" " (without-tests . \"libgcrypt\"))\n" #. type: deffn -#: guix-git/doc/guix.texi:7714 +#: guix-git/doc/guix.texi:7772 msgid "Each symbol names a transformation and the corresponding string is an argument to that transformation." msgstr "Chaque nom de symbole nomme une transformation et la chaine correspondante est un argument pour cette transformation." #. type: Plain text -#: guix-git/doc/guix.texi:7717 +#: guix-git/doc/guix.texi:7775 msgid "For instance, a manifest equivalent to this command:" msgstr "Par exemple, un manifeste équivalent à cette commande :" #. type: example -#: guix-git/doc/guix.texi:7722 +#: guix-git/doc/guix.texi:7780 #, no-wrap msgid "" "guix build guix \\\n" @@ -16060,12 +16179,12 @@ msgstr "" " --with-debug-info=zlib\n" #. type: Plain text -#: guix-git/doc/guix.texi:7726 +#: guix-git/doc/guix.texi:7784 msgid "... would look like this:" msgstr "... ressemblerait à ceci :" #. type: lisp -#: guix-git/doc/guix.texi:7729 +#: guix-git/doc/guix.texi:7787 #, no-wrap msgid "" "(use-modules (guix transformations))\n" @@ -16075,7 +16194,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7735 +#: guix-git/doc/guix.texi:7793 #, no-wrap msgid "" "(define transform\n" @@ -16093,7 +16212,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7738 +#: guix-git/doc/guix.texi:7796 #, no-wrap msgid "" "(packages->manifest\n" @@ -16103,50 +16222,50 @@ msgstr "" " (list (transform (specification->package \"guix\"))))\n" #. type: cindex -#: guix-git/doc/guix.texi:7740 +#: guix-git/doc/guix.texi:7798 #, no-wrap msgid "input rewriting" msgstr "réécriture d'entrées" #. type: cindex -#: guix-git/doc/guix.texi:7741 +#: guix-git/doc/guix.texi:7799 #, no-wrap msgid "dependency graph rewriting" msgstr "réécriture de l'arbre des dépendances" #. type: Plain text -#: guix-git/doc/guix.texi:7748 +#: guix-git/doc/guix.texi:7806 msgid "The @code{options->transformation} procedure is convenient, but it's perhaps also not as flexible as you may like. How is it implemented? The astute reader probably noticed that most package transformation options go beyond the superficial changes shown in the first examples of this section: they involve @dfn{input rewriting}, whereby the dependency graph of a package is rewritten by replacing specific inputs by others." msgstr "La procédure @code{options->transformation} est pratique, mais elle n'est peut-être pas aussi flexible que vous pourriez le souhaiter. Comment est-elle implémentée ? Le lecteur attentif aura sans doute remarqué que la plupart des options de transformation des paquets va plus loin que les changements superficiels montrés dans les premiers exemples de cette sections : ils font de la @dfn{réécriture d'entrées}, où le graphe de dépendance d'un paquet est réécrit en remplaçant des entrées spécifiques par d'autres." #. type: Plain text -#: guix-git/doc/guix.texi:7752 +#: guix-git/doc/guix.texi:7810 msgid "Dependency graph rewriting, for the purposes of swapping packages in the graph, is what the @code{package-input-rewriting} procedure in @code{(guix packages)} implements." msgstr "La procédure @code{package-input-rewriting} de @code{(guix packages)} implémente la réécriture du graphe de dépendance, pour remplacer des paquets dans le graphe." #. type: deffn -#: guix-git/doc/guix.texi:7753 +#: guix-git/doc/guix.texi:7811 #, no-wrap msgid "{Scheme Procedure} package-input-rewriting @var{replacements} @" msgstr "{Procédure Scheme} package-input-rewriting @var{replacements} @" #. type: deffn -#: guix-git/doc/guix.texi:7760 +#: guix-git/doc/guix.texi:7818 msgid "[@var{rewrite-name}] [#:deep? #t] Return a procedure that, when passed a package, replaces its direct and indirect dependencies, including implicit inputs when @var{deep?} is true, according to @var{replacements}. @var{replacements} is a list of package pairs; the first element of each pair is the package to replace, and the second one is the replacement." msgstr "[@var{nom-réécrit}] [#:deep ? #t] Renvoie une procédure qui, lorsqu'elle est passée à un paquet, remplace ses dépendances directes et indirectes, y compris les entrées implicites lorsque @var{deep?} est vrai, selon @var{replacements}. @var{replacements} est une liste de paires de paquets ; le premier élément de chaque paire est le paquet à remplacer, et le second est le remplacement." #. type: deffn -#: guix-git/doc/guix.texi:7763 +#: guix-git/doc/guix.texi:7821 msgid "Optionally, @var{rewrite-name} is a one-argument procedure that takes the name of a package and returns its new name after rewrite." msgstr "De manière facultative, @var{nom-réécrit} est une procédure à un argument qui prend le nom d'un paquet et renvoie son nouveau nom après l'avoir réécrit." #. type: table -#: guix-git/doc/guix.texi:7767 guix-git/doc/guix.texi:11216 +#: guix-git/doc/guix.texi:7825 guix-git/doc/guix.texi:11530 msgid "Consider this example:" msgstr "Regardez cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:7773 +#: guix-git/doc/guix.texi:7831 #, no-wrap msgid "" "(define libressl-instead-of-openssl\n" @@ -16162,7 +16281,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7776 +#: guix-git/doc/guix.texi:7834 #, no-wrap msgid "" "(define git-with-libressl\n" @@ -16172,33 +16291,33 @@ msgstr "" " (libressl-instead-of-openssl git))\n" #. type: Plain text -#: guix-git/doc/guix.texi:7784 +#: guix-git/doc/guix.texi:7842 msgid "Here we first define a rewriting procedure that replaces @var{openssl} with @var{libressl}. Then we use it to define a @dfn{variant} of the @var{git} package that uses @var{libressl} instead of @var{openssl}. This is exactly what the @option{--with-input} command-line option does (@pxref{Package Transformation Options, @option{--with-input}})." msgstr "Ici nous définissons d'abord une procédure de réécriture qui remplace @var{openssl} par @var{libressl}. Ensuite nous l'utilisons pour définir une @dfn{variante} du paquet @var{git} qui utilise @var{libressl} plutôt que @var{openssl}. cela est exactement ce que l'option en ligne de commande @option{--with-input} fait (@pxref{Package Transformation Options, @option{--with-input}})." #. type: Plain text -#: guix-git/doc/guix.texi:7787 +#: guix-git/doc/guix.texi:7845 msgid "The following variant of @code{package-input-rewriting} can match packages to be replaced by name rather than by identity." msgstr "La variante suivante de @code{package-input-rewriting} peut repérer les paquets à remplacer par nom à la place de leur identité." #. type: deffn -#: guix-git/doc/guix.texi:7788 +#: guix-git/doc/guix.texi:7846 #, no-wrap msgid "{Scheme Procedure} package-input-rewriting/spec @var{replacements} [#:deep? #t]" msgstr "{Procédure Scheme} package-input-rewriting/spec @var{remplacements}[#:deep? #t]" #. type: deffn -#: guix-git/doc/guix.texi:7795 +#: guix-git/doc/guix.texi:7853 msgid "Return a procedure that, given a package, applies the given @var{replacements} to all the package graph, including implicit inputs unless @var{deep?} is false. @var{replacements} is a list of spec/procedures pair; each spec is a package specification such as @code{\"gcc\"} or @code{\"guile@@2\"}, and each procedure takes a matching package and returns a replacement for that package." msgstr "Renvoie une procédure qui, étant donné un paquet, applique les @var{remplacements} donnés à tout le graphe du paquet, y compris les entrées implicites, à moins que @var{deep?} ne soit faux. @var{replacements} est une liste de paires spécifications/procédures ; chaque spécification est une spécification de paquet telle que @code{\"gcc\"} ou @code{\"guile@@2\"}, et chaque procédure prend un paquet correspondant et renvoie un remplacement pour ce paquet." #. type: Plain text -#: guix-git/doc/guix.texi:7798 +#: guix-git/doc/guix.texi:7856 msgid "The example above could be rewritten this way:" msgstr "L'exemple ci-dessus pourrait être réécrit de cette manière :" #. type: lisp -#: guix-git/doc/guix.texi:7803 +#: guix-git/doc/guix.texi:7861 #, no-wrap msgid "" "(define libressl-instead-of-openssl\n" @@ -16210,873 +16329,875 @@ msgstr "" " (package-input-rewriting/spec `((\"openssl\" . ,(const libressl)))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:7808 +#: guix-git/doc/guix.texi:7866 msgid "The key difference here is that, this time, packages are matched by spec and not by identity. In other words, any package in the graph that is called @code{openssl} will be replaced." msgstr "Le différence clef est que, cette fois-ci, les paquets correspondent à la spécification et non à l'identité. En d'autres termes, tout paquet dans le graphe qui est appelé @code{openssl} sera remplacé." #. type: Plain text -#: guix-git/doc/guix.texi:7812 +#: guix-git/doc/guix.texi:7870 msgid "A more generic procedure to rewrite a package dependency graph is @code{package-mapping}: it supports arbitrary changes to nodes in the graph." msgstr "Une procédure plus générique pour réécrire un graphe de dépendance d'un paquet est @code{package-mapping} : elle supporte n'importe quel changement dans les nœuds du graphe." #. type: deffn -#: guix-git/doc/guix.texi:7813 +#: guix-git/doc/guix.texi:7871 #, no-wrap msgid "{Scheme Procedure} package-mapping @var{proc} [@var{cut?}] [#:deep? #f]" msgstr "{Procédure Scheme} package-mapping @var{proc} [@var{cut?}] [#:deep? #f]" #. type: deffn -#: guix-git/doc/guix.texi:7818 +#: guix-git/doc/guix.texi:7876 msgid "Return a procedure that, given a package, applies @var{proc} to all the packages depended on and returns the resulting package. The procedure stops recursion when @var{cut?} returns true for a given package. When @var{deep?} is true, @var{proc} is applied to implicit inputs as well." msgstr "Renvoie une procédure qui, pour un paquet donné, applique @var{proc} à tous les paquets dont il dépend et renvoie le paquet résultant. La procédure arrête la récursion lorsque @var{cut?} renvoie true pour un paquet donné. Lorsque @var{deep?} est vrai, @var{proc} est également appliqué aux entrées implicites." #. type: cindex -#: guix-git/doc/guix.texi:7824 +#: guix-git/doc/guix.texi:7882 #, no-wrap msgid "build system" msgstr "système de construction" #. type: Plain text -#: guix-git/doc/guix.texi:7829 +#: guix-git/doc/guix.texi:7887 msgid "Each package definition specifies a @dfn{build system} and arguments for that build system (@pxref{Defining Packages}). This @code{build-system} field represents the build procedure of the package, as well as implicit dependencies of that build procedure." msgstr "Chaque définition de paquet définie un @dfn{système de construction} et des arguments pour ce système de construction (@pxref{Defining Packages}). Ce champ @code{build-system} représente la procédure de construction du paquet, ainsi que des dépendances implicites pour cette procédure de construction." #. type: Plain text -#: guix-git/doc/guix.texi:7833 +#: guix-git/doc/guix.texi:7891 msgid "Build systems are @code{} objects. The interface to create and manipulate them is provided by the @code{(guix build-system)} module, and actual build systems are exported by specific modules." msgstr "Les systèmes de construction sont des objets @code{}. L'interface pour les créer et les manipuler est fournie par le module @code{(guix build-system)} et les systèmes de construction eux-mêmes sont exportés par des modules spécifiques." #. type: cindex -#: guix-git/doc/guix.texi:7834 +#: guix-git/doc/guix.texi:7892 #, no-wrap msgid "bag (low-level package representation)" msgstr "sac (représentation à bas-niveau des paquets)" #. type: Plain text -#: guix-git/doc/guix.texi:7844 +#: guix-git/doc/guix.texi:7902 msgid "Under the hood, build systems first compile package objects to @dfn{bags}. A @dfn{bag} is like a package, but with less ornamentation---in other words, a bag is a lower-level representation of a package, which includes all the inputs of that package, including some that were implicitly added by the build system. This intermediate representation is then compiled to a derivation (@pxref{Derivations}). The @code{package-with-c-toolchain} is an example of a way to change the implicit inputs that a package's build system pulls in (@pxref{package Reference, @code{package-with-c-toolchain}})." msgstr "Sous le capot, les systèmes de construction compilent d'abord des objets paquets en @dfn{sacs}. Un @dfn{sac} est comme un paquet, mais avec moins de décoration — en d'autres mots, un sac est une représentation à bas-niveau d'un paquet, qui inclus toutes les entrées de ce paquet, dont certaines ont été implicitement ajoutées par le système de construction. Cette représentation intermédiaire est ensuite compilée en une dérivation (@pxref{Derivations}). Le @code{package-with-c-toolchain} est un exemple d'une manière de modifier les entrées implicites que le système de construction d'un paquet récupère (@pxref{package Reference, @code{package-with-c-toolchain}})." #. type: Plain text -#: guix-git/doc/guix.texi:7852 +#: guix-git/doc/guix.texi:7910 msgid "Build systems accept an optional list of @dfn{arguments}. In package definitions, these are passed @i{via} the @code{arguments} field (@pxref{Defining Packages}). They are typically keyword arguments (@pxref{Optional Arguments, keyword arguments in Guile,, guile, GNU Guile Reference Manual}). The value of these arguments is usually evaluated in the @dfn{build stratum}---i.e., by a Guile process launched by the daemon (@pxref{Derivations})." msgstr "Les systèmes de construction acceptent une liste d'@dfn{arguments} facultatifs. Dans les définitions de paquets, ils sont passés @i{via} le champ @code{arguments} (@pxref{Defining Packages}). Ce sont typiquement des arguments par mot-clef (@pxref{Optional Arguments, keyword arguments in Guile,, guile, GNU Guile Reference Manual}). La valeur de ces arguments est habituellement évaluée dans la @dfn{strate de construction} — c.-à-d.@: par un processus Guile lancé par le démon (@pxref{Derivations})." #. type: Plain text -#: guix-git/doc/guix.texi:7856 +#: guix-git/doc/guix.texi:7914 msgid "The main build system is @code{gnu-build-system}, which implements the standard build procedure for GNU and many other packages. It is provided by the @code{(guix build-system gnu)} module." msgstr "Le système de construction principal est le @code{gnu-build-system} qui implémente les procédures de construction standard pour les paquets GNU et de nombreux autres. Il est fournit par le module @code{(guix build-system gnu)}." #. type: defvr -#: guix-git/doc/guix.texi:7857 +#: guix-git/doc/guix.texi:7915 #, no-wrap msgid "{Scheme Variable} gnu-build-system" msgstr "{Variable Scheme} gnu-build-system" #. type: defvr -#: guix-git/doc/guix.texi:7861 +#: guix-git/doc/guix.texi:7919 msgid "@code{gnu-build-system} represents the GNU Build System, and variants thereof (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards})." msgstr "@code{gnu-build-system} représente le système de construction GNU et ses variantes (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards})." #. type: cindex -#: guix-git/doc/guix.texi:7862 guix-git/doc/guix.texi:8812 -#: guix-git/doc/guix.texi:9294 +#: guix-git/doc/guix.texi:7920 guix-git/doc/guix.texi:8869 +#: guix-git/doc/guix.texi:9429 #, no-wrap msgid "build phases" msgstr "phases de construction" #. type: defvr -#: guix-git/doc/guix.texi:7869 +#: guix-git/doc/guix.texi:7927 msgid "In a nutshell, packages using it are configured, built, and installed with the usual @code{./configure && make && make check && make install} command sequence. In practice, a few additional steps are often needed. All these steps are split up in separate @dfn{phases}. @xref{Build Phases}, for more info on build phases and ways to customize them." msgstr "En résumé, les paquets qui l'utilisent sont configurés, construits et installés avec la séquence @code{./configure && make && make check && make install} habituelle. En pratique, des étapes supplémentaires sont souvent requises. Toutes ces étapes sont séparées dans des @dfn{phases} différentes, @xref{Build Phases} pour plus d'informations sur les phases de construction et comment les personnaliser." #. type: defvr -#: guix-git/doc/guix.texi:7876 +#: guix-git/doc/guix.texi:7934 msgid "In addition, this build system ensures that the ``standard'' environment for GNU packages is available. This includes tools such as GCC, libc, Coreutils, Bash, Make, Diffutils, grep, and sed (see the @code{(guix build-system gnu)} module for a complete list). We call these the @dfn{implicit inputs} of a package, because package definitions do not have to mention them." msgstr "En plus, ce système de construction s'assure que l'environnement « standard » pour les paquets GNU est disponible. Cela inclus des outils comme GCC, libc, Coreutils, Bash, Make, Diffutils, grep et sed (voir le module @code{(guix build-system gnu)} pour une liste complète). Nous les appelons les @dfn{entrées implicites} d'un paquet parce que la définition du paquet ne les mentionne pas." #. type: defvr -#: guix-git/doc/guix.texi:7880 +#: guix-git/doc/guix.texi:7938 msgid "This build system supports a number of keyword arguments, which can be passed @i{via} the @code{arguments} field of a package. Here are some of the main parameters:" msgstr "Ce système de construction prend en charge un certain nombre de mot-clés, qui peuvent être passés via le champ @code{arguments} d'un paquet. Voici certains des paramètres principaux :" #. type: item -#: guix-git/doc/guix.texi:7882 +#: guix-git/doc/guix.texi:7940 #, no-wrap msgid "#:phases" msgstr "#:phases" #. type: table -#: guix-git/doc/guix.texi:7885 +#: guix-git/doc/guix.texi:7943 msgid "This argument specifies build-side code that evaluates to an alist of build phases. @xref{Build Phases}, for more information." msgstr "Cet argument spécifie le code du côté de la construction qui s'évalue en une liste d'association des phases de construction. @xref{Build Phases}, pour plus d'informations." #. type: item -#: guix-git/doc/guix.texi:7886 +#: guix-git/doc/guix.texi:7944 #, no-wrap msgid "#:configure-flags" msgstr "#:configure-flags" #. type: table -#: guix-git/doc/guix.texi:7889 +#: guix-git/doc/guix.texi:7947 msgid "This is a list of flags (strings) passed to the @command{configure} script. @xref{Defining Packages}, for an example." msgstr "C'est une liste de drapeaux (chaînes) passés au script @command{configure}. @xref{Defining Packages}, pour un exemple." #. type: item -#: guix-git/doc/guix.texi:7890 +#: guix-git/doc/guix.texi:7948 #, no-wrap msgid "#:make-flags" msgstr "#:make-flags" #. type: table -#: guix-git/doc/guix.texi:7894 +#: guix-git/doc/guix.texi:7952 msgid "This list of strings contains flags passed as arguments to @command{make} invocations in the @code{build}, @code{check}, and @code{install} phases." msgstr "Cette liste de chaînes contient les drapeaux passés en argument aux invocation de @command{make} dans les phases @code{build}, @code{check} et @code{install}." #. type: item -#: guix-git/doc/guix.texi:7895 +#: guix-git/doc/guix.texi:7953 #, no-wrap msgid "#:out-of-source?" msgstr "#:out-of-source?" #. type: table -#: guix-git/doc/guix.texi:7898 +#: guix-git/doc/guix.texi:7956 msgid "This Boolean, @code{#f} by default, indicates whether to run builds in a build directory separate from the source tree." msgstr "Ce booléen, @code{#f} par défaut, indique s'il faut lancer les constructions dans un répertoire séparé de l'arborescence des sources." #. type: table -#: guix-git/doc/guix.texi:7903 +#: guix-git/doc/guix.texi:7961 msgid "When it is true, the @code{configure} phase creates a separate build directory, changes to that directory, and runs the @code{configure} script from there. This is useful for packages that require it, such as @code{glibc}." msgstr "Lorsque la valeur est vraie, la phase @code{configure} crée un répertoire de construction séparé, se déplace dedans et lance le script @code{configure} à partir de celui-ci. C'est utile pour les paquets qui en ont besoin, comme @code{glibc}." #. type: item -#: guix-git/doc/guix.texi:7904 +#: guix-git/doc/guix.texi:7962 #, no-wrap msgid "#:tests?" msgstr "#:tests?" #. type: table -#: guix-git/doc/guix.texi:7907 +#: guix-git/doc/guix.texi:7965 msgid "This Boolean, @code{#t} by default, indicates whether the @code{check} phase should run the package's test suite." msgstr "Ce booléen, @code{#t} par défaut, indique si la phase @code{check} doit lancer la suite de tests du paquet." #. type: item -#: guix-git/doc/guix.texi:7908 +#: guix-git/doc/guix.texi:7966 #, no-wrap msgid "#:test-target" msgstr "#:test-target" #. type: table -#: guix-git/doc/guix.texi:7911 +#: guix-git/doc/guix.texi:7969 msgid "This string, @code{\"check\"} by default, gives the name of the makefile target used by the @code{check} phase." msgstr "Cette chaîne, @code{\"check\"} par défaut, donne le nom de la cible du makefile à utiliser dans la phase @code{check}." #. type: item -#: guix-git/doc/guix.texi:7912 +#: guix-git/doc/guix.texi:7970 #, no-wrap msgid "#:parallel-build?" msgstr "#:parallel-build?" #. type: itemx -#: guix-git/doc/guix.texi:7913 +#: guix-git/doc/guix.texi:7971 #, no-wrap msgid "#:parallel-tests?" msgstr "#:parallel-tests?" #. type: table -#: guix-git/doc/guix.texi:7920 +#: guix-git/doc/guix.texi:7978 msgid "These Boolean values specify whether to build, respectively run the test suite, in parallel, with the @code{-j} flag of @command{make}. When they are true, @code{make} is passed @code{-j@var{n}}, where @var{n} is the number specified as the @option{--cores} option of @command{guix-daemon} or that of the @command{guix} client command (@pxref{Common Build Options, @option{--cores}})." msgstr "Ces booléens spécifient s'il faut construire, respectivement lancer la suite de tests, en parallèle, avec le drapeau @code{-j} de @command{make}. Lorsque la valeur est vraie, @code{make} reçoit @code{-j@var{n}}, où @var{n} est le nombre spécifié dans l'option @option{--cores} de @command{guix-daemon} ou celle de la commande du client @command{guix} (@pxref{Common Build Options, @option{--cores}})." #. type: cindex -#: guix-git/doc/guix.texi:7921 +#: guix-git/doc/guix.texi:7979 #, no-wrap msgid "RUNPATH, validation" msgstr "RUNPATH, validation" #. type: item -#: guix-git/doc/guix.texi:7922 +#: guix-git/doc/guix.texi:7980 #, no-wrap msgid "#:validate-runpath?" msgstr "#:validate-runpath?" #. type: table -#: guix-git/doc/guix.texi:7926 +#: guix-git/doc/guix.texi:7984 msgid "This Boolean, @code{#t} by default, determines whether to ``validate'' the @code{RUNPATH} of ELF binaries (@code{.so} shared libraries as well as executables) previously installed by the @code{install} phase." msgstr "Ce booléen, @code{#t} par défaut, détermine s'il faut « valider » le @code{RUNPATH} des binaires ELF (les bibliothèques partagées @code{.so} et les exécutables) installés précédemment par la phase @code{install}." #. type: table -#: guix-git/doc/guix.texi:7934 +#: guix-git/doc/guix.texi:7992 msgid "This validation step consists in making sure that all the shared libraries needed by an ELF binary, which are listed as @code{DT_NEEDED} entries in its @code{PT_DYNAMIC} segment, appear in the @code{DT_RUNPATH} entry of that binary. In other words, it ensures that running or using those binaries will not result in a ``file not found'' error at run time. @xref{Options, @option{-rpath},, ld, The GNU Linker}, for more information on @code{RUNPATH}." msgstr "Cette étape de validation s'assure que toutes les bibliothèques partagées par les binaires ELF, qui sont listées dans des entrées @code{DT_NEEDED} de leur segment @code{PT_DYNAMIC} apparaissent dans l'entrée @code{DT_RUNPATH} de ce même binaire. En d'autres termes, elle s'assure que lancer ou utiliser ces binaires ne renvoie pas l'erreur « fichier introuvable » à l'exécution. @xref{Options, @option{-rpath},, ld, The GNU Linker}, pour plus d'informations sur le @code{RUNPATH}." #. type: item -#: guix-git/doc/guix.texi:7935 +#: guix-git/doc/guix.texi:7993 #, no-wrap msgid "#:substitutable?" msgstr "#:substitutable?" #. type: table -#: guix-git/doc/guix.texi:7939 +#: guix-git/doc/guix.texi:7997 msgid "This Boolean, @code{#t} by default, tells whether the package outputs should be substitutable---i.e., whether users should be able to obtain substitutes for them instead of building locally (@pxref{Substitutes})." msgstr "Ce booléen, @code{#t} par défaut, indique si les sorties du paquet peuvent être substituées — c.-à-d.@: si les utilisateur·rices peuvent obtenir des substituts au lieu de les construire localement (@pxref{Substitutes})." #. type: item -#: guix-git/doc/guix.texi:7940 +#: guix-git/doc/guix.texi:7998 #, no-wrap msgid "#:allowed-references" msgstr "#:allowed-references" #. type: itemx -#: guix-git/doc/guix.texi:7941 +#: guix-git/doc/guix.texi:7999 #, no-wrap msgid "#:disallowed-references" msgstr "#:disallowed-references" #. type: table -#: guix-git/doc/guix.texi:7946 +#: guix-git/doc/guix.texi:8004 msgid "When true, these arguments must be a list of dependencies that must not appear among the references of the build results. If, upon build completion, some of these references are retained, the build process fails." msgstr "Lorsque la valeur est vraie, ces arguments doivent être une liste de dépendance qui ne doivent pas apparaître dans les dépendances des résultats de la construction. Si, à la fin de la construction, certaines de ces références sont retenues, le processus échoue." #. type: table -#: guix-git/doc/guix.texi:7951 +#: guix-git/doc/guix.texi:8009 msgid "This is useful to ensure that a package does not erroneously keep a reference to some of it build-time inputs, in cases where doing so would, for example, unnecessarily increase its size (@pxref{Invoking guix size})." msgstr "C'est utile pour s'assurer qu'un paquet ne garde pas une référence par erreur à ses entrées de construction, sis cela augmente par exemple la taille de sa clôture (@pxref{Invoking guix size})." #. type: defvr -#: guix-git/doc/guix.texi:7954 +#: guix-git/doc/guix.texi:8012 msgid "Most other build systems support these keyword arguments." msgstr "La plupart des autres systèmes de construction prennent en charge ces mot-clés." #. type: Plain text -#: guix-git/doc/guix.texi:7961 +#: guix-git/doc/guix.texi:8019 msgid "Other @code{} objects are defined to support other conventions and tools used by free software packages. They inherit most of @code{gnu-build-system}, and differ mainly in the set of inputs implicitly added to the build process, and in the list of phases executed. Some of these build systems are listed below." msgstr "D'autres objets @code{} sont définis pour supporter d'autres conventions et outils utilisés par les paquets de logiciels libres. Ils héritent de la plupart de @code{gnu-build-system} et diffèrent surtout dans l'ensemble des entrées implicites ajoutées au processus de construction et dans la liste des phases exécutées. Certains de ces systèmes de construction sont listés ci-dessous." #. type: defvr -#: guix-git/doc/guix.texi:7962 +#: guix-git/doc/guix.texi:8020 #, no-wrap msgid "{Scheme Variable} ant-build-system" msgstr "{Variable Scheme} ant-build-system" #. type: defvr -#: guix-git/doc/guix.texi:7966 +#: guix-git/doc/guix.texi:8024 msgid "This variable is exported by @code{(guix build-system ant)}. It implements the build procedure for Java packages that can be built with @url{https://ant.apache.org/, Ant build tool}." msgstr "Cette variable est exportée par @code{(guix build-system ant)}. Elle implémente la procédure de construction pour les paquets Java qui peuvent être construits avec @url{https://ant.apache.org/, l'outil de construction Ant}." #. type: defvr -#: guix-git/doc/guix.texi:7971 +#: guix-git/doc/guix.texi:8029 msgid "It adds both @code{ant} and the @dfn{Java Development Kit} (JDK) as provided by the @code{icedtea} package to the set of inputs. Different packages can be specified with the @code{#:ant} and @code{#:jdk} parameters, respectively." msgstr "Elle ajoute à la fois @code{ant} et the @dfn{kit de développement Java} (JDK) fournit par le paquet @code{icedtea} à l'ensemble des entrées. Des paquets différents peuvent être spécifiés avec les paramètres @code{#:ant} et @code{#:jdk} respectivement." #. type: defvr -#: guix-git/doc/guix.texi:7977 +#: guix-git/doc/guix.texi:8035 msgid "When the original package does not provide a suitable Ant build file, the parameter @code{#:jar-name} can be used to generate a minimal Ant build file @file{build.xml} with tasks to build the specified jar archive. In this case the parameter @code{#:source-dir} can be used to specify the source sub-directory, defaulting to ``src''." msgstr "Lorsque le paquet d'origine ne fournit pas de fichier de construction Ant acceptable, le paramètre @code{#:jar-name} peut être utilisé pour générer un fichier de construction Ant @file{build.xml} minimal, avec des tâches pour construire l'archive jar spécifiée. Dans ce cas, le paramètre @code{#:source-dir} peut être utilisé pour spécifier le sous-répertoire des sources, par défaut « src »." #. type: defvr -#: guix-git/doc/guix.texi:7985 +#: guix-git/doc/guix.texi:8043 msgid "The @code{#:main-class} parameter can be used with the minimal ant buildfile to specify the main class of the resulting jar. This makes the jar file executable. The @code{#:test-include} parameter can be used to specify the list of junit tests to run. It defaults to @code{(list \"**/*Test.java\")}. The @code{#:test-exclude} can be used to disable some tests. It defaults to @code{(list \"**/Abstract*.java\")}, because abstract classes cannot be run as tests." msgstr "Le paramètre @code{#:main-class} peut être utilisé avec le fichier de construction minimal pour spécifier la classe principale du jar. Cela rend le fichier jar exécutable. Le paramètre @code{#:test-include} peut être utilisé pour spécifier la liste des tests junits à lancer. Il vaut par défaut @code{(list \"**/*Test.java\")}. Le paramètre @code{#:test-exclude} peut être utilisé pour désactiver certains tests. Sa valeur par défaut est @code{(list \"**/Abstract*.java\")}, parce que les classes abstraites ne peuvent pas être utilisées comme des tests." #. type: defvr -#: guix-git/doc/guix.texi:7989 +#: guix-git/doc/guix.texi:8047 msgid "The parameter @code{#:build-target} can be used to specify the Ant task that should be run during the @code{build} phase. By default the ``jar'' task will be run." msgstr "Le paramètre @code{#:build-target} peut être utilisé pour spécifier la tâche Ant qui devrait être lancée pendant la phase @code{build}. Par défaut la tâche « jar » sera lancée." #. type: defvr -#: guix-git/doc/guix.texi:7992 +#: guix-git/doc/guix.texi:8050 #, no-wrap msgid "{Scheme Variable} android-ndk-build-system" msgstr "{Variable Scheme} android-ndk-build-system" #. type: cindex -#: guix-git/doc/guix.texi:7993 +#: guix-git/doc/guix.texi:8051 #, no-wrap msgid "Android distribution" msgstr "Distribution android" #. type: cindex -#: guix-git/doc/guix.texi:7994 +#: guix-git/doc/guix.texi:8052 #, no-wrap msgid "Android NDK build system" msgstr "Système de construction Android NDK" #. type: defvr -#: guix-git/doc/guix.texi:7998 +#: guix-git/doc/guix.texi:8056 msgid "This variable is exported by @code{(guix build-system android-ndk)}. It implements a build procedure for Android NDK (native development kit) packages using a Guix-specific build process." msgstr "Cette variable est exportée par @code{(guix build-system android-ndk)}. Elle implémente une procédure de construction pour les paquets du NDK Android (@i{native development kit}) avec des processus de construction spécifiques à Guix." #. type: defvr -#: guix-git/doc/guix.texi:8002 +#: guix-git/doc/guix.texi:8060 msgid "The build system assumes that packages install their public interface (header) files to the subdirectory @file{include} of the @code{out} output and their libraries to the subdirectory @file{lib} the @code{out} output." msgstr "Le système de compilation suppose que les paquets installent leurs fichiers d'interface publique (en-tête) dans le sous-répertoire @file{include} de la sortie @code{out} et leurs bibliothèques dans le sous-répertoire @file{lib} de la sortie @code{out}." #. type: defvr -#: guix-git/doc/guix.texi:8005 +#: guix-git/doc/guix.texi:8063 msgid "It's also assumed that the union of all the dependencies of a package has no conflicting files." msgstr "Il est aussi supposé que l'union de toutes les dépendances d'un paquet n'a pas de fichiers en conflit." #. type: defvr -#: guix-git/doc/guix.texi:8008 +#: guix-git/doc/guix.texi:8066 msgid "For the time being, cross-compilation is not supported - so right now the libraries and header files are assumed to be host tools." msgstr "Pour l'instant, la compilation croisée n'est pas supportées — donc pour l'instant les bibliothèques et les fichiers d'en-têtes sont supposés être des outils de l'hôte." #. type: defvr -#: guix-git/doc/guix.texi:8011 +#: guix-git/doc/guix.texi:8069 #, no-wrap msgid "{Scheme Variable} asdf-build-system/source" msgstr "{Variable Scheme} asdf-build-system/source" #. type: defvrx -#: guix-git/doc/guix.texi:8012 +#: guix-git/doc/guix.texi:8070 #, no-wrap msgid "{Scheme Variable} asdf-build-system/sbcl" msgstr "{Variable Scheme} asdf-build-system/sbcl" #. type: defvrx -#: guix-git/doc/guix.texi:8013 +#: guix-git/doc/guix.texi:8071 #, no-wrap msgid "{Scheme Variable} asdf-build-system/ecl" msgstr "{Variable Scheme} asdf-build-system/ecl" #. type: defvr -#: guix-git/doc/guix.texi:8019 +#: guix-git/doc/guix.texi:8077 msgid "These variables, exported by @code{(guix build-system asdf)}, implement build procedures for Common Lisp packages using @url{https://common-lisp.net/project/asdf/, ``ASDF''}. ASDF is a system definition facility for Common Lisp programs and libraries." msgstr "Ces variables, exportées par @code{(guix build-system asdf)}, implémentent les procédures de constructions pour les paquets en Common Lisp qui utilisent @url{https://common-lisp.net/project/asdf/, « ASDF »}. ASDF est un dispositif de définition de systèmes pour les programmes et les bibliothèques en Common Lisp." #. type: defvr -#: guix-git/doc/guix.texi:8026 +#: guix-git/doc/guix.texi:8084 msgid "The @code{asdf-build-system/source} system installs the packages in source form, and can be loaded using any common lisp implementation, via ASDF@. The others, such as @code{asdf-build-system/sbcl}, install binary systems in the format which a particular implementation understands. These build systems can also be used to produce executable programs, or lisp images which contain a set of packages pre-loaded." msgstr "Le système @code{asdf-build-system/source} installe les paquets au format source qui peuvent être chargés avec n'importe quelle implémentation de common lisp, via ASDF@. Les autres, comme @code{asdf-build-system/sbcl}, installent des binaires au format qu'un implémentation particulière comprend. Ces systèmes de constructions peuvent aussi être utilisés pour produire des programmes exécutables ou des images lisp qui contiennent un ensemble de paquets pré-chargés." #. type: defvr -#: guix-git/doc/guix.texi:8030 +#: guix-git/doc/guix.texi:8088 msgid "The build system uses naming conventions. For binary packages, the package name should be prefixed with the lisp implementation, such as @code{sbcl-} for @code{asdf-build-system/sbcl}." msgstr "Le système de construction utilise des conventions de nommage. Pour les paquets binaires, le nom du paquet devrait être préfixé par l'implémentation lisp, comme @code{sbcl-} pour @code{asdf-build-system/sbcl}." #. type: defvr -#: guix-git/doc/guix.texi:8034 +#: guix-git/doc/guix.texi:8092 msgid "Additionally, the corresponding source package should be labeled using the same convention as python packages (see @ref{Python Modules}), using the @code{cl-} prefix." msgstr "En plus, le paquet source correspondant devrait étiquetté avec la même convention que les paquets python (voir @ref{Python Modules}), avec le préfixe @code{cl-}." #. type: defvr -#: guix-git/doc/guix.texi:8042 +#: guix-git/doc/guix.texi:8100 msgid "In order to create executable programs and images, the build-side procedures @code{build-program} and @code{build-image} can be used. They should be called in a build phase after the @code{create-asdf-configuration} phase, so that the system which was just built can be used within the resulting image. @code{build-program} requires a list of Common Lisp expressions to be passed as the @code{#:entry-program} argument." msgstr "Pour créer des programmes exécutables et des images, les procédures côté construction @code{build-program} et @code{build-image} peuvent être utilisées. Elles devraient être appelées dans une phase de construction après la phase @code{create-asdf-configuration} pour que le système qui vient d'être construit puisse être utilisé dans l'image créée. @code{build-program} requiert une liste d'expressions Common Lisp dans l'argument @code{#:entry-program}." #. type: defvr -#: guix-git/doc/guix.texi:8051 +#: guix-git/doc/guix.texi:8109 msgid "By default, all the @file{.asd} files present in the sources are read to find system definitions. The @code{#:asd-files} parameter can be used to specify the list of @file{.asd} files to read. Furthermore, if the package defines a system for its tests in a separate file, it will be loaded before the tests are run if it is specified by the @code{#:test-asd-file} parameter. If it is not set, the files @code{-tests.asd}, @code{-test.asd}, @code{tests.asd}, and @code{test.asd} will be tried if they exist." msgstr "Par défaut, tous les fichiers @file{.asd} présents dans les sources sont lus pour trouver les définitions du système. Le paramètre @code{#:asd-file} peut être utilisé pour préciser la liste des fichiers @file{.asd} à lire. En outre, si le paquet définit un système pour ses tests dans un fichier séparé, il sera chargé avant l'exécution des tests s'il est spécifié par le paramètre @code{#:test-asd-file}. S'il n'est pas défini, les fichiers @code{-tests.asd}, @code{-test.asd}, @code{tests.asd} et @code{test.asd} seront essayés s'ils existent." #. type: defvr -#: guix-git/doc/guix.texi:8056 +#: guix-git/doc/guix.texi:8114 msgid "If for some reason the package must be named in a different way than the naming conventions suggest, or if several systems must be compiled, the @code{#:asd-systems} parameter can be used to specify the list of system names." msgstr "Si pour quelque raison que ce soit le paquet doit être nommé d'une manière différente de ce que la convention de nommage suggère, ou si plusieurs systèmes doivent être compilés, le paramètre @code{#:asd-systems} peut être utilisé pour spécifier la liste des noms de systèmes." #. type: defvr -#: guix-git/doc/guix.texi:8059 +#: guix-git/doc/guix.texi:8117 #, no-wrap msgid "{Scheme Variable} cargo-build-system" msgstr "{Variable Scheme} cargo-build-system" #. type: cindex -#: guix-git/doc/guix.texi:8060 +#: guix-git/doc/guix.texi:8118 #, no-wrap msgid "Rust programming language" msgstr "Langage de programmation Rust" #. type: cindex -#: guix-git/doc/guix.texi:8061 +#: guix-git/doc/guix.texi:8119 #, no-wrap msgid "Cargo (Rust build system)" msgstr "Cargo (système de construction Rust)" #. type: defvr -#: guix-git/doc/guix.texi:8065 +#: guix-git/doc/guix.texi:8123 msgid "This variable is exported by @code{(guix build-system cargo)}. It supports builds of packages using Cargo, the build tool of the @uref{https://www.rust-lang.org, Rust programming language}." msgstr "Cette variable est exportée par @code{(guix build-system cargo)}. Elle supporte les construction de paquets avec Cargo, le système de construction du @uref{https://www.rust-lang.org, langage de programmation Rust}." #. type: defvr -#: guix-git/doc/guix.texi:8068 +#: guix-git/doc/guix.texi:8126 msgid "It adds @code{rustc} and @code{cargo} to the set of inputs. A different Rust package can be specified with the @code{#:rust} parameter." msgstr "Cela ajoute @code{rustc} et @code{cargo} à l'ensemble des entrées. Un autre paquet Rust peut être spécifié avec le paramètre @code{#:rust}." #. type: defvr -#: guix-git/doc/guix.texi:8078 +#: guix-git/doc/guix.texi:8136 msgid "Regular cargo dependencies should be added to the package definition similarly to other packages; those needed only at build time to native-inputs, others to inputs. If you need to add source-only crates then you should add them to via the @code{#:cargo-inputs} parameter as a list of name and spec pairs, where the spec can be a package or a source definition. Note that the spec must evaluate to a path to a gzipped tarball which includes a @code{Cargo.toml} file at its root, or it will be ignored. Similarly, cargo dev-dependencies should be added to the package definition via the @code{#:cargo-development-inputs} parameter." msgstr "Les dépendances régulières de cargo doivent être ajoutées à la définition du paquet comme avec les autres paquets ; celles qui ne sont requises qu'à la construction dans « native-inputs », les autres dans « inputs ». Si vous devez ajouter des crates sources alors vous devez les ajouter via le paramètre @code{#:cargo-inputs} sous la forme d'une liste de paires de noms et de spécifications, où la spécification peut être un paquet ou une définition de source. Notez que la spécification doit évaluer un chemin vers une arhive gzippée qui inclut un fichier @code{Cargo.toml} à sa racine, sinon elle sera ignorée. De même, les dépendances de développement de cargo doivent être ajoutées à la définition du paquet via le paramètre @code{#:cargo-development-inputs}." #. type: defvr -#: guix-git/doc/guix.texi:8088 +#: guix-git/doc/guix.texi:8146 msgid "In its @code{configure} phase, this build system will make any source inputs specified in the @code{#:cargo-inputs} and @code{#:cargo-development-inputs} parameters available to cargo. It will also remove an included @code{Cargo.lock} file to be recreated by @code{cargo} during the @code{build} phase. The @code{package} phase will run @code{cargo package} to create a source crate for future use. The @code{install} phase installs the binaries defined by the crate. Unless @code{install-source? #f} is defined it will also install a source crate repository of itself and unpacked sources, to ease in future hacking on rust packages." msgstr "Dans sa phase @code{configure}, ce système de construction mettra à disposition de cargo toutes les entrées sources spécifiées dans les paramètres @code{#:cargo-inputs} et @code{#:cargo-development-inputs}. Il supprimera également un fichier @code{Cargo.lock} inclus, qui sera recréé par @code{cargo} pendant la phase @code{build}. La phase @code{package} lancera @code{cargo package} pour créer un crate source réutilisable plus tard. La phase @code{install} installe les binaires définis par le crate. À moins de définir @code{install-source? #f} elle installera aussi un crate source et les sources décompressées pour faciliter le travail avec les paquets rust." #. type: defvr -#: guix-git/doc/guix.texi:8090 +#: guix-git/doc/guix.texi:8148 #, no-wrap msgid "{Scheme Variable} chicken-build-system" msgstr "{Variable Scheme} chicken-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8095 +#: guix-git/doc/guix.texi:8153 msgid "This variable is exported by @code{(guix build-system chicken)}. It builds @uref{https://call-cc.org/, CHICKEN Scheme} modules, also called ``eggs'' or ``extensions''. CHICKEN generates C source code, which then gets compiled by a C compiler, in this case GCC." msgstr "Cette variable est exportée par @code{(guix build-system chicken)}. Elle construit des modules @uref{https://call-cc.org/, CHICKEN Scheme}, aussi appelés « eggs » ou « extensions ». CHICKEN génère du code source C, qui est ensuite compilé par un compilateur C, dans ce cas GCC." #. type: defvr -#: guix-git/doc/guix.texi:8098 +#: guix-git/doc/guix.texi:8156 msgid "This build system adds @code{chicken} to the package inputs, as well as the packages of @code{gnu-build-system}." msgstr "Ce système de construction ajoute @code{chicken} aux entrées du paquet, en plus des paquets de @code{gnu-build-system}." #. type: defvr -#: guix-git/doc/guix.texi:8102 +#: guix-git/doc/guix.texi:8160 msgid "The build system can't (yet) deduce the egg's name automatically, so just like with @code{go-build-system} and its @code{#:import-path}, you should define @code{#:egg-name} in the package's @code{arguments} field." msgstr "Le système de construction ne peut pas (encore) déterminer le nom de l'egg automatiquement, donc comme avec le @code{go-build-system} et son @code{#:import-path}, vous devriez définir @code{#:egg-name} dans le champ @code{arguments} du paquet." #. type: defvr -#: guix-git/doc/guix.texi:8104 +#: guix-git/doc/guix.texi:8162 msgid "For example, if you are packaging the @code{srfi-1} egg:" msgstr "Par exemple, si vous créez un paquet pour l'egg @code{srfi-1} :" #. type: lisp -#: guix-git/doc/guix.texi:8107 +#: guix-git/doc/guix.texi:8165 #, no-wrap msgid "(arguments '(#:egg-name \"srfi-1\"))\n" msgstr "(arguments '(#:egg-name \"srfi-1\"))\n" #. type: defvr -#: guix-git/doc/guix.texi:8112 +#: guix-git/doc/guix.texi:8170 msgid "Egg dependencies must be defined in @code{propagated-inputs}, not @code{inputs} because CHICKEN doesn't embed absolute references in compiled eggs. Test dependencies should go to @code{native-inputs}, as usual." msgstr "Les dépendances des egg doivent être définies dans @code{propagated-inputs}, pas @code{inputs} parce que CHICKEN n'inclut pas de références absolues dans les eggs compilés. Les dépendances des tests doivent aller dans @code{native-inputs}, comme d'habitude." #. type: defvr -#: guix-git/doc/guix.texi:8114 +#: guix-git/doc/guix.texi:8172 #, no-wrap msgid "{Scheme Variable} copy-build-system" msgstr "{Variable Scheme} copy-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8118 +#: guix-git/doc/guix.texi:8176 msgid "This variable is exported by @code{(guix build-system copy)}. It supports builds of simple packages that don't require much compiling, mostly just moving files around." msgstr "Cette variable est exportée par @code{(guix build-system copy)}. Il prend en charge la construction de paquets simples qui ne nécessitent pas beaucoup de compilation, la plupart du temps juste le déplacement de fichiers." #. type: defvr -#: guix-git/doc/guix.texi:8123 +#: guix-git/doc/guix.texi:8181 msgid "It adds much of the @code{gnu-build-system} packages to the set of inputs. Because of this, the @code{copy-build-system} does not require all the boilerplate code often needed for the @code{trivial-build-system}." msgstr "Cela ajoute une grande partie des paquets @code{gnu-build-system} à l'ensemble des entrées. De ce fait, le @code{copy-build-system} n'a pas besoin de tout le code passe-partout souvent nécessaire pour le @code{trivial-build-system}." #. type: defvr -#: guix-git/doc/guix.texi:8128 +#: guix-git/doc/guix.texi:8186 msgid "To further simplify the file installation process, an @code{#:install-plan} argument is exposed to let the packager specify which files go where. The install plan is a list of @code{(@var{source} @var{target} [@var{filters}])}. @var{filters} are optional." msgstr "Pour simplifier davantage le processus d'installation des fichiers, un argument @code{#:install-plan} est exposé pour permettre au packager de spécifier quels fichiers vont où. Le plan d'installation est une liste de @code{(@var{source} @var{cible} [@var{filtres}])}. Les @var{filtres} sont facultatifs." #. type: item -#: guix-git/doc/guix.texi:8130 +#: guix-git/doc/guix.texi:8188 #, no-wrap msgid "When @var{source} matches a file or directory without trailing slash, install it to @var{target}." msgstr "Lorsque @var{source} correspond à un fichier ou à un répertoire sans barre oblique, installez-le sur @var{cible}." #. type: item -#: guix-git/doc/guix.texi:8132 +#: guix-git/doc/guix.texi:8190 #, no-wrap msgid "If @var{target} has a trailing slash, install @var{source} basename beneath @var{target}." msgstr "Si @var{target} a une barre oblique, installez le nom de base @var{source} sous @var{target}." #. type: item -#: guix-git/doc/guix.texi:8133 +#: guix-git/doc/guix.texi:8191 #, no-wrap msgid "Otherwise install @var{source} as @var{target}." msgstr "Sinon, installez @var{source} comme @var{cible}." #. type: item -#: guix-git/doc/guix.texi:8136 +#: guix-git/doc/guix.texi:8194 #, no-wrap msgid "When @var{source} is a directory with a trailing slash, or when @var{filters} are used," msgstr "Lorsque @var{source} est un répertoire avec une barre oblique, ou lorsque des @var{filtres} sont utilisés," #. type: itemize -#: guix-git/doc/guix.texi:8139 +#: guix-git/doc/guix.texi:8197 msgid "the trailing slash of @var{target} is implied with the same meaning as above." msgstr "la barre oblique de @var{target} est implicite avec la même signification que ci-dessus." #. type: item -#: guix-git/doc/guix.texi:8140 +#: guix-git/doc/guix.texi:8198 #, no-wrap msgid "Without @var{filters}, install the full @var{source} @emph{content} to @var{target}." msgstr "Sans @var{filtres}, installez le @var{source} complet @emph{contenu} à @var{cible}." #. type: item -#: guix-git/doc/guix.texi:8141 +#: guix-git/doc/guix.texi:8199 #, no-wrap msgid "With @var{filters} among @code{#:include}, @code{#:include-regexp}, @code{#:exclude}," msgstr "Avec @var{filtres} parmi @code{#:include}, @code{#:include-regexp}, @code{#:exclude}," #. type: itemize -#: guix-git/doc/guix.texi:8144 +#: guix-git/doc/guix.texi:8202 msgid "@code{#:exclude-regexp}, only select files are installed depending on the filters. Each filters is specified by a list of strings." msgstr "@code{#:exclude-regexp}, seuls les fichiers sélectionnés sont installés en fonction des filtres. Chaque filtre est spécifié par une liste de chaînes de caractères." #. type: item -#: guix-git/doc/guix.texi:8145 +#: guix-git/doc/guix.texi:8203 #, no-wrap msgid "With @code{#:include}, install all the files which the path suffix matches" msgstr "Avec @code{#:include}, installez tous les fichiers dont le suffixe de chemin correspond" #. type: itemize -#: guix-git/doc/guix.texi:8147 +#: guix-git/doc/guix.texi:8205 msgid "at least one of the elements in the given list." msgstr "au moins un des éléments dans la liste donnée." # Le message original semble incomplet ? #. type: item -#: guix-git/doc/guix.texi:8147 +#: guix-git/doc/guix.texi:8205 #, no-wrap msgid "With @code{#:include-regexp}, install all the files which the" msgstr "Avec @code{#:include-regexp}, installez tous les fichiers que le" #. type: itemize -#: guix-git/doc/guix.texi:8150 +#: guix-git/doc/guix.texi:8208 msgid "subpaths match at least one of the regular expressions in the given list." msgstr "les sous-chemins correspondent à au moins une des expressions régulières de la liste donnée." #. type: item -#: guix-git/doc/guix.texi:8150 +#: guix-git/doc/guix.texi:8208 #, no-wrap msgid "The @code{#:exclude} and @code{#:exclude-regexp} filters" msgstr "Les filtres @code{#:exclude} et @code{#:exclude-regexp}" #. type: itemize -#: guix-git/doc/guix.texi:8155 +#: guix-git/doc/guix.texi:8213 msgid "are the complement of their inclusion counterpart. Without @code{#:include} flags, install all files but those matching the exclusion filters. If both inclusions and exclusions are specified, the exclusions are done on top of the inclusions." msgstr "sont le complément de leur homologue pour l'inclusion. Sans les drapeaux @code{#:include}, installez tous les fichiers sauf ceux qui correspondent aux filtres d'exclusion. Si les inclusions et les exclusions sont toutes deux spécifiées, les exclusions sont faites en complément des inclusions." #. type: itemize -#: guix-git/doc/guix.texi:8159 +#: guix-git/doc/guix.texi:8217 msgid "In all cases, the paths relative to @var{source} are preserved within @var{target}." msgstr "Dans tous les cas, les chemins relatifs à @var{source} sont préservés dans @var{cible}." #. type: defvr -#: guix-git/doc/guix.texi:8162 +#: guix-git/doc/guix.texi:8220 msgid "Examples:" msgstr "Exemples :" #. type: item -#: guix-git/doc/guix.texi:8164 +#: guix-git/doc/guix.texi:8222 #, no-wrap msgid "@code{(\"foo/bar\" \"share/my-app/\")}: Install @file{bar} to @file{share/my-app/bar}." msgstr "@code{(\"toto/titi\" \"share/mon-app/\")} : Installer @file{titi} sur @file{share/mon-app/titi}." #. type: item -#: guix-git/doc/guix.texi:8165 +#: guix-git/doc/guix.texi:8223 #, no-wrap msgid "@code{(\"foo/bar\" \"share/my-app/baz\")}: Install @file{bar} to @file{share/my-app/baz}." msgstr "@code{(\"toto/titi\" \"share/mon-app/tata\")} : Installer @file{titi} sur @file{share/mon-app/tata}." #. type: item -#: guix-git/doc/guix.texi:8166 +#: guix-git/doc/guix.texi:8224 #, no-wrap msgid "@code{(\"foo/\" \"share/my-app\")}: Install the content of @file{foo} inside @file{share/my-app}," msgstr "@code{(\"toto/\" \"share/mon-app\")} : Installez le contenu de @file{toto} dans @file{share/mon-app}," #. type: itemize -#: guix-git/doc/guix.texi:8168 +#: guix-git/doc/guix.texi:8226 msgid "e.g., install @file{foo/sub/file} to @file{share/my-app/sub/file}." msgstr "par exemple, installe @file{toto/sub/file} dans @file{share/mon-app/sub/file}." #. type: item -#: guix-git/doc/guix.texi:8168 +#: guix-git/doc/guix.texi:8226 #, no-wrap msgid "@code{(\"foo/\" \"share/my-app\" #:include (\"sub/file\"))}: Install only @file{foo/sub/file} to" msgstr "@code{(\"toto/\" \"share/mon-app\" #:include (\"sub/file\"))} : Installe seulement @file{toto/sub/file} vers" #. type: itemize -#: guix-git/doc/guix.texi:8170 +#: guix-git/doc/guix.texi:8228 msgid "@file{share/my-app/sub/file}." msgstr "@file{share/mon-app/sub/file}." #. type: item -#: guix-git/doc/guix.texi:8170 +#: guix-git/doc/guix.texi:8228 #, no-wrap msgid "@code{(\"foo/sub\" \"share/my-app\" #:include (\"file\"))}: Install @file{foo/sub/file} to" msgstr "@code{(\"toto/sub\" \"share/mon-app\" #:include (\"file\"))} : Installe @file{toto/sub/file} vers" #. type: itemize -#: guix-git/doc/guix.texi:8172 +#: guix-git/doc/guix.texi:8230 msgid "@file{share/my-app/file}." msgstr "@file{share/mon-app/file}." #. type: cindex -#: guix-git/doc/guix.texi:8176 +#: guix-git/doc/guix.texi:8234 #, no-wrap msgid "Clojure (programming language)" msgstr "Clojure (langage de programmation)" #. type: cindex -#: guix-git/doc/guix.texi:8177 +#: guix-git/doc/guix.texi:8235 #, no-wrap msgid "simple Clojure build system" msgstr "système de construction Clojure simple" #. type: defvr -#: guix-git/doc/guix.texi:8178 +#: guix-git/doc/guix.texi:8236 #, no-wrap msgid "{Scheme Variable} clojure-build-system" msgstr "{Variable Scheme} clojure-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8183 +#: guix-git/doc/guix.texi:8241 msgid "This variable is exported by @code{(guix build-system clojure)}. It implements a simple build procedure for @uref{https://clojure.org/, Clojure} packages using plain old @code{compile} in Clojure. Cross-compilation is not supported yet." msgstr "Cette variable est exportée par @code{(guix build-system clojure)}. Elle implémente une procédure de construction des paquets simple qui utilise le bon vieux @code{compile} de Clojure. La compilation croisée n'est pas encore supportée." #. type: defvr -#: guix-git/doc/guix.texi:8187 +#: guix-git/doc/guix.texi:8245 msgid "It adds @code{clojure}, @code{icedtea} and @code{zip} to the set of inputs. Different packages can be specified with the @code{#:clojure}, @code{#:jdk} and @code{#:zip} parameters, respectively." msgstr "Elle ajoute @code{clojure}, @code{icedtea} et @code{zip} à l'ensemble des entrées. Des paquets différents peuvent être spécifiés avec les paramètres @code{#:clojure}, @code{#:jdk} et @code{#:zip}." #. type: defvr -#: guix-git/doc/guix.texi:8193 +#: guix-git/doc/guix.texi:8251 msgid "A list of source directories, test directories and jar names can be specified with the @code{#:source-dirs}, @code{#:test-dirs} and @code{#:jar-names} parameters, respectively. Compile directory and main class can be specified with the @code{#:compile-dir} and @code{#:main-class} parameters, respectively. Other parameters are documented below." msgstr "Une liste de répertoires sources, de répertoires de tests et de noms de jar peuvent être spécifiés avec les paramètres @code{#:source-dirs}, @code{#:test-dirs} et @code{#:jar-names}. Le répertoire de construction est la classe principale peuvent être spécifiés avec les paramètres @code{#:compile-dir} et @code{#:main-class}. Les autres paramètres sont documentés plus bas." #. type: defvr -#: guix-git/doc/guix.texi:8196 +#: guix-git/doc/guix.texi:8254 msgid "This build system is an extension of @code{ant-build-system}, but with the following phases changed:" msgstr "Ce système de construction est une extension de @code{ant-build-system}, mais avec les phases suivantes modifiées :" #. type: item -#: guix-git/doc/guix.texi:8199 guix-git/doc/guix.texi:8773 -#: guix-git/doc/guix.texi:8822 guix-git/doc/guix.texi:8891 -#: guix-git/doc/guix.texi:35042 guix-git/doc/guix.texi:37668 +#: guix-git/doc/guix.texi:8257 guix-git/doc/guix.texi:8830 +#: guix-git/doc/guix.texi:8879 guix-git/doc/guix.texi:8952 +#: guix-git/doc/guix.texi:35481 guix-git/doc/guix.texi:38147 #, no-wrap msgid "build" msgstr "build" #. type: table -#: guix-git/doc/guix.texi:8208 +#: guix-git/doc/guix.texi:8266 msgid "This phase calls @code{compile} in Clojure to compile source files and runs @command{jar} to create jars from both source files and compiled files according to the include list and exclude list specified in @code{#:aot-include} and @code{#:aot-exclude}, respectively. The exclude list has priority over the include list. These lists consist of symbols representing Clojure libraries or the special keyword @code{#:all} representing all Clojure libraries found under the source directories. The parameter @code{#:omit-source?} decides if source should be included into the jars." msgstr "Cette phase appelle @code{compile} en Clojure pour compiler les fichiers sources et lance @command{jar} pour créer les fichiers jar à partir des fichiers sources et des fichiers compilés en suivant la liste d'inclusion et d'exclusion spécifiées dans @code{#:aot-include} et @code{#:aot-exclude}. La liste d'exclusion a la priorité sur la liste d'inclusion. Ces listes consistent en des symboles représentant des bibliothèque Clojure ou le mot clef spécial @code{#:all}, représentant toutes les bibliothèques Clojure trouvées dans les répertoires des sources. Le paramètre @code{#:omit-source?} décide si les sources devraient être incluses dans les fichiers jar." #. type: item -#: guix-git/doc/guix.texi:8209 guix-git/doc/guix.texi:8777 -#: guix-git/doc/guix.texi:8896 +#: guix-git/doc/guix.texi:8267 guix-git/doc/guix.texi:8834 +#: guix-git/doc/guix.texi:8957 #, no-wrap msgid "check" msgstr "check" #. type: table -#: guix-git/doc/guix.texi:8216 +#: guix-git/doc/guix.texi:8274 msgid "This phase runs tests according to the include list and exclude list specified in @code{#:test-include} and @code{#:test-exclude}, respectively. Their meanings are analogous to that of @code{#:aot-include} and @code{#:aot-exclude}, except that the special keyword @code{#:all} now stands for all Clojure libraries found under the test directories. The parameter @code{#:tests?} decides if tests should be run." msgstr "Cette phase lance les tests en suivant les liste d'inclusion et d'exclusion spécifiées dans @code{#:test-include} et @code{#:test-exclude}. Leur signification est analogue à celle de @code{#:aot-include} et @code{#:aot-exclude}, sauf que le mot-clef spécial @code{#:all} signifie maintenant toutes les bibliothèques Clojure trouvées dans les répertoires de tests. Le paramètre @code{#:tests?} décide si les tests devraient être lancés." #. type: item -#: guix-git/doc/guix.texi:8217 guix-git/doc/guix.texi:8783 -#: guix-git/doc/guix.texi:8826 guix-git/doc/guix.texi:8902 +#: guix-git/doc/guix.texi:8275 guix-git/doc/guix.texi:8840 +#: guix-git/doc/guix.texi:8883 guix-git/doc/guix.texi:8963 #, no-wrap msgid "install" msgstr "install" #. type: table -#: guix-git/doc/guix.texi:8219 +#: guix-git/doc/guix.texi:8277 msgid "This phase installs all jars built previously." msgstr "Cette phase installe tous les fichiers jar précédemment construits." #. type: defvr -#: guix-git/doc/guix.texi:8222 +#: guix-git/doc/guix.texi:8280 msgid "Apart from the above, this build system also contains an additional phase:" msgstr "En dehors de cela, le système de construction contient aussi la phase suivante :" #. type: item -#: guix-git/doc/guix.texi:8225 +#: guix-git/doc/guix.texi:8283 #, no-wrap msgid "install-doc" msgstr "install-doc" #. type: table -#: guix-git/doc/guix.texi:8230 +#: guix-git/doc/guix.texi:8288 msgid "This phase installs all top-level files with base name matching @code{%doc-regex}. A different regex can be specified with the @code{#:doc-regex} parameter. All files (recursively) inside the documentation directories specified in @code{#:doc-dirs} are installed as well." msgstr "Cette phase installe tous les fichiers dans le répertoire de plus haut niveau dont le nom correspond à @code{%doc-regex}. On peut spécifier une regex différente avec le paramètre @code{#:doc-regex}. Tous les fichiers (récursivement) dans les répertoires de documentations spécifiés dans @code{#:doc-dirs} sont aussi installés." #. type: defvr -#: guix-git/doc/guix.texi:8233 +#: guix-git/doc/guix.texi:8291 #, no-wrap msgid "{Scheme Variable} cmake-build-system" msgstr "{Variable Scheme} cmake-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8237 +#: guix-git/doc/guix.texi:8295 msgid "This variable is exported by @code{(guix build-system cmake)}. It implements the build procedure for packages using the @url{https://www.cmake.org, CMake build tool}." msgstr "Cette variable est exportée par @code{(guix build-system cmake)}. Elle implémente la procédure de construction des paquets qui utilisent l'@url{https://www.cmake.org, outil de construction CMake}." #. type: defvr -#: guix-git/doc/guix.texi:8241 +#: guix-git/doc/guix.texi:8299 msgid "It automatically adds the @code{cmake} package to the set of inputs. Which package is used can be specified with the @code{#:cmake} parameter." msgstr "Elle ajoute automatiquement le paquet @code{cmake} à l'ensemble des entrées. Le paquet utilisé peut être spécifié par le paramètre @code{#:cmake}." #. type: defvr -#: guix-git/doc/guix.texi:8248 +#: guix-git/doc/guix.texi:8306 msgid "The @code{#:configure-flags} parameter is taken as a list of flags passed to the @command{cmake} command. The @code{#:build-type} parameter specifies in abstract terms the flags passed to the compiler; it defaults to @code{\"RelWithDebInfo\"} (short for ``release mode with debugging information''), which roughly means that code is compiled with @code{-O2 -g}, as is the case for Autoconf-based packages by default." msgstr "Le paramètre @code{#:configure-flags} est pris comme une liste de drapeaux à passer à la commande @command{cmake}. Le paramètre @code{#:build-type} spécifie en termes abstrait les drapeaux passés au compilateur ; sa valeur par défaut est @code{\"RelWithDebInfo\"} (ce qui veut dire « mode public avec les informations de débogage » en plus court), ce qui signifie en gros que le code sera compilé avec @code{-O2 -g} comme pour les paquets autoconf par défaut." #. type: defvr -#: guix-git/doc/guix.texi:8250 +#: guix-git/doc/guix.texi:8308 #, no-wrap msgid "{Scheme Variable} dune-build-system" msgstr "{Variable Scheme} dune-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8257 +#: guix-git/doc/guix.texi:8315 msgid "This variable is exported by @code{(guix build-system dune)}. It supports builds of packages using @uref{https://dune.build/, Dune}, a build tool for the OCaml programming language. It is implemented as an extension of the @code{ocaml-build-system} which is described below. As such, the @code{#:ocaml} and @code{#:findlib} parameters can be passed to this build system." msgstr "Cette variable est exportée par @code{(guix build-system dune)}. Elle prend en charge la construction des paquets qui utilisent @uref{https://dune.build/, Dune}, un outil de construction pour le langage de programmation OCaml. Elle est implémentée comme une extension de @code{ocaml-build-system} décrit plus bas. En tant que tel, les paramètres @code{#:ocaml} et @code{#:findlib} peuvent être passés à ce système de construction." #. type: defvr -#: guix-git/doc/guix.texi:8261 +#: guix-git/doc/guix.texi:8319 msgid "It automatically adds the @code{dune} package to the set of inputs. Which package is used can be specified with the @code{#:dune} parameter." msgstr "Elle ajoute automatiquement le paquet @code{dune} à l'ensemble des entrées. Le paquet utilisé peut être spécifié par le paramètre @code{#:dune}." #. type: defvr -#: guix-git/doc/guix.texi:8265 +#: guix-git/doc/guix.texi:8323 msgid "There is no @code{configure} phase because dune packages typically don't need to be configured. The @code{#:build-flags} parameter is taken as a list of flags passed to the @code{dune} command during the build." msgstr "Il n'y a pas de phase @code{configure} parce que les paquets dune n'ont habituellement pas besoin d'être configurés. Le paramètre @code{#:build-flags} est interprété comme une liste de drapeaux pour la commande @code{dune} pendant la construction." #. type: defvr -#: guix-git/doc/guix.texi:8269 +#: guix-git/doc/guix.texi:8327 msgid "The @code{#:jbuild?} parameter can be passed to use the @code{jbuild} command instead of the more recent @code{dune} command while building a package. Its default value is @code{#f}." msgstr "Le paramètre @code{#:jbuild?} peut être passé pour utiliser la commande @code{jbuild} à la place de la commande @code{dune} plus récente pour la construction d'un paquet. Sa valeur par défaut est @code{#f}." #. type: defvr -#: guix-git/doc/guix.texi:8274 +#: guix-git/doc/guix.texi:8332 msgid "The @code{#:package} parameter can be passed to specify a package name, which is useful when a package contains multiple packages and you want to build only one of them. This is equivalent to passing the @code{-p} argument to @code{dune}." msgstr "Le paramètre @code{#:package} peut être passé pour spécifié un nom de paquet, ce qui est utile lorsqu'un paquet contient plusieurs paquets et que vous voulez n'en construire qu'un. C'est équivalent à passer l'argument @code{-p} à @code{dune}." #. type: defvr -#: guix-git/doc/guix.texi:8277 +#: guix-git/doc/guix.texi:8335 #, no-wrap msgid "{Scheme Variable} go-build-system" msgstr "{Variable Scheme} go-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8282 +#: guix-git/doc/guix.texi:8340 msgid "This variable is exported by @code{(guix build-system go)}. It implements a build procedure for Go packages using the standard @url{https://golang.org/cmd/go/#hdr-Compile_packages_and_dependencies, Go build mechanisms}." msgstr "Cette variable est exportée par @code{(guix build-system go)}. Elle implémente la procédure pour les paquets Go utilisant les @url{https://golang.org/cmd/go/#hdr-Compile_packages_and_dependencies, mécanismes de construction Go} standard." #. type: defvr -#: guix-git/doc/guix.texi:8293 +#: guix-git/doc/guix.texi:8351 msgid "The user is expected to provide a value for the key @code{#:import-path} and, in some cases, @code{#:unpack-path}. The @url{https://golang.org/doc/code.html#ImportPaths, import path} corresponds to the file system path expected by the package's build scripts and any referring packages, and provides a unique way to refer to a Go package. It is typically based on a combination of the package source code's remote URI and file system hierarchy structure. In some cases, you will need to unpack the package's source code to a different directory structure than the one indicated by the import path, and @code{#:unpack-path} should be used in such cases." msgstr "L'utilisateur doit fournir une valeur à la clef @code{#:import-path} et, dans certains cas, @code{#:unpack-path}. Le @url{https://golang.org/doc/code.html#ImportPaths, chemin d'import} correspond au chemin dans le système de fichiers attendu par le script de construction du paquet et les paquets qui s'y réfèrent et fournit une manière unique de se référer à un paquet Go. Il est typiquement basé sur une combinaison de l'URI du code source du paquet et d'une structure hiérarchique du système de fichier. Dans certains cas, vous devrez extraire le code source du paquet dans une structure de répertoires différente que celle indiquée par le chemin d'import et @code{#:unpack-path} devrait être utilisé dans ces cas-là." #. type: defvr -#: guix-git/doc/guix.texi:8298 +#: guix-git/doc/guix.texi:8356 msgid "Packages that provide Go libraries should install their source code into the built output. The key @code{#:install-source?}, which defaults to @code{#t}, controls whether or not the source code is installed. It can be set to @code{#f} for packages that only provide executable files." msgstr "Les paquets qui fournissent des bibliothèques Go devraient installer leur code source dans la sortie du paquet. La clef @code{#:install-source?}, qui vaut @code{#t} par défaut, contrôle l'installation du code source. Elle peut être mise à @code{#f} pour les paquets qui ne fournissent que des fichiers exécutables." #. type: defvr -#: guix-git/doc/guix.texi:8305 +#: guix-git/doc/guix.texi:8363 msgid "Packages can be cross-built, and if a specific architecture or operating system is desired then the keywords @code{#:goarch} and @code{#:goos} can be used to force the package to be built for that architecture and operating system. The combinations known to Go can be found @url{\"https://golang.org/doc/install/source#environment\", in their documentation}." msgstr "Vous pouvez effectuer une compilation croisée des paquets et si vous voulez une architecture ou un système d'exploitation spécifique alors vous pouvez utiliser les mot-clés @code{#:goarch} et @code{#:goos} pour forcer le paquet à être construit pour l'architecture et le système d'exploitation donnés. Vous trouverez les combinaisons connues pour Go @url{\"https://golang.org/doc/install/source#environment\", dans leur documentation}." #. type: defvr -#: guix-git/doc/guix.texi:8307 +#: guix-git/doc/guix.texi:8365 #, no-wrap msgid "{Scheme Variable} glib-or-gtk-build-system" msgstr "{Variable Scheme} glib-or-gtk-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8310 +#: guix-git/doc/guix.texi:8368 msgid "This variable is exported by @code{(guix build-system glib-or-gtk)}. It is intended for use with packages making use of GLib or GTK+." msgstr "Cette variable est exportée par @code{(guix build-system glib-or-gtk)}. Elle est conçue pour être utilisée par des paquets qui utilisent GLib ou GTK+." #. type: defvr -#: guix-git/doc/guix.texi:8313 +#: guix-git/doc/guix.texi:8371 msgid "This build system adds the following two phases to the ones defined by @code{gnu-build-system}:" msgstr "Ce système de construction ajoute les deux phases suivantes à celles définies par @code{gnu-build-system} :" #. type: item -#: guix-git/doc/guix.texi:8315 guix-git/doc/guix.texi:8799 +#: guix-git/doc/guix.texi:8373 guix-git/doc/guix.texi:8856 #, no-wrap msgid "glib-or-gtk-wrap" msgstr "glib-or-gtk-wrap" #. type: table -#: guix-git/doc/guix.texi:8322 +#: guix-git/doc/guix.texi:8380 msgid "The phase @code{glib-or-gtk-wrap} ensures that programs in @file{bin/} are able to find GLib ``schemas'' and @uref{https://developer.gnome.org/gtk3/stable/gtk-running.html, GTK+ modules}. This is achieved by wrapping the programs in launch scripts that appropriately set the @env{XDG_DATA_DIRS} and @env{GTK_PATH} environment variables." msgstr "La phase @code{glib-or-gtk-wrap} garantit que les programmes dans @file{bin/} sont capables de trouver les « schémas » GLib et @uref{https://developer.gnome.org/gtk3/stable/gtk-running.html, GTK+ modules}. Cela est réalisé en enveloppant les programmes dans des scripts de lancement qui définissent de manière appropriée les variables d'environnement @env{XDG_DATA_DIRS} et @env{GTK_PATH}." #. type: table -#: guix-git/doc/guix.texi:8329 +#: guix-git/doc/guix.texi:8387 msgid "It is possible to exclude specific package outputs from that wrapping process by listing their names in the @code{#:glib-or-gtk-wrap-excluded-outputs} parameter. This is useful when an output is known not to contain any GLib or GTK+ binaries, and where wrapping would gratuitously add a dependency of that output on GLib and GTK+." msgstr "Il est possible d'exclure des sorties spécifiques de ce processus d'enveloppage en listant leur nom dans le paramètre @code{#:glib-or-gtk-wrap-excluded-outputs}. C'est utile lorsqu'une sortie est connue pour ne pas contenir de binaires GLib ou GTK+, et où l'enveloppe ajouterait une dépendance inutile vers GLib et GTK+." #. type: item -#: guix-git/doc/guix.texi:8330 guix-git/doc/guix.texi:8803 +#: guix-git/doc/guix.texi:8388 guix-git/doc/guix.texi:8860 #, no-wrap msgid "glib-or-gtk-compile-schemas" msgstr "glib-or-gtk-compile-schemas" #. type: table -#: guix-git/doc/guix.texi:8338 +#: guix-git/doc/guix.texi:8396 msgid "The phase @code{glib-or-gtk-compile-schemas} makes sure that all @uref{https://developer.gnome.org/gio/stable/glib-compile-schemas.html, GSettings schemas} of GLib are compiled. Compilation is performed by the @command{glib-compile-schemas} program. It is provided by the package @code{glib:bin} which is automatically imported by the build system. The @code{glib} package providing @command{glib-compile-schemas} can be specified with the @code{#:glib} parameter." msgstr "La phase @code{glib-or-gtk-compile-schemas} s'assure que tous les @uref{https://developer.gnome.org/gio/stable/glib-compile-schemas.html, schémas GSettings} de GLib sont compilés. La compilation est effectuée par le programme @command{glib-compile-schemas}. Il est fournit par le paquet @code{glib:bin} qui est automatiquement importé par le système de construction. Le paquet @code{glib} qui fournit @command{glib-compile-schemas} peut être spécifié avec le paramètre @code{#:glib}." #. type: defvr -#: guix-git/doc/guix.texi:8341 +#: guix-git/doc/guix.texi:8399 msgid "Both phases are executed after the @code{install} phase." msgstr "Ces deux phases sont exécutées après la phase @code{install}." #. type: defvr -#: guix-git/doc/guix.texi:8343 +#: guix-git/doc/guix.texi:8401 #, no-wrap msgid "{Scheme Variable} guile-build-system" msgstr "{Variable Scheme} guile-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8350 +#: guix-git/doc/guix.texi:8408 msgid "This build system is for Guile packages that consist exclusively of Scheme code and that are so lean that they don't even have a makefile, let alone a @file{configure} script. It compiles Scheme code using @command{guild compile} (@pxref{Compilation,,, guile, GNU Guile Reference Manual}) and installs the @file{.scm} and @file{.go} files in the right place. It also installs documentation." msgstr "Ce système de construction sert aux paquets Guile qui consistent exclusivement en code Scheme et qui sont si simple qu'ils n'ont même pas un makefile, sans parler d'un script @file{configure}. Il compile le code Scheme en utilisant @command{guild compile} (@pxref{Compilation,,, guile, GNU Guile Reference Manual}) et installe les fichiers @file{.scm} et @file{.go} aux bons emplacements. Il installe aussi la documentation." #. type: defvr -#: guix-git/doc/guix.texi:8353 +#: guix-git/doc/guix.texi:8411 msgid "This build system supports cross-compilation by using the @option{--target} option of @samp{guild compile}." msgstr "Ce système de construction supporte la compilation croisée en utilisant l'option @option{--target} de @command{guild compile}." #. type: defvr -#: guix-git/doc/guix.texi:8356 +#: guix-git/doc/guix.texi:8414 msgid "Packages built with @code{guile-build-system} must provide a Guile package in their @code{native-inputs} field." msgstr "Les paquets construits avec @code{guile-build-system} doivent fournir un paquet Guile dans leur champ @code{native-inputs}." #. type: defvr -#: guix-git/doc/guix.texi:8358 +#: guix-git/doc/guix.texi:8416 #, no-wrap msgid "{Scheme Variable} julia-build-system" msgstr "{Variable Scheme} julia-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8365 +#: guix-git/doc/guix.texi:8423 msgid "This variable is exported by @code{(guix build-system julia)}. It implements the build procedure used by @uref{https://julialang.org/, julia} packages, which essentially is similar to running @samp{julia -e 'using Pkg; Pkg.add(package)'} in an environment where @env{JULIA_LOAD_PATH} contains the paths to all Julia package inputs. Tests are run by calling @code{/test/runtests.jl}." msgstr "Cette variable est exportée par @code{(guix build-system julia)}. Elle implémente la procédure de compilation utilisée par les paquets @uref{https://julialang.org/, julia}, qui est globalement similaire à l'exécution de @samp{julia -e 'using Pkg ; Pkg.add(package)'} dans un environnement où @env{JULIA_LOAD_PATH} contient les chemins de toutes les entrées des paquets Julia. Les tests sont effectués en appelant @code{/test/runtests.jl}." #. type: defvr -#: guix-git/doc/guix.texi:8369 -msgid "The Julia package name is read from the file @file{Project.toml}. This value can be overridden by passing the argument @code{#:julia-package-name} (which must be correctly capitalized)." +#: guix-git/doc/guix.texi:8428 +#, fuzzy +#| msgid "The Julia package name is read from the file @file{Project.toml}. This value can be overridden by passing the argument @code{#:julia-package-name} (which must be correctly capitalized)." +msgid "The Julia package name and uuid is read from the file @file{Project.toml}. These values can be overridden by passing the argument @code{#:julia-package-name} (which must be correctly capitalized) or @code{#:julia-package-uuid}." msgstr "Le nom du paquet Julia est lu dans le fichier @file{Project.toml}. La valeur peut être remplacée en passant l'argument @code{#:julia-package-name} (le nom doit être correctement capitalisé)." #. type: defvr -#: guix-git/doc/guix.texi:8373 +#: guix-git/doc/guix.texi:8432 msgid "Julia packages usually manage their binary dependencies via @code{JLLWrappers.jl}, a Julia package that creates a module (named after the wrapped library followed by @code{_jll.jl}." msgstr "Les paquets Julia gèrent généralement leurs dépendances binaires via @code{JLLWrappers.jl}, un paquet Julia qui crée un module (nommé d'après la bibliothèque enveloppée suivie de @code{_jll.jl}." #. type: defvr -#: guix-git/doc/guix.texi:8378 +#: guix-git/doc/guix.texi:8437 msgid "To add the binary path @code{_jll.jl} packages, you need to patch the files under @file{src/wrappers/}, replacing the call to the macro @code{JLLWrappers.@@generate_wrapper_header}, adding as a second argument containing the store path the binary." msgstr "Pour ajouter le chemin vers les binaires @code{_jll.jl}, vous devez corriger les fichiers dans @file{src/wrappers/}, en remplaçant l'appel à la macro @code{JLLWrappers.@@generate_wrapper_header}, en ajoutant un second argument contenant le chemin du binaire dans le dépôt." #. type: defvr -#: guix-git/doc/guix.texi:8382 +#: guix-git/doc/guix.texi:8441 msgid "As an example, in the MbedTLS Julia package, we add a build phase (@pxref{Build Phases}) to insert the absolute file name of the wrapped MbedTLS package:" msgstr "Par exemple, dans le paquets Julia MbedTLS, on ajoute un phase de construction (@pxref{Build Phases}) pour insérer le nom de fichier absolu du paquet enveloppé MbedTLS :" #. type: lisp -#: guix-git/doc/guix.texi:8394 +#: guix-git/doc/guix.texi:8453 #, no-wrap msgid "" "(add-after 'unpack 'override-binary-path\n" @@ -17102,661 +17223,669 @@ msgstr "" " (find-files \"src/wrappers/\" \"\\\\.jl$\"))))\n" #. type: defvr -#: guix-git/doc/guix.texi:8402 -msgid "Some older packages that aren't using @file{Package.toml} yet, will require this file to be created, too. The function @code{julia-create-package-toml} helps creating the file. You need to pass the outputs and the source of the package, its name (the same as the @code{file-name} parameter), the package uuid, the package version, and a list of dependencies specified by their name and their uuid." -msgstr "Certains anciens paquets qui n'utilisent pas encore @file{Package.toml}, nécessiteront la création de ce fichier également. La fonction @code{julia-create-package-toml} aide à créer le fichier. Vous devez transmettre les sorties et la source du paquet, son nom (le même que le paramètre @code{file-name}), l'uuid du paquet, la version du paquet, et une liste des dépendances spécifiées par leur nom et leur uuid." +#: guix-git/doc/guix.texi:8459 +msgid "Some older packages that aren't using @file{Project.toml} yet, will require this file to be created, too. It is internally done if the arguments @code{#:julia-package-name} and @code{#:julia-package-uuid} are provided." +msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8404 +#: guix-git/doc/guix.texi:8461 #, no-wrap msgid "{Scheme Variable} maven-build-system" msgstr "{Variable Scheme} maven-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8411 +#: guix-git/doc/guix.texi:8468 msgid "This variable is exported by @code{(guix build-system maven)}. It implements a build procedure for @uref{https://maven.apache.org, Maven} packages. Maven is a dependency and lifecycle management tool for Java. A user of Maven specifies dependencies and plugins in a @file{pom.xml} file that Maven reads. When Maven does not have one of the dependencies or plugins in its repository, it will download them and use them to build the package." msgstr "Cette variable est exportée par @code{(guix build-system maven)}. Elle implémente une procédure de construction pour les paquets @uref{https://maven.apache.org, Maven}. Maven est un outil de gestion des dépendances et du cycle de vie pour Java. Un·e utilisateur·rice de Maven spécifie les dépendances et les plugins dans un fichier @file{pom.xml} que Maven lit. Lorsque Maven n'a pas l'une des dépendances ou l'un des plugins dans son dépôt, il les télécharge et les utilise pour construire le paquet." #. type: defvr -#: guix-git/doc/guix.texi:8421 +#: guix-git/doc/guix.texi:8478 msgid "The maven build system ensures that maven will not try to download any dependency by running in offline mode. Maven will fail if a dependency is missing. Before running Maven, the @file{pom.xml} (and subprojects) are modified to specify the version of dependencies and plugins that match the versions available in the guix build environment. Dependencies and plugins must be installed in the fake maven repository at @file{lib/m2}, and are symlinked into a proper repository before maven is run. Maven is instructed to use that repository for the build and installs built artifacts there. Changed files are copied to the @file{lib/m2} directory of the package output." msgstr "Le système de construction de maven garantit que maven n'essaiera pas de télécharger une dépendance en s'exécutant en mode hors ligne. Maven échouera si une dépendance est manquante. Avant de lancer Maven, le fichier @file{pom.xml} (et sous-projets) sont modifiés pour spécifier la version des dépendances et des plugins qui correspondent aux versions disponibles dans l'environnement de construction de guix. Les dépendances et plugins doivent être installés dans le faux dépôt maven à @file{lib/m2}, et sont liés par un lien symbolique à un dépôt approprié avant que maven ne soit lancé. Maven a pour instruction d'utiliser ce dépôt pour la construction et y installe les artefacts construits. Les fichiers modifiés sont copiés dans le répertoire @file{lib/m2} de la sortie du paquet." #. type: defvr -#: guix-git/doc/guix.texi:8424 +#: guix-git/doc/guix.texi:8481 msgid "You can specify a @file{pom.xml} file with the @code{#:pom-file} argument, or let the build system use the default @file{pom.xml} file in the sources." msgstr "Vous pouvez spécifier un fichier @file{pom.xml} avec l'argument @code{#:pom-file}, ou bien laisser le système de construction utiliser le fichier par défaut @file{pom.xml} dans les sources." #. type: defvr -#: guix-git/doc/guix.texi:8430 +#: guix-git/doc/guix.texi:8487 msgid "In case you need to specify a dependency's version manually, you can use the @code{#:local-packages} argument. It takes an association list where the key is the groupId of the package and its value is an association list where the key is the artifactId of the package and its value is the version you want to override in the @file{pom.xml}." msgstr "Dans le cas où vous avez besoin de spécifier manuellement une version de dépendances, vous pouvez utiliser l'argument @code{#:local-packages}. Il prend une liste d'association dont la clé est le groupId du paquet et sa valeur est une liste d'association où la clé est l'artefactId du paquet et sa valeur est la version que vous souhaitez remplacer dans le fichier @file{pom.xml}." #. type: defvr -#: guix-git/doc/guix.texi:8436 +#: guix-git/doc/guix.texi:8493 msgid "Some packages use dependencies or plugins that are not useful at runtime nor at build time in Guix. You can alter the @file{pom.xml} file to remove them using the @code{#:exclude} argument. Its value is an association list where the key is the groupId of the plugin or dependency you want to remove, and the value is a list of artifactId you want to remove." msgstr "Certains paquets utilisent des dépendances ou des plugins qui ne sont pas utiles au moment de l'exécution ou de la compilation dans Guix. Vous pouvez modifier le fichier @file{pom.xml} pour les supprimer en utilisant l'argument @code{#:exclude}. Sa valeur est une liste d'association où la clé est le groupId du plugin ou de la dépendance que vous voulez supprimer, et la valeur est une liste d'artifactId que vous voulez supprimer." #. type: defvr -#: guix-git/doc/guix.texi:8439 +#: guix-git/doc/guix.texi:8496 msgid "You can override the default @code{jdk} and @code{maven} packages with the corresponding argument, @code{#:jdk} and @code{#:maven}." msgstr "Vous pouvez remplacer les paquets @code{jdk} et @code{maven} par défaut avec l'argument correspondant, @code{#:jdk} et @code{#:maven}." #. type: defvr -#: guix-git/doc/guix.texi:8444 +#: guix-git/doc/guix.texi:8501 msgid "The @code{#:maven-plugins} argument is a list of maven plugins used during the build, with the same format as the @code{inputs} fields of the package declaration. Its default value is @code{(default-maven-plugins)} which is also exported." msgstr "L'argument @code{#:maven-plugins} est une liste de plugins maven utilisés pendant la construction, avec le même format que le champ @code{inputs} de la déclaration du paquet. Sa valeur par défaut est @code{(default-maven-plugins)} qui est également exportée." #. type: defvr -#: guix-git/doc/guix.texi:8446 +#: guix-git/doc/guix.texi:8503 #, no-wrap msgid "{Scheme Variable} minetest-mod-build-system" msgstr "{Variable Scheme} minetest-mod-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8452 +#: guix-git/doc/guix.texi:8509 msgid "This variable is exported by @code{(guix build-system minetest)}. It implements a build procedure for @uref{https://www.minetest.net, Minetest} mods, which consists of copying Lua code, images and other resources to the location Minetest searches for mods. The build system also minimises PNG images and verifies that Minetest can load the mod without errors." msgstr "Cette variable est exportée par @code{(guix build-system minetest)}. Elle implémente une procédure de construction pour les mods de @uref{https://runwww.minetest.net, Minetest} qui consiste à copier du code Lua, des images et d'autres ressources aux emplacements où Minetest recherche des mods. Le système de construction minimise aussi les images PNG et vérifie que Minetest peut charger le mod sans erreur." #. type: defvr -#: guix-git/doc/guix.texi:8454 +#: guix-git/doc/guix.texi:8511 #, no-wrap msgid "{Scheme Variable} minify-build-system" msgstr "{Variable Scheme} minify-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8457 +#: guix-git/doc/guix.texi:8514 msgid "This variable is exported by @code{(guix build-system minify)}. It implements a minification procedure for simple JavaScript packages." msgstr "Cette variable est exportée par @code{(guix build-system minify)}. Elle implémente une procédure de minification pour des paquets JavaScript simples." #. type: defvr -#: guix-git/doc/guix.texi:8463 +#: guix-git/doc/guix.texi:8520 msgid "It adds @code{uglify-js} to the set of inputs and uses it to compress all JavaScript files in the @file{src} directory. A different minifier package can be specified with the @code{#:uglify-js} parameter, but it is expected that the package writes the minified code to the standard output." msgstr "Elle ajoute @code{uglify-js} à l'ensemble des entrées et l'utilise pour compresser tous les fichiers JavaScript du répertoire @file{src}. Un minifieur différent peut être spécifié avec le paramètre @code{#:uglify-js} mais il est attendu que ce paquet écrive le code minifié sur la sortie standard." #. type: defvr -#: guix-git/doc/guix.texi:8467 +#: guix-git/doc/guix.texi:8524 msgid "When the input JavaScript files are not all located in the @file{src} directory, the parameter @code{#:javascript-files} can be used to specify a list of file names to feed to the minifier." msgstr "Lorsque les fichiers JavaScript d'entrée ne sont pas situés dans le répertoire @file{src}, le paramètre @code{#:javascript-files} peut être utilisé pour spécifier une liste de noms de fichiers à donner au minifieur." #. type: defvr -#: guix-git/doc/guix.texi:8469 +#: guix-git/doc/guix.texi:8526 #, no-wrap msgid "{Scheme Variable} ocaml-build-system" msgstr "{Variable Scheme} ocaml-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8475 +#: guix-git/doc/guix.texi:8532 msgid "This variable is exported by @code{(guix build-system ocaml)}. It implements a build procedure for @uref{https://ocaml.org, OCaml} packages, which consists of choosing the correct set of commands to run for each package. OCaml packages can expect many different commands to be run. This build system will try some of them." msgstr "Cette variable est exportée par @code{(guix build-system ocaml)}. Elle implémente une procédure de construction pour les paquets @uref{https://ocaml.org, OCaml} qui consiste à choisir le bon ensemble de commande à lancer pour chaque paquet. Les paquets OCaml peuvent demander des commandes diverses pour être construit. Ce système de construction en essaye certaines." #. type: defvr -#: guix-git/doc/guix.texi:8485 +#: guix-git/doc/guix.texi:8542 msgid "When the package has a @file{setup.ml} file present at the top-level, it will run @code{ocaml setup.ml -configure}, @code{ocaml setup.ml -build} and @code{ocaml setup.ml -install}. The build system will assume that this file was generated by @uref{http://oasis.forge.ocamlcore.org/, OASIS} and will take care of setting the prefix and enabling tests if they are not disabled. You can pass configure and build flags with the @code{#:configure-flags} and @code{#:build-flags}. The @code{#:test-flags} key can be passed to change the set of flags used to enable tests. The @code{#:use-make?} key can be used to bypass this system in the build and install phases." msgstr "Lorsqu'un fichier @file{setup.ml} est présent dans le répertoire de plus haut niveau, elle lancera @code{ocaml setup.ml -configure}, @code{ocaml setup.ml -build} et @code{ocaml setup.ml -install}. Le système de construction supposera que ces fichiers ont été générés par @uref{http://oasis.forge.ocamlcore.org/, OASIS} et prendra soin d'initialiser le préfixe et d'activer les tests s'ils ne sont pas désactivés. Vous pouvez passer des drapeaux de configuration et de construction avec @code{#:configure-flags} et @code{#:build-flags}. La clef @code{#:test-flags} peut être passée pour changer l'ensemble des drapeaux utilisés pour activer les tests. La clef @code{#:use-make?} peut être utilisée pour outrepasser ce système dans les phases de construction et d'installation." #. type: defvr -#: guix-git/doc/guix.texi:8490 +#: guix-git/doc/guix.texi:8547 msgid "When the package has a @file{configure} file, it is assumed that it is a hand-made configure script that requires a different argument format than in the @code{gnu-build-system}. You can add more flags with the @code{#:configure-flags} key." msgstr "Lorsque le paquet a un fichier @file{configure}, il est supposé qu'il s'agit d'un script configure écrit à la main qui demande un format différent de celui de @code{gnu-build-system}. Vous pouvez ajouter plus de drapeaux avec la clef @code{#:configure-flags}." #. type: defvr -#: guix-git/doc/guix.texi:8494 +#: guix-git/doc/guix.texi:8551 msgid "When the package has a @file{Makefile} file (or @code{#:use-make?} is @code{#t}), it will be used and more flags can be passed to the build and install phases with the @code{#:make-flags} key." msgstr "Lorsque le paquet a un fichier @file{Makefile} (ou @code{#:use-make?} vaut @code{#t}), il sera utilisé et plus de drapeaux peuvent être passés à la construction et l'installation avec la clef @code{#:make-flags}." #. type: defvr -#: guix-git/doc/guix.texi:8502 +#: guix-git/doc/guix.texi:8559 msgid "Finally, some packages do not have these files and use a somewhat standard location for its build system. In that case, the build system will run @code{ocaml pkg/pkg.ml} or @code{ocaml pkg/build.ml} and take care of providing the path to the required findlib module. Additional flags can be passed via the @code{#:build-flags} key. Install is taken care of by @command{opam-installer}. In this case, the @code{opam} package must be added to the @code{native-inputs} field of the package definition." msgstr "Enfin, certains paquets n'ont pas ces fichiers mais utilisent un emplacement plus ou moins standard pour leur système de construction. Dans ce cas, le système de construction lancera @code{ocaml pkg/pkg.ml} ou @code{pkg/build.ml} et prendra soin de fournir le chemin du module findlib requis. Des drapeaux supplémentaires peuvent être passés via la clef @code{#:bulid-flags}. L'installation se fait avec @command{opam-installer}. Dans ce cas, le paquet @code{opam} doit être ajouté au champ @code{native-inputs} de la définition du paquet." #. type: defvr -#: guix-git/doc/guix.texi:8510 +#: guix-git/doc/guix.texi:8567 msgid "Note that most OCaml packages assume they will be installed in the same directory as OCaml, which is not what we want in guix. In particular, they will install @file{.so} files in their module's directory, which is usually fine because it is in the OCaml compiler directory. In guix though, these libraries cannot be found and we use @env{CAML_LD_LIBRARY_PATH}. This variable points to @file{lib/ocaml/site-lib/stubslibs} and this is where @file{.so} libraries should be installed." msgstr "Remarquez que la plupart des paquets OCaml supposent qu'ils seront installés dans le même répertoire qu'OCaml, ce qui n'est pas ce que nous voulons faire dans Guix. En particulier, ils installeront leurs fichiers @file{.so} dans leur propre répertoire de module, ce qui est normalement correct puisqu'il s'agit du répertoire du compilateur OCaml. Dans Guix en revanche, ces bibliothèques ne peuvent pas y être trouvées et on utilise @env{CAML_LD_LIBRARY_PATH} à la place. Cette variable pointe vers @file{lib/ocaml/site-lib/stubslibs} et c'est là où les bibliothèques @file{.so} devraient être installées." #. type: defvr -#: guix-git/doc/guix.texi:8512 +#: guix-git/doc/guix.texi:8569 #, no-wrap msgid "{Scheme Variable} python-build-system" msgstr "{Variable Scheme} python-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8517 +#: guix-git/doc/guix.texi:8574 msgid "This variable is exported by @code{(guix build-system python)}. It implements the more or less standard build procedure used by Python packages, which consists in running @code{python setup.py build} and then @code{python setup.py install --prefix=/gnu/store/@dots{}}." msgstr "Cette variable est exportée par @code{(guix build-system python)}. Elle implémente la procédure de construction plus ou moins standard utilisée pour les paquets Python, qui consiste à lancer @code{python setup.py build} puis @code{python setup.py install --prefix=/gnu/store/@dots{}}." #. type: defvr -#: guix-git/doc/guix.texi:8522 -#, fuzzy -#| msgid "For packages that install stand-alone Python programs under @code{bin/}, it takes care of wrapping these programs so that their @env{PYTHONPATH} environment variable points to all the Python libraries they depend on." +#: guix-git/doc/guix.texi:8579 msgid "For packages that install stand-alone Python programs under @code{bin/}, it takes care of wrapping these programs so that their @env{GUIX_PYTHONPATH} environment variable points to all the Python libraries they depend on." -msgstr "Pour les paquets qui installent des programmes autonomes Python dans @code{bin/}, elle prend soin d'envelopper ces binaires pour que leur variable d'environnement @env{PYTHONPATH} pointe vers toutes les bibliothèques Python dont ils dépendent." +msgstr "Pour les paquets qui installent des programmes autonomes Python dans @code{bin/}, elle prend soin d'envelopper ces binaires pour que leur variable d'environnement @env{GUIX_PYTHONPATH} pointe vers toutes les bibliothèques Python dont ils dépendent." #. type: defvr -#: guix-git/doc/guix.texi:8528 +#: guix-git/doc/guix.texi:8585 msgid "Which Python package is used to perform the build can be specified with the @code{#:python} parameter. This is a useful way to force a package to be built for a specific version of the Python interpreter, which might be necessary if the package is only compatible with a single interpreter version." msgstr "Le paquet Python utilisé pour effectuer la construction peut être spécifié avec le paramètre @code{#:python}. C'est une manière utile de forcer un paquet à être construit avec une version particulière de l'interpréteur python, ce qui peut être nécessaire si le paquet n'est compatible qu'avec une version de l'interpréteur." #. type: defvr -#: guix-git/doc/guix.texi:8533 +#: guix-git/doc/guix.texi:8590 msgid "By default guix calls @code{setup.py} under control of @code{setuptools}, much like @command{pip} does. Some packages are not compatible with setuptools (and pip), thus you can disable this by setting the @code{#:use-setuptools?} parameter to @code{#f}." msgstr "Par défaut, guix appelle @code{setup.py} sous le contrôle de @code{setuptools}, tout comme @command{pip} le fait. Certains paquets ne sont pas compatibles avec setuptools (et pip), vous pouvez donc le désactiver en réglant le paramètre @code{#:use-setuptools?} sur @code{#f}." #. type: defvr -#: guix-git/doc/guix.texi:8539 +#: guix-git/doc/guix.texi:8596 msgid "If a @code{\"python\"} output is available, the package is installed into it instead of the default @code{\"out\"} output. This is useful for packages that include a Python package as only a part of the software, and thus want to combine the phases of @code{python-build-system} with another build system. Python bindings are a common usecase." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8542 +#: guix-git/doc/guix.texi:8599 #, no-wrap msgid "{Scheme Variable} perl-build-system" msgstr "{Variable Scheme} perl-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8554 +#: guix-git/doc/guix.texi:8611 msgid "This variable is exported by @code{(guix build-system perl)}. It implements the standard build procedure for Perl packages, which either consists in running @code{perl Build.PL --prefix=/gnu/store/@dots{}}, followed by @code{Build} and @code{Build install}; or in running @code{perl Makefile.PL PREFIX=/gnu/store/@dots{}}, followed by @code{make} and @code{make install}, depending on which of @code{Build.PL} or @code{Makefile.PL} is present in the package distribution. Preference is given to the former if both @code{Build.PL} and @code{Makefile.PL} exist in the package distribution. This preference can be reversed by specifying @code{#t} for the @code{#:make-maker?} parameter." msgstr "Cette variable est exportée par @code{(guix build-system perl)}. Elle implémente la procédure de construction standard des paquets Perl, qui consiste soit à lancer @code{perl Build.PL --prefix=/gnu/store/@dots{}}, suivi de @code{Build} et @code{Build install} ; ou à lancer @code{perl Makefile.PL PREFIX=/gnu/store/@dots{}}, suivi de @code{make} et @code{make install}, en fonction de la présence de @code{Build.PL} ou @code{Makefile.PL} dans la distribution du paquet. Le premier a la préférence si @code{Build.PL} et @code{Makefile.PL} existent tous deux dans la distribution du paquet. Cette préférence peut être inversée en spécifiant @code{#t} pour le paramètre @code{#:make-maker?}." #. type: defvr -#: guix-git/doc/guix.texi:8558 +#: guix-git/doc/guix.texi:8615 msgid "The initial @code{perl Makefile.PL} or @code{perl Build.PL} invocation passes flags specified by the @code{#:make-maker-flags} or @code{#:module-build-flags} parameter, respectively." msgstr "L'invocation initiale de @code{perl Makefile.PL} ou @code{perl Build.PL} passe les drapeaux spécifiés par le paramètre @code{#:make-maker-flags} ou @code{#:module-build-flags}, respectivement." #. type: defvr -#: guix-git/doc/guix.texi:8560 +#: guix-git/doc/guix.texi:8617 msgid "Which Perl package is used can be specified with @code{#:perl}." msgstr "Le paquet Perl utilisé peut être spécifié avec @code{#:perl}." #. type: defvr -#: guix-git/doc/guix.texi:8562 +#: guix-git/doc/guix.texi:8619 #, no-wrap msgid "{Scheme Variable} renpy-build-system" msgstr "{Variable Scheme} renpy-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8566 +#: guix-git/doc/guix.texi:8623 msgid "This variable is exported by @code{(guix build-system renpy)}. It implements the more or less standard build procedure used by Ren'py games, which consists of loading @code{#:game} once, thereby creating bytecode for it." msgstr "Cette variable est exportée par @code{(guix build-system renpy)}. Elle implémente la procédure de construction plus ou moins standard utilisée pour les jeux Ren'py, qui consiste à charger @code{#:game} une fois, et donc à créer le bytecode pour le jeu." #. type: defvr -#: guix-git/doc/guix.texi:8569 +#: guix-git/doc/guix.texi:8626 msgid "It further creates a wrapper script in @code{bin/} and a desktop entry in @code{share/applications}, both of which can be used to launch the game." msgstr "Elle crée aussi un script enveloppe dans @code{bin/} et une entrée de bureau dans @code{share/applications}, tous deux pouvant être utilisés pour lancer le jeu." #. type: defvr -#: guix-git/doc/guix.texi:8573 +#: guix-git/doc/guix.texi:8630 msgid "Which Ren'py package is used can be specified with @code{#:renpy}. Games can also be installed in outputs other than ``out'' by using @code{#:output}." msgstr "Le paquet Ren'py utilisé peut être spécifié avec @code{#:renpy}. Les jeux peuvent aussi être installé dans des sorties différentes de « out » avec @code{#:output}." #. type: defvr -#: guix-git/doc/guix.texi:8575 +#: guix-git/doc/guix.texi:8632 #, no-wrap msgid "{Scheme Variable} qt-build-system" msgstr "{Variable Scheme} qt-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8578 +#: guix-git/doc/guix.texi:8635 msgid "This variable is exported by @code{(guix build-system qt)}. It is intended for use with applications using Qt or KDE." msgstr "Cette variable est exportée par @code{(guix build-system qt)}. Elle est destinée à être employée avec des applications utilisant Qt ou KDE." #. type: defvr -#: guix-git/doc/guix.texi:8581 +#: guix-git/doc/guix.texi:8638 msgid "This build system adds the following two phases to the ones defined by @code{cmake-build-system}:" msgstr "Ce système de construction ajoute les deux phases suivantes à celles définies par @code{gnu-build-system} :" #. type: item -#: guix-git/doc/guix.texi:8583 +#: guix-git/doc/guix.texi:8640 #, no-wrap msgid "check-setup" msgstr "check-setup" #. type: table -#: guix-git/doc/guix.texi:8590 +#: guix-git/doc/guix.texi:8647 msgid "The phase @code{check-setup} prepares the environment for running the checks as commonly used by Qt test programs. For now this only sets some environment variables: @code{QT_QPA_PLATFORM=offscreen}, @code{DBUS_FATAL_WARNINGS=0} and @code{CTEST_OUTPUT_ON_FAILURE=1}." msgstr "La phase @code{check-setup} prépare l'environnement pour l'exécution des contrôles tels qu'ils sont couramment utilisés par les programmes de test Qt. Pour l'instant, elle ne définit que quelques variables d'environnement : @code{QT_QPA_PLATFORM=offscreen}, @code{DBUS_FATAL_WARNINGS=0} et @code{CTEST_OUTPUT_ON_FAILURE=1}." #. type: table -#: guix-git/doc/guix.texi:8593 +#: guix-git/doc/guix.texi:8650 msgid "This phase is added before the @code{check} phase. It's a separate phase to ease adjusting if necessary." msgstr "Cette phase est ajoutée avant la phase @code{check}. C'est une phase distincte pour faciliter l'ajustement si nécessaire." #. type: item -#: guix-git/doc/guix.texi:8594 +#: guix-git/doc/guix.texi:8651 #, no-wrap msgid "qt-wrap" msgstr "qt-wrap" #. type: table -#: guix-git/doc/guix.texi:8600 +#: guix-git/doc/guix.texi:8657 msgid "The phase @code{qt-wrap} searches for Qt5 plugin paths, QML paths and some XDG in the inputs and output. In case some path is found, all programs in the output's @file{bin/}, @file{sbin/}, @file{libexec/} and @file{lib/libexec/} directories are wrapped in scripts defining the necessary environment variables." msgstr "La phase @code{qt-wrap} recherche les chemins des plugins Qt5, les chemins QML et certains XDG dans les entrées et sorties. Si un chemin est trouvé, tous les programmes des répertoires @file{bin/}, @file{sbin/}, @file{libexec/} et @file{lib/libexec/} de la sortie sont enveloppés dans des scripts définissant les variables d'environnement nécessaires." #. type: table -#: guix-git/doc/guix.texi:8606 +#: guix-git/doc/guix.texi:8663 msgid "It is possible to exclude specific package outputs from that wrapping process by listing their names in the @code{#:qt-wrap-excluded-outputs} parameter. This is useful when an output is known not to contain any Qt binaries, and where wrapping would gratuitously add a dependency of that output on Qt, KDE, or such." msgstr "Il est possible d'exclure des sorties de paquets spécifiques de ce processus d'emballage en listant leurs noms dans le paramètre @code{#:qt-wrap-excluded-outputs}. Ceci est utile lorsqu'une sortie est connue pour ne pas contenir de binaires Qt, et où le wrapping ajouterait gratuitement une dépendance de cette sortie à Qt, KDE, ou autre." #. type: table -#: guix-git/doc/guix.texi:8608 +#: guix-git/doc/guix.texi:8665 msgid "This phase is added after the @code{install} phase." msgstr "Cette phase est exécutée après la phase @code{install}." #. type: defvr -#: guix-git/doc/guix.texi:8611 +#: guix-git/doc/guix.texi:8668 #, no-wrap msgid "{Scheme Variable} r-build-system" msgstr "{Variable Scheme} r-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8619 +#: guix-git/doc/guix.texi:8676 msgid "This variable is exported by @code{(guix build-system r)}. It implements the build procedure used by @uref{https://r-project.org, R} packages, which essentially is little more than running @samp{R CMD INSTALL --library=/gnu/store/@dots{}} in an environment where @env{R_LIBS_SITE} contains the paths to all R package inputs. Tests are run after installation using the R function @code{tools::testInstalledPackage}." msgstr "Cette variable est exportée par @code{(guix build-system r)}. Elle implémente la procédure de compilation utilisée par les paquets @uref{https://r-project.org, R}, qui consiste en substance à exécuter @samp{R CMD INSTALL --library=/gnu/store/@dots{}} dans un environnement où @env{R_LIBS_SITE} contient les chemins de toutes les entrées des paquets R. Les tests sont exécutés après l'installation en utilisant la fonction R @code{tools::testInstalledPackage}." #. type: defvr -#: guix-git/doc/guix.texi:8621 +#: guix-git/doc/guix.texi:8678 #, no-wrap msgid "{Scheme Variable} rakudo-build-system" msgstr "{Variable Scheme} rakudo-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8629 +#: guix-git/doc/guix.texi:8686 msgid "This variable is exported by @code{(guix build-system rakudo)}. It implements the build procedure used by @uref{https://rakudo.org/, Rakudo} for @uref{https://perl6.org/, Perl6} packages. It installs the package to @code{/gnu/store/@dots{}/NAME-VERSION/share/perl6} and installs the binaries, library files and the resources, as well as wrap the files under the @code{bin/} directory. Tests can be skipped by passing @code{#f} to the @code{tests?} parameter." msgstr "Cette variable est exportée par @code{(guix build-system rakudo)}. Elle implémente la procédure de construction utilisée par @uref{https://rakudo.org/, Rakudo} pour les paquets @uref{https://perl6.org/, Perl6}. Elle installe le paquet dans @code{/gnu/store/@dots{}/NOM-VERSION/share/perl6} et installe les binaires, les fichiers de bibliothèques et les ressources, et enveloppe les fichiers dans le répertoire @code{bin/}. Les tests peuvent être passés en indiquant @code{#f} au paramètre @code{tests?}." #. type: defvr -#: guix-git/doc/guix.texi:8637 +#: guix-git/doc/guix.texi:8694 msgid "Which rakudo package is used can be specified with @code{rakudo}. Which perl6-tap-harness package used for the tests can be specified with @code{#:prove6} or removed by passing @code{#f} to the @code{with-prove6?} parameter. Which perl6-zef package used for tests and installing can be specified with @code{#:zef} or removed by passing @code{#f} to the @code{with-zef?} parameter." msgstr "Le paquet rakudo utilisé peut être spécifié avec @code{rakudo}. Le paquet perl6-tap-harness utilisé pour les tests peut être spécifié avec @code{#:prove6} ou supprimé en passant @code{#f} au paramètre @code{with-prove6?}. Le paquet perl6-zef utilisé pour les tests et l'installation peut être spécifié avec @code{#:ef} ou supprimé en passant @code{#f} au paramètre @code{with-zef?}." #. type: defvr -#: guix-git/doc/guix.texi:8639 +#: guix-git/doc/guix.texi:8696 #, no-wrap msgid "{Scheme Variable} texlive-build-system" msgstr "{Variable Scheme} texlive-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8644 +#: guix-git/doc/guix.texi:8701 msgid "This variable is exported by @code{(guix build-system texlive)}. It is used to build TeX packages in batch mode with a specified engine. The build system sets the @env{TEXINPUTS} variable to find all TeX source files in the inputs." msgstr "Cette variable est exportée par @code{(guix build-system texlive)}. Elle est utilisée pour construire des paquets TeX en mode batch avec le moteur spécifié. Le système de construction initialise la variable @env{TEXINPUTS} pour trouver tous les fichiers source TeX dans ses entrées." #. type: defvr -#: guix-git/doc/guix.texi:8653 +#: guix-git/doc/guix.texi:8710 msgid "By default it runs @code{luatex} on all files ending on @code{ins}. A different engine and format can be specified with the @code{#:tex-format} argument. Different build targets can be specified with the @code{#:build-targets} argument, which expects a list of file names. The build system adds only @code{texlive-bin} and @code{texlive-latex-base} (both from @code{(gnu packages tex}) to the inputs. Both can be overridden with the arguments @code{#:texlive-bin} and @code{#:texlive-latex-base}, respectively." msgstr "Par défaut, elle lance @code{luatex} sur tous les fichiers qui se terminent par @code{ins}. Un moteur et un format différent peuvent être spécifiés avec l'argument @code{#:tex-format}. Plusieurs cibles de constructions peuvent être indiquées avec l'argument @code{#:build-targets} qui attend une liste de noms de fichiers. Le système de construction ajoute uniquement @code{texlive-bin} et @code{texlive-latex-base} (de @code{(gnu packages tex)} à la liste des entrées. Les deux peuvent être remplacés avec les arguments @code{#:texlive-bin} et @code{#:texlive-latex-base}, respectivement." #. type: defvr -#: guix-git/doc/guix.texi:8656 +#: guix-git/doc/guix.texi:8713 msgid "The @code{#:tex-directory} parameter tells the build system where to install the built files under the texmf tree." msgstr "Le paramètre @code{#:tex-directory} dit au système de construction où installer les fichiers construit dans l'arbre texmf." #. type: defvr -#: guix-git/doc/guix.texi:8658 +#: guix-git/doc/guix.texi:8715 #, no-wrap msgid "{Scheme Variable} ruby-build-system" msgstr "{Variable Scheme} ruby-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8662 +#: guix-git/doc/guix.texi:8719 msgid "This variable is exported by @code{(guix build-system ruby)}. It implements the RubyGems build procedure used by Ruby packages, which involves running @code{gem build} followed by @code{gem install}." msgstr "Cette variable est exportée par @code{(guix build-system ruby)}. Elle implémenter la procédure de construction RubyGems utilisée par les paquets Ruby qui consiste à lancer @code{gem build} suivi de @code{gem install}." #. type: defvr -#: guix-git/doc/guix.texi:8670 +#: guix-git/doc/guix.texi:8727 msgid "The @code{source} field of a package that uses this build system typically references a gem archive, since this is the format that Ruby developers use when releasing their software. The build system unpacks the gem archive, potentially patches the source, runs the test suite, repackages the gem, and installs it. Additionally, directories and tarballs may be referenced to allow building unreleased gems from Git or a traditional source release tarball." msgstr "Le champ @code{source} d'un paquet qui utilise ce système de construction référence le plus souvent une archive gem, puisque c'est le format utilisé par les personnes qui développent en Ruby quand elles publient leur logiciel. Le système de construction décompresse l'archive gem, éventuellement en corrigeant les sources, lance la suite de tests, recompresse la gemme et l'installe. En plus, des répertoires et des archives peuvent être référencés pour permettre de construire des gemmes qui n'ont pas été publiées depuis Git ou une archive de sources traditionnelle." #. type: defvr -#: guix-git/doc/guix.texi:8674 +#: guix-git/doc/guix.texi:8731 msgid "Which Ruby package is used can be specified with the @code{#:ruby} parameter. A list of additional flags to be passed to the @command{gem} command can be specified with the @code{#:gem-flags} parameter." msgstr "Le paquet Ruby utilisé peut être spécifié avec le paramètre @code{#:ruby}. Une liste de drapeaux supplémentaires à passer à la commande @command{gem} peut être spécifiée avec le paramètre @code{#:gem-flags}." #. type: defvr -#: guix-git/doc/guix.texi:8676 +#: guix-git/doc/guix.texi:8733 #, no-wrap msgid "{Scheme Variable} waf-build-system" msgstr "{Variable Scheme} waf-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8682 +#: guix-git/doc/guix.texi:8739 msgid "This variable is exported by @code{(guix build-system waf)}. It implements a build procedure around the @code{waf} script. The common phases---@code{configure}, @code{build}, and @code{install}---are implemented by passing their names as arguments to the @code{waf} script." msgstr "Cette variable est exportée par @code{(guix build-system waf)}. Elle implémente une procédure de construction autour du script @code{waf}. Les phases usuelles — @code{configure}, @code{build} et @code{install} — sont implémentée en passant leur nom en argument au script @code{waf}." #. type: defvr -#: guix-git/doc/guix.texi:8686 +#: guix-git/doc/guix.texi:8743 msgid "The @code{waf} script is executed by the Python interpreter. Which Python package is used to run the script can be specified with the @code{#:python} parameter." msgstr "Le script @code{waf} est exécuté par l'interpréteur Python. Le paquet Python utilisé pour lancer le script peut être spécifié avec le paramètre @code{#:python}." #. type: defvr -#: guix-git/doc/guix.texi:8688 +#: guix-git/doc/guix.texi:8745 #, no-wrap msgid "{Scheme Variable} scons-build-system" msgstr "{Variable Scheme} scons-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8694 +#: guix-git/doc/guix.texi:8751 msgid "This variable is exported by @code{(guix build-system scons)}. It implements the build procedure used by the SCons software construction tool. This build system runs @code{scons} to build the package, @code{scons test} to run tests, and then @code{scons install} to install the package." msgstr "Cette variable est exportée par @code{(guix build-system scons)}. Elle implémente la procédure de construction utilisée par l'outil de construction SCons. Ce système de construction lance @code{scons} pour construire le paquet, @code{scons test} pour lancer les tests puis @code{scons install} pour installer le paquet." #. type: defvr -#: guix-git/doc/guix.texi:8701 +#: guix-git/doc/guix.texi:8758 msgid "Additional flags to be passed to @code{scons} can be specified with the @code{#:scons-flags} parameter. The default build and install targets can be overridden with @code{#:build-targets} and @code{#:install-targets} respectively. The version of Python used to run SCons can be specified by selecting the appropriate SCons package with the @code{#:scons} parameter." msgstr "Des drapeaux supplémentaires à passer à @code{scons} peuvent être spécifiés avec le paramètre @code{#:scons-flags}. Les cibles de construction et d'installation par défaut peuvent être remplacées respectivement par les paramètres @code{#:build-targets} et @code{#:install-targets}. La version de Python utilisée pour exécuter SCons peut être spécifiée en sélectionnant le paquet SCons approprié avec le paramètre @code{#:scons}." #. type: defvr -#: guix-git/doc/guix.texi:8703 +#: guix-git/doc/guix.texi:8760 #, no-wrap msgid "{Scheme Variable} haskell-build-system" msgstr "{Variable Scheme} haskell-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8717 +#: guix-git/doc/guix.texi:8774 msgid "This variable is exported by @code{(guix build-system haskell)}. It implements the Cabal build procedure used by Haskell packages, which involves running @code{runhaskell Setup.hs configure --prefix=/gnu/store/@dots{}} and @code{runhaskell Setup.hs build}. Instead of installing the package by running @code{runhaskell Setup.hs install}, to avoid trying to register libraries in the read-only compiler store directory, the build system uses @code{runhaskell Setup.hs copy}, followed by @code{runhaskell Setup.hs register}. In addition, the build system generates the package documentation by running @code{runhaskell Setup.hs haddock}, unless @code{#:haddock? #f} is passed. Optional Haddock parameters can be passed with the help of the @code{#:haddock-flags} parameter. If the file @code{Setup.hs} is not found, the build system looks for @code{Setup.lhs} instead." msgstr "Cette variable est exportée par @code{(guix build-system haskell)}. Elle implémente la procédure de construction Cabal utilisée par les paquets Haskell, qui consiste à lancer @code{runhaskell Setup.hs configure --prefix=/gnu/store/@dots{}} et @code{runhaskell Setup.hs build}. Plutôt que d'installer le paquets en lançant @code{runhaskell Setup.hs install}, pour éviter d'essayer d'enregistrer les bibliothèques dans le répertoire du dépôt en lecture-seule du compilateur, le système de construction utilise @code{runhaskell Setup.hs copy}, suivi de @code{runhaskell Setup.hs register}. En plus, le système de construction génère la documentation du paquet en lançant @code{runhaskell Setup.hs haddock}, à moins que @code{#:haddock? #f} ne soit passé. Des paramètres facultatifs pour Haddock peuvent être passés à l'aide du paramètre @code{#:haddock-flags}. Si le fichier @code{Setup.hs} n'est pas trouvé, le système de construction cherchera @code{Setup.lhs} à la place." #. type: defvr -#: guix-git/doc/guix.texi:8720 +#: guix-git/doc/guix.texi:8777 msgid "Which Haskell compiler is used can be specified with the @code{#:haskell} parameter which defaults to @code{ghc}." msgstr "Le compilateur Haskell utilisé peut être spécifié avec le paramètre @code{#:haskell} qui a pour valeur par défaut @code{ghc}." #. type: defvr -#: guix-git/doc/guix.texi:8722 +#: guix-git/doc/guix.texi:8779 #, no-wrap msgid "{Scheme Variable} dub-build-system" msgstr "{Variable Scheme} dub-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8727 +#: guix-git/doc/guix.texi:8784 msgid "This variable is exported by @code{(guix build-system dub)}. It implements the Dub build procedure used by D packages, which involves running @code{dub build} and @code{dub run}. Installation is done by copying the files manually." msgstr "Cette variable est exportée par @code{(guix build-system dub)}. Elle implémente la procédure de construction Dub utilisée par les paquets D qui consiste à lancer @code{dub build} et @code{dub run}. L'installation est effectuée en copiant les fichiers manuellement." #. type: defvr -#: guix-git/doc/guix.texi:8730 +#: guix-git/doc/guix.texi:8787 msgid "Which D compiler is used can be specified with the @code{#:ldc} parameter which defaults to @code{ldc}." msgstr "Le compilateur D utilisé peut être spécifié avec le paramètre @code{#:ldc} qui vaut par défaut @code{ldc}." #. type: anchor{#1} -#: guix-git/doc/guix.texi:8733 +#: guix-git/doc/guix.texi:8790 msgid "emacs-build-system" msgstr "emacs-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8733 +#: guix-git/doc/guix.texi:8790 #, no-wrap msgid "{Scheme Variable} emacs-build-system" msgstr "{Variable Scheme} emacs-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8737 +#: guix-git/doc/guix.texi:8794 msgid "This variable is exported by @code{(guix build-system emacs)}. It implements an installation procedure similar to the packaging system of Emacs itself (@pxref{Packages,,, emacs, The GNU Emacs Manual})." msgstr "Cette variable est exportée par @code{(guix build-system emacs)}. Elle implémente une procédure d'installation similaire au système de gestion de paquet d'Emacs lui-même (@pxref{Packages,,, emacs, The GNU Emacs Manual})." #. type: defvr -#: guix-git/doc/guix.texi:8743 +#: guix-git/doc/guix.texi:8800 msgid "It first creates the @code{@code{package}-autoloads.el} file, then it byte compiles all Emacs Lisp files. Differently from the Emacs packaging system, the Info documentation files are moved to the standard documentation directory and the @file{dir} file is deleted. The Elisp package files are installed directly under @file{share/emacs/site-lisp}." msgstr "Cela crée d'abord le fichier @code{@code{package}-autoloads.el}, puis compile tous les fichiers Emacs Lisp en bytecode. Contrairement au système de gestion de paquets d'Emacs, les fichiers de documentation info sont déplacés dans le répertoire standard et le fichier @file{dir} est supprimé. Les fichiers du paquet Elisp sont directement installés sous @file{share/emacs/site-lisp}." #. type: defvr -#: guix-git/doc/guix.texi:8745 +#: guix-git/doc/guix.texi:8802 #, no-wrap msgid "{Scheme Variable} font-build-system" msgstr "{Variable Scheme} font-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8751 +#: guix-git/doc/guix.texi:8808 msgid "This variable is exported by @code{(guix build-system font)}. It implements an installation procedure for font packages where upstream provides pre-compiled TrueType, OpenType, etc.@: font files that merely need to be copied into place. It copies font files to standard locations in the output directory." msgstr "Cette variable est exportée par @code{(guix build-system font)}. Elle implémente une procédure d'installation pour les paquets de polices où des fichiers de polices TrueType, OpenType, etc.@: sont fournis en amont et n'ont qu'à être copiés à leur emplacement final. Elle copie les fichiers de polices à l'emplacement standard dans le répertoire de sortie." #. type: defvr -#: guix-git/doc/guix.texi:8753 +#: guix-git/doc/guix.texi:8810 #, no-wrap msgid "{Scheme Variable} meson-build-system" msgstr "{Variable Scheme} meson-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8757 +#: guix-git/doc/guix.texi:8814 msgid "This variable is exported by @code{(guix build-system meson)}. It implements the build procedure for packages that use @url{https://mesonbuild.com, Meson} as their build system." msgstr "Cette variable est exportée par @code{(guix build-system meson)}. Elle implémente la procédure de construction des paquets qui utilisent @url{https://mesonbuild.com, Meson} comme système de construction." #. type: defvr -#: guix-git/doc/guix.texi:8761 +#: guix-git/doc/guix.texi:8818 #, fuzzy #| msgid "It adds both Meson and @uref{https://ninja-build.org/, Ninja} to the set of inputs, and they can be changed with the parameters @code{#:meson} and @code{#:ninja} if needed. The default Meson is @code{meson-for-build}, which is special because it doesn't clear the @code{RUNPATH} of binaries and libraries when they are installed." msgid "It adds both Meson and @uref{https://ninja-build.org/, Ninja} to the set of inputs, and they can be changed with the parameters @code{#:meson} and @code{#:ninja} if needed." msgstr "Elle ajoute à la fois Meson et @uref{https://ninja-build.org/, Ninja} à l'ensemble des entrées, et ils peuvent être modifiés avec les paramètres @code{#:meson} et @code{#:ninja} si requis. Le Meson par défaut est @code{meson-for-build}, qui est spécial parce qu'il ne nettoie pas le @code{RUNPATH} des binaires et les bibliothèques qu'il installe." #. type: defvr -#: guix-git/doc/guix.texi:8764 +#: guix-git/doc/guix.texi:8821 msgid "This build system is an extension of @code{gnu-build-system}, but with the following phases changed to some specific for Meson:" msgstr "Ce système de construction est une extension de @code{gnu-build-system}, mais avec les phases suivantes modifiées pour Meson :" #. type: item -#: guix-git/doc/guix.texi:8767 guix-git/doc/guix.texi:8818 -#: guix-git/doc/guix.texi:8886 +#: guix-git/doc/guix.texi:8824 guix-git/doc/guix.texi:8875 +#: guix-git/doc/guix.texi:8947 #, no-wrap msgid "configure" msgstr "configure" #. type: table -#: guix-git/doc/guix.texi:8772 +#: guix-git/doc/guix.texi:8829 msgid "The phase runs @code{meson} with the flags specified in @code{#:configure-flags}. The flag @option{--buildtype} is always set to @code{debugoptimized} unless something else is specified in @code{#:build-type}." msgstr "La phase lance @code{meson} avec les drapeaux spécifiés dans @code{#:configure-flags}. Le drapeau @option{--buildtype} est toujours défini à @code{debugoptimized} à moins qu'autre chose ne soit spécifié dans @code{#:build-type}." #. type: table -#: guix-git/doc/guix.texi:8776 +#: guix-git/doc/guix.texi:8833 msgid "The phase runs @code{ninja} to build the package in parallel by default, but this can be changed with @code{#:parallel-build?}." msgstr "La phase lance @code{ninja} pour construire le paquet en parallèle par défaut, mais cela peut être changé avec @code{#:parallel-build?}." #. type: table -#: guix-git/doc/guix.texi:8782 +#: guix-git/doc/guix.texi:8839 msgid "The phase runs @samp{meson test} with a base set of options that cannot be overridden. This base set of options can be extended via the @code{#:test-options} argument, for example to select or skip a specific test suite." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8785 +#: guix-git/doc/guix.texi:8842 msgid "The phase runs @code{ninja install} and can not be changed." msgstr "La phase lance @code{ninja install} et ne peut pas être changée." #. type: defvr -#: guix-git/doc/guix.texi:8788 +#: guix-git/doc/guix.texi:8845 msgid "Apart from that, the build system also adds the following phases:" msgstr "En dehors de cela, le système de construction ajoute aussi la phase suivante :" #. type: item -#: guix-git/doc/guix.texi:8791 +#: guix-git/doc/guix.texi:8848 #, no-wrap msgid "fix-runpath" msgstr "fix-runpath" #. type: table -#: guix-git/doc/guix.texi:8798 -#, fuzzy -#| msgid "This phase ensures that all binaries can find the libraries they need. It searches for required libraries in subdirectories of the package being built, and adds those to @code{RUNPATH} where needed. It also removes references to libraries left over from the build phase by @code{meson-for-build}, such as test dependencies, that aren't actually required for the program to run." +#: guix-git/doc/guix.texi:8855 msgid "This phase ensures that all binaries can find the libraries they need. It searches for required libraries in subdirectories of the package being built, and adds those to @code{RUNPATH} where needed. It also removes references to libraries left over from the build phase by @code{meson}, such as test dependencies, that aren't actually required for the program to run." -msgstr "Cette phase s'assure que tous les binaire peuvent trouver les bibliothèques dont ils ont besoin. Elle cherche les bibliothèques requises dans les sous-répertoires du paquet en construction et les ajoute au @code{RUNPATH} là où c'est nécessaire. Elle supprime aussi les références aux bibliothèques laissées là par la phase de construction par @code{meson-for-build} comme les dépendances des tests, qui ne sont pas vraiment requises pour le programme." +msgstr "Cette phase s'assure que tous les binaire peuvent trouver les bibliothèques dont ils ont besoin. Elle cherche les bibliothèques requises dans les sous-répertoires du paquet en construction et les ajoute au @code{RUNPATH} là où c'est nécessaire. Elle supprime aussi les références aux bibliothèques laissées là par la phase de construction par @code{meson} comme les dépendances des tests, qui ne sont pas vraiment requises pour le programme." #. type: table -#: guix-git/doc/guix.texi:8802 guix-git/doc/guix.texi:8806 +#: guix-git/doc/guix.texi:8859 guix-git/doc/guix.texi:8863 msgid "This phase is the phase provided by @code{glib-or-gtk-build-system}, and it is not enabled by default. It can be enabled with @code{#:glib-or-gtk?}." msgstr "Cette phase est la phase fournie par @code{glib-or-gtk-build-system} et n'est pas activée par défaut. Elle peut l'être avec @code{#:glib-or-gtk?}." #. type: defvr -#: guix-git/doc/guix.texi:8809 +#: guix-git/doc/guix.texi:8866 #, no-wrap msgid "{Scheme Variable} linux-module-build-system" msgstr "{Variable Scheme} linux-module-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8811 +#: guix-git/doc/guix.texi:8868 msgid "@code{linux-module-build-system} allows building Linux kernel modules." msgstr "@code{linux-module-build-system} permet de construire des modules du noyau Linux." #. type: defvr -#: guix-git/doc/guix.texi:8815 +#: guix-git/doc/guix.texi:8872 msgid "This build system is an extension of @code{gnu-build-system}, but with the following phases changed:" msgstr "Ce système de construction est une extension de @var{gnu-build-system}, mais avec les phases suivantes modifiées :" #. type: table -#: guix-git/doc/guix.texi:8821 +#: guix-git/doc/guix.texi:8878 msgid "This phase configures the environment so that the Linux kernel's Makefile can be used to build the external kernel module." msgstr "Cette phase configure l'environnement pour que le Makefile du noyau Linux puisse être utilisé pour construire le module du noyau externe." #. type: table -#: guix-git/doc/guix.texi:8825 +#: guix-git/doc/guix.texi:8882 msgid "This phase uses the Linux kernel's Makefile in order to build the external kernel module." msgstr "Cette phase utilise le Makefile du noyau Linux pour construire le module du noyau externe." #. type: table -#: guix-git/doc/guix.texi:8829 +#: guix-git/doc/guix.texi:8886 msgid "This phase uses the Linux kernel's Makefile in order to install the external kernel module." msgstr "Cette phase utilise le Makefile du noyau Linux pour installer le module du noyau externe." #. type: defvr -#: guix-git/doc/guix.texi:8834 +#: guix-git/doc/guix.texi:8891 msgid "It is possible and useful to specify the Linux kernel to use for building the module (in the @code{arguments} form of a package using the @code{linux-module-build-system}, use the key @code{#:linux} to specify it)." msgstr "Il est possible et utile de spécifier le noyau Linux à utiliser pour construire le module (sous la forme @code{arguments} d'un paquet utilisant le @code{linux-module-build-system}, utilisez la clé @code{#:linux} pour le spécifier)." #. type: defvr -#: guix-git/doc/guix.texi:8836 +#: guix-git/doc/guix.texi:8893 #, no-wrap msgid "{Scheme Variable} node-build-system" msgstr "{Variable Scheme} node-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8841 +#: guix-git/doc/guix.texi:8898 msgid "This variable is exported by @code{(guix build-system node)}. It implements the build procedure used by @uref{https://nodejs.org, Node.js}, which implements an approximation of the @code{npm install} command, followed by an @code{npm test} command." msgstr "Cette variable est exportée par @code{(guix build-system node)}. Elle implémente la procédure de compilation utilisée par @uref{https://nodejs.org, Node.js}, qui implémente une approximation de la commande @code{npm install}, suivie d'une commande @code{npm test}." #. type: defvr -#: guix-git/doc/guix.texi:8845 +#: guix-git/doc/guix.texi:8902 msgid "Which Node.js package is used to interpret the @code{npm} commands can be specified with the @code{#:node} parameter which defaults to @code{node}." msgstr "Le paquet Node.js utilisé pour interpréter les commandes @code{npm} peut être spécifié avec le paramètre @code{#:node} dont la valeur par défaut est @code{node}." #. type: Plain text -#: guix-git/doc/guix.texi:8851 +#: guix-git/doc/guix.texi:8908 msgid "Lastly, for packages that do not need anything as sophisticated, a ``trivial'' build system is provided. It is trivial in the sense that it provides basically no support: it does not pull any implicit inputs, and does not have a notion of build phases." msgstr "Enfin, pour les paquets qui n'ont pas besoin de choses sophistiquées, un système de construction « trivial » est disponible. Il est trivial dans le sens où il ne fournit en gros aucun support : il n'apporte pas de dépendance implicite, et n'a pas de notion de phase de construction." #. type: defvr -#: guix-git/doc/guix.texi:8852 +#: guix-git/doc/guix.texi:8909 #, no-wrap msgid "{Scheme Variable} trivial-build-system" msgstr "{Variable Scheme} trivial-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8854 +#: guix-git/doc/guix.texi:8911 msgid "This variable is exported by @code{(guix build-system trivial)}." msgstr "Cette variable est exportée par @code{(guix build-system trivial)}." #. type: defvr -#: guix-git/doc/guix.texi:8859 +#: guix-git/doc/guix.texi:8916 msgid "This build system requires a @code{#:builder} argument. This argument must be a Scheme expression that builds the package output(s)---as with @code{build-expression->derivation} (@pxref{Derivations, @code{build-expression->derivation}})." msgstr "Ce système de construction requiert un argument @code{#:builder}. Cet argument doit être une expression Scheme qui construit la sortie du paquet — comme avec @code{build-expression->derivation} (@pxref{Derivations, @code{build-expression->derivation}})." #. type: cindex -#: guix-git/doc/guix.texi:8864 +#: guix-git/doc/guix.texi:8921 #, no-wrap msgid "build phases, for packages" msgstr "phases de construction, pour les paquets" #. type: Plain text -#: guix-git/doc/guix.texi:8870 +#: guix-git/doc/guix.texi:8927 msgid "Almost all package build systems implement a notion @dfn{build phases}: a sequence of actions that the build system executes, when you build the package, leading to the installed byproducts in the store. A notable exception is the ``bare-bones'' @code{trivial-build-system} (@pxref{Build Systems})." msgstr "Presque tous les systèmes de construction de paquets mettent en œuvre une notion de @dfn{phase de construction} : une séquence d'actions que le système de construction exécute, lorsque vous construisez le paquet, conduisant aux sous-produits installés dans le dépôt. Une exception notable est le @code{trivial-build-system} (@pxref{Build Systems}) minimaliste." #. type: Plain text -#: guix-git/doc/guix.texi:8874 +#: guix-git/doc/guix.texi:8931 msgid "As discussed in the previous section, those build systems provide a standard list of phases. For @code{gnu-build-system}, the main build phases are the following:" msgstr "Comme nous l'avons dit dans la section précédente, ces systèmes de construction fournissent une liste de phases standards. Pour @code{gnu-build-system}, les phases de construction principales sont les suivantes :" #. type: item -#: guix-git/doc/guix.texi:8876 +#: guix-git/doc/guix.texi:8933 +#, fuzzy, no-wrap +#| msgid "store paths" +msgid "set-paths" +msgstr "chemins dans le dépôt" + +#. type: table +#: guix-git/doc/guix.texi:8936 +msgid "Define search path environment variables for all the input packages, including @env{PATH} (@pxref{Search Paths})." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:8937 #, no-wrap msgid "unpack" msgstr "unpack" #. type: table -#: guix-git/doc/guix.texi:8880 +#: guix-git/doc/guix.texi:8941 msgid "Unpack the source tarball, and change the current directory to the extracted source tree. If the source is actually a directory, copy it to the build tree, and enter that directory." msgstr "Décompresse l'archive des sources et se déplace dans l'arborescence des sources fraîchement extraites. Si la source est en fait un répertoire, le copie dans l'arborescence de construction et entre dans ce répertoire." #. type: item -#: guix-git/doc/guix.texi:8881 +#: guix-git/doc/guix.texi:8942 #, no-wrap msgid "patch-source-shebangs" msgstr "patch-source-shebangs" #. type: table -#: guix-git/doc/guix.texi:8885 +#: guix-git/doc/guix.texi:8946 msgid "Patch shebangs encountered in source files so they refer to the right store file names. For instance, this changes @code{#!/bin/sh} to @code{#!/gnu/store/@dots{}-bash-4.3/bin/sh}." msgstr "Corrige les shebangs (@code{#!}) rencontrés dans les fichiers pour qu'ils se réfèrent aux bons noms de fichiers. Par exemple, elle change @code{#!/bin/sh} en @code{#!/gnu/store/@dots{}-bash-4.3/bin/sh}." #. type: table -#: guix-git/doc/guix.texi:8890 +#: guix-git/doc/guix.texi:8951 msgid "Run the @file{configure} script with a number of default options, such as @option{--prefix=/gnu/store/@dots{}}, as well as the options specified by the @code{#:configure-flags} argument." msgstr "Lance le script @code{configure} avec un certain nombre d'options par défaut, comme @option{--prefix=/gnu/store/@dots{}}, ainsi que les options spécifiées par l'argument @code{#:configure-flags}." #. type: table -#: guix-git/doc/guix.texi:8895 +#: guix-git/doc/guix.texi:8956 msgid "Run @code{make} with the list of flags specified with @code{#:make-flags}. If the @code{#:parallel-build?} argument is true (the default), build with @code{make -j}." msgstr "Lance @code{make} avec la liste des drapeaux spécifiés avec @code{#:make-flags}. Si l'argument @code{#:parallel-build?} est vrai (par défaut), construit avec @code{make -j}." #. type: table -#: guix-git/doc/guix.texi:8901 +#: guix-git/doc/guix.texi:8962 msgid "Run @code{make check}, or some other target specified with @code{#:test-target}, unless @code{#:tests? #f} is passed. If the @code{#:parallel-tests?} argument is true (the default), run @code{make check -j}." msgstr "Lance @code{make check}, ou une autre cible spécifiée par @code{#:test-target}, à moins que @code{#:tests? #f} ne soit passé. Si l'argument @code{#:parallel-tests?} est vrai (par défaut), lance @code{make check -j}." #. type: table -#: guix-git/doc/guix.texi:8904 +#: guix-git/doc/guix.texi:8965 msgid "Run @code{make install} with the flags listed in @code{#:make-flags}." msgstr "Lance @code{make install} avec les drapeaux listés dans @code{#:make-flags}." #. type: item -#: guix-git/doc/guix.texi:8905 +#: guix-git/doc/guix.texi:8966 #, no-wrap msgid "patch-shebangs" msgstr "patch-shebangs" #. type: table -#: guix-git/doc/guix.texi:8907 +#: guix-git/doc/guix.texi:8968 msgid "Patch shebangs on the installed executable files." msgstr "Corrige les shebangs des fichiers exécutables installés." #. type: item -#: guix-git/doc/guix.texi:8908 +#: guix-git/doc/guix.texi:8969 #, no-wrap msgid "strip" msgstr "strip" #. type: table -#: guix-git/doc/guix.texi:8912 +#: guix-git/doc/guix.texi:8973 msgid "Strip debugging symbols from ELF files (unless @code{#:strip-binaries?} is false), copying them to the @code{debug} output when available (@pxref{Installing Debugging Files})." msgstr "Nettoie les symboles de débogage dans les fichiers ELF (à moins que @code{#:strip-binaries?} ne soit faux), les copie dans la sortie @code{debug} lorsqu'elle est disponible (@pxref{Installing Debugging Files})." #. type: Plain text -#: guix-git/doc/guix.texi:8921 +#: guix-git/doc/guix.texi:8982 msgid "Other build systems have similar phases, with some variations. For example, @code{cmake-build-system} has same-named phases but its @code{configure} phases runs @code{cmake} instead of @code{./configure}. Others, such as @code{python-build-system}, have a wholly different list of standard phases. All this code runs on the @dfn{build side}: it is evaluated when you actually build the package, in a dedicated build process spawned by the build daemon (@pxref{Invoking guix-daemon})." msgstr "Les autres systèmes de construction ont des phases similaires, avec quelques variations. Par exemple, @code{cmake-build-system} a des phases de même nom, mais sa phase @code{configure} exécute @code{cmake} au lieu de @code{./configure}. D'autres, tels que @code{python-build-system}, ont une liste de phases standard totalement différente. Tout ce code s'exécute @dfn{côté construction} : il est évalué lorsque vous construisez réellement le paquet, dans un processus de construction dédié engendré par le démon de construction (@pxref{Invoquer guix-daemon})." #. type: Plain text -#: guix-git/doc/guix.texi:8928 +#: guix-git/doc/guix.texi:8989 msgid "Build phases are represented as association lists or ``alists'' (@pxref{Association Lists,,, guile, GNU Guile Reference Manual}) where each key is a symbol for the name of the phase and the associated value is a procedure that accepts an arbitrary number of arguments. By convention, those procedures receive information about the build in the form of @dfn{keyword parameters}, which they can use or ignore." msgstr "Les phases de construction sont représentées sous forme de listes d'associations ou « alists » (@pxref{Association Lists,Listes d'association,, guile, Manuel de référence de GNU Guile}) où chaque clé est un symbole pour le nom de la phase et la valeur associée est une procédure qui accepte un nombre arbitraire d'arguments. Par convention, ces procédures reçoivent des informations sur la construction sous la forme de @dfn{paramètres nommés}, qu'elles peuvent utiliser ou ignorer." #. type: vindex -#: guix-git/doc/guix.texi:8929 +#: guix-git/doc/guix.texi:8990 #, no-wrap msgid "%standard-phases" msgstr "%standard-phases" #. type: Plain text -#: guix-git/doc/guix.texi:8935 +#: guix-git/doc/guix.texi:8996 msgid "For example, here is how @code{(guix build gnu-build-system)} defines @code{%standard-phases}, the variable holding its alist of build phases@footnote{We present a simplified view of those build phases, but do take a look at @code{(guix build gnu-build-system)} to see all the details!}:" msgstr "Par exemple, voici comment @code{(guix build gnu-build-system)} définit @code{%standard-phases}, la variable contenant sa liste de phases de construction@footnote{Nous présentons une vue simplifiée de ces phases de construction, mais jetez un oeil à @code{(guix build gnu-build-system)} pour voir tous les détails !} :" #. type: lisp -#: guix-git/doc/guix.texi:8938 +#: guix-git/doc/guix.texi:8999 #, no-wrap msgid "" ";; The build phases of 'gnu-build-system'.\n" @@ -17766,7 +17895,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:8942 +#: guix-git/doc/guix.texi:9003 #, no-wrap msgid "" "(define* (unpack #:key source #:allow-other-keys)\n" @@ -17780,7 +17909,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:8948 +#: guix-git/doc/guix.texi:9009 #, no-wrap msgid "" "(define* (configure #:key outputs #:allow-other-keys)\n" @@ -17798,7 +17927,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:8952 +#: guix-git/doc/guix.texi:9013 #, no-wrap msgid "" "(define* (build #:allow-other-keys)\n" @@ -17812,7 +17941,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:8959 +#: guix-git/doc/guix.texi:9020 #, no-wrap msgid "" "(define* (check #:key (test-target \"check\") (tests? #true)\n" @@ -17832,7 +17961,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:8963 +#: guix-git/doc/guix.texi:9024 #, no-wrap msgid "" "(define* (install #:allow-other-keys)\n" @@ -17846,7 +17975,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:8972 +#: guix-git/doc/guix.texi:9033 #, no-wrap msgid "" "(define %standard-phases\n" @@ -17868,38 +17997,38 @@ msgstr "" " (cons 'install install)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:8982 +#: guix-git/doc/guix.texi:9043 msgid "This shows how @code{%standard-phases} is defined as a list of symbol/procedure pairs (@pxref{Pairs,,, guile, GNU Guile Reference Manual}). The first pair associates the @code{unpack} procedure with the @code{unpack} symbol---a name; the second pair defines the @code{configure} phase similarly, and so on. When building a package that uses @code{gnu-build-system} with its default list of phases, those phases are executed sequentially. You can see the name of each phase started and completed in the build log of packages that you build." msgstr "Cela montre comment @code{%standard-phases} est défini comme une liste de paires symbole/procédure (@pxref{Pairs, , , guile, GNU Guile Reference Manual}). La première paire associe le symbole @code{unpack} --- un nom --- à la procédure @code{unpack} ; la deuxième paire définit la phase @code{configure} de manière similaire, et ainsi de suite. Lors de la construction d'un paquet qui utilise @code{gnu-build-system} avec sa liste de phases par défaut, ces phases sont exécutées de manière séquentielle. Vous pouvez voir le nom de chaque phase commencée et terminée dans le journal de construction des paquets que vous construisez." #. type: Plain text -#: guix-git/doc/guix.texi:8988 +#: guix-git/doc/guix.texi:9049 msgid "Let's now look at the procedures themselves. Each one is defined with @code{define*}: @code{#:key} lists keyword parameters the procedure accepts, possibly with a default value, and @code{#:allow-other-keys} specifies that other keyword parameters are ignored (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual})." msgstr "Examinons maintenant les procédures elles-mêmes. Chacune est définie par @code{define*} : @code{#:key} énumère les paramètres nommés que la procédure accepte, éventuellement avec une valeur par défaut, et @code{#:allow-other-keys} précise que les autres paramètres nommés sont ignorés (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual})." #. type: Plain text -#: guix-git/doc/guix.texi:9004 +#: guix-git/doc/guix.texi:9065 msgid "The @code{unpack} procedure honors the @code{source} parameter, which the build system uses to pass the file name of the source tarball (or version control checkout), and it ignores other parameters. The @code{configure} phase only cares about the @code{outputs} parameter, an alist mapping package output names to their store file name (@pxref{Packages with Multiple Outputs}). It extracts the file name of for @code{out}, the default output, and passes it to @command{./configure} as the installation prefix, meaning that @command{make install} will eventually copy all the files in that directory (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards}). @code{build} and @code{install} ignore all their arguments. @code{check} honors the @code{test-target} argument, which specifies the name of the Makefile target to run tests; it prints a message and skips tests when @code{tests?} is false." msgstr "La procédure @code{unpack} respecte le paramètre @code{source}, que le système de compilation utilise pour passer le nom de fichier de l'archive source (ou le répertoire cloné d'un système de contrôle de version), et elle ignore les autres paramètres. La phase @code{configure} ne s'intéresse qu'au paramètre @code{outputs}, une liste d'association des noms des sorties du paquet avec le nom de leur fichier du dépôt (@pxref{Packages with Multiple Outputs}). Elle extrait le nom de fichier de @code{out}, la sortie par défaut, et le transmet à @command{./configure} comme préfixe d'installation, ce qui signifie que @command{make install} copiera tous les fichiers vers ce répertoire (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards}). @code{build} et @code{install} ignorent tous leurs arguments. @code{check} prend en considération l'argument @code{test-target}, qui spécifie le nom de la cible du Makefile pour exécuter les tests ; il imprime un message et saute les tests lorsque @code{tests?} est faux." #. type: cindex -#: guix-git/doc/guix.texi:9005 +#: guix-git/doc/guix.texi:9066 #, no-wrap msgid "build phases, customizing" msgstr "phases de construction, personnalisation" #. type: Plain text -#: guix-git/doc/guix.texi:9014 +#: guix-git/doc/guix.texi:9075 msgid "The list of phases used for a particular package can be changed with the @code{#:phases} parameter of the build system. Changing the set of build phases boils down to building a new alist of phases based on the @code{%standard-phases} alist described above. This can be done with standard alist procedures such as @code{alist-delete} (@pxref{SRFI-1 Association Lists,,, guile, GNU Guile Reference Manual}); however, it is more convenient to do so with @code{modify-phases} (@pxref{Build Utilities, @code{modify-phases}})." msgstr "La liste des phases utilisées pour un paquet particulier peut être modifiée avec le paramètre @code{#:phases} du système de construction. La modification de l'ensemble des phases de construction se résume à la création d'une nouvelle liste de phases basée sur la liste @code{%standard-phases} décrite ci-dessus. On peut faire cela à l'aide des procédures standards qui manipulent des listes d'associations telles que @code{alist-delete} (@pxref{SRFI-1 Association Lists,,, guile, GNU Guile Reference Manual}) ; cependant, il est plus pratique de le faire avec @code{modify-phases} (@pxref{Build Utilities, @code{modify-phases}})." #. type: Plain text -#: guix-git/doc/guix.texi:9019 +#: guix-git/doc/guix.texi:9080 msgid "Here is an example of a package definition that removes the @code{configure} phase of @code{%standard-phases} and inserts a new phase before the @code{build} phase, called @code{set-prefix-in-makefile}:" msgstr "Voici un exemple de définition de paquet qui supprime la phase @code{configure} de @code{%standard-phases} et insère une nouvelle phase avant la phase @code{build}, appelée @code{set-prefix-in-makefile} :" #. type: lisp -#: guix-git/doc/guix.texi:9039 +#: guix-git/doc/guix.texi:9100 #, no-wrap msgid "" "(define-public example\n" @@ -17941,44 +18070,44 @@ msgstr "" " #true))))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:9045 +#: guix-git/doc/guix.texi:9106 msgid "The new phase that is inserted is written as an anonymous procedure, introduced with @code{lambda*}; it honors the @code{outputs} parameter we have seen before. @xref{Build Utilities}, for more about the helpers used by this phase, and for more examples of @code{modify-phases}." msgstr "La nouvelle phase insérée est écrite comme une procédure anonyme, introduite avec @code{lambda*} ; elle honore le paramètre @code{outputs} que nous avons vu auparavant. @xref{Build Utilities}, pour en savoir plus sur les procédures auxiliaires utilisées par cette phase, et pour d'autres exemples de @code{modify-phases}." #. type: cindex -#: guix-git/doc/guix.texi:9046 guix-git/doc/guix.texi:10046 +#: guix-git/doc/guix.texi:9107 guix-git/doc/guix.texi:10360 #, no-wrap msgid "code staging" msgstr "code échelonné" #. type: cindex -#: guix-git/doc/guix.texi:9047 guix-git/doc/guix.texi:10047 +#: guix-git/doc/guix.texi:9108 guix-git/doc/guix.texi:10361 #, no-wrap msgid "staging, of code" msgstr "échelonnage, du code" #. type: Plain text -#: guix-git/doc/guix.texi:9054 +#: guix-git/doc/guix.texi:9115 msgid "Keep in mind that build phases are code evaluated at the time the package is actually built. This explains why the whole @code{modify-phases} expression above is quoted (it comes after the @code{'} or apostrophe): it is @dfn{staged} for later execution. @xref{G-Expressions}, for an explanation of code staging and the @dfn{code strata} involved." msgstr "Gardez à l'esprit que le code des phases de construction est évalué à la construction effective des paquets. Cela explique pourquoi toute l'expression @code{modify-phases} ci-dessus est citée (elle vient après @code{'} ou apostrophe) : elle est @dfn{mise de côté} pour une exécution ultérieure. @xref{G-Expressions}, pour une explication de la mise en place du code et des @dfn{strates de code} concernées." #. type: Plain text -#: guix-git/doc/guix.texi:9064 +#: guix-git/doc/guix.texi:9125 msgid "As soon as you start writing non-trivial package definitions (@pxref{Defining Packages}) or other build actions (@pxref{G-Expressions}), you will likely start looking for helpers for ``shell-like'' actions---creating directories, copying and deleting files recursively, manipulating build phases, and so on. The @code{(guix build utils)} module provides such utility procedures." msgstr "Dès que vous commencerez à écrire des définitions de paquets non triviales (@pxref{Defining Packages}) ou d'autres actions de compilation (@pxref{G-Expressions}), vous commencerez probablement à chercher des fonctions auxiliaires pour les actions « de type shell » --- créer des répertoires, copier et supprimer des fichiers de manière récursive, manipuler les phases de compilation, etc. Le module @code{(guix build utils)} fournit de telles procédures utilitaires." #. type: Plain text -#: guix-git/doc/guix.texi:9068 +#: guix-git/doc/guix.texi:9129 msgid "Most build systems load @code{(guix build utils)} (@pxref{Build Systems}). Thus, when writing custom build phases for your package definitions, you can usually assume those procedures are in scope." msgstr "La plupart des systèmes de construction chargent @code{(guix build utils)} (@pxref{Build Systems}). Ainsi, lorsque vous écrivez des phases de construction personnalisées pour vos définitions de paquets, vous pouvez généralement supposer que ces procédures sont disponibles." #. type: Plain text -#: guix-git/doc/guix.texi:9073 +#: guix-git/doc/guix.texi:9134 msgid "When writing G-expressions, you can import @code{(guix build utils)} on the ``build side'' using @code{with-imported-modules} and then put it in scope with the @code{use-modules} form (@pxref{Using Guile Modules,,, guile, GNU Guile Reference Manual}):" msgstr "Lorsque vous écrivez des G-expressions, vous pouvez importer @code{(guix build utils)} « côté construction » en utilisant @code{with-imported-modules} et ensuite le rendre disponible avec la forme @code{use-modules} (@pxref{Using Guile Modules,,, guile, GNU Guile Reference Manual}) :" #. type: lisp -#: guix-git/doc/guix.texi:9080 +#: guix-git/doc/guix.texi:9141 #, no-wrap msgid "" "(with-imported-modules '((guix build utils)) ;import it\n" @@ -17996,7 +18125,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:9083 +#: guix-git/doc/guix.texi:9144 #, no-wrap msgid "" " ;; Happily use its 'mkdir-p' procedure.\n" @@ -18006,211 +18135,211 @@ msgstr "" " (mkdir-p (string-append #$output \"/a/b/c\")))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:9087 +#: guix-git/doc/guix.texi:9148 msgid "The remainder of this section is the reference for most of the utility procedures provided by @code{(guix build utils)}." msgstr "Le reste de cette section est la référence pour la plupart des procédures auxiliaires fournies par @code{(guix build utils)}." #. type: subsection -#: guix-git/doc/guix.texi:9090 +#: guix-git/doc/guix.texi:9151 #, no-wrap msgid "Dealing with Store File Names" msgstr "Traitement des noms de fichiers du dépôt" #. type: Plain text -#: guix-git/doc/guix.texi:9093 +#: guix-git/doc/guix.texi:9154 msgid "This section documents procedures that deal with store file names." msgstr "Cette section documente les procédures de traitement des noms de fichier du dépôt." #. type: deffn -#: guix-git/doc/guix.texi:9094 +#: guix-git/doc/guix.texi:9155 #, no-wrap msgid "{Scheme Procedure} %store-directory" msgstr "{Procédure Scheme} %store-directory" #. type: deffn -#: guix-git/doc/guix.texi:9096 +#: guix-git/doc/guix.texi:9157 msgid "Return the directory name of the store." msgstr "Renvoie le nom de répertoire du dépôt." #. type: deffn -#: guix-git/doc/guix.texi:9098 +#: guix-git/doc/guix.texi:9159 #, no-wrap msgid "{Scheme Procedure} store-file-name? @var{file}" msgstr "{Procédure Scheme} store-file-name? @var{fichier}" #. type: deffn -#: guix-git/doc/guix.texi:9100 +#: guix-git/doc/guix.texi:9161 msgid "Return true if @var{file} is in the store." msgstr "Renvoie vrai si @var{fichier} est dans le dépôt." #. type: deffn -#: guix-git/doc/guix.texi:9102 +#: guix-git/doc/guix.texi:9163 #, no-wrap msgid "{Scheme Procedure} strip-store-file-name @var{file}" msgstr "{Procédure Scheme} strip-store-file-name @var{fichier}" #. type: deffn -#: guix-git/doc/guix.texi:9105 +#: guix-git/doc/guix.texi:9166 msgid "Strip the @file{/gnu/store} and hash from @var{file}, a store file name. The result is typically a @code{\"@var{package}-@var{version}\"} string." msgstr "Enlevez le @file{/gnu/store} et le hash de @var{fichier}, un nom de fichier du dépôt. Le résultat est généralement une chaîne @code{\"@var{paquet}-@var{version}\"}." #. type: deffn -#: guix-git/doc/guix.texi:9107 +#: guix-git/doc/guix.texi:9168 #, no-wrap msgid "{Scheme Procedure} package-name->name+version @var{name}" msgstr "{Procédure Scheme} package-name->name+version @var{nom}" #. type: deffn -#: guix-git/doc/guix.texi:9112 +#: guix-git/doc/guix.texi:9173 msgid "Given @var{name}, a package name like @code{\"foo-0.9.1b\"}, return two values: @code{\"foo\"} and @code{\"0.9.1b\"}. When the version part is unavailable, @var{name} and @code{#f} are returned. The first hyphen followed by a digit is considered to introduce the version part." msgstr "Si l'on passe @var{nom}, un nom de paquet comme @code{\"toto-0.9.1b\"}, on obtient deux valeurs : @code{\"toto\"} et @code{\"0.9.1b\"}. Lorsque la partie version est indisponible, @var{nom} et @code{#f} sont renvoyés. Le premier trait d'union suivi d'un chiffre est considéré comme introduisant la partie version." #. type: subsection -#: guix-git/doc/guix.texi:9114 +#: guix-git/doc/guix.texi:9175 #, no-wrap msgid "File Types" msgstr "Types de fichier" #. type: Plain text -#: guix-git/doc/guix.texi:9117 +#: guix-git/doc/guix.texi:9178 msgid "The procedures below deal with files and file types." msgstr "Les procédures ci-dessous portent sur les fichiers et les types de fichiers." #. type: deffn -#: guix-git/doc/guix.texi:9118 +#: guix-git/doc/guix.texi:9179 #, no-wrap msgid "{Scheme Procedure} directory-exists? @var{dir}" msgstr "{Procédure Scheme} directory-exists? @var{dir}" #. type: deffn -#: guix-git/doc/guix.texi:9120 +#: guix-git/doc/guix.texi:9181 msgid "Return @code{#t} if @var{dir} exists and is a directory." msgstr "Renvoie @code{#t} si @var{dir} existe et est un répertoire." #. type: deffn -#: guix-git/doc/guix.texi:9122 +#: guix-git/doc/guix.texi:9183 #, no-wrap msgid "{Scheme Procedure} executable-file? @var{file}" msgstr "{Procédure Scheme} executable-file? @var{fichier}" #. type: deffn -#: guix-git/doc/guix.texi:9124 +#: guix-git/doc/guix.texi:9185 msgid "Return @code{#t} if @var{file} exists and is executable." msgstr "Renvoie @code{#t} si @var{fichier} existe et est exécutable." #. type: deffn -#: guix-git/doc/guix.texi:9126 +#: guix-git/doc/guix.texi:9187 #, no-wrap msgid "{Scheme Procedure} symbolic-link? @var{file}" msgstr "{Procédure Scheme} symbolic-link? @var{fichier}" #. type: deffn -#: guix-git/doc/guix.texi:9128 +#: guix-git/doc/guix.texi:9189 msgid "Return @code{#t} if @var{file} is a symbolic link (aka. a ``symlink'')." msgstr "Renvoie @code{#t} si @var{fichier} est un lien symbolique (un « symlink »)." #. type: deffn -#: guix-git/doc/guix.texi:9130 +#: guix-git/doc/guix.texi:9191 #, no-wrap msgid "{Scheme Procedure} elf-file? @var{file}" msgstr "{Procédure Scheme} elf-file? @var{fichier}" #. type: deffnx -#: guix-git/doc/guix.texi:9131 +#: guix-git/doc/guix.texi:9192 #, no-wrap msgid "{Scheme Procedure} ar-file? @var{file}" msgstr "{Procédure Scheme} ar-file? @var{fichier}" #. type: deffnx -#: guix-git/doc/guix.texi:9132 +#: guix-git/doc/guix.texi:9193 #, no-wrap msgid "{Scheme Procedure} gzip-file? @var{file}" msgstr "{Procédure Scheme} gzip-file? @var{fichier}" #. type: deffn -#: guix-git/doc/guix.texi:9135 +#: guix-git/doc/guix.texi:9196 msgid "Return @code{#t} if @var{file} is, respectively, an ELF file, an @code{ar} archive (such as a @file{.a} static library), or a gzip file." msgstr "Renvoie @code{#t} si @var{fichier} est, respectivement, un fichier ELF, une archive @code{ar} (telle qu'une bibliothèque statique @file{.a}), ou un fichier gzip." #. type: deffn -#: guix-git/doc/guix.texi:9137 +#: guix-git/doc/guix.texi:9198 #, no-wrap msgid "{Scheme Procedure} reset-gzip-timestamp @var{file} [#:keep-mtime? #t]" msgstr "{Procédure Scheme} reset-gzip-timestamp @var{fichier} [#:keep-mtime? #t]" #. type: deffn -#: guix-git/doc/guix.texi:9141 +#: guix-git/doc/guix.texi:9202 msgid "If @var{file} is a gzip file, reset its embedded timestamp (as with @command{gzip --no-name}) and return true. Otherwise return @code{#f}. When @var{keep-mtime?} is true, preserve @var{file}'s modification time." msgstr "Si @var{fichier} est un fichier gzip, réinitialise son horodatage intégré (comme avec @command{gzip --no-name}) et renvoie vrai. Sinon, renvoie @code{#f}. Lorsque @var{keep-mtime?} est vrai, conserve la date de modification de @var{fichier}." #. type: subsection -#: guix-git/doc/guix.texi:9143 +#: guix-git/doc/guix.texi:9204 #, no-wrap msgid "File Manipulation" msgstr "Manipulation de fichiers" #. type: Plain text -#: guix-git/doc/guix.texi:9150 +#: guix-git/doc/guix.texi:9211 msgid "The following procedures and macros help create, modify, and delete files. They provide functionality comparable to common shell utilities such as @command{mkdir -p}, @command{cp -r}, @command{rm -r}, and @command{sed}. They complement Guile's extensive, but low-level, file system interface (@pxref{POSIX,,, guile, GNU Guile Reference Manual})." msgstr "Les procédures et macros suivantes permettent de créer, modifier et supprimer des fichiers. Elles offrent des fonctionnalités comparables à celles des utilitaires shell courants tels que @command{mkdir -p}, @command{cp -r}, @command{rm -r} et @command{sed}. Elles complètent l'interface de système de fichiers étendue, mais de bas niveau, de Guile (@pxref{POSIX, , , guile, GNU Guile Reference Manual})." #. type: deffn -#: guix-git/doc/guix.texi:9151 +#: guix-git/doc/guix.texi:9212 #, no-wrap msgid "{Scheme Syntax} with-directory-excursion @var{directory} @var{body}@dots{}" msgstr "{Syntaxe Scheme} with-directory-excursion @var{répertoire} @var{corps}@dots{}" #. type: deffn -#: guix-git/doc/guix.texi:9153 +#: guix-git/doc/guix.texi:9214 msgid "Run @var{body} with @var{directory} as the process's current directory." msgstr "Exécute @var{corps} avec @var{répertoire} comme répertoire actuel du processus." #. type: deffn -#: guix-git/doc/guix.texi:9160 +#: guix-git/doc/guix.texi:9221 msgid "Essentially, this macro changes the current directory to @var{directory} before evaluating @var{body}, using @code{chdir} (@pxref{Processes,,, guile, GNU Guile Reference Manual}). It changes back to the initial directory when the dynamic extent of @var{body} is left, be it @i{via} normal procedure return or @i{via} a non-local exit such as an exception." msgstr "En gros, cette macro change le répertoire actuel en @var{répertoire} avant d'évaluer @var{corps}, en utilisant @code{chdir}. (@pxref{Processus,,, guile, Manuel de référence de GNU Guile}). Elle revient au répertoire initial à la sortie de la portée dynamique de @var{corps}, qu'il s'agisse d'un retour de procédure normal ou d'une sortie non locale telle qu'une exception." #. type: deffn -#: guix-git/doc/guix.texi:9162 +#: guix-git/doc/guix.texi:9223 #, no-wrap msgid "{Scheme Procedure} mkdir-p @var{dir}" msgstr "{Procédure Scheme} mkdir-p @var{dir}" #. type: deffn -#: guix-git/doc/guix.texi:9164 +#: guix-git/doc/guix.texi:9225 msgid "Create directory @var{dir} and all its ancestors." msgstr "Crée le répertoire @var{dir} et tous ses ancètres." #. type: deffn -#: guix-git/doc/guix.texi:9166 +#: guix-git/doc/guix.texi:9227 #, no-wrap msgid "{Scheme Procedure} install-file @var{file} @var{directory}" msgstr "{Procédure Scheme} install-file @var{fichier} @var{répertoire}" #. type: deffn -#: guix-git/doc/guix.texi:9169 +#: guix-git/doc/guix.texi:9230 msgid "Create @var{directory} if it does not exist and copy @var{file} in there under the same name." msgstr "Crée @var{répertoire} s'il n'existe pas et y copie @var{fichier} sous le même nom." #. type: deffn -#: guix-git/doc/guix.texi:9171 +#: guix-git/doc/guix.texi:9232 #, no-wrap msgid "{Scheme Procedure} make-file-writable @var{file}" msgstr "{Procédure Scheme} make-file-writable @var{fichier}" #. type: deffn -#: guix-git/doc/guix.texi:9173 +#: guix-git/doc/guix.texi:9234 msgid "Make @var{file} writable for its owner." msgstr "Rend @var{fichier} inscriptible pour son propriétaire." #. type: deffn -#: guix-git/doc/guix.texi:9175 +#: guix-git/doc/guix.texi:9236 #, no-wrap msgid "{Scheme Procedure} copy-recursively @var{source} @var{destination} @" msgstr "{Procédure Scheme} copy-recursively @var{source} @var{destination} @" #. type: deffn -#: guix-git/doc/guix.texi:9184 +#: guix-git/doc/guix.texi:9245 #, fuzzy #| msgid "[#:log (current-output-port)] [#:follow-symlinks? #f] [#:keep-mtime? #f] Copy @var{source} directory to @var{destination}. Follow symlinks if @var{follow-symlinks?} is true; otherwise, just preserve them. When @var{keep-mtime?} is true, keep the modification time of the files in @var{source} on those of @var{destination}. Write verbose output to the @var{log} port." msgid "[#:log (current-output-port)] [#:follow-symlinks? #f] @ [#:copy-file copy-file] [#:keep-mtime? #f] [#:keep-permissions? #t] Copy @var{source} directory to @var{destination}. Follow symlinks if @var{follow-symlinks?} is true; otherwise, just preserve them. Call @var{copy-file} to copy regular files. When @var{keep-mtime?} is true, keep the modification time of the files in @var{source} on those of @var{destination}. When @var{keep-permissions?} is true, preserve file permissions. Write verbose output to the @var{log} port." @@ -18219,40 +18348,34 @@ msgstr "" "Copie le répertoire @var{source} dans @var{destination}. Suivez les liens symboliques si @var{follow-symlinks?} est vrai ; sinon, conservez-les. Lorsque @var{keep-mtime?} est vrai, conservez les heures de modification des fichiers dans @var{source} sur celles de @var{destination}. Écrivez une sortie verbeuse sur le port @var{log}." #. type: deffn -#: guix-git/doc/guix.texi:9186 +#: guix-git/doc/guix.texi:9247 #, no-wrap msgid "{Scheme Procedure} delete-file-recursively @var{dir} @" msgstr "{Procédure Scheme} delete-file-recursively @var{dir} @" #. type: deffn -#: guix-git/doc/guix.texi:9191 +#: guix-git/doc/guix.texi:9252 msgid "[#:follow-mounts? #f] Delete @var{dir} recursively, like @command{rm -rf}, without following symlinks. Don't follow mount points either, unless @var{follow-mounts?} is true. Report but ignore errors." msgstr "" "[#:follow-mounts? #f] \n" "Efface récursivement @var{dir}, comme @command{rm -rf}, sans les liens symboliques suivants. Ne suit pas non plus les points de montage, à moins que @var{follow-mounts?} ne soit vrai. Rapporte mais ignore les erreurs." #. type: deffn -#: guix-git/doc/guix.texi:9193 +#: guix-git/doc/guix.texi:9254 #, no-wrap msgid "{Scheme Syntax} substitute* @var{file} @" msgstr "{Syntaxe Scheme} substitute* @var{fichier} @" #. type: deffn -#: guix-git/doc/guix.texi:9198 +#: guix-git/doc/guix.texi:9259 msgid "((@var{regexp} @var{match-var}@dots{}) @var{body}@dots{}) @dots{} Substitute @var{regexp} in @var{file} by the string returned by @var{body}. @var{body} is evaluated with each @var{match-var} bound to the corresponding positional regexp sub-expression. For example:" msgstr "" "((@var{regexp} @var{match-var}@dots{}) @var{body}@dots{}) @dots{} \n" "Remplace @var{regexp} dans @var{fichier} par la chaîne renvoyée par @var{body}. @var{body} est évalué avec chaque @var{match-var} lié à la sous-expression de regexp positionnelle correspondante. Par exemple :" #. type: lisp -#: guix-git/doc/guix.texi:9205 -#, fuzzy, no-wrap -#| msgid "" -#| "(substitute* file\n" -#| " ((\"hello\")\n" -#| " \"good morning\\n\")\n" -#| " ((\"foo([a-z]+)bar(.*)$\" all letters end)\n" -#| " (string-append \"baz\" letter end)))\n" +#: guix-git/doc/guix.texi:9266 +#, no-wrap msgid "" "(substitute* file\n" " ((\"hello\")\n" @@ -18264,76 +18387,76 @@ msgstr "" " ((\"hello\")\n" " \"good morning\\n\")\n" " ((\"toto([a-z]+)titi(.*)$\" all letters end)\n" -" (string-append \"tata\" letter end)))\n" +" (string-append \"tata\" letters end)))\n" #. type: deffn -#: guix-git/doc/guix.texi:9211 +#: guix-git/doc/guix.texi:9272 msgid "Here, anytime a line of @var{file} contains @code{hello}, it is replaced by @code{good morning}. Anytime a line of @var{file} matches the second regexp, @code{all} is bound to the complete match, @code{letters} is bound to the first sub-expression, and @code{end} is bound to the last one." msgstr "Ici, chaque fois qu'une ligne de @var{fichier} contient @code{hello}, elle est remplacée par @code{good morning}. Chaque fois qu'une ligne de @var{fichier} correspond à la deuxième regexp, @code{all} est lié à la correspondance complète, @code{letters} est lié à la première sous-expression, et @code{end} est lié à la dernière." #. type: deffn -#: guix-git/doc/guix.texi:9214 +#: guix-git/doc/guix.texi:9275 msgid "When one of the @var{match-var} is @code{_}, no variable is bound to the corresponding match substring." msgstr "Lorsque l'une des @var{match-var} est @code{_}, aucune variable n'est liée à la sous-chaîne de correspondance associée." #. type: deffn -#: guix-git/doc/guix.texi:9217 +#: guix-git/doc/guix.texi:9278 msgid "Alternatively, @var{file} may be a list of file names, in which case they are all subject to the substitutions." msgstr "Autrement, @var{fichier} peut être une liste de noms de fichier, auquel cas ils sont tous sujets aux substitutions." #. type: deffn -#: guix-git/doc/guix.texi:9220 +#: guix-git/doc/guix.texi:9281 msgid "Be careful about using @code{$} to match the end of a line; by itself it won't match the terminating newline of a line." msgstr "Faites attention à l'utilisation du @code{$} pour faire correspondre la fin d'une ligne ; à lui seul, il ne correspondra pas à la fin d'une nouvelle ligne." #. type: subsection -#: guix-git/doc/guix.texi:9222 +#: guix-git/doc/guix.texi:9283 #, no-wrap msgid "File Search" msgstr "Recherche de fichiers" #. type: cindex -#: guix-git/doc/guix.texi:9224 +#: guix-git/doc/guix.texi:9285 #, no-wrap msgid "file, searching" msgstr "fichier, chercher" #. type: Plain text -#: guix-git/doc/guix.texi:9226 +#: guix-git/doc/guix.texi:9287 msgid "This section documents procedures to search and filter files." msgstr "Cette section documente les procédures pour chercher et filtrer des fichiers." #. type: deffn -#: guix-git/doc/guix.texi:9227 +#: guix-git/doc/guix.texi:9288 #, no-wrap msgid "{Scheme Procedure} file-name-predicate @var{regexp}" msgstr "{Procédure Scheme} file-name-predicate @var{regexp}" #. type: deffn -#: guix-git/doc/guix.texi:9230 +#: guix-git/doc/guix.texi:9291 msgid "Return a predicate that returns true when passed a file name whose base name matches @var{regexp}." msgstr "Renvoie un prédicat qui devient vrai lorsqu'on lui passe un nom de fichier dont le nom de base correspond à @var{regexp}." #. type: deffn -#: guix-git/doc/guix.texi:9232 +#: guix-git/doc/guix.texi:9293 #, no-wrap msgid "{Scheme Procedure} find-files @var{dir} [@var{pred}] @" msgstr "{Procédure Scheme} find-files @var{dir} [@var{pred}] @" #. type: deffn -#: guix-git/doc/guix.texi:9243 +#: guix-git/doc/guix.texi:9304 msgid "[#:stat lstat] [#:directories? #f] [#:fail-on-error? #f] Return the lexicographically sorted list of files under @var{dir} for which @var{pred} returns true. @var{pred} is passed two arguments: the absolute file name, and its stat buffer; the default predicate always returns true. @var{pred} can also be a regular expression, in which case it is equivalent to @code{(file-name-predicate @var{pred})}. @var{stat} is used to obtain file information; using @code{lstat} means that symlinks are not followed. If @var{directories?} is true, then directories will also be included. If @var{fail-on-error?} is true, raise an exception upon error." msgstr "" "[#:stat lstat] [#:directories ? #f] [#:fail-on-error ? #f] \n" "Renvoie la liste des fichiers triés lexicographiquement sous @var{dir} pour lesquels @var{pred} renvoie « vrai ». Deux arguments sont passés à @var{pred} : le nom absolu du fichier et son tampon stat ; le prédicat par défaut renvoie toujours « vrai ». @var{pred} peut également être une expression régulière, auquel cas elle est équivalente à @code{(file-name-predicate @var{pred})}. @var{stat} est utilisé pour obtenir des informations sur les fichiers ; l'utilisation de @code{lstat} signifie que les liens symboliques ne sont pas suivis. Si @var{directories?} est vrai, alors les répertoires seront également inclus. Si @var{fail-on-error?} est vrai, il lance une exception en cas d'erreur." #. type: Plain text -#: guix-git/doc/guix.texi:9247 +#: guix-git/doc/guix.texi:9308 msgid "Here are a few examples where we assume that the current directory is the root of the Guix source tree:" msgstr "Voici quelques exemples où nous supposons que le répertoire actuel est la racine de l'arborescence des sources de Guix :" #. type: lisp -#: guix-git/doc/guix.texi:9252 +#: guix-git/doc/guix.texi:9313 #, no-wrap msgid "" ";; List all the regular files in the current directory.\n" @@ -18347,7 +18470,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:9256 +#: guix-git/doc/guix.texi:9317 #, no-wrap msgid "" ";; List all the .scm files under gnu/services.\n" @@ -18361,7 +18484,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:9260 +#: guix-git/doc/guix.texi:9321 #, no-wrap msgid "" ";; List ar files in the current directory.\n" @@ -18373,47 +18496,47 @@ msgstr "" "@result{} (\"./libformat.a\" \"./libstore.a\" @dots{})\n" #. type: deffn -#: guix-git/doc/guix.texi:9262 +#: guix-git/doc/guix.texi:9323 #, no-wrap msgid "{Scheme Procedure} which @var{program}" msgstr "{Procédure Scheme} which @var{programme}" #. type: deffn -#: guix-git/doc/guix.texi:9265 +#: guix-git/doc/guix.texi:9326 msgid "Return the complete file name for @var{program} as found in @code{$PATH}, or @code{#f} if @var{program} could not be found." msgstr "Renvoie le nom complet du fichier pour @var{programme} tel qu'il se trouve dans @code{$PATH}, ou @code{#f} si @var{programme} n'a pas pu être trouvé." #. type: deffn -#: guix-git/doc/guix.texi:9267 +#: guix-git/doc/guix.texi:9328 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} plain-file @var{name} @var{content}" msgid "{Scheme Procedure} search-input-file @var{inputs} @var{name}" msgstr "{Procédure Scheme} plain-file @var{name} @var{content}" #. type: deffnx -#: guix-git/doc/guix.texi:9268 +#: guix-git/doc/guix.texi:9329 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} directory-union @var{name} @var{things}" msgid "{Scheme Procedure} search-input-directory @var{inputs} @var{name}" msgstr "{Procédure Scheme} directory-union @var{name} @var{things}" #. type: deffn -#: guix-git/doc/guix.texi:9273 +#: guix-git/doc/guix.texi:9334 msgid "Return the complete file name for @var{name} as found in @var{inputs}; @code{search-input-file} searches for a regular file and @code{search-input-directory} searches for a directory. If @var{name} could not be found, an exception is raised." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9277 +#: guix-git/doc/guix.texi:9338 msgid "Here, @var{inputs} must be an association list like @code{inputs} and @code{native-inputs} as available to build phases (@pxref{Build Phases})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9281 +#: guix-git/doc/guix.texi:9342 msgid "Here is a (simplified) example of how @code{search-input-file} is used in a build phase of the @code{wireguard-tools} package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9290 +#: guix-git/doc/guix.texi:9351 #, no-wrap msgid "" "(add-after 'install 'wrap-wg-quick\n" @@ -18425,35 +18548,248 @@ msgid "" " `(\"PATH\" \":\" prefix ,(list coreutils))))))\n" msgstr "" +#. type: subsection +#: guix-git/doc/guix.texi:9353 +#, fuzzy, no-wrap +#| msgid "Commit Revocation" +msgid "Program Invocation" +msgstr "Révocation des droits en commit" + +#. type: cindex +#: guix-git/doc/guix.texi:9355 +#, no-wrap +msgid "program invocation, from Scheme" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:9356 +#, no-wrap +msgid "invoking programs, from Scheme" +msgstr "" + #. type: Plain text -#: guix-git/doc/guix.texi:9301 +#: guix-git/doc/guix.texi:9360 +msgid "You'll find handy procedures to spawn processes in this module, essentially convenient wrappers around Guile's @code{system*} (@pxref{Processes, @code{system*},, guile, GNU Guile Reference Manual})." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9361 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} guix-os @var{variants}@dots{}" +msgid "{Scheme Procedure} invoke @var{program} @var{args}@dots{}" +msgstr "{Procédure Scheme} guix-os @var{variants}@dots{}" + +#. type: deffn +#: guix-git/doc/guix.texi:9365 +msgid "Invoke @var{program} with the given @var{args}. Raise an @code{&invoke-error} exception if the exit code is non-zero; otherwise return @code{#t}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9369 +msgid "The advantage compared to @code{system*} is that you do not need to check the return value. This reduces boilerplate in shell-script-like snippets for instance in package build phases." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9371 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} inferior-package? @var{obj}" +msgid "{Scheme Procedure} invoke-error? @var{c}" +msgstr "{Procédure Scheme} inferior-package? @var{obj}" + +#. type: deffn +#: guix-git/doc/guix.texi:9373 +#, fuzzy +#| msgid "Return true if @var{obj} is an inferior package." +msgid "Return true if @var{c} is an @code{&invoke-error} condition." +msgstr "Renvoie vrai si @var{obj} est un paquet inférieur." + +#. type: deffn +#: guix-git/doc/guix.texi:9375 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} inferior-package? @var{obj}" +msgid "{Scheme Procedure} invoke-error-program @var{c}" +msgstr "{Procédure Scheme} inferior-package? @var{obj}" + +#. type: deffnx +#: guix-git/doc/guix.texi:9376 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} inferior-package-inputs @var{package}" +msgid "{Scheme Procedure} invoke-error-arguments @var{c}" +msgstr "{Procédure Scheme} inferior-package-inputs @var{package}" + +#. type: deffnx +#: guix-git/doc/guix.texi:9377 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} directory-exists? @var{dir}" +msgid "{Scheme Procedure} invoke-error-exit-status @var{c}" +msgstr "{Procédure Scheme} directory-exists? @var{dir}" + +#. type: deffnx +#: guix-git/doc/guix.texi:9378 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} inferior-package-name @var{package}" +msgid "{Scheme Procedure} invoke-error-term-signal @var{c}" +msgstr "{Procédure Scheme} inferior-package-name @var{package}" + +#. type: deffnx +#: guix-git/doc/guix.texi:9379 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} inferior-package-name @var{package}" +msgid "{Scheme Procedure} invoke-error-stop-signal @var{c}" +msgstr "{Procédure Scheme} inferior-package-name @var{package}" + +#. type: deffn +#: guix-git/doc/guix.texi:9381 +msgid "Access specific fields of @var{c}, an @code{&invoke-error} condition." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9383 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} screen-locker-service @var{package} [@var{program}]" +msgid "{Scheme Procedure} report-invoke-error @var{c} [@var{port}]" +msgstr "{Procédure Scheme} screen-locker-service @var{package} [@var{program}]" + +#. type: deffn +#: guix-git/doc/guix.texi:9386 +msgid "Report to @var{port} (by default the current error port) about @var{c}, an @code{&invoke-error} condition, in a human-friendly way." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9388 +#, fuzzy +#| msgid "... would look like this:" +msgid "Typical usage would look like this:" +msgstr "... ressemblerait à ceci :" + +#. type: lisp +#: guix-git/doc/guix.texi:9392 +#, fuzzy, no-wrap +#| msgid "" +#| "(use-modules (guix utils)\n" +#| " (guix store)\n" +#| " (guix derivations))\n" +#| "\n" +msgid "" +"(use-modules (srfi srfi-34) ;for 'guard'\n" +" (guix build utils))\n" +"\n" +msgstr "" +"(use-modules (guix utils)\n" +" (guix store)\n" +" (guix derivations))\n" +"\n" + +#. type: lisp +#: guix-git/doc/guix.texi:9396 +#, no-wrap +msgid "" +"(guard (c ((invoke-error? c)\n" +" (report-invoke-error c)))\n" +" (invoke \"date\" \"--imaginary-option\"))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9398 +#, no-wrap +msgid "@print{} command \"date\" \"--imaginary-option\" failed with status 1\n" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9401 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} file-append @var{obj} @var{suffix} @dots{}" +msgid "{Scheme Procedure} invoke/quiet @var{program} @var{args}@dots{}" +msgstr "{Procédure Scheme} file-append @var{obj} @var{suffix} @dots{}" + +#. type: deffn +#: guix-git/doc/guix.texi:9407 +msgid "Invoke @var{program} with @var{args} and capture @var{program}'s standard output and standard error. If @var{program} succeeds, print nothing and return the unspecified value; otherwise, raise a @code{&message} error condition that includes the status code and the output of @var{program}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9409 +#, fuzzy +#| msgid "Here's an example use:" +msgid "Here's an example:" +msgstr "Voici un exemple d'utilisation :" + +#. type: lisp +#: guix-git/doc/guix.texi:9414 +#, fuzzy, no-wrap +#| msgid "" +#| "(use-modules (guix utils)\n" +#| " (guix store)\n" +#| " (guix derivations))\n" +#| "\n" +msgid "" +"(use-modules (srfi srfi-34) ;for 'guard'\n" +" (srfi srfi-35) ;for 'message-condition?'\n" +" (guix build utils))\n" +"\n" +msgstr "" +"(use-modules (guix utils)\n" +" (guix store)\n" +" (guix derivations))\n" +"\n" + +#. type: lisp +#: guix-git/doc/guix.texi:9419 +#, no-wrap +msgid "" +"(guard (c ((message-condition? c)\n" +" (display (condition-message c))))\n" +" (invoke/quiet \"date\") ;all is fine\n" +" (invoke/quiet \"date\" \"--imaginary-option\"))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9421 +#, no-wrap +msgid "" +"@print{} 'date --imaginary-option' exited with status 1; output follows:\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9424 +#, no-wrap +msgid "" +" date: unrecognized option '--imaginary-option'\n" +" Try 'date --help' for more information.\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9436 msgid "The @code{(guix build utils)} also contains tools to manipulate build phases as used by build systems (@pxref{Build Systems}). Build phases are represented as association lists or ``alists'' (@pxref{Association Lists,,, guile, GNU Guile Reference Manual}) where each key is a symbol naming the phase and the associated value is a procedure (@pxref{Build Phases})." msgstr "Le @code{(guix build utils)} contient également des outils permettant de manipuler les phases de construction telles qu'elles sont utilisées par les systèmes de construction (@pxref{Build Systems}). Les phases de construction sont représentées sous forme de listes d'associations ou « alists » (@pxref{Association Lists,,, guile, Manuel de référence de GNU Guile}) où chaque clé est un symbole désignant la phase et où la valeur associée est une procédure (@pxref{Build Phases})." #. type: Plain text -#: guix-git/doc/guix.texi:9305 +#: guix-git/doc/guix.texi:9440 msgid "Guile core and the @code{(srfi srfi-1)} module both provide tools to manipulate alists. The @code{(guix build utils)} module complements those with tools written with build phases in mind." msgstr "Le noyau Guile et le module @code{(srfi srfi-1)} fournissent tous deux des outils pour manipuler les alignements. Le module @code{(guix build utils)} complète ces outils avec des outils écrits en tenant compte des phases de construction." #. type: cindex -#: guix-git/doc/guix.texi:9306 +#: guix-git/doc/guix.texi:9441 #, no-wrap msgid "build phases, modifying" msgstr "phases de construction, modifier" #. type: deffn -#: guix-git/doc/guix.texi:9307 +#: guix-git/doc/guix.texi:9442 #, no-wrap msgid "{Scheme Syntax} modify-phases @var{phases} @var{clause}@dots{}" msgstr "{Syntaxe Scheme} modify-phases @var{phases} @var{clause}@dots{}" #. type: deffn -#: guix-git/doc/guix.texi:9310 +#: guix-git/doc/guix.texi:9445 msgid "Modify @var{phases} sequentially as per each @var{clause}, which may have one of the following forms:" msgstr "Modifie @var{phases} séquentiellement selon chaque @var{clause}, qui peut avoir l'une des formes suivantes :" #. type: lisp -#: guix-git/doc/guix.texi:9316 +#: guix-git/doc/guix.texi:9451 #, no-wrap msgid "" "(delete @var{old-phase-name})\n" @@ -18467,17 +18803,17 @@ msgstr "" "(add-after @var{old-phase-name} @var{new-phase-name} @var{new-phase})\n" #. type: deffn -#: guix-git/doc/guix.texi:9320 +#: guix-git/doc/guix.texi:9455 msgid "Where every @var{phase-name} above is an expression evaluating to a symbol, and @var{new-phase} an expression evaluating to a procedure." msgstr "Où chaque @var{phase-name} ci-dessus est une expression s'évaluant en un symbole, et @var{new-phase} une expression évaluant à une procédure." #. type: Plain text -#: guix-git/doc/guix.texi:9331 +#: guix-git/doc/guix.texi:9466 msgid "The example below is taken from the definition of the @code{grep} package. It adds a phase to run after the @code{install} phase, called @code{fix-egrep-and-fgrep}. That phase is a procedure (@code{lambda*} is for anonymous procedures) that takes a @code{#:outputs} keyword argument and ignores extra keyword arguments (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual}, for more on @code{lambda*} and optional and keyword arguments.) The phase uses @code{substitute*} to modify the installed @file{egrep} and @file{fgrep} scripts so that they refer to @code{grep} by its absolute file name:" msgstr "L'exemple ci-dessous est tiré de la définition du paquet @code{grep}. Il ajoute une phase à exécuter après la phase @code{install}, appelée @code{fix-egrep-and-fgrep}. Cette phase est une procédure (@code{lambda*} pour les procédures anonymes) qui prend un paramètre nommé @code{#:outputs} et ignore les paramètres nommés supplémentaires (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual}, pour en savoir plus sur @code{lambda*} et les arguments optionnels et nommés). La phase utilise @code{substitute*} pour modifier les scripts @file{egrep} et @file{fgrep} installés afin qu'ils se réfèrent à @code{grep} par son nom de fichier absolu :" #. type: lisp -#: guix-git/doc/guix.texi:9345 +#: guix-git/doc/guix.texi:9480 #, no-wrap msgid "" "(modify-phases %standard-phases\n" @@ -18507,12 +18843,12 @@ msgstr "" " #t))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:9352 +#: guix-git/doc/guix.texi:9487 msgid "In the example below, phases are modified in two ways: the standard @code{configure} phase is deleted, presumably because the package does not have a @file{configure} script or anything similar, and the default @code{install} phase is replaced by one that manually copies the executable files to be installed:" msgstr "Dans l'exemple ci-dessous, les phases sont modifiées de deux façons : la phase standard @code{configure} est supprimée, vraisemblablement parce que le paquet n'a pas de script @file{configure} ou quelque chose de similaire, et la phase par défaut @code{install} est remplacée par une phase qui copie manuellement les fichiers exécutables à installer :" #. type: lisp -#: guix-git/doc/guix.texi:9365 +#: guix-git/doc/guix.texi:9500 #, no-wrap msgid "" "(modify-phases %standard-phases\n" @@ -18540,332 +18876,573 @@ msgstr "" " #t))))\n" #. type: cindex -#: guix-git/doc/guix.texi:9373 +#: guix-git/doc/guix.texi:9507 +#, fuzzy, no-wrap +#| msgid "search paths" +msgid "search path" +msgstr "chemins de recherche" + +#. type: Plain text +#: guix-git/doc/guix.texi:9514 +msgid "Many programs and libraries look for input data in a @dfn{search path}, a list of directories: shells like Bash look for executables in the command search path, a C compiler looks for @file{.h} files in its header search path, the Python interpreter looks for @file{.py} files in its search path, the spell checker has a search path for dictionaries, and so on." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9522 +msgid "Search paths can usually be defined or overridden @i{via} environment variables (@pxref{Environment Variables,,, libc, The GNU C Library Reference Manual}). For example, the search paths mentioned above can be changed by defining the @env{PATH}, @env{C_INCLUDE_PATH}, @env{PYTHONPATH} (or @env{GUIX_PYTHONPATH}), and @env{DICPATH} environment variables---you know, all these something-PATH variables that you need to get right or things ``won't be found''." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9532 +msgid "You may have noticed from the command line that Guix ``knows'' which search path environment variables should be defined, and how. When you install packages in your default profile, the file @file{~/.guix-profile/etc/profile} is created, which you can ``source'' from the shell to set those variables. Likewise, if you ask @command{guix shell} to create an environment containing Python and NumPy, a Python library, and if you pass it the @option{--search-paths} option, it will tell you about @env{PATH} and @env{GUIX_PYTHONPATH} (@pxref{Invoking guix shell}):" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9537 +#, no-wrap +msgid "" +"$ guix shell python python-numpy --pure --search-paths\n" +"export PATH=\"/gnu/store/@dots{}-profile/bin\"\n" +"export GUIX_PYTHONPATH=\"/gnu/store/@dots{}-profile/lib/python3.9/site-packages\"\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9541 +msgid "When you omit @option{--search-paths}, it defines these environment variables right away, such that Python can readily find NumPy:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9550 +#, no-wrap +msgid "" +"$ guix shell python python-numpy -- python3\n" +"Python 3.9.6 (default, Jan 1 1970, 00:00:01)\n" +"[GCC 10.3.0] on linux\n" +"Type \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n" +">>> import numpy\n" +">>> numpy.version.version\n" +"'1.20.3'\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9555 +msgid "For this to work, the definition of the @code{python} package @emph{declares} the search path it cares about and its associated environment variable, @env{GUIX_PYTHONPATH}. It looks like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9565 +#, no-wrap +msgid "" +"(package\n" +" (name \"python\")\n" +" (version \"3.9.9\")\n" +" ;; some fields omitted...\n" +" (native-search-paths\n" +" (list (search-path-specification\n" +" (variable \"GUIX_PYTHONPATH\")\n" +" (files (list \"lib/python/3.9/site-packages\"))))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9580 +msgid "What this @code{native-search-paths} field says is that, when the @code{python} package is used, the @env{GUIX_PYTHONPATH} environment variable must be defined to include all the @file{lib/python/3.9/site-packages} sub-directories encountered in its environment. (The @code{native-} bit means that, if we are in a cross-compilation environment, only native inputs may be added to the search path; @pxref{package Reference, @code{search-paths}}.) In the NumPy example above, the profile where @code{python} appears contains exactly one such sub-directory, and @env{GUIX_PYTHONPATH} is set to that. When there are several @file{lib/python/3.9/site-packages}---this is the case in package build environments---they are all added to @env{GUIX_PYTHONPATH}, separated by colons (@code{:})." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9587 +msgid "Notice that @env{GUIX_PYTHONPATH} is specified as part of the definition of the @code{python} package, and @emph{not} as part of that of @code{python-numpy}. This is because this environment variable ``belongs'' to Python, not NumPy: Python actually reads the value of that variable and honors it." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9591 +msgid "Corollary: if you create a profile that does not contain @code{python}, @code{GUIX_PYTHONPATH} will @emph{not} be defined, even if it contains packages that provide @file{.py} files:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9595 +#, no-wrap +msgid "" +"$ guix shell python-numpy --search-paths --pure\n" +"export PATH=\"/gnu/store/@dots{}-profile/bin\"\n" +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9599 +msgid "This makes a lot of sense if we look at this profile in isolation: no software in this profile would read @env{GUIX_PYTHONPATH}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9609 +msgid "Of course, there are many variations on that theme: some packages honor more than one search path, some use separators other than colon, some accumulate several directories in their search path, and so on. A more complex example is the search path of libxml2: the value of the @env{XML_CATALOG_FILES} environment variable is space-separated, it must contain a list of @file{catalog.xml} files (not directories), which are to be found in @file{xml} sub-directories---nothing less. The search path specification looks like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9621 +#, no-wrap +msgid "" +"(package\n" +" (name \"libxml2\")\n" +" ;; some fields omitted\n" +" (native-search-paths\n" +" (list (search-path-specification\n" +" (variable \"XML_CATALOG_FILES\")\n" +" (separator \" \")\n" +" (files '(\"xml\"))\n" +" (file-pattern \"^catalog\\\\.xml$\")\n" +" (file-type 'regular)))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9624 +msgid "Worry not, search path specifications are usually not this tricky." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9628 +msgid "The @code{(guix search-paths)} module defines the data type of search path specifications and a number of helper procedures. Below is the reference of search path specifications." +msgstr "" + +#. type: deftp +#: guix-git/doc/guix.texi:9629 +#, fuzzy, no-wrap +#| msgid "{Data Type} avahi-configuration" +msgid "{Data Type} search-path-specification" +msgstr "{Type de données} avahi-configuration" + +#. type: deftp +#: guix-git/doc/guix.texi:9631 +#, fuzzy +#| msgid "This is the data type for the NTP service configuration." +msgid "The data type for search path specifications." +msgstr "C'est le type de données représentant la configuration du service NTP." + +#. type: code{#1} +#: guix-git/doc/guix.texi:9633 +#, fuzzy, no-wrap +#| msgid "iptables" +msgid "variable" +msgstr "iptables" + +#. type: table +#: guix-git/doc/guix.texi:9635 +#, fuzzy +#| msgid "Passes the specified environment variable(s) to child processes; a list of strings." +msgid "The name of the environment variable for this search path (a string)." +msgstr "Passe les variables d'environnement spécifiées aux processus fils ; une liste de chaînes de caractères." + +#. type: code{#1} +#: guix-git/doc/guix.texi:9636 guix-git/doc/guix.texi:17482 +#, no-wrap +msgid "files" +msgstr "files" + +#. type: table +#: guix-git/doc/guix.texi:9639 +#, fuzzy +#| msgid "A list of command-line flags that should be passed to the @code{patch} command." +msgid "The list of sub-directories (strings) that should be added to the search path." +msgstr "Une liste de drapeaux à passer à la commande @code{patch}." + +#. type: item +#: guix-git/doc/guix.texi:9640 +#, fuzzy, no-wrap +#| msgid "@code{secret} (default: @code{\"\"})" +msgid "@code{separator} (default: @code{\":\"})" +msgstr "@code{secret} (par défaut : @code{\"\"})" + +#. type: table +#: guix-git/doc/guix.texi:9642 +msgid "The string used to separate search path components." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9650 +msgid "As a special case, a @code{separator} value of @code{#f} specifies a ``single-component search path''---in other words, a search path that cannot contain more than one element. This is useful in some cases, such as the @code{SSL_CERT_DIR} variable (honored by OpenSSL, cURL, and a few other packages) or the @code{ASPELL_DICT_DIR} variable (honored by the GNU Aspell spell checker), both of which must point to a single directory." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9651 +#, fuzzy, no-wrap +#| msgid "@code{type} (default: @code{'server})" +msgid "@code{file-type} (default: @code{'directory})" +msgstr "@code{type} (par défaut : @code{'server})" + +#. type: table +#: guix-git/doc/guix.texi:9655 +msgid "The type of file being matched---@code{'directory} or @code{'regular}, though it can be any symbol returned by @code{stat:type} (@pxref{File System, @code{stat},, guile, GNU Guile Reference Manual})." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9658 +msgid "In the libxml2 example above, we would match regular files; in the Python example, we would match directories." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9659 +#, fuzzy, no-wrap +#| msgid "@code{unsafe-pattern} (default: @code{#f})" +msgid "@code{file-pattern} (default: @code{#f})" +msgstr "@code{unsafe-pattern} (par défaut : @code{#f})" + +#. type: table +#: guix-git/doc/guix.texi:9663 +msgid "This must be either @code{#f} or a regular expression specifying files to be matched @emph{within} the sub-directories specified by the @code{files} field." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9665 +msgid "Again, the libxml2 example shows a situation where this is needed." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9671 +msgid "How do you turn search path specifications on one hand and a bunch of directories on the other hand in a set of environment variable definitions? That's the job of @code{evaluate-search-paths}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9672 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} inferior-package-search-paths @var{package}" +msgid "{Scheme Procedure} evaluate-search-paths @var{search-paths} @" +msgstr "{Procédure Scheme} inferior-package-search-paths @var{package}" + +#. type: deffn +#: guix-git/doc/guix.texi:9678 +msgid "@var{directories} [@var{getenv}] Evaluate @var{search-paths}, a list of search-path specifications, for @var{directories}, a list of directory names, and return a list of specification/value pairs. Use @var{getenv} to determine the current settings and report only settings not already effective." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9682 +msgid "The @code{(guix profiles)} provides a higher-level helper procedure, @code{load-profile}, that sets the environment variables of a profile." +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:9687 #, no-wrap msgid "store items" msgstr "éléments du dépôt" #. type: cindex -#: guix-git/doc/guix.texi:9374 +#: guix-git/doc/guix.texi:9688 #, no-wrap msgid "store paths" msgstr "chemins dans le dépôt" #. type: Plain text -#: guix-git/doc/guix.texi:9385 +#: guix-git/doc/guix.texi:9699 msgid "Conceptually, the @dfn{store} is the place where derivations that have been built successfully are stored---by default, @file{/gnu/store}. Sub-directories in the store are referred to as @dfn{store items} or sometimes @dfn{store paths}. The store has an associated database that contains information such as the store paths referred to by each store path, and the list of @emph{valid} store items---results of successful builds. This database resides in @file{@var{localstatedir}/guix/db}, where @var{localstatedir} is the state directory specified @i{via} @option{--localstatedir} at configure time, usually @file{/var}." msgstr "Conceptuellement, le @dfn{dépôt} est l'endroit où les dérivations qui ont bien été construites sont stockées — par défaut, @file{/gnu/store}. Les sous-répertoires dans le dépôt s'appellent des @dfn{éléments du dépôt} ou parfois des @dfn{chemins du dépôt}. Le dépôt a une base de données associée qui contient des informations comme les chemins du dépôt auxquels se réfèrent chaque chemin du dépôt et la liste des éléments du dépôt @emph{valides} — les résultats d'une construction réussie. Cette base de données se trouve dans @file{@var{localstatedir}/guix/db} où @var{localstatedir} est le répertoire d'états spécifié @i{via} @option {--localstatedir} à la configuration, typiquement @file{/var}." #. type: Plain text -#: guix-git/doc/guix.texi:9390 +#: guix-git/doc/guix.texi:9704 msgid "The store is @emph{always} accessed by the daemon on behalf of its clients (@pxref{Invoking guix-daemon}). To manipulate the store, clients connect to the daemon over a Unix-domain socket, send requests to it, and read the result---these are remote procedure calls, or RPCs." msgstr "C'est @emph{toujours} le démon qui accède au dépôt pour le compte de ses clients (@pxref{Invoking guix-daemon}). Pour manipuler le dépôt, les clients se connectent au démon par un socket Unix-domain, envoient une requête dessus et lisent le résultat — ce sont des appels de procédures distantes, ou RPC." #. type: quotation -#: guix-git/doc/guix.texi:9395 +#: guix-git/doc/guix.texi:9709 msgid "Users must @emph{never} modify files under @file{/gnu/store} directly. This would lead to inconsistencies and break the immutability assumptions of Guix's functional model (@pxref{Introduction})." msgstr "Les utilisateurs ne doivent @emph{jamais} modifier les fichiers dans @file{/gnu/store} directement. Cela entraînerait des incohérences et casserait l'hypothèse d'immutabilité du modèle fonctionnel de Guix (@pxref{Introduction})." #. type: quotation -#: guix-git/doc/guix.texi:9399 +#: guix-git/doc/guix.texi:9713 msgid "@xref{Invoking guix gc, @command{guix gc --verify}}, for information on how to check the integrity of the store and attempt recovery from accidental modifications." msgstr "@xref{Invoking guix gc, @command{guix gc --verify}}, pour des informations sur la manière de vérifier l'intégrité du dépôt et d'essayer de réparer des modifications accidentelles." #. type: Plain text -#: guix-git/doc/guix.texi:9406 +#: guix-git/doc/guix.texi:9720 msgid "The @code{(guix store)} module provides procedures to connect to the daemon, and to perform RPCs. These are described below. By default, @code{open-connection}, and thus all the @command{guix} commands, connect to the local daemon or to the URI specified by the @env{GUIX_DAEMON_SOCKET} environment variable." msgstr "Le module @code{(guix store)} fournit des procédures pour se connecter au démon et pour effectuer des RPCs. Elles sont décrites plus bas. Par défaut, @code{open-connection}, et donc toutes les commandes @command{guix} se connectent au démon local ou à l'URI spécifiée par la variable d'environnement @env{GUIX_DAEMON_SOCKET}." #. type: defvr -#: guix-git/doc/guix.texi:9407 +#: guix-git/doc/guix.texi:9721 #, no-wrap msgid "{Environment Variable} GUIX_DAEMON_SOCKET" msgstr "{Variable d'environnement} GUIX_DAEMON_SOCKET" #. type: defvr -#: guix-git/doc/guix.texi:9412 +#: guix-git/doc/guix.texi:9726 msgid "When set, the value of this variable should be a file name or a URI designating the daemon endpoint. When it is a file name, it denotes a Unix-domain socket to connect to. In addition to file names, the supported URI schemes are:" msgstr "Lorsqu'elle est initialisée, la valeur de cette variable devrait être un nom de fichier ou une URI qui désigne l'extrémité du démon. Lorsque c'est un nom de fichier, il dénote un socket Unix-domain où se connecter. En plus des noms de fichiers, les schémas d'URI supportés sont :" #. type: code{#1} -#: guix-git/doc/guix.texi:9414 guix-git/doc/guix.texi:26183 +#: guix-git/doc/guix.texi:9728 guix-git/doc/guix.texi:26520 #, no-wrap msgid "file" msgstr "file" #. type: itemx -#: guix-git/doc/guix.texi:9415 +#: guix-git/doc/guix.texi:9729 #, no-wrap msgid "unix" msgstr "unix" #. type: table -#: guix-git/doc/guix.texi:9419 +#: guix-git/doc/guix.texi:9733 msgid "These are for Unix-domain sockets. @code{file:///var/guix/daemon-socket/socket} is equivalent to @file{/var/guix/daemon-socket/socket}." msgstr "Pour les sockets Unix-domain. @code{file:///var/guix/daemon-socket/socket} est équivalent à @file{/var/guix/daemon-socket/socket}." #. type: table -#: guix-git/doc/guix.texi:9428 +#: guix-git/doc/guix.texi:9742 msgid "These URIs denote connections over TCP/IP, without encryption nor authentication of the remote host. The URI must specify the host name and optionally a port number (by default port 44146 is used):" msgstr "Ces URI dénotent des connexions par TCP/IP, sans chiffrement ni authentification de l'hôte distant. L'URI doit spécifier le nom d'hôte et éventuellement un numéro de port (par défaut 44146) :" #. type: example -#: guix-git/doc/guix.texi:9431 +#: guix-git/doc/guix.texi:9745 #, no-wrap msgid "guix://master.guix.example.org:1234\n" msgstr "guix://master.guix.example.org:1234\n" #. type: table -#: guix-git/doc/guix.texi:9436 +#: guix-git/doc/guix.texi:9750 msgid "This setup is suitable on local networks, such as clusters, where only trusted nodes may connect to the build daemon at @code{master.guix.example.org}." msgstr "Ce paramétrage est adapté aux réseaux locaux, comme dans le cas de grappes de serveurs, où seuls des noms de confiance peuvent se connecter au démon de construction sur @code{master.guix.example.org}." #. type: table -#: guix-git/doc/guix.texi:9440 +#: guix-git/doc/guix.texi:9754 msgid "The @option{--listen} option of @command{guix-daemon} can be used to instruct it to listen for TCP connections (@pxref{Invoking guix-daemon, @option{--listen}})." msgstr "L'option @code{--listen} de @command{guix-daemon} peut être utilisé pour lui dire d'écouter les connexions TCP (@pxref{Invoquer guix-daemon, @option{--listen}})." #. type: item -#: guix-git/doc/guix.texi:9441 +#: guix-git/doc/guix.texi:9755 #, no-wrap msgid "ssh" msgstr "ssh" #. type: cindex -#: guix-git/doc/guix.texi:9442 +#: guix-git/doc/guix.texi:9756 #, no-wrap msgid "SSH access to build daemons" msgstr "Accès SSH au démon de construction" #. type: table -#: guix-git/doc/guix.texi:9448 +#: guix-git/doc/guix.texi:9762 msgid "These URIs allow you to connect to a remote daemon over SSH@. This feature requires Guile-SSH (@pxref{Requirements}) and a working @command{guile} binary in @env{PATH} on the destination machine. It supports public key and GSSAPI authentication. A typical URL might look like this:" msgstr "Ces URI vous permettent de vous connecter à un démon distant via SSH@. Cette fonctionnalité nécessite Guile-SSH (@pxref{Requirements}) et un binaire @command{guile} fonctionnel dans @env{PATH} sur la machine de destination. Elle prend en charge l'authentification par clé publique et GSSAPI. Une URL typique pourrait ressembler à ceci :" #. type: example -#: guix-git/doc/guix.texi:9451 +#: guix-git/doc/guix.texi:9765 #, no-wrap msgid "ssh://charlie@@guix.example.org:22\n" msgstr "ssh://charlie@@guix.example.org:22\n" #. type: table -#: guix-git/doc/guix.texi:9455 +#: guix-git/doc/guix.texi:9769 msgid "As for @command{guix copy}, the usual OpenSSH client configuration files are honored (@pxref{Invoking guix copy})." msgstr "Comme pour @command{guix copy}, les fichiers de configuration du client OpenSSH sont respectés (@pxref{Invoking guix copy})." #. type: defvr -#: guix-git/doc/guix.texi:9458 +#: guix-git/doc/guix.texi:9772 msgid "Additional URI schemes may be supported in the future." msgstr "Des schémas d'URI supplémentaires pourraient être supportés dans le futur." #. type: quotation -#: guix-git/doc/guix.texi:9465 +#: guix-git/doc/guix.texi:9779 msgid "The ability to connect to remote build daemons is considered experimental as of @value{VERSION}. Please get in touch with us to share any problems or suggestions you may have (@pxref{Contributing})." msgstr "La capacité de se connecter à un démon de construction distant est considéré comme expérimental à la version @value{VERSION}. Contactez-nous pour partager vos problèmes ou des suggestions que vous pourriez avoir (@pxref{Contributing})." #. type: deffn -#: guix-git/doc/guix.texi:9468 +#: guix-git/doc/guix.texi:9782 #, no-wrap msgid "{Scheme Procedure} open-connection [@var{uri}] [#:reserve-space? #t]" msgstr "{Procédure Scheme} open-connection [@var{uri}] [#:reserve-space? #t]" #. type: deffn -#: guix-git/doc/guix.texi:9473 +#: guix-git/doc/guix.texi:9787 msgid "Connect to the daemon over the Unix-domain socket at @var{uri} (a string). When @var{reserve-space?} is true, instruct it to reserve a little bit of extra space on the file system so that the garbage collector can still operate should the disk become full. Return a server object." msgstr "Se connecte au démon à travers le socket Unix-domain à @var{uri} (une chaîne de caractères). Lorsque @var{reserve-space?} est vrai, cela demande de réserver un peu de place supplémentaire sur le système de fichiers pour que le ramasse-miette puisse opérer au cas où le disque serait plein. Renvoie un objet serveur." #. type: deffn -#: guix-git/doc/guix.texi:9476 +#: guix-git/doc/guix.texi:9790 msgid "@var{file} defaults to @code{%default-socket-path}, which is the normal location given the options that were passed to @command{configure}." msgstr "@var{file} prend par défaut la valeur @code{%default-socket-path}, qui est l'emplacement normal compte tenu des options qui ont été passées à @command{configure}." #. type: deffn -#: guix-git/doc/guix.texi:9478 +#: guix-git/doc/guix.texi:9792 #, no-wrap msgid "{Scheme Procedure} close-connection @var{server}" msgstr "{Procédure Scheme} close-connection @var{server}" #. type: deffn -#: guix-git/doc/guix.texi:9480 +#: guix-git/doc/guix.texi:9794 msgid "Close the connection to @var{server}." msgstr "Ferme la connexion au @var{serveur}." #. type: defvr -#: guix-git/doc/guix.texi:9482 +#: guix-git/doc/guix.texi:9796 #, no-wrap msgid "{Scheme Variable} current-build-output-port" msgstr "{Variable Scheme} current-build-output-port" #. type: defvr -#: guix-git/doc/guix.texi:9485 +#: guix-git/doc/guix.texi:9799 msgid "This variable is bound to a SRFI-39 parameter, which refers to the port where build and error logs sent by the daemon should be written." msgstr "Cette variable est liée à un paramètre SRFI-39, qui se réfère au port où les journaux de construction et d'erreur envoyés par le démon devraient être écrits." #. type: Plain text -#: guix-git/doc/guix.texi:9489 +#: guix-git/doc/guix.texi:9803 msgid "Procedures that make RPCs all take a server object as their first argument." msgstr "Les procédures qui font des RPC prennent toutes un objet serveur comme premier argument." #. type: deffn -#: guix-git/doc/guix.texi:9490 +#: guix-git/doc/guix.texi:9804 #, no-wrap msgid "{Scheme Procedure} valid-path? @var{server} @var{path}" msgstr "{Procédure Scheme} valid-path? @var{server} @var{path}" #. type: cindex -#: guix-git/doc/guix.texi:9491 +#: guix-git/doc/guix.texi:9805 #, no-wrap msgid "invalid store items" msgstr "éléments du dépôt invalides" #. type: deffn -#: guix-git/doc/guix.texi:9496 +#: guix-git/doc/guix.texi:9810 msgid "Return @code{#t} when @var{path} designates a valid store item and @code{#f} otherwise (an invalid item may exist on disk but still be invalid, for instance because it is the result of an aborted or failed build)." msgstr "Renvoie @code{#t} lorsque @var{path} désigne un élément valide du dépôt et @code{#f} sinon (un élément invalide peut exister sur le disque mais être toujours invalide, par exemple parce qu'il est le résultat d'une construction avortée ou échouée)." #. type: deffn -#: guix-git/doc/guix.texi:9499 +#: guix-git/doc/guix.texi:9813 msgid "A @code{&store-protocol-error} condition is raised if @var{path} is not prefixed by the store directory (@file{/gnu/store})." msgstr "Une condition @code{&store-protocol-error} est levée si @var{path} n'est pas préfixée par le répertoire du dépôt (@file{/gnu/store})." #. type: deffn -#: guix-git/doc/guix.texi:9501 +#: guix-git/doc/guix.texi:9815 #, no-wrap msgid "{Scheme Procedure} add-text-to-store @var{server} @var{name} @var{text} [@var{references}]" msgstr "{Procédure Scheme} add-text-to-store @var{server} @var{name} @var{text} [@var{references}]" #. type: deffn -#: guix-git/doc/guix.texi:9505 +#: guix-git/doc/guix.texi:9819 msgid "Add @var{text} under file @var{name} in the store, and return its store path. @var{references} is the list of store paths referred to by the resulting store path." msgstr "Ajoute @var{text} dans le fichier @var{name} dans le dépôt et renvoie son chemin. @var{references} est la liste des chemins du dépôt référencés par le chemin du dépôt qui en résulte." #. type: deffn -#: guix-git/doc/guix.texi:9507 +#: guix-git/doc/guix.texi:9821 #, no-wrap msgid "{Scheme Procedure} build-derivations @var{store} @var{derivations} @" msgstr "{Procédure Scheme} build-derivations @var{store} @var{derivations}" #. type: deffn -#: guix-git/doc/guix.texi:9512 +#: guix-git/doc/guix.texi:9826 msgid "[@var{mode}] Build @var{derivations}, a list of @code{} objects, @file{.drv} file names, or derivation/output pairs, using the specified @var{mode}---@code{(build-mode normal)} by default." msgstr "[@var{mode}] Construit @var{derivations}, une liste d'objets @code{}, de noms de fichiers @file{.drv}, ou de paires dérivation/sortie, en utilisant le @var{mode}---@code{(build-mode normal)} spécifié par défaut." #. type: Plain text -#: guix-git/doc/guix.texi:9518 +#: guix-git/doc/guix.texi:9832 msgid "Note that the @code{(guix monads)} module provides a monad as well as monadic versions of the above procedures, with the goal of making it more convenient to work with code that accesses the store (@pxref{The Store Monad})." msgstr "Remarque que le module @code{(guix monads)} fournit une monade ainsi que des version monadiques des procédures précédentes, avec le but de rendre plus facile de travailler avec le code qui accède au dépôt (@pxref{The Store Monad})." #. type: i{#1} -#: guix-git/doc/guix.texi:9521 +#: guix-git/doc/guix.texi:9835 msgid "This section is currently incomplete." msgstr "Cette section est actuellement incomplète." #. type: cindex -#: guix-git/doc/guix.texi:9525 +#: guix-git/doc/guix.texi:9839 #, no-wrap msgid "derivations" msgstr "dérivations" #. type: Plain text -#: guix-git/doc/guix.texi:9529 +#: guix-git/doc/guix.texi:9843 msgid "Low-level build actions and the environment in which they are performed are represented by @dfn{derivations}. A derivation contains the following pieces of information:" msgstr "Les actions de construction à bas-niveau et l'environnement dans lequel elles sont effectuées sont représentés par des @dfn{dérivations}. Une dérivation contient cet ensemble d'informations :" #. type: itemize -#: guix-git/doc/guix.texi:9534 +#: guix-git/doc/guix.texi:9848 msgid "The outputs of the derivation---derivations produce at least one file or directory in the store, but may produce more." msgstr "Les sorties de la dérivation — les dérivations produisent au moins un fichier ou répertoire dans le dépôt, mais peuvent en produire plus." #. type: cindex -#: guix-git/doc/guix.texi:9536 +#: guix-git/doc/guix.texi:9850 #, no-wrap msgid "build-time dependencies" msgstr "dépendances à la construction" #. type: cindex -#: guix-git/doc/guix.texi:9537 +#: guix-git/doc/guix.texi:9851 #, no-wrap msgid "dependencies, build-time" msgstr "construction, dépendances" #. type: itemize -#: guix-git/doc/guix.texi:9541 +#: guix-git/doc/guix.texi:9855 msgid "The inputs of the derivations---i.e., its build-time dependencies---which may be other derivations or plain files in the store (patches, build scripts, etc.)." msgstr "Les entrées des dérivations - c'est-à-dire leurs dépendances de temps de construction - qui peuvent être d'autres dérivations ou des fichiers simples dans le dépôt (patchs, scripts de construction, etc.)." #. type: itemize -#: guix-git/doc/guix.texi:9544 +#: guix-git/doc/guix.texi:9858 msgid "The system type targeted by the derivation---e.g., @code{x86_64-linux}." msgstr "Le type de système ciblé par la dérivation — p.ex.@: @code{x86_64-linux}." #. type: itemize -#: guix-git/doc/guix.texi:9548 +#: guix-git/doc/guix.texi:9862 msgid "The file name of a build script in the store, along with the arguments to be passed." msgstr "Le nom de fichier d'un script de construction dans le dépôt avec les arguments à lui passer." #. type: itemize -#: guix-git/doc/guix.texi:9551 +#: guix-git/doc/guix.texi:9865 msgid "A list of environment variables to be defined." msgstr "Une liste de variables d'environnement à définir." #. type: cindex -#: guix-git/doc/guix.texi:9554 +#: guix-git/doc/guix.texi:9868 #, no-wrap msgid "derivation path" msgstr "chemin de dérivation" #. type: Plain text -#: guix-git/doc/guix.texi:9562 +#: guix-git/doc/guix.texi:9876 msgid "Derivations allow clients of the daemon to communicate build actions to the store. They exist in two forms: as an in-memory representation, both on the client- and daemon-side, and as files in the store whose name end in @file{.drv}---these files are referred to as @dfn{derivation paths}. Derivations paths can be passed to the @code{build-derivations} procedure to perform the build actions they prescribe (@pxref{The Store})." msgstr "Les dérivations permettent aux client du démon de communiquer des actions de construction dans le dépôt. Elles existent sous deux formes : en tant que représentation en mémoire, à la fois côté client et démon, et en tant que fichiers dans le dépôt dont le nom finit par @code{.drv} — on dit que ce sont des @dfn{chemins de dérivations}. Les chemins de dérivations peuvent être passés à la procédure @code{build-derivations} pour effectuer les actions de construction qu'ils prescrivent (@pxref{The Store})." #. type: cindex -#: guix-git/doc/guix.texi:9563 +#: guix-git/doc/guix.texi:9877 #, no-wrap msgid "fixed-output derivations" msgstr "dérivations à sortie fixe" #. type: Plain text -#: guix-git/doc/guix.texi:9570 +#: guix-git/doc/guix.texi:9884 msgid "Operations such as file downloads and version-control checkouts for which the expected content hash is known in advance are modeled as @dfn{fixed-output derivations}. Unlike regular derivations, the outputs of a fixed-output derivation are independent of its inputs---e.g., a source code download produces the same result regardless of the download method and tools being used." msgstr "Des opérations comme le téléchargement de fichiers et la récupération de sources gérés par un logiciel de contrôle de version pour lesquels le hash du contenu est connu à l'avance sont modélisés par des @dfn{dérivations à sortie fixe}. Contrairement aux dérivation habituelles, les sorties d'une dérivation à sortie fixe sont indépendantes de ses entrées — p.ex.@: un code source téléchargé produit le même résultat quelque soit la méthode de téléchargement utilisée." #. type: item -#: guix-git/doc/guix.texi:9571 guix-git/doc/guix.texi:13341 +#: guix-git/doc/guix.texi:9885 guix-git/doc/guix.texi:13698 #, no-wrap msgid "references" msgstr "references" #. type: cindex -#: guix-git/doc/guix.texi:9572 +#: guix-git/doc/guix.texi:9886 #, no-wrap msgid "run-time dependencies" msgstr "dépendances à l'exécution" #. type: cindex -#: guix-git/doc/guix.texi:9573 +#: guix-git/doc/guix.texi:9887 #, no-wrap msgid "dependencies, run-time" msgstr "exécution, dépendances" #. type: Plain text -#: guix-git/doc/guix.texi:9580 +#: guix-git/doc/guix.texi:9894 msgid "The outputs of derivations---i.e., the build results---have a set of @dfn{references}, as reported by the @code{references} RPC or the @command{guix gc --references} command (@pxref{Invoking guix gc}). References are the set of run-time dependencies of the build results. References are a subset of the inputs of the derivation; this subset is automatically computed by the build daemon by scanning all the files in the outputs." msgstr "Les sorties des dérivations — c.-à-d.@: les résultats de la construction — ont un ensemble de @dfn{références}, comme le rapporte le RPC @code{references} ou la commande @command{guix gc --references} (@pxref{Invoking guix gc}). Les références sont l'ensemble des dépendances à l'exécution des résultats de la construction. Les références sont un sous-ensemble des entrées de la dérivation ; ce sous-ensemble est automatiquement calculé par le démon de construction en scannant tous les fichiers dans les sorties." #. type: Plain text -#: guix-git/doc/guix.texi:9585 +#: guix-git/doc/guix.texi:9899 msgid "The @code{(guix derivations)} module provides a representation of derivations as Scheme objects, along with procedures to create and otherwise manipulate derivations. The lowest-level primitive to create a derivation is the @code{derivation} procedure:" msgstr "Le module @code{(guix derivations)} fournit une représentation des dérivations comme des objets Scheme, avec des procédures pour créer et manipuler des dérivations. La primitive de plus bas-niveau pour créer une dérivation est la procédure @code{derivation} :" #. type: deffn -#: guix-git/doc/guix.texi:9586 +#: guix-git/doc/guix.texi:9900 #, no-wrap msgid "{Scheme Procedure} derivation @var{store} @var{name} @var{builder} @" msgstr "{Procédure Scheme} derivation @var{store} @var{name} @var{builder} @" #. type: deffn -#: guix-git/doc/guix.texi:9595 +#: guix-git/doc/guix.texi:9909 msgid "@var{args} [#:outputs '(\"out\")] [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:inputs '()] [#:env-vars '()] @ [#:system (%current-system)] [#:references-graphs #f] @ [#:allowed-references #f] [#:disallowed-references #f] @ [#:leaked-env-vars #f] [#:local-build? #f] @ [#:substitutable? #t] [#:properties '()] Build a derivation with the given arguments, and return the resulting @code{} object." msgstr "" "@var{args} [#:outputs '(\"out\")] [#:hash #f] [#:hash-algo #f] @\n" @@ -18877,47 +19454,47 @@ msgstr "" "Construit une dérivation avec les arguments donnés et renvoie l'objet @code{} obtenu." #. type: deffn -#: guix-git/doc/guix.texi:9602 +#: guix-git/doc/guix.texi:9916 msgid "When @var{hash} and @var{hash-algo} are given, a @dfn{fixed-output derivation} is created---i.e., one whose result is known in advance, such as a file download. If, in addition, @var{recursive?} is true, then that fixed output may be an executable file or a directory and @var{hash} must be the hash of an archive containing this output." msgstr "Lorsque @var{hash} et @var{hash-algo} sont donnés, une @dfn{dérivation à sortie fixe} est créée — c.-à-d.@: une dérivation dont le résultat est connu à l'avance, comme dans le cas du téléchargement d'un fichier. Si, en plus, @var{recursive?} est vrai, alors la sortie fixe peut être un fichier exécutable ou un répertoire et @var{hash} doit être le hash d'une archive contenant la sortie." #. type: deffn -#: guix-git/doc/guix.texi:9607 +#: guix-git/doc/guix.texi:9921 msgid "When @var{references-graphs} is true, it must be a list of file name/store path pairs. In that case, the reference graph of each store path is exported in the build environment in the corresponding file, in a simple text format." msgstr "Lorsque @var{references-graphs} est vrai, il doit s'agir d'une liste de paires de noms de fichiers et de chemins du dépôt. Dans ce cas, le graphe des références de chaque chemin du dépôt est exporté dans l'environnement de construction dans le fichier correspondant, dans un simple format texte." #. type: deffn -#: guix-git/doc/guix.texi:9612 +#: guix-git/doc/guix.texi:9926 msgid "When @var{allowed-references} is true, it must be a list of store items or outputs that the derivation's output may refer to. Likewise, @var{disallowed-references}, if true, must be a list of things the outputs may @emph{not} refer to." msgstr "Lorsque @var{allowed-references} est vrai, il doit s'agir d'une liste d'éléments du dépôt ou de sorties auxquelles la sortie de la dérivations peut faire référence. De même, @var{disallowed-references}, si vrai, doit être une liste de choses que la sortie ne doit @emph{pas} référencer." #. type: deffn -#: guix-git/doc/guix.texi:9619 +#: guix-git/doc/guix.texi:9933 msgid "When @var{leaked-env-vars} is true, it must be a list of strings denoting environment variables that are allowed to ``leak'' from the daemon's environment to the build environment. This is only applicable to fixed-output derivations---i.e., when @var{hash} is true. The main use is to allow variables such as @code{http_proxy} to be passed to derivations that download files." msgstr "Lorsque @var{leaked-env-vars} est vrai, il doit s'agir d'une liste de chaînes de caractères qui désignent les variables d'environnements qui peuvent « fuiter » de l'environnement du démon dans l'environnement de construction. Ce n'est possible que pour les dérivations à sortie fixe — c.-à-d.@: lorsque @var{hash} est vrai. L'utilisation principale est de permettre à des variables comme @code{http_proxy} d'être passées aux dérivations qui téléchargent des fichiers." #. type: deffn -#: guix-git/doc/guix.texi:9624 +#: guix-git/doc/guix.texi:9938 msgid "When @var{local-build?} is true, declare that the derivation is not a good candidate for offloading and should rather be built locally (@pxref{Daemon Offload Setup}). This is the case for small derivations where the costs of data transfers would outweigh the benefits." msgstr "Lorsque @var{local-build?} est vrai, déclare que la dérivation n'est pas un bon candidat pour le déchargement et devrait plutôt être construit localement (@pxref{Daemon Offload Setup}). C'est le cas des petites dérivations où le coût du transfert de données est plus important que les bénéfices." #. type: deffn -#: guix-git/doc/guix.texi:9629 +#: guix-git/doc/guix.texi:9943 msgid "When @var{substitutable?} is false, declare that substitutes of the derivation's output should not be used (@pxref{Substitutes}). This is useful, for instance, when building packages that capture details of the host CPU instruction set." msgstr "Lorsque que @var{substitutable?} est faux, déclare que les substituts de la sortie de la dérivation ne devraient pas être utilisés (@pxref{Substituts}). Cela est utile par exemple pour construire des paquets qui utilisent des détails du jeu d'instruction du CPU hôte." #. type: deffn -#: guix-git/doc/guix.texi:9632 +#: guix-git/doc/guix.texi:9946 msgid "@var{properties} must be an association list describing ``properties'' of the derivation. It is kept as-is, uninterpreted, in the derivation." msgstr "@var{properties} doit être une liste d'association décrivant les « propriétés » de la dérivation. Elle est gardée telle-quelle, sans être interprétée, dans la dérivation." #. type: Plain text -#: guix-git/doc/guix.texi:9638 +#: guix-git/doc/guix.texi:9952 msgid "Here's an example with a shell script as its builder, assuming @var{store} is an open connection to the daemon, and @var{bash} points to a Bash executable in the store:" msgstr "Voici un exemple avec un script shell comme constructeur, en supposant que @var{store} est une connexion ouverte au démon et @var{bash} pointe vers un exécutable Bash dans le dépôt :" #. type: lisp -#: guix-git/doc/guix.texi:9643 +#: guix-git/doc/guix.texi:9957 #, no-wrap msgid "" "(use-modules (guix utils)\n" @@ -18931,7 +19508,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:9652 +#: guix-git/doc/guix.texi:9966 #, no-wrap msgid "" "(let ((builder ; add the Bash script to the store\n" @@ -18953,23 +19530,23 @@ msgstr "" "@result{} # /gnu/store/@dots{}-toto>\n" #. type: Plain text -#: guix-git/doc/guix.texi:9659 +#: guix-git/doc/guix.texi:9973 msgid "As can be guessed, this primitive is cumbersome to use directly. A better approach is to write build scripts in Scheme, of course! The best course of action for that is to write the build code as a ``G-expression'', and to pass it to @code{gexp->derivation}. For more information, @pxref{G-Expressions}." msgstr "Comme on pourrait s'en douter, cette primitive est difficile à utiliser directement. Une meilleure approche est d'écrire les scripts de construction en Scheme, bien sur ! Le mieux à faire pour cela est d'écrire le code de construction comme une « G-expression » et de la passer à @code{gexp->derivation}. Pour plus d'informations, @pxref{G-Expressions}." #. type: Plain text -#: guix-git/doc/guix.texi:9664 +#: guix-git/doc/guix.texi:9978 msgid "Once upon a time, @code{gexp->derivation} did not exist and constructing derivations with build code written in Scheme was achieved with @code{build-expression->derivation}, documented below. This procedure is now deprecated in favor of the much nicer @code{gexp->derivation}." msgstr "Il fut un temps où @code{gexp->derivation} n'existait pas et où construire une dérivation donc le code de construction était écrit en Scheme se faisait avec @code{build-expression->derivation}, documenté plus bas. Cette procédure est maintenant obsolète, remplacée par @code{gexp->derivation} qui est meilleure." #. type: deffn -#: guix-git/doc/guix.texi:9665 +#: guix-git/doc/guix.texi:9979 #, no-wrap msgid "{Scheme Procedure} build-expression->derivation @var{store} @" msgstr "{Procédure Scheme} build-expression->derivation @var{store} @" #. type: deffn -#: guix-git/doc/guix.texi:9681 +#: guix-git/doc/guix.texi:9995 msgid "@var{name} @var{exp} @ [#:system (%current-system)] [#:inputs '()] @ [#:outputs '(\"out\")] [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:env-vars '()] [#:modules '()] @ [#:references-graphs #f] [#:allowed-references #f] @ [#:disallowed-references #f] @ [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f] Return a derivation that executes Scheme expression @var{exp} as a builder for derivation @var{name}. @var{inputs} must be a list of @code{(name drv-path sub-drv)} tuples; when @var{sub-drv} is omitted, @code{\"out\"} is assumed. @var{modules} is a list of names of Guile modules from the current search path to be copied in the store, compiled, and made available in the load path during the execution of @var{exp}---e.g., @code{((guix build utils) (guix build gnu-build-system))}." msgstr "" "@var{name} @var{exp} @\n" @@ -18982,27 +19559,27 @@ msgstr "" "Renvoie une dérivation qui exécute l'expression Scheme @var{exp} comme un constructeur pour la dérivation @var{name}. @var{inputs} doit être une liste de tuples @code{(name drv-path sub-drv)} ; lorsque @var{sub-drv} est omis, @code{\"out\"} est utilisé. @var{modules} est une liste de noms de modules Guile du chemin de recherche actuel qui seront copiés dans le dépôt, compilés et rendus disponibles dans le chemin de chargement pendant l'exécution de @var{exp} — p.@: ex.@: @code{((guix build utils) (guix build gnu-build-system))}." #. type: deffn -#: guix-git/doc/guix.texi:9689 +#: guix-git/doc/guix.texi:10003 msgid "@var{exp} is evaluated in an environment where @code{%outputs} is bound to a list of output/path pairs, and where @code{%build-inputs} is bound to a list of string/output-path pairs made from @var{inputs}. Optionally, @var{env-vars} is a list of string pairs specifying the name and value of environment variables visible to the builder. The builder terminates by passing the result of @var{exp} to @code{exit}; thus, when @var{exp} returns @code{#f}, the build is considered to have failed." msgstr "@var{exp} est évaluée dans une environnement où @code{%outputs} est lié à une liste de paires de sortie/chemin, et où @code{%build-inputs} est lié à une liste de paires de chaînes de caractères et de chemin de sortie construite à partir de @var{inputs}. Éventuellement, @var{env-vars} est une liste de paires de chaînes de caractères spécifiant le nom et la valeur de variables d'environnement visibles pour le constructeur. Le constructeur termine en passant le résultat de @var{exp} à @code{exit} ; ainsi, lorsque @var{exp} renvoie @code{#f}, la construction est considérée en échec." #. type: deffn -#: guix-git/doc/guix.texi:9693 +#: guix-git/doc/guix.texi:10007 msgid "@var{exp} is built using @var{guile-for-build} (a derivation). When @var{guile-for-build} is omitted or is @code{#f}, the value of the @code{%guile-for-build} fluid is used instead." msgstr "@var{exp} est construite avec @var{guile-for-build} (une dérivation). Lorsque @var{guile-for-build} est omis où est @code{#f}, la valeur du fluide @code{%guile-for-build} est utilisée à la place." #. type: deffn -#: guix-git/doc/guix.texi:9698 +#: guix-git/doc/guix.texi:10012 msgid "See the @code{derivation} procedure for the meaning of @var{references-graphs}, @var{allowed-references}, @var{disallowed-references}, @var{local-build?}, and @var{substitutable?}." msgstr "Voir la procédure @code{derivation} pour la signification de @var{references-graph}, @var{allowed-references}, @var{disallowed-references}, @var{local-build?} et @var{substitutable?}." #. type: Plain text -#: guix-git/doc/guix.texi:9703 +#: guix-git/doc/guix.texi:10017 msgid "Here's an example of a single-output derivation that creates a directory containing one file:" msgstr "Voici un exemple de dérivation à sortie unique qui crée un répertoire avec un fichier :" #. type: lisp -#: guix-git/doc/guix.texi:9711 +#: guix-git/doc/guix.texi:10025 #, no-wrap msgid "" "(let ((builder '(let ((out (assoc-ref %outputs \"out\")))\n" @@ -19022,51 +19599,51 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:9713 +#: guix-git/doc/guix.texi:10027 #, no-wrap msgid "@result{} # @dots{}>\n" msgstr "@result{} # @dots{}>\n" #. type: cindex -#: guix-git/doc/guix.texi:9719 +#: guix-git/doc/guix.texi:10033 #, no-wrap msgid "monad" msgstr "monade" #. type: Plain text -#: guix-git/doc/guix.texi:9725 +#: guix-git/doc/guix.texi:10039 msgid "The procedures that operate on the store described in the previous sections all take an open connection to the build daemon as their first argument. Although the underlying model is functional, they either have side effects or depend on the current state of the store." msgstr "Les procédures qui travaillent sur le dépôt décrites dans les sections précédentes prennent toutes une connexion ouverte au démon de construction comme premier argument. Bien que le modèle sous-jacent soit fonctionnel, elles ont soit des effets de bord, soit dépendent de l'état actuel du dépôt." #. type: Plain text -#: guix-git/doc/guix.texi:9731 +#: guix-git/doc/guix.texi:10045 msgid "The former is inconvenient: the connection to the build daemon has to be carried around in all those functions, making it impossible to compose functions that do not take that parameter with functions that do. The latter can be problematic: since store operations have side effects and/or depend on external state, they have to be properly sequenced." msgstr "Le premier point est embêtant : on doit se balader avec la connexion au démon dans toutes ces fonctions, ce qui rend impossible le fait de composer des fonctions qui ne prennent pas ce paramètre avec des fonctions qui le prennent. Le deuxième point est problématique : comme les opérations sur le dépôt ont des effets de bord ou dépendent d'états externes, elles doivent être enchaînés correctement." #. type: cindex -#: guix-git/doc/guix.texi:9732 +#: guix-git/doc/guix.texi:10046 #, no-wrap msgid "monadic values" msgstr "valeurs monadiques" #. type: cindex -#: guix-git/doc/guix.texi:9733 +#: guix-git/doc/guix.texi:10047 #, no-wrap msgid "monadic functions" msgstr "fonctions monadiques" #. type: Plain text -#: guix-git/doc/guix.texi:9743 +#: guix-git/doc/guix.texi:10057 msgid "This is where the @code{(guix monads)} module comes in. This module provides a framework for working with @dfn{monads}, and a particularly useful monad for our uses, the @dfn{store monad}. Monads are a construct that allows two things: associating ``context'' with values (in our case, the context is the store), and building sequences of computations (here computations include accesses to the store). Values in a monad---values that carry this additional context---are called @dfn{monadic values}; procedures that return such values are called @dfn{monadic procedures}." msgstr "C'est là que le module @code{(guix monads)} arrive à la rescousse. Ce module fournit un cadre pour travailler avec des @dfn{monads}, en particulier une monade très utile pour notre usage, la @dfn{monade du dépôt}. Les monades sont des constructions qui permettent deux choses : associer un « contexte » avec une valeur (dans notre cas, le contexte est le dépôt) et construire une séquence de calculs (ici les calculs comprennent des accès au dépôt). Les valeurs dans une monade — les valeurs qui contiennent ce contexte supplémentaire — sont appelées des @dfn{valeurs monadiques} ; les procédures qui renvoient ce genre de valeur sont appelées des @dfn{procédures monadiques}." #. type: Plain text -#: guix-git/doc/guix.texi:9745 +#: guix-git/doc/guix.texi:10059 msgid "Consider this ``normal'' procedure:" msgstr "Considérez cette procédure « normale » :" #. type: lisp -#: guix-git/doc/guix.texi:9754 +#: guix-git/doc/guix.texi:10068 #, no-wrap msgid "" "(define (sh-symlink store)\n" @@ -19086,12 +19663,12 @@ msgstr "" " `(symlink ,sh %output))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:9758 +#: guix-git/doc/guix.texi:10072 msgid "Using @code{(guix monads)} and @code{(guix gexp)}, it may be rewritten as a monadic function:" msgstr "En utilisant @code{(guix monads)} et @code{(guix gexp)}, on peut la réécrire en une fonction monadique :" #. type: lisp -#: guix-git/doc/guix.texi:9766 +#: guix-git/doc/guix.texi:10080 #, no-wrap msgid "" "(define (sh-symlink)\n" @@ -19109,17 +19686,17 @@ msgstr "" " #$output))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:9773 +#: guix-git/doc/guix.texi:10087 msgid "There are several things to note in the second version: the @code{store} parameter is now implicit and is ``threaded'' in the calls to the @code{package->derivation} and @code{gexp->derivation} monadic procedures, and the monadic value returned by @code{package->derivation} is @dfn{bound} using @code{mlet} instead of plain @code{let}." msgstr "Il y a plusieurs choses à remarquer avec cette deuxième version : le paramètre @code{store} est maintenant implicitement « enfilé » dans les appels aux procédures monadiques @code{package->derivation} et @code{gexp->derivation}, et la valeur monadique renvoyée par @code{package->derivation} est @dfn{liée} avec @code{mlet} plutôt qu'avec un simple @code{let}." #. type: Plain text -#: guix-git/doc/guix.texi:9777 +#: guix-git/doc/guix.texi:10091 msgid "As it turns out, the call to @code{package->derivation} can even be omitted since it will take place implicitly, as we will see later (@pxref{G-Expressions}):" msgstr "Il se trouve que l'appel à @code{package->derivation} peut même être omis puisqu'il aura lieu implicitement, comme nous le verrons plus tard (@pxref{G-Expressions}) :" #. type: lisp -#: guix-git/doc/guix.texi:9783 +#: guix-git/doc/guix.texi:10097 #, no-wrap msgid "" "(define (sh-symlink)\n" @@ -19133,12 +19710,12 @@ msgstr "" " #$output)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:9792 +#: guix-git/doc/guix.texi:10106 msgid "Calling the monadic @code{sh-symlink} has no effect. As someone once said, ``you exit a monad like you exit a building on fire: by running''. So, to exit the monad and get the desired effect, one must use @code{run-with-store}:" msgstr "L'appel à la procédure monadique @code{sh-symlink} n'a aucun effet. Comme on pourrait le dire, « on sort d'une monade comme de la monarchie : en l'exécutant »@footnote{NdT : il y a là un jeu de mot en anglais qui se base sur un double sens de « run », qui peut se traduire par « exécuter » dans ce contexte.}. Donc, pour sortir de la monade et obtenir l'effet escompté, on doit utiliser @code{run-with-store} :" #. type: lisp -#: guix-git/doc/guix.texi:9796 +#: guix-git/doc/guix.texi:10110 #, no-wrap msgid "" "(run-with-store (open-connection) (sh-symlink))\n" @@ -19148,12 +19725,12 @@ msgstr "" "@result{} /gnu/store/...-sh-symlink\n" #. type: Plain text -#: guix-git/doc/guix.texi:9802 +#: guix-git/doc/guix.texi:10116 msgid "Note that the @code{(guix monad-repl)} module extends the Guile REPL with new ``meta-commands'' to make it easier to deal with monadic procedures: @code{run-in-store}, and @code{enter-store-monad}. The former is used to ``run'' a single monadic value through the store:" msgstr "Remarquez que le module @code{(guix monad-repl)} étend la console Guile avec de nouvelles « méta-commandes » pour rendre plus facile la manipulation de procédures monadiques : @code{run-in-store} et @code{enter-store-monad}. La première est utilisée pour « lancer » une seule valeur monadique à travers le dépôt :" #. type: example -#: guix-git/doc/guix.texi:9806 +#: guix-git/doc/guix.texi:10120 #, no-wrap msgid "" "scheme@@(guile-user)> ,run-in-store (package->derivation hello)\n" @@ -19163,12 +19740,12 @@ msgstr "" "$1 = # @dots{}>\n" #. type: Plain text -#: guix-git/doc/guix.texi:9810 +#: guix-git/doc/guix.texi:10124 msgid "The latter enters a recursive REPL, where all the return values are automatically run through the store:" msgstr "La deuxième entre dans une console récursive, où toutes les valeurs de retour sont automatiquement lancées à travers le dépôt :" #. type: example -#: guix-git/doc/guix.texi:9819 +#: guix-git/doc/guix.texi:10133 #, no-wrap msgid "" "scheme@@(guile-user)> ,enter-store-monad\n" @@ -19188,50 +19765,50 @@ msgstr "" "scheme@@(guile-user)>\n" #. type: Plain text -#: guix-git/doc/guix.texi:9824 +#: guix-git/doc/guix.texi:10138 msgid "Note that non-monadic values cannot be returned in the @code{store-monad} REPL." msgstr "Remarquez qu'on ne peut pas renvoyer de valeur non monadique dans la console @code{store-monad}." #. type: Plain text -#: guix-git/doc/guix.texi:9827 +#: guix-git/doc/guix.texi:10141 msgid "The main syntactic forms to deal with monads in general are provided by the @code{(guix monads)} module and are described below." msgstr "Les formes syntaxiques principales pour utiliser des monades en général sont disponibles dans le module @code{(guix monads)} et sont décrites ci-dessous." #. type: deffn -#: guix-git/doc/guix.texi:9828 +#: guix-git/doc/guix.texi:10142 #, no-wrap msgid "{Scheme Syntax} with-monad @var{monad} @var{body} ..." msgstr "{Syntaxe Scheme} with-monad @var{monad} @var{body} ..." #. type: deffn -#: guix-git/doc/guix.texi:9831 +#: guix-git/doc/guix.texi:10145 msgid "Evaluate any @code{>>=} or @code{return} forms in @var{body} as being in @var{monad}." msgstr "Évalue n'importe quelle forme @code{>>=} ou @code{return} dans @var{body} comme une @var{monad}." #. type: deffn -#: guix-git/doc/guix.texi:9833 +#: guix-git/doc/guix.texi:10147 #, no-wrap msgid "{Scheme Syntax} return @var{val}" msgstr "{Syntaxe Scheme} return @var{val}" #. type: deffn -#: guix-git/doc/guix.texi:9835 +#: guix-git/doc/guix.texi:10149 msgid "Return a monadic value that encapsulates @var{val}." msgstr "Renvoie une valeur monadique qui encapsule @var{val}." #. type: deffn -#: guix-git/doc/guix.texi:9837 +#: guix-git/doc/guix.texi:10151 #, no-wrap msgid "{Scheme Syntax} >>= @var{mval} @var{mproc} ..." msgstr "{Syntaxe Scheme} >>= @var{mval} @var{mproc} ..." #. type: deffn -#: guix-git/doc/guix.texi:9844 +#: guix-git/doc/guix.texi:10158 msgid "@dfn{Bind} monadic value @var{mval}, passing its ``contents'' to monadic procedures @var{mproc}@dots{}@footnote{This operation is commonly referred to as ``bind'', but that name denotes an unrelated procedure in Guile. Thus we use this somewhat cryptic symbol inherited from the Haskell language.}. There can be one @var{mproc} or several of them, as in this example:" msgstr "@dfn{Lie} une valeur monadique @var{mval}, en passant son « contenu » aux procédures monadiques @var{mproc}@dots{}@footnote{Cette opération est souvent appelée « bind », mais ce nom dénote une procédure qui n'a rien à voir en Guile. Ainsi, nous empruntons ce symbole quelque peu cryptique au langage Haskell}. Il peut y avoir une ou plusieurs @code{mproc}, comme dans cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:9852 +#: guix-git/doc/guix.texi:10166 #, no-wrap msgid "" "(run-with-state\n" @@ -19251,7 +19828,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:9855 +#: guix-git/doc/guix.texi:10169 #, no-wrap msgid "" "@result{} 4\n" @@ -19261,101 +19838,101 @@ msgstr "" "@result{} some-state\n" #. type: deffn -#: guix-git/doc/guix.texi:9858 +#: guix-git/doc/guix.texi:10172 #, no-wrap msgid "{Scheme Syntax} mlet @var{monad} ((@var{var} @var{mval}) ...) @" msgstr "{Syntaxe Scheme} mlet @var{monad} ((@var{var} @var{mval}) ...) @" #. type: deffn -#: guix-git/doc/guix.texi:9860 +#: guix-git/doc/guix.texi:10174 msgid "@var{body} ..." msgstr "@var{body} ..." #. type: deffnx -#: guix-git/doc/guix.texi:9860 +#: guix-git/doc/guix.texi:10174 #, no-wrap msgid "{Scheme Syntax} mlet* @var{monad} ((@var{var} @var{mval}) ...) @" msgstr "{Syntaxe Scheme} mlet* @var{monad} ((@var{var} @var{mval}) ...) @" #. type: deffn -#: guix-git/doc/guix.texi:9872 +#: guix-git/doc/guix.texi:10186 msgid "@var{body} ... Bind the variables @var{var} to the monadic values @var{mval} in @var{body}, which is a sequence of expressions. As with the bind operator, this can be thought of as ``unpacking'' the raw, non-monadic value ``contained'' in @var{mval} and making @var{var} refer to that raw, non-monadic value within the scope of the @var{body}. The form (@var{var} -> @var{val}) binds @var{var} to the ``normal'' value @var{val}, as per @code{let}. The binding operations occur in sequence from left to right. The last expression of @var{body} must be a monadic expression, and its result will become the result of the @code{mlet} or @code{mlet*} when run in the @var{monad}." msgstr "" "@var{body} ...\n" "Lie les variables @var{var} aux valeurs monadiques @var{mval} dans @var{body}, une séquence d'expressions. Comme avec l'opérateur de liaison, on peut réfléchir comme si on « ouvrait » la valeur non-monadique « contenue » dans @var{mval} et comme si on faisait en sorte que @var{var} se réfère à cette valeur pure, non-monadique, dans la portée de @var{body}. La forme (@var{var} -> @var{val}) lie @var{var} à la valeur « normale » @var{val}, comme @code{let}. L'opération de liaison a lieu en séquence de la gauche vers la droite. La dernière expression de @var{body} doit être une expression monadique et son résultat deviendra le résultat de @code{mlet} ou @code{mlet*} lorsque lancé dans la @var{monad}." #. type: deffn -#: guix-git/doc/guix.texi:9875 +#: guix-git/doc/guix.texi:10189 msgid "@code{mlet*} is to @code{mlet} what @code{let*} is to @code{let} (@pxref{Local Bindings,,, guile, GNU Guile Reference Manual})." msgstr "@code{mlet*} est à @code{mlet} ce que @code{let*} est à @code{let} (@pxref{Local Bindings,,, guile, GNU Guile Reference Manual})." #. type: deffn -#: guix-git/doc/guix.texi:9877 +#: guix-git/doc/guix.texi:10191 #, no-wrap msgid "{Scheme System} mbegin @var{monad} @var{mexp} ..." msgstr "{Système Scheme} mbegin @var{monad} @var{mexp} ..." #. type: deffn -#: guix-git/doc/guix.texi:9881 +#: guix-git/doc/guix.texi:10195 msgid "Bind @var{mexp} and the following monadic expressions in sequence, returning the result of the last expression. Every expression in the sequence must be a monadic expression." msgstr "Lie @var{mexp} et les expressions monadiques suivantes en séquence, et renvoie le résultat de la dernière expression. Chaque expression dans la séquence doit être une expression monadique." #. type: deffn -#: guix-git/doc/guix.texi:9885 +#: guix-git/doc/guix.texi:10199 msgid "This is akin to @code{mlet}, except that the return values of the monadic expressions are ignored. In that sense, it is analogous to @code{begin}, but applied to monadic expressions." msgstr "Cette procédure est similaire à @code{mlet}, sauf que les valeurs de retour des expressions monadiques sont ignorées. Dans ce sens, elle est analogue à @code{begin}, mais appliqué à des expressions monadiques." #. type: deffn -#: guix-git/doc/guix.texi:9887 +#: guix-git/doc/guix.texi:10201 #, no-wrap msgid "{Scheme System} mwhen @var{condition} @var{mexp0} @var{mexp*} ..." msgstr "{Système Scheme} mwhen @var{condition} @var{mexp0} @var{mexp*} ..." #. type: deffn -#: guix-git/doc/guix.texi:9892 +#: guix-git/doc/guix.texi:10206 msgid "When @var{condition} is true, evaluate the sequence of monadic expressions @var{mexp0}..@var{mexp*} as in an @code{mbegin}. When @var{condition} is false, return @code{*unspecified*} in the current monad. Every expression in the sequence must be a monadic expression." msgstr "Lorsque la @var{condition} est vraie, évalue la séquence des expressions monadiques @var{mexp0}..@var{mexp*} comme dans un @code{mbegin}. Lorsque la @var{condition} est fausse, renvoie @code{*unspecified*} dans la monade actuelle. Chaque expression dans la séquence doit être une expression monadique." #. type: deffn -#: guix-git/doc/guix.texi:9894 +#: guix-git/doc/guix.texi:10208 #, no-wrap msgid "{Scheme System} munless @var{condition} @var{mexp0} @var{mexp*} ..." msgstr "{Système Scheme} munless @var{condition} @var{mexp0} @var{mexp*} ..." #. type: deffn -#: guix-git/doc/guix.texi:9899 +#: guix-git/doc/guix.texi:10213 msgid "When @var{condition} is false, evaluate the sequence of monadic expressions @var{mexp0}..@var{mexp*} as in an @code{mbegin}. When @var{condition} is true, return @code{*unspecified*} in the current monad. Every expression in the sequence must be a monadic expression." msgstr "Lorsque la @var{condition} est fausse, évalue la séquence des expressions monadiques @var{mexp0}..@var{mexp*} comme dans un @code{mbegin}. Lorsque la @var{condition} est vraie, renvoie @code{*unspecified*} dans la monade actuelle. Chaque expression dans la séquence doit être une expression monadique." #. type: cindex -#: guix-git/doc/guix.texi:9901 +#: guix-git/doc/guix.texi:10215 #, no-wrap msgid "state monad" msgstr "monade d'état" #. type: Plain text -#: guix-git/doc/guix.texi:9905 +#: guix-git/doc/guix.texi:10219 msgid "The @code{(guix monads)} module provides the @dfn{state monad}, which allows an additional value---the state---to be @emph{threaded} through monadic procedure calls." msgstr "Le module @code{(guix monads)} fournit la @dfn{monade d'état} qui permet à une valeur supplémentaire — l'état — d'être enfilée à travers les appels de procédures." #. type: defvr -#: guix-git/doc/guix.texi:9906 +#: guix-git/doc/guix.texi:10220 #, no-wrap msgid "{Scheme Variable} %state-monad" msgstr "{Variable Scheme} %state-monad" #. type: defvr -#: guix-git/doc/guix.texi:9909 +#: guix-git/doc/guix.texi:10223 msgid "The state monad. Procedures in the state monad can access and change the state that is threaded." msgstr "La monade d'état. les procédure dans la monade d'état peuvent accéder et modifier l'état qui est enfilé." #. type: defvr -#: guix-git/doc/guix.texi:9913 +#: guix-git/doc/guix.texi:10227 msgid "Consider the example below. The @code{square} procedure returns a value in the state monad. It returns the square of its argument, but also increments the current state value:" msgstr "Considérez l'exemple ci-dessous. La procédure @code{square} renvoie une valeur dans la monade d'état. Elle renvoie le carré de son argument, mais incrémente aussi la valeur actuelle de l'état :" #. type: lisp -#: guix-git/doc/guix.texi:9920 +#: guix-git/doc/guix.texi:10234 #, no-wrap msgid "" "(define (square x)\n" @@ -19373,7 +19950,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:9924 +#: guix-git/doc/guix.texi:10238 #, no-wrap msgid "" "(run-with-state (sequence %state-monad (map square (iota 3))) 0)\n" @@ -19385,149 +19962,149 @@ msgstr "" "@result{} 3\n" #. type: defvr -#: guix-git/doc/guix.texi:9928 +#: guix-git/doc/guix.texi:10242 msgid "When ``run'' through @code{%state-monad}, we obtain that additional state value, which is the number of @code{square} calls." msgstr "Lorsque c'est « lancé » à travers @code{%state-monad}, nous obtenons cette valeur d'état supplémentaire, qui est le nombre d'appels au @code{square}." #. type: deffn -#: guix-git/doc/guix.texi:9930 +#: guix-git/doc/guix.texi:10244 #, no-wrap msgid "{Monadic Procedure} current-state" msgstr "{Procédure monadique} current-state" #. type: deffn -#: guix-git/doc/guix.texi:9932 +#: guix-git/doc/guix.texi:10246 msgid "Return the current state as a monadic value." msgstr "Renvoie l'état actuel dans une valeur monadique." #. type: deffn -#: guix-git/doc/guix.texi:9934 +#: guix-git/doc/guix.texi:10248 #, no-wrap msgid "{Monadic Procedure} set-current-state @var{value}" msgstr "{Procédure monadique} set-current-state @var{value}" #. type: deffn -#: guix-git/doc/guix.texi:9937 +#: guix-git/doc/guix.texi:10251 msgid "Set the current state to @var{value} and return the previous state as a monadic value." msgstr "Initialise l'état actuel à @var{value} et renvoie l'état précédent dans une valeur monadique." #. type: deffn -#: guix-git/doc/guix.texi:9939 +#: guix-git/doc/guix.texi:10253 #, no-wrap msgid "{Monadic Procedure} state-push @var{value}" msgstr "{Procédure monadique} state-push @var{value}" #. type: deffn -#: guix-git/doc/guix.texi:9942 +#: guix-git/doc/guix.texi:10256 msgid "Push @var{value} to the current state, which is assumed to be a list, and return the previous state as a monadic value." msgstr "Pousse @var{value} sur l'état actuel, qui est supposé être une liste, et renvoie l'état précédent dans une valeur monadique." #. type: deffn -#: guix-git/doc/guix.texi:9944 +#: guix-git/doc/guix.texi:10258 #, no-wrap msgid "{Monadic Procedure} state-pop" msgstr "{Procédure monadique} state-pop" #. type: deffn -#: guix-git/doc/guix.texi:9947 +#: guix-git/doc/guix.texi:10261 msgid "Pop a value from the current state and return it as a monadic value. The state is assumed to be a list." msgstr "Récupère (pop) une valeur dans l'état actuel et la renvoie comme une valeur monadique. L'état est supposé être une liste." #. type: deffn -#: guix-git/doc/guix.texi:9949 +#: guix-git/doc/guix.texi:10263 #, no-wrap msgid "{Scheme Procedure} run-with-state @var{mval} [@var{state}]" msgstr "{Procédure Scheme} run-with-state @var{mval} [@var{state}]" #. type: deffn -#: guix-git/doc/guix.texi:9952 +#: guix-git/doc/guix.texi:10266 msgid "Run monadic value @var{mval} starting with @var{state} as the initial state. Return two values: the resulting value, and the resulting state." msgstr "Lance la valeur monadique @var{mval} avec @var{state} comme valeur initiale. Renvoie deux valeurs : la valeur du résultat et l'état du résultat." #. type: Plain text -#: guix-git/doc/guix.texi:9956 +#: guix-git/doc/guix.texi:10270 msgid "The main interface to the store monad, provided by the @code{(guix store)} module, is as follows." msgstr "L'interface principale avec la monade du dépôt, fournit par le module @code{(guix store)}, est la suivante." #. type: defvr -#: guix-git/doc/guix.texi:9957 +#: guix-git/doc/guix.texi:10271 #, no-wrap msgid "{Scheme Variable} %store-monad" msgstr "{Variable Scheme} %store-monad" #. type: defvr -#: guix-git/doc/guix.texi:9959 +#: guix-git/doc/guix.texi:10273 msgid "The store monad---an alias for @code{%state-monad}." msgstr "La monade du dépôt — un alias pour @code{%state-monad}." #. type: defvr -#: guix-git/doc/guix.texi:9963 +#: guix-git/doc/guix.texi:10277 msgid "Values in the store monad encapsulate accesses to the store. When its effect is needed, a value of the store monad must be ``evaluated'' by passing it to the @code{run-with-store} procedure (see below)." msgstr "Les valeurs dans la monade du dépôt encapsulent les accès vers le dépôt. Lorsque son effet est nécessaire, une valeur de la monade du dépôt doit être « évaluée » en la passant à la procédure @code{run-with-store} (voir ci-dessous)." #. type: deffn -#: guix-git/doc/guix.texi:9965 +#: guix-git/doc/guix.texi:10279 #, no-wrap msgid "{Scheme Procedure} run-with-store @var{store} @var{mval} [#:guile-for-build] [#:system (%current-system)]" msgstr "{Procédure Scheme} run-with-store @var{store} @var{mval} [#:guile-for-build] [#:system (%current-system)]" #. type: deffn -#: guix-git/doc/guix.texi:9968 +#: guix-git/doc/guix.texi:10282 msgid "Run @var{mval}, a monadic value in the store monad, in @var{store}, an open store connection." msgstr "Lance @var{mval}, une valeur monadique dans la monade du dépôt, dans @var{store}, une connexion ouvert au dépôt." #. type: deffn -#: guix-git/doc/guix.texi:9970 +#: guix-git/doc/guix.texi:10284 #, no-wrap msgid "{Monadic Procedure} text-file @var{name} @var{text} [@var{references}]" msgstr "{Procédure monadique} text-file @var{name} @var{text} [@var{references}]" #. type: deffn -#: guix-git/doc/guix.texi:9974 +#: guix-git/doc/guix.texi:10288 msgid "Return as a monadic value the absolute file name in the store of the file containing @var{text}, a string. @var{references} is a list of store items that the resulting text file refers to; it defaults to the empty list." msgstr "Renvoie une valeur monadique correspondant au nom de fichier dans le dépôt du fichier contenant @var{text}, une chaîne de caractères. @var{references} est une liste d'éléments du dépôt auxquels le fichier texte en résultat se réfère ; c'est la liste vide par défaut." #. type: deffn -#: guix-git/doc/guix.texi:9976 +#: guix-git/doc/guix.texi:10290 #, no-wrap msgid "{Monadic Procedure} binary-file @var{name} @var{data} [@var{references}]" msgstr "{Procédure monadique} binary-file @var{name} @var{data} [@var{references}]" #. type: deffn -#: guix-git/doc/guix.texi:9980 +#: guix-git/doc/guix.texi:10294 msgid "Return as a monadic value the absolute file name in the store of the file containing @var{data}, a bytevector. @var{references} is a list of store items that the resulting binary file refers to; it defaults to the empty list." msgstr "Renvoie une valeur monadique correspondant au nom de fichier absolu dans le dépôt du fichier contenant @var{data}, un vecteur d'octets. @var{references} est une liste d'éléments du dépôt auxquels le fichier binaire en résultat se réfère ; c'est la liste vide par défaut." #. type: deffn -#: guix-git/doc/guix.texi:9982 +#: guix-git/doc/guix.texi:10296 #, no-wrap msgid "{Monadic Procedure} interned-file @var{file} [@var{name}] @" msgstr "{Procédure monadique} interned-file @var{file} [@var{name}] @" #. type: deffn -#: guix-git/doc/guix.texi:9987 +#: guix-git/doc/guix.texi:10301 msgid "[#:recursive? #t] [#:select? (const #t)] Return the name of @var{file} once interned in the store. Use @var{name} as its store name, or the basename of @var{file} if @var{name} is omitted." msgstr "" "[#:recursive? #t] [#:select? (const #t)]\n" "Renvoie le nom de @var{file} une fois ajouté au dépôt. Utilise @var{name} comme nom dans le dépôt ou le nom de fichier de @var{file} si @var{name} est omis." #. type: deffn -#: guix-git/doc/guix.texi:9991 guix-git/doc/guix.texi:10414 +#: guix-git/doc/guix.texi:10305 guix-git/doc/guix.texi:10728 msgid "When @var{recursive?} is true, the contents of @var{file} are added recursively; if @var{file} designates a flat file and @var{recursive?} is true, its contents are added, and its permission bits are kept." msgstr "Lorsque @var{recursive?} est vraie, le contenu de @var{file} est ajouté récursivement ; si @var{file} désigne un fichier simple et que @var{recursive?} est vrai, son contenu est ajouté et ses bits de permissions sont préservés." #. type: deffn -#: guix-git/doc/guix.texi:9996 guix-git/doc/guix.texi:10419 +#: guix-git/doc/guix.texi:10310 guix-git/doc/guix.texi:10733 msgid "When @var{recursive?} is true, call @code{(@var{select?} @var{file} @var{stat})} for each directory entry, where @var{file} is the entry's absolute file name and @var{stat} is the result of @code{lstat}; exclude entries for which @var{select?} does not return true." msgstr "Lorsque @var{recursive?} est vraie, appelle @code{(@var{select?} @var{file} @var{stat})} pour chaque répertoire où @var{file} est le nom de fichier absolu de l'entrée et @var{stat} est le résultat de @code{lstat} ; à l'exception des entrées pour lesquelles @var{select?} ne renvoie pas vrai." #. type: deffn -#: guix-git/doc/guix.texi:9998 +#: guix-git/doc/guix.texi:10312 msgid "The example below adds a file to the store, under two different names:" msgstr "L'exemple ci-dessous ajoute un fichier au dépôt, sous deux noms différents :" #. type: lisp -#: guix-git/doc/guix.texi:10004 +#: guix-git/doc/guix.texi:10318 #, no-wrap msgid "" "(run-with-store (open-connection)\n" @@ -19543,24 +20120,24 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:10006 +#: guix-git/doc/guix.texi:10320 #, no-wrap msgid "@result{} (\"/gnu/store/rwm@dots{}-README\" \"/gnu/store/44i@dots{}-LEGU-MIN\")\n" msgstr "@result{} (\"/gnu/store/rwm@dots{}-README\" \"/gnu/store/44i@dots{}-LEGU-MIN\")\n" #. type: Plain text -#: guix-git/doc/guix.texi:10012 +#: guix-git/doc/guix.texi:10326 msgid "The @code{(guix packages)} module exports the following package-related monadic procedures:" msgstr "Le module @code{(guix packages)} exporte les procédures monadiques liées aux paquets suivantes :" #. type: deffn -#: guix-git/doc/guix.texi:10013 +#: guix-git/doc/guix.texi:10327 #, no-wrap msgid "{Monadic Procedure} package-file @var{package} [@var{file}] @" msgstr "{Procédure monadique} package-file @var{package} [@var{file}] @" #. type: deffn -#: guix-git/doc/guix.texi:10021 +#: guix-git/doc/guix.texi:10335 msgid "[#:system (%current-system)] [#:target #f] @ [#:output \"out\"] Return as a monadic value in the absolute file name of @var{file} within the @var{output} directory of @var{package}. When @var{file} is omitted, return the name of the @var{output} directory of @var{package}. When @var{target} is true, use it as a cross-compilation target triplet." msgstr "" "[#:system (%current-system)] [#:target #f] @\n" @@ -19568,100 +20145,100 @@ msgstr "" "Renvoie une valeur monadique qui contient le nom de fichier absolu de @var{file} dans le répertoire @var{output} de @var{package}. Lorsque @var{file} est omis, renvoie le nom du répertoire @var{output} de @var{package}. Lorsque @var{target} est vrai, l'utilise comme un triplet de cible pour la compilation croisée." #. type: deffn -#: guix-git/doc/guix.texi:10025 +#: guix-git/doc/guix.texi:10339 msgid "Note that this procedure does @emph{not} build @var{package}. Thus, the result might or might not designate an existing file. We recommend not using this procedure unless you know what you are doing." msgstr "Notez que cette procédure ne permet @emph{pas} de construire @var{package}. Ainsi, le résultat peut ou non désigner un fichier existant. Nous vous recommandons de ne pas utiliser cette procédure si vous ne savez pas ce que vous faites." #. type: deffn -#: guix-git/doc/guix.texi:10027 +#: guix-git/doc/guix.texi:10341 #, no-wrap msgid "{Monadic Procedure} package->derivation @var{package} [@var{system}]" msgstr "{Procédure monadique} package->derivation @var{package} [@var{system}]" #. type: deffnx -#: guix-git/doc/guix.texi:10028 +#: guix-git/doc/guix.texi:10342 #, no-wrap msgid "{Monadic Procedure} package->cross-derivation @var{package} @" msgstr "{Procédure monadique} package->cross-derivation @var{package} @" #. type: deffn -#: guix-git/doc/guix.texi:10032 +#: guix-git/doc/guix.texi:10346 msgid "@var{target} [@var{system}] Monadic version of @code{package-derivation} and @code{package-cross-derivation} (@pxref{Defining Packages})." msgstr "" "@var{target} [@var{system}]\n" "Version monadique de @code{package-derivation} et @code{package-cross-derivation} (@pxref{Defining Packages})." #. type: cindex -#: guix-git/doc/guix.texi:10038 +#: guix-git/doc/guix.texi:10352 #, no-wrap msgid "G-expression" msgstr "G-expression" #. type: cindex -#: guix-git/doc/guix.texi:10039 +#: guix-git/doc/guix.texi:10353 #, no-wrap msgid "build code quoting" msgstr "quoting du code de construction" #. type: Plain text -#: guix-git/doc/guix.texi:10045 +#: guix-git/doc/guix.texi:10359 msgid "So we have ``derivations'', which represent a sequence of build actions to be performed to produce an item in the store (@pxref{Derivations}). These build actions are performed when asking the daemon to actually build the derivations; they are run by the daemon in a container (@pxref{Invoking guix-daemon})." msgstr "On a donc des « dérivations » qui représentent une séquence d'actions de construction à effectuer pour produire un élément du dépôt (@pxref{Derivations}). Ces actions de construction sont effectuées lorsqu'on demande au démon de construire effectivement les dérivations ; elles sont lancées par le démon dans un conteneur (@pxref{Invoking guix-daemon})." #. type: cindex -#: guix-git/doc/guix.texi:10048 +#: guix-git/doc/guix.texi:10362 #, no-wrap msgid "strata of code" msgstr "strate de code" #. type: Plain text -#: guix-git/doc/guix.texi:10060 +#: guix-git/doc/guix.texi:10374 msgid "It should come as no surprise that we like to write these build actions in Scheme. When we do that, we end up with two @dfn{strata} of Scheme code@footnote{The term @dfn{stratum} in this context was coined by Manuel Serrano et al.@: in the context of their work on Hop. Oleg Kiselyov, who has written insightful @url{http://okmij.org/ftp/meta-programming/#meta-scheme, essays and code on this topic}, refers to this kind of code generation as @dfn{staging}.}: the ``host code''---code that defines packages, talks to the daemon, etc.---and the ``build code''---code that actually performs build actions, such as making directories, invoking @command{make}, and so on (@pxref{Build Phases})." msgstr "Ça ne devrait pas vous surprendre, mais nous aimons écrire ces actions de construction en Scheme. Lorsqu'on fait ça, on fini avec deux @dfn{strates} de code Scheme@footnote{Le terme de @dfn{strate} dans ce contexte a été inventé par Manuel Serrano et ses collègues dans le contexte de leurs travaux sur Hop. Oleg Kiselyov, qui a écrit des @url{http://okmij.org/ftp/meta-programming/#meta-scheme, essais perspicaces ainsi que du code sur le sujet}, utilise le terme de « mise en scène » pour ce genre de génération de code.} : le « code hôte » — le code qui définit les paquets, parle au démon, etc.@: — et le « code côté construction » — le code qui effectue effectivement les actions de construction, comme créer des répertoires, invoquer @code{make}, etc. (@pxref{Build Phases})." #. type: Plain text -#: guix-git/doc/guix.texi:10067 +#: guix-git/doc/guix.texi:10381 msgid "To describe a derivation and its build actions, one typically needs to embed build code inside host code. It boils down to manipulating build code as data, and the homoiconicity of Scheme---code has a direct representation as data---comes in handy for that. But we need more than the normal @code{quasiquote} mechanism in Scheme to construct build expressions." msgstr "Pour décrire une dérivation et ses actions de construction, on a typiquement besoin d'intégrer le code de construction dans le code hôte. Ça revient à manipuler le code de construction comme de la donnée, et l'homoiconicité de Scheme — le code a une représentation directe en tant que donnée — est très utile pour cela. Mais on a besoin de plus que le mécanisme de @code{quasiquote} en Scheme pour construire des expressions de construction." #. type: Plain text -#: guix-git/doc/guix.texi:10076 +#: guix-git/doc/guix.texi:10390 msgid "The @code{(guix gexp)} module implements @dfn{G-expressions}, a form of S-expressions adapted to build expressions. G-expressions, or @dfn{gexps}, consist essentially of three syntactic forms: @code{gexp}, @code{ungexp}, and @code{ungexp-splicing} (or simply: @code{#~}, @code{#$}, and @code{#$@@}), which are comparable to @code{quasiquote}, @code{unquote}, and @code{unquote-splicing}, respectively (@pxref{Expression Syntax, @code{quasiquote},, guile, GNU Guile Reference Manual}). However, there are major differences:" msgstr "Le module @code{(guix gexp)} implémente les @dfn{G-expressions}, une forme de S-expression adaptée aux expressions de construction. Les G-expression, ou @dfn{gexps}, consistent en gros en trois formes syntaxiques : @code{gexp}, @code{ungexp} et @code{ungexp-splicing} (ou plus simplement : @code{#~}, @code{#$} et @code{#$@@}), qui sont comparable à @code{quasiquote}, @code{unquote} et @code{unquote-splicing} respectivement (@pxref{Expression Syntax, @code{quasiquote},, guile, GNU Guile Reference Manual}). Cependant il y a des différences majeures :" #. type: itemize -#: guix-git/doc/guix.texi:10081 +#: guix-git/doc/guix.texi:10395 msgid "Gexps are meant to be written to a file and run or manipulated by other processes." msgstr "Les Gexps sont conçues pour être écrites dans un fichier et être lancées ou manipulées par d'autres processus." #. type: itemize -#: guix-git/doc/guix.texi:10086 +#: guix-git/doc/guix.texi:10400 msgid "When a high-level object such as a package or derivation is unquoted inside a gexp, the result is as if its output file name had been introduced." msgstr "Lorsqu'un objet de haut-niveau comme un paquet ou une dérivation est unquotée dans une gexp, le résultat est comme si le nom de fichier de son résultat avait été introduit." #. type: itemize -#: guix-git/doc/guix.texi:10091 +#: guix-git/doc/guix.texi:10405 msgid "Gexps carry information about the packages or derivations they refer to, and these dependencies are automatically added as inputs to the build processes that use them." msgstr "Les gexps transportent des informations sur les paquets ou les dérivations auxquels elles se réfèrent, et ces dépendances sont automatiquement ajoutées comme des entrées du processus de construction qui les utilise." #. type: cindex -#: guix-git/doc/guix.texi:10093 guix-git/doc/guix.texi:10650 +#: guix-git/doc/guix.texi:10407 guix-git/doc/guix.texi:10964 #, no-wrap msgid "lowering, of high-level objects in gexps" msgstr "abaissement, des objets haut-niveau dans les gexps" #. type: Plain text -#: guix-git/doc/guix.texi:10103 +#: guix-git/doc/guix.texi:10417 msgid "This mechanism is not limited to package and derivation objects: @dfn{compilers} able to ``lower'' other high-level objects to derivations or files in the store can be defined, such that these objects can also be inserted into gexps. For example, a useful type of high-level objects that can be inserted in a gexp is ``file-like objects'', which make it easy to add files to the store and to refer to them in derivations and such (see @code{local-file} and @code{plain-file} below)." msgstr "Ce mécanisme n'est pas limité aux paquets et aux objets de dérivation : Des @dfn{compilateurs} capables d' « abaisser » d'autres objets de haut niveau vers des dérivations ou des fichiers dans le dépôt peuvent être définis, de sorte que ces objets peuvent également être insérés dans des gexps. Par exemple, un type utile d'objets de haut niveau pouvant être insérés dans un gexp est celui des « objets de type fichier », qui permettent d'ajouter facilement des fichiers au dépôt et d'y faire référence dans des dérivations et autres (voir @code{local-file} et @code{plain-file} ci-dessous)." #. type: Plain text -#: guix-git/doc/guix.texi:10105 +#: guix-git/doc/guix.texi:10419 msgid "To illustrate the idea, here is an example of a gexp:" msgstr "Pour illustrer cette idée, voici un exemple de gexp :" #. type: lisp -#: guix-git/doc/guix.texi:10113 +#: guix-git/doc/guix.texi:10427 #, no-wrap msgid "" "(define build-exp\n" @@ -19679,34 +20256,34 @@ msgstr "" " \"list-files\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:10118 +#: guix-git/doc/guix.texi:10432 msgid "This gexp can be passed to @code{gexp->derivation}; we obtain a derivation that builds a directory containing exactly one symlink to @file{/gnu/store/@dots{}-coreutils-8.22/bin/ls}:" msgstr "Cette gexp peut être passée à @code{gexp->derivation} ; on obtient une dérivation qui construit un répertoire contenant exactement un lien symbolique à @file{/gnu/store/@dots{}-coreutils-8.22/bin/ls} :" #. type: lisp -#: guix-git/doc/guix.texi:10121 +#: guix-git/doc/guix.texi:10435 #, no-wrap msgid "(gexp->derivation \"the-thing\" build-exp)\n" msgstr "(gexp->derivation \"the-thing\" build-exp)\n" #. type: Plain text -#: guix-git/doc/guix.texi:10129 +#: guix-git/doc/guix.texi:10443 msgid "As one would expect, the @code{\"/gnu/store/@dots{}-coreutils-8.22\"} string is substituted to the reference to the @var{coreutils} package in the actual build code, and @var{coreutils} is automatically made an input to the derivation. Likewise, @code{#$output} (equivalent to @code{(ungexp output)}) is replaced by a string containing the directory name of the output of the derivation." msgstr "Comme on pourrait s'y attendre, la chaîne @code{\"/gnu/store/@dots{}-coreutils-8.22\"} est substituée à la place de la référence au paquet @var{coreutils} dans le code de construction final, et @var{coreutils} est automatiquement devenu une entrée de la dérivation. De même, @code{#$output} (équivalent à @code{(ungexp output)}) est remplacé par une chaîne de caractères contenant le nom du répertoire de la sortie de la dérivation." #. type: cindex -#: guix-git/doc/guix.texi:10130 +#: guix-git/doc/guix.texi:10444 #, no-wrap msgid "cross compilation" msgstr "compilation croisée" #. type: Plain text -#: guix-git/doc/guix.texi:10136 +#: guix-git/doc/guix.texi:10450 msgid "In a cross-compilation context, it is useful to distinguish between references to the @emph{native} build of a package---that can run on the host---versus references to cross builds of a package. To that end, the @code{#+} plays the same role as @code{#$}, but is a reference to a native package build:" msgstr "Dans le contexte d'une compilation croisée, il est utile de distinguer entre des références à la construction @emph{native} d'un paquet — qui peut être lancé par l'hôte — et des références à la construction croisée d'un paquet. Pour cela, @code{#+} joue le même rôle que @code{#$}, mais référence une construction native d'un paquet :" #. type: lisp -#: guix-git/doc/guix.texi:10147 +#: guix-git/doc/guix.texi:10461 #, no-wrap msgid "" "(gexp->derivation \"vi\"\n" @@ -19730,29 +20307,29 @@ msgstr "" " #:target \"aarch64-linux-gnu\")\n" #. type: Plain text -#: guix-git/doc/guix.texi:10153 +#: guix-git/doc/guix.texi:10467 msgid "In the example above, the native build of @var{coreutils} is used, so that @command{ln} can actually run on the host; but then the cross-compiled build of @var{emacs} is referenced." msgstr "Dans l'exemple ci-dessus, la construction native de @var{coreutils} est utilisée, pour que @command{ln} puisse effectivement être lancé sur l'hôte ; mais ensuite la construction croisée d'@var{emacs} est utilisée." #. type: cindex -#: guix-git/doc/guix.texi:10154 +#: guix-git/doc/guix.texi:10468 #, no-wrap msgid "imported modules, for gexps" msgstr "modules importés, pour les gexps" #. type: findex -#: guix-git/doc/guix.texi:10155 +#: guix-git/doc/guix.texi:10469 #, no-wrap msgid "with-imported-modules" msgstr "with-imported-modules" #. type: Plain text -#: guix-git/doc/guix.texi:10160 +#: guix-git/doc/guix.texi:10474 msgid "Another gexp feature is @dfn{imported modules}: sometimes you want to be able to use certain Guile modules from the ``host environment'' in the gexp, so those modules should be imported in the ``build environment''. The @code{with-imported-modules} form allows you to express that:" msgstr "Une autre fonctionnalité, ce sont les @dfn{modules importés} : parfois vous voudriez pouvoir utiliser certains modules Guile de « l'environnement hôte » dans la gexp, donc ces modules devraient être importés dans « l'environnement de construction ». La forme @code{with-imported-modules} vous permet d'exprimer ça :" #. type: lisp -#: guix-git/doc/guix.texi:10171 +#: guix-git/doc/guix.texi:10485 #, no-wrap msgid "" "(let ((build (with-imported-modules '((guix build utils))\n" @@ -19776,29 +20353,29 @@ msgstr "" " #t)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:10177 +#: guix-git/doc/guix.texi:10491 msgid "In this example, the @code{(guix build utils)} module is automatically pulled into the isolated build environment of our gexp, such that @code{(use-modules (guix build utils))} works as expected." msgstr "Dans cet exemple, le module @code{(guix build utils)} est automatiquement récupéré dans l'environnement de construction isolé de notre gexp, pour que @code{(use-modules (guix build utils))} fonctionne comme on s'y attendrait." #. type: cindex -#: guix-git/doc/guix.texi:10178 +#: guix-git/doc/guix.texi:10492 #, no-wrap msgid "module closure" msgstr "closure de module" #. type: findex -#: guix-git/doc/guix.texi:10179 +#: guix-git/doc/guix.texi:10493 #, no-wrap msgid "source-module-closure" msgstr "source-module-closure" #. type: Plain text -#: guix-git/doc/guix.texi:10186 +#: guix-git/doc/guix.texi:10500 msgid "Usually you want the @emph{closure} of the module to be imported---i.e., the module itself and all the modules it depends on---rather than just the module; failing to do that, attempts to use the module will fail because of missing dependent modules. The @code{source-module-closure} procedure computes the closure of a module by looking at its source file headers, which comes in handy in this case:" msgstr "Typiquement, vous voudriez que la @emph{closure} complète du module soit importé — c.-à-d.@: le module lui-même et tous les modules dont il dépend — plutôt que seulement le module ; sinon, une tentative de chargement du module échouera à cause des modules dépendants manquants. La procédure @code{source-module-closure} calcule la closure d'un module en cherchant dans ses en-têtes sources, ce qui est pratique dans ce cas :" #. type: lisp -#: guix-git/doc/guix.texi:10189 +#: guix-git/doc/guix.texi:10503 #, no-wrap msgid "" "(use-modules (guix modules)) ;for 'source-module-closure'\n" @@ -19808,17 +20385,8 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:10198 -#, fuzzy, no-wrap -#| msgid "" -#| "(with-imported-modules (source-module-closure\n" -#| " '((guix build utils)\n" -#| " (gnu build vm)))\n" -#| " (gexp->derivation \"something-with-vms\"\n" -#| " #~(begin\n" -#| " (use-modules (guix build utils)\n" -#| " (gnu build vm))\n" -#| " @dots{})))\n" +#: guix-git/doc/guix.texi:10512 +#, no-wrap msgid "" "(with-imported-modules (source-module-closure\n" " '((guix build utils)\n" @@ -19831,32 +20399,32 @@ msgid "" msgstr "" "(with-imported-modules (source-module-closure\n" " '((guix build utils)\n" -" (gnu build vm)))\n" +" (gnu build image)))\n" " (gexp->derivation \"something-with-vms\"\n" " #~(begin\n" " (use-modules (guix build utils)\n" -" (gnu build vm))\n" +" (gnu build image))\n" " @dots{})))\n" #. type: cindex -#: guix-git/doc/guix.texi:10200 +#: guix-git/doc/guix.texi:10514 #, no-wrap msgid "extensions, for gexps" msgstr "extensions, des gexps" #. type: findex -#: guix-git/doc/guix.texi:10201 +#: guix-git/doc/guix.texi:10515 #, no-wrap msgid "with-extensions" msgstr "with-extensions" #. type: Plain text -#: guix-git/doc/guix.texi:10206 +#: guix-git/doc/guix.texi:10520 msgid "In the same vein, sometimes you want to import not just pure-Scheme modules, but also ``extensions'' such as Guile bindings to C libraries or other ``full-blown'' packages. Say you need the @code{guile-json} package available on the build side, here's how you would do it:" msgstr "Dans la même idée, parfois vous pouvez souhaiter importer non seulement des modules en Scheme pur, mais aussi des « extensions » comme des liaisons Guile de bibliothèques C ou d'autres paquet « complets ». Disons que vous voulez utiliser le paquet @code{guile-json} du côté de la construction, voici comme procéder :" #. type: lisp -#: guix-git/doc/guix.texi:10209 +#: guix-git/doc/guix.texi:10523 #, no-wrap msgid "" "(use-modules (gnu packages guile)) ;for 'guile-json'\n" @@ -19866,7 +20434,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:10215 +#: guix-git/doc/guix.texi:10529 #, no-wrap msgid "" "(with-extensions (list guile-json)\n" @@ -19882,184 +20450,184 @@ msgstr "" " @dots{})))\n" #. type: Plain text -#: guix-git/doc/guix.texi:10218 +#: guix-git/doc/guix.texi:10532 msgid "The syntactic form to construct gexps is summarized below." msgstr "La forme syntaxique pour construire des gexps est résumée ci-dessous." #. type: deffn -#: guix-git/doc/guix.texi:10219 +#: guix-git/doc/guix.texi:10533 #, no-wrap msgid "{Scheme Syntax} #~@var{exp}" msgstr "{Syntaxe Scheme} #~@var{exp}" #. type: deffnx -#: guix-git/doc/guix.texi:10220 +#: guix-git/doc/guix.texi:10534 #, no-wrap msgid "{Scheme Syntax} (gexp @var{exp})" msgstr "{Syntaxe Scheme} (gexp @var{exp})" #. type: deffn -#: guix-git/doc/guix.texi:10223 +#: guix-git/doc/guix.texi:10537 msgid "Return a G-expression containing @var{exp}. @var{exp} may contain one or more of the following forms:" msgstr "Renvoie une G-expression contenant @var{exp}. @var{exp} peut contenir une ou plusieurs de ces formes :" #. type: item -#: guix-git/doc/guix.texi:10225 +#: guix-git/doc/guix.texi:10539 #, no-wrap msgid "#$@var{obj}" msgstr "#$@var{obj}" #. type: itemx -#: guix-git/doc/guix.texi:10226 +#: guix-git/doc/guix.texi:10540 #, no-wrap msgid "(ungexp @var{obj})" msgstr "(ungexp @var{obj})" #. type: table -#: guix-git/doc/guix.texi:10231 +#: guix-git/doc/guix.texi:10545 msgid "Introduce a reference to @var{obj}. @var{obj} may have one of the supported types, for example a package or a derivation, in which case the @code{ungexp} form is replaced by its output file name---e.g., @code{\"/gnu/store/@dots{}-coreutils-8.22}." msgstr "Introduit une référence à @var{obj}. @var{obj} peut être d'un des types supportés, par exemple un paquet ou une dérivation, auquel cas la forme @code{ungexp} est remplacée par le nom de fichier de sa sortie — p.@: ex.@: @code{\"/gnu/store/@dots{}-coreutils-8.22}." #. type: table -#: guix-git/doc/guix.texi:10234 +#: guix-git/doc/guix.texi:10548 msgid "If @var{obj} is a list, it is traversed and references to supported objects are substituted similarly." msgstr "Si @var{boj} est une liste, elle est traversée et les références aux objets supportés sont substitués de manière similaire." #. type: table -#: guix-git/doc/guix.texi:10237 +#: guix-git/doc/guix.texi:10551 msgid "If @var{obj} is another gexp, its contents are inserted and its dependencies are added to those of the containing gexp." msgstr "Si @var{obj} est une autre gexp, son contenu est inséré et ses dépendances sont ajoutées à celle de la gexp qui l'entoure." #. type: table -#: guix-git/doc/guix.texi:10239 +#: guix-git/doc/guix.texi:10553 msgid "If @var{obj} is another kind of object, it is inserted as is." msgstr "Si @var{obj} est un autre type d'objet, il est inséré tel quel." #. type: item -#: guix-git/doc/guix.texi:10240 +#: guix-git/doc/guix.texi:10554 #, no-wrap msgid "#$@var{obj}:@var{output}" msgstr "#$@var{obj}:@var{output}" #. type: itemx -#: guix-git/doc/guix.texi:10241 +#: guix-git/doc/guix.texi:10555 #, no-wrap msgid "(ungexp @var{obj} @var{output})" msgstr "(ungexp @var{obj} @var{output})" #. type: table -#: guix-git/doc/guix.texi:10245 +#: guix-git/doc/guix.texi:10559 msgid "This is like the form above, but referring explicitly to the @var{output} of @var{obj}---this is useful when @var{obj} produces multiple outputs (@pxref{Packages with Multiple Outputs})." msgstr "Cette forme est similaire à la précédente, mais se réfère explicitement à la sortie @var{output} de l'objet @var{obj} — c'est utile lorsque @var{obj} produit plusieurs sorties (@pxref{Packages with Multiple Outputs})." #. type: item -#: guix-git/doc/guix.texi:10246 +#: guix-git/doc/guix.texi:10560 #, no-wrap msgid "#+@var{obj}" msgstr "#+@var{obj}" #. type: itemx -#: guix-git/doc/guix.texi:10247 +#: guix-git/doc/guix.texi:10561 #, no-wrap msgid "#+@var{obj}:output" msgstr "#+@var{obj}:output" #. type: itemx -#: guix-git/doc/guix.texi:10248 +#: guix-git/doc/guix.texi:10562 #, no-wrap msgid "(ungexp-native @var{obj})" msgstr "(ungexp-native @var{obj})" #. type: itemx -#: guix-git/doc/guix.texi:10249 +#: guix-git/doc/guix.texi:10563 #, no-wrap msgid "(ungexp-native @var{obj} @var{output})" msgstr "(ungexp-native @var{obj} @var{output})" #. type: table -#: guix-git/doc/guix.texi:10252 +#: guix-git/doc/guix.texi:10566 msgid "Same as @code{ungexp}, but produces a reference to the @emph{native} build of @var{obj} when used in a cross compilation context." msgstr "Comme @code{ungexp}, mais produit une référence à la construction @emph{native} de @var{obj} lorsqu'elle est utilisée dans une compilation croisée." #. type: item -#: guix-git/doc/guix.texi:10253 +#: guix-git/doc/guix.texi:10567 #, no-wrap msgid "#$output[:@var{output}]" msgstr "#$output[:@var{output}]" #. type: itemx -#: guix-git/doc/guix.texi:10254 +#: guix-git/doc/guix.texi:10568 #, no-wrap msgid "(ungexp output [@var{output}])" msgstr "(ungexp output [@var{output}])" #. type: table -#: guix-git/doc/guix.texi:10257 +#: guix-git/doc/guix.texi:10571 msgid "Insert a reference to derivation output @var{output}, or to the main output when @var{output} is omitted." msgstr "Insère une référence à la sortie @var{output} de la dérivation, ou à la sortie principale lorsque @var{output} est omis." #. type: table -#: guix-git/doc/guix.texi:10259 +#: guix-git/doc/guix.texi:10573 msgid "This only makes sense for gexps passed to @code{gexp->derivation}." msgstr "Cela ne fait du sens que pour les gexps passées à @code{gexp->derivation}." #. type: item -#: guix-git/doc/guix.texi:10260 +#: guix-git/doc/guix.texi:10574 #, no-wrap msgid "#$@@@var{lst}" msgstr "#$@@@var{lst}" #. type: itemx -#: guix-git/doc/guix.texi:10261 +#: guix-git/doc/guix.texi:10575 #, no-wrap msgid "(ungexp-splicing @var{lst})" msgstr "(ungexp-splicing @var{lst})" #. type: table -#: guix-git/doc/guix.texi:10264 +#: guix-git/doc/guix.texi:10578 msgid "Like the above, but splices the contents of @var{lst} inside the containing list." msgstr "Comme au dessus, mais recolle (@i{splice}) le contenu de @var{lst} dans la liste qui la contient." #. type: item -#: guix-git/doc/guix.texi:10265 +#: guix-git/doc/guix.texi:10579 #, no-wrap msgid "#+@@@var{lst}" msgstr "#+@@@var{lst}" #. type: itemx -#: guix-git/doc/guix.texi:10266 +#: guix-git/doc/guix.texi:10580 #, no-wrap msgid "(ungexp-native-splicing @var{lst})" msgstr "(ungexp-native-splicing @var{lst})" #. type: table -#: guix-git/doc/guix.texi:10269 +#: guix-git/doc/guix.texi:10583 msgid "Like the above, but refers to native builds of the objects listed in @var{lst}." msgstr "Comme au dessus, mais se réfère à la construction native des objets listés dans @var{lst}." #. type: deffn -#: guix-git/doc/guix.texi:10274 +#: guix-git/doc/guix.texi:10588 msgid "G-expressions created by @code{gexp} or @code{#~} are run-time objects of the @code{gexp?} type (see below)." msgstr "Les G-expressions créées par @code{gexp} ou @code{#~} sont des objets d'exécution du type @code{gexp?} (voir ci-dessous)." #. type: deffn -#: guix-git/doc/guix.texi:10276 +#: guix-git/doc/guix.texi:10590 #, no-wrap msgid "{Scheme Syntax} with-imported-modules @var{modules} @var{body}@dots{}" msgstr "{Syntaxe Scheme} with-imported-modules @var{modules} @var{body}@dots{}" #. type: deffn -#: guix-git/doc/guix.texi:10279 +#: guix-git/doc/guix.texi:10593 msgid "Mark the gexps defined in @var{body}@dots{} as requiring @var{modules} in their execution environment." msgstr "Marque les gexps définies dans @var{body}@dots{} comme requérant @var{modules} dans leur environnement d'exécution." #. type: deffn -#: guix-git/doc/guix.texi:10283 +#: guix-git/doc/guix.texi:10597 msgid "Each item in @var{modules} can be the name of a module, such as @code{(guix build utils)}, or it can be a module name, followed by an arrow, followed by a file-like object:" msgstr "Chaque élément dans @var{module} peut être le nom d'un module, comme @code{(guix build utils)} ou le nom d'un module suivi d'une flèche, suivie d'un objet simili-fichier :" #. type: lisp -#: guix-git/doc/guix.texi:10289 +#: guix-git/doc/guix.texi:10603 #, no-wrap msgid "" "`((guix build utils)\n" @@ -20073,55 +20641,55 @@ msgstr "" " #~(define-module @dots{}))))\n" #. type: deffn -#: guix-git/doc/guix.texi:10294 +#: guix-git/doc/guix.texi:10608 msgid "In the example above, the first two modules are taken from the search path, and the last one is created from the given file-like object." msgstr "Dans l'exemple au dessus, les deux premiers modules sont récupérés dans le chemin de recherche, et le dernier est créé à partir d'un objet simili-fichier." #. type: deffn -#: guix-git/doc/guix.texi:10298 +#: guix-git/doc/guix.texi:10612 msgid "This form has @emph{lexical} scope: it has an effect on the gexps directly defined in @var{body}@dots{}, but not on those defined, say, in procedures called from @var{body}@dots{}." msgstr "Cette forme a une portée @emph{lexicale} : elle a un effet sur les gexp directement définies dans @var{body}@dots{}, mais pas sur celles définies dans des procédures appelées par @var{body}@dots{}." #. type: deffn -#: guix-git/doc/guix.texi:10300 +#: guix-git/doc/guix.texi:10614 #, no-wrap msgid "{Scheme Syntax} with-extensions @var{extensions} @var{body}@dots{}" msgstr "{Syntaxe Scheme} with-extensions @var{extensions} @var{body}@dots{}" #. type: deffn -#: guix-git/doc/guix.texi:10305 +#: guix-git/doc/guix.texi:10619 msgid "Mark the gexps defined in @var{body}@dots{} as requiring @var{extensions} in their build and execution environment. @var{extensions} is typically a list of package objects such as those defined in the @code{(gnu packages guile)} module." msgstr "Marque les gexps définies dans @var{body}@dots{} comme requérant @var{extensions} dans leur environnement de construction et d'exécution. @var{extensions} est typiquement une liste d'objets paquets comme définis dans le module @code{(gnu packages guile)}." #. type: deffn -#: guix-git/doc/guix.texi:10310 +#: guix-git/doc/guix.texi:10624 msgid "Concretely, the packages listed in @var{extensions} are added to the load path while compiling imported modules in @var{body}@dots{}; they are also added to the load path of the gexp returned by @var{body}@dots{}." msgstr "Concrètement, les paquets listés dans @var{extensions} sont ajoutés au chemin de chargement lors de la compilation des modules importés dans @var{body}@dots{} ; ils sont aussi ajoutés au chemin de chargement de la gexp renvoyée par @var{body}@dots{}." #. type: deffn -#: guix-git/doc/guix.texi:10312 +#: guix-git/doc/guix.texi:10626 #, no-wrap msgid "{Scheme Procedure} gexp? @var{obj}" msgstr "{Procédure Scheme} gexp? @var{obj}" #. type: deffn -#: guix-git/doc/guix.texi:10314 +#: guix-git/doc/guix.texi:10628 msgid "Return @code{#t} if @var{obj} is a G-expression." msgstr "Renvoie @code{#t} si @var{obj} est une G-expression." #. type: Plain text -#: guix-git/doc/guix.texi:10320 +#: guix-git/doc/guix.texi:10634 msgid "G-expressions are meant to be written to disk, either as code building some derivation, or as plain files in the store. The monadic procedures below allow you to do that (@pxref{The Store Monad}, for more information about monads)." msgstr "Les G-expressions sont conçues pour être écrites sur le disque, soit en tant que code pour construire une dérivation, soit en tant que fichier normal dans le dépôt. Les procédures monadiques suivantes vous permettent de faire cela (@pxref{The Store Monad}, pour plus d'information sur les monads)." #. type: deffn -#: guix-git/doc/guix.texi:10321 +#: guix-git/doc/guix.texi:10635 #, no-wrap msgid "{Monadic Procedure} gexp->derivation @var{name} @var{exp} @" msgstr "{Procédure monadique} gexp->derivation @var{name} @var{exp} @" #. type: deffn -#: guix-git/doc/guix.texi:10339 +#: guix-git/doc/guix.texi:10653 msgid "[#:system (%current-system)] [#:target #f] [#:graft? #t] @ [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:env-vars '()] [#:modules '()] @ [#:module-path @code{%load-path}] @ [#:effective-version \"2.2\"] @ [#:references-graphs #f] [#:allowed-references #f] @ [#:disallowed-references #f] @ [#:leaked-env-vars #f] @ [#:script-name (string-append @var{name} \"-builder\")] @ [#:deprecation-warnings #f] @ [#:local-build? #f] [#:substitutable? #t] @ [#:properties '()] [#:guile-for-build #f] Return a derivation @var{name} that runs @var{exp} (a gexp) with @var{guile-for-build} (a derivation) on @var{system}; @var{exp} is stored in a file called @var{script-name}. When @var{target} is true, it is used as the cross-compilation target triplet for packages referred to by @var{exp}." msgstr "" "[#:system (%current-system)] [#:target #f] [#:graft ? #t] @\n" @@ -20139,27 +20707,27 @@ msgstr "" "Renvoie une dérivation @var{name} qui exécute @var{exp} (un gexp) avec @var{guile-for-build} (une dérivation) sur @var{system} ; @var{exp} est stocké dans un fichier appelé @var{script-name}. Lorsque @var{target} est vrai, il est utilisé comme le triplet cible de compilation croisée pour les paquets auxquels @var{exp} fait référence." #. type: deffn -#: guix-git/doc/guix.texi:10347 +#: guix-git/doc/guix.texi:10661 msgid "@var{modules} is deprecated in favor of @code{with-imported-modules}. Its meaning is to make @var{modules} available in the evaluation context of @var{exp}; @var{modules} is a list of names of Guile modules searched in @var{module-path} to be copied in the store, compiled, and made available in the load path during the execution of @var{exp}---e.g., @code{((guix build utils) (guix build gnu-build-system))}." msgstr "@var{modules} est devenu obsolète en faveur de @code{with-imported-modules}. Sa signification est de rendre @var{modules} disponibles dans le contexte d'évaluation de @var{exp} ; @var{modules} est une liste de noms de modules Guile qui sont cherchés dans @var{module-path} pour les copier dans le dépôt, les compiler et les rendre disponibles dans le chemin de chargement pendant l'exécution de @var{exp} — p.@: ex.@: @code{((guix build utils) (guix build gnu-build-system))}." #. type: deffn -#: guix-git/doc/guix.texi:10350 +#: guix-git/doc/guix.texi:10664 msgid "@var{effective-version} determines the string to use when adding extensions of @var{exp} (see @code{with-extensions}) to the search path---e.g., @code{\"2.2\"}." msgstr "@var{effective-version} détermine la chaîne à utiliser lors d'ajout d'extensions de @var{exp} (voir @code{with-extensions}) au chemin de recherche — p.@: ex.@: @code{\"2.2\"}." #. type: deffn -#: guix-git/doc/guix.texi:10353 +#: guix-git/doc/guix.texi:10667 msgid "@var{graft?} determines whether packages referred to by @var{exp} should be grafted when applicable." msgstr "@var{graft?} détermine si les paquets référencés par @var{exp} devraient être greffés si possible." #. type: deffn -#: guix-git/doc/guix.texi:10356 +#: guix-git/doc/guix.texi:10670 msgid "When @var{references-graphs} is true, it must be a list of tuples of one of the following forms:" msgstr "Lorsque @var{references-graphs} est vrai, il doit s'agir d'une liste de tuples de la forme suivante :" #. type: example -#: guix-git/doc/guix.texi:10363 +#: guix-git/doc/guix.texi:10677 #, no-wrap msgid "" "(@var{file-name} @var{package})\n" @@ -20175,38 +20743,38 @@ msgstr "" "(@var{file-name} @var{store-item})\n" #. type: deffn -#: guix-git/doc/guix.texi:10369 +#: guix-git/doc/guix.texi:10683 msgid "The right-hand-side of each element of @var{references-graphs} is automatically made an input of the build process of @var{exp}. In the build environment, each @var{file-name} contains the reference graph of the corresponding item, in a simple text format." msgstr "La partie droite des éléments de @var{references-graphs} est automatiquement transformée en une entrée du processus de construction @var{exp}. Dans l'environnement de construction, chaque @var{file-name} contient le graphe des références de l'élément correspondant, dans un format texte simple." #. type: deffn -#: guix-git/doc/guix.texi:10375 +#: guix-git/doc/guix.texi:10689 msgid "@var{allowed-references} must be either @code{#f} or a list of output names and packages. In the latter case, the list denotes store items that the result is allowed to refer to. Any reference to another store item will lead to a build error. Similarly for @var{disallowed-references}, which can list items that must not be referenced by the outputs." msgstr "@var{allowed-references} doit soit être @code{#f}, soit une liste de noms de sorties ou de paquets. Dans ce dernier cas, la liste dénote les éléments du dépôt auxquels le résultat a le droit de faire référence. Toute référence à un autre élément du dépôt conduira à une erreur à la construction. Comme pour @var{disallowed-references}, qui peut lister des éléments qui ne doivent pas être référencés par les sorties." #. type: deffn -#: guix-git/doc/guix.texi:10378 +#: guix-git/doc/guix.texi:10692 msgid "@var{deprecation-warnings} determines whether to show deprecation warnings while compiling modules. It can be @code{#f}, @code{#t}, or @code{'detailed}." msgstr "@var{deprecation-warnings} détermine s'il faut afficher les avertissement d'obsolescence à la compilation de modules. Il peut valoir @code{#f}, @code{t} ou @code{'detailed}." #. type: deffn -#: guix-git/doc/guix.texi:10380 +#: guix-git/doc/guix.texi:10694 msgid "The other arguments are as for @code{derivation} (@pxref{Derivations})." msgstr "Les autres arguments sont les mêmes que pour @code{derivation} (@pxref{Derivations})." #. type: cindex -#: guix-git/doc/guix.texi:10382 +#: guix-git/doc/guix.texi:10696 #, no-wrap msgid "file-like objects" msgstr "objets simili-fichiers" #. type: Plain text -#: guix-git/doc/guix.texi:10387 +#: guix-git/doc/guix.texi:10701 msgid "The @code{local-file}, @code{plain-file}, @code{computed-file}, @code{program-file}, and @code{scheme-file} procedures below return @dfn{file-like objects}. That is, when unquoted in a G-expression, these objects lead to a file in the store. Consider this G-expression:" msgstr "Les procédures @code{local-file}, @code{plain-file}, @code{computed-file}, @code{program-file} et @code{scheme-file} ci-dessous renvoient des @dfn{objets simili-fichiers}. C'est-à-dire, lorsqu'ils sont unquotés dans une G-expression, ces objets donnent un fichier dans le dépôt. Considérez cette G-expression :" #. type: lisp -#: guix-git/doc/guix.texi:10391 +#: guix-git/doc/guix.texi:10705 #, no-wrap msgid "" "#~(system* #$(file-append glibc \"/sbin/nscd\") \"-f\"\n" @@ -20216,70 +20784,70 @@ msgstr "" " #$(local-file \"/tmp/my-nscd.conf\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:10400 +#: guix-git/doc/guix.texi:10714 msgid "The effect here is to ``intern'' @file{/tmp/my-nscd.conf} by copying it to the store. Once expanded, for instance @i{via} @code{gexp->derivation}, the G-expression refers to that copy under @file{/gnu/store}; thus, modifying or removing the file in @file{/tmp} does not have any effect on what the G-expression does. @code{plain-file} can be used similarly; it differs in that the file content is directly passed as a string." msgstr "Ici, l'effet est « d'internaliser » @file{/tmp/my-nscd.conf} en le copiant dans le dépôt. Une fois étendu, par exemple via @code{gexp->derivation}, la G-expression se réfère à cette copie dans @file{/gnu/store} ; ainsi, modifier ou supprimer le fichier dans @file{/tmp} n'a aucun effet sur ce que fait la G-expression. @code{plain-file} peut être utilisé de la même manière ; elle est seulement différente par le fait que le contenu du fichier est passé directement par une chaîne de caractères." #. type: deffn -#: guix-git/doc/guix.texi:10401 +#: guix-git/doc/guix.texi:10715 #, no-wrap msgid "{Scheme Procedure} local-file @var{file} [@var{name}] @" msgstr "{Procédure Scheme} local-file @var{file} [@var{name}] @" #. type: deffn -#: guix-git/doc/guix.texi:10410 +#: guix-git/doc/guix.texi:10724 msgid "[#:recursive? #f] [#:select? (const #t)] Return an object representing local file @var{file} to add to the store; this object can be used in a gexp. If @var{file} is a literal string denoting a relative file name, it is looked up relative to the source file where it appears; if @var{file} is not a literal string, it is looked up relative to the current working directory at run time. @var{file} will be added to the store under @var{name}--by default the base name of @var{file}." msgstr "" "[#:recursive ? #f] [#:select ? (const #t)]\n" "Renvoie un objet représentant le fichier local @var{file} à ajouter au magasin ; cet objet peut être utilisé dans un gexp. Si @var{file} est une chaîne littérale désignant un nom de fichier relatif, il est recherché par rapport au fichier source où il apparaît ; si @var{file} n'est pas une chaîne littérale, il est recherché par rapport au répertoire de travail courant au moment de l'exécution. @var{file} sera ajouté au dépôt sous @var{name}--par défaut le nom de base de @var{file}." #. type: deffn -#: guix-git/doc/guix.texi:10422 +#: guix-git/doc/guix.texi:10736 msgid "This is the declarative counterpart of the @code{interned-file} monadic procedure (@pxref{The Store Monad, @code{interned-file}})." msgstr "C'est la version déclarative de la procédure monadique @code{interned-file} (@pxref{The Store Monad, @code{interned-file}})." #. type: deffn -#: guix-git/doc/guix.texi:10424 +#: guix-git/doc/guix.texi:10738 #, no-wrap msgid "{Scheme Procedure} plain-file @var{name} @var{content}" msgstr "{Procédure Scheme} plain-file @var{name} @var{content}" #. type: deffn -#: guix-git/doc/guix.texi:10427 +#: guix-git/doc/guix.texi:10741 msgid "Return an object representing a text file called @var{name} with the given @var{content} (a string or a bytevector) to be added to the store." msgstr "Renvoie un objet représentant un fichier texte nommé @var{name} avec pour contenu @var{content} (une chaîne de caractères ou un vecteur d'octets) à ajouter un dépôt." #. type: deffn -#: guix-git/doc/guix.texi:10429 +#: guix-git/doc/guix.texi:10743 msgid "This is the declarative counterpart of @code{text-file}." msgstr "C'est la version déclarative de @code{text-file}." #. type: deffn -#: guix-git/doc/guix.texi:10431 +#: guix-git/doc/guix.texi:10745 #, no-wrap msgid "{Scheme Procedure} computed-file @var{name} @var{gexp} @" msgstr "{Procédure Scheme} computed-file @var{name} @var{gexp} @" #. type: deffn -#: guix-git/doc/guix.texi:10438 +#: guix-git/doc/guix.texi:10752 msgid "[#:local-build? #t] [#:options '()] Return an object representing the store item @var{name}, a file or directory computed by @var{gexp}. When @var{local-build?} is true (the default), the derivation is built locally. @var{options} is a list of additional arguments to pass to @code{gexp->derivation}." msgstr "" "[#:local-build ? #t] [#:options '()]\n" "Renvoie un objet représentant l'élément du dépôt @var{name}, un fichier ou un répertoire calculé par @var{gexp}. Lorsque @var{local-build?} est vrai (par défaut), la dérivation est construite localement. @var{options} est une liste d'arguments supplémentaires à passer à @code{gexp->derivation}." #. type: deffn -#: guix-git/doc/guix.texi:10440 +#: guix-git/doc/guix.texi:10754 msgid "This is the declarative counterpart of @code{gexp->derivation}." msgstr "C'est la version déclarative de @code{gexp->derivation}." #. type: deffn -#: guix-git/doc/guix.texi:10442 +#: guix-git/doc/guix.texi:10756 #, no-wrap msgid "{Monadic Procedure} gexp->script @var{name} @var{exp} @" msgstr "{Procédure monadique} gexp->script @var{name} @var{exp} @" #. type: deffn -#: guix-git/doc/guix.texi:10448 +#: guix-git/doc/guix.texi:10762 msgid "[#:guile (default-guile)] [#:module-path %load-path] @ [#:system (%current-system)] [#:target #f] Return an executable script @var{name} that runs @var{exp} using @var{guile}, with @var{exp}'s imported modules in its search path. Look up @var{exp}'s modules in @var{module-path}." msgstr "" "[#:guile (default-guile)] [#:module-path %load-path] @\n" @@ -20287,12 +20855,12 @@ msgstr "" "Renvoie un script exécutable @var{name} qui exécute @var{exp} en utilisant @var{guile}, avec les modules importés de @var{exp} dans son chemin de recherche. Recherchez les modules de @var{exp} dans @var{module-path}." #. type: deffn -#: guix-git/doc/guix.texi:10451 +#: guix-git/doc/guix.texi:10765 msgid "The example below builds a script that simply invokes the @command{ls} command:" msgstr "L'exemple ci-dessous construit un script qui invoque simplement la commande @command{ls} :" #. type: lisp -#: guix-git/doc/guix.texi:10454 +#: guix-git/doc/guix.texi:10768 #, no-wrap msgid "" "(use-modules (guix gexp) (gnu packages base))\n" @@ -20302,7 +20870,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:10458 +#: guix-git/doc/guix.texi:10772 #, no-wrap msgid "" "(gexp->script \"list-files\"\n" @@ -20314,12 +20882,12 @@ msgstr "" " \"ls\"))\n" #. type: deffn -#: guix-git/doc/guix.texi:10463 +#: guix-git/doc/guix.texi:10777 msgid "When ``running'' it through the store (@pxref{The Store Monad, @code{run-with-store}}), we obtain a derivation that produces an executable file @file{/gnu/store/@dots{}-list-files} along these lines:" msgstr "Lorsqu'elle est « lancée » à travers le dépôt (@pxref{The Store Monad, @code{run-with-store}}), on obtient une dérivation qui produit une fichier exécutable @file{/gnu/store/@dots{}-list-files} qui ressemble à :" #. type: example -#: guix-git/doc/guix.texi:10468 +#: guix-git/doc/guix.texi:10782 #, no-wrap msgid "" "#!/gnu/store/@dots{}-guile-2.0.11/bin/guile -ds\n" @@ -20331,31 +20899,31 @@ msgstr "" "(execl \"/gnu/store/@dots{}-coreutils-8.22\"/bin/ls\" \"ls\")\n" #. type: deffn -#: guix-git/doc/guix.texi:10471 +#: guix-git/doc/guix.texi:10785 #, no-wrap msgid "{Scheme Procedure} program-file @var{name} @var{exp} @" msgstr "{Procédure Scheme} program-file @var{name} @var{exp} @" #. type: deffn -#: guix-git/doc/guix.texi:10476 +#: guix-git/doc/guix.texi:10790 msgid "[#:guile #f] [#:module-path %load-path] Return an object representing the executable store item @var{name} that runs @var{gexp}. @var{guile} is the Guile package used to execute that script. Imported modules of @var{gexp} are looked up in @var{module-path}." msgstr "" "[#:guile #f] [#:module-path %load-path]\n" "Renvoie un objet représentant un élément du dépôt @var{name} qui lance @var{gexp}. @var{guile} est le paquet Guile à utiliser pour exécuter le script. Les modules importés par @var{gexp} sont recherchés dans @var{module-path}." #. type: deffn -#: guix-git/doc/guix.texi:10478 +#: guix-git/doc/guix.texi:10792 msgid "This is the declarative counterpart of @code{gexp->script}." msgstr "C'est la version déclarative de @code{gexp->script}." #. type: deffn -#: guix-git/doc/guix.texi:10480 +#: guix-git/doc/guix.texi:10794 #, no-wrap msgid "{Monadic Procedure} gexp->file @var{name} @var{exp} @" msgstr "{Procédure monadique} gexp->file @var{name} @var{exp} @" #. type: deffn -#: guix-git/doc/guix.texi:10487 +#: guix-git/doc/guix.texi:10801 msgid "[#:set-load-path? #t] [#:module-path %load-path] @ [#:splice? #f] @ [#:guile (default-guile)] Return a derivation that builds a file @var{name} containing @var{exp}. When @var{splice?} is true, @var{exp} is considered to be a list of expressions that will be spliced in the resulting file." msgstr "" "[#:set-load-path? #t] [#:module-path %load-path] @\n" @@ -20364,51 +20932,51 @@ msgstr "" "Renvoie une dérivation qui construit un fichier @var{name} contenant @var{exp}. Lorsque @var{splice?} est vrai, @var{exp} est considéré comme une liste d'expressions qui seront splicée dans le fichier qui en résulte." #. type: deffn -#: guix-git/doc/guix.texi:10492 +#: guix-git/doc/guix.texi:10806 msgid "When @var{set-load-path?} is true, emit code in the resulting file to set @code{%load-path} and @code{%load-compiled-path} to honor @var{exp}'s imported modules. Look up @var{exp}'s modules in @var{module-path}." msgstr "Lorsque @var{set-load-path?} est vrai, émet du code dans le fichier de résultat pour initialiser @code{%load-path} et @code{%load-compiled-path} pour honorer les modules importés de @var{exp}. Les modules de @var{exp} sont trouvés dans @var{module-path}." #. type: deffn -#: guix-git/doc/guix.texi:10495 +#: guix-git/doc/guix.texi:10809 msgid "The resulting file holds references to all the dependencies of @var{exp} or a subset thereof." msgstr "Le fichier qui en résulte retient les références à toutes les dépendances de @var{exp} ou un sous-ensemble." #. type: deffn -#: guix-git/doc/guix.texi:10497 +#: guix-git/doc/guix.texi:10811 #, no-wrap msgid "{Scheme Procedure} scheme-file @var{name} @var{exp} @" msgstr "{Procédure Scheme} scheme-file @var{name} @var{gexp} @" #. type: deffn -#: guix-git/doc/guix.texi:10501 +#: guix-git/doc/guix.texi:10815 msgid "[#:splice? #f] [#:set-load-path? #t] Return an object representing the Scheme file @var{name} that contains @var{exp}." msgstr "" "[#:splice? #f] [#:set-load-path? #t]\n" "Renvoie un objet représentant le fichier Scheme @var{name} qui contient @var{exp}." #. type: deffn -#: guix-git/doc/guix.texi:10503 +#: guix-git/doc/guix.texi:10817 msgid "This is the declarative counterpart of @code{gexp->file}." msgstr "C'est la version déclarative de @code{gexp->file}." #. type: deffn -#: guix-git/doc/guix.texi:10505 +#: guix-git/doc/guix.texi:10819 #, no-wrap msgid "{Monadic Procedure} text-file* @var{name} @var{text} @dots{}" msgstr "{Procédure monadique} text-file* @var{name} @var{text} @dots{}" #. type: deffn -#: guix-git/doc/guix.texi:10511 +#: guix-git/doc/guix.texi:10825 msgid "Return as a monadic value a derivation that builds a text file containing all of @var{text}. @var{text} may list, in addition to strings, objects of any type that can be used in a gexp: packages, derivations, local file objects, etc. The resulting store file holds references to all these." msgstr "Renvoie une valeur monadique qui construit un ficher texte contenant @var{text}. @var{text} peut lister, en plus de chaînes de caractères, des objet de n'importe quel type qui peut être utilisé dans une gexp : des paquets, des dérivations, des fichiers objet locaux, etc. Le fichier du dépôt qui en résulte en retient toutes les références." #. type: deffn -#: guix-git/doc/guix.texi:10516 +#: guix-git/doc/guix.texi:10830 msgid "This variant should be preferred over @code{text-file} anytime the file to create will reference items from the store. This is typically the case when building a configuration file that embeds store file names, like this:" msgstr "Cette variante devrait être préférée à @code{text-file} lorsque vous souhaitez créer des fichiers qui référencent le dépôt. Cela est le cas typiquement lorsque vous construisez un fichier de configuration qui contient des noms de fichiers du dépôt, comme ceci :" #. type: lisp -#: guix-git/doc/guix.texi:10524 +#: guix-git/doc/guix.texi:10838 #, no-wrap msgid "" "(define (profile.sh)\n" @@ -20426,23 +20994,23 @@ msgstr "" " grep \"/bin:\" sed \"/bin\\n\"))\n" #. type: deffn -#: guix-git/doc/guix.texi:10529 +#: guix-git/doc/guix.texi:10843 msgid "In this example, the resulting @file{/gnu/store/@dots{}-profile.sh} file will reference @var{coreutils}, @var{grep}, and @var{sed}, thereby preventing them from being garbage-collected during its lifetime." msgstr "Dans cet exemple, le fichier @file{/gnu/store/@dots{}-profile.sh} qui en résulte référence @var{coreutils}, @var{grep} et @var{sed}, ce qui les empêche d'être glanés tant que le script est accessible." #. type: deffn -#: guix-git/doc/guix.texi:10531 +#: guix-git/doc/guix.texi:10845 #, no-wrap msgid "{Scheme Procedure} mixed-text-file @var{name} @var{text} @dots{}" msgstr "{Procédure Scheme} mixed-text-file @var{name} @var{text} @dots{}" #. type: deffn -#: guix-git/doc/guix.texi:10535 +#: guix-git/doc/guix.texi:10849 msgid "Return an object representing store file @var{name} containing @var{text}. @var{text} is a sequence of strings and file-like objects, as in:" msgstr "Renvoie un objet représentant le fichier du dépôt @var{name} contenant @var{text}. @var{text} est une séquence de chaînes de caractères et de fichiers simili-objets, comme dans :" #. type: lisp -#: guix-git/doc/guix.texi:10539 +#: guix-git/doc/guix.texi:10853 #, no-wrap msgid "" "(mixed-text-file \"profile\"\n" @@ -20452,23 +21020,23 @@ msgstr "" " \"export PATH=\" coreutils \"/bin:\" grep \"/bin\")\n" #. type: deffn -#: guix-git/doc/guix.texi:10542 +#: guix-git/doc/guix.texi:10856 msgid "This is the declarative counterpart of @code{text-file*}." msgstr "C'est la version déclarative de @code{text-file*}." #. type: deffn -#: guix-git/doc/guix.texi:10544 +#: guix-git/doc/guix.texi:10858 #, no-wrap msgid "{Scheme Procedure} file-union @var{name} @var{files}" msgstr "{Procédure Scheme} file-union @var{name} @var{files}" #. type: deffn -#: guix-git/doc/guix.texi:10549 +#: guix-git/doc/guix.texi:10863 msgid "Return a @code{} that builds a directory containing all of @var{files}. Each item in @var{files} must be a two-element list where the first element is the file name to use in the new directory, and the second element is a gexp denoting the target file. Here's an example:" msgstr "Renvoie un @code{} qui construit un répertoire qui contient tous les fichiers de @var{files}. Chaque élément de @var{files} doit être une paire où le premier élément est le nom de fichier à utiliser dans le nouveau répertoire et le second élément est une gexp dénotant le fichier cible. Voici un exemple :" #. type: lisp -#: guix-git/doc/guix.texi:10556 +#: guix-git/doc/guix.texi:10870 #, no-wrap msgid "" "(file-union \"etc\"\n" @@ -20484,50 +21052,50 @@ msgstr "" " \"alias ls='ls --color=auto'\"))))\n" #. type: deffn -#: guix-git/doc/guix.texi:10559 +#: guix-git/doc/guix.texi:10873 msgid "This yields an @code{etc} directory containing these two files." msgstr "Cela crée un répertoire @code{etc} contenant ces deux fichiers." #. type: deffn -#: guix-git/doc/guix.texi:10561 +#: guix-git/doc/guix.texi:10875 #, no-wrap msgid "{Scheme Procedure} directory-union @var{name} @var{things}" msgstr "{Procédure Scheme} directory-union @var{name} @var{things}" #. type: deffn -#: guix-git/doc/guix.texi:10564 +#: guix-git/doc/guix.texi:10878 msgid "Return a directory that is the union of @var{things}, where @var{things} is a list of file-like objects denoting directories. For example:" msgstr "Renvoie un répertoire qui est l'union de @var{things}, où @var{things} est une liste d'objets simili-fichiers qui dénotent des répertoires. Par exemple :" #. type: lisp -#: guix-git/doc/guix.texi:10567 +#: guix-git/doc/guix.texi:10881 #, no-wrap msgid "(directory-union \"guile+emacs\" (list guile emacs))\n" msgstr "(directory-union \"guile+emacs\" (list guile emacs))\n" #. type: deffn -#: guix-git/doc/guix.texi:10570 +#: guix-git/doc/guix.texi:10884 msgid "yields a directory that is the union of the @code{guile} and @code{emacs} packages." msgstr "crée un répertoire qui est l'union des paquets @code{guile} et @code{emacs}." #. type: deffn -#: guix-git/doc/guix.texi:10572 +#: guix-git/doc/guix.texi:10886 #, no-wrap msgid "{Scheme Procedure} file-append @var{obj} @var{suffix} @dots{}" msgstr "{Procédure Scheme} file-append @var{obj} @var{suffix} @dots{}" #. type: deffn -#: guix-git/doc/guix.texi:10576 +#: guix-git/doc/guix.texi:10890 msgid "Return a file-like object that expands to the concatenation of @var{obj} and @var{suffix}, where @var{obj} is a lowerable object and each @var{suffix} is a string." msgstr "Renvoie un objet simili-fichier qui correspond à la concaténation de @var{obj} et @var{suffix} où @var{obj} est un objet abaissable et chaque @var{suffix} est une chaîne de caractères." #. type: deffn -#: guix-git/doc/guix.texi:10578 +#: guix-git/doc/guix.texi:10892 msgid "As an example, consider this gexp:" msgstr "Par exemple, considérez cette gexp :" #. type: lisp -#: guix-git/doc/guix.texi:10583 +#: guix-git/doc/guix.texi:10897 #, no-wrap msgid "" "(gexp->script \"run-uname\"\n" @@ -20539,12 +21107,12 @@ msgstr "" " \"/bin/uname\")))\n" #. type: deffn -#: guix-git/doc/guix.texi:10586 +#: guix-git/doc/guix.texi:10900 msgid "The same effect could be achieved with:" msgstr "On peut obtenir le même effet avec :" #. type: lisp -#: guix-git/doc/guix.texi:10591 +#: guix-git/doc/guix.texi:10905 #, no-wrap msgid "" "(gexp->script \"run-uname\"\n" @@ -20556,39 +21124,39 @@ msgstr "" " \"/bin/uname\")))\n" #. type: deffn -#: guix-git/doc/guix.texi:10597 +#: guix-git/doc/guix.texi:10911 msgid "There is one difference though: in the @code{file-append} case, the resulting script contains the absolute file name as a string, whereas in the second case, the resulting script contains a @code{(string-append @dots{})} expression to construct the file name @emph{at run time}." msgstr "Il y a une différence cependant : dans le cas @code{file-append}, le script qui en résulte contient le nom de fichier absolu comme une chaîne de caractère alors que dans le deuxième cas, le script contient une expression @code{(string-append @dots{})} pour construire le nom de fichier @emph{à l'exécution}." #. type: deffn -#: guix-git/doc/guix.texi:10599 +#: guix-git/doc/guix.texi:10913 #, no-wrap msgid "{Scheme Syntax} let-system @var{system} @var{body}@dots{}" msgstr "{Syntaxe Scheme} let-system @var{system} @var{body}@dots{}" #. type: deffnx -#: guix-git/doc/guix.texi:10600 +#: guix-git/doc/guix.texi:10914 #, no-wrap msgid "{Scheme Syntax} let-system (@var{system} @var{target}) @var{body}@dots{}" msgstr "{Syntaxe Scheme} let-system (@var{system} @var{target}) @var{body}@dots{}" #. type: deffn -#: guix-git/doc/guix.texi:10603 +#: guix-git/doc/guix.texi:10917 msgid "Bind @var{system} to the currently targeted system---e.g., @code{\"x86_64-linux\"}---within @var{body}." msgstr "Lier @var{system} au système actuellement visé---par exemple, @code{\"x86_64-linux\"}---dans @var{body}." #. type: deffn -#: guix-git/doc/guix.texi:10608 +#: guix-git/doc/guix.texi:10922 msgid "In the second case, additionally bind @var{target} to the current cross-compilation target---a GNU triplet such as @code{\"arm-linux-gnueabihf\"}---or @code{#f} if we are not cross-compiling." msgstr "Dans le second cas, lier également @var{target} à la cible de compilation croisée actuelle--un triplet GNU tel que @code{\"arm-linux-gnueabihf\"}---ou @code{#f} si nous ne faisons pas de compilation croisée." #. type: deffn -#: guix-git/doc/guix.texi:10611 +#: guix-git/doc/guix.texi:10925 msgid "@code{let-system} is useful in the occasional case where the object spliced into the gexp depends on the target system, as in this example:" msgstr "@code{let-system} est utile occasionellement dans le cas où l'objet raccordé au gexp dépend de la cible sur le système cible, comme dans cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:10622 +#: guix-git/doc/guix.texi:10936 #, no-wrap msgid "" "#~(system*\n" @@ -20612,23 +21180,23 @@ msgstr "" " \"-net\" \"user\" #$image)\n" #. type: deffn -#: guix-git/doc/guix.texi:10625 +#: guix-git/doc/guix.texi:10939 #, no-wrap msgid "{Scheme Syntax} with-parameters ((@var{parameter} @var{value}) @dots{}) @var{exp}" msgstr "{Syntaxe Scheme} with-parameters ((@var{parameter} @var{value}) @dots{}) @var{exp}" #. type: deffn -#: guix-git/doc/guix.texi:10631 +#: guix-git/doc/guix.texi:10945 msgid "This macro is similar to the @code{parameterize} form for dynamically-bound @dfn{parameters} (@pxref{Parameters,,, guile, GNU Guile Reference Manual}). The key difference is that it takes effect when the file-like object returned by @var{exp} is lowered to a derivation or store item." msgstr "Cette macro est similaire à la forme @code{parameterize} pour les @dfn{paramètres} liés dynamiquement (@pxref{Parameters,,, guile, GNU Guile Reference Manual}). La principale différence est qu'il prend effet lorsque l'objet de type fichier renvoyé par @var{exp} est abaissé à un élément de dérivation ou de stockage." #. type: deffn -#: guix-git/doc/guix.texi:10634 +#: guix-git/doc/guix.texi:10948 msgid "A typical use of @code{with-parameters} is to force the system in effect for a given object:" msgstr "Une utilisation typique de @code{with-parameters} consiste à forcer le système en vigueur pour un objet donné :" #. type: lisp -#: guix-git/doc/guix.texi:10638 +#: guix-git/doc/guix.texi:10952 #, no-wrap msgid "" "(with-parameters ((%current-system \"i686-linux\"))\n" @@ -20638,96 +21206,96 @@ msgstr "" " coreutils)\n" #. type: deffn -#: guix-git/doc/guix.texi:10642 +#: guix-git/doc/guix.texi:10956 msgid "The example above returns an object that corresponds to the i686 build of Coreutils, regardless of the current value of @code{%current-system}." msgstr "L'exemple ci-dessus renvoie un objet qui correspond à la version i686 de Coreutils, quelle que soit la valeur actuelle de @code{%current-système}." #. type: Plain text -#: guix-git/doc/guix.texi:10649 +#: guix-git/doc/guix.texi:10963 msgid "Of course, in addition to gexps embedded in ``host'' code, there are also modules containing build tools. To make it clear that they are meant to be used in the build stratum, these modules are kept in the @code{(guix build @dots{})} name space." msgstr "Bien sûr, en plus de gexps inclues dans le code « hôte », certains modules contiennent des outils de construction. Pour savoir facilement qu'ils sont à utiliser dans la strate de construction, ces modules sont gardés dans l'espace de nom @code{(guix build @dots{})}." #. type: Plain text -#: guix-git/doc/guix.texi:10655 +#: guix-git/doc/guix.texi:10969 msgid "Internally, high-level objects are @dfn{lowered}, using their compiler, to either derivations or store items. For instance, lowering a package yields a derivation, and lowering a @code{plain-file} yields a store item. This is achieved using the @code{lower-object} monadic procedure." msgstr "En interne, les objets de haut-niveau sont @dfn{abaissés}, avec leur compilateur, soit en des dérivations, soit en des objets du dépôt. Par exemple, abaisser un paquet crée une dérivation, et abaisser un @code{plain-file} crée un élément du dépôt. Cela est effectué par la procédure monadique @code{lower-object}." #. type: deffn -#: guix-git/doc/guix.texi:10656 +#: guix-git/doc/guix.texi:10970 #, no-wrap msgid "{Monadic Procedure} lower-object @var{obj} [@var{system}] @" msgstr "{Procédure monadique} lower-object @var{obj} [@var{system}] @" #. type: deffn -#: guix-git/doc/guix.texi:10662 +#: guix-git/doc/guix.texi:10976 msgid "[#:target #f] Return as a value in @code{%store-monad} the derivation or store item corresponding to @var{obj} for @var{system}, cross-compiling for @var{target} if @var{target} is true. @var{obj} must be an object that has an associated gexp compiler, such as a @code{}." msgstr "" "[#:target #f]\n" "Renvoie comme valeur dans @code{%store-monad} la dérivation ou l'élément de dépôt correspondant à @var{obj} pour @var{system}, en effectuant une compilation croisée pour @var{target} si @var{target} est vrai. @var{obj} doit être un objet auquel est associé un compilateur gexp, tel qu'un @code{}." #. type: deffn -#: guix-git/doc/guix.texi:10664 +#: guix-git/doc/guix.texi:10978 #, no-wrap msgid "{Procedure} gexp->approximate-sexp @var{gexp}" msgstr "{Procédure} gexp->approximate-sexp @var{gexp}" #. type: deffn -#: guix-git/doc/guix.texi:10672 +#: guix-git/doc/guix.texi:10986 msgid "Sometimes, it may be useful to convert a G-exp into a S-exp. For example, some linters (@pxref{Invoking guix lint}) peek into the build phases of a package to detect potential problems. This conversion can be achieved with this procedure. However, some information can be lost in the process. More specifically, lowerable objects will be silently replaced with some arbitrary object -- currently the list @code{(*approximate*)}, but this may change." msgstr "Il peut parfois être utile de convertir une G-expression en S-expression. Par exemple, certains outils d'analyse statique de style (dits « linters », @pxref{Invoking guix lint}) vérifient les phases de compilation des paquets pour détecter des problèmes potentiels. Cette conversion peut être réalisée avec cette procédure. Toutefois, certaines informations peuvent être perdues au cours de l'opération. Plus spécifiquement, les objets abaissables seront remplacés silencieusement par un objet arbitraire -- pour l'instant la liste @code{(*approximate*)}, mais cela pourrait changer." #. type: section -#: guix-git/doc/guix.texi:10675 +#: guix-git/doc/guix.texi:10989 #, no-wrap msgid "Invoking @command{guix repl}" msgstr "Invoquer @command{guix repl}" #. type: cindex -#: guix-git/doc/guix.texi:10677 +#: guix-git/doc/guix.texi:10991 #, no-wrap msgid "REPL, read-eval-print loop, script" msgstr "REPL, boucle de lecture-évaluation-impression, script" #. type: Plain text -#: guix-git/doc/guix.texi:10687 +#: guix-git/doc/guix.texi:11001 msgid "The @command{guix repl} command makes it easier to program Guix in Guile by launching a Guile @dfn{read-eval-print loop} (REPL) for interactive programming (@pxref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}), or by running Guile scripts (@pxref{Running Guile Scripts,,, guile, GNU Guile Reference Manual}). Compared to just launching the @command{guile} command, @command{guix repl} guarantees that all the Guix modules and all its dependencies are available in the search path." msgstr "La commande @command{guix repl} facilite la programmation de Guix dans Guile en lançant une boucle Guile @dfn{read-eval-print}. (REPL) pour la programmation interactive (@pxref{Using Guile Interactively, , , guile, GNU Guile Reference Manual}), ou en exécutant des scripts Guile (@pxref{Running Guile Scripts, , guile, GNU Guile Reference Manual}). Par rapport au simple lancement de la commande @command{guile}, @command{guix repl} garantit que tous les modules Guix et toutes ses dépendances sont disponibles dans le chemin de recherche." #. type: example -#: guix-git/doc/guix.texi:10692 +#: guix-git/doc/guix.texi:11006 #, no-wrap msgid "guix repl @var{options} [@var{file} @var{args}]\n" msgstr "guix repl @var{option} @var{fichier} @var{args}]\n" #. type: Plain text -#: guix-git/doc/guix.texi:10696 +#: guix-git/doc/guix.texi:11010 msgid "When a @var{file} argument is provided, @var{file} is executed as a Guile scripts:" msgstr "Lorsqu'un argument @var{file} est fourni, @var{file} est exécuté comme un script Guile :" #. type: example -#: guix-git/doc/guix.texi:10699 +#: guix-git/doc/guix.texi:11013 #, no-wrap msgid "guix repl my-script.scm\n" msgstr "guix repl mon-script.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:10703 +#: guix-git/doc/guix.texi:11017 msgid "To pass arguments to the script, use @code{--} to prevent them from being interpreted as arguments to @command{guix repl} itself:" msgstr "Pour passer des arguments au script, utilisez @code{--} pour éviter qu'ils ne soient interprétés comme des arguments pour @command{guix repl} lui-même :" #. type: example -#: guix-git/doc/guix.texi:10706 +#: guix-git/doc/guix.texi:11020 #, no-wrap msgid "guix repl -- my-script.scm --input=foo.txt\n" msgstr "guix repl -- mon-script.scm --input=toto.txt\n" #. type: Plain text -#: guix-git/doc/guix.texi:10711 +#: guix-git/doc/guix.texi:11025 msgid "To make a script executable directly from the shell, using the guix executable that is on the user's search path, add the following two lines at the top of the script:" msgstr "Pour rendre exécutable un script directement depuis le shell, en utilisant l'exécutable guix qui se trouve dans le chemin de recherche utilisateur·rice, ajoutez les deux lignes suivantes en haut du script :" #. type: example -#: guix-git/doc/guix.texi:10715 +#: guix-git/doc/guix.texi:11029 #, no-wrap msgid "" "@code{#!/usr/bin/env -S guix repl --}\n" @@ -20737,12 +21305,12 @@ msgstr "" "@code{!#}\n" #. type: Plain text -#: guix-git/doc/guix.texi:10718 +#: guix-git/doc/guix.texi:11032 msgid "Without a file name argument, a Guile REPL is started:" msgstr "En l'absence d'un argument de nom de fichier, un REPL guile est lancé :" #. type: example -#: guix-git/doc/guix.texi:10724 +#: guix-git/doc/guix.texi:11038 #, no-wrap msgid "" "$ guix repl\n" @@ -20756,169 +21324,169 @@ msgstr "" "$1 = #\n" #. type: Plain text -#: guix-git/doc/guix.texi:10731 +#: guix-git/doc/guix.texi:11045 msgid "In addition, @command{guix repl} implements a simple machine-readable REPL protocol for use by @code{(guix inferior)}, a facility to interact with @dfn{inferiors}, separate processes running a potentially different revision of Guix." msgstr "En plus, @command{guix repl} implémente un protocole REPL simple lisible par une machine à utiliser avec @code{(guix inferior)}, un dispositif pour interagir avec des @dfn{inférieurs}, des processus séparés qui font tourner une version potentiellement différente de Guix." #. type: Plain text -#: guix-git/doc/guix.texi:10733 +#: guix-git/doc/guix.texi:11047 msgid "The available options are as follows:" msgstr "Les options disponibles sont les suivante :" #. type: item -#: guix-git/doc/guix.texi:10735 guix-git/doc/guix.texi:13411 +#: guix-git/doc/guix.texi:11049 guix-git/doc/guix.texi:13768 #, no-wrap msgid "--type=@var{type}" msgstr "--type=@var{type}" #. type: itemx -#: guix-git/doc/guix.texi:10736 guix-git/doc/guix.texi:13412 -#: guix-git/doc/guix.texi:35281 +#: guix-git/doc/guix.texi:11050 guix-git/doc/guix.texi:13769 +#: guix-git/doc/guix.texi:35725 #, no-wrap msgid "-t @var{type}" msgstr "-t @var{type}" #. type: table -#: guix-git/doc/guix.texi:10738 +#: guix-git/doc/guix.texi:11052 msgid "Start a REPL of the given @var{TYPE}, which can be one of the following:" msgstr "Démarrer un REPL du @var{type} donné, qui peut être l'un de ces types :" #. type: item -#: guix-git/doc/guix.texi:10740 +#: guix-git/doc/guix.texi:11054 #, no-wrap msgid "guile" msgstr "guile" #. type: table -#: guix-git/doc/guix.texi:10742 +#: guix-git/doc/guix.texi:11056 msgid "This is default, and it spawns a standard full-featured Guile REPL." msgstr "C'est la valeur par défaut. Elle démarre un REPL Guile standard fonctionnel." #. type: item -#: guix-git/doc/guix.texi:10742 +#: guix-git/doc/guix.texi:11056 #, no-wrap msgid "machine" msgstr "machine" #. type: table -#: guix-git/doc/guix.texi:10745 +#: guix-git/doc/guix.texi:11059 msgid "Spawn a REPL that uses the machine-readable protocol. This is the protocol that the @code{(guix inferior)} module speaks." msgstr "Démarre un REPL qui utilise le protocole lisible par machine. C'est le protocole que parle le module @code{(guix inferior)}." #. type: table -#: guix-git/doc/guix.texi:10751 +#: guix-git/doc/guix.texi:11065 msgid "By default, @command{guix repl} reads from standard input and writes to standard output. When this option is passed, it will instead listen for connections on @var{endpoint}. Here are examples of valid options:" msgstr "Par défaut, @command{guix repl} lit depuis l'entrée standard et écrit sur la sortie standard. Lorsque cette option est passée, il écoutera plutôt les connexions sur @var{endpoint}. Voici un exemple d'options valides :" #. type: item -#: guix-git/doc/guix.texi:10753 +#: guix-git/doc/guix.texi:11067 #, no-wrap msgid "--listen=tcp:37146" msgstr "--listen=tcp:37146" #. type: table -#: guix-git/doc/guix.texi:10755 +#: guix-git/doc/guix.texi:11069 msgid "Accept connections on localhost on port 37146." msgstr "Accepte les connexions sur localhost, sur le port 31." #. type: item -#: guix-git/doc/guix.texi:10756 +#: guix-git/doc/guix.texi:11070 #, no-wrap msgid "--listen=unix:/tmp/socket" msgstr "--listen=unix:/tmp/socket" #. type: table -#: guix-git/doc/guix.texi:10758 +#: guix-git/doc/guix.texi:11072 msgid "Accept connections on the Unix-domain socket @file{/tmp/socket}." msgstr "Accepte les connexions sur le socket Unix-domain @file{/tmp/socket}." #. type: item -#: guix-git/doc/guix.texi:10760 guix-git/doc/guix.texi:10865 -#: guix-git/doc/guix.texi:12763 guix-git/doc/guix.texi:12840 -#: guix-git/doc/guix.texi:13046 guix-git/doc/guix.texi:13191 -#: guix-git/doc/guix.texi:13459 +#: guix-git/doc/guix.texi:11074 guix-git/doc/guix.texi:11179 +#: guix-git/doc/guix.texi:13078 guix-git/doc/guix.texi:13196 +#: guix-git/doc/guix.texi:13403 guix-git/doc/guix.texi:13548 +#: guix-git/doc/guix.texi:13816 #, no-wrap msgid "--load-path=@var{directory}" msgstr "--load-path=@var{répertoire}" #. type: itemx -#: guix-git/doc/guix.texi:10761 guix-git/doc/guix.texi:10866 -#: guix-git/doc/guix.texi:12841 guix-git/doc/guix.texi:13047 -#: guix-git/doc/guix.texi:13192 guix-git/doc/guix.texi:13460 +#: guix-git/doc/guix.texi:11075 guix-git/doc/guix.texi:11180 +#: guix-git/doc/guix.texi:13197 guix-git/doc/guix.texi:13404 +#: guix-git/doc/guix.texi:13549 guix-git/doc/guix.texi:13817 #, no-wrap msgid "-L @var{directory}" msgstr "-L @var{répertoire}" #. type: table -#: guix-git/doc/guix.texi:10764 guix-git/doc/guix.texi:10869 -#: guix-git/doc/guix.texi:12766 guix-git/doc/guix.texi:12844 -#: guix-git/doc/guix.texi:13050 guix-git/doc/guix.texi:13195 -#: guix-git/doc/guix.texi:13463 +#: guix-git/doc/guix.texi:11078 guix-git/doc/guix.texi:11183 +#: guix-git/doc/guix.texi:13081 guix-git/doc/guix.texi:13200 +#: guix-git/doc/guix.texi:13407 guix-git/doc/guix.texi:13552 +#: guix-git/doc/guix.texi:13820 msgid "Add @var{directory} to the front of the package module search path (@pxref{Package Modules})." msgstr "Ajoute @var{répertoire} au début du chemin de recherche de module de paquets (@pxref{Package Modules})." #. type: table -#: guix-git/doc/guix.texi:10767 +#: guix-git/doc/guix.texi:11081 msgid "This allows users to define their own packages and make them visible to the script or REPL." msgstr "Cela permet à des utilisateurs de définir leur propres paquets et les rendre disponibles au script ou au REPL." #. type: itemx -#: guix-git/doc/guix.texi:10768 guix-git/doc/guix.texi:11390 +#: guix-git/doc/guix.texi:11082 guix-git/doc/guix.texi:11704 #, no-wrap msgid "-q" msgstr "-q" #. type: table -#: guix-git/doc/guix.texi:10771 +#: guix-git/doc/guix.texi:11085 msgid "Inhibit loading of the @file{~/.guile} file. By default, that configuration file is loaded when spawning a @code{guile} REPL." msgstr "Inhiber le chargement du fichier @file{~/.guile}. Par défaut, ce fichier de configuration est chargé lors de la création d'un fichier @code{guile}. REPL." #. type: Plain text -#: guix-git/doc/guix.texi:10781 +#: guix-git/doc/guix.texi:11095 msgid "This section describes Guix command-line utilities. Some of them are primarily targeted at developers and users who write new package definitions, while others are more generally useful. They complement the Scheme programming interface of Guix in a convenient way." msgstr "Cette section décrit les utilitaires en ligne de commande de Guix. certains sont surtout faits pour les personnes qui écrivent de nouvelles définitions de paquets tandis que d'autres sont plus utiles pour une utilisation générale. Ils complètent l'interface de programmation Scheme de Guix d'une manière pratique." #. type: cindex -#: guix-git/doc/guix.texi:10804 +#: guix-git/doc/guix.texi:11118 #, no-wrap msgid "package building" msgstr "construction de paquets" #. type: command{#1} -#: guix-git/doc/guix.texi:10805 +#: guix-git/doc/guix.texi:11119 #, no-wrap msgid "guix build" msgstr "guix build" #. type: Plain text -#: guix-git/doc/guix.texi:10811 +#: guix-git/doc/guix.texi:11125 msgid "The @command{guix build} command builds packages or derivations and their dependencies, and prints the resulting store paths. Note that it does not modify the user's profile---this is the job of the @command{guix package} command (@pxref{Invoking guix package}). Thus, it is mainly useful for distribution developers." msgstr "La commande @command{guix build} construit des paquets ou des dérivations et leurs dépendances et affiche les chemins du dépôt qui en résulte. Remarquez qu'elle ne modifie pas le profil de l'utilisateur — c'est le travail de la commande @command{guix package} (@pxref{Invoking guix package}). Ainsi, elle est surtout utile pour les personnes qui développent la distribution." #. type: example -#: guix-git/doc/guix.texi:10816 +#: guix-git/doc/guix.texi:11130 #, no-wrap msgid "guix build @var{options} @var{package-or-derivation}@dots{}\n" msgstr "guix build @var{options} @var{package-or-derivation}@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:10821 +#: guix-git/doc/guix.texi:11135 msgid "As an example, the following command builds the latest versions of Emacs and of Guile, displays their build logs, and finally displays the resulting directories:" msgstr "Par exemple, la commande suivante construit la dernière version d'Emacs et de Guile, affiche leur journaux de construction et enfin affiche les répertoires des résultats :" #. type: example -#: guix-git/doc/guix.texi:10824 +#: guix-git/doc/guix.texi:11138 #, no-wrap msgid "guix build emacs guile\n" msgstr "guix build emacs guile\n" #. type: Plain text -#: guix-git/doc/guix.texi:10827 +#: guix-git/doc/guix.texi:11141 msgid "Similarly, the following command builds all the available packages:" msgstr "De même, la commande suivante construit tous les paquets disponibles :" #. type: example -#: guix-git/doc/guix.texi:10831 +#: guix-git/doc/guix.texi:11145 #, no-wrap msgid "" "guix build --quiet --keep-going \\\n" @@ -20928,328 +21496,328 @@ msgstr "" " $(guix package -A | awk '@{ print $1 \"@@\" $2 @}')\n" #. type: Plain text -#: guix-git/doc/guix.texi:10839 +#: guix-git/doc/guix.texi:11153 msgid "@var{package-or-derivation} may be either the name of a package found in the software distribution such as @code{coreutils} or @code{coreutils@@8.20}, or a derivation such as @file{/gnu/store/@dots{}-coreutils-8.19.drv}. In the former case, a package with the corresponding name (and optionally version) is searched for among the GNU distribution modules (@pxref{Package Modules})." msgstr "@var{package-or-derivation} peut être soit le nom d'un paquet trouvé dans la distribution logicielle comme @code{coreutils}, soit @code{coreutils@@8.20}, soit une dérivation comme @file{/gnu/store/@dots{}-coreutils-8.19.drv}. Dans le premier cas, la commande cherchera un paquet avec le nom correspondant (et éventuellement la version) dans les modules de la distribution GNU (@pxref{Package Modules})." #. type: Plain text -#: guix-git/doc/guix.texi:10844 +#: guix-git/doc/guix.texi:11158 msgid "Alternatively, the @option{--expression} option may be used to specify a Scheme expression that evaluates to a package; this is useful when disambiguating among several same-named packages or package variants is needed." msgstr "Autrement, l'option @option{--expression} peut être utilisée pour spécifier une expression Scheme qui s'évalue en un paquet ; c'est utile lorsqu'il est nécessaire de faire la distinction entre plusieurs paquets ou variantes de paquets portant le même nom." #. type: Plain text -#: guix-git/doc/guix.texi:10847 +#: guix-git/doc/guix.texi:11161 msgid "There may be zero or more @var{options}. The available options are described in the subsections below." msgstr "Il peut y avoir aucune, une ou plusieurs @var{options}. Les options disponibles sont décrites dans les sous-sections ci-dessous." #. type: Plain text -#: guix-git/doc/guix.texi:10862 +#: guix-git/doc/guix.texi:11176 msgid "A number of options that control the build process are common to @command{guix build} and other commands that can spawn builds, such as @command{guix package} or @command{guix archive}. These are the following:" msgstr "Un certain nombre d'options qui contrôlent le processus de construction sont communes avec @command{guix build} et les autres commandes qui peuvent générer des constructions, comme @command{guix package} ou @command{guix archive}. Voici ces options :" #. type: table -#: guix-git/doc/guix.texi:10872 guix-git/doc/guix.texi:12769 -#: guix-git/doc/guix.texi:13053 guix-git/doc/guix.texi:13198 -#: guix-git/doc/guix.texi:13466 +#: guix-git/doc/guix.texi:11186 guix-git/doc/guix.texi:13084 +#: guix-git/doc/guix.texi:13410 guix-git/doc/guix.texi:13555 +#: guix-git/doc/guix.texi:13823 msgid "This allows users to define their own packages and make them visible to the command-line tools." msgstr "Cela permet à des utilisateurs de définir leur propres paquets et les rendre disponibles aux outils en ligne de commande." #. type: item -#: guix-git/doc/guix.texi:10873 +#: guix-git/doc/guix.texi:11187 #, no-wrap msgid "--keep-failed" msgstr "--keep-failed" #. type: itemx -#: guix-git/doc/guix.texi:10874 +#: guix-git/doc/guix.texi:11188 #, no-wrap msgid "-K" msgstr "-K" #. type: table -#: guix-git/doc/guix.texi:10880 +#: guix-git/doc/guix.texi:11194 msgid "Keep the build tree of failed builds. Thus, if a build fails, its build tree is kept under @file{/tmp}, in a directory whose name is shown at the end of the build log. This is useful when debugging build issues. @xref{Debugging Build Failures}, for tips and tricks on how to debug build issues." msgstr "Garde l'arborescence de construction des constructions en échec. Ainsi, si une construction échoue, son arborescence de construction est préservée dans @file{/tmp}, dans un répertoire dont le nom est affiché à la fin du journal de construction. Cela est utile pour déboguer des échecs de construction. @xref{Debugging Build Failures}, pour des astuces sur la manière de déboguer des problèmes de construction." #. type: table -#: guix-git/doc/guix.texi:10884 +#: guix-git/doc/guix.texi:11198 msgid "This option implies @option{--no-offload}, and it has no effect when connecting to a remote daemon with a @code{guix://} URI (@pxref{The Store, the @env{GUIX_DAEMON_SOCKET} variable})." msgstr "Cette option implique @option{--no-offload}, et elle n'a pas d'effet quand elle est connectée à un démon distant avec une @code{guix://} URI (@pxref{The Store, the @env{GUIX_DAEMON_SOCKET} variable})." #. type: item -#: guix-git/doc/guix.texi:10885 +#: guix-git/doc/guix.texi:11199 #, no-wrap msgid "--keep-going" msgstr "--keep-going" #. type: itemx -#: guix-git/doc/guix.texi:10886 +#: guix-git/doc/guix.texi:11200 #, no-wrap msgid "-k" msgstr "-k" #. type: table -#: guix-git/doc/guix.texi:10889 +#: guix-git/doc/guix.texi:11203 msgid "Keep going when some of the derivations fail to build; return only once all the builds have either completed or failed." msgstr "Continue lorsque certaines dérivations échouent ; ne s'arrête que lorsque toutes les constructions ont soit réussies, soit échouées." #. type: table -#: guix-git/doc/guix.texi:10892 +#: guix-git/doc/guix.texi:11206 msgid "The default behavior is to stop as soon as one of the specified derivations has failed." msgstr "Le comportement par défaut est de s'arrêter dès qu'une des dérivations spécifiées échoue." #. type: table -#: guix-git/doc/guix.texi:10896 +#: guix-git/doc/guix.texi:11210 msgid "Do not build the derivations." msgstr "Ne pas construire les dérivations." #. type: anchor{#1} -#: guix-git/doc/guix.texi:10898 +#: guix-git/doc/guix.texi:11212 msgid "fallback-option" msgstr "option de repli" #. type: item -#: guix-git/doc/guix.texi:10898 +#: guix-git/doc/guix.texi:11212 #, no-wrap msgid "--fallback" msgstr "--fallback" #. type: table -#: guix-git/doc/guix.texi:10901 +#: guix-git/doc/guix.texi:11215 msgid "When substituting a pre-built binary fails, fall back to building packages locally (@pxref{Substitution Failure})." msgstr "Lorsque la substitution d'un binaire pré-compilé échoue, construit les paquets localement à la place (@pxref{Substitution Failure})." #. type: anchor{#1} -#: guix-git/doc/guix.texi:10907 +#: guix-git/doc/guix.texi:11221 msgid "client-substitute-urls" msgstr "client-substitute-urls" #. type: table -#: guix-git/doc/guix.texi:10907 +#: guix-git/doc/guix.texi:11221 msgid "Consider @var{urls} the whitespace-separated list of substitute source URLs, overriding the default list of URLs of @command{guix-daemon} (@pxref{daemon-substitute-urls,, @command{guix-daemon} URLs})." msgstr "Considère @var{urls} comme une liste d'URL de sources de substituts séparés par des espaces, et remplace la liste par défaut d'URL de @command{guix-daemon} (@pxref{daemon-substitute-urls,, @command{guix-daemon} URLs})." #. type: table -#: guix-git/doc/guix.texi:10911 +#: guix-git/doc/guix.texi:11225 msgid "This means that substitutes may be downloaded from @var{urls}, provided they are signed by a key authorized by the system administrator (@pxref{Substitutes})." msgstr "Cela signifie que les substituts peuvent être téléchargés depuis @var{urls}, tant qu'ils sont signés par une clef autorisée par l'administrateur système (@pxref{Substituts})." #. type: table -#: guix-git/doc/guix.texi:10914 +#: guix-git/doc/guix.texi:11228 msgid "When @var{urls} is the empty string, substitutes are effectively disabled." msgstr "Lorsque @var{urls} est la chaîne vide, cela a pour effet de désactiver la substitution." #. type: item -#: guix-git/doc/guix.texi:10920 +#: guix-git/doc/guix.texi:11234 #, no-wrap msgid "--no-grafts" msgstr "--no-grafts" #. type: table -#: guix-git/doc/guix.texi:10924 +#: guix-git/doc/guix.texi:11238 msgid "Do not ``graft'' packages. In practice, this means that package updates available as grafts are not applied. @xref{Security Updates}, for more information on grafts." msgstr "Ne par « greffer » les paquets. En pratique, cela signifie que les mises à jour des paquets disponibles comme des greffes ne sont pas appliquées. @xref{Security Updates}, pour plus d'information sur les greffes." #. type: item -#: guix-git/doc/guix.texi:10925 +#: guix-git/doc/guix.texi:11239 #, no-wrap msgid "--rounds=@var{n}" msgstr "--rounds=@var{n}" #. type: table -#: guix-git/doc/guix.texi:10928 +#: guix-git/doc/guix.texi:11242 msgid "Build each derivation @var{n} times in a row, and raise an error if consecutive build results are not bit-for-bit identical." msgstr "Construit chaque dérivation @var{n} fois d'affilé, et renvoie une erreur si les constructions consécutives ne sont pas identiques bit-à-bit." #. type: table -#: guix-git/doc/guix.texi:10933 +#: guix-git/doc/guix.texi:11247 msgid "This is a useful way to detect non-deterministic builds processes. Non-deterministic build processes are a problem because they make it practically impossible for users to @emph{verify} whether third-party binaries are genuine. @xref{Invoking guix challenge}, for more." msgstr "Cela est une manière utile pour détecter des processus de construction non déterministes. Les processus de construction non déterministes sont problématiques car ils rendent pratiquement impossible la @emph{vérification} par les utilisateurs de l'authenticité de binaires tiers. @xref{Invoking guix challenge}, pour plus d'informations." #. type: table -#: guix-git/doc/guix.texi:10949 +#: guix-git/doc/guix.texi:11263 msgid "By default, the daemon's setting is honored (@pxref{Invoking guix-daemon, @option{--max-silent-time}})." msgstr "Par défaut, le paramètre du démon est pris en compte (@pxref{Invoquer guix-daemon, @option{--max-silent-time}})." #. type: table -#: guix-git/doc/guix.texi:10956 +#: guix-git/doc/guix.texi:11270 msgid "By default, the daemon's setting is honored (@pxref{Invoking guix-daemon, @option{--timeout}})." msgstr "Par défaut, le paramètre du démon est pris en compte (@pxref{Invoquer guix-daemon, @option{--timeout}})." #. type: cindex -#: guix-git/doc/guix.texi:10959 +#: guix-git/doc/guix.texi:11273 #, no-wrap msgid "verbosity, of the command-line tools" msgstr "verbosité, des outils en ligne de commande" #. type: cindex -#: guix-git/doc/guix.texi:10960 +#: guix-git/doc/guix.texi:11274 #, no-wrap msgid "build logs, verbosity" msgstr "journaux de construction, verbosité" #. type: item -#: guix-git/doc/guix.texi:10961 +#: guix-git/doc/guix.texi:11275 #, no-wrap msgid "-v @var{level}" msgstr "-v [@var{niveau}]" #. type: itemx -#: guix-git/doc/guix.texi:10962 +#: guix-git/doc/guix.texi:11276 #, no-wrap msgid "--verbosity=@var{level}" msgstr "--verbosity=@var{niveau}" #. type: table -#: guix-git/doc/guix.texi:10967 +#: guix-git/doc/guix.texi:11281 msgid "Use the given verbosity @var{level}, an integer. Choosing 0 means that no output is produced, 1 is for quiet output; 2 is similar to 1 but it additionally displays download URLs; 3 shows all the build log output on standard error." msgstr "Utiliser le @var{niveau} de verbosité, en tant qu'entier. 0 signifie qu'aucune sortie n'est produite, 1 signifie une sortie silencieuse ; 2 est similaire à 1 mais affiche aussi les URL des téléchargements ; 3 montre tous les journaux de construction sur la sortie d'erreur standard." #. type: table -#: guix-git/doc/guix.texi:10972 +#: guix-git/doc/guix.texi:11286 msgid "Allow the use of up to @var{n} CPU cores for the build. The special value @code{0} means to use as many CPU cores as available." msgstr "Permet d'utiliser jusqu'à @var{n} cœurs du CPU pour la construction. La valeur spéciale @code{0} signifie autant de cœurs que possible." #. type: table -#: guix-git/doc/guix.texi:10978 +#: guix-git/doc/guix.texi:11292 msgid "Allow at most @var{n} build jobs in parallel. @xref{Invoking guix-daemon, @option{--max-jobs}}, for details about this option and the equivalent @command{guix-daemon} option." msgstr "Permettre au maximum à @var{n} de construire des jobs en parallèle. @xref{Invoquer guix-daemon, @option{--max-jobs}}, pour plus de détails sur cette option et l'option équivalente @command{guix-daemon}." #. type: item -#: guix-git/doc/guix.texi:10979 +#: guix-git/doc/guix.texi:11293 #, no-wrap msgid "--debug=@var{level}" msgstr "--debug=@var{niveau}" #. type: table -#: guix-git/doc/guix.texi:10983 +#: guix-git/doc/guix.texi:11297 msgid "Produce debugging output coming from the build daemon. @var{level} must be an integer between 0 and 5; higher means more verbose output. Setting a level of 4 or more may be helpful when debugging setup issues with the build daemon." msgstr "Produire une sortie de débogage qui provient du démon de construction. @var{niveau} doit être un entier entre 0 et 5 ; plus grand est ce nombre, plus verbeuse sera la sortie. Indiquer un niveau de 4 ou plus peut être utile pour déboguer des problèmes d'installation avec le démon de construction." #. type: Plain text -#: guix-git/doc/guix.texi:10990 +#: guix-git/doc/guix.texi:11304 msgid "Behind the scenes, @command{guix build} is essentially an interface to the @code{package-derivation} procedure of the @code{(guix packages)} module, and to the @code{build-derivations} procedure of the @code{(guix derivations)} module." msgstr "Sous le capot, @command{guix build} est surtout une interface à la procédure @code{package-derivation} du module @code{(guix packages)}, et à la procédure @code{build-derivations} du module @code{(guix derivations)}." #. type: Plain text -#: guix-git/doc/guix.texi:10994 +#: guix-git/doc/guix.texi:11308 msgid "In addition to options explicitly passed on the command line, @command{guix build} and other @command{guix} commands that support building honor the @env{GUIX_BUILD_OPTIONS} environment variable." msgstr "En plus des options passées explicitement par la ligne de commande, @command{guix build} et les autres commandes @command{guix} qui peuvent effectuer des constructions permettent la variable d'environnement @env{GUIX_BUILD_OPTIONS}." #. type: defvr -#: guix-git/doc/guix.texi:10995 +#: guix-git/doc/guix.texi:11309 #, no-wrap msgid "{Environment Variable} GUIX_BUILD_OPTIONS" msgstr "{Variable d'environnement} GUIX_BUILD_OPTIONS" #. type: defvr -#: guix-git/doc/guix.texi:11000 +#: guix-git/doc/guix.texi:11314 msgid "Users can define this variable to a list of command line options that will automatically be used by @command{guix build} and other @command{guix} commands that can perform builds, as in the example below:" msgstr "Les utilisateurs peuvent définir cette variable à une liste d'options de la ligne de commande qui seront automatiquement utilisées par @command{guix build} et les autres commandes @command{guix} qui peuvent effectuer des constructions, comme dans l'exemple suivant :" #. type: example -#: guix-git/doc/guix.texi:11003 +#: guix-git/doc/guix.texi:11317 #, no-wrap msgid "$ export GUIX_BUILD_OPTIONS=\"--no-substitutes -c 2 -L /foo/bar\"\n" msgstr "$ export GUIX_BUILD_OPTIONS=\"--no-substitutes -c 2 -L /toto/titi\"\n" #. type: defvr -#: guix-git/doc/guix.texi:11007 +#: guix-git/doc/guix.texi:11321 msgid "These options are parsed independently, and the result is appended to the parsed command-line options." msgstr "Ces options sont analysées indépendamment, et le résultat est ajouté aux options de la ligne de commande analysées." #. type: cindex -#: guix-git/doc/guix.texi:11013 +#: guix-git/doc/guix.texi:11327 #, no-wrap msgid "package variants" msgstr "variantes de paquets" #. type: Plain text -#: guix-git/doc/guix.texi:11021 +#: guix-git/doc/guix.texi:11335 msgid "Another set of command-line options supported by @command{guix build} and also @command{guix package} are @dfn{package transformation options}. These are options that make it possible to define @dfn{package variants}---for instance, packages built from different source code. This is a convenient way to create customized packages on the fly without having to type in the definitions of package variants (@pxref{Defining Packages})." msgstr "Un autre ensemble d'options de la ligne de commande supportés par @command{guix build} et aussi @command{guix package} sont les @dfn{options de transformation de paquets}. Ce sont des options qui rendent possible la définition de @dfn{variantes de paquets} — par exemple, des paquets construit à partir de sources différentes. C'est une manière simple de créer des paquets personnalisés à la volée sans avoir à taper les définitions de variantes de paquets (@pxref{Defining Packages})." #. type: Plain text -#: guix-git/doc/guix.texi:11025 +#: guix-git/doc/guix.texi:11339 msgid "Package transformation options are preserved across upgrades: @command{guix upgrade} attempts to apply transformation options initially used when creating the profile to the upgraded packages." msgstr "Les options de transformation des paquets sont préservées dans les mises à jour : @command{guix upgrade} tente d'appliquer aux paquets mis à jour les options de transformation initialement utilisées lors de la création du profil." #. type: Plain text -#: guix-git/doc/guix.texi:11030 +#: guix-git/doc/guix.texi:11344 msgid "The available options are listed below. Most commands support them and also support a @option{--help-transform} option that lists all the available options and a synopsis (these options are not shown in the @option{--help} output for brevity)." msgstr "Les options disponibles sont énumérées ci-dessous. La plupart des commandes les prennent en charge, ainsi qu'une option @option{--help-transform} qui liste toutes les options disponibles et un synopsis (ces options ne sont pas affichées dans la sortie @option{--help} par souci de concision)." #. type: cindex -#: guix-git/doc/guix.texi:11033 +#: guix-git/doc/guix.texi:11347 #, fuzzy, no-wrap #| msgid "formatting code" msgid "performance, tuning code" msgstr "formater le code" #. type: cindex -#: guix-git/doc/guix.texi:11034 +#: guix-git/doc/guix.texi:11348 #, fuzzy, no-wrap #| msgid "customization, of packages" msgid "optimization, of package code" msgstr "personnalisation, des paquets" #. type: cindex -#: guix-git/doc/guix.texi:11035 +#: guix-git/doc/guix.texi:11349 #, fuzzy, no-wrap #| msgid "inputs, of packages" msgid "tuning, of package code" msgstr "entrées, des paquets" #. type: cindex -#: guix-git/doc/guix.texi:11036 +#: guix-git/doc/guix.texi:11350 #, fuzzy, no-wrap #| msgid "sound support" msgid "SIMD support" msgstr "support du son" #. type: cindex -#: guix-git/doc/guix.texi:11037 +#: guix-git/doc/guix.texi:11351 #, fuzzy, no-wrap #| msgid "installing packages" msgid "tunable packages" msgstr "installer des paquets" #. type: cindex -#: guix-git/doc/guix.texi:11038 +#: guix-git/doc/guix.texi:11352 #, fuzzy, no-wrap #| msgid "package version" msgid "package multi-versioning" msgstr "version du paquet" #. type: item -#: guix-git/doc/guix.texi:11039 +#: guix-git/doc/guix.texi:11353 #, fuzzy, no-wrap #| msgid "--repl[=@var{port}]" msgid "--tune[=@var{cpu}]" msgstr "--repl[=@var{port}]" #. type: table -#: guix-git/doc/guix.texi:11043 +#: guix-git/doc/guix.texi:11357 msgid "Use versions of the packages marked as ``tunable'' optimized for @var{cpu}. When @var{cpu} is @code{native}, or when it is omitted, tune for the CPU on which the @command{guix} command is running." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11049 +#: guix-git/doc/guix.texi:11363 msgid "Valid @var{cpu} names are those recognized by the underlying compiler, by default the GNU Compiler Collection. On x86_64 processors, this includes CPU names such as @code{nehalem}, @code{haswell}, and @code{skylake} (@pxref{x86 Options, @code{-march},, gcc, Using the GNU Compiler Collection (GCC)})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11056 +#: guix-git/doc/guix.texi:11370 msgid "As new generations of CPUs come out, they augment the standard instruction set architecture (ISA) with additional instructions, in particular instructions for single-instruction/multiple-data (SIMD) parallel processing. For example, while Core2 and Skylake CPUs both implement the x86_64 ISA, only the latter supports AVX2 SIMD instructions." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11063 +#: guix-git/doc/guix.texi:11377 msgid "The primary gain one can expect from @option{--tune} is for programs that can make use of those SIMD capabilities @emph{and} that do not already have a mechanism to select the right optimized code at run time. Packages that have the @code{tunable?} property set are considered @dfn{tunable packages} by the @option{--tune} option; a package definition with the property set looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:11068 +#: guix-git/doc/guix.texi:11382 #, fuzzy, no-wrap #| msgid "" #| "(package\n" @@ -21268,7 +21836,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:11072 +#: guix-git/doc/guix.texi:11386 #, no-wrap msgid "" " ;; This package may benefit from SIMD extensions so\n" @@ -21277,87 +21845,87 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11077 +#: guix-git/doc/guix.texi:11391 msgid "Other packages are not considered tunable. This allows Guix to use generic binaries in the cases where tuning for a specific CPU is unlikely to provide any gain." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11083 +#: guix-git/doc/guix.texi:11397 msgid "Tuned packages are built with @code{-march=@var{CPU}}; under the hood, the @option{-march} option is passed to the actual wrapper by a compiler wrapper. Since the build machine may not be able to run code for the target CPU micro-architecture, the test suite is not run when building a tuned package." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11087 +#: guix-git/doc/guix.texi:11401 msgid "To reduce rebuilds to the minimum, tuned packages are @emph{grafted} onto packages that depend on them (@pxref{Security Updates, grafts}). Thus, using @option{--no-grafts} cancels the effect of @option{--tune}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11093 +#: guix-git/doc/guix.texi:11407 msgid "We call this technique @dfn{package multi-versioning}: several variants of tunable packages may be built, one for each CPU variant. It is the coarse-grain counterpart of @dfn{function multi-versioning} as implemented by the GNU tool chain (@pxref{Function Multiversioning,,, gcc, Using the GNU Compiler Collection (GCC)})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11094 +#: guix-git/doc/guix.texi:11408 #, no-wrap msgid "--with-source=@var{source}" msgstr "--with-source=@var{source}" #. type: itemx -#: guix-git/doc/guix.texi:11095 +#: guix-git/doc/guix.texi:11409 #, no-wrap msgid "--with-source=@var{package}=@var{source}" msgstr "--with-source=@var{paquet}=@var{source}" #. type: itemx -#: guix-git/doc/guix.texi:11096 +#: guix-git/doc/guix.texi:11410 #, no-wrap msgid "--with-source=@var{package}@@@var{version}=@var{source}" msgstr "--with-source=@var{paquet}@@@var{version}=@var{source}" #. type: table -#: guix-git/doc/guix.texi:11101 +#: guix-git/doc/guix.texi:11415 msgid "Use @var{source} as the source of @var{package}, and @var{version} as its version number. @var{source} must be a file name or a URL, as for @command{guix download} (@pxref{Invoking guix download})." msgstr "Utilise @var{source} comme la source de @var{paquet}, et @var{version} comme son numéro de version. @var{source} doit être un nom de fichier ou une URL, comme pour @command{guix download} (@pxref{Invoking guix download})." #. type: table -#: guix-git/doc/guix.texi:11107 +#: guix-git/doc/guix.texi:11421 msgid "When @var{package} is omitted, it is taken to be the package name specified on the command line that matches the base of @var{source}---e.g., if @var{source} is @code{/src/guile-2.0.10.tar.gz}, the corresponding package is @code{guile}." msgstr "Lorsque @var{paquet} est omis, la commande utilisera le nom de paquet spécifié par la base de @var{source} — p.@: ex.@: si @var{source} est @code{/src/guix-2.0.10.tar.gz}, le paquet correspondant est @code{guile}." #. type: table -#: guix-git/doc/guix.texi:11110 +#: guix-git/doc/guix.texi:11424 msgid "Likewise, when @var{version} is omitted, the version string is inferred from @var{source}; in the previous example, it is @code{2.0.10}." msgstr "De même, lorsque @var{version} est omis, la chaîne de version est inférée à partir de @var{source} ; dans l'exemple précédent, il s'agit de @code{2.0.10}." #. type: table -#: guix-git/doc/guix.texi:11115 +#: guix-git/doc/guix.texi:11429 msgid "This option allows users to try out versions of packages other than the one provided by the distribution. The example below downloads @file{ed-1.7.tar.gz} from a GNU mirror and uses that as the source for the @code{ed} package:" msgstr "Cette option permet aux utilisateurs d'essayer des version des paquets différentes de celles fournies par la distribution. L'exemple ci-dessous télécharge @file{ed-1.7.tar.g} depuis un miroir GNU et l'utilise comme source pour le paquet @code{ed} :" #. type: example -#: guix-git/doc/guix.texi:11118 +#: guix-git/doc/guix.texi:11432 #, no-wrap msgid "guix build ed --with-source=mirror://gnu/ed/ed-1.7.tar.gz\n" msgstr "guix build ed --with-source=mirror://gnu/ed/ed-1.7.tar.gz\n" #. type: table -#: guix-git/doc/guix.texi:11122 +#: guix-git/doc/guix.texi:11436 msgid "As a developer, @option{--with-source} makes it easy to test release candidates:" msgstr "En tant que développeur·euse, @option{--with-source} permet de tester facilement des version bêta :" #. type: example -#: guix-git/doc/guix.texi:11125 +#: guix-git/doc/guix.texi:11439 #, no-wrap msgid "guix build guile --with-source=../guile-2.0.9.219-e1bb7.tar.xz\n" msgstr "guix build guile --with-source=../guile-2.0.9.219-e1bb7.tar.xz\n" #. type: table -#: guix-git/doc/guix.texi:11128 +#: guix-git/doc/guix.texi:11442 msgid "@dots{} or to build from a checkout in a pristine environment:" msgstr "@dots{} ou pour construire un dépôt de gestion de version dans un environnement vierge :" #. type: example -#: guix-git/doc/guix.texi:11132 +#: guix-git/doc/guix.texi:11446 #, no-wrap msgid "" "$ git clone git://git.sv.gnu.org/guix.git\n" @@ -21367,126 +21935,126 @@ msgstr "" "$ guix build guix --with-source=guix@@1.0=./guix\n" #. type: item -#: guix-git/doc/guix.texi:11134 +#: guix-git/doc/guix.texi:11448 #, no-wrap msgid "--with-input=@var{package}=@var{replacement}" msgstr "--with-input=@var{paquet}=@var{remplaçant}" #. type: table -#: guix-git/doc/guix.texi:11139 +#: guix-git/doc/guix.texi:11453 msgid "Replace dependency on @var{package} by a dependency on @var{replacement}. @var{package} must be a package name, and @var{replacement} must be a package specification such as @code{guile} or @code{guile@@1.8}." msgstr "Remplace la dépendance sur @var{paquet} par une dépendance à @var{remplaçant}. @var{paquet} doit être un nom de paquet et @var{remplaçant} doit être une spécification de paquet comme @code{guile} ou @code{guile@@1.8}." #. type: table -#: guix-git/doc/guix.texi:11143 +#: guix-git/doc/guix.texi:11457 msgid "For instance, the following command builds Guix, but replaces its dependency on the current stable version of Guile with a dependency on the legacy version of Guile, @code{guile@@2.0}:" msgstr "Par exemple, la commande suivante construit Guix, mais remplace sa dépendance à la version stable actuelle de Guile par une dépendance à une ancienne version de Guile, @code{guile@@2.0} :" #. type: example -#: guix-git/doc/guix.texi:11146 +#: guix-git/doc/guix.texi:11460 #, no-wrap msgid "guix build --with-input=guile=guile@@2.0 guix\n" msgstr "guix build --with-input=guile=guile@@2.0 guix\n" #. type: table -#: guix-git/doc/guix.texi:11151 +#: guix-git/doc/guix.texi:11465 msgid "This is a recursive, deep replacement. So in this example, both @code{guix} and its dependency @code{guile-json} (which also depends on @code{guile}) get rebuilt against @code{guile@@2.0}." msgstr "C'est un remplacement récursif profond. Donc dans cet exemple, à la fois @code{guix} et ses dépendances @code{guile-json} (qui dépend aussi de @code{guile}) sont reconstruits avec @code{guile@@2.0}." #. type: table -#: guix-git/doc/guix.texi:11154 +#: guix-git/doc/guix.texi:11468 msgid "This is implemented using the @code{package-input-rewriting} Scheme procedure (@pxref{Defining Packages, @code{package-input-rewriting}})." msgstr "Cette option est implémentée avec la procédure Scheme @code{package-input-rewriting} (@pxref{Defining Packages, @code{package-input-rewriting}})." #. type: item -#: guix-git/doc/guix.texi:11155 +#: guix-git/doc/guix.texi:11469 #, no-wrap msgid "--with-graft=@var{package}=@var{replacement}" msgstr "--with-graft=@var{paquet}=@var{remplaçant}" #. type: table -#: guix-git/doc/guix.texi:11161 +#: guix-git/doc/guix.texi:11475 msgid "This is similar to @option{--with-input} but with an important difference: instead of rebuilding the whole dependency chain, @var{replacement} is built and then @dfn{grafted} onto the binaries that were initially referring to @var{package}. @xref{Security Updates}, for more information on grafts." msgstr "Cette option est similaire à @option{--with-input} mais avec une différence importante : plutôt que de reconstruire la chaîne de dépendance complète, @var{remplaçant} est construit puis @dfn{greffé} sur les binaires qui référençaient initialement @var{paquet}. @xref{Security Updates}, pour plus d'information sur les greffes." #. type: table -#: guix-git/doc/guix.texi:11165 +#: guix-git/doc/guix.texi:11479 msgid "For example, the command below grafts version 3.5.4 of GnuTLS onto Wget and all its dependencies, replacing references to the version of GnuTLS they currently refer to:" msgstr "Par exemple, la commande ci-dessous greffe la version 3.5.4 de GnuTLS sur Wget et toutes ses dépendances, en remplaçant les références à la version actuelle de GnuTLS à laquelle ils se réfèrent actuellement :" #. type: example -#: guix-git/doc/guix.texi:11168 +#: guix-git/doc/guix.texi:11482 #, no-wrap msgid "guix build --with-graft=gnutls=gnutls@@3.5.4 wget\n" msgstr "guix build --with-graft=gnutls=gnutls@@3.5.4 wget\n" #. type: table -#: guix-git/doc/guix.texi:11177 +#: guix-git/doc/guix.texi:11491 msgid "This has the advantage of being much faster than rebuilding everything. But there is a caveat: it works if and only if @var{package} and @var{replacement} are strictly compatible---for example, if they provide a library, the application binary interface (ABI) of those libraries must be compatible. If @var{replacement} is somehow incompatible with @var{package}, then the resulting package may be unusable. Use with care!" msgstr "Cela a l'avantage d'être bien plus rapide que de tout reconstruire. Mais il y a un piège : cela ne fonctionne que si @var{paquet} et @var{remplaçant} sont strictement compatibles — par exemple, s'ils fournissent une bibliothèque, l'interface binaire applicative (ABI) de ces bibliothèques doivent être compatibles. Si @var{remplaçant} est incompatible avec @var{paquet}, alors le paquet qui en résulte peut devenir inutilisable. À utiliser avec précaution !" #. type: cindex -#: guix-git/doc/guix.texi:11178 guix-git/doc/guix.texi:37882 +#: guix-git/doc/guix.texi:11492 guix-git/doc/guix.texi:38371 #, no-wrap msgid "debugging info, rebuilding" msgstr "informations de débogage, reconstruire" #. type: item -#: guix-git/doc/guix.texi:11179 +#: guix-git/doc/guix.texi:11493 #, no-wrap msgid "--with-debug-info=@var{package}" msgstr "--with-debug-info=@var{paquet}" #. type: table -#: guix-git/doc/guix.texi:11184 +#: guix-git/doc/guix.texi:11498 msgid "Build @var{package} in a way that preserves its debugging info and graft it onto packages that depend on it. This is useful if @var{package} does not already provide debugging info as a @code{debug} output (@pxref{Installing Debugging Files})." msgstr "Construire @var{paquet} de manière à préserver ses informations de débogage et les greffer sur les paquets qui en dépendent. Cela est utile si @var{paquet} ne fournit pas déjà les informations de débogage sous forme de sortie @code{debug} (@pxref{Installing Debugging Files})." #. type: table -#: guix-git/doc/guix.texi:11190 +#: guix-git/doc/guix.texi:11504 msgid "For example, suppose you're experiencing a crash in Inkscape and would like to see what's up in GLib, a library deep down in Inkscape's dependency graph. GLib lacks a @code{debug} output, so debugging is tough. Fortunately, you rebuild GLib with debugging info and tack it on Inkscape:" msgstr "Par exemple, supposons que vous subissiez un plantage de Inkscape et que vous vouliez voir ce qui se passe dans GLib, une bibliothèque au fond du graphe de dépendance d'Inkscape. GLib n'a pas de sortie @code{debug}, donc le débogage est difficile. Heureusement, vous reconstruisez la GLib avec les informations de débogage et vous l'installez dans Inkscape :" #. type: example -#: guix-git/doc/guix.texi:11193 guix-git/doc/guix.texi:37913 +#: guix-git/doc/guix.texi:11507 guix-git/doc/guix.texi:38402 #, no-wrap msgid "guix install inkscape --with-debug-info=glib\n" msgstr "guix install inkscape --with-debug-info=glib\n" #. type: table -#: guix-git/doc/guix.texi:11197 +#: guix-git/doc/guix.texi:11511 msgid "Only GLib needs to be recompiled so this takes a reasonable amount of time. @xref{Installing Debugging Files}, for more info." msgstr "Seule GLib doit être recompilée, ce qui prend un temps raisonnable. @xref{Installing Debugging Files}, pour plus d'informations." #. type: quotation -#: guix-git/doc/guix.texi:11203 +#: guix-git/doc/guix.texi:11517 msgid "Under the hood, this option works by passing the @samp{#:strip-binaries? #f} to the build system of the package of interest (@pxref{Build Systems}). Most build systems support that option but some do not. In that case, an error is raised." msgstr "Sous le capot, cette option fonctionne en passant par le @samp{#:strip-binaries ? #f} au système de construction du paquet qui nous intéresse (@pxref{Build Systems}). La plupart des systèmes de compilation supportent cette option, mais certains ne le font pas. Dans ce cas, une erreur se produit." #. type: quotation -#: guix-git/doc/guix.texi:11207 +#: guix-git/doc/guix.texi:11521 msgid "Likewise, if a C/C++ package is built without @code{-g} (which is rarely the case), debugging info will remain unavailable even when @code{#:strip-binaries?} is false." msgstr "De même, si un paquet C/C++ est construit sans @code{-g} (ce qui est rarement le cas), les informations de débogage resteront indisponibles même si @code{#:strip-binaries?} est faux." #. type: cindex -#: guix-git/doc/guix.texi:11209 +#: guix-git/doc/guix.texi:11523 #, no-wrap msgid "tool chain, changing the build tool chain of a package" msgstr "chaîne d'outils, changer la chaîne d'outils d'un paquet" #. type: item -#: guix-git/doc/guix.texi:11210 +#: guix-git/doc/guix.texi:11524 #, no-wrap msgid "--with-c-toolchain=@var{package}=@var{toolchain}" msgstr "--with-c-toolchain=@var{package}=@var{toolchain}" #. type: table -#: guix-git/doc/guix.texi:11214 +#: guix-git/doc/guix.texi:11528 msgid "This option changes the compilation of @var{package} and everything that depends on it so that they get built with @var{toolchain} instead of the default GNU tool chain for C/C++." msgstr "Cette option modifie la compilation de @var{package} et de tout ce qui en dépend afin qu'ils soient construits avec @var{toolchain} au lieu de la chaîne d'outils GNU par défaut pour C/C++." #. type: example -#: guix-git/doc/guix.texi:11221 +#: guix-git/doc/guix.texi:11535 #, no-wrap msgid "" "guix build octave-cli \\\n" @@ -21498,17 +22066,17 @@ msgstr "" " --with-c-toolchain=fftwf=gcc-toolchain@@10\n" #. type: table -#: guix-git/doc/guix.texi:11228 +#: guix-git/doc/guix.texi:11542 msgid "The command above builds a variant of the @code{fftw} and @code{fftwf} packages using version 10 of @code{gcc-toolchain} instead of the default tool chain, and then builds a variant of the GNU@tie{}Octave command-line interface using them. GNU@tie{}Octave itself is also built with @code{gcc-toolchain@@10}." msgstr "La commande ci-dessus construit une variante des paquets @code{fftw} et @code{fftwf} en utilisant la version 10 de @code{gcc-toolchain} au lieu de la chaîne d'outils par défaut, puis construit une variante de l'interface en ligne de commande GNU@tie{}Octave en les utilisant. GNU@tie{}Octave lui-même est également construit avec @code{gcc-toolchain@@10}." #. type: table -#: guix-git/doc/guix.texi:11232 +#: guix-git/doc/guix.texi:11546 msgid "This other example builds the Hardware Locality (@code{hwloc}) library and its dependents up to @code{intel-mpi-benchmarks} with the Clang C compiler:" msgstr "Cet autre exemple construit la bibliothèque Hardware Locality (@code{hwloc}) et ses dépendances jusqu'à @code{intel-mpi-benchmarks} avec le compilateur Clang C :" #. type: example -#: guix-git/doc/guix.texi:11236 +#: guix-git/doc/guix.texi:11550 #, no-wrap msgid "" "guix build --with-c-toolchain=hwloc=clang-toolchain \\\n" @@ -21518,40 +22086,40 @@ msgstr "" " intel-mpi-benchmarks\n" #. type: quotation -#: guix-git/doc/guix.texi:11245 +#: guix-git/doc/guix.texi:11559 msgid "There can be application binary interface (ABI) incompatibilities among tool chains. This is particularly true of the C++ standard library and run-time support libraries such as that of OpenMP@. By rebuilding all dependents with the same tool chain, @option{--with-c-toolchain} minimizes the risks of incompatibility but cannot entirely eliminate them. Choose @var{package} wisely." msgstr "Il peut y avoir des incompatibilités d'interface binaire d'application (ABI) entre les chaînes d'outils. Cela est particulièrement vrai pour la bibliothèque standard C++ et les bibliothèques de support d'exécution telles que celle d'OpenMP@. En reconstruisant toutes les dépendances avec la même chaîne d'outils, @option{--with-c-toolchain} minimise les risques d'incompatibilité mais ne peut pas les éliminer entièrement. Choisissez @var{package} judicieusement." #. type: item -#: guix-git/doc/guix.texi:11247 +#: guix-git/doc/guix.texi:11561 #, no-wrap msgid "--with-git-url=@var{package}=@var{url}" msgstr "--with-git-url=@var{paquet}=@var{url}" #. type: cindex -#: guix-git/doc/guix.texi:11248 +#: guix-git/doc/guix.texi:11562 #, no-wrap msgid "Git, using the latest commit" msgstr "Git, utiliser le dernier commit" #. type: cindex -#: guix-git/doc/guix.texi:11249 +#: guix-git/doc/guix.texi:11563 #, no-wrap msgid "latest commit, building" msgstr "dernier commit, construction" #. type: table -#: guix-git/doc/guix.texi:11253 +#: guix-git/doc/guix.texi:11567 msgid "Build @var{package} from the latest commit of the @code{master} branch of the Git repository at @var{url}. Git sub-modules of the repository are fetched, recursively." msgstr "Construire @var{paquet} depuis le dernier commit de la branche @code{master} du dépôt sur @var{url}. Les sous-modules Git du dépôt sont récupérés, récursivement." #. type: table -#: guix-git/doc/guix.texi:11256 +#: guix-git/doc/guix.texi:11570 msgid "For example, the following command builds the NumPy Python library against the latest commit of the master branch of Python itself:" msgstr "Par exemple, la commande suivante construit la bibliothèque Python NumPy avec le dernier commit de la branche master de Python lui-même :" #. type: example -#: guix-git/doc/guix.texi:11260 +#: guix-git/doc/guix.texi:11574 #, no-wrap msgid "" "guix build python-numpy \\\n" @@ -21561,318 +22129,318 @@ msgstr "" " --with-git-url=python=https://github.com/python/cpython\n" #. type: table -#: guix-git/doc/guix.texi:11264 +#: guix-git/doc/guix.texi:11578 msgid "This option can also be combined with @option{--with-branch} or @option{--with-commit} (see below)." msgstr "Cette option peut aussi être combinée avec @option{--with-branch} ou @option{--with-commit} (voir plus bas)." #. type: cindex -#: guix-git/doc/guix.texi:11265 guix-git/doc/guix.texi:28957 +#: guix-git/doc/guix.texi:11579 guix-git/doc/guix.texi:29294 #, no-wrap msgid "continuous integration" msgstr "intégration continue" #. type: table -#: guix-git/doc/guix.texi:11271 +#: guix-git/doc/guix.texi:11585 msgid "Obviously, since it uses the latest commit of the given branch, the result of such a command varies over time. Nevertheless it is a convenient way to rebuild entire software stacks against the latest commit of one or more packages. This is particularly useful in the context of continuous integration (CI)." msgstr "Évidemment, comme cela utilise le dernier commit d'une branche donnée, le résultat d'une telle commande varie avec le temps. Néanmoins c'est une manière pratique pour reconstruire des piles logicielles entières avec le dernier commit d'un ou plusieurs paquets. C'est particulièrement pratique dans le contexte d'une intégration continue." #. type: table -#: guix-git/doc/guix.texi:11275 +#: guix-git/doc/guix.texi:11589 msgid "Checkouts are kept in a cache under @file{~/.cache/guix/checkouts} to speed up consecutive accesses to the same repository. You may want to clean it up once in a while to save disk space." msgstr "Les clones sont gardés dans un cache dans @file{~/.cache/guix/checkouts} pour accélérer les accès consécutifs au même dépôt. Vous pourriez vouloir le nettoyer de temps en temps pour récupérer de l'espace disque." #. type: item -#: guix-git/doc/guix.texi:11276 +#: guix-git/doc/guix.texi:11590 #, no-wrap msgid "--with-branch=@var{package}=@var{branch}" msgstr "--with-branch=@var{paquet}=@var{branche}" #. type: table -#: guix-git/doc/guix.texi:11282 +#: guix-git/doc/guix.texi:11596 msgid "Build @var{package} from the latest commit of @var{branch}. If the @code{source} field of @var{package} is an origin with the @code{git-fetch} method (@pxref{origin Reference}) or a @code{git-checkout} object, the repository URL is taken from that @code{source}. Otherwise you have to use @option{--with-git-url} to specify the URL of the Git repository." msgstr "Construire @var{paquet} à partir du dernier commit de la @var{branche}. Si le champ @code{source} de @var{paquet} est une origine avec la méthode @code{git-fetch} (@pxref{origin Reference}) ou un objet @code{git-checkout}, l'URL du dépôt est récupérée à partir de cette @code{source}. Sinon, vous devez utiliser @option{--with-git-url} pour spécifier l'URL du dépôt Git." #. type: table -#: guix-git/doc/guix.texi:11287 +#: guix-git/doc/guix.texi:11601 msgid "For instance, the following command builds @code{guile-sqlite3} from the latest commit of its @code{master} branch, and then builds @code{guix} (which depends on it) and @code{cuirass} (which depends on @code{guix}) against this specific @code{guile-sqlite3} build:" msgstr "Par exemple, la commande suivante construit @code{guile-sqlite3} à partir du dernier commit de sa branche @code{master}, puis construit @code{guix} (qui en dépend) et @code{cuirass} (qui dépend de @code{guix}) avec cette construction spécifique de @code{guile-sqlite3} :" #. type: example -#: guix-git/doc/guix.texi:11290 +#: guix-git/doc/guix.texi:11604 #, no-wrap msgid "guix build --with-branch=guile-sqlite3=master cuirass\n" msgstr "guix build --with-branch=guile-sqlite3=master cuirass\n" #. type: item -#: guix-git/doc/guix.texi:11292 +#: guix-git/doc/guix.texi:11606 #, no-wrap msgid "--with-commit=@var{package}=@var{commit}" msgstr "--with-commit=@var{paquet}=@var{commit}" #. type: table -#: guix-git/doc/guix.texi:11297 +#: guix-git/doc/guix.texi:11611 msgid "This is similar to @option{--with-branch}, except that it builds from @var{commit} rather than the tip of a branch. @var{commit} must be a valid Git commit SHA1 identifier, a tag, or a @command{git describe} style identifier such as @code{1.0-3-gabc123}." msgstr "Cela est similaire à @option{--with-branch}, sauf qu'elle construite à partir de @var{commit} au lieu du sommet d'une branche. @var{commit} doit être un identifiant SHA1 de commit Git valide, un tag ou un identifiant dans le style de @command{git describe} comme @code{1.0-3-gabc123}." #. type: item -#: guix-git/doc/guix.texi:11298 +#: guix-git/doc/guix.texi:11612 #, no-wrap msgid "--with-patch=@var{package}=@var{file}" msgstr "--with-patch=@var{paquet}=@var{fichier}" #. type: table -#: guix-git/doc/guix.texi:11305 +#: guix-git/doc/guix.texi:11619 msgid "Add @var{file} to the list of patches applied to @var{package}, where @var{package} is a spec such as @code{python@@3.8} or @code{glibc}. @var{file} must contain a patch; it is applied with the flags specified in the @code{origin} of @var{package} (@pxref{origin Reference}), which by default includes @code{-p1} (@pxref{patch Directories,,, diffutils, Comparing and Merging Files})." msgstr "Ajoute @var{fichier} à la liste des correctifs appliqués à @var{paquet}, où @var{paquet} est une spécification comme @code{python@@3.8} ou @code{glibc}. @var{fichier} doit contenir un correctif ; il est appliqué avec les drapeaux spécifiés dans l'@code{origin} de @var{paquet} (@pxref{origin Reference}), qui par défaut inclus @code{-p1} @pxref{patch Directories,,, diffutils, Comparing and Merging Files})." #. type: table -#: guix-git/doc/guix.texi:11308 +#: guix-git/doc/guix.texi:11622 msgid "As an example, the command below rebuilds Coreutils with the GNU C Library (glibc) patched with the given patch:" msgstr "Par exemple, la commande ci-dessous reconstruit Coreutils avec la bibliothèque C de GNU (glibc) corrigée avec le correctif donné :" #. type: example -#: guix-git/doc/guix.texi:11311 +#: guix-git/doc/guix.texi:11625 #, no-wrap msgid "guix build coreutils --with-patch=glibc=./glibc-frob.patch\n" msgstr "guix build coreutils --with-patch=glibc=./glibc-frob.patch\n" #. type: table -#: guix-git/doc/guix.texi:11315 +#: guix-git/doc/guix.texi:11629 msgid "In this example, glibc itself as well as everything that leads to Coreutils in the dependency graph is rebuilt." msgstr "Dans cet exemple, glibc lui-meme ainsi que tout ce qui mène à Coreutils dans le graphe des dépendances est reconstruit." #. type: cindex -#: guix-git/doc/guix.texi:11316 +#: guix-git/doc/guix.texi:11630 #, no-wrap msgid "upstream, latest version" msgstr "amont, dernière version" #. type: item -#: guix-git/doc/guix.texi:11317 +#: guix-git/doc/guix.texi:11631 #, no-wrap msgid "--with-latest=@var{package}" msgstr "--with-latest=@var{paquet}" #. type: table -#: guix-git/doc/guix.texi:11322 +#: guix-git/doc/guix.texi:11636 msgid "So you like living on the bleeding edge? This option is for you! It replaces occurrences of @var{package} in the dependency graph with its latest upstream version, as reported by @command{guix refresh} (@pxref{Invoking guix refresh})." msgstr "Alors vous aimez les toutes dernières technologies ? Cette option est faite pour vous ! Elle remplace les occurence de @var{paquet} dans le graphe des dépendances avec sa toute dernière version en amont, telle que rapportée par @command{guix refresh} (@pxref{Invoking guix refresh})." #. type: table -#: guix-git/doc/guix.texi:11326 +#: guix-git/doc/guix.texi:11640 msgid "It does so by determining the latest upstream release of @var{package} (if possible), downloading it, and authenticating it @emph{if} it comes with an OpenPGP signature." msgstr "Elle fait cela en déterminant la dernière version publiée en amont (si possible), en la téléchargeant et en l'authentifiant @emph{si} elle propose une signature OpenPGP." #. type: table -#: guix-git/doc/guix.texi:11329 +#: guix-git/doc/guix.texi:11643 msgid "As an example, the command below builds Guix against the latest version of Guile-JSON:" msgstr "Par exemple, la commande ci-dessous construit Guix avec la dernière version de Guile-JSON :" #. type: example -#: guix-git/doc/guix.texi:11332 +#: guix-git/doc/guix.texi:11646 #, no-wrap msgid "guix build guix --with-latest=guile-json\n" msgstr "guix build guix --with-latest=guile-json\n" #. type: table -#: guix-git/doc/guix.texi:11341 +#: guix-git/doc/guix.texi:11655 msgid "There are limitations. First, in cases where the tool cannot or does not know how to authenticate source code, you are at risk of running malicious code; a warning is emitted in this case. Second, this option simply changes the source used in the existing package definitions, which is not always sufficient: there might be additional dependencies that need to be added, patches to apply, and more generally the quality assurance work that Guix developers normally do will be missing." msgstr "Il y a des limites. Déjà, dans les cas où l'outil ne peut pas ou ne sait pas comment authentifier le code source, vous risquez de charger du code malveillant ; un avertissement est émis dans ce cas. Ensuite, cette option change simplement la source utilisée dans les définitions existantes des paquets, ce qui n'est pas toujours suffisant : il peut y avoir des dépendances supplémentaires qui doivent être ajoutées, des correctifs à appliquer, et plus généralement tout le travail d'assurance qualité que les développeurs de Guix font habituellement sera absent." #. type: table -#: guix-git/doc/guix.texi:11346 +#: guix-git/doc/guix.texi:11660 msgid "You've been warned! In all the other cases, it's a snappy way to stay on top. We encourage you to submit patches updating the actual package definitions once you have successfully tested an upgrade (@pxref{Contributing})." msgstr "On vous aura prévenu ! Dans tous les autres cas, c'est une méthode pour rester à la hauteur qui a du punch ! Nous vous encourageons à soumettre des correctifs pour les définitions des paquets quand vous aurez testé une mise à jour (@pxref{Contributing})." #. type: cindex -#: guix-git/doc/guix.texi:11347 +#: guix-git/doc/guix.texi:11661 #, no-wrap msgid "test suite, skipping" msgstr "suite de tests, passer outre" #. type: item -#: guix-git/doc/guix.texi:11348 +#: guix-git/doc/guix.texi:11662 #, no-wrap msgid "--without-tests=@var{package}" msgstr "--without-tests=@var{paquet}" #. type: table -#: guix-git/doc/guix.texi:11354 +#: guix-git/doc/guix.texi:11668 msgid "Build @var{package} without running its tests. This can be useful in situations where you want to skip the lengthy test suite of a intermediate package, or if a package's test suite fails in a non-deterministic fashion. It should be used with care because running the test suite is a good way to ensure a package is working as intended." msgstr "Construire @var{paquet} sans lancer la suite de tests. Cela peut être utile dans les situations où vous voulez éviter la longue série de tests d'un paquet intermédiaire, ou si une suite de tests de paquet échoue dans un mode non déterministe. Il doit être utilisé avec précaution car l'exécution de la suite de tests est un bon moyen de s'assurer qu'un paquet fonctionne comme prévu." #. type: table -#: guix-git/doc/guix.texi:11358 +#: guix-git/doc/guix.texi:11672 msgid "Turning off tests leads to a different store item. Consequently, when using this option, anything that depends on @var{package} must be rebuilt, as in this example:" msgstr "L'arrêt des tests conduit à un autre élément du dépôt. Par conséquent, lorsque vous utilisez cette option, tout ce qui dépend de @var{paquet} doit être reconstruit, comme dans cet exemple :" #. type: example -#: guix-git/doc/guix.texi:11361 +#: guix-git/doc/guix.texi:11675 #, no-wrap msgid "guix install --without-tests=python python-notebook\n" msgstr "guix install --without-tests=python python-notebook\n" #. type: table -#: guix-git/doc/guix.texi:11367 +#: guix-git/doc/guix.texi:11681 msgid "The command above installs @code{python-notebook} on top of @code{python} built without running its test suite. To do so, it also rebuilds everything that depends on @code{python}, including @code{python-notebook} itself." msgstr "La commande ci-dessus installe @code{python-notebook} par dessus @code{python}, construit sans exécuter sa suite de tests. Pour ce faire, elle reconstruit également tout ce qui dépend de @code{python}, y compris @code{python-notebook} lui-même." #. type: table -#: guix-git/doc/guix.texi:11373 +#: guix-git/doc/guix.texi:11687 msgid "Internally, @option{--without-tests} relies on changing the @code{#:tests?} option of a package's @code{check} phase (@pxref{Build Systems}). Note that some packages use a customized @code{check} phase that does not respect a @code{#:tests? #f} setting. Therefore, @option{--without-tests} has no effect on these packages." msgstr "En interne, @option{--without-tests} repose sur le changement de l'option @code{#:tests?} de la phase @code{check} d'un paquet (@pxref{Build Systems}). Notez que certains paquets utilisent une phase @code{check} personnalisée qui ne respecte pas le paramètre @code{#:tests? #f}. Par conséquent, @option{--without-tests} n'a aucun effet sur ces paquets." #. type: Plain text -#: guix-git/doc/guix.texi:11380 +#: guix-git/doc/guix.texi:11694 msgid "Wondering how to achieve the same effect using Scheme code, for example in your manifest, or how to write your own package transformation? @xref{Defining Package Variants}, for an overview of the programming interfaces available." msgstr "Vous vous demandez comme faire la même chose dans du code Scheme, par exemple dans votre manifeste, ou comme écrire votre propre transformation de paquets ? @xref{Defining Package Variants}, pour un aperçu des interfaces de programmation disponibles." #. type: Plain text -#: guix-git/doc/guix.texi:11386 +#: guix-git/doc/guix.texi:11700 msgid "The command-line options presented below are specific to @command{guix build}." msgstr "Les options de la ligne de commande ci-dessous sont spécifiques à @command{guix build}." #. type: item -#: guix-git/doc/guix.texi:11389 +#: guix-git/doc/guix.texi:11703 #, no-wrap msgid "--quiet" msgstr "--quiet" #. type: table -#: guix-git/doc/guix.texi:11394 +#: guix-git/doc/guix.texi:11708 msgid "Build quietly, without displaying the build log; this is equivalent to @option{--verbosity=0}. Upon completion, the build log is kept in @file{/var} (or similar) and can always be retrieved using the @option{--log-file} option." msgstr "Construire silencieusement, sans afficher les journaux de construction ; c'est équivalent à @option{--verbosity=0}. À la fin, le journal de construction est gardé dans @file{/var} (ou similaire) et on peut toujours l'y trouver avec l'option @option{--log-file}." #. type: table -#: guix-git/doc/guix.texi:11399 +#: guix-git/doc/guix.texi:11713 msgid "Build the package, derivation, or other file-like object that the code within @var{file} evaluates to (@pxref{G-Expressions, file-like objects})." msgstr "Construit le paquet, la dérivation ou l'objet simili-fichier en lequel le code dans @var{file} s'évalue (@pxref{G-Expressions, file-like objects})." #. type: table -#: guix-git/doc/guix.texi:11402 +#: guix-git/doc/guix.texi:11716 msgid "As an example, @var{file} might contain a package definition like this (@pxref{Defining Packages}):" msgstr "Par exemple, @var{file} peut contenir une définition de paquet comme ceci (@pxref{Defining Packages}) :" #. type: table -#: guix-git/doc/guix.texi:11411 +#: guix-git/doc/guix.texi:11725 msgid "The @var{file} may also contain a JSON representation of one or more package definitions. Running @code{guix build -f} on @file{hello.json} with the following contents would result in building the packages @code{myhello} and @code{greeter}:" msgstr "@var{file} peut également contenir une représentation JSON d'une ou plusieurs définitions de paquets. L'exécution de @code{guix build -f} sur @file{hello.json} avec le contenu suivant entraînerait la construction des paquets @code{myhello} et @code{greeter} :" #. type: item -#: guix-git/doc/guix.texi:11416 +#: guix-git/doc/guix.texi:11730 #, no-wrap msgid "--manifest=@var{manifest}" msgstr "--manifest=@var{manifest}" #. type: itemx -#: guix-git/doc/guix.texi:11417 +#: guix-git/doc/guix.texi:11731 #, no-wrap msgid "-m @var{manifest}" msgstr "-m @var{manifest}" #. type: table -#: guix-git/doc/guix.texi:11420 +#: guix-git/doc/guix.texi:11734 msgid "Build all packages listed in the given @var{manifest} (@pxref{profile-manifest, @option{--manifest}})." msgstr "Construire tous les paquets listés dans un @var{manifest} donné (@pxref{profile-manifest, @option{--manifest}})." #. type: table -#: guix-git/doc/guix.texi:11424 +#: guix-git/doc/guix.texi:11738 msgid "Build the package or derivation @var{expr} evaluates to." msgstr "Construit le paquet ou la dérivation en lequel @var{expr} s'évalue." #. type: table -#: guix-git/doc/guix.texi:11428 +#: guix-git/doc/guix.texi:11742 msgid "For example, @var{expr} may be @code{(@@ (gnu packages guile) guile-1.8)}, which unambiguously designates this specific variant of version 1.8 of Guile." msgstr "Par exemple, @var{expr} peut être @code{(@@ (gnu packages guile) guile-1.8)}, qui désigne sans ambiguïté cette variante spécifique de la version 1.8 de Guile." #. type: table -#: guix-git/doc/guix.texi:11432 +#: guix-git/doc/guix.texi:11746 msgid "Alternatively, @var{expr} may be a G-expression, in which case it is used as a build program passed to @code{gexp->derivation} (@pxref{G-Expressions})." msgstr "Autrement, @var{exp} peut être une G-expression, auquel cas elle est utilisée comme un programme de construction passé à @code{gexp->derivation} (@pxref{G-Expressions})." #. type: table -#: guix-git/doc/guix.texi:11436 +#: guix-git/doc/guix.texi:11750 msgid "Lastly, @var{expr} may refer to a zero-argument monadic procedure (@pxref{The Store Monad}). The procedure must return a derivation as a monadic value, which is then passed through @code{run-with-store}." msgstr "Enfin, @var{expr} peut se référer à une procédure monadique à au moins un argument (@pxref{The Store Monad}). La procédure doit renvoyer une dérivation comme une valeur monadique, qui est ensuite lancée à travers @code{run-with-store}." #. type: item -#: guix-git/doc/guix.texi:11437 +#: guix-git/doc/guix.texi:11751 #, no-wrap msgid "--source" msgstr "--source" #. type: itemx -#: guix-git/doc/guix.texi:11438 guix-git/doc/guix.texi:11835 +#: guix-git/doc/guix.texi:11752 #, no-wrap msgid "-S" msgstr "-S" #. type: table -#: guix-git/doc/guix.texi:11441 +#: guix-git/doc/guix.texi:11755 msgid "Build the source derivations of the packages, rather than the packages themselves." msgstr "Construit les dérivation source des paquets, plutôt que des paquets eux-mêmes." #. type: table -#: guix-git/doc/guix.texi:11445 +#: guix-git/doc/guix.texi:11759 msgid "For instance, @code{guix build -S gcc} returns something like @file{/gnu/store/@dots{}-gcc-4.7.2.tar.bz2}, which is the GCC source tarball." msgstr "Par exemple, @code{guix build -S gcc} renvoie quelque chose comme @file{/gnu/store/@dots{}-gcc-4.7.2.tar.bz2}, qui est l'archive des sources de GCC." #. type: table -#: guix-git/doc/guix.texi:11449 +#: guix-git/doc/guix.texi:11763 msgid "The returned source tarball is the result of applying any patches and code snippets specified in the package @code{origin} (@pxref{Defining Packages})." msgstr "L'archive des sources renvoyée est le résultat de l'application des correctifs et des extraits de code éventuels spécifiés dans le champ @code{origin} du paquet (@pxref{Defining Packages})." #. type: cindex -#: guix-git/doc/guix.texi:11450 +#: guix-git/doc/guix.texi:11764 #, no-wrap msgid "source, verification" msgstr "source, vérification" #. type: table -#: guix-git/doc/guix.texi:11456 +#: guix-git/doc/guix.texi:11770 msgid "As with other derivations, the result of building a source derivation can be verified using the @option{--check} option (@pxref{build-check}). This is useful to validate that a (potentially already built or substituted, thus cached) package source matches against its declared hash." msgstr "Comme avec les autres dérivations, le résultat de la construction des sources peut être vérifié avec l'option @option{--check} (@pxref{build-check}). C'est utile pour valider que les source (éventuellement déjà construites ou substituées, donc en cache) correspondent au hash déclaré." #. type: table -#: guix-git/doc/guix.texi:11461 +#: guix-git/doc/guix.texi:11775 msgid "Note that @command{guix build -S} compiles the sources only of the specified packages. They do not include the sources of statically linked dependencies and by themselves are insufficient for reproducing the packages." msgstr "Notez que @command{guix build -S} compile seulement les sources des paquets spécifiés. Les sources de dépendances statiquement liées ne sont pas incluses et sont en elles-mêmes insuffisantes pour reproduire les paquets." #. type: item -#: guix-git/doc/guix.texi:11462 +#: guix-git/doc/guix.texi:11776 #, no-wrap msgid "--sources" msgstr "--sources" #. type: table -#: guix-git/doc/guix.texi:11469 +#: guix-git/doc/guix.texi:11783 msgid "Fetch and return the source of @var{package-or-derivation} and all their dependencies, recursively. This is a handy way to obtain a local copy of all the source code needed to build @var{packages}, allowing you to eventually build them even without network access. It is an extension of the @option{--source} option and can accept one of the following optional argument values:" msgstr "Récupère et renvoie la source de @var{package-or-derivation} et toute ses dépendances, récursivement. C'est pratique pour obtenir une copie locale de tous les codes sources requis pour construire @var{packages}, ce qui vous permet de les construire plus tard même sans accès au réseau. C'est une extension de l'option @option{--source} et elle peut accepter l'un des arguments facultatifs suivants :" #. type: item -#: guix-git/doc/guix.texi:11471 guix-git/doc/guix.texi:13252 +#: guix-git/doc/guix.texi:11785 guix-git/doc/guix.texi:13609 #, no-wrap msgid "package" msgstr "package" #. type: table -#: guix-git/doc/guix.texi:11474 +#: guix-git/doc/guix.texi:11788 msgid "This value causes the @option{--sources} option to behave in the same way as the @option{--source} option." msgstr "Cette valeur fait que l'option @option{--sources} se comporte comme l'option @option{--source}." #. type: item -#: guix-git/doc/guix.texi:11475 guix-git/doc/guix.texi:19682 +#: guix-git/doc/guix.texi:11789 guix-git/doc/guix.texi:20044 #, no-wrap msgid "all" msgstr "all" #. type: table -#: guix-git/doc/guix.texi:11478 +#: guix-git/doc/guix.texi:11792 msgid "Build the source derivations of all packages, including any source that might be listed as @code{inputs}. This is the default value." msgstr "Construit les dérivations des sources de tous les paquets, dont les sources qui pourraient être listées dans @code{inputs}. C'est la valeur par défaut." #. type: example -#: guix-git/doc/guix.texi:11484 +#: guix-git/doc/guix.texi:11798 #, no-wrap msgid "" "$ guix build --sources tzdata\n" @@ -21886,18 +22454,18 @@ msgstr "" " /gnu/store/@dots{}-tzcode2015b.tar.gz.drv\n" #. type: item -#: guix-git/doc/guix.texi:11486 +#: guix-git/doc/guix.texi:11800 #, no-wrap msgid "transitive" msgstr "transitive" #. type: table -#: guix-git/doc/guix.texi:11490 +#: guix-git/doc/guix.texi:11804 msgid "Build the source derivations of all packages, as well of all transitive inputs to the packages. This can be used e.g.@: to prefetch package source for later offline building." msgstr "Construire les dérivations des sources de tous les paquets, ainsi que toutes celles des entrées transitives des paquets. On peut par exemple utiliser cette option pour précharger les sources des paquets pour les construire plus tard hors ligne." #. type: example -#: guix-git/doc/guix.texi:11501 +#: guix-git/doc/guix.texi:11815 #, no-wrap msgid "" "$ guix build --sources=transitive tzdata\n" @@ -21921,146 +22489,146 @@ msgstr "" "@dots{}\n" #. type: table -#: guix-git/doc/guix.texi:11511 +#: guix-git/doc/guix.texi:11825 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of the system type of the build host. The @command{guix build} command allows you to repeat this option several times, in which case it builds for all the specified systems; other commands ignore extraneous @option{-s} options." msgstr "Essayer de construire pour @var{system} — p.@: ex.@: @code{i686-linux} — au lieu du type de système de l'hôte. La commande @command{guix build} vous permet de répéter cette option plusieurs fois, auquel cas elle construit pour tous les systèmes spécifiés ; les autres commandes ignorent les options @option{-s} supplémentaires." #. type: quotation -#: guix-git/doc/guix.texi:11516 +#: guix-git/doc/guix.texi:11830 msgid "The @option{--system} flag is for @emph{native} compilation and must not be confused with cross-compilation. See @option{--target} below for information on cross-compilation." msgstr "Le drapeau @option{--system} est utilisé pour une compilation @emph{native} et ne doit pas être confondu avec une compilation croisée. Voir @option{--target} ci-dessous pour des informations sur la compilation croisée." #. type: table -#: guix-git/doc/guix.texi:11523 +#: guix-git/doc/guix.texi:11837 msgid "An example use of this is on Linux-based systems, which can emulate different personalities. For instance, passing @option{--system=i686-linux} on an @code{x86_64-linux} system or @option{--system=armhf-linux} on an @code{aarch64-linux} system allows you to build packages in a complete 32-bit environment." msgstr "Un exemple d'utilisation de ceci sur les systèmes Linux, qui peut émuler différentes personnalités. Par exemple, passer @option{--system=i686-linux} sur un système @code{x86_64-linux} ou @option{--system=armhf-linux} sur un système @code{aarch64-linux} vous permet de construire des paquets dans un environnement 32-bit complet." #. type: quotation -#: guix-git/doc/guix.texi:11528 +#: guix-git/doc/guix.texi:11842 msgid "Building for an @code{armhf-linux} system is unconditionally enabled on @code{aarch64-linux} machines, although certain aarch64 chipsets do not allow for this functionality, notably the ThunderX." msgstr "La possibilité de construire pour un système @code{armhf-linux} est activé sans condition sur les machines @code{aarch64-linux}, bien que certaines puces aarch64 n'en soient pas capables, comme les ThunderX." #. type: table -#: guix-git/doc/guix.texi:11534 +#: guix-git/doc/guix.texi:11848 msgid "Similarly, when transparent emulation with QEMU and @code{binfmt_misc} is enabled (@pxref{Virtualization Services, @code{qemu-binfmt-service-type}}), you can build for any system for which a QEMU @code{binfmt_misc} handler is installed." msgstr "De même, lorsque l'émulation transparente avec QEMU et @code{binfnmt_misc} est activée (@pxref{Virtualization Services, @code{qemu-binfmt-service-type}}), vous pouvez construire pour n'importe quel système pour lequel un gestionnaire QEMU @code{binfmt_misc} est installé." #. type: table -#: guix-git/doc/guix.texi:11538 +#: guix-git/doc/guix.texi:11852 msgid "Builds for a system other than that of the machine you are using can also be offloaded to a remote machine of the right architecture. @xref{Daemon Offload Setup}, for more information on offloading." msgstr "Les constructions pour un autre système que celui de la machine que vous utilisez peuvent aussi être déchargées à une machine distante de la bonne architecture. @xref{Daemon Offload Setup}, pour plus d'information sur le déchargement." #. type: table -#: guix-git/doc/guix.texi:11544 +#: guix-git/doc/guix.texi:11858 msgid "Cross-build for @var{triplet}, which must be a valid GNU triplet, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying Target Triplets, GNU configuration triplets,, autoconf, Autoconf})." msgstr "Effectuer une compilation croisée pour @var{triplet} qui doit être un triplet GNU valide, comme @code{\"aarch64-linux-gnu\"} (@pxref{Specifying Target Triplets, GNU configuration triplets,, autoconf, Autoconf})." #. type: anchor{#1} -#: guix-git/doc/guix.texi:11546 +#: guix-git/doc/guix.texi:11860 msgid "build-check" msgstr "vérification de la construction" #. type: cindex -#: guix-git/doc/guix.texi:11547 +#: guix-git/doc/guix.texi:11861 #, no-wrap msgid "determinism, checking" msgstr "déterminisme, vérification" #. type: cindex -#: guix-git/doc/guix.texi:11548 +#: guix-git/doc/guix.texi:11862 #, no-wrap msgid "reproducibility, checking" msgstr "reproductibilité, vérification" #. type: table -#: guix-git/doc/guix.texi:11552 +#: guix-git/doc/guix.texi:11866 msgid "Rebuild @var{package-or-derivation}, which are already available in the store, and raise an error if the build results are not bit-for-bit identical." msgstr "Reconstruit les @var{package-or-derivation}, qui sont déjà disponibles dans le dépôt et lève une erreur si les résultats des constructions ne sont pas identiques bit-à-bit." #. type: table -#: guix-git/doc/guix.texi:11557 +#: guix-git/doc/guix.texi:11871 msgid "This mechanism allows you to check whether previously installed substitutes are genuine (@pxref{Substitutes}), or whether the build result of a package is deterministic. @xref{Invoking guix challenge}, for more background information and tools." msgstr "Ce mécanisme vous permet de vérifier si les substituts précédemment installés sont authentiques (@pxref{Substituts}) ou si le résultat de la construction d'un paquet est déterministe. @xref{Invoking guix challenge} pour plus d'informations et pour les outils." #. type: item -#: guix-git/doc/guix.texi:11562 +#: guix-git/doc/guix.texi:11876 #, no-wrap msgid "--repair" msgstr "--repair" #. type: cindex -#: guix-git/doc/guix.texi:11563 +#: guix-git/doc/guix.texi:11877 #, no-wrap msgid "repairing store items" msgstr "réparer les éléments du dépôt" #. type: table -#: guix-git/doc/guix.texi:11567 +#: guix-git/doc/guix.texi:11881 msgid "Attempt to repair the specified store items, if they are corrupt, by re-downloading or rebuilding them." msgstr "Essaye de réparer les éléments du dépôt spécifiés, s'ils sont corrompus, en les téléchargeant ou en les construisant à nouveau." #. type: table -#: guix-git/doc/guix.texi:11569 +#: guix-git/doc/guix.texi:11883 msgid "This operation is not atomic and thus restricted to @code{root}." msgstr "Cette opération n'est pas atomique et donc restreinte à l'utilisateur @code{root}." #. type: item -#: guix-git/doc/guix.texi:11570 +#: guix-git/doc/guix.texi:11884 #, no-wrap msgid "--derivations" msgstr "--derivations" #. type: table -#: guix-git/doc/guix.texi:11574 +#: guix-git/doc/guix.texi:11888 msgid "Return the derivation paths, not the output paths, of the given packages." msgstr "Renvoie les chemins de dérivation, et non les chemins de sortie, des paquets donnés." #. type: cindex -#: guix-git/doc/guix.texi:11577 +#: guix-git/doc/guix.texi:11891 #, no-wrap msgid "GC roots, adding" msgstr "Racines du GC, ajout" #. type: cindex -#: guix-git/doc/guix.texi:11578 +#: guix-git/doc/guix.texi:11892 #, no-wrap msgid "garbage collector roots, adding" msgstr "ajout de racines au ramasse-miettes" #. type: table -#: guix-git/doc/guix.texi:11581 guix-git/doc/guix.texi:35312 +#: guix-git/doc/guix.texi:11895 guix-git/doc/guix.texi:35756 msgid "Make @var{file} a symlink to the result, and register it as a garbage collector root." msgstr "Fait de @var{fichier} un lien symbolique vers le résultat, et l'enregistre en tant que racine du ramasse-miettes." #. type: table -#: guix-git/doc/guix.texi:11587 +#: guix-git/doc/guix.texi:11901 msgid "Consequently, the results of this @command{guix build} invocation are protected from garbage collection until @var{file} is removed. When that option is omitted, build results are eligible for garbage collection as soon as the build completes. @xref{Invoking guix gc}, for more on GC roots." msgstr "En conséquence, les résultats de cette invocation de @command{guix build} sont protégés du ramasse-miettes jusqu'à ce que @var{fichier} soit supprimé. Lorsque cette option est omise, les constructions sont susceptibles d'être glanées." #. type: item -#: guix-git/doc/guix.texi:11588 +#: guix-git/doc/guix.texi:11902 #, no-wrap msgid "--log-file" msgstr "--log-file" #. type: cindex -#: guix-git/doc/guix.texi:11589 +#: guix-git/doc/guix.texi:11903 #, no-wrap msgid "build logs, access" msgstr "journaux de construction, accès" #. type: table -#: guix-git/doc/guix.texi:11593 +#: guix-git/doc/guix.texi:11907 msgid "Return the build log file names or URLs for the given @var{package-or-derivation}, or raise an error if build logs are missing." msgstr "Renvoie les noms des journaux de construction ou les URL des @var{package-or-derivation} donnés ou lève une erreur si les journaux de construction sont absents." #. type: table -#: guix-git/doc/guix.texi:11596 +#: guix-git/doc/guix.texi:11910 msgid "This works regardless of how packages or derivations are specified. For instance, the following invocations are equivalent:" msgstr "Cela fonctionne indépendamment de la manière dont les paquets ou les dérivations sont spécifiées. Par exemple, les invocations suivantes sont équivalentes :" #. type: example -#: guix-git/doc/guix.texi:11602 +#: guix-git/doc/guix.texi:11916 #, no-wrap msgid "" "guix build --log-file $(guix build -d guile)\n" @@ -22074,17 +22642,17 @@ msgstr "" "guix build --log-file -e '(@@ (gnu packages guile) guile-2.0)'\n" #. type: table -#: guix-git/doc/guix.texi:11607 +#: guix-git/doc/guix.texi:11921 msgid "If a log is unavailable locally, and unless @option{--no-substitutes} is passed, the command looks for a corresponding log on one of the substitute servers (as specified with @option{--substitute-urls})." msgstr "Si un journal n'est pas disponible localement, à moins que @option{--no-substitutes} ne soit passé, la commande cherche un journal correspondant sur l'un des serveurs de substituts (tels que spécifiés avec @option{--substitute-urls})." #. type: table -#: guix-git/doc/guix.texi:11610 +#: guix-git/doc/guix.texi:11924 msgid "So for instance, imagine you want to see the build log of GDB on MIPS, but you are actually on an @code{x86_64} machine:" msgstr "Donc par exemple, imaginons que vous souhaitiez voir le journal de construction de GDB sur MIPS, mais que vous n'avez qu'une machine @code{x86_64} :" #. type: example -#: guix-git/doc/guix.texi:11614 +#: guix-git/doc/guix.texi:11928 #, no-wrap msgid "" "$ guix build --log-file gdb -s aarch64-linux\n" @@ -22094,33 +22662,33 @@ msgstr "" "https://@value{SUBSTITUTE-SERVER-1}/log/@dots{}-gdb-7.10\n" #. type: table -#: guix-git/doc/guix.texi:11617 +#: guix-git/doc/guix.texi:11931 msgid "You can freely access a huge library of build logs!" msgstr "Vous pouvez accéder librement à une vaste bibliothèque de journaux de construction !" #. type: cindex -#: guix-git/doc/guix.texi:11622 +#: guix-git/doc/guix.texi:11936 #, no-wrap msgid "build failures, debugging" msgstr "échecs de construction, débogage" #. type: Plain text -#: guix-git/doc/guix.texi:11628 +#: guix-git/doc/guix.texi:11942 msgid "When defining a new package (@pxref{Defining Packages}), you will probably find yourself spending some time debugging and tweaking the build until it succeeds. To do that, you need to operate the build commands yourself in an environment as close as possible to the one the build daemon uses." msgstr "Lors de la définition d'un nouveau paquet (@pxref{Defining Packages}), vous passerez probablement du temps à déboguer et modifier la construction jusqu'à ce que ça marche. Pour cela, vous devez effectuer les commandes de construction vous-même dans un environnement le plus proche possible de celui qu'utilise le démon de construction." #. type: Plain text -#: guix-git/doc/guix.texi:11633 +#: guix-git/doc/guix.texi:11947 msgid "To that end, the first thing to do is to use the @option{--keep-failed} or @option{-K} option of @command{guix build}, which will keep the failed build tree in @file{/tmp} or whatever directory you specified as @env{TMPDIR} (@pxref{Common Build Options, @option{--keep-failed}})." msgstr "Pour cela, la première chose à faire est d'utiliser l'option @option{--keep-failed} ou @option{-K} de @command{guix build}, qui gardera la construction échouée de l'arborescence dans @file{/tmp} ou le répertoire spécifié par @env{TMPDIR} (@pxref{Common Build Options, @option{--keep-failed}})." #. type: Plain text -#: guix-git/doc/guix.texi:11639 +#: guix-git/doc/guix.texi:11953 msgid "From there on, you can @command{cd} to the failed build tree and source the @file{environment-variables} file, which contains all the environment variable definitions that were in place when the build failed. So let's say you're debugging a build failure in package @code{foo}; a typical session would look like this:" msgstr "À partir de là, vous pouvez vous déplacer dans l'arborescence de construction et sourcer le fichier @file{environment-variables}, qui contient toutes les variables d'environnement qui étaient définies lorsque la construction a échoué. Disons que vous déboguez un échec de construction dans le paquet @code{toto} ; une session typique ressemblerait à cela :" #. type: example -#: guix-git/doc/guix.texi:11646 +#: guix-git/doc/guix.texi:11960 #, no-wrap msgid "" "$ guix build foo -K\n" @@ -22136,22 +22704,22 @@ msgstr "" "$ cd toto-1.2\n" #. type: Plain text -#: guix-git/doc/guix.texi:11650 +#: guix-git/doc/guix.texi:11964 msgid "Now, you can invoke commands as if you were the daemon (almost) and troubleshoot your build process." msgstr "Maintenant, vous pouvez invoquer les commandes comme si vous étiez le démon (presque) et corriger le processus de construction." #. type: Plain text -#: guix-git/doc/guix.texi:11656 +#: guix-git/doc/guix.texi:11970 msgid "Sometimes it happens that, for example, a package's tests pass when you run them manually but they fail when the daemon runs them. This can happen because the daemon runs builds in containers where, unlike in our environment above, network access is missing, @file{/bin/sh} does not exist, etc. (@pxref{Build Environment Setup})." msgstr "Parfois il arrive que, par exemple, les tests d'un paquet réussissent lorsque vous les lancez manuellement mais échouent quand ils sont lancés par le démon. Cela peut arriver parce que le démon tourne dans un conteneur où, contrairement à notre environnement au-dessus, l'accès réseau est indisponible, @file{/bin/sh} n'existe pas, etc.@: (@pxref{Build Environment Setup})." #. type: Plain text -#: guix-git/doc/guix.texi:11659 +#: guix-git/doc/guix.texi:11973 msgid "In such cases, you may need to run inspect the build process from within a container similar to the one the build daemon creates:" msgstr "Dans ce cas, vous pourriez avoir besoin de lancer le processus de construction dans un conteneur similaire à celui que le démon crée :" #. type: example -#: guix-git/doc/guix.texi:11667 +#: guix-git/doc/guix.texi:11981 #, no-wrap msgid "" "$ guix build -K foo\n" @@ -22169,722 +22737,733 @@ msgstr "" "[env]# cd toto-1.2\n" #. type: Plain text -#: guix-git/doc/guix.texi:11676 +#: guix-git/doc/guix.texi:11990 msgid "Here, @command{guix shell -C} creates a container and spawns a new shell in it (@pxref{Invoking guix shell}). The @command{strace gdb} part adds the @command{strace} and @command{gdb} commands to the container, which you may find handy while debugging. The @option{--no-grafts} option makes sure we get the exact same environment, with ungrafted packages (@pxref{Security Updates}, for more info on grafts)." msgstr "Ici, @command{guix shell -C} crée un conteneur et démarre un nouveau shell à l'intérieur (@pxref{Invoquer guix shell}). La partie @command{strace gdb} ajoute les commandes @command{strace} et @command{gdb} dans le conteneur, ce qui pourrait s'avérer utile pour le débogage. L'option @option{--no-grafts} s'assure qu'on obtienne le même environnement, avec des paquets non greffés (@pxref{Security Updates}, pour plus d'informations sur les greffes)." #. type: Plain text -#: guix-git/doc/guix.texi:11679 +#: guix-git/doc/guix.texi:11993 msgid "To get closer to a container like that used by the build daemon, we can remove @file{/bin/sh}:" msgstr "Pour obtenir un conteneur plus proche de ce qui serait utilisé par le démon de construction, on peut enlever @file{/bin/sh} :" #. type: example -#: guix-git/doc/guix.texi:11682 +#: guix-git/doc/guix.texi:11996 #, no-wrap msgid "[env]# rm /bin/sh\n" msgstr "[env]# rm /bin/sh\n" #. type: Plain text -#: guix-git/doc/guix.texi:11686 +#: guix-git/doc/guix.texi:12000 msgid "(Don't worry, this is harmless: this is all happening in the throw-away container created by @command{guix shell}.)" msgstr "(Ne vous inquiétez pas, c'est sans danger : tout cela se passe dans un conteneur jetable créé par @command{guix shell}.)" #. type: Plain text -#: guix-git/doc/guix.texi:11689 +#: guix-git/doc/guix.texi:12003 msgid "The @command{strace} command is probably not in the search path, but we can run:" msgstr "La commande @command{strace} n'est probablement pas dans le chemin de recherche, mais on peut lancer :" #. type: example -#: guix-git/doc/guix.texi:11692 +#: guix-git/doc/guix.texi:12006 #, no-wrap msgid "[env]# $GUIX_ENVIRONMENT/bin/strace -f -o log make check\n" msgstr "[env]# $GUIX_ENVIRONMENT/bin/strace -f -o log make check\n" #. type: Plain text -#: guix-git/doc/guix.texi:11697 +#: guix-git/doc/guix.texi:12011 msgid "In this way, not only you will have reproduced the environment variables the daemon uses, you will also be running the build process in a container similar to the one the daemon uses." msgstr "De cette manière, non seulement vous aurez reproduit les variables d'environnement utilisées par le démon, mais vous lancerez aussi le processus de construction dans un conteneur similaire à celui utilisé par le démon." #. type: section -#: guix-git/doc/guix.texi:11700 +#: guix-git/doc/guix.texi:12014 #, no-wrap msgid "Invoking @command{guix edit}" msgstr "Invoquer @command{guix edit}" #. type: command{#1} -#: guix-git/doc/guix.texi:11702 +#: guix-git/doc/guix.texi:12016 #, no-wrap msgid "guix edit" msgstr "guix edit" #. type: cindex -#: guix-git/doc/guix.texi:11703 +#: guix-git/doc/guix.texi:12017 #, no-wrap msgid "package definition, editing" msgstr "définition de paquets, modification" #. type: Plain text -#: guix-git/doc/guix.texi:11708 +#: guix-git/doc/guix.texi:12022 msgid "So many packages, so many source files! The @command{guix edit} command facilitates the life of users and packagers by pointing their editor at the source file containing the definition of the specified packages. For instance:" msgstr "Tant de paquets, tant de fichiers source ! La commande @command{guix edit} facilite la vie des utilisateurs et des empaqueteurs en plaçant leur éditeur sur le fichier source qui contient la définition des paquets spécifiés. Par exemple :" #. type: example -#: guix-git/doc/guix.texi:11711 +#: guix-git/doc/guix.texi:12025 #, no-wrap msgid "guix edit gcc@@4.9 vim\n" msgstr "guix edit gcc@@4.9 vim\n" #. type: Plain text -#: guix-git/doc/guix.texi:11717 +#: guix-git/doc/guix.texi:12031 msgid "launches the program specified in the @env{VISUAL} or in the @env{EDITOR} environment variable to view the recipe of GCC@tie{}4.9.3 and that of Vim." msgstr "lance le programme spécifié dans la variable d'environnement @env{VISUAL} ou dans la variable d'environnement @code{EDITOR} pour visionner la recette de GCC@tie{}4.9.3 et celle de Vim." #. type: Plain text -#: guix-git/doc/guix.texi:11723 +#: guix-git/doc/guix.texi:12037 msgid "If you are using a Guix Git checkout (@pxref{Building from Git}), or have created your own packages on @env{GUIX_PACKAGE_PATH} (@pxref{Package Modules}), you will be able to edit the package recipes. In other cases, you will be able to examine the read-only recipes for packages currently in the store." msgstr "Si vous utilisez une copie du dépôt Git de Guix (@pxref{Building from Git}), ou que vous avez créé vos propres paquets dans @env{GUIX_PACKAGE_PATH} (@pxref{Package Modules}), vous pourrez modifier les recettes des paquets. Sinon, vous pourrez examiner les recettes en lecture-seule des paquets actuellement dans le dépôt." #. type: Plain text -#: guix-git/doc/guix.texi:11728 +#: guix-git/doc/guix.texi:12042 msgid "Instead of @env{GUIX_PACKAGE_PATH}, the command-line option @option{--load-path=@var{directory}} (or in short @option{-L @var{directory}}) allows you to add @var{directory} to the front of the package module search path and so make your own packages visible." msgstr "Au lieu de @env{GUIX_PACKAGE_PATH}, l'option de la ligne de commande @option{--load-path=@var{directory}} (ou en bref @option{-L @var{directory}}) vous permet d'ajouter @var{directory} au début du chemin de recherche du module de paquet et donc de rendre vos propres paquets visibles." #. type: section -#: guix-git/doc/guix.texi:11730 +#: guix-git/doc/guix.texi:12044 #, no-wrap msgid "Invoking @command{guix download}" msgstr "Invoquer @command{guix download}" #. type: command{#1} -#: guix-git/doc/guix.texi:11732 +#: guix-git/doc/guix.texi:12046 #, no-wrap msgid "guix download" msgstr "guix download" #. type: cindex -#: guix-git/doc/guix.texi:11733 +#: guix-git/doc/guix.texi:12047 #, no-wrap msgid "downloading package sources" msgstr "télécharger les sources des paquets" #. type: Plain text -#: guix-git/doc/guix.texi:11740 +#: guix-git/doc/guix.texi:12054 msgid "When writing a package definition, developers typically need to download a source tarball, compute its SHA256 hash, and write that hash in the package definition (@pxref{Defining Packages}). The @command{guix download} tool helps with this task: it downloads a file from the given URI, adds it to the store, and prints both its file name in the store and its SHA256 hash." msgstr "Lorsqu'on écrit une définition de paquet, on a généralement besoin de télécharger une archive des sources, calculer son hash SHA256 et écrire ce hash dans la définition du paquet (@pxref{Defining Packages}). L'outil @command{guix download} aide à cette tâche : il télécharge un fichier à l'URL donné, l'ajoute au dépôt et affiche à la fois son nom dans le dépôt et son hash SHA56." #. type: Plain text -#: guix-git/doc/guix.texi:11747 +#: guix-git/doc/guix.texi:12061 msgid "The fact that the downloaded file is added to the store saves bandwidth: when the developer eventually tries to build the newly defined package with @command{guix build}, the source tarball will not have to be downloaded again because it is already in the store. It is also a convenient way to temporarily stash files, which may be deleted eventually (@pxref{Invoking guix gc})." msgstr "Le fait que le fichier téléchargé soit ajouté au dépôt économise la bande passante : quand on construit ensuite le paquet nouvellement défini avec @command{guix build}, l'archive des sources n'a pas besoin d'être à nouveau téléchargée puisqu'elle se trouve déjà dans le dépôt. C'est aussi une manière pratique de garder des fichiers temporairement, qui pourront ensuite être supprimés (@pxref{Invoking guix gc})." #. type: Plain text -#: guix-git/doc/guix.texi:11755 +#: guix-git/doc/guix.texi:12069 msgid "The @command{guix download} command supports the same URIs as used in package definitions. In particular, it supports @code{mirror://} URIs. @code{https} URIs (HTTP over TLS) are supported @emph{provided} the Guile bindings for GnuTLS are available in the user's environment; when they are not available, an error is raised. @xref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile}, for more information." msgstr "La commande @command{guix download} supporte les mêmes URI que celles utilisées dans les définitions de paquets. En particulier, elle supporte les URI @code {mirror://}. Les URI @code{http} (HTTP sur TLS) sont supportées @emph{si} les liaisons Guile de GnuTLS sont disponibles dans l'environnement de l'utilisateur ; si elle ne sont pas disponibles, une erreur est renvoyée. @xref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile}, pour plus d'informations." #. type: Plain text -#: guix-git/doc/guix.texi:11760 +#: guix-git/doc/guix.texi:12074 msgid "@command{guix download} verifies HTTPS server certificates by loading the certificates of X.509 authorities from the directory pointed to by the @env{SSL_CERT_DIR} environment variable (@pxref{X.509 Certificates}), unless @option{--no-check-certificate} is used." msgstr "@command{guix download} vérifie les certificats du serveur HTTPS en chargeant les autorités de certification X.509 depuis le répertoire vers lequel pointe la variable d'environnement @env{SSL_CERT_DIR} (@pxref{X.509 Certificates}), à moins que @option{--no-check-certificate} ne soit utilisé." #. type: Plain text -#: guix-git/doc/guix.texi:11762 guix-git/doc/guix.texi:13565 +#: guix-git/doc/guix.texi:12076 guix-git/doc/guix.texi:13922 msgid "The following options are available:" msgstr "Les options suivantes sont disponibles :" #. type: item -#: guix-git/doc/guix.texi:11764 guix-git/doc/guix.texi:11808 +#: guix-git/doc/guix.texi:12078 guix-git/doc/guix.texi:12122 #, no-wrap msgid "--hash=@var{algorithm}" msgstr "--hash=@var{algorithme}" #. type: itemx -#: guix-git/doc/guix.texi:11765 guix-git/doc/guix.texi:11809 +#: guix-git/doc/guix.texi:12079 guix-git/doc/guix.texi:12123 #, no-wrap msgid "-H @var{algorithm}" msgstr "-H @var{algorithme}" #. type: table -#: guix-git/doc/guix.texi:11768 +#: guix-git/doc/guix.texi:12082 msgid "Compute a hash using the specified @var{algorithm}. @xref{Invoking guix hash}, for more information." msgstr "Calcule un hash en utilisant l'@var{algorithme} spécifié. @xref{Invoquer guix hash}, pour plus d' informations." #. type: item -#: guix-git/doc/guix.texi:11769 guix-git/doc/guix.texi:11818 +#: guix-git/doc/guix.texi:12083 guix-git/doc/guix.texi:12132 #, no-wrap msgid "--format=@var{fmt}" msgstr "--format=@var{fmt}" #. type: itemx -#: guix-git/doc/guix.texi:11770 guix-git/doc/guix.texi:11819 +#: guix-git/doc/guix.texi:12084 guix-git/doc/guix.texi:12133 #, no-wrap msgid "-f @var{fmt}" msgstr "-f @var{fmt}" #. type: table -#: guix-git/doc/guix.texi:11773 +#: guix-git/doc/guix.texi:12087 msgid "Write the hash in the format specified by @var{fmt}. For more information on the valid values for @var{fmt}, @pxref{Invoking guix hash}." msgstr "Écrit le hash dans le format spécifié par @var{fmt}. Pour plus d'informations sur les valeurs valides pour @var{fmt}, @pxref{Invoking guix hash}." #. type: item -#: guix-git/doc/guix.texi:11774 +#: guix-git/doc/guix.texi:12088 #, no-wrap msgid "--no-check-certificate" msgstr "--no-check-certificate" #. type: table -#: guix-git/doc/guix.texi:11776 +#: guix-git/doc/guix.texi:12090 msgid "Do not validate the X.509 certificates of HTTPS servers." msgstr "Ne pas valider les certificats HTTPS des serveurs." #. type: table -#: guix-git/doc/guix.texi:11780 +#: guix-git/doc/guix.texi:12094 msgid "When using this option, you have @emph{absolutely no guarantee} that you are communicating with the authentic server responsible for the given URL, which makes you vulnerable to ``man-in-the-middle'' attacks." msgstr "Lorsque vous utilisez cette option, vous n'avez @emph{absolument aucune garanti} que vous communiquez avec le serveur authentique responsable de l'URL donnée, ce qui vous rend vulnérable à des attaques de « l'homme du milieu »." #. type: item -#: guix-git/doc/guix.texi:11781 +#: guix-git/doc/guix.texi:12095 #, no-wrap msgid "--output=@var{file}" msgstr "--output=@var{fichier}" #. type: itemx -#: guix-git/doc/guix.texi:11782 +#: guix-git/doc/guix.texi:12096 #, no-wrap msgid "-o @var{file}" msgstr "-o @var{fichier}" #. type: table -#: guix-git/doc/guix.texi:11785 +#: guix-git/doc/guix.texi:12099 msgid "Save the downloaded file to @var{file} instead of adding it to the store." msgstr "Enregistre le fichier téléchargé dans @var{fichier} plutôt que de l'ajouter au dépôt." #. type: section -#: guix-git/doc/guix.texi:11788 +#: guix-git/doc/guix.texi:12102 #, no-wrap msgid "Invoking @command{guix hash}" msgstr "Invoquer @command{guix hash}" #. type: command{#1} -#: guix-git/doc/guix.texi:11790 +#: guix-git/doc/guix.texi:12104 #, no-wrap msgid "guix hash" msgstr "guix hash" #. type: Plain text -#: guix-git/doc/guix.texi:11795 -#, fuzzy -#| msgid "The @command{guix hash} command computes the hash of a file. It is primarily a convenience tool for anyone contributing to the distribution: it computes the cryptographic hash of a file, which can be used in the definition of a package (@pxref{Defining Packages})." +#: guix-git/doc/guix.texi:12109 msgid "The @command{guix hash} command computes the hash of a file. It is primarily a convenience tool for anyone contributing to the distribution: it computes the cryptographic hash of one or more files, which can be used in the definition of a package (@pxref{Defining Packages})." -msgstr "La commande @command{guix hash} calcule le hash d'un fichier. C'est surtout un outil pour simplifier la vie des contributeur·rice·s à la distribution : elle calcule le hash cryptographique d'un fichier, qui peut être utilisé dans la définition d' un paquet (@pxref{Defining Packages})." +msgstr "La commande @command{guix hash} calcule le hash d'un fichier. C'est surtout un outil pour simplifier la vie des contributeur·rice·s à la distribution : elle calcule le hash cryptographique d'un ou plusieurs fichiers, qui peut être utilisé dans la définition d' un paquet (@pxref{Defining Packages})." #. type: example -#: guix-git/doc/guix.texi:11800 +#: guix-git/doc/guix.texi:12114 #, fuzzy, no-wrap #| msgid "guix hash @var{option} @var{file}\n" msgid "guix hash @var{option} @var{file} ...\n" -msgstr "guix hash @var{option} @var{fichier}\n" +msgstr "guix hash @var{option} @var{fichier} …\n" #. type: Plain text -#: guix-git/doc/guix.texi:11805 +#: guix-git/doc/guix.texi:12119 msgid "When @var{file} is @code{-} (a hyphen), @command{guix hash} computes the hash of data read from standard input. @command{guix hash} has the following options:" msgstr "Lorsque @var{fichier} est @code{-} (un tiret), @command{guix hash} calcul le hash des données lues depuis l'entrée standard. @command{guix hash} a les options suivantes :" #. type: table -#: guix-git/doc/guix.texi:11812 +#: guix-git/doc/guix.texi:12126 msgid "Compute a hash using the specified @var{algorithm}, @code{sha256} by default." msgstr "Calcule un hash en utilisant l' @var{algorithme} spécifié, @code{sha256} par défaut." #. type: table -#: guix-git/doc/guix.texi:11817 -msgid "@var{algorithm} must the name of a cryptographic hash algorithm supported by Libgcrypt @i{via} Guile-Gcrypt---e.g., @code{sha512} or @code{sha3-256} (@pxref{Hash Functions,,, guile-gcrypt, Guile-Gcrypt Reference Manual})." +#: guix-git/doc/guix.texi:12131 +#, fuzzy +#| msgid "@var{algorithm} must the name of a cryptographic hash algorithm supported by Libgcrypt @i{via} Guile-Gcrypt---e.g., @code{sha512} or @code{sha3-256} (@pxref{Hash Functions,,, guile-gcrypt, Guile-Gcrypt Reference Manual})." +msgid "@var{algorithm} must be the name of a cryptographic hash algorithm supported by Libgcrypt @i{via} Guile-Gcrypt---e.g., @code{sha512} or @code{sha3-256} (@pxref{Hash Functions,,, guile-gcrypt, Guile-Gcrypt Reference Manual})." msgstr "@var{algorithm} doit être le nom de l' algorithme d'un hash cryptographique supporté par Libgcrypt @i{via} Guile-Gcrypt---par exemple, @code{sha512} ou @code{sha3-256} (@pxref{Hash Functions,,, guile-gcrypt, Guile-Gcrypt Reference Manual})." #. type: table -#: guix-git/doc/guix.texi:11821 +#: guix-git/doc/guix.texi:12135 msgid "Write the hash in the format specified by @var{fmt}." msgstr "Écrit le hash dans le format spécifié par @var{fmt}." #. type: table -#: guix-git/doc/guix.texi:11824 +#: guix-git/doc/guix.texi:12138 msgid "Supported formats: @code{base64}, @code{nix-base32}, @code{base32}, @code{base16} (@code{hex} and @code{hexadecimal} can be used as well)." msgstr "Formats supportés : @code{base64}, @code{nix-base32}, @code{base32}, @code{base16} (@code{hex} et @code{hexadecimal} peuvent être utilisés)." #. type: table -#: guix-git/doc/guix.texi:11828 +#: guix-git/doc/guix.texi:12142 msgid "If the @option{--format} option is not specified, @command{guix hash} will output the hash in @code{nix-base32}. This representation is used in the definitions of packages." msgstr "Si l'option @option {--format} n'est pas spécifiée, @command{guix hash} affichera le hash en @code{nix-base32}. Cette représentation est utilisée dans les définitions des paquets." #. type: table -#: guix-git/doc/guix.texi:11833 -msgid "This option is deprecated in favor of @option{--serializer}. It is a legacy alias for @var{type} sets to @code{nar}." +#: guix-git/doc/guix.texi:12148 +msgid "The @option{--recursive} option is deprecated in favor of @option{--serializer=nar} (see below); @option{-r} remains accepted as a convenient shorthand." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11834 +#: guix-git/doc/guix.texi:12149 #, fuzzy, no-wrap #| msgid "--type=@var{type}" msgid "--serializer=@var{type}" msgstr "--type=@var{type}" +#. type: itemx +#: guix-git/doc/guix.texi:12150 +#, fuzzy, no-wrap +#| msgid "-t @var{type}" +msgid "-S @var{type}" +msgstr "-t @var{type}" + #. type: table -#: guix-git/doc/guix.texi:11837 +#: guix-git/doc/guix.texi:12152 #, fuzzy #| msgid "Compute the hash on @var{file} recursively." msgid "Compute the hash on @var{file} using @var{type} serialization." msgstr "Calcule le hash sur @var{fichier} récursivement." #. type: table -#: guix-git/doc/guix.texi:11839 +#: guix-git/doc/guix.texi:12154 #, fuzzy #| msgid "The @var{options} can be among the following:" msgid "@var{type} may be one of the following:" msgstr "Les @var{options} peuvent être les suivante :" #. type: item -#: guix-git/doc/guix.texi:11841 guix-git/doc/guix.texi:13918 -#: guix-git/doc/guix.texi:17405 guix-git/doc/guix.texi:19679 +#: guix-git/doc/guix.texi:12156 guix-git/doc/guix.texi:14275 +#: guix-git/doc/guix.texi:17767 guix-git/doc/guix.texi:20041 #, no-wrap msgid "none" msgstr "none" #. type: table -#: guix-git/doc/guix.texi:11843 +#: guix-git/doc/guix.texi:12158 msgid "This is the default: it computes the hash of a file's contents." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11844 +#: guix-git/doc/guix.texi:12159 #, fuzzy, no-wrap #| msgid "Laminar" msgid "nar" msgstr "Laminar" #. type: table -#: guix-git/doc/guix.texi:11854 +#: guix-git/doc/guix.texi:12169 #, fuzzy #| msgid "In this case, the hash is computed on an archive containing @var{file}, including its children if it is a directory. Some of the metadata of @var{file} is part of the archive; for instance, when @var{file} is a regular file, the hash is different depending on whether @var{file} is executable or not. Metadata such as time stamps has no impact on the hash (@pxref{Invoking guix archive})." -msgid "Compute the hash of a ``normalized archive'' (or ``nar'') containing @var{file}, including its children if it is a directory. Some of the metadata of @var{file} is part of the archive; for instance, when @var{file} is a regular file, the hash is different depending on whether @var{file} is executable or not. Metadata such as time stamps has no impact on the hash (@pxref{Invoking guix archive}, for more info on the nar format)." +msgid "Compute the hash of a ``normalized archive'' (or ``nar'') containing @var{file}, including its children if it is a directory. Some of the metadata of @var{file} is part of the archive; for instance, when @var{file} is a regular file, the hash is different depending on whether @var{file} is executable or not. Metadata such as time stamps have no impact on the hash (@pxref{Invoking guix archive}, for more info on the nar format)." msgstr "Dans ce cas, le hash est calculé sur une archive contenant @var{fichier}, dont ses enfants si c'est un répertoire. Certaines métadonnées de @var{fichier} fait partie de l'archive ; par exemple lorsque @var{fichier} est un fichier normal, le hash est différent que le @var{fichier} soit exécutable ou non. Les métadonnées comme un horodatage n'ont aucun impact sur le hash (@pxref{Invoking guix archive})." #. type: item -#: guix-git/doc/guix.texi:11855 +#: guix-git/doc/guix.texi:12170 #, no-wrap msgid "git" msgstr "git" #. type: table -#: guix-git/doc/guix.texi:11858 -msgid "Compute the has of the file or directory as a Git ``tree'', following the same method as the Git version control system." +#: guix-git/doc/guix.texi:12173 +msgid "Compute the hash of the file or directory as a Git ``tree'', following the same method as the Git version control system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11860 +#: guix-git/doc/guix.texi:12175 #, no-wrap msgid "--exclude-vcs" msgstr "--exclude-vcs" #. type: itemx -#: guix-git/doc/guix.texi:11861 guix-git/doc/guix.texi:13038 +#: guix-git/doc/guix.texi:12176 guix-git/doc/guix.texi:13395 #, no-wrap msgid "-x" msgstr "-x" #. type: table -#: guix-git/doc/guix.texi:11864 +#: guix-git/doc/guix.texi:12179 msgid "When combined with @option{--recursive}, exclude version control system directories (@file{.bzr}, @file{.git}, @file{.hg}, etc.)." msgstr "Conjointement avec @option{--recursive}, exclut les répertoires de système de contrôle de version (@file{.bzr}, @file{.git}, @file{.hg}, etc.)." #. type: vindex -#: guix-git/doc/guix.texi:11865 +#: guix-git/doc/guix.texi:12180 #, no-wrap msgid "git-fetch" msgstr "git-fetch" #. type: table -#: guix-git/doc/guix.texi:11869 +#: guix-git/doc/guix.texi:12184 msgid "As an example, here is how you would compute the hash of a Git checkout, which is useful when using the @code{git-fetch} method (@pxref{origin Reference}):" msgstr "Par exemple, voici comment calculer le hash d'un dépôt Git, ce qui est utile avec la méthode @code{git-fetch} (@pxref{origin Reference}) :" #. type: example -#: guix-git/doc/guix.texi:11874 -#, no-wrap +#: guix-git/doc/guix.texi:12189 +#, fuzzy, no-wrap +#| msgid "" +#| "$ git clone http://example.org/foo.git\n" +#| "$ cd foo\n" +#| "$ guix hash -rx .\n" msgid "" "$ git clone http://example.org/foo.git\n" "$ cd foo\n" -"$ guix hash -rx .\n" +"$ guix hash -x --serializer=nar .\n" msgstr "" "$ git clone http://example.org/toto.git\n" "$ cd toto\n" "$ guix hash -rx .\n" #. type: cindex -#: guix-git/doc/guix.texi:11878 guix-git/doc/guix.texi:11883 +#: guix-git/doc/guix.texi:12193 guix-git/doc/guix.texi:12198 #, no-wrap msgid "Invoking @command{guix import}" msgstr "Invoquer @command{guix import}" #. type: cindex -#: guix-git/doc/guix.texi:11880 +#: guix-git/doc/guix.texi:12195 #, no-wrap msgid "importing packages" msgstr "importer des paquets" #. type: cindex -#: guix-git/doc/guix.texi:11881 +#: guix-git/doc/guix.texi:12196 #, no-wrap msgid "package import" msgstr "paquets importés" #. type: cindex -#: guix-git/doc/guix.texi:11882 +#: guix-git/doc/guix.texi:12197 #, no-wrap msgid "package conversion" msgstr "conversion de paquets" #. type: Plain text -#: guix-git/doc/guix.texi:11890 +#: guix-git/doc/guix.texi:12205 msgid "The @command{guix import} command is useful for people who would like to add a package to the distribution with as little work as possible---a legitimate demand. The command knows of a few repositories from which it can ``import'' package metadata. The result is a package definition, or a template thereof, in the format we know (@pxref{Defining Packages})." msgstr "La commande @command{guix import} est utile pour les gens qui voudraient ajouter un paquet à la distribution avec aussi peu de travail que possible — une demande légitime. La commande connaît quelques dépôts logiciels d'où elle peut « importer » des métadonnées de paquets. Le résultat est une définition de paquet, ou un modèle de définition, dans le format reconnu par Guix (@pxref{Defining Packages})." #. type: example -#: guix-git/doc/guix.texi:11895 +#: guix-git/doc/guix.texi:12210 #, no-wrap msgid "guix import @var{importer} @var{options}@dots{}\n" msgstr "guix import @var{importer} @var{options}@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:11900 +#: guix-git/doc/guix.texi:12215 msgid "@var{importer} specifies the source from which to import package metadata, and @var{options} specifies a package identifier and other options specific to @var{importer}." msgstr "@var{importer} spécifie la source depuis laquelle importer des métadonnées de paquets, et @var{options} spécifie un identifiant de paquet et d'autres options spécifiques à @var{importer}." #. type: Plain text -#: guix-git/doc/guix.texi:11904 +#: guix-git/doc/guix.texi:12219 msgid "Some of the importers rely on the ability to run the @command{gpgv} command. For these, GnuPG must be installed and in @code{$PATH}; run @code{guix install gnupg} if needed." msgstr "Certains des importeurs s'appuient sur la capacité d'exécuter la commande @command{gpgv}. Pour ceux-ci, GnuPG doit être installé dans @code{$PATH} ; exécuter @code{guix install gnupg} si nécessaire." #. type: Plain text -#: guix-git/doc/guix.texi:11906 +#: guix-git/doc/guix.texi:12221 msgid "Currently, the available ``importers'' are:" msgstr "Actuellement, les « importeurs » disponibles sont :" #. type: item -#: guix-git/doc/guix.texi:11908 guix-git/doc/guix.texi:12546 +#: guix-git/doc/guix.texi:12223 guix-git/doc/guix.texi:12861 #, no-wrap msgid "gnu" msgstr "gnu" #. type: table -#: guix-git/doc/guix.texi:11912 +#: guix-git/doc/guix.texi:12227 msgid "Import metadata for the given GNU package. This provides a template for the latest version of that GNU package, including the hash of its source tarball, and its canonical synopsis and description." msgstr "Importe des métadonnées d'un paquet GNU donné. Cela fournit un modèle pour la dernière version de ce paquet GNU, avec le hash de son archive, le synopsis et la description canonique." #. type: table -#: guix-git/doc/guix.texi:11915 +#: guix-git/doc/guix.texi:12230 msgid "Additional information such as the package dependencies and its license needs to be figured out manually." msgstr "Les informations supplémentaires comme les dépendances du paquet et sa licence doivent être renseignées manuellement." #. type: table -#: guix-git/doc/guix.texi:11918 +#: guix-git/doc/guix.texi:12233 msgid "For example, the following command returns a package definition for GNU@tie{}Hello:" msgstr "Par exemple, la commande suivante renvoie une définition de paquets pour GNU@tie{}Hello :" #. type: example -#: guix-git/doc/guix.texi:11921 +#: guix-git/doc/guix.texi:12236 #, no-wrap msgid "guix import gnu hello\n" msgstr "guix import gnu hello\n" #. type: table -#: guix-git/doc/guix.texi:11924 guix-git/doc/guix.texi:12165 -#: guix-git/doc/guix.texi:12215 guix-git/doc/guix.texi:12244 +#: guix-git/doc/guix.texi:12239 guix-git/doc/guix.texi:12480 +#: guix-git/doc/guix.texi:12530 guix-git/doc/guix.texi:12559 msgid "Specific command-line options are:" msgstr "Les options spécifiques sont :" #. type: item -#: guix-git/doc/guix.texi:11926 guix-git/doc/guix.texi:12743 +#: guix-git/doc/guix.texi:12241 guix-git/doc/guix.texi:13058 #, no-wrap msgid "--key-download=@var{policy}" msgstr "--key-download=@var{politique}" #. type: table -#: guix-git/doc/guix.texi:11930 +#: guix-git/doc/guix.texi:12245 msgid "As for @command{guix refresh}, specify the policy to handle missing OpenPGP keys when verifying the package signature. @xref{Invoking guix refresh, @option{--key-download}}." msgstr "Comme pour @command{guix refresh}, spécifie la politique de gestion des clefs OpenPGP manquantes lors de la vérification de la signature d'un paquet. @xref{Invoquer guix refresh, @code{--key-download}}." #. type: item -#: guix-git/doc/guix.texi:11932 guix-git/doc/guix.texi:11933 -#: guix-git/doc/guix.texi:12570 +#: guix-git/doc/guix.texi:12247 guix-git/doc/guix.texi:12248 +#: guix-git/doc/guix.texi:12885 #, no-wrap msgid "pypi" msgstr "pypi" #. type: table -#: guix-git/doc/guix.texi:11940 +#: guix-git/doc/guix.texi:12255 msgid "Import metadata from the @uref{https://pypi.python.org/, Python Package Index}. Information is taken from the JSON-formatted description available at @code{pypi.python.org} and usually includes all the relevant information, including package dependencies. For maximum efficiency, it is recommended to install the @command{unzip} utility, so that the importer can unzip Python wheels and gather data from them." msgstr "Importe des métadonnées depuis @uref{https://pypi.python.org/, l'index des paquets Python}. Les informations sont récupérées à partir de la description en JSON disponible sur @code{pypi.python.org} et inclus généralement toutes les informations utiles, dont les dépendances des paquets. Pour une efficacité maximale, il est recommandé d'installer l'utilitaire @command{unzip}, pour que l'importateur puisse dézipper les wheels Python et récupérer les informations contenues à l'intérieur." #. type: table -#: guix-git/doc/guix.texi:11943 +#: guix-git/doc/guix.texi:12258 msgid "The command below imports metadata for the latest version of the @code{itsdangerous} Python package:" msgstr "La commande ci-dessous importe les métadonnées de la dernière version du paquet Python @code{itsdangerous} :" #. type: example -#: guix-git/doc/guix.texi:11946 +#: guix-git/doc/guix.texi:12261 #, no-wrap msgid "guix import pypi itsdangerous\n" msgstr "guix import pypi itsdangerous\n" #. type: table -#: guix-git/doc/guix.texi:11949 guix-git/doc/guix.texi:12052 -#: guix-git/doc/guix.texi:12393 +#: guix-git/doc/guix.texi:12264 guix-git/doc/guix.texi:12367 +#: guix-git/doc/guix.texi:12708 msgid "You can also ask for a specific version:" msgstr "Vous pouvez aussi demander une version spécifique :" #. type: example -#: guix-git/doc/guix.texi:11952 +#: guix-git/doc/guix.texi:12267 #, no-wrap msgid "guix import pypi itsdangerous@@1.1.0\n" msgstr "guix import pypi itsdangerous@@1.1.0\n" #. type: table -#: guix-git/doc/guix.texi:11960 guix-git/doc/guix.texi:11985 -#: guix-git/doc/guix.texi:12017 guix-git/doc/guix.texi:12188 -#: guix-git/doc/guix.texi:12229 guix-git/doc/guix.texi:12280 -#: guix-git/doc/guix.texi:12305 guix-git/doc/guix.texi:12321 -#: guix-git/doc/guix.texi:12369 guix-git/doc/guix.texi:12405 +#: guix-git/doc/guix.texi:12275 guix-git/doc/guix.texi:12300 +#: guix-git/doc/guix.texi:12332 guix-git/doc/guix.texi:12503 +#: guix-git/doc/guix.texi:12544 guix-git/doc/guix.texi:12595 +#: guix-git/doc/guix.texi:12620 guix-git/doc/guix.texi:12636 +#: guix-git/doc/guix.texi:12684 guix-git/doc/guix.texi:12720 msgid "Traverse the dependency graph of the given upstream package recursively and generate package expressions for all those packages that are not yet in Guix." msgstr "Traverse le graphe des dépendances du paquet amont donné et génère les expressions de paquets de tous ceux qui ne sont pas déjà dans Guix." #. type: item -#: guix-git/doc/guix.texi:11962 guix-git/doc/guix.texi:11963 -#: guix-git/doc/guix.texi:12572 +#: guix-git/doc/guix.texi:12277 guix-git/doc/guix.texi:12278 +#: guix-git/doc/guix.texi:12887 #, no-wrap msgid "gem" msgstr "gem" #. type: table -#: guix-git/doc/guix.texi:11972 +#: guix-git/doc/guix.texi:12287 msgid "Import metadata from @uref{https://rubygems.org/, RubyGems}. Information is taken from the JSON-formatted description available at @code{rubygems.org} and includes most relevant information, including runtime dependencies. There are some caveats, however. The metadata doesn't distinguish between synopses and descriptions, so the same string is used for both fields. Additionally, the details of non-Ruby dependencies required to build native extensions is unavailable and left as an exercise to the packager." msgstr "Importe des métadonnées de @uref{https://rubygems.org/, RubyGems}. Les informations sont récupérées au format JSON disponible sur @code{rubygems.org} et inclut les informations les plus utiles, comme les dépendances à l'exécution. Il y a des cependant quelques restrictions. Les métadonnées ne distinguent pas synopsis et description, donc la même chaîne est utilisée pour les deux champs. En plus, les détails des dépendances non Ruby requises pour construire des extensions natives sont indisponibles et laissé en exercice à l'empaqueteur." #. type: table -#: guix-git/doc/guix.texi:11974 +#: guix-git/doc/guix.texi:12289 msgid "The command below imports metadata for the @code{rails} Ruby package:" msgstr "La commande ci-dessous importe les métadonnées pour le paquet Ruby @code{rails} :" #. type: example -#: guix-git/doc/guix.texi:11977 +#: guix-git/doc/guix.texi:12292 #, no-wrap msgid "guix import gem rails\n" msgstr "guix import gem rails\n" #. type: cindex -#: guix-git/doc/guix.texi:11987 guix-git/doc/guix.texi:11988 +#: guix-git/doc/guix.texi:12302 guix-git/doc/guix.texi:12303 #, no-wrap msgid "minetest" msgstr "minetest" #. type: cindex -#: guix-git/doc/guix.texi:11989 +#: guix-git/doc/guix.texi:12304 #, no-wrap msgid "ContentDB" msgstr "ContentDB" #. type: table -#: guix-git/doc/guix.texi:11998 +#: guix-git/doc/guix.texi:12313 msgid "Import metadata from @uref{https://content.minetest.net, ContentDB}. Information is taken from the JSON-formatted metadata provided through @uref{https://content.minetest.net/help/api/, ContentDB's API} and includes most relevant information, including dependencies. There are some caveats, however. The license information is often incomplete. The commit hash is sometimes missing. The descriptions are in the Markdown format, but Guix uses Texinfo instead. Texture packs and subgames are unsupported." msgstr "Importe des métadonnées de @uref{https://content.minetest.net, ContentDB}. Les informations sont récupérées au format JSON disponible à travers @uref{https://content.minetest.net/help/api/, l'API de ContentDB} et inclus les informations les plus utiles, dont les dépendances. Il y a cependant quelques limitations. L'information de licence est souvent incomplète. Le hash de commit est parfois oublié. Les descriptions sont au format Markdown mais Guix utilise plutôt Texinfo. Les packs de textures et les jeux ne sont pas pris en charge." #. type: table -#: guix-git/doc/guix.texi:12000 +#: guix-git/doc/guix.texi:12315 msgid "The command below imports metadata for the Mesecons mod by Jeija:" msgstr "La commande ci-dessous importe les métadonnées pour le mod Mesecons de Jeija :" #. type: example -#: guix-git/doc/guix.texi:12003 +#: guix-git/doc/guix.texi:12318 #, no-wrap msgid "guix import minetest Jeija/mesecons\n" msgstr "guix import minetest Jeija/mesecons\n" #. type: table -#: guix-git/doc/guix.texi:12006 +#: guix-git/doc/guix.texi:12321 msgid "The author name can also be left out:" msgstr "Vous pouvez aussi ne pas indiquer le nom de l'auteur :" #. type: example -#: guix-git/doc/guix.texi:12009 +#: guix-git/doc/guix.texi:12324 #, no-wrap msgid "guix import minetest mesecons\n" msgstr "guix import minetest mesecons\n" #. type: item -#: guix-git/doc/guix.texi:12019 guix-git/doc/guix.texi:12568 +#: guix-git/doc/guix.texi:12334 guix-git/doc/guix.texi:12883 #, no-wrap msgid "cpan" msgstr "cpan" #. type: cindex -#: guix-git/doc/guix.texi:12020 +#: guix-git/doc/guix.texi:12335 #, no-wrap msgid "CPAN" msgstr "CPAN" #. type: table -#: guix-git/doc/guix.texi:12028 +#: guix-git/doc/guix.texi:12343 msgid "Import metadata from @uref{https://www.metacpan.org/, MetaCPAN}. Information is taken from the JSON-formatted metadata provided through @uref{https://fastapi.metacpan.org/, MetaCPAN's API} and includes most relevant information, such as module dependencies. License information should be checked closely. If Perl is available in the store, then the @code{corelist} utility will be used to filter core modules out of the list of dependencies." msgstr "Importe des métadonnées de @uref{https://www.metacpan.org/, MetaCPAN}. Les informations sont récupérées au format JSON disponible à travers @uref{https://fastapi.metacpan.org/, l'API de MetaCPAN} et inclus les informations les plus utiles, comme les dépendances des modules. L'information sur les licences doit être vérifiée avec attention. Si Perl est disponible dans le dépôt, alors l'utilitaire @code{corelist} sera utiliser pour exclure les modules du cœur de la distribution Perl de la liste des dépendances." #. type: table -#: guix-git/doc/guix.texi:12031 +#: guix-git/doc/guix.texi:12346 msgid "The command command below imports metadata for the Acme::Boolean Perl module:" msgstr "La commande ci-dessous importe des métadonnées pour le module Acme::Boolean Perl :" #. type: example -#: guix-git/doc/guix.texi:12034 +#: guix-git/doc/guix.texi:12349 #, no-wrap msgid "guix import cpan Acme::Boolean\n" msgstr "guix import cpan Acme::Boolean\n" #. type: item -#: guix-git/doc/guix.texi:12036 guix-git/doc/guix.texi:12564 +#: guix-git/doc/guix.texi:12351 guix-git/doc/guix.texi:12879 #, no-wrap msgid "cran" msgstr "cran" #. type: cindex -#: guix-git/doc/guix.texi:12037 +#: guix-git/doc/guix.texi:12352 #, no-wrap msgid "CRAN" msgstr "CRAN" #. type: cindex -#: guix-git/doc/guix.texi:12038 +#: guix-git/doc/guix.texi:12353 #, no-wrap msgid "Bioconductor" msgstr "Bioconductor" #. type: table -#: guix-git/doc/guix.texi:12042 +#: guix-git/doc/guix.texi:12357 msgid "Import metadata from @uref{https://cran.r-project.org/, CRAN}, the central repository for the @uref{https://r-project.org, GNU@tie{}R statistical and graphical environment}." msgstr "Importe des métadonnées de @uref{https://cran.r-project.org/, CRAN}, le dépôt central de @uref{https://r-project.org, l'environnement statistique et graphique GNU@tie{}R}." #. type: table -#: guix-git/doc/guix.texi:12044 +#: guix-git/doc/guix.texi:12359 msgid "Information is extracted from the @file{DESCRIPTION} file of the package." msgstr "L' information est extraite du fichier @file{DESCRIPTION} du paquet." #. type: table -#: guix-git/doc/guix.texi:12046 +#: guix-git/doc/guix.texi:12361 msgid "The command command below imports metadata for the Cairo R package:" msgstr "La commande ci-dessous importe les métadonnées du paquet Cairo R :" #. type: example -#: guix-git/doc/guix.texi:12049 +#: guix-git/doc/guix.texi:12364 #, no-wrap msgid "guix import cran Cairo\n" msgstr "guix import cran Cairo\n" #. type: example -#: guix-git/doc/guix.texi:12055 +#: guix-git/doc/guix.texi:12370 #, no-wrap msgid "guix import cran rasterVis@@0.50.3\n" msgstr "guix import cran rasterVis@@0.50.3\n" #. type: table -#: guix-git/doc/guix.texi:12060 +#: guix-git/doc/guix.texi:12375 msgid "When @option{--recursive} is added, the importer will traverse the dependency graph of the given upstream package recursively and generate package expressions for all those packages that are not yet in Guix." msgstr "Lorsque l'option @option{--recursive} est utilisée, l'importateur traversera le graphe des dépendances du paquet en amont récursivement et générera des expressions de paquets pour tous ceux qui ne sont pas déjà dans Guix." #. type: table -#: guix-git/doc/guix.texi:12067 +#: guix-git/doc/guix.texi:12382 msgid "When @option{--style=specification} is added, the importer will generate package definitions whose inputs are package specifications instead of references to package variables. This is useful when generated package definitions are to be appended to existing user modules, as the list of used package modules need not be changed. The default is @option{--style=variable}." msgstr "Lorsque vous ajoutez @option{--style=specification}, l'importateur générera des définitions de paquets dont les entrées sont les spécifications des paquets au lieu de références au variables des paquets. C'est utile lorsque des définitions de paquets doivent être ajoutées à des modules utilisateurs, comme la liste des modules de paquets n'a pas besoin d'être changée. La valeur par défaut est @option{--style=variable}." #. type: table -#: guix-git/doc/guix.texi:12072 +#: guix-git/doc/guix.texi:12387 msgid "When @option{--archive=bioconductor} is added, metadata is imported from @uref{https://www.bioconductor.org/, Bioconductor}, a repository of R packages for the analysis and comprehension of high-throughput genomic data in bioinformatics." msgstr "Lorsque @option{--archive=bioconductor} est ajoutée, les métadonnées sont importées depuis @uref{https://www.bioconductor.org/, Bioconductor}, un répertoire de paquets R pour l'analyse et la compréhension de données génomiques volumineuses en bioinformatique." #. type: table -#: guix-git/doc/guix.texi:12075 +#: guix-git/doc/guix.texi:12390 msgid "Information is extracted from the @file{DESCRIPTION} file contained in the package archive." msgstr "Les informations sont extraites du fichier @file{DESCRIPTION} du paquet contenu dans l'archive du paquet." #. type: table -#: guix-git/doc/guix.texi:12077 +#: guix-git/doc/guix.texi:12392 msgid "The command below imports metadata for the GenomicRanges R package:" msgstr "La commande ci-dessous importe les métadonnées pour le paquet R GenomicRanges :" #. type: example -#: guix-git/doc/guix.texi:12080 +#: guix-git/doc/guix.texi:12395 #, no-wrap msgid "guix import cran --archive=bioconductor GenomicRanges\n" msgstr "guix import cran --archive=bioconductor GenomicRanges\n" #. type: table -#: guix-git/doc/guix.texi:12085 +#: guix-git/doc/guix.texi:12400 msgid "Finally, you can also import R packages that have not yet been published on CRAN or Bioconductor as long as they are in a git repository. Use @option{--archive=git} followed by the URL of the git repository:" msgstr "Enfin, vous pouvez aussi importer des paquets R qui n'ont pas encore été publiés sur CRAN ou Bioconductor tant qu'ils ne sont pas dans le dépôt Git. Utilisez @option{--archive=git} suivi par l'URL du dépôt Git :" #. type: example -#: guix-git/doc/guix.texi:12088 +#: guix-git/doc/guix.texi:12403 #, no-wrap msgid "guix import cran --archive=git https://github.com/immunogenomics/harmony\n" msgstr "guix import cran --archive=git https://github.com/immunogenomics/harmony\n" #. type: item -#: guix-git/doc/guix.texi:12090 +#: guix-git/doc/guix.texi:12405 #, no-wrap msgid "texlive" msgstr "texlive" #. type: cindex -#: guix-git/doc/guix.texi:12091 +#: guix-git/doc/guix.texi:12406 #, no-wrap msgid "TeX Live" msgstr "TeX Live" #. type: cindex -#: guix-git/doc/guix.texi:12092 +#: guix-git/doc/guix.texi:12407 #, no-wrap msgid "CTAN" msgstr "CTAN" #. type: table -#: guix-git/doc/guix.texi:12096 +#: guix-git/doc/guix.texi:12411 msgid "Import TeX package information from the TeX Live package database for TeX packages that are part of the @uref{https://www.tug.org/texlive/, TeX Live distribution}." msgstr "Importe les informations de paquets TeX à partir de la base de données TeX Live pour les paquets TeX qui font partie de la @uref{https://www.tug.org/texlive/, distribution TeX Live}." #. type: table -#: guix-git/doc/guix.texi:12101 +#: guix-git/doc/guix.texi:12416 msgid "Information about the package is obtained from the TeX Live package database, a plain text file that is included in the @code{texlive-bin} package. The source code is downloaded from possibly multiple locations in the SVN repository of the Tex Live project." msgstr "Les informations sur les paquets sont obtenues à partir de la base de données des paquets de TeX Live, un fichier texte brut inclus dans le paquets @code{texlive-bin}. Le code source est téléchargé depuis plusieurs emplacements dans le dépôt SVN du projet TeX Live." #. type: table -#: guix-git/doc/guix.texi:12104 +#: guix-git/doc/guix.texi:12419 msgid "The command command below imports metadata for the @code{fontspec} TeX package:" msgstr "La commande ci-dessous importe les métadonnées du paquet TeX @code{fontspec} :" #. type: example -#: guix-git/doc/guix.texi:12107 +#: guix-git/doc/guix.texi:12422 #, no-wrap msgid "guix import texlive fontspec\n" msgstr "guix import texlive fontspec\n" #. type: cindex -#: guix-git/doc/guix.texi:12110 +#: guix-git/doc/guix.texi:12425 #, no-wrap msgid "JSON, import" msgstr "JSON, import" #. type: table -#: guix-git/doc/guix.texi:12113 +#: guix-git/doc/guix.texi:12428 msgid "Import package metadata from a local JSON file. Consider the following example package definition in JSON format:" msgstr "Importe des métadonnées d'un fichier JSON local. Considérez l'exemple suivant d'une définition de paquet au format JSON :" #. type: example -#: guix-git/doc/guix.texi:12126 +#: guix-git/doc/guix.texi:12441 #, no-wrap msgid "" "@{\n" @@ -22912,17 +23491,17 @@ msgstr "" "@}\n" #. type: table -#: guix-git/doc/guix.texi:12132 +#: guix-git/doc/guix.texi:12447 msgid "The field names are the same as for the @code{} record (@xref{Defining Packages}). References to other packages are provided as JSON lists of quoted package specification strings such as @code{guile} or @code{guile@@2.0}." msgstr "Les noms des champs sont les mêmes que pour les enregistrements de @code{} (@xref{Defining Packages}). Les référence à d'autres paquets sont fournies comme des listes JSON de chaînes de spécifications de paquets comme @code{guile} ou @code{guile@@2.0}." #. type: table -#: guix-git/doc/guix.texi:12135 +#: guix-git/doc/guix.texi:12450 msgid "The importer also supports a more explicit source definition using the common fields for @code{} records:" msgstr "L'importateur supporte aussi une définition plus explicite des sources avec les champs habituels pour les enregistrements @code{} :" #. type: example -#: guix-git/doc/guix.texi:12148 +#: guix-git/doc/guix.texi:12463 #, no-wrap msgid "" "@{\n" @@ -22950,382 +23529,382 @@ msgstr "" "@}\n" #. type: table -#: guix-git/doc/guix.texi:12152 +#: guix-git/doc/guix.texi:12467 msgid "The command below reads metadata from the JSON file @code{hello.json} and outputs a package expression:" msgstr "La commande ci-dessous lit les métadonnées du fichier JSON @code{hello.json} et renvoie une expression de paquet :" #. type: example -#: guix-git/doc/guix.texi:12155 +#: guix-git/doc/guix.texi:12470 #, no-wrap msgid "guix import json hello.json\n" msgstr "guix import json hello.json\n" #. type: item -#: guix-git/doc/guix.texi:12157 guix-git/doc/guix.texi:12158 -#: guix-git/doc/guix.texi:12576 +#: guix-git/doc/guix.texi:12472 guix-git/doc/guix.texi:12473 +#: guix-git/doc/guix.texi:12891 #, no-wrap msgid "hackage" msgstr "hackage" #. type: table -#: guix-git/doc/guix.texi:12163 +#: guix-git/doc/guix.texi:12478 msgid "Import metadata from the Haskell community's central package archive @uref{https://hackage.haskell.org/, Hackage}. Information is taken from Cabal files and includes all the relevant information, including package dependencies." msgstr "Importe les métadonnées de l'archive de paquets centrale de la communauté Haskell, @uref{https://hackage.haskell.org/, Hackage}. Les informations sont récupérées depuis les fichiers Cabal et incluent toutes les informations utiles, dont les dépendances des paquets." #. type: item -#: guix-git/doc/guix.texi:12167 +#: guix-git/doc/guix.texi:12482 #, no-wrap msgid "--stdin" msgstr "--stdin" #. type: itemx -#: guix-git/doc/guix.texi:12168 +#: guix-git/doc/guix.texi:12483 #, no-wrap msgid "-s" msgstr "-s" #. type: table -#: guix-git/doc/guix.texi:12170 +#: guix-git/doc/guix.texi:12485 msgid "Read a Cabal file from standard input." msgstr "Lit un fichier Cabal depuis l'entrée standard." #. type: item -#: guix-git/doc/guix.texi:12170 guix-git/doc/guix.texi:12217 +#: guix-git/doc/guix.texi:12485 guix-git/doc/guix.texi:12532 #, no-wrap msgid "--no-test-dependencies" msgstr "--no-test-dependencies" #. type: table -#: guix-git/doc/guix.texi:12173 guix-git/doc/guix.texi:12220 +#: guix-git/doc/guix.texi:12488 guix-git/doc/guix.texi:12535 msgid "Do not include dependencies required only by the test suites." msgstr "N'inclut pas les dépendances requises uniquement par les suites de tests." #. type: item -#: guix-git/doc/guix.texi:12173 +#: guix-git/doc/guix.texi:12488 #, no-wrap msgid "--cabal-environment=@var{alist}" msgstr "--cabal-environment=@var{alist}" #. type: itemx -#: guix-git/doc/guix.texi:12174 +#: guix-git/doc/guix.texi:12489 #, no-wrap msgid "-e @var{alist}" msgstr "-e @var{alist}" #. type: table -#: guix-git/doc/guix.texi:12183 +#: guix-git/doc/guix.texi:12498 msgid "@var{alist} is a Scheme alist defining the environment in which the Cabal conditionals are evaluated. The accepted keys are: @code{os}, @code{arch}, @code{impl} and a string representing the name of a flag. The value associated with a flag has to be either the symbol @code{true} or @code{false}. The value associated with other keys has to conform to the Cabal file format definition. The default value associated with the keys @code{os}, @code{arch} and @code{impl} is @samp{linux}, @samp{x86_64} and @samp{ghc}, respectively." msgstr "@var{alist} est une alist Scheme qui définie l'environnement dans lequel les conditions de Cabal sont évaluées. Les clefs acceptées sont : @code{os}, @code{arch}, @code{impl} et une représentation sous forme de chaîne de caractères du nom d'un drapeau. La valeur associée à un drapeau doit être le symbole @code{true} ou @code{false}. La valeur associée aux autres clefs doivent se conformer avec la définition du format de fichiers Cabal. La valeur par défaut associée avec les clefs @code{os}, @code{arch} et @code{impl} sont respectivement @samp{linux}, @samp{x86_64} et @samp{ghc}." #. type: table -#: guix-git/doc/guix.texi:12193 +#: guix-git/doc/guix.texi:12508 msgid "The command below imports metadata for the latest version of the HTTP Haskell package without including test dependencies and specifying the value of the flag @samp{network-uri} as @code{false}:" msgstr "La commande ci-dessous importe les métadonnées pour la dernière version du paquet HTTP Haskell sans inclure les dépendances de test et en spécifiant la valeur du drapeau @samp{network-uri} comme @code{false} :" #. type: example -#: guix-git/doc/guix.texi:12196 +#: guix-git/doc/guix.texi:12511 #, no-wrap msgid "guix import hackage -t -e \"'((\\\"network-uri\\\" . false))\" HTTP\n" msgstr "guix import hackage -t -e \"'((\\\"network-uri\\\" . false))\" HTTP\n" #. type: table -#: guix-git/doc/guix.texi:12200 +#: guix-git/doc/guix.texi:12515 msgid "A specific package version may optionally be specified by following the package name by an at-sign and a version number as in the following example:" msgstr "Une version spécifique du paquet peut éventuellement être spécifiée en faisant suivre le nom du paquet par un arobase et un numéro de version comme dans l'exemple suivant :" #. type: example -#: guix-git/doc/guix.texi:12203 +#: guix-git/doc/guix.texi:12518 #, no-wrap msgid "guix import hackage mtl@@2.1.3.1\n" msgstr "guix import hackage mtl@@2.1.3.1\n" #. type: item -#: guix-git/doc/guix.texi:12205 guix-git/doc/guix.texi:12206 -#: guix-git/doc/guix.texi:12578 +#: guix-git/doc/guix.texi:12520 guix-git/doc/guix.texi:12521 +#: guix-git/doc/guix.texi:12893 #, no-wrap msgid "stackage" msgstr "stackage" #. type: table -#: guix-git/doc/guix.texi:12213 +#: guix-git/doc/guix.texi:12528 msgid "The @code{stackage} importer is a wrapper around the @code{hackage} one. It takes a package name, looks up the package version included in a long-term support (LTS) @uref{https://www.stackage.org, Stackage} release and uses the @code{hackage} importer to retrieve its metadata. Note that it is up to you to select an LTS release compatible with the GHC compiler used by Guix." msgstr "L'importateur @code{stackage} est une enveloppe autour de l'importateur @code{hackage}. Il prend un nom de paquet, recherche la version incluse dans une version au support étendu (LTS) de @uref{https://www.stackage.org, Stackage} et utilise l'importateur @code{hackage} pour récupérer les métadonnées. Remarquez que c'est à vous de choisir une version LTS compatible avec le compilateur GHC utilisé par Guix." #. type: item -#: guix-git/doc/guix.texi:12220 +#: guix-git/doc/guix.texi:12535 #, no-wrap msgid "--lts-version=@var{version}" msgstr "--lts-version=@var{version}" #. type: itemx -#: guix-git/doc/guix.texi:12221 +#: guix-git/doc/guix.texi:12536 #, no-wrap msgid "-l @var{version}" msgstr "-l @var{version}" #. type: table -#: guix-git/doc/guix.texi:12224 +#: guix-git/doc/guix.texi:12539 msgid "@var{version} is the desired LTS release version. If omitted the latest release is used." msgstr "@var{version} est la version LTS désirée. Si elle est omise, la dernière version est utilisée." #. type: table -#: guix-git/doc/guix.texi:12233 +#: guix-git/doc/guix.texi:12548 msgid "The command below imports metadata for the HTTP Haskell package included in the LTS Stackage release version 7.18:" msgstr "La commande ci-dessous importe les métadonnées pour le paquet HTTP Haskell inclus dans la version 7.18 de LTS Stackage :" #. type: example -#: guix-git/doc/guix.texi:12236 +#: guix-git/doc/guix.texi:12551 #, no-wrap msgid "guix import stackage --lts-version=7.18 HTTP\n" msgstr "guix import stackage --lts-version=7.18 HTTP\n" #. type: item -#: guix-git/doc/guix.texi:12238 guix-git/doc/guix.texi:12239 -#: guix-git/doc/guix.texi:12562 +#: guix-git/doc/guix.texi:12553 guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12877 #, no-wrap msgid "elpa" msgstr "elpa" #. type: table -#: guix-git/doc/guix.texi:12242 +#: guix-git/doc/guix.texi:12557 msgid "Import metadata from an Emacs Lisp Package Archive (ELPA) package repository (@pxref{Packages,,, emacs, The GNU Emacs Manual})." msgstr "Importe les métadonnées du dépôt de paquets ELPA (Emacs Lisp Package Archive) (@pxref{Packages,,, emacs, The GNU Emacs Manual})." #. type: item -#: guix-git/doc/guix.texi:12246 +#: guix-git/doc/guix.texi:12561 #, no-wrap msgid "--archive=@var{repo}" msgstr "--archive=@var{repo}" #. type: itemx -#: guix-git/doc/guix.texi:12247 +#: guix-git/doc/guix.texi:12562 #, no-wrap msgid "-a @var{repo}" msgstr "-a @var{repo}" #. type: table -#: guix-git/doc/guix.texi:12251 +#: guix-git/doc/guix.texi:12566 msgid "@var{repo} identifies the archive repository from which to retrieve the information. Currently the supported repositories and their identifiers are:" msgstr "@var{repo} identifie le dépôt d'archive depuis lequel récupérer les informations. Actuellement les dépôts supportés et leurs identifiants sont :" #. type: itemize -#: guix-git/doc/guix.texi:12255 +#: guix-git/doc/guix.texi:12570 msgid "@uref{https://elpa.gnu.org/packages, GNU}, selected by the @code{gnu} identifier. This is the default." msgstr "@uref{https://elpa.gnu.org/packages, GNU}, qu'on peut choisir avec l'identifiant @code{gnu}. C'est la valeur par défaut." #. type: itemize -#: guix-git/doc/guix.texi:12261 +#: guix-git/doc/guix.texi:12576 msgid "Packages from @code{elpa.gnu.org} are signed with one of the keys contained in the GnuPG keyring at @file{share/emacs/25.1/etc/package-keyring.gpg} (or similar) in the @code{emacs} package (@pxref{Package Installation, ELPA package signatures,, emacs, The GNU Emacs Manual})." msgstr "Les paquets de @code{elpa.gnu.org} avec l'une des clefs contenues dans le porte-clef GnuPG @file{share/emacs/25.1/etc/package-keyring.gpg} (ou similaire) dans le paquet @code{emacs} (@pxref{Package Installation, ELPA package signatures,, emacs, The GNU Emacs Manual})." #. type: itemize -#: guix-git/doc/guix.texi:12265 +#: guix-git/doc/guix.texi:12580 msgid "@uref{https://elpa.nongnu.org/nongnu/, NonGNU}, selected by the @code{nongnu} identifier." msgstr "@uref{https://elpa.nongnu.org/nongnu/, NonGNU}, qu'on peut choisir avec l'identifiant @code{nongnu}." #. type: itemize -#: guix-git/doc/guix.texi:12269 +#: guix-git/doc/guix.texi:12584 msgid "@uref{https://stable.melpa.org/packages, MELPA-Stable}, selected by the @code{melpa-stable} identifier." msgstr "@uref{https://stable.melpa.org/packages, MELPA-Stable}, qu'on peut sélectionner avec l'identifiant @code{melpa-stable}." #. type: itemize -#: guix-git/doc/guix.texi:12273 +#: guix-git/doc/guix.texi:12588 msgid "@uref{https://melpa.org/packages, MELPA}, selected by the @code{melpa} identifier." msgstr "@uref{https://melpa.org/packages, MELPA}, qu'on peut sélectionner avec l'identifiant @code{melpa}." #. type: item -#: guix-git/doc/guix.texi:12282 guix-git/doc/guix.texi:12283 -#: guix-git/doc/guix.texi:12580 +#: guix-git/doc/guix.texi:12597 guix-git/doc/guix.texi:12598 +#: guix-git/doc/guix.texi:12895 #, no-wrap msgid "crate" msgstr "crate" #. type: table -#: guix-git/doc/guix.texi:12286 +#: guix-git/doc/guix.texi:12601 msgid "Import metadata from the crates.io Rust package repository @uref{https://crates.io, crates.io}, as in this example:" msgstr "Importer les métadonnées du dépôt de paquets Rust crates.io @uref{https://crates.io, crates.io}, comme dans cet exemple :" #. type: example -#: guix-git/doc/guix.texi:12289 +#: guix-git/doc/guix.texi:12604 #, no-wrap msgid "guix import crate blake2-rfc\n" msgstr "guix import crate blake2-rfc\n" #. type: table -#: guix-git/doc/guix.texi:12292 +#: guix-git/doc/guix.texi:12607 msgid "The crate importer also allows you to specify a version string:" msgstr "L'importeur crate vous permet aussi de spécifier une version de chaînes de caractères :" #. type: example -#: guix-git/doc/guix.texi:12295 +#: guix-git/doc/guix.texi:12610 #, no-wrap msgid "guix import crate constant-time-eq@@0.1.0\n" msgstr "guix import crate constant-time-eq@@0.1.0\n" #. type: table -#: guix-git/doc/guix.texi:12298 guix-git/doc/guix.texi:12314 -#: guix-git/doc/guix.texi:12362 guix-git/doc/guix.texi:12399 +#: guix-git/doc/guix.texi:12613 guix-git/doc/guix.texi:12629 +#: guix-git/doc/guix.texi:12677 guix-git/doc/guix.texi:12714 msgid "Additional options include:" msgstr "Les options supplémentaires comprennent :" #. type: item -#: guix-git/doc/guix.texi:12307 +#: guix-git/doc/guix.texi:12622 #, no-wrap msgid "opam" msgstr "opam" #. type: cindex -#: guix-git/doc/guix.texi:12308 +#: guix-git/doc/guix.texi:12623 #, no-wrap msgid "OPAM" msgstr "OPAM" #. type: cindex -#: guix-git/doc/guix.texi:12309 +#: guix-git/doc/guix.texi:12624 #, no-wrap msgid "OCaml" msgstr "OCaml" #. type: table -#: guix-git/doc/guix.texi:12312 +#: guix-git/doc/guix.texi:12627 msgid "Import metadata from the @uref{https://opam.ocaml.org/, OPAM} package repository used by the OCaml community." msgstr "Importe les métadonnées du répertoire de paquets @uref{https://opam.ocaml.org/, OPAM} utilisé par la communauté OCaml." #. type: item -#: guix-git/doc/guix.texi:12321 +#: guix-git/doc/guix.texi:12636 #, no-wrap msgid "--repo" msgstr "--repo" #. type: table -#: guix-git/doc/guix.texi:12325 +#: guix-git/doc/guix.texi:12640 msgid "By default, packages are searched in the official OPAM repository. This option, which can be used more than once, lets you add other repositories which will be searched for packages. It accepts as valid arguments:" msgstr "Par défaut on recherche les paquets dans le dépôt OPAM officiel. Cette option, qui peut être utilisée plusieurs fois en même temps, vous permet d'ajouter d'autres dépôts dans lesquelles on recherchera les paquets. Les arguments valide sont :" #. type: item -#: guix-git/doc/guix.texi:12327 +#: guix-git/doc/guix.texi:12642 #, no-wrap msgid "the name of a known repository - can be one of @code{opam}," msgstr "le nom d'un dépôt connu — cela peut être @code{opam}," #. type: itemize -#: guix-git/doc/guix.texi:12330 +#: guix-git/doc/guix.texi:12645 msgid "@code{coq} (equivalent to @code{coq-released}), @code{coq-core-dev}, @code{coq-extra-dev} or @code{grew}." msgstr "@code{coq} (équivalent à @code{coq-released}), @code{coq-core-dev}, @code{coq-extra-dev} ou @code{grew}." #. type: item -#: guix-git/doc/guix.texi:12330 +#: guix-git/doc/guix.texi:12645 #, no-wrap msgid "the URL of a repository as expected by the" msgstr "l'URL d'un dépôt, telle qu'attendue par" #. type: itemize -#: guix-git/doc/guix.texi:12334 +#: guix-git/doc/guix.texi:12649 msgid "@code{opam repository add} command (for instance, the URL equivalent of the above @code{opam} name would be @uref{https://opam.ocaml.org})." msgstr "la commande @code{opam repository add} (par exemple, l'URL équivalent au nom @code{opam} plus haut serait @uref{https://opam.ocaml.org})." #. type: item -#: guix-git/doc/guix.texi:12334 +#: guix-git/doc/guix.texi:12649 #, no-wrap msgid "the path to a local copy of a repository (a directory containing a" msgstr "le chemin vers une copie locale d'un dépôt (un répertoire contenant un" #. type: itemize -#: guix-git/doc/guix.texi:12336 +#: guix-git/doc/guix.texi:12651 msgid "@file{packages/} sub-directory)." msgstr "sous-répertoire @file{packages/})." #. type: table -#: guix-git/doc/guix.texi:12341 +#: guix-git/doc/guix.texi:12656 msgid "Repositories are assumed to be passed to this option by order of preference. The additional repositories will not replace the default @code{opam} repository, which is always kept as a fallback." msgstr "Les dépôts sont passés à cette commande par ordre de préférence. Les dépôts supplémentaires ne remplaceront pas le dépôt @code{opam} par défaut, qui est toujours gardé en dernier recours." #. type: table -#: guix-git/doc/guix.texi:12346 +#: guix-git/doc/guix.texi:12661 msgid "Also, please note that versions are not compared across repositories. The first repository (from left to right) that has at least one version of a given package will prevail over any others, and the version imported will be the latest one found @emph{in this repository only}." msgstr "Ainsi, remarquez que les versions ne sont pas comparées entre dépôts. Le premier dépôt (de gauche à droite) qui a au moins une version d'un paquet donné prendra le pas sur les autres, et la version importée sera la plus récente trouvée @emph{dans ce dépôt uniquement}." #. type: cindex -#: guix-git/doc/guix.texi:12349 guix-git/doc/guix.texi:12350 +#: guix-git/doc/guix.texi:12664 guix-git/doc/guix.texi:12665 #, no-wrap msgid "go" msgstr "go" #. type: table -#: guix-git/doc/guix.texi:12353 +#: guix-git/doc/guix.texi:12668 msgid "Import metadata for a Go module using @uref{https://proxy.golang.org, proxy.golang.org}." msgstr "Importe les métadonnées d'un module Go avec @uref{https://proxy.golang.org, proxy.golang.org}." #. type: example -#: guix-git/doc/guix.texi:12356 +#: guix-git/doc/guix.texi:12671 #, no-wrap msgid "guix import go gopkg.in/yaml.v2\n" msgstr "guix import go gopkg.in/yaml.v2\n" #. type: table -#: guix-git/doc/guix.texi:12360 +#: guix-git/doc/guix.texi:12675 msgid "It is possible to use a package specification with a @code{@@VERSION} suffix to import a specific version." msgstr "Il est possible d'utiliser la spécification d'un paquet avec le suffixe @code{@@VERSION} pour importer une version spécifique." #. type: item -#: guix-git/doc/guix.texi:12369 +#: guix-git/doc/guix.texi:12684 #, no-wrap msgid "--pin-versions" msgstr "--pin-versions" #. type: table -#: guix-git/doc/guix.texi:12377 +#: guix-git/doc/guix.texi:12692 msgid "When using this option, the importer preserves the exact versions of the Go modules dependencies instead of using their latest available versions. This can be useful when attempting to import packages that recursively depend on former versions of themselves to build. When using this mode, the symbol of the package is made by appending the version to its name, so that multiple versions of the same package can coexist." msgstr "Lorsque vous utilisez cette option, l'importateur préserve les versions exactes des modules Go de dépendance au lieu d'utiliser leur dernière version disponible. C'est utile si vous essayez d'importer un paquet qui dépend récursivement de versions antérieures de lui-même pour la construction. Lorsque vous utilisez ce mode, le symbole du paquet sera créé en ajoutant la version à son nom, pour que plusieurs version du même paquet puissent coexister." #. type: item -#: guix-git/doc/guix.texi:12379 guix-git/doc/guix.texi:12380 -#: guix-git/doc/guix.texi:12560 +#: guix-git/doc/guix.texi:12694 guix-git/doc/guix.texi:12695 +#: guix-git/doc/guix.texi:12875 #, no-wrap msgid "egg" msgstr "egg" #. type: table -#: guix-git/doc/guix.texi:12387 +#: guix-git/doc/guix.texi:12702 msgid "Import metadata for @uref{https://wiki.call-cc.org/eggs, CHICKEN eggs}. The information is taken from @file{PACKAGE.egg} files found in the @uref{git://code.call-cc.org/eggs-5-all, eggs-5-all} Git repository. However, it does not provide all the information that we need, there is no ``description'' field, and the licenses used are not always precise (BSD is often used instead of BSD-N)." msgstr "Importe les métadonnées pour des @uref{https://wiki.call-cc.org/eggs, « eggs » CHICKEN}. L'information est récupérée dans les fichiers @file{PACKAGE.egg} trouvés dans le dépôt git @uref{git://code.call-cc.org/eggs-5-all, eggs-5-all}. Toutefois, il ne fournit pas toutes les informations dont vous avez besoin, il n'y a pas de champ ``description'' et les licences utilisées ne sont pas toujours précises (BSD est souvent employée à la place de BSD-N)." #. type: example -#: guix-git/doc/guix.texi:12390 +#: guix-git/doc/guix.texi:12705 #, no-wrap msgid "guix import egg sourcehut\n" msgstr "guix import egg sourcehut\n" #. type: example -#: guix-git/doc/guix.texi:12396 +#: guix-git/doc/guix.texi:12711 #, no-wrap msgid "guix import egg arrays@@1.0\n" msgstr "guix import egg arrays@@1.0\n" #. type: Plain text -#: guix-git/doc/guix.texi:12411 +#: guix-git/doc/guix.texi:12726 msgid "The structure of the @command{guix import} code is modular. It would be useful to have more importers for other package formats, and your help is welcome here (@pxref{Contributing})." msgstr "La structure du code de @command{guix import} est modulaire. Il serait utile d'avoir plus d'importateurs pour d'autres formats de paquets et votre aide est la bienvenue sur ce sujet (@pxref{Contributing})." #. type: section -#: guix-git/doc/guix.texi:12413 +#: guix-git/doc/guix.texi:12728 #, no-wrap msgid "Invoking @command{guix refresh}" msgstr "Invoquer @command{guix refresh}" #. type: command{#1} -#: guix-git/doc/guix.texi:12415 +#: guix-git/doc/guix.texi:12730 #, no-wrap msgid "guix refresh" msgstr "guix refresh" #. type: Plain text -#: guix-git/doc/guix.texi:12423 +#: guix-git/doc/guix.texi:12738 msgid "The primary audience of the @command{guix refresh} command is packagers. As a user, you may be interested in the @option{--with-latest} option, which can bring you package update superpowers built upon @command{guix refresh} (@pxref{Package Transformation Options, @option{--with-latest}}). By default, @command{guix refresh} reports any packages provided by the distribution that are outdated compared to the latest upstream version, like this:" msgstr "La commande @command{guix refresh} s'adresse avant tout aux personnes qui écrivent des paquets. En tant qu'utilisateur·rice, vous pourriez être intéressé·e par l'option @option{--with-latest} qui peut vous conférer les superpouvoirs de mettre à jour les paquets, et qui est construite à partir de @command{guix refresh} (@pxref{Package Transformation Options, @option{--with-latest}}). Par défaut, @command{guix refresh} rapporte les paquets fournis par la distribution qui sont en retard par rapport aux dernières versions disponibles en amont, comme ceci :" #. type: example -#: guix-git/doc/guix.texi:12428 +#: guix-git/doc/guix.texi:12743 #, no-wrap msgid "" "$ guix refresh\n" @@ -23337,12 +23916,12 @@ msgstr "" "gnu/packages/glib.scm :77:12 : glib serait mis à jour de 2.34.3 à 2.37.0\n" #. type: Plain text -#: guix-git/doc/guix.texi:12432 +#: guix-git/doc/guix.texi:12747 msgid "Alternatively, one can specify packages to consider, in which case a warning is emitted for packages that lack an updater:" msgstr "On peut aussi spécifier des paquets à prendre en compte, auquel cas un avertissement est émis pour les paquets qui ne sont pas mis à jour :" #. type: example -#: guix-git/doc/guix.texi:12437 +#: guix-git/doc/guix.texi:12752 #, no-wrap msgid "" "$ guix refresh coreutils guile guile-ssh\n" @@ -23354,17 +23933,17 @@ msgstr "" "gnu/packages/guile.scm:136:12 : guile serait mis à jour de 2.0.12 à 2.0.13\n" #. type: Plain text -#: guix-git/doc/guix.texi:12446 +#: guix-git/doc/guix.texi:12761 msgid "@command{guix refresh} browses the upstream repository of each package and determines the highest version number of the releases therein. The command knows how to update specific types of packages: GNU packages, ELPA packages, etc.---see the documentation for @option{--type} below. There are many packages, though, for which it lacks a method to determine whether a new upstream release is available. However, the mechanism is extensible, so feel free to get in touch with us to add a new method!" msgstr "@command{guix refresh} navigue le dépôt amont de chaque paquet et détermine le numéro de version le plus élevé parmi les versions publiées. La commande sait comment mettre à jour certains types de paquets : les paquets GNU, les paquets ELPA, etc. — voir la documentation pour @option{--type} ci-dessous. Il y a beaucoup de paquet cependant pour lesquels il manque une méthode pour déterminer si une nouvelle version est disponible en amont. Cependant, le mécanisme est extensible, alors n'hésitez pas à nous contacter pour ajouter une nouvelle méthode !" #. type: table -#: guix-git/doc/guix.texi:12451 +#: guix-git/doc/guix.texi:12766 msgid "Consider the packages specified, and all the packages upon which they depend." msgstr "Considère les paquets spécifiés et tous les paquets dont ils dépendent." #. type: example -#: guix-git/doc/guix.texi:12459 +#: guix-git/doc/guix.texi:12774 #, no-wrap msgid "" "$ guix refresh --recursive coreutils\n" @@ -23382,12 +23961,12 @@ msgstr "" "@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:12467 +#: guix-git/doc/guix.texi:12782 msgid "Sometimes the upstream name differs from the package name used in Guix, and @command{guix refresh} needs a little help. Most updaters honor the @code{upstream-name} property in package definitions, which can be used to that effect:" msgstr "Parfois les noms en amont diffèrent du nom de paquet utilisé par Guix et @command{guix refresh} a besoin d'un peu d'aide. La plupart des gestionnaires de mise à jour honorent la propriété @code{upstream-name} dans les définitions de paquets, ce qui peut être utilisé à cette fin :" #. type: lisp -#: guix-git/doc/guix.texi:12474 +#: guix-git/doc/guix.texi:12789 #, no-wrap msgid "" "(define-public network-manager\n" @@ -23403,325 +23982,325 @@ msgstr "" " (properties '((upstream-name . \"NetworkManager\")))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:12483 +#: guix-git/doc/guix.texi:12798 msgid "When passed @option{--update}, it modifies distribution source files to update the version numbers and source tarball hashes of those package recipes (@pxref{Defining Packages}). This is achieved by downloading each package's latest source tarball and its associated OpenPGP signature, authenticating the downloaded tarball against its signature using @command{gpgv}, and finally computing its hash---note that GnuPG must be installed and in @code{$PATH}; run @code{guix install gnupg} if needed." msgstr "Quand l'option @option{--update} est utilisée, elle modifie les fichiers sources de la distribution pour mettre à jour les numéros de version et les hash de l'archive source de ces recettes de paquets (@pxref{Defining Packages}). Pour ce faire, il télécharge la dernière archive source de chaque paquet et sa signature OpenPGP associée, authentifiant l'archive téléchargée par rapport à sa signature en utilisant @command{gpgv}, et enfin calcule son hash---notez que GnuPG doit être installé et dans @code{$PATH} ; lancez @code{guix install gnupg} si nécessaire." #. type: Plain text -#: guix-git/doc/guix.texi:12489 +#: guix-git/doc/guix.texi:12804 msgid "When the public key used to sign the tarball is missing from the user's keyring, an attempt is made to automatically retrieve it from a public key server; when this is successful, the key is added to the user's keyring; otherwise, @command{guix refresh} reports an error." msgstr "Quand la clé publique utilisée pour signer l'archive est manquante depuis le trousseau de clés utilisateur·rice, une tentative est faite de la récupérer automatiquement depuis un serveur de clé publique ; en cas de succès, la clé est ajoutée au trousseau de l'utilisateur·rice ; sinon, @command{guix refresh} renvoie une erreur." #. type: Plain text -#: guix-git/doc/guix.texi:12491 +#: guix-git/doc/guix.texi:12806 msgid "The following options are supported:" msgstr "Les options suivantes sont supportées :" #. type: table -#: guix-git/doc/guix.texi:12499 guix-git/doc/guix.texi:13447 +#: guix-git/doc/guix.texi:12814 guix-git/doc/guix.texi:13804 msgid "This is useful to precisely refer to a package, as in this example:" msgstr "C'est utile pour précisément se référer à un paquet, comme dans cet exemple :" #. type: example -#: guix-git/doc/guix.texi:12502 +#: guix-git/doc/guix.texi:12817 #, no-wrap msgid "guix refresh -l -e '(@@@@ (gnu packages commencement) glibc-final)'\n" msgstr "guix refresh -l -e '(@@@@ (gnu packages commencement) glibc-final)'\n" #. type: table -#: guix-git/doc/guix.texi:12506 +#: guix-git/doc/guix.texi:12821 msgid "This command lists the dependents of the ``final'' libc (essentially all the packages)." msgstr "Cette commande liste les dépendances de la libc « finale » (presque tous les paquets)." #. type: item -#: guix-git/doc/guix.texi:12507 +#: guix-git/doc/guix.texi:12822 #, no-wrap msgid "--update" msgstr "--update" #. type: itemx -#: guix-git/doc/guix.texi:12508 +#: guix-git/doc/guix.texi:12823 #, no-wrap msgid "-u" msgstr "-u" #. type: table -#: guix-git/doc/guix.texi:12512 +#: guix-git/doc/guix.texi:12827 msgid "Update distribution source files (package recipes) in place. This is usually run from a checkout of the Guix source tree (@pxref{Running Guix Before It Is Installed}):" msgstr "Met à jour les fichiers source de la distribution (les recettes de paquets) en place. Cette option est généralement utilisée depuis une copie du dépôt git de Guix (@pxref{Running Guix Before It Is Installed}) :" #. type: example -#: guix-git/doc/guix.texi:12515 +#: guix-git/doc/guix.texi:12830 #, no-wrap msgid "$ ./pre-inst-env guix refresh -s non-core -u\n" msgstr "$ ./pre-inst-env guix refresh -s non-core -u\n" #. type: table -#: guix-git/doc/guix.texi:12518 +#: guix-git/doc/guix.texi:12833 msgid "@xref{Defining Packages}, for more information on package definitions." msgstr "@xref{Defining Packages}, pour plus d'information sur les définitions des paquets." #. type: item -#: guix-git/doc/guix.texi:12519 +#: guix-git/doc/guix.texi:12834 #, no-wrap msgid "--select=[@var{subset}]" msgstr "--select=[@var{subset}]" #. type: itemx -#: guix-git/doc/guix.texi:12520 +#: guix-git/doc/guix.texi:12835 #, no-wrap msgid "-s @var{subset}" msgstr "-s @var{subset}" #. type: table -#: guix-git/doc/guix.texi:12523 +#: guix-git/doc/guix.texi:12838 msgid "Select all the packages in @var{subset}, one of @code{core} or @code{non-core}." msgstr "Choisi tous les paquets dans @var{subset}, entre @code{core} et @code{non-core}." #. type: table -#: guix-git/doc/guix.texi:12530 +#: guix-git/doc/guix.texi:12845 msgid "The @code{core} subset refers to all the packages at the core of the distribution---i.e., packages that are used to build ``everything else''. This includes GCC, libc, Binutils, Bash, etc. Usually, changing one of these packages in the distribution entails a rebuild of all the others. Thus, such updates are an inconvenience to users in terms of build time or bandwidth used to achieve the upgrade." msgstr "Le sous-ensemble @code{core} se réfère à tous les paquets du cœur de la distribution — c.-à-d.@: les paquets qui sont utilisés pour construire « tout le reste ». Cela comprend GCC, libc, Binutils, Bash, etc. Habituellement, changer l'un de ces paquets dans la distribution implique de reconstruire tous les autres. Ainsi, ces mises à jour sont une nuisance pour les utilisateurs, en terme de temps de compilation et de bande passante utilisés pour effectuer la mise à jour." #. type: table -#: guix-git/doc/guix.texi:12534 +#: guix-git/doc/guix.texi:12849 msgid "The @code{non-core} subset refers to the remaining packages. It is typically useful in cases where an update of the core packages would be inconvenient." msgstr "Le sous-ensemble @code{non-core} se réfère au reste des paquets. C'est habituellement utile dans les cas où une mise à jour des paquets du cœur serait dérangeante." #. type: table -#: guix-git/doc/guix.texi:12539 +#: guix-git/doc/guix.texi:12854 msgid "Select all the packages from the manifest in @var{file}. This is useful to check if any packages of the user manifest can be updated." msgstr "Choisi tous les paquets du manifeste dans @var{file}. C'est utile pour vérifier qu'aucun des paquets du manifeste utilisateur ne peut être mis à jour." #. type: item -#: guix-git/doc/guix.texi:12540 +#: guix-git/doc/guix.texi:12855 #, no-wrap msgid "--type=@var{updater}" msgstr "--type=@var{updater}" #. type: itemx -#: guix-git/doc/guix.texi:12541 +#: guix-git/doc/guix.texi:12856 #, no-wrap msgid "-t @var{updater}" msgstr "-t @var{updater}" #. type: table -#: guix-git/doc/guix.texi:12544 +#: guix-git/doc/guix.texi:12859 msgid "Select only packages handled by @var{updater} (may be a comma-separated list of updaters). Currently, @var{updater} may be one of:" msgstr "Chois uniquement les paquets pris en charge par @var{updater} (éventuellement une liste de gestionnaires de mise à jour séparés par des virgules). Actuellement, @var{updater} peut être l'une des valeurs suivantes :" #. type: table -#: guix-git/doc/guix.texi:12548 +#: guix-git/doc/guix.texi:12863 msgid "the updater for GNU packages;" msgstr "le gestionnaire de mise à jour pour les paquets GNU ;" #. type: item -#: guix-git/doc/guix.texi:12548 +#: guix-git/doc/guix.texi:12863 #, no-wrap msgid "savannah" msgstr "savannah" #. type: table -#: guix-git/doc/guix.texi:12550 +#: guix-git/doc/guix.texi:12865 msgid "the updater for packages hosted at @uref{https://savannah.gnu.org, Savannah};" msgstr "le gestionnaire de mise à jour pour les paquets hébergés sur @uref{https://savannah.gnu.org, Savannah} ;" #. type: item -#: guix-git/doc/guix.texi:12550 +#: guix-git/doc/guix.texi:12865 #, no-wrap msgid "sourceforge" msgstr "sourceforge" #. type: table -#: guix-git/doc/guix.texi:12552 +#: guix-git/doc/guix.texi:12867 msgid "the updater for packages hosted at @uref{https://sourceforge.net, SourceForge};" msgstr "le gestionnaire de mise à jour pour les paquets hébergés sur @uref{https://sourceforge.net, SourceForge} ;" #. type: item -#: guix-git/doc/guix.texi:12552 +#: guix-git/doc/guix.texi:12867 #, no-wrap msgid "gnome" msgstr "gnome" #. type: table -#: guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12869 msgid "the updater for GNOME packages;" msgstr "le gestionnaire de mise à jour pour les paquets GNOME ;" #. type: item -#: guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12869 #, no-wrap msgid "kde" msgstr "kde" #. type: table -#: guix-git/doc/guix.texi:12556 +#: guix-git/doc/guix.texi:12871 msgid "the updater for KDE packages;" msgstr "le gestionnaire de mise à jour pour les paquets KDE ;" #. type: item -#: guix-git/doc/guix.texi:12556 +#: guix-git/doc/guix.texi:12871 #, no-wrap msgid "xorg" msgstr "xorg" #. type: table -#: guix-git/doc/guix.texi:12558 +#: guix-git/doc/guix.texi:12873 msgid "the updater for X.org packages;" msgstr "le gestionnaire de mise à jour pour les paquets X.org ;" #. type: item -#: guix-git/doc/guix.texi:12558 +#: guix-git/doc/guix.texi:12873 #, no-wrap msgid "kernel.org" msgstr "kernel.org" #. type: table -#: guix-git/doc/guix.texi:12560 +#: guix-git/doc/guix.texi:12875 msgid "the updater for packages hosted on kernel.org;" msgstr "le gestionnaire de mise à jour pour les paquets hébergés sur kernel.org ;" #. type: table -#: guix-git/doc/guix.texi:12562 +#: guix-git/doc/guix.texi:12877 msgid "the updater for @uref{https://wiki.call-cc.org/eggs/, Egg} packages;" msgstr "le gestionnaire de mise à jour pour les paquets @uref{https://wiki.call-cc.org/eggs/, Egg} ;" #. type: table -#: guix-git/doc/guix.texi:12564 +#: guix-git/doc/guix.texi:12879 msgid "the updater for @uref{https://elpa.gnu.org/, ELPA} packages;" msgstr "le gestionnaire de mise à jour pour les paquets @uref{https://elpa.gnu.org/, ELPA} ;" #. type: table -#: guix-git/doc/guix.texi:12566 +#: guix-git/doc/guix.texi:12881 msgid "the updater for @uref{https://cran.r-project.org/, CRAN} packages;" msgstr "le gestionnaire de mise à jour pour les paquets @uref{https://cran.r-project.org/, CRAN} ;" #. type: item -#: guix-git/doc/guix.texi:12566 +#: guix-git/doc/guix.texi:12881 #, no-wrap msgid "bioconductor" msgstr "bioconductor" #. type: table -#: guix-git/doc/guix.texi:12568 +#: guix-git/doc/guix.texi:12883 msgid "the updater for @uref{https://www.bioconductor.org/, Bioconductor} R packages;" msgstr "le gestionnaire de mise à jour pour les paquets @uref{https://www.bioconductor.org/, Bioconductor} ;" #. type: table -#: guix-git/doc/guix.texi:12570 +#: guix-git/doc/guix.texi:12885 msgid "the updater for @uref{https://www.cpan.org/, CPAN} packages;" msgstr "le gestionnaire de mise à jour pour les paquets @uref{https://www.cpan.org/, CPAN} ;" #. type: table -#: guix-git/doc/guix.texi:12572 +#: guix-git/doc/guix.texi:12887 msgid "the updater for @uref{https://pypi.python.org, PyPI} packages." msgstr "le gestionnaire de mise à jour pour les paquets @uref{https://pypi.python.org, PyPI}." #. type: table -#: guix-git/doc/guix.texi:12574 +#: guix-git/doc/guix.texi:12889 msgid "the updater for @uref{https://rubygems.org, RubyGems} packages." msgstr "le gestionnaire de mise à jour pour les paquets @uref{https://rubygems.org, RubyGems}." #. type: item -#: guix-git/doc/guix.texi:12574 +#: guix-git/doc/guix.texi:12889 #, no-wrap msgid "github" msgstr "github" #. type: table -#: guix-git/doc/guix.texi:12576 +#: guix-git/doc/guix.texi:12891 msgid "the updater for @uref{https://github.com, GitHub} packages." msgstr "le gestionnaire de mise à jour pour les paquets @uref{https://github.com, GitHub}." #. type: table -#: guix-git/doc/guix.texi:12578 +#: guix-git/doc/guix.texi:12893 msgid "the updater for @uref{https://hackage.haskell.org, Hackage} packages." msgstr "le gestionnaire de mise à jour pour les paquets @uref{https://hackage.haskell.org, Hackage}." #. type: table -#: guix-git/doc/guix.texi:12580 +#: guix-git/doc/guix.texi:12895 msgid "the updater for @uref{https://www.stackage.org, Stackage} packages." msgstr "le gestionnaire de mise à jour pour les paquets @uref{https://www.stackage.org, Stackage}." #. type: table -#: guix-git/doc/guix.texi:12582 +#: guix-git/doc/guix.texi:12897 msgid "the updater for @uref{https://crates.io, Crates} packages." msgstr "le gestionnaire de mise à jour pour les paquets @uref{https://crates.io, Crates}." #. type: item -#: guix-git/doc/guix.texi:12582 +#: guix-git/doc/guix.texi:12897 #, no-wrap msgid "launchpad" msgstr "launchpad" #. type: table -#: guix-git/doc/guix.texi:12584 +#: guix-git/doc/guix.texi:12899 msgid "the updater for @uref{https://launchpad.net, Launchpad} packages." msgstr "le gestionnaire de mise à jour pour les paquets @uref{https://launchpad.net, Launchpad}." #. type: item -#: guix-git/doc/guix.texi:12584 +#: guix-git/doc/guix.texi:12899 #, no-wrap msgid "generic-html" msgstr "generic-html" #. type: table -#: guix-git/doc/guix.texi:12587 +#: guix-git/doc/guix.texi:12902 msgid "a generic updater that crawls the HTML page where the source tarball of the package is hosted, when applicable." msgstr "un gestionnaire de mise à jour qui visite la page HTML où l'archive des sources est hébergée, lorsque c'est possible." #. type: item -#: guix-git/doc/guix.texi:12588 +#: guix-git/doc/guix.texi:12903 #, no-wrap msgid "generic-git" msgstr "generic-git" #. type: table -#: guix-git/doc/guix.texi:12593 +#: guix-git/doc/guix.texi:12908 msgid "a generic updater for packages hosted on Git repositories. It tries to be smart about parsing Git tag names, but if it is not able to parse the tag name and compare tags correctly, users can define the following properties for a package." msgstr "un gestionnarie de mise à jour générique pour les paquets hébergés sur des dépôts Git. Il essaye d'analyser les noms de tag Git de manière astucieuse, mais s'il ne parvient pas à analyser le nom d'un tag et à comparer les tags correctement, il est possible de définir les propriétés suivantes pour un paquet." #. type: item -#: guix-git/doc/guix.texi:12595 +#: guix-git/doc/guix.texi:12910 #, no-wrap msgid "@code{release-tag-prefix}: a regular expression for matching a prefix of" msgstr "@code{release-tag-prefix} : une expression régulière pour repérer le préfixe dans" #. type: itemize -#: guix-git/doc/guix.texi:12597 guix-git/doc/guix.texi:12600 +#: guix-git/doc/guix.texi:12912 guix-git/doc/guix.texi:12915 msgid "the tag name." msgstr "le nom d'un tag." #. type: item -#: guix-git/doc/guix.texi:12598 +#: guix-git/doc/guix.texi:12913 #, no-wrap msgid "@code{release-tag-suffix}: a regular expression for matching a suffix of" msgstr "@code{release-tag-suffix} : une expression régulière pour repérer le suffixe dans" #. type: item -#: guix-git/doc/guix.texi:12601 +#: guix-git/doc/guix.texi:12916 #, no-wrap msgid "@code{release-tag-version-delimiter}: a string used as the delimiter in" msgstr "@code{release-tag-version-delimiter} : une chaîne de caractères utilisée comme délimitation dans" #. type: itemize -#: guix-git/doc/guix.texi:12603 +#: guix-git/doc/guix.texi:12918 msgid "the tag name for separating the numbers of the version." msgstr "le nom d'un tag pour séparer les numéros de version." #. type: item -#: guix-git/doc/guix.texi:12604 +#: guix-git/doc/guix.texi:12919 #, no-wrap msgid "@code{accept-pre-releases}: by default, the updater will ignore" msgstr "@code{accept-pre-releases} : par défaut, le gestionnaire de mise à jour ignorera" #. type: itemize -#: guix-git/doc/guix.texi:12607 +#: guix-git/doc/guix.texi:12922 msgid "pre-releases; to make it also look for pre-releases, set the this property to @code{#t}." msgstr "les pré-versions ; pour lui faire chercher aussi les pré-versions, assignez à cette propriété la valeur @code{#t}." #. type: lisp -#: guix-git/doc/guix.texi:12618 +#: guix-git/doc/guix.texi:12933 #, no-wrap msgid "" "(package\n" @@ -23741,12 +24320,12 @@ msgstr "" " (release-tag-version-delimiter . \":\"))))\n" #. type: table -#: guix-git/doc/guix.texi:12625 +#: guix-git/doc/guix.texi:12940 msgid "For instance, the following command only checks for updates of Emacs packages hosted at @code{elpa.gnu.org} and for updates of CRAN packages:" msgstr "Par exemple, la commande suivante ne vérifie que les mises à jour des paquets Emacs hébergés sur @code{elpa.gnu.org} et les paquets CRAN :" #. type: example -#: guix-git/doc/guix.texi:12630 +#: guix-git/doc/guix.texi:12945 #, no-wrap msgid "" "$ guix refresh --type=elpa,cran\n" @@ -23758,45 +24337,45 @@ msgstr "" "gnu/packages/emacs.scm:856:13 : emacs-auctex serait mis à jour de 11.88.6 à 11.88.9\n" #. type: item -#: guix-git/doc/guix.texi:12632 +#: guix-git/doc/guix.texi:12947 #, no-wrap msgid "--list-updaters" msgstr "--list-updaters" #. type: itemx -#: guix-git/doc/guix.texi:12633 +#: guix-git/doc/guix.texi:12948 #, no-wrap msgid "-L" msgstr "-L" #. type: table -#: guix-git/doc/guix.texi:12635 +#: guix-git/doc/guix.texi:12950 msgid "List available updaters and exit (see @option{--type} above)." msgstr "Liste les gestionnaires de mises à jour disponibles et quitte (voir @option{--type} ci-dessus)." #. type: table -#: guix-git/doc/guix.texi:12638 +#: guix-git/doc/guix.texi:12953 msgid "For each updater, display the fraction of packages it covers; at the end, display the fraction of packages covered by all these updaters." msgstr "Pour chaque gestionnaire, affiche le pourcentage de paquets qu'il couvre ; à la fin, affiche le pourcentage de paquets couverts par tous les gestionnaires." #. type: Plain text -#: guix-git/doc/guix.texi:12642 +#: guix-git/doc/guix.texi:12957 msgid "In addition, @command{guix refresh} can be passed one or more package names, as in this example:" msgstr "En plus, on peut passer à @command{guix refresh} un ou plusieurs noms de paquets, comme dans cet exemple :" #. type: example -#: guix-git/doc/guix.texi:12645 +#: guix-git/doc/guix.texi:12960 #, no-wrap msgid "$ ./pre-inst-env guix refresh -u emacs idutils gcc@@4.8\n" msgstr "$ ./pre-inst-env guix refresh -u emacs idutils gcc@@4.8\n" #. type: Plain text -#: guix-git/doc/guix.texi:12652 +#: guix-git/doc/guix.texi:12967 msgid "The command above specifically updates the @code{emacs} and @code{idutils} packages. The @option{--select} option would have no effect in this case. You might also want to update definitions that correspond to the packages installed in your profile:" msgstr "La commande ci-dessus met à jour spécifiquement les paquets @code{emacs} et @code{idutils}. L'option @option{--select} n'aurait aucun effet dans ce cas. Vous voudrez aussi sans doute mettre à jour les définitions qui correspondent aux paquets installés dans votre profil :" #. type: example -#: guix-git/doc/guix.texi:12656 +#: guix-git/doc/guix.texi:12971 #, no-wrap msgid "" "$ ./pre-inst-env guix refresh -u \\\n" @@ -23806,39 +24385,39 @@ msgstr "" " $(guix package --list-installed | cut -f1)\n" #. type: Plain text -#: guix-git/doc/guix.texi:12662 +#: guix-git/doc/guix.texi:12977 msgid "When considering whether to upgrade a package, it is sometimes convenient to know which packages would be affected by the upgrade and should be checked for compatibility. For this the following option may be used when passing @command{guix refresh} one or more package names:" msgstr "Pour déterminer s'il faut mettre à jour un paquet, il est parfois pratique de savoir quels paquets seraient affectés par la mise à jour pour pouvoir vérifier la compatibilité. Pour cela l'option suivante peut être utilisée avec un ou plusieurs noms de paquets passés à @command{guix refresh} :" #. type: item -#: guix-git/doc/guix.texi:12665 +#: guix-git/doc/guix.texi:12980 #, no-wrap msgid "--list-dependent" msgstr "--list-dependent" #. type: itemx -#: guix-git/doc/guix.texi:12666 guix-git/doc/guix.texi:13028 +#: guix-git/doc/guix.texi:12981 guix-git/doc/guix.texi:13385 #, no-wrap msgid "-l" msgstr "-l" #. type: table -#: guix-git/doc/guix.texi:12669 +#: guix-git/doc/guix.texi:12984 msgid "List top-level dependent packages that would need to be rebuilt as a result of upgrading one or more packages." msgstr "Liste les paquets de plus haut-niveau qui devraient être reconstruits après la mise à jour d'un ou plusieurs paquets." #. type: table -#: guix-git/doc/guix.texi:12673 +#: guix-git/doc/guix.texi:12988 msgid "@xref{Invoking guix graph, the @code{reverse-package} type of @command{guix graph}}, for information on how to visualize the list of dependents of a package." msgstr "@xref{Invoking guix graph, le type @code{reverse-package} de @command{guix graph}}, pour des informations sur la manière de visualiser la liste des paquets dépendant d'un autre." #. type: Plain text -#: guix-git/doc/guix.texi:12679 +#: guix-git/doc/guix.texi:12994 msgid "Be aware that the @option{--list-dependent} option only @emph{approximates} the rebuilds that would be required as a result of an upgrade. More rebuilds might be required under some circumstances." msgstr "Sachez que l'option @option{--list-dependent} n'a qu'une approche @emph{approximative} sur les reconstructions qui seraient nécessaires à la suite d'une mise à jour. D'autres reconstructions peuvent être nécessaires dans certaines circonstances." #. type: example -#: guix-git/doc/guix.texi:12684 +#: guix-git/doc/guix.texi:12999 #, no-wrap msgid "" "$ guix refresh --list-dependent flex\n" @@ -23850,23 +24429,23 @@ msgstr "" "hop@@2.4.0 emacs-geiser@@0.13 notmuch@@0.18 mu@@0.9.9.5 cflow@@1.4 idutils@@4.6 @dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:12688 +#: guix-git/doc/guix.texi:13003 msgid "The command above lists a set of packages that could be built to check for compatibility with an upgraded @code{flex} package." msgstr "La commande ci-dessus liste un ensemble de paquets qui peuvent être construits pour vérifier la compatibilité d'une mise à jour de @code{flex}." #. type: item -#: guix-git/doc/guix.texi:12691 +#: guix-git/doc/guix.texi:13006 #, no-wrap msgid "--list-transitive" msgstr "--list-transitive" #. type: table -#: guix-git/doc/guix.texi:12693 +#: guix-git/doc/guix.texi:13008 msgid "List all the packages which one or more packages depend upon." msgstr "Lister tous les paquets dont un paquet ou plus dépendent." #. type: example -#: guix-git/doc/guix.texi:12698 +#: guix-git/doc/guix.texi:13013 #, no-wrap msgid "" "$ guix refresh --list-transitive flex\n" @@ -23878,60 +24457,60 @@ msgstr "" "bison@@3.0.5 indent@@2.2.10 tar@@1.30 gzip@@1.9 bzip2@@1.0.6 xz@@5.2.4 file@@5.33 @dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:12704 +#: guix-git/doc/guix.texi:13019 msgid "The command above lists a set of packages which, when changed, would cause @code{flex} to be rebuilt." msgstr "La commande ci-dessus liste un ensemble de paquets qui, lorsqu'ils sont modifiés, causent la reconstruction de @code{flex}." #. type: Plain text -#: guix-git/doc/guix.texi:12706 +#: guix-git/doc/guix.texi:13021 msgid "The following options can be used to customize GnuPG operation:" msgstr "Les options suivante peuvent être utilisées pour personnaliser les opérations avec GnuPG :" #. type: item -#: guix-git/doc/guix.texi:12709 +#: guix-git/doc/guix.texi:13024 #, no-wrap msgid "--gpg=@var{command}" msgstr "--gpg=@var{commande}" #. type: table -#: guix-git/doc/guix.texi:12712 +#: guix-git/doc/guix.texi:13027 msgid "Use @var{command} as the GnuPG 2.x command. @var{command} is searched for in @code{$PATH}." msgstr "Utilise @var{commande} comme la commande de GnuPG 2.x. @var{commande} est recherchée dans @code{PATH}." #. type: item -#: guix-git/doc/guix.texi:12713 +#: guix-git/doc/guix.texi:13028 #, no-wrap msgid "--keyring=@var{file}" msgstr "--keyring=@var{fichier}" #. type: table -#: guix-git/doc/guix.texi:12719 +#: guix-git/doc/guix.texi:13034 msgid "Use @var{file} as the keyring for upstream keys. @var{file} must be in the @dfn{keybox format}. Keybox files usually have a name ending in @file{.kbx} and the GNU@tie{}Privacy Guard (GPG) can manipulate these files (@pxref{kbxutil, @command{kbxutil},, gnupg, Using the GNU Privacy Guard}, for information on a tool to manipulate keybox files)." msgstr "Utilise @var{fichier} comme porte-clefs pour les clefs amont. @var{fichier} doit être dans le @dfn{format keybox}. Les fichiers Keybox ont d'habitude un nom qui fini par @file{.kbx} et GNU@tie{}Privacy Guard (GPG) peut manipuler ces fichiers (@pxref{kbxutil, @command{kbxutil},, gnupg, Using the Privacy Guard}, pour plus d'informations sur un outil pour manipuler des fichiers keybox)." #. type: table -#: guix-git/doc/guix.texi:12725 +#: guix-git/doc/guix.texi:13040 msgid "When this option is omitted, @command{guix refresh} uses @file{~/.config/guix/upstream/trustedkeys.kbx} as the keyring for upstream signing keys. OpenPGP signatures are checked against keys from this keyring; missing keys are downloaded to this keyring as well (see @option{--key-download} below)." msgstr "Lorsque cette option est omise, @command{guix refresh} utilise @file{~/.config/guix/upstream/trustedkeys.kbx} comme trousseau pour les clés de signature en amont. Les signatures OpenPGP sont vérifiées avec ces clés ; les clés manquantes sont aussi téléchargées dans ce trousseau (voir @option{--key-download} plus bas)." #. type: table -#: guix-git/doc/guix.texi:12728 +#: guix-git/doc/guix.texi:13043 msgid "You can export keys from your default GPG keyring into a keybox file using commands like this one:" msgstr "Vous pouvez exporter les clefs de votre porte-clefs GPG par défaut dans un fichier keybox avec une commande telle que :" #. type: example -#: guix-git/doc/guix.texi:12731 +#: guix-git/doc/guix.texi:13046 #, no-wrap msgid "gpg --export rms@@gnu.org | kbxutil --import-openpgp >> mykeyring.kbx\n" msgstr "gpg --export rms@@gnu.org | kbxutil --import-openpgp >> mykeyring.kbx\n" #. type: table -#: guix-git/doc/guix.texi:12734 +#: guix-git/doc/guix.texi:13049 msgid "Likewise, you can fetch keys to a specific keybox file like this:" msgstr "De même, vous pouvez récupérer des clefs dans un fichier keybox spécifique comme ceci :" #. type: example -#: guix-git/doc/guix.texi:12738 +#: guix-git/doc/guix.texi:13053 #, no-wrap msgid "" "gpg --no-default-keyring --keyring mykeyring.kbx \\\n" @@ -23941,83 +24520,93 @@ msgstr "" " --recv-keys @value{OPENPGP-SIGNING-KEY-ID}\n" #. type: table -#: guix-git/doc/guix.texi:12742 +#: guix-git/doc/guix.texi:13057 msgid "@xref{GPG Configuration Options, @option{--keyring},, gnupg, Using the GNU Privacy Guard}, for more information on GPG's @option{--keyring} option." msgstr "@xref{GPG Configuration Options, @option{--keyring},, gnupg, Using the GNU Privacy Guard} pour plus d'informations sur l'option @option{--keyring} de GPG." #. type: table -#: guix-git/doc/guix.texi:12746 +#: guix-git/doc/guix.texi:13061 msgid "Handle missing OpenPGP keys according to @var{policy}, which may be one of:" msgstr "Gère les clefs OpenPGP manquantes d'après la @var{politique}, qui peut être l'une des suivantes :" #. type: item -#: guix-git/doc/guix.texi:12748 guix-git/doc/guix.texi:12871 -#: guix-git/doc/guix.texi:22249 +#: guix-git/doc/guix.texi:13063 guix-git/doc/guix.texi:13228 +#: guix-git/doc/guix.texi:22611 #, no-wrap msgid "always" msgstr "always" #. type: table -#: guix-git/doc/guix.texi:12751 +#: guix-git/doc/guix.texi:13066 msgid "Always download missing OpenPGP keys from the key server, and add them to the user's GnuPG keyring." msgstr "Toujours télécharger les clefs manquantes depuis un serveur de clefs et les ajouter au porte-clefs de l'utilisateur." #. type: item -#: guix-git/doc/guix.texi:12752 guix-git/doc/guix.texi:22251 +#: guix-git/doc/guix.texi:13067 guix-git/doc/guix.texi:22613 #, no-wrap msgid "never" msgstr "never" #. type: table -#: guix-git/doc/guix.texi:12754 +#: guix-git/doc/guix.texi:13069 msgid "Never try to download missing OpenPGP keys. Instead just bail out." msgstr "Ne jamais essayer de télécharger les clefs OpenPGP manquante. Quitter à la place." #. type: item -#: guix-git/doc/guix.texi:12755 +#: guix-git/doc/guix.texi:13070 #, no-wrap msgid "interactive" msgstr "interactive" #. type: table -#: guix-git/doc/guix.texi:12758 +#: guix-git/doc/guix.texi:13073 msgid "When a package signed with an unknown OpenPGP key is encountered, ask the user whether to download it or not. This is the default behavior." msgstr "Lorsqu'on rencontre un paquet signé par une clef OpenPGP inconnue, demander à l'utilisateur s'il souhaite la télécharger ou non. C'est le comportement par défaut." #. type: item -#: guix-git/doc/guix.texi:12760 +#: guix-git/doc/guix.texi:13075 #, no-wrap msgid "--key-server=@var{host}" msgstr "--key-server=@var{host}" #. type: table -#: guix-git/doc/guix.texi:12762 +#: guix-git/doc/guix.texi:13077 msgid "Use @var{host} as the OpenPGP key server when importing a public key." msgstr "Utiliser @var{host} comme serveur de clefs OpenPGP lors de l'importe d'une clef publique." #. type: Plain text -#: guix-git/doc/guix.texi:12782 +#: guix-git/doc/guix.texi:13097 msgid "The @code{github} updater uses the @uref{https://developer.github.com/v3/, GitHub API} to query for new releases. When used repeatedly e.g.@: when refreshing all packages, GitHub will eventually refuse to answer any further API requests. By default 60 API requests per hour are allowed, and a full refresh on all GitHub packages in Guix requires more than this. Authentication with GitHub through the use of an API token alleviates these limits. To use an API token, set the environment variable @env{GUIX_GITHUB_TOKEN} to a token procured from @uref{https://github.com/settings/tokens} or otherwise." msgstr "Le gestionnaire de mises à jour @code{github} utilise @uref{https://developer.github.com/v3/, GitHub API} pour faire des requêtes sur les nouvelles versions. Lorsqu'elle est utilisé de manière répétée, par exemple lorsque vous vérifiez tous les paquets, GitHub finira par refuser de répondre à d'autres requêtes de l'API. Par défaut 60 requêtes à l'heure sont autorisées, et une vérification complète de tous les paquets GitHub dans Guix demande bien plus que cela. L'authentification avec GitHub à travers l'utilisation d'un jeton d'API lève ces limites. Pour utiliser un jeton de l'API, initialisez la variable d'environnement @env{GUIX_GITHUB_TOKEN} avec un jeton que vous vous serez procuré sur @uref{https://github.com/settings/tokens} ou autrement." #. type: section -#: guix-git/doc/guix.texi:12785 +#: guix-git/doc/guix.texi:13100 #, no-wrap msgid "Invoking @command{guix style}" msgstr "Invoquer @command{guix style}" #. type: Plain text -#: guix-git/doc/guix.texi:12791 -msgid "The @command{guix style} command helps packagers style their package definitions according to the latest fashionable trends. The command currently focuses on one aspect: the style of package inputs. It may eventually be extended to handle other stylistic matters." +#: guix-git/doc/guix.texi:13105 +msgid "The @command{guix style} command helps packagers style their package definitions according to the latest fashionable trends. The command currently provides the following styling rules:" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix.texi:13110 +msgid "formatting package definitions according to the project's conventions (@pxref{Formatting Code});" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix.texi:13113 +msgid "rewriting package inputs to the ``new style'', as explained below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12796 +#: guix-git/doc/guix.texi:13119 msgid "The way package inputs are written is going through a transition (@pxref{package Reference}, for more on package inputs). Until version 1.3.0, package inputs were written using the ``old style'', where each input was given an explicit label, most of the time the package name:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12803 +#: guix-git/doc/guix.texi:13126 #, no-wrap msgid "" "(package\n" @@ -24028,12 +24617,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12807 +#: guix-git/doc/guix.texi:13130 msgid "Today, the old style is deprecated and the preferred style looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12813 +#: guix-git/doc/guix.texi:13136 #, no-wrap msgid "" "(package\n" @@ -24043,272 +24632,340 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12818 +#: guix-git/doc/guix.texi:13141 msgid "Likewise, uses of @code{alist-delete} and friends to manipulate inputs is now deprecated in favor of @code{modify-inputs} (@pxref{Defining Package Variants}, for more info on @code{modify-inputs})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12823 -msgid "In the vast majority of cases, this is a purely mechanical change on the surface syntax that does not even incur a package rebuild. Running @command{guix style} can do that for you, whether you're working on packages in Guix proper or in an external channel." +#: guix-git/doc/guix.texi:13146 +msgid "In the vast majority of cases, this is a purely mechanical change on the surface syntax that does not even incur a package rebuild. Running @command{guix style -S inputs} can do that for you, whether you're working on packages in Guix proper or in an external channel." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12828 +#: guix-git/doc/guix.texi:13151 #, no-wrap msgid "guix style [@var{options}] @var{package}@dots{}\n" msgstr "guix style [@var{options}] @var{paquet}@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:12834 -msgid "This causes @command{guix style} to analyze and rewrite the definition of @var{package}@dots{}. It does so in a conservative way: preserving comments and bailing out if it cannot make sense of the code that appears in an inputs field. The available options are listed below." +#: guix-git/doc/guix.texi:13158 +msgid "This causes @command{guix style} to analyze and rewrite the definition of @var{package}@dots{} or, when @var{package} is omitted, of @emph{all} the packages. The @option{--styling} or @option{-S} option allows you to select the style rule, the default rule being @code{format}---see below." msgstr "" +#. type: Plain text +#: guix-git/doc/guix.texi:13160 guix-git/doc/guix.texi:14479 +msgid "The available options are listed below." +msgstr "Les options disponibles sont listées ci-dessous." + #. type: table -#: guix-git/doc/guix.texi:12839 +#: guix-git/doc/guix.texi:13165 msgid "Show source file locations that would be edited but do not modify them." msgstr "" +#. type: item +#: guix-git/doc/guix.texi:13166 +#, fuzzy, no-wrap +#| msgid "--keyring=@var{file}" +msgid "--styling=@var{rule}" +msgstr "--keyring=@var{fichier}" + +#. type: itemx +#: guix-git/doc/guix.texi:13167 +#, fuzzy, no-wrap +#| msgid "-S @var{spec}" +msgid "-S @var{rule}" +msgstr "-S @var{spec}" + +#. type: table +#: guix-git/doc/guix.texi:13169 +#, fuzzy +#| msgid "Sort lines according to @var{key}, one of the following options:" +msgid "Apply @var{rule}, one of the following styling rules:" +msgstr "Trie les lignes en fonction de la @var{clef}, l'une des options suivantes :" + +#. type: item +#: guix-git/doc/guix.texi:13171 +#, fuzzy, no-wrap +#| msgid "formatting" +msgid "format" +msgstr "formatting" + +#. type: table +#: guix-git/doc/guix.texi:13176 +msgid "Format the given package definition(s)---this is the default styling rule. For example, a packager running Guix on a checkout (@pxref{Running Guix Before It Is Installed}) might want to reformat the definition of the Coreutils package like so:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:13179 +#, fuzzy, no-wrap +#| msgid "./pre-inst-env guix build guix\n" +msgid "./pre-inst-env guix style coreutils\n" +msgstr "./pre-inst-env guix build guix\n" + +#. type: item +#: guix-git/doc/guix.texi:13181 +#, fuzzy, no-wrap +#| msgid "outputs" +msgid "inputs" +msgstr "sorties" + +#. type: table +#: guix-git/doc/guix.texi:13185 +msgid "Rewrite package inputs to the ``new style'', as described above. This is how you would rewrite inputs of package @code{whatnot} in your own channel:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:13188 +#, no-wrap +msgid "guix style -L ~/my/channel -S inputs whatnot\n" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:13194 +msgid "Rewriting is done in a conservative way: preserving comments and bailing out if it cannot make sense of the code that appears in an inputs field. The @option{--input-simplification} option described below provides fine-grain control over when inputs should be simplified." +msgstr "" + #. type: table -#: guix-git/doc/guix.texi:12848 +#: guix-git/doc/guix.texi:13204 #, fuzzy #| msgid "Install the package @var{exp} evaluates to." msgid "Style the package @var{expr} evaluates to." msgstr "Installer le paquet évalué par @var{exp}." #. type: example -#: guix-git/doc/guix.texi:12853 +#: guix-git/doc/guix.texi:13209 #, fuzzy, no-wrap #| msgid "guix shell -e '(@@ (gnu) %base-packages)'\n" msgid "guix style -e '(@@ (gnu packages gcc) gcc-5)'\n" msgstr "guix shell -e '(@@ (gnu) %base-packages)'\n" #. type: table -#: guix-git/doc/guix.texi:12856 +#: guix-git/doc/guix.texi:13212 #, fuzzy #| msgid "Updating the Guix package definition." msgid "styles the @code{gcc-5} package definition." msgstr "Mettre à jour les définitions de paquets de Guix." #. type: item -#: guix-git/doc/guix.texi:12857 +#: guix-git/doc/guix.texi:13213 #, no-wrap msgid "--input-simplification=@var{policy}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12861 -msgid "Specify the package input simplification policy for cases where an input label does not match the corresponding package name. @var{policy} may be one of the following:" +#: guix-git/doc/guix.texi:13218 +msgid "When using the @code{inputs} styling rule, with @samp{-S inputs}, this option specifies the package input simplification policy for cases where an input label does not match the corresponding package name. @var{policy} may be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12863 +#: guix-git/doc/guix.texi:13220 #, no-wrap msgid "silent" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12866 +#: guix-git/doc/guix.texi:13223 msgid "Simplify inputs only when the change is ``silent'', meaning that the package does not need to be rebuilt (its derivation is unchanged)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12867 +#: guix-git/doc/guix.texi:13224 #, no-wrap msgid "safe" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12870 +#: guix-git/doc/guix.texi:13227 msgid "Simplify inputs only when that is ``safe'' to do: the package might need to be rebuilt, but the change is known to have no observable effect." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12874 +#: guix-git/doc/guix.texi:13231 msgid "Simplify inputs even when input labels do not match package names, and even if that might have an observable effect." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12878 +#: guix-git/doc/guix.texi:13235 msgid "The default is @code{silent}, meaning that input simplifications do not trigger any package rebuild." msgstr "" #. type: section -#: guix-git/doc/guix.texi:12881 +#: guix-git/doc/guix.texi:13238 #, no-wrap msgid "Invoking @command{guix lint}" msgstr "Invoquer @command{guix lint}" #. type: command{#1} -#: guix-git/doc/guix.texi:12883 +#: guix-git/doc/guix.texi:13240 #, no-wrap msgid "guix lint" msgstr "guix lint" #. type: cindex -#: guix-git/doc/guix.texi:12884 +#: guix-git/doc/guix.texi:13241 #, no-wrap msgid "package, checking for errors" msgstr "paquets, chercher des erreurs" #. type: Plain text -#: guix-git/doc/guix.texi:12890 +#: guix-git/doc/guix.texi:13247 msgid "The @command{guix lint} command is meant to help package developers avoid common errors and use a consistent style. It runs a number of checks on a given set of packages in order to find common mistakes in their definitions. Available @dfn{checkers} include (see @option{--list-checkers} for a complete list):" msgstr "La commande @command{guix lint} est conçue pour aider les développeur·euses à éviter des erreurs communes et à utiliser un style cohérent lors de l'écriture de recettes de paquets. Elle lance des vérifications sur un ensemble de paquets donnés pour trouver des erreurs communes dans leur définition. Les @dfn{vérifieurs} disponibles comprennent (voir @option{--list-checkers} pour une liste complète) :" #. type: table -#: guix-git/doc/guix.texi:12896 +#: guix-git/doc/guix.texi:13253 msgid "Validate certain typographical and stylistic rules about package descriptions and synopses." msgstr "Vérifie certaines règles typographiques et stylistiques dans les descriptions et les synopsis." #. type: item -#: guix-git/doc/guix.texi:12897 +#: guix-git/doc/guix.texi:13254 #, no-wrap msgid "inputs-should-be-native" msgstr "inputs-should-be-native" #. type: table -#: guix-git/doc/guix.texi:12899 +#: guix-git/doc/guix.texi:13256 msgid "Identify inputs that should most likely be native inputs." msgstr "Identifie les entrées qui devraient sans doute plutôt être des entrées natives." #. type: itemx -#: guix-git/doc/guix.texi:12902 +#: guix-git/doc/guix.texi:13259 #, no-wrap msgid "mirror-url" msgstr "mirror-url" #. type: itemx -#: guix-git/doc/guix.texi:12903 +#: guix-git/doc/guix.texi:13260 #, no-wrap msgid "github-url" msgstr "github-url" #. type: itemx -#: guix-git/doc/guix.texi:12904 +#: guix-git/doc/guix.texi:13261 #, no-wrap msgid "source-file-name" msgstr "source-file-name" #. type: table -#: guix-git/doc/guix.texi:12911 +#: guix-git/doc/guix.texi:13268 msgid "Probe @code{home-page} and @code{source} URLs and report those that are invalid. Suggest a @code{mirror://} URL when applicable. If the @code{source} URL redirects to a GitHub URL, recommend usage of the GitHub URL@. Check that the source file name is meaningful, e.g.@: is not just a version number or ``git-checkout'', without a declared @code{file-name} (@pxref{origin Reference})." msgstr "Sonde les URL @code{home-page} et @code{source} et rapporte celles qui sont invalides. Suggère une URL en @code{mirror://} lorsque c'est possible. Si l'URL de @code{source} redirige vers une URL GitHub, recommande d'utiliser l'URL GitHub. Vérifie que le nom du fichier source a un sens, p.@: ex.@: qu'il ne s'agisse pas juste d'un numéro de version ou « git-checkout », sans avoir déclaré un @code{file-name} (@pxref{origin Reference})." #. type: item -#: guix-git/doc/guix.texi:12912 +#: guix-git/doc/guix.texi:13269 #, no-wrap msgid "source-unstable-tarball" msgstr "source-unstable-tarball" #. type: table -#: guix-git/doc/guix.texi:12916 +#: guix-git/doc/guix.texi:13273 msgid "Parse the @code{source} URL to determine if a tarball from GitHub is autogenerated or if it is a release tarball. Unfortunately GitHub's autogenerated tarballs are sometimes regenerated." msgstr "Analyse l'URL @code{source} pour déterminer si une archive de GitHub est autogénérée ou s'il s'agit d'une archive de publication. Malheureusement les archives autogénérées de GitHub sont parfois régénérées." #. type: table -#: guix-git/doc/guix.texi:12920 +#: guix-git/doc/guix.texi:13277 msgid "Check that the derivation of the given packages can be successfully computed for all the supported systems (@pxref{Derivations})." msgstr "Vérifiez que la dérivation des paquets donnés peut être calculée avec succès pour tous les systèmes pris en charge (@pxref{Dérivations})." #. type: item -#: guix-git/doc/guix.texi:12921 +#: guix-git/doc/guix.texi:13278 #, no-wrap msgid "profile-collisions" msgstr "profile-collisions" #. type: table -#: guix-git/doc/guix.texi:12927 +#: guix-git/doc/guix.texi:13284 msgid "Check whether installing the given packages in a profile would lead to collisions. Collisions occur when several packages with the same name but a different version or a different store file name are propagated. @xref{package Reference, @code{propagated-inputs}}, for more information on propagated inputs." msgstr "Vérifiez si l'installation des paquets donnés dans un profil risque d'entraîner des collisions. Des collisions se produisent lorsque plusieurs paquets portant le même nom mais avec une version différente ou un nom de fichier de stockage différent sont propagés. @xref{package Reference, @code{propagated-inputs}}, pour plus d'informations sur les entrées propagées." #. type: item -#: guix-git/doc/guix.texi:12928 +#: guix-git/doc/guix.texi:13285 #, no-wrap msgid "archival" msgstr "archivage" #. type: cindex -#: guix-git/doc/guix.texi:12929 +#: guix-git/doc/guix.texi:13286 #, no-wrap msgid "Software Heritage, source code archive" msgstr "Software Heritage, archive de code source" #. type: cindex -#: guix-git/doc/guix.texi:12930 +#: guix-git/doc/guix.texi:13287 #, no-wrap msgid "archival of source code, Software Heritage" msgstr "archivage de code source, Software Heritage" #. type: table -#: guix-git/doc/guix.texi:12933 +#: guix-git/doc/guix.texi:13290 msgid "Checks whether the package's source code is archived at @uref{https://www.softwareheritage.org, Software Heritage}." msgstr "Vérifie si le code source du paquet est archivé à @uref{https://www.softwareheritage.org, Software Heritage}." #. type: table -#: guix-git/doc/guix.texi:12941 +#: guix-git/doc/guix.texi:13298 msgid "When the source code that is not archived comes from a version-control system (VCS)---e.g., it's obtained with @code{git-fetch}, send Software Heritage a ``save'' request so that it eventually archives it. This ensures that the source will remain available in the long term, and that Guix can fall back to Software Heritage should the source code disappear from its original host. The status of recent ``save'' requests can be @uref{https://archive.softwareheritage.org/save/#requests, viewed on-line}." msgstr "Lorsque le code source non archivé provient d'un système de contrôle de version (VCS)---par exemple, il est obtenu avec @code{git-fetch}, envoyez au Software Heritage une requête « save » afin qu'il l'archive éventuellement. Cela garantit que le code source restera disponible à long terme et que Guix peut se retourner vers le Software Heritage si le code source disparaît de son hôte d'origine. L'état des demandes récentes de « sauvegarde » peut être @uref{https://archive.softwareheritage.org/save/#requests, consulté en ligne}." #. type: table -#: guix-git/doc/guix.texi:12946 +#: guix-git/doc/guix.texi:13303 msgid "When source code is a tarball obtained with @code{url-fetch}, simply print a message when it is not archived. As of this writing, Software Heritage does not allow requests to save arbitrary tarballs; we are working on ways to ensure that non-VCS source code is also archived." msgstr "Quand le code source est une archive obtenue avec @code{url-fetch}, cela affiche simplement un message quand il n'est pas archivé. Au moment où nous écrivons ces lignes, le Software Heritage n'autorise pas les demandes de sauvegarde d'archives arbitraires ; nous travaillons sur les moyens de garantir que le code source non-VCS soit également archivé." #. type: table -#: guix-git/doc/guix.texi:12952 +#: guix-git/doc/guix.texi:13309 msgid "Software Heritage @uref{https://archive.softwareheritage.org/api/#rate-limiting, limits the request rate per IP address}. When the limit is reached, @command{guix lint} prints a message and the @code{archival} checker stops doing anything until that limit has been reset." msgstr "Software Heritage @uref{https://archive.softwareheritage.org/api/#rate-limiting, limits the request rate per IP address}. Quand la limite est atteinte, @command{guix lint} affiche un message et le vérificateur @code{archival} arrête de faire quoi que ce soit jusqu'à ce que cette limite soit réinitialisée." #. type: item -#: guix-git/doc/guix.texi:12953 +#: guix-git/doc/guix.texi:13310 #, no-wrap msgid "cve" msgstr "cve" #. type: cindex -#: guix-git/doc/guix.texi:12954 guix-git/doc/guix.texi:37946 +#: guix-git/doc/guix.texi:13311 guix-git/doc/guix.texi:38435 #, no-wrap msgid "security vulnerabilities" msgstr "vulnérabilités" #. type: cindex -#: guix-git/doc/guix.texi:12955 +#: guix-git/doc/guix.texi:13312 #, no-wrap msgid "CVE, Common Vulnerabilities and Exposures" msgstr "CVE, Common Vulnerabilities and Exposures" #. type: table -#: guix-git/doc/guix.texi:12960 +#: guix-git/doc/guix.texi:13317 msgid "Report known vulnerabilities found in the Common Vulnerabilities and Exposures (CVE) databases of the current and past year @uref{https://nvd.nist.gov/vuln/data-feeds, published by the US NIST}." msgstr "Rapporte les vulnérabilités connues trouvées dans les bases de données CVE (Common Vulnerabilities and Exposures) de l'année en cours et de l'année précédente @uref{https://nvd.nist.gov/download.cfm#CVE_FEED, published by the US NIST}." #. type: table -#: guix-git/doc/guix.texi:12962 +#: guix-git/doc/guix.texi:13319 msgid "To view information about a particular vulnerability, visit pages such as:" msgstr "Pour voir les informations sur une vulnérabilité en particulier, visitez les pages :" #. type: indicateurl{#1} -#: guix-git/doc/guix.texi:12966 +#: guix-git/doc/guix.texi:13323 msgid "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-YYYY-ABCD" msgstr "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-ANNÉE-ABCD" #. type: indicateurl{#1} -#: guix-git/doc/guix.texi:12968 +#: guix-git/doc/guix.texi:13325 msgid "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-YYYY-ABCD" msgstr "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-ANNÉE-ABCD" #. type: table -#: guix-git/doc/guix.texi:12973 +#: guix-git/doc/guix.texi:13330 msgid "where @code{CVE-YYYY-ABCD} is the CVE identifier---e.g., @code{CVE-2015-7554}." msgstr "où @code{CVE-ANNÉE-ABCD} est l'identifiant CVE — p.@: ex.@: @code{CVE-2015-7554}." #. type: table -#: guix-git/doc/guix.texi:12978 +#: guix-git/doc/guix.texi:13335 msgid "Package developers can specify in package recipes the @uref{https://nvd.nist.gov/products/cpe,Common Platform Enumeration (CPE)} name and version of the package when they differ from the name or version that Guix uses, as in this example:" msgstr "On peut spécifier dans les recettes des paquets le nom @uref{https://nvd.nist.gov/products/cpe,Common Platform Enumeration (CPE)} et la version du paquet s'ils diffèrent du nom et de la version que Guix utilise, comme dans cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:12986 +#: guix-git/doc/guix.texi:13343 #, no-wrap msgid "" "(package\n" @@ -24326,12 +24983,12 @@ msgstr "" " (cpe-version . \"2.3\"))))\n" #. type: table -#: guix-git/doc/guix.texi:12993 +#: guix-git/doc/guix.texi:13350 msgid "Some entries in the CVE database do not specify which version of a package they apply to, and would thus ``stick around'' forever. Package developers who found CVE alerts and verified they can be ignored can declare them as in this example:" msgstr "Certaines entrées dans la base de données CVE ne spécifient pas la version du paquet auquel elles s'appliquent et lui restera donc attachée pour toujours. Les développeur·euses qui trouvent des alertes CVE et ont vérifié qu'elles peuvent être ignorées peuvent les déclarer comme dans cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:13003 +#: guix-git/doc/guix.texi:13360 #, no-wrap msgid "" "(package\n" @@ -24353,124 +25010,124 @@ msgstr "" " \"CVE-2011-5244\")))))\n" #. type: item -#: guix-git/doc/guix.texi:13005 +#: guix-git/doc/guix.texi:13362 #, no-wrap msgid "formatting" msgstr "formatting" #. type: table -#: guix-git/doc/guix.texi:13008 +#: guix-git/doc/guix.texi:13365 msgid "Warn about obvious source code formatting issues: trailing white space, use of tabulations, etc." msgstr "Avertit de problèmes de formatage du code source évidents : des espaces en fin de ligne, des tabulations, etc." #. type: item -#: guix-git/doc/guix.texi:13009 +#: guix-git/doc/guix.texi:13366 #, no-wrap msgid "input-labels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13015 +#: guix-git/doc/guix.texi:13372 msgid "Report old-style input labels that do not match the name of the corresponding package. This aims to help migrate from the ``old input style''. @xref{package Reference}, for more information on package inputs and input styles. @xref{Invoking guix style}, on how to migrate to the new style." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13021 +#: guix-git/doc/guix.texi:13378 #, no-wrap msgid "guix lint @var{options} @var{package}@dots{}\n" msgstr "guix lint @var{options} @var{package}@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:13025 +#: guix-git/doc/guix.texi:13382 msgid "If no package is given on the command line, then all packages are checked. The @var{options} may be zero or more of the following:" msgstr "Si aucun paquet n'est donné par la ligne de commande, tous les paquets seront vérifiés. Les @var{options} peuvent contenir aucune ou plus des options suivantes :" #. type: item -#: guix-git/doc/guix.texi:13027 +#: guix-git/doc/guix.texi:13384 #, no-wrap msgid "--list-checkers" msgstr "--list-checkers" #. type: table -#: guix-git/doc/guix.texi:13031 +#: guix-git/doc/guix.texi:13388 msgid "List and describe all the available checkers that will be run on packages and exit." msgstr "Liste et décrit tous les vérificateurs disponibles qui seront lancés sur les paquets puis quitte." #. type: item -#: guix-git/doc/guix.texi:13032 +#: guix-git/doc/guix.texi:13389 #, no-wrap msgid "--checkers" msgstr "--checkers" #. type: itemx -#: guix-git/doc/guix.texi:13033 +#: guix-git/doc/guix.texi:13390 #, no-wrap msgid "-c" msgstr "-c" #. type: table -#: guix-git/doc/guix.texi:13036 +#: guix-git/doc/guix.texi:13393 msgid "Only enable the checkers specified in a comma-separated list using the names returned by @option{--list-checkers}." msgstr "N'active que les vérificateurs spécifiés dans une liste de noms séparés par des virgules parmi la liste renvoyée par @option{--list-checkers}." #. type: item -#: guix-git/doc/guix.texi:13037 +#: guix-git/doc/guix.texi:13394 #, no-wrap msgid "--exclude" msgstr "--exclude" #. type: table -#: guix-git/doc/guix.texi:13041 +#: guix-git/doc/guix.texi:13398 msgid "Only disable the checkers specified in a comma-separated list using the names returned by @option{--list-checkers}." msgstr "Ne désactive que les vérifications spécifiés dans une liste de noms séparés par des virgules, en utilisant les noms de @option{--list-checkers}." #. type: item -#: guix-git/doc/guix.texi:13042 +#: guix-git/doc/guix.texi:13399 #, no-wrap msgid "--no-network" msgstr "--no-network" #. type: table -#: guix-git/doc/guix.texi:13045 +#: guix-git/doc/guix.texi:13402 msgid "Only enable the checkers that do not depend on Internet access." msgstr "N'active que les vérificateurs qui ne dépendent pas d'un accès réseau." #. type: section -#: guix-git/doc/guix.texi:13057 +#: guix-git/doc/guix.texi:13414 #, no-wrap msgid "Invoking @command{guix size}" msgstr "Invoquer @command{guix size}" #. type: code{#1} -#: guix-git/doc/guix.texi:13059 guix-git/doc/guix.texi:35624 +#: guix-git/doc/guix.texi:13416 guix-git/doc/guix.texi:36114 #, no-wrap msgid "size" msgstr "taille" #. type: cindex -#: guix-git/doc/guix.texi:13060 +#: guix-git/doc/guix.texi:13417 #, no-wrap msgid "package size" msgstr "paquet, taille" #. type: command{#1} -#: guix-git/doc/guix.texi:13062 +#: guix-git/doc/guix.texi:13419 #, no-wrap msgid "guix size" msgstr "guix size" #. type: Plain text -#: guix-git/doc/guix.texi:13069 +#: guix-git/doc/guix.texi:13426 msgid "The @command{guix size} command helps package developers profile the disk usage of packages. It is easy to overlook the impact of an additional dependency added to a package, or the impact of using a single output for a package that could easily be split (@pxref{Packages with Multiple Outputs}). Such are the typical issues that @command{guix size} can highlight." msgstr "La commande @command{guix size} aide à dresser un profil de l'utilisation de l'espace disque par les paquets. Il est facile de négliger l'impact d'une dépendance supplémentaire ajoutée à un paquet, ou l'impact de l'utilisation d'une sortie unique pour un paquet qui pourrait être facilement séparé (@pxref{Packages with Multiple Outputs}). Ce sont ces problèmes que @command{guix size} peut typiquement mettre en valeur." #. type: Plain text -#: guix-git/doc/guix.texi:13074 +#: guix-git/doc/guix.texi:13431 msgid "The command can be passed one or more package specifications such as @code{gcc@@4.8} or @code{guile:debug}, or a file name in the store. Consider this example:" msgstr "On peut passer un ou plusieurs spécifications de paquets à la commande, comme @code{gcc@@4.8} ou @code{guile:debug}, ou un nom de fichier dans le dépôt. Regardez cet exemple :" #. type: example -#: guix-git/doc/guix.texi:13087 +#: guix-git/doc/guix.texi:13444 #, no-wrap msgid "" "$ guix size coreutils\n" @@ -24498,54 +25155,54 @@ msgstr "" "total: 78.9 MiB\n" #. type: Plain text -#: guix-git/doc/guix.texi:13093 +#: guix-git/doc/guix.texi:13450 msgid "The store items listed here constitute the @dfn{transitive closure} of Coreutils---i.e., Coreutils and all its dependencies, recursively---as would be returned by:" msgstr "Les éléments du dépôt listés ici constituent la @dfn{clôture transitive} de Coreutils — c.-à-d.@: Coreutils et toutes ses dépendances, récursivement — comme ce qui serait renvoyé par :" #. type: example -#: guix-git/doc/guix.texi:13096 +#: guix-git/doc/guix.texi:13453 #, no-wrap msgid "$ guix gc -R /gnu/store/@dots{}-coreutils-8.23\n" msgstr "$ guix gc -R /gnu/store/@dots{}-coreutils-8.23\n" #. type: Plain text -#: guix-git/doc/guix.texi:13104 +#: guix-git/doc/guix.texi:13461 msgid "Here the output shows three columns next to store items. The first column, labeled ``total'', shows the size in mebibytes (MiB) of the closure of the store item---that is, its own size plus the size of all its dependencies. The next column, labeled ``self'', shows the size of the item itself. The last column shows the ratio of the size of the item itself to the space occupied by all the items listed here." msgstr "Ici, la sortie possède trois colonnes à côté de chaque élément du dépôt. La première colonne, nommée « total », montre la taille en mébioctet (Mio) de la clôture de l'élément du dépôt — c'est-à-dire sa propre taille plus la taille de ses dépendances. La colonne suivante, nommée « lui-même », montre la taille de l'élément lui-même. La dernière colonne montre le ration de la taille de l'élément lui-même par rapport à celle de tous les éléments montrés." #. type: Plain text -#: guix-git/doc/guix.texi:13110 +#: guix-git/doc/guix.texi:13467 msgid "In this example, we see that the closure of Coreutils weighs in at 79@tie{}MiB, most of which is taken by libc and GCC's run-time support libraries. (That libc and GCC's libraries represent a large fraction of the closure is not a problem @i{per se} because they are always available on the system anyway.)" msgstr "Dans cet exemple, on voit que la clôture de Coreutils pèse 79@tie{}Mio, dont la plupart est dû à la libc et aux bibliothèques à l'exécution de GCC (ce n'est pas un problème en soit que la libc et les bibliothèques de GCC représentent une grande part de la clôture parce qu'elles sont toujours disponibles sur le système de toute façon)." #. type: Plain text -#: guix-git/doc/guix.texi:13113 +#: guix-git/doc/guix.texi:13470 msgid "Since the command also accepts store file names, assessing the size of a build result is straightforward:" msgstr "Comme la commande accepte également les noms de fichiers de dépôt, il est facile d'évaluer la taille d'un résultat de construction :" #. type: example -#: guix-git/doc/guix.texi:13116 +#: guix-git/doc/guix.texi:13473 #, no-wrap msgid "guix size $(guix system build config.scm)\n" msgstr "guix size $(guix system build config.scm)\n" #. type: Plain text -#: guix-git/doc/guix.texi:13126 +#: guix-git/doc/guix.texi:13483 msgid "When the package(s) passed to @command{guix size} are available in the store@footnote{More precisely, @command{guix size} looks for the @emph{ungrafted} variant of the given package(s), as returned by @code{guix build @var{package} --no-grafts}. @xref{Security Updates}, for information on grafts.}, @command{guix size} queries the daemon to determine its dependencies, and measures its size in the store, similar to @command{du -ms --apparent-size} (@pxref{du invocation,,, coreutils, GNU Coreutils})." msgstr "Lorsque les paquets passés à @command{guix size} sont disponibles dans le dépôt@footnote{Plus précisément, @command{guix size} cherche les variantes @emph{non greffées} des paquets donnés, tels qu'ils sont renvoyés par @code{guix build @var{paquet} --no-graft}. @xref{Security Updates} pour des informations sur les greffes}, @command{guix size} demande au démon de déterminer ses dépendances, et mesure sa taille dans le dépôt, comme avec @command{du -ms --apparent-size} (@pxref{du invocation,,, coreutils, GNU Coreutils})." #. type: Plain text -#: guix-git/doc/guix.texi:13131 +#: guix-git/doc/guix.texi:13488 msgid "When the given packages are @emph{not} in the store, @command{guix size} reports information based on the available substitutes (@pxref{Substitutes}). This makes it possible it to profile disk usage of store items that are not even on disk, only available remotely." msgstr "Lorsque les paquets donnés ne sont @emph{pas} dans le dépôt, @command{guix size} rapporte les informations en se basant sur les substituts disponibles (@pxref{Substituts}). Cela permet de profiler l'utilisation du disque des éléments du dépôt même s'ils ne sont pas sur le disque, mais disponibles à distance." #. type: Plain text -#: guix-git/doc/guix.texi:13133 +#: guix-git/doc/guix.texi:13490 msgid "You can also specify several package names:" msgstr "Vous pouvez aussi spécifier plusieurs noms de paquets :" #. type: example -#: guix-git/doc/guix.texi:13143 +#: guix-git/doc/guix.texi:13500 #, no-wrap msgid "" "$ guix size coreutils grep sed bash\n" @@ -24567,365 +25224,365 @@ msgstr "" "total: 102.3 MiB\n" #. type: Plain text -#: guix-git/doc/guix.texi:13149 +#: guix-git/doc/guix.texi:13506 msgid "In this example we see that the combination of the four packages takes 102.3@tie{}MiB in total, which is much less than the sum of each closure since they have a lot of dependencies in common." msgstr "Dans cet exemple on voit que la combinaison des quatre paquets prend 102.3@tie{}Mio en tout, ce qui est bien moins que la somme des clôtures puisqu'ils ont beaucoup de dépendances en commun." #. type: Plain text -#: guix-git/doc/guix.texi:13155 +#: guix-git/doc/guix.texi:13512 msgid "When looking at the profile returned by @command{guix size}, you may find yourself wondering why a given package shows up in the profile at all. To understand it, you can use @command{guix graph --path -t references} to display the shortest path between the two packages (@pxref{Invoking guix graph})." msgstr "En regardant le profil renvoyé par @command{guix size}, vous pouvez vous demander pourquoi un paquet donné apparaît dans le profil. Pour le comprendre, vous pouvez utiliser @command{guix graph --path -t references} pour afficher le chemin le plus court entre les deux paquets (@pxref{Invoquer guix graph})." #. type: Plain text -#: guix-git/doc/guix.texi:13157 +#: guix-git/doc/guix.texi:13514 msgid "The available options are:" msgstr "Les options disponibles sont :" #. type: table -#: guix-git/doc/guix.texi:13163 +#: guix-git/doc/guix.texi:13520 msgid "Use substitute information from @var{urls}. @xref{client-substitute-urls, the same option for @code{guix build}}." msgstr "Utilise les informations de substituts de @var{urls}. @xref{client-substitute-urls, the same option for @code{guix build}}." #. type: item -#: guix-git/doc/guix.texi:13164 +#: guix-git/doc/guix.texi:13521 #, no-wrap msgid "--sort=@var{key}" msgstr "--sort=@var{clef}" #. type: table -#: guix-git/doc/guix.texi:13166 +#: guix-git/doc/guix.texi:13523 msgid "Sort lines according to @var{key}, one of the following options:" msgstr "Trie les lignes en fonction de la @var{clef}, l'une des options suivantes :" #. type: item -#: guix-git/doc/guix.texi:13168 +#: guix-git/doc/guix.texi:13525 #, no-wrap msgid "self" msgstr "lui-même" #. type: table -#: guix-git/doc/guix.texi:13170 +#: guix-git/doc/guix.texi:13527 msgid "the size of each item (the default);" msgstr "la taille de chaque élément (par défaut) ;" #. type: table -#: guix-git/doc/guix.texi:13172 +#: guix-git/doc/guix.texi:13529 msgid "the total size of the item's closure." msgstr "la taille totale de la clôture de l'élément." #. type: item -#: guix-git/doc/guix.texi:13174 +#: guix-git/doc/guix.texi:13531 #, no-wrap msgid "--map-file=@var{file}" msgstr "--map-file=@var{fichier}" #. type: table -#: guix-git/doc/guix.texi:13176 +#: guix-git/doc/guix.texi:13533 msgid "Write a graphical map of disk usage in PNG format to @var{file}." msgstr "Écrit un schéma de l'utilisation du disque au format PNG dans @var{fichier}." #. type: table -#: guix-git/doc/guix.texi:13178 +#: guix-git/doc/guix.texi:13535 msgid "For the example above, the map looks like this:" msgstr "Pour l'exemple au-dessus, le schéma ressemble à ceci :" #. type: table -#: guix-git/doc/guix.texi:13181 +#: guix-git/doc/guix.texi:13538 msgid "@image{images/coreutils-size-map,5in,, map of Coreutils disk usage produced by @command{guix size}}" msgstr "@image{images/coreutils-size-map,5in,, schéma de l'utilisation du disque de Coreutils produit par @command{guix size}}" #. type: table -#: guix-git/doc/guix.texi:13186 +#: guix-git/doc/guix.texi:13543 msgid "This option requires that @uref{https://wingolog.org/software/guile-charting/, Guile-Charting} be installed and visible in Guile's module search path. When that is not the case, @command{guix size} fails as it tries to load it." msgstr "Cette option requiert l'installation de @uref{https://wingolog.org/software/guile-charting/, Guile-Charting} et qu'il soit visible dans le chemin de recherche des modules Guile. Lorsque ce n'est pas le cas, @command{guix size} plante en essayant de le charger." #. type: table -#: guix-git/doc/guix.texi:13190 +#: guix-git/doc/guix.texi:13547 msgid "Consider packages for @var{system}---e.g., @code{x86_64-linux}." msgstr "Considère les paquets pour @var{système} — p.@: ex.@: @code{x86_64-linux}." #. type: section -#: guix-git/doc/guix.texi:13201 +#: guix-git/doc/guix.texi:13558 #, no-wrap msgid "Invoking @command{guix graph}" msgstr "Invoque @command{guix graph}" #. type: cindex -#: guix-git/doc/guix.texi:13203 +#: guix-git/doc/guix.texi:13560 #, no-wrap msgid "DAG" msgstr "DAG" #. type: command{#1} -#: guix-git/doc/guix.texi:13204 +#: guix-git/doc/guix.texi:13561 #, no-wrap msgid "guix graph" msgstr "guix graph" #. type: Plain text -#: guix-git/doc/guix.texi:13219 +#: guix-git/doc/guix.texi:13576 msgid "Packages and their dependencies form a @dfn{graph}, specifically a directed acyclic graph (DAG). It can quickly become difficult to have a mental model of the package DAG, so the @command{guix graph} command provides a visual representation of the DAG@. By default, @command{guix graph} emits a DAG representation in the input format of @uref{https://www.graphviz.org/, Graphviz}, so its output can be passed directly to the @command{dot} command of Graphviz. It can also emit an HTML page with embedded JavaScript code to display a ``chord diagram'' in a Web browser, using the @uref{https://d3js.org/, d3.js} library, or emit Cypher queries to construct a graph in a graph database supporting the @uref{https://www.opencypher.org/, openCypher} query language. With @option{--path}, it simply displays the shortest path between two packages. The general syntax is:" msgstr "Les paquets et leurs dépendances forment un @dfn{graphe}, plus précisément un graphe orienté acyclique (DAG). Il peut vite devenir difficile d'avoir une représentation mentale du DAG d'un paquet, donc la commande @command{guix graph} fournit une représentation visuelle du DAG@. Par défaut, @command{guix graph} émet un représentation du DAG dans le format d'entrée de @uref{https://www.graphviz.org/, Graphviz}, pour que sa sortie puisse être passée directement à la commande @command{dot} de Graphviz. Elle peut aussi émettre une page HTML avec du code Javascript pour afficher un « diagramme d'accords » dans un navigateur Web, grâce à la bibliothèque @uref{https://d3js.org/, d3.js}, ou émettre des requêtes Cypher pour construire un graphe dans une base de donnée de graphes supportant le langage de requêtes @uref{https://www.opencypher.org/, openCypher}. Avec l'option @option{--path}, elle affiche simplement le chemin le plus court entre deux paquets. La syntaxe générale est :" #. type: example -#: guix-git/doc/guix.texi:13222 +#: guix-git/doc/guix.texi:13579 #, no-wrap msgid "guix graph @var{options} @var{package}@dots{}\n" msgstr "guix graph @var{options} @var{paquet}@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:13227 +#: guix-git/doc/guix.texi:13584 msgid "For example, the following command generates a PDF file representing the package DAG for the GNU@tie{}Core Utilities, showing its build-time dependencies:" msgstr "Par exemple, la commande suivante génère un fichier PDF représentant le DAG du paquet pour GNU@tie{}Core Utilities, qui montre ses dépendances à la compilation :" #. type: example -#: guix-git/doc/guix.texi:13230 +#: guix-git/doc/guix.texi:13587 #, no-wrap msgid "guix graph coreutils | dot -Tpdf > dag.pdf\n" msgstr "guix graph coreutils | dot -Tpdf > dag.pdf\n" #. type: Plain text -#: guix-git/doc/guix.texi:13233 +#: guix-git/doc/guix.texi:13590 msgid "The output looks like this:" msgstr "La sortie ressemble à ceci :" #. type: Plain text -#: guix-git/doc/guix.texi:13235 +#: guix-git/doc/guix.texi:13592 msgid "@image{images/coreutils-graph,2in,,Dependency graph of the GNU Coreutils}" msgstr "@image{images/coreutils-graph,2in,,Graphe de dépendance de GNU Coreutils}" #. type: Plain text -#: guix-git/doc/guix.texi:13237 +#: guix-git/doc/guix.texi:13594 msgid "Nice little graph, no?" msgstr "Joli petit graphe, non ?" #. type: Plain text -#: guix-git/doc/guix.texi:13240 +#: guix-git/doc/guix.texi:13597 msgid "You may find it more pleasant to navigate the graph interactively with @command{xdot} (from the @code{xdot} package):" msgstr "Vous pouvez trouver plus amusant de naviguer dans le graphe interactivement avec @command{xdot} (du paquet @code{xdot}) :" #. type: example -#: guix-git/doc/guix.texi:13243 +#: guix-git/doc/guix.texi:13600 #, no-wrap msgid "guix graph coreutils | xdot -\n" msgstr "guix graph coreutils | xdot -\n" #. type: Plain text -#: guix-git/doc/guix.texi:13250 +#: guix-git/doc/guix.texi:13607 msgid "But there is more than one graph! The one above is concise: it is the graph of package objects, omitting implicit inputs such as GCC, libc, grep, etc. It is often useful to have such a concise graph, but sometimes one may want to see more details. @command{guix graph} supports several types of graphs, allowing you to choose the level of detail:" msgstr "Mais il y a plus qu'un seul graphe ! Celui au-dessus est concis : c'est le graphe des objets paquets, en omettant les entrées implicites comme GCC, libc, grep, etc. Il est souvent utile d'avoir ces graphes concis, mais parfois on veut voir plus de détails. @command{guix graph} supporte plusieurs types de graphes, qui vous permettent de choisir le niveau de détails :" #. type: table -#: guix-git/doc/guix.texi:13256 +#: guix-git/doc/guix.texi:13613 msgid "This is the default type used in the example above. It shows the DAG of package objects, excluding implicit dependencies. It is concise, but filters out many details." msgstr "C'est le type par défaut utilisé dans l'exemple plus haut. Il montre le DAG des objets paquets, sans les dépendances implicites. C'est concis, mais omet pas mal de détails." #. type: item -#: guix-git/doc/guix.texi:13257 +#: guix-git/doc/guix.texi:13614 #, no-wrap msgid "reverse-package" msgstr "reverse-package" #. type: table -#: guix-git/doc/guix.texi:13259 +#: guix-git/doc/guix.texi:13616 msgid "This shows the @emph{reverse} DAG of packages. For example:" msgstr "Cela montre le DAG @emph{inversé} des paquets. Par exemple :" #. type: example -#: guix-git/doc/guix.texi:13262 +#: guix-git/doc/guix.texi:13619 #, no-wrap msgid "guix graph --type=reverse-package ocaml\n" msgstr "guix graph --type=reverse-package ocaml\n" #. type: table -#: guix-git/doc/guix.texi:13267 +#: guix-git/doc/guix.texi:13624 msgid "...@: yields the graph of packages that @emph{explicitly} depend on OCaml (if you are also interested in cases where OCaml is an implicit dependency, see @code{reverse-bag} below)." msgstr "...@: crée le graphe des paquets qui dépendent @emph{explicitement} d'OCaml (si vous êtes aussi intéressé·e dans le cas où OCaml représente une dépendance implicite, voir @code{reverse-bag} ci-dessous)." #. type: table -#: guix-git/doc/guix.texi:13272 +#: guix-git/doc/guix.texi:13629 msgid "Note that for core packages this can yield huge graphs. If all you want is to know the number of packages that depend on a given package, use @command{guix refresh --list-dependent} (@pxref{Invoking guix refresh, @option{--list-dependent}})." msgstr "Remarquez que pour les paquets du cœur de la distribution, cela crée des graphes énormes. Si vous voulez seulement voir le nombre de paquets qui dépendent d'un paquet donnés, utilisez @command{guix refresh --list-dependent} (@pxref{Invoking guix refresh, @option{--list-dependent}})." #. type: item -#: guix-git/doc/guix.texi:13273 +#: guix-git/doc/guix.texi:13630 #, no-wrap msgid "bag-emerged" msgstr "bag-emerged" #. type: table -#: guix-git/doc/guix.texi:13275 +#: guix-git/doc/guix.texi:13632 msgid "This is the package DAG, @emph{including} implicit inputs." msgstr "C'est le DAG du paquet, @emph{avec} les entrées implicites." #. type: table -#: guix-git/doc/guix.texi:13277 +#: guix-git/doc/guix.texi:13634 msgid "For instance, the following command:" msgstr "Par exemple, la commande suivante :" #. type: example -#: guix-git/doc/guix.texi:13280 +#: guix-git/doc/guix.texi:13637 #, no-wrap msgid "guix graph --type=bag-emerged coreutils\n" msgstr "guix graph --type=bag-emerged coreutils\n" #. type: table -#: guix-git/doc/guix.texi:13283 +#: guix-git/doc/guix.texi:13640 msgid "...@: yields this bigger graph:" msgstr "…@: montre ce graphe plus gros :" #. type: table -#: guix-git/doc/guix.texi:13285 +#: guix-git/doc/guix.texi:13642 msgid "@image{images/coreutils-bag-graph,,5in,Detailed dependency graph of the GNU Coreutils}" msgstr "@image{images/coreutils-bag-graph,,5in,Graphe des dépendances détaillé de GNU Coreutils}" #. type: table -#: guix-git/doc/guix.texi:13288 +#: guix-git/doc/guix.texi:13645 msgid "At the bottom of the graph, we see all the implicit inputs of @var{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}})." msgstr "En bas du graphe, on voit toutes les entrées implicites de @var{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}})." #. type: table -#: guix-git/doc/guix.texi:13292 +#: guix-git/doc/guix.texi:13649 msgid "Now, note that the dependencies of these implicit inputs---that is, the @dfn{bootstrap dependencies} (@pxref{Bootstrapping})---are not shown here, for conciseness." msgstr "Maintenant, remarquez que les dépendances de ces entrées implicites — c'est-à-dire les @dfn{dépendances de bootstrap} (@pxref{Bootstrapping}) — ne sont pas affichées, pour rester concis." #. type: item -#: guix-git/doc/guix.texi:13293 +#: guix-git/doc/guix.texi:13650 #, no-wrap msgid "bag" msgstr "bag" #. type: table -#: guix-git/doc/guix.texi:13296 +#: guix-git/doc/guix.texi:13653 msgid "Similar to @code{bag-emerged}, but this time including all the bootstrap dependencies." msgstr "Comme @code{bag-emerged} mais cette fois inclus toutes les dépendances de bootstrap." #. type: item -#: guix-git/doc/guix.texi:13297 +#: guix-git/doc/guix.texi:13654 #, no-wrap msgid "bag-with-origins" msgstr "bag-with-origins" #. type: table -#: guix-git/doc/guix.texi:13299 +#: guix-git/doc/guix.texi:13656 msgid "Similar to @code{bag}, but also showing origins and their dependencies." msgstr "Comme @code{bag}, mais montre aussi les origines et leurs dépendances." #. type: item -#: guix-git/doc/guix.texi:13300 +#: guix-git/doc/guix.texi:13657 #, no-wrap msgid "reverse-bag" msgstr "reverse-bag" #. type: table -#: guix-git/doc/guix.texi:13303 +#: guix-git/doc/guix.texi:13660 msgid "This shows the @emph{reverse} DAG of packages. Unlike @code{reverse-package}, it also takes implicit dependencies into account. For example:" msgstr "Cela montre le DAG @emph{inverse} des paquets. Contrairement à @code{reverse-package}, il montre aussi les dépendance implicites. Par exemple :" #. type: example -#: guix-git/doc/guix.texi:13306 +#: guix-git/doc/guix.texi:13663 #, no-wrap msgid "guix graph -t reverse-bag dune\n" msgstr "guix graph -t reverse-bag dune\n" #. type: table -#: guix-git/doc/guix.texi:13313 +#: guix-git/doc/guix.texi:13670 msgid "...@: yields the graph of all packages that depend on Dune, directly or indirectly. Since Dune is an @emph{implicit} dependency of many packages @i{via} @code{dune-build-system}, this shows a large number of packages, whereas @code{reverse-package} would show very few if any." msgstr "…@: crée le graphe des tous les paquets qui dépendent de Dune, directement ou indirectement. Comme Dune est une dépendance @emph{implicite} de nombreux paquets @i{via} @code{dune-build-system}, cela montre un plus grand nombre de paquets, alors que @code{reverse-package} en montrerait très peu, voir aucun." #. type: table -#: guix-git/doc/guix.texi:13319 +#: guix-git/doc/guix.texi:13676 msgid "This is the most detailed representation: It shows the DAG of derivations (@pxref{Derivations}) and plain store items. Compared to the above representation, many additional nodes are visible, including build scripts, patches, Guile modules, etc." msgstr "C'est la représentation lu plus détaillée : elle montre le DAG des dérivations (@pxref{Derivations}) et des éléments du dépôt. Comparé à la représentation ci-dessus, beaucoup plus de nœuds sont visibles, dont les scripts de construction, les correctifs, les modules Guile, etc." #. type: table -#: guix-git/doc/guix.texi:13322 +#: guix-git/doc/guix.texi:13679 msgid "For this type of graph, it is also possible to pass a @file{.drv} file name instead of a package name, as in:" msgstr "Pour ce type de graphe, il est aussi possible de passer un nom de fichier @file{.drv} à la place d'un nom de paquet, comme dans :" #. type: example -#: guix-git/doc/guix.texi:13325 +#: guix-git/doc/guix.texi:13682 #, no-wrap msgid "guix graph -t derivation $(guix system build -d my-config.scm)\n" msgstr "guix graph -t derivation $(guix system build -d my-config.scm)\n" #. type: item -#: guix-git/doc/guix.texi:13327 +#: guix-git/doc/guix.texi:13684 #, no-wrap msgid "module" msgstr "module" #. type: table -#: guix-git/doc/guix.texi:13331 +#: guix-git/doc/guix.texi:13688 msgid "This is the graph of @dfn{package modules} (@pxref{Package Modules}). For example, the following command shows the graph for the package module that defines the @code{guile} package:" msgstr "C'est le graphe des @dfn{modules de paquets} (@pxref{Package Modules}). Par exemple, la commande suivante montre le graphe des modules de paquets qui définissent le paquet @code{guile} :" #. type: example -#: guix-git/doc/guix.texi:13334 +#: guix-git/doc/guix.texi:13691 #, no-wrap msgid "guix graph -t module guile | xdot -\n" msgstr "guix graph -t module guile | xdot -\n" #. type: Plain text -#: guix-git/doc/guix.texi:13339 +#: guix-git/doc/guix.texi:13696 msgid "All the types above correspond to @emph{build-time dependencies}. The following graph type represents the @emph{run-time dependencies}:" msgstr "Tous les types ci-dessus correspondent aux @emph{dépendances à la construction}. Le type de graphe suivant représente les @emph{dépendances à l'exécution} :" #. type: table -#: guix-git/doc/guix.texi:13344 +#: guix-git/doc/guix.texi:13701 msgid "This is the graph of @dfn{references} of a package output, as returned by @command{guix gc --references} (@pxref{Invoking guix gc})." msgstr "C'est le graphe des @dfn{references} d'une sortie d'un paquet, telles que renvoyées par @command{guix gc --references} (@pxref{Invoking guix gc})." #. type: table -#: guix-git/doc/guix.texi:13347 +#: guix-git/doc/guix.texi:13704 msgid "If the given package output is not available in the store, @command{guix graph} attempts to obtain dependency information from substitutes." msgstr "Si la sortie du paquet donnée n'est pas disponible dans le dépôt, @command{guix graph} essayera d'obtenir les informations sur les dépendances à travers les substituts." #. type: table -#: guix-git/doc/guix.texi:13351 +#: guix-git/doc/guix.texi:13708 msgid "Here you can also pass a store file name instead of a package name. For example, the command below produces the reference graph of your profile (which can be big!):" msgstr "Vous pouvez aussi passer un nom de fichier du dépôt plutôt qu'un nom de paquet. Par exemple, la commande ci-dessous produit le graphe des références de votre profile (qui peut être gros !) :" #. type: example -#: guix-git/doc/guix.texi:13354 +#: guix-git/doc/guix.texi:13711 #, no-wrap msgid "guix graph -t references $(readlink -f ~/.guix-profile)\n" msgstr "guix graph -t references $(readlink -f ~/.guix-profile)\n" #. type: item -#: guix-git/doc/guix.texi:13356 +#: guix-git/doc/guix.texi:13713 #, no-wrap msgid "referrers" msgstr "referrers" #. type: table -#: guix-git/doc/guix.texi:13359 +#: guix-git/doc/guix.texi:13716 msgid "This is the graph of the @dfn{referrers} of a store item, as returned by @command{guix gc --referrers} (@pxref{Invoking guix gc})." msgstr "C'est le graphe des @dfn{référents} d'un élément du dépôt, tels que renvoyés par @command{guix gc --referrers} (@pxref{Invoking guix gc})." #. type: table -#: guix-git/doc/guix.texi:13365 +#: guix-git/doc/guix.texi:13722 msgid "This relies exclusively on local information from your store. For instance, let us suppose that the current Inkscape is available in 10 profiles on your machine; @command{guix graph -t referrers inkscape} will show a graph rooted at Inkscape and with those 10 profiles linked to it." msgstr "Cela repose exclusivement sur les informations de votre dépôt. Par exemple, supposons que Inkscape est actuellement disponible dans 10 profils sur votre machine ; @command{guix graph -t referrers inkscape} montrera le graphe dont la racine est Inkscape avec 10 profils qui y sont liés." #. type: table -#: guix-git/doc/guix.texi:13368 +#: guix-git/doc/guix.texi:13725 msgid "It can help determine what is preventing a store item from being garbage collected." msgstr "Cela peut aider à déterminer ce qui empêche un élément du dépôt d'être glané." #. type: cindex -#: guix-git/doc/guix.texi:13371 +#: guix-git/doc/guix.texi:13728 #, no-wrap msgid "shortest path, between packages" msgstr "chemin le plus court entre paquets" #. type: Plain text -#: guix-git/doc/guix.texi:13378 +#: guix-git/doc/guix.texi:13735 msgid "Often, the graph of the package you are interested in does not fit on your screen, and anyway all you want to know is @emph{why} that package actually depends on some seemingly unrelated package. The @option{--path} option instructs @command{guix graph} to display the shortest path between two packages (or derivations, or store items, etc.):" msgstr "Souvent, le graphe du paquet qui vous intéresse ne tient pas sur votre écran, et de toute façon tout ce que vous voulez savoir c'est @emph{pourquoi} ce paquet dépend en fait d'un paquet apparemment sans rapport. L'option @option{--path} indique à @command{guix graph} d'afficher le chemin le plus court entre deux paquets (ou dérivations, ou éléments du dépôt, etc.) :" #. type: example -#: guix-git/doc/guix.texi:13392 +#: guix-git/doc/guix.texi:13749 #, no-wrap msgid "" "$ guix graph --path emacs libunistring\n" @@ -24955,88 +25612,88 @@ msgstr "" "/gnu/store/@dots{}-libunistring-0.9.10\n" #. type: Plain text -#: guix-git/doc/guix.texi:13400 +#: guix-git/doc/guix.texi:13757 msgid "Sometimes you still want to visualize the graph but would like to trim it so it can actually be displayed. One way to do it is via the @option{--max-depth} (or @option{-M}) option, which lets you specify the maximum depth of the graph. In the example below, we visualize only @code{libreoffice} and the nodes whose distance to @code{libreoffice} is at most 2:" msgstr "Parfois vous voudrez quand même visualiser le graphe mais préférerez le recouper afin qu'il puisse être affiché. Un moyen pour ce faire est l'option @option{--max-depth} (ou @option{-M}), qui vous laisse spécifier la profondeur maximale du graphe. Dans l'exemple ci-dessous, nous visualisons seulement @code{libreoffice} et les nœuds dont la distance à @code{libreoffice} est au plus 2 :" #. type: example -#: guix-git/doc/guix.texi:13403 +#: guix-git/doc/guix.texi:13760 #, no-wrap msgid "guix graph -M 2 libreoffice | xdot -f fdp -\n" msgstr "guix graph -M 2 libreoffice | xdot -f fdp -\n" #. type: Plain text -#: guix-git/doc/guix.texi:13407 +#: guix-git/doc/guix.texi:13764 msgid "Mind you, that's still a big ball of spaghetti, but at least @command{dot} can render it quickly and it can be browsed somewhat." msgstr "Attention hein, c'est encore un sacré plat de spaghetti, mais au moins @command{dot} peut en faire un rendu rapide et il est possible de le parcourir un peu." #. type: Plain text -#: guix-git/doc/guix.texi:13409 +#: guix-git/doc/guix.texi:13766 msgid "The available options are the following:" msgstr "Les options disponibles sont les suivante :" #. type: table -#: guix-git/doc/guix.texi:13415 +#: guix-git/doc/guix.texi:13772 msgid "Produce a graph output of @var{type}, where @var{type} must be one of the values listed above." msgstr "Produit un graphe en sortie de type @var{type} où @var{type} doit être l'un des types au-dessus." #. type: item -#: guix-git/doc/guix.texi:13416 +#: guix-git/doc/guix.texi:13773 #, no-wrap msgid "--list-types" msgstr "--list-types" #. type: table -#: guix-git/doc/guix.texi:13418 +#: guix-git/doc/guix.texi:13775 msgid "List the supported graph types." msgstr "Liste les types de graphes supportés." #. type: item -#: guix-git/doc/guix.texi:13419 +#: guix-git/doc/guix.texi:13776 #, no-wrap msgid "--backend=@var{backend}" msgstr "--backend=@var{moteur}" #. type: itemx -#: guix-git/doc/guix.texi:13420 +#: guix-git/doc/guix.texi:13777 #, no-wrap msgid "-b @var{backend}" msgstr "-b @var{moteur}" #. type: table -#: guix-git/doc/guix.texi:13422 +#: guix-git/doc/guix.texi:13779 msgid "Produce a graph using the selected @var{backend}." msgstr "Produit un graphe avec le @var{moteur} choisi." #. type: item -#: guix-git/doc/guix.texi:13423 +#: guix-git/doc/guix.texi:13780 #, no-wrap msgid "--list-backends" msgstr "--list-backends" #. type: table -#: guix-git/doc/guix.texi:13425 +#: guix-git/doc/guix.texi:13782 msgid "List the supported graph backends." msgstr "Liste les moteurs de graphes supportés." #. type: table -#: guix-git/doc/guix.texi:13427 +#: guix-git/doc/guix.texi:13784 msgid "Currently, the available backends are Graphviz and d3.js." msgstr "Actuellement les moteurs disponibles sont Graphviz et d3.js." #. type: item -#: guix-git/doc/guix.texi:13428 +#: guix-git/doc/guix.texi:13785 #, no-wrap msgid "--path" msgstr "--path" #. type: table -#: guix-git/doc/guix.texi:13433 +#: guix-git/doc/guix.texi:13790 msgid "Display the shortest path between two nodes of the type specified by @option{--type}. The example below shows the shortest path between @code{libreoffice} and @code{llvm} according to the references of @code{libreoffice}:" msgstr "Affiche le chemin le plus court entre deux nœuds du type spécifié par @option{--type}. L'exemple ci-dessous montre le chemin le plus court entre @code{libreoffice} et @code{llvm} correspondant aux références de @code{libreoffice} :" #. type: example -#: guix-git/doc/guix.texi:13440 +#: guix-git/doc/guix.texi:13797 #, no-wrap msgid "" "$ guix graph --path -t references libreoffice llvm\n" @@ -25052,398 +25709,398 @@ msgstr "" "/gnu/store/@dots{}-llvm-9.0.1\n" #. type: example -#: guix-git/doc/guix.texi:13450 +#: guix-git/doc/guix.texi:13807 #, no-wrap msgid "guix graph -e '(@@@@ (gnu packages commencement) gnu-make-final)'\n" msgstr "guix graph -e '(@@@@ (gnu packages commencement) gnu-make-final)'\n" #. type: table -#: guix-git/doc/guix.texi:13455 +#: guix-git/doc/guix.texi:13812 msgid "Display the graph for @var{system}---e.g., @code{i686-linux}." msgstr "Affiche le graphe pour @var{système} — p.@: ex.@: @code{i686-linux}." #. type: table -#: guix-git/doc/guix.texi:13458 +#: guix-git/doc/guix.texi:13815 msgid "The package dependency graph is largely architecture-independent, but there are some architecture-dependent bits that this option allows you to visualize." msgstr "Le graphe de dépendance des paquets est la plupart du temps indépendant de l'architecture, mais il y a quelques parties qui dépendent de l'architecture que cette option vous permet de visualiser." #. type: Plain text -#: guix-git/doc/guix.texi:13474 +#: guix-git/doc/guix.texi:13831 msgid "On top of that, @command{guix graph} supports all the usual package transformation options (@pxref{Package Transformation Options}). This makes it easy to view the effect of a graph-rewriting transformation such as @option{--with-input}. For example, the command below outputs the graph of @code{git} once @code{openssl} has been replaced by @code{libressl} everywhere in the graph:" msgstr "En plus de cela, @command{guix graph} prend en charge toutes les options habituelles de transformation des paquets (@pxref{Package Transformation Options}). Il est ainsi facile de voir l'effet d'une transformation de réécriture de graphe telle que @option{--with-input}. Par exemple, la commande ci-dessous produit le graphe de @code{git} une fois que @code{openssl} a été remplacé par @code{libressl} partout dans le graphe :" #. type: example -#: guix-git/doc/guix.texi:13477 +#: guix-git/doc/guix.texi:13834 #, no-wrap msgid "guix graph git --with-input=openssl=libressl\n" msgstr "guix graph git --with-input=openssl=libressl\n" #. type: Plain text -#: guix-git/doc/guix.texi:13480 +#: guix-git/doc/guix.texi:13837 msgid "So many possibilities, so much fun!" msgstr "Tant de possibilités, tant de plaisir !" #. type: section -#: guix-git/doc/guix.texi:13482 +#: guix-git/doc/guix.texi:13839 #, no-wrap msgid "Invoking @command{guix publish}" msgstr "Invoquer @command{guix publish}" #. type: command{#1} -#: guix-git/doc/guix.texi:13484 +#: guix-git/doc/guix.texi:13841 #, no-wrap msgid "guix publish" msgstr "guix publish" #. type: Plain text -#: guix-git/doc/guix.texi:13488 +#: guix-git/doc/guix.texi:13845 msgid "The purpose of @command{guix publish} is to enable users to easily share their store with others, who can then use it as a substitute server (@pxref{Substitutes})." msgstr "Le but de @command{guix publish} est de vous permettre de partager facilement votre dépôt avec d'autres personnes qui peuvent ensuite l'utiliser comme serveur de substituts (@pxref{Substituts})." #. type: Plain text -#: guix-git/doc/guix.texi:13494 +#: guix-git/doc/guix.texi:13851 msgid "When @command{guix publish} runs, it spawns an HTTP server which allows anyone with network access to obtain substitutes from it. This means that any machine running Guix can also act as if it were a build farm, since the HTTP interface is compatible with Cuirass, the software behind the @code{@value{SUBSTITUTE-SERVER-1}} build farm." msgstr "Lorsque @command{guix publish} est lancé, il crée un serveur HTTP qui permet à n'importe qui avec un accès réseau d'y récupérer des substituts. Cela signifie que toutes les machines qui font tourner Guix peuvent aussi agir comme une ferme de construction, puisque l'interface HTTP est compatible avec Cuirass, le logiciel derrière la ferme de construction @code{@value{SUBSTITUTE-SERVER-1}}." #. type: Plain text -#: guix-git/doc/guix.texi:13500 +#: guix-git/doc/guix.texi:13857 msgid "For security, each substitute is signed, allowing recipients to check their authenticity and integrity (@pxref{Substitutes}). Because @command{guix publish} uses the signing key of the system, which is only readable by the system administrator, it must be started as root; the @option{--user} option makes it drop root privileges early on." msgstr "Pour des raisons de sécurité, chaque substitut est signé, ce qui permet aux destinataires de vérifier leur authenticité et leur intégrité (@pxref{Substituts}). Parce que @command{guix publish} utilise la clé de signature du système, qui n'est lisible que par l'administrateur système, il doit être lancé en root ; l'option @code{--user} lui fait abandonner les privilèges de root dès le début." #. type: Plain text -#: guix-git/doc/guix.texi:13504 +#: guix-git/doc/guix.texi:13861 msgid "The signing key pair must be generated before @command{guix publish} is launched, using @command{guix archive --generate-key} (@pxref{Invoking guix archive})." msgstr "La pair de clefs pour les signatures doit être générée avant de lancer @command{guix publish}, avec @command{guix archive --generate-key} (@pxref{Invoking guix archive})." #. type: Plain text -#: guix-git/doc/guix.texi:13509 +#: guix-git/doc/guix.texi:13866 msgid "When the @option{--advertise} option is passed, the server advertises its availability on the local network using multicast DNS (mDNS) and DNS service discovery (DNS-SD), currently @i{via} Guile-Avahi (@pxref{Top,,, guile-avahi, Using Avahi in Guile Scheme Programs})." msgstr "Lorsque vous passez l'option @option{--advertise}, le serveur annonce sa disponibilité sur le réseau local en utilisant le DNS multicast (mDNS) et le protocole de découvert de service DNS (DNS-SD), actuellement via Guile-Avahi (@pxref{Top,,, guile-avahi, Using Avahi in Guile Scheme Programs})." #. type: example -#: guix-git/doc/guix.texi:13514 +#: guix-git/doc/guix.texi:13871 #, no-wrap msgid "guix publish @var{options}@dots{}\n" msgstr "guix publish @var{options}@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:13518 +#: guix-git/doc/guix.texi:13875 msgid "Running @command{guix publish} without any additional arguments will spawn an HTTP server on port 8080:" msgstr "Lancer @command{guix publish} sans arguments supplémentaires lancera un serveur HTTP sur le port 8080 :" #. type: example -#: guix-git/doc/guix.texi:13521 +#: guix-git/doc/guix.texi:13878 #, no-wrap msgid "guix publish\n" msgstr "guix publish\n" #. type: Plain text -#: guix-git/doc/guix.texi:13525 +#: guix-git/doc/guix.texi:13882 msgid "Once a publishing server has been authorized, the daemon may download substitutes from it. @xref{Getting Substitutes from Other Servers}." msgstr "Une fois qu'un serveur de publication a été autorisé, le démon peut télécharger des substituts à partir de lui. @xref{Getting Substitutes from Other Servers}." #. type: Plain text -#: guix-git/doc/guix.texi:13533 +#: guix-git/doc/guix.texi:13890 msgid "By default, @command{guix publish} compresses archives on the fly as it serves them. This ``on-the-fly'' mode is convenient in that it requires no setup and is immediately available. However, when serving lots of clients, we recommend using the @option{--cache} option, which enables caching of the archives before they are sent to clients---see below for details. The @command{guix weather} command provides a handy way to check what a server provides (@pxref{Invoking guix weather})." msgstr "Par défaut, @command{guix publish} compresse les archives à la volée quand il les sert. Ce mode « à la volée » est pratique puisqu'il ne demande aucune configuration et est disponible immédiatement. Cependant, lorsqu'il s'agit de servir beaucoup de clients, nous recommandons d'utiliser l'option @option{--cache}, qui active le cache des archives avant de les envoyer aux clients — voir les détails plus bas. La commande @command{guix weather} fournit un manière pratique de vérifier ce qu'un serveur fournit (@pxref{Invoking guix weather})." #. type: Plain text -#: guix-git/doc/guix.texi:13540 +#: guix-git/doc/guix.texi:13897 msgid "As a bonus, @command{guix publish} also serves as a content-addressed mirror for source files referenced in @code{origin} records (@pxref{origin Reference}). For instance, assuming @command{guix publish} is running on @code{example.org}, the following URL returns the raw @file{hello-2.10.tar.gz} file with the given SHA256 hash (represented in @code{nix-base32} format, @pxref{Invoking guix hash}):" msgstr "En bonus, @command{guix publish} sert aussi un miroir adressé par le contenu des fichiers source référencées dans les enregistrements @code{origin} (@pxref{origin Reference}). Par exemple, en supposant que @command{guix publish} tourne sur @code{example.org}, l'URL suivante renverra le fichier brut @file{hello-2.10.tar.gz} avec le hash SHA256 donné (représenté sous le format @code{nix-base32}, @pxref{Invoking guix hash}) :" #. type: example -#: guix-git/doc/guix.texi:13543 +#: guix-git/doc/guix.texi:13900 #, no-wrap msgid "http://example.org/file/hello-2.10.tar.gz/sha256/0ssi1@dots{}ndq1i\n" msgstr "http://example.org/file/hello-2.10.tar.gz/sha256/0ssi1@dots{}ndq1i\n" #. type: Plain text -#: guix-git/doc/guix.texi:13547 +#: guix-git/doc/guix.texi:13904 msgid "Obviously, these URLs only work for files that are in the store; in other cases, they return 404 (``Not Found'')." msgstr "Évidemment, ces URL ne fonctionnent que pour des fichiers dans le dépôt ; dans les autres cas, elles renvoie une erreur 404 (« Introuvable »)." #. type: cindex -#: guix-git/doc/guix.texi:13548 +#: guix-git/doc/guix.texi:13905 #, no-wrap msgid "build logs, publication" msgstr "journaux de construction, publication" #. type: Plain text -#: guix-git/doc/guix.texi:13550 +#: guix-git/doc/guix.texi:13907 msgid "Build logs are available from @code{/log} URLs like:" msgstr "Les journaux de construction sont disponibles à partir des URL @code{/log} comme ceci :" #. type: example -#: guix-git/doc/guix.texi:13553 +#: guix-git/doc/guix.texi:13910 #, no-wrap msgid "http://example.org/log/gwspk@dots{}-guile-2.2.3\n" msgstr "http://example.org/log/gwspk@dots{}-guile-2.2.3\n" #. type: Plain text -#: guix-git/doc/guix.texi:13563 +#: guix-git/doc/guix.texi:13920 msgid "When @command{guix-daemon} is configured to save compressed build logs, as is the case by default (@pxref{Invoking guix-daemon}), @code{/log} URLs return the compressed log as-is, with an appropriate @code{Content-Type} and/or @code{Content-Encoding} header. We recommend running @command{guix-daemon} with @option{--log-compression=gzip} since Web browsers can automatically decompress it, which is not the case with Bzip2 compression." msgstr "Lorsque @command{guix-daemon} est configuré pour sauvegarder les journaux de construction compressés, comme c'est le cas par défaut (@pxref{Invoquer guix-daemon}), les URL @code{/log} renvoient le journal compressé tel-quel, avec une en-tête @code{Content-Type} et/ou @code{Content-Encoding} appropriée. Nous recommandons de lancer @command{guix-daemon} avec @option{--log-compression=gzip} parce que les navigateurs web les décompressent automatiquement, ce qui n'est pas le cas avec la compression bzip2." #. type: item -#: guix-git/doc/guix.texi:13567 +#: guix-git/doc/guix.texi:13924 #, no-wrap msgid "--port=@var{port}" msgstr "--port=@var{port}" #. type: itemx -#: guix-git/doc/guix.texi:13568 +#: guix-git/doc/guix.texi:13925 #, no-wrap msgid "-p @var{port}" msgstr "-p @var{port}" #. type: table -#: guix-git/doc/guix.texi:13570 +#: guix-git/doc/guix.texi:13927 msgid "Listen for HTTP requests on @var{port}." msgstr "Écoute les requêtes HTTP sur le @var{port}." #. type: item -#: guix-git/doc/guix.texi:13571 +#: guix-git/doc/guix.texi:13928 #, no-wrap msgid "--listen=@var{host}" msgstr "--listen=@var{hôte}" #. type: table -#: guix-git/doc/guix.texi:13574 +#: guix-git/doc/guix.texi:13931 msgid "Listen on the network interface for @var{host}. The default is to accept connections from any interface." msgstr "Écoute sur l'interface réseau de @var{hôte}. Par défaut, la commande accepte les connexions de n'importe quelle interface." #. type: table -#: guix-git/doc/guix.texi:13579 +#: guix-git/doc/guix.texi:13936 msgid "Change privileges to @var{user} as soon as possible---i.e., once the server socket is open and the signing key has been read." msgstr "Charge les privilèges de @var{utilisateur} le plus vite possible — c.-à-d. une fois que la socket du serveur est ouverte et que la clef de signature a été lue." #. type: item -#: guix-git/doc/guix.texi:13580 +#: guix-git/doc/guix.texi:13937 #, no-wrap msgid "--compression[=@var{method}[:@var{level}]]" msgstr "--compression[=@var{méthode}[:@var{niveau}]]" #. type: itemx -#: guix-git/doc/guix.texi:13581 +#: guix-git/doc/guix.texi:13938 #, no-wrap msgid "-C [@var{method}[:@var{level}]]" msgstr "-C [@var{méthode}[:@var{niveau}]]" #. type: table -#: guix-git/doc/guix.texi:13585 +#: guix-git/doc/guix.texi:13942 msgid "Compress data using the given @var{method} and @var{level}. @var{method} is one of @code{lzip}, @code{zstd}, and @code{gzip}; when @var{method} is omitted, @code{gzip} is used." msgstr "Compresser les données en utilisant les @var{method} et @var{level} donnés. @var{method} est l'un des codes @code{lzip}, @code{zstd} ou @code{gzip} ; lorsque @var{method} est omis, @code{gzip} est utilisé." #. type: table -#: guix-git/doc/guix.texi:13589 +#: guix-git/doc/guix.texi:13946 msgid "When @var{level} is zero, disable compression. The range 1 to 9 corresponds to different compression levels: 1 is the fastest, and 9 is the best (CPU-intensive). The default is 3." msgstr "Lorsque @var{level} est égal à zéro, désactivez la compression. La plage de 1 à 9 correspond à différents niveaux de compression : 1 est le plus rapide, et 9 est le meilleur (gourmand en CPU). Le niveau par défaut est 3." #. type: table -#: guix-git/doc/guix.texi:13596 +#: guix-git/doc/guix.texi:13953 msgid "Usually, @code{lzip} compresses noticeably better than @code{gzip} for a small increase in CPU usage; see @uref{https://nongnu.org/lzip/lzip_benchmark.html,benchmarks on the lzip Web page}. However, @code{lzip} achieves low decompression throughput (on the order of 50@tie{}MiB/s on modern hardware), which can be a bottleneck for someone who downloads over a fast network connection." msgstr "Habituellement, @code{lzip} compresse notablement mieux que @code{gzip} pour une légère augmentation de l'utilisation du CPU. voir @uref{https://nongnu.org/lzip/lzip_benchmark.html,benchmarks on the lzip Web page}. Cependant, @code{lzip} permet un faible débit à la décompression (de l'ordre de 50@tie{}Mio/s sur du matériel récent), ce qui peut être le facteur limitant pour quelqu'un qui télécharge sur un réseau rapide." #. type: table -#: guix-git/doc/guix.texi:13600 +#: guix-git/doc/guix.texi:13957 msgid "The compression ratio of @code{zstd} is between that of @code{lzip} and that of @code{gzip}; its main advantage is a @uref{https://facebook.github.io/zstd/,high decompression speed}." msgstr "Le ratio de compression de @code{zstd} est entre celui de @code{lzip} et celui de @code{gzip} ; son avantage principal est sa @uref{https://facebook.github.io/zstd/,high vitesse de décompression}." #. type: table -#: guix-git/doc/guix.texi:13609 +#: guix-git/doc/guix.texi:13966 msgid "Unless @option{--cache} is used, compression occurs on the fly and the compressed streams are not cached. Thus, to reduce load on the machine that runs @command{guix publish}, it may be a good idea to choose a low compression level, to run @command{guix publish} behind a caching proxy, or to use @option{--cache}. Using @option{--cache} has the advantage that it allows @command{guix publish} to add @code{Content-Length} HTTP header to its responses." msgstr "À moins que @option{--cache} ne soit utilisé, la compression se fait à la volée et les flux compressés ne sont pas cachés. Ainsi, pour réduire la charge sur la machine qui fait tourner @command{guix publish}, c'est une bonne idée de choisir un niveau de compression faible, de lancer @command{guix publish} derrière un serveur de cache ou d'utiliser @option{--cache}. Utilise @option{--cache} a l'avantage qu'il permet à @command{guix publish} d'ajouter l'en-tête HTTP @code{Content-Length} à sa réponse." #. type: table -#: guix-git/doc/guix.texi:13614 +#: guix-git/doc/guix.texi:13971 msgid "This option can be repeated, in which case every substitute gets compressed using all the selected methods, and all of them are advertised. This is useful when users may not support all the compression methods: they can select the one they support." msgstr "Cette option peut être répétée, auquel cas chaque substitut est compressé en utilisant toutes les méthodes sélectionnées, et toutes sont annoncées. Cette option est utile lorsque les utilisateur·rice·s ne supportent pas toutes les méthodes de compression : il·elle·s peuvent sélectionner celle qu'elles supportent." #. type: item -#: guix-git/doc/guix.texi:13615 +#: guix-git/doc/guix.texi:13972 #, no-wrap msgid "--cache=@var{directory}" msgstr "--cache=@var{répertoire}" #. type: itemx -#: guix-git/doc/guix.texi:13616 +#: guix-git/doc/guix.texi:13973 #, no-wrap msgid "-c @var{directory}" msgstr "-c @var{répertoire}" #. type: table -#: guix-git/doc/guix.texi:13619 +#: guix-git/doc/guix.texi:13976 msgid "Cache archives and meta-data (@code{.narinfo} URLs) to @var{directory} and only serve archives that are in cache." msgstr "Cache les archives et les métadonnées (les URL @code{.narinfo}) dans @var{répertoire} et ne sert que les archives dans ce cache." #. type: table -#: guix-git/doc/guix.texi:13627 +#: guix-git/doc/guix.texi:13984 msgid "When this option is omitted, archives and meta-data are created on-the-fly. This can reduce the available bandwidth, especially when compression is enabled, since this may become CPU-bound. Another drawback of the default mode is that the length of archives is not known in advance, so @command{guix publish} does not add a @code{Content-Length} HTTP header to its responses, which in turn prevents clients from knowing the amount of data being downloaded." msgstr "Lorsque cette option est omise, les archives et les métadonnées sont crées à la volée. Cela réduit la bande passante disponible, surtout quand la compression est activée puisqu'elle pourrait être limitée par le CPU. Un autre inconvénient au mode par défaut est que la taille des archives n'est pas connue à l'avance, donc @command{guix publish} n'ajoute pas l'en-tête @code{Content-Length} à ses réponses, ce qui empêche les clients de savoir la quantité de données à télécharger." #. type: table -#: guix-git/doc/guix.texi:13635 +#: guix-git/doc/guix.texi:13992 msgid "Conversely, when @option{--cache} is used, the first request for a store item (@i{via} a @code{.narinfo} URL) triggers a background process to @dfn{bake} the archive---computing its @code{.narinfo} and compressing the archive, if needed. Once the archive is cached in @var{directory}, subsequent requests succeed and are served directly from the cache, which guarantees that clients get the best possible bandwidth." msgstr "À l'inverse, lorsque @option{--cache} est utilisée, la première requête pour un élément du dépôt (via une URL @code{.narinfo}) déclenche une tâche de fond pour créer l'archive — en calculant son @code{.narinfo} et en compressant l'archive au besoin. Une fois l'archive en cache dans @var{répertoire}, les requêtes suivantes réussissent et sont servies directement depuis le cache, ce qui garanti que les clients ont la meilleure bande passante possible." #. type: table -#: guix-git/doc/guix.texi:13642 +#: guix-git/doc/guix.texi:13999 msgid "That first @code{.narinfo} request nonetheless returns 200, provided the requested store item is ``small enough'', below the cache bypass threshold---see @option{--cache-bypass-threshold} below. That way, clients do not have to wait until the archive is baked. For larger store items, the first @code{.narinfo} request returns 404, meaning that clients have to wait until the archive is baked." msgstr "Cette première requête @code{.narinfo} renvoie quand même 200, si l'élément du dépôt est « assez petit », sous la limite de contournement du cache --- voir @option{--cache-bypass-threshold} plus bas. De cette manière, les clients n'ont pas besoin d'attendre que l'archive soit prête. Pour les éléments plus gros, la première requête @code{.narinfo} renvoie 404, ce qui signifie que les clients doivent attendre jusqu'à ce que l'archive soit prête." #. type: table -#: guix-git/doc/guix.texi:13646 +#: guix-git/doc/guix.texi:14003 msgid "The ``baking'' process is performed by worker threads. By default, one thread per CPU core is created, but this can be customized. See @option{--workers} below." msgstr "Le processus de création est effectué par des threads de travail. Par défaut, un thread par cœur du CPU est créé, mais cela peut être personnalisé. Voir @option{--workers} plus bas." #. type: table -#: guix-git/doc/guix.texi:13649 +#: guix-git/doc/guix.texi:14006 msgid "When @option{--ttl} is used, cached entries are automatically deleted when they have expired." msgstr "Lorsque l'option @option{--ttl} est utilisée, les entrées cachées sont automatiquement supprimées lorsqu'elles expirent." #. type: item -#: guix-git/doc/guix.texi:13650 +#: guix-git/doc/guix.texi:14007 #, no-wrap msgid "--workers=@var{N}" msgstr "--workers=@var{N}" #. type: table -#: guix-git/doc/guix.texi:13653 +#: guix-git/doc/guix.texi:14010 msgid "When @option{--cache} is used, request the allocation of @var{N} worker threads to ``bake'' archives." msgstr "Lorsque @option{--cache} est utilisée, demande l'allocation de @var{N} thread de travail pour créer les archives." #. type: item -#: guix-git/doc/guix.texi:13654 +#: guix-git/doc/guix.texi:14011 #, no-wrap msgid "--ttl=@var{ttl}" msgstr "--ttl=@var{ttl}" #. type: table -#: guix-git/doc/guix.texi:13658 +#: guix-git/doc/guix.texi:14015 msgid "Produce @code{Cache-Control} HTTP headers that advertise a time-to-live (TTL) of @var{ttl}. @var{ttl} must denote a duration: @code{5d} means 5 days, @code{1m} means 1 month, and so on." msgstr "Produit des en-têtes HTTP @code{Cache-Control} qui annoncent une durée de vie (TTL) de @var{ttl}. @var{ttl} peut dénoter une durée : @code{5d} signifie 5 jours, @code{1m} signifie un mois, etc." #. type: table -#: guix-git/doc/guix.texi:13663 +#: guix-git/doc/guix.texi:14020 msgid "This allows the user's Guix to keep substitute information in cache for @var{ttl}. However, note that @code{guix publish} does not itself guarantee that the store items it provides will indeed remain available for as long as @var{ttl}." msgstr "Cela permet au Guix de l'utilisateur de garder les informations en cache pendant @var{ttl}. Cependant, remarquez que @code{guix publish} ne garanti pas lui-même que les éléments du dépôt qu'il fournit seront toujours disponible pendant la durée @var{ttl}." #. type: table -#: guix-git/doc/guix.texi:13667 +#: guix-git/doc/guix.texi:14024 msgid "Additionally, when @option{--cache} is used, cached entries that have not been accessed for @var{ttl} and that no longer have a corresponding item in the store, may be deleted." msgstr "En plus, lorsque @option{--cache} est utilisée, les entrées cachées qui n'ont pas été demandé depuis @var{ttl} et n'ont pas d'élément correspondant dans le dépôt peuvent être supprimées." #. type: item -#: guix-git/doc/guix.texi:13668 +#: guix-git/doc/guix.texi:14025 #, no-wrap msgid "--negative-ttl=@var{ttl}" msgstr "--negative-ttl=@var{ttl}" #. type: table -#: guix-git/doc/guix.texi:13673 +#: guix-git/doc/guix.texi:14030 msgid "Similarly produce @code{Cache-Control} HTTP headers to advertise the time-to-live (TTL) of @emph{negative} lookups---missing store items, for which the HTTP 404 code is returned. By default, no negative TTL is advertised." msgstr "Produit de la même manière des en-têtes HTTP @code{Cache-Control} pour annoncer la durée de vie (TLL) d'une recherche @emph{négative} — des entrées du dépôt manquantes, pour lesquelles une erreur 404 est renvoyée. Par défaut, aucun TTL négatif n'est annoncé." #. type: table -#: guix-git/doc/guix.texi:13677 +#: guix-git/doc/guix.texi:14034 msgid "This parameter can help adjust server load and substitute latency by instructing cooperating clients to be more or less patient when a store item is missing." msgstr "Ce paramètre peut aider à ajuster la charge du serveur et la latence des substituts en demandant aux clients coopératifs d'être plus ou moins patients quand un élément du dépôt manque." #. type: item -#: guix-git/doc/guix.texi:13678 +#: guix-git/doc/guix.texi:14035 #, no-wrap msgid "--cache-bypass-threshold=@var{size}" msgstr "--cache-bypass-threshold=@var{taille}" #. type: table -#: guix-git/doc/guix.texi:13683 +#: guix-git/doc/guix.texi:14040 msgid "When used in conjunction with @option{--cache}, store items smaller than @var{size} are immediately available, even when they are not yet in cache. @var{size} is a size in bytes, or it can be suffixed by @code{M} for megabytes and so on. The default is @code{10M}." msgstr "Avec @option{--cache}, les éléments du dépôt plus petits que @var{taille} sont immédiatement disponibles, même s'ils ne sont pas en cache. @var{taille} est une taille en octets, ou peut utiliser un suffixe comme @code{M} pour les mégaoctets, etc. La valeur par défaut est @code{10M}." #. type: table -#: guix-git/doc/guix.texi:13688 +#: guix-git/doc/guix.texi:14045 msgid "``Cache bypass'' allows you to reduce the publication delay for clients at the expense of possibly additional I/O and CPU use on the server side: depending on the client access patterns, those store items can end up being baked several times until a copy is available in cache." msgstr "Le « contournement du cache » vous permet de réduire le délai de publication pour les clients au prix d'utilisation accrue des I/O et du CPU sur le serveur : en fonction des accès clients, ces éléments peuvent être créés plusieurs fois avant qu'une copie ne soit disponible dans le cache." #. type: table -#: guix-git/doc/guix.texi:13692 +#: guix-git/doc/guix.texi:14049 msgid "Increasing the threshold may be useful for sites that have few users, or to guarantee that users get substitutes even for store items that are not popular." msgstr "Augmenter la limite peut être utile pour les sites qui ont peu d'utilisateurs, ou pour garantir que les utilisateurs reçoivent les substituts même pour les éléments qui ne sont pas populaires." #. type: item -#: guix-git/doc/guix.texi:13693 +#: guix-git/doc/guix.texi:14050 #, no-wrap msgid "--nar-path=@var{path}" msgstr "--nar-path=@var{chemin}" #. type: table -#: guix-git/doc/guix.texi:13696 +#: guix-git/doc/guix.texi:14053 msgid "Use @var{path} as the prefix for the URLs of ``nar'' files (@pxref{Invoking guix archive, normalized archives})." msgstr "Utilise @var{chemin} comme préfixe des URL de fichier « nar » (@pxref{Invoking guix archive, normalized archives})." #. type: table -#: guix-git/doc/guix.texi:13700 +#: guix-git/doc/guix.texi:14057 msgid "By default, nars are served at a URL such as @code{/nar/gzip/@dots{}-coreutils-8.25}. This option allows you to change the @code{/nar} part to @var{path}." msgstr "Par défaut, les nars sont présents à l'URL comme @code{/nar/gzip/@dots{}-coreutils-8.25}. Cette option vous permet de changer la partie @code{/nar} en @var{chemin}." #. type: item -#: guix-git/doc/guix.texi:13701 +#: guix-git/doc/guix.texi:14058 #, no-wrap msgid "--public-key=@var{file}" msgstr "--public-key=@var{fichier}" #. type: itemx -#: guix-git/doc/guix.texi:13702 +#: guix-git/doc/guix.texi:14059 #, no-wrap msgid "--private-key=@var{file}" msgstr "--private-key=@var{fichier}" #. type: table -#: guix-git/doc/guix.texi:13705 guix-git/doc/guix.texi:29141 -#: guix-git/doc/guix.texi:29178 +#: guix-git/doc/guix.texi:14062 guix-git/doc/guix.texi:29478 +#: guix-git/doc/guix.texi:29515 msgid "Use the specific @var{file}s as the public/private key pair used to sign the store items being published." msgstr "Utilise les @var{fichier}s spécifiques comme pair de clefs utilisées pour signer les éléments avant de les publier." #. type: table -#: guix-git/doc/guix.texi:13712 +#: guix-git/doc/guix.texi:14069 msgid "The files must correspond to the same key pair (the private key is used for signing and the public key is merely advertised in the signature metadata). They must contain keys in the canonical s-expression format as produced by @command{guix archive --generate-key} (@pxref{Invoking guix archive}). By default, @file{/etc/guix/signing-key.pub} and @file{/etc/guix/signing-key.sec} are used." msgstr "Les fichiers doivent correspondre à la même pair de clefs (la clef privée est utilisée pour signer et la clef publique est seulement ajouté aux métadonnées de la signature). Ils doivent contenir les clefs dans le format s-expression canonique produit par @command{guix archive --generate-key} (@pxref{Invoking guix archive}). Par défaut, @file{/etc/guix/signing-key.pub} et @file{/etc/guix/signing-key.sec} sont utilisés." #. type: item -#: guix-git/doc/guix.texi:13713 +#: guix-git/doc/guix.texi:14070 #, no-wrap msgid "--repl[=@var{port}]" msgstr "--repl[=@var{port}]" #. type: itemx -#: guix-git/doc/guix.texi:13714 +#: guix-git/doc/guix.texi:14071 #, no-wrap msgid "-r [@var{port}]" msgstr "-r [@var{port}]" #. type: table -#: guix-git/doc/guix.texi:13718 +#: guix-git/doc/guix.texi:14075 msgid "Spawn a Guile REPL server (@pxref{REPL Servers,,, guile, GNU Guile Reference Manual}) on @var{port} (37146 by default). This is used primarily for debugging a running @command{guix publish} server." msgstr "Crée un serveur REPL Guile (@pxref{REPL Servers,,, guile, GNU Guile Reference Manual}) sur @var{pport} (37146 par défaut). C'est surtout utile pour déboguer un serveur @command{guix publish} qui tourne." #. type: Plain text -#: guix-git/doc/guix.texi:13724 +#: guix-git/doc/guix.texi:14081 msgid "Enabling @command{guix publish} on Guix System is a one-liner: just instantiate a @code{guix-publish-service-type} service in the @code{services} field of the @code{operating-system} declaration (@pxref{guix-publish-service-type, @code{guix-publish-service-type}})." msgstr "Activer @command{guix publish} sur un système Guix est vraiment une seule ligne : instanciez simplement un service @code{guix-publish-service-type} dans le champs @code{services} de votre déclaration @code{operating-system} (@pxref{guix-publish-service-type, @code{guix-publish-service-type}})." #. type: Plain text -#: guix-git/doc/guix.texi:13727 +#: guix-git/doc/guix.texi:14084 msgid "If you are instead running Guix on a ``foreign distro'', follow these instructions:" msgstr "Si vous utilisez plutôt Guix sur une « distro étrangère », suivez ces instructions :" #. type: itemize -#: guix-git/doc/guix.texi:13731 +#: guix-git/doc/guix.texi:14088 msgid "If your host distro uses the systemd init system:" msgstr "Si votre distro hôte utilise le système d'init systemd :" #. type: example -#: guix-git/doc/guix.texi:13736 +#: guix-git/doc/guix.texi:14093 #, no-wrap msgid "" "# ln -s ~root/.guix-profile/lib/systemd/system/guix-publish.service \\\n" @@ -25455,7 +26112,7 @@ msgstr "" "# systemctl start guix-publish && systemctl enable guix-publish\n" #. type: example -#: guix-git/doc/guix.texi:13744 +#: guix-git/doc/guix.texi:14101 #, no-wrap msgid "" "# ln -s ~root/.guix-profile/lib/upstart/system/guix-publish.conf /etc/init/\n" @@ -25465,56 +26122,56 @@ msgstr "" "# start guix-publish\n" #. type: itemize -#: guix-git/doc/guix.texi:13748 +#: guix-git/doc/guix.texi:14105 msgid "Otherwise, proceed similarly with your distro's init system." msgstr "Sinon, procédez de manière similaire avec votre système d'init de votre distro." #. type: section -#: guix-git/doc/guix.texi:13751 +#: guix-git/doc/guix.texi:14108 #, no-wrap msgid "Invoking @command{guix challenge}" msgstr "Invoquer @command{guix challenge}" #. type: cindex -#: guix-git/doc/guix.texi:13754 +#: guix-git/doc/guix.texi:14111 #, no-wrap msgid "verifiable builds" msgstr "constructions vérifiables" #. type: command{#1} -#: guix-git/doc/guix.texi:13755 +#: guix-git/doc/guix.texi:14112 #, no-wrap msgid "guix challenge" msgstr "guix challenge" #. type: cindex -#: guix-git/doc/guix.texi:13756 +#: guix-git/doc/guix.texi:14113 #, no-wrap msgid "challenge" msgstr "défi" #. type: Plain text -#: guix-git/doc/guix.texi:13761 +#: guix-git/doc/guix.texi:14118 msgid "Do the binaries provided by this server really correspond to the source code it claims to build? Is a package build process deterministic? These are the questions the @command{guix challenge} command attempts to answer." msgstr "Est-ce que les binaires fournis par ce serveur correspondent réellement au code source qu'il dit avoir construit ? Est-ce que le processus de construction d'un paquet est déterministe ? Ce sont les question auxquelles la commande @command{guix challenge} essaye de répondre." #. type: Plain text -#: guix-git/doc/guix.texi:13769 +#: guix-git/doc/guix.texi:14126 msgid "The former is obviously an important question: Before using a substitute server (@pxref{Substitutes}), one had better @emph{verify} that it provides the right binaries, and thus @emph{challenge} it. The latter is what enables the former: If package builds are deterministic, then independent builds of the package should yield the exact same result, bit for bit; if a server provides a binary different from the one obtained locally, it may be either corrupt or malicious." msgstr "La première question est évidemment importante : avant d'utiliser un serveur de substituts (@pxref{Substituts}), il vaut mieux @emph{vérifier} qu'il fournit les bons binaires et donc le @emph{défier}. La deuxième est ce qui permet la première : si les constructions des paquets sont déterministes alors des constructions indépendantes du paquet devraient donner le même résultat, bit à bit ; si un serveur fournit un binaire différent de celui obtenu localement, il peut être soit corrompu, soit malveillant." #. type: Plain text -#: guix-git/doc/guix.texi:13778 +#: guix-git/doc/guix.texi:14135 msgid "We know that the hash that shows up in @file{/gnu/store} file names is the hash of all the inputs of the process that built the file or directory---compilers, libraries, build scripts, etc. (@pxref{Introduction}). Assuming deterministic build processes, one store file name should map to exactly one build output. @command{guix challenge} checks whether there is, indeed, a single mapping by comparing the build outputs of several independent builds of any given store item." msgstr "On sait que le hash qui apparaît dans @file{/gnu/store} est le hash de toutes les entrées du processus qui construit le fichier ou le répertoire — les compilateurs, les bibliothèques, les scripts de construction, etc. (@pxref{Introduction}). En supposant que les processus de construction sont déterministes, un nom de fichier dans le dépôt devrait correspondre exactement à une sortie de construction. @command{guix challenge} vérifie si il y a bien effectivement une seule correspondance en comparant les sorties de plusieurs constructions indépendantes d'un élément du dépôt donné." #. type: Plain text -#: guix-git/doc/guix.texi:13780 +#: guix-git/doc/guix.texi:14137 msgid "The command output looks like this:" msgstr "La sortie de la commande ressemble à :" #. type: smallexample -#: guix-git/doc/guix.texi:13792 +#: guix-git/doc/guix.texi:14149 #, no-wrap msgid "" "$ guix challenge --substitute-urls=\"https://@value{SUBSTITUTE-SERVER-1} https://guix.example.org\"\n" @@ -25542,7 +26199,7 @@ msgstr "" "\n" #. type: smallexample -#: guix-git/doc/guix.texi:13799 +#: guix-git/doc/guix.texi:14156 #, no-wrap msgid "" "/gnu/store/@dots{}-git-2.5.0 contents differ:\n" @@ -25562,7 +26219,7 @@ msgstr "" "\n" #. type: smallexample -#: guix-git/doc/guix.texi:13806 +#: guix-git/doc/guix.texi:14163 #, no-wrap msgid "" "/gnu/store/@dots{}-pius-2.1.1 contents differ:\n" @@ -25582,7 +26239,7 @@ msgstr "" "\n" #. type: smallexample -#: guix-git/doc/guix.texi:13808 +#: guix-git/doc/guix.texi:14165 #, no-wrap msgid "" "@dots{}\n" @@ -25592,7 +26249,7 @@ msgstr "" "\n" #. type: smallexample -#: guix-git/doc/guix.texi:13813 +#: guix-git/doc/guix.texi:14170 #, no-wrap msgid "" "6,406 store items were analyzed:\n" @@ -25606,28 +26263,28 @@ msgstr "" " - 1,132 (17.7%) étaient impossibles à évaluer\n" #. type: Plain text -#: guix-git/doc/guix.texi:13821 +#: guix-git/doc/guix.texi:14178 msgid "In this example, @command{guix challenge} first scans the store to determine the set of locally-built derivations---as opposed to store items that were downloaded from a substitute server---and then queries all the substitute servers. It then reports those store items for which the servers obtained a result different from the local build." msgstr "Dans cet exemple, @command{guix challenge} scanne d'abord le dépôt pour déterminer l'ensemble des dérivations construites localement — en opposition aux éléments qui ont été téléchargées depuis un serveur de substituts — puis demande leur avis à tous les serveurs de substituts. Il rapporte ensuite les éléments du dépôt pour lesquels les serveurs ont obtenu un résultat différent de la construction locale." #. type: cindex -#: guix-git/doc/guix.texi:13822 +#: guix-git/doc/guix.texi:14179 #, no-wrap msgid "non-determinism, in package builds" msgstr "non-déterminisme, dans les constructions des paquets" #. type: Plain text -#: guix-git/doc/guix.texi:13833 +#: guix-git/doc/guix.texi:14190 msgid "As an example, @code{guix.example.org} always gets a different answer. Conversely, @code{@value{SUBSTITUTE-SERVER-1}} agrees with local builds, except in the case of Git. This might indicate that the build process of Git is non-deterministic, meaning that its output varies as a function of various things that Guix does not fully control, in spite of building packages in isolated environments (@pxref{Features}). Most common sources of non-determinism include the addition of timestamps in build results, the inclusion of random numbers, and directory listings sorted by inode number. See @uref{https://reproducible-builds.org/docs/}, for more information." msgstr "Dans l'exemple, @code{guix.example.org} obtient toujours une réponse différente. Inversement, @code{@value{SUBSTITUTE-SERVER-1}} est d'accord avec les constructions locale, sauf dans le cas de Git. Cela peut indiquer que le processus de construction de Git est non-déterministe, ce qui signifie que sa sortie diffère en fonction de divers choses que Guix ne contrôle pas parfaitement, malgré l'isolation des constructions (@pxref{Features}). Les sources les plus communes de non-déterminisme comprennent l'ajout d'horodatage dans les résultats des constructions, l'inclusion de nombres aléatoires et des listes de fichiers ordonnés par numéro d'inœud. Voir @uref{https://reproducible-builds.org/docs/}, pour plus d'informations." #. type: Plain text -#: guix-git/doc/guix.texi:13836 +#: guix-git/doc/guix.texi:14193 msgid "To find out what is wrong with this Git binary, the easiest approach is to run:" msgstr "Pour trouver ce qui ne va pas avec ce binaire Git, l'approche la plus facile est de lancer :" #. type: example -#: guix-git/doc/guix.texi:13841 +#: guix-git/doc/guix.texi:14198 #, no-wrap msgid "" "guix challenge git \\\n" @@ -25639,17 +26296,17 @@ msgstr "" " --substitute-urls=\"https://@value{SUBSTITUTE-SERVER-1} https://guix.example.org\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:13845 +#: guix-git/doc/guix.texi:14202 msgid "This automatically invokes @command{diffoscope}, which displays detailed information about files that differ." msgstr "Cela invoque automatiquement @command{diffoscope}, qui affiche des informations détaillées sur les fichiers qui diffèrent." #. type: Plain text -#: guix-git/doc/guix.texi:13848 +#: guix-git/doc/guix.texi:14205 msgid "Alternatively, we can do something along these lines (@pxref{Invoking guix archive}):" msgstr "Autrement, nous pouvons faire quelque chose comme dans ces lignes (@pxref{Invoquer guix archive}) :" #. type: example -#: guix-git/doc/guix.texi:13853 +#: guix-git/doc/guix.texi:14210 #, no-wrap msgid "" "$ wget -q -O - https://@value{SUBSTITUTE-SERVER-1}/nar/lzip/@dots{}-git-2.5.0 \\\n" @@ -25661,160 +26318,160 @@ msgstr "" "$ diff -ur --no-dereference /gnu/store/@dots{}-git.2.5.0 /tmp/git\n" #. type: Plain text -#: guix-git/doc/guix.texi:13862 +#: guix-git/doc/guix.texi:14219 msgid "This command shows the difference between the files resulting from the local build, and the files resulting from the build on @code{@value{SUBSTITUTE-SERVER-1}} (@pxref{Overview, Comparing and Merging Files,, diffutils, Comparing and Merging Files}). The @command{diff} command works great for text files. When binary files differ, a better option is @uref{https://diffoscope.org/, Diffoscope}, a tool that helps visualize differences for all kinds of files." msgstr "Cette commande montre les différences entre les fichiers qui résultent de la construction locale et des fichiers qui résultent de la construction sur @code{@value{SUBSTITUTE-SERVER-1}} (@pxref{Overview, Comparing and Merging Files,, diffutils, Comparing and Merging Files}). La commande @command{diff} fonctionne bien avec des fichiers texte. Lorsque des fichiers binaires diffèrent cependant, @uref{https://diffoscope.org/, Diffoscope} est une meilleure option. C'est un outil qui aide à visualiser les différences entre toute sorte de fichiers." #. type: Plain text -#: guix-git/doc/guix.texi:13870 +#: guix-git/doc/guix.texi:14227 msgid "Once you have done that work, you can tell whether the differences are due to a non-deterministic build process or to a malicious server. We try hard to remove sources of non-determinism in packages to make it easier to verify substitutes, but of course, this is a process that involves not just Guix, but a large part of the free software community. In the meantime, @command{guix challenge} is one tool to help address the problem." msgstr "Une fois que vous avez fait ce travail, vous pourrez dire si les différences sont dues au non-déterminisme du processus de construction ou à la malhonnêteté du serveur. Nous avons fait beaucoup d'effort pour éliminer les sources de non-déterminisme dans les paquets pour rendre plus facile la vérification des substituts, mais bien sûr, c'est un processus qui n'implique pas que Guix, mais une grande partie de la communauté des logiciels libres. Pendant ce temps, @command{guix challenge} est un outil pour aider à corriger le problème." #. type: Plain text -#: guix-git/doc/guix.texi:13874 +#: guix-git/doc/guix.texi:14231 msgid "If you are writing packages for Guix, you are encouraged to check whether @code{@value{SUBSTITUTE-SERVER-1}} and other substitute servers obtain the same build result as you did with:" msgstr "Si vous écrivez un paquet pour Guix, nous vous encourageons à vérifier si @code{@value{SUBSTITUTE-SERVER-1}} et d'autres serveurs de substituts obtiennent le même résultat que vous avec :" #. type: example -#: guix-git/doc/guix.texi:13877 +#: guix-git/doc/guix.texi:14234 #, no-wrap msgid "$ guix challenge @var{package}\n" msgstr "$ guix challenge @var{paquet}\n" #. type: Plain text -#: guix-git/doc/guix.texi:13882 +#: guix-git/doc/guix.texi:14239 msgid "where @var{package} is a package specification such as @code{guile@@2.0} or @code{glibc:debug}." msgstr "où @var{paquet} est une spécification de paquet comme @code{guile@@2.0} ou @code{glibc:debug}." #. type: example -#: guix-git/doc/guix.texi:13887 +#: guix-git/doc/guix.texi:14244 #, no-wrap msgid "guix challenge @var{options} [@var{packages}@dots{}]\n" msgstr "guix challenge @var{options} [@var{paquets}@dots{}]\n" #. type: Plain text -#: guix-git/doc/guix.texi:13894 +#: guix-git/doc/guix.texi:14251 msgid "When a difference is found between the hash of a locally-built item and that of a server-provided substitute, or among substitutes provided by different servers, the command displays it as in the example above and its exit code is 2 (other non-zero exit codes denote other kinds of errors)." msgstr "Lorsqu'une différence est trouvée entre l'empreinte d'un élément construit localement et celle d'un substitut fourni par un serveur, ou parmi les substituts fournis par différents serveurs, la commande l'affiche comme dans l'exemple ci-dessus et sa valeur de sortie est 2 (les autres valeurs différentes de 0 indiquent d'autres sortes d'erreurs)." #. type: Plain text -#: guix-git/doc/guix.texi:13896 +#: guix-git/doc/guix.texi:14253 msgid "The one option that matters is:" msgstr "L'option qui compte est :" #. type: table -#: guix-git/doc/guix.texi:13902 +#: guix-git/doc/guix.texi:14259 msgid "Consider @var{urls} the whitespace-separated list of substitute source URLs to compare to." msgstr "Considère @var{urls} comme la liste des URL des sources de substituts séparés par des espaces avec lesquels comparer les paquets locaux." #. type: item -#: guix-git/doc/guix.texi:13903 +#: guix-git/doc/guix.texi:14260 #, no-wrap msgid "--diff=@var{mode}" msgstr "--diff=@var{mode}" #. type: table -#: guix-git/doc/guix.texi:13905 +#: guix-git/doc/guix.texi:14262 msgid "Upon mismatches, show differences according to @var{mode}, one of:" msgstr "En cas d'inadéquation, montre les différences en fonction de @var{mode}, l'un des :" #. type: item -#: guix-git/doc/guix.texi:13907 +#: guix-git/doc/guix.texi:14264 #, no-wrap msgid "@code{simple} (the default)" msgstr "@code{simple} (par défaut)" #. type: table -#: guix-git/doc/guix.texi:13909 +#: guix-git/doc/guix.texi:14266 msgid "Show the list of files that differ." msgstr "Montrer la liste des fichiers qui diffèrent." #. type: code{#1} -#: guix-git/doc/guix.texi:13910 +#: guix-git/doc/guix.texi:14267 #, no-wrap msgid "diffoscope" msgstr "diffoscope" #. type: var{#1} -#: guix-git/doc/guix.texi:13911 +#: guix-git/doc/guix.texi:14268 #, no-wrap msgid "command" msgstr "commande" #. type: table -#: guix-git/doc/guix.texi:13914 +#: guix-git/doc/guix.texi:14271 msgid "Invoke @uref{https://diffoscope.org/, Diffoscope}, passing it two directories whose contents do not match." msgstr "Invoque @uref{https://diffoscope.org/, Diffoscope}, en lui passant deux répertoires dont le contenu ne correspond pas." #. type: table -#: guix-git/doc/guix.texi:13917 +#: guix-git/doc/guix.texi:14274 msgid "When @var{command} is an absolute file name, run @var{command} instead of Diffoscope." msgstr "Quand @var{command} est un nom de fichier absolu, lancez @var{command} au lieu de Diffoscope." #. type: table -#: guix-git/doc/guix.texi:13920 +#: guix-git/doc/guix.texi:14277 msgid "Do not show further details about the differences." msgstr "Ne donnez pas plus de détails sur les différences." #. type: table -#: guix-git/doc/guix.texi:13925 +#: guix-git/doc/guix.texi:14282 msgid "Thus, unless @option{--diff=none} is passed, @command{guix challenge} downloads the store items from the given substitute servers so that it can compare them." msgstr "Ainsi, à moins que l'option @option{--diff=none} ne soit passée, @command{guix challenge} télécharge les éléments du store à partir des serveurs de substitut donnés afin de pouvoir les comparer." #. type: item -#: guix-git/doc/guix.texi:13926 +#: guix-git/doc/guix.texi:14283 #, no-wrap msgid "--verbose" msgstr "--verbose" #. type: itemx -#: guix-git/doc/guix.texi:13927 +#: guix-git/doc/guix.texi:14284 #, no-wrap msgid "-v" msgstr "-v" #. type: table -#: guix-git/doc/guix.texi:13930 +#: guix-git/doc/guix.texi:14287 msgid "Show details about matches (identical contents) in addition to information about mismatches." msgstr "Montre des détails sur les correspondances (contenu identique) en plus des informations sur différences." #. type: section -#: guix-git/doc/guix.texi:13934 +#: guix-git/doc/guix.texi:14291 #, no-wrap msgid "Invoking @command{guix copy}" msgstr "Invoquer @command{guix copy}" #. type: cindex -#: guix-git/doc/guix.texi:13936 +#: guix-git/doc/guix.texi:14293 #, no-wrap msgid "copy, of store items, over SSH" msgstr "copier des éléments du dépôt par SSH" #. type: cindex -#: guix-git/doc/guix.texi:13937 +#: guix-git/doc/guix.texi:14294 #, no-wrap msgid "SSH, copy of store items" msgstr "SSH, copie d'éléments du dépôt" #. type: cindex -#: guix-git/doc/guix.texi:13938 +#: guix-git/doc/guix.texi:14295 #, no-wrap msgid "sharing store items across machines" msgstr "partager des éléments du dépôt entre plusieurs machines" #. type: cindex -#: guix-git/doc/guix.texi:13939 +#: guix-git/doc/guix.texi:14296 #, no-wrap msgid "transferring store items across machines" msgstr "transférer des éléments du dépôt entre plusieurs machines" #. type: Plain text -#: guix-git/doc/guix.texi:13946 +#: guix-git/doc/guix.texi:14303 msgid "The @command{guix copy} command copies items from the store of one machine to that of another machine over a secure shell (SSH) connection@footnote{This command is available only when Guile-SSH was found. @xref{Requirements}, for details.}. For example, the following command copies the @code{coreutils} package, the user's profile, and all their dependencies over to @var{host}, logged in as @var{user}:" msgstr "La commande @command{guix copy} copie des éléments du dépôt d'une machine vers le dépôt d'une autre machine à travers une connexion SSH@footnote{Cette commande n'est disponible que si Guile-SSH est trouvé. @xref{Requirements}, pour des détails}. Par exemple, la commande suivante copie le paquet @code{coreutils}, le profil utilisateur et toutes leurs dépendances sur @var{hôte}, en tant qu'utilisateur @var{utilisateur} :" #. type: example -#: guix-git/doc/guix.texi:13950 +#: guix-git/doc/guix.texi:14307 #, no-wrap msgid "" "guix copy --to=@var{user}@@@var{host} \\\n" @@ -25824,192 +26481,192 @@ msgstr "" " coreutils $(readlink -f ~/.guix-profile)\n" #. type: Plain text -#: guix-git/doc/guix.texi:13954 +#: guix-git/doc/guix.texi:14311 msgid "If some of the items to be copied are already present on @var{host}, they are not actually sent." msgstr "Si certains éléments à copier sont déjà présents sur @var{hôte}, ils ne sont pas envoyés." #. type: Plain text -#: guix-git/doc/guix.texi:13957 +#: guix-git/doc/guix.texi:14314 msgid "The command below retrieves @code{libreoffice} and @code{gimp} from @var{host}, assuming they are available there:" msgstr "La commande ci-dessous récupère @code{libreoffice} et @code{gimp} depuis @var{hôte}, en supposant qu'ils y sont présents :" #. type: example -#: guix-git/doc/guix.texi:13960 +#: guix-git/doc/guix.texi:14317 #, no-wrap msgid "guix copy --from=@var{host} libreoffice gimp\n" msgstr "guix copy --from=@var{hôte} libreoffice gimp\n" #. type: Plain text -#: guix-git/doc/guix.texi:13965 +#: guix-git/doc/guix.texi:14322 msgid "The SSH connection is established using the Guile-SSH client, which is compatible with OpenSSH: it honors @file{~/.ssh/known_hosts} and @file{~/.ssh/config}, and uses the SSH agent for authentication." msgstr "La connexion SSH est établie avec le client Guile-SSH, qui set compatible avec OpenSSH : il honore @file{~/.ssh/known_hosts} et @file{~/.ssh/config} et utilise l'agent SSH pour l'authentification." #. type: Plain text -#: guix-git/doc/guix.texi:13971 +#: guix-git/doc/guix.texi:14328 msgid "The key used to sign items that are sent must be accepted by the remote machine. Likewise, the key used by the remote machine to sign items you are retrieving must be in @file{/etc/guix/acl} so it is accepted by your own daemon. @xref{Invoking guix archive}, for more information about store item authentication." msgstr "La clef utilisée pour signer les éléments qui sont envoyés doit être acceptée par la machine distante. De même, la clef utilisée pour la machine distante depuis laquelle vous récupérez des éléments doit être dans @file{/etc/guix/acl} pour qu'ils soient acceptés par votre propre démon. @xref{Invoking guix archive}, pour plus d'informations sur l'authentification des éléments du dépôt." #. type: example -#: guix-git/doc/guix.texi:13976 +#: guix-git/doc/guix.texi:14333 #, no-wrap msgid "guix copy [--to=@var{spec}|--from=@var{spec}] @var{items}@dots{}\n" msgstr "guix copy [--to=@var{spec}|--from=@var{spec}] @var{items}@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:13979 +#: guix-git/doc/guix.texi:14336 msgid "You must always specify one of the following options:" msgstr "Vous devez toujours spécifier l'une des options suivantes :" #. type: item -#: guix-git/doc/guix.texi:13981 +#: guix-git/doc/guix.texi:14338 #, no-wrap msgid "--to=@var{spec}" msgstr "--to=@var{spec}" #. type: itemx -#: guix-git/doc/guix.texi:13982 +#: guix-git/doc/guix.texi:14339 #, no-wrap msgid "--from=@var{spec}" msgstr "--from=@var{spec}" #. type: table -#: guix-git/doc/guix.texi:13986 +#: guix-git/doc/guix.texi:14343 msgid "Specify the host to send to or receive from. @var{spec} must be an SSH spec such as @code{example.org}, @code{charlie@@example.org}, or @code{charlie@@example.org:2222}." msgstr "Spécifie l'hôte où envoyer ou d'où recevoir les éléments. @var{spec} doit être une spécification SSH comme @code{example.org}, @code{charlie@@example.org} ou @code{charlie@@example.org:2222}." #. type: Plain text -#: guix-git/doc/guix.texi:13990 +#: guix-git/doc/guix.texi:14347 msgid "The @var{items} can be either package names, such as @code{gimp}, or store items, such as @file{/gnu/store/@dots{}-idutils-4.6}." msgstr "L'option @var{items} peut être des noms de paquets, comme @code{gimp} ou des éléments du dépôt comme @file{/gnu/store/@dots{}-idutils-4.6}." #. type: Plain text -#: guix-git/doc/guix.texi:13994 +#: guix-git/doc/guix.texi:14351 msgid "When specifying the name of a package to send, it is first built if needed, unless @option{--dry-run} was specified. Common build options are supported (@pxref{Common Build Options})." msgstr "Lorsque vous spécifiez le nom d'un paquet à envoyer, il est d'abord construit au besoin, sauf si l'option @option{--dry-run} est spécifiée. Les options de construction communes sont supportées (@pxref{Common Build Options})." #. type: section -#: guix-git/doc/guix.texi:13997 +#: guix-git/doc/guix.texi:14354 #, no-wrap msgid "Invoking @command{guix container}" msgstr "Invoquer @command{guix container}" #. type: command{#1} -#: guix-git/doc/guix.texi:13999 +#: guix-git/doc/guix.texi:14356 #, no-wrap msgid "guix container" msgstr "guix container" #. type: quotation -#: guix-git/doc/guix.texi:14003 +#: guix-git/doc/guix.texi:14360 msgid "As of version @value{VERSION}, this tool is experimental. The interface is subject to radical change in the future." msgstr "À la version @value{VERSION}, cet outil est toujours expérimental. L'interface est sujette à changement radicaux dans le futur." #. type: Plain text -#: guix-git/doc/guix.texi:14010 +#: guix-git/doc/guix.texi:14367 msgid "The purpose of @command{guix container} is to manipulate processes running within an isolated environment, commonly known as a ``container'', typically created by the @command{guix shell} (@pxref{Invoking guix shell}) and @command{guix system container} (@pxref{Invoking guix system}) commands." msgstr "Le but de @command{guix container} est de manipuler des processus qui tournent dans un environnement séparé, connus sous le nom de « conteneur », typiquement créés par les commandes @command{guix shell} (@pxref{Invoking guix shell}) et @command{guix system container} (@pxref{Invoking guix system})." #. type: example -#: guix-git/doc/guix.texi:14015 +#: guix-git/doc/guix.texi:14372 #, no-wrap msgid "guix container @var{action} @var{options}@dots{}\n" msgstr "guix container @var{action} @var{options}@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:14019 +#: guix-git/doc/guix.texi:14376 msgid "@var{action} specifies the operation to perform with a container, and @var{options} specifies the context-specific arguments for the action." msgstr "@var{action} spécifie les opérations à effectuer avec un conteneur, et @var{options} spécifie les arguments spécifiques au contexte pour l'action." #. type: Plain text -#: guix-git/doc/guix.texi:14021 +#: guix-git/doc/guix.texi:14378 msgid "The following actions are available:" msgstr "Les actions suivantes sont disponibles :" #. type: item -#: guix-git/doc/guix.texi:14023 +#: guix-git/doc/guix.texi:14380 #, no-wrap msgid "exec" msgstr "exec" #. type: table -#: guix-git/doc/guix.texi:14025 +#: guix-git/doc/guix.texi:14382 msgid "Execute a command within the context of a running container." msgstr "Exécute une commande dans le contexte d'un conteneur lancé." #. type: table -#: guix-git/doc/guix.texi:14027 +#: guix-git/doc/guix.texi:14384 msgid "The syntax is:" msgstr "La syntaxe est :" #. type: example -#: guix-git/doc/guix.texi:14030 +#: guix-git/doc/guix.texi:14387 #, no-wrap msgid "guix container exec @var{pid} @var{program} @var{arguments}@dots{}\n" msgstr "guix container exec @var{pid} @var{programme} @var{arguments}@dots{}\n" #. type: table -#: guix-git/doc/guix.texi:14036 +#: guix-git/doc/guix.texi:14393 msgid "@var{pid} specifies the process ID of the running container. @var{program} specifies an executable file name within the root file system of the container. @var{arguments} are the additional options that will be passed to @var{program}." msgstr "@var{pid} spécifie le PID du conteneur lancé. @var{programme} spécifie le nom du fichier exécutable dans le système de fichiers racine du conteneur. @var{arguments} sont les options supplémentaires à passer à @var{programme}." #. type: table -#: guix-git/doc/guix.texi:14040 +#: guix-git/doc/guix.texi:14397 msgid "The following command launches an interactive login shell inside a Guix system container, started by @command{guix system container}, and whose process ID is 9001:" msgstr "La commande suivante lance un shell de connexion interactif dans un conteneur Guix System, démarré par @command{guix system container} et dont le PID est 9001 :" #. type: example -#: guix-git/doc/guix.texi:14043 +#: guix-git/doc/guix.texi:14400 #, no-wrap msgid "guix container exec 9001 /run/current-system/profile/bin/bash --login\n" msgstr "guix container exec 9001 /run/current-system/profile/bin/bash --login\n" #. type: table -#: guix-git/doc/guix.texi:14047 +#: guix-git/doc/guix.texi:14404 msgid "Note that the @var{pid} cannot be the parent process of a container. It must be PID 1 of the container or one of its child processes." msgstr "Remarquez que @var{pid} ne peut pas être le processus parent d'un conteneur. Ce doit être le PID 1 du conteneur ou l'un de ses processus fils." #. type: section -#: guix-git/doc/guix.texi:14051 +#: guix-git/doc/guix.texi:14408 #, no-wrap msgid "Invoking @command{guix weather}" msgstr "Invoquer @command{guix weather}" #. type: Plain text -#: guix-git/doc/guix.texi:14060 +#: guix-git/doc/guix.texi:14417 msgid "Occasionally you're grumpy because substitutes are lacking and you end up building packages by yourself (@pxref{Substitutes}). The @command{guix weather} command reports on substitute availability on the specified servers so you can have an idea of whether you'll be grumpy today. It can sometimes be useful info as a user, but it is primarily useful to people running @command{guix publish} (@pxref{Invoking guix publish})." msgstr "Vous pouvez parfois grogner lorsque les substituts ne sont pas disponibles et que vous devez construire les paquets vous-même (@pxref{Substituts}). La commande @command{guix weather} rapporte la disponibilité des substituts sur les serveurs spécifiés pour que vous sachiez si vous allez raller aujourd'hui. Cela peut parfois être une information utile pour les utilisateurs, mais elle est surtout utile pour les personnes qui font tourner @command{guix publish} (@pxref{Invoking guix publish})." #. type: cindex -#: guix-git/doc/guix.texi:14061 +#: guix-git/doc/guix.texi:14418 #, no-wrap msgid "statistics, for substitutes" msgstr "statistiques sur les substituts" #. type: cindex -#: guix-git/doc/guix.texi:14062 +#: guix-git/doc/guix.texi:14419 #, no-wrap msgid "availability of substitutes" msgstr "disponibilité des substituts" #. type: cindex -#: guix-git/doc/guix.texi:14063 +#: guix-git/doc/guix.texi:14420 #, no-wrap msgid "substitute availability" msgstr "substituts, disponibilité" #. type: cindex -#: guix-git/doc/guix.texi:14064 +#: guix-git/doc/guix.texi:14421 #, no-wrap msgid "weather, substitute availability" msgstr "weather, disponibilité des substituts" #. type: Plain text -#: guix-git/doc/guix.texi:14066 +#: guix-git/doc/guix.texi:14423 msgid "Here's a sample run:" msgstr "Voici un exemple :" #. type: example -#: guix-git/doc/guix.texi:14078 +#: guix-git/doc/guix.texi:14435 #, no-wrap msgid "" "$ guix weather --substitute-urls=https://guix.example.org\n" @@ -26037,7 +26694,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:14088 +#: guix-git/doc/guix.texi:14445 #, no-wrap msgid "" " 9.8% (342 out of 3,470) of the missing items are queued\n" @@ -26061,76 +26718,71 @@ msgstr "" " aarch64-linux : 6.41 constructions par heure\n" #. type: cindex -#: guix-git/doc/guix.texi:14090 +#: guix-git/doc/guix.texi:14447 #, no-wrap msgid "continuous integration, statistics" msgstr "intégration continue, statistiques" #. type: Plain text -#: guix-git/doc/guix.texi:14101 +#: guix-git/doc/guix.texi:14458 msgid "As you can see, it reports the fraction of all the packages for which substitutes are available on the server---regardless of whether substitutes are enabled, and regardless of whether this server's signing key is authorized. It also reports the size of the compressed archives (``nars'') provided by the server, the size the corresponding store items occupy in the store (assuming deduplication is turned off), and the server's throughput. The second part gives continuous integration (CI) statistics, if the server supports it. In addition, using the @option{--coverage} option, @command{guix weather} can list ``important'' package substitutes missing on the server (see below)." msgstr "Comme vous pouvez le voir, elle rapporte le pourcentage des paquets pour lesquels des substituts sont disponibles sur le serveur — indépendamment du fait que les substituts soient activés, et indépendamment du fait que la clef de signature du serveur soit autorisée. Elle rapporte aussi la taille des archives compressées (« nars ») fournies par le serveur, la taille des éléments du dépôt correspondant dans le dépôt (en supposant que la déduplication soit désactivée) et la vitesse du serveur. La deuxième partie donne des statistiques sur l'intégration continue (CI), si le serveur le supporte. En plus, avec l'option @option{--coverage}, @command{guix weather} peut lister les substituts de paquets « importants » qui font défaut sur le serveur (voir plus bas)." #. type: Plain text -#: guix-git/doc/guix.texi:14107 +#: guix-git/doc/guix.texi:14464 msgid "To achieve that, @command{guix weather} queries over HTTP(S) meta-data (@dfn{narinfos}) for all the relevant store items. Like @command{guix challenge}, it ignores signatures on those substitutes, which is innocuous since the command only gathers statistics and cannot install those substitutes." msgstr "Pour cela, @command{guix weather} récupère par HTTP(S) les métadonnées (@dfn{narinfos}@ de tous les éléments du dépôts pertinents. Comme @command{guix challenge}, il ignore les signatures de ces substituts, ce qui n'est pas dangereux puisque la commande ne fait que récupérer des statistiques et n'installe pas ces substituts." #. type: example -#: guix-git/doc/guix.texi:14112 +#: guix-git/doc/guix.texi:14469 #, no-wrap msgid "guix weather @var{options}@dots{} [@var{packages}@dots{}]\n" msgstr "guix weather @var{options}@dots{} [@var{paquets}@dots{}]\n" #. type: Plain text -#: guix-git/doc/guix.texi:14120 +#: guix-git/doc/guix.texi:14477 msgid "When @var{packages} is omitted, @command{guix weather} checks the availability of substitutes for @emph{all} the packages, or for those specified with @option{--manifest}; otherwise it only considers the specified packages. It is also possible to query specific system types with @option{--system}. @command{guix weather} exits with a non-zero code when the fraction of available substitutes is below 100%." msgstr "Lorsque @var{packages} est omis, @command{guix weather} vérifie la disponibilité de substituts pour @emph{all} les paquets, ou pour ceux spécifiés avec @option{--manifest} ; sinon, il ne prend en compte que les paquets spécifiés. Il est également possible d'interroger des types de systèmes spécifiques avec @option{--system}. @command{guix weather} sort avec un code non nul lorsque la fraction des substituts disponibles est inférieure à 100%." -#. type: Plain text -#: guix-git/doc/guix.texi:14122 -msgid "The available options are listed below." -msgstr "Les options disponibles sont listées ci-dessous." - #. type: table -#: guix-git/doc/guix.texi:14128 +#: guix-git/doc/guix.texi:14485 msgid "@var{urls} is the space-separated list of substitute server URLs to query. When this option is omitted, the default set of substitute servers is queried." msgstr "@var{urls} est la liste des URL des serveurs de substituts séparés par des espaces. Lorsque cette option n'est pas renseignée, l'ensemble des serveurs de substituts par défaut est utilisé." #. type: table -#: guix-git/doc/guix.texi:14134 +#: guix-git/doc/guix.texi:14491 msgid "Query substitutes for @var{system}---e.g., @code{aarch64-linux}. This option can be repeated, in which case @command{guix weather} will query substitutes for several system types." msgstr "Effectue des requêtes pour les substituts @var{système} — p.@: ex.@: @code{aarch64-linux}. Cette option peut être répétée, auquel cas @command{guix weather} demandera les substituts de plusieurs types de systèmes." #. type: table -#: guix-git/doc/guix.texi:14140 +#: guix-git/doc/guix.texi:14497 msgid "Instead of querying substitutes for all the packages, only ask for those specified in @var{file}. @var{file} must contain a @dfn{manifest}, as with the @code{-m} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "Plutôt que de demander des substituts pour tous les paquets, demande uniquement les paquets spécifiés dans @var{fichier}. @var{fichier} doit contenir un @dfn{manifeste} comme avec l'option @code{-m} de @command{guix package} (@pxref{Invoking guix package})." #. type: table -#: guix-git/doc/guix.texi:14143 +#: guix-git/doc/guix.texi:14500 msgid "This option can be repeated several times, in which case the manifests are concatenated." msgstr "Cette option peut être répétée plusieurs fois, auquel cas les manifestes sont concaténés." #. type: item -#: guix-git/doc/guix.texi:14144 +#: guix-git/doc/guix.texi:14501 #, no-wrap msgid "--coverage[=@var{count}]" msgstr "--coverage[=@var{count}]" #. type: itemx -#: guix-git/doc/guix.texi:14145 +#: guix-git/doc/guix.texi:14502 #, no-wrap msgid "-c [@var{count}]" msgstr "-c [@var{count}]" #. type: table -#: guix-git/doc/guix.texi:14151 +#: guix-git/doc/guix.texi:14508 msgid "Report on substitute coverage for packages: list packages with at least @var{count} dependents (zero by default) for which substitutes are unavailable. Dependent packages themselves are not listed: if @var{b} depends on @var{a} and @var{a} has no substitutes, only @var{a} is listed, even though @var{b} usually lacks substitutes as well. The result looks like this:" msgstr "Rapporte la couverture des substituts pour les paquets : liste les paquets avec au moins @var{count} autres paquets qui en dépendent (zéro par défaut) pour lesquels il n'y a pas de substitut. Les paquets qui en dépendent ne sont pas listés : si @var{b} dépend de @var{a} et que @var{a} n'a pas de substitut, seul @var{a} est listé, même si @var{b} n'a habituellement pas de substitut non plus. Le résultat ressemble à cela :" #. type: example -#: guix-git/doc/guix.texi:14165 +#: guix-git/doc/guix.texi:14522 #, no-wrap msgid "" "$ guix weather --substitute-urls=@value{SUBSTITUTE-URLS} -c 10\n" @@ -26160,39 +26812,39 @@ msgstr "" " @dots{}\n" #. type: table -#: guix-git/doc/guix.texi:14171 +#: guix-git/doc/guix.texi:14528 msgid "What this example shows is that @code{kcoreaddons} and presumably the 58 packages that depend on it have no substitutes at @code{@value{SUBSTITUTE-SERVER-1}}; likewise for @code{qgpgme} and the 46 packages that depend on it." msgstr "Ce que montre cet exemple est que @code{kcoreaddons} et probablement les 58 paquets qui en dépendent n'ont pas de substituts sur @code{@value{SUBSTITUTE-SERVER-1}} ; de même pour @code{qgpgme} et les 46 paquets qui en dépendent." #. type: table -#: guix-git/doc/guix.texi:14175 +#: guix-git/doc/guix.texi:14532 msgid "If you are a Guix developer, or if you are taking care of this build farm, you'll probably want to have a closer look at these packages: they may simply fail to build." msgstr "Si vous êtes un développeur de Guix, ou si vous prenez soin de cette ferme de construction, vous voudrez sans doute inspecter plus finement ces paquets : ils peuvent simplement avoir échoué à la construction." #. type: item -#: guix-git/doc/guix.texi:14176 +#: guix-git/doc/guix.texi:14533 #, no-wrap msgid "--display-missing" msgstr "--display-missing" #. type: table -#: guix-git/doc/guix.texi:14178 +#: guix-git/doc/guix.texi:14535 msgid "Display the list of store items for which substitutes are missing." msgstr "Afficher la liste des articles du magasin pour lesquels il manque des substituts." #. type: section -#: guix-git/doc/guix.texi:14181 +#: guix-git/doc/guix.texi:14538 #, no-wrap msgid "Invoking @command{guix processes}" msgstr "Invoquer @command{guix processes}" #. type: Plain text -#: guix-git/doc/guix.texi:14189 +#: guix-git/doc/guix.texi:14546 msgid "The @command{guix processes} command can be useful to developers and system administrators, especially on multi-user machines and on build farms: it lists the current sessions (connections to the daemon), as well as information about the processes involved@footnote{Remote sessions, when @command{guix-daemon} is started with @option{--listen} specifying a TCP endpoint, are @emph{not} listed.}. Here's an example of the information it returns:" msgstr "La commande @command{guix processes} peut être utile pour les développeur·euses ou les personnes qui administrent des systèmes, surtout sur des machines multi-utilisateur·rice et sur les fermes de construction : elle liste les sessions actuelles (les connexions au démon), ainsi que des informations sur les processus en question@footnote{Les sessions distantes, lorsque @command{guix-daemon} est démarré avec @option{--listen} en spécifiant un point d'entrée TCP, ne sont @emph{pas} listées.}. Voici un exemple des informations qu'elle renvoie :" #. type: example -#: guix-git/doc/guix.texi:14195 +#: guix-git/doc/guix.texi:14552 #, no-wrap msgid "" "$ sudo guix processes\n" @@ -26208,7 +26860,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:14199 +#: guix-git/doc/guix.texi:14556 #, no-wrap msgid "" "SessionPID: 19402\n" @@ -26222,7 +26874,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:14212 +#: guix-git/doc/guix.texi:14569 #, no-wrap msgid "" "SessionPID: 19444\n" @@ -26252,22 +26904,22 @@ msgstr "" "ChildCommand: guix offload x86_64-linux 7200 1 28800\n" #. type: Plain text -#: guix-git/doc/guix.texi:14219 +#: guix-git/doc/guix.texi:14576 msgid "In this example we see that @command{guix-daemon} has three clients: @command{guix environment}, @command{guix publish}, and the Cuirass continuous integration tool; their process identifier (PID) is given by the @code{ClientPID} field. The @code{SessionPID} field gives the PID of the @command{guix-daemon} sub-process of this particular session." msgstr "Dans cet exemple, on voit que @command{guix-daemon} a trois clients directs : @command{guix environment}, @command{guix publish} et l'outil d'intégration continue Cuirass ; leur identifiant de processus (PID) est donné par le champ @code{ClientPID}. Le champ @code{SessionPID} fournit le PID du sous-processus @command{guix-daemon} de cette session particulière." #. type: Plain text -#: guix-git/doc/guix.texi:14226 +#: guix-git/doc/guix.texi:14583 msgid "The @code{LockHeld} fields show which store items are currently locked by this session, which corresponds to store items being built or substituted (the @code{LockHeld} field is not displayed when @command{guix processes} is not running as root). Last, by looking at the @code{ChildPID} and @code{ChildCommand} fields, we understand that these three builds are being offloaded (@pxref{Daemon Offload Setup})." msgstr "Le champs @code{LockHeld} montre quels éléments du dépôt sont actuellement verrouillés par cette session, ce qui correspond aux éléments du dépôt qui sont en train d'être construits ou d'être substitués (le champ @code{LockHeld} n'est pas montré si @command{guix processes} n'est pas lancé en root). Enfin, en regardant les champs @code{ChildPID} et @code{ChildCommand}, on comprend que ces trois constructions sont déchargées (@pxref{Daemon Offload Setup})." #. type: Plain text -#: guix-git/doc/guix.texi:14231 +#: guix-git/doc/guix.texi:14588 msgid "The output is in Recutils format so we can use the handy @command{recsel} command to select sessions of interest (@pxref{Selection Expressions,,, recutils, GNU recutils manual}). As an example, the command shows the command line and PID of the client that triggered the build of a Perl package:" msgstr "La sortie est dans le format Recutils pour qu'on puisse utiliser la commande @command{recsel} pour sélectionner les sessions qui nous intéressent (@pxref{Selection Expressions,,, recutils, GNU recutils manual}). Par exemple, la commande montre la ligne de commande et le PID du client qui effectue la construction d'un paquet Perl :" #. type: example -#: guix-git/doc/guix.texi:14237 +#: guix-git/doc/guix.texi:14594 #, no-wrap msgid "" "$ sudo guix processes | \\\n" @@ -26281,28 +26933,28 @@ msgstr "" "ClientCommand: cuirass --cache-directory /var/cache/cuirass @dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:14240 +#: guix-git/doc/guix.texi:14597 msgid "Additional options are listed below." msgstr "Des options supplémentaires sont listées ci-dessous." #. type: table -#: guix-git/doc/guix.texi:14250 +#: guix-git/doc/guix.texi:14607 msgid "The default option. It outputs a set of Session recutils records that include each @code{ChildProcess} as a field." msgstr "L'option par défaut. Elle affiche un ensemble d'enregistrement Session recutils qui incluent chacun @code{ChildProcess} comme champ." #. type: item -#: guix-git/doc/guix.texi:14251 +#: guix-git/doc/guix.texi:14608 #, no-wrap msgid "normalized" msgstr "normalized" #. type: table -#: guix-git/doc/guix.texi:14258 +#: guix-git/doc/guix.texi:14615 msgid "Normalize the output records into record sets (@pxref{Record Sets,,, recutils, GNU recutils manual}). Normalizing into record sets allows joins across record types. The example below lists the PID of each @code{ChildProcess} and the associated PID for @code{Session} that spawned the @code{ChildProcess} where the @code{Session} was started using @command{guix build}." msgstr "Normalise les enregistrements de sortie en ensembles d'enregistrement (@pxref{Record Sets,,, recutils, GNU recutils manual}). La normalisation en ensembles d'enregistrement permet de faire des jointures entre plusieurs types d'enregistrement. L'exemple ci-dessous liste le PID de chaque @code{ChildProcess} et le PID associé pour @code{Session} qui lance @code{ChildProcess} où la @code{Session} a été démarrée avec @command{guix build}." #. type: example -#: guix-git/doc/guix.texi:14268 +#: guix-git/doc/guix.texi:14625 #, no-wrap msgid "" "$ guix processes --format=normalized | \\\n" @@ -26326,7 +26978,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:14271 +#: guix-git/doc/guix.texi:14628 #, no-wrap msgid "" "PID: 4554\n" @@ -26338,7 +26990,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:14274 +#: guix-git/doc/guix.texi:14631 #, no-wrap msgid "" "PID: 4646\n" @@ -26348,90 +27000,90 @@ msgstr "" "Session_PID: 4278\n" #. type: cindex -#: guix-git/doc/guix.texi:14281 +#: guix-git/doc/guix.texi:14638 #, no-wrap msgid "system configuration" msgstr "configuration du système" #. type: Plain text -#: guix-git/doc/guix.texi:14287 +#: guix-git/doc/guix.texi:14644 msgid "Guix System supports a consistent whole-system configuration mechanism. By that we mean that all aspects of the global system configuration---such as the available system services, timezone and locale settings, user accounts---are declared in a single place. Such a @dfn{system configuration} can be @dfn{instantiated}---i.e., effected." msgstr "Guix System utilise un mécanisme de configuration du système cohérent. On veut dire par là que tous les aspects de la configuration globale du système — comme la disponibilité des services système, la configuration des fuseaux horaires, des paramètres linguistiques et des comptes utilisateurs — sont déclarés à un seul endroit. Une telle @dfn{configuration système} peut être @dfn{instanciée}, c'est-à-dire entrer en vigueur." #. type: Plain text -#: guix-git/doc/guix.texi:14297 +#: guix-git/doc/guix.texi:14654 msgid "One of the advantages of putting all the system configuration under the control of Guix is that it supports transactional system upgrades, and makes it possible to roll back to a previous system instantiation, should something go wrong with the new one (@pxref{Features}). Another advantage is that it makes it easy to replicate the exact same configuration across different machines, or at different points in time, without having to resort to additional administration tools layered on top of the own tools of the system." msgstr "L'un des avantages de placer toute la configuration du système sous le contrôle de Guix est de permettre les mises à jour transactionnelles du système ce qui rend possible le fait de revenir en arrière à une instanciation précédent du système, si quelque chose se passait mal avec le nouveau (@pxref{Features}). Un autre avantage est de rendre facile la réplication de la même configuration sur plusieurs machines différentes ou à différents moments dans le temps, sans avoir à recourir à des outils d'administrations supplémentaires au-dessus des outils du système." #. type: Plain text -#: guix-git/doc/guix.texi:14302 +#: guix-git/doc/guix.texi:14659 msgid "This section describes this mechanism. First we focus on the system administrator's viewpoint---explaining how the system is configured and instantiated. Then we show how this mechanism can be extended, for instance to support new system services." msgstr "Cette section décrit ce mécanisme. Tout d'abord nous nous concentrons sur le point de vue de l'administrateur système en expliquant comment le système est configuré et instancié. Ensuite nous montrons comment ce mécanisme peut être étendu, par exemple pour supporter de nouveaux services systèmes." #. type: Plain text -#: guix-git/doc/guix.texi:14332 +#: guix-git/doc/guix.texi:14689 msgid "The operating system is configured by providing an @code{operating-system} declaration in a file that can then be passed to the @command{guix system} command (@pxref{Invoking guix system}). A simple setup, with the default system services, the default Linux-Libre kernel, initial RAM disk, and boot loader looks like this:" msgstr "Le système d'exploitation est configuré en fournissant une déclaration @code{operating-system} dans un fichier qui peut être passé à la commande @command{guix system} (@pxref{Invoking guix system}). Une configuration simple, avec les services systèmes par défaut, le noyau Linux-Libre par défaut, un disque de RAM initial et un chargeur d'amorçage ressemble à ceci :" #. type: code{#1} -#: guix-git/doc/guix.texi:14333 guix-git/doc/guix.texi:35553 +#: guix-git/doc/guix.texi:14690 guix-git/doc/guix.texi:36033 #, no-wrap msgid "operating-system" msgstr "operating-system" #. type: include -#: guix-git/doc/guix.texi:14335 +#: guix-git/doc/guix.texi:14692 #, no-wrap msgid "os-config-bare-bones.texi" msgstr "os-config-bare-bones.texi" #. type: Plain text -#: guix-git/doc/guix.texi:14342 +#: guix-git/doc/guix.texi:14699 msgid "This example should be self-describing. Some of the fields defined above, such as @code{host-name} and @code{bootloader}, are mandatory. Others, such as @code{packages} and @code{services}, can be omitted, in which case they get a default value." msgstr "Cet exemple devrait se comprendre de lui-même. Certains champs définis ci-dessus, comme @code{host-name} et @code{bootloader} sont obligatoires. D'autres comme @code{packages} et @code{services} peuvent être omis auquel cas ils ont une valeur par défaut." #. type: Plain text -#: guix-git/doc/guix.texi:14347 +#: guix-git/doc/guix.texi:14704 msgid "Below we discuss the effect of some of the most important fields (@pxref{operating-system Reference}, for details about all the available fields), and how to @dfn{instantiate} the operating system using @command{guix system}." msgstr "Ci-dessous nous discutons des effets de certains des champs les plus importants (@pxref{operating-system Reference}, pour des détails sur tous les champs disponibles) et comment @dfn{instancier} le système d'exploitation avec @command{guix system}." #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14348 +#: guix-git/doc/guix.texi:14705 #, no-wrap msgid "Bootloader" msgstr "Bootloader" #. type: cindex -#: guix-git/doc/guix.texi:14350 +#: guix-git/doc/guix.texi:14707 #, no-wrap msgid "legacy boot, on Intel machines" msgstr "ancien système de démarrage, sur les machines Intel" #. type: cindex -#: guix-git/doc/guix.texi:14351 +#: guix-git/doc/guix.texi:14708 #, no-wrap msgid "BIOS boot, on Intel machines" msgstr "Démarrage BIOS, sur les machines Intel" #. type: cindex -#: guix-git/doc/guix.texi:14352 +#: guix-git/doc/guix.texi:14709 #, no-wrap msgid "UEFI boot" msgstr "Démarrage UEFI" #. type: cindex -#: guix-git/doc/guix.texi:14353 +#: guix-git/doc/guix.texi:14710 #, no-wrap msgid "EFI boot" msgstr "Démarrage EFI" #. type: Plain text -#: guix-git/doc/guix.texi:14359 +#: guix-git/doc/guix.texi:14716 msgid "The @code{bootloader} field describes the method that will be used to boot your system. Machines based on Intel processors can boot in ``legacy'' BIOS mode, as in the example above. However, more recent machines rely instead on the @dfn{Unified Extensible Firmware Interface} (UEFI) to boot. In that case, the @code{bootloader} field should contain something along these lines:" msgstr "Le champ @code{bootloader} décrit la méthode qui sera utilisée pour démarrer votre système. Les machines basées sur les processeurs Intel peuvent démarrer dans l'ancien mode BIOS, comme dans l'exemple au-dessus. Cependant, les machines plus récentes s'appuient sur l'UEFI (@dfn{Unified Extensible Firmware Interface}) pour démarrer. Dans ce cas, le champ @code{bootloader} devrait contenir quelque chose comme cela :" #. type: lisp -#: guix-git/doc/guix.texi:14364 +#: guix-git/doc/guix.texi:14721 #, no-wrap msgid "" "(bootloader-configuration\n" @@ -26443,29 +27095,29 @@ msgstr "" " (targets '(\"/boot/efi\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:14368 +#: guix-git/doc/guix.texi:14725 msgid "@xref{Bootloader Configuration}, for more information on the available configuration options." msgstr "@xref{Bootloader Configuration}, pour plus d'informations sur les options de configuration disponibles." #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14369 +#: guix-git/doc/guix.texi:14726 #, no-wrap msgid "Globally-Visible Packages" msgstr "Paquets visibles sur tout le système" #. type: vindex -#: guix-git/doc/guix.texi:14371 +#: guix-git/doc/guix.texi:14728 #, no-wrap msgid "%base-packages" msgstr "%base-packages" #. type: Plain text -#: guix-git/doc/guix.texi:14384 +#: guix-git/doc/guix.texi:14741 msgid "The @code{packages} field lists packages that will be globally visible on the system, for all user accounts---i.e., in every user's @env{PATH} environment variable---in addition to the per-user profiles (@pxref{Invoking guix package}). The @code{%base-packages} variable provides all the tools one would expect for basic user and administrator tasks---including the GNU Core Utilities, the GNU Networking Utilities, the @command{mg} lightweight text editor, @command{find}, @command{grep}, etc. The example above adds GNU@tie{}Screen to those, taken from the @code{(gnu packages screen)} module (@pxref{Package Modules}). The @code{(list package output)} syntax can be used to add a specific output of a package:" msgstr "Le champ @code{packages} liste les paquets qui seront visibles sur tout le système, pour tous les comptes utilisateur·rice·s — c.-à-d.@: dans la variable d'environnement @env{PATH} de tous les utilisateur·rice·s — en plus des profils utilisateur·rice·s (@pxref{Invoquer guix package}). La variable @var{%base-packages} fournit tous les outils qu'on pourrait attendre pour les tâches de base de l'administrateur·rice et de l'utilisateur·rice — dont les GNU Core Utilities, les GNU Networking Utilities, l'éditeur de texte léger @command{mg}, @command{find}, @command{grep}, etc. L'exemple ci-dessus ajoute GNU@tie{}Screen à ces paquets, récupéré depuis le module @code{(gnu packages screen)} (@pxref{Package Modules}). Vous pouvez utiliser la syntaxe @code{(list package output)} pour ajouter une sortie spécifique d'un paquet :" #. type: lisp -#: guix-git/doc/guix.texi:14388 +#: guix-git/doc/guix.texi:14745 #, no-wrap msgid "" "(use-modules (gnu packages))\n" @@ -26477,7 +27129,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:14393 +#: guix-git/doc/guix.texi:14750 #, no-wrap msgid "" "(operating-system\n" @@ -26491,18 +27143,18 @@ msgstr "" " %base-packages)))\n" #. type: findex -#: guix-git/doc/guix.texi:14395 +#: guix-git/doc/guix.texi:14752 #, no-wrap msgid "specification->package" msgstr "specification->package" #. type: Plain text -#: guix-git/doc/guix.texi:14404 +#: guix-git/doc/guix.texi:14761 msgid "Referring to packages by variable name, like @code{isc-bind} above, has the advantage of being unambiguous; it also allows typos and such to be diagnosed right away as ``unbound variables''. The downside is that one needs to know which module defines which package, and to augment the @code{use-package-modules} line accordingly. To avoid that, one can use the @code{specification->package} procedure of the @code{(gnu packages)} module, which returns the best package for a given name or name and version:" msgstr "Se référer aux paquets par le nom de leur variable, comme @code{isc-bind} ci-dessus, a l'avantage d'être sans ambigüité ; cela permet aussi de se rendre rapidement compte de coquilles quand on a des « variables non liées ». L'inconvénient est qu'on a besoin de savoir dans quel module est défini le paquet, et de modifier la ligne @code{use-package-modules} en conséquence. Pour éviter cela, on peut utiliser la procédure @code{specification->package} du module @code{(gnu packages)}, qui renvoie le meilleur paquet pour un nom donné ou un nom et une version :" #. type: lisp -#: guix-git/doc/guix.texi:14407 +#: guix-git/doc/guix.texi:14764 #, no-wrap msgid "" "(use-modules (gnu packages))\n" @@ -26512,7 +27164,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:14413 +#: guix-git/doc/guix.texi:14770 #, no-wrap msgid "" "(operating-system\n" @@ -26528,59 +27180,76 @@ msgstr "" " %base-packages)))\n" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14415 +#: guix-git/doc/guix.texi:14772 #, no-wrap msgid "System Services" msgstr "Services systèmes" #. type: cindex -#: guix-git/doc/guix.texi:14417 guix-git/doc/guix.texi:34307 -#: guix-git/doc/guix.texi:35783 +#: guix-git/doc/guix.texi:14774 guix-git/doc/guix.texi:34746 +#: guix-git/doc/guix.texi:36273 #, no-wrap msgid "services" msgstr "services" #. type: vindex -#: guix-git/doc/guix.texi:14418 +#: guix-git/doc/guix.texi:14775 #, no-wrap msgid "%base-services" msgstr "%base-services" #. type: Plain text -#: guix-git/doc/guix.texi:14428 +#: guix-git/doc/guix.texi:14785 msgid "The @code{services} field lists @dfn{system services} to be made available when the system starts (@pxref{Services}). The @code{operating-system} declaration above specifies that, in addition to the basic services, we want the OpenSSH secure shell daemon listening on port 2222 (@pxref{Networking Services, @code{openssh-service-type}}). Under the hood, @code{openssh-service-type} arranges so that @command{sshd} is started with the right command-line options, possibly with supporting configuration files generated as needed (@pxref{Defining Services})." msgstr "Le champ @code{services} liste les @dfn{services système} à rendre disponible lorsque le système démarre (@pxref{Services}). La déclaration @code{operating-system} au-dessus spécifie que, en plus des services de base, on veut que le démon ssh OpenSSH écoute sur le port 2222 (@pxref{Networking Services, @code{openssh-service-type}}). Sous le capot, @code{openssh-service-type} s'arrange pour que @code{sshd} soit lancé avec les bonnes options de la ligne de commande, éventuellement en générant des fichiers de configuration (@pxref{Defining Services})." #. type: cindex -#: guix-git/doc/guix.texi:14429 +#: guix-git/doc/guix.texi:14786 #, no-wrap msgid "customization, of services" msgstr "personnalisation des services" #. type: findex -#: guix-git/doc/guix.texi:14430 +#: guix-git/doc/guix.texi:14787 #, no-wrap msgid "modify-services" msgstr "modify-services" #. type: Plain text -#: guix-git/doc/guix.texi:14434 +#: guix-git/doc/guix.texi:14791 msgid "Occasionally, instead of using the base services as is, you will want to customize them. To do this, use @code{modify-services} (@pxref{Service Reference, @code{modify-services}}) to modify the list." msgstr "Parfois, plutôt que d'utiliser les services de base tels-quels, on peut vouloir les personnaliser. Pour cela, utilisez @code{modify-services} (@pxref{Service Reference, @code{modify-services}}) pour modifier la liste." #. type: anchor{#1} -#: guix-git/doc/guix.texi:14440 +#: guix-git/doc/guix.texi:14797 msgid "auto-login to TTY" msgstr "connexion automatique à un TTY" #. type: Plain text -#: guix-git/doc/guix.texi:14440 +#: guix-git/doc/guix.texi:14797 msgid "For example, suppose you want to modify @code{guix-daemon} and Mingetty (the console log-in) in the @code{%base-services} list (@pxref{Base Services, @code{%base-services}}). To do that, you can write the following in your operating system declaration:" msgstr "Par exemple, supposons que vous souhaitiez modifier @code{guix-daemon} et Mingetty (l'écran de connexion en console) dans la liste @code{%base-services} (@pxref{Base Services, @code{%base-services}}). Pour cela, vous pouvez écrire ce qui suit dans votre déclaration de système d'exploitation :" #. type: lisp -#: guix-git/doc/guix.texi:14457 -#, no-wrap +#: guix-git/doc/guix.texi:14814 +#, fuzzy, no-wrap +#| msgid "" +#| "(define %my-services\n" +#| " ;; My very own list of services.\n" +#| " (modify-services %base-services\n" +#| " (guix-service-type config =>\n" +#| " (guix-configuration\n" +#| " (inherit config)\n" +#| " ;; Fetch substitutes from example.org.\n" +#| " (substitute-urls\n" +#| " (list \"https://example.org/guix\"\n" +#| " \"https://ci.guix.gnu.org\"))))\n" +#| " (mingetty-service-type config =>\n" +#| " (mingetty-configuration\n" +#| " (inherit config)\n" +#| " ;; Automatially log in as \"guest\".\n" +#| " (auto-login \"guest\")))))\n" +#| "\n" msgid "" "(define %my-services\n" " ;; My very own list of services.\n" @@ -26595,7 +27264,7 @@ msgid "" " (mingetty-service-type config =>\n" " (mingetty-configuration\n" " (inherit config)\n" -" ;; Automatially log in as \"guest\".\n" +" ;; Automatically log in as \"guest\".\n" " (auto-login \"guest\")))))\n" "\n" msgstr "" @@ -26617,7 +27286,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:14461 +#: guix-git/doc/guix.texi:14818 #, no-wrap msgid "" "(operating-system\n" @@ -26629,49 +27298,49 @@ msgstr "" " (services %my-services))\n" #. type: Plain text -#: guix-git/doc/guix.texi:14474 +#: guix-git/doc/guix.texi:14831 msgid "This changes the configuration---i.e., the service parameters---of the @code{guix-service-type} instance, and that of all the @code{mingetty-service-type} instances in the @code{%base-services} list (@pxref{Auto-Login to a Specific TTY, see the cookbook for how to auto-login one user to a specific TTY,, guix-cookbook, GNU Guix Cookbook})). Observe how this is accomplished: first, we arrange for the original configuration to be bound to the identifier @code{config} in the @var{body}, and then we write the @var{body} so that it evaluates to the desired configuration. In particular, notice how we use @code{inherit} to create a new configuration which has the same values as the old configuration, but with a few modifications." msgstr "Cela modifie la configuration — c.-à-d.@: les paramètres du service — de l'instance de @code{guix-service-type}, et de toutes les instances de @code{mingetty-service-type} dans la liste @code{%base-services} (@pxref{Connexion automatique à un TTY donné, voir le livre de recettes pour apprendre à connecter quelqu'un automatiquement sur un TTY donné,, guix-cookbook.fr, GNU Guix Cookbook})). Remarquez comment on fait cela : d'abord, on s'arrange pour que la configuration de départ soit liée à l'identifiant @code{config} dans @var{body} puis on écrit @var{body} pour qu'il s'évalue en la configuration désirée. En particulier, remarquez comment on utilise @code{inherit} pour créer une nouvelle configuration qui a les même valeurs que l'ancienne configuration, avec seulement quelques modifications." #. type: Plain text -#: guix-git/doc/guix.texi:14481 +#: guix-git/doc/guix.texi:14838 msgid "The configuration for a typical ``desktop'' usage, with an encrypted root partition, a swap file on the root partition, the X11 display server, GNOME and Xfce (users can choose which of these desktop environments to use at the log-in screen by pressing @kbd{F1}), network management, power management, and more, would look like this:" msgstr "La configuration pour une utilisation de « bureau » typique, avec une partition racine chiffrée, a fichier d'échange sur la partition racine, le serveur d'affichage X11, GNOME et Xfce (les utilisateurs peuvent choisir l'environnement de bureau sur l'écran de connexion en appuyant sur @kbd{F1}), la gestion du réseau, la gestion de l'énergie, et bien plus, ressemblerait à ceci :" #. type: include -#: guix-git/doc/guix.texi:14483 +#: guix-git/doc/guix.texi:14840 #, no-wrap msgid "os-config-desktop.texi" msgstr "os-config-desktop.texi" #. type: Plain text -#: guix-git/doc/guix.texi:14488 +#: guix-git/doc/guix.texi:14845 msgid "A graphical system with a choice of lightweight window managers instead of full-blown desktop environments would look like this:" msgstr "Un système graphique avec un choix de gestionnaires de fenêtres légers plutôt que des environnement de bureaux complets ressemblerait à cela :" #. type: include -#: guix-git/doc/guix.texi:14490 +#: guix-git/doc/guix.texi:14847 #, no-wrap msgid "os-config-lightweight-desktop.texi" msgstr "os-config-lightweight-desktop.texi" #. type: Plain text -#: guix-git/doc/guix.texi:14496 +#: guix-git/doc/guix.texi:14853 msgid "This example refers to the @file{/boot/efi} file system by its UUID, @code{1234-ABCD}. Replace this UUID with the right UUID on your system, as returned by the @command{blkid} command." msgstr "Cet exemple se réfère au système de fichier @file{/boot/efi} par son UUID, @code{1234-ABCD}. Remplacez cet UUID par le bon UUID de votre système, renvoyé par la commande @command{blkid}." #. type: Plain text -#: guix-git/doc/guix.texi:14500 +#: guix-git/doc/guix.texi:14857 msgid "@xref{Desktop Services}, for the exact list of services provided by @code{%desktop-services}. @xref{X.509 Certificates}, for background information about the @code{nss-certs} package that is used here." msgstr "@xref{Desktop Services}, pour la liste exacte des services fournis par @code{%desktop-services}. @xref{X.509 Certificates}, pour des informations sur le paquet @code{nss-certs} utilisé ici." #. type: Plain text -#: guix-git/doc/guix.texi:14507 +#: guix-git/doc/guix.texi:14864 msgid "Again, @code{%desktop-services} is just a list of service objects. If you want to remove services from there, you can do so using the procedures for list filtering (@pxref{SRFI-1 Filtering and Partitioning,,, guile, GNU Guile Reference Manual}). For instance, the following expression returns a list that contains all the services in @code{%desktop-services} minus the Avahi service:" msgstr "Encore une fois, @code{%desktop-services} n'est qu'une liste d'objets service. Si vous voulez enlever des services de là, vous pouvez le faire avec des procédures pour les listes (@pxref{SRFI-1 Filtering and Partitioning,,, guile, GNU Guile Reference Manual}). Par exemple, l'expression suivante renvoie une liste qui contient tous les services dans @code{%desktop-services} sauf le service Avahi :" #. type: lisp -#: guix-git/doc/guix.texi:14512 +#: guix-git/doc/guix.texi:14869 #, no-wrap msgid "" "(remove (lambda (service)\n" @@ -26683,12 +27352,12 @@ msgstr "" " %desktop-services)\n" #. type: Plain text -#: guix-git/doc/guix.texi:14515 +#: guix-git/doc/guix.texi:14872 msgid "Alternatively, the @code{modify-services} macro can be used:" msgstr "Autrement, la macro @code{modify-services} peut être utilisée :" #. type: lisp -#: guix-git/doc/guix.texi:14519 +#: guix-git/doc/guix.texi:14876 #, no-wrap msgid "" "(modify-services %desktop-services\n" @@ -26698,356 +27367,356 @@ msgstr "" " (delete avahi-service-type))\n" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14522 +#: guix-git/doc/guix.texi:14879 #, no-wrap msgid "Instantiating the System" msgstr "Instancier le système" #. type: Plain text -#: guix-git/doc/guix.texi:14529 +#: guix-git/doc/guix.texi:14886 msgid "Assuming the @code{operating-system} declaration is stored in the @file{my-system-config.scm} file, the @command{guix system reconfigure my-system-config.scm} command instantiates that configuration, and makes it the default GRUB boot entry (@pxref{Invoking guix system})." msgstr "En supposant que la déclaration @code{operating-system} est stockée dans le fichier @file{my-system-config.scm}, la commande @command{guix system reconfigure my-system-config.scm} instancie cette configuration et en fait l'entrée par défaut dans GRUB (@pxref{Invoking guix system})." #. type: Plain text -#: guix-git/doc/guix.texi:14537 +#: guix-git/doc/guix.texi:14894 msgid "The normal way to change the system configuration is by updating this file and re-running @command{guix system reconfigure}. One should never have to touch files in @file{/etc} or to run commands that modify the system state such as @command{useradd} or @command{grub-install}. In fact, you must avoid that since that would not only void your warranty but also prevent you from rolling back to previous versions of your system, should you ever need to." msgstr "Pour changer la configuration du système, on met normalement à jour ce fichier et on relance @command{guix system reconfigure}. On ne devrait jamais avoir à modifier de fichiers dans @file{/etc} ou à lancer des commandes qui modifient l'état du système comme @command{useradd} ou @command{grub-install}. En fait, vous devez les éviter parce que non seulement ça annulerait vos garanties, mais ça empêcherait aussi de revenir à des versions précédents du système, si vous en avez besoin." #. type: cindex -#: guix-git/doc/guix.texi:14538 +#: guix-git/doc/guix.texi:14895 #, no-wrap msgid "roll-back, of the operating system" msgstr "revenir en arrière dans la configuration du système" #. type: Plain text -#: guix-git/doc/guix.texi:14548 +#: guix-git/doc/guix.texi:14905 msgid "Speaking of roll-back, each time you run @command{guix system reconfigure}, a new @dfn{generation} of the system is created---without modifying or deleting previous generations. Old system generations get an entry in the bootloader boot menu, allowing you to boot them in case something went wrong with the latest generation. Reassuring, no? The @command{guix system list-generations} command lists the system generations available on disk. It is also possible to roll back the system via the commands @command{guix system roll-back} and @command{guix system switch-generation}." msgstr "En parlant de revenir en arrière, à chaque fois que vous lancez @command{guix system reconfigure}, une nouvelle @dfn{génération} du système est crée — sans modifier ou supprimer les générations précédentes. Les anciennes générations du système ont une entrée dans le menu du chargeur d'amorçage, ce qui vous permet de démarrer dessus au cas où quelque chose se serait mal passé avec la dernière génération. C'est rassurant, non ? La commande @command{guix system list-generations} liste les générations du système disponibles sur le disque. Il est possible de revenir à une ancienne génération via les commandes @command{guix system roll-back} et @command{guix system switch-generation}." #. type: Plain text -#: guix-git/doc/guix.texi:14554 +#: guix-git/doc/guix.texi:14911 msgid "Although the @command{guix system reconfigure} command will not modify previous generations, you must take care when the current generation is not the latest (e.g., after invoking @command{guix system roll-back}), since the operation might overwrite a later generation (@pxref{Invoking guix system})." msgstr "Bien que la commande @command{guix system reconfigure} ne modifiera pas les générations précédentes, vous devez faire attention lorsque votre génération actuelle n'est pas la dernière (p.@: ex.@: après avoir invoqué @command{guix system roll-back}), puisque l'opération pourrait remplacer une génération suivante (@pxref{Invoking guix system})." #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14555 +#: guix-git/doc/guix.texi:14912 #, no-wrap msgid "The Programming Interface" msgstr "L'interface de programmation" #. type: Plain text -#: guix-git/doc/guix.texi:14560 +#: guix-git/doc/guix.texi:14917 msgid "At the Scheme level, the bulk of an @code{operating-system} declaration is instantiated with the following monadic procedure (@pxref{The Store Monad}):" msgstr "Au niveau Scheme, la grosse déclaration @code{operating-system} est instanciée avec la procédure monadique suivante (@pxref{The Store Monad}) :" #. type: deffn -#: guix-git/doc/guix.texi:14561 +#: guix-git/doc/guix.texi:14918 #, no-wrap msgid "{Monadic Procedure} operating-system-derivation os" msgstr "{Procédure monadique} operating-system-derivation os" #. type: deffn -#: guix-git/doc/guix.texi:14564 +#: guix-git/doc/guix.texi:14921 msgid "Return a derivation that builds @var{os}, an @code{operating-system} object (@pxref{Derivations})." msgstr "Renvoie une dérivation qui construit @var{os}, un objet @code{operating-system} (@pxref{Derivations})." #. type: deffn -#: guix-git/doc/guix.texi:14568 +#: guix-git/doc/guix.texi:14925 msgid "The output of the derivation is a single directory that refers to all the packages, configuration files, and other supporting files needed to instantiate @var{os}." msgstr "La sortie de la dérivation est un répertoire qui se réfère à tous les paquets et d'autres fichiers supports requis pour instancier @var{os}." #. type: Plain text -#: guix-git/doc/guix.texi:14573 +#: guix-git/doc/guix.texi:14930 msgid "This procedure is provided by the @code{(gnu system)} module. Along with @code{(gnu services)} (@pxref{Services}), this module contains the guts of Guix System. Make sure to visit it!" msgstr "Cette procédure est fournie par le module @code{(gnu system)}. Avec @code{(gnu services)} (@pxref{Services}), ce module contient les entrailles du système Guix. Ouvrez-le un jour !" #. type: section -#: guix-git/doc/guix.texi:14576 +#: guix-git/doc/guix.texi:14933 #, no-wrap msgid "@code{operating-system} Reference" msgstr "Référence de @code{operating-system}" #. type: Plain text -#: guix-git/doc/guix.texi:14581 +#: guix-git/doc/guix.texi:14938 msgid "This section summarizes all the options available in @code{operating-system} declarations (@pxref{Using the Configuration System})." msgstr "Cette section résume toutes les options disponibles dans les déclarations @code{operating-system} (@pxref{Using the Configuration System})." #. type: deftp -#: guix-git/doc/guix.texi:14582 +#: guix-git/doc/guix.texi:14939 #, no-wrap msgid "{Data Type} operating-system" msgstr "{Type de données} operating-system" #. type: deftp -#: guix-git/doc/guix.texi:14586 +#: guix-git/doc/guix.texi:14943 msgid "This is the data type representing an operating system configuration. By that, we mean all the global system configuration, not per-user configuration (@pxref{Using the Configuration System})." msgstr "C'est le type de données représentant une configuration d'un système d'exploitation. On veut dire par là toute la configuration globale du système, mais pas la configuration par utilisateur (@pxref{Using the Configuration System})." #. type: item -#: guix-git/doc/guix.texi:14588 +#: guix-git/doc/guix.texi:14945 #, no-wrap msgid "@code{kernel} (default: @code{linux-libre})" msgstr "@code{kernel} (par défaut : @code{linux-libre})" #. type: table -#: guix-git/doc/guix.texi:14593 +#: guix-git/doc/guix.texi:14950 msgid "The package object of the operating system kernel to use@footnote{Currently only the Linux-libre kernel is fully supported. Using GNU@tie{}mach with the GNU@tie{}Hurd is experimental and only available when building a virtual machine disk image.}." msgstr "L'objet du paquet du système d'exploitation à utiliser@footnote{Actuellement, seul le noyau Linux-libre est entièrement pris en charge. L'utilisation de GNU@tie{}mach avec le GNU@tie{}Hurd est expérimentale et n'est disponible que lors de la construction d'une image disque de machine virtuelle.}." #. type: code{#1} -#: guix-git/doc/guix.texi:14594 guix-git/doc/guix.texi:30733 +#: guix-git/doc/guix.texi:14951 guix-git/doc/guix.texi:31098 #, no-wrap msgid "hurd" msgstr "hurd" #. type: item -#: guix-git/doc/guix.texi:14595 +#: guix-git/doc/guix.texi:14952 #, no-wrap msgid "@code{hurd} (default: @code{#f})" msgstr "@code{hurd} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:14600 +#: guix-git/doc/guix.texi:14957 msgid "The package object of the Hurd to be started by the kernel. When this field is set, produce a GNU/Hurd operating system. In that case, @code{kernel} must also be set to the @code{gnumach} package---the microkernel the Hurd runs on." msgstr "L'objet du paquet du hurd à être lancé par le noyau. Lorsque ce champ est défini, produire un système d'exploitation GNU/Hurd. Dans ce cas, @code{kernel} doit également être défini sur le paquet @code{gnumach} --- le micro-noyau sur lequel tourne le Hurd." #. type: quotation -#: guix-git/doc/guix.texi:14603 +#: guix-git/doc/guix.texi:14960 msgid "This feature is experimental and only supported for disk images." msgstr "Cette fonction est expérimentale et seulement prise en charge pour les images de disques." #. type: item -#: guix-git/doc/guix.texi:14605 +#: guix-git/doc/guix.texi:14962 #, no-wrap msgid "@code{kernel-loadable-modules} (default: '())" msgstr "@code{kernel-loadable-modules} (par défault : '())" #. type: table -#: guix-git/doc/guix.texi:14608 +#: guix-git/doc/guix.texi:14965 msgid "A list of objects (usually packages) to collect loadable kernel modules from--e.g. @code{(list ddcci-driver-linux)}." msgstr "Une liste d'objets (généralement des paquets) pour collecter les modules de noyau chargeables depuis - par exemple @code{(liste ddcci-driver-linux)}." #. type: item -#: guix-git/doc/guix.texi:14609 +#: guix-git/doc/guix.texi:14966 #, no-wrap msgid "@code{kernel-arguments} (default: @code{%default-kernel-arguments})" msgstr "@code{server-arguments} (par défaut : @code{%default-kernel-arguments})" #. type: table -#: guix-git/doc/guix.texi:14612 +#: guix-git/doc/guix.texi:14969 msgid "List of strings or gexps representing additional arguments to pass on the command-line of the kernel---e.g., @code{(\"console=ttyS0\")}." msgstr "Liste de chaînes ou de gexps représentant des arguments supplémentaires à passer sur la ligne de commande du noyau — p.@: ex.@: @code{(\"console=ttyS0\")}." #. type: code{#1} -#: guix-git/doc/guix.texi:14613 guix-git/doc/guix.texi:34539 -#: guix-git/doc/guix.texi:34558 +#: guix-git/doc/guix.texi:14970 guix-git/doc/guix.texi:34978 +#: guix-git/doc/guix.texi:34997 #, no-wrap msgid "bootloader" msgstr "bootloader" #. type: table -#: guix-git/doc/guix.texi:14615 +#: guix-git/doc/guix.texi:14972 msgid "The system bootloader configuration object. @xref{Bootloader Configuration}." msgstr "L'objet de configuration du chargeur d'amorçage. @xref{Bootloader Configuration}." #. type: code{#1} -#: guix-git/doc/guix.texi:14616 guix-git/doc/guix.texi:34732 +#: guix-git/doc/guix.texi:14973 guix-git/doc/guix.texi:35171 #, no-wrap msgid "label" msgstr "label" #. type: table -#: guix-git/doc/guix.texi:14619 +#: guix-git/doc/guix.texi:14976 msgid "This is the label (a string) as it appears in the bootloader's menu entry. The default label includes the kernel name and version." msgstr "C'est l'étiquette (une chaîne de caractères) comme elle apparaît dans l'entrée du menu du chargeur d'amorçage. L'étiquette par défaut inclus le nom du noyau et sa version." #. type: item -#: guix-git/doc/guix.texi:14620 guix-git/doc/guix.texi:16318 -#: guix-git/doc/guix.texi:19503 guix-git/doc/guix.texi:34662 +#: guix-git/doc/guix.texi:14977 guix-git/doc/guix.texi:16675 +#: guix-git/doc/guix.texi:19865 guix-git/doc/guix.texi:35101 #, no-wrap msgid "@code{keyboard-layout} (default: @code{#f})" msgstr "@code{keyboard-layout} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:14625 +#: guix-git/doc/guix.texi:14982 msgid "This field specifies the keyboard layout to use in the console. It can be either @code{#f}, in which case the default keyboard layout is used (usually US English), or a @code{} record. @xref{Keyboard Layout}, for more information." msgstr "Ce champ spécifie la disposition du clavier à utiliser dans la console. Il peut être soit @code{#f}, auquel cas la disposition par défaut est utilisée (habituellement anglais américain), ou un enregistrement @code{}. @xref{Keyboard Layout}, pour plus d'informations." #. type: table -#: guix-git/doc/guix.texi:14630 +#: guix-git/doc/guix.texi:14987 msgid "This keyboard layout is in effect as soon as the kernel has booted. For instance, it is the keyboard layout in effect when you type a passphrase if your root file system is on a @code{luks-device-mapping} mapped device (@pxref{Mapped Devices})." msgstr "Cette disposition du clavier est effective dès que le noyau démarre. Par exemple, c'est la disposition du clavier effective lorsque vous saisissez la phrase de passe de votre système de fichier racine sur une partition utilisant @code{luks-device-mapping} (@pxref{Mapped Devices})." #. type: quotation -#: guix-git/doc/guix.texi:14637 +#: guix-git/doc/guix.texi:14994 msgid "This does @emph{not} specify the keyboard layout used by the bootloader, nor that used by the graphical display server. @xref{Bootloader Configuration}, for information on how to specify the bootloader's keyboard layout. @xref{X Window}, for information on how to specify the keyboard layout used by the X Window System." msgstr "Cela ne spécifie @emph{pas} la disposition clavier utilisée par le chargeur d'amorçage, ni celle utilisée par le serveur d'affichage graphique. @xref{Bootloader Configuration}, pour plus d'information sur la manière de spécifier la disposition du clavier pour le chargeur d'amorçage. @xref{X Window}, pour plus d'informations sur la manière de spécifier la disposition du clavier utilisée par le système de fenêtrage X." #. type: item -#: guix-git/doc/guix.texi:14639 +#: guix-git/doc/guix.texi:14996 #, no-wrap msgid "@code{initrd-modules} (default: @code{%base-initrd-modules})" msgstr "@code{initrd-modules} (par défaut : @code{%base-initrd-modules})" #. type: cindex -#: guix-git/doc/guix.texi:14640 guix-git/doc/guix.texi:34344 -#: guix-git/doc/guix.texi:34467 +#: guix-git/doc/guix.texi:14997 guix-git/doc/guix.texi:34783 +#: guix-git/doc/guix.texi:34906 #, no-wrap msgid "initrd" msgstr "initrd" #. type: cindex -#: guix-git/doc/guix.texi:14641 guix-git/doc/guix.texi:34345 -#: guix-git/doc/guix.texi:34468 +#: guix-git/doc/guix.texi:14998 guix-git/doc/guix.texi:34784 +#: guix-git/doc/guix.texi:34907 #, no-wrap msgid "initial RAM disk" msgstr "disque de RAM initial" #. type: table -#: guix-git/doc/guix.texi:14644 +#: guix-git/doc/guix.texi:15001 msgid "The list of Linux kernel modules that need to be available in the initial RAM disk. @xref{Initial RAM Disk}." msgstr "La liste des modules du noyau linux requis dans l'image disque de RAM initiale. @xref{Initial RAM Disk}." #. type: item -#: guix-git/doc/guix.texi:14645 +#: guix-git/doc/guix.texi:15002 #, no-wrap msgid "@code{initrd} (default: @code{base-initrd})" msgstr "@code{initrd} (par défaut : @code{base-initrd})" #. type: table -#: guix-git/doc/guix.texi:14649 +#: guix-git/doc/guix.texi:15006 msgid "A procedure that returns an initial RAM disk for the Linux kernel. This field is provided to support low-level customization and should rarely be needed for casual use. @xref{Initial RAM Disk}." msgstr "Une procédure qui renvoie un disque de RAM initial pour le noyau Linux. Ce champ est fournit pour pouvoir personnaliser son système à bas-niveau et n'est que rarement utile dans le cas général. @xref{Initial RAM Disk}." #. type: item -#: guix-git/doc/guix.texi:14650 +#: guix-git/doc/guix.texi:15007 #, no-wrap msgid "@code{firmware} (default: @code{%base-firmware})" msgstr "@code{firmware} (par défaut : @code{%base-firmware})" #. type: cindex -#: guix-git/doc/guix.texi:14651 +#: guix-git/doc/guix.texi:15008 #, no-wrap msgid "firmware" msgstr "firmware" #. type: table -#: guix-git/doc/guix.texi:14653 +#: guix-git/doc/guix.texi:15010 msgid "List of firmware packages loadable by the operating system kernel." msgstr "Liste les paquets de microgiciels chargeables pour le noyau de système d'exploitation." #. type: table -#: guix-git/doc/guix.texi:14658 +#: guix-git/doc/guix.texi:15015 msgid "The default includes firmware needed for Atheros- and Broadcom-based WiFi devices (Linux-libre modules @code{ath9k} and @code{b43-open}, respectively). @xref{Hardware Considerations}, for more info on supported hardware." msgstr "La valeur par défaut contient les microgiciels requis pour les périphériques WiFi Atheros et Broadcom (modules @code{ath9k} et @code{b43-open} de Linux-libre, respectivement). @xref{Hardware Considerations}, pour plus d'info sur les périphériques supportés." #. type: code{#1} -#: guix-git/doc/guix.texi:14659 guix-git/doc/guix.texi:35572 +#: guix-git/doc/guix.texi:15016 guix-git/doc/guix.texi:36052 #, no-wrap msgid "host-name" msgstr "host-name" #. type: table -#: guix-git/doc/guix.texi:14661 +#: guix-git/doc/guix.texi:15018 msgid "The host name." msgstr "Le nom d'hôte." #. type: code{#1} -#: guix-git/doc/guix.texi:14662 +#: guix-git/doc/guix.texi:15019 #, no-wrap msgid "hosts-file" msgstr "hosts-file" #. type: cindex -#: guix-git/doc/guix.texi:14663 +#: guix-git/doc/guix.texi:15020 #, no-wrap msgid "hosts file" msgstr "fichier hosts" #. type: table -#: guix-git/doc/guix.texi:14668 +#: guix-git/doc/guix.texi:15025 msgid "A file-like object (@pxref{G-Expressions, file-like objects}) for use as @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). The default is a file with entries for @code{localhost} and @var{host-name}." msgstr "Un objet simili-fichier (@pxref{G-Expressions, file-like objects}) à utiliser comme @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). La valeur par défaut est un fichier avec des entrées pour @code{localhost} et @var{host-name}." #. type: item -#: guix-git/doc/guix.texi:14669 +#: guix-git/doc/guix.texi:15026 #, no-wrap msgid "@code{mapped-devices} (default: @code{'()})" msgstr "@code{mapped-devices} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:14671 +#: guix-git/doc/guix.texi:15028 msgid "A list of mapped devices. @xref{Mapped Devices}." msgstr "Une liste de périphériques mappés. @xref{Mapped Devices}." #. type: code{#1} -#: guix-git/doc/guix.texi:14672 +#: guix-git/doc/guix.texi:15029 #, no-wrap msgid "file-systems" msgstr "file-systems" #. type: table -#: guix-git/doc/guix.texi:14674 +#: guix-git/doc/guix.texi:15031 msgid "A list of file systems. @xref{File Systems}." msgstr "Une liste de systèmes de fichiers. @xref{File Systems}." #. type: item -#: guix-git/doc/guix.texi:14675 +#: guix-git/doc/guix.texi:15032 #, no-wrap msgid "@code{swap-devices} (default: @code{'()})" msgstr "@code{swap-devices} (par défaut : @code{'()})" #. type: cindex -#: guix-git/doc/guix.texi:14676 +#: guix-git/doc/guix.texi:15033 #, no-wrap msgid "swap devices" msgstr "périphériques d'espaces d'échange" #. type: table -#: guix-git/doc/guix.texi:14678 +#: guix-git/doc/guix.texi:15035 msgid "A list of swap spaces. @xref{Swap Space}." msgstr "Une liste de d'espaces d'échanges. @xref{Swap Space}." #. type: item -#: guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15036 #, no-wrap msgid "@code{users} (default: @code{%base-user-accounts})" msgstr "@code{users} (par défaut : @code{%base-user-accounts})" #. type: itemx -#: guix-git/doc/guix.texi:14680 +#: guix-git/doc/guix.texi:15037 #, no-wrap msgid "@code{groups} (default: @code{%base-groups})" msgstr "@code{groups} (par défaut : @code{%base-groups})" #. type: table -#: guix-git/doc/guix.texi:14682 +#: guix-git/doc/guix.texi:15039 msgid "List of user accounts and groups. @xref{User Accounts}." msgstr "Liste les comptes utilisateurs et les groupes. @xref{User Accounts}." #. type: table -#: guix-git/doc/guix.texi:14685 +#: guix-git/doc/guix.texi:15042 msgid "If the @code{users} list lacks a user account with UID@tie{}0, a ``root'' account with UID@tie{}0 is automatically added." msgstr "Si la liste @code{users} n'a pas de compte lié à l'UID@tie{}0, un compte « root » avec l'UID@tie{}0 est automatiquement ajouté." #. type: item -#: guix-git/doc/guix.texi:14686 +#: guix-git/doc/guix.texi:15043 #, no-wrap msgid "@code{skeletons} (default: @code{(default-skeletons)})" msgstr "@code{skeletons} (par défaut : @code{(default-skeletons)})" #. type: table -#: guix-git/doc/guix.texi:14690 +#: guix-git/doc/guix.texi:15047 msgid "A list of target file name/file-like object tuples (@pxref{G-Expressions, file-like objects}). These are the skeleton files that will be added to the home directory of newly-created user accounts." msgstr "Une liste de « couples » de noms de fichiers cibles/objets de type fichier (@pxref{G-Expressions, objets de type fichier}). Ce sont les fichiers squelettes qui seront ajoutés au répertoire d'accueil des comptes utilisatrice·eur·s nouvellement créés." #. type: table -#: guix-git/doc/guix.texi:14692 +#: guix-git/doc/guix.texi:15049 msgid "For instance, a valid value may look like this:" msgstr "Par exemple, un valeur valide ressemblerait à cela :" #. type: lisp -#: guix-git/doc/guix.texi:14698 +#: guix-git/doc/guix.texi:15055 #, no-wrap msgid "" "`((\".bashrc\" ,(plain-file \"bashrc\" \"echo Hello\\n\"))\n" @@ -27061,29 +27730,29 @@ msgstr "" " (activate-readline)\")))\n" #. type: item -#: guix-git/doc/guix.texi:14700 +#: guix-git/doc/guix.texi:15057 #, no-wrap msgid "@code{issue} (default: @code{%default-issue})" msgstr "@code{issue} (par défaut : @code{%default-issue})" #. type: table -#: guix-git/doc/guix.texi:14703 +#: guix-git/doc/guix.texi:15060 msgid "A string denoting the contents of the @file{/etc/issue} file, which is displayed when users log in on a text console." msgstr "Une chaîne qui dénote le contenu du fichier @file{/etc/issue} qui est affiché lorsqu'un utilisateur se connecte sur la console." #. type: item -#: guix-git/doc/guix.texi:14704 +#: guix-git/doc/guix.texi:15061 #, no-wrap msgid "@code{packages} (default: @code{%base-packages})" msgstr "@code{packages} (par défaut : @code{%base-packages})" #. type: table -#: guix-git/doc/guix.texi:14708 +#: guix-git/doc/guix.texi:15065 msgid "A list of packages to be installed in the global profile, which is accessible at @file{/run/current-system/profile}. Each element is either a package variable or a package/output tuple. Here's a simple example of both:" msgstr "Une liste de paquets à installer dans le profil global, qui est accessible à partir de @file{/run/current-system/profile}. Chaque élément est soit une variable de paquet, soit un tuple de paquet/sortie. Voici un exemple simple des deux :" #. type: lisp -#: guix-git/doc/guix.texi:14713 +#: guix-git/doc/guix.texi:15070 #, no-wrap msgid "" "(cons* git ; the default \"out\" output\n" @@ -27095,172 +27764,172 @@ msgstr "" " %base-packages) ; l'ensemble par défaut\n" #. type: table -#: guix-git/doc/guix.texi:14718 +#: guix-git/doc/guix.texi:15075 msgid "The default set includes core utilities and it is good practice to install non-core utilities in user profiles (@pxref{Invoking guix package})." msgstr "L'ensemble par défaut contient les utilitaires de base et c'est une bonne pratique d'installer les utilitaires non essentiels dans les profils utilisateurs (@pxref{Invoking guix package})." #. type: code{#1} -#: guix-git/doc/guix.texi:14719 +#: guix-git/doc/guix.texi:15076 #, no-wrap msgid "timezone" msgstr "timezone" #. type: table -#: guix-git/doc/guix.texi:14721 +#: guix-git/doc/guix.texi:15078 msgid "A timezone identifying string---e.g., @code{\"Europe/Paris\"}." msgstr "Une chaîne identifiant un fuseau horaire — p.@: ex.@: @code{\"Europe/Paris\"}." #. type: table -#: guix-git/doc/guix.texi:14725 +#: guix-git/doc/guix.texi:15082 msgid "You can run the @command{tzselect} command to find out which timezone string corresponds to your region. Choosing an invalid timezone name causes @command{guix system} to fail." msgstr "Vous pouvez lancer la commande @command{tzselect} pour trouver le fuseau horaire correspondant à votre région. Si vous choisissez un nom de fuseau horaire invalide, @command{guix system} échouera." #. type: item -#: guix-git/doc/guix.texi:14726 guix-git/doc/guix.texi:21115 +#: guix-git/doc/guix.texi:15083 guix-git/doc/guix.texi:21477 #, no-wrap msgid "@code{locale} (default: @code{\"en_US.utf8\"})" msgstr "@code{locale} (par défaut : @code{\"en_US.utf8\"})" #. type: table -#: guix-git/doc/guix.texi:14729 +#: guix-git/doc/guix.texi:15086 msgid "The name of the default locale (@pxref{Locale Names,,, libc, The GNU C Library Reference Manual}). @xref{Locales}, for more information." msgstr "Le nom du paramètre régional par défaut (@pxref{Locale Names,,, libc, The GNU C Library Reference Manual}). @xref{Locales}, pour plus d'informations." #. type: item -#: guix-git/doc/guix.texi:14730 +#: guix-git/doc/guix.texi:15087 #, no-wrap msgid "@code{locale-definitions} (default: @code{%default-locale-definitions})" msgstr "@code{locale-definitions} (par défaut : @code{%default-locale-definitions})" #. type: table -#: guix-git/doc/guix.texi:14733 +#: guix-git/doc/guix.texi:15090 msgid "The list of locale definitions to be compiled and that may be used at run time. @xref{Locales}." msgstr "La liste des définitions de locales à compiler et qui devraient être utilisées à l'exécution. @xref{Locales}." #. type: item -#: guix-git/doc/guix.texi:14734 +#: guix-git/doc/guix.texi:15091 #, no-wrap msgid "@code{locale-libcs} (default: @code{(list @var{glibc})})" msgstr "@code{locale-libcs} (par défaut : @code{(list @var{glibc})})" #. type: table -#: guix-git/doc/guix.texi:14738 +#: guix-git/doc/guix.texi:15095 msgid "The list of GNU@tie{}libc packages whose locale data and tools are used to build the locale definitions. @xref{Locales}, for compatibility considerations that justify this option." msgstr "La liste des paquets GNU@tie{}libc dont les données des paramètres linguistiques sont utilisées pour construire les définitions des paramètres linguistiques. @xref{Locales}, pour des considérations sur la compatibilité qui justifient cette option." #. type: item -#: guix-git/doc/guix.texi:14739 +#: guix-git/doc/guix.texi:15096 #, no-wrap msgid "@code{name-service-switch} (default: @code{%default-nss})" msgstr "@code{name-service-switch} (par défaut : @code{%default-nss})" #. type: table -#: guix-git/doc/guix.texi:14743 +#: guix-git/doc/guix.texi:15100 msgid "Configuration of the libc name service switch (NSS)---a @code{} object. @xref{Name Service Switch}, for details." msgstr "La configuration de NSS de la libc (name service switch) — un objet @code{}. @xref{Name Service Switch}, pour des détails." #. type: item -#: guix-git/doc/guix.texi:14744 +#: guix-git/doc/guix.texi:15101 #, no-wrap msgid "@code{services} (default: @code{%base-services})" msgstr "@code{services} (par défaut : @code{%base-services})" #. type: table -#: guix-git/doc/guix.texi:14746 +#: guix-git/doc/guix.texi:15103 msgid "A list of service objects denoting system services. @xref{Services}." msgstr "Une liste d'objets services qui dénotent les services du système. @xref{Services}." #. type: cindex -#: guix-git/doc/guix.texi:14747 +#: guix-git/doc/guix.texi:15104 #, no-wrap msgid "essential services" msgstr "services essentiels" #. type: item -#: guix-git/doc/guix.texi:14748 +#: guix-git/doc/guix.texi:15105 #, no-wrap msgid "@code{essential-services} (default: ...)" msgstr "@code{essential-services} (par défaut : …)" #. type: table -#: guix-git/doc/guix.texi:14753 +#: guix-git/doc/guix.texi:15110 msgid "The list of ``essential services''---i.e., things like instances of @code{system-service-type} and @code{host-name-service-type} (@pxref{Service Reference}), which are derived from the operating system definition itself. As a user you should @emph{never} need to touch this field." msgstr "La liste des « services essentiels » — c.-à-d.@: les services comme des instance de @code{system-service-type} et @code{host-name-service-type} (@pxref{Service Reference}), qui sont dérivés de la définition du système d'exploitation lui-même. En tant qu'utilisateur vous ne devriez @emph{jamais} toucher à ce champ." #. type: item -#: guix-git/doc/guix.texi:14754 +#: guix-git/doc/guix.texi:15111 #, no-wrap msgid "@code{pam-services} (default: @code{(base-pam-services)})" msgstr "@code{pam-services} (par défaut : @code{(base-pam-services)})" #. type: cindex -#: guix-git/doc/guix.texi:14755 +#: guix-git/doc/guix.texi:15112 #, no-wrap msgid "PAM" msgstr "PAM" #. type: cindex -#: guix-git/doc/guix.texi:14756 +#: guix-git/doc/guix.texi:15113 #, no-wrap msgid "pluggable authentication modules" msgstr "pluggable authentication modules" #. type: table -#: guix-git/doc/guix.texi:14759 +#: guix-git/doc/guix.texi:15116 msgid "Linux @dfn{pluggable authentication module} (PAM) services." msgstr "Services PAM (@dfn{pluggable authentication module}) Linux." #. type: item -#: guix-git/doc/guix.texi:14760 +#: guix-git/doc/guix.texi:15117 #, no-wrap msgid "@code{setuid-programs} (default: @code{%setuid-programs})" msgstr "@code{setuid-programs} (par défaut : @code{%setuid-programs})" #. type: table -#: guix-git/doc/guix.texi:14763 +#: guix-git/doc/guix.texi:15120 msgid "List of @code{}. @xref{Setuid Programs}, for more information." msgstr "Liste de @code{}. @xref{Setuid Programs}, pour plus d'informations." #. type: item -#: guix-git/doc/guix.texi:14764 +#: guix-git/doc/guix.texi:15121 #, no-wrap msgid "@code{sudoers-file} (default: @code{%sudoers-specification})" msgstr "@code{sudoers-file} (par défaut : @code{%sudoers-specification})" #. type: cindex -#: guix-git/doc/guix.texi:14765 +#: guix-git/doc/guix.texi:15122 #, no-wrap msgid "sudoers file" msgstr "fichier sudoers" #. type: table -#: guix-git/doc/guix.texi:14768 +#: guix-git/doc/guix.texi:15125 msgid "The contents of the @file{/etc/sudoers} file as a file-like object (@pxref{G-Expressions, @code{local-file} and @code{plain-file}})." msgstr "Le contenu du fichier @file{/etc/sudoers} comme un objet simili-fichier (@pxref{G-Expressions, @code{local-file} et @code{plain-file}})." #. type: table -#: guix-git/doc/guix.texi:14773 +#: guix-git/doc/guix.texi:15130 msgid "This file specifies which users can use the @command{sudo} command, what they are allowed to do, and what privileges they may gain. The default is that only @code{root} and members of the @code{wheel} group may use @code{sudo}." msgstr "Ce fichier spécifier quels utilisateurs peuvent utiliser la commande @command{sudo}, ce qu'ils ont le droit de faire, et quels privilèges ils peuvent gagner. La valeur par défaut est que seul @code{root} et les membres du groupe @code{wheel} peuvent utiliser @code{sudo}." #. type: deffn -#: guix-git/doc/guix.texi:14776 +#: guix-git/doc/guix.texi:15133 #, no-wrap msgid "{Scheme Syntax} this-operating-system" msgstr "{Type de données} this-operating-system" #. type: deffn -#: guix-git/doc/guix.texi:14779 +#: guix-git/doc/guix.texi:15136 msgid "When used in the @emph{lexical scope} of an operating system field definition, this identifier resolves to the operating system being defined." msgstr "Lorsqu'il est utilisée dans la @emph{portée lexicale} de la définition d'un du système d'exploitation, cet identifiant est résolu comme étant le système d'exploitation définit." #. type: deffn -#: guix-git/doc/guix.texi:14782 +#: guix-git/doc/guix.texi:15139 msgid "The example below shows how to refer to the operating system being defined in the definition of the @code{label} field:" msgstr "L'exemple ci-dessous montre le référencement au système d'exploitation définit dans la définition du champ @code{label} :" #. type: lisp -#: guix-git/doc/guix.texi:14785 guix-git/doc/guix.texi:18711 +#: guix-git/doc/guix.texi:15142 guix-git/doc/guix.texi:19073 #, no-wrap msgid "" "(use-modules (gnu) (guix))\n" @@ -27270,7 +27939,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:14790 +#: guix-git/doc/guix.texi:15147 #, no-wrap msgid "" "(operating-system\n" @@ -27284,17 +27953,17 @@ msgstr "" " (operating-system-kernel this-operating-system))))\n" #. type: deffn -#: guix-git/doc/guix.texi:14794 +#: guix-git/doc/guix.texi:15151 msgid "It is an error to refer to @code{this-operating-system} outside an operating system definition." msgstr "C'est une erreur que de se référer à @code{this-operating-system} en dehors de la définition d'un système d'exploitation." #. type: Plain text -#: guix-git/doc/guix.texi:14805 +#: guix-git/doc/guix.texi:15162 msgid "The list of file systems to be mounted is specified in the @code{file-systems} field of the operating system declaration (@pxref{Using the Configuration System}). Each file system is declared using the @code{file-system} form, like this:" msgstr "La liste des systèmes de fichiers à monter est spécifiée dans le champ @code{file-systems} de la déclaration de système d'exploitation (@pxref{Using the Configuration System}). Chaque système de fichier est déclaré avec la forme @code{file-system}, comme ceci :" #. type: lisp -#: guix-git/doc/guix.texi:14811 +#: guix-git/doc/guix.texi:15168 #, no-wrap msgid "" "(file-system\n" @@ -27308,68 +27977,68 @@ msgstr "" " (type \"ext4\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:14815 +#: guix-git/doc/guix.texi:15172 msgid "As usual, some of the fields are mandatory---those shown in the example above---while others can be omitted. These are described below." msgstr "Comme d'habitude, certains de ces champs sont obligatoire — comme le montre l'exemple au-dessus — alors que d'autres peuvent être omis. Ils sont décrits plus bas." #. type: deftp -#: guix-git/doc/guix.texi:14816 +#: guix-git/doc/guix.texi:15173 #, no-wrap msgid "{Data Type} file-system" msgstr "{Type de données} file-system" #. type: deftp -#: guix-git/doc/guix.texi:14819 +#: guix-git/doc/guix.texi:15176 msgid "Objects of this type represent file systems to be mounted. They contain the following members:" msgstr "Les objets de ce type représentent des systèmes de fichiers à monter. Ils contiennent les membres suivants :" #. type: item -#: guix-git/doc/guix.texi:14821 guix-git/doc/guix.texi:15201 -#: guix-git/doc/guix.texi:17317 +#: guix-git/doc/guix.texi:15178 guix-git/doc/guix.texi:15558 +#: guix-git/doc/guix.texi:17679 #, no-wrap msgid "type" msgstr "type" #. type: table -#: guix-git/doc/guix.texi:14824 +#: guix-git/doc/guix.texi:15181 msgid "This is a string specifying the type of the file system---e.g., @code{\"ext4\"}." msgstr "C'est une chaîne de caractères spécifiant le type du système de fichier — p.@: ex.@: @code{\"ext4\"}." #. type: code{#1} -#: guix-git/doc/guix.texi:14825 +#: guix-git/doc/guix.texi:15182 #, no-wrap msgid "mount-point" msgstr "mount-point" #. type: table -#: guix-git/doc/guix.texi:14827 +#: guix-git/doc/guix.texi:15184 msgid "This designates the place where the file system is to be mounted." msgstr "Désigne l'emplacement où le système de fichier sera monté." #. type: item -#: guix-git/doc/guix.texi:14828 guix-git/doc/guix.texi:17267 +#: guix-git/doc/guix.texi:15185 guix-git/doc/guix.texi:17629 #, no-wrap msgid "device" msgstr "device" #. type: table -#: guix-git/doc/guix.texi:14838 +#: guix-git/doc/guix.texi:15195 msgid "This names the ``source'' of the file system. It can be one of three things: a file system label, a file system UUID, or the name of a @file{/dev} node. Labels and UUIDs offer a way to refer to file systems without having to hard-code their actual device name@footnote{Note that, while it is tempting to use @file{/dev/disk/by-uuid} and similar device names to achieve the same result, this is not recommended: These special device nodes are created by the udev daemon and may be unavailable at the time the device is mounted.}." msgstr "Ce champ nomme le système de fichier « source ». il peut être l'une de ces trois choses : une étiquette de système de fichiers, un UUID de système de fichier ou le nom d'un nœud dans @file{/dev}. Les étiquettes et les UUID offrent une manière de se référer à des systèmes de fichiers sans avoir à coder en dur le nom de périphérique@footnote{Remarquez que, s'il est tentant d'utiliser @file{/dev/disk/by-uuid} et autres chemins similaires pour obtenir le même résultat, ce n'est pas recommandé : ces nœuds de périphériques spéciaux sont créés par le démon udev et peuvent ne pas être disponibles au moment de monter le périphérique.}." #. type: findex -#: guix-git/doc/guix.texi:14839 +#: guix-git/doc/guix.texi:15196 #, no-wrap msgid "file-system-label" msgstr "file-system-label" #. type: table -#: guix-git/doc/guix.texi:14844 +#: guix-git/doc/guix.texi:15201 msgid "File system labels are created using the @code{file-system-label} procedure, UUIDs are created using @code{uuid}, and @file{/dev} node are plain strings. Here's an example of a file system referred to by its label, as shown by the @command{e2label} command:" msgstr "Les étiquettes de systèmes de fichiers sont crées avec la procédure @code{file-system-label}, les UUID avec @code{uuid} et les nœuds de @file{/dev} sont de simples chaînes de caractères. Voici un exemple d'un système de fichiers référencé par son étiquette, donnée par la commande @command{e2label} :" #. type: lisp -#: guix-git/doc/guix.texi:14850 +#: guix-git/doc/guix.texi:15207 #, no-wrap msgid "" "(file-system\n" @@ -27383,19 +28052,19 @@ msgstr "" " (device (file-system-label \"my-home\")))\n" #. type: code{#1} -#: guix-git/doc/guix.texi:14852 guix-git/doc/guix.texi:33130 -#: guix-git/doc/guix.texi:33146 +#: guix-git/doc/guix.texi:15209 guix-git/doc/guix.texi:33495 +#: guix-git/doc/guix.texi:33511 #, no-wrap msgid "uuid" msgstr "uuid" #. type: table -#: guix-git/doc/guix.texi:14860 +#: guix-git/doc/guix.texi:15217 msgid "UUIDs are converted from their string representation (as shown by the @command{tune2fs -l} command) using the @code{uuid} form@footnote{The @code{uuid} form expects 16-byte UUIDs as defined in @uref{https://tools.ietf.org/html/rfc4122, RFC@tie{}4122}. This is the form of UUID used by the ext2 family of file systems and others, but it is different from ``UUIDs'' found in FAT file systems, for instance.}, like this:" msgstr "Les UUID sont convertis à partir de leur représentation en chaîne de caractères (montrée par la commande @command{tune2fs -l}) en utilisant la forme @code{uuid}@footnote{La forme @code{uuid} s'attend à des UUID sur 16 octets définis dans la @uref{https://tools.ietf.org/html/rfc4122, RFC@tie{}4122}. C'est la forme des UUID utilisées par la famille de systèmes de fichiers ext2 et d'autres, mais ce n'est pas le même type d'UUID que ceux qui se trouvent sur les systèmes de fichiers FAT par exemple}, comme ceci :" #. type: lisp -#: guix-git/doc/guix.texi:14866 +#: guix-git/doc/guix.texi:15223 #, no-wrap msgid "" "(file-system\n" @@ -27409,168 +28078,168 @@ msgstr "" " (device (uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\")))\n" #. type: table -#: guix-git/doc/guix.texi:14874 +#: guix-git/doc/guix.texi:15231 msgid "When the source of a file system is a mapped device (@pxref{Mapped Devices}), its @code{device} field @emph{must} refer to the mapped device name---e.g., @file{\"/dev/mapper/root-partition\"}. This is required so that the system knows that mounting the file system depends on having the corresponding device mapping established." msgstr "Lorsque la source d'un système de fichiers est un périphérique mappé (@pxref{Mapped Devices}), sont champ @code{device} @emph{doit} se référer au nom du périphérique mappé — p.@: ex.@: @file{\"/dev/mapper/root-partition\"}. Cela est requis pour que le système sache que monter ce système de fichier dépend de la présence du périphérique mappé correspondant." #. type: item -#: guix-git/doc/guix.texi:14875 +#: guix-git/doc/guix.texi:15232 #, no-wrap msgid "@code{flags} (default: @code{'()})" msgstr "@code{flags} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:14885 +#: guix-git/doc/guix.texi:15242 msgid "This is a list of symbols denoting mount flags. Recognized flags include @code{read-only}, @code{bind-mount}, @code{no-dev} (disallow access to special files), @code{no-suid} (ignore setuid and setgid bits), @code{no-atime} (do not update file access times), @code{strict-atime} (update file access time), @code{lazy-time} (only update time on the in-memory version of the file inode), and @code{no-exec} (disallow program execution). @xref{Mount-Unmount-Remount,,, libc, The GNU C Library Reference Manual}, for more information on these flags." msgstr "C'est une liste de symboles qui désignent des drapeaux de montage. Les drapeaux reconnus sont @code{read-only}, @code{bind-mount}, @code{no-dev} (interdit l'accès aux fichiers spéciaux), @code{no-suid} (ignore les bits setuid et setgid), @code{no-atime} (ne met pas à jour les heures d'accès aux fichiers) et @code{no-exec} (interdit l'exécution de programmes). @xref{Mount-Unmount-Remount,,, libc, The GNU C Library Reference Manual}, pour plus d'informations sur ces drapeaux." #. type: item -#: guix-git/doc/guix.texi:14886 +#: guix-git/doc/guix.texi:15243 #, no-wrap msgid "@code{options} (default: @code{#f})" msgstr "@code{options} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:14895 +#: guix-git/doc/guix.texi:15252 msgid "This is either @code{#f}, or a string denoting mount options passed to the file system driver. @xref{Mount-Unmount-Remount,,, libc, The GNU C Library Reference Manual}, for details and run @command{man 8 mount} for options for various file systems. Note that the @code{file-system-options->alist} and @code{alist->file-system-options} procedures from @code{(gnu system file-systems)} can be used to convert file system options given as an association list to the string representation, and vice-versa." msgstr "Il s'agit soit de @code{#f}, soit d'une chaîne indiquant les options de montage passées au pilote du système de fichiers. @xref{Mount-Unmount-Remount,,, libc, The GNU C Library Reference Manual}, pour plus de détails et lancez @command{man 8 mount} pour les options des différents systèmes de fichiers. Notez que les procédures @code{file-system-options->alist} et @code{alist->file-system-options} de @code{(gnu system file-systems)} peuvent être utilisées pour convertir des options de systèmes de fichiers données sous forme de liste d'association en représentation de chaîne de caractères, et vice-versa." #. type: item -#: guix-git/doc/guix.texi:14896 +#: guix-git/doc/guix.texi:15253 #, no-wrap msgid "@code{mount?} (default: @code{#t})" msgstr "@code{mount?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:14901 +#: guix-git/doc/guix.texi:15258 msgid "This value indicates whether to automatically mount the file system when the system is brought up. When set to @code{#f}, the file system gets an entry in @file{/etc/fstab} (read by the @command{mount} command) but is not automatically mounted." msgstr "Cette valeur indique s'il faut monter automatiquement le système de fichier au démarrage du système. Lorsque la valeur est @code{#f}, le système de fichier reçoit une entrée dans @file{/etc/fstab} (lue par la commande @command{mount}) mais n'est pas monté automatiquement." #. type: item -#: guix-git/doc/guix.texi:14902 +#: guix-git/doc/guix.texi:15259 #, no-wrap msgid "@code{needed-for-boot?} (default: @code{#f})" msgstr "@code{needed-for-boot?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:14907 +#: guix-git/doc/guix.texi:15264 msgid "This Boolean value indicates whether the file system is needed when booting. If that is true, then the file system is mounted when the initial RAM disk (initrd) is loaded. This is always the case, for instance, for the root file system." msgstr "Cette valeur booléenne indique si le système de fichier est nécessaire au démarrage. Si c'est vrai alors le système de fichier est monté au chargement du disque de RAM initial. C'est toujours le cas par exemple du système de fichiers racine." #. type: item -#: guix-git/doc/guix.texi:14908 +#: guix-git/doc/guix.texi:15265 #, no-wrap msgid "@code{check?} (default: @code{#t})" msgstr "@code{check?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:14912 +#: guix-git/doc/guix.texi:15269 msgid "This Boolean indicates whether the file system should be checked for errors before being mounted. How and when this happens can be further adjusted with the following options." msgstr "Cette valeur booléenne indique si le système de fichier devrait être vérifié avant de le monter. Comment et quand cela se produit peut être réglé plus en détail avec les options suivantes." #. type: item -#: guix-git/doc/guix.texi:14913 +#: guix-git/doc/guix.texi:15270 #, no-wrap msgid "@code{skip-check-if-clean?} (default: @code{#t})" msgstr "@code{skip-check-if-clean?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:14918 +#: guix-git/doc/guix.texi:15275 msgid "When true, this Boolean indicates that a file system check triggered by @code{check?} may exit early if the file system is marked as ``clean'', meaning that it was previously correctly unmounted and should not contain errors." msgstr "Lorsqu'il a la valeur vrai, ce booléen indique qu'une vérification de système de fichier initiée par @code{check?} peut terminer prématurément si le système de fichier est marqué comme « propre », ce qui signifie qu'il a préalablement été démonté correctement and ne devrait contenir aucune erreur." #. type: table -#: guix-git/doc/guix.texi:14922 +#: guix-git/doc/guix.texi:15279 msgid "Setting this to false will always force a full consistency check when @code{check?} is true. This may take a very long time and is not recommended on healthy systems---in fact, it may reduce reliability!" msgstr "Lui affecter la valeur faux imposera toujours une vérification de cohérence complète si @code{check?} est à vrai. Cela peut prendre très longtemps et n'est pas recommandé sur des systèmes sains---en fait, cela pourrait même réduire la fiabilité !" #. type: table -#: guix-git/doc/guix.texi:14926 +#: guix-git/doc/guix.texi:15283 msgid "Conversely, some primitive file systems like @code{fat} do not keep track of clean shutdowns and will perform a full scan regardless of the value of this option." msgstr "À l'inverse, certains systèmes de fichiers primitifs comme @code{fat} ne gardent pas trace des arrêts propres et exécuteront une vérification complète sans tenir compte de la valeur de cette option." #. type: item -#: guix-git/doc/guix.texi:14927 +#: guix-git/doc/guix.texi:15284 #, no-wrap msgid "@code{repair} (default: @code{'preen})" msgstr "@code{repair} (par défaut : @code{'preen})" #. type: table -#: guix-git/doc/guix.texi:14930 +#: guix-git/doc/guix.texi:15287 msgid "When @code{check?} finds errors, it can (try to) repair them and continue booting. This option controls when and how to do so." msgstr "Quand @code{check?} trouve des erreurs, il peut (essayer de) les réparer pour poursuivre le démarrage. Cette option contrôle dans quel cas et de quelle manière appliquer cette stratégie." #. type: table -#: guix-git/doc/guix.texi:14934 +#: guix-git/doc/guix.texi:15291 msgid "If false, try not to modify the file system at all. Checking certain file systems like @code{jfs} may still write to the device to replay the journal. No repairs will be attempted." msgstr "À la valeur faux, il essayera de pas modifier le système de fichier du tout. Vérifier certains systèmes de fichiers comme @code{jfs} peut quand même provoquer des écritures sur le périphérique pour rejouer le journal. Aucune réparation ne sera tentée." #. type: table -#: guix-git/doc/guix.texi:14937 +#: guix-git/doc/guix.texi:15294 msgid "If @code{#t}, try to repair any errors found and assume ``yes'' to all questions. This will fix the most errors, but may be risky." msgstr "Si la valeur @code{#t} est renseignée, il essayera de récupérer toute erreur qu'il trouvera et supposera qu'il peut répondre « oui » à toutes les questions. Cela corrigera la plupart des erreurs, mais peut s'avérer risqué." #. type: table -#: guix-git/doc/guix.texi:14941 +#: guix-git/doc/guix.texi:15298 msgid "If @code{'preen}, repair only errors that are safe to fix without human interaction. What that means is left up to the developers of each file system and may be equivalent to ``none'' or ``all''." msgstr "Si elle vaut @code{'preen}, il ne réparera que les erreurs qui peuvent être corrigées sans risque en l'absence d'intervention humaine. Ce que cela signifie est laissé à l'appréciation des personnes qui développent chaque système de fichier et peut être équivalent à « aucune » ou « toutes »." #. type: item -#: guix-git/doc/guix.texi:14942 +#: guix-git/doc/guix.texi:15299 #, no-wrap msgid "@code{create-mount-point?} (default: @code{#f})" msgstr "@code{create-mount-point?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:14944 +#: guix-git/doc/guix.texi:15301 msgid "When true, the mount point is created if it does not exist yet." msgstr "Lorsque cette valeur est vraie, le point de montage est créé s'il n'existe pas déjà." #. type: item -#: guix-git/doc/guix.texi:14945 +#: guix-git/doc/guix.texi:15302 #, no-wrap msgid "@code{mount-may-fail?} (default: @code{#f})" msgstr "@code{mount-may-fail?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:14950 +#: guix-git/doc/guix.texi:15307 msgid "When true, this indicates that mounting this file system can fail but that should not be considered an error. This is useful in unusual cases; an example of this is @code{efivarfs}, a file system that can only be mounted on EFI/UEFI systems." msgstr "Lorsque cela est vrai, indique que le montage de ce système de fichiers peut échouer, mais cela ne doit pas être considéré comme une erreur. Ceci est utile dans des cas inhabituels ; un exemple de ceci est @code{efivarfs}, un système de fichiers qui ne peut être monté que sur des systèmes EFI/UEFI." #. type: item -#: guix-git/doc/guix.texi:14951 guix-git/doc/guix.texi:15347 +#: guix-git/doc/guix.texi:15308 guix-git/doc/guix.texi:15704 #, no-wrap msgid "@code{dependencies} (default: @code{'()})" msgstr "@code{dependencies} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:14955 +#: guix-git/doc/guix.texi:15312 msgid "This is a list of @code{} or @code{} objects representing file systems that must be mounted or mapped devices that must be opened before (and unmounted or closed after) this one." msgstr "C'est une liste d'objets @code{} ou @code{} qui représentent les systèmes de fichiers qui doivent être montés ou les périphériques mappés qui doivent être ouverts avant (et monté ou fermés après) celui-ci." #. type: table -#: guix-git/doc/guix.texi:14959 +#: guix-git/doc/guix.texi:15316 msgid "As an example, consider a hierarchy of mounts: @file{/sys/fs/cgroup} is a dependency of @file{/sys/fs/cgroup/cpu} and @file{/sys/fs/cgroup/memory}." msgstr "Par exemple, considérons une hiérarchie de montage : @file{/sys/fs/cgroup} est une dépendance de @file{/sys/fs/cgroup/cpu} et @file{/sys/fs/cgroup/memory}." #. type: table -#: guix-git/doc/guix.texi:14962 +#: guix-git/doc/guix.texi:15319 msgid "Another example is a file system that depends on a mapped device, for example for an encrypted partition (@pxref{Mapped Devices})." msgstr "Un autre exemple est un système de fichier qui dépend d'un périphérique mappé, par exemple pour une partition chiffrée (@pxref{Mapped Devices})." #. type: deffn -#: guix-git/doc/guix.texi:14965 +#: guix-git/doc/guix.texi:15322 #, no-wrap msgid "{Scheme Procedure} file-system-label @var{str}" msgstr "{Procédure Scheme} file-system-label @var{str}" #. type: deffn -#: guix-git/doc/guix.texi:14968 +#: guix-git/doc/guix.texi:15325 msgid "This procedure returns an opaque file system label from @var{str}, a string:" msgstr "Cette procédure renvoie un label de système de fichiers opaque à partir de @var{str}, une chaîne de caractères :" #. type: lisp -#: guix-git/doc/guix.texi:14972 +#: guix-git/doc/guix.texi:15329 #, no-wrap msgid "" "(file-system-label \"home\")\n" @@ -27580,104 +28249,104 @@ msgstr "" "@result{} #\n" #. type: deffn -#: guix-git/doc/guix.texi:14976 +#: guix-git/doc/guix.texi:15333 msgid "File system labels are used to refer to file systems by label rather than by device name. See above for examples." msgstr "Les étiquettes de systèmes de fichiers sont utilisées pour faire référence aux systèmes de fichiers par étiquette plutôt que par nom de dispositif. Voir ci-dessus pour des exemples." #. type: Plain text -#: guix-git/doc/guix.texi:14980 +#: guix-git/doc/guix.texi:15337 msgid "The @code{(gnu system file-systems)} exports the following useful variables." msgstr "Le module @code{(gnu system file-systems)} exporte les variables utiles suivantes." #. type: defvr -#: guix-git/doc/guix.texi:14981 +#: guix-git/doc/guix.texi:15338 #, no-wrap msgid "{Scheme Variable} %base-file-systems" msgstr "{Variable Scheme} %base-file-systems" #. type: defvr -#: guix-git/doc/guix.texi:14986 +#: guix-git/doc/guix.texi:15343 msgid "These are essential file systems that are required on normal systems, such as @code{%pseudo-terminal-file-system} and @code{%immutable-store} (see below). Operating system declarations should always contain at least these." msgstr "Ce sont les systèmes de fichiers essentiels qui sont requis sur les systèmes normaux, comme @code{%pseudo-terminal-file-system} et @code{%immutable-store} (voir plus bas). Les déclarations de systèmes d'exploitation devraient au moins les contenir." #. type: defvr -#: guix-git/doc/guix.texi:14988 +#: guix-git/doc/guix.texi:15345 #, no-wrap msgid "{Scheme Variable} %pseudo-terminal-file-system" msgstr "{Variable Scheme} %pseudo-terminal-file-system" #. type: defvr -#: guix-git/doc/guix.texi:14994 +#: guix-git/doc/guix.texi:15351 msgid "This is the file system to be mounted as @file{/dev/pts}. It supports @dfn{pseudo-terminals} created @i{via} @code{openpty} and similar functions (@pxref{Pseudo-Terminals,,, libc, The GNU C Library Reference Manual}). Pseudo-terminals are used by terminal emulators such as @command{xterm}." msgstr "C'est le système de fichier monté sur @file{/dev/pts}. Il supporte les @dfn{pseudo-terminaux} créés via @code{openpty} et les fonctions similaires (@pxref{Pseudo-Terminals,,, libc, The GNU C Library Reference Manual}). Les pseudo-terminaux sont utilisés par les émulateurs de terminaux comme @command{xterm}." #. type: defvr -#: guix-git/doc/guix.texi:14996 +#: guix-git/doc/guix.texi:15353 #, no-wrap msgid "{Scheme Variable} %shared-memory-file-system" msgstr "{Variable Scheme} %shared-memory-file-system" #. type: defvr -#: guix-git/doc/guix.texi:15000 +#: guix-git/doc/guix.texi:15357 msgid "This file system is mounted as @file{/dev/shm} and is used to support memory sharing across processes (@pxref{Memory-mapped I/O, @code{shm_open},, libc, The GNU C Library Reference Manual})." msgstr "Ce système de fichier est monté dans @file{/dev/shm} et est utilisé pour le partage de mémoire entre processus (@pxref{Memory-mapped I/O, @code{shm_open},, libc, The GNU C Library Reference Manual})." #. type: defvr -#: guix-git/doc/guix.texi:15002 +#: guix-git/doc/guix.texi:15359 #, no-wrap msgid "{Scheme Variable} %immutable-store" msgstr "{Variable Scheme} %immutable-store" #. type: defvr -#: guix-git/doc/guix.texi:15007 +#: guix-git/doc/guix.texi:15364 msgid "This file system performs a read-only ``bind mount'' of @file{/gnu/store}, making it read-only for all the users including @code{root}. This prevents against accidental modification by software running as @code{root} or by system administrators." msgstr "Ce système de fichiers effectue un « montage lié » en lecture-seule de @file{/gnu/store}, ce qui en fait un répertoire en lecture-seule pour tous les utilisateurs dont @code{root}. Cela évite que des logiciels qui tournent en @code{root} ou des administrateurs systèmes ne modifient accidentellement le dépôt." #. type: defvr -#: guix-git/doc/guix.texi:15010 +#: guix-git/doc/guix.texi:15367 msgid "The daemon itself is still able to write to the store: it remounts it read-write in its own ``name space.''" msgstr "Le démon lui-même est toujours capable d'écrire dans le dépôt : il est remonté en lecture-écriture dans son propre « espace de nom »." #. type: defvr -#: guix-git/doc/guix.texi:15012 +#: guix-git/doc/guix.texi:15369 #, no-wrap msgid "{Scheme Variable} %binary-format-file-system" msgstr "{Variable Scheme} %binary-format-file-system" #. type: defvr -#: guix-git/doc/guix.texi:15016 +#: guix-git/doc/guix.texi:15373 msgid "The @code{binfmt_misc} file system, which allows handling of arbitrary executable file types to be delegated to user space. This requires the @code{binfmt.ko} kernel module to be loaded." msgstr "Le système de fichiers @code{binfmt_misc}, qui permet de gérer n'importe quel type de fichiers exécutables à déléguer en espace utilisateur. Cela demande que le module du noyau @code{binfmt.ko} soit chargé." #. type: defvr -#: guix-git/doc/guix.texi:15018 +#: guix-git/doc/guix.texi:15375 #, no-wrap msgid "{Scheme Variable} %fuse-control-file-system" msgstr "{Variable Scheme} %fuse-control-file-system" #. type: defvr -#: guix-git/doc/guix.texi:15022 +#: guix-git/doc/guix.texi:15379 msgid "The @code{fusectl} file system, which allows unprivileged users to mount and unmount user-space FUSE file systems. This requires the @code{fuse.ko} kernel module to be loaded." msgstr "Le système de fichiers @code{fusectl}, qui permet à des utilisateurs non privilégiés de monter et de démonter des systèmes de fichiers FUSE en espace utilisateur. Cela requiert que le module du noyau @code{fuse.ko} soit chargé." #. type: Plain text -#: guix-git/doc/guix.texi:15026 +#: guix-git/doc/guix.texi:15383 msgid "The @code{(gnu system uuid)} module provides tools to deal with file system ``unique identifiers'' (UUIDs)." msgstr "Le module @code{(gnu system uuid)} fournit les outils pour traiter les « identifiants uniques » de système de fichier (UUIDs)." #. type: deffn -#: guix-git/doc/guix.texi:15027 +#: guix-git/doc/guix.texi:15384 #, no-wrap msgid "{Scheme Procedure} uuid @var{str} [@var{type}]" msgstr "{Procédure Scheme} uuid @var{type} [@var{value}]" #. type: deffn -#: guix-git/doc/guix.texi:15030 +#: guix-git/doc/guix.texi:15387 msgid "Return an opaque UUID (unique identifier) object of the given @var{type} (a symbol) by parsing @var{str} (a string):" msgstr "Renvoie un objet UUID (identifiant unique) opaque du @var{type} donné (un symbole) en analysant @var{str} (une chaîne) :" #. type: lisp -#: guix-git/doc/guix.texi:15034 +#: guix-git/doc/guix.texi:15391 #, no-wrap msgid "" "(uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\")\n" @@ -27689,7 +28358,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15037 +#: guix-git/doc/guix.texi:15394 #, no-wrap msgid "" "(uuid \"1234-ABCD\" 'fat)\n" @@ -27699,33 +28368,33 @@ msgstr "" "@result{} # type: fat bv: @dots{}>\n" #. type: deffn -#: guix-git/doc/guix.texi:15041 +#: guix-git/doc/guix.texi:15398 msgid "@var{type} may be one of @code{dce}, @code{iso9660}, @code{fat}, @code{ntfs}, or one of the commonly found synonyms for these." msgstr "@var{type} peut être l'un des codes suivants : @code{dce}, @code{iso9660}, @code{fat}, @code{ntfs}, ou l'un des synonymes les plus courants." #. type: deffn -#: guix-git/doc/guix.texi:15044 +#: guix-git/doc/guix.texi:15401 msgid "UUIDs are another way to unambiguously refer to file systems in operating system configuration. See the examples above." msgstr "Les UUIDs sont un autre moyen de faire référence sans ambiguïté aux systèmes de fichiers dans la configuration du système d'exploitation. Voir les exemples ci-dessus." #. type: subsection -#: guix-git/doc/guix.texi:15047 guix-git/doc/guix.texi:15048 +#: guix-git/doc/guix.texi:15404 guix-git/doc/guix.texi:15405 #, no-wrap msgid "Btrfs file system" msgstr "Système de fichier Btrfs" #. type: Plain text -#: guix-git/doc/guix.texi:15054 +#: guix-git/doc/guix.texi:15411 msgid "The Btrfs has special features, such as subvolumes, that merit being explained in more details. The following section attempts to cover basic as well as complex uses of a Btrfs file system with the Guix System." msgstr "Btrfs a des particularités, comme les sous-volumes, qui méritent d'être expliquées plus en détail. La section suivante tente de couvrir les utilisations de base ainsi que les utilisations complexes d'un système de fichiers Btrfs avec le système Guix." #. type: Plain text -#: guix-git/doc/guix.texi:15057 +#: guix-git/doc/guix.texi:15414 msgid "In its simplest usage, a Btrfs file system can be described, for example, by:" msgstr "Dans son usage le plus simple, un système de fichier Btrfs peut être décrit, par exemple, par :" #. type: lisp -#: guix-git/doc/guix.texi:15063 +#: guix-git/doc/guix.texi:15420 #, no-wrap msgid "" "(file-system\n" @@ -27739,12 +28408,12 @@ msgstr "" " (device (file-system-label \"my-home\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15069 +#: guix-git/doc/guix.texi:15426 msgid "The example below is more complex, as it makes use of a Btrfs subvolume, named @code{rootfs}. The parent Btrfs file system is labeled @code{my-btrfs-pool}, and is located on an encrypted device (hence the dependency on @code{mapped-devices}):" msgstr "L'exemple ci-dessous est plus complexe, car il utilise un sous-volume de Btrfs, nommé @code{rootfs}. Le système de fichiers Btrfs parent est appelé @code{my-btrfs-pool}, et se trouve sur un périphérique crypté (d'où la dépendance à l'égard de @code{mapped-devices}) :" #. type: lisp -#: guix-git/doc/guix.texi:15077 +#: guix-git/doc/guix.texi:15434 #, no-wrap msgid "" "(file-system\n" @@ -27762,17 +28431,17 @@ msgstr "" " (dependencies mapped-devices))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15088 +#: guix-git/doc/guix.texi:15445 msgid "Some bootloaders, for example GRUB, only mount a Btrfs partition at its top level during the early boot, and rely on their configuration to refer to the correct subvolume path within that top level. The bootloaders operating in this way typically produce their configuration on a running system where the Btrfs partitions are already mounted and where the subvolume information is readily available. As an example, @command{grub-mkconfig}, the configuration generator command shipped with GRUB, reads @file{/proc/self/mountinfo} to determine the top-level path of a subvolume." msgstr "Certains chargeurs d'amorçage, par exemple GRUB, ne montent une partition Btrfs qu'à son niveau supérieur au début du démarrage, et s'appuient sur leur configuration pour se référer au chemin correct du sous-volume à l'intérieur de ce niveau supérieur. Les chargeurs d'amorçage fonctionnant de cette manière produisent généralement leur configuration sur un système en cours d'exécution où les partitions Btrfs sont déjà montées et où les informations sur les sous-volumes sont facilement disponibles. Par exemple, @command{grub-mkconfig}, la commande de générateur de configuration livrée avec GRUB, lit @file{/proc/self/mountinfo} pour déterminer le chemin de niveau supérieur d'un sous-volume." #. type: Plain text -#: guix-git/doc/guix.texi:15096 +#: guix-git/doc/guix.texi:15453 msgid "The Guix System produces a bootloader configuration using the operating system configuration as its sole input; it is therefore necessary to extract the subvolume name on which @file{/gnu/store} lives (if any) from that operating system configuration. To better illustrate, consider a subvolume named 'rootfs' which contains the root file system data. In such situation, the GRUB bootloader would only see the top level of the root Btrfs partition, e.g.:" msgstr "Guix System produit une configuration de bootloader en utilisant la configuration du système d'exploitation comme seule entrée ; il est donc nécessaire d'extraire le nom du sous-volume sur lequel vit @file{/gnu/store} (s'il existe) de cette configuration du système d'exploitation. Pour mieux illustrer cela, considérons un sous-volume nommé \"rootfs\" qui contient les données du système de fichiers racine. Dans une telle situation, le chargeur de démarrage GRUB ne verrait que le niveau supérieur de la partition Btrfs de la racine, par exemple :" #. type: example -#: guix-git/doc/guix.texi:15103 +#: guix-git/doc/guix.texi:15460 #, no-wrap msgid "" "/ (top level)\n" @@ -27788,17 +28457,17 @@ msgstr "" "[...]\n" #. type: Plain text -#: guix-git/doc/guix.texi:15108 +#: guix-git/doc/guix.texi:15465 msgid "Thus, the subvolume name must be prepended to the @file{/gnu/store} path of the kernel, initrd binaries and any other files referred to in the GRUB configuration that must be found during the early boot." msgstr "Ainsi, le nom du sous-volume doit être précédé du chemin @file{/gnu/store} du noyau, des binaires initrd et de tout autre fichier mentionné dans la configuration GRUB qui doit être trouvé au début du démarrage." #. type: Plain text -#: guix-git/doc/guix.texi:15111 +#: guix-git/doc/guix.texi:15468 msgid "The next example shows a nested hierarchy of subvolumes and directories:" msgstr "L'exemple suivant montre une hiérarchie imbriquée de sous-volumes et de répertoires :" #. type: example -#: guix-git/doc/guix.texi:15118 +#: guix-git/doc/guix.texi:15475 #, no-wrap msgid "" "/ (top level)\n" @@ -27814,17 +28483,17 @@ msgstr "" "[...]\n" #. type: Plain text -#: guix-git/doc/guix.texi:15125 +#: guix-git/doc/guix.texi:15482 msgid "This scenario would work without mounting the 'store' subvolume. Mounting 'rootfs' is sufficient, since the subvolume name matches its intended mount point in the file system hierarchy. Alternatively, the 'store' subvolume could be referred to by setting the @code{subvol} option to either @code{/rootfs/gnu/store} or @code{rootfs/gnu/store}." msgstr "Ce scénario fonctionnerait sans monter le sous-volume « store ». Le montage de \"rootfs\" est suffisant, puisque le nom du sous-volume correspond à son point de montage prévu dans la hiérarchie du système de fichiers. Une autre solution consiste à faire référence au sous-volume « store » en définissant l'option @code{subvol} soit @code{/rootfs/gnu/store} soit @code{rootfs/gnu/store}." #. type: Plain text -#: guix-git/doc/guix.texi:15127 +#: guix-git/doc/guix.texi:15484 msgid "Finally, a more contrived example of nested subvolumes:" msgstr "Enfin, un exemple plus élaboré de sous-volumes imbriqués :" #. type: example -#: guix-git/doc/guix.texi:15134 +#: guix-git/doc/guix.texi:15491 #, no-wrap msgid "" "/ (top level)\n" @@ -27840,12 +28509,12 @@ msgstr "" "[...]\n" #. type: Plain text -#: guix-git/doc/guix.texi:15141 +#: guix-git/doc/guix.texi:15498 msgid "Here, the 'guix-store' subvolume doesn't match its intended mount point, so it is necessary to mount it. The subvolume must be fully specified, by passing its file name to the @code{subvol} option. To illustrate, the 'guix-store' subvolume could be mounted on @file{/gnu/store} by using a file system declaration such as:" msgstr "Ici, le sous-volume « guix-store » ne correspond pas à son point de montage prévu, il est donc nécessaire de le monter. Le sous-volume doit être entièrement spécifié, en passant son nom de fichier à l'option @code{subvol}. Par exemple, le sous-volume « guix-store » peut être monté sur @file{/gnu/store} en utilisant une déclaration de système de fichiers telle que :" #. type: lisp -#: guix-git/doc/guix.texi:15149 +#: guix-git/doc/guix.texi:15506 #, no-wrap msgid "" "(file-system\n" @@ -27863,128 +28532,128 @@ msgstr "" "compress-force=zstd,space_cache=v2\"))\n" #. type: cindex -#: guix-git/doc/guix.texi:15154 +#: guix-git/doc/guix.texi:15511 #, no-wrap msgid "device mapping" msgstr "mappage de périphériques" #. type: cindex -#: guix-git/doc/guix.texi:15155 +#: guix-git/doc/guix.texi:15512 #, no-wrap msgid "mapped devices" msgstr "périphériques mappés" #. type: Plain text -#: guix-git/doc/guix.texi:15172 +#: guix-git/doc/guix.texi:15529 msgid "The Linux kernel has a notion of @dfn{device mapping}: a block device, such as a hard disk partition, can be @dfn{mapped} into another device, usually in @code{/dev/mapper/}, with additional processing over the data that flows through it@footnote{Note that the GNU@tie{}Hurd makes no difference between the concept of a ``mapped device'' and that of a file system: both boil down to @emph{translating} input/output operations made on a file to operations on its backing store. Thus, the Hurd implements mapped devices, like file systems, using the generic @dfn{translator} mechanism (@pxref{Translators,,, hurd, The GNU Hurd Reference Manual}).}. A typical example is encryption device mapping: all writes to the mapped device are encrypted, and all reads are deciphered, transparently. Guix extends this notion by considering any device or set of devices that are @dfn{transformed} in some way to create a new device; for instance, RAID devices are obtained by @dfn{assembling} several other devices, such as hard disks or partitions, into a new one that behaves as one partition." msgstr "Le noyau Linux a une notion de @dfn{mappage de périphériques} : un périphérique bloc, comme une partition sur un disque dur, peut être @dfn{mappé} sur un autre périphérique, typiquement dans @code{/dev/mapper}, avec des calculs supplémentaires sur les données qui naviguent entre les deux@footnote{Remarquez que le Hurd ne fait pas de différence entre le concept de « périphérique mappé » et celle d'un système de fichiers : les deux correspondent à la @emph{traduction} des opérations d'entrée-sortie faites sur un fichier en des opérations sur ce qui le contient. Ainsi, le Hurd implémente les périphériques mappés, comme les systèmes de fichiers, avec le mécanisme des @dfn{traducteurs} générique (@pxref{Translators,,, hurd, The GNU Hurd Reference Manual}).}. Un exemple typique est le mappage de périphériques chiffrés : toutes les écritures sont sur le périphérique mappé sont chiffrées, toutes les lectures déchiffrées, de manière transparente. Guix étend cette notion en considérant que tout périphérique ou ensemble de périphériques qui sont @dfn{transformés} d'une certaine manière créent un nouveau périphérique ; par exemple, les périphériques RAID sont obtenus en @dfn{assemblant} plusieurs autres périphériques, comme des disque ou des partitions, en un nouveau périphérique en tant qu'unique partition." #. type: Plain text -#: guix-git/doc/guix.texi:15175 +#: guix-git/doc/guix.texi:15532 msgid "Mapped devices are declared using the @code{mapped-device} form, defined as follows; for examples, see below." msgstr "Les périphériques mappés sont déclarés avec la forme @code{mapped-device}, définie comme suit ; par exemple, voir ci-dessous." #. type: deftp -#: guix-git/doc/guix.texi:15176 +#: guix-git/doc/guix.texi:15533 #, no-wrap msgid "{Data Type} mapped-device" msgstr "{Type de données} mapped-device" #. type: deftp -#: guix-git/doc/guix.texi:15179 +#: guix-git/doc/guix.texi:15536 msgid "Objects of this type represent device mappings that will be made when the system boots up." msgstr "Les objets de ce type représentent des mappages de périphériques qui seront effectués au démarrage du système." #. type: table -#: guix-git/doc/guix.texi:15186 +#: guix-git/doc/guix.texi:15543 msgid "This is either a string specifying the name of the block device to be mapped, such as @code{\"/dev/sda3\"}, or a list of such strings when several devices need to be assembled for creating a new one. In case of LVM this is a string specifying name of the volume group to be mapped." msgstr "C'est soit une chaîne qui spécifie le nom d'un périphérique bloc à projeter, comme @code{\"/dev/sda3\"}, soit une liste de plusieurs périphériques à assembler pour en créer un nouveau. Dans le cas de LVM, c'est une chaîne spécifiant le nom du groupe de volume à projeter." #. type: code{#1} -#: guix-git/doc/guix.texi:15187 guix-git/doc/guix.texi:15342 +#: guix-git/doc/guix.texi:15544 guix-git/doc/guix.texi:15699 #, no-wrap msgid "target" msgstr "target" #. type: table -#: guix-git/doc/guix.texi:15196 +#: guix-git/doc/guix.texi:15553 msgid "This string specifies the name of the resulting mapped device. For kernel mappers such as encrypted devices of type @code{luks-device-mapping}, specifying @code{\"my-partition\"} leads to the creation of the @code{\"/dev/mapper/my-partition\"} device. For RAID devices of type @code{raid-device-mapping}, the full device name such as @code{\"/dev/md0\"} needs to be given. LVM logical volumes of type @code{lvm-device-mapping} need to be specified as @code{\"VGNAME-LVNAME\"}." msgstr "Cette chaîne spécifie le nom du périphérique mappé qui en résulte. Pour les mappeurs noyaux comme les périphériques chiffrés de type @code{luks-device-mapping}, spécifier @code{\"ma-partition\"} crée le périphérique @code{\"/dev/mapper/ma-partition\"}. Pour les périphériques RAID de type @code{raid-device-mapping}, il faut donner le nom complet comme @code{\"/dev/md0\"}. Les volumes logiques LVM de type @code{lvm-device-mapping} doivent être spécifiés comme étant @code{\"VGNAME-LVNAME\"}." #. type: code{#1} -#: guix-git/doc/guix.texi:15197 guix-git/doc/guix.texi:34634 +#: guix-git/doc/guix.texi:15554 guix-git/doc/guix.texi:35073 #, no-wrap msgid "targets" msgstr "targets" #. type: table -#: guix-git/doc/guix.texi:15200 +#: guix-git/doc/guix.texi:15557 msgid "This list of strings specifies names of the resulting mapped devices in case there are several. The format is identical to @var{target}." msgstr "Cette liste de chaînes spécifie les noms des périphériques projetés s'il y en a plusieurs. Le format est identique à @var{target}." #. type: table -#: guix-git/doc/guix.texi:15204 +#: guix-git/doc/guix.texi:15561 msgid "This must be a @code{mapped-device-kind} object, which specifies how @var{source} is mapped to @var{target}." msgstr "Ce doit être un objets @code{mapped-device-kind}, qui spécifie comment @var{source} est mappés sur @var{target}." #. type: defvr -#: guix-git/doc/guix.texi:15207 +#: guix-git/doc/guix.texi:15564 #, no-wrap msgid "{Scheme Variable} luks-device-mapping" msgstr "{Variable Scheme} luks-device-mapping" #. type: defvr -#: guix-git/doc/guix.texi:15211 +#: guix-git/doc/guix.texi:15568 msgid "This defines LUKS block device encryption using the @command{cryptsetup} command from the package with the same name. It relies on the @code{dm-crypt} Linux kernel module." msgstr "Cela définie les périphériques blocs chiffrés en LUKS avec @command{cryptsetup} du paquet du même nom. Elle s'appuie sur le module du noyau Linux @code{dm-crypt}." #. type: defvr -#: guix-git/doc/guix.texi:15213 +#: guix-git/doc/guix.texi:15570 #, no-wrap msgid "{Scheme Variable} raid-device-mapping" msgstr "{Variable Scheme} raid-device-mapping" #. type: defvr -#: guix-git/doc/guix.texi:15218 +#: guix-git/doc/guix.texi:15575 msgid "This defines a RAID device, which is assembled using the @code{mdadm} command from the package with the same name. It requires a Linux kernel module for the appropriate RAID level to be loaded, such as @code{raid456} for RAID-4, RAID-5 or RAID-6, or @code{raid10} for RAID-10." msgstr "Cela définie un périphérique RAID qui est assemblé avec la commande @code{mdadm} du paquet du même nom. Elle nécessite un module noyau Linux approprié pour le niveau RAID chargé, comme @code{raid456} pour RAID-4, RAID-5 et RAID-6 ou @code{raid10} pour RAID-10." #. type: cindex -#: guix-git/doc/guix.texi:15220 +#: guix-git/doc/guix.texi:15577 #, no-wrap msgid "LVM, logical volume manager" msgstr "LVM, gestionnaire de volume logique" #. type: defvr -#: guix-git/doc/guix.texi:15221 +#: guix-git/doc/guix.texi:15578 #, no-wrap msgid "{Scheme Variable} lvm-device-mapping" msgstr "{Variable Scheme} lvm-device-mapping" #. type: defvr -#: guix-git/doc/guix.texi:15226 +#: guix-git/doc/guix.texi:15583 msgid "This defines one or more logical volumes for the Linux @uref{https://www.sourceware.org/lvm2/, Logical Volume Manager (LVM)}. The volume group is activated by the @command{vgchange} command from the @code{lvm2} package." msgstr "Cela définie un ou plusieurs volumes logiques pour le @uref{https://www.sourceware.org/lvm2/, Gestionnaire de Volume Logique (LVM)} de Linux. Le groupe de volume est activé par la commande @command{vgchange} du paquet @code{lvm2}." #. type: cindex -#: guix-git/doc/guix.texi:15228 +#: guix-git/doc/guix.texi:15585 #, no-wrap msgid "disk encryption" msgstr "chiffrement du disque" #. type: cindex -#: guix-git/doc/guix.texi:15229 +#: guix-git/doc/guix.texi:15586 #, no-wrap msgid "LUKS" msgstr "LUKS" #. type: Plain text -#: guix-git/doc/guix.texi:15237 +#: guix-git/doc/guix.texi:15594 msgid "The following example specifies a mapping from @file{/dev/sda3} to @file{/dev/mapper/home} using LUKS---the @url{https://gitlab.com/cryptsetup/cryptsetup,Linux Unified Key Setup}, a standard mechanism for disk encryption. The @file{/dev/mapper/home} device can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems})." msgstr "L'exemple suivant spécifie un mappage de @file{/dev/sda3} vers @file{/dev/mapper/home} avec LUKS — @url{https://gitlab.com/cryptsetup/cryptsetup,Linux Unified Key Setup}, un mécanisme standard pour chiffrer les disques. Le périphérique @file{/dev/mapper/home} peut ensuite être utilisé comme @code{device} d'une déclaration @code{file-system} (@pxref{File Systems})." #. type: lisp -#: guix-git/doc/guix.texi:15243 +#: guix-git/doc/guix.texi:15600 #, no-wrap msgid "" "(mapped-device\n" @@ -27998,23 +28667,23 @@ msgstr "" " (type luks-device-mapping))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15248 +#: guix-git/doc/guix.texi:15605 msgid "Alternatively, to become independent of device numbering, one may obtain the LUKS UUID (@dfn{unique identifier}) of the source device by a command like:" msgstr "Autrement, pour devenir indépendant du numéro de périphérique, on peut obtenir l'UUID LUKS (@dfn{l'identifiant unique}) du périphérique source avec une commande comme :" #. type: example -#: guix-git/doc/guix.texi:15251 +#: guix-git/doc/guix.texi:15608 #, no-wrap msgid "cryptsetup luksUUID /dev/sda3\n" msgstr "cryptsetup luksUUID /dev/sda3\n" #. type: Plain text -#: guix-git/doc/guix.texi:15254 +#: guix-git/doc/guix.texi:15611 msgid "and use it as follows:" msgstr "et l'utiliser ainsi :" #. type: lisp -#: guix-git/doc/guix.texi:15260 +#: guix-git/doc/guix.texi:15617 #, no-wrap msgid "" "(mapped-device\n" @@ -28028,23 +28697,23 @@ msgstr "" " (type luks-device-mapping))\n" #. type: cindex -#: guix-git/doc/guix.texi:15262 +#: guix-git/doc/guix.texi:15619 #, no-wrap msgid "swap encryption" msgstr "chiffrement de l'espace d'échange" #. type: Plain text -#: guix-git/doc/guix.texi:15269 +#: guix-git/doc/guix.texi:15626 msgid "It is also desirable to encrypt swap space, since swap space may contain sensitive data. One way to accomplish that is to use a swap file in a file system on a device mapped via LUKS encryption. In this way, the swap file is encrypted because the entire device is encrypted. @xref{Swap Space}, or @xref{Preparing for Installation,,Disk Partitioning}, for an example." msgstr "Il est aussi désirable de chiffrer l'espace d'échange, puisque l'espace d'échange peut contenir des données sensibles. Une manière de faire cela est d'utiliser un fichier d'échange dans un système de fichiers sur un périphérique mappé avec un chiffrement LUKS. De cette manière, le fichier d'échange est chiffré parce que tout le périphérique est chiffré. @xref{Swap Space} ou @xref{Preparing for Installation,,Disk Partitioning}, pour un exemple." #. type: Plain text -#: guix-git/doc/guix.texi:15272 +#: guix-git/doc/guix.texi:15629 msgid "A RAID device formed of the partitions @file{/dev/sda1} and @file{/dev/sdb1} may be declared as follows:" msgstr "Un périphérique RAID formé des partitions @file{/dev/sda1} et @file{/dev/sdb1} peut être déclaré ainsi :" #. type: lisp -#: guix-git/doc/guix.texi:15278 +#: guix-git/doc/guix.texi:15635 #, no-wrap msgid "" "(mapped-device\n" @@ -28058,17 +28727,17 @@ msgstr "" " (type raid-device-mapping))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15285 +#: guix-git/doc/guix.texi:15642 msgid "The @file{/dev/md0} device can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems}). Note that the RAID level need not be given; it is chosen during the initial creation and formatting of the RAID device and is determined automatically later." msgstr "Le périphérique @file{/dev/md0} peut ensuite être utilisé comme @code{device} d'une déclaration @code{file-system} (@pxref{File Systems}). Remarquez que le niveau de RAID n'a pas besoin d'être donné ; il est choisi pendant la création initiale du périphérique RAID et est ensuite déterminé automatiquement." #. type: Plain text -#: guix-git/doc/guix.texi:15288 +#: guix-git/doc/guix.texi:15645 msgid "LVM logical volumes ``alpha'' and ``beta'' from volume group ``vg0'' can be declared as follows:" msgstr "Les volumes logiques LVM « alpha » et « beta » du groupe de volumes « vg0 » se déclarent de cette façon :" #. type: lisp -#: guix-git/doc/guix.texi:15294 +#: guix-git/doc/guix.texi:15651 #, no-wrap msgid "" "(mapped-device\n" @@ -28082,102 +28751,102 @@ msgstr "" " (type lvm-device-mapping))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15299 +#: guix-git/doc/guix.texi:15656 msgid "Devices @file{/dev/mapper/vg0-alpha} and @file{/dev/mapper/vg0-beta} can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems})." msgstr "Les périphériques @file{/dev/mapper/vg0-alpha} et @file{/dev/mapper/vg0-beta} sont maintenant utilisables comme @code{device} d'une déclaration @code{file-system} (@pxref{File Systems})." #. type: cindex -#: guix-git/doc/guix.texi:15302 +#: guix-git/doc/guix.texi:15659 #, no-wrap msgid "swap space" msgstr "espace d'échange" #. type: Plain text -#: guix-git/doc/guix.texi:15312 +#: guix-git/doc/guix.texi:15669 msgid "Swap space, as it is commonly called, is a disk area specifically designated for paging: the process in charge of memory management (the Linux kernel or Hurd's default pager) can decide that some memory pages stored in RAM which belong to a running program but are unused should be stored on disk instead. It unloads those from the RAM, freeing up precious fast memory, and writes them to the swap space. If the program tries to access that very page, the memory management process loads it back into memory for the program to use." msgstr "Un espace d'échange est un espace disque spécifiquement dédié à la pagination mémoire : le processus en charge de la gestion de la mémoire (le noyau Linux ou le gestionnaire par défaut du Hurd) peut décider que certaines pages mémoire stockées en RAM qui appartiennent à un processus en cours d'exécution mais qui sont inutilisées devraient plutôt être stockées sur disque. Il les décharge de la RAM pour libérer la précieuse mémoire rapide, et les écrit sur l'espace d'échange. Si le programme essaye d'accéder à la page, le processus de gestion de la mémoire la charge à nouveau dans la mémoire pour que le programme puisse l'utiliser." #. type: Plain text -#: guix-git/doc/guix.texi:15318 +#: guix-git/doc/guix.texi:15675 msgid "A common misconception about swap is that it is only useful when small amounts of RAM are available to the system. However, it should be noted that kernels often use all available RAM for disk access caching to make I/O faster, and thus paging out unused portions of program memory will expand the RAM available for such caching." msgstr "Une idée fausse répandue sur l'espace d'échange est qu'il n'est utile que lorsque seule une petite quantité de RAM est disponible sur le système. En réalité, vous devriez savoir que les noyaux utilisent souvent toute la RAM disponible pour le cache des accès disques pour rendre les opérations d'entrée-sortie plus rapides. En conséquence, déplacer des pages mémoire inutilisées augmentera la quantité de RAM disponible pour ce cache." #. type: Plain text -#: guix-git/doc/guix.texi:15322 +#: guix-git/doc/guix.texi:15679 msgid "For a more detailed description of how memory is managed from the viewpoint of a monolithic kernel, @xref{Memory Concepts,,, libc, The GNU C Library Reference Manual}." msgstr "Pour une description plus complète de la gestion de la mémoire du point de vue d'un noyau monolithique, @xref{Memory Concepts,,, libc, le manuel de référence de la bibliothèque C de GNU}." #. type: Plain text -#: guix-git/doc/guix.texi:15331 +#: guix-git/doc/guix.texi:15688 msgid "The Linux kernel has support for swap partitions and swap files: the former uses a whole disk partition for paging, whereas the second uses a file on a file system for that (the file system driver needs to support it). On a comparable setup, both have the same performance, so one should consider ease of use when deciding between them. Partitions are ``simpler'' and do not need file system support, but need to be allocated at disk formatting time (logical volumes notwithstanding), whereas files can be allocated and deallocated at any time." msgstr "Le noyau Linux prend en charge les partitions d'échanges et les fichiers d'échange : le premier utilise une partition disque complète pour la pagination, alors que le second utilise un fichier sur un système de fichiers pour cela (le pilote du système de fichiers doit le prendre en charge). Pour une configuration comparable, les deux ont les mêmes performances, donc vous devriez considérer la facilité d'utilisation pour vous décider entre les deux. Les partitions sont « plus simples » et n'ont pas besoin de la prise en charge dans le système de fichiers, mais ont besoin d'être allouées au formatage du disque (en oubliant les volumes logiques), alors que les fichiers peuvent être alloués et désalloués à n'importe quel moment." #. type: Plain text -#: guix-git/doc/guix.texi:15336 +#: guix-git/doc/guix.texi:15693 msgid "Note that swap space is not zeroed on shutdown, so sensitive data (such as passwords) may linger on it if it was paged out. As such, you should consider having your swap reside on an encrypted device (@pxref{Mapped Devices})." msgstr "Remarquez que l'espace d'échange n'est pas remis à zéro à l'extinction donc les données sensibles (comme les mots de passe) peuvent y rester si elles y ont été déplacées. De fait, vous devriez faire résider votre espace d'échange sur un périphérique chiffré (@pxref{Mapped Devices})." #. type: deftp -#: guix-git/doc/guix.texi:15337 +#: guix-git/doc/guix.texi:15694 #, no-wrap msgid "{Data Type} swap-space" msgstr "{Type de données} swap-space" #. type: deftp -#: guix-git/doc/guix.texi:15340 +#: guix-git/doc/guix.texi:15697 msgid "Objects of this type represent swap spaces. They contain the following members:" msgstr "Les objets de ce type représentent des espaces d'échange. Ils contiennent les membres suivants :" #. type: table -#: guix-git/doc/guix.texi:15346 +#: guix-git/doc/guix.texi:15703 msgid "The device or file to use, either a UUID, a @code{file-system-label} or a string, as in the definition of a @code{file-system} (@pxref{File Systems})." msgstr "Le périphérique ou le fichier à utiliser, soit un UUID, soit un @code{file-system-label}, soit une chaine, comme dans la définition d'un @code{file-system} (@pxref{File Systems})." #. type: table -#: guix-git/doc/guix.texi:15353 +#: guix-git/doc/guix.texi:15710 msgid "A list of @code{file-system} or @code{mapped-device} objects, upon which the availability of the space depends. Note that just like for @code{file-system} objects, dependencies which are needed for boot and mounted in early userspace are not managed by the Shepherd, and so automatically filtered out for you." msgstr "Une liste de d'objets @code{file-system} ou @code{mapped-device}, dont dépend la disponibilité de l'espace. Remarquez que, tout comme pour les objets @code{file-system}, les dépendances qui sont requises au démarrage et montées au plus tôt en espace utilisateur ne sont pas gérées par le Shepherd, et sont donc automatiquement retirées pour vous." #. type: item -#: guix-git/doc/guix.texi:15354 +#: guix-git/doc/guix.texi:15711 #, no-wrap msgid "@code{priority} (default: @code{#f})" msgstr "@code{priority} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:15361 +#: guix-git/doc/guix.texi:15718 msgid "Only supported by the Linux kernel. Either @code{#f} to disable swap priority, or an integer between 0 and 32767. The kernel will first use swap spaces of higher priority when paging, and use same priority spaces on a round-robin basis. The kernel will use swap spaces without a set priority after prioritized spaces, and in the order that they appeared in (not round-robin)." msgstr "Seulement pris en charge par le noyau Linux. Soit @code{#f} pour désactive la priorité de l'espace d'échange, soit un entier entre 0 et 32767. Le noyau utilisera d'abord les espaces d'échange avec la plus grande priorité, et utilisera les espaces d'échange de même priorité à tour de rôle. Le noyau utilisera les espaces d'échange sans priorité après les espaces prioritaires, et dans l'ordre dans lequel ils sont apparus (donc pas à tour de rôle)." #. type: item -#: guix-git/doc/guix.texi:15362 +#: guix-git/doc/guix.texi:15719 #, no-wrap msgid "@code{discard?} (default: @code{#f})" msgstr "@code{discard?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:15366 +#: guix-git/doc/guix.texi:15723 msgid "Only supported by the Linux kernel. When true, the kernel will notify the disk controller of discarded pages, for example with the TRIM operation on Solid State Drives." msgstr "Uniquement pris en charge par le noyau Linux. Lorsque la valeur est vraie, le noyau notifiera le contrôleur de disque des pages supprimées, par exemple avec l'opération TRIM sur les disques SSD." #. type: Plain text -#: guix-git/doc/guix.texi:15371 +#: guix-git/doc/guix.texi:15728 msgid "Here are some examples:" msgstr "Voici quelques exemples :" #. type: lisp -#: guix-git/doc/guix.texi:15374 +#: guix-git/doc/guix.texi:15731 #, no-wrap msgid "(swap-space (target (uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\")))\n" msgstr "(swap-space (target (uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15379 +#: guix-git/doc/guix.texi:15736 msgid "Use the swap partition with the given UUID@. You can learn the UUID of a Linux swap partition by running @command{swaplabel @var{device}}, where @var{device} is the @file{/dev} file name of that partition." msgstr "Utilise la partition de swap avec l'UUID donné. Vous pouvez voir l'UUID d'une partition de swap Linux en lançant @command{swaplabel @var{device}}, où @var{device} est le nom de fichier @file{/dev} de cette partition." #. type: lisp -#: guix-git/doc/guix.texi:15384 +#: guix-git/doc/guix.texi:15741 #, no-wrap msgid "" "(swap-space\n" @@ -28189,12 +28858,12 @@ msgstr "" " (dependencies (list lvm-device)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15390 +#: guix-git/doc/guix.texi:15747 msgid "Use the partition with label @code{swap}, which can be found after the @var{lvm-device} mapped device has been opened. Again, the @command{swaplabel} command allows you to view and change the label of a Linux swap partition." msgstr "Utilise la partition avec l'étiquette @code{swap}, qui peut être trouvée après que le périphérique mappé @var{lvm-device} a été ouvert. De nouveau, la commande @command{swaplabel} vous permet de voir et de changer l'étiquette d'une partition swap de Linux." #. type: lisp -#: guix-git/doc/guix.texi:15395 +#: guix-git/doc/guix.texi:15752 #, no-wrap msgid "" "(swap-space\n" @@ -28206,35 +28875,35 @@ msgstr "" " (dependencies (list btrfs-fs)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15399 +#: guix-git/doc/guix.texi:15756 msgid "Use the file @file{/btrfs/swapfile} as swap space, which is present on the @var{btrfs-fs} filesystem." msgstr "utilise le fichier @file{/btrfs/swapfile} comme espace d'échange, qui est présent sur le système de fichiers @var{btrfs-fs}." #. type: cindex -#: guix-git/doc/guix.texi:15403 +#: guix-git/doc/guix.texi:15760 #, no-wrap msgid "users" msgstr "utilisateurs" #. type: cindex -#: guix-git/doc/guix.texi:15404 +#: guix-git/doc/guix.texi:15761 #, no-wrap msgid "accounts" msgstr "comptes" #. type: cindex -#: guix-git/doc/guix.texi:15405 +#: guix-git/doc/guix.texi:15762 #, no-wrap msgid "user accounts" msgstr "comptes utilisateurs" #. type: Plain text -#: guix-git/doc/guix.texi:15409 +#: guix-git/doc/guix.texi:15766 msgid "User accounts and groups are entirely managed through the @code{operating-system} declaration. They are specified with the @code{user-account} and @code{user-group} forms:" msgstr "Les comptes utilisateurs et les groupes sont gérés entièrement par la déclaration @code{operating-system}. Ils sont spécifiés avec les formes @code{user-account} et @code{user-group} :" #. type: lisp -#: guix-git/doc/guix.texi:15419 +#: guix-git/doc/guix.texi:15776 #, no-wrap msgid "" "(user-account\n" @@ -28256,12 +28925,12 @@ msgstr "" " (comment \"Bob's sister\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15423 +#: guix-git/doc/guix.texi:15780 msgid "Here's a user account that uses a different shell and a custom home directory (the default would be @file{\"/home/bob\"}):" msgstr "Voici un compte d'utilisateur·rice qui utilise un shell différent et un répertoire d'accueil personnalisé (le répertoire par défaut serait @file{\"/home/bob\"}) :" #. type: lisp -#: guix-git/doc/guix.texi:15431 +#: guix-git/doc/guix.texi:15788 #, no-wrap msgid "" "(user-account\n" @@ -28279,171 +28948,171 @@ msgstr "" " (home-directory \"/home/robert\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15440 +#: guix-git/doc/guix.texi:15797 msgid "When booting or upon completion of @command{guix system reconfigure}, the system ensures that only the user accounts and groups specified in the @code{operating-system} declaration exist, and with the specified properties. Thus, account or group creations or modifications made by directly invoking commands such as @command{useradd} are lost upon reconfiguration or reboot. This ensures that the system remains exactly as declared." msgstr "Lors du démarrage ou à la fin de @command{guix system reconfigure}, le système s'assure que seuls les comptes utilisateurs et les groupes spécifiés dans la déclaration @code{operating-system} existent, et avec les propriétés spécifiées. Ainsi, les modifications ou les créations de comptes ou de groupes effectuées directement en invoquant des commandes comme @command{useradd} sont perdue à la reconfiguration ou au redémarrage. Cela permet de s'assurer que le système reste exactement tel que déclaré." #. type: deftp -#: guix-git/doc/guix.texi:15441 +#: guix-git/doc/guix.texi:15798 #, no-wrap msgid "{Data Type} user-account" msgstr "{Type de données} user-account" #. type: deftp -#: guix-git/doc/guix.texi:15444 +#: guix-git/doc/guix.texi:15801 msgid "Objects of this type represent user accounts. The following members may be specified:" msgstr "Les objets de se type représentent les comptes utilisateurs. Les membres suivants peuvent être spécifiés :" #. type: table -#: guix-git/doc/guix.texi:15448 +#: guix-git/doc/guix.texi:15805 msgid "The name of the user account." msgstr "Le nom du compte utilisateur." #. type: itemx -#: guix-git/doc/guix.texi:15449 guix-git/doc/guix.texi:34298 +#: guix-git/doc/guix.texi:15806 guix-git/doc/guix.texi:34737 #, no-wrap msgid "group" msgstr "group" #. type: cindex -#: guix-git/doc/guix.texi:15450 guix-git/doc/guix.texi:15534 +#: guix-git/doc/guix.texi:15807 guix-git/doc/guix.texi:15891 #, no-wrap msgid "groups" msgstr "groupes" #. type: table -#: guix-git/doc/guix.texi:15453 +#: guix-git/doc/guix.texi:15810 msgid "This is the name (a string) or identifier (a number) of the user group this account belongs to." msgstr "C'est le nom (une chaîne) ou un identifiant (un nombre) du groupe utilisateur auquel ce compte appartient." #. type: item -#: guix-git/doc/guix.texi:15454 +#: guix-git/doc/guix.texi:15811 #, no-wrap msgid "@code{supplementary-groups} (default: @code{'()})" msgstr "@code{supplementary-groups} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:15457 +#: guix-git/doc/guix.texi:15814 msgid "Optionally, this can be defined as a list of group names that this account belongs to." msgstr "Éventuellement, cela peut être définie comme une liste de noms de groupes auxquels ce compte appartient." #. type: item -#: guix-git/doc/guix.texi:15458 +#: guix-git/doc/guix.texi:15815 #, no-wrap msgid "@code{uid} (default: @code{#f})" msgstr "@code{uid} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:15462 +#: guix-git/doc/guix.texi:15819 msgid "This is the user ID for this account (a number), or @code{#f}. In the latter case, a number is automatically chosen by the system when the account is created." msgstr "C'est l'ID utilisateur de ce compte (un nombre) ou @code{#f}. Dans ce dernier cas, le nombre est choisi automatiquement par le système à la création du compte." #. type: item -#: guix-git/doc/guix.texi:15463 guix-git/doc/guix.texi:18217 +#: guix-git/doc/guix.texi:15820 guix-git/doc/guix.texi:18579 #, no-wrap msgid "@code{comment} (default: @code{\"\"})" msgstr "@code{comment} (par défaut : @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:15465 +#: guix-git/doc/guix.texi:15822 msgid "A comment about the account, such as the account owner's full name." msgstr "Un commentaire à propos du compte, comme le nom complet de l'utilisateur." #. type: table -#: guix-git/doc/guix.texi:15470 +#: guix-git/doc/guix.texi:15827 msgid "Note that, for non-system accounts, users are free to change their real name as it appears in @file{/etc/passwd} using the @command{chfn} command. When they do, their choice prevails over the system administrator's choice; reconfiguring does @emph{not} change their name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:15471 +#: guix-git/doc/guix.texi:15828 #, no-wrap msgid "home-directory" msgstr "home-directory" #. type: table -#: guix-git/doc/guix.texi:15473 +#: guix-git/doc/guix.texi:15830 msgid "This is the name of the home directory for the account." msgstr "C'est le nom du répertoire personnel du compte." #. type: item -#: guix-git/doc/guix.texi:15474 +#: guix-git/doc/guix.texi:15831 #, no-wrap msgid "@code{create-home-directory?} (default: @code{#t})" msgstr "@code{create-home-directory?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:15477 +#: guix-git/doc/guix.texi:15834 msgid "Indicates whether the home directory of this account should be created if it does not exist yet." msgstr "Indique si le répertoire personnel du compte devrait être créé s'il n'existe pas déjà." #. type: item -#: guix-git/doc/guix.texi:15478 +#: guix-git/doc/guix.texi:15835 #, no-wrap msgid "@code{shell} (default: Bash)" msgstr "@code{shell} (par défaut : Bash)" #. type: table -#: guix-git/doc/guix.texi:15482 +#: guix-git/doc/guix.texi:15839 msgid "This is a G-expression denoting the file name of a program to be used as the shell (@pxref{G-Expressions}). For example, you would refer to the Bash executable like this:" msgstr "C'est une G-expression qui désigne le nom de fichier d'un programme utilisé comme shell (@pxref{G-Expressions}). Par exemple, vous pourriez vous référer à l'exécutable Bash comme ceci :" #. type: lisp -#: guix-git/doc/guix.texi:15485 +#: guix-git/doc/guix.texi:15842 #, no-wrap msgid "(file-append bash \"/bin/bash\")\n" msgstr "(file-append bash \"/bin/bash\")\n" #. type: table -#: guix-git/doc/guix.texi:15489 +#: guix-git/doc/guix.texi:15846 msgid "... and to the Zsh executable like that:" msgstr "... et à l' exécutable Zsh comme ceci :" #. type: lisp -#: guix-git/doc/guix.texi:15492 +#: guix-git/doc/guix.texi:15849 #, no-wrap msgid "(file-append zsh \"/bin/zsh\")\n" msgstr "(file-append zsh \"/bin/zsh\")\n" #. type: item -#: guix-git/doc/guix.texi:15494 guix-git/doc/guix.texi:15552 +#: guix-git/doc/guix.texi:15851 guix-git/doc/guix.texi:15909 #, no-wrap msgid "@code{system?} (default: @code{#f})" msgstr "@code{system?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:15498 +#: guix-git/doc/guix.texi:15855 msgid "This Boolean value indicates whether the account is a ``system'' account. System accounts are sometimes treated specially; for instance, graphical login managers do not list them." msgstr "C'est une valeur booléenne qui indique si le compte est un compte « système ». Les comptes systèmes sont parfois traités à part ; par exemple, les gestionnaires de connexion graphiques ne les liste pas." #. type: anchor{#1} -#: guix-git/doc/guix.texi:15500 +#: guix-git/doc/guix.texi:15857 msgid "user-account-password" msgstr "user-account-password" #. type: cindex -#: guix-git/doc/guix.texi:15500 +#: guix-git/doc/guix.texi:15857 #, no-wrap msgid "password, for user accounts" msgstr "mot de passe, pour les comptes utilisateurs" #. type: item -#: guix-git/doc/guix.texi:15501 guix-git/doc/guix.texi:15556 +#: guix-git/doc/guix.texi:15858 guix-git/doc/guix.texi:15913 #, no-wrap msgid "@code{password} (default: @code{#f})" msgstr "@code{password} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:15507 +#: guix-git/doc/guix.texi:15864 msgid "You would normally leave this field to @code{#f}, initialize user passwords as @code{root} with the @command{passwd} command, and then let users change it with @command{passwd}. Passwords set with @command{passwd} are of course preserved across reboot and reconfiguration." msgstr "Vous laisseriez normalement ce champ à @code{#f} et initialiseriez les mots de passe utilisateurs en tant que @code{root} avec la commande @command{passwd}, puis laisseriez l'utilisateur le changer avec @command{passwd}. Les mots de passes définis avec @command{passwd} sont bien sûr préservés après redémarrage et reconfiguration." #. type: table -#: guix-git/doc/guix.texi:15511 +#: guix-git/doc/guix.texi:15868 msgid "If you @emph{do} want to set an initial password for an account, then this field must contain the encrypted password, as a string. You can use the @code{crypt} procedure for this purpose:" msgstr "Si vous voulez @emph{vraiment} définir un mot de passe pour un compte, alors ce champ doit contenir le mot de passe chiffré, comme une chaîne de caractère. Vous pouvez utiliser la procédure @code{crypt} pour cela :" #. type: lisp -#: guix-git/doc/guix.texi:15516 +#: guix-git/doc/guix.texi:15873 #, no-wrap msgid "" "(user-account\n" @@ -28457,7 +29126,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15519 +#: guix-git/doc/guix.texi:15876 #, no-wrap msgid "" " ;; Specify a SHA-512-hashed initial password.\n" @@ -28467,173 +29136,173 @@ msgstr "" " (password (crypt \"InitialPassword!\" \"$6$abc\")))\n" #. type: quotation -#: guix-git/doc/guix.texi:15525 +#: guix-git/doc/guix.texi:15882 msgid "The hash of this initial password will be available in a file in @file{/gnu/store}, readable by all the users, so this method must be used with care." msgstr "Le hash de ce mot de passe initial sera disponible dans un fichier dans @file{/gnu/store}, lisible par tous les utilisateurs, donc cette méthode est à utiliser avec soin." #. type: table -#: guix-git/doc/guix.texi:15530 +#: guix-git/doc/guix.texi:15887 msgid "@xref{Passphrase Storage,,, libc, The GNU C Library Reference Manual}, for more information on password encryption, and @ref{Encryption,,, guile, GNU Guile Reference Manual}, for information on Guile's @code{crypt} procedure." msgstr "@xref{Passphrase Storage,,, libc, The GNU C Library Reference Manual}, pour plus d'information sur le chiffrement des mots de passe et @ref{Encryption,,, guile, GNU Guile Reference Manual}, pour des informations sur la procédure @code{crypt} de Guile." #. type: Plain text -#: guix-git/doc/guix.texi:15536 +#: guix-git/doc/guix.texi:15893 msgid "User group declarations are even simpler:" msgstr "Les déclarations de groupes sont encore plus simple :" #. type: lisp -#: guix-git/doc/guix.texi:15539 +#: guix-git/doc/guix.texi:15896 #, no-wrap msgid "(user-group (name \"students\"))\n" msgstr "(user-group (name \"students\"))\n" #. type: deftp -#: guix-git/doc/guix.texi:15541 +#: guix-git/doc/guix.texi:15898 #, no-wrap msgid "{Data Type} user-group" msgstr "{Type de données} user-group" #. type: deftp -#: guix-git/doc/guix.texi:15543 +#: guix-git/doc/guix.texi:15900 msgid "This type is for, well, user groups. There are just a few fields:" msgstr "C'est le type pour, hé bien, les comptes utilisateurs. Il n'y a que quelques champs :" #. type: table -#: guix-git/doc/guix.texi:15547 +#: guix-git/doc/guix.texi:15904 msgid "The name of the group." msgstr "Le nom du groupe." #. type: item -#: guix-git/doc/guix.texi:15548 guix-git/doc/guix.texi:30819 +#: guix-git/doc/guix.texi:15905 guix-git/doc/guix.texi:31184 #, no-wrap msgid "@code{id} (default: @code{#f})" msgstr "@code{id} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:15551 +#: guix-git/doc/guix.texi:15908 msgid "The group identifier (a number). If @code{#f}, a new number is automatically allocated when the group is created." msgstr "L'identifiant du groupe (un nombre). S'il est @code{#f}, un nouveau nombre est alloué automatiquement lorsque le groupe est créé." #. type: table -#: guix-git/doc/guix.texi:15555 +#: guix-git/doc/guix.texi:15912 msgid "This Boolean value indicates whether the group is a ``system'' group. System groups have low numerical IDs." msgstr "Cette valeur booléenne indique si le groupe est un groupe « système ». les groupes systèmes ont un numéro d'ID bas." #. type: table -#: guix-git/doc/guix.texi:15559 +#: guix-git/doc/guix.texi:15916 msgid "What, user groups can have a password? Well, apparently yes. Unless @code{#f}, this field specifies the password of the group." msgstr "Quoi, les groupes utilisateurs peuvent avoir des mots de passe ? On dirait bien. À moins que la valeur ne soit @code{#f}, ce champ spécifie le mot de passe du groupe." #. type: Plain text -#: guix-git/doc/guix.texi:15565 +#: guix-git/doc/guix.texi:15922 msgid "For convenience, a variable lists all the basic user groups one may expect:" msgstr "Par simplicité, une variable liste les groupes utilisateurs de base auxquels on pourrait s'attendre :" #. type: defvr -#: guix-git/doc/guix.texi:15566 +#: guix-git/doc/guix.texi:15923 #, no-wrap msgid "{Scheme Variable} %base-groups" msgstr "{Variable Scheme} %base-groups" #. type: defvr -#: guix-git/doc/guix.texi:15571 +#: guix-git/doc/guix.texi:15928 msgid "This is the list of basic user groups that users and/or packages expect to be present on the system. This includes groups such as ``root'', ``wheel'', and ``users'', as well as groups used to control access to specific devices such as ``audio'', ``disk'', and ``cdrom''." msgstr "C'est la liste des groupes utilisateur de base que les utilisateurs et les paquets s'attendent à trouver sur le système. Cela comprend des groupes comme « root », « wheel » et « users », ainsi que des groupes utilisés pour contrôler l'accès à certains périphériques, comme « audio », « disk » et « cdrom »." #. type: defvr -#: guix-git/doc/guix.texi:15573 +#: guix-git/doc/guix.texi:15930 #, no-wrap msgid "{Scheme Variable} %base-user-accounts" msgstr "{Variable Scheme} %base-user-accounts" #. type: defvr -#: guix-git/doc/guix.texi:15576 +#: guix-git/doc/guix.texi:15933 msgid "This is the list of basic system accounts that programs may expect to find on a GNU/Linux system, such as the ``nobody'' account." msgstr "C'est la liste des compte du système de base que les programmes peuvent s'attendre à trouver sur un système GNU/Linux, comme le compte « nobody »." #. type: defvr -#: guix-git/doc/guix.texi:15579 +#: guix-git/doc/guix.texi:15936 msgid "Note that the ``root'' account is not included here. It is a special-case and is automatically added whether or not it is specified." msgstr "Remarquez que le compte « root » n'est pas défini ici. C'est un cas particulier et il est automatiquement ajouté qu'il soit spécifié ou non." #. type: cindex -#: guix-git/doc/guix.texi:15585 +#: guix-git/doc/guix.texi:15942 #, no-wrap msgid "keymap" msgstr "disposition clavier" #. type: Plain text -#: guix-git/doc/guix.texi:15593 +#: guix-git/doc/guix.texi:15950 msgid "To specify what each key of your keyboard does, you need to tell the operating system what @dfn{keyboard layout} you want to use. The default, when nothing is specified, is the US English QWERTY layout for 105-key PC keyboards. However, German speakers will usually prefer the German QWERTZ layout, French speakers will want the AZERTY layout, and so on; hackers might prefer Dvorak or bépo, and they might even want to further customize the effect of some of the keys. This section explains how to get that done." msgstr "Pour spécifier ce que fait chaque touche de votre clavier, vous devez dire au système d'exploitation quel @dfn{disposition du clavier} vous voulez utiliser. Par défaut, lorsque rien n'est spécifié, la disposition QWERTY pour l'anglais américain pour les claviers 105 touches est utilisée. Cependant, les germanophones préfèrent généralement la disposition QWERTZ, les francophones la disposition AZERTY etc.@: ; les hackers peuvent préférer Dvorak ou bépo, et peuvent même vouloir personnaliser plus en détails l'effet de certaines touches. Cette section explique comment faire cela." #. type: cindex -#: guix-git/doc/guix.texi:15594 +#: guix-git/doc/guix.texi:15951 #, no-wrap msgid "keyboard layout, definition" msgstr "disposition du clavier, définition" #. type: Plain text -#: guix-git/doc/guix.texi:15596 +#: guix-git/doc/guix.texi:15953 msgid "There are three components that will want to know about your keyboard layout:" msgstr "Il y a trois composants qui devront connaître votre disposition du clavier :" #. type: itemize -#: guix-git/doc/guix.texi:15603 +#: guix-git/doc/guix.texi:15960 msgid "The @emph{bootloader} may want to know what keyboard layout you want to use (@pxref{Bootloader Configuration, @code{keyboard-layout}}). This is useful if you want, for instance, to make sure that you can type the passphrase of your encrypted root partition using the right layout." msgstr "Le @emph{chargeur d'amorçage} peut avoir besoin de connaître la disposition clavier que vous voulez utiliser (@pxref{Bootloader Configuration, @code{keyboard-layout}}). C'est utile si vous voulez par exemple vous assurer que vous pouvez saisir la phrase de passe de votre partition racine chiffrée avec la bonne disposition." #. type: itemize -#: guix-git/doc/guix.texi:15608 +#: guix-git/doc/guix.texi:15965 msgid "The @emph{operating system kernel}, Linux, will need that so that the console is properly configured (@pxref{operating-system Reference, @code{keyboard-layout}})." msgstr "Le @emph{noyau du système d'exploitation}, Linux, en aura besoin pour configurer correctement la console (@pxref{operating-system Reference, @code{keyboard-layout}})." #. type: itemize -#: guix-git/doc/guix.texi:15612 +#: guix-git/doc/guix.texi:15969 msgid "The @emph{graphical display server}, usually Xorg, also has its own idea of the keyboard layout (@pxref{X Window, @code{keyboard-layout}})." msgstr "Le @emph{serveur d'affichage graphique}, habituellement Xorg, a aussi sa propre idée sur la disposition du clavier à utiliser (@pxref{X Window, @code{keyboard-layout}})." #. type: Plain text -#: guix-git/doc/guix.texi:15616 +#: guix-git/doc/guix.texi:15973 msgid "Guix allows you to configure all three separately but, fortunately, it allows you to share the same keyboard layout for all three components." msgstr "Guix vous permet de configurer les trois séparément mais, heureusement, il vous permet de partager la même disposition du clavier pour chacun des trois composants." #. type: cindex -#: guix-git/doc/guix.texi:15617 +#: guix-git/doc/guix.texi:15974 #, no-wrap msgid "XKB, keyboard layouts" msgstr "XKB, disposition du clavier" #. type: Plain text -#: guix-git/doc/guix.texi:15625 +#: guix-git/doc/guix.texi:15982 msgid "Keyboard layouts are represented by records created by the @code{keyboard-layout} procedure of @code{(gnu system keyboard)}. Following the X Keyboard extension (XKB), each layout has four attributes: a name (often a language code such as ``fi'' for Finnish or ``jp'' for Japanese), an optional variant name, an optional keyboard model name, and a possibly empty list of additional options. In most cases the layout name is all you care about." msgstr "Les dispositions de clavier sont représentées par des enregistrements créés par la procédure @code{keyboard-layout} de @code{(gnu system keyboard)}. En suivant l'extension clavier de X (XKB), chaque disposition a quatre attributs : un nom (souvent un code de langue comme « fi » pour le finnois ou « jp » pour le japonais), un nom de variante facultatif, un nom de modèle de clavier facultatif et une liste éventuellement vide d'options supplémentaires. Dans la plupart des cas, vous n'aurez besoin que du nom de la disposition." #. type: deffn -#: guix-git/doc/guix.texi:15626 +#: guix-git/doc/guix.texi:15983 #, no-wrap msgid "{Scheme Procedure} keyboard-layout @var{name} [@var{variant}] @" msgstr "{Procédure Scheme} keyboard-layout @var{nom} [@var{variante}] @" #. type: deffn -#: guix-git/doc/guix.texi:15629 +#: guix-git/doc/guix.texi:15986 msgid "[#:model] [#:options '()] Return a new keyboard layout with the given @var{name} and @var{variant}." msgstr "" "[#:model] [#:options '()]\n" "Renvoie une nouvelle disposition de clavier avec les @var{nom} et @var{variante} donnés." #. type: deffn -#: guix-git/doc/guix.texi:15633 +#: guix-git/doc/guix.texi:15990 msgid "@var{name} must be a string such as @code{\"fr\"}; @var{variant} must be a string such as @code{\"bepo\"} or @code{\"nodeadkeys\"}. See the @code{xkeyboard-config} package for valid options." msgstr "@var{nom} doit être une chaine comme @code{\"fr\"} ; @var{variante} doit être une chaine comme @code{\"bepo\"} ou @code{\"nodeadkeys\"}. Vois le paquet @code{xkeyboard-config} pour les options valides." #. type: Plain text -#: guix-git/doc/guix.texi:15636 +#: guix-git/doc/guix.texi:15993 msgid "Here are a few examples:" msgstr "Voici quelques exemples :" #. type: lisp -#: guix-git/doc/guix.texi:15641 +#: guix-git/doc/guix.texi:15998 #, no-wrap msgid "" ";; The German QWERTZ layout. Here we assume a standard\n" @@ -28647,7 +29316,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15644 +#: guix-git/doc/guix.texi:16001 #, no-wrap msgid "" ";; The bépo variant of the French layout.\n" @@ -28659,7 +29328,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15647 +#: guix-git/doc/guix.texi:16004 #, no-wrap msgid "" ";; The Catalan layout.\n" @@ -28671,7 +29340,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15650 +#: guix-git/doc/guix.texi:16007 #, no-wrap msgid "" ";; Arabic layout with \"Alt-Shift\" to switch to US layout.\n" @@ -28683,7 +29352,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15657 +#: guix-git/doc/guix.texi:16014 #, no-wrap msgid "" ";; The Latin American Spanish layout. In addition, the\n" @@ -28703,7 +29372,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15660 +#: guix-git/doc/guix.texi:16017 #, no-wrap msgid "" ";; The Russian layout for a ThinkPad keyboard.\n" @@ -28715,7 +29384,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15665 +#: guix-git/doc/guix.texi:16022 #, no-wrap msgid "" ";; The \"US international\" layout, which is the US layout plus\n" @@ -28729,29 +29398,29 @@ msgstr "" "(keyboard-layout \"us\" \"intl\" #:model \"macbook78\")\n" #. type: Plain text -#: guix-git/doc/guix.texi:15669 +#: guix-git/doc/guix.texi:16026 msgid "See the @file{share/X11/xkb} directory of the @code{xkeyboard-config} package for a complete list of supported layouts, variants, and models." msgstr "Voir le répertoire @file{share/X11/xkb} du paquet @code{xkeyboard-config} pour une liste complète des disposition, des variantes et des modèles pris en charge." #. type: cindex -#: guix-git/doc/guix.texi:15670 +#: guix-git/doc/guix.texi:16027 #, no-wrap msgid "keyboard layout, configuration" msgstr "disposition du clavier, configuration" #. type: Plain text -#: guix-git/doc/guix.texi:15674 +#: guix-git/doc/guix.texi:16031 msgid "Let's say you want your system to use the Turkish keyboard layout throughout your system---bootloader, console, and Xorg. Here's what your system configuration would look like:" msgstr "Disons que vous voulez que votre système utilise la disposition turque sur tout le système — du chargeur d'amorçage à Xorg en passant par la console. Voici ce que votre configuration du système contiendrait :" #. type: findex -#: guix-git/doc/guix.texi:15675 +#: guix-git/doc/guix.texi:16032 #, no-wrap msgid "set-xorg-configuration" msgstr "set-xorg-configuration" #. type: lisp -#: guix-git/doc/guix.texi:15679 +#: guix-git/doc/guix.texi:16036 #, no-wrap msgid "" ";; Using the Turkish layout for the bootloader, the console,\n" @@ -28763,7 +29432,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15691 +#: guix-git/doc/guix.texi:16048 #, no-wrap msgid "" "(operating-system\n" @@ -28791,76 +29460,76 @@ msgstr "" " %desktop-services)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15698 +#: guix-git/doc/guix.texi:16055 msgid "In the example above, for GRUB and for Xorg, we just refer to the @code{keyboard-layout} field defined above, but we could just as well refer to a different layout. The @code{set-xorg-configuration} procedure communicates the desired Xorg configuration to the graphical log-in manager, by default GDM." msgstr "Dans l'exemple ci-dessus, pour GRUB et pour Xorg, nous nous référons simplement au champ @code{keyboard-layout} au dessus, mais on pourrait aussi bien se référer à une autre disposition. La procédure @code{set-xorg-configuration} communique la configuration Xorg désirée au gestionnaire de connexion, par défaut GDM." #. type: Plain text -#: guix-git/doc/guix.texi:15701 +#: guix-git/doc/guix.texi:16058 msgid "We've discussed how to specify the @emph{default} keyboard layout of your system when it starts, but you can also adjust it at run time:" msgstr "Nous avons discuté de la manière de spécifier la disposition du clavier @emph{par défaut} lorsque votre système démarre, mais vous pouvez aussi l'ajuster à l'exécution :" #. type: itemize -#: guix-git/doc/guix.texi:15706 +#: guix-git/doc/guix.texi:16063 msgid "If you're using GNOME, its settings panel has a ``Region & Language'' entry where you can select one or more keyboard layouts." msgstr "Si vous utilisez GNOME, son panneau de configuration contient une entrée « Région & Langues » où vous pouvez choisir une ou plusieurs dispositions du clavier." #. type: itemize -#: guix-git/doc/guix.texi:15711 +#: guix-git/doc/guix.texi:16068 msgid "Under Xorg, the @command{setxkbmap} command (from the same-named package) allows you to change the current layout. For example, this is how you would change the layout to US Dvorak:" msgstr "Sous Xorg, la commande @command{sexkbmap} (du paquet du même nom) vous permet de changer la disposition actuelle. Par exemple, voilà comment changer la disposition pour un Dvorak américain :" #. type: example -#: guix-git/doc/guix.texi:15714 +#: guix-git/doc/guix.texi:16071 #, no-wrap msgid "setxkbmap us dvorak\n" msgstr "setxkbmap us dvorak\n" #. type: itemize -#: guix-git/doc/guix.texi:15721 +#: guix-git/doc/guix.texi:16078 msgid "The @code{loadkeys} command changes the keyboard layout in effect in the Linux console. However, note that @code{loadkeys} does @emph{not} use the XKB keyboard layout categorization described above. The command below loads the French bépo layout:" msgstr "La commande @code{loadkey} change la disposition du clavier dans la console Linux. Cependant, remarque que @code{loadkeys} n'utilise @emph{pas} la catégorisation des dispositions XKB décrite plus haut. La commande suivante charge la disposition bépo française :" #. type: example -#: guix-git/doc/guix.texi:15724 +#: guix-git/doc/guix.texi:16081 #, no-wrap msgid "loadkeys fr-bepo\n" msgstr "loadkeys fr-bepo\n" #. type: cindex -#: guix-git/doc/guix.texi:15730 +#: guix-git/doc/guix.texi:16087 #, no-wrap msgid "locale" msgstr "paramètres linguistiques" #. type: Plain text -#: guix-git/doc/guix.texi:15737 +#: guix-git/doc/guix.texi:16094 msgid "A @dfn{locale} defines cultural conventions for a particular language and region of the world (@pxref{Locales,,, libc, The GNU C Library Reference Manual}). Each locale has a name that typically has the form @code{@var{language}_@var{territory}.@var{codeset}}---e.g., @code{fr_LU.utf8} designates the locale for the French language, with cultural conventions from Luxembourg, and using the UTF-8 encoding." msgstr "Un @dfn{paramètre linguistique} définie les conventions culturelles d'une langue et d'une région particulières (@pxref{Locales,,, libc, The GNU C Library Reference Manual}). Chaque paramètre linguistique a un nom de la forme @code{@var{langue}_@var{territoire}.@var{jeudecaractères}} — p.@: ex.@: @code{fr_LU.utf8} désigne le paramètre linguistique pour le français, avec les conventions culturelles du Luxembourg, en utilisant l'encodage UTF-8." #. type: cindex -#: guix-git/doc/guix.texi:15738 +#: guix-git/doc/guix.texi:16095 #, no-wrap msgid "locale definition" msgstr "définition des paramètres linguistiques" #. type: Plain text -#: guix-git/doc/guix.texi:15742 +#: guix-git/doc/guix.texi:16099 msgid "Usually, you will want to specify the default locale for the machine using the @code{locale} field of the @code{operating-system} declaration (@pxref{operating-system Reference, @code{locale}})." msgstr "Normalement, vous voudrez spécifier les paramètres linguistiques par défaut pour la machine en utilisant le champ @code{locale} de la déclaration @code{operating-system} (@pxref{operating-system Reference, @code{locale}})." #. type: Plain text -#: guix-git/doc/guix.texi:15751 +#: guix-git/doc/guix.texi:16108 msgid "The selected locale is automatically added to the @dfn{locale definitions} known to the system if needed, with its codeset inferred from its name---e.g., @code{bo_CN.utf8} will be assumed to use the @code{UTF-8} codeset. Additional locale definitions can be specified in the @code{locale-definitions} slot of @code{operating-system}---this is useful, for instance, if the codeset could not be inferred from the locale name. The default set of locale definitions includes some widely used locales, but not all the available locales, in order to save space." msgstr "Les paramètres régionaux choisis sont automatiquement ajoutés aux définitions des @dfn{paramètres régionaux} connues par le système au besoin, avec le jeu de caractères inféré à partir de son nom, p.@: ex.@: @code{bo_CN.utf8} supposera qu'il faut utiliser le jeu de caractères @code{UTF-8}. Des définitions supplémentaires peuvent être spécifiées dans le champ @code{locale-definitions} de @code{operating-system} — c'est utile par exemple si le jeu de caractères n'a pas été inféré à partir du nom. L'ensemble par défaut de définitions comprend certains paramètres linguistiques parmi les plus utilisés, mais pas toutes les variantes disponibles, pour gagner de la place." #. type: Plain text -#: guix-git/doc/guix.texi:15754 +#: guix-git/doc/guix.texi:16111 msgid "For instance, to add the North Frisian locale for Germany, the value of that field may be:" msgstr "Par exemple, pour ajouter les paramètres pour le frison septentrional en Allemagne, la valeur de ce champ serait :" #. type: lisp -#: guix-git/doc/guix.texi:15759 +#: guix-git/doc/guix.texi:16116 #, no-wrap msgid "" "(cons (locale-definition\n" @@ -28872,12 +29541,12 @@ msgstr "" " %default-locale-definitions)\n" #. type: Plain text -#: guix-git/doc/guix.texi:15763 +#: guix-git/doc/guix.texi:16120 msgid "Likewise, to save space, one might want @code{locale-definitions} to list only the locales that are actually used, as in:" msgstr "De me, pour gagner de la place, on peut vouloir lister dans @code{locale-definitions} seulement les paramètres qui sont vraiment utilisés, comme dans :" #. type: lisp -#: guix-git/doc/guix.texi:15768 +#: guix-git/doc/guix.texi:16125 #, no-wrap msgid "" "(list (locale-definition\n" @@ -28889,114 +29558,114 @@ msgstr "" " (charset \"EUC-JP\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15777 +#: guix-git/doc/guix.texi:16134 msgid "The compiled locale definitions are available at @file{/run/current-system/locale/X.Y}, where @code{X.Y} is the libc version, which is the default location where the GNU@tie{}libc provided by Guix looks for locale data. This can be overridden using the @env{LOCPATH} environment variable (@pxref{locales-and-locpath, @env{LOCPATH} and locale packages})." msgstr "Les définitions compilées de locale sont disponibles à @file{/run/current-system/locale/X.Y}, où @code{X.Y} est la version de la libc, qui est l'emplacement par défaut où la GNU@tie{}libc fournie par Guix recherche les données locales. Il est possible d'y remédier en utilisant la variable d'environnement @env{LOCPATH} (@pxref{locales-and-locpath, @env{LOCPATH} et les paquets locaux})." #. type: Plain text -#: guix-git/doc/guix.texi:15780 +#: guix-git/doc/guix.texi:16137 msgid "The @code{locale-definition} form is provided by the @code{(gnu system locale)} module. Details are given below." msgstr "La forme @code{locale-definition} est fournie par le module @code{(gnu system locale)}. Des détails sont disponibles plus bas." #. type: deftp -#: guix-git/doc/guix.texi:15781 +#: guix-git/doc/guix.texi:16138 #, no-wrap msgid "{Data Type} locale-definition" msgstr "{Type de données} locale-definition" #. type: deftp -#: guix-git/doc/guix.texi:15783 +#: guix-git/doc/guix.texi:16140 msgid "This is the data type of a locale definition." msgstr "C'est le type de données d'une définition de paramètres linguistiques." #. type: table -#: guix-git/doc/guix.texi:15789 +#: guix-git/doc/guix.texi:16146 msgid "The name of the locale. @xref{Locale Names,,, libc, The GNU C Library Reference Manual}, for more information on locale names." msgstr "Le nom du paramètre linguistique. @xref{Locale Names,,, libc, The GNU C Library Reference Manual}, pour en savoir plus sur les noms de paramètres linguistiques." #. type: table -#: guix-git/doc/guix.texi:15793 +#: guix-git/doc/guix.texi:16150 msgid "The name of the source for that locale. This is typically the @code{@var{language}_@var{territory}} part of the locale name." msgstr "Le nom de la source pour ce paramètre linguistique. C'est typiquement la partie @code{@var{langue}_@var{territoire}} du nom du paramètre." #. type: item -#: guix-git/doc/guix.texi:15794 +#: guix-git/doc/guix.texi:16151 #, no-wrap msgid "@code{charset} (default: @code{\"UTF-8\"})" msgstr "@code{charset} (par défaut : @code{\"UTF-8\"})" #. type: table -#: guix-git/doc/guix.texi:15798 +#: guix-git/doc/guix.texi:16155 msgid "The ``character set'' or ``code set'' for that locale, @uref{https://www.iana.org/assignments/character-sets, as defined by IANA}." msgstr "Le « jeu de caractères » d'un paramètre linguistique, @uref{https://www.iana.org/assignments/character-sets, défini par l'IANA}." #. type: defvr -#: guix-git/doc/guix.texi:15802 +#: guix-git/doc/guix.texi:16159 #, no-wrap msgid "{Scheme Variable} %default-locale-definitions" msgstr "{Variable Scheme} %default-locale-definitions" #. type: defvr -#: guix-git/doc/guix.texi:15806 +#: guix-git/doc/guix.texi:16163 msgid "A list of commonly used UTF-8 locales, used as the default value of the @code{locale-definitions} field of @code{operating-system} declarations." msgstr "Une liste des paramètres linguistiques UTF-8 couramment utilisés, utilisée comme valeur par défaut pour le champ @code{locale-definitions} des déclarations @code{operating-system}." #. type: cindex -#: guix-git/doc/guix.texi:15807 +#: guix-git/doc/guix.texi:16164 #, no-wrap msgid "locale name" msgstr "nom de paramètre linguistique" #. type: cindex -#: guix-git/doc/guix.texi:15808 +#: guix-git/doc/guix.texi:16165 #, no-wrap msgid "normalized codeset in locale names" msgstr "jeu de caractère normalisé dans les noms de paramètres linguistiques" #. type: defvr -#: guix-git/doc/guix.texi:15814 +#: guix-git/doc/guix.texi:16171 msgid "These locale definitions use the @dfn{normalized codeset} for the part that follows the dot in the name (@pxref{Using gettextized software, normalized codeset,, libc, The GNU C Library Reference Manual}). So for instance it has @code{uk_UA.utf8} but @emph{not}, say, @code{uk_UA.UTF-8}." msgstr "Ces définitions de paramètres linguistiques utilisent le @dfn{jeu de caractère normalisé} pour la partie qui suit le point dans le nom (@pxref{Using gettextized software, normalized codeset,, libc, The GNU C Library Reference Manual}). Donc par exemple il y a @code{uk_UA.utf8} mais @emph{pas}, disons, @code{uk_UA.UTF-8}." #. type: subsection -#: guix-git/doc/guix.texi:15816 +#: guix-git/doc/guix.texi:16173 #, no-wrap msgid "Locale Data Compatibility Considerations" msgstr "Considérations sur la compatibilité des données linguistiques" #. type: cindex -#: guix-git/doc/guix.texi:15818 +#: guix-git/doc/guix.texi:16175 #, no-wrap msgid "incompatibility, of locale data" msgstr "incompatibilité, des données linguistiques" #. type: Plain text -#: guix-git/doc/guix.texi:15825 +#: guix-git/doc/guix.texi:16182 msgid "@code{operating-system} declarations provide a @code{locale-libcs} field to specify the GNU@tie{}libc packages that are used to compile locale declarations (@pxref{operating-system Reference}). ``Why would I care?'', you may ask. Well, it turns out that the binary format of locale data is occasionally incompatible from one libc version to another." msgstr "Les déclaration @code{operating-system} fournissent un champ @code{locale-libcs} pour spécifier les paquets GNU@tie{}libc à utiliser pour compiler les déclarations de paramètres linguistiques (@pxref{operating-system Reference}). « Pourquoi je devrais m'en soucier ? », vous demandez-vous sûrement. Hé bien il se trouve que le format binaire des données linguistique est parfois incompatible d'une version de la libc à une autre." #. type: Plain text -#: guix-git/doc/guix.texi:15837 +#: guix-git/doc/guix.texi:16194 msgid "For instance, a program linked against libc version 2.21 is unable to read locale data produced with libc 2.22; worse, that program @emph{aborts} instead of simply ignoring the incompatible locale data@footnote{Versions 2.23 and later of GNU@tie{}libc will simply skip the incompatible locale data, which is already an improvement.}. Similarly, a program linked against libc 2.22 can read most, but not all, of the locale data from libc 2.21 (specifically, @env{LC_COLLATE} data is incompatible); thus calls to @code{setlocale} may fail, but programs will not abort." msgstr "Par exemple, un programme lié à la version 2.21 de la libc est incapable de lire les données locales produites avec la libc 2.22 ; pire encore, ce programme @emph{aborts} au lieu d'ignorer simplement les données locales incompatibles@footnote{Versions 2.23 et suivantes de GNU@tie{}libc ignorera simplement les données locales incompatibles, ce qui est déjà une amélioration.}. De même, un programme lié à la libc 2.22 peut lire la plupart des données locales de la libc 2.21, mais pas toutes (en particulier, les données @env{LC_COLLATE} sont incompatibles) ; ainsi, les appels à @code{setlocale} peuvent échouer, mais les programmes ne s'arrêteront pas." #. type: Plain text -#: guix-git/doc/guix.texi:15842 +#: guix-git/doc/guix.texi:16199 msgid "The ``problem'' with Guix is that users have a lot of freedom: They can choose whether and when to upgrade software in their profiles, and might be using a libc version different from the one the system administrator used to build the system-wide locale data." msgstr "Le « problème » avec Guix c'est que les utilisateurs ont beaucoup de liberté : ils peuvent choisir s'ils veulent et quand ils veulent mettre à jour les logiciels de leur profil, et peuvent utiliser une version différente de la libc de celle que l'administrateur système utilise pour construire les données linguistiques du système global." #. type: Plain text -#: guix-git/doc/guix.texi:15846 +#: guix-git/doc/guix.texi:16203 msgid "Fortunately, unprivileged users can also install their own locale data and define @env{GUIX_LOCPATH} accordingly (@pxref{locales-and-locpath, @env{GUIX_LOCPATH} and locale packages})." msgstr "Heureusement, les utilisateur·rice·s non privilégié·e·s peuvent aussi installer leurs propres données linguistiques et définir @var{GUIX_LOCPATH} comme il le faut (@pxref{locales-and-locpath, @code{GUIX_LOCPATH} and locale packages})." #. type: Plain text -#: guix-git/doc/guix.texi:15853 +#: guix-git/doc/guix.texi:16210 msgid "Still, it is best if the system-wide locale data at @file{/run/current-system/locale} is built for all the libc versions actually in use on the system, so that all the programs can access it---this is especially crucial on a multi-user system. To do that, the administrator can specify several libc packages in the @code{locale-libcs} field of @code{operating-system}:" msgstr "Cependant, c'est encore mieux si les données linguistiques du système dans @file{/run/current-system/locale} étaient construites avec les versions de la libc utilisées sur le système, pour que tous les programmes puissent y accéder — c'est surtout crucial sur un système multi-utilisateurs. Pour cela, l'administrateur peut spécifier plusieurs paquets de la libc dans le champ @code{locale-libcs} de @code{operating-system} :" #. type: lisp -#: guix-git/doc/guix.texi:15856 +#: guix-git/doc/guix.texi:16213 #, no-wrap msgid "" "(use-package-modules base)\n" @@ -29006,7 +29675,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:15860 +#: guix-git/doc/guix.texi:16217 #, no-wrap msgid "" "(operating-system\n" @@ -29018,39 +29687,39 @@ msgstr "" " (locale-libcs (list glibc-2.21 (canonical-package glibc))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:15865 +#: guix-git/doc/guix.texi:16222 msgid "This example would lead to a system containing locale definitions for both libc 2.21 and the current version of libc in @file{/run/current-system/locale}." msgstr "Cet exemple créera un système contenant les définitions des paramètres linguistiques pour la libc 2.21 et pour la version actuelle de la libc dans @file{/run/current-system/locale}." #. type: cindex -#: guix-git/doc/guix.texi:15870 +#: guix-git/doc/guix.texi:16227 #, no-wrap msgid "system services" msgstr "services systèmes" #. type: Plain text -#: guix-git/doc/guix.texi:15876 +#: guix-git/doc/guix.texi:16233 msgid "An important part of preparing an @code{operating-system} declaration is listing @dfn{system services} and their configuration (@pxref{Using the Configuration System}). System services are typically daemons launched when the system boots, or other actions needed at that time---e.g., configuring network access." msgstr "Une part importante de la préparation d'une déclaration @code{operating-system} est la liste des @dfn{services systèmes} et de leur configuration (@pxref{Using the Configuration System}). Les services systèmes sont typiquement des démons lancés au démarrage ou d'autres actions requises à ce moment-là — p.@: ex.@: configurer les accès réseaux." #. type: Plain text -#: guix-git/doc/guix.texi:15883 +#: guix-git/doc/guix.texi:16240 msgid "Guix has a broad definition of ``service'' (@pxref{Service Composition}), but many services are managed by the GNU@tie{}Shepherd (@pxref{Shepherd Services}). On a running system, the @command{herd} command allows you to list the available services, show their status, start and stop them, or do other specific operations (@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}). For example:" msgstr "Guix a une définition large de « service » (@pxref{Service Composition}), mais beaucoup de services sont gérés par le GNU@tie{}Shepherd (@pxref{Shepherd Services}). Sur un système lancé, la commande @command{herd} vous permet de lister les services disponibles, montrer leur statut, les démarrer et les arrêter, ou faire d'autres opérations spécifiques (@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}). Par exemple :" #. type: example -#: guix-git/doc/guix.texi:15886 +#: guix-git/doc/guix.texi:16243 #, no-wrap msgid "# herd status\n" msgstr "# herd status\n" #. type: Plain text -#: guix-git/doc/guix.texi:15891 +#: guix-git/doc/guix.texi:16248 msgid "The above command, run as @code{root}, lists the currently defined services. The @command{herd doc} command shows a synopsis of the given service and its associated actions:" msgstr "La commande ci-dessus, lancée en @code{root}, liste les services actuellement définis. La commande @command{herd doc} montre un synopsis du service donné et ses actions associées :" #. type: example -#: guix-git/doc/guix.texi:15895 +#: guix-git/doc/guix.texi:16252 #, no-wrap msgid "" "# herd doc nscd\n" @@ -29062,7 +29731,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:15898 +#: guix-git/doc/guix.texi:16255 #, no-wrap msgid "" "# herd doc nscd action invalidate\n" @@ -29072,12 +29741,12 @@ msgstr "" "invalidate: Invalidate the given cache--e.g., 'hosts' for host name lookups.\n" #. type: Plain text -#: guix-git/doc/guix.texi:15903 +#: guix-git/doc/guix.texi:16260 msgid "The @command{start}, @command{stop}, and @command{restart} sub-commands have the effect you would expect. For instance, the commands below stop the nscd service and restart the Xorg display server:" msgstr "Les sous-commandes @command{start}, @command{stop} et @command{restart} ont l'effet auquel on s'attend. Par exemple, les commande suivantes stoppent le service nscd et redémarrent le serveur d'affichage Xorg :" #. type: example -#: guix-git/doc/guix.texi:15910 +#: guix-git/doc/guix.texi:16267 #, no-wrap msgid "" "# herd stop nscd\n" @@ -29093,45 +29762,45 @@ msgstr "" "Service xorg-server has been started.\n" #. type: Plain text -#: guix-git/doc/guix.texi:15915 +#: guix-git/doc/guix.texi:16272 msgid "The following sections document the available services, starting with the core services, that may be used in an @code{operating-system} declaration." msgstr "Les sections suivantes documentent les services disponibles, en commençant par les services de base qui peuvent être utilisés avec une déclaration @code{operating-system}." #. type: subsection -#: guix-git/doc/guix.texi:15951 guix-git/doc/guix.texi:24198 -#: guix-git/doc/guix.texi:24199 +#: guix-git/doc/guix.texi:16308 guix-git/doc/guix.texi:24560 +#: guix-git/doc/guix.texi:24561 #, no-wrap msgid "File-Sharing Services" msgstr "Services de partage de fichiers" #. type: menuentry -#: guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:16308 msgid "File-sharing services." msgstr "Services de partage de fichiers." #. type: Plain text -#: guix-git/doc/guix.texi:15959 +#: guix-git/doc/guix.texi:16316 msgid "The @code{(gnu services base)} module provides definitions for the basic services that one expects from the system. The services exported by this module are listed below." msgstr "Le module @code{(gnu services base)} fournit des définitions de services pour les services de base qu'on peut attendre du système. Les services exportés par ce module sort listés ci-dessous." #. type: defvr -#: guix-git/doc/guix.texi:15960 +#: guix-git/doc/guix.texi:16317 #, no-wrap msgid "{Scheme Variable} %base-services" msgstr "{Variable Scheme} %base-services" #. type: defvr -#: guix-git/doc/guix.texi:15966 +#: guix-git/doc/guix.texi:16323 msgid "This variable contains a list of basic services (@pxref{Service Types and Services}, for more information on service objects) one would expect from the system: a login service (mingetty) on each tty, syslogd, the libc name service cache daemon (nscd), the udev device manager, and more." msgstr "Cette variable contient une liste de services de base (@pxref{Service Types and Services}, pour plus d'informations sur les objets service) qu'on peut attendre du système : un service de connexion (mingetty) sur chaque tty, syslogd, le démon de cache de noms de la libc (nscd), le gestionnaire de périphériques udev, et plus." #. type: defvr -#: guix-git/doc/guix.texi:15971 +#: guix-git/doc/guix.texi:16328 msgid "This is the default value of the @code{services} field of @code{operating-system} declarations. Usually, when customizing a system, you will want to append services to @code{%base-services}, like this:" msgstr "C'est la valeur par défaut du champ @code{services} des déclarations @code{operating-system}. Habituellement, lors de la personnalisation d'un système, vous voudrez ajouter des services à ceux de @code{%base-services}, comme ceci :" #. type: lisp -#: guix-git/doc/guix.texi:15976 +#: guix-git/doc/guix.texi:16333 #, no-wrap msgid "" "(append (list (service avahi-service-type)\n" @@ -29143,58 +29812,58 @@ msgstr "" " %base-services)\n" #. type: defvr -#: guix-git/doc/guix.texi:15979 +#: guix-git/doc/guix.texi:16336 #, no-wrap msgid "{Scheme Variable} special-files-service-type" msgstr "{Variable Scheme} special-files-service-type" #. type: defvr -#: guix-git/doc/guix.texi:15982 +#: guix-git/doc/guix.texi:16339 msgid "This is the service that sets up ``special files'' such as @file{/bin/sh}; an instance of it is part of @code{%base-services}." msgstr "C'est le service qui met en place des « fichiers spéciaux » comme @file{/bin/sh} ; une instance de ce service fait partie de @code{%base-services}." #. type: defvr -#: guix-git/doc/guix.texi:15986 +#: guix-git/doc/guix.texi:16343 msgid "The value associated with @code{special-files-service-type} services must be a list of tuples where the first element is the ``special file'' and the second element is its target. By default it is:" msgstr "La valeur associée avec les services @code{special-files-service-type} doit être une liste de couples dont le premier élément est le « fichier spécial » et le deuxième sa cible. Par défaut il s'agit de :" #. type: file{#1} -#: guix-git/doc/guix.texi:15987 +#: guix-git/doc/guix.texi:16344 #, no-wrap msgid "/bin/sh" msgstr "/bin/sh" #. type: cindex -#: guix-git/doc/guix.texi:15988 +#: guix-git/doc/guix.texi:16345 #, no-wrap msgid "@file{sh}, in @file{/bin}" msgstr "@file{sh}, dans @file{/bin}" #. type: lisp -#: guix-git/doc/guix.texi:15991 +#: guix-git/doc/guix.texi:16348 #, no-wrap msgid "`((\"/bin/sh\" ,(file-append bash \"/bin/sh\")))\n" msgstr "`((\"/bin/sh\" ,(file-append bash \"/bin/sh\")))\n" #. type: file{#1} -#: guix-git/doc/guix.texi:15993 +#: guix-git/doc/guix.texi:16350 #, no-wrap msgid "/usr/bin/env" msgstr "/usr/bin/env" #. type: cindex -#: guix-git/doc/guix.texi:15994 +#: guix-git/doc/guix.texi:16351 #, no-wrap msgid "@file{env}, in @file{/usr/bin}" msgstr "@file{env}, dans @file{/usr/bin}" #. type: defvr -#: guix-git/doc/guix.texi:15997 +#: guix-git/doc/guix.texi:16354 msgid "If you want to add, say, @code{/usr/bin/env} to your system, you can change it to:" msgstr "Si vous voulez ajouter, disons, @code{/usr/bin/env} à votre système, vous pouvez changer cela en :" #. type: lisp -#: guix-git/doc/guix.texi:16001 +#: guix-git/doc/guix.texi:16358 #, no-wrap msgid "" "`((\"/bin/sh\" ,(file-append bash \"/bin/sh\"))\n" @@ -29204,28 +29873,28 @@ msgstr "" " (\"/usr/bin/env\" ,(file-append coreutils \"/bin/env\")))\n" #. type: defvr -#: guix-git/doc/guix.texi:16008 +#: guix-git/doc/guix.texi:16365 msgid "Since this is part of @code{%base-services}, you can use @code{modify-services} to customize the set of special files (@pxref{Service Reference, @code{modify-services}}). But the simple way to add a special file is @i{via} the @code{extra-special-file} procedure (see below)." msgstr "Comme cela fait partie de @code{%base-services}, vous pouvez utiliser @code{modify-services} pour personnaliser l'ensemble des fichiers spéciaux (@pxref{Service Reference, @code{modify-services}}). Mais la manière la plus simple d'ajouter un fichier spécial est @i{via} la procédure @code{extra-special-file} (voir ci-dessous)." #. type: deffn -#: guix-git/doc/guix.texi:16010 +#: guix-git/doc/guix.texi:16367 #, no-wrap msgid "{Scheme Procedure} extra-special-file @var{file} @var{target}" msgstr "{Procédure Scheme} extra-special-file @var{file} @var{target}" #. type: deffn -#: guix-git/doc/guix.texi:16012 +#: guix-git/doc/guix.texi:16369 msgid "Use @var{target} as the ``special file'' @var{file}." msgstr "Utilise @var{target} comme « fichier spécial » @var{file}." #. type: deffn -#: guix-git/doc/guix.texi:16016 +#: guix-git/doc/guix.texi:16373 msgid "For example, adding the following lines to the @code{services} field of your operating system declaration leads to a @file{/usr/bin/env} symlink:" msgstr "Par exemple, ajouter l'une des lignes suivantes au champ @code{services} de votre déclaration de système d'exploitation crée un lien symbolique @file{/usr/bin/env} :" #. type: lisp -#: guix-git/doc/guix.texi:16020 +#: guix-git/doc/guix.texi:16377 #, no-wrap msgid "" "(extra-special-file \"/usr/bin/env\"\n" @@ -29235,29 +29904,29 @@ msgstr "" " (file-append coreutils \"/bin/env\"))\n" #. type: deffn -#: guix-git/doc/guix.texi:16023 +#: guix-git/doc/guix.texi:16380 #, no-wrap msgid "{Scheme Procedure} host-name-service @var{name}" msgstr "{Procédure Scheme} host-name-service @var{name}" #. type: deffn -#: guix-git/doc/guix.texi:16025 +#: guix-git/doc/guix.texi:16382 msgid "Return a service that sets the host name to @var{name}." msgstr "Renvoie un service qui paramètre le nom d'hôte à @var{name}." #. type: defvr -#: guix-git/doc/guix.texi:16027 +#: guix-git/doc/guix.texi:16384 #, no-wrap msgid "{Scheme Variable} console-font-service-type" msgstr "{Variable Scheme} console-font-service-type" #. type: defvr -#: guix-git/doc/guix.texi:16032 +#: guix-git/doc/guix.texi:16389 msgid "Install the given fonts on the specified ttys (fonts are per virtual console on the kernel Linux). The value of this service is a list of tty/font pairs. The font can be the name of a font provided by the @code{kbd} package or any valid argument to @command{setfont}, as in this example:" msgstr "Installez les polices données sur les ttys spécifiés (les polices sont par console virtuelle sur le noyau Linux). La valeur de ce service est une liste de paires tty/polices. La police peut être le nom d'une police fournie par le paquet @code{kbd} ou tout argument valide de @command{setfont}, comme dans cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:16041 +#: guix-git/doc/guix.texi:16398 #, no-wrap msgid "" "`((\"tty1\" . \"LatGrkCyr-8x16\")\n" @@ -29277,1111 +29946,1111 @@ msgstr "" " \"/share/consolefonts/ter-132n\"))) ; pour HDPI\n" #. type: deffn -#: guix-git/doc/guix.texi:16044 +#: guix-git/doc/guix.texi:16401 #, no-wrap msgid "{Scheme Procedure} login-service @var{config}" msgstr "{Procédure Scheme} login-service @var{config}" #. type: deffn -#: guix-git/doc/guix.texi:16048 +#: guix-git/doc/guix.texi:16405 msgid "Return a service to run login according to @var{config}, a @code{} object, which specifies the message of the day, among other things." msgstr "Renvoie un service pour lancer login en suivant @var{config}, un objet @code{} qui spécifie le message du jour, entre autres choses." #. type: deftp -#: guix-git/doc/guix.texi:16050 +#: guix-git/doc/guix.texi:16407 #, no-wrap msgid "{Data Type} login-configuration" msgstr "{Type de données} login-configuration" #. type: deftp -#: guix-git/doc/guix.texi:16052 +#: guix-git/doc/guix.texi:16409 msgid "This is the data type representing the configuration of login." msgstr "Le type de données qui représente la configuration de login." #. type: code{#1} -#: guix-git/doc/guix.texi:16055 +#: guix-git/doc/guix.texi:16412 #, no-wrap msgid "motd" msgstr "motd" #. type: cindex -#: guix-git/doc/guix.texi:16056 +#: guix-git/doc/guix.texi:16413 #, no-wrap msgid "message of the day" msgstr "message du jour" #. type: table -#: guix-git/doc/guix.texi:16058 +#: guix-git/doc/guix.texi:16415 msgid "A file-like object containing the ``message of the day''." msgstr "Un objet simili-fichier contenant le « message du jour »." #. type: item -#: guix-git/doc/guix.texi:16059 guix-git/doc/guix.texi:19280 +#: guix-git/doc/guix.texi:16416 guix-git/doc/guix.texi:19642 #, no-wrap msgid "@code{allow-empty-passwords?} (default: @code{#t})" msgstr "@code{allow-empty-passwords?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:16062 +#: guix-git/doc/guix.texi:16419 msgid "Allow empty passwords by default so that first-time users can log in when the 'root' account has just been created." msgstr "Permet les mots de passes vides par défaut pour que les utilisateurs puissent se connecter au compte « root » la première fois après sa création." #. type: deffn -#: guix-git/doc/guix.texi:16066 +#: guix-git/doc/guix.texi:16423 #, no-wrap msgid "{Scheme Procedure} mingetty-service @var{config}" msgstr "{Procédure Scheme} mingetty-service @var{config}" #. type: deffn -#: guix-git/doc/guix.texi:16070 +#: guix-git/doc/guix.texi:16427 msgid "Return a service to run mingetty according to @var{config}, a @code{} object, which specifies the tty to run, among other things." msgstr "Renvoie un service qui lance mingetty en suivant @var{config}, un objet @code{}, qui spécifie le tty à lancer entre autres choses." #. type: deftp -#: guix-git/doc/guix.texi:16072 +#: guix-git/doc/guix.texi:16429 #, no-wrap msgid "{Data Type} mingetty-configuration" msgstr "{Type de données} mingetty-configuration" #. type: deftp -#: guix-git/doc/guix.texi:16075 +#: guix-git/doc/guix.texi:16432 msgid "This is the data type representing the configuration of Mingetty, which provides the default implementation of virtual console log-in." msgstr "C'est le type de données représentant la configuration de Mingetty, qui fournit l'implémentation par défaut de l'écran de connexion des consoles virtuelles." #. type: code{#1} -#: guix-git/doc/guix.texi:16078 guix-git/doc/guix.texi:16117 -#: guix-git/doc/guix.texi:33550 +#: guix-git/doc/guix.texi:16435 guix-git/doc/guix.texi:16474 +#: guix-git/doc/guix.texi:33987 #, no-wrap msgid "tty" msgstr "tty" #. type: table -#: guix-git/doc/guix.texi:16080 +#: guix-git/doc/guix.texi:16437 msgid "The name of the console this Mingetty runs on---e.g., @code{\"tty1\"}." msgstr "Le nom de la console sur laquelle tourne ce Mingetty, p.@: ex.@: @code{\"tty1\"}." #. type: item -#: guix-git/doc/guix.texi:16081 guix-git/doc/guix.texi:16146 -#: guix-git/doc/guix.texi:16305 +#: guix-git/doc/guix.texi:16438 guix-git/doc/guix.texi:16503 +#: guix-git/doc/guix.texi:16662 #, no-wrap msgid "@code{auto-login} (default: @code{#f})" msgstr "@code{auto-login} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16085 +#: guix-git/doc/guix.texi:16442 msgid "When true, this field must be a string denoting the user name under which the system automatically logs in. When it is @code{#f}, a user name and password must be entered to log in." msgstr "Lorsque la valeur est vraie, ce champ doit être une chaîne de caractère dénotant le nom d'utilisateur pour lequel le système se connecte automatiquement. Lorsque la valeur est @code{#f}, il faut entrer un nom d'utilisateur et un mot de passe pour se connecter." #. type: item -#: guix-git/doc/guix.texi:16086 +#: guix-git/doc/guix.texi:16443 #, no-wrap msgid "@code{login-program} (default: @code{#f})" msgstr "@code{login-program} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16090 +#: guix-git/doc/guix.texi:16447 msgid "This must be either @code{#f}, in which case the default log-in program is used (@command{login} from the Shadow tool suite), or a gexp denoting the name of the log-in program." msgstr "Ce doit être soit @code{#f}, auquel cas le programme de connexion par défaut est utilisé (@command{login} de la suite d'outils Shadow), soit une gexp dénotant le nom d'un programme de connexion." #. type: item -#: guix-git/doc/guix.texi:16091 +#: guix-git/doc/guix.texi:16448 #, no-wrap msgid "@code{login-pause?} (default: @code{#f})" msgstr "@code{login-pause?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16094 +#: guix-git/doc/guix.texi:16451 msgid "When set to @code{#t} in conjunction with @var{auto-login}, the user will have to press a key before the log-in shell is launched." msgstr "Lorsque la valeur est @code{#t} en plus de @var{auto-login}, l'utilisateur devrai appuyer sur une touche avant que le shell de connexion ne soit lancé." #. type: item -#: guix-git/doc/guix.texi:16095 +#: guix-git/doc/guix.texi:16452 #, no-wrap msgid "@code{clear-on-logout?} (default: @code{#t})" msgstr "@code{clear-on-logout?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:16097 +#: guix-git/doc/guix.texi:16454 msgid "When set to @code{#t}, the screen will be cleared after logout." msgstr "Lorsque la valeur est @code{#t}, l'écran sera nettoyé après la déconnexion." #. type: item -#: guix-git/doc/guix.texi:16098 +#: guix-git/doc/guix.texi:16455 #, no-wrap msgid "@code{mingetty} (default: @var{mingetty})" msgstr "@code{mingetty} (par défaut : @var{mingetty})" #. type: table -#: guix-git/doc/guix.texi:16100 +#: guix-git/doc/guix.texi:16457 msgid "The Mingetty package to use." msgstr "Le paquet Mingetty à utiliser." #. type: deffn -#: guix-git/doc/guix.texi:16104 +#: guix-git/doc/guix.texi:16461 #, no-wrap msgid "{Scheme Procedure} agetty-service @var{config}" msgstr "{Procédure Scheme} agetty-service @var{config}" #. type: deffn -#: guix-git/doc/guix.texi:16108 +#: guix-git/doc/guix.texi:16465 msgid "Return a service to run agetty according to @var{config}, an @code{} object, which specifies the tty to run, among other things." msgstr "Renvoie un service pour lancer agetty en suivant @var{config}, un objet @code{}, qui spécifie le tty à lancer, entre autres choses." #. type: deftp -#: guix-git/doc/guix.texi:16110 +#: guix-git/doc/guix.texi:16467 #, no-wrap msgid "{Data Type} agetty-configuration" msgstr "{Type de données} agetty-configuration" #. type: deftp -#: guix-git/doc/guix.texi:16114 +#: guix-git/doc/guix.texi:16471 msgid "This is the data type representing the configuration of agetty, which implements virtual and serial console log-in. See the @code{agetty(8)} man page for more information." msgstr "Ce type de données représente la configuration de agetty, qui implémente l'écran de connexion des consoles virtuelles et series. Voir la page de manuel de @code{agetty(8)} pour plus d'informations." #. type: table -#: guix-git/doc/guix.texi:16121 +#: guix-git/doc/guix.texi:16478 msgid "The name of the console this agetty runs on, as a string---e.g., @code{\"ttyS0\"}. This argument is optional, it will default to a reasonable default serial port used by the kernel Linux." msgstr "Le nom de la console sur laquelle cet agetty fonctionne, sous forme de chaîne de caractères, par exemple @code{\"ttyS0\"}. Cet argument est optionnel, il sera par défaut un port série raisonnable par défaut utilisé par le noyau Linux." #. type: table -#: guix-git/doc/guix.texi:16125 +#: guix-git/doc/guix.texi:16482 msgid "For this, if there is a value for an option @code{agetty.tty} in the kernel command line, agetty will extract the device name of the serial port from it and use that." msgstr "Pour cela, s'il y a une valeur pour une option @code{agetty.tty} sur la ligne de commande du noyau, agetty extraira le nom du périphérique du port série à partir de cette option." #. type: table -#: guix-git/doc/guix.texi:16129 +#: guix-git/doc/guix.texi:16486 msgid "If not and if there is a value for an option @code{console} with a tty in the Linux command line, agetty will extract the device name of the serial port from it and use that." msgstr "Sinon et s'il y a une valeur pour une option @code{console} avec un tty sur la ligne de commande du noyau Linux, agetty extraira le nom du périphérique du port série et l'utilisera." #. type: table -#: guix-git/doc/guix.texi:16133 +#: guix-git/doc/guix.texi:16490 msgid "In both cases, agetty will leave the other serial device settings (baud rate etc.)@: alone---in the hope that Linux pinned them to the correct values." msgstr "Dans les deux cas, agetty laissera les autres paramètres du périphérique série (baud, etc.) sans y toucher — dans l'espoir que Linux leur a assigné les bonnes valeurs." #. type: item -#: guix-git/doc/guix.texi:16134 guix-git/doc/guix.texi:33711 +#: guix-git/doc/guix.texi:16491 guix-git/doc/guix.texi:34148 #, no-wrap msgid "@code{baud-rate} (default: @code{#f})" msgstr "@code{baud-rate} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16137 +#: guix-git/doc/guix.texi:16494 msgid "A string containing a comma-separated list of one or more baud rates, in descending order." msgstr "Une chaîne qui contient une liste d'un ou plusieurs taux de baud séparés par des virgules, en ordre décroissant." #. type: item -#: guix-git/doc/guix.texi:16138 +#: guix-git/doc/guix.texi:16495 #, no-wrap msgid "@code{term} (default: @code{#f})" msgstr "@code{term} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16141 +#: guix-git/doc/guix.texi:16498 msgid "A string containing the value used for the @env{TERM} environment variable." msgstr "Une chaîne de caractères contenant la valeur utilisée pour la variable d'environnement @env{TERM}." #. type: item -#: guix-git/doc/guix.texi:16142 +#: guix-git/doc/guix.texi:16499 #, no-wrap msgid "@code{eight-bits?} (default: @code{#f})" msgstr "@code{eight-bits?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16145 +#: guix-git/doc/guix.texi:16502 msgid "When @code{#t}, the tty is assumed to be 8-bit clean, and parity detection is disabled." msgstr "Lorsque la valeur est @code{#t}, le tty est supposé être propre pour les caractères 8-bit et la détection de parité est désactivée." #. type: table -#: guix-git/doc/guix.texi:16149 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:16506 guix-git/doc/guix.texi:16665 msgid "When passed a login name, as a string, the specified user will be logged in automatically without prompting for their login name or password." msgstr "Lorsqu'un nom de connexion est passé comme une chaîne de caractères, l'utilisateur spécifié sera automatiquement connecté sans demande du nom d'utilisateur ni du mot de passe." #. type: item -#: guix-git/doc/guix.texi:16150 +#: guix-git/doc/guix.texi:16507 #, no-wrap msgid "@code{no-reset?} (default: @code{#f})" msgstr "@code{no-reset?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16152 +#: guix-git/doc/guix.texi:16509 msgid "When @code{#t}, don't reset terminal cflags (control modes)." msgstr "Lorsque la valeur est @code{#t}, ne vide pas les cflags du terminal (modes de contrôle)." #. type: item -#: guix-git/doc/guix.texi:16153 +#: guix-git/doc/guix.texi:16510 #, no-wrap msgid "@code{host} (default: @code{#f})" msgstr "@code{host} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16156 +#: guix-git/doc/guix.texi:16513 msgid "This accepts a string containing the ``login_host'', which will be written into the @file{/var/run/utmpx} file." msgstr "Ceci accepte une chaîne de caractères contenant le \"login_host\", qui sera écrite dans le fichier @file{/var/run/utmpx}." #. type: item -#: guix-git/doc/guix.texi:16157 +#: guix-git/doc/guix.texi:16514 #, no-wrap msgid "@code{remote?} (default: @code{#f})" msgstr "@code{remote?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16161 +#: guix-git/doc/guix.texi:16518 msgid "When set to @code{#t} in conjunction with @var{host}, this will add an @code{-r} fakehost option to the command line of the login program specified in @var{login-program}." msgstr "Lorsque la valeur est @code{#t} en plus de @var{host}, cette option ajoutera une option fakehost @code{-r} à la ligne de commande du programme de connexion spécifié dans @var{login-program}." #. type: item -#: guix-git/doc/guix.texi:16162 +#: guix-git/doc/guix.texi:16519 #, no-wrap msgid "@code{flow-control?} (default: @code{#f})" msgstr "@code{flow-control?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16164 +#: guix-git/doc/guix.texi:16521 msgid "When set to @code{#t}, enable hardware (RTS/CTS) flow control." msgstr "Lorsque la valeur est @code{#t}, active le contrôle de flux matériel (RTS/CTS)." #. type: item -#: guix-git/doc/guix.texi:16165 +#: guix-git/doc/guix.texi:16522 #, no-wrap msgid "@code{no-issue?} (default: @code{#f})" msgstr "@code{no-issue?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16168 +#: guix-git/doc/guix.texi:16525 msgid "When set to @code{#t}, the contents of the @file{/etc/issue} file will not be displayed before presenting the login prompt." msgstr "Lorsque la valeur est @code{#t}, le contenu du fichier @file{/etc/issue} ne sera pas affiché avant de présenter l'écran de connexion." #. type: item -#: guix-git/doc/guix.texi:16169 +#: guix-git/doc/guix.texi:16526 #, no-wrap msgid "@code{init-string} (default: @code{#f})" msgstr "@code{init-string} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16172 +#: guix-git/doc/guix.texi:16529 msgid "This accepts a string that will be sent to the tty or modem before sending anything else. It can be used to initialize a modem." msgstr "Cette option accepte une chaîne de caractères qui sera envoyée au tty ou au modem avant toute autre chose. Elle peut être utilisée pour initialiser un modem." #. type: item -#: guix-git/doc/guix.texi:16173 +#: guix-git/doc/guix.texi:16530 #, no-wrap msgid "@code{no-clear?} (default: @code{#f})" msgstr "@code{no-clear?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16176 +#: guix-git/doc/guix.texi:16533 msgid "When set to @code{#t}, agetty will not clear the screen before showing the login prompt." msgstr "Lorsque la valeur est @code{#t}, agetty ne nettoiera pas l'écran avant de montrer l'écran de connexion." #. type: item -#: guix-git/doc/guix.texi:16177 +#: guix-git/doc/guix.texi:16534 #, no-wrap msgid "@code{login-program} (default: (file-append shadow \"/bin/login\"))" msgstr "@code{login-program} (par défaut : (file-append shadow \"/bin/login\"))" #. type: table -#: guix-git/doc/guix.texi:16181 +#: guix-git/doc/guix.texi:16538 msgid "This must be either a gexp denoting the name of a log-in program, or unset, in which case the default value is the @command{login} from the Shadow tool suite." msgstr "Cette option doit être soit une gexp dénotant le nom d'un programme de connexion, soit non définie, auquel cas la valeur par défaut est la commande @command{login} de la suite d'outils Shadow." #. type: item -#: guix-git/doc/guix.texi:16182 +#: guix-git/doc/guix.texi:16539 #, no-wrap msgid "@code{local-line} (default: @code{#f})" msgstr "@code{local-line} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16186 +#: guix-git/doc/guix.texi:16543 msgid "Control the CLOCAL line flag. This accepts one of three symbols as arguments, @code{'auto}, @code{'always}, or @code{'never}. If @code{#f}, the default value chosen by agetty is @code{'auto}." msgstr "Contrôle le drapeau CLOCAL. Cette option accepte l'un des trois symboles comme argument, @code{'auto}, @code{'always} ou @code{'never}. Si la valeur est @code{#f}, la valeur par défaut choisie par agetty est @code{'auto}." #. type: item -#: guix-git/doc/guix.texi:16187 +#: guix-git/doc/guix.texi:16544 #, no-wrap msgid "@code{extract-baud?} (default: @code{#f})" msgstr "@code{extract-baud?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16190 +#: guix-git/doc/guix.texi:16547 msgid "When set to @code{#t}, instruct agetty to try to extract the baud rate from the status messages produced by certain types of modems." msgstr "Lorsque la valeur est @code{#t}, dit à agetty d'essayer d'extraire la taux de baud depuis les messages de statut produits par certains modems." #. type: item -#: guix-git/doc/guix.texi:16191 +#: guix-git/doc/guix.texi:16548 #, no-wrap msgid "@code{skip-login?} (default: @code{#f})" msgstr "@code{skip-login?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16195 +#: guix-git/doc/guix.texi:16552 msgid "When set to @code{#t}, do not prompt the user for a login name. This can be used with @var{login-program} field to use non-standard login systems." msgstr "Lorsque la valeur est @code{#t}, ne demande par de nom d'utilisateur. Elle peut être utilisée avec le champ @var{login-program} pour utiliser des systèmes de connexion non standards." #. type: item -#: guix-git/doc/guix.texi:16196 +#: guix-git/doc/guix.texi:16553 #, no-wrap msgid "@code{no-newline?} (default: @code{#f})" msgstr "@code{no-newline?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16199 +#: guix-git/doc/guix.texi:16556 msgid "When set to @code{#t}, do not print a newline before printing the @file{/etc/issue} file." msgstr "Lorsque la valeur est @code{#t}, n'affiche pas de retour à la ligne avant d'afficher le fichier @file{/etc/issue}." #. type: item -#: guix-git/doc/guix.texi:16201 +#: guix-git/doc/guix.texi:16558 #, no-wrap msgid "@code{login-options} (default: @code{#f})" msgstr "@code{login-options} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16206 +#: guix-git/doc/guix.texi:16563 msgid "This option accepts a string containing options that are passed to the login program. When used with the @var{login-program}, be aware that a malicious user could try to enter a login name containing embedded options that could be parsed by the login program." msgstr "Cette option accepte une chaîne de caractères contenant des options passées au programme login. Lorsqu'utilisé avec @var{login-program}, soyez conscient qu'un utilisateur malicieux pourrait essayer de rentrer un nom d'utilisateur contenant des options incluses qui pourraient être analysées par le programme de connexion." #. type: item -#: guix-git/doc/guix.texi:16207 +#: guix-git/doc/guix.texi:16564 #, no-wrap msgid "@code{login-pause} (default: @code{#f})" msgstr "@code{login-pause} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16211 +#: guix-git/doc/guix.texi:16568 msgid "When set to @code{#t}, wait for any key before showing the login prompt. This can be used in conjunction with @var{auto-login} to save memory by lazily spawning shells." msgstr "Lorsque la valeur est @code{#t}, attend qu'une touche soit appuyée avant de montrer l'écran de connexion. Cela peut être utilisé avec @var{auto-login} pour sauvegarder de la mémoire en lançant les shells de manière fainéante." #. type: item -#: guix-git/doc/guix.texi:16212 +#: guix-git/doc/guix.texi:16569 #, no-wrap msgid "@code{chroot} (default: @code{#f})" msgstr "@code{chroot} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16215 +#: guix-git/doc/guix.texi:16572 msgid "Change root to the specified directory. This option accepts a directory path as a string." msgstr "Change de racine dans le répertoire donné. Cette option accepte un chemin en tant que chaîne de caractères." #. type: item -#: guix-git/doc/guix.texi:16216 +#: guix-git/doc/guix.texi:16573 #, no-wrap msgid "@code{hangup?} (default: @code{#f})" msgstr "@code{hangup?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16219 +#: guix-git/doc/guix.texi:16576 msgid "Use the Linux system call @code{vhangup} to do a virtual hangup of the specified terminal." msgstr "Utilise l'appel système Linux @code{vhangup} pour raccrocher virtuellement le terminal spécifié." #. type: item -#: guix-git/doc/guix.texi:16220 +#: guix-git/doc/guix.texi:16577 #, no-wrap msgid "@code{keep-baud?} (default: @code{#f})" msgstr "@code{keep-baud?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16224 +#: guix-git/doc/guix.texi:16581 msgid "When set to @code{#t}, try to keep the existing baud rate. The baud rates from @var{baud-rate} are used when agetty receives a @key{BREAK} character." msgstr "Lorsque la valeur est @code{#t}, essaye de garder le taux de baud existant. Les taux de baud de @var{baud-rate} sont utilisés lorsque agetty reçoit un caractères @key{BREAK}." #. type: item -#: guix-git/doc/guix.texi:16225 +#: guix-git/doc/guix.texi:16582 #, no-wrap msgid "@code{timeout} (default: @code{#f})" msgstr "@code{timeout} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16228 +#: guix-git/doc/guix.texi:16585 msgid "When set to an integer value, terminate if no user name could be read within @var{timeout} seconds." msgstr "Lorsque la valeur est un nombre entier, termine la session si aucun nom d'utilisateur n'a pu être lu après @var{timeout} secondes." #. type: item -#: guix-git/doc/guix.texi:16229 +#: guix-git/doc/guix.texi:16586 #, no-wrap msgid "@code{detect-case?} (default: @code{#f})" msgstr "@code{detect-case?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16235 +#: guix-git/doc/guix.texi:16592 msgid "When set to @code{#t}, turn on support for detecting an uppercase-only terminal. This setting will detect a login name containing only uppercase letters as indicating an uppercase-only terminal and turn on some upper-to-lower case conversions. Note that this will not support Unicode characters." msgstr "Lorsque la valeur est @code{#t}, active le support pour la détection des terminaux en majuscule uniquement. Ce paramètre détectera qu'un nom d'utilisateur qui ne contient que des majuscules indique un terminal en majuscule et effectuera des conversion de majuscule en minuscule. Remarquez que cela ne fonctionne pas avec les caractères unicode." #. type: item -#: guix-git/doc/guix.texi:16236 +#: guix-git/doc/guix.texi:16593 #, no-wrap msgid "@code{wait-cr?} (default: @code{#f})" msgstr "@code{wait-cr?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16241 +#: guix-git/doc/guix.texi:16598 msgid "When set to @code{#t}, wait for the user or modem to send a carriage-return or linefeed character before displaying @file{/etc/issue} or login prompt. This is typically used with the @var{init-string} option." msgstr "Lorsque la valeur est @code{#t}, attend que l'utilisateur ou le modem envoie un retour chariot ou un saut de ligne avant d'afficher @file{/etc/issue} ou l'écran de connexion. Cela est typiquement utilisé avec l'option @var{init-string}." #. type: item -#: guix-git/doc/guix.texi:16242 +#: guix-git/doc/guix.texi:16599 #, no-wrap msgid "@code{no-hints?} (default: @code{#f})" msgstr "@code{no-hints?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16245 +#: guix-git/doc/guix.texi:16602 msgid "When set to @code{#t}, do not print hints about Num, Caps, and Scroll locks." msgstr "Lorsque la valeur est @code{#t}, n'affiche par les astuces à propos des verrouillages numériques, majuscule et défilement." #. type: item -#: guix-git/doc/guix.texi:16246 +#: guix-git/doc/guix.texi:16603 #, no-wrap msgid "@code{no-hostname?} (default: @code{#f})" msgstr "@code{no-hostname?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16249 +#: guix-git/doc/guix.texi:16606 msgid "By default, the hostname is printed. When this option is set to @code{#t}, no hostname will be shown at all." msgstr "Par défaut, le nom d'hôte est affiché. Lorsque la valeur est @code{#t}, aucun nom d'hôte ne sera affiché." #. type: item -#: guix-git/doc/guix.texi:16250 +#: guix-git/doc/guix.texi:16607 #, no-wrap msgid "@code{long-hostname?} (default: @code{#f})" msgstr "@code{long-hostname?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16254 +#: guix-git/doc/guix.texi:16611 msgid "By default, the hostname is only printed until the first dot. When this option is set to @code{#t}, the fully qualified hostname by @code{gethostname} or @code{getaddrinfo} is shown." msgstr "Par défaut, le nom d'hôte n'est affiché qu'après le premier point. Lorsque la valeur est @code{#t}, le nom d'hôte pleinement qualifié renvoyé par @code{gethostname} ou @code{getaddrinfo} sera affiché." #. type: item -#: guix-git/doc/guix.texi:16255 +#: guix-git/doc/guix.texi:16612 #, no-wrap msgid "@code{erase-characters} (default: @code{#f})" msgstr "@code{erase-characters} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16258 +#: guix-git/doc/guix.texi:16615 msgid "This option accepts a string of additional characters that should be interpreted as backspace when the user types their login name." msgstr "Cette option accepte une chaîne de caractères de caractères supplémentaires qui devraient être interprétés comme des effacements lorsque l'utilisateur les tape dans leur nom d'utilisateur." #. type: item -#: guix-git/doc/guix.texi:16259 +#: guix-git/doc/guix.texi:16616 #, no-wrap msgid "@code{kill-characters} (default: @code{#f})" msgstr "@code{kill-characters} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16263 +#: guix-git/doc/guix.texi:16620 msgid "This option accepts a string that should be interpreted to mean ``ignore all previous characters'' (also called a ``kill'' character) when the user types their login name." msgstr "Cette option accepte une chaîne de caractères qui devrait être interprétée comme signifiant « ignore tous les caractères précédents » (aussi appelé un caractère « kill ») lorsque l'utilisateur·rice tape son nom d'utilisateur·rice." #. type: item -#: guix-git/doc/guix.texi:16264 +#: guix-git/doc/guix.texi:16621 #, no-wrap msgid "@code{chdir} (default: @code{#f})" msgstr "@code{chdir} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16267 +#: guix-git/doc/guix.texi:16624 msgid "This option accepts, as a string, a directory path that will be changed to before login." msgstr "Cette option accepte, en tant que chaîne de caractères, un chemin vers un répertoire dans lequel se trouvera la commande avant la connexion." #. type: item -#: guix-git/doc/guix.texi:16268 +#: guix-git/doc/guix.texi:16625 #, no-wrap msgid "@code{delay} (default: @code{#f})" msgstr "@code{delay} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16271 +#: guix-git/doc/guix.texi:16628 msgid "This options accepts, as an integer, the number of seconds to sleep before opening the tty and displaying the login prompt." msgstr "Cette option accepte, en tant qu'entier, le nombre de secondes à attendre avant d'ouvrir le tty et afficher l'écran de connexion." #. type: item -#: guix-git/doc/guix.texi:16272 +#: guix-git/doc/guix.texi:16629 #, no-wrap msgid "@code{nice} (default: @code{#f})" msgstr "@code{nice} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16275 +#: guix-git/doc/guix.texi:16632 msgid "This option accepts, as an integer, the nice value with which to run the @command{login} program." msgstr "Cette option accepte, en tant qu'entier, la valeur « nice » avec laquelle le programme @command{login} tourne." #. type: item -#: guix-git/doc/guix.texi:16276 guix-git/doc/guix.texi:16564 -#: guix-git/doc/guix.texi:17478 guix-git/doc/guix.texi:25181 -#: guix-git/doc/guix.texi:26658 guix-git/doc/guix.texi:29074 -#: guix-git/doc/guix.texi:29869 guix-git/doc/guix.texi:31622 -#: guix-git/doc/guix.texi:34051 +#: guix-git/doc/guix.texi:16633 guix-git/doc/guix.texi:16921 +#: guix-git/doc/guix.texi:17840 guix-git/doc/guix.texi:25543 +#: guix-git/doc/guix.texi:26995 guix-git/doc/guix.texi:29411 +#: guix-git/doc/guix.texi:30234 guix-git/doc/guix.texi:31987 +#: guix-git/doc/guix.texi:34488 #, no-wrap msgid "@code{extra-options} (default: @code{'()})" msgstr "@code{extra-options} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:16279 +#: guix-git/doc/guix.texi:16636 msgid "This option provides an ``escape hatch'' for the user to provide arbitrary command-line arguments to @command{agetty} as a list of strings." msgstr "Cette option fournit un « mécanisme de secours » pour que l'utilisateur·rice puisse ajouter des arguments arbitraires en ligne de commande à @command{agetty} comme une liste de chaînes de caractères." #. type: deffn -#: guix-git/doc/guix.texi:16283 +#: guix-git/doc/guix.texi:16640 #, no-wrap msgid "{Scheme Procedure} kmscon-service-type @var{config}" msgstr "{Procédure Scheme} kmscon-service-type @var{config}" #. type: deffn -#: guix-git/doc/guix.texi:16287 +#: guix-git/doc/guix.texi:16644 msgid "Return a service to run @uref{https://www.freedesktop.org/wiki/Software/kmscon,kmscon} according to @var{config}, a @code{} object, which specifies the tty to run, among other things." msgstr "Renvoie un service qui lance @uref{https://www.freedesktop.org/wiki/Software/kmscon,kmscon} d'après @var{config}, un objet @code{}, qui spécifie le tty sur lequel tourner, entre autres choses." #. type: deftp -#: guix-git/doc/guix.texi:16289 +#: guix-git/doc/guix.texi:16646 #, no-wrap msgid "{Data Type} kmscon-configuration" msgstr "{Type de données} kmscon-configuration" #. type: deftp -#: guix-git/doc/guix.texi:16292 +#: guix-git/doc/guix.texi:16649 msgid "This is the data type representing the configuration of Kmscon, which implements virtual console log-in." msgstr "C'est le type de données représentant la configuration de Kscon, qui implémente l'écran de chargement de la console virtuelle." #. type: code{#1} -#: guix-git/doc/guix.texi:16295 +#: guix-git/doc/guix.texi:16652 #, no-wrap msgid "virtual-terminal" msgstr "virtual-terminal" #. type: table -#: guix-git/doc/guix.texi:16297 +#: guix-git/doc/guix.texi:16654 msgid "The name of the console this Kmscon runs on---e.g., @code{\"tty1\"}." msgstr "Le nom de la console sur laquelle Kmscon tourne, p.@: ex.@: @code{\"tty1\"}." #. type: item -#: guix-git/doc/guix.texi:16298 +#: guix-git/doc/guix.texi:16655 #, no-wrap msgid "@code{login-program} (default: @code{#~(string-append #$shadow \"/bin/login\")})" msgstr "@code{login-program} (par défaut : @code{#~(string-append #$shadow \"/bin/login\")})" #. type: table -#: guix-git/doc/guix.texi:16301 +#: guix-git/doc/guix.texi:16658 msgid "A gexp denoting the name of the log-in program. The default log-in program is @command{login} from the Shadow tool suite." msgstr "Une gexp qui dénote le nom d'un programme de connexion. le programme de connexion par défaut est @command{login} de la suite d'outils Shadow." #. type: item -#: guix-git/doc/guix.texi:16302 +#: guix-git/doc/guix.texi:16659 #, no-wrap msgid "@code{login-arguments} (default: @code{'(\"-p\")})" msgstr "@code{login-arguments} (par défaut : @code{'(\"-p\")})" #. type: table -#: guix-git/doc/guix.texi:16304 +#: guix-git/doc/guix.texi:16661 msgid "A list of arguments to pass to @command{login}." msgstr "Une liste d'arguments à passer à @command{login}." #. type: item -#: guix-git/doc/guix.texi:16309 +#: guix-git/doc/guix.texi:16666 #, no-wrap msgid "@code{hardware-acceleration?} (default: #f)" msgstr "@code{hardware-acceleration?} (par défaut : #f)" #. type: table -#: guix-git/doc/guix.texi:16311 +#: guix-git/doc/guix.texi:16668 msgid "Whether to use hardware acceleration." msgstr "S'il faut utiliser l'accélération matérielle." #. type: item -#: guix-git/doc/guix.texi:16312 +#: guix-git/doc/guix.texi:16669 #, no-wrap msgid "@code{font-engine} (default: @code{\"pango\"})" msgstr "@code{font-engine} (par défaut : @code{\"pango\"})" #. type: table -#: guix-git/doc/guix.texi:16314 +#: guix-git/doc/guix.texi:16671 msgid "Font engine used in Kmscon." msgstr "Moteur de polices utilisé dans Kmscon." #. type: item -#: guix-git/doc/guix.texi:16315 +#: guix-git/doc/guix.texi:16672 #, no-wrap msgid "@code{font-size} (default: @code{12})" msgstr "@code{font-size} (par défaut : @code{12})" #. type: table -#: guix-git/doc/guix.texi:16317 +#: guix-git/doc/guix.texi:16674 msgid "Font size used in Kmscon." msgstr "Taille de police utilisée par Kmscon." #. type: table -#: guix-git/doc/guix.texi:16321 +#: guix-git/doc/guix.texi:16678 msgid "If this is @code{#f}, Kmscon uses the default keyboard layout---usually US English (``qwerty'') for a 105-key PC keyboard." msgstr "Si la valeur est @code{#f}, Kmscon utilise la disposition du clavier par défaut — habituellement la disposition anglaise américaine (« qwerty ») pour un clavier de PC à 105 touches." #. type: table -#: guix-git/doc/guix.texi:16325 +#: guix-git/doc/guix.texi:16682 msgid "Otherwise this must be a @code{keyboard-layout} object specifying the keyboard layout. @xref{Keyboard Layout}, for more information on how to specify the keyboard layout." msgstr "Sinon cela doit être un objet @code{keyboard-layout} spécifiant la disposition du clavier. @xref{Keyboard Layout} pour plus d'informations sur la manière de spécifier la disposition du clavier." #. type: item -#: guix-git/doc/guix.texi:16326 +#: guix-git/doc/guix.texi:16683 #, no-wrap msgid "@code{kmscon} (default: @var{kmscon})" msgstr "@code{kmscon} (par défaut : @var{kmscon})" #. type: table -#: guix-git/doc/guix.texi:16328 +#: guix-git/doc/guix.texi:16685 msgid "The Kmscon package to use." msgstr "Le paquet Kmscon à utiliser." #. type: cindex -#: guix-git/doc/guix.texi:16332 +#: guix-git/doc/guix.texi:16689 #, no-wrap msgid "name service cache daemon" msgstr "name service cache daemon" #. type: cindex -#: guix-git/doc/guix.texi:16333 +#: guix-git/doc/guix.texi:16690 #, no-wrap msgid "nscd" msgstr "nscd" #. type: deffn -#: guix-git/doc/guix.texi:16334 +#: guix-git/doc/guix.texi:16691 #, no-wrap msgid "{Scheme Procedure} nscd-service [@var{config}] [#:glibc glibc] @" msgstr "{Procédure Scheme} nscd-service [@var{config}] [#:glibc glibc] @" #. type: deffn -#: guix-git/doc/guix.texi:16339 +#: guix-git/doc/guix.texi:16696 msgid "[#:name-services '()] Return a service that runs the libc name service cache daemon (nscd) with the given @var{config}---an @code{} object. @xref{Name Service Switch}, for an example." msgstr "" "[#:name-services '()]\n" "Renvoie un service qui lance le démon de cache de services de noms de la libc (nscd) avec la @var{config} donnée — un objet @code{}. @xref{Name Service Switch}, pour un exemple." #. type: deffn -#: guix-git/doc/guix.texi:16341 +#: guix-git/doc/guix.texi:16698 msgid "For convenience, the Shepherd service for nscd provides the following actions:" msgstr "Parce que c'est pratique, le service du Shepherd pour nscd fournit les actions suivantes :" #. type: item -#: guix-git/doc/guix.texi:16343 +#: guix-git/doc/guix.texi:16700 #, no-wrap msgid "invalidate" msgstr "invalidate" #. type: cindex -#: guix-git/doc/guix.texi:16344 +#: guix-git/doc/guix.texi:16701 #, no-wrap msgid "cache invalidation, nscd" msgstr "invalidation du cache, nscd" #. type: cindex -#: guix-git/doc/guix.texi:16345 +#: guix-git/doc/guix.texi:16702 #, no-wrap msgid "nscd, cache invalidation" msgstr "nscd, invalidation du cache" #. type: table -#: guix-git/doc/guix.texi:16347 +#: guix-git/doc/guix.texi:16704 msgid "This invalidate the given cache. For instance, running:" msgstr "Cela invalide le cache donné. Par exemple, en laçant :" #. type: example -#: guix-git/doc/guix.texi:16350 +#: guix-git/doc/guix.texi:16707 #, no-wrap msgid "herd invalidate nscd hosts\n" msgstr "herd invalidate nscd hosts\n" #. type: table -#: guix-git/doc/guix.texi:16354 +#: guix-git/doc/guix.texi:16711 msgid "invalidates the host name lookup cache of nscd." msgstr "on invalide le cache de noms d'hôtes de nscd." #. type: item -#: guix-git/doc/guix.texi:16355 +#: guix-git/doc/guix.texi:16712 #, no-wrap msgid "statistics" msgstr "statistiques" #. type: table -#: guix-git/doc/guix.texi:16358 +#: guix-git/doc/guix.texi:16715 msgid "Running @command{herd statistics nscd} displays information about nscd usage and caches." msgstr "Lancer @command{herd statistics nscd} affiche des informations sur l'utilisation de nscd et des caches." #. type: defvr -#: guix-git/doc/guix.texi:16362 +#: guix-git/doc/guix.texi:16719 #, no-wrap msgid "{Scheme Variable} %nscd-default-configuration" msgstr "{Variable Scheme} %nscd-default-configuration" #. type: defvr -#: guix-git/doc/guix.texi:16366 +#: guix-git/doc/guix.texi:16723 msgid "This is the default @code{} value (see below) used by @code{nscd-service}. It uses the caches defined by @code{%nscd-default-caches}; see below." msgstr "C'est la valeur par défaut de @code{} (voir plus bas) utilisée par @code{nscd-service}. Elle utilise les caches définis par @code{%nscd-default-caches} ; voir plus bas." #. type: deftp -#: guix-git/doc/guix.texi:16368 +#: guix-git/doc/guix.texi:16725 #, no-wrap msgid "{Data Type} nscd-configuration" msgstr "{Type de données} nscd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:16371 +#: guix-git/doc/guix.texi:16728 msgid "This is the data type representing the name service cache daemon (nscd) configuration." msgstr "C'est le type de données qui représente la configuration du démon de cache de services de noms (nscd)." #. type: item -#: guix-git/doc/guix.texi:16374 +#: guix-git/doc/guix.texi:16731 #, no-wrap msgid "@code{name-services} (default: @code{'()})" msgstr "@code{name-services} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:16377 +#: guix-git/doc/guix.texi:16734 msgid "List of packages denoting @dfn{name services} that must be visible to the nscd---e.g., @code{(list @var{nss-mdns})}." msgstr "Liste des paquets dénotant des @dfn{services de noms} qui doivent être visible pour nscd, p.@: ex.@: @code{(list @var{nss-mdns})}." #. type: item -#: guix-git/doc/guix.texi:16378 +#: guix-git/doc/guix.texi:16735 #, no-wrap msgid "@code{glibc} (default: @var{glibc})" msgstr "@code{glibc} (par défaut : @var{glibc})" #. type: table -#: guix-git/doc/guix.texi:16381 +#: guix-git/doc/guix.texi:16738 msgid "Package object denoting the GNU C Library providing the @command{nscd} command." msgstr "Objet de paquet qui dénote la Bibliothèque C de GNU qui fournit la commande @command{nscd}." #. type: item -#: guix-git/doc/guix.texi:16382 +#: guix-git/doc/guix.texi:16739 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/nscd.log\"})" msgstr "@code{log-file} (par défaut : @code{\"/var/log/nscd.log\"})" #. type: table -#: guix-git/doc/guix.texi:16385 +#: guix-git/doc/guix.texi:16742 msgid "Name of the nscd log file. This is where debugging output goes when @code{debug-level} is strictly positive." msgstr "Nom du fichier journal de nscd. C'est là que les sorties de débogage sont envoyée lorsque @code{debug-level} est strictement positif." #. type: item -#: guix-git/doc/guix.texi:16386 +#: guix-git/doc/guix.texi:16743 #, no-wrap msgid "@code{debug-level} (default: @code{0})" msgstr "@code{debug-level} (par défaut : @code{0})" #. type: table -#: guix-git/doc/guix.texi:16389 +#: guix-git/doc/guix.texi:16746 msgid "Integer denoting the debugging levels. Higher numbers mean that more debugging output is logged." msgstr "Entier qui dénote le niveau de débogage. Les entiers les plus grands signifient plus de sortie de débogage." #. type: item -#: guix-git/doc/guix.texi:16390 +#: guix-git/doc/guix.texi:16747 #, no-wrap msgid "@code{caches} (default: @code{%nscd-default-caches})" msgstr "@code{caches} (par défaut : @code{%nscd-default-caches})" #. type: table -#: guix-git/doc/guix.texi:16393 +#: guix-git/doc/guix.texi:16750 msgid "List of @code{} objects denoting things to be cached; see below." msgstr "Liste d'objets @code{} qui dénotent des choses à mettre en cache ; voir plus bas." #. type: deftp -#: guix-git/doc/guix.texi:16397 +#: guix-git/doc/guix.texi:16754 #, no-wrap msgid "{Data Type} nscd-cache" msgstr "{Type de données} nscd-cache" #. type: deftp -#: guix-git/doc/guix.texi:16399 +#: guix-git/doc/guix.texi:16756 msgid "Data type representing a cache database of nscd and its parameters." msgstr "Type de données représentant une base de données de cache de nscd et ses paramètres." #. type: cindex -#: guix-git/doc/guix.texi:16402 guix-git/doc/guix.texi:21071 +#: guix-git/doc/guix.texi:16759 guix-git/doc/guix.texi:21433 #, no-wrap msgid "database" msgstr "database" #. type: table -#: guix-git/doc/guix.texi:16407 +#: guix-git/doc/guix.texi:16764 msgid "This is a symbol representing the name of the database to be cached. Valid values are @code{passwd}, @code{group}, @code{hosts}, and @code{services}, which designate the corresponding NSS database (@pxref{NSS Basics,,, libc, The GNU C Library Reference Manual})." msgstr "C'est un symbole qui représente le nom de la base de donnée à mettre en cache. Les valeurs valide sont @code{passwd}, @code{group}, @code{hosts} et @code{services} qui désignent les bases de données NSS correspondantes (@pxref{NSS Basics,,, libc, The GNU C Library Reference Manual})." #. type: code{#1} -#: guix-git/doc/guix.texi:16408 +#: guix-git/doc/guix.texi:16765 #, no-wrap msgid "positive-time-to-live" msgstr "positive-time-to-live" #. type: itemx -#: guix-git/doc/guix.texi:16409 +#: guix-git/doc/guix.texi:16766 #, no-wrap msgid "@code{negative-time-to-live} (default: @code{20})" msgstr "@code{negative-time-to-live} (par défaut : @code{20})" #. type: table -#: guix-git/doc/guix.texi:16412 +#: guix-git/doc/guix.texi:16769 msgid "A number representing the number of seconds during which a positive or negative lookup result remains in cache." msgstr "Un entier qui représente le nombre de secondes pendant lesquelles un résultat positif ou négatif reste en cache." #. type: item -#: guix-git/doc/guix.texi:16413 +#: guix-git/doc/guix.texi:16770 #, no-wrap msgid "@code{check-files?} (default: @code{#t})" msgstr "@code{check-files?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:16416 +#: guix-git/doc/guix.texi:16773 msgid "Whether to check for updates of the files corresponding to @var{database}." msgstr "Indique s'il faut vérifier des mises à jours dans les fichiers correspondant à @var{database}." #. type: table -#: guix-git/doc/guix.texi:16420 +#: guix-git/doc/guix.texi:16777 msgid "For instance, when @var{database} is @code{hosts}, setting this flag instructs nscd to check for updates in @file{/etc/hosts} and to take them into account." msgstr "Par exemple, lorsque @var{database} est @code{hosts}, ce drapeau indique à nscd de vérifier s'il y a des mises à jour de @file{/etc/hosts} et de les prendre en compte." #. type: item -#: guix-git/doc/guix.texi:16421 +#: guix-git/doc/guix.texi:16778 #, no-wrap msgid "@code{persistent?} (default: @code{#t})" msgstr "@code{persistent?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:16423 +#: guix-git/doc/guix.texi:16780 msgid "Whether the cache should be stored persistently on disk." msgstr "Indique si le cache devrait être stocké de manière persistante sur le disque." #. type: item -#: guix-git/doc/guix.texi:16424 +#: guix-git/doc/guix.texi:16781 #, no-wrap msgid "@code{shared?} (default: @code{#t})" msgstr "@code{shared?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:16426 +#: guix-git/doc/guix.texi:16783 msgid "Whether the cache should be shared among users." msgstr "Indique si le cache devrait être partagé entre les utilisateurs." #. type: item -#: guix-git/doc/guix.texi:16427 +#: guix-git/doc/guix.texi:16784 #, no-wrap msgid "@code{max-database-size} (default: 32@tie{}MiB)" msgstr "@code{max-database-size} (par défaut : 32@tie{}MiB)" #. type: table -#: guix-git/doc/guix.texi:16429 +#: guix-git/doc/guix.texi:16786 msgid "Maximum size in bytes of the database cache." msgstr "Taille maximale en octets de la base de données en cache." #. type: defvr -#: guix-git/doc/guix.texi:16436 +#: guix-git/doc/guix.texi:16793 #, no-wrap msgid "{Scheme Variable} %nscd-default-caches" msgstr "{Variable Scheme} %nscd-default-caches" #. type: defvr -#: guix-git/doc/guix.texi:16439 +#: guix-git/doc/guix.texi:16796 msgid "List of @code{} objects used by default by @code{nscd-configuration} (see above)." msgstr "Liste d'objets @code{} utilisés par défaut par @code{nscd-configuration} (voir plus haut)." #. type: defvr -#: guix-git/doc/guix.texi:16445 +#: guix-git/doc/guix.texi:16802 msgid "It enables persistent and aggressive caching of service and host name lookups. The latter provides better host name lookup performance, resilience in the face of unreliable name servers, and also better privacy---often the result of host name lookups is in local cache, so external name servers do not even need to be queried." msgstr "Elle active la mise en cache persistante et agressive des recherches de services et de noms d'hôtes. Ces derniers fournissent une recherche de noms d'hôtes plus performante, résiliente face à des serveurs de noms peu fiables et une protection de votre vie privée plus efficace — souvent le résultat des recherches de noms d'hôtes sont dans le cache local, donc les serveurs de nom externes n'ont même pas besoin d'être questionnés." #. type: anchor{#1} -#: guix-git/doc/guix.texi:16448 +#: guix-git/doc/guix.texi:16805 msgid "syslog-configuration-type" msgstr "syslog-configuration-type" #. type: cindex -#: guix-git/doc/guix.texi:16448 guix-git/doc/guix.texi:16464 +#: guix-git/doc/guix.texi:16805 guix-git/doc/guix.texi:16821 #, no-wrap msgid "syslog" msgstr "syslog" #. type: cindex -#: guix-git/doc/guix.texi:16449 guix-git/doc/guix.texi:17035 +#: guix-git/doc/guix.texi:16806 guix-git/doc/guix.texi:17397 #, no-wrap msgid "logging" msgstr "journalisation" #. type: deftp -#: guix-git/doc/guix.texi:16450 +#: guix-git/doc/guix.texi:16807 #, no-wrap msgid "{Data Type} syslog-configuration" msgstr "{Type de données} syslog-configuration" #. type: deftp -#: guix-git/doc/guix.texi:16452 +#: guix-git/doc/guix.texi:16809 msgid "This data type represents the configuration of the syslog daemon." msgstr "Ce type de données représente la configuration du démon syslog." #. type: item -#: guix-git/doc/guix.texi:16454 +#: guix-git/doc/guix.texi:16811 #, no-wrap msgid "@code{syslogd} (default: @code{#~(string-append #$inetutils \"/libexec/syslogd\")})" msgstr "@code{syslogd} (par défaut : @code{#~(string-append #$inetutils \"/libexec/syslogd\")})" #. type: table -#: guix-git/doc/guix.texi:16456 +#: guix-git/doc/guix.texi:16813 msgid "The syslog daemon to use." msgstr "Le démon syslog à utiliser." #. type: item -#: guix-git/doc/guix.texi:16457 +#: guix-git/doc/guix.texi:16814 #, no-wrap msgid "@code{config-file} (default: @code{%default-syslog.conf})" msgstr "@code{config-file} (par défaut : @code{%default-syslog.conf})" #. type: table -#: guix-git/doc/guix.texi:16459 +#: guix-git/doc/guix.texi:16816 msgid "The syslog configuration file to use." msgstr "Le fichier de configuration de syslog à utiliser." #. type: anchor{#1} -#: guix-git/doc/guix.texi:16464 +#: guix-git/doc/guix.texi:16821 msgid "syslog-service" msgstr "syslog-service" #. type: deffn -#: guix-git/doc/guix.texi:16465 +#: guix-git/doc/guix.texi:16822 #, no-wrap msgid "{Scheme Procedure} syslog-service @var{config}" msgstr "{Procédure Scheme} syslog-service @var{config}" #. type: deffn -#: guix-git/doc/guix.texi:16467 +#: guix-git/doc/guix.texi:16824 msgid "Return a service that runs a syslog daemon according to @var{config}." msgstr "Renvoie un service qui lance un démon syslog en suivant @var{config}." #. type: deffn -#: guix-git/doc/guix.texi:16470 +#: guix-git/doc/guix.texi:16827 msgid "@xref{syslogd invocation,,, inetutils, GNU Inetutils}, for more information on the configuration file syntax." msgstr "@xref{syslogd invocation,,, inetutils, GNU Inetutils}, pour plus d'informations sur la syntaxe du fichier de configuration." #. type: defvr -#: guix-git/doc/guix.texi:16472 +#: guix-git/doc/guix.texi:16829 #, no-wrap msgid "{Scheme Variable} guix-service-type" msgstr "{Variable Scheme} guix-service-type" #. type: defvr -#: guix-git/doc/guix.texi:16476 +#: guix-git/doc/guix.texi:16833 msgid "This is the type of the service that runs the build daemon, @command{guix-daemon} (@pxref{Invoking guix-daemon}). Its value must be a @code{guix-configuration} record as described below." msgstr "C'est le type de service qui lance le démon de construction, @command{guix-daemon} (@pxref{Invoking guix-daemon}). Sa valeur doit être un enregistrement @code{guix-configuration} décrit plus bas." #. type: anchor{#1} -#: guix-git/doc/guix.texi:16479 +#: guix-git/doc/guix.texi:16836 msgid "guix-configuration-type" msgstr "guix-configuration-type" #. type: deftp -#: guix-git/doc/guix.texi:16479 +#: guix-git/doc/guix.texi:16836 #, no-wrap msgid "{Data Type} guix-configuration" msgstr "{Type de données} guix-configuration" #. type: deftp -#: guix-git/doc/guix.texi:16482 +#: guix-git/doc/guix.texi:16839 msgid "This data type represents the configuration of the Guix build daemon. @xref{Invoking guix-daemon}, for more information." msgstr "Ce type de données représente la configuration du démon de construction de Guix. @xref{Invoking guix-daemon} pour plus d'informations." #. type: item -#: guix-git/doc/guix.texi:16484 +#: guix-git/doc/guix.texi:16841 #, no-wrap msgid "@code{guix} (default: @var{guix})" msgstr "@code{guix} (par défaut : @var{guix})" #. type: table -#: guix-git/doc/guix.texi:16486 guix-git/doc/guix.texi:16763 +#: guix-git/doc/guix.texi:16843 guix-git/doc/guix.texi:17120 msgid "The Guix package to use." msgstr "Le paquet Guix à utiliser." #. type: item -#: guix-git/doc/guix.texi:16487 +#: guix-git/doc/guix.texi:16844 #, no-wrap msgid "@code{build-group} (default: @code{\"guixbuild\"})" msgstr "@code{build-group} (par défaut : @code{\"guixbuild\"})" #. type: table -#: guix-git/doc/guix.texi:16489 +#: guix-git/doc/guix.texi:16846 msgid "Name of the group for build user accounts." msgstr "Nom du groupe des comptes utilisateurs de construction." #. type: item -#: guix-git/doc/guix.texi:16490 +#: guix-git/doc/guix.texi:16847 #, no-wrap msgid "@code{build-accounts} (default: @code{10})" msgstr "@code{build-accounts} (par défaut : @code{10})" #. type: table -#: guix-git/doc/guix.texi:16492 +#: guix-git/doc/guix.texi:16849 msgid "Number of build user accounts to create." msgstr "Nombre de comptes utilisateurs de construction à créer." #. type: item -#: guix-git/doc/guix.texi:16493 +#: guix-git/doc/guix.texi:16850 #, no-wrap msgid "@code{authorize-key?} (default: @code{#t})" msgstr "@code{authorize-key?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:16500 +#: guix-git/doc/guix.texi:16857 msgid "Whether to authorize the substitute keys listed in @code{authorized-keys}---by default that of @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} (@pxref{Substitutes})." msgstr "Indique s'il faut autoriser ou non les clefs de substituts listées dans @code{authorize-keys} — par défaut celle de @code{@value{SUBSTITUTE-SERVER-1}} et @code{@value{SUBSTITUTE-SERVER-2}} (@pxref{Substituts})." #. type: table -#: guix-git/doc/guix.texi:16506 +#: guix-git/doc/guix.texi:16863 msgid "When @code{authorize-key?} is true, @file{/etc/guix/acl} cannot be changed by invoking @command{guix archive --authorize}. You must instead adjust @code{guix-configuration} as you wish and reconfigure the system. This ensures that your operating system configuration file is self-contained." msgstr "Lorsque @code{authorize-key?} est vrai, @file{/etc/guix/acl} ne peut pas être changé en invoquant @command{guix archive --authorize}. vous devez plutôt ajuster @code{guix-configuration} comme vous le souhaitez et reconfigurer le système. Cela s'assure que le fichier de configuration de votre système est auto-contenu." #. type: quotation -#: guix-git/doc/guix.texi:16513 +#: guix-git/doc/guix.texi:16870 msgid "When booting or reconfiguring to a system where @code{authorize-key?} is true, the existing @file{/etc/guix/acl} file is backed up as @file{/etc/guix/acl.bak} if it was determined to be a manually modified file. This is to facilitate migration from earlier versions, which allowed for in-place modifications to @file{/etc/guix/acl}." msgstr "Au démarrage ou la reconfiguration d'un système où @code{authorize-key?} est vrai, le fichier @file{/etc/guix/acl} existant est sauvegardé dans @file{/etc/guix/acl.bak} s'il est déterminé qu'il a été modifié manuellement. Cela facilite la migration à partir de versions précédentes, qui permettaient des modifications en-place de @file{/etc/guix/acl}." #. type: vindex -#: guix-git/doc/guix.texi:16515 +#: guix-git/doc/guix.texi:16872 #, no-wrap msgid "%default-authorized-guix-keys" msgstr "%default-authorized-guix-keys" #. type: item -#: guix-git/doc/guix.texi:16516 +#: guix-git/doc/guix.texi:16873 #, no-wrap msgid "@code{authorized-keys} (default: @code{%default-authorized-guix-keys})" msgstr "@code{authorized-keys} (par défaut : @code{%default-authorized-guix-keys})" #. type: table -#: guix-git/doc/guix.texi:16522 +#: guix-git/doc/guix.texi:16879 msgid "The list of authorized key files for archive imports, as a list of string-valued gexps (@pxref{Invoking guix archive}). By default, it contains that of @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} (@pxref{Substitutes}). See @code{substitute-urls} below for an example on how to change it." msgstr "La liste des fichiers des fichiers de clés autorisées pour les imports d'archives, en tant que liste de gexps sous forme de chaines (@pxref{Invoking guix archive}). Par défaut, elle contient celle de @code{@value{SUBSTITUTE-SERVER-1}} et @code{@value{SUBSTITUTE-SERVER-2}} (@pxref{Substituts}). Voir @code{substitute-urls} ci-dessous pour apprendre comment la changer." #. type: item -#: guix-git/doc/guix.texi:16523 +#: guix-git/doc/guix.texi:16880 #, no-wrap msgid "@code{use-substitutes?} (default: @code{#t})" msgstr "@code{use-substitutes?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:16525 +#: guix-git/doc/guix.texi:16882 msgid "Whether to use substitutes." msgstr "S'il faut utiliser les substituts." #. type: item -#: guix-git/doc/guix.texi:16526 guix-git/doc/guix.texi:29171 +#: guix-git/doc/guix.texi:16883 guix-git/doc/guix.texi:29508 #, no-wrap msgid "@code{substitute-urls} (default: @code{%default-substitute-urls})" msgstr "@code{substitute-urls} (par défaut : @code{%default-substitute-urls})" #. type: table -#: guix-git/doc/guix.texi:16528 guix-git/doc/guix.texi:29173 +#: guix-git/doc/guix.texi:16885 guix-git/doc/guix.texi:29510 msgid "The list of URLs where to look for substitutes by default." msgstr "La liste des URL où trouver des substituts par défaut." #. type: table -#: guix-git/doc/guix.texi:16535 +#: guix-git/doc/guix.texi:16892 msgid "Suppose you would like to fetch substitutes from @code{guix.example.org} in addition to @code{@value{SUBSTITUTE-SERVER-1}}. You will need to do two things: (1) add @code{guix.example.org} to @code{substitute-urls}, and (2) authorize its signing key, having done appropriate checks (@pxref{Substitute Server Authorization}). The configuration below does exactly that:" msgstr "Supposons que vous vouliez récupérer des substituts à partir de @code{guix.example.org} en plus de @code{@value{SUBSTITUTE-SERVER-1}}. Vous devrez faire deux choses : (1) ajouter @code{guix.example.org} à @code{substitute-urls}, et (2) autoriser sa clé de signature, après avoir effectué les vérifications adéquates (@pxref{Substitute Server Authorization}). La configuration ci-dessous fait exactement cela :" #. type: lisp -#: guix-git/doc/guix.texi:16544 +#: guix-git/doc/guix.texi:16901 #, no-wrap msgid "" "(guix-configuration\n" @@ -30401,150 +31070,151 @@ msgstr "" " %default-authorized-guix-keys)))\n" #. type: table -#: guix-git/doc/guix.texi:16549 +#: guix-git/doc/guix.texi:16906 msgid "This example assumes that the file @file{./guix.example.org-key.pub} contains the public key that @code{guix.example.org} uses to sign substitutes." msgstr "Cet exemple suppose que le fichier @file{./guix.example.org-key.pub} contient la clé publique que @code{guix.example.org} utilise pour signer les substituts." #. type: item -#: guix-git/doc/guix.texi:16550 +#: guix-git/doc/guix.texi:16907 #, no-wrap msgid "@code{max-silent-time} (default: @code{0})" msgstr "@code{max-silent-time} (par défaut : @code{0})" #. type: itemx -#: guix-git/doc/guix.texi:16551 +#: guix-git/doc/guix.texi:16908 #, no-wrap msgid "@code{timeout} (default: @code{0})" msgstr "@code{timeout} (par défaut : @code{0})" #. type: table -#: guix-git/doc/guix.texi:16555 +#: guix-git/doc/guix.texi:16912 msgid "The number of seconds of silence and the number of seconds of activity, respectively, after which a build process times out. A value of zero disables the timeout." msgstr "Le nombre de secondes de silence et le nombre de secondes d'inactivité, respectivement, après lesquelles un processus de construction son délai d'attente. Une valeur de zéro désactive le délai d'attente." #. type: item -#: guix-git/doc/guix.texi:16556 -#, no-wrap -msgid "@code{log-compression} (default: @code{'bzip2})" +#: guix-git/doc/guix.texi:16913 +#, fuzzy, no-wrap +#| msgid "@code{log-compression} (default: @code{'bzip2})" +msgid "@code{log-compression} (default: @code{'gzip})" msgstr "@code{log-compression} (par défaut : @code{'bzip2})" #. type: table -#: guix-git/doc/guix.texi:16559 +#: guix-git/doc/guix.texi:16916 msgid "The type of compression used for build logs---one of @code{gzip}, @code{bzip2}, or @code{none}." msgstr "Le type de compression utilisé par les journaux de construction — parmi @code{gzip}, @code{bzip2} et @code{none}." #. type: item -#: guix-git/doc/guix.texi:16560 +#: guix-git/doc/guix.texi:16917 #, no-wrap msgid "@code{discover?} (default: @code{#f})" msgstr "@code{discover?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16566 +#: guix-git/doc/guix.texi:16923 msgid "List of extra command-line options for @command{guix-daemon}." msgstr "Liste d'options supplémentaires de la ligne de commande pour @command{guix-daemon}." #. type: item -#: guix-git/doc/guix.texi:16567 +#: guix-git/doc/guix.texi:16924 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/guix-daemon.log\"})" msgstr "@code{log-file} (par défaut : @code{\"/var/log/guix-daemon.log\"})" #. type: table -#: guix-git/doc/guix.texi:16570 +#: guix-git/doc/guix.texi:16927 msgid "File where @command{guix-daemon}'s standard output and standard error are written." msgstr "Le fichier où les sorties standard et d'erreur de @command{guix-daemon} sont écrites." #. type: cindex -#: guix-git/doc/guix.texi:16571 +#: guix-git/doc/guix.texi:16928 #, no-wrap msgid "HTTP proxy, for @code{guix-daemon}" msgstr "Proxy HTTP, pour @code{guix-daemon}" #. type: cindex -#: guix-git/doc/guix.texi:16572 +#: guix-git/doc/guix.texi:16929 #, no-wrap msgid "proxy, for @code{guix-daemon} HTTP access" msgstr "proxy, pour l'accès @code{guix-daemon} HTTP" #. type: item -#: guix-git/doc/guix.texi:16573 +#: guix-git/doc/guix.texi:16930 #, no-wrap msgid "@code{http-proxy} (default: @code{#f})" msgstr "@code{http-proxy} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16576 +#: guix-git/doc/guix.texi:16933 msgid "The URL of the HTTP and HTTPS proxy used for downloading fixed-output derivations and substitutes." msgstr "L'URL du proxy HTTP et HTTPS utilisé pour le téléchargement des dérivés et substituts à sortie fixe." #. type: table -#: guix-git/doc/guix.texi:16579 +#: guix-git/doc/guix.texi:16936 msgid "It is also possible to change the daemon's proxy at run time through the @code{set-http-proxy} action, which restarts it:" msgstr "Il est également possible de changer le proxy du démon au moment de l'exécution grâce à l'action @code{set-http-proxy}, qui le redémarre :" #. type: example -#: guix-git/doc/guix.texi:16582 +#: guix-git/doc/guix.texi:16939 #, no-wrap msgid "herd set-http-proxy guix-daemon http://localhost:8118\n" msgstr "herd set-http-proxy guix-daemon http://localhost:8118\n" #. type: table -#: guix-git/doc/guix.texi:16585 +#: guix-git/doc/guix.texi:16942 msgid "To clear the proxy settings, run:" msgstr "Pour effacer les paramètres du proxy, exécutez :" #. type: example -#: guix-git/doc/guix.texi:16588 +#: guix-git/doc/guix.texi:16945 #, no-wrap msgid "herd set-http-proxy guix-daemon\n" msgstr "herd set-http-proxy guix-daemon\n" #. type: item -#: guix-git/doc/guix.texi:16590 +#: guix-git/doc/guix.texi:16947 #, no-wrap msgid "@code{tmpdir} (default: @code{#f})" msgstr "@code{tmpdir} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16592 +#: guix-git/doc/guix.texi:16949 msgid "A directory path where the @command{guix-daemon} will perform builds." msgstr "Un répertoire où @command{guix-daemon} effectuera ses constructions." #. type: deffn -#: guix-git/doc/guix.texi:16596 +#: guix-git/doc/guix.texi:16953 #, no-wrap msgid "{Scheme Procedure} udev-service [#:udev @var{eudev} #:rules @code{'()}]" msgstr "{Procédure Scheme} udev-service [#:udev @var{eudev} #:rules @code{'()}]" #. type: deffn -#: guix-git/doc/guix.texi:16602 +#: guix-git/doc/guix.texi:16959 msgid "Run @var{udev}, which populates the @file{/dev} directory dynamically. udev rules can be provided as a list of files through the @var{rules} variable. The procedures @code{udev-rule}, @code{udev-rules-service} and @code{file->udev-rule} from @code{(gnu services base)} simplify the creation of such rule files." msgstr "Lance @var{udev}, qui remplit le répertoire @file{/dev} dynamiquement. Les règles udev peuvent être fournies comme une liste de fichier via la variable @var{rules}. Les procédures @code{udev-rule}, @code{udev-rules-service} et @code{(gnu services base)} simplifient la création de ces fichiers de règle." #. type: deffn -#: guix-git/doc/guix.texi:16605 +#: guix-git/doc/guix.texi:16962 msgid "The @command{herd rules udev} command, as root, returns the name of the directory containing all the active udev rules." msgstr "La commande @command{herd rules udev}, en tant que root, renvoie le nom du répertoire contenant toutes les règles udev actives." #. type: deffn -#: guix-git/doc/guix.texi:16607 +#: guix-git/doc/guix.texi:16964 #, no-wrap msgid "{Scheme Procedure} udev-rule [@var{file-name} @var{contents}]" msgstr "{Procédure Scheme} udev-rule [@var{file-name} @var{contents}]" #. type: deffn -#: guix-git/doc/guix.texi:16610 +#: guix-git/doc/guix.texi:16967 msgid "Return a udev-rule file named @var{file-name} containing the rules defined by the @var{contents} literal." msgstr "Renvoie un fichier de règle udev nommé @var{file-name} contenant les règles définie par le littéral @var{contents}." #. type: deffn -#: guix-git/doc/guix.texi:16614 +#: guix-git/doc/guix.texi:16971 msgid "In the following example, a rule for a USB device is defined to be stored in the file @file{90-usb-thing.rules}. The rule runs a script upon detecting a USB device with a given product identifier." msgstr "Dans l'exemple suivant, on définie une règle pour un périphérique USB qui sera stockée dans le fichier @file{90-usb-thing.rules}. La règle lance un script à la détection du périphérique USB avec l'identifiant de produit donné." #. type: lisp -#: guix-git/doc/guix.texi:16622 +#: guix-git/doc/guix.texi:16979 #, no-wrap msgid "" "(define %example-udev-rule\n" @@ -30562,25 +31232,25 @@ msgstr "" " \"RUN+=\\\"/path/to/script\\\"\")))\n" #. type: deffn -#: guix-git/doc/guix.texi:16625 +#: guix-git/doc/guix.texi:16982 #, no-wrap msgid "{Scheme Procedure} udev-rules-service [@var{name} @var{rules}] @" msgstr "{Procédure Scheme} udev-rule-service [@var{name} @var{rules}] @" #. type: deffn -#: guix-git/doc/guix.texi:16632 +#: guix-git/doc/guix.texi:16989 msgid "[#:groups @var{groups}] Return a service that extends @code{udev-service-type } with @var{rules} and @code{account-service-type} with @var{groups} as system groups. This works by creating a singleton service type @code{@var{name}-udev-rules}, of which the returned service is an instance." msgstr "" "[#:groups @var{groups}]\n" "Renvoie un service qui étend @code{udev-service-type } avec @var{rules} et @code{account-service-type} avec @var{groups} comme groupes système. Cela fonctionne en créant un service de type @code{@var{name}-udev-rules}, dont le service renvoyé est une instance." #. type: deffn -#: guix-git/doc/guix.texi:16635 +#: guix-git/doc/guix.texi:16992 msgid "Here we show how it can be used to extend @code{udev-service-type} with the previously defined rule @code{%example-udev-rule}." msgstr "Nous montrons ici comment cela peut être utilisé pour étendre @code{udev-service-type} avec la règle précédemment définie @code{%exemple-udev-rule}." #. type: lisp -#: guix-git/doc/guix.texi:16642 +#: guix-git/doc/guix.texi:16999 #, no-wrap msgid "" "(operating-system\n" @@ -30596,23 +31266,23 @@ msgstr "" " %desktop-services)))\n" #. type: deffn -#: guix-git/doc/guix.texi:16645 +#: guix-git/doc/guix.texi:17002 #, no-wrap msgid "{Scheme Procedure} file->udev-rule [@var{file-name} @var{file}]" msgstr "{Procédure Scheme} file->udev-rule [@var{file-name} @var{file}]" #. type: deffn -#: guix-git/doc/guix.texi:16648 +#: guix-git/doc/guix.texi:17005 msgid "Return a udev file named @var{file-name} containing the rules defined within @var{file}, a file-like object." msgstr "Renvoie un fichier udev nommé @var{file-name} contenant les règles définies dans @var{file}, un objet simili-fichier." #. type: deffn -#: guix-git/doc/guix.texi:16650 +#: guix-git/doc/guix.texi:17007 msgid "The following example showcases how we can use an existing rule file." msgstr "L'exemple suivant montre comment utiliser un fichier de règles existant." #. type: lisp -#: guix-git/doc/guix.texi:16655 +#: guix-git/doc/guix.texi:17012 #, no-wrap msgid "" "(use-modules (guix download) ;for url-fetch\n" @@ -30626,7 +31296,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:16666 +#: guix-git/doc/guix.texi:17023 #, no-wrap msgid "" "(define %android-udev-rules\n" @@ -30652,17 +31322,17 @@ msgstr "" " (base32 \"0lmmagpyb6xsq6zcr2w1cyx9qmjqmajkvrdbhjx32gqf1d9is003\"))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:16675 +#: guix-git/doc/guix.texi:17032 msgid "Additionally, Guix package definitions can be included in @var{rules} in order to extend the udev rules with the definitions found under their @file{lib/udev/rules.d} sub-directory. In lieu of the previous @var{file->udev-rule} example, we could have used the @var{android-udev-rules} package which exists in Guix in the @code{(gnu packages android)} module." msgstr "En plus, les définitions des paquets de Guix peuvent être inclus dans @var{rules} pour étendre les règles avec les définitions trouvées dans leur sous-répertoire @file{lib/udev/rules.d}. Au lieu de l'exemple @var{file->udev-rule} précédent, on aurait pu utiliser le paquet @var{android-udev-rules} qui existe dans le module @code{(gnu packages android)}." #. type: Plain text -#: guix-git/doc/guix.texi:16684 +#: guix-git/doc/guix.texi:17041 msgid "The following example shows how to use the @var{android-udev-rules} package so that the Android tool @command{adb} can detect devices without root privileges. It also details how to create the @code{adbusers} group, which is required for the proper functioning of the rules defined within the @code{android-udev-rules} package. To create such a group, we must define it both as part of the @code{supplementary-groups} of our @code{user-account} declaration, as well as in the @var{groups} of the @code{udev-rules-service} procedure." msgstr "L'exemple suivant montre comment utiliser le paquet @var{android-udev-rules} pour que l'outil Android @command{adb} puisse détecter les appareils sans privilège root. Il détaille aussi comment créer le groupe @code{adbusers}, requis pour le bon fonctionnement des règles définies dans le paquet @code{android-udev-rules}. Pour créer ce groupe, on doit le définir dans les @code{supplementary-groups} de la déclaration @code{user-account} ainsi que dans le champ @var{groups} de l'enregistrement @var{operating-system}." #. type: lisp -#: guix-git/doc/guix.texi:16689 +#: guix-git/doc/guix.texi:17046 #, no-wrap msgid "" "(use-modules (gnu packages android) ;for android-udev-rules\n" @@ -30676,7 +31346,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:16702 +#: guix-git/doc/guix.texi:17059 #, no-wrap msgid "" "(operating-system\n" @@ -30706,330 +31376,344 @@ msgstr "" " %desktop-services)))\n" #. type: defvr -#: guix-git/doc/guix.texi:16704 +#: guix-git/doc/guix.texi:17061 #, no-wrap msgid "{Scheme Variable} urandom-seed-service-type" msgstr "{Variable Scheme} urandom-seed-service-type" #. type: defvr -#: guix-git/doc/guix.texi:16709 +#: guix-git/doc/guix.texi:17066 msgid "Save some entropy in @code{%random-seed-file} to seed @file{/dev/urandom} when rebooting. It also tries to seed @file{/dev/urandom} from @file{/dev/hwrng} while booting, if @file{/dev/hwrng} exists and is readable." msgstr "Conserve de l' entropie dans @code{%random-seed-file} pour amorcer @file{/dev/urandom} lors du redémarrage. Il essaie également d'amorcer @file{/dev/urandom} à partir de @file{/dev/hwrng} lors du démarrage, si @file{/dev/hwrng} existe et est lisible." #. type: defvr -#: guix-git/doc/guix.texi:16711 +#: guix-git/doc/guix.texi:17068 #, no-wrap msgid "{Scheme Variable} %random-seed-file" msgstr "{Variable Scheme} %random-seed-file" #. type: defvr -#: guix-git/doc/guix.texi:16715 +#: guix-git/doc/guix.texi:17072 msgid "This is the name of the file where some random bytes are saved by @var{urandom-seed-service} to seed @file{/dev/urandom} when rebooting. It defaults to @file{/var/lib/random-seed}." msgstr "C'est le nom du fichier où des octets aléatoires sont sauvegardés par @var{urandom-seed-service} pour démarrer @file{/dev/urandom} au redémarrage. Sa valeur par défaut est @file{/var/lib/random-seed}." #. type: cindex -#: guix-git/doc/guix.texi:16717 +#: guix-git/doc/guix.texi:17074 #, no-wrap msgid "mouse" msgstr "souris" #. type: cindex -#: guix-git/doc/guix.texi:16718 +#: guix-git/doc/guix.texi:17075 #, no-wrap msgid "gpm" msgstr "gpm" #. type: defvr -#: guix-git/doc/guix.texi:16719 +#: guix-git/doc/guix.texi:17076 #, no-wrap msgid "{Scheme Variable} gpm-service-type" msgstr "{Variable Scheme} gpm-service-type" #. type: defvr -#: guix-git/doc/guix.texi:16724 +#: guix-git/doc/guix.texi:17081 msgid "This is the type of the service that runs GPM, the @dfn{general-purpose mouse daemon}, which provides mouse support to the Linux console. GPM allows users to use the mouse in the console, notably to select, copy, and paste text." msgstr "C'est le type du service qui lance GPM, le @dfn{démon de souris à but général}, qui fournit le support de la souris sur la console Linux. GPM permet aux utilisateurs d'utiliser la souris dans la console, entre autres pour sélectionner, copier et coller du texte." #. type: defvr -#: guix-git/doc/guix.texi:16727 +#: guix-git/doc/guix.texi:17084 msgid "The value for services of this type must be a @code{gpm-configuration} (see below). This service is not part of @code{%base-services}." msgstr "La valeur pour les services de ce type doit être un @code{gpm-configuration} (voir plus bas). Ce service ne fait pas partie de @code{%base-services}." #. type: deftp -#: guix-git/doc/guix.texi:16729 +#: guix-git/doc/guix.texi:17086 #, no-wrap msgid "{Data Type} gpm-configuration" msgstr "{Type de données} gpm-configuration" #. type: deftp -#: guix-git/doc/guix.texi:16731 +#: guix-git/doc/guix.texi:17088 msgid "Data type representing the configuration of GPM." msgstr "Type de données représentant la configuration de GPM." #. type: item -#: guix-git/doc/guix.texi:16733 +#: guix-git/doc/guix.texi:17090 #, no-wrap msgid "@code{options} (default: @code{%default-gpm-options})" msgstr "@code{options} (par défaut : @code{%default-gpm-options})" #. type: table -#: guix-git/doc/guix.texi:16738 +#: guix-git/doc/guix.texi:17095 msgid "Command-line options passed to @command{gpm}. The default set of options instruct @command{gpm} to listen to mouse events on @file{/dev/input/mice}. @xref{Command Line,,, gpm, gpm manual}, for more information." msgstr "Les options de la ligne de commande à passer à @command{gpm}. L'ensemble des options par défaut dit à @command{gpm} d'écouter les événements de la souris dans @file{/dev/input/mice}. @xref{Command Line,,, gpm, gpm manual}, pour plus d'informations." #. type: item -#: guix-git/doc/guix.texi:16739 +#: guix-git/doc/guix.texi:17096 #, no-wrap msgid "@code{gpm} (default: @code{gpm})" msgstr "@code{gpm} (par défaut : @code{gpm})" #. type: table -#: guix-git/doc/guix.texi:16741 +#: guix-git/doc/guix.texi:17098 msgid "The GPM package to use." msgstr "Le paquet GPM à utiliser." #. type: anchor{#1} -#: guix-git/doc/guix.texi:16746 +#: guix-git/doc/guix.texi:17103 msgid "guix-publish-service-type" msgstr "guix-publish-service-type" #. type: deffn -#: guix-git/doc/guix.texi:16746 +#: guix-git/doc/guix.texi:17103 #, no-wrap msgid "{Scheme Variable} guix-publish-service-type" msgstr "{Variable Scheme} guix-publish-service-type" #. type: deffn -#: guix-git/doc/guix.texi:16750 +#: guix-git/doc/guix.texi:17107 msgid "This is the service type for @command{guix publish} (@pxref{Invoking guix publish}). Its value must be a @code{guix-publish-configuration} object, as described below." msgstr "C'est le type de service pour @command{guix publish} (@pxref{Invoquer guix publish}). Sa valeur doit être un objet @code{guix-publish-configuration} décrit plus bas." #. type: deffn -#: guix-git/doc/guix.texi:16754 +#: guix-git/doc/guix.texi:17111 msgid "This assumes that @file{/etc/guix} already contains a signing key pair as created by @command{guix archive --generate-key} (@pxref{Invoking guix archive}). If that is not the case, the service will fail to start." msgstr "Ce service suppose que @file{/etc/guix} contient déjà une paire de clefs créée par @command{guix archive --generate-key} (@pxref{Invoking guix archive}). Si ce n'est pas le cas, le service ne démarrera pas." #. type: deftp -#: guix-git/doc/guix.texi:16756 +#: guix-git/doc/guix.texi:17113 #, no-wrap msgid "{Data Type} guix-publish-configuration" msgstr "{Type de données} guix-publish-configuration" #. type: deftp -#: guix-git/doc/guix.texi:16759 +#: guix-git/doc/guix.texi:17116 msgid "Data type representing the configuration of the @code{guix publish} service." msgstr "Le type de données représentant la configuration du service @code{guix publish}." #. type: item -#: guix-git/doc/guix.texi:16761 +#: guix-git/doc/guix.texi:17118 #, no-wrap msgid "@code{guix} (default: @code{guix})" msgstr "@code{guix} (par défaut : @code{guix})" #. type: item -#: guix-git/doc/guix.texi:16764 guix-git/doc/guix.texi:31477 +#: guix-git/doc/guix.texi:17121 guix-git/doc/guix.texi:31842 #, no-wrap msgid "@code{port} (default: @code{80})" msgstr "@code{port} (par défaut : @code{80})" #. type: table -#: guix-git/doc/guix.texi:16766 +#: guix-git/doc/guix.texi:17123 msgid "The TCP port to listen for connections." msgstr "Le port TCP sur lequel écouter les connexions." #. type: item -#: guix-git/doc/guix.texi:16767 guix-git/doc/guix.texi:29054 -#: guix-git/doc/guix.texi:32858 +#: guix-git/doc/guix.texi:17124 guix-git/doc/guix.texi:29391 +#: guix-git/doc/guix.texi:33223 #, no-wrap msgid "@code{host} (default: @code{\"localhost\"})" msgstr "@code{host} (par défaut : @code{\"localhost\"})" #. type: table -#: guix-git/doc/guix.texi:16770 +#: guix-git/doc/guix.texi:17127 msgid "The host (and thus, network interface) to listen to. Use @code{\"0.0.0.0\"} to listen on all the network interfaces." msgstr "L'hôte (et donc, l'interface réseau) sur lequel écouter. Utilisez @code{\"0.0.0.0\"} pour écouter sur toutes les interfaces réseaux." #. type: item -#: guix-git/doc/guix.texi:16771 +#: guix-git/doc/guix.texi:17128 #, no-wrap msgid "@code{advertise?} (default: @code{#f})" msgstr "@code{advertise?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16774 +#: guix-git/doc/guix.texi:17131 msgid "When true, advertise the service on the local network @i{via} the DNS-SD protocol, using Avahi." msgstr "Lorsque la valeur est vraie, annonce le service sur le réseau local via le protocole DNS-SD, avec Avahi." #. type: table -#: guix-git/doc/guix.texi:16778 +#: guix-git/doc/guix.texi:17135 msgid "This allows neighboring Guix devices with discovery on (see @code{guix-configuration} above) to discover this @command{guix publish} instance and to automatically download substitutes from it." msgstr "Cela permet aux machines Guix voisines qui ont activé la découverte (voir @code{guix-configuration} ci-dessus) de découvrir cette instance de @command{guix publish} et de télécharger des substituts directement à partir d'elle." #. type: item -#: guix-git/doc/guix.texi:16779 +#: guix-git/doc/guix.texi:17136 #, no-wrap msgid "@code{compression} (default: @code{'((\"gzip\" 3) (\"zstd\" 3))})" msgstr "@code{compression} (par défaut : @code{'((\"gzip\" 3) (\"zstd\" 3))})" #. type: table -#: guix-git/doc/guix.texi:16783 +#: guix-git/doc/guix.texi:17140 msgid "This is a list of compression method/level tuple used when compressing substitutes. For example, to compress all substitutes with @emph{both} lzip at level 7 and gzip at level 9, write:" msgstr "Il s'agit d'une liste de méthodes de compression/numéros de niveau utilisés lors de la compression des substituts. Par exemple, pour compresser tous les substituts avec @emph{both} lzip au niveau 7 et gzip au niveau 9, écrivez :" #. type: lisp -#: guix-git/doc/guix.texi:16786 +#: guix-git/doc/guix.texi:17143 #, no-wrap msgid "'((\"lzip\" 7) (\"gzip\" 9))\n" msgstr "'((\"lzip\" 7) (\"gzip\" 9))\n" #. type: table -#: guix-git/doc/guix.texi:16792 +#: guix-git/doc/guix.texi:17149 msgid "Level 9 achieves the best compression ratio at the expense of increased CPU usage, whereas level 1 achieves fast compression. @xref{Invoking guix publish}, for more information on the available compression methods and the tradeoffs involved." msgstr "Le niveau 9 atteint le meilleur taux de compression au détriment d'une utilisation accrue du CPU, tandis que le niveau 1 atteint une compression rapide. @xref{Invoking guix publish}, pour plus d'information sur les méthodes de compression disponibles et les compromis à faire entre elles." #. type: table -#: guix-git/doc/guix.texi:16794 +#: guix-git/doc/guix.texi:17151 msgid "An empty list disables compression altogether." msgstr "Une liste vide désactive complètement la compression." #. type: item -#: guix-git/doc/guix.texi:16795 +#: guix-git/doc/guix.texi:17152 #, no-wrap msgid "@code{nar-path} (default: @code{\"nar\"})" msgstr "@code{nar-path} (par défaut : @code{\"nar\"})" #. type: table -#: guix-git/doc/guix.texi:16798 +#: guix-git/doc/guix.texi:17155 msgid "The URL path at which ``nars'' can be fetched. @xref{Invoking guix publish, @option{--nar-path}}, for details." msgstr "Le chemin d'URL où les « nars » se trouvent. @xref{Invoquer guix publish, @option{--nar-path}}, pour des détails." #. type: item -#: guix-git/doc/guix.texi:16799 +#: guix-git/doc/guix.texi:17156 #, no-wrap msgid "@code{cache} (default: @code{#f})" msgstr "@code{cache} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16805 +#: guix-git/doc/guix.texi:17162 msgid "When it is @code{#f}, disable caching and instead generate archives on demand. Otherwise, this should be the name of a directory---e.g., @code{\"/var/cache/guix/publish\"}---where @command{guix publish} caches archives and meta-data ready to be sent. @xref{Invoking guix publish, @option{--cache}}, for more information on the tradeoffs involved." msgstr "Lorsque la valeur est @code{#f}, désactive le cache et génère les archives à la demande. Sinon, cela devrait être le nom d'un répertoire — p.@: ex.@: @code{\"/var/cache/guix/publish\"} — où @command{guix publish} gère le cache des archives et des métadonnées prêtes à être envoyées. @xref{Invoking guix publish, @option{--cache}}, pour plus d'informations sur les compromis impliqués." #. type: item -#: guix-git/doc/guix.texi:16806 +#: guix-git/doc/guix.texi:17163 #, no-wrap msgid "@code{workers} (default: @code{#f})" msgstr "@code{workers} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16810 +#: guix-git/doc/guix.texi:17167 msgid "When it is an integer, this is the number of worker threads used for caching; when @code{#f}, the number of processors is used. @xref{Invoking guix publish, @option{--workers}}, for more information." msgstr "Lorsque la valeur est un entier, c'est le nombre de threads de travail utilisés pour le cache ; lorsque la valeur est @code{#f}, le nombre de processeurs est utilisé. @xref{Invoking guix publish, @option{--workers}}, pour plus d'informations." #. type: item -#: guix-git/doc/guix.texi:16811 +#: guix-git/doc/guix.texi:17168 #, no-wrap msgid "@code{cache-bypass-threshold} (default: 10 MiB)" msgstr "@code{cache-bypass-threshold} (par défaut : 10 Mio)" #. type: table -#: guix-git/doc/guix.texi:16816 +#: guix-git/doc/guix.texi:17173 msgid "When @code{cache} is true, this is the maximum size in bytes of a store item for which @command{guix publish} may bypass its cache in case of a cache miss. @xref{Invoking guix publish, @option{--cache-bypass-threshold}}, for more information." msgstr "Lorsque @code{cache} est vrai, c'est la taille maximale en octets d'un élément du dépôt pour lequel @command{guix publish} peut contourner le cache s'il n'y est pas. @xref{Invoking guix publish, @option{--cache-bypass-threshold}}, pour plus d'informations." #. type: item -#: guix-git/doc/guix.texi:16817 +#: guix-git/doc/guix.texi:17174 #, no-wrap msgid "@code{ttl} (default: @code{#f})" msgstr "@code{ttl} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16821 +#: guix-git/doc/guix.texi:17178 msgid "When it is an integer, this denotes the @dfn{time-to-live} in seconds of the published archives. @xref{Invoking guix publish, @option{--ttl}}, for more information." msgstr "Lorsque la valeur est un entier, il dénote la @dfn{durée de vie} en secondes des archives publiées. @xref{Invoking guix publish, @option{--ttl}}, pour plus d'informations." +#. type: item +#: guix-git/doc/guix.texi:17179 +#, fuzzy, no-wrap +#| msgid "@code{relative-root} (default: @code{#f})" +msgid "@code{negative-ttl} (default: @code{#f})" +msgstr "@code{relative-root} (par défaut : @code{#f})" + +#. type: table +#: guix-git/doc/guix.texi:17183 +#, fuzzy +#| msgid "When it is an integer, this denotes the @dfn{time-to-live} in seconds of the published archives. @xref{Invoking guix publish, @option{--ttl}}, for more information." +msgid "When it is an integer, this denotes the @dfn{time-to-live} in seconds for the negative lookups. @xref{Invoking guix publish, @option{--negative-ttl}}, for more information." +msgstr "Lorsque la valeur est un entier, il dénote la @dfn{durée de vie} en secondes des archives publiées. @xref{Invoking guix publish, @option{--ttl}}, pour plus d'informations." + #. type: anchor{#1} -#: guix-git/doc/guix.texi:16825 +#: guix-git/doc/guix.texi:17187 msgid "rngd-service" msgstr "rngd-service" #. type: deffn -#: guix-git/doc/guix.texi:16825 +#: guix-git/doc/guix.texi:17187 #, no-wrap msgid "{Scheme Procedure} rngd-service [#:rng-tools @var{rng-tools}] @" msgstr "{Procédure Scheme} rngd-service [#:rng-tools @var{rng-tools}] @" #. type: deffn -#: guix-git/doc/guix.texi:16830 +#: guix-git/doc/guix.texi:17192 msgid "[#:device \"/dev/hwrng\"] Return a service that runs the @command{rngd} program from @var{rng-tools} to add @var{device} to the kernel's entropy pool. The service will fail if @var{device} does not exist." msgstr "" "[#:device \"/dev/hwrng\"]\n" "Renvoie un service qui lance le programme @command{rngd} de @var{rng-tools} pour ajouter @var{device} à la réserve d'entropie du noyau. Le service échouera si @var{device} n'existe pas." #. type: anchor{#1} -#: guix-git/doc/guix.texi:16833 +#: guix-git/doc/guix.texi:17195 msgid "pam-limits-service" msgstr "pam-limits-service" #. type: cindex -#: guix-git/doc/guix.texi:16833 +#: guix-git/doc/guix.texi:17195 #, no-wrap msgid "session limits" msgstr "limites de session" #. type: cindex -#: guix-git/doc/guix.texi:16834 +#: guix-git/doc/guix.texi:17196 #, no-wrap msgid "ulimit" msgstr "ulimit" #. type: cindex -#: guix-git/doc/guix.texi:16835 +#: guix-git/doc/guix.texi:17197 #, no-wrap msgid "priority" msgstr "priorités" #. type: cindex -#: guix-git/doc/guix.texi:16836 +#: guix-git/doc/guix.texi:17198 #, no-wrap msgid "realtime" msgstr "temps réel" #. type: cindex -#: guix-git/doc/guix.texi:16837 +#: guix-git/doc/guix.texi:17199 #, no-wrap msgid "jackd" msgstr "jackd" #. type: cindex -#: guix-git/doc/guix.texi:16838 +#: guix-git/doc/guix.texi:17200 #, no-wrap msgid "nofile" msgstr "nofile" #. type: cindex -#: guix-git/doc/guix.texi:16839 +#: guix-git/doc/guix.texi:17201 #, no-wrap msgid "open file descriptors" msgstr "descripteurs de fichiers ouverts" #. type: deffn -#: guix-git/doc/guix.texi:16840 +#: guix-git/doc/guix.texi:17202 #, no-wrap msgid "{Scheme Procedure} pam-limits-service [#:limits @code{'()}]" msgstr "{Procédure Scheme} pam-limits-service [#:limits @code{'()}]" #. type: deffn -#: guix-git/doc/guix.texi:16847 +#: guix-git/doc/guix.texi:17209 msgid "Return a service that installs a configuration file for the @uref{http://linux-pam.org/Linux-PAM-html/sag-pam_limits.html, @code{pam_limits} module}. The procedure optionally takes a list of @code{pam-limits-entry} values, which can be used to specify @code{ulimit} limits and @code{nice} priority limits to user sessions." msgstr "Renvoie un service qui installe un fichier de configuration pour le @uref{http://linux-pam.org/Linux-PAM-html/sag-pam_limits.html, module @code{pam_limits}}. La procédure prend éventuellement une liste de valeurs @code{pam-limits-entry} qui peuvent être utilisées pour spécifier les limites @code{ulimit} et les priorités @code{nice} des sessions utilisateurs." #. type: deffn -#: guix-git/doc/guix.texi:16850 +#: guix-git/doc/guix.texi:17212 msgid "The following limits definition sets two hard and soft limits for all login sessions of users in the @code{realtime} group:" msgstr "La définition de limites suivante défini deux limites matérielles et logicielles pour toutes les sessions connectées des utilisateurs du groupe @code{realtime} :" #. type: lisp -#: guix-git/doc/guix.texi:16856 +#: guix-git/doc/guix.texi:17218 #, no-wrap msgid "" "(pam-limits-service\n" @@ -31043,17 +31727,17 @@ msgstr "" " (pam-limits-entry \"@@realtime\" 'both 'memlock 'unlimited)))\n" #. type: deffn -#: guix-git/doc/guix.texi:16862 +#: guix-git/doc/guix.texi:17224 msgid "The first entry increases the maximum realtime priority for non-privileged processes; the second entry lifts any restriction of the maximum address space that can be locked in memory. These settings are commonly used for real-time audio systems." msgstr "La première entrée augment la priorité en temps réel maximale des processus non privilégiés ; la deuxième entrée abandonne les restrictions sur l'espace d'adressage maximal qui peut être verrouillé en mémoire. Ces paramètres sont souvent utilisés sur les systèmes audio temps-réel." #. type: deffn -#: guix-git/doc/guix.texi:16865 +#: guix-git/doc/guix.texi:17227 msgid "Another useful example is raising the maximum number of open file descriptors that can be used:" msgstr "Un autre exemple utile est d'augmenter le nombre maximum de descripteurs de fichiers ouverts qui peuvent être utilisés :" #. type: lisp -#: guix-git/doc/guix.texi:16870 +#: guix-git/doc/guix.texi:17232 #, no-wrap msgid "" "(pam-limits-service\n" @@ -31065,40 +31749,40 @@ msgstr "" " (pam-limits-entry \"*\" 'both 'nofile 100000)))\n" #. type: deffn -#: guix-git/doc/guix.texi:16878 +#: guix-git/doc/guix.texi:17240 msgid "In the above example, the asterisk means the limit should apply to any user. It is important to ensure the chosen value doesn't exceed the maximum system value visible in the @file{/proc/sys/fs/file-max} file, else the users would be prevented from login in. For more information about the Pluggable Authentication Module (PAM) limits, refer to the @samp{pam_limits} man page from the @code{linux-pam} package." msgstr "Dans l'exemple au-dessus, l'astérisque signifie que la limite s'applique à tous les utilisateurs. Il est important de s'assurer que la valeur choisie n'excède pas la valeur maximale du système visible dans le fichier @file{/proc/sys/fs/file-max}, sinon les utilisateurs ne pourront pas se connecter. Pour plus d'information sur les limites du module d'authentification grefable (PAM), regardez la page de manuel @samp{pam_limits} du paquet @code{linux-pam}." #. type: cindex -#: guix-git/doc/guix.texi:16883 guix-git/doc/guix.texi:37407 +#: guix-git/doc/guix.texi:17245 guix-git/doc/guix.texi:37897 #, no-wrap msgid "cron" msgstr "cron" #. type: cindex -#: guix-git/doc/guix.texi:16884 guix-git/doc/guix.texi:37408 +#: guix-git/doc/guix.texi:17246 guix-git/doc/guix.texi:37898 #, no-wrap msgid "mcron" msgstr "mcron" #. type: cindex -#: guix-git/doc/guix.texi:16885 guix-git/doc/guix.texi:37409 +#: guix-git/doc/guix.texi:17247 guix-git/doc/guix.texi:37899 #, no-wrap msgid "scheduling jobs" msgstr "tâches planifiées" #. type: Plain text -#: guix-git/doc/guix.texi:16892 +#: guix-git/doc/guix.texi:17254 msgid "The @code{(gnu services mcron)} module provides an interface to GNU@tie{}mcron, a daemon to run jobs at scheduled times (@pxref{Top,,, mcron, GNU@tie{}mcron}). GNU@tie{}mcron is similar to the traditional Unix @command{cron} daemon; the main difference is that it is implemented in Guile Scheme, which provides a lot of flexibility when specifying the scheduling of jobs and their actions." msgstr "Le module @code{(gnu services mcron)} fournit une interface pour GNU@tie{}mcron, un démon qui lance des tâches planifiées (@pxref{Top,,, mcron, GNU@tie{}mcron}). GNU@tie{}mcron est similaire au démon Unix traditionnel @command{cron} ; la principale différence est qu'il est implémenté en Guile Scheme, qui fournit beaucoup de flexibilité lors de la spécification de la planification des tâches et de leurs actions." #. type: Plain text -#: guix-git/doc/guix.texi:16900 +#: guix-git/doc/guix.texi:17262 msgid "The example below defines an operating system that runs the @command{updatedb} (@pxref{Invoking updatedb,,, find, Finding Files}) and the @command{guix gc} commands (@pxref{Invoking guix gc}) daily, as well as the @command{mkid} command on behalf of an unprivileged user (@pxref{mkid invocation,,, idutils, ID Database Utilities}). It uses gexps to introduce job definitions that are passed to mcron (@pxref{G-Expressions})." msgstr "L'exemple en dessous définit un système d'exploitation qui lance les commandes @command{updatebd} (@pxref{Invoking updatedb,,, find, Finding Files}) et @command{guix gc} (@pxref{Invoking guix gc}) tous les jours, ainsi que la commande @command{mkid} en tant qu'utilisateur non privilégié (@pxref{mkid invocation,,, idutils, ID Database Utilities}). Il utilise des gexps pour introduire des définitions de tâches qui sont passées à mcron (@pxref{G-Expressions})." #. type: lisp -#: guix-git/doc/guix.texi:16904 +#: guix-git/doc/guix.texi:17266 #, no-wrap msgid "" "(use-modules (guix) (gnu) (gnu services mcron))\n" @@ -31110,7 +31794,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:16914 +#: guix-git/doc/guix.texi:17276 #, no-wrap msgid "" "(define updatedb-job\n" @@ -31136,7 +31820,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:16920 +#: guix-git/doc/guix.texi:17282 #, no-wrap msgid "" "(define garbage-collector-job\n" @@ -31154,7 +31838,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:16927 +#: guix-git/doc/guix.texi:17289 #, no-wrap msgid "" "(define idutils-job\n" @@ -31174,7 +31858,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:16930 +#: guix-git/doc/guix.texi:17292 #, no-wrap msgid "" "(operating-system\n" @@ -31186,7 +31870,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:16940 +#: guix-git/doc/guix.texi:17302 #, no-wrap msgid "" " ;; %BASE-SERVICES already includes an instance of\n" @@ -31210,23 +31894,23 @@ msgstr "" " %base-services)))\n" #. type: quotation -#: guix-git/doc/guix.texi:16942 +#: guix-git/doc/guix.texi:17304 #, no-wrap msgid "Tip" msgstr "Astuce" #. type: quotation -#: guix-git/doc/guix.texi:16948 +#: guix-git/doc/guix.texi:17310 msgid "When providing the action of a job specification as a procedure, you should provide an explicit name for the job via the optional 3rd argument as done in the @code{updatedb-job} example above. Otherwise, the job would appear as ``Lambda function'' in the output of @command{herd schedule mcron}, which is not nearly descriptive enough!" msgstr "Lorsque vous fournissez l'action d'une spécification de tâche avec une procédure, vous devriez donner un nom explicite à la tâche via le troisième argument facultatif comme dans l'exemple @code{updatedb-job} ci-dessus. Sinon, la tâche apparaitra comme « Lambda function » dans la sortie de @command{herd schedule mcron}, ce qui n'est pas très descriptif !" #. type: Plain text -#: guix-git/doc/guix.texi:16955 +#: guix-git/doc/guix.texi:17317 msgid "For more complex jobs defined in Scheme where you need control over the top level, for instance to introduce a @code{use-modules} form, you can move your code to a separate program using the @code{program-file} procedure of the @code{(guix gexp)} module (@pxref{G-Expressions}). The example below illustrates that." msgstr "Pour les tâches plus complexes définies dans Scheme où vous devez contrôler le haut niveau, par exemple pour introduire un formulaire @code{use-modules}, vous pouvez déplacer votre code vers un programme séparé en utilisant la procédure @code{program-file} du module @code{(guix gexp)} (@pxref{G-Expressions}). L'exemple ci-dessous illustre cette possibilité." #. type: lisp -#: guix-git/doc/guix.texi:16971 +#: guix-git/doc/guix.texi:17333 #, no-wrap msgid "" "(define %battery-alert-job\n" @@ -31262,7 +31946,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:16973 +#: guix-git/doc/guix.texi:17335 #, no-wrap msgid "" " (define %min-level 20)\n" @@ -31272,7 +31956,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:16984 +#: guix-git/doc/guix.texi:17346 #, no-wrap msgid "" " (setenv \"LC_ALL\" \"C\") ;ensure English output\n" @@ -31298,106 +31982,106 @@ msgstr "" " (invoke #$(file-append beep \"/bin/beep\") \"-r5\")))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:16989 +#: guix-git/doc/guix.texi:17351 msgid "@xref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron}, for more information on mcron job specifications. Below is the reference of the mcron service." msgstr "@xref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron}, pour plus d'informations sur les spécifications des tâche de mcron. Ci-dessous est la référence du service mcron." #. type: Plain text -#: guix-git/doc/guix.texi:16992 +#: guix-git/doc/guix.texi:17354 msgid "On a running system, you can use the @code{schedule} action of the service to visualize the mcron jobs that will be executed next:" msgstr "Sur un système lancé, vous pouvez utiliser l'action @code{schedule} du service pour visualiser les travaux mcron qui seront exécutés ensuite :" #. type: example -#: guix-git/doc/guix.texi:16995 +#: guix-git/doc/guix.texi:17357 #, no-wrap msgid "# herd schedule mcron\n" msgstr "# herd schedule mcron\n" #. type: Plain text -#: guix-git/doc/guix.texi:17000 +#: guix-git/doc/guix.texi:17362 msgid "The example above lists the next five tasks that will be executed, but you can also specify the number of tasks to display:" msgstr "Cet exemple ci-dessus montre les cinq tâches qui seront exécutés, mais vous pouvez spécifier le nombre de tâches à afficher :" #. type: example -#: guix-git/doc/guix.texi:17003 +#: guix-git/doc/guix.texi:17365 #, no-wrap msgid "# herd schedule mcron 10\n" msgstr "# herd schedule mcron 10\n" #. type: defvr -#: guix-git/doc/guix.texi:17005 +#: guix-git/doc/guix.texi:17367 #, no-wrap msgid "{Scheme Variable} mcron-service-type" msgstr "{Variable Scheme} mcron-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17008 +#: guix-git/doc/guix.texi:17370 msgid "This is the type of the @code{mcron} service, whose value is an @code{mcron-configuration} object." msgstr "C'est le type du service @code{mcron}, dont la valeur est un objet @code{mcron-configuration}." #. type: defvr -#: guix-git/doc/guix.texi:17013 guix-git/doc/guix.texi:37428 +#: guix-git/doc/guix.texi:17375 guix-git/doc/guix.texi:37918 msgid "This service type can be the target of a service extension that provides additional job specifications (@pxref{Service Composition}). In other words, it is possible to define services that provide additional mcron jobs to run." msgstr "Ce type de service peut être la cible d'une extension de service qui fournit des spécifications de tâches supplémentaires (@pxref{Service Composition}). En d'autres termes, il est possible de définir des services qui fournissent des tâches mcron à lancer." #. type: deftp -#: guix-git/doc/guix.texi:17015 +#: guix-git/doc/guix.texi:17377 #, no-wrap msgid "{Data Type} mcron-configuration" msgstr "{Type de données} mcron-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17017 guix-git/doc/guix.texi:37432 +#: guix-git/doc/guix.texi:17379 guix-git/doc/guix.texi:37922 msgid "Data type representing the configuration of mcron." msgstr "Type données qui représente la configuration de mcron." #. type: item -#: guix-git/doc/guix.texi:17019 guix-git/doc/guix.texi:37434 +#: guix-git/doc/guix.texi:17381 guix-git/doc/guix.texi:37924 #, no-wrap msgid "@code{mcron} (default: @var{mcron})" msgstr "@code{mcron} (par défaut : @var{mcron})" #. type: table -#: guix-git/doc/guix.texi:17021 guix-git/doc/guix.texi:37436 +#: guix-git/doc/guix.texi:17383 guix-git/doc/guix.texi:37926 msgid "The mcron package to use." msgstr "Le paquet mcron à utiliser." #. type: code{#1} -#: guix-git/doc/guix.texi:17022 guix-git/doc/guix.texi:17091 -#: guix-git/doc/guix.texi:37437 +#: guix-git/doc/guix.texi:17384 guix-git/doc/guix.texi:17453 +#: guix-git/doc/guix.texi:37927 #, no-wrap msgid "jobs" msgstr "jobs" #. type: table -#: guix-git/doc/guix.texi:17026 guix-git/doc/guix.texi:37441 +#: guix-git/doc/guix.texi:17388 guix-git/doc/guix.texi:37931 msgid "This is a list of gexps (@pxref{G-Expressions}), where each gexp corresponds to an mcron job specification (@pxref{Syntax, mcron job specifications,, mcron, GNU@tie{}mcron})." msgstr "C'est la liste des gexps (@pxref{G-Expressions}), où chaque gexp correspond à une spécification de tâche de mcron (@pxref{Syntax, mcron job specifications,, mcron, GNU@tie{}mcron})." #. type: cindex -#: guix-git/doc/guix.texi:17033 +#: guix-git/doc/guix.texi:17395 #, no-wrap msgid "rottlog" msgstr "rottlog" #. type: cindex -#: guix-git/doc/guix.texi:17034 +#: guix-git/doc/guix.texi:17396 #, no-wrap msgid "log rotation" msgstr "journaux, rotation" #. type: Plain text -#: guix-git/doc/guix.texi:17041 +#: guix-git/doc/guix.texi:17403 msgid "Log files such as those found in @file{/var/log} tend to grow endlessly, so it's a good idea to @dfn{rotate} them once in a while---i.e., archive their contents in separate files, possibly compressed. The @code{(gnu services admin)} module provides an interface to GNU@tie{}Rot[t]log, a log rotation tool (@pxref{Top,,, rottlog, GNU Rot[t]log Manual})." msgstr "Les fichiers journaux comme ceux qui se trouvent dans @file{/var/log} ont tendance à grandir sans fin, donc c'est une bonne idée de le @dfn{faire tourner} de temps à autres — c.-à-d.@: archiver leur contenu dans des fichiers séparés, potentiellement compressés. Le module @code{(gnu services admin)} fournit une interface pour GNU@tie{}Rot[t]log, un outil de rotation de journaux (@pxref{Top,,, rottlog, GNU Rot[t]log Manual})." #. type: Plain text -#: guix-git/doc/guix.texi:17047 +#: guix-git/doc/guix.texi:17409 msgid "This service is part of @code{%base-services}, and thus enabled by default, with the default settings, for commonly encountered log files. The example below shows how to extend it with an additional @dfn{rotation}, should you need to do that (usually, services that produce log files already take care of that):" msgstr "Ce service fait partie de @code{%base-services}, et se trouve donc activé par défaut, avec les paramètres par défaut, pour les fichiers journaux les plus fréquemment rencontrés. L'exemple ci-dessous montre comment l'étendre avec une @dfn{rotation} supplémentaire, si vous devez le faire (généralement, les services qui produisent des fichiers journaux s'en chargent déjà) :" #. type: lisp -#: guix-git/doc/guix.texi:17051 +#: guix-git/doc/guix.texi:17413 #, no-wrap msgid "" "(use-modules (guix) (gnu))\n" @@ -31409,7 +32093,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:17055 +#: guix-git/doc/guix.texi:17417 #, no-wrap msgid "" "(define my-log-files\n" @@ -31423,7 +32107,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:17064 +#: guix-git/doc/guix.texi:17426 #, no-wrap msgid "" "(operating-system\n" @@ -31445,93 +32129,93 @@ msgstr "" " %base-services)))\n" #. type: defvr -#: guix-git/doc/guix.texi:17066 +#: guix-git/doc/guix.texi:17428 #, no-wrap msgid "{Scheme Variable} rottlog-service-type" msgstr "{Variable Scheme} rottlog-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17069 +#: guix-git/doc/guix.texi:17431 msgid "This is the type of the Rottlog service, whose value is a @code{rottlog-configuration} object." msgstr "C'est le type du service Rotlog, dont la valeur est un objet @code{rottlog-configuration}." #. type: defvr -#: guix-git/doc/guix.texi:17072 +#: guix-git/doc/guix.texi:17434 msgid "Other services can extend this one with new @code{log-rotation} objects (see below), thereby augmenting the set of files to be rotated." msgstr "D'autres services peuvent étendre celui-ci avec de nouveaux objets @code{log-rotation} (voir plus bas), en augmentant ainsi l'ensemble des fichiers à faire tourner." #. type: defvr -#: guix-git/doc/guix.texi:17075 +#: guix-git/doc/guix.texi:17437 msgid "This service type can define mcron jobs (@pxref{Scheduled Job Execution}) to run the rottlog service." msgstr "Ce type de service peut définir des tâches (@pxref{Scheduled Job Execution}) pour lancer le service rottlog." #. type: deftp -#: guix-git/doc/guix.texi:17077 +#: guix-git/doc/guix.texi:17439 #, no-wrap msgid "{Data Type} rottlog-configuration" msgstr "{Type de données} rottlog-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17079 +#: guix-git/doc/guix.texi:17441 msgid "Data type representing the configuration of rottlog." msgstr "Type de données représentant la configuration de rottlog." #. type: item -#: guix-git/doc/guix.texi:17081 +#: guix-git/doc/guix.texi:17443 #, no-wrap msgid "@code{rottlog} (default: @code{rottlog})" msgstr "@code{rottlog} (par défaut : @code{rottlog})" #. type: table -#: guix-git/doc/guix.texi:17083 +#: guix-git/doc/guix.texi:17445 msgid "The Rottlog package to use." msgstr "Le paquet Rottlog à utiliser." #. type: item -#: guix-git/doc/guix.texi:17084 +#: guix-git/doc/guix.texi:17446 #, no-wrap msgid "@code{rc-file} (default: @code{(file-append rottlog \"/etc/rc\")})" msgstr "@code{rc-file} (par défaut : @code{(file-append rottlog \"/etc/rc\")})" #. type: table -#: guix-git/doc/guix.texi:17087 +#: guix-git/doc/guix.texi:17449 msgid "The Rottlog configuration file to use (@pxref{Mandatory RC Variables,,, rottlog, GNU Rot[t]log Manual})." msgstr "Le fichier de configuration Rottlog à utiliser (@pxref{Mandatory RC Variables,,, rottlog, GNU Rot[t]log Manual})." #. type: item -#: guix-git/doc/guix.texi:17088 +#: guix-git/doc/guix.texi:17450 #, no-wrap msgid "@code{rotations} (default: @code{%default-rotations})" msgstr "@code{rotations} (par défaut : @code{%default-rotations})" #. type: table -#: guix-git/doc/guix.texi:17090 +#: guix-git/doc/guix.texi:17452 msgid "A list of @code{log-rotation} objects as defined below." msgstr "Une liste d'objets @code{log-rotation} définis plus bas." #. type: table -#: guix-git/doc/guix.texi:17094 +#: guix-git/doc/guix.texi:17456 msgid "This is a list of gexps where each gexp corresponds to an mcron job specification (@pxref{Scheduled Job Execution})." msgstr "C'est une liste de gexps où chaque gexp correspond à une spécification de tâche de mcron (@pxref{Scheduled Job Execution})." #. type: deftp -#: guix-git/doc/guix.texi:17097 +#: guix-git/doc/guix.texi:17459 #, no-wrap msgid "{Data Type} log-rotation" msgstr "{Type de données} log-rotation" #. type: deftp -#: guix-git/doc/guix.texi:17099 +#: guix-git/doc/guix.texi:17461 msgid "Data type representing the rotation of a group of log files." msgstr "Type de données représentant la rotation d'un groupe de fichiers journaux." #. type: deftp -#: guix-git/doc/guix.texi:17103 +#: guix-git/doc/guix.texi:17465 msgid "Taking an example from the Rottlog manual (@pxref{Period Related File Examples,,, rottlog, GNU Rot[t]log Manual}), a log rotation might be defined like this:" msgstr "En reprenant un exemple du manuel de Rottlog (@pxref{Period Related File Examples,,, rottlog, GNU Rot[t]log Manual}), on peut définir la rotation d'un journal de cette manière :" #. type: lisp -#: guix-git/doc/guix.texi:17112 +#: guix-git/doc/guix.texi:17474 #, no-wrap msgid "" "(log-rotation\n" @@ -31551,123 +32235,117 @@ msgstr "" " \"nocompress\")))\n" #. type: deftp -#: guix-git/doc/guix.texi:17115 +#: guix-git/doc/guix.texi:17477 msgid "The list of fields is as follows:" msgstr "La liste des champs est la suivante :" #. type: item -#: guix-git/doc/guix.texi:17117 +#: guix-git/doc/guix.texi:17479 #, no-wrap msgid "@code{frequency} (default: @code{'weekly})" msgstr "@code{frequency} (par défaut : @code{'weekly})" #. type: table -#: guix-git/doc/guix.texi:17119 +#: guix-git/doc/guix.texi:17481 msgid "The log rotation frequency, a symbol." msgstr "La fréquence de rotation, un symbole." -#. type: code{#1} -#: guix-git/doc/guix.texi:17120 -#, no-wrap -msgid "files" -msgstr "files" - #. type: table -#: guix-git/doc/guix.texi:17122 +#: guix-git/doc/guix.texi:17484 msgid "The list of files or file glob patterns to rotate." msgstr "La liste des fichiers ou des motifs de noms de fichiers à faire tourner." #. type: item -#: guix-git/doc/guix.texi:17123 +#: guix-git/doc/guix.texi:17485 #, no-wrap msgid "@code{options} (default: @code{'()})" msgstr "@code{options} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17126 +#: guix-git/doc/guix.texi:17488 msgid "The list of rottlog options for this rotation (@pxref{Configuration parameters,,, rottlog, GNU Rot[t]lg Manual})." msgstr "La liste des options de rottlog pour cette rotation (@pxref{Configuration parameters,,, rottlog, GNU Rot[t]lg Manual})." #. type: item -#: guix-git/doc/guix.texi:17127 +#: guix-git/doc/guix.texi:17489 #, no-wrap msgid "@code{post-rotate} (default: @code{#f})" msgstr "@code{post-rotate} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17129 +#: guix-git/doc/guix.texi:17491 msgid "Either @code{#f} or a gexp to execute once the rotation has completed." msgstr "Soit @code{#f}, soit une gexp à exécuter une fois la rotation terminée." #. type: defvr -#: guix-git/doc/guix.texi:17132 +#: guix-git/doc/guix.texi:17494 #, no-wrap msgid "{Scheme Variable} %default-rotations" msgstr "{Variable Scheme} %default-rotations" #. type: defvr -#: guix-git/doc/guix.texi:17135 +#: guix-git/doc/guix.texi:17497 msgid "Specifies weekly rotation of @code{%rotated-files} and of @file{/var/log/guix-daemon.log}." msgstr "Spécifie la rotation hebdomadaire de @code{%rotated-files} et de @file{/var/log/guix-daemon.log}." #. type: defvr -#: guix-git/doc/guix.texi:17137 +#: guix-git/doc/guix.texi:17499 #, no-wrap msgid "{Scheme Variable} %rotated-files" msgstr "{Variable Scheme} %rotated-files" #. type: defvr -#: guix-git/doc/guix.texi:17141 +#: guix-git/doc/guix.texi:17503 msgid "The list of syslog-controlled files to be rotated. By default it is: @code{'(\"/var/log/messages\" \"/var/log/secure\" \"/var/log/debug\" \\ \"/var/log/maillog\")}." msgstr "La liste des fichiers contrôlés par syslog à faire tourner. Par défaut il s'agit de : @code{'(\"/var/log/messages\" \"/var/log/secure\" \"/var/log/debug\" \\ \"/var/log/maillog\")}." #. type: Plain text -#: guix-git/doc/guix.texi:17154 +#: guix-git/doc/guix.texi:17516 msgid "The @code{(gnu services networking)} module provides services to configure network interfaces and set up networking on your machine. Those services provide different ways for you to set up your machine: by declaring a static network configuration, by running a Dynamic Host Configuration Protocol (DHCP) client, or by running daemons such as NetworkManager and Connman that automate the whole process, automatically adapt to connectivity changes, and provide a high-level user interface." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17160 +#: guix-git/doc/guix.texi:17522 msgid "On a laptop, NetworkManager and Connman are by far the most convenient options, which is why the default desktop services include NetworkManager (@pxref{Desktop Services, @code{%desktop-services}}). For a server, or for a virtual machine or a container, static network configuration or a simple DHCP client are often more appropriate." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17163 +#: guix-git/doc/guix.texi:17525 msgid "This section describes the various network setup services available, starting with static network configuration." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17164 +#: guix-git/doc/guix.texi:17526 #, no-wrap msgid "{Scheme Variable} static-networking-service-type" msgstr "{Variable Scheme} static-networking-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17169 +#: guix-git/doc/guix.texi:17531 msgid "This is the type for statically-configured network interfaces. Its value must be a list of @code{static-networking} records. Each of them declares a set of @dfn{addresses}, @dfn{routes}, and @dfn{links}, as show below." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17170 +#: guix-git/doc/guix.texi:17532 #, fuzzy, no-wrap #| msgid "Network interface on which to listen." msgid "network interface controller (NIC)" msgstr "Interface réseau sur laquelle écouter." #. type: cindex -#: guix-git/doc/guix.texi:17171 +#: guix-git/doc/guix.texi:17533 #, fuzzy, no-wrap #| msgid "Network interface on which to listen." msgid "NIC, networking interface controller" msgstr "Interface réseau sur laquelle écouter." #. type: defvr -#: guix-git/doc/guix.texi:17174 +#: guix-git/doc/guix.texi:17536 msgid "Here is the simplest configuration, with only one network interface controller (NIC) and only IPv4 connectivity:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17188 +#: guix-git/doc/guix.texi:17550 #, fuzzy, no-wrap #| msgid "" #| "(service mpd-service-type\n" @@ -31706,31 +32384,31 @@ msgstr "" " (port . \"8080\"))))))))\n" #. type: defvr -#: guix-git/doc/guix.texi:17197 +#: guix-git/doc/guix.texi:17559 msgid "The snippet above can be added to the @code{services} field of your operating system configuration (@pxref{Using the Configuration System}). It will configure your machine to have 10.0.2.15 as its IP address, with a 24-bit netmask for the local network---meaning that any 10.0.2.@var{x} address is on the local area network (LAN). Traffic to addresses outside the local network is routed @i{via} 10.0.2.2. Host names are resolved by sending domain name system (DNS) queries to 10.0.2.3." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17199 +#: guix-git/doc/guix.texi:17561 #, fuzzy, no-wrap #| msgid "{Data Type} ganeti-os-variant" msgid "{Data Type} static-networking" msgstr "{Type de données} ganeti-os-variant" #. type: deftp -#: guix-git/doc/guix.texi:17201 +#: guix-git/doc/guix.texi:17563 #, fuzzy #| msgid "This is the data type representing the SDDM service configuration." msgid "This is the data type representing a static network configuration." msgstr "C'est le type de données représentant la configuration du service SDDM." #. type: deftp -#: guix-git/doc/guix.texi:17205 +#: guix-git/doc/guix.texi:17567 msgid "As an example, here is how you would declare the configuration of a machine with a single network interface controller (NIC) available as @code{eno1}, and with one IPv4 and one IPv6 address:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17222 +#: guix-git/doc/guix.texi:17584 #, no-wrap msgid "" ";; Network configuration for one NIC, IPv4 + IPv6.\n" @@ -31751,12 +32429,12 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17228 +#: guix-git/doc/guix.texi:17590 msgid "If you are familiar with the @command{ip} command of the @uref{https://wiki.linuxfoundation.org/networking/iproute2, @code{iproute2} package} found on Linux-based systems, the declaration above is equivalent to typing:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:17234 +#: guix-git/doc/guix.texi:17596 #, no-wrap msgid "" "ip address add 10.0.2.15/24 dev eno1\n" @@ -31766,389 +32444,382 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17239 +#: guix-git/doc/guix.texi:17601 msgid "Run @command{man 8 ip} for more info. Venerable GNU/Linux users will certainly know how to do it with @command{ifconfig} and @command{route}, but we'll spare you that." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17241 +#: guix-git/doc/guix.texi:17603 #, fuzzy #| msgid "The available options are as follows:" msgid "The available fields of this data type are as follows:" msgstr "Les options disponibles sont les suivante :" #. type: code{#1} -#: guix-git/doc/guix.texi:17243 +#: guix-git/doc/guix.texi:17605 #, no-wrap msgid "addresses" msgstr "adresses" #. type: itemx -#: guix-git/doc/guix.texi:17244 -#, fuzzy, no-wrap -#| msgid "@code{plugins} (default: @code{'()})" +#: guix-git/doc/guix.texi:17606 +#, no-wrap msgid "@code{links} (default: @code{'()})" -msgstr "@code{plugins} (par défaut : @code{'()})" +msgstr "@code{links} (par défaut : @code{'()})" #. type: itemx -#: guix-git/doc/guix.texi:17245 -#, fuzzy, no-wrap -#| msgid "@code{remotes} (default: @code{'()})" +#: guix-git/doc/guix.texi:17607 +#, no-wrap msgid "@code{routes} (default: @code{'()})" -msgstr "@code{remotes} (par défaut : @code{'()})" +msgstr "@code{routes} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17248 +#: guix-git/doc/guix.texi:17610 msgid "The list of @code{network-address}, @code{network-link}, and @code{network-route} records for this network (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17249 -#, fuzzy, no-wrap -#| msgid "@code{name-services} (default: @code{'()})" +#: guix-git/doc/guix.texi:17611 +#, no-wrap msgid "@code{name-servers} (default: @code{'()})" -msgstr "@code{name-services} (par défaut : @code{'()})" +msgstr "@code{name-servers} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17252 +#: guix-git/doc/guix.texi:17614 msgid "The list of IP addresses (strings) of domain name servers. These IP addresses go to @file{/etc/resolv.conf}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17253 +#: guix-git/doc/guix.texi:17615 #, fuzzy, no-wrap #| msgid "@code{permissions} (default: @code{'(createdb login)})" msgid "@code{provision} (default: @code{'(networking)})" msgstr "@code{permissions} (par défaut : @code{'(createdb login)})" #. type: table -#: guix-git/doc/guix.texi:17256 +#: guix-git/doc/guix.texi:17618 msgid "If true, this should be a list of symbols for the Shepherd service corresponding to this network configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17257 -#, fuzzy, no-wrap -#| msgid "@code{requirement} (default: @code{'()})" +#: guix-git/doc/guix.texi:17619 +#, no-wrap msgid "@code{requirement} (default @code{'()})" msgstr "@code{requirement} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17259 +#: guix-git/doc/guix.texi:17621 #, fuzzy #| msgid "actions, of Shepherd services" msgid "The list of Shepherd services depended on." msgstr "action, des services Shepherd" #. type: deftp -#: guix-git/doc/guix.texi:17262 +#: guix-git/doc/guix.texi:17624 #, fuzzy, no-wrap #| msgid "{Data Type} ganeti-os" msgid "{Data Type} network-address" msgstr "{Type de données} ganeti-os" #. type: deftp -#: guix-git/doc/guix.texi:17265 +#: guix-git/doc/guix.texi:17627 #, fuzzy #| msgid "This is the data type representing the SDDM service configuration." msgid "This is the data type representing the IP address of a network interface." msgstr "C'est le type de données représentant la configuration du service SDDM." #. type: table -#: guix-git/doc/guix.texi:17270 +#: guix-git/doc/guix.texi:17632 #, fuzzy #| msgid "The name of the console this Getty runs on---e.g., @code{\"tty1\"}." msgid "The name of the network interface for this address---e.g., @code{\"eno1\"}." msgstr "Le nom de la console sur laquelle tourne ce Getty, p.@: ex.@: @code{\"tty1\"}." #. type: item -#: guix-git/doc/guix.texi:17271 +#: guix-git/doc/guix.texi:17633 #, no-wrap msgid "value" msgstr "valeur" #. type: table -#: guix-git/doc/guix.texi:17275 +#: guix-git/doc/guix.texi:17637 msgid "The actual IP address and network mask, in @uref{https://en.wikipedia.org/wiki/CIDR#CIDR_notation, @acronym{CIDR, Classless Inter-Domain Routing} notation}, as a string." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17279 +#: guix-git/doc/guix.texi:17641 msgid "For example, @code{\"10.0.2.15/24\"} denotes IPv4 address 10.0.2.15 on a 24-bit sub-network---all 10.0.2.@var{x} addresses are on the same local network." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17280 +#: guix-git/doc/guix.texi:17642 #, no-wrap msgid "ipv6?" msgstr "ipv6?" #. type: table -#: guix-git/doc/guix.texi:17283 +#: guix-git/doc/guix.texi:17645 msgid "Whether @code{value} denotes an IPv6 address. By default this is automatically determined." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17286 +#: guix-git/doc/guix.texi:17648 #, fuzzy, no-wrap #| msgid "{Data Type} user-group" msgid "{Data Type} network-route" msgstr "{Type de données} user-group" #. type: deftp -#: guix-git/doc/guix.texi:17288 +#: guix-git/doc/guix.texi:17650 #, fuzzy #| msgid "This is the data type representing a package recipe." msgid "This is the data type representing a network route." msgstr "C'est le type de donnée représentant une recette de paquets." #. type: code{#1} -#: guix-git/doc/guix.texi:17290 -#, fuzzy, no-wrap -#| msgid "derivation" +#: guix-git/doc/guix.texi:17652 +#, no-wrap msgid "destination" -msgstr "dérivation" +msgstr "destination" #. type: table -#: guix-git/doc/guix.texi:17293 +#: guix-git/doc/guix.texi:17655 msgid "The route destination (a string), either an IP address or @code{\"default\"} to denote the default route." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17294 -#, fuzzy, no-wrap -#| msgid "@code{csr} (default: @code{#f})" +#: guix-git/doc/guix.texi:17656 +#, no-wrap msgid "@code{source} (default: @code{#f})" -msgstr "@code{csr} (par défaut : @code{#f})" +msgstr "@code{source} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17296 +#: guix-git/doc/guix.texi:17658 #, fuzzy #| msgid "The rottlog service." msgid "The route source." msgstr "Le service rottlog." #. type: item -#: guix-git/doc/guix.texi:17297 guix-git/doc/guix.texi:34761 +#: guix-git/doc/guix.texi:17659 guix-git/doc/guix.texi:35200 #, no-wrap msgid "@code{device} (default: @code{#f})" msgstr "@code{device} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17299 +#: guix-git/doc/guix.texi:17661 #, fuzzy #| msgid "The label to show in the menu---e.g., @code{\"GNU\"}." msgid "The device used for this route---e.g., @code{\"eno2\"}." msgstr "L'étiquette à montrer dans le menu — p.@: ex.@: @code{\"GNU\"}." #. type: item -#: guix-git/doc/guix.texi:17300 +#: guix-git/doc/guix.texi:17662 #, fuzzy, no-wrap #| msgid "@code{ipv6?} (default: @code{#t})" msgid "@code{ipv6?} (default: auto)" msgstr "@code{ipv6?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:17303 +#: guix-git/doc/guix.texi:17665 msgid "Whether this is an IPv6 route. By default this is automatically determined based on @code{destination} or @code{gateway}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17304 -#, fuzzy, no-wrap -#| msgid "@code{delay} (default: @code{#f})" +#: guix-git/doc/guix.texi:17666 +#, no-wrap msgid "@code{gateway} (default: @code{#f})" -msgstr "@code{delay} (par défaut : @code{#f})" +msgstr "@code{gateway} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17306 +#: guix-git/doc/guix.texi:17668 msgid "IP address (a string) through which traffic is routed." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17309 +#: guix-git/doc/guix.texi:17671 #, fuzzy, no-wrap #| msgid "{Data Type} origin" msgid "{Data Type} network-link" msgstr "{Type de données} origin" #. type: deftp -#: guix-git/doc/guix.texi:17312 +#: guix-git/doc/guix.texi:17674 msgid "Data type for a network link (@pxref{Link,,, guile-netlink, Guile-Netlink Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17316 +#: guix-git/doc/guix.texi:17678 #, fuzzy #| msgid "The name of the console this Getty runs on---e.g., @code{\"tty1\"}." msgid "The name of the link---e.g., @code{\"v0p0\"}." msgstr "Le nom de la console sur laquelle tourne ce Getty, p.@: ex.@: @code{\"tty1\"}." #. type: table -#: guix-git/doc/guix.texi:17319 +#: guix-git/doc/guix.texi:17681 #, fuzzy #| msgid "This is a string specifying the type of the file system---e.g., @code{\"ext4\"}." msgid "A symbol denoting the type of the link---e.g., @code{'veth}." msgstr "C'est une chaîne de caractères spécifiant le type du système de fichier — p.@: ex.@: @code{\"ext4\"}." #. type: item -#: guix-git/doc/guix.texi:17320 +#: guix-git/doc/guix.texi:17682 #, no-wrap msgid "arguments" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17322 +#: guix-git/doc/guix.texi:17684 #, fuzzy #| msgid "A list of arguments to pass to @command{login}." msgid "List of arguments for this type of link." msgstr "Une liste d'arguments à passer à @command{login}." #. type: cindex -#: guix-git/doc/guix.texi:17325 +#: guix-git/doc/guix.texi:17687 #, fuzzy, no-wrap #| msgid "Docker Service" msgid "loopback device" msgstr "Service Docker" #. type: defvr -#: guix-git/doc/guix.texi:17326 +#: guix-git/doc/guix.texi:17688 #, fuzzy, no-wrap #| msgid "{Scheme Variable} static-networking-service-type" msgid "{Scheme Variable} %loopback-static-networking" msgstr "{Variable Scheme} static-networking-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17330 +#: guix-git/doc/guix.texi:17692 msgid "This is the @code{static-networking} record representing the ``loopback device'', @code{lo}, for IP addresses 127.0.0.1 and ::1, and providing the @code{loopback} Shepherd service." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17332 +#: guix-git/doc/guix.texi:17694 #, no-wrap msgid "networking, with QEMU" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17333 +#: guix-git/doc/guix.texi:17695 #, fuzzy, no-wrap #| msgid "Networking" msgid "QEMU, networking" msgstr "Réseau" #. type: defvr -#: guix-git/doc/guix.texi:17334 +#: guix-git/doc/guix.texi:17696 #, fuzzy, no-wrap #| msgid "{Scheme Variable} static-networking-service-type" msgid "{Scheme Variable} %qemu-static-networking" msgstr "{Variable Scheme} static-networking-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17338 +#: guix-git/doc/guix.texi:17700 msgid "This is the @code{static-networking} record representing network setup when using QEMU's user-mode network stack on @code{eth0} (@pxref{Using the user mode network stack,,, QEMU, QEMU Documentation})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17340 +#: guix-git/doc/guix.texi:17702 #, no-wrap msgid "DHCP, networking service" msgstr "DHCP, service réseau" #. type: defvr -#: guix-git/doc/guix.texi:17341 +#: guix-git/doc/guix.texi:17703 #, no-wrap msgid "{Scheme Variable} dhcp-client-service-type" msgstr "{Variable Scheme} dhcp-client-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17345 +#: guix-git/doc/guix.texi:17707 msgid "This is the type of services that run @var{dhcp}, a Dynamic Host Configuration Protocol (DHCP) client, on all the non-loopback network interfaces. Its value is the DHCP client package to use, @code{isc-dhcp} by default." msgstr "C'est le type de services qui lance @var{dhcp}, un client DHC (protocole de configuration d'hôte dynamique) sur toutes les interfaces réseau non-loopback. Sa valeur est le paquet du client DHCP à utiliser, @code{isc-dhcp} par défaut." #. type: cindex -#: guix-git/doc/guix.texi:17347 +#: guix-git/doc/guix.texi:17709 #, no-wrap msgid "NetworkManager" msgstr "NetworkManager" #. type: defvr -#: guix-git/doc/guix.texi:17349 +#: guix-git/doc/guix.texi:17711 #, no-wrap msgid "{Scheme Variable} network-manager-service-type" msgstr "{Variable Scheme} network-manager-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17354 +#: guix-git/doc/guix.texi:17716 msgid "This is the service type for the @uref{https://wiki.gnome.org/Projects/NetworkManager, NetworkManager} service. The value for this service type is a @code{network-manager-configuration} record." msgstr "C'est le type de service pour le service @uref{https://wiki.gnome.org/Projects/NetworkManager, NetworkManager}. La valeur pour ce type de service est un enregistrement @code{network-manager-configuration}." #. type: defvr -#: guix-git/doc/guix.texi:17357 guix-git/doc/guix.texi:17509 -#: guix-git/doc/guix.texi:17538 +#: guix-git/doc/guix.texi:17719 guix-git/doc/guix.texi:17871 +#: guix-git/doc/guix.texi:17900 msgid "This service is part of @code{%desktop-services} (@pxref{Desktop Services})." msgstr "Ce service fait partie de @code{%desktop-services} (@pxref{Desktop Services})." #. type: deftp -#: guix-git/doc/guix.texi:17359 +#: guix-git/doc/guix.texi:17721 #, no-wrap msgid "{Data Type} network-manager-configuration" msgstr "{Type de données} network-manager-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17361 +#: guix-git/doc/guix.texi:17723 msgid "Data type representing the configuration of NetworkManager." msgstr "Type de données représentant la configuration de NetworkManager." #. type: item -#: guix-git/doc/guix.texi:17363 +#: guix-git/doc/guix.texi:17725 #, no-wrap msgid "@code{network-manager} (default: @code{network-manager})" msgstr "@code{network-manager} (par défaut : @code{network-manager})" #. type: table -#: guix-git/doc/guix.texi:17365 +#: guix-git/doc/guix.texi:17727 msgid "The NetworkManager package to use." msgstr "Le paquet NetworkManager à utiliser." #. type: item -#: guix-git/doc/guix.texi:17366 +#: guix-git/doc/guix.texi:17728 #, no-wrap msgid "@code{dns} (default: @code{\"default\"})" msgstr "@code{dns} (par défaut : @code{\"default\"})" #. type: table -#: guix-git/doc/guix.texi:17369 +#: guix-git/doc/guix.texi:17731 msgid "Processing mode for DNS, which affects how NetworkManager uses the @code{resolv.conf} configuration file." msgstr "Mode de gestion pour le DNS, qui affecte la manière dont NetworkManager utilise le fichier de configuration @code{resolv.conf}." #. type: table -#: guix-git/doc/guix.texi:17374 +#: guix-git/doc/guix.texi:17736 msgid "NetworkManager will update @code{resolv.conf} to reflect the nameservers provided by currently active connections." msgstr "NetworkManager mettra à jour @code{resolv.conf} pour refléter les serveurs de noms fournis par les connexions actives." #. type: item -#: guix-git/doc/guix.texi:17375 +#: guix-git/doc/guix.texi:17737 #, no-wrap msgid "dnsmasq" msgstr "dnsmasq" #. type: table -#: guix-git/doc/guix.texi:17379 +#: guix-git/doc/guix.texi:17741 msgid "NetworkManager will run @code{dnsmasq} as a local caching nameserver, using a @dfn{conditional forwarding} configuration if you are connected to a VPN, and then update @code{resolv.conf} to point to the local nameserver." msgstr "NetworkManager exécutera @code{dnsmasq} comme un serveur de noms local en cache, en utilisant une configuration @dfn{transfert conditionnel} si vous êtes connecté à un VPN, puis mettra à jour @code{resolv.conf} pour pointer vers le serveur de noms local." #. type: table -#: guix-git/doc/guix.texi:17385 +#: guix-git/doc/guix.texi:17747 msgid "With this setting, you can share your network connection. For example when you want to share your network connection to another laptop @i{via} an Ethernet cable, you can open @command{nm-connection-editor} and configure the Wired connection's method for IPv4 and IPv6 to be ``Shared to other computers'' and reestablish the connection (or reboot)." msgstr "Avec ce paramètre, vous pouvez partager votre connexion réseau. Par exemple, lorsque vous souhaitez partager votre connexion réseau avec un autre ordinateur portable @i{via} un câble Ethernet, vous pouvez ouvrir @command{nm-connection-editor} et configurer la méthode de connexion câblée pour IPv4 et IPv6 de manière à ce qu'elle soit \"partagée avec d'autres ordinateurs\" et à ce que la connexion soit rétablie (ou redémarrée)." #. type: table -#: guix-git/doc/guix.texi:17392 +#: guix-git/doc/guix.texi:17754 msgid "You can also set up a @dfn{host-to-guest connection} to QEMU VMs (@pxref{Installing Guix in a VM}). With a host-to-guest connection, you can e.g.@: access a Web server running on the VM (@pxref{Web Services}) from a Web browser on your host system, or connect to the VM @i{via} SSH (@pxref{Networking Services, @code{openssh-service-type}}). To set up a host-to-guest connection, run this command once:" msgstr "Vous pouvez également établir une @dfn{connexion hôte-invité} aux VM QEMU (@pxref{Installing Guix in a VM}). Avec une connexion d'hôte à invité, vous pouvez par exemple @ : accéder à un serveur Web fonctionnant sur la VM (@pxref{Web Services}) à partir d'un navigateur Web sur votre système hôte, ou vous connecter à la VM @i{via} SSH (@pxref{Networking Services, @code{openssh-service-type}}). Pour établir une connexion entre hôtes, exécutez cette commande une fois :" #. type: example -#: guix-git/doc/guix.texi:17399 +#: guix-git/doc/guix.texi:17761 #, no-wrap msgid "" "nmcli connection add type tun \\\n" @@ -32164,50 +32835,50 @@ msgstr "" " ipv4.addresses 172.28.112.1/24\n" #. type: table -#: guix-git/doc/guix.texi:17404 +#: guix-git/doc/guix.texi:17766 msgid "Then each time you launch your QEMU VM (@pxref{Running Guix in a VM}), pass @option{-nic tap,ifname=tap0,script=no,downscript=no} to @command{qemu-system-...}." msgstr "Ensuite, chaque fois que vous lancez votre VM QEMU (@pxref{Running Guix in a VM}), passez @option{-nic tap,ifname=tap0,script=no,downscript=no} à @command{qemu-system-...}." #. type: table -#: guix-git/doc/guix.texi:17407 +#: guix-git/doc/guix.texi:17769 msgid "NetworkManager will not modify @code{resolv.conf}." msgstr "NetworkManager ne modifiera pas @code{resolv.conf}." #. type: item -#: guix-git/doc/guix.texi:17409 +#: guix-git/doc/guix.texi:17771 #, no-wrap msgid "@code{vpn-plugins} (default: @code{'()})" msgstr "@code{vpn-plugins} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17413 +#: guix-git/doc/guix.texi:17775 msgid "This is the list of available plugins for virtual private networks (VPNs). An example of this is the @code{network-manager-openvpn} package, which allows NetworkManager to manage VPNs @i{via} OpenVPN." msgstr "C'est la liste des greffons disponibles pour les VPN (réseaux privés virtuels). Un exemple est le paquet @code{network-manager-openvpn}, qui permet à NetworkManager de gérer des VPN via OpenVPN." #. type: cindex -#: guix-git/doc/guix.texi:17417 +#: guix-git/doc/guix.texi:17779 #, no-wrap msgid "Connman" msgstr "Connman" #. type: deffn -#: guix-git/doc/guix.texi:17418 +#: guix-git/doc/guix.texi:17780 #, no-wrap msgid "{Scheme Variable} connman-service-type" msgstr "{Variable Scheme} connman-service-type" #. type: deffn -#: guix-git/doc/guix.texi:17421 +#: guix-git/doc/guix.texi:17783 msgid "This is the service type to run @url{https://01.org/connman,Connman}, a network connection manager." msgstr "C'est le type de service pour lancer @url{https://01.org/connman,Connman}, un gestionnaire de connexions réseaux." #. type: deffn -#: guix-git/doc/guix.texi:17424 +#: guix-git/doc/guix.texi:17786 msgid "Its value must be an @code{connman-configuration} record as in this example:" msgstr "Sa valeur doit être un enregistrement @code{connman-configuration} comme dans cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:17429 +#: guix-git/doc/guix.texi:17791 #, no-wrap msgid "" "(service connman-service-type\n" @@ -32219,311 +32890,311 @@ msgstr "" " (disable-vpn? #t)))\n" #. type: deffn -#: guix-git/doc/guix.texi:17432 +#: guix-git/doc/guix.texi:17794 msgid "See below for details about @code{connman-configuration}." msgstr "Voir plus bas pour des détails sur @code{connman-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:17434 +#: guix-git/doc/guix.texi:17796 #, no-wrap msgid "{Data Type} connman-configuration" msgstr "{Type de données} connman-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17436 +#: guix-git/doc/guix.texi:17798 msgid "Data Type representing the configuration of connman." msgstr "Type de données représentant la configuration de connman." #. type: item -#: guix-git/doc/guix.texi:17438 +#: guix-git/doc/guix.texi:17800 #, no-wrap msgid "@code{connman} (default: @var{connman})" msgstr "@code{connman} (par défaut : @var{connman})" #. type: table -#: guix-git/doc/guix.texi:17440 +#: guix-git/doc/guix.texi:17802 msgid "The connman package to use." msgstr "Le paquet connman à utiliser." #. type: item -#: guix-git/doc/guix.texi:17441 +#: guix-git/doc/guix.texi:17803 #, no-wrap msgid "@code{disable-vpn?} (default: @code{#f})" msgstr "@code{disable-vpn?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17443 +#: guix-git/doc/guix.texi:17805 msgid "When true, disable connman's vpn plugin." msgstr "Lorsque la valeur est vraie, désactive le greffon vpn de connman." #. type: cindex -#: guix-git/doc/guix.texi:17446 +#: guix-git/doc/guix.texi:17808 #, no-wrap msgid "WPA Supplicant" msgstr "WPA Supplicant" #. type: defvr -#: guix-git/doc/guix.texi:17447 +#: guix-git/doc/guix.texi:17809 #, no-wrap msgid "{Scheme Variable} wpa-supplicant-service-type" msgstr "{Variable Scheme} wpa-supplicant-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17451 +#: guix-git/doc/guix.texi:17813 msgid "This is the service type to run @url{https://w1.fi/wpa_supplicant/,WPA supplicant}, an authentication daemon required to authenticate against encrypted WiFi or ethernet networks." msgstr "C'est le type du service qui lance@url{https://w1.fi/wpa_supplicant/,WPA supplicant}, un démon d'authentification requis pour s'authentifier sur des WiFi chiffrés ou des réseaux ethernet." #. type: deftp -#: guix-git/doc/guix.texi:17453 +#: guix-git/doc/guix.texi:17815 #, no-wrap msgid "{Data Type} wpa-supplicant-configuration" msgstr "{Type de données} wpa-supplicant-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17455 +#: guix-git/doc/guix.texi:17817 msgid "Data type representing the configuration of WPA Supplicant." msgstr "Type données qui représente la configuration de WPA Supplicant." #. type: deftp -#: guix-git/doc/guix.texi:17457 guix-git/doc/guix.texi:32945 +#: guix-git/doc/guix.texi:17819 guix-git/doc/guix.texi:33310 msgid "It takes the following parameters:" msgstr "Il prend les paramètres suivants :" #. type: item -#: guix-git/doc/guix.texi:17459 +#: guix-git/doc/guix.texi:17821 #, no-wrap msgid "@code{wpa-supplicant} (default: @code{wpa-supplicant})" msgstr "@code{wpa-supplicant} (par défaut : @code{wpa-supplicant})" #. type: table -#: guix-git/doc/guix.texi:17461 +#: guix-git/doc/guix.texi:17823 msgid "The WPA Supplicant package to use." msgstr "Le paquet WPA Supplicant à utiliser." #. type: item -#: guix-git/doc/guix.texi:17462 +#: guix-git/doc/guix.texi:17824 #, no-wrap msgid "@code{requirement} (default: @code{'(user-processes loopback syslogd)}" msgstr "@code{requirement} (par défaut : @code{'(user-processes loopback syslogd)}" #. type: table -#: guix-git/doc/guix.texi:17464 +#: guix-git/doc/guix.texi:17826 msgid "List of services that should be started before WPA Supplicant starts." msgstr "Liste des services qui doivent être démarrés avant le début de WPA Supplicant." #. type: item -#: guix-git/doc/guix.texi:17465 +#: guix-git/doc/guix.texi:17827 #, no-wrap msgid "@code{dbus?} (default: @code{#t})" msgstr "@code{dbus?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:17467 +#: guix-git/doc/guix.texi:17829 msgid "Whether to listen for requests on D-Bus." msgstr "Indique s'il faut écouter les requêtes sur D-Bus." #. type: item -#: guix-git/doc/guix.texi:17468 +#: guix-git/doc/guix.texi:17830 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/wpa_supplicant.pid\"})" msgstr "@code{pid-file} (par défaut : @code{\"/var/run/wpa_supplicant.pid\"})" #. type: table -#: guix-git/doc/guix.texi:17470 +#: guix-git/doc/guix.texi:17832 msgid "Where to store the PID file." msgstr "Où stocker votre fichier de PID." #. type: item -#: guix-git/doc/guix.texi:17471 guix-git/doc/guix.texi:31246 -#: guix-git/doc/guix.texi:31388 +#: guix-git/doc/guix.texi:17833 guix-git/doc/guix.texi:31611 +#: guix-git/doc/guix.texi:31753 #, no-wrap msgid "@code{interface} (default: @code{#f})" msgstr "@code{interface} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17474 +#: guix-git/doc/guix.texi:17836 msgid "If this is set, it must specify the name of a network interface that WPA supplicant will control." msgstr "Si une valeur est indiquée, elle doit spécifier le nom d'une interface réseau que WPA supplicant contrôlera." #. type: item -#: guix-git/doc/guix.texi:17475 guix-git/doc/guix.texi:17591 -#: guix-git/doc/guix.texi:22879 +#: guix-git/doc/guix.texi:17837 guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:23241 #, no-wrap msgid "@code{config-file} (default: @code{#f})" msgstr "@code{config-file} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17477 +#: guix-git/doc/guix.texi:17839 msgid "Optional configuration file to use." msgstr "Fichier de configuration facultatif à utiliser." #. type: table -#: guix-git/doc/guix.texi:17480 +#: guix-git/doc/guix.texi:17842 msgid "List of additional command-line arguments to pass to the daemon." msgstr "Liste d'arguments de la ligne de commande supplémentaires à passer au démon." #. type: cindex -#: guix-git/doc/guix.texi:17483 +#: guix-git/doc/guix.texi:17845 #, no-wrap msgid "wicd" msgstr "wicd" #. type: cindex -#: guix-git/doc/guix.texi:17486 +#: guix-git/doc/guix.texi:17848 #, no-wrap msgid "network management" msgstr "gestion du réseau" #. type: deffn -#: guix-git/doc/guix.texi:17487 +#: guix-git/doc/guix.texi:17849 #, no-wrap msgid "{Scheme Procedure} wicd-service [#:wicd @var{wicd}]" msgstr "{Procédure Scheme} wicd-service [#:wicd @var{wicd}]" #. type: deffn -#: guix-git/doc/guix.texi:17490 +#: guix-git/doc/guix.texi:17852 msgid "Return a service that runs @url{https://launchpad.net/wicd,Wicd}, a network management daemon that aims to simplify wired and wireless networking." msgstr "Renvoie un service qui lance @url{https://launchpad.net/wicd,Wicd}, un démon de gestion réseau qui cherche à simplifier la configuration des réseaux filaires et sans fil." #. type: deffn -#: guix-git/doc/guix.texi:17495 +#: guix-git/doc/guix.texi:17857 msgid "This service adds the @var{wicd} package to the global profile, providing several commands to interact with the daemon and configure networking: @command{wicd-client}, a graphical user interface, and the @command{wicd-cli} and @command{wicd-curses} user interfaces." msgstr "Ce service ajoute le paquet @var{wicd} au profil global, pour fournir des commandes pour interagir avec le démon et configurer le réseau : @command{wicd-client}, une interface graphique et les interfaces utilisateurs @command{wicd-cli} et @command{wicd-curses}." #. type: cindex -#: guix-git/doc/guix.texi:17497 +#: guix-git/doc/guix.texi:17859 #, no-wrap msgid "ModemManager" msgstr "ModemManager" #. type: Plain text -#: guix-git/doc/guix.texi:17500 +#: guix-git/doc/guix.texi:17862 msgid "Some networking devices such as modems require special care, and this is what the services below focus on." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17501 +#: guix-git/doc/guix.texi:17863 #, no-wrap msgid "{Scheme Variable} modem-manager-service-type" msgstr "{Variable Scheme} modem-manager-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17506 +#: guix-git/doc/guix.texi:17868 msgid "This is the service type for the @uref{https://wiki.gnome.org/Projects/ModemManager, ModemManager} service. The value for this service type is a @code{modem-manager-configuration} record." msgstr "C'est le type de service pour le service @uref{https://wiki.gnome.org/Projects/ModemManager, ModemManager}. La valeur de ce type de service est un enregistrement @code{modem-manager-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:17511 +#: guix-git/doc/guix.texi:17873 #, no-wrap msgid "{Data Type} modem-manager-configuration" msgstr "{Type de données} modem-manager-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17513 +#: guix-git/doc/guix.texi:17875 msgid "Data type representing the configuration of ModemManager." msgstr "Type de donnée représentant la configuration de ModemManager." #. type: item -#: guix-git/doc/guix.texi:17515 +#: guix-git/doc/guix.texi:17877 #, no-wrap msgid "@code{modem-manager} (default: @code{modem-manager})" msgstr "@code{modem-manager} (par défaut : @code{modem-manager})" #. type: table -#: guix-git/doc/guix.texi:17517 +#: guix-git/doc/guix.texi:17879 msgid "The ModemManager package to use." msgstr "Le paquet ModemManager à utiliser." #. type: cindex -#: guix-git/doc/guix.texi:17521 +#: guix-git/doc/guix.texi:17883 #, no-wrap msgid "USB_ModeSwitch" msgstr "USB_ModeSwitch" #. type: cindex -#: guix-git/doc/guix.texi:17522 +#: guix-git/doc/guix.texi:17884 #, no-wrap msgid "Modeswitching" msgstr "Modeswitching" #. type: defvr -#: guix-git/doc/guix.texi:17524 +#: guix-git/doc/guix.texi:17886 #, no-wrap msgid "{Scheme Variable} usb-modeswitch-service-type" msgstr "{Variable Scheme} usb-modeswitch-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17529 +#: guix-git/doc/guix.texi:17891 msgid "This is the service type for the @uref{https://www.draisberghof.de/usb_modeswitch/, USB_ModeSwitch} service. The value for this service type is a @code{usb-modeswitch-configuration} record." msgstr "C'est le type de service pour le service @uref{https://www.draisberghof.de/usb_modeswitch/, USB_ModeSwitch}. La valeur pour ce type de service est un enregistrement @code{usb-modeswitch-configuration}." #. type: defvr -#: guix-git/doc/guix.texi:17535 +#: guix-git/doc/guix.texi:17897 msgid "When plugged in, some USB modems (and other USB devices) initially present themselves as a read-only storage medium and not as a modem. They need to be @dfn{modeswitched} before they are usable. The USB_ModeSwitch service type installs udev rules to automatically modeswitch these devices when they are plugged in." msgstr "Lorsqu'ils sont branchés, certains modems USB (et autres dispositifs USB) se présentent initialement comme un support de stockage en lecture seule et non comme un modem. Ils doivent être @dfn{modeswitched} avant d'être utilisables. Le service de type USB_ModeSwitch installe des règles udev pour commuter automatiquement les modes de ces dispositifs lorsqu'ils sont branchés." #. type: deftp -#: guix-git/doc/guix.texi:17540 +#: guix-git/doc/guix.texi:17902 #, no-wrap msgid "{Data Type} usb-modeswitch-configuration" msgstr "{Type de donnée} openvswitch-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17542 +#: guix-git/doc/guix.texi:17904 msgid "Data type representing the configuration of USB_ModeSwitch." msgstr "Type de données représentant la configuration du USB_ModeSwitch." #. type: item -#: guix-git/doc/guix.texi:17544 +#: guix-git/doc/guix.texi:17906 #, no-wrap msgid "@code{usb-modeswitch} (default: @code{usb-modeswitch})" msgstr "@code{usb-modeswitch} (par défaut : @code{usb-modeswitch})" #. type: table -#: guix-git/doc/guix.texi:17546 +#: guix-git/doc/guix.texi:17908 msgid "The USB_ModeSwitch package providing the binaries for modeswitching." msgstr "Le paquet USB_ModeSwitch fournit les binaires pour la commutation de modes." #. type: item -#: guix-git/doc/guix.texi:17547 +#: guix-git/doc/guix.texi:17909 #, no-wrap msgid "@code{usb-modeswitch-data} (default: @code{usb-modeswitch-data})" msgstr "@code{usb-modeswitch-data} (par défaut : @code{usb-modeswitch-data})" #. type: table -#: guix-git/doc/guix.texi:17550 +#: guix-git/doc/guix.texi:17912 msgid "The package providing the device data and udev rules file used by USB_ModeSwitch." msgstr "Le paquet fournissant les données du dispositif et le fichier de règles udev utilisé par USB_ModeSwitch." #. type: item -#: guix-git/doc/guix.texi:17551 +#: guix-git/doc/guix.texi:17913 #, no-wrap msgid "@code{config-file} (default: @code{#~(string-append #$usb-modeswitch:dispatcher \"/etc/usb_modeswitch.conf\")})" msgstr "@code{config-file} (par défaut : @code{#~(string-append #$usb-modeswitch:dispatcher \"/etc/usb_modeswitch.conf\")})" #. type: table -#: guix-git/doc/guix.texi:17556 +#: guix-git/doc/guix.texi:17918 msgid "Which config file to use for the USB_ModeSwitch dispatcher. By default the config file shipped with USB_ModeSwitch is used which disables logging to @file{/var/log} among other default settings. If set to @code{#f}, no config file is used." msgstr "Le fichier de configuration à utiliser pour le répartiteur USB_ModeSwitch. Par défaut, le fichier de configuration livré avec USB_ModeSwitch est utilisé, ce qui désactive la connexion au @file{/var/log} parmi d'autres paramètres par défaut. S'il est défini sur @code{#f}, aucun fichier de configuration n'est utilisé." #. type: Plain text -#: guix-git/doc/guix.texi:17570 +#: guix-git/doc/guix.texi:17932 msgid "The @code{(gnu services networking)} module discussed in the previous section provides services for more advanced setups: providing a DHCP service for others to use, filtering packets with iptables or nftables, running a WiFi access point with @command{hostapd}, running the @command{inetd} ``superdaemon'', and more. This section describes those." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17571 +#: guix-git/doc/guix.texi:17933 #, no-wrap msgid "{Scheme Procedure} dhcpd-service-type" msgstr "{Procédure Scheme} dhcpd-service-type" #. type: deffn -#: guix-git/doc/guix.texi:17575 +#: guix-git/doc/guix.texi:17937 msgid "This type defines a service that runs a DHCP daemon. To create a service of this type, you must supply a @code{}. For example:" msgstr "Ce type définie un service qui lance un démon DHCP. Pour créer un service de ce type, vous devez appliquer un objet @code{}. Par exemple :" #. type: lisp -#: guix-git/doc/guix.texi:17581 +#: guix-git/doc/guix.texi:17943 #, no-wrap msgid "" "(service dhcpd-service-type\n" @@ -32537,96 +33208,96 @@ msgstr "" " (interfaces '(\"enp0s25\"))))\n" #. type: deftp -#: guix-git/doc/guix.texi:17584 +#: guix-git/doc/guix.texi:17946 #, no-wrap msgid "{Data Type} dhcpd-configuration" msgstr "{Type de données} dhcpd-configuration" #. type: item -#: guix-git/doc/guix.texi:17586 +#: guix-git/doc/guix.texi:17948 #, no-wrap msgid "@code{package} (default: @code{isc-dhcp})" msgstr "@code{package} (par défaut : @code{isc-dhcp})" #. type: table -#: guix-git/doc/guix.texi:17591 +#: guix-git/doc/guix.texi:17953 msgid "The package that provides the DHCP daemon. This package is expected to provide the daemon at @file{sbin/dhcpd} relative to its output directory. The default package is the @uref{https://www.isc.org/products/DHCP, ISC's DHCP server}." msgstr "Le paquet qui fournit le démon DHCP. ce paquet doit fournir le démon @file{sbin/dhcpd} relativement à son répertoire de sortie. Le paquet par défaut est le @uref{https://www.isc.org/products/DHCP, serveur DHCP d'ISC}." #. type: table -#: guix-git/doc/guix.texi:17596 +#: guix-git/doc/guix.texi:17958 msgid "The configuration file to use. This is required. It will be passed to @code{dhcpd} via its @code{-cf} option. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). See @code{man dhcpd.conf} for details on the configuration file syntax." msgstr "Le fichier de configuration à utiliser. Il est requis. Il sera passé à @code{dhcpd} via son option @code{-cf}. La valeur peut être n'importe quel objet « simili-fichier » (@pxref{G-Expressions, file-like objects}). Voir @code{man dhcpd.conf} pour des détails sur la syntaxe du fichier de configuration." #. type: item -#: guix-git/doc/guix.texi:17596 +#: guix-git/doc/guix.texi:17958 #, no-wrap msgid "@code{version} (default: @code{\"4\"})" msgstr "@code{version} (par défaut : @code{\"4\"})" #. type: table -#: guix-git/doc/guix.texi:17601 +#: guix-git/doc/guix.texi:17963 msgid "The DHCP version to use. The ISC DHCP server supports the values ``4'', ``6'', and ``4o6''. These correspond to the @code{dhcpd} program options @code{-4}, @code{-6}, and @code{-4o6}. See @code{man dhcpd} for details." msgstr "La version de DHCP à utiliser. Le serveur DHCP d'ISC supporte les valeur « 4 », « 6 » et « 4o6 ». Elles correspondent aux options @code{-4}, @code{-6} et @code{-4o6} du programme @code{dhcpd}. Voir @code{man dhcpd} pour plus de détails." #. type: item -#: guix-git/doc/guix.texi:17601 +#: guix-git/doc/guix.texi:17963 #, no-wrap msgid "@code{run-directory} (default: @code{\"/run/dhcpd\"})" msgstr "@code{run-directory} (par défaut : @code{\"/run/dhcpd\"})" #. type: table -#: guix-git/doc/guix.texi:17604 +#: guix-git/doc/guix.texi:17966 msgid "The run directory to use. At service activation time, this directory will be created if it does not exist." msgstr "Le répertoire d'exécution à utiliser. Au moment de l'activation du service, ce répertoire sera créé s'il n'existe pas." #. type: item -#: guix-git/doc/guix.texi:17604 +#: guix-git/doc/guix.texi:17966 #, no-wrap msgid "@code{pid-file} (default: @code{\"/run/dhcpd/dhcpd.pid\"})" msgstr "@code{pid-file} (par défaut : @code{\"/run/dhcpd/dhcpd.pid\"})" #. type: table -#: guix-git/doc/guix.texi:17607 +#: guix-git/doc/guix.texi:17969 msgid "The PID file to use. This corresponds to the @code{-pf} option of @code{dhcpd}. See @code{man dhcpd} for details." msgstr "Le fichier de PID à utiliser. Cela correspond à l'option @code{-pf} de @code{dhcpd}. Voir @code{man dhcpd} pour plus de détails." #. type: item -#: guix-git/doc/guix.texi:17607 +#: guix-git/doc/guix.texi:17969 #, no-wrap msgid "@code{interfaces} (default: @code{'()})" msgstr "@code{interfaces} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17613 +#: guix-git/doc/guix.texi:17975 msgid "The names of the network interfaces on which dhcpd should listen for broadcasts. If this list is not empty, then its elements (which must be strings) will be appended to the @code{dhcpd} invocation when starting the daemon. It may not be necessary to explicitly specify any interfaces here; see @code{man dhcpd} for details." msgstr "Les noms des interfaces réseaux sur lesquelles dhcpd écoute. Si cette liste n'est pas vide, alors ses éléments (qui doivent être des chaînes de caractères) seront ajoutés à l'invocation de @code{dhcpd} lors du démarrage du démon. Il n'est pas forcément nécessaire de spécifier des interfaces ici ; voir @code{man dhcpd} pour plus de détails." #. type: cindex -#: guix-git/doc/guix.texi:17616 +#: guix-git/doc/guix.texi:17978 #, no-wrap msgid "hostapd service, for Wi-Fi access points" msgstr "service hostapd, pour les points d'accès Wi-Fi" #. type: cindex -#: guix-git/doc/guix.texi:17617 +#: guix-git/doc/guix.texi:17979 #, no-wrap msgid "Wi-Fi access points, hostapd service" msgstr "Points d'accès Wi-Fi, service hostapd" #. type: defvr -#: guix-git/doc/guix.texi:17618 +#: guix-git/doc/guix.texi:17980 #, no-wrap msgid "{Scheme Variable} hostapd-service-type" msgstr "{Variable Scheme} hostapd-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17623 +#: guix-git/doc/guix.texi:17985 msgid "This is the service type to run the @uref{https://w1.fi/hostapd/, hostapd} daemon to set up WiFi (IEEE 802.11) access points and authentication servers. Its associated value must be a @code{hostapd-configuration} as shown below:" msgstr "Il s'agit du type de service permettant d'exécuter le démon @uref{https://w1.fi/hostapd/, hostapd} pour mettre en place des points d'accès et des serveurs d'authentification WiFi (IEEE 802.11). Sa valeur associée doit être un @code{hostapd-configuration} comme indiqué ci-dessous :" #. type: lisp -#: guix-git/doc/guix.texi:17631 +#: guix-git/doc/guix.texi:17993 #, no-wrap msgid "" ";; Use wlan1 to run the access point for \"My Network\".\n" @@ -32644,129 +33315,129 @@ msgstr "" " (channel 12)))\n" #. type: deftp -#: guix-git/doc/guix.texi:17634 +#: guix-git/doc/guix.texi:17996 #, no-wrap msgid "{Data Type} hostapd-configuration" msgstr "{Type de données} hostapd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17637 +#: guix-git/doc/guix.texi:17999 msgid "This data type represents the configuration of the hostapd service, with the following fields:" msgstr "Ce type de données représente la configuration du service hostapd, avec les champs suivants :" #. type: item -#: guix-git/doc/guix.texi:17639 +#: guix-git/doc/guix.texi:18001 #, no-wrap msgid "@code{package} (default: @code{hostapd})" msgstr "@code{package} (par défaut : @code{hostapd})" #. type: table -#: guix-git/doc/guix.texi:17641 +#: guix-git/doc/guix.texi:18003 msgid "The hostapd package to use." msgstr "Le paquet hostapd à utiliser." #. type: item -#: guix-git/doc/guix.texi:17642 +#: guix-git/doc/guix.texi:18004 #, no-wrap msgid "@code{interface} (default: @code{\"wlan0\"})" msgstr "@code{interface} (par défaut : @code{\"wlan0\"})" #. type: table -#: guix-git/doc/guix.texi:17644 +#: guix-git/doc/guix.texi:18006 msgid "The network interface to run the WiFi access point." msgstr "L'interface réseau pour faire fonctionner le point d'accès WiFi." #. type: code{#1} -#: guix-git/doc/guix.texi:17645 +#: guix-git/doc/guix.texi:18007 #, no-wrap msgid "ssid" msgstr "ssid" #. type: table -#: guix-git/doc/guix.texi:17648 +#: guix-git/doc/guix.texi:18010 msgid "The SSID (@dfn{service set identifier}), a string that identifies this network." msgstr "Le SSID (@dfn{identifiant de l'ensemble de services}), une chaîne de caractères qui identifie ce réseau." #. type: item -#: guix-git/doc/guix.texi:17649 +#: guix-git/doc/guix.texi:18011 #, no-wrap msgid "@code{broadcast-ssid?} (default: @code{#t})" msgstr "@code{broadcast-ssid?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:17651 +#: guix-git/doc/guix.texi:18013 msgid "Whether to broadcast this SSID." msgstr "La diffusion de ce SSID." #. type: item -#: guix-git/doc/guix.texi:17652 +#: guix-git/doc/guix.texi:18014 #, no-wrap msgid "@code{channel} (default: @code{1})" msgstr "@code{channel} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17654 +#: guix-git/doc/guix.texi:18016 msgid "The WiFi channel to use." msgstr "Le canal WiFi à utiliser." #. type: item -#: guix-git/doc/guix.texi:17655 +#: guix-git/doc/guix.texi:18017 #, no-wrap msgid "@code{driver} (default: @code{\"nl80211\"})" msgstr "@code{drivers} (par défaut : @code{\"nl80211\"})" #. type: table -#: guix-git/doc/guix.texi:17659 +#: guix-git/doc/guix.texi:18021 msgid "The driver interface type. @code{\"nl80211\"} is used with all Linux mac80211 drivers. Use @code{\"none\"} if building hostapd as a standalone RADIUS server that does # not control any wireless/wired driver." msgstr "Le type d'interface du conducteur. @code{\"nl80211\"} est utilisé avec tous les pilotes mac80211 de Linux. Utilisez @code{\"none\"} si vous construisez hostapd comme un serveur RADIUS autonome qui ne # contrôle aucun pilote sans-fil/filaire." #. type: item -#: guix-git/doc/guix.texi:17660 guix-git/doc/guix.texi:23728 -#: guix-git/doc/guix.texi:26807 +#: guix-git/doc/guix.texi:18022 guix-git/doc/guix.texi:24090 +#: guix-git/doc/guix.texi:27144 #, no-wrap msgid "@code{extra-settings} (default: @code{\"\"})" msgstr "@code{extra-settings} (par défaut : @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:17664 +#: guix-git/doc/guix.texi:18026 msgid "Extra settings to append as-is to the hostapd configuration file. See @uref{https://w1.fi/cgit/hostap/plain/hostapd/hostapd.conf} for the configuration file reference." msgstr "Paramètres supplémentaires à ajouter tels quels au fichier de configuration de hostapd. Voir @uref{https://w1.fi/cgit/hostap/plain/hostapd/hostapd.conf} pour la référence du fichier de configuration." #. type: defvr -#: guix-git/doc/guix.texi:17667 +#: guix-git/doc/guix.texi:18029 #, no-wrap msgid "{Scheme Variable} simulated-wifi-service-type" msgstr "{Variable Scheme} simulated-wifi-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17674 +#: guix-git/doc/guix.texi:18036 msgid "This is the type of a service to simulate WiFi networking, which can be useful in virtual machines for testing purposes. The service loads the Linux kernel @uref{https://www.kernel.org/doc/html/latest/networking/mac80211_hwsim/mac80211_hwsim.html, @code{mac80211_hwsim} module} and starts hostapd to create a pseudo WiFi network that can be seen on @code{wlan0}, by default." msgstr "C'est le type de service permettant de simuler la mise en réseau WiFi, qui peut être utile dans les machines virtuelles à des fins de test. Le service charge le noyau Linux @uref{https://www.kernel.org/doc/html/latest/networking/mac80211_hwsim/mac80211_hwsim.html, module @code{mac80211_hwsim}} et lance hostapd pour créer un pseudo réseau WiFi qui peut être vu sur @code{wlan0}, par défaut." #. type: defvr -#: guix-git/doc/guix.texi:17676 +#: guix-git/doc/guix.texi:18038 msgid "The service's value is a @code{hostapd-configuration} record." msgstr "La valeur du service est un enregistrement @code{hostapd-configuration}." #. type: cindex -#: guix-git/doc/guix.texi:17679 +#: guix-git/doc/guix.texi:18041 #, no-wrap msgid "iptables" msgstr "iptables" #. type: defvr -#: guix-git/doc/guix.texi:17680 +#: guix-git/doc/guix.texi:18042 #, no-wrap msgid "{Scheme Variable} iptables-service-type" msgstr "{Variable Scheme} iptables-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17686 +#: guix-git/doc/guix.texi:18048 msgid "This is the service type to set up an iptables configuration. iptables is a packet filtering framework supported by the Linux kernel. This service supports configuring iptables for both IPv4 and IPv6. A simple example configuration rejecting all incoming connections except those to the ssh port 22 is shown below." msgstr "C'est le type de service pour mettre en place une configuration iptables. iptables est un outil de filtrage de paquets pris en charge par le noyau Linux. Ce service prend en charge la configuration d'iptable pour IPv4 et IPv6. Un exemple de configuration simple, qui rejette les connexions entrantes sauf celles sur le port 22 est présenté ci-dessous." #. type: lisp -#: guix-git/doc/guix.texi:17708 +#: guix-git/doc/guix.texi:18070 #, no-wrap msgid "" "(service iptables-service-type\n" @@ -32812,241 +33483,241 @@ msgstr "" "\"))))\n" #. type: deftp -#: guix-git/doc/guix.texi:17711 +#: guix-git/doc/guix.texi:18073 #, no-wrap msgid "{Data Type} iptables-configuration" msgstr "{Type de données} iptables-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17713 +#: guix-git/doc/guix.texi:18075 msgid "The data type representing the configuration of iptables." msgstr "Type de données représentant la configuration d'iptables." #. type: item -#: guix-git/doc/guix.texi:17715 +#: guix-git/doc/guix.texi:18077 #, no-wrap msgid "@code{iptables} (default: @code{iptables})" msgstr "@code{iptables} (par défaut : @code{iptables})" #. type: table -#: guix-git/doc/guix.texi:17718 +#: guix-git/doc/guix.texi:18080 msgid "The iptables package that provides @code{iptables-restore} and @code{ip6tables-restore}." msgstr "Le paquet iptables qui fournit @code{iptables-restore} et @code{ip6tables-restore}." #. type: item -#: guix-git/doc/guix.texi:17718 +#: guix-git/doc/guix.texi:18080 #, no-wrap msgid "@code{ipv4-rules} (default: @code{%iptables-accept-all-rules})" msgstr "@code{ipv4-rules} (par défaut : @code{%iptables-accept-all-rules})" #. type: table -#: guix-git/doc/guix.texi:17722 +#: guix-git/doc/guix.texi:18084 msgid "The iptables rules to use. It will be passed to @code{iptables-restore}. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "Les règles iptables à utiliser. Elles seront passées à @code{iptables-restore}. Cela peut être un objet « simili-fichier » (@pxref{G-Expressions, file-like objects})." #. type: item -#: guix-git/doc/guix.texi:17722 +#: guix-git/doc/guix.texi:18084 #, no-wrap msgid "@code{ipv6-rules} (default: @code{%iptables-accept-all-rules})" msgstr "@code{ipv6-rules} (par défaut : @code{%iptables-accept-all-rules})" #. type: table -#: guix-git/doc/guix.texi:17726 +#: guix-git/doc/guix.texi:18088 msgid "The ip6tables rules to use. It will be passed to @code{ip6tables-restore}. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "Les règles iptables à utiliser. Elles seront passées à @code{ip6tables-restore}. Cela peut être un objet « simili-fichier » (@pxref{G-Expressions, file-like objects})." #. type: cindex -#: guix-git/doc/guix.texi:17729 +#: guix-git/doc/guix.texi:18091 #, no-wrap msgid "nftables" msgstr "nftables" #. type: defvr -#: guix-git/doc/guix.texi:17730 +#: guix-git/doc/guix.texi:18092 #, no-wrap msgid "{Scheme Variable} nftables-service-type" msgstr "{Variable Scheme} nftables-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17738 +#: guix-git/doc/guix.texi:18100 msgid "This is the service type to set up a nftables configuration. nftables is a netfilter project that aims to replace the existing iptables, ip6tables, arptables and ebtables framework. It provides a new packet filtering framework, a new user-space utility @command{nft}, and a compatibility layer for iptables. This service comes with a default ruleset @code{%default-nftables-ruleset} that rejecting all incoming connections except those to the ssh port 22. To use it, simply write:" msgstr "C'est le type de service permettant de mettre en place une configuration nftables. nftables est un projet de netfilter qui vise à remplacer le cadre existant iptables, ip6tables, arptables et ebtables. Il fournit un nouveau cadre de filtrage de paquets, un nouvel utilitaire d'espace utilisateur·rice @command{nft}, et une couche de compatibilité pour iptables. Ce service est fourni avec un jeu de règles par défaut @code{%default-nftables-ruleset} qui rejette toutes les connexions entrantes sauf celles vers le port ssh 22. Pour l'utiliser, il suffit d'écrire :" #. type: lisp -#: guix-git/doc/guix.texi:17741 +#: guix-git/doc/guix.texi:18103 #, no-wrap msgid "(service nftables-service-type)\n" msgstr "(service nftables-service-type)\n" #. type: deftp -#: guix-git/doc/guix.texi:17744 +#: guix-git/doc/guix.texi:18106 #, no-wrap msgid "{Data Type} nftables-configuration" msgstr "{Type de données} nftables-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17746 +#: guix-git/doc/guix.texi:18108 msgid "The data type representing the configuration of nftables." msgstr "Type de données représentant la configuration de nftables." #. type: item -#: guix-git/doc/guix.texi:17748 +#: guix-git/doc/guix.texi:18110 #, no-wrap msgid "@code{package} (default: @code{nftables})" msgstr "@code{package} (par défaut : @code{nftables})" #. type: table -#: guix-git/doc/guix.texi:17750 +#: guix-git/doc/guix.texi:18112 msgid "The nftables package that provides @command{nft}." msgstr "Le paquet nftables qui fournit @command{nft}." #. type: item -#: guix-git/doc/guix.texi:17750 +#: guix-git/doc/guix.texi:18112 #, no-wrap msgid "@code{ruleset} (default: @code{%default-nftables-ruleset})" msgstr "@code{ruleset} (par défaut : @code{%default-nftables-ruleset})" #. type: table -#: guix-git/doc/guix.texi:17753 +#: guix-git/doc/guix.texi:18115 msgid "The nftables ruleset to use. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "Les règles d'utilisation de nftables. Il peut s'agir de n'importe quel objet « de type fichier » (@pxref{G-Expressions, objets de type fichier})." #. type: cindex -#: guix-git/doc/guix.texi:17756 +#: guix-git/doc/guix.texi:18118 #, no-wrap msgid "NTP (Network Time Protocol), service" msgstr "NTP (Network Time Protocol), service" #. type: cindex -#: guix-git/doc/guix.texi:17757 +#: guix-git/doc/guix.texi:18119 #, no-wrap msgid "ntpd, service for the Network Time Protocol daemon" msgstr "ntpd, service pour le démon Network Time Protocol" #. type: cindex -#: guix-git/doc/guix.texi:17758 +#: guix-git/doc/guix.texi:18120 #, no-wrap msgid "real time clock" msgstr "horloge" #. type: defvr -#: guix-git/doc/guix.texi:17759 +#: guix-git/doc/guix.texi:18121 #, no-wrap msgid "{Scheme Variable} ntp-service-type" msgstr "{Variable Scheme} ntp-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17763 +#: guix-git/doc/guix.texi:18125 msgid "This is the type of the service running the @uref{https://www.ntp.org, Network Time Protocol (NTP)} daemon, @command{ntpd}. The daemon will keep the system clock synchronized with that of the specified NTP servers." msgstr "C'est le type de service qui lance le démon @uref{https://www.ntp.org, Network Time Protocol (NTP)}, @command{ntpd}. Le démon gardera l'horloge système synchronisée avec celle des serveurs NTP spécifiés." #. type: defvr -#: guix-git/doc/guix.texi:17766 +#: guix-git/doc/guix.texi:18128 msgid "The value of this service is an @code{ntpd-configuration} object, as described below." msgstr "La valeur de ce service est un objet @code{ntpd-configuration}, décrit ci-dessous." #. type: deftp -#: guix-git/doc/guix.texi:17768 +#: guix-git/doc/guix.texi:18130 #, no-wrap msgid "{Data Type} ntp-configuration" msgstr "{Type de données} ntp-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17770 +#: guix-git/doc/guix.texi:18132 msgid "This is the data type for the NTP service configuration." msgstr "C'est le type de données représentant la configuration du service NTP." #. type: item -#: guix-git/doc/guix.texi:17772 +#: guix-git/doc/guix.texi:18134 #, no-wrap msgid "@code{servers} (default: @code{%ntp-servers})" msgstr "@code{servers} (par défaut : @code{%ntp-servers})" #. type: table -#: guix-git/doc/guix.texi:17776 +#: guix-git/doc/guix.texi:18138 msgid "This is the list of servers (@code{} records) with which @command{ntpd} will be synchronized. See the @code{ntp-server} data type definition below." msgstr "C'est la liste des serveurs (enregistrements @code{}) avec lesquels @command{ntpd} sera synchronisé. Voir la définition du type de données @code{ntp-server} ci-dessous." #. type: item -#: guix-git/doc/guix.texi:17777 +#: guix-git/doc/guix.texi:18139 #, no-wrap msgid "@code{allow-large-adjustment?} (default: @code{#t})" msgstr "@code{allow-large-adjustment?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:17780 +#: guix-git/doc/guix.texi:18142 msgid "This determines whether @command{ntpd} is allowed to make an initial adjustment of more than 1,000 seconds." msgstr "Détermine si @code{ntpd} peut faire un ajustement initial de plus de 1@tie{}000 secondes." #. type: item -#: guix-git/doc/guix.texi:17781 +#: guix-git/doc/guix.texi:18143 #, no-wrap msgid "@code{ntp} (default: @code{ntp})" msgstr "@code{ntp} (par défaut : @code{ntp})" #. type: table -#: guix-git/doc/guix.texi:17783 +#: guix-git/doc/guix.texi:18145 msgid "The NTP package to use." msgstr "Le paquet NTP à utiliser." #. type: defvr -#: guix-git/doc/guix.texi:17786 +#: guix-git/doc/guix.texi:18148 #, no-wrap msgid "{Scheme Variable} %ntp-servers" msgstr "{Variable Scheme} %ntp-servers" #. type: defvr -#: guix-git/doc/guix.texi:17789 +#: guix-git/doc/guix.texi:18151 msgid "List of host names used as the default NTP servers. These are servers of the @uref{https://www.ntppool.org/en/, NTP Pool Project}." msgstr "Liste de noms d'hôtes à utiliser comme serveurs NTP par défaut. Ce sont les serveurs du @uref{https://www.ntppool.org/fr/, projet NTP Pool}." #. type: deftp -#: guix-git/doc/guix.texi:17791 +#: guix-git/doc/guix.texi:18153 #, no-wrap msgid "{Data Type} ntp-server" msgstr "{Type de données} ntp-server" #. type: deftp -#: guix-git/doc/guix.texi:17793 +#: guix-git/doc/guix.texi:18155 msgid "The data type representing the configuration of a NTP server." msgstr "Le type de données représentant la configuration d'un serveur NTP." #. type: item -#: guix-git/doc/guix.texi:17795 +#: guix-git/doc/guix.texi:18157 #, no-wrap msgid "@code{type} (default: @code{'server})" msgstr "@code{type} (par défaut : @code{'server})" #. type: table -#: guix-git/doc/guix.texi:17798 +#: guix-git/doc/guix.texi:18160 msgid "The type of the NTP server, given as a symbol. One of @code{'pool}, @code{'server}, @code{'peer}, @code{'broadcast} or @code{'manycastclient}." msgstr "Le type de serveur NTP, indiqué par un symbole. L'un des types suivants : @code{'pool}, @code{'server}, @code{'peer}, @code{'broadcast} ou @code{'manycastclient}." #. type: code{#1} -#: guix-git/doc/guix.texi:17799 +#: guix-git/doc/guix.texi:18161 #, no-wrap msgid "address" msgstr "adresse" #. type: table -#: guix-git/doc/guix.texi:17801 +#: guix-git/doc/guix.texi:18163 msgid "The address of the server, as a string." msgstr "L'adresse du serveur, comme une chaîne de caractères." #. type: code{#1} -#: guix-git/doc/guix.texi:17802 guix-git/doc/guix.texi:33774 -#: guix-git/doc/guix.texi:33794 +#: guix-git/doc/guix.texi:18164 guix-git/doc/guix.texi:34211 +#: guix-git/doc/guix.texi:34231 #, no-wrap msgid "options" msgstr "options" #. type: table -#: guix-git/doc/guix.texi:17807 +#: guix-git/doc/guix.texi:18169 msgid "NTPD options to use with that specific server, given as a list of option names and/or of option names and values tuples. The following example define a server to use with the options @option{iburst} and @option{prefer}, as well as @option{version} 3 and a @option{maxpoll} time of 16 seconds." msgstr "Les options NTPD à utiliser avec ce serveur spécifique, données sous la forme d'une liste de noms d'options et/ou de tuples de noms et de valeurs d'options. L'exemple suivant définit un serveur à utiliser avec les options @option{iburst} et @option{prefer}, ainsi que @option{version} 3 et un temps @option{maxpoll} de 16 secondes." #. type: example -#: guix-git/doc/guix.texi:17813 +#: guix-git/doc/guix.texi:18175 #, no-wrap msgid "" "(ntp-server\n" @@ -33060,24 +33731,24 @@ msgstr "" " (options `(iburst (version 3) (maxpoll 16) prefer))))\n" #. type: cindex -#: guix-git/doc/guix.texi:17817 +#: guix-git/doc/guix.texi:18179 #, no-wrap msgid "OpenNTPD" msgstr "OpenNTPD" #. type: deffn -#: guix-git/doc/guix.texi:17818 +#: guix-git/doc/guix.texi:18180 #, no-wrap msgid "{Scheme Procedure} openntpd-service-type" msgstr "{Procédure Scheme} openntpd-service-type" #. type: deffn -#: guix-git/doc/guix.texi:17822 +#: guix-git/doc/guix.texi:18184 msgid "Run the @command{ntpd}, the Network Time Protocol (NTP) daemon, as implemented by @uref{http://www.openntpd.org, OpenNTPD}. The daemon will keep the system clock synchronized with that of the given servers." msgstr "Lance le démon NTP @command{ntpd}, implémenté par @uref{http://www.openntpd.org, OpenNTPD}. Le démon gardera l'horloge système synchronisée avec celle des serveurs donnés." #. type: lisp -#: guix-git/doc/guix.texi:17831 +#: guix-git/doc/guix.texi:18193 #, no-wrap msgid "" "(service\n" @@ -33099,134 +33770,134 @@ msgstr "" "\n" #. type: defvr -#: guix-git/doc/guix.texi:17835 +#: guix-git/doc/guix.texi:18197 #, no-wrap msgid "{Scheme Variable} %openntpd-servers" msgstr "{Variable Scheme} %openntpd-servers" #. type: defvr -#: guix-git/doc/guix.texi:17838 +#: guix-git/doc/guix.texi:18200 msgid "This variable is a list of the server addresses defined in @code{%ntp-servers}." msgstr "Cette variable est une liste des adresses de serveurs définies dans @code{%ntp-servers}." #. type: deftp -#: guix-git/doc/guix.texi:17840 +#: guix-git/doc/guix.texi:18202 #, no-wrap msgid "{Data Type} openntpd-configuration" msgstr "{Type de données} openntpd-configuration" #. type: item -#: guix-git/doc/guix.texi:17842 +#: guix-git/doc/guix.texi:18204 #, no-wrap msgid "@code{openntpd} (default: @code{(file-append openntpd \"/sbin/ntpd\")})" msgstr "@code{openntpd} (par défaut : @code{(file-append openntpd \"/sbin/ntpd\")})" #. type: table -#: guix-git/doc/guix.texi:17844 +#: guix-git/doc/guix.texi:18206 msgid "The openntpd executable to use." msgstr "L'exécutable openntpd à utiliser." #. type: item -#: guix-git/doc/guix.texi:17844 +#: guix-git/doc/guix.texi:18206 #, no-wrap msgid "@code{listen-on} (default: @code{'(\"127.0.0.1\" \"::1\")})" msgstr "@code{listen-on} (par défaut : @code{'(\"127.0.0.1\" \"::1\")})" #. type: table -#: guix-git/doc/guix.texi:17846 +#: guix-git/doc/guix.texi:18208 msgid "A list of local IP addresses or hostnames the ntpd daemon should listen on." msgstr "Une liste d'adresses IP locales ou de noms d'hôtes que devrait écouter le démon ntpd." #. type: item -#: guix-git/doc/guix.texi:17846 +#: guix-git/doc/guix.texi:18208 #, no-wrap msgid "@code{query-from} (default: @code{'()})" msgstr "@code{query-from} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17848 +#: guix-git/doc/guix.texi:18210 msgid "A list of local IP address the ntpd daemon should use for outgoing queries." msgstr "Une liste d'adresses IP que le démon devrait utiliser pour les requêtes sortantes." #. type: item -#: guix-git/doc/guix.texi:17848 +#: guix-git/doc/guix.texi:18210 #, no-wrap msgid "@code{sensor} (default: @code{'()})" msgstr "@code{sensor} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17853 +#: guix-git/doc/guix.texi:18215 msgid "Specify a list of timedelta sensor devices ntpd should use. @code{ntpd} will listen to each sensor that actually exists and ignore non-existent ones. See @uref{https://man.openbsd.org/ntpd.conf, upstream documentation} for more information." msgstr "Spécifie une liste de senseurs de différences de temps que ntpd devrait utiliser. @code{ntpd} écoutera chaque senseur qui existe et ignorera ceux qui n'existent pas. Voir @uref{https://man.openbsd.org/ntpd.conf, la documentation en amont} pour plus d'informations." #. type: item -#: guix-git/doc/guix.texi:17853 +#: guix-git/doc/guix.texi:18215 #, no-wrap msgid "@code{server} (default: @code{'()})" msgstr "@code{server} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17855 +#: guix-git/doc/guix.texi:18217 msgid "Specify a list of IP addresses or hostnames of NTP servers to synchronize to." msgstr "Spécifie une liste d'adresses IP ou de noms d'hôtes de serveurs NTP avec lesquels se synchroniser." #. type: item -#: guix-git/doc/guix.texi:17855 +#: guix-git/doc/guix.texi:18217 #, no-wrap msgid "@code{servers} (default: @code{%openntp-servers})" msgstr "@code{servers} (par défaut : @code{%openntp-servers})" #. type: table -#: guix-git/doc/guix.texi:17857 +#: guix-git/doc/guix.texi:18219 msgid "Specify a list of IP addresses or hostnames of NTP pools to synchronize to." msgstr "Spécifie une liste d'adresses IP ou de noms d'hôtes de banques de serveurs NTP avec lesquelles se synchroniser." #. type: item -#: guix-git/doc/guix.texi:17857 +#: guix-git/doc/guix.texi:18219 #, no-wrap msgid "@code{constraint-from} (default: @code{'()})" msgstr "@code{constraint-from} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17864 +#: guix-git/doc/guix.texi:18226 msgid "@code{ntpd} can be configured to query the ‘Date’ from trusted HTTPS servers via TLS. This time information is not used for precision but acts as an authenticated constraint, thereby reducing the impact of unauthenticated NTP man-in-the-middle attacks. Specify a list of URLs, IP addresses or hostnames of HTTPS servers to provide a constraint." msgstr "@code{ntpd} peut être configuré pour demander la « Date » à des serveurs HTTPS de confiance via TLS. Cette information de temps n'est pas utilisée pour sa précision mais agit comme une contrainte authentifiée, ce qui réduit l'impact d'une attaque par l'homme du milieu sur le protocole NTP non authentifié. Spécifie une liste d'URL, d'adresses IP ou de noms d'hôtes de serveurs HTTPS qui fournissent cette contrainte." #. type: item -#: guix-git/doc/guix.texi:17864 +#: guix-git/doc/guix.texi:18226 #, no-wrap msgid "@code{constraints-from} (default: @code{'()})" msgstr "@code{constraints-from} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17868 +#: guix-git/doc/guix.texi:18230 msgid "As with constraint from, specify a list of URLs, IP addresses or hostnames of HTTPS servers to provide a constraint. Should the hostname resolve to multiple IP addresses, @code{ntpd} will calculate a median constraint from all of them." msgstr "Comme pour @code{constraint-from}, spécifie une liste d'URL, d'adresses IP ou de noms d'hôtes de serveurs HTTPS qui fournissent une contrainte. Si les noms d'hôtes sont résolus en plusieurs adresses IP, @code{ntpd} calculera la contrainte médiane." #. type: cindex -#: guix-git/doc/guix.texi:17871 +#: guix-git/doc/guix.texi:18233 #, no-wrap msgid "inetd" msgstr "inetd" #. type: deffn -#: guix-git/doc/guix.texi:17872 +#: guix-git/doc/guix.texi:18234 #, no-wrap msgid "{Scheme variable} inetd-service-type" msgstr "{Variable Scheme} inetd-service-type" #. type: deffn -#: guix-git/doc/guix.texi:17877 +#: guix-git/doc/guix.texi:18239 msgid "This service runs the @command{inetd} (@pxref{inetd invocation,,, inetutils, GNU Inetutils}) daemon. @command{inetd} listens for connections on internet sockets, and lazily starts the specified server program when a connection is made on one of these sockets." msgstr "Ce service lance le démon @command{inetd} (@pxref{inetd invocation,,, inetutils, GNU Inetutils}). @command{inetd} écoute des connexions sur des sockets internet et démarre le programme spécifié uniquement lorsqu'une connexion arrive sur l'un de ces sockets." #. type: deffn -#: guix-git/doc/guix.texi:17883 +#: guix-git/doc/guix.texi:18245 msgid "The value of this service is an @code{inetd-configuration} object. The following example configures the @command{inetd} daemon to provide the built-in @command{echo} service, as well as an smtp service which forwards smtp traffic over ssh to a server @code{smtp-server} behind a gateway @code{hostname}:" msgstr "La valeur de ce service est un objet @code{inetd-configuration}. L'exemple suivant configure le démon @command{inetd} pour qu'il fournisse le service @command{echo}, ainsi qu'un service smtp qui transfère le trafic smtp par ssh à un serveur @code{smtp-server} derrière une passerelle @code{hostname} :" #. type: lisp -#: guix-git/doc/guix.texi:17906 +#: guix-git/doc/guix.texi:18268 #, no-wrap msgid "" "(service\n" @@ -33274,463 +33945,465 @@ msgstr "" " \"-W\" \"smtp-server:25\" \"user@@hostname\")))))))\n" #. type: deffn -#: guix-git/doc/guix.texi:17909 +#: guix-git/doc/guix.texi:18271 msgid "See below for more details about @code{inetd-configuration}." msgstr "Voir plus bas pour plus de détails sur @code{inetd-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:17911 +#: guix-git/doc/guix.texi:18273 #, no-wrap msgid "{Data Type} inetd-configuration" msgstr "{Type de données} inetd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17913 +#: guix-git/doc/guix.texi:18275 msgid "Data type representing the configuration of @command{inetd}." msgstr "Type de données représentant la configuration de @command{inetd}." #. type: item -#: guix-git/doc/guix.texi:17915 +#: guix-git/doc/guix.texi:18277 #, no-wrap msgid "@code{program} (default: @code{(file-append inetutils \"/libexec/inetd\")})" msgstr "@code{program} (par défaut : @code{(file-append inetutils \"/libexec/inetd\")})" #. type: table -#: guix-git/doc/guix.texi:17917 +#: guix-git/doc/guix.texi:18279 msgid "The @command{inetd} executable to use." msgstr "L'exécutable @command{inetd} à utiliser." #. type: item -#: guix-git/doc/guix.texi:17918 guix-git/doc/guix.texi:27655 +#: guix-git/doc/guix.texi:18280 guix-git/doc/guix.texi:27992 #, no-wrap msgid "@code{entries} (default: @code{'()})" msgstr "@code{entries} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17921 +#: guix-git/doc/guix.texi:18283 msgid "A list of @command{inetd} service entries. Each entry should be created by the @code{inetd-entry} constructor." msgstr "Une liste d'entrées de services @command{inetd}. Chaque entrée devrait être crée avec le constructeur @code{inetd-entry}." #. type: deftp -#: guix-git/doc/guix.texi:17924 +#: guix-git/doc/guix.texi:18286 #, no-wrap msgid "{Data Type} inetd-entry" msgstr "{Type de données} inetd-entry" #. type: deftp -#: guix-git/doc/guix.texi:17928 +#: guix-git/doc/guix.texi:18290 msgid "Data type representing an entry in the @command{inetd} configuration. Each entry corresponds to a socket where @command{inetd} will listen for requests." msgstr "Type de données représentant une entrée dans la configuration d'@command{inetd}. Chaque entrée correspond à un socket sur lequel @command{inetd} écoutera les requêtes." #. type: item -#: guix-git/doc/guix.texi:17930 +#: guix-git/doc/guix.texi:18292 #, no-wrap msgid "@code{node} (default: @code{#f})" msgstr "@code{node} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17935 +#: guix-git/doc/guix.texi:18297 msgid "Optional string, a comma-separated list of local addresses @command{inetd} should use when listening for this service. @xref{Configuration file,,, inetutils, GNU Inetutils} for a complete description of all options." msgstr "Chaîne de caractères facultative, un liste d'adresses locales séparées par des virgules que @command{inetd} devrait utiliser pour écouter ce service. @xref{Configuration file,,, inetutils, GNU Inetutils} pour une description complète de toutes les options." #. type: table -#: guix-git/doc/guix.texi:17937 +#: guix-git/doc/guix.texi:18299 msgid "A string, the name must correspond to an entry in @code{/etc/services}." msgstr "Une chaîne de caractères dont le nom doit correspondre à une entrée de @code{/etc/services}." #. type: code{#1} -#: guix-git/doc/guix.texi:17937 +#: guix-git/doc/guix.texi:18299 #, no-wrap msgid "socket-type" msgstr "socket-type" #. type: table -#: guix-git/doc/guix.texi:17940 +#: guix-git/doc/guix.texi:18302 msgid "One of @code{'stream}, @code{'dgram}, @code{'raw}, @code{'rdm} or @code{'seqpacket}." msgstr "Un symbole parmi @code{'stream}, @code{'dgram}, @code{'raw}, @code{'rdm} ou @code{'seqpacket}." #. type: code{#1} -#: guix-git/doc/guix.texi:17940 +#: guix-git/doc/guix.texi:18302 #, no-wrap msgid "protocol" msgstr "protocol" #. type: table -#: guix-git/doc/guix.texi:17942 +#: guix-git/doc/guix.texi:18304 msgid "A string, must correspond to an entry in @code{/etc/protocols}." msgstr "Une chaîne de caractères qui doit correspondre à une entrée dans @code{/etc/protocols}." #. type: item -#: guix-git/doc/guix.texi:17942 +#: guix-git/doc/guix.texi:18304 #, no-wrap msgid "@code{wait?} (default: @code{#t})" msgstr "@code{wait?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:17945 +#: guix-git/doc/guix.texi:18307 msgid "Whether @command{inetd} should wait for the server to exit before listening to new service requests." msgstr "Indique si @command{inetd} devrait attendre que le serveur ait quitté avant d'écouter de nouvelles demandes de service." #. type: table -#: guix-git/doc/guix.texi:17950 +#: guix-git/doc/guix.texi:18312 msgid "A string containing the user (and, optionally, group) name of the user as whom the server should run. The group name can be specified in a suffix, separated by a colon or period, i.e.@: @code{\"user\"}, @code{\"user:group\"} or @code{\"user.group\"}." msgstr "Une chaîne de caractères contenant le nom d'utilisateur (et éventuellement de groupe) de l'utilisateur en tant que lequel le serveur devrait tourner. Le nom du groupe peut être spécifié comme un suffixe, séparé par un deux-points ou un point, c.-à-d.@: @code{\"utilisateur\"}, @code{\"utilisateur:groupe\"} ou @code{\"utilisateur.groupe\"}." #. type: item -#: guix-git/doc/guix.texi:17950 +#: guix-git/doc/guix.texi:18312 #, no-wrap msgid "@code{program} (default: @code{\"internal\"})" msgstr "@code{program} (par défaut : @code{\"internal\"})" #. type: table -#: guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:18315 msgid "The server program which will serve the requests, or @code{\"internal\"} if @command{inetd} should use a built-in service." msgstr "Le programme du serveur qui servira les requêtes, ou @code{\"internal\"} si @command{inetd} devrait utiliser un service inclus." #. type: table -#: guix-git/doc/guix.texi:17958 +#: guix-git/doc/guix.texi:18320 msgid "A list strings or file-like objects, which are the server program's arguments, starting with the zeroth argument, i.e.@: the name of the program itself. For @command{inetd}'s internal services, this entry must be @code{'()} or @code{'(\"internal\")}." msgstr "Une liste de chaînes de caractères ou d'objets simili-fichiers qui sont les arguments du programme du serveur, en commençant par le zéroième argument, c.-à-d.@: le nom du programme lui-même. Pour les services internes à @command{inetd}, cette entrée doit être @code{'()} ou @code{'(\"internal\")}." #. type: deftp -#: guix-git/doc/guix.texi:17962 +#: guix-git/doc/guix.texi:18324 msgid "@xref{Configuration file,,, inetutils, GNU Inetutils} for a more detailed discussion of each configuration field." msgstr "@xref{Configuration file,,, inetutils, GNU Inetutils} pour trouver une discussion plus détaillée de chaque champ de configuration." #. type: cindex -#: guix-git/doc/guix.texi:17964 +#: guix-git/doc/guix.texi:18326 #, no-wrap msgid "opendht, distributed hash table network service" msgstr "opendht, service réseau de table de hash distribuée" #. type: cindex -#: guix-git/doc/guix.texi:17965 +#: guix-git/doc/guix.texi:18327 #, no-wrap msgid "dhtproxy, for use with jami" msgstr "dhtproxy, à utiliser avec jami" #. type: defvr -#: guix-git/doc/guix.texi:17966 +#: guix-git/doc/guix.texi:18328 #, no-wrap msgid "{Scheme Variable} opendht-service-type" msgstr "{Variable Scheme} opendht-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17971 +#: guix-git/doc/guix.texi:18333 msgid "This is the type of the service running a @uref{https://opendht.net, OpenDHT} node, @command{dhtnode}. The daemon can be used to host your own proxy service to the distributed hash table (DHT), for example to connect to with Jami, among other applications." msgstr "C'est le type du service qui lance un nœud @uref{https://opendht.net, OpenDHT}, @command{dhtnode}. Le démon peut être utilisé pour héberger votre propre service mandataire à la table de hash distribue (DHT), par exemple pour y connecter Jami, entre autres applications." #. type: quotation -#: guix-git/doc/guix.texi:17981 +#: guix-git/doc/guix.texi:18343 msgid "When using the OpenDHT proxy server, the IP addresses it ``sees'' from the clients should be addresses reachable from other peers. In practice this means that a publicly reachable address is best suited for a proxy server, outside of your private network. For example, hosting the proxy server on a IPv4 private local network and exposing it via port forwarding could work for external peers, but peers local to the proxy would have their private addresses shared with the external peers, leading to connectivity problems." msgstr "Lorsque vous utiliser le serveur mandataire OpenDHT, les adresses IP qu'il « voit » venant des clients devraient être les adresses atteignables depuis les autres pairs. En pratique cela signifie qu'une adresse accessible publiquement est préférable pour un serveur mandataire, en dehors de votre réseau privé. Par exemple, héberger le serveur mandataire sur un réseau local privé en IPv4 et l'exposer via une redirection de port pourrait fonctionner pour les pairs externes, mais les pairs locaux au mandataire verront leur adresse privée partagées avec les pairs externes, ce qui posera des problèmes de connectivité." #. type: defvr -#: guix-git/doc/guix.texi:17985 +#: guix-git/doc/guix.texi:18347 msgid "The value of this service is a @code{opendht-configuration} object, as described below." msgstr "La valeur de ce service est un objet @code{opendht-configuration}, décrit ci-dessous." #. type: deftp -#: guix-git/doc/guix.texi:17987 +#: guix-git/doc/guix.texi:18349 #, no-wrap msgid "{Data Type} opendht-configuration" msgstr "{Type de données} opendht-configuration" #. type: deftp -#: guix-git/doc/guix.texi:17989 +#: guix-git/doc/guix.texi:18351 msgid "This is the data type for the OpenDHT service configuration." msgstr "C'est le type de données représentant la configuration du service OpenDHT." #. type: deftp -#: guix-git/doc/guix.texi:17994 +#: guix-git/doc/guix.texi:18356 msgid "Available @code{opendht-configuration} fields are:" msgstr "Les champs de @code{opendht-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:17995 +#: guix-git/doc/guix.texi:18357 #, no-wrap msgid "{@code{opendht-configuration} parameter} package opendht" msgstr "{paramètre de @code{opendht-client-configuration}} package opendht" #. type: deftypevr -#: guix-git/doc/guix.texi:17997 +#: guix-git/doc/guix.texi:18359 msgid "The @code{opendht} package to use." msgstr "Le paquet @code{opendht} à utiliser." #. type: deftypevr -#: guix-git/doc/guix.texi:18000 +#: guix-git/doc/guix.texi:18362 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean peer-discovery?" msgstr "{paramètre de @code{opendht-client-configuration}} boolean peer-discovery?" #. type: deftypevr -#: guix-git/doc/guix.texi:18002 +#: guix-git/doc/guix.texi:18364 msgid "Whether to enable the multicast local peer discovery mechanism." msgstr "Indique s'il faut activer le mécanisme de découverte de pairs locaux en multidiffusion." #. type: deftypevr -#: guix-git/doc/guix.texi:18004 guix-git/doc/guix.texi:18012 -#: guix-git/doc/guix.texi:18020 guix-git/doc/guix.texi:19712 -#: guix-git/doc/guix.texi:19788 guix-git/doc/guix.texi:19830 -#: guix-git/doc/guix.texi:19850 guix-git/doc/guix.texi:19856 -#: guix-git/doc/guix.texi:19872 guix-git/doc/guix.texi:19960 -#: guix-git/doc/guix.texi:20048 guix-git/doc/guix.texi:20361 -#: guix-git/doc/guix.texi:20374 guix-git/doc/guix.texi:21492 -#: guix-git/doc/guix.texi:22970 guix-git/doc/guix.texi:23076 -#: guix-git/doc/guix.texi:23141 guix-git/doc/guix.texi:23150 -#: guix-git/doc/guix.texi:24383 guix-git/doc/guix.texi:24427 -#: guix-git/doc/guix.texi:24444 guix-git/doc/guix.texi:24452 -#: guix-git/doc/guix.texi:24467 guix-git/doc/guix.texi:24485 -#: guix-git/doc/guix.texi:24509 guix-git/doc/guix.texi:24562 -#: guix-git/doc/guix.texi:24695 guix-git/doc/guix.texi:24729 -#: guix-git/doc/guix.texi:24765 guix-git/doc/guix.texi:24781 -#: guix-git/doc/guix.texi:24809 guix-git/doc/guix.texi:24870 -#: guix-git/doc/guix.texi:24953 guix-git/doc/guix.texi:28367 -#: guix-git/doc/guix.texi:28381 guix-git/doc/guix.texi:28403 -#: guix-git/doc/guix.texi:28522 guix-git/doc/guix.texi:28536 -#: guix-git/doc/guix.texi:28557 guix-git/doc/guix.texi:28578 -#: guix-git/doc/guix.texi:28585 guix-git/doc/guix.texi:28630 -#: guix-git/doc/guix.texi:28637 guix-git/doc/guix.texi:29426 -#: guix-git/doc/guix.texi:29440 guix-git/doc/guix.texi:29612 -#: guix-git/doc/guix.texi:29657 guix-git/doc/guix.texi:29744 -#: guix-git/doc/guix.texi:29946 guix-git/doc/guix.texi:29979 -#: guix-git/doc/guix.texi:30119 guix-git/doc/guix.texi:30130 -#: guix-git/doc/guix.texi:30381 guix-git/doc/guix.texi:31900 -#: guix-git/doc/guix.texi:31909 guix-git/doc/guix.texi:31917 -#: guix-git/doc/guix.texi:31925 guix-git/doc/guix.texi:31941 -#: guix-git/doc/guix.texi:31957 guix-git/doc/guix.texi:31965 -#: guix-git/doc/guix.texi:31973 guix-git/doc/guix.texi:31982 -#: guix-git/doc/guix.texi:31991 guix-git/doc/guix.texi:32007 -#: guix-git/doc/guix.texi:32071 guix-git/doc/guix.texi:32177 -#: guix-git/doc/guix.texi:32185 guix-git/doc/guix.texi:32193 -#: guix-git/doc/guix.texi:32218 guix-git/doc/guix.texi:32272 -#: guix-git/doc/guix.texi:32320 guix-git/doc/guix.texi:32521 -#: guix-git/doc/guix.texi:32528 +#: guix-git/doc/guix.texi:18366 guix-git/doc/guix.texi:18374 +#: guix-git/doc/guix.texi:18382 guix-git/doc/guix.texi:20074 +#: guix-git/doc/guix.texi:20150 guix-git/doc/guix.texi:20192 +#: guix-git/doc/guix.texi:20212 guix-git/doc/guix.texi:20218 +#: guix-git/doc/guix.texi:20234 guix-git/doc/guix.texi:20322 +#: guix-git/doc/guix.texi:20410 guix-git/doc/guix.texi:20723 +#: guix-git/doc/guix.texi:20736 guix-git/doc/guix.texi:21854 +#: guix-git/doc/guix.texi:23332 guix-git/doc/guix.texi:23438 +#: guix-git/doc/guix.texi:23503 guix-git/doc/guix.texi:23512 +#: guix-git/doc/guix.texi:24745 guix-git/doc/guix.texi:24789 +#: guix-git/doc/guix.texi:24806 guix-git/doc/guix.texi:24814 +#: guix-git/doc/guix.texi:24829 guix-git/doc/guix.texi:24847 +#: guix-git/doc/guix.texi:24871 guix-git/doc/guix.texi:24924 +#: guix-git/doc/guix.texi:25057 guix-git/doc/guix.texi:25091 +#: guix-git/doc/guix.texi:25127 guix-git/doc/guix.texi:25143 +#: guix-git/doc/guix.texi:25171 guix-git/doc/guix.texi:25232 +#: guix-git/doc/guix.texi:25315 guix-git/doc/guix.texi:28704 +#: guix-git/doc/guix.texi:28718 guix-git/doc/guix.texi:28740 +#: guix-git/doc/guix.texi:28859 guix-git/doc/guix.texi:28873 +#: guix-git/doc/guix.texi:28894 guix-git/doc/guix.texi:28915 +#: guix-git/doc/guix.texi:28922 guix-git/doc/guix.texi:28967 +#: guix-git/doc/guix.texi:28974 guix-git/doc/guix.texi:29763 +#: guix-git/doc/guix.texi:29777 guix-git/doc/guix.texi:29977 +#: guix-git/doc/guix.texi:30022 guix-git/doc/guix.texi:30109 +#: guix-git/doc/guix.texi:30311 guix-git/doc/guix.texi:30344 +#: guix-git/doc/guix.texi:30484 guix-git/doc/guix.texi:30495 +#: guix-git/doc/guix.texi:30746 guix-git/doc/guix.texi:32265 +#: guix-git/doc/guix.texi:32274 guix-git/doc/guix.texi:32282 +#: guix-git/doc/guix.texi:32290 guix-git/doc/guix.texi:32306 +#: guix-git/doc/guix.texi:32322 guix-git/doc/guix.texi:32330 +#: guix-git/doc/guix.texi:32338 guix-git/doc/guix.texi:32347 +#: guix-git/doc/guix.texi:32356 guix-git/doc/guix.texi:32372 +#: guix-git/doc/guix.texi:32436 guix-git/doc/guix.texi:32542 +#: guix-git/doc/guix.texi:32550 guix-git/doc/guix.texi:32558 +#: guix-git/doc/guix.texi:32583 guix-git/doc/guix.texi:32637 +#: guix-git/doc/guix.texi:32685 guix-git/doc/guix.texi:32886 +#: guix-git/doc/guix.texi:32893 msgid "Defaults to @samp{#f}." msgstr "La valeur par défaut est @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:18007 +#: guix-git/doc/guix.texi:18369 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean enable-logging?" msgstr "{paramètre de @code{opendht-client-configuration}} boolean enable-logging?" #. type: deftypevr -#: guix-git/doc/guix.texi:18010 +#: guix-git/doc/guix.texi:18372 msgid "Whether to enable logging messages to syslog. It is disabled by default as it is rather verbose." msgstr "Indique s'il faut activer la journalisation des messages vers syslog. C'est désactivé par défaut car cette option est plutôt verbeuse." #. type: deftypevr -#: guix-git/doc/guix.texi:18015 +#: guix-git/doc/guix.texi:18377 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean debug?" msgstr "{paramètre de @code{opendht-client-configuration}} boolean debug?" #. type: deftypevr -#: guix-git/doc/guix.texi:18018 +#: guix-git/doc/guix.texi:18380 msgid "Whether to enable debug-level logging messages. This has no effect if logging is disabled." msgstr "Indique s'il faut activer la journalisation de débogage. Cela n'a aucun effet si la journalisation n'est pas activée." #. type: deftypevr -#: guix-git/doc/guix.texi:18023 +#: guix-git/doc/guix.texi:18385 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-string bootstrap-host" msgstr "{paramètre de @code{opendht-client-configuration}} maybe-string bootstrap-host" #. type: deftypevr -#: guix-git/doc/guix.texi:18029 +#: guix-git/doc/guix.texi:18391 msgid "The node host name that is used to make the first connection to the network. A specific port value can be provided by appending the @code{:PORT} suffix. By default, it uses the Jami bootstrap nodes, but any host can be specified here. It's also possible to disable bootsrapping by setting this to the @code{'disabled} symbol." msgstr "Le nom d'hôte du nœud utilisé pour effectuer la première connexion au réseau. Vous pouvez fournir une valeur de port spécifique en ajoutant le suffixe @code{:PORT}. Par défaut, cela utilise les nœuds d'amorçage de Jami, mais n'importe quel hôte peut être spécifié ici. Il est aussi possible de désactiver l'amorçage en indiquant le symbole @code{'disabled} ici." #. type: deftypevr -#: guix-git/doc/guix.texi:18031 +#: guix-git/doc/guix.texi:18393 msgid "Defaults to @samp{\"bootstrap.jami.net:4222\"}." msgstr "La valeur par défaut est @samp{\"bootstrap.jami.net:4222\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:18034 +#: guix-git/doc/guix.texi:18396 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number port" msgstr "{paramètre de @code{opendht-client-configuration}} maybe-number port" #. type: deftypevr -#: guix-git/doc/guix.texi:18037 +#: guix-git/doc/guix.texi:18399 msgid "The UDP port to bind to. When set to @code{'disabled}, an available port is automatically selected." msgstr "Le port UDP sur lequel se lier. Lorsque la valeur est @code{'disabled}, un port disponible est automatiquement choisi." #. type: deftypevr -#: guix-git/doc/guix.texi:18039 +#: guix-git/doc/guix.texi:18401 msgid "Defaults to @samp{4222}." msgstr "La valeur par défaut est @samp{4222}." #. type: deftypevr -#: guix-git/doc/guix.texi:18042 +#: guix-git/doc/guix.texi:18404 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number proxy-server-port" msgstr "{paramètre de @code{opendht-client-configuration}} maybe-number proxy-server-port" #. type: deftypevr -#: guix-git/doc/guix.texi:18044 +#: guix-git/doc/guix.texi:18406 msgid "Spawn a proxy server listening on the specified port." msgstr "Crée un serveur mandataire écoutant sur le port spécifié." #. type: deftypevr -#: guix-git/doc/guix.texi:18046 guix-git/doc/guix.texi:18053 -#: guix-git/doc/guix.texi:24391 guix-git/doc/guix.texi:24435 -#: guix-git/doc/guix.texi:24648 guix-git/doc/guix.texi:24704 -#: guix-git/doc/guix.texi:24878 guix-git/doc/guix.texi:24889 -#: guix-git/doc/guix.texi:24962 guix-git/doc/guix.texi:25687 -#: guix-git/doc/guix.texi:25730 guix-git/doc/guix.texi:25738 -#: guix-git/doc/guix.texi:25746 guix-git/doc/guix.texi:25754 -#: guix-git/doc/guix.texi:25763 guix-git/doc/guix.texi:25771 -#: guix-git/doc/guix.texi:25778 guix-git/doc/guix.texi:25786 -#: guix-git/doc/guix.texi:25794 guix-git/doc/guix.texi:25804 -#: guix-git/doc/guix.texi:25811 guix-git/doc/guix.texi:25835 -#: guix-git/doc/guix.texi:25843 guix-git/doc/guix.texi:25869 -#: guix-git/doc/guix.texi:25878 guix-git/doc/guix.texi:25887 -#: guix-git/doc/guix.texi:25896 guix-git/doc/guix.texi:25905 -#: guix-git/doc/guix.texi:25914 guix-git/doc/guix.texi:25922 -#: guix-git/doc/guix.texi:25930 guix-git/doc/guix.texi:25937 -#: guix-git/doc/guix.texi:25945 guix-git/doc/guix.texi:25952 -#: guix-git/doc/guix.texi:25960 guix-git/doc/guix.texi:25968 -#: guix-git/doc/guix.texi:25977 guix-git/doc/guix.texi:25986 -#: guix-git/doc/guix.texi:25994 guix-git/doc/guix.texi:26002 -#: guix-git/doc/guix.texi:26010 guix-git/doc/guix.texi:26021 -#: guix-git/doc/guix.texi:26031 guix-git/doc/guix.texi:26042 -#: guix-git/doc/guix.texi:26051 guix-git/doc/guix.texi:26061 -#: guix-git/doc/guix.texi:26069 guix-git/doc/guix.texi:26080 -#: guix-git/doc/guix.texi:26089 guix-git/doc/guix.texi:26099 -#: guix-git/doc/guix.texi:29339 guix-git/doc/guix.texi:29346 -#: guix-git/doc/guix.texi:29353 guix-git/doc/guix.texi:29360 -#: guix-git/doc/guix.texi:29367 guix-git/doc/guix.texi:29374 -#: guix-git/doc/guix.texi:29382 guix-git/doc/guix.texi:29390 -#: guix-git/doc/guix.texi:29397 guix-git/doc/guix.texi:29404 -#: guix-git/doc/guix.texi:29411 guix-git/doc/guix.texi:29418 -#: guix-git/doc/guix.texi:29448 guix-git/doc/guix.texi:29486 -#: guix-git/doc/guix.texi:29493 guix-git/doc/guix.texi:29502 -#: guix-git/doc/guix.texi:29524 guix-git/doc/guix.texi:29532 -#: guix-git/doc/guix.texi:29539 guix-git/doc/guix.texi:29694 -#: guix-git/doc/guix.texi:29714 guix-git/doc/guix.texi:29729 -#: guix-git/doc/guix.texi:29736 guix-git/doc/guix.texi:32473 -#: guix-git/doc/guix.texi:32481 guix-git/doc/guix.texi:32489 -#: guix-git/doc/guix.texi:32497 guix-git/doc/guix.texi:32505 -#: guix-git/doc/guix.texi:32513 +#: guix-git/doc/guix.texi:18408 guix-git/doc/guix.texi:18415 +#: guix-git/doc/guix.texi:24753 guix-git/doc/guix.texi:24797 +#: guix-git/doc/guix.texi:25010 guix-git/doc/guix.texi:25066 +#: guix-git/doc/guix.texi:25240 guix-git/doc/guix.texi:25251 +#: guix-git/doc/guix.texi:25324 guix-git/doc/guix.texi:26024 +#: guix-git/doc/guix.texi:26067 guix-git/doc/guix.texi:26075 +#: guix-git/doc/guix.texi:26083 guix-git/doc/guix.texi:26091 +#: guix-git/doc/guix.texi:26100 guix-git/doc/guix.texi:26108 +#: guix-git/doc/guix.texi:26115 guix-git/doc/guix.texi:26123 +#: guix-git/doc/guix.texi:26131 guix-git/doc/guix.texi:26141 +#: guix-git/doc/guix.texi:26148 guix-git/doc/guix.texi:26172 +#: guix-git/doc/guix.texi:26180 guix-git/doc/guix.texi:26206 +#: guix-git/doc/guix.texi:26215 guix-git/doc/guix.texi:26224 +#: guix-git/doc/guix.texi:26233 guix-git/doc/guix.texi:26242 +#: guix-git/doc/guix.texi:26251 guix-git/doc/guix.texi:26259 +#: guix-git/doc/guix.texi:26267 guix-git/doc/guix.texi:26274 +#: guix-git/doc/guix.texi:26282 guix-git/doc/guix.texi:26289 +#: guix-git/doc/guix.texi:26297 guix-git/doc/guix.texi:26305 +#: guix-git/doc/guix.texi:26314 guix-git/doc/guix.texi:26323 +#: guix-git/doc/guix.texi:26331 guix-git/doc/guix.texi:26339 +#: guix-git/doc/guix.texi:26347 guix-git/doc/guix.texi:26358 +#: guix-git/doc/guix.texi:26368 guix-git/doc/guix.texi:26379 +#: guix-git/doc/guix.texi:26388 guix-git/doc/guix.texi:26398 +#: guix-git/doc/guix.texi:26406 guix-git/doc/guix.texi:26417 +#: guix-git/doc/guix.texi:26426 guix-git/doc/guix.texi:26436 +#: guix-git/doc/guix.texi:29676 guix-git/doc/guix.texi:29683 +#: guix-git/doc/guix.texi:29690 guix-git/doc/guix.texi:29697 +#: guix-git/doc/guix.texi:29704 guix-git/doc/guix.texi:29711 +#: guix-git/doc/guix.texi:29719 guix-git/doc/guix.texi:29727 +#: guix-git/doc/guix.texi:29734 guix-git/doc/guix.texi:29741 +#: guix-git/doc/guix.texi:29748 guix-git/doc/guix.texi:29755 +#: guix-git/doc/guix.texi:29785 guix-git/doc/guix.texi:29823 +#: guix-git/doc/guix.texi:29830 guix-git/doc/guix.texi:29839 +#: guix-git/doc/guix.texi:29861 guix-git/doc/guix.texi:29869 +#: guix-git/doc/guix.texi:29876 guix-git/doc/guix.texi:29905 +#: guix-git/doc/guix.texi:29912 guix-git/doc/guix.texi:29919 +#: guix-git/doc/guix.texi:29926 guix-git/doc/guix.texi:30059 +#: guix-git/doc/guix.texi:30079 guix-git/doc/guix.texi:30094 +#: guix-git/doc/guix.texi:30101 guix-git/doc/guix.texi:32838 +#: guix-git/doc/guix.texi:32846 guix-git/doc/guix.texi:32854 +#: guix-git/doc/guix.texi:32862 guix-git/doc/guix.texi:32870 +#: guix-git/doc/guix.texi:32878 msgid "Defaults to @samp{disabled}." msgstr "La valeur par défaut est @samp{disabled}." #. type: deftypevr -#: guix-git/doc/guix.texi:18049 +#: guix-git/doc/guix.texi:18411 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number proxy-server-port-tls" msgstr "{paramètre de @code{opendht-client-configuration}} maybe-number proxy-server-port-tls" #. type: deftypevr -#: guix-git/doc/guix.texi:18051 +#: guix-git/doc/guix.texi:18413 msgid "Spawn a proxy server listening to TLS connections on the specified port." msgstr "Crée un serveur mandataire écoutant les connexions TLS sur le port spécifié." #. type: cindex -#: guix-git/doc/guix.texi:18057 +#: guix-git/doc/guix.texi:18419 #, no-wrap msgid "Tor" msgstr "Tor" #. type: defvr -#: guix-git/doc/guix.texi:18058 +#: guix-git/doc/guix.texi:18420 #, no-wrap msgid "{Scheme Variable} tor-service-type" msgstr "{Variable Scheme} tor-service-type" #. type: defvr -#: guix-git/doc/guix.texi:18063 +#: guix-git/doc/guix.texi:18425 msgid "This is the type for a service that runs the @uref{https://torproject.org, Tor} anonymous networking daemon. The service is configured using a @code{} record. By default, the Tor daemon runs as the @code{tor} unprivileged user, which is a member of the @code{tor} group." msgstr "C'est le type pour un service qui lance le démon de navigation anonyme @uref{https://torproject.org, Tor}. Le service est configuré avec un enregistrement @code{}. Par défaut, le démon Tor est lancé en tant qu'utilisateur non privilégié @code{tor}, membre du groupe @code{tor}." #. type: deftp -#: guix-git/doc/guix.texi:18066 +#: guix-git/doc/guix.texi:18428 #, no-wrap msgid "{Data Type} tor-configuration" msgstr "{Type de données} tor-configuration" #. type: item -#: guix-git/doc/guix.texi:18068 +#: guix-git/doc/guix.texi:18430 #, no-wrap msgid "@code{tor} (default: @code{tor})" msgstr "@code{tor} (par défaut : @code{tor})" #. type: table -#: guix-git/doc/guix.texi:18073 +#: guix-git/doc/guix.texi:18435 msgid "The package that provides the Tor daemon. This package is expected to provide the daemon at @file{bin/tor} relative to its output directory. The default package is the @uref{https://www.torproject.org, Tor Project's} implementation." msgstr "Le paquet qui fournit le démon Tor. Ce paquet doit fournir le démon @file{bin/tor} relativement à son répertoire de sortie. Le paquet par défaut est le l'implémentation du @uref{https://www.torproject.org, projet Tor}." #. type: item -#: guix-git/doc/guix.texi:18074 +#: guix-git/doc/guix.texi:18436 #, no-wrap msgid "@code{config-file} (default: @code{(plain-file \"empty\" \"\")})" msgstr "@code{config-file} (par défaut : @code{(plain-file \"empty\" \"\")})" #. type: table -#: guix-git/doc/guix.texi:18080 +#: guix-git/doc/guix.texi:18442 msgid "The configuration file to use. It will be appended to a default configuration file, and the final configuration file will be passed to @code{tor} via its @code{-f} option. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). See @code{man tor} for details on the configuration file syntax." msgstr "Le fichier de configuration à utiliser. Il sera ajouté au fichier de configuration par défaut, et le fichier de configuration final sera passé à @code{tor} via son option @code{-f}. Cela peut être n'importe quel objet « simili-fichier » (@pxref{G-Expressions, file-like objects}). Voir @code{man tor} pour plus de détails sur la syntaxe du fichier de configuration." #. type: item -#: guix-git/doc/guix.texi:18081 +#: guix-git/doc/guix.texi:18443 #, no-wrap msgid "@code{hidden-services} (default: @code{'()})" msgstr "@code{hidden-services} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18087 +#: guix-git/doc/guix.texi:18449 msgid "The list of @code{} records to use. For any hidden service you include in this list, appropriate configuration to enable the hidden service will be automatically added to the default configuration file. You may conveniently create @code{} records using the @code{tor-hidden-service} procedure described below." msgstr "La liste des enregistrements @code{} à utiliser. Pour n'importe quel service cache que vous ajoutez à cette liste, la configuration appropriée pour activer le service caché sera automatiquement ajouté au fichier de configuration par défaut. Vous pouvez aussi créer des enregistrements @code{} avec la procédure @code{tor-hidden-service} décrite plus bas." #. type: item -#: guix-git/doc/guix.texi:18088 +#: guix-git/doc/guix.texi:18450 #, no-wrap msgid "@code{socks-socket-type} (default: @code{'tcp})" msgstr "@code{socks-socket-type} (par défaut : @code{'tcp})" #. type: table -#: guix-git/doc/guix.texi:18095 +#: guix-git/doc/guix.texi:18457 msgid "The default socket type that Tor should use for its SOCKS socket. This must be either @code{'tcp} or @code{'unix}. If it is @code{'tcp}, then by default Tor will listen on TCP port 9050 on the loopback interface (i.e., localhost). If it is @code{'unix}, then Tor will listen on the UNIX domain socket @file{/var/run/tor/socks-sock}, which will be made writable by members of the @code{tor} group." msgstr "Le type de socket par défaut que Tor devrait utiliser pour les socket SOCKS. Cela doit être soit @code{'tcp} soit @code{'unix}. S'il s'agit de @code{'tcp}, alors Tor écoutera pas défaut sur le port TCP 9050 sur l'interface de boucle locale (c.-à-d.@: localhost). S'il s'agit de @code{'unix}, Tor écoutera sur le socket UNIX domain @file{/var/run/tor/socks-sock}, qui sera inscriptible pour les membres du groupe @code{tor}." #. type: table -#: guix-git/doc/guix.texi:18100 +#: guix-git/doc/guix.texi:18462 msgid "If you want to customize the SOCKS socket in more detail, leave @code{socks-socket-type} at its default value of @code{'tcp} and use @code{config-file} to override the default by providing your own @code{SocksPort} option." msgstr "Si vous voulez personnaliser le socket SOCKS plus avant, laissez @code{socks-socket-type} à sa valeur par défaut de @code{'tcp} et utilisez @code{config-file} pour remplacer les valeurs par défaut avec votre propre option @code{SocksPort}." #. type: item -#: guix-git/doc/guix.texi:18101 +#: guix-git/doc/guix.texi:18463 #, no-wrap msgid "@code{control-socket?} (default: @code{#f})" msgstr "@code{control-socket?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18107 +#: guix-git/doc/guix.texi:18469 msgid "Whether or not to provide a ``control socket'' by which Tor can be controlled to, for instance, dynamically instantiate tor onion services. If @code{#t}, Tor will listen for control commands on the UNIX domain socket @file{/var/run/tor/control-sock}, which will be made writable by members of the @code{tor} group." msgstr "Indique s'il faut utiliser un « socket de contrôle » par lequel on peut contrôler Tor pour, par exemple, instancier des services onion dynamiquement. Si la valeur est @code{#t}, Tor écoutera les commandes de contrôle sur le socket UNIX domain @file{/var/run/tor/control-sock}, qui sera inscriptible pour les membres du groupe @code{tor}." #. type: cindex -#: guix-git/doc/guix.texi:18111 +#: guix-git/doc/guix.texi:18473 #, no-wrap msgid "hidden service" msgstr "service caché" #. type: deffn -#: guix-git/doc/guix.texi:18112 +#: guix-git/doc/guix.texi:18474 #, no-wrap msgid "{Scheme Procedure} tor-hidden-service @var{name} @var{mapping}" msgstr "{Procédure Scheme} tor-hidden-service @var{name} @var{mapping}" #. type: deffn -#: guix-git/doc/guix.texi:18115 +#: guix-git/doc/guix.texi:18477 msgid "Define a new Tor @dfn{hidden service} called @var{name} and implementing @var{mapping}. @var{mapping} is a list of port/host tuples, such as:" msgstr "Définie un @dfn{service caché} pour Tor nommé @var{name} qui implémente @var{mapping}. @var{mapping} est une liste de paires de port et d'hôte, comme dans :" #. type: example -#: guix-git/doc/guix.texi:18119 +#: guix-git/doc/guix.texi:18481 #, no-wrap msgid "" " '((22 \"127.0.0.1:22\")\n" @@ -33740,43 +34413,43 @@ msgstr "" " (80 \"127.0.0.1:8080\"))\n" #. type: deffn -#: guix-git/doc/guix.texi:18123 +#: guix-git/doc/guix.texi:18485 msgid "In this example, port 22 of the hidden service is mapped to local port 22, and port 80 is mapped to local port 8080." msgstr "Dans cet exemple, le port 22 du service caché est relié au port local 22 et le port 80 est relié au port local 8080." #. type: deffn -#: guix-git/doc/guix.texi:18127 +#: guix-git/doc/guix.texi:18489 msgid "This creates a @file{/var/lib/tor/hidden-services/@var{name}} directory, where the @file{hostname} file contains the @code{.onion} host name for the hidden service." msgstr "Cela crée un répertoire @file{/var/lib/tor/hidden-services/@var{name}} où le fichier @file{hostname} contient le nom d'hôte @code{.onion} pour le service caché." #. type: deffn -#: guix-git/doc/guix.texi:18130 +#: guix-git/doc/guix.texi:18492 msgid "See @uref{https://www.torproject.org/docs/tor-hidden-service.html.en, the Tor project's documentation} for more information." msgstr "Voir @uref{https://www.torproject.org/docs/tor-hidden-service.html.en, the Tor project's documentation} pour trouver plus d'information." #. type: Plain text -#: guix-git/doc/guix.texi:18133 +#: guix-git/doc/guix.texi:18495 msgid "The @code{(gnu services rsync)} module provides the following services:" msgstr "Le module @code{(gnu services rsync)} fournit les services suivant :" #. type: Plain text -#: guix-git/doc/guix.texi:18137 +#: guix-git/doc/guix.texi:18499 msgid "You might want an rsync daemon if you have files that you want available so anyone (or just yourself) can download existing files or upload new files." msgstr "Vous pourriez vouloir un démon rsync si vous voulez que des fichiers soient disponibles pour que n'importe qui (ou juste vous) puisse télécharger des fichiers existants ou en téléverser des nouveaux." #. type: deffn -#: guix-git/doc/guix.texi:18138 +#: guix-git/doc/guix.texi:18500 #, no-wrap msgid "{Scheme Variable} rsync-service-type" msgstr "{Variable Scheme} rsync-service-type" #. type: deffn -#: guix-git/doc/guix.texi:18142 +#: guix-git/doc/guix.texi:18504 msgid "This is the service type for the @uref{https://rsync.samba.org, rsync} daemon, The value for this service type is a @command{rsync-configuration} record as in this example:" msgstr "C'est le type pour le démon @uref{https://rsync.samba.org, rsync}. La valeur de ce service est un enregistrement @command{rsync-configuration} comme dans cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:18155 +#: guix-git/doc/guix.texi:18517 #, fuzzy, no-wrap #| msgid "" #| "(service mpd-service-type\n" @@ -33814,247 +34487,242 @@ msgstr "" " (port . \"8080\"))))))))\n" #. type: deffn -#: guix-git/doc/guix.texi:18158 +#: guix-git/doc/guix.texi:18520 msgid "See below for details about @code{rsync-configuration}." msgstr "Voir plus pas pour trouver des détails à propos de @code{rsync-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:18160 +#: guix-git/doc/guix.texi:18522 #, no-wrap msgid "{Data Type} rsync-configuration" msgstr "{Type de données} rsync-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18162 +#: guix-git/doc/guix.texi:18524 msgid "Data type representing the configuration for @code{rsync-service}." msgstr "Type de données représentant la configuration de @code{rsync-service}." #. type: item -#: guix-git/doc/guix.texi:18164 +#: guix-git/doc/guix.texi:18526 #, no-wrap msgid "@code{package} (default: @var{rsync})" msgstr "@code{package} (par défaut : @var{rsync})" #. type: table -#: guix-git/doc/guix.texi:18166 +#: guix-git/doc/guix.texi:18528 msgid "@code{rsync} package to use." msgstr "Le paquet @code{rsync} à utiliser." #. type: item -#: guix-git/doc/guix.texi:18167 guix-git/doc/guix.texi:31480 +#: guix-git/doc/guix.texi:18529 guix-git/doc/guix.texi:31845 #, no-wrap msgid "@code{address} (default: @code{#f})" msgstr "@code{address} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18170 +#: guix-git/doc/guix.texi:18532 msgid "IP address on which @command{rsync} listens for incoming connections. If unspecified, it defaults to listening on all available addresses." msgstr "L'adresse sur laquelle @command{rsync} écoute les connexions entrantes. Si la valeur n'est pas spécifiée, écoute sur toutes les adresses par défaut." #. type: item -#: guix-git/doc/guix.texi:18171 +#: guix-git/doc/guix.texi:18533 #, no-wrap msgid "@code{port-number} (default: @code{873})" msgstr "@code{port-number} (par défaut : @code{873})" #. type: table -#: guix-git/doc/guix.texi:18175 +#: guix-git/doc/guix.texi:18537 msgid "TCP port on which @command{rsync} listens for incoming connections. If port is less than @code{1024} @command{rsync} needs to be started as the @code{root} user and group." msgstr "Le port TCP sur lequel @command{rsync} écoute les connexions entrantes. Si le port est inférieur à @code{1024}, @command{rsync} doit être démarré en tant qu'utilisateur et groupe @code{root}." #. type: item -#: guix-git/doc/guix.texi:18176 +#: guix-git/doc/guix.texi:18538 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/rsyncd/rsyncd.pid\"})" msgstr "@code{pid-file} (par défaut : @code{\"/var/run/rsyncd/rsyncd.pid\"})" #. type: table -#: guix-git/doc/guix.texi:18178 +#: guix-git/doc/guix.texi:18540 msgid "Name of the file where @command{rsync} writes its PID." msgstr "Nom du fichier où @command{rsync} écrit son PID." #. type: item -#: guix-git/doc/guix.texi:18179 +#: guix-git/doc/guix.texi:18541 #, no-wrap msgid "@code{lock-file} (default: @code{\"/var/run/rsyncd/rsyncd.lock\"})" msgstr "@code{lock-file} (par défaut : @code{\"/var/run/rsyncd/rsyncd.lock\"})" #. type: table -#: guix-git/doc/guix.texi:18181 +#: guix-git/doc/guix.texi:18543 msgid "Name of the file where @command{rsync} writes its lock file." msgstr "Nom du fichier où @command{rsync} écrit son fichier de verrouillage." #. type: item -#: guix-git/doc/guix.texi:18182 +#: guix-git/doc/guix.texi:18544 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/rsyncd.log\"})" msgstr "@code{log-file} (par défaut : @code{\"/var/log/rsyncd.log\"})" #. type: table -#: guix-git/doc/guix.texi:18184 +#: guix-git/doc/guix.texi:18546 msgid "Name of the file where @command{rsync} writes its log file." msgstr "Nom du fichier où @command{rsync} écrit son fichier de journal." #. type: item -#: guix-git/doc/guix.texi:18185 guix-git/doc/guix.texi:35582 +#: guix-git/doc/guix.texi:18547 guix-git/doc/guix.texi:36062 #, no-wrap msgid "@code{user} (default: @code{\"root\"})" msgstr "@code{user} (par défaut : @code{\"root\"})" #. type: table -#: guix-git/doc/guix.texi:18187 +#: guix-git/doc/guix.texi:18549 msgid "Owner of the @code{rsync} process." msgstr "Propriétaire du processus @code{rsync}." #. type: item -#: guix-git/doc/guix.texi:18188 -#, fuzzy, no-wrap -#| msgid "@code{group} (default: @code{\"httpd\"})" +#: guix-git/doc/guix.texi:18550 +#, no-wrap msgid "@code{group} (default: @code{\"root\"})" -msgstr "@code{group} (par défaut : @code{\"httpd\"})" +msgstr "@code{group} (par défaut : @code{\"root\"})" #. type: table -#: guix-git/doc/guix.texi:18190 +#: guix-git/doc/guix.texi:18552 msgid "Group of the @code{rsync} process." msgstr "Groupe du processus @code{rsync}." #. type: item -#: guix-git/doc/guix.texi:18191 -#, fuzzy, no-wrap -#| msgid "@code{uid} (default: @var{\"rsyncd\"})" +#: guix-git/doc/guix.texi:18553 +#, no-wrap msgid "@code{uid} (default: @code{\"rsyncd\"})" -msgstr "@code{uid} (par défaut : @var{\"rsyncd\"})" +msgstr "@code{uid} (par défaut : @code{\"rsyncd\"})" #. type: table -#: guix-git/doc/guix.texi:18194 +#: guix-git/doc/guix.texi:18556 msgid "User name or user ID that file transfers to and from that module should take place as when the daemon was run as @code{root}." msgstr "Nom d'utilisateur ou ID utilisateur en tant que lequel les transferts de fichiers ont lieu si le démon a été lancé en @code{root}." #. type: item -#: guix-git/doc/guix.texi:18195 -#, fuzzy, no-wrap -#| msgid "@code{gid} (default: @var{\"rsyncd\"})" +#: guix-git/doc/guix.texi:18557 +#, no-wrap msgid "@code{gid} (default: @code{\"rsyncd\"})" -msgstr "@code{gid} (par défaut : @var{\"rsyncd\"})" +msgstr "@code{gid} (par défaut : @code{\"rsyncd\"})" #. type: table -#: guix-git/doc/guix.texi:18197 guix-git/doc/guix.texi:18676 +#: guix-git/doc/guix.texi:18559 guix-git/doc/guix.texi:19038 msgid "Group name or group ID that will be used when accessing the module." msgstr "Nom du groupe ou ID du groupe qui sera utilisé lors de l'accès au module." #. type: item -#: guix-git/doc/guix.texi:18198 guix-git/doc/guix.texi:36378 +#: guix-git/doc/guix.texi:18560 guix-git/doc/guix.texi:36868 #, no-wrap msgid "@code{modules} (default: @code{%default-modules})" msgstr "@code{modules} (par défaut : @code{%default-modules})" #. type: table -#: guix-git/doc/guix.texi:18201 +#: guix-git/doc/guix.texi:18563 msgid "List of ``modules''---i.e., directories exported over rsync. Each element must be a @code{rsync-module} record, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18204 +#: guix-git/doc/guix.texi:18566 #, fuzzy, no-wrap #| msgid "{Data Type} httpd-module" msgid "{Data Type} rsync-module" msgstr "{Type de données} httpd-module" #. type: deftp -#: guix-git/doc/guix.texi:18207 +#: guix-git/doc/guix.texi:18569 msgid "This is the data type for rsync ``modules''. A module is a directory exported over the rsync protocol. The available fields are as follows:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18213 +#: guix-git/doc/guix.texi:18575 msgid "The module name. This is the name that shows up in URLs. For example, if the module is called @code{music}, the corresponding URL will be @code{rsync://host.example.org/music}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18214 +#: guix-git/doc/guix.texi:18576 #, fuzzy, no-wrap #| msgid "source-file-name" msgid "file-name" msgstr "source-file-name" #. type: table -#: guix-git/doc/guix.texi:18216 +#: guix-git/doc/guix.texi:18578 #, fuzzy #| msgid "Return the directory name of the store." msgid "Name of the directory being exported." msgstr "Renvoie le nom de répertoire du dépôt." #. type: table -#: guix-git/doc/guix.texi:18220 +#: guix-git/doc/guix.texi:18582 msgid "Comment associated with the module. Client user interfaces may display it when they obtain the list of available modules." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18221 -#, fuzzy, no-wrap -#| msgid "@code{respawn?} (default: @code{#t})" +#: guix-git/doc/guix.texi:18583 +#, no-wrap msgid "@code{read-only?} (default: @code{#t})" -msgstr "@code{respawn?} (par défaut : @code{#t})" +msgstr "@code{read-only?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18225 +#: guix-git/doc/guix.texi:18587 msgid "Whether or not client will be able to upload files. If this is false, the uploads will be authorized if permissions on the daemon side permit it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18226 -#, fuzzy, no-wrap -#| msgid "@code{chroot} (default: @code{#f})" +#: guix-git/doc/guix.texi:18588 +#, no-wrap msgid "@code{chroot?} (default: @code{#t})" -msgstr "@code{chroot} (par défaut : @code{#f})" +msgstr "@code{chroot?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18230 +#: guix-git/doc/guix.texi:18592 msgid "When this is true, the rsync daemon changes root to the module's directory before starting file transfers with the client. This improves security, but requires rsync to run as root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18231 +#: guix-git/doc/guix.texi:18593 #, no-wrap msgid "@code{timeout} (default: @code{300})" msgstr "@code{timeout} (par défaut : @code{300})" #. type: table -#: guix-git/doc/guix.texi:18234 +#: guix-git/doc/guix.texi:18596 #, fuzzy #| msgid "The time in seconds after which a process with no requests is killed." msgid "Idle time in seconds after which the daemon closes a connection with the client." msgstr "La durée en secondes après laquelle un processus sans requête sera tué." #. type: Plain text -#: guix-git/doc/guix.texi:18238 +#: guix-git/doc/guix.texi:18600 msgid "The @code{(gnu services syncthing)} module provides the following services:" msgstr "Le module @code{(gnu services syncthing)} fournit les services suivant :" #. type: cindex -#: guix-git/doc/guix.texi:18238 +#: guix-git/doc/guix.texi:18600 #, no-wrap msgid "syncthing" msgstr "syncthing" #. type: Plain text -#: guix-git/doc/guix.texi:18243 +#: guix-git/doc/guix.texi:18605 msgid "You might want a syncthing daemon if you have files between two or more computers and want to sync them in real time, safely protected from prying eyes." msgstr "Vous pourriez vouloir un démon syncthing si vous avez des fichiers sur plusieurs ordinateurs et souhaitez les synchroniser en temps réel, de manière sécurisée sans espionnage possible." #. type: deffn -#: guix-git/doc/guix.texi:18244 +#: guix-git/doc/guix.texi:18606 #, no-wrap msgid "{Scheme Variable} syncthing-service-type" msgstr "{Variable Scheme} syncthing-service-type" #. type: deffn -#: guix-git/doc/guix.texi:18248 +#: guix-git/doc/guix.texi:18610 msgid "This is the service type for the @uref{https://syncthing.net/, syncthing} daemon, The value for this service type is a @command{syncthing-configuration} record as in this example:" msgstr "C'est le type pour le démon @uref{https://syncthing.net/, syncthing}. La valeur de ce service est un enregistrement @command{syncthing-configuration} comme dans cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:18252 +#: guix-git/doc/guix.texi:18614 #, no-wrap msgid "" "(service syncthing-service-type\n" @@ -34064,114 +34732,114 @@ msgstr "" " (syncthing-configuration (user \"alice\")))\n" #. type: deffn -#: guix-git/doc/guix.texi:18255 +#: guix-git/doc/guix.texi:18617 msgid "See below for details about @code{syncthing-configuration}." msgstr "Voir plus pas pour trouver des détails à propos de @code{syncthing-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:18256 +#: guix-git/doc/guix.texi:18618 #, no-wrap msgid "{Data Type} syncthing-configuration" msgstr "{Type de données} syncthing-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18258 +#: guix-git/doc/guix.texi:18620 msgid "Data type representing the configuration for @code{syncthing-service-type}." msgstr "Type de données représentant la configuration de @code{syncthing-service}." #. type: item -#: guix-git/doc/guix.texi:18260 +#: guix-git/doc/guix.texi:18622 #, no-wrap msgid "@code{syncthing} (default: @var{syncthing})" msgstr "@code{syncthing} (par défaut : @var{syncthing})" #. type: table -#: guix-git/doc/guix.texi:18262 +#: guix-git/doc/guix.texi:18624 msgid "@code{syncthing} package to use." msgstr "Le paquet @code{syncthing} à utiliser." #. type: item -#: guix-git/doc/guix.texi:18263 +#: guix-git/doc/guix.texi:18625 #, no-wrap msgid "@code{arguments} (default: @var{'()})" msgstr "@code{arguments} (par défaut : @var{'()})" #. type: table -#: guix-git/doc/guix.texi:18265 +#: guix-git/doc/guix.texi:18627 msgid "List of command-line arguments passing to @code{syncthing} binary." msgstr "Liste d'arguments de la ligne de commande à passer au binaire @code{syncthing}." #. type: item -#: guix-git/doc/guix.texi:18266 +#: guix-git/doc/guix.texi:18628 #, no-wrap msgid "@code{logflags} (default: @var{0})" msgstr "@code{logflags} (par défaut : @var{0})" #. type: table -#: guix-git/doc/guix.texi:18269 +#: guix-git/doc/guix.texi:18631 msgid "Sum of logging flags, see @uref{https://docs.syncthing.net/users/syncthing.html#cmdoption-logflags, Syncthing documentation logflags}." msgstr "L'ensemble des drapeaux de journalisation, voir @uref{https://docs.syncthing.net/users/syncthing.html#cmdoption-logflags, logfiles sur la documentation de Syncthing}." #. type: item -#: guix-git/doc/guix.texi:18270 +#: guix-git/doc/guix.texi:18632 #, no-wrap msgid "@code{user} (default: @var{#f})" msgstr "@code{user} (par défaut : @var{#f})" #. type: table -#: guix-git/doc/guix.texi:18273 +#: guix-git/doc/guix.texi:18635 msgid "The user as which the Syncthing service is to be run. This assumes that the specified user exists." msgstr "L'utilisateur qui lance le service Syncthing. Cela suppose que l'utilisateur spécifié existe." #. type: item -#: guix-git/doc/guix.texi:18274 +#: guix-git/doc/guix.texi:18636 #, no-wrap msgid "@code{group} (default: @var{\"users\"})" msgstr "@code{group} (par défaut : @var{\"users\"})" #. type: table -#: guix-git/doc/guix.texi:18277 +#: guix-git/doc/guix.texi:18639 msgid "The group as which the Syncthing service is to be run. This assumes that the specified group exists." msgstr "Le groupe qui lance le service Syncthing. Cela suppose que le group spécifié existe." #. type: item -#: guix-git/doc/guix.texi:18278 +#: guix-git/doc/guix.texi:18640 #, no-wrap msgid "@code{home} (default: @var{#f})" msgstr "@code{home} (par défaut : @var{#f})" #. type: table -#: guix-git/doc/guix.texi:18281 +#: guix-git/doc/guix.texi:18643 msgid "Common configuration and data directory. The default configuration directory is @file{$HOME} of the specified Syncthing @code{user}." msgstr "Configuration et répertoires de données communs. Le répertoire de configuration par défaut est @file{$HOME} de l'utilisateur @code{user} de Syncthing." #. type: Plain text -#: guix-git/doc/guix.texi:18287 +#: guix-git/doc/guix.texi:18649 msgid "Furthermore, @code{(gnu services ssh)} provides the following services." msgstr "En plus, @code{(gnu services ssh)} fournit les services suivant." #. type: cindex -#: guix-git/doc/guix.texi:18287 guix-git/doc/guix.texi:18326 -#: guix-git/doc/guix.texi:35715 +#: guix-git/doc/guix.texi:18649 guix-git/doc/guix.texi:18688 +#: guix-git/doc/guix.texi:36205 #, no-wrap msgid "SSH" msgstr "SSH" #. type: cindex -#: guix-git/doc/guix.texi:18288 guix-git/doc/guix.texi:18327 -#: guix-git/doc/guix.texi:35716 +#: guix-git/doc/guix.texi:18650 guix-git/doc/guix.texi:18689 +#: guix-git/doc/guix.texi:36206 #, no-wrap msgid "SSH server" msgstr "Serveur SSH" #. type: deffn -#: guix-git/doc/guix.texi:18290 +#: guix-git/doc/guix.texi:18652 #, no-wrap msgid "{Scheme Procedure} lsh-service [#:host-key \"/etc/lsh/host-key\"] @" msgstr "{Procédure Scheme} lsh-service [#:host-key \"/etc/lsh/host-key\"] @" #. type: deffn -#: guix-git/doc/guix.texi:18299 +#: guix-git/doc/guix.texi:18661 msgid "[#:daemonic? #t] [#:interfaces '()] [#:port-number 22] @ [#:allow-empty-passwords? #f] [#:root-login? #f] @ [#:syslog-output? #t] [#:x11-forwarding? #t] @ [#:tcp/ip-forwarding? #t] [#:password-authentication? #t] @ [#:public-key-authentication? #t] [#:initialize? #t] Run the @command{lshd} program from @var{lsh} to listen on port @var{port-number}. @var{host-key} must designate a file containing the host key, and readable only by root." msgstr "" "[#:daemonic? #t] [#:interfaces '()] [#:port-number 22] @\n" @@ -34182,48 +34850,48 @@ msgstr "" "Lance le programme @command{lshd} de @var{lsh} pour écouter sur le port @var{port-number}. @var{host-key} doit désigner un fichier contenant la clef d'hôte et ne doit être lisible que par root." #. type: deffn -#: guix-git/doc/guix.texi:18305 +#: guix-git/doc/guix.texi:18667 msgid "When @var{daemonic?} is true, @command{lshd} will detach from the controlling terminal and log its output to syslogd, unless one sets @var{syslog-output?} to false. Obviously, it also makes lsh-service depend on existence of syslogd service. When @var{pid-file?} is true, @command{lshd} writes its PID to the file called @var{pid-file}." msgstr "Lorsque @var{daemonic?} est vrai, @command{lshd} se détachera du terminal qui le contrôle et enregistrera ses journaux avec syslogd, à moins que @var{syslog-output?} ne soit faux. Évidemment, cela rend aussi lsh-service dépendant de l'existence d'un service syslogd. Lorsque @var{pid-file?} est vrai, @command{lshd} écrit son PID dans le fichier @var{pid-file}." #. type: deffn -#: guix-git/doc/guix.texi:18309 +#: guix-git/doc/guix.texi:18671 msgid "When @var{initialize?} is true, automatically create the seed and host key upon service activation if they do not exist yet. This may take long and require interaction." msgstr "Lorsque @var{initialize?} est vrai, la graine et la clef d'hôte seront créés lors de l'activation du service s'ils n'existent pas encore. Cela peut prendre du temps et demande une interaction." #. type: deffn -#: guix-git/doc/guix.texi:18314 +#: guix-git/doc/guix.texi:18676 msgid "When @var{initialize?} is false, it is up to the user to initialize the randomness generator (@pxref{lsh-make-seed,,, lsh, LSH Manual}), and to create a key pair with the private key stored in file @var{host-key} (@pxref{lshd basics,,, lsh, LSH Manual})." msgstr "Lorsque @var{initialize?} est faux, c'est à l'utilisateur d'initialiser le générateur d'aléatoire (@pxref{lsh-make-seed,,, lsh, LSH Manual}) et de crée une paire de clefs dont la clef privée sera stockée dans le fichier @var{host-key} (@pxref{lshd basics,,, lsh, LSH Manual})." #. type: deffn -#: guix-git/doc/guix.texi:18318 +#: guix-git/doc/guix.texi:18680 msgid "When @var{interfaces} is empty, lshd listens for connections on all the network interfaces; otherwise, @var{interfaces} must be a list of host names or addresses." msgstr "Lorsque @var{interfaces} est vide, lshd écoute les connexions sur toutes les interfaces réseau ; autrement, @var{interfaces} doit être une liste de noms d'hôtes et d'adresses." #. type: deffn -#: guix-git/doc/guix.texi:18322 +#: guix-git/doc/guix.texi:18684 msgid "@var{allow-empty-passwords?} specifies whether to accept log-ins with empty passwords, and @var{root-login?} specifies whether to accept log-ins as root." msgstr "@var{allow-empty-passwords?} spécifie si les connexions avec des mots de passes vides sont acceptés et @var{root-login?} spécifie si la connexion en root est acceptée." #. type: deffn -#: guix-git/doc/guix.texi:18324 +#: guix-git/doc/guix.texi:18686 msgid "The other options should be self-descriptive." msgstr "Les autres options devraient être évidentes." #. type: deffn -#: guix-git/doc/guix.texi:18328 +#: guix-git/doc/guix.texi:18690 #, no-wrap msgid "{Scheme Variable} openssh-service-type" msgstr "{Variable Scheme} openssh-service-type" #. type: deffn -#: guix-git/doc/guix.texi:18332 +#: guix-git/doc/guix.texi:18694 msgid "This is the type for the @uref{http://www.openssh.org, OpenSSH} secure shell daemon, @command{sshd}. Its value must be an @code{openssh-configuration} record as in this example:" msgstr "C'est le type pour le démon ssh @uref{http://www.openssh.org, OpenSSH}, @command{sshd}. Sa valeur doit être un enregistrement @code{openssh-configuration} comme dans cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:18341 +#: guix-git/doc/guix.texi:18703 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -34243,17 +34911,17 @@ msgstr "" " (\"bob\" ,(local-file \"bob.pub\"))))))\n" #. type: deffn -#: guix-git/doc/guix.texi:18344 +#: guix-git/doc/guix.texi:18706 msgid "See below for details about @code{openssh-configuration}." msgstr "Voir plus bas pour trouver des détails sur @code{openssh-configuration}." #. type: deffn -#: guix-git/doc/guix.texi:18347 +#: guix-git/doc/guix.texi:18709 msgid "This service can be extended with extra authorized keys, as in this example:" msgstr "Ce service peut être étendu avec des clefs autorisées supplémentaires, comme dans cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:18352 +#: guix-git/doc/guix.texi:18714 #, no-wrap msgid "" "(service-extension openssh-service-type\n" @@ -34265,203 +34933,203 @@ msgstr "" " ,(local-file \"charlie.pub\")))))\n" #. type: deftp -#: guix-git/doc/guix.texi:18355 +#: guix-git/doc/guix.texi:18717 #, no-wrap msgid "{Data Type} openssh-configuration" msgstr "{Type de données} openssh-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18357 +#: guix-git/doc/guix.texi:18719 msgid "This is the configuration record for OpenSSH's @command{sshd}." msgstr "C'est l'enregistrement de la configuration de la commande @command{sshd} d'OpenSSH." #. type: item -#: guix-git/doc/guix.texi:18359 +#: guix-git/doc/guix.texi:18721 #, no-wrap msgid "@code{openssh} (default @var{openssh})" msgstr "@code{openssh} (par défaut : @var{openssh})" #. type: table -#: guix-git/doc/guix.texi:18361 +#: guix-git/doc/guix.texi:18723 msgid "The Openssh package to use." msgstr "Le paquet Openssh à utiliser." #. type: item -#: guix-git/doc/guix.texi:18362 +#: guix-git/doc/guix.texi:18724 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/sshd.pid\"})" msgstr "@code{pid-file} (par défaut : @code{\"/var/run/sshd.pid\"})" #. type: table -#: guix-git/doc/guix.texi:18364 +#: guix-git/doc/guix.texi:18726 msgid "Name of the file where @command{sshd} writes its PID." msgstr "Nom du fichier où @command{sshd} écrit son PID." #. type: item -#: guix-git/doc/guix.texi:18365 +#: guix-git/doc/guix.texi:18727 #, no-wrap msgid "@code{port-number} (default: @code{22})" msgstr "@code{port-number} (par défaut : @code{22})" #. type: table -#: guix-git/doc/guix.texi:18367 +#: guix-git/doc/guix.texi:18729 msgid "TCP port on which @command{sshd} listens for incoming connections." msgstr "Port TCP sur lequel @command{sshd} écoute les connexions entrantes." #. type: item -#: guix-git/doc/guix.texi:18368 +#: guix-git/doc/guix.texi:18730 #, no-wrap msgid "@code{permit-root-login} (default: @code{#f})" msgstr "@code{permit-root-login} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18373 +#: guix-git/doc/guix.texi:18735 msgid "This field determines whether and when to allow logins as root. If @code{#f}, root logins are disallowed; if @code{#t}, they are allowed. If it's the symbol @code{'prohibit-password}, then root logins are permitted but not with password-based authentication." msgstr "Ce champ détermine si et quand autoriser les connexions en root. Si la valeur est @code{#f}, les connexions en root sont désactivées ; si la valeur est @code{#t}, elles sont autorisées. S'il s'agit du symbole @code{'prohibit-password}, alors les connexions root sont autorisées mais pas par une authentification par mot de passe." #. type: item -#: guix-git/doc/guix.texi:18374 guix-git/doc/guix.texi:18535 +#: guix-git/doc/guix.texi:18736 guix-git/doc/guix.texi:18897 #, no-wrap msgid "@code{allow-empty-passwords?} (default: @code{#f})" msgstr "@code{allow-empty-passwords?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18377 +#: guix-git/doc/guix.texi:18739 msgid "When true, users with empty passwords may log in. When false, they may not." msgstr "Lorsque la valeur est vraie, les utilisateurs avec un mot de passe vide peuvent se connecter. Sinon, ils ne peuvent pas." #. type: item -#: guix-git/doc/guix.texi:18378 guix-git/doc/guix.texi:18538 +#: guix-git/doc/guix.texi:18740 guix-git/doc/guix.texi:18900 #, no-wrap msgid "@code{password-authentication?} (default: @code{#t})" msgstr "@code{password-authentication?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18381 +#: guix-git/doc/guix.texi:18743 msgid "When true, users may log in with their password. When false, they have other authentication methods." msgstr "Lorsque la valeur est vraie, les utilisateurs peuvent se connecter avec leur mot de passe. Sinon, ils doivent utiliser une autre méthode d'authentification." #. type: item -#: guix-git/doc/guix.texi:18382 +#: guix-git/doc/guix.texi:18744 #, no-wrap msgid "@code{public-key-authentication?} (default: @code{#t})" msgstr "@code{public-key-authentication?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18385 +#: guix-git/doc/guix.texi:18747 msgid "When true, users may log in using public key authentication. When false, users have to use other authentication method." msgstr "Lorsque la valeur est vraie, les utilisateurs peuvent se connecter avec leur clef publique. Sinon, les utilisateurs doivent utiliser une autre méthode d'authentification." #. type: table -#: guix-git/doc/guix.texi:18388 +#: guix-git/doc/guix.texi:18750 msgid "Authorized public keys are stored in @file{~/.ssh/authorized_keys}. This is used only by protocol version 2." msgstr "Les clefs publiques autorisées sont stockées dans @file{~/.ssh/authorized_keys}. Ce n'est utilisé que par le protocole version 2." #. type: item -#: guix-git/doc/guix.texi:18389 +#: guix-git/doc/guix.texi:18751 #, no-wrap msgid "@code{x11-forwarding?} (default: @code{#f})" msgstr "@code{x11-forwarding?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18393 +#: guix-git/doc/guix.texi:18755 msgid "When true, forwarding of X11 graphical client connections is enabled---in other words, @command{ssh} options @option{-X} and @option{-Y} will work." msgstr "Lorsque la valeur est vraie, le transfert de connexion du client graphique X11 est activé — en d'autre termes, les options @option{-X} et @option{-Y} de @command{ssh} fonctionneront." #. type: item -#: guix-git/doc/guix.texi:18394 +#: guix-git/doc/guix.texi:18756 #, no-wrap msgid "@code{allow-agent-forwarding?} (default: @code{#t})" msgstr "@code{allow-agent-forwarding?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18396 +#: guix-git/doc/guix.texi:18758 msgid "Whether to allow agent forwarding." msgstr "Indique s'il faut autoriser la redirection d'agent." #. type: item -#: guix-git/doc/guix.texi:18397 +#: guix-git/doc/guix.texi:18759 #, no-wrap msgid "@code{allow-tcp-forwarding?} (default: @code{#t})" msgstr "@code{allow-tcp-forwarding?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18399 +#: guix-git/doc/guix.texi:18761 msgid "Whether to allow TCP forwarding." msgstr "Indique s'il faut autoriser la redirection TCP." #. type: item -#: guix-git/doc/guix.texi:18400 +#: guix-git/doc/guix.texi:18762 #, no-wrap msgid "@code{gateway-ports?} (default: @code{#f})" msgstr "@code{gateway-ports?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18402 +#: guix-git/doc/guix.texi:18764 msgid "Whether to allow gateway ports." msgstr "Indique s'il faut autoriser les ports de passerelle." #. type: item -#: guix-git/doc/guix.texi:18403 +#: guix-git/doc/guix.texi:18765 #, no-wrap msgid "@code{challenge-response-authentication?} (default: @code{#f})" msgstr "@code{challenge-response-authentication?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18406 +#: guix-git/doc/guix.texi:18768 msgid "Specifies whether challenge response authentication is allowed (e.g.@: via PAM)." msgstr "Spécifie si l'authentification par défi est autorisée (p.@: ex.@: via PAM)." #. type: item -#: guix-git/doc/guix.texi:18407 +#: guix-git/doc/guix.texi:18769 #, no-wrap msgid "@code{use-pam?} (default: @code{#t})" msgstr "@code{use-pam?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18413 +#: guix-git/doc/guix.texi:18775 msgid "Enables the Pluggable Authentication Module interface. If set to @code{#t}, this will enable PAM authentication using @code{challenge-response-authentication?} and @code{password-authentication?}, in addition to PAM account and session module processing for all authentication types." msgstr "Active l'interface avec le module d'authentification greffable, PAM. Si la valeur est @code{#t}, cela activera l'authentification PAM avec @code{challenge-response-authentication?} et @code{password-authentication?}, en plus des modules de compte et de session de PAM pour tous les types d'authentification." #. type: table -#: guix-git/doc/guix.texi:18418 +#: guix-git/doc/guix.texi:18780 msgid "Because PAM challenge response authentication usually serves an equivalent role to password authentication, you should disable either @code{challenge-response-authentication?} or @code{password-authentication?}." msgstr "Comme l'authentification par défi de PAM sert généralement un rôle équivalent à l'authentification par mot de passe, vous devriez désactiver soit @code{challenge-response-authentication?}, soit @code{password-authentication?}." #. type: item -#: guix-git/doc/guix.texi:18419 +#: guix-git/doc/guix.texi:18781 #, no-wrap msgid "@code{print-last-log?} (default: @code{#t})" msgstr "@code{print-last-log?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18422 +#: guix-git/doc/guix.texi:18784 msgid "Specifies whether @command{sshd} should print the date and time of the last user login when a user logs in interactively." msgstr "Spécifie si @command{sshd} devrait afficher la date et l'heure de dernière connexion des utilisateurs lorsqu'un utilisateur se connecte de manière interactive." #. type: item -#: guix-git/doc/guix.texi:18423 +#: guix-git/doc/guix.texi:18785 #, no-wrap msgid "@code{subsystems} (default: @code{'((\"sftp\" \"internal-sftp\"))})" msgstr "@code{subsystems} (par défaut : @code{'((\"sftp\" \"internal-sftp\"))})" #. type: table -#: guix-git/doc/guix.texi:18425 +#: guix-git/doc/guix.texi:18787 msgid "Configures external subsystems (e.g.@: file transfer daemon)." msgstr "Configure les sous-systèmes externes (p.@: ex.@: le démon de transfert de fichiers)." #. type: table -#: guix-git/doc/guix.texi:18429 +#: guix-git/doc/guix.texi:18791 msgid "This is a list of two-element lists, each of which containing the subsystem name and a command (with optional arguments) to execute upon subsystem request." msgstr "C'est une liste de paires, composées chacune du nom du sous-système et d'une commande (avec éventuellement des arguments) à exécuter à la demande du sous-système." #. type: table -#: guix-git/doc/guix.texi:18432 +#: guix-git/doc/guix.texi:18794 msgid "The command @command{internal-sftp} implements an in-process SFTP server. Alternatively, one can specify the @command{sftp-server} command:" msgstr "La commande @command{internal-sftp} met en œuvre un serveur SFTP en cours de traitement. On peut aussi spécifier la commande @command{sftp-server} :" #. type: lisp -#: guix-git/doc/guix.texi:18437 +#: guix-git/doc/guix.texi:18799 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -34475,28 +35143,28 @@ msgstr "" " `((\"sftp\" ,(file-append openssh \"/libexec/sftp-server\"))))))\n" #. type: item -#: guix-git/doc/guix.texi:18439 +#: guix-git/doc/guix.texi:18801 #, no-wrap msgid "@code{accepted-environment} (default: @code{'()})" msgstr "@code{accepted-environment} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18441 +#: guix-git/doc/guix.texi:18803 msgid "List of strings describing which environment variables may be exported." msgstr "Liste de chaînes de caractères qui décrivent les variables d'environnement qui peuvent être exportées." #. type: table -#: guix-git/doc/guix.texi:18444 +#: guix-git/doc/guix.texi:18806 msgid "Each string gets on its own line. See the @code{AcceptEnv} option in @code{man sshd_config}." msgstr "Chaque chaîne a sa propre ligne. Voir l'option @code{AcceptEnv} dans @code{man sshd_config}." #. type: table -#: guix-git/doc/guix.texi:18449 +#: guix-git/doc/guix.texi:18811 msgid "This example allows ssh-clients to export the @env{COLORTERM} variable. It is set by terminal emulators, which support colors. You can use it in your shell's resource file to enable colors for the prompt and commands if this variable is set." msgstr "Cet exemple permet aux clients ssh d'exporter la variable @env{COLORTERM}. Elle est initialisée par les émulateurs de terminaux qui supportent les couleurs. Vous pouvez l'utiliser dans votre fichier de ressource de votre shell pour activer les couleurs sur la ligne de commande si cette variable est initialisée." #. type: lisp -#: guix-git/doc/guix.texi:18454 +#: guix-git/doc/guix.texi:18816 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -34508,30 +35176,30 @@ msgstr "" " (accepted-environment '(\"COLORTERM\"))))\n" #. type: item -#: guix-git/doc/guix.texi:18456 +#: guix-git/doc/guix.texi:18818 #, no-wrap msgid "@code{authorized-keys} (default: @code{'()})" msgstr "@code{authorized-keys} (par défaut : @code{'()})" #. type: cindex -#: guix-git/doc/guix.texi:18457 +#: guix-git/doc/guix.texi:18819 #, no-wrap msgid "authorized keys, SSH" msgstr "clefs autorisées, SSH" #. type: cindex -#: guix-git/doc/guix.texi:18458 +#: guix-git/doc/guix.texi:18820 #, no-wrap msgid "SSH authorized keys" msgstr "SSH, clefs autorisées" #. type: table -#: guix-git/doc/guix.texi:18462 +#: guix-git/doc/guix.texi:18824 msgid "This is the list of authorized keys. Each element of the list is a user name followed by one or more file-like objects that represent SSH public keys. For example:" msgstr "C'est la liste des clefs autorisées. Chaque élément de la liste est un nom d'utilisateur suivit d'un ou plusieurs objets simili-fichiers qui représentent les clefs publiques SSH. Par exemple :" #. type: lisp -#: guix-git/doc/guix.texi:18469 +#: guix-git/doc/guix.texi:18831 #, no-wrap msgid "" "(openssh-configuration\n" @@ -34547,45 +35215,45 @@ msgstr "" " (\"root\" ,(local-file \"rekado.pub\") ,(local-file \"chris.pub\")))))\n" #. type: table -#: guix-git/doc/guix.texi:18474 +#: guix-git/doc/guix.texi:18836 msgid "registers the specified public keys for user accounts @code{rekado}, @code{chris}, and @code{root}." msgstr "enregistre les clefs publiques spécifiées pour les comptes @code{rekado}, @code{chris} et @code{root}." #. type: table -#: guix-git/doc/guix.texi:18477 +#: guix-git/doc/guix.texi:18839 msgid "Additional authorized keys can be specified @i{via} @code{service-extension}." msgstr "Des clefs autorisées supplémentaires peuvent être spécifiées via @code{service-extension}." #. type: table -#: guix-git/doc/guix.texi:18480 +#: guix-git/doc/guix.texi:18842 msgid "Note that this does @emph{not} interfere with the use of @file{~/.ssh/authorized_keys}." msgstr "Remarquez que cela n'interfère @emph{pas} avec l'utilisation de @file{~/.ssh/authorized_keys}." #. type: item -#: guix-git/doc/guix.texi:18481 guix-git/doc/guix.texi:18912 +#: guix-git/doc/guix.texi:18843 guix-git/doc/guix.texi:19274 #, no-wrap msgid "@code{log-level} (default: @code{'info})" msgstr "@code{log-level} (par défaut : @code{'info})" #. type: table -#: guix-git/doc/guix.texi:18485 +#: guix-git/doc/guix.texi:18847 msgid "This is a symbol specifying the logging level: @code{quiet}, @code{fatal}, @code{error}, @code{info}, @code{verbose}, @code{debug}, etc. See the man page for @file{sshd_config} for the full list of level names." msgstr "C'est le symbole qui spécifie le niveau de journalisation : @code{quiet}, @code{fatal}, @code{error}, @code{info}, @code{verbose}, @code{debug}, etc. Voir la page de manuel de @file{sshd_config} pour trouver la liste complète des noms de niveaux." #. type: item -#: guix-git/doc/guix.texi:18486 guix-git/doc/guix.texi:21328 -#: guix-git/doc/guix.texi:26469 +#: guix-git/doc/guix.texi:18848 guix-git/doc/guix.texi:21690 +#: guix-git/doc/guix.texi:26806 #, no-wrap msgid "@code{extra-content} (default: @code{\"\"})" msgstr "@code{extra-content} (par défaut : @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:18491 +#: guix-git/doc/guix.texi:18853 msgid "This field can be used to append arbitrary text to the configuration file. It is especially useful for elaborate configurations that cannot be expressed otherwise. This configuration, for example, would generally disable root logins, but permit them from one specific IP address:" msgstr "Ce champ peut être utilisé pour ajouter un texte arbitraire au fichier de configuration. C'est particulièrement utile pour des configurations élaborées qui ne pourraient pas être exprimées autrement. Cette configuration, par exemple, désactiverait les connexions en root, mais les permettrait depuis une adresse IP spécifique :" #. type: lisp -#: guix-git/doc/guix.texi:18497 +#: guix-git/doc/guix.texi:18859 #, no-wrap msgid "" "(openssh-configuration\n" @@ -34599,23 +35267,23 @@ msgstr "" " PermitRootLogin yes\"))\n" #. type: deffn -#: guix-git/doc/guix.texi:18502 +#: guix-git/doc/guix.texi:18864 #, no-wrap msgid "{Scheme Procedure} dropbear-service [@var{config}]" msgstr "{Procédure Scheme} dropbear-service [@var{config}]" #. type: deffn -#: guix-git/doc/guix.texi:18506 +#: guix-git/doc/guix.texi:18868 msgid "Run the @uref{https://matt.ucc.asn.au/dropbear/dropbear.html,Dropbear SSH daemon} with the given @var{config}, a @code{} object." msgstr "Lance le @uref{https://matt.ucc.asn.au/dropbear/dropbear.html,démon SSH Dropbear} avec la configuration @var{config} donnée, un objet @code{}." #. type: deffn -#: guix-git/doc/guix.texi:18509 +#: guix-git/doc/guix.texi:18871 msgid "For example, to specify a Dropbear service listening on port 1234, add this call to the operating system's @code{services} field:" msgstr "Par exemple, pour spécifier un service Dropbear qui écoute sur le port 1234, ajoutez cet appel au champ @code{services} de votre système d'exploitation :" #. type: lisp -#: guix-git/doc/guix.texi:18513 +#: guix-git/doc/guix.texi:18875 #, no-wrap msgid "" "(dropbear-service (dropbear-configuration\n" @@ -34625,110 +35293,110 @@ msgstr "" " (port-number 1234)))\n" #. type: deftp -#: guix-git/doc/guix.texi:18516 +#: guix-git/doc/guix.texi:18878 #, no-wrap msgid "{Data Type} dropbear-configuration" msgstr "{Type de données} dropbear-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18518 +#: guix-git/doc/guix.texi:18880 msgid "This data type represents the configuration of a Dropbear SSH daemon." msgstr "Ce type de données représente la configuration d'un démon SSH Dropbear." #. type: item -#: guix-git/doc/guix.texi:18520 +#: guix-git/doc/guix.texi:18882 #, no-wrap msgid "@code{dropbear} (default: @var{dropbear})" msgstr "@code{dropbear} (par défaut : @var{dropbear})" #. type: table -#: guix-git/doc/guix.texi:18522 +#: guix-git/doc/guix.texi:18884 msgid "The Dropbear package to use." msgstr "Le paquet Dropbear à utiliser." #. type: item -#: guix-git/doc/guix.texi:18523 +#: guix-git/doc/guix.texi:18885 #, no-wrap msgid "@code{port-number} (default: 22)" msgstr "@code{port-number} (par défaut : 22)" #. type: table -#: guix-git/doc/guix.texi:18525 +#: guix-git/doc/guix.texi:18887 msgid "The TCP port where the daemon waits for incoming connections." msgstr "Le port TCP sur lequel le démon attend des connexions entrantes." #. type: item -#: guix-git/doc/guix.texi:18526 +#: guix-git/doc/guix.texi:18888 #, no-wrap msgid "@code{syslog-output?} (default: @code{#t})" msgstr "@code{syslog-output?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18528 +#: guix-git/doc/guix.texi:18890 msgid "Whether to enable syslog output." msgstr "Indique s'il faut activer la sortie vers syslog." #. type: item -#: guix-git/doc/guix.texi:18529 +#: guix-git/doc/guix.texi:18891 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/dropbear.pid\"})" msgstr "@code{pid-file} (par défaut : @code{\"/var/run/dropbear.pid\"})" #. type: table -#: guix-git/doc/guix.texi:18531 +#: guix-git/doc/guix.texi:18893 msgid "File name of the daemon's PID file." msgstr "Nom du fichier de PID du démon." #. type: item -#: guix-git/doc/guix.texi:18532 +#: guix-git/doc/guix.texi:18894 #, no-wrap msgid "@code{root-login?} (default: @code{#f})" msgstr "@code{root-login?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18534 +#: guix-git/doc/guix.texi:18896 msgid "Whether to allow @code{root} logins." msgstr "Indique s'il faut autoriser les connexions en @code{root}." #. type: table -#: guix-git/doc/guix.texi:18537 +#: guix-git/doc/guix.texi:18899 msgid "Whether to allow empty passwords." msgstr "Indique s'il faut autoriser les mots de passes vides." #. type: table -#: guix-git/doc/guix.texi:18540 +#: guix-git/doc/guix.texi:18902 msgid "Whether to enable password-based authentication." msgstr "Indique s'il faut autoriser l'authentification par mot de passe." #. type: cindex -#: guix-git/doc/guix.texi:18543 +#: guix-git/doc/guix.texi:18905 #, no-wrap msgid "AutoSSH" msgstr "AutoSSH" #. type: deffn -#: guix-git/doc/guix.texi:18544 +#: guix-git/doc/guix.texi:18906 #, no-wrap msgid "{Scheme Variable} autossh-service-type" msgstr "{Variable Scheme} autossh-service-type" #. type: deffn -#: guix-git/doc/guix.texi:18552 +#: guix-git/doc/guix.texi:18914 msgid "This is the type for the @uref{https://www.harding.motd.ca/autossh, AutoSSH} program that runs a copy of @command{ssh} and monitors it, restarting it as necessary should it die or stop passing traffic. AutoSSH can be run manually from the command-line by passing arguments to the binary @command{autossh} from the package @code{autossh}, but it can also be run as a Guix service. This latter use case is documented here." msgstr "C'est le type du programme @uref{https://www.harding.motd.ca/autossh, AutoSSH} qui exécute une copie de @command{ssh} et la surveille, en la redémarrant si nécessaire si elle meurt ou arrête le trafic passant. AutoSSH peut être exécuté manuellement à partir de la ligne de commande en passant des arguments au binaire @command{autossh} du paquet @code{autossh}, mais peut aussi être exécuté comme un service Guix. Ce dernier cas d'utilisation est documenté ici." #. type: deffn -#: guix-git/doc/guix.texi:18556 +#: guix-git/doc/guix.texi:18918 msgid "AutoSSH can be used to forward local traffic to a remote machine using an SSH tunnel, and it respects the @file{~/.ssh/config} of the user it is run as." msgstr "AutoSSH peut être utilisé pour transférer le trafic local vers une machine distante en utilisant un tunnel SSH, et il respecte le @file{~/.ssh/config} de l'utilisateur sous lequel il est exécuté." #. type: deffn -#: guix-git/doc/guix.texi:18561 +#: guix-git/doc/guix.texi:18923 msgid "For example, to specify a service running autossh as the user @code{pino} and forwarding all local connections to port @code{8081} to @code{remote:8081} using an SSH tunnel, add this call to the operating system's @code{services} field:" msgstr "Par exemple, pour spécifier un service exécutant autossh comme utilisateur·rice @code{pino} et transférant toutes les connexions locales au port @code{8081} vers @code{remote:8081} en utilisant un tunnel SSH, ajoutez cet appel au champ @code{services} du système d'exploitation :" #. type: lisp -#: guix-git/doc/guix.texi:18567 +#: guix-git/doc/guix.texi:18929 #, no-wrap msgid "" "(service autossh-service-type\n" @@ -34742,139 +35410,139 @@ msgstr "" " (ssh-options (list \"-T\" \"-N\" \"-L\" \"8081:localhost:8081\" \"remote.net\"))))\n" #. type: deftp -#: guix-git/doc/guix.texi:18570 +#: guix-git/doc/guix.texi:18932 #, no-wrap msgid "{Data Type} autossh-configuration" msgstr "{Type de données} autossh-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18572 +#: guix-git/doc/guix.texi:18934 msgid "This data type represents the configuration of an AutoSSH service." msgstr "Ce type de données représente la configuration du service AutoSSH." #. type: item -#: guix-git/doc/guix.texi:18575 +#: guix-git/doc/guix.texi:18937 #, no-wrap msgid "@code{user} (default @code{\"autossh\"})" msgstr "@code{user} (par défaut : @code{\"autossh\"})" #. type: table -#: guix-git/doc/guix.texi:18578 +#: guix-git/doc/guix.texi:18940 msgid "The user as which the AutoSSH service is to be run. This assumes that the specified user exists." msgstr "L'utilisateur·rice en tant que responsable du service AutoSSH. Cela suppose que l'utilisateur spécifié existe." #. type: item -#: guix-git/doc/guix.texi:18579 +#: guix-git/doc/guix.texi:18941 #, no-wrap msgid "@code{poll} (default @code{600})" msgstr "@code{poll} (par défaut : @code{600})" #. type: table -#: guix-git/doc/guix.texi:18581 +#: guix-git/doc/guix.texi:18943 msgid "Specifies the connection poll time in seconds." msgstr "Spécifie le temps de sondage de la connexion en secondes." #. type: item -#: guix-git/doc/guix.texi:18582 +#: guix-git/doc/guix.texi:18944 #, no-wrap msgid "@code{first-poll} (default @code{#f})" msgstr "@code{first-poll} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18588 +#: guix-git/doc/guix.texi:18950 msgid "Specifies how many seconds AutoSSH waits before the first connection test. After this first test, polling is resumed at the pace defined in @code{poll}. When set to @code{#f}, the first poll is not treated specially and will also use the connection poll specified in @code{poll}." msgstr "Indique le nombre de secondes que l'AutoSSH attend avant le premier test de connexion. Après ce premier test, le vote reprend au rythme défini dans @code{poll}. Lorsqu'il est défini à @code{#f}, le premier sondage n'est pas traité spécialement et utilisera également le sondage de connexion spécifié dans @code{poll}." #. type: item -#: guix-git/doc/guix.texi:18589 +#: guix-git/doc/guix.texi:18951 #, no-wrap msgid "@code{gate-time} (default @code{30})" msgstr "@code{gate-time} (par défaut : @code{30})" #. type: table -#: guix-git/doc/guix.texi:18592 +#: guix-git/doc/guix.texi:18954 msgid "Specifies how many seconds an SSH connection must be active before it is considered successful." msgstr "Spécifie combien de secondes une connexion SSH doit être active avant qu'elle soit considérée comme réussie." #. type: item -#: guix-git/doc/guix.texi:18593 +#: guix-git/doc/guix.texi:18955 #, no-wrap msgid "@code{log-level} (default @code{1})" msgstr "@code{log-level} (par défaut : @code{1})" #. type: table -#: guix-git/doc/guix.texi:18596 +#: guix-git/doc/guix.texi:18958 msgid "The log level, corresponding to the levels used by syslog---so @code{0} is the most silent while @code{7} is the chattiest." msgstr "Le niveau du log, correspondant aux niveaux utilisés par syslog---donc @code{0} est le plus silencieux tandis que @code{7} est le plus bavard." #. type: item -#: guix-git/doc/guix.texi:18597 +#: guix-git/doc/guix.texi:18959 #, no-wrap msgid "@code{max-start} (default @code{#f})" msgstr "@code{max-start} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18600 +#: guix-git/doc/guix.texi:18962 msgid "The maximum number of times SSH may be (re)started before AutoSSH exits. When set to @code{#f}, no maximum is configured and AutoSSH may restart indefinitely." msgstr "Le nombre maximum de fois que SSH peut être (re)démarré avant la sortie d'AutoSSH. Lorsqu'il est défini sur @code{#f}, aucun maximum n'est configuré et AutoSSH peut redémarrer indéfiniment." #. type: item -#: guix-git/doc/guix.texi:18601 +#: guix-git/doc/guix.texi:18963 #, no-wrap msgid "@code{message} (default @code{\"\"})" msgstr "@code{message} (par défaut : @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:18603 +#: guix-git/doc/guix.texi:18965 msgid "The message to append to the echo message sent when testing connections." msgstr "Le message à ajouter à celui de echo envoyé lors du test des connexions." #. type: item -#: guix-git/doc/guix.texi:18604 +#: guix-git/doc/guix.texi:18966 #, no-wrap msgid "@code{port} (default @code{\"0\"})" msgstr "@code{port} (par défaut : @code{\"0\"})" #. type: table -#: guix-git/doc/guix.texi:18614 +#: guix-git/doc/guix.texi:18976 msgid "The ports used for monitoring the connection. When set to @code{\"0\"}, monitoring is disabled. When set to @code{\"@var{n}\"} where @var{n} is a positive integer, ports @var{n} and @var{n}+1 are used for monitoring the connection, such that port @var{n} is the base monitoring port and @code{n+1} is the echo port. When set to @code{\"@var{n}:@var{m}\"} where @var{n} and @var{m} are positive integers, the ports @var{n} and @var{m} are used for monitoring the connection, such that port @var{n} is the base monitoring port and @var{m} is the echo port." msgstr "Les ports utilisés pour la surveillance de la connexion. Lorsqu'il est défini sur @code{\"0\"}, la surveillance est désactivée. Lorsqu'il est défini sur @code{\"@var{n}\"} où @var{n} est un entier positif, les ports @var{n} et @var{n}+1 sont utilisés pour surveiller la connexion, de sorte que le port @var{n} est le port de surveillance de base et @code{n+1} est le port d'echo. Lorsqu'ils sont définis sur @code{\"@var{n}:@var{m}\"} où @var{n} et @var{m} sont des entiers positifs, les ports @var{n} et @var{m} sont utilisés pour surveiller la connexion, de sorte que le port @var{n} est le port de surveillance de base et @var{m} est le port d'echo." #. type: item -#: guix-git/doc/guix.texi:18615 +#: guix-git/doc/guix.texi:18977 #, no-wrap msgid "@code{ssh-options} (default @code{'()})" msgstr "@code{ssh-options} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18619 +#: guix-git/doc/guix.texi:18981 msgid "The list of command-line arguments to pass to @command{ssh} when it is run. Options @option{-f} and @option{-M} are reserved for AutoSSH and may cause undefined behaviour." msgstr "La liste des arguments de la ligne de commande à passer à @command{ssh} lorsqu'elle est exécutée. Les options @option{-f} et @option{-M} sont réservées à AutoSSH et peuvent provoquer un comportement indéfini." #. type: cindex -#: guix-git/doc/guix.texi:18623 +#: guix-git/doc/guix.texi:18985 #, no-wrap msgid "WebSSH" msgstr "WebSSH" #. type: deffn -#: guix-git/doc/guix.texi:18624 +#: guix-git/doc/guix.texi:18986 #, no-wrap msgid "{Scheme Variable} webssh-service-type" msgstr "{Variable Scheme} webssh-service-type" #. type: deffn -#: guix-git/doc/guix.texi:18630 +#: guix-git/doc/guix.texi:18992 msgid "This is the type for the @uref{https://webssh.huashengdun.org/, WebSSH} program that runs a web SSH client. WebSSH can be run manually from the command-line by passing arguments to the binary @command{wssh} from the package @code{webssh}, but it can also be run as a Guix service. This latter use case is documented here." msgstr "C'est le type du programme @uref{https://webssh.huashengdun.org/, WebSSH} qui exécute un client web SSH. WebSSH peut être exécuté manuellement à partir de la ligne de commande en passant des arguments au binaire @command{wssh} du paquet @code{webssh}, mais il peut aussi être exécuté comme un service Guix. Ce dernier cas d'utilisation est documenté ici." #. type: deffn -#: guix-git/doc/guix.texi:18636 +#: guix-git/doc/guix.texi:18998 msgid "For example, to specify a service running WebSSH on loopback interface on port @code{8888} with reject policy with a list of allowed to connection hosts, and NGINX as a reverse-proxy to this service listening for HTTPS connection, add this call to the operating system's @code{services} field:" msgstr "Par exemple, pour spécifier un service exécutant WebSSH sur l'interface de bouclage sur le port @code{8888} avec une politique de rejet avec une liste des hôtes autorisés à se connecter, et NGINX comme reverse-proxy de ce service écoutant la connexion HTTPS, ajouter cet appel au champ @code{services} du système d'exploitation :" #. type: lisp -#: guix-git/doc/guix.texi:18644 +#: guix-git/doc/guix.texi:19006 #, no-wrap msgid "" "(service webssh-service-type\n" @@ -34894,7 +35562,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:18660 +#: guix-git/doc/guix.texi:19022 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -34930,128 +35598,128 @@ msgstr "" " (nginx-server-configuration-locations %webssh-configuration-nginx))))))))\n" #. type: deftp -#: guix-git/doc/guix.texi:18663 +#: guix-git/doc/guix.texi:19025 #, no-wrap msgid "{Data Type} webssh-configuration" msgstr "{Type de données} webssh-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18665 +#: guix-git/doc/guix.texi:19027 msgid "Data type representing the configuration for @code{webssh-service}." msgstr "Type de données représentant la configuration pour @code{webssh-service}." #. type: item -#: guix-git/doc/guix.texi:18667 +#: guix-git/doc/guix.texi:19029 #, no-wrap msgid "@code{package} (default: @var{webssh})" msgstr "@code{package} (par défaut : @var{webssh})" #. type: table -#: guix-git/doc/guix.texi:18669 +#: guix-git/doc/guix.texi:19031 msgid "@code{webssh} package to use." msgstr "Le paquet @code{webssh} à utiliser." #. type: item -#: guix-git/doc/guix.texi:18670 +#: guix-git/doc/guix.texi:19032 #, no-wrap msgid "@code{user-name} (default: @var{\"webssh\"})" msgstr "@code{user-name} (par défaut : @var{\"webssh\"})" #. type: table -#: guix-git/doc/guix.texi:18673 +#: guix-git/doc/guix.texi:19035 msgid "User name or user ID that file transfers to and from that module should take place." msgstr "Le nom ou l'identifiant de l'utilisateur·rice qui transfère le fichier vers et depuis ce module doit avoir lieu." #. type: item -#: guix-git/doc/guix.texi:18674 +#: guix-git/doc/guix.texi:19036 #, no-wrap msgid "@code{group-name} (default: @var{\"webssh\"})" msgstr "@code{group-name} (par défaut : @var{\"webssh\"})" #. type: item -#: guix-git/doc/guix.texi:18677 +#: guix-git/doc/guix.texi:19039 #, no-wrap msgid "@code{address} (default: @var{#f})" msgstr "@code{address} (par défaut : @var{#f})" #. type: table -#: guix-git/doc/guix.texi:18679 +#: guix-git/doc/guix.texi:19041 msgid "IP address on which @command{webssh} listens for incoming connections." msgstr "Adresse IP sur laquelle @command{webssh} écoute les connexions entrantes." #. type: item -#: guix-git/doc/guix.texi:18680 +#: guix-git/doc/guix.texi:19042 #, no-wrap msgid "@code{port} (default: @var{8888})" msgstr "@code{port} (par défaut : @var{8888})" #. type: table -#: guix-git/doc/guix.texi:18682 +#: guix-git/doc/guix.texi:19044 msgid "TCP port on which @command{webssh} listens for incoming connections." msgstr "Port TCP sur lequel @command{webssh} écoute les connexions entrantes." #. type: item -#: guix-git/doc/guix.texi:18683 +#: guix-git/doc/guix.texi:19045 #, no-wrap msgid "@code{policy} (default: @var{#f})" msgstr "@code{policy} (par défaut : @var{#f})" #. type: table -#: guix-git/doc/guix.texi:18685 +#: guix-git/doc/guix.texi:19047 msgid "Connection policy. @var{reject} policy requires to specify @var{known-hosts}." msgstr "Politique de connexion. La politique de @var{reject} nécessite de spécifier @var{known-hosts}." #. type: item -#: guix-git/doc/guix.texi:18686 +#: guix-git/doc/guix.texi:19048 #, no-wrap msgid "@code{known-hosts} (default: @var{'()})" msgstr "@code{known-hosts} (par défaut : @var{'()})" #. type: table -#: guix-git/doc/guix.texi:18688 +#: guix-git/doc/guix.texi:19050 msgid "List of hosts which allowed for SSH connection from @command{webssh}." msgstr "Liste des hôtes qui ont permis une connexion SSH à partir de @command{webssh}." #. type: item -#: guix-git/doc/guix.texi:18689 +#: guix-git/doc/guix.texi:19051 #, no-wrap msgid "@code{log-file} (default: @file{\"/var/log/webssh.log\"})" msgstr "@code{log-file} (par défaut : @code{\"/var/log/webssh.log\"})" #. type: table -#: guix-git/doc/guix.texi:18691 +#: guix-git/doc/guix.texi:19053 msgid "Name of the file where @command{webssh} writes its log file." msgstr "Nom du fichier où @command{webssh} écrit son fichier de journal." #. type: item -#: guix-git/doc/guix.texi:18692 +#: guix-git/doc/guix.texi:19054 #, no-wrap msgid "@code{log-level} (default: @var{#f})" msgstr "@code{log-level} (par défaut : @var{#f})" #. type: table -#: guix-git/doc/guix.texi:18694 +#: guix-git/doc/guix.texi:19056 msgid "Logging level." msgstr "Niveau d'enregistrement." #. type: defvr -#: guix-git/doc/guix.texi:18698 +#: guix-git/doc/guix.texi:19060 #, no-wrap msgid "{Scheme Variable} %facebook-host-aliases" msgstr "{Variable Scheme} %facebook-host-aliases" #. type: defvr -#: guix-git/doc/guix.texi:18704 +#: guix-git/doc/guix.texi:19066 msgid "This variable contains a string for use in @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). Each line contains a entry that maps a known server name of the Facebook on-line service---e.g., @code{www.facebook.com}---to the local host---@code{127.0.0.1} or its IPv6 equivalent, @code{::1}." msgstr "Cette variable contient une chaîne de caractères à utiliser dans @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). Chaque ligne contient une entrée qui fait correspondre les noms des serveurs connus du service en ligne Facebook — p.@: ex.@: @code{www.facebook.com} — à l'hôte local — @code{127.0.0.1} ou son équivalent en IPv6, @code{::1}." #. type: defvr -#: guix-git/doc/guix.texi:18708 +#: guix-git/doc/guix.texi:19070 msgid "This variable is typically used in the @code{hosts-file} field of an @code{operating-system} declaration (@pxref{operating-system Reference, @file{/etc/hosts}}):" msgstr "Cette variable est typiquement utilisée dans le champ @code{hosts-file} d'une déclaration @code{operating-system} (@pxref{operating-system Reference, @file{/etc/hosts}}) :" #. type: lisp -#: guix-git/doc/guix.texi:18721 +#: guix-git/doc/guix.texi:19083 #, no-wrap msgid "" "(operating-system\n" @@ -35075,176 +35743,176 @@ msgstr "" " %facebook-host-aliases))))\n" #. type: defvr -#: guix-git/doc/guix.texi:18725 +#: guix-git/doc/guix.texi:19087 msgid "This mechanism can prevent programs running locally, such as Web browsers, from accessing Facebook." msgstr "Ce mécanisme peut éviter que des programmes qui tournent localement, comme des navigateurs Web, ne se connectent à Facebook." #. type: Plain text -#: guix-git/doc/guix.texi:18728 +#: guix-git/doc/guix.texi:19090 msgid "The @code{(gnu services avahi)} provides the following definition." msgstr "Le module @code{(gnu services avahi)} fourni la définition suivante." #. type: defvr -#: guix-git/doc/guix.texi:18729 +#: guix-git/doc/guix.texi:19091 #, no-wrap msgid "{Scheme Variable} avahi-service-type" msgstr "{Variable Scheme} avahi-service-type" #. type: defvr -#: guix-git/doc/guix.texi:18734 +#: guix-git/doc/guix.texi:19096 msgid "This is the service that runs @command{avahi-daemon}, a system-wide mDNS/DNS-SD responder that allows for service discovery and ``zero-configuration'' host name lookups (see @uref{https://avahi.org/}). Its value must be an @code{avahi-configuration} record---see below." msgstr "C'est le service qui lance @command{avahi-daemon}, un service système qui répond aux requêtes mDNS/DNS-SD qui permet la découverte de services et la recherche de nom en « zéro configuration » (voir @uref{https://avahi.org/}). Sa valeur doit être un enregistrement @code{avahi-configuration} — voir plus bas." #. type: defvr -#: guix-git/doc/guix.texi:18739 +#: guix-git/doc/guix.texi:19101 msgid "This service extends the name service cache daemon (nscd) so that it can resolve @code{.local} host names using @uref{https://0pointer.de/lennart/projects/nss-mdns/, nss-mdns}. @xref{Name Service Switch}, for information on host name resolution." msgstr "Ce service étend le démon de cache de services de noms (nscd) pour qu'il puisse résoudre les noms d'hôtes en @code{.local} avec @uref{https://0pointer.de/lennart/projects/nss-mdns/, nss-mdns}. @xref{Name Service Switch}, pour plus d'informations sur la résolution des noms d'hôte." #. type: defvr -#: guix-git/doc/guix.texi:18742 +#: guix-git/doc/guix.texi:19104 msgid "Additionally, add the @var{avahi} package to the system profile so that commands such as @command{avahi-browse} are directly usable." msgstr "En plus, cela ajoute le paquet @var{avahi} au profil du système pour que les commandes comme @command{avahi-browse} soient directement utilisables." #. type: deftp -#: guix-git/doc/guix.texi:18744 +#: guix-git/doc/guix.texi:19106 #, no-wrap msgid "{Data Type} avahi-configuration" msgstr "{Type de données} avahi-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18746 +#: guix-git/doc/guix.texi:19108 msgid "Data type representation the configuration for Avahi." msgstr "Type de données représentant la configuration d'Avahi." #. type: item -#: guix-git/doc/guix.texi:18749 +#: guix-git/doc/guix.texi:19111 #, no-wrap msgid "@code{host-name} (default: @code{#f})" msgstr "@code{host-name} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18752 +#: guix-git/doc/guix.texi:19114 msgid "If different from @code{#f}, use that as the host name to publish for this machine; otherwise, use the machine's actual host name." msgstr "Si la valeur n'est pas @code{#f}, utilise cette valeur comme nom d'hôte à publier pour la machine ; sinon, utilise le vrai nom d'hôte de la machine." #. type: item -#: guix-git/doc/guix.texi:18753 guix-git/doc/guix.texi:29132 +#: guix-git/doc/guix.texi:19115 guix-git/doc/guix.texi:29469 #, no-wrap msgid "@code{publish?} (default: @code{#t})" msgstr "@code{publish?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18756 +#: guix-git/doc/guix.texi:19118 msgid "When true, allow host names and services to be published (broadcast) over the network." msgstr "Lorsque la valeur est vraie, permet la publication sur le réseau (en diffusion) des noms d'hôtes et des services." #. type: item -#: guix-git/doc/guix.texi:18757 +#: guix-git/doc/guix.texi:19119 #, no-wrap msgid "@code{publish-workstation?} (default: @code{#t})" msgstr "@code{publish-workstation?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18761 +#: guix-git/doc/guix.texi:19123 msgid "When true, @command{avahi-daemon} publishes the machine's host name and IP address via mDNS on the local network. To view the host names published on your local network, you can run:" msgstr "Lorsque la valeur est vraie, @command{avahi-daemon} publie le nom d'hôte et l'adresse IP de la machine via mDNS sur le réseau local. Pour voir les noms d'hôtes publiés sur votre réseau local, vous pouvez lancer :" #. type: example -#: guix-git/doc/guix.texi:18764 +#: guix-git/doc/guix.texi:19126 #, no-wrap msgid "avahi-browse _workstation._tcp\n" msgstr "avahi-browse _workstation._tcp\n" #. type: item -#: guix-git/doc/guix.texi:18766 +#: guix-git/doc/guix.texi:19128 #, no-wrap msgid "@code{wide-area?} (default: @code{#f})" msgstr "@code{wide-area?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18768 +#: guix-git/doc/guix.texi:19130 msgid "When true, DNS-SD over unicast DNS is enabled." msgstr "Lorsque la valeur est vraie, DNS-SD sur DNS unicast est activé." #. type: item -#: guix-git/doc/guix.texi:18769 +#: guix-git/doc/guix.texi:19131 #, no-wrap msgid "@code{ipv4?} (default: @code{#t})" msgstr "@code{ipv4?} (par défaut : @code{#t})" #. type: itemx -#: guix-git/doc/guix.texi:18770 +#: guix-git/doc/guix.texi:19132 #, no-wrap msgid "@code{ipv6?} (default: @code{#t})" msgstr "@code{ipv6?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18772 +#: guix-git/doc/guix.texi:19134 msgid "These fields determine whether to use IPv4/IPv6 sockets." msgstr "Ces champs déterminent s'il faut utiliser des socket IPv4/IPv6." #. type: item -#: guix-git/doc/guix.texi:18773 +#: guix-git/doc/guix.texi:19135 #, no-wrap msgid "@code{domains-to-browse} (default: @code{'()})" msgstr "@code{domains-to-browse} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18775 +#: guix-git/doc/guix.texi:19137 msgid "This is a list of domains to browse." msgstr "C'est la liste des domaines sur lesquels naviguer." #. type: deffn -#: guix-git/doc/guix.texi:18778 +#: guix-git/doc/guix.texi:19140 #, no-wrap msgid "{Scheme Variable} openvswitch-service-type" msgstr "{Variable Scheme} openvswitch-service-type" #. type: deffn -#: guix-git/doc/guix.texi:18782 +#: guix-git/doc/guix.texi:19144 msgid "This is the type of the @uref{https://www.openvswitch.org, Open vSwitch} service, whose value should be an @code{openvswitch-configuration} object." msgstr "C'est le type du service @uref{https://www.openvswitch.org, Open vSwitch}, dont la valeur devrait être un objet @code{openvswitch-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:18784 +#: guix-git/doc/guix.texi:19146 #, no-wrap msgid "{Data Type} openvswitch-configuration" msgstr "{Type de données} openvswitch-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18788 +#: guix-git/doc/guix.texi:19150 msgid "Data type representing the configuration of Open vSwitch, a multilayer virtual switch which is designed to enable massive network automation through programmatic extension." msgstr "Type de données représentant la configuration de Open vSwitch, un commutateur virtuel multiniveaux conçu pour rendre possible l'automatisation massive des réseaux avec des extensions programmables." #. type: item -#: guix-git/doc/guix.texi:18790 +#: guix-git/doc/guix.texi:19152 #, no-wrap msgid "@code{package} (default: @var{openvswitch})" msgstr "@code{package} (par défaut : @var{openvswitch})" #. type: table -#: guix-git/doc/guix.texi:18792 +#: guix-git/doc/guix.texi:19154 msgid "Package object of the Open vSwitch." msgstr "Objet de paquet de Open vSwitch." #. type: defvr -#: guix-git/doc/guix.texi:18796 +#: guix-git/doc/guix.texi:19158 #, no-wrap msgid "{Scheme Variable} pagekite-service-type" msgstr "{Variable Scheme} pagekite-service-type" #. type: defvr -#: guix-git/doc/guix.texi:18801 +#: guix-git/doc/guix.texi:19163 msgid "This is the service type for the @uref{https://pagekite.net, PageKite} service, a tunneling solution for making localhost servers publicly visible, even from behind restrictive firewalls or NAT without forwarded ports. The value for this service type is a @code{pagekite-configuration} record." msgstr "Il s'agit du type de service du service @uref{https://pagekite.net, PageKite}, une solution de tunneling permettant de rendre les serveurs locaux visibles au public, même derrière des pare-feu restrictifs ou du NAT sans transfert de ports. La valeur pour ce type de service est un enregistrement @code{pagekite-configuration}." #. type: defvr -#: guix-git/doc/guix.texi:18803 +#: guix-git/doc/guix.texi:19165 msgid "Here's an example exposing the local HTTP and SSH daemons:" msgstr "Voici un exemple exposant les démons locaux HTTP et SSH :" #. type: lisp -#: guix-git/doc/guix.texi:18810 +#: guix-git/doc/guix.texi:19172 #, no-wrap msgid "" "(service pagekite-service-type\n" @@ -35260,110 +35928,110 @@ msgstr "" " (extra-file \"/etc/pagekite.rc\")))\n" #. type: deftp -#: guix-git/doc/guix.texi:18813 +#: guix-git/doc/guix.texi:19175 #, no-wrap msgid "{Data Type} pagekite-configuration" msgstr "{Type de données} pagekite-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18815 +#: guix-git/doc/guix.texi:19177 msgid "Data type representing the configuration of PageKite." msgstr "Type de données représentant la configuration de PageKite." #. type: item -#: guix-git/doc/guix.texi:18817 +#: guix-git/doc/guix.texi:19179 #, no-wrap msgid "@code{package} (default: @var{pagekite})" msgstr "@code{package} (par défaut : @var{pagekite})" #. type: table -#: guix-git/doc/guix.texi:18819 +#: guix-git/doc/guix.texi:19181 msgid "Package object of PageKite." msgstr "Objet du paquet de PageKite." #. type: item -#: guix-git/doc/guix.texi:18820 +#: guix-git/doc/guix.texi:19182 #, no-wrap msgid "@code{kitename} (default: @code{#f})" msgstr "@code{kitename} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18822 +#: guix-git/doc/guix.texi:19184 msgid "PageKite name for authenticating to the frontend server." msgstr "Nom de PageKite pour l'authentification au serveur frontal." #. type: item -#: guix-git/doc/guix.texi:18823 +#: guix-git/doc/guix.texi:19185 #, no-wrap msgid "@code{kitesecret} (default: @code{#f})" msgstr "@code{kitesecret} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18826 +#: guix-git/doc/guix.texi:19188 msgid "Shared secret for authenticating to the frontend server. You should probably put this inside @code{extra-file} instead." msgstr "Secret partagé pour s'authentifier auprès du serveur frontal. Vous devriez probablement mettre cela dans @code{extra-file} à la place." #. type: item -#: guix-git/doc/guix.texi:18827 +#: guix-git/doc/guix.texi:19189 #, no-wrap msgid "@code{frontend} (default: @code{#f})" msgstr "@code{frontend} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18830 +#: guix-git/doc/guix.texi:19192 msgid "Connect to the named PageKite frontend server instead of the @uref{https://pagekite.net,,pagekite.net} service." msgstr "Connectez-vous au serveur frontal nommé PageKite au lieu du service @uref{https://pagekite.net,,pagekite.net}." #. type: item -#: guix-git/doc/guix.texi:18831 +#: guix-git/doc/guix.texi:19193 #, no-wrap msgid "@code{kites} (default: @code{'(\"http:@@kitename:localhost:80:@@kitesecret\")})" msgstr "@code{kites} (par défaut : @code{'(\"http:@@kitename:localhost:80:@@kitesecret\")})" #. type: table -#: guix-git/doc/guix.texi:18834 +#: guix-git/doc/guix.texi:19196 msgid "List of service kites to use. Exposes HTTP on port 80 by default. The format is @code{proto:kitename:host:port:secret}." msgstr "Liste de services kites à utiliser. Expose HTTP sur le port 80 par défaut. Le format est @code{proto:nomdukite:hôte:port:secret}." #. type: item -#: guix-git/doc/guix.texi:18835 +#: guix-git/doc/guix.texi:19197 #, no-wrap msgid "@code{extra-file} (default: @code{#f})" msgstr "@code{extra-file} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18838 +#: guix-git/doc/guix.texi:19200 msgid "Extra configuration file to read, which you are expected to create manually. Use this to add additional options and manage shared secrets out-of-band." msgstr "Fichier de configuration supplémentaire à lire, que vous devez créer manuellement. Utilisez-le pour ajouter des options supplémentaires et gérer les secrets partagés hors bande." #. type: defvr -#: guix-git/doc/guix.texi:18842 +#: guix-git/doc/guix.texi:19204 #, no-wrap msgid "{Scheme Variable} yggdrasil-service-type" msgstr "{Variable Scheme} yggdrasil-service-type" #. type: defvr -#: guix-git/doc/guix.texi:18846 +#: guix-git/doc/guix.texi:19208 msgid "The service type for connecting to the @uref{https://yggdrasil-network.github.io/, Yggdrasil network}, an early-stage implementation of a fully end-to-end encrypted IPv6 network." msgstr "Le type de service pour se connecter au @uref{https://yggdrasil-network.github.io/, réseau Yggdrasil}, une jeune implémentation d'un réseau IPv6 entièrement chiffré de bout en bout." #. type: quotation -#: guix-git/doc/guix.texi:18853 +#: guix-git/doc/guix.texi:19215 msgid "Yggdrasil provides name-independent routing with cryptographically generated addresses. Static addressing means you can keep the same address as long as you want, even if you move to a new location, or generate a new address (by generating new keys) whenever you want. @uref{https://yggdrasil-network.github.io/2018/07/28/addressing.html}" msgstr "Yggdrasil fournit le routage indépendant du nom avec des adresses générées de manière cryptographiques. L'adressage statique signifie que vous pouvez garder la même adresse aussi longtemps que vous le souhaitez, même si vous changez d'emplacement, et que vous pouvez générer une nouvelle adresse (en générant de nouvelles clés) quand vous le souhaitez. @uref{https://yggdrasil-network.github.io/2018/07/28/addressing.html}" #. type: defvr -#: guix-git/doc/guix.texi:18857 +#: guix-git/doc/guix.texi:19219 msgid "Pass it a value of @code{yggdrasil-configuration} to connect it to public peers and/or local peers." msgstr "Passez-lui une valeur de type @code{yggdrasil-configuration} pour le connecter aux pairs publics ou aux pairs locaux." #. type: defvr -#: guix-git/doc/guix.texi:18861 +#: guix-git/doc/guix.texi:19223 msgid "Here is an example using public peers and a static address. The static signing and encryption keys are defined in @file{/etc/yggdrasil-private.conf} (the default value for @code{config-file})." msgstr "voici un exemple qui utilise des pairs publics et une adresse statique. Les clés de signature et de chiffrement statiques sont définies dans @file{/etc/yggdrasil-private.conf} (la valeur par défaut de @code{config-file})." #. type: lisp -#: guix-git/doc/guix.texi:18873 +#: guix-git/doc/guix.texi:19235 #, no-wrap msgid "" ";; part of the operating-system declaration\n" @@ -35389,7 +36057,7 @@ msgstr "" " ))\n" #. type: example -#: guix-git/doc/guix.texi:18880 +#: guix-git/doc/guix.texi:19242 #, no-wrap msgid "" "# sample content for /etc/yggdrasil-private.conf\n" @@ -35407,7 +36075,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:18883 +#: guix-git/doc/guix.texi:19245 #, no-wrap msgid "" " # Your private encryption key. DO NOT share this with anyone!\n" @@ -35419,7 +36087,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:18887 +#: guix-git/doc/guix.texi:19249 #, no-wrap msgid "" " # Your public signing key. You should not ordinarily need to share\n" @@ -35433,7 +36101,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:18891 +#: guix-git/doc/guix.texi:19253 #, no-wrap msgid "" " # Your private signing key. DO NOT share this with anyone!\n" @@ -35445,124 +36113,124 @@ msgstr "" "@}\n" #. type: deftp -#: guix-git/doc/guix.texi:18894 +#: guix-git/doc/guix.texi:19256 #, no-wrap msgid "{Data Type} yggdrasil-configuration" msgstr "{Type de données} yggdrasil-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18896 +#: guix-git/doc/guix.texi:19258 msgid "Data type representing the configuration of Yggdrasil." msgstr "Type de données qui représente la configuration de Yggdrasil." #. type: item -#: guix-git/doc/guix.texi:18898 +#: guix-git/doc/guix.texi:19260 #, no-wrap msgid "@code{package} (default: @code{yggdrasil})" msgstr "@code{package} (par défaut : @code{yggdrasil})" #. type: table -#: guix-git/doc/guix.texi:18900 +#: guix-git/doc/guix.texi:19262 msgid "Package object of Yggdrasil." msgstr "Objet du paquet de Yggdrasil." #. type: item -#: guix-git/doc/guix.texi:18901 +#: guix-git/doc/guix.texi:19263 #, no-wrap msgid "@code{json-config} (default: @code{'()})" msgstr "@code{json-config} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18907 +#: guix-git/doc/guix.texi:19269 msgid "Contents of @file{/etc/yggdrasil.conf}. Will be merged with @file{/etc/yggdrasil-private.conf}. Note that these settings are stored in the Guix store, which is readable to all users. @strong{Do not store your private keys in it}. See the output of @code{yggdrasil -genconf} for a quick overview of valid keys and their default values." msgstr "Contenu de @file{/etc/yggdrasil.conf}. Sera fusionné avec @file{/etc/yggdrasil-private.conf}. Remarquez que ces paramètres sont stockés dans le dépôt de Guix, qui est disponible en lecture pour tout le monde. @strong{Ne stockez pas vos clés privées dedans}. Voir la sortie de @code{yggdrasil -genconf} pour un aperçu rapide de ce que sont des clés valides et leurs valeurs par défaut." #. type: item -#: guix-git/doc/guix.texi:18908 +#: guix-git/doc/guix.texi:19270 #, no-wrap msgid "@code{autoconf?} (default: @code{#f})" msgstr "@code{autoconf?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18911 +#: guix-git/doc/guix.texi:19273 msgid "Whether to use automatic mode. Enabling it makes Yggdrasil use adynamic IP and peer with IPv6 neighbors." msgstr "Indique s'il faut utiliser le mode automatique. L'activer fera utiliser une IP dynamique à Yggdrasil et l'appairer à ses voisins IPv6." #. type: table -#: guix-git/doc/guix.texi:18914 +#: guix-git/doc/guix.texi:19276 msgid "How much detail to include in logs. Use @code{'debug} for more detail." msgstr "La quantité de détails à inclure dans les journaux. Utilisez @code{'debug} pour plus de détails." #. type: item -#: guix-git/doc/guix.texi:18915 +#: guix-git/doc/guix.texi:19277 #, no-wrap msgid "@code{log-to} (default: @code{'stdout})" msgstr "@code{log-to} (par défaut : @code{'stdout})" #. type: table -#: guix-git/doc/guix.texi:18919 +#: guix-git/doc/guix.texi:19281 msgid "Where to send logs. By default, the service logs standard output to @file{/var/log/yggdrasil.log}. The alternative is @code{'syslog}, which sends output to the running syslog service." msgstr "L'emplacement où envoyer les journaux. Par défaut, le service enregistre la sortie standard dans @file{/var/log/yggdrasil.log}. L’alternative est @code{'syslog}, qui envoie la sortie au service syslog." #. type: item -#: guix-git/doc/guix.texi:18920 +#: guix-git/doc/guix.texi:19282 #, no-wrap msgid "@code{config-file} (default: @code{\"/etc/yggdrasil-private.conf\"})" msgstr "@code{config-file} (par défaut : @code{\"/etc/yggdrasil-private.conf\"})" #. type: table -#: guix-git/doc/guix.texi:18927 +#: guix-git/doc/guix.texi:19289 msgid "What HJSON file to load sensitive data from. This is where private keys should be stored, which are necessary to specify if you don't want a randomized address after each restart. Use @code{#f} to disable. Options defined in this file take precedence over @code{json-config}. Use the output of @code{yggdrasil -genconf} as a starting point. To configure a static address, delete everything except these options:" msgstr "Le fichier HJSON depuis lequel charger les données sensibles. C'est l'emplacement où stocker les clés privées, qui doivent être spécifiées si vous ne voulez pas une adresse aléatoire à chaque démarrage. Utilisez @code{#f} pour désactiver. Les options définies dans ce fichier prennent le pas sur @code{json-config}. Utilisez la sortie de @code{yggdrasil -genconf} pour commencer. Pour configurer une adresse statique, supprimez tout sauf ces options :" #. type: code{#1} -#: guix-git/doc/guix.texi:18929 +#: guix-git/doc/guix.texi:19291 #, no-wrap msgid "EncryptionPublicKey" msgstr "EncryptionPublicKey" #. type: code{#1} -#: guix-git/doc/guix.texi:18930 +#: guix-git/doc/guix.texi:19292 #, no-wrap msgid "EncryptionPrivateKey" msgstr "EncryptionPrivateKey" #. type: code{#1} -#: guix-git/doc/guix.texi:18931 +#: guix-git/doc/guix.texi:19293 #, no-wrap msgid "SigningPublicKey" msgstr "SigningPublicKey" #. type: code{#1} -#: guix-git/doc/guix.texi:18932 +#: guix-git/doc/guix.texi:19294 #, no-wrap msgid "SigningPrivateKey" msgstr "SigningPrivateKey" #. type: cindex -#: guix-git/doc/guix.texi:18937 +#: guix-git/doc/guix.texi:19299 #, no-wrap msgid "IPFS" msgstr "IPFS" #. type: defvr -#: guix-git/doc/guix.texi:18938 +#: guix-git/doc/guix.texi:19300 #, no-wrap msgid "{Scheme Variable} ipfs-service-type" msgstr "{Variable Scheme} ipfs-service-type" #. type: defvr -#: guix-git/doc/guix.texi:18942 +#: guix-git/doc/guix.texi:19304 msgid "The service type for connecting to the @uref{https://ipfs.io,IPFS network}, a global, versioned, peer-to-peer file system. Pass it a @code{ipfs-configuration} to change the ports used for the gateway and API." msgstr "Le type de service pour se connecter au @uref{https://ipfs.io,réseau IPFS}, un système de fichiers mondial, versionné et en pair-à-pair. Passez lui un objet @code{ipfs-configuration} pour changer les ports utilisés pour la passerelle et l'API." #. type: defvr -#: guix-git/doc/guix.texi:18944 +#: guix-git/doc/guix.texi:19306 msgid "Here's an example configuration, using some non-standard ports:" msgstr "Voici un exemple de configuration, avec des ports non standards :" #. type: lisp -#: guix-git/doc/guix.texi:18950 +#: guix-git/doc/guix.texi:19312 #, no-wrap msgid "" "(service ipfs-service-type\n" @@ -35576,68 +36244,68 @@ msgstr "" " (api \"/ip4/127.0.0.1/tcp/8881\")))\n" #. type: deftp -#: guix-git/doc/guix.texi:18953 +#: guix-git/doc/guix.texi:19315 #, no-wrap msgid "{Data Type} ipfs-configuration" msgstr "{Type de données} ipfs-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18955 +#: guix-git/doc/guix.texi:19317 msgid "Data type representing the configuration of IPFS." msgstr "Type de données représentant la configuration d'IPFS." #. type: item -#: guix-git/doc/guix.texi:18957 +#: guix-git/doc/guix.texi:19319 #, no-wrap msgid "@code{package} (default: @code{go-ipfs})" msgstr "@code{package} (par défaut : @code{go-ipfs})" #. type: table -#: guix-git/doc/guix.texi:18959 +#: guix-git/doc/guix.texi:19321 msgid "Package object of IPFS." msgstr "Objet du paquet d'IPFS." #. type: item -#: guix-git/doc/guix.texi:18960 +#: guix-git/doc/guix.texi:19322 #, no-wrap msgid "@code{gateway} (default: @code{\"/ip4/127.0.0.1/tcp/8082\"})" msgstr "@code{gateway} (par défaut : @code{\"/ip4/127.0.0.1/tcp/8082\"})" #. type: table -#: guix-git/doc/guix.texi:18962 +#: guix-git/doc/guix.texi:19324 msgid "Address of the gateway, in ‘multiaddress’ format." msgstr "Adresse de la passerelle, au format « multiaddress »." #. type: item -#: guix-git/doc/guix.texi:18963 +#: guix-git/doc/guix.texi:19325 #, no-wrap msgid "@code{api} (default: @code{\"/ip4/127.0.0.1/tcp/5001\"})" msgstr "@code{api} (par défaut : @code{\"/ip4/127.0.0.1/tcp/5001\"})" #. type: table -#: guix-git/doc/guix.texi:18965 +#: guix-git/doc/guix.texi:19327 msgid "Address of the API endpoint, in ‘multiaddress’ format." msgstr "Adresse du point d'accès de l'API, au format « multiaddress »." #. type: cindex -#: guix-git/doc/guix.texi:18968 +#: guix-git/doc/guix.texi:19330 #, no-wrap msgid "keepalived" msgstr "keepalived" #. type: deffn -#: guix-git/doc/guix.texi:18969 +#: guix-git/doc/guix.texi:19331 #, no-wrap msgid "{Scheme Variable} keepalived-service-type" msgstr "{Variable Scheme} keepalived-service-type" #. type: deffn -#: guix-git/doc/guix.texi:18974 +#: guix-git/doc/guix.texi:19336 msgid "This is the type for the @uref{https://www.keepalived.org/, Keepalived} routing software, @command{keepalived}. Its value must be an @code{keepalived-configuration} record as in this example for master machine:" msgstr "C'est le type pour le logiciel de routage @uref{https://www.keepalived.org/, Keepalived}, @command{keepalived}. Sa valeur doit être un enregistrement @code{keepalived-configuration} comme dans cet exemple pour la machine maître :" #. type: lisp -#: guix-git/doc/guix.texi:18979 +#: guix-git/doc/guix.texi:19341 #, no-wrap msgid "" "(service keepalived-service-type\n" @@ -35649,12 +36317,12 @@ msgstr "" " (config-file (local-file \"keepalived-master.conf\"))))\n" #. type: deffn -#: guix-git/doc/guix.texi:18982 +#: guix-git/doc/guix.texi:19344 msgid "where @file{keepalived-master.conf}:" msgstr "où @file{keepalived-master.conf} :" #. type: example -#: guix-git/doc/guix.texi:18994 +#: guix-git/doc/guix.texi:19356 #, no-wrap msgid "" "vrrp_instance my-group @{\n" @@ -35680,12 +36348,12 @@ msgstr "" "@}\n" #. type: deffn -#: guix-git/doc/guix.texi:18997 +#: guix-git/doc/guix.texi:19359 msgid "and for backup machine:" msgstr "et pour la machine de secours :" #. type: lisp -#: guix-git/doc/guix.texi:19002 +#: guix-git/doc/guix.texi:19364 #, no-wrap msgid "" "(service keepalived-service-type\n" @@ -35697,12 +36365,12 @@ msgstr "" " (config-file (local-file \"keepalived-backup.conf\"))))\n" #. type: deffn -#: guix-git/doc/guix.texi:19005 +#: guix-git/doc/guix.texi:19367 msgid "where @file{keepalived-backup.conf}:" msgstr "où @file{keepalived-backup.conf} :" #. type: example -#: guix-git/doc/guix.texi:19017 +#: guix-git/doc/guix.texi:19379 #, no-wrap msgid "" "vrrp_instance my-group @{\n" @@ -35728,135 +36396,135 @@ msgstr "" "@}\n" #. type: cindex -#: guix-git/doc/guix.texi:19023 +#: guix-git/doc/guix.texi:19385 #, no-wrap msgid "unattended upgrades" msgstr "mises à jour non surveillées" #. type: cindex -#: guix-git/doc/guix.texi:19024 +#: guix-git/doc/guix.texi:19386 #, no-wrap msgid "upgrades, unattended" msgstr "mises à jour, non surveillées" #. type: Plain text -#: guix-git/doc/guix.texi:19029 +#: guix-git/doc/guix.texi:19391 msgid "Guix provides a service to perform @emph{unattended upgrades}: periodically, the system automatically reconfigures itself from the latest Guix. Guix System has several properties that make unattended upgrades safe:" msgstr "Guix fournit un service pour effectuer des @emph{unattended upgrades} : périodiquement, le système se reconfigure automatiquement à partir du dernier Guix. Guix System possède plusieurs propriétés qui rendent les mises à jour non surveillées sûres :" #. type: itemize -#: guix-git/doc/guix.texi:19034 +#: guix-git/doc/guix.texi:19396 msgid "upgrades are transactional (either the upgrade succeeds or it fails, but you cannot end up with an ``in-between'' system state);" msgstr "les mises à jour sont transactionnelles (soit la mise à jour réussit, soit elle échoue, mais vous ne pouvez pas vous retrouver avec un état système \"intermédiaire\") ;" #. type: itemize -#: guix-git/doc/guix.texi:19038 +#: guix-git/doc/guix.texi:19400 msgid "the upgrade log is kept---you can view it with @command{guix system list-generations}---and you can roll back to any previous generation, should the upgraded system fail to behave as intended;" msgstr "le journal de mise à niveau est kept--- vous pouvez le consulter avec @command{guix system list-generations}--et vous pouvez revenir à n'importe quelle génération précédente, si le système mis à jour ne se comporte pas comme prévu ;" #. type: itemize -#: guix-git/doc/guix.texi:19041 +#: guix-git/doc/guix.texi:19403 msgid "channel code is authenticated so you know you can only run genuine code (@pxref{Channels});" msgstr "le code du canal est authentifié, vous savez donc que vous ne pouvez exécuter que du code authentique (@pxref{Canaux}) ;" #. type: itemize -#: guix-git/doc/guix.texi:19044 +#: guix-git/doc/guix.texi:19406 msgid "@command{guix system reconfigure} prevents downgrades, which makes it immune to @dfn{downgrade attacks}." msgstr "@command{guix system reconfigure} empêche les déclassements, ce qui le rend immunisé contre les attaques @dfn{downgrade attacks}." #. type: Plain text -#: guix-git/doc/guix.texi:19049 +#: guix-git/doc/guix.texi:19411 msgid "To set up unattended upgrades, add an instance of @code{unattended-upgrade-service-type} like the one below to the list of your operating system services:" msgstr "Pour mettre en place des mises à jour sans surveillance, ajoutez une instance de @code{unattended-upgrade-service-type} comme celle ci-dessous, à la liste des services de votre système d'exploitation :" #. type: lisp -#: guix-git/doc/guix.texi:19052 +#: guix-git/doc/guix.texi:19414 #, no-wrap msgid "(service unattended-upgrade-service-type)\n" msgstr "(service unattended-upgrade-service-type)\n" #. type: Plain text -#: guix-git/doc/guix.texi:19059 +#: guix-git/doc/guix.texi:19421 msgid "The defaults above set up weekly upgrades: every Sunday at midnight. You do not need to provide the operating system configuration file: it uses @file{/run/current-system/configuration.scm}, which ensures it always uses your latest configuration---@pxref{provenance-service-type}, for more information about this file." msgstr "Les valeurs par défaut ci-dessus mettent en place des mises à jour hebdomadaires : tous les dimanches à minuit. Il n'est pas nécessaire de fournir le fichier de configuration du système d'exploitation : il utilise @file{/run/current-system/configuration.scm}, ce qui garantit qu'il utilise toujours votre dernière configuration---@pxref{provenance-service-type}, pour plus d'informations sur ce fichier." #. type: Plain text -#: guix-git/doc/guix.texi:19065 +#: guix-git/doc/guix.texi:19427 msgid "There are several things that can be configured, in particular the periodicity and services (daemons) to be restarted upon completion. When the upgrade is successful, the service takes care of deleting system generations older that some threshold, as per @command{guix system delete-generations}. See the reference below for details." msgstr "Plusieurs choses peuvent être configurés, notamment la périodicité et les services (démons) à redémarrer à la fin. Lorsque la mise à jour est réussie, le service se charge de supprimer les générations de systèmes plus anciennes qu'un certain seuil, conformément à @command{guix system delete-generations}. Voir la référence ci-dessous pour plus de détails." #. type: Plain text -#: guix-git/doc/guix.texi:19069 +#: guix-git/doc/guix.texi:19431 msgid "To ensure that upgrades are actually happening, you can run @command{guix system describe}. To investigate upgrade failures, visit the unattended upgrade log file (see below)." msgstr "Pour vous assurer que les mises à jour sont bien effectuées, vous pouvez exécuter @command{guix system describe}. Pour enquêter sur les échecs de mise à jour, consultez le fichier journal des mises à jour non surveillées (voir ci-dessous)." #. type: defvr -#: guix-git/doc/guix.texi:19070 +#: guix-git/doc/guix.texi:19432 #, no-wrap msgid "{Scheme Variable} unattended-upgrade-service-type" msgstr "{Variable Scheme} unattended-upgrade-service-type" #. type: defvr -#: guix-git/doc/guix.texi:19074 +#: guix-git/doc/guix.texi:19436 msgid "This is the service type for unattended upgrades. It sets up an mcron job (@pxref{Scheduled Job Execution}) that runs @command{guix system reconfigure} from the latest version of the specified channels." msgstr "C'est le type de service pour les mises à jour sans surveillance. Il met en place un job mcron (@pxref{Scheduled Job Execution}) qui exécute @command{guix system reconfigure} à partir de la dernière version des canaux spécifiés." #. type: defvr -#: guix-git/doc/guix.texi:19077 +#: guix-git/doc/guix.texi:19439 msgid "Its value must be a @code{unattended-upgrade-configuration} record (see below)." msgstr "Sa valeur doit être un enregistrement @code{unattended-upgrade-configuration} (voir ci-dessous)." #. type: deftp -#: guix-git/doc/guix.texi:19079 +#: guix-git/doc/guix.texi:19441 #, no-wrap msgid "{Data Type} unattended-upgrade-configuration" msgstr "{Type de données} unattended-upgrade-configuration" #. type: deftp -#: guix-git/doc/guix.texi:19082 +#: guix-git/doc/guix.texi:19444 msgid "This data type represents the configuration of the unattended upgrade service. The following fields are available:" msgstr "Ce type de données représente la configuration du service de mise à jour non surveillée. Les champs suivants sont disponibles :" #. type: item -#: guix-git/doc/guix.texi:19084 +#: guix-git/doc/guix.texi:19446 #, no-wrap msgid "@code{schedule} (default: @code{\"30 01 * * 0\"})" msgstr "@code{schedule} (par défaut : @code{\"30 01 * * 0\"})" #. type: table -#: guix-git/doc/guix.texi:19088 +#: guix-git/doc/guix.texi:19450 msgid "This is the schedule of upgrades, expressed as a gexp containing an mcron job schedule (@pxref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron})." msgstr "Il s'agit du calendrier des mises à jour, exprimé sous la forme d'une gexp contenant un calendrier des travaux mcron (@pxref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron})." #. type: item -#: guix-git/doc/guix.texi:19089 +#: guix-git/doc/guix.texi:19451 #, no-wrap msgid "@code{channels} (default: @code{#~%default-channels})" msgstr "@code{channels} (par défaut : @code{#~%default-channels})" #. type: table -#: guix-git/doc/guix.texi:19093 +#: guix-git/doc/guix.texi:19455 msgid "This gexp specifies the channels to use for the upgrade (@pxref{Channels}). By default, the tip of the official @code{guix} channel is used." msgstr "Ce gexp spécifie les canaux à utiliser pour la mise à jour (@pxref{Canaux}). Par défaut, l'extrémité du canal officiel @code{guix} est utilisée." #. type: item -#: guix-git/doc/guix.texi:19094 +#: guix-git/doc/guix.texi:19456 #, no-wrap msgid "@code{operating-system-file} (default: @code{\"/run/current-system/configuration.scm\"})" msgstr "@code{operating-system-file} (par défaut : @code{\"/run/current-system/configuration.scm\"})" #. type: table -#: guix-git/doc/guix.texi:19097 +#: guix-git/doc/guix.texi:19459 msgid "This field specifies the operating system configuration file to use. The default is to reuse the config file of the current configuration." msgstr "Ce champ indique le fichier de configuration du système d'exploitation à utiliser. La valeur par défaut est de réutiliser le fichier de configuration de la configuration actuelle." #. type: table -#: guix-git/doc/guix.texi:19103 +#: guix-git/doc/guix.texi:19465 msgid "There are cases, though, where referring to @file{/run/current-system/configuration.scm} is not enough, for instance because that file refers to extra files (SSH public keys, extra configuration files, etc.) @i{via} @code{local-file} and similar constructs. For those cases, we recommend something along these lines:" msgstr "Il y a cependant des cas où la référence à @file{/run/current-system/configuration.scm} n'est pas suffisante, par exemple parce que ce fichier fait référence à des fichiers supplémentaires (clés publiques SSH, fichiers de configuration supplémentaires, etc.) @i{via} @code{local-file} et constructions similaires. Pour ces cas, nous recommandons quelque chose qui va dans ce sens :" #. type: lisp -#: guix-git/doc/guix.texi:19109 +#: guix-git/doc/guix.texi:19471 #, no-wrap msgid "" "(unattended-upgrade-configuration\n" @@ -35870,317 +36538,316 @@ msgstr "" " \"/config.scm\")))\n" #. type: table -#: guix-git/doc/guix.texi:19116 +#: guix-git/doc/guix.texi:19478 msgid "The effect here is to import all of the current directory into the store, and to refer to @file{config.scm} within that directory. Therefore, uses of @code{local-file} within @file{config.scm} will work as expected. @xref{G-Expressions}, for information about @code{local-file} and @code{file-append}." msgstr "L'effet ici est d'importer tout le répertoire courant dans le dépôt, et de se référer à @file{config.scm} dans ce répertoire. Par conséquent, l'utilisation de @code{local-file} dans @file{config.scm} fonctionnera comme prévu. @xref{G-Expressions}, pour plus d' informations sur @code{local-file} et @code{file-append}." #. type: item -#: guix-git/doc/guix.texi:19117 +#: guix-git/doc/guix.texi:19479 #, no-wrap msgid "@code{services-to-restart} (default: @code{'(mcron)})" msgstr "@code{services-to-restart} (par défaut : @code{'(mcron)})" #. type: table -#: guix-git/doc/guix.texi:19120 +#: guix-git/doc/guix.texi:19482 msgid "This field specifies the Shepherd services to restart when the upgrade completes." msgstr "Ce champ indique les services Shepherd à redémarrer lorsque la mise à jour est terminée." #. type: table -#: guix-git/doc/guix.texi:19127 +#: guix-git/doc/guix.texi:19489 msgid "Those services are restarted right away upon completion, as with @command{herd restart}, which ensures that the latest version is running---remember that by default @command{guix system reconfigure} only restarts services that are not currently running, which is conservative: it minimizes disruption but leaves outdated services running." msgstr "Ces services sont redémarrés dès qu'ils sont terminés, comme avec @command{herd restart}, ce qui garantit que la dernière version fonctionne---souvenez-vous que par défaut @command{guix system reconfigure} ne redémarre que les services qui ne fonctionnent pas actuellement, ce qui est conservateur : cela minimise les perturbations mais laisse fonctionner les services obsolètes." #. type: table -#: guix-git/doc/guix.texi:19131 +#: guix-git/doc/guix.texi:19493 msgid "Use @command{herd status} to find out candidates for restarting. @xref{Services}, for general information about services. Common services to restart would include @code{ntpd} and @code{ssh-daemon}." msgstr "Utilisez @command{herd status} pour trouver les candidats au redémarrage. @xref{Services}, pour des informations générales sur les services. Les services courants à redémarrer sont @code{ntpd} et @code{ssh-daemon}." #. type: table -#: guix-git/doc/guix.texi:19134 +#: guix-git/doc/guix.texi:19496 msgid "By default, the @code{mcron} service is restarted. This ensures that the latest version of the unattended upgrade job will be used next time." msgstr "Par défaut, le service @code{mcron} est redémarré. Cela garantit que la dernière version du travail de mise à niveau non surveillée sera utilisée la prochaine fois." #. type: item -#: guix-git/doc/guix.texi:19135 +#: guix-git/doc/guix.texi:19497 #, no-wrap msgid "@code{system-expiration} (default: @code{(* 3 30 24 3600)})" msgstr "@code{system-expiration} (par défaut : @code{(* 3 30 24 3600)})" #. type: table -#: guix-git/doc/guix.texi:19139 +#: guix-git/doc/guix.texi:19501 msgid "This is the expiration time in seconds for system generations. System generations older that this amount of time are deleted with @command{guix system delete-generations} when an upgrade completes." msgstr "C'est le temps d'expiration en secondes pour les générations du système. Les générations du système plus anciennes que ce délai sont supprimées avec @command{guix system delete-generations} lorsqu'une mise à jour se termine ." #. type: quotation -#: guix-git/doc/guix.texi:19144 +#: guix-git/doc/guix.texi:19506 msgid "The unattended upgrade service does not run the garbage collector. You will probably want to set up your own mcron job to run @command{guix gc} periodically." msgstr "Le service de mise à jour sans surveillance ne fait pas fonctionner le ramasse miettes. Vous voudrez probablement configurer votre propre job mcron pour exécuter @command{guix gc} périodiquement." #. type: item -#: guix-git/doc/guix.texi:19146 +#: guix-git/doc/guix.texi:19508 #, no-wrap msgid "@code{maximum-duration} (default: @code{3600})" msgstr "@code{minimum-duration} (par défaut : @code{3600})" #. type: table -#: guix-git/doc/guix.texi:19149 +#: guix-git/doc/guix.texi:19511 msgid "Maximum duration in seconds for the upgrade; past that time, the upgrade aborts." msgstr "Durée maximale en secondes de la mise à jour ; passé ce délai, la mise à jour est interrompue." #. type: table -#: guix-git/doc/guix.texi:19152 +#: guix-git/doc/guix.texi:19514 msgid "This is primarily useful to ensure the upgrade does not end up rebuilding or re-downloading ``the world''." msgstr "Cela est surtout utile pour s'assurer que la mise à jour ne finira pas par reconstruire ou retélécharger « le monde »." #. type: item -#: guix-git/doc/guix.texi:19153 +#: guix-git/doc/guix.texi:19515 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/unattended-upgrade.log\"})" msgstr "@code{log-file} (par défaut : @code{\"/var/log/unattended-upgrade.log\"})" #. type: table -#: guix-git/doc/guix.texi:19155 +#: guix-git/doc/guix.texi:19517 msgid "File where unattended upgrades are logged." msgstr "Fichier où sont consignées les mises à jour non surveillées." #. type: cindex -#: guix-git/doc/guix.texi:19161 +#: guix-git/doc/guix.texi:19523 #, no-wrap msgid "X11" msgstr "X11" #. type: cindex -#: guix-git/doc/guix.texi:19162 +#: guix-git/doc/guix.texi:19524 #, no-wrap msgid "X Window System" msgstr "Système de fenêtrage X" #. type: cindex -#: guix-git/doc/guix.texi:19163 guix-git/doc/guix.texi:19436 +#: guix-git/doc/guix.texi:19525 guix-git/doc/guix.texi:19798 #, no-wrap msgid "login manager" msgstr "gestionnaire de connexion" #. type: Plain text -#: guix-git/doc/guix.texi:19168 +#: guix-git/doc/guix.texi:19530 msgid "Support for the X Window graphical display system---specifically Xorg---is provided by the @code{(gnu services xorg)} module. Note that there is no @code{xorg-service} procedure. Instead, the X server is started by the @dfn{login manager}, by default the GNOME Display Manager (GDM)." msgstr "La prise en chargue du système d'affichage graphique X Window — en particulier Xorg — est fournit par le module @code{(gnu services xorg)}. Remarquez qu'il n'y a pas de procédure @code{xorg-service}. À la place, le serveur X est démarré par le @dfn{gestionnaire de connexion}, par défaut le gestionnaire d'affichage de GNOME (GDM)." #. type: cindex -#: guix-git/doc/guix.texi:19169 +#: guix-git/doc/guix.texi:19531 #, no-wrap msgid "GDM" msgstr "GDM" #. type: cindex -#: guix-git/doc/guix.texi:19170 +#: guix-git/doc/guix.texi:19532 #, no-wrap msgid "GNOME, login manager" msgstr "GNOME, gestionnaire de connexion" #. type: Plain text -#: guix-git/doc/guix.texi:19174 +#: guix-git/doc/guix.texi:19536 msgid "GDM of course allows users to log in into window managers and desktop environments other than GNOME; for those using GNOME, GDM is required for features such as automatic screen locking." msgstr "GDM permet évidemment aux utilisateurs de se connecter et d'ouvrir un gestionnaire de fenêtre ou un gestionnaire d'environnement autre que GNOME ; pour ceux qui utilisent GNOME, GDM est requis pour certaines fonctionnalités comme l'écran de verrouillage automatique." #. type: cindex -#: guix-git/doc/guix.texi:19175 +#: guix-git/doc/guix.texi:19537 #, no-wrap msgid "window manager" msgstr "gestionnaire de fenêtre" #. type: Plain text -#: guix-git/doc/guix.texi:19180 +#: guix-git/doc/guix.texi:19542 msgid "To use X11, you must install at least one @dfn{window manager}---for example the @code{windowmaker} or @code{openbox} packages---preferably by adding it to the @code{packages} field of your operating system definition (@pxref{operating-system Reference, system-wide packages})." msgstr "Pour utiliser X11, vous devez installer au moins un @dfn{gestionnaire de fenêtre} — par exemple les paquets @code{windowmaker} ou @code{openbox} — de préférence en l'ajoutant au champ @code{packages} de votre définition de système d'exploitation (@pxref{operating-system Reference, system-wide packages})." #. type: anchor{#1} -#: guix-git/doc/guix.texi:19186 +#: guix-git/doc/guix.texi:19548 msgid "wayland-gdm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19186 +#: guix-git/doc/guix.texi:19548 msgid "GDM also supports Wayland: it can itself use Wayland instead of X11 for its user interface, and it can also start Wayland sessions. The former is required for the latter, to enable, set @code{wayland?} to @code{#t} in @code{gdm-configuration}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19187 +#: guix-git/doc/guix.texi:19549 #, no-wrap msgid "{Scheme Variable} gdm-service-type" msgstr "{Variable Scheme} gdm-service-type" #. type: defvr -#: guix-git/doc/guix.texi:19192 +#: guix-git/doc/guix.texi:19554 msgid "This is the type for the @uref{https://wiki.gnome.org/Projects/GDM/, GNOME Desktop Manager} (GDM), a program that manages graphical display servers and handles graphical user logins. Its value must be a @code{gdm-configuration} (see below)." msgstr "C'est le type pour le @uref{https://wiki.gnome.org/Projects/GDM/, GNOME Desktop Manager} (GDM), un programme qui gère les serveurs d'affichage graphique et qui gère les connexions graphiques des utilisateur·rice·s. Sa valeur doit être un @code{gdm-configuration} (voir ci-dessous)." #. type: cindex -#: guix-git/doc/guix.texi:19193 +#: guix-git/doc/guix.texi:19555 #, fuzzy, no-wrap #| msgid "X11 session types" msgid "session types" msgstr "X11, types de sessions" #. type: defvr -#: guix-git/doc/guix.texi:19201 +#: guix-git/doc/guix.texi:19563 #, fuzzy #| msgid "GDM looks for @dfn{session types} described by the @file{.desktop} files in @file{/run/current-system/profile/share/xsessions} and allows users to choose a session from the log-in screen. Packages such as @code{gnome}, @code{xfce}, and @code{i3} provide @file{.desktop} files; adding them to the system-wide set of packages automatically makes them available at the log-in screen." msgid "GDM looks for @dfn{session types} described by the @file{.desktop} files in @file{/run/current-system/profile/share/xsessions} (for X11 sessions) and @file{/run/current-system/profile/share/wayland-sessions} (for Wayland sessions) and allows users to choose a session from the log-in screen. Packages such as @code{gnome}, @code{xfce}, @code{i3} and @code{sway} provide @file{.desktop} files; adding them to the system-wide set of packages automatically makes them available at the log-in screen." msgstr "GDM cherche des @dfn{types de sessions} définies par les fichiers @file{.desktop} dans @file{/run/current-system/profile/share/xsessions} et permet aux utilisateurs de choisir une session depuis l'écran de connexion. Les paquets comme @code{gnmoe}, @code{xfce} et @code{i3} fournissent des fichiers @file{.desktop} ; les ajouter à l'ensemble des paquets du système les rendra automatiquement disponibles sur l'écran de connexion." #. type: defvr -#: guix-git/doc/guix.texi:19205 +#: guix-git/doc/guix.texi:19567 msgid "In addition, @file{~/.xsession} files are honored. When available, @file{~/.xsession} must be an executable that starts a window manager and/or other X clients." msgstr "En plus, les fichiers @file{~/.xsession} sont honorées. Lorsqu'il est disponible, @file{~/.xsession} doit être un fichier exécutable qui démarre un gestionnaire de fenêtre au un autre client X." #. type: deftp -#: guix-git/doc/guix.texi:19207 +#: guix-git/doc/guix.texi:19569 #, no-wrap msgid "{Data Type} gdm-configuration" msgstr "{Type de données} gdm-configuration" #. type: item -#: guix-git/doc/guix.texi:19209 guix-git/doc/guix.texi:19291 +#: guix-git/doc/guix.texi:19571 guix-git/doc/guix.texi:19653 #, no-wrap msgid "@code{auto-login?} (default: @code{#f})" msgstr "@code{auto-login?} (par défaut : @code{#f})" #. type: itemx -#: guix-git/doc/guix.texi:19210 +#: guix-git/doc/guix.texi:19572 #, no-wrap msgid "@code{default-user} (default: @code{#f})" msgstr "@code{default-user} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:19212 +#: guix-git/doc/guix.texi:19574 msgid "When @code{auto-login?} is false, GDM presents a log-in screen." msgstr "Lorsque @code{auto-login?} est faux, GDM présente un écran de connexion." #. type: table -#: guix-git/doc/guix.texi:19215 +#: guix-git/doc/guix.texi:19577 msgid "When @code{auto-login?} is true, GDM logs in directly as @code{default-user}." msgstr "Lorsque @code{auto-login?} est vrai, GDM se connecte directement en tant que @code{default-user}." #. type: item -#: guix-git/doc/guix.texi:19216 guix-git/doc/guix.texi:25077 -#: guix-git/doc/guix.texi:26786 guix-git/doc/guix.texi:31266 -#: guix-git/doc/guix.texi:31295 guix-git/doc/guix.texi:31324 -#: guix-git/doc/guix.texi:31351 guix-git/doc/guix.texi:31406 -#: guix-git/doc/guix.texi:31431 guix-git/doc/guix.texi:31458 -#: guix-git/doc/guix.texi:31484 guix-git/doc/guix.texi:31526 +#: guix-git/doc/guix.texi:19578 guix-git/doc/guix.texi:25439 +#: guix-git/doc/guix.texi:27123 guix-git/doc/guix.texi:31631 +#: guix-git/doc/guix.texi:31660 guix-git/doc/guix.texi:31689 +#: guix-git/doc/guix.texi:31716 guix-git/doc/guix.texi:31771 +#: guix-git/doc/guix.texi:31796 guix-git/doc/guix.texi:31823 +#: guix-git/doc/guix.texi:31849 guix-git/doc/guix.texi:31891 #, no-wrap msgid "@code{debug?} (default: @code{#f})" msgstr "@code{debug?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:19218 +#: guix-git/doc/guix.texi:19580 msgid "When true, GDM writes debug messages to its log." msgstr "Lorsqu'il est « vrai », GDM écrit des messages de débogage dans son journal." #. type: item -#: guix-git/doc/guix.texi:19219 +#: guix-git/doc/guix.texi:19581 #, no-wrap msgid "@code{gnome-shell-assets} (default: ...)" msgstr "@code{gnome-shell-assets} (par défaut : …)" #. type: table -#: guix-git/doc/guix.texi:19221 +#: guix-git/doc/guix.texi:19583 msgid "List of GNOME Shell assets needed by GDM: icon theme, fonts, etc." msgstr "Liste de données requises par GDM : un thème d'icônes, des polices, etc." #. type: item -#: guix-git/doc/guix.texi:19222 +#: guix-git/doc/guix.texi:19584 #, no-wrap msgid "@code{xorg-configuration} (default: @code{(xorg-configuration)})" msgstr "@code{xorg-configuration} (par défaut : @code{(xorg-configuration)})" #. type: table -#: guix-git/doc/guix.texi:19224 guix-git/doc/guix.texi:19318 -#: guix-git/doc/guix.texi:19402 +#: guix-git/doc/guix.texi:19586 guix-git/doc/guix.texi:19680 +#: guix-git/doc/guix.texi:19764 msgid "Configuration of the Xorg graphical server." msgstr "Configuration du serveur graphique Xorg." #. type: item -#: guix-git/doc/guix.texi:19225 +#: guix-git/doc/guix.texi:19587 #, no-wrap msgid "@code{xsession} (default: @code{(xinitrc)})" msgstr "@code{xsession} (par défaut : @code{xinitrc})" #. type: table -#: guix-git/doc/guix.texi:19227 guix-git/doc/guix.texi:19417 +#: guix-git/doc/guix.texi:19589 guix-git/doc/guix.texi:19779 msgid "Script to run before starting a X session." msgstr "Le script à lancer avant de démarrer une session X." #. type: item -#: guix-git/doc/guix.texi:19228 +#: guix-git/doc/guix.texi:19590 #, no-wrap msgid "@code{dbus-daemon} (default: @code{dbus-daemon-wrapper})" msgstr "@code{dbus-daemon} (par défaut : @code{dbus-daemon-wrapper})" #. type: table -#: guix-git/doc/guix.texi:19230 +#: guix-git/doc/guix.texi:19592 msgid "File name of the @code{dbus-daemon} executable." msgstr "Nom du fichier de l'exécutable @code{dbus-daemon}." #. type: item -#: guix-git/doc/guix.texi:19231 +#: guix-git/doc/guix.texi:19593 #, no-wrap msgid "@code{gdm} (default: @code{gdm})" msgstr "@code{gdm} (par défaut : @code{gdm})" #. type: table -#: guix-git/doc/guix.texi:19233 +#: guix-git/doc/guix.texi:19595 msgid "The GDM package to use." msgstr "Le paquet GDM à utiliser." #. type: item -#: guix-git/doc/guix.texi:19234 -#, fuzzy, no-wrap -#| msgid "@code{lang} (default: @code{#f})" +#: guix-git/doc/guix.texi:19596 +#, no-wrap msgid "@code{wayland?} (default: @code{#f})" -msgstr "@code{lang} (par défaut : @code{#f})" +msgstr "@code{wayland?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:19236 +#: guix-git/doc/guix.texi:19598 msgid "When true, enables Wayland in GDM, necessary to use Wayland sessions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19237 +#: guix-git/doc/guix.texi:19599 #, fuzzy, no-wrap #| msgid "@code{dbus-daemon} (default: @code{dbus-daemon-wrapper})" msgid "@code{wayland-session} (default: @code{gdm-wayland-session-wrapper})" msgstr "@code{dbus-daemon} (par défaut : @code{dbus-daemon-wrapper})" #. type: table -#: guix-git/doc/guix.texi:19240 +#: guix-git/doc/guix.texi:19602 msgid "The Wayland session wrapper to use, needed to setup the environment." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19243 +#: guix-git/doc/guix.texi:19605 #, no-wrap msgid "{Scheme Variable} slim-service-type" msgstr "{Variable Scheme} slim-service-type" #. type: defvr -#: guix-git/doc/guix.texi:19245 +#: guix-git/doc/guix.texi:19607 msgid "This is the type for the SLiM graphical login manager for X11." msgstr "C'est de type pour le gestionnaire de connexion graphique SLiM pour X11." #. type: defvr -#: guix-git/doc/guix.texi:19249 +#: guix-git/doc/guix.texi:19611 msgid "Like GDM, SLiM looks for session types described by @file{.desktop} files and allows users to choose a session from the log-in screen using @kbd{F1}. It also honors @file{~/.xsession} files." msgstr "Comme GDM, SLiM recherche des types de sessions décrites par des fichiers @file{.desktop} et permet aux utilisateurs de choisir une session à partir de l'écran de connexion avec @kbd{F1}. Il comprend aussi les fichiers @file{~/.xsession}." #. type: defvr -#: guix-git/doc/guix.texi:19256 +#: guix-git/doc/guix.texi:19618 msgid "Unlike GDM, SLiM does not spawn the user session on a different VT after logging in, which means that you can only start one graphical session. If you want to be able to run multiple graphical sessions at the same time you have to add multiple SLiM services to your system services. The following example shows how to replace the default GDM service with two SLiM services on tty7 and tty8." msgstr "Contrairement à GDM, SLiM ne démarre pas la session utilisateur sur un terminal virtuel différent à la connexion, ce qui signifie que vous ne pouvez démarrer qu'une seule session graphique. Si vous voulez pouvoir exécuter plusieurs sessions graphiques en même temps, vous devez ajouter plusieurs services SLiM à la liste des services de votre système. L'exemple suivant montre comment remplacer le service GDM par défaut par deux services SLiM sur les tty 7 et 8." #. type: lisp -#: guix-git/doc/guix.texi:19261 +#: guix-git/doc/guix.texi:19623 #, no-wrap msgid "" "(use-modules (gnu services)\n" @@ -36194,7 +36861,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:19272 +#: guix-git/doc/guix.texi:19634 #, no-wrap msgid "" "(operating-system\n" @@ -36220,491 +36887,491 @@ msgstr "" " (delete gdm-service-type)))))\n" #. type: deftp -#: guix-git/doc/guix.texi:19276 +#: guix-git/doc/guix.texi:19638 #, no-wrap msgid "{Data Type} slim-configuration" msgstr "{Type de données} slim-configuration" #. type: deftp -#: guix-git/doc/guix.texi:19278 +#: guix-git/doc/guix.texi:19640 msgid "Data type representing the configuration of @code{slim-service-type}." msgstr "Type de données représentant la configuration de @code{slim-service-type}." #. type: table -#: guix-git/doc/guix.texi:19282 +#: guix-git/doc/guix.texi:19644 msgid "Whether to allow logins with empty passwords." msgstr "S'il faut autoriser les connexions avec un mot de passe vide." #. type: item -#: guix-git/doc/guix.texi:19283 +#: guix-git/doc/guix.texi:19645 #, no-wrap msgid "@code{gnupg?} (default: @code{#f})" msgstr "@code{gnupg?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:19290 +#: guix-git/doc/guix.texi:19652 msgid "If enabled, @code{pam-gnupg} will attempt to automatically unlock the user's GPG keys with the login password via @code{gpg-agent}. The keygrips of all keys to be unlocked should be written to @file{~/.pam-gnupg}, and can be queried with @code{gpg -K --with-keygrip}. Presetting passphrases must be enabled by adding @code{allow-preset-passphrase} in @file{~/.gnupg/gpg-agent.conf}." msgstr "Si l'option est activée, @code{pam-gnupg} essaiera automatique de débloquer les clés GPG de l'utilisateur·rice avec le mot de passe de connexion via @code{gpg-agent}. Les keygrips de toutes les clés à débloquer doivent se trouver dans @file{~/.pam-gnupg} et vous pouvez les récupérer avec @code{gpg -K --with-keygrip}. Vous pouvez activer le préchargement des phrases de passes en ajoutant @code{allow-preset-passphrase} dans @file{~/.gnupg/gpg-agent.conf}." #. type: itemx -#: guix-git/doc/guix.texi:19292 +#: guix-git/doc/guix.texi:19654 #, no-wrap msgid "@code{default-user} (default: @code{\"\"})" msgstr "@code{default-user} (par défaut : @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:19294 +#: guix-git/doc/guix.texi:19656 msgid "When @code{auto-login?} is false, SLiM presents a log-in screen." msgstr "Lorsque @code{auto-login?} est faux, SLiM présent un écran de connexion." #. type: table -#: guix-git/doc/guix.texi:19297 +#: guix-git/doc/guix.texi:19659 msgid "When @code{auto-login?} is true, SLiM logs in directly as @code{default-user}." msgstr "Lorsque @code{auto-login?} est vrai, SLiM se connecte directement en tant que @code{default-user}." #. type: item -#: guix-git/doc/guix.texi:19298 +#: guix-git/doc/guix.texi:19660 #, no-wrap msgid "@code{theme} (default: @code{%default-slim-theme})" msgstr "@code{theme} (par défaut : @code{%default-slim-theme})" #. type: itemx -#: guix-git/doc/guix.texi:19299 +#: guix-git/doc/guix.texi:19661 #, no-wrap msgid "@code{theme-name} (default: @code{%default-slim-theme-name})" msgstr "@code{theme-name} (par défaut : @code{%default-slim-theme-name})" #. type: table -#: guix-git/doc/guix.texi:19301 +#: guix-git/doc/guix.texi:19663 msgid "The graphical theme to use and its name." msgstr "Le thème graphique à utiliser et son nom." #. type: item -#: guix-git/doc/guix.texi:19302 +#: guix-git/doc/guix.texi:19664 #, no-wrap msgid "@code{auto-login-session} (default: @code{#f})" msgstr "@code{auto-login-session} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:19305 +#: guix-git/doc/guix.texi:19667 msgid "If true, this must be the name of the executable to start as the default session---e.g., @code{(file-append windowmaker \"/bin/windowmaker\")}." msgstr "Si la valeur est vraie, elle doit être le nom d'un exécutable à démarrer comme session par défaut — p.@: ex.@: @code{(file-append windowmaker \"/bin/windowmaker\")}." #. type: table -#: guix-git/doc/guix.texi:19309 +#: guix-git/doc/guix.texi:19671 msgid "If false, a session described by one of the available @file{.desktop} files in @code{/run/current-system/profile} and @code{~/.guix-profile} will be used." msgstr "Si la valeur est fausse, une session décrite par l'un des fichiers @file{.desktop} disponibles dans @code{/run/current-system/profile} et @code{~/.guix-profile} sera utilisée." #. type: quotation -#: guix-git/doc/guix.texi:19314 +#: guix-git/doc/guix.texi:19676 msgid "You must install at least one window manager in the system profile or in your user profile. Failing to do that, if @code{auto-login-session} is false, you will be unable to log in." msgstr "Vous devez installer au moins un gestionnaire de fenêtres dans le profil du système ou dans votre profil utilisateur. Sinon, si @code{auto-login-session} est faux, vous ne serez jamais capable de vous connecter." #. type: item -#: guix-git/doc/guix.texi:19316 guix-git/doc/guix.texi:19400 +#: guix-git/doc/guix.texi:19678 guix-git/doc/guix.texi:19762 #, no-wrap msgid "@code{xorg-configuration} (default @code{(xorg-configuration)})" msgstr "@code{xorg-configuration} (par défaut : @code{(xorg-configuration)})" #. type: item -#: guix-git/doc/guix.texi:19319 +#: guix-git/doc/guix.texi:19681 #, no-wrap msgid "@code{display} (default @code{\":0\"})" msgstr "@code{display} (par défaut : @code{\":0\"})" #. type: table -#: guix-git/doc/guix.texi:19321 +#: guix-git/doc/guix.texi:19683 msgid "The display on which to start the Xorg graphical server." msgstr "La session d'affichage sur laquelle démarrer le serveur graphique Xorg." #. type: item -#: guix-git/doc/guix.texi:19322 +#: guix-git/doc/guix.texi:19684 #, no-wrap msgid "@code{vt} (default @code{\"vt7\"})" msgstr "@code{vt} (par défaut : @code{\"vt7\"})" #. type: table -#: guix-git/doc/guix.texi:19324 +#: guix-git/doc/guix.texi:19686 msgid "The VT on which to start the Xorg graphical server." msgstr "Le terminal virtuel sur lequel démarrer le serveur d'affichage graphique Xorg." #. type: item -#: guix-git/doc/guix.texi:19325 +#: guix-git/doc/guix.texi:19687 #, no-wrap msgid "@code{xauth} (default: @code{xauth})" msgstr "@code{xauth} (par défaut : @code{xauth})" #. type: table -#: guix-git/doc/guix.texi:19327 +#: guix-git/doc/guix.texi:19689 msgid "The XAuth package to use." msgstr "Le paquet XAuth à utiliser." #. type: item -#: guix-git/doc/guix.texi:19328 +#: guix-git/doc/guix.texi:19690 #, no-wrap msgid "@code{shepherd} (default: @code{shepherd})" msgstr "@code{shepherd} (par défaut : @code{shepherd})" #. type: table -#: guix-git/doc/guix.texi:19331 +#: guix-git/doc/guix.texi:19693 msgid "The Shepherd package used when invoking @command{halt} and @command{reboot}." msgstr "Le paquet Shepherd à utiliser pour invoquer @command{halt} et @command{reboot}." #. type: item -#: guix-git/doc/guix.texi:19332 +#: guix-git/doc/guix.texi:19694 #, no-wrap msgid "@code{sessreg} (default: @code{sessreg})" msgstr "@code{sessreg} (par défaut : @code{sessreg})" #. type: table -#: guix-git/doc/guix.texi:19334 +#: guix-git/doc/guix.texi:19696 msgid "The sessreg package used in order to register the session." msgstr "Le paquet sessreg à utiliser pour enregistrer la session." #. type: item -#: guix-git/doc/guix.texi:19335 +#: guix-git/doc/guix.texi:19697 #, no-wrap msgid "@code{slim} (default: @code{slim})" msgstr "@code{slim} (par défaut : @code{slim})" #. type: table -#: guix-git/doc/guix.texi:19337 +#: guix-git/doc/guix.texi:19699 msgid "The SLiM package to use." msgstr "Le paquet SLiM à utiliser." #. type: defvr -#: guix-git/doc/guix.texi:19340 +#: guix-git/doc/guix.texi:19702 #, no-wrap msgid "{Scheme Variable} %default-theme" msgstr "{Variable Scheme} %default-theme" #. type: defvrx -#: guix-git/doc/guix.texi:19341 +#: guix-git/doc/guix.texi:19703 #, no-wrap msgid "{Scheme Variable} %default-theme-name" msgstr "{Variable Scheme} %default-theme-name" #. type: defvr -#: guix-git/doc/guix.texi:19343 +#: guix-git/doc/guix.texi:19705 msgid "The default SLiM theme and its name." msgstr "Le thème SLiM par défaut et son nom." #. type: deftp -#: guix-git/doc/guix.texi:19346 guix-git/doc/guix.texi:19453 +#: guix-git/doc/guix.texi:19708 guix-git/doc/guix.texi:19815 #, no-wrap msgid "{Data Type} sddm-configuration" msgstr "{Type de données} sddm-configuration" #. type: deftp -#: guix-git/doc/guix.texi:19348 +#: guix-git/doc/guix.texi:19710 msgid "This is the data type representing the SDDM service configuration." msgstr "C'est le type de données représentant la configuration du service SDDM." #. type: item -#: guix-git/doc/guix.texi:19350 +#: guix-git/doc/guix.texi:19712 #, no-wrap msgid "@code{display-server} (default: \"x11\")" msgstr "@code{display-server} (par défaut : \"x11\")" #. type: table -#: guix-git/doc/guix.texi:19353 +#: guix-git/doc/guix.texi:19715 msgid "Select display server to use for the greeter. Valid values are @samp{\"x11\"} or @samp{\"wayland\"}." msgstr "Choisit le serveur d'affichage à utiliser pour l'écran d'accueil. Les valeurs valides sont @samp{\"x11\"} ou @samp{\"wayland\"}." #. type: item -#: guix-git/doc/guix.texi:19354 +#: guix-git/doc/guix.texi:19716 #, no-wrap msgid "@code{numlock} (default: \"on\")" msgstr "@code{numlock} (par défaut : \"on\")" #. type: table -#: guix-git/doc/guix.texi:19356 +#: guix-git/doc/guix.texi:19718 msgid "Valid values are @samp{\"on\"}, @samp{\"off\"} or @samp{\"none\"}." msgstr "Les valeurs valides sont @samp{\"on\"}, @samp{\"off\"} or @samp{\"none\"}." #. type: item -#: guix-git/doc/guix.texi:19357 +#: guix-git/doc/guix.texi:19719 #, no-wrap msgid "@code{halt-command} (default @code{#~(string-apppend #$shepherd \"/sbin/halt\")})" msgstr "@code{halt-command} (par défaut : @code{#~(string-apppend #$shepherd \"/sbin/halt\")})" #. type: table -#: guix-git/doc/guix.texi:19359 +#: guix-git/doc/guix.texi:19721 msgid "Command to run when halting." msgstr "La commande à lancer à l'arrêt du système." #. type: item -#: guix-git/doc/guix.texi:19360 +#: guix-git/doc/guix.texi:19722 #, no-wrap msgid "@code{reboot-command} (default @code{#~(string-append #$shepherd \"/sbin/reboot\")})" msgstr "@code{reboot-command} (par défaut : @code{#~(string-append #$shepherd \"/sbin/reboot\")})" #. type: table -#: guix-git/doc/guix.texi:19362 +#: guix-git/doc/guix.texi:19724 msgid "Command to run when rebooting." msgstr "La commande à lancer lors du redémarrage du système." #. type: item -#: guix-git/doc/guix.texi:19363 +#: guix-git/doc/guix.texi:19725 #, no-wrap msgid "@code{theme} (default \"maldives\")" msgstr "@code{theme} (par défaut : \"maldives\")" #. type: table -#: guix-git/doc/guix.texi:19366 +#: guix-git/doc/guix.texi:19728 msgid "Theme to use. Default themes provided by SDDM are @samp{\"elarun\"}, @samp{\"maldives\"} or @samp{\"maya\"}." msgstr "Thème à utiliser. Les thèmes par défaut fournis par SDDM sont @samp{\"elarun\"}, @samp{\"maldives\"} ou @samp{\"maya\"}." #. type: item -#: guix-git/doc/guix.texi:19367 +#: guix-git/doc/guix.texi:19729 #, no-wrap msgid "@code{themes-directory} (default \"/run/current-system/profile/share/sddm/themes\")" msgstr "@code{themes-directory} (par défaut : \"/run/current-system/profile/share/sddm/themes\")" #. type: table -#: guix-git/doc/guix.texi:19369 +#: guix-git/doc/guix.texi:19731 msgid "Directory to look for themes." msgstr "Le répertoire où se trouvent les thèmes." #. type: item -#: guix-git/doc/guix.texi:19370 +#: guix-git/doc/guix.texi:19732 #, no-wrap msgid "@code{faces-directory} (default \"/run/current-system/profile/share/sddm/faces\")" msgstr "@code{faces-directory} (par défaut : \"/run/current-system/profile/share/sddm/faces\")" #. type: table -#: guix-git/doc/guix.texi:19372 +#: guix-git/doc/guix.texi:19734 msgid "Directory to look for faces." msgstr "Répertoire où se trouvent les avatars." #. type: item -#: guix-git/doc/guix.texi:19373 +#: guix-git/doc/guix.texi:19735 #, no-wrap msgid "@code{default-path} (default \"/run/current-system/profile/bin\")" msgstr "@code{default-path} (par défaut : \"/run/current-system/profile/bin\")" #. type: table -#: guix-git/doc/guix.texi:19375 +#: guix-git/doc/guix.texi:19737 msgid "Default PATH to use." msgstr "Le PATH par défaut à utiliser." #. type: item -#: guix-git/doc/guix.texi:19376 +#: guix-git/doc/guix.texi:19738 #, no-wrap msgid "@code{minimum-uid} (default: 1000)" msgstr "@code{minimum-uid} (par défaut : 1000)" #. type: table -#: guix-git/doc/guix.texi:19378 +#: guix-git/doc/guix.texi:19740 msgid "Minimum UID displayed in SDDM and allowed for log-in." msgstr "UID minimum affiché dans le SDDM et autorisé pour la connexion." #. type: item -#: guix-git/doc/guix.texi:19379 +#: guix-git/doc/guix.texi:19741 #, no-wrap msgid "@code{maximum-uid} (default: 2000)" msgstr "@code{maximum-uid} (par défaut : 2000)" #. type: table -#: guix-git/doc/guix.texi:19381 +#: guix-git/doc/guix.texi:19743 msgid "Maximum UID to display in SDDM." msgstr "UID maximum pour être affiché dans SDDM." #. type: item -#: guix-git/doc/guix.texi:19382 +#: guix-git/doc/guix.texi:19744 #, no-wrap msgid "@code{remember-last-user?} (default #t)" msgstr "@code{remember-last-user?} (par défaut : #t)" #. type: table -#: guix-git/doc/guix.texi:19384 +#: guix-git/doc/guix.texi:19746 msgid "Remember last user." msgstr "S'il faut se rappeler le dernier utilisateur connecté." #. type: item -#: guix-git/doc/guix.texi:19385 +#: guix-git/doc/guix.texi:19747 #, no-wrap msgid "@code{remember-last-session?} (default #t)" msgstr "@code{remember-last-session?} (par défaut : #t)" #. type: table -#: guix-git/doc/guix.texi:19387 +#: guix-git/doc/guix.texi:19749 msgid "Remember last session." msgstr "S'il faut se rappeler la dernière session." #. type: item -#: guix-git/doc/guix.texi:19388 +#: guix-git/doc/guix.texi:19750 #, no-wrap msgid "@code{hide-users} (default \"\")" msgstr "@code{hide-users} (par défaut : \"\")" #. type: table -#: guix-git/doc/guix.texi:19390 +#: guix-git/doc/guix.texi:19752 msgid "Usernames to hide from SDDM greeter." msgstr "Les noms d'utilisateurs à cacher sur l'écran d'accueil de SDDM." #. type: item -#: guix-git/doc/guix.texi:19391 +#: guix-git/doc/guix.texi:19753 #, no-wrap msgid "@code{hide-shells} (default @code{#~(string-append #$shadow \"/sbin/nologin\")})" msgstr "@code{hide-shells} (par défaut : @code{#~(string-append #$shadow \"/sbin/nologin\")})" #. type: table -#: guix-git/doc/guix.texi:19393 +#: guix-git/doc/guix.texi:19755 msgid "Users with shells listed will be hidden from the SDDM greeter." msgstr "Les utilisateurs avec les shells listés seront cachés sur l'écran d'accueil de SDDM." #. type: item -#: guix-git/doc/guix.texi:19394 +#: guix-git/doc/guix.texi:19756 #, no-wrap msgid "@code{session-command} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/wayland-session\")})" msgstr "@code{session-command} (par défaut : @code{#~(string-append #$sddm \"/share/sddm/scripts/wayland-session\")})" #. type: table -#: guix-git/doc/guix.texi:19396 +#: guix-git/doc/guix.texi:19758 msgid "Script to run before starting a wayland session." msgstr "Le script à lancer avant de démarrer une session wayland." #. type: item -#: guix-git/doc/guix.texi:19397 +#: guix-git/doc/guix.texi:19759 #, no-wrap msgid "@code{sessions-directory} (default \"/run/current-system/profile/share/wayland-sessions\")" msgstr "@code{sessions-directory} (par défaut : \"/run/current-system/profile/share/wayland-sessions\")" #. type: table -#: guix-git/doc/guix.texi:19399 +#: guix-git/doc/guix.texi:19761 msgid "Directory to look for desktop files starting wayland sessions." msgstr "Le répertoire où trouver les fichiers .desktop qui démarrent des sessions wayland." #. type: item -#: guix-git/doc/guix.texi:19403 +#: guix-git/doc/guix.texi:19765 #, no-wrap msgid "@code{xauth-path} (default @code{#~(string-append #$xauth \"/bin/xauth\")})" msgstr "@code{xauth-path} (par défaut : @code{#~(string-append #$xauth \"/bin/xauth\")})" #. type: table -#: guix-git/doc/guix.texi:19405 +#: guix-git/doc/guix.texi:19767 msgid "Path to xauth." msgstr "Chemin vers xauth." #. type: item -#: guix-git/doc/guix.texi:19406 +#: guix-git/doc/guix.texi:19768 #, no-wrap msgid "@code{xephyr-path} (default @code{#~(string-append #$xorg-server \"/bin/Xephyr\")})" msgstr "@code{xephyr-path} (par défaut : @code{#~(string-append #$xorg-server \"/bin/Xephyr\")})" #. type: table -#: guix-git/doc/guix.texi:19408 +#: guix-git/doc/guix.texi:19770 msgid "Path to Xephyr." msgstr "Chemin vers Xephyr." #. type: item -#: guix-git/doc/guix.texi:19409 +#: guix-git/doc/guix.texi:19771 #, no-wrap msgid "@code{xdisplay-start} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/Xsetup\")})" msgstr "@code{xdisplay-start} (par défaut : @code{#~(string-append #$sddm \"/share/sddm/scripts/Xsetup\")})" #. type: table -#: guix-git/doc/guix.texi:19411 +#: guix-git/doc/guix.texi:19773 msgid "Script to run after starting xorg-server." msgstr "Le script à lancer après avoir démarré xorg-server." #. type: item -#: guix-git/doc/guix.texi:19412 +#: guix-git/doc/guix.texi:19774 #, no-wrap msgid "@code{xdisplay-stop} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/Xstop\")})" msgstr "@code{xdisplay-stop} (par défaut : @code{#~(string-append #$sddm \"/share/sddm/scripts/Xstop\")})" #. type: table -#: guix-git/doc/guix.texi:19414 +#: guix-git/doc/guix.texi:19776 msgid "Script to run before stopping xorg-server." msgstr "Le script à lancer avant d'arrêter xorg-server." #. type: item -#: guix-git/doc/guix.texi:19415 +#: guix-git/doc/guix.texi:19777 #, no-wrap msgid "@code{xsession-command} (default: @code{xinitrc})" msgstr "@code{xsession-command} (par défaut : @code{xinitrc})" #. type: item -#: guix-git/doc/guix.texi:19418 +#: guix-git/doc/guix.texi:19780 #, no-wrap msgid "@code{xsessions-directory} (default: \"/run/current-system/profile/share/xsessions\")" msgstr "@code{xsessions-directory} (par défaut : \"/run/current-system/profile/share/xsessions\")" #. type: table -#: guix-git/doc/guix.texi:19420 +#: guix-git/doc/guix.texi:19782 msgid "Directory to look for desktop files starting X sessions." msgstr "Répertoire où trouver les fichiers .desktop pour les sessions X." #. type: item -#: guix-git/doc/guix.texi:19421 +#: guix-git/doc/guix.texi:19783 #, no-wrap msgid "@code{minimum-vt} (default: 7)" msgstr "@code{minimum-vt} (par défaut : 7)" #. type: table -#: guix-git/doc/guix.texi:19423 +#: guix-git/doc/guix.texi:19785 msgid "Minimum VT to use." msgstr "VT minimal à utiliser." #. type: item -#: guix-git/doc/guix.texi:19424 +#: guix-git/doc/guix.texi:19786 #, no-wrap msgid "@code{auto-login-user} (default \"\")" msgstr "@code{auto-login-user} (par défaut : \"\")" #. type: table -#: guix-git/doc/guix.texi:19426 +#: guix-git/doc/guix.texi:19788 msgid "User to use for auto-login." msgstr "Utilisateur à utiliser pour la connexion automatique." #. type: item -#: guix-git/doc/guix.texi:19427 +#: guix-git/doc/guix.texi:19789 #, no-wrap msgid "@code{auto-login-session} (default \"\")" msgstr "@code{auto-login-session} (par défaut : \"\")" #. type: table -#: guix-git/doc/guix.texi:19429 +#: guix-git/doc/guix.texi:19791 msgid "Desktop file to use for auto-login." msgstr "Le fichier desktop à utiliser pour la connexion automatique." #. type: item -#: guix-git/doc/guix.texi:19430 +#: guix-git/doc/guix.texi:19792 #, no-wrap msgid "@code{relogin?} (default #f)" msgstr "@code{relogin?} (par défaut : #f)" #. type: table -#: guix-git/doc/guix.texi:19432 +#: guix-git/doc/guix.texi:19794 msgid "Relogin after logout." msgstr "S'il faut se reconnecter après la déconnexion." #. type: cindex -#: guix-git/doc/guix.texi:19437 +#: guix-git/doc/guix.texi:19799 #, no-wrap msgid "X11 login" msgstr "Connexion X11" #. type: defvr -#: guix-git/doc/guix.texi:19438 +#: guix-git/doc/guix.texi:19800 #, no-wrap msgid "{Scheme Variable} sddm-service-type" msgstr "{Variable Scheme} sddm-service-type" #. type: defvr -#: guix-git/doc/guix.texi:19442 +#: guix-git/doc/guix.texi:19804 msgid "This is the type of the service to run the @uref{https://github.com/sddm/sddm,SDDM display manager}. Its value must be a @code{sddm-configuration} record (see below)." msgstr "C'est le type de service qui permet d'exécuter le gestionnaire d'affichage @uref{https://github.com/sddm/sddm,Gestionnaire d'affichage SDDM}. Sa valeur doit être un enregistrement @code{sddm-configuration} (voir ci-dessous)." #. type: defvr -#: guix-git/doc/guix.texi:19444 +#: guix-git/doc/guix.texi:19806 msgid "Here's an example use:" msgstr "Voici un exemple d'utilisation :" #. type: lisp -#: guix-git/doc/guix.texi:19450 +#: guix-git/doc/guix.texi:19812 #, no-wrap msgid "" "(service sddm-service-type\n" @@ -36718,267 +37385,267 @@ msgstr "" " (auto-login-session \"xfce.desktop\")))\n" #. type: deftp -#: guix-git/doc/guix.texi:19456 +#: guix-git/doc/guix.texi:19818 msgid "This data type represents the configuration of the SDDM login manager. The available fields are:" msgstr "Ce type de données représente la configuration du gestionnaire de connexion SDDM. Les champs disponibles sont :" #. type: item -#: guix-git/doc/guix.texi:19458 +#: guix-git/doc/guix.texi:19820 #, no-wrap msgid "@code{sddm} (default: @code{sddm})" msgstr "@code{sddm} (par défaut : @code{sddm})" #. type: table -#: guix-git/doc/guix.texi:19460 +#: guix-git/doc/guix.texi:19822 msgid "The SDDM package to use." msgstr "Le paquet SDDM à utiliser." #. type: item -#: guix-git/doc/guix.texi:19461 +#: guix-git/doc/guix.texi:19823 #, no-wrap msgid "@code{display-server} (default: @code{\"x11\"})" msgstr "@code{display-server} (default : @code{\"x11\"})" #. type: table -#: guix-git/doc/guix.texi:19463 +#: guix-git/doc/guix.texi:19825 msgid "This must be either @code{\"x11\"} or @code{\"wayland\"}." msgstr "La valeur doit être soit @code{\"X11\"}, soit @code{\"wayland\"}." #. type: item -#: guix-git/doc/guix.texi:19466 +#: guix-git/doc/guix.texi:19828 #, no-wrap msgid "@code{auto-login-user} (default: @code{\"\"})" msgstr "@code{auto-login-user} (par défaut : @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:19469 +#: guix-git/doc/guix.texi:19831 msgid "If non-empty, this is the user account under which to log in automatically." msgstr "Si la valeur n'est pas vide, c'est le compte utilisateur sous lequel se connecter automatiquement." #. type: item -#: guix-git/doc/guix.texi:19470 +#: guix-git/doc/guix.texi:19832 #, no-wrap msgid "@code{auto-login-session} (default: @code{\"\"})" msgstr "@code{auto-login-session} (par défaut : @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:19473 +#: guix-git/doc/guix.texi:19835 msgid "If non-empty, this is the @file{.desktop} file name to use as the auto-login session." msgstr "Si la valeur n'est pas vide, c'est le nom du fichier @file{.desktop} utilisé comme session pour la connexion automatique." #. type: cindex -#: guix-git/doc/guix.texi:19476 +#: guix-git/doc/guix.texi:19838 #, no-wrap msgid "Xorg, configuration" msgstr "Xorg, configuration" #. type: deftp -#: guix-git/doc/guix.texi:19477 +#: guix-git/doc/guix.texi:19839 #, no-wrap msgid "{Data Type} xorg-configuration" msgstr "{Type de données} xorg-configuration" #. type: deftp -#: guix-git/doc/guix.texi:19482 +#: guix-git/doc/guix.texi:19844 msgid "This data type represents the configuration of the Xorg graphical display server. Note that there is no Xorg service; instead, the X server is started by a ``display manager'' such as GDM, SDDM, and SLiM@. Thus, the configuration of these display managers aggregates an @code{xorg-configuration} record." msgstr "Ce type de données représente la configuration du serveur d'affichage graphique Xorg. Remarquez qu'il n'y a pas de service Xorg ; à la place, le serveur X est démarré par un « gestionnaire d'affichage graphique » comme GDM, SDDM et SLiM@. Ainsi, la configuration de ces gestionnaires d'affichage agrègent un enregistrement @code{xorg-configuration}." #. type: item -#: guix-git/doc/guix.texi:19484 +#: guix-git/doc/guix.texi:19846 #, no-wrap msgid "@code{modules} (default: @code{%default-xorg-modules})" msgstr "@code{modules} (par défaut : @code{%default-xorg-modules})" #. type: table -#: guix-git/doc/guix.texi:19487 +#: guix-git/doc/guix.texi:19849 msgid "This is a list of @dfn{module packages} loaded by the Xorg server---e.g., @code{xf86-video-vesa}, @code{xf86-input-keyboard}, and so on." msgstr "C'est une liste de @dfn{paquets de module} chargés par le serveur Xorg — p.@: ex.@: @code{xf86-video-vesa}, @code{xf86-input-keyboard} etc." #. type: item -#: guix-git/doc/guix.texi:19488 +#: guix-git/doc/guix.texi:19850 #, no-wrap msgid "@code{fonts} (default: @code{%default-xorg-fonts})" msgstr "@code{fonts} (par défaut : @code{%default-xorg-fonts})" #. type: table -#: guix-git/doc/guix.texi:19490 +#: guix-git/doc/guix.texi:19852 msgid "This is a list of font directories to add to the server's @dfn{font path}." msgstr "C'est une liste de répertoires de polices à ajouter au @dfn{chemin de polices} du serveur." #. type: item -#: guix-git/doc/guix.texi:19491 +#: guix-git/doc/guix.texi:19853 #, no-wrap msgid "@code{drivers} (default: @code{'()})" msgstr "@code{drivers} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:19495 +#: guix-git/doc/guix.texi:19857 msgid "This must be either the empty list, in which case Xorg chooses a graphics driver automatically, or a list of driver names that will be tried in this order---e.g., @code{(\"modesetting\" \"vesa\")}." msgstr "Cela doit être soit la liste vide, auquel cas Xorg choisit un pilote graphique automatiquement, soit une liste de noms de pilotes qui seront essayés dans cet ordre — p.@: ex.@: @code{(\"modesetting\" \"vesa\")}." #. type: item -#: guix-git/doc/guix.texi:19496 +#: guix-git/doc/guix.texi:19858 #, no-wrap msgid "@code{resolutions} (default: @code{'()})" msgstr "@code{resolutions} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:19500 +#: guix-git/doc/guix.texi:19862 msgid "When @code{resolutions} is the empty list, Xorg chooses an appropriate screen resolution. Otherwise, it must be a list of resolutions---e.g., @code{((1024 768) (640 480))}." msgstr "Lorsque @code{resolutions} est la liste vide, Xorg choisit une résolution d'écran appropriée. Sinon, il doit s'agir d'une liste de résolutions — p.@: ex.@: @code{((1024 768) (640 480))}." #. type: cindex -#: guix-git/doc/guix.texi:19501 +#: guix-git/doc/guix.texi:19863 #, no-wrap msgid "keyboard layout, for Xorg" msgstr "disposition du clavier, pour Xorg" #. type: cindex -#: guix-git/doc/guix.texi:19502 +#: guix-git/doc/guix.texi:19864 #, no-wrap msgid "keymap, for Xorg" msgstr "disposition des touches, Xorg" #. type: table -#: guix-git/doc/guix.texi:19506 +#: guix-git/doc/guix.texi:19868 msgid "If this is @code{#f}, Xorg uses the default keyboard layout---usually US English (``qwerty'') for a 105-key PC keyboard." msgstr "Si la valeur est @code{#f}, Xorg utilise la disposition du clavier par défaut — habituellement la disposition anglaise américaine (« qwerty ») pour un clavier de PC à 105 touches." #. type: table -#: guix-git/doc/guix.texi:19510 +#: guix-git/doc/guix.texi:19872 msgid "Otherwise this must be a @code{keyboard-layout} object specifying the keyboard layout in use when Xorg is running. @xref{Keyboard Layout}, for more information on how to specify the keyboard layout." msgstr "Sinon cela doit être un objet @code{keyboard-layout} spécifiant la disposition du clavier à utiliser lorsque Xorg tourne. @xref{Keyboard Layout} pour plus d'informations sur la manière de spécifier la disposition du clavier." #. type: item -#: guix-git/doc/guix.texi:19511 guix-git/doc/guix.texi:21223 -#: guix-git/doc/guix.texi:34046 +#: guix-git/doc/guix.texi:19873 guix-git/doc/guix.texi:21585 +#: guix-git/doc/guix.texi:34483 #, no-wrap msgid "@code{extra-config} (default: @code{'()})" msgstr "@code{extra-config} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:19514 guix-git/doc/guix.texi:34050 +#: guix-git/doc/guix.texi:19876 guix-git/doc/guix.texi:34487 msgid "This is a list of strings or objects appended to the configuration file. It is used to pass extra text to be added verbatim to the configuration file." msgstr "C'est une liste de chaînes de caractères ou d'objets ajoutés au fichier de configuration. Elle est utile pour ajouter du texte supplémentaire directement dans le fichier de configuration." #. type: item -#: guix-git/doc/guix.texi:19515 +#: guix-git/doc/guix.texi:19877 #, no-wrap msgid "@code{server} (default: @code{xorg-server})" msgstr "@code{server} (par défaut : @code{xorg-server})" #. type: table -#: guix-git/doc/guix.texi:19517 +#: guix-git/doc/guix.texi:19879 msgid "This is the package providing the Xorg server." msgstr "C'est le paquet fournissant le serveur Xorg." #. type: item -#: guix-git/doc/guix.texi:19518 +#: guix-git/doc/guix.texi:19880 #, no-wrap msgid "@code{server-arguments} (default: @code{%default-xorg-server-arguments})" msgstr "@code{server-arguments} (par défaut : @code{%default-xorg-server-arguments})" #. type: table -#: guix-git/doc/guix.texi:19521 +#: guix-git/doc/guix.texi:19883 msgid "This is the list of command-line arguments to pass to the X server. The default is @code{-nolisten tcp}." msgstr "Liste d'arguments de la ligne de commande supplémentaires à passer au serveur X. La valeur par défaut est @code{-nolisten tcp}." #. type: deffn -#: guix-git/doc/guix.texi:19524 +#: guix-git/doc/guix.texi:19886 #, no-wrap msgid "{Scheme Procedure} set-xorg-configuration @var{config} @" msgstr "{Procédure Scheme} set-xorg-configuration @var{config} @" #. type: deffn -#: guix-git/doc/guix.texi:19528 +#: guix-git/doc/guix.texi:19890 msgid "[@var{login-manager-service-type}] Tell the log-in manager (of type @var{login-manager-service-type}) to use @var{config}, an @code{} record." msgstr "" "[@var{login-manager-service-type}]\n" "Dit au gestionnaire de connexion (de type @var{login-manager-service-type}) d'utiliser @var{config}, un enregistrement @code{}." #. type: deffn -#: guix-git/doc/guix.texi:19532 +#: guix-git/doc/guix.texi:19894 msgid "Since the Xorg configuration is embedded in the log-in manager's configuration---e.g., @code{gdm-configuration}---this procedure provides a shorthand to set the Xorg configuration." msgstr "Comme la configuration Xog est incluse dans la configuration du gestionnaire de connexion — p.@: ex.@: @code{gdm-configuration} — cette procédure fournit un raccourci pour configurer Xorg." #. type: deffn -#: guix-git/doc/guix.texi:19534 +#: guix-git/doc/guix.texi:19896 #, no-wrap msgid "{Scheme Procedure} xorg-start-command [@var{config}]" msgstr "{Procédure Scheme} xorg-start-command [@var{config}]" #. type: deffn -#: guix-git/doc/guix.texi:19538 +#: guix-git/doc/guix.texi:19900 msgid "Return a @code{startx} script in which the modules, fonts, etc. specified in @var{config}, are available. The result should be used in place of @code{startx}." msgstr "Renvoie un script @code{startx} dans lequel les modules, les polices, etc., spécifiés dans @var{config} sont disponibles. Le résultat devrait être utilisé à la place de @code{startx}." #. type: deffn -#: guix-git/doc/guix.texi:19540 +#: guix-git/doc/guix.texi:19902 msgid "Usually the X server is started by a login manager." msgstr "Habituellement le serveur X est démarré par un gestionnaire de connexion." #. type: deffn -#: guix-git/doc/guix.texi:19543 +#: guix-git/doc/guix.texi:19905 #, no-wrap msgid "{Scheme Procedure} screen-locker-service @var{package} [@var{program}]" msgstr "{Procédure Scheme} screen-locker-service @var{package} [@var{program}]" #. type: deffn -#: guix-git/doc/guix.texi:19547 +#: guix-git/doc/guix.texi:19909 msgid "Add @var{package}, a package for a screen locker or screen saver whose command is @var{program}, to the set of setuid programs and add a PAM entry for it. For example:" msgstr "Ajoute @var{package}, un paquet pour un verrouiller l'écran ou un économiseur d'écran dont la commande est @var{program}, à l'ensemble des programmes setuid et lui ajoute une entrée PAM. Par exemple :" #. type: lisp -#: guix-git/doc/guix.texi:19550 +#: guix-git/doc/guix.texi:19912 #, no-wrap msgid "(screen-locker-service xlockmore \"xlock\")\n" msgstr "(screen-locker-service xlockmore \"xlock\")\n" #. type: deffn -#: guix-git/doc/guix.texi:19553 +#: guix-git/doc/guix.texi:19915 msgid "makes the good ol' XlockMore usable." msgstr "rend utilisable le bon vieux XlockMore." #. type: cindex -#: guix-git/doc/guix.texi:19559 +#: guix-git/doc/guix.texi:19921 #, no-wrap msgid "printer support with CUPS" msgstr "support des imprimantes avec CUPS" #. type: Plain text -#: guix-git/doc/guix.texi:19563 +#: guix-git/doc/guix.texi:19925 msgid "The @code{(gnu services cups)} module provides a Guix service definition for the CUPS printing service. To add printer support to a Guix system, add a @code{cups-service} to the operating system definition:" msgstr "Le module @code{(gnu services cups)} fournit une définition de service Guix pour le service d'impression CUPS. Pour ajouter la prise en charge d'une imprimante à un système Guix, ajoutez un @code{cups-service} à la définition du système d'exploitation :" #. type: deffn -#: guix-git/doc/guix.texi:19564 +#: guix-git/doc/guix.texi:19926 #, no-wrap msgid "{Scheme Variable} cups-service-type" msgstr "{Variable Scheme} cups-service-type" #. type: deffn -#: guix-git/doc/guix.texi:19568 +#: guix-git/doc/guix.texi:19930 msgid "The service type for the CUPS print server. Its value should be a valid CUPS configuration (see below). To use the default settings, simply write:" msgstr "Le type de service pour un serveur d'impression CUPS. Sa valeur devrait être une configuration CUPS valide (voir plus bas). Pour utiliser les paramètres par défaut, écrivez simplement :" #. type: lisp -#: guix-git/doc/guix.texi:19570 +#: guix-git/doc/guix.texi:19932 #, no-wrap msgid "(service cups-service-type)\n" msgstr "(service cups-service-type)\n" #. type: Plain text -#: guix-git/doc/guix.texi:19580 +#: guix-git/doc/guix.texi:19942 msgid "The CUPS configuration controls the basic things about your CUPS installation: what interfaces it listens on, what to do if a print job fails, how much logging to do, and so on. To actually add a printer, you have to visit the @url{http://localhost:631} URL, or use a tool such as GNOME's printer configuration services. By default, configuring a CUPS service will generate a self-signed certificate if needed, for secure connections to the print server." msgstr "La configuration de CUPS contrôle les paramètres de base de votre installation CUPS : sur quelles interfaces il doit écouter, que faire si un travail échoue, combien de journalisation il faut faire, etc. Pour ajouter une imprimante, vous devrez visiter l'URL @url{http://localhost:631} ou utiliser un outil comme les services de configuration d'imprimante de GNOME. Par défaut, la configuration du service CUPS générera un certificat auto-signé si besoin, pour les connexions sécurisée avec le serveur d'impression." #. type: Plain text -#: guix-git/doc/guix.texi:19586 +#: guix-git/doc/guix.texi:19948 msgid "Suppose you want to enable the Web interface of CUPS and also add support for Epson printers @i{via} the @code{epson-inkjet-printer-escpr} package and for HP printers @i{via} the @code{hplip-minimal} package. You can do that directly, like this (you need to use the @code{(gnu packages cups)} module):" msgstr "Supposons que vous souhaitiez activer l'interface Web de CUPS et ajouter le support pour les imprimantes Epson via le paquet @code{epson-inkjet-printer-escpr} et pour les imprimantes HP via le paquet @code{hplip-minimal}. Vous pouvez le faire directement, comme ceci (vous devez utiliser le module @code{(gnu packages cups)}) :" #. type: lisp -#: guix-git/doc/guix.texi:19593 +#: guix-git/doc/guix.texi:19955 #, no-wrap msgid "" "(service cups-service-type\n" @@ -36994,1589 +37661,1584 @@ msgstr "" " (list cups-filters epson-inkjet-printer-escpr hplip-minimal))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:19598 +#: guix-git/doc/guix.texi:19960 msgid "Note: If you wish to use the Qt5 based GUI which comes with the hplip package then it is suggested that you install the @code{hplip} package, either in your OS configuration file or as your user." msgstr "Remarque : si vous souhaitez utiliser la GUI basée sur Qt5 qui provient du paquet hplip, nous vous suggérons d'installer le paquet @code{hplip}, soit dans votre configuration d'OS, soit en tant qu'utilisateur." #. type: Plain text -#: guix-git/doc/guix.texi:19605 +#: guix-git/doc/guix.texi:19967 msgid "The available configuration parameters follow. Each parameter definition is preceded by its type; for example, @samp{string-list foo} indicates that the @code{foo} parameter should be specified as a list of strings. There is also a way to specify the configuration as a string, if you have an old @code{cupsd.conf} file that you want to port over from some other system; see the end for more details." msgstr "Les paramètres de configuration disponibles sont les suivants. Chaque définition des paramètres est précédé par son type ; par exemple, @samp{string-list toto} indique que le paramètre @code{toto} devrait être spécifié comme une liste de chaînes de caractères. Il y a aussi une manière de spécifier la configuration comme une chaîne de caractères, si vous avez un vieux fichier @code{cupsd.conf} que vous voulez porter depuis un autre système ; voir la fin pour plus de détails." #. type: Plain text -#: guix-git/doc/guix.texi:19616 +#: guix-git/doc/guix.texi:19978 msgid "Available @code{cups-configuration} fields are:" msgstr "Les champs de @code{cups-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:19617 +#: guix-git/doc/guix.texi:19979 #, no-wrap msgid "{@code{cups-configuration} parameter} package cups" msgstr "{paramètre de @code{cups-configuration}} package cups" #. type: deftypevr -#: guix-git/doc/guix.texi:19619 guix-git/doc/guix.texi:20387 +#: guix-git/doc/guix.texi:19981 guix-git/doc/guix.texi:20749 msgid "The CUPS package." msgstr "Le paquet CUPS." #. type: deftypevr -#: guix-git/doc/guix.texi:19621 +#: guix-git/doc/guix.texi:19983 #, no-wrap msgid "{@code{cups-configuration} parameter} package-list extensions (default: @code{(list brlaser cups-filters epson-inkjet-printer-escpr foomatic-filters hplip-minimal splix)})" msgstr "{paramètre de @code{cups-configuration}} package-list extensions (par défaut : @code{(list brlaser cups-filters epson-inkjet-printer-escpr foomatic-filters hplip-minimal splix)})" #. type: deftypevr -#: guix-git/doc/guix.texi:19623 +#: guix-git/doc/guix.texi:19985 msgid "Drivers and other extensions to the CUPS package." msgstr "Pilotes et autres extensions du paquet CUPS." #. type: deftypevr -#: guix-git/doc/guix.texi:19625 +#: guix-git/doc/guix.texi:19987 #, no-wrap msgid "{@code{cups-configuration} parameter} files-configuration files-configuration" msgstr "{paramètre de @code{cups-configuration}} files-configuration files-configuration" #. type: deftypevr -#: guix-git/doc/guix.texi:19628 +#: guix-git/doc/guix.texi:19990 msgid "Configuration of where to write logs, what directories to use for print spools, and related privileged configuration parameters." msgstr "Configuration de l'emplacement où écrire les journaux, quels répertoires utiliser pour les travaux d'impression et les paramètres de configuration privilégiés liés." #. type: deftypevr -#: guix-git/doc/guix.texi:19630 +#: guix-git/doc/guix.texi:19992 msgid "Available @code{files-configuration} fields are:" msgstr "Les champs @code{files-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:19631 +#: guix-git/doc/guix.texi:19993 #, no-wrap msgid "{@code{files-configuration} parameter} log-location access-log" msgstr "{paramètre de @code{files-configuration}} log-location access-log" #. type: deftypevr -#: guix-git/doc/guix.texi:19639 +#: guix-git/doc/guix.texi:20001 msgid "Defines the access log filename. Specifying a blank filename disables access log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-access_log}." msgstr "Définit le fichier de journal d'accès. Spécifier un nom de fichier vide désactive la génération de journaux d'accès. La valeur @code{stderr} fait que les entrées du journal seront envoyés sur l'erreur standard lorsque l'ordonnanceur est lancé au premier plan ou vers le démon de journal système lorsqu'il tourne en tâche de fond. La valeur @code{syslog} fait que les entrées du journal sont envoyées au démon de journalisation du système. Le nom du serveur peut être inclus dans les noms de fichiers avec la chaîne @code{%s}, comme dans @code{/var/log/cups/%s-access_log}." #. type: deftypevr -#: guix-git/doc/guix.texi:19641 +#: guix-git/doc/guix.texi:20003 msgid "Defaults to @samp{\"/var/log/cups/access_log\"}." msgstr "La valeur par défaut est @samp{\"/var/log/cups/access_log\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19643 +#: guix-git/doc/guix.texi:20005 #, no-wrap msgid "{@code{files-configuration} parameter} file-name cache-dir" msgstr "{paramètre de @code{files-configuration}} file-name cache-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:19645 +#: guix-git/doc/guix.texi:20007 msgid "Where CUPS should cache data." msgstr "L'emplacement où CUPS devrait mettre les données en cache." #. type: deftypevr -#: guix-git/doc/guix.texi:19647 +#: guix-git/doc/guix.texi:20009 msgid "Defaults to @samp{\"/var/cache/cups\"}." msgstr "La valeur par défaut est @samp{\"/var/cache/cups\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19649 +#: guix-git/doc/guix.texi:20011 #, no-wrap msgid "{@code{files-configuration} parameter} string config-file-perm" msgstr "{paramètre de @code{files-configuration}} string config-file-perm" #. type: deftypevr -#: guix-git/doc/guix.texi:19652 +#: guix-git/doc/guix.texi:20014 msgid "Specifies the permissions for all configuration files that the scheduler writes." msgstr "Spécifie les permissions pour tous les fichiers de configuration que l'ordonnanceur écrit." #. type: deftypevr -#: guix-git/doc/guix.texi:19658 +#: guix-git/doc/guix.texi:20020 msgid "Note that the permissions for the printers.conf file are currently masked to only allow access from the scheduler user (typically root). This is done because printer device URIs sometimes contain sensitive authentication information that should not be generally known on the system. There is no way to disable this security feature." msgstr "Remarquez que les permissions pour le fichier printers.conf sont actuellement masqués pour ne permettre que l'accès par l'utilisateur de l'ordonnanceur (typiquement root). La raison est que les URI des imprimantes contiennent des informations d'authentification sensibles qui ne devraient pas être connues sur le système. Il n'est pas possible de désactiver cette fonctionnalité de sécurité." #. type: deftypevr -#: guix-git/doc/guix.texi:19660 +#: guix-git/doc/guix.texi:20022 msgid "Defaults to @samp{\"0640\"}." msgstr "La valeur par défaut est @samp{\"0640\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19662 +#: guix-git/doc/guix.texi:20024 #, no-wrap msgid "{@code{files-configuration} parameter} log-location error-log" msgstr "{paramètre de @code{files-configuration}} log-location error-log" #. type: deftypevr -#: guix-git/doc/guix.texi:19670 +#: guix-git/doc/guix.texi:20032 msgid "Defines the error log filename. Specifying a blank filename disables error log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-error_log}." msgstr "Définit le fichier de journal d'erreur. Spécifier un nom de fichier vide désactive la génération de journaux d'erreur. La valeur @code{stderr} fait que les entrées du journal seront envoyés sur l'erreur standard lorsque l'ordonnanceur est lancé au premier plan ou vers le démon de journalisation du système lorsqu'il tourne en tâche de fond. La valeur @code{syslog} fait que les entrées du journal sont envoyées au démon de journalisation du système. Le nom du serveur peut être inclus dans les noms de fichiers avec la chaîne @code{%s}, comme dans @code{/var/log/cups/%s-error_log}." #. type: deftypevr -#: guix-git/doc/guix.texi:19672 +#: guix-git/doc/guix.texi:20034 msgid "Defaults to @samp{\"/var/log/cups/error_log\"}." msgstr "La valeur par défaut est @samp{\"/var/log/cups/error_log\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19674 +#: guix-git/doc/guix.texi:20036 #, no-wrap msgid "{@code{files-configuration} parameter} string fatal-errors" msgstr "{paramètre de @code{files-configuration}} string fatal-errors" #. type: deftypevr -#: guix-git/doc/guix.texi:19677 +#: guix-git/doc/guix.texi:20039 msgid "Specifies which errors are fatal, causing the scheduler to exit. The kind strings are:" msgstr "Spécifie quelles erreurs sont fatales, qui font terminer l'ordonnanceur. Les types de chaînes sont :" #. type: table -#: guix-git/doc/guix.texi:19681 +#: guix-git/doc/guix.texi:20043 msgid "No errors are fatal." msgstr "Aucune erreur n'est fatale." #. type: table -#: guix-git/doc/guix.texi:19684 +#: guix-git/doc/guix.texi:20046 msgid "All of the errors below are fatal." msgstr "Toutes les erreurs ci-dessous sont fatales." #. type: item -#: guix-git/doc/guix.texi:19685 +#: guix-git/doc/guix.texi:20047 #, no-wrap msgid "browse" msgstr "browse" #. type: table -#: guix-git/doc/guix.texi:19688 +#: guix-git/doc/guix.texi:20050 msgid "Browsing initialization errors are fatal, for example failed connections to the DNS-SD daemon." msgstr "Les erreurs d'initialisation de la navigation sont fatales, par exemple les connexion échouées au démon DNS-SD." #. type: item -#: guix-git/doc/guix.texi:19689 +#: guix-git/doc/guix.texi:20051 #, no-wrap msgid "config" msgstr "config" #. type: table -#: guix-git/doc/guix.texi:19691 +#: guix-git/doc/guix.texi:20053 msgid "Configuration file syntax errors are fatal." msgstr "Les erreurs de syntaxe du fichier de configuration sont fatale." #. type: item -#: guix-git/doc/guix.texi:19692 +#: guix-git/doc/guix.texi:20054 #, no-wrap msgid "listen" msgstr "listen" #. type: table -#: guix-git/doc/guix.texi:19695 +#: guix-git/doc/guix.texi:20057 msgid "Listen or Port errors are fatal, except for IPv6 failures on the loopback or @code{any} addresses." msgstr "Les erreurs d'écoute ou de port sont fatales, sauf pour les erreurs d'IPv6 sur la boucle locale ou les adresses @code{any}." #. type: item -#: guix-git/doc/guix.texi:19696 +#: guix-git/doc/guix.texi:20058 #, no-wrap msgid "log" msgstr "log" #. type: table -#: guix-git/doc/guix.texi:19698 +#: guix-git/doc/guix.texi:20060 msgid "Log file creation or write errors are fatal." msgstr "Les erreurs de création ou d'écriture des fichiers de journal sont fatales." #. type: item -#: guix-git/doc/guix.texi:19699 +#: guix-git/doc/guix.texi:20061 #, no-wrap msgid "permissions" msgstr "permissions" #. type: table -#: guix-git/doc/guix.texi:19702 +#: guix-git/doc/guix.texi:20064 msgid "Bad startup file permissions are fatal, for example shared TLS certificate and key files with world-read permissions." msgstr "Les mauvaises permissions des fichiers de démarrage sont fatales, par exemple un certificat TLS et des fichiers de clefs avec des permissions permettant la lecture à tout le monde." #. type: deftypevr -#: guix-git/doc/guix.texi:19705 +#: guix-git/doc/guix.texi:20067 msgid "Defaults to @samp{\"all -browse\"}." msgstr "La valeur par défaut est @samp{\"all -browse\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19707 +#: guix-git/doc/guix.texi:20069 #, no-wrap msgid "{@code{files-configuration} parameter} boolean file-device?" msgstr "{paramètre de @code{files-configuration}} boolean file-device?" #. type: deftypevr -#: guix-git/doc/guix.texi:19710 +#: guix-git/doc/guix.texi:20072 msgid "Specifies whether the file pseudo-device can be used for new printer queues. The URI @uref{file:///dev/null} is always allowed." msgstr "Spécifie si le fichier de pseudo-périphérique peut être utilisé pour de nouvelles queues d'impression. L'URI @uref{file:///dev/null} est toujours permise." #. type: deftypevr -#: guix-git/doc/guix.texi:19714 +#: guix-git/doc/guix.texi:20076 #, no-wrap msgid "{@code{files-configuration} parameter} string group" msgstr "{paramètre de @code{files-configuration}} string group" #. type: deftypevr -#: guix-git/doc/guix.texi:19717 +#: guix-git/doc/guix.texi:20079 msgid "Specifies the group name or ID that will be used when executing external programs." msgstr "Spécifie le nom ou l'ID du groupe qui sera utilisé lors de l'exécution de programmes externes." #. type: deftypevr -#: guix-git/doc/guix.texi:19719 guix-git/doc/guix.texi:19805 +#: guix-git/doc/guix.texi:20081 guix-git/doc/guix.texi:20167 msgid "Defaults to @samp{\"lp\"}." msgstr "La valeur par défaut est @samp{\"lp\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19721 -#, fuzzy, no-wrap -#| msgid "{@code{files-configuration} parameter} string log-file-perm" +#: guix-git/doc/guix.texi:20083 +#, no-wrap msgid "{@code{files-configuration} parameter} string log-file-group" -msgstr "{paramètre de @code{files-configuration}} string log-file-perm" +msgstr "{paramètre de @code{files-configuration}} string log-file-group" #. type: deftypevr -#: guix-git/doc/guix.texi:19723 +#: guix-git/doc/guix.texi:20085 #, fuzzy #| msgid "Specifies the group name or ID that will be used when executing external programs." msgid "Specifies the group name or ID that will be used for log files." msgstr "Spécifie le nom ou l'ID du groupe qui sera utilisé lors de l'exécution de programmes externes." #. type: deftypevr -#: guix-git/doc/guix.texi:19725 -#, fuzzy -#| msgid "Defaults to @samp{\"lp\"}." +#: guix-git/doc/guix.texi:20087 msgid "Defaults to @samp{\"lpadmin\"}." -msgstr "La valeur par défaut est @samp{\"lp\"}." +msgstr "La valeur par défaut est @samp{\"lpadmin\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19727 +#: guix-git/doc/guix.texi:20089 #, no-wrap msgid "{@code{files-configuration} parameter} string log-file-perm" msgstr "{paramètre de @code{files-configuration}} string log-file-perm" #. type: deftypevr -#: guix-git/doc/guix.texi:19729 +#: guix-git/doc/guix.texi:20091 msgid "Specifies the permissions for all log files that the scheduler writes." msgstr "Spécifie les permissions pour tous les fichiers de journal que l'ordonnanceur écrit." #. type: deftypevr -#: guix-git/doc/guix.texi:19731 +#: guix-git/doc/guix.texi:20093 msgid "Defaults to @samp{\"0644\"}." msgstr "La valeur par défaut est @samp{\"0644\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19733 +#: guix-git/doc/guix.texi:20095 #, no-wrap msgid "{@code{files-configuration} parameter} log-location page-log" msgstr "{paramètre de @code{files-configuration}} log-location page-log" #. type: deftypevr -#: guix-git/doc/guix.texi:19741 +#: guix-git/doc/guix.texi:20103 msgid "Defines the page log filename. Specifying a blank filename disables page log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-page_log}." msgstr "Définit le fichier de journal de page. Spécifier un nom de fichier vide désactive la génération de journaux de pages. La valeur @code{stderr} fait que les entrées du journal seront envoyés sur l'erreur standard lorsque l'ordonnanceur est lancé au premier plan ou vers le démon de journal système lorsqu'il tourne en tâche de fond. La valeur @code{syslog} fait que les entrées du journal sont envoyées au démon de journalisation du système. Le nom du serveur peut être inclus dans les noms de fichiers avec la chaîne @code{%s}, comme dans @code{/var/log/cups/%s-page_log}." #. type: deftypevr -#: guix-git/doc/guix.texi:19743 +#: guix-git/doc/guix.texi:20105 msgid "Defaults to @samp{\"/var/log/cups/page_log\"}." msgstr "La valeur par défaut est @samp{\"/var/log/cups/page_log\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19745 +#: guix-git/doc/guix.texi:20107 #, no-wrap msgid "{@code{files-configuration} parameter} string remote-root" msgstr "{paramètre de @code{files-configuration}} string remote-root" #. type: deftypevr -#: guix-git/doc/guix.texi:19748 +#: guix-git/doc/guix.texi:20110 msgid "Specifies the username that is associated with unauthenticated accesses by clients claiming to be the root user. The default is @code{remroot}." msgstr "Spécifie le nom d'utilisateur associé aux accès non authentifiés par des clients qui se disent être l'utilisateur root. La valeur par défaut est @code{remroot}." #. type: deftypevr -#: guix-git/doc/guix.texi:19750 +#: guix-git/doc/guix.texi:20112 msgid "Defaults to @samp{\"remroot\"}." msgstr "La valeur par défaut est @samp{\"remroot\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19752 +#: guix-git/doc/guix.texi:20114 #, no-wrap msgid "{@code{files-configuration} parameter} file-name request-root" msgstr "{paramètre de @code{files-configuration}} file-name request-root" #. type: deftypevr -#: guix-git/doc/guix.texi:19755 +#: guix-git/doc/guix.texi:20117 msgid "Specifies the directory that contains print jobs and other HTTP request data." msgstr "Spécifie le répertoire qui contient les travaux d'impression et d'autres données des requêtes HTTP." #. type: deftypevr -#: guix-git/doc/guix.texi:19757 +#: guix-git/doc/guix.texi:20119 msgid "Defaults to @samp{\"/var/spool/cups\"}." msgstr "La valeur par défaut est @samp{\"/var/spool/cups\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19759 +#: guix-git/doc/guix.texi:20121 #, no-wrap msgid "{@code{files-configuration} parameter} sandboxing sandboxing" msgstr "{paramètre de @code{files-configuration}} sandboxing sandboxing" #. type: deftypevr -#: guix-git/doc/guix.texi:19764 +#: guix-git/doc/guix.texi:20126 msgid "Specifies the level of security sandboxing that is applied to print filters, backends, and other child processes of the scheduler; either @code{relaxed} or @code{strict}. This directive is currently only used/supported on macOS." msgstr "Spécifie le niveau d'isolation de sécurité appliqué aux filtres d'impression, aux moteurs et aux autres processus fils de l'ordonnanceur ; soit @code{relaxed} soit @code{strict}. Cette directive n'est actuellement utilisée et supportée que sur macOS." #. type: deftypevr -#: guix-git/doc/guix.texi:19766 +#: guix-git/doc/guix.texi:20128 msgid "Defaults to @samp{strict}." msgstr "La valeur par défaut est @samp{strict}." #. type: deftypevr -#: guix-git/doc/guix.texi:19768 +#: guix-git/doc/guix.texi:20130 #, no-wrap msgid "{@code{files-configuration} parameter} file-name server-keychain" msgstr "{paramètre de @code{files-configuration}} file-name server-keychain" #. type: deftypevr -#: guix-git/doc/guix.texi:19773 +#: guix-git/doc/guix.texi:20135 msgid "Specifies the location of TLS certificates and private keys. CUPS will look for public and private keys in this directory: @file{.crt} files for PEM-encoded certificates and corresponding @file{.key} files for PEM-encoded private keys." msgstr "Spécifie l'emplacement des certifications TLS et des clés privées. CUPS cherchera les clés publiques et privées dans ce répertoire : un fichier @file{.crt} pour un certificat encodé en PEM et le fichier @file{.key} correspondant pour la clé privée encodée en PEM." #. type: deftypevr -#: guix-git/doc/guix.texi:19775 +#: guix-git/doc/guix.texi:20137 msgid "Defaults to @samp{\"/etc/cups/ssl\"}." msgstr "La valeur par défaut est @samp{\"/etc/cups/ssl\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19777 +#: guix-git/doc/guix.texi:20139 #, no-wrap msgid "{@code{files-configuration} parameter} file-name server-root" msgstr "{paramètre de @code{files-configuration}} file-name server-root" #. type: deftypevr -#: guix-git/doc/guix.texi:19779 +#: guix-git/doc/guix.texi:20141 msgid "Specifies the directory containing the server configuration files." msgstr "Spécifie le répertoire contenant les fichiers de configuration du serveur." #. type: deftypevr -#: guix-git/doc/guix.texi:19781 +#: guix-git/doc/guix.texi:20143 msgid "Defaults to @samp{\"/etc/cups\"}." msgstr "La valeur par défaut est @samp{\"/etc/cups\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19783 +#: guix-git/doc/guix.texi:20145 #, no-wrap msgid "{@code{files-configuration} parameter} boolean sync-on-close?" msgstr "{paramètre de @code{files-configuration}} boolean sync-on-close?" #. type: deftypevr -#: guix-git/doc/guix.texi:19786 +#: guix-git/doc/guix.texi:20148 msgid "Specifies whether the scheduler calls fsync(2) after writing configuration or state files." msgstr "Spécifie si l'ordonnanceur appelle fsync(2) après avoir écrit la configuration ou les fichiers d'état." #. type: deftypevr -#: guix-git/doc/guix.texi:19790 +#: guix-git/doc/guix.texi:20152 #, no-wrap msgid "{@code{files-configuration} parameter} space-separated-string-list system-group" msgstr "{paramètre de @code{files-configuration}} space-separated-string-list system-group" #. type: deftypevr -#: guix-git/doc/guix.texi:19792 +#: guix-git/doc/guix.texi:20154 msgid "Specifies the group(s) to use for @code{@@SYSTEM} group authentication." msgstr "Spécifie le groupe ou les groupes à utiliser pour l'authentification du groupe @code{@@SYSTEM}." #. type: deftypevr -#: guix-git/doc/guix.texi:19794 +#: guix-git/doc/guix.texi:20156 #, no-wrap msgid "{@code{files-configuration} parameter} file-name temp-dir" msgstr "{paramètre de @code{files-configuration}} file-name temp-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:19796 +#: guix-git/doc/guix.texi:20158 msgid "Specifies the directory where temporary files are stored." msgstr "Spécifie le répertoire où les fichiers temporaires sont stockés." #. type: deftypevr -#: guix-git/doc/guix.texi:19798 +#: guix-git/doc/guix.texi:20160 msgid "Defaults to @samp{\"/var/spool/cups/tmp\"}." msgstr "La valeur par défaut est @samp{\"/var/spool/cups/tmp\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19800 +#: guix-git/doc/guix.texi:20162 #, no-wrap msgid "{@code{files-configuration} parameter} string user" msgstr "{paramètre de @code{files-configuration}} string user" #. type: deftypevr -#: guix-git/doc/guix.texi:19803 +#: guix-git/doc/guix.texi:20165 msgid "Specifies the user name or ID that is used when running external programs." msgstr "Spécifie le nom d'utilisateur ou l'ID utilisé pour lancer des programmes externes." #. type: deftypevr -#: guix-git/doc/guix.texi:19807 +#: guix-git/doc/guix.texi:20169 #, no-wrap msgid "{@code{files-configuration} parameter} string set-env" msgstr "{paramètre de @code{files-configuration}} string set-env" #. type: deftypevr -#: guix-git/doc/guix.texi:19809 +#: guix-git/doc/guix.texi:20171 msgid "Set the specified environment variable to be passed to child processes." msgstr "Indique que la variable d'environnement spécifiée doit être passée aux processus fils." #. type: deftypevr -#: guix-git/doc/guix.texi:19811 +#: guix-git/doc/guix.texi:20173 msgid "Defaults to @samp{\"variable value\"}." msgstr "La valeur par défaut est @samp{\"variable value\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19814 +#: guix-git/doc/guix.texi:20176 #, no-wrap msgid "{@code{cups-configuration} parameter} access-log-level access-log-level" msgstr "{paramètre de @code{cups-configuration}} access-log-level access-log-level" #. type: deftypevr -#: guix-git/doc/guix.texi:19821 +#: guix-git/doc/guix.texi:20183 msgid "Specifies the logging level for the AccessLog file. The @code{config} level logs when printers and classes are added, deleted, or modified and when configuration files are accessed or updated. The @code{actions} level logs when print jobs are submitted, held, released, modified, or canceled, and any of the conditions for @code{config}. The @code{all} level logs all requests." msgstr "Spécifie le niveau de journalisation pour le fichier AccessLog. Le niveau @code{config} enregistre les ajouts, suppressions et modifications d'imprimantes et de classes et lorsque les fichiers de configuration sont accédés ou mis à jour. Le niveau @code{actions} enregistre la soumission, la suspension, la libération, la modification et l'annulation des travaux et toutes les conditions de @code{config}. Le niveau @code{all} enregistre toutes les requêtes." #. type: deftypevr -#: guix-git/doc/guix.texi:19823 +#: guix-git/doc/guix.texi:20185 msgid "Defaults to @samp{actions}." msgstr "La valeur par défaut est @samp{actions}." #. type: deftypevr -#: guix-git/doc/guix.texi:19825 +#: guix-git/doc/guix.texi:20187 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean auto-purge-jobs?" msgstr "{paramètre de @code{cups-configuration}} boolean auto-purge-jobs?" #. type: deftypevr -#: guix-git/doc/guix.texi:19828 +#: guix-git/doc/guix.texi:20190 msgid "Specifies whether to purge job history data automatically when it is no longer required for quotas." msgstr "Spécifie s'il faut vider l'historique des travaux automatiquement lorsqu'il n'est plus nécessaire pour les quotas." #. type: deftypevr -#: guix-git/doc/guix.texi:19832 +#: guix-git/doc/guix.texi:20194 #, no-wrap msgid "{@code{cups-configuration} parameter} comma-separated-string-list browse-dns-sd-sub-types" msgstr "{paramètre de @code{cups-configuration}} comma-separated-string-list browse-dns-sd-sub-types" #. type: deftypevr -#: guix-git/doc/guix.texi:19836 +#: guix-git/doc/guix.texi:20198 msgid "Specifies a list of DNS-SD sub-types to advertise for each shared printer. For example, @samp{\"_cups\" \"_print\"} will tell network clients that both CUPS sharing and IPP Everywhere are supported." msgstr "Spécifie une liste de sous-types DNS-SD à annoncer pour chaque imprimante connectée. Par exemple, @samp{\" cups\" \" print\"} dira aux clients réseaux que le partage CUPS et IPP Everywhere sont pris en charge." #. type: deftypevr -#: guix-git/doc/guix.texi:19838 +#: guix-git/doc/guix.texi:20200 msgid "Defaults to @samp{\"_cups\"}." msgstr "La valeur par défaut est @samp{\" cups\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19840 +#: guix-git/doc/guix.texi:20202 #, no-wrap msgid "{@code{cups-configuration} parameter} browse-local-protocols browse-local-protocols" msgstr "{paramètre de @code{cups-configuration}} browse-local-protocols browse-local-protocols" #. type: deftypevr -#: guix-git/doc/guix.texi:19842 +#: guix-git/doc/guix.texi:20204 msgid "Specifies which protocols to use for local printer sharing." msgstr "Spécifie les protocoles à utiliser pour partager les imprimantes sur le réseau local." #. type: deftypevr -#: guix-git/doc/guix.texi:19844 +#: guix-git/doc/guix.texi:20206 msgid "Defaults to @samp{dnssd}." msgstr "La valeur par défaut est @samp{dnssd}." #. type: deftypevr -#: guix-git/doc/guix.texi:19846 +#: guix-git/doc/guix.texi:20208 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean browse-web-if?" msgstr "{paramètre de @code{cups-configuration}} boolean browse-web-if?" #. type: deftypevr -#: guix-git/doc/guix.texi:19848 +#: guix-git/doc/guix.texi:20210 msgid "Specifies whether the CUPS web interface is advertised." msgstr "Spécifie si l'interface web de CUPS est annoncée." #. type: deftypevr -#: guix-git/doc/guix.texi:19852 +#: guix-git/doc/guix.texi:20214 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean browsing?" msgstr "{paramètre de @code{cups-configuration}} boolean browsing?" #. type: deftypevr -#: guix-git/doc/guix.texi:19854 +#: guix-git/doc/guix.texi:20216 msgid "Specifies whether shared printers are advertised." msgstr "Spécifie si les imprimantes partagées sont annoncées." #. type: deftypevr -#: guix-git/doc/guix.texi:19858 +#: guix-git/doc/guix.texi:20220 #, no-wrap msgid "{@code{cups-configuration} parameter} string classification" msgstr "{paramètre de @code{cups-configuration}} string classification" #. type: deftypevr -#: guix-git/doc/guix.texi:19863 +#: guix-git/doc/guix.texi:20225 msgid "Specifies the security classification of the server. Any valid banner name can be used, including @samp{\"classified\"}, @samp{\"confidential\"}, @samp{\"secret\"}, @samp{\"topsecret\"}, and @samp{\"unclassified\"}, or the banner can be omitted to disable secure printing functions." msgstr "Spécifie la classification de sécurité du serveur. N'importe quel nom de bannière peut être utilisé, comme @samp{\"classified\"}, @samp{\"confidential\"}, @samp{\"secret\"}, @samp{\"topsecret\"} et @samp{\"unclassified\"} ou la bannière peut être omise pour désactiver les fonctions d'impression sécurisées." #. type: deftypevr -#: guix-git/doc/guix.texi:19865 guix-git/doc/guix.texi:20196 -#: guix-git/doc/guix.texi:22180 guix-git/doc/guix.texi:22192 -#: guix-git/doc/guix.texi:22220 guix-git/doc/guix.texi:22977 -#: guix-git/doc/guix.texi:22991 guix-git/doc/guix.texi:22998 -#: guix-git/doc/guix.texi:23005 guix-git/doc/guix.texi:23035 -#: guix-git/doc/guix.texi:23133 guix-git/doc/guix.texi:25252 -#: guix-git/doc/guix.texi:25278 guix-git/doc/guix.texi:25314 -#: guix-git/doc/guix.texi:25360 guix-git/doc/guix.texi:25379 -#: guix-git/doc/guix.texi:25418 guix-git/doc/guix.texi:25477 -#: guix-git/doc/guix.texi:25487 guix-git/doc/guix.texi:30085 -#: guix-git/doc/guix.texi:30093 guix-git/doc/guix.texi:30101 -#: guix-git/doc/guix.texi:30109 guix-git/doc/guix.texi:30388 -#: guix-git/doc/guix.texi:31743 guix-git/doc/guix.texi:31751 -#: guix-git/doc/guix.texi:31759 guix-git/doc/guix.texi:31867 -#: guix-git/doc/guix.texi:31892 guix-git/doc/guix.texi:32023 -#: guix-git/doc/guix.texi:32031 guix-git/doc/guix.texi:32039 -#: guix-git/doc/guix.texi:32047 guix-git/doc/guix.texi:32055 -#: guix-git/doc/guix.texi:32063 guix-git/doc/guix.texi:32086 -#: guix-git/doc/guix.texi:32094 guix-git/doc/guix.texi:32146 -#: guix-git/doc/guix.texi:32162 guix-git/doc/guix.texi:32170 -#: guix-git/doc/guix.texi:32209 guix-git/doc/guix.texi:32232 -#: guix-git/doc/guix.texi:32254 guix-git/doc/guix.texi:32261 -#: guix-git/doc/guix.texi:32296 guix-git/doc/guix.texi:32304 -#: guix-git/doc/guix.texi:32328 guix-git/doc/guix.texi:32360 -#: guix-git/doc/guix.texi:32389 guix-git/doc/guix.texi:32396 -#: guix-git/doc/guix.texi:32403 guix-git/doc/guix.texi:32411 -#: guix-git/doc/guix.texi:32425 guix-git/doc/guix.texi:32434 -#: guix-git/doc/guix.texi:32444 guix-git/doc/guix.texi:32451 -#: guix-git/doc/guix.texi:32458 guix-git/doc/guix.texi:32465 -#: guix-git/doc/guix.texi:32536 guix-git/doc/guix.texi:32543 -#: guix-git/doc/guix.texi:32550 guix-git/doc/guix.texi:32559 -#: guix-git/doc/guix.texi:32575 guix-git/doc/guix.texi:32582 -#: guix-git/doc/guix.texi:32589 guix-git/doc/guix.texi:32596 -#: guix-git/doc/guix.texi:32604 guix-git/doc/guix.texi:32612 +#: guix-git/doc/guix.texi:20227 guix-git/doc/guix.texi:20558 +#: guix-git/doc/guix.texi:22542 guix-git/doc/guix.texi:22554 +#: guix-git/doc/guix.texi:22582 guix-git/doc/guix.texi:23339 +#: guix-git/doc/guix.texi:23353 guix-git/doc/guix.texi:23360 +#: guix-git/doc/guix.texi:23367 guix-git/doc/guix.texi:23397 +#: guix-git/doc/guix.texi:23495 guix-git/doc/guix.texi:25614 +#: guix-git/doc/guix.texi:25640 guix-git/doc/guix.texi:25676 +#: guix-git/doc/guix.texi:25722 guix-git/doc/guix.texi:25741 +#: guix-git/doc/guix.texi:25780 guix-git/doc/guix.texi:30450 +#: guix-git/doc/guix.texi:30458 guix-git/doc/guix.texi:30466 +#: guix-git/doc/guix.texi:30474 guix-git/doc/guix.texi:30753 +#: guix-git/doc/guix.texi:32108 guix-git/doc/guix.texi:32116 +#: guix-git/doc/guix.texi:32124 guix-git/doc/guix.texi:32232 +#: guix-git/doc/guix.texi:32257 guix-git/doc/guix.texi:32388 +#: guix-git/doc/guix.texi:32396 guix-git/doc/guix.texi:32404 +#: guix-git/doc/guix.texi:32412 guix-git/doc/guix.texi:32420 +#: guix-git/doc/guix.texi:32428 guix-git/doc/guix.texi:32451 +#: guix-git/doc/guix.texi:32459 guix-git/doc/guix.texi:32511 +#: guix-git/doc/guix.texi:32527 guix-git/doc/guix.texi:32535 +#: guix-git/doc/guix.texi:32574 guix-git/doc/guix.texi:32597 +#: guix-git/doc/guix.texi:32619 guix-git/doc/guix.texi:32626 +#: guix-git/doc/guix.texi:32661 guix-git/doc/guix.texi:32669 +#: guix-git/doc/guix.texi:32693 guix-git/doc/guix.texi:32725 +#: guix-git/doc/guix.texi:32754 guix-git/doc/guix.texi:32761 +#: guix-git/doc/guix.texi:32768 guix-git/doc/guix.texi:32776 +#: guix-git/doc/guix.texi:32790 guix-git/doc/guix.texi:32799 +#: guix-git/doc/guix.texi:32809 guix-git/doc/guix.texi:32816 +#: guix-git/doc/guix.texi:32823 guix-git/doc/guix.texi:32830 +#: guix-git/doc/guix.texi:32901 guix-git/doc/guix.texi:32908 +#: guix-git/doc/guix.texi:32915 guix-git/doc/guix.texi:32924 +#: guix-git/doc/guix.texi:32940 guix-git/doc/guix.texi:32947 +#: guix-git/doc/guix.texi:32954 guix-git/doc/guix.texi:32961 +#: guix-git/doc/guix.texi:32969 guix-git/doc/guix.texi:32977 msgid "Defaults to @samp{\"\"}." msgstr "La valeur par défaut est @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19867 +#: guix-git/doc/guix.texi:20229 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean classify-override?" msgstr "{paramètre de @code{cups-configuration}} boolean classify-override?" #. type: deftypevr -#: guix-git/doc/guix.texi:19870 +#: guix-git/doc/guix.texi:20232 msgid "Specifies whether users may override the classification (cover page) of individual print jobs using the @code{job-sheets} option." msgstr "Spécifie si les utilisateurs peuvent remplacer la classification (page de couverture) des travaux d'impression individuels avec l'option @code{job-sheets}." #. type: deftypevr -#: guix-git/doc/guix.texi:19874 +#: guix-git/doc/guix.texi:20236 #, no-wrap msgid "{@code{cups-configuration} parameter} default-auth-type default-auth-type" msgstr "{paramètre de @code{cups-configuration}} default-auth-type default-auth-type" #. type: deftypevr -#: guix-git/doc/guix.texi:19876 +#: guix-git/doc/guix.texi:20238 msgid "Specifies the default type of authentication to use." msgstr "Spécifie le type d'authentification par défaut à utiliser." #. type: deftypevr -#: guix-git/doc/guix.texi:19878 +#: guix-git/doc/guix.texi:20240 msgid "Defaults to @samp{Basic}." msgstr "La valeur par défaut est @samp{Basic}." #. type: deftypevr -#: guix-git/doc/guix.texi:19880 +#: guix-git/doc/guix.texi:20242 #, no-wrap msgid "{@code{cups-configuration} parameter} default-encryption default-encryption" msgstr "{paramètre de @code{cups-configuration}} default-encryption default-encryption" #. type: deftypevr -#: guix-git/doc/guix.texi:19882 +#: guix-git/doc/guix.texi:20244 msgid "Specifies whether encryption will be used for authenticated requests." msgstr "Spécifie si le chiffrement sera utilisé pour les requêtes authentifiées." #. type: deftypevr -#: guix-git/doc/guix.texi:19884 +#: guix-git/doc/guix.texi:20246 msgid "Defaults to @samp{Required}." msgstr "La valeur par défaut est @samp{Required}." #. type: deftypevr -#: guix-git/doc/guix.texi:19886 +#: guix-git/doc/guix.texi:20248 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-language" msgstr "{paramètre de @code{cups-configuration}} string default-language" #. type: deftypevr -#: guix-git/doc/guix.texi:19888 +#: guix-git/doc/guix.texi:20250 msgid "Specifies the default language to use for text and web content." msgstr "Spécifie la langue par défaut à utiliser pour le contenu textuel et web." #. type: deftypevr -#: guix-git/doc/guix.texi:19890 +#: guix-git/doc/guix.texi:20252 msgid "Defaults to @samp{\"en\"}." msgstr "La valeur par défaut est @samp{\"en\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19892 +#: guix-git/doc/guix.texi:20254 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-paper-size" msgstr "{paramètre de @code{cups-configuration}} string default-paper-size" #. type: deftypevr -#: guix-git/doc/guix.texi:19897 +#: guix-git/doc/guix.texi:20259 msgid "Specifies the default paper size for new print queues. @samp{\"Auto\"} uses a locale-specific default, while @samp{\"None\"} specifies there is no default paper size. Specific size names are typically @samp{\"Letter\"} or @samp{\"A4\"}." msgstr "Spécifie la taille de papier par défaut pour les nouvelles queues d'impression. @samp{\"Auto\"} utilise la valeur par défaut du paramètre de régionalisation, tandis que @samp{\"None\"} spécifie qu'il n'y a pas de taille par défaut. Des noms de tailles spécifique sont par exemple @samp{\"Letter\"} et @samp{\"A4\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19899 +#: guix-git/doc/guix.texi:20261 msgid "Defaults to @samp{\"Auto\"}." msgstr "La valeur par défaut est @samp{\"Auto\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19901 +#: guix-git/doc/guix.texi:20263 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-policy" msgstr "{paramètre de @code{cups-configuration}} string default-policy" #. type: deftypevr -#: guix-git/doc/guix.texi:19903 +#: guix-git/doc/guix.texi:20265 msgid "Specifies the default access policy to use." msgstr "Spécifie la politique d'accès par défaut à utiliser." #. type: deftypevr -#: guix-git/doc/guix.texi:19905 +#: guix-git/doc/guix.texi:20267 msgid "Defaults to @samp{\"default\"}." msgstr "La valeur par défaut est @samp{\"default\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:19907 +#: guix-git/doc/guix.texi:20269 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean default-shared?" msgstr "{paramètre de @code{cups-configuration}} boolean default-shared?" #. type: deftypevr -#: guix-git/doc/guix.texi:19909 +#: guix-git/doc/guix.texi:20271 msgid "Specifies whether local printers are shared by default." msgstr "Spécifie si les imprimantes locales sont partagées par défaut." #. type: deftypevr -#: guix-git/doc/guix.texi:19911 guix-git/doc/guix.texi:19991 -#: guix-git/doc/guix.texi:20281 guix-git/doc/guix.texi:23067 -#: guix-git/doc/guix.texi:23118 guix-git/doc/guix.texi:23125 -#: guix-git/doc/guix.texi:24407 guix-git/doc/guix.texi:24595 -#: guix-git/doc/guix.texi:24712 guix-git/doc/guix.texi:24748 -#: guix-git/doc/guix.texi:24799 guix-git/doc/guix.texi:24818 -#: guix-git/doc/guix.texi:24828 guix-git/doc/guix.texi:24838 -#: guix-git/doc/guix.texi:24897 guix-git/doc/guix.texi:24919 -#: guix-git/doc/guix.texi:24944 guix-git/doc/guix.texi:24970 -#: guix-git/doc/guix.texi:24988 guix-git/doc/guix.texi:28180 -#: guix-git/doc/guix.texi:28208 guix-git/doc/guix.texi:28344 -#: guix-git/doc/guix.texi:28351 guix-git/doc/guix.texi:28359 -#: guix-git/doc/guix.texi:28396 guix-git/doc/guix.texi:28410 -#: guix-git/doc/guix.texi:28499 guix-git/doc/guix.texi:28506 -#: guix-git/doc/guix.texi:28514 guix-git/doc/guix.texi:29293 -#: guix-git/doc/guix.texi:29433 guix-git/doc/guix.texi:29619 -#: guix-git/doc/guix.texi:29626 guix-git/doc/guix.texi:29648 -#: guix-git/doc/guix.texi:29687 guix-git/doc/guix.texi:29707 -#: guix-git/doc/guix.texi:29721 guix-git/doc/guix.texi:29934 -#: guix-git/doc/guix.texi:31845 guix-git/doc/guix.texi:31933 -#: guix-git/doc/guix.texi:31949 guix-git/doc/guix.texi:31999 +#: guix-git/doc/guix.texi:20273 guix-git/doc/guix.texi:20353 +#: guix-git/doc/guix.texi:20643 guix-git/doc/guix.texi:23429 +#: guix-git/doc/guix.texi:23480 guix-git/doc/guix.texi:23487 +#: guix-git/doc/guix.texi:24769 guix-git/doc/guix.texi:24957 +#: guix-git/doc/guix.texi:25074 guix-git/doc/guix.texi:25110 +#: guix-git/doc/guix.texi:25161 guix-git/doc/guix.texi:25180 +#: guix-git/doc/guix.texi:25190 guix-git/doc/guix.texi:25200 +#: guix-git/doc/guix.texi:25259 guix-git/doc/guix.texi:25281 +#: guix-git/doc/guix.texi:25306 guix-git/doc/guix.texi:25332 +#: guix-git/doc/guix.texi:25350 guix-git/doc/guix.texi:28517 +#: guix-git/doc/guix.texi:28545 guix-git/doc/guix.texi:28681 +#: guix-git/doc/guix.texi:28688 guix-git/doc/guix.texi:28696 +#: guix-git/doc/guix.texi:28733 guix-git/doc/guix.texi:28747 +#: guix-git/doc/guix.texi:28836 guix-git/doc/guix.texi:28843 +#: guix-git/doc/guix.texi:28851 guix-git/doc/guix.texi:29630 +#: guix-git/doc/guix.texi:29770 guix-git/doc/guix.texi:29984 +#: guix-git/doc/guix.texi:29991 guix-git/doc/guix.texi:30013 +#: guix-git/doc/guix.texi:30052 guix-git/doc/guix.texi:30072 +#: guix-git/doc/guix.texi:30086 guix-git/doc/guix.texi:30299 +#: guix-git/doc/guix.texi:32210 guix-git/doc/guix.texi:32298 +#: guix-git/doc/guix.texi:32314 guix-git/doc/guix.texi:32364 msgid "Defaults to @samp{#t}." msgstr "La valeur par défaut est @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:19913 +#: guix-git/doc/guix.texi:20275 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer dirty-clean-interval" msgstr "{paramètre de @code{cups-configuration}} non-negative-integer dirty-clean-interval" #. type: deftypevr -#: guix-git/doc/guix.texi:19917 +#: guix-git/doc/guix.texi:20279 msgid "Specifies the delay for updating of configuration and state files, in seconds. A value of 0 causes the update to happen as soon as possible, typically within a few milliseconds." msgstr "Spécifie le délai pour mettre à jour les fichiers de configuration et d'état. Une valeur de 0 fait que la mise à jour arrive aussi vite que possible, typiquement en quelques millisecondes." #. type: deftypevr -#: guix-git/doc/guix.texi:19919 guix-git/doc/guix.texi:19967 -#: guix-git/doc/guix.texi:19976 guix-git/doc/guix.texi:20288 -#: guix-git/doc/guix.texi:24757 guix-git/doc/guix.texi:24790 +#: guix-git/doc/guix.texi:20281 guix-git/doc/guix.texi:20329 +#: guix-git/doc/guix.texi:20338 guix-git/doc/guix.texi:20650 +#: guix-git/doc/guix.texi:25119 guix-git/doc/guix.texi:25152 msgid "Defaults to @samp{30}." msgstr "La valeur par défaut est @samp{30}." #. type: deftypevr -#: guix-git/doc/guix.texi:19921 +#: guix-git/doc/guix.texi:20283 #, no-wrap msgid "{@code{cups-configuration} parameter} error-policy error-policy" msgstr "{paramètre de @code{cups-configuration}} error-policy error-policy" #. type: deftypevr -#: guix-git/doc/guix.texi:19927 +#: guix-git/doc/guix.texi:20289 msgid "Specifies what to do when an error occurs. Possible values are @code{abort-job}, which will discard the failed print job; @code{retry-job}, which will retry the job at a later time; @code{retry-current-job}, which retries the failed job immediately; and @code{stop-printer}, which stops the printer." msgstr "Spécifie ce qu'il faut faire si une erreur a lieu. Les valeurs possibles sont @code{abort-job}, qui supprimera les travaux d'impression en échec ; @code{retry-job}, qui tentera de nouveau l'impression plus tard ; @code{retry-current-job}, qui retentera l'impression immédiatement ; et @code{stop-printer} qui arrête l'imprimante." #. type: deftypevr -#: guix-git/doc/guix.texi:19929 +#: guix-git/doc/guix.texi:20291 msgid "Defaults to @samp{stop-printer}." msgstr "La valeur par défaut est @samp{stop-printer}." #. type: deftypevr -#: guix-git/doc/guix.texi:19931 +#: guix-git/doc/guix.texi:20293 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer filter-limit" msgstr "{paramètre de @code{cups-configuration}} non-negative-integer filter-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:19939 +#: guix-git/doc/guix.texi:20301 msgid "Specifies the maximum cost of filters that are run concurrently, which can be used to minimize disk, memory, and CPU resource problems. A limit of 0 disables filter limiting. An average print to a non-PostScript printer needs a filter limit of about 200. A PostScript printer needs about half that (100). Setting the limit below these thresholds will effectively limit the scheduler to printing a single job at any time." msgstr "Spécifie le coût maximum des filtres qui sont lancés en même temps, pour minimiser les problèmes de ressources de disque, de mémoire et de CPU. Une limite de 0 désactive la limite de filtrage. Une impression standard vers une imprimante non-PostScript requiert une limite de filtre d'environ 200. Une imprimante PostScript requiert environ la moitié (100). Mettre en place la limite en dessous de ces valeurs limitera l'ordonnanceur à un seul travail d'impression à la fois." #. type: deftypevr -#: guix-git/doc/guix.texi:19941 guix-git/doc/guix.texi:19949 -#: guix-git/doc/guix.texi:19998 guix-git/doc/guix.texi:20114 -#: guix-git/doc/guix.texi:20128 guix-git/doc/guix.texi:20135 -#: guix-git/doc/guix.texi:21622 guix-git/doc/guix.texi:21638 -#: guix-git/doc/guix.texi:22295 guix-git/doc/guix.texi:22307 -#: guix-git/doc/guix.texi:23086 guix-git/doc/guix.texi:23095 -#: guix-git/doc/guix.texi:23103 guix-git/doc/guix.texi:23111 -#: guix-git/doc/guix.texi:29309 guix-git/doc/guix.texi:29634 -#: guix-git/doc/guix.texi:31838 guix-git/doc/guix.texi:32138 -#: guix-git/doc/guix.texi:32312 +#: guix-git/doc/guix.texi:20303 guix-git/doc/guix.texi:20311 +#: guix-git/doc/guix.texi:20360 guix-git/doc/guix.texi:20476 +#: guix-git/doc/guix.texi:20490 guix-git/doc/guix.texi:20497 +#: guix-git/doc/guix.texi:21984 guix-git/doc/guix.texi:22000 +#: guix-git/doc/guix.texi:22657 guix-git/doc/guix.texi:22669 +#: guix-git/doc/guix.texi:23448 guix-git/doc/guix.texi:23457 +#: guix-git/doc/guix.texi:23465 guix-git/doc/guix.texi:23473 +#: guix-git/doc/guix.texi:29646 guix-git/doc/guix.texi:29999 +#: guix-git/doc/guix.texi:32203 guix-git/doc/guix.texi:32503 +#: guix-git/doc/guix.texi:32677 msgid "Defaults to @samp{0}." msgstr "La valeur par défaut est @samp{0}." #. type: deftypevr -#: guix-git/doc/guix.texi:19943 +#: guix-git/doc/guix.texi:20305 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer filter-nice" msgstr "{paramètre de @code{cups-configuration}} non-negative-integer filter-nice" #. type: deftypevr -#: guix-git/doc/guix.texi:19947 +#: guix-git/doc/guix.texi:20309 msgid "Specifies the scheduling priority of filters that are run to print a job. The nice value ranges from 0, the highest priority, to 19, the lowest priority." msgstr "Spécifie la priorité des filtres de l'ordonnanceur qui sont lancés pour imprimer un travail. La valeur va de 0, la plus grande priorité, à 19, la plus basse priorité." #. type: deftypevr -#: guix-git/doc/guix.texi:19951 +#: guix-git/doc/guix.texi:20313 #, no-wrap msgid "{@code{cups-configuration} parameter} host-name-lookups host-name-lookups" msgstr "{paramètre de @code{cups-configuration}} host-name-lookups host-name-lookups" #. type: deftypevr -#: guix-git/doc/guix.texi:19958 +#: guix-git/doc/guix.texi:20320 msgid "Specifies whether to do reverse lookups on connecting clients. The @code{double} setting causes @code{cupsd} to verify that the hostname resolved from the address matches one of the addresses returned for that hostname. Double lookups also prevent clients with unregistered addresses from connecting to your server. Only set this option to @code{#t} or @code{double} if absolutely required." msgstr "Spécifie s'il faut faire des résolutions inverses sur les clients qui se connectent. Le paramètre @code{double} fait que @code{cupsd} vérifie que le nom d'hôte résolu depuis l'adresse correspond à l'une des adresses renvoyées par ce nom d'hôte. Les résolutions doubles évitent aussi que des clients avec des adresses non enregistrées ne s'adressent à votre serveur. N'initialisez cette valeur qu'à @code{#t} ou @code{double} que si c'est absolument nécessaire." #. type: deftypevr -#: guix-git/doc/guix.texi:19962 +#: guix-git/doc/guix.texi:20324 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-kill-delay" msgstr "{paramètre de @code{cups-configuration}} non-negative-integer job-kill-delay" #. type: deftypevr -#: guix-git/doc/guix.texi:19965 +#: guix-git/doc/guix.texi:20327 msgid "Specifies the number of seconds to wait before killing the filters and backend associated with a canceled or held job." msgstr "Spécifie le nombre de secondes à attendre avant de tuer les filtres et les moteurs associés avec un travail annulé ou suspendu." #. type: deftypevr -#: guix-git/doc/guix.texi:19969 +#: guix-git/doc/guix.texi:20331 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-retry-interval" msgstr "{paramètre de @code{cups-configuration}} non-negative-integer job-retry-interval" #. type: deftypevr -#: guix-git/doc/guix.texi:19974 +#: guix-git/doc/guix.texi:20336 msgid "Specifies the interval between retries of jobs in seconds. This is typically used for fax queues but can also be used with normal print queues whose error policy is @code{retry-job} or @code{retry-current-job}." msgstr "Spécifie l'intervalle des nouvelles tentatives en secondes. C'est typiquement utilisé pour les queues de fax mais peut aussi être utilisé avec des queues d'impressions normales dont la politique d'erreur est @code{retry-job} ou @code{retry-current-job}." #. type: deftypevr -#: guix-git/doc/guix.texi:19978 +#: guix-git/doc/guix.texi:20340 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-retry-limit" msgstr "{paramètre de @code{cups-configuration}} non-negative-integer job-retry-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:19983 +#: guix-git/doc/guix.texi:20345 msgid "Specifies the number of retries that are done for jobs. This is typically used for fax queues but can also be used with normal print queues whose error policy is @code{retry-job} or @code{retry-current-job}." msgstr "Spécifie le nombre de nouvelles tentatives pour les travaux. C'est typiquement utilisé pour les queues de fax mais peut aussi être utilisé pour les queues d'impressions dont la politique d'erreur est @code{retry-job} ou @code{retry-current-job}." #. type: deftypevr -#: guix-git/doc/guix.texi:19985 guix-git/doc/guix.texi:24721 -#: guix-git/doc/guix.texi:30186 guix-git/doc/guix.texi:30206 -#: guix-git/doc/guix.texi:30222 guix-git/doc/guix.texi:30236 -#: guix-git/doc/guix.texi:30243 guix-git/doc/guix.texi:30250 -#: guix-git/doc/guix.texi:30257 guix-git/doc/guix.texi:30417 -#: guix-git/doc/guix.texi:30433 guix-git/doc/guix.texi:30440 -#: guix-git/doc/guix.texi:30447 guix-git/doc/guix.texi:30458 -#: guix-git/doc/guix.texi:31790 guix-git/doc/guix.texi:31798 -#: guix-git/doc/guix.texi:31806 guix-git/doc/guix.texi:31830 +#: guix-git/doc/guix.texi:20347 guix-git/doc/guix.texi:25083 +#: guix-git/doc/guix.texi:30551 guix-git/doc/guix.texi:30571 +#: guix-git/doc/guix.texi:30587 guix-git/doc/guix.texi:30601 +#: guix-git/doc/guix.texi:30608 guix-git/doc/guix.texi:30615 +#: guix-git/doc/guix.texi:30622 guix-git/doc/guix.texi:30782 +#: guix-git/doc/guix.texi:30798 guix-git/doc/guix.texi:30805 +#: guix-git/doc/guix.texi:30812 guix-git/doc/guix.texi:30823 +#: guix-git/doc/guix.texi:32155 guix-git/doc/guix.texi:32163 +#: guix-git/doc/guix.texi:32171 guix-git/doc/guix.texi:32195 msgid "Defaults to @samp{5}." msgstr "La valeur par défaut est @samp{5}." #. type: deftypevr -#: guix-git/doc/guix.texi:19987 +#: guix-git/doc/guix.texi:20349 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean keep-alive?" msgstr "{paramètre de @code{cups-configuration}} boolean keep-alive?" #. type: deftypevr -#: guix-git/doc/guix.texi:19989 +#: guix-git/doc/guix.texi:20351 msgid "Specifies whether to support HTTP keep-alive connections." msgstr "Spécifie s'il faut supporter les connexion HTTP keep-alive." #. type: deftypevr -#: guix-git/doc/guix.texi:19993 +#: guix-git/doc/guix.texi:20355 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer limit-request-body" msgstr "{paramètre de @code{cups-configuration}} non-negative-integer limit-request-body" #. type: deftypevr -#: guix-git/doc/guix.texi:19996 +#: guix-git/doc/guix.texi:20358 msgid "Specifies the maximum size of print files, IPP requests, and HTML form data. A limit of 0 disables the limit check." msgstr "Spécifie la taille maximale des fichiers à imprimer, des requêtes IPP et des données de formulaires HTML. Une limite de 0 désactive la vérification de la limite." #. type: deftypevr -#: guix-git/doc/guix.texi:20000 +#: guix-git/doc/guix.texi:20362 #, no-wrap msgid "{@code{cups-configuration} parameter} multiline-string-list listen" msgstr "{paramètre de @code{cups-configuration}} multiline-string-list listen" #. type: deftypevr -#: guix-git/doc/guix.texi:20007 +#: guix-git/doc/guix.texi:20369 msgid "Listens on the specified interfaces for connections. Valid values are of the form @var{address}:@var{port}, where @var{address} is either an IPv6 address enclosed in brackets, an IPv4 address, or @code{*} to indicate all addresses. Values can also be file names of local UNIX domain sockets. The Listen directive is similar to the Port directive but allows you to restrict access to specific interfaces or networks." msgstr "Écoute sur les interfaces spécifiées. Les valeurs valides sont de la forme @var{adresse}:@var{port}, où @var{adresse} est soit une adresse IPv6 dans des crochets, soit une adresse IPv4, soit @code{*} pour indiquer toutes les adresses. Les valeurs peuvent aussi être des noms de fichiers de socket UNIX domain. La directive Listen est similaire à la directive Port mais vous permet de restreindre l'accès à des interfaces ou des réseaux spécifiques." #. type: deftypevr -#: guix-git/doc/guix.texi:20009 +#: guix-git/doc/guix.texi:20371 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer listen-back-log" msgstr "{paramètre de @code{cups-configuration}} non-negative-integer listen-back-log" #. type: deftypevr -#: guix-git/doc/guix.texi:20016 +#: guix-git/doc/guix.texi:20378 msgid "Specifies the number of pending connections that will be allowed. This normally only affects very busy servers that have reached the MaxClients limit, but can also be triggered by large numbers of simultaneous connections. When the limit is reached, the operating system will refuse additional connections until the scheduler can accept the pending ones." msgstr "Spécifie le nombre de connexions en attente qui seront permises. Ça n'affecte normalement que les serveurs très actifs qui ont atteint la limite MaxClients, mais peut aussi être déclenché par un grand nombre de connexions simultanées. Lorsque la limite est atteinte, le système d'exploitation refusera les connexions supplémentaires jusqu'à ce que l'ordonnanceur accepte les connexions en attente." #. type: deftypevr -#: guix-git/doc/guix.texi:20018 +#: guix-git/doc/guix.texi:20380 msgid "Defaults to @samp{128}." msgstr "La valeur par défaut est @samp{128}." #. type: deftypevr -#: guix-git/doc/guix.texi:20020 +#: guix-git/doc/guix.texi:20382 #, no-wrap msgid "{@code{cups-configuration} parameter} location-access-control-list location-access-controls" msgstr "{paramètre de @code{cups-configuration}} location-access-control-list location-access-controls" #. type: deftypevr -#: guix-git/doc/guix.texi:20022 +#: guix-git/doc/guix.texi:20384 msgid "Specifies a set of additional access controls." msgstr "Spécifie un ensemble de contrôles d'accès supplémentaires." #. type: deftypevr -#: guix-git/doc/guix.texi:20024 +#: guix-git/doc/guix.texi:20386 msgid "Available @code{location-access-controls} fields are:" msgstr "Les champs de @code{location-access-controls} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:20025 +#: guix-git/doc/guix.texi:20387 #, no-wrap msgid "{@code{location-access-controls} parameter} file-name path" msgstr "{paramètre de @code{location-access-controls}} file-name path" #. type: deftypevr -#: guix-git/doc/guix.texi:20027 +#: guix-git/doc/guix.texi:20389 msgid "Specifies the URI path to which the access control applies." msgstr "Spécifie le chemin d'URI auquel les contrôles d'accès s'appliquent." #. type: deftypevr -#: guix-git/doc/guix.texi:20029 +#: guix-git/doc/guix.texi:20391 #, no-wrap msgid "{@code{location-access-controls} parameter} access-control-list access-controls" msgstr "{paramètre de @code{location-access-controls}} access-control-list access-controls" #. type: deftypevr -#: guix-git/doc/guix.texi:20032 +#: guix-git/doc/guix.texi:20394 msgid "Access controls for all access to this path, in the same format as the @code{access-controls} of @code{operation-access-control}." msgstr "Les contrôles d'accès pour tous les accès à ce chemin, dans le même format que le champ @code{access-controls} de @code{operation-access-control}." #. type: deftypevr -#: guix-git/doc/guix.texi:20034 guix-git/doc/guix.texi:20040 -#: guix-git/doc/guix.texi:20054 guix-git/doc/guix.texi:20061 -#: guix-git/doc/guix.texi:20203 guix-git/doc/guix.texi:20262 -#: guix-git/doc/guix.texi:20340 guix-git/doc/guix.texi:20354 -#: guix-git/doc/guix.texi:21502 guix-git/doc/guix.texi:21511 -#: guix-git/doc/guix.texi:22781 guix-git/doc/guix.texi:22984 -#: guix-git/doc/guix.texi:23012 guix-git/doc/guix.texi:23042 -#: guix-git/doc/guix.texi:23157 guix-git/doc/guix.texi:23170 -#: guix-git/doc/guix.texi:23177 guix-git/doc/guix.texi:24927 -#: guix-git/doc/guix.texi:25322 guix-git/doc/guix.texi:25426 -#: guix-git/doc/guix.texi:25853 guix-git/doc/guix.texi:25861 -#: guix-git/doc/guix.texi:26106 guix-git/doc/guix.texi:28239 -#: guix-git/doc/guix.texi:28417 guix-git/doc/guix.texi:28616 -#: guix-git/doc/guix.texi:30077 guix-git/doc/guix.texi:30137 -#: guix-git/doc/guix.texi:30145 guix-git/doc/guix.texi:31853 -#: guix-git/doc/guix.texi:31860 guix-git/doc/guix.texi:32202 -#: guix-git/doc/guix.texi:32280 guix-git/doc/guix.texi:32374 -#: guix-git/doc/guix.texi:32382 guix-git/doc/guix.texi:32418 -#: guix-git/doc/guix.texi:32568 guix-git/doc/guix.texi:32619 -#: guix-git/doc/guix.texi:32628 +#: guix-git/doc/guix.texi:20396 guix-git/doc/guix.texi:20402 +#: guix-git/doc/guix.texi:20416 guix-git/doc/guix.texi:20423 +#: guix-git/doc/guix.texi:20565 guix-git/doc/guix.texi:20624 +#: guix-git/doc/guix.texi:20702 guix-git/doc/guix.texi:20716 +#: guix-git/doc/guix.texi:21864 guix-git/doc/guix.texi:21873 +#: guix-git/doc/guix.texi:23143 guix-git/doc/guix.texi:23346 +#: guix-git/doc/guix.texi:23374 guix-git/doc/guix.texi:23404 +#: guix-git/doc/guix.texi:23519 guix-git/doc/guix.texi:23532 +#: guix-git/doc/guix.texi:23539 guix-git/doc/guix.texi:25289 +#: guix-git/doc/guix.texi:25684 guix-git/doc/guix.texi:25788 +#: guix-git/doc/guix.texi:26190 guix-git/doc/guix.texi:26198 +#: guix-git/doc/guix.texi:26443 guix-git/doc/guix.texi:28576 +#: guix-git/doc/guix.texi:28754 guix-git/doc/guix.texi:28953 +#: guix-git/doc/guix.texi:30442 guix-git/doc/guix.texi:30502 +#: guix-git/doc/guix.texi:30510 guix-git/doc/guix.texi:32218 +#: guix-git/doc/guix.texi:32225 guix-git/doc/guix.texi:32567 +#: guix-git/doc/guix.texi:32645 guix-git/doc/guix.texi:32739 +#: guix-git/doc/guix.texi:32747 guix-git/doc/guix.texi:32783 +#: guix-git/doc/guix.texi:32933 guix-git/doc/guix.texi:32984 +#: guix-git/doc/guix.texi:32993 msgid "Defaults to @samp{()}." msgstr "La valeur par défaut est @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:20036 +#: guix-git/doc/guix.texi:20398 #, no-wrap msgid "{@code{location-access-controls} parameter} method-access-control-list method-access-controls" msgstr "{paramètre de @code{location-access-controls}} method-access-control-list method-access-controls" #. type: deftypevr -#: guix-git/doc/guix.texi:20038 +#: guix-git/doc/guix.texi:20400 msgid "Access controls for method-specific access to this path." msgstr "Contrôles d'accès pour les accès spécifiques à la méthode à ce chemin." #. type: deftypevr -#: guix-git/doc/guix.texi:20042 +#: guix-git/doc/guix.texi:20404 msgid "Available @code{method-access-controls} fields are:" msgstr "Les champs de @code{method-access-controls} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:20043 +#: guix-git/doc/guix.texi:20405 #, no-wrap msgid "{@code{method-access-controls} parameter} boolean reverse?" msgstr "{paramètre de @code{method-access-controls}} boolean reverse?" #. type: deftypevr -#: guix-git/doc/guix.texi:20046 +#: guix-git/doc/guix.texi:20408 msgid "If @code{#t}, apply access controls to all methods except the listed methods. Otherwise apply to only the listed methods." msgstr "Si la valeur est @code{#t}, applique les contrôles d'accès à toutes les méthodes sauf les méthodes listées. Sinon, applique le contrôle uniquement aux méthodes listées." #. type: deftypevr -#: guix-git/doc/guix.texi:20050 +#: guix-git/doc/guix.texi:20412 #, no-wrap msgid "{@code{method-access-controls} parameter} method-list methods" msgstr "{paramètre de @code{method-access-controls}} method-list methods" #. type: deftypevr -#: guix-git/doc/guix.texi:20052 +#: guix-git/doc/guix.texi:20414 msgid "Methods to which this access control applies." msgstr "Les méthodes auxquelles ce contrôle d'accès s'applique." #. type: deftypevr -#: guix-git/doc/guix.texi:20056 +#: guix-git/doc/guix.texi:20418 #, no-wrap msgid "{@code{method-access-controls} parameter} access-control-list access-controls" msgstr "{paramètre de @code{method-access-controls}} access-control-list access-controls" #. type: deftypevr -#: guix-git/doc/guix.texi:20059 +#: guix-git/doc/guix.texi:20421 msgid "Access control directives, as a list of strings. Each string should be one directive, such as @samp{\"Order allow,deny\"}." msgstr "Directives de contrôle d'accès, en tant que liste de chaines de caractères. Chaque chaine devrait être une directive, comme @samp{\"Order allow,deny\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:20065 +#: guix-git/doc/guix.texi:20427 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer log-debug-history" msgstr "{paramètre de @code{cups-configuration}} non-negative-integer log-debug-history" #. type: deftypevr -#: guix-git/doc/guix.texi:20069 +#: guix-git/doc/guix.texi:20431 msgid "Specifies the number of debugging messages that are retained for logging if an error occurs in a print job. Debug messages are logged regardless of the LogLevel setting." msgstr "Spécifie le nombre de messages de débogage qui sont retenu pour la journalisation si une erreur arrive dans un travail d'impression. Les messages de débogage sont journalisés indépendamment du paramètre LogLevel." #. type: deftypevr -#: guix-git/doc/guix.texi:20071 guix-git/doc/guix.texi:20092 -#: guix-git/doc/guix.texi:20099 guix-git/doc/guix.texi:22541 -#: guix-git/doc/guix.texi:24459 guix-git/doc/guix.texi:24474 -#: guix-git/doc/guix.texi:28601 +#: guix-git/doc/guix.texi:20433 guix-git/doc/guix.texi:20454 +#: guix-git/doc/guix.texi:20461 guix-git/doc/guix.texi:22903 +#: guix-git/doc/guix.texi:24821 guix-git/doc/guix.texi:24836 +#: guix-git/doc/guix.texi:28938 msgid "Defaults to @samp{100}." msgstr "La valeur par défaut est @samp{100}." #. type: deftypevr -#: guix-git/doc/guix.texi:20073 +#: guix-git/doc/guix.texi:20435 #, no-wrap msgid "{@code{cups-configuration} parameter} log-level log-level" msgstr "{paramètre de @code{cups-configuration}} log-level log-level" #. type: deftypevr -#: guix-git/doc/guix.texi:20076 +#: guix-git/doc/guix.texi:20438 msgid "Specifies the level of logging for the ErrorLog file. The value @code{none} stops all logging while @code{debug2} logs everything." msgstr "Spécifie le niveau de journalisation du fichier ErrorLog. La valeur @code{none} arrête toute journalisation alors que @code{debug2} enregistre tout." #. type: deftypevr -#: guix-git/doc/guix.texi:20078 guix-git/doc/guix.texi:24936 +#: guix-git/doc/guix.texi:20440 guix-git/doc/guix.texi:25298 msgid "Defaults to @samp{info}." msgstr "La valeur par défaut est @samp{info}." #. type: deftypevr -#: guix-git/doc/guix.texi:20080 +#: guix-git/doc/guix.texi:20442 #, no-wrap msgid "{@code{cups-configuration} parameter} log-time-format log-time-format" msgstr "{paramètre de @code{cups-configuration}} log-time-format log-time-format" #. type: deftypevr -#: guix-git/doc/guix.texi:20083 +#: guix-git/doc/guix.texi:20445 msgid "Specifies the format of the date and time in the log files. The value @code{standard} logs whole seconds while @code{usecs} logs microseconds." msgstr "Spécifie le format de la date et de l'heure dans les fichiers de journaux. La valeur @code{standard} enregistre les secondes entières alors que @code{usecs} enregistre les microsecondes." #. type: deftypevr -#: guix-git/doc/guix.texi:20085 +#: guix-git/doc/guix.texi:20447 msgid "Defaults to @samp{standard}." msgstr "La valeur par défaut est @samp{standard}." #. type: deftypevr -#: guix-git/doc/guix.texi:20087 +#: guix-git/doc/guix.texi:20449 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-clients" msgstr "{paramètre de @code{cups-configuration}} non-negative-integer max-clients" #. type: deftypevr -#: guix-git/doc/guix.texi:20090 +#: guix-git/doc/guix.texi:20452 msgid "Specifies the maximum number of simultaneous clients that are allowed by the scheduler." msgstr "Spécifie le nombre maximum de clients simultanés qui sont autorisés par l'ordonnanceur." #. type: deftypevr -#: guix-git/doc/guix.texi:20094 +#: guix-git/doc/guix.texi:20456 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-clients-per-host" msgstr "{paramètre de @code{cups-configuration}} non-negative-integer max-clients-per-host" #. type: deftypevr -#: guix-git/doc/guix.texi:20097 +#: guix-git/doc/guix.texi:20459 msgid "Specifies the maximum number of simultaneous clients that are allowed from a single address." msgstr "Spécifie le nombre maximum de clients simultanés permis depuis une même adresse." #. type: deftypevr -#: guix-git/doc/guix.texi:20101 +#: guix-git/doc/guix.texi:20463 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-copies" msgstr "{paramètre de @code{cups-configuration}} non-negative-integer max-copies" #. type: deftypevr -#: guix-git/doc/guix.texi:20104 +#: guix-git/doc/guix.texi:20466 msgid "Specifies the maximum number of copies that a user can print of each job." msgstr "Spécifie le nombre maximum de copies qu'un utilisateur peut imprimer pour chaque travail." #. type: deftypevr -#: guix-git/doc/guix.texi:20106 +#: guix-git/doc/guix.texi:20468 msgid "Defaults to @samp{9999}." msgstr "La valeur par défaut est @samp{9999}." #. type: deftypevr -#: guix-git/doc/guix.texi:20108 +#: guix-git/doc/guix.texi:20470 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-hold-time" msgstr "{paramètre de @code{cups-configuration}} non-negative-integer max-hold-time" #. type: deftypevr -#: guix-git/doc/guix.texi:20112 +#: guix-git/doc/guix.texi:20474 msgid "Specifies the maximum time a job may remain in the @code{indefinite} hold state before it is canceled. A value of 0 disables cancellation of held jobs." msgstr "Spécifie la durée maximum qu'un travail peut rester dans l'état de suspension @code{indefinite} avant qu'il ne soit annulé. La valeur 0 désactive l'annulation des travaux suspendus." #. type: deftypevr -#: guix-git/doc/guix.texi:20116 +#: guix-git/doc/guix.texi:20478 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs" msgstr "{paramètre de @code{cups-configuration}} non-negative-integer max-jobs" #. type: deftypevr -#: guix-git/doc/guix.texi:20119 +#: guix-git/doc/guix.texi:20481 msgid "Specifies the maximum number of simultaneous jobs that are allowed. Set to 0 to allow an unlimited number of jobs." msgstr "Spécifie le nombre maximum de travaux simultanés autorisés. La valeur 0 permet un nombre illimité de travaux." #. type: deftypevr -#: guix-git/doc/guix.texi:20121 +#: guix-git/doc/guix.texi:20483 msgid "Defaults to @samp{500}." msgstr "La valeur par défaut est @samp{500}." #. type: deftypevr -#: guix-git/doc/guix.texi:20123 +#: guix-git/doc/guix.texi:20485 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs-per-printer" msgstr "{paramètre de @code{cups-configuration}} non-negative-integer max-jobs-per-printer" #. type: deftypevr -#: guix-git/doc/guix.texi:20126 +#: guix-git/doc/guix.texi:20488 msgid "Specifies the maximum number of simultaneous jobs that are allowed per printer. A value of 0 allows up to MaxJobs jobs per printer." msgstr "Spécifie le nombre maximum de travaux simultanés autorisés par imprimante. La valeur 0 permet au plus MaxJobs travaux par imprimante." #. type: deftypevr -#: guix-git/doc/guix.texi:20130 +#: guix-git/doc/guix.texi:20492 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs-per-user" msgstr "{paramètre de @code{cups-configuration}} non-negative-integer max-jobs-per-user" #. type: deftypevr -#: guix-git/doc/guix.texi:20133 +#: guix-git/doc/guix.texi:20495 msgid "Specifies the maximum number of simultaneous jobs that are allowed per user. A value of 0 allows up to MaxJobs jobs per user." msgstr "Spécifie le nombre maximum de travaux simultanés permis par utilisateur. La valeur 0 permet au plus MaxJobs travaux par utilisateur." #. type: deftypevr -#: guix-git/doc/guix.texi:20137 +#: guix-git/doc/guix.texi:20499 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-job-time" msgstr "{paramètre de @code{cups-configuration}} non-negative-integer max-job-time" #. type: deftypevr -#: guix-git/doc/guix.texi:20140 +#: guix-git/doc/guix.texi:20502 msgid "Specifies the maximum time a job may take to print before it is canceled, in seconds. Set to 0 to disable cancellation of ``stuck'' jobs." msgstr "Spécifie la durée maximum qu'un travail peut prendre avant qu'il ne soit annulé, en secondes. Indiquez 0 pour désactiver l'annulation des travaux « coincés »." #. type: deftypevr -#: guix-git/doc/guix.texi:20142 +#: guix-git/doc/guix.texi:20504 msgid "Defaults to @samp{10800}." msgstr "La valeur par défaut est @samp{10800}." #. type: deftypevr -#: guix-git/doc/guix.texi:20144 +#: guix-git/doc/guix.texi:20506 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-log-size" msgstr "{paramètre de @code{cups-configuration}} non-negative-integer max-log-size" #. type: deftypevr -#: guix-git/doc/guix.texi:20147 +#: guix-git/doc/guix.texi:20509 msgid "Specifies the maximum size of the log files before they are rotated, in bytes. The value 0 disables log rotation." msgstr "Spécifie la taille maximale des fichiers de journaux avant qu'on ne les fasse tourner, en octets. La valeur 0 désactive la rotation." #. type: deftypevr -#: guix-git/doc/guix.texi:20149 +#: guix-git/doc/guix.texi:20511 msgid "Defaults to @samp{1048576}." msgstr "La valeur par défaut est @samp{1048576}." #. type: deftypevr -#: guix-git/doc/guix.texi:20151 +#: guix-git/doc/guix.texi:20513 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer multiple-operation-timeout" msgstr "{paramètre de @code{cups-configuration}} non-negative-integer multiple-operation-timeout" #. type: deftypevr -#: guix-git/doc/guix.texi:20154 +#: guix-git/doc/guix.texi:20516 msgid "Specifies the maximum amount of time to allow between files in a multiple file print job, in seconds." msgstr "Spécifie la durée maximale à permettre entre les fichiers d'un travail en contenant plusieurs, en secondes." #. type: deftypevr -#: guix-git/doc/guix.texi:20156 guix-git/doc/guix.texi:20367 +#: guix-git/doc/guix.texi:20518 guix-git/doc/guix.texi:20729 msgid "Defaults to @samp{900}." msgstr "La valeur par défaut est @samp{900}." #. type: deftypevr -#: guix-git/doc/guix.texi:20158 +#: guix-git/doc/guix.texi:20520 #, no-wrap msgid "{@code{cups-configuration} parameter} string page-log-format" msgstr "{paramètre de @code{cups-configuration}} string page-log-format" #. type: deftypevr -#: guix-git/doc/guix.texi:20163 +#: guix-git/doc/guix.texi:20525 msgid "Specifies the format of PageLog lines. Sequences beginning with percent (@samp{%}) characters are replaced with the corresponding information, while all other characters are copied literally. The following percent sequences are recognized:" msgstr "Spécifie le format des lignes PageLog. Les séquences qui commencent par un pourcent (@samp{%}) sont remplacées par l'information correspondante, tandis que les autres caractères sont copiés littéralement. Les séquences pourcent suivantes sont reconnues :" #. type: item -#: guix-git/doc/guix.texi:20165 +#: guix-git/doc/guix.texi:20527 #, no-wrap msgid "%%" msgstr "%%" #. type: table -#: guix-git/doc/guix.texi:20167 +#: guix-git/doc/guix.texi:20529 msgid "insert a single percent character" msgstr "insère un seul caractères pourcent" #. type: item -#: guix-git/doc/guix.texi:20168 +#: guix-git/doc/guix.texi:20530 #, no-wrap msgid "%@{name@}" msgstr "%@{name@}" #. type: table -#: guix-git/doc/guix.texi:20170 +#: guix-git/doc/guix.texi:20532 msgid "insert the value of the specified IPP attribute" msgstr "insère la valeur de l'attribut IPP spécifié" #. type: item -#: guix-git/doc/guix.texi:20171 +#: guix-git/doc/guix.texi:20533 #, no-wrap msgid "%C" msgstr "%C" #. type: table -#: guix-git/doc/guix.texi:20173 +#: guix-git/doc/guix.texi:20535 msgid "insert the number of copies for the current page" msgstr "insère le nombre de copies pour la page actuelle" #. type: item -#: guix-git/doc/guix.texi:20174 +#: guix-git/doc/guix.texi:20536 #, no-wrap msgid "%P" msgstr "%P" #. type: table -#: guix-git/doc/guix.texi:20176 +#: guix-git/doc/guix.texi:20538 msgid "insert the current page number" msgstr "insère le numéro de page actuelle" #. type: item -#: guix-git/doc/guix.texi:20177 +#: guix-git/doc/guix.texi:20539 #, no-wrap msgid "%T" msgstr "%T" #. type: table -#: guix-git/doc/guix.texi:20179 +#: guix-git/doc/guix.texi:20541 msgid "insert the current date and time in common log format" msgstr "insère la date et l'heure actuelle dans un format de journal commun" #. type: item -#: guix-git/doc/guix.texi:20180 +#: guix-git/doc/guix.texi:20542 #, no-wrap msgid "%j" msgstr "%j" #. type: table -#: guix-git/doc/guix.texi:20182 +#: guix-git/doc/guix.texi:20544 msgid "insert the job ID" msgstr "insère l'ID du travail" #. type: item -#: guix-git/doc/guix.texi:20183 guix-git/doc/guix.texi:22140 +#: guix-git/doc/guix.texi:20545 guix-git/doc/guix.texi:22502 #, no-wrap msgid "%p" msgstr "%p" #. type: table -#: guix-git/doc/guix.texi:20185 +#: guix-git/doc/guix.texi:20547 msgid "insert the printer name" msgstr "insère le nom de l'imprimante" #. type: item -#: guix-git/doc/guix.texi:20186 guix-git/doc/guix.texi:22163 +#: guix-git/doc/guix.texi:20548 guix-git/doc/guix.texi:22525 #, no-wrap msgid "%u" msgstr "%u" #. type: table -#: guix-git/doc/guix.texi:20188 +#: guix-git/doc/guix.texi:20550 msgid "insert the username" msgstr "insère le nom d'utilisateur" #. type: deftypevr -#: guix-git/doc/guix.texi:20194 +#: guix-git/doc/guix.texi:20556 msgid "A value of the empty string disables page logging. The string @code{%p %u %j %T %P %C %@{job-billing@} %@{job-originating-host-name@} %@{job-name@} %@{media@} %@{sides@}} creates a page log with the standard items." msgstr "Si la valeur est la chaîne vide, le PageLog est désactivée. La chaîne @code{%p %u %j %T %P %C %@{job-billing@} %@{job-originating-host-name@} %@{job-name@} %@{media@} %@{sides@}} crée un PageLog avec les entrées standards." #. type: deftypevr -#: guix-git/doc/guix.texi:20198 +#: guix-git/doc/guix.texi:20560 #, no-wrap msgid "{@code{cups-configuration} parameter} environment-variables environment-variables" msgstr "{paramètre de @code{cups-configuration}} environment-variables environment-variables" #. type: deftypevr -#: guix-git/doc/guix.texi:20201 +#: guix-git/doc/guix.texi:20563 msgid "Passes the specified environment variable(s) to child processes; a list of strings." msgstr "Passe les variables d'environnement spécifiées aux processus fils ; une liste de chaînes de caractères." #. type: deftypevr -#: guix-git/doc/guix.texi:20205 +#: guix-git/doc/guix.texi:20567 #, no-wrap msgid "{@code{cups-configuration} parameter} policy-configuration-list policies" msgstr "{paramètre de @code{cups-configuration}} policy-configuration-list policies" #. type: deftypevr -#: guix-git/doc/guix.texi:20207 +#: guix-git/doc/guix.texi:20569 msgid "Specifies named access control policies." msgstr "Spécifie des politiques de contrôle d'accès nommées." #. type: deftypevr -#: guix-git/doc/guix.texi:20209 +#: guix-git/doc/guix.texi:20571 msgid "Available @code{policy-configuration} fields are:" msgstr "Les champs de @code{policy-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:20210 +#: guix-git/doc/guix.texi:20572 #, no-wrap msgid "{@code{policy-configuration} parameter} string name" msgstr "{paramètre de @code{policy-configuration}} string name" #. type: deftypevr -#: guix-git/doc/guix.texi:20212 +#: guix-git/doc/guix.texi:20574 msgid "Name of the policy." msgstr "Nom de la politique." #. type: deftypevr -#: guix-git/doc/guix.texi:20214 +#: guix-git/doc/guix.texi:20576 #, no-wrap msgid "{@code{policy-configuration} parameter} string job-private-access" msgstr "{paramètre de @code{policy-configuration}} string job-private-access" #. type: deftypevr -#: guix-git/doc/guix.texi:20224 +#: guix-git/doc/guix.texi:20586 msgid "Specifies an access list for a job's private values. @code{@@ACL} maps to the printer's requesting-user-name-allowed or requesting-user-name-denied values. @code{@@OWNER} maps to the job's owner. @code{@@SYSTEM} maps to the groups listed for the @code{system-group} field of the @code{files-configuration}, which is reified into the @code{cups-files.conf(5)} file. Other possible elements of the access list include specific user names, and @code{@@@var{group}} to indicate members of a specific group. The access list may also be simply @code{all} or @code{default}." msgstr "Spécifie une liste d'accès pour les valeurs privées du travail. @code{@@ACL} correspond aux valeurs requesting-user-name-allowed ou requesting-user-name-denied de l'imprimante. @code{@@OWNER} correspond au propriétaire du travail. @code{@@SYSTEM} correspond aux groupes listés dans le champ @code{system-group} de la configuration @code{files-configuration}, qui est réifié dans le fichier @code{cups-files.conf(5)}. Les autres éléments possibles de la liste d'accès sont des noms d'utilisateurs spécifiques et @code{@@@var{group}} pour indiquer les membres d'un groupe spécifique. La liste d'accès peut aussi être simplement @code{all} ou @code{default}." #. type: deftypevr -#: guix-git/doc/guix.texi:20226 guix-git/doc/guix.texi:20248 +#: guix-git/doc/guix.texi:20588 guix-git/doc/guix.texi:20610 msgid "Defaults to @samp{\"@@OWNER @@SYSTEM\"}." msgstr "La valeur par défaut est @samp{\"@@OWNER @@SYSTEM\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:20228 +#: guix-git/doc/guix.texi:20590 #, no-wrap msgid "{@code{policy-configuration} parameter} string job-private-values" msgstr "{paramètre de @code{policy-configuration}} string job-private-values" #. type: deftypevr -#: guix-git/doc/guix.texi:20231 guix-git/doc/guix.texi:20253 +#: guix-git/doc/guix.texi:20593 guix-git/doc/guix.texi:20615 msgid "Specifies the list of job values to make private, or @code{all}, @code{default}, or @code{none}." msgstr "Spécifie la liste des valeurs de travaux à rendre privée, ou @code{all}, @code{default}, ou @code{none}." #. type: deftypevr -#: guix-git/doc/guix.texi:20234 +#: guix-git/doc/guix.texi:20596 msgid "Defaults to @samp{\"job-name job-originating-host-name job-originating-user-name phone\"}." msgstr "La valeur par défaut est @samp{\"job-name job-originating-host-name job-originating-user-name phone\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:20236 +#: guix-git/doc/guix.texi:20598 #, no-wrap msgid "{@code{policy-configuration} parameter} string subscription-private-access" msgstr "{paramètre de @code{policy-configuration}} string subscription-private-access" #. type: deftypevr -#: guix-git/doc/guix.texi:20246 +#: guix-git/doc/guix.texi:20608 msgid "Specifies an access list for a subscription's private values. @code{@@ACL} maps to the printer's requesting-user-name-allowed or requesting-user-name-denied values. @code{@@OWNER} maps to the job's owner. @code{@@SYSTEM} maps to the groups listed for the @code{system-group} field of the @code{files-configuration}, which is reified into the @code{cups-files.conf(5)} file. Other possible elements of the access list include specific user names, and @code{@@@var{group}} to indicate members of a specific group. The access list may also be simply @code{all} or @code{default}." msgstr "Spécifie un liste d'accès pour les valeurs privées de la souscription. @code{@@ACL} correspond aux valeurs requesting-user-name-allowed ou requesting-user-name-denied de l'imprimante. @code{@@OWNER} correspond au propriétaire du travail. @code{@@SYSTEM} correspond aux groupes listés dans le champ @code{system-group} de la configuration @code{files-configuration}, qui est réifié dans le fichier @code{cups-files.conf(5)}. Les autres éléments possibles de la liste d'accès sont des noms d'utilisateurs spécifiques et @code{@@@var{group}} pour indiquer les membres d'un groupe spécifique. La liste d'accès peut aussi être simplement @code{all} ou @code{default}." #. type: deftypevr -#: guix-git/doc/guix.texi:20250 +#: guix-git/doc/guix.texi:20612 #, no-wrap msgid "{@code{policy-configuration} parameter} string subscription-private-values" msgstr "{paramètre de @code{policy-configuration}} string subscription-private-values" #. type: deftypevr -#: guix-git/doc/guix.texi:20256 +#: guix-git/doc/guix.texi:20618 msgid "Defaults to @samp{\"notify-events notify-pull-method notify-recipient-uri notify-subscriber-user-name notify-user-data\"}." msgstr "La valeur par défaut est @samp{\"notify-events notify-pull-method notify-recipient-uri notify-subscriber-user-name notify-user-data\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:20258 +#: guix-git/doc/guix.texi:20620 #, no-wrap msgid "{@code{policy-configuration} parameter} operation-access-control-list access-controls" msgstr "{paramètre de @code{policy-configuration}} operation-access-control-list access-controls" #. type: deftypevr -#: guix-git/doc/guix.texi:20260 +#: guix-git/doc/guix.texi:20622 msgid "Access control by IPP operation." msgstr "Contrôle d'accès par les actions IPP." #. type: deftypevr -#: guix-git/doc/guix.texi:20265 +#: guix-git/doc/guix.texi:20627 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean-or-non-negative-integer preserve-job-files" msgstr "{paramètre de @code{cups-configuration}} boolean-or-non-negative-integer preserve-job-files" #. type: deftypevr -#: guix-git/doc/guix.texi:20270 +#: guix-git/doc/guix.texi:20632 msgid "Specifies whether job files (documents) are preserved after a job is printed. If a numeric value is specified, job files are preserved for the indicated number of seconds after printing. Otherwise a boolean value applies indefinitely." msgstr "Spécifie si les fichiers de travaux (les documents) sont préservés après qu'un travail est imprimé. Si une valeur numérique est spécifiée, les fichiers de travaux sont préservés pour le nombre de secondes indiquées après l'impression. Sinon, une valeur booléenne s'applique indéfiniment." #. type: deftypevr -#: guix-git/doc/guix.texi:20272 +#: guix-git/doc/guix.texi:20634 msgid "Defaults to @samp{86400}." msgstr "La valeur par défaut est @samp{86400}." #. type: deftypevr -#: guix-git/doc/guix.texi:20274 +#: guix-git/doc/guix.texi:20636 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean-or-non-negative-integer preserve-job-history" msgstr "{paramètre de @code{cups-configuration}} boolean-or-non-negative-integer preserve-job-history" #. type: deftypevr -#: guix-git/doc/guix.texi:20279 +#: guix-git/doc/guix.texi:20641 msgid "Specifies whether the job history is preserved after a job is printed. If a numeric value is specified, the job history is preserved for the indicated number of seconds after printing. If @code{#t}, the job history is preserved until the MaxJobs limit is reached." msgstr "Spécifie si l'historique des travaux est préservé après qu'un travail est imprimé. Si une valeur numérique est spécifiée, l'historique des travaux est préservé pour le nombre de secondes indiquées après l'impression. Si la valeur est @code{#t}, l'historique des travaux est préservé jusqu'à atteindre la limite MaxJobs." #. type: deftypevr -#: guix-git/doc/guix.texi:20283 +#: guix-git/doc/guix.texi:20645 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer reload-timeout" msgstr "{paramètre de @code{cups-configuration}} non-negative-integer reload-timeout" #. type: deftypevr -#: guix-git/doc/guix.texi:20286 +#: guix-git/doc/guix.texi:20648 msgid "Specifies the amount of time to wait for job completion before restarting the scheduler." msgstr "Spécifie la durée d'attente pour la fin des travaux avant de redémarrer l'ordonnanceur." #. type: deftypevr -#: guix-git/doc/guix.texi:20290 +#: guix-git/doc/guix.texi:20652 #, no-wrap msgid "{@code{cups-configuration} parameter} string rip-cache" msgstr "{paramètre de @code{cups-configuration}} string rip-cache" #. type: deftypevr -#: guix-git/doc/guix.texi:20293 +#: guix-git/doc/guix.texi:20655 msgid "Specifies the maximum amount of memory to use when converting documents into bitmaps for a printer." msgstr "Spécifie la quantité de mémoire maximale à utiliser pour convertir des documents en bitmaps pour l'imprimante." #. type: deftypevr -#: guix-git/doc/guix.texi:20295 +#: guix-git/doc/guix.texi:20657 msgid "Defaults to @samp{\"128m\"}." msgstr "La valeur par défaut est @samp{\"128m\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:20297 +#: guix-git/doc/guix.texi:20659 #, no-wrap msgid "{@code{cups-configuration} parameter} string server-admin" msgstr "{paramètre de @code{cups-configuration}} string server-admin" #. type: deftypevr -#: guix-git/doc/guix.texi:20299 +#: guix-git/doc/guix.texi:20661 msgid "Specifies the email address of the server administrator." msgstr "Spécifie l'adresse de courriel de l'administrateur système." #. type: deftypevr -#: guix-git/doc/guix.texi:20301 +#: guix-git/doc/guix.texi:20663 msgid "Defaults to @samp{\"root@@localhost.localdomain\"}." msgstr "La valeur par défaut est @samp{\"root@@localhost.localdomain\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:20303 +#: guix-git/doc/guix.texi:20665 #, no-wrap msgid "{@code{cups-configuration} parameter} host-name-list-or-* server-alias" msgstr "{paramètre de @code{cups-configuration}} host-name-list-or-* server-alias" #. type: deftypevr -#: guix-git/doc/guix.texi:20311 +#: guix-git/doc/guix.texi:20673 msgid "The ServerAlias directive is used for HTTP Host header validation when clients connect to the scheduler from external interfaces. Using the special name @code{*} can expose your system to known browser-based DNS rebinding attacks, even when accessing sites through a firewall. If the auto-discovery of alternate names does not work, we recommend listing each alternate name with a ServerAlias directive instead of using @code{*}." msgstr "La directive ServerAlias est utilisée pour la validation des en-tête HTTP Host lorsque les clients se connectent à l'ordonnanceur depuis des interfaces externes. Utiliser le nom spécial @code{*} peut exposer votre système à des attaques connues de recombinaison DNS dans le navigateur, même lorsque vous accédez au site à travers un pare-feu. Si la découverte automatique des autres noms ne fonctionne pas, nous vous recommandons de lister chaque nom alternatif avec une directive SeverAlias plutôt que d'utiliser @code{*}." #. type: deftypevr -#: guix-git/doc/guix.texi:20313 +#: guix-git/doc/guix.texi:20675 msgid "Defaults to @samp{*}." msgstr "La valeur par défaut est @samp{*}." #. type: deftypevr -#: guix-git/doc/guix.texi:20315 +#: guix-git/doc/guix.texi:20677 #, no-wrap msgid "{@code{cups-configuration} parameter} string server-name" msgstr "{paramètre de @code{cups-configuration}} string server-name" #. type: deftypevr -#: guix-git/doc/guix.texi:20317 +#: guix-git/doc/guix.texi:20679 msgid "Specifies the fully-qualified host name of the server." msgstr "Spécifie le nom d'hôte pleinement qualifié du serveur." #. type: deftypevr -#: guix-git/doc/guix.texi:20319 guix-git/doc/guix.texi:25449 -#: guix-git/doc/guix.texi:25494 +#: guix-git/doc/guix.texi:20681 msgid "Defaults to @samp{\"localhost\"}." msgstr "La valeur par défaut est @samp{\"localhost\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:20321 +#: guix-git/doc/guix.texi:20683 #, no-wrap msgid "{@code{cups-configuration} parameter} server-tokens server-tokens" msgstr "{paramètre de @code{cups-configuration}} server-tokens server-tokens" #. type: deftypevr -#: guix-git/doc/guix.texi:20329 +#: guix-git/doc/guix.texi:20691 msgid "Specifies what information is included in the Server header of HTTP responses. @code{None} disables the Server header. @code{ProductOnly} reports @code{CUPS}. @code{Major} reports @code{CUPS 2}. @code{Minor} reports @code{CUPS 2.0}. @code{Minimal} reports @code{CUPS 2.0.0}. @code{OS} reports @code{CUPS 2.0.0 (@var{uname})} where @var{uname} is the output of the @code{uname} command. @code{Full} reports @code{CUPS 2.0.0 (@var{uname}) IPP/2.0}." msgstr "Spécifie les informations incluses dans les en-têtes Server des réponses HTTP. @code{None} désactive l'en-tête Server. @code{ProductOnly} rapporte @code{CUPS}. @code{Major} rapporte @code{CUPS 2}. @code{Minor} rapporte @code{CUPS 2.0}. @code{Minimal} rapporte @code{CUPS 2.0.0}. @code{OS} rapporte @code{CUPS 2.0.0 (@var{uname})} où @var{uname} est la sortie de la commande @code{uname}. @code{Full} rapporte @code{CUPS 2.0.0 (@var{uname}) IPP/2.0}." #. type: deftypevr -#: guix-git/doc/guix.texi:20331 +#: guix-git/doc/guix.texi:20693 msgid "Defaults to @samp{Minimal}." msgstr "La valeur par défaut est @samp{Minimal}." #. type: deftypevr -#: guix-git/doc/guix.texi:20333 +#: guix-git/doc/guix.texi:20695 #, no-wrap msgid "{@code{cups-configuration} parameter} multiline-string-list ssl-listen" msgstr "{paramètre de @code{cups-configuration}} multiline-string-list ssl-listen" #. type: deftypevr -#: guix-git/doc/guix.texi:20338 +#: guix-git/doc/guix.texi:20700 msgid "Listens on the specified interfaces for encrypted connections. Valid values are of the form @var{address}:@var{port}, where @var{address} is either an IPv6 address enclosed in brackets, an IPv4 address, or @code{*} to indicate all addresses." msgstr "Écoute des connexions chiffrées sur les interfaces spécifiées. Les valeurs valides sont de la forme @var{adresse}:@var{port}, où @var{adresse} est soit une adresse IPv6 dans des crochets, soit une adresse IPv4, soit @code{*} pour indiquer toutes les interfaces." #. type: deftypevr -#: guix-git/doc/guix.texi:20342 +#: guix-git/doc/guix.texi:20704 #, no-wrap msgid "{@code{cups-configuration} parameter} ssl-options ssl-options" msgstr "{paramètre de @code{cups-configuration}} ssl-options ssl-options" #. type: deftypevr -#: guix-git/doc/guix.texi:20352 +#: guix-git/doc/guix.texi:20714 msgid "Sets encryption options. By default, CUPS only supports encryption using TLS v1.0 or higher using known secure cipher suites. Security is reduced when @code{Allow} options are used, and enhanced when @code{Deny} options are used. The @code{AllowRC4} option enables the 128-bit RC4 cipher suites, which are required for some older clients. The @code{AllowSSL3} option enables SSL v3.0, which is required for some older clients that do not support TLS v1.0. The @code{DenyCBC} option disables all CBC cipher suites. The @code{DenyTLS1.0} option disables TLS v1.0 support - this sets the minimum protocol version to TLS v1.1." msgstr "Indique les options de chiffrement. Par défaut, CUPS ne supporte que le chiffrement avec TLS v1.0 ou plus avec des suites de chiffrement connues pour être sures. La sécurité peut être réduite en utilisant les options @code{Allow}, et améliorée en utilisant les options @code{Deny}. L'option @code{AllowRC4} active les suites de chiffrement 128-bits RC4, qui sont requises pour certains vieux. L'option @code{AllowSSL3} active SSL v3.0, qui est requis par certains vieux clients qui ne supportent pas TLS v1.0. L'option @code{DenyCBC} désactive toutes les suites CBC. L'option @code{DenyTLS1.0} désactive la prise en charge de TLS v1.0 — la version minimale du protocole est donc TLS v1.1." #. type: deftypevr -#: guix-git/doc/guix.texi:20356 +#: guix-git/doc/guix.texi:20718 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean strict-conformance?" msgstr "{paramètre de @code{cups-configuration}} boolean strict-conformance?" #. type: deftypevr -#: guix-git/doc/guix.texi:20359 +#: guix-git/doc/guix.texi:20721 msgid "Specifies whether the scheduler requires clients to strictly adhere to the IPP specifications." msgstr "Spécifie si l'ordonnanceur demande aux clients d'adhérer aux spécifications IPP." #. type: deftypevr -#: guix-git/doc/guix.texi:20363 +#: guix-git/doc/guix.texi:20725 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer timeout" msgstr "{paramètre de @code{cups-configuration}} non-negative-integer timeout" #. type: deftypevr -#: guix-git/doc/guix.texi:20365 +#: guix-git/doc/guix.texi:20727 msgid "Specifies the HTTP request timeout, in seconds." msgstr "Spécifie le délai d'attente des requêtes HTTP, en secondes." #. type: deftypevr -#: guix-git/doc/guix.texi:20370 +#: guix-git/doc/guix.texi:20732 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean web-interface?" msgstr "{paramètre de @code{cups-configuration}} boolean web-interface?" #. type: deftypevr -#: guix-git/doc/guix.texi:20372 +#: guix-git/doc/guix.texi:20734 msgid "Specifies whether the web interface is enabled." msgstr "Spécifie si l'interface web est activée." #. type: Plain text -#: guix-git/doc/guix.texi:20382 +#: guix-git/doc/guix.texi:20744 msgid "At this point you're probably thinking ``oh dear, Guix manual, I like you but you can stop already with the configuration options''. Indeed. However, one more point: it could be that you have an existing @code{cupsd.conf} that you want to use. In that case, you can pass an @code{opaque-cups-configuration} as the configuration of a @code{cups-service-type}." msgstr "Maintenant, vous vous dîtes peut-être « oh là là, cher manuel de Guix, je t'aime bien mais arrête maintenant avec ces options de configuration »@footnote{NdT : je vous rassure, c'est aussi mon sentiment au moment de traduire ces lignes. Et pour moi, c'est encore loin d'être fini.}. En effet. cependant, encore un point supplémentaire : vous pouvez avoir un fichier @code{cupsd.conf} existant que vous pourriez vouloir utiliser. Dans ce cas, vous pouvez passer un @code{opaque-cups-configuration} en configuration d'un @code{cups-service-type}." #. type: Plain text -#: guix-git/doc/guix.texi:20384 +#: guix-git/doc/guix.texi:20746 msgid "Available @code{opaque-cups-configuration} fields are:" msgstr "Les champs de @code{opaque-cups-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:20385 +#: guix-git/doc/guix.texi:20747 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} package cups" msgstr "{paramètre de @code{opaque-cups-configuration}} package cups" #. type: deftypevr -#: guix-git/doc/guix.texi:20389 +#: guix-git/doc/guix.texi:20751 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} string cupsd.conf" msgstr "{paramètre de @code{opaque-cups-configuration}} string cupsd.conf" #. type: deftypevr -#: guix-git/doc/guix.texi:20391 +#: guix-git/doc/guix.texi:20753 msgid "The contents of the @code{cupsd.conf}, as a string." msgstr "Le contenu de @code{cupsd.conf}, en tant que chaîne de caractères." #. type: deftypevr -#: guix-git/doc/guix.texi:20393 +#: guix-git/doc/guix.texi:20755 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} string cups-files.conf" msgstr "{paramètre de @code{opaque-cups-configuration}} string cups-files.conf" #. type: deftypevr -#: guix-git/doc/guix.texi:20395 +#: guix-git/doc/guix.texi:20757 msgid "The contents of the @code{cups-files.conf} file, as a string." msgstr "Le contenu du fichier @code{cups-files.conf}, en tant que chaîne de caractères." #. type: Plain text -#: guix-git/doc/guix.texi:20400 +#: guix-git/doc/guix.texi:20762 msgid "For example, if your @code{cupsd.conf} and @code{cups-files.conf} are in strings of the same name, you could instantiate a CUPS service like this:" msgstr "Par exemple, si vos fichiers @code{cupsd.conf} et @code{cups-files.conf} sont dans des chaînes du même nom, pouvez instancier un service CUPS de cette manière :" #. type: lisp -#: guix-git/doc/guix.texi:20406 +#: guix-git/doc/guix.texi:20768 #, no-wrap msgid "" "(service cups-service-type\n" @@ -38590,240 +39252,240 @@ msgstr "" " (cups-files.conf cups-files.conf)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:20417 +#: guix-git/doc/guix.texi:20779 msgid "The @code{(gnu services desktop)} module provides services that are usually useful in the context of a ``desktop'' setup---that is, on a machine running a graphical display server, possibly with graphical user interfaces, etc. It also defines services that provide specific desktop environments like GNOME, Xfce or MATE." msgstr "Le module @code{(gnu services desktop)} fournit des services qui sont habituellement utiles dans le contexte d'une installation « de bureau » — c'est-à-dire sur une machine qui fait tourner un service d'affichage graphique, éventuellement avec des interfaces utilisateurs graphiques, etc. Il définit aussi des services qui fournissent des environnements de bureau spécifiques comme GNOME, Xfce et MATE." #. type: Plain text -#: guix-git/doc/guix.texi:20421 +#: guix-git/doc/guix.texi:20783 msgid "To simplify things, the module defines a variable containing the set of services that users typically expect on a machine with a graphical environment and networking:" msgstr "Pour simplifier les choses, le module définit une variable contenant l'ensemble des services que les utilisateurs s'attendent en général à avoir sur une machine avec un environnement graphique et le réseau :" #. type: defvr -#: guix-git/doc/guix.texi:20422 +#: guix-git/doc/guix.texi:20784 #, no-wrap msgid "{Scheme Variable} %desktop-services" msgstr "{Variable Scheme} %desktop-services" #. type: defvr -#: guix-git/doc/guix.texi:20425 +#: guix-git/doc/guix.texi:20787 msgid "This is a list of services that builds upon @code{%base-services} and adds or adjusts services for a typical ``desktop'' setup." msgstr "C'est la liste des services qui étend @code{%base-services} en ajoutant ou en ajustant des services pour une configuration « de bureau » typique." #. type: defvr -#: guix-git/doc/guix.texi:20436 +#: guix-git/doc/guix.texi:20798 msgid "In particular, it adds a graphical login manager (@pxref{X Window, @code{gdm-service-type}}), screen lockers, a network management tool (@pxref{Networking Services, @code{network-manager-service-type}}) with modem support (@pxref{Networking Services, @code{modem-manager-service-type}}), energy and color management services, the @code{elogind} login and seat manager, the Polkit privilege service, the GeoClue location service, the AccountsService daemon that allows authorized users change system passwords, an NTP client (@pxref{Networking Services}), the Avahi daemon, and has the name service switch service configured to be able to use @code{nss-mdns} (@pxref{Name Service Switch, mDNS})." msgstr "En particulier, elle ajoute un gestionnaire de connexion graphique (@pxref{X Window, @code{gdm-service-type}}), des verrouilleurs d'écran, un outil de gestion réseau (@pxref{Networking Services, @code{network-manager-service-type}}) avec la prise en charge des modems (@pxref{Networking Services, @code{modem-manager-service-type}}), des services de gestion de l'énergie et des couleurs, le gestionnaire de connexion et de session @code{elogind}, le service de privilèges Polkit, le service de géolocalisation GeoClue, le démon AccountsService qui permet aux utilisateurs autorisés de changer les mots de passe du système, un client NTP (@pxref{Networking Services}), le démon Avahi, et le service name service switch est configuré pour pouvoir utiliser @code{nss-mdns} (@pxref{Name Service Switch, mDNS})." #. type: Plain text -#: guix-git/doc/guix.texi:20441 +#: guix-git/doc/guix.texi:20803 msgid "The @code{%desktop-services} variable can be used as the @code{services} field of an @code{operating-system} declaration (@pxref{operating-system Reference, @code{services}})." msgstr "La variable @code{%desktop-services} peut être utilisée comme champ @code{services} d'une déclaration @code{operating-system} (@pxref{operating-system Reference, @code{services}})." #. type: Plain text -#: guix-git/doc/guix.texi:20464 +#: guix-git/doc/guix.texi:20826 msgid "Additionally, the @code{gnome-desktop-service-type}, @code{xfce-desktop-service}, @code{mate-desktop-service-type}, @code{lxqt-desktop-service-type} and @code{enlightenment-desktop-service-type} procedures can add GNOME, Xfce, MATE and/or Enlightenment to a system. To ``add GNOME'' means that system-level services like the backlight adjustment helpers and the power management utilities are added to the system, extending @code{polkit} and @code{dbus} appropriately, allowing GNOME to operate with elevated privileges on a limited number of special-purpose system interfaces. Additionally, adding a service made by @code{gnome-desktop-service-type} adds the GNOME metapackage to the system profile. Likewise, adding the Xfce service not only adds the @code{xfce} metapackage to the system profile, but it also gives the Thunar file manager the ability to open a ``root-mode'' file management window, if the user authenticates using the administrator's password via the standard polkit graphical interface. To ``add MATE'' means that @code{polkit} and @code{dbus} are extended appropriately, allowing MATE to operate with elevated privileges on a limited number of special-purpose system interfaces. Additionally, adding a service of type @code{mate-desktop-service-type} adds the MATE metapackage to the system profile. ``Adding Enlightenment'' means that @code{dbus} is extended appropriately, and several of Enlightenment's binaries are set as setuid, allowing Enlightenment's screen locker and other functionality to work as expected." msgstr "En plus, les procédures @code{gnome-desktop-service-type}, @code{xfce-desktop-service}, @code{mate-desktop-service-type}, @code{lxqt-desktop-service-type} et @code{enlightenment-desktop-service-type} peuvent ajouter GNOME, Xfce, MATE ou Enlightenment à un système. « Ajouter GNOME » signifie que les services du système comme les utilitaires d'ajustement de la luminosité et de gestion de l'énergie sont ajoutés au système, en étendant @code{polkit} et @code{dbus} de la bonne manière, ce qui permet à GNOME d'opérer avec des privilèges plus élevés sur un nombre limité d'interfaces systèmes spécialisées. En plus, ajouter un service construit par @code{gnome-desktop-service-type} ajoute le métapaquet GNOME au profil du système. De même, ajouter le service Xfce ajoute non seulement le métapaquet @code{xfce} au profil système, mais il permet aussi au gestionnaire de fichiers Thunar d'ouvrir une fenêtre de gestion des fichier « en mode root », si l'utilisateur s'authentifie avec le mot de passe administrateur via l'interface graphique polkit standard. « Ajouter MATE » signifie que @code{polkit} et @code{dbus} sont étendue de la bonne manière, ce qui permet à MATE d'opérer avec des privilèges plus élevés sur un nombre limité d'interface systèmes spécialisées. En plus, ajouter un service de type @code{mate-desktop-service-type} ajoute le métapaquet MATE au profil du système. « Ajouter Enlightenment » signifie que @code{dbus} est étendu comme il faut et que plusieurs binaires d'Enlightenment récupèrent le bit setuid, ce qui permet au verrouilleur d'écran d'Enlightenment et à d'autres fonctionnalités de fonctionner correctement." #. type: Plain text -#: guix-git/doc/guix.texi:20474 +#: guix-git/doc/guix.texi:20836 #, fuzzy #| msgid "The desktop environments in Guix use the Xorg display server by default. If you'd like to use the newer display server protocol called Wayland, you need to use the @code{sddm-service} instead of GDM as the graphical login manager. You should then select the ``GNOME (Wayland)'' session in SDDM@. Alternatively you can also try starting GNOME on Wayland manually from a TTY with the command ``XDG_SESSION_TYPE=wayland exec dbus-run-session gnome-session``. Currently only GNOME has support for Wayland." msgid "The desktop environments in Guix use the Xorg display server by default. If you'd like to use the newer display server protocol called Wayland, you need to enable Wayland support in GDM (@pxref{wayland-gdm}). Another solution is to use the @code{sddm-service} instead of GDM as the graphical login manager. You should then select the ``GNOME (Wayland)'' session in SDDM@. Alternatively you can also try starting GNOME on Wayland manually from a TTY with the command ``XDG_SESSION_TYPE=wayland exec dbus-run-session gnome-session``. Currently only GNOME has support for Wayland." msgstr "Les environnement de bureau dans Guix utilisent le service d'affichage Xorg par défaut. Si vous voulez utiliser le protocol de serveur d'affichage plus récent Wayland, vous devez utiliser @code{sddm-service} à la place de GDM comme gestionnaire de connexion graphique. Vous devriez ensuite sélectionner la session « GNOME (Wayland) » dans SDDM@. Autrement, vous pouvez essayer de démarrer GNOME sur Wayland manuellement depuis un TTY avec la commande @command{XDG_SESSION_TYPE=wayland exec dbus-run-session gnome-session}. Actuellement seul GNOME support Wayland." #. type: defvr -#: guix-git/doc/guix.texi:20475 +#: guix-git/doc/guix.texi:20837 #, no-wrap msgid "{Scheme Variable} gnome-desktop-service-type" msgstr "{Variable Scheme} gnome-desktop-service-type" #. type: defvr -#: guix-git/doc/guix.texi:20479 +#: guix-git/doc/guix.texi:20841 msgid "This is the type of the service that adds the @uref{https://www.gnome.org, GNOME} desktop environment. Its value is a @code{gnome-desktop-configuration} object (see below)." msgstr "C'est le type de service qui ajoute l'environnement de bureau @uref{https://www.gnome.org, GNOME}. Sa valeur est un objet @code{gnome-desktop-configuration} (voir plus bas)." #. type: defvr -#: guix-git/doc/guix.texi:20482 +#: guix-git/doc/guix.texi:20844 msgid "This service adds the @code{gnome} package to the system profile, and extends polkit with the actions from @code{gnome-settings-daemon}." msgstr "Ce service ajoute le paquet @code{gnome} au profil du système et étend polkit avec les actions de @code{gnome-settings-daemon}." #. type: deftp -#: guix-git/doc/guix.texi:20484 +#: guix-git/doc/guix.texi:20846 #, no-wrap msgid "{Data Type} gnome-desktop-configuration" msgstr "{Type de données} gnome-desktop-configuration" #. type: deftp -#: guix-git/doc/guix.texi:20486 +#: guix-git/doc/guix.texi:20848 msgid "Configuration record for the GNOME desktop environment." msgstr "Enregistrement de la configuration de l'environnement de bureau GNOME." #. type: item -#: guix-git/doc/guix.texi:20488 +#: guix-git/doc/guix.texi:20850 #, no-wrap msgid "@code{gnome} (default: @code{gnome})" msgstr "@code{gnome} (par défaut : @code{gnome})" #. type: table -#: guix-git/doc/guix.texi:20490 +#: guix-git/doc/guix.texi:20852 msgid "The GNOME package to use." msgstr "Le paquet GNOME à utiliser." #. type: defvr -#: guix-git/doc/guix.texi:20493 +#: guix-git/doc/guix.texi:20855 #, no-wrap msgid "{Scheme Variable} xfce-desktop-service-type" msgstr "{Variable Scheme} xfce-desktop-service-type" #. type: defvr -#: guix-git/doc/guix.texi:20497 +#: guix-git/doc/guix.texi:20859 msgid "This is the type of a service to run the @uref{Xfce, https://xfce.org/} desktop environment. Its value is an @code{xfce-desktop-configuration} object (see below)." msgstr "C'est le type de service qui lance l'environnement de bureau @uref{Xfce, https://xfce.org/}. Sa valeur est un objet @code{xfce-desktop-configuration} (voir plus bas)." #. type: defvr -#: guix-git/doc/guix.texi:20502 +#: guix-git/doc/guix.texi:20864 msgid "This service adds the @code{xfce} package to the system profile, and extends polkit with the ability for @code{thunar} to manipulate the file system as root from within a user session, after the user has authenticated with the administrator's password." msgstr "Ce service ajoute le paquet @code{xfce} au profil du système et étend polkit avec la possibilité pour @code{thunar} de manipuler le système de fichier en root depuis une session utilisateur, après que l'utilisateur s'authentifie avec le mot de passe administrateur." #. type: defvr -#: guix-git/doc/guix.texi:20508 +#: guix-git/doc/guix.texi:20870 msgid "Note that @code{xfce4-panel} and its plugin packages should be installed in the same profile to ensure compatibility. When using this service, you should add extra plugins (@code{xfce4-whiskermenu-plugin}, @code{xfce4-weather-plugin}, etc.) to the @code{packages} field of your @code{operating-system}." msgstr "Remarquez que @code{xfce4-panel} et ses paquets de greffons devraient être installés dans le même profil pour assurer la compatibilité. Lorsque vous utilisez ce service, vous devriez ajouter les greffons supplémentaires (@code{xfce4-whiskermenu-plugin}, @code{xfce4-weather-plugin}, etc) au champ @code{packages} de votre @code{operating-system}." #. type: deftp -#: guix-git/doc/guix.texi:20510 +#: guix-git/doc/guix.texi:20872 #, no-wrap msgid "{Data Type} xfce-desktop-configuration" msgstr "{Type de données} xfce-desktop-configuration" #. type: deftp -#: guix-git/doc/guix.texi:20512 +#: guix-git/doc/guix.texi:20874 msgid "Configuration record for the Xfce desktop environment." msgstr "Enregistrement de la configuration de l'environnement de bureau Xfce." #. type: item -#: guix-git/doc/guix.texi:20514 +#: guix-git/doc/guix.texi:20876 #, no-wrap msgid "@code{xfce} (default: @code{xfce})" msgstr "@code{xfce} (par défaut : @code{xfce})" #. type: table -#: guix-git/doc/guix.texi:20516 +#: guix-git/doc/guix.texi:20878 msgid "The Xfce package to use." msgstr "Le paquet Xfce à utiliser." #. type: deffn -#: guix-git/doc/guix.texi:20519 +#: guix-git/doc/guix.texi:20881 #, no-wrap msgid "{Scheme Variable} mate-desktop-service-type" msgstr "{Variable Scheme} mate-desktop-service-type" #. type: deffn -#: guix-git/doc/guix.texi:20523 +#: guix-git/doc/guix.texi:20885 msgid "This is the type of the service that runs the @uref{https://mate-desktop.org/, MATE desktop environment}. Its value is a @code{mate-desktop-configuration} object (see below)." msgstr "C'est le type de service qui lance @uref{https://mate-desktop.org/, l'environnement de bureau MATE}. Sa valeur est un objet @code{mate-desktop-configuration} (voir plus bas)." #. type: deffn -#: guix-git/doc/guix.texi:20527 +#: guix-git/doc/guix.texi:20889 msgid "This service adds the @code{mate} package to the system profile, and extends polkit with the actions from @code{mate-settings-daemon}." msgstr "Ce service ajoute le paquet @code{mate} au profil du système, et étend polkit avec les actions de @code{mate-settings-daemon}." #. type: deftp -#: guix-git/doc/guix.texi:20529 +#: guix-git/doc/guix.texi:20891 #, no-wrap msgid "{Data Type} mate-desktop-configuration" msgstr "{Type de données} mate-desktop-configuration" #. type: deftp -#: guix-git/doc/guix.texi:20531 +#: guix-git/doc/guix.texi:20893 msgid "Configuration record for the MATE desktop environment." msgstr "Enregistrement de configuration pour l'environnement de bureau MATE." #. type: item -#: guix-git/doc/guix.texi:20533 +#: guix-git/doc/guix.texi:20895 #, no-wrap msgid "@code{mate} (default: @code{mate})" msgstr "@code{mate} (par défaut : @code{mate})" #. type: table -#: guix-git/doc/guix.texi:20535 +#: guix-git/doc/guix.texi:20897 msgid "The MATE package to use." msgstr "Le paquet MATE à utiliser." #. type: deffn -#: guix-git/doc/guix.texi:20538 +#: guix-git/doc/guix.texi:20900 #, no-wrap msgid "{Scheme Variable} lxqt-desktop-service-type" msgstr "{Variable Scheme} lxqt-desktop-service-type" #. type: deffn -#: guix-git/doc/guix.texi:20542 +#: guix-git/doc/guix.texi:20904 msgid "This is the type of the service that runs the @uref{https://lxqt-project.org, LXQt desktop environment}. Its value is a @code{lxqt-desktop-configuration} object (see below)." msgstr "C'est le type de service qui lance @uref{https://lxqt-project.org, l'environnement de bureau LXQt}. Sa valeur est un objet @code{lxqt-desktop-configuration} (voir plus bas)." #. type: deffn -#: guix-git/doc/guix.texi:20545 +#: guix-git/doc/guix.texi:20907 msgid "This service adds the @code{lxqt} package to the system profile." msgstr "Ce service ajoute le paquet @code{lxqt} au profil du système." #. type: deftp -#: guix-git/doc/guix.texi:20547 +#: guix-git/doc/guix.texi:20909 #, no-wrap msgid "{Data Type} lxqt-desktop-configuration" msgstr "{Type de données} lxqt-desktop-configuration" #. type: deftp -#: guix-git/doc/guix.texi:20549 +#: guix-git/doc/guix.texi:20911 msgid "Configuration record for the LXQt desktop environment." msgstr "Enregistrement de la configuration de l'environnement de bureau LXQt." #. type: item -#: guix-git/doc/guix.texi:20551 +#: guix-git/doc/guix.texi:20913 #, no-wrap msgid "@code{lxqt} (default: @code{lxqt})" msgstr "@code{lxqt} (par défaut : @code{lxqt})" #. type: table -#: guix-git/doc/guix.texi:20553 +#: guix-git/doc/guix.texi:20915 msgid "The LXQT package to use." msgstr "Le paquet LXQT à utiliser." #. type: deffn -#: guix-git/doc/guix.texi:20556 +#: guix-git/doc/guix.texi:20918 #, no-wrap msgid "{Scheme Variable} enlightenment-desktop-service-type" msgstr "{Variable Scheme} enlightenment-desktop-service-type" #. type: deffn -#: guix-git/doc/guix.texi:20559 +#: guix-git/doc/guix.texi:20921 msgid "Return a service that adds the @code{enlightenment} package to the system profile, and extends dbus with actions from @code{efl}." msgstr "Renvoie un service qui ajoute le paquet @code{enlightenment} et étend dbus avec les actions de @code{efl}." #. type: deftp -#: guix-git/doc/guix.texi:20561 +#: guix-git/doc/guix.texi:20923 #, no-wrap msgid "{Data Type} enlightenment-desktop-service-configuration" msgstr "{Type de données} enlightenment-desktop-service-configuration" #. type: item -#: guix-git/doc/guix.texi:20563 +#: guix-git/doc/guix.texi:20925 #, no-wrap msgid "@code{enlightenment} (default: @code{enlightenment})" msgstr "@code{enlightenment} (par défaut : @code{enlightenment})" #. type: table -#: guix-git/doc/guix.texi:20565 +#: guix-git/doc/guix.texi:20927 msgid "The enlightenment package to use." msgstr "Le paquet enlightenment à utiliser." #. type: Plain text -#: guix-git/doc/guix.texi:20573 +#: guix-git/doc/guix.texi:20935 msgid "Because the GNOME, Xfce and MATE desktop services pull in so many packages, the default @code{%desktop-services} variable doesn't include any of them by default. To add GNOME, Xfce or MATE, just @code{cons} them onto @code{%desktop-services} in the @code{services} field of your @code{operating-system}:" msgstr "Comme les services de bureau GNOME, Xfce et MATE récupèrent tant de paquet, la variable @code{%desktop-services} par défaut n'inclut aucun d'entre eux. Pour ajouter GNOME, Xfce ou MATE, utilisez @code{cons} pour les ajouter à @code{%desktop-services} dans le champ @code{services} de votre @code{operating-system} :" #. type: lisp -#: guix-git/doc/guix.texi:20584 +#: guix-git/doc/guix.texi:20946 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -38847,580 +39509,580 @@ msgstr "" " ...)\n" #. type: Plain text -#: guix-git/doc/guix.texi:20588 +#: guix-git/doc/guix.texi:20950 msgid "These desktop environments will then be available as options in the graphical login window." msgstr "Ces environnements de bureau seront alors disponibles comme une option dans la fenêtre de connexion graphique." #. type: Plain text -#: guix-git/doc/guix.texi:20592 +#: guix-git/doc/guix.texi:20954 msgid "The actual service definitions included in @code{%desktop-services} and provided by @code{(gnu services dbus)} and @code{(gnu services desktop)} are described below." msgstr "Les définitions de service qui sont vraiment incluses dans @code{%desktop-services} et fournies par @code{(gnu services dbus)} et @code{(gnu services desktop)} sont décrites plus bas." #. type: deffn -#: guix-git/doc/guix.texi:20593 +#: guix-git/doc/guix.texi:20955 #, no-wrap msgid "{Scheme Procedure} dbus-service [#:dbus @var{dbus}] [#:services '()]" msgstr "{Procédure Scheme} dbus-service [#:dbus @var{dbus}] [#:services '()]" #. type: deffn -#: guix-git/doc/guix.texi:20596 +#: guix-git/doc/guix.texi:20958 msgid "Return a service that runs the ``system bus'', using @var{dbus}, with support for @var{services}." msgstr "Renvoie un service qui lance le « bus système », @var{dbus}, avec le support de @var{services}." #. type: deffn -#: guix-git/doc/guix.texi:20600 +#: guix-git/doc/guix.texi:20962 msgid "@uref{https://dbus.freedesktop.org/, D-Bus} is an inter-process communication facility. Its system bus is used to allow system services to communicate and to be notified of system-wide events." msgstr "@uref{https://dbus.freedesktop.org/, D-Bus} est un utilitaire de communication inter-processus. Son bus système est utilisé pour permettre à des services systèmes de communiquer et d'être notifiés d'événements systèmes." #. type: deffn -#: guix-git/doc/guix.texi:20605 +#: guix-git/doc/guix.texi:20967 msgid "@var{services} must be a list of packages that provide an @file{etc/dbus-1/system.d} directory containing additional D-Bus configuration and policy files. For example, to allow avahi-daemon to use the system bus, @var{services} must be equal to @code{(list avahi)}." msgstr "@var{services} doit être une liste de paquets qui fournissent un répertoire @file{etc/dbus-1/system.d} contenant de la configuration D-Bus supplémentaire et des fichiers de politiques. Par exemple, pour permettre à avahi-daemon d'utiliser le bus système, @var{services} doit être égal à @code{(list avahi)}." #. type: deffn -#: guix-git/doc/guix.texi:20607 +#: guix-git/doc/guix.texi:20969 #, no-wrap msgid "{Scheme Procedure} elogind-service [#:config @var{config}]" msgstr "{Procédure Scheme} elogind-service [#:config @var{config}]" #. type: deffn -#: guix-git/doc/guix.texi:20613 +#: guix-git/doc/guix.texi:20975 msgid "Return a service that runs the @code{elogind} login and seat management daemon. @uref{https://github.com/elogind/elogind, Elogind} exposes a D-Bus interface that can be used to know which users are logged in, know what kind of sessions they have open, suspend the system, inhibit system suspend, reboot the system, and other tasks." msgstr "Renvoie un service qui lance le démon de gestion de connexion et de session @code{elogind}. @uref{https://github.com/elogind/elogind, Elogind} expose une interface D-Bus qui peut être utilisée pour connaître quels utilisateurs sont connectés, le type de session qu'ils sont ouverte, suspendre le système, désactiver la veille système, redémarrer le système et d'autre tâches." #. type: deffn -#: guix-git/doc/guix.texi:20617 +#: guix-git/doc/guix.texi:20979 msgid "Elogind handles most system-level power events for a computer, for example suspending the system when a lid is closed, or shutting it down when the power button is pressed." msgstr "Elogind gère la plupart des événements liés à l'énergie du système, par exemple mettre en veille le système quand l'écran est rabattu ou en l'éteignant quand le bouton de démarrage est appuyé." #. type: deffn -#: guix-git/doc/guix.texi:20622 +#: guix-git/doc/guix.texi:20984 msgid "The @var{config} keyword argument specifies the configuration for elogind, and should be the result of an @code{(elogind-configuration (@var{parameter} @var{value})...)} invocation. Available parameters and their default values are:" msgstr "L'argument @var{config} spécifie la configuration d'elogind et devrait être le résultat d'une invocation de @code{(elogind-configuration (@var{parameter} @var{value})...)}. Les paramètres disponibles et leur valeur par défaut sont :" #. type: item -#: guix-git/doc/guix.texi:20624 +#: guix-git/doc/guix.texi:20986 #, no-wrap msgid "kill-user-processes?" msgstr "kill-user-processes?" #. type: code{#1} -#: guix-git/doc/guix.texi:20626 guix-git/doc/guix.texi:20646 -#: guix-git/doc/guix.texi:20648 guix-git/doc/guix.texi:20650 -#: guix-git/doc/guix.texi:20662 +#: guix-git/doc/guix.texi:20988 guix-git/doc/guix.texi:21008 +#: guix-git/doc/guix.texi:21010 guix-git/doc/guix.texi:21012 +#: guix-git/doc/guix.texi:21024 msgid "#f" msgstr "#f" #. type: item -#: guix-git/doc/guix.texi:20626 +#: guix-git/doc/guix.texi:20988 #, no-wrap msgid "kill-only-users" msgstr "kill-only-users" #. type: code{#1} -#: guix-git/doc/guix.texi:20628 guix-git/doc/guix.texi:20668 +#: guix-git/doc/guix.texi:20990 guix-git/doc/guix.texi:21030 msgid "()" msgstr "()" #. type: item -#: guix-git/doc/guix.texi:20628 +#: guix-git/doc/guix.texi:20990 #, no-wrap msgid "kill-exclude-users" msgstr "kill-exclude-users" #. type: code{#1} -#: guix-git/doc/guix.texi:20630 +#: guix-git/doc/guix.texi:20992 msgid "(\"root\")" msgstr "(\"root\")" #. type: item -#: guix-git/doc/guix.texi:20630 +#: guix-git/doc/guix.texi:20992 #, no-wrap msgid "inhibit-delay-max-seconds" msgstr "inhibit-delay-max-seconds" #. type: code{#1} -#: guix-git/doc/guix.texi:20632 +#: guix-git/doc/guix.texi:20994 msgid "5" msgstr "5" #. type: item -#: guix-git/doc/guix.texi:20632 +#: guix-git/doc/guix.texi:20994 #, no-wrap msgid "handle-power-key" msgstr "handle-power-key" #. type: code{#1} -#: guix-git/doc/guix.texi:20634 +#: guix-git/doc/guix.texi:20996 msgid "poweroff" msgstr "poweroff" #. type: item -#: guix-git/doc/guix.texi:20634 +#: guix-git/doc/guix.texi:20996 #, no-wrap msgid "handle-suspend-key" msgstr "handle-suspend-key" #. type: code{#1} -#: guix-git/doc/guix.texi:20636 guix-git/doc/guix.texi:20640 +#: guix-git/doc/guix.texi:20998 guix-git/doc/guix.texi:21002 msgid "suspend" msgstr "suspend" #. type: item -#: guix-git/doc/guix.texi:20636 +#: guix-git/doc/guix.texi:20998 #, no-wrap msgid "handle-hibernate-key" msgstr "handle-hibernate-key" #. type: code{#1} -#: guix-git/doc/guix.texi:20638 +#: guix-git/doc/guix.texi:21000 msgid "hibernate" msgstr "hibernate" #. type: item -#: guix-git/doc/guix.texi:20638 +#: guix-git/doc/guix.texi:21000 #, no-wrap msgid "handle-lid-switch" msgstr "handle-lid-switch" #. type: item -#: guix-git/doc/guix.texi:20640 +#: guix-git/doc/guix.texi:21002 #, no-wrap msgid "handle-lid-switch-docked" msgstr "handle-lid-switch-docked" #. type: code{#1} -#: guix-git/doc/guix.texi:20642 guix-git/doc/guix.texi:20644 -#: guix-git/doc/guix.texi:20656 +#: guix-git/doc/guix.texi:21004 guix-git/doc/guix.texi:21006 +#: guix-git/doc/guix.texi:21018 msgid "ignore" msgstr "ignore" #. type: item -#: guix-git/doc/guix.texi:20642 +#: guix-git/doc/guix.texi:21004 #, no-wrap msgid "handle-lid-switch-external-power" msgstr "handle-lid-switch-external-power" #. type: item -#: guix-git/doc/guix.texi:20644 +#: guix-git/doc/guix.texi:21006 #, no-wrap msgid "power-key-ignore-inhibited?" msgstr "power-key-ignore-inhibited?" #. type: item -#: guix-git/doc/guix.texi:20646 +#: guix-git/doc/guix.texi:21008 #, no-wrap msgid "suspend-key-ignore-inhibited?" msgstr "suspend-key-ignore-inhibited?" #. type: item -#: guix-git/doc/guix.texi:20648 +#: guix-git/doc/guix.texi:21010 #, no-wrap msgid "hibernate-key-ignore-inhibited?" msgstr "hibernate-key-ignore-inhibited?" #. type: item -#: guix-git/doc/guix.texi:20650 +#: guix-git/doc/guix.texi:21012 #, no-wrap msgid "lid-switch-ignore-inhibited?" msgstr "lid-switch-ignore-inhibited?" #. type: code{#1} -#: guix-git/doc/guix.texi:20652 guix-git/doc/guix.texi:20664 +#: guix-git/doc/guix.texi:21014 guix-git/doc/guix.texi:21026 msgid "#t" msgstr "#t" #. type: item -#: guix-git/doc/guix.texi:20652 +#: guix-git/doc/guix.texi:21014 #, no-wrap msgid "holdoff-timeout-seconds" msgstr "holdoff-timeout-seconds" #. type: code{#1} -#: guix-git/doc/guix.texi:20654 +#: guix-git/doc/guix.texi:21016 msgid "30" msgstr "30" #. type: item -#: guix-git/doc/guix.texi:20654 +#: guix-git/doc/guix.texi:21016 #, no-wrap msgid "idle-action" msgstr "idle-action" #. type: item -#: guix-git/doc/guix.texi:20656 +#: guix-git/doc/guix.texi:21018 #, no-wrap msgid "idle-action-seconds" msgstr "idle-action-seconds" #. type: code{#1} -#: guix-git/doc/guix.texi:20658 +#: guix-git/doc/guix.texi:21020 msgid "(* 30 60)" msgstr "(* 30 60)" #. type: item -#: guix-git/doc/guix.texi:20658 +#: guix-git/doc/guix.texi:21020 #, no-wrap msgid "runtime-directory-size-percent" msgstr "runtime-directory-size-percent" #. type: code{#1} -#: guix-git/doc/guix.texi:20660 +#: guix-git/doc/guix.texi:21022 msgid "10" msgstr "10" #. type: item -#: guix-git/doc/guix.texi:20660 +#: guix-git/doc/guix.texi:21022 #, no-wrap msgid "runtime-directory-size" msgstr "runtime-directory-size" #. type: item -#: guix-git/doc/guix.texi:20662 +#: guix-git/doc/guix.texi:21024 #, no-wrap msgid "remove-ipc?" msgstr "remove-ipc?" #. type: item -#: guix-git/doc/guix.texi:20664 +#: guix-git/doc/guix.texi:21026 #, no-wrap msgid "suspend-state" msgstr "suspend-state" #. type: code{#1} -#: guix-git/doc/guix.texi:20666 +#: guix-git/doc/guix.texi:21028 msgid "(\"mem\" \"standby\" \"freeze\")" msgstr "(\"mem\" \"standby\" \"freeze\")" #. type: item -#: guix-git/doc/guix.texi:20666 +#: guix-git/doc/guix.texi:21028 #, no-wrap msgid "suspend-mode" msgstr "suspend-mode" #. type: item -#: guix-git/doc/guix.texi:20668 +#: guix-git/doc/guix.texi:21030 #, no-wrap msgid "hibernate-state" msgstr "hibernate-state" #. type: code{#1} -#: guix-git/doc/guix.texi:20670 guix-git/doc/guix.texi:20674 +#: guix-git/doc/guix.texi:21032 guix-git/doc/guix.texi:21036 msgid "(\"disk\")" msgstr "(\"disk\")" #. type: item -#: guix-git/doc/guix.texi:20670 +#: guix-git/doc/guix.texi:21032 #, no-wrap msgid "hibernate-mode" msgstr "hibernate-mode" #. type: code{#1} -#: guix-git/doc/guix.texi:20672 +#: guix-git/doc/guix.texi:21034 msgid "(\"platform\" \"shutdown\")" msgstr "(\"platform\" \"shutdown\")" #. type: item -#: guix-git/doc/guix.texi:20672 +#: guix-git/doc/guix.texi:21034 #, no-wrap msgid "hybrid-sleep-state" msgstr "hybrid-sleep-state" #. type: item -#: guix-git/doc/guix.texi:20674 +#: guix-git/doc/guix.texi:21036 #, no-wrap msgid "hybrid-sleep-mode" msgstr "hybrid-sleep-mode" #. type: code{#1} -#: guix-git/doc/guix.texi:20676 +#: guix-git/doc/guix.texi:21038 msgid "(\"suspend\" \"platform\" \"shutdown\")" msgstr "(\"suspend\" \"platform\" \"shutdown\")" #. type: deffn -#: guix-git/doc/guix.texi:20679 +#: guix-git/doc/guix.texi:21041 #, no-wrap msgid "{Scheme Procedure} accountsservice-service @" msgstr "{Procédure Scheme} accountsservice-service @" #. type: deffn -#: guix-git/doc/guix.texi:20687 +#: guix-git/doc/guix.texi:21049 msgid "[#:accountsservice @var{accountsservice}] Return a service that runs AccountsService, a system service that can list available accounts, change their passwords, and so on. AccountsService integrates with PolicyKit to enable unprivileged users to acquire the capability to modify their system configuration. @uref{https://www.freedesktop.org/wiki/Software/AccountsService/, the accountsservice web site} for more information." msgstr "" "[#:accountsservice @var{accountsservice}]\n" "Renvoie un service qui lance AccountsService, un service système qui peut lister les comptes disponibles, changer leur mot de passe, etc. AccountsService s'intègre à Polkit pour permettre aux utilisateurs non privilégiés de pouvoir modifier la configuration de leur système. @uref{https://www.freedesktop.org/wiki/Software/AccountsService/, le site de accountsservice} pour trouver plus d'informations." #. type: deffn -#: guix-git/doc/guix.texi:20690 +#: guix-git/doc/guix.texi:21052 msgid "The @var{accountsservice} keyword argument is the @code{accountsservice} package to expose as a service." msgstr "L'argument @var{accountsservice} est le paquet @code{accountsservice} à exposer comme un service." #. type: deffn -#: guix-git/doc/guix.texi:20692 +#: guix-git/doc/guix.texi:21054 #, no-wrap msgid "{Scheme Procedure} polkit-service @" msgstr "{Procédure Scheme} polkit-service @" #. type: deffn -#: guix-git/doc/guix.texi:20701 +#: guix-git/doc/guix.texi:21063 msgid "[#:polkit @var{polkit}] Return a service that runs the @uref{https://www.freedesktop.org/wiki/Software/polkit/, Polkit privilege management service}, which allows system administrators to grant access to privileged operations in a structured way. By querying the Polkit service, a privileged system component can know when it should grant additional capabilities to ordinary users. For example, an ordinary user can be granted the capability to suspend the system if the user is logged in locally." msgstr "" "[#:polkit @var{polkit}]\n" "Renvoie un service qui lance le @uref{https://www.freedesktop.org/wiki/Software/polkit/, service de gestion des privilèges Polkit}, qui permet aux administrateurs systèmes de permettre l'accès à des opération privilégiées d'une manière structurée. En demandant au service Polkit, un composant système privilégié peut savoir lorsqu'il peut donner des privilèges supplémentaires à des utilisateurs normaux. Par exemple, un utilisateur normal peut obtenir le droit de mettre le système en veille si l'utilisateur est connecté localement." #. type: defvr -#: guix-git/doc/guix.texi:20703 +#: guix-git/doc/guix.texi:21065 #, no-wrap msgid "{Scheme Variable} polkit-wheel-service" msgstr "{Variable Scheme} polkit-wheel-service" #. type: defvr -#: guix-git/doc/guix.texi:20708 +#: guix-git/doc/guix.texi:21070 msgid "Service that adds the @code{wheel} group as admins to the Polkit service. This makes it so that users in the @code{wheel} group are queried for their own passwords when performing administrative actions instead of @code{root}'s, similar to the behaviour used by @code{sudo}." msgstr "Service qui ajoute le groupe @code{wheel} comme administrateur au service Polkit. Cela fait en sorte qu'on demande le mot de passe des utilisateurs du groupe @code{wheel} eux-mêmes pour effectuer des tâches d'administration au lieu du mot de passe @code{root}, comme le fait @code{sudo}." #. type: defvr -#: guix-git/doc/guix.texi:20710 +#: guix-git/doc/guix.texi:21072 #, no-wrap msgid "{Scheme Variable} upower-service-type" msgstr "{Variable Scheme} upower-service-type" #. type: defvr -#: guix-git/doc/guix.texi:20714 +#: guix-git/doc/guix.texi:21076 msgid "Service that runs @uref{https://upower.freedesktop.org/, @command{upowerd}}, a system-wide monitor for power consumption and battery levels, with the given configuration settings." msgstr "Service qui lance @uref{https://upower.freedesktop.org/, @command{upowerd}}, un moniteur système de consommation d'énergie et de niveau de batterie, avec les paramètres de configuration donnés." #. type: defvr -#: guix-git/doc/guix.texi:20717 +#: guix-git/doc/guix.texi:21079 msgid "It implements the @code{org.freedesktop.UPower} D-Bus interface, and is notably used by GNOME." msgstr "Il implémente l'interface D-Bus @code{org.freedesktop.UPower} et est notamment utilisé par GNOME." #. type: deftp -#: guix-git/doc/guix.texi:20719 +#: guix-git/doc/guix.texi:21081 #, no-wrap msgid "{Data Type} upower-configuration" msgstr "{Type de données} upower-configuration" #. type: deftp -#: guix-git/doc/guix.texi:20721 +#: guix-git/doc/guix.texi:21083 msgid "Data type representation the configuration for UPower." msgstr "Type de données représentant la configuration de UPower." #. type: item -#: guix-git/doc/guix.texi:20724 +#: guix-git/doc/guix.texi:21086 #, no-wrap msgid "@code{upower} (default: @var{upower})" msgstr "@code{upower} (par défaut : @var{upower})" #. type: table -#: guix-git/doc/guix.texi:20726 +#: guix-git/doc/guix.texi:21088 msgid "Package to use for @code{upower}." msgstr "Paquet à utiliser pour @code{upower}." #. type: item -#: guix-git/doc/guix.texi:20727 +#: guix-git/doc/guix.texi:21089 #, no-wrap msgid "@code{watts-up-pro?} (default: @code{#f})" msgstr "@code{watts-up-pro?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:20729 +#: guix-git/doc/guix.texi:21091 msgid "Enable the Watts Up Pro device." msgstr "Active le périphérique Watts Up Pro." #. type: item -#: guix-git/doc/guix.texi:20730 +#: guix-git/doc/guix.texi:21092 #, no-wrap msgid "@code{poll-batteries?} (default: @code{#t})" msgstr "@code{poll-batteries?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:20732 +#: guix-git/doc/guix.texi:21094 msgid "Enable polling the kernel for battery level changes." msgstr "Active les requêtes au noyau pour les changements de niveau de batterie." #. type: item -#: guix-git/doc/guix.texi:20733 +#: guix-git/doc/guix.texi:21095 #, no-wrap msgid "@code{ignore-lid?} (default: @code{#f})" msgstr "@code{ignore-lid?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:20735 +#: guix-git/doc/guix.texi:21097 msgid "Ignore the lid state, this can be useful if it's incorrect on a device." msgstr "Ignore l'état de l'écran, ce qui peut être utile s'il est incorrect sur un appareil." #. type: item -#: guix-git/doc/guix.texi:20736 +#: guix-git/doc/guix.texi:21098 #, no-wrap msgid "@code{use-percentage-for-policy?} (default: @code{#f})" msgstr "@code{use-percentage-for-policy?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:20739 +#: guix-git/doc/guix.texi:21101 msgid "Whether battery percentage based policy should be used. The default is to use the time left, change to @code{#t} to use the percentage." msgstr "Indique si la politique de batterie basée sur le pourcentage devrait être utilisée. La valeur par défaut est d'utiliser la durée restante, changez en @code{#t} pour utiliser les pourcentages." #. type: item -#: guix-git/doc/guix.texi:20740 +#: guix-git/doc/guix.texi:21102 #, no-wrap msgid "@code{percentage-low} (default: @code{10})" msgstr "@code{percentage-low} (par défaut : @code{10})" #. type: table -#: guix-git/doc/guix.texi:20743 +#: guix-git/doc/guix.texi:21105 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which the battery is considered low." msgstr "Lorsque @code{use-percentage-for-policy?} est @code{#t}, cela indique à quel niveau la batterie est considérée comme faible." #. type: item -#: guix-git/doc/guix.texi:20744 +#: guix-git/doc/guix.texi:21106 #, no-wrap msgid "@code{percentage-critical} (default: @code{3})" msgstr "@code{percentage-critical} (par défaut : @code{3})" #. type: table -#: guix-git/doc/guix.texi:20747 +#: guix-git/doc/guix.texi:21109 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which the battery is considered critical." msgstr "Lorsque @code{use-percentage-for-policy?} est @code{#t}, cela indique à quel niveau la batterie est considérée comme critique." #. type: item -#: guix-git/doc/guix.texi:20748 +#: guix-git/doc/guix.texi:21110 #, no-wrap msgid "@code{percentage-action} (default: @code{2})" msgstr "@code{percentage-action} (par défaut : @code{2})" #. type: table -#: guix-git/doc/guix.texi:20751 +#: guix-git/doc/guix.texi:21113 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which action will be taken." msgstr "Lorsque @code{use-percentage-for-policy?} est @code{#t}, cela indique à quel niveau l'action sera prise." #. type: item -#: guix-git/doc/guix.texi:20752 +#: guix-git/doc/guix.texi:21114 #, no-wrap msgid "@code{time-low} (default: @code{1200})" msgstr "@code{time-low} (par défaut : @code{1200})" #. type: table -#: guix-git/doc/guix.texi:20755 +#: guix-git/doc/guix.texi:21117 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which the battery is considered low." msgstr "Lorsque @code{use-percentage-for-policy?} est @code{#f}, cela indique à quelle durée restante en secondes la batterie est considérée comme faible." #. type: item -#: guix-git/doc/guix.texi:20756 +#: guix-git/doc/guix.texi:21118 #, no-wrap msgid "@code{time-critical} (default: @code{300})" msgstr "@code{time-critical} (par défaut : @code{300})" #. type: table -#: guix-git/doc/guix.texi:20759 +#: guix-git/doc/guix.texi:21121 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which the battery is considered critical." msgstr "Lorsque @code{use-percentage-for-policy?} est @code{#f}, cela indique à quelle durée restante en secondes la batterie est considérée comme critique." #. type: item -#: guix-git/doc/guix.texi:20760 +#: guix-git/doc/guix.texi:21122 #, no-wrap msgid "@code{time-action} (default: @code{120})" msgstr "@code{time-action} (par défaut : @code{120})" #. type: table -#: guix-git/doc/guix.texi:20763 +#: guix-git/doc/guix.texi:21125 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which action will be taken." msgstr "Lorsque @code{use-percentage-for-policy?} est @code{#f}, cela indique à quelle durée restante en secondes l'action sera prise." #. type: item -#: guix-git/doc/guix.texi:20764 +#: guix-git/doc/guix.texi:21126 #, no-wrap msgid "@code{critical-power-action} (default: @code{'hybrid-sleep})" msgstr "@code{critical-power-action} (par défaut : @code{'hybrid-sleep})" #. type: table -#: guix-git/doc/guix.texi:20767 +#: guix-git/doc/guix.texi:21129 msgid "The action taken when @code{percentage-action} or @code{time-action} is reached (depending on the configuration of @code{use-percentage-for-policy?})." msgstr "L'action à prendre lorsque @code{percentage-action} ou @code{time-action} est atteint (en fonction de la configuration de @code{use-percentage-for-policy?})." #. type: table -#: guix-git/doc/guix.texi:20769 +#: guix-git/doc/guix.texi:21131 msgid "Possible values are:" msgstr "Les valeurs possibles sont :" #. type: code{#1} -#: guix-git/doc/guix.texi:20773 +#: guix-git/doc/guix.texi:21135 msgid "'power-off" msgstr "'power-off" #. type: code{#1} -#: guix-git/doc/guix.texi:20776 +#: guix-git/doc/guix.texi:21138 msgid "'hibernate" msgstr "'hibernate" #. type: itemize -#: guix-git/doc/guix.texi:20779 +#: guix-git/doc/guix.texi:21141 msgid "@code{'hybrid-sleep}." msgstr "@code{'hybrid-sleep}." #. type: deffn -#: guix-git/doc/guix.texi:20784 +#: guix-git/doc/guix.texi:21146 #, no-wrap msgid "{Scheme Procedure} udisks-service [#:udisks @var{udisks}]" msgstr "{Procédure Scheme} udisks-service [#:udisks @var{udisks}]" #. type: deffn -#: guix-git/doc/guix.texi:20794 +#: guix-git/doc/guix.texi:21156 msgid "Return a service for @uref{https://udisks.freedesktop.org/docs/latest/, UDisks}, a @dfn{disk management} daemon that provides user interfaces with notifications and ways to mount/unmount disks. Programs that talk to UDisks include the @command{udisksctl} command, part of UDisks, and GNOME Disks. Note that Udisks relies on the @command{mount} command, so it will only be able to use the file-system utilities installed in the system profile. For example if you want to be able to mount NTFS file-systems in read and write fashion, you'll need to have @code{ntfs-3g} installed system-wide." msgstr "Renvoie un service pour @uref{https://udisks.freedesktop.org/docs/latest/, UDisks}, un démon de @dfn{gestion de disques} qui fournit des notifications et la capacité de monter et démonter des disques à des interfaces utilisateurs. Les programmes qui parlent à UDisks sont par exemple la commande @command{udisksctl}, qui fait partie de UDisks, et GNOME Disks. Remarquez que Udisks s'appuie sur la commande @command{mount}, donc il ne sera capable d'utiliser que les utilitaires de systèmes de fichiers installés dans le profil du système. Par exemple si vous voulez monter des systèmes de fichiers NTFS en lecture-écriture, vous devrez ajouter @code{ntfs-3g} aux paquets installés sur le système entier." #. type: deffn -#: guix-git/doc/guix.texi:20796 +#: guix-git/doc/guix.texi:21158 #, no-wrap msgid "{Scheme Variable} colord-service-type" msgstr "{Variable Scheme} colord-service-type" #. type: deffn -#: guix-git/doc/guix.texi:20803 +#: guix-git/doc/guix.texi:21165 msgid "This is the type of the service that runs @command{colord}, a system service with a D-Bus interface to manage the color profiles of input and output devices such as screens and scanners. It is notably used by the GNOME Color Manager graphical tool. See @uref{https://www.freedesktop.org/software/colord/, the colord web site} for more information." msgstr "C'est le type de service qui lance @command{colord}, un service système avec une interface D-Bus pour gérer les profils de couleur des périphériques d'entrées et de sorties comme les écrans et les scanners. Il est notamment utilisé par l'outil graphique GNOME Color Manager. Voir @uref{https://www.freedesktop.org/software/colord/, le site web de colord} pour plus d'informations." #. type: cindex -#: guix-git/doc/guix.texi:20805 +#: guix-git/doc/guix.texi:21167 #, no-wrap msgid "scanner access" msgstr "accès au scanner" #. type: defvr -#: guix-git/doc/guix.texi:20806 +#: guix-git/doc/guix.texi:21168 #, no-wrap msgid "{Scheme Variable} sane-service-type" msgstr "{Variable Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:20812 +#: guix-git/doc/guix.texi:21174 msgid "This service provides access to scanners @i{via} @uref{http://www.sane-project.org, SANE} by installing the necessary udev rules. It is included in @code{%desktop-services} (@pxref{Desktop Services}) and relies by default on @code{sane-backends-minimal} package (see below) for hardware support." msgstr "Ce service fournit un accès aux scanner via @uref{http://www.sane-project.org, SANE} en installant les règles udev nécessaires. Il est inclus dans @code{%desktop-services} (@pxref{Desktop Services}) et s'appuie sur le paquet @code{sane-backends-minimal} par défaut (voir plus bas) pour la prise en charge matérielle." #. type: defvr -#: guix-git/doc/guix.texi:20814 +#: guix-git/doc/guix.texi:21176 #, no-wrap msgid "{Scheme Variable} sane-backends-minimal" msgstr "{Variable Scheme} sane-backends-minimal" #. type: defvr -#: guix-git/doc/guix.texi:20817 +#: guix-git/doc/guix.texi:21179 msgid "The default package which the @code{sane-service-type} installs. It supports many recent scanners." msgstr "Le paquet par défaut installé par le @code{sane-service-type}. Il prend en charge beaucoup de scanners récents." #. type: defvr -#: guix-git/doc/guix.texi:20819 +#: guix-git/doc/guix.texi:21181 #, no-wrap msgid "{Scheme Variable} sane-backends" msgstr "{Variable Scheme} sane-backends" #. type: defvr -#: guix-git/doc/guix.texi:20826 +#: guix-git/doc/guix.texi:21188 msgid "This package includes support for all scanners that @code{sane-backends-minimal} supports, plus older Hewlett-Packard scanners supported by @code{hplip} package. In order to use this on a system which relies on @code{%desktop-services}, you may use @code{modify-services} (@pxref{Service Reference, @code{modify-services}}) as illustrated below:" msgstr "Ce paquet inclus la prise en charge de tous les scanners pris en charge par @code{sane-backends-minimal}, plus les scanners Hewlett-Packard plus anciens pris en charges par le paquet @code{hplip}. Pour l'utiliser sur un système qui utiliser les @code{%desktop-services}, vous pouvez utiliser @code{modify-services} (@pxref{Service Reference, @code{modify-services}}) comme montré ci-dessous :" #. type: lisp -#: guix-git/doc/guix.texi:20835 +#: guix-git/doc/guix.texi:21197 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -39442,7 +40104,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:20840 +#: guix-git/doc/guix.texi:21202 #, no-wrap msgid "" "(define %my-desktop-services\n" @@ -39458,12 +40120,8 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:20844 -#, fuzzy, no-wrap -#| msgid "" -#| "(operating-system\n" -#| " @dots{}\n" -#| " (services %my-desktop-services)\n" +#: guix-git/doc/guix.texi:21206 +#, no-wrap msgid "" "(operating-system\n" " @dots{}\n" @@ -39474,35 +40132,35 @@ msgstr "" " (services %my-desktop-services))\n" #. type: deffn -#: guix-git/doc/guix.texi:20847 +#: guix-git/doc/guix.texi:21209 #, no-wrap msgid "{Scheme Procedure} geoclue-application name [#:allowed? #t] [#:system? #f] [#:users '()]" msgstr "{Procédure Scheme} geoclue-application name [#:allowed? #t] [#:system? #f] [#:users '()]" #. type: deffn -#: guix-git/doc/guix.texi:20856 +#: guix-git/doc/guix.texi:21218 msgid "Return a configuration allowing an application to access GeoClue location data. @var{name} is the Desktop ID of the application, without the @code{.desktop} part. If @var{allowed?} is true, the application will have access to location information by default. The boolean @var{system?} value indicates whether an application is a system component or not. Finally @var{users} is a list of UIDs of all users for which this application is allowed location info access. An empty users list means that all users are allowed." msgstr "Renvoie une configuration qui permet d'accéder aux données de localisation de GeoClue. @var{name} est l'ID Desktop de l'application, sans la partie en @code{.desktop}. Si @var{allowed?} est vraie, l'application aura droit d'accéder aux informations de localisation par défaut. Le booléen @var{system?} indique si une application est un composant système ou non. Enfin @var{users} est la liste des UID des utilisateurs pour lesquels cette application a le droit d'accéder aux informations de géolocalisation. Une liste d'utilisateurs vide indique que tous les utilisateurs sont autorisés." #. type: defvr -#: guix-git/doc/guix.texi:20858 +#: guix-git/doc/guix.texi:21220 #, no-wrap msgid "{Scheme Variable} %standard-geoclue-applications" msgstr "{Variable Scheme} %standard-geoclue-applications" #. type: defvr -#: guix-git/doc/guix.texi:20865 +#: guix-git/doc/guix.texi:21227 msgid "The standard list of well-known GeoClue application configurations, granting authority to the GNOME date-and-time utility to ask for the current location in order to set the time zone, and allowing the IceCat and Epiphany web browsers to request location information. IceCat and Epiphany both query the user before allowing a web page to know the user's location." msgstr "La liste standard de configuration des application GeoClue connues, qui permet à l'utilitaire date-and-time de GNOME de demander l'emplacement actuel pour initialiser le fuseau horaire et aux navigateurs web IceCat et Epiphany de demander les informations de localisation. IceCat et Epiphany demandent tous deux à l'utilisateur avant de permettre à une page web de connaître l'emplacement de l'utilisateur." #. type: deffn -#: guix-git/doc/guix.texi:20867 +#: guix-git/doc/guix.texi:21229 #, no-wrap msgid "{Scheme Procedure} geoclue-service [#:colord @var{colord}] @" msgstr "{Procédure Scheme} geoclue-service [#:colord @var{colord}] @" #. type: deffn -#: guix-git/doc/guix.texi:20880 +#: guix-git/doc/guix.texi:21242 msgid "[#:whitelist '()] @ [#:wifi-geolocation-url \"https://location.services.mozilla.com/v1/geolocate?key=geoclue\"] @ [#:submit-data? #f] [#:wifi-submission-url \"https://location.services.mozilla.com/v1/submit?key=geoclue\"] @ [#:submission-nick \"geoclue\"] @ [#:applications %standard-geoclue-applications] Return a service that runs the GeoClue location service. This service provides a D-Bus interface to allow applications to request access to a user's physical location, and optionally to add information to online location databases. See @uref{https://wiki.freedesktop.org/www/Software/GeoClue/, the GeoClue web site} for more information." msgstr "" "[#:whitelist '()] @\n" @@ -39513,183 +40171,183 @@ msgstr "" "Renvoie un service qui lance le service de géolocalisation GeoClue. Ce service fournit une interface D-Bus pour permettre aux applications de demande l'accès à la position de l'utilisateur et éventuellement d'ajouter des informations à des bases de données de géolocalisation en ligne. Voir @uref{https://wiki.freedesktop.org/www/Software/GeoClue/, le site web de GeoClue} pour plus d'informations." #. type: deffn -#: guix-git/doc/guix.texi:20882 +#: guix-git/doc/guix.texi:21244 #, no-wrap msgid "{Scheme Procedure} bluetooth-service [#:bluez @var{bluez}] @" msgstr "{Procédure Scheme} bluetooth-service [#:bluez @var{bluez}] @" #. type: deffn -#: guix-git/doc/guix.texi:20889 +#: guix-git/doc/guix.texi:21251 msgid "[@w{#:auto-enable? #f}] Return a service that runs the @command{bluetoothd} daemon, which manages all the Bluetooth devices and provides a number of D-Bus interfaces. When AUTO-ENABLE? is true, the bluetooth controller is powered automatically at boot, which can be useful when using a bluetooth keyboard or mouse." msgstr "" "[@w{#:auto-enable? #f}]\n" "Renvoie un service qui lance le démon @command{bluetoothd} qui gère tous les appareils Bluetooth et fournit un certain nombre d'interfaces D-Bus. Lorsque @var{auto-enable?} est vraie, le contrôler bluetooth est automatiquement alimenté au démarrage, ce qui peut être utile lorsque vous utilisez un clavier ou une souris bluetooth." #. type: deffn -#: guix-git/doc/guix.texi:20891 +#: guix-git/doc/guix.texi:21253 msgid "Users need to be in the @code{lp} group to access the D-Bus service." msgstr "Les utilisateurs doivent être dans le groupe @code{lp} pour accéder au service D-Bus." #. type: defvr -#: guix-git/doc/guix.texi:20893 +#: guix-git/doc/guix.texi:21255 #, no-wrap msgid "{Scheme Variable} gnome-keyring-service-type" msgstr "{Variable Scheme} gnome-keyring-service-type" #. type: defvr -#: guix-git/doc/guix.texi:20897 +#: guix-git/doc/guix.texi:21259 msgid "This is the type of the service that adds the @uref{https://wiki.gnome.org/Projects/GnomeKeyring, GNOME Keyring}. Its value is a @code{gnome-keyring-configuration} object (see below)." msgstr "C'est le type de service qui ajoute @uref{https://wiki.gnome.org/Projects/GnomeKeyring, GNOME Keyring}. Sa valeur est un objet @code{gnome-keyring-configuration} (voir plus bas)." #. type: defvr -#: guix-git/doc/guix.texi:20901 +#: guix-git/doc/guix.texi:21263 msgid "This service adds the @code{gnome-keyring} package to the system profile and extends PAM with entries using @code{pam_gnome_keyring.so}, unlocking a user's login keyring when they log in or setting its password with passwd." msgstr "Ce service ajoute le paquet @code{gnome-keyring} au profil du système et étend PAM avec des entrées avec @code{pam_gnome_keyring.so}, permettant de déverrouiller un porteclé utilisateur à la connexion ou de spécifier son mot de passe avec passwd." #. type: deftp -#: guix-git/doc/guix.texi:20903 +#: guix-git/doc/guix.texi:21265 #, no-wrap msgid "{Data Type} gnome-keyring-configuration" msgstr "{Type de données} gnome-keyring-configuration" #. type: deftp -#: guix-git/doc/guix.texi:20905 +#: guix-git/doc/guix.texi:21267 msgid "Configuration record for the GNOME Keyring service." msgstr "Enregistrement de la configuration du service GNOME Keyring." #. type: item -#: guix-git/doc/guix.texi:20907 +#: guix-git/doc/guix.texi:21269 #, no-wrap msgid "@code{keyring} (default: @code{gnome-keyring})" msgstr "@code{keyring} (par défaut : @code{gnome-keyring})" #. type: table -#: guix-git/doc/guix.texi:20909 +#: guix-git/doc/guix.texi:21271 msgid "The GNOME keyring package to use." msgstr "Le paquet GNOME keyring à utiliser." #. type: code{#1} -#: guix-git/doc/guix.texi:20910 +#: guix-git/doc/guix.texi:21272 #, no-wrap msgid "pam-services" msgstr "pam-services" #. type: table -#: guix-git/doc/guix.texi:20915 +#: guix-git/doc/guix.texi:21277 msgid "A list of @code{(@var{service} . @var{kind})} pairs denoting PAM services to extend, where @var{service} is the name of an existing service to extend and @var{kind} is one of @code{login} or @code{passwd}." msgstr "Une liste de paires @code{(@var{service} . @var{type})} dénotant des services PAM à étendre, où @var{service} est le nom d'un service existant à étendre et @var{type} est @code{login} ou @code{passwd}." #. type: table -#: guix-git/doc/guix.texi:20921 +#: guix-git/doc/guix.texi:21283 msgid "If @code{login} is given, it adds an optional @code{pam_gnome_keyring.so} to the auth block without arguments and to the session block with @code{auto_start}. If @code{passwd} is given, it adds an optional @code{pam_gnome_keyring.so} to the password block without arguments." msgstr "S'il s'agit de @code{login}, cela ajoute un @code{pam_gnome_keyring.so} facultatif au bloc d'authentification sans argument et au bloc de session avec @code{auto_start}. S'il s'agit de @code{passwd}, cela ajoute un @code{pam_gnome_keyring.so} facultatif au bloc de mot de passe sans argument." #. type: table -#: guix-git/doc/guix.texi:20924 +#: guix-git/doc/guix.texi:21286 msgid "By default, this field contains ``gdm-password'' with the value @code{login} and ``passwd'' is with the value @code{passwd}." msgstr "Par défaut, ce champ contient « gdm-password » avec la valeur @code{login} et « passwd » avec la valeur @code{passwd}." #. type: cindex -#: guix-git/doc/guix.texi:20931 +#: guix-git/doc/guix.texi:21293 #, no-wrap msgid "sound support" msgstr "support du son" #. type: cindex -#: guix-git/doc/guix.texi:20932 +#: guix-git/doc/guix.texi:21294 #, no-wrap msgid "ALSA" msgstr "ALSA" #. type: cindex -#: guix-git/doc/guix.texi:20933 +#: guix-git/doc/guix.texi:21295 #, no-wrap msgid "PulseAudio, sound support" msgstr "PulseAudio, support du son" #. type: Plain text -#: guix-git/doc/guix.texi:20938 +#: guix-git/doc/guix.texi:21300 msgid "The @code{(gnu services sound)} module provides a service to configure the Advanced Linux Sound Architecture (ALSA) system, which makes PulseAudio the preferred ALSA output driver." msgstr "Le module @code{(gnu services sound)} fournit un service pour configurer le système ALSA (architecture son linux avancée), qui fait de PulseAudio le pilote de sortie préféré d'ALSA." #. type: deffn -#: guix-git/doc/guix.texi:20939 +#: guix-git/doc/guix.texi:21301 #, no-wrap msgid "{Scheme Variable} alsa-service-type" msgstr "{Variable Scheme} alsa-service-type" #. type: deffn -#: guix-git/doc/guix.texi:20944 +#: guix-git/doc/guix.texi:21306 msgid "This is the type for the @uref{https://alsa-project.org/, Advanced Linux Sound Architecture} (ALSA) system, which generates the @file{/etc/asound.conf} configuration file. The value for this type is a @command{alsa-configuration} record as in this example:" msgstr "C'est le type pour le système @uref{https://alsa-project.org/, Advanced Linux Sound Architecture} (ALSA), qui génère le fichier de configuration @file{/etc/asound.conf}. La valeur de ce type est un enregistrement @command{alsa-configuration} comme dans cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:20947 +#: guix-git/doc/guix.texi:21309 #, no-wrap msgid "(service alsa-service-type)\n" msgstr "(service alsa-service-type)\n" #. type: deffn -#: guix-git/doc/guix.texi:20950 +#: guix-git/doc/guix.texi:21312 msgid "See below for details about @code{alsa-configuration}." msgstr "Voir plus bas pour des détails sur @code{alsa-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:20952 +#: guix-git/doc/guix.texi:21314 #, no-wrap msgid "{Data Type} alsa-configuration" msgstr "{Type de données} alsa-configuration" #. type: deftp -#: guix-git/doc/guix.texi:20954 +#: guix-git/doc/guix.texi:21316 msgid "Data type representing the configuration for @code{alsa-service}." msgstr "Type de données représentant la configuration pour @code{alsa-service}." #. type: item -#: guix-git/doc/guix.texi:20956 +#: guix-git/doc/guix.texi:21318 #, no-wrap msgid "@code{alsa-plugins} (default: @var{alsa-plugins})" msgstr "@code{alsa-plugins} (par défaut : @var{alsa-plugins})" #. type: table -#: guix-git/doc/guix.texi:20958 +#: guix-git/doc/guix.texi:21320 msgid "@code{alsa-plugins} package to use." msgstr "Le paquet @code{alsa-plugins} à utiliser." #. type: item -#: guix-git/doc/guix.texi:20959 +#: guix-git/doc/guix.texi:21321 #, no-wrap msgid "@code{pulseaudio?} (default: @var{#t})" msgstr "@code{pulseaudio?} (par défaut : @var{#t})" #. type: table -#: guix-git/doc/guix.texi:20962 +#: guix-git/doc/guix.texi:21324 msgid "Whether ALSA applications should transparently be made to use the @uref{https://www.pulseaudio.org/, PulseAudio} sound server." msgstr "Indique si les applications ALSA devraient utiliser le serveur de son @uref{https://www.pulseaudio.org/, PulseAudio} de manière transparente pour elles." #. type: table -#: guix-git/doc/guix.texi:20966 +#: guix-git/doc/guix.texi:21328 msgid "Using PulseAudio allows you to run several sound-producing applications at the same time and to individual control them @i{via} @command{pavucontrol}, among other things." msgstr "Utiliser PulseAudio vous permet dans lancer plusieurs applications qui produisent du son en même temps et de les contrôler individuellement via @command{pavucontrol} entre autres choses." #. type: item -#: guix-git/doc/guix.texi:20967 +#: guix-git/doc/guix.texi:21329 #, no-wrap msgid "@code{extra-options} (default: @var{\"\"})" msgstr "@code{extra-options} (par défaut : @var{\"\"})" #. type: table -#: guix-git/doc/guix.texi:20969 +#: guix-git/doc/guix.texi:21331 msgid "String to append to the @file{/etc/asound.conf} file." msgstr "Chaîne à ajouter au fichier @file{/etc/asound.conf}." #. type: Plain text -#: guix-git/doc/guix.texi:20975 +#: guix-git/doc/guix.texi:21337 msgid "Individual users who want to override the system configuration of ALSA can do it with the @file{~/.asoundrc} file:" msgstr "Les utilisateurs individuels qui veulent modifier la configuration système d'ALSA peuvent le faire avec le fichier @file{~/.asoundrc} :" #. type: example -#: guix-git/doc/guix.texi:20981 +#: guix-git/doc/guix.texi:21343 #, no-wrap msgid "" "# In guix, we have to specify the absolute path for plugins.\n" @@ -39705,7 +40363,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:20990 +#: guix-git/doc/guix.texi:21352 #, no-wrap msgid "" "# Routing ALSA to jack:\n" @@ -39729,7 +40387,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:20996 +#: guix-git/doc/guix.texi:21358 #, no-wrap msgid "" " capture_ports @{\n" @@ -39747,7 +40405,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:21003 +#: guix-git/doc/guix.texi:21365 #, no-wrap msgid "" "pcm.!default @{\n" @@ -39765,104 +40423,106 @@ msgstr "" "@}\n" #. type: Plain text -#: guix-git/doc/guix.texi:21007 +#: guix-git/doc/guix.texi:21369 msgid "See @uref{https://www.alsa-project.org/main/index.php/Asoundrc} for the details." msgstr "Voir @uref{https://www.alsa-project.org/main/index.php/Asoundrc} pour les détails." #. type: deffn -#: guix-git/doc/guix.texi:21008 +#: guix-git/doc/guix.texi:21370 #, no-wrap msgid "{Scheme Variable} pulseaudio-service-type" msgstr "{Variable Scheme} pulseaudio-service-type" #. type: deffn -#: guix-git/doc/guix.texi:21012 +#: guix-git/doc/guix.texi:21374 msgid "This is the type for the @uref{https://www.pulseaudio.org/, PulseAudio} sound server. It exists to allow system overrides of the default settings via @code{pulseaudio-configuration}, see below." msgstr "C'est le type de service pour le serveur de son @uref{https://www.pulseaudio.org/, PulseAudio}. Sa valeur est un @code{pulseaudio-configuration} (voir plus bas)." #. type: quotation -#: guix-git/doc/guix.texi:21018 +#: guix-git/doc/guix.texi:21380 msgid "This service overrides per-user configuration files. If you want PulseAudio to honor configuration files in @file{~/.config/pulse} you have to unset the environment variables @env{PULSE_CONFIG} and @env{PULSE_CLIENTCONFIG} in your @file{~/.bash_profile}." msgstr "Ce service prend le pas sur les fichiers de configuration utilisateurs. Si vous voulez que PulseAudio utilise les fichiers de configuration de @file{~/.config/pulse} vous devez réinitialiser les variables d'environnement @env{PULSE_CONFIG} et @env{PULSE_CLIENTCONFIG} dans votre @file{~/.bash_profile}." #. type: quotation -#: guix-git/doc/guix.texi:21026 +#: guix-git/doc/guix.texi:21388 msgid "This service on its own does not ensure, that the @code{pulseaudio} package exists on your machine. It merely adds configuration files for it, as detailed below. In the (admittedly unlikely) case, that you find yourself without a @code{pulseaudio} package, consider enabling it through the @code{alsa-service-type} above." msgstr "Ce service seul ne s'assure pas que le paquet @code{pulseaudio} existe sur votre machine. Il ajoute seulement des fichiers de configuration, comme décrit plus bas. Dans le cas (vraiment improbable) où vous n'auriez pas de paquet @code{pulseaudio}, vous pouvez l'activer à travers le service @code{alsa-service-type} plus haut." #. type: deftp -#: guix-git/doc/guix.texi:21029 +#: guix-git/doc/guix.texi:21391 #, no-wrap msgid "{Data Type} pulseaudio-configuration" msgstr "{Type de données} pulseaudio-configuration" #. type: deftp -#: guix-git/doc/guix.texi:21031 +#: guix-git/doc/guix.texi:21393 msgid "Data type representing the configuration for @code{pulseaudio-service}." msgstr "Type de données représentant la configuration pour @code{pulseaudio-service}." #. type: item -#: guix-git/doc/guix.texi:21033 +#: guix-git/doc/guix.texi:21395 #, no-wrap msgid "@code{client-conf} (default: @code{'()})" msgstr "@code{client-conf} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:21038 -msgid "List of settings to set in @file{client.conf}. Accepts a list of strings or a symbol-value pairs. A string will be inserted as-is with a newline added. A pair will be formatted as ``key = value'', again with a newline added." +#: guix-git/doc/guix.texi:21400 +#, fuzzy +#| msgid "List of settings to set in @file{client.conf}. Accepts a list of strings or a symbol-value pairs. A string will be inserted as-is with a newline added. A pair will be formatted as ``key = value'', again with a newline added." +msgid "List of settings to set in @file{client.conf}. Accepts a list of strings or symbol-value pairs. A string will be inserted as-is with a newline added. A pair will be formatted as ``key = value'', again with a newline added." msgstr "Liste les paramètres à indiquer dans @file{client.conf}. Accepte un liste de chaines ou de paires symboles-valeurs. Une chaine sera insérée telle quelle avec un saut de ligne. Une paire sera formatée en « clé = valeur » avec un saut de ligne." #. type: item -#: guix-git/doc/guix.texi:21039 +#: guix-git/doc/guix.texi:21401 #, no-wrap msgid "@code{daemon-conf} (default: @code{'((flat-volumes . no))})" msgstr "@code{daemon-conf} (par défaut : @code{'((flat-volumes . no))})" #. type: table -#: guix-git/doc/guix.texi:21042 +#: guix-git/doc/guix.texi:21404 msgid "List of settings to set in @file{daemon.conf}, formatted just like @var{client-conf}." msgstr "Liste les paramètres à indiquer dans @file{daemon.conf}, formaté comme @var{client-conf}." #. type: item -#: guix-git/doc/guix.texi:21043 +#: guix-git/doc/guix.texi:21405 #, no-wrap msgid "@code{script-file} (default: @code{(file-append pulseaudio \"/etc/pulse/default.pa\")})" msgstr "@code{script-file} (par défaut : @code{(file-append pulseaudio \"/etc/pulse/default.pa\")})" #. type: table -#: guix-git/doc/guix.texi:21045 +#: guix-git/doc/guix.texi:21407 msgid "Script file to use as @file{default.pa}." msgstr "Fichier de script à utiliser comme @file{default.pa}." #. type: item -#: guix-git/doc/guix.texi:21046 +#: guix-git/doc/guix.texi:21408 #, no-wrap msgid "@code{system-script-file} (default: @code{(file-append pulseaudio \"/etc/pulse/system.pa\")})" msgstr "@code{system-script-file} (par défaut : @code{(file-append pulseaudio \"/etc/pulse/system.pa\")})" #. type: table -#: guix-git/doc/guix.texi:21048 +#: guix-git/doc/guix.texi:21410 msgid "Script file to use as @file{system.pa}." msgstr "Fichier de script à utiliser comme @file{system.pa}." #. type: deffn -#: guix-git/doc/guix.texi:21051 +#: guix-git/doc/guix.texi:21413 #, no-wrap msgid "{Scheme Variable} ladspa-service-type" msgstr "{Variable Scheme} ladspa-service-type" #. type: deffn -#: guix-git/doc/guix.texi:21054 +#: guix-git/doc/guix.texi:21416 msgid "This service sets the @var{LADSPA_PATH} variable, so that programs, which respect it, e.g. PulseAudio, can load LADSPA plugins." msgstr "Ce service initialise la variable @var{LADSPA_PATH} pour que les programmes qui la respectent, p.@: ex.@: PulseAudio, puissent charger les greffons LADSPA." #. type: deffn -#: guix-git/doc/guix.texi:21057 +#: guix-git/doc/guix.texi:21419 msgid "The following example will setup the service to enable modules from the @code{swh-plugins} package:" msgstr "L'exemple suivant met en place le service pour activer les modules du paquet @code{swh-plugins} :" #. type: lisp -#: guix-git/doc/guix.texi:21061 +#: guix-git/doc/guix.texi:21423 #, no-wrap msgid "" "(service ladspa-service-type\n" @@ -39872,34 +40532,34 @@ msgstr "" " (ladspa-configuration (plugins (list swh-plugins))))\n" #. type: deffn -#: guix-git/doc/guix.texi:21065 +#: guix-git/doc/guix.texi:21427 msgid "See @uref{http://plugin.org.uk/ladspa-swh/docs/ladspa-swh.html} for the details." msgstr "Voir @uref{http://plugin.org.uk/ladspa-swh/docs/ladspa-swh.html} pour les détails." #. type: cindex -#: guix-git/doc/guix.texi:21072 +#: guix-git/doc/guix.texi:21434 #, no-wrap msgid "SQL" msgstr "SQL" #. type: Plain text -#: guix-git/doc/guix.texi:21074 +#: guix-git/doc/guix.texi:21436 msgid "The @code{(gnu services databases)} module provides the following services." msgstr "Le module @code{(gnu services databases)} fournit les services suivants." #. type: subsubheading -#: guix-git/doc/guix.texi:21075 +#: guix-git/doc/guix.texi:21437 #, no-wrap msgid "PostgreSQL" msgstr "PostgreSQL" #. type: Plain text -#: guix-git/doc/guix.texi:21079 +#: guix-git/doc/guix.texi:21441 msgid "The following example describes a PostgreSQL service with the default configuration." msgstr "L'exemple suivant décrit un service PostgreSQL avec la configuration par défaut." #. type: lisp -#: guix-git/doc/guix.texi:21084 +#: guix-git/doc/guix.texi:21446 #, no-wrap msgid "" "(service postgresql-service-type\n" @@ -39911,17 +40571,17 @@ msgstr "" " (postgresql postgresql-10)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:21090 +#: guix-git/doc/guix.texi:21452 msgid "If the services fails to start, it may be due to an incompatible cluster already present in @var{data-directory}. Adjust it (or, if you don't need the cluster anymore, delete @var{data-directory}), then restart the service." msgstr "Si les services ne démarrent pas, cela peut être dû à une grappe incompatible déjà présente dans @var{data-directory}. Ajustez-la (ou, si vous n'avez plus besoin de la grappe, supprimez @var{data-directory}) puis redémarrez le service." #. type: Plain text -#: guix-git/doc/guix.texi:21097 +#: guix-git/doc/guix.texi:21459 msgid "Peer authentication is used by default and the @code{postgres} user account has no shell, which prevents the direct execution of @code{psql} commands as this user. To use @code{psql}, you can temporarily log in as @code{postgres} using a shell, create a PostgreSQL superuser with the same name as one of the system users and then create the associated database." msgstr "L'authentification des pairs est utilisé par défaut et le compte utilisateur @code{postgres} n'a pas de shell, ce qui évite l'exécution directe de @code{psql} en tant que cet utilisateur. Pour utiliser @code{psql}, vous pouvez vous authentifier temporairement en tant que @code{postgres} avec un shell, créer un superutilisateur PostgreSQL avec le même nom qu'un des utilisateurs du système et créer la base de données associée." #. type: example -#: guix-git/doc/guix.texi:21102 +#: guix-git/doc/guix.texi:21464 #, no-wrap msgid "" "sudo -u postgres -s /bin/sh\n" @@ -39933,101 +40593,101 @@ msgstr "" "createdb $MY_USER_LOGIN # Remplacez comme vous voulez.\n" #. type: deftp -#: guix-git/doc/guix.texi:21104 +#: guix-git/doc/guix.texi:21466 #, no-wrap msgid "{Data Type} postgresql-configuration" msgstr "{Type de données} postgresql-configuration" #. type: deftp -#: guix-git/doc/guix.texi:21107 +#: guix-git/doc/guix.texi:21469 msgid "Data type representing the configuration for the @code{postgresql-service-type}." msgstr "Type de données représentant la configuration de @code{postgresql-service-type}." #. type: code{#1} -#: guix-git/doc/guix.texi:21109 +#: guix-git/doc/guix.texi:21471 #, no-wrap msgid "postgresql" msgstr "postgresql" #. type: table -#: guix-git/doc/guix.texi:21111 +#: guix-git/doc/guix.texi:21473 msgid "PostgreSQL package to use for the service." msgstr "Le paquet PostgreSQL à utiliser pour ce service." #. type: item -#: guix-git/doc/guix.texi:21112 +#: guix-git/doc/guix.texi:21474 #, no-wrap msgid "@code{port} (default: @code{5432})" msgstr "@code{port} (par défaut : @code{5432})" #. type: table -#: guix-git/doc/guix.texi:21114 +#: guix-git/doc/guix.texi:21476 msgid "Port on which PostgreSQL should listen." msgstr "Port sur lequel PostgreSQL écoutera." #. type: table -#: guix-git/doc/guix.texi:21117 +#: guix-git/doc/guix.texi:21479 msgid "Locale to use as the default when creating the database cluster." msgstr "Paramètre linguistique à utiliser par défaut lors de la création de la grappe de bases de données." #. type: item -#: guix-git/doc/guix.texi:21118 +#: guix-git/doc/guix.texi:21480 #, no-wrap msgid "@code{config-file} (default: @code{(postgresql-config-file)})" msgstr "@code{config-file} (par défaut : @code{(postgresql-config-file)})" #. type: table -#: guix-git/doc/guix.texi:21122 +#: guix-git/doc/guix.texi:21484 msgid "The configuration file to use when running PostgreSQL@. The default behaviour uses the postgresql-config-file record with the default values for the fields." msgstr "Le fichier de configuration à utiliser pour lancer PostgreSQL@. Le comportement par défaut est d'utiliser l'enregistrement postgresql-config-file avec les valeurs par défaut pour les champs." #. type: item -#: guix-git/doc/guix.texi:21123 +#: guix-git/doc/guix.texi:21485 #, no-wrap msgid "@code{log-directory} (default: @code{\"/var/log/postgresql\"})" msgstr "@code{log-directory} (default: @code{\"/var/log/postgresql\"})" #. type: table -#: guix-git/doc/guix.texi:21127 +#: guix-git/doc/guix.texi:21489 msgid "The directory where @command{pg_ctl} output will be written in a file named @code{\"pg_ctl.log\"}. This file can be useful to debug PostgreSQL configuration errors for instance." msgstr "Le répertoire où la sortie de @command{pg_ctl} sera écrite, dans un fichier nommé @code{\"pg_ctl.log\"}. Ce fichier peut être utile pour déboguer les erreurs de configuration de PostgreSQL par exemple." #. type: item -#: guix-git/doc/guix.texi:21128 +#: guix-git/doc/guix.texi:21490 #, no-wrap msgid "@code{data-directory} (default: @code{\"/var/lib/postgresql/data\"})" msgstr "@code{data-directory} (par défaut : @code{\"/var/lib/postgresql/data\"})" #. type: table -#: guix-git/doc/guix.texi:21130 +#: guix-git/doc/guix.texi:21492 msgid "Directory in which to store the data." msgstr "Répertoire dans lequel stocker les données." #. type: item -#: guix-git/doc/guix.texi:21131 +#: guix-git/doc/guix.texi:21493 #, no-wrap msgid "@code{extension-packages} (default: @code{'()})" msgstr "@code{extension-packages} (par défaut : @code{'()})" #. type: cindex -#: guix-git/doc/guix.texi:21132 +#: guix-git/doc/guix.texi:21494 #, no-wrap msgid "postgresql extension-packages" msgstr "postgresql extension-packages" #. type: table -#: guix-git/doc/guix.texi:21137 +#: guix-git/doc/guix.texi:21499 msgid "Additional extensions are loaded from packages listed in @var{extension-packages}. Extensions are available at runtime. For instance, to create a geographic database using the @code{postgis} extension, a user can configure the postgresql-service as in this example:" msgstr "Des extensions supplémentaires peuvent être chargées à partir de paquets listés dans @var{extension-packages}. Les extensions sont disponibles à l'exécution. Par exemple, pour créer une base de données géographique avec l'extension @code{postgis}, on peut configurer postgresql-service de cette manière :" #. type: cindex -#: guix-git/doc/guix.texi:21138 +#: guix-git/doc/guix.texi:21500 #, no-wrap msgid "postgis" msgstr "postgis" #. type: lisp -#: guix-git/doc/guix.texi:21141 +#: guix-git/doc/guix.texi:21503 #, no-wrap msgid "" "(use-package-modules databases geo)\n" @@ -40037,7 +40697,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:21154 +#: guix-git/doc/guix.texi:21516 #, no-wrap msgid "" "(operating-system\n" @@ -40067,12 +40727,12 @@ msgstr "" " %base-services)))\n" #. type: table -#: guix-git/doc/guix.texi:21158 +#: guix-git/doc/guix.texi:21520 msgid "Then the extension becomes visible and you can initialise an empty geographic database in this way:" msgstr "Ensuite l'extension devient visible et vous pouvez initialiser une base de données géographique de cette manière :" #. type: example -#: guix-git/doc/guix.texi:21165 +#: guix-git/doc/guix.texi:21527 #, no-wrap msgid "" "psql -U postgres\n" @@ -40088,23 +40748,23 @@ msgstr "" "> create extension postgis_topology;\n" #. type: table -#: guix-git/doc/guix.texi:21170 +#: guix-git/doc/guix.texi:21532 msgid "There is no need to add this field for contrib extensions such as hstore or dblink as they are already loadable by postgresql. This field is only required to add extensions provided by other packages." msgstr "Vous n'avez pas besoin d'ajouter ce champ pour les extensions « contrib » comme hstore ou dblink comme elles sont déjà exploitables par postgresql. Ce champ n'est requis que pour ajouter des extensions fournies par d'autres paquets." #. type: deftp -#: guix-git/doc/guix.texi:21174 +#: guix-git/doc/guix.texi:21536 #, no-wrap msgid "{Data Type} postgresql-config-file" msgstr "{Type de données} postgresql-config-file" #. type: deftp -#: guix-git/doc/guix.texi:21180 +#: guix-git/doc/guix.texi:21542 msgid "Data type representing the PostgreSQL configuration file. As shown in the following example, this can be used to customize the configuration of PostgreSQL@. Note that you can use any G-expression or filename in place of this record, if you already have a configuration file you'd like to use for example." msgstr "Type de données représentant le fichier de configuration de PostgreSQL. Comme montré dans l'exemple suivant, on peut l'utiliser pour personnaliser la configuration de PostgreSQL@. Remarquez que vous pouvez utiliser n'importe quelle G-expression ou nom de fichier à la place de cet enregistrement, si par exemple vous avez déjà un fichier de configuration que vous voulez utiliser." #. type: lisp -#: guix-git/doc/guix.texi:21200 +#: guix-git/doc/guix.texi:21562 #, no-wrap msgid "" "(service postgresql-service-type\n" @@ -40146,77 +40806,77 @@ msgstr "" " (\"log_directory\" \"/var/log/postgresql\")))))))\n" #. type: item -#: guix-git/doc/guix.texi:21203 +#: guix-git/doc/guix.texi:21565 #, no-wrap msgid "@code{log-destination} (default: @code{\"syslog\"})" msgstr "@code{log-destination} (par défaut : @code{\"syslog\"})" #. type: table -#: guix-git/doc/guix.texi:21206 +#: guix-git/doc/guix.texi:21568 msgid "The logging method to use for PostgreSQL@. Multiple values are accepted, separated by commas." msgstr "La méthode de journalisation de PostgreSQL@. Plusieurs valeurs sont possibles, séparées par des virgules." #. type: item -#: guix-git/doc/guix.texi:21207 +#: guix-git/doc/guix.texi:21569 #, no-wrap msgid "@code{hba-file} (default: @code{%default-postgres-hba})" msgstr "@code{hba-file} (par défaut : @code{%default-postgres-hba})" #. type: table -#: guix-git/doc/guix.texi:21210 +#: guix-git/doc/guix.texi:21572 msgid "Filename or G-expression for the host-based authentication configuration." msgstr "Nom de fichier ou G-expression pour la configuration de l'authentification par hôte." #. type: item -#: guix-git/doc/guix.texi:21211 +#: guix-git/doc/guix.texi:21573 #, no-wrap msgid "@code{ident-file} (default: @code{%default-postgres-ident})" msgstr "@code{ident-file} (par défaut : @code{%default-postgres-ident})" #. type: table -#: guix-git/doc/guix.texi:21213 +#: guix-git/doc/guix.texi:21575 msgid "Filename or G-expression for the user name mapping configuration." msgstr "Nom de fichier ou G-expression pour la configuration de la correspondance de noms d'utilisateurs." #. type: item -#: guix-git/doc/guix.texi:21214 +#: guix-git/doc/guix.texi:21576 #, no-wrap msgid "@code{socket-directory} (default: @code{\"/var/run/postgresql\"})" msgstr "@code{socket-directory} (par défaut : @code{\"/var/run/postgresql\"})" #. type: table -#: guix-git/doc/guix.texi:21219 +#: guix-git/doc/guix.texi:21581 msgid "Specifies the directory of the Unix-domain socket(s) on which PostgreSQL is to listen for connections from client applications. If set to @code{\"\"} PostgreSQL does not listen on any Unix-domain sockets, in which case only TCP/IP sockets can be used to connect to the server." msgstr "Spécifie le répertoire des sockets Unix-domain sur lesquels PostgreSQL écoutera les connexion d'applications clientes. Si la valeur est @code{\"\"}, PostgreSQL n'écoute sur aucun socket Unix-domain, auquel cas seuls les socket TCP/IP permettent de se connecter au serveur." #. type: table -#: guix-git/doc/guix.texi:21222 +#: guix-git/doc/guix.texi:21584 msgid "By default, the @code{#false} value means the PostgreSQL default value will be used, which is currently @samp{/tmp}." msgstr "Par défaut, la valeur @code{#false} signifie que la valeur par défaut de PostgreSQL sera utilisée, actuellement @samp{/tmp}." #. type: table -#: guix-git/doc/guix.texi:21227 +#: guix-git/doc/guix.texi:21589 msgid "List of additional keys and values to include in the PostgreSQL config file. Each entry in the list should be a list where the first element is the key, and the remaining elements are the values." msgstr "Liste de clés et valeurs supplémentaires à inclure dans le fichier de configuration de PostgreSQL. Chaque entrée dans la liste devrait être une liste où le premier élément est la clé, et les autres éléments sont les valeurs." #. type: table -#: guix-git/doc/guix.texi:21233 +#: guix-git/doc/guix.texi:21595 msgid "The values can be numbers, booleans or strings and will be mapped to PostgreSQL parameters types @code{Boolean}, @code{String}, @code{Numeric}, @code{Numeric with Unit} and @code{Enumerated} described @uref{https://www.postgresql.org/docs/current/config-setting.html, here}." msgstr "Les valeurs peuvent être des nombres, des booléens ou des chaînes et seront transformées en types de paramètres de PostgreSQL @code{Boolean}, @code{String}, @code{Numeric}, @code{Numeric with Unit} et @code{Enumerated} décrits @uref{https://www.postgresql.org/docs/current/config-setting.html, ici}." #. type: deffn -#: guix-git/doc/guix.texi:21237 +#: guix-git/doc/guix.texi:21599 #, no-wrap msgid "{Scheme Variable} postgresql-role-service-type" msgstr "{Variable Scheme} postgresql-role-service-type" #. type: deffn -#: guix-git/doc/guix.texi:21240 +#: guix-git/doc/guix.texi:21602 msgid "This service allows to create PostgreSQL roles and databases after PostgreSQL service start. Here is an example of its use." msgstr "Ce service permet de créer des rôles PostgreSQL et des bases de données après le démarrage du service PostgreSQL. Voici un exemple d'utilisation." #. type: lisp -#: guix-git/doc/guix.texi:21248 +#: guix-git/doc/guix.texi:21610 #, no-wrap msgid "" "(service postgresql-role-service-type\n" @@ -40234,12 +40894,12 @@ msgstr "" " (create-database? #t))))))\n" #. type: deffn -#: guix-git/doc/guix.texi:21252 +#: guix-git/doc/guix.texi:21614 msgid "This service can be extended with extra roles, as in this example:" msgstr "Ce service peut être étendu avec des rôles supplémentaires, comme dans cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:21258 +#: guix-git/doc/guix.texi:21620 #, no-wrap msgid "" "(service-extension postgresql-role-service-type\n" @@ -40253,398 +40913,398 @@ msgstr "" " (create-database? #t))))\n" #. type: deftp -#: guix-git/doc/guix.texi:21261 +#: guix-git/doc/guix.texi:21623 #, no-wrap msgid "{Data Type} postgresql-role" msgstr "{Type de données} postgresql-role" #. type: deftp -#: guix-git/doc/guix.texi:21267 +#: guix-git/doc/guix.texi:21629 msgid "PostgreSQL manages database access permissions using the concept of roles. A role can be thought of as either a database user, or a group of database users, depending on how the role is set up. Roles can own database objects (for example, tables) and can assign privileges on those objects to other roles to control who has access to which objects." msgstr "PostgreSQL gère les permissions d'accès à la base de données en utilisant le concept de rôle. Un rôle est soit comme un utilisateur de la base de données, soit un groupe d'utilisateurs, en fonction du paramétrage du rôle. Les rôles peuvent posséder des objets de la base (par exemple des tables) et peuvent assigner des privilèges sur ces objets à d'autres rôles pour contrôler qui a accès à quels objets." #. type: table -#: guix-git/doc/guix.texi:21271 +#: guix-git/doc/guix.texi:21633 msgid "The role name." msgstr "Le nom du rôle." #. type: item -#: guix-git/doc/guix.texi:21272 +#: guix-git/doc/guix.texi:21634 #, no-wrap msgid "@code{permissions} (default: @code{'(createdb login)})" msgstr "@code{permissions} (par défaut : @code{'(createdb login)})" #. type: table -#: guix-git/doc/guix.texi:21276 +#: guix-git/doc/guix.texi:21638 msgid "The role permissions list. Supported permissions are @code{bypassrls}, @code{createdb}, @code{createrole}, @code{login}, @code{replication} and @code{superuser}." msgstr "La liste des permissions du rôle. Les permissions prises en charge sont @code{bypassrls}, @code{createdb}, @code{createrole}, @code{login}, @code{replication} et @code{superuser}." #. type: item -#: guix-git/doc/guix.texi:21277 +#: guix-git/doc/guix.texi:21639 #, no-wrap msgid "@code{create-database?} (default: @code{#f})" msgstr "@code{create-database?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:21279 +#: guix-git/doc/guix.texi:21641 msgid "Whether to create a database with the same name as the role." msgstr "Indique s'il faut créer une base de données avec le même nom que le rôle." #. type: deftp -#: guix-git/doc/guix.texi:21283 +#: guix-git/doc/guix.texi:21645 #, no-wrap msgid "{Data Type} postgresql-role-configuration" msgstr "{Type de données} postgresql-role-configuration" #. type: deftp -#: guix-git/doc/guix.texi:21286 +#: guix-git/doc/guix.texi:21648 msgid "Data type representing the configuration of @var{postgresql-role-service-type}." msgstr "Type de données représentant la configuration de @var{postgresql-role-service-type}." #. type: item -#: guix-git/doc/guix.texi:21288 +#: guix-git/doc/guix.texi:21650 #, no-wrap msgid "@code{host} (default: @code{\"/var/run/postgresql\"})" msgstr "@code{host} (par défaut : @code{\"/var/run/postgresql\"})" #. type: table -#: guix-git/doc/guix.texi:21290 +#: guix-git/doc/guix.texi:21652 msgid "The PostgreSQL host to connect to." msgstr "L'hôte PostgreSQL sur lequel se connecter." #. type: item -#: guix-git/doc/guix.texi:21291 +#: guix-git/doc/guix.texi:21653 #, no-wrap msgid "@code{log} (default: @code{\"/var/log/postgresql_roles.log\"})" msgstr "@code{log} (par défaut : @code{\"/var/log/postgresql_roles.log\"})" #. type: table -#: guix-git/doc/guix.texi:21293 +#: guix-git/doc/guix.texi:21655 msgid "File name of the log file." msgstr "Nom du fichier du fichier de journal." #. type: item -#: guix-git/doc/guix.texi:21294 +#: guix-git/doc/guix.texi:21656 #, no-wrap msgid "@code{roles} (default: @code{'()})" msgstr "@code{roles} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:21296 +#: guix-git/doc/guix.texi:21658 msgid "The initial PostgreSQL roles to create." msgstr "Les rôles PostgreSQL initiaux à créer." #. type: subsubheading -#: guix-git/doc/guix.texi:21299 +#: guix-git/doc/guix.texi:21661 #, no-wrap msgid "MariaDB/MySQL" msgstr "MariaDB/MySQL" #. type: defvr -#: guix-git/doc/guix.texi:21301 +#: guix-git/doc/guix.texi:21663 #, no-wrap msgid "{Scheme Variable} mysql-service-type" msgstr "{Variable Scheme} mysql-service-type" #. type: defvr -#: guix-git/doc/guix.texi:21305 +#: guix-git/doc/guix.texi:21667 msgid "This is the service type for a MySQL or MariaDB database server. Its value is a @code{mysql-configuration} object that specifies which package to use, as well as various settings for the @command{mysqld} daemon." msgstr "C'est le type du service pour une base de donnée MySQL ou MariaDB. Sa valeur est un objet @code{mysql-configuration}, qui spécifie le paquet à utiliser ainsi que divers paramètres pour le démon @command{mysqld}." #. type: deftp -#: guix-git/doc/guix.texi:21307 +#: guix-git/doc/guix.texi:21669 #, no-wrap msgid "{Data Type} mysql-configuration" msgstr "{Type de données} mysql-configuration" #. type: deftp -#: guix-git/doc/guix.texi:21309 +#: guix-git/doc/guix.texi:21671 msgid "Data type representing the configuration of @var{mysql-service-type}." msgstr "Type de données représentant la configuration de @var{mysql-service-type}." #. type: item -#: guix-git/doc/guix.texi:21311 +#: guix-git/doc/guix.texi:21673 #, no-wrap msgid "@code{mysql} (default: @var{mariadb})" msgstr "@code{mysql} (par défaut : @var{mariadb})" #. type: table -#: guix-git/doc/guix.texi:21314 +#: guix-git/doc/guix.texi:21676 msgid "Package object of the MySQL database server, can be either @var{mariadb} or @var{mysql}." msgstr "Objet paquet du serveur de base de données MySQL, qui peut être soit @var{mariadb}, soit @var{mysql}." #. type: table -#: guix-git/doc/guix.texi:21317 +#: guix-git/doc/guix.texi:21679 msgid "For MySQL, a temporary root password will be displayed at activation time. For MariaDB, the root password is empty." msgstr "Pour MySQL, un mot de passe root temporaire sera affiché à l'activation. Pour MariaDB, le mot de passe root est vide." #. type: item -#: guix-git/doc/guix.texi:21318 guix-git/doc/guix.texi:25138 +#: guix-git/doc/guix.texi:21680 guix-git/doc/guix.texi:25500 #, no-wrap msgid "@code{bind-address} (default: @code{\"127.0.0.1\"})" msgstr "@code{bind-address} (par défaut : @code{\"127.0.0.1\"})" #. type: table -#: guix-git/doc/guix.texi:21321 +#: guix-git/doc/guix.texi:21683 msgid "The IP on which to listen for network connections. Use @code{\"0.0.0.0\"} to bind to all available network interfaces." msgstr "L'IP sur laquelle écouter les connexions réseau. Utilisez @code{\"0.0.0.0\"} pour écouter sur toutes les interfaces réseaux." #. type: item -#: guix-git/doc/guix.texi:21322 +#: guix-git/doc/guix.texi:21684 #, no-wrap msgid "@code{port} (default: @code{3306})" msgstr "@code{port} (par défaut : @code{3306})" #. type: table -#: guix-git/doc/guix.texi:21324 +#: guix-git/doc/guix.texi:21686 msgid "TCP port on which the database server listens for incoming connections." msgstr "Port TCP sur lequel le serveur de base de données écoute les connexions entrantes." #. type: item -#: guix-git/doc/guix.texi:21325 +#: guix-git/doc/guix.texi:21687 #, no-wrap msgid "@code{socket} (default: @code{\"/run/mysqld/mysqld.sock\"})" msgstr "@code{socket} (par défaut : @code{\"/run/mysqld/mysqld.sock\"})" #. type: table -#: guix-git/doc/guix.texi:21327 +#: guix-git/doc/guix.texi:21689 msgid "Socket file to use for local (non-network) connections." msgstr "Fichier de socket à utiliser pour les connexions locales (pas via le réseau)." #. type: table -#: guix-git/doc/guix.texi:21330 +#: guix-git/doc/guix.texi:21692 msgid "Additional settings for the @file{my.cnf} configuration file." msgstr "Paramètres supplémentaires pour le fichier de configuration @file{my.cnf}." #. type: item -#: guix-git/doc/guix.texi:21331 +#: guix-git/doc/guix.texi:21693 #, no-wrap msgid "@code{extra-environment} (default: @code{#~'()})" msgstr "@code{extra-environment} (par défaut : @code{#~'()})" #. type: table -#: guix-git/doc/guix.texi:21333 +#: guix-git/doc/guix.texi:21695 msgid "List of environment variables passed to the @command{mysqld} process." msgstr "Liste de variables d'environnement passées au processus @command{mysqld}." #. type: item -#: guix-git/doc/guix.texi:21334 +#: guix-git/doc/guix.texi:21696 #, no-wrap msgid "@code{auto-upgrade?} (default: @code{#t})" msgstr "@code{auto-upgrade?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:21339 +#: guix-git/doc/guix.texi:21701 msgid "Whether to automatically run @command{mysql_upgrade} after starting the service. This is necessary to upgrade the @dfn{system schema} after ``major'' updates (such as switching from MariaDB 10.4 to 10.5), but can be disabled if you would rather do that manually." msgstr "Indique s'il faut automatiquement lancer @command{mysql_upgrade} après avoir démarré le service. C'est nécessaire pour mettre à jour le @dfn{schéma système} après une mise à jour « majeure » (comme de passer de MariaDB 10.4 à 10.5), mais peut être désactivé si vous voulez plutôt le faire manuellement." #. type: subsubheading -#: guix-git/doc/guix.texi:21343 +#: guix-git/doc/guix.texi:21705 #, no-wrap msgid "Memcached" msgstr "Memcached" #. type: defvr -#: guix-git/doc/guix.texi:21345 +#: guix-git/doc/guix.texi:21707 #, no-wrap msgid "{Scheme Variable} memcached-service-type" msgstr "{Variable Scheme} memcached-service-type" #. type: defvr -#: guix-git/doc/guix.texi:21349 +#: guix-git/doc/guix.texi:21711 msgid "This is the service type for the @uref{https://memcached.org/, Memcached} service, which provides a distributed in memory cache. The value for the service type is a @code{memcached-configuration} object." msgstr "C'est le type de service pour le service @uref{https://memcached.org/, Memcached} qui fournit un cache en mémoire distribué. La valeur pour le type de service est un objet @code{memcached-configuration}." #. type: lisp -#: guix-git/doc/guix.texi:21353 +#: guix-git/doc/guix.texi:21715 #, no-wrap msgid "(service memcached-service-type)\n" msgstr "(service memcached-service-type)\n" #. type: deftp -#: guix-git/doc/guix.texi:21355 +#: guix-git/doc/guix.texi:21717 #, no-wrap msgid "{Data Type} memcached-configuration" msgstr "{Type de données} memcached-configuration" #. type: deftp -#: guix-git/doc/guix.texi:21357 +#: guix-git/doc/guix.texi:21719 msgid "Data type representing the configuration of memcached." msgstr "Type de données représentant la configuration de memcached." #. type: item -#: guix-git/doc/guix.texi:21359 +#: guix-git/doc/guix.texi:21721 #, no-wrap msgid "@code{memcached} (default: @code{memcached})" msgstr "@code{memcached} (par défaut : @code{memcached})" #. type: table -#: guix-git/doc/guix.texi:21361 +#: guix-git/doc/guix.texi:21723 msgid "The Memcached package to use." msgstr "Le paquet Memcached à utiliser." #. type: item -#: guix-git/doc/guix.texi:21362 +#: guix-git/doc/guix.texi:21724 #, no-wrap msgid "@code{interfaces} (default: @code{'(\"0.0.0.0\")})" msgstr "@code{interfaces} (par défaut : @code{'(\"0.0.0.0\")})" #. type: table -#: guix-git/doc/guix.texi:21364 +#: guix-git/doc/guix.texi:21726 msgid "Network interfaces on which to listen." msgstr "Les interfaces réseaux sur lesquelles écouter." #. type: item -#: guix-git/doc/guix.texi:21365 +#: guix-git/doc/guix.texi:21727 #, no-wrap msgid "@code{tcp-port} (default: @code{11211})" msgstr "@code{tcp-port} (par défaut : @code{11211})" #. type: table -#: guix-git/doc/guix.texi:21367 +#: guix-git/doc/guix.texi:21729 msgid "Port on which to accept connections." msgstr "Port sur lequel accepter les connexions." #. type: item -#: guix-git/doc/guix.texi:21368 +#: guix-git/doc/guix.texi:21730 #, no-wrap msgid "@code{udp-port} (default: @code{11211})" msgstr "@code{udp-port} (par défaut : @code{11211})" #. type: table -#: guix-git/doc/guix.texi:21371 +#: guix-git/doc/guix.texi:21733 msgid "Port on which to accept UDP connections on, a value of 0 will disable listening on a UDP socket." msgstr "Port sur lequel accepter les connexions UDP, une valeur de 0 désactive l'écoute en UDP." #. type: item -#: guix-git/doc/guix.texi:21372 +#: guix-git/doc/guix.texi:21734 #, no-wrap msgid "@code{additional-options} (default: @code{'()})" msgstr "@code{additional-options} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:21374 +#: guix-git/doc/guix.texi:21736 msgid "Additional command line options to pass to @code{memcached}." msgstr "Options de la ligne de commande supplémentaires à passer à @code{memcached}." #. type: subsubheading -#: guix-git/doc/guix.texi:21377 +#: guix-git/doc/guix.texi:21739 #, no-wrap msgid "Redis" msgstr "Redis" #. type: defvr -#: guix-git/doc/guix.texi:21379 +#: guix-git/doc/guix.texi:21741 #, no-wrap msgid "{Scheme Variable} redis-service-type" msgstr "{Variable Scheme} redis-service-type" #. type: defvr -#: guix-git/doc/guix.texi:21382 +#: guix-git/doc/guix.texi:21744 msgid "This is the service type for the @uref{https://redis.io/, Redis} key/value store, whose value is a @code{redis-configuration} object." msgstr "C'est le type de service pour la base clef-valeur @uref{https://redis.io/, Redis} dont la valeur est un objet @code{redis-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:21384 +#: guix-git/doc/guix.texi:21746 #, no-wrap msgid "{Data Type} redis-configuration" msgstr "{Type de données} redis-configuration" #. type: deftp -#: guix-git/doc/guix.texi:21386 +#: guix-git/doc/guix.texi:21748 msgid "Data type representing the configuration of redis." msgstr "Type de données représentant la configuration de redis." #. type: item -#: guix-git/doc/guix.texi:21388 +#: guix-git/doc/guix.texi:21750 #, no-wrap msgid "@code{redis} (default: @code{redis})" msgstr "@code{redis} (par défaut : @code{redis})" #. type: table -#: guix-git/doc/guix.texi:21390 +#: guix-git/doc/guix.texi:21752 msgid "The Redis package to use." msgstr "Le paquet Redis à utiliser." #. type: item -#: guix-git/doc/guix.texi:21391 +#: guix-git/doc/guix.texi:21753 #, no-wrap msgid "@code{bind} (default: @code{\"127.0.0.1\"})" msgstr "@code{bind} (par défaut : @code{\"127.0.0.1\"})" #. type: table -#: guix-git/doc/guix.texi:21393 +#: guix-git/doc/guix.texi:21755 msgid "Network interface on which to listen." msgstr "Interface réseau sur laquelle écouter." #. type: item -#: guix-git/doc/guix.texi:21394 +#: guix-git/doc/guix.texi:21756 #, no-wrap msgid "@code{port} (default: @code{6379})" msgstr "@code{port} (par défaut : @code{6379})" #. type: table -#: guix-git/doc/guix.texi:21397 +#: guix-git/doc/guix.texi:21759 msgid "Port on which to accept connections on, a value of 0 will disable listening on a TCP socket." msgstr "Port sur lequel accepter les connexions, une valeur de 0 désactive l'écoute sur un socket TCP." #. type: item -#: guix-git/doc/guix.texi:21398 +#: guix-git/doc/guix.texi:21760 #, no-wrap msgid "@code{working-directory} (default: @code{\"/var/lib/redis\"})" msgstr "@code{working-directory} (par défaut : @code{\"/var/lib/redis\"})" #. type: table -#: guix-git/doc/guix.texi:21400 +#: guix-git/doc/guix.texi:21762 msgid "Directory in which to store the database and related files." msgstr "Répertoire dans lequel stocker la base de données et les fichiers liés." #. type: cindex -#: guix-git/doc/guix.texi:21406 +#: guix-git/doc/guix.texi:21768 #, no-wrap msgid "mail" msgstr "courriel" #. type: cindex -#: guix-git/doc/guix.texi:21407 +#: guix-git/doc/guix.texi:21769 #, no-wrap msgid "email" msgstr "email" #. type: Plain text -#: guix-git/doc/guix.texi:21412 +#: guix-git/doc/guix.texi:21774 msgid "The @code{(gnu services mail)} module provides Guix service definitions for email services: IMAP, POP3, and LMTP servers, as well as mail transport agents (MTAs). Lots of acronyms! These services are detailed in the subsections below." msgstr "Le module @code{(gnu services mail)} fournit des définitions de services Guix pour les services de courriel : des serveurs IMAP, POP3 et LMTP ainsi que des MTA (Mail Transport Agent). Que d'acronymes ! Ces services sont détaillés dans les sous-sections ci-dessous." #. type: subsubheading -#: guix-git/doc/guix.texi:21413 +#: guix-git/doc/guix.texi:21775 #, no-wrap msgid "Dovecot Service" msgstr "Service Dovecot" #. type: deffn -#: guix-git/doc/guix.texi:21415 +#: guix-git/doc/guix.texi:21777 #, no-wrap msgid "{Scheme Procedure} dovecot-service [#:config (dovecot-configuration)]" msgstr "{Procédure Scheme} dovecot-service [#:config (dovecot-configuration)]" #. type: deffn -#: guix-git/doc/guix.texi:21417 +#: guix-git/doc/guix.texi:21779 msgid "Return a service that runs the Dovecot IMAP/POP3/LMTP mail server." msgstr "Renvoie un service qui lance le serveur de courriel IMAP/POP3/LMTP Dovecot." #. type: Plain text -#: guix-git/doc/guix.texi:21427 +#: guix-git/doc/guix.texi:21789 msgid "By default, Dovecot does not need much configuration; the default configuration object created by @code{(dovecot-configuration)} will suffice if your mail is delivered to @code{~/Maildir}. A self-signed certificate will be generated for TLS-protected connections, though Dovecot will also listen on cleartext ports by default. There are a number of options, though, which mail administrators might need to change, and as is the case with other services, Guix allows the system administrator to specify these parameters via a uniform Scheme interface." msgstr "Par défaut, Dovecot n'a pas besoin de beaucoup de configuration ; l'objet de configuration par défaut créé par @code{(dovecot-configuration)} suffira si votre courriel est livré dans @code{~/Maildir}. Un certificat auto-signé sera généré pour les connexions TLS, bien que Dovecot écoutera aussi sur les ports non chiffrés par défaut. Il y a quelques options cependant, que les administrateurs peuvent avoir besoin de changer et comme c'est le cas avec d'autres services, Guix permet aux administrateurs systèmes de spécifier ces paramètres via une interface Scheme unifiée." #. type: Plain text -#: guix-git/doc/guix.texi:21430 +#: guix-git/doc/guix.texi:21792 msgid "For example, to specify that mail is located at @code{maildir~/.mail}, one would instantiate the Dovecot service like this:" msgstr "Par exemple, pour spécifier que les courriels se trouvent dans @code{maildir~/.mail}, on peut instancier Dovecot de cette manière :" #. type: lisp -#: guix-git/doc/guix.texi:21435 +#: guix-git/doc/guix.texi:21797 #, no-wrap msgid "" "(dovecot-service #:config\n" @@ -40656,2433 +41316,2433 @@ msgstr "" " (mail-location \"maildir:~/.mail\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:21443 +#: guix-git/doc/guix.texi:21805 msgid "The available configuration parameters follow. Each parameter definition is preceded by its type; for example, @samp{string-list foo} indicates that the @code{foo} parameter should be specified as a list of strings. There is also a way to specify the configuration as a string, if you have an old @code{dovecot.conf} file that you want to port over from some other system; see the end for more details." msgstr "Les paramètres de configuration disponibles sont les suivants. Chaque définition des paramètres est précédé par son type ; par exemple, @samp{string-list toto} indique que le paramètre @code{toto} devrait être spécifié comme une liste de chaînes de caractères. Il y a aussi une manière de spécifier la configuration comme une chaîne de caractères, si vous avez un vieux fichier @code{dovecot.conf} que vous voulez porter depuis un autre système ; voir la fin pour plus de détails." #. type: Plain text -#: guix-git/doc/guix.texi:21453 +#: guix-git/doc/guix.texi:21815 msgid "Available @code{dovecot-configuration} fields are:" msgstr "Les champs de @code{dovecot-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:21454 +#: guix-git/doc/guix.texi:21816 #, no-wrap msgid "{@code{dovecot-configuration} parameter} package dovecot" msgstr "{paramètre de @code{dovecot-configuration}} package dovecot" #. type: deftypevr -#: guix-git/doc/guix.texi:21456 guix-git/doc/guix.texi:22805 +#: guix-git/doc/guix.texi:21818 guix-git/doc/guix.texi:23167 msgid "The dovecot package." msgstr "Le paquet dovecot." #. type: deftypevr -#: guix-git/doc/guix.texi:21458 +#: guix-git/doc/guix.texi:21820 #, no-wrap msgid "{@code{dovecot-configuration} parameter} comma-separated-string-list listen" msgstr "{paramètre de @code{dovecot-configuration}} comma-separated-string-list listen" #. type: deftypevr -#: guix-git/doc/guix.texi:21464 +#: guix-git/doc/guix.texi:21826 msgid "A list of IPs or hosts where to listen for connections. @samp{*} listens on all IPv4 interfaces, @samp{::} listens on all IPv6 interfaces. If you want to specify non-default ports or anything more complex, customize the address and port fields of the @samp{inet-listener} of the specific services you are interested in." msgstr "Une liste d'IP ou d'hôtes à écouter pour les connexions. @samp{*} écoute sur toutes les interfaces IPv4, @samp{::} écoute sur toutes les interfaces IPv6. Si vous voulez spécifier des ports différents de la valeur par défaut ou quelque chose de plus complexe, complétez les champs d'adresse et de port de @samp{inet-listener} des services spécifiques qui vous intéressent." #. type: deftypevr -#: guix-git/doc/guix.texi:21466 +#: guix-git/doc/guix.texi:21828 #, no-wrap msgid "{@code{dovecot-configuration} parameter} protocol-configuration-list protocols" msgstr "{paramètre de @code{dovecot-configuration}} protocol-configuration-list protocols" #. type: deftypevr -#: guix-git/doc/guix.texi:21469 +#: guix-git/doc/guix.texi:21831 msgid "List of protocols we want to serve. Available protocols include @samp{imap}, @samp{pop3}, and @samp{lmtp}." msgstr "Liste des protocoles que vous voulez servir. Les protocoles disponibles comprennent @samp{imap}, @samp{pop3} et @samp{lmtp}." #. type: deftypevr -#: guix-git/doc/guix.texi:21471 +#: guix-git/doc/guix.texi:21833 msgid "Available @code{protocol-configuration} fields are:" msgstr "Les champs @code{protocol-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:21472 +#: guix-git/doc/guix.texi:21834 #, no-wrap msgid "{@code{protocol-configuration} parameter} string name" msgstr "{paramètre de @code{protocol-configuration}} string name" #. type: deftypevr -#: guix-git/doc/guix.texi:21474 +#: guix-git/doc/guix.texi:21836 msgid "The name of the protocol." msgstr "Le nom du protocole." #. type: deftypevr -#: guix-git/doc/guix.texi:21476 +#: guix-git/doc/guix.texi:21838 #, no-wrap msgid "{@code{protocol-configuration} parameter} string auth-socket-path" msgstr "{paramètre de @code{protocol-configuration}} string auth-socket-path" #. type: deftypevr -#: guix-git/doc/guix.texi:21480 +#: guix-git/doc/guix.texi:21842 msgid "UNIX socket path to the master authentication server to find users. This is used by imap (for shared users) and lda. It defaults to @samp{\"/var/run/dovecot/auth-userdb\"}." msgstr "Le chemin d'un socket UNIX vers le serveur d'authentification maître pour trouver les utilisateurs. C'est utilisé par imap (pour les utilisateurs partagés) et lda. Sa valeur par défaut est @samp{\"/var/run/dovecot/auth-userdb\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21482 +#: guix-git/doc/guix.texi:21844 #, no-wrap msgid "{@code{protocol-configuration} parameter} boolean imap-metadata?" msgstr "{paramètre de @code{protocol-configuration}} boolean imap-metadata?" #. type: deftypevr -#: guix-git/doc/guix.texi:21487 +#: guix-git/doc/guix.texi:21849 msgid "Whether to enable the @code{IMAP METADATA} extension as defined in @uref{https://tools.ietf.org/html/rfc5464,RFC@tie{}5464}, which provides a means for clients to set and retrieve per-mailbox, per-user metadata and annotations over IMAP." msgstr "Indique s'il faut activer l'extension @code{IMAP METADATA} définie dans @uref{https://tools.ietf.org/html/rfc5464,RFC@tie{}5464}, qui permet aux clients d'indiquer et récupérer des métadonnées et des annotations pour chaque boîte aux lettres et chaque utilisateur par IMAP." #. type: deftypevr -#: guix-git/doc/guix.texi:21490 +#: guix-git/doc/guix.texi:21852 msgid "If this is @samp{#t}, you must also specify a dictionary @i{via} the @code{mail-attribute-dict} setting." msgstr "Si la valeur est @samp{#t}, vous devez spécifier un dictionnaire via le paramètre @code{mail-attribute-dict}." #. type: deftypevr -#: guix-git/doc/guix.texi:21495 +#: guix-git/doc/guix.texi:21857 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list managesieve-notify-capabilities" msgstr "{paramètre de @code{protocol-configuration}} space-separated-string-list managesieve-notify-capabilities" #. type: deftypevr -#: guix-git/doc/guix.texi:21500 +#: guix-git/doc/guix.texi:21862 msgid "Which NOTIFY capabilities to report to clients that first connect to the ManageSieve service, before authentication. These may differ from the capabilities offered to authenticated users. If this field is left empty, report what the Sieve interpreter supports by default." msgstr "Les capacités NOTIFY à rapporter aux clients qui se connectent pour la première fois au service ManageSieve, avant l'authentification. Elles peuvent être différentes des capacités offertes aux utilisateurs authentifiés. Si ce champ est vide, rapporte ce que l'interpréteur Sieve prend en charge par défaut." #. type: deftypevr -#: guix-git/doc/guix.texi:21504 +#: guix-git/doc/guix.texi:21866 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list managesieve-sieve-capability" msgstr "{paramètre de @code{protocol-configuration}} space-separated-string-list managesieve-sieve-capability" #. type: deftypevr -#: guix-git/doc/guix.texi:21509 +#: guix-git/doc/guix.texi:21871 msgid "Which SIEVE capabilities to report to clients that first connect to the ManageSieve service, before authentication. These may differ from the capabilities offered to authenticated users. If this field is left empty, report what the Sieve interpreter supports by default." msgstr "Les capacités SIEVE à rapporter aux clients qui se connectent pour la première fois au service ManageSieve, avant l'authentification. Elles peuvent être différentes des capacités offertes aux utilisateurs authentifiés. Si ce champ est vide, rapporte ce que l'interpréteur Sieve prend en charge par défaut." #. type: deftypevr -#: guix-git/doc/guix.texi:21514 +#: guix-git/doc/guix.texi:21876 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list mail-plugins" msgstr "{paramètre de @code{protocol-configuration}} space-separated-string-list mail-plugins" #. type: deftypevr -#: guix-git/doc/guix.texi:21516 +#: guix-git/doc/guix.texi:21878 msgid "Space separated list of plugins to load." msgstr "Liste de greffons à charger séparés par des espaces." #. type: deftypevr -#: guix-git/doc/guix.texi:21518 +#: guix-git/doc/guix.texi:21880 #, no-wrap msgid "{@code{protocol-configuration} parameter} non-negative-integer mail-max-userip-connections" msgstr "{paramètre de @code{protocol-configuration}} non-negative-integer mail-max-userip-connections" #. type: deftypevr -#: guix-git/doc/guix.texi:21522 +#: guix-git/doc/guix.texi:21884 msgid "Maximum number of IMAP connections allowed for a user from each IP address. NOTE: The username is compared case-sensitively. Defaults to @samp{10}." msgstr "Nombre maximum de connexions IMAP permises pour un utilisateur depuis chaque adresse IP. Remarque : la comparaison du nom d'utilisateur est sensible à la casse. Par défaut @samp{10}." #. type: deftypevr -#: guix-git/doc/guix.texi:21526 +#: guix-git/doc/guix.texi:21888 #, no-wrap msgid "{@code{dovecot-configuration} parameter} service-configuration-list services" msgstr "{paramètre de @code{dovecot-configuration}} service-configuration-list services" #. type: deftypevr -#: guix-git/doc/guix.texi:21530 +#: guix-git/doc/guix.texi:21892 msgid "List of services to enable. Available services include @samp{imap}, @samp{imap-login}, @samp{pop3}, @samp{pop3-login}, @samp{auth}, and @samp{lmtp}." msgstr "Liste des services à activer. Les services disponibles comprennent @samp{imap}, @samp{imap-login}, @samp{pop3}, @samp{pop3-login}, @samp{auth} et @samp{lmtp}." #. type: deftypevr -#: guix-git/doc/guix.texi:21532 +#: guix-git/doc/guix.texi:21894 msgid "Available @code{service-configuration} fields are:" msgstr "Les champs de @code{service-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:21533 +#: guix-git/doc/guix.texi:21895 #, no-wrap msgid "{@code{service-configuration} parameter} string kind" msgstr "{paramètre de @code{service-configuration}} string kind" #. type: deftypevr -#: guix-git/doc/guix.texi:21538 +#: guix-git/doc/guix.texi:21900 msgid "The service kind. Valid values include @code{director}, @code{imap-login}, @code{pop3-login}, @code{lmtp}, @code{imap}, @code{pop3}, @code{auth}, @code{auth-worker}, @code{dict}, @code{tcpwrap}, @code{quota-warning}, or anything else." msgstr "Le type de service. Les valeurs valides comprennent @code{director}, @code{imap-login}, @code{pop3-login}, @code{lmtp}, @code{imap}, @code{pop3}, @code{auth}, @code{auth-worker}, @code{dict}, @code{tcpwrap}, @code{quota-warning} ou n'importe quoi d'autre." #. type: deftypevr -#: guix-git/doc/guix.texi:21540 +#: guix-git/doc/guix.texi:21902 #, no-wrap msgid "{@code{service-configuration} parameter} listener-configuration-list listeners" msgstr "{paramètre de @code{service-configuration}} listener-configuration-list listeners" #. type: deftypevr -#: guix-git/doc/guix.texi:21545 +#: guix-git/doc/guix.texi:21907 msgid "Listeners for the service. A listener is either a @code{unix-listener-configuration}, a @code{fifo-listener-configuration}, or an @code{inet-listener-configuration}. Defaults to @samp{()}." msgstr "Les auditeurs du service. Un auditeur est soit un @code{unix-listener-configuration}, soit un @code{fifo-listener-configuration}, soit un @code{inet-listener-configuration}. La valeur par défaut est @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:21547 +#: guix-git/doc/guix.texi:21909 msgid "Available @code{unix-listener-configuration} fields are:" msgstr "Les champs de @code{unix-listener-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:21548 +#: guix-git/doc/guix.texi:21910 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string path" msgstr "{paramètre de @code{unix-listener-configuration}} string path" #. type: deftypevr -#: guix-git/doc/guix.texi:21551 guix-git/doc/guix.texi:21574 +#: guix-git/doc/guix.texi:21913 guix-git/doc/guix.texi:21936 msgid "Path to the file, relative to @code{base-dir} field. This is also used as the section name." msgstr "Chemin vers le fichier, relativement au champ @code{base-dir}. C'est aussi utilisé comme nom de section." #. type: deftypevr -#: guix-git/doc/guix.texi:21553 +#: guix-git/doc/guix.texi:21915 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string mode" msgstr "{paramètre de @code{unix-listener-configuration}} string mode" #. type: deftypevr -#: guix-git/doc/guix.texi:21556 guix-git/doc/guix.texi:21579 +#: guix-git/doc/guix.texi:21918 guix-git/doc/guix.texi:21941 msgid "The access mode for the socket. Defaults to @samp{\"0600\"}." msgstr "Le mode d'accès pour le socket. La valeur par défaut est @samp{\"0600\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21558 +#: guix-git/doc/guix.texi:21920 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string user" msgstr "{paramètre de @code{unix-listener-configuration}} string user" #. type: deftypevr -#: guix-git/doc/guix.texi:21561 guix-git/doc/guix.texi:21584 +#: guix-git/doc/guix.texi:21923 guix-git/doc/guix.texi:21946 msgid "The user to own the socket. Defaults to @samp{\"\"}." msgstr "L'utilisateur à qui appartient le socket. La valeur par défaut est @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21563 +#: guix-git/doc/guix.texi:21925 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string group" msgstr "{paramètre de @code{unix-listener-configuration}} string group" #. type: deftypevr -#: guix-git/doc/guix.texi:21566 guix-git/doc/guix.texi:21589 +#: guix-git/doc/guix.texi:21928 guix-git/doc/guix.texi:21951 msgid "The group to own the socket. Defaults to @samp{\"\"}." msgstr "Le groupe auquel appartient le socket. La valeur par défaut est @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21570 +#: guix-git/doc/guix.texi:21932 msgid "Available @code{fifo-listener-configuration} fields are:" msgstr "Les champs de @code{fifo-listener-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:21571 +#: guix-git/doc/guix.texi:21933 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string path" msgstr "{paramètre de @code{fifo-listener-configuration}} string path" #. type: deftypevr -#: guix-git/doc/guix.texi:21576 +#: guix-git/doc/guix.texi:21938 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string mode" msgstr "{paramètre de @code{fifo-listener-configuration}} string mode" #. type: deftypevr -#: guix-git/doc/guix.texi:21581 +#: guix-git/doc/guix.texi:21943 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string user" msgstr "{paramètre de @code{fifo-listener-configuration}} string user" #. type: deftypevr -#: guix-git/doc/guix.texi:21586 +#: guix-git/doc/guix.texi:21948 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string group" msgstr "{paramètre de @code{fifo-listener-configuration}} string group" #. type: deftypevr -#: guix-git/doc/guix.texi:21593 +#: guix-git/doc/guix.texi:21955 msgid "Available @code{inet-listener-configuration} fields are:" msgstr "Les champs de @code{inet-listener-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:21594 +#: guix-git/doc/guix.texi:21956 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} string protocol" msgstr "{paramètre de @code{inet-listener-configuration}} string protocol" #. type: deftypevr -#: guix-git/doc/guix.texi:21596 +#: guix-git/doc/guix.texi:21958 msgid "The protocol to listen for." msgstr "Le protocole à écouter." #. type: deftypevr -#: guix-git/doc/guix.texi:21598 +#: guix-git/doc/guix.texi:21960 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} string address" msgstr "{paramètre de @code{inet-listener-configuration}} string address" #. type: deftypevr -#: guix-git/doc/guix.texi:21601 +#: guix-git/doc/guix.texi:21963 msgid "The address on which to listen, or empty for all addresses. Defaults to @samp{\"\"}." msgstr "L'adresse sur laquelle écouter, ou la chaîne vide pour toutes les adresses. La valeur par défaut est @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21603 +#: guix-git/doc/guix.texi:21965 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} non-negative-integer port" msgstr "{paramètre de @code{inet-listener-configuration}} non-negative-integer port" #. type: deftypevr -#: guix-git/doc/guix.texi:21605 +#: guix-git/doc/guix.texi:21967 msgid "The port on which to listen." msgstr "Le port sur lequel écouter." #. type: deftypevr -#: guix-git/doc/guix.texi:21607 +#: guix-git/doc/guix.texi:21969 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} boolean ssl?" msgstr "{paramètre de @code{inet-listener-configuration}} boolean ssl?" #. type: deftypevr -#: guix-git/doc/guix.texi:21611 +#: guix-git/doc/guix.texi:21973 msgid "Whether to use SSL for this service; @samp{yes}, @samp{no}, or @samp{required}. Defaults to @samp{#t}." msgstr "S'il faut utiliser SSL pour ce service ; @samp{yes}, @samp{no} ou @samp{required}. La valeur par défaut est @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:21615 +#: guix-git/doc/guix.texi:21977 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer client-limit" msgstr "{paramètre de @code{service-configuration}} non-negative-integer client-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:21620 +#: guix-git/doc/guix.texi:21982 msgid "Maximum number of simultaneous client connections per process. Once this number of connections is received, the next incoming connection will prompt Dovecot to spawn another process. If set to 0, @code{default-client-limit} is used instead." msgstr "Connexions de clients simultanées maximum par processus. Une fois ce nombre de connections atteint, la connexion suivante fera en sorte que Dovecot démarre un autre processus. Si la valeur est 0, @code{default-client-limit} est utilisé à la place." #. type: deftypevr -#: guix-git/doc/guix.texi:21625 +#: guix-git/doc/guix.texi:21987 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer service-count" msgstr "{paramètre de @code{service-configuration}} non-negative-integer service-count" #. type: deftypevr -#: guix-git/doc/guix.texi:21630 +#: guix-git/doc/guix.texi:21992 msgid "Number of connections to handle before starting a new process. Typically the only useful values are 0 (unlimited) or 1. 1 is more secure, but 0 is faster. . Defaults to @samp{1}." msgstr "Nombre de connexions à gérer avant de démarrer un nouveau processus. Typiquement les valeurs utiles sont 0 (sans limite) ou 1. 1 est plus sûr, mais 0 est plus rapide. . La valeur par défaut est @samp{1}." #. type: deftypevr -#: guix-git/doc/guix.texi:21633 +#: guix-git/doc/guix.texi:21995 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer process-limit" msgstr "{paramètre de @code{service-configuration}} non-negative-integer process-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:21636 +#: guix-git/doc/guix.texi:21998 msgid "Maximum number of processes that can exist for this service. If set to 0, @code{default-process-limit} is used instead." msgstr "Nombre de processus maximum qui peut exister pour ce service. Si la valeur est 0, @code{default-process-limit} est utilisé à la place." #. type: deftypevr -#: guix-git/doc/guix.texi:21641 +#: guix-git/doc/guix.texi:22003 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer process-min-avail" msgstr "{paramètre de @code{service-configuration}} non-negative-integer process-min-avail" #. type: deftypevr -#: guix-git/doc/guix.texi:21644 +#: guix-git/doc/guix.texi:22006 msgid "Number of processes to always keep waiting for more connections. Defaults to @samp{0}." msgstr "Nombre de processus à toujours garder en attente de connexions. La valeur par défaut est @samp{0}." #. type: deftypevr -#: guix-git/doc/guix.texi:21646 +#: guix-git/doc/guix.texi:22008 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer vsz-limit" msgstr "{paramètre de @code{service-configuration}} non-negative-integer vsz-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:21650 +#: guix-git/doc/guix.texi:22012 msgid "If you set @samp{service-count 0}, you probably need to grow this. Defaults to @samp{256000000}." msgstr "Si vous mettez @samp{service-count 0}, vous avez sans doute besoin d'augmenter ce paramètre. La valeur par défaut est @samp{256000000}." #. type: deftypevr -#: guix-git/doc/guix.texi:21654 +#: guix-git/doc/guix.texi:22016 #, no-wrap msgid "{@code{dovecot-configuration} parameter} dict-configuration dict" msgstr "{paramètre de @code{dovecot-configuration}} dict-configuration dict" #. type: deftypevr -#: guix-git/doc/guix.texi:21657 +#: guix-git/doc/guix.texi:22019 msgid "Dict configuration, as created by the @code{dict-configuration} constructor." msgstr "Configuration du dictionnaire, créé par le constructeur @code{dict-configuration}." #. type: deftypevr -#: guix-git/doc/guix.texi:21659 +#: guix-git/doc/guix.texi:22021 msgid "Available @code{dict-configuration} fields are:" msgstr "Les champs de @code{dict-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:21660 +#: guix-git/doc/guix.texi:22022 #, no-wrap msgid "{@code{dict-configuration} parameter} free-form-fields entries" msgstr "{paramètre de @code{dict-configuration}} free-form-fields entries" #. type: deftypevr -#: guix-git/doc/guix.texi:21663 +#: guix-git/doc/guix.texi:22025 msgid "A list of key-value pairs that this dict should hold. Defaults to @samp{()}." msgstr "Une liste de paires de clefs-valeurs que ce dictionnaire contient. La valeur par défaut est @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:21667 +#: guix-git/doc/guix.texi:22029 #, no-wrap msgid "{@code{dovecot-configuration} parameter} passdb-configuration-list passdbs" msgstr "{paramètre de @code{dovecot-configuration}} passdb-configuration-list passdbs" #. type: deftypevr -#: guix-git/doc/guix.texi:21670 +#: guix-git/doc/guix.texi:22032 msgid "A list of passdb configurations, each one created by the @code{passdb-configuration} constructor." msgstr "Une liste de configurations passdb, chacune créée par le constructeur @code{passdb-configuration}." #. type: deftypevr -#: guix-git/doc/guix.texi:21672 +#: guix-git/doc/guix.texi:22034 msgid "Available @code{passdb-configuration} fields are:" msgstr "Les champs de @code{passdb-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:21673 +#: guix-git/doc/guix.texi:22035 #, no-wrap msgid "{@code{passdb-configuration} parameter} string driver" msgstr "{paramètre de @code{passdb-configuration}} string driver" #. type: deftypevr -#: guix-git/doc/guix.texi:21678 +#: guix-git/doc/guix.texi:22040 msgid "The driver that the passdb should use. Valid values include @samp{pam}, @samp{passwd}, @samp{shadow}, @samp{bsdauth}, and @samp{static}. Defaults to @samp{\"pam\"}." msgstr "Le pilote à utiliser par passdb. Les valeur valides comprennent @samp{pam}, @samp{passwd}, @samp{shadow}, @samp{bsdauth} et @samp{static}. La valeur par défaut est @samp{\"pam\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21680 +#: guix-git/doc/guix.texi:22042 #, no-wrap msgid "{@code{passdb-configuration} parameter} space-separated-string-list args" msgstr "{paramètre de @code{passdb-configuration}} space-separated-string-list args" #. type: deftypevr -#: guix-git/doc/guix.texi:21683 +#: guix-git/doc/guix.texi:22045 msgid "Space separated list of arguments to the passdb driver. Defaults to @samp{\"\"}." msgstr "Liste d'arguments pour le pilote passdb séparés par des espaces. La valeur par défaut est @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21687 +#: guix-git/doc/guix.texi:22049 #, no-wrap msgid "{@code{dovecot-configuration} parameter} userdb-configuration-list userdbs" msgstr "{paramètre de @code{dovecot-configuration}} userdb-configuration-list userdbs" #. type: deftypevr -#: guix-git/doc/guix.texi:21690 +#: guix-git/doc/guix.texi:22052 msgid "List of userdb configurations, each one created by the @code{userdb-configuration} constructor." msgstr "Liste des configurations userdb, chacune créée par le constructeur @code{userdb-configuration}." #. type: deftypevr -#: guix-git/doc/guix.texi:21692 +#: guix-git/doc/guix.texi:22054 msgid "Available @code{userdb-configuration} fields are:" msgstr "Les champs de @code{userdb-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:21693 +#: guix-git/doc/guix.texi:22055 #, no-wrap msgid "{@code{userdb-configuration} parameter} string driver" msgstr "{paramètre de @code{userdb-configuration}} string driver" #. type: deftypevr -#: guix-git/doc/guix.texi:21697 +#: guix-git/doc/guix.texi:22059 msgid "The driver that the userdb should use. Valid values include @samp{passwd} and @samp{static}. Defaults to @samp{\"passwd\"}." msgstr "Le pilote que userdb devrait utiliser. Les valeurs valides comprennent @samp{passwd} et @samp{static}. La valeur par défaut est @samp{\"passwd\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21699 +#: guix-git/doc/guix.texi:22061 #, no-wrap msgid "{@code{userdb-configuration} parameter} space-separated-string-list args" msgstr "{paramètre de @code{userdb-configuration}} space-separated-string-list args" #. type: deftypevr -#: guix-git/doc/guix.texi:21702 +#: guix-git/doc/guix.texi:22064 msgid "Space separated list of arguments to the userdb driver. Defaults to @samp{\"\"}." msgstr "Liste des arguments du pilote userdb séparés par des espaces. La valeur par défaut est @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21704 +#: guix-git/doc/guix.texi:22066 #, no-wrap msgid "{@code{userdb-configuration} parameter} free-form-args override-fields" msgstr "{paramètre de @code{userdb-configuration}} free-form-args override-fields" #. type: deftypevr -#: guix-git/doc/guix.texi:21707 +#: guix-git/doc/guix.texi:22069 msgid "Override fields from passwd. Defaults to @samp{()}." msgstr "Remplace des champs de passwd. La valeur par défaut est @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:21711 +#: guix-git/doc/guix.texi:22073 #, no-wrap msgid "{@code{dovecot-configuration} parameter} plugin-configuration plugin-configuration" msgstr "{paramètre de @code{dovecot-configuration}} plugin-configuration plugin-configuration" #. type: deftypevr -#: guix-git/doc/guix.texi:21714 +#: guix-git/doc/guix.texi:22076 msgid "Plug-in configuration, created by the @code{plugin-configuration} constructor." msgstr "Configuration du greffon, créé par le constructeur @code{plugin-configuration}." #. type: deftypevr -#: guix-git/doc/guix.texi:21716 +#: guix-git/doc/guix.texi:22078 #, no-wrap msgid "{@code{dovecot-configuration} parameter} list-of-namespace-configuration namespaces" msgstr "{paramètre de @code{dovecot-configuration}} list-of-namespace-configuration namespaces" #. type: deftypevr -#: guix-git/doc/guix.texi:21719 +#: guix-git/doc/guix.texi:22081 msgid "List of namespaces. Each item in the list is created by the @code{namespace-configuration} constructor." msgstr "Liste d'espaces de noms. Chaque élément de la liste est créé par le constructeur @code{namespace-configuration}." #. type: deftypevr -#: guix-git/doc/guix.texi:21721 +#: guix-git/doc/guix.texi:22083 msgid "Available @code{namespace-configuration} fields are:" msgstr "Les champs de @code{namespace-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:21722 +#: guix-git/doc/guix.texi:22084 #, no-wrap msgid "{@code{namespace-configuration} parameter} string name" msgstr "{paramètre de @code{namespace-configuration}} string name" #. type: deftypevr -#: guix-git/doc/guix.texi:21724 +#: guix-git/doc/guix.texi:22086 msgid "Name for this namespace." msgstr "Nom de cet espace de nom." #. type: deftypevr -#: guix-git/doc/guix.texi:21726 +#: guix-git/doc/guix.texi:22088 #, no-wrap msgid "{@code{namespace-configuration} parameter} string type" msgstr "{paramètre de @code{namespace-configuration}} string type" #. type: deftypevr -#: guix-git/doc/guix.texi:21729 +#: guix-git/doc/guix.texi:22091 msgid "Namespace type: @samp{private}, @samp{shared} or @samp{public}. Defaults to @samp{\"private\"}." msgstr "Type d'espace de nom : @samp{private}, @samp{shared} ou @samp{public}. La valeur par défaut est @samp{\"private\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21731 +#: guix-git/doc/guix.texi:22093 #, no-wrap msgid "{@code{namespace-configuration} parameter} string separator" msgstr "{paramètre de @code{namespace-configuration}} string separator" #. type: deftypevr -#: guix-git/doc/guix.texi:21737 +#: guix-git/doc/guix.texi:22099 msgid "Hierarchy separator to use. You should use the same separator for all namespaces or some clients get confused. @samp{/} is usually a good one. The default however depends on the underlying mail storage format. Defaults to @samp{\"\"}." msgstr "Séparateur de hiérarchie à utiliser. Vous devriez utiliser le même séparateur pour tous les espaces de noms ou certains clients seront confus. @samp{/} est généralement une bonne valeur. La valeur par défaut dépend cependant du format de stockage sous-jacent. La valeur par défaut est @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21739 +#: guix-git/doc/guix.texi:22101 #, no-wrap msgid "{@code{namespace-configuration} parameter} string prefix" msgstr "{paramètre de @code{namespace-configuration}} string prefix" #. type: deftypevr -#: guix-git/doc/guix.texi:21743 +#: guix-git/doc/guix.texi:22105 msgid "Prefix required to access this namespace. This needs to be different for all namespaces. For example @samp{Public/}. Defaults to @samp{\"\"}." msgstr "Préfixe requis pour accéder à cet espace de nom. Ce paramètres doit être différent pour tous les espaces de noms. Par exemple @samp{Public/}. La valeur par défaut est @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21745 +#: guix-git/doc/guix.texi:22107 #, no-wrap msgid "{@code{namespace-configuration} parameter} string location" msgstr "{paramètre de @code{namespace-configuration}} string location" #. type: deftypevr -#: guix-git/doc/guix.texi:21749 +#: guix-git/doc/guix.texi:22111 msgid "Physical location of the mailbox. This is in the same format as mail_location, which is also the default for it. Defaults to @samp{\"\"}." msgstr "Emplacement physique de la boîte aux lettres. C'est le même format que mail_location, qui est aussi la valeur par défaut. La valeur par défaut est @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21751 +#: guix-git/doc/guix.texi:22113 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean inbox?" msgstr "{paramètre de @code{namespace-configuration}} boolean inbox?" #. type: deftypevr -#: guix-git/doc/guix.texi:21755 +#: guix-git/doc/guix.texi:22117 msgid "There can be only one INBOX, and this setting defines which namespace has it. Defaults to @samp{#f}." msgstr "Il ne peut y avoir qu'un INBOX, et ce paramètre définit l'espace de nom qui le possède. La valeur par défaut est @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:21757 +#: guix-git/doc/guix.texi:22119 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean hidden?" msgstr "{paramètre de @code{namespace-configuration}} boolean hidden?" #. type: deftypevr -#: guix-git/doc/guix.texi:21765 +#: guix-git/doc/guix.texi:22127 msgid "If namespace is hidden, it's not advertised to clients via NAMESPACE extension. You'll most likely also want to set @samp{list? #f}. This is mostly useful when converting from another server with different namespaces which you want to deprecate but still keep working. For example you can create hidden namespaces with prefixes @samp{~/mail/}, @samp{~%u/mail/} and @samp{mail/}. Defaults to @samp{#f}." msgstr "Si l'espace de nom est caché, il n'est pas annoncé auprès des clients par l'extension NAMESPACE. Vous voudrez aussi sans doute indiquer @samp{list? #f}. C'est surtout utile lors de la conversion depuis un autre serveur avec des espaces de noms différents que vous voulez rendre obsolètes sans les casser. Par exemple vous pouvez cacher les espaces de noms avec les préfixes @samp{~/mail/}, @samp{~%u/mail/} et @samp{mail/}. La valeur par défaut est @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:21767 +#: guix-git/doc/guix.texi:22129 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean list?" msgstr "{paramètre de @code{namespace-configuration}} boolean list?" #. type: deftypevr -#: guix-git/doc/guix.texi:21773 +#: guix-git/doc/guix.texi:22135 msgid "Show the mailboxes under this namespace with the LIST command. This makes the namespace visible for clients that do not support the NAMESPACE extension. The special @code{children} value lists child mailboxes, but hides the namespace prefix. Defaults to @samp{#t}." msgstr "Montre les boîtes aux lettres sons cet espace de nom avec la commande LIST. Cela rend l'espace de nom visible pour les clients qui ne supportent pas l'extension NAMESPACE. La valeur spéciale @code{children} liste les boîtes aux lettres filles mais cache le préfixe de l'espace de nom. La valeur par défaut est @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:21775 +#: guix-git/doc/guix.texi:22137 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean subscriptions?" msgstr "{paramètre de @code{namespace-configuration}} boolean subscriptions?" #. type: deftypevr -#: guix-git/doc/guix.texi:21780 +#: guix-git/doc/guix.texi:22142 msgid "Namespace handles its own subscriptions. If set to @code{#f}, the parent namespace handles them. The empty prefix should always have this as @code{#t}). Defaults to @samp{#t}." msgstr "Les espaces de noms gèrent leur propre souscription. Si la valeur est @code{#f}, l'espace de nom parent s'en charge. Le préfixe vide devrait toujours avoir cette valeur à @code{#t}. La valeur par défaut est @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:21782 +#: guix-git/doc/guix.texi:22144 #, no-wrap msgid "{@code{namespace-configuration} parameter} mailbox-configuration-list mailboxes" msgstr "{paramètre de @code{namespace-configuration}} mailbox-configuration-list mailboxes" #. type: deftypevr -#: guix-git/doc/guix.texi:21785 +#: guix-git/doc/guix.texi:22147 msgid "List of predefined mailboxes in this namespace. Defaults to @samp{()}." msgstr "Liste des boîtes aux lettres prédéfinies dans cet espace de nom. La valeur par défaut est @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:21787 +#: guix-git/doc/guix.texi:22149 msgid "Available @code{mailbox-configuration} fields are:" msgstr "Les champs de @code{mailbox-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:21788 +#: guix-git/doc/guix.texi:22150 #, no-wrap msgid "{@code{mailbox-configuration} parameter} string name" msgstr "{paramètre de @code{mailbox-configuration}} string name" #. type: deftypevr -#: guix-git/doc/guix.texi:21790 +#: guix-git/doc/guix.texi:22152 msgid "Name for this mailbox." msgstr "Nom de cette boîte aux lettres." #. type: deftypevr -#: guix-git/doc/guix.texi:21792 +#: guix-git/doc/guix.texi:22154 #, no-wrap msgid "{@code{mailbox-configuration} parameter} string auto" msgstr "{paramètre de @code{mailbox-configuration}} string auto" #. type: deftypevr -#: guix-git/doc/guix.texi:21796 +#: guix-git/doc/guix.texi:22158 msgid "@samp{create} will automatically create this mailbox. @samp{subscribe} will both create and subscribe to the mailbox. Defaults to @samp{\"no\"}." msgstr "@samp{create} créera automatiquement cette boîte aux lettres. @samp{subscribe} créera et souscrira à la boîte aux lettres. La valeur par défaut est @samp{\"no\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21798 +#: guix-git/doc/guix.texi:22160 #, no-wrap msgid "{@code{mailbox-configuration} parameter} space-separated-string-list special-use" msgstr "{paramètre de @code{mailbox-configuration}} space-separated-string-list special-use" #. type: deftypevr -#: guix-git/doc/guix.texi:21803 +#: guix-git/doc/guix.texi:22165 msgid "List of IMAP @code{SPECIAL-USE} attributes as specified by RFC 6154. Valid values are @code{\\All}, @code{\\Archive}, @code{\\Drafts}, @code{\\Flagged}, @code{\\Junk}, @code{\\Sent}, and @code{\\Trash}. Defaults to @samp{()}." msgstr "Liste des attributs @code{SPECIAL-USE} IMAP spécifiés par la RFC 6154. Les valeurs valides sont @code{\\All}, @code{\\Archive}, @code{\\Drafts}, @code{\\Flagged}, @code{\\Junk}, @code{\\Sent} et @code{\\Trash}. La valeur par défaut est @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:21809 +#: guix-git/doc/guix.texi:22171 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name base-dir" msgstr "{paramètre de @code{dovecot-configuration}} file-name base-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:21812 +#: guix-git/doc/guix.texi:22174 msgid "Base directory where to store runtime data. Defaults to @samp{\"/var/run/dovecot/\"}." msgstr "Répertoire de base où stocker les données d'exécution. La valeur par défaut est @samp{\"/var/run/dovecot/\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21814 +#: guix-git/doc/guix.texi:22176 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string login-greeting" msgstr "{paramètre de @code{dovecot-configuration}} string login-greeting" #. type: deftypevr -#: guix-git/doc/guix.texi:21817 +#: guix-git/doc/guix.texi:22179 msgid "Greeting message for clients. Defaults to @samp{\"Dovecot ready.\"}." msgstr "Message d'accueil pour les clients. La valeur par défaut est @samp{\"Dovecot ready.\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21819 +#: guix-git/doc/guix.texi:22181 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-trusted-networks" msgstr "{paramètre de @code{dovecot-configuration}} space-separated-string-list login-trusted-networks" #. type: deftypevr -#: guix-git/doc/guix.texi:21826 +#: guix-git/doc/guix.texi:22188 msgid "List of trusted network ranges. Connections from these IPs are allowed to override their IP addresses and ports (for logging and for authentication checks). @samp{disable-plaintext-auth} is also ignored for these networks. Typically you would specify your IMAP proxy servers here. Defaults to @samp{()}." msgstr "Liste des groupes d'adresses de confiance. Les connexions depuis ces IP sont autorisées à modifier leurs adresses IP et leurs ports (pour la connexion et la vérification d'authentification). @samp{disable-plaintext-auth} est aussi ignoré pour ces réseaux. Typiquement vous voudrez spécifier votre mandataire IMAP ici. La valeur par défaut est @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:21828 +#: guix-git/doc/guix.texi:22190 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-access-sockets" msgstr "{paramètre de @code{dovecot-configuration}} space-separated-string-list login-access-sockets" #. type: deftypevr -#: guix-git/doc/guix.texi:21831 +#: guix-git/doc/guix.texi:22193 msgid "List of login access check sockets (e.g.@: tcpwrap). Defaults to @samp{()}." msgstr "Liste des sockets de vérification d'accès de connexion (p.@: ex.@: tcpwrap). La valeur par défaut est @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:21833 +#: guix-git/doc/guix.texi:22195 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean verbose-proctitle?" msgstr "{paramètre de @code{dovecot-configuration}} boolean verbose-proctitle?" #. type: deftypevr -#: guix-git/doc/guix.texi:21839 +#: guix-git/doc/guix.texi:22201 msgid "Show more verbose process titles (in ps). Currently shows user name and IP address. Useful for seeing who is actually using the IMAP processes (e.g.@: shared mailboxes or if the same uid is used for multiple accounts). Defaults to @samp{#f}." msgstr "Montre des titres de processus plus verbeux (dans ps). Actuellement, montre le nom d'utilisateur et l'adresse IP. Utile pour voir qui utilise en réalité les processus IMAP (p.@: ex.@: des boîtes aux lettres partagées ou si le même uid est utilisé pour plusieurs comptes). La valeur par défaut est @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:21841 +#: guix-git/doc/guix.texi:22203 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean shutdown-clients?" msgstr "{paramètre de @code{dovecot-configuration}} boolean shutdown-clients?" #. type: deftypevr -#: guix-git/doc/guix.texi:21847 +#: guix-git/doc/guix.texi:22209 msgid "Should all processes be killed when Dovecot master process shuts down. Setting this to @code{#f} means that Dovecot can be upgraded without forcing existing client connections to close (although that could also be a problem if the upgrade is e.g.@: due to a security fix). Defaults to @samp{#t}." msgstr "Indique si les processus devraient toujours être tués lorsque le processus maître de Dovecot est éteint. La valeur @code{#f} signifie que Dovecot peut être mis à jour sans forcer les connexions clientes existantes à se fermer (bien que cela puisse être un problème si la mise à jour est un correctif de sécurité par exemple). La valeur par défaut est @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:21849 +#: guix-git/doc/guix.texi:22211 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer doveadm-worker-count" msgstr "{paramètre de @code{dovecot-configuration}} non-negative-integer doveadm-worker-count" #. type: deftypevr -#: guix-git/doc/guix.texi:21853 +#: guix-git/doc/guix.texi:22215 msgid "If non-zero, run mail commands via this many connections to doveadm server, instead of running them directly in the same process. Defaults to @samp{0}." msgstr "Si la valeur n'est pas zéro, lance les commandes de courriel via ce nombre de connexions au serveur doveadm au lieu de les lancer dans le même processus. La valeur par défaut est @samp{0}." #. type: deftypevr -#: guix-git/doc/guix.texi:21855 +#: guix-git/doc/guix.texi:22217 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string doveadm-socket-path" msgstr "{paramètre de @code{dovecot-configuration}} string doveadm-socket-path" #. type: deftypevr -#: guix-git/doc/guix.texi:21858 +#: guix-git/doc/guix.texi:22220 msgid "UNIX socket or host:port used for connecting to doveadm server. Defaults to @samp{\"doveadm-server\"}." msgstr "Socket UNIX ou hôte:port utilisé pour se connecter au serveur doveadm. La valeur par défaut est @samp{\"doveadm-server\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21860 +#: guix-git/doc/guix.texi:22222 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list import-environment" msgstr "{paramètre de @code{dovecot-configuration}} space-separated-string-list import-environment" #. type: deftypevr -#: guix-git/doc/guix.texi:21864 +#: guix-git/doc/guix.texi:22226 msgid "List of environment variables that are preserved on Dovecot startup and passed down to all of its child processes. You can also give key=value pairs to always set specific settings." msgstr "Liste des variables d'environnement qui sont préservées au démarrage de Dovecot et passées à tous ses processus fils. Vous pouvez aussi donner des paires clef=valeur pour toujours spécifier ce paramètre." #. type: deftypevr -#: guix-git/doc/guix.texi:21866 +#: guix-git/doc/guix.texi:22228 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean disable-plaintext-auth?" msgstr "{paramètre de @code{dovecot-configuration}} boolean disable-plaintext-auth?" #. type: deftypevr -#: guix-git/doc/guix.texi:21873 +#: guix-git/doc/guix.texi:22235 msgid "Disable LOGIN command and all other plaintext authentications unless SSL/TLS is used (LOGINDISABLED capability). Note that if the remote IP matches the local IP (i.e.@: you're connecting from the same computer), the connection is considered secure and plaintext authentication is allowed. See also ssl=required setting. Defaults to @samp{#t}." msgstr "Désactive la commande LOGIN et toutes les autres authentifications en texte clair à moins que SSL/TLS ne soit utilisé (capacité LOGINDISABLED). Remarquez que si l'IP distante correspond à l'IP locale (c.-à-d.@: que vous vous connectez depuis le même ordinateur), la connexion est considérée comme sécurisée et l'authentification en texte clair est permise. Voir aussi le paramètre ssl=required. La valeur par défaut est @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:21875 +#: guix-git/doc/guix.texi:22237 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer auth-cache-size" msgstr "{paramètre de @code{dovecot-configuration}} non-negative-integer auth-cache-size" #. type: deftypevr -#: guix-git/doc/guix.texi:21880 +#: guix-git/doc/guix.texi:22242 msgid "Authentication cache size (e.g.@: @samp{#e10e6}). 0 means it's disabled. Note that bsdauth, PAM and vpopmail require @samp{cache-key} to be set for caching to be used. Defaults to @samp{0}." msgstr "Taille du cache d'authentification (p.@: ex.@: @samp{#e10e6}). 0 signifie qu'il est désactivé. Remarquez que bsdauth, PAM et vpopmail ont besoin que @samp{cache-key} soit indiqué pour que le cache soit utilisé. La valeur par défaut est @samp{0}." #. type: deftypevr -#: guix-git/doc/guix.texi:21882 +#: guix-git/doc/guix.texi:22244 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-cache-ttl" msgstr "{paramètre de @code{dovecot-configuration}} string auth-cache-ttl" #. type: deftypevr -#: guix-git/doc/guix.texi:21890 +#: guix-git/doc/guix.texi:22252 msgid "Time to live for cached data. After TTL expires the cached record is no longer used, *except* if the main database lookup returns internal failure. We also try to handle password changes automatically: If user's previous authentication was successful, but this one wasn't, the cache isn't used. For now this works only with plaintext authentication. Defaults to @samp{\"1 hour\"}." msgstr "Durée de vie des données en cache. Après l'expiration du TTL l'enregistrement en cache n'est plus utilisé *sauf* si la requête à la base de données principale revoie une erreur interne. Nous essayons aussi de gérer les changements de mot de passe automatiquement : si l'authentification précédente de l'utilisateur était réussie mais pas celle-ci, le cache n'est pas utilisé. Pour l'instant cela fonctionne avec l'authentification en texte clair uniquement. La valeur par défaut est @samp{\"1 hour\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21892 +#: guix-git/doc/guix.texi:22254 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-cache-negative-ttl" msgstr "{paramètre de @code{dovecot-configuration}} string auth-cache-negative-ttl" #. type: deftypevr -#: guix-git/doc/guix.texi:21896 +#: guix-git/doc/guix.texi:22258 msgid "TTL for negative hits (user not found, password mismatch). 0 disables caching them completely. Defaults to @samp{\"1 hour\"}." msgstr "TTL pour les résultats négatifs (l'utilisateur n'est pas trouvé ou le mot de passe ne correspond pas). 0 désactive la mise en cache complètement. La valeur par défaut est @samp{\"1 hour\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21898 +#: guix-git/doc/guix.texi:22260 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list auth-realms" msgstr "{paramètre de @code{dovecot-configuration}} space-separated-string-list auth-realms" #. type: deftypevr -#: guix-git/doc/guix.texi:21904 +#: guix-git/doc/guix.texi:22266 msgid "List of realms for SASL authentication mechanisms that need them. You can leave it empty if you don't want to support multiple realms. Many clients simply use the first one listed here, so keep the default realm first. Defaults to @samp{()}." msgstr "Liste des domaines pour les mécanismes d'authentification SASL qui en ont besoin. Vous pouvez laisser ce paramètre vide si vous ne voulez pas utiliser plusieurs domaines. Beaucoup de clients utilisent le premier domaine listé ici, donc gardez celui par défaut en premier. La valeur par défaut est @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:21906 +#: guix-git/doc/guix.texi:22268 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-default-realm" msgstr "{paramètre de @code{dovecot-configuration}} string auth-default-realm" #. type: deftypevr -#: guix-git/doc/guix.texi:21911 +#: guix-git/doc/guix.texi:22273 msgid "Default realm/domain to use if none was specified. This is used for both SASL realms and appending @@domain to username in plaintext logins. Defaults to @samp{\"\"}." msgstr "Domaine par défaut à utiliser si aucun n'est spécifié. C'est utilisé pour les domaines SASL et pour ajouter @@domaine au nom d'utilisateur dans les authentification en texte clair. La valeur par défaut est @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21913 +#: guix-git/doc/guix.texi:22275 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-chars" msgstr "{paramètre de @code{dovecot-configuration}} string auth-username-chars" #. type: deftypevr -#: guix-git/doc/guix.texi:21920 +#: guix-git/doc/guix.texi:22282 msgid "List of allowed characters in username. If the user-given username contains a character not listed in here, the login automatically fails. This is just an extra check to make sure user can't exploit any potential quote escaping vulnerabilities with SQL/LDAP databases. If you want to allow all characters, set this value to empty. Defaults to @samp{\"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@@\"}." msgstr "Liste des caractères autorisés dans les noms d'utilisateur. Si le nom d'utilisateur donné par l'utilisateur contient un caractère qui n'est pas listé ici, la connexion échoue automatiquement. C'est juste une vérification supplémentaire pour s'assure que l'utilisateur ne puisse pas exploiter des vulnérabilités potentielles d'échappement de guillemets avec les bases de données SQL/LDAP. Si vous voulez autoriser tous les caractères, indiquez la liste vide." #. type: deftypevr -#: guix-git/doc/guix.texi:21922 +#: guix-git/doc/guix.texi:22284 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-translation" msgstr "{paramètre de @code{dovecot-configuration}} string auth-username-translation" #. type: deftypevr -#: guix-git/doc/guix.texi:21928 +#: guix-git/doc/guix.texi:22290 msgid "Username character translations before it's looked up from databases. The value contains series of from -> to characters. For example @samp{#@@/@@} means that @samp{#} and @samp{/} characters are translated to @samp{@@}. Defaults to @samp{\"\"}." msgstr "Traduction de caractères dans les noms d'utilisateur avant qu'ils ne soient cherchés en base. La valeur contient une série de caractère de -> à. Par exemple @samp{#@@/@@} signifie que @samp{#} et @samp{/} sont traduits en @samp{@@}. La valeur par défaut est @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21930 +#: guix-git/doc/guix.texi:22292 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-format" msgstr "{paramètre de @code{dovecot-configuration}} string auth-username-format" #. type: deftypevr -#: guix-git/doc/guix.texi:21937 +#: guix-git/doc/guix.texi:22299 msgid "Username formatting before it's looked up from databases. You can use the standard variables here, e.g.@: %Lu would lowercase the username, %n would drop away the domain if it was given, or @samp{%n-AT-%d} would change the @samp{@@} into @samp{-AT-}. This translation is done after @samp{auth-username-translation} changes. Defaults to @samp{\"%Lu\"}." msgstr "Format des noms d'utilisateur avant qu'ils ne soient cherchés en base. Vous pouvez utiliser les variables standard ici, p.@: ex.@: %Lu est le nom d'utilisateur en minuscule, %n enlève le domaine s'il est donné ou @samp{%n-AT-%d} changerait le @samp{@@} en @samp{-AT-}. Cette traduction est faite après les changements de @samp{auth-username-translation}. La valeur par défaut est @samp{\"%Lu\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21939 +#: guix-git/doc/guix.texi:22301 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-master-user-separator" msgstr "{paramètre de @code{dovecot-configuration}} string auth-master-user-separator" #. type: deftypevr -#: guix-git/doc/guix.texi:21947 +#: guix-git/doc/guix.texi:22309 msgid "If you want to allow master users to log in by specifying the master username within the normal username string (i.e.@: not using SASL mechanism's support for it), you can specify the separator character here. The format is then . UW-IMAP uses @samp{*} as the separator, so that could be a good choice. Defaults to @samp{\"\"}." msgstr "Si vous voulez permettre aux utilisateurs maîtres de se connecter en spécifiant le nom d'utilisateur maître dans la chaîne de nom d'utilisateur normal (c.-à-d.@: sans utiliser le support du mécanisme SASL pour cela), vous pouvez spécifier le caractère de séparation ici. Le format est ensuite . UW-IMAP utilise @samp{*} comme séparateur, donc ça pourrait être un bon choix. La valeur par défaut est @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21949 +#: guix-git/doc/guix.texi:22311 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-anonymous-username" msgstr "{paramètre de @code{dovecot-configuration}} string auth-anonymous-username" #. type: deftypevr -#: guix-git/doc/guix.texi:21953 +#: guix-git/doc/guix.texi:22315 msgid "Username to use for users logging in with ANONYMOUS SASL mechanism. Defaults to @samp{\"anonymous\"}." msgstr "Nom d'utilisateur à utiliser pour les utilisateurs qui se connectent avec le mécanisme SASL ANONYMOUS. La valeur par défaut est @samp{\"anonymous\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21955 +#: guix-git/doc/guix.texi:22317 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer auth-worker-max-count" msgstr "{paramètre de @code{dovecot-configuration}} non-negative-integer auth-worker-max-count" #. type: deftypevr -#: guix-git/doc/guix.texi:21960 +#: guix-git/doc/guix.texi:22322 msgid "Maximum number of dovecot-auth worker processes. They're used to execute blocking passdb and userdb queries (e.g.@: MySQL and PAM). They're automatically created and destroyed as needed. Defaults to @samp{30}." msgstr "Nombre maximum de processus de travail dovecot-auth. Ils sont utilisés pour exécuter des requêtes passdb et userdb bloquantes (p.@: ex.@: MySQL et PAM). Ils sont créés automatiquement et détruits au besoin. La valeur par défaut est @samp{30}." #. type: deftypevr -#: guix-git/doc/guix.texi:21962 +#: guix-git/doc/guix.texi:22324 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-gssapi-hostname" msgstr "{paramètre de @code{dovecot-configuration}} string auth-gssapi-hostname" #. type: deftypevr -#: guix-git/doc/guix.texi:21967 +#: guix-git/doc/guix.texi:22329 msgid "Host name to use in GSSAPI principal names. The default is to use the name returned by gethostname(). Use @samp{$ALL} (with quotes) to allow all keytab entries. Defaults to @samp{\"\"}." msgstr "Nom d'hôte à utiliser dans les noms GSSAPI principaux. La valeur par défaut est d'utiliser le nom renvoyé par gethostname(). Utilisez @samp{$ALL} (avec des guillemets) pour permettre toutes les entrées keytab. La valeur par défaut est @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21969 +#: guix-git/doc/guix.texi:22331 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-krb5-keytab" msgstr "{paramètre de @code{dovecot-configuration}} string auth-krb5-keytab" #. type: deftypevr -#: guix-git/doc/guix.texi:21975 +#: guix-git/doc/guix.texi:22337 msgid "Kerberos keytab to use for the GSSAPI mechanism. Will use the system default (usually @file{/etc/krb5.keytab}) if not specified. You may need to change the auth service to run as root to be able to read this file. Defaults to @samp{\"\"}." msgstr "Keytab Kerberos à utiliser pour le mécanisme GSSAPI. Utilisera la valeur par défaut du système (typiquement @file{/etc/krb5.keytab}) s'il n'est pas spécifié. Vous pourriez avoir besoin de faire en sorte que le service d'authentification tourne en root pour pouvoir lire ce fichier. La valeur par défaut est @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21977 +#: guix-git/doc/guix.texi:22339 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-use-winbind?" msgstr "{paramètre de @code{dovecot-configuration}} boolean auth-use-winbind?" #. type: deftypevr -#: guix-git/doc/guix.texi:21982 +#: guix-git/doc/guix.texi:22344 msgid "Do NTLM and GSS-SPNEGO authentication using Samba's winbind daemon and @samp{ntlm-auth} helper. . Defaults to @samp{#f}." msgstr "Effectue l'authentification NTLM et GSS-SPNEGO avec le démon winbind de Samba et l'utilitaire @samp{ntlm-auth}. . La valeur par défaut est @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:21984 +#: guix-git/doc/guix.texi:22346 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name auth-winbind-helper-path" msgstr "{paramètre de @code{dovecot-configuration}} file-name auth-winbind-helper-path" #. type: deftypevr -#: guix-git/doc/guix.texi:21987 +#: guix-git/doc/guix.texi:22349 msgid "Path for Samba's @samp{ntlm-auth} helper binary. Defaults to @samp{\"/usr/bin/ntlm_auth\"}." msgstr "Chemin du binaire @samp{ntlm-auth} de samba. La valeur par défaut est @samp{\"/usr/bin/ntlm_auth\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21989 +#: guix-git/doc/guix.texi:22351 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-failure-delay" msgstr "{paramètre de @code{dovecot-configuration}} string auth-failure-delay" #. type: deftypevr -#: guix-git/doc/guix.texi:21992 +#: guix-git/doc/guix.texi:22354 msgid "Time to delay before replying to failed authentications. Defaults to @samp{\"2 secs\"}." msgstr "Durée d'attente avant de répondre à des authentifications échouées. La valeur par défaut est @samp{\"2 secs\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:21994 +#: guix-git/doc/guix.texi:22356 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-ssl-require-client-cert?" msgstr "{paramètre de @code{dovecot-configuration}} boolean auth-ssl-require-client-cert?" #. type: deftypevr -#: guix-git/doc/guix.texi:21998 +#: guix-git/doc/guix.texi:22360 msgid "Require a valid SSL client certificate or the authentication fails. Defaults to @samp{#f}." msgstr "Requiert un certification client SSL valide ou l'authentification échoue. La valeur par défaut est @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22000 +#: guix-git/doc/guix.texi:22362 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-ssl-username-from-cert?" msgstr "{paramètre de @code{dovecot-configuration}} boolean auth-ssl-username-from-cert?" #. type: deftypevr -#: guix-git/doc/guix.texi:22005 +#: guix-git/doc/guix.texi:22367 msgid "Take the username from client's SSL certificate, using @code{X509_NAME_get_text_by_NID()} which returns the subject's DN's CommonName. Defaults to @samp{#f}." msgstr "Prend le nom d'utilisateur du certificat SSL client, avec @code{X509_NAME_get_text_by_NID()} qui renvoie le CommonName du DN du sujet. La valeur par défaut est @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22007 +#: guix-git/doc/guix.texi:22369 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list auth-mechanisms" msgstr "{paramètre de @code{dovecot-configuration}} space-separated-string-list auth-mechanisms" #. type: deftypevr -#: guix-git/doc/guix.texi:22013 +#: guix-git/doc/guix.texi:22375 msgid "List of wanted authentication mechanisms. Supported mechanisms are: @samp{plain}, @samp{login}, @samp{digest-md5}, @samp{cram-md5}, @samp{ntlm}, @samp{rpa}, @samp{apop}, @samp{anonymous}, @samp{gssapi}, @samp{otp}, @samp{skey}, and @samp{gss-spnego}. NOTE: See also @samp{disable-plaintext-auth} setting." msgstr "Liste des mécanismes d'authentification souhaités. Les mécanismes supportés sont : @samp{plain}, @samp{login}, @samp{digest-md5}, @samp{cram-md5}, @samp{ntlm}, @samp{rpa}, @samp{apop}, @samp{anonymous}, @samp{gssapi}, @samp{otp}, @samp{skey} et @samp{gss-spnego}. Remarquez : Voir aussi le paramètre @samp{disable-plaintext-auth}." #. type: deftypevr -#: guix-git/doc/guix.texi:22015 +#: guix-git/doc/guix.texi:22377 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list director-servers" msgstr "{paramètre de @code{dovecot-configuration}} space-separated-string-list director-servers" #. type: deftypevr -#: guix-git/doc/guix.texi:22020 +#: guix-git/doc/guix.texi:22382 msgid "List of IPs or hostnames to all director servers, including ourself. Ports can be specified as ip:port. The default port is the same as what director service's @samp{inet-listener} is using. Defaults to @samp{()}." msgstr "Liste des IP ou des noms d'hôtes des serveurs directeurs, dont soi-même. Les ports peuvent être spécifiés avec ip:port. Le port par défaut est le même que le @samp{inet-listener} du service directeur. La valeur par défaut est @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:22022 +#: guix-git/doc/guix.texi:22384 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list director-mail-servers" msgstr "{paramètre de @code{dovecot-configuration}} space-separated-string-list director-mail-servers" #. type: deftypevr -#: guix-git/doc/guix.texi:22026 +#: guix-git/doc/guix.texi:22388 msgid "List of IPs or hostnames to all backend mail servers. Ranges are allowed too, like 10.0.0.10-10.0.0.30. Defaults to @samp{()}." msgstr "Liste des IP ou des noms d'hôtes de tous les serveurs de courriel de la grappe. Les intervalles sont aussi permis, comme 10.0.0.10-10.0.0.30. La valeur par défaut est @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:22028 +#: guix-git/doc/guix.texi:22390 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string director-user-expire" msgstr "{paramètre de @code{dovecot-configuration}} string director-user-expire" #. type: deftypevr -#: guix-git/doc/guix.texi:22032 +#: guix-git/doc/guix.texi:22394 msgid "How long to redirect users to a specific server after it no longer has any connections. Defaults to @samp{\"15 min\"}." msgstr "Combien de temps avant de rediriger les utilisateurs à un serveur spécifique après qu'il n'y a plus de connexion. La valeur par défaut est @samp{\"15 min\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22034 +#: guix-git/doc/guix.texi:22396 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string director-username-hash" msgstr "{paramètre de @code{dovecot-configuration}} string director-username-hash" #. type: deftypevr -#: guix-git/doc/guix.texi:22039 +#: guix-git/doc/guix.texi:22401 msgid "How the username is translated before being hashed. Useful values include %Ln if user can log in with or without @@domain, %Ld if mailboxes are shared within domain. Defaults to @samp{\"%Lu\"}." msgstr "La manière de traduire le nom d'utilisateur avant de le hasher. Les valeurs utiles comprennent %Ln si l'utilisateur peut se connecter avec ou sans @@domain, %Ld si les boîtes aux lettres sont partagées dans le domaine. La valeur par défaut est @samp{\"%Lu\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22041 +#: guix-git/doc/guix.texi:22403 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string log-path" msgstr "{paramètre de @code{dovecot-configuration}} string log-path" #. type: deftypevr -#: guix-git/doc/guix.texi:22045 +#: guix-git/doc/guix.texi:22407 msgid "Log file to use for error messages. @samp{syslog} logs to syslog, @samp{/dev/stderr} logs to stderr. Defaults to @samp{\"syslog\"}." msgstr "Fichier de journal à utiliser pour les messages d'erreur. @samp{syslog} journalise vers syslog, @samp{/dev/stderr} vers la sortie d'erreur. La valeur par défaut est @samp{\"syslog\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22047 +#: guix-git/doc/guix.texi:22409 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string info-log-path" msgstr "{paramètre de @code{dovecot-configuration}} string info-log-path" #. type: deftypevr -#: guix-git/doc/guix.texi:22051 +#: guix-git/doc/guix.texi:22413 msgid "Log file to use for informational messages. Defaults to @samp{log-path}. Defaults to @samp{\"\"}." msgstr "Fichier de journal à utiliser pour les messages d'information. La valeur par défaut est @samp{log-path}. La valeur par défaut est @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22053 +#: guix-git/doc/guix.texi:22415 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string debug-log-path" msgstr "{paramètre de @code{dovecot-configuration}} string debug-log-path" #. type: deftypevr -#: guix-git/doc/guix.texi:22057 +#: guix-git/doc/guix.texi:22419 msgid "Log file to use for debug messages. Defaults to @samp{info-log-path}. Defaults to @samp{\"\"}." msgstr "Fichier de journal à utiliser pour les messages de débogage. La valeur par défaut est @samp{info-log-path}. La valeur par défaut est @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22059 +#: guix-git/doc/guix.texi:22421 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string syslog-facility" msgstr "{paramètre de @code{dovecot-configuration}} string syslog-facility" #. type: deftypevr -#: guix-git/doc/guix.texi:22064 +#: guix-git/doc/guix.texi:22426 msgid "Syslog facility to use if you're logging to syslog. Usually if you don't want to use @samp{mail}, you'll use local0..local7. Also other standard facilities are supported. Defaults to @samp{\"mail\"}." msgstr "Dispositif syslog à utiliser si vous journalisez avec syslog. Normalement si vous ne voulez pas utiliser @samp{mail}, vous voudrez utiliser local0..local7. D'autres dispositifs standard sont supportés. La valeur par défaut est @samp{\"mail\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22066 +#: guix-git/doc/guix.texi:22428 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-verbose?" msgstr "{paramètre de @code{dovecot-configuration}} boolean auth-verbose?" #. type: deftypevr -#: guix-git/doc/guix.texi:22070 +#: guix-git/doc/guix.texi:22432 msgid "Log unsuccessful authentication attempts and the reasons why they failed. Defaults to @samp{#f}." msgstr "Indique s'il faut enregistrer les tentatives de connexion échouées et la raison de leur échec. La valeur par défaut est @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22072 +#: guix-git/doc/guix.texi:22434 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-verbose-passwords" msgstr "{paramètre de @code{dovecot-configuration}} string auth-verbose-passwords" #. type: deftypevr -#: guix-git/doc/guix.texi:22079 +#: guix-git/doc/guix.texi:22441 msgid "In case of password mismatches, log the attempted password. Valid values are no, plain and sha1. sha1 can be useful for detecting brute force password attempts vs. user simply trying the same password over and over again. You can also truncate the value to n chars by appending \":n\" (e.g.@: sha1:6). Defaults to @samp{\"no\"}." msgstr "Dans le cas où le mot de passe n'était pas correct, indique s'il faut enregistrer le mauvais mot de passe. Les valeurs valides sont « no », « plain » et « sha1 ». Il peut être utile d'indiquer « sha1 » pour discriminer des attaques par force brute d'utilisateurs qui réessayent encore et encore le même mot de passe. Vous pouvez aussi tronquer la valeur à n caractères en ajoutant « :n » (p.@: ex.@: « sha1:6 »). La valeur par défaut est @samp{\"no\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22081 +#: guix-git/doc/guix.texi:22443 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-debug?" msgstr "{paramètre de @code{dovecot-configuration}} boolean auth-debug?" #. type: deftypevr -#: guix-git/doc/guix.texi:22085 +#: guix-git/doc/guix.texi:22447 msgid "Even more verbose logging for debugging purposes. Shows for example SQL queries. Defaults to @samp{#f}." msgstr "Journaux encore plus verbeux pour le débogage. Cela montre par exemple les requêtes SQL effectuées. La valeur par défaut est @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22087 +#: guix-git/doc/guix.texi:22449 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-debug-passwords?" msgstr "{paramètre de @code{dovecot-configuration}} boolean auth-debug-passwords?" #. type: deftypevr -#: guix-git/doc/guix.texi:22092 +#: guix-git/doc/guix.texi:22454 msgid "In case of password mismatches, log the passwords and used scheme so the problem can be debugged. Enabling this also enables @samp{auth-debug}. Defaults to @samp{#f}." msgstr "Dans le cas où le mot de passe était incorrect, indique s'il faut enregistrer les mots de passe et les schémas utilisés pour que le problème puisse être débogué. Activer cette option active aussi @samp{auth-debug}. La valeur par défaut est @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22094 +#: guix-git/doc/guix.texi:22456 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-debug?" msgstr "{paramètre de @code{dovecot-configuration}} boolean mail-debug?" #. type: deftypevr -#: guix-git/doc/guix.texi:22098 +#: guix-git/doc/guix.texi:22460 msgid "Enable mail process debugging. This can help you figure out why Dovecot isn't finding your mails. Defaults to @samp{#f}." msgstr "Indique s'il faut activer le débogage du traitement des courriels. Cela peut vous aider à comprendre pourquoi Dovecot ne trouve pas vos courriels. La valeur par défaut est @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22100 +#: guix-git/doc/guix.texi:22462 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean verbose-ssl?" msgstr "{paramètre de @code{dovecot-configuration}} boolean verbose-ssl?" #. type: deftypevr -#: guix-git/doc/guix.texi:22103 +#: guix-git/doc/guix.texi:22465 msgid "Show protocol level SSL errors. Defaults to @samp{#f}." msgstr "Indique s'il faut montrer les erreurs au niveau SSL. La valeur par défaut est @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22105 +#: guix-git/doc/guix.texi:22467 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string log-timestamp" msgstr "{paramètre de @code{dovecot-configuration}} string log-timestamp" #. type: deftypevr -#: guix-git/doc/guix.texi:22109 +#: guix-git/doc/guix.texi:22471 msgid "Prefix for each line written to log file. % codes are in strftime(3) format. Defaults to @samp{\"\\\"%b %d %H:%M:%S \\\"\"}." msgstr "Préfixe à utiliser devant chaque ligne écrite dans le fichier journal. Les codes % sont au format strftime(3). La valeur par défaut est @samp{\"\\\"%b %d %H:%M:%S \\\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22111 +#: guix-git/doc/guix.texi:22473 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-log-format-elements" msgstr "{paramètre de @code{dovecot-configuration}} space-separated-string-list login-log-format-elements" #. type: deftypevr -#: guix-git/doc/guix.texi:22115 +#: guix-git/doc/guix.texi:22477 msgid "List of elements we want to log. The elements which have a non-empty variable value are joined together to form a comma-separated string." msgstr "Liste des éléments qu'il faut enregistrer. Les éléments qui ont une variable non vide sont agrégés pour former une chaîne de mots séparés par des virgules." #. type: deftypevr -#: guix-git/doc/guix.texi:22117 +#: guix-git/doc/guix.texi:22479 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string login-log-format" msgstr "{paramètre de @code{dovecot-configuration}} string login-log-format" #. type: deftypevr -#: guix-git/doc/guix.texi:22121 +#: guix-git/doc/guix.texi:22483 msgid "Login log format. %s contains @samp{login-log-format-elements} string, %$ contains the data we want to log. Defaults to @samp{\"%$: %s\"}." msgstr "Format du journal de connexion. %s contient la chaîne @samp{login-log-format-elements}, %$ contient la donnée à enregistrer. La valeur par défaut est @samp{\"%$: %s\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22123 +#: guix-git/doc/guix.texi:22485 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-log-prefix" msgstr "{paramètre de @code{dovecot-configuration}} string mail-log-prefix" #. type: deftypevr -#: guix-git/doc/guix.texi:22127 +#: guix-git/doc/guix.texi:22489 msgid "Log prefix for mail processes. See doc/wiki/Variables.txt for list of possible variables you can use. Defaults to @samp{\"\\\"%s(%u)<%@{pid@}><%@{session@}>: \\\"\"}." msgstr "Préfixe à utiliser devant chaque ligne du fichier de journal pour les processus traitant les courriels. Voir doc/wiki/Variables.txt pour trouver la liste des variables que vous pouvez utiliser. La valeur par défaut est @samp{\"\\\"%s(%u)<%@{pid@}><%@{session@}>: \\\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22129 +#: guix-git/doc/guix.texi:22491 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string deliver-log-format" msgstr "{paramètre de @code{dovecot-configuration}} string deliver-log-format" #. type: deftypevr -#: guix-git/doc/guix.texi:22131 +#: guix-git/doc/guix.texi:22493 msgid "Format to use for logging mail deliveries. You can use variables:" msgstr "Format à utiliser pour enregistrer les livraisons de courriels. Vous pouvez utiliser ces variables :" #. type: item -#: guix-git/doc/guix.texi:22132 +#: guix-git/doc/guix.texi:22494 #, no-wrap msgid "%$" msgstr "%$" #. type: table -#: guix-git/doc/guix.texi:22134 +#: guix-git/doc/guix.texi:22496 msgid "Delivery status message (e.g.@: @samp{saved to INBOX})" msgstr "Message de statut de la livraison (p.@: ex.@: @samp{saved to INBOX})" #. type: item -#: guix-git/doc/guix.texi:22134 +#: guix-git/doc/guix.texi:22496 #, no-wrap msgid "%m" msgstr "%m" #. type: table -#: guix-git/doc/guix.texi:22136 +#: guix-git/doc/guix.texi:22498 msgid "Message-ID" msgstr "Message-ID" #. type: item -#: guix-git/doc/guix.texi:22136 guix-git/doc/guix.texi:22679 +#: guix-git/doc/guix.texi:22498 guix-git/doc/guix.texi:23041 #, no-wrap msgid "%s" msgstr "%s" #. type: table -#: guix-git/doc/guix.texi:22138 +#: guix-git/doc/guix.texi:22500 msgid "Subject" msgstr "Objet" #. type: item -#: guix-git/doc/guix.texi:22138 +#: guix-git/doc/guix.texi:22500 #, no-wrap msgid "%f" msgstr "%f" #. type: table -#: guix-git/doc/guix.texi:22140 +#: guix-git/doc/guix.texi:22502 msgid "From address" msgstr "Adresse « de »" #. type: table -#: guix-git/doc/guix.texi:22142 +#: guix-git/doc/guix.texi:22504 msgid "Physical size" msgstr "Taille physique" #. type: item -#: guix-git/doc/guix.texi:22142 +#: guix-git/doc/guix.texi:22504 #, no-wrap msgid "%w" msgstr "%w" #. type: table -#: guix-git/doc/guix.texi:22144 +#: guix-git/doc/guix.texi:22506 msgid "Virtual size." msgstr "Taille virtuelle." #. type: deftypevr -#: guix-git/doc/guix.texi:22146 +#: guix-git/doc/guix.texi:22508 msgid "Defaults to @samp{\"msgid=%m: %$\"}." msgstr "La valeur par défaut est @samp{\"msgid=%m: %$\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22148 +#: guix-git/doc/guix.texi:22510 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-location" msgstr "{paramètre de @code{dovecot-configuration}} string mail-location" #. type: deftypevr -#: guix-git/doc/guix.texi:22153 +#: guix-git/doc/guix.texi:22515 msgid "Location for users' mailboxes. The default is empty, which means that Dovecot tries to find the mailboxes automatically. This won't work if the user doesn't yet have any mail, so you should explicitly tell Dovecot the full location." msgstr "Emplacement des boîtes à lettre des utilisateurs. La valeur par défaut est vide, ce qui signifie que Dovecot essaiera de trouver les boîte aux lettres automatiquement. Cela ne fonctionnera pas si l'utilisateur n'a aucun courriel, donc il vaut mieux indiquer explicitement le bon emplacement à Dovecot." #. type: deftypevr -#: guix-git/doc/guix.texi:22159 +#: guix-git/doc/guix.texi:22521 msgid "If you're using mbox, giving a path to the INBOX file (e.g.@: @file{/var/mail/%u}) isn't enough. You'll also need to tell Dovecot where the other mailboxes are kept. This is called the @emph{root mail directory}, and it must be the first path given in the @samp{mail-location} setting." msgstr "Si vous utilisez mbox, il ne suffit pas de donner le chemin vers le fichier INBOX (p.@: ex.@: @file{/var/mail/%u}). Vous devrez aussi dire à Dovecot où les autres boîtes aux lettres se trouvent. Cela s'appelle le « répertoire racine des courriels » et il doit être le premier chemin donné à l'option @samp{mail-location}." #. type: deftypevr -#: guix-git/doc/guix.texi:22161 +#: guix-git/doc/guix.texi:22523 msgid "There are a few special variables you can use, e.g.:" msgstr "Il y a quelques variables spéciales que vous pouvez utiliser, p.@: ex@: :" #. type: table -#: guix-git/doc/guix.texi:22165 +#: guix-git/doc/guix.texi:22527 msgid "username" msgstr "nom d'utilisateur" #. type: item -#: guix-git/doc/guix.texi:22165 guix-git/doc/guix.texi:22675 +#: guix-git/doc/guix.texi:22527 guix-git/doc/guix.texi:23037 #, no-wrap msgid "%n" msgstr "%n" #. type: table -#: guix-git/doc/guix.texi:22167 +#: guix-git/doc/guix.texi:22529 msgid "user part in user@@domain, same as %u if there's no domain" msgstr "la partie « utilisateur » dans « utilisateur@@domaine », comme %u s'il n'y a pas de domaine" #. type: item -#: guix-git/doc/guix.texi:22167 +#: guix-git/doc/guix.texi:22529 #, no-wrap msgid "%d" msgstr "%d" #. type: table -#: guix-git/doc/guix.texi:22169 +#: guix-git/doc/guix.texi:22531 msgid "domain part in user@@domain, empty if there's no domain" msgstr "la partie « domaine » dans « utilisateur@@domaine », vide s'il n'y a pas de domaine" #. type: item -#: guix-git/doc/guix.texi:22169 +#: guix-git/doc/guix.texi:22531 #, no-wrap msgid "%h" msgstr "%h" #. type: table -#: guix-git/doc/guix.texi:22171 +#: guix-git/doc/guix.texi:22533 msgid "home director" msgstr "répertoire personnel" #. type: deftypevr -#: guix-git/doc/guix.texi:22174 +#: guix-git/doc/guix.texi:22536 msgid "See doc/wiki/Variables.txt for full list. Some examples:" msgstr "Voir doc/wiki/Variables.txt pour la liste complète. Quelques exemple :" #. type: item -#: guix-git/doc/guix.texi:22175 +#: guix-git/doc/guix.texi:22537 #, no-wrap msgid "maildir:~/Maildir" msgstr "maildir:~/Maildir" #. type: item -#: guix-git/doc/guix.texi:22176 +#: guix-git/doc/guix.texi:22538 #, no-wrap msgid "mbox:~/mail:INBOX=/var/mail/%u" msgstr "mbox:~/mail:INBOX=/var/mail/%u" #. type: item -#: guix-git/doc/guix.texi:22177 +#: guix-git/doc/guix.texi:22539 #, no-wrap msgid "mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%" msgstr "mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%" #. type: deftypevr -#: guix-git/doc/guix.texi:22182 +#: guix-git/doc/guix.texi:22544 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-uid" msgstr "{paramètre de @code{dovecot-configuration}} string mail-uid" #. type: deftypevr -#: guix-git/doc/guix.texi:22187 +#: guix-git/doc/guix.texi:22549 msgid "System user and group used to access mails. If you use multiple, userdb can override these by returning uid or gid fields. You can use either numbers or names. . Defaults to @samp{\"\"}." msgstr "Utilisateur et groupe système utilisé pour accéder aux courriels. Si vous utilisez multiple, userdb peut remplacer ces valeurs en renvoyant les champs uid et gid. Vous pouvez utiliser soit des nombres, soit des noms. . La valeur par défaut est @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22189 +#: guix-git/doc/guix.texi:22551 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-gid" msgstr "{paramètre de @code{dovecot-configuration}} string mail-gid" #. type: deftypevr -#: guix-git/doc/guix.texi:22194 +#: guix-git/doc/guix.texi:22556 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-privileged-group" msgstr "{paramètre de @code{dovecot-configuration}} string mail-privileged-group" #. type: deftypevr -#: guix-git/doc/guix.texi:22200 +#: guix-git/doc/guix.texi:22562 msgid "Group to enable temporarily for privileged operations. Currently this is used only with INBOX when either its initial creation or dotlocking fails. Typically this is set to @samp{\"mail\"} to give access to @file{/var/mail}. Defaults to @samp{\"\"}." msgstr "Groupe à activer temporairement pour les opérations privilégiées. Actuellement cela est utilisé uniquement avec INBOX lors de sa création initiale et quand le verrouillage échoie. Typiquement, vous pouvez utiliser @samp{\"mail\"} pour donner accès à @file{/var/mail}. La valeur par défaut est @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22202 +#: guix-git/doc/guix.texi:22564 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-access-groups" msgstr "{paramètre de @code{dovecot-configuration}} string mail-access-groups" #. type: deftypevr -#: guix-git/doc/guix.texi:22210 +#: guix-git/doc/guix.texi:22572 msgid "Grant access to these supplementary groups for mail processes. Typically these are used to set up access to shared mailboxes. Note that it may be dangerous to set these if users can create symlinks (e.g.@: if @samp{mail} group is set here, @code{ln -s /var/mail ~/mail/var} could allow a user to delete others' mailboxes, or @code{ln -s /secret/shared/box ~/mail/mybox} would allow reading it). Defaults to @samp{\"\"}." msgstr "Donne l'accès à ces groupes supplémentaires aux processus de courriel. Ils sont typiquement utilisés pour mettre en place l'accès à des boites aux lettres partagées. Remarquez qu'il peut être dangereux d'utiliser cette option si l'utilisateur peut créer des liens symboliques (p.@: ex.@: si le groupe @samp{mail} est utilisé ici, @code{ln -s /var/mail ~/mail/var} peut permettre à un utilisateur de supprimer les boites aux lettres des autres, ou @code{ln -s /secret/shared/box ~/mail/mybox} lui permettrait de la lire). La valeur par défaut est @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22212 +#: guix-git/doc/guix.texi:22574 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attribute-dict" msgstr "{paramètre de @code{dovecot-configuration}} string mail-attribute-dict" #. type: deftypevr -#: guix-git/doc/guix.texi:22215 +#: guix-git/doc/guix.texi:22577 msgid "The location of a dictionary used to store @code{IMAP METADATA} as defined by @uref{https://tools.ietf.org/html/rfc5464, RFC@tie{}5464}." msgstr "L'emplacement d'un dictionnaire utilisé pour stocker les @code{IMAP METADATA} définies par @uref{https://tools.ietf.org/html/rfc5464, RFC@tie{}5464}." #. type: deftypevr -#: guix-git/doc/guix.texi:22218 +#: guix-git/doc/guix.texi:22580 msgid "The IMAP METADATA commands are available only if the ``imap'' protocol configuration's @code{imap-metadata?} field is @samp{#t}." msgstr "Les commandes IMAP METADATA sont disponibles seulement si le champ @code{imap-metadata?} de la configuration du protocol « imap » vaut @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:22223 +#: guix-git/doc/guix.texi:22585 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-full-filesystem-access?" msgstr "{paramètre de @code{dovecot-configuration}} boolean mail-full-filesystem-access?" #. type: deftypevr -#: guix-git/doc/guix.texi:22229 +#: guix-git/doc/guix.texi:22591 msgid "Allow full file system access to clients. There's no access checks other than what the operating system does for the active UID/GID@. It works with both maildir and mboxes, allowing you to prefix mailboxes names with e.g.@: @file{/path/} or @file{~user/}. Defaults to @samp{#f}." msgstr "Permet l'accès complet au système de fichiers pour les clients. Il n'y a pas de vérification d'accès autres que ce que le système d'exploitation fait avec les UID/GID@. Cela fonctionne aussi bien avec maildir qu'avec mbox, ce qui vous permet de préfixer les noms des boites aux lettres avec p.@: ex.@: @file{/chemin/} ou @file{~utilisateur/}. La valeur par défaut est @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22231 +#: guix-git/doc/guix.texi:22593 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mmap-disable?" msgstr "{paramètre de @code{dovecot-configuration}} boolean mmap-disable?" #. type: deftypevr -#: guix-git/doc/guix.texi:22235 +#: guix-git/doc/guix.texi:22597 msgid "Don't use @code{mmap()} at all. This is required if you store indexes to shared file systems (NFS or clustered file system). Defaults to @samp{#f}." msgstr "Ne pas du tout utiliser @code{mmap()}. Cela est requis si vous stockez les index dans des systèmes de fichiers partagés (NFS ou clusterfs). La valeur par défaut est @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22237 +#: guix-git/doc/guix.texi:22599 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean dotlock-use-excl?" msgstr "{paramètre de @code{dovecot-configuration}} boolean dotlock-use-excl?" #. type: deftypevr -#: guix-git/doc/guix.texi:22242 +#: guix-git/doc/guix.texi:22604 msgid "Rely on @samp{O_EXCL} to work when creating dotlock files. NFS supports @samp{O_EXCL} since version 3, so this should be safe to use nowadays by default. Defaults to @samp{#t}." msgstr "S'appuyer sur @samp{O_EXCL} lors de la création de fichiers de verrouillage. NFS supporte @samp{O_EXCL} depuis la version 3, donc cette option est sûre de nos jours. La valeur par défaut est @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:22244 +#: guix-git/doc/guix.texi:22606 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-fsync" msgstr "{paramètre de @code{dovecot-configuration}} string mail-fsync" #. type: deftypevr -#: guix-git/doc/guix.texi:22246 +#: guix-git/doc/guix.texi:22608 msgid "When to use fsync() or fdatasync() calls:" msgstr "Quand utiliser les appels à fsync() ou fdatasync() :" #. type: item -#: guix-git/doc/guix.texi:22247 +#: guix-git/doc/guix.texi:22609 #, no-wrap msgid "optimized" msgstr "optimized" #. type: table -#: guix-git/doc/guix.texi:22249 +#: guix-git/doc/guix.texi:22611 msgid "Whenever necessary to avoid losing important data" msgstr "Lorsque cela est nécessaire pour éviter de perdre des données importantes" #. type: table -#: guix-git/doc/guix.texi:22251 +#: guix-git/doc/guix.texi:22613 msgid "Useful with e.g.@: NFS when @code{write()}s are delayed" msgstr "Utile lorsque par exemple les @code{write()} de NFS sont retardées" #. type: table -#: guix-git/doc/guix.texi:22253 +#: guix-git/doc/guix.texi:22615 msgid "Never use it (best performance, but crashes can lose data)." msgstr "Ne l'utilisez pas (ça a de meilleures performances, mais les crashs font perdre toutes les données)." #. type: deftypevr -#: guix-git/doc/guix.texi:22255 +#: guix-git/doc/guix.texi:22617 msgid "Defaults to @samp{\"optimized\"}." msgstr "La valeur par défaut est @samp{\"optimized\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22257 +#: guix-git/doc/guix.texi:22619 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-nfs-storage?" msgstr "{paramètre de @code{dovecot-configuration}} boolean mail-nfs-storage?" #. type: deftypevr -#: guix-git/doc/guix.texi:22262 +#: guix-git/doc/guix.texi:22624 msgid "Mail storage exists in NFS@. Set this to yes to make Dovecot flush NFS caches whenever needed. If you're using only a single mail server this isn't needed. Defaults to @samp{#f}." msgstr "Le stockage des courriels se fait sur NFS@. Utilisez cette option pour que Dovecot vide les caches NFS lorsque c'est nécessaire. Si vous utilisez seulement un simple serveur de courriel, ce n'est pas nécessaire. La valeur par défaut est @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22264 +#: guix-git/doc/guix.texi:22626 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-nfs-index?" msgstr "{paramètre de @code{dovecot-configuration}} boolean mail-nfs-index?" #. type: deftypevr -#: guix-git/doc/guix.texi:22268 +#: guix-git/doc/guix.texi:22630 msgid "Mail index files also exist in NFS@. Setting this to yes requires @samp{mmap-disable? #t} and @samp{fsync-disable? #f}. Defaults to @samp{#f}." msgstr "Les fichiers d'index de courriels sont sur un système de fichiers NFS@. Pour utiliser cette option, vous aurez besoin de @samp{mmap-disable? #t} et @samp{fsync-disable? #f}. La valeur par défaut est @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22270 +#: guix-git/doc/guix.texi:22632 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string lock-method" msgstr "{paramètre de @code{dovecot-configuration}} string lock-method" #. type: deftypevr -#: guix-git/doc/guix.texi:22276 +#: guix-git/doc/guix.texi:22638 msgid "Locking method for index files. Alternatives are fcntl, flock and dotlock. Dotlocking uses some tricks which may create more disk I/O than other locking methods. NFS users: flock doesn't work, remember to change @samp{mmap-disable}. Defaults to @samp{\"fcntl\"}." msgstr "Méthode de verrouillage des fichiers d'index. Les alternatives sont fcntl, flock et dotlock. Le verrouillage-point (dotlocking) utilise des astuces qui peuvent créer plus d'utilisation du disque que les autres méthodes de verrouillage. Pour les utilisateurs de NFS, flock ne marche pas, et rappelez-vous de modifier @samp{mmap-disable}. La valeur par défaut est @samp{\"fcntl\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22278 +#: guix-git/doc/guix.texi:22640 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name mail-temp-dir" msgstr "{paramètre de @code{dovecot-configuration}} file-name mail-temp-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:22282 +#: guix-git/doc/guix.texi:22644 msgid "Directory in which LDA/LMTP temporarily stores incoming mails >128 kB. Defaults to @samp{\"/tmp\"}." msgstr "Le répertoire dans lequel LDA/LMTP stockent temporairement les courriels de plus de 128 Ko. La valeur par défaut est @samp{\"/tmp\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22284 +#: guix-git/doc/guix.texi:22646 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer first-valid-uid" msgstr "{paramètre de @code{dovecot-configuration}} non-negative-integer first-valid-uid" #. type: deftypevr -#: guix-git/doc/guix.texi:22290 +#: guix-git/doc/guix.texi:22652 msgid "Valid UID range for users. This is mostly to make sure that users can't log in as daemons or other system users. Note that denying root logins is hardcoded to dovecot binary and can't be done even if @samp{first-valid-uid} is set to 0. Defaults to @samp{500}." msgstr "L'intervalle d'UID valides pour les utilisateurs. Cette option est surtout utile pour s'assurer que les utilisateurs ne peuvent pas s'authentifier en tant que démon ou qu'un autre utilisateur système. Remarquez que la connexion en root est interdite en dur dans le binaire de dovecot et qu'on ne peut pas l'autoriser même si @samp{first-valid-uid} vaut 0. La valeur par défaut est @samp{500}." #. type: deftypevr -#: guix-git/doc/guix.texi:22292 +#: guix-git/doc/guix.texi:22654 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer last-valid-uid" msgstr "{paramètre de @code{dovecot-configuration}} non-negative-integer last-valid-uid" #. type: deftypevr -#: guix-git/doc/guix.texi:22297 +#: guix-git/doc/guix.texi:22659 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer first-valid-gid" msgstr "{paramètre de @code{dovecot-configuration}} non-negative-integer first-valid-gid" #. type: deftypevr -#: guix-git/doc/guix.texi:22302 +#: guix-git/doc/guix.texi:22664 msgid "Valid GID range for users. Users having non-valid GID as primary group ID aren't allowed to log in. If user belongs to supplementary groups with non-valid GIDs, those groups are not set. Defaults to @samp{1}." msgstr "Li'ntervalle de GID valides pour les utilisateurs. Les utilisateurs qui ont un GID non-valide comme numéro de groupe primaire ne peuvent pas se connecter. Si l'utilisateur appartient à un groupe avec un GID non valide, ce groupe n'est pas utilisable. La valeur par défaut est @samp{1}." #. type: deftypevr -#: guix-git/doc/guix.texi:22304 +#: guix-git/doc/guix.texi:22666 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer last-valid-gid" msgstr "{paramètre de @code{dovecot-configuration}} non-negative-integer last-valid-gid" #. type: deftypevr -#: guix-git/doc/guix.texi:22309 +#: guix-git/doc/guix.texi:22671 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-max-keyword-length" msgstr "{paramètre de @code{dovecot-configuration}} non-negative-integer mail-max-keyword-length" #. type: deftypevr -#: guix-git/doc/guix.texi:22313 +#: guix-git/doc/guix.texi:22675 msgid "Maximum allowed length for mail keyword name. It's only forced when trying to create new keywords. Defaults to @samp{50}." msgstr "Longueur maximale autorisée pour les mots-clefs. Elle n'est utilisée que lors de la création de nouveaux mots-clefs. La valeur par défaut est @samp{50}." #. type: deftypevr -#: guix-git/doc/guix.texi:22315 +#: guix-git/doc/guix.texi:22677 #, no-wrap msgid "{@code{dovecot-configuration} parameter} colon-separated-file-name-list valid-chroot-dirs" msgstr "{paramètre de @code{dovecot-configuration}} colon-separated-file-name-list valid-chroot-dirs" #. type: deftypevr -#: guix-git/doc/guix.texi:22325 +#: guix-git/doc/guix.texi:22687 msgid "List of directories under which chrooting is allowed for mail processes (i.e.@: @file{/var/mail} will allow chrooting to @file{/var/mail/foo/bar} too). This setting doesn't affect @samp{login-chroot} @samp{mail-chroot} or auth chroot settings. If this setting is empty, @samp{/./} in home dirs are ignored. WARNING: Never add directories here which local users can modify, that may lead to root exploit. Usually this should be done only if you don't allow shell access for users. . Defaults to @samp{()}." msgstr "Liste des répertoires sous lesquels le chroot est permis pour les processus de traitement des courriels (c.-à-d.@: @file{/var/mail} permettra aussi de se chrooter dans @file{/var/mail/toto/titi}). Ce paramètre n'affecte pas @samp{login-chroot} @samp{mail-chroot} ou les paramètres de chroot de l'authentification. Si ce paramètre est vide, @samp{/./} dans les répertoires personnels sont ignorés. ATTENTION : n'ajoutez jamais de répertoires ici que les utilisateurs locaux peuvent modifier, puisque ça pourrait permettre d'escalader les privilèges. Normalement vous ne devriez le faire que si les utilisateurs n'ont pas d'accès shell. . La valeur par défaut est @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:22327 +#: guix-git/doc/guix.texi:22689 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-chroot" msgstr "{paramètre de @code{dovecot-configuration}} string mail-chroot" #. type: deftypevr -#: guix-git/doc/guix.texi:22336 +#: guix-git/doc/guix.texi:22698 msgid "Default chroot directory for mail processes. This can be overridden for specific users in user database by giving @samp{/./} in user's home directory (e.g.@: @samp{/home/./user} chroots into @file{/home}). Note that usually there is no real need to do chrooting, Dovecot doesn't allow users to access files outside their mail directory anyway. If your home directories are prefixed with the chroot directory, append @samp{/.} to @samp{mail-chroot}. . Defaults to @samp{\"\"}." msgstr "Répertoire chroot par défaut pour les processus de traitement des courriels. Cela peut être modifié pour des utilisateurs particuliers dans la base de donnée en donnant @samp{/./} dans le répertoire personnel (p.@: ex.@: @samp{/home/./utilisateur} permet de se chrooter dans @file{/home}). Remarquez qu'il n'y a d'habitude pas besoin de se chrooter. Dovecot ne permet pas aux utilisateurs d'accéder aux fichiers en dehors de leur répertoire de courriels de toute façon. Si vos répertoires personnels sont préfixés par le répertoire de chroot, ajoutez @samp{/.} à @samp{mail-chroot}. . La valeur par défaut est @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22338 +#: guix-git/doc/guix.texi:22700 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name auth-socket-path" msgstr "{paramètre de @code{dovecot-configuration}} file-name auth-socket-path" #. type: deftypevr -#: guix-git/doc/guix.texi:22342 +#: guix-git/doc/guix.texi:22704 msgid "UNIX socket path to master authentication server to find users. This is used by imap (for shared users) and lda. Defaults to @samp{\"/var/run/dovecot/auth-userdb\"}." msgstr "Chemin de socket UNIX vers le serveur d'authentification maître pour trouver les utilisateurs. C'est utilisé par imap (pour les utilisateurs partagés) et lda. La valeur par défaut est @samp{\"/var/run/dovecot/auth-userdb\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22344 +#: guix-git/doc/guix.texi:22706 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name mail-plugin-dir" msgstr "{paramètre de @code{dovecot-configuration}} file-name mail-plugin-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:22347 +#: guix-git/doc/guix.texi:22709 msgid "Directory where to look up mail plugins. Defaults to @samp{\"/usr/lib/dovecot\"}." msgstr "Répertoire où trouver les greffons. La valeur par défaut est @samp{\"/usr/lib/dovecot\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22349 +#: guix-git/doc/guix.texi:22711 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mail-plugins" msgstr "{paramètre de @code{dovecot-configuration}} space-separated-string-list mail-plugins" #. type: deftypevr -#: guix-git/doc/guix.texi:22353 +#: guix-git/doc/guix.texi:22715 msgid "List of plugins to load for all services. Plugins specific to IMAP, LDA, etc.@: are added to this list in their own .conf files. Defaults to @samp{()}." msgstr "Liste des greffons à charger pour tous les services. Les greffons spécifiques à IMAP, LDA, etc.@: sont ajoutés à cette liste dans leur propre fichiers .conf. La valeur par défaut est @samp{()}." #. type: deftypevr -#: guix-git/doc/guix.texi:22355 +#: guix-git/doc/guix.texi:22717 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-cache-min-mail-count" msgstr "{paramètre de @code{dovecot-configuration}} non-negative-integer mail-cache-min-mail-count" #. type: deftypevr -#: guix-git/doc/guix.texi:22360 +#: guix-git/doc/guix.texi:22722 msgid "The minimum number of mails in a mailbox before updates are done to cache file. This allows optimizing Dovecot's behavior to do less disk writes at the cost of more disk reads. Defaults to @samp{0}." msgstr "Le nombre minimal de courriels dans une boîte aux lettres avant de mettre à jour le fichier de cache. Cela permet d'optimiser le comportement de Dovecot pour qu'il fasse moins d'écriture disque contre plus de lecture disque. La valeur par défaut est @samp{0}." #. type: deftypevr -#: guix-git/doc/guix.texi:22362 +#: guix-git/doc/guix.texi:22724 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mailbox-idle-check-interval" msgstr "{paramètre de @code{dovecot-configuration}} string mailbox-idle-check-interval" #. type: deftypevr -#: guix-git/doc/guix.texi:22369 +#: guix-git/doc/guix.texi:22731 msgid "When IDLE command is running, mailbox is checked once in a while to see if there are any new mails or other changes. This setting defines the minimum time to wait between those checks. Dovecot can also use dnotify, inotify and kqueue to find out immediately when changes occur. Defaults to @samp{\"30 secs\"}." msgstr "Lorsque la commande IDLE est lancée, la boîte aux lettres est vérifiée de temps en temps pour voir s'il y a de nouveaux messages ou d'autres changements. Ce paramètre défini le temps d'attente minimum entre deux vérifications. Dovecot peut aussi utilise dnotify, inotify et kqueue pour trouver immédiatement les changements. La valeur par défaut est @samp{\"30 secs\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22371 +#: guix-git/doc/guix.texi:22733 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-save-crlf?" msgstr "{paramètre de @code{dovecot-configuration}} boolean mail-save-crlf?" #. type: deftypevr -#: guix-git/doc/guix.texi:22378 +#: guix-git/doc/guix.texi:22740 msgid "Save mails with CR+LF instead of plain LF@. This makes sending those mails take less CPU, especially with sendfile() syscall with Linux and FreeBSD@. But it also creates a bit more disk I/O which may just make it slower. Also note that if other software reads the mboxes/maildirs, they may handle the extra CRs wrong and cause problems. Defaults to @samp{#f}." msgstr "Sauvegarder les courriels avec CR+LF plutôt que seulement LF@. Cela permet de consommer moins de CPU en envoyant ces courriels, surtout avec l'appel système sendfile() de Linux et FreeBSD@. Mais cela crée un peu plus d'utilisation du disque, ce qui peut aussi le ralentir. Remarquez aussi que si d'autres logiciels lisent les mbox/maildirs, ils peuvent se tromper dans leur traitement de ces CR supplémentaires et causer des problèmes. La valeur par défaut est @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22380 +#: guix-git/doc/guix.texi:22742 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-stat-dirs?" msgstr "{paramètre de @code{dovecot-configuration}} boolean maildir-stat-dirs?" #. type: deftypevr -#: guix-git/doc/guix.texi:22388 +#: guix-git/doc/guix.texi:22750 msgid "By default LIST command returns all entries in maildir beginning with a dot. Enabling this option makes Dovecot return only entries which are directories. This is done by stat()ing each entry, so it causes more disk I/O. (For systems setting struct @samp{dirent->d_type} this check is free and it's done always regardless of this setting). Defaults to @samp{#f}." msgstr "Par défaut la commande LIST renvoie toutes les entrées du maildir qui commencent par un point. Activer cette option permet à Dovecot de renvoyer uniquement les entrées qui sont des répertoires. Cela se fait avec stat() sur chaque entrée, ce qui cause plus d'utilisation du disque. For systems setting struct @samp{dirent->d_type} this check is free and it's done always regardless of this setting). La valeur par défaut est @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22390 +#: guix-git/doc/guix.texi:22752 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-copy-with-hardlinks?" msgstr "{paramètre de @code{dovecot-configuration}} boolean maildir-copy-with-hardlinks?" #. type: deftypevr -#: guix-git/doc/guix.texi:22395 +#: guix-git/doc/guix.texi:22757 msgid "When copying a message, do it with hard links whenever possible. This makes the performance much better, and it's unlikely to have any side effects. Defaults to @samp{#t}." msgstr "Lors de la copie d'un message, le faire avec des liens en dur si possible. Cela améliore un peu la performance et n'a que peu de chance d'avoir des effets secondaires." #. type: deftypevr -#: guix-git/doc/guix.texi:22397 +#: guix-git/doc/guix.texi:22759 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-very-dirty-syncs?" msgstr "{paramètre de @code{dovecot-configuration}} boolean maildir-very-dirty-syncs?" #. type: deftypevr -#: guix-git/doc/guix.texi:22402 +#: guix-git/doc/guix.texi:22764 msgid "Assume Dovecot is the only MUA accessing Maildir: Scan cur/ directory only when its mtime changes unexpectedly or when we can't find the mail otherwise. Defaults to @samp{#f}." msgstr "Suppose que Dovecot est le seul MUA qui accède à Maildir : scanne le répertoire cur/ seulement lorsque son mtime change de manière inattendue ou lorsqu'il ne peut pas trouver le courriel autrement. La valeur par défaut est @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22404 +#: guix-git/doc/guix.texi:22766 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mbox-read-locks" msgstr "{paramètre de @code{dovecot-configuration}} space-separated-string-list mbox-read-locks" #. type: deftypevr -#: guix-git/doc/guix.texi:22407 +#: guix-git/doc/guix.texi:22769 msgid "Which locking methods to use for locking mbox. There are four available:" msgstr "La méthode de verrouillage à utiliser pour verrouiller le boîtes aux lettres mbox. Il y en a quatre :" #. type: item -#: guix-git/doc/guix.texi:22409 +#: guix-git/doc/guix.texi:22771 #, no-wrap msgid "dotlock" msgstr "dotlock" #. type: table -#: guix-git/doc/guix.texi:22413 +#: guix-git/doc/guix.texi:22775 msgid "Create .lock file. This is the oldest and most NFS-safe solution. If you want to use /var/mail/ like directory, the users will need write access to that directory." msgstr "Crée un fichier .lock. C'est la solution la plus ancienne et la plus sûr pour NFS. Si vous voulez utiliser /var/mail/, les utilisateurs auront besoin de l'accès en écriture à ce répertoire." #. type: item -#: guix-git/doc/guix.texi:22413 +#: guix-git/doc/guix.texi:22775 #, no-wrap msgid "dotlock-try" msgstr "dotlock-try" #. type: table -#: guix-git/doc/guix.texi:22416 +#: guix-git/doc/guix.texi:22778 msgid "Same as dotlock, but if it fails because of permissions or because there isn't enough disk space, just skip it." msgstr "Comme pour dotlock, mais si elle échoue à cause d'un problème de permission ou parce qu'il n'y a pas assez d'espace disque, l'ignore." #. type: item -#: guix-git/doc/guix.texi:22416 +#: guix-git/doc/guix.texi:22778 #, no-wrap msgid "fcntl" msgstr "fcntl" #. type: table -#: guix-git/doc/guix.texi:22418 +#: guix-git/doc/guix.texi:22780 msgid "Use this if possible. Works with NFS too if lockd is used." msgstr "Utilisez cette méthode si possible. Elle fonctionne aussi avec NFS si vous utilisez lockd." #. type: item -#: guix-git/doc/guix.texi:22418 +#: guix-git/doc/guix.texi:22780 #, no-wrap msgid "flock" msgstr "flock" #. type: table -#: guix-git/doc/guix.texi:22420 guix-git/doc/guix.texi:22422 +#: guix-git/doc/guix.texi:22782 guix-git/doc/guix.texi:22784 msgid "May not exist in all systems. Doesn't work with NFS." msgstr "Peut ne pas exister sur tous les systèmes. Ne fonctionne pas avec NFS." #. type: item -#: guix-git/doc/guix.texi:22420 +#: guix-git/doc/guix.texi:22782 #, no-wrap msgid "lockf" msgstr "lockf" #. type: deftypevr -#: guix-git/doc/guix.texi:22428 +#: guix-git/doc/guix.texi:22790 msgid "You can use multiple locking methods; if you do the order they're declared in is important to avoid deadlocks if other MTAs/MUAs are using multiple locking methods as well. Some operating systems don't allow using some of them simultaneously." msgstr "Vous pouvez utiliser plusieurs méthodes de verrouillage ; dans ce cas l'ordre dans lequel elles sont déclarées est important pour éviter des interblocages si d'autres MTA/MUA utilisent aussi plusieurs méthodes. Certains systèmes d'exploitation ne permettent pas d'utiliser certaines méthodes en même temps." #. type: deftypevr -#: guix-git/doc/guix.texi:22430 +#: guix-git/doc/guix.texi:22792 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mbox-write-locks" msgstr "{paramètre de @code{dovecot-configuration}} space-separated-string-list mbox-write-locks" #. type: deftypevr -#: guix-git/doc/guix.texi:22434 +#: guix-git/doc/guix.texi:22796 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mbox-lock-timeout" msgstr "{paramètre de @code{dovecot-configuration}} string mbox-lock-timeout" #. type: deftypevr -#: guix-git/doc/guix.texi:22437 +#: guix-git/doc/guix.texi:22799 msgid "Maximum time to wait for lock (all of them) before aborting. Defaults to @samp{\"5 mins\"}." msgstr "Temps d'attente maximal pour un verrou (tous les verrous) avant d'abandonner. La valeur par défaut est @samp{\"5 mins\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22439 +#: guix-git/doc/guix.texi:22801 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mbox-dotlock-change-timeout" msgstr "{paramètre de @code{dovecot-configuration}} string mbox-dotlock-change-timeout" #. type: deftypevr -#: guix-git/doc/guix.texi:22443 +#: guix-git/doc/guix.texi:22805 msgid "If dotlock exists but the mailbox isn't modified in any way, override the lock file after this much time. Defaults to @samp{\"2 mins\"}." msgstr "Si le fichier dotlock existe mais que la boîte aux lettres n'est pas modifiée, remplacer le fichier de verrouillage après ce temps d'attente. La valeur par défaut est @samp{\"2 mins\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22445 +#: guix-git/doc/guix.texi:22807 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-dirty-syncs?" msgstr "{paramètre de @code{dovecot-configuration}} boolean mbox-dirty-syncs?" #. type: deftypevr -#: guix-git/doc/guix.texi:22456 +#: guix-git/doc/guix.texi:22818 msgid "When mbox changes unexpectedly we have to fully read it to find out what changed. If the mbox is large this can take a long time. Since the change is usually just a newly appended mail, it'd be faster to simply read the new mails. If this setting is enabled, Dovecot does this but still safely fallbacks to re-reading the whole mbox file whenever something in mbox isn't how it's expected to be. The only real downside to this setting is that if some other MUA changes message flags, Dovecot doesn't notice it immediately. Note that a full sync is done with SELECT, EXAMINE, EXPUNGE and CHECK commands. Defaults to @samp{#t}." msgstr "Lorsqu'un mbox change ne manière inattendue, il faut le lire en entier pour savoir ce qui a changé. Si le mbox est assez grand cela peut prendre beaucoup de temps. Comme le changement est habituellement un simple courriel supplémentaire, il serait plus rapide de lire le nouveaux courriels. Si ce paramètre est activé, Dovecot fait cela mais revient toujours à relire le fichier mbox complet si le fichier n'est pas comme attendu. Le seul réel inconvénient à ce paramètre est que certains MUA changent les drapeaux des messages, et dans ce cas Dovecot ne s'en rend pas immédiatement compte. Remarquez qu'une synchronisation complète est effectuée avec les commandes SELECT, EXAMINE, EXPUNGE et CHECK. La valeur par défaut est @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:22458 +#: guix-git/doc/guix.texi:22820 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-very-dirty-syncs?" msgstr "{paramètre de @code{dovecot-configuration}} boolean mbox-very-dirty-syncs?" #. type: deftypevr -#: guix-git/doc/guix.texi:22463 +#: guix-git/doc/guix.texi:22825 msgid "Like @samp{mbox-dirty-syncs}, but don't do full syncs even with SELECT, EXAMINE, EXPUNGE or CHECK commands. If this is set, @samp{mbox-dirty-syncs} is ignored. Defaults to @samp{#f}." msgstr "Comme @samp{mbox-dirty-syncs}, mais ne synchronise pas complètement même avec les commandes SELECT, EXAMINE, EXPUNGE ou CHECK. Si l'option n'est pas activée, @samp{mbox-dirty-syncs} est ignorée. La valeur par défaut est @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22465 +#: guix-git/doc/guix.texi:22827 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-lazy-writes?" msgstr "{paramètre de @code{dovecot-configuration}} boolean mbox-lazy-writes?" #. type: deftypevr -#: guix-git/doc/guix.texi:22471 +#: guix-git/doc/guix.texi:22833 msgid "Delay writing mbox headers until doing a full write sync (EXPUNGE and CHECK commands and when closing the mailbox). This is especially useful for POP3 where clients often delete all mails. The downside is that our changes aren't immediately visible to other MUAs. Defaults to @samp{#t}." msgstr "Attendre avant d'écrire les en-têtes mbox jusqu'à la prochaine synchronisation des écritures (les commandes EXPUNGE et CHECK et quand on ferme la boîte aux lettres). C'est surtout utile pour POP3 où les clients suppriment souvent tous les courriels. L'inconvénient c'est que vos changements ne sont pas immédiatement visibles pour les autres MUA. La valeur par défaut est @samp{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:22473 +#: guix-git/doc/guix.texi:22835 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mbox-min-index-size" msgstr "{paramètre de @code{dovecot-configuration}} non-negative-integer mbox-min-index-size" #. type: deftypevr -#: guix-git/doc/guix.texi:22478 +#: guix-git/doc/guix.texi:22840 msgid "If mbox size is smaller than this (e.g.@: 100k), don't write index files. If an index file already exists it's still read, just not updated. Defaults to @samp{0}." msgstr "Si la taille du fichier mbox est plus petite que cela (p.@: ex.@: 100k), ne pas écrire de fichier d'index. Si un fichier d'index existe déjà il est toujours lu, mais pas mis à jour. La valeur par défaut est @samp{0}." #. type: deftypevr -#: guix-git/doc/guix.texi:22480 +#: guix-git/doc/guix.texi:22842 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mdbox-rotate-size" msgstr "{paramètre de @code{dovecot-configuration}} non-negative-integer mdbox-rotate-size" #. type: deftypevr -#: guix-git/doc/guix.texi:22483 +#: guix-git/doc/guix.texi:22845 msgid "Maximum dbox file size until it's rotated. Defaults to @samp{10000000}." msgstr "Taille du fichier dbox maximale avant rotation. La valeur par défaut est @samp{10000000}." #. type: deftypevr -#: guix-git/doc/guix.texi:22485 +#: guix-git/doc/guix.texi:22847 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mdbox-rotate-interval" msgstr "{paramètre de @code{dovecot-configuration}} string mdbox-rotate-interval" #. type: deftypevr -#: guix-git/doc/guix.texi:22490 +#: guix-git/doc/guix.texi:22852 msgid "Maximum dbox file age until it's rotated. Typically in days. Day begins from midnight, so 1d = today, 2d = yesterday, etc. 0 = check disabled. Defaults to @samp{\"1d\"}." msgstr "Âge maximum du fichier dbox avant rotation. Typiquement en jours. Les jours commencent à minuit, donc 1d signifie aujourd'hui, 2d pour hier, etc. 0 pour désactiver la vérification. La valeur par défaut est @samp{\"1d\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22492 +#: guix-git/doc/guix.texi:22854 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mdbox-preallocate-space?" msgstr "{paramètre de @code{dovecot-configuration}} boolean mdbox-preallocate-space?" #. type: deftypevr -#: guix-git/doc/guix.texi:22497 +#: guix-git/doc/guix.texi:22859 msgid "When creating new mdbox files, immediately preallocate their size to @samp{mdbox-rotate-size}. This setting currently works only in Linux with some file systems (ext4, xfs). Defaults to @samp{#f}." msgstr "Lors de la création des fichiers mdbox, préallouer immédiatement leur taille à @samp{mdbox-rotate-size}. Ce paramètre ne fonctionne actuellement que dans Linux avec certains systèmes de fichiers (ext4, xfs). La valeur par défaut est @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22499 +#: guix-git/doc/guix.texi:22861 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-dir" msgstr "{paramètre de @code{dovecot-configuration}} string mail-attachment-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:22503 +#: guix-git/doc/guix.texi:22865 msgid "sdbox and mdbox support saving mail attachments to external files, which also allows single instance storage for them. Other backends don't support this for now." msgstr "sdbox et mdbox supportent la sauvegarde des pièces-jointes dans des fichiers externes, ce qui permet de les stocker une seule fois. Les autres moteurs ne le supportent pas pour le moment." #. type: deftypevr -#: guix-git/doc/guix.texi:22505 +#: guix-git/doc/guix.texi:22867 msgid "WARNING: This feature hasn't been tested much yet. Use at your own risk." msgstr "ATTENTION : Cette fonctionnalité n'a pas été beaucoup testée. Utilisez-la à vos risques et périls." #. type: deftypevr -#: guix-git/doc/guix.texi:22508 +#: guix-git/doc/guix.texi:22870 msgid "Directory root where to store mail attachments. Disabled, if empty. Defaults to @samp{\"\"}." msgstr "Racine du répertoire où stocker les pièces-jointes. Désactivé si vide. La valeur par défaut est @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22510 +#: guix-git/doc/guix.texi:22872 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-attachment-min-size" msgstr "{paramètre de @code{dovecot-configuration}} non-negative-integer mail-attachment-min-size" #. type: deftypevr -#: guix-git/doc/guix.texi:22515 +#: guix-git/doc/guix.texi:22877 msgid "Attachments smaller than this aren't saved externally. It's also possible to write a plugin to disable saving specific attachments externally. Defaults to @samp{128000}." msgstr "Les pièces-jointes plus petites que cela ne sont pas enregistrées à part. Il est aussi possible d'écrire un greffon pour désactiver l'enregistrement externe de certaines pièces-jointes spécifiques. La valeur par défaut est @samp{128000}." #. type: deftypevr -#: guix-git/doc/guix.texi:22517 +#: guix-git/doc/guix.texi:22879 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-fs" msgstr "{paramètre de @code{dovecot-configuration}} string mail-attachment-fs" #. type: deftypevr -#: guix-git/doc/guix.texi:22519 +#: guix-git/doc/guix.texi:22881 msgid "File system backend to use for saving attachments:" msgstr "Moteur du système de fichier à utiliser pour sauvegarder les pièces-jointes :" #. type: item -#: guix-git/doc/guix.texi:22520 +#: guix-git/doc/guix.texi:22882 #, no-wrap msgid "posix" msgstr "posix" #. type: table -#: guix-git/doc/guix.texi:22522 +#: guix-git/doc/guix.texi:22884 msgid "No SiS done by Dovecot (but this might help FS's own deduplication)" msgstr "Pas de SiS (single instance storage) par Dovecot (mais cela peut aider la déduplication du système de fichier)" #. type: item -#: guix-git/doc/guix.texi:22522 +#: guix-git/doc/guix.texi:22884 #, no-wrap msgid "sis posix" msgstr "sis posix" #. type: table -#: guix-git/doc/guix.texi:22524 +#: guix-git/doc/guix.texi:22886 msgid "SiS with immediate byte-by-byte comparison during saving" msgstr "SiS avec comparaison bit-à-bit immédiate pendant la sauvegarde" #. type: item -#: guix-git/doc/guix.texi:22524 +#: guix-git/doc/guix.texi:22886 #, no-wrap msgid "sis-queue posix" msgstr "sis-queue posix" #. type: table -#: guix-git/doc/guix.texi:22526 +#: guix-git/doc/guix.texi:22888 msgid "SiS with delayed comparison and deduplication." msgstr "SiS avec déduplication et comparaison différées." #. type: deftypevr -#: guix-git/doc/guix.texi:22528 +#: guix-git/doc/guix.texi:22890 msgid "Defaults to @samp{\"sis posix\"}." msgstr "La valeur par défaut est @samp{\"sis posix\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22530 +#: guix-git/doc/guix.texi:22892 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-hash" msgstr "{paramètre de @code{dovecot-configuration}} string mail-attachment-hash" #. type: deftypevr -#: guix-git/doc/guix.texi:22536 +#: guix-git/doc/guix.texi:22898 msgid "Hash format to use in attachment filenames. You can add any text and variables: @code{%@{md4@}}, @code{%@{md5@}}, @code{%@{sha1@}}, @code{%@{sha256@}}, @code{%@{sha512@}}, @code{%@{size@}}. Variables can be truncated, e.g.@: @code{%@{sha256:80@}} returns only first 80 bits. Defaults to @samp{\"%@{sha1@}\"}." msgstr "Format de hash à utiliser dans les noms de fichiers des pièces-jointes. Vous pouvez ajouter n'importe quel texte ou variable : @code{%@{md4@}}, @code{%@{md5@}}, @code{%@{sha1@}}, @code{%@{sha256@}}, @code{%@{sha512@}}, @code{%@{size@}}. Les variables peuvent être tronquées, p.@: ex.@: @code{%@{sha256:80@}} renvoie seulement les 80 premiers bits. La valeur par défaut est @samp{\"%@{sha1@}\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22538 +#: guix-git/doc/guix.texi:22900 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-process-limit" msgstr "{paramètre de @code{dovecot-configuration}} non-negative-integer default-process-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:22543 +#: guix-git/doc/guix.texi:22905 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-client-limit" msgstr "{paramètre de @code{dovecot-configuration}} non-negative-integer default-client-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:22546 guix-git/doc/guix.texi:30171 +#: guix-git/doc/guix.texi:22908 guix-git/doc/guix.texi:30536 msgid "Defaults to @samp{1000}." msgstr "La valeur par défaut est @samp{1000}." #. type: deftypevr -#: guix-git/doc/guix.texi:22548 +#: guix-git/doc/guix.texi:22910 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-vsz-limit" msgstr "{paramètre de @code{dovecot-configuration}} non-negative-integer default-vsz-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:22553 +#: guix-git/doc/guix.texi:22915 msgid "Default VSZ (virtual memory size) limit for service processes. This is mainly intended to catch and kill processes that leak memory before they eat up everything. Defaults to @samp{256000000}." msgstr "Limite VSZ (taille mémoire virtuelle) par défaut pour les processus de service. C'est surtout pour attraper et tuer les processus qui font fuiter la mémoire avant qu'ils ne l'utilisent en entier. La valeur par défaut est @samp{256000000}." #. type: deftypevr -#: guix-git/doc/guix.texi:22555 +#: guix-git/doc/guix.texi:22917 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string default-login-user" msgstr "{paramètre de @code{dovecot-configuration}} string default-login-user" #. type: deftypevr -#: guix-git/doc/guix.texi:22560 +#: guix-git/doc/guix.texi:22922 msgid "Login user is internally used by login processes. This is the most untrusted user in Dovecot system. It shouldn't have access to anything at all. Defaults to @samp{\"dovenull\"}." msgstr "Utilisateur de connexion utilisé en interne par les processus de connexion. C'est l'utilisateur avec la confiance minimale pour Dovecot. Il ne devrait avoir accès à rien du tout. La valeur par défaut est @samp{\"dovenull\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22562 +#: guix-git/doc/guix.texi:22924 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string default-internal-user" msgstr "{paramètre de @code{dovecot-configuration}} string default-internal-user" #. type: deftypevr -#: guix-git/doc/guix.texi:22567 +#: guix-git/doc/guix.texi:22929 msgid "Internal user is used by unprivileged processes. It should be separate from login user, so that login processes can't disturb other processes. Defaults to @samp{\"dovecot\"}." msgstr "Utilisateur utilisé en interne par les processus non privilégiés. Il devrait être différent de l'utilisateur de connexion, pour que les processus de connexion ne puissent pas perturber les autres processus. La valeur par défaut est @samp{\"dovecot\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22569 +#: guix-git/doc/guix.texi:22931 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string ssl?" msgstr "{paramètre de @code{dovecot-configuration}} string ssl?" #. type: deftypevr -#: guix-git/doc/guix.texi:22572 +#: guix-git/doc/guix.texi:22934 msgid "SSL/TLS support: yes, no, required. . Defaults to @samp{\"required\"}." msgstr "Support SSL/TLS : yes, no, required. . La valeur par défaut est @samp{\"required\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22574 +#: guix-git/doc/guix.texi:22936 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string ssl-cert" msgstr "{paramètre de @code{dovecot-configuration}} string ssl-cert" #. type: deftypevr -#: guix-git/doc/guix.texi:22577 +#: guix-git/doc/guix.texi:22939 msgid "PEM encoded X.509 SSL/TLS certificate (public key). Defaults to @samp{\" was automatically rejected:%n%r\"}." msgstr "La valeur par défaut est @samp{\"Your message to <%t> was automatically rejected:%n%r\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22687 +#: guix-git/doc/guix.texi:23049 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string recipient-delimiter" msgstr "{paramètre de @code{dovecot-configuration}} string recipient-delimiter" #. type: deftypevr -#: guix-git/doc/guix.texi:22691 +#: guix-git/doc/guix.texi:23053 msgid "Delimiter character between local-part and detail in email address. Defaults to @samp{\"+\"}." msgstr "Caractère de délimitation entre la partie locale et le détail des adresses de courriel. La valeur par défaut est @samp{\"+\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22693 +#: guix-git/doc/guix.texi:23055 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string lda-original-recipient-header" msgstr "{paramètre de @code{dovecot-configuration}} string lda-original-recipient-header" #. type: deftypevr -#: guix-git/doc/guix.texi:22699 +#: guix-git/doc/guix.texi:23061 msgid "Header where the original recipient address (SMTP's RCPT TO: address) is taken from if not available elsewhere. With dovecot-lda -a parameter overrides this. A commonly used header for this is X-Original-To. Defaults to @samp{\"\"}." msgstr "En-tête où l'adresse du destinataire d'origine (l'adresse RCPT TO de SMTP) est récupérée si elle n'est pas disponible ailleurs. Le paramètre -a de dovecot-lda le remplace. L'en-tête couramment utilisée pour cela est X-Original-To. La valeur par défaut est @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22701 +#: guix-git/doc/guix.texi:23063 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean lda-mailbox-autocreate?" msgstr "{paramètre de @code{dovecot-configuration}} boolean lda-mailbox-autocreate?" #. type: deftypevr -#: guix-git/doc/guix.texi:22705 +#: guix-git/doc/guix.texi:23067 msgid "Should saving a mail to a nonexistent mailbox automatically create it?. Defaults to @samp{#f}." msgstr "Sauvegarder un courriel dans un fichier qui n'existe pas devrait-il le créer ? La valeur par défaut est @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22707 +#: guix-git/doc/guix.texi:23069 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean lda-mailbox-autosubscribe?" msgstr "{paramètre de @code{dovecot-configuration}} boolean lda-mailbox-autosubscribe?" #. type: deftypevr -#: guix-git/doc/guix.texi:22711 +#: guix-git/doc/guix.texi:23073 msgid "Should automatically created mailboxes be also automatically subscribed?. Defaults to @samp{#f}." msgstr "Devrait-on aussi se souscrire aux boîtes aux lettres nouvellement créées ? La valeur par défaut est @samp{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:22713 +#: guix-git/doc/guix.texi:23075 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer imap-max-line-length" msgstr "{paramètre de @code{dovecot-configuration}} non-negative-integer imap-max-line-length" #. type: deftypevr -#: guix-git/doc/guix.texi:22719 +#: guix-git/doc/guix.texi:23081 msgid "Maximum IMAP command line length. Some clients generate very long command lines with huge mailboxes, so you may need to raise this if you get \"Too long argument\" or \"IMAP command line too large\" errors often. Defaults to @samp{64000}." msgstr "Longueur maximale de la ligne de commande IMAP. Certains clients génèrent des lignes de commandes très longues avec des boîtes aux lettres énormes, donc vous pourriez avoir besoin d'augmenter cette limite si vous obtenez les erreurs « Too long argument » ou « IMAP command line too large ». La valeur par défaut est @samp{64000}." #. type: deftypevr -#: guix-git/doc/guix.texi:22721 +#: guix-git/doc/guix.texi:23083 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-logout-format" msgstr "{paramètre de @code{dovecot-configuration}} string imap-logout-format" #. type: deftypevr -#: guix-git/doc/guix.texi:22723 +#: guix-git/doc/guix.texi:23085 msgid "IMAP logout format string:" msgstr "Format de la chaîne de déconnexion IMAP :" #. type: item -#: guix-git/doc/guix.texi:22724 +#: guix-git/doc/guix.texi:23086 #, no-wrap msgid "%i" msgstr "%i" #. type: table -#: guix-git/doc/guix.texi:22726 +#: guix-git/doc/guix.texi:23088 msgid "total number of bytes read from client" msgstr "nombre d'octets lus par le client" #. type: item -#: guix-git/doc/guix.texi:22726 +#: guix-git/doc/guix.texi:23088 #, no-wrap msgid "%o" msgstr "%o" #. type: table -#: guix-git/doc/guix.texi:22728 +#: guix-git/doc/guix.texi:23090 msgid "total number of bytes sent to client." msgstr "nombre total d'octets envoyés au client." #. type: deftypevr -#: guix-git/doc/guix.texi:22731 +#: guix-git/doc/guix.texi:23093 msgid "See @file{doc/wiki/Variables.txt} for a list of all the variables you can use. Defaults to @samp{\"in=%i out=%o deleted=%@{deleted@} expunged=%@{expunged@} trashed=%@{trashed@} hdr_count=%@{fetch_hdr_count@} hdr_bytes=%@{fetch_hdr_bytes@} body_count=%@{fetch_body_count@} body_bytes=%@{fetch_body_bytes@}\"}." msgstr "Voir @file{doc/wiki/Variables.txt} pour une liste de toutes les variables utilisables. La valeur par défaut est @samp{\"in=%i out=%o deleted=%@{deleted@} expunged=%@{expunged@} trashed=%@{trashed@} hdr_count=%@{fetch_hdr_count@} hdr_bytes=%@{fetch_hdr_bytes@} body_count=%@{fetch_body_count@} body_bytes=%@{fetch_body_bytes@}\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22733 +#: guix-git/doc/guix.texi:23095 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-capability" msgstr "{paramètre de @code{dovecot-configuration}} string imap-capability" #. type: deftypevr -#: guix-git/doc/guix.texi:22737 +#: guix-git/doc/guix.texi:23099 msgid "Override the IMAP CAPABILITY response. If the value begins with '+', add the given capabilities on top of the defaults (e.g.@: +XFOO XBAR). Defaults to @samp{\"\"}." msgstr "Remplace la réponse CAPABILITY d'IMAP. Si la valeur commence par « + », ajoute les capacités données en haut des valeur par défaut (p.@: ex.@: +XFOO XBAR). La valeur par défaut est @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22739 +#: guix-git/doc/guix.texi:23101 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-idle-notify-interval" msgstr "{paramètre de @code{dovecot-configuration}} string imap-idle-notify-interval" #. type: deftypevr -#: guix-git/doc/guix.texi:22743 +#: guix-git/doc/guix.texi:23105 msgid "How long to wait between \"OK Still here\" notifications when client is IDLEing. Defaults to @samp{\"2 mins\"}." msgstr "Temps d'attente entre les notifications « OK Still here » lorsque le client est en IDLE. La valeur par défaut est @samp{\"2 mins\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22745 +#: guix-git/doc/guix.texi:23107 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-id-send" msgstr "{paramètre de @code{dovecot-configuration}} string imap-id-send" #. type: deftypevr -#: guix-git/doc/guix.texi:22751 +#: guix-git/doc/guix.texi:23113 msgid "ID field names and values to send to clients. Using * as the value makes Dovecot use the default value. The following fields have default values currently: name, version, os, os-version, support-url, support-email. Defaults to @samp{\"\"}." msgstr "Noms des champs ID et de leur valeur à envoyer aux clients. « * » signifie la valeur par défaut. Les champs suivants ont actuellement des valeurs par défaut : name, version, os, os-version, support-url, support-email. La valeur par défaut est @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22753 +#: guix-git/doc/guix.texi:23115 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-id-log" msgstr "{paramètre de @code{dovecot-configuration}} string imap-id-log" #. type: deftypevr -#: guix-git/doc/guix.texi:22756 +#: guix-git/doc/guix.texi:23118 msgid "ID fields sent by client to log. * means everything. Defaults to @samp{\"\"}." msgstr "Champs ID envoyés par le client à enregistrer. « * » signifie tout. La valeur par défaut est @samp{\"\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:22758 +#: guix-git/doc/guix.texi:23120 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list imap-client-workarounds" msgstr "{paramètre de @code{dovecot-configuration}} space-separated-string-list imap-client-workarounds" #. type: deftypevr -#: guix-git/doc/guix.texi:22760 +#: guix-git/doc/guix.texi:23122 msgid "Workarounds for various client bugs:" msgstr "Contournements pour divers bogues de certains client :" #. type: item -#: guix-git/doc/guix.texi:22762 +#: guix-git/doc/guix.texi:23124 #, no-wrap msgid "delay-newmail" msgstr "delay-newmail" #. type: table -#: guix-git/doc/guix.texi:22769 +#: guix-git/doc/guix.texi:23131 msgid "Send EXISTS/RECENT new mail notifications only when replying to NOOP and CHECK commands. Some clients ignore them otherwise, for example OSX Mail (' before setting it here, to get a feel for which cipher suites you will get. After setting this option, it is recommend that you inspect your Murmur log to ensure that Murmur is using the cipher suites that you expected it to." msgstr "Nous vous recommandons d'essayer votre chaîne de suites de chiffrements avec « openssl ciphers » avant de l'indiquer ici, pour avoir une idée des suites de chiffrement que vous aurez. Après avoir indiqué cette option, nous vous recommandons d'inspecter les journaux de Murmur pour vous assurer que Murmur utilise les suites de chiffrements auxquelles vous vous attendez." #. type: table -#: guix-git/doc/guix.texi:24159 +#: guix-git/doc/guix.texi:24521 msgid "Note: Changing this option may impact the backwards compatibility of your Murmur server, and can remove the ability for older Mumble clients to be able to connect to it." msgstr "Remarque : modifier cette option peut impacter la rétrocompatibilité de votre serveur Murmur, et peut empêcher que des clients Mumble anciens se connectent." #. type: item -#: guix-git/doc/guix.texi:24160 +#: guix-git/doc/guix.texi:24522 #, no-wrap msgid "@code{public-registration} (default: @code{#f})" msgstr "@code{public-registration} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:24162 +#: guix-git/doc/guix.texi:24524 msgid "Must be a @code{} record or @code{#f}." msgstr "Doit être un enregistrement @code{} ou @code{#f}." #. type: table -#: guix-git/doc/guix.texi:24167 +#: guix-git/doc/guix.texi:24529 msgid "You can optionally register your server in the public server list that the @code{mumble} client shows on startup. You cannot register your server if you have set a @code{server-password}, or set @code{allow-ping} to @code{#f}." msgstr "Vous pouvez aussi enregistrer votre serveur dans la liste des serveurs publiques que le client @code{mumble} affiche au démarrage. Vous ne pouvez pas enregistrer votre serveur si vous avez un @code{server-password} ou @code{allow-ping} à @code{#f}." #. type: table -#: guix-git/doc/guix.texi:24169 +#: guix-git/doc/guix.texi:24531 msgid "It might take a few hours until it shows up in the public list." msgstr "Cela peut prendre quelques heures avant d'arriver sur la liste publique." #. type: item -#: guix-git/doc/guix.texi:24170 guix-git/doc/guix.texi:26407 +#: guix-git/doc/guix.texi:24532 guix-git/doc/guix.texi:26744 #, no-wrap msgid "@code{file} (default: @code{#f})" msgstr "@code{file} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:24172 +#: guix-git/doc/guix.texi:24534 msgid "Optional alternative override for this configuration." msgstr "Version alternative de cette configuration : si vous indiquez quelque chose, le reste est ignoré." #. type: deftp -#: guix-git/doc/guix.texi:24175 +#: guix-git/doc/guix.texi:24537 #, no-wrap msgid "{Data Type} murmur-public-registration-configuration" msgstr "{Type de données} murmur-public-registration-configuration" #. type: deftp -#: guix-git/doc/guix.texi:24177 +#: guix-git/doc/guix.texi:24539 msgid "Configuration for public registration of a murmur service." msgstr "Configuration pour l'enregistrement public du service murmur." #. type: table -#: guix-git/doc/guix.texi:24181 +#: guix-git/doc/guix.texi:24543 msgid "This is a display name for your server. Not to be confused with the hostname." msgstr "C'est le nom d'affichage de votre serveur. Ne pas le confondre avec le nom d'hôte." #. type: itemx -#: guix-git/doc/guix.texi:24182 guix-git/doc/guix.texi:33135 -#: guix-git/doc/guix.texi:34304 +#: guix-git/doc/guix.texi:24544 guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:34743 #, no-wrap msgid "password" msgstr "password" #. type: table -#: guix-git/doc/guix.texi:24185 +#: guix-git/doc/guix.texi:24547 msgid "A password to identify your registration. Subsequent updates will need the same password. Don't lose your password." msgstr "Un mot de passe pour identifier votre enregistrement. Les mises à jours suivantes devront utiliser le même mot de passe. Ne le perdez pas." #. type: table -#: guix-git/doc/guix.texi:24189 +#: guix-git/doc/guix.texi:24551 msgid "This should be a @code{http://} or @code{https://} link to your web site." msgstr "Cela devrait être le lien @code{http://} ou @code{https://} vers votre site web." #. type: item -#: guix-git/doc/guix.texi:24190 guix-git/doc/guix.texi:27292 +#: guix-git/doc/guix.texi:24552 guix-git/doc/guix.texi:27629 #, no-wrap msgid "@code{hostname} (default: @code{#f})" msgstr "@code{hostname} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:24193 +#: guix-git/doc/guix.texi:24555 msgid "By default your server will be listed by its IP address. If it is set your server will be linked by this host name instead." msgstr "Par défaut votre serveur sera listé par son adresse IP. Si cette option est indiquée votre serveur sera listé par son nom d'hôte." #. type: Plain text -#: guix-git/doc/guix.texi:24203 +#: guix-git/doc/guix.texi:24565 msgid "The @code{(gnu services file-sharing)} module provides services that assist with transferring files over peer-to-peer file-sharing networks." msgstr "Le module @code{(gnu services file-sharing)} fournit des services qui aident au transfert de fichiers sur des réseaux de partage en pair-à-pair." #. type: subsubheading -#: guix-git/doc/guix.texi:24204 +#: guix-git/doc/guix.texi:24566 #, no-wrap msgid "Transmission Daemon Service" msgstr "Service du démon Transmission" #. type: Plain text -#: guix-git/doc/guix.texi:24212 +#: guix-git/doc/guix.texi:24574 msgid "@uref{https://transmissionbt.com/, Transmission} is a flexible BitTorrent client that offers a variety of graphical and command-line interfaces. A @code{transmission-daemon-service-type} service provides Transmission's headless variant, @command{transmission-daemon}, as a system service, allowing users to share files via BitTorrent even when they are not logged in." msgstr "@uref{https://transmissionbt.com/, Transmission} est un client BitTorrent flexibe qui propose un éventail d'interfaces graphiques et en ligne de commande. Un service @code{transmission-daemon-service-type} fournit la variante sans interface de Transmission, @command{transmission-daemon}, en tant que service du système, ce qui permet aux utilisateurs de partager des fichiers via BitTorrent même lorsqu'ils ne sont pas connectés." #. type: deffn -#: guix-git/doc/guix.texi:24213 +#: guix-git/doc/guix.texi:24575 #, no-wrap msgid "{Scheme Variable} transmission-daemon-service-type" msgstr "{Variable Scheme} transmission-daemon-service-type" #. type: deffn -#: guix-git/doc/guix.texi:24217 +#: guix-git/doc/guix.texi:24579 msgid "The service type for the Transmission Daemon BitTorrent client. Its value must be a @code{transmission-daemon-configuration} object as in this example:" msgstr "Le type de service pour le démon du client BitTorrent Transmission. Sa valeur doit être un enregistrement @code{trasnmission-daemon-configuration} comme dans cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:24228 +#: guix-git/doc/guix.texi:24590 #, no-wrap msgid "" "(service transmission-daemon-service-type\n" @@ -45830,7 +46493,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:24233 +#: guix-git/doc/guix.texi:24595 #, no-wrap msgid "" " ;; Accept requests from this and other hosts on the\n" @@ -45846,7 +46509,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:24237 +#: guix-git/doc/guix.texi:24599 #, no-wrap msgid "" " ;; Limit bandwidth use during work hours\n" @@ -45860,7 +46523,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:24244 +#: guix-git/doc/guix.texi:24606 #, no-wrap msgid "" " (alt-speed-time-enabled? #t)\n" @@ -45878,49 +46541,49 @@ msgstr "" " (+ (* 60 (+ 12 5)) 30)))) ; 17:30\n" #. type: Plain text -#: guix-git/doc/guix.texi:24257 +#: guix-git/doc/guix.texi:24619 msgid "Once the service is started, users can interact with the daemon through its Web interface (at @code{http://localhost:9091/}) or by using the @command{transmission-remote} command-line tool, available in the @code{transmission} package. (Emacs users may want to also consider the @code{emacs-transmission} package.) Both communicate with the daemon through its remote procedure call (RPC) interface, which by default is available to all users on the system; you may wish to change this by assigning values to the @code{rpc-authentication-required?}, @code{rpc-username} and @code{rpc-password} settings, as shown in the example above and documented further below." msgstr "Une fois le service démarré, vous pouvez interagir avec le démon à travers son interface web (sur @code{https://localhost:9091} ou en utilisant la ligne de commande @command{transmission-remote}, disponible dans le paquet @code{transmission}. (les utilisateurs d'Emacs peuvent aussi regarder le paquet @code{emacs-transmission}). Les deux communiquent avec le démon à travers son interface d'appel de procédure distante (RPC), qui est disponible par défaut pour tous les utilisateurs du système ; vous voudrez peut-être changer cela en indiquant des valeurs dans les paramètres @code{rpc-authentication-required?}, @code{rpc-username} et @code{rpc-password}, comme cela est montré et documenté plus bas." #. type: Plain text -#: guix-git/doc/guix.texi:24265 +#: guix-git/doc/guix.texi:24627 msgid "The value for @code{rpc-password} must be a password hash of the type generated and used by Transmission clients. This can be copied verbatim from an existing @file{settings.json} file, if another Transmission client is already being used. Otherwise, the @code{transmission-password-hash} and @code{transmission-random-salt} procedures provided by this module can be used to obtain a suitable hash value." msgstr "La valeur de @code{rpc-password} doit toujours être un hash de mot de passe du type généré et utilisé par les clients Transmission. Il peut être copié directement d'un fichier @file{settings.json} existant, si au autre client Transmission est déjà utilisé. Sinon, les procédures @code{transmission-password-hash} et @code{transmission-random-salt} fournies par ce module peuvent être utilisées pour obtenir un hash convenable." #. type: deffn -#: guix-git/doc/guix.texi:24266 +#: guix-git/doc/guix.texi:24628 #, no-wrap msgid "{Scheme Procedure} transmission-password-hash @var{password} @var{salt}" msgstr "{Procédure Scheme} transmission-password-hash @var{password} @var{salt}" #. type: deffn -#: guix-git/doc/guix.texi:24270 +#: guix-git/doc/guix.texi:24632 msgid "Returns a string containing the result of hashing @var{password} together with @var{salt}, in the format recognized by Transmission clients for their @code{rpc-password} configuration setting." msgstr "Renvoie une chaîne contenant le résultat du hash de @var{password} avec @var{salt}, au format reconnu par les clients Transmission pour leur paramètre @code{rpc-password}." #. type: deffn -#: guix-git/doc/guix.texi:24274 +#: guix-git/doc/guix.texi:24636 msgid "@var{salt} must be an eight-character string. The @code{transmission-random-salt} procedure can be used to generate a suitable salt value at random." msgstr "@var{salt} doit être une chaîne de huit caractères. La procédure @code{transmission-random-salt} est utile pour générer une valeur correcte au hasard." #. type: deffn -#: guix-git/doc/guix.texi:24276 +#: guix-git/doc/guix.texi:24638 #, no-wrap msgid "{Scheme Procedure} transmission-random-salt" msgstr "{Procédure Scheme} transmission-random-salt" #. type: deffn -#: guix-git/doc/guix.texi:24280 +#: guix-git/doc/guix.texi:24642 msgid "Returns a string containing a random, eight-character salt value of the type generated and used by Transmission clients, suitable for passing to the @code{transmission-password-hash} procedure." msgstr "Renvoie une chaîne contenant une valeur de sel à huit caractères aléatoires du type généré et utilisé par les clients de Transmission, utilisable avec la procédure @code{transmission-password-hash}." #. type: Plain text -#: guix-git/doc/guix.texi:24286 +#: guix-git/doc/guix.texi:24648 msgid "These procedures are accessible from within a Guile REPL started with the @command{guix repl} command (@pxref{Invoking guix repl}). This is useful for obtaining a random salt value to provide as the second parameter to `transmission-password-hash`, as in this example session:" msgstr "Ces procédures sont disponibles dans la REPL Guile démarrée avec @command{guix repl} (@pxref{Invoking guix repl}). C'est utile pour obtenir une valeur de sel aléatoire à donner au second paramètres de @code{transmission-password-hash} comme dans cet exemple de session :" #. type: example -#: guix-git/doc/guix.texi:24292 +#: guix-git/doc/guix.texi:24654 #, no-wrap msgid "" "$ guix repl\n" @@ -45934,12 +46597,12 @@ msgstr "" "$1 = \"uKd1uMs9\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:24295 +#: guix-git/doc/guix.texi:24657 msgid "Alternatively, a complete password hash can generated in a single step:" msgstr "Autrement, vous pouvez générer un hash de mot de passe complet en une seule étape :" #. type: example -#: guix-git/doc/guix.texi:24300 +#: guix-git/doc/guix.texi:24662 #, no-wrap msgid "" "scheme@@(guix-user)> (transmission-password-hash \"transmission\"\n" @@ -45951,480 +46614,480 @@ msgstr "" "$2 = \"@{c8bbc6d1740cd8dc819a6e25563b67812c1c19c9VtFPfdsX\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:24305 +#: guix-git/doc/guix.texi:24667 msgid "The resulting string can be used as-is for the value of @code{rpc-password}, allowing the password to be kept hidden even in the operating-system configuration." msgstr "La chaîne qui en résulte peut être utilisée telle quelle comme valeur de @code{rpc-password}, ce qui permet de garder les mots de passes cachés même dans la configuration du système d'exploitation." #. type: Plain text -#: guix-git/doc/guix.texi:24314 +#: guix-git/doc/guix.texi:24676 msgid "Torrent files downloaded by the daemon are directly accessible only to users in the ``transmission'' user group, who receive read-only access to the directory specified by the @code{download-dir} configuration setting (and also the directory specified by @code{incomplete-dir}, if @code{incomplete-dir-enabled?} is @code{#t}). Downloaded files can be moved to another directory or deleted altogether using @command{transmission-remote} with its @code{--move} and @code{--remove-and-delete} options." msgstr "Les fichiers torrent téléchargés par le démon ne sont directement accessibles qu'aux utilisateurs dans le groupe « transmission », qui reçoivent l'accès en lecture seule au répertoire spécifié dans le paramètre @code{download-dir} (et aussi le répertoire spécifié par @code{incomplete-dir} si @code{incomplete-dir-enabled?} vaut @code{#t}). Les fichiers téléchargés peuvent être déplacés vers un autre répertoire ou supprimés complètement avec @command{transmission-remote} avec les options @code{--move} et @code{--remove-and-delete}." #. type: Plain text -#: guix-git/doc/guix.texi:24321 +#: guix-git/doc/guix.texi:24683 msgid "If the @code{watch-dir-enabled?} setting is set to @code{#t}, users in the ``transmission'' group are able also to place @file{.torrent} files in the directory specified by @code{watch-dir} to have the corresponding torrents added by the daemon. (The @code{trash-original-torrent-files?} setting controls whether the daemon deletes these files after processing them.)" msgstr "Si le paramètre @code{watch-dir-enabled?} vaut @code{#t}, les utilisateurs du groupe « transmission » peuvent aussi placer des fichiers @file{.torrent} dans le répertoire spécifié par @code{watch-dir} pour que les torrents correspondants soient ajoutés par le démon. Le paramètre @code{trash-original-torrent-files?} indique si le démon doit supprimer ces fichiers après les avoir traités." #. type: Plain text -#: guix-git/doc/guix.texi:24326 +#: guix-git/doc/guix.texi:24688 msgid "Some of the daemon's configuration settings can be changed temporarily by @command{transmission-remote} and similar tools. To undo these changes, use the service's @code{reload} action to have the daemon reload its settings from disk:" msgstr "Certains paramètres de configuration du démon peuvent être changés temporairement par @command{transmission-remote} et des outils similaires. Pour annuler ces changements, utiliser l'action @code{reload} du service pour que le démon recharge ses paramètres sur disque :" #. type: example -#: guix-git/doc/guix.texi:24329 +#: guix-git/doc/guix.texi:24691 #, no-wrap msgid "# herd reload transmission-daemon\n" msgstr "# herd reload transmission-daemon\n" #. type: Plain text -#: guix-git/doc/guix.texi:24333 +#: guix-git/doc/guix.texi:24695 msgid "The full set of available configuration settings is defined by the @code{transmission-daemon-configuration} data type." msgstr "La liste complète des paramètres disponibles est définie par le type de données @code{transmission-daemon-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:24334 +#: guix-git/doc/guix.texi:24696 #, no-wrap msgid "{Data Type} transmission-daemon-configuration" msgstr "{Type de données} transmission-daemon-configuration" #. type: deftp -#: guix-git/doc/guix.texi:24338 +#: guix-git/doc/guix.texi:24700 msgid "The data type representing configuration settings for Transmission Daemon. These correspond directly to the settings recognized by Transmission clients in their @file{settings.json} file." msgstr "Le type de données représentant les paramètres de configuration du démon Transmission. Ils correspondent directement aux paramètres reconnus par les clients Transmission dans le fichier @file{settings.json}." #. type: Plain text -#: guix-git/doc/guix.texi:24352 +#: guix-git/doc/guix.texi:24714 msgid "Available @code{transmission-daemon-configuration} fields are:" msgstr "Les champs de @code{transmission-daemon-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:24353 +#: guix-git/doc/guix.texi:24715 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} package transmission" msgstr "{paramètre de @code{transmission-daemon-configuration}} package transmission" #. type: deftypevr -#: guix-git/doc/guix.texi:24355 +#: guix-git/doc/guix.texi:24717 msgid "The Transmission package to use." msgstr "Le paquet Transmission à utiliser." #. type: deftypevr -#: guix-git/doc/guix.texi:24358 +#: guix-git/doc/guix.texi:24720 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer stop-wait-period" msgstr "{paramètre de @code{transmission-daemon-configuration}} non-negative-integer stop-wait-period" #. type: deftypevr -#: guix-git/doc/guix.texi:24364 +#: guix-git/doc/guix.texi:24726 msgid "The period, in seconds, to wait when stopping the service for @command{transmission-daemon} to exit before killing its process. This allows the daemon time to complete its housekeeping and send a final update to trackers as it shuts down. On slow hosts, or hosts with a slow network connection, this value may need to be increased." msgstr "Le temps d'attente à l'arrêt du service avant que @command{transmission-daemon} ne termine et tue ses processus. Cela permet au démon de tout mettre en ordre et d'envoyer une dernière mise à jour aux trackers avant de s'arrêter. Vous devrez peut-être augmenter cette valeur pour les hôtes lents, ou les hôtes avec une connexion réseau lente." #. type: deftypevr -#: guix-git/doc/guix.texi:24366 guix-git/doc/guix.texi:24738 -#: guix-git/doc/guix.texi:32101 guix-git/doc/guix.texi:32336 -#: guix-git/doc/guix.texi:32344 guix-git/doc/guix.texi:32352 +#: guix-git/doc/guix.texi:24728 guix-git/doc/guix.texi:25100 +#: guix-git/doc/guix.texi:32466 guix-git/doc/guix.texi:32701 +#: guix-git/doc/guix.texi:32709 guix-git/doc/guix.texi:32717 msgid "Defaults to @samp{10}." msgstr "La valeur par défaut est @samp{10}." #. type: deftypevr -#: guix-git/doc/guix.texi:24369 +#: guix-git/doc/guix.texi:24731 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string download-dir" msgstr "{paramètre de @code{transmission-daemon-configuration}} string download-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:24371 +#: guix-git/doc/guix.texi:24733 msgid "The directory to which torrent files are downloaded." msgstr "Le répertoire dans lequel les fichiers torrent sont téléchargés." #. type: deftypevr -#: guix-git/doc/guix.texi:24373 +#: guix-git/doc/guix.texi:24735 msgid "Defaults to @samp{\"/var/lib/transmission-daemon/downloads\"}." msgstr "La valeur par défaut est @samp{\"/var/lib/transmission-daemon/downloads\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:24376 +#: guix-git/doc/guix.texi:24738 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean incomplete-dir-enabled?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean incomplete-dir-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24381 +#: guix-git/doc/guix.texi:24743 msgid "If @code{#t}, files will be held in @code{incomplete-dir} while their torrent is being downloaded, then moved to @code{download-dir} once the torrent is complete. Otherwise, files for all torrents (including those still being downloaded) will be placed in @code{download-dir}." msgstr "Si la valeur est @code{#t}, les fichiers seront gardés dans @code{incomplete-dir} tant que leur torrent est en cours de téléchargement, puis déplacés vers @code{download-dir} une fois le torrent terminé. Sinon, les fichiers pour tous les torrents (dont ceux qui sont toujours en cours) seront placés dans @code{download-dir}." #. type: deftypevr -#: guix-git/doc/guix.texi:24386 +#: guix-git/doc/guix.texi:24748 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string incomplete-dir" msgstr "{paramètre de @code{transmission-daemon-configuration}} maybe-string incomplete-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:24389 +#: guix-git/doc/guix.texi:24751 msgid "The directory in which files from incompletely downloaded torrents will be held when @code{incomplete-dir-enabled?} is @code{#t}." msgstr "Le répertoire dans lequel les fichiers des torrents incomplets seront gardé si @code{incomplete-dir-enabled?} vaut @code{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:24394 +#: guix-git/doc/guix.texi:24756 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} umask umask" msgstr "{paramètre de @code{transmission-daemon-configuration}} umask umask" #. type: deftypevr -#: guix-git/doc/guix.texi:24397 +#: guix-git/doc/guix.texi:24759 msgid "The file mode creation mask used for downloaded files. (See the @command{umask} man page for more information.)" msgstr "Le masque de droits d’accès à la création des fichiers téléchargés. voir la page de manuel de @command{umask} pour plus d'informations." #. type: deftypevr -#: guix-git/doc/guix.texi:24399 +#: guix-git/doc/guix.texi:24761 msgid "Defaults to @samp{18}." msgstr "La valeur par défaut est @samp{18}." #. type: deftypevr -#: guix-git/doc/guix.texi:24402 +#: guix-git/doc/guix.texi:24764 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rename-partial-files?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean name-partial-files?" #. type: deftypevr -#: guix-git/doc/guix.texi:24405 +#: guix-git/doc/guix.texi:24767 msgid "When @code{#t}, ``.part'' is appended to the name of partially downloaded files." msgstr "Lorsque la valeur est @code{#t}, « .part » est ajouté à la fin du nom des fichiers partiellement téléchargés." #. type: deftypevr -#: guix-git/doc/guix.texi:24410 +#: guix-git/doc/guix.texi:24772 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} preallocation-mode preallocation" msgstr "{paramètre de @code{transmission-daemon-configuration}} preallocation-mode preallocation" #. type: deftypevr -#: guix-git/doc/guix.texi:24415 +#: guix-git/doc/guix.texi:24777 msgid "The mode by which space should be preallocated for downloaded files, one of @code{none}, @code{fast} (or @code{sparse}) and @code{full}. Specifying @code{full} will minimize disk fragmentation at a cost to file-creation speed." msgstr "Le mode de préallocation d'espace pour les fichiers téléchargés, parmi @code{none}, @code{fast} (ou @code{sparse}) ou @code{full}. Spécifiez @code{full} pour minimiser la fragmentation du disque en sacrifiant un peu de vitesse de création du fichier." #. type: deftypevr -#: guix-git/doc/guix.texi:24417 +#: guix-git/doc/guix.texi:24779 msgid "Defaults to @samp{fast}." msgstr "La valeur par défaut est @samp{fast}." #. type: deftypevr -#: guix-git/doc/guix.texi:24420 +#: guix-git/doc/guix.texi:24782 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean watch-dir-enabled?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean watch-dir-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24425 +#: guix-git/doc/guix.texi:24787 msgid "If @code{#t}, the directory specified by @code{watch-dir} will be watched for new @file{.torrent} files and the torrents they describe added automatically (and the original files removed, if @code{trash-original-torrent-files?} is @code{#t})." msgstr "Si la valeur est @code{#t}, le répertoire spécifié par @code{watch-dir} sera surveillé en attendant de nouveaux fichiers @file{.torrent} et les torrents qu'ils décrivent seront ajoutés automatiquement (et le fichier d'origine supprimé, si @code{trash-original-torrent-files?} vaut @code{#t})." #. type: deftypevr -#: guix-git/doc/guix.texi:24430 +#: guix-git/doc/guix.texi:24792 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string watch-dir" msgstr "{paramètre de @code{transmission-daemon-configuration}} maybe-string watch-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:24433 +#: guix-git/doc/guix.texi:24795 msgid "The directory to be watched for @file{.torrent} files indicating new torrents to be added, when @code{watch-dir-enabled} is @code{#t}." msgstr "Le répertoire à surveiller pour les fichiers @file{.torrent} indiquant de nouveaux torrents à ajouter, lorsque @code{watch-dir-enabled} vaut @code{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:24438 +#: guix-git/doc/guix.texi:24800 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean trash-original-torrent-files?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean transh-original-torrent-files?" #. type: deftypevr -#: guix-git/doc/guix.texi:24442 +#: guix-git/doc/guix.texi:24804 msgid "When @code{#t}, @file{.torrent} files will be deleted from the watch directory once their torrent has been added (see @code{watch-directory-enabled?})." msgstr "Lorsque la valeur est @code{#t}, les fichiers @file{.torrent} seront supprimés du répertoire de surveillance une fois leur torrent ajouté (voir @code{watch-directory-enabled?})." #. type: deftypevr -#: guix-git/doc/guix.texi:24447 +#: guix-git/doc/guix.texi:24809 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean speed-limit-down-enabled?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean speed-limit-down-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24450 +#: guix-git/doc/guix.texi:24812 msgid "When @code{#t}, the daemon's download speed will be limited to the rate specified by @code{speed-limit-down}." msgstr "Lorsque la valeur est @code{#t}, la vitesse de téléchargement du démon sera limitée par la vitesse spécifiée par @code{speed-limit-down}." #. type: deftypevr -#: guix-git/doc/guix.texi:24455 +#: guix-git/doc/guix.texi:24817 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer speed-limit-down" msgstr "{paramètre de @code{transmission-daemon-configuration}} non-negative-integer speed-limit-down" #. type: deftypevr -#: guix-git/doc/guix.texi:24457 +#: guix-git/doc/guix.texi:24819 msgid "The default global-maximum download speed, in kilobytes per second." msgstr "La vitesse de téléchargement par défaut maximale, en kilooctets par seconde." #. type: deftypevr -#: guix-git/doc/guix.texi:24462 +#: guix-git/doc/guix.texi:24824 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean speed-limit-up-enabled?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean speed-limit-up-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24465 +#: guix-git/doc/guix.texi:24827 msgid "When @code{#t}, the daemon's upload speed will be limited to the rate specified by @code{speed-limit-up}." msgstr "Lorsque la valeur est @code{#t}, la vitesse de téléversement du démon sera limitée par la vitesse spécifiée par @code{speed-limit-up}." #. type: deftypevr -#: guix-git/doc/guix.texi:24470 +#: guix-git/doc/guix.texi:24832 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer speed-limit-up" msgstr "{paramètre de @code{transmission-daemon-configuration}} non-negative-integer speed-limit-up" #. type: deftypevr -#: guix-git/doc/guix.texi:24472 +#: guix-git/doc/guix.texi:24834 msgid "The default global-maximum upload speed, in kilobytes per second." msgstr "La vitesse globale de téléversement maximale par défaut, en kilooctets par seconde." #. type: deftypevr -#: guix-git/doc/guix.texi:24477 +#: guix-git/doc/guix.texi:24839 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean alt-speed-enabled?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean alt-speed-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24483 +#: guix-git/doc/guix.texi:24845 msgid "When @code{#t}, the alternate speed limits @code{alt-speed-down} and @code{alt-speed-up} are used (in place of @code{speed-limit-down} and @code{speed-limit-up}, if they are enabled) to constrain the daemon's bandwidth usage. This can be scheduled to occur automatically at certain times during the week; see @code{alt-speed-time-enabled?}." msgstr "Lorsque la valeur est @code{#t}, les limites de vitesse alternatives @code{alt-speed-down} et @code{alt-speed-up} sont utilisée (au lieu de @code{speed-limit-down} et @code{speed-limit-up}, si elles sont activées) pour contraindre l'utilisation de la bande passante par le démon. Elles peuvent être programmées automatiquement à certains moment de la semaine ; voir @code{alt-speed-time-enabled?}." #. type: deftypevr -#: guix-git/doc/guix.texi:24488 +#: guix-git/doc/guix.texi:24850 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-down" msgstr "{paramètre de @code{transmission-daemon-configuration}} non-negative-integer alt-speed-down" #. type: deftypevr -#: guix-git/doc/guix.texi:24490 +#: guix-git/doc/guix.texi:24852 msgid "The alternate global-maximum download speed, in kilobytes per second." msgstr "La vitesse de téléchargement globale alternative maximale, en kilooctets par seconde." #. type: deftypevr -#: guix-git/doc/guix.texi:24492 guix-git/doc/guix.texi:24499 -#: guix-git/doc/guix.texi:24671 guix-git/doc/guix.texi:32108 -#: guix-git/doc/guix.texi:32123 +#: guix-git/doc/guix.texi:24854 guix-git/doc/guix.texi:24861 +#: guix-git/doc/guix.texi:25033 guix-git/doc/guix.texi:32473 +#: guix-git/doc/guix.texi:32488 msgid "Defaults to @samp{50}." msgstr "La valeur par défaut est @samp{50}." #. type: deftypevr -#: guix-git/doc/guix.texi:24495 +#: guix-git/doc/guix.texi:24857 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-up" msgstr "{paramètre de @code{transmission-daemon-configuration}} non-negative-integer alt-speed-up" #. type: deftypevr -#: guix-git/doc/guix.texi:24497 +#: guix-git/doc/guix.texi:24859 msgid "The alternate global-maximum upload speed, in kilobytes per second." msgstr "La vitesse de téléversement globale alternative maximale, en kilooctets par seconde." #. type: deftypevr -#: guix-git/doc/guix.texi:24502 +#: guix-git/doc/guix.texi:24864 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean alt-speed-time-enabled?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean alt-speed-time-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24507 +#: guix-git/doc/guix.texi:24869 msgid "When @code{#t}, the alternate speed limits @code{alt-speed-down} and @code{alt-speed-up} will be enabled automatically during the periods specified by @code{alt-speed-time-day}, @code{alt-speed-time-begin} and @code{alt-time-speed-end}." msgstr "Lorsque la valeur est @code{#t}, les limites de vitesses alternatives @code{alt-speed-down} et @code{alt-speed-up} seront activées automatiquement aux périodes spécifiées par @code{alt-speed-time-day}, @code{alt-speed-time-begin} et @code{alt-time-speed-end}." #. type: deftypevr -#: guix-git/doc/guix.texi:24512 +#: guix-git/doc/guix.texi:24874 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} day-list alt-speed-time-day" msgstr "{paramètre de @code{transmission-daemon-configuration}} day-list alt-speed-time-day" #. type: deftypevr -#: guix-git/doc/guix.texi:24517 +#: guix-git/doc/guix.texi:24879 msgid "The days of the week on which the alternate-speed schedule should be used, specified either as a list of days (@code{sunday}, @code{monday}, and so on) or using one of the symbols @code{weekdays}, @code{weekends} or @code{all}." msgstr "Les jours de la semaine pendant lesquels le programme de vitesse alternative devrait être utilisé, spécifié soit comme une liste de jours (@code{sunday}, @code{monday}, etc), soit en utilisant les symboles @code{weekdays}, @code{weekends} ou @code{all}." #. type: deftypevr -#: guix-git/doc/guix.texi:24519 +#: guix-git/doc/guix.texi:24881 msgid "Defaults to @samp{all}." msgstr "La valeur par défaut est @samp{all}." #. type: deftypevr -#: guix-git/doc/guix.texi:24522 +#: guix-git/doc/guix.texi:24884 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-time-begin" msgstr "{paramètre de @code{transmission-daemon-configuration}} non-negative-integer alt-speed-time-begin" #. type: deftypevr -#: guix-git/doc/guix.texi:24525 +#: guix-git/doc/guix.texi:24887 msgid "The time of day at which to enable the alternate speed limits, expressed as a number of minutes since midnight." msgstr "Le moment de la journée auquel activer les limites de vitesse alternatives, en nombre de minutes à partir de minuit." #. type: deftypevr -#: guix-git/doc/guix.texi:24527 +#: guix-git/doc/guix.texi:24889 msgid "Defaults to @samp{540}." msgstr "La valeur par défaut est @samp{540}." #. type: deftypevr -#: guix-git/doc/guix.texi:24530 +#: guix-git/doc/guix.texi:24892 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-time-end" msgstr "{paramètre de @code{transmission-daemon-configuration}} non-negative-integer alt-speed-time-end" #. type: deftypevr -#: guix-git/doc/guix.texi:24533 +#: guix-git/doc/guix.texi:24895 msgid "The time of day at which to disable the alternate speed limits, expressed as a number of minutes since midnight." msgstr "Le moment de la journée auquel désactiver les limites de vitesses alternatives, en nombre de minutes à partir de minuit." #. type: deftypevr -#: guix-git/doc/guix.texi:24535 +#: guix-git/doc/guix.texi:24897 msgid "Defaults to @samp{1020}." msgstr "La valeur par défaut est @samp{1020}." #. type: deftypevr -#: guix-git/doc/guix.texi:24538 +#: guix-git/doc/guix.texi:24900 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string bind-address-ipv4" msgstr "{paramètre de @code{transmission-daemon-configuration}} string bind-address-ipv4" #. type: deftypevr -#: guix-git/doc/guix.texi:24541 +#: guix-git/doc/guix.texi:24903 msgid "The IP address at which to listen for peer connections, or ``0.0.0.0'' to listen at all available IP addresses." msgstr "L'IP sur laquelle écouter les connexions de pairs, ou « 0.0.0.0 » pour écouter sur toutes les interfaces réseaux." #. type: deftypevr -#: guix-git/doc/guix.texi:24543 guix-git/doc/guix.texi:24846 -#: guix-git/doc/guix.texi:29969 +#: guix-git/doc/guix.texi:24905 guix-git/doc/guix.texi:25208 +#: guix-git/doc/guix.texi:30334 msgid "Defaults to @samp{\"0.0.0.0\"}." msgstr "La valeur par défaut est @samp{\"0.0.0.0\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:24546 +#: guix-git/doc/guix.texi:24908 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string bind-address-ipv6" msgstr "{paramètre de @code{transmission-daemon-configuration}} string bind-address-ipv6" #. type: deftypevr -#: guix-git/doc/guix.texi:24549 +#: guix-git/doc/guix.texi:24911 msgid "The IPv6 address at which to listen for peer connections, or ``::'' to listen at all available IPv6 addresses." msgstr "L'adresse IPv6 sur laquelle écouter les connexions de pairs, ou « :: » pour écouter sur toutes les interfaces réseaux." #. type: deftypevr -#: guix-git/doc/guix.texi:24551 +#: guix-git/doc/guix.texi:24913 msgid "Defaults to @samp{\"::\"}." msgstr "La valeur par défaut est @samp{\"::\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:24554 +#: guix-git/doc/guix.texi:24916 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean peer-port-random-on-start?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean peer-port-random-on-start?" #. type: deftypevr -#: guix-git/doc/guix.texi:24560 +#: guix-git/doc/guix.texi:24922 msgid "If @code{#t}, when the daemon starts it will select a port at random on which to listen for peer connections, from the range specified (inclusively) by @code{peer-port-random-low} and @code{peer-port-random-high}. Otherwise, it listens on the port specified by @code{peer-port}." msgstr "Si la valeur est @code{#t}, lorsque le démon démarre il choisira un port au hasard sur lequel écouter les connexions des pairs, à partir d'un intervalle spécifié (inclusivement) par @code{peer-port-random-low} et @code{peer-port-random-high}. Sinon, il écoutera sur le port spécifié par @code{peer-port}." #. type: deftypevr -#: guix-git/doc/guix.texi:24565 +#: guix-git/doc/guix.texi:24927 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port-random-low" msgstr "{paramètre de @code{transmission-daemon-configuration}} port-number peer-port-random-low" #. type: deftypevr -#: guix-git/doc/guix.texi:24568 +#: guix-git/doc/guix.texi:24930 msgid "The lowest selectable port number when @code{peer-port-random-on-start?} is @code{#t}." msgstr "Le plus petit numéro de port possible lorsque @code{peer-port-random-on-start?} vaut @code{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:24570 +#: guix-git/doc/guix.texi:24932 msgid "Defaults to @samp{49152}." msgstr "La valeur par défaut est @samp{49152}." #. type: deftypevr -#: guix-git/doc/guix.texi:24573 +#: guix-git/doc/guix.texi:24935 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port-random-high" msgstr "{paramètre de @code{transmission-daemon-configuration}} port-number peer-port-random-high" #. type: deftypevr -#: guix-git/doc/guix.texi:24576 +#: guix-git/doc/guix.texi:24938 msgid "The highest selectable port number when @code{peer-port-random-on-start} is @code{#t}." msgstr "Le plus grand numéro de port possible lorsque @code{peer-port-random-on-start} vaut @code{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:24578 +#: guix-git/doc/guix.texi:24940 msgid "Defaults to @samp{65535}." msgstr "La valeur par défaut est @samp{65535}." #. type: deftypevr -#: guix-git/doc/guix.texi:24581 +#: guix-git/doc/guix.texi:24943 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port" msgstr "{paramètre de @code{transmission-daemon-configuration}} port-number peer-port" #. type: deftypevr -#: guix-git/doc/guix.texi:24584 +#: guix-git/doc/guix.texi:24946 msgid "The port on which to listen for peer connections when @code{peer-port-random-on-start?} is @code{#f}." msgstr "Le port sur lequel écouter pour les connexions des pairs lorsque @code{peer-port-random-on-start?} vaut @code{#f}." #. type: deftypevr -#: guix-git/doc/guix.texi:24586 +#: guix-git/doc/guix.texi:24948 msgid "Defaults to @samp{51413}." msgstr "La valeur par défaut est @samp{51413}." #. type: deftypevr -#: guix-git/doc/guix.texi:24589 +#: guix-git/doc/guix.texi:24951 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean port-forwarding-enabled?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean port-forwarding-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24593 +#: guix-git/doc/guix.texi:24955 msgid "If @code{#t}, the daemon will attempt to configure port-forwarding on an upstream gateway automatically using @acronym{UPnP} and @acronym{NAT-PMP}." msgstr "Si la valeur est @code{#t}, le démon essayera de configurer le renvoie de port vers une passerelle amont automatiquement avec @acronym{UPnP} et @acronym{NAT-PMP}." #. type: deftypevr -#: guix-git/doc/guix.texi:24598 +#: guix-git/doc/guix.texi:24960 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} encryption-mode encryption" msgstr "{paramètre de @code{transmission-daemon-configuration}} encryption-mode encryption" #. type: deftypevr -#: guix-git/doc/guix.texi:24603 +#: guix-git/doc/guix.texi:24965 msgid "The encryption preference for peer connections, one of @code{prefer-unencrypted-connections}, @code{prefer-encrypted-connections} or @code{require-encrypted-connections}." msgstr "Vos préférences de chiffrement pour les connexions avec les pairs, parmi @code{prefer-unencrypted-connections}, @code{prefer-encrypted-connections} et @code{require-encrypted-connections}." #. type: deftypevr -#: guix-git/doc/guix.texi:24605 +#: guix-git/doc/guix.texi:24967 msgid "Defaults to @samp{prefer-encrypted-connections}." msgstr "La valeur par défaut est @samp{prefer-encrypted-connections}." #. type: deftypevr -#: guix-git/doc/guix.texi:24608 +#: guix-git/doc/guix.texi:24970 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string peer-congestion-algorithm" msgstr "{paramètre de @code{transmission-daemon-configuration}} maybe-string peer-congestion-algorithm" #. type: deftypevr -#: guix-git/doc/guix.texi:24613 +#: guix-git/doc/guix.texi:24975 msgid "The TCP congestion-control algorithm to use for peer connections, specified using a string recognized by the operating system in calls to @code{setsockopt} (or set to @code{disabled}, in which case the operating-system default is used)." msgstr "L'algorithme de contrôle de congestion TCP à utiliser pour les connexions avec les pairs, spécifié avec une chaîne reconnue par le système d'exploitation dans les appels à @code{setsockopt} (ou @code{disabled}, auquel cas le système d'exploitation utilise la valeur par défaut)." #. type: deftypevr -#: guix-git/doc/guix.texi:24622 +#: guix-git/doc/guix.texi:24984 msgid "Note that on GNU/Linux systems, the kernel must be configured to allow processes to use a congestion-control algorithm not in the default set; otherwise, it will deny these requests with ``Operation not permitted''. To see which algorithms are available on your system and which are currently permitted for use, look at the contents of the files @file{tcp_available_congestion_control} and @file{tcp_allowed_congestion_control} in the @file{/proc/sys/net/ipv4} directory." msgstr "Remarquez que sur les systèmes GNU/Linux, le noyau doit être configuré pour permettre aux processus d'utiliser un algorithme de contrôle de congestion qui n'est pas dans l'ensemble par défaut ; sinon, il refusera les demande avec « Opération non autorisée ». Pour voir les algorithmes disponibles sur votre système et ceux qui sont actuellement autorisés, regardez le contenu des fichiers @file{tcp_available_congestion_control} et @file{tcp_allowed_congestion_control} dans le répertoire @file{/proc/sys/net/ipv4}." #. type: deftypevr -#: guix-git/doc/guix.texi:24630 +#: guix-git/doc/guix.texi:24992 msgid "As an example, to have Transmission Daemon use @uref{http://www-ece.rice.edu/networks/TCP-LP/,the TCP Low Priority congestion-control algorithm}, you'll need to modify your kernel configuration to build in support for the algorithm, then update your operating-system configuration to allow its use by adding a @code{sysctl-service-type} service (or updating the existing one's configuration) with lines like the following:" msgstr "Par exemple, pour que le démon Transmission utilise @uref{http://www-ece.rice.edu/networks/TCP-LP/,l'algorithme de contrôle de congestion TCP de basse priorité}, vous devrez modifier la configuration de votre noyau pour construire la prise en charge de cet algorithme, puis mettre à jour votre configuration de système d'exploitation pour permettre son utilisation en ajoutant un service @code{sysctl-service-type} (ou en mettant à jour la configuration de ce service s'il existe déjà) avec les lignes suivantes :" #. type: lisp -#: guix-git/doc/guix.texi:24637 +#: guix-git/doc/guix.texi:24999 #, no-wrap msgid "" "(service sysctl-service-type\n" @@ -46440,529 +47103,529 @@ msgstr "" " \"reno cubic lp\"))))\n" #. type: deftypevr -#: guix-git/doc/guix.texi:24640 +#: guix-git/doc/guix.texi:25002 msgid "The Transmission Daemon configuration can then be updated with" msgstr "La configuration de démon Transmission peut être mise à jour avec" #. type: lisp -#: guix-git/doc/guix.texi:24643 +#: guix-git/doc/guix.texi:25005 #, no-wrap msgid "(peer-congestion-algorithm \"lp\")\n" msgstr "(peer-congestion-algorithm \"lp\")\n" #. type: deftypevr -#: guix-git/doc/guix.texi:24646 +#: guix-git/doc/guix.texi:25008 msgid "and the system reconfigured to have the changes take effect." msgstr "et le système peut être reconfiguré pour que les changements prennent effet." #. type: deftypevr -#: guix-git/doc/guix.texi:24651 +#: guix-git/doc/guix.texi:25013 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} tcp-type-of-service peer-socket-tos" msgstr "{paramètre de @code{transmission-daemon-configuration}} tcp-type-of-service peer-soket-tos" #. type: deftypevr -#: guix-git/doc/guix.texi:24655 +#: guix-git/doc/guix.texi:25017 msgid "The type of service to request in outgoing @acronym{TCP} packets, one of @code{default}, @code{low-cost}, @code{throughput}, @code{low-delay} and @code{reliability}." msgstr "Le type de service à demander pour les paquets @acronym{TCP} sortants, entre @code{default}, @code{low-cost}, @code{throughput}, @code{low-delay} et @code{reliability}." #. type: deftypevr -#: guix-git/doc/guix.texi:24657 +#: guix-git/doc/guix.texi:25019 msgid "Defaults to @samp{default}." msgstr "La valeur par défaut est @samp{default}." #. type: deftypevr -#: guix-git/doc/guix.texi:24660 +#: guix-git/doc/guix.texi:25022 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-limit-global" msgstr "{paramètre de @code{transmission-daemon-configuration}} non-negative-integer peer-limit-global" #. type: deftypevr -#: guix-git/doc/guix.texi:24662 +#: guix-git/doc/guix.texi:25024 msgid "The global limit on the number of connected peers." msgstr "La limite globale pour le nombre de pairs connectés." #. type: deftypevr -#: guix-git/doc/guix.texi:24664 +#: guix-git/doc/guix.texi:25026 msgid "Defaults to @samp{200}." msgstr "La valeur par défaut est @samp{200}." #. type: deftypevr -#: guix-git/doc/guix.texi:24667 +#: guix-git/doc/guix.texi:25029 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-limit-per-torrent" msgstr "{paramètre de @code{transmission-daemon-configuration}} non-negative-integer peer-limit-per-torrent" #. type: deftypevr -#: guix-git/doc/guix.texi:24669 +#: guix-git/doc/guix.texi:25031 msgid "The per-torrent limit on the number of connected peers." msgstr "La limite par torrent de pairs connectés." #. type: deftypevr -#: guix-git/doc/guix.texi:24674 +#: guix-git/doc/guix.texi:25036 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer upload-slots-per-torrent" msgstr "{paramètre de @code{transmission-daemon-configuration}} non-negative-integer upload-slots-per-torrent" #. type: deftypevr -#: guix-git/doc/guix.texi:24677 +#: guix-git/doc/guix.texi:25039 msgid "The maximum number of peers to which the daemon will upload data simultaneously for each torrent." msgstr "Le nombre maximum de pairs auxquels le démon enverra des données en même temps pour chaque torrent." #. type: deftypevr -#: guix-git/doc/guix.texi:24679 +#: guix-git/doc/guix.texi:25041 msgid "Defaults to @samp{14}." msgstr "La valeur par défaut est @samp{14}." #. type: deftypevr -#: guix-git/doc/guix.texi:24682 +#: guix-git/doc/guix.texi:25044 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-id-ttl-hours" msgstr "{paramètre de @code{transmission-daemon-configuration}} non-negative-integer peer-id-ttl-hours" #. type: deftypevr -#: guix-git/doc/guix.texi:24685 +#: guix-git/doc/guix.texi:25047 msgid "The maximum lifespan, in hours, of the peer ID associated with each public torrent before it is regenerated." msgstr "La durée maximum, en heures, de l'identifiant de pair associé à chaque torrent public avant qu'il ne soit régénéré." #. type: deftypevr -#: guix-git/doc/guix.texi:24687 +#: guix-git/doc/guix.texi:25049 msgid "Defaults to @samp{6}." msgstr "La valeur par défaut est @samp{6}." #. type: deftypevr -#: guix-git/doc/guix.texi:24690 +#: guix-git/doc/guix.texi:25052 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean blocklist-enabled?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean blocklist-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24693 +#: guix-git/doc/guix.texi:25055 msgid "When @code{#t}, the daemon will ignore peers mentioned in the blocklist it has most recently downloaded from @code{blocklist-url}." msgstr "Lorsque la valeur est @code{#t}, le démon ignorera les pairs mentionnés dans la dernière liste de blocage téléchargée depuis @code{blocklist-url}." #. type: deftypevr -#: guix-git/doc/guix.texi:24698 +#: guix-git/doc/guix.texi:25060 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string blocklist-url" msgstr "{paramètre de @code{transmission-daemon-configuration}} maybe-string blocklist-url" #. type: deftypevr -#: guix-git/doc/guix.texi:24702 +#: guix-git/doc/guix.texi:25064 msgid "The URL of a peer blocklist (in @acronym{P2P}-plaintext or eMule @file{.dat} format) to be periodically downloaded and applied when @code{blocklist-enabled?} is @code{#t}." msgstr "L'URL d'une liste de blocage de pairs (au format @acronym{P2P}-plaintext ou eMule @file{.dat}) périodiquement téléchargés et appliqués lorsque @code{blocklist-enabled?} vaut @code{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:24707 +#: guix-git/doc/guix.texi:25069 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean download-queue-enabled?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean download-queue-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24710 +#: guix-git/doc/guix.texi:25072 msgid "If @code{#t}, the daemon will be limited to downloading at most @code{download-queue-size} non-stalled torrents simultaneously." msgstr "Si la valeur est @code{#t}, le démon sera limité à téléchargé au plus @code{download-queue-size} torrents non bloqués en même temps." #. type: deftypevr -#: guix-git/doc/guix.texi:24715 +#: guix-git/doc/guix.texi:25077 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer download-queue-size" msgstr "{paramètre de @code{transmission-daemon-configuration}} non-negative-integer download-queue-size" #. type: deftypevr -#: guix-git/doc/guix.texi:24719 +#: guix-git/doc/guix.texi:25081 msgid "The size of the daemon's download queue, which limits the number of non-stalled torrents it will download at any one time when @code{download-queue-enabled?} is @code{#t}." msgstr "La taille de la queue de téléchargement du démon, qui limite le nombre de torrents non bloqués qu'il télécharge en même temps lorsque @code{download-queue-enabled?} vaut @code{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:24724 +#: guix-git/doc/guix.texi:25086 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean seed-queue-enabled?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean seed-queue-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24727 +#: guix-git/doc/guix.texi:25089 msgid "If @code{#t}, the daemon will be limited to seeding at most @code{seed-queue-size} non-stalled torrents simultaneously." msgstr "Si la valeur est @code{#t}, le démon sera limité à envoyer au plus @code{seed-queue-size} torrents non bloqués en même temps." #. type: deftypevr -#: guix-git/doc/guix.texi:24732 +#: guix-git/doc/guix.texi:25094 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer seed-queue-size" msgstr "{paramètre de @code{transmission-daemon-configuration}} non-negative-integer seed-queue-size" #. type: deftypevr -#: guix-git/doc/guix.texi:24736 +#: guix-git/doc/guix.texi:25098 msgid "The size of the daemon's seed queue, which limits the number of non-stalled torrents it will seed at any one time when @code{seed-queue-enabled?} is @code{#t}." msgstr "La taille de la queue d'envoi du démon, qui limite le nombre de torrents non bloqué qu'il enverra en même temps lorsque @code{seed-queue-enabled?} vaut @code{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:24741 +#: guix-git/doc/guix.texi:25103 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean queue-stalled-enabled?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean queue-stalled-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24746 +#: guix-git/doc/guix.texi:25108 msgid "When @code{#t}, the daemon will consider torrents for which it has not shared data in the past @code{queue-stalled-minutes} minutes to be stalled and not count them against its @code{download-queue-size} and @code{seed-queue-size} limits." msgstr "Lorsque la valeur est @code{#t}, le démon considère les torrents pour lesquels il n'a pas partagé de données dans les dernières @code{queue-stalled-minutes} comme bloqué et ne les contera pas dans les limites @code{download-queue-size} et @code{seed-queue-size}." #. type: deftypevr -#: guix-git/doc/guix.texi:24751 +#: guix-git/doc/guix.texi:25113 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer queue-stalled-minutes" msgstr "{paramètre de @code{transmission-daemon-configuration}} non-negative-integer queue-stalled-minutes" #. type: deftypevr -#: guix-git/doc/guix.texi:24755 +#: guix-git/doc/guix.texi:25117 msgid "The maximum period, in minutes, a torrent may be idle before it is considered to be stalled, when @code{queue-stalled-enabled?} is @code{#t}." msgstr "La période maximale, en minutes, pendant laquelle un torrent peut être inactif avant d'être considéré comme bloqué, lorsque @code{queue-stalled-enabled?} vaut @code{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:24760 +#: guix-git/doc/guix.texi:25122 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean ratio-limit-enabled?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean ratio-limit-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24763 +#: guix-git/doc/guix.texi:25125 msgid "When @code{#t}, a torrent being seeded will automatically be paused once it reaches the ratio specified by @code{ratio-limit}." msgstr "Lorsque la valeur est @code{#t}, un torrent téléchargé sera automatiquement mis en pause une fois qu'il atteint le ratio spécifié par @code{ratio-limit}." #. type: deftypevr -#: guix-git/doc/guix.texi:24768 +#: guix-git/doc/guix.texi:25130 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-rational ratio-limit" msgstr "{paramètre de @code{transmission-daemon-configuration}} non-negative-rational ratio-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:24771 +#: guix-git/doc/guix.texi:25133 msgid "The ratio at which a torrent being seeded will be paused, when @code{ratio-limit-enabled?} is @code{#t}." msgstr "Le ratio auquel un torrent téléchargé sera mis en pause, lorsque @code{ratio-limit-enabled?} vaut @code{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:24773 +#: guix-git/doc/guix.texi:25135 msgid "Defaults to @samp{2.0}." msgstr "La valeur par défaut est @samp{2.0}." #. type: deftypevr -#: guix-git/doc/guix.texi:24776 +#: guix-git/doc/guix.texi:25138 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean idle-seeding-limit-enabled?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean idle-seeding-limit-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24779 +#: guix-git/doc/guix.texi:25141 msgid "When @code{#t}, a torrent being seeded will automatically be paused once it has been idle for @code{idle-seeding-limit} minutes." msgstr "Lorsque la valeur est @code{#t}, un torrent téléchargé sera automatiquement mis en pause s'il est inactif depuis @code{idle-seeding-limit} minutes." #. type: deftypevr -#: guix-git/doc/guix.texi:24784 +#: guix-git/doc/guix.texi:25146 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer idle-seeding-limit" msgstr "{paramètre de @code{transmission-daemon-configuration}} non-negative-integer idle-seeding-limit" #. type: deftypevr -#: guix-git/doc/guix.texi:24788 +#: guix-git/doc/guix.texi:25150 msgid "The maximum period, in minutes, a torrent being seeded may be idle before it is paused, when @code{idle-seeding-limit-enabled?} is @code{#t}." msgstr "La durée maximum, en minutes, pendant laquelle un torrent téléchargé peut être inactif avant d'être mis en pause, quand @code{idle-seeding-limit-enabled?} vaut @code{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:24793 +#: guix-git/doc/guix.texi:25155 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean dht-enabled?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean dht-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24797 +#: guix-git/doc/guix.texi:25159 msgid "Enable @uref{http://bittorrent.org/beps/bep_0005.html,the distributed hash table (@acronym{DHT}) protocol}, which supports the use of trackerless torrents." msgstr "Active @uref{http://bittorrent.org/beps/bep_0005.html,le protocole de table de hash (@acronym{DHT}) distribuée}, qui prend en charge les torrents sans tracker." #. type: deftypevr -#: guix-git/doc/guix.texi:24802 +#: guix-git/doc/guix.texi:25164 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean lpd-enabled?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean lpd-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24807 +#: guix-git/doc/guix.texi:25169 msgid "Enable @uref{https://en.wikipedia.org/wiki/Local_Peer_Discovery,local peer discovery} (@acronym{LPD}), which allows the discovery of peers on the local network and may reduce the amount of data sent over the public Internet." msgstr "Active @uref{https://en.wikipedia.org/wiki/Local_Peer_Discovery,la découverte de pairs locaux} (@acronym{LPD}), qui permet de découvrir des pairs sur le réseau local et peut réduire la quantité de données envoyées sur Internet." #. type: deftypevr -#: guix-git/doc/guix.texi:24812 +#: guix-git/doc/guix.texi:25174 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean pex-enabled?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean pex-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24816 +#: guix-git/doc/guix.texi:25178 msgid "Enable @uref{https://en.wikipedia.org/wiki/Peer_exchange,peer exchange} (@acronym{PEX}), which reduces the daemon's reliance on external trackers and may improve its performance." msgstr "Active @uref{https://en.wikipedia.org/wiki/Peer_exchange,l'échange de pairs} (@acronym{PEX}), qui réduit la dépendance du démon aux trackers externes et peut améliorer les performances." #. type: deftypevr -#: guix-git/doc/guix.texi:24821 +#: guix-git/doc/guix.texi:25183 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean utp-enabled?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean utp-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24826 +#: guix-git/doc/guix.texi:25188 msgid "Enable @uref{http://bittorrent.org/beps/bep_0029.html,the micro transport protocol} (@acronym{uTP}), which aims to reduce the impact of BitTorrent traffic on other users of the local network while maintaining full utilization of the available bandwidth." msgstr "Active @uref{http://bittorrent.org/beps/bep_0029.html,le protocole de micro transport} (@acronym{uTP}), qui cherche à réduire l'impact du trafic BitTorrent sur les autres utilisateurs du réseau local tout en utilisant toute la bande passante disponible." #. type: deftypevr -#: guix-git/doc/guix.texi:24831 +#: guix-git/doc/guix.texi:25193 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-enabled?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean rpc-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24836 +#: guix-git/doc/guix.texi:25198 msgid "If @code{#t}, enable the remote procedure call (@acronym{RPC}) interface, which allows remote control of the daemon via its Web interface, the @command{transmission-remote} command-line client, and similar tools." msgstr "Si la valeur est @code{#t}, active l’interface d'appel de procédures distantes (@acronym{RPC}), qui permet de contrôler le démon à distance via son interface web, le client @command{transmission-remote} en ligne de commande et des outils similaires." #. type: deftypevr -#: guix-git/doc/guix.texi:24841 +#: guix-git/doc/guix.texi:25203 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string rpc-bind-address" msgstr "{paramètre de @code{transmission-daemon-configuration}} string rpc-bind-address" #. type: deftypevr -#: guix-git/doc/guix.texi:24844 +#: guix-git/doc/guix.texi:25206 msgid "The IP address at which to listen for @acronym{RPC} connections, or ``0.0.0.0'' to listen at all available IP addresses." msgstr "L'adresse IP sur laquelle écouter les connexions @acronym{RPC}, ou « 0.0.0.0 » pour écouter sur toutes les adresses IP." #. type: deftypevr -#: guix-git/doc/guix.texi:24849 +#: guix-git/doc/guix.texi:25211 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number rpc-port" msgstr "{paramètre de @code{transmission-daemon-configuration}} port-number rpc-port" #. type: deftypevr -#: guix-git/doc/guix.texi:24851 +#: guix-git/doc/guix.texi:25213 msgid "The port on which to listen for @acronym{RPC} connections." msgstr "Le port sur lequel écouter les connexions @acronym{RPC} entrantes." #. type: deftypevr -#: guix-git/doc/guix.texi:24853 +#: guix-git/doc/guix.texi:25215 msgid "Defaults to @samp{9091}." msgstr "La valeur par défaut est @samp{9091}." #. type: deftypevr -#: guix-git/doc/guix.texi:24856 +#: guix-git/doc/guix.texi:25218 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string rpc-url" msgstr "{paramètre de @code{transmission-daemon-configuration}} string rpc-url" #. type: deftypevr -#: guix-git/doc/guix.texi:24858 +#: guix-git/doc/guix.texi:25220 msgid "The path prefix to use in the @acronym{RPC}-endpoint @acronym{URL}." msgstr "Le préfixe de chemin à utiliser dans l'@acronym{URL} du point d'accès @acronym{RPC}." #. type: deftypevr -#: guix-git/doc/guix.texi:24860 +#: guix-git/doc/guix.texi:25222 msgid "Defaults to @samp{\"/transmission/\"}." msgstr "La valeur par défaut est @samp{\"/transmission/\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:24863 +#: guix-git/doc/guix.texi:25225 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-authentication-required?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean rpc-authentication-required?" #. type: deftypevr -#: guix-git/doc/guix.texi:24868 +#: guix-git/doc/guix.texi:25230 msgid "When @code{#t}, clients must authenticate (see @code{rpc-username} and @code{rpc-password}) when using the @acronym{RPC} interface. Note this has the side effect of disabling host-name whitelisting (see @code{rpc-host-whitelist-enabled?}." msgstr "Lorsque la valeur est @code{#t}, les clients doivent s'authentifier (voir @code{rpc-username} et @code{rpc-password}) quand ils utilisent l'interface @acronym{RPC}. Remarquez que cela a pour effet de bord de désactiver la liste d'hôtes (voir @code{rpc-host-whitelist-enabled?})." #. type: deftypevr -#: guix-git/doc/guix.texi:24873 +#: guix-git/doc/guix.texi:25235 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string rpc-username" msgstr "{paramètre de @code{transmission-daemon-configuration}} maybe-string rpc-username" #. type: deftypevr -#: guix-git/doc/guix.texi:24876 +#: guix-git/doc/guix.texi:25238 msgid "The username required by clients to access the @acronym{RPC} interface when @code{rpc-authentication-required?} is @code{#t}." msgstr "Le nom d'utilisateur requis par les clients pour accéder à l'interface @acronym{RPC} lorsque @code{rpc-authentication-required?} vaut @code{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:24881 +#: guix-git/doc/guix.texi:25243 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-transmission-password-hash rpc-password" msgstr "{paramètre de @code{transmission-daemon-configuration}} maybe-transmission-password-hash rpc-password" #. type: deftypevr -#: guix-git/doc/guix.texi:24887 +#: guix-git/doc/guix.texi:25249 msgid "The password required by clients to access the @acronym{RPC} interface when @code{rpc-authentication-required?} is @code{#t}. This must be specified using a password hash in the format recognized by Transmission clients, either copied from an existing @file{settings.json} file or generated using the @code{transmission-password-hash} procedure." msgstr "Le mot de passe requis pour permettre aux clients d'accéder à l'interface @acronym{RPC} lorsque @code{rpc-authentication-required?} vaut @code{#t}. Il doit être spécifié avec un hash de mot de passe au format reconnu par les clients de Transmission, soit copié d'un fichier @file{settings.json} existant, soit généré avec la procédure @code{transmission-password-hash}." #. type: deftypevr -#: guix-git/doc/guix.texi:24892 +#: guix-git/doc/guix.texi:25254 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-whitelist-enabled?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean rpc-whitelist-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24895 +#: guix-git/doc/guix.texi:25257 msgid "When @code{#t}, @acronym{RPC} requests will be accepted only when they originate from an address specified in @code{rpc-whitelist}." msgstr "Lorsque la valeur est @code{#t}, les requêtes de @acronym{RPC} seront acceptées seulement si elles proviennent d'une adresse spécifiée dans @code{rpc-whitelist}." #. type: deftypevr -#: guix-git/doc/guix.texi:24900 +#: guix-git/doc/guix.texi:25262 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string-list rpc-whitelist" msgstr "{paramètre de @code{transmission-daemon-configuration}} string-list rpc-whitelist" #. type: deftypevr -#: guix-git/doc/guix.texi:24904 +#: guix-git/doc/guix.texi:25266 msgid "The list of IP and IPv6 addresses from which @acronym{RPC} requests will be accepted when @code{rpc-whitelist-enabled?} is @code{#t}. Wildcards may be specified using @samp{*}." msgstr "La liste des adresse IP et IPv6 pour lesquelles les requêtes @acronym{RPC} sont acceptées lorsque @code{rpc-whitelist-enabled?} vaut @code{#t}. Vous pouvez spécifier des jokers avec @samp{*}." #. type: deftypevr -#: guix-git/doc/guix.texi:24906 +#: guix-git/doc/guix.texi:25268 msgid "Defaults to @samp{(\"127.0.0.1\" \"::1\")}." msgstr "La valeur par défaut est @samp{(\"127.0.0.1\" \"::1\")}." #. type: deftypevr -#: guix-git/doc/guix.texi:24909 +#: guix-git/doc/guix.texi:25271 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-host-whitelist-enabled?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean rpc-host-whitelist-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24914 +#: guix-git/doc/guix.texi:25276 msgid "When @code{#t}, @acronym{RPC} requests will be accepted only when they are addressed to a host named in @code{rpc-host-whitelist}. Note that requests to ``localhost'' or ``localhost.'', or to a numeric address, are always accepted regardless of these settings." msgstr "Lorsque la valeur est @code{#t}, les requêtes @acronym{RPC} seront acceptée lorsqu'elles sont adressées à un hôte nommé dans @code{rpc-host-whitelist}. Remarquez que les requêtes adressées à « localhost » ou « localhost. » ou à une adresse numérique, sont toujours acceptées indépendamment de ce paramètre." #. type: deftypevr -#: guix-git/doc/guix.texi:24917 +#: guix-git/doc/guix.texi:25279 msgid "Note also this functionality is disabled when @code{rpc-authentication-required?} is @code{#t}." msgstr "Remarquez aussi que cette fonctionnalité est désactivée lorsque @code{rpc-authentication-required?} vaut @code{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:24922 +#: guix-git/doc/guix.texi:25284 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string-list rpc-host-whitelist" msgstr "{paramètre de @code{transmission-daemon-configuration}} string-list rpc-host-whitelist" #. type: deftypevr -#: guix-git/doc/guix.texi:24925 +#: guix-git/doc/guix.texi:25287 msgid "The list of host names recognized by the @acronym{RPC} server when @code{rpc-host-whitelist-enabled?} is @code{#t}." msgstr "La liste des noms d'hôte reconnus par le serveur @acronym{RPC} lorsque @code{rpc-host-whitelist-enabled?} vaut @code{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:24930 +#: guix-git/doc/guix.texi:25292 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} message-level message-level" msgstr "{paramètre de @code{transmission-daemon-configuration}} message-level message-level" #. type: deftypevr -#: guix-git/doc/guix.texi:24934 +#: guix-git/doc/guix.texi:25296 msgid "The minimum severity level of messages to be logged (to @file{/var/log/transmission.log}) by the daemon, one of @code{none} (no logging), @code{error}, @code{info} and @code{debug}." msgstr "Le niveau de sévérité minimum des messages à enregistrer dans les journaux (dans @file{/var/log/transmission.log}) par le démon, entre @code{none} (par de journalisation), @code{error}, @code{info} et @code{debug}." #. type: deftypevr -#: guix-git/doc/guix.texi:24939 +#: guix-git/doc/guix.texi:25301 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean start-added-torrents?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean start-added-torrents?" #. type: deftypevr -#: guix-git/doc/guix.texi:24942 +#: guix-git/doc/guix.texi:25304 msgid "When @code{#t}, torrents are started as soon as they are added; otherwise, they are added in ``paused'' state." msgstr "Lorsque la valeur est @code{#t}, les torrents sont démarrés dès qu'ils sont ajoutés ; sinon ils sont ajouté et mis en pause." #. type: deftypevr -#: guix-git/doc/guix.texi:24947 +#: guix-git/doc/guix.texi:25309 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean script-torrent-done-enabled?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean script-torrent-done-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24951 +#: guix-git/doc/guix.texi:25313 msgid "When @code{#t}, the script specified by @code{script-torrent-done-filename} will be invoked each time a torrent completes." msgstr "Lorsque la valeur est @code{#t}, le script spécifié par @code{script-torrent-done-filename} sera invoqué à chaque fois qu'un torrent termine." #. type: deftypevr -#: guix-git/doc/guix.texi:24956 +#: guix-git/doc/guix.texi:25318 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-file-object script-torrent-done-filename" msgstr "{paramètre de @code{transmission-daemon-configuration}} maybe-file-object script-torrent-done-filename" #. type: deftypevr -#: guix-git/doc/guix.texi:24960 +#: guix-git/doc/guix.texi:25322 msgid "A file name or file-like object specifying a script to run each time a torrent completes, when @code{script-torrent-done-enabled?} is @code{#t}." msgstr "Un nom de fichier ou un simili-fichier spécifiant un script à lancer à chaque fois qu'un torrent termine, lorsque @code{script-torrent-done-enabled?} est @code{#t}." #. type: deftypevr -#: guix-git/doc/guix.texi:24965 +#: guix-git/doc/guix.texi:25327 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean scrape-paused-torrents-enabled?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean scrape-paused-torrents-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24968 +#: guix-git/doc/guix.texi:25330 msgid "When @code{#t}, the daemon will scrape trackers for a torrent even when the torrent is paused." msgstr "Lorsque la valeur est @code{#t}, le démon contactera les trackers pour le torrent même si le torrent est en pause." #. type: deftypevr -#: guix-git/doc/guix.texi:24973 +#: guix-git/doc/guix.texi:25335 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer cache-size-mb" msgstr "{paramètre de @code{transmission-daemon-configuration}} non-negative-integer cache-size-mb" #. type: deftypevr -#: guix-git/doc/guix.texi:24977 +#: guix-git/doc/guix.texi:25339 msgid "The amount of memory, in megabytes, to allocate for the daemon's in-memory cache. A larger value may increase performance by reducing the frequency of disk I/O." msgstr "La quantité de mémoire, en mégaoctets, à allouer pour le cache mémoire du démon. Une grande valeur peut améliorer les performances en réduisant le fréquence des entrées-sorties sur le disque." #. type: deftypevr -#: guix-git/doc/guix.texi:24979 +#: guix-git/doc/guix.texi:25341 msgid "Defaults to @samp{4}." msgstr "La valeur par défaut est @samp{4}." #. type: deftypevr -#: guix-git/doc/guix.texi:24982 +#: guix-git/doc/guix.texi:25344 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean prefetch-enabled?" msgstr "{paramètre de @code{transmission-daemon-configuration}} boolean prefetch-enabled?" #. type: deftypevr -#: guix-git/doc/guix.texi:24986 +#: guix-git/doc/guix.texi:25348 msgid "When @code{#t}, the daemon will try to improve I/O performance by hinting to the operating system which data is likely to be read next from disk to satisfy requests from peers." msgstr "Lorsque la valeur est @code{#t}, le démon essaiera d'améliorer les performances des entrées-sorties en disant au système quelles données seront probablement bientôt lues pour satisfaire les requêtes des pairs." #. type: subsubheading -#: guix-git/doc/guix.texi:24999 +#: guix-git/doc/guix.texi:25361 #, no-wrap msgid "Tailon Service" msgstr "Service Tailon" #. type: Plain text -#: guix-git/doc/guix.texi:25003 +#: guix-git/doc/guix.texi:25365 msgid "@uref{https://tailon.readthedocs.io/, Tailon} is a web application for viewing and searching log files." msgstr "@uref{https://tailon.readthedocs.io/, Tailon} est une application web pour visualiser et chercher des fichiers de journaux." #. type: Plain text -#: guix-git/doc/guix.texi:25006 +#: guix-git/doc/guix.texi:25368 msgid "The following example will configure the service with default values. By default, Tailon can be accessed on port 8080 (@code{http://localhost:8080})." msgstr "L'exemple suivant configurera le service avec les valeurs par défaut. Par défaut, on peut accéder à Tailon sur le pour 8080 (@code{http://localhost:8080})." #. type: lisp -#: guix-git/doc/guix.texi:25009 +#: guix-git/doc/guix.texi:25371 #, no-wrap msgid "(service tailon-service-type)\n" msgstr "(service tailon-service-type)\n" #. type: Plain text -#: guix-git/doc/guix.texi:25013 +#: guix-git/doc/guix.texi:25375 msgid "The following example customises more of the Tailon configuration, adding @command{sed} to the list of allowed commands." msgstr "L'exemple suivant personnalise un peu plus la configuration de Tailon, en ajoutant @command{sed} à la liste des commandes autorisées." #. type: lisp -#: guix-git/doc/guix.texi:25020 +#: guix-git/doc/guix.texi:25382 #, no-wrap msgid "" "(service tailon-service-type\n" @@ -46978,34 +47641,34 @@ msgstr "" " (allowed-commands '(\"tail\" \"grep\" \"awk\" \"sed\"))))))\n" #. type: deftp -#: guix-git/doc/guix.texi:25023 +#: guix-git/doc/guix.texi:25385 #, no-wrap msgid "{Data Type} tailon-configuration" msgstr "{Type de données} tailon-configuration" #. type: deftp -#: guix-git/doc/guix.texi:25026 +#: guix-git/doc/guix.texi:25388 msgid "Data type representing the configuration of Tailon. This type has the following parameters:" msgstr "Type de données représentant la configuration de Tailon. Ce type a les paramètres suivants :" #. type: item -#: guix-git/doc/guix.texi:25028 +#: guix-git/doc/guix.texi:25390 #, no-wrap msgid "@code{config-file} (default: @code{(tailon-configuration-file)})" msgstr "@code{config-file} (par défaut : @code{(tailon-configuration-file)})" #. type: table -#: guix-git/doc/guix.texi:25032 +#: guix-git/doc/guix.texi:25394 msgid "The configuration file to use for Tailon. This can be set to a @dfn{tailon-configuration-file} record value, or any gexp (@pxref{G-Expressions})." msgstr "Le fichier de configuration à utiliser pour Tailon. Ce champ peut contenir un enregistrement @dfn{tailon-configuration-file} ou n'importe quelle gexp (@pxref{G-Expressions})." #. type: table -#: guix-git/doc/guix.texi:25035 +#: guix-git/doc/guix.texi:25397 msgid "For example, to instead use a local file, the @code{local-file} function can be used:" msgstr "Par exemple, pour utiliser un fichier local à la place, on peut utiliser la fonction @code{local-file} :" #. type: lisp -#: guix-git/doc/guix.texi:25040 +#: guix-git/doc/guix.texi:25402 #, no-wrap msgid "" "(service tailon-service-type\n" @@ -47017,144 +47680,144 @@ msgstr "" " (config-file (local-file \"./my-tailon.conf\"))))\n" #. type: item -#: guix-git/doc/guix.texi:25042 +#: guix-git/doc/guix.texi:25404 #, no-wrap msgid "@code{package} (default: @code{tailon})" msgstr "@code{package} (par défaut : @code{tailon})" #. type: table -#: guix-git/doc/guix.texi:25044 +#: guix-git/doc/guix.texi:25406 msgid "The tailon package to use." msgstr "Le paquet tailon à utiliser." #. type: deftp -#: guix-git/doc/guix.texi:25048 +#: guix-git/doc/guix.texi:25410 #, no-wrap msgid "{Data Type} tailon-configuration-file" msgstr "{Type de données} tailon-configuration-file" #. type: deftp -#: guix-git/doc/guix.texi:25051 +#: guix-git/doc/guix.texi:25413 msgid "Data type representing the configuration options for Tailon. This type has the following parameters:" msgstr "Type de données représentant les options de configuration de Tailon. Ce type a les paramètres suivants :" #. type: item -#: guix-git/doc/guix.texi:25053 +#: guix-git/doc/guix.texi:25415 #, no-wrap msgid "@code{files} (default: @code{(list \"/var/log\")})" msgstr "@code{files} (par défaut : @code{(list \"/var/log\")})" #. type: table -#: guix-git/doc/guix.texi:25058 +#: guix-git/doc/guix.texi:25420 msgid "List of files to display. The list can include strings for a single file or directory, or a list, where the first item is the name of a subsection, and the remaining items are the files or directories in that subsection." msgstr "Liste des fichiers à afficher. La liste peut inclure des chaînes pour des fichiers simple ou des répertoires, ou une liste, où le premier élément est le nom d'un sous-section et le reste des fichiers ou des répertoires de cette sous-section." #. type: item -#: guix-git/doc/guix.texi:25059 +#: guix-git/doc/guix.texi:25421 #, no-wrap msgid "@code{bind} (default: @code{\"localhost:8080\"})" msgstr "@code{bind} (par défaut : @code{\"localhost:8080\"})" #. type: table -#: guix-git/doc/guix.texi:25061 +#: guix-git/doc/guix.texi:25423 msgid "Address and port to which Tailon should bind on." msgstr "Adresse et port sur lesquels Tailon écoute." #. type: item -#: guix-git/doc/guix.texi:25062 +#: guix-git/doc/guix.texi:25424 #, no-wrap msgid "@code{relative-root} (default: @code{#f})" msgstr "@code{relative-root} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:25064 +#: guix-git/doc/guix.texi:25426 msgid "URL path to use for Tailon, set to @code{#f} to not use a path." msgstr "Chemin de l'URL à utiliser pour Tailon, ou @code{#f} pour ne pas utiliser de chemin." #. type: item -#: guix-git/doc/guix.texi:25065 +#: guix-git/doc/guix.texi:25427 #, no-wrap msgid "@code{allow-transfers?} (default: @code{#t})" msgstr "@code{allow-transfers?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:25067 +#: guix-git/doc/guix.texi:25429 msgid "Allow downloading the log files in the web interface." msgstr "Permet de télécharger les journaux dans l'interface web." #. type: item -#: guix-git/doc/guix.texi:25068 +#: guix-git/doc/guix.texi:25430 #, no-wrap msgid "@code{follow-names?} (default: @code{#t})" msgstr "@code{follow-names?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:25070 +#: guix-git/doc/guix.texi:25432 msgid "Allow tailing of not-yet existent files." msgstr "Permet de surveiller des fichiers qui n'existent pas encore." #. type: item -#: guix-git/doc/guix.texi:25071 +#: guix-git/doc/guix.texi:25433 #, no-wrap msgid "@code{tail-lines} (default: @code{200})" msgstr "@code{tail-lines} (par défaut : @code{200})" #. type: table -#: guix-git/doc/guix.texi:25073 +#: guix-git/doc/guix.texi:25435 msgid "Number of lines to read initially from each file." msgstr "Nombre de lignes à lire initialement dans chaque fichier." #. type: item -#: guix-git/doc/guix.texi:25074 +#: guix-git/doc/guix.texi:25436 #, no-wrap msgid "@code{allowed-commands} (default: @code{(list \"tail\" \"grep\" \"awk\")})" msgstr "@code{allowed-commands} (par défaut : @code{(list \"tail\" \"grep\" \"awk\")})" #. type: table -#: guix-git/doc/guix.texi:25076 +#: guix-git/doc/guix.texi:25438 msgid "Commands to allow running. By default, @code{sed} is disabled." msgstr "Commandes autorisées. Par défaut, @code{sed} est désactivé." #. type: table -#: guix-git/doc/guix.texi:25079 +#: guix-git/doc/guix.texi:25441 msgid "Set @code{debug?} to @code{#t} to show debug messages." msgstr "Configurez @code{debug?} à @code{#t} pour montrer les messages de débogage." #. type: item -#: guix-git/doc/guix.texi:25080 +#: guix-git/doc/guix.texi:25442 #, no-wrap msgid "@code{wrap-lines} (default: @code{#t})" msgstr "@code{wrap-lines} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:25084 +#: guix-git/doc/guix.texi:25446 msgid "Initial line wrapping state in the web interface. Set to @code{#t} to initially wrap lines (the default), or to @code{#f} to initially not wrap lines." msgstr "État initial du retour à la ligne dans l'interface web. Configurez l'option à @code{#t} pour retourner à la ligne (par défaut) ou à @code{#f} pour ne pas retourner à la ligne au début." #. type: item -#: guix-git/doc/guix.texi:25085 +#: guix-git/doc/guix.texi:25447 #, no-wrap msgid "@code{http-auth} (default: @code{#f})" msgstr "@code{http-auth} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:25089 +#: guix-git/doc/guix.texi:25451 msgid "HTTP authentication type to use. Set to @code{#f} to disable authentication (the default). Supported values are @code{\"digest\"} or @code{\"basic\"}." msgstr "Type d'authentification HTTP à utiliser. Indiquez @code{#f} pour désactiver l'authentification (par défaut). Les valeur supportées sont @code{\"digest\"} et @code{\"basic\"}." #. type: item -#: guix-git/doc/guix.texi:25090 +#: guix-git/doc/guix.texi:25452 #, no-wrap msgid "@code{users} (default: @code{#f})" msgstr "@code{users} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:25095 +#: guix-git/doc/guix.texi:25457 msgid "If HTTP authentication is enabled (see @code{http-auth}), access will be restricted to the credentials provided here. To configure users, use a list of pairs, where the first element of the pair is the username, and the 2nd element of the pair is the password." msgstr "Si l'authentification HTTP est activée (voir @code{http-auth}), l'accès sera restreint aux identifiants fournis ici. Pour configurer des utilisateurs, utilisez une liste de paires, où le premier élément de la paire est le nom d'utilisateur et le second élément est le mot de passe." #. type: lisp -#: guix-git/doc/guix.texi:25101 +#: guix-git/doc/guix.texi:25463 #, no-wrap msgid "" "(tailon-configuration-file\n" @@ -47168,35 +47831,35 @@ msgstr "" " (\"user2\" . \"password2\"))))\n" #. type: subsubheading -#: guix-git/doc/guix.texi:25107 +#: guix-git/doc/guix.texi:25469 #, no-wrap msgid "Darkstat Service" msgstr "Service Darkstat" #. type: cindex -#: guix-git/doc/guix.texi:25108 +#: guix-git/doc/guix.texi:25470 #, no-wrap msgid "darkstat" msgstr "darkstat" #. type: Plain text -#: guix-git/doc/guix.texi:25111 +#: guix-git/doc/guix.texi:25473 msgid "Darkstat is a packet sniffer that captures network traffic, calculates statistics about usage, and serves reports over HTTP." msgstr "Darkstat est un « renifleur de paquets » qui capture le trafic réseau, calcul des statistiques sur l'utilisation et sert des rapport sur HTTP." #. type: defvar -#: guix-git/doc/guix.texi:25112 +#: guix-git/doc/guix.texi:25474 #, no-wrap msgid "{Scheme Variable} darkstat-service-type" msgstr "{Variable Scheme} darkstat-service-type" #. type: defvar -#: guix-git/doc/guix.texi:25117 +#: guix-git/doc/guix.texi:25479 msgid "This is the service type for the @uref{https://unix4lyfe.org/darkstat/, darkstat} service, its value must be a @code{darkstat-configuration} record as in this example:" msgstr "C'est le type de service pour le service @uref{https://unix4lyfe.org/darkstat/, darkstat}, sa valeur doit être un enregistrement @code{darkstat-configuration} comme dans cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:25122 +#: guix-git/doc/guix.texi:25484 #, no-wrap msgid "" "(service darkstat-service-type\n" @@ -47208,715 +47871,740 @@ msgstr "" " (interface \"eno1\")))\n" #. type: deftp -#: guix-git/doc/guix.texi:25125 +#: guix-git/doc/guix.texi:25487 #, no-wrap msgid "{Data Type} darkstat-configuration" msgstr "{Type de données} darkstat-configuration" #. type: deftp -#: guix-git/doc/guix.texi:25127 +#: guix-git/doc/guix.texi:25489 msgid "Data type representing the configuration of @command{darkstat}." msgstr "Type de données représentant la configuration de @command{darkstat}." #. type: item -#: guix-git/doc/guix.texi:25129 +#: guix-git/doc/guix.texi:25491 #, no-wrap msgid "@code{package} (default: @code{darkstat})" msgstr "@code{package} (par défaut : @code{darkstat})" #. type: table -#: guix-git/doc/guix.texi:25131 +#: guix-git/doc/guix.texi:25493 msgid "The darkstat package to use." msgstr "Le paquet darkstat à utiliser." #. type: code{#1} -#: guix-git/doc/guix.texi:25132 +#: guix-git/doc/guix.texi:25494 #, no-wrap msgid "interface" msgstr "interface" #. type: table -#: guix-git/doc/guix.texi:25134 +#: guix-git/doc/guix.texi:25496 msgid "Capture traffic on the specified network interface." msgstr "Capture le trafic sur l'interface réseau spécifiée." #. type: item -#: guix-git/doc/guix.texi:25135 +#: guix-git/doc/guix.texi:25497 #, no-wrap msgid "@code{port} (default: @code{\"667\"})" msgstr "@code{port} (par défaut : @code{\"667\"})" #. type: table -#: guix-git/doc/guix.texi:25137 +#: guix-git/doc/guix.texi:25499 msgid "Bind the web interface to the specified port." msgstr "Lie l'interface web sur le port spécifié." #. type: table -#: guix-git/doc/guix.texi:25140 guix-git/doc/guix.texi:25175 +#: guix-git/doc/guix.texi:25502 guix-git/doc/guix.texi:25537 msgid "Bind the web interface to the specified address." msgstr "Lie l'interface web sur l'adresse spécifiée." #. type: item -#: guix-git/doc/guix.texi:25141 +#: guix-git/doc/guix.texi:25503 #, no-wrap msgid "@code{base} (default: @code{\"/\"})" msgstr "@code{base} (par défaut : @code{\"/\"})" #. type: table -#: guix-git/doc/guix.texi:25144 +#: guix-git/doc/guix.texi:25506 msgid "Specify the path of the base URL@. This can be useful if @command{darkstat} is accessed via a reverse proxy." msgstr "Spécifie le chemin de base des URL@. C'est utile si on accède à @command{darkstat} à travers un proxy inverse." #. type: subsubheading -#: guix-git/doc/guix.texi:25148 +#: guix-git/doc/guix.texi:25510 #, no-wrap msgid "Prometheus Node Exporter Service" msgstr "Service d'export de nœud de Prometheus" #. type: cindex -#: guix-git/doc/guix.texi:25150 +#: guix-git/doc/guix.texi:25512 #, no-wrap msgid "prometheus-node-exporter" msgstr "prometheus-node-exporter" #. type: Plain text -#: guix-git/doc/guix.texi:25155 +#: guix-git/doc/guix.texi:25517 msgid "The Prometheus ``node exporter'' makes hardware and operating system statistics provided by the Linux kernel available for the Prometheus monitoring system. This service should be deployed on all physical nodes and virtual machines, where monitoring these statistics is desirable." msgstr "L'exportateur de nœuds de Prometheus rend disponible les statistiques sur le matériel et le système d'exploitation fournies par le noyau Linux pour le système de surveillance Prometheus. Ce service devrait être déployé sur tous les nœuds physiques et les machines virtuelles, où vous voulez surveiller ces statistiques." #. type: defvar -#: guix-git/doc/guix.texi:25156 +#: guix-git/doc/guix.texi:25518 #, no-wrap msgid "{Scheme variable} prometheus-node-exporter-service-type" msgstr "{Variable Scheme} prometheus-node-exporter-service-type" #. type: defvar -#: guix-git/doc/guix.texi:25160 +#: guix-git/doc/guix.texi:25522 msgid "This is the service type for the @uref{https://github.com/prometheus/node_exporter/, prometheus-node-exporter} service, its value must be a @code{prometheus-node-exporter-configuration}." msgstr "C'est le type de service pour le service @uref{https://github.com/prometheus/node_exporter/, prometheus-node-exporter}, sa valeur doit être un enregistrement @code{prometheus-node-exporter-configuration}." #. type: lisp -#: guix-git/doc/guix.texi:25163 +#: guix-git/doc/guix.texi:25525 #, no-wrap msgid "(service prometheus-node-exporter-service-type)\n" msgstr "(service prometheus-node-exporter-service-type)\n" #. type: deftp -#: guix-git/doc/guix.texi:25166 +#: guix-git/doc/guix.texi:25528 #, no-wrap msgid "{Data Type} prometheus-node-exporter-configuration" msgstr "{Type de données} prometheus-node-exporter-configuration" #. type: deftp -#: guix-git/doc/guix.texi:25168 +#: guix-git/doc/guix.texi:25530 msgid "Data type representing the configuration of @command{node_exporter}." msgstr "Type de données représentant la configuration de @command{node_exporter}." #. type: item -#: guix-git/doc/guix.texi:25170 +#: guix-git/doc/guix.texi:25532 #, no-wrap msgid "@code{package} (default: @code{go-github-com-prometheus-node-exporter})" msgstr "@code{package} (par défaut : @code{go-github-com-prometheus-node-exporter})" #. type: table -#: guix-git/doc/guix.texi:25172 +#: guix-git/doc/guix.texi:25534 msgid "The prometheus-node-exporter package to use." msgstr "Le paquet prometheus-node-exporter à utiliser." #. type: item -#: guix-git/doc/guix.texi:25173 +#: guix-git/doc/guix.texi:25535 #, no-wrap msgid "@code{web-listen-address} (default: @code{\":9100\"})" msgstr "@code{web-listen-address} (par défaut : @code{\":9100\"})" #. type: item -#: guix-git/doc/guix.texi:25176 +#: guix-git/doc/guix.texi:25538 #, no-wrap msgid "@code{textfile-directory} (default: @code{\"/var/lib/prometheus/node-exporter\"})" msgstr "@code{textfile-directory} (par défaut : @code{\"/var/lib/prometheus/node-exporter\"})" #. type: table -#: guix-git/doc/guix.texi:25180 +#: guix-git/doc/guix.texi:25542 msgid "This directory can be used to export metrics specific to this machine. Files containing metrics in the text format, with the filename ending in @code{.prom} should be placed in this directory." msgstr "Ce répertoire est utilisable pour exporter des métriques spécifiques à cette machine. Les fichiers contenant les métriques au format texte, dont le nom de fichier termine par @code{.prom} devraient être placés dans ce répertoire." #. type: table -#: guix-git/doc/guix.texi:25183 +#: guix-git/doc/guix.texi:25545 msgid "Extra options to pass to the Prometheus node exporter." msgstr "Options supplémentaires à passer au lancement de l'exportateur de nœuds de Prometheus." #. type: subsubheading -#: guix-git/doc/guix.texi:25187 +#: guix-git/doc/guix.texi:25549 #, no-wrap msgid "Zabbix server" msgstr "Server zabbix" #. type: cindex -#: guix-git/doc/guix.texi:25188 +#: guix-git/doc/guix.texi:25550 #, no-wrap msgid "zabbix zabbix-server" msgstr "zabbix zabbix-server" #. type: Plain text -#: guix-git/doc/guix.texi:25191 +#: guix-git/doc/guix.texi:25553 msgid "Zabbix provides monitoring metrics, among others network utilization, CPU load and disk space consumption:" msgstr "Zabbix fournit des métriques de suivi entre autres de l'utilisation du réseau, de la charge CPU et de l'espace disque :" #. type: item -#: guix-git/doc/guix.texi:25193 +#: guix-git/doc/guix.texi:25555 #, no-wrap msgid "High performance, high capacity (able to monitor hundreds of thousands of devices)." msgstr "Haute performance, haute capacité (il est capable de surveiller des centaines de milliers d'appareils)." #. type: item -#: guix-git/doc/guix.texi:25194 +#: guix-git/doc/guix.texi:25556 #, no-wrap msgid "Auto-discovery of servers and network devices and interfaces." msgstr "Découverte automatique des serveurs, des appareils et leurs interfaces réseaux." #. type: item -#: guix-git/doc/guix.texi:25195 +#: guix-git/doc/guix.texi:25557 #, no-wrap msgid "Low-level discovery, allows to automatically start monitoring new items, file systems or network interfaces among others." msgstr "Découverte bas-niveau, qui permet de commencer automatiquement à surveiller de nouveaux éléments, des systèmes de fichiers ou des interfaces réseaux entre autres." #. type: item -#: guix-git/doc/guix.texi:25196 +#: guix-git/doc/guix.texi:25558 #, no-wrap msgid "Distributed monitoring with centralized web administration." msgstr "Surveillance distribuée avec une administration web centralisée." #. type: item -#: guix-git/doc/guix.texi:25197 +#: guix-git/doc/guix.texi:25559 #, no-wrap msgid "Native high performance agents." msgstr "Agents natifs haute-performance." #. type: item -#: guix-git/doc/guix.texi:25198 +#: guix-git/doc/guix.texi:25560 #, no-wrap msgid "SLA, and ITIL KPI metrics on reporting." msgstr "Métriques SLA et ITIL KPI dans les rapports." #. type: item -#: guix-git/doc/guix.texi:25199 +#: guix-git/doc/guix.texi:25561 #, no-wrap msgid "High-level (business) view of monitored resources through user-defined visual console screens and dashboards." msgstr "Vue haut-niveau (businness) des ressources surveillées à travers des écrans de consoles visuelles définie par l'utilisateur et des panneaux de commande." #. type: item -#: guix-git/doc/guix.texi:25200 +#: guix-git/doc/guix.texi:25562 #, no-wrap msgid "Remote command execution through Zabbix proxies." msgstr "Exécution à distance à travers les mandataires Zabbix." #. type: Plain text -#: guix-git/doc/guix.texi:25206 +#: guix-git/doc/guix.texi:25568 msgid "Available @code{zabbix-server-configuration} fields are:" msgstr "Les champs de @code{zabbix-server-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:25207 +#: guix-git/doc/guix.texi:25569 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} package zabbix-server" msgstr "{paramètre de @code{zabbix-server-configuration}} package zabbix-server" #. type: deftypevr -#: guix-git/doc/guix.texi:25209 +#: guix-git/doc/guix.texi:25571 msgid "The zabbix-server package." msgstr "Le paquet zabbix-server." #. type: deftypevr -#: guix-git/doc/guix.texi:25212 +#: guix-git/doc/guix.texi:25574 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string user" msgstr "{paramètre de @code{zabbix-server-configuration}} string user" #. type: deftypevr -#: guix-git/doc/guix.texi:25214 +#: guix-git/doc/guix.texi:25576 msgid "User who will run the Zabbix server." msgstr "Utilisateur qui lancera le serveur Zabbix." #. type: deftypevr -#: guix-git/doc/guix.texi:25216 guix-git/doc/guix.texi:25223 -#: guix-git/doc/guix.texi:25237 guix-git/doc/guix.texi:25244 -#: guix-git/doc/guix.texi:25345 guix-git/doc/guix.texi:25352 -#: guix-git/doc/guix.texi:25463 guix-git/doc/guix.texi:25470 +#: guix-git/doc/guix.texi:25578 guix-git/doc/guix.texi:25585 +#: guix-git/doc/guix.texi:25599 guix-git/doc/guix.texi:25606 +#: guix-git/doc/guix.texi:25707 guix-git/doc/guix.texi:25714 msgid "Defaults to @samp{\"zabbix\"}." msgstr "La valeur par défaut est @samp{\"zabbix\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25219 +#: guix-git/doc/guix.texi:25581 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} group group" msgstr "{paramètre de @code{zabbix-server-configuration}} group group" #. type: deftypevr -#: guix-git/doc/guix.texi:25221 +#: guix-git/doc/guix.texi:25583 msgid "Group who will run the Zabbix server." msgstr "Groupe qui lancera le serveur Zabbix." #. type: deftypevr -#: guix-git/doc/guix.texi:25226 +#: guix-git/doc/guix.texi:25588 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-host" msgstr "{paramètre de @code{zabbix-server-configuration}} string db-host" -#. type: deftypevr -#: guix-git/doc/guix.texi:25228 guix-git/doc/guix.texi:25447 +#. type: table +#: guix-git/doc/guix.texi:25590 guix-git/doc/guix.texi:25813 msgid "Database host name." msgstr "Le nom d'hôte de la base de données." #. type: deftypevr -#: guix-git/doc/guix.texi:25230 +#: guix-git/doc/guix.texi:25592 msgid "Defaults to @samp{\"127.0.0.1\"}." msgstr "La valeur par défaut est @samp{\"127.0.0.1\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25233 +#: guix-git/doc/guix.texi:25595 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-name" msgstr "{paramètre de @code{zabbix-server-configuration}} string db-name" -#. type: deftypevr -#: guix-git/doc/guix.texi:25235 guix-git/doc/guix.texi:25461 +#. type: table +#: guix-git/doc/guix.texi:25597 guix-git/doc/guix.texi:25819 msgid "Database name." msgstr "Nom de la base de données." #. type: deftypevr -#: guix-git/doc/guix.texi:25240 +#: guix-git/doc/guix.texi:25602 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-user" msgstr "{paramètre de @code{zabbix-server-configuration}} string db-user" -#. type: deftypevr -#: guix-git/doc/guix.texi:25242 guix-git/doc/guix.texi:25468 +#. type: table +#: guix-git/doc/guix.texi:25604 guix-git/doc/guix.texi:25822 msgid "Database user." msgstr "Utilisateur de la base de données." #. type: deftypevr -#: guix-git/doc/guix.texi:25247 +#: guix-git/doc/guix.texi:25609 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-password" msgstr "{paramètre de @code{zabbix-server-configuration}} string db-password" #. type: deftypevr -#: guix-git/doc/guix.texi:25250 +#: guix-git/doc/guix.texi:25612 msgid "Database password. Please, use @code{include-files} with @code{DBPassword=SECRET} inside a specified file instead." msgstr "Mot de passe de la base de données. Utilisez plutôt @code{include-files} avec @code{DBPassword=SECRET} dans le fichier spécifié à la place." #. type: deftypevr -#: guix-git/doc/guix.texi:25255 +#: guix-git/doc/guix.texi:25617 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} number db-port" msgstr "{paramètre de @code{zabbix-server-configuration}} number db-port" -#. type: deftypevr -#: guix-git/doc/guix.texi:25257 guix-git/doc/guix.texi:25454 +#. type: table +#: guix-git/doc/guix.texi:25619 guix-git/doc/guix.texi:25816 msgid "Database port." msgstr "Port de la base de données." #. type: deftypevr -#: guix-git/doc/guix.texi:25259 guix-git/doc/guix.texi:25456 +#: guix-git/doc/guix.texi:25621 msgid "Defaults to @samp{5432}." msgstr "La valeur par défaut est @samp{5432}." #. type: deftypevr -#: guix-git/doc/guix.texi:25262 +#: guix-git/doc/guix.texi:25624 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string log-type" msgstr "{paramètre de @code{zabbix-server-configuration}} string log-type" #. type: deftypevr -#: guix-git/doc/guix.texi:25264 guix-git/doc/guix.texi:25365 +#: guix-git/doc/guix.texi:25626 guix-git/doc/guix.texi:25727 msgid "Specifies where log messages are written to:" msgstr "Spécifie où les messages de journalisation seront écrits :" #. type: itemize -#: guix-git/doc/guix.texi:25268 guix-git/doc/guix.texi:25369 +#: guix-git/doc/guix.texi:25630 guix-git/doc/guix.texi:25731 msgid "@code{system} - syslog." msgstr "@code{system} - syslog." #. type: itemize -#: guix-git/doc/guix.texi:25271 guix-git/doc/guix.texi:25372 +#: guix-git/doc/guix.texi:25633 guix-git/doc/guix.texi:25734 msgid "@code{file} - file specified with @code{log-file} parameter." msgstr "@code{file} - fichier spécifié par le paramètre @code{log-file}." #. type: itemize -#: guix-git/doc/guix.texi:25274 guix-git/doc/guix.texi:25375 +#: guix-git/doc/guix.texi:25636 guix-git/doc/guix.texi:25737 msgid "@code{console} - standard output." msgstr "@code{console} - sortie standard." #. type: deftypevr -#: guix-git/doc/guix.texi:25281 +#: guix-git/doc/guix.texi:25643 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string log-file" msgstr "{paramètre de @code{zabbix-server-configuration}} string log-file" #. type: deftypevr -#: guix-git/doc/guix.texi:25283 guix-git/doc/guix.texi:25384 +#: guix-git/doc/guix.texi:25645 guix-git/doc/guix.texi:25746 msgid "Log file name for @code{log-type} @code{file} parameter." msgstr "Nom du fichier de journal lorsque le paramètre @code{log-type} vaut @code{file}." #. type: deftypevr -#: guix-git/doc/guix.texi:25285 +#: guix-git/doc/guix.texi:25647 msgid "Defaults to @samp{\"/var/log/zabbix/server.log\"}." msgstr "La valeur par défaut est @samp{\"/var/log/zabbix/server.log\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25288 +#: guix-git/doc/guix.texi:25650 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string pid-file" msgstr "{paramètre de @code{zabbix-server-configuration}} string pid-file" #. type: deftypevr -#: guix-git/doc/guix.texi:25290 guix-git/doc/guix.texi:25391 +#: guix-git/doc/guix.texi:25652 guix-git/doc/guix.texi:25753 msgid "Name of PID file." msgstr "Nom du fichier de PID." #. type: deftypevr -#: guix-git/doc/guix.texi:25292 +#: guix-git/doc/guix.texi:25654 msgid "Defaults to @samp{\"/var/run/zabbix/zabbix_server.pid\"}." msgstr "La valeur par défaut est @samp{\"/var/run/zabbix/zabbix_server.pid\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25295 +#: guix-git/doc/guix.texi:25657 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string ssl-ca-location" msgstr "{paramètre de @code{zabbix-server-configuration}} string ssl-ca-location" #. type: deftypevr -#: guix-git/doc/guix.texi:25298 +#: guix-git/doc/guix.texi:25660 msgid "The location of certificate authority (CA) files for SSL server certificate verification." msgstr "Emplacement des fichiers d'autorités de certification (AC) pour la vérification des certificats SSL du serveur." #. type: deftypevr -#: guix-git/doc/guix.texi:25300 +#: guix-git/doc/guix.texi:25662 msgid "Defaults to @samp{\"/etc/ssl/certs/ca-certificates.crt\"}." msgstr "La valeur par défaut est @samp{\"/etc/ssl/certs/ca-certificates.crt\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25303 +#: guix-git/doc/guix.texi:25665 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string ssl-cert-location" msgstr "{paramètre de @code{zabbix-server-configuration}} string ssl-cert-location" #. type: deftypevr -#: guix-git/doc/guix.texi:25305 +#: guix-git/doc/guix.texi:25667 msgid "Location of SSL client certificates." msgstr "Emplacement des certificats SSL des clients." #. type: deftypevr -#: guix-git/doc/guix.texi:25307 +#: guix-git/doc/guix.texi:25669 msgid "Defaults to @samp{\"/etc/ssl/certs\"}." msgstr "La valeur par défaut est @samp{\"/etc/ssl/certs\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25310 +#: guix-git/doc/guix.texi:25672 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string extra-options" msgstr "{paramètre de @code{zabbix-server-configuration}} string extra-options" #. type: deftypevr -#: guix-git/doc/guix.texi:25312 guix-git/doc/guix.texi:25416 +#: guix-git/doc/guix.texi:25674 guix-git/doc/guix.texi:25778 msgid "Extra options will be appended to Zabbix server configuration file." msgstr "Options supplémentaires ajoutées à la fin du fichier de configuration du serveur Zabbix." #. type: deftypevr -#: guix-git/doc/guix.texi:25317 +#: guix-git/doc/guix.texi:25679 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} include-files include-files" msgstr "{paramètre de @code{zabbix-server-configuration}} include-files include-files" #. type: deftypevr -#: guix-git/doc/guix.texi:25320 guix-git/doc/guix.texi:25424 +#: guix-git/doc/guix.texi:25682 guix-git/doc/guix.texi:25786 msgid "You may include individual files or all files in a directory in the configuration file." msgstr "Vous pouvez inclure des fichiers individuels ou tous les fichiers d'un répertoire dans le fichier de configuration." #. type: subsubheading -#: guix-git/doc/guix.texi:25327 +#: guix-git/doc/guix.texi:25689 #, no-wrap msgid "Zabbix agent" msgstr "Agent zabbix" #. type: cindex -#: guix-git/doc/guix.texi:25328 +#: guix-git/doc/guix.texi:25690 #, no-wrap msgid "zabbix zabbix-agent" msgstr "zabbix zabbix-agent" #. type: Plain text -#: guix-git/doc/guix.texi:25331 +#: guix-git/doc/guix.texi:25693 msgid "Zabbix agent gathers information for Zabbix server." msgstr "L'agent Zabbix récupère des informations pour le serveur Zabbix." #. type: Plain text -#: guix-git/doc/guix.texi:25335 +#: guix-git/doc/guix.texi:25697 msgid "Available @code{zabbix-agent-configuration} fields are:" msgstr "Les champs de @code{zabbix-agent-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:25336 +#: guix-git/doc/guix.texi:25698 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} package zabbix-agent" msgstr "{paramètre de @code{zabbix-agent-configuration}} package zabbix-agent" #. type: deftypevr -#: guix-git/doc/guix.texi:25338 +#: guix-git/doc/guix.texi:25700 msgid "The zabbix-agent package." msgstr "Le paquet zabbix-agent." #. type: deftypevr -#: guix-git/doc/guix.texi:25341 +#: guix-git/doc/guix.texi:25703 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string user" msgstr "{paramètre de @code{zabbix-agent-configuration}} string user" #. type: deftypevr -#: guix-git/doc/guix.texi:25343 +#: guix-git/doc/guix.texi:25705 msgid "User who will run the Zabbix agent." msgstr "Utilisateur qui lancera l'agent Zabbix." #. type: deftypevr -#: guix-git/doc/guix.texi:25348 +#: guix-git/doc/guix.texi:25710 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} group group" msgstr "{paramètre de @code{zabbix-agent-configuration}} group group" #. type: deftypevr -#: guix-git/doc/guix.texi:25350 +#: guix-git/doc/guix.texi:25712 msgid "Group who will run the Zabbix agent." msgstr "Groupe qui lancera l'agent Zabbix." #. type: deftypevr -#: guix-git/doc/guix.texi:25355 +#: guix-git/doc/guix.texi:25717 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string hostname" msgstr "{paramètre de @code{zabbix-agent-configuration}} string hostname" #. type: deftypevr -#: guix-git/doc/guix.texi:25358 +#: guix-git/doc/guix.texi:25720 msgid "Unique, case sensitive hostname which is required for active checks and must match hostname as configured on the server." msgstr "Noms d'hôte unique et sensible à la casse requis pour les vérifications actives et qui doit correspondre au nom d'hôte configuré sur le serveur." #. type: deftypevr -#: guix-git/doc/guix.texi:25363 +#: guix-git/doc/guix.texi:25725 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string log-type" msgstr "{paramètre de @code{zabbix-agent-configuration}} string log-type" #. type: deftypevr -#: guix-git/doc/guix.texi:25382 +#: guix-git/doc/guix.texi:25744 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string log-file" msgstr "{paramètre de @code{zabbix-agent-configuration}} string log-file" #. type: deftypevr -#: guix-git/doc/guix.texi:25386 +#: guix-git/doc/guix.texi:25748 msgid "Defaults to @samp{\"/var/log/zabbix/agent.log\"}." msgstr "La valeur par défaut est @samp{\"/var/log/zabbix/agent.log\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25389 +#: guix-git/doc/guix.texi:25751 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string pid-file" msgstr "{paramètre de @code{zabbix-agent-configuration}} string pid-file" #. type: deftypevr -#: guix-git/doc/guix.texi:25393 +#: guix-git/doc/guix.texi:25755 msgid "Defaults to @samp{\"/var/run/zabbix/zabbix_agent.pid\"}." msgstr "La valeur par défaut est @samp{\"/var/run/zabbix/zabbix_agent.pid\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25396 +#: guix-git/doc/guix.texi:25758 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} list server" msgstr "{paramètre de @code{zabbix-agent-configuration}} list server" #. type: deftypevr -#: guix-git/doc/guix.texi:25400 +#: guix-git/doc/guix.texi:25762 msgid "List of IP addresses, optionally in CIDR notation, or hostnames of Zabbix servers and Zabbix proxies. Incoming connections will be accepted only from the hosts listed here." msgstr "Liste d'adresses IP, éventuellement en notation CIDR ou de noms d'hôtes de serveurs Zabbix et de mandataires Zabbix. Les connexions entrantes ne seront acceptées que si elles viennent des hôtes listés ici." #. type: deftypevr -#: guix-git/doc/guix.texi:25402 guix-git/doc/guix.texi:25411 +#: guix-git/doc/guix.texi:25764 guix-git/doc/guix.texi:25773 msgid "Defaults to @samp{(\"127.0.0.1\")}." msgstr "La valeur par défaut est @samp{(\"127.0.0.1\")}." #. type: deftypevr -#: guix-git/doc/guix.texi:25405 +#: guix-git/doc/guix.texi:25767 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} list server-active" msgstr "{paramètre de @code{zabbix-agent-configuration}} list server-active" #. type: deftypevr -#: guix-git/doc/guix.texi:25409 +#: guix-git/doc/guix.texi:25771 msgid "List of IP:port (or hostname:port) pairs of Zabbix servers and Zabbix proxies for active checks. If port is not specified, default port is used. If this parameter is not specified, active checks are disabled." msgstr "Liste de paires d'IP:port (ou nom d'hôte:port) de serveurs Zabbix et de mandataires Zabbix pour les vérifications actives. Si le port n'est pas spécifié, le port par défaut est utilisé. Si ce paramètre n'est pas spécifié, les vérifications actives sont désactivées." #. type: deftypevr -#: guix-git/doc/guix.texi:25414 +#: guix-git/doc/guix.texi:25776 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string extra-options" msgstr "{paramètre de @code{zabbix-agent-configuration}} string extra-options" #. type: deftypevr -#: guix-git/doc/guix.texi:25421 +#: guix-git/doc/guix.texi:25783 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} include-files include-files" msgstr "{paramètre de @code{zabbix-agent-configuration}} include-files include-files" #. type: subsubheading -#: guix-git/doc/guix.texi:25431 +#: guix-git/doc/guix.texi:25793 #, no-wrap msgid "Zabbix front-end" msgstr "Interface utilisateur Zabbix" #. type: cindex -#: guix-git/doc/guix.texi:25432 +#: guix-git/doc/guix.texi:25794 #, no-wrap msgid "zabbix zabbix-front-end" msgstr "zabbix zabbix-front-end" #. type: Plain text -#: guix-git/doc/guix.texi:25435 +#: guix-git/doc/guix.texi:25797 msgid "This service provides a WEB interface to Zabbix server." msgstr "Ce service fournit une interface WEB au serveur Zabbix." -#. type: Plain text -#: guix-git/doc/guix.texi:25439 +#. type: deftp +#: guix-git/doc/guix.texi:25800 +#, fuzzy, no-wrap +#| msgid "{Data Type} inetd-configuration" +msgid "{Data Type} zabbix-front-end-configuration" +msgstr "{Type de données} inetd-configuration" + +#. type: deftp +#: guix-git/doc/guix.texi:25802 msgid "Available @code{zabbix-front-end-configuration} fields are:" msgstr "Les champs de @code{zabbix-front-end-configuration} disponibles sont :" -#. type: deftypevr -#: guix-git/doc/guix.texi:25440 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} nginx-server-configuration-list nginx" -msgstr "{paramètre de @code{zabbix-front-end-configuration}} nginx-server-configuration-list nginx" +#. type: item +#: guix-git/doc/guix.texi:25804 +#, fuzzy, no-wrap +#| msgid "@code{server} (default: @code{xorg-server})" +msgid "@code{zabbix-server} (default: @code{zabbix-server}) (type: file-like)" +msgstr "@code{server} (par défaut : @code{xorg-server})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25442 guix-git/doc/guix.texi:31735 -msgid "NGINX configuration." -msgstr "Configuration Nginx." +#. type: table +#: guix-git/doc/guix.texi:25806 +#, fuzzy +#| msgid "The zabbix-server package." +msgid "The Zabbix server package to use." +msgstr "Le paquet zabbix-server." -#. type: deftypevr -#: guix-git/doc/guix.texi:25445 +#. type: item +#: guix-git/doc/guix.texi:25807 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-host" -msgstr "{paramètre de @code{zabbix-front-end-configuration}} string db-host" +msgid "@code{fastcgi-params} (type: list)" +msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25452 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} number db-port" -msgstr "{paramètre de @code{zabbix-front-end-configuration}} number db-port" +#. type: table +#: guix-git/doc/guix.texi:25810 +#, fuzzy +#| msgid "Raw content that will be added to the configuration file." +msgid "List of FastCGI parameter pairs that will be included in the NGINX configuration." +msgstr "Contenu brut qui sera ajouté au fichier de configuration." -#. type: deftypevr -#: guix-git/doc/guix.texi:25459 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-name" -msgstr "{paramètre de @code{zabbix-front-end-configuration}} string db-name" +#. type: item +#: guix-git/doc/guix.texi:25811 +#, fuzzy, no-wrap +#| msgid "@code{host} (default: @code{\"localhost\"})" +msgid "@code{db-host} (default: @code{\\\"localhost\\\"}) (type: string)" +msgstr "@code{host} (par défaut : @code{\"localhost\"})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25466 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-user" -msgstr "{paramètre de @code{zabbix-front-end-configuration}} string db-user" +#. type: item +#: guix-git/doc/guix.texi:25814 +#, fuzzy, no-wrap +#| msgid "@code{port} (default: @code{5432})" +msgid "@code{db-port} (default: @code{5432}) (type: number)" +msgstr "@code{port} (par défaut : @code{5432})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25473 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-password" -msgstr "{paramètre de @code{zabbix-front-end-configuration}} string db-password" +#. type: item +#: guix-git/doc/guix.texi:25817 +#, fuzzy, no-wrap +#| msgid "@code{name-server-uri} (default: @code{disabled}) (type: maybe-string)" +msgid "@code{db-name} (default: @code{\\\"zabbix\\\"}) (type: string)" +msgstr "@code{name-server-uri} (par défaut : @code{disabled}) (type : maybe-string)" -#. type: deftypevr -#: guix-git/doc/guix.texi:25475 +#. type: item +#: guix-git/doc/guix.texi:25820 +#, fuzzy, no-wrap +#| msgid "@code{dbus} (default: @code{dbus}) (type: package)" +msgid "@code{db-user} (default: @code{\\\"zabbix\\\"}) (type: string)" +msgstr "@code{dbus} (par défaut : @code{dbus}) (type : paquet)" + +#. type: item +#: guix-git/doc/guix.texi:25823 +#, fuzzy, no-wrap +#| msgid "@code{password} (default: @code{\"\"})" +msgid "@code{db-password} (default: @code{\\\"\\\"}) (type: string)" +msgstr "@code{password} (par défaut : @code{\"\"})" + +#. type: table +#: guix-git/doc/guix.texi:25825 msgid "Database password. Please, use @code{db-secret-file} instead." msgstr "Mot de passe de la base de données. Utilisez plutôt @code{db-secret-file}." -#. type: deftypevr -#: guix-git/doc/guix.texi:25480 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-secret-file" -msgstr "{paramètre de @code{zabbix-front-end-configuration}} string db-secret-file" +#. type: item +#: guix-git/doc/guix.texi:25826 +#, fuzzy, no-wrap +#| msgid "@code{bash-profile} (default: @code{()}) (type: text-config)" +msgid "@code{db-secret-file} (default: @code{\\\"\\\"}) (type: string)" +msgstr "@code{bash-profile} (par défaut : @code{()}) (type : text-config)" -#. type: deftypevr -#: guix-git/doc/guix.texi:25485 -msgid "Secret file containing the credentials for the Zabbix front-end. The value must be a local file name, not a G-expression. You are expected to create this file manually. Its contents will be copied into @file{zabbix.conf.php} as the value of @code{$DB['PASSWORD']}." -msgstr "Fichier secret contenant les identifiants pour l'interface de Zabbix. La valeur doit être un nom de fichier local, pas une G-expression. Vous devez créer ce fichier manuellement. Sont contenu sera recopié dans @file{zabbix.conf.php} en tant que valeur de @code{$DB['PASSWORD']}." +#. type: table +#: guix-git/doc/guix.texi:25830 +msgid "Secret file which will be appended to @file{zabbix.conf.php} file. This file contains credentials for use by Zabbix front-end. You are expected to create it manually." +msgstr "Fichier de secrets qui sera ajouté au fichier @file{zabbix.conf.php}. Ce fichier contient les paramètres d'authentification utilisés par Zabbix. On s'attend à ce que vous le créiez manuellement." -#. type: deftypevr -#: guix-git/doc/guix.texi:25490 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string zabbix-host" -msgstr "{paramètre de @code{zabbix-front-end-configuration}} string zabbix-host" +#. type: item +#: guix-git/doc/guix.texi:25831 +#, fuzzy, no-wrap +#| msgid "@code{host} (default: @code{\"localhost\"})" +msgid "@code{zabbix-host} (default: @code{\\\"localhost\\\"}) (type: string)" +msgstr "@code{host} (par défaut : @code{\"localhost\"})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25492 +#. type: table +#: guix-git/doc/guix.texi:25833 msgid "Zabbix server hostname." msgstr "Nom d'hôte du serveur Zabbix." -#. type: deftypevr -#: guix-git/doc/guix.texi:25497 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} number zabbix-port" -msgstr "{paramètre de @code{zabbix-front-end-configuration}} number zabbix-port" +#. type: item +#: guix-git/doc/guix.texi:25834 +#, fuzzy, no-wrap +#| msgid "@code{xdg-flavor?} (default: @code{#t}) (type: boolean)" +msgid "@code{zabbix-port} (default: @code{10051}) (type: number)" +msgstr "@code{xdg-flavor?} (par défaut : @code{#t}) (type : booléen)" -#. type: deftypevr -#: guix-git/doc/guix.texi:25499 +#. type: table +#: guix-git/doc/guix.texi:25836 msgid "Zabbix server port." msgstr "Port du serveur Zabbix." -#. type: deftypevr -#: guix-git/doc/guix.texi:25501 -msgid "Defaults to @samp{10051}." -msgstr "La valeur par défaut est @samp{10051}." - #. type: cindex -#: guix-git/doc/guix.texi:25509 +#: guix-git/doc/guix.texi:25846 #, no-wrap msgid "Kerberos" msgstr "Kerberos" #. type: Plain text -#: guix-git/doc/guix.texi:25513 +#: guix-git/doc/guix.texi:25850 msgid "The @code{(gnu services kerberos)} module provides services relating to the authentication protocol @dfn{Kerberos}." msgstr "Le module @code{(gnu services kerberos)} fournit des services liés au protocole d'authentification @dfn{Kerberos}." #. type: subsubheading -#: guix-git/doc/guix.texi:25514 +#: guix-git/doc/guix.texi:25851 #, no-wrap msgid "Krb5 Service" msgstr "Service Krb5" #. type: Plain text -#: guix-git/doc/guix.texi:25521 +#: guix-git/doc/guix.texi:25858 msgid "Programs using a Kerberos client library normally expect a configuration file in @file{/etc/krb5.conf}. This service generates such a file from a definition provided in the operating system declaration. It does not cause any daemon to be started." msgstr "Les programmes qui utilisent une bibliothèque cliente Kerberos s'attendent à trouver un fichier de configuration dans @file{/etc/krb5.conf}. Ce service génère un tel fichier à partir d'une définition fournie par la déclaration de système d'exploitation. Il ne démarre aucun démon." #. type: Plain text -#: guix-git/doc/guix.texi:25525 +#: guix-git/doc/guix.texi:25862 msgid "No ``keytab'' files are provided by this service---you must explicitly create them. This service is known to work with the MIT client library, @code{mit-krb5}. Other implementations have not been tested." msgstr "Aucun fichier « keytab » n'est fourni par ce service — vous devez les créer explicitement. Ce service est connu pour fonctionner avec la bibliothèque cliente MIT, @code{mit-krb5}. Les autres implémentations n'ont pas été testées." #. type: defvr -#: guix-git/doc/guix.texi:25526 +#: guix-git/doc/guix.texi:25863 #, no-wrap msgid "{Scheme Variable} krb5-service-type" msgstr "{Variable Scheme} krb5-service-type" #. type: defvr -#: guix-git/doc/guix.texi:25528 +#: guix-git/doc/guix.texi:25865 msgid "A service type for Kerberos 5 clients." msgstr "Un type de service pour les clients Kerberos 5." #. type: Plain text -#: guix-git/doc/guix.texi:25532 +#: guix-git/doc/guix.texi:25869 msgid "Here is an example of its use:" msgstr "Voici un exemple d'utilisation :" #. type: lisp -#: guix-git/doc/guix.texi:25546 +#: guix-git/doc/guix.texi:25883 #, no-wrap msgid "" "(service krb5-service-type\n" @@ -47948,206 +48636,206 @@ msgstr "" " (kdc \"keys.argrx.edu\"))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:25550 +#: guix-git/doc/guix.texi:25887 msgid "This example provides a Kerberos@tie{}5 client configuration which:" msgstr "Cet exemple fournit une configuration cliente Kerberos@tie{}5 qui :" #. type: item -#: guix-git/doc/guix.texi:25551 +#: guix-git/doc/guix.texi:25888 #, no-wrap msgid "Recognizes two realms, @i{viz:} ``EXAMPLE.COM'' and ``ARGRX.EDU'', both" msgstr "Reconnais deux domaines : « EXAMPLE.COM » et « ARGREX.EDU », tous deux" #. type: itemize -#: guix-git/doc/guix.texi:25553 +#: guix-git/doc/guix.texi:25890 msgid "of which have distinct administration servers and key distribution centers;" msgstr "aillant des serveurs d'administration et des centres de distribution de clefs distincts ;" #. type: item -#: guix-git/doc/guix.texi:25553 +#: guix-git/doc/guix.texi:25890 #, no-wrap msgid "Will default to the realm ``EXAMPLE.COM'' if the realm is not explicitly" msgstr "Utilisera le domaine « EXAMPLE.COM » pr défaut si le domaine n'est pas spécifié" #. type: itemize -#: guix-git/doc/guix.texi:25555 +#: guix-git/doc/guix.texi:25892 msgid "specified by clients;" msgstr "explicitement par les clients ;" #. type: item -#: guix-git/doc/guix.texi:25555 +#: guix-git/doc/guix.texi:25892 #, no-wrap msgid "Accepts services which only support encryption types known to be weak." msgstr "Acceptera les services qui ne supportent que des types de chiffrements connus pour être faibles." #. type: Plain text -#: guix-git/doc/guix.texi:25563 +#: guix-git/doc/guix.texi:25900 msgid "The @code{krb5-realm} and @code{krb5-configuration} types have many fields. Only the most commonly used ones are described here. For a full list, and more detailed explanation of each, see the MIT @uref{https://web.mit.edu/kerberos/krb5-devel/doc/admin/conf_files/krb5_conf.html,,krb5.conf} documentation." msgstr "Les types @code{krb5-realm} et @code{krb5-configuration} ont de nombreux champs. Seuls les plus communs sont décrits ici. Pour une liste complète, et plus de détails sur chacun d'entre eux, voir la documentation de MIT @uref{https://web.mit.edu/kerberos/krb5-devel/doc/admin/conf_files/krb5_conf.html,,krb5.conf}." #. type: deftp -#: guix-git/doc/guix.texi:25565 +#: guix-git/doc/guix.texi:25902 #, no-wrap msgid "{Data Type} krb5-realm" msgstr "{Type de données} krb5-realm" #. type: cindex -#: guix-git/doc/guix.texi:25566 +#: guix-git/doc/guix.texi:25903 #, no-wrap msgid "realm, kerberos" msgstr "domaine, kerberos" #. type: table -#: guix-git/doc/guix.texi:25572 +#: guix-git/doc/guix.texi:25909 msgid "This field is a string identifying the name of the realm. A common convention is to use the fully qualified DNS name of your organization, converted to upper case." msgstr "Ce champ est une chaîne identifiant le nom d'un domaine. Une convention courante est d'utiliser le nom pleinement qualifié de votre organisation, converti en majuscule." #. type: code{#1} -#: guix-git/doc/guix.texi:25573 +#: guix-git/doc/guix.texi:25910 #, no-wrap msgid "admin-server" msgstr "admin-server" #. type: table -#: guix-git/doc/guix.texi:25576 +#: guix-git/doc/guix.texi:25913 msgid "This field is a string identifying the host where the administration server is running." msgstr "Ce champ est une chaîne identifiant l'hôte où le serveur d'administration tourne." #. type: code{#1} -#: guix-git/doc/guix.texi:25577 +#: guix-git/doc/guix.texi:25914 #, no-wrap msgid "kdc" msgstr "kdc" #. type: table -#: guix-git/doc/guix.texi:25580 +#: guix-git/doc/guix.texi:25917 msgid "This field is a string identifying the key distribution center for the realm." msgstr "Ce champ est une chaîne identifiant le centre de distribution de clefs pour ce domaine." #. type: deftp -#: guix-git/doc/guix.texi:25583 +#: guix-git/doc/guix.texi:25920 #, no-wrap msgid "{Data Type} krb5-configuration" msgstr "{Type de données} krb5-configuration" #. type: item -#: guix-git/doc/guix.texi:25586 +#: guix-git/doc/guix.texi:25923 #, no-wrap msgid "@code{allow-weak-crypto?} (default: @code{#f})" msgstr "@code{allow-weak-crypto?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:25589 +#: guix-git/doc/guix.texi:25926 msgid "If this flag is @code{#t} then services which only offer encryption algorithms known to be weak will be accepted." msgstr "Si ce drapeau est @code{#t} les services qui n'offrent que des algorithmes de chiffrement faibles seront acceptés." #. type: item -#: guix-git/doc/guix.texi:25590 +#: guix-git/doc/guix.texi:25927 #, no-wrap msgid "@code{default-realm} (default: @code{#f})" msgstr "@code{default-realm} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:25597 +#: guix-git/doc/guix.texi:25934 msgid "This field should be a string identifying the default Kerberos realm for the client. You should set this field to the name of your Kerberos realm. If this value is @code{#f} then a realm must be specified with every Kerberos principal when invoking programs such as @command{kinit}." msgstr "Ce champ devrait être une chaîne identifiant le domaine Kerberos par défaut pour le client. Vous devriez mettre le nom de votre domaine Kerberos dans ce champ. Si cette valeur est @code{#f} alors un domaine doit être spécifié pour chaque principal Kerberos à l'invocation des programmes comme @command{kinit}." #. type: code{#1} -#: guix-git/doc/guix.texi:25598 +#: guix-git/doc/guix.texi:25935 #, no-wrap msgid "realms" msgstr "realms" #. type: table -#: guix-git/doc/guix.texi:25603 +#: guix-git/doc/guix.texi:25940 msgid "This should be a non-empty list of @code{krb5-realm} objects, which clients may access. Normally, one of them will have a @code{name} field matching the @code{default-realm} field." msgstr "Cela doit être une liste non-vide d'objets @code{krb5-realm}, auxquels les clients peuvent accéder. Normalement, l'un d'entre eux aura un champ @code{name} qui correspond au champ @code{default-realm}." #. type: subsubheading -#: guix-git/doc/guix.texi:25607 +#: guix-git/doc/guix.texi:25944 #, no-wrap msgid "PAM krb5 Service" msgstr "Service PAM krb5" #. type: cindex -#: guix-git/doc/guix.texi:25608 +#: guix-git/doc/guix.texi:25945 #, no-wrap msgid "pam-krb5" msgstr "pam-krb5" #. type: Plain text -#: guix-git/doc/guix.texi:25614 +#: guix-git/doc/guix.texi:25951 msgid "The @code{pam-krb5} service allows for login authentication and password management via Kerberos. You will need this service if you want PAM enabled applications to authenticate users using Kerberos." msgstr "Le service @code{pam-krb5} permet la connexion et la gestion des mots de passe par Kerberos. Vous aurez besoin de ce service si vous voulez que les applications qui utilisent PAM puissent authentifier automatiquement les utilisateurs avec Kerberos." #. type: defvr -#: guix-git/doc/guix.texi:25615 +#: guix-git/doc/guix.texi:25952 #, no-wrap msgid "{Scheme Variable} pam-krb5-service-type" msgstr "{Variable Scheme} pam-krb5-service-type" #. type: defvr -#: guix-git/doc/guix.texi:25617 +#: guix-git/doc/guix.texi:25954 msgid "A service type for the Kerberos 5 PAM module." msgstr "Un type de service pour le module PAM Kerberos 5." #. type: deftp -#: guix-git/doc/guix.texi:25619 +#: guix-git/doc/guix.texi:25956 #, no-wrap msgid "{Data Type} pam-krb5-configuration" msgstr "{Type de données} pam-krb5-configuration" #. type: deftp -#: guix-git/doc/guix.texi:25622 +#: guix-git/doc/guix.texi:25959 msgid "Data type representing the configuration of the Kerberos 5 PAM module. This type has the following parameters:" msgstr "Type de données représentant la configuration du module PAM Kerberos 5. Ce type a les paramètres suivants :" #. type: item -#: guix-git/doc/guix.texi:25623 +#: guix-git/doc/guix.texi:25960 #, no-wrap msgid "@code{pam-krb5} (default: @code{pam-krb5})" msgstr "@code{pam-krb5} (par défaut : @code{pam-krb5})" #. type: table -#: guix-git/doc/guix.texi:25625 +#: guix-git/doc/guix.texi:25962 msgid "The pam-krb5 package to use." msgstr "Le paquet pam-krb5 à utiliser." #. type: item -#: guix-git/doc/guix.texi:25626 +#: guix-git/doc/guix.texi:25963 #, no-wrap msgid "@code{minimum-uid} (default: @code{1000})" msgstr "@code{minimum-uid} (par défaut : @code{1000})" #. type: table -#: guix-git/doc/guix.texi:25629 +#: guix-git/doc/guix.texi:25966 msgid "The smallest user ID for which Kerberos authentications should be attempted. Local accounts with lower values will silently fail to authenticate." msgstr "Le plus petite ID utilisateur pour lequel les authentifications Kerberos devraient être tentées. Les comptes locaux avec une valeur plus petite échoueront silencieusement leur authentification Kerberos." #. type: cindex -#: guix-git/doc/guix.texi:25635 +#: guix-git/doc/guix.texi:25972 #, no-wrap msgid "LDAP" msgstr "LDAP" #. type: cindex -#: guix-git/doc/guix.texi:25636 +#: guix-git/doc/guix.texi:25973 #, no-wrap msgid "nslcd, LDAP service" msgstr "nslcd, service LDAP" #. type: Plain text -#: guix-git/doc/guix.texi:25643 +#: guix-git/doc/guix.texi:25980 msgid "The @code{(gnu services authentication)} module provides the @code{nslcd-service-type}, which can be used to authenticate against an LDAP server. In addition to configuring the service itself, you may want to add @code{ldap} as a name service to the Name Service Switch. @xref{Name Service Switch} for detailed information." msgstr "Le module @code{(gnu services authentication)} fournit le type de service @code{nslcd-service-type}, qui peut être utilisé pour l'authentification par LDAP. En plus de configurer le service lui-même, vous pouvez ajouter @code{ldap} comme service de noms au Name Service Switch. @xref{Name Service Switch} pour des informations détaillées." #. type: Plain text -#: guix-git/doc/guix.texi:25647 +#: guix-git/doc/guix.texi:25984 msgid "Here is a simple operating system declaration with a default configuration of the @code{nslcd-service-type} and a Name Service Switch configuration that consults the @code{ldap} name service last:" msgstr "Voici une déclaration de système d'exploitation simple avec une configuration par défaut pour @code{nslcd-service-type} et une configuration du Name Service Switch qui consulte le service de noms @code{ldap} en dernier :" #. type: lisp -#: guix-git/doc/guix.texi:25670 +#: guix-git/doc/guix.texi:26007 #, no-wrap msgid "" "(use-service-modules authentication)\n" @@ -48195,643 +48883,643 @@ msgstr "" " (gshadow services)))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:25675 +#: guix-git/doc/guix.texi:26012 msgid "Available @code{nslcd-configuration} fields are:" msgstr "Les champs de @code{nslcd-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:25676 +#: guix-git/doc/guix.texi:26013 #, no-wrap msgid "{@code{nslcd-configuration} parameter} package nss-pam-ldapd" msgstr "{paramètre de @code{nslcd-configuration}} package nss-pam-ldapd" #. type: deftypevr -#: guix-git/doc/guix.texi:25678 +#: guix-git/doc/guix.texi:26015 msgid "The @code{nss-pam-ldapd} package to use." msgstr "Le paquet @code{nss-pam-ldapd} à utiliser." #. type: deftypevr -#: guix-git/doc/guix.texi:25681 +#: guix-git/doc/guix.texi:26018 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number threads" msgstr "{paramètre de @code{nslcd-configuration}} maybe-number threads" #. type: deftypevr -#: guix-git/doc/guix.texi:25685 +#: guix-git/doc/guix.texi:26022 msgid "The number of threads to start that can handle requests and perform LDAP queries. Each thread opens a separate connection to the LDAP server. The default is to start 5 threads." msgstr "Le nombre de threads à démarrer qui peuvent gérer les requête et effectuer des requêtes LDAP. Chaque thread ouvre une connexion séparée au serveur LDAP. La valeur par défaut est de 5 threads." #. type: deftypevr -#: guix-git/doc/guix.texi:25690 +#: guix-git/doc/guix.texi:26027 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string uid" msgstr "{paramètre de @code{nslcd-configuration}} string uid" #. type: deftypevr -#: guix-git/doc/guix.texi:25692 +#: guix-git/doc/guix.texi:26029 msgid "This specifies the user id with which the daemon should be run." msgstr "Cela spécifie l'id de l'utilisateur sous lequel le démon devrait tourner." #. type: deftypevr -#: guix-git/doc/guix.texi:25694 guix-git/doc/guix.texi:25701 +#: guix-git/doc/guix.texi:26031 guix-git/doc/guix.texi:26038 msgid "Defaults to @samp{\"nslcd\"}." msgstr "La valeur par défaut est @samp{\"nslcd\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25697 +#: guix-git/doc/guix.texi:26034 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string gid" msgstr "{paramètre de @code{nslcd-configuration}} string gid" #. type: deftypevr -#: guix-git/doc/guix.texi:25699 +#: guix-git/doc/guix.texi:26036 msgid "This specifies the group id with which the daemon should be run." msgstr "Cela spécifie l'id du groupe sous lequel le démon devrait tourner." #. type: deftypevr -#: guix-git/doc/guix.texi:25704 +#: guix-git/doc/guix.texi:26041 #, no-wrap msgid "{@code{nslcd-configuration} parameter} log-option log" msgstr "{paramètre de @code{nslcd-configuration}} log-option log" #. type: deftypevr -#: guix-git/doc/guix.texi:25712 +#: guix-git/doc/guix.texi:26049 msgid "This option controls the way logging is done via a list containing SCHEME and LEVEL@. The SCHEME argument may either be the symbols @samp{none} or @samp{syslog}, or an absolute file name. The LEVEL argument is optional and specifies the log level. The log level may be one of the following symbols: @samp{crit}, @samp{error}, @samp{warning}, @samp{notice}, @samp{info} or @samp{debug}. All messages with the specified log level or higher are logged." msgstr "Cette option contrôle la journalisation via une liste contenant le schéma et le niveau. Le schéma peut être soit un symbole @samp{none}, @samp{syslog}, soit un nom de fichier absolu. Le niveau est facultatif et spécifie le niveau de journalisation. Le niveau de journalisation peut être l'un des symboles suivants :@samp{crit}, @samp{error}, @samp{warning}, @samp{notice}, @samp{info} ou @samp{debug}. Tous les messages avec le niveau spécifié ou supérieurs sont enregistrés." #. type: deftypevr -#: guix-git/doc/guix.texi:25714 +#: guix-git/doc/guix.texi:26051 msgid "Defaults to @samp{(\"/var/log/nslcd\" info)}." msgstr "La valeur par défaut est @samp{(\"/var/log/nslcd\" info)}." #. type: deftypevr -#: guix-git/doc/guix.texi:25717 +#: guix-git/doc/guix.texi:26054 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list uri" msgstr "{paramètre de @code{nslcd-configuration}} list uri" #. type: deftypevr -#: guix-git/doc/guix.texi:25720 +#: guix-git/doc/guix.texi:26057 msgid "The list of LDAP server URIs. Normally, only the first server will be used with the following servers as fall-back." msgstr "La liste des URI des serveurs LDAP. Normalement, seul le premier serveur sera utilisé avec les serveurs suivants comme secours." #. type: deftypevr -#: guix-git/doc/guix.texi:25722 +#: guix-git/doc/guix.texi:26059 msgid "Defaults to @samp{(\"ldap://localhost:389/\")}." msgstr "La valeur par défaut est @samp{(\"ldap://localhost:389/\")}." #. type: deftypevr -#: guix-git/doc/guix.texi:25725 +#: guix-git/doc/guix.texi:26062 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string ldap-version" msgstr "{paramètre de @code{nslcd-configuration}} maybe-string ldap-version" #. type: deftypevr -#: guix-git/doc/guix.texi:25728 +#: guix-git/doc/guix.texi:26065 msgid "The version of the LDAP protocol to use. The default is to use the maximum version supported by the LDAP library." msgstr "La version du protocole LDAP à utiliser. La valeur par défaut est d'utiliser la version maximum supportée par la bibliothèque LDAP." #. type: deftypevr -#: guix-git/doc/guix.texi:25733 +#: guix-git/doc/guix.texi:26070 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string binddn" msgstr "{paramètre de @code{nslcd-configuration}} maybe-string binddn" #. type: deftypevr -#: guix-git/doc/guix.texi:25736 +#: guix-git/doc/guix.texi:26073 msgid "Specifies the distinguished name with which to bind to the directory server for lookups. The default is to bind anonymously." msgstr "Spécifie le nom distingué avec lequel se lier au serveur de répertoire pour les recherches. La valeur par défaut est de se lier anonymement." #. type: deftypevr -#: guix-git/doc/guix.texi:25741 +#: guix-git/doc/guix.texi:26078 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string bindpw" msgstr "{paramètre de @code{nslcd-configuration}} maybe-string bindpw" #. type: deftypevr -#: guix-git/doc/guix.texi:25744 +#: guix-git/doc/guix.texi:26081 msgid "Specifies the credentials with which to bind. This option is only applicable when used with binddn." msgstr "Spécifie le mot de passe avec lequel se lier. Cette option n'est valable que lorsqu'elle est utilisée avec binddn." #. type: deftypevr -#: guix-git/doc/guix.texi:25749 +#: guix-git/doc/guix.texi:26086 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string rootpwmoddn" msgstr "{paramètre de @code{nslcd-configuration}} maybe-string rootpwmoddn" #. type: deftypevr -#: guix-git/doc/guix.texi:25752 +#: guix-git/doc/guix.texi:26089 msgid "Specifies the distinguished name to use when the root user tries to modify a user's password using the PAM module." msgstr "Spécifie le nom distingué à utiliser lorsque l'utilisateur root essaye de modifier le mot de passe d'un utilisateur avec le module PAM." #. type: deftypevr -#: guix-git/doc/guix.texi:25757 +#: guix-git/doc/guix.texi:26094 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string rootpwmodpw" msgstr "{paramètre de @code{nslcd-configuration}} maybe-string rootpwmodpw" #. type: deftypevr -#: guix-git/doc/guix.texi:25761 +#: guix-git/doc/guix.texi:26098 msgid "Specifies the credentials with which to bind if the root user tries to change a user's password. This option is only applicable when used with rootpwmoddn" msgstr "Spécifie le mot de passe à utiliser pour se lier si l'utilisateur root essaye de modifier un mot de passe utilisateur. Cette option n'est valable que si elle est utilisée avec rootpwmoddn" #. type: deftypevr -#: guix-git/doc/guix.texi:25766 +#: guix-git/doc/guix.texi:26103 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-mech" msgstr "{paramètre de @code{nslcd-configuration}} maybe-string sasl-mech" #. type: deftypevr -#: guix-git/doc/guix.texi:25769 +#: guix-git/doc/guix.texi:26106 msgid "Specifies the SASL mechanism to be used when performing SASL authentication." msgstr "Spécifie le mécanisme SASL à utiliser lors de l'authentification SASL." #. type: deftypevr -#: guix-git/doc/guix.texi:25774 +#: guix-git/doc/guix.texi:26111 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-realm" msgstr "{paramètre de @code{nslcd-configuration}} maybe-string sasl-realm" #. type: deftypevr -#: guix-git/doc/guix.texi:25776 +#: guix-git/doc/guix.texi:26113 msgid "Specifies the SASL realm to be used when performing SASL authentication." msgstr "Spécifie le royaume SASL à utiliser pour effectuer une authentification SASL." #. type: deftypevr -#: guix-git/doc/guix.texi:25781 +#: guix-git/doc/guix.texi:26118 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-authcid" msgstr "{paramètre de @code{nslcd-configuration}} maybe-string sasl-authcid" #. type: deftypevr -#: guix-git/doc/guix.texi:25784 +#: guix-git/doc/guix.texi:26121 msgid "Specifies the authentication identity to be used when performing SASL authentication." msgstr "Spécifie l'identité d'authentification à utiliser pour effectuer une authentification SASL." #. type: deftypevr -#: guix-git/doc/guix.texi:25789 +#: guix-git/doc/guix.texi:26126 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-authzid" msgstr "{paramètre de @code{nslcd-configuration}} maybe-string sasl-authzid" #. type: deftypevr -#: guix-git/doc/guix.texi:25792 +#: guix-git/doc/guix.texi:26129 msgid "Specifies the authorization identity to be used when performing SASL authentication." msgstr "Spécifie l'identité d'autorisation à utiliser lors d'une authentification SASL." #. type: deftypevr -#: guix-git/doc/guix.texi:25797 +#: guix-git/doc/guix.texi:26134 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean sasl-canonicalize?" msgstr "{paramètre de @code{nslcd-configuration}} maybe-boolean sasl-canonicalize?" #. type: deftypevr -#: guix-git/doc/guix.texi:25802 +#: guix-git/doc/guix.texi:26139 msgid "Determines whether the LDAP server host name should be canonicalised. If this is enabled the LDAP library will do a reverse host name lookup. By default, it is left up to the LDAP library whether this check is performed or not." msgstr "Détermine si le nom d'hôte du serveur LDAP devrait être canonalisé. Si c'est activé la bibliothèque LDAP effectuera une recherche de nom d'hôte inversée. Par défaut, il est laissé à la bibliothèque LDAP le soin de savoir si la vérification doit être effectuée ou non." #. type: deftypevr -#: guix-git/doc/guix.texi:25807 +#: guix-git/doc/guix.texi:26144 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string krb5-ccname" msgstr "{paramètre de @code{nslcd-configuration}} maybe-string krb5-ccname" #. type: deftypevr -#: guix-git/doc/guix.texi:25809 +#: guix-git/doc/guix.texi:26146 msgid "Set the name for the GSS-API Kerberos credentials cache." msgstr "Indique le nom du cache d'informations de connexion de GSS-API Kerberos." #. type: deftypevr -#: guix-git/doc/guix.texi:25814 +#: guix-git/doc/guix.texi:26151 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string base" msgstr "{paramètre de @code{nslcd-configuration}} string base" #. type: deftypevr -#: guix-git/doc/guix.texi:25816 +#: guix-git/doc/guix.texi:26153 msgid "The directory search base." msgstr "La base de recherche de répertoires." #. type: deftypevr -#: guix-git/doc/guix.texi:25818 +#: guix-git/doc/guix.texi:26155 msgid "Defaults to @samp{\"dc=example,dc=com\"}." msgstr "La valeur par défaut est @samp{\"dc=example,dc=com\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:25821 +#: guix-git/doc/guix.texi:26158 #, no-wrap msgid "{@code{nslcd-configuration} parameter} scope-option scope" msgstr "{paramètre de @code{nslcd-configuration}} scope-option scope" #. type: deftypevr -#: guix-git/doc/guix.texi:25825 +#: guix-git/doc/guix.texi:26162 msgid "Specifies the search scope (subtree, onelevel, base or children). The default scope is subtree; base scope is almost never useful for name service lookups; children scope is not supported on all servers." msgstr "Spécifie la portée de la recherche (subtree, onelevel, base ou children). La portée par défaut est subtree ; la portée base n'est presque jamais utile pour les recherches de service de noms ; la portée children n'est pas prise en charge par tous les serveurs." #. type: deftypevr -#: guix-git/doc/guix.texi:25827 +#: guix-git/doc/guix.texi:26164 msgid "Defaults to @samp{(subtree)}." msgstr "La valeur par défaut est @samp{(subtree)}." #. type: deftypevr -#: guix-git/doc/guix.texi:25830 +#: guix-git/doc/guix.texi:26167 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-deref-option deref" msgstr "{paramètre de @code{nslcd-configuration}} maybe-deref-option deref" #. type: deftypevr -#: guix-git/doc/guix.texi:25833 +#: guix-git/doc/guix.texi:26170 msgid "Specifies the policy for dereferencing aliases. The default policy is to never dereference aliases." msgstr "Spécifie la politique de déréférencement des alias. La politique par défaut est de ne jamais déréférencer d'alias." #. type: deftypevr -#: guix-git/doc/guix.texi:25838 +#: guix-git/doc/guix.texi:26175 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean referrals" msgstr "{paramètre de @code{nslcd-configuration}} maybe-boolean referrals" #. type: deftypevr -#: guix-git/doc/guix.texi:25841 +#: guix-git/doc/guix.texi:26178 msgid "Specifies whether automatic referral chasing should be enabled. The default behaviour is to chase referrals." msgstr "Spécifie s'il faut activer le suivi de référence. Le comportement par défaut est de suivre les références." #. type: deftypevr -#: guix-git/doc/guix.texi:25846 +#: guix-git/doc/guix.texi:26183 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list-of-map-entries maps" msgstr "{paramètre de @code{nslcd-configuration}} list-of-map-entries maps" #. type: deftypevr -#: guix-git/doc/guix.texi:25851 +#: guix-git/doc/guix.texi:26188 msgid "This option allows for custom attributes to be looked up instead of the default RFC 2307 attributes. It is a list of maps, each consisting of the name of a map, the RFC 2307 attribute to match and the query expression for the attribute as it is available in the directory." msgstr "Cette option permet d'ajouter des attributs personnalisés à rechercher à la place des attributs par défaut de la RFC 2307. C'est une liste de correspondances, consistant chacune en un nom, en l'attribut RFC 2307 à utiliser et l'expression de la requête pour l'attribut tel qu'il sera disponible dans le répertoire." #. type: deftypevr -#: guix-git/doc/guix.texi:25856 +#: guix-git/doc/guix.texi:26193 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list-of-filter-entries filters" msgstr "{paramètre de @code{nslcd-configuration}} list-of-filter-entries filters" #. type: deftypevr -#: guix-git/doc/guix.texi:25859 +#: guix-git/doc/guix.texi:26196 msgid "A list of filters consisting of the name of a map to which the filter applies and an LDAP search filter expression." msgstr "Une liste de filtres consistant en le nom d'une correspondance à laquelle applique le filtre et en une expression de filtre de recherche LDAP." #. type: deftypevr -#: guix-git/doc/guix.texi:25864 +#: guix-git/doc/guix.texi:26201 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number bind-timelimit" msgstr "{paramètre de @code{nslcd-configuration}} maybe-number bind-timelimit" #. type: deftypevr -#: guix-git/doc/guix.texi:25867 +#: guix-git/doc/guix.texi:26204 msgid "Specifies the time limit in seconds to use when connecting to the directory server. The default value is 10 seconds." msgstr "Spécifie la limite de temps en seconds à utiliser lors de la connexion au serveur de répertoire. La valeur par défaut est de 10 secondes." #. type: deftypevr -#: guix-git/doc/guix.texi:25872 +#: guix-git/doc/guix.texi:26209 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number timelimit" msgstr "{paramètre de @code{nslcd-configuration}} maybe-number timelimit" #. type: deftypevr -#: guix-git/doc/guix.texi:25876 +#: guix-git/doc/guix.texi:26213 msgid "Specifies the time limit (in seconds) to wait for a response from the LDAP server. A value of zero, which is the default, is to wait indefinitely for searches to be completed." msgstr "Spécifie la limite de temps (en secondes) à attendre une réponse d'un serveur LDAP. La valeur de zéro, par défaut, permet d'attendre indéfiniment la fin des recherches." #. type: deftypevr -#: guix-git/doc/guix.texi:25881 +#: guix-git/doc/guix.texi:26218 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number idle-timelimit" msgstr "{paramètre de @code{nslcd-configuration}} maybe-number idle-timelimit" #. type: deftypevr -#: guix-git/doc/guix.texi:25885 +#: guix-git/doc/guix.texi:26222 msgid "Specifies the period if inactivity (in seconds) after which the con‐ nection to the LDAP server will be closed. The default is not to time out connections." msgstr "Spécifie la période d'inactivité (en seconde) après laquelle la connexion au serveur LDAP sera fermée. La valeur par défaut est de ne jamais la fermer." #. type: deftypevr -#: guix-git/doc/guix.texi:25890 +#: guix-git/doc/guix.texi:26227 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number reconnect-sleeptime" msgstr "{paramètre de @code{nslcd-configuration}} maybe-number reconnect-sleeptime" #. type: deftypevr -#: guix-git/doc/guix.texi:25894 +#: guix-git/doc/guix.texi:26231 msgid "Specifies the number of seconds to sleep when connecting to all LDAP servers fails. By default one second is waited between the first failure and the first retry." msgstr "Spécifie le nombre de secondes pendant laquelle attendre lorsque la connexion à tous les serveurs LDAP a échouée. Par défaut, il y a une seconde d'attente entre le premier échec et la tentative suivante." #. type: deftypevr -#: guix-git/doc/guix.texi:25899 +#: guix-git/doc/guix.texi:26236 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number reconnect-retrytime" msgstr "{paramètre de @code{nslcd-configuration}} maybe-number reconnect-retrytime" #. type: deftypevr -#: guix-git/doc/guix.texi:25903 +#: guix-git/doc/guix.texi:26240 msgid "Specifies the time after which the LDAP server is considered to be permanently unavailable. Once this time is reached retries will be done only once per this time period. The default value is 10 seconds." msgstr "Spécifie la durée après laquelle le serveur LDAP est considéré comme définitivement inatteignable. Une fois cette durée atteinte, les tentatives de connexions n'auront plus lieu qu'une fois par cet intervalle de temps. La valeur par défaut est de 10 secondes." #. type: deftypevr -#: guix-git/doc/guix.texi:25908 +#: guix-git/doc/guix.texi:26245 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-ssl-option ssl" msgstr "{paramètre de @code{nslcd-configuration}} maybe-ssl-option ssl" #. type: deftypevr -#: guix-git/doc/guix.texi:25912 +#: guix-git/doc/guix.texi:26249 msgid "Specifies whether to use SSL/TLS or not (the default is not to). If 'start-tls is specified then StartTLS is used rather than raw LDAP over SSL." msgstr "Spécifie s'il faut utiliser SSL/TLS ou non (la valeur par défaut est non). Si 'start-tls est spécifié alors StartTLS est utilisé à la place de LDAP sur SSL." #. type: deftypevr -#: guix-git/doc/guix.texi:25917 +#: guix-git/doc/guix.texi:26254 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-tls-reqcert-option tls-reqcert" msgstr "{paramètre de @code{nslcd-configuration}} maybe-tls-reqcert-option tls-reqcert" #. type: deftypevr -#: guix-git/doc/guix.texi:25920 +#: guix-git/doc/guix.texi:26257 msgid "Specifies what checks to perform on a server-supplied certificate. The meaning of the values is described in the ldap.conf(5) manual page." msgstr "Spécifie quelles vérifications effectuer sur les certificats donnés par les serveurs. La signification des valeurs est décrite dans la page de manuel de ldap.conf(5)." #. type: deftypevr -#: guix-git/doc/guix.texi:25925 +#: guix-git/doc/guix.texi:26262 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cacertdir" msgstr "{paramètre de @code{nslcd-configuration}} maybe-string tls-cacertdir" #. type: deftypevr -#: guix-git/doc/guix.texi:25928 +#: guix-git/doc/guix.texi:26265 msgid "Specifies the directory containing X.509 certificates for peer authen‐ tication. This parameter is ignored when using GnuTLS." msgstr "Spécifie le répertoire contenant les certificats X.509 pour l'authentification des pairs. Ce paramètre est ignoré quand il est utilisé avec GnuTLS." #. type: deftypevr -#: guix-git/doc/guix.texi:25933 +#: guix-git/doc/guix.texi:26270 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cacertfile" msgstr "{paramètre de @code{nslcd-configuration}} maybe-string tls-cacertfile" #. type: deftypevr -#: guix-git/doc/guix.texi:25935 +#: guix-git/doc/guix.texi:26272 msgid "Specifies the path to the X.509 certificate for peer authentication." msgstr "Spécifie le chemin des certificats X.509 pour l'authentification des pairs." #. type: deftypevr -#: guix-git/doc/guix.texi:25940 +#: guix-git/doc/guix.texi:26277 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-randfile" msgstr "{paramètre de @code{nslcd-configuration}} maybe-string tls-randfile" #. type: deftypevr -#: guix-git/doc/guix.texi:25943 +#: guix-git/doc/guix.texi:26280 msgid "Specifies the path to an entropy source. This parameter is ignored when using GnuTLS." msgstr "Spécifie le chemin d'une source d'entropie. Ce paramètre est ignoré quand il est utilisé avec GnuTLS." #. type: deftypevr -#: guix-git/doc/guix.texi:25948 +#: guix-git/doc/guix.texi:26285 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-ciphers" msgstr "{paramètre de @code{nslcd-configuration}} maybe-string tls-ciphers" #. type: deftypevr -#: guix-git/doc/guix.texi:25950 +#: guix-git/doc/guix.texi:26287 msgid "Specifies the ciphers to use for TLS as a string." msgstr "Spécifie les suites de chiffrements à utiliser pour TLS en tant que chaîne de caractères." #. type: deftypevr -#: guix-git/doc/guix.texi:25955 +#: guix-git/doc/guix.texi:26292 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cert" msgstr "{paramètre de @code{nslcd-configuration}} maybe-string tls-cert" #. type: deftypevr -#: guix-git/doc/guix.texi:25958 +#: guix-git/doc/guix.texi:26295 msgid "Specifies the path to the file containing the local certificate for client TLS authentication." msgstr "Spécifie le chemin vers le fichier contenant le certificat local pour l'authentification TLS du client." #. type: deftypevr -#: guix-git/doc/guix.texi:25963 +#: guix-git/doc/guix.texi:26300 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-key" msgstr "{paramètre de @code{nslcd-configuration}} maybe-string tls-key" #. type: deftypevr -#: guix-git/doc/guix.texi:25966 +#: guix-git/doc/guix.texi:26303 msgid "Specifies the path to the file containing the private key for client TLS authentication." msgstr "Spécifie le chemin du fichier contenant la clef privée pour l'authentification TLS du client." #. type: deftypevr -#: guix-git/doc/guix.texi:25971 +#: guix-git/doc/guix.texi:26308 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number pagesize" msgstr "{paramètre de @code{nslcd-configuration}} maybe-number pagesize" #. type: deftypevr -#: guix-git/doc/guix.texi:25975 +#: guix-git/doc/guix.texi:26312 msgid "Set this to a number greater than 0 to request paged results from the LDAP server in accordance with RFC2696. The default (0) is to not request paged results." msgstr "Indiquez un nombre plus grand que 0 pour demander des résultats paginés au serveur LDAP en accord avec la RFC 2696. La valeur par défaut (0) est de ne pas demander de pagination des résultats." #. type: deftypevr -#: guix-git/doc/guix.texi:25980 +#: guix-git/doc/guix.texi:26317 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-ignore-users-option nss-initgroups-ignoreusers" msgstr "{paramètre de @code{nslcd-configuration}} maybe-ignore-users-option nss-initgroups-ignoreusers" #. type: deftypevr -#: guix-git/doc/guix.texi:25984 +#: guix-git/doc/guix.texi:26321 msgid "This option prevents group membership lookups through LDAP for the specified users. Alternatively, the value 'all-local may be used. With that value nslcd builds a full list of non-LDAP users on startup." msgstr "Cette option évite les recherches d'appartenance au groupe à travers le LDAP pour les utilisateurs spécifiés. Autrement, la valeur 'all-local peut être utilisée. Avec cette valeur nslcd construit une liste complète des utilisateurs non-LDAP au démarrage." #. type: deftypevr -#: guix-git/doc/guix.texi:25989 +#: guix-git/doc/guix.texi:26326 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-min-uid" msgstr "{paramètre de @code{nslcd-configuration}} maybe-number nss-min-uid" #. type: deftypevr -#: guix-git/doc/guix.texi:25992 +#: guix-git/doc/guix.texi:26329 msgid "This option ensures that LDAP users with a numeric user id lower than the specified value are ignored." msgstr "Cette option s'assure que les utilisateurs LDAP avec un id utilisateur numérique plus petit que la valeur spécifiée sont ignorés." #. type: deftypevr -#: guix-git/doc/guix.texi:25997 +#: guix-git/doc/guix.texi:26334 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-uid-offset" msgstr "{paramètre de @code{nslcd-configuration}} maybe-number nss-uid-offset" #. type: deftypevr -#: guix-git/doc/guix.texi:26000 +#: guix-git/doc/guix.texi:26337 msgid "This option specifies an offset that is added to all LDAP numeric user ids. This can be used to avoid user id collisions with local users." msgstr "Cette option spécifie un décalage à ajouter à tous les id utilisateurs numériques LDAP. Cela peut être utile pour éviter des collisions d'id utilisateurs avec des utilisateurs locaux." #. type: deftypevr -#: guix-git/doc/guix.texi:26005 +#: guix-git/doc/guix.texi:26342 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-gid-offset" msgstr "{paramètre de @code{nslcd-configuration}} maybe-number nss-gid-offset" #. type: deftypevr -#: guix-git/doc/guix.texi:26008 +#: guix-git/doc/guix.texi:26345 msgid "This option specifies an offset that is added to all LDAP numeric group ids. This can be used to avoid user id collisions with local groups." msgstr "Cette option spécifie un décalage à ajouter à tous les id de groupe numériques LDAP. Cela peut être utile pour éviter des collisions d'id utilisateurs avec des groupes locaux." #. type: deftypevr -#: guix-git/doc/guix.texi:26013 +#: guix-git/doc/guix.texi:26350 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-nested-groups" msgstr "{paramètre de @code{nslcd-configuration}} maybe-boolean nss-nested-groups" #. type: deftypevr -#: guix-git/doc/guix.texi:26019 +#: guix-git/doc/guix.texi:26356 msgid "If this option is set, the member attribute of a group may point to another group. Members of nested groups are also returned in the higher level group and parent groups are returned when finding groups for a specific user. The default is not to perform extra searches for nested groups." msgstr "Si cette option est indiquée, l'attribut de membre de groupe peut pointer vers un autre groupe. Les membres de groupes imbriqués sont aussi renvoyés dans le groupe de haut-niveau et les groupes parents sont renvoyés lorsqu'on recherche un utilisateur spécifique. La valeur par défaut est de ne pas effectuer de recherche supplémentaire sur les groupes imbriqués." #. type: deftypevr -#: guix-git/doc/guix.texi:26024 +#: guix-git/doc/guix.texi:26361 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-getgrent-skipmembers" msgstr "{paramètre de @code{nslcd-configuration}} maybe-boolean nss-getgrent-skipmembers" #. type: deftypevr -#: guix-git/doc/guix.texi:26029 +#: guix-git/doc/guix.texi:26366 msgid "If this option is set, the group member list is not retrieved when looking up groups. Lookups for finding which groups a user belongs to will remain functional so the user will likely still get the correct groups assigned on login." msgstr "Si cette option est indiqée, la liste de membres du groupe n'est pas récupérée lorsqu'on cherche un groupe. Les recherches pour trouver les groupes auxquels un utilisateur appartient resteront fonctionnelles donc l'utilisateur obtiendra probablement les bons groupes à la connexion." #. type: deftypevr -#: guix-git/doc/guix.texi:26034 +#: guix-git/doc/guix.texi:26371 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-disable-enumeration" msgstr "{paramètre de @code{nslcd-configuration}} maybe-boolean nss-disable-enumeration" #. type: deftypevr -#: guix-git/doc/guix.texi:26040 +#: guix-git/doc/guix.texi:26377 msgid "If this option is set, functions which cause all user/group entries to be loaded from the directory will not succeed in doing so. This can dramatically reduce LDAP server load in situations where there are a great number of users and/or groups. This option is not recommended for most configurations." msgstr "Si cette option est indiquée, les fonctions qui causent le chargement de toutes les entrées d'utilisateur et de groupe depuis le répertoire ne pourront pas le faire. Cela peut grandement diminuer la charge du serveur LDAP dans des situations où il y a beaucoup d'utilisateurs et de groupes. Cette option n'est pas recommandées pour la plupart des configurations." #. type: deftypevr -#: guix-git/doc/guix.texi:26045 +#: guix-git/doc/guix.texi:26382 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string validnames" msgstr "{paramètre de @code{nslcd-configuration}} maybe-string validnames" #. type: deftypevr -#: guix-git/doc/guix.texi:26049 +#: guix-git/doc/guix.texi:26386 msgid "This option can be used to specify how user and group names are verified within the system. This pattern is used to check all user and group names that are requested and returned from LDAP." msgstr "Cette option peut être utilisée pour spécifier comment les noms d'utilisateurs et de groupes sont vérifiés sur le système. Ce motif est utilisé pour vérifier tous les noms d'utilisateurs et de groupes qui sont demandés et renvoyés par le LDAP." #. type: deftypevr -#: guix-git/doc/guix.texi:26054 +#: guix-git/doc/guix.texi:26391 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean ignorecase" msgstr "{paramètre de @code{nslcd-configuration}} maybe-boolean ignorecase" #. type: deftypevr -#: guix-git/doc/guix.texi:26059 +#: guix-git/doc/guix.texi:26396 msgid "This specifies whether or not to perform searches using case-insensitive matching. Enabling this could open up the system to authorization bypass vulnerabilities and introduce nscd cache poisoning vulnerabilities which allow denial of service." msgstr "Cela spécifie s'il faut ou non effectuer des recherches avec une correspondance sensible à la casse. Activer cela pourrait mener à des vulnérabilités de type contournement d'authentification sur le système et introduire des vulnérabilité d'empoisonnement de cache nscd qui permettent un déni de service." #. type: deftypevr -#: guix-git/doc/guix.texi:26064 +#: guix-git/doc/guix.texi:26401 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean pam-authc-ppolicy" msgstr "{paramètre de @code{nslcd-configuration}} maybe-boolean pam-authc-ppolicy" #. type: deftypevr -#: guix-git/doc/guix.texi:26067 +#: guix-git/doc/guix.texi:26404 msgid "This option specifies whether password policy controls are requested and handled from the LDAP server when performing user authentication." msgstr "Cette option spécifie si des contrôles de la politique de mots de passe sont demandés et gérés par le serveur LDAP à l'authentification de l'utilisateur." #. type: deftypevr -#: guix-git/doc/guix.texi:26072 +#: guix-git/doc/guix.texi:26409 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-authc-search" msgstr "{paramètre de @code{nslcd-configuration}} maybe-string pam-authc-search" #. type: deftypevr -#: guix-git/doc/guix.texi:26078 +#: guix-git/doc/guix.texi:26415 msgid "By default nslcd performs an LDAP search with the user's credentials after BIND (authentication) to ensure that the BIND operation was successful. The default search is a simple check to see if the user's DN exists. A search filter can be specified that will be used instead. It should return at least one entry." msgstr "Par défaut nslcd effectue une recherche LDAP avec le mot de passe de l'utilisateur après BIND (authentification) pour s'assurer que l'opération BIND a bien réussi. La recherche par défaut est une simple vérification que le DN de l'utilisateur existe. Un filtre de recherche peut être spécifié pour l'utiliser à la place. Il devrait renvoyer au moins une entrée." #. type: deftypevr -#: guix-git/doc/guix.texi:26083 +#: guix-git/doc/guix.texi:26420 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-authz-search" msgstr "{paramètre de @code{nslcd-configuration}} maybe-string pam-authz-search" #. type: deftypevr -#: guix-git/doc/guix.texi:26087 +#: guix-git/doc/guix.texi:26424 msgid "This option allows flexible fine tuning of the authorisation check that should be performed. The search filter specified is executed and if any entries match, access is granted, otherwise access is denied." msgstr "Cette option permet la configuration fine et flexible de la vérification d'autorisation qui devrait être effectuée. Le filtre de recherche est exécuté et si une entrée correspond, l'accès est autorisé, sinon il est refusé." #. type: deftypevr -#: guix-git/doc/guix.texi:26092 +#: guix-git/doc/guix.texi:26429 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-password-prohibit-message" msgstr "{paramètre de @code{nslcd-configuration}} maybe-string pam-password-prohibit-message" #. type: deftypevr -#: guix-git/doc/guix.texi:26097 +#: guix-git/doc/guix.texi:26434 msgid "If this option is set password modification using pam_ldap will be denied and the specified message will be presented to the user instead. The message can be used to direct the user to an alternative means of changing their password." msgstr "Si cette option est indiquée, la modification de mot de passe par pam_ldap sera refusée et le message spécifié sera présenté à l'utilisateur à la place. Le message peut être utilisé pour rediriger les utilisateurs vers une autre méthode pour changer leur mot de passe." #. type: deftypevr -#: guix-git/doc/guix.texi:26102 +#: guix-git/doc/guix.texi:26439 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list pam-services" msgstr "{paramètre de @code{nslcd-configuration}} list pam-services" #. type: deftypevr -#: guix-git/doc/guix.texi:26104 +#: guix-git/doc/guix.texi:26441 msgid "List of pam service names for which LDAP authentication should suffice." msgstr "Liste de noms de service pam pour lesquels l'authentification LDAP devrait suffire." #. type: cindex -#: guix-git/doc/guix.texi:26115 +#: guix-git/doc/guix.texi:26452 #, no-wrap msgid "web" msgstr "web" #. type: cindex -#: guix-git/doc/guix.texi:26116 +#: guix-git/doc/guix.texi:26453 #, no-wrap msgid "www" msgstr "www" #. type: cindex -#: guix-git/doc/guix.texi:26117 +#: guix-git/doc/guix.texi:26454 #, no-wrap msgid "HTTP" msgstr "HTTP" #. type: Plain text -#: guix-git/doc/guix.texi:26120 +#: guix-git/doc/guix.texi:26457 msgid "The @code{(gnu services web)} module provides the Apache HTTP Server, the nginx web server, and also a fastcgi wrapper daemon." msgstr "Le module @code{(gnu services web)} fournit le serveur Apache HTTP, le serveur web nginx et aussi un démon fastcgi." #. type: subsubheading -#: guix-git/doc/guix.texi:26121 +#: guix-git/doc/guix.texi:26458 #, no-wrap msgid "Apache HTTP Server" msgstr "Serveur Apache HTTP" #. type: deffn -#: guix-git/doc/guix.texi:26123 +#: guix-git/doc/guix.texi:26460 #, no-wrap msgid "{Scheme Variable} httpd-service-type" msgstr "{Variable Scheme} httpd-service-type" #. type: deffn -#: guix-git/doc/guix.texi:26127 +#: guix-git/doc/guix.texi:26464 msgid "Service type for the @uref{https://httpd.apache.org/,Apache HTTP} server (@dfn{httpd}). The value for this service type is a @code{httpd-configuration} record." msgstr "Type de service pour le serveur @uref{https://httpd.apache.org/,Apache HTTP} (@dfn{httpd}). La valeur de ce type de service est un enregistrement @code{httpd-configuration}." #. type: deffn -#: guix-git/doc/guix.texi:26129 guix-git/doc/guix.texi:26311 +#: guix-git/doc/guix.texi:26466 guix-git/doc/guix.texi:26648 msgid "A simple example configuration is given below." msgstr "Un exemple de configuration simple est donné ci-dessous." #. type: lisp -#: guix-git/doc/guix.texi:26137 +#: guix-git/doc/guix.texi:26474 #, no-wrap msgid "" "(service httpd-service-type\n" @@ -48849,12 +49537,12 @@ msgstr "" " (document-root \"/srv/http/www.example.com\")))))\n" #. type: deffn -#: guix-git/doc/guix.texi:26141 +#: guix-git/doc/guix.texi:26478 msgid "Other services can also extend the @code{httpd-service-type} to add to the configuration." msgstr "D'autres services peuvent aussi étendre @code{httpd-service-type} pour être ajouté à la configuration." #. type: lisp -#: guix-git/doc/guix.texi:26150 guix-git/doc/guix.texi:26290 +#: guix-git/doc/guix.texi:26487 guix-git/doc/guix.texi:26627 #, no-wrap msgid "" "(simple-service 'www.example.com-server httpd-service-type\n" @@ -48874,115 +49562,115 @@ msgstr "" " \"\\n\")))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:26156 +#: guix-git/doc/guix.texi:26493 msgid "The details for the @code{httpd-configuration}, @code{httpd-module}, @code{httpd-config-file} and @code{httpd-virtualhost} record types are given below." msgstr "Les détails des types d'enregistrement @code{httpd-configuration}, @code{httpd-module}, @code{httpd-config-file} et @code{httpd-virtualhost} sont donnés plus bas." #. type: deffn -#: guix-git/doc/guix.texi:26157 +#: guix-git/doc/guix.texi:26494 #, no-wrap msgid "{Data Type} httpd-configuration" msgstr "{Type de données} httpd-configuration" #. type: deffn -#: guix-git/doc/guix.texi:26159 +#: guix-git/doc/guix.texi:26496 msgid "This data type represents the configuration for the httpd service." msgstr "Ce type de données représente la configuration du service httpd." #. type: item -#: guix-git/doc/guix.texi:26161 +#: guix-git/doc/guix.texi:26498 #, no-wrap msgid "@code{package} (default: @code{httpd})" msgstr "@code{package} (par défaut : @code{httpd})" #. type: table -#: guix-git/doc/guix.texi:26163 +#: guix-git/doc/guix.texi:26500 msgid "The httpd package to use." msgstr "Le paquet httpd à utiliser." #. type: item -#: guix-git/doc/guix.texi:26164 guix-git/doc/guix.texi:26253 +#: guix-git/doc/guix.texi:26501 guix-git/doc/guix.texi:26590 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/httpd\"})" msgstr "@code{pid-file} (par défaut : @code{\"/var/run/httpd\"})" #. type: table -#: guix-git/doc/guix.texi:26166 +#: guix-git/doc/guix.texi:26503 msgid "The pid file used by the shepherd-service." msgstr "Le fichier de pid utilisé par le service shepherd." #. type: item -#: guix-git/doc/guix.texi:26167 +#: guix-git/doc/guix.texi:26504 #, no-wrap msgid "@code{config} (default: @code{(httpd-config-file)})" msgstr "@code{config} (par défaut : @code{(httpd-config-file)})" #. type: table -#: guix-git/doc/guix.texi:26172 +#: guix-git/doc/guix.texi:26509 msgid "The configuration file to use with the httpd service. The default value is a @code{httpd-config-file} record, but this can also be a different G-expression that generates a file, for example a @code{plain-file}. A file outside of the store can also be specified through a string." msgstr "Le fichier de configuration à utiliser avec le service httpd. La valeur par défaut est un enregistrement @code{httpd-config-file} mais cela peut aussi être un G-expression qui génère un fichier, par exemple un @code{plain-file}. Un fichier en dehors du dépôt peut aussi être spécifié avec une chaîne de caractères." #. type: deffn -#: guix-git/doc/guix.texi:26176 +#: guix-git/doc/guix.texi:26513 #, no-wrap msgid "{Data Type} httpd-module" msgstr "{Type de données} httpd-module" #. type: deffn -#: guix-git/doc/guix.texi:26178 +#: guix-git/doc/guix.texi:26515 msgid "This data type represents a module for the httpd service." msgstr "Ce type de données représente un module pour le service httpd." #. type: table -#: guix-git/doc/guix.texi:26182 +#: guix-git/doc/guix.texi:26519 msgid "The name of the module." msgstr "Le nom du module." #. type: table -#: guix-git/doc/guix.texi:26188 +#: guix-git/doc/guix.texi:26525 msgid "The file for the module. This can be relative to the httpd package being used, the absolute location of a file, or a G-expression for a file within the store, for example @code{(file-append mod-wsgi \"/modules/mod_wsgi.so\")}." msgstr "Le fichier pour le module. Cela peut être relatif au paquet httpd utilisé, l'emplacement absolu d'un fichier ou une G-expression pour un fichier dans le dépôt, par exemple @code{(file-append mod-wsgi \"/modules/mod_wsgi.so\")}." #. type: defvr -#: guix-git/doc/guix.texi:26192 +#: guix-git/doc/guix.texi:26529 #, no-wrap msgid "{Scheme Variable} %default-httpd-modules" msgstr "{Variable Scheme} %default-httpd-modules" #. type: defvr -#: guix-git/doc/guix.texi:26194 +#: guix-git/doc/guix.texi:26531 msgid "A default list of @code{httpd-module} objects." msgstr "Une liste par défaut des objets @code{httpd-module}." #. type: deffn -#: guix-git/doc/guix.texi:26196 +#: guix-git/doc/guix.texi:26533 #, no-wrap msgid "{Data Type} httpd-config-file" msgstr "{Type de données} httpd-config-file" #. type: deffn -#: guix-git/doc/guix.texi:26198 +#: guix-git/doc/guix.texi:26535 msgid "This data type represents a configuration file for the httpd service." msgstr "Ce type de données représente un fichier de configuration pour le service httpd." #. type: item -#: guix-git/doc/guix.texi:26200 +#: guix-git/doc/guix.texi:26537 #, no-wrap msgid "@code{modules} (default: @code{%default-httpd-modules})" msgstr "@code{modules} (par défaut : @code{%default-httpd-modules})" #. type: table -#: guix-git/doc/guix.texi:26203 +#: guix-git/doc/guix.texi:26540 msgid "The modules to load. Additional modules can be added here, or loaded by additional configuration." msgstr "Les modules à charger. Les modules supplémentaires peuvent être ajoutés ici ou chargés par des configuration supplémentaires." #. type: table -#: guix-git/doc/guix.texi:26206 +#: guix-git/doc/guix.texi:26543 msgid "For example, in order to handle requests for PHP files, you can use Apache’s @code{mod_proxy_fcgi} module along with @code{php-fpm-service-type}:" msgstr "Par exemple, pour gérer les requêtes pour des fichiers PHP, vous pouvez utiliser le module @code{mod_proxy_fcgi} d'Apache avec @code{php-fpm-service-type} :" #. type: lisp -#: guix-git/doc/guix.texi:26228 +#: guix-git/doc/guix.texi:26565 #, no-wrap msgid "" "(service httpd-service-type\n" @@ -49028,165 +49716,165 @@ msgstr "" " (socket-group \"httpd\")))\n" #. type: item -#: guix-git/doc/guix.texi:26230 +#: guix-git/doc/guix.texi:26567 #, no-wrap msgid "@code{server-root} (default: @code{httpd})" msgstr "@code{server-root} (par défaut : @code{httpd})" #. type: table -#: guix-git/doc/guix.texi:26234 +#: guix-git/doc/guix.texi:26571 msgid "The @code{ServerRoot} in the configuration file, defaults to the httpd package. Directives including @code{Include} and @code{LoadModule} are taken as relative to the server root." msgstr "Le @code{ServerRoot} dans le fichier de configuration, par défaut le paquet httpd. Les directives comme @code{Include} et @code{LoadModule} sont prises relativement à la racine du serveur." #. type: item -#: guix-git/doc/guix.texi:26235 +#: guix-git/doc/guix.texi:26572 #, no-wrap msgid "@code{server-name} (default: @code{#f})" msgstr "@code{server-name} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:26239 +#: guix-git/doc/guix.texi:26576 msgid "The @code{ServerName} in the configuration file, used to specify the request scheme, hostname and port that the server uses to identify itself." msgstr "Le @code{ServerName} dans le fichier de configuration, utilisé pour spécifier le schéma de requête, le nom d'hôte et le port que le serveur utilise pour s'identifier." #. type: table -#: guix-git/doc/guix.texi:26243 +#: guix-git/doc/guix.texi:26580 msgid "This doesn't need to be set in the server config, and can be specified in virtual hosts. The default is @code{#f} to not specify a @code{ServerName}." msgstr "Cela n'a pas besoin d'être dans la configuration du serveur, et peut être spécifié dans les hôtes virtuels. La valeur par défaut est @code{#f} pour ne pas spécifier de @code{ServerName}." #. type: item -#: guix-git/doc/guix.texi:26244 +#: guix-git/doc/guix.texi:26581 #, no-wrap msgid "@code{document-root} (default: @code{\"/srv/http\"})" msgstr "@code{document-root} (par défaut : @code{\"/srv/http\"})" #. type: table -#: guix-git/doc/guix.texi:26246 +#: guix-git/doc/guix.texi:26583 msgid "The @code{DocumentRoot} from which files will be served." msgstr "Le @code{DocumentRoot} depuis lequel les fichiers seront servis." #. type: item -#: guix-git/doc/guix.texi:26247 +#: guix-git/doc/guix.texi:26584 #, no-wrap msgid "@code{listen} (default: @code{'(\"80\")})" msgstr "@code{listen} (par défaut : @code{'(\"80\")})" #. type: table -#: guix-git/doc/guix.texi:26252 +#: guix-git/doc/guix.texi:26589 msgid "The list of values for the @code{Listen} directives in the config file. The value should be a list of strings, when each string can specify the port number to listen on, and optionally the IP address and protocol to use." msgstr "La liste des valeurs pour les directives @code{Listen} dans le fichier de configuration. La valeur devrait être une liste de chaînes, où chacune spécifie le port sur lequel écouter et éventuellement une adresse IP et un protocole à utiliser." #. type: table -#: guix-git/doc/guix.texi:26257 +#: guix-git/doc/guix.texi:26594 msgid "The @code{PidFile} to use. This should match the @code{pid-file} set in the @code{httpd-configuration} so that the Shepherd service is configured correctly." msgstr "Le @code{PidFile} à utiliser. Cela devrait correspondre à @code{pid-file} indiqué dans @code{httpd-configuration} pour que le service Shepherd soit correctement configuré." #. type: item -#: guix-git/doc/guix.texi:26258 +#: guix-git/doc/guix.texi:26595 #, no-wrap msgid "@code{error-log} (default: @code{\"/var/log/httpd/error_log\"})" msgstr "@code{error-log} (par défaut : @code{\"/var/log/httpd/error_log\"})" #. type: table -#: guix-git/doc/guix.texi:26260 +#: guix-git/doc/guix.texi:26597 msgid "The @code{ErrorLog} to which the server will log errors." msgstr "Le @code{ErrorLog} où le serveur écrit les journaux d'erreurs." #. type: item -#: guix-git/doc/guix.texi:26261 guix-git/doc/guix.texi:26823 +#: guix-git/doc/guix.texi:26598 guix-git/doc/guix.texi:27160 #, no-wrap msgid "@code{user} (default: @code{\"httpd\"})" msgstr "@code{user} (par défaut : @code{\"httpd\"})" #. type: table -#: guix-git/doc/guix.texi:26263 +#: guix-git/doc/guix.texi:26600 msgid "The @code{User} which the server will answer requests as." msgstr "Le @code{User} en tant que lequel le serveur répondra aux requêtes." #. type: item -#: guix-git/doc/guix.texi:26264 +#: guix-git/doc/guix.texi:26601 #, no-wrap msgid "@code{group} (default: @code{\"httpd\"})" msgstr "@code{group} (par défaut : @code{\"httpd\"})" #. type: table -#: guix-git/doc/guix.texi:26266 +#: guix-git/doc/guix.texi:26603 msgid "The @code{Group} which the server will answer requests as." msgstr "Le @code{Group} que le serveur utilisera pour répondre aux requêtes." #. type: item -#: guix-git/doc/guix.texi:26267 +#: guix-git/doc/guix.texi:26604 #, no-wrap msgid "@code{extra-config} (default: @code{(list \"TypesConfig etc/httpd/mime.types\")})" msgstr "@code{extra-config} (par défaut : @code{(list \"TypesConfig etc/httpd/mime.types\")})" #. type: table -#: guix-git/doc/guix.texi:26270 +#: guix-git/doc/guix.texi:26607 msgid "A flat list of strings and G-expressions which will be added to the end of the configuration file." msgstr "Une liste plate de chaînes et de G-expressions qui seront ajoutées à la fin du fichier de configuration." #. type: table -#: guix-git/doc/guix.texi:26273 +#: guix-git/doc/guix.texi:26610 msgid "Any values which the service is extended with will be appended to this list." msgstr "N'importe quelle valeur avec laquelle le service est étendu sera ajouté à cette liste." #. type: deffn -#: guix-git/doc/guix.texi:26277 +#: guix-git/doc/guix.texi:26614 #, no-wrap msgid "{Data Type} httpd-virtualhost" msgstr "{Type de données} httpd-virtualhost" #. type: deffn -#: guix-git/doc/guix.texi:26279 +#: guix-git/doc/guix.texi:26616 msgid "This data type represents a virtualhost configuration block for the httpd service." msgstr "Ce type de données représente la configuration d'un hôte virtuel pour le service httpd." #. type: deffn -#: guix-git/doc/guix.texi:26281 +#: guix-git/doc/guix.texi:26618 msgid "These should be added to the extra-config for the httpd-service." msgstr "Ils devraient être ajoutés à extra-config dans httpd-service." #. type: code{#1} -#: guix-git/doc/guix.texi:26293 +#: guix-git/doc/guix.texi:26630 #, no-wrap msgid "addresses-and-ports" msgstr "addresses-and-ports" #. type: table -#: guix-git/doc/guix.texi:26295 +#: guix-git/doc/guix.texi:26632 msgid "The addresses and ports for the @code{VirtualHost} directive." msgstr "L'adresse et le port pour la directive @code{VirtualHost}." #. type: code{#1} -#: guix-git/doc/guix.texi:26296 +#: guix-git/doc/guix.texi:26633 #, no-wrap msgid "contents" msgstr "contents" #. type: table -#: guix-git/doc/guix.texi:26299 +#: guix-git/doc/guix.texi:26636 msgid "The contents of the @code{VirtualHost} directive, this should be a list of strings and G-expressions." msgstr "Le contenu de la directive @code{VirtualHost}, cela devrait être une liste de chaîne et de G-expressions." #. type: subsubheading -#: guix-git/doc/guix.texi:26304 +#: guix-git/doc/guix.texi:26641 #, no-wrap msgid "NGINX" msgstr "NGINX" #. type: deffn -#: guix-git/doc/guix.texi:26306 +#: guix-git/doc/guix.texi:26643 #, no-wrap msgid "{Scheme Variable} nginx-service-type" msgstr "{Variable Scheme} nginx-service-type" #. type: deffn -#: guix-git/doc/guix.texi:26309 +#: guix-git/doc/guix.texi:26646 msgid "Service type for the @uref{https://nginx.org/,NGinx} web server. The value for this service type is a @code{} record." msgstr "Type de service pour le serveur web @uref{https://nginx.org/,NGinx}. La valeur de ce service est un enregistrement @code{}." #. type: lisp -#: guix-git/doc/guix.texi:26319 guix-git/doc/guix.texi:26373 +#: guix-git/doc/guix.texi:26656 guix-git/doc/guix.texi:26710 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -49204,12 +49892,12 @@ msgstr "" " (root \"/srv/http/www.example.com\"))))))\n" #. type: deffn -#: guix-git/doc/guix.texi:26324 +#: guix-git/doc/guix.texi:26661 msgid "In addition to adding server blocks to the service configuration directly, this service can be extended by other services to add server blocks, as in this example:" msgstr "En plus d'ajouter des blocs de serveurs dans la configuration du service directement, ce service peut être étendu par d'autres services pour ajouter des blocs de serveurs, comme dans cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:26330 +#: guix-git/doc/guix.texi:26667 #, no-wrap msgid "" "(simple-service 'my-extra-server nginx-service-type\n" @@ -49223,88 +49911,88 @@ msgstr "" " (try-files (list \"$uri\" \"$uri/index.html\")))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:26341 +#: guix-git/doc/guix.texi:26678 msgid "At startup, @command{nginx} has not yet read its configuration file, so it uses a default file to log error messages. If it fails to load its configuration file, that is where error messages are logged. After the configuration file is loaded, the default error log file changes as per configuration. In our case, startup error messages can be found in @file{/var/run/nginx/logs/error.log}, and after configuration in @file{/var/log/nginx/error.log}. The second location can be changed with the @var{log-directory} configuration option." msgstr "Au démarrage, @command{nginx} n'a pas encore lu son fichier de configuration, donc il utilise les fichiers par défaut pour les messages d'erreur. S'il échoue à charger sa configuration, c'est là où les messages seront enregistrés. Après la lecture du fichier de configuration, le fichier de journal d'erreur par défaut change en fonction de celle-ci. Dans notre cas, les messages d'erreur au démarrage se trouvent dans @file{/var/run/nginx/logs/error.log} et après la configuration dans @file{/var/log/nginx/error.log}. Ce second emplacement peut être modifié avec l'option de configuration @var{log-directory}." #. type: deffn -#: guix-git/doc/guix.texi:26342 +#: guix-git/doc/guix.texi:26679 #, no-wrap msgid "{Data Type} nginx-configuration" msgstr "{Type de données} nginx-configuration" #. type: deffn -#: guix-git/doc/guix.texi:26346 +#: guix-git/doc/guix.texi:26683 msgid "This data type represents the configuration for NGinx. Some configuration can be done through this and the other provided record types, or alternatively, a config file can be provided." msgstr "Ce type de données représente la configuration de NGinx. Certaines configurations peuvent se faire ici et d'autres fournissent des types d'enregistrement ou éventuellement, on peut fournir un fichier de configuration." #. type: item -#: guix-git/doc/guix.texi:26348 +#: guix-git/doc/guix.texi:26685 #, no-wrap msgid "@code{nginx} (default: @code{nginx})" msgstr "@code{nginx} (par défaut : @code{nginx})" #. type: table -#: guix-git/doc/guix.texi:26350 +#: guix-git/doc/guix.texi:26687 msgid "The nginx package to use." msgstr "Le paquet nginx à utiliser." #. type: item -#: guix-git/doc/guix.texi:26351 +#: guix-git/doc/guix.texi:26688 #, no-wrap msgid "@code{log-directory} (default: @code{\"/var/log/nginx\"})" msgstr "@code{log-directory} (par défaut : @code{\"/var/log/nginx\"})" #. type: table -#: guix-git/doc/guix.texi:26353 +#: guix-git/doc/guix.texi:26690 msgid "The directory to which NGinx will write log files." msgstr "Le répertoire dans lequel NGinx écrira ses fichiers journaux." #. type: item -#: guix-git/doc/guix.texi:26354 +#: guix-git/doc/guix.texi:26691 #, no-wrap msgid "@code{run-directory} (default: @code{\"/var/run/nginx\"})" msgstr "@code{run-directory} (par défaut : @code{\"/var/run/nginx\"})" #. type: table -#: guix-git/doc/guix.texi:26357 +#: guix-git/doc/guix.texi:26694 msgid "The directory in which NGinx will create a pid file, and write temporary files." msgstr "Le répertoire dans lequel NGinx créera un fichier de pid et écrira des fichiers temporaires." #. type: item -#: guix-git/doc/guix.texi:26358 +#: guix-git/doc/guix.texi:26695 #, no-wrap msgid "@code{server-blocks} (default: @code{'()})" msgstr "@code{server-blocks} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26362 +#: guix-git/doc/guix.texi:26699 msgid "A list of @dfn{server blocks} to create in the generated configuration file, the elements should be of type @code{}." msgstr "Une liste de @dfn{blocs serveur} à créer dans le fichier de configuration généré, dont les éléments sont de type @code{}." #. type: table -#: guix-git/doc/guix.texi:26366 +#: guix-git/doc/guix.texi:26703 msgid "The following example would setup NGinx to serve @code{www.example.com} from the @code{/srv/http/www.example.com} directory, without using HTTPS." msgstr "L'exemple suivant paramètre NGinx pour servir @code{www.example.com} depuis le répertoire @code{/srv/http/www.example.com} sans utiliser HTTPS." #. type: item -#: guix-git/doc/guix.texi:26375 +#: guix-git/doc/guix.texi:26712 #, no-wrap msgid "@code{upstream-blocks} (default: @code{'()})" msgstr "@code{upstream-blocks} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26379 +#: guix-git/doc/guix.texi:26716 msgid "A list of @dfn{upstream blocks} to create in the generated configuration file, the elements should be of type @code{}." msgstr "Une liste de @dfn{blocs amont} à créer dans le fichier de configuration généré, dont les éléments sont de type @code{}." #. type: table -#: guix-git/doc/guix.texi:26386 +#: guix-git/doc/guix.texi:26723 msgid "Configuring upstreams through the @code{upstream-blocks} can be useful when combined with @code{locations} in the @code{} records. The following example creates a server configuration with one location configuration, that will proxy requests to a upstream configuration, which will handle requests with two servers." msgstr "Configurer les serveurs amont à travers les @code{upstream-blocks} peut être utile en combinaison avec @code{locations} dans les enregistrements @code{}. L'exemple suivant crée une configuration de serveur avec une configuration « location » qui sera mandataire pour une configuration amont, qui gérera les requêtes avec deux serveurs." #. type: lisp -#: guix-git/doc/guix.texi:26405 +#: guix-git/doc/guix.texi:26742 #, no-wrap msgid "" "(service\n" @@ -49344,44 +50032,44 @@ msgstr "" " \"server2.example.com\")))))))\n" #. type: table -#: guix-git/doc/guix.texi:26413 +#: guix-git/doc/guix.texi:26750 msgid "If a configuration @var{file} is provided, this will be used, rather than generating a configuration file from the provided @code{log-directory}, @code{run-directory}, @code{server-blocks} and @code{upstream-blocks}. For proper operation, these arguments should match what is in @var{file} to ensure that the directories are created when the service is activated." msgstr "Si un fichier de configuration @var{file} est fourni, il sera utilisé au lieu de générer un fichier de configuration à partir des @code{log-directory}, @code{run-directory}, @code{server-blocks} et @code{upstream-blocks} fournis. Pour un bon fonctionnement, ces arguments devraient correspondre à ce qui se trouve dans @var{file} pour s'assurer que les répertoires sont créé lorsque le service est activé." #. type: table -#: guix-git/doc/guix.texi:26417 +#: guix-git/doc/guix.texi:26754 msgid "This can be useful if you have an existing configuration file, or it's not possible to do what is required through the other parts of the nginx-configuration record." msgstr "Cela peut être utile si vous avez déjà un fichier de configuration existant ou s'il n'est pas possible de faire ce dont vous avez besoin avec les autres parties de l'enregistrement nginx-configuration." #. type: item -#: guix-git/doc/guix.texi:26418 +#: guix-git/doc/guix.texi:26755 #, no-wrap msgid "@code{server-names-hash-bucket-size} (default: @code{#f})" msgstr "@code{server-names-hash-bucket-size} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:26421 +#: guix-git/doc/guix.texi:26758 msgid "Bucket size for the server names hash tables, defaults to @code{#f} to use the size of the processors cache line." msgstr "Taille du seau pour les tables de hashage des noms de serveurs, par dauft @code{#f} pour utilise la taille des lignes de cache du processeur." #. type: item -#: guix-git/doc/guix.texi:26422 +#: guix-git/doc/guix.texi:26759 #, no-wrap msgid "@code{server-names-hash-bucket-max-size} (default: @code{#f})" msgstr "@code{server-names-hash-bucket-max-size} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:26424 +#: guix-git/doc/guix.texi:26761 msgid "Maximum bucket size for the server names hash tables." msgstr "Taille maximum des seaux pour les tables de hashage des serveurs de noms." #. type: table -#: guix-git/doc/guix.texi:26428 +#: guix-git/doc/guix.texi:26765 msgid "List of nginx dynamic modules to load. This should be a list of file names of loadable modules, as in this example:" msgstr "Liste de modules dynamiques de nginx à charger. Cela devrait être une liste de noms de fichiers de modules chargeables, comme dans cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:26436 +#: guix-git/doc/guix.texi:26773 #, no-wrap msgid "" "(modules\n" @@ -49399,18 +50087,18 @@ msgstr "" "/etc/nginx/modules/ngx_http_lua_module.so\")))\n" #. type: item -#: guix-git/doc/guix.texi:26438 +#: guix-git/doc/guix.texi:26775 #, no-wrap msgid "@code{lua-package-path} (default: @code{'()})" msgstr "@code{lua-package-path} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26441 +#: guix-git/doc/guix.texi:26778 msgid "List of nginx lua packages to load. This should be a list of package names of loadable lua modules, as in this example:" msgstr "Liste des paquets lua à charger. Cela devrait être une liste de noms de paquets de modules lua chargeables, comme dans cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:26448 +#: guix-git/doc/guix.texi:26785 #, no-wrap msgid "" "(lua-package-path (list lua-resty-core\n" @@ -49426,35 +50114,35 @@ msgstr "" " lua-resty-shell))\n" #. type: item -#: guix-git/doc/guix.texi:26450 +#: guix-git/doc/guix.texi:26787 #, no-wrap msgid "@code{lua-package-cpath} (default: @code{'()})" msgstr "@code{lua-package-cpath} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26453 +#: guix-git/doc/guix.texi:26790 msgid "List of nginx lua C packages to load. This should be a list of package names of loadable lua C modules, as in this example:" msgstr "Liste de paquets lua C à charger. cela devrait être une liste de noms de paquets de modules lua C, comme dans cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:26456 +#: guix-git/doc/guix.texi:26793 #, no-wrap msgid "(lua-package-cpath (list lua-resty-signal))\n" msgstr "(lua-package-cpath (list lua-resty-signal))\n" #. type: item -#: guix-git/doc/guix.texi:26458 +#: guix-git/doc/guix.texi:26795 #, no-wrap msgid "@code{global-directives} (default: @code{'((events . ()))})" msgstr "@code{global-directives} (par défaut : @code{'((events . ()))})" #. type: table -#: guix-git/doc/guix.texi:26461 +#: guix-git/doc/guix.texi:26798 msgid "Association list of global directives for the top level of the nginx configuration. Values may themselves be association lists." msgstr "Liste d'association des directives globales pour le plus haut niveau de la configuration de nginx. Les valeurs peuvent elles-mêmes être des listes d'association." #. type: lisp -#: guix-git/doc/guix.texi:26467 +#: guix-git/doc/guix.texi:26804 #, no-wrap msgid "" "(global-directives\n" @@ -49468,312 +50156,312 @@ msgstr "" " (events . ((worker_connections . 1024)))))\n" #. type: table -#: guix-git/doc/guix.texi:26472 +#: guix-git/doc/guix.texi:26809 msgid "Extra content for the @code{http} block. Should be string or a string valued G-expression." msgstr "Contenu supplémentaire du bloc @code{http}. Cela devrait être une chaîne ou un G-expression." #. type: deftp -#: guix-git/doc/guix.texi:26476 +#: guix-git/doc/guix.texi:26813 #, no-wrap msgid "{Data Type} nginx-server-configuration" msgstr "{Type de données} nginx-server-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26479 +#: guix-git/doc/guix.texi:26816 msgid "Data type representing the configuration of an nginx server block. This type has the following parameters:" msgstr "Type de données représentant la configuration d'un bloc serveur de nginx. Ce type a les paramètres suivants :" #. type: item -#: guix-git/doc/guix.texi:26481 +#: guix-git/doc/guix.texi:26818 #, no-wrap msgid "@code{listen} (default: @code{'(\"80\" \"443 ssl\")})" msgstr "@code{listen} (par défaut : @code{'(\"80\" \"443 ssl\")})" #. type: table -#: guix-git/doc/guix.texi:26486 +#: guix-git/doc/guix.texi:26823 msgid "Each @code{listen} directive sets the address and port for IP, or the path for a UNIX-domain socket on which the server will accept requests. Both address and port, or only address or only port can be specified. An address may also be a hostname, for example:" msgstr "Chaque directive @code{listen} indique l'adresse et le port pour le protocole IP ou le chemin d'un socket UNIX-domain sur lequel le serveur acceptera les connexions. On peut spécifier l'adresse et le port, ou juste l'adresse ou juste le port. Une adresse peut aussi être un nom d'hôte, par exemple :" #. type: lisp -#: guix-git/doc/guix.texi:26489 +#: guix-git/doc/guix.texi:26826 #, no-wrap msgid "'(\"127.0.0.1:8000\" \"127.0.0.1\" \"8000\" \"*:8000\" \"localhost:8000\")\n" msgstr "'(\"127.0.0.1:8000\" \"127.0.0.1\" \"8000\" \"*:8000\" \"localhost:8000\")\n" #. type: item -#: guix-git/doc/guix.texi:26491 +#: guix-git/doc/guix.texi:26828 #, no-wrap msgid "@code{server-name} (default: @code{(list 'default)})" msgstr "@code{server-name} (par défaut : @code{(list 'default)})" #. type: table -#: guix-git/doc/guix.texi:26494 +#: guix-git/doc/guix.texi:26831 msgid "A list of server names this server represents. @code{'default} represents the default server for connections matching no other server." msgstr "Une liste de noms de serveurs que ce serveur représente. @code{'default} représente le serveur par défaut pour les connexions qui ne correspondent à aucun autre serveur." #. type: item -#: guix-git/doc/guix.texi:26495 +#: guix-git/doc/guix.texi:26832 #, no-wrap msgid "@code{root} (default: @code{\"/srv/http\"})" msgstr "@code{root} (par défaut : @code{\"/srv/http\"})" #. type: table -#: guix-git/doc/guix.texi:26497 +#: guix-git/doc/guix.texi:26834 msgid "Root of the website nginx will serve." msgstr "Racine du site web que sert nginx." #. type: item -#: guix-git/doc/guix.texi:26498 +#: guix-git/doc/guix.texi:26835 #, no-wrap msgid "@code{locations} (default: @code{'()})" msgstr "@code{locations} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26502 +#: guix-git/doc/guix.texi:26839 msgid "A list of @dfn{nginx-location-configuration} or @dfn{nginx-named-location-configuration} records to use within this server block." msgstr "Une liste d'enregistrements @dfn{nginx-location-configuration} ou @dfn{nginx-named-location-configuration} à utiliser dans ce bloc serveur." #. type: item -#: guix-git/doc/guix.texi:26503 +#: guix-git/doc/guix.texi:26840 #, no-wrap msgid "@code{index} (default: @code{(list \"index.html\")})" msgstr "@code{index} (par défaut : @code{(list \"index.html\")})" #. type: table -#: guix-git/doc/guix.texi:26506 +#: guix-git/doc/guix.texi:26843 msgid "Index files to look for when clients ask for a directory. If it cannot be found, Nginx will send the list of files in the directory." msgstr "Fichiers d'index à chercher lorsque les clients demandent un répertoire. S'il ne peut pas être trouvé, Nginx enverra la liste des fichiers dans le répertoire." #. type: item -#: guix-git/doc/guix.texi:26507 +#: guix-git/doc/guix.texi:26844 #, no-wrap msgid "@code{try-files} (default: @code{'()})" msgstr "@code{try-files} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26510 +#: guix-git/doc/guix.texi:26847 msgid "A list of files whose existence is checked in the specified order. @code{nginx} will use the first file it finds to process the request." msgstr "Une liste de fichiers dont l'existence doit être vérifiée dans l'ordre spécifié. @code{nginx} utilisera le premier fichier trouvé pour satisfaire la requête." #. type: item -#: guix-git/doc/guix.texi:26511 +#: guix-git/doc/guix.texi:26848 #, no-wrap msgid "@code{ssl-certificate} (default: @code{#f})" msgstr "@code{ssl-certificate} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:26514 +#: guix-git/doc/guix.texi:26851 msgid "Where to find the certificate for secure connections. Set it to @code{#f} if you don't have a certificate or you don't want to use HTTPS." msgstr "Où trouver les certificats pour les connexions sécurisées. Indiquez @code{#f} si vous n'avez pas de certificats et que vous ne voulez pas utiliser HTTPS." #. type: item -#: guix-git/doc/guix.texi:26515 +#: guix-git/doc/guix.texi:26852 #, no-wrap msgid "@code{ssl-certificate-key} (default: @code{#f})" msgstr "@code{ssl-certificate-key} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:26518 +#: guix-git/doc/guix.texi:26855 msgid "Where to find the private key for secure connections. Set it to @code{#f} if you don't have a key or you don't want to use HTTPS." msgstr "Où trouver la clef privée pour les connexions sécurisées. Indiquez @code{#f} si vous n'avez pas de clef et que vous ne voulez pas utiliser HTTPS." #. type: item -#: guix-git/doc/guix.texi:26519 +#: guix-git/doc/guix.texi:26856 #, no-wrap msgid "@code{server-tokens?} (default: @code{#f})" msgstr "@code{server-tokens?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:26521 +#: guix-git/doc/guix.texi:26858 msgid "Whether the server should add its configuration to response." msgstr "Indique si le serveur devrait ajouter sa configuration dans les réponses." #. type: item -#: guix-git/doc/guix.texi:26522 +#: guix-git/doc/guix.texi:26859 #, no-wrap msgid "@code{raw-content} (default: @code{'()})" msgstr "@code{raw-content} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26524 +#: guix-git/doc/guix.texi:26861 msgid "A list of raw lines added to the server block." msgstr "Une liste de lignes brutes à ajouter dans le bloc serveur." #. type: deftp -#: guix-git/doc/guix.texi:26528 +#: guix-git/doc/guix.texi:26865 #, no-wrap msgid "{Data Type} nginx-upstream-configuration" msgstr "{Type de données} nginx-upstream-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26531 +#: guix-git/doc/guix.texi:26868 msgid "Data type representing the configuration of an nginx @code{upstream} block. This type has the following parameters:" msgstr "Type de données représentant la configuration d'un bloc @code{upstream} nginx. Ce type a les paramètres suivants :" #. type: table -#: guix-git/doc/guix.texi:26535 +#: guix-git/doc/guix.texi:26872 msgid "Name for this group of servers." msgstr "Nome de ces groupe de serveurs." #. type: code{#1} -#: guix-git/doc/guix.texi:26536 +#: guix-git/doc/guix.texi:26873 #, no-wrap msgid "servers" msgstr "serveurs" #. type: table -#: guix-git/doc/guix.texi:26543 +#: guix-git/doc/guix.texi:26880 msgid "Specify the addresses of the servers in the group. The address can be specified as a IP address (e.g.@: @samp{127.0.0.1}), domain name (e.g.@: @samp{backend1.example.com}) or a path to a UNIX socket using the prefix @samp{unix:}. For addresses using an IP address or domain name, the default port is 80, and a different port can be specified explicitly." msgstr "Spécifie les adresses des serveurs dans le groupe. L'adresse peut être spécifié avec une adresse IP (p.@: ex.@: @samp{127.0.0.1}), un nom de domaine (p.@: ex.@: @samp{backend1.example.com}) ou un chemin vers un socket UNIX avec le préfixe @samp{unix:}. Pour les adresse utilisant une adresse IP ou un nom de domaine, le port par défaut est 80 et un port différent peut être spécifié explicitement." #. type: deftp -#: guix-git/doc/guix.texi:26547 +#: guix-git/doc/guix.texi:26884 #, no-wrap msgid "{Data Type} nginx-location-configuration" msgstr "{Type de données} nginx-location-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26550 +#: guix-git/doc/guix.texi:26887 msgid "Data type representing the configuration of an nginx @code{location} block. This type has the following parameters:" msgstr "Type de données représentant la configuration d'un bloc @code{location} nginx. Ce type a les paramètres suivants :" #. type: table -#: guix-git/doc/guix.texi:26554 +#: guix-git/doc/guix.texi:26891 msgid "URI which this location block matches." msgstr "URI qui correspond à ce bloc." #. type: anchor{#1} -#: guix-git/doc/guix.texi:26556 +#: guix-git/doc/guix.texi:26893 msgid "nginx-location-configuration body" msgstr "nginx-location-configuration body" #. type: code{#1} -#: guix-git/doc/guix.texi:26556 guix-git/doc/guix.texi:26577 +#: guix-git/doc/guix.texi:26893 guix-git/doc/guix.texi:26914 #, no-wrap msgid "body" msgstr "body" #. type: table -#: guix-git/doc/guix.texi:26563 +#: guix-git/doc/guix.texi:26900 msgid "Body of the location block, specified as a list of strings. This can contain many configuration directives. For example, to pass requests to a upstream server group defined using an @code{nginx-upstream-configuration} block, the following directive would be specified in the body @samp{(list \"proxy_pass http://upstream-name;\")}." msgstr "Corps du block location, spécifié comme une liste de chaînes de caractères. Cela peut contenir de nombreuses directives de configuration. Par exemple, pour passer des requêtes à un groupe de serveurs amont définis dans un bloc @code{nginx-upstream-configuration}, la directive suivante peut être spécifiée dans le corps : @samp{(list \"proxy_pass http://upstream-name;\")}." #. type: deftp -#: guix-git/doc/guix.texi:26567 +#: guix-git/doc/guix.texi:26904 #, no-wrap msgid "{Data Type} nginx-named-location-configuration" msgstr "{Type de données} nginx-named-location-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26572 +#: guix-git/doc/guix.texi:26909 msgid "Data type representing the configuration of an nginx named location block. Named location blocks are used for request redirection, and not used for regular request processing. This type has the following parameters:" msgstr "Type de données représentant la configuration d'un bloc location nginx nommé. Les blocs location nommés sont utilisé les redirections de requêtes et pas pour le traitement des requêtes normales. Ce type a les paramètres suivants :" #. type: table -#: guix-git/doc/guix.texi:26576 +#: guix-git/doc/guix.texi:26913 msgid "Name to identify this location block." msgstr "Nom pour identifier ce bloc location." #. type: table -#: guix-git/doc/guix.texi:26582 +#: guix-git/doc/guix.texi:26919 msgid "@xref{nginx-location-configuration body}, as the body for named location blocks can be used in a similar way to the @code{nginx-location-configuration body}. One restriction is that the body of a named location block cannot contain location blocks." msgstr "@xref{nginx-location-configuration body}, comme le corps d'un bloc location nommé peut être utilisé de la même manière que @code{nginx-location-configuration body}. Une restriction est que le corps d'un bloc location nommé ne peut pas contenir de bloc location." #. type: subsubheading -#: guix-git/doc/guix.texi:26586 +#: guix-git/doc/guix.texi:26923 #, no-wrap msgid "Varnish Cache" msgstr "Cache Varnish" #. type: cindex -#: guix-git/doc/guix.texi:26587 +#: guix-git/doc/guix.texi:26924 #, no-wrap msgid "Varnish" msgstr "Varnish" #. type: Plain text -#: guix-git/doc/guix.texi:26592 +#: guix-git/doc/guix.texi:26929 msgid "Varnish is a fast cache server that sits in between web applications and end users. It proxies requests from clients and caches the accessed URLs such that multiple requests for the same resource only creates one request to the back-end." msgstr "Varnish est un serveur de cache rapide qui se trouve entre les applications web et les utilisateurs. Il sert de serveur mandataire pour les requêtes des clients et met les URL accédées en cache pour que plusieurs requêtes à la même ressource ne crée qu'une requête au moteur." #. type: defvr -#: guix-git/doc/guix.texi:26593 +#: guix-git/doc/guix.texi:26930 #, no-wrap msgid "{Scheme Variable} varnish-service-type" msgstr "{Variable Scheme} varnish-service-type" #. type: defvr -#: guix-git/doc/guix.texi:26595 +#: guix-git/doc/guix.texi:26932 msgid "Service type for the Varnish daemon." msgstr "Type de service pour le démon Varnish." #. type: deftp -#: guix-git/doc/guix.texi:26597 +#: guix-git/doc/guix.texi:26934 #, no-wrap msgid "{Data Type} varnish-configuration" msgstr "{Type de données} varnish-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26600 +#: guix-git/doc/guix.texi:26937 msgid "Data type representing the @code{varnish} service configuration. This type has the following parameters:" msgstr "Type de données représentant la configuration du service @code{varnish}. Ce type a les paramètres suivants :" #. type: item -#: guix-git/doc/guix.texi:26602 +#: guix-git/doc/guix.texi:26939 #, no-wrap msgid "@code{package} (default: @code{varnish})" msgstr "@code{package} (par défaut : @code{varnish})" #. type: table -#: guix-git/doc/guix.texi:26604 +#: guix-git/doc/guix.texi:26941 msgid "The Varnish package to use." msgstr "Le paquet Varnish à utiliser." #. type: item -#: guix-git/doc/guix.texi:26605 +#: guix-git/doc/guix.texi:26942 #, no-wrap msgid "@code{name} (default: @code{\"default\"})" msgstr "@code{name} (par défaut : @code{\"default\"})" #. type: table -#: guix-git/doc/guix.texi:26610 +#: guix-git/doc/guix.texi:26947 msgid "A name for this Varnish instance. Varnish will create a directory in @file{/var/varnish/} with this name and keep temporary files there. If the name starts with a forward slash, it is interpreted as an absolute directory name." msgstr "Un nom pour cet instance de Varnish. Varnish va créer un répertoire dans @file{/var/varnish/} avec ce nom et gardera des fichiers temporaires à cet endroit. Si le nom commence par une barre oblique, il est interprété comme un nom de répertoire absolu." #. type: table -#: guix-git/doc/guix.texi:26613 +#: guix-git/doc/guix.texi:26950 msgid "Pass the @code{-n} argument to other Varnish programs to connect to the named instance, e.g.@: @command{varnishncsa -n default}." msgstr "Passez l'argument @code{-n} aux autres programmes Varnish pour vous connecter à l'instance nommée, p.@: ex.@: @command{varnishncsa -n default}." #. type: item -#: guix-git/doc/guix.texi:26614 +#: guix-git/doc/guix.texi:26951 #, no-wrap msgid "@code{backend} (default: @code{\"localhost:8080\"})" msgstr "@code{backend} (par défaut : @code{\"localhost:8080\"})" #. type: table -#: guix-git/doc/guix.texi:26616 +#: guix-git/doc/guix.texi:26953 msgid "The backend to use. This option has no effect if @code{vcl} is set." msgstr "Le moteur à utiliser. Cette option n'a pas d'effet si @code{vcl} est vrai." #. type: item -#: guix-git/doc/guix.texi:26617 +#: guix-git/doc/guix.texi:26954 #, no-wrap msgid "@code{vcl} (default: #f)" msgstr "@code{vcl} (par défaut : #f)" #. type: table -#: guix-git/doc/guix.texi:26622 +#: guix-git/doc/guix.texi:26959 msgid "The @dfn{VCL} (Varnish Configuration Language) program to run. If this is @code{#f}, Varnish will proxy @code{backend} using the default configuration. Otherwise this must be a file-like object with valid VCL syntax." msgstr "Le programme @dfn{VCL} (Varnish Configuration Language) à lancer. Si la valeur est @code{#f}, Varnsh servira de mandataire pour @code{backend} avec la configuration par défaut. Sinon, ce doit être un objet simili-fichier avec une syntaxe VCL valide." #. type: table -#: guix-git/doc/guix.texi:26626 +#: guix-git/doc/guix.texi:26963 msgid "For example, to mirror @url{https://www.gnu.org,www.gnu.org} with VCL you can do something along these lines:" msgstr "Par exemple, pour créer un miroir de @url{https://www.gnu.org,www.gnu.org} avec VCL vous pouvez faire quelque chose comme cela :" #. type: lisp -#: guix-git/doc/guix.texi:26632 +#: guix-git/doc/guix.texi:26969 #, no-wrap msgid "" "(define %gnu-mirror\n" @@ -49789,7 +50477,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:26640 +#: guix-git/doc/guix.texi:26977 #, no-wrap msgid "" "(operating-system\n" @@ -49809,82 +50497,82 @@ msgstr "" " %base-services)))\n" #. type: table -#: guix-git/doc/guix.texi:26644 +#: guix-git/doc/guix.texi:26981 msgid "The configuration of an already running Varnish instance can be inspected and changed using the @command{varnishadm} program." msgstr "On peut inspecter la configuration d'une instance Varnish actuellement lancée en utilisant le programme @command{varnishadm}." #. type: table -#: guix-git/doc/guix.texi:26648 +#: guix-git/doc/guix.texi:26985 msgid "Consult the @url{https://varnish-cache.org/docs/,Varnish User Guide} and @url{https://book.varnish-software.com/4.0/,Varnish Book} for comprehensive documentation on Varnish and its configuration language." msgstr "Consultez le @url{https://varnish-cache.org/docs/,guide utilisateur de varnish} et le @url{https://book.varnish-software.com/4.0/,livre varnish} pour une documentation complète sur Varnish et son langage de configuration." #. type: item -#: guix-git/doc/guix.texi:26649 +#: guix-git/doc/guix.texi:26986 #, no-wrap msgid "@code{listen} (default: @code{'(\"localhost:80\")})" msgstr "@code{listen} (par défaut : @code{'(\"localhost:80\")})" #. type: table -#: guix-git/doc/guix.texi:26651 +#: guix-git/doc/guix.texi:26988 msgid "List of addresses Varnish will listen on." msgstr "Liste des adresses sur lesquelles écoute Varnish." #. type: item -#: guix-git/doc/guix.texi:26652 +#: guix-git/doc/guix.texi:26989 #, no-wrap msgid "@code{storage} (default: @code{'(\"malloc,128m\")})" msgstr "@code{storage} (par défaut : @code{'(\"malloc,128m\")})" #. type: table -#: guix-git/doc/guix.texi:26654 +#: guix-git/doc/guix.texi:26991 msgid "List of storage backends that will be available in VCL." msgstr "Liste de moteurs de stockage qui seront disponibles en VCL." #. type: item -#: guix-git/doc/guix.texi:26655 +#: guix-git/doc/guix.texi:26992 #, no-wrap msgid "@code{parameters} (default: @code{'()})" msgstr "@code{parameters} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26657 +#: guix-git/doc/guix.texi:26994 msgid "List of run-time parameters in the form @code{'((\"parameter\" . \"value\"))}." msgstr "Liste des paramètres à l'exécution de la forme @code{'((\"parameter\" . \"value\"))}." #. type: table -#: guix-git/doc/guix.texi:26660 +#: guix-git/doc/guix.texi:26997 msgid "Additional arguments to pass to the @command{varnishd} process." msgstr "Arguments supplémentaires à passer au processus @command{varnishd}." #. type: cindex -#: guix-git/doc/guix.texi:26664 guix-git/doc/guix.texi:26665 +#: guix-git/doc/guix.texi:27001 guix-git/doc/guix.texi:27002 #, no-wrap msgid "Patchwork" msgstr "Patchwork" #. type: Plain text -#: guix-git/doc/guix.texi:26668 +#: guix-git/doc/guix.texi:27005 msgid "Patchwork is a patch tracking system. It can collect patches sent to a mailing list, and display them in a web interface." msgstr "Patchwork est un système de suivi de correctifs. Il peut récupérer des correctifs envoyés à une liste de diffusion, et les afficher sur une interface web." #. type: defvr -#: guix-git/doc/guix.texi:26669 +#: guix-git/doc/guix.texi:27006 #, no-wrap msgid "{Scheme Variable} patchwork-service-type" msgstr "{Variable Scheme} patchwork-service-type" #. type: defvr -#: guix-git/doc/guix.texi:26671 +#: guix-git/doc/guix.texi:27008 msgid "Service type for Patchwork." msgstr "Type de service pour Patchwork." #. type: Plain text -#: guix-git/doc/guix.texi:26675 +#: guix-git/doc/guix.texi:27012 msgid "The following example is an example of a minimal service for Patchwork, for the @code{patchwork.example.com} domain." msgstr "L'exemple suivant est un exemple de service Patchwork minimal, pour le domaine @code{patchwork.example.com}." #. type: lisp -#: guix-git/doc/guix.texi:26695 +#: guix-git/doc/guix.texi:27032 #, no-wrap msgid "" "(service patchwork-service-type\n" @@ -49928,806 +50616,806 @@ msgstr "" "\n" #. type: Plain text -#: guix-git/doc/guix.texi:26701 +#: guix-git/doc/guix.texi:27038 msgid "There are three records for configuring the Patchwork service. The @code{} relates to the configuration for Patchwork within the HTTPD service." msgstr "Il y a trois enregistrements pour configurer le service Patchwork. Le @code{} correspond à la configuration de Patchwork dans le service HTTPD." #. type: Plain text -#: guix-git/doc/guix.texi:26705 +#: guix-git/doc/guix.texi:27042 msgid "The @code{settings-module} field within the @code{} record can be populated with the @code{} record, which describes a settings module that is generated within the Guix store." msgstr "Le champ @code{settings-module} dans l'enregistrement @code{} peut être rempli avec l'enregistrement @code{}, qui décrit un module de paramètres généré dans le dépôt de Guix." #. type: Plain text -#: guix-git/doc/guix.texi:26709 +#: guix-git/doc/guix.texi:27046 msgid "For the @code{database-configuration} field within the @code{}, the @code{} must be used." msgstr "Pour le champ @code{database-configuration} dans @code{}, il faut utiliser un @code{}." #. type: deftp -#: guix-git/doc/guix.texi:26710 +#: guix-git/doc/guix.texi:27047 #, no-wrap msgid "{Data Type} patchwork-configuration" msgstr "{Type de données} patchwork-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26713 +#: guix-git/doc/guix.texi:27050 msgid "Data type representing the Patchwork service configuration. This type has the following parameters:" msgstr "Type de données représentant la configuration du service Patchwork. Ce type a les paramètres suivants :" #. type: item -#: guix-git/doc/guix.texi:26715 +#: guix-git/doc/guix.texi:27052 #, no-wrap msgid "@code{patchwork} (default: @code{patchwork})" msgstr "@code{patchwork} (par défaut : @code{patchwork})" #. type: table -#: guix-git/doc/guix.texi:26717 +#: guix-git/doc/guix.texi:27054 msgid "The Patchwork package to use." msgstr "Le paquet Patchwork à utiliser." #. type: code{#1} -#: guix-git/doc/guix.texi:26718 +#: guix-git/doc/guix.texi:27055 #, no-wrap msgid "domain" msgstr "domain" #. type: table -#: guix-git/doc/guix.texi:26721 +#: guix-git/doc/guix.texi:27058 msgid "The domain to use for Patchwork, this is used in the HTTPD service virtual host." msgstr "Le domaine à utiliser pour Patchwork, utilisé comme hôte virtuel dans le service HTTPD." #. type: code{#1} -#: guix-git/doc/guix.texi:26722 +#: guix-git/doc/guix.texi:27059 #, no-wrap msgid "settings-module" msgstr "settings-module" #. type: table -#: guix-git/doc/guix.texi:26728 +#: guix-git/doc/guix.texi:27065 msgid "The settings module to use for Patchwork. As a Django application, Patchwork is configured with a Python module containing the settings. This can either be an instance of the @code{} record, any other record that represents the settings in the store, or a directory outside of the store." msgstr "Le module de paramètres à utiliser pour Patchwork. En tant qu'application Django, Patchwork est configuré avec un module Python contenant les paramètres. Il peut s'agir d'une instance de l'enregistrement @code{}, de n'importe quel enregistrement qui représente les paramètres dans le dépôt, ou un répertoire en dehors du dépôt." #. type: item -#: guix-git/doc/guix.texi:26729 +#: guix-git/doc/guix.texi:27066 #, no-wrap msgid "@code{static-path} (default: @code{\"/static/\"})" msgstr "@code{static-path} (par défaut : @code{\"/static/\"})" #. type: table -#: guix-git/doc/guix.texi:26731 +#: guix-git/doc/guix.texi:27068 msgid "The path under which the HTTPD service should serve the static files." msgstr "Le chemin dans lequel le service HTTPD devrait servir les fichiers statiques." #. type: code{#1} -#: guix-git/doc/guix.texi:26732 +#: guix-git/doc/guix.texi:27069 #, no-wrap msgid "getmail-retriever-config" msgstr "getmail-retriever-config" #. type: table -#: guix-git/doc/guix.texi:26736 +#: guix-git/doc/guix.texi:27073 msgid "The getmail-retriever-configuration record value to use with Patchwork. Getmail will be configured with this value, the messages will be delivered to Patchwork." msgstr "La valeur d'enregistrement getmail-retriever-configuration à utiliser avec Patchwork. getmail sera configuré avec cette valeur, les messages seront livrés à Patchwork." #. type: deftp -#: guix-git/doc/guix.texi:26740 +#: guix-git/doc/guix.texi:27077 #, no-wrap msgid "{Data Type} patchwork-settings-module" msgstr "{Type de données} patchwork-settings-module" #. type: deftp -#: guix-git/doc/guix.texi:26745 +#: guix-git/doc/guix.texi:27082 msgid "Data type representing a settings module for Patchwork. Some of these settings relate directly to Patchwork, but others relate to Django, the web framework used by Patchwork, or the Django Rest Framework library. This type has the following parameters:" msgstr "Type de données représentant le module de paramètres de Patchwork. Certains de ces paramètres sont liés à Patchwork, mais d'autres sont liés à Django, le cadriciel web utilisé par Patchwork, ou la bibliothèque Django Rest Framework. Ce type a les paramètres suivants :" #. type: item -#: guix-git/doc/guix.texi:26747 +#: guix-git/doc/guix.texi:27084 #, no-wrap msgid "@code{database-configuration} (default: @code{(patchwork-database-configuration)})" msgstr "@code{database-configuration} (par défaut : @code{(patchwork-database-configuration)})" #. type: table -#: guix-git/doc/guix.texi:26750 +#: guix-git/doc/guix.texi:27087 msgid "The database connection settings used for Patchwork. See the @code{} record type for more information." msgstr "Les paramètres de connexion à la base de données à utiliser pour Patchwork. Voir le type d'enregistrement @code{} pour plus d'information." #. type: item -#: guix-git/doc/guix.texi:26751 +#: guix-git/doc/guix.texi:27088 #, no-wrap msgid "@code{secret-key-file} (default: @code{\"/etc/patchwork/django-secret-key\"})" msgstr "@code{secret-key-file} (par défaut : @code{\"/etc/patchwork/django-secret-key\"})" #. type: table -#: guix-git/doc/guix.texi:26754 +#: guix-git/doc/guix.texi:27091 msgid "Patchwork, as a Django web application uses a secret key for cryptographically signing values. This file should contain a unique unpredictable value." msgstr "Patchwork, en tant qu'application web Django, utilise une clé secrète pour signer des valeurs avec de la cryptographie. Ce fichier devrait contenir une valeur unique imprévisible." #. type: table -#: guix-git/doc/guix.texi:26757 +#: guix-git/doc/guix.texi:27094 msgid "If this file does not exist, it will be created and populated with a random value by the patchwork-setup shepherd service." msgstr "Si ce fichier n'existe pas, il sera créé avec une valeur aléatoire par le service patchwork-setup." #. type: table -#: guix-git/doc/guix.texi:26759 +#: guix-git/doc/guix.texi:27096 msgid "This setting relates to Django." msgstr "Ce paramètre est lié à Django." #. type: code{#1} -#: guix-git/doc/guix.texi:26760 +#: guix-git/doc/guix.texi:27097 #, no-wrap msgid "allowed-hosts" msgstr "allowed-hosts" #. type: table -#: guix-git/doc/guix.texi:26763 +#: guix-git/doc/guix.texi:27100 msgid "A list of valid hosts for this Patchwork service. This should at least include the domain specified in the @code{} record." msgstr "Une liste des hôtes valides pour ce service Patchwork. Cela doit au minimum inclure le domaine spécifié dans l'enregistrement @code{}." #. type: table -#: guix-git/doc/guix.texi:26765 guix-git/doc/guix.texi:26779 -#: guix-git/doc/guix.texi:26785 guix-git/doc/guix.texi:26791 +#: guix-git/doc/guix.texi:27102 guix-git/doc/guix.texi:27116 +#: guix-git/doc/guix.texi:27122 guix-git/doc/guix.texi:27128 msgid "This is a Django setting." msgstr "C'est un paramètre pour Django." #. type: code{#1} -#: guix-git/doc/guix.texi:26766 +#: guix-git/doc/guix.texi:27103 #, no-wrap msgid "default-from-email" msgstr "default-from-email" #. type: table -#: guix-git/doc/guix.texi:26768 +#: guix-git/doc/guix.texi:27105 msgid "The email address from which Patchwork should send email by default." msgstr "L'adresse de courriel sur laquelle Patchwork devrait envoyer les courriels par défaut." #. type: table -#: guix-git/doc/guix.texi:26770 guix-git/doc/guix.texi:26796 -#: guix-git/doc/guix.texi:26801 guix-git/doc/guix.texi:26806 +#: guix-git/doc/guix.texi:27107 guix-git/doc/guix.texi:27133 +#: guix-git/doc/guix.texi:27138 guix-git/doc/guix.texi:27143 msgid "This is a Patchwork setting." msgstr "C'est un paramètre de Patchwork." #. type: item -#: guix-git/doc/guix.texi:26771 +#: guix-git/doc/guix.texi:27108 #, no-wrap msgid "@code{static-url} (default: @code{#f})" msgstr "@code{static-url} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:26774 +#: guix-git/doc/guix.texi:27111 msgid "The URL to use when serving static assets. It can be part of a URL, or a full URL, but must end in a @code{/}." msgstr "L'URL à utiliser pour servir les ressources statiques. Cela peut être un bout d'URL ou une URL complète, mais doit finir par @code{/}." #. type: table -#: guix-git/doc/guix.texi:26777 +#: guix-git/doc/guix.texi:27114 msgid "If the default value is used, the @code{static-path} value from the @code{} record will be used." msgstr "Si la valeur par défaut est utilisée, la valeur @code{static-path} de @code{} sera utilisée." #. type: item -#: guix-git/doc/guix.texi:26780 +#: guix-git/doc/guix.texi:27117 #, no-wrap msgid "@code{admins} (default: @code{'()})" msgstr "@code{admins} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26783 +#: guix-git/doc/guix.texi:27120 msgid "Email addresses to send the details of errors that occur. Each value should be a list containing two elements, the name and then the email address." msgstr "Adresses de courriel auxquelles envoyer le détails des erreurs s'il y en a. Chaque valeur de la liste contient deux éléments, le nom et l'adresse de courriel." #. type: table -#: guix-git/doc/guix.texi:26789 +#: guix-git/doc/guix.texi:27126 msgid "Whether to run Patchwork in debug mode. If set to @code{#t}, detailed error messages will be shown." msgstr "Indique s'il faut lancer Patchwork en mode de débogage. Si la valeur est @code{#t}, les messages d'erreur détaillés seront affichés." #. type: item -#: guix-git/doc/guix.texi:26792 +#: guix-git/doc/guix.texi:27129 #, no-wrap msgid "@code{enable-rest-api?} (default: @code{#t})" msgstr "@code{enable-rest-api?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:26794 +#: guix-git/doc/guix.texi:27131 msgid "Whether to enable the Patchwork REST API." msgstr "Indique s'il faut activer l'API REST de Patchwork." #. type: item -#: guix-git/doc/guix.texi:26797 +#: guix-git/doc/guix.texi:27134 #, no-wrap msgid "@code{enable-xmlrpc?} (default: @code{#t})" msgstr "@code{enable-xmlrpc?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:26799 +#: guix-git/doc/guix.texi:27136 msgid "Whether to enable the XML RPC API." msgstr "Indique s'il faut active l'API RPC en XML." #. type: item -#: guix-git/doc/guix.texi:26802 +#: guix-git/doc/guix.texi:27139 #, no-wrap msgid "@code{force-https-links?} (default: @code{#t})" msgstr "@code{force-https-links?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:26804 +#: guix-git/doc/guix.texi:27141 msgid "Whether to use HTTPS links on Patchwork pages." msgstr "Indique s'il faut utiliser des liens HTTPS sur les pages de Patchwork." #. type: table -#: guix-git/doc/guix.texi:26809 +#: guix-git/doc/guix.texi:27146 msgid "Extra code to place at the end of the Patchwork settings module." msgstr "Code supplémentaire à placer à la fin du module de paramètres de Patchwork." #. type: deftp -#: guix-git/doc/guix.texi:26813 +#: guix-git/doc/guix.texi:27150 #, no-wrap msgid "{Data Type} patchwork-database-configuration" msgstr "{Type de données} patchwork-database-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26815 +#: guix-git/doc/guix.texi:27152 msgid "Data type representing the database configuration for Patchwork." msgstr "Type de données représentant la configuration de la base de données de Patchwork." #. type: item -#: guix-git/doc/guix.texi:26817 +#: guix-git/doc/guix.texi:27154 #, no-wrap msgid "@code{engine} (default: @code{\"django.db.backends.postgresql_psycopg2\"})" msgstr "@code{engine} (par défaut : @code{\"django.db.backends.postgresql_psycopg2\"})" #. type: table -#: guix-git/doc/guix.texi:26819 +#: guix-git/doc/guix.texi:27156 msgid "The database engine to use." msgstr "Le moteur de base de données à utiliser." #. type: item -#: guix-git/doc/guix.texi:26820 +#: guix-git/doc/guix.texi:27157 #, no-wrap msgid "@code{name} (default: @code{\"patchwork\"})" msgstr "@code{name} (par défaut : @code{\"patchwork\"})" #. type: table -#: guix-git/doc/guix.texi:26822 +#: guix-git/doc/guix.texi:27159 msgid "The name of the database to use." msgstr "Le nom de la base de données à utiliser." #. type: table -#: guix-git/doc/guix.texi:26825 +#: guix-git/doc/guix.texi:27162 msgid "The user to connect to the database as." msgstr "L'utilisateur à utiliser pour se connecter à la base de données." #. type: item -#: guix-git/doc/guix.texi:26826 +#: guix-git/doc/guix.texi:27163 #, no-wrap msgid "@code{password} (default: @code{\"\"})" msgstr "@code{password} (par défaut : @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:26828 +#: guix-git/doc/guix.texi:27165 msgid "The password to use when connecting to the database." msgstr "Le mot de passe à utiliser lors de la connexion à la base de données." #. type: item -#: guix-git/doc/guix.texi:26829 +#: guix-git/doc/guix.texi:27166 #, no-wrap msgid "@code{host} (default: @code{\"\"})" msgstr "@code{host} (par défaut : @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:26831 +#: guix-git/doc/guix.texi:27168 msgid "The host to make the database connection to." msgstr "L'hôte sur lequel se connecter à la base de données." #. type: item -#: guix-git/doc/guix.texi:26832 +#: guix-git/doc/guix.texi:27169 #, no-wrap msgid "@code{port} (default: @code{\"\"})" msgstr "@code{port} (par défaut : @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:26834 +#: guix-git/doc/guix.texi:27171 msgid "The port on which to connect to the database." msgstr "Le port sur lequel se connecter à la base de données." #. type: subsubheading -#: guix-git/doc/guix.texi:26838 +#: guix-git/doc/guix.texi:27175 #, no-wrap msgid "Mumi" msgstr "Mumi" #. type: cindex -#: guix-git/doc/guix.texi:26840 +#: guix-git/doc/guix.texi:27177 #, no-wrap msgid "Mumi, Debbugs Web interface" msgstr "Mumi, interface web pour debbugs" #. type: cindex -#: guix-git/doc/guix.texi:26841 +#: guix-git/doc/guix.texi:27178 #, no-wrap msgid "Debbugs, Mumi Web interface" msgstr "Debbugs, interface web Mumi" #. type: Plain text -#: guix-git/doc/guix.texi:26846 +#: guix-git/doc/guix.texi:27183 msgid "@uref{https://git.elephly.net/gitweb.cgi?p=software/mumi.git, Mumi} is a Web interface to the Debbugs bug tracker, by default for @uref{https://bugs.gnu.org, the GNU instance}. Mumi is a Web server, but it also fetches and indexes mail retrieved from Debbugs." msgstr "@uref{https://git.elephly.net/gitweb.cgi?p=software/mumi.git, Mumi} est une interface Web pour le logiciel de suivi de bogues Debbugs, par défaut pour @uref{https://bugs.gnu.org, l'instance de GNU}. Mumi est un serveur Web, mais il récupère et indexe aussi les courriels provenant de Debbugs." #. type: defvr -#: guix-git/doc/guix.texi:26847 +#: guix-git/doc/guix.texi:27184 #, no-wrap msgid "{Scheme Variable} mumi-service-type" msgstr "{Variable Scheme} mumi-service-type" #. type: defvr -#: guix-git/doc/guix.texi:26849 +#: guix-git/doc/guix.texi:27186 msgid "This is the service type for Mumi." msgstr "Le type de service pour Mumi." #. type: deftp -#: guix-git/doc/guix.texi:26851 +#: guix-git/doc/guix.texi:27188 #, no-wrap msgid "{Data Type} mumi-configuration" msgstr "{Type de données} mumi-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26854 +#: guix-git/doc/guix.texi:27191 msgid "Data type representing the Mumi service configuration. This type has the following fields:" msgstr "Type de données représentant la configuration du service Mumi. Ce type a les champs suivants :" #. type: item -#: guix-git/doc/guix.texi:26856 +#: guix-git/doc/guix.texi:27193 #, no-wrap msgid "@code{mumi} (default: @code{mumi})" msgstr "@code{mumi} (par défaut : @code{mumi})" #. type: table -#: guix-git/doc/guix.texi:26858 +#: guix-git/doc/guix.texi:27195 msgid "The Mumi package to use." msgstr "Le paquet Mumi à utiliser." #. type: item -#: guix-git/doc/guix.texi:26859 +#: guix-git/doc/guix.texi:27196 #, no-wrap msgid "@code{mailer?} (default: @code{#true})" msgstr "@code{mailer?} (par défaut : @code{#true})" #. type: table -#: guix-git/doc/guix.texi:26861 +#: guix-git/doc/guix.texi:27198 msgid "Whether to enable or disable the mailer component." msgstr "Indique s'il faut activer le composant d'envoie de courriels." #. type: code{#1} -#: guix-git/doc/guix.texi:26862 +#: guix-git/doc/guix.texi:27199 #, no-wrap msgid "mumi-configuration-sender" msgstr "mumi-configuration-sender" #. type: table -#: guix-git/doc/guix.texi:26864 +#: guix-git/doc/guix.texi:27201 msgid "The email address used as the sender for comments." msgstr "L'adresse de courriel utilisée comme expéditeur pour les commentaires." #. type: code{#1} -#: guix-git/doc/guix.texi:26865 +#: guix-git/doc/guix.texi:27202 #, no-wrap msgid "mumi-configuration-smtp" msgstr "mumi-configuration-smtp" #. type: table -#: guix-git/doc/guix.texi:26870 +#: guix-git/doc/guix.texi:27207 msgid "A URI to configure the SMTP settings for Mailutils. This could be something like @code{sendmail:///path/to/bin/msmtp} or any other URI supported by Mailutils. @xref{SMTP Mailboxes, SMTP Mailboxes,, mailutils, GNU@tie{}Mailutils}." msgstr "Une URI pour configurer les paramètres SMTP pour Mailutils. Cela peut être quelque chose comme @code{sendmail:///path/to/bin/msmtp} ou toute autre URI prise en charge par Mailutils. @xref{SMTP Mailboxes, SMTP Mailboxes,, mailutils, GNU@tie{}Mailutils}." #. type: subsubheading -#: guix-git/doc/guix.texi:26875 +#: guix-git/doc/guix.texi:27212 #, no-wrap msgid "FastCGI" msgstr "FastCGI" #. type: cindex -#: guix-git/doc/guix.texi:26876 +#: guix-git/doc/guix.texi:27213 #, no-wrap msgid "fastcgi" msgstr "fastcgi" #. type: cindex -#: guix-git/doc/guix.texi:26877 +#: guix-git/doc/guix.texi:27214 #, no-wrap msgid "fcgiwrap" msgstr "fcgiwrap" #. type: Plain text -#: guix-git/doc/guix.texi:26884 +#: guix-git/doc/guix.texi:27221 msgid "FastCGI is an interface between the front-end and the back-end of a web service. It is a somewhat legacy facility; new web services should generally just talk HTTP between the front-end and the back-end. However there are a number of back-end services such as PHP or the optimized HTTP Git repository access that use FastCGI, so we have support for it in Guix." msgstr "FastCGI est une interface entre le frontal et le moteur d'un service web. C'est un dispositif quelque peu désuet ; les nouveaux services devraient généralement juste parler HTTP entre le frontal et le moteur. Cependant il y a un certain nombre de services de moteurs comme PHP ou l'accès aux dépôts Git optimisé en HTTP qui utilisent FastCGI, donc nous le supportons dans Guix." #. type: Plain text -#: guix-git/doc/guix.texi:26891 +#: guix-git/doc/guix.texi:27228 msgid "To use FastCGI, you configure the front-end web server (e.g., nginx) to dispatch some subset of its requests to the fastcgi backend, which listens on a local TCP or UNIX socket. There is an intermediary @code{fcgiwrap} program that sits between the actual backend process and the web server. The front-end indicates which backend program to run, passing that information to the @code{fcgiwrap} process." msgstr "Pour utiliser FastCGI, vous configurez le serveur web frontal (p.@: ex.@: nginx) pour envoyer un sous-ensemble de ses requêtes au moteur fastcgi, qui écoute sur un socket UNIX ou TCP local. Il y a un programme @code{fcgiwrap} intermédiaire qui se trouve entre le processus du moteur et le serveur web. Le frontal indique quel moteur lancer, en passant cette information au processus @code{fcgiwrap}." #. type: defvr -#: guix-git/doc/guix.texi:26892 +#: guix-git/doc/guix.texi:27229 #, no-wrap msgid "{Scheme Variable} fcgiwrap-service-type" msgstr "{Variable Scheme} fcgiwrap-service-type" #. type: defvr -#: guix-git/doc/guix.texi:26894 +#: guix-git/doc/guix.texi:27231 msgid "A service type for the @code{fcgiwrap} FastCGI proxy." msgstr "Un type de service pour le mandataire FastCGI @code{fcgiwrap}." #. type: deftp -#: guix-git/doc/guix.texi:26896 +#: guix-git/doc/guix.texi:27233 #, no-wrap msgid "{Data Type} fcgiwrap-configuration" msgstr "{Type de données} fcgiwrap-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26899 +#: guix-git/doc/guix.texi:27236 msgid "Data type representing the configuration of the @code{fcgiwrap} service. This type has the following parameters:" msgstr "Type de données représentant la configuration du service @code{fcgiwrap}. Ce type a les paramètres suivants :" #. type: item -#: guix-git/doc/guix.texi:26900 +#: guix-git/doc/guix.texi:27237 #, no-wrap msgid "@code{package} (default: @code{fcgiwrap})" msgstr "@code{package} (par défaut : @code{fcgiwrap})" #. type: table -#: guix-git/doc/guix.texi:26902 +#: guix-git/doc/guix.texi:27239 msgid "The fcgiwrap package to use." msgstr "Le paquet fcgiwrap à utiliser." #. type: item -#: guix-git/doc/guix.texi:26903 +#: guix-git/doc/guix.texi:27240 #, no-wrap msgid "@code{socket} (default: @code{tcp:127.0.0.1:9000})" msgstr "@code{socket} (par défaut : @code{tcp:127.0.0.1:9000})" #. type: table -#: guix-git/doc/guix.texi:26909 +#: guix-git/doc/guix.texi:27246 msgid "The socket on which the @code{fcgiwrap} process should listen, as a string. Valid @var{socket} values include @code{unix:@var{/path/to/unix/socket}}, @code{tcp:@var{dot.ted.qu.ad}:@var{port}} and @code{tcp6:[@var{ipv6_addr}]:port}." msgstr "Le socket sur lequel le processus @code{fcgiwrap} écoute, en tant que chaîne de caractères. Les valeurs valides de @var{socket} sont @code{unix:@var{/path/to/unix/socket}}, @code{tcp:@var{dot.ted.qu.ad}:@var{port}} et @code{tcp6:[@var{ipv6_addr}]:port}." #. type: item -#: guix-git/doc/guix.texi:26910 +#: guix-git/doc/guix.texi:27247 #, no-wrap msgid "@code{user} (default: @code{fcgiwrap})" msgstr "@code{user} (par défaut : @code{fcgiwrap})" #. type: itemx -#: guix-git/doc/guix.texi:26911 +#: guix-git/doc/guix.texi:27248 #, no-wrap msgid "@code{group} (default: @code{fcgiwrap})" msgstr "@code{group} (par défaut : @code{fcgiwrap})" #. type: table -#: guix-git/doc/guix.texi:26916 +#: guix-git/doc/guix.texi:27253 msgid "The user and group names, as strings, under which to run the @code{fcgiwrap} process. The @code{fastcgi} service will ensure that if the user asks for the specific user or group names @code{fcgiwrap} that the corresponding user and/or group is present on the system." msgstr "Les noms de l'utilisateur et du groupe, en tant que chaînes de caractères, sous lesquels lancer le processus @code{fcgiwrap}. Le service @code{fastcgi} s'assurera que si l'utilisateur demande les noms d'utilisateurs et de groupes @code{fcgiwrap} l'utilisateur et le groupe correspondant seront présents sur le système." #. type: table -#: guix-git/doc/guix.texi:26923 +#: guix-git/doc/guix.texi:27260 msgid "It is possible to configure a FastCGI-backed web service to pass HTTP authentication information from the front-end to the back-end, and to allow @code{fcgiwrap} to run the back-end process as a corresponding local user. To enable this capability on the back-end, run @code{fcgiwrap} as the @code{root} user and group. Note that this capability also has to be configured on the front-end as well." msgstr "Il est possible de configurer un service web soutenu par FastCGI pour passer les informations d'authentification HTTP depuis le frontal jusqu'au moteur, et de permettre à @code{fcgiwrap} dans lancer le processus de moteur avec l'utilisateur local correspondant. Pour activer cette fonctionnalité sur le moteur, lancez @code{fcgiwrap} en tant qu'utilisateur et groupe @code{root}. Remarquez que cette fonctionnalité doit aussi être configurée sur le frontal." #. type: cindex -#: guix-git/doc/guix.texi:26926 +#: guix-git/doc/guix.texi:27263 #, no-wrap msgid "php-fpm" msgstr "php-fpm" #. type: Plain text -#: guix-git/doc/guix.texi:26929 +#: guix-git/doc/guix.texi:27266 msgid "PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI implementation with some additional features useful for sites of any size." msgstr "PHP-FPM (FastCGI Process Manager) est une implémentation FastCGI de PHP alternative avec quelques fonctionnalités supplémentaires utiles pour les sites de toutes tailles." #. type: Plain text -#: guix-git/doc/guix.texi:26931 +#: guix-git/doc/guix.texi:27268 msgid "These features include:" msgstr "Ces fonctionnalités comprennent :" #. type: item -#: guix-git/doc/guix.texi:26932 +#: guix-git/doc/guix.texi:27269 #, no-wrap msgid "Adaptive process spawning" msgstr "La création de processus adaptative" #. type: item -#: guix-git/doc/guix.texi:26933 +#: guix-git/doc/guix.texi:27270 #, no-wrap msgid "Basic statistics (similar to Apache's mod_status)" msgstr "Des statistiques de base (comme le mod_status d'Apache)" #. type: item -#: guix-git/doc/guix.texi:26934 +#: guix-git/doc/guix.texi:27271 #, no-wrap msgid "Advanced process management with graceful stop/start" msgstr "La gestion des processus avancée avec arrêt et démarrage sans heurts" #. type: item -#: guix-git/doc/guix.texi:26935 +#: guix-git/doc/guix.texi:27272 #, no-wrap msgid "Ability to start workers with different uid/gid/chroot/environment" msgstr "La possibilité de démarrer des processus de travail avec différents uid/gid/chroot/environnement" #. type: itemize -#: guix-git/doc/guix.texi:26937 +#: guix-git/doc/guix.texi:27274 msgid "and different php.ini (replaces safe_mode)" msgstr "et différents php.ini (à la place de safe_mode)" #. type: item -#: guix-git/doc/guix.texi:26937 +#: guix-git/doc/guix.texi:27274 #, no-wrap msgid "Stdout & stderr logging" msgstr "L'enregistrement des journaux sur stdout et stderr" #. type: item -#: guix-git/doc/guix.texi:26938 +#: guix-git/doc/guix.texi:27275 #, no-wrap msgid "Emergency restart in case of accidental opcode cache destruction" msgstr "Le redémarrage d'urgence dans le cas de la destruction accidentelle du cache des opcodes" #. type: item -#: guix-git/doc/guix.texi:26939 +#: guix-git/doc/guix.texi:27276 #, no-wrap msgid "Accelerated upload support" msgstr "Le support des téléversements accélérés" #. type: item -#: guix-git/doc/guix.texi:26940 +#: guix-git/doc/guix.texi:27277 #, no-wrap msgid "Support for a \"slowlog\"" msgstr "Le support de « showlog »" #. type: item -#: guix-git/doc/guix.texi:26941 +#: guix-git/doc/guix.texi:27278 #, no-wrap msgid "Enhancements to FastCGI, such as fastcgi_finish_request() -" msgstr "Des améliorations à FastCGI, comme fastcgi_finish_request() -" #. type: itemize -#: guix-git/doc/guix.texi:26944 +#: guix-git/doc/guix.texi:27281 msgid "a special function to finish request & flush all data while continuing to do something time-consuming (video converting, stats processing, etc.)" msgstr "une fonction spéciale pour terminer la requête et nettoyer toutes les données tout en continuant à faire d'autres choses qui prennent du temps (conversion vidéo, gestion des stats, etc.)." #. type: Plain text -#: guix-git/doc/guix.texi:26946 +#: guix-git/doc/guix.texi:27283 msgid "...@: and much more." msgstr "…@: et bien plus." #. type: defvr -#: guix-git/doc/guix.texi:26947 +#: guix-git/doc/guix.texi:27284 #, no-wrap msgid "{Scheme Variable} php-fpm-service-type" msgstr "{Variable Scheme} php-fpm-service-type" #. type: defvr -#: guix-git/doc/guix.texi:26949 +#: guix-git/doc/guix.texi:27286 msgid "A Service type for @code{php-fpm}." msgstr "Un type de service pour @code{php-fpm}." #. type: deftp -#: guix-git/doc/guix.texi:26951 +#: guix-git/doc/guix.texi:27288 #, no-wrap msgid "{Data Type} php-fpm-configuration" msgstr "{Type de données} php-fpm-configuration" #. type: deftp -#: guix-git/doc/guix.texi:26953 +#: guix-git/doc/guix.texi:27290 msgid "Data Type for php-fpm service configuration." msgstr "Type de données pour la configuration du service php-fpm." #. type: item -#: guix-git/doc/guix.texi:26954 +#: guix-git/doc/guix.texi:27291 #, no-wrap msgid "@code{php} (default: @code{php})" msgstr "@code{php} (par défaut : @code{php})" #. type: table -#: guix-git/doc/guix.texi:26956 +#: guix-git/doc/guix.texi:27293 msgid "The php package to use." msgstr "Le paquet php à utiliser." #. type: item -#: guix-git/doc/guix.texi:26956 +#: guix-git/doc/guix.texi:27293 #, no-wrap msgid "@code{socket} (default: @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.sock\")})" msgstr "@code{socket} (par défaut : @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.sock\")})" #. type: table -#: guix-git/doc/guix.texi:26958 +#: guix-git/doc/guix.texi:27295 msgid "The address on which to accept FastCGI requests. Valid syntaxes are:" msgstr "L'adresse sur laquelle accepter les requêtes FastCGI. Les syntaxes valides sont :" #. type: code{#1} -#: guix-git/doc/guix.texi:26959 +#: guix-git/doc/guix.texi:27296 #, no-wrap msgid "\"ip.add.re.ss:port\"" msgstr "\"ip.add.re.ss:port\"" #. type: table -#: guix-git/doc/guix.texi:26961 +#: guix-git/doc/guix.texi:27298 msgid "Listen on a TCP socket to a specific address on a specific port." msgstr "Écoute sur un socket TCP sur l'adresse spécifiée sur un port spécifié." #. type: code{#1} -#: guix-git/doc/guix.texi:26961 +#: guix-git/doc/guix.texi:27298 #, no-wrap msgid "\"port\"" msgstr "\"port\"" #. type: table -#: guix-git/doc/guix.texi:26963 +#: guix-git/doc/guix.texi:27300 msgid "Listen on a TCP socket to all addresses on a specific port." msgstr "Écoute sur un socket TCP sur toutes les adresse sur un port spécifique." #. type: code{#1} -#: guix-git/doc/guix.texi:26963 +#: guix-git/doc/guix.texi:27300 #, no-wrap msgid "\"/path/to/unix/socket\"" msgstr "\"/path/to/unix/socket\"" #. type: table -#: guix-git/doc/guix.texi:26965 +#: guix-git/doc/guix.texi:27302 msgid "Listen on a unix socket." msgstr "Écoute sur un socket unix." #. type: item -#: guix-git/doc/guix.texi:26967 +#: guix-git/doc/guix.texi:27304 #, no-wrap msgid "@code{user} (default: @code{php-fpm})" msgstr "@code{user} (par défaut : @code{php-fpm})" #. type: table -#: guix-git/doc/guix.texi:26969 +#: guix-git/doc/guix.texi:27306 msgid "User who will own the php worker processes." msgstr "Utilisateur à qui appartiendra le processus de travail de php." #. type: item -#: guix-git/doc/guix.texi:26969 +#: guix-git/doc/guix.texi:27306 #, no-wrap msgid "@code{group} (default: @code{php-fpm})" msgstr "@code{group} (par défaut : @code{php-fpm})" #. type: table -#: guix-git/doc/guix.texi:26971 +#: guix-git/doc/guix.texi:27308 msgid "Group of the worker processes." msgstr "Groupe du processus de travail." #. type: item -#: guix-git/doc/guix.texi:26971 +#: guix-git/doc/guix.texi:27308 #, no-wrap msgid "@code{socket-user} (default: @code{php-fpm})" msgstr "@code{socket-user} (par défaut : @code{php-fpm})" #. type: table -#: guix-git/doc/guix.texi:26973 +#: guix-git/doc/guix.texi:27310 msgid "User who can speak to the php-fpm socket." msgstr "Utilisateur qui peut parler au socket php-fpm." #. type: item -#: guix-git/doc/guix.texi:26973 +#: guix-git/doc/guix.texi:27310 #, no-wrap msgid "@code{socket-group} (default: @code{nginx})" msgstr "@code{socket-group} (par défaut : @code{nginx})" #. type: table -#: guix-git/doc/guix.texi:26975 +#: guix-git/doc/guix.texi:27312 msgid "Group that can speak to the php-fpm socket." msgstr "Groupe qui peut parler au socket php-fpm." #. type: item -#: guix-git/doc/guix.texi:26975 +#: guix-git/doc/guix.texi:27312 #, no-wrap msgid "@code{pid-file} (default: @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.pid\")})" msgstr "@code{pid-file} (par défaut : @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.pid\")})" #. type: table -#: guix-git/doc/guix.texi:26978 +#: guix-git/doc/guix.texi:27315 msgid "The process id of the php-fpm process is written to this file once the service has started." msgstr "Le pid de php-fpm est écrit dans ce fichier une fois que le service a démarré." #. type: item -#: guix-git/doc/guix.texi:26978 +#: guix-git/doc/guix.texi:27315 #, no-wrap msgid "@code{log-file} (default: @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.log\")})" msgstr "@code{log-file} (par défaut : @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.log\")})" #. type: table -#: guix-git/doc/guix.texi:26980 +#: guix-git/doc/guix.texi:27317 msgid "Log for the php-fpm master process." msgstr "Fichier de journal pour le processus maître de php-fpm." #. type: item -#: guix-git/doc/guix.texi:26980 +#: guix-git/doc/guix.texi:27317 #, no-wrap msgid "@code{process-manager} (default: @code{(php-fpm-dynamic-process-manager-configuration)})" msgstr "@code{process-manager} (par défaut : @code{(php-fpm-dynamic-process-manager-configuration)})" #. type: table -#: guix-git/doc/guix.texi:26983 +#: guix-git/doc/guix.texi:27320 msgid "Detailed settings for the php-fpm process manager. Must be one of:" msgstr "Configuration détaillée pour le gestionnaire de processus de php-fpm. Il doit s'agir soit de :" #. type: code{#1} -#: guix-git/doc/guix.texi:26984 +#: guix-git/doc/guix.texi:27321 #, no-wrap msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26985 +#: guix-git/doc/guix.texi:27322 #, no-wrap msgid "" msgstr " ou" #. type: code{#1} -#: guix-git/doc/guix.texi:26986 +#: guix-git/doc/guix.texi:27323 #, no-wrap msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26988 +#: guix-git/doc/guix.texi:27325 #, no-wrap msgid "@code{display-errors} (default @code{#f})" msgstr "@code{display-errors} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:26993 +#: guix-git/doc/guix.texi:27330 msgid "Determines whether php errors and warning should be sent to clients and displayed in their browsers. This is useful for local php development, but a security risk for public sites, as error messages can reveal passwords and personal data." msgstr "Détermine si les erreurs et les avertissements php doivent être envoyés aux clients et affichés dans leur navigateur. Cela est utile pour un développement php local, mais un risque pour la sécurité pour les sites publics, comme les messages d'erreur peuvent révéler des mots de passes et des données personnelles." #. type: item -#: guix-git/doc/guix.texi:26993 +#: guix-git/doc/guix.texi:27330 #, no-wrap msgid "@code{timezone} (default @code{#f})" msgstr "@code{timezone} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:26995 +#: guix-git/doc/guix.texi:27332 msgid "Specifies @code{php_admin_value[date.timezone]} parameter." msgstr "Spécifie le paramètre @code{php_admin_value[date.timezone]}." #. type: item -#: guix-git/doc/guix.texi:26995 +#: guix-git/doc/guix.texi:27332 #, no-wrap msgid "@code{workers-logfile} (default @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.www.log\")})" msgstr "@code{workers-logfile} (par défaut : @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.www.log\")})" #. type: table -#: guix-git/doc/guix.texi:26998 +#: guix-git/doc/guix.texi:27335 msgid "This file will log the @code{stderr} outputs of php worker processes. Can be set to @code{#f} to disable logging." msgstr "Ce fichier enregistrera la sortie @code{stderr} des processus de travail de php. On peut indiquer @code{#f} pour désactiver la journalisation." #. type: item -#: guix-git/doc/guix.texi:26998 +#: guix-git/doc/guix.texi:27335 #, no-wrap msgid "@code{file} (default @code{#f})" msgstr "@code{file} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27001 +#: guix-git/doc/guix.texi:27338 msgid "An optional override of the whole configuration. You can use the @code{mixed-text-file} function or an absolute filepath for it." msgstr "Une version alternative de la configuration complète. Vous pouvez utiliser la fonction @code{mixed-text-file} ou un chemin de fichier absolu." #. type: item -#: guix-git/doc/guix.texi:27001 +#: guix-git/doc/guix.texi:27338 #, no-wrap msgid "@code{php-ini-file} (default @code{#f})" msgstr "@code{php-ini-file} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27005 +#: guix-git/doc/guix.texi:27342 msgid "An optional override of the default php settings. It may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). You can use the @code{mixed-text-file} function or an absolute filepath for it." msgstr "Une version alternative de la configuration de php par défaut. Il peut s'agir de n'importe quel objet « simili-fichier » (@pxref{G-Expressions, file-like objects}). Vous pouvez utiliser la fonction @code{mixed-text-file} ou un chemin de fichier absolu." #. type: table -#: guix-git/doc/guix.texi:27009 +#: guix-git/doc/guix.texi:27346 msgid "For local development it is useful to set a higher timeout and memory limit for spawned php processes. This be accomplished with the following operating system configuration snippet:" msgstr "Pour le développement local il est utile d'indiquer un long délai d'attente et une limite mémoire plus importante pour les processus php créés. Cela se fait avec les bouts de configuration systèmes suivants :" #. type: lisp -#: guix-git/doc/guix.texi:27014 +#: guix-git/doc/guix.texi:27351 #, no-wrap msgid "" "(define %local-php-ini\n" @@ -50743,7 +51431,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:27021 +#: guix-git/doc/guix.texi:27358 #, no-wrap msgid "" "(operating-system\n" @@ -50761,108 +51449,108 @@ msgstr "" " %base-services)))\n" #. type: table -#: guix-git/doc/guix.texi:27026 +#: guix-git/doc/guix.texi:27363 msgid "Consult the @url{https://www.php.net/manual/en/ini.core.php,core php.ini directives} for comprehensive documentation on the acceptable @file{php.ini} directives." msgstr "Consultez les @url{https://www.php.net/manual/en/ini.core.php,principales directives de php.ini} pour une documentation complète sur les directives @file{php.ini} possibles." #. type: deftp -#: guix-git/doc/guix.texi:27029 +#: guix-git/doc/guix.texi:27366 #, no-wrap msgid "{Data type} php-fpm-dynamic-process-manager-configuration" msgstr "{Type de données} php-fpm-dynamic-process-manager-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27033 +#: guix-git/doc/guix.texi:27370 msgid "Data Type for the @code{dynamic} php-fpm process manager. With the @code{dynamic} process manager, spare worker processes are kept around based on its configured limits." msgstr "Type de données pour le gestionnaire de processus @code{dynamic} de php-fpm. Avec le gestionnaire de processus @code{dynamic}, des processus de travail de secours sont gardés en fonction des limites configurées." #. type: item -#: guix-git/doc/guix.texi:27034 guix-git/doc/guix.texi:27050 -#: guix-git/doc/guix.texi:27060 +#: guix-git/doc/guix.texi:27371 guix-git/doc/guix.texi:27387 +#: guix-git/doc/guix.texi:27397 #, no-wrap msgid "@code{max-children} (default: @code{5})" msgstr "@code{max-children} (par défaut : @code{5})" #. type: table -#: guix-git/doc/guix.texi:27036 guix-git/doc/guix.texi:27052 -#: guix-git/doc/guix.texi:27062 +#: guix-git/doc/guix.texi:27373 guix-git/doc/guix.texi:27389 +#: guix-git/doc/guix.texi:27399 msgid "Maximum of worker processes." msgstr "Nombre maximum de processus de travail." #. type: item -#: guix-git/doc/guix.texi:27036 +#: guix-git/doc/guix.texi:27373 #, no-wrap msgid "@code{start-servers} (default: @code{2})" msgstr "@code{start-servers} (par défaut : @code{2})" #. type: table -#: guix-git/doc/guix.texi:27038 +#: guix-git/doc/guix.texi:27375 msgid "How many worker processes should be started on start-up." msgstr "Nombre de processus de travail au démarrage." #. type: item -#: guix-git/doc/guix.texi:27038 +#: guix-git/doc/guix.texi:27375 #, no-wrap msgid "@code{min-spare-servers} (default: @code{1})" msgstr "@code{min-spare-servers} (par défaut : @code{1})" #. type: table -#: guix-git/doc/guix.texi:27040 +#: guix-git/doc/guix.texi:27377 msgid "How many spare worker processes should be kept around at minimum." msgstr "Nombre de processus de travail de secours minimum qui doivent rester à disposition." #. type: item -#: guix-git/doc/guix.texi:27040 +#: guix-git/doc/guix.texi:27377 #, no-wrap msgid "@code{max-spare-servers} (default: @code{3})" msgstr "@code{max-spare-servers} (par défaut : @code{3})" #. type: table -#: guix-git/doc/guix.texi:27042 +#: guix-git/doc/guix.texi:27379 msgid "How many spare worker processes should be kept around at maximum." msgstr "Nombre maximum de processus de travail de secours qui peuvent rester à disposition." #. type: deftp -#: guix-git/doc/guix.texi:27045 +#: guix-git/doc/guix.texi:27382 #, no-wrap msgid "{Data type} php-fpm-static-process-manager-configuration" msgstr "{Type de données} php-fpm-static-process-manager-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27049 +#: guix-git/doc/guix.texi:27386 msgid "Data Type for the @code{static} php-fpm process manager. With the @code{static} process manager, an unchanging number of worker processes are created." msgstr "Type de données pour le gestionnaire de processus @code{static} de php-fpm. Avec le gestionnaire de processus @code{static}, un nombre constant de processus de travail est créé." #. type: deftp -#: guix-git/doc/guix.texi:27055 +#: guix-git/doc/guix.texi:27392 #, no-wrap msgid "{Data type} php-fpm-on-demand-process-manager-configuration" msgstr "{Type de données} php-fpm-on-demand-process-manager-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27059 +#: guix-git/doc/guix.texi:27396 msgid "Data Type for the @code{on-demand} php-fpm process manager. With the @code{on-demand} process manager, worker processes are only created as requests arrive." msgstr "Type de données pour le gestionnaire de processus @code{on-demand} de php-fpm. Avec le gestionnaire de processus @code{on-demand}, les processus de travail ne sont créés que lorsque les requêtes arrivent." #. type: item -#: guix-git/doc/guix.texi:27062 +#: guix-git/doc/guix.texi:27399 #, no-wrap msgid "@code{process-idle-timeout} (default: @code{10})" msgstr "@code{process-idle-timeout} (par défaut : @code{10})" #. type: table -#: guix-git/doc/guix.texi:27064 +#: guix-git/doc/guix.texi:27401 msgid "The time in seconds after which a process with no requests is killed." msgstr "La durée en secondes après laquelle un processus sans requête sera tué." #. type: deffn -#: guix-git/doc/guix.texi:27068 +#: guix-git/doc/guix.texi:27405 #, no-wrap msgid "{Scheme Procedure} nginx-php-location @" msgstr "{Procédure Scheme} nginx-php-location @" #. type: deffn -#: guix-git/doc/guix.texi:27074 +#: guix-git/doc/guix.texi:27411 msgid "[#:nginx-package nginx] @ [socket (string-append \"/var/run/php\" @ (version-major (package-version php)) @ \"-fpm.sock\")] A helper function to quickly add php to an @code{nginx-server-configuration}." msgstr "" "[#:nginx-package nginx] @\n" @@ -50872,12 +51560,12 @@ msgstr "" "Une fonction d'aide pour ajouter rapidement php à un @code{nginx-server-configuration}." #. type: Plain text -#: guix-git/doc/guix.texi:27077 +#: guix-git/doc/guix.texi:27414 msgid "A simple services setup for nginx with php can look like this:" msgstr "Une configuration simple de services pour php ressemble à ceci :" #. type: lisp -#: guix-git/doc/guix.texi:27090 +#: guix-git/doc/guix.texi:27427 #, no-wrap msgid "" "(services (cons* (service dhcp-client-service-type)\n" @@ -50907,24 +51595,24 @@ msgstr "" " %base-services))\n" #. type: cindex -#: guix-git/doc/guix.texi:27092 +#: guix-git/doc/guix.texi:27429 #, no-wrap msgid "cat-avatar-generator" msgstr "cat-avatar-generator" #. type: Plain text -#: guix-git/doc/guix.texi:27096 +#: guix-git/doc/guix.texi:27433 msgid "The cat avatar generator is a simple service to demonstrate the use of php-fpm in @code{Nginx}. It is used to generate cat avatar from a seed, for instance the hash of a user's email address." msgstr "Le générateur d'avatar de chat est un simple service pour démontrer l'utilisation de php-fpm dans @code{Nginx}. Il permet de générer des avatars de chats à partir d'une graine, par exemple le hash de l'adresse de courriel d'un utilisateur." #. type: deffn -#: guix-git/doc/guix.texi:27097 +#: guix-git/doc/guix.texi:27434 #, no-wrap msgid "{Scheme Procedure} cat-avatar-generator-service @" msgstr "{Procédure Scheme} cat-avatar-generator-service @" #. type: deffn -#: guix-git/doc/guix.texi:27105 +#: guix-git/doc/guix.texi:27442 msgid "[#:cache-dir \"/var/cache/cat-avatar-generator\"] @ [#:package cat-avatar-generator] @ [#:configuration (nginx-server-configuration)] Returns an nginx-server-configuration that inherits @code{configuration}. It extends the nginx configuration to add a server block that serves @code{package}, a version of cat-avatar-generator. During execution, cat-avatar-generator will be able to use @code{cache-dir} as its cache directory." msgstr "" "[#:cache-dir \"/var/cache/cat-avatar-generator\"] @\n" @@ -50933,12 +51621,12 @@ msgstr "" "Renvoie un nginx-server-configuration qui hérite de @code{configuration}. Il étend la configuration nginx pour ajouter un bloc de serveur qui sert @code{package}, une version de cat-avatar-generator. Pendant l'exécution, cat-avatar-generator pourra utiliser @code{cache-dir} comme répertoire de cache." #. type: Plain text -#: guix-git/doc/guix.texi:27108 +#: guix-git/doc/guix.texi:27445 msgid "A simple setup for cat-avatar-generator can look like this:" msgstr "Une configuration simple de cat-avatar-generator ressemble à ceci :" #. type: lisp -#: guix-git/doc/guix.texi:27115 +#: guix-git/doc/guix.texi:27452 #, no-wrap msgid "" "(services (cons* (cat-avatar-generator-service\n" @@ -50956,177 +51644,177 @@ msgstr "" " %base-services))\n" #. type: subsubheading -#: guix-git/doc/guix.texi:27117 +#: guix-git/doc/guix.texi:27454 #, no-wrap msgid "Hpcguix-web" msgstr "Hpcguix-web" #. type: cindex -#: guix-git/doc/guix.texi:27119 +#: guix-git/doc/guix.texi:27456 #, no-wrap msgid "hpcguix-web" msgstr "hpcguix-web" #. type: Plain text -#: guix-git/doc/guix.texi:27124 +#: guix-git/doc/guix.texi:27461 msgid "The @uref{https://github.com/UMCUGenetics/hpcguix-web/, hpcguix-web} program is a customizable web interface to browse Guix packages, initially designed for users of high-performance computing (HPC) clusters." msgstr "Le programme @uref{https://github.com/UMCUGenetics/hpcguix-web/, hpcguix-web} est une interface web personnalisable pour naviguer dans les paquets Guix, initialement conçue pour les utilisateurs des grappes de calcul de haute performance (HPC)." #. type: defvr -#: guix-git/doc/guix.texi:27125 +#: guix-git/doc/guix.texi:27462 #, no-wrap msgid "{Scheme Variable} hpcguix-web-service-type" msgstr "{Variable Scheme} hpcguix-web-service-type" #. type: defvr -#: guix-git/doc/guix.texi:27127 +#: guix-git/doc/guix.texi:27464 msgid "The service type for @code{hpcguix-web}." msgstr "Le type de service pour @code{hpcguix-web}." #. type: deftp -#: guix-git/doc/guix.texi:27129 +#: guix-git/doc/guix.texi:27466 #, no-wrap msgid "{Data Type} hpcguix-web-configuration" msgstr "{Type de données} hpcguix-web-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27131 +#: guix-git/doc/guix.texi:27468 msgid "Data type for the hpcguix-web service configuration." msgstr "Type de données pour la configuration du service hpcguix-web." #. type: code{#1} -#: guix-git/doc/guix.texi:27133 +#: guix-git/doc/guix.texi:27470 #, no-wrap msgid "specs" msgstr "specs" #. type: table -#: guix-git/doc/guix.texi:27136 +#: guix-git/doc/guix.texi:27473 msgid "A gexp (@pxref{G-Expressions}) specifying the hpcguix-web service configuration. The main items available in this spec are:" msgstr "Une gexp (@pxref{G-Expressions}) spécifiant la configuration du service hpcguix-web. Les éléments principaux disponibles dans cette spec sont :" #. type: item -#: guix-git/doc/guix.texi:27138 +#: guix-git/doc/guix.texi:27475 #, no-wrap msgid "@code{title-prefix} (default: @code{\"hpcguix | \"})" msgstr "@code{title-prefix} (par défaut : @code{\"hpcguix | \"})" #. type: table -#: guix-git/doc/guix.texi:27140 +#: guix-git/doc/guix.texi:27477 msgid "The page title prefix." msgstr "Le préfixe du titre des pages." #. type: item -#: guix-git/doc/guix.texi:27141 +#: guix-git/doc/guix.texi:27478 #, no-wrap msgid "@code{guix-command} (default: @code{\"guix\"})" msgstr "@code{guix-command} (par défaut : @code{\"guix\"})" #. type: table -#: guix-git/doc/guix.texi:27143 +#: guix-git/doc/guix.texi:27480 msgid "The @command{guix} command." msgstr "La commande @command{guix}." #. type: item -#: guix-git/doc/guix.texi:27144 +#: guix-git/doc/guix.texi:27481 #, no-wrap msgid "@code{package-filter-proc} (default: @code{(const #t)})" msgstr "@code{package-filter-proc} (par défaut : @code{(const #t)})" #. type: table -#: guix-git/doc/guix.texi:27146 +#: guix-git/doc/guix.texi:27483 msgid "A procedure specifying how to filter packages that are displayed." msgstr "Une procédure qui spécifie comment filtrer les paquets qui seront affichés." #. type: item -#: guix-git/doc/guix.texi:27147 +#: guix-git/doc/guix.texi:27484 #, no-wrap msgid "@code{package-page-extension-proc} (default: @code{(const '())})" msgstr "@code{package-page-extension-proc} (par défaut : @code{(const '())})" #. type: table -#: guix-git/doc/guix.texi:27149 +#: guix-git/doc/guix.texi:27486 msgid "Extension package for @code{hpcguix-web}." msgstr "Paquet d'extensions pour @code{hpcguix-web}." #. type: item -#: guix-git/doc/guix.texi:27150 +#: guix-git/doc/guix.texi:27487 #, no-wrap msgid "@code{menu} (default: @code{'()})" msgstr "@code{menu} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27152 +#: guix-git/doc/guix.texi:27489 msgid "Additional entry in page @code{menu}." msgstr "Entrée supplémentaire dans la page @code{menu}." #. type: item -#: guix-git/doc/guix.texi:27153 +#: guix-git/doc/guix.texi:27490 #, no-wrap msgid "@code{channels} (default: @code{%default-channels})" msgstr "@code{channels} (par défaut : @code{%default-channels})" #. type: table -#: guix-git/doc/guix.texi:27155 +#: guix-git/doc/guix.texi:27492 msgid "List of channels from which the package list is built (@pxref{Channels})." msgstr "Liste des canaux depuis lesquels la liste des paquets est construite (@pxref{Channels})." #. type: item -#: guix-git/doc/guix.texi:27156 +#: guix-git/doc/guix.texi:27493 #, no-wrap msgid "@code{package-list-expiration} (default: @code{(* 12 3600)})" msgstr "@code{package-list-expiration} (par défaut : @code{(* 12 3600)})" #. type: table -#: guix-git/doc/guix.texi:27159 +#: guix-git/doc/guix.texi:27496 msgid "The expiration time, in seconds, after which the package list is rebuilt from the latest instances of the given channels." msgstr "Le temps d'expiration, en secondes, après lequel la liste des paquets est reconstruite depuis les dernières instance des canaux donnés." #. type: table -#: guix-git/doc/guix.texi:27164 +#: guix-git/doc/guix.texi:27501 msgid "See the hpcguix-web repository for a @uref{https://github.com/UMCUGenetics/hpcguix-web/blob/master/hpcweb-configuration.scm, complete example}." msgstr "Voir le dépôt hpcguix-web pour un @uref{https://github.com/UMCUGenetics/hpcguix-web/blob/master/hpcweb-configuration.scm, exemple complet}." #. type: item -#: guix-git/doc/guix.texi:27165 +#: guix-git/doc/guix.texi:27502 #, no-wrap msgid "@code{package} (default: @code{hpcguix-web})" msgstr "@code{package} (par défaut : @code{hpcguix-web})" #. type: table -#: guix-git/doc/guix.texi:27167 +#: guix-git/doc/guix.texi:27504 msgid "The hpcguix-web package to use." msgstr "Le paquet hpcguix-web à utiliser." #. type: item -#: guix-git/doc/guix.texi:27168 +#: guix-git/doc/guix.texi:27505 #, no-wrap msgid "@code{address} (default: @code{\"127.0.0.1\"})" msgstr "@code{address} (par défaut : @code{\"127.0.0.1\"})" #. type: table -#: guix-git/doc/guix.texi:27170 +#: guix-git/doc/guix.texi:27507 msgid "The IP address to listen to." msgstr "L'adresse IP sur laquelle écouter." #. type: item -#: guix-git/doc/guix.texi:27171 +#: guix-git/doc/guix.texi:27508 #, no-wrap msgid "@code{port} (default: @code{5000})" msgstr "@code{port} (par défaut : @code{5000})" #. type: table -#: guix-git/doc/guix.texi:27173 +#: guix-git/doc/guix.texi:27510 msgid "The port number to listen to." msgstr "Le numéro de port sur lequel écouter." #. type: Plain text -#: guix-git/doc/guix.texi:27177 +#: guix-git/doc/guix.texi:27514 msgid "A typical hpcguix-web service declaration looks like this:" msgstr "Une déclaration de service hpcguix-web typique ressemble à cela :" #. type: lisp -#: guix-git/doc/guix.texi:27186 +#: guix-git/doc/guix.texi:27523 #, no-wrap msgid "" "(service hpcguix-web-service-type\n" @@ -51146,39 +51834,39 @@ msgstr "" " (menu '((\"/about\" \"ABOUT\"))))))))\n" #. type: quotation -#: guix-git/doc/guix.texi:27193 +#: guix-git/doc/guix.texi:27530 msgid "The hpcguix-web service periodically updates the package list it publishes by pulling channels from Git. To that end, it needs to access X.509 certificates so that it can authenticate Git servers when communicating over HTTPS, and it assumes that @file{/etc/ssl/certs} contains those certificates." msgstr "Le service hpcguix-web met régulièrement à jour la liste des paquets qu'il publie en récupérant les canaux depuis Git. Pour cela, il doit accéder aux certificats X.509 pour qu'il puisse authentifier les serveurs Git quand il communique en HTTPS, et il suppose que @file{/etc/ssl/certs} contient ces certificats." #. type: quotation -#: guix-git/doc/guix.texi:27197 +#: guix-git/doc/guix.texi:27534 msgid "Thus, make sure to add @code{nss-certs} or another certificate package to the @code{packages} field of your configuration. @ref{X.509 Certificates}, for more information on X.509 certificates." msgstr "Ainsi, assurez-vous d'ajouter @code{nss-certs} ou un autre paquet de certificats dans le champ @code{packages} de votre configuration. @ref{X.509 Certificates} pour plus d'informations sur les certificats X.509." #. type: cindex -#: guix-git/doc/guix.texi:27199 guix-git/doc/guix.texi:27201 +#: guix-git/doc/guix.texi:27536 guix-git/doc/guix.texi:27538 #, no-wrap msgid "gmnisrv" msgstr "gmnisrv" #. type: Plain text -#: guix-git/doc/guix.texi:27204 +#: guix-git/doc/guix.texi:27541 msgid "The @uref{https://git.sr.ht/~sircmpwn/gmnisrv, gmnisrv} program is a simple @uref{https://gemini.circumlunar.space/, Gemini} protocol server." msgstr "Le programme @uref{https://git.sr.ht/~sircmpwn/gmnisrv, gmnisrv} est un serveur simple pour le protocole @uref{https://gemini.circumlunar.space/, Gemini}." #. type: deffn -#: guix-git/doc/guix.texi:27205 +#: guix-git/doc/guix.texi:27542 #, no-wrap msgid "{Scheme Variable} gmnisrv-service-type" msgstr "{Variable Scheme} gmnisrv-service-type" #. type: deffn -#: guix-git/doc/guix.texi:27208 +#: guix-git/doc/guix.texi:27545 msgid "This is the type of the gmnisrv service, whose value should be a @code{gmnisrv-configuration} object, as in this example:" msgstr "C'est le type du service gmnisrv, dont la valeur devrait être un objet @code{gmnisrv-configuration} comme dans cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:27213 +#: guix-git/doc/guix.texi:27550 #, no-wrap msgid "" "(service gmnisrv-service-type\n" @@ -51190,68 +51878,68 @@ msgstr "" " (config-file (local-file \"./my-gmnisrv.ini\"))))\n" #. type: deftp -#: guix-git/doc/guix.texi:27216 +#: guix-git/doc/guix.texi:27553 #, no-wrap msgid "{Data Type} gmnisrv-configuration" msgstr "{Type de données} gmnisrv-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27218 +#: guix-git/doc/guix.texi:27555 msgid "Data type representing the configuration of gmnisrv." msgstr "Type données qui représente la configuration de gmnisrv." #. type: item -#: guix-git/doc/guix.texi:27220 +#: guix-git/doc/guix.texi:27557 #, no-wrap msgid "@code{package} (default: @var{gmnisrv})" msgstr "@code{package} (par défaut : @var{gmnisrv})" #. type: table -#: guix-git/doc/guix.texi:27222 +#: guix-git/doc/guix.texi:27559 msgid "Package object of the gmnisrv server." msgstr "Objet de paquet du serveur gmnisrv." #. type: item -#: guix-git/doc/guix.texi:27223 +#: guix-git/doc/guix.texi:27560 #, no-wrap msgid "@code{config-file} (default: @code{%default-gmnisrv-config-file})" msgstr "@code{config-file} (par défaut : @code{%default-gmnisrv-config-file})" #. type: table -#: guix-git/doc/guix.texi:27229 +#: guix-git/doc/guix.texi:27566 msgid "File-like object of the gmnisrv configuration file to use. The default configuration listens on port 1965 and serves files from @file{/srv/gemini}. Certificates are stored in @file{/var/lib/gemini/certs}. For more information, run @command{man gmnisrv} and @command{man gmnisrv.ini}." msgstr "Objet simili-fichier du fichier de configuration de gmnisrv à utiliser. La configuration par défaut écoute sur le port 1965 et sert les fichiers de @file{/srv/gemini}. Les certificats sont stockés dans @file{/var/lib/gemini/certs}. Pour plus d'informations, lancez @command{man gmnisrv} et @command{man gmnisrv.ini}." #. type: subsubheading -#: guix-git/doc/guix.texi:27233 +#: guix-git/doc/guix.texi:27570 #, no-wrap msgid "Agate" msgstr "Agate" #. type: cindex -#: guix-git/doc/guix.texi:27235 +#: guix-git/doc/guix.texi:27572 #, no-wrap msgid "agate" msgstr "agate" #. type: Plain text -#: guix-git/doc/guix.texi:27240 +#: guix-git/doc/guix.texi:27577 msgid "The @uref{gemini://qwertqwefsday.eu/agate.gmi, Agate} (@uref{https://github.com/mbrubeck/agate, GitHub page over HTTPS}) program is a simple @uref{https://gemini.circumlunar.space/, Gemini} protocol server written in Rust." msgstr "Le programme @uref{gemini://qwertqwefsday.eu/agate.gmi, Agate} (@uref{https://github.com/mbrubeck/agate, page GitHub sur HTTPS}) est un serveur simple pour le protocole @uref{https://gemini.circumlunar.space/, Gemini} écrit en Rust." #. type: deffn -#: guix-git/doc/guix.texi:27241 +#: guix-git/doc/guix.texi:27578 #, no-wrap msgid "{Scheme Variable} agate-service-type" msgstr "{Variable Scheme} agate-service-type" #. type: deffn -#: guix-git/doc/guix.texi:27244 +#: guix-git/doc/guix.texi:27581 msgid "This is the type of the agate service, whose value should be an @code{agate-service-type} object, as in this example:" msgstr "C'est le type du service agate, dont la valeur devrait être un objet @code{agate-service-type} comme dans cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:27251 +#: guix-git/doc/guix.texi:27588 #, no-wrap msgid "" "(service agate-service-type\n" @@ -51267,17 +51955,17 @@ msgstr "" "\t (key \"/srv/key.rsa\")))\n" #. type: deffn -#: guix-git/doc/guix.texi:27256 +#: guix-git/doc/guix.texi:27593 msgid "The example above represents the minimal tweaking necessary to get Agate up and running. Specifying the path to the certificate and key is always necessary, as the Gemini protocol requires TLS by default." msgstr "L'exemple ci-dessus représente les changements minimaux nécessaires pour qu'Agate soit lancé. Spécifier le chemin du certificat et de la clé est toujours nécessaire, car le protocole Gemini nécessite TLS par défaut." #. type: deffn -#: guix-git/doc/guix.texi:27259 +#: guix-git/doc/guix.texi:27596 msgid "To obtain a certificate and a key, you could, for example, use OpenSSL, running a command similar to the following example:" msgstr "Pour obtenir un certificat et une clé, vous pouvez par exemple utiliser OpenSSL, en lançant une commande telle que l'exemple suivant :" #. type: example -#: guix-git/doc/guix.texi:27263 +#: guix-git/doc/guix.texi:27600 #, no-wrap msgid "" "openssl req -x509 -newkey rsa:4096 -keyout key.rsa -out cert.pem \\\n" @@ -51287,220 +51975,220 @@ msgstr "" " -days 3650 -nodes -subj \"/CN=example.com\"\n" #. type: deffn -#: guix-git/doc/guix.texi:27268 +#: guix-git/doc/guix.texi:27605 msgid "Of course, you'll have to replace @i{example.com} with your own domain name, and then point the Agate configuration towards the path of the generated key and certificate." msgstr "Bien sûr, vous devez remplacer @i{example.com} par votre propre nom de domaine, puis pointer la configuration d'Agate vers le chemin de la clé et du certificats générés." #. type: deftp -#: guix-git/doc/guix.texi:27271 +#: guix-git/doc/guix.texi:27608 #, no-wrap msgid "{Data Type} agate-configuration" msgstr "{Type de données} agate-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27273 +#: guix-git/doc/guix.texi:27610 msgid "Data type representing the configuration of Agate." msgstr "Type de données représentant la configuration d'Agate." #. type: item -#: guix-git/doc/guix.texi:27275 +#: guix-git/doc/guix.texi:27612 #, no-wrap msgid "@code{package} (default: @code{agate})" msgstr "@code{package} (par défaut : @code{agate})" #. type: table -#: guix-git/doc/guix.texi:27277 +#: guix-git/doc/guix.texi:27614 msgid "The package object of the Agate server." msgstr "Objet de paquet du serveur Agate." #. type: item -#: guix-git/doc/guix.texi:27278 +#: guix-git/doc/guix.texi:27615 #, no-wrap msgid "@code{content} (default: @file{\"/srv/gemini\"})" msgstr "@code{content} (par défaut : @file{\"/srv/gemini\"})" #. type: table -#: guix-git/doc/guix.texi:27280 +#: guix-git/doc/guix.texi:27617 msgid "The directory from which Agate will serve files." msgstr "Le répertoire à partir duquel Agate servira ses fichiers." #. type: item -#: guix-git/doc/guix.texi:27281 +#: guix-git/doc/guix.texi:27618 #, no-wrap msgid "@code{cert} (default: @code{#f})" msgstr "@code{cert} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27284 +#: guix-git/doc/guix.texi:27621 msgid "The path to the TLS certificate PEM file to be used for encrypted connections. Must be filled in with a value from the user." msgstr "Le chemin vers le certificat TLS en PEM à utiliser pour chiffrer les connexions. Il doit être rempli avec une valeur venant de l'utilisateur." #. type: item -#: guix-git/doc/guix.texi:27285 guix-git/doc/guix.texi:27721 +#: guix-git/doc/guix.texi:27622 guix-git/doc/guix.texi:28058 #, no-wrap msgid "@code{key} (default: @code{#f})" msgstr "@code{key} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27288 +#: guix-git/doc/guix.texi:27625 msgid "The path to the PKCS8 private key file to be used for encrypted connections. Must be filled in with a value from the user." msgstr "Le chemin de fichier vers la clef privée PKCS8 à utilise pour les connexions chiffrées. Elle doit être remplie avec une valeur de l'utilisateur." #. type: item -#: guix-git/doc/guix.texi:27289 +#: guix-git/doc/guix.texi:27626 #, no-wrap msgid "@code{addr} (default: @code{'(\"0.0.0.0:1965\" \"[::]:1965\")})" msgstr "@code{addr} (par défaut : @code{'(\"0.0.0.0:1965\" \"[::]:1965\")})" #. type: table -#: guix-git/doc/guix.texi:27291 +#: guix-git/doc/guix.texi:27628 msgid "A list of the addresses to listen on." msgstr "Une liste des adresses sur lesquelles écouter." #. type: table -#: guix-git/doc/guix.texi:27294 +#: guix-git/doc/guix.texi:27631 msgid "The domain name of this Gemini server. Optional." msgstr "Le nom de domaine de ce serveur Gemini. Facultatif." #. type: item -#: guix-git/doc/guix.texi:27295 +#: guix-git/doc/guix.texi:27632 #, no-wrap msgid "@code{lang} (default: @code{#f})" msgstr "@code{lang} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27297 +#: guix-git/doc/guix.texi:27634 msgid "RFC 4646 language code(s) for text/gemini documents. Optional." msgstr "Codes de langues RFC 4646 pour les documents text/gemini. Facultatif." #. type: item -#: guix-git/doc/guix.texi:27298 +#: guix-git/doc/guix.texi:27635 #, no-wrap msgid "@code{silent?} (default: @code{#f})" msgstr "@code{silent?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27300 +#: guix-git/doc/guix.texi:27637 msgid "Set to @code{#t} to disable logging output." msgstr "Indiquez @code{#t} pour désactiver la journalisation de la sortie." #. type: item -#: guix-git/doc/guix.texi:27301 +#: guix-git/doc/guix.texi:27638 #, no-wrap msgid "@code{serve-secret?} (default: @code{#f})" msgstr "@code{serve-secret?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27304 +#: guix-git/doc/guix.texi:27641 msgid "Set to @code{#t} to serve secret files (files/directories starting with a dot)." msgstr "Indiquez @code{#t} pour servir des fichiers secrets (des fichiers et répertoires commençant par un point)." #. type: item -#: guix-git/doc/guix.texi:27305 +#: guix-git/doc/guix.texi:27642 #, no-wrap msgid "@code{log-ip?} (default: @code{#t})" msgstr "@code{log-ip?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:27307 +#: guix-git/doc/guix.texi:27644 msgid "Whether or not to output IP addresses when logging." msgstr "Indique si l'adresse IP de sortie doit être journalisée." #. type: item -#: guix-git/doc/guix.texi:27308 +#: guix-git/doc/guix.texi:27645 #, no-wrap msgid "@code{user} (default: @code{\"agate\"})" msgstr "@code{user} (par défaut : @code{\"agate\"})" #. type: table -#: guix-git/doc/guix.texi:27310 +#: guix-git/doc/guix.texi:27647 msgid "Owner of the @code{agate} process." msgstr "Propriétaire du processus @code{agate}." #. type: item -#: guix-git/doc/guix.texi:27311 +#: guix-git/doc/guix.texi:27648 #, no-wrap msgid "@code{group} (default: @code{\"agate\"})" msgstr "@code{group} (par défaut : @code{\"agate\"})" #. type: table -#: guix-git/doc/guix.texi:27313 +#: guix-git/doc/guix.texi:27650 msgid "Owner's group of the @code{agate} process." msgstr "Groupe du propriétaire du processus @code{agate}." #. type: item -#: guix-git/doc/guix.texi:27314 +#: guix-git/doc/guix.texi:27651 #, no-wrap msgid "@code{log-file} (default: @file{\"/var/log/agate.log\"})" msgstr "@code{log-file} (par défaut : @code{\"/var/log/agate.log\"})" #. type: table -#: guix-git/doc/guix.texi:27316 +#: guix-git/doc/guix.texi:27653 msgid "The file which should store the logging output of Agate." msgstr "Le fichier qui devrait contenir la sortie de journal d'Agate." #. type: cindex -#: guix-git/doc/guix.texi:27323 +#: guix-git/doc/guix.texi:27660 #, no-wrap msgid "Web" msgstr "Web" #. type: cindex -#: guix-git/doc/guix.texi:27324 +#: guix-git/doc/guix.texi:27661 #, no-wrap msgid "HTTP, HTTPS" msgstr "HTTP, HTTPS" #. type: cindex -#: guix-git/doc/guix.texi:27325 +#: guix-git/doc/guix.texi:27662 #, no-wrap msgid "Let's Encrypt" msgstr "Let's Encrypt" #. type: cindex -#: guix-git/doc/guix.texi:27326 +#: guix-git/doc/guix.texi:27663 #, no-wrap msgid "TLS certificates" msgstr "Certificats TLS" #. type: Plain text -#: guix-git/doc/guix.texi:27333 +#: guix-git/doc/guix.texi:27670 msgid "The @code{(gnu services certbot)} module provides a service to automatically obtain a valid TLS certificate from the Let's Encrypt certificate authority. These certificates can then be used to serve content securely over HTTPS or other TLS-based protocols, with the knowledge that the client will be able to verify the server's authenticity." msgstr "Le module @code{(gnu services certbot)} fournit un service qui récupère automatiquement un certificat TLS valide de l'autorité de certification Let's Encrypt. Ces certificats peuvent ensuite être utilisés pour servir du contenu de manière sécurisée sur HTTPS et d'autres protocoles basés sur TLS, en sachant que le client sera capable de vérifier l'authenticité du serveur." #. type: Plain text -#: guix-git/doc/guix.texi:27345 +#: guix-git/doc/guix.texi:27682 msgid "@url{https://letsencrypt.org/, Let's Encrypt} provides the @code{certbot} tool to automate the certification process. This tool first securely generates a key on the server. It then makes a request to the Let's Encrypt certificate authority (CA) to sign the key. The CA checks that the request originates from the host in question by using a challenge-response protocol, requiring the server to provide its response over HTTP@. If that protocol completes successfully, the CA signs the key, resulting in a certificate. That certificate is valid for a limited period of time, and therefore to continue to provide TLS services, the server needs to periodically ask the CA to renew its signature." msgstr "@url{https://letsencrypt.org/, Let's Encrypt} fournit l'outil @code{certbot} pour automatiser le processus de certification. Cet outil génère d'abord un clef sur le serveur de manière sécurisée. Ensuite il demande à l'autorité de certification Let's Encrypt de signer la clef. La CA vérifie que la requête provient de l'hôte en question en utilisant un protocole de défi-réponse, ce qui requiert que le serveur fournisse sa réponse par HTTP@. Si ce protocole se passe sans encombre, la CA signe la clef et on obtient un certificat. Ce certificat est valide pour une durée limitée et donc, pour continuer à fournir des services en TLS, le serveur doit régulièrement demander à la CA de renouveler sa signature." #. type: Plain text -#: guix-git/doc/guix.texi:27352 +#: guix-git/doc/guix.texi:27689 msgid "The certbot service automates this process: the initial key generation, the initial certification request to the Let's Encrypt service, the web server challenge/response integration, writing the certificate to disk, the automated periodic renewals, and the deployment tasks associated with the renewal (e.g.@: reloading services, copying keys with different permissions)." msgstr "Le service certbot automatise ce processus : la génération initiale de la clef, la demande de certification initiale au service Let's Encrypt, l'intégration du protocole de défi/réponse dans le serveur web, l'écriture du certificat sur le disque, les renouvellements périodiques et les tâches de déploiement avec le renouvellement (p.@: ex.@: recharger les services, copier les clefs avec d'autres permissions)." #. type: Plain text -#: guix-git/doc/guix.texi:27358 +#: guix-git/doc/guix.texi:27695 msgid "Certbot is run twice a day, at a random minute within the hour. It won't do anything until your certificates are due for renewal or revoked, but running it regularly would give your service a chance of staying online in case a Let's Encrypt-initiated revocation happened for some reason." msgstr "Certbot est lancé deux fois par jour, à une minute aléatoire dans l'heure. Il ne fera rien sauf si vos certificats doivent être renouvelés ou sont révoqués, mais le lancer régulièrement permettra à vos services de rester en ligne si Let's Encrypt décide de révoquer votre certificat." #. type: Plain text -#: guix-git/doc/guix.texi:27362 +#: guix-git/doc/guix.texi:27699 msgid "By using this service, you agree to the ACME Subscriber Agreement, which can be found there: @url{https://acme-v01.api.letsencrypt.org/directory}." msgstr "En utilisant ce service, vous acceptez le document « ACME Subscriber Agreement », qu'on peut trouver ici : @url{https://acme-v01.api.letsencrypt.org/directory}." #. type: defvr -#: guix-git/doc/guix.texi:27363 +#: guix-git/doc/guix.texi:27700 #, no-wrap msgid "{Scheme Variable} certbot-service-type" msgstr "{Variable Scheme} certbot-service-type" #. type: defvr -#: guix-git/doc/guix.texi:27366 +#: guix-git/doc/guix.texi:27703 msgid "A service type for the @code{certbot} Let's Encrypt client. Its value must be a @code{certbot-configuration} record as in this example:" msgstr "Un type de service pour le client Let's Encrypt @code{certbot}. Sa valeur doit être un enregistrement @code{certbot-configuration} comme dans cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:27373 +#: guix-git/doc/guix.texi:27710 #, no-wrap msgid "" "(define %nginx-deploy-hook\n" @@ -51518,7 +52206,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:27384 +#: guix-git/doc/guix.texi:27721 #, no-wrap msgid "" "(service certbot-service-type\n" @@ -51544,241 +52232,241 @@ msgstr "" " (domains '(\"titi.example.net\")))))))\n" #. type: defvr -#: guix-git/doc/guix.texi:27387 +#: guix-git/doc/guix.texi:27724 msgid "See below for details about @code{certbot-configuration}." msgstr "Voir plus bas pour des détails sur @code{certbot-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:27389 +#: guix-git/doc/guix.texi:27726 #, no-wrap msgid "{Data Type} certbot-configuration" msgstr "{Type de données} certbot-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27392 +#: guix-git/doc/guix.texi:27729 msgid "Data type representing the configuration of the @code{certbot} service. This type has the following parameters:" msgstr "Type données représentant la configuration du service @code{certbot}. Ce type a les paramètres suivants :" #. type: item -#: guix-git/doc/guix.texi:27394 +#: guix-git/doc/guix.texi:27731 #, no-wrap msgid "@code{package} (default: @code{certbot})" msgstr "@code{package} (par défaut : @code{certbot})" #. type: table -#: guix-git/doc/guix.texi:27396 +#: guix-git/doc/guix.texi:27733 msgid "The certbot package to use." msgstr "Le paquet certbot à utiliser." #. type: item -#: guix-git/doc/guix.texi:27397 +#: guix-git/doc/guix.texi:27734 #, no-wrap msgid "@code{webroot} (default: @code{/var/www})" msgstr "@code{webroot} (par défaut : @code{/var/www})" #. type: table -#: guix-git/doc/guix.texi:27400 +#: guix-git/doc/guix.texi:27737 msgid "The directory from which to serve the Let's Encrypt challenge/response files." msgstr "Le répertoire depuis lequel servir les fichiers du défi/réponse de Let's Encrypt." #. type: item -#: guix-git/doc/guix.texi:27401 +#: guix-git/doc/guix.texi:27738 #, no-wrap msgid "@code{certificates} (default: @code{()})" msgstr "@code{certificates} (par défaut : @code{()})" #. type: table -#: guix-git/doc/guix.texi:27405 +#: guix-git/doc/guix.texi:27742 msgid "A list of @code{certificates-configuration}s for which to generate certificates and request signatures. Each certificate has a @code{name} and several @code{domains}." msgstr "Une liste de @code{certificates-configuration} pour lesquels générer des certificats et demander des signatures. Chaque certificat a un @code{name} et plusieurs @code{domains}." #. type: item -#: guix-git/doc/guix.texi:27406 +#: guix-git/doc/guix.texi:27743 #, no-wrap msgid "@code{email} (default: @code{#f})" msgstr "@code{email} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27410 +#: guix-git/doc/guix.texi:27747 msgid "Optional email address used for registration and recovery contact. Setting this is encouraged as it allows you to receive important notifications about the account and issued certificates." msgstr "Adresse de courriel facultative pour la création de compte et le contact de récupération de compte. Il est recommandé de l'indiquer car cela vous permet de recevoir des notifications importantes à propos de votre compte et des certificats créés." #. type: item -#: guix-git/doc/guix.texi:27411 guix-git/doc/guix.texi:29158 +#: guix-git/doc/guix.texi:27748 guix-git/doc/guix.texi:29495 #, no-wrap msgid "@code{server} (default: @code{#f})" msgstr "@code{server} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27414 +#: guix-git/doc/guix.texi:27751 msgid "Optional URL of ACME server. Setting this overrides certbot's default, which is the Let's Encrypt server." msgstr "URL facultative d'un serveur ACME. Indiquer ce paramètre remplace la valeur de certbot par défaut, qui est le serveur de Let's Encrypt." #. type: item -#: guix-git/doc/guix.texi:27415 +#: guix-git/doc/guix.texi:27752 #, no-wrap msgid "@code{rsa-key-size} (default: @code{2048})" msgstr "@code{rsa-key-size} (par défaut : @code{2048})" #. type: table -#: guix-git/doc/guix.texi:27417 +#: guix-git/doc/guix.texi:27754 msgid "Size of the RSA key." msgstr "Taille de la clef RSA." #. type: item -#: guix-git/doc/guix.texi:27418 +#: guix-git/doc/guix.texi:27755 #, no-wrap msgid "@code{default-location} (default: @i{see below})" msgstr "@code{default-location} (par défaut : @i{voir plus bas})" #. type: table -#: guix-git/doc/guix.texi:27427 +#: guix-git/doc/guix.texi:27764 msgid "The default @code{nginx-location-configuration}. Because @code{certbot} needs to be able to serve challenges and responses, it needs to be able to run a web server. It does so by extending the @code{nginx} web service with an @code{nginx-server-configuration} listening on the @var{domains} on port 80, and which has a @code{nginx-location-configuration} for the @code{/.well-known/} URI path subspace used by Let's Encrypt. @xref{Web Services}, for more on these nginx configuration data types." msgstr "Le @code{nginx-location-configuration} par défaut. Comme @code{certbot} doit pouvoir servir les défis et les réponses, il doit être capable de lancer un serveur web. Cela se fait en étendant le service web @code{nginx} avec un @code{nginx-server-configuration} qui écoute sur les @var{domains} sur le port 80 et qui a un @code{nginx-location-configuration} pour le chemin @code{/.well-known/} utilisé par Let's Encrypt. @xref{Web Services} pour plus d'information sur les types de données de la configuration de nginx." #. type: table -#: guix-git/doc/guix.texi:27431 +#: guix-git/doc/guix.texi:27768 msgid "Requests to other URL paths will be matched by the @code{default-location}, which if present is added to all @code{nginx-server-configuration}s." msgstr "Les requêtes vers d'autres URL correspondra à @code{default-location}, qui, s'il est présent, sera ajout é à tous les @code{nginx-server-configuration}." #. type: table -#: guix-git/doc/guix.texi:27435 +#: guix-git/doc/guix.texi:27772 msgid "By default, the @code{default-location} will issue a redirect from @code{http://@var{domain}/...} to @code{https://@var{domain}/...}, leaving you to define what to serve on your site via @code{https}." msgstr "Par défaut, le @code{default-location} sera une redirection de @code{http://@var{domain}/…} vers @code{https://@var{domain}/…}, en vous laissant définir ce que vous voulez servir sur votre site en @code{https}." #. type: table -#: guix-git/doc/guix.texi:27437 +#: guix-git/doc/guix.texi:27774 msgid "Pass @code{#f} to not issue a default location." msgstr "Passez @code{#f} pour ne pas utiliser de location par défaut." #. type: deftp -#: guix-git/doc/guix.texi:27440 +#: guix-git/doc/guix.texi:27777 #, no-wrap msgid "{Data Type} certificate-configuration" msgstr "{Type de données} certificate-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27443 +#: guix-git/doc/guix.texi:27780 msgid "Data type representing the configuration of a certificate. This type has the following parameters:" msgstr "Type de données représentant la configuration d'un certificat. Ce type a les paramètres suivants :" #. type: item -#: guix-git/doc/guix.texi:27445 +#: guix-git/doc/guix.texi:27782 #, no-wrap msgid "@code{name} (default: @i{see below})" msgstr "@code{name} (par défaut : @i{voir plus bas})" #. type: table -#: guix-git/doc/guix.texi:27449 +#: guix-git/doc/guix.texi:27786 msgid "This name is used by Certbot for housekeeping and in file paths; it doesn't affect the content of the certificate itself. To see certificate names, run @code{certbot certificates}." msgstr "Ce nom est utilisé par Certbot pour ses tâches quotidiennes et dans les chemins de fichiers ; il n'affecte pas le contenu des certificats eux-mêmes. Pour voir les noms des certificats, lancez @code{certbot certificates}." #. type: table -#: guix-git/doc/guix.texi:27451 +#: guix-git/doc/guix.texi:27788 msgid "Its default is the first provided domain." msgstr "Sa valeur par défaut est le premier domaine spécifié." #. type: item -#: guix-git/doc/guix.texi:27452 +#: guix-git/doc/guix.texi:27789 #, no-wrap msgid "@code{domains} (default: @code{()})" msgstr "@code{domains} (par défaut : @code{()})" #. type: table -#: guix-git/doc/guix.texi:27455 +#: guix-git/doc/guix.texi:27792 msgid "The first domain provided will be the subject CN of the certificate, and all domains will be Subject Alternative Names on the certificate." msgstr "Le premier domaine spécifié sera le CN du sujet du certificat, et tous les domaines seront les noms alternatifs du sujet dans le certificat." #. type: item -#: guix-git/doc/guix.texi:27456 +#: guix-git/doc/guix.texi:27793 #, no-wrap msgid "@code{challenge} (default: @code{#f})" msgstr "@code{challenge} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27463 +#: guix-git/doc/guix.texi:27800 msgid "The challenge type that has to be run by certbot. If @code{#f} is specified, default to the HTTP challenge. If a value is specified, defaults to the manual plugin (see @code{authentication-hook}, @code{cleanup-hook} and the documentation at @url{https://certbot.eff.org/docs/using.html#hooks}), and gives Let's Encrypt permission to log the public IP address of the requesting machine." msgstr "Le type de défi à utiliser avec certbot. Si @code{#f} est spécifié, le défi HTTP par défaut sera utilisé. Si une valeur est spécifiée, le greffon manuel sera utilisé par défaut (voir @code{authentication-hook}, @code{cleanup-hook} et la documentation sur @url{https://certbot.eff.org/docs/using.html#hooks}), et donne à Let's Encrypt la permission d'enregistrer l'adresse IP publique de la machine qui a fait la demande." #. type: item -#: guix-git/doc/guix.texi:27464 +#: guix-git/doc/guix.texi:27801 #, no-wrap msgid "@code{csr} (default: @code{#f})" msgstr "@code{csr} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27471 +#: guix-git/doc/guix.texi:27808 msgid "File name of Certificate Signing Request (CSR) in DER or PEM format. If @code{#f} is specified, this argument will not be passed to certbot. If a value is specified, certbot will use it to obtain a certificate, instead of using a self-generated CSR. The domain-name(s) mentioned in @code{domains}, must be consistent with the domain-name(s) mentioned in CSR file." msgstr "Nom de fichier d'une Demande de Signature de Certificat (CSR) au format DER ou PEM. Si @code{#f} est spécifié, cet argument ne sera pas passé à @code{certbot}. Si une valeur est spécifiée, @code{certbot} l'utilisera pour obtenir un certificat, au lieu d'utiliser une CSR auto-signée. Le(s) nom(s) de domaine mentionné(s) dans @code{domains} doivent être en cohérence avec ceux mentionné(s) dans le fichier CSR." #. type: item -#: guix-git/doc/guix.texi:27472 +#: guix-git/doc/guix.texi:27809 #, no-wrap msgid "@code{authentication-hook} (default: @code{#f})" msgstr "@code{authentication-hook} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:27478 +#: guix-git/doc/guix.texi:27815 msgid "Command to be run in a shell once for each certificate challenge to be answered. For this command, the shell variable @code{$CERTBOT_DOMAIN} will contain the domain being authenticated, @code{$CERTBOT_VALIDATION} contains the validation string and @code{$CERTBOT_TOKEN} contains the file name of the resource requested when performing an HTTP-01 challenge." msgstr "Commande à lancer dans un shell une fois par défi de certificat auquel répondre. Pour cette commande, la variable shell @code{$CERTBOT_DOMAIN} contiendra le domaine à authentifier, @code{$CERTBOT_VALIDATION} contiendra la chaîne de validation et @code{$CERTBOT_TOKEN} contiendra le nom de fichier de la ressource demandée pour le défi HTTP-01." #. type: item -#: guix-git/doc/guix.texi:27479 +#: guix-git/doc/guix.texi:27816 #, no-wrap msgid "@code{cleanup-hook} (default: @code{#f})" msgstr "@code{cleanup-hook} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27485 +#: guix-git/doc/guix.texi:27822 msgid "Command to be run in a shell once for each certificate challenge that have been answered by the @code{auth-hook}. For this command, the shell variables available in the @code{auth-hook} script are still available, and additionally @code{$CERTBOT_AUTH_OUTPUT} will contain the standard output of the @code{auth-hook} script." msgstr "Commande à lancer dans un shell une fois par défi de certificat auquel @code{auth-hook} a répondu. Pour cette commande, les variables shell disponibles dans le script @code{auth-hook} sont toujours disponibles, et en plus @code{$CERTBOT_AUTH_OUTPUT} contiendra la sortie standard du script @code{auth-hook}." #. type: item -#: guix-git/doc/guix.texi:27486 +#: guix-git/doc/guix.texi:27823 #, no-wrap msgid "@code{deploy-hook} (default: @code{#f})" msgstr "@code{deploy-hook} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27494 +#: guix-git/doc/guix.texi:27831 msgid "Command to be run in a shell once for each successfully issued certificate. For this command, the shell variable @code{$RENEWED_LINEAGE} will point to the config live subdirectory (for example, @samp{\"/etc/letsencrypt/live/example.com\"}) containing the new certificates and keys; the shell variable @code{$RENEWED_DOMAINS} will contain a space-delimited list of renewed certificate domains (for example, @samp{\"example.com www.example.com\"}." msgstr "Commande à lancer dans un shell une fois par certificat récupéré avec succès. Pour cette commande, la variable @code{$RENEWED_LINEAGE} pointera sur le sous-répertoire live (par exemple, @samp{\"/etc/letsencrypt/live/example.com\"}) contenant le nouveau certificat et la clef ; la variable @code{$RENEWED_DOMAINS} contiendra les noms de domaines séparés par des espaces (par exemple @samp{\"example.com www.example.com\"})." #. type: Plain text -#: guix-git/doc/guix.texi:27501 +#: guix-git/doc/guix.texi:27838 msgid "For each @code{certificate-configuration}, the certificate is saved to @code{/etc/letsencrypt/live/@var{name}/fullchain.pem} and the key is saved to @code{/etc/letsencrypt/live/@var{name}/privkey.pem}." msgstr "Pour chaque @code{certificate-configuration}, le certificat est sauvegardé dans @code{/etc/letsencrypt/live/@var{name}/fullchain.pem} et la clef est sauvegardée dans @code{/etc/letsencrypt/live/@var{name}/privkey.pem}." #. type: cindex -#: guix-git/doc/guix.texi:27503 +#: guix-git/doc/guix.texi:27840 #, no-wrap msgid "DNS (domain name system)" msgstr "DNS (domain name system)" #. type: cindex -#: guix-git/doc/guix.texi:27504 +#: guix-git/doc/guix.texi:27841 #, no-wrap msgid "domain name system (DNS)" msgstr "domain name system (DNS)" #. type: Plain text -#: guix-git/doc/guix.texi:27512 +#: guix-git/doc/guix.texi:27849 msgid "The @code{(gnu services dns)} module provides services related to the @dfn{domain name system} (DNS). It provides a server service for hosting an @emph{authoritative} DNS server for multiple zones, slave or master. This service uses @uref{https://www.knot-dns.cz/, Knot DNS}. And also a caching and forwarding DNS server for the LAN, which uses @uref{http://www.thekelleys.org.uk/dnsmasq/doc.html, dnsmasq}." msgstr "Le module @code{(gnu services dns)} fournit des services liés au @dfn{système de noms de domaines} (DNS). Il fournit un service de serveur pour héberger un serveur DNS @emph{faisant autorité} pour plusieurs zones, en esclave ou en maître. Ce service utilise @uref{https://www.knot-dns.cz/, Knot DNS}. Il fournit aussi un service de cache et de renvoie DNS pour le LAN, qui utilise @uref{http://www.thekelleys.org.uk/dnsmasq/doc.html, dnsmasq}." #. type: subsubheading -#: guix-git/doc/guix.texi:27513 +#: guix-git/doc/guix.texi:27850 #, no-wrap msgid "Knot Service" msgstr "Service Knot" #. type: Plain text -#: guix-git/doc/guix.texi:27517 +#: guix-git/doc/guix.texi:27854 msgid "An example configuration of an authoritative server for two zones, one master and one slave, is:" msgstr "Voici un exemple de configuration pour un serveur faisant autorité sur deux zone, un maître et un esclave :" #. type: lisp -#: guix-git/doc/guix.texi:27524 +#: guix-git/doc/guix.texi:27861 #, no-wrap msgid "" "(define-zone-entries example.org.zone\n" @@ -51796,7 +52484,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:27531 +#: guix-git/doc/guix.texi:27868 #, no-wrap msgid "" "(define master-zone\n" @@ -51816,7 +52504,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:27537 +#: guix-git/doc/guix.texi:27874 #, no-wrap msgid "" "(define slave-zone\n" @@ -51834,7 +52522,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:27542 +#: guix-git/doc/guix.texi:27879 #, no-wrap msgid "" "(define plop-master\n" @@ -51850,7 +52538,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:27551 +#: guix-git/doc/guix.texi:27888 #, no-wrap msgid "" "(operating-system\n" @@ -51872,857 +52560,857 @@ msgstr "" " %base-services)))\n" #. type: deffn -#: guix-git/doc/guix.texi:27553 +#: guix-git/doc/guix.texi:27890 #, no-wrap msgid "{Scheme Variable} knot-service-type" msgstr "{Variable Scheme} knot-service-type" #. type: deffn -#: guix-git/doc/guix.texi:27555 +#: guix-git/doc/guix.texi:27892 msgid "This is the type for the Knot DNS server." msgstr "C'est le type pour le serveur DNS Knot." #. type: deffn -#: guix-git/doc/guix.texi:27563 +#: guix-git/doc/guix.texi:27900 msgid "Knot DNS is an authoritative DNS server, meaning that it can serve multiple zones, that is to say domain names you would buy from a registrar. This server is not a resolver, meaning that it can only resolve names for which it is authoritative. This server can be configured to serve zones as a master server or a slave server as a per-zone basis. Slave zones will get their data from masters, and will serve it as an authoritative server. From the point of view of a resolver, there is no difference between master and slave." msgstr "Knot DNS est un serveur DNS faisant autorité, ce qui signifie qu'il peut servir plusieurs zones, c'est-à-dire des noms de domaines que vous achetez à un registrar. Ce serveur n'est pas un résolveur, ce qui signifie qu'il ne peut pas résoudre les noms pour lesquels il ne fait pas autorité. Ce serveur peut être configuré pour servir des zones comme un serveur maître ou comme un serveur esclave, en fonction des zones. Les zones esclaves récupèrent leurs données des maîtres, et seront servies comme faisant autorité. Du point de vue d'un résolveur, il n'y a pas de différence entre un maître et un esclave@footnote{NdT : Voir la conférence en Français de Stéphane Bortzmeyer pour en apprendre plus sur le DNS : @url{https://iletaitunefoisinternet.fr/dns-bortzmeyer/index.html}}." #. type: deffn -#: guix-git/doc/guix.texi:27565 +#: guix-git/doc/guix.texi:27902 msgid "The following data types are used to configure the Knot DNS server:" msgstr "Les types de données suivants sont utilisés pour configurer le serveur DNS Knot :" #. type: deftp -#: guix-git/doc/guix.texi:27567 +#: guix-git/doc/guix.texi:27904 #, no-wrap msgid "{Data Type} knot-key-configuration" msgstr "{Type de données} knot-key-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27570 +#: guix-git/doc/guix.texi:27907 msgid "Data type representing a key. This type has the following parameters:" msgstr "Type de données représentant une clef. Ce type a les paramètres suivants :" #. type: item -#: guix-git/doc/guix.texi:27572 guix-git/doc/guix.texi:27592 -#: guix-git/doc/guix.texi:27707 guix-git/doc/guix.texi:27733 -#: guix-git/doc/guix.texi:27768 +#: guix-git/doc/guix.texi:27909 guix-git/doc/guix.texi:27929 +#: guix-git/doc/guix.texi:28044 guix-git/doc/guix.texi:28070 +#: guix-git/doc/guix.texi:28105 #, no-wrap msgid "@code{id} (default: @code{\"\"})" msgstr "@code{id} (par défaut : @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:27575 guix-git/doc/guix.texi:27595 +#: guix-git/doc/guix.texi:27912 guix-git/doc/guix.texi:27932 msgid "An identifier for other configuration fields to refer to this key. IDs must be unique and must not be empty." msgstr "Un identifiant pour d'autres champs de configuration qui se réfèrent à cette clef. Les ID doivent être uniques et non vides." #. type: item -#: guix-git/doc/guix.texi:27576 +#: guix-git/doc/guix.texi:27913 #, no-wrap msgid "@code{algorithm} (default: @code{#f})" msgstr "@code{algorithm} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27580 +#: guix-git/doc/guix.texi:27917 msgid "The algorithm to use. Choose between @code{#f}, @code{'hmac-md5}, @code{'hmac-sha1}, @code{'hmac-sha224}, @code{'hmac-sha256}, @code{'hmac-sha384} and @code{'hmac-sha512}." msgstr "L'algorithme à utiliser. Choisissez entre @code{#f}, @code{'hmac-md5}, @code{'hmac-sha1}, @code{'hmac-sha224}, @code{'hmac-sha256}, @code{'hmac-sha384} et @code{'hmac-sha512}." #. type: item -#: guix-git/doc/guix.texi:27581 +#: guix-git/doc/guix.texi:27918 #, no-wrap msgid "@code{secret} (default: @code{\"\"})" msgstr "@code{secret} (par défaut : @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:27583 +#: guix-git/doc/guix.texi:27920 msgid "The secret key itself." msgstr "La clef secrète elle-même." #. type: deftp -#: guix-git/doc/guix.texi:27587 +#: guix-git/doc/guix.texi:27924 #, no-wrap msgid "{Data Type} knot-acl-configuration" msgstr "{Type de données} knot-acl-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27590 +#: guix-git/doc/guix.texi:27927 msgid "Data type representing an Access Control List (ACL) configuration. This type has the following parameters:" msgstr "Type de données représentant une configuration de liste de contrôle d'accès (ACL). Ce type a les paramètres suivants :" #. type: item -#: guix-git/doc/guix.texi:27596 guix-git/doc/guix.texi:27711 +#: guix-git/doc/guix.texi:27933 guix-git/doc/guix.texi:28048 #, no-wrap msgid "@code{address} (default: @code{'()})" msgstr "@code{address} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27600 +#: guix-git/doc/guix.texi:27937 msgid "An ordered list of IP addresses, network subnets, or network ranges represented with strings. The query must match one of them. Empty value means that address match is not required." msgstr "Une liste ordonnée d'adresses IP, de sous-réseaux ou d'intervalles de réseaux représentés par des chaînes de caractères. La requête doit correspondre à l'une d'entre elles. La valeur vide signifie que l'adresse n'a pas besoin de correspondre." #. type: item -#: guix-git/doc/guix.texi:27601 +#: guix-git/doc/guix.texi:27938 #, no-wrap msgid "@code{key} (default: @code{'()})" msgstr "@code{key} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27605 +#: guix-git/doc/guix.texi:27942 msgid "An ordered list of references to keys represented with strings. The string must match a key ID defined in a @code{knot-key-configuration}. No key means that a key is not require to match that ACL." msgstr "Une liste ordonnées de références à des clefs représentés par des chaînes. La chaîne doit correspondre à un ID définie dans un @code{knot-key-configuration}. Aucune clef signifie qu'une clef n'est pas nécessaire pour correspondre à l'ACL." #. type: item -#: guix-git/doc/guix.texi:27606 +#: guix-git/doc/guix.texi:27943 #, no-wrap msgid "@code{action} (default: @code{'()})" msgstr "@code{action} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27610 +#: guix-git/doc/guix.texi:27947 msgid "An ordered list of actions that are permitted or forbidden by this ACL@. Possible values are lists of zero or more elements from @code{'transfer}, @code{'notify} and @code{'update}." msgstr "Une liste ordonnée d'actions permises ou interdites par cet ACL@. Les valeurs possibles sont une liste de zéro ou plus d'éléments entre @code{'transfer}, @code{'notify} et @code{'update}." #. type: item -#: guix-git/doc/guix.texi:27611 +#: guix-git/doc/guix.texi:27948 #, no-wrap msgid "@code{deny?} (default: @code{#f})" msgstr "@code{deny?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27614 +#: guix-git/doc/guix.texi:27951 msgid "When true, the ACL defines restrictions. Listed actions are forbidden. When false, listed actions are allowed." msgstr "Lorsque la valeur est vraie, l'ACL définie des restrictions. Les actions listées sont interdites. Lorsque la valeur est fausse, les actions listées sont autorisées." #. type: deftp -#: guix-git/doc/guix.texi:27618 +#: guix-git/doc/guix.texi:27955 #, no-wrap msgid "{Data Type} zone-entry" msgstr "{Type de données} zone-entry" #. type: deftp -#: guix-git/doc/guix.texi:27621 +#: guix-git/doc/guix.texi:27958 msgid "Data type representing a record entry in a zone file. This type has the following parameters:" msgstr "Type de données représentant une entrée dans un fichier de zone. Ce type a les paramètres suivants :" #. type: item -#: guix-git/doc/guix.texi:27623 +#: guix-git/doc/guix.texi:27960 #, no-wrap msgid "@code{name} (default: @code{\"@@\"})" msgstr "@code{name} (par défaut : @code{\"@@\"})" #. type: table -#: guix-git/doc/guix.texi:27629 +#: guix-git/doc/guix.texi:27966 msgid "The name of the record. @code{\"@@\"} refers to the origin of the zone. Names are relative to the origin of the zone. For example, in the @code{example.org} zone, @code{\"ns.example.org\"} actually refers to @code{ns.example.org.example.org}. Names ending with a dot are absolute, which means that @code{\"ns.example.org.\"} refers to @code{ns.example.org}." msgstr "Le nom de l'enregistrement. @code{\"@@\"} se réfère à l'origine de la zone. Les noms sont relatifs à l'origine de la zone. Par exemple, dans la zone @code{example.org}, @code{\"ns.example.org\"} se réfère en fait à @code{ns.example.org.example.org}. Les noms qui finissent par un point sont absolus, ce qui signifie que @code{\"ns.example.org.\"} se réfère bien à @code{ns.example.org}." #. type: item -#: guix-git/doc/guix.texi:27630 +#: guix-git/doc/guix.texi:27967 #, no-wrap msgid "@code{ttl} (default: @code{\"\"})" msgstr "@code{ttl} (par défaut : @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:27632 +#: guix-git/doc/guix.texi:27969 msgid "The Time-To-Live (TTL) of this record. If not set, the default TTL is used." msgstr "La durée de vie (TTL) de cet enregistrement. S'il n'est pas indiqué, le TTL par défaut est utilisé." #. type: item -#: guix-git/doc/guix.texi:27633 +#: guix-git/doc/guix.texi:27970 #, no-wrap msgid "@code{class} (default: @code{\"IN\"})" msgstr "@code{class} (par défaut : @code{\"IN\"})" #. type: table -#: guix-git/doc/guix.texi:27636 +#: guix-git/doc/guix.texi:27973 msgid "The class of the record. Knot currently supports only @code{\"IN\"} and partially @code{\"CH\"}." msgstr "La classe de l'enregistrement. Knot ne supporte actuellement que @code{\"IN\"} et partiellement @code{\"CH\"}." #. type: item -#: guix-git/doc/guix.texi:27637 +#: guix-git/doc/guix.texi:27974 #, no-wrap msgid "@code{type} (default: @code{\"A\"})" msgstr "@code{type} (par défaut : @code{\"A\"})" #. type: table -#: guix-git/doc/guix.texi:27641 +#: guix-git/doc/guix.texi:27978 msgid "The type of the record. Common types include A (IPv4 address), AAAA (IPv6 address), NS (Name Server) and MX (Mail eXchange). Many other types are defined." msgstr "Le type d'enregistrement. Les types usuels sont A (une adresse IPv4), NS (serveur de nom) et MX (serveur de courriel). Bien d'autres types sont définis." #. type: item -#: guix-git/doc/guix.texi:27642 +#: guix-git/doc/guix.texi:27979 #, no-wrap msgid "@code{data} (default: @code{\"\"})" msgstr "@code{data} (par défaut : @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:27646 +#: guix-git/doc/guix.texi:27983 msgid "The data contained in the record. For instance an IP address associated with an A record, or a domain name associated with an NS record. Remember that domain names are relative to the origin unless they end with a dot." msgstr "Les données contenues dans l'enregistrement. Par exemple une adresse IP associée à un enregistrement A, ou un nom de domaine associé à un enregistrement NS. Rappelez-vous que les noms de domaines sont relatifs à l'origine à moins qu'ils ne finissent par un point." #. type: deftp -#: guix-git/doc/guix.texi:27650 +#: guix-git/doc/guix.texi:27987 #, no-wrap msgid "{Data Type} zone-file" msgstr "{Type de données} zone-file" #. type: deftp -#: guix-git/doc/guix.texi:27653 +#: guix-git/doc/guix.texi:27990 msgid "Data type representing the content of a zone file. This type has the following parameters:" msgstr "Type données représentant le contenu d'un fichier de zone. Ce type a les paramètres suivants :" #. type: table -#: guix-git/doc/guix.texi:27662 +#: guix-git/doc/guix.texi:27999 msgid "The list of entries. The SOA record is taken care of, so you don't need to put it in the list of entries. This list should probably contain an entry for your primary authoritative DNS server. Other than using a list of entries directly, you can use @code{define-zone-entries} to define a object containing the list of entries more easily, that you can later pass to the @code{entries} field of the @code{zone-file}." msgstr "La liste des entrées. On s'occupe de l'enregistrement SOA, donc vous n'avez pas besoin de l'ajouter dans la liste des entrées. Cette liste devrait contenir une entrée pour votre serveur DNS primaire faisant autorité. En plus d'utiliser une liste des entrées directement, vous pouvez utiliser @code{define-zone-entries} pour définir un objet contenant la liste des entrées plus facilement, que vous pouvez ensuite passer au champ @code{entries} de @code{zone-file}." #. type: item -#: guix-git/doc/guix.texi:27663 +#: guix-git/doc/guix.texi:28000 #, no-wrap msgid "@code{origin} (default: @code{\"\"})" msgstr "@code{origin} (par défaut : @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:27665 +#: guix-git/doc/guix.texi:28002 msgid "The name of your zone. This parameter cannot be empty." msgstr "Le nom de votre zone. Ce paramètre ne peut pas être vide." #. type: item -#: guix-git/doc/guix.texi:27666 +#: guix-git/doc/guix.texi:28003 #, no-wrap msgid "@code{ns} (default: @code{\"ns\"})" msgstr "@code{ns} (par défaut : @code{\"ns\"})" #. type: table -#: guix-git/doc/guix.texi:27671 +#: guix-git/doc/guix.texi:28008 msgid "The domain of your primary authoritative DNS server. The name is relative to the origin, unless it ends with a dot. It is mandatory that this primary DNS server corresponds to an NS record in the zone and that it is associated to an IP address in the list of entries." msgstr "Le domaine de votre serveur DNS primaire faisant autorité. Le nom est relatif à l'origine, à moins qu'il finisse par un point. Il est nécessaire que ce serveur DNS primaire corresponde à un enregistrement NS dans la zone et qu'il soit associé à une adresse IP dans la liste des entrées." #. type: item -#: guix-git/doc/guix.texi:27672 +#: guix-git/doc/guix.texi:28009 #, no-wrap msgid "@code{mail} (default: @code{\"hostmaster\"})" msgstr "@code{mail} (par défaut : @code{\"hostmaster\"})" #. type: table -#: guix-git/doc/guix.texi:27675 +#: guix-git/doc/guix.texi:28012 msgid "An email address people can contact you at, as the owner of the zone. This is translated as @code{@@}." msgstr "Une adresse de courriel pour vous contacter en tant que propriétaire de la zone. Cela se transforme en @code{@@}." #. type: item -#: guix-git/doc/guix.texi:27676 +#: guix-git/doc/guix.texi:28013 #, no-wrap msgid "@code{serial} (default: @code{1})" msgstr "@code{serial} (par défaut : @code{1})" #. type: table -#: guix-git/doc/guix.texi:27680 +#: guix-git/doc/guix.texi:28017 msgid "The serial number of the zone. As this is used to keep track of changes by both slaves and resolvers, it is mandatory that it @emph{never} decreases. Always increment it when you make a change in your zone." msgstr "Le numéro de série de la zone. Comme c'est utilisé pour vérifier les changements à la fois par les esclaves et par les résolveurs, il est nécessaire qu'il ne décroisse @emph{jamais}. Incrémentez-le toujours quand vous faites un changement sur votre zone." #. type: item -#: guix-git/doc/guix.texi:27681 +#: guix-git/doc/guix.texi:28018 #, no-wrap msgid "@code{refresh} (default: @code{(* 2 24 3600)})" msgstr "@code{refresh} (par défaut : @code{(* 2 24 3600)})" #. type: table -#: guix-git/doc/guix.texi:27685 +#: guix-git/doc/guix.texi:28022 msgid "The frequency at which slaves will do a zone transfer. This value is a number of seconds. It can be computed by multiplications or with @code{(string->duration)}." msgstr "La fréquence à laquelle les esclaves demanderont un transfert de zone. Cette valeur est un nombre de secondes. On peut le calculer avec des multiplications ou avec @code{(string->duration)}." #. type: item -#: guix-git/doc/guix.texi:27686 +#: guix-git/doc/guix.texi:28023 #, no-wrap msgid "@code{retry} (default: @code{(* 15 60)})" msgstr "@code{retry} (par défaut : @code{(* 15 60)})" #. type: table -#: guix-git/doc/guix.texi:27689 +#: guix-git/doc/guix.texi:28026 msgid "The period after which a slave will retry to contact its master when it fails to do so a first time." msgstr "La période après laquelle un esclave essaiera de contacter son maître lorsqu'il échoue à le faire la première fois." #. type: item -#: guix-git/doc/guix.texi:27690 +#: guix-git/doc/guix.texi:28027 #, no-wrap msgid "@code{expiry} (default: @code{(* 14 24 3600)})" msgstr "@code{expiry} (par défaut : @code{(* 14 24 3600)})" #. type: table -#: guix-git/doc/guix.texi:27694 +#: guix-git/doc/guix.texi:28031 msgid "Default TTL of records. Existing records are considered correct for at most this amount of time. After this period, resolvers will invalidate their cache and check again that it still exists." msgstr "TTL par défaut des enregistrements. Les enregistrements existants sont considérés corrects pour au moins cette durée. Après cette période, les résolveurs invalideront leur cache et vérifieront de nouveau qu'ils existent toujours." #. type: item -#: guix-git/doc/guix.texi:27695 +#: guix-git/doc/guix.texi:28032 #, no-wrap msgid "@code{nx} (default: @code{3600})" msgstr "@code{nx} (par défaut : @code{3600})" #. type: table -#: guix-git/doc/guix.texi:27698 +#: guix-git/doc/guix.texi:28035 msgid "Default TTL of inexistent records. This delay is usually short because you want your new domains to reach everyone quickly." msgstr "TTL par défaut des enregistrement inexistants. Ce TTL est habituellement court parce que vous voulez que vous nouveaux domaines soient disponibles pour tout le monde le plus rapidement possible." #. type: deftp -#: guix-git/doc/guix.texi:27702 +#: guix-git/doc/guix.texi:28039 #, no-wrap msgid "{Data Type} knot-remote-configuration" msgstr "{Type de données} knot-remote-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27705 +#: guix-git/doc/guix.texi:28042 msgid "Data type representing a remote configuration. This type has the following parameters:" msgstr "Type de données représentant une configuration de serveurs distants. Ce type a les paramètres suivants :" #. type: table -#: guix-git/doc/guix.texi:27710 +#: guix-git/doc/guix.texi:28047 msgid "An identifier for other configuration fields to refer to this remote. IDs must be unique and must not be empty." msgstr "Un identifiant pour que les autres champs de configuration se réfèrent à ce serveur distant. les ID doivent être uniques et non vides." #. type: table -#: guix-git/doc/guix.texi:27715 +#: guix-git/doc/guix.texi:28052 msgid "An ordered list of destination IP addresses. Addresses are tried in sequence. An optional port can be given with the @@ separator. For instance: @code{(list \"1.2.3.4\" \"2.3.4.5@@53\")}. Default port is 53." msgstr "Une liste ordonnée d'adresses IP de destination. Ces adresses sont essayées en séquence. Un port facultatif peut être donné avec le séparateur @@. Par exemple @code{(list \"1.2.3.4\" \"2.3.4.5@@53\")}. Le port par défaut est le 53." #. type: item -#: guix-git/doc/guix.texi:27716 +#: guix-git/doc/guix.texi:28053 #, no-wrap msgid "@code{via} (default: @code{'()})" msgstr "@code{via} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27720 +#: guix-git/doc/guix.texi:28057 msgid "An ordered list of source IP addresses. An empty list will have Knot choose an appropriate source IP@. An optional port can be given with the @@ separator. The default is to choose at random." msgstr "Une liste ordonnée d'adresses IP sources. Une liste vide fera choisir une IP source appropriée à Knot. Un port facultatif peut être donné avec le séparateur @@. La valeur par défaut est de choisir aléatoirement." #. type: table -#: guix-git/doc/guix.texi:27724 +#: guix-git/doc/guix.texi:28061 msgid "A reference to a key, that is a string containing the identifier of a key defined in a @code{knot-key-configuration} field." msgstr "Une référence à une clef, c'est-à-dire une chaîne contenant l'identifiant d'une clef définie dans un champ @code{knot-key-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:27728 +#: guix-git/doc/guix.texi:28065 #, no-wrap msgid "{Data Type} knot-keystore-configuration" msgstr "{Type de données} knot-keystore-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27731 +#: guix-git/doc/guix.texi:28068 msgid "Data type representing a keystore to hold dnssec keys. This type has the following parameters:" msgstr "Type de données représentant une base de clefs pour garder les clefs dnssec. Ce type a les paramètres suivants :" #. type: table -#: guix-git/doc/guix.texi:27735 +#: guix-git/doc/guix.texi:28072 msgid "The id of the keystore. It must not be empty." msgstr "L'id de cette base de clefs. Il ne doit pas être vide." #. type: item -#: guix-git/doc/guix.texi:27736 +#: guix-git/doc/guix.texi:28073 #, no-wrap msgid "@code{backend} (default: @code{'pem})" msgstr "@code{backend} (par défaut : @code{'pem})" #. type: table -#: guix-git/doc/guix.texi:27738 +#: guix-git/doc/guix.texi:28075 msgid "The backend to store the keys in. Can be @code{'pem} or @code{'pkcs11}." msgstr "Le moteur de stockage des clefs. Cela peut être @code{'pem} ou @code{'pkcs11}." #. type: item -#: guix-git/doc/guix.texi:27739 +#: guix-git/doc/guix.texi:28076 #, no-wrap msgid "@code{config} (default: @code{\"/var/lib/knot/keys/keys\"})" msgstr "@code{config} (par défaut : @code{\"/var/lib/knot/keys/keys\"})" #. type: table -#: guix-git/doc/guix.texi:27743 +#: guix-git/doc/guix.texi:28080 msgid "The configuration string of the backend. An example for the PKCS#11 is: @code{\"pkcs11:token=knot;pin-value=1234 /gnu/store/.../lib/pkcs11/libsofthsm2.so\"}. For the pem backend, the string represents a path in the file system." msgstr "La chaine de configuration du moteur. Voici un exemple pour PKCS#11 : @code{\"pkcs11:token=knot;pin-value=1234 /gnu/store/.../lib/pkcs11/libsofthsm2.so\"}. Pour le moteur pem, la chaine représente un chemin dans le système de fichiers." #. type: deftp -#: guix-git/doc/guix.texi:27747 +#: guix-git/doc/guix.texi:28084 #, no-wrap msgid "{Data Type} knot-policy-configuration" msgstr "{Type de données} knot-policy-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27751 +#: guix-git/doc/guix.texi:28088 msgid "Data type representing a dnssec policy. Knot DNS is able to automatically sign your zones. It can either generate and manage your keys automatically or use keys that you generate." msgstr "Type de données représentant une politique dnssec. Knot DNS est capable de signer automatiquement vos zones. Il peut soit générer et gérer vos clefs automatiquement ou utiliser des clefs que vous générez." #. type: deftp -#: guix-git/doc/guix.texi:27758 +#: guix-git/doc/guix.texi:28095 msgid "Dnssec is usually implemented using two keys: a Key Signing Key (KSK) that is used to sign the second, and a Zone Signing Key (ZSK) that is used to sign the zone. In order to be trusted, the KSK needs to be present in the parent zone (usually a top-level domain). If your registrar supports dnssec, you will have to send them your KSK's hash so they can add a DS record in their zone. This is not automated and need to be done each time you change your KSK." msgstr "Dnssec est habituellement implémenté avec deux clefs : une KSK (key signing key) qui est utilisé pour signer une seconde, la ZSK (zone signing key) qui est utilisée pour signer la zone. Pour pouvoir être de confiance, la KSK doit être présente dans la zone parente (normalement un domaine de haut niveau). Si votre registrar supporte dnssec, vous devrez leur envoyer le hash de votre KSK pour qu'il puisse ajouter un enregistrement DS dans la zone parente. Ce n'est pas automatique et vous devrez le faire à chaque fois que vous changerez votre KSK." #. type: deftp -#: guix-git/doc/guix.texi:27764 +#: guix-git/doc/guix.texi:28101 msgid "The policy also defines the lifetime of keys. Usually, ZSK can be changed easily and use weaker cryptographic functions (they use lower parameters) in order to sign records quickly, so they are changed often. The KSK however requires manual interaction with the registrar, so they are changed less often and use stronger parameters because they sign only one record." msgstr "La politique définie aussi la durée de vie des clefs. Habituellement, la ZSK peut être changée facilement et utilise des fonctions cryptographiques plus faibles (avec un paramètre plus faible) pour signer les enregistrements rapidement, donc elles sont changées très régulièrement. La KSK en revanche requiert une interaction manuelle avec le registrar, donc elle change moins souvent et utilise des paramètres plus robustes puisqu'elle ne signe qu'un seul enregistrement." #. type: deftp -#: guix-git/doc/guix.texi:27766 +#: guix-git/doc/guix.texi:28103 msgid "This type has the following parameters:" msgstr "Ce type a les paramètres suivants :" #. type: table -#: guix-git/doc/guix.texi:27770 +#: guix-git/doc/guix.texi:28107 msgid "The id of the policy. It must not be empty." msgstr "L'id de la politique. Il ne doit pas être vide." #. type: item -#: guix-git/doc/guix.texi:27771 +#: guix-git/doc/guix.texi:28108 #, no-wrap msgid "@code{keystore} (default: @code{\"default\"})" msgstr "@code{keystore} (par défaut : @code{\"default\"})" #. type: table -#: guix-git/doc/guix.texi:27776 +#: guix-git/doc/guix.texi:28113 msgid "A reference to a keystore, that is a string containing the identifier of a keystore defined in a @code{knot-keystore-configuration} field. The @code{\"default\"} identifier means the default keystore (a kasp database that was setup by this service)." msgstr "Une référence à une base de clefs, c'est-à-dire une chaîne contenant l'identifiant d'une base de clefs définie dans un champ @code{knot-keystore-configuration}. L'identifiant @code{\"default\"} signifie la base par défaut (une base de données kasp initialisée par ce service)." #. type: item -#: guix-git/doc/guix.texi:27777 +#: guix-git/doc/guix.texi:28114 #, no-wrap msgid "@code{manual?} (default: @code{#f})" msgstr "@code{manual?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27779 +#: guix-git/doc/guix.texi:28116 msgid "Whether the key management is manual or automatic." msgstr "Indique si la clef est gérée manuellement ou automatiquement." #. type: item -#: guix-git/doc/guix.texi:27780 +#: guix-git/doc/guix.texi:28117 #, no-wrap msgid "@code{single-type-signing?} (default: @code{#f})" msgstr "@code{single-type-signing?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27782 +#: guix-git/doc/guix.texi:28119 msgid "When @code{#t}, use the Single-Type Signing Scheme." msgstr "Lorsque la valeur est @code{#t}, utilise le schéma de signature Single-Type." #. type: item -#: guix-git/doc/guix.texi:27783 +#: guix-git/doc/guix.texi:28120 #, no-wrap msgid "@code{algorithm} (default: @code{\"ecdsap256sha256\"})" msgstr "@code{algorithm} (par défaut : @code{\"ecdsap256sha256\"})" #. type: table -#: guix-git/doc/guix.texi:27785 +#: guix-git/doc/guix.texi:28122 msgid "An algorithm of signing keys and issued signatures." msgstr "Un algorithme de clef de signature et de signatures." #. type: item -#: guix-git/doc/guix.texi:27786 +#: guix-git/doc/guix.texi:28123 #, no-wrap msgid "@code{ksk-size} (default: @code{256})" msgstr "@code{ksk-size} (par défaut : @code{256})" #. type: table -#: guix-git/doc/guix.texi:27789 +#: guix-git/doc/guix.texi:28126 msgid "The length of the KSK@. Note that this value is correct for the default algorithm, but would be unsecure for other algorithms." msgstr "La longueur de la KSK@. Remarquez que cette valeur est correcte pour l'algorithme par défaut, mais ne serait pas sécurisée pour d'autres algorithmes." #. type: item -#: guix-git/doc/guix.texi:27790 +#: guix-git/doc/guix.texi:28127 #, no-wrap msgid "@code{zsk-size} (default: @code{256})" msgstr "@code{zsk-size} (par défaut : @code{256})" #. type: table -#: guix-git/doc/guix.texi:27793 +#: guix-git/doc/guix.texi:28130 msgid "The length of the ZSK@. Note that this value is correct for the default algorithm, but would be unsecure for other algorithms." msgstr "La longueur de la ZSK@. Remarquez que cette valeur est correcte pour l'algorithme par défaut, mais ne serait pas sécurisée pour d'autres algorithmes." #. type: item -#: guix-git/doc/guix.texi:27794 +#: guix-git/doc/guix.texi:28131 #, no-wrap msgid "@code{dnskey-ttl} (default: @code{'default})" msgstr "@code{dnskey-ttl} (par défaut : @code{'default})" #. type: table -#: guix-git/doc/guix.texi:27797 +#: guix-git/doc/guix.texi:28134 msgid "The TTL value for DNSKEY records added into zone apex. The special @code{'default} value means same as the zone SOA TTL." msgstr "La valeur du TTL pour les enregistrements DNSKEY ajoutés au sommet de la zone. La valeur spéciale @code{'default} signifie la même valeur que le TTL du SOA de la zone." #. type: item -#: guix-git/doc/guix.texi:27798 +#: guix-git/doc/guix.texi:28135 #, no-wrap msgid "@code{zsk-lifetime} (default: @code{(* 30 24 3600)})" msgstr "@code{zsk-lifetime} (par défaut : @code{(* 30 24 3600)})" #. type: table -#: guix-git/doc/guix.texi:27800 +#: guix-git/doc/guix.texi:28137 msgid "The period between ZSK publication and the next rollover initiation." msgstr "La période entre la publication d'une ZSK et l'initialisation d'un nouveau changement." #. type: item -#: guix-git/doc/guix.texi:27801 +#: guix-git/doc/guix.texi:28138 #, no-wrap msgid "@code{propagation-delay} (default: @code{(* 24 3600)})" msgstr "@code{propagation-delay} (par défaut : @code{(* 24 3600)})" #. type: table -#: guix-git/doc/guix.texi:27804 +#: guix-git/doc/guix.texi:28141 msgid "An extra delay added for each key rollover step. This value should be high enough to cover propagation of data from the master server to all slaves." msgstr "Un délai supplémentaire pour chaque étape du changement. Cette valeur devrait être assez grande pour couvrir le temps de propagation des données entre le serveur primaire et tous les secondaires." #. type: item -#: guix-git/doc/guix.texi:27805 +#: guix-git/doc/guix.texi:28142 #, no-wrap msgid "@code{rrsig-lifetime} (default: @code{(* 14 24 3600)})" msgstr "@code{rrsig-lifetime} (par défaut : @code{(* 14 24 3600)})" #. type: table -#: guix-git/doc/guix.texi:27807 +#: guix-git/doc/guix.texi:28144 msgid "A validity period of newly issued signatures." msgstr "Une période de validité des nouvelles signatures." #. type: item -#: guix-git/doc/guix.texi:27808 +#: guix-git/doc/guix.texi:28145 #, no-wrap msgid "@code{rrsig-refresh} (default: @code{(* 7 24 3600)})" msgstr "@code{rrsig-refresh} (par défaut : @code{(* 7 24 3600)})" #. type: table -#: guix-git/doc/guix.texi:27810 +#: guix-git/doc/guix.texi:28147 msgid "A period how long before a signature expiration the signature will be refreshed." msgstr "Une période qui indique combien de temps avant l'expiration d'une signature elle sera rafraîchie." #. type: item -#: guix-git/doc/guix.texi:27811 +#: guix-git/doc/guix.texi:28148 #, no-wrap msgid "@code{nsec3?} (default: @code{#f})" msgstr "@code{nsec3?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27813 +#: guix-git/doc/guix.texi:28150 msgid "When @code{#t}, NSEC3 will be used instead of NSEC." msgstr "Lorsque la valeur est @code{#t}, on utilisera NSEC3 au lien de NSEC." #. type: item -#: guix-git/doc/guix.texi:27814 +#: guix-git/doc/guix.texi:28151 #, no-wrap msgid "@code{nsec3-iterations} (default: @code{5})" msgstr "@code{nsec3-iterations} (par défaut : @code{5})" #. type: table -#: guix-git/doc/guix.texi:27816 +#: guix-git/doc/guix.texi:28153 msgid "The number of additional times the hashing is performed." msgstr "Le nombre de fois supplémentaires que le hash est effectué." #. type: item -#: guix-git/doc/guix.texi:27817 +#: guix-git/doc/guix.texi:28154 #, no-wrap msgid "@code{nsec3-salt-length} (default: @code{8})" msgstr "@code{nsec3-salt-length} (par défaut : @code{8})" #. type: table -#: guix-git/doc/guix.texi:27820 +#: guix-git/doc/guix.texi:28157 msgid "The length of a salt field in octets, which is appended to the original owner name before hashing." msgstr "La longueur du champ de sel en octets, ajouté au nom du propriétaire avant de hasher." #. type: item -#: guix-git/doc/guix.texi:27821 +#: guix-git/doc/guix.texi:28158 #, no-wrap msgid "@code{nsec3-salt-lifetime} (default: @code{(* 30 24 3600)})" msgstr "@code{nsec3-salt-lifetime} (par défaut : @code{(* 30 24 3600)})" #. type: table -#: guix-git/doc/guix.texi:27823 +#: guix-git/doc/guix.texi:28160 msgid "The validity period of newly issued salt field." msgstr "La période de validité des nouveaux champs sel." #. type: deftp -#: guix-git/doc/guix.texi:27827 +#: guix-git/doc/guix.texi:28164 #, no-wrap msgid "{Data Type} knot-zone-configuration" msgstr "{Type de données} knot-zone-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27830 +#: guix-git/doc/guix.texi:28167 msgid "Data type representing a zone served by Knot. This type has the following parameters:" msgstr "Type de données représentant la zone servie par Knot. ce type a les paramètres suivants :" #. type: item -#: guix-git/doc/guix.texi:27832 +#: guix-git/doc/guix.texi:28169 #, no-wrap msgid "@code{domain} (default: @code{\"\"})" msgstr "@code{domain} (par défaut : @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:27834 +#: guix-git/doc/guix.texi:28171 msgid "The domain served by this configuration. It must not be empty." msgstr "Le domaine servi par cette configuration. Il ne doit pas être vide." #. type: item -#: guix-git/doc/guix.texi:27835 +#: guix-git/doc/guix.texi:28172 #, no-wrap msgid "@code{file} (default: @code{\"\"})" msgstr "@code{file} (par défaut : @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:27838 +#: guix-git/doc/guix.texi:28175 msgid "The file where this zone is saved. This parameter is ignored by master zones. Empty means default location that depends on the domain name." msgstr "Le fichier où la zone est sauvegardée. Ce paramètre est ignoré pour les zones maîtres. La valeur vide signifie l'emplacement par défaut qui dépend du nom de domaine." #. type: item -#: guix-git/doc/guix.texi:27839 +#: guix-git/doc/guix.texi:28176 #, no-wrap msgid "@code{zone} (default: @code{(zone-file)})" msgstr "@code{zone} (par défaut : @code{(zone-file)})" #. type: table -#: guix-git/doc/guix.texi:27842 +#: guix-git/doc/guix.texi:28179 msgid "The content of the zone file. This parameter is ignored by slave zones. It must contain a zone-file record." msgstr "Le contenu du fichier de zone. Ce paramètre est ignoré par les zones esclaves. Il doit contenir un enregistrement zone-file." #. type: item -#: guix-git/doc/guix.texi:27843 +#: guix-git/doc/guix.texi:28180 #, no-wrap msgid "@code{master} (default: @code{'()})" msgstr "@code{master} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27846 +#: guix-git/doc/guix.texi:28183 msgid "A list of master remotes. When empty, this zone is a master. When set, this zone is a slave. This is a list of remotes identifiers." msgstr "Une liste des serveurs distants maîtres. Lorsque la liste est vide, cette zone est un maître. Lorsque la valeur est indiquée, cette zone est un esclave. C'est al liste des identifiants des serveurs distants." #. type: item -#: guix-git/doc/guix.texi:27847 +#: guix-git/doc/guix.texi:28184 #, no-wrap msgid "@code{ddns-master} (default: @code{#f})" msgstr "@code{ddns-master} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27850 +#: guix-git/doc/guix.texi:28187 msgid "The main master. When empty, it defaults to the first master in the list of masters." msgstr "Le maître principal. Lorsque la valeur est vide, la valeur par défaut est le premier maître de la liste des maîtres." #. type: item -#: guix-git/doc/guix.texi:27851 +#: guix-git/doc/guix.texi:28188 #, no-wrap msgid "@code{notify} (default: @code{'()})" msgstr "@code{notify} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27853 +#: guix-git/doc/guix.texi:28190 msgid "A list of slave remote identifiers." msgstr "Une liste d'identifiants de groupe de serveurs esclaves." #. type: item -#: guix-git/doc/guix.texi:27854 +#: guix-git/doc/guix.texi:28191 #, no-wrap msgid "@code{acl} (default: @code{'()})" msgstr "@code{acl} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27856 +#: guix-git/doc/guix.texi:28193 msgid "A list of acl identifiers." msgstr "Une liste d'identifiants d'ACL." #. type: item -#: guix-git/doc/guix.texi:27857 +#: guix-git/doc/guix.texi:28194 #, no-wrap msgid "@code{semantic-checks?} (default: @code{#f})" msgstr "@code{semantic-checks?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27859 +#: guix-git/doc/guix.texi:28196 msgid "When set, this adds more semantic checks to the zone." msgstr "Lorsque la valeur est indiquée, cela ajoute plus de vérifications sémantiques à la zone." #. type: item -#: guix-git/doc/guix.texi:27860 +#: guix-git/doc/guix.texi:28197 #, no-wrap msgid "@code{zonefile-sync} (default: @code{0})" msgstr "@code{zonefile-sync} (par défaut : @code{0})" #. type: table -#: guix-git/doc/guix.texi:27863 +#: guix-git/doc/guix.texi:28200 msgid "The delay between a modification in memory and on disk. 0 means immediate synchronization." msgstr "Le délai entre une modification en mémoire et sur le disque. 0 signifie une synchronisation immédiate." #. type: item -#: guix-git/doc/guix.texi:27864 +#: guix-git/doc/guix.texi:28201 #, no-wrap msgid "@code{zonefile-load} (default: @code{#f})" msgstr "@code{zonefile-load} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27867 +#: guix-git/doc/guix.texi:28204 msgid "The way the zone file contents are applied during zone load. Possible values are:" msgstr "La manière dont le contenu du fichier de zone influe sur le chargement de la zone. Les valeurs possibles sont :" #. type: item -#: guix-git/doc/guix.texi:27869 +#: guix-git/doc/guix.texi:28206 #, no-wrap msgid "@code{#f} for using the default value from Knot," msgstr "@code{#f} pour utilise la valeur par défaut de Knot," #. type: item -#: guix-git/doc/guix.texi:27870 +#: guix-git/doc/guix.texi:28207 #, no-wrap msgid "@code{'none} for not using the zone file at all," msgstr "@code{'none} pour ne pas utiliser le fichier de zone du tout," #. type: item -#: guix-git/doc/guix.texi:27871 +#: guix-git/doc/guix.texi:28208 #, no-wrap msgid "@code{'difference} for computing the difference between already available" msgstr "@code{'difference} pour calculer les différences entre le contenu déjà disponible" #. type: itemize -#: guix-git/doc/guix.texi:27873 +#: guix-git/doc/guix.texi:28210 msgid "contents and zone contents and applying it to the current zone contents," msgstr "et le contenu du fichier de zone et les appliquer au contenu actuel de la zone," #. type: item -#: guix-git/doc/guix.texi:27873 +#: guix-git/doc/guix.texi:28210 #, no-wrap msgid "@code{'difference-no-serial} for the same as @code{'difference}, but" msgstr "@code{'difference-no-serial} pour la même chose que @code{'difference}, mais" #. type: itemize -#: guix-git/doc/guix.texi:27876 +#: guix-git/doc/guix.texi:28213 msgid "ignoring the SOA serial in the zone file, while the server takes care of it automatically." msgstr "en ignorant le serial du SOA du fichier de zone, pour que le serveur s'en charge automatiquement." #. type: item -#: guix-git/doc/guix.texi:27876 +#: guix-git/doc/guix.texi:28213 #, no-wrap msgid "@code{'whole} for loading zone contents from the zone file." msgstr "@code{'whole} pour charger le contenu de la zone depuis le fichier de zone." #. type: item -#: guix-git/doc/guix.texi:27879 +#: guix-git/doc/guix.texi:28216 #, no-wrap msgid "@code{journal-content} (default: @code{#f})" msgstr "@code{journal-content} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27884 +#: guix-git/doc/guix.texi:28221 msgid "The way the journal is used to store zone and its changes. Possible values are @code{'none} to not use it at all, @code{'changes} to store changes and @code{'all} to store contents. @code{#f} does not set this option, so the default value from Knot is used." msgstr "La manière dont le journal est utilisé pour stocker la zone et ses changements. Les valeurs possibles sont @code{'none} pour ne pas l'utiliser du tout, @code{'changes} pour stocker les changements et @code{'all} pour stocker le contenu. @code{#f} ne met pas en place cette option et la valeur par défaut de Knot est utilisée." #. type: item -#: guix-git/doc/guix.texi:27885 +#: guix-git/doc/guix.texi:28222 #, no-wrap msgid "@code{max-journal-usage} (default: @code{#f})" msgstr "@code{max-journal-usage} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27888 +#: guix-git/doc/guix.texi:28225 msgid "The maximum size for the journal on disk. @code{#f} does not set this option, so the default value from Knot is used." msgstr "La taille maximale du journal sur le disque. @code{#f} ne met pas en place cette option et la valeur par défaut de Knot est utilisée." #. type: item -#: guix-git/doc/guix.texi:27889 +#: guix-git/doc/guix.texi:28226 #, no-wrap msgid "@code{max-journal-depth} (default: @code{#f})" msgstr "@code{max-journal-depth} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27892 +#: guix-git/doc/guix.texi:28229 msgid "The maximum size of the history. @code{#f} does not set this option, so the default value from Knot is used." msgstr "La taille maximale de l'historique. @code{#f} ne met pas en place cette option et la valeur par défaut de Knot est utilisée." #. type: item -#: guix-git/doc/guix.texi:27893 +#: guix-git/doc/guix.texi:28230 #, no-wrap msgid "@code{max-zone-size} (default: @code{#f})" msgstr "@code{max-zone-size} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27897 +#: guix-git/doc/guix.texi:28234 msgid "The maximum size of the zone file. This limit is enforced for incoming transfer and updates. @code{#f} does not set this option, so the default value from Knot is used." msgstr "La taille maximale du fichier de zone. Cette limite est prise en charge pour les transferts entrants et les mises à jour. @code{#f} ne met pas en place cette option et la valeur par défaut de Knot est utilisée." #. type: item -#: guix-git/doc/guix.texi:27898 +#: guix-git/doc/guix.texi:28235 #, no-wrap msgid "@code{dnssec-policy} (default: @code{#f})" msgstr "@code{dnssec-policy} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27902 +#: guix-git/doc/guix.texi:28239 msgid "A reference to a @code{knot-policy-configuration} record, or the special name @code{\"default\"}. If the value is @code{#f}, there is no dnssec signing on this zone." msgstr "Une référence à un enregistrement @code{knot-policy-configuration}, ou le nom spécial @code{\"default\"}. Si la valeur est @code{#f}, cette zone n'est pas signée." #. type: item -#: guix-git/doc/guix.texi:27903 +#: guix-git/doc/guix.texi:28240 #, no-wrap msgid "@code{serial-policy} (default: @code{'increment})" msgstr "@code{serial-policy} (par défaut : @code{'increment})" #. type: table -#: guix-git/doc/guix.texi:27905 +#: guix-git/doc/guix.texi:28242 msgid "A policy between @code{'increment} and @code{'unixtime}." msgstr "Une politique entre @code{'increment} et @code{'unixtime}." #. type: deftp -#: guix-git/doc/guix.texi:27909 +#: guix-git/doc/guix.texi:28246 #, no-wrap msgid "{Data Type} knot-configuration" msgstr "{Type de données} knot-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27912 +#: guix-git/doc/guix.texi:28249 msgid "Data type representing the Knot configuration. This type has the following parameters:" msgstr "Type de données représentant la configuration de Knot. Ce type a les paramètres suivants :" #. type: item -#: guix-git/doc/guix.texi:27914 +#: guix-git/doc/guix.texi:28251 #, no-wrap msgid "@code{knot} (default: @code{knot})" msgstr "@code{knot} (par défaut : @code{knot})" #. type: table -#: guix-git/doc/guix.texi:27916 +#: guix-git/doc/guix.texi:28253 msgid "The Knot package." msgstr "Le paquet Knot." #. type: item -#: guix-git/doc/guix.texi:27917 +#: guix-git/doc/guix.texi:28254 #, no-wrap msgid "@code{run-directory} (default: @code{\"/var/run/knot\"})" msgstr "@code{run-directory} (par défaut : @code{\"/var/run/knot\"})" #. type: table -#: guix-git/doc/guix.texi:27919 +#: guix-git/doc/guix.texi:28256 msgid "The run directory. This directory will be used for pid file and sockets." msgstr "Le répertoire de travail. Ce répertoire sera utilisé pour le fichier pid et les sockets." #. type: item -#: guix-git/doc/guix.texi:27920 +#: guix-git/doc/guix.texi:28257 #, no-wrap msgid "@code{includes} (default: @code{'()})" msgstr "@code{includes} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27923 +#: guix-git/doc/guix.texi:28260 msgid "A list of strings or file-like objects denoting other files that must be included at the top of the configuration file." msgstr "Une liste plate de chaînes ou d'objets simili-fichiers qui seront inclus en haut du fichier de configuration." #. type: cindex -#: guix-git/doc/guix.texi:27924 +#: guix-git/doc/guix.texi:28261 #, no-wrap msgid "secrets, Knot service" msgstr "secrets, service Knot" #. type: table -#: guix-git/doc/guix.texi:27930 +#: guix-git/doc/guix.texi:28267 msgid "This can be used to manage secrets out-of-band. For example, secret keys may be stored in an out-of-band file not managed by Guix, and thus not visible in @file{/gnu/store}---e.g., you could store secret key configuration in @file{/etc/knot/secrets.conf} and add this file to the @code{includes} list." msgstr "Cela peut être utile pour gérer des secrets hors-bande. Par exemple, on peut stocker des clefs secrètes dans un fichier hors-bande qui n'est pas géré par Guix, et donc pas visible dans @file{/gnu/store} — p.@: ex.@: vous pouvez stocker la configuration des clefs secrètes dans @file{/etc/knot/secrets.conf} et ajouter ce fichier à la lite @code{includes}." #. type: table -#: guix-git/doc/guix.texi:27935 +#: guix-git/doc/guix.texi:28272 msgid "One can generate a secret tsig key (for nsupdate and zone transfers with the keymgr command from the knot package. Note that the package is not automatically installed by the service. The following example shows how to generate a new tsig key:" msgstr "On peut générer une clé secrète tsig (pour nsupdate et les transferts de zones) avec la commande keymgr du paquet knot. Remarquez que le paquet n'est pas automatiquement installé par le service. L'exemple suivant montre comment générer une nouvelle clé tsig :" #. type: example -#: guix-git/doc/guix.texi:27939 +#: guix-git/doc/guix.texi:28276 #, no-wrap msgid "" "keymgr -t mysecret > /etc/knot/secrets.conf\n" @@ -52732,106 +53420,106 @@ msgstr "" "chmod 600 /etc/knot/secrets.conf\n" #. type: table -#: guix-git/doc/guix.texi:27945 +#: guix-git/doc/guix.texi:28282 msgid "Also note that the generated key will be named @var{mysecret}, so it is the name that needs to be used in the @var{key} field of the @code{knot-acl-configuration} record and in other places that need to refer to that key." msgstr "Remarquez aussi que la clé générée sera nommée @var{mysecret}, donc c'est le nom qui est requis dans le champ @var{key} de l'enregistrement @code{knot-acl-configuration} et aux autres endroits qui se réfèrent à cette clé." #. type: table -#: guix-git/doc/guix.texi:27947 +#: guix-git/doc/guix.texi:28284 msgid "It can also be used to add configuration not supported by this interface." msgstr "Cela peut aussi être utilisé pour ajouter des configurations qui ne sont pas prises en charge par cette interface." #. type: item -#: guix-git/doc/guix.texi:27948 +#: guix-git/doc/guix.texi:28285 #, no-wrap msgid "@code{listen-v4} (default: @code{\"0.0.0.0\"})" msgstr "@code{listen-v4} (par défaut : @code{\"0.0.0.0\"})" #. type: table -#: guix-git/doc/guix.texi:27950 guix-git/doc/guix.texi:27953 +#: guix-git/doc/guix.texi:28287 guix-git/doc/guix.texi:28290 msgid "An ip address on which to listen." msgstr "Une adresse IP sur laquelle écouter." #. type: item -#: guix-git/doc/guix.texi:27951 +#: guix-git/doc/guix.texi:28288 #, no-wrap msgid "@code{listen-v6} (default: @code{\"::\"})" msgstr "@code{listen-v6} (par défaut : @code{\"::\"})" #. type: item -#: guix-git/doc/guix.texi:27954 +#: guix-git/doc/guix.texi:28291 #, no-wrap msgid "@code{listen-port} (default: @code{53})" msgstr "@code{listen-port} (par défaut : @code{53})" #. type: table -#: guix-git/doc/guix.texi:27956 +#: guix-git/doc/guix.texi:28293 msgid "A port on which to listen." msgstr "Un port sur lequel écouter." #. type: item -#: guix-git/doc/guix.texi:27957 +#: guix-git/doc/guix.texi:28294 #, no-wrap msgid "@code{keys} (default: @code{'()})" msgstr "@code{keys} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27959 +#: guix-git/doc/guix.texi:28296 msgid "The list of knot-key-configuration used by this configuration." msgstr "La liste des knot-key-configuration utilisés par cette configuration." #. type: item -#: guix-git/doc/guix.texi:27960 +#: guix-git/doc/guix.texi:28297 #, no-wrap msgid "@code{acls} (default: @code{'()})" msgstr "@code{acls} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27962 +#: guix-git/doc/guix.texi:28299 msgid "The list of knot-acl-configuration used by this configuration." msgstr "La liste des knot-acl-configuration utilisés par cette configuration." #. type: item -#: guix-git/doc/guix.texi:27963 +#: guix-git/doc/guix.texi:28300 #, no-wrap msgid "@code{remotes} (default: @code{'()})" msgstr "@code{remotes} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27965 +#: guix-git/doc/guix.texi:28302 msgid "The list of knot-remote-configuration used by this configuration." msgstr "La liste des knot-remote-configuration utilisés par cette configuration." #. type: item -#: guix-git/doc/guix.texi:27966 +#: guix-git/doc/guix.texi:28303 #, no-wrap msgid "@code{zones} (default: @code{'()})" msgstr "@code{zones} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27968 +#: guix-git/doc/guix.texi:28305 msgid "The list of knot-zone-configuration used by this configuration." msgstr "La liste des knot-zone-configuration utilisés par cette configuration." #. type: subsubheading -#: guix-git/doc/guix.texi:27972 +#: guix-git/doc/guix.texi:28309 #, no-wrap msgid "Knot Resolver Service" msgstr "Service de résolveur Knot" #. type: deffn -#: guix-git/doc/guix.texi:27974 +#: guix-git/doc/guix.texi:28311 #, no-wrap msgid "{Scheme Variable} knot-resolver-service-type" msgstr "{Variable Scheme} knot-resolver-service-type" #. type: deffn -#: guix-git/doc/guix.texi:27977 +#: guix-git/doc/guix.texi:28314 msgid "This is the type of the knot resolver service, whose value should be an @code{knot-resolver-configuration} object as in this example:" msgstr "C'est le type du service de résolution de knot, dont la valeur devrait être un objet @code{knot-resolver-configuration} comme dans cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:27987 +#: guix-git/doc/guix.texi:28324 #, no-wrap msgid "" "(service knot-resolver-service-type\n" @@ -52853,73 +53541,73 @@ msgstr "" "\"))))\n" #. type: deffn -#: guix-git/doc/guix.texi:27990 +#: guix-git/doc/guix.texi:28327 msgid "For more information, refer its @url{https://knot-resolver.readthedocs.org/en/stable/daemon.html#configuration, manual}." msgstr "Pour plus d'information, regardez @url{https://knot-resolver.readthedocs.org/en/stable/daemon.html#configuration, manual}." #. type: deftp -#: guix-git/doc/guix.texi:27992 +#: guix-git/doc/guix.texi:28329 #, no-wrap msgid "{Data Type} knot-resolver-configuration" msgstr "{Type de données} knot-resolver-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27994 +#: guix-git/doc/guix.texi:28331 msgid "Data type representing the configuration of knot-resolver." msgstr "Type de données représentant la configuration de knot-resolver." #. type: item -#: guix-git/doc/guix.texi:27996 +#: guix-git/doc/guix.texi:28333 #, no-wrap msgid "@code{package} (default: @var{knot-resolver})" msgstr "@code{package} (par défaut : @var{knot-resolver})" #. type: table -#: guix-git/doc/guix.texi:27998 +#: guix-git/doc/guix.texi:28335 msgid "Package object of the knot DNS resolver." msgstr "Objet de paquet du résolveur DNS knot." #. type: item -#: guix-git/doc/guix.texi:27999 +#: guix-git/doc/guix.texi:28336 #, no-wrap msgid "@code{kresd-config-file} (default: %kresd.conf)" msgstr "@code{kresd-config-file} (par défaut : %kresd.conf)" #. type: table -#: guix-git/doc/guix.texi:28002 +#: guix-git/doc/guix.texi:28339 msgid "File-like object of the kresd configuration file to use, by default it will listen on @code{127.0.0.1} and @code{::1}." msgstr "Objet simili-fichier du fichier de configuration de kresd à utiliser. Par défaut il écoutera sur @code{127.0.0.1} et @code{::1}." #. type: item -#: guix-git/doc/guix.texi:28003 +#: guix-git/doc/guix.texi:28340 #, no-wrap msgid "@code{garbage-collection-interval} (default: 1000)" msgstr "@code{garbage-collection-interval} (par défaut : 1000)" #. type: table -#: guix-git/doc/guix.texi:28005 +#: guix-git/doc/guix.texi:28342 msgid "Number of milliseconds for @code{kres-cache-gc} to periodically trim the cache." msgstr "Nombre de millisecondes correspondant à la périodicité avec laquelle @code{kres-cache-gc} nettoie le cache." #. type: subsubheading -#: guix-git/doc/guix.texi:28010 +#: guix-git/doc/guix.texi:28347 #, no-wrap msgid "Dnsmasq Service" msgstr "Services Dnsmasq" #. type: deffn -#: guix-git/doc/guix.texi:28012 +#: guix-git/doc/guix.texi:28349 #, no-wrap msgid "{Scheme Variable} dnsmasq-service-type" msgstr "{Variable Scheme} dnsmasq-service-type" #. type: deffn -#: guix-git/doc/guix.texi:28015 +#: guix-git/doc/guix.texi:28352 msgid "This is the type of the dnsmasq service, whose value should be an @code{dnsmasq-configuration} object as in this example:" msgstr "C'est le type du service dnsmasq, dont la valeur devrait être un objet @code{dnsmasq-configuration} comme dans cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:28021 +#: guix-git/doc/guix.texi:28358 #, no-wrap msgid "" "(service dnsmasq-service-type\n" @@ -52933,122 +53621,122 @@ msgstr "" " (servers '(\"192.168.1.1\"))))\n" #. type: deftp -#: guix-git/doc/guix.texi:28024 +#: guix-git/doc/guix.texi:28361 #, no-wrap msgid "{Data Type} dnsmasq-configuration" msgstr "{Type de données} dnsmasq-configuration" #. type: deftp -#: guix-git/doc/guix.texi:28026 +#: guix-git/doc/guix.texi:28363 msgid "Data type representing the configuration of dnsmasq." msgstr "Type de données qui représente la configuration de dnsmasq." #. type: item -#: guix-git/doc/guix.texi:28028 +#: guix-git/doc/guix.texi:28365 #, no-wrap msgid "@code{package} (default: @var{dnsmasq})" msgstr "@code{package} (par défaut : @var{dnsmasq})" #. type: table -#: guix-git/doc/guix.texi:28030 +#: guix-git/doc/guix.texi:28367 msgid "Package object of the dnsmasq server." msgstr "L'objet de paquet du serveur dnsmasq." #. type: item -#: guix-git/doc/guix.texi:28031 +#: guix-git/doc/guix.texi:28368 #, no-wrap msgid "@code{no-hosts?} (default: @code{#f})" msgstr "@code{no-hosts?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28033 +#: guix-git/doc/guix.texi:28370 msgid "When true, don't read the hostnames in /etc/hosts." msgstr "Lorsque la valeur est vraie, ne pas lire les noms d'hôte dans /etc/hosts." #. type: item -#: guix-git/doc/guix.texi:28034 +#: guix-git/doc/guix.texi:28371 #, no-wrap msgid "@code{port} (default: @code{53})" msgstr "@code{port} (par défaut : @code{53})" #. type: table -#: guix-git/doc/guix.texi:28037 +#: guix-git/doc/guix.texi:28374 msgid "The port to listen on. Setting this to zero completely disables DNS responses, leaving only DHCP and/or TFTP functions." msgstr "Le port sur lequel écouter. Le mettre à zéro désactive complètement les réponses DNS, ce qui ne laisse que les fonctions DHCP et TFTP." #. type: item -#: guix-git/doc/guix.texi:28038 +#: guix-git/doc/guix.texi:28375 #, no-wrap msgid "@code{local-service?} (default: @code{#t})" msgstr "@code{local-service?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:28041 +#: guix-git/doc/guix.texi:28378 msgid "Accept DNS queries only from hosts whose address is on a local subnet, ie a subnet for which an interface exists on the server." msgstr "Accepte les requêtes DNS seulement des hôtes dont les adresses sont sur le sous-réseau local, c.-à-d.@: sur un sous-réseau pour lequel une interface existe sur le serveur." #. type: item -#: guix-git/doc/guix.texi:28042 +#: guix-git/doc/guix.texi:28379 #, no-wrap msgid "@code{listen-addresses} (default: @code{'()})" msgstr "@code{listen-addresses} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:28044 +#: guix-git/doc/guix.texi:28381 msgid "Listen on the given IP addresses." msgstr "Écoute sur le adresses IP données." #. type: item -#: guix-git/doc/guix.texi:28045 +#: guix-git/doc/guix.texi:28382 #, no-wrap msgid "@code{resolv-file} (default: @code{\"/etc/resolv.conf\"})" msgstr "@code{resolv-file} (par défaut : @code{\"/etc/resolv.conf\"})" #. type: table -#: guix-git/doc/guix.texi:28047 +#: guix-git/doc/guix.texi:28384 msgid "The file to read the IP address of the upstream nameservers from." msgstr "Le fichier où lire l'adresse IP des serveurs de noms en amont." #. type: item -#: guix-git/doc/guix.texi:28048 +#: guix-git/doc/guix.texi:28385 #, no-wrap msgid "@code{no-resolv?} (default: @code{#f})" msgstr "@code{no-resolv?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28050 +#: guix-git/doc/guix.texi:28387 msgid "When true, don't read @var{resolv-file}." msgstr "Lorsque la valeur est vraie, ne pas lire @var{resolv-file}." #. type: item -#: guix-git/doc/guix.texi:28051 +#: guix-git/doc/guix.texi:28388 #, no-wrap msgid "@code{servers} (default: @code{'()})" msgstr "@code{servers} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:28053 +#: guix-git/doc/guix.texi:28390 msgid "Specify IP address of upstream servers directly." msgstr "Spécifiez l'adresse IP des serveurs en amont directement." #. type: item -#: guix-git/doc/guix.texi:28054 +#: guix-git/doc/guix.texi:28391 #, no-wrap msgid "@code{addresses} (default: @code{'()})" msgstr "@code{addresses} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:28058 +#: guix-git/doc/guix.texi:28395 msgid "For each entry, specify an IP address to return for any host in the given domains. Queries in the domains are never forwarded and always replied to with the specified IP address." msgstr "Pour chaque entrée, spécifie une adresse IP à renvoyer pour les hôtes des domaines donnés. Les requêtes dans les domaines ne sont jamais envoyés et la réponse sera toujours l'adresse IP spécifiée." #. type: table -#: guix-git/doc/guix.texi:28060 +#: guix-git/doc/guix.texi:28397 msgid "This is useful for redirecting hosts locally, for example:" msgstr "C'est utile pour rediriger des hôtes localement, comme dans cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:28069 +#: guix-git/doc/guix.texi:28406 #, no-wrap msgid "" "(service dnsmasq-service-type\n" @@ -53068,1007 +53756,1007 @@ msgstr "" " \"/subdomain.example.org/192.168.1.42\"))))\n" #. type: table -#: guix-git/doc/guix.texi:28072 +#: guix-git/doc/guix.texi:28409 msgid "Note that rules in @file{/etc/hosts} take precedence over this." msgstr "Remarquez que les règles dans @file{/etc/hosts} prennent le pas sur celles-ci." #. type: item -#: guix-git/doc/guix.texi:28073 +#: guix-git/doc/guix.texi:28410 #, no-wrap msgid "@code{cache-size} (default: @code{150})" msgstr "@code{cache-size} (par défaut : @code{150})" #. type: table -#: guix-git/doc/guix.texi:28076 +#: guix-git/doc/guix.texi:28413 msgid "Set the size of dnsmasq's cache. Setting the cache size to zero disables caching." msgstr "Indique la taille du cache de dnsmasq. Indiquer 0 désactive le cache." #. type: item -#: guix-git/doc/guix.texi:28077 +#: guix-git/doc/guix.texi:28414 #, no-wrap msgid "@code{negative-cache?} (default: @code{#t})" msgstr "@code{negative-cache?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:28079 +#: guix-git/doc/guix.texi:28416 msgid "When false, disable negative caching." msgstr "Lorsque la valeur est fausse, désactive le cache des réponses négatives." #. type: item -#: guix-git/doc/guix.texi:28080 +#: guix-git/doc/guix.texi:28417 #, no-wrap msgid "@code{tftp-enable?} (default: @code{#f})" msgstr "@code{tftp-enable?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28082 +#: guix-git/doc/guix.texi:28419 msgid "Whether to enable the built-in TFTP server." msgstr "Indique s'il faut activer le serveur TFTP inclus." #. type: item -#: guix-git/doc/guix.texi:28083 +#: guix-git/doc/guix.texi:28420 #, no-wrap msgid "@code{tftp-no-fail?} (default: @code{#f})" msgstr "@code{tftp-no-fail?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28085 +#: guix-git/doc/guix.texi:28422 msgid "If true, does not fail dnsmasq if the TFTP server could not start up." msgstr "Si la valeur est vraie, dnsmasq n'échoue pas si le serveur TFTP ne peut pas démarrer." #. type: item -#: guix-git/doc/guix.texi:28086 +#: guix-git/doc/guix.texi:28423 #, no-wrap msgid "@code{tftp-single-port?} (default: @code{#f})" msgstr "@code{tftp-single-port?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28088 +#: guix-git/doc/guix.texi:28425 msgid "Whether to use only one single port for TFTP." msgstr "Indique s'il faut utiliser un seul port pour TFTP." #. type: item -#: guix-git/doc/guix.texi:28089 +#: guix-git/doc/guix.texi:28426 #, no-wrap msgid "@code{tftp-secure?} (default: @code{#f})" msgstr "@code{tftp-secure?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28091 +#: guix-git/doc/guix.texi:28428 msgid "If true, only files owned by the user running the dnsmasq process are accessible." msgstr "Si la valeur est vraie, seuls les fichiers appartenant à l'utilisateur sous lequel tourne dnsmasq sont accessibles." #. type: table -#: guix-git/doc/guix.texi:28095 +#: guix-git/doc/guix.texi:28432 msgid "If dnsmasq is being run as root, different rules apply: @code{tftp-secure?} has no effect, but only files which have the world-readable bit set are accessible." msgstr "Si dnsmasq est lancé en root, des règles différentes s'appliquent : @code{tft-secure?} n'a pas d'effet, mais seuls les fichiers qui ont le bit de lecture pour tout le monde sont accessibles." #. type: item -#: guix-git/doc/guix.texi:28096 +#: guix-git/doc/guix.texi:28433 #, no-wrap msgid "@code{tftp-max} (default: @code{#f})" msgstr "@code{tftp-max} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28098 +#: guix-git/doc/guix.texi:28435 msgid "If set, sets the maximal number of concurrent connections allowed." msgstr "Si une valeur est indiquée, indique le nombre maximal de connexions permises en parallèle." #. type: item -#: guix-git/doc/guix.texi:28099 +#: guix-git/doc/guix.texi:28436 #, no-wrap msgid "@code{tftp-mtu} (default: @code{#f})" msgstr "@code{tftp-mtu} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28101 +#: guix-git/doc/guix.texi:28438 msgid "If set, sets the MTU for TFTP packets to that value." msgstr "Si une valeur est indiquée, indique le MTU pour les paquets TFTP." #. type: item -#: guix-git/doc/guix.texi:28102 +#: guix-git/doc/guix.texi:28439 #, no-wrap msgid "@code{tftp-no-blocksize?} (default: @code{#f})" msgstr "@code{tftp-no-blocksize?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28104 +#: guix-git/doc/guix.texi:28441 msgid "If true, stops the TFTP server from negotiating the blocksize with a client." msgstr "Si la valeur est vraie, empêche que le serveur TFTP ne négocie la taille de bloc avec un client." #. type: item -#: guix-git/doc/guix.texi:28105 +#: guix-git/doc/guix.texi:28442 #, no-wrap msgid "@code{tftp-lowercase?} (default: @code{#f})" msgstr "@code{tftp-lowercase?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28107 +#: guix-git/doc/guix.texi:28444 msgid "Whether to convert all filenames in TFTP requests to lowercase." msgstr "Indique s'il faut convertir tous les noms de fichiers dans les requêtes TFTP en minuscule." #. type: item -#: guix-git/doc/guix.texi:28108 +#: guix-git/doc/guix.texi:28445 #, no-wrap msgid "@code{tftp-port-range} (default: @code{#f})" msgstr "@code{tftp-port-range} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28111 +#: guix-git/doc/guix.texi:28448 msgid "If set, fixes the dynamical ports (one per client) to the given range (@code{\",\"})." msgstr "Si une valeur est indiquée, fixe les ports dynamiques (un par client) à la zone données (@code{\",\"})." #. type: item -#: guix-git/doc/guix.texi:28112 +#: guix-git/doc/guix.texi:28449 #, no-wrap msgid "@code{tftp-root} (default: @code{/var/empty,lo})" msgstr "@code{tftp-root} (par défaut : @code{/var/empty,lo})" #. type: table -#: guix-git/doc/guix.texi:28119 +#: guix-git/doc/guix.texi:28456 msgid "Look for files to transfer using TFTP relative to the given directory. When this is set, TFTP paths which include @samp{..} are rejected, to stop clients getting outside the specified root. Absolute paths (starting with @samp{/}) are allowed, but they must be within the TFTP-root. If the optional interface argument is given, the directory is only used for TFTP requests via that interface." msgstr "Cherche les fichiers à transférer avec TFTP relativement au répertoire donné. Lorsque la valeur est indiquée, les chemins TFTP qui contiennent @samp{..} sont rejeté, pour éviter que les client n'arrivent en dehors de la racine donnée. Les chemins absolus (commençant par @samp{/}) sont permis, mais ils doivent être à l'intérieur de la racine de TFTP. Si un argument d'interface facultatif est donné, le répertoire n'est utilisé que pour les requêtes TFTP via cette interface." #. type: item -#: guix-git/doc/guix.texi:28120 +#: guix-git/doc/guix.texi:28457 #, no-wrap msgid "@code{tftp-unique-root} (default: @code{#f})" msgstr "@code{tftp-unique-root} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28125 +#: guix-git/doc/guix.texi:28462 msgid "If set, add the IP or hardware address of the TFTP client as a path component on the end of the TFTP-root. Only valid if a TFTP root is set and the directory exists. Defaults to adding IP address (in standard dotted-quad format)." msgstr "Si une valeur est indiquée, ajoute d'IP ou l'adresse matérielle du client TFTP en tant que composant du chemin à la fin de la racine TFTP. Valide uniquement si une racine TFTP est indiquée et que le répertoire existe. La valeur par défaut ajoute l'adresse IP (au format à trois points standard)." #. type: table -#: guix-git/doc/guix.texi:28134 +#: guix-git/doc/guix.texi:28471 msgid "For instance, if @option{--tftp-root} is @samp{/tftp} and client @samp{1.2.3.4} requests file @file{myfile} then the effective path will be @file{/tftp/1.2.3.4/myfile} if @file{/tftp/1.2.3.4} exists or @file{/tftp/myfile} otherwise. When @samp{=mac} is specified it will append the MAC address instead, using lowercase zero padded digits separated by dashes, e.g.: @samp{01-02-03-04-aa-bb}. Note that resolving MAC addresses is only possible if the client is in the local network or obtained a DHCP lease from dnsmasq." msgstr "Par exemple, si -@option{-tftp-root} est @samp{/tftp} et que le client @samp{1.2.3.4} demande le fichier @file{monfichier} alors le chemin effectif sera @file{/tftp/1.2.3.4/monfichier} si @file{/tftp/1.2.3.4} existe, ou @file{/tftp/monfichier} sinon. Avec @samp{=mac}, c'est l'adresse MAC qui sera ajoutée à la place, en utilisant des nombres en minuscule à taille fixe et séparés par des tirets, p.@: ex.@: : @samp{01-02-03-04-aa-bb}. Remarquez que la résolution d'une adresse MAC n'est possible que si le client est sur le réseau local ou a obtenu un bail DHCP de dnsmasq." #. type: subsubheading -#: guix-git/doc/guix.texi:28138 +#: guix-git/doc/guix.texi:28475 #, no-wrap msgid "ddclient Service" msgstr "service ddclient" #. type: cindex -#: guix-git/doc/guix.texi:28140 +#: guix-git/doc/guix.texi:28477 #, no-wrap msgid "ddclient" msgstr "ddclient" #. type: Plain text -#: guix-git/doc/guix.texi:28144 +#: guix-git/doc/guix.texi:28481 msgid "The ddclient service described below runs the ddclient daemon, which takes care of automatically updating DNS entries for service providers such as @uref{https://dyn.com/dns/, Dyn}." msgstr "Le service ddclient décrit plus bas lance le démon ddclient, qui prend en charge la mise à jour automatique des entrées DNS pour les fournisseurs de service comme @uref{https://dyn.com/dns/, Dyn}." #. type: Plain text -#: guix-git/doc/guix.texi:28147 +#: guix-git/doc/guix.texi:28484 msgid "The following example show instantiates the service with its default configuration:" msgstr "L'exemple suivant montre comment instantier le service avec sa configuration par défaut :" #. type: lisp -#: guix-git/doc/guix.texi:28150 +#: guix-git/doc/guix.texi:28487 #, no-wrap msgid "(service ddclient-service-type)\n" msgstr "(service ddclient-service-type)\n" #. type: Plain text -#: guix-git/doc/guix.texi:28159 +#: guix-git/doc/guix.texi:28496 msgid "Note that ddclient needs to access credentials that are stored in a @dfn{secret file}, by default @file{/etc/ddclient/secrets} (see @code{secret-file} below). You are expected to create this file manually, in an ``out-of-band'' fashion (you @emph{could} make this file part of the service configuration, for instance by using @code{plain-file}, but it will be world-readable @i{via} @file{/gnu/store}). See the examples in the @file{share/ddclient} directory of the @code{ddclient} package." msgstr "Remarquez que ddclient a besoin d'accéder à des identifiants stockés dans un @dfn{fichier de secrets}, par défaut @file{/etc/ddclient/secrets} (voir @code{secret-file} plus bas). On s'attend à ce que vous créiez ce fichier manuellement, de manière externe à guix (vous @emph{pourriez} ajouter ce fichier dans une partie de votre configuration, par exemple avec @code{plain-file}, mais il serait lisible pour tout le monde via @file{/gnu/store}). Vois les exemples dans le répertoire @file{share/ddclient} du paquet @code{ddclient}." #. type: Plain text -#: guix-git/doc/guix.texi:28163 +#: guix-git/doc/guix.texi:28500 msgid "Available @code{ddclient-configuration} fields are:" msgstr "Les champs de @code{ddclient-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:28164 +#: guix-git/doc/guix.texi:28501 #, no-wrap msgid "{@code{ddclient-configuration} parameter} package ddclient" msgstr "{paramètre de @code{ddclient-configuration}} package ddclient" #. type: deftypevr -#: guix-git/doc/guix.texi:28166 +#: guix-git/doc/guix.texi:28503 msgid "The ddclient package." msgstr "Le paquet ddclient." #. type: deftypevr -#: guix-git/doc/guix.texi:28169 +#: guix-git/doc/guix.texi:28506 #, no-wrap msgid "{@code{ddclient-configuration} parameter} integer daemon" msgstr "{paramètre de @code{ddclient-configuration}} integer daemon" #. type: deftypevr -#: guix-git/doc/guix.texi:28171 +#: guix-git/doc/guix.texi:28508 msgid "The period after which ddclient will retry to check IP and domain name." msgstr "La période après laquelle ddclient réessaiera de vérifier l'IP et le nom de domaine." #. type: deftypevr -#: guix-git/doc/guix.texi:28173 +#: guix-git/doc/guix.texi:28510 msgid "Defaults to @samp{300}." msgstr "La valeur par défaut est @samp{300}." #. type: deftypevr -#: guix-git/doc/guix.texi:28176 +#: guix-git/doc/guix.texi:28513 #, no-wrap msgid "{@code{ddclient-configuration} parameter} boolean syslog" msgstr "{paramètre de @code{ddclient-configuration}} boolean syslog" #. type: deftypevr -#: guix-git/doc/guix.texi:28178 +#: guix-git/doc/guix.texi:28515 msgid "Use syslog for the output." msgstr "Utiliser syslog pour la sortie." #. type: deftypevr -#: guix-git/doc/guix.texi:28183 +#: guix-git/doc/guix.texi:28520 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string mail" msgstr "{paramètre de @code{ddclient-configuration}} string mail" #. type: deftypevr -#: guix-git/doc/guix.texi:28185 +#: guix-git/doc/guix.texi:28522 msgid "Mail to user." msgstr "Courriel de l'utilisateur." #. type: deftypevr -#: guix-git/doc/guix.texi:28187 guix-git/doc/guix.texi:28194 -#: guix-git/doc/guix.texi:29996 +#: guix-git/doc/guix.texi:28524 guix-git/doc/guix.texi:28531 +#: guix-git/doc/guix.texi:30361 msgid "Defaults to @samp{\"root\"}." msgstr "La valeur par défaut est @samp{\"root\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28190 +#: guix-git/doc/guix.texi:28527 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string mail-failure" msgstr "{paramètre de @code{ddclient-configuration}} string mail-failure" #. type: deftypevr -#: guix-git/doc/guix.texi:28192 +#: guix-git/doc/guix.texi:28529 msgid "Mail failed update to user." msgstr "Courriel de l'utilisateur pour les échecs." #. type: deftypevr -#: guix-git/doc/guix.texi:28197 +#: guix-git/doc/guix.texi:28534 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string pid" msgstr "{paramètre de @code{ddclient-configuration}} string pid" #. type: deftypevr -#: guix-git/doc/guix.texi:28199 +#: guix-git/doc/guix.texi:28536 msgid "The ddclient PID file." msgstr "Le fichier de PID de ddclient." #. type: deftypevr -#: guix-git/doc/guix.texi:28201 +#: guix-git/doc/guix.texi:28538 msgid "Defaults to @samp{\"/var/run/ddclient/ddclient.pid\"}." msgstr "La valeur par défaut est @samp{\"/var/run/ddclient/ddclient.pid\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28204 +#: guix-git/doc/guix.texi:28541 #, no-wrap msgid "{@code{ddclient-configuration} parameter} boolean ssl" msgstr "{paramètre de @code{ddclient-configuration}} boolean ssl" #. type: deftypevr -#: guix-git/doc/guix.texi:28206 +#: guix-git/doc/guix.texi:28543 msgid "Enable SSL support." msgstr "Activer le support de SSL." #. type: deftypevr -#: guix-git/doc/guix.texi:28211 +#: guix-git/doc/guix.texi:28548 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string user" msgstr "{paramètre de @code{ddclient-configuration}} string user" #. type: deftypevr -#: guix-git/doc/guix.texi:28214 +#: guix-git/doc/guix.texi:28551 msgid "Specifies the user name or ID that is used when running ddclient program." msgstr "Spécifie le nm d'utilisateur ou l'ID qui est utilisé pour lancer le programme ddclient." #. type: deftypevr -#: guix-git/doc/guix.texi:28216 guix-git/doc/guix.texi:28223 +#: guix-git/doc/guix.texi:28553 guix-git/doc/guix.texi:28560 msgid "Defaults to @samp{\"ddclient\"}." msgstr "La valeur par défaut est @samp{\"ddclient\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28219 +#: guix-git/doc/guix.texi:28556 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string group" msgstr "{paramètre de @code{ddclient-configuration}} string group" #. type: deftypevr -#: guix-git/doc/guix.texi:28221 +#: guix-git/doc/guix.texi:28558 msgid "Group of the user who will run the ddclient program." msgstr "Groupe de l'utilisateur qui lancera le programme ddclient." #. type: deftypevr -#: guix-git/doc/guix.texi:28226 +#: guix-git/doc/guix.texi:28563 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string secret-file" msgstr "{paramètre de @code{ddclient-configuration}} string secret-file" #. type: deftypevr -#: guix-git/doc/guix.texi:28230 +#: guix-git/doc/guix.texi:28567 msgid "Secret file which will be appended to @file{ddclient.conf} file. This file contains credentials for use by ddclient. You are expected to create it manually." msgstr "Fichier de secrets qui sera ajouté au fichier @file{ddclient.conf}. Ce fichier contient les paramètres d'authentification utilisés par ddclient. On s'attend à ce que vous le créiez manuellement." #. type: deftypevr -#: guix-git/doc/guix.texi:28232 +#: guix-git/doc/guix.texi:28569 msgid "Defaults to @samp{\"/etc/ddclient/secrets.conf\"}." msgstr "La valeur par défaut est @samp{\"/etc/ddclient/secrets.conf\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28235 +#: guix-git/doc/guix.texi:28572 #, no-wrap msgid "{@code{ddclient-configuration} parameter} list extra-options" msgstr "{paramètre de @code{ddclient-configuration}} list extra-options" #. type: deftypevr -#: guix-git/doc/guix.texi:28237 +#: guix-git/doc/guix.texi:28574 msgid "Extra options will be appended to @file{ddclient.conf} file." msgstr "Options supplémentaires qui seront ajoutées au fichier @file{ddclient.conf}." #. type: cindex -#: guix-git/doc/guix.texi:28248 +#: guix-git/doc/guix.texi:28585 #, no-wrap msgid "VPN (virtual private network)" msgstr "VPN (réseau privé virtuel)" #. type: cindex -#: guix-git/doc/guix.texi:28249 +#: guix-git/doc/guix.texi:28586 #, no-wrap msgid "virtual private network (VPN)" msgstr "réseau privé virtuel (VPN)" #. type: Plain text -#: guix-git/doc/guix.texi:28253 +#: guix-git/doc/guix.texi:28590 msgid "The @code{(gnu services vpn)} module provides services related to @dfn{virtual private networks} (VPNs)." msgstr "Le module @code{(gnu services vpn)} fournit des services liés aux @dfn{réseaux privés virtuels} (VPN)." #. type: subsubheading -#: guix-git/doc/guix.texi:28254 +#: guix-git/doc/guix.texi:28591 #, no-wrap msgid "Bitmask" msgstr "Bitmask" #. type: defvr -#: guix-git/doc/guix.texi:28256 +#: guix-git/doc/guix.texi:28593 #, no-wrap msgid "{Scheme Variable} bitmask-service-type" msgstr "{Variable Scheme} bitmask-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28261 +#: guix-git/doc/guix.texi:28598 msgid "A service type for the @uref{https://bitmask.net, Bitmask} VPN client. It makes the client available in the system and loads its polkit policy. Please note that the client expects an active polkit-agent, which is either run by your desktop-environment or should be run manually." msgstr "Un type de service pour le client VPN @uref{https://bitmask.net, Bitmask}. Il rend le client disponible dans le système et charge sa politique Polkit. Remarquez que le client attend un @code{polkit-agent} actif, lancé soit par votre environnement de bureau soit par vous manuellement." #. type: subsubheading -#: guix-git/doc/guix.texi:28263 +#: guix-git/doc/guix.texi:28600 #, no-wrap msgid "OpenVPN" msgstr "OpenVPN" #. type: Plain text -#: guix-git/doc/guix.texi:28267 +#: guix-git/doc/guix.texi:28604 msgid "It provides a @emph{client} service for your machine to connect to a VPN, and a @emph{server} service for your machine to host a VPN@." msgstr "Il fournit un service @emph{client} pour que votre machine se connecte à un VPN et un service @emph{serveur} pour que votre machine héberge un VPN@." #. type: deffn -#: guix-git/doc/guix.texi:28268 +#: guix-git/doc/guix.texi:28605 #, no-wrap msgid "{Scheme Procedure} openvpn-client-service @" msgstr "{Procédure Scheme} openvpn-client-service @" #. type: deffn -#: guix-git/doc/guix.texi:28270 +#: guix-git/doc/guix.texi:28607 msgid "[#:config (openvpn-client-configuration)]" msgstr "[#:config (openvpn-client-configuration)]" #. type: deffn -#: guix-git/doc/guix.texi:28272 +#: guix-git/doc/guix.texi:28609 msgid "Return a service that runs @command{openvpn}, a VPN daemon, as a client." msgstr "Renvoie un service qui lance @command{openvpn}, un démon VPN, en tant que client." #. type: deffn -#: guix-git/doc/guix.texi:28274 +#: guix-git/doc/guix.texi:28611 #, no-wrap msgid "{Scheme Procedure} openvpn-server-service @" msgstr "{Procédure Scheme} openvpn-server-service @" #. type: deffn -#: guix-git/doc/guix.texi:28276 +#: guix-git/doc/guix.texi:28613 msgid "[#:config (openvpn-server-configuration)]" msgstr "[#:config (openvpn-server-configuration)]" #. type: deffn -#: guix-git/doc/guix.texi:28278 +#: guix-git/doc/guix.texi:28615 msgid "Return a service that runs @command{openvpn}, a VPN daemon, as a server." msgstr "Renvoie un service qui lance @command{openvpn}, un démon VPN, en tant que serveur." #. type: deffn -#: guix-git/doc/guix.texi:28280 +#: guix-git/doc/guix.texi:28617 msgid "Both can be run simultaneously." msgstr "Les deux services peuvent être lancés en même temps." #. type: Plain text -#: guix-git/doc/guix.texi:28285 +#: guix-git/doc/guix.texi:28622 msgid "Available @code{openvpn-client-configuration} fields are:" msgstr "Les champs de @code{openvpn-client-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:28286 +#: guix-git/doc/guix.texi:28623 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} package openvpn" msgstr "{paramètre de @code{openvpn-client-configuration}} package openvpn" #. type: deftypevr -#: guix-git/doc/guix.texi:28288 guix-git/doc/guix.texi:28443 +#: guix-git/doc/guix.texi:28625 guix-git/doc/guix.texi:28780 msgid "The OpenVPN package." msgstr "Le paquet OpenVPN." #. type: deftypevr -#: guix-git/doc/guix.texi:28291 +#: guix-git/doc/guix.texi:28628 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} string pid-file" msgstr "{paramètre de @code{openvpn-client-configuration}} string pid-file" #. type: deftypevr -#: guix-git/doc/guix.texi:28293 guix-git/doc/guix.texi:28448 +#: guix-git/doc/guix.texi:28630 guix-git/doc/guix.texi:28785 msgid "The OpenVPN pid file." msgstr "Le fichier de PID d'OpenVPN." #. type: deftypevr -#: guix-git/doc/guix.texi:28295 guix-git/doc/guix.texi:28450 +#: guix-git/doc/guix.texi:28632 guix-git/doc/guix.texi:28787 msgid "Defaults to @samp{\"/var/run/openvpn/openvpn.pid\"}." msgstr "La valeur par défaut est @samp{\"/var/run/openvpn/openvpn.pid\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28298 +#: guix-git/doc/guix.texi:28635 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} proto proto" msgstr "{paramètre de @code{openvpn-client-configuration}} proto proto" #. type: deftypevr -#: guix-git/doc/guix.texi:28301 guix-git/doc/guix.texi:28456 +#: guix-git/doc/guix.texi:28638 guix-git/doc/guix.texi:28793 msgid "The protocol (UDP or TCP) used to open a channel between clients and servers." msgstr "Le protocole (UDP ou TCP) utilisé pour ouvrir un canal entre les clients et les serveurs." #. type: deftypevr -#: guix-git/doc/guix.texi:28303 guix-git/doc/guix.texi:28458 +#: guix-git/doc/guix.texi:28640 guix-git/doc/guix.texi:28795 msgid "Defaults to @samp{udp}." msgstr "La valeur par défaut est @samp{udp}." #. type: deftypevr -#: guix-git/doc/guix.texi:28306 +#: guix-git/doc/guix.texi:28643 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} dev dev" msgstr "{paramètre de @code{openvpn-client-configuration}} dev dev" #. type: deftypevr -#: guix-git/doc/guix.texi:28308 guix-git/doc/guix.texi:28463 +#: guix-git/doc/guix.texi:28645 guix-git/doc/guix.texi:28800 msgid "The device type used to represent the VPN connection." msgstr "Le périphérique utilisé pour représenter la connexion VPN." #. type: deftypevr -#: guix-git/doc/guix.texi:28310 guix-git/doc/guix.texi:28465 +#: guix-git/doc/guix.texi:28647 guix-git/doc/guix.texi:28802 msgid "Defaults to @samp{tun}." msgstr "La valeur par défaut est @samp{tun}." #. type: Plain text -#: guix-git/doc/guix.texi:28316 guix-git/doc/guix.texi:28471 +#: guix-git/doc/guix.texi:28653 guix-git/doc/guix.texi:28808 msgid "If you do not have some of these files (eg.@: you use a username and password), you can disable any of the following three fields by setting it to @code{'disabled}." msgstr "Si vous n'avez pas certains de ces fichiers (p.@: ex.@: vous utilisez un nom d'utilisateur et un mot de passe), vous pouvez désactiver les trois champs suivants en leur passant @code{'disabled}." #. type: deftypevr -#: guix-git/doc/guix.texi:28317 +#: guix-git/doc/guix.texi:28654 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string ca" msgstr "{paramètre de @code{openvpn-client-configuration}} maybe-string ca" #. type: deftypevr -#: guix-git/doc/guix.texi:28319 guix-git/doc/guix.texi:28474 +#: guix-git/doc/guix.texi:28656 guix-git/doc/guix.texi:28811 msgid "The certificate authority to check connections against." msgstr "L'autorité de certification qui sert à vérifier les connexions." #. type: deftypevr -#: guix-git/doc/guix.texi:28321 guix-git/doc/guix.texi:28476 +#: guix-git/doc/guix.texi:28658 guix-git/doc/guix.texi:28813 msgid "Defaults to @samp{\"/etc/openvpn/ca.crt\"}." msgstr "La valeur par défaut est @samp{\"/etc/openvpn/ca.crt\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28324 +#: guix-git/doc/guix.texi:28661 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string cert" msgstr "{paramètre de @code{openvpn-client-configuration}} maybe-string cert" #. type: deftypevr -#: guix-git/doc/guix.texi:28327 guix-git/doc/guix.texi:28482 +#: guix-git/doc/guix.texi:28664 guix-git/doc/guix.texi:28819 msgid "The certificate of the machine the daemon is running on. It should be signed by the authority given in @code{ca}." msgstr "Le certificat de la machine sur laquelle tourne le démon. Il devrait être signé par l'autorité indiquée dans @code{ca}." #. type: deftypevr -#: guix-git/doc/guix.texi:28329 guix-git/doc/guix.texi:28484 +#: guix-git/doc/guix.texi:28666 guix-git/doc/guix.texi:28821 msgid "Defaults to @samp{\"/etc/openvpn/client.crt\"}." msgstr "La valeur par défaut est @samp{\"/etc/openvpn/client.crt\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28332 +#: guix-git/doc/guix.texi:28669 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string key" msgstr "{paramètre de @code{openvpn-client-configuration}} maybe-string key" #. type: deftypevr -#: guix-git/doc/guix.texi:28335 guix-git/doc/guix.texi:28490 +#: guix-git/doc/guix.texi:28672 guix-git/doc/guix.texi:28827 msgid "The key of the machine the daemon is running on. It must be the key whose certificate is @code{cert}." msgstr "La clef de la machine sur laquelle tourne le démon. Elle doit être la clef dont le certificat est donné dans @code{cert}." #. type: deftypevr -#: guix-git/doc/guix.texi:28337 guix-git/doc/guix.texi:28492 +#: guix-git/doc/guix.texi:28674 guix-git/doc/guix.texi:28829 msgid "Defaults to @samp{\"/etc/openvpn/client.key\"}." msgstr "La valeur par défaut est @samp{\"/etc/openvpn/client.key\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28340 +#: guix-git/doc/guix.texi:28677 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean comp-lzo?" msgstr "{paramètre de @code{openvpn-client-configuration}} boolean comp-lzo?" #. type: deftypevr -#: guix-git/doc/guix.texi:28342 guix-git/doc/guix.texi:28497 +#: guix-git/doc/guix.texi:28679 guix-git/doc/guix.texi:28834 msgid "Whether to use the lzo compression algorithm." msgstr "Indique s'il faut utiliser l'algorithme de compression lzo." #. type: deftypevr -#: guix-git/doc/guix.texi:28347 +#: guix-git/doc/guix.texi:28684 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean persist-key?" msgstr "{paramètre de @code{openvpn-client-configuration}} boolean persist-key?" #. type: deftypevr -#: guix-git/doc/guix.texi:28349 guix-git/doc/guix.texi:28504 +#: guix-git/doc/guix.texi:28686 guix-git/doc/guix.texi:28841 msgid "Don't re-read key files across SIGUSR1 or --ping-restart." msgstr "Ne pas relire les fichiers de clefs entre les SIGUSR1 et les --ping-restart." #. type: deftypevr -#: guix-git/doc/guix.texi:28354 +#: guix-git/doc/guix.texi:28691 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean persist-tun?" msgstr "{paramètre de @code{openvpn-client-configuration}} boolean persist-tun?" #. type: deftypevr -#: guix-git/doc/guix.texi:28357 guix-git/doc/guix.texi:28512 +#: guix-git/doc/guix.texi:28694 guix-git/doc/guix.texi:28849 msgid "Don't close and reopen TUN/TAP device or run up/down scripts across SIGUSR1 or --ping-restart restarts." msgstr "Ne pas fermer et rouvrir les périphériques TUN/TAP ou lancer de scripts de démarrage/d'arrêt entre les SIGUSR1 et les --ping-restart." #. type: deftypevr -#: guix-git/doc/guix.texi:28362 +#: guix-git/doc/guix.texi:28699 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean fast-io?" msgstr "{paramètre de @code{openvpn-client-configuration}} boolean fast-io?" #. type: deftypevr -#: guix-git/doc/guix.texi:28365 guix-git/doc/guix.texi:28520 +#: guix-git/doc/guix.texi:28702 guix-git/doc/guix.texi:28857 msgid "(Experimental) Optimize TUN/TAP/UDP I/O writes by avoiding a call to poll/epoll/select prior to the write operation." msgstr "(Expérimental) Optimise les écritures TUN/TAP/UDP en évitant d'appeler poll/epoll/select avant l'opération d'écriture." #. type: deftypevr -#: guix-git/doc/guix.texi:28369 +#: guix-git/doc/guix.texi:28706 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} number verbosity" msgstr "{paramètre de @code{openvpn-client-configuration}} number verbosity" #. type: deftypevr -#: guix-git/doc/guix.texi:28371 guix-git/doc/guix.texi:28526 +#: guix-git/doc/guix.texi:28708 guix-git/doc/guix.texi:28863 msgid "Verbosity level." msgstr "Niveau de verbosité." #. type: deftypevr -#: guix-git/doc/guix.texi:28373 guix-git/doc/guix.texi:28528 -#: guix-git/doc/guix.texi:30264 guix-git/doc/guix.texi:30488 +#: guix-git/doc/guix.texi:28710 guix-git/doc/guix.texi:28865 +#: guix-git/doc/guix.texi:30629 guix-git/doc/guix.texi:30853 msgid "Defaults to @samp{3}." msgstr "La valeur par défaut est @samp{3}." #. type: deftypevr -#: guix-git/doc/guix.texi:28376 +#: guix-git/doc/guix.texi:28713 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} tls-auth-client tls-auth" msgstr "{paramètre de @code{openvpn-client-configuration}} tls-auth-client tls-auth" #. type: deftypevr -#: guix-git/doc/guix.texi:28379 guix-git/doc/guix.texi:28534 +#: guix-git/doc/guix.texi:28716 guix-git/doc/guix.texi:28871 msgid "Add an additional layer of HMAC authentication on top of the TLS control channel to protect against DoS attacks." msgstr "Ajoute une couche d'authentification HMAC supplémentaire au dessus du canal de contrôle TLS pour se protéger contre les attaques DoS." #. type: deftypevr -#: guix-git/doc/guix.texi:28384 +#: guix-git/doc/guix.texi:28721 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string auth-user-pass" msgstr "{paramètre de @code{openvpn-client-configuration}} maybe-string auth-user-pass" #. type: deftypevr -#: guix-git/doc/guix.texi:28388 +#: guix-git/doc/guix.texi:28725 msgid "Authenticate with server using username/password. The option is a file containing username/password on 2 lines. Do not use a file-like object as it would be added to the store and readable by any user." msgstr "S'authentifie avec le serveur en utilisant le nom d'utilisateur et le mot de passe. L'option est un fichier contenant le nom d'utilisateur et le mot de passe sur deux lignes. N'utilisez pas un objet simili-fichier car il serait ajouté au dépôt et serait lisible pour n'importe quel utilisateur." #. type: deftypevr -#: guix-git/doc/guix.texi:28390 +#: guix-git/doc/guix.texi:28727 msgid "Defaults to @samp{'disabled}." msgstr "La valeur par défaut est @samp{'disabled}." #. type: deftypevr -#: guix-git/doc/guix.texi:28392 +#: guix-git/doc/guix.texi:28729 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} key-usage verify-key-usage?" msgstr "{paramètre de @code{openvpn-client-configuration}} key-usage verify-key-usage?" #. type: deftypevr -#: guix-git/doc/guix.texi:28394 +#: guix-git/doc/guix.texi:28731 msgid "Whether to check the server certificate has server usage extension." msgstr "Indique s'il faut vérifier que le certificat du serveur a l'extension d'utilisation." #. type: deftypevr -#: guix-git/doc/guix.texi:28399 +#: guix-git/doc/guix.texi:28736 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} bind bind?" msgstr "{paramètre de @code{openvpn-client-configuration}} bind bind?" #. type: deftypevr -#: guix-git/doc/guix.texi:28401 +#: guix-git/doc/guix.texi:28738 msgid "Bind to a specific local port number." msgstr "Se lier à un port spécifique." #. type: deftypevr -#: guix-git/doc/guix.texi:28406 +#: guix-git/doc/guix.texi:28743 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} resolv-retry resolv-retry?" msgstr "{paramètre de @code{openvpn-client-configuration}} resolv-retry resolv-retry?" #. type: deftypevr -#: guix-git/doc/guix.texi:28408 +#: guix-git/doc/guix.texi:28745 msgid "Retry resolving server address." msgstr "Réessayer de résoudre l'adresse du serveur." #. type: deftypevr -#: guix-git/doc/guix.texi:28413 +#: guix-git/doc/guix.texi:28750 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} openvpn-remote-list remote" msgstr "{paramètre de @code{openvpn-client-configuration}} openvpn-remote-list remote" #. type: deftypevr -#: guix-git/doc/guix.texi:28415 +#: guix-git/doc/guix.texi:28752 msgid "A list of remote servers to connect to." msgstr "Une liste de serveurs distants sur lesquels se connecter." #. type: deftypevr -#: guix-git/doc/guix.texi:28419 +#: guix-git/doc/guix.texi:28756 msgid "Available @code{openvpn-remote-configuration} fields are:" msgstr "Les champs de @code{openvpn-remote-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:28420 +#: guix-git/doc/guix.texi:28757 #, no-wrap msgid "{@code{openvpn-remote-configuration} parameter} string name" msgstr "{paramètre de @code{openvpn-remote-configuration}} string name" #. type: deftypevr -#: guix-git/doc/guix.texi:28422 +#: guix-git/doc/guix.texi:28759 msgid "Server name." msgstr "Nom du serveur." #. type: deftypevr -#: guix-git/doc/guix.texi:28424 +#: guix-git/doc/guix.texi:28761 msgid "Defaults to @samp{\"my-server\"}." msgstr "La valeur par défaut est @samp{\"my-server\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28427 +#: guix-git/doc/guix.texi:28764 #, no-wrap msgid "{@code{openvpn-remote-configuration} parameter} number port" msgstr "{paramètre de @code{openvpn-remote-configuration}} number port" #. type: deftypevr -#: guix-git/doc/guix.texi:28429 +#: guix-git/doc/guix.texi:28766 msgid "Port number the server listens to." msgstr "Numéro de port sur lequel écoute le serveur." #. type: deftypevr -#: guix-git/doc/guix.texi:28431 guix-git/doc/guix.texi:28543 +#: guix-git/doc/guix.texi:28768 guix-git/doc/guix.texi:28880 msgid "Defaults to @samp{1194}." msgstr "La valeur par défaut est @samp{1194}." #. type: Plain text -#: guix-git/doc/guix.texi:28440 +#: guix-git/doc/guix.texi:28777 msgid "Available @code{openvpn-server-configuration} fields are:" msgstr "Les champs de @code{openvpn-server-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:28441 +#: guix-git/doc/guix.texi:28778 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} package openvpn" msgstr "{paramètre de @code{openvpn-server-configuration}} package openvpn" #. type: deftypevr -#: guix-git/doc/guix.texi:28446 +#: guix-git/doc/guix.texi:28783 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string pid-file" msgstr "{paramètre de @code{openvpn-server-configuration}} string pid-file" #. type: deftypevr -#: guix-git/doc/guix.texi:28453 +#: guix-git/doc/guix.texi:28790 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} proto proto" msgstr "{paramètre de @code{openvpn-server-configuration}} proto proto" #. type: deftypevr -#: guix-git/doc/guix.texi:28461 +#: guix-git/doc/guix.texi:28798 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} dev dev" msgstr "{paramètre de @code{openvpn-server-configuration}} dev dev" #. type: deftypevr -#: guix-git/doc/guix.texi:28472 +#: guix-git/doc/guix.texi:28809 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string ca" msgstr "{paramètre de @code{openvpn-server-configuration}} maybe-string ca" #. type: deftypevr -#: guix-git/doc/guix.texi:28479 +#: guix-git/doc/guix.texi:28816 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string cert" msgstr "{paramètre de @code{openvpn-server-configuration}} maybe-string cert" #. type: deftypevr -#: guix-git/doc/guix.texi:28487 +#: guix-git/doc/guix.texi:28824 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string key" msgstr "{paramètre de @code{openvpn-server-configuration}} maybe-string key" #. type: deftypevr -#: guix-git/doc/guix.texi:28495 +#: guix-git/doc/guix.texi:28832 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean comp-lzo?" msgstr "{paramètre de @code{openvpn-server-configuration}} boolean comp-lzo?" #. type: deftypevr -#: guix-git/doc/guix.texi:28502 +#: guix-git/doc/guix.texi:28839 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean persist-key?" msgstr "{paramètre de @code{openvpn-server-configuration}} boolean persist-key?" #. type: deftypevr -#: guix-git/doc/guix.texi:28509 +#: guix-git/doc/guix.texi:28846 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean persist-tun?" msgstr "{paramètre de @code{openvpn-server-configuration}} boolean persist-tun?" #. type: deftypevr -#: guix-git/doc/guix.texi:28517 +#: guix-git/doc/guix.texi:28854 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean fast-io?" msgstr "{paramètre de @code{openvpn-server-configuration}} boolean fast-io?" #. type: deftypevr -#: guix-git/doc/guix.texi:28524 +#: guix-git/doc/guix.texi:28861 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number verbosity" msgstr "{paramètre de @code{openvpn-server-configuration}} number verbosity" #. type: deftypevr -#: guix-git/doc/guix.texi:28531 +#: guix-git/doc/guix.texi:28868 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} tls-auth-server tls-auth" msgstr "{paramètre de @code{openvpn-server-configuration}} tls-auth-server tls-auth" #. type: deftypevr -#: guix-git/doc/guix.texi:28539 +#: guix-git/doc/guix.texi:28876 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number port" msgstr "{paramètre de @code{openvpn-server-configuration}} number port" #. type: deftypevr -#: guix-git/doc/guix.texi:28541 +#: guix-git/doc/guix.texi:28878 msgid "Specifies the port number on which the server listens." msgstr "Spécifie le numéro de port sur lequel les serveurs écoutent." #. type: deftypevr -#: guix-git/doc/guix.texi:28546 +#: guix-git/doc/guix.texi:28883 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} ip-mask server" msgstr "{paramètre de @code{openvpn-server-configuration}} ip-mask server" #. type: deftypevr -#: guix-git/doc/guix.texi:28548 +#: guix-git/doc/guix.texi:28885 msgid "An ip and mask specifying the subnet inside the virtual network." msgstr "Une ip et un masque de sous-réseau spécifiant le sous-réseau dans le réseau virtuel." #. type: deftypevr -#: guix-git/doc/guix.texi:28550 +#: guix-git/doc/guix.texi:28887 msgid "Defaults to @samp{\"10.8.0.0 255.255.255.0\"}." msgstr "La valeur par défaut est @samp{\"10.8.0.0 255.255.255.0\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28553 +#: guix-git/doc/guix.texi:28890 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} cidr6 server-ipv6" msgstr "{paramètre de @code{openvpn-server-configuration}} cidr6 server-ipv6" #. type: deftypevr -#: guix-git/doc/guix.texi:28555 +#: guix-git/doc/guix.texi:28892 msgid "A CIDR notation specifying the IPv6 subnet inside the virtual network." msgstr "Une notation CIDR pour spécifier le sous-réseau IPv6 dans le réseau virtuel." #. type: deftypevr -#: guix-git/doc/guix.texi:28560 +#: guix-git/doc/guix.texi:28897 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string dh" msgstr "{paramètre de @code{openvpn-server-configuration}} string dh" #. type: deftypevr -#: guix-git/doc/guix.texi:28562 +#: guix-git/doc/guix.texi:28899 msgid "The Diffie-Hellman parameters file." msgstr "Le fichier de paramètres Diffie-Hellman." #. type: deftypevr -#: guix-git/doc/guix.texi:28564 +#: guix-git/doc/guix.texi:28901 msgid "Defaults to @samp{\"/etc/openvpn/dh2048.pem\"}." msgstr "La valeur par défaut est @samp{\"/etc/openvpn/dh2048.pem\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28567 +#: guix-git/doc/guix.texi:28904 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string ifconfig-pool-persist" msgstr "{paramètre de @code{openvpn-server-configuration}} string ifconfig-pool-persist" #. type: deftypevr -#: guix-git/doc/guix.texi:28569 +#: guix-git/doc/guix.texi:28906 msgid "The file that records client IPs." msgstr "Le fichier qui enregistre les IP des clients." #. type: deftypevr -#: guix-git/doc/guix.texi:28571 +#: guix-git/doc/guix.texi:28908 msgid "Defaults to @samp{\"/etc/openvpn/ipp.txt\"}." msgstr "La valeur par défaut est @samp{\"/etc/openvpn/ipp.txt\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28574 +#: guix-git/doc/guix.texi:28911 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} gateway redirect-gateway?" msgstr "{paramètre de @code{openvpn-server-configuration}} gateway redirect-gateway?" #. type: deftypevr -#: guix-git/doc/guix.texi:28576 +#: guix-git/doc/guix.texi:28913 msgid "When true, the server will act as a gateway for its clients." msgstr "Lorsque la valeur est vraie, le serveur agira comme une passerelle pour ses clients." #. type: deftypevr -#: guix-git/doc/guix.texi:28581 +#: guix-git/doc/guix.texi:28918 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean client-to-client?" msgstr "{paramètre de @code{openvpn-server-configuration}} boolean client-to-client?" #. type: deftypevr -#: guix-git/doc/guix.texi:28583 +#: guix-git/doc/guix.texi:28920 msgid "When true, clients are allowed to talk to each other inside the VPN." msgstr "Lorsque la valeur est vraie, les clients sont autorisés à se parler entre eux dans le VPN." #. type: deftypevr -#: guix-git/doc/guix.texi:28588 +#: guix-git/doc/guix.texi:28925 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} keepalive keepalive" msgstr "{paramètre de @code{openvpn-server-configuration}} keepalive keepalive" #. type: deftypevr -#: guix-git/doc/guix.texi:28594 +#: guix-git/doc/guix.texi:28931 msgid "Causes ping-like messages to be sent back and forth over the link so that each side knows when the other side has gone down. @code{keepalive} requires a pair. The first element is the period of the ping sending, and the second element is the timeout before considering the other side down." msgstr "Fait que des messages de ping sont envoyés régulièrement dans les deux sens pour que chaque côté sache quand l'autre n'est plus disponible. @code{keepalive} a besoin d'une paire. Le premier élément est la période d'envoi du ping, et le second élément est le délai d'attente avant de considéré que l'autre côté n'est plus disponible." #. type: deftypevr -#: guix-git/doc/guix.texi:28597 +#: guix-git/doc/guix.texi:28934 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number max-clients" msgstr "{paramètre de @code{openvpn-server-configuration}} number max-clients" #. type: deftypevr -#: guix-git/doc/guix.texi:28599 +#: guix-git/doc/guix.texi:28936 msgid "The maximum number of clients." msgstr "Le nombre maximum de clients." #. type: deftypevr -#: guix-git/doc/guix.texi:28604 +#: guix-git/doc/guix.texi:28941 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string status" msgstr "{paramètre de @code{openvpn-server-configuration}} string status" #. type: deftypevr -#: guix-git/doc/guix.texi:28607 +#: guix-git/doc/guix.texi:28944 msgid "The status file. This file shows a small report on current connection. It is truncated and rewritten every minute." msgstr "Le fichier de statut. Ce fichier montre un court rapport sur les connexions actuelles. Il est tronqué et réécrit toutes les minutes." #. type: deftypevr -#: guix-git/doc/guix.texi:28609 +#: guix-git/doc/guix.texi:28946 msgid "Defaults to @samp{\"/var/run/openvpn/status\"}." msgstr "La valeur par défaut est @samp{\"/var/run/openvpn/status\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28612 +#: guix-git/doc/guix.texi:28949 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} openvpn-ccd-list client-config-dir" msgstr "{paramètre de @code{openvpn-server-configuration}} openvpn-ccd-list client-config-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:28614 +#: guix-git/doc/guix.texi:28951 msgid "The list of configuration for some clients." msgstr "La liste des configuration pour certains clients." #. type: deftypevr -#: guix-git/doc/guix.texi:28618 +#: guix-git/doc/guix.texi:28955 msgid "Available @code{openvpn-ccd-configuration} fields are:" msgstr "Les champs de @code{openvpn-ccd-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:28619 +#: guix-git/doc/guix.texi:28956 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} string name" msgstr "{paramètre de @code{openvpn-ccd-configuration}} string name" #. type: deftypevr -#: guix-git/doc/guix.texi:28621 +#: guix-git/doc/guix.texi:28958 msgid "Client name." msgstr "Nom du client." #. type: deftypevr -#: guix-git/doc/guix.texi:28623 +#: guix-git/doc/guix.texi:28960 msgid "Defaults to @samp{\"client\"}." msgstr "La valeur par défaut est @samp{\"client\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:28626 +#: guix-git/doc/guix.texi:28963 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} ip-mask iroute" msgstr "{paramètre de @code{openvpn-ccd-configuration}} ip-mask iroute" #. type: deftypevr -#: guix-git/doc/guix.texi:28628 +#: guix-git/doc/guix.texi:28965 msgid "Client own network" msgstr "Le réseau du client" #. type: deftypevr -#: guix-git/doc/guix.texi:28633 +#: guix-git/doc/guix.texi:28970 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} ip-mask ifconfig-push" msgstr "{paramètre de @code{openvpn-ccd-configuration}} ip-mask ifconfig-push" #. type: deftypevr -#: guix-git/doc/guix.texi:28635 +#: guix-git/doc/guix.texi:28972 msgid "Client VPN IP." msgstr "IP du client sur le VPN." #. type: subheading -#: guix-git/doc/guix.texi:28644 +#: guix-git/doc/guix.texi:28981 #, no-wrap msgid "strongSwan" msgstr "strongSwan" #. type: Plain text -#: guix-git/doc/guix.texi:28648 +#: guix-git/doc/guix.texi:28985 msgid "Currently, the strongSwan service only provides legacy-style configuration with @file{ipsec.conf} and @file{ipsec.secrets} files." msgstr "Pour l'instant, le service @code{strongSwan} fournit seulement une configuration héritée des version précédentes avec des fichiers @file{ipsec.conf} et @file{ipsec.secrets}." #. type: defvr -#: guix-git/doc/guix.texi:28649 +#: guix-git/doc/guix.texi:28986 #, no-wrap msgid "{Scheme Variable} strongswan-service-type" msgstr "{Variable Scheme} strongswan-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28653 +#: guix-git/doc/guix.texi:28990 msgid "A service type for configuring strongSwan for IPsec @acronym{VPN, Virtual Private Networking}. Its value must be a @code{strongswan-configuration} record as in this example:" msgstr "Un type de service pour configurer strongSwan pour un @acronym{VPN, réseau privé virtuel} IPsec. Sa valeur doit être un enregistrement @code{strongswan-configuration} comme dans cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:28659 +#: guix-git/doc/guix.texi:28996 #, no-wrap msgid "" "(service strongswan-service-type\n" @@ -54082,68 +54770,68 @@ msgstr "" " (ipsec-secrets \"/etc/ipsec.secrets\")))\n" #. type: deftp -#: guix-git/doc/guix.texi:28663 +#: guix-git/doc/guix.texi:29000 #, no-wrap msgid "{Data Type} strongswan-configuration" msgstr "{Type de données} strongswan-configuration" #. type: deftp -#: guix-git/doc/guix.texi:28665 +#: guix-git/doc/guix.texi:29002 msgid "Data type representing the configuration of the StrongSwan service." msgstr "Le type de données représentant la configuration du service StrongSwan." #. type: code{#1} -#: guix-git/doc/guix.texi:28667 +#: guix-git/doc/guix.texi:29004 #, no-wrap msgid "strongswan" msgstr "strongswan" #. type: table -#: guix-git/doc/guix.texi:28669 +#: guix-git/doc/guix.texi:29006 msgid "The strongSwan package to use for this service." msgstr "Le paquet strongSwan à utiliser pour ce service." #. type: item -#: guix-git/doc/guix.texi:28670 +#: guix-git/doc/guix.texi:29007 #, no-wrap msgid "@code{ipsec-conf} (default: @code{#f})" msgstr "@code{ipsec-conf} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28673 +#: guix-git/doc/guix.texi:29010 msgid "The file name of your @file{ipsec.conf}. If not @code{#f}, then this and @code{ipsec-secrets} must both be strings." msgstr "Le nom de fichier de votre @file{ipsec.conf}. Si différent de @code{#f}, alors cette valeur et @code{ipsec-secrets} doivent toutes deux être des chaînes de caractères." #. type: item -#: guix-git/doc/guix.texi:28674 +#: guix-git/doc/guix.texi:29011 #, no-wrap msgid "@code{ipsec-secrets} (default @code{#f})" msgstr "@code{ipsec-secrets} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28677 +#: guix-git/doc/guix.texi:29014 msgid "The file name of your @file{ipsec.secrets}. If not @code{#f}, then this and @code{ipsec-conf} must both be strings." msgstr "Le nom de fichier de votre @file{ipsec.secrets}. Si différent de @code{#f}, alors cette valeur et @code{ipsec-conf} doivent toutes deux être des chaînes de caractères." #. type: subsubheading -#: guix-git/doc/guix.texi:28681 +#: guix-git/doc/guix.texi:29018 #, no-wrap msgid "Wireguard" msgstr "Wireguard" #. type: defvr -#: guix-git/doc/guix.texi:28683 +#: guix-git/doc/guix.texi:29020 #, no-wrap msgid "{Scheme Variable} wireguard-service-type" msgstr "{Variable Scheme} wireguard-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28686 +#: guix-git/doc/guix.texi:29023 msgid "A service type for a Wireguard tunnel interface. Its value must be a @code{wireguard-configuration} record as in this example:" msgstr "Un type de service pour une interface de tunnel Wireguard. Sa valeur doit être un enregistrement @code{wireguard-configuration} comme dans cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:28697 +#: guix-git/doc/guix.texi:29034 #, no-wrap msgid "" "(service wireguard-service-type\n" @@ -54167,251 +54855,250 @@ msgstr "" " (allowed-ips '(\"10.0.0.2/32\")))))))\n" #. type: deftp -#: guix-git/doc/guix.texi:28701 +#: guix-git/doc/guix.texi:29038 #, no-wrap msgid "{Data Type} wireguard-configuration" msgstr "{Type de données} wireguard-configuration" #. type: deftp -#: guix-git/doc/guix.texi:28703 +#: guix-git/doc/guix.texi:29040 msgid "Data type representing the configuration of the Wireguard service." msgstr "Le type de données représentant la configuration du service Wireguard." #. type: code{#1} -#: guix-git/doc/guix.texi:28705 +#: guix-git/doc/guix.texi:29042 #, no-wrap msgid "wireguard" msgstr "wireguard" #. type: table -#: guix-git/doc/guix.texi:28707 +#: guix-git/doc/guix.texi:29044 msgid "The wireguard package to use for this service." msgstr "Le paquet wireguard à utiliser pour ce service." #. type: item -#: guix-git/doc/guix.texi:28708 +#: guix-git/doc/guix.texi:29045 #, no-wrap msgid "@code{interface} (default: @code{\"wg0\"})" msgstr "@code{interface} (par défaut : @code{\"wg0\"})" #. type: table -#: guix-git/doc/guix.texi:28710 +#: guix-git/doc/guix.texi:29047 msgid "The interface name for the VPN." msgstr "Le nom d'interface pour le VPN." #. type: item -#: guix-git/doc/guix.texi:28711 +#: guix-git/doc/guix.texi:29048 #, no-wrap msgid "@code{addresses} (default: @code{'(\"10.0.0.1/32\")})" msgstr "@code{addresses} (par défaut : @code{\"10.0.01/32\"})" #. type: table -#: guix-git/doc/guix.texi:28713 +#: guix-git/doc/guix.texi:29050 msgid "The IP addresses to be assigned to the above interface." msgstr "Les adresses IP à assigner à l'interface ci-dessus." #. type: item -#: guix-git/doc/guix.texi:28714 +#: guix-git/doc/guix.texi:29051 #, no-wrap msgid "@code{port} (default: @code{51820})" msgstr "@code{port} (par défaut : @code{51820})" #. type: table -#: guix-git/doc/guix.texi:28716 +#: guix-git/doc/guix.texi:29053 msgid "The port on which to listen for incoming connections." msgstr "Le port sur lequel écouter les connexions entrantes." #. type: item -#: guix-git/doc/guix.texi:28717 -#, fuzzy, no-wrap -#| msgid "@code{id} (default: @code{#f})" +#: guix-git/doc/guix.texi:29054 +#, no-wrap msgid "@code{dns} (default: @code{#f})" -msgstr "@code{id} (par défaut : @code{#f})" +msgstr "@code{dns} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28719 +#: guix-git/doc/guix.texi:29056 msgid "The DNS server(s) to announce to VPN clients via DHCP." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28720 +#: guix-git/doc/guix.texi:29057 #, no-wrap msgid "@code{private-key} (default: @code{\"/etc/wireguard/private.key\"})" msgstr "@code{private-key} (par défaut : @code{\"/etc/wireguard/private.key\"})" #. type: table -#: guix-git/doc/guix.texi:28723 +#: guix-git/doc/guix.texi:29060 msgid "The private key file for the interface. It is automatically generated if the file does not exist." msgstr "Le fichier de clé privée pour l'interface. Il est automatiquement généré si le fichier n'existe pas." #. type: item -#: guix-git/doc/guix.texi:28724 +#: guix-git/doc/guix.texi:29061 #, no-wrap msgid "@code{peers} (default: @code{'()})" msgstr "@code{peers} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:28727 +#: guix-git/doc/guix.texi:29064 msgid "The authorized peers on this interface. This is a list of @var{wireguard-peer} records." msgstr "Les pairs autorisés sur cette interface. C'est une liste d'enregistrements @var{wireguard-peer}." #. type: deftp -#: guix-git/doc/guix.texi:28731 +#: guix-git/doc/guix.texi:29068 #, no-wrap msgid "{Data Type} wireguard-peer" msgstr "{Type de données} wireguard-peer" #. type: deftp -#: guix-git/doc/guix.texi:28733 +#: guix-git/doc/guix.texi:29070 msgid "Data type representing a Wireguard peer attached to a given interface." msgstr "Type de données représentant un pair Wireguard attaché à une interface donnée." #. type: table -#: guix-git/doc/guix.texi:28737 +#: guix-git/doc/guix.texi:29074 msgid "The peer name." msgstr "Le nom du pair." #. type: item -#: guix-git/doc/guix.texi:28738 +#: guix-git/doc/guix.texi:29075 #, no-wrap msgid "@code{endpoint} (default: @code{#f})" msgstr "@code{endpoint} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28741 +#: guix-git/doc/guix.texi:29078 msgid "The optional endpoint for the peer, such as @code{\"demo.wireguard.com:51820\"}." msgstr "Le point d'entrée facultatif du pair, comme @code{\"demo.wireguard.com:51820\"}." #. type: itemx -#: guix-git/doc/guix.texi:28742 guix-git/doc/guix.texi:29137 -#: guix-git/doc/guix.texi:29174 guix-git/doc/guix.texi:34305 +#: guix-git/doc/guix.texi:29079 guix-git/doc/guix.texi:29474 +#: guix-git/doc/guix.texi:29511 guix-git/doc/guix.texi:34744 #, no-wrap msgid "public-key" msgstr "public-key" #. type: table -#: guix-git/doc/guix.texi:28744 +#: guix-git/doc/guix.texi:29081 msgid "The peer public-key represented as a base64 string." msgstr "La clé publique du pair, représentée par une chaîne en base64." #. type: code{#1} -#: guix-git/doc/guix.texi:28745 +#: guix-git/doc/guix.texi:29082 #, no-wrap msgid "allowed-ips" msgstr "allowed-ips" #. type: table -#: guix-git/doc/guix.texi:28748 +#: guix-git/doc/guix.texi:29085 msgid "A list of IP addresses from which incoming traffic for this peer is allowed and to which incoming traffic for this peer is directed." msgstr "Une liste d'adresses IP à partir desquelles le trafic entrant pour ce pair est autorisé et vers lesquelles le trafic à destination de ce pair est dirigé." #. type: item -#: guix-git/doc/guix.texi:28749 +#: guix-git/doc/guix.texi:29086 #, no-wrap msgid "@code{keep-alive} (default: @code{#f})" msgstr "@code{keep-alive} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28754 +#: guix-git/doc/guix.texi:29091 msgid "An optional time interval in seconds. A packet will be sent to the server endpoint once per time interval. This helps receiving incoming connections from this peer when you are behind a NAT or a firewall." msgstr "Une durée en seconde facultative. Un paquet sera régulièrement envoyé au serveur après cette durée. Cela aide à recevoir les connexions entrantes de ce pair si vous êtes derrière un NAT ou un pare-feu." #. type: cindex -#: guix-git/doc/guix.texi:28760 +#: guix-git/doc/guix.texi:29097 #, no-wrap msgid "NFS" msgstr "NFS" #. type: Plain text -#: guix-git/doc/guix.texi:28765 +#: guix-git/doc/guix.texi:29102 msgid "The @code{(gnu services nfs)} module provides the following services, which are most commonly used in relation to mounting or exporting directory trees as @dfn{network file systems} (NFS)." msgstr "Le module @code{(gnu services nfs)} fournit les services suivants, qui sont tous utilisés pour monter et exporter des arborescences de répertoires en @dfn{network file systems} (NFS)." #. type: Plain text -#: guix-git/doc/guix.texi:28769 +#: guix-git/doc/guix.texi:29106 msgid "While it is possible to use the individual components that together make up a Network File System service, we recommended to configure an NFS server with the @code{nfs-service-type}." msgstr "Bien qu'il soit possible d'utiliser des composants individuels qui forment ensemble un service de système de fichiers en réseau, nous recommandons de configurer un serveur NFS avec @code{nfs-service-type}." #. type: subsubheading -#: guix-git/doc/guix.texi:28770 +#: guix-git/doc/guix.texi:29107 #, no-wrap msgid "NFS Service" msgstr "Services NFS" #. type: cindex -#: guix-git/doc/guix.texi:28771 +#: guix-git/doc/guix.texi:29108 #, no-wrap msgid "NFS, server" msgstr "NFS, serveur" #. type: Plain text -#: guix-git/doc/guix.texi:28776 +#: guix-git/doc/guix.texi:29113 msgid "The NFS service takes care of setting up all NFS component services, kernel configuration file systems, and installs configuration files in the locations that NFS expects." msgstr "Le service NFS s'occupe de paramétrer tous les services composant NFS, les systèmes de fichiers de configuration du noyau et installe les fichiers de configuration aux endroit attendus par NFS." #. type: defvr -#: guix-git/doc/guix.texi:28777 +#: guix-git/doc/guix.texi:29114 #, no-wrap msgid "{Scheme Variable} nfs-service-type" msgstr "{Variable Scheme} nfs-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28779 +#: guix-git/doc/guix.texi:29116 msgid "A service type for a complete NFS server." msgstr "Un type de service pour un serveur NFS complet." #. type: deftp -#: guix-git/doc/guix.texi:28781 +#: guix-git/doc/guix.texi:29118 #, no-wrap msgid "{Data Type} nfs-configuration" msgstr "{Type de données} nfs-configuration" #. type: deftp -#: guix-git/doc/guix.texi:28784 +#: guix-git/doc/guix.texi:29121 msgid "This data type represents the configuration of the NFS service and all of its subsystems." msgstr "Ce type de données représente la configuration d'un service NFS et de tous ses sous-systèmes." #. type: deftp -#: guix-git/doc/guix.texi:28786 +#: guix-git/doc/guix.texi:29123 msgid "It has the following parameters:" msgstr "Il prend les paramètres suivants :" #. type: item -#: guix-git/doc/guix.texi:28787 guix-git/doc/guix.texi:28912 -#: guix-git/doc/guix.texi:28937 +#: guix-git/doc/guix.texi:29124 guix-git/doc/guix.texi:29249 +#: guix-git/doc/guix.texi:29274 #, no-wrap msgid "@code{nfs-utils} (default: @code{nfs-utils})" msgstr "@code{nfs-utils} (par défaut : @code{nfs-utils})" #. type: table -#: guix-git/doc/guix.texi:28789 +#: guix-git/doc/guix.texi:29126 msgid "The nfs-utils package to use." msgstr "Le paquet nfs-utils à utiliser." #. type: item -#: guix-git/doc/guix.texi:28790 +#: guix-git/doc/guix.texi:29127 #, no-wrap msgid "@code{nfs-versions} (default: @code{'(\"4.2\" \"4.1\" \"4.0\")})" msgstr "@code{nfs-versions} (par défaut : @code{'(\"4.2\" \"4.1\" \"4.0\")})" #. type: table -#: guix-git/doc/guix.texi:28793 +#: guix-git/doc/guix.texi:29130 msgid "If a list of string values is provided, the @command{rpc.nfsd} daemon will be limited to supporting the given versions of the NFS protocol." msgstr "Si une liste de chaines est fournie, le démon @command{rpc.nfsd} sera limité à la prise en charge des versions données du protocole NFS." #. type: item -#: guix-git/doc/guix.texi:28794 +#: guix-git/doc/guix.texi:29131 #, no-wrap msgid "@code{exports} (default: @code{'()})" msgstr "@code{exports} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:28799 +#: guix-git/doc/guix.texi:29136 msgid "This is a list of directories the NFS server should export. Each entry is a list consisting of two elements: a directory name and a string containing all options. This is an example in which the directory @file{/export} is served to all NFS clients as a read-only share:" msgstr "C'est une liste de répertoires que le serveur NFS devrait exporter. Chaque entrée est une liste consistant en deux éléments : un nom de répertoire et une chaine de caractères contenant toutes les options. Voici un exemple dans lequel le répertoire @file{/export} est servi à tous les clients en lecture-seule :" #. type: lisp -#: guix-git/doc/guix.texi:28805 +#: guix-git/doc/guix.texi:29142 #, no-wrap msgid "" "(nfs-configuration\n" @@ -54425,384 +55112,384 @@ msgstr "" " \"*(ro,insecure,no_subtree_check,crossmnt,fsid=0)\"))))\n" #. type: item -#: guix-git/doc/guix.texi:28807 +#: guix-git/doc/guix.texi:29144 #, no-wrap msgid "@code{rpcmountd-port} (default: @code{#f})" msgstr "@code{rpcmountd-port} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28809 +#: guix-git/doc/guix.texi:29146 msgid "The network port that the @command{rpc.mountd} daemon should use." msgstr "Le port réseau que le démon @command{rpc.mountd} devrait utiliser." #. type: item -#: guix-git/doc/guix.texi:28810 +#: guix-git/doc/guix.texi:29147 #, no-wrap msgid "@code{rpcstatd-port} (default: @code{#f})" msgstr "@code{rpcstatd-port} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28812 +#: guix-git/doc/guix.texi:29149 msgid "The network port that the @command{rpc.statd} daemon should use." msgstr "Le port réseau que le démon @command{rpc.statd} devrait utiliser." #. type: item -#: guix-git/doc/guix.texi:28813 guix-git/doc/guix.texi:28861 +#: guix-git/doc/guix.texi:29150 guix-git/doc/guix.texi:29198 #, no-wrap msgid "@code{rpcbind} (default: @code{rpcbind})" msgstr "@code{rpcbind} (par défaut : @code{rpcbind})" #. type: table -#: guix-git/doc/guix.texi:28815 guix-git/doc/guix.texi:28863 +#: guix-git/doc/guix.texi:29152 guix-git/doc/guix.texi:29200 msgid "The rpcbind package to use." msgstr "Le paquet rpcbind à utiliser." #. type: item -#: guix-git/doc/guix.texi:28816 +#: guix-git/doc/guix.texi:29153 #, no-wrap msgid "@code{idmap-domain} (default: @code{\"localdomain\"})" msgstr "@code{idmap-domain} (par défaut : @code{\"localdomain\"})" #. type: table -#: guix-git/doc/guix.texi:28818 +#: guix-git/doc/guix.texi:29155 msgid "The local NFSv4 domain name." msgstr "Le nom de domaine NFSv4 local." #. type: item -#: guix-git/doc/guix.texi:28819 +#: guix-git/doc/guix.texi:29156 #, no-wrap msgid "@code{nfsd-port} (default: @code{2049})" msgstr "@code{nfsd-port} (par défaut : @code{2049})" #. type: table -#: guix-git/doc/guix.texi:28821 +#: guix-git/doc/guix.texi:29158 msgid "The network port that the @command{nfsd} daemon should use." msgstr "Le port réseau que le démon @command{nfsd} devrait utiliser." #. type: item -#: guix-git/doc/guix.texi:28822 +#: guix-git/doc/guix.texi:29159 #, no-wrap msgid "@code{nfsd-threads} (default: @code{8})" msgstr "@code{nfsd-threads} (par défaut : @code{8})" #. type: table -#: guix-git/doc/guix.texi:28824 +#: guix-git/doc/guix.texi:29161 msgid "The number of threads used by the @command{nfsd} daemon." msgstr "Le nombre de thread à utiliser par le démon @command{nfsd}." #. type: item -#: guix-git/doc/guix.texi:28825 +#: guix-git/doc/guix.texi:29162 #, no-wrap msgid "@code{nfsd-tcp?} (default: @code{#t})" msgstr "@code{nfsd-tcp?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:28827 +#: guix-git/doc/guix.texi:29164 msgid "Whether the @command{nfsd} daemon should listen on a TCP socket." msgstr "Indique si le démon @command{nfsd} devrait écouter sur une socket TCP." #. type: item -#: guix-git/doc/guix.texi:28828 +#: guix-git/doc/guix.texi:29165 #, no-wrap msgid "@code{nfsd-udp?} (default: @code{#f})" msgstr "@code{nfsd-udp?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28830 +#: guix-git/doc/guix.texi:29167 msgid "Whether the @command{nfsd} daemon should listen on a UDP socket." msgstr "Indique si le démon @command{nfsd} devrait écouter sur une socket UDP." #. type: item -#: guix-git/doc/guix.texi:28831 guix-git/doc/guix.texi:28915 -#: guix-git/doc/guix.texi:28940 +#: guix-git/doc/guix.texi:29168 guix-git/doc/guix.texi:29252 +#: guix-git/doc/guix.texi:29277 #, no-wrap msgid "@code{pipefs-directory} (default: @code{\"/var/lib/nfs/rpc_pipefs\"})" msgstr "@code{pipefs-directory} (par défaut : @code{\"/var/lib/nfs/rpc_pipefs\"})" #. type: table -#: guix-git/doc/guix.texi:28833 guix-git/doc/guix.texi:28917 -#: guix-git/doc/guix.texi:28942 +#: guix-git/doc/guix.texi:29170 guix-git/doc/guix.texi:29254 +#: guix-git/doc/guix.texi:29279 msgid "The directory where the pipefs file system is mounted." msgstr "Le répertoire où le système de fichier pipefs doit être monté." #. type: item -#: guix-git/doc/guix.texi:28834 +#: guix-git/doc/guix.texi:29171 #, no-wrap msgid "@code{debug} (default: @code{'()\"})" msgstr "@code{debug} (par défaut : @code{'()\"})" #. type: table -#: guix-git/doc/guix.texi:28838 +#: guix-git/doc/guix.texi:29175 msgid "A list of subsystems for which debugging output should be enabled. This is a list of symbols. Any of these symbols are valid: @code{nfsd}, @code{nfs}, @code{rpc}, @code{idmap}, @code{statd}, or @code{mountd}." msgstr "Une liste des sous-systèmes pour lesquels la sortie de débogage est activée. C'est une liste de symboles. Ces symboles sont valides : @code{nfsd}, @code{nfs}, @code{rpc}, @code{idmap}, @code{statd} et @code{mountd}." #. type: Plain text -#: guix-git/doc/guix.texi:28843 +#: guix-git/doc/guix.texi:29180 msgid "If you don't need a complete NFS service or prefer to build it yourself you can use the individual component services that are documented below." msgstr "Si vous n'avez pas besoin d'un service NFS complet ou préférez le construire vous-même vous pouvez utiliser les composants individuels décrit plus bas." #. type: subsubheading -#: guix-git/doc/guix.texi:28844 +#: guix-git/doc/guix.texi:29181 #, no-wrap msgid "RPC Bind Service" msgstr "Service RPC Bind" #. type: cindex -#: guix-git/doc/guix.texi:28845 +#: guix-git/doc/guix.texi:29182 #, no-wrap msgid "rpcbind" msgstr "rpcbind" #. type: Plain text -#: guix-git/doc/guix.texi:28851 +#: guix-git/doc/guix.texi:29188 msgid "The RPC Bind service provides a facility to map program numbers into universal addresses. Many NFS related services use this facility. Hence it is automatically started when a dependent service starts." msgstr "Le service RPC Bind fournit un dispositif pour faire correspondre les numéros de programmes à des adresses universelles. De nombreux services liés à NFS utilisent ce dispositif. Donc il est automatiquement démarré lorsqu'un service qui en dépend est démarré." #. type: defvr -#: guix-git/doc/guix.texi:28852 +#: guix-git/doc/guix.texi:29189 #, no-wrap msgid "{Scheme Variable} rpcbind-service-type" msgstr "{Variable Scheme} rpcbind-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28854 +#: guix-git/doc/guix.texi:29191 msgid "A service type for the RPC portmapper daemon." msgstr "Un type de service pour le démon RPC portmapper." #. type: deftp -#: guix-git/doc/guix.texi:28857 +#: guix-git/doc/guix.texi:29194 #, no-wrap msgid "{Data Type} rpcbind-configuration" msgstr "{Type de données} rpcbind-configuration" #. type: deftp -#: guix-git/doc/guix.texi:28860 +#: guix-git/doc/guix.texi:29197 msgid "Data type representing the configuration of the RPC Bind Service. This type has the following parameters:" msgstr "Type données représentant la configuration du service RPC Bind. Ce type a les paramètres suivants :" #. type: item -#: guix-git/doc/guix.texi:28864 +#: guix-git/doc/guix.texi:29201 #, no-wrap msgid "@code{warm-start?} (default: @code{#t})" msgstr "@code{warm-start?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:28868 +#: guix-git/doc/guix.texi:29205 msgid "If this parameter is @code{#t}, then the daemon will read a state file on startup thus reloading state information saved by a previous instance." msgstr "Si ce paramètre est @code{#t}, alors le démon lira un fichier d'état au démarrage ce qui lui fait recharger les informations d'états sauvegardés par une instance précédente." #. type: subsubheading -#: guix-git/doc/guix.texi:28872 +#: guix-git/doc/guix.texi:29209 #, no-wrap msgid "Pipefs Pseudo File System" msgstr "Pseudo-système de fichiers Pipefs" #. type: cindex -#: guix-git/doc/guix.texi:28873 +#: guix-git/doc/guix.texi:29210 #, no-wrap msgid "pipefs" msgstr "pipefs" #. type: cindex -#: guix-git/doc/guix.texi:28874 +#: guix-git/doc/guix.texi:29211 #, no-wrap msgid "rpc_pipefs" msgstr "rpc_pipefs" #. type: Plain text -#: guix-git/doc/guix.texi:28878 +#: guix-git/doc/guix.texi:29215 msgid "The pipefs file system is used to transfer NFS related data between the kernel and user space programs." msgstr "Le système de fichiers pipefs est utilisé pour transférer des données liées à NFS entre le noyau et les programmes en espace utilisateur." #. type: defvr -#: guix-git/doc/guix.texi:28879 +#: guix-git/doc/guix.texi:29216 #, no-wrap msgid "{Scheme Variable} pipefs-service-type" msgstr "{Variable Scheme} pipefs-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28881 +#: guix-git/doc/guix.texi:29218 msgid "A service type for the pipefs pseudo file system." msgstr "Un type de service pour le pseudo-système de fichiers pipefs." #. type: deftp -#: guix-git/doc/guix.texi:28883 +#: guix-git/doc/guix.texi:29220 #, no-wrap msgid "{Data Type} pipefs-configuration" msgstr "{Type de données} pipefs-configuration" #. type: deftp -#: guix-git/doc/guix.texi:28886 +#: guix-git/doc/guix.texi:29223 msgid "Data type representing the configuration of the pipefs pseudo file system service. This type has the following parameters:" msgstr "Type de données représentant la configuration du service du pseudo-système de fichiers pipefs. Ce type a les paramètres suivants :" #. type: item -#: guix-git/doc/guix.texi:28887 +#: guix-git/doc/guix.texi:29224 #, no-wrap msgid "@code{mount-point} (default: @code{\"/var/lib/nfs/rpc_pipefs\"})" msgstr "@code{mount-point} (par défaut : @code{\"/var/lib/nfs/rpc_pipefs\"})" #. type: table -#: guix-git/doc/guix.texi:28889 +#: guix-git/doc/guix.texi:29226 msgid "The directory to which the file system is to be attached." msgstr "Le répertoire dans lequel le système de fichiers est attaché." #. type: subsubheading -#: guix-git/doc/guix.texi:28893 +#: guix-git/doc/guix.texi:29230 #, no-wrap msgid "GSS Daemon Service" msgstr "Service de démon GSS" #. type: cindex -#: guix-git/doc/guix.texi:28894 +#: guix-git/doc/guix.texi:29231 #, no-wrap msgid "GSSD" msgstr "GSSD" #. type: cindex -#: guix-git/doc/guix.texi:28895 +#: guix-git/doc/guix.texi:29232 #, no-wrap msgid "GSS" msgstr "GSS" #. type: cindex -#: guix-git/doc/guix.texi:28896 +#: guix-git/doc/guix.texi:29233 #, no-wrap msgid "global security system" msgstr "système de sécurité global" #. type: Plain text -#: guix-git/doc/guix.texi:28903 +#: guix-git/doc/guix.texi:29240 msgid "The @dfn{global security system} (GSS) daemon provides strong security for RPC based protocols. Before exchanging RPC requests an RPC client must establish a security context. Typically this is done using the Kerberos command @command{kinit} or automatically at login time using PAM services (@pxref{Kerberos Services})." msgstr "Le démon du @dfn{système de sécurité global} (GSS) fournit une sécurité forte pour les protocoles basés sur des RPC. Avant d'échanger des requêtes RPC, un client RPC doit établir un contexte sécurisé. Typiquement cela se fait avec la commande Kerberos @command{kinit} ou automatiquement à la connexion avec les services PAM (@pxref{Kerberos Services})." #. type: defvr -#: guix-git/doc/guix.texi:28904 +#: guix-git/doc/guix.texi:29241 #, no-wrap msgid "{Scheme Variable} gss-service-type" msgstr "{Variable Scheme} gss-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28906 +#: guix-git/doc/guix.texi:29243 msgid "A service type for the Global Security System (GSS) daemon." msgstr "Un type de service pour le démon du système de sécurité global (GSS)." #. type: deftp -#: guix-git/doc/guix.texi:28908 +#: guix-git/doc/guix.texi:29245 #, no-wrap msgid "{Data Type} gss-configuration" msgstr "{Type de données} gss-configuration" #. type: deftp -#: guix-git/doc/guix.texi:28911 +#: guix-git/doc/guix.texi:29248 msgid "Data type representing the configuration of the GSS daemon service. This type has the following parameters:" msgstr "Type de données représentant la configuration du service du démon GSS. Ce type a les paramètres suivants :" #. type: table -#: guix-git/doc/guix.texi:28914 +#: guix-git/doc/guix.texi:29251 msgid "The package in which the @command{rpc.gssd} command is to be found." msgstr "Le paquet dans lequel la commande @command{rpc.gssd} se trouve." #. type: subsubheading -#: guix-git/doc/guix.texi:28922 +#: guix-git/doc/guix.texi:29259 #, no-wrap msgid "IDMAP Daemon Service" msgstr "Service de démon IDMAP" #. type: cindex -#: guix-git/doc/guix.texi:28923 +#: guix-git/doc/guix.texi:29260 #, no-wrap msgid "idmapd" msgstr "idmapd" #. type: cindex -#: guix-git/doc/guix.texi:28924 +#: guix-git/doc/guix.texi:29261 #, no-wrap msgid "name mapper" msgstr "correspondance de nom" #. type: Plain text -#: guix-git/doc/guix.texi:28928 +#: guix-git/doc/guix.texi:29265 msgid "The idmap daemon service provides mapping between user IDs and user names. Typically it is required in order to access file systems mounted via NFSv4." msgstr "Le service du démon idmap fournit une correspondance entre les ID utilisateur et les noms d'utilisateurs. Typiquement, cela est requis pour accéder aux systèmes de fichiers montés via NFSv4." #. type: defvr -#: guix-git/doc/guix.texi:28929 +#: guix-git/doc/guix.texi:29266 #, no-wrap msgid "{Scheme Variable} idmap-service-type" msgstr "{Variable Scheme} idmap-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28931 +#: guix-git/doc/guix.texi:29268 msgid "A service type for the Identity Mapper (IDMAP) daemon." msgstr "Un type de service pour le démon de correspondance d'identité (IDMAP)." #. type: deftp -#: guix-git/doc/guix.texi:28933 +#: guix-git/doc/guix.texi:29270 #, no-wrap msgid "{Data Type} idmap-configuration" msgstr "{Type de données} idmap-configuration" #. type: deftp -#: guix-git/doc/guix.texi:28936 +#: guix-git/doc/guix.texi:29273 msgid "Data type representing the configuration of the IDMAP daemon service. This type has the following parameters:" msgstr "Type de données représentant la configuration du service du démon IDMAP. Ce type a les paramètres suivants :" #. type: table -#: guix-git/doc/guix.texi:28939 +#: guix-git/doc/guix.texi:29276 msgid "The package in which the @command{rpc.idmapd} command is to be found." msgstr "Le paquet dans lequel se trouve la commande @command{rpc.idmapd}." #. type: item -#: guix-git/doc/guix.texi:28943 +#: guix-git/doc/guix.texi:29280 #, no-wrap msgid "@code{domain} (default: @code{#f})" msgstr "@code{domain} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28947 +#: guix-git/doc/guix.texi:29284 msgid "The local NFSv4 domain name. This must be a string or @code{#f}. If it is @code{#f} then the daemon will use the host's fully qualified domain name." msgstr "Le nom de domaine NFSv4 local. Il faut que ce soit une chaîne de caractères ou @code{#f}. Si la valeur est @code{#f} le démon utilisera le nom de domaine pleinement qualifié de l'hôte." #. type: item -#: guix-git/doc/guix.texi:28948 +#: guix-git/doc/guix.texi:29285 #, no-wrap msgid "@code{verbosity} (default: @code{0})" msgstr "@code{verbosity} (par défaut : @code{0})" #. type: table -#: guix-git/doc/guix.texi:28950 +#: guix-git/doc/guix.texi:29287 msgid "The verbosity level of the daemon." msgstr "Le niveau de verbosité du démon." #. type: Plain text -#: guix-git/doc/guix.texi:28961 +#: guix-git/doc/guix.texi:29298 msgid "@uref{https://guix.gnu.org/cuirass/, Cuirass} is a continuous integration tool for Guix. It can be used both for development and for providing substitutes to others (@pxref{Substitutes})." msgstr "@uref{https://guix.gnu.org/fr/cuirass/, Cuirass} est un outil d'intégration continue pour Guix. On peut l'utiliser aussi bien pour le développement que pour fournir des substituts à d'autres (@pxref{Substituts})." #. type: Plain text -#: guix-git/doc/guix.texi:28963 +#: guix-git/doc/guix.texi:29300 msgid "The @code{(gnu services cuirass)} module provides the following service." msgstr "Le module @code{(gnu services cuirass)} fournit le service suivant." #. type: defvr -#: guix-git/doc/guix.texi:28964 +#: guix-git/doc/guix.texi:29301 #, no-wrap msgid "{Scheme Procedure} cuirass-service-type" msgstr "{Procédure Scheme} cuirass-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28967 +#: guix-git/doc/guix.texi:29304 msgid "The type of the Cuirass service. Its value must be a @code{cuirass-configuration} object, as described below." msgstr "Le type du service Cuirass. Sa valeur doit être un objet @code{cuirass-configuration}, décrit ci-dessous." #. type: Plain text -#: guix-git/doc/guix.texi:28972 +#: guix-git/doc/guix.texi:29309 msgid "To add build jobs, you have to set the @code{specifications} field of the configuration. For instance, the following example will build all the packages provided by the @code{my-channel} channel." msgstr "Pour ajouter des travaux de construction, vous devez indiquer le champ @code{specifications} de la configuration. Par exemple, voici un exemple qui construira tous les paquets fournis par le canal @code{my-channel}." #. type: lisp -#: guix-git/doc/guix.texi:28983 +#: guix-git/doc/guix.texi:29320 #, no-wrap msgid "" "(define %cuirass-specs\n" @@ -54828,7 +55515,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:28987 guix-git/doc/guix.texi:29001 +#: guix-git/doc/guix.texi:29324 guix-git/doc/guix.texi:29338 #, no-wrap msgid "" "(service cuirass-service-type\n" @@ -54840,12 +55527,12 @@ msgstr "" " (specifications %cuirass-specs)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:28991 +#: guix-git/doc/guix.texi:29328 msgid "To build the @code{linux-libre} package defined by the default Guix channel, one can use the following configuration." msgstr "Pour construire le paquet @code{linux-libre} défini par le canal Guix par défaut, on peut utiliser la configuration suivante." #. type: lisp -#: guix-git/doc/guix.texi:28997 +#: guix-git/doc/guix.texi:29334 #, no-wrap msgid "" "(define %cuirass-specs\n" @@ -54861,572 +55548,572 @@ msgstr "" "\n" #. type: Plain text -#: guix-git/doc/guix.texi:29006 +#: guix-git/doc/guix.texi:29343 msgid "The other configuration possibilities, as well as the specification record itself are described in the Cuirass manual (@pxref{Specifications,,, cuirass, Cuirass})." msgstr "Les autres possibilités de configuration, ainsi que l'enregistrement de spécification lui-même sont décrits dans le manuel de Cuirass (@pxref{Specifications,,, cuirass, Cuirass})." #. type: Plain text -#: guix-git/doc/guix.texi:29010 +#: guix-git/doc/guix.texi:29347 msgid "While information related to build jobs is located directly in the specifications, global settings for the @command{cuirass} process are accessible in other @code{cuirass-configuration} fields." msgstr "Tandis que les informations liés aux travaux de construction sont directement dans les spécifications, les paramètres globaux pour le processus @command{cuirass} sont accessibles dans les autres champs de @code{cuirass-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:29011 +#: guix-git/doc/guix.texi:29348 #, no-wrap msgid "{Data Type} cuirass-configuration" msgstr "{Type de données} cuirass-configuration" #. type: deftp -#: guix-git/doc/guix.texi:29013 +#: guix-git/doc/guix.texi:29350 msgid "Data type representing the configuration of Cuirass." msgstr "Type de données représentant la configuration de Cuirass." #. type: item -#: guix-git/doc/guix.texi:29015 guix-git/doc/guix.texi:29152 +#: guix-git/doc/guix.texi:29352 guix-git/doc/guix.texi:29489 #, no-wrap msgid "@code{cuirass} (default: @code{cuirass})" msgstr "@code{cuirass} (par défaut : @code{cuirass})" #. type: table -#: guix-git/doc/guix.texi:29017 guix-git/doc/guix.texi:29154 +#: guix-git/doc/guix.texi:29354 guix-git/doc/guix.texi:29491 msgid "The Cuirass package to use." msgstr "Le paquet Cuirass à utiliser." #. type: item -#: guix-git/doc/guix.texi:29018 +#: guix-git/doc/guix.texi:29355 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass.log\"})" msgstr "@code{log-file} (par défaut : @code{\"/var/log/cuirass.log\"})" #. type: table -#: guix-git/doc/guix.texi:29020 guix-git/doc/guix.texi:29124 -#: guix-git/doc/guix.texi:29167 +#: guix-git/doc/guix.texi:29357 guix-git/doc/guix.texi:29461 +#: guix-git/doc/guix.texi:29504 msgid "Location of the log file." msgstr "Emplacement du fichier de journal." #. type: item -#: guix-git/doc/guix.texi:29021 +#: guix-git/doc/guix.texi:29358 #, no-wrap msgid "@code{web-log-file} (default: @code{\"/var/log/cuirass-web.log\"})" msgstr "@code{web-log-file} (par défaut : @code{\"/var/log/cuirass-web.log\"})" #. type: table -#: guix-git/doc/guix.texi:29023 +#: guix-git/doc/guix.texi:29360 msgid "Location of the log file used by the web interface." msgstr "Emplacement du fichier journal utilisé par l'interface web." #. type: item -#: guix-git/doc/guix.texi:29024 +#: guix-git/doc/guix.texi:29361 #, no-wrap msgid "@code{cache-directory} (default: @code{\"/var/cache/cuirass\"})" msgstr "@code{cache-directory} (par défaut : @code{\"/var/cache/cuirass\"})" #. type: table -#: guix-git/doc/guix.texi:29026 +#: guix-git/doc/guix.texi:29363 msgid "Location of the repository cache." msgstr "Emplacement du cache du dépôt." #. type: item -#: guix-git/doc/guix.texi:29027 +#: guix-git/doc/guix.texi:29364 #, no-wrap msgid "@code{user} (default: @code{\"cuirass\"})" msgstr "@code{user} (par défaut : @code{\"cuirass\"})" #. type: table -#: guix-git/doc/guix.texi:29029 +#: guix-git/doc/guix.texi:29366 msgid "Owner of the @code{cuirass} process." msgstr "Propriétaire du processus @code{cuirass}." #. type: item -#: guix-git/doc/guix.texi:29030 +#: guix-git/doc/guix.texi:29367 #, no-wrap msgid "@code{group} (default: @code{\"cuirass\"})" msgstr "@code{group} (par défaut : @code{\"cuirass\"})" #. type: table -#: guix-git/doc/guix.texi:29032 +#: guix-git/doc/guix.texi:29369 msgid "Owner's group of the @code{cuirass} process." msgstr "Groupe du propriétaire du processus @code{cuirass}." #. type: item -#: guix-git/doc/guix.texi:29033 +#: guix-git/doc/guix.texi:29370 #, no-wrap msgid "@code{interval} (default: @code{60})" msgstr "@code{interval} (par défaut : @code{60})" #. type: table -#: guix-git/doc/guix.texi:29036 +#: guix-git/doc/guix.texi:29373 msgid "Number of seconds between the poll of the repositories followed by the Cuirass jobs." msgstr "Nombre de secondes entre les mises à jour du dépôt suivis des travaux de Cuirass." #. type: item -#: guix-git/doc/guix.texi:29037 +#: guix-git/doc/guix.texi:29374 #, no-wrap msgid "@code{parameters} (default: @code{#f})" msgstr "@code{parameters} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29040 +#: guix-git/doc/guix.texi:29377 msgid "Read parameters from the given @var{parameters} file. The supported parameters are described here (@pxref{Parameters,,, cuirass, Cuirass})." msgstr "Lit les paramètres dans le fichier @var{parameters}. Les paramètres pris en charges sont décrits ici (@pxref{Parameters,,, cuirass, Cuirass})." #. type: item -#: guix-git/doc/guix.texi:29041 +#: guix-git/doc/guix.texi:29378 #, no-wrap msgid "@code{remote-server} (default: @code{#f})" msgstr "@code{remote-server} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29044 +#: guix-git/doc/guix.texi:29381 msgid "A @code{cuirass-remote-server-configuration} record to use the build remote mechanism or @code{#f} to use the default build mechanism." msgstr "Un enregistrement @code{cuirass-remote-server-configuration} pour utiliser le mécanisme de construction distante ou @code{#f} pour utiliser le mécanisme de construction par défaut." #. type: item -#: guix-git/doc/guix.texi:29045 +#: guix-git/doc/guix.texi:29382 #, no-wrap msgid "@code{database} (default: @code{\"dbname=cuirass host=/var/run/postgresql\"})" msgstr "@code{database} (par défaut : @code{\"dbname=cuirass host=/var/run/postgresql\"})" #. type: table -#: guix-git/doc/guix.texi:29050 +#: guix-git/doc/guix.texi:29387 msgid "Use @var{database} as the database containing the jobs and the past build results. Since Cuirass uses PostgreSQL as a database engine, @var{database} must be a string such as @code{\"dbname=cuirass host=localhost\"}." msgstr "Utiliser @var{database} comme base de données contenant les travaux et les résultats des constructions passées. Comme Cuirass utilise PostgreSQL comme moteur de base de données, @var{database} doit être une chaîne de la même forme que @code{\"dbname=cuirass host=localhost\"}." #. type: item -#: guix-git/doc/guix.texi:29051 +#: guix-git/doc/guix.texi:29388 #, no-wrap msgid "@code{port} (default: @code{8081})" msgstr "@code{port} (par défaut : @code{8081})" #. type: table -#: guix-git/doc/guix.texi:29053 +#: guix-git/doc/guix.texi:29390 msgid "Port number used by the HTTP server." msgstr "Numéro de port utilisé pour le serveur HTTP." #. type: table -#: guix-git/doc/guix.texi:29057 +#: guix-git/doc/guix.texi:29394 msgid "Listen on the network interface for @var{host}. The default is to accept connections from localhost." msgstr "Écoute sur l'interface réseau de @var{host}. La valeur par défaut est d'accepter les connexions depuis localhost." #. type: item -#: guix-git/doc/guix.texi:29058 +#: guix-git/doc/guix.texi:29395 #, no-wrap msgid "@code{specifications} (default: @code{#~'()})" msgstr "@code{specifications} (par défaut : @code{#~'()})" #. type: table -#: guix-git/doc/guix.texi:29062 +#: guix-git/doc/guix.texi:29399 msgid "A gexp (@pxref{G-Expressions}) that evaluates to a list of specifications records. The specification record is described in the Cuirass manual (@pxref{Specifications,,, cuirass, Cuirass})." msgstr "Une gexp (@pxref{G-Expressions}) qui s'évalue en une liste d'enregistrement de spécifications. L'enregistrement de spécification est décrit dans le manuel de Cuirass (@pxref{Specifications,,, cuirass, Cuirass})." #. type: item -#: guix-git/doc/guix.texi:29063 +#: guix-git/doc/guix.texi:29400 #, no-wrap msgid "@code{use-substitutes?} (default: @code{#f})" msgstr "@code{use-substitutes?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29066 +#: guix-git/doc/guix.texi:29403 msgid "This allows using substitutes to avoid building every dependencies of a job from source." msgstr "Cela permet d'utiliser des substituts pour éviter de construire toutes les dépendance d'un travail depuis les sources." #. type: item -#: guix-git/doc/guix.texi:29067 guix-git/doc/guix.texi:36336 +#: guix-git/doc/guix.texi:29404 guix-git/doc/guix.texi:36826 #, no-wrap msgid "@code{one-shot?} (default: @code{#f})" msgstr "@code{one-shot?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29069 +#: guix-git/doc/guix.texi:29406 msgid "Only evaluate specifications and build derivations once." msgstr "N'évaluer les spécification et construire les dérivations qu'une seule fois." #. type: item -#: guix-git/doc/guix.texi:29070 +#: guix-git/doc/guix.texi:29407 #, no-wrap msgid "@code{fallback?} (default: @code{#f})" msgstr "@code{fallback?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29073 +#: guix-git/doc/guix.texi:29410 msgid "When substituting a pre-built binary fails, fall back to building packages locally." msgstr "Lorsque la substitution d'un binaire pré-construit échoue, revenir à la construction locale du paquet." #. type: table -#: guix-git/doc/guix.texi:29076 +#: guix-git/doc/guix.texi:29413 msgid "Extra options to pass when running the Cuirass processes." msgstr "Options supplémentaires à passer au lancement des processus de Cuirass." #. type: cindex -#: guix-git/doc/guix.texi:29080 +#: guix-git/doc/guix.texi:29417 #, no-wrap msgid "remote build" msgstr "constructions distantes" #. type: subsubheading -#: guix-git/doc/guix.texi:29081 +#: guix-git/doc/guix.texi:29418 #, no-wrap msgid "Cuirass remote building" msgstr "Cuirass, construction distante" #. type: Plain text -#: guix-git/doc/guix.texi:29084 +#: guix-git/doc/guix.texi:29421 msgid "Cuirass supports two mechanisms to build derivations." msgstr "Cuirass prend en charge deux mécanisme pour construire les dérivations." #. type: item -#: guix-git/doc/guix.texi:29086 +#: guix-git/doc/guix.texi:29423 #, no-wrap msgid "Using the local Guix daemon." msgstr "Par le démon Guix local." #. type: itemize -#: guix-git/doc/guix.texi:29090 +#: guix-git/doc/guix.texi:29427 msgid "This is the default build mechanism. Once the build jobs are evaluated, they are sent to the local Guix daemon. Cuirass then listens to the Guix daemon output to detect the various build events." msgstr "C'est le mécanisme de construction par défaut. Une fois les constructions évaluées, elles sont envoyées au démon Guix local. Cuirass écoute ensuite la sortie du démon Guix pour détecter les divers événements de construction." #. type: item -#: guix-git/doc/guix.texi:29091 +#: guix-git/doc/guix.texi:29428 #, no-wrap msgid "Using the remote build mechanism." msgstr "Par le mécanisme de construction distante." #. type: itemize -#: guix-git/doc/guix.texi:29095 +#: guix-git/doc/guix.texi:29432 msgid "The build jobs are not submitted to the local Guix daemon. Instead, a remote server dispatches build requests to the connect remote workers, according to the build priorities." msgstr "Les constructions ne sont pas soumises au démon Guix local. À la place, un serveur distant distribue les requêtes de construction aux serveurs connectés, en fonction des priorités de construction." #. type: Plain text -#: guix-git/doc/guix.texi:29102 +#: guix-git/doc/guix.texi:29439 msgid "To enable this build mode a @code{cuirass-remote-server-configuration} record must be passed as @code{remote-server} argument of the @code{cuirass-configuration} record. The @code{cuirass-remote-server-configuration} record is described below." msgstr "Pour active ce mode de construction, vous devez passer un enregistrement @code{cuirass-remote-server-configuration} au champ @code{remote-server} de l'enregistrement @code{cuirass-configuration}. L'enregistrement @code{cuirass-remote-server-configuration} est décrit plus bas." #. type: Plain text -#: guix-git/doc/guix.texi:29107 +#: guix-git/doc/guix.texi:29444 msgid "This build mode scales way better than the default build mode. This is the build mode that is used on the GNU Guix build farm at @url{https://ci.guix.gnu.org}. It should be preferred when using Cuirass to build large amount of packages." msgstr "Ce mode de construction passe mieux à l'échelle que celui par défaut. C'est le mode de construction utilisé sur la ferme de construction de GNU Guix @url{https://ci.guix.gnu.org}. Vous devriez l'utiliser si vous utilisez Cuirass pour construire un grand nombre de paquets." #. type: deftp -#: guix-git/doc/guix.texi:29108 +#: guix-git/doc/guix.texi:29445 #, no-wrap msgid "{Data Type} cuirass-remote-server-configuration" msgstr "{Type de données} cuirass-remote-server-configuration" #. type: deftp -#: guix-git/doc/guix.texi:29110 +#: guix-git/doc/guix.texi:29447 msgid "Data type representing the configuration of the Cuirass remote-server." msgstr "Le type de données représentant la configuration des serveurs distants de Cuirass." #. type: item -#: guix-git/doc/guix.texi:29112 +#: guix-git/doc/guix.texi:29449 #, no-wrap msgid "@code{backend-port} (default: @code{5555})" msgstr "@code{backend-port} (par défaut : @code{5555})" #. type: table -#: guix-git/doc/guix.texi:29115 +#: guix-git/doc/guix.texi:29452 msgid "The TCP port for communicating with @code{remote-worker} processes using ZMQ. It defaults to @code{5555}." msgstr "Le port TCP pour communiquer avec les processus @code{remote-worker} via ZMQ. Sa valeur par défaut est @code{5555}." #. type: item -#: guix-git/doc/guix.texi:29116 +#: guix-git/doc/guix.texi:29453 #, no-wrap msgid "@code{log-port} (default: @code{5556})" msgstr "@code{log-port} (par défaut : @code{5556})" #. type: table -#: guix-git/doc/guix.texi:29118 +#: guix-git/doc/guix.texi:29455 msgid "The TCP port of the log server. It defaults to @code{5556}." msgstr "Le port TCP du serveur de journalisation. Sa valeur par défaut est @code{5556}." #. type: item -#: guix-git/doc/guix.texi:29119 +#: guix-git/doc/guix.texi:29456 #, no-wrap msgid "@code{publish-port} (default: @code{5557})" msgstr "@code{publish-port} (par défaut : @code{5557})" #. type: table -#: guix-git/doc/guix.texi:29121 +#: guix-git/doc/guix.texi:29458 msgid "The TCP port of the publish server. It defaults to @code{5557}." msgstr "Le port TCP du serveur de publication. Sa valeur par défaut est @code{5557}." #. type: item -#: guix-git/doc/guix.texi:29122 +#: guix-git/doc/guix.texi:29459 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass-remote-server.log\"})" msgstr "@code{log-file} (par défaut : @code{\"/var/log/cuirass-remote-server.log\"})" #. type: item -#: guix-git/doc/guix.texi:29125 +#: guix-git/doc/guix.texi:29462 #, no-wrap msgid "@code{cache} (default: @code{\"/var/cache/cuirass/remote\"})" msgstr "@code{cache} (par défaut : @code{\"/var/cache/cuirass/remote\"})" #. type: table -#: guix-git/doc/guix.texi:29127 +#: guix-git/doc/guix.texi:29464 msgid "Use @var{cache} directory to cache build log files." msgstr "Utiliser le répertoire @var{cache} pour mettre les journaux en cache." #. type: item -#: guix-git/doc/guix.texi:29128 +#: guix-git/doc/guix.texi:29465 #, no-wrap msgid "@code{trigger-url} (default: @code{#f})" msgstr "@code{trigger-url} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29131 +#: guix-git/doc/guix.texi:29468 msgid "Once a substitute is successfully fetched, trigger substitute baking at @var{trigger-url}." msgstr "Lorsqu'un substitut a été correctement récupéré, cause la préparation d'un substitut sur @var{trigger-url}." #. type: table -#: guix-git/doc/guix.texi:29136 +#: guix-git/doc/guix.texi:29473 msgid "If set to false, do not start a publish server and ignore the @code{publish-port} argument. This can be useful if there is already a standalone publish server standing next to the remote server." msgstr "Si la valeur est fausse, ne démarre pas de serveur de publication et ignore l'argument @code{publish-port}. Ça peut être utile s'il y a déjà un serveur de publication indépendant qui se trouve à côté du serveur distant." #. type: code{#1} -#: guix-git/doc/guix.texi:29138 guix-git/doc/guix.texi:29175 +#: guix-git/doc/guix.texi:29475 guix-git/doc/guix.texi:29512 #, no-wrap msgid "private-key" msgstr "private-key" #. type: Plain text -#: guix-git/doc/guix.texi:29147 +#: guix-git/doc/guix.texi:29484 msgid "At least one remote worker must also be started on any machine of the local network to actually perform the builds and report their status." msgstr "Au moins un serveur distant doit aussi être démarré sur une machine du réseau local pour effectivement effectuer les constructions et rapporter leur état." #. type: deftp -#: guix-git/doc/guix.texi:29148 +#: guix-git/doc/guix.texi:29485 #, no-wrap msgid "{Data Type} cuirass-remote-worker-configuration" msgstr "{Type de données} cuirass-remote-worker-configuration" #. type: deftp -#: guix-git/doc/guix.texi:29150 +#: guix-git/doc/guix.texi:29487 msgid "Data type representing the configuration of the Cuirass remote-worker." msgstr "Type de données représentant la configuration des serveurs distants de Cuirass." #. type: item -#: guix-git/doc/guix.texi:29155 +#: guix-git/doc/guix.texi:29492 #, no-wrap msgid "@code{workers} (default: @code{1})" msgstr "@code{workers} (par défaut : @code{1})" #. type: table -#: guix-git/doc/guix.texi:29157 +#: guix-git/doc/guix.texi:29494 msgid "Start @var{workers} parallel workers." msgstr "Démarre @var{workers} travailleurs en parallèle." #. type: table -#: guix-git/doc/guix.texi:29161 +#: guix-git/doc/guix.texi:29498 msgid "Do not use Avahi discovery and connect to the given @code{server} IP address instead." msgstr "Ne pas utiliser Avahi pour découvrir des serveurs et se connecter à l'IP @code{server} donnée à la place." #. type: item -#: guix-git/doc/guix.texi:29162 +#: guix-git/doc/guix.texi:29499 #, no-wrap msgid "@code{systems} (default: @code{(list (%current-system))})" msgstr "@code{systems} (par défaut : @code{(list (%current-system))})" #. type: table -#: guix-git/doc/guix.texi:29164 +#: guix-git/doc/guix.texi:29501 msgid "Only request builds for the given @var{systems}." msgstr "Ne demander des constructions que pour les systèmes @var{systems} donnés." #. type: item -#: guix-git/doc/guix.texi:29165 +#: guix-git/doc/guix.texi:29502 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass-remote-worker.log\"})" msgstr "@code{log-file} (par défaut : @code{\"/var/log/cuirass-remote-worker.log\"})" #. type: item -#: guix-git/doc/guix.texi:29168 +#: guix-git/doc/guix.texi:29505 #, no-wrap msgid "@code{publish-port} (default: @code{5558})" msgstr "@code{publish-port} (par défaut : @code{5558})" #. type: table -#: guix-git/doc/guix.texi:29170 +#: guix-git/doc/guix.texi:29507 msgid "The TCP port of the publish server. It defaults to @code{5558}." msgstr "Le port TCP du serveur de publication. La valeur par défaut est @code{5558}." #. type: subsubheading -#: guix-git/doc/guix.texi:29182 +#: guix-git/doc/guix.texi:29519 #, no-wrap msgid "Laminar" msgstr "Laminar" #. type: Plain text -#: guix-git/doc/guix.texi:29187 +#: guix-git/doc/guix.texi:29524 msgid "@uref{https://laminar.ohwg.net/, Laminar} is a lightweight and modular Continuous Integration service. It doesn't have a configuration web UI instead uses version-controllable configuration files and scripts." msgstr "@uref{https://laminar.ohwg.net/, Laminar} est service d'intégration continue léger et modulaire. Il n'a pas d'interface de configuration web et utilise plutôt des fichiers de configuration et des scripts sous contrôle de version." #. type: Plain text -#: guix-git/doc/guix.texi:29190 +#: guix-git/doc/guix.texi:29527 msgid "Laminar encourages the use of existing tools such as bash and cron instead of reinventing them." msgstr "Laminar encourage l'utilisation d'outils existants comme bash et cron au lieu de les réinventer." #. type: defvr -#: guix-git/doc/guix.texi:29191 +#: guix-git/doc/guix.texi:29528 #, no-wrap msgid "{Scheme Procedure} laminar-service-type" msgstr "{Procédure Scheme} laminar-service-type" #. type: defvr -#: guix-git/doc/guix.texi:29194 +#: guix-git/doc/guix.texi:29531 msgid "The type of the Laminar service. Its value must be a @code{laminar-configuration} object, as described below." msgstr "Le type du service Laminar. Sa valeur doit être un objet @code{laminar-configuration}, décrit ci-dessous." #. type: defvr -#: guix-git/doc/guix.texi:29198 +#: guix-git/doc/guix.texi:29535 msgid "All configuration values have defaults, a minimal configuration to get Laminar running is shown below. By default, the web interface is available on port 8080." msgstr "Toutes les configurations ont des valeurs par défaut, une configuration minimale pour lancer Laminar se trouve plus bas. Par défaut, l'interface web est disponible sur le port 8080." #. type: lisp -#: guix-git/doc/guix.texi:29201 +#: guix-git/doc/guix.texi:29538 #, no-wrap msgid "(service laminar-service-type)\n" msgstr "(service laminar-service-type)\n" #. type: deftp -#: guix-git/doc/guix.texi:29204 +#: guix-git/doc/guix.texi:29541 #, no-wrap msgid "{Data Type} laminar-configuration" msgstr "{Type de données} laminar-configuration" #. type: deftp -#: guix-git/doc/guix.texi:29206 +#: guix-git/doc/guix.texi:29543 msgid "Data type representing the configuration of Laminar." msgstr "Type données qui représente la configuration de Laminar." #. type: item -#: guix-git/doc/guix.texi:29208 +#: guix-git/doc/guix.texi:29545 #, no-wrap msgid "@code{laminar} (default: @code{laminar})" msgstr "@code{laminar} (par défaut : @code{laminar})" #. type: table -#: guix-git/doc/guix.texi:29210 +#: guix-git/doc/guix.texi:29547 msgid "The Laminar package to use." msgstr "Le paquet Laminar à utiliser." #. type: item -#: guix-git/doc/guix.texi:29211 +#: guix-git/doc/guix.texi:29548 #, no-wrap msgid "@code{home-directory} (default: @code{\"/var/lib/laminar\"})" msgstr "@code{home-directory} (par défaut : @code{\"/var/lib/laminar\"})" #. type: table -#: guix-git/doc/guix.texi:29213 +#: guix-git/doc/guix.texi:29550 msgid "The directory for job configurations and run directories." msgstr "Le répertoire de la configuration des travaux et des répertoires d'exécution." #. type: item -#: guix-git/doc/guix.texi:29214 +#: guix-git/doc/guix.texi:29551 #, no-wrap msgid "@code{bind-http} (default: @code{\"*:8080\"})" msgstr "@code{bind-http} (par défaut : @code{\"*:8080\"})" #. type: table -#: guix-git/doc/guix.texi:29217 +#: guix-git/doc/guix.texi:29554 msgid "The interface/port or unix socket on which laminard should listen for incoming connections to the web frontend." msgstr "L'interface et le port ou la socket unix sur laquelle laminard écoutera les connexions entrantes sur l'interface web." #. type: item -#: guix-git/doc/guix.texi:29218 +#: guix-git/doc/guix.texi:29555 #, no-wrap msgid "@code{bind-rpc} (default: @code{\"unix-abstract:laminar\"})" msgstr "@code{bind-rpc} (par défaut : @code{\"unix-abstract:laminar\"})" #. type: table -#: guix-git/doc/guix.texi:29221 +#: guix-git/doc/guix.texi:29558 msgid "The interface/port or unix socket on which laminard should listen for incoming commands such as build triggers." msgstr "L'interface et le port ou la socket unix sur laquelle laminard écoutera les commandes entrantes comme les requêtes de construction." #. type: item -#: guix-git/doc/guix.texi:29222 +#: guix-git/doc/guix.texi:29559 #, no-wrap msgid "@code{title} (default: @code{\"Laminar\"})" msgstr "@code{title} (par défaut : @code{\"Laminar\"})" #. type: table -#: guix-git/doc/guix.texi:29224 +#: guix-git/doc/guix.texi:29561 msgid "The page title to show in the web frontend." msgstr "Le titre de la page à afficher sur l'interface web." #. type: item -#: guix-git/doc/guix.texi:29225 +#: guix-git/doc/guix.texi:29562 #, no-wrap msgid "@code{keep-rundirs} (default: @code{0})" msgstr "@code{keep-rundirs} (par défaut : @code{0})" #. type: table -#: guix-git/doc/guix.texi:29229 +#: guix-git/doc/guix.texi:29566 msgid "Set to an integer defining how many rundirs to keep per job. The lowest-numbered ones will be deleted. The default is 0, meaning all run dirs will be immediately deleted." msgstr "Indiquez un entier indiquant le nombre de répertoire d'exécution garder par tâche. Les répertoires avec les numéros les plus petits seront supprimé. La valeur par défaut est 0, ce qui signifie que tous les répertoires d'exécution seront immédiatement supprimés." #. type: item -#: guix-git/doc/guix.texi:29230 +#: guix-git/doc/guix.texi:29567 #, no-wrap msgid "@code{archive-url} (default: @code{#f})" msgstr "@code{archive-url} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29233 +#: guix-git/doc/guix.texi:29570 msgid "The web frontend served by laminard will use this URL to form links to artefacts archived jobs." msgstr "L'interface web servi par laminard utilisera cette URL pour former les liens vers les artefacts des travaux archivés." #. type: item -#: guix-git/doc/guix.texi:29234 +#: guix-git/doc/guix.texi:29571 #, no-wrap msgid "@code{base-url} (default: @code{#f})" msgstr "@code{base-url} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29236 +#: guix-git/doc/guix.texi:29573 msgid "Base URL to use for links to laminar itself." msgstr "URL de base à utiliser pour les liens vers laminar." #. type: cindex -#: guix-git/doc/guix.texi:29243 +#: guix-git/doc/guix.texi:29580 #, no-wrap msgid "tlp" msgstr "tlp" #. type: cindex -#: guix-git/doc/guix.texi:29244 +#: guix-git/doc/guix.texi:29581 #, no-wrap msgid "power management with TLP" msgstr "gestion de l'énergie avec TLP" #. type: subsubheading -#: guix-git/doc/guix.texi:29245 +#: guix-git/doc/guix.texi:29582 #, no-wrap msgid "TLP daemon" msgstr "Démon TLP" #. type: Plain text -#: guix-git/doc/guix.texi:29249 +#: guix-git/doc/guix.texi:29586 msgid "The @code{(gnu services pm)} module provides a Guix service definition for the Linux power management tool TLP." msgstr "Le module @code{(gnu services pm)} fournit une définition de service Guix pour l'outil de gestion d'énergie Linux TLP." #. type: Plain text -#: guix-git/doc/guix.texi:29255 +#: guix-git/doc/guix.texi:29592 msgid "TLP enables various powersaving modes in userspace and kernel. Contrary to @code{upower-service}, it is not a passive, monitoring tool, as it will apply custom settings each time a new power source is detected. More information can be found at @uref{https://linrunner.de/en/tlp/tlp.html, TLP home page}." msgstr "TLP active plusieurs modes un espace utilisateur et dans le noyau. Contrairement à @code{upower-service}, ce n'est pas un outil passif de surveillance, puisqu'il applique des paramètres personnalisés à chaque fois qu'il détecte une nouvelle source d'énergie. Vous pouvez trouver plus d'informations sur @uref{https://linrunner.de/en/tlp/tlp.html, la page d'accueil de TLP}." #. type: deffn -#: guix-git/doc/guix.texi:29256 +#: guix-git/doc/guix.texi:29593 #, no-wrap msgid "{Scheme Variable} tlp-service-type" msgstr "{Variable Scheme} tlp-service-type" #. type: deffn -#: guix-git/doc/guix.texi:29260 +#: guix-git/doc/guix.texi:29597 msgid "The service type for the TLP tool. The default settings are optimised for battery life on most systems, but you can tweak them to your heart's content by adding a valid @code{tlp-configuration}:" msgstr "Le type de service pour l'outil TLP. Les paramètres par défaut sont optimisés pour la durée de la batterie sur la plupart des systèmes, mais vous pouvez les modifier comme vous voulez en ajoutant un @code{tlp-configuration} valide :" #. type: lisp -#: guix-git/doc/guix.texi:29265 +#: guix-git/doc/guix.texi:29602 #, no-wrap msgid "" "(service tlp-service-type\n" @@ -55440,888 +56127,936 @@ msgstr "" " (sched-powersave-on-bat? #t)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:29273 +#: guix-git/doc/guix.texi:29610 msgid "Each parameter definition is preceded by its type; for example, @samp{boolean foo} indicates that the @code{foo} parameter should be specified as a boolean. Types starting with @code{maybe-} denote parameters that won't show up in TLP config file when their value is @code{'disabled}." msgstr "Chaque définition de paramètre est précédée par son type ; par exemple, @samp{boolean toto} indique que le paramètre @code{toto} doit être spécifié comme un booléen. Les types qui commencent par @code{maybe-} dénotent des paramètres qui n'apparaîtront pas dans la configuration de TLP lorsque leur valeur est @code{'disabled}." #. type: Plain text -#: guix-git/doc/guix.texi:29283 +#: guix-git/doc/guix.texi:29620 msgid "Available @code{tlp-configuration} fields are:" msgstr "Les champs de @code{tlp-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:29284 +#: guix-git/doc/guix.texi:29621 #, no-wrap msgid "{@code{tlp-configuration} parameter} package tlp" msgstr "{paramètre de @code{tlp-configuration}} package tlp" #. type: deftypevr -#: guix-git/doc/guix.texi:29286 +#: guix-git/doc/guix.texi:29623 msgid "The TLP package." msgstr "Le paquet TLP." #. type: deftypevr -#: guix-git/doc/guix.texi:29289 +#: guix-git/doc/guix.texi:29626 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean tlp-enable?" msgstr "{paramètre de @code{tlp-configuration}} boolean tlp-enable?" #. type: deftypevr -#: guix-git/doc/guix.texi:29291 +#: guix-git/doc/guix.texi:29628 msgid "Set to true if you wish to enable TLP." msgstr "Indiquez vrai si vous souhaitez activer TLP." #. type: deftypevr -#: guix-git/doc/guix.texi:29296 +#: guix-git/doc/guix.texi:29633 #, no-wrap msgid "{@code{tlp-configuration} parameter} string tlp-default-mode" msgstr "{paramètre de @code{tlp-configuration}} string tlp-default-mode" #. type: deftypevr -#: guix-git/doc/guix.texi:29299 +#: guix-git/doc/guix.texi:29636 msgid "Default mode when no power supply can be detected. Alternatives are AC and BAT." msgstr "Mode par défaut lorsqu'aucune source d'énergie ne peut être détectée. Les possibilités sont AC et BAT." #. type: deftypevr -#: guix-git/doc/guix.texi:29301 +#: guix-git/doc/guix.texi:29638 msgid "Defaults to @samp{\"AC\"}." msgstr "La valeur par défaut est @samp{\"AC\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29304 +#: guix-git/doc/guix.texi:29641 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer disk-idle-secs-on-ac" msgstr "{paramètre de @code{tlp-configuration}} non-negative-integer disk-idle-secs-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29307 +#: guix-git/doc/guix.texi:29644 msgid "Number of seconds Linux kernel has to wait after the disk goes idle, before syncing on AC." msgstr "Nombre de secondes que le noyau Linux doit attendre après que les disques s'arrêtent pour se synchroniser quand il est sur secteur." #. type: deftypevr -#: guix-git/doc/guix.texi:29312 +#: guix-git/doc/guix.texi:29649 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer disk-idle-secs-on-bat" msgstr "{paramètre de @code{tlp-configuration}} non-negative-integer disk-idle-secs-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29314 +#: guix-git/doc/guix.texi:29651 msgid "Same as @code{disk-idle-ac} but on BAT mode." msgstr "Comme @code{disk-idle-ac} mais en mode batterie." #. type: deftypevr -#: guix-git/doc/guix.texi:29316 +#: guix-git/doc/guix.texi:29653 msgid "Defaults to @samp{2}." msgstr "La valeur par défaut est @samp{2}." #. type: deftypevr -#: guix-git/doc/guix.texi:29319 +#: guix-git/doc/guix.texi:29656 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer max-lost-work-secs-on-ac" msgstr "{paramètre de @code{tlp-configuration}} non-negative-integer max-lost-work-secs-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29321 +#: guix-git/doc/guix.texi:29658 msgid "Dirty pages flushing periodicity, expressed in seconds." msgstr "Périodicité du nettoyage des pages invalidées, en secondes." #. type: deftypevr -#: guix-git/doc/guix.texi:29323 guix-git/doc/guix.texi:29546 -#: guix-git/doc/guix.texi:31814 guix-git/doc/guix.texi:31822 +#: guix-git/doc/guix.texi:29660 guix-git/doc/guix.texi:29883 +#: guix-git/doc/guix.texi:32179 guix-git/doc/guix.texi:32187 msgid "Defaults to @samp{15}." msgstr "La valeur par défaut est @samp{15}." #. type: deftypevr -#: guix-git/doc/guix.texi:29326 +#: guix-git/doc/guix.texi:29663 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer max-lost-work-secs-on-bat" msgstr "{paramètre de @code{tlp-configuration}} non-negative-integer max-lost-work-secs-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29328 +#: guix-git/doc/guix.texi:29665 msgid "Same as @code{max-lost-work-secs-on-ac} but on BAT mode." msgstr "Comme @code{max-lost-work-secs-on-ac} mais en mode batterie." #. type: deftypevr -#: guix-git/doc/guix.texi:29330 +#: guix-git/doc/guix.texi:29667 msgid "Defaults to @samp{60}." msgstr "La valeur par défaut est @samp{60}." #. type: deftypevr -#: guix-git/doc/guix.texi:29333 +#: guix-git/doc/guix.texi:29670 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list cpu-scaling-governor-on-ac" msgstr "{paramètre de @code{tlp-configuration}} maybe-space-separated-string-list cpu-scaling-governor-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29337 +#: guix-git/doc/guix.texi:29674 msgid "CPU frequency scaling governor on AC mode. With intel_pstate driver, alternatives are powersave and performance. With acpi-cpufreq driver, alternatives are ondemand, powersave, performance and conservative." msgstr "Gouverneur de fréquence d'horloge sur secteur. Avec le pilote intel_pstate, les possibilités sont powersave et performance. Avec le pilote acpi-cpufreq, les possibilités sont ondemand, powersave, performance et conservative." #. type: deftypevr -#: guix-git/doc/guix.texi:29342 +#: guix-git/doc/guix.texi:29679 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list cpu-scaling-governor-on-bat" msgstr "{paramètre de @code{tlp-configuration}} maybe-space-separated-string-list cpu-scaling-governor-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29344 +#: guix-git/doc/guix.texi:29681 msgid "Same as @code{cpu-scaling-governor-on-ac} but on BAT mode." msgstr "Comme @code{cpu-scaling-governor-on-ac} mais en mode batterie." #. type: deftypevr -#: guix-git/doc/guix.texi:29349 +#: guix-git/doc/guix.texi:29686 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-min-freq-on-ac" msgstr "{paramètre de @code{tlp-configuration}} maybe-non-negative-integer cpu-scaling-min-freq-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29351 +#: guix-git/doc/guix.texi:29688 msgid "Set the min available frequency for the scaling governor on AC." msgstr "Indique la fréquence d'horloge minimale pour le gouverneur sur secteur." #. type: deftypevr -#: guix-git/doc/guix.texi:29356 +#: guix-git/doc/guix.texi:29693 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-max-freq-on-ac" msgstr "{paramètre de @code{tlp-configuration}} maybe-non-negative-integer cpu-scaling-max-freq-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29358 +#: guix-git/doc/guix.texi:29695 msgid "Set the max available frequency for the scaling governor on AC." msgstr "Indique la fréquence d'horloge maximale pour le gouverneur sur secteur." #. type: deftypevr -#: guix-git/doc/guix.texi:29363 +#: guix-git/doc/guix.texi:29700 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-min-freq-on-bat" msgstr "{paramètre de @code{tlp-configuration}} maybe-non-negative-integer cpu-scaling-min-freq-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29365 +#: guix-git/doc/guix.texi:29702 msgid "Set the min available frequency for the scaling governor on BAT." msgstr "Indique la fréquence d'horloge minimale pour le gouverneur sur batterie." #. type: deftypevr -#: guix-git/doc/guix.texi:29370 +#: guix-git/doc/guix.texi:29707 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-max-freq-on-bat" msgstr "{paramètre de @code{tlp-configuration}} maybe-non-negative-integer cpu-scaling-max-freq-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29372 +#: guix-git/doc/guix.texi:29709 msgid "Set the max available frequency for the scaling governor on BAT." msgstr "Indique la fréquence d'horloge maximale pour le gouverneur sur batterie." #. type: deftypevr -#: guix-git/doc/guix.texi:29377 +#: guix-git/doc/guix.texi:29714 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-min-perf-on-ac" msgstr "{paramètre de @code{tlp-configuration}} maybe-non-negative-integer cpu-min-perf-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29380 +#: guix-git/doc/guix.texi:29717 msgid "Limit the min P-state to control the power dissipation of the CPU, in AC mode. Values are stated as a percentage of the available performance." msgstr "Limite le P-état minimum pour contrôler la dissipation de puissance dans le CPU, sur secteur. Les valeurs sont indiqués comme un pourcentage des performances disponibles." #. type: deftypevr -#: guix-git/doc/guix.texi:29385 +#: guix-git/doc/guix.texi:29722 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-ac" msgstr "{paramètre de @code{tlp-configuration}} maybe-non-negative-integer cpu-max-perf-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29388 +#: guix-git/doc/guix.texi:29725 msgid "Limit the max P-state to control the power dissipation of the CPU, in AC mode. Values are stated as a percentage of the available performance." msgstr "Limite le P-état maximum pour contrôler la dissipation de puissance dans le CPU, sur secteur. Les valeurs sont indiqués comme un pourcentage des performances disponibles." #. type: deftypevr -#: guix-git/doc/guix.texi:29393 +#: guix-git/doc/guix.texi:29730 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-min-perf-on-bat" msgstr "{paramètre de @code{tlp-configuration}} maybe-non-negative-integer cpu-min-perf-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29395 +#: guix-git/doc/guix.texi:29732 msgid "Same as @code{cpu-min-perf-on-ac} on BAT mode." msgstr "Comme @code{cpu-min-perf-on-ac} mais en mode batterie." #. type: deftypevr -#: guix-git/doc/guix.texi:29400 +#: guix-git/doc/guix.texi:29737 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-bat" msgstr "{paramètre de @code{tlp-configuration}} maybe-non-negative-integer cpu-max-perf-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29402 +#: guix-git/doc/guix.texi:29739 msgid "Same as @code{cpu-max-perf-on-ac} on BAT mode." msgstr "Comme @code{cpu-max-perf-on-ac} mais en mode batterie." #. type: deftypevr -#: guix-git/doc/guix.texi:29407 +#: guix-git/doc/guix.texi:29744 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean cpu-boost-on-ac?" msgstr "{paramètre de @code{tlp-configuration}} maybe-boolean cpu-boost-on-ac?" #. type: deftypevr -#: guix-git/doc/guix.texi:29409 +#: guix-git/doc/guix.texi:29746 msgid "Enable CPU turbo boost feature on AC mode." msgstr "Active la fonctionnalité turbo boost du CPU sur secteur." #. type: deftypevr -#: guix-git/doc/guix.texi:29414 +#: guix-git/doc/guix.texi:29751 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean cpu-boost-on-bat?" msgstr "{paramètre de @code{tlp-configuration}} maybe-boolean cpu-boost-on-bat?" #. type: deftypevr -#: guix-git/doc/guix.texi:29416 +#: guix-git/doc/guix.texi:29753 msgid "Same as @code{cpu-boost-on-ac?} on BAT mode." msgstr "Comme @code{cpu-boost-on-ac?} mais en mode batterie." #. type: deftypevr -#: guix-git/doc/guix.texi:29421 +#: guix-git/doc/guix.texi:29758 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean sched-powersave-on-ac?" msgstr "{paramètre de @code{tlp-configuration}} boolean sched-powersave-on-ac?" #. type: deftypevr -#: guix-git/doc/guix.texi:29424 +#: guix-git/doc/guix.texi:29761 msgid "Allow Linux kernel to minimize the number of CPU cores/hyper-threads used under light load conditions." msgstr "Permet au noyau Linux de minimiser le nombre de cœurs/hyper-threads CPU utilisés lorsque la charge est faible." #. type: deftypevr -#: guix-git/doc/guix.texi:29429 +#: guix-git/doc/guix.texi:29766 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean sched-powersave-on-bat?" msgstr "{paramètre de @code{tlp-configuration}} boolean sched-powersave-on-bat?" #. type: deftypevr -#: guix-git/doc/guix.texi:29431 +#: guix-git/doc/guix.texi:29768 msgid "Same as @code{sched-powersave-on-ac?} but on BAT mode." msgstr "Comme @code{sched-powersave-on-ac?} mais en mode batterie." #. type: deftypevr -#: guix-git/doc/guix.texi:29436 +#: guix-git/doc/guix.texi:29773 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean nmi-watchdog?" msgstr "{paramètre de @code{tlp-configuration}} boolean nmi-watchdog?" #. type: deftypevr -#: guix-git/doc/guix.texi:29438 +#: guix-git/doc/guix.texi:29775 msgid "Enable Linux kernel NMI watchdog." msgstr "Active le chien de garde NMI du noyau Linux." #. type: deftypevr -#: guix-git/doc/guix.texi:29443 +#: guix-git/doc/guix.texi:29780 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string phc-controls" msgstr "{paramètre de @code{tlp-configuration}} maybe-string phc-controls" #. type: deftypevr -#: guix-git/doc/guix.texi:29446 +#: guix-git/doc/guix.texi:29783 msgid "For Linux kernels with PHC patch applied, change CPU voltages. An example value would be @samp{\"F:V F:V F:V F:V\"}." msgstr "Pour les noyaux Linux avec le correctif PHC, change le voltage du CPU. Une valeur serait par exemple @samp{\"F:V F:V F:V F:V\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29451 +#: guix-git/doc/guix.texi:29788 #, no-wrap msgid "{@code{tlp-configuration} parameter} string energy-perf-policy-on-ac" msgstr "{paramètre de @code{tlp-configuration}} string energy-perf-policy-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29454 +#: guix-git/doc/guix.texi:29791 msgid "Set CPU performance versus energy saving policy on AC@. Alternatives are performance, normal, powersave." msgstr "Indique le niveau de performance du CPU par rapport à la politique de gestion de l'énergie sur secteur. Les possibilités sont performance, normal et powersave." #. type: deftypevr -#: guix-git/doc/guix.texi:29456 guix-git/doc/guix.texi:29554 -#: guix-git/doc/guix.texi:29584 +#: guix-git/doc/guix.texi:29793 guix-git/doc/guix.texi:29891 +#: guix-git/doc/guix.texi:29949 msgid "Defaults to @samp{\"performance\"}." msgstr "La valeur par défaut est @samp{\"performance\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29459 +#: guix-git/doc/guix.texi:29796 #, no-wrap msgid "{@code{tlp-configuration} parameter} string energy-perf-policy-on-bat" msgstr "{paramètre de @code{tlp-configuration}} string energy-perf-policy-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29461 +#: guix-git/doc/guix.texi:29798 msgid "Same as @code{energy-perf-policy-ac} but on BAT mode." msgstr "Comme @code{energy-perf-policy-ac} mais en mode batterie." #. type: deftypevr -#: guix-git/doc/guix.texi:29463 guix-git/doc/guix.texi:29561 +#: guix-git/doc/guix.texi:29800 guix-git/doc/guix.texi:29898 msgid "Defaults to @samp{\"powersave\"}." msgstr "La valeur par défaut est @samp{\"powersave\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29466 +#: guix-git/doc/guix.texi:29803 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disks-devices" msgstr "{paramètre de @code{tlp-configuration}} space-separated-string-list disks-devices" #. type: deftypevr -#: guix-git/doc/guix.texi:29468 +#: guix-git/doc/guix.texi:29805 msgid "Hard disk devices." msgstr "Périphériques de disque dur." #. type: deftypevr -#: guix-git/doc/guix.texi:29471 +#: guix-git/doc/guix.texi:29808 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disk-apm-level-on-ac" msgstr "{paramètre de @code{tlp-configuration}} space-separated-string-list disk-apm-level-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29473 +#: guix-git/doc/guix.texi:29810 msgid "Hard disk advanced power management level." msgstr "Niveau de gestion de l'énergie avancé des disques durs." #. type: deftypevr -#: guix-git/doc/guix.texi:29476 +#: guix-git/doc/guix.texi:29813 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disk-apm-level-on-bat" msgstr "{paramètre de @code{tlp-configuration}} space-separated-string-list disk-apm-level-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29478 +#: guix-git/doc/guix.texi:29815 msgid "Same as @code{disk-apm-bat} but on BAT mode." msgstr "Comme @code{disk-apm-bat} mais en mode batterie." #. type: deftypevr -#: guix-git/doc/guix.texi:29481 +#: guix-git/doc/guix.texi:29818 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-spindown-timeout-on-ac" msgstr "{paramètre de @code{tlp-configuration}} maybe-space-separated-string-list disk-spindown-timeout-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29484 +#: guix-git/doc/guix.texi:29821 msgid "Hard disk spin down timeout. One value has to be specified for each declared hard disk." msgstr "Délai d'attente pour arrêter de faire tourner les disques. Une valeur doit être spécifiée pour chaque disque dur déclaré." #. type: deftypevr -#: guix-git/doc/guix.texi:29489 +#: guix-git/doc/guix.texi:29826 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-spindown-timeout-on-bat" msgstr "{paramètre de @code{tlp-configuration}} maybe-space-separated-string-list disk-spindown-timeout-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29491 +#: guix-git/doc/guix.texi:29828 msgid "Same as @code{disk-spindown-timeout-on-ac} but on BAT mode." msgstr "Comme @code{disk-spindown-timeout-on-ac} mais en mode batterie." #. type: deftypevr -#: guix-git/doc/guix.texi:29496 +#: guix-git/doc/guix.texi:29833 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-iosched" msgstr "{paramètre de @code{tlp-configuration}} maybe-space-separated-string-list disk-iosched" #. type: deftypevr -#: guix-git/doc/guix.texi:29500 +#: guix-git/doc/guix.texi:29837 msgid "Select IO scheduler for disk devices. One value has to be specified for each declared hard disk. Example alternatives are cfq, deadline and noop." msgstr "Sélectionne l'ordonnanceur d'entrées-sorties pour le disque. Une valeur doit être spécifiée pour chaque disque déclaré. Les possibilités sont par exemple cfq, deadline et noop." #. type: deftypevr -#: guix-git/doc/guix.texi:29505 +#: guix-git/doc/guix.texi:29842 #, no-wrap msgid "{@code{tlp-configuration} parameter} string sata-linkpwr-on-ac" msgstr "{paramètre de @code{tlp-configuration}} string sata-linkpwr-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29508 +#: guix-git/doc/guix.texi:29845 msgid "SATA aggressive link power management (ALPM) level. Alternatives are min_power, medium_power, max_performance." msgstr "Niveau de gestion de l'énergie des lien SATA aggressive (ALPM). Les possibilités sont min_power, medium_power et max_performance." #. type: deftypevr -#: guix-git/doc/guix.texi:29510 +#: guix-git/doc/guix.texi:29847 msgid "Defaults to @samp{\"max_performance\"}." msgstr "La valeur par défaut est @samp{\"max_performance\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29513 +#: guix-git/doc/guix.texi:29850 #, no-wrap msgid "{@code{tlp-configuration} parameter} string sata-linkpwr-on-bat" msgstr "{paramètre de @code{tlp-configuration}} string sata-linkpwr-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29515 +#: guix-git/doc/guix.texi:29852 msgid "Same as @code{sata-linkpwr-ac} but on BAT mode." msgstr "Comme @code{sata-linkpwr-ac} mais en mode batterie." #. type: deftypevr -#: guix-git/doc/guix.texi:29517 +#: guix-git/doc/guix.texi:29854 msgid "Defaults to @samp{\"min_power\"}." msgstr "La valeur par défaut est @samp{\"min_power\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29520 +#: guix-git/doc/guix.texi:29857 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string sata-linkpwr-blacklist" msgstr "{paramètre de @code{tlp-configuration}} maybe-string sata-linkpwr-blacklist" #. type: deftypevr -#: guix-git/doc/guix.texi:29522 +#: guix-git/doc/guix.texi:29859 msgid "Exclude specified SATA host devices for link power management." msgstr "Exclu les périphériques SATA spécifiés de la gestion de l'énergie des liens." #. type: deftypevr -#: guix-git/doc/guix.texi:29527 +#: guix-git/doc/guix.texi:29864 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-on-off-boolean ahci-runtime-pm-on-ac?" msgstr "{paramètre de @code{tlp-configuration}} maybe-on-off-boolean ahci-runtime-pm-on-ac?" #. type: deftypevr -#: guix-git/doc/guix.texi:29530 +#: guix-git/doc/guix.texi:29867 msgid "Enable Runtime Power Management for AHCI controller and disks on AC mode." msgstr "Active la gestion de l'énergie à l'exécution pour les contrôleurs AHCI et les disques, sur secteur." #. type: deftypevr -#: guix-git/doc/guix.texi:29535 +#: guix-git/doc/guix.texi:29872 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-on-off-boolean ahci-runtime-pm-on-bat?" msgstr "{paramètre de @code{tlp-configuration}} maybe-on-off-boolean ahci-runtime-pm-on-bat?" #. type: deftypevr -#: guix-git/doc/guix.texi:29537 +#: guix-git/doc/guix.texi:29874 msgid "Same as @code{ahci-runtime-pm-on-ac} on BAT mode." msgstr "Comme @code{ahci-runtime-pm-on-ac} mais en mode batterie." #. type: deftypevr -#: guix-git/doc/guix.texi:29542 +#: guix-git/doc/guix.texi:29879 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer ahci-runtime-pm-timeout" msgstr "{paramètre de @code{tlp-configuration}} non-negative-integer ahci-runtime-pm-timeout" #. type: deftypevr -#: guix-git/doc/guix.texi:29544 +#: guix-git/doc/guix.texi:29881 msgid "Seconds of inactivity before disk is suspended." msgstr "Secondes d'inactivités avant de suspendre les disques." #. type: deftypevr -#: guix-git/doc/guix.texi:29549 +#: guix-git/doc/guix.texi:29886 #, no-wrap msgid "{@code{tlp-configuration} parameter} string pcie-aspm-on-ac" msgstr "{paramètre de @code{tlp-configuration}} string pcie-aspm-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29552 +#: guix-git/doc/guix.texi:29889 msgid "PCI Express Active State Power Management level. Alternatives are default, performance, powersave." msgstr "Niveau de gestion de l'énergie des états actifs de PCI Express. Les possibilités sont default, performance et powersave." #. type: deftypevr -#: guix-git/doc/guix.texi:29557 +#: guix-git/doc/guix.texi:29894 #, no-wrap msgid "{@code{tlp-configuration} parameter} string pcie-aspm-on-bat" msgstr "{paramètre de @code{tlp-configuration}} string pcie-aspm-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29559 +#: guix-git/doc/guix.texi:29896 msgid "Same as @code{pcie-aspm-ac} but on BAT mode." msgstr "Comme @code{pcie-aspm-ac} mais en mode batterie." #. type: deftypevr -#: guix-git/doc/guix.texi:29564 +#: guix-git/doc/guix.texi:29901 +#, fuzzy, no-wrap +#| msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-bat" +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer start-charge-thresh-bat0" +msgstr "{paramètre de @code{tlp-configuration}} maybe-non-negative-integer cpu-max-perf-on-bat" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29903 +msgid "Percentage when battery 0 should begin charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29908 +#, fuzzy, no-wrap +#| msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-bat" +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer stop-charge-thresh-bat0" +msgstr "{paramètre de @code{tlp-configuration}} maybe-non-negative-integer cpu-max-perf-on-bat" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29910 +msgid "Percentage when battery 0 should stop charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29915 +#, fuzzy, no-wrap +#| msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-bat" +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer start-charge-thresh-bat1" +msgstr "{paramètre de @code{tlp-configuration}} maybe-non-negative-integer cpu-max-perf-on-bat" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29917 +msgid "Percentage when battery 1 should begin charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29922 +#, fuzzy, no-wrap +#| msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-bat" +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer stop-charge-thresh-bat1" +msgstr "{paramètre de @code{tlp-configuration}} maybe-non-negative-integer cpu-max-perf-on-bat" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29924 +msgid "Percentage when battery 1 should stop charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29929 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-power-profile-on-ac" msgstr "{paramètre de @code{tlp-configuration}} string radeon-power-profile-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29567 +#: guix-git/doc/guix.texi:29932 msgid "Radeon graphics clock speed level. Alternatives are low, mid, high, auto, default." msgstr "Niveau de vitesse de l'horloge des cartes graphiques Radeon. Les possibilités sont low, mid, high, auto et default." #. type: deftypevr -#: guix-git/doc/guix.texi:29569 +#: guix-git/doc/guix.texi:29934 msgid "Defaults to @samp{\"high\"}." msgstr "La valeur par défaut est @samp{\"high\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29572 +#: guix-git/doc/guix.texi:29937 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-power-profile-on-bat" msgstr "{paramètre de @code{tlp-configuration}} string radeon-power-profile-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29574 +#: guix-git/doc/guix.texi:29939 msgid "Same as @code{radeon-power-ac} but on BAT mode." msgstr "Comme @code{radeon-power-ac} mais en mode batterie." #. type: deftypevr -#: guix-git/doc/guix.texi:29576 +#: guix-git/doc/guix.texi:29941 msgid "Defaults to @samp{\"low\"}." msgstr "La valeur par défaut est @samp{\"low\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29579 +#: guix-git/doc/guix.texi:29944 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-state-on-ac" msgstr "{paramètre de @code{tlp-configuration}} string radeon-dpm-state-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29582 +#: guix-git/doc/guix.texi:29947 msgid "Radeon dynamic power management method (DPM). Alternatives are battery, performance." msgstr "Méthode de gestion de l'énergie dynamique de Radeon (DPM). Les possibilités sont battery et performance." #. type: deftypevr -#: guix-git/doc/guix.texi:29587 +#: guix-git/doc/guix.texi:29952 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-state-on-bat" msgstr "{paramètre de @code{tlp-configuration}} string radeon-dpm-state-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29589 +#: guix-git/doc/guix.texi:29954 msgid "Same as @code{radeon-dpm-state-ac} but on BAT mode." msgstr "Comme @code{radeon-dpm-state-ac} mais en mode batterie." #. type: deftypevr -#: guix-git/doc/guix.texi:29591 +#: guix-git/doc/guix.texi:29956 msgid "Defaults to @samp{\"battery\"}." msgstr "La valeur par défaut est @samp{\"battery\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29594 +#: guix-git/doc/guix.texi:29959 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-perf-level-on-ac" msgstr "{paramètre de @code{tlp-configuration}} string radeon-dpm-perf-level-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29596 +#: guix-git/doc/guix.texi:29961 msgid "Radeon DPM performance level. Alternatives are auto, low, high." msgstr "Niveau de performance de DPM. Les possibilités sont auto, low et high." #. type: deftypevr -#: guix-git/doc/guix.texi:29598 guix-git/doc/guix.texi:29605 -#: guix-git/doc/guix.texi:29679 +#: guix-git/doc/guix.texi:29963 guix-git/doc/guix.texi:29970 +#: guix-git/doc/guix.texi:30044 msgid "Defaults to @samp{\"auto\"}." msgstr "La valeur par défaut est @samp{\"auto\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29601 +#: guix-git/doc/guix.texi:29966 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-perf-level-on-bat" msgstr "{paramètre de @code{tlp-configuration}} string radeon-dpm-perf-level-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29603 +#: guix-git/doc/guix.texi:29968 msgid "Same as @code{radeon-dpm-perf-ac} but on BAT mode." msgstr "Comme @code{radeon-dpm-perf-ac} mais en mode batterie." #. type: deftypevr -#: guix-git/doc/guix.texi:29608 +#: guix-git/doc/guix.texi:29973 #, no-wrap msgid "{@code{tlp-configuration} parameter} on-off-boolean wifi-pwr-on-ac?" msgstr "{paramètre de @code{tlp-configuration}} on-off-boolean wifi-pwr-on-ac?" #. type: deftypevr -#: guix-git/doc/guix.texi:29610 +#: guix-git/doc/guix.texi:29975 msgid "Wifi power saving mode." msgstr "Mode de gestion de l'énergie wifi." #. type: deftypevr -#: guix-git/doc/guix.texi:29615 +#: guix-git/doc/guix.texi:29980 #, no-wrap msgid "{@code{tlp-configuration} parameter} on-off-boolean wifi-pwr-on-bat?" msgstr "{paramètre de @code{tlp-configuration}} on-off-boolean wifi-pwr-on-bat?" #. type: deftypevr -#: guix-git/doc/guix.texi:29617 +#: guix-git/doc/guix.texi:29982 msgid "Same as @code{wifi-power-ac?} but on BAT mode." msgstr "Comme @code{wifi-power-ac?} mais en mode batterie." #. type: deftypevr -#: guix-git/doc/guix.texi:29622 +#: guix-git/doc/guix.texi:29987 #, no-wrap msgid "{@code{tlp-configuration} parameter} y-n-boolean wol-disable?" msgstr "{paramètre de @code{tlp-configuration}} y-n-boolean wol-disable?" #. type: deftypevr -#: guix-git/doc/guix.texi:29624 +#: guix-git/doc/guix.texi:29989 msgid "Disable wake on LAN." msgstr "Désactive wake on LAN." #. type: deftypevr -#: guix-git/doc/guix.texi:29629 +#: guix-git/doc/guix.texi:29994 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer sound-power-save-on-ac" msgstr "{paramètre de @code{tlp-configuration}} non-negative-integer sound-power-save-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29632 +#: guix-git/doc/guix.texi:29997 msgid "Timeout duration in seconds before activating audio power saving on Intel HDA and AC97 devices. A value of 0 disables power saving." msgstr "Durée d'attente en secondes avant d'activer la gestion de l'énergie audio sur les périphériques Intel HDA et AC97. La valeur 0 désactive la gestion de l'énergie." #. type: deftypevr -#: guix-git/doc/guix.texi:29637 +#: guix-git/doc/guix.texi:30002 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer sound-power-save-on-bat" msgstr "{paramètre de @code{tlp-configuration}} non-negative-integer sound-power-save-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29639 +#: guix-git/doc/guix.texi:30004 msgid "Same as @code{sound-powersave-ac} but on BAT mode." msgstr "Comme @code{sound-powersave-ac} mais en mode batterie." #. type: deftypevr -#: guix-git/doc/guix.texi:29644 +#: guix-git/doc/guix.texi:30009 #, no-wrap msgid "{@code{tlp-configuration} parameter} y-n-boolean sound-power-save-controller?" msgstr "{paramètre de @code{tlp-configuration}} y-n-boolean sound-power-save-controller?" #. type: deftypevr -#: guix-git/doc/guix.texi:29646 +#: guix-git/doc/guix.texi:30011 msgid "Disable controller in powersaving mode on Intel HDA devices." msgstr "Désactive le contrôleur en mode de gestion de l'énergie sur les périphériques Intel HDA." #. type: deftypevr -#: guix-git/doc/guix.texi:29651 +#: guix-git/doc/guix.texi:30016 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean bay-poweroff-on-bat?" msgstr "{paramètre de @code{tlp-configuration}} boolean bay-poweroff-on-bat?" #. type: deftypevr -#: guix-git/doc/guix.texi:29655 +#: guix-git/doc/guix.texi:30020 msgid "Enable optical drive in UltraBay/MediaBay on BAT mode. Drive can be powered on again by releasing (and reinserting) the eject lever or by pressing the disc eject button on newer models." msgstr "Active le périphérique optique AltraBay/MediaBay en mode batterie. Le périphérique peut être de nouveau alimenté en lâchant (et en réinsérant) le levier d'éjection ou en appuyant sur le bouton d'éjection sur les modèles plus récents." #. type: deftypevr -#: guix-git/doc/guix.texi:29660 +#: guix-git/doc/guix.texi:30025 #, no-wrap msgid "{@code{tlp-configuration} parameter} string bay-device" msgstr "{paramètre de @code{tlp-configuration}} string bay-device" #. type: deftypevr -#: guix-git/doc/guix.texi:29662 +#: guix-git/doc/guix.texi:30027 msgid "Name of the optical drive device to power off." msgstr "Nom du périphérique optique à éteindre." #. type: deftypevr -#: guix-git/doc/guix.texi:29664 +#: guix-git/doc/guix.texi:30029 msgid "Defaults to @samp{\"sr0\"}." msgstr "La valeur par défaut est @samp{\"sr0\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29667 +#: guix-git/doc/guix.texi:30032 #, no-wrap msgid "{@code{tlp-configuration} parameter} string runtime-pm-on-ac" msgstr "{paramètre de @code{tlp-configuration}} string runtime-pm-on-ac" #. type: deftypevr -#: guix-git/doc/guix.texi:29670 +#: guix-git/doc/guix.texi:30035 msgid "Runtime Power Management for PCI(e) bus devices. Alternatives are on and auto." msgstr "Gestion de l'énergie à l'exécution sur les bus PCI(e). Les possibilités sont on et auto." #. type: deftypevr -#: guix-git/doc/guix.texi:29672 +#: guix-git/doc/guix.texi:30037 msgid "Defaults to @samp{\"on\"}." msgstr "La valeur par défaut est @samp{\"on\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29675 +#: guix-git/doc/guix.texi:30040 #, no-wrap msgid "{@code{tlp-configuration} parameter} string runtime-pm-on-bat" msgstr "{paramètre de @code{tlp-configuration}} string runtime-pm-on-bat" #. type: deftypevr -#: guix-git/doc/guix.texi:29677 +#: guix-git/doc/guix.texi:30042 msgid "Same as @code{runtime-pm-ac} but on BAT mode." msgstr "Comme @code{runtime-pm-ac} mais en mode batterie." #. type: deftypevr -#: guix-git/doc/guix.texi:29682 +#: guix-git/doc/guix.texi:30047 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean runtime-pm-all?" msgstr "{paramètre de @code{tlp-configuration}} boolean runtime-pm-all?" #. type: deftypevr -#: guix-git/doc/guix.texi:29685 +#: guix-git/doc/guix.texi:30050 msgid "Runtime Power Management for all PCI(e) bus devices, except blacklisted ones." msgstr "Gestion de l'énergie à l'exécution pour tous les bus PCI(e), sauf ceux en liste noire." #. type: deftypevr -#: guix-git/doc/guix.texi:29690 +#: guix-git/doc/guix.texi:30055 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list runtime-pm-blacklist" msgstr "{paramètre de @code{tlp-configuration}} maybe-space-separated-string-list runtime-pm-blacklist" #. type: deftypevr -#: guix-git/doc/guix.texi:29692 +#: guix-git/doc/guix.texi:30057 msgid "Exclude specified PCI(e) device addresses from Runtime Power Management." msgstr "Exclue les adresses des périphériques PCI(e) spécifiés de la gestion de l'énergie à l'exécution." #. type: deftypevr -#: guix-git/doc/guix.texi:29697 +#: guix-git/doc/guix.texi:30062 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list runtime-pm-driver-blacklist" msgstr "{paramètre de @code{tlp-configuration}} space-separated-string-list runtime-pm-driver-blacklist" #. type: deftypevr -#: guix-git/doc/guix.texi:29700 +#: guix-git/doc/guix.texi:30065 msgid "Exclude PCI(e) devices assigned to the specified drivers from Runtime Power Management." msgstr "Exclue les périphériques PCI(e) assignés aux pilotes spécifiés de la gestion de l'énergie à l'exécution." #. type: deftypevr -#: guix-git/doc/guix.texi:29703 +#: guix-git/doc/guix.texi:30068 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean usb-autosuspend?" msgstr "{paramètre de @code{tlp-configuration}} boolean usb-autosuspend?" #. type: deftypevr -#: guix-git/doc/guix.texi:29705 +#: guix-git/doc/guix.texi:30070 msgid "Enable USB autosuspend feature." msgstr "Active la fonctionnalité de mise en veille automatique de l'USB." #. type: deftypevr -#: guix-git/doc/guix.texi:29710 +#: guix-git/doc/guix.texi:30075 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string usb-blacklist" msgstr "{paramètre de @code{tlp-configuration}} maybe-string usb-blacklist" #. type: deftypevr -#: guix-git/doc/guix.texi:29712 +#: guix-git/doc/guix.texi:30077 msgid "Exclude specified devices from USB autosuspend." msgstr "Exclue les périphériques spécifiés de la mise en veille automatique de l'USB." #. type: deftypevr -#: guix-git/doc/guix.texi:29717 +#: guix-git/doc/guix.texi:30082 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean usb-blacklist-wwan?" msgstr "{paramètre de @code{tlp-configuration}} boolean usb-blacklist-wwan?" #. type: deftypevr -#: guix-git/doc/guix.texi:29719 +#: guix-git/doc/guix.texi:30084 msgid "Exclude WWAN devices from USB autosuspend." msgstr "Exclue les périphériques WWAN de la mise en veille automatique de l'USB." #. type: deftypevr -#: guix-git/doc/guix.texi:29724 +#: guix-git/doc/guix.texi:30089 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string usb-whitelist" msgstr "{paramètre de @code{tlp-configuration}} maybe-string usb-whitelist" #. type: deftypevr -#: guix-git/doc/guix.texi:29727 +#: guix-git/doc/guix.texi:30092 msgid "Include specified devices into USB autosuspend, even if they are already excluded by the driver or via @code{usb-blacklist-wwan?}." msgstr "Inclue les périphériques spécifiés dans la mise en veille automatique de l'USB, même s'ils sont déjà exclus par le pilote ou via @code{usb-blacklist-wwan?}." #. type: deftypevr -#: guix-git/doc/guix.texi:29732 +#: guix-git/doc/guix.texi:30097 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean usb-autosuspend-disable-on-shutdown?" msgstr "{paramètre de @code{tlp-configuration}} maybe-boolean usb-autosuspend-disable-on-shutdown?" #. type: deftypevr -#: guix-git/doc/guix.texi:29734 +#: guix-git/doc/guix.texi:30099 msgid "Enable USB autosuspend before shutdown." msgstr "Active la mise en veille de l'USB avant l'arrêt." #. type: deftypevr -#: guix-git/doc/guix.texi:29739 +#: guix-git/doc/guix.texi:30104 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean restore-device-state-on-startup?" msgstr "{paramètre de @code{tlp-configuration}} boolean restore-device-state-on-startup?" #. type: deftypevr -#: guix-git/doc/guix.texi:29742 +#: guix-git/doc/guix.texi:30107 msgid "Restore radio device state (bluetooth, wifi, wwan) from previous shutdown on system startup." msgstr "Restaure l'état des périphériques radio (bluetooth, wifi, wwan) du dernier arrêt au démarrage du système." #. type: cindex -#: guix-git/doc/guix.texi:29747 +#: guix-git/doc/guix.texi:30112 #, no-wrap msgid "thermald" msgstr "thermald" #. type: cindex -#: guix-git/doc/guix.texi:29748 +#: guix-git/doc/guix.texi:30113 #, no-wrap msgid "CPU frequency scaling with thermald" msgstr "Gestion de la fréquence du CPU avec thermald" #. type: subsubheading -#: guix-git/doc/guix.texi:29749 +#: guix-git/doc/guix.texi:30114 #, no-wrap msgid "Thermald daemon" msgstr "Démon Thermald" #. type: Plain text -#: guix-git/doc/guix.texi:29753 +#: guix-git/doc/guix.texi:30118 msgid "The @code{(gnu services pm)} module provides an interface to thermald, a CPU frequency scaling service which helps prevent overheating." msgstr "Le module @code{(gnu services pm)} fournit une interface pour thermald, un service de gestion de l'horloge CPU qui aide à éviter la surchauffe." #. type: defvr -#: guix-git/doc/guix.texi:29754 +#: guix-git/doc/guix.texi:30119 #, no-wrap msgid "{Scheme Variable} thermald-service-type" msgstr "{Variable Scheme} thermald-service-type" #. type: defvr -#: guix-git/doc/guix.texi:29759 +#: guix-git/doc/guix.texi:30124 msgid "This is the service type for @uref{https://01.org/linux-thermal-daemon/, thermald}, the Linux Thermal Daemon, which is responsible for controlling the thermal state of processors and preventing overheating." msgstr "C'est le type de service pour @uref{https://01.org/linux-thermal-daemon/, thermald}, le démon de température de Linux, responsable du contrôle de l'état thermique des processeurs et d'éviter la surchauffe." #. type: deftp -#: guix-git/doc/guix.texi:29761 +#: guix-git/doc/guix.texi:30126 #, no-wrap msgid "{Data Type} thermald-configuration" msgstr "{Type de données} thermald-configuration" #. type: deftp -#: guix-git/doc/guix.texi:29763 +#: guix-git/doc/guix.texi:30128 msgid "Data type representing the configuration of @code{thermald-service-type}." msgstr "Type de données représentant la configuration de @code{thermald-service-type}." #. type: item -#: guix-git/doc/guix.texi:29765 +#: guix-git/doc/guix.texi:30130 #, no-wrap msgid "@code{ignore-cpuid-check?} (default: @code{#f})" msgstr "@code{ignore-cpuid-check?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29767 +#: guix-git/doc/guix.texi:30132 msgid "Ignore cpuid check for supported CPU models." msgstr "Ignore la vérification des modèles CPU supportés avec cpuid." #. type: item -#: guix-git/doc/guix.texi:29768 +#: guix-git/doc/guix.texi:30133 #, no-wrap msgid "@code{thermald} (default: @var{thermald})" msgstr "@code{thermald} (par défaut : @var{thermald})" #. type: table -#: guix-git/doc/guix.texi:29770 +#: guix-git/doc/guix.texi:30135 msgid "Package object of thermald." msgstr "Objet du paquet de thermald." #. type: Plain text -#: guix-git/doc/guix.texi:29779 +#: guix-git/doc/guix.texi:30144 msgid "The @code{(gnu services audio)} module provides a service to start MPD (the Music Player Daemon)." msgstr "Le module @code{(gnu services audio)} fournit un service qui lance MPD (le démon de lecture de musique)." #. type: cindex -#: guix-git/doc/guix.texi:29780 +#: guix-git/doc/guix.texi:30145 #, no-wrap msgid "mpd" msgstr "mpd" #. type: subsubheading -#: guix-git/doc/guix.texi:29781 +#: guix-git/doc/guix.texi:30146 #, no-wrap msgid "Music Player Daemon" msgstr "Music Player Daemon" #. type: Plain text -#: guix-git/doc/guix.texi:29786 +#: guix-git/doc/guix.texi:30151 msgid "The Music Player Daemon (MPD) is a service that can play music while being controlled from the local machine or over the network by a variety of clients." msgstr "Le démon de lecture de musique (MPD) est un service qui joue de la musique tout en étant contrôlé depuis la machine locale ou à travers le réseau par divers clients." #. type: Plain text -#: guix-git/doc/guix.texi:29789 +#: guix-git/doc/guix.texi:30154 msgid "The following example shows how one might run @code{mpd} as user @code{\"bob\"} on port @code{6666}. It uses pulseaudio for output." msgstr "L'exemple suivant montre comment on peut lancer @code{mpd} en tant qu'utilisateur @code{\"bob\"} sur le port @code{6666}. Il utilise pulseaudio pour la sortie audio." #. type: lisp -#: guix-git/doc/guix.texi:29795 +#: guix-git/doc/guix.texi:30160 #, no-wrap msgid "" "(service mpd-service-type\n" @@ -56335,215 +57070,215 @@ msgstr "" " (port \"6666\")))\n" #. type: defvr -#: guix-git/doc/guix.texi:29797 +#: guix-git/doc/guix.texi:30162 #, no-wrap msgid "{Scheme Variable} mpd-service-type" msgstr "{Variable Scheme} mpd-service-type" #. type: defvr -#: guix-git/doc/guix.texi:29799 +#: guix-git/doc/guix.texi:30164 msgid "The service type for @command{mpd}" msgstr "Le type de service pour @command{mpd}" #. type: deftp -#: guix-git/doc/guix.texi:29801 +#: guix-git/doc/guix.texi:30166 #, no-wrap msgid "{Data Type} mpd-configuration" msgstr "{Type de données} mpd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:29803 +#: guix-git/doc/guix.texi:30168 msgid "Data type representing the configuration of @command{mpd}." msgstr "Type de données représentant la configuration de @command{mpd}." #. type: item -#: guix-git/doc/guix.texi:29805 +#: guix-git/doc/guix.texi:30170 #, no-wrap msgid "@code{user} (default: @code{\"mpd\"})" msgstr "@code{user} (par défaut : @code{\"mpd\"})" #. type: table -#: guix-git/doc/guix.texi:29807 +#: guix-git/doc/guix.texi:30172 msgid "The user to run mpd as." msgstr "L'utilisateur qui lance mpd." #. type: item -#: guix-git/doc/guix.texi:29808 +#: guix-git/doc/guix.texi:30173 #, no-wrap msgid "@code{music-dir} (default: @code{\"~/Music\"})" msgstr "@code{music-dir} (par défaut : @code{\"~/Music\"})" #. type: table -#: guix-git/doc/guix.texi:29810 +#: guix-git/doc/guix.texi:30175 msgid "The directory to scan for music files." msgstr "Le répertoire à scanner pour trouver les fichiers de musique." #. type: item -#: guix-git/doc/guix.texi:29811 +#: guix-git/doc/guix.texi:30176 #, no-wrap msgid "@code{playlist-dir} (default: @code{\"~/.mpd/playlists\"})" msgstr "@code{playlist-dir} (par défaut : @code{\"~/.mpd/playlists\"})" #. type: table -#: guix-git/doc/guix.texi:29813 +#: guix-git/doc/guix.texi:30178 msgid "The directory to store playlists." msgstr "Le répertoire où stocker les playlists." #. type: item -#: guix-git/doc/guix.texi:29814 +#: guix-git/doc/guix.texi:30179 #, no-wrap msgid "@code{db-file} (default: @code{\"~/.mpd/tag_cache\"})" msgstr "@code{db-file} (par défaut : @code{\"~/.mpd/tag_cache\"})" #. type: table -#: guix-git/doc/guix.texi:29816 +#: guix-git/doc/guix.texi:30181 msgid "The location of the music database." msgstr "Emplacement de la base de données de musiques." #. type: item -#: guix-git/doc/guix.texi:29817 +#: guix-git/doc/guix.texi:30182 #, no-wrap msgid "@code{state-file} (default: @code{\"~/.mpd/state\"})" msgstr "@code{state-file} (par défaut : @code{\"~/.mpd/state\"})" #. type: table -#: guix-git/doc/guix.texi:29819 +#: guix-git/doc/guix.texi:30184 msgid "The location of the file that stores current MPD's state." msgstr "Emplacement du fichier qui stocke l'état actuel de MPD." #. type: item -#: guix-git/doc/guix.texi:29820 +#: guix-git/doc/guix.texi:30185 #, no-wrap msgid "@code{sticker-file} (default: @code{\"~/.mpd/sticker.sql\"})" msgstr "@code{sticker-file} (par défaut : @code{\"~/.mpd/sticker.sql\"})" #. type: table -#: guix-git/doc/guix.texi:29822 +#: guix-git/doc/guix.texi:30187 msgid "The location of the sticker database." msgstr "Emplacement de la base de données de stickers." #. type: item -#: guix-git/doc/guix.texi:29823 +#: guix-git/doc/guix.texi:30188 #, no-wrap msgid "@code{port} (default: @code{\"6600\"})" msgstr "@code{port} (par défaut : @code{\"6600\"})" #. type: table -#: guix-git/doc/guix.texi:29825 +#: guix-git/doc/guix.texi:30190 msgid "The port to run mpd on." msgstr "Le port sur lequel lancer mpd." #. type: item -#: guix-git/doc/guix.texi:29826 +#: guix-git/doc/guix.texi:30191 #, no-wrap msgid "@code{address} (default: @code{\"any\"})" msgstr "@code{address} (par défaut : @code{\"any\"})" #. type: table -#: guix-git/doc/guix.texi:29829 +#: guix-git/doc/guix.texi:30194 msgid "The address that mpd will bind to. To use a Unix domain socket, an absolute path can be specified here." msgstr "L'adresse sur laquelle se lie mpd. Pour utiliser un socket Unix domain, un chemin absolu peut être spécifié ici." #. type: item -#: guix-git/doc/guix.texi:29830 +#: guix-git/doc/guix.texi:30195 #, no-wrap msgid "@code{outputs} (default: @code{\"(list (mpd-output))\"})" msgstr "@code{outputs} (par défaut : @code{\"(list (mpd-output))\"})" #. type: table -#: guix-git/doc/guix.texi:29832 +#: guix-git/doc/guix.texi:30197 msgid "The audio outputs that MPD can use. By default this is a single output using pulseaudio." msgstr "Les sorties audio que MPD peut utiliser. Par défaut c'est une seule sortie audio utilisant pulseaudio." #. type: deftp -#: guix-git/doc/guix.texi:29836 +#: guix-git/doc/guix.texi:30201 #, no-wrap msgid "{Data Type} mpd-output" msgstr "{Type de données} mpd-output" #. type: deftp -#: guix-git/doc/guix.texi:29838 +#: guix-git/doc/guix.texi:30203 msgid "Data type representing an @command{mpd} audio output." msgstr "Type de données représentant une sortie audio de @command{mpd}." #. type: item -#: guix-git/doc/guix.texi:29840 +#: guix-git/doc/guix.texi:30205 #, no-wrap msgid "@code{name} (default: @code{\"MPD\"})" msgstr "@code{name} (par défaut : @code{\"MPD\"})" #. type: table -#: guix-git/doc/guix.texi:29842 +#: guix-git/doc/guix.texi:30207 msgid "The name of the audio output." msgstr "Le nom de la sortie audio." #. type: item -#: guix-git/doc/guix.texi:29843 +#: guix-git/doc/guix.texi:30208 #, no-wrap msgid "@code{type} (default: @code{\"pulse\"})" msgstr "@code{type} (par défaut : @code{\"pulse\"})" #. type: table -#: guix-git/doc/guix.texi:29845 +#: guix-git/doc/guix.texi:30210 msgid "The type of audio output." msgstr "Le type de sortie audio." #. type: item -#: guix-git/doc/guix.texi:29846 +#: guix-git/doc/guix.texi:30211 #, no-wrap msgid "@code{enabled?} (default: @code{#t})" msgstr "@code{enabled?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:29851 +#: guix-git/doc/guix.texi:30216 msgid "Specifies whether this audio output is enabled when MPD is started. By default, all audio outputs are enabled. This is just the default setting when there is no state file; with a state file, the previous state is restored." msgstr "Spécifie si cette sortie audio est activée au démarrage de MPD. Par défaut, toutes les sorties audio sont activées. C'est le paramètre par défaut s'il n'y a pas de fichier d'état ; avec un fichier d'état, l'état précédent est restauré." #. type: item -#: guix-git/doc/guix.texi:29852 +#: guix-git/doc/guix.texi:30217 #, no-wrap msgid "@code{tags?} (default: @code{#t})" msgstr "@code{tags?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:29856 +#: guix-git/doc/guix.texi:30221 msgid "If set to @code{#f}, then MPD will not send tags to this output. This is only useful for output plugins that can receive tags, for example the @code{httpd} output plugin." msgstr "Si la valeur est @code{#f}, MPD n'enverra pas les tags à cette sortie. C'est utile uniquement pour les greffons de sortie qui peuvent recevoir les tags, comme le greffon de sortie @code{httpd}." #. type: item -#: guix-git/doc/guix.texi:29857 +#: guix-git/doc/guix.texi:30222 #, no-wrap msgid "@code{always-on?} (default: @code{#f})" msgstr "@code{always-on?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29861 +#: guix-git/doc/guix.texi:30226 msgid "If set to @code{#t}, then MPD attempts to keep this audio output always open. This may be useful for streaming servers, when you don’t want to disconnect all listeners even when playback is accidentally stopped." msgstr "Si la valeur est @code{#t}, alors MPD essaye de garder cette sortie audio toujours ouverte. Cela peut être utile pour les serveurs de streaming, lorsque vous ne voulez pas déconnecter tous les clients même si la lecture est accidentellement interrompue." #. type: code{#1} -#: guix-git/doc/guix.texi:29862 +#: guix-git/doc/guix.texi:30227 #, no-wrap msgid "mixer-type" msgstr "mixer-type" #. type: table -#: guix-git/doc/guix.texi:29868 +#: guix-git/doc/guix.texi:30233 msgid "This field accepts a symbol that specifies which mixer should be used for this audio output: the @code{hardware} mixer, the @code{software} mixer, the @code{null} mixer (allows setting the volume, but with no effect; this can be used as a trick to implement an external mixer External Mixer) or no mixer (@code{none})." msgstr "Ce champ accepte un symbole qiu spécifie quel mixeur utiliser pour cette sortie audio : le mixeur @code{hardware}, le mixeur @code{software}, le mixer @code{null} (permet de gérer le volume, mais sans effet ; peut être utilisé pour implémenter un mixer externe) ou aucun mixeur (@code{none})." #. type: table -#: guix-git/doc/guix.texi:29872 +#: guix-git/doc/guix.texi:30237 msgid "An association list of option symbols to string values to be appended to the audio output configuration." msgstr "Une liste d'association de symboles d'options à des valeurs à ajouter à la configuration de la sortie audio." #. type: Plain text -#: guix-git/doc/guix.texi:29878 +#: guix-git/doc/guix.texi:30243 msgid "The following example shows a configuration of @code{mpd} that provides an HTTP audio streaming output." msgstr "L'exemple suivant montre comment configurer @code{mpd} pour fournir une sortie de streaming audio HTTP." #. type: lisp -#: guix-git/doc/guix.texi:29890 +#: guix-git/doc/guix.texi:30255 #, no-wrap msgid "" "(service mpd-service-type\n" @@ -56569,34 +57304,34 @@ msgstr "" " (port . \"8080\"))))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:29899 +#: guix-git/doc/guix.texi:30264 msgid "The @code{(gnu services virtualization)} module provides services for the libvirt and virtlog daemons, as well as other virtualization-related services." msgstr "Le module @code{(gnu services virtualization)} fournit des services pour les démons libvirt et virtlog, ainsi que d'autres services liés à la virtualisation." #. type: subsubheading -#: guix-git/doc/guix.texi:29900 +#: guix-git/doc/guix.texi:30265 #, no-wrap msgid "Libvirt daemon" msgstr "Démon libvirt" #. type: Plain text -#: guix-git/doc/guix.texi:29905 +#: guix-git/doc/guix.texi:30270 msgid "@code{libvirtd} is the server side daemon component of the libvirt virtualization management system. This daemon runs on host servers and performs required management tasks for virtualized guests." msgstr "@code{libvirtd} est le démon côté serveur du système de gestion de virtualisation libvirt. Ce démon tourne sur des serveurs hôtes et effectue les tâches de gestion requises pour les clients virtualisés." #. type: deffn -#: guix-git/doc/guix.texi:29906 +#: guix-git/doc/guix.texi:30271 #, no-wrap msgid "{Scheme Variable} libvirt-service-type" msgstr "{Variable Scheme} libvirt-service-type" #. type: deffn -#: guix-git/doc/guix.texi:29909 +#: guix-git/doc/guix.texi:30274 msgid "This is the type of the @uref{https://libvirt.org, libvirt daemon}. Its value must be a @code{libvirt-configuration}." msgstr "C'est le type du @uref{https://libvirt.org, démon libvirt}. Sa valeur doit être un @code{libvirt-configuration}." #. type: lisp -#: guix-git/doc/guix.texi:29915 +#: guix-git/doc/guix.texi:30280 #, no-wrap msgid "" "(service libvirt-service-type\n" @@ -56610,870 +57345,870 @@ msgstr "" " (tls-port \"16555\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:29920 +#: guix-git/doc/guix.texi:30285 msgid "Available @code{libvirt-configuration} fields are:" msgstr "Les champs de @code{libvirt-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:29921 +#: guix-git/doc/guix.texi:30286 #, no-wrap msgid "{@code{libvirt-configuration} parameter} package libvirt" msgstr "{paramètre de @code{libvirt-configuration}} package libvirt" #. type: deftypevr -#: guix-git/doc/guix.texi:29923 +#: guix-git/doc/guix.texi:30288 msgid "Libvirt package." msgstr "Paquet libvirt." #. type: deftypevr -#: guix-git/doc/guix.texi:29926 +#: guix-git/doc/guix.texi:30291 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean listen-tls?" msgstr "{paramètre de @code{libvirt-configuration}} boolean listen-tls?" #. type: deftypevr -#: guix-git/doc/guix.texi:29929 +#: guix-git/doc/guix.texi:30294 msgid "Flag listening for secure TLS connections on the public TCP/IP port. You must set @code{listen} for this to have any effect." msgstr "Indique s'il faut écouter des connexions TLS sécurisées sur le port TCP/IP public. Vous devez remplir le champ @code{listen} pour que cela ait un effet." #. type: deftypevr -#: guix-git/doc/guix.texi:29932 +#: guix-git/doc/guix.texi:30297 msgid "It is necessary to setup a CA and issue server certificates before using this capability." msgstr "Il est nécessaire de mettre en place une CA et de créer un certificat serveur avant d'utiliser cette fonctionnalité." #. type: deftypevr -#: guix-git/doc/guix.texi:29937 +#: guix-git/doc/guix.texi:30302 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean listen-tcp?" msgstr "{paramètre de @code{libvirt-configuration}} boolean listen-tcp?" #. type: deftypevr -#: guix-git/doc/guix.texi:29940 +#: guix-git/doc/guix.texi:30305 msgid "Listen for unencrypted TCP connections on the public TCP/IP port. You must set @code{listen} for this to have any effect." msgstr "Écoute des connexions non-chiffrées sur le port TCP/IP public. Vous devez remplir le champ @code{listen} pour que cela ait un effet." #. type: deftypevr -#: guix-git/doc/guix.texi:29944 +#: guix-git/doc/guix.texi:30309 msgid "Using the TCP socket requires SASL authentication by default. Only SASL mechanisms which support data encryption are allowed. This is DIGEST_MD5 and GSSAPI (Kerberos5)." msgstr "L'utilisation des sockets TCP requiert une authentification SASL par défaut. Seuls les mécanismes SASL qui prennent en charge le chiffrement des données sont permis. Il s'agit de DIGEST_MD5 et GSSAPI (Kerberos5)." #. type: deftypevr -#: guix-git/doc/guix.texi:29949 +#: guix-git/doc/guix.texi:30314 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tls-port" msgstr "{paramètre de @code{libvirt-configuration}} string tls-port" #. type: deftypevr -#: guix-git/doc/guix.texi:29952 +#: guix-git/doc/guix.texi:30317 msgid "Port for accepting secure TLS connections. This can be a port number, or service name." msgstr "Port pour accepter les connexions TLS sécurisées. Il peut s'agir d'un numéro de port ou d'un nom de service." #. type: deftypevr -#: guix-git/doc/guix.texi:29954 +#: guix-git/doc/guix.texi:30319 msgid "Defaults to @samp{\"16514\"}." msgstr "La valeur par défaut est @samp{\"16514\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29957 +#: guix-git/doc/guix.texi:30322 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tcp-port" msgstr "{paramètre de @code{libvirt-configuration}} string tcp-port" #. type: deftypevr -#: guix-git/doc/guix.texi:29960 +#: guix-git/doc/guix.texi:30325 msgid "Port for accepting insecure TCP connections. This can be a port number, or service name." msgstr "Port sur lequel accepter les connexions TCP non sécurisées. Cela peut être un numéro de port ou un nom de service." #. type: deftypevr -#: guix-git/doc/guix.texi:29962 +#: guix-git/doc/guix.texi:30327 msgid "Defaults to @samp{\"16509\"}." msgstr "La valeur par défaut est @samp{\"16509\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29965 +#: guix-git/doc/guix.texi:30330 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string listen-addr" msgstr "{paramètre de @code{libvirt-configuration}} string listen-addr" #. type: deftypevr -#: guix-git/doc/guix.texi:29967 +#: guix-git/doc/guix.texi:30332 msgid "IP address or hostname used for client connections." msgstr "Adresse IP ou nom d'hôte utilisé pour les connexions des clients." #. type: deftypevr -#: guix-git/doc/guix.texi:29972 +#: guix-git/doc/guix.texi:30337 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean mdns-adv?" msgstr "{paramètre de @code{libvirt-configuration}} boolean mdns-adv?" #. type: deftypevr -#: guix-git/doc/guix.texi:29974 +#: guix-git/doc/guix.texi:30339 msgid "Flag toggling mDNS advertisement of the libvirt service." msgstr "Indique s'il faut annoncer le service libvirt en mDNS." #. type: deftypevr -#: guix-git/doc/guix.texi:29977 +#: guix-git/doc/guix.texi:30342 msgid "Alternatively can disable for all services on a host by stopping the Avahi daemon." msgstr "Autrement, vous pouvez désactiver cela pour tous les services en stoppant le démon Avahi." #. type: deftypevr -#: guix-git/doc/guix.texi:29982 +#: guix-git/doc/guix.texi:30347 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string mdns-name" msgstr "{paramètre de @code{libvirt-configuration}} string mdns-name" #. type: deftypevr -#: guix-git/doc/guix.texi:29985 +#: guix-git/doc/guix.texi:30350 msgid "Default mDNS advertisement name. This must be unique on the immediate broadcast network." msgstr "Nom annoncé par défaut sur mDNS. Cela doit être unique sur le réseau local." #. type: deftypevr -#: guix-git/doc/guix.texi:29987 +#: guix-git/doc/guix.texi:30352 msgid "Defaults to @samp{\"Virtualization Host \"}." msgstr "La valeur par défaut est @samp{\"Virtualization Host \"}." #. type: deftypevr -#: guix-git/doc/guix.texi:29990 +#: guix-git/doc/guix.texi:30355 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-group" msgstr "{paramètre de @code{libvirt-configuration}} string unix-sock-group" #. type: deftypevr -#: guix-git/doc/guix.texi:29994 +#: guix-git/doc/guix.texi:30359 msgid "UNIX domain socket group ownership. This can be used to allow a 'trusted' set of users access to management capabilities without becoming root." msgstr "Groupe propriétaire du socket Unix domain. Cela peut être utilisé pour permettre à un ensemble d'utilisateurs « de confiance » de gérer les fonctionnalités sans devenir root." #. type: deftypevr -#: guix-git/doc/guix.texi:29999 +#: guix-git/doc/guix.texi:30364 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-ro-perms" msgstr "{paramètre de @code{libvirt-configuration}} string unix-sock-ro-perms" #. type: deftypevr -#: guix-git/doc/guix.texi:30002 +#: guix-git/doc/guix.texi:30367 msgid "UNIX socket permissions for the R/O socket. This is used for monitoring VM status only." msgstr "Permission Unix pour le socket en lecture seule. Il est utilisé pour surveiller le statut des VM uniquement." #. type: deftypevr -#: guix-git/doc/guix.texi:30004 guix-git/doc/guix.texi:30022 +#: guix-git/doc/guix.texi:30369 guix-git/doc/guix.texi:30387 msgid "Defaults to @samp{\"0777\"}." msgstr "La valeur par défaut est @samp{\"0777\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30007 +#: guix-git/doc/guix.texi:30372 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-rw-perms" msgstr "{paramètre de @code{libvirt-configuration}} string unix-sock-rw-perms" #. type: deftypevr -#: guix-git/doc/guix.texi:30011 +#: guix-git/doc/guix.texi:30376 msgid "UNIX socket permissions for the R/W socket. Default allows only root. If PolicyKit is enabled on the socket, the default will change to allow everyone (eg, 0777)" msgstr "Permission Unix pour le socket en lecture-écriture. La valeur par défaut n'autorise que root. Si PolicyKit est activé sur le socket, la valeur par défaut change et permet tout le monde (c.-à-d.@: 0777)" #. type: deftypevr -#: guix-git/doc/guix.texi:30013 +#: guix-git/doc/guix.texi:30378 msgid "Defaults to @samp{\"0770\"}." msgstr "La valeur par défaut est @samp{\"0770\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30016 +#: guix-git/doc/guix.texi:30381 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-admin-perms" msgstr "{paramètre de @code{libvirt-configuration}} string unix-sock-admin-perms" #. type: deftypevr -#: guix-git/doc/guix.texi:30020 +#: guix-git/doc/guix.texi:30385 msgid "UNIX socket permissions for the admin socket. Default allows only owner (root), do not change it unless you are sure to whom you are exposing the access to." msgstr "Permissions Unix pour le socket d'administration. La valeur par défaut ne permet que le propriétaire (root), ne la changez pas à moins que vous ne soyez sûr de savoir à qui vous exposez cet accès." #. type: deftypevr -#: guix-git/doc/guix.texi:30025 +#: guix-git/doc/guix.texi:30390 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-dir" msgstr "{paramètre de @code{libvirt-configuration}} string unix-sock-dir" #. type: deftypevr -#: guix-git/doc/guix.texi:30027 +#: guix-git/doc/guix.texi:30392 msgid "The directory in which sockets will be found/created." msgstr "Le répertoire dans lequel les sockets sont créés." #. type: deftypevr -#: guix-git/doc/guix.texi:30029 +#: guix-git/doc/guix.texi:30394 msgid "Defaults to @samp{\"/var/run/libvirt\"}." msgstr "La valeur par défaut est @samp{\"/var/run/libvirt\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30032 +#: guix-git/doc/guix.texi:30397 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-unix-ro" msgstr "{paramètre de @code{libvirt-configuration}} string auth-unix-ro" #. type: deftypevr -#: guix-git/doc/guix.texi:30035 +#: guix-git/doc/guix.texi:30400 msgid "Authentication scheme for UNIX read-only sockets. By default socket permissions allow anyone to connect" msgstr "Schéma d'authentification pour les socket Unix en lecture-seule. Par défaut les permissions des socket permettent à n'importe qui de se connecter" #. type: deftypevr -#: guix-git/doc/guix.texi:30037 guix-git/doc/guix.texi:30046 +#: guix-git/doc/guix.texi:30402 guix-git/doc/guix.texi:30411 msgid "Defaults to @samp{\"polkit\"}." msgstr "La valeur par défaut est @samp{\"polkit\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30040 +#: guix-git/doc/guix.texi:30405 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-unix-rw" msgstr "{paramètre de @code{libvirt-configuration}} string auth-unix-rw" #. type: deftypevr -#: guix-git/doc/guix.texi:30044 +#: guix-git/doc/guix.texi:30409 msgid "Authentication scheme for UNIX read-write sockets. By default socket permissions only allow root. If PolicyKit support was compiled into libvirt, the default will be to use 'polkit' auth." msgstr "Schéma d'authentification pour les socket UNIX en lecture-écriture. Par défaut les permissions du socket ne permettent que root. Si le support de PolicyKit a été compilé dans libvirt, la valeur par défaut utilise l'authentification « polkit »." #. type: deftypevr -#: guix-git/doc/guix.texi:30049 +#: guix-git/doc/guix.texi:30414 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-tcp" msgstr "{paramètre de @code{libvirt-configuration}} string auth-tcp" #. type: deftypevr -#: guix-git/doc/guix.texi:30053 +#: guix-git/doc/guix.texi:30418 msgid "Authentication scheme for TCP sockets. If you don't enable SASL, then all TCP traffic is cleartext. Don't do this outside of a dev/test scenario." msgstr "Schéma d'authentification pour les sockets TCP. Si vous n'avez pas activé SASL, alors tout le trafic TCP est en clair. Ne le faites pas en dehors de scénario de développement ou de test." #. type: deftypevr -#: guix-git/doc/guix.texi:30055 +#: guix-git/doc/guix.texi:30420 msgid "Defaults to @samp{\"sasl\"}." msgstr "La valeur par défaut est @samp{\"sasl\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30058 +#: guix-git/doc/guix.texi:30423 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-tls" msgstr "{paramètre de @code{libvirt-configuration}} string auth-tls" #. type: deftypevr -#: guix-git/doc/guix.texi:30062 +#: guix-git/doc/guix.texi:30427 msgid "Authentication scheme for TLS sockets. TLS sockets already have encryption provided by the TLS layer, and limited authentication is done by certificates." msgstr "Schéma d'authentification pour les sockets TLS. Les sockets TLS sont déjà chiffrés par la couche TLS, et une authentification limitée est effectuée avec les certificats." #. type: deftypevr -#: guix-git/doc/guix.texi:30065 +#: guix-git/doc/guix.texi:30430 msgid "It is possible to make use of any SASL authentication mechanism as well, by using 'sasl' for this option" msgstr "Il est possible d'utiliser de n'importe quel mécanisme d'authentification SASL en utilisant « sasl » pour cette option" #. type: deftypevr -#: guix-git/doc/guix.texi:30067 +#: guix-git/doc/guix.texi:30432 msgid "Defaults to @samp{\"none\"}." msgstr "La valeur par défaut est @samp{\"none\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30070 +#: guix-git/doc/guix.texi:30435 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list access-drivers" msgstr "{paramètre de @code{libvirt-configuration}} optional-list access-drivers" #. type: deftypevr -#: guix-git/doc/guix.texi:30072 +#: guix-git/doc/guix.texi:30437 msgid "API access control scheme." msgstr "Schéma de contrôle d'accès à l'API." #. type: deftypevr -#: guix-git/doc/guix.texi:30075 +#: guix-git/doc/guix.texi:30440 msgid "By default an authenticated user is allowed access to all APIs. Access drivers can place restrictions on this." msgstr "Par défaut un utilisateur authentifié peut accéder à toutes les API. Les pilotes d'accès peuvent placer des restrictions là-dessus." #. type: deftypevr -#: guix-git/doc/guix.texi:30080 +#: guix-git/doc/guix.texi:30445 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string key-file" msgstr "{paramètre de @code{libvirt-configuration}} string key-file" #. type: deftypevr -#: guix-git/doc/guix.texi:30083 +#: guix-git/doc/guix.texi:30448 msgid "Server key file path. If set to an empty string, then no private key is loaded." msgstr "Chemin de fichier de la clef du serveur. Si la valeur est une chaîne vide, aucune clef privée n'est chargée." #. type: deftypevr -#: guix-git/doc/guix.texi:30088 +#: guix-git/doc/guix.texi:30453 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string cert-file" msgstr "{paramètre de @code{libvirt-configuration}} string cert-file" #. type: deftypevr -#: guix-git/doc/guix.texi:30091 +#: guix-git/doc/guix.texi:30456 msgid "Server key file path. If set to an empty string, then no certificate is loaded." msgstr "Chemin de fichier de la clef du serveur. Si la chaîne est vide, aucun certificat n'est chargé." #. type: deftypevr -#: guix-git/doc/guix.texi:30096 +#: guix-git/doc/guix.texi:30461 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string ca-file" msgstr "{paramètre de @code{libvirt-configuration}} string ca-file" #. type: deftypevr -#: guix-git/doc/guix.texi:30099 +#: guix-git/doc/guix.texi:30464 msgid "Server key file path. If set to an empty string, then no CA certificate is loaded." msgstr "Chemin de fichier de la clef du serveur. Si la chaîne est vide, aucun certificat de CA n'est chargé." #. type: deftypevr -#: guix-git/doc/guix.texi:30104 +#: guix-git/doc/guix.texi:30469 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string crl-file" msgstr "{paramètre de @code{libvirt-configuration}} string crl-file" #. type: deftypevr -#: guix-git/doc/guix.texi:30107 +#: guix-git/doc/guix.texi:30472 msgid "Certificate revocation list path. If set to an empty string, then no CRL is loaded." msgstr "Chemin de la liste de révocation des certificats. Si la chaîne est vide, aucun CRL n'est chargé." #. type: deftypevr -#: guix-git/doc/guix.texi:30112 +#: guix-git/doc/guix.texi:30477 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean tls-no-sanity-cert" msgstr "{paramètre de @code{libvirt-configuration}} boolean tls-no-sanity-cert" #. type: deftypevr -#: guix-git/doc/guix.texi:30114 +#: guix-git/doc/guix.texi:30479 msgid "Disable verification of our own server certificates." msgstr "Désactive la vérification de nos propres certificats serveurs." #. type: deftypevr -#: guix-git/doc/guix.texi:30117 +#: guix-git/doc/guix.texi:30482 msgid "When libvirtd starts it performs some sanity checks against its own certificates." msgstr "Lorsque libvirtd démarre il effectue des vérifications de routine sur ses propres certificats." #. type: deftypevr -#: guix-git/doc/guix.texi:30122 +#: guix-git/doc/guix.texi:30487 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean tls-no-verify-cert" msgstr "{paramètre de @code{libvirt-configuration}} boolean tls-no-verify-cert" #. type: deftypevr -#: guix-git/doc/guix.texi:30124 +#: guix-git/doc/guix.texi:30489 msgid "Disable verification of client certificates." msgstr "Désactive la vérification des certificats clients." #. type: deftypevr -#: guix-git/doc/guix.texi:30128 +#: guix-git/doc/guix.texi:30493 msgid "Client certificate verification is the primary authentication mechanism. Any client which does not present a certificate signed by the CA will be rejected." msgstr "La vérification des certificats clients est le mécanisme d'authentification principal. Tout client qui ne présent pas de certificat signé par la CA sera rejeté." #. type: deftypevr -#: guix-git/doc/guix.texi:30133 +#: guix-git/doc/guix.texi:30498 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list tls-allowed-dn-list" msgstr "{paramètre de @code{libvirt-configuration}} optional-list tls-allowed-dn-list" #. type: deftypevr -#: guix-git/doc/guix.texi:30135 +#: guix-git/doc/guix.texi:30500 msgid "Whitelist of allowed x509 Distinguished Name." msgstr "Liste blanche des Distinguished Name x509 autorisés." #. type: deftypevr -#: guix-git/doc/guix.texi:30140 +#: guix-git/doc/guix.texi:30505 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list sasl-allowed-usernames" msgstr "{paramètre de @code{libvirt-configuration}} optional-list sasl-allowed-usernames" #. type: deftypevr -#: guix-git/doc/guix.texi:30143 +#: guix-git/doc/guix.texi:30508 msgid "Whitelist of allowed SASL usernames. The format for username depends on the SASL authentication mechanism." msgstr "Liste blanche des noms d'utilisateur SASL permis. Le format des noms d'utilisateurs dépend du mécanisme d'authentification SASL." #. type: deftypevr -#: guix-git/doc/guix.texi:30148 +#: guix-git/doc/guix.texi:30513 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tls-priority" msgstr "{paramètre de @code{libvirt-configuration}} string tls-priority" #. type: deftypevr -#: guix-git/doc/guix.texi:30152 +#: guix-git/doc/guix.texi:30517 msgid "Override the compile time default TLS priority string. The default is usually @samp{\"NORMAL\"} unless overridden at build time. Only set this is it is desired for libvirt to deviate from the global default settings." msgstr "Modifie la chaine de priorité TLS par défaut fixée à la compilation. La valeur par défaut est typiquement @samp{NORMAL} à moins qu'elle n'ait été modifiée à la compilation. Ne l'indiquez que si vous voulez que libvirt agisse différemment des paramètres par défaut globaux." #. type: deftypevr -#: guix-git/doc/guix.texi:30154 +#: guix-git/doc/guix.texi:30519 msgid "Defaults to @samp{\"NORMAL\"}." msgstr "La valeur par défaut est @samp{\"NORMAL\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30157 +#: guix-git/doc/guix.texi:30522 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-clients" msgstr "{paramètre de @code{libvirt-configuration}} integer max-clients" #. type: deftypevr -#: guix-git/doc/guix.texi:30160 guix-git/doc/guix.texi:30584 +#: guix-git/doc/guix.texi:30525 guix-git/doc/guix.texi:30949 msgid "Maximum number of concurrent client connections to allow over all sockets combined." msgstr "Nombre maximum de connexions clientes en même temps sur tous les sockets." #. type: deftypevr -#: guix-git/doc/guix.texi:30162 +#: guix-git/doc/guix.texi:30527 msgid "Defaults to @samp{5000}." msgstr "La valeur par défaut est @samp{5000}." #. type: deftypevr -#: guix-git/doc/guix.texi:30165 +#: guix-git/doc/guix.texi:30530 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-queued-clients" msgstr "{paramètre de @code{libvirt-configuration}} integer max-queued-clients" #. type: deftypevr -#: guix-git/doc/guix.texi:30169 +#: guix-git/doc/guix.texi:30534 msgid "Maximum length of queue of connections waiting to be accepted by the daemon. Note, that some protocols supporting retransmission may obey this so that a later reattempt at connection succeeds." msgstr "Longueur maximum de la queue de connexions en attente d'acceptation du démon. Remarquez que certains protocoles supportant la retransmission peuvent obéir à ce paramètre pour qu'une connexion ultérieure réussisse." #. type: deftypevr -#: guix-git/doc/guix.texi:30174 +#: guix-git/doc/guix.texi:30539 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-anonymous-clients" msgstr "{paramètre de @code{libvirt-configuration}} integer max-anonymous-clients" #. type: deftypevr -#: guix-git/doc/guix.texi:30177 +#: guix-git/doc/guix.texi:30542 msgid "Maximum length of queue of accepted but not yet authenticated clients. Set this to zero to turn this feature off" msgstr "Longueur maximum de la queue des clients acceptés mais pas authentifiés. Indiquez zéro pour désactiver ce paramètre" #. type: deftypevr -#: guix-git/doc/guix.texi:30179 guix-git/doc/guix.texi:30197 -#: guix-git/doc/guix.texi:30213 +#: guix-git/doc/guix.texi:30544 guix-git/doc/guix.texi:30562 +#: guix-git/doc/guix.texi:30578 msgid "Defaults to @samp{20}." msgstr "La valeur par défaut est @samp{20}." #. type: deftypevr -#: guix-git/doc/guix.texi:30182 +#: guix-git/doc/guix.texi:30547 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer min-workers" msgstr "{paramètre de @code{libvirt-configuration}} integer min-workers" #. type: deftypevr -#: guix-git/doc/guix.texi:30184 +#: guix-git/doc/guix.texi:30549 msgid "Number of workers to start up initially." msgstr "Nombre de processus de travail démarrés initialement." #. type: deftypevr -#: guix-git/doc/guix.texi:30189 +#: guix-git/doc/guix.texi:30554 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-workers" msgstr "{paramètre de @code{libvirt-configuration}} integer max-workers" #. type: deftypevr -#: guix-git/doc/guix.texi:30191 +#: guix-git/doc/guix.texi:30556 msgid "Maximum number of worker threads." msgstr "Nombre maximum de threads de travail." #. type: deftypevr -#: guix-git/doc/guix.texi:30195 +#: guix-git/doc/guix.texi:30560 msgid "If the number of active clients exceeds @code{min-workers}, then more threads are spawned, up to max_workers limit. Typically you'd want max_workers to equal maximum number of clients allowed." msgstr "Si le nombre de clients actifs dépasse @code{min-workers}, plus de threads seront démarrés, jusqu'à la limite de max_workers. Typiquement vous voulez que max_workers soit égal au nombre maximum de clients permis." #. type: deftypevr -#: guix-git/doc/guix.texi:30200 +#: guix-git/doc/guix.texi:30565 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer prio-workers" msgstr "{paramètre de @code{libvirt-configuration}} integer prio-workers" #. type: deftypevr -#: guix-git/doc/guix.texi:30204 +#: guix-git/doc/guix.texi:30569 msgid "Number of priority workers. If all workers from above pool are stuck, some calls marked as high priority (notably domainDestroy) can be executed in this pool." msgstr "Nombre de travailleurs prioritaires. Si tous les threads de travail du groupe ci-dessus sont bloqués, certains appels marqués comme prioritaires (notamment domainDestroy) peuvent être exécutés par ce groupe." #. type: deftypevr -#: guix-git/doc/guix.texi:30209 +#: guix-git/doc/guix.texi:30574 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-requests" msgstr "{paramètre de @code{libvirt-configuration}} integer max-requests" #. type: deftypevr -#: guix-git/doc/guix.texi:30211 +#: guix-git/doc/guix.texi:30576 msgid "Total global limit on concurrent RPC calls." msgstr "Limite globale totale sur les appels RPC concurrents." #. type: deftypevr -#: guix-git/doc/guix.texi:30216 +#: guix-git/doc/guix.texi:30581 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-client-requests" msgstr "{paramètre de @code{libvirt-configuration}} integer max-client-requests" #. type: deftypevr -#: guix-git/doc/guix.texi:30220 +#: guix-git/doc/guix.texi:30585 msgid "Limit on concurrent requests from a single client connection. To avoid one client monopolizing the server this should be a small fraction of the global max_requests and max_workers parameter." msgstr "Limite de requêtes concurrentes depuis une connexion cliente unique. Pour éviter qu'un client ne monopolise le serveur, vous devriez indiquer une petite partie des paramètres global max_requests et max_workers." #. type: deftypevr -#: guix-git/doc/guix.texi:30225 +#: guix-git/doc/guix.texi:30590 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-min-workers" msgstr "{paramètre de @code{libvirt-configuration}} integer admin-min-workers" #. type: deftypevr -#: guix-git/doc/guix.texi:30227 +#: guix-git/doc/guix.texi:30592 msgid "Same as @code{min-workers} but for the admin interface." msgstr "Comme @code{min-workers} mais pour l'interface d'administration." #. type: deftypevr -#: guix-git/doc/guix.texi:30232 +#: guix-git/doc/guix.texi:30597 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-workers" msgstr "{paramètre de @code{libvirt-configuration}} integer admin-max-workers" #. type: deftypevr -#: guix-git/doc/guix.texi:30234 +#: guix-git/doc/guix.texi:30599 msgid "Same as @code{max-workers} but for the admin interface." msgstr "Comme @code{max-workers} mais pour l'interface d'administration." #. type: deftypevr -#: guix-git/doc/guix.texi:30239 +#: guix-git/doc/guix.texi:30604 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-clients" msgstr "{paramètre de @code{libvirt-configuration}} integer admin-max-clients" #. type: deftypevr -#: guix-git/doc/guix.texi:30241 +#: guix-git/doc/guix.texi:30606 msgid "Same as @code{max-clients} but for the admin interface." msgstr "Comme @code{max-clients} mais pour l'interface d'administration." #. type: deftypevr -#: guix-git/doc/guix.texi:30246 +#: guix-git/doc/guix.texi:30611 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-queued-clients" msgstr "{paramètre de @code{libvirt-configuration}} integer admin-max-queued-clients" #. type: deftypevr -#: guix-git/doc/guix.texi:30248 +#: guix-git/doc/guix.texi:30613 msgid "Same as @code{max-queued-clients} but for the admin interface." msgstr "Comme @code{max-queued-clients} mais pour l'interface d'administration." #. type: deftypevr -#: guix-git/doc/guix.texi:30253 +#: guix-git/doc/guix.texi:30618 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-client-requests" msgstr "{paramètre de @code{libvirt-configuration}} integer admin-max-client-requests" #. type: deftypevr -#: guix-git/doc/guix.texi:30255 +#: guix-git/doc/guix.texi:30620 msgid "Same as @code{max-client-requests} but for the admin interface." msgstr "Comme @code{max-client-requests} mais pour l'interface d'administration." #. type: deftypevr -#: guix-git/doc/guix.texi:30260 +#: guix-git/doc/guix.texi:30625 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer log-level" msgstr "{paramètre de @code{libvirt-configuration}} integer log-level" #. type: deftypevr -#: guix-git/doc/guix.texi:30262 guix-git/doc/guix.texi:30486 +#: guix-git/doc/guix.texi:30627 guix-git/doc/guix.texi:30851 msgid "Logging level. 4 errors, 3 warnings, 2 information, 1 debug." msgstr "Niveau de journalisation. 4 : erreurs, 3 : avertissements, 2 : information, 1 : débogage." #. type: deftypevr -#: guix-git/doc/guix.texi:30267 +#: guix-git/doc/guix.texi:30632 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string log-filters" msgstr "{paramètre de @code{libvirt-configuration}} string log-filters" #. type: deftypevr -#: guix-git/doc/guix.texi:30269 guix-git/doc/guix.texi:30493 +#: guix-git/doc/guix.texi:30634 guix-git/doc/guix.texi:30858 msgid "Logging filters." msgstr "Filtres de journalisation." #. type: deftypevr -#: guix-git/doc/guix.texi:30272 +#: guix-git/doc/guix.texi:30637 msgid "A filter allows to select a different logging level for a given category of logs. The format for a filter is one of:" msgstr "Un filtre qui permet de sélectionner un niveau de journalisation différent pour une catégorie donnée. Le format d'un filtre est :" #. type: itemize -#: guix-git/doc/guix.texi:30276 guix-git/doc/guix.texi:30500 +#: guix-git/doc/guix.texi:30641 guix-git/doc/guix.texi:30865 msgid "x:name" msgstr "x:nom" #. type: itemize -#: guix-git/doc/guix.texi:30279 guix-git/doc/guix.texi:30503 +#: guix-git/doc/guix.texi:30644 guix-git/doc/guix.texi:30868 msgid "x:+name" msgstr "x:+nom" #. type: deftypevr -#: guix-git/doc/guix.texi:30290 +#: guix-git/doc/guix.texi:30655 msgid "where @code{name} is a string which is matched against the category given in the @code{VIR_LOG_INIT()} at the top of each libvirt source file, e.g., @samp{\"remote\"}, @samp{\"qemu\"}, or @samp{\"util.json\"} (the name in the filter can be a substring of the full category name, in order to match multiple similar categories), the optional @samp{\"+\"} prefix tells libvirt to log stack trace for each message matching name, and @code{x} is the minimal level where matching messages should be logged:" msgstr "où @code{nom} est une chaine de caractères qui correspond à la catégorie donnée dans @code{VIR_LOG_INIT()} au début de chaque fichier source de libvirt, p.@: ex.@: @samp{remote}, @samp{qemu} ou @samp{util.json} (le nom dans le filtre peut être une sous-chaine du nom complet de la catégorie, pour pouvoir correspondre à plusieurs catégories similaires), le préfixe facultatif @samp{+} dit à libvirt d'enregistrer les traces de piles pour chaque message qui correspond au nom, et @code{x} est le niveau minimal des messages qui devraient être enregistrés :" #. type: itemize -#: guix-git/doc/guix.texi:30294 guix-git/doc/guix.texi:30339 -#: guix-git/doc/guix.texi:30517 guix-git/doc/guix.texi:30562 +#: guix-git/doc/guix.texi:30659 guix-git/doc/guix.texi:30704 +#: guix-git/doc/guix.texi:30882 guix-git/doc/guix.texi:30927 msgid "1: DEBUG" msgstr "1 : DEBUG" #. type: itemize -#: guix-git/doc/guix.texi:30297 guix-git/doc/guix.texi:30342 -#: guix-git/doc/guix.texi:30520 guix-git/doc/guix.texi:30565 +#: guix-git/doc/guix.texi:30662 guix-git/doc/guix.texi:30707 +#: guix-git/doc/guix.texi:30885 guix-git/doc/guix.texi:30930 msgid "2: INFO" msgstr "2 : INFO" #. type: itemize -#: guix-git/doc/guix.texi:30300 guix-git/doc/guix.texi:30345 -#: guix-git/doc/guix.texi:30523 guix-git/doc/guix.texi:30568 +#: guix-git/doc/guix.texi:30665 guix-git/doc/guix.texi:30710 +#: guix-git/doc/guix.texi:30888 guix-git/doc/guix.texi:30933 msgid "3: WARNING" msgstr "3 : WARNING" #. type: itemize -#: guix-git/doc/guix.texi:30303 guix-git/doc/guix.texi:30348 -#: guix-git/doc/guix.texi:30526 guix-git/doc/guix.texi:30571 +#: guix-git/doc/guix.texi:30668 guix-git/doc/guix.texi:30713 +#: guix-git/doc/guix.texi:30891 guix-git/doc/guix.texi:30936 msgid "4: ERROR" msgstr "4 : ERROR" #. type: deftypevr -#: guix-git/doc/guix.texi:30308 guix-git/doc/guix.texi:30531 +#: guix-git/doc/guix.texi:30673 guix-git/doc/guix.texi:30896 msgid "Multiple filters can be defined in a single filters statement, they just need to be separated by spaces." msgstr "On peut définir plusieurs filtres dans une seule déclaration de filtres, ils doivent juste être séparés par des espaces." #. type: deftypevr -#: guix-git/doc/guix.texi:30310 guix-git/doc/guix.texi:30533 +#: guix-git/doc/guix.texi:30675 guix-git/doc/guix.texi:30898 msgid "Defaults to @samp{\"3:remote 4:event\"}." msgstr "La valeur par défaut est @samp{\"3:remote 4:event\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30313 +#: guix-git/doc/guix.texi:30678 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string log-outputs" msgstr "{paramètre de @code{libvirt-configuration}} string log-outputs" #. type: deftypevr -#: guix-git/doc/guix.texi:30315 guix-git/doc/guix.texi:30538 +#: guix-git/doc/guix.texi:30680 guix-git/doc/guix.texi:30903 msgid "Logging outputs." msgstr "Sorties de débogage." #. type: deftypevr -#: guix-git/doc/guix.texi:30318 +#: guix-git/doc/guix.texi:30683 msgid "An output is one of the places to save logging information. The format for an output can be:" msgstr "Une sortie est l'un des endroits où les journaux sont enregistrés. Le format d'une sortie peut être :" #. type: item -#: guix-git/doc/guix.texi:30320 guix-git/doc/guix.texi:30543 +#: guix-git/doc/guix.texi:30685 guix-git/doc/guix.texi:30908 #, no-wrap msgid "x:stderr" msgstr "x:stderr" #. type: table -#: guix-git/doc/guix.texi:30322 guix-git/doc/guix.texi:30545 +#: guix-git/doc/guix.texi:30687 guix-git/doc/guix.texi:30910 msgid "output goes to stderr" msgstr "la sortie va vers stderr" #. type: item -#: guix-git/doc/guix.texi:30323 guix-git/doc/guix.texi:30546 +#: guix-git/doc/guix.texi:30688 guix-git/doc/guix.texi:30911 #, no-wrap msgid "x:syslog:name" msgstr "x:syslog:nom" #. type: table -#: guix-git/doc/guix.texi:30325 guix-git/doc/guix.texi:30548 +#: guix-git/doc/guix.texi:30690 guix-git/doc/guix.texi:30913 msgid "use syslog for the output and use the given name as the ident" msgstr "utilise syslog comme sortie et utilise le nom donné comme identifiant" #. type: item -#: guix-git/doc/guix.texi:30326 guix-git/doc/guix.texi:30549 +#: guix-git/doc/guix.texi:30691 guix-git/doc/guix.texi:30914 #, no-wrap msgid "x:file:file_path" msgstr "x:file:chemin_fichier" #. type: table -#: guix-git/doc/guix.texi:30328 guix-git/doc/guix.texi:30551 +#: guix-git/doc/guix.texi:30693 guix-git/doc/guix.texi:30916 msgid "output to a file, with the given filepath" msgstr "la sortie va vers un fichier, avec le chemin donné" #. type: item -#: guix-git/doc/guix.texi:30329 guix-git/doc/guix.texi:30552 +#: guix-git/doc/guix.texi:30694 guix-git/doc/guix.texi:30917 #, no-wrap msgid "x:journald" msgstr "x:journald" #. type: table -#: guix-git/doc/guix.texi:30331 guix-git/doc/guix.texi:30554 +#: guix-git/doc/guix.texi:30696 guix-git/doc/guix.texi:30919 msgid "output to journald logging system" msgstr "la sortie va vers le système de journalisation journald" #. type: deftypevr -#: guix-git/doc/guix.texi:30335 guix-git/doc/guix.texi:30558 +#: guix-git/doc/guix.texi:30700 guix-git/doc/guix.texi:30923 msgid "In all case the x prefix is the minimal level, acting as a filter" msgstr "Dans tous les cas, le préfixe x est le niveau minimal, qui agit comme un filtre" #. type: deftypevr -#: guix-git/doc/guix.texi:30353 guix-git/doc/guix.texi:30576 +#: guix-git/doc/guix.texi:30718 guix-git/doc/guix.texi:30941 msgid "Multiple outputs can be defined, they just need to be separated by spaces." msgstr "Plusieurs sorties peuvent être définies, elles doivent juste être séparées par des espaces." #. type: deftypevr -#: guix-git/doc/guix.texi:30355 guix-git/doc/guix.texi:30578 +#: guix-git/doc/guix.texi:30720 guix-git/doc/guix.texi:30943 msgid "Defaults to @samp{\"3:stderr\"}." msgstr "La valeur par défaut est @samp{\"3:stderr\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30358 +#: guix-git/doc/guix.texi:30723 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer audit-level" msgstr "{paramètre de @code{libvirt-configuration}} integer audit-level" #. type: deftypevr -#: guix-git/doc/guix.texi:30360 +#: guix-git/doc/guix.texi:30725 msgid "Allows usage of the auditing subsystem to be altered" msgstr "Permet de modifier l'utilisation du sous-système d'audit" #. type: itemize -#: guix-git/doc/guix.texi:30364 +#: guix-git/doc/guix.texi:30729 msgid "0: disable all auditing" msgstr "0 : désactive tout audit" #. type: itemize -#: guix-git/doc/guix.texi:30367 +#: guix-git/doc/guix.texi:30732 msgid "1: enable auditing, only if enabled on host" msgstr "1 : active l'audit, seulement s'il est activé sur l'hôte" #. type: itemize -#: guix-git/doc/guix.texi:30370 +#: guix-git/doc/guix.texi:30735 msgid "2: enable auditing, and exit if disabled on host." msgstr "2 : active l'audit, et quitte s'il est désactivé sur l'hôte." #. type: deftypevr -#: guix-git/doc/guix.texi:30377 +#: guix-git/doc/guix.texi:30742 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean audit-logging" msgstr "{paramètre de @code{libvirt-configuration}} boolean audit-logging" #. type: deftypevr -#: guix-git/doc/guix.texi:30379 +#: guix-git/doc/guix.texi:30744 msgid "Send audit messages via libvirt logging infrastructure." msgstr "Envoie les messages d'audit via l'infrastructure de journalisation de libvirt." #. type: deftypevr -#: guix-git/doc/guix.texi:30384 +#: guix-git/doc/guix.texi:30749 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-string host-uuid" msgstr "{paramètre de @code{libvirt-configuration}} optional-string host-uuid" #. type: deftypevr -#: guix-git/doc/guix.texi:30386 +#: guix-git/doc/guix.texi:30751 msgid "Host UUID@. UUID must not have all digits be the same." msgstr "UUID de l'hôte. L'UUID ne doit pas avoir tous ses nombres identiques." #. type: deftypevr -#: guix-git/doc/guix.texi:30391 +#: guix-git/doc/guix.texi:30756 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string host-uuid-source" msgstr "{paramètre de @code{libvirt-configuration}} string host-uuid-source" #. type: deftypevr -#: guix-git/doc/guix.texi:30393 +#: guix-git/doc/guix.texi:30758 msgid "Source to read host UUID." msgstr "Source où lire l'UUID de l'hôte." #. type: itemize -#: guix-git/doc/guix.texi:30397 +#: guix-git/doc/guix.texi:30762 msgid "@code{smbios}: fetch the UUID from @code{dmidecode -s system-uuid}" msgstr "@code{smbios} : récupère l'UUID à partir de @code{dmidecode -s system-uuid}" #. type: itemize -#: guix-git/doc/guix.texi:30400 +#: guix-git/doc/guix.texi:30765 msgid "@code{machine-id}: fetch the UUID from @code{/etc/machine-id}" msgstr "@code{machine-id} : récupère l'UUID à partir de @code{/etc/machine-id}" #. type: deftypevr -#: guix-git/doc/guix.texi:30405 +#: guix-git/doc/guix.texi:30770 msgid "If @code{dmidecode} does not provide a valid UUID a temporary UUID will be generated." msgstr "Si @code{dmidecode} ne fournit pas un UUID valide, un UUID temporaire sera généré." #. type: deftypevr -#: guix-git/doc/guix.texi:30407 +#: guix-git/doc/guix.texi:30772 msgid "Defaults to @samp{\"smbios\"}." msgstr "La valeur par défaut est @samp{\"smbios\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:30410 +#: guix-git/doc/guix.texi:30775 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer keepalive-interval" msgstr "{paramètre de @code{libvirt-configuration}} integer keepalive-interval" #. type: deftypevr -#: guix-git/doc/guix.texi:30415 +#: guix-git/doc/guix.texi:30780 msgid "A keepalive message is sent to a client after @code{keepalive_interval} seconds of inactivity to check if the client is still responding. If set to -1, libvirtd will never send keepalive requests; however clients can still send them and the daemon will send responses." msgstr "Un message keepalive est envoyé au client après @code{keepalive_interval} secondes d'inactivité pour vérifier si le client répond toujours. Si la valeur est -1, libvirtd n'enverra jamais de requête keepalive ; cependant les clients peuvent toujours en envoyer et le démon y répondra." #. type: deftypevr -#: guix-git/doc/guix.texi:30420 +#: guix-git/doc/guix.texi:30785 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer keepalive-count" msgstr "{paramètre de @code{libvirt-configuration}} integer keepalive-count" #. type: deftypevr -#: guix-git/doc/guix.texi:30424 +#: guix-git/doc/guix.texi:30789 msgid "Maximum number of keepalive messages that are allowed to be sent to the client without getting any response before the connection is considered broken." msgstr "Nombre maximum de messages keepalive qui peuvent être envoyés au client sans réponse avant que la connexion ne soit considérée comme cassée." #. type: deftypevr -#: guix-git/doc/guix.texi:30431 +#: guix-git/doc/guix.texi:30796 msgid "In other words, the connection is automatically closed approximately after @code{keepalive_interval * (keepalive_count + 1)} seconds since the last message received from the client. When @code{keepalive-count} is set to 0, connections will be automatically closed after @code{keepalive-interval} seconds of inactivity without sending any keepalive messages." msgstr "En d'autres termes, la connexion est approximativement fermée après @code{keepalive_interval * (keepalive_count + 1)} secondes après le dernier message reçu de la part du client. Lorsque @code{keepalive-count} est à 0, les connexions seront automatiquement fermées après @code{keepalive-interval} secondes d'inactivité sans envoyer le moindre message keepalive." #. type: deftypevr -#: guix-git/doc/guix.texi:30436 +#: guix-git/doc/guix.texi:30801 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-keepalive-interval" msgstr "{paramètre de @code{libvirt-configuration}} integer admin-keepalive-interval" #. type: deftypevr -#: guix-git/doc/guix.texi:30438 guix-git/doc/guix.texi:30445 +#: guix-git/doc/guix.texi:30803 guix-git/doc/guix.texi:30810 msgid "Same as above but for admin interface." msgstr "Comme précédemment, mais pour l'interface d'administration." #. type: deftypevr -#: guix-git/doc/guix.texi:30443 +#: guix-git/doc/guix.texi:30808 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-keepalive-count" msgstr "{paramètre de @code{libvirt-configuration}} integer admin-keepalive-count" #. type: deftypevr -#: guix-git/doc/guix.texi:30450 +#: guix-git/doc/guix.texi:30815 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer ovs-timeout" msgstr "{paramètre de @code{libvirt-configuration}} integer ovs-timeout" #. type: deftypevr -#: guix-git/doc/guix.texi:30452 +#: guix-git/doc/guix.texi:30817 msgid "Timeout for Open vSwitch calls." msgstr "Délai d'attente pour les appels Open vSwitch." #. type: deftypevr -#: guix-git/doc/guix.texi:30456 +#: guix-git/doc/guix.texi:30821 msgid "The @code{ovs-vsctl} utility is used for the configuration and its timeout option is set by default to 5 seconds to avoid potential infinite waits blocking libvirt." msgstr "L'utilitaire @code{ovs-vsctl} est utilisé pour la configuration et son option de délai d'attente est à 5 secondes pour éviter qu'une attente infinie ne bloque libvirt." #. type: subsubheading -#: guix-git/doc/guix.texi:30463 +#: guix-git/doc/guix.texi:30828 #, no-wrap msgid "Virtlog daemon" msgstr "Démon Virrlog" #. type: Plain text -#: guix-git/doc/guix.texi:30466 +#: guix-git/doc/guix.texi:30831 msgid "The virtlogd service is a server side daemon component of libvirt that is used to manage logs from virtual machine consoles." msgstr "Le service virtlogd est un démon côté serveur qui fait partie de libvirt, utilisé pour gérer les journaux des consoles des machines virtuelles." #. type: Plain text -#: guix-git/doc/guix.texi:30472 +#: guix-git/doc/guix.texi:30837 msgid "This daemon is not used directly by libvirt client applications, rather it is called on their behalf by @code{libvirtd}. By maintaining the logs in a standalone daemon, the main @code{libvirtd} daemon can be restarted without risk of losing logs. The @code{virtlogd} daemon has the ability to re-exec() itself upon receiving @code{SIGUSR1}, to allow live upgrades without downtime." msgstr "Ce démon n'est pas utilisé directement par les clients libvirt, mais il est appelé pour eux par @code{libvirtd}. En maintenant les journaux dans un démon séparé, le démon @code{libvirtd} principal peut être redémarré sans risque de perte de journaux. Le démon @code{virtlogd} a la possibilité de ré-exécuter exec() sur lui-même quand il reçoit @code{SIGUSR1}, pour permettre des mises à jour à chaud sans temps mort." #. type: deffn -#: guix-git/doc/guix.texi:30473 +#: guix-git/doc/guix.texi:30838 #, no-wrap msgid "{Scheme Variable} virtlog-service-type" msgstr "{Variable Scheme} virtlog-service-type" #. type: deffn -#: guix-git/doc/guix.texi:30476 +#: guix-git/doc/guix.texi:30841 msgid "This is the type of the virtlog daemon. Its value must be a @code{virtlog-configuration}." msgstr "Le type de service pour le démon virtlogd. Sa valeur doit être un @code{virtlog-configuration}." #. type: lisp -#: guix-git/doc/guix.texi:30481 +#: guix-git/doc/guix.texi:30846 #, no-wrap msgid "" "(service virtlog-service-type\n" @@ -57485,122 +58220,122 @@ msgstr "" " (max-clients 1000)))\n" #. type: deftypevr -#: guix-git/doc/guix.texi:30484 +#: guix-git/doc/guix.texi:30849 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer log-level" msgstr "{paramètre de @code{virtlog-configuration}} integer log-level" #. type: deftypevr -#: guix-git/doc/guix.texi:30491 +#: guix-git/doc/guix.texi:30856 #, no-wrap msgid "{@code{virtlog-configuration} parameter} string log-filters" msgstr "{paramètre de @code{virtlog-configuration}} string log-filters" #. type: deftypevr -#: guix-git/doc/guix.texi:30496 +#: guix-git/doc/guix.texi:30861 msgid "A filter allows to select a different logging level for a given category of logs The format for a filter is one of:" msgstr "Un filtre qui permet de sélectionner plusieurs niveaux de journalisation pour une catégorie donnée. Le format d'un filtre est :" #. type: deftypevr -#: guix-git/doc/guix.texi:30513 +#: guix-git/doc/guix.texi:30878 msgid "where @code{name} is a string which is matched against the category given in the @code{VIR_LOG_INIT()} at the top of each libvirt source file, e.g., \"remote\", \"qemu\", or \"util.json\" (the name in the filter can be a substring of the full category name, in order to match multiple similar categories), the optional \"+\" prefix tells libvirt to log stack trace for each message matching name, and @code{x} is the minimal level where matching messages should be logged:" msgstr "où @code{nom} est une chaîne de caractères qui correspond à la catégorie donnée dans @code{VIR_LOG_INIT()} au début de chaque fichier source de libvirt, p.@: ex.@: « remote », « qemu » ou « util.json » (le nom dans le filtre peut être une sous-chaîne du nom complet de la catégorie, pour pouvoir correspondre à plusieurs catégories similaires), le préfixe facultatif « + » dit à libvirt d'enregistrer les traces de piles pour chaque message qui correspond au nom, et @code{x} est le niveau minimal des messages qui devraient être enregistrés :" #. type: deftypevr -#: guix-git/doc/guix.texi:30536 +#: guix-git/doc/guix.texi:30901 #, no-wrap msgid "{@code{virtlog-configuration} parameter} string log-outputs" msgstr "{paramètre de @code{virtlog-configuration}} string log-outputs" #. type: deftypevr -#: guix-git/doc/guix.texi:30541 +#: guix-git/doc/guix.texi:30906 msgid "An output is one of the places to save logging information The format for an output can be:" msgstr "Une sortie est l'un des endroits où les journaux sont enregistrés. Le format d'une sortie peut être :" #. type: deftypevr -#: guix-git/doc/guix.texi:30581 +#: guix-git/doc/guix.texi:30946 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-clients" msgstr "{paramètre de @code{virtlog-configuration}} integer max-clients" #. type: deftypevr -#: guix-git/doc/guix.texi:30586 +#: guix-git/doc/guix.texi:30951 msgid "Defaults to @samp{1024}." msgstr "La valeur par défaut est @samp{1024}." #. type: deftypevr -#: guix-git/doc/guix.texi:30589 +#: guix-git/doc/guix.texi:30954 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-size" msgstr "{paramètre de @code{virtlog-configuration}} integer max-size" #. type: deftypevr -#: guix-git/doc/guix.texi:30591 +#: guix-git/doc/guix.texi:30956 msgid "Maximum file size before rolling over." msgstr "Taille de fichier maximale avant roulement." #. type: deftypevr -#: guix-git/doc/guix.texi:30593 +#: guix-git/doc/guix.texi:30958 msgid "Defaults to @samp{2MB}" msgstr "La valeur par défaut est @samp{2MB}" #. type: deftypevr -#: guix-git/doc/guix.texi:30596 +#: guix-git/doc/guix.texi:30961 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-backups" msgstr "{paramètre de @code{virtlog-configuration}} integer max-backups" #. type: deftypevr -#: guix-git/doc/guix.texi:30598 +#: guix-git/doc/guix.texi:30963 msgid "Maximum number of backup files to keep." msgstr "Nombre maximal de fichiers de sauvegardes à garder." #. type: deftypevr -#: guix-git/doc/guix.texi:30600 +#: guix-git/doc/guix.texi:30965 msgid "Defaults to @samp{3}" msgstr "La valeur par défaut est @samp{3}" #. type: anchor{#1} -#: guix-git/doc/guix.texi:30604 +#: guix-git/doc/guix.texi:30969 msgid "transparent-emulation-qemu" msgstr "transparent-emulation-qemu" #. type: subsubheading -#: guix-git/doc/guix.texi:30604 +#: guix-git/doc/guix.texi:30969 #, no-wrap msgid "Transparent Emulation with QEMU" msgstr "Émulation transparente avec QEMU" #. type: cindex -#: guix-git/doc/guix.texi:30606 guix-git/doc/guix.texi:30686 +#: guix-git/doc/guix.texi:30971 guix-git/doc/guix.texi:31051 #, no-wrap msgid "emulation" msgstr "émulation" #. type: code{#1} -#: guix-git/doc/guix.texi:30607 +#: guix-git/doc/guix.texi:30972 #, no-wrap msgid "binfmt_misc" msgstr "binfmt_misc" #. type: Plain text -#: guix-git/doc/guix.texi:30615 +#: guix-git/doc/guix.texi:30980 msgid "@code{qemu-binfmt-service-type} provides support for transparent emulation of program binaries built for different architectures---e.g., it allows you to transparently execute an ARMv7 program on an x86_64 machine. It achieves this by combining the @uref{https://www.qemu.org, QEMU} emulator and the @code{binfmt_misc} feature of the kernel Linux. This feature only allows you to emulate GNU/Linux on a different architecture, but see below for GNU/Hurd support." msgstr "@code{qemu-binfmt-service-type} fournit le support de l'émulation transparente de binaires construits pour des architectures différentes — p.@: ex.@: il permet d'exécuter de manière transparente des programmes ARMv7 sur une machine x86_64. Cela se fait en combinant l'émulateur @uref{https://www.qemu.org, QEMU} et la fonctionnalité @code{binfmt_misc} du noyau Linux. Cette fonctionnalité ne vous permet que d'émuler GNU/Linux sur une architecture différente, mais regardez plus bas pour GNU/Hurd." #. type: defvr -#: guix-git/doc/guix.texi:30616 +#: guix-git/doc/guix.texi:30981 #, no-wrap msgid "{Scheme Variable} qemu-binfmt-service-type" msgstr "{Variable Scheme} qemu-binfmt-service-type" #. type: defvr -#: guix-git/doc/guix.texi:30621 +#: guix-git/doc/guix.texi:30986 msgid "This is the type of the QEMU/binfmt service for transparent emulation. Its value must be a @code{qemu-binfmt-configuration} object, which specifies the QEMU package to use as well as the architecture we want to emulated:" msgstr "Le type du service QEMU/binfmt pour l'émulation transparente. Sa valeur doit être un objet @code{qemu-binfmt-configuration}, qui spécifie le paquet QEMU à utiliser ainsi que l'architecture que vous voulez émuler :" #. type: lisp -#: guix-git/doc/guix.texi:30626 +#: guix-git/doc/guix.texi:30991 #, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -57612,39 +58347,39 @@ msgstr "" " (platforms (lookup-qemu-platforms \"arm\" \"aarch64\"))))\n" #. type: defvr -#: guix-git/doc/guix.texi:30632 +#: guix-git/doc/guix.texi:30997 msgid "In this example, we enable transparent emulation for the ARM and aarch64 platforms. Running @code{herd stop qemu-binfmt} turns it off, and running @code{herd start qemu-binfmt} turns it back on (@pxref{Invoking herd, the @command{herd} command,, shepherd, The GNU Shepherd Manual})." msgstr "Dans cet exemple, on active l'émulation transparente pour les plateformes ARM et aarch64. Lancer @code{herd stop qemu-binfmt} l'éteint et lancer @code{herd start qemu-binfmt} le rallume (@pxref{Invoking herd, the @command{herd} command,, shepherd, The GNU Shepherd Manual})." #. type: deftp -#: guix-git/doc/guix.texi:30634 +#: guix-git/doc/guix.texi:30999 #, no-wrap msgid "{Data Type} qemu-binfmt-configuration" msgstr "{Type de données} qemu-binfmt-configuration" #. type: deftp -#: guix-git/doc/guix.texi:30636 +#: guix-git/doc/guix.texi:31001 msgid "This is the configuration for the @code{qemu-binfmt} service." msgstr "La configuration du service @code{qemu-binfmt}." #. type: item -#: guix-git/doc/guix.texi:30638 +#: guix-git/doc/guix.texi:31003 #, no-wrap msgid "@code{platforms} (default: @code{'()})" msgstr "@code{platforms} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:30641 +#: guix-git/doc/guix.texi:31006 msgid "The list of emulated QEMU platforms. Each item must be a @dfn{platform object} as returned by @code{lookup-qemu-platforms} (see below)." msgstr "La liste des plates-formes émulées par QEMU. Chaque élément doit être un objet @dfn{platform object} tel que renvoyé par @code{lookup-qemu-platforms} (voir plus bas)." #. type: table -#: guix-git/doc/guix.texi:30644 +#: guix-git/doc/guix.texi:31009 msgid "For example, let's suppose you're on an x86_64 machine and you have this service:" msgstr "Par exemple, supposons que vous soyez sur une machine x86_64 et que vous avez ce services :" #. type: lisp -#: guix-git/doc/guix.texi:30649 +#: guix-git/doc/guix.texi:31014 #, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -57656,79 +58391,79 @@ msgstr "" " (platforms (lookup-qemu-platforms \"arm\"))))\n" #. type: table -#: guix-git/doc/guix.texi:30652 +#: guix-git/doc/guix.texi:31017 msgid "You can run:" msgstr "Vous pouvez lancer :" #. type: example -#: guix-git/doc/guix.texi:30655 +#: guix-git/doc/guix.texi:31020 #, no-wrap msgid "guix build -s armhf-linux inkscape\n" msgstr "guix build -s armhf-linux inkscape\n" #. type: table -#: guix-git/doc/guix.texi:30662 +#: guix-git/doc/guix.texi:31027 msgid "and it will build Inkscape for ARMv7 @emph{as if it were a native build}, transparently using QEMU to emulate the ARMv7 CPU@. Pretty handy if you'd like to test a package build for an architecture you don't have access to!" msgstr "et cela construira Inkscape pour ARMv7 @emph{comme s'il s'agissait d'une construction native}, de manière transparente avec QEMU pour émuler un CPU ARMv7. Plutôt pratique si vous voulez tester un paquet construit pour une architecture à laquelle vous n'avez pas accès !" #. type: item -#: guix-git/doc/guix.texi:30663 +#: guix-git/doc/guix.texi:31028 #, no-wrap msgid "@code{qemu} (default: @code{qemu})" msgstr "@code{qemu} (par défaut : @code{qemu})" #. type: table -#: guix-git/doc/guix.texi:30665 guix-git/doc/guix.texi:30723 -#: guix-git/doc/guix.texi:30805 +#: guix-git/doc/guix.texi:31030 guix-git/doc/guix.texi:31088 +#: guix-git/doc/guix.texi:31170 msgid "The QEMU package to use." msgstr "Le paquet QEMU à utiliser." #. type: deffn -#: guix-git/doc/guix.texi:30668 +#: guix-git/doc/guix.texi:31033 #, no-wrap msgid "{Scheme Procedure} lookup-qemu-platforms @var{platforms}@dots{}" msgstr "{Procédure Scheme} lookup-qemu-platforms @var{platforms}@dots{}" #. type: deffn -#: guix-git/doc/guix.texi:30673 +#: guix-git/doc/guix.texi:31038 msgid "Return the list of QEMU platform objects corresponding to @var{platforms}@dots{}. @var{platforms} must be a list of strings corresponding to platform names, such as @code{\"arm\"}, @code{\"sparc\"}, @code{\"mips64el\"}, and so on." msgstr "Renvoie la liste des objets de plates-formes QEMU correspondant à @var{platforms}@dots{}. @var{platforms} doit être une liste de chaînes de caractères correspondant aux noms de plates-formes, comme @code{\"arm\"}, @code{\"sparc\"}, @code{\"mips64el\"} etc." #. type: deffn -#: guix-git/doc/guix.texi:30675 +#: guix-git/doc/guix.texi:31040 #, no-wrap msgid "{Scheme Procedure} qemu-platform? @var{obj}" msgstr "{Procédure Scheme} qemu-platform? @var{obj}" #. type: deffn -#: guix-git/doc/guix.texi:30677 +#: guix-git/doc/guix.texi:31042 msgid "Return true if @var{obj} is a platform object." msgstr "Renvoie vrai s i@var{obj} est un objet de plate-forme." #. type: deffn -#: guix-git/doc/guix.texi:30679 +#: guix-git/doc/guix.texi:31044 #, no-wrap msgid "{Scheme Procedure} qemu-platform-name @var{platform}" msgstr "{Procédure Scheme} qemu-platform-name @var{platform}" #. type: deffn -#: guix-git/doc/guix.texi:30681 +#: guix-git/doc/guix.texi:31046 msgid "Return the name of @var{platform}---a string such as @code{\"arm\"}." msgstr "Renvoie le nom de @var{platform} — une chaîne comme @code{\"arm\"}." #. type: subsubheading -#: guix-git/doc/guix.texi:30684 +#: guix-git/doc/guix.texi:31049 #, no-wrap msgid "QEMU Guest Agent" msgstr "Agent invité de QEMU" #. type: Plain text -#: guix-git/doc/guix.texi:30692 +#: guix-git/doc/guix.texi:31057 msgid "The QEMU guest agent provides control over the emulated system to the host. The @code{qemu-guest-agent} service runs the agent on Guix guests. To control the agent from the host, open a socket by invoking QEMU with the following arguments:" msgstr "L'agent invité de QEMU permet de contrôler le système émulé à partir de l'hôte. Le service @code{qemu-guest-agent} lance l'agent sur les invités Guix. Pour contrôler l'agent à partir de l'hôte, ouvrez un socket en invoquant QEMU avec les arguments suivants :" #. type: example -#: guix-git/doc/guix.texi:30699 +#: guix-git/doc/guix.texi:31064 #, no-wrap msgid "" "qemu-system-x86_64 \\\n" @@ -57744,12 +58479,12 @@ msgstr "" "\t...\n" #. type: Plain text -#: guix-git/doc/guix.texi:30703 +#: guix-git/doc/guix.texi:31068 msgid "This creates a socket at @file{/tmp/qga.sock} on the host. Once the guest agent is running, you can issue commands with @code{socat}:" msgstr "Cela crée un socket dans @file{/tmp/qga.sock} sur l'hôte. Une fois l'agent invité lancé vos pouvez exécuter des commandes avec @code{socat} :" #. type: example -#: guix-git/doc/guix.texi:30708 +#: guix-git/doc/guix.texi:31073 #, no-wrap msgid "" "$ guix shell socat -- socat unix-connect:/tmp/qga.sock stdio\n" @@ -57761,74 +58496,74 @@ msgstr "" "@{\"return\": @{\"host-name\": \"guix\"@}@}\n" #. type: Plain text -#: guix-git/doc/guix.texi:30712 +#: guix-git/doc/guix.texi:31077 msgid "See @url{https://wiki.qemu.org/Features/GuestAgent,QEMU guest agent documentation} for more options and commands." msgstr "Voir @url{https://wiki.qemu.org/Features/GuestAgent,la documentation de l'agent invité de QEMU} pour les options et les commandes supplémentaires." #. type: defvr -#: guix-git/doc/guix.texi:30713 +#: guix-git/doc/guix.texi:31078 #, no-wrap msgid "{Scheme Variable} qemu-guest-agent-service-type" msgstr "{Variable Scheme} qemu-guest-agent-service-type" #. type: defvr -#: guix-git/doc/guix.texi:30715 +#: guix-git/doc/guix.texi:31080 msgid "Service type for the QEMU guest agent service." msgstr "Type de service pour l'agent invité de QEMU." #. type: deftp -#: guix-git/doc/guix.texi:30717 +#: guix-git/doc/guix.texi:31082 #, no-wrap msgid "{Data Type} qemu-guest-agent-configuration" msgstr "{Type de données} qemu-guest-agent-configuration" #. type: deftp -#: guix-git/doc/guix.texi:30719 +#: guix-git/doc/guix.texi:31084 msgid "Configuration for the @code{qemu-guest-agent} service." msgstr "La configuration du service @code{qemu-guest-agent}." #. type: item -#: guix-git/doc/guix.texi:30721 guix-git/doc/guix.texi:30803 +#: guix-git/doc/guix.texi:31086 guix-git/doc/guix.texi:31168 #, no-wrap msgid "@code{qemu} (default: @code{qemu-minimal})" msgstr "@code{qemu} (par défaut : @code{qemu-minimal})" #. type: item -#: guix-git/doc/guix.texi:30724 +#: guix-git/doc/guix.texi:31089 #, no-wrap msgid "@code{device} (default: @code{\"\"})" msgstr "@code{device} (par défaut : @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:30727 +#: guix-git/doc/guix.texi:31092 msgid "File name of the device or socket the agent uses to communicate with the host. If empty, QEMU uses a default file name." msgstr "Le nom de périphérique ou de socket que l'agent utilise pour communiquer avec l'hôte. Si le nom est vide, QEMU utilisera un nom de fichier par défaut." #. type: subsubheading -#: guix-git/doc/guix.texi:30731 +#: guix-git/doc/guix.texi:31096 #, no-wrap msgid "The Hurd in a Virtual Machine" msgstr "Exécuter le Hurd dans une machine virtuelle" #. type: cindex -#: guix-git/doc/guix.texi:30734 +#: guix-git/doc/guix.texi:31099 #, no-wrap msgid "the Hurd" msgstr "le Hurd" #. type: cindex -#: guix-git/doc/guix.texi:30735 +#: guix-git/doc/guix.texi:31100 #, no-wrap msgid "childhurd" msgstr "childhurd" #. type: Plain text -#: guix-git/doc/guix.texi:30743 +#: guix-git/doc/guix.texi:31108 msgid "Service @code{hurd-vm} provides support for running GNU/Hurd in a virtual machine (VM), a so-called @dfn{childhurd}. This service is meant to be used on GNU/Linux and the given GNU/Hurd operating system configuration is cross-compiled. The virtual machine is a Shepherd service that can be referred to by the names @code{hurd-vm} and @code{childhurd} and be controlled with commands such as:" msgstr "Le service @code{hurd-vm} permet de lancer GNU/Hurd dans une machine virtuelle (VM), un @dfn{childhurd}. Ce service est conçu pour être utilisé sur GNU/Linux et la configuration du système GNU/Hurd donné est compilée de manière croisée. La machine virtuelle est un service Shepherd qui a les noms @code{hurd-vm} et @code{childhurd} et qui peut être contrôlé avec les commandes suivantes :" #. type: example -#: guix-git/doc/guix.texi:30747 +#: guix-git/doc/guix.texi:31112 #, no-wrap msgid "" "herd start hurd-vm\n" @@ -57838,50 +58573,50 @@ msgstr "" "herd stop childhurd\n" #. type: Plain text -#: guix-git/doc/guix.texi:30751 +#: guix-git/doc/guix.texi:31116 msgid "When the service is running, you can view its console by connecting to it with a VNC client, for example with:" msgstr "Lorsque le service est lancé, vous pouvez voir sa console en vous y connectant avec un client VNC, par exemple avec :" #. type: example -#: guix-git/doc/guix.texi:30754 +#: guix-git/doc/guix.texi:31119 #, no-wrap msgid "guix shell tigervnc-client -- vncviewer localhost:5900\n" msgstr "guix shell tigervnc-client -- vncviewer localhost:5900\n" #. type: Plain text -#: guix-git/doc/guix.texi:30760 +#: guix-git/doc/guix.texi:31125 msgid "The default configuration (see @code{hurd-vm-configuration} below) spawns a secure shell (SSH) server in your GNU/Hurd system, which QEMU (the virtual machine emulator) redirects to port 10222 on the host. Thus, you can connect over SSH to the childhurd with:" msgstr "La configuration par défaut (voir @code{hurd-vm-configuration} ci-dessous) crée un serveur secure shell (SSH) dans votre système GNU/Hurd, que QEMU (l'émulateur de machine virtuelle) redirige sur le port 10222 de l'hôte. Ainsi, vous pouvez vous connecter en SSH au childhurd avec :" #. type: example -#: guix-git/doc/guix.texi:30763 +#: guix-git/doc/guix.texi:31128 #, no-wrap msgid "ssh root@@localhost -p 10022\n" msgstr "ssh root@@localhost -p 10022\n" #. type: Plain text -#: guix-git/doc/guix.texi:30772 +#: guix-git/doc/guix.texi:31137 msgid "The childhurd is volatile and stateless: it starts with a fresh root file system every time you restart it. By default though, all the files under @file{/etc/childhurd} on the host are copied as is to the root file system of the childhurd when it boots. This allows you to initialize ``secrets'' inside the VM: SSH host keys, authorized substitute keys, and so on---see the explanation of @code{secret-root} below." msgstr "Le childhurd est volatile et sans état . il démarre avec un nouveau système de fichier à chaque fois que vous le redémarrez. Par défaut cependant, tous les fichiers sous @file{/etc/childhurd} sur l'hôte sont copiés tels quels sur le système de fichiers racine du childhurd à son démarrage. Cela vous permet d'initialiser des « secrets » à l'intérieur de la VM : les clés hôtes SSH, les clés de substituts autorisés, etc — voir l'explication de @code{secret-root} ci-dessous." #. type: defvr -#: guix-git/doc/guix.texi:30773 +#: guix-git/doc/guix.texi:31138 #, no-wrap msgid "{Scheme Variable} hurd-vm-service-type" msgstr "{Variable Scheme} hurd-vm-service-type" #. type: defvr -#: guix-git/doc/guix.texi:30779 +#: guix-git/doc/guix.texi:31144 msgid "This is the type of the Hurd in a Virtual Machine service. Its value must be a @code{hurd-vm-configuration} object, which specifies the operating system (@pxref{operating-system Reference}) and the disk size for the Hurd Virtual Machine, the QEMU package to use as well as the options for running it." msgstr "C'est le type du service du Hurd dans une machine virtuelle. Sa valeur doit être un objet @code{hurd-vm-configuration}, qui spécifie le système d'exploitation (@pxref{operating-system Reference}) et la taille de disque pour la machine virtuelle du Hurd, le paquet QEMU à utiliser ainsi que les options pour le lancer." #. type: defvr -#: guix-git/doc/guix.texi:30781 +#: guix-git/doc/guix.texi:31146 msgid "For example:" msgstr "Par exemple :" #. type: lisp -#: guix-git/doc/guix.texi:30787 +#: guix-git/doc/guix.texi:31152 #, no-wrap msgid "" "(service hurd-vm-service-type\n" @@ -57895,99 +58630,99 @@ msgstr "" " (memory-size 1024))) ;1024MiB\n" #. type: defvr -#: guix-git/doc/guix.texi:30791 +#: guix-git/doc/guix.texi:31156 msgid "would create a disk image big enough to build GNU@tie{}Hello, with some extra memory." msgstr "créerait une image disque assez grande pour construire GNU@tie{}Hello, avec une peu de place en plus." #. type: deftp -#: guix-git/doc/guix.texi:30793 +#: guix-git/doc/guix.texi:31158 #, no-wrap msgid "{Data Type} hurd-vm-configuration" msgstr "{Type de données} hurd-vm-configuration" #. type: deftp -#: guix-git/doc/guix.texi:30796 +#: guix-git/doc/guix.texi:31161 msgid "The data type representing the configuration for @code{hurd-vm-service-type}." msgstr "Type de données représentant la configuration de @code{hurd-vm-service-type}." #. type: item -#: guix-git/doc/guix.texi:30798 +#: guix-git/doc/guix.texi:31163 #, no-wrap msgid "@code{os} (default: @var{%hurd-vm-operating-system})" msgstr "@code{os} (par défaut : @var{%hurd-vm-operating-system})" #. type: table -#: guix-git/doc/guix.texi:30802 +#: guix-git/doc/guix.texi:31167 msgid "The operating system to instantiate. This default is bare-bones with a permissive OpenSSH secure shell daemon listening on port 2222 (@pxref{Networking Services, @code{openssh-service-type}})." msgstr "Le système d'exploitation à instancier. La valeur par défaut est le système minimal avec un démon OpenSSH permissif en écoute sur le port 2222 (@pxref{Networking Services, @code{openssh-service-type}})." #. type: item -#: guix-git/doc/guix.texi:30806 +#: guix-git/doc/guix.texi:31171 #, no-wrap msgid "@code{image} (default: @var{hurd-vm-disk-image})" msgstr "@code{image} (par défaut : @var{hurd-vm-disk-image})" #. type: table -#: guix-git/doc/guix.texi:30809 +#: guix-git/doc/guix.texi:31174 msgid "The procedure used to build the disk-image built from this configuration." msgstr "La procédure utilisée pour construire l'image disque construite à partir de cette configuration." #. type: item -#: guix-git/doc/guix.texi:30810 +#: guix-git/doc/guix.texi:31175 #, no-wrap msgid "@code{disk-size} (default: @code{'guess})" msgstr "@code{disk-size} (par défaut : @code{'guess})" #. type: table -#: guix-git/doc/guix.texi:30812 +#: guix-git/doc/guix.texi:31177 msgid "The size of the disk image." msgstr "La taille de l'image disque." #. type: item -#: guix-git/doc/guix.texi:30813 +#: guix-git/doc/guix.texi:31178 #, no-wrap msgid "@code{memory-size} (default: @code{512})" msgstr "@code{memory-size} (par défaut : @code{512})" #. type: table -#: guix-git/doc/guix.texi:30815 +#: guix-git/doc/guix.texi:31180 msgid "The memory size of the Virtual Machine in mebibytes." msgstr "La taille de mémoire de la machine virtuelle en mébioctets." #. type: item -#: guix-git/doc/guix.texi:30816 +#: guix-git/doc/guix.texi:31181 #, no-wrap msgid "@code{options} (default: @code{'(\"--snapshot\")})" msgstr "@code{options} (par défaut : @code{'(\"--snapshot\")})" #. type: table -#: guix-git/doc/guix.texi:30818 +#: guix-git/doc/guix.texi:31183 msgid "The extra options for running QEMU." msgstr "Options supplémentaires pour lancer QEMU." #. type: table -#: guix-git/doc/guix.texi:30823 +#: guix-git/doc/guix.texi:31188 msgid "If set, a non-zero positive integer used to parameterize Childhurd instances. It is appended to the service's name, e.g. @code{childhurd1}." msgstr "Si l'option est indiquée, c'est un entier strictement positif utilisé créer plusieurs instances de childhurd. Il est ajouté au nom du service, p.@: ex.@: @code{childhurd1}." #. type: item -#: guix-git/doc/guix.texi:30824 +#: guix-git/doc/guix.texi:31189 #, no-wrap msgid "@code{net-options} (default: @var{hurd-vm-net-options})" msgstr "@code{net-options} (par défaut : @var{hurd-vm-net-options})" #. type: table -#: guix-git/doc/guix.texi:30826 +#: guix-git/doc/guix.texi:31191 msgid "The procedure used to produce the list of QEMU networking options." msgstr "La procédure utilisée pour produire une liste d'options réseau pour QEMU." #. type: table -#: guix-git/doc/guix.texi:30828 +#: guix-git/doc/guix.texi:31193 msgid "By default, it produces" msgstr "Par défaut, elle produit" #. type: lisp -#: guix-git/doc/guix.texi:30836 +#: guix-git/doc/guix.texi:31201 #, no-wrap msgid "" "'(\"--device\" \"rtl8139,netdev=net0\"\n" @@ -58005,12 +58740,12 @@ msgstr "" " \"hostfwd=tcp:127.0.0.1:@var{vnc-port}-:5900\"))\n" #. type: table -#: guix-git/doc/guix.texi:30839 +#: guix-git/doc/guix.texi:31204 msgid "with forwarded ports:" msgstr "avec les ports renvoyés :" #. type: example -#: guix-git/doc/guix.texi:30844 +#: guix-git/doc/guix.texi:31209 #, no-wrap msgid "" "@var{secrets-port}: @code{(+ 11004 (* 1000 @var{ID}))}\n" @@ -58022,28 +58757,28 @@ msgstr "" "@var{vnc-port}: @code{(+ 15900 (* 1000 @var{ID}))}\n" #. type: item -#: guix-git/doc/guix.texi:30846 +#: guix-git/doc/guix.texi:31211 #, no-wrap msgid "@code{secret-root} (default: @file{/etc/childhurd})" msgstr "@code{secret-root} (par défaut : @file{/etc/childhurd})" #. type: table -#: guix-git/doc/guix.texi:30851 +#: guix-git/doc/guix.texi:31216 msgid "The root directory with out-of-band secrets to be installed into the childhurd once it runs. Childhurds are volatile which means that on every startup, secrets such as the SSH host keys and Guix signing key are recreated." msgstr "Le répertoire racine avec des secrets externes à installer dans le childhurd une fois lancé. Les childhurds sont volatile, ce qiu signifie qu'à chaque démarrage, les secrets comme les clés hôtes SSH et la clé de signature de Guix sont recréés." #. type: table -#: guix-git/doc/guix.texi:30855 +#: guix-git/doc/guix.texi:31220 msgid "If the @file{/etc/childhurd} directory does not exist, the @code{secret-service} running in the Childhurd will be sent an empty list of secrets." msgstr "Si le répertoire @file{/etc/childhurd} n'existe pas, le @code{secret-service} qui tourne dans le Childhurd recevra une liste vide de secrets." #. type: table -#: guix-git/doc/guix.texi:30858 +#: guix-git/doc/guix.texi:31223 msgid "By default, the service automatically populates @file{/etc/childhurd} with the following non-volatile secrets, unless they already exist:" msgstr "Par défaut, le service rempli automatiquement @file{/etc/childhurd} avec les secrets non-volatiles suivants, à moins qu'ils existent déjà :" #. type: example -#: guix-git/doc/guix.texi:30867 +#: guix-git/doc/guix.texi:31232 #, no-wrap msgid "" "/etc/childhurd/etc/guix/acl\n" @@ -58063,34 +58798,34 @@ msgstr "" "/etc/childhurd/etc/ssh/ssh_host_ecdsa_key.pub\n" #. type: table -#: guix-git/doc/guix.texi:30871 +#: guix-git/doc/guix.texi:31236 msgid "These files are automatically sent to the guest Hurd VM when it boots, including permissions." msgstr "Ces fichiers sont automatiquement envoyés à la VM Hurd invitée au démarrage, avec les permissions." #. type: cindex -#: guix-git/doc/guix.texi:30872 +#: guix-git/doc/guix.texi:31237 #, no-wrap msgid "childhurd, offloading" msgstr "childhurd, déchargement" #. type: cindex -#: guix-git/doc/guix.texi:30873 +#: guix-git/doc/guix.texi:31238 #, no-wrap msgid "Hurd, offloading" msgstr "Hurd, déchargement" #. type: table -#: guix-git/doc/guix.texi:30877 +#: guix-git/doc/guix.texi:31242 msgid "Having these files in place means that only a couple of things are missing to allow the host to offload @code{i586-gnu} builds to the childhurd:" msgstr "Avec ces fichiers en place, il ne manque plus grand chose pour pouvoir permettre à l'hôte de décharger les constructions @code{i586-gnu} au childhurd :" #. type: enumerate -#: guix-git/doc/guix.texi:30882 +#: guix-git/doc/guix.texi:31247 msgid "Authorizing the childhurd's key on the host so that the host accepts build results coming from the childhurd, which can be done like so:" msgstr "Autoriser la clé du childhurd sur l'hôte pour que l'hôte puisse accepter les constructions venant du childhurd, ce qui peut se faire de cette manière :" #. type: example -#: guix-git/doc/guix.texi:30886 +#: guix-git/doc/guix.texi:31251 #, no-wrap msgid "" "guix archive --authorize < \\\n" @@ -58100,22 +58835,22 @@ msgstr "" " /etc/childhurd/etc/guix/signing-key.pub\n" #. type: enumerate -#: guix-git/doc/guix.texi:30891 +#: guix-git/doc/guix.texi:31256 msgid "Adding the childhurd to @file{/etc/guix/machines.scm} (@pxref{Daemon Offload Setup})." msgstr "Ajouter le childhurd à @file{/etc/guix/machines.scm} (@pxref{Daemon Offload Setup})." #. type: table -#: guix-git/doc/guix.texi:30895 +#: guix-git/doc/guix.texi:31260 msgid "We're working towards making that happen automatically---get in touch with us at @email{guix-devel@@gnu.org} to discuss it!" msgstr "Nous travaillons à rendre cela automatique — contactez nous sur @email{guix-devel@@gnu.org} pour en discuter !" #. type: Plain text -#: guix-git/doc/guix.texi:30902 +#: guix-git/doc/guix.texi:31267 msgid "Note that by default the VM image is volatile, i.e., once stopped the contents are lost. If you want a stateful image instead, override the configuration's @code{image} and @code{options} without the @code{--snapshot} flag using something along these lines:" msgstr "Remarquez que par défaut l'image de la VM est volatile, c.-à-d.@: qu'une fois arrêtée le contenu est perdu. Si vous voulez une image avec état à la place, remplacez les champs @code{image} et @code{options} pour enlever le drapeau @code{--snapshot} avec quelque chose de ce style-là :" #. type: lisp -#: guix-git/doc/guix.texi:30908 +#: guix-git/doc/guix.texi:31273 #, no-wrap msgid "" "(service hurd-vm-service-type\n" @@ -58129,34 +58864,34 @@ msgstr "" " (options '())))\n" #. type: subsubheading -#: guix-git/doc/guix.texi:30910 +#: guix-git/doc/guix.texi:31275 #, no-wrap msgid "Ganeti" msgstr "Ganeti" #. type: cindex -#: guix-git/doc/guix.texi:30912 +#: guix-git/doc/guix.texi:31277 #, no-wrap msgid "ganeti" msgstr "ganeti" #. type: quotation -#: guix-git/doc/guix.texi:30919 +#: guix-git/doc/guix.texi:31284 msgid "This service is considered experimental. Configuration options may be changed in a backwards-incompatible manner, and not all features have been thorougly tested. Users of this service are encouraged to share their experience at @email{guix-devel@@gnu.org}." msgstr "Ce service est considéré comme étant expérimental. Les options de configuration peuvent changer de manière non compatible, et tous les paramètres n'ont pas été testés. Si vous utilisez ce service, nous vous encourageons à partager votre expérience avec @email{guix-devel@@gnu.org}." #. type: Plain text -#: guix-git/doc/guix.texi:30929 +#: guix-git/doc/guix.texi:31294 msgid "Ganeti is a virtual machine management system. It is designed to keep virtual machines running on a cluster of servers even in the event of hardware failures, and to make maintenance and recovery tasks easy. It consists of multiple services which are described later in this section. In addition to the Ganeti service, you will need the OpenSSH service (@pxref{Networking Services, @code{openssh-service-type}}), and update the @file{/etc/hosts} file (@pxref{operating-system Reference, @code{hosts-file}}) with the cluster name and address (or use a DNS server)." msgstr "Ganeti est un système de gestion de machines virtuelles. Il est conçu pour faire tourner les machines virtuelles en continue sur une grappe de serveurs même dans le cas d'une erreur matérielle, et pour rendre les tâches de maintenance et de récupération faciles. Il consisste en plusieurs services qui sont décrits plus loin dans cette section. En plus du service Ganeti, vous aurez besoin du service OpenSSH (@pxref{Networking Services, @code{openssh-service-type}}), et de mettre à jour le fichier @file{/etc/hosts} (@pxref{operating-system Reference, @code{hosts-file}}) avec le nom de la grappe et l'adresse (ou utiliser un serveur DNS)." #. type: Plain text -#: guix-git/doc/guix.texi:30934 +#: guix-git/doc/guix.texi:31299 msgid "All nodes participating in a Ganeti cluster should have the same Ganeti and @file{/etc/hosts} configuration. Here is an example configuration for a Ganeti cluster node that supports multiple storage backends, and installs the @code{debootstrap} and @code{guix} @dfn{OS providers}:" msgstr "Tous les nœuds participant dans une grappe Ganeti devraient avec la même configuration de Ganeti et @file{/etc/hosts}. voici un exemple de configuration pour un nœud d'une grappe Ganeti qui prend en charge plusieurs moteurs de stockage et installe les @dfn{fournisseurs de systèmes} @code{debbotstrap} et @code{guix} :" #. type: lisp -#: guix-git/doc/guix.texi:30944 +#: guix-git/doc/guix.texi:31309 #, no-wrap msgid "" "(use-package-modules virtualization)\n" @@ -58180,7 +58915,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:30949 +#: guix-git/doc/guix.texi:31314 #, no-wrap msgid "" "192.168.1.200 ganeti.example.com\n" @@ -58196,7 +58931,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:30970 +#: guix-git/doc/guix.texi:31335 #, fuzzy, no-wrap #| msgid "" #| " ;; Install QEMU so we can use KVM-based instances, and LVM, DRBD and Ceph\n" @@ -58252,7 +58987,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:30975 +#: guix-git/doc/guix.texi:31340 #, no-wrap msgid "" " ;; Ganeti uses SSH to communicate between nodes.\n" @@ -58268,7 +59003,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:30985 +#: guix-git/doc/guix.texi:31350 #, no-wrap msgid "" " (service ganeti-service-type\n" @@ -58292,120 +59027,120 @@ msgstr "" " %base-services)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:30993 +#: guix-git/doc/guix.texi:31358 msgid "Users are advised to read the @url{http://docs.ganeti.org/ganeti/master/html/admin.html,Ganeti administrators guide} to learn about the various cluster options and day-to-day operations. There is also a @url{https://guix.gnu.org/blog/2020/running-a-ganeti-cluster-on-guix/,blog post} describing how to configure and initialize a small cluster." msgstr "Nous vous encourageons à lire le @url{http://docs.ganeti.org/ganeti/master/html/admin.html,guide d'administration de Ganeti} pour apprendre les diverse options de grappes et les opérations de base. Il y a aussi un @url{https://guix.gnu.org/blog/2020/running-a-ganeti-cluster-on-guix/,billet de blog} décrivant comment configurer et initialiser une petite grappe." #. type: defvr -#: guix-git/doc/guix.texi:30994 +#: guix-git/doc/guix.texi:31359 #, no-wrap msgid "{Scheme Variable} ganeti-service-type" msgstr "{Variable Scheme} ganeti-service-type" #. type: defvr -#: guix-git/doc/guix.texi:30997 +#: guix-git/doc/guix.texi:31362 msgid "This is a service type that includes all the various services that Ganeti nodes should run." msgstr "C'est le type de service qui inclus tous les service dont les nœuds Ganeti ont besoin." #. type: defvr -#: guix-git/doc/guix.texi:31002 +#: guix-git/doc/guix.texi:31367 msgid "Its value is a @code{ganeti-configuration} object that defines the package to use for CLI operations, as well as configuration for the various daemons. Allowed file storage paths and available guest operating systems are also configured through this data type." msgstr "Sa valeur est un objet @code{ganeti-configurtaion} qui définie le paquet pour utiliser les opérations en ligne de commande, ainsi que pour les divers démons. Les chemins de stockage autorisés et les systèmes d'exploitation invités disponibles sont aussi configurés à travers ce type de données." #. type: deftp -#: guix-git/doc/guix.texi:31004 +#: guix-git/doc/guix.texi:31369 #, no-wrap msgid "{Data Type} ganeti-configuration" msgstr "{Type de données} ganeti-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31006 +#: guix-git/doc/guix.texi:31371 msgid "The @code{ganeti} service takes the following configuration options:" msgstr "Le service @code{ganeti} prend les options de configuration suivante :" #. type: item -#: guix-git/doc/guix.texi:31008 guix-git/doc/guix.texi:31236 -#: guix-git/doc/guix.texi:31286 guix-git/doc/guix.texi:31316 -#: guix-git/doc/guix.texi:31343 guix-git/doc/guix.texi:31375 -#: guix-git/doc/guix.texi:31428 guix-git/doc/guix.texi:31448 -#: guix-git/doc/guix.texi:31474 guix-git/doc/guix.texi:31507 -#: guix-git/doc/guix.texi:31547 +#: guix-git/doc/guix.texi:31373 guix-git/doc/guix.texi:31601 +#: guix-git/doc/guix.texi:31651 guix-git/doc/guix.texi:31681 +#: guix-git/doc/guix.texi:31708 guix-git/doc/guix.texi:31740 +#: guix-git/doc/guix.texi:31793 guix-git/doc/guix.texi:31813 +#: guix-git/doc/guix.texi:31839 guix-git/doc/guix.texi:31872 +#: guix-git/doc/guix.texi:31912 #, no-wrap msgid "@code{ganeti} (default: @code{ganeti})" msgstr "@code{ganeti} (par défaut : @code{ganeti})" #. type: table -#: guix-git/doc/guix.texi:31013 +#: guix-git/doc/guix.texi:31378 msgid "The @code{ganeti} package to use. It will be installed to the system profile and make @command{gnt-cluster}, @command{gnt-instance}, etc available. Note that the value specified here does not affect the other services as each refer to a specific @code{ganeti} package (see below)." msgstr "Le paquet @code{ganeti} à utiliser. Il sera installé sur le profil du système et rendra @command{gnt-cluster}, @command{gnt-instance}, etc disponibles. Remarquez que la valeur spécifiée ici n'affecte pas les autres services auxquels se réfère le paquet @code{ganeti} (voir plus bas)." #. type: item -#: guix-git/doc/guix.texi:31014 +#: guix-git/doc/guix.texi:31379 #, no-wrap msgid "@code{noded-configuration} (default: @code{(ganeti-noded-configuration)})" msgstr "@code{noded-configuration} (par défaut : @code{(ganeti-noded-configuration)})" #. type: itemx -#: guix-git/doc/guix.texi:31015 +#: guix-git/doc/guix.texi:31380 #, no-wrap msgid "@code{confd-configuration} (default: @code{(ganeti-confd-configuration)})" msgstr "@code{confd-configuration} (par défaut : @code{(ganeti-confd-configuration)})" #. type: itemx -#: guix-git/doc/guix.texi:31016 +#: guix-git/doc/guix.texi:31381 #, no-wrap msgid "@code{wconfd-configuration} (default: @code{(ganeti-wconfd-configuration)})" msgstr "@code{wconfd-configuration} (par défaut : @code{(ganeti-wconfd-configuration)})" #. type: itemx -#: guix-git/doc/guix.texi:31017 +#: guix-git/doc/guix.texi:31382 #, no-wrap msgid "@code{luxid-configuration} (default: @code{(ganeti-luxid-configuration)})" msgstr "@code{luxid-configuration} (par défaut : @code{(ganeti-luxid-configuration)})" #. type: itemx -#: guix-git/doc/guix.texi:31018 +#: guix-git/doc/guix.texi:31383 #, no-wrap msgid "@code{rapi-configuration} (default: @code{(ganeti-rapi-configuration)})" msgstr "@code{rapi-configuration} (par défaut : @code{(ganeti-rapi-configuration)})" #. type: itemx -#: guix-git/doc/guix.texi:31019 +#: guix-git/doc/guix.texi:31384 #, no-wrap msgid "@code{kvmd-configuration} (default: @code{(ganeti-kvmd-configuration)})" msgstr "@code{kvmd-configuration} (par défaut : @code{(ganeti-kvmd-configuration)})" #. type: itemx -#: guix-git/doc/guix.texi:31020 +#: guix-git/doc/guix.texi:31385 #, no-wrap msgid "@code{mond-configuration} (default: @code{(ganeti-mond-configuration)})" msgstr "@code{mond-configuration} (par défaut : @code{(ganeti-mond-configuration)})" #. type: itemx -#: guix-git/doc/guix.texi:31021 +#: guix-git/doc/guix.texi:31386 #, no-wrap msgid "@code{metad-configuration} (default: @code{(ganeti-metad-configuration)})" msgstr "@code{metad-configuration} (par défaut : @code{(ganeti-metad-configuration)})" #. type: itemx -#: guix-git/doc/guix.texi:31022 +#: guix-git/doc/guix.texi:31387 #, no-wrap msgid "@code{watcher-configuration} (default: @code{(ganeti-watcher-configuration)})" msgstr "@code{watcher-configuration} (par défaut : @code{(ganeti-watcher-configuration)})" #. type: itemx -#: guix-git/doc/guix.texi:31023 +#: guix-git/doc/guix.texi:31388 #, no-wrap msgid "@code{cleaner-configuration} (default: @code{(ganeti-cleaner-configuration)})" msgstr "@code{cleaner-configuration} (par défaut : @code{(ganeti-cleaner-configuration)})" #. type: table -#: guix-git/doc/guix.texi:31028 +#: guix-git/doc/guix.texi:31393 msgid "These options control the various daemons and cron jobs that are distributed with Ganeti. The possible values for these are described in detail below. To override a setting, you must use the configuration type for that service:" msgstr "Ces options contrôlent les divers démons et tâches cron distribués avec Ganeti. Les valeurs possibles sont détaillées plus bas. Pour changer un paramètre, vous devez utiliser le type de configuration pour ce service :" #. type: lisp -#: guix-git/doc/guix.texi:31038 +#: guix-git/doc/guix.texi:31403 #, no-wrap msgid "" "(service ganeti-service-type\n" @@ -58427,34 +59162,34 @@ msgstr "" " (rapi-ip \"10.0.0.1\"))))\n" #. type: item -#: guix-git/doc/guix.texi:31040 +#: guix-git/doc/guix.texi:31405 #, no-wrap msgid "@code{file-storage-paths} (default: @code{'()})" msgstr "@code{file-storage-paths} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:31042 +#: guix-git/doc/guix.texi:31407 msgid "List of allowed directories for file storage backend." msgstr "Liste des répertoire autorisés pour le moteur de stockage de fichiers." #. type: item -#: guix-git/doc/guix.texi:31043 +#: guix-git/doc/guix.texi:31408 #, no-wrap msgid "@code{os} (default: @code{%default-ganeti-os})" msgstr "@code{os} (par défaut : @code{%default-ganeti-os})" #. type: table -#: guix-git/doc/guix.texi:31045 +#: guix-git/doc/guix.texi:31410 msgid "List of @code{} records." msgstr "Liste des enregistrements @code{}." #. type: deftp -#: guix-git/doc/guix.texi:31049 +#: guix-git/doc/guix.texi:31414 msgid "In essence @code{ganeti-service-type} is shorthand for declaring each service individually:" msgstr "En résumé @code{ganeti-service-type} est un raccourci pour la déclaration de chaque service individuel :" #. type: lisp -#: guix-git/doc/guix.texi:31060 +#: guix-git/doc/guix.texi:31425 #, no-wrap msgid "" "(service ganeti-noded-service-type)\n" @@ -58478,297 +59213,297 @@ msgstr "" "(service ganeti-cleaner-service-type)\n" #. type: deftp -#: guix-git/doc/guix.texi:31064 +#: guix-git/doc/guix.texi:31429 msgid "Plus a service extension for @code{etc-service-type} that configures the file storage backend and OS variants." msgstr "Plus une extension de service pour @code{etc-service-type} qui configure le moteur de stockage de fichiers et les variantes de systèmes." #. type: deftp -#: guix-git/doc/guix.texi:31067 +#: guix-git/doc/guix.texi:31432 #, no-wrap msgid "{Data Type} ganeti-os" msgstr "{Type de données} ganeti-os" #. type: deftp -#: guix-git/doc/guix.texi:31070 +#: guix-git/doc/guix.texi:31435 msgid "This data type is suitable for passing to the @code{os} parameter of @code{ganeti-configuration}. It takes the following parameters:" msgstr "Ce type de données peut être passé au paramètre @code{os} de @code{ganeti-configuration}. Il prend les paramètres suivants :" #. type: table -#: guix-git/doc/guix.texi:31076 +#: guix-git/doc/guix.texi:31441 msgid "The name for this OS provider. It is only used to specify where the configuration ends up. Setting it to ``debootstrap'' will create @file{/etc/ganeti/instance-debootstrap}." msgstr "Le nom du fournisseur de système. Il est seulement utilisé pour spécifier où la configuration se trouve. Indiquer « debootstrap » créera @file{/etc/ganeti/intance-debootstrap}." #. type: code{#1} -#: guix-git/doc/guix.texi:31077 +#: guix-git/doc/guix.texi:31442 #, no-wrap msgid "extension" msgstr "extension" #. type: table -#: guix-git/doc/guix.texi:31080 +#: guix-git/doc/guix.texi:31445 msgid "The file extension for variants of this OS type. For example @file{.conf} or @file{.scm}." msgstr "Le fichier d'extension pour les variantes de ce type de système. Par exemple @file{.conf} ou @file{.scm}." #. type: item -#: guix-git/doc/guix.texi:31081 +#: guix-git/doc/guix.texi:31446 #, no-wrap msgid "@code{variants} (default: @code{'()})" msgstr "@code{variants} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:31083 +#: guix-git/doc/guix.texi:31448 msgid "List of @code{ganeti-os-variant} objects for this OS." msgstr "Une liste d'objets @code{ganeti-os-variant} pour ce système." #. type: deftp -#: guix-git/doc/guix.texi:31087 +#: guix-git/doc/guix.texi:31452 #, no-wrap msgid "{Data Type} ganeti-os-variant" msgstr "{Type de données} ganeti-os-variant" #. type: deftp -#: guix-git/doc/guix.texi:31090 +#: guix-git/doc/guix.texi:31455 msgid "This is the data type for a Ganeti OS variant. It takes the following parameters:" msgstr "Type de données représentant une variante de système Ganeti. Il prend les paramètres suivants :" #. type: table -#: guix-git/doc/guix.texi:31094 +#: guix-git/doc/guix.texi:31459 msgid "The name of this variant." msgstr "Le nom de cette variante." #. type: code{#1} -#: guix-git/doc/guix.texi:31095 +#: guix-git/doc/guix.texi:31460 #, no-wrap msgid "configuration" msgstr "configuration" #. type: table -#: guix-git/doc/guix.texi:31097 +#: guix-git/doc/guix.texi:31462 msgid "A configuration file for this variant." msgstr "Un fichier de configuration pour cette variante." #. type: defvr -#: guix-git/doc/guix.texi:31100 +#: guix-git/doc/guix.texi:31465 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-hooks" msgstr "{Variable Scheme} %default-debootstrap-hooks" #. type: defvr -#: guix-git/doc/guix.texi:31102 +#: guix-git/doc/guix.texi:31467 msgid "This variable contains hooks to configure networking and the GRUB bootloader." msgstr "Cette variable contient les crochet pour configurer le réseau et le chargeur d'amorçage GRUB." #. type: defvr -#: guix-git/doc/guix.texi:31104 +#: guix-git/doc/guix.texi:31469 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-extra-pkgs" msgstr "{variable Scheme} %default-debootstrap-extra-pkgs" #. type: defvr -#: guix-git/doc/guix.texi:31106 +#: guix-git/doc/guix.texi:31471 msgid "This variable contains a list of packages suitable for a fully-virtualized guest." msgstr "Cette variable contient une liste de paquets requis pour un invité complètement virtualisé." #. type: deftp -#: guix-git/doc/guix.texi:31108 +#: guix-git/doc/guix.texi:31473 #, no-wrap msgid "{Data Type} debootstrap-configuration" msgstr "{Type de données} debootstrap-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31111 +#: guix-git/doc/guix.texi:31476 msgid "This data type creates configuration files suitable for the debootstrap OS provider." msgstr "Ce type de données crée des fichiers de configurations pour le fournisseur de système debootstrap." #. type: item -#: guix-git/doc/guix.texi:31113 +#: guix-git/doc/guix.texi:31478 #, no-wrap msgid "@code{hooks} (default: @code{%default-debootstrap-hooks})" msgstr "@code{hooks} (par défaut : @code{%default-debootstrap-hooks})" #. type: table -#: guix-git/doc/guix.texi:31117 +#: guix-git/doc/guix.texi:31482 msgid "When not @code{#f}, this must be a G-expression that specifies a directory with scripts that will run when the OS is installed. It can also be a list of @code{(name . file-like)} pairs. For example:" msgstr "Lorsque la valeur n'est pas @code{#f}, cela doit être une G-expression qui spécifie un répertoire avec les scripts qui seront lancés à l'installation du système. Elle peut aussi être une liste de pairs de @code{(nom, simili-fichier)}. Par exemple :" #. type: lisp -#: guix-git/doc/guix.texi:31120 +#: guix-git/doc/guix.texi:31485 #, no-wrap msgid "`((99-hello-world . ,(plain-file \"#!/bin/sh\\necho Hello, World\")))\n" msgstr "`((99-hello-world . ,(plain-file \"#!/bin/sh\\necho Hello, World\")))\n" #. type: table -#: guix-git/doc/guix.texi:31125 +#: guix-git/doc/guix.texi:31490 msgid "That will create a directory with one executable named @code{99-hello-world} and run it every time this variant is installed. If set to @code{#f}, hooks in @file{/etc/ganeti/instance-debootstrap/hooks} will be used, if any." msgstr "Cela va créer un répertoire avec un exécutable nommé @code{99-hello-world} et le lancera à chaque fois que cette variante est installée. Si la valeur est @code{#f}, les crochets dans @file{/etc/ganeti/instance-debootstrap/hooks} seront utilisés, s'ils existent." #. type: item -#: guix-git/doc/guix.texi:31125 +#: guix-git/doc/guix.texi:31490 #, no-wrap msgid "@code{proxy} (default: @code{#f})" msgstr "@code{proxy} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31127 +#: guix-git/doc/guix.texi:31492 msgid "Optional HTTP proxy to use." msgstr "Serveur mandataire HTTP facultatif à utiliser." #. type: item -#: guix-git/doc/guix.texi:31127 +#: guix-git/doc/guix.texi:31492 guix-git/doc/guix.texi:33685 #, no-wrap msgid "@code{mirror} (default: @code{#f})" msgstr "@code{mirror} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31130 +#: guix-git/doc/guix.texi:31495 msgid "The Debian mirror. Typically something like @code{http://ftp.no.debian.org/debian}. The default varies depending on the distribution." msgstr "Le miroir Debian. Habituellement quelque chose comme @code{http://ftp.no.debian.org/debian}. La valeur par défaut dépend de la distribution." #. type: item -#: guix-git/doc/guix.texi:31130 +#: guix-git/doc/guix.texi:31495 #, no-wrap msgid "@code{arch} (default: @code{#f})" msgstr "@code{arch} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31133 +#: guix-git/doc/guix.texi:31498 msgid "The dpkg architecture. Set to @code{armhf} to debootstrap an ARMv7 instance on an AArch64 host. Default is to use the current system architecture." msgstr "L'architecture pour dpkg. Indiquez @code{armhf} pour debootstrap pour une instnace ARMv7 sur un hôte AArch64. La valeur par défaut est l'architecture système actuelle." #. type: item -#: guix-git/doc/guix.texi:31133 +#: guix-git/doc/guix.texi:31498 #, no-wrap msgid "@code{suite} (default: @code{\"stable\"})" msgstr "@code{suite} (par défaut : @code{\"stable\"})" #. type: table -#: guix-git/doc/guix.texi:31136 +#: guix-git/doc/guix.texi:31501 msgid "When set, this must be a Debian distribution ``suite'' such as @code{buster} or @code{focal}. If set to @code{#f}, the default for the OS provider is used." msgstr "Lorsqu'il est indiqué, ce paramètre doit être une distribution Debian comme @code{buster} ou @code{focal}. Si la valeur est @code{#f}, la valeur par défaut du fournisseur de système est utilisée." #. type: item -#: guix-git/doc/guix.texi:31136 +#: guix-git/doc/guix.texi:31501 #, no-wrap msgid "@code{extra-pkgs} (default: @code{%default-debootstrap-extra-pkgs})" msgstr "@code{extra-pkgs} (par défaut : @code{%default-debootstrap-extra-pkgs})" #. type: table -#: guix-git/doc/guix.texi:31139 +#: guix-git/doc/guix.texi:31504 msgid "List of extra packages that will get installed by dpkg in addition to the minimal system." msgstr "Liste des paquets supplémentaires qui seront installés par dpkg en plus du système minimal." #. type: item -#: guix-git/doc/guix.texi:31139 +#: guix-git/doc/guix.texi:31504 #, no-wrap msgid "@code{components} (default: @code{#f})" msgstr "@code{components} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31142 +#: guix-git/doc/guix.texi:31507 msgid "When set, must be a list of Debian repository ``components''. For example @code{'(\"main\" \"contrib\")}." msgstr "Lorsque la valeur est indiquée, doit être une liste de « composants » de répertoires Debian. Par exemple @code{'(\"main\" \"contrib\")}." #. type: item -#: guix-git/doc/guix.texi:31142 +#: guix-git/doc/guix.texi:31507 #, no-wrap msgid "@code{generate-cache?} (default: @code{#t})" msgstr "@code{generate-cache?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:31144 +#: guix-git/doc/guix.texi:31509 msgid "Whether to automatically cache the generated debootstrap archive." msgstr "Indique s'il faut automatiquement mettre en cache l'archive debootstrap générée." #. type: item -#: guix-git/doc/guix.texi:31144 +#: guix-git/doc/guix.texi:31509 #, no-wrap msgid "@code{clean-cache} (default: @code{14})" msgstr "@code{clean-cache} (par défaut : @code{14})" #. type: table -#: guix-git/doc/guix.texi:31147 +#: guix-git/doc/guix.texi:31512 msgid "Discard the cache after this amount of days. Use @code{#f} to never clear the cache." msgstr "Supprime le cache après ce nombre de jours. Utilisez @code{#f} pour ne jamais vider le cache." #. type: item -#: guix-git/doc/guix.texi:31147 +#: guix-git/doc/guix.texi:31512 #, no-wrap msgid "@code{partition-style} (default: @code{'msdos})" msgstr "@code{partition-style} (par défaut : @code{'msdos})" #. type: table -#: guix-git/doc/guix.texi:31150 +#: guix-git/doc/guix.texi:31515 msgid "The type of partition to create. When set, it must be one of @code{'msdos}, @code{'none} or a string." msgstr "Le type de partition à créer. Lorsqu'il est indiqué, ce paramètre doit être @code{'msdos}, @code{'none} ou une chaine de caractères." #. type: item -#: guix-git/doc/guix.texi:31150 +#: guix-git/doc/guix.texi:31515 #, no-wrap msgid "@code{partition-alignment} (default: @code{2048})" msgstr "@code{partition-alignment} (par défaut : @code{2048})" #. type: table -#: guix-git/doc/guix.texi:31152 +#: guix-git/doc/guix.texi:31517 msgid "Alignment of the partition in sectors." msgstr "Alignement des partitions en nombre de secteur." #. type: deffn -#: guix-git/doc/guix.texi:31155 +#: guix-git/doc/guix.texi:31520 #, no-wrap msgid "{Scheme Procedure} debootstrap-variant @var{name} @var{configuration}" msgstr "{Procédure Scheme} debootstrap-variant @var{nom} @var{configuration}" #. type: deffn -#: guix-git/doc/guix.texi:31158 +#: guix-git/doc/guix.texi:31523 msgid "This is a helper procedure that creates a @code{ganeti-os-variant} record. It takes two parameters: a name and a @code{debootstrap-configuration} object." msgstr "C'est une procédure auxiliaire qui crée un enregistrement @code{ganeti-os-variant}. Il prend deux paramètres . un nom et un objet @code{debootstrap-configuration}." #. type: deffn -#: guix-git/doc/guix.texi:31160 +#: guix-git/doc/guix.texi:31525 #, no-wrap msgid "{Scheme Procedure} debootstrap-os @var{variants}@dots{}" msgstr "{Procédure Scheme} debootstrap-os @var{variants}@dots{}" #. type: deffn -#: guix-git/doc/guix.texi:31163 +#: guix-git/doc/guix.texi:31528 msgid "This is a helper procedure that creates a @code{ganeti-os} record. It takes a list of variants created with @code{debootstrap-variant}." msgstr "C'est une procédure auxiliaire qui crée un enregistrement @code{ganeti-os}. Elle prend une liste de variantes créé avec @code{debootstrap-variant}." #. type: deffn -#: guix-git/doc/guix.texi:31165 +#: guix-git/doc/guix.texi:31530 #, no-wrap msgid "{Scheme Procedure} guix-variant @var{name} @var{configuration}" msgstr "{Procédure Scheme} guix-variant @var{name} @var{configuration}" #. type: deffn -#: guix-git/doc/guix.texi:31170 +#: guix-git/doc/guix.texi:31535 msgid "This is a helper procedure that creates a @code{ganeti-os-variant} record for use with the Guix OS provider. It takes a name and a G-expression that returns a ``file-like'' (@pxref{G-Expressions, file-like objects}) object containing a Guix System configuration." msgstr "C'est une procédure auxiliaire qui crée un enregistrement @code{ganeti-os-variant} à utiliser avec le fournisseur de système Guix. Il prend un nom et une G-expression qui renvoie un objet simili-fichier (@pxref{G-Expressions, file-like objects}) contenant une configuration Guix System." #. type: deffn -#: guix-git/doc/guix.texi:31172 +#: guix-git/doc/guix.texi:31537 #, no-wrap msgid "{Scheme Procedure} guix-os @var{variants}@dots{}" msgstr "{Procédure Scheme} guix-os @var{variants}@dots{}" #. type: deffn -#: guix-git/doc/guix.texi:31175 +#: guix-git/doc/guix.texi:31540 msgid "This is a helper procedure that creates a @code{ganeti-os} record. It takes a list of variants produced by @code{guix-variant}." msgstr "C'est une procédure auxiliaire qui crée un enregistrement @code{ganeti-os}. Elle prend une liste de variantes produites par @code{guix-variant}." #. type: defvr -#: guix-git/doc/guix.texi:31177 +#: guix-git/doc/guix.texi:31542 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-variants" msgstr "{Variable Scheme} %default-debootstrap-variants" #. type: defvr -#: guix-git/doc/guix.texi:31181 +#: guix-git/doc/guix.texi:31546 msgid "This is a convenience variable to make the debootstrap provider work ``out of the box'' without users having to declare variants manually. It contains a single debootstrap variant with the default configuration:" msgstr "C'est une variable pratique pour que le fournisseur debootstrap fonctionne directement sans avoir à déclarer des variantes manuellement. Elle contient une seule variante debootrstap avec la configuration par défaut :" #. type: lisp -#: guix-git/doc/guix.texi:31186 +#: guix-git/doc/guix.texi:31551 #, no-wrap msgid "" "(list (debootstrap-variant\n" @@ -58780,18 +59515,18 @@ msgstr "" " (debootstrap-configuration)))\n" #. type: defvr -#: guix-git/doc/guix.texi:31189 +#: guix-git/doc/guix.texi:31554 #, no-wrap msgid "{Scheme Variable} %default-guix-variants" msgstr "{Variable Scheme} %default-guix-variants" #. type: defvr -#: guix-git/doc/guix.texi:31193 +#: guix-git/doc/guix.texi:31558 msgid "This is a convenience variable to make the Guix OS provider work without additional configuration. It creates a virtual machine that has an SSH server, a serial console, and authorizes the Ganeti hosts SSH keys." msgstr "C'est une variable pratique pour que le fournisseur Guix fonctionne directement sans configuration supplémentaire. Elle crée une machine virtuelle qui a un serveur SSH, une console série et autorise les clés SSH des hôtes Ganeti." #. type: lisp -#: guix-git/doc/guix.texi:31199 +#: guix-git/doc/guix.texi:31564 #, no-wrap msgid "" "(list (guix-variant\n" @@ -58805,12 +59540,12 @@ msgstr "" " \"/share/doc/ganeti-instance-guix/examples/dynamic.scm\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:31205 +#: guix-git/doc/guix.texi:31570 msgid "Users can implement support for OS providers unbeknownst to Guix by extending the @code{ganeti-os} and @code{ganeti-os-variant} records appropriately. For example:" msgstr "Les utilisateur·rices peuvent implémenter la prise en charge des fournisseurs de systèmes inconnus de Guix en étendant les enregistrement @code{ganeti-os} et @code{ganeti-os-variant} comme il faut. Par exemple :" #. type: lisp -#: guix-git/doc/guix.texi:31214 +#: guix-git/doc/guix.texi:31579 #, no-wrap msgid "" "(ganeti-os\n" @@ -58830,728 +59565,728 @@ msgstr "" " (configuration (plain-file \"titi\" \"this is fine\"))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:31219 +#: guix-git/doc/guix.texi:31584 msgid "That creates @file{/etc/ganeti/instance-custom/variants/foo.conf} which points to a file in the store with contents @code{this is fine}. It also creates @file{/etc/ganeti/instance-custom/variants/variants.list} with contents @code{foo}." msgstr "Cela crée @file{/etc/ganeti/instance-custom/variants/toto.conf} qui pointe vers un fichier dans le dépôt qui contient @code{this is fine}. Cela crée aussi @file{/etc/ganeti/instance-custom/variants/variants.list} qui contient @code{toto}." #. type: Plain text -#: guix-git/doc/guix.texi:31222 +#: guix-git/doc/guix.texi:31587 msgid "Obviously this may not work for all OS providers out there. If you find the interface limiting, please reach out to @email{guix-devel@@gnu.org}." msgstr "Évidemment cela ne fonctionnera pas avec tous les fournisseurs d'OS disponibles. Si vous trouvez que cette interface est trop limitée, contactez-nous sur @email{guix-devel@@gnu.org}." #. type: Plain text -#: guix-git/doc/guix.texi:31225 +#: guix-git/doc/guix.texi:31590 msgid "The rest of this section documents the various services that are included by @code{ganeti-service-type}." msgstr "Le reste de cette section documente les divers services inclus par @code{ganeti-service-type}." #. type: defvr -#: guix-git/doc/guix.texi:31226 +#: guix-git/doc/guix.texi:31591 #, no-wrap msgid "{Scheme Variable} ganeti-noded-service-type" msgstr "{Variable Scheme} ganeti-noded-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31230 +#: guix-git/doc/guix.texi:31595 msgid "@command{ganeti-noded} is the daemon responsible for node-specific functions within the Ganeti system. The value of this service must be a @code{ganeti-noded-configuration} object." msgstr "@command{ganeti-noded} est le démon responsable des fonctions spécifiques au nœud dans le système Ganeti. La valeur de ce service doit être un objet @code{ganeti-noded-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:31232 +#: guix-git/doc/guix.texi:31597 #, no-wrap msgid "{Data Type} ganeti-noded-configuration" msgstr "{Type de données} ganeti-noded-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31234 +#: guix-git/doc/guix.texi:31599 msgid "This is the configuration for the @code{ganeti-noded} service." msgstr "La configuration du service @code{ganeti-noded}." #. type: table -#: guix-git/doc/guix.texi:31238 guix-git/doc/guix.texi:31288 -#: guix-git/doc/guix.texi:31318 guix-git/doc/guix.texi:31345 -#: guix-git/doc/guix.texi:31377 guix-git/doc/guix.texi:31430 -#: guix-git/doc/guix.texi:31450 guix-git/doc/guix.texi:31476 -#: guix-git/doc/guix.texi:31509 +#: guix-git/doc/guix.texi:31603 guix-git/doc/guix.texi:31653 +#: guix-git/doc/guix.texi:31683 guix-git/doc/guix.texi:31710 +#: guix-git/doc/guix.texi:31742 guix-git/doc/guix.texi:31795 +#: guix-git/doc/guix.texi:31815 guix-git/doc/guix.texi:31841 +#: guix-git/doc/guix.texi:31874 msgid "The @code{ganeti} package to use for this service." msgstr "Le paquet @code{ganeti} à utiliser pour ce service." #. type: item -#: guix-git/doc/guix.texi:31239 +#: guix-git/doc/guix.texi:31604 #, no-wrap msgid "@code{port} (default: @code{1811})" msgstr "@code{port} (par défaut : @code{1811})" #. type: table -#: guix-git/doc/guix.texi:31241 +#: guix-git/doc/guix.texi:31606 msgid "The TCP port on which the node daemon listens for network requests." msgstr "Port TCP sur lequel le démon de nœud écoute les requêtes réseaux." #. type: item -#: guix-git/doc/guix.texi:31242 guix-git/doc/guix.texi:31292 -#: guix-git/doc/guix.texi:31384 guix-git/doc/guix.texi:31454 +#: guix-git/doc/guix.texi:31607 guix-git/doc/guix.texi:31657 +#: guix-git/doc/guix.texi:31749 guix-git/doc/guix.texi:31819 #, no-wrap msgid "@code{address} (default: @code{\"0.0.0.0\"})" msgstr "@code{address} (par défaut : @code{\"0.0.0.0\"})" #. type: table -#: guix-git/doc/guix.texi:31245 +#: guix-git/doc/guix.texi:31610 msgid "The network address that the daemon will bind to. The default address means bind to all available addresses." msgstr "Adresse réseau sur laquelle le démon se lie. L'adresse par défaut signifie de se lier à toutes les adresse disponibles." #. type: table -#: guix-git/doc/guix.texi:31249 +#: guix-git/doc/guix.texi:31614 msgid "When this is set, it must be a specific network interface (e.g.@: @code{eth0}) that the daemon will bind to." msgstr "Si une valeur est indiquée, elle doit être une interface réseau spécifique (p.@: ex.@: @code{eth0}) à laquelle le démon se liera." #. type: item -#: guix-git/doc/guix.texi:31250 guix-git/doc/guix.texi:31392 +#: guix-git/doc/guix.texi:31615 guix-git/doc/guix.texi:31757 #, no-wrap msgid "@code{max-clients} (default: @code{20})" msgstr "@code{max-clients} (par défaut : @code{20})" #. type: table -#: guix-git/doc/guix.texi:31254 +#: guix-git/doc/guix.texi:31619 msgid "This sets a limit on the maximum number of simultaneous client connections that the daemon will handle. Connections above this count are accepted, but no responses will be sent until enough connections have closed." msgstr "Cela indique une limite du nombre de connexions clientes simultanées que le démon pourra prendre en charge. Les connexions au delà de ce nombre sont acceptées, mais aucune réponse ne sera envoyée avant que suffisamment de connexions ne soient fermées." #. type: item -#: guix-git/doc/guix.texi:31255 guix-git/doc/guix.texi:31397 +#: guix-git/doc/guix.texi:31620 guix-git/doc/guix.texi:31762 #, no-wrap msgid "@code{ssl?} (default: @code{#t})" msgstr "@code{ssl?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:31259 +#: guix-git/doc/guix.texi:31624 msgid "Whether to use SSL/TLS to encrypt network communications. The certificate is automatically provisioned by the cluster and can be rotated with @command{gnt-cluster renew-crypto}." msgstr "Indique s'il faut utiliser SSL/TLS pour chiffrer les communications réseaux. Le certification est automatiquement intégré par la grappe et peut être modifié avec @command{gnt-cluster renew-crypto}." #. type: item -#: guix-git/doc/guix.texi:31260 guix-git/doc/guix.texi:31400 +#: guix-git/doc/guix.texi:31625 guix-git/doc/guix.texi:31765 #, no-wrap msgid "@code{ssl-key} (default: @file{\"/var/lib/ganeti/server.pem\"})" msgstr "@code{ssl-key} (par défaut : @file{\"/var/lib/ganeti/server.pem\"})" #. type: table -#: guix-git/doc/guix.texi:31262 guix-git/doc/guix.texi:31402 +#: guix-git/doc/guix.texi:31627 guix-git/doc/guix.texi:31767 msgid "This can be used to provide a specific encryption key for TLS communications." msgstr "Cela peut être utilisé pour fournir une clé de chiffrement spécifique pour les communications TLS." #. type: item -#: guix-git/doc/guix.texi:31263 guix-git/doc/guix.texi:31403 +#: guix-git/doc/guix.texi:31628 guix-git/doc/guix.texi:31768 #, no-wrap msgid "@code{ssl-cert} (default: @file{\"/var/lib/ganeti/server.pem\"})" msgstr "@code{ssl-cert} (par défaut : @file{\"/var/lib/ganeti/server.pem\"})" #. type: table -#: guix-git/doc/guix.texi:31265 guix-git/doc/guix.texi:31405 +#: guix-git/doc/guix.texi:31630 guix-git/doc/guix.texi:31770 msgid "This can be used to provide a specific certificate for TLS communications." msgstr "Cela peut être utilisé pour fournir un certification spécifique pour les communications TLS." #. type: table -#: guix-git/doc/guix.texi:31269 guix-git/doc/guix.texi:31409 +#: guix-git/doc/guix.texi:31634 guix-git/doc/guix.texi:31774 msgid "When true, the daemon performs additional logging for debugging purposes. Note that this will leak encryption details to the log files, use with caution." msgstr "Lorsque la valeur est vraie, le démon effectue plus de journalisation pour le débogage. Remarque que cela laissera fuiter des détails de chiffrement dans les journaux, utilisez cette option avec prudence." #. type: defvr -#: guix-git/doc/guix.texi:31273 +#: guix-git/doc/guix.texi:31638 #, no-wrap msgid "{Scheme Variable} ganeti-confd-service-type" msgstr "{Variable Scheme} ganeti-confd-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31279 +#: guix-git/doc/guix.texi:31644 msgid "@command{ganeti-confd} answers queries related to the configuration of a Ganeti cluster. The purpose of this daemon is to have a highly available and fast way to query cluster configuration values. It is automatically active on all @dfn{master candidates}. The value of this service must be a @code{ganeti-confd-configuration} object." msgstr "@command{ganeti-confd} répond aux requêtes liées à la configuration de la grappe Ganeti. Le but de ce démon est d'avoir une manière rapide et très disponible de demander les valeurs de configuration de la grappe. Il est automatiquement activé sur tous les @dfn{candidats maitres}. La valeur de ce service doit être un objet @code{ganeti-confd-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:31282 +#: guix-git/doc/guix.texi:31647 #, no-wrap msgid "{Data Type} ganeti-confd-configuration" msgstr "{Type de données} ganeti-confd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31284 +#: guix-git/doc/guix.texi:31649 msgid "This is the configuration for the @code{ganeti-confd} service." msgstr "La configuration du service @code{ganeti-confd}." #. type: item -#: guix-git/doc/guix.texi:31289 +#: guix-git/doc/guix.texi:31654 #, no-wrap msgid "@code{port} (default: @code{1814})" msgstr "@code{port} (par défaut : @code{1814})" #. type: table -#: guix-git/doc/guix.texi:31291 +#: guix-git/doc/guix.texi:31656 msgid "The UDP port on which to listen for network requests." msgstr "Le port UDP sur lequel écouter les requêtes réseaux." #. type: table -#: guix-git/doc/guix.texi:31294 +#: guix-git/doc/guix.texi:31659 msgid "Network address that the daemon will bind to." msgstr "L'adresse réseau sur laquelle le démon se liera." #. type: table -#: guix-git/doc/guix.texi:31297 guix-git/doc/guix.texi:31326 -#: guix-git/doc/guix.texi:31353 guix-git/doc/guix.texi:31433 -#: guix-git/doc/guix.texi:31460 guix-git/doc/guix.texi:31486 +#: guix-git/doc/guix.texi:31662 guix-git/doc/guix.texi:31691 +#: guix-git/doc/guix.texi:31718 guix-git/doc/guix.texi:31798 +#: guix-git/doc/guix.texi:31825 guix-git/doc/guix.texi:31851 msgid "When true, the daemon performs additional logging for debugging purposes." msgstr "Lorsque la valeur est vraie, le démon effectue des actions de journalisation supplémentaires pour le débogage." #. type: defvr -#: guix-git/doc/guix.texi:31301 +#: guix-git/doc/guix.texi:31666 #, no-wrap msgid "{Scheme Variable} ganeti-wconfd-service-type" msgstr "{Variable Scheme} ganeti-wconfd-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31307 +#: guix-git/doc/guix.texi:31672 msgid "@command{ganeti-wconfd} is the daemon that has authoritative knowledge about the cluster configuration and is the only entity that can accept changes to it. All jobs that need to modify the configuration will do so by sending appropriate requests to this daemon. It only runs on the @dfn{master node} and will automatically disable itself on other nodes." msgstr "@command{ganeti-wconfd} est le démon qui fait autorité sur la configuration de la grappe et est la seule entité qui peut y accepter des changements. Tous les travaux qui ont besoin de modifier la configuration le feront en envoyant les requêtes appropriées à ce démon. Il ne tourne que sur le @dfn{nœud maitre} et sera automatiquement désactivé sur les autres nœuds." #. type: defvr -#: guix-git/doc/guix.texi:31310 +#: guix-git/doc/guix.texi:31675 msgid "The value of this service must be a @code{ganeti-wconfd-configuration} object." msgstr "La valeur de ce service est un objet @code{ganeti-wconfd-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:31312 +#: guix-git/doc/guix.texi:31677 #, no-wrap msgid "{Data Type} ganeti-wconfd-configuration" msgstr "{Type de données} ganeti-wconfd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31314 +#: guix-git/doc/guix.texi:31679 msgid "This is the configuration for the @code{ganeti-wconfd} service." msgstr "La configuration du service @code{ganeti-wconfd}." #. type: item -#: guix-git/doc/guix.texi:31319 guix-git/doc/guix.texi:31346 +#: guix-git/doc/guix.texi:31684 guix-git/doc/guix.texi:31711 #, no-wrap msgid "@code{no-voting?} (default: @code{#f})" msgstr "@code{no-voting?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31323 +#: guix-git/doc/guix.texi:31688 msgid "The daemon will refuse to start if the majority of cluster nodes does not agree that it is running on the master node. Set to @code{#t} to start even if a quorum can not be reached (dangerous, use with caution)." msgstr "Le démon refusera de démarrer si la majorité des nœuds de la grappe ne sont pas d'accord pour dire qu'il est le nœud maitre. Indiquez @code{#t} pour le démarre même si le quorum n'a pas été atteint (dangereux, utilisez avec prudence)." #. type: defvr -#: guix-git/doc/guix.texi:31330 +#: guix-git/doc/guix.texi:31695 #, no-wrap msgid "{Scheme Variable} ganeti-luxid-service-type" msgstr "{Variable Scheme} ganeti-luxid-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31335 +#: guix-git/doc/guix.texi:31700 msgid "@command{ganeti-luxid} is a daemon used to answer queries related to the configuration and the current live state of a Ganeti cluster. Additionally, it is the authoritative daemon for the Ganeti job queue. Jobs can be submitted via this daemon and it schedules and starts them." msgstr "@command{ganeti-luxid} est un démon utilisé pour répondre aux requêtes liées à la configuration et à l'état actuel d'une grappe Ganeti. En plus, c'est le démon qui fait autorité pour la queue de travaux de Ganeti. les travaux peuvent être soumis via ce démon et il les programme et les démarre." #. type: defvr -#: guix-git/doc/guix.texi:31337 +#: guix-git/doc/guix.texi:31702 msgid "It takes a @code{ganeti-luxid-configuration} object." msgstr "Il prend un objet @code{ganeti-luxid-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:31339 +#: guix-git/doc/guix.texi:31704 #, no-wrap msgid "{Data Type} ganeti-luxid-configuration" msgstr "{Type de données} ganeti-luxid-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31341 +#: guix-git/doc/guix.texi:31706 msgid "This is the configuration for the @code{ganeti-luxid} service." msgstr "La configuration du service @code{ganeti-rapi}." #. type: table -#: guix-git/doc/guix.texi:31350 +#: guix-git/doc/guix.texi:31715 msgid "The daemon will refuse to start if it cannot verify that the majority of cluster nodes believes that it is running on the master node. Set to @code{#t} to ignore such checks and start anyway (this can be dangerous)." msgstr "Le démon refusera de démarrer s'il ne peut pas vérifier que la majorité des nœuds de la grappe pensent qu'il est le nœud maitre. Indiquez @code{#t} pour le démarre malgré tout (cela peut être dangereux)." #. type: defvr -#: guix-git/doc/guix.texi:31357 +#: guix-git/doc/guix.texi:31722 #, no-wrap msgid "{Scheme Variable} ganeti-rapi-service-type" msgstr "{Variable Scheme} ganeti-rapi-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31361 +#: guix-git/doc/guix.texi:31726 msgid "@command{ganeti-rapi} provides a remote API for Ganeti clusters. It runs on the master node and can be used to perform cluster actions programmatically via a JSON-based RPC protocol." msgstr "@command{ganeti-rapi} fournit une API à distance pour les grappes Ganeti. Il est lancé sur le maitre et peut être utilisé pour effectuer des actions programmées sur la grappe via un protocole de RPC basé sur JSON." #. type: defvr -#: guix-git/doc/guix.texi:31367 +#: guix-git/doc/guix.texi:31732 msgid "Most query operations are allowed without authentication (unless @var{require-authentication?} is set), whereas write operations require explicit authorization via the @file{/var/lib/ganeti/rapi/users} file. See the @url{http://docs.ganeti.org/ganeti/master/html/rapi.html, Ganeti Remote API documentation} for more information." msgstr "La plupart des opérations de requêtes sont permises sans authentification (à moins que @var{require-authentification?} ne soit indiqué), alors que les opérations en écriture requièrent une autorisation explicite via le fichier @var{/var/lib/ganeti/rapi/users}. voir la @url{http://docs.ganeti.org/ganeti/master/html/rapi.html, documentation de l'API distante de Ganeti} pour plus d'informations." #. type: defvr -#: guix-git/doc/guix.texi:31369 +#: guix-git/doc/guix.texi:31734 msgid "The value of this service must be a @code{ganeti-rapi-configuration} object." msgstr "La valeur de ce service doit être un objet @code{geneti-rapi-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:31371 +#: guix-git/doc/guix.texi:31736 #, no-wrap msgid "{Data Type} ganeti-rapi-configuration" msgstr "{Type de données} ganeti-rapi-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31373 +#: guix-git/doc/guix.texi:31738 msgid "This is the configuration for the @code{ganeti-rapi} service." msgstr "La configuration du service @code{ganeti-rapi}." #. type: item -#: guix-git/doc/guix.texi:31378 +#: guix-git/doc/guix.texi:31743 #, no-wrap msgid "@code{require-authentication?} (default: @code{#f})" msgstr "@code{require-authentication?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31380 +#: guix-git/doc/guix.texi:31745 msgid "Whether to require authentication even for read-only operations." msgstr "Indique s'il faut demander une authentification même pour les opérations en lecture-seule." #. type: item -#: guix-git/doc/guix.texi:31381 +#: guix-git/doc/guix.texi:31746 #, no-wrap msgid "@code{port} (default: @code{5080})" msgstr "@code{port} (par défaut : @code{5080})" #. type: table -#: guix-git/doc/guix.texi:31383 +#: guix-git/doc/guix.texi:31748 msgid "The TCP port on which to listen to API requests." msgstr "Le port TCP sur lequel écouter les requêtes de l'API." #. type: table -#: guix-git/doc/guix.texi:31387 +#: guix-git/doc/guix.texi:31752 msgid "The network address that the service will bind to. By default it listens on all configured addresses." msgstr "L'adresse réseau sur laquelle le service de liera. Par défaut il écoute sur toutes les adresses." #. type: table -#: guix-git/doc/guix.texi:31391 +#: guix-git/doc/guix.texi:31756 msgid "When set, it must specify a specific network interface such as @code{eth0} that the daemon will bind to." msgstr "Si une valeur est indiquée, elle doit spécifier une interface réseau spécifique comme @code{eth0} sur laquelle le démon se liera." #. type: table -#: guix-git/doc/guix.texi:31396 +#: guix-git/doc/guix.texi:31761 msgid "The maximum number of simultaneous client requests to handle. Further connections are allowed, but no responses are sent until enough connections have closed." msgstr "Le nombre maximum de requêtes clientes simultanées à prendre en charge. Les connexions supplémentaires sont permises, mais aucune réponse ne sera envoyée tant qu'il n'y aura pas assez de connexions fermées." #. type: table -#: guix-git/doc/guix.texi:31399 +#: guix-git/doc/guix.texi:31764 msgid "Whether to use SSL/TLS encryption on the RAPI port." msgstr "Indique s'il faut utiliser le chiffrement SSL/TLS sur le port RAPI." #. type: defvr -#: guix-git/doc/guix.texi:31413 +#: guix-git/doc/guix.texi:31778 #, no-wrap msgid "{Scheme Variable} ganeti-kvmd-service-type" msgstr "{Variable Scheme} ganeti-kvmd-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31421 +#: guix-git/doc/guix.texi:31786 msgid "@command{ganeti-kvmd} is responsible for determining whether a given KVM instance was shut down by an administrator or a user. Normally Ganeti will restart an instance that was not stopped through Ganeti itself. If the cluster option @code{user_shutdown} is true, this daemon monitors the @code{QMP} socket provided by QEMU and listens for shutdown events, and marks the instance as @dfn{USER_down} instead of @dfn{ERROR_down} when it shuts down gracefully by itself." msgstr "@command{ganeti-kvmd} doit déterminer si une instance KVM donnée a été éteinte par un administrateur ou un utilisateur. Normalement Ganeti redémarre une instance qui a été arrêtée par Ganeti lui-même. Si l'option de grappe @code{user_shutdown} est vraie, ce démon vérifie la socket @code{QMP} fournie par QEMU et écoute les évènements d'extinction, et marque l'instance @dfn{USER down} au lieu de @dfn{ERROR down} lorsqu'elle s'éteint correctement par elle-même." #. type: defvr -#: guix-git/doc/guix.texi:31423 +#: guix-git/doc/guix.texi:31788 msgid "It takes a @code{ganeti-kvmd-configuration} object." msgstr "Il prend un objet @code{ganeti-kvmd-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:31425 +#: guix-git/doc/guix.texi:31790 #, no-wrap msgid "{Data Type} ganeti-kvmd-configuration" msgstr "{Type de données} ganeti-kvmd-configuration" #. type: defvr -#: guix-git/doc/guix.texi:31437 +#: guix-git/doc/guix.texi:31802 #, no-wrap msgid "{Scheme Variable} ganeti-mond-service-type" msgstr "{Variable Scheme} ganeti-mond-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31441 +#: guix-git/doc/guix.texi:31806 msgid "@command{ganeti-mond} is an optional daemon that provides Ganeti monitoring functionality. It is responsible for running data collectors and publish the collected information through a HTTP interface." msgstr "@command{ganeti-mond} est un démon facultatif qui propose des fonctionnalités de surveillance de Ganeti. Il est responsable des collecteurs de données et de la publication des informations récupérées sur une interface HTTP." #. type: defvr -#: guix-git/doc/guix.texi:31443 +#: guix-git/doc/guix.texi:31808 msgid "It takes a @code{ganeti-mond-configuration} object." msgstr "Il prend un objet @code{ganeti-mond-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:31445 +#: guix-git/doc/guix.texi:31810 #, no-wrap msgid "{Data Type} ganeti-mond-configuration" msgstr "{Type de données} ganeti-mond-configuration" #. type: item -#: guix-git/doc/guix.texi:31451 +#: guix-git/doc/guix.texi:31816 #, no-wrap msgid "@code{port} (default: @code{1815})" msgstr "@code{port} (par défaut : @code{1815})" #. type: table -#: guix-git/doc/guix.texi:31453 guix-git/doc/guix.texi:31479 +#: guix-git/doc/guix.texi:31818 guix-git/doc/guix.texi:31844 msgid "The port on which the daemon will listen." msgstr "Le port sur lequel le démon écoutera." #. type: table -#: guix-git/doc/guix.texi:31457 +#: guix-git/doc/guix.texi:31822 msgid "The network address that the daemon will bind to. By default it binds to all available interfaces." msgstr "L'adresse réseau sur laquelle le démon se liera. Par défaut, il se lie à toutes les interfaces disponibles." #. type: defvr -#: guix-git/doc/guix.texi:31464 +#: guix-git/doc/guix.texi:31829 #, no-wrap msgid "{Scheme Variable} ganeti-metad-service-type" msgstr "{Variable Scheme} ganeti-metad-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31467 +#: guix-git/doc/guix.texi:31832 msgid "@command{ganeti-metad} is an optional daemon that can be used to provide information about the cluster to instances or OS install scripts." msgstr "@command{ganeti-metad} est un démon facultatif qui peut être utilisé pour fournir des informations sur la grappe aux instance ou aux scripts d'installation de systèmes." #. type: defvr -#: guix-git/doc/guix.texi:31469 +#: guix-git/doc/guix.texi:31834 msgid "It takes a @code{ganeti-metad-configuration} object." msgstr "Il prend un objet @code{ganeti-metad-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:31471 +#: guix-git/doc/guix.texi:31836 #, no-wrap msgid "{Data Type} ganeti-metad-configuration" msgstr "{Type de données} ganeti-metad-configuration" #. type: table -#: guix-git/doc/guix.texi:31483 +#: guix-git/doc/guix.texi:31848 msgid "If set, the daemon will bind to this address only. If left unset, the behavior depends on the cluster configuration." msgstr "Si la valeur est indiquée, le démon se liera à cette adresse uniquement. Si la valeur n'est pas indiquée, le comportement dépend de la configuration de la grappe." #. type: defvr -#: guix-git/doc/guix.texi:31490 +#: guix-git/doc/guix.texi:31855 #, no-wrap msgid "{Scheme Variable} ganeti-watcher-service-type" msgstr "{Variable Scheme} ganeti-watcher-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31498 +#: guix-git/doc/guix.texi:31863 msgid "@command{ganeti-watcher} is a script designed to run periodically and ensure the health of a cluster. It will automatically restart instances that have stopped without Ganeti's consent, and repairs DRBD links in case a node has rebooted. It also archives old cluster jobs and restarts Ganeti daemons that are not running. If the cluster parameter @code{ensure_node_health} is set, the watcher will also shutdown instances and DRBD devices if the node it is running on is declared offline by known master candidates." msgstr "@command{ganeti-watcher} est un script conçu pour se lancer périodiquement et s'assurer de la santé de la grappe. Il redémarrera automatiquement les instances qui sont arrêtées sans le consentement de Ganeti, et réparera les liens DRBD au cas où un nœud a redémarré. Il archive aussi les anciennes tâche de la grappe et redémarre les démons Ganeti qui ne sont pas lancés. Si le paramètres de grappe @code{ensure_node_health} est indiqué, le gardien éteindra aussi les instances et les périphériques DRBD si le nœud sur lequel il est lancé est déclaré hors-ligne par un candidat maitre." #. type: defvr -#: guix-git/doc/guix.texi:31500 +#: guix-git/doc/guix.texi:31865 msgid "It can be paused on all nodes with @command{gnt-cluster watcher pause}." msgstr "Il peut être mis en pause sur tous les nœuds avec @command{gnt-cluster watcher-pause}." #. type: defvr -#: guix-git/doc/guix.texi:31502 +#: guix-git/doc/guix.texi:31867 msgid "The service takes a @code{ganeti-watcher-configuration} object." msgstr "Le service prend un objet @code{ganeti-watcher-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:31504 +#: guix-git/doc/guix.texi:31869 #, no-wrap msgid "{Data Type} ganeti-watcher-configuration" msgstr "{Type de données} ganeti-watcher-configuration" #. type: item -#: guix-git/doc/guix.texi:31510 +#: guix-git/doc/guix.texi:31875 #, no-wrap msgid "@code{schedule} (default: @code{'(next-second-from (next-minute (range 0 60 5)))})" msgstr "@code{schedule} (par défaut : @code{'(next-second-from (next-minute (range 0 60 5)))})" #. type: table -#: guix-git/doc/guix.texi:31512 +#: guix-git/doc/guix.texi:31877 msgid "How often to run the script. The default is every five minutes." msgstr "Indique quand lancer le script. Par défaut, toutes les cinq minutes." #. type: item -#: guix-git/doc/guix.texi:31513 +#: guix-git/doc/guix.texi:31878 #, no-wrap msgid "@code{rapi-ip} (default: @code{#f})" msgstr "@code{rapi-ip} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31516 +#: guix-git/doc/guix.texi:31881 msgid "This option needs to be specified only if the RAPI daemon is configured to use a particular interface or address. By default the cluster address is used." msgstr "Cette option doit être spécifiée seulement si le démon RAPI est configuré pour utiliser une interface ou une adresse particulière. Par défaut l'adresse de grappe est utilisée." #. type: item -#: guix-git/doc/guix.texi:31517 +#: guix-git/doc/guix.texi:31882 #, no-wrap msgid "@code{job-age} (default: @code{(* 6 3600)})" msgstr "@code{job-age} (par défaut : @code{(* 6 3600)})" #. type: table -#: guix-git/doc/guix.texi:31520 +#: guix-git/doc/guix.texi:31885 msgid "Archive cluster jobs older than this age, specified in seconds. The default is 6 hours. This keeps @command{gnt-job list} manageable." msgstr "Archive les tâches de grappe plus vieilles que cela, en secondes. Par défaut c'est 6 heure. Cela permet de garder un @command{gnt-job list} gérable." #. type: item -#: guix-git/doc/guix.texi:31521 +#: guix-git/doc/guix.texi:31886 #, no-wrap msgid "@code{verify-disks?} (default: @code{#t})" msgstr "@code{verify-disks?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:31525 +#: guix-git/doc/guix.texi:31890 msgid "If this is @code{#f}, the watcher will not try to repair broken DRBD links automatically. Administrators will need to use @command{gnt-cluster verify-disks} manually instead." msgstr "Si la valeur est @code{#f}, le gardien n'essaiera pas de réparer les liens DRBD cassés automatiquement. Les administrateur·rices devront utiliser @command{gnt-cluster verify-disks} manuellement à la place." #. type: table -#: guix-git/doc/guix.texi:31528 +#: guix-git/doc/guix.texi:31893 msgid "When @code{#t}, the script performs additional logging for debugging purposes." msgstr "Lorsque la valeur est @code{#t}, le script effectue des actions de journalisation supplémentaires pour le débogage." #. type: defvr -#: guix-git/doc/guix.texi:31532 +#: guix-git/doc/guix.texi:31897 #, no-wrap msgid "{Scheme Variable} ganeti-cleaner-service-type" msgstr "{Variable Scheme} ganeti-cleaner-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31540 +#: guix-git/doc/guix.texi:31905 msgid "@command{ganeti-cleaner} is a script designed to run periodically and remove old files from the cluster. This service type controls two @dfn{cron jobs}: one intended for the master node that permanently purges old cluster jobs, and one intended for every node that removes expired X509 certificates, keys, and outdated @command{ganeti-watcher} information. Like all Ganeti services, it is safe to include even on non-master nodes as it will disable itself as necessary." msgstr "@command{ganeti-cleaner} est un script conçu pour être lancé périodiquement et supprimer les anciens fichiers de la grappe. Ce type de service contrôle deux @dfn{tâches cron} : l'une est conçue pour le nœud maitre et purge de manière permanente les ancienne tâches de la grappe, et l'autre est conçue pour tous les nœuds et supprime les certificats X509, les clés et les informations @command{ganeti-watcher} périmées. Comme tous les services Ganeti, on peut l'ajouter même sur les nœuds non-maitres car il se désactive tout seul en cas de besoin." #. type: defvr -#: guix-git/doc/guix.texi:31542 +#: guix-git/doc/guix.texi:31907 msgid "It takes a @code{ganeti-cleaner-configuration} object." msgstr "Il prend un objet @code{ganeti-cleaner-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:31544 +#: guix-git/doc/guix.texi:31909 #, no-wrap msgid "{Data Type} ganeti-cleaner-configuration" msgstr "{Type de données} ganeti-cleaner-configuration" #. type: table -#: guix-git/doc/guix.texi:31549 +#: guix-git/doc/guix.texi:31914 msgid "The @code{ganeti} package to use for the @command{gnt-cleaner} command." msgstr "Le paquet @code{ganeti} à utiliser pour la commande @command{gnt-cleaner}." #. type: item -#: guix-git/doc/guix.texi:31550 +#: guix-git/doc/guix.texi:31915 #, no-wrap msgid "@code{master-schedule} (default: @code{\"45 1 * * *\"})" msgstr "@code{master-schedule} (par défaut : @code{\"45 1 * * *\"})" #. type: table -#: guix-git/doc/guix.texi:31553 +#: guix-git/doc/guix.texi:31918 msgid "How often to run the master cleaning job. The default is once per day, at 01:45:00." msgstr "La périodicité à laquelle lancer la tâche de nettoyage maitre. Par défaut c'est une fois par jour, à 01:45:00." #. type: item -#: guix-git/doc/guix.texi:31554 +#: guix-git/doc/guix.texi:31919 #, no-wrap msgid "@code{node-schedule} (default: @code{\"45 2 * * *\"})" msgstr "@code{node-schedule} (par défaut : @code{\"45 2 * * *\"})" #. type: table -#: guix-git/doc/guix.texi:31557 +#: guix-git/doc/guix.texi:31922 msgid "How often to run the node cleaning job. The default is once per day, at 02:45:00." msgstr "La périodicité à laquelle lancer la tâche de nettoyage des nœuds. Par défaut une fois par jour, à 02:45:00." #. type: Plain text -#: guix-git/doc/guix.texi:31571 +#: guix-git/doc/guix.texi:31936 msgid "The @code{(gnu services version-control)} module provides a service to allow remote access to local Git repositories. There are three options: the @code{git-daemon-service}, which provides access to repositories via the @code{git://} unsecured TCP-based protocol, extending the @code{nginx} web server to proxy some requests to @code{git-http-backend}, or providing a web interface with @code{cgit-service-type}." msgstr "Le module @code{(gnu services version-control)} fournit un service pour permettre l'accès à distance à des dépôts Git locaux. Il y a trois options : en utilisant @code{git-daemon-service} qui fournit un accès aux dépôts via le protocole non sécurisé @code{git://} basé sur TCP, en étendant le serveur web @code{nginx} pour relayer les requêtes vers @code{git-http-backend} ou en fournissant une interface web avec @code{cgit-service-type}." #. type: deffn -#: guix-git/doc/guix.texi:31572 +#: guix-git/doc/guix.texi:31937 #, no-wrap msgid "{Scheme Procedure} git-daemon-service [#:config (git-daemon-configuration)]" msgstr "{Procédure Scheme} git-daemon-service [#:config (git-daemon-configuration)]" #. type: deffn -#: guix-git/doc/guix.texi:31576 +#: guix-git/doc/guix.texi:31941 msgid "Return a service that runs @command{git daemon}, a simple TCP server to expose repositories over the Git protocol for anonymous access." msgstr "Renvoie un service qui lance @command{git daemon}, un serveur TCP simple pour exposer des dépôts sur le protocole Git pour des accès anonymes." #. type: deffn -#: guix-git/doc/guix.texi:31582 +#: guix-git/doc/guix.texi:31947 msgid "The optional @var{config} argument should be a @code{} object, by default it allows read-only access to exported@footnote{By creating the magic file @file{git-daemon-export-ok} in the repository directory.} repositories under @file{/srv/git}." msgstr "L'argument facultatif @var{config} devrait être un objet @code{}, par défaut il permet l'accès en lecture-seule aux dépôts exportés@footnote{En créant le fichier magique @file{git-daemon-export-ok} dans le répertoire du dépôt.} dans @file{/srv/git}." #. type: deftp -#: guix-git/doc/guix.texi:31585 +#: guix-git/doc/guix.texi:31950 #, no-wrap msgid "{Data Type} git-daemon-configuration" msgstr "{Type de données} git-daemon-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31587 +#: guix-git/doc/guix.texi:31952 msgid "Data type representing the configuration for @code{git-daemon-service}." msgstr "Type de données représentnt la configuration de @code{git-daemon-service}." #. type: item -#: guix-git/doc/guix.texi:31589 +#: guix-git/doc/guix.texi:31954 #, no-wrap msgid "@code{package} (default: @code{git})" msgstr "@code{package} (par défaut : @code{git})" #. type: table -#: guix-git/doc/guix.texi:31591 guix-git/doc/guix.texi:31651 +#: guix-git/doc/guix.texi:31956 guix-git/doc/guix.texi:32016 msgid "Package object of the Git distributed version control system." msgstr "Objet de paquet du système de contrôle de version distribué Git." #. type: item -#: guix-git/doc/guix.texi:31592 guix-git/doc/guix.texi:31655 +#: guix-git/doc/guix.texi:31957 guix-git/doc/guix.texi:32020 #, no-wrap msgid "@code{export-all?} (default: @code{#f})" msgstr "@code{export-all?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31595 +#: guix-git/doc/guix.texi:31960 msgid "Whether to allow access for all Git repositories, even if they do not have the @file{git-daemon-export-ok} file." msgstr "Indique s'il faut permettre l'accès à tous les dépôts Git, même s'ils n'ont pas le fichier @file{git-daemon-export-ok}." #. type: item -#: guix-git/doc/guix.texi:31596 +#: guix-git/doc/guix.texi:31961 #, no-wrap msgid "@code{base-path} (default: @file{/srv/git})" msgstr "@code{base-path} (par défaut : @file{/srv/git})" #. type: table -#: guix-git/doc/guix.texi:31602 +#: guix-git/doc/guix.texi:31967 msgid "Whether to remap all the path requests as relative to the given path. If you run @command{git daemon} with @code{(base-path \"/srv/git\")} on @samp{example.com}, then if you later try to pull @indicateurl{git://example.com/hello.git}, git daemon will interpret the path as @file{/srv/git/hello.git}." msgstr "Indique s'il faut traduire toutes les requêtes de chemins relativement au chemin actuel. Si vous lancez @command{git daemon} avec @code{(base-path \"/srv/git\")} sur @samp{example.com}, et que vous essayez ensuite de récupérer @indicateurl{git://example.com/hello.git}, le démon git interprètera ce chemin comme étant @code{/srv/git/hello.git}." #. type: item -#: guix-git/doc/guix.texi:31603 +#: guix-git/doc/guix.texi:31968 #, no-wrap msgid "@code{user-path} (default: @code{#f})" msgstr "@code{user-path} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31611 +#: guix-git/doc/guix.texi:31976 msgid "Whether to allow @code{~user} notation to be used in requests. When specified with empty string, requests to @indicateurl{git://host/~alice/foo} is taken as a request to access @code{foo} repository in the home directory of user @code{alice}. If @code{(user-path \"@var{path}\")} is specified, the same request is taken as a request to access @file{@var{path}/foo} repository in the home directory of user @code{alice}." msgstr "Indique s'il faut permettre la notation @code{~user} dans les requêtes. Lorsque spécifié avec une chaine vide, les requêtes à @indicateurl{git://host/~alice/toto} sont des requêtes d'accès au dépôt @code{toto} dans le répertoire personnel de l'utilisateur @code{alice}. Si @var{(user-path \"@var{chemin}\")} est spécifié, la même requête est interprétée comme accédant au répertoire @file{@var{chemin}/foo} dans le répertoire personnel de l'utilisateur @code{alice}." #. type: item -#: guix-git/doc/guix.texi:31612 +#: guix-git/doc/guix.texi:31977 #, no-wrap msgid "@code{listen} (default: @code{'()})" msgstr "@code{listen} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:31615 +#: guix-git/doc/guix.texi:31980 msgid "Whether to listen on specific IP addresses or hostnames, defaults to all." msgstr "Indique s'il faut écouter sur des adresses IP ou des noms d'hôtes particuliers, par défaut tous." #. type: item -#: guix-git/doc/guix.texi:31616 +#: guix-git/doc/guix.texi:31981 #, no-wrap msgid "@code{port} (default: @code{#f})" msgstr "@code{port} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:31618 +#: guix-git/doc/guix.texi:31983 msgid "Whether to listen on an alternative port, which defaults to 9418." msgstr "Indique s'il faut écouter sur un port particulier, par défaut le 9418." #. type: item -#: guix-git/doc/guix.texi:31619 +#: guix-git/doc/guix.texi:31984 #, no-wrap msgid "@code{whitelist} (default: @code{'()})" msgstr "@code{whitelist} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:31621 +#: guix-git/doc/guix.texi:31986 msgid "If not empty, only allow access to this list of directories." msgstr "Si la liste n'est pas vide, n'autoriser l'accès qu'aux dossiers spécifiés." #. type: table -#: guix-git/doc/guix.texi:31625 +#: guix-git/doc/guix.texi:31990 msgid "Extra options will be passed to @command{git daemon}, please run @command{man git-daemon} for more information." msgstr "Options supplémentaires qui seront passées à @code{git daemon}, lancez @command{man git-daemon} pour plus d'informations." #. type: Plain text -#: guix-git/doc/guix.texi:31639 +#: guix-git/doc/guix.texi:32004 msgid "The @code{git://} protocol lacks authentication. When you pull from a repository fetched via @code{git://}, you don't know whether the data you receive was modified or is even coming from the specified host, and your connection is subject to eavesdropping. It's better to use an authenticated and encrypted transport, such as @code{https}. Although Git allows you to serve repositories using unsophisticated file-based web servers, there is a faster protocol implemented by the @code{git-http-backend} program. This program is the back-end of a proper Git web service. It is designed to sit behind a FastCGI proxy. @xref{Web Services}, for more on running the necessary @code{fcgiwrap} daemon." msgstr "Le protocole @code{git://} ne permet pas l'authentification. Lorsque vous récupérez un dépôt via @code{git://}, vous ne pouvez pas savoir si les données que vous recevez ont été modifiées ou si elles viennent bien de l'hôte spécifié, et votre connexion pourrait être espionnée. Il est préférable d'utiliser un protocole de transport authentifié et chiffré, comme @code{https}. Bien que Git vous permette de servir des dépôts avec un serveur web peu sophistiqué basé sur les fichiers, il y a un protocole plus rapide implémenté par le programme @code{git-http-backend}. Ce programme est le moteur des services web Git corrects. Il est conçu pour se trouver derrière un mandataire FastCGI. @xref{Web Services} pour plus d'informations sur la manière de lancer le démon @code{fcgiwrap} nécessaire." #. type: Plain text -#: guix-git/doc/guix.texi:31642 +#: guix-git/doc/guix.texi:32007 msgid "Guix has a separate configuration data type for serving Git repositories over HTTP." msgstr "Guix a un type de données de configuration séparé pour servir des dépôts Git par HTTP." #. type: deftp -#: guix-git/doc/guix.texi:31643 +#: guix-git/doc/guix.texi:32008 #, no-wrap msgid "{Data Type} git-http-configuration" msgstr "{Type de données} git-http-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31647 +#: guix-git/doc/guix.texi:32012 msgid "Data type representing the configuration for a future @code{git-http-service-type}; can currently be used to configure Nginx through @code{git-http-nginx-location-configuration}." msgstr "Type de données représentant la configuration d'un futur @code{git-http-service-type} ; il peut actuellement être utilisé pour configurer Nginx à travers @code{git-http-nginx-location-configuration}." #. type: item -#: guix-git/doc/guix.texi:31649 +#: guix-git/doc/guix.texi:32014 #, no-wrap msgid "@code{package} (default: @var{git})" msgstr "@code{package} (par défaut : @var{git})" #. type: item -#: guix-git/doc/guix.texi:31652 +#: guix-git/doc/guix.texi:32017 #, no-wrap msgid "@code{git-root} (default: @file{/srv/git})" msgstr "@code{git-root} (par défaut : @file{/srv/git})" #. type: table -#: guix-git/doc/guix.texi:31654 +#: guix-git/doc/guix.texi:32019 msgid "Directory containing the Git repositories to expose to the world." msgstr "Répertoire contenant les dépôts Git à exposer au monde." #. type: table -#: guix-git/doc/guix.texi:31658 +#: guix-git/doc/guix.texi:32023 msgid "Whether to expose access for all Git repositories in @var{git-root}, even if they do not have the @file{git-daemon-export-ok} file." msgstr "Indique s'il faut exposer l'accès de tous les dépôts Git dans @var{git-root}, même s'ils n'ont pas le fichier @file{git-daemon-export-ok}." #. type: item -#: guix-git/doc/guix.texi:31659 +#: guix-git/doc/guix.texi:32024 #, no-wrap msgid "@code{uri-path} (default: @samp{/git/})" msgstr "@code{uri-path} (par défaut : @samp{/git/})" #. type: table -#: guix-git/doc/guix.texi:31664 +#: guix-git/doc/guix.texi:32029 msgid "Path prefix for Git access. With the default @samp{/git/} prefix, this will map @indicateurl{http://@var{server}/git/@var{repo}.git} to @file{/srv/git/@var{repo}.git}. Requests whose URI paths do not begin with this prefix are not passed on to this Git instance." msgstr "Préfixe du chemin pour l'accès Git. Avec le préfixe @samp{/git/} par défaut, cela traduira @indicateurl{http://@var{server}/git/@var{repo}.git} en @file{/srv/git/@var{repo}.git}. Les requêtes dont les chemins d'URI ne commencent pas par ce préfixe ne seront pas passées à cette instance de Git." #. type: item -#: guix-git/doc/guix.texi:31665 +#: guix-git/doc/guix.texi:32030 #, no-wrap msgid "@code{fcgiwrap-socket} (default: @code{127.0.0.1:9000})" msgstr "@code{fcgiwrap-socket} (par défaut : @code{127.0.0.1:9000})" #. type: table -#: guix-git/doc/guix.texi:31668 +#: guix-git/doc/guix.texi:32033 msgid "The socket on which the @code{fcgiwrap} daemon is listening. @xref{Web Services}." msgstr "Le socket sur lequel le démon @code{fcgiwrap} écoute. @xref{Web Services}." #. type: Plain text -#: guix-git/doc/guix.texi:31675 +#: guix-git/doc/guix.texi:32040 msgid "There is no @code{git-http-service-type}, currently; instead you can create an @code{nginx-location-configuration} from a @code{git-http-configuration} and then add that location to a web server." msgstr "Il n'y a pas de @code{git-http-service-type}, actuellement ; à la place vous pouvez créer un @code{nginx-location-configuration} à partir d'un @code{git-http-configuration} puis ajouter cela au serveur web." #. type: deffn -#: guix-git/doc/guix.texi:31676 +#: guix-git/doc/guix.texi:32041 #, no-wrap msgid "{Scheme Procedure} git-http-nginx-location-configuration @" msgstr "{Procédure Scheme} git-http-nginx-location-configuration @" #. type: deffn -#: guix-git/doc/guix.texi:31681 +#: guix-git/doc/guix.texi:32046 msgid "[config=(git-http-configuration)] Compute an @code{nginx-location-configuration} that corresponds to the given Git http configuration. An example nginx service definition to serve the default @file{/srv/git} over HTTPS might be:" msgstr "" "[config=(git-http-configuration)]\n" "Calcule un @code{nginx-location-configuration} qui correspond à la configuration http Git donnée. Voici un exemple de définition de service nginx qui sert le répertoire @file{/srv/git} par défaut en HTTPS :" #. type: lisp -#: guix-git/doc/guix.texi:31698 +#: guix-git/doc/guix.texi:32063 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -59587,1409 +60322,1414 @@ msgstr "" " (git-http-configuration (uri-path \"/\"))))))))))\n" #. type: deffn -#: guix-git/doc/guix.texi:31705 +#: guix-git/doc/guix.texi:32070 msgid "This example assumes that you are using Let's Encrypt to get your TLS certificate. @xref{Certificate Services}. The default @code{certbot} service will redirect all HTTP traffic on @code{git.my-host.org} to HTTPS@. You will also need to add an @code{fcgiwrap} proxy to your system services. @xref{Web Services}." msgstr "Ce exemple suppose que vous utilisez Let's Encrypt pour récupérer votre certificat TLS. @xref{Certificate Services}. Le service @code{certbot} par défaut redirigera tout le trafic HTTP de @code{git.my-host.org} en HTTPS@. Vous devrez aussi ajouter un mandataire @code{fcgiwrap} à vos services systèmes. @xref{Web Services}." #. type: subsubheading -#: guix-git/doc/guix.texi:31707 +#: guix-git/doc/guix.texi:32072 #, no-wrap msgid "Cgit Service" msgstr "Service Cgit" #. type: cindex -#: guix-git/doc/guix.texi:31709 +#: guix-git/doc/guix.texi:32074 #, no-wrap msgid "Cgit service" msgstr "Service cgit" #. type: cindex -#: guix-git/doc/guix.texi:31710 +#: guix-git/doc/guix.texi:32075 #, no-wrap msgid "Git, web interface" msgstr "Git, interface web" #. type: Plain text -#: guix-git/doc/guix.texi:31713 +#: guix-git/doc/guix.texi:32078 msgid "@uref{https://git.zx2c4.com/cgit/, Cgit} is a web frontend for Git repositories written in C." msgstr "@uref{https://git.zx2c4.com/cgit/, Cgit} est une interface web pour des dépôts Git écrite en C." #. type: Plain text -#: guix-git/doc/guix.texi:31716 +#: guix-git/doc/guix.texi:32081 msgid "The following example will configure the service with default values. By default, Cgit can be accessed on port 80 (@code{http://localhost:80})." msgstr "L'exemple suivant configurera le service avec les valeurs par défaut. Par défaut, on peut accéder à Cgit sur le port (@code{http://localhost:80})." #. type: lisp -#: guix-git/doc/guix.texi:31719 +#: guix-git/doc/guix.texi:32084 #, no-wrap msgid "(service cgit-service-type)\n" msgstr "(service cgit-service-type)\n" #. type: Plain text -#: guix-git/doc/guix.texi:31723 +#: guix-git/doc/guix.texi:32088 msgid "The @code{file-object} type designates either a file-like object (@pxref{G-Expressions, file-like objects}) or a string." msgstr "Le type @code{file-object} désigne soit un objet simili-fichier (@pxref{G-Expressions, file-like objects}), soit une chaîne." #. type: Plain text -#: guix-git/doc/guix.texi:31727 +#: guix-git/doc/guix.texi:32092 msgid "Available @code{cgit-configuration} fields are:" msgstr "Les champs de @code{cgit-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:31728 +#: guix-git/doc/guix.texi:32093 #, no-wrap msgid "{@code{cgit-configuration} parameter} package package" msgstr "{paramètre de @code{cgit-configuration}} package package" #. type: deftypevr -#: guix-git/doc/guix.texi:31730 +#: guix-git/doc/guix.texi:32095 msgid "The CGIT package." msgstr "Le paquet cgit." #. type: deftypevr -#: guix-git/doc/guix.texi:31733 +#: guix-git/doc/guix.texi:32098 #, no-wrap msgid "{@code{cgit-configuration} parameter} nginx-server-configuration-list nginx" msgstr "{paramètre de @code{cgit-configuration}} nginx-server-configuration-list nginx" #. type: deftypevr -#: guix-git/doc/guix.texi:31738 +#: guix-git/doc/guix.texi:32100 +msgid "NGINX configuration." +msgstr "Configuration Nginx." + +#. type: deftypevr +#: guix-git/doc/guix.texi:32103 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object about-filter" msgstr "{paramètre de @code{cgit-configuration}} file-object about-filter" #. type: deftypevr -#: guix-git/doc/guix.texi:31741 +#: guix-git/doc/guix.texi:32106 msgid "Specifies a command which will be invoked to format the content of about pages (both top-level and for each repository)." msgstr "Spécifie une commande qui doit être invoquée pour formater le contenu des pages « à propos » (au plus haut niveau et pour chaque dépôt)." #. type: deftypevr -#: guix-git/doc/guix.texi:31746 +#: guix-git/doc/guix.texi:32111 #, no-wrap msgid "{@code{cgit-configuration} parameter} string agefile" msgstr "{paramètre de @code{cgit-configuration}} string agefile" #. type: deftypevr -#: guix-git/doc/guix.texi:31749 +#: guix-git/doc/guix.texi:32114 msgid "Specifies a path, relative to each repository path, which can be used to specify the date and time of the youngest commit in the repository." msgstr "Spécifie un chemin, relativement à chaque dépôt, qui peut être utilisé pour spécifier la date et l'heure du plus récent commit du dépôt." #. type: deftypevr -#: guix-git/doc/guix.texi:31754 +#: guix-git/doc/guix.texi:32119 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object auth-filter" msgstr "{paramètre de @code{cgit-configuration}} file-object auth-filter" #. type: deftypevr -#: guix-git/doc/guix.texi:31757 +#: guix-git/doc/guix.texi:32122 msgid "Specifies a command that will be invoked for authenticating repository access." msgstr "Spécifie une commande qui sera invoquée pour authentifier l'accès au dépôt." #. type: deftypevr -#: guix-git/doc/guix.texi:31762 +#: guix-git/doc/guix.texi:32127 #, no-wrap msgid "{@code{cgit-configuration} parameter} string branch-sort" msgstr "{paramètre de @code{cgit-configuration}} string branch-sort" #. type: deftypevr -#: guix-git/doc/guix.texi:31765 +#: guix-git/doc/guix.texi:32130 msgid "Flag which, when set to @samp{age}, enables date ordering in the branch ref list, and when set @samp{name} enables ordering by branch name." msgstr "Drapeau qui, lorsqu'il vaut @samp{age}, active le trie par date dans la liste des branches, et le trie par nom lorsqu'il vaut @samp{name}." #. type: deftypevr -#: guix-git/doc/guix.texi:31767 +#: guix-git/doc/guix.texi:32132 msgid "Defaults to @samp{\"name\"}." msgstr "La valeur par défaut est @samp{\"name\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:31770 +#: guix-git/doc/guix.texi:32135 #, no-wrap msgid "{@code{cgit-configuration} parameter} string cache-root" msgstr "{paramètre de @code{cgit-configuration}} string cache-root" #. type: deftypevr -#: guix-git/doc/guix.texi:31772 +#: guix-git/doc/guix.texi:32137 msgid "Path used to store the cgit cache entries." msgstr "Chemin utilisé pour stocker les entrées de cache de cgit." #. type: deftypevr -#: guix-git/doc/guix.texi:31774 +#: guix-git/doc/guix.texi:32139 msgid "Defaults to @samp{\"/var/cache/cgit\"}." msgstr "La valeur par défaut est @samp{\"/var/cache/cgit\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:31777 +#: guix-git/doc/guix.texi:32142 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-static-ttl" msgstr "{paramètre de @code{cgit-configuration}} integer cache-static-ttl" #. type: deftypevr -#: guix-git/doc/guix.texi:31780 +#: guix-git/doc/guix.texi:32145 msgid "Number which specifies the time-to-live, in minutes, for the cached version of repository pages accessed with a fixed SHA1." msgstr "Nombre qui spécifie le temps de vie, en minute, des versions en cache des pages du dépôt accédées par leur SHA-1." #. type: deftypevr -#: guix-git/doc/guix.texi:31782 guix-git/doc/guix.texi:32225 +#: guix-git/doc/guix.texi:32147 guix-git/doc/guix.texi:32590 msgid "Defaults to @samp{-1}." msgstr "La valeur par défaut est @samp{-1}." #. type: deftypevr -#: guix-git/doc/guix.texi:31785 +#: guix-git/doc/guix.texi:32150 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-dynamic-ttl" msgstr "{paramètre de @code{cgit-configuration}} integer cache-dynamic-ttl" #. type: deftypevr -#: guix-git/doc/guix.texi:31788 +#: guix-git/doc/guix.texi:32153 msgid "Number which specifies the time-to-live, in minutes, for the cached version of repository pages accessed without a fixed SHA1." msgstr "Nombre qui spécifie le temps de vie, en minutes, des version en cache des pages du dépôt accédées sans leur SHA1." #. type: deftypevr -#: guix-git/doc/guix.texi:31793 +#: guix-git/doc/guix.texi:32158 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-repo-ttl" msgstr "{paramètre de @code{cgit-configuration}} integer cache-repo-ttl" #. type: deftypevr -#: guix-git/doc/guix.texi:31796 +#: guix-git/doc/guix.texi:32161 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository summary page." msgstr "Nombre qui spécifie le temps de vie, en minute, des version en cache de la page de résumé du dépôt." #. type: deftypevr -#: guix-git/doc/guix.texi:31801 +#: guix-git/doc/guix.texi:32166 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-root-ttl" msgstr "{paramètre de @code{cgit-configuration}} integer cache-root-ttl" #. type: deftypevr -#: guix-git/doc/guix.texi:31804 +#: guix-git/doc/guix.texi:32169 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository index page." msgstr "Nombre qui spécifie le temps de vie, en minutes, de la version en cache de la page d'index du dépôt." #. type: deftypevr -#: guix-git/doc/guix.texi:31809 +#: guix-git/doc/guix.texi:32174 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-scanrc-ttl" msgstr "{paramètre de @code{cgit-configuration}} integer cache-scanrc-ttl" #. type: deftypevr -#: guix-git/doc/guix.texi:31812 +#: guix-git/doc/guix.texi:32177 msgid "Number which specifies the time-to-live, in minutes, for the result of scanning a path for Git repositories." msgstr "Nombre qui spécifie le temps de vie, en minutes, de la version en cache du résultat du scan d'un chemin dans le dépôt Git." #. type: deftypevr -#: guix-git/doc/guix.texi:31817 +#: guix-git/doc/guix.texi:32182 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-about-ttl" msgstr "{paramètre de @code{cgit-configuration}} integer cache-about-ttl" #. type: deftypevr -#: guix-git/doc/guix.texi:31820 +#: guix-git/doc/guix.texi:32185 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository about page." msgstr "Nombre qui spécifie le temps de vie, en minutes, de la version en cache de la page « à propos » du dépôt." #. type: deftypevr -#: guix-git/doc/guix.texi:31825 +#: guix-git/doc/guix.texi:32190 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-snapshot-ttl" msgstr "{paramètre de @code{cgit-configuration}} integer cache-snapshot-ttl" #. type: deftypevr -#: guix-git/doc/guix.texi:31828 +#: guix-git/doc/guix.texi:32193 msgid "Number which specifies the time-to-live, in minutes, for the cached version of snapshots." msgstr "Nombre qui spécifie le temps de vie, en minutes, de la version en cache des archives." #. type: deftypevr -#: guix-git/doc/guix.texi:31833 +#: guix-git/doc/guix.texi:32198 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-size" msgstr "{paramètre de @code{cgit-configuration}} integer cache-size" #. type: deftypevr -#: guix-git/doc/guix.texi:31836 +#: guix-git/doc/guix.texi:32201 msgid "The maximum number of entries in the cgit cache. When set to @samp{0}, caching is disabled." msgstr "Le nombre maximum d'entrées dans le cache de cgit. Lorsque la valeur est @samp{0}, le cache est désactivé." #. type: deftypevr -#: guix-git/doc/guix.texi:31841 +#: guix-git/doc/guix.texi:32206 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean case-sensitive-sort?" msgstr "{paramètre de @code{cgit-configuration}} boolean case-sensitive-sort?" #. type: deftypevr -#: guix-git/doc/guix.texi:31843 +#: guix-git/doc/guix.texi:32208 msgid "Sort items in the repo list case sensitively." msgstr "Indique si le tri des éléments est sensible à la casse." #. type: deftypevr -#: guix-git/doc/guix.texi:31848 +#: guix-git/doc/guix.texi:32213 #, no-wrap msgid "{@code{cgit-configuration} parameter} list clone-prefix" msgstr "{paramètre de @code{cgit-configuration}} list clone-prefix" #. type: deftypevr -#: guix-git/doc/guix.texi:31851 +#: guix-git/doc/guix.texi:32216 msgid "List of common prefixes which, when combined with a repository URL, generates valid clone URLs for the repository." msgstr "Liste des préfixes communs qui, lorsqu'ils sont combinés à l'URL du dépôt, génèrent des URL de clone valides pour le dépôt." #. type: deftypevr -#: guix-git/doc/guix.texi:31856 +#: guix-git/doc/guix.texi:32221 #, no-wrap msgid "{@code{cgit-configuration} parameter} list clone-url" msgstr "{paramètre de @code{cgit-configuration}} list clone-url" #. type: deftypevr -#: guix-git/doc/guix.texi:31858 +#: guix-git/doc/guix.texi:32223 msgid "List of @code{clone-url} templates." msgstr "Liste des modèles @code{clone-url}." #. type: deftypevr -#: guix-git/doc/guix.texi:31863 +#: guix-git/doc/guix.texi:32228 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object commit-filter" msgstr "{paramètre de @code{cgit-configuration}} file-object commit-filter" #. type: deftypevr -#: guix-git/doc/guix.texi:31865 +#: guix-git/doc/guix.texi:32230 msgid "Command which will be invoked to format commit messages." msgstr "Commande qui sera invoquée pour formater les messages de commit." #. type: deftypevr -#: guix-git/doc/guix.texi:31870 +#: guix-git/doc/guix.texi:32235 #, no-wrap msgid "{@code{cgit-configuration} parameter} string commit-sort" msgstr "{paramètre de @code{cgit-configuration}} string commit-sort" #. type: deftypevr -#: guix-git/doc/guix.texi:31874 guix-git/doc/guix.texi:32432 +#: guix-git/doc/guix.texi:32239 guix-git/doc/guix.texi:32797 msgid "Flag which, when set to @samp{date}, enables strict date ordering in the commit log, and when set to @samp{topo} enables strict topological ordering." msgstr "Drapeau qui, s'il vaut @samp{date}, active le tri par date strict dans le messages de commit, et le tri topologique strict lorsqu'il vaut @samp{topo}." #. type: deftypevr -#: guix-git/doc/guix.texi:31876 +#: guix-git/doc/guix.texi:32241 msgid "Defaults to @samp{\"git log\"}." msgstr "La valeur par défaut est @samp{\"git log\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:31879 +#: guix-git/doc/guix.texi:32244 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object css" msgstr "{paramètre de @code{cgit-configuration}} file-object css" #. type: deftypevr -#: guix-git/doc/guix.texi:31881 +#: guix-git/doc/guix.texi:32246 msgid "URL which specifies the css document to include in all cgit pages." msgstr "URL qui spécifie le document css à inclure dans les pages cgit." #. type: deftypevr -#: guix-git/doc/guix.texi:31883 +#: guix-git/doc/guix.texi:32248 msgid "Defaults to @samp{\"/share/cgit/cgit.css\"}." msgstr "La valeur par défaut est @samp{\"/share/cgit/cgit.css\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:31886 +#: guix-git/doc/guix.texi:32251 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object email-filter" msgstr "{paramètre de @code{cgit-configuration}} file-object email-filter" #. type: deftypevr -#: guix-git/doc/guix.texi:31890 +#: guix-git/doc/guix.texi:32255 msgid "Specifies a command which will be invoked to format names and email address of committers, authors, and taggers, as represented in various places throughout the cgit interface." msgstr "Spécifie une commande qui sera invoquée pour formater les noms et l'adresse de courriel des commiteurs, des auteurs et des taggueurs, représentés à plusieurs endroits dans l'interface cgit." #. type: deftypevr -#: guix-git/doc/guix.texi:31895 +#: guix-git/doc/guix.texi:32260 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean embedded?" msgstr "{paramètre de @code{cgit-configuration}} boolean embedded?" #. type: deftypevr -#: guix-git/doc/guix.texi:31898 +#: guix-git/doc/guix.texi:32263 msgid "Flag which, when set to @samp{#t}, will make cgit generate a HTML fragment suitable for embedding in other HTML pages." msgstr "Drapeau qui, s'il vaut @samp{#t}, fera générer un fragment HTML à cgit qu'il sera possible d'inclure dans d'autres pages HTML." #. type: deftypevr -#: guix-git/doc/guix.texi:31903 +#: guix-git/doc/guix.texi:32268 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-commit-graph?" msgstr "{paramètre de @code{cgit-configuration}} boolean enable-commit-graph?" #. type: deftypevr -#: guix-git/doc/guix.texi:31907 +#: guix-git/doc/guix.texi:32272 msgid "Flag which, when set to @samp{#t}, will make cgit print an ASCII-art commit history graph to the left of the commit messages in the repository log page." msgstr "Drapeau qui, lorsqu'il vaut @samp{#t}, fera afficher un historique en ASCII-art à gauche des messages de commit dans la page de log du dépôt." #. type: deftypevr -#: guix-git/doc/guix.texi:31912 +#: guix-git/doc/guix.texi:32277 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-filter-overrides?" msgstr "{paramètre de @code{cgit-configuration}} boolean enable-filter-overrides?" #. type: deftypevr -#: guix-git/doc/guix.texi:31915 +#: guix-git/doc/guix.texi:32280 msgid "Flag which, when set to @samp{#t}, allows all filter settings to be overridden in repository-specific cgitrc files." msgstr "Drapeau qui, lorsqu'il vaut @samp{#t}, permet à tous les paramètres de filtrage d'être modifiés dans des fichiers cgitrc spécifiques au dépôt." #. type: deftypevr -#: guix-git/doc/guix.texi:31920 +#: guix-git/doc/guix.texi:32285 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-follow-links?" msgstr "{paramètre de @code{cgit-configuration}} boolean enable-follow-links?" #. type: deftypevr -#: guix-git/doc/guix.texi:31923 +#: guix-git/doc/guix.texi:32288 msgid "Flag which, when set to @samp{#t}, allows users to follow a file in the log view." msgstr "Drapeau qui, s'il vaut @samp{#t}, permet aux utilisateurs de suivre un fichier dans la vue « log »." #. type: deftypevr -#: guix-git/doc/guix.texi:31928 +#: guix-git/doc/guix.texi:32293 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-http-clone?" msgstr "{paramètre de @code{cgit-configuration}} boolean enable-http-clone?" #. type: deftypevr -#: guix-git/doc/guix.texi:31931 +#: guix-git/doc/guix.texi:32296 msgid "If set to @samp{#t}, cgit will act as an dumb HTTP endpoint for Git clones." msgstr "Si la valeur est @samp{#t}, cgit agira comme un point d'accès HTTP idiot pour les clones Git." #. type: deftypevr -#: guix-git/doc/guix.texi:31936 +#: guix-git/doc/guix.texi:32301 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-index-links?" msgstr "{paramètre de @code{cgit-configuration}} boolean enable-index-links?" #. type: deftypevr -#: guix-git/doc/guix.texi:31939 +#: guix-git/doc/guix.texi:32304 msgid "Flag which, when set to @samp{#t}, will make cgit generate extra links \"summary\", \"commit\", \"tree\" for each repo in the repository index." msgstr "Drapeau qui, s'il vaut @samp{#t}, fera générer des liens « résumé », « commit » et « arborescence » supplémentaires poru chaque dépôt dans l'index des dépôts." #. type: deftypevr -#: guix-git/doc/guix.texi:31944 +#: guix-git/doc/guix.texi:32309 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-index-owner?" msgstr "{paramètre de @code{cgit-configuration}} boolean enable-index-owner?" #. type: deftypevr -#: guix-git/doc/guix.texi:31947 +#: guix-git/doc/guix.texi:32312 msgid "Flag which, when set to @samp{#t}, will make cgit display the owner of each repo in the repository index." msgstr "Drapeau qui, s'il vaut @samp{#t}, fera afficher le propriétaire de chaque dépôt dans l'index des dépôts." #. type: deftypevr -#: guix-git/doc/guix.texi:31952 +#: guix-git/doc/guix.texi:32317 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-log-filecount?" msgstr "{paramètre de @code{cgit-configuration}} boolean enable-log-filecount?" #. type: deftypevr -#: guix-git/doc/guix.texi:31955 +#: guix-git/doc/guix.texi:32320 msgid "Flag which, when set to @samp{#t}, will make cgit print the number of modified files for each commit on the repository log page." msgstr "Drapeau qui, s'il vaut @samp{#t}, fera afficher à cgit le nombre de fichiers modifiés pour chaque commit sur la page de log du dépôt." #. type: deftypevr -#: guix-git/doc/guix.texi:31960 +#: guix-git/doc/guix.texi:32325 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-log-linecount?" msgstr "{paramètre de @code{cgit-configuration}} boolean enable-log-linecount?" #. type: deftypevr -#: guix-git/doc/guix.texi:31963 +#: guix-git/doc/guix.texi:32328 msgid "Flag which, when set to @samp{#t}, will make cgit print the number of added and removed lines for each commit on the repository log page." msgstr "Drapeau qui, s'il vaut @samp{#t}, fera afficher à cgit le nombre de lignes ajoutées et enlevées pour chaque commit de la page de log du dépôt." #. type: deftypevr -#: guix-git/doc/guix.texi:31968 +#: guix-git/doc/guix.texi:32333 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-remote-branches?" msgstr "{paramètre de @code{cgit-configuration}} boolean enable-remote-branches?" #. type: deftypevr -#: guix-git/doc/guix.texi:31971 guix-git/doc/guix.texi:32495 +#: guix-git/doc/guix.texi:32336 guix-git/doc/guix.texi:32860 msgid "Flag which, when set to @code{#t}, will make cgit display remote branches in the summary and refs views." msgstr "Drapeau qui, s'il vaut @samp{#t}, fera afficher les branches distantes dans les vues du résumé et des références." #. type: deftypevr -#: guix-git/doc/guix.texi:31976 +#: guix-git/doc/guix.texi:32341 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-subject-links?" msgstr "{paramètre de @code{cgit-configuration}} boolean enable-subject-links?" #. type: deftypevr -#: guix-git/doc/guix.texi:31980 +#: guix-git/doc/guix.texi:32345 msgid "Flag which, when set to @code{1}, will make cgit use the subject of the parent commit as link text when generating links to parent commits in commit view." msgstr "Drapeau qui, s'il vaut @samp{1}, fera utiliser à cgit le sujet du commit parent comme texte du lien lors de la génération des liens vers les commits parents dans la vue des commits." #. type: deftypevr -#: guix-git/doc/guix.texi:31985 +#: guix-git/doc/guix.texi:32350 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-html-serving?" msgstr "{paramètre de @code{cgit-configuration}} boolean enable-html-serving?" #. type: deftypevr -#: guix-git/doc/guix.texi:31989 +#: guix-git/doc/guix.texi:32354 msgid "Flag which, when set to @samp{#t}, will make cgit use the subject of the parent commit as link text when generating links to parent commits in commit view." msgstr "Drapeau qui, s'il vaut @samp{#t}, fera utiliser à cgit l esujet du commit parent comme texte du lien lors de la génération des liens vers le commit parent dans la vue des commits." #. type: deftypevr -#: guix-git/doc/guix.texi:31994 +#: guix-git/doc/guix.texi:32359 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-tree-linenumbers?" msgstr "{paramètre de @code{cgit-configuration}} boolean enable-tree-linenumbers?" #. type: deftypevr -#: guix-git/doc/guix.texi:31997 +#: guix-git/doc/guix.texi:32362 msgid "Flag which, when set to @samp{#t}, will make cgit generate linenumber links for plaintext blobs printed in the tree view." msgstr "Drapeau qui, s'il vaut @samp{#t}, fera générer à cgit des liens vers le numéro de ligne pour les blobs en texte brut affichés dans la vue de l'arborescence." #. type: deftypevr -#: guix-git/doc/guix.texi:32002 +#: guix-git/doc/guix.texi:32367 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-git-config?" msgstr "{paramètre de @code{cgit-configuration}} boolean enable-git-config?" #. type: deftypevr -#: guix-git/doc/guix.texi:32005 +#: guix-git/doc/guix.texi:32370 msgid "Flag which, when set to @samp{#f}, will allow cgit to use Git config to set any repo specific settings." msgstr "Drapeau qui, s'il vaut @samp{#t}, permettra à cgit d'utiliser la configuration Git pour spécifier des paramètres spécifiques au dépôt." #. type: deftypevr -#: guix-git/doc/guix.texi:32010 +#: guix-git/doc/guix.texi:32375 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object favicon" msgstr "{paramètre de @code{cgit-configuration}} file-object favicon" #. type: deftypevr -#: guix-git/doc/guix.texi:32012 +#: guix-git/doc/guix.texi:32377 msgid "URL used as link to a shortcut icon for cgit." msgstr "URL utilisée comme lien vers un icône pour cgit." #. type: deftypevr -#: guix-git/doc/guix.texi:32014 +#: guix-git/doc/guix.texi:32379 msgid "Defaults to @samp{\"/favicon.ico\"}." msgstr "La valeur par défaut est @samp{\"/favicon.ico\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:32017 +#: guix-git/doc/guix.texi:32382 #, no-wrap msgid "{@code{cgit-configuration} parameter} string footer" msgstr "{paramètre de @code{cgit-configuration}} string footer" #. type: deftypevr -#: guix-git/doc/guix.texi:32021 +#: guix-git/doc/guix.texi:32386 msgid "The content of the file specified with this option will be included verbatim at the bottom of all pages (i.e.@: it replaces the standard \"generated by...\"@: message)." msgstr "Le contenu du fichier spécifié avec cette option sera inclus directement au bas de toutes les pages (c.-à-d.@: qu'il remplace le message « généré par …@: » générique)." #. type: deftypevr -#: guix-git/doc/guix.texi:32026 +#: guix-git/doc/guix.texi:32391 #, no-wrap msgid "{@code{cgit-configuration} parameter} string head-include" msgstr "{paramètre de @code{cgit-configuration}} string head-include" #. type: deftypevr -#: guix-git/doc/guix.texi:32029 +#: guix-git/doc/guix.texi:32394 msgid "The content of the file specified with this option will be included verbatim in the HTML HEAD section on all pages." msgstr "Le contenu du fichier spécifié dans cette option sera inclus directement dans la section HEAD HTML de toutes les pages." #. type: deftypevr -#: guix-git/doc/guix.texi:32034 +#: guix-git/doc/guix.texi:32399 #, no-wrap msgid "{@code{cgit-configuration} parameter} string header" msgstr "{paramètre de @code{cgit-configuration}} string header" #. type: deftypevr -#: guix-git/doc/guix.texi:32037 +#: guix-git/doc/guix.texi:32402 msgid "The content of the file specified with this option will be included verbatim at the top of all pages." msgstr "Le contenu du fichier spécifié avec cette option sera inclus directement au début de toutes les pages." #. type: deftypevr -#: guix-git/doc/guix.texi:32042 +#: guix-git/doc/guix.texi:32407 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object include" msgstr "{paramètre de @code{cgit-configuration}} file-object include" #. type: deftypevr -#: guix-git/doc/guix.texi:32045 +#: guix-git/doc/guix.texi:32410 msgid "Name of a configfile to include before the rest of the current config- file is parsed." msgstr "Nom d'un fichier de configuration à inclure avant que le reste du fichier de configuration actuel ne soit analysé." #. type: deftypevr -#: guix-git/doc/guix.texi:32050 +#: guix-git/doc/guix.texi:32415 #, no-wrap msgid "{@code{cgit-configuration} parameter} string index-header" msgstr "{paramètre de @code{cgit-configuration}} string index-header" #. type: deftypevr -#: guix-git/doc/guix.texi:32053 +#: guix-git/doc/guix.texi:32418 msgid "The content of the file specified with this option will be included verbatim above the repository index." msgstr "Le contenu du fichier spécifié avec cette option sera inclus directement au dessus de l'index des dépôts." #. type: deftypevr -#: guix-git/doc/guix.texi:32058 +#: guix-git/doc/guix.texi:32423 #, no-wrap msgid "{@code{cgit-configuration} parameter} string index-info" msgstr "{paramètre de @code{cgit-configuration}} string index-info" #. type: deftypevr -#: guix-git/doc/guix.texi:32061 +#: guix-git/doc/guix.texi:32426 msgid "The content of the file specified with this option will be included verbatim below the heading on the repository index page." msgstr "Le contenu du fichier spécifié avec cette option sera inclus directement en dessous de l'en-tête sur la page d'index du dépôt." #. type: deftypevr -#: guix-git/doc/guix.texi:32066 +#: guix-git/doc/guix.texi:32431 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean local-time?" msgstr "{paramètre de @code{cgit-configuration}} boolean local-time?" #. type: deftypevr -#: guix-git/doc/guix.texi:32069 +#: guix-git/doc/guix.texi:32434 msgid "Flag which, if set to @samp{#t}, makes cgit print commit and tag times in the servers timezone." msgstr "Drapeau qui, s'il vaut @samp{#t}, fera afficher à cgit l'heure et la date de commit et de tag dans le fuseau horaire du serveur." #. type: deftypevr -#: guix-git/doc/guix.texi:32074 +#: guix-git/doc/guix.texi:32439 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object logo" msgstr "{paramètre de @code{cgit-configuration}} file-object logo" #. type: deftypevr -#: guix-git/doc/guix.texi:32077 +#: guix-git/doc/guix.texi:32442 msgid "URL which specifies the source of an image which will be used as a logo on all cgit pages." msgstr "URL qui spécifie la source d'une image utilisé comme logo sur toutes les pages cgit." #. type: deftypevr -#: guix-git/doc/guix.texi:32079 +#: guix-git/doc/guix.texi:32444 msgid "Defaults to @samp{\"/share/cgit/cgit.png\"}." msgstr "La valeur par défaut est @samp{\"/share/cgit/cgit.png\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:32082 +#: guix-git/doc/guix.texi:32447 #, no-wrap msgid "{@code{cgit-configuration} parameter} string logo-link" msgstr "{paramètre de @code{cgit-configuration}} string logo-link" #. type: deftypevr -#: guix-git/doc/guix.texi:32084 guix-git/doc/guix.texi:32541 +#: guix-git/doc/guix.texi:32449 guix-git/doc/guix.texi:32906 msgid "URL loaded when clicking on the cgit logo image." msgstr "URL chargée lors du clic sur l'image du logo de cgit." #. type: deftypevr -#: guix-git/doc/guix.texi:32089 +#: guix-git/doc/guix.texi:32454 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object owner-filter" msgstr "{paramètre de @code{cgit-configuration}} file-object owner-filter" #. type: deftypevr -#: guix-git/doc/guix.texi:32092 +#: guix-git/doc/guix.texi:32457 msgid "Command which will be invoked to format the Owner column of the main page." msgstr "Commande qui sera invoquée pour formater la colonne propriétaire sur la page principale." #. type: deftypevr -#: guix-git/doc/guix.texi:32097 +#: guix-git/doc/guix.texi:32462 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-atom-items" msgstr "{paramètre de @code{cgit-configuration}} integer max-atom-items" #. type: deftypevr -#: guix-git/doc/guix.texi:32099 +#: guix-git/doc/guix.texi:32464 msgid "Number of items to display in atom feeds view." msgstr "Nombre d'éléments à afficher dans la vue des flux atom." #. type: deftypevr -#: guix-git/doc/guix.texi:32104 +#: guix-git/doc/guix.texi:32469 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-commit-count" msgstr "{paramètre de @code{cgit-configuration}} integer max-commit-count" #. type: deftypevr -#: guix-git/doc/guix.texi:32106 +#: guix-git/doc/guix.texi:32471 msgid "Number of entries to list per page in \"log\" view." msgstr "Nombre d'éléments à lister par page dans la vue « log »." #. type: deftypevr -#: guix-git/doc/guix.texi:32111 +#: guix-git/doc/guix.texi:32476 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-message-length" msgstr "{paramètre de @code{cgit-configuration}} integer max-message-length" #. type: deftypevr -#: guix-git/doc/guix.texi:32113 +#: guix-git/doc/guix.texi:32478 msgid "Number of commit message characters to display in \"log\" view." msgstr "Nombre caractères de messages de commit à afficher dans la vue « log »." #. type: deftypevr -#: guix-git/doc/guix.texi:32115 guix-git/doc/guix.texi:32131 +#: guix-git/doc/guix.texi:32480 guix-git/doc/guix.texi:32496 msgid "Defaults to @samp{80}." msgstr "La valeur par défaut est @samp{80}." #. type: deftypevr -#: guix-git/doc/guix.texi:32118 +#: guix-git/doc/guix.texi:32483 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-repo-count" msgstr "{paramètre de @code{cgit-configuration}} integer max-repo-count" #. type: deftypevr -#: guix-git/doc/guix.texi:32121 +#: guix-git/doc/guix.texi:32486 msgid "Specifies the number of entries to list per page on the repository index page." msgstr "Spécifie le nombre d'éléments à lister par page sur la page de l'index des dépôts." #. type: deftypevr -#: guix-git/doc/guix.texi:32126 +#: guix-git/doc/guix.texi:32491 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-repodesc-length" msgstr "{paramètre de @code{cgit-configuration}} integer max-repodesc-length" #. type: deftypevr -#: guix-git/doc/guix.texi:32129 +#: guix-git/doc/guix.texi:32494 msgid "Specifies the maximum number of repo description characters to display on the repository index page." msgstr "Spécifie le nombre maximum de caractères de description de dépôts à afficher sur la page d'index des dépôts." #. type: deftypevr -#: guix-git/doc/guix.texi:32134 +#: guix-git/doc/guix.texi:32499 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-blob-size" msgstr "{paramètre de @code{cgit-configuration}} integer max-blob-size" #. type: deftypevr -#: guix-git/doc/guix.texi:32136 +#: guix-git/doc/guix.texi:32501 msgid "Specifies the maximum size of a blob to display HTML for in KBytes." msgstr "Spécifie la taille maximale d'un blob pour lequel afficher du HTML en kilo-octets." #. type: deftypevr -#: guix-git/doc/guix.texi:32141 +#: guix-git/doc/guix.texi:32506 #, no-wrap msgid "{@code{cgit-configuration} parameter} string max-stats" msgstr "{paramètre de @code{cgit-configuration}} string max-stats" #. type: deftypevr -#: guix-git/doc/guix.texi:32144 +#: guix-git/doc/guix.texi:32509 msgid "Maximum statistics period. Valid values are @samp{week},@samp{month}, @samp{quarter} and @samp{year}." msgstr "Période de statistiques maximale. Les valeurs valides sont @samp{week}, @samp{month}, @samp{quarter} et @samp{year}." #. type: deftypevr -#: guix-git/doc/guix.texi:32149 +#: guix-git/doc/guix.texi:32514 #, no-wrap msgid "{@code{cgit-configuration} parameter} mimetype-alist mimetype" msgstr "{paramètre de @code{cgit-configuration}} mimetype-alist mimetype" #. type: deftypevr -#: guix-git/doc/guix.texi:32151 +#: guix-git/doc/guix.texi:32516 msgid "Mimetype for the specified filename extension." msgstr "Type mime pour l'extension de fichier spécifiée." #. type: deftypevr -#: guix-git/doc/guix.texi:32155 +#: guix-git/doc/guix.texi:32520 msgid "Defaults to @samp{((gif \"image/gif\") (html \"text/html\") (jpg \"image/jpeg\") (jpeg \"image/jpeg\") (pdf \"application/pdf\") (png \"image/png\") (svg \"image/svg+xml\"))}." msgstr "La valeur par défaut est @samp{((gif \"image/gif\") (html \"text/html\") (jpg \"image/jpeg\") (jpeg \"image/jpeg\") (pdf \"application/pdf\") (png \"image/png\") (svg \"image/svg+xml\"))}." #. type: deftypevr -#: guix-git/doc/guix.texi:32158 +#: guix-git/doc/guix.texi:32523 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object mimetype-file" msgstr "{paramètre de @code{cgit-configuration}} file-object mimetype-file" #. type: deftypevr -#: guix-git/doc/guix.texi:32160 +#: guix-git/doc/guix.texi:32525 msgid "Specifies the file to use for automatic mimetype lookup." msgstr "Spécifie le fichier à utiliser pour la recherche automatique de type mime." #. type: deftypevr -#: guix-git/doc/guix.texi:32165 +#: guix-git/doc/guix.texi:32530 #, no-wrap msgid "{@code{cgit-configuration} parameter} string module-link" msgstr "{paramètre de @code{cgit-configuration}} string module-link" #. type: deftypevr -#: guix-git/doc/guix.texi:32168 +#: guix-git/doc/guix.texi:32533 msgid "Text which will be used as the formatstring for a hyperlink when a submodule is printed in a directory listing." msgstr "Texte qui sera utilisé comme chaîne de formatage pour un lien hypertexte lorsqu'un sous-module est affiché dans la liste du répertoire." #. type: deftypevr -#: guix-git/doc/guix.texi:32173 +#: guix-git/doc/guix.texi:32538 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean nocache?" msgstr "{paramètre de @code{cgit-configuration}} boolean nocache?" #. type: deftypevr -#: guix-git/doc/guix.texi:32175 +#: guix-git/doc/guix.texi:32540 msgid "If set to the value @samp{#t} caching will be disabled." msgstr "Si la valeur est @samp{#t}, le cache est désactivé." #. type: deftypevr -#: guix-git/doc/guix.texi:32180 +#: guix-git/doc/guix.texi:32545 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean noplainemail?" msgstr "{paramètre de @code{cgit-configuration}} boolean noplainemail?" #. type: deftypevr -#: guix-git/doc/guix.texi:32183 +#: guix-git/doc/guix.texi:32548 msgid "If set to @samp{#t} showing full author email addresses will be disabled." msgstr "Si la valeur est @samp{#t}, l'affichage des adresse de courriel des auteurs sera désactivé." #. type: deftypevr -#: guix-git/doc/guix.texi:32188 +#: guix-git/doc/guix.texi:32553 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean noheader?" msgstr "{paramètre de @code{cgit-configuration}} boolean noheader?" #. type: deftypevr -#: guix-git/doc/guix.texi:32191 +#: guix-git/doc/guix.texi:32556 msgid "Flag which, when set to @samp{#t}, will make cgit omit the standard header on all pages." msgstr "Drapeau qui, s'il vaut @samp{#t}, fera omettre à cgit l'en-tête standard sur toutes les pages." #. type: deftypevr -#: guix-git/doc/guix.texi:32196 +#: guix-git/doc/guix.texi:32561 #, no-wrap msgid "{@code{cgit-configuration} parameter} project-list project-list" msgstr "{paramètre de @code{cgit-configuration}} project-list project-list" #. type: deftypevr -#: guix-git/doc/guix.texi:32200 +#: guix-git/doc/guix.texi:32565 msgid "A list of subdirectories inside of @code{repository-directory}, relative to it, that should loaded as Git repositories. An empty list means that all subdirectories will be loaded." msgstr "UNe liste de sous-répertoires dans @code{repository-directory}, relativement à lui, qui devrait être chargé comme des dépôts Git. Une liste vide signifie que tous les sous-répertoires seront chargés." #. type: deftypevr -#: guix-git/doc/guix.texi:32205 +#: guix-git/doc/guix.texi:32570 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object readme" msgstr "{paramètre de @code{cgit-configuration}} file-object readme" #. type: deftypevr -#: guix-git/doc/guix.texi:32207 +#: guix-git/doc/guix.texi:32572 msgid "Text which will be used as default value for @code{cgit-repo-readme}." msgstr "Texte utilisé comme valeur par défaut pour @code{cgit-repo-readme}." #. type: deftypevr -#: guix-git/doc/guix.texi:32212 +#: guix-git/doc/guix.texi:32577 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean remove-suffix?" msgstr "{paramètre de @code{cgit-configuration}} boolean remove-suffix?" #. type: deftypevr -#: guix-git/doc/guix.texi:32216 +#: guix-git/doc/guix.texi:32581 msgid "If set to @code{#t} and @code{repository-directory} is enabled, if any repositories are found with a suffix of @code{.git}, this suffix will be removed for the URL and name." msgstr "Si la valeur est @code{#t} et que @code{repository-directory} est activé, si un dépôt avec un suffixe de @code{.git} est trouvé, ce suffixe sera supprimé de l'URL et du nom." #. type: deftypevr -#: guix-git/doc/guix.texi:32221 +#: guix-git/doc/guix.texi:32586 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer renamelimit" msgstr "{paramètre de @code{cgit-configuration}} integer renamelimit" #. type: deftypevr -#: guix-git/doc/guix.texi:32223 +#: guix-git/doc/guix.texi:32588 msgid "Maximum number of files to consider when detecting renames." msgstr "Nombre maximum de fichiers à considérer lors de la détection des renommages." #. type: deftypevr -#: guix-git/doc/guix.texi:32228 +#: guix-git/doc/guix.texi:32593 #, no-wrap msgid "{@code{cgit-configuration} parameter} string repository-sort" msgstr "{paramètre de @code{cgit-configuration}} string repository-sort" #. type: deftypevr -#: guix-git/doc/guix.texi:32230 +#: guix-git/doc/guix.texi:32595 msgid "The way in which repositories in each section are sorted." msgstr "La manière dont les dépôt de chaque section sont rangés." #. type: deftypevr -#: guix-git/doc/guix.texi:32235 +#: guix-git/doc/guix.texi:32600 #, no-wrap msgid "{@code{cgit-configuration} parameter} robots-list robots" msgstr "{paramètre de @code{cgit-configuration}} robots-list robots" #. type: deftypevr -#: guix-git/doc/guix.texi:32237 +#: guix-git/doc/guix.texi:32602 msgid "Text used as content for the @code{robots} meta-tag." msgstr "Texte utilisé comme contenu du méta-attribut @code{robots}." #. type: deftypevr -#: guix-git/doc/guix.texi:32239 +#: guix-git/doc/guix.texi:32604 msgid "Defaults to @samp{(\"noindex\" \"nofollow\")}." msgstr "La valeur par défaut est @samp{(\"noindex\" \"nofollow\")}." #. type: deftypevr -#: guix-git/doc/guix.texi:32242 +#: guix-git/doc/guix.texi:32607 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-desc" msgstr "{paramètre de @code{cgit-configuration}} string root-desc" #. type: deftypevr -#: guix-git/doc/guix.texi:32244 +#: guix-git/doc/guix.texi:32609 msgid "Text printed below the heading on the repository index page." msgstr "Texte affiché en dessous de l'en-tête de la page d'index des dépôts." #. type: deftypevr -#: guix-git/doc/guix.texi:32246 +#: guix-git/doc/guix.texi:32611 msgid "Defaults to @samp{\"a fast webinterface for the git dscm\"}." msgstr "La valeur par défaut est @samp{\"a fast webinterface for the git dscm\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:32249 +#: guix-git/doc/guix.texi:32614 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-readme" msgstr "{paramètre de @code{cgit-configuration}} string root-readme" #. type: deftypevr -#: guix-git/doc/guix.texi:32252 +#: guix-git/doc/guix.texi:32617 msgid "The content of the file specified with this option will be included verbatim below the ``about'' link on the repository index page." msgstr "Le contenu du fichier spécifié avec cette option sera inclus directement en dessous du lien « à propos » sur la page d'index du dépôt." #. type: deftypevr -#: guix-git/doc/guix.texi:32257 +#: guix-git/doc/guix.texi:32622 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-title" msgstr "{paramètre de @code{cgit-configuration}} string root-title" #. type: deftypevr -#: guix-git/doc/guix.texi:32259 +#: guix-git/doc/guix.texi:32624 msgid "Text printed as heading on the repository index page." msgstr "Texte affiché sur la page d'index des dépôts." #. type: deftypevr -#: guix-git/doc/guix.texi:32264 +#: guix-git/doc/guix.texi:32629 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean scan-hidden-path" msgstr "{paramètre de @code{cgit-configuration}} boolean scan-hidden-path" #. type: deftypevr -#: guix-git/doc/guix.texi:32270 +#: guix-git/doc/guix.texi:32635 msgid "If set to @samp{#t} and repository-directory is enabled, repository-directory will recurse into directories whose name starts with a period. Otherwise, repository-directory will stay away from such directories, considered as ``hidden''. Note that this does not apply to the @file{.git} directory in non-bare repos." msgstr "Si la valeur est @samp{#t} et que repository-directory est activé, repository-directory recherchera de manière récursive dans les répertoires dont le nom commence par un point. Sinon, repository-directory restera hors de ces répertoires, considérés comme « cachés ». Remarquez que cela ne s'applique pas au répertoire « .git » dans le dépôts non bruts." #. type: deftypevr -#: guix-git/doc/guix.texi:32275 +#: guix-git/doc/guix.texi:32640 #, no-wrap msgid "{@code{cgit-configuration} parameter} list snapshots" msgstr "{paramètre de @code{cgit-configuration}} list snapshots" #. type: deftypevr -#: guix-git/doc/guix.texi:32278 +#: guix-git/doc/guix.texi:32643 msgid "Text which specifies the default set of snapshot formats that cgit generates links for." msgstr "Texte qui spécifie l'ensemble des formats d'archives par défaut pour lesquelles cgit générera un lien." #. type: deftypevr -#: guix-git/doc/guix.texi:32283 +#: guix-git/doc/guix.texi:32648 #, no-wrap msgid "{@code{cgit-configuration} parameter} repository-directory repository-directory" msgstr "{paramètre de @code{cgit-configuration}} repository-directory repository-directory" #. type: deftypevr -#: guix-git/doc/guix.texi:32286 +#: guix-git/doc/guix.texi:32651 msgid "Name of the directory to scan for repositories (represents @code{scan-path})." msgstr "Nom du répertoire à scanner pour trouver les dépôts (représente @code{scan-path})." #. type: deftypevr -#: guix-git/doc/guix.texi:32288 +#: guix-git/doc/guix.texi:32653 msgid "Defaults to @samp{\"/srv/git\"}." msgstr "La valeur par défaut est @samp{\"/srv/git\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:32291 +#: guix-git/doc/guix.texi:32656 #, no-wrap msgid "{@code{cgit-configuration} parameter} string section" msgstr "{paramètre de @code{cgit-configuration}} string section" #. type: deftypevr -#: guix-git/doc/guix.texi:32294 guix-git/doc/guix.texi:32610 +#: guix-git/doc/guix.texi:32659 guix-git/doc/guix.texi:32975 msgid "The name of the current repository section - all repositories defined after this option will inherit the current section name." msgstr "Le nom de la section de dépôts actuelle — tous les dépôts définis après ce point hériterons du nom de section actuel." #. type: deftypevr -#: guix-git/doc/guix.texi:32299 +#: guix-git/doc/guix.texi:32664 #, no-wrap msgid "{@code{cgit-configuration} parameter} string section-sort" msgstr "{paramètre de @code{cgit-configuration}} string section-sort" #. type: deftypevr -#: guix-git/doc/guix.texi:32302 +#: guix-git/doc/guix.texi:32667 msgid "Flag which, when set to @samp{1}, will sort the sections on the repository listing by name." msgstr "Drapeau qui, s'il vaut @samp{1}, triera les sections dans la liste des dépôts par nom." #. type: deftypevr -#: guix-git/doc/guix.texi:32307 +#: guix-git/doc/guix.texi:32672 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer section-from-path" msgstr "{paramètre de @code{cgit-configuration}} integer section-from-path" #. type: deftypevr -#: guix-git/doc/guix.texi:32310 +#: guix-git/doc/guix.texi:32675 msgid "A number which, if defined prior to repository-directory, specifies how many path elements from each repo path to use as a default section name." msgstr "Un nombre qui, s'il est défini avant repository-directory, spécifier combien d'éléments de chemin de chaque chemin de dépôt utiliser comme nom de section par défaut." #. type: deftypevr -#: guix-git/doc/guix.texi:32315 +#: guix-git/doc/guix.texi:32680 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean side-by-side-diffs?" msgstr "{paramètre de @code{cgit-configuration}} boolean side-by-side-diffs?" #. type: deftypevr -#: guix-git/doc/guix.texi:32318 +#: guix-git/doc/guix.texi:32683 msgid "If set to @samp{#t} shows side-by-side diffs instead of unidiffs per default." msgstr "Si la valeur est @samp{#t}, afficher des diffs côte à côte au lieu des unidiffs par défaut." #. type: deftypevr -#: guix-git/doc/guix.texi:32323 +#: guix-git/doc/guix.texi:32688 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object source-filter" msgstr "{paramètre de @code{cgit-configuration}} file-object source-filter" #. type: deftypevr -#: guix-git/doc/guix.texi:32326 +#: guix-git/doc/guix.texi:32691 msgid "Specifies a command which will be invoked to format plaintext blobs in the tree view." msgstr "Spécifie une commande qui sera invoquée pour formater les blobs en texte brut dans la vue de l'arborescence." #. type: deftypevr -#: guix-git/doc/guix.texi:32331 +#: guix-git/doc/guix.texi:32696 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-branches" msgstr "{paramètre de @code{cgit-configuration}} integer summary-branches" #. type: deftypevr -#: guix-git/doc/guix.texi:32334 +#: guix-git/doc/guix.texi:32699 msgid "Specifies the number of branches to display in the repository ``summary'' view." msgstr "Spécifie le nombre de branches à afficher dans la vue « résumé » du dépôt." #. type: deftypevr -#: guix-git/doc/guix.texi:32339 +#: guix-git/doc/guix.texi:32704 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-log" msgstr "{paramètre de @code{cgit-configuration}} integer summary-log" #. type: deftypevr -#: guix-git/doc/guix.texi:32342 +#: guix-git/doc/guix.texi:32707 msgid "Specifies the number of log entries to display in the repository ``summary'' view." msgstr "Spécifie le nombre d'élément du journal à afficher dans la vue « résumé » du dépôt." #. type: deftypevr -#: guix-git/doc/guix.texi:32347 +#: guix-git/doc/guix.texi:32712 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-tags" msgstr "{paramètre de @code{cgit-configuration}} integer summary-tags" #. type: deftypevr -#: guix-git/doc/guix.texi:32350 +#: guix-git/doc/guix.texi:32715 msgid "Specifies the number of tags to display in the repository ``summary'' view." msgstr "Spécifie le nombre de tags à afficher dans la vue « résumé » du dépôt." #. type: deftypevr -#: guix-git/doc/guix.texi:32355 +#: guix-git/doc/guix.texi:32720 #, no-wrap msgid "{@code{cgit-configuration} parameter} string strict-export" msgstr "{paramètre de @code{cgit-configuration}} string strict-export" #. type: deftypevr -#: guix-git/doc/guix.texi:32358 +#: guix-git/doc/guix.texi:32723 msgid "Filename which, if specified, needs to be present within the repository for cgit to allow access to that repository." msgstr "Nom de fichier qui, s'il est spécifié, doit être présent dans le dépôt pour que cgit accorde l'accès à ce dépôt." #. type: deftypevr -#: guix-git/doc/guix.texi:32363 +#: guix-git/doc/guix.texi:32728 #, no-wrap msgid "{@code{cgit-configuration} parameter} string virtual-root" msgstr "{paramètre de @code{cgit-configuration}} string virtual-root" #. type: deftypevr -#: guix-git/doc/guix.texi:32365 +#: guix-git/doc/guix.texi:32730 msgid "URL which, if specified, will be used as root for all cgit links." msgstr "URL qui, si elle est spécifiée, sera utilisée comme racine pour tous les liens cgit." #. type: deftypevr -#: guix-git/doc/guix.texi:32367 +#: guix-git/doc/guix.texi:32732 msgid "Defaults to @samp{\"/\"}." msgstr "La valeur par défaut est @samp{\"/\"}." #. type: deftypevr -#: guix-git/doc/guix.texi:32370 +#: guix-git/doc/guix.texi:32735 #, no-wrap msgid "{@code{cgit-configuration} parameter} repository-cgit-configuration-list repositories" msgstr "{paramètre de @code{cgit-configuration}} repository-cgit-configuration-list repositories" #. type: deftypevr -#: guix-git/doc/guix.texi:32372 +#: guix-git/doc/guix.texi:32737 msgid "A list of @dfn{cgit-repo} records to use with config." msgstr "Une liste d'enregistrements @dfn{cgit-repo} à utiliser avec config." #. type: deftypevr -#: guix-git/doc/guix.texi:32376 +#: guix-git/doc/guix.texi:32741 msgid "Available @code{repository-cgit-configuration} fields are:" msgstr "Les champs de @code{repository-cgit-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:32377 +#: guix-git/doc/guix.texi:32742 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list snapshots" msgstr "{paramètre de @code{repository-cgit-configuration}} repo-list snapshots" #. type: deftypevr -#: guix-git/doc/guix.texi:32380 +#: guix-git/doc/guix.texi:32745 msgid "A mask of snapshot formats for this repo that cgit generates links for, restricted by the global @code{snapshots} setting." msgstr "Un masque de formats d'archives pour ce dépôt pour lesquelles cgit générera un lien, restreint par le paramètre @code{snapshots} global." #. type: deftypevr -#: guix-git/doc/guix.texi:32385 +#: guix-git/doc/guix.texi:32750 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object source-filter" msgstr "{paramètre de @code{repository-cgit-configuration}} repo-file-object source-filter" #. type: deftypevr -#: guix-git/doc/guix.texi:32387 +#: guix-git/doc/guix.texi:32752 msgid "Override the default @code{source-filter}." msgstr "Modifie le @code{source-filter} par défaut." #. type: deftypevr -#: guix-git/doc/guix.texi:32392 +#: guix-git/doc/guix.texi:32757 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string url" msgstr "{paramètre de @code{repository-cgit-configuration}} repo-string url" #. type: deftypevr -#: guix-git/doc/guix.texi:32394 +#: guix-git/doc/guix.texi:32759 msgid "The relative URL used to access the repository." msgstr "URL relative utilisée pour accéder au dépôt." #. type: deftypevr -#: guix-git/doc/guix.texi:32399 +#: guix-git/doc/guix.texi:32764 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object about-filter" msgstr "{paramètre de @code{repository-cgit-configuration}} repo-file-object about-filter" #. type: deftypevr -#: guix-git/doc/guix.texi:32401 +#: guix-git/doc/guix.texi:32766 msgid "Override the default @code{about-filter}." msgstr "Modifie le paramètre @code{about-filter} par défaut." #. type: deftypevr -#: guix-git/doc/guix.texi:32406 +#: guix-git/doc/guix.texi:32771 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string branch-sort" msgstr "{paramètre de @code{repository-cgit-configuration}} repo-string branch-sort" #. type: deftypevr -#: guix-git/doc/guix.texi:32409 +#: guix-git/doc/guix.texi:32774 msgid "Flag which, when set to @samp{age}, enables date ordering in the branch ref list, and when set to @samp{name} enables ordering by branch name." msgstr "Drapeau qui, s'il vaut @samp{age}, active le tri par date dans la liste des branches, et lorsqu'il vaut @samp{name}, le tri par nom." #. type: deftypevr -#: guix-git/doc/guix.texi:32414 +#: guix-git/doc/guix.texi:32779 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list clone-url" msgstr "{paramètre de @code{repository-cgit-configuration}} repo-list clone-url" #. type: deftypevr -#: guix-git/doc/guix.texi:32416 +#: guix-git/doc/guix.texi:32781 msgid "A list of URLs which can be used to clone repo." msgstr "Un liste d'URL qui peuvent être utilisées pour cloner ce dépôt." #. type: deftypevr -#: guix-git/doc/guix.texi:32421 +#: guix-git/doc/guix.texi:32786 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object commit-filter" msgstr "{paramètre de @code{repository-cgit-configuration}} repo-file-object commit-filter" #. type: deftypevr -#: guix-git/doc/guix.texi:32423 +#: guix-git/doc/guix.texi:32788 msgid "Override the default @code{commit-filter}." msgstr "Modifie le paramètre @code{commit-filter} par défaut." #. type: deftypevr -#: guix-git/doc/guix.texi:32428 +#: guix-git/doc/guix.texi:32793 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string commit-sort" msgstr "{paramètre de @code{repository-cgit-configuration}} repo-string commit-sort" #. type: deftypevr -#: guix-git/doc/guix.texi:32437 +#: guix-git/doc/guix.texi:32802 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string defbranch" msgstr "{paramètre de @code{repository-cgit-configuration}} repo-string defbranch" #. type: deftypevr -#: guix-git/doc/guix.texi:32442 +#: guix-git/doc/guix.texi:32807 msgid "The name of the default branch for this repository. If no such branch exists in the repository, the first branch name (when sorted) is used as default instead. By default branch pointed to by HEAD, or ``master'' if there is no suitable HEAD." msgstr "Le nom de la branche par défaut de ce dépôt. Si cette branche n'existe pas dans le dépôt, le premier nom de branche (trié) sera utilisé par défaut. Par défaut la branche pointée par HEAD, ou « master » s'il n'y a pas de HEAD convenable." #. type: deftypevr -#: guix-git/doc/guix.texi:32447 +#: guix-git/doc/guix.texi:32812 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string desc" msgstr "{paramètre de @code{repository-cgit-configuration}} repo-string desc" #. type: deftypevr -#: guix-git/doc/guix.texi:32449 +#: guix-git/doc/guix.texi:32814 msgid "The value to show as repository description." msgstr "La valeur à afficher comme description du dépôt." #. type: deftypevr -#: guix-git/doc/guix.texi:32454 +#: guix-git/doc/guix.texi:32819 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string homepage" msgstr "{paramètre de @code{repository-cgit-configuration}} repo-string homepage" #. type: deftypevr -#: guix-git/doc/guix.texi:32456 +#: guix-git/doc/guix.texi:32821 msgid "The value to show as repository homepage." msgstr "La valeur à afficher comme page d'accueil du dépôt." #. type: deftypevr -#: guix-git/doc/guix.texi:32461 +#: guix-git/doc/guix.texi:32826 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object email-filter" msgstr "{paramètre de @code{repository-cgit-configuration}} repo-file-object email-filter" #. type: deftypevr -#: guix-git/doc/guix.texi:32463 +#: guix-git/doc/guix.texi:32828 msgid "Override the default @code{email-filter}." msgstr "Modifie le paramètre @code{email-filter} par défaut." #. type: deftypevr -#: guix-git/doc/guix.texi:32468 +#: guix-git/doc/guix.texi:32833 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-commit-graph?" msgstr "{paramètre de @code{repository-cgit-configuration}} maybe-repo-boolean enable-commit-graph?" #. type: deftypevr -#: guix-git/doc/guix.texi:32471 +#: guix-git/doc/guix.texi:32836 msgid "A flag which can be used to disable the global setting @code{enable-commit-graph?}." msgstr "Un drapeau qui peut être utilisé pour désactiver le paramètre @code{enable-commit-graph?} global." #. type: deftypevr -#: guix-git/doc/guix.texi:32476 +#: guix-git/doc/guix.texi:32841 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-log-filecount?" msgstr "{paramètre de @code{repository-cgit-configuration}} maybe-repo-boolean enable-log-filecount?" #. type: deftypevr -#: guix-git/doc/guix.texi:32479 +#: guix-git/doc/guix.texi:32844 msgid "A flag which can be used to disable the global setting @code{enable-log-filecount?}." msgstr "Un drapeau qui peut être utilisé pour désactiver le paramètre @code{enable-log-filecount?} global." #. type: deftypevr -#: guix-git/doc/guix.texi:32484 +#: guix-git/doc/guix.texi:32849 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-log-linecount?" msgstr "{paramètre de @code{repository-cgit-configuration}} maybe-repo-boolean enable-log-linecount?" #. type: deftypevr -#: guix-git/doc/guix.texi:32487 +#: guix-git/doc/guix.texi:32852 msgid "A flag which can be used to disable the global setting @code{enable-log-linecount?}." msgstr "Un drapeau qui peut être utilisé pour désactiver le paramètre @code{enable-log-linecount?} global." #. type: deftypevr -#: guix-git/doc/guix.texi:32492 +#: guix-git/doc/guix.texi:32857 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-remote-branches?" msgstr "{paramètre de @code{repository-cgit-configuration}} maybe-repo-boolean enable-remote-branches?" #. type: deftypevr -#: guix-git/doc/guix.texi:32500 +#: guix-git/doc/guix.texi:32865 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-subject-links?" msgstr "{paramètre de @code{repository-cgit-configuration}} maybe-repo-boolean enable-subject-links?" #. type: deftypevr -#: guix-git/doc/guix.texi:32503 +#: guix-git/doc/guix.texi:32868 msgid "A flag which can be used to override the global setting @code{enable-subject-links?}." msgstr "Un drapeau qui peut être utilisé pour modifier le paramètre @code{enable-subject-links?} global." #. type: deftypevr -#: guix-git/doc/guix.texi:32508 +#: guix-git/doc/guix.texi:32873 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-html-serving?" msgstr "{paramètre de @code{repository-cgit-configuration}} maybe-repo-boolean enable-html-serving?" #. type: deftypevr -#: guix-git/doc/guix.texi:32511 +#: guix-git/doc/guix.texi:32876 msgid "A flag which can be used to override the global setting @code{enable-html-serving?}." msgstr "Un drapeau qui peut être utilisé pour modifier le paramètre @code{enable-html-serving?} global." #. type: deftypevr -#: guix-git/doc/guix.texi:32516 +#: guix-git/doc/guix.texi:32881 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-boolean hide?" msgstr "{paramètre de @code{repository-cgit-configuration}} repo-boolean hide?" #. type: deftypevr -#: guix-git/doc/guix.texi:32519 +#: guix-git/doc/guix.texi:32884 msgid "Flag which, when set to @code{#t}, hides the repository from the repository index." msgstr "Drapeau qui, s'il vaut @code{#t}, cache le dépôt de l'index des dépôts." #. type: deftypevr -#: guix-git/doc/guix.texi:32524 +#: guix-git/doc/guix.texi:32889 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-boolean ignore?" msgstr "{paramètre de @code{repository-cgit-configuration}} repo-boolean ignore?" #. type: deftypevr -#: guix-git/doc/guix.texi:32526 +#: guix-git/doc/guix.texi:32891 msgid "Flag which, when set to @samp{#t}, ignores the repository." msgstr "Drapeau qui, s'il vaut @code{#t}, ignore le dépôt." #. type: deftypevr -#: guix-git/doc/guix.texi:32531 +#: guix-git/doc/guix.texi:32896 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object logo" msgstr "{paramètre de @code{repository-cgit-configuration}} repo-file-object logo" #. type: deftypevr -#: guix-git/doc/guix.texi:32534 +#: guix-git/doc/guix.texi:32899 msgid "URL which specifies the source of an image which will be used as a logo on this repo’s pages." msgstr "URL qui spécifie la source d'une image qui sera utilisée comme logo sur les pages de ce dépôt." #. type: deftypevr -#: guix-git/doc/guix.texi:32539 +#: guix-git/doc/guix.texi:32904 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string logo-link" msgstr "{paramètre de @code{repository-cgit-configuration}} repo-string logo-link" #. type: deftypevr -#: guix-git/doc/guix.texi:32546 +#: guix-git/doc/guix.texi:32911 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object owner-filter" msgstr "{paramètre de @code{repository-cgit-configuration}} repo-file-object owner-filter" #. type: deftypevr -#: guix-git/doc/guix.texi:32548 +#: guix-git/doc/guix.texi:32913 msgid "Override the default @code{owner-filter}." msgstr "Modifie le paramètre @code{owner-filter} par défaut." #. type: deftypevr -#: guix-git/doc/guix.texi:32553 +#: guix-git/doc/guix.texi:32918 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string module-link" msgstr "{paramètre de @code{repository-cgit-configuration}} repo-string module-link" #. type: deftypevr -#: guix-git/doc/guix.texi:32557 +#: guix-git/doc/guix.texi:32922 msgid "Text which will be used as the formatstring for a hyperlink when a submodule is printed in a directory listing. The arguments for the formatstring are the path and SHA1 of the submodule commit." msgstr "Texte qui sera utilisé comme chaîne de formatage pour un lien hypertexte lorsqu'un sous-module est affiché dans une liste de fichiers. Les arguments pour la chaîne de formatage sont le chemin et le SHA1 du commit du sous-module." #. type: deftypevr -#: guix-git/doc/guix.texi:32562 +#: guix-git/doc/guix.texi:32927 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} module-link-path module-link-path" msgstr "{paramètre de @code{repository-cgit-configuration}} module-link-path module-link-path" #. type: deftypevr -#: guix-git/doc/guix.texi:32566 +#: guix-git/doc/guix.texi:32931 msgid "Text which will be used as the formatstring for a hyperlink when a submodule with the specified subdirectory path is printed in a directory listing." msgstr "Texte qui sera utilisé comme chaîne de formatage lorsqu'un sous-module avec un chemin spécifié sera affiché dans une liste de fichiers." #. type: deftypevr -#: guix-git/doc/guix.texi:32571 +#: guix-git/doc/guix.texi:32936 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string max-stats" msgstr "{paramètre de @code{repository-cgit-configuration}} repo-string max-stats" #. type: deftypevr -#: guix-git/doc/guix.texi:32573 +#: guix-git/doc/guix.texi:32938 msgid "Override the default maximum statistics period." msgstr "Modifie la période de statistique maximale par défaut." #. type: deftypevr -#: guix-git/doc/guix.texi:32578 +#: guix-git/doc/guix.texi:32943 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string name" msgstr "{paramètre de @code{repository-cgit-configuration}} repo-string name" #. type: deftypevr -#: guix-git/doc/guix.texi:32580 +#: guix-git/doc/guix.texi:32945 msgid "The value to show as repository name." msgstr "La valeur à afficher comme nom de dépôt." #. type: deftypevr -#: guix-git/doc/guix.texi:32585 +#: guix-git/doc/guix.texi:32950 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string owner" msgstr "{paramètre de @code{repository-cgit-configuration}} repo-string owner" #. type: deftypevr -#: guix-git/doc/guix.texi:32587 +#: guix-git/doc/guix.texi:32952 msgid "A value used to identify the owner of the repository." msgstr "Une valeur utilisée pour identifier le propriétaire du dépôt." #. type: deftypevr -#: guix-git/doc/guix.texi:32592 +#: guix-git/doc/guix.texi:32957 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string path" msgstr "{paramètre de @code{repository-cgit-configuration}} repo-string path" #. type: deftypevr -#: guix-git/doc/guix.texi:32594 +#: guix-git/doc/guix.texi:32959 msgid "An absolute path to the repository directory." msgstr "Un chemin absolu vers le répertoire du dépôt." #. type: deftypevr -#: guix-git/doc/guix.texi:32599 +#: guix-git/doc/guix.texi:32964 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string readme" msgstr "{paramètre de @code{repository-cgit-configuration}} repo-string readme" #. type: deftypevr -#: guix-git/doc/guix.texi:32602 +#: guix-git/doc/guix.texi:32967 msgid "A path (relative to repo) which specifies a file to include verbatim as the ``About'' page for this repo." msgstr "Un chemin (relatif au dépôt) qui spécifie un fichier à inclure directement comme page « À propos » pour ce dépôt." #. type: deftypevr -#: guix-git/doc/guix.texi:32607 +#: guix-git/doc/guix.texi:32972 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string section" msgstr "{paramètre de @code{repository-cgit-configuration}} repo-string section" #. type: deftypevr -#: guix-git/doc/guix.texi:32615 +#: guix-git/doc/guix.texi:32980 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list extra-options" msgstr "{paramètre de @code{repository-cgit-configuration}} repo-list extra-options" #. type: deftypevr -#: guix-git/doc/guix.texi:32617 guix-git/doc/guix.texi:32626 +#: guix-git/doc/guix.texi:32982 guix-git/doc/guix.texi:32991 msgid "Extra options will be appended to cgitrc file." msgstr "Options supplémentaires ajoutées à la fin du fichier cgitrc." #. type: deftypevr -#: guix-git/doc/guix.texi:32624 +#: guix-git/doc/guix.texi:32989 #, no-wrap msgid "{@code{cgit-configuration} parameter} list extra-options" msgstr "{paramètre de @code{cgit-configuration}} list extra-options" #. type: Plain text -#: guix-git/doc/guix.texi:32638 +#: guix-git/doc/guix.texi:33003 msgid "However, it could be that you just want to get a @code{cgitrc} up and running. In that case, you can pass an @code{opaque-cgit-configuration} as a record to @code{cgit-service-type}. As its name indicates, an opaque configuration does not have easy reflective capabilities." msgstr "Cependant, vous pourriez vouloir simplement récupérer un @code{cgitrc} et l'utiliser. Dans ce cas, vous pouvez passer un @code{opaque-cgit-configuration} comme enregistrement à @code{cgit-service-type}. Comme son nom l'indique, une configuration opaque n'a pas de capacité de réflexion facile." #. type: Plain text -#: guix-git/doc/guix.texi:32640 +#: guix-git/doc/guix.texi:33005 msgid "Available @code{opaque-cgit-configuration} fields are:" msgstr "Les champs de @code{opaque-cgit-configuration} disponibles sont :" #. type: deftypevr -#: guix-git/doc/guix.texi:32641 +#: guix-git/doc/guix.texi:33006 #, no-wrap msgid "{@code{opaque-cgit-configuration} parameter} package cgit" msgstr "{paramètre de @code{opaque-cgit-configuration}} package cgit" #. type: deftypevr -#: guix-git/doc/guix.texi:32643 +#: guix-git/doc/guix.texi:33008 msgid "The cgit package." msgstr "Le paquet cgit." #. type: deftypevr -#: guix-git/doc/guix.texi:32645 +#: guix-git/doc/guix.texi:33010 #, no-wrap msgid "{@code{opaque-cgit-configuration} parameter} string string" msgstr "{paramètre de @code{opaque-cgit-configuration}} string string" #. type: deftypevr -#: guix-git/doc/guix.texi:32647 +#: guix-git/doc/guix.texi:33012 msgid "The contents of the @code{cgitrc}, as a string." msgstr "Le contenu de @code{cgitrc}, en tant que chaîne de caractère." #. type: Plain text -#: guix-git/doc/guix.texi:32651 +#: guix-git/doc/guix.texi:33016 msgid "For example, if your @code{cgitrc} is just the empty string, you could instantiate a cgit service like this:" msgstr "Par exemple, si votre @code{cgitrc} est juste la chaîne vide, vous pouvez instancier un service cgit ainsi :" #. type: lisp -#: guix-git/doc/guix.texi:32656 +#: guix-git/doc/guix.texi:33021 #, no-wrap msgid "" "(service cgit-service-type\n" @@ -61001,40 +61741,40 @@ msgstr "" " (cgitrc \"\")))\n" #. type: subsubheading -#: guix-git/doc/guix.texi:32658 +#: guix-git/doc/guix.texi:33023 #, no-wrap msgid "Gitolite Service" msgstr "Service Gitolite" #. type: cindex -#: guix-git/doc/guix.texi:32660 +#: guix-git/doc/guix.texi:33025 #, no-wrap msgid "Gitolite service" msgstr "Service Gitolite" #. type: cindex -#: guix-git/doc/guix.texi:32661 +#: guix-git/doc/guix.texi:33026 #, no-wrap msgid "Git, hosting" msgstr "Git, hébergement" #. type: Plain text -#: guix-git/doc/guix.texi:32664 +#: guix-git/doc/guix.texi:33029 msgid "@uref{https://gitolite.com/gitolite/, Gitolite} is a tool for hosting Git repositories on a central server." msgstr "@uref{https://gitolite.com/gitolite/, Gitolite} est un outil pour héberger des dépôts Git sur un serveur central." #. type: Plain text -#: guix-git/doc/guix.texi:32667 +#: guix-git/doc/guix.texi:33032 msgid "Gitolite can handle multiple repositories and users, and supports flexible configuration of the permissions for the users on the repositories." msgstr "Gitolite peut gérer plusieurs dépôts et utilisateurs et supporte une configuration flexible des permissions pour les utilisateurs sur ces dépôts." #. type: Plain text -#: guix-git/doc/guix.texi:32670 +#: guix-git/doc/guix.texi:33035 msgid "The following example will configure Gitolite using the default @code{git} user, and the provided SSH public key." msgstr "L'exemple suivant configure Gitolite en utilisant l'utilisateur @code{git} par défaut et la clef SSH fournie." #. type: lisp -#: guix-git/doc/guix.texi:32677 +#: guix-git/doc/guix.texi:33042 #, no-wrap msgid "" "(service gitolite-service-type\n" @@ -61050,220 +61790,220 @@ msgstr "" " \"ssh-rsa AAAA... guix@@example.com\"))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:32682 +#: guix-git/doc/guix.texi:33047 msgid "Gitolite is configured through a special admin repository which you can clone, for example, if you setup Gitolite on @code{example.com}, you would run the following command to clone the admin repository." msgstr "Gitolite est configuré via un dépôt d'administration spécial que vous pouvez cloner. Par exemple, si vous hébergez Gitolite sur @code{example.com}, vous pouvez lancer la commande suivante pour cloner le dépôt d'administration." #. type: example -#: guix-git/doc/guix.texi:32685 +#: guix-git/doc/guix.texi:33050 #, no-wrap msgid "git clone git@@example.com:gitolite-admin\n" msgstr "git clone git@@example.com:gitolite-admin\n" #. type: Plain text -#: guix-git/doc/guix.texi:32691 +#: guix-git/doc/guix.texi:33056 msgid "When the Gitolite service is activated, the provided @code{admin-pubkey} will be inserted in to the @file{keydir} directory in the gitolite-admin repository. If this results in a change in the repository, it will be committed using the message ``gitolite setup by GNU Guix''." msgstr "Lorsque le service Gitolite est activé, la clef @code{admin-pubkey} fournie sera insérée dans le répertoire @file{keydir} du dépôt gitolite-admin. Si cela change le dépôt, un commit sera effectué avec le message « gitolite setup by GNU Guix »." #. type: deftp -#: guix-git/doc/guix.texi:32692 +#: guix-git/doc/guix.texi:33057 #, no-wrap msgid "{Data Type} gitolite-configuration" msgstr "{Type de données} gitolite-configuration" #. type: deftp -#: guix-git/doc/guix.texi:32694 +#: guix-git/doc/guix.texi:33059 msgid "Data type representing the configuration for @code{gitolite-service-type}." msgstr "Type de données représentant la configuration de @code{gitolite-service-type}." #. type: item -#: guix-git/doc/guix.texi:32696 +#: guix-git/doc/guix.texi:33061 #, no-wrap msgid "@code{package} (default: @var{gitolite})" msgstr "@code{package} (par défaut : @var{gitolite})" #. type: table -#: guix-git/doc/guix.texi:32698 +#: guix-git/doc/guix.texi:33063 msgid "Gitolite package to use." msgstr "Le paquet Gitolite à utiliser." #. type: item -#: guix-git/doc/guix.texi:32699 +#: guix-git/doc/guix.texi:33064 #, no-wrap msgid "@code{user} (default: @var{git})" msgstr "@code{user} (par défaut : @var{git})" #. type: table -#: guix-git/doc/guix.texi:32702 +#: guix-git/doc/guix.texi:33067 msgid "User to use for Gitolite. This will be user that you use when accessing Gitolite over SSH." msgstr "Utilisateur pour utiliser Gitolite. Cela sera l'utilisateur à utiliser pour accéder à Gitolite par SSH." #. type: item -#: guix-git/doc/guix.texi:32703 +#: guix-git/doc/guix.texi:33068 #, no-wrap msgid "@code{group} (default: @var{git})" msgstr "@code{group} (par défaut : @var{git})" #. type: table -#: guix-git/doc/guix.texi:32705 +#: guix-git/doc/guix.texi:33070 msgid "Group to use for Gitolite." msgstr "Groupe à utiliser pour Gitolite." #. type: item -#: guix-git/doc/guix.texi:32706 +#: guix-git/doc/guix.texi:33071 #, no-wrap msgid "@code{home-directory} (default: @var{\"/var/lib/gitolite\"})" msgstr "@code{home-directory} (par défaut : @var{\"/var/lib/gitolite\"})" #. type: table -#: guix-git/doc/guix.texi:32708 +#: guix-git/doc/guix.texi:33073 msgid "Directory in which to store the Gitolite configuration and repositories." msgstr "Répertoire dans lequel stocker la configuration et les dépôts de Gitolite." #. type: item -#: guix-git/doc/guix.texi:32709 +#: guix-git/doc/guix.texi:33074 #, no-wrap msgid "@code{rc-file} (default: @var{(gitolite-rc-file)})" msgstr "@code{rc-file} (par défaut : @var{(gitolite-rc-file)})" #. type: table -#: guix-git/doc/guix.texi:32712 +#: guix-git/doc/guix.texi:33077 msgid "A ``file-like'' object (@pxref{G-Expressions, file-like objects}), representing the configuration for Gitolite." msgstr "Un objet « simili-fichier » (@pxref{G-Expressions, file-like objects}) représentant la configuration de Gitolite." #. type: item -#: guix-git/doc/guix.texi:32713 +#: guix-git/doc/guix.texi:33078 #, no-wrap msgid "@code{admin-pubkey} (default: @var{#f})" msgstr "@code{admin-pubkey} (par défaut : @var{#f})" #. type: table -#: guix-git/doc/guix.texi:32717 +#: guix-git/doc/guix.texi:33082 msgid "A ``file-like'' object (@pxref{G-Expressions, file-like objects}) used to setup Gitolite. This will be inserted in to the @file{keydir} directory within the gitolite-admin repository." msgstr "Un objet « simili-fichier » (@pxref{G-Expressions, file-like objects}) utilisé pour paramétrer Gitolite. Il sera inséré dans le répertoire @file{keydir} dans le dépôt gitolite-admin." #. type: table -#: guix-git/doc/guix.texi:32719 +#: guix-git/doc/guix.texi:33084 msgid "To specify the SSH key as a string, use the @code{plain-file} function." msgstr "Pour spécifier la clef SSH comme chaîne de caractère, utilisez la fonction @code{plain-file}." #. type: lisp -#: guix-git/doc/guix.texi:32722 +#: guix-git/doc/guix.texi:33087 #, no-wrap msgid "(plain-file \"yourname.pub\" \"ssh-rsa AAAA... guix@@example.com\")\n" msgstr "(plain-file \"yourname.pub\" \"ssh-rsa AAAA... guix@@example.com\")\n" #. type: deftp -#: guix-git/doc/guix.texi:32727 +#: guix-git/doc/guix.texi:33092 #, no-wrap msgid "{Data Type} gitolite-rc-file" msgstr "{Type de données} gitolite-rc-file" #. type: deftp -#: guix-git/doc/guix.texi:32729 +#: guix-git/doc/guix.texi:33094 msgid "Data type representing the Gitolite RC file." msgstr "Type de données représentant le fichier RC de Gitolite." #. type: item -#: guix-git/doc/guix.texi:32731 +#: guix-git/doc/guix.texi:33096 #, no-wrap msgid "@code{umask} (default: @code{#o0077})" msgstr "@code{umask} (par défaut : @code{#o0077})" #. type: table -#: guix-git/doc/guix.texi:32734 +#: guix-git/doc/guix.texi:33099 msgid "This controls the permissions Gitolite sets on the repositories and their contents." msgstr "Cela contrôle les permissions que Gitolite propose sur les dépôts et leur contenu." #. type: table -#: guix-git/doc/guix.texi:32738 +#: guix-git/doc/guix.texi:33103 msgid "A value like @code{#o0027} will give read access to the group used by Gitolite (by default: @code{git}). This is necessary when using Gitolite with software like cgit or gitweb." msgstr "Une valeur comme @code{#o0027} donnera accès en lecture au groupe utilisé par Gitolite (par défaut : @code{git}). Cela est nécessaire lorsque vous utilise Gitolite avec un logiciel comme cgit ou gitweb." #. type: item -#: guix-git/doc/guix.texi:32739 +#: guix-git/doc/guix.texi:33104 #, no-wrap msgid "@code{unsafe-pattern} (default: @code{#f})" msgstr "@code{unsafe-pattern} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:32744 +#: guix-git/doc/guix.texi:33109 msgid "An optional Perl regular expression for catching unsafe configurations in the configuration file. See @uref{https://gitolite.com/gitolite/git-config.html#compensating-for-unsafe_patt, Gitolite's documentation} for more information." msgstr "Une expression régulière en Perl qui correspond aux configurations non sures dans le fichier de configuration. Voir @uref{https://gitolite.com/gitolite/git-config.html#compensating-for-unsafe_patt, la documentation de Gitolite} pour plus d'informations." #. type: table -#: guix-git/doc/guix.texi:32751 +#: guix-git/doc/guix.texi:33116 msgid "When the value is not @code{#f}, it should be a string containing a Perl regular expression, such as @samp{\"[`~#\\$\\&()|;<>]\"}, which is the default value used by gitolite. It rejects any special character in configuration that might be interpreted by a shell, which is useful when sharing the administration burden with other people that do not otherwise have shell access on the server." msgstr "Lorsque la valeur n'est pas @code{#f}, elle devrait être une chaîne contenant une expression régulière en Perl, comme @samp{\"[`~#\\$\\&()|;<>]\"}, qui est la valeur par défaut utilisée par gitolite. Elle rejette les caractères spéciaux dans la configuration qui pourraient être interprétés par un shell, ce qui est utile lorsque vous partagez la charge d'administration avec d'autres personnes qui n'ont pas accès à un shell sur le serveur." #. type: item -#: guix-git/doc/guix.texi:32752 +#: guix-git/doc/guix.texi:33117 #, no-wrap msgid "@code{git-config-keys} (default: @code{\"\"})" msgstr "@code{git-config-keys} (par défaut : @code{\"\"})" #. type: table -#: guix-git/doc/guix.texi:32755 +#: guix-git/doc/guix.texi:33120 msgid "Gitolite allows you to set git config values using the @samp{config} keyword. This setting allows control over the config keys to accept." msgstr "Gitolite vous permet de modifier les configurations git avec le mot-clef @samp{config}. Ce paramètre vous permet de contrôler les clefs de configuration acceptables." #. type: item -#: guix-git/doc/guix.texi:32756 +#: guix-git/doc/guix.texi:33121 #, no-wrap msgid "@code{roles} (default: @code{'((\"READERS\" . 1) (\"WRITERS\" . ))})" msgstr "@code{roles} (par défaut : @code{'((\"READERS\" . 1) (\"WRITERS\" . ))})" #. type: table -#: guix-git/doc/guix.texi:32758 +#: guix-git/doc/guix.texi:33123 msgid "Set the role names allowed to be used by users running the perms command." msgstr "Indique les noms des rôles qui peuvent être utilisés par les utilisateurs avec la commande perms." #. type: item -#: guix-git/doc/guix.texi:32759 +#: guix-git/doc/guix.texi:33124 #, no-wrap msgid "@code{enable} (default: @code{'(\"help\" \"desc\" \"info\" \"perms\" \"writable\" \"ssh-authkeys\" \"git-config\" \"daemon\" \"gitweb\")})" msgstr "@code{enable} (par défaut : @code{'(\"help\" \"desc\" \"info\" \"perms\" \"writable\" \"ssh-authkeys\" \"git-config\" \"daemon\" \"gitweb\")})" #. type: table -#: guix-git/doc/guix.texi:32761 +#: guix-git/doc/guix.texi:33126 msgid "This setting controls the commands and features to enable within Gitolite." msgstr "Ce paramètre contrôle les commandes et les fonctionnalités à activer dans Gitolite." #. type: subsubheading -#: guix-git/doc/guix.texi:32766 +#: guix-git/doc/guix.texi:33131 #, no-wrap msgid "Gitile Service" msgstr "Service Gitile" #. type: cindex -#: guix-git/doc/guix.texi:32768 +#: guix-git/doc/guix.texi:33133 #, no-wrap msgid "Gitile service" msgstr "service Gitile" #. type: cindex -#: guix-git/doc/guix.texi:32769 +#: guix-git/doc/guix.texi:33134 #, no-wrap msgid "Git, forge" msgstr "Git, forge" #. type: Plain text -#: guix-git/doc/guix.texi:32772 +#: guix-git/doc/guix.texi:33137 msgid "@uref{https://git.lepiller.eu/gitile, Gitile} is a Git forge for viewing public git repository contents from a web browser." msgstr "@uref{https://git.lepiller.eu/gitile, Gitile} est une forge Git qui permet de visualiser le contenu de dépôts Git dans votre navigateur web." #. type: Plain text -#: guix-git/doc/guix.texi:32778 +#: guix-git/doc/guix.texi:33143 msgid "Gitile works best in collaboration with Gitolite, and will serve the public repositories from Gitolite by default. The service should listen only on a local port, and a webserver should be configured to serve static resources. The gitile service provides an easy way to extend the Nginx service for that purpose (@pxref{NGINX})." msgstr "Gitile fonctionne mieux en tandem avec Gitolite, et servira les dépôts publics de Gitolite par défaut. Le service devrait écouter uniquement sur un port local, et vous devriez configurer un serveur web pour servir les ressources statiques. Le service gitile fournit une manière pratique d'étendre le service Nginx pour cela (@pxref{NGINX})." #. type: Plain text -#: guix-git/doc/guix.texi:32782 +#: guix-git/doc/guix.texi:33147 msgid "The following example will configure Gitile to serve repositories from a custom location, with some default messages for the home page and the footers." msgstr "L'exemple suivant configurera Gitile pour servir les dépôts d'un emplacement personnalisé, avec quelques messages par défaut pour la page d'accueil et les pieds de page." #. type: lisp -#: guix-git/doc/guix.texi:32805 +#: guix-git/doc/guix.texi:33170 #, no-wrap msgid "" "(service gitile-service-type\n" @@ -61311,12 +62051,12 @@ msgstr "" " (git-root \"/var/lib/gitolite/repositories\")))))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:32814 +#: guix-git/doc/guix.texi:33179 msgid "In addition to the configuration record, you should configure your git repositories to contain some optional information. First, your public repositories need to contain the @file{git-daemon-export-ok} magic file that allows Git to export the repository. Gitile uses the presence of this file to detect public repositories it should make accessible. To do so with Gitolite for instance, modify your @file{conf/gitolite.conf} to include this in the repositories you want to make public:" msgstr "En plus de l'enregistrement de configuration, vous devriez configurer vos dépôts git pour contenir certaines informations facultatives. Tout d'abord, vos dépôts publics doivent contenir le fichier magique @file{git-daemon-export-ok} qui permet à Git d'exporter le dépôt. Gitile utiliser la présence de ce fichier pour détecter les dépôts publics qu'il doit rendre accessibles. Pour cela, avec Gitolite par exemple, modifiez votre @file{conf/gitolite.conf} pour inclure ceci dans les dépôts que vous voulez rendre publics :" #. type: example -#: guix-git/doc/guix.texi:32818 +#: guix-git/doc/guix.texi:33183 #, no-wrap msgid "" "repo foo\n" @@ -61326,12 +62066,12 @@ msgstr "" " R = daemon\n" #. type: Plain text -#: guix-git/doc/guix.texi:32824 +#: guix-git/doc/guix.texi:33189 msgid "In addition, Gitile can read the repository configuration to display more information on the repository. Gitile uses the gitweb namespace for its configuration. As an example, you can use the following in your @file{conf/gitolite.conf}:" msgstr "En plus, Gitile peut lire la configuration du dépôt pour afficher des informations supplémentaires sur les page du dépôt. Gitile utilise l'espace de nom gitweb pour sa configuration. Par exemple, vous pouvez utiliser cela dans votre @file{conf/gitolite.conf} :" #. type: example -#: guix-git/doc/guix.texi:32831 +#: guix-git/doc/guix.texi:33196 #, no-wrap msgid "" "repo foo\n" @@ -61347,12 +62087,12 @@ msgstr "" " config gitweb.synopsis = Une description courte, affichée sur la page principale du projet\n" #. type: Plain text -#: guix-git/doc/guix.texi:32837 +#: guix-git/doc/guix.texi:33202 msgid "Do not forget to commit and push these changes once you are satisfied. You may need to change your gitolite configuration to allow the previous configuration options to be set. One way to do that is to add the following service definition:" msgstr "N'oubliez pas de commiter et de pousser les changement quand vous êtes satisfait. Vous pourrez avoir besoin de changer la configuration de gitolite pour permettre aux options précédentes d'être acceptées. Une manière de faire est d'ajouter la définition de service suivante :" #. type: lisp -#: guix-git/doc/guix.texi:32849 +#: guix-git/doc/guix.texi:33214 #, no-wrap msgid "" "(service gitolite-service-type\n" @@ -61378,243 +62118,243 @@ msgstr "" " (unsafe-patt \"^$\")))))\n" #. type: deftp -#: guix-git/doc/guix.texi:32851 +#: guix-git/doc/guix.texi:33216 #, no-wrap msgid "{Data Type} gitile-configuration" msgstr "{Type de données} gitile-configuration" #. type: deftp -#: guix-git/doc/guix.texi:32853 +#: guix-git/doc/guix.texi:33218 msgid "Data type representing the configuration for @code{gitile-service-type}." msgstr "Type de données représentant la configuration de @code{gitile-service-type}." #. type: item -#: guix-git/doc/guix.texi:32855 +#: guix-git/doc/guix.texi:33220 #, no-wrap msgid "@code{package} (default: @var{gitile})" msgstr "@code{package} (par défaut : @var{gitile})" #. type: table -#: guix-git/doc/guix.texi:32857 +#: guix-git/doc/guix.texi:33222 msgid "Gitile package to use." msgstr "Le paquet Gitile à utiliser." #. type: table -#: guix-git/doc/guix.texi:32860 +#: guix-git/doc/guix.texi:33225 msgid "The host on which gitile is listening." msgstr "L'hôte sur lequel gitile écoute." #. type: item -#: guix-git/doc/guix.texi:32861 +#: guix-git/doc/guix.texi:33226 #, no-wrap msgid "@code{port} (default: @code{8080})" msgstr "@code{port} (par défaut : @code{8080})" #. type: table -#: guix-git/doc/guix.texi:32863 +#: guix-git/doc/guix.texi:33228 msgid "The port on which gitile is listening." msgstr "Le port sur lequel gitile écoute." #. type: item -#: guix-git/doc/guix.texi:32864 +#: guix-git/doc/guix.texi:33229 #, no-wrap msgid "@code{database} (default: @code{\"/var/lib/gitile/gitile-db.sql\"})" msgstr "@code{database} (par défaut : @code{\"/var/lib/gitile/gitile-db.sql\"})" #. type: table -#: guix-git/doc/guix.texi:32866 +#: guix-git/doc/guix.texi:33231 msgid "The location of the database." msgstr "L'emplacement de la base de données." #. type: item -#: guix-git/doc/guix.texi:32867 +#: guix-git/doc/guix.texi:33232 #, no-wrap msgid "@code{repositories} (default: @code{\"/var/lib/gitolite/repositories\"})" msgstr "@code{repositories} (par défaut : @code{\"/var/lib/gitolite/repositories\"})" #. type: table -#: guix-git/doc/guix.texi:32871 +#: guix-git/doc/guix.texi:33236 msgid "The location of the repositories. Note that only public repositories will be shown by Gitile. To make a repository public, add an empty @file{git-daemon-export-ok} file at the root of that repository." msgstr "L'emplacement des dépôts. Notez que seuls les dépôts publics seront affichés par Gitile. Pour rendre un dépôt public, ajouter un fichier vide @file{git-daemon-export-ok} à la racine de ce dépôt." #. type: code{#1} -#: guix-git/doc/guix.texi:32872 +#: guix-git/doc/guix.texi:33237 #, no-wrap msgid "base-git-url" msgstr "base-git-url" #. type: table -#: guix-git/doc/guix.texi:32874 +#: guix-git/doc/guix.texi:33239 msgid "The base git url that will be used to show clone commands." msgstr "L'URL git de base qui sera utilisée pour afficher les commandes de clonage." #. type: item -#: guix-git/doc/guix.texi:32875 +#: guix-git/doc/guix.texi:33240 #, no-wrap msgid "@code{index-title} (default: @code{\"Index\"})" msgstr "@code{index-title} (par défaut : @code{\"Index\"})" #. type: table -#: guix-git/doc/guix.texi:32877 +#: guix-git/doc/guix.texi:33242 msgid "The page title for the index page that lists all the available repositories." msgstr "La titre de la page pour la page d'index qui répertorie tous les dépôts disponibles." #. type: item -#: guix-git/doc/guix.texi:32878 +#: guix-git/doc/guix.texi:33243 #, no-wrap msgid "@code{intro} (default: @code{'()})" msgstr "@code{intro} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:32881 +#: guix-git/doc/guix.texi:33246 msgid "The intro content, as a list of sxml expressions. This is shown above the list of repositories, on the index page." msgstr "Le contenu de l'introduction, sous la forme d'une liste d'expressions sxml. C'est ce qui est affiché au-dessus de la liste des dépôts, sur la page d'index." #. type: item -#: guix-git/doc/guix.texi:32882 +#: guix-git/doc/guix.texi:33247 #, no-wrap msgid "@code{footer} (default: @code{'()})" msgstr "@code{footer} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:32885 +#: guix-git/doc/guix.texi:33250 msgid "The footer content, as a list of sxml expressions. This is shown on every page served by Gitile." msgstr "Le contenu du pied-de-page, sous la forme d'une liste d'expressions sxml. Il apparaît sur chaque page servie par Gitile." #. type: code{#1} -#: guix-git/doc/guix.texi:32886 +#: guix-git/doc/guix.texi:33251 #, no-wrap msgid "nginx-server-block" msgstr "nginx-server-block" #. type: table -#: guix-git/doc/guix.texi:32889 +#: guix-git/doc/guix.texi:33254 msgid "An nginx server block that will be extended and used as a reverse proxy by Gitile to serve its pages, and as a normal web server to serve its assets." msgstr "Un bloc de serveur nginx qui sera étendu et utilisé comme serveur mandataire inverse par Gitile pour servir ses pages, et comme serveur web normal pour servir ses ressources statiques." #. type: table -#: guix-git/doc/guix.texi:32893 +#: guix-git/doc/guix.texi:33258 msgid "You can use this block to add more custom URLs to your domain, such as a @code{/git/} URL for anonymous clones, or serving any other files you would like to serve." msgstr "Vous pouvez utiliser ce bloc pour ajouter d'autres URLs personnalisées à votre domaine, comme une URL @code{/git/} pour les clonages anonymes, ou pour servir tout autre fichier que vous voudriez servir." #. type: subsubheading -#: guix-git/doc/guix.texi:32900 +#: guix-git/doc/guix.texi:33265 #, no-wrap msgid "The Battle for Wesnoth Service" msgstr "Le service de la Bataille pour Wesnoth" #. type: cindex -#: guix-git/doc/guix.texi:32901 +#: guix-git/doc/guix.texi:33266 #, no-wrap msgid "wesnothd" msgstr "wesnothd" #. type: Plain text -#: guix-git/doc/guix.texi:32905 +#: guix-git/doc/guix.texi:33270 msgid "@uref{https://wesnoth.org, The Battle for Wesnoth} is a fantasy, turn based tactical strategy game, with several single player campaigns, and multiplayer games (both networked and local)." msgstr "@uref{https://wesnoth.org, La Bataille pour Wesnoth} est un jeu de stratégie en tour par tour dans un univers fantastique, avec plusieurs campagnes solo et des parties multijoueurs (en réseau et en local)." #. type: defvar -#: guix-git/doc/guix.texi:32906 +#: guix-git/doc/guix.texi:33271 #, no-wrap msgid "{Scheme Variable} wesnothd-service-type" msgstr "{Variable Scheme} wesnothd-service-type" #. type: defvar -#: guix-git/doc/guix.texi:32910 +#: guix-git/doc/guix.texi:33275 msgid "Service type for the wesnothd service. Its value must be a @code{wesnothd-configuration} object. To run wesnothd in the default configuration, instantiate it as:" msgstr "Type de service pour le service wesnothd. Sa valeur doit être un objet @code{wesnothd-configuration}. Pour lancer wesnothd avec la configuration par défaut, instanciez-le ainsi :" #. type: lisp -#: guix-git/doc/guix.texi:32913 +#: guix-git/doc/guix.texi:33278 #, no-wrap msgid "(service wesnothd-service-type)\n" msgstr "(service wesnothd-service-type)\n" #. type: deftp -#: guix-git/doc/guix.texi:32916 +#: guix-git/doc/guix.texi:33281 #, no-wrap msgid "{Data Type} wesnothd-configuration" msgstr "{Type de données} wesnothd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:32918 +#: guix-git/doc/guix.texi:33283 msgid "Data type representing the configuration of @command{wesnothd}." msgstr "Type de donées représentant la configuration de @command{wesnothd}." #. type: item -#: guix-git/doc/guix.texi:32920 +#: guix-git/doc/guix.texi:33285 #, no-wrap msgid "@code{package} (default: @code{wesnoth-server})" msgstr "@code{package} (par défaut : @code{wesnoth-server})" #. type: table -#: guix-git/doc/guix.texi:32922 +#: guix-git/doc/guix.texi:33287 msgid "The wesnoth server package to use." msgstr "Le paquet de serveur de wesnoth à utiliser." #. type: item -#: guix-git/doc/guix.texi:32923 +#: guix-git/doc/guix.texi:33288 #, no-wrap msgid "@code{port} (default: @code{15000})" msgstr "@code{port} (par défaut : @code{15000})" #. type: table -#: guix-git/doc/guix.texi:32925 +#: guix-git/doc/guix.texi:33290 guix-git/doc/guix.texi:33681 msgid "The port to bind the server to." msgstr "Le pour sur lequel lier le serveur." #. type: cindex -#: guix-git/doc/guix.texi:32931 +#: guix-git/doc/guix.texi:33296 #, no-wrap msgid "pam-mount" msgstr "pam-mount" #. type: Plain text -#: guix-git/doc/guix.texi:32936 +#: guix-git/doc/guix.texi:33301 msgid "The @code{(gnu services pam-mount)} module provides a service allowing users to mount volumes when they log in. It should be able to mount any volume format supported by the system." msgstr "Le module @code{(gnu services pam-mount)} fournit un service qui permet de monter des volumes à la connexion de l'utilisateur·rice. Il peut monter n'importe quel format de volume pris en charge par le système." #. type: defvar -#: guix-git/doc/guix.texi:32937 +#: guix-git/doc/guix.texi:33302 #, no-wrap msgid "{Scheme Variable} pam-mount-service-type" msgstr "{Variable Scheme} pam-mount-service-type" #. type: defvar -#: guix-git/doc/guix.texi:32939 +#: guix-git/doc/guix.texi:33304 msgid "Service type for PAM Mount support." msgstr "Type de service pour la prise en charge de PAM Mount." #. type: deftp -#: guix-git/doc/guix.texi:32941 +#: guix-git/doc/guix.texi:33306 #, no-wrap msgid "{Data Type} pam-mount-configuration" msgstr "{Type de données} pam-mount-configuration" #. type: deftp -#: guix-git/doc/guix.texi:32943 +#: guix-git/doc/guix.texi:33308 msgid "Data type representing the configuration of PAM Mount." msgstr "Type de données représentant la configuration de PAM Mount." #. type: code{#1} -#: guix-git/doc/guix.texi:32947 +#: guix-git/doc/guix.texi:33312 #, no-wrap msgid "rules" msgstr "rules" #. type: table -#: guix-git/doc/guix.texi:32950 +#: guix-git/doc/guix.texi:33315 msgid "The configuration rules that will be used to generate @file{/etc/security/pam_mount.conf.xml}." msgstr "Les règles de configuration utilisées pour générer @file{/etc/security/pam_mount.conf.xml}." #. type: table -#: guix-git/doc/guix.texi:32954 +#: guix-git/doc/guix.texi:33319 msgid "The configuration rules are SXML elements (@pxref{SXML,,, guile, GNU Guile Reference Manual}), and the default ones don't mount anything for anyone at login:" msgstr "Les règles de configuration sont des éléments SXML (@pxref{SXML,,, guile, GNU Guile Reference Manual}), et les valeurs par défaut ne montent rien pour personne à la connexion :" #. type: lisp -#: guix-git/doc/guix.texi:32969 +#: guix-git/doc/guix.texi:33334 #, no-wrap msgid "" "`((debug (@@ (enable \"0\")))\n" @@ -61646,12 +62386,12 @@ msgstr "" " (remove \"true\"))))\n" #. type: table -#: guix-git/doc/guix.texi:32975 +#: guix-git/doc/guix.texi:33340 msgid "Some @code{volume} elements must be added to automatically mount volumes at login. Here's an example allowing the user @code{alice} to mount her encrypted @env{HOME} directory and allowing the user @code{bob} to mount the partition where he stores his data:" msgstr "Certains éléments de @code{volume} doivent être ajoutés pour automatiquement monter des volumes à la connexion. voici un exemple qui permet à l'utilisatrice @code{alice} de monter son répertoire @env{HOME} chiffré et permet à l'utilisateur @code{bob} de monter la partition où il stocke ses données :" #. type: lisp -#: guix-git/doc/guix.texi:33000 +#: guix-git/doc/guix.texi:33365 #, no-wrap msgid "" "(define pam-mount-rules\n" @@ -61705,7 +62445,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:33004 +#: guix-git/doc/guix.texi:33369 #, no-wrap msgid "" "(service pam-mount-service-type\n" @@ -61717,771 +62457,928 @@ msgstr "" " (rules pam-mount-rules)))\n" #. type: table -#: guix-git/doc/guix.texi:33008 +#: guix-git/doc/guix.texi:33373 msgid "The complete list of possible options can be found in the man page for @uref{http://pam-mount.sourceforge.net/pam_mount.conf.5.html, pam_mount.conf}." msgstr "La liste complète des options disponibles se trouve sur la page de manuel de @uref{http://pam-mount.sourceforge.net/pam_mount.conf.5.html, pam_mount.conf}." #. type: subsubheading -#: guix-git/doc/guix.texi:33015 +#: guix-git/doc/guix.texi:33380 #, no-wrap msgid "Guix Build Coordinator" msgstr "Guix Build Coordinator" #. type: Plain text -#: guix-git/doc/guix.texi:33021 +#: guix-git/doc/guix.texi:33386 msgid "The @uref{https://git.cbaines.net/guix/build-coordinator/,Guix Build Coordinator} aids in distributing derivation builds among machines running an @dfn{agent}. The build daemon is still used to build the derivations, but the Guix Build Coordinator manages allocating builds and working with the results." msgstr "Le @uref{https://git.cbaines.net/guix/build-coordinator/,Guix Build Coordinator} aide à distribuer la construction de dérivations entre machines sur lesquelles tourne un @dfn{agent}. Le démon de construction est toujours utilisé pour construire les dérivations, mais Guix Build Coordinator gère l'allocation des construction et des résultats." #. type: Plain text -#: guix-git/doc/guix.texi:33027 +#: guix-git/doc/guix.texi:33392 msgid "The Guix Build Coordinator consists of one @dfn{coordinator}, and one or more connected @dfn{agent} processes. The coordinator process handles clients submitting builds, and allocating builds to agents. The agent processes talk to a build daemon to actually perform the builds, then send the results back to the coordinator." msgstr "Le coordinateur des constructions Guix consiste en un @dfn{coordinateur}, et un ou plus processus @dfn{agents} connectés. Le coordinateur gère les clients qui soumettent des constructions, et alloue les constructions aux agents. Les processus agents parlent au démon de construction pour effectuer les constructions, puis envoie les résultats au coordinateur." #. type: Plain text -#: guix-git/doc/guix.texi:33031 +#: guix-git/doc/guix.texi:33396 msgid "There is a script to run the coordinator component of the Guix Build Coordinator, but the Guix service uses a custom Guile script instead, to provide better integration with G-expressions used in the configuration." msgstr "Il y a un script pour lancer le composant du coordinateur de Guix Build Coordinator, mais le service Guix utilise un script Guile personnalisé à la place, pour fournir une meilleure intégration avec les G-expressions utilisées dans la configuration." #. type: defvar -#: guix-git/doc/guix.texi:33032 +#: guix-git/doc/guix.texi:33397 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-service-type" msgstr "{Variable Scheme} guix-build-coordinator-service-type" #. type: defvar -#: guix-git/doc/guix.texi:33035 +#: guix-git/doc/guix.texi:33400 msgid "Service type for the Guix Build Coordinator. Its value must be a @code{guix-build-coordinator-configuration} object." msgstr "Le type de service pour Guix Build Coordinator. Sa valeur doit être un @code{guix-build-coordinator-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:33037 +#: guix-git/doc/guix.texi:33402 #, no-wrap msgid "{Data Type} guix-build-coordinator-configuration" msgstr "{Type de données} guix-build-coordinator-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33039 +#: guix-git/doc/guix.texi:33404 msgid "Data type representing the configuration of the Guix Build Coordinator." msgstr "Le type de données représentant la configuration de Guix Build Coordinator." #. type: item -#: guix-git/doc/guix.texi:33041 guix-git/doc/guix.texi:33211 +#: guix-git/doc/guix.texi:33406 guix-git/doc/guix.texi:33576 #, no-wrap msgid "@code{package} (default: @code{guix-build-coordinator})" msgstr "@code{package} (par défaut : @code{guix-build-coordinator})" #. type: table -#: guix-git/doc/guix.texi:33043 guix-git/doc/guix.texi:33087 -#: guix-git/doc/guix.texi:33213 +#: guix-git/doc/guix.texi:33408 guix-git/doc/guix.texi:33452 +#: guix-git/doc/guix.texi:33578 msgid "The Guix Build Coordinator package to use." msgstr "Le paquet Guix Build Coordinator à utiliser." #. type: item -#: guix-git/doc/guix.texi:33044 +#: guix-git/doc/guix.texi:33409 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator\"})" msgstr "@code{user} (par défaut : @code{\"guix-build-coordinator\"})" #. type: table -#: guix-git/doc/guix.texi:33046 guix-git/doc/guix.texi:33090 -#: guix-git/doc/guix.texi:33216 guix-git/doc/guix.texi:33262 +#: guix-git/doc/guix.texi:33411 guix-git/doc/guix.texi:33455 +#: guix-git/doc/guix.texi:33581 guix-git/doc/guix.texi:33627 +#: guix-git/doc/guix.texi:33675 msgid "The system user to run the service as." msgstr "L'utilisateur qui lance le service." #. type: item -#: guix-git/doc/guix.texi:33047 +#: guix-git/doc/guix.texi:33412 #, no-wrap msgid "@code{group} (default: @code{\"guix-build-coordinator\"})" msgstr "@code{group} (par défaut : @code{\"guix-build-coordinator\"})" #. type: table -#: guix-git/doc/guix.texi:33049 guix-git/doc/guix.texi:33265 +#: guix-git/doc/guix.texi:33414 guix-git/doc/guix.texi:33630 +#: guix-git/doc/guix.texi:33678 msgid "The system group to run the service as." msgstr "Le groupe système qui lance le service." #. type: item -#: guix-git/doc/guix.texi:33050 +#: guix-git/doc/guix.texi:33415 #, no-wrap msgid "@code{database-uri-string} (default: @code{\"sqlite:///var/lib/guix-build-coordinator/guix_build_coordinator.db\"})" msgstr "@code{database-uri-string} (par défaut : @code{\"sqlite:///var/lib/guix-build-coordinator/guix_build_coordinator.db\"})" #. type: table -#: guix-git/doc/guix.texi:33052 +#: guix-git/doc/guix.texi:33417 msgid "The URI to use for the database." msgstr "L'URI à utiliser pour la base de données." #. type: item -#: guix-git/doc/guix.texi:33053 +#: guix-git/doc/guix.texi:33418 #, no-wrap msgid "@code{agent-communication-uri} (default: @code{\"http://0.0.0.0:8745\"})" msgstr "@code{agent-communication-uri} (par défaut : @code{\"http://0.0.0.0:8745\"})" #. type: table -#: guix-git/doc/guix.texi:33055 +#: guix-git/doc/guix.texi:33420 msgid "The URI describing how to listen to requests from agent processes." msgstr "L'URI décrivant comment écouter les requêtes des processus agents." #. type: item -#: guix-git/doc/guix.texi:33056 +#: guix-git/doc/guix.texi:33421 #, no-wrap msgid "@code{client-communication-uri} (default: @code{\"http://127.0.0.1:8746\"})" msgstr "@code{client-communication-uri} (par défaut : @code{\"http://127.0.0.1:8746\"})" #. type: table -#: guix-git/doc/guix.texi:33060 +#: guix-git/doc/guix.texi:33425 msgid "The URI describing how to listen to requests from clients. The client API allows submitting builds and currently isn't authenticated, so take care when configuring this value." msgstr "L'URI décrivant comme écouter les requêtes des clients. L'API cliente permet de soumettre des constructions et n'est pas actuellement authentifiée, donc faites attention lors de la configuration de cette valeur." #. type: item -#: guix-git/doc/guix.texi:33061 +#: guix-git/doc/guix.texi:33426 #, no-wrap msgid "@code{allocation-strategy} (default: @code{#~basic-build-allocation-strategy})" msgstr "@code{allocation-strategy} (par défaut : @code{#~basic-build-allocation-strategy})" #. type: table -#: guix-git/doc/guix.texi:33065 +#: guix-git/doc/guix.texi:33430 msgid "A G-expression for the allocation strategy to be used. This is a procedure that takes the datastore as an argument and populates the allocation plan in the database." msgstr "Une G-expression pour la stratégie d'allocation à utiliser. C'est une procédure qui prend le stockage de données en argument et rempli le plan d'allocation dans la base de données." #. type: item -#: guix-git/doc/guix.texi:33066 +#: guix-git/doc/guix.texi:33431 #, no-wrap msgid "@code{hooks} (default: @var{'()})" msgstr "@code{hooks} (par défaut : @var{'()})" #. type: table -#: guix-git/doc/guix.texi:33069 +#: guix-git/doc/guix.texi:33434 msgid "An association list of hooks. These provide a way to execute arbitrary code upon certain events, like a build result being processed." msgstr "Une liste d'association de crochets. Ils fournissent une manière d'exécuter du code arbitraire en fonction d'évènements, comme le traitement des résultats des constructions." #. type: item -#: guix-git/doc/guix.texi:33070 +#: guix-git/doc/guix.texi:33435 #, no-wrap msgid "@code{guile} (default: @code{guile-3.0-latest})" msgstr "@code{guile} (par défaut : @code{guile-3.0-latest})" #. type: table -#: guix-git/doc/guix.texi:33072 +#: guix-git/doc/guix.texi:33437 msgid "The Guile package with which to run the Guix Build Coordinator." msgstr "Le paquet Guile à utiliser pour lancer Guix Build Coordinator." #. type: defvar -#: guix-git/doc/guix.texi:33076 +#: guix-git/doc/guix.texi:33441 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-agent-service-type" msgstr "{Variable Scheme} guix-build-coordinator-agent-service-type" #. type: defvar -#: guix-git/doc/guix.texi:33079 +#: guix-git/doc/guix.texi:33444 msgid "Service type for a Guix Build Coordinator agent. Its value must be a @code{guix-build-coordinator-agent-configuration} object." msgstr "Le type de service pour un agent Guix Build Coordinator. Sa valeur doit être un @code{guix-build-coordinator-agent-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:33081 +#: guix-git/doc/guix.texi:33446 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-configuration" msgstr "{Type de données} guix-build-coordinator-agent-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33083 +#: guix-git/doc/guix.texi:33448 msgid "Data type representing the configuration a Guix Build Coordinator agent." msgstr "Type de données représentant la configuration d'un agent Guix Build Coordinator." #. type: item -#: guix-git/doc/guix.texi:33085 -#, fuzzy, no-wrap -#| msgid "@code{package} (default: @code{guix-build-coordinator})" +#: guix-git/doc/guix.texi:33450 +#, no-wrap msgid "@code{package} (default: @code{guix-build-coordinator/agent-only})" -msgstr "@code{package} (par défaut : @code{guix-build-coordinator})" +msgstr "@code{package} (par défaut : @code{guix-build-coordinator/agent-only})" #. type: item -#: guix-git/doc/guix.texi:33088 +#: guix-git/doc/guix.texi:33453 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator-agent\"})" msgstr "@code{user} (par défaut : @code{\"guix-build-coordinator-agent\"})" #. type: item -#: guix-git/doc/guix.texi:33091 +#: guix-git/doc/guix.texi:33456 #, no-wrap msgid "@code{coordinator} (default: @code{\"http://localhost:8745\"})" msgstr "@code{coordinator} (par défaut : @code{\"http://localhost:8745\"})" #. type: table -#: guix-git/doc/guix.texi:33093 guix-git/doc/guix.texi:33219 +#: guix-git/doc/guix.texi:33458 guix-git/doc/guix.texi:33584 msgid "The URI to use when connecting to the coordinator." msgstr "L'URI à utiliser lors de la connexion au coordinateur." #. type: code{#1} -#: guix-git/doc/guix.texi:33094 +#: guix-git/doc/guix.texi:33459 #, no-wrap msgid "authentication" msgstr "authentification" #. type: table -#: guix-git/doc/guix.texi:33097 +#: guix-git/doc/guix.texi:33462 msgid "Record describing how this agent should authenticate with the coordinator. Possible record types are described below." msgstr "Enregistrement décrivant comme cet agent devrait s'authentifier avec le coordinateur. Les types d'enregistrement possibles sont décrit plus bas." #. type: item -#: guix-git/doc/guix.texi:33098 guix-git/doc/guix.texi:33220 +#: guix-git/doc/guix.texi:33463 guix-git/doc/guix.texi:33585 #, no-wrap msgid "@code{systems} (default: @code{#f})" msgstr "@code{systems} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33101 +#: guix-git/doc/guix.texi:33466 msgid "The systems for which this agent should fetch builds. The agent process will use the current system it's running on as the default." msgstr "Les systèmes pour lesquels cet agent devrait récupérer les constructions. Le processus de l'agent utilisera le système actuel comme valeur par défaut." #. type: item -#: guix-git/doc/guix.texi:33102 +#: guix-git/doc/guix.texi:33467 #, no-wrap msgid "@code{max-parallel-builds} (default: @code{1})" msgstr "@code{max-parallel-builds} (par défaut : @code{1})" #. type: table -#: guix-git/doc/guix.texi:33104 +#: guix-git/doc/guix.texi:33469 msgid "The number of builds to perform in parallel." msgstr "Le nombre de constructions qui peuvent tourner simultanément." #. type: item -#: guix-git/doc/guix.texi:33105 +#: guix-git/doc/guix.texi:33470 #, no-wrap msgid "@code{max-1min-load-average} (default: @code{#f})" msgstr "@code{max-1min-load-average} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33109 +#: guix-git/doc/guix.texi:33474 msgid "Load average value to look at when considering starting new builds, if the 1 minute load average exceeds this value, the agent will wait before starting new builds." msgstr "Valeur moyenne de charge à vérifier avant de commencer de nouvelles construction. Si la valeur moyenne à une minute dépasse cette valeur, l'agent attendra avant de commencer de nouvelles constructions." #. type: table -#: guix-git/doc/guix.texi:33113 +#: guix-git/doc/guix.texi:33478 msgid "This will be unspecified if the value is @code{#f}, and the agent will use the number of cores reported by the system as the max 1 minute load average." msgstr "Cela sera non spécifié si la valeur est @code{#f}, et l'agent utilisera le nombre de cœurs rapportés par le système comme la moyenne de charge à 1 minute maximale." #. type: item -#: guix-git/doc/guix.texi:33114 +#: guix-git/doc/guix.texi:33479 #, no-wrap msgid "@code{derivation-substitute-urls} (default: @code{#f})" msgstr "@code{derivation-substitute-urls} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33117 +#: guix-git/doc/guix.texi:33482 msgid "URLs from which to attempt to fetch substitutes for derivations, if the derivations aren't already available." msgstr "URL à partir desquelles essayer de récupérer les substituts pour les dérivations, si les dérivation ne sont pas déjà disponibles." #. type: item -#: guix-git/doc/guix.texi:33118 +#: guix-git/doc/guix.texi:33483 #, no-wrap msgid "@code{non-derivation-substitute-urls} (default: @code{#f})" msgstr "@code{non-derivation-substitute-urls} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33121 +#: guix-git/doc/guix.texi:33486 msgid "URLs from which to attempt to fetch substitutes for build inputs, if the input store items aren't already available." msgstr "URL à partir desquelles essayer de chercher les substituts pour les entrées des constructions, si les éléments du dépôt des entrées ne sont pas déjà disponibles." #. type: deftp -#: guix-git/doc/guix.texi:33125 +#: guix-git/doc/guix.texi:33490 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-password-auth" msgstr "{Type de données} guix-build-coordinator-agent-password-auth" #. type: deftp -#: guix-git/doc/guix.texi:33128 +#: guix-git/doc/guix.texi:33493 msgid "Data type representing an agent authenticating with a coordinator via a UUID and password." msgstr "Type de données représentant un moyen d'authentification avec un coordinateur pour les agents, via un UUID et un mot de passe." #. type: table -#: guix-git/doc/guix.texi:33134 guix-git/doc/guix.texi:33150 +#: guix-git/doc/guix.texi:33499 guix-git/doc/guix.texi:33515 msgid "The UUID of the agent. This should be generated by the coordinator process, stored in the coordinator database, and used by the intended agent." msgstr "L'UUID de l'agent. Il devrait être généré par le processus du coordinateur, stocké dans la base du coordinateur et utilisé par l'agent prévu." #. type: table -#: guix-git/doc/guix.texi:33137 +#: guix-git/doc/guix.texi:33502 msgid "The password to use when connecting to the coordinator." msgstr "Le mot de passe à utiliser lors de la connexion au coordinateur." #. type: deftp -#: guix-git/doc/guix.texi:33141 +#: guix-git/doc/guix.texi:33506 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-password-file-auth" msgstr "{Type de données} guix-build-coordinator-agent-password-file-auth" #. type: deftp -#: guix-git/doc/guix.texi:33144 +#: guix-git/doc/guix.texi:33509 msgid "Data type representing an agent authenticating with a coordinator via a UUID and password read from a file." msgstr "Type de données représentant un moyen d'authentification avec un coordinateur via un UUID et un mot de passe lu depuis un fichier." #. type: code{#1} -#: guix-git/doc/guix.texi:33151 +#: guix-git/doc/guix.texi:33516 #, no-wrap msgid "password-file" msgstr "password-file" #. type: table -#: guix-git/doc/guix.texi:33154 +#: guix-git/doc/guix.texi:33519 msgid "A file containing the password to use when connecting to the coordinator." msgstr "Un fichier contenant le mot de passe à utiliser pour la connexion avec le coordinateur." #. type: deftp -#: guix-git/doc/guix.texi:33158 +#: guix-git/doc/guix.texi:33523 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-dynamic-auth" msgstr "{Type de données} guix-build-coordinator-agent-dynamic-auth" #. type: deftp -#: guix-git/doc/guix.texi:33161 +#: guix-git/doc/guix.texi:33526 msgid "Data type representing an agent authenticating with a coordinator via a dynamic auth token and agent name." msgstr "Type de données représentant un moyen d'authentification à un coordinateur via un jeton d’authentification dynamique et le nom de l'agent." #. type: code{#1} -#: guix-git/doc/guix.texi:33163 guix-git/doc/guix.texi:33180 +#: guix-git/doc/guix.texi:33528 guix-git/doc/guix.texi:33545 #, no-wrap msgid "agent-name" msgstr "agent-name" #. type: table -#: guix-git/doc/guix.texi:33167 guix-git/doc/guix.texi:33184 +#: guix-git/doc/guix.texi:33532 guix-git/doc/guix.texi:33549 msgid "Name of an agent, this is used to match up to an existing entry in the database if there is one. When no existing entry is found, a new entry is automatically added." msgstr "Nom d'un agent, c'est utilisé pour le faire correspondre à une entrée existante dans la base de données s'il existe. Lorsqu'aucune entrée n'est trouvée, une nouvelle entrée est ajoutée automatiquement." #. type: code{#1} -#: guix-git/doc/guix.texi:33168 +#: guix-git/doc/guix.texi:33533 #, no-wrap msgid "token" msgstr "token" #. type: table -#: guix-git/doc/guix.texi:33171 +#: guix-git/doc/guix.texi:33536 msgid "Dynamic auth token, this is created and stored in the coordinator database, and is used by the agent to authenticate." msgstr "Jeton d'authentification dynamique, créé et stocké dans la base de données du coordinateur, et utilisé par l'agent pour s'authentifier." #. type: deftp -#: guix-git/doc/guix.texi:33175 +#: guix-git/doc/guix.texi:33540 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-dynamic-auth-with-file" msgstr "{Type de données} guix-build-coordinator-agent-dynamic-auth-with-file" #. type: deftp -#: guix-git/doc/guix.texi:33178 +#: guix-git/doc/guix.texi:33543 msgid "Data type representing an agent authenticating with a coordinator via a dynamic auth token read from a file and agent name." msgstr "Type de données représentant une méthode d'authentification à un coordinateur via un jeton d'authentification dynamique lu depuis un fichier et un nom d'agent." #. type: code{#1} -#: guix-git/doc/guix.texi:33185 +#: guix-git/doc/guix.texi:33550 #, no-wrap msgid "token-file" msgstr "token-file" #. type: table -#: guix-git/doc/guix.texi:33188 +#: guix-git/doc/guix.texi:33553 msgid "File containing the dynamic auth token, this is created and stored in the coordinator database, and is used by the agent to authenticate." msgstr "Fichier contenant le jeton d'authentification dynamique, créé et stocké dans la base de données du coordinateur, et utilisé par l'agent pour s'authentifier." #. type: Plain text -#: guix-git/doc/guix.texi:33198 +#: guix-git/doc/guix.texi:33563 msgid "The Guix Build Coordinator package contains a script to query an instance of the Guix Data Service for derivations to build, and then submit builds for those derivations to the coordinator. The service type below assists in running this script. This is an additional tool that may be useful when building derivations contained within an instance of the Guix Data Service." msgstr "Le paquet Guix Build Coordinator contient un script pour demander à une instance de Guix Data Service les dérivations à construire, puis pour soumettre les constructions de ces dérivations au coordinateur. Le type de service ci-dessous vous aide à lancer ce script. C'est un outil supplémentaire qui peut être utile lors de la construction de dérivations contenues dans une instance du Guix Data Service." #. type: defvar -#: guix-git/doc/guix.texi:33199 +#: guix-git/doc/guix.texi:33564 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-queue-builds-service-type" msgstr "{Variable Scheme} guix-build-coordinator-queue-builds-service-type" #. type: defvar -#: guix-git/doc/guix.texi:33204 +#: guix-git/doc/guix.texi:33569 msgid "Service type for the guix-build-coordinator-queue-builds-from-guix-data-service script. Its value must be a @code{guix-build-coordinator-queue-builds-configuration} object." msgstr "Type de service pour le script guix-build-coordinator-queue-builds-from-guix-data-service. Sa valeur doit être un objet @code{guix-build-coordinator-queue-builds-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:33206 +#: guix-git/doc/guix.texi:33571 #, no-wrap msgid "{Data Type} guix-build-coordinator-queue-builds-configuration" msgstr "{Type de données} guix-build-coordinator-queue-builds-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33209 +#: guix-git/doc/guix.texi:33574 msgid "Data type representing the options to the queue builds from guix data service script." msgstr "Le type de données représentant les options du script qui soumet les constructions à partir du guix data service." #. type: item -#: guix-git/doc/guix.texi:33214 +#: guix-git/doc/guix.texi:33579 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator-queue-builds\"})" msgstr "@code{user} (par défaut : @code{\"guix-build-coordinator-queue-builds\"})" #. type: item -#: guix-git/doc/guix.texi:33217 +#: guix-git/doc/guix.texi:33582 #, no-wrap msgid "@code{coordinator} (default: @code{\"http://localhost:8746\"})" msgstr "@code{coordinator} (par défaut : @code{\"http://localhost:8746\"})" #. type: table -#: guix-git/doc/guix.texi:33222 +#: guix-git/doc/guix.texi:33587 msgid "The systems for which to fetch derivations to build." msgstr "Les systèmes pour lesquels récupérer des dérivations à construire." #. type: item -#: guix-git/doc/guix.texi:33223 +#: guix-git/doc/guix.texi:33588 #, no-wrap msgid "@code{systems-and-targets} (default: @code{#f})" msgstr "@code{systems-and-targets} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33226 +#: guix-git/doc/guix.texi:33591 msgid "An association list of system and target pairs for which to fetch derivations to build." msgstr "Une liste d'association de paires de systèmes et de cibles pour lesquelles chercher des dérivations à construire." #. type: item -#: guix-git/doc/guix.texi:33227 +#: guix-git/doc/guix.texi:33592 #, no-wrap msgid "@code{guix-data-service} (default: @code{\"https://data.guix.gnu.org\"})" msgstr "@code{guix-data-service} (par défaut : @code{\"https://data.guix.gnu.org\"})" #. type: table -#: guix-git/doc/guix.texi:33230 +#: guix-git/doc/guix.texi:33595 msgid "The Guix Data Service instance from which to query to find out about derivations to build." msgstr "L'instance du Guix Data Service à laquelle demander les dérivations à construire." #. type: item -#: guix-git/doc/guix.texi:33231 +#: guix-git/doc/guix.texi:33596 #, no-wrap msgid "@code{processed-commits-file} (default: @code{\"/var/cache/guix-build-coordinator-queue-builds/processed-commits\"})" msgstr "@code{processed-commits-file} (par défaut : @code{\"/var/cache/guix-build-coordinator-queue-builds/processed-commits\"})" #. type: table -#: guix-git/doc/guix.texi:33234 +#: guix-git/doc/guix.texi:33599 msgid "A file to record which commits have been processed, to avoid needlessly processing them again if the service is restarted." msgstr "Un fichier qui enregistre les commits qui ont été traités, pour éviter de les traiter de nouveau inutilement si le service est redémarré." #. type: subsubheading -#: guix-git/doc/guix.texi:33238 +#: guix-git/doc/guix.texi:33603 #, no-wrap msgid "Guix Data Service" msgstr "Guix Data Service" #. type: Plain text -#: guix-git/doc/guix.texi:33242 +#: guix-git/doc/guix.texi:33607 msgid "The @uref{http://data.guix.gnu.org,Guix Data Service} processes, stores and provides data about GNU Guix. This includes information about packages, derivations and lint warnings." msgstr "Le @uref{http://data.guix.gnu.org,Guix Data Service} traite, stocke et fournit des données à propos de GNU Guix. Cela comprend des informations sur les paquets, les dérivations et les messages d'avertissement de formatage." #. type: Plain text -#: guix-git/doc/guix.texi:33245 +#: guix-git/doc/guix.texi:33610 msgid "The data is stored in a PostgreSQL database, and available through a web interface." msgstr "Les données sont stockées dans une base PostgreSQL, et sont disponibles à travers une interface web." #. type: defvar -#: guix-git/doc/guix.texi:33246 +#: guix-git/doc/guix.texi:33611 #, no-wrap msgid "{Scheme Variable} guix-data-service-type" msgstr "{Variable Scheme} guix-data-service-type" #. type: defvar -#: guix-git/doc/guix.texi:33251 +#: guix-git/doc/guix.texi:33616 msgid "Service type for the Guix Data Service. Its value must be a @code{guix-data-service-configuration} object. The service optionally extends the getmail service, as the guix-commits mailing list is used to find out about changes in the Guix git repository." msgstr "Le type de service pour le Guix Data Service. Sa valeur doit être un objet @code{guix-data-service-configuration}. Le service étend éventuellement le service getmail, car la liste de diffusion guix-commits est utilisée pour récupérer les changement dans le dépôt git de Guix." #. type: deftp -#: guix-git/doc/guix.texi:33253 +#: guix-git/doc/guix.texi:33618 #, no-wrap msgid "{Data Type} guix-data-service-configuration" msgstr "{Type de données} guix-data-service-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33255 +#: guix-git/doc/guix.texi:33620 guix-git/doc/guix.texi:33668 msgid "Data type representing the configuration of the Guix Data Service." msgstr "Le type de données représentant la configuration du Guix Data Service." #. type: item -#: guix-git/doc/guix.texi:33257 +#: guix-git/doc/guix.texi:33622 #, no-wrap msgid "@code{package} (default: @code{guix-data-service})" msgstr "@code{package} (par défaut : @code{guix-data-service})" #. type: table -#: guix-git/doc/guix.texi:33259 +#: guix-git/doc/guix.texi:33624 msgid "The Guix Data Service package to use." msgstr "Le paquet Guix Data Service à utiliser." #. type: item -#: guix-git/doc/guix.texi:33260 +#: guix-git/doc/guix.texi:33625 #, no-wrap msgid "@code{user} (default: @code{\"guix-data-service\"})" msgstr "@code{user} (par défaut : @code{\"guix-data-service\"})" #. type: item -#: guix-git/doc/guix.texi:33263 +#: guix-git/doc/guix.texi:33628 #, no-wrap msgid "@code{group} (default: @code{\"guix-data-service\"})" msgstr "@code{group} (par défaut : @code{\"guix-data-service\"})" #. type: item -#: guix-git/doc/guix.texi:33266 +#: guix-git/doc/guix.texi:33631 #, no-wrap msgid "@code{port} (default: @code{8765})" msgstr "@code{port} (par défaut : @code{8765})" #. type: table -#: guix-git/doc/guix.texi:33268 +#: guix-git/doc/guix.texi:33633 msgid "The port to bind the web service to." msgstr "Le port sur lequel lier le service web." #. type: item -#: guix-git/doc/guix.texi:33269 +#: guix-git/doc/guix.texi:33634 guix-git/doc/guix.texi:33682 #, no-wrap msgid "@code{host} (default: @code{\"127.0.0.1\"})" msgstr "@code{host} (par défaut : @code{\"127.0.0.1\"})" #. type: table -#: guix-git/doc/guix.texi:33271 +#: guix-git/doc/guix.texi:33636 msgid "The host to bind the web service to." msgstr "L'hôte sur lequel lier le service web." #. type: item -#: guix-git/doc/guix.texi:33272 +#: guix-git/doc/guix.texi:33637 #, no-wrap msgid "@code{getmail-idle-mailboxes} (default: @code{#f})" msgstr "@code{getmail-idle-mailboxes} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33275 +#: guix-git/doc/guix.texi:33640 msgid "If set, this is the list of mailboxes that the getmail service will be configured to listen to." msgstr "Si une valeur est indiquée, c'est la liste des boites de courriel que le service getmail récupère." #. type: item -#: guix-git/doc/guix.texi:33276 +#: guix-git/doc/guix.texi:33641 #, no-wrap msgid "@code{commits-getmail-retriever-configuration} (default: @code{#f})" msgstr "@code{commits-getmail-retriever-configuration} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33280 +#: guix-git/doc/guix.texi:33645 msgid "If set, this is the @code{getmail-retriever-configuration} object with which to configure getmail to fetch mail from the guix-commits mailing list." msgstr "Si la valeur est indiquée, c'est l'objet @code{getmail-retriever-configuration} avec lequel configurer getmail pour récupérer les courriels à part de la liste de diffusion guix-commits." #. type: item -#: guix-git/doc/guix.texi:33281 +#: guix-git/doc/guix.texi:33646 #, no-wrap msgid "@code{extra-options} (default: @var{'()})" msgstr "@code{extra-options} (par défaut : @var{'()})" #. type: table -#: guix-git/doc/guix.texi:33283 +#: guix-git/doc/guix.texi:33648 msgid "Extra command line options for @code{guix-data-service}." msgstr "Liste d'options supplémentaires de la ligne de commande pour @command{guix-data-service}." #. type: item -#: guix-git/doc/guix.texi:33284 +#: guix-git/doc/guix.texi:33649 #, no-wrap msgid "@code{extra-process-jobs-options} (default: @var{'()})" msgstr "@code{extra-process-jobs-options} (par défaut : @var{'()})" #. type: table -#: guix-git/doc/guix.texi:33286 +#: guix-git/doc/guix.texi:33651 msgid "Extra command line options for @code{guix-data-service-process-jobs}." msgstr "Liste d'options supplémentaires de la ligne de commande pour @command{guix-data-service-process-jobs}." +#. type: subsubheading +#: guix-git/doc/guix.texi:33655 +#, no-wrap +msgid "Nar Herder" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:33658 +msgid "The @uref{https://git.cbaines.net/guix/nar-herder/about/,Nar Herder} is a utility for managing a collection of nars." +msgstr "" + +#. type: defvar +#: guix-git/doc/guix.texi:33659 +#, fuzzy, no-wrap +#| msgid "{Scheme Variable} ntp-service-type" +msgid "{Scheme Variable} nar-herder-type" +msgstr "{Variable Scheme} ntp-service-type" + +#. type: defvar +#: guix-git/doc/guix.texi:33664 +#, fuzzy +#| msgid "Service type for the Guix Data Service. Its value must be a @code{guix-data-service-configuration} object. The service optionally extends the getmail service, as the guix-commits mailing list is used to find out about changes in the Guix git repository." +msgid "Service type for the Guix Data Service. Its value must be a @code{nar-herder-configuration} object. The service optionally extends the getmail service, as the guix-commits mailing list is used to find out about changes in the Guix git repository." +msgstr "Le type de service pour le Guix Data Service. Sa valeur doit être un objet @code{guix-data-service-configuration}. Le service étend éventuellement le service getmail, car la liste de diffusion guix-commits est utilisée pour récupérer les changement dans le dépôt git de Guix." + +#. type: deftp +#: guix-git/doc/guix.texi:33666 +#, fuzzy, no-wrap +#| msgid "{Data Type} inetd-configuration" +msgid "{Data Type} nar-herder-configuration" +msgstr "{Type de données} inetd-configuration" + +#. type: item +#: guix-git/doc/guix.texi:33670 +#, fuzzy, no-wrap +#| msgid "@code{package} (default: @code{varnish})" +msgid "@code{package} (default: @code{nar-herder})" +msgstr "@code{package} (par défaut : @code{varnish})" + +#. type: table +#: guix-git/doc/guix.texi:33672 +#, fuzzy +#| msgid "The Hurd package to use." +msgid "The Nar Herder package to use." +msgstr "Le paquet Hurd à utiliser." + +#. type: item +#: guix-git/doc/guix.texi:33673 +#, fuzzy, no-wrap +#| msgid "@code{user} (default: @code{\"httpd\"})" +msgid "@code{user} (default: @code{\"nar-herder\"})" +msgstr "@code{user} (par défaut : @code{\"httpd\"})" + +#. type: item +#: guix-git/doc/guix.texi:33676 +#, fuzzy, no-wrap +#| msgid "@code{group} (default: @code{\"httpd\"})" +msgid "@code{group} (default: @code{\"nar-herder\"})" +msgstr "@code{group} (par défaut : @code{\"httpd\"})" + +#. type: item +#: guix-git/doc/guix.texi:33679 +#, fuzzy, no-wrap +#| msgid "@code{port} (default: @code{8765})" +msgid "@code{port} (default: @code{8734})" +msgstr "@code{port} (par défaut : @code{8765})" + +#. type: table +#: guix-git/doc/guix.texi:33684 +#, fuzzy +#| msgid "The port to bind the server to." +msgid "The host to bind the server to." +msgstr "Le pour sur lequel lier le serveur." + +#. type: table +#: guix-git/doc/guix.texi:33689 +msgid "Optional URL of the other Nar Herder instance which should be mirrored. This means that this Nar Herder instance will download it's database, and keep it up to date." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33690 +#, fuzzy, no-wrap +#| msgid "@code{database} (default: @code{\"/var/lib/cuirass/cuirass.db\"})" +msgid "@code{database} (default: @code{\"/var/lib/nar-herder/nar_herder.db\"})" +msgstr "@code{database} (par défaut : @code{\"/var/lib/cuirass/cuirass.db\"})" + +#. type: table +#: guix-git/doc/guix.texi:33695 +msgid "Location for the database. If this Nar Herder instance is mirroring another, the database will be downloaded if it doesn't exist. If this Nar Herder instance isn't mirroring another, an empty database will be created." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33696 +#, fuzzy, no-wrap +#| msgid "@code{database} (default: @code{\"/var/lib/cuirass/cuirass.db\"})" +msgid "@code{database-dump} (default: @code{\"/var/lib/nar-herder/nar_herder_dump.db\"})" +msgstr "@code{database} (par défaut : @code{\"/var/lib/cuirass/cuirass.db\"})" + +#. type: table +#: guix-git/doc/guix.texi:33700 +msgid "Location of the database dump. This is created and regularly updated by taking a copy of the database. This is the version of the database that is available to download." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33701 +#, fuzzy, no-wrap +#| msgid "@code{source} (default: @code{#f})" +msgid "@code{storage} (default: @code{#f})" +msgstr "@code{source} (par défaut : @code{#f})" + +#. type: table +#: guix-git/doc/guix.texi:33703 +#, fuzzy +#| msgid "Directory in which to store the data." +msgid "Optional location in which to store nars." +msgstr "Répertoire dans lequel stocker les données." + +#. type: item +#: guix-git/doc/guix.texi:33704 +#, fuzzy, no-wrap +#| msgid "@code{secret} (default: @code{\"\"})" +msgid "@code{storage-limit} (default: @code{\"none\"})" +msgstr "@code{secret} (par défaut : @code{\"\"})" + +#. type: table +#: guix-git/doc/guix.texi:33707 +msgid "Limit in bytes for the nars stored in the storage location. This can also be set to ``none'' so that there is no limit." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33710 +msgid "When the storage location exceeds this size, nars are removed according to the nar removal criteria." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33711 +#, fuzzy, no-wrap +#| msgid "@code{server} (default: @code{'()})" +msgid "@code{storage-nar-removal-criteria} (default: @code{'()})" +msgstr "@code{server} (par défaut : @code{'()})" + +#. type: table +#: guix-git/doc/guix.texi:33714 +msgid "Criteria used to remove nars from the storage location. These are used in conjunction with the storage limit." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33719 +msgid "When the storage location exceeds the storage limit size, nars will be checked against the nar removal criteria and if any of the criteria match, they will be removed. This will continue until the storage location is below the storage limit size." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33723 +msgid "Each criteria is specified by a string, then an equals sign, then another string. Currently, only one criteria is supported, checking if a nar is stored on another Nar Herder instance." +msgstr "" + #. type: cindex -#: guix-git/doc/guix.texi:33293 +#: guix-git/doc/guix.texi:33730 #, no-wrap msgid "oom" msgstr "oom" #. type: cindex -#: guix-git/doc/guix.texi:33294 +#: guix-git/doc/guix.texi:33731 #, no-wrap msgid "out of memory killer" msgstr "gestionnaire du remplissage de la mémoire" #. type: cindex -#: guix-git/doc/guix.texi:33295 +#: guix-git/doc/guix.texi:33732 #, no-wrap msgid "earlyoom" msgstr "earlyoom" #. type: cindex -#: guix-git/doc/guix.texi:33296 +#: guix-git/doc/guix.texi:33733 #, no-wrap msgid "early out of memory daemon" msgstr "démon de gestion du remplissage de la mémoire précoce" #. type: subsubheading -#: guix-git/doc/guix.texi:33297 +#: guix-git/doc/guix.texi:33734 #, no-wrap msgid "Early OOM Service" msgstr "Service Early OOM" #. type: Plain text -#: guix-git/doc/guix.texi:33304 +#: guix-git/doc/guix.texi:33741 msgid "@uref{https://github.com/rfjakob/earlyoom,Early OOM}, also known as Earlyoom, is a minimalist out of memory (OOM) daemon that runs in user space and provides a more responsive and configurable alternative to the in-kernel OOM killer. It is useful to prevent the system from becoming unresponsive when it runs out of memory." msgstr "@uref{https://github.com/rfjakob/earlyoom,Early OOM}, aussi appelé Earlyoom, est un démon de gestion du remplissage mémoire (OOM) minimaliste qui se lance en espace utilisateur et fournit une alternative plus rapide et configurable que le gestionnaire du noyau. Il est utile pour éviter que le système ne cesse de répondre lorsqu'il n'a plus de mémoire." #. type: deffn -#: guix-git/doc/guix.texi:33305 +#: guix-git/doc/guix.texi:33742 #, no-wrap msgid "{Scheme Variable} earlyoom-service-type" msgstr "{Variable Scheme} earlyoom-service-type" #. type: deffn -#: guix-git/doc/guix.texi:33310 +#: guix-git/doc/guix.texi:33747 msgid "The service type for running @command{earlyoom}, the Early OOM daemon. Its value must be a @code{earlyoom-configuration} object, described below. The service can be instantiated in its default configuration with:" msgstr "Le type de service pour le service @command{earlyoom}, le démon Early OOM. Sa valeur doit être un objet @code{earlyoom-configuration}, décrit plus bas. Vous pouvez instancier le service avec sa configuration par défaut avec :" #. type: lisp -#: guix-git/doc/guix.texi:33313 +#: guix-git/doc/guix.texi:33750 #, no-wrap msgid "(service earlyoom-service-type)\n" msgstr "(service earlyoom-service-type)\n" #. type: deftp -#: guix-git/doc/guix.texi:33316 +#: guix-git/doc/guix.texi:33753 #, no-wrap msgid "{Data Type} earlyoom-configuration" msgstr "{Type de données} earlyoom-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33318 +#: guix-git/doc/guix.texi:33755 msgid "This is the configuration record for the @code{earlyoom-service-type}." msgstr "La configuration pour @code{earlyoom-service-type}." #. type: item -#: guix-git/doc/guix.texi:33320 +#: guix-git/doc/guix.texi:33757 #, no-wrap msgid "@code{earlyoom} (default: @var{earlyoom})" msgstr "@code{earlyoom} (par défaut : @var{earlyoom})" #. type: table -#: guix-git/doc/guix.texi:33322 +#: guix-git/doc/guix.texi:33759 msgid "The Earlyoom package to use." msgstr "Le paquet Earlyoom à utiliser." #. type: item -#: guix-git/doc/guix.texi:33323 +#: guix-git/doc/guix.texi:33760 #, no-wrap msgid "@code{minimum-available-memory} (default: @code{10})" msgstr "@code{minimum-available-memory} (par défaut : @code{10})" #. type: table -#: guix-git/doc/guix.texi:33325 +#: guix-git/doc/guix.texi:33762 msgid "The threshold for the minimum @emph{available} memory, in percentages." msgstr "La limite de mémoire @emph{disponible} minimum, en pourcentage." #. type: item -#: guix-git/doc/guix.texi:33326 +#: guix-git/doc/guix.texi:33763 #, no-wrap msgid "@code{minimum-free-swap} (default: @code{10})" msgstr "@code{minimum-free-swap} (par défaut : @code{10})" #. type: table -#: guix-git/doc/guix.texi:33328 +#: guix-git/doc/guix.texi:33765 msgid "The threshold for the minimum free swap memory, in percentages." msgstr "La limite d'espace d'échange libre minimum, en pourcentage." #. type: item -#: guix-git/doc/guix.texi:33329 +#: guix-git/doc/guix.texi:33766 #, no-wrap msgid "@code{prefer-regexp} (default: @code{#f})" msgstr "@code{prefer-regexp} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33332 +#: guix-git/doc/guix.texi:33769 msgid "A regular expression (as a string) to match the names of the processes that should be preferably killed." msgstr "Une expression régulière (une chaine) qui correspond aux noms des processus à tuer en priorité." #. type: item -#: guix-git/doc/guix.texi:33333 +#: guix-git/doc/guix.texi:33770 #, no-wrap msgid "@code{avoid-regexp} (default: @code{#f})" msgstr "@code{avoid-regexp} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33336 +#: guix-git/doc/guix.texi:33773 msgid "A regular expression (as a string) to match the names of the processes that should @emph{not} be killed." msgstr "Une expression régulière (une chaine) des noms des processus qui ne doivent @emph{pas} être tués." #. type: item -#: guix-git/doc/guix.texi:33337 +#: guix-git/doc/guix.texi:33774 #, no-wrap msgid "@code{memory-report-interval} (default: @code{0})" msgstr "@code{memory-report-interval} (par défaut : @code{0})" #. type: table -#: guix-git/doc/guix.texi:33340 +#: guix-git/doc/guix.texi:33777 msgid "The interval in seconds at which a memory report is printed. It is disabled by default." msgstr "L'intervalle en seconde d'affichage du rapport mémoire. Il est désactivé par défaut." #. type: item -#: guix-git/doc/guix.texi:33341 +#: guix-git/doc/guix.texi:33778 #, no-wrap msgid "@code{ignore-positive-oom-score-adj?} (default: @code{#f})" msgstr "@code{ignore-positive-oom-score-adj?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33344 +#: guix-git/doc/guix.texi:33781 msgid "A boolean indicating whether the positive adjustments set in @file{/proc/*/oom_score_adj} should be ignored." msgstr "Un booléen indiquant si les ajustements positifs indiqués dans @file{/proc/*/oom_score_adj} doivent être ignorés." #. type: item -#: guix-git/doc/guix.texi:33345 +#: guix-git/doc/guix.texi:33782 #, no-wrap msgid "@code{show-debug-messages?} (default: @code{#f})" msgstr "@code{show-debug-messages?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33348 +#: guix-git/doc/guix.texi:33785 msgid "A boolean indicating whether debug messages should be printed. The logs are saved at @file{/var/log/earlyoom.log}." msgstr "Un booléen indiquant si les messages de débogages doivent être affichés. Les journaux sont sauvegardés dans @file{/var/log/earlyoom.log}." #. type: item -#: guix-git/doc/guix.texi:33349 +#: guix-git/doc/guix.texi:33786 #, no-wrap msgid "@code{send-notification-command} (default: @code{#f})" msgstr "@code{send-notification-command} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33352 +#: guix-git/doc/guix.texi:33789 msgid "This can be used to provide a custom command used for sending notifications." msgstr "On peut utiliser cette option pour fournir une commande personnalisée pour envoyer les notifications." #. type: cindex -#: guix-git/doc/guix.texi:33355 +#: guix-git/doc/guix.texi:33792 #, no-wrap msgid "modprobe" msgstr "modprobe" #. type: cindex -#: guix-git/doc/guix.texi:33356 +#: guix-git/doc/guix.texi:33793 #, no-wrap msgid "kernel module loader" msgstr "chargeur de module du noyau" #. type: subsubheading -#: guix-git/doc/guix.texi:33357 +#: guix-git/doc/guix.texi:33794 #, no-wrap msgid "Kernel Module Loader Service" msgstr "Service de chargement de modules du noyau" #. type: Plain text -#: guix-git/doc/guix.texi:33363 +#: guix-git/doc/guix.texi:33800 msgid "The kernel module loader service allows one to load loadable kernel modules at boot. This is especially useful for modules that don't autoload and need to be manually loaded, as is the case with @code{ddcci}." msgstr "Le service de chargement de modules du noyau vous permet de charger des modules du noyau au démarrage. C'est particulièrement utile pour les modules qui ne sont pas chargés automatiquement et qui doivent être chargés manuellement, comme c'est le cas avec @code{ddcci}." #. type: deffn -#: guix-git/doc/guix.texi:33364 +#: guix-git/doc/guix.texi:33801 #, no-wrap msgid "{Scheme Variable} kernel-module-loader-service-type" msgstr "{Variable Scheme} kernel-module-loader-service-type" #. type: deffn -#: guix-git/doc/guix.texi:33370 +#: guix-git/doc/guix.texi:33807 msgid "The service type for loading loadable kernel modules at boot with @command{modprobe}. Its value must be a list of strings representing module names. For example loading the drivers provided by @code{ddcci-driver-linux}, in debugging mode by passing some module parameters, can be done as follow:" msgstr "Le type de service pour charger des modules du noyau au démarrage avec @command{modprobe}. Sa valeur doit être une liste de chaines de caractères représentant les noms des modules. Par exemple pour charger les pilotes fournis par @code{ddcci-driver-linux}, en mode débogage en passant certains paramètres au module, on peut faire :" #. type: lisp -#: guix-git/doc/guix.texi:33375 +#: guix-git/doc/guix.texi:33812 #, no-wrap msgid "" "(use-modules (gnu) (gnu services))\n" @@ -62495,7 +63392,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:33379 +#: guix-git/doc/guix.texi:33816 #, no-wrap msgid "" "(define ddcci-config\n" @@ -62509,7 +63406,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:33389 +#: guix-git/doc/guix.texi:33826 #, no-wrap msgid "" "(operating-system\n" @@ -62533,411 +63430,411 @@ msgstr "" " (kernel-loadable-modules (list ddcci-driver-linux)))\n" #. type: cindex -#: guix-git/doc/guix.texi:33392 +#: guix-git/doc/guix.texi:33829 #, no-wrap msgid "rasdaemon" msgstr "rasdaemon" #. type: cindex -#: guix-git/doc/guix.texi:33393 +#: guix-git/doc/guix.texi:33830 #, no-wrap msgid "Platform Reliability, Availability and Serviceability daemon" msgstr "Démon de fiabilité de la plateforme, de disponibilité et de serviabilité" #. type: subsubheading -#: guix-git/doc/guix.texi:33394 +#: guix-git/doc/guix.texi:33831 #, no-wrap msgid "Rasdaemon Service" msgstr "Service Rasdaemon" #. type: Plain text -#: guix-git/doc/guix.texi:33399 +#: guix-git/doc/guix.texi:33836 msgid "The Rasdaemon service provides a daemon which monitors platform @acronym{RAS, Reliability@comma{} Availability@comma{} and Serviceability} reports from Linux kernel trace events, logging them to syslogd." msgstr "Le service Rasdaemon fournit un démon qui surveille les rapports @acronym{RAS, Reliability@comma{} Availability@comma{} and Serviceability} de la plateforme dans les événements de trace du noyau Linux, et les envoie à syslogd." #. type: Plain text -#: guix-git/doc/guix.texi:33402 +#: guix-git/doc/guix.texi:33839 msgid "Reliability, Availability and Serviceability is a concept used on servers meant to measure their robustness." msgstr "La fiabilité, la disponibilité et la serviabilité est un concept utilisé sur les serveur conçu pour mesurer leur robustesse." #. type: Plain text -#: guix-git/doc/guix.texi:33405 +#: guix-git/doc/guix.texi:33842 msgid "@strong{Relability} is the probability that a system will produce correct outputs:" msgstr "La @strong{fiabilité} est la probabilité pour qu'un système produise les résultats attendus :" #. type: item -#: guix-git/doc/guix.texi:33407 +#: guix-git/doc/guix.texi:33844 #, no-wrap msgid "Generally measured as Mean Time Between Failures (MTBF), and" msgstr "Généralement mesuré en temps moyen entre échecs (@i{Mean Time Between Failures}, MTBF) et" #. type: item -#: guix-git/doc/guix.texi:33408 +#: guix-git/doc/guix.texi:33845 #, no-wrap msgid "Enhanced by features that help to avoid, detect and repair hardware" msgstr "Amélioré par les fonctionnalités qui aident à éviter, à détecter et à réparer les" #. type: itemize -#: guix-git/doc/guix.texi:33410 +#: guix-git/doc/guix.texi:33847 msgid "faults" msgstr "fautes matérielles" #. type: Plain text -#: guix-git/doc/guix.texi:33414 +#: guix-git/doc/guix.texi:33851 msgid "@strong{Availability} is the probability that a system is operational at a given time:" msgstr "La @strong{disponibilité} est la probabilité pour qu'un système soit opérationnel à un moment donné :" #. type: item -#: guix-git/doc/guix.texi:33416 +#: guix-git/doc/guix.texi:33853 #, no-wrap msgid "Generally measured as a percentage of downtime per a period of time, and" msgstr "Généralement mesuré en pourcentage de temps d'arrêt par période de temps et" #. type: item -#: guix-git/doc/guix.texi:33417 +#: guix-git/doc/guix.texi:33854 #, no-wrap msgid "Often uses mechanisms to detect and correct hardware faults in runtime." msgstr "Utilise souvent des mécanismes de détection et de correction des fautes matérielles à l'exécution." #. type: Plain text -#: guix-git/doc/guix.texi:33422 +#: guix-git/doc/guix.texi:33859 msgid "@strong{Serviceability} is the simplicity and speed with which a system can be repaired or maintained:" msgstr "La @strong{serviabilité} est la simplicité et la rapidité avec laquelle un système peut être réparé ou maintenu :" #. type: item -#: guix-git/doc/guix.texi:33424 +#: guix-git/doc/guix.texi:33861 #, no-wrap msgid "Generally measured on Mean Time Between Repair (MTBR)." msgstr "Généralement mesuré en temps moyen entre réparations (@i{Mean Time Between Repair}, MTBR)." #. type: Plain text -#: guix-git/doc/guix.texi:33429 +#: guix-git/doc/guix.texi:33866 msgid "Among the monitoring measures, the most usual ones include:" msgstr "Entre autres mesures de surveillance, les plus courantes sont :" #. type: item -#: guix-git/doc/guix.texi:33431 +#: guix-git/doc/guix.texi:33868 #, no-wrap msgid "CPU – detect errors at instruction execution and at L1/L2/L3 caches;" msgstr "Le CPU — détecte les erreurs d'exécution d'instructions et au niveau des caches L1/L2/L3 ;" #. type: item -#: guix-git/doc/guix.texi:33432 +#: guix-git/doc/guix.texi:33869 #, no-wrap msgid "Memory – add error correction logic (ECC) to detect and correct errors;" msgstr "La mémoire — ajoute des codes correcteurs d'erreur (@i{error correction codes}, ECC) et corrige les erreurs ;" #. type: item -#: guix-git/doc/guix.texi:33433 +#: guix-git/doc/guix.texi:33870 #, no-wrap msgid "I/O – add CRC checksums for transferred data;" msgstr "Les entrées-sorties — ajoute des sommes de contrôles CRC pour les données transférées ;" #. type: item -#: guix-git/doc/guix.texi:33434 +#: guix-git/doc/guix.texi:33871 #, no-wrap msgid "Storage – RAID, journal file systems, checksums, Self-Monitoring," msgstr "Le stockage — RAID, systèmes de fichiers journalisés, sommes de contrôle, SMART" #. type: itemize -#: guix-git/doc/guix.texi:33436 +#: guix-git/doc/guix.texi:33873 msgid "Analysis and Reporting Technology (SMART)." msgstr "(@i{Self-Monitoring, Analysis and Reporting Technology})." #. type: Plain text -#: guix-git/doc/guix.texi:33442 +#: guix-git/doc/guix.texi:33879 msgid "By monitoring the number of occurrences of error detections, it is possible to identify if the probability of hardware errors is increasing, and, on such case, do a preventive maintenance to replace a degraded component while those errors are correctable." msgstr "En surveillant le nombre de détection d'erreurs, il est possible d'identifier si la probabilité d'erreurs matérielles augmente, et dans ce cas, d'effectuer une maintenance préventive pour remplacecr un composant dégradé tant que les erreurs peuvent être corrigées." #. type: Plain text -#: guix-git/doc/guix.texi:33446 +#: guix-git/doc/guix.texi:33883 msgid "For detailed information about the types of error events gathered and how to make sense of them, see the kernel administrator's guide at @url{https://www.kernel.org/doc/html/latest/admin-guide/ras.html}." msgstr "Pour des informations détaillées sur les types d'événements d'erreur récupérés et comment les comprendre, voir le guide de l'administrateur du noyau sur @url{https://www.kernel.org/doc/html/latest/admin-guide/ras.html}." #. type: defvr -#: guix-git/doc/guix.texi:33447 +#: guix-git/doc/guix.texi:33884 #, no-wrap msgid "{Scheme Variable} rasdaemon-service-type" msgstr "{Variable Scheme} rasdaemon-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33450 +#: guix-git/doc/guix.texi:33887 msgid "Service type for the @command{rasdaemon} service. It accepts a @code{rasdaemon-configuration} object. Instantiating like" msgstr "Le type de service pour le service @command{rasdaemon}. Il accepte un objet @code{rasdaemon-configuration}. Instantiez-le avec" #. type: lisp -#: guix-git/doc/guix.texi:33453 +#: guix-git/doc/guix.texi:33890 #, no-wrap msgid "(service rasdaemon-service-type)\n" msgstr "(service rasdaemon-service-type)\n" #. type: defvr -#: guix-git/doc/guix.texi:33457 +#: guix-git/doc/guix.texi:33894 msgid "will load with a default configuration, which monitors all events and logs to syslogd." msgstr "chargera une configuration par défaut, qui surveille tous les événements et les enregistre avec syslogd." #. type: deftp -#: guix-git/doc/guix.texi:33459 +#: guix-git/doc/guix.texi:33896 #, no-wrap msgid "{Data Type} rasdaemon-configuration" msgstr "{Type de données} rasdaemon-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33461 +#: guix-git/doc/guix.texi:33898 msgid "The data type representing the configuration of @command{rasdaemon}." msgstr "Type de données représentant la configuration de @command{rasdaemon}." #. type: item -#: guix-git/doc/guix.texi:33463 +#: guix-git/doc/guix.texi:33900 #, no-wrap msgid "@code{record?} (default: @code{#f})" msgstr "@code{record?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33468 +#: guix-git/doc/guix.texi:33905 msgid "A boolean indicating whether to record the events in an SQLite database. This provides a more structured access to the information contained in the log file. The database location is hard-coded to @file{/var/lib/rasdaemon/ras-mc_event.db}." msgstr "Un booléen indiquant s'il faut enregistrer les événements dans une base de données SQLite. Cela donne un accès plus structuré aux informations contenues dans le fichier journal. L'emplacement de la base de données est codée en dur : @file{/var/lib/rasdaemon/ras-mc_event.db}." #. type: cindex -#: guix-git/doc/guix.texi:33472 +#: guix-git/doc/guix.texi:33909 #, no-wrap msgid "zram" msgstr "zram" #. type: cindex -#: guix-git/doc/guix.texi:33473 +#: guix-git/doc/guix.texi:33910 #, no-wrap msgid "compressed swap" msgstr "espace d'échange compressé" #. type: cindex -#: guix-git/doc/guix.texi:33474 +#: guix-git/doc/guix.texi:33911 #, no-wrap msgid "Compressed RAM-based block devices" msgstr "Périphériques blocs compressés basés sur la RAM" #. type: subsubheading -#: guix-git/doc/guix.texi:33475 +#: guix-git/doc/guix.texi:33912 #, no-wrap msgid "Zram Device Service" msgstr "Service Zram" #. type: Plain text -#: guix-git/doc/guix.texi:33481 +#: guix-git/doc/guix.texi:33918 msgid "The Zram device service provides a compressed swap device in system memory. The Linux Kernel documentation has more information about @uref{https://www.kernel.org/doc/html/latest/admin-guide/blockdev/zram.html,zram} devices." msgstr "Le service de périphérique Zram fournit un périphérique de swap compressé en mémoire système. La documentation du noyau Linux a plus d'information à propos de ces périphériques @uref{https://www.kernel.org/doc/html/latest/admin-guide/blockdev/zram.html,zram}." #. type: deffn -#: guix-git/doc/guix.texi:33482 +#: guix-git/doc/guix.texi:33919 #, no-wrap msgid "{Scheme Variable} zram-device-service-type" msgstr "{Variable Scheme} zram-device-service-type" #. type: deffn -#: guix-git/doc/guix.texi:33486 +#: guix-git/doc/guix.texi:33923 msgid "This service creates the zram block device, formats it as swap and enables it as a swap device. The service's value is a @code{zram-device-configuration} record." msgstr "Ce service crée un périphérique de bloc zram, le formate en swap et active l'espace d'échange. La valeur du service est un enregistrement @code{zram-device-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:33487 +#: guix-git/doc/guix.texi:33924 #, no-wrap msgid "{Data Type} zram-device-configuration" msgstr "{Type de données} zram-device-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33490 +#: guix-git/doc/guix.texi:33927 msgid "This is the data type representing the configuration for the zram-device service." msgstr "C'est le type de données représentant la configuration du service zram-device." #. type: item -#: guix-git/doc/guix.texi:33492 +#: guix-git/doc/guix.texi:33929 #, no-wrap msgid "@code{size} (default @code{\"1G\"})" msgstr "@code{size} (par défaut : @code{\"1G\"})" #. type: table -#: guix-git/doc/guix.texi:33496 +#: guix-git/doc/guix.texi:33933 msgid "This is the amount of space you wish to provide for the zram device. It accepts a string and can be a number of bytes or use a suffix, eg.: @code{\"512M\"} or @code{1024000}." msgstr "C'est l'espace que vous voulez fournir à votre périphérique zram. Il accepte une chaine et peut être un nombre d'octets ou utiliser un suffixe, p.@: ex.@: : @code{\"512M\"} ou @code{\"1024000\"}." #. type: item -#: guix-git/doc/guix.texi:33496 +#: guix-git/doc/guix.texi:33933 #, no-wrap msgid "@code{compression-algorithm} (default @code{'lzo})" msgstr "@code{compression-algorithm} (par défaut : @code{'lzo})" #. type: table -#: guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:33937 msgid "This is the compression algorithm you wish to use. It is difficult to list all the possible compression options, but common ones supported by Guix's Linux Libre Kernel include @code{'lzo}, @code{'lz4} and @code{'zstd}." msgstr "C'est l'algorithme de compression à utiliser. Il est difficile de lister toutes les possibilités, mais les options habituelles prises en charge par le noyau Linux Libre de Guix sont @code{'lzo}, @code{'lz4} et @code{'zstd}." #. type: item -#: guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:33937 #, no-wrap msgid "@code{memory-limit} (default @code{0})" msgstr "@code{memory-limit} (par défaut : @code{0})" #. type: table -#: guix-git/doc/guix.texi:33507 +#: guix-git/doc/guix.texi:33944 msgid "This is the maximum amount of memory which the zram device can use. Setting it to '0' disables the limit. While it is generally expected that compression will be 2:1, it is possible that uncompressable data can be written to swap and this is a method to limit how much memory can be used. It accepts a string and can be a number of bytes or use a suffix, eg.: @code{\"2G\"}." msgstr "C'est la quantité de mémoire maximal que le périphérique zram peut utiliser. le mettre à « 0 » désactive la limite. Bien qu'il soit généralement accepté que la compression aura un ratio de 2 pour 1, il est possible que des données non-comprimables soient écrites en espace d'échange et c'est une méthode pour limiter la quantité de mémoire qui peut être utilisée. Le paramètre accepte une chaine qui peut être un nombre d'octets ou utiliser un suffixe, p.@: ex.@: @code{\"2G\"}." #. type: item -#: guix-git/doc/guix.texi:33507 +#: guix-git/doc/guix.texi:33944 #, no-wrap msgid "@code{priority} (default @code{-1})" msgstr "@code{priority} (par défaut : @code{-1})" #. type: table -#: guix-git/doc/guix.texi:33512 +#: guix-git/doc/guix.texi:33949 msgid "This is the priority of the swap device created from the zram device. @code{swapon} accepts values between -1 and 32767, with higher values indicating higher priority. Higher priority swap will generally be used first." msgstr "C'est la priorité de l'espace d'échange créé à partir du périphérique zram. @code{swapon} accepte les valeurs entre -1 et 32767, avec les valeurs plus grandes indiquant une plus grande priorité. Les espaces d'échanges avec une plus grande priorité seront utilisés avant celui-ci." #. type: defvr -#: guix-git/doc/guix.texi:33520 +#: guix-git/doc/guix.texi:33957 #, no-wrap msgid "{Scheme Variable} hurd-console-service-type" msgstr "{Variable Scheme} hurd-console-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33522 +#: guix-git/doc/guix.texi:33959 msgid "This service starts the fancy @code{VGA} console client on the Hurd." msgstr "Ce service démarre le client @code{VGA} sophistiqué en console sur le Hurd." #. type: defvr -#: guix-git/doc/guix.texi:33524 +#: guix-git/doc/guix.texi:33961 msgid "The service's value is a @code{hurd-console-configuration} record." msgstr "La valeur du service est un enregistrement @code{hurd-console-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:33526 +#: guix-git/doc/guix.texi:33963 #, no-wrap msgid "{Data Type} hurd-console-configuration" msgstr "{Type de données} hurd-console-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33529 +#: guix-git/doc/guix.texi:33966 msgid "This is the data type representing the configuration for the hurd-console-service." msgstr "C'est le type de données représentant la configuration de hurd-console-service." #. type: item -#: guix-git/doc/guix.texi:33531 guix-git/doc/guix.texi:33547 +#: guix-git/doc/guix.texi:33968 guix-git/doc/guix.texi:33984 #, no-wrap msgid "@code{hurd} (default: @var{hurd})" msgstr "@code{hurd} (par défaut : @var{hurd})" #. type: table -#: guix-git/doc/guix.texi:33533 guix-git/doc/guix.texi:33549 +#: guix-git/doc/guix.texi:33970 guix-git/doc/guix.texi:33986 msgid "The Hurd package to use." msgstr "Le paquet Hurd à utiliser." #. type: defvr -#: guix-git/doc/guix.texi:33536 +#: guix-git/doc/guix.texi:33973 #, no-wrap msgid "{Scheme Variable} hurd-getty-service-type" msgstr "{Variable Scheme} hurd-getty-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33538 +#: guix-git/doc/guix.texi:33975 msgid "This service starts a tty using the Hurd @code{getty} program." msgstr "Ce service démarre un tty avec le programme @code{getty}." #. type: defvr -#: guix-git/doc/guix.texi:33540 +#: guix-git/doc/guix.texi:33977 msgid "The service's value is a @code{hurd-getty-configuration} record." msgstr "La valeur du service est un enregistrement @code{hurd-getty-configuration}." #. type: deftp -#: guix-git/doc/guix.texi:33542 +#: guix-git/doc/guix.texi:33979 #, no-wrap msgid "{Data Type} hurd-getty-configuration" msgstr "{Type de données} hurd-getty-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33545 +#: guix-git/doc/guix.texi:33982 msgid "This is the data type representing the configuration for the hurd-getty-service." msgstr "Ce type de données représente la configuration de hurd-getty-service." #. type: table -#: guix-git/doc/guix.texi:33552 +#: guix-git/doc/guix.texi:33989 msgid "The name of the console this Getty runs on---e.g., @code{\"tty1\"}." msgstr "Le nom de la console sur laquelle tourne ce Getty, p.@: ex.@: @code{\"tty1\"}." #. type: item -#: guix-git/doc/guix.texi:33553 +#: guix-git/doc/guix.texi:33990 #, no-wrap msgid "@code{baud-rate} (default: @code{38400})" msgstr "@code{baud-rate} (par défaut : @code{38400})" #. type: table -#: guix-git/doc/guix.texi:33555 +#: guix-git/doc/guix.texi:33992 msgid "An integer specifying the baud rate of the tty." msgstr "Un entier spécifiant le taux de Baud de ce tty." #. type: cindex -#: guix-git/doc/guix.texi:33562 +#: guix-git/doc/guix.texi:33999 #, no-wrap msgid "fingerprint" msgstr "empreinte digitale" #. type: subsubheading -#: guix-git/doc/guix.texi:33563 +#: guix-git/doc/guix.texi:34000 #, no-wrap msgid "Fingerprint Service" msgstr "Service d'empreintes digitales" #. type: Plain text -#: guix-git/doc/guix.texi:33567 +#: guix-git/doc/guix.texi:34004 msgid "The @code{(gnu services authentication)} module provides a DBus service to read and identify fingerprints via a fingerprint sensor." msgstr "Le module @code{(gnu services authentication)} fournit un service DBus pour lire et identifier les empreintes digitales via un lecteur d'empreinte." #. type: defvr -#: guix-git/doc/guix.texi:33568 +#: guix-git/doc/guix.texi:34005 #, no-wrap msgid "{Scheme Variable} fprintd-service-type" msgstr "{Variable Scheme} fprintd-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33571 +#: guix-git/doc/guix.texi:34008 msgid "The service type for @command{fprintd}, which provides the fingerprint reading capability." msgstr "Le type de service pour @command{fprintd}, qui fournit des capacités de lecture d'empreinte." #. type: lisp -#: guix-git/doc/guix.texi:33574 +#: guix-git/doc/guix.texi:34011 #, no-wrap msgid "(service fprintd-service-type)\n" msgstr "(service fprintd-service-type)\n" #. type: cindex -#: guix-git/doc/guix.texi:33577 +#: guix-git/doc/guix.texi:34014 #, no-wrap msgid "sysctl" msgstr "sysctl" #. type: subsubheading -#: guix-git/doc/guix.texi:33578 +#: guix-git/doc/guix.texi:34015 #, no-wrap msgid "System Control Service" msgstr "Service de contrôle du système" #. type: Plain text -#: guix-git/doc/guix.texi:33582 +#: guix-git/doc/guix.texi:34019 msgid "The @code{(gnu services sysctl)} provides a service to configure kernel parameters at boot." msgstr "Le module @code{(gnu services sysctl)} fournit un service pour configurer les paramètres du noyau au démarrage." #. type: defvr -#: guix-git/doc/guix.texi:33583 +#: guix-git/doc/guix.texi:34020 #, no-wrap msgid "{Scheme Variable} sysctl-service-type" msgstr "{Variable Scheme} sysctl-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33587 +#: guix-git/doc/guix.texi:34024 msgid "The service type for @command{sysctl}, which modifies kernel parameters under @file{/proc/sys/}. To enable IPv4 forwarding, it can be instantiated as:" msgstr "Le type de service pour @command{sysctl}, qui modifie les paramètres du noyau dans @file{/proc/sys/}. Pour activer le transfert d'IPv4, vous pouvez l'instancier ainsi :" #. type: lisp -#: guix-git/doc/guix.texi:33592 +#: guix-git/doc/guix.texi:34029 #, no-wrap msgid "" "(service sysctl-service-type\n" @@ -62949,12 +63846,12 @@ msgstr "" " (settings '((\"net.ipv4.ip_forward\" . \"1\")))))\n" #. type: defvr -#: guix-git/doc/guix.texi:33599 +#: guix-git/doc/guix.texi:34036 msgid "Since @code{sysctl-service-type} is used in the default lists of services, @code{%base-services} and @code{%desktop-services}, you can use @code{modify-services} to change its configuration and add the kernel parameters that you want (@pxref{Service Reference, @code{modify-services}})." msgstr "Comme le service @code{sysctl-service-type} fait partie des services par défaut, @code{%base-services} et @code{%desktop-services}, vous pouvez utiliser @code{modify-services} pour changer sa configuration et ajouter les paramètres du noyau que vous voulez (@pxref{Service Reference, @code{modify-services}})." #. type: lisp -#: guix-git/doc/guix.texi:33606 +#: guix-git/doc/guix.texi:34043 #, no-wrap msgid "" "(modify-services %base-services\n" @@ -62970,141 +63867,141 @@ msgstr "" " %default-sysctl-settings)))))\n" #. type: deftp -#: guix-git/doc/guix.texi:33610 +#: guix-git/doc/guix.texi:34047 #, no-wrap msgid "{Data Type} sysctl-configuration" msgstr "{Type de données} sysctl-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33612 +#: guix-git/doc/guix.texi:34049 msgid "The data type representing the configuration of @command{sysctl}." msgstr "Le type de données représentant la configuration de @command{sysctl}." #. type: item -#: guix-git/doc/guix.texi:33614 +#: guix-git/doc/guix.texi:34051 #, no-wrap msgid "@code{sysctl} (default: @code{(file-append procps \"/sbin/sysctl\"})" msgstr "@code{sysctl} (par défaut : @code{(file-append procps \"/sbin/sysctl\"})" #. type: table -#: guix-git/doc/guix.texi:33616 +#: guix-git/doc/guix.texi:34053 msgid "The @command{sysctl} executable to use." msgstr "L'exécutable @command{sysctl} à utiliser." #. type: item -#: guix-git/doc/guix.texi:33617 +#: guix-git/doc/guix.texi:34054 #, no-wrap msgid "@code{settings} (default: @code{%default-sysctl-settings})" msgstr "@code{settings} (par défaut : @code{%default-sysctl-settings})" #. type: table -#: guix-git/doc/guix.texi:33619 +#: guix-git/doc/guix.texi:34056 msgid "An association list specifies kernel parameters and their values." msgstr "Une liste d'association spécifiant les paramètres du noyau et leur valeur." #. type: defvr -#: guix-git/doc/guix.texi:33622 +#: guix-git/doc/guix.texi:34059 #, no-wrap msgid "{Scheme Variable} %default-sysctl-settings" msgstr "{Variable Scheme} %default-sysctl-settings" #. type: defvr -#: guix-git/doc/guix.texi:33625 +#: guix-git/doc/guix.texi:34062 msgid "An association list specifying the default @command{sysctl} parameters on Guix System." msgstr "Une liste d'association spécifiant les paramètres @command{sysctl} par défaut sur le système Guix." #. type: cindex -#: guix-git/doc/guix.texi:33627 +#: guix-git/doc/guix.texi:34064 #, no-wrap msgid "pcscd" msgstr "pcscd" #. type: subsubheading -#: guix-git/doc/guix.texi:33628 +#: guix-git/doc/guix.texi:34065 #, no-wrap msgid "PC/SC Smart Card Daemon Service" msgstr "Service du démon PC/SC Smart Card" #. type: Plain text -#: guix-git/doc/guix.texi:33635 +#: guix-git/doc/guix.texi:34072 msgid "The @code{(gnu services security-token)} module provides the following service to run @command{pcscd}, the PC/SC Smart Card Daemon. @command{pcscd} is the daemon program for pcsc-lite and the MuscleCard framework. It is a resource manager that coordinates communications with smart card readers, smart cards and cryptographic tokens that are connected to the system." msgstr "Le module @code{(gnu services security-token)} fournit le service suivant qui lance @command{pcscd}, le démon PC/SC Smart Card. @command{pcscd} est le démon pour pcsc-lite et MuscleCard. C'est un gestionnaire de ressource qui coordonne les communications avec les lecteurs de smart cards, les smart cards et les jetons cryptographiques connectés au système." #. type: defvr -#: guix-git/doc/guix.texi:33636 +#: guix-git/doc/guix.texi:34073 #, no-wrap msgid "{Scheme Variable} pcscd-service-type" msgstr "{Variable Scheme} pcscd-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33640 +#: guix-git/doc/guix.texi:34077 msgid "Service type for the @command{pcscd} service. Its value must be a @code{pcscd-configuration} object. To run pcscd in the default configuration, instantiate it as:" msgstr "Le type de service pour le service @command{pcscd}. Sa valeur doit être un objet @code{pcscd-configuration}. Pour lancer pcscd dans sa configuration par défaut, instantiez-le avec :" #. type: lisp -#: guix-git/doc/guix.texi:33643 +#: guix-git/doc/guix.texi:34080 #, no-wrap msgid "(service pcscd-service-type)\n" msgstr "(service pcscd-service-type)\n" #. type: deftp -#: guix-git/doc/guix.texi:33646 +#: guix-git/doc/guix.texi:34083 #, no-wrap msgid "{Data Type} pcscd-configuration" msgstr "{Type de données} pcscd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33648 +#: guix-git/doc/guix.texi:34085 msgid "The data type representing the configuration of @command{pcscd}." msgstr "Type de données représentant la configuration de @command{pcscd}." #. type: item -#: guix-git/doc/guix.texi:33650 +#: guix-git/doc/guix.texi:34087 #, no-wrap msgid "@code{pcsc-lite} (default: @code{pcsc-lite})" msgstr "@code{pcsc-lite} (par défaut : @code{pcsc-lite})" #. type: table -#: guix-git/doc/guix.texi:33652 +#: guix-git/doc/guix.texi:34089 msgid "The pcsc-lite package that provides pcscd." msgstr "Le paquet pcsc-lite qui fournit pcscd." #. type: item -#: guix-git/doc/guix.texi:33652 +#: guix-git/doc/guix.texi:34089 #, no-wrap msgid "@code{usb-drivers} (default: @code{(list ccid)})" msgstr "@code{usb-drivers} (par défaut : @code{(list ccid)})" #. type: table -#: guix-git/doc/guix.texi:33655 +#: guix-git/doc/guix.texi:34092 msgid "List of packages that provide USB drivers to pcscd. Drivers are expected to be under @file{pcsc/drivers} in the store directory of the package." msgstr "Liste des paquets qui fournissent des pilotes USB à pcscd. Les pilotes doivent être dans @file{pcsc/drivers} dans le répertoire du dépôt du paquet." #. type: cindex -#: guix-git/doc/guix.texi:33658 +#: guix-git/doc/guix.texi:34095 #, no-wrap msgid "lirc" msgstr "lirc" #. type: subsubheading -#: guix-git/doc/guix.texi:33659 +#: guix-git/doc/guix.texi:34096 #, no-wrap msgid "Lirc Service" msgstr "Service Lirc" #. type: Plain text -#: guix-git/doc/guix.texi:33662 +#: guix-git/doc/guix.texi:34099 msgid "The @code{(gnu services lirc)} module provides the following service." msgstr "Le module @code{(gnu services lirc)} fournit le service suivant." #. type: deffn -#: guix-git/doc/guix.texi:33663 +#: guix-git/doc/guix.texi:34100 #, no-wrap msgid "{Scheme Procedure} lirc-service [#:lirc lirc] @" msgstr "{Procédure Scheme} lirc-service [#:lirc lirc] @" #. type: deffn -#: guix-git/doc/guix.texi:33668 +#: guix-git/doc/guix.texi:34105 msgid "[#:device #f] [#:driver #f] [#:config-file #f] @ [#:extra-options '()] Return a service that runs @url{http://www.lirc.org,LIRC}, a daemon that decodes infrared signals from remote controls." msgstr "" "[#:device #f] [#:driver #f] [#:config-file #f] @\n" @@ -63112,324 +64009,324 @@ msgstr "" "Renvoie un service qui lance @url{http://www.lirc.org,LIRC}, un démon qui décode les signaux infrarouges des télécommandes." #. type: deffn -#: guix-git/doc/guix.texi:33672 +#: guix-git/doc/guix.texi:34109 msgid "Optionally, @var{device}, @var{driver} and @var{config-file} (configuration file name) may be specified. See @command{lircd} manual for details." msgstr "Éventuellement, @var{device}, @var{driver} et @var{config-file} (le nom du fichier de configuration) peuvent être spécifiés. Voir le manuel de @command{lircd} pour plus de détails." #. type: deffn -#: guix-git/doc/guix.texi:33675 +#: guix-git/doc/guix.texi:34112 msgid "Finally, @var{extra-options} is a list of additional command-line options passed to @command{lircd}." msgstr "Enfin, @var{extra-options} est une liste d'options de la ligne de commande supplémentaires à passer à @command{lircd}." #. type: cindex -#: guix-git/doc/guix.texi:33677 +#: guix-git/doc/guix.texi:34114 #, no-wrap msgid "spice" msgstr "spice" #. type: subsubheading -#: guix-git/doc/guix.texi:33678 +#: guix-git/doc/guix.texi:34115 #, no-wrap msgid "Spice Service" msgstr "Service Spice" #. type: Plain text -#: guix-git/doc/guix.texi:33681 +#: guix-git/doc/guix.texi:34118 msgid "The @code{(gnu services spice)} module provides the following service." msgstr "Le module @code{(gnu services spice)} fournit le service suivant." #. type: deffn -#: guix-git/doc/guix.texi:33682 +#: guix-git/doc/guix.texi:34119 #, no-wrap msgid "{Scheme Procedure} spice-vdagent-service [#:spice-vdagent]" msgstr "{Procédure Scheme} spice-vdagent-service [#:spice-vdagent]" #. type: deffn -#: guix-git/doc/guix.texi:33686 +#: guix-git/doc/guix.texi:34123 msgid "Returns a service that runs @url{https://www.spice-space.org,VDAGENT}, a daemon that enables sharing the clipboard with a vm and setting the guest display resolution when the graphical console window resizes." msgstr "Renvoie un service qui lance @url{https://www.spice-space.org,VDAGENT}, un démon qui permet le partage du presse-papier avec une vm et de configurer la résolution d'affichage du client lorsque la fenêtre de la console graphique est redimensionnée." #. type: cindex -#: guix-git/doc/guix.texi:33688 +#: guix-git/doc/guix.texi:34125 #, no-wrap msgid "inputattach" msgstr "inputattach" #. type: subsubheading -#: guix-git/doc/guix.texi:33689 +#: guix-git/doc/guix.texi:34126 #, no-wrap msgid "inputattach Service" msgstr "service inputattach" #. type: cindex -#: guix-git/doc/guix.texi:33691 +#: guix-git/doc/guix.texi:34128 #, no-wrap msgid "tablet input, for Xorg" msgstr "entrée tablette, pour Xorg" #. type: cindex -#: guix-git/doc/guix.texi:33692 +#: guix-git/doc/guix.texi:34129 #, no-wrap msgid "touchscreen input, for Xorg" msgstr "écran tactile, pour Xorg" #. type: Plain text -#: guix-git/doc/guix.texi:33696 +#: guix-git/doc/guix.texi:34133 msgid "The @uref{https://linuxwacom.github.io/, inputattach} service allows you to use input devices such as Wacom tablets, touchscreens, or joysticks with the Xorg display server." msgstr "Le service @uref{https://linuxwacom.github.io/, inputattach} vous permet d'utiliser des périphériques d'entrée comme les tablettes Wacom, les écrans tactiles ou les joysticks avec le serveur d'affichage Xorg." #. type: deffn -#: guix-git/doc/guix.texi:33697 +#: guix-git/doc/guix.texi:34134 #, no-wrap msgid "{Scheme Variable} inputattach-service-type" msgstr "{Variable Scheme} inputattach-service-type" #. type: deffn -#: guix-git/doc/guix.texi:33700 +#: guix-git/doc/guix.texi:34137 msgid "Type of a service that runs @command{inputattach} on a device and dispatches events from it." msgstr "Type d'un service qui lance @command{inputattach} sur un appareil et envie les événements qu'il reçoit." #. type: deftp -#: guix-git/doc/guix.texi:33702 +#: guix-git/doc/guix.texi:34139 #, no-wrap msgid "{Data Type} inputattach-configuration" msgstr "{Type de données} inputattach-configuration" #. type: item -#: guix-git/doc/guix.texi:33704 +#: guix-git/doc/guix.texi:34141 #, no-wrap msgid "@code{device-type} (default: @code{\"wacom\"})" msgstr "@code{device-type} (par défaut : @code{\"wacom\"})" #. type: table -#: guix-git/doc/guix.texi:33707 +#: guix-git/doc/guix.texi:34144 msgid "The type of device to connect to. Run @command{inputattach --help}, from the @code{inputattach} package, to see the list of supported device types." msgstr "Le type du périphérique à gérer. Lancez @command{inputattach --help}, du paquet @code{inputattach}, pour voir la liste des types de périphériques supportés." #. type: item -#: guix-git/doc/guix.texi:33708 +#: guix-git/doc/guix.texi:34145 #, no-wrap msgid "@code{device} (default: @code{\"/dev/ttyS0\"})" msgstr "@code{device} (par défaut : @code{\"/dev/ttyS0\"})" #. type: table -#: guix-git/doc/guix.texi:33710 +#: guix-git/doc/guix.texi:34147 msgid "The device file to connect to the device." msgstr "Le fichier de périphérique pour s'y connecter." #. type: table -#: guix-git/doc/guix.texi:33714 +#: guix-git/doc/guix.texi:34151 msgid "Baud rate to use for the serial connection. Should be a number or @code{#f}." msgstr "Taux de Baud à utiliser pour la connexion série. Cela doit être un nombre ou @code{#f}." #. type: item -#: guix-git/doc/guix.texi:33715 +#: guix-git/doc/guix.texi:34152 #, no-wrap msgid "@code{log-file} (default: @code{#f})" msgstr "@code{log-file} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33717 +#: guix-git/doc/guix.texi:34154 msgid "If true, this must be the name of a file to log messages to." msgstr "Si la valeur est vraie, cela doit être le nom d'un fichier où enregistrer les messages." #. type: subsubheading -#: guix-git/doc/guix.texi:33720 +#: guix-git/doc/guix.texi:34157 #, no-wrap msgid "Dictionary Service" msgstr "Service de dictionnaire" #. type: cindex -#: guix-git/doc/guix.texi:33721 +#: guix-git/doc/guix.texi:34158 #, no-wrap msgid "dictionary" msgstr "dictionnaire" #. type: Plain text -#: guix-git/doc/guix.texi:33723 +#: guix-git/doc/guix.texi:34160 msgid "The @code{(gnu services dict)} module provides the following service:" msgstr "Le module @code{(gnu services dict)} fournit le service suivant :" #. type: defvr -#: guix-git/doc/guix.texi:33724 +#: guix-git/doc/guix.texi:34161 #, no-wrap msgid "{Scheme Variable} dicod-service-type" msgstr "{Variable Scheme} dicod-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33727 +#: guix-git/doc/guix.texi:34164 msgid "This is the type of the service that runs the @command{dicod} daemon, an implementation of DICT server (@pxref{Dicod,,, dico, GNU Dico Manual})." msgstr "C'est le type de service qui lance le démon @command{dicod}, une implémentation du serveur DICT (@pxref{Dicod,,, dico, GNU Dico Manual})." #. type: deffn -#: guix-git/doc/guix.texi:33729 +#: guix-git/doc/guix.texi:34166 #, no-wrap msgid "{Scheme Procedure} dicod-service [#:config (dicod-configuration)]" msgstr "{Procédure Scheme} dicod-service [#:config (dicod-configuration)]" #. type: deffn -#: guix-git/doc/guix.texi:33732 +#: guix-git/doc/guix.texi:34169 msgid "Return a service that runs the @command{dicod} daemon, an implementation of DICT server (@pxref{Dicod,,, dico, GNU Dico Manual})." msgstr "Renvoie un service qui lance le démon @command{dicod}, une implémentation du serveur DICT (@pxref{Dicod,,, dico, GNU Dico Manual})." #. type: deffn -#: guix-git/doc/guix.texi:33736 +#: guix-git/doc/guix.texi:34173 msgid "The optional @var{config} argument specifies the configuration for @command{dicod}, which should be a @code{} object, by default it serves the GNU Collaborative International Dictionary of English." msgstr "L'argument @var{config} facultatif spécifie la configuration pour @command{dicod}, qui devrait être un objet @code{}, par défaut il sert le dictionnaire international collaboratif de GNU pour l'anglais." #. type: deffn -#: guix-git/doc/guix.texi:33740 +#: guix-git/doc/guix.texi:34177 msgid "You can add @command{open localhost} to your @file{~/.dico} file to make @code{localhost} the default server for @command{dico} client (@pxref{Initialization File,,, dico, GNU Dico Manual})." msgstr "Vous pouvez ajouter @command{open localhost} à votre fichier @file{~/.dico} pour faire de @code{localhost} le serveur par défaut du client @command{dico} (@pxref{Initialization File,,, dico, GNU Dico Manual})." #. type: deftp -#: guix-git/doc/guix.texi:33742 +#: guix-git/doc/guix.texi:34179 #, no-wrap msgid "{Data Type} dicod-configuration" msgstr "{Type de données} dicod-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33744 +#: guix-git/doc/guix.texi:34181 msgid "Data type representing the configuration of dicod." msgstr "Type de données représentant la configuration de dicod." #. type: item -#: guix-git/doc/guix.texi:33746 +#: guix-git/doc/guix.texi:34183 #, no-wrap msgid "@code{dico} (default: @var{dico})" msgstr "@code{dico} (par défaut : @var{dico})" #. type: table -#: guix-git/doc/guix.texi:33748 +#: guix-git/doc/guix.texi:34185 msgid "Package object of the GNU Dico dictionary server." msgstr "Objet de paquet du serveur de dictionnaire GNU Dico." #. type: item -#: guix-git/doc/guix.texi:33749 +#: guix-git/doc/guix.texi:34186 #, no-wrap msgid "@code{interfaces} (default: @var{'(\"localhost\")})" msgstr "@code{interfaces} (par défaut : @var{'(\"localhost\")})" #. type: table -#: guix-git/doc/guix.texi:33753 +#: guix-git/doc/guix.texi:34190 msgid "This is the list of IP addresses and ports and possibly socket file names to listen to (@pxref{Server Settings, @code{listen} directive,, dico, GNU Dico Manual})." msgstr "C'est la liste des adresses IP et des ports et éventuellement des noms de fichiers de socket sur lesquels écouter (@pxref{Server Settings, @code{listen} directive,, dico, GNU Dico Manual})." #. type: item -#: guix-git/doc/guix.texi:33754 +#: guix-git/doc/guix.texi:34191 #, no-wrap msgid "@code{handlers} (default: @var{'()})" msgstr "@code{handlers} (par défaut : @var{'()})" #. type: table -#: guix-git/doc/guix.texi:33756 +#: guix-git/doc/guix.texi:34193 msgid "List of @code{} objects denoting handlers (module instances)." msgstr "Liste des objets @code{} qui définissent des gestionnaires (des instances de modules)." #. type: item -#: guix-git/doc/guix.texi:33757 +#: guix-git/doc/guix.texi:34194 #, no-wrap msgid "@code{databases} (default: @var{(list %dicod-database:gcide)})" msgstr "@code{databases} (par défaut : @var{(list %dicod-database:gcide)})" #. type: table -#: guix-git/doc/guix.texi:33759 +#: guix-git/doc/guix.texi:34196 msgid "List of @code{} objects denoting dictionaries to be served." msgstr "Liste d'objets @code{} qui définissent des dictionnaires à servir." #. type: deftp -#: guix-git/doc/guix.texi:33762 +#: guix-git/doc/guix.texi:34199 #, no-wrap msgid "{Data Type} dicod-handler" msgstr "{Type de données} dicod-handler" #. type: deftp -#: guix-git/doc/guix.texi:33764 +#: guix-git/doc/guix.texi:34201 msgid "Data type representing a dictionary handler (module instance)." msgstr "Type de données représentant un gestionnaire de dictionnaire (instance de module)." #. type: table -#: guix-git/doc/guix.texi:33768 +#: guix-git/doc/guix.texi:34205 msgid "Name of the handler (module instance)." msgstr "Nom du gestionnaire (instance de module)." #. type: item -#: guix-git/doc/guix.texi:33769 +#: guix-git/doc/guix.texi:34206 #, no-wrap msgid "@code{module} (default: @var{#f})" msgstr "@code{module} (par défaut : @var{#f})" #. type: table -#: guix-git/doc/guix.texi:33773 +#: guix-git/doc/guix.texi:34210 msgid "Name of the dicod module of the handler (instance). If it is @code{#f}, the module has the same name as the handler. (@pxref{Modules,,, dico, GNU Dico Manual})." msgstr "Nom du module dicod du gestionnaire (instance). Si la valeur est @code{#f}, le module a le même nom que le gestionnaire. (@pxref{Modules,,, dico, GNU Dico Manual})." #. type: table -#: guix-git/doc/guix.texi:33776 +#: guix-git/doc/guix.texi:34213 msgid "List of strings or gexps representing the arguments for the module handler" msgstr "Liste de chaînes ou de gexps représentant les arguments pour le gestionnaire de module" #. type: deftp -#: guix-git/doc/guix.texi:33779 +#: guix-git/doc/guix.texi:34216 #, no-wrap msgid "{Data Type} dicod-database" msgstr "{Type de données} dicod-database" #. type: deftp -#: guix-git/doc/guix.texi:33781 +#: guix-git/doc/guix.texi:34218 msgid "Data type representing a dictionary database." msgstr "Type de données représentant une base de données de dictionnaire." #. type: table -#: guix-git/doc/guix.texi:33785 +#: guix-git/doc/guix.texi:34222 msgid "Name of the database, will be used in DICT commands." msgstr "Nom de la base de données, qui sera utilisée dans les commande DICT." #. type: code{#1} -#: guix-git/doc/guix.texi:33786 +#: guix-git/doc/guix.texi:34223 #, no-wrap msgid "handler" msgstr "handler" #. type: table -#: guix-git/doc/guix.texi:33789 +#: guix-git/doc/guix.texi:34226 msgid "Name of the dicod handler (module instance) used by this database (@pxref{Handlers,,, dico, GNU Dico Manual})." msgstr "Nom du gestionnaire dicod (instance de module) utilisé par cette base de données (@pxref{Handlers,,, dico, GNU Dico Manual})." #. type: item -#: guix-git/doc/guix.texi:33790 +#: guix-git/doc/guix.texi:34227 #, no-wrap msgid "@code{complex?} (default: @var{#f})" msgstr "@code{complex?} (par défaut : @var{#f})" #. type: table -#: guix-git/doc/guix.texi:33793 +#: guix-git/doc/guix.texi:34230 msgid "Whether the database configuration complex. The complex configuration will need a corresponding @code{} object, otherwise not." msgstr "Indique si la configuration est pour une base de données complexe. La configuration complexe a besoin d'un objet @code{} correspondant, sinon inutile." #. type: table -#: guix-git/doc/guix.texi:33797 +#: guix-git/doc/guix.texi:34234 msgid "List of strings or gexps representing the arguments for the database (@pxref{Databases,,, dico, GNU Dico Manual})." msgstr "Liste de chaînes ou de gexps représentant les arguments pour la base de données (@pxref{Databases,,, dico, GNU Dico Manual})." #. type: defvr -#: guix-git/doc/guix.texi:33800 +#: guix-git/doc/guix.texi:34237 #, no-wrap msgid "{Scheme Variable} %dicod-database:gcide" msgstr "{Variable Scheme} %dicod-database:gcide" #. type: defvr -#: guix-git/doc/guix.texi:33803 +#: guix-git/doc/guix.texi:34240 msgid "A @code{} object serving the GNU Collaborative International Dictionary of English using the @code{gcide} package." msgstr "Un objet @code{} servant le dictionnaire international collaboratif en anglais via le paquet @code{gcide}." #. type: Plain text -#: guix-git/doc/guix.texi:33806 +#: guix-git/doc/guix.texi:34243 msgid "The following is an example @code{dicod-service} configuration." msgstr "Voici un exemple de configuration de @code{dicod-service}." #. type: lisp -#: guix-git/doc/guix.texi:33821 +#: guix-git/doc/guix.texi:34258 #, no-wrap msgid "" "(dicod-service #:config\n" @@ -63461,139 +64358,139 @@ msgstr "" " %dicod-database:gcide))))\n" #. type: cindex -#: guix-git/doc/guix.texi:33823 +#: guix-git/doc/guix.texi:34260 #, no-wrap msgid "Docker" msgstr "Docker" #. type: subsubheading -#: guix-git/doc/guix.texi:33824 +#: guix-git/doc/guix.texi:34261 #, no-wrap msgid "Docker Service" msgstr "Service Docker" #. type: Plain text -#: guix-git/doc/guix.texi:33827 +#: guix-git/doc/guix.texi:34264 msgid "The @code{(gnu services docker)} module provides the following services." msgstr "Le module @code{(gnu services docker)} fournit les services suivants." #. type: defvr -#: guix-git/doc/guix.texi:33828 +#: guix-git/doc/guix.texi:34265 #, no-wrap msgid "{Scheme Variable} docker-service-type" msgstr "{Variable Scheme} docker-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33833 +#: guix-git/doc/guix.texi:34270 msgid "This is the type of the service that runs @url{https://www.docker.com,Docker}, a daemon that can execute application bundles (sometimes referred to as ``containers'') in isolated environments." msgstr "C'est le type du service qui lance @url{https://www.docker.com,Docker}, un démon qui peut exécuter des lots applicatifs (aussi appelés « conteneurs ») dans des environnements isolés." #. type: deftp -#: guix-git/doc/guix.texi:33836 +#: guix-git/doc/guix.texi:34273 #, no-wrap msgid "{Data Type} docker-configuration" msgstr "{Type de données} docker-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33838 +#: guix-git/doc/guix.texi:34275 msgid "This is the data type representing the configuration of Docker and Containerd." msgstr "Le type de données qui représente la configuration de Docker et Containerd." #. type: item -#: guix-git/doc/guix.texi:33841 +#: guix-git/doc/guix.texi:34278 #, no-wrap msgid "@code{docker} (default: @code{docker})" msgstr "@code{docker} (par défaut : @code{docker})" #. type: table -#: guix-git/doc/guix.texi:33843 +#: guix-git/doc/guix.texi:34280 msgid "The Docker daemon package to use." msgstr "Le paquet du démon Docker à utiliser." #. type: item -#: guix-git/doc/guix.texi:33844 +#: guix-git/doc/guix.texi:34281 #, no-wrap msgid "@code{docker-cli} (default: @code{docker-cli})" msgstr "@code{docker-cli} (par défaut : @code{docker-cli})" #. type: table -#: guix-git/doc/guix.texi:33846 +#: guix-git/doc/guix.texi:34283 msgid "The Docker client package to use." msgstr "Le paquet du client Docker à utiliser." #. type: item -#: guix-git/doc/guix.texi:33847 +#: guix-git/doc/guix.texi:34284 #, no-wrap msgid "@code{containerd} (default: @var{containerd})" msgstr "@code{containerd} (par défaut : @var{containerd})" #. type: table -#: guix-git/doc/guix.texi:33849 +#: guix-git/doc/guix.texi:34286 msgid "The Containerd package to use." msgstr "Le paquet Containerd à utiliser." #. type: item -#: guix-git/doc/guix.texi:33850 +#: guix-git/doc/guix.texi:34287 #, no-wrap msgid "@code{proxy} (default @var{docker-libnetwork-cmd-proxy})" msgstr "@code{proxy} (par défaut : @var{docker-libnetwork-cmd-proxy})" #. type: table -#: guix-git/doc/guix.texi:33852 +#: guix-git/doc/guix.texi:34289 msgid "The Docker user-land networking proxy package to use." msgstr "Le paquet du mandataire réseau en espace utilisateur de Docker à utiliser." #. type: item -#: guix-git/doc/guix.texi:33853 +#: guix-git/doc/guix.texi:34290 #, no-wrap msgid "@code{enable-proxy?} (default @code{#t})" msgstr "@code{enable-proxy?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:33855 +#: guix-git/doc/guix.texi:34292 msgid "Enable or disable the use of the Docker user-land networking proxy." msgstr "Indique s'il faut utiliser le mandataire réseau en espace utilisateur de Docker." #. type: item -#: guix-git/doc/guix.texi:33856 +#: guix-git/doc/guix.texi:34293 #, no-wrap msgid "@code{debug?} (default @code{#f})" msgstr "@code{debug?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33858 +#: guix-git/doc/guix.texi:34295 msgid "Enable or disable debug output." msgstr "Indique s'il faut activer la sortie de débogage." #. type: item -#: guix-git/doc/guix.texi:33859 +#: guix-git/doc/guix.texi:34296 #, no-wrap msgid "@code{enable-iptables?} (default @code{#t})" msgstr "@code{enable-iptables?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:33861 +#: guix-git/doc/guix.texi:34298 msgid "Enable or disable the addition of iptables rules." msgstr "Indique s'il faut ajouter des règles iptables." #. type: item -#: guix-git/doc/guix.texi:33862 +#: guix-git/doc/guix.texi:34299 #, no-wrap msgid "@code{environment-variables} (default: @code{()})" msgstr "@code{environment-variables} (par défaut : @code{()})" #. type: table -#: guix-git/doc/guix.texi:33864 +#: guix-git/doc/guix.texi:34301 msgid "List of environment variables to set for @command{dockerd}." msgstr "Liste de variables d'environnement à initialiser pour @command{dockerd}." #. type: table -#: guix-git/doc/guix.texi:33867 +#: guix-git/doc/guix.texi:34304 msgid "This must be a list of strings where each string has the form @samp{@var{key}=@var{value}} as in this example:" msgstr "Cela doit être une liste de chaines où chaque chaine a pour forme @samp{@var{clé}=@var{valeur}} comme dans cet exemple :" #. type: lisp -#: guix-git/doc/guix.texi:33871 +#: guix-git/doc/guix.texi:34308 #, no-wrap msgid "" "(list \"LANGUAGE=eo:ca:eu\"\n" @@ -63603,214 +64500,197 @@ msgstr "" " \"TMPDIR=/tmp/dockerd\")\n" #. type: cindex -#: guix-git/doc/guix.texi:33876 +#: guix-git/doc/guix.texi:34313 #, no-wrap msgid "Singularity, container service" msgstr "Singularity, service de conteneurs" #. type: defvr -#: guix-git/doc/guix.texi:33877 +#: guix-git/doc/guix.texi:34314 #, no-wrap msgid "{Scheme Variable} singularity-service-type" msgstr "{Variable Scheme} singularity-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33882 +#: guix-git/doc/guix.texi:34319 msgid "This is the type of the service that allows you to run @url{https://www.sylabs.io/singularity/, Singularity}, a Docker-style tool to create and run application bundles (aka. ``containers''). The value for this service is the Singularity package to use." msgstr "C'est le type de service qui vous permet de lancer @url{https://www.sylabs.io/singularity/, Singularity}, un outil similaire à Docker pour créer et lancer des lots applicatifs (aussi appelés « conteneurs »). la valeur de ce service est le paquet Singularity à utiliser." #. type: defvr -#: guix-git/doc/guix.texi:33886 +#: guix-git/doc/guix.texi:34323 msgid "The service does not install a daemon; instead, it installs helper programs as setuid-root (@pxref{Setuid Programs}) such that unprivileged users can invoke @command{singularity run} and similar commands." msgstr "Le service n'installe pas de démon : à la place, il installe des utilitaires en setuid-root (@pxref{Setuid Programs}) pour que les utilisateurs non privilégiés puisse invoquer @command{singularity run} et les commandes similaires." #. type: cindex -#: guix-git/doc/guix.texi:33888 +#: guix-git/doc/guix.texi:34325 #, no-wrap msgid "Audit" msgstr "Audit" #. type: subsubheading -#: guix-git/doc/guix.texi:33889 +#: guix-git/doc/guix.texi:34326 #, no-wrap msgid "Auditd Service" msgstr "Service auditd" #. type: Plain text -#: guix-git/doc/guix.texi:33892 +#: guix-git/doc/guix.texi:34329 msgid "The @code{(gnu services auditd)} module provides the following service." msgstr "Le module @code{(gnu services auditd)} fournit le service suivant." #. type: defvr -#: guix-git/doc/guix.texi:33893 +#: guix-git/doc/guix.texi:34330 #, no-wrap msgid "{Scheme Variable} auditd-service-type" msgstr "{Variable Scheme} auditd-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33898 +#: guix-git/doc/guix.texi:34335 msgid "This is the type of the service that runs @url{https://people.redhat.com/sgrubb/audit/,auditd}, a daemon that tracks security-relevant information on your system." msgstr "C'est le type du service qui lance @url{https://people.redhat.com/sgrubb/audit/,auditd}, un démon qui suit les informations de sécurité de votre système." #. type: defvr -#: guix-git/doc/guix.texi:33900 +#: guix-git/doc/guix.texi:34337 msgid "Examples of things that can be tracked:" msgstr "Exemples de ce qui peut être suivi :" #. type: enumerate -#: guix-git/doc/guix.texi:33904 +#: guix-git/doc/guix.texi:34341 msgid "File accesses" msgstr "Les accès aux fichiers" #. type: enumerate -#: guix-git/doc/guix.texi:33906 +#: guix-git/doc/guix.texi:34343 msgid "System calls" msgstr "Les appels système" #. type: enumerate -#: guix-git/doc/guix.texi:33908 +#: guix-git/doc/guix.texi:34345 msgid "Invoked commands" msgstr "Les commandes invoquées" #. type: enumerate -#: guix-git/doc/guix.texi:33910 +#: guix-git/doc/guix.texi:34347 msgid "Failed login attempts" msgstr "Les tentatives de connexion échouées" #. type: enumerate -#: guix-git/doc/guix.texi:33912 +#: guix-git/doc/guix.texi:34349 msgid "Firewall filtering" msgstr "Le filtrage du pare-feu" #. type: enumerate -#: guix-git/doc/guix.texi:33914 +#: guix-git/doc/guix.texi:34351 msgid "Network access" msgstr "Les accès réseau" #. type: defvr -#: guix-git/doc/guix.texi:33925 +#: guix-git/doc/guix.texi:34362 msgid "@command{auditctl} from the @code{audit} package can be used in order to add or remove events to be tracked (until the next reboot). In order to permanently track events, put the command line arguments of auditctl into a file called @code{audit.rules} in the configuration directory (see below). @command{aureport} from the @code{audit} package can be used in order to view a report of all recorded events. The audit daemon by default logs into the file @file{/var/log/audit.log}." msgstr "@command{auditctl} du paquet @code{audit} peut être utilisé pour ajouter ou supprimer des évènements à suivre (jusqu'au prochain redémarrage). Pour suivre les évènements de manière permanente, ajoutez des arguments à la commande auditctl dans un fichier nommé @code{audit.rules} dans le répertoire de configuration (voir plus bas). @command{aureport} du paquet @code{audit} peut être utilisé pour visualiser un rapport de tous les évènements enregistrés. le démon d'audit enregistre par défaut dans le fichier @file{/var/log/audit.log}." #. type: deftp -#: guix-git/doc/guix.texi:33928 +#: guix-git/doc/guix.texi:34365 #, no-wrap msgid "{Data Type} auditd-configuration" msgstr "{Type de données} auditd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33930 +#: guix-git/doc/guix.texi:34367 msgid "This is the data type representing the configuration of auditd." msgstr "Le type de données qui représente la configuration de auditd." #. type: item -#: guix-git/doc/guix.texi:33933 +#: guix-git/doc/guix.texi:34370 #, no-wrap msgid "@code{audit} (default: @code{audit})" msgstr "@code{audit} (par défaut : @code{audit})" #. type: table -#: guix-git/doc/guix.texi:33935 +#: guix-git/doc/guix.texi:34372 msgid "The audit package to use." msgstr "Le paquet audit à utiliser." #. type: item -#: guix-git/doc/guix.texi:33936 +#: guix-git/doc/guix.texi:34373 #, no-wrap msgid "@code{configuration-directory} (default: @code{%default-auditd-configuration-directory})" msgstr "@code{configuration-directory} (par défaut : @code{%default-auditd-configuration-directory})" #. type: table -#: guix-git/doc/guix.texi:33940 +#: guix-git/doc/guix.texi:34377 msgid "The directory containing the configuration file for the audit package, which must be named @code{auditd.conf}, and optionally some audit rules to instantiate on startup." msgstr "Le répertoire contenant le fichier de configuration du paquet audit, qui doit être nommé @code{auditd.conf}, et éventuellement des règles d'audit à instancier au démarrage." #. type: cindex -#: guix-git/doc/guix.texi:33944 +#: guix-git/doc/guix.texi:34381 #, no-wrap msgid "rshiny" msgstr "rshiny" #. type: subsubheading -#: guix-git/doc/guix.texi:33945 +#: guix-git/doc/guix.texi:34382 #, no-wrap msgid "R-Shiny service" msgstr "Service R-Shiny" #. type: Plain text -#: guix-git/doc/guix.texi:33948 +#: guix-git/doc/guix.texi:34385 msgid "The @code{(gnu services science)} module provides the following service." msgstr "Le module @code{(gnu services science)} fournit le service suivant." #. type: defvr -#: guix-git/doc/guix.texi:33949 +#: guix-git/doc/guix.texi:34386 #, no-wrap msgid "{Scheme Variable} rshiny-service-type" msgstr "{Variable Scheme} rshiny-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33954 +#: guix-git/doc/guix.texi:34391 msgid "This is a type of service which is used to run a webapp created with @code{r-shiny}. This service sets the @env{R_LIBS_USER} environment variable and runs the provided script to call @code{runApp}." msgstr "C'est le type de service utilisé pour lancer une appli web créée avec @code{r-shiny}. Ce service initialise la variable d'environnement @env{R_LIBS_USER} et lance le script fournit pour appeler @code{runApp}." #. type: deftp -#: guix-git/doc/guix.texi:33955 +#: guix-git/doc/guix.texi:34392 #, no-wrap msgid "{Data Type} rshiny-configuration" msgstr "{Type de données} rshiny-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33957 +#: guix-git/doc/guix.texi:34394 msgid "This is the data type representing the configuration of rshiny." msgstr "Le type de données qui représente la configuration de rshiny." #. type: item -#: guix-git/doc/guix.texi:33960 +#: guix-git/doc/guix.texi:34397 #, no-wrap msgid "@code{package} (default: @code{r-shiny})" msgstr "@code{package} (par défaut : @code{r-shiny})" #. type: table -#: guix-git/doc/guix.texi:33962 +#: guix-git/doc/guix.texi:34399 msgid "The package to use." msgstr "Le paquet à utiliser." #. type: item -#: guix-git/doc/guix.texi:33963 +#: guix-git/doc/guix.texi:34400 #, no-wrap msgid "@code{binary} (defaunlt @code{\"rshiny\"})" msgstr "@code{binary} (par défaut : @code{\"rshiny\"})" #. type: table -#: guix-git/doc/guix.texi:33966 +#: guix-git/doc/guix.texi:34403 msgid "The name of the binary or shell script located at @code{package/bin/} to run when the service is run." msgstr "Le nom du binaire ou du script shell situé dans @code{package/bin/} à lancer au démarrage du service." #. type: table -#: guix-git/doc/guix.texi:33968 +#: guix-git/doc/guix.texi:34405 msgid "The common way to create this file is as follows:" msgstr "La manière habituelle de créer ce fichier est :" #. type: lisp -#: guix-git/doc/guix.texi:33985 -#, fuzzy, no-wrap -#| msgid "" -#| "@dots{}\n" -#| "(let* ((out (assoc-ref %outputs \"out\"))\n" -#| " (targetdir (string-append out \"/share/\" ,name))\n" -#| " (app (string-append out \"/bin/\" ,name))\n" -#| " (Rbin (string-append (assoc-ref %build-inputs \"r-min\")\n" -#| " \"/bin/Rscript\")))\n" -#| " ;; @dots{}\n" -#| " (mkdir-p (string-append out \"/bin\"))\n" -#| " (call-with-output-file app\n" -#| " (lambda (port)\n" -#| " (format port\n" -#| "\"#!~a\n" -#| "library(shiny)\n" -#| "setwd(\\\"~a\\\")\n" -#| "runApp(launch.browser=0, port=4202)~%\\n\"\n" -#| " Rbin targetdir))))\n" +#: guix-git/doc/guix.texi:34422 +#, no-wrap msgid "" "@dots{}\n" "(let* ((out (assoc-ref %outputs \"out\"))\n" @@ -63832,8 +64712,7 @@ msgstr "" "(let* ((out (assoc-ref %outputs \"out\"))\n" " (targetdir (string-append out \"/share/\" ,name))\n" " (app (string-append out \"/bin/\" ,name))\n" -" (Rbin (string-append (assoc-ref %build-inputs \"r-min\")\n" -" \"/bin/Rscript\")))\n" +" (Rbin (search-input-file %build-inputs \"/bin/Rscript\")))\n" " ;; @dots{}\n" " (mkdir-p (string-append out \"/bin\"))\n" " (call-with-output-file app\n" @@ -63846,35 +64725,35 @@ msgstr "" " Rbin targetdir))))\n" #. type: cindex -#: guix-git/doc/guix.texi:33991 +#: guix-git/doc/guix.texi:34428 #, no-wrap msgid "Nix" msgstr "Nix" #. type: subsubheading -#: guix-git/doc/guix.texi:33992 +#: guix-git/doc/guix.texi:34429 #, no-wrap msgid "Nix service" msgstr "Service Nix" #. type: Plain text -#: guix-git/doc/guix.texi:33995 +#: guix-git/doc/guix.texi:34432 msgid "The @code{(gnu services nix)} module provides the following service." msgstr "Le module @code{(gnu services nix)} fournit le service suivant." #. type: defvr -#: guix-git/doc/guix.texi:33996 +#: guix-git/doc/guix.texi:34433 #, no-wrap msgid "{Scheme Variable} nix-service-type" msgstr "{Variable Scheme} nix-service-type" #. type: defvr -#: guix-git/doc/guix.texi:34001 +#: guix-git/doc/guix.texi:34438 msgid "This is the type of the service that runs build daemon of the @url{https://nixos.org/nix/, Nix} package manager. Here is an example showing how to use it:" msgstr "C'est le type du service qui lance le démon de construction du gestionnaire de paquets @url{https://nixos.org/nix/, Nix}. Voici un exemple qui montre comment l'utiliser :" #. type: lisp -#: guix-git/doc/guix.texi:34006 +#: guix-git/doc/guix.texi:34443 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -63888,7 +64767,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:34011 +#: guix-git/doc/guix.texi:34448 #, no-wrap msgid "" "(operating-system\n" @@ -63904,7 +64783,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:34014 +#: guix-git/doc/guix.texi:34451 #, no-wrap msgid "" " (services (append (list (service nix-service-type))\n" @@ -63914,29 +64793,29 @@ msgstr "" " %base-services)))\n" #. type: defvr -#: guix-git/doc/guix.texi:34017 +#: guix-git/doc/guix.texi:34454 msgid "After @command{guix system reconfigure} configure Nix for your user:" msgstr "Après @command{guix system reconfigure}, configurez Nix pour votre utilisateur :" #. type: item -#: guix-git/doc/guix.texi:34019 +#: guix-git/doc/guix.texi:34456 #, no-wrap msgid "Add a Nix channel and update it. See" msgstr "Ajoutez un canal Nix et mettez-le à jour. Voir" #. type: itemize -#: guix-git/doc/guix.texi:34021 +#: guix-git/doc/guix.texi:34458 msgid "@url{https://nixos.org/nix/manual/, Nix Package Manager Guide}." msgstr "@url{https://nixos.org/nix/manual/, Guide du gestionnaire de paquets Nix}." #. type: item -#: guix-git/doc/guix.texi:34022 +#: guix-git/doc/guix.texi:34459 #, no-wrap msgid "Create a symlink to your profile and activate Nix profile:" msgstr "Créez un lien symbolique vers votre profil et activez le profil de Nix :" #. type: example -#: guix-git/doc/guix.texi:34028 +#: guix-git/doc/guix.texi:34465 #, no-wrap msgid "" "$ ln -s \"/nix/var/nix/profiles/per-user/$USER/profile\" ~/.nix-profile\n" @@ -63946,79 +64825,77 @@ msgstr "" "$ source /run/current-system/profile/etc/profile.d/nix.sh\n" #. type: deftp -#: guix-git/doc/guix.texi:34032 +#: guix-git/doc/guix.texi:34469 #, no-wrap msgid "{Data Type} nix-configuration" msgstr "{Type de données} nix-configuration" #. type: deftp -#: guix-git/doc/guix.texi:34034 +#: guix-git/doc/guix.texi:34471 msgid "This data type represents the configuration of the Nix daemon." msgstr "Ce type de données représente la configuration du démon Nix." #. type: item -#: guix-git/doc/guix.texi:34036 +#: guix-git/doc/guix.texi:34473 #, no-wrap msgid "@code{nix} (default: @code{nix})" msgstr "@code{nix} (par défaut : @code{nix})" #. type: table -#: guix-git/doc/guix.texi:34038 +#: guix-git/doc/guix.texi:34475 msgid "The Nix package to use." msgstr "Le paquet Nix à utiliser." #. type: item -#: guix-git/doc/guix.texi:34039 +#: guix-git/doc/guix.texi:34476 #, no-wrap msgid "@code{sandbox} (default: @code{#t})" msgstr "@code{sandbox} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:34041 +#: guix-git/doc/guix.texi:34478 msgid "Specifies whether builds are sandboxed by default." msgstr "Spécifie si les constructions sont effectuées dans un bac à sable par défaut." #. type: item -#: guix-git/doc/guix.texi:34042 +#: guix-git/doc/guix.texi:34479 #, no-wrap msgid "@code{build-sandbox-items} (default: @code{'()})" msgstr "@code{build-sandbox-items} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:34045 +#: guix-git/doc/guix.texi:34482 msgid "This is a list of strings or objects appended to the @code{build-sandbox-items} field of the configuration file." msgstr "C'est une liste de chaines de caractères ou d'objets ajoutés au champ @code{build-sandbox-items} du fichier de configuration." #. type: table -#: guix-git/doc/guix.texi:34053 +#: guix-git/doc/guix.texi:34490 msgid "Extra command line options for @code{nix-service-type}." msgstr "Options supplémentaires de la ligne de commande pour @code{nix-service-type}." #. type: cindex -#: guix-git/doc/guix.texi:34059 +#: guix-git/doc/guix.texi:34496 #, no-wrap msgid "setuid programs" msgstr "programmes setuid" #. type: Plain text -#: guix-git/doc/guix.texi:34069 +#: guix-git/doc/guix.texi:34506 msgid "Some programs need to run with ``root'' privileges, even when they are launched by unprivileged users. A notorious example is the @command{passwd} program, which users can run to change their password, and which needs to access the @file{/etc/passwd} and @file{/etc/shadow} files---something normally restricted to root, for obvious security reasons. To address that, these executables are @dfn{setuid-root}, meaning that they always run with root privileges (@pxref{How Change Persona,,, libc, The GNU C Library Reference Manual}, for more info about the setuid mechanism)." msgstr "Certains programmes doivent être lancés avec les privilèges « root » même lorsqu'ils sont lancés par un utilisateur non privilégié. Un exemple notoire est le programme @command{passwd}, que les utilisateurs peuvent appeler pour modifier leur mot de passe et qui doit accéder à @file{/etc/passwd} et @file{/etc/shadow} — ce qui est normalement réservé à root, pour des raisons de sécurité évidentes. Pour contourner cela, ces exécutables sont @dfn{setuid-root}, ce qui signifie qu'ils seront toujours lancés avec les privilèges root (@pxref{How Change Persona,,, libc, The GNU C Library Reference Manual}, pour plus d'informations sur le mécanisme setuid)." #. type: Plain text -#: guix-git/doc/guix.texi:34076 +#: guix-git/doc/guix.texi:34513 msgid "The store itself @emph{cannot} contain setuid programs: that would be a security issue since any user on the system can write derivations that populate the store (@pxref{The Store}). Thus, a different mechanism is used: instead of changing the setuid bit directly on files that are in the store, we let the system administrator @emph{declare} which programs should be setuid root." msgstr "Le dépôt lui-même ne @emph{peut pas} contenir de programmes setuid ; cela serait un problème de sécurité puisque n'importe quel utilisateur du système peut écrire une dérivation qui rempli le dépôt (@pxref{The Store}). Donc, un mécanisme différent est utilisé : au lieu de changer le bit setuid directement sur les fichiers qui sont dans le dépôt, nous laissons à l'administrateur système le soit de @emph{déclarer} les programmes qui devraient être setuid root." #. type: Plain text -#: guix-git/doc/guix.texi:34083 -#, fuzzy -#| msgid "The @code{setuid-programs} field of an @code{operating-system} declaration contains a list of @code{} denoting the names of programs to have a setuid or setgid bit set (@pxref{Using the Configuration System}). For instance, the @command{passwd} program, which is part of the Shadow package, with a setuid root can be designated like this:" +#: guix-git/doc/guix.texi:34520 msgid "The @code{setuid-programs} field of an @code{operating-system} declaration contains a list of @code{} denoting the names of programs to have a setuid or setgid bit set (@pxref{Using the Configuration System}). For instance, the @command{mount.nfs} program, which is part of the nfs-utils package, with a setuid root can be designated like this:" -msgstr "Le champ @code{setuid-programs} d'une déclaration @code{operating-system} contient une liste de @code{} qui dénotent les noms des programmes qui auront le bit setuid ou setgid (@pxref{Using the Configuration System}). Par exemple, le programme @command{passwd}, qui fait partie du paquet Shadow, avec le bit setuid root, peut être désigné comme ceci :" +msgstr "Le champ @code{setuid-programs} d'une déclaration @code{operating-system} contient une liste de @code{} qui dénotent les noms des programmes qui auront le bit setuid ou setgid (@pxref{Using the Configuration System}). Par exemple, le programme @command{mount.nfs}, qui fait partie du paquet nfs-utils, avec le bit setuid root, peut être désigné comme ceci :" -#. type: example -#: guix-git/doc/guix.texi:34087 +#. type: lisp +#: guix-git/doc/guix.texi:34524 #, fuzzy, no-wrap #| msgid "" #| "(setuid-program\n" @@ -64031,162 +64908,175 @@ msgstr "" " (program (file-append shadow \"/bin/passwd\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:34092 +#: guix-git/doc/guix.texi:34529 msgid "And then, to make @command{mount.nfs} setuid on your system, add the previous example to your operating system declaration by appending it to @code{%setuid-programs} like this:" msgstr "" -#. type: example -#: guix-git/doc/guix.texi:34098 -#, no-wrap +#. type: lisp +#: guix-git/doc/guix.texi:34537 +#, fuzzy, no-wrap +#| msgid "" +#| "(operating-system\n" +#| " ;; ...\n" +#| " (packages (append (map specification->package\n" +#| " '(\"tcpdump\" \"htop\" \"gnupg@@2.0\"))\n" +#| " %base-packages)))\n" msgid "" -"(setuid-programs\n" -" (append (list (setuid-program\n" -" (program (file-append nfs-utils \"/sbin/mount.nfs\"))))\n" -" %setuid-programs))\n" +"(operating-system\n" +" ;; Some fields omitted...\n" +" (setuid-programs\n" +" (append (list (setuid-program\n" +" (program (file-append nfs-utils \"/sbin/mount.nfs\")))\n" +" %setuid-programs))))\n" msgstr "" +"(operating-system\n" +" ;; ...\n" +" (packages (append (map specification->package\n" +" '(\"tcpdump\" \"htop\" \"gnupg@@2.0\"))\n" +" %base-packages)))\n" #. type: deftp -#: guix-git/doc/guix.texi:34100 +#: guix-git/doc/guix.texi:34539 #, no-wrap msgid "{Data Type} setuid-program" msgstr "{Type de données} setuid-program" #. type: deftp -#: guix-git/doc/guix.texi:34102 +#: guix-git/doc/guix.texi:34541 msgid "This data type represents a program with a setuid or setgid bit set." msgstr "Ce type de données représente un programme avec le bit setuid ou setgid." #. type: code{#1} -#: guix-git/doc/guix.texi:34104 +#: guix-git/doc/guix.texi:34543 #, no-wrap msgid "program" msgstr "program" #. type: table -#: guix-git/doc/guix.texi:34106 +#: guix-git/doc/guix.texi:34545 msgid "A file-like object having its setuid and/or setgid bit set." msgstr "Un objet simili-fichier dont le bit setuid ou setgid est activé." #. type: item -#: guix-git/doc/guix.texi:34107 +#: guix-git/doc/guix.texi:34546 #, no-wrap msgid "@code{setuid?} (default: @code{#t})" msgstr "@code{setuid?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:34109 +#: guix-git/doc/guix.texi:34548 msgid "Whether to set user setuid bit." msgstr "Indique s'il faut activer le bit setuid." #. type: item -#: guix-git/doc/guix.texi:34110 +#: guix-git/doc/guix.texi:34549 #, no-wrap msgid "@code{setgid?} (default: @code{#f})" msgstr "@code{setgid?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:34112 +#: guix-git/doc/guix.texi:34551 msgid "Whether to set group setgid bit." msgstr "Indique s'il faut active le bit setgid." #. type: item -#: guix-git/doc/guix.texi:34113 +#: guix-git/doc/guix.texi:34552 #, no-wrap msgid "@code{user} (default: @code{0})" msgstr "@code{user} (par défaut : @code{0})" #. type: table -#: guix-git/doc/guix.texi:34116 +#: guix-git/doc/guix.texi:34555 msgid "UID (integer) or user name (string) for the user owner of the program, defaults to root." msgstr "L'UID (entier) ou le nom d'utilisateur (chaîne) du propriétaire du programme, root par défaut." #. type: item -#: guix-git/doc/guix.texi:34117 +#: guix-git/doc/guix.texi:34556 #, no-wrap msgid "@code{group} (default: @code{0})" msgstr "@code{group} (par défaut : @code{0})" #. type: table -#: guix-git/doc/guix.texi:34120 +#: guix-git/doc/guix.texi:34559 msgid "GID (integer) goup name (string) for the group owner of the program, defaults to root." msgstr "Le GID (entier) ou le nom du groupe (chaîne) pour le groupe propriétaire du programme, root par défaut." #. type: Plain text -#: guix-git/doc/guix.texi:34126 +#: guix-git/doc/guix.texi:34565 msgid "A default set of setuid programs is defined by the @code{%setuid-programs} variable of the @code{(gnu system)} module." msgstr "Un ensemble de programmes par défaut est défini par la variable @code{%setuid-programs} du module @code{(gnu system)}." #. type: defvr -#: guix-git/doc/guix.texi:34127 +#: guix-git/doc/guix.texi:34566 #, no-wrap msgid "{Scheme Variable} %setuid-programs" msgstr "{Variable Scheme} %setuid-programs" #. type: defvr -#: guix-git/doc/guix.texi:34130 +#: guix-git/doc/guix.texi:34569 msgid "A list of @code{} denoting common programs that are setuid-root." msgstr "Une liste de @code{} qui dénotent les programmes communément setuid-root." #. type: defvr -#: guix-git/doc/guix.texi:34133 +#: guix-git/doc/guix.texi:34572 msgid "The list includes commands such as @command{passwd}, @command{ping}, @command{su}, and @command{sudo}." msgstr "La liste inclus des commandes comme @command{passwd}, @command{ping}, @command{su} et @command{sudo}." #. type: Plain text -#: guix-git/doc/guix.texi:34139 +#: guix-git/doc/guix.texi:34578 msgid "Under the hood, the actual setuid programs are created in the @file{/run/setuid-programs} directory at system activation time. The files in this directory refer to the ``real'' binaries, which are in the store." msgstr "Sous le capot, les programmes setuid sont créés dans le répertoire @file{/run/setuid-programs} au moment de l'activation du système. Les fichiers dans ce répertoire se réfèrent aux « vrais » binaires, qui sont dans le dépot." #. type: cindex -#: guix-git/doc/guix.texi:34143 +#: guix-git/doc/guix.texi:34582 #, no-wrap msgid "HTTPS, certificates" msgstr "HTTPS, certificats" #. type: cindex -#: guix-git/doc/guix.texi:34144 +#: guix-git/doc/guix.texi:34583 #, no-wrap msgid "X.509 certificates" msgstr "Certificats X.509" #. type: cindex -#: guix-git/doc/guix.texi:34145 +#: guix-git/doc/guix.texi:34584 #, no-wrap msgid "TLS" msgstr "TLS" #. type: Plain text -#: guix-git/doc/guix.texi:34152 +#: guix-git/doc/guix.texi:34591 msgid "Web servers available over HTTPS (that is, HTTP over the transport-layer security mechanism, TLS) send client programs an @dfn{X.509 certificate} that the client can then use to @emph{authenticate} the server. To do that, clients verify that the server's certificate is signed by a so-called @dfn{certificate authority} (CA). But to verify the CA's signature, clients must have first acquired the CA's certificate." msgstr "Les serveurs web disponibles par HTTPS (c'est-à-dire HTTP sur le mécanisme de la couche de transport sécurisée, TLS) envoient aux clients un @dfn{certificat X.509} que les clients peuvent utiliser pour @emph{authentifier} le serveur. Pour cela, les clients vérifient que le certificat du serveur est signé par une @dfn{autorité de certification} (AC ou CA). Mais pour vérifier la signature de la CA, les clients doivent d'abord avoir récupéré le certificat de la CA." #. type: Plain text -#: guix-git/doc/guix.texi:34156 +#: guix-git/doc/guix.texi:34595 msgid "Web browsers such as GNU@tie{}IceCat include their own set of CA certificates, such that they are able to verify CA signatures out-of-the-box." msgstr "Les navigateurs web comme GNU@tie{}IceCat incluent leur propre liste de certificats, pour qu'ils puissent vérifier les signatures des CA directement." #. type: Plain text -#: guix-git/doc/guix.texi:34160 +#: guix-git/doc/guix.texi:34599 msgid "However, most other programs that can talk HTTPS---@command{wget}, @command{git}, @command{w3m}, etc.---need to be told where CA certificates can be found." msgstr "Cependant, la plupart des autres programmes qui peuvent parler HTTPS — @command{wget}, @command{git}, @command{w3m}, etc — doivent savoir où trouver les certificats des CA." #. type: Plain text -#: guix-git/doc/guix.texi:34167 +#: guix-git/doc/guix.texi:34606 msgid "In Guix, this is done by adding a package that provides certificates to the @code{packages} field of the @code{operating-system} declaration (@pxref{operating-system Reference}). Guix includes one such package, @code{nss-certs}, which is a set of CA certificates provided as part of Mozilla's Network Security Services." msgstr "Dans Guix, cela se fait en ajoutant un paquet qui fournit les certificats dans le champ @code{packages} de la déclaration @code{operating-system} (@pxref{operating-system Reference}). Guix inclut l'un de ces paquets, @code{nss-certs}, qui est un ensemble de certificats de CA fourni par les services de sécurité réseau de Mozilla (nss)." #. type: Plain text -#: guix-git/doc/guix.texi:34172 +#: guix-git/doc/guix.texi:34611 msgid "Note that it is @emph{not} part of @code{%base-packages}, so you need to explicitly add it. The @file{/etc/ssl/certs} directory, which is where most applications and libraries look for certificates by default, points to the certificates installed globally." msgstr "Remarquez qu'il ne fait @emph{pas} partie de @code{%base-packages}, donc vous devez explicitement l'ajouter. Le répertoire @file{/etc/ssl/certs}, là où la plupart des applications et bibliothèques vont rechercher les certificats par défaut, pointe vers les certificats installés globalement." #. type: Plain text -#: guix-git/doc/guix.texi:34182 +#: guix-git/doc/guix.texi:34621 msgid "Unprivileged users, including users of Guix on a foreign distro, can also install their own certificate package in their profile. A number of environment variables need to be defined so that applications and libraries know where to find them. Namely, the OpenSSL library honors the @env{SSL_CERT_DIR} and @env{SSL_CERT_FILE} variables. Some applications add their own environment variables; for instance, the Git version control system honors the certificate bundle pointed to by the @env{GIT_SSL_CAINFO} environment variable. Thus, you would typically run something like:" msgstr "Les utilisateurs non privilégiés, dont les utilisateurs de Guix sur une distro externe, peuvent aussi installer leur propre paquet de certificats dans leur profil. Un certain nombre de variables d'environnement doivent être définies pour que les applications et les bibliothèques puissent les trouver. En particulier, la bibliothèque OpenSSL honore les variables @env{SSL_CERT_DIR} et @env{SSL_CERT_FILE}. Certaines applications ajoutent leurs propres variables, par exemple le système de contrôle de version Git honore le lot de certificats pointé par la variable d'environnement @env{GIT_SSL_CAINFO}. Ainsi, vous lanceriez quelque chose comme ceci :" #. type: example -#: guix-git/doc/guix.texi:34188 +#: guix-git/doc/guix.texi:34627 #, no-wrap msgid "" "guix install nss-certs\n" @@ -64200,12 +65090,12 @@ msgstr "" "export GIT_SSL_CAINFO=\"$SSL_CERT_FILE\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:34193 +#: guix-git/doc/guix.texi:34632 msgid "As another example, R requires the @env{CURL_CA_BUNDLE} environment variable to point to a certificate bundle, so you would have to run something like this:" msgstr "Un autre exemple serait R, qui a besoin que la variable d'environnement @env{CURL_CA_BUNDLE} pointe sur le lot de certificats, donc vous lanceriez quelque chose comme ceci :" #. type: example -#: guix-git/doc/guix.texi:34197 +#: guix-git/doc/guix.texi:34636 #, no-wrap msgid "" "guix install nss-certs\n" @@ -64215,51 +65105,51 @@ msgstr "" "export CURL_CA_BUNDLE=\"$HOME/.guix-profile/etc/ssl/certs/ca-certificates.crt\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:34201 +#: guix-git/doc/guix.texi:34640 msgid "For other applications you may want to look up the required environment variable in the relevant documentation." msgstr "Pour d'autres applications vous pourriez avoir besoin de chercher la variable d'environnement requise dans leur documentation." #. type: cindex -#: guix-git/doc/guix.texi:34206 +#: guix-git/doc/guix.texi:34645 #, no-wrap msgid "name service switch" msgstr "name service switch" #. type: cindex -#: guix-git/doc/guix.texi:34207 +#: guix-git/doc/guix.texi:34646 #, no-wrap msgid "NSS" msgstr "NSS" #. type: Plain text -#: guix-git/doc/guix.texi:34216 +#: guix-git/doc/guix.texi:34655 msgid "The @code{(gnu system nss)} module provides bindings to the configuration file of the libc @dfn{name service switch} or @dfn{NSS} (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference Manual}). In a nutshell, the NSS is a mechanism that allows libc to be extended with new ``name'' lookup methods for system databases, which includes host names, service names, user accounts, and more (@pxref{Name Service Switch, System Databases and Name Service Switch,, libc, The GNU C Library Reference Manual})." msgstr "Le module @code{(gnu system nss)} fournit des liaisons pour le fichier de configuration du @dfn{name service switch} ou @dfn{NSS} de la libc (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference Manual}). En résumé, NSS est un mécanisme qui permet à la libc d'être étendue avec de nouvelles méthodes de résolution de « noms » dans les bases de données du système, comme les noms d'hôtes, les noms des services, les comptes utilisateurs et bien plus (@pxref{Name Service Switch, System Databases and Name Service Switch,, libc, The GNU C Library Reference Manual})." #. type: Plain text -#: guix-git/doc/guix.texi:34223 +#: guix-git/doc/guix.texi:34662 msgid "The NSS configuration specifies, for each system database, which lookup method is to be used, and how the various methods are chained together---for instance, under which circumstances NSS should try the next method in the list. The NSS configuration is given in the @code{name-service-switch} field of @code{operating-system} declarations (@pxref{operating-system Reference, @code{name-service-switch}})." msgstr "La configuration de NSS spécifie, pour chaque base de données du système, quelle méthode de résolution utiliser, et comment les diverses méthodes sont enchaînées — par exemple, sous certaines circonstances, NSS devrait essayer la méthode suivante de la liste. La configuration de NSS est donnée dans le champ @code{name-service-switch} de la déclaration @code{operating-system} (@pxref{operating-system Reference, @code{name-service-switch}})." #. type: cindex -#: guix-git/doc/guix.texi:34224 +#: guix-git/doc/guix.texi:34663 #, no-wrap msgid "nss-mdns" msgstr "nss-mdns" #. type: cindex -#: guix-git/doc/guix.texi:34225 +#: guix-git/doc/guix.texi:34664 #, no-wrap msgid ".local, host name lookup" msgstr ".local, résolution de nom d'hôte" #. type: Plain text -#: guix-git/doc/guix.texi:34230 +#: guix-git/doc/guix.texi:34669 msgid "As an example, the declaration below configures the NSS to use the @uref{https://0pointer.de/lennart/projects/nss-mdns/, @code{nss-mdns} back-end}, which supports host name lookups over multicast DNS (mDNS) for host names ending in @code{.local}:" msgstr "Par exemple, la déclaration ci-dessous configure NSS pour utiliser le @uref{https://0pointer.de/lennart/projects/nss-mdns/, moteur @code{nss-mdns}}, qui supporte la résolution de nom d'hôte sur le DNS multicast (mDNS) pour les noms d'hôtes terminant par @code{.local} :" #. type: lisp -#: guix-git/doc/guix.texi:34234 +#: guix-git/doc/guix.texi:34673 #, no-wrap msgid "" "(name-service-switch\n" @@ -64271,7 +65161,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:34239 +#: guix-git/doc/guix.texi:34678 #, no-wrap msgid "" " ;; If the above did not succeed, try\n" @@ -64287,7 +65177,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:34245 +#: guix-git/doc/guix.texi:34684 #, no-wrap msgid "" " ;; 'mdns_minimal' is authoritative for\n" @@ -64305,7 +65195,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:34249 +#: guix-git/doc/guix.texi:34688 #, no-wrap msgid "" " ;; Then fall back to DNS.\n" @@ -64319,7 +65209,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:34253 +#: guix-git/doc/guix.texi:34692 #, no-wrap msgid "" " ;; Finally, try with the \"full\" 'mdns'.\n" @@ -64331,151 +65221,151 @@ msgstr "" " (name \"mdns\")))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:34258 +#: guix-git/doc/guix.texi:34697 msgid "Do not worry: the @code{%mdns-host-lookup-nss} variable (see below) contains this configuration, so you will not have to type it if all you want is to have @code{.local} host lookup working." msgstr "Ne vous inquiétez pas : la variable @code{%mdns-host-lookup-nss} (voir plus bas) contient cette configuration, donc vous n'avez pas besoin de tout taper si vous voulez simplement que la résolution de nom en @code{.local} fonctionne." #. type: Plain text -#: guix-git/doc/guix.texi:34266 +#: guix-git/doc/guix.texi:34705 msgid "Note that, in this case, in addition to setting the @code{name-service-switch} of the @code{operating-system} declaration, you also need to use @code{avahi-service-type} (@pxref{Networking Services, @code{avahi-service-type}}), or @code{%desktop-services}, which includes it (@pxref{Desktop Services}). Doing this makes @code{nss-mdns} accessible to the name service cache daemon (@pxref{Base Services, @code{nscd-service}})." msgstr "Remarquez que dans ce cas, en plus de mettre en place le @code{name-service-switch} de la déclaration @code{operating-system}, vous devez aussi utiliser @code{avahi-service-type} (@pxref{Networking Services, @code{avahi-service}}), ou @code{%desktop-services} qui l'inclut (@pxref{Desktop Services}). Cela rend @code{nss-mdns} accessible au démon de cache du service de nom (@pxref{Base Services, @code{nscd-service}})." #. type: Plain text -#: guix-git/doc/guix.texi:34269 +#: guix-git/doc/guix.texi:34708 msgid "For convenience, the following variables provide typical NSS configurations." msgstr "Pour votre confort, les variables suivantes contiennent des configurations NSS typiques." #. type: defvr -#: guix-git/doc/guix.texi:34270 +#: guix-git/doc/guix.texi:34709 #, no-wrap msgid "{Scheme Variable} %default-nss" msgstr "{Variable Scheme} %default-nss" #. type: defvr -#: guix-git/doc/guix.texi:34273 +#: guix-git/doc/guix.texi:34712 msgid "This is the default name service switch configuration, a @code{name-service-switch} object." msgstr "C'est la configuration NSS par défaut, un objet @code{name-service-switch}." #. type: defvr -#: guix-git/doc/guix.texi:34275 +#: guix-git/doc/guix.texi:34714 #, no-wrap msgid "{Scheme Variable} %mdns-host-lookup-nss" msgstr "{Variable Scheme} %mdns-host-lookup-nss" #. type: defvr -#: guix-git/doc/guix.texi:34278 +#: guix-git/doc/guix.texi:34717 msgid "This is the name service switch configuration with support for host name lookup over multicast DNS (mDNS) for host names ending in @code{.local}." msgstr "C'est la configuration NSS avec le support de la résolution de noms sur DNS multicast (mDNS) pour les noms d'hôtes en @code{.local}." #. type: Plain text -#: guix-git/doc/guix.texi:34288 +#: guix-git/doc/guix.texi:34727 msgid "The reference for name service switch configuration is given below. It is a direct mapping of the configuration file format of the C library , so please refer to the C library manual for more information (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference Manual}). Compared to the configuration file format of libc NSS, it has the advantage not only of adding this warm parenthetic feel that we like, but also static checks: you will know about syntax errors and typos as soon as you run @command{guix system}." msgstr "La référence pour la configuration de NSS est donnée ci-dessous. C'est une correspondance directe avec le format de fichier de la bibliothèque C, donc référez-vous au manuel de la bibliothèque C pour plus d'informations (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference Manual}). Comparé au format de fichier de configuration de NSS, cette configuration a l'avantage non seulement d'ajouter ces bonnes vieilles parenthèses, mais aussi des vérifications statiques ; vous saurez s'il y a des erreurs de syntaxe et des coquilles dès que vous lancerez @command{guix system}." #. type: deftp -#: guix-git/doc/guix.texi:34289 +#: guix-git/doc/guix.texi:34728 #, no-wrap msgid "{Data Type} name-service-switch" msgstr "{Type de données} name-service-switch" #. type: deftp -#: guix-git/doc/guix.texi:34294 +#: guix-git/doc/guix.texi:34733 msgid "This is the data type representation the configuration of libc's name service switch (NSS). Each field below represents one of the supported system databases." msgstr "C'est le type de données représentant la configuration de NSS. Chaque champ ci-dessous représente l'un des système de bases de données supportés." #. type: item -#: guix-git/doc/guix.texi:34296 +#: guix-git/doc/guix.texi:34735 #, no-wrap msgid "aliases" msgstr "aliases" #. type: itemx -#: guix-git/doc/guix.texi:34297 +#: guix-git/doc/guix.texi:34736 #, no-wrap msgid "ethers" msgstr "ethers" #. type: itemx -#: guix-git/doc/guix.texi:34299 +#: guix-git/doc/guix.texi:34738 #, no-wrap msgid "gshadow" msgstr "gshadow" #. type: itemx -#: guix-git/doc/guix.texi:34300 +#: guix-git/doc/guix.texi:34739 #, no-wrap msgid "hosts" msgstr "hosts" #. type: itemx -#: guix-git/doc/guix.texi:34301 +#: guix-git/doc/guix.texi:34740 #, no-wrap msgid "initgroups" msgstr "initgroups" #. type: itemx -#: guix-git/doc/guix.texi:34302 +#: guix-git/doc/guix.texi:34741 #, no-wrap msgid "netgroup" msgstr "netgroup" #. type: itemx -#: guix-git/doc/guix.texi:34303 +#: guix-git/doc/guix.texi:34742 #, no-wrap msgid "networks" msgstr "networks" #. type: itemx -#: guix-git/doc/guix.texi:34306 +#: guix-git/doc/guix.texi:34745 #, no-wrap msgid "rpc" msgstr "rpc" #. type: itemx -#: guix-git/doc/guix.texi:34308 +#: guix-git/doc/guix.texi:34747 #, no-wrap msgid "shadow" msgstr "shadow" #. type: table -#: guix-git/doc/guix.texi:34311 +#: guix-git/doc/guix.texi:34750 msgid "The system databases handled by the NSS@. Each of these fields must be a list of @code{} objects (see below)." msgstr "Les bases de données du système gérées par NSS@. Chaque champ doit être une liste d'objets @code{} (voir plus bas)." #. type: deftp -#: guix-git/doc/guix.texi:34314 +#: guix-git/doc/guix.texi:34753 #, no-wrap msgid "{Data Type} name-service" msgstr "{Type de données} name-service" #. type: deftp -#: guix-git/doc/guix.texi:34318 +#: guix-git/doc/guix.texi:34757 msgid "This is the data type representing an actual name service and the associated lookup action." msgstr "C'est le type de données représentant un service de noms et l'action de résolution associée." #. type: table -#: guix-git/doc/guix.texi:34323 +#: guix-git/doc/guix.texi:34762 msgid "A string denoting the name service (@pxref{Services in the NSS configuration,,, libc, The GNU C Library Reference Manual})." msgstr "Une chaîne dénotant le service de nom (@pxref{Services in the NSS configuration,,, libc, The GNU C Library Reference Manual})." #. type: table -#: guix-git/doc/guix.texi:34328 +#: guix-git/doc/guix.texi:34767 msgid "Note that name services listed here must be visible to nscd. This is achieved by passing the @code{#:name-services} argument to @code{nscd-service} the list of packages providing the needed name services (@pxref{Base Services, @code{nscd-service}})." msgstr "Remarquez que les services de dnoms listés ici doivent être visibles à nscd. Cela se fait en passant la liste des paquets fournissant les services de noms à l'argument @code{#:name-services} de @code{nscd-service} (@pxref{Base Services, @code{nscd-service}})." #. type: item -#: guix-git/doc/guix.texi:34329 +#: guix-git/doc/guix.texi:34768 #, no-wrap msgid "reaction" msgstr "reaction" #. type: table -#: guix-git/doc/guix.texi:34333 +#: guix-git/doc/guix.texi:34772 msgid "An action specified using the @code{lookup-specification} macro (@pxref{Actions in the NSS configuration,,, libc, The GNU C Library Reference Manual}). For example:" msgstr "Une action spécifiée par la macro @code{lookup-specification} (@pxref{Actions in the NSS configuration,,, libc, The GNU C Library Reference Manual}). Par exemple :" #. type: lisp -#: guix-git/doc/guix.texi:34337 +#: guix-git/doc/guix.texi:34776 #, no-wrap msgid "" "(lookup-specification (unavailable => continue)\n" @@ -64485,17 +65375,17 @@ msgstr "" " (success => return))\n" #. type: Plain text -#: guix-git/doc/guix.texi:34351 +#: guix-git/doc/guix.texi:34790 msgid "For bootstrapping purposes, the Linux-Libre kernel is passed an @dfn{initial RAM disk}, or @dfn{initrd}. An initrd contains a temporary root file system as well as an initialization script. The latter is responsible for mounting the real root file system, and for loading any kernel modules that may be needed to achieve that." msgstr "Pour le démarrage, on passe au noyau Linux-Libre un @dfn{disque de RAM initial} ou @dfn{initrd}. Un initrd contient un système de fichier racine temporaire ainsi qu'un script d'initialisation. Ce dernier est responsable du montage du vrai système de fichier racine et du chargement des modules du noyau qui peuvent être nécessaires à cette tâche." #. type: Plain text -#: guix-git/doc/guix.texi:34360 +#: guix-git/doc/guix.texi:34799 msgid "The @code{initrd-modules} field of an @code{operating-system} declaration allows you to specify Linux-libre kernel modules that must be available in the initrd. In particular, this is where you would list modules needed to actually drive the hard disk where your root partition is---although the default value of @code{initrd-modules} should cover most use cases. For example, assuming you need the @code{megaraid_sas} module in addition to the default modules to be able to access your root file system, you would write:" msgstr "Le champ @code{initrd-modules} d'une déclaration @code{operating-system} vous permet de spécifier les modules du noyau Linux-Libre qui doivent être disponibles dans l'initrd. En particulier, c'est là où vous devez lister les modules requis pour effectivement piloter le disque dur où se trouve la partition racine — bien que la valeur par défaut de @code{initrd-modules} couvre la plupart des cas. Par exemple, en supposant que vous ayez besoin du module @code{megaraid_sas} en plus des modules par défaut pour accéder à votre système de fichiers racine, vous écririez :" #. type: lisp -#: guix-git/doc/guix.texi:34365 +#: guix-git/doc/guix.texi:34804 #, no-wrap msgid "" "(operating-system\n" @@ -64507,28 +65397,28 @@ msgstr "" " (initrd-modules (cons \"megaraid_sas\" %base-initrd-modules)))\n" #. type: defvr -#: guix-git/doc/guix.texi:34367 +#: guix-git/doc/guix.texi:34806 #, no-wrap msgid "{Scheme Variable} %base-initrd-modules" msgstr "{Variable Scheme} %base-initrd-modules" #. type: defvr -#: guix-git/doc/guix.texi:34369 +#: guix-git/doc/guix.texi:34808 msgid "This is the list of kernel modules included in the initrd by default." msgstr "C'est la liste des modules du noyau inclus dans l'initrd par défaut." #. type: Plain text -#: guix-git/doc/guix.texi:34377 +#: guix-git/doc/guix.texi:34816 msgid "Furthermore, if you need lower-level customization, the @code{initrd} field of an @code{operating-system} declaration allows you to specify which initrd you would like to use. The @code{(gnu system linux-initrd)} module provides three ways to build an initrd: the high-level @code{base-initrd} procedure and the low-level @code{raw-initrd} and @code{expression->initrd} procedures." msgstr "En plus, si vous avez besoin de paramétrages plus bas niveau, le champ @code{initrd} d'une déclaration @code{operating-system} vous permet de spécifier quel initrd vous voudriez utiliser. Le module @code{(gnu system linux-initrd)} fournit trois manières de construire un initrd : la procédure @code{base-initrd} de haut niveau et les procédures @code{raw-initrd} et @code{expression->initrd} de bas niveau." #. type: Plain text -#: guix-git/doc/guix.texi:34382 +#: guix-git/doc/guix.texi:34821 msgid "The @code{base-initrd} procedure is intended to cover most common uses. For example, if you want to add a bunch of kernel modules to be loaded at boot time, you can define the @code{initrd} field of the operating system declaration like this:" msgstr "La procédure @code{base-initrd} est conçue pour couvrir la plupart des usages courants. Par exemple, si vous voulez ajouter des modules du noyau à charger au démarrage, vous pouvez définir le champ @code{initrd} de votre déclaration de système d'exploitation ainsi :" #. type: lisp -#: guix-git/doc/guix.texi:34390 +#: guix-git/doc/guix.texi:34829 #, no-wrap msgid "" "(initrd (lambda (file-systems . rest)\n" @@ -64546,131 +65436,131 @@ msgstr "" " rest)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:34395 +#: guix-git/doc/guix.texi:34834 msgid "The @code{base-initrd} procedure also handles common use cases that involves using the system as a QEMU guest, or as a ``live'' system with volatile root file system." msgstr "La procédure @code{base-initrd} gère aussi les cas d'utilisation courants qui concernent l'utilisation du système comme client QEMU, ou comme un système « live » avec un système de fichier racine volatile." #. type: Plain text -#: guix-git/doc/guix.texi:34402 +#: guix-git/doc/guix.texi:34841 msgid "The @code{base-initrd} procedure is built from @code{raw-initrd} procedure. Unlike @code{base-initrd}, @code{raw-initrd} doesn't do anything high-level, such as trying to guess which kernel modules and packages should be included to the initrd. An example use of @code{raw-initrd} is when a user has a custom Linux kernel configuration and default kernel modules included by @code{base-initrd} are not available." msgstr "La procédure @code{base-initrd} est construite à partir de la procédure @code{raw-initrd}. Contrairement à @code{base-initrd}, @code{raw-initrd} ne fait rien à haut-niveau, comme essayer de deviner les modules du noyau et les paquets qui devraient être inclus dans l'initrd. Un exemple d'utilisation de @code{raw-initrd} serait si un utilisateur a une configuration personnalisée du noyau Linux et que les modules du noyau inclus par défaut par @code{base-initrd} ne sont pas disponibles." #. type: Plain text -#: guix-git/doc/guix.texi:34407 +#: guix-git/doc/guix.texi:34846 msgid "The initial RAM disk produced by @code{base-initrd} or @code{raw-initrd} honors several options passed on the Linux kernel command line (that is, arguments passed @i{via} the @code{linux} command of GRUB, or the @code{-append} option of QEMU), notably:" msgstr "Le disque de RAM initial produit par @code{base-initrd} ou @code{raw-initrd} honore plusieurs options passées par la ligne de commande du noyau Linux (c'est-à-dire les arguments passés via la commande @code{linux} de GRUB ou l'option @code{-append} de QEMU), notamment :" #. type: item -#: guix-git/doc/guix.texi:34409 +#: guix-git/doc/guix.texi:34848 #, no-wrap msgid "--load=@var{boot}" msgstr "--load=@var{boot}" #. type: table -#: guix-git/doc/guix.texi:34412 +#: guix-git/doc/guix.texi:34851 msgid "Tell the initial RAM disk to load @var{boot}, a file containing a Scheme program, once it has mounted the root file system." msgstr "Dit au disque de RAM initial de charger @var{boot}, un fichier contenant un programme Scheme, une fois qu'il a monté le système de fichier racine." #. type: table -#: guix-git/doc/guix.texi:34416 +#: guix-git/doc/guix.texi:34855 msgid "Guix uses this option to yield control to a boot program that runs the service activation programs and then spawns the GNU@tie{}Shepherd, the initialization system." msgstr "Guix utilise cette option pour donner le contrôle à un programme de démarrage qui lance les programmes d'activation de services puis démarre le GNU@tie{}Shepherd, le système d'initialisation." #. type: item -#: guix-git/doc/guix.texi:34417 +#: guix-git/doc/guix.texi:34856 #, no-wrap msgid "--root=@var{root}" msgstr "--root=@var{root}" #. type: table -#: guix-git/doc/guix.texi:34422 +#: guix-git/doc/guix.texi:34861 msgid "Mount @var{root} as the root file system. @var{root} can be a device name like @code{/dev/sda1}, a file system label, or a file system UUID. When unspecified, the device name from the root file system of the operating system declaration is used." msgstr "Monte @var{root} comme système de fichier racine. @var{root} peut être un nom de périphérique comme @code{/dev/sda1}, une étiquette de système de fichiers ou un UUID de système de fichiers. Lorsque ce n'est pas spécifié, le nom de périphérique du système de fichier racine de la déclaration de système d'exploitation est utilisé." #. type: item -#: guix-git/doc/guix.texi:34423 +#: guix-git/doc/guix.texi:34862 #, no-wrap msgid "fsck.mode=@var{mode}" msgstr "fsck.mode=@var{mode}" #. type: table -#: guix-git/doc/guix.texi:34429 +#: guix-git/doc/guix.texi:34868 msgid "Whether to check the @var{root} file system for errors before mounting it. @var{mode} is one of @code{skip} (never check), @code{force} (always check), or @code{auto} to respect the root file-system object's 'check?' setting (@pxref{File Systems}) and run a full scan only if the file system was not cleanly shut down." msgstr "Contrôle s'il faut vérifier ou pas le système de fichier @var{root} avant de le monter. @var{mode} peut valoir @code{skip} (ne jamais vérifier), @code{force} (toujours vérifier), ou @code{auto} pour respecter le réglage @code{check?} du système de fichier racine et n'exécuter une analyse complète que si le système de fichier n'a pas été éteint proprement." #. type: table -#: guix-git/doc/guix.texi:34432 +#: guix-git/doc/guix.texi:34871 msgid "@code{auto} is the default if this option is not present or if @var{mode} is not one of the above." msgstr "@code{auto} est la valeur par défaut si cette option n'est pas renseignée ou si @var{mode} n'a pas l'une des valeurs ci-dessus." #. type: item -#: guix-git/doc/guix.texi:34433 +#: guix-git/doc/guix.texi:34872 #, no-wrap msgid "fsck.repair=@var{level}" msgstr "fsck.repair=@var{niveau}" #. type: table -#: guix-git/doc/guix.texi:34438 +#: guix-git/doc/guix.texi:34877 msgid "The level of repairs to perform automatically if errors are found in the @var{root} file system. @var{level} is one of @code{no} (do not write to @var{root} at all if possible), @code{yes} (repair as much as possible), or @code{preen} to repair problems considered safe to repair automatically." msgstr "Le niveau de réparation à effectuer automatiquement si des erreurs sont détectées dans le système de fichier @var{root}. @var{level} prend les valeurs @code{no} (ne pas écrire du tout sur @var{root} si possible), @code{yes} (réparer autant que possible), ou @code{preen} pour réparer les problèmes considérés réparables automatiquement sans risque." #. type: table -#: guix-git/doc/guix.texi:34441 +#: guix-git/doc/guix.texi:34880 msgid "@code{preen} is the default if this option is not present or if @var{level} is not one of the above." msgstr "@code{preen} est la valeur par défaut si cette option n'est pas renseignée ou si @var{level} n'est pas l'une des valeurs ci-dessus." #. type: table -#: guix-git/doc/guix.texi:34445 +#: guix-git/doc/guix.texi:34884 msgid "Have @file{/run/booted-system} and @file{/run/current-system} point to @var{system}." msgstr "S'assure que @file{/run/booted-system} et @file{/run/current-system} pointent vers @var{system}." #. type: item -#: guix-git/doc/guix.texi:34446 +#: guix-git/doc/guix.texi:34885 #, no-wrap msgid "modprobe.blacklist=@var{modules}@dots{}" msgstr "modprobe.blacklist=@var{modules}@dots{}" #. type: cindex -#: guix-git/doc/guix.texi:34447 +#: guix-git/doc/guix.texi:34886 #, no-wrap msgid "module, black-listing" msgstr "module, black-list" #. type: cindex -#: guix-git/doc/guix.texi:34448 +#: guix-git/doc/guix.texi:34887 #, no-wrap msgid "black list, of kernel modules" msgstr "black-list, des modules du noyau" #. type: table -#: guix-git/doc/guix.texi:34453 +#: guix-git/doc/guix.texi:34892 msgid "Instruct the initial RAM disk as well as the @command{modprobe} command (from the kmod package) to refuse to load @var{modules}. @var{modules} must be a comma-separated list of module names---e.g., @code{usbkbd,9pnet}." msgstr "Dit au disque de RAM initial ainsi qu'à la commande @command{modprobe} (du paquet kmod) de refuser de charger @var{modules}. @var{modules} doit être une liste de noms de modules séparés par des virgules — p.@: ex.@: @code{usbkbd,9pnet}." #. type: item -#: guix-git/doc/guix.texi:34454 +#: guix-git/doc/guix.texi:34893 #, no-wrap msgid "--repl" msgstr "--repl" #. type: table -#: guix-git/doc/guix.texi:34460 +#: guix-git/doc/guix.texi:34899 msgid "Start a read-eval-print loop (REPL) from the initial RAM disk before it tries to load kernel modules and to mount the root file system. Our marketing team calls it @dfn{boot-to-Guile}. The Schemer in you will love it. @xref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}, for more information on Guile's REPL." msgstr "Démarre une boucle lecture-évaluation-affichage (REPL) depuis le disque de RAM initial avant qu'il n'essaye de charger les modules du noyau et de monter le système de fichiers racine. Notre équipe commerciale appelle cela @dfn{boot-to-Guile}. Le Schemeur en vous va adorer. @xref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}, pour plus d'information sur le REPL de Guile." #. type: Plain text -#: guix-git/doc/guix.texi:34466 +#: guix-git/doc/guix.texi:34905 msgid "Now that you know all the features that initial RAM disks produced by @code{base-initrd} and @code{raw-initrd} provide, here is how to use it and customize it further." msgstr "Maintenant que vous connaissez toutes les fonctionnalités des disques de RAM initiaux produits par @code{base-initrd} et @code{raw-initrd}, voici comment l'utiliser le personnalisé plus avant." #. type: deffn -#: guix-git/doc/guix.texi:34469 +#: guix-git/doc/guix.texi:34908 #, no-wrap msgid "{Scheme Procedure} raw-initrd @var{file-systems} @" msgstr "{Procédure Scheme} raw-initrd @var{file-systems} @" #. type: deffn -#: guix-git/doc/guix.texi:34483 +#: guix-git/doc/guix.texi:34922 msgid "[#:linux-modules '()] [#:mapped-devices '()] @ [#:keyboard-layout #f] @ [#:helper-packages '()] [#:qemu-networking? #f] [#:volatile-root? #f] Return a derivation that builds a raw initrd. @var{file-systems} is a list of file systems to be mounted by the initrd, possibly in addition to the root file system specified on the kernel command line via @option{--root}. @var{linux-modules} is a list of kernel modules to be loaded at boot time. @var{mapped-devices} is a list of device mappings to realize before @var{file-systems} are mounted (@pxref{Mapped Devices}). @var{helper-packages} is a list of packages to be copied in the initrd. It may include @code{e2fsck/static} or other packages needed by the initrd to check the root file system." msgstr "" "[#:linux-modules '()] [#:mapped-devices '()] @\n" @@ -64679,28 +65569,28 @@ msgstr "" "Renvoie une dérivation qui construit un initrd. @var{file-systems} est une liste de systèmes de fichiers à monter par l'initrd, éventuellement en plus du système de fichier racine spécifié sur la ligne de commande du noyau via @option{--root}. @var{linux-modules} est une liste de modules du noyau à charger au démarrage. @var{mapped-devices} est une liste de correspondances de périphériques à réaliser avant que les @var{file-systems} ne soient montés (@pxref{Mapped Devices}). @var{helper-packages} est une liste de paquets à copier dans l'initrd. Elle peut inclure @code{e2fsck/static} ou d'autres paquets requis par l'initrd pour vérifier le système de fichiers racine." #. type: deffn -#: guix-git/doc/guix.texi:34489 guix-git/doc/guix.texi:34513 +#: guix-git/doc/guix.texi:34928 guix-git/doc/guix.texi:34952 msgid "When true, @var{keyboard-layout} is a @code{} record denoting the desired console keyboard layout. This is done before @var{mapped-devices} are set up and before @var{file-systems} are mounted such that, should the user need to enter a passphrase or use the REPL, this happens using the intended keyboard layout." msgstr "Lorsque la valeur est vraie, @var{keyboard-layout} est un enregistrement @code{} dénotant la disposition du clavier désirée pour la console. Cela est effectuée avant que les @var{mapped-devices} ne soient créés et avant que les @var{file-systems} ne soient montés, de sorte que, si l'utilisateur au besoin de saisir une phrase de passe ou d'utiliser le REPL, cela arrive avec la disposition du clavier voulue." #. type: deffn -#: guix-git/doc/guix.texi:34493 +#: guix-git/doc/guix.texi:34932 msgid "When @var{qemu-networking?} is true, set up networking with the standard QEMU parameters. When @var{virtio?} is true, load additional modules so that the initrd can be used as a QEMU guest with para-virtualized I/O drivers." msgstr "Lorsque @var{qemu-networking?} est vrai, paramètre le réseau avec les paramètres QEMU standards. Lorsque @var{virtio?} est vrai, charge des modules supplémentaires pour que l'initrd puisse être utilisé comme client QEMU avec les pilotes I/O para-virtualisés." #. type: deffn -#: guix-git/doc/guix.texi:34496 +#: guix-git/doc/guix.texi:34935 msgid "When @var{volatile-root?} is true, the root file system is writable but any changes to it are lost." msgstr "Lorsque @var{volatile-root?} est vrai, le système de fichier racine est inscriptible mais tous les changements seront perdus." #. type: deffn -#: guix-git/doc/guix.texi:34498 +#: guix-git/doc/guix.texi:34937 #, no-wrap msgid "{Scheme Procedure} base-initrd @var{file-systems} @" msgstr "{Procédure Scheme} base-initrd @var{file-systems} @" #. type: deffn -#: guix-git/doc/guix.texi:34507 +#: guix-git/doc/guix.texi:34946 msgid "[#:mapped-devices '()] [#:keyboard-layout #f] @ [#:qemu-networking? #f] [#:volatile-root? #f] @ [#:linux-modules '()] Return as a file-like object a generic initrd, with kernel modules taken from @var{linux}. @var{file-systems} is a list of file-systems to be mounted by the initrd, possibly in addition to the root file system specified on the kernel command line via @option{--root}. @var{mapped-devices} is a list of device mappings to realize before @var{file-systems} are mounted." msgstr "" "[#:mapped-devices '()] [#:keyboard-layout #f] @\n" @@ -64709,294 +65599,294 @@ msgstr "" "Renvoie un objet simili-fichier contenant un initrd générique, avec les modules du noyau de @var{linux}. @var{file-systems} est une liste de systèmes de fichiers à monter par l'initrd, éventuellement en plus du système de fichiers racine spécifié sur la ligne de commande du noyau via @option{--root}. @var{mapped-devices} est une liste de correspondances de périphériques à réaliser avant de monter les @var{file-systems}." #. type: deffn -#: guix-git/doc/guix.texi:34515 +#: guix-git/doc/guix.texi:34954 msgid "@var{qemu-networking?} and @var{volatile-root?} behaves as in @code{raw-initrd}." msgstr "@var{qemu-networking?} et @var{volatile-root?} se comportent comme pour @code{raw-initrd}." #. type: deffn -#: guix-git/doc/guix.texi:34520 +#: guix-git/doc/guix.texi:34959 msgid "The initrd is automatically populated with all the kernel modules necessary for @var{file-systems} and for the given options. Additional kernel modules can be listed in @var{linux-modules}. They will be added to the initrd, and loaded at boot time in the order in which they appear." msgstr "L'initrd est automatiquement remplie avec tous les modules du noyau requis pour @var{file-systems} et pour les options données. On peut lister des modules supplémentaires dans @var{linux-modules}. Ils seront ajoutés à l'initrd et chargés au démarrage dans l'ordre dans lequel ils apparaissent." #. type: Plain text -#: guix-git/doc/guix.texi:34527 +#: guix-git/doc/guix.texi:34966 msgid "Needless to say, the initrds we produce and use embed a statically-linked Guile, and the initialization program is a Guile program. That gives a lot of flexibility. The @code{expression->initrd} procedure builds such an initrd, given the program to run in that initrd." msgstr "Inutile de le dire, les initrds que nous produisons et utilisons incluent une version de Guile liée statiquement, et le programme d'initialisation est un programme Guile. Cela donne beaucoup de flexibilité. La procédure @code{expression->initrd} construit un tel initrd, étant donné le programme à lancer dans cet initrd." #. type: deffn -#: guix-git/doc/guix.texi:34528 +#: guix-git/doc/guix.texi:34967 #, no-wrap msgid "{Scheme Procedure} expression->initrd @var{exp} @" msgstr "{Procédure Scheme} expression->initrd @var{exp} @" #. type: deffn -#: guix-git/doc/guix.texi:34534 +#: guix-git/doc/guix.texi:34973 msgid "[#:guile %guile-static-stripped] [#:name \"guile-initrd\"] Return as a file-like object a Linux initrd (a gzipped cpio archive) containing @var{guile} and that evaluates @var{exp}, a G-expression, upon booting. All the derivations referenced by @var{exp} are automatically copied to the initrd." msgstr "" "[#:guile %guile-static-stripped] [#:name \"guile-initrd\"]\n" "Renvoie un objet simili-fichier contenant un initrd Linux (une archive cpio compressée avec gzip) contenant @var{guile} et qui évalue @var{exp}, une G-expression, au démarrage. Toutes les dérivations référencées par @var{exp} sont automatiquement copiées dans l'initrd." #. type: cindex -#: guix-git/doc/guix.texi:34540 +#: guix-git/doc/guix.texi:34979 #, no-wrap msgid "boot loader" msgstr "chargeur d'amorçage" #. type: Plain text -#: guix-git/doc/guix.texi:34547 +#: guix-git/doc/guix.texi:34986 msgid "The operating system supports multiple bootloaders. The bootloader is configured using @code{bootloader-configuration} declaration. All the fields of this structure are bootloader agnostic except for one field, @code{bootloader} that indicates the bootloader to be configured and installed." msgstr "Le système d'exploitation supporte plusieurs chargeurs d'amorçage. La configuration du chargeur d'amorçage se fait avec la déclaration @code{bootloader-configuration}. Tous les champs de cette structure sont indépendants du chargeur d'amorçage sauf un, @code{bootloader} qui indique le chargeur d'amorçage à configurer et à installer." #. type: Plain text -#: guix-git/doc/guix.texi:34552 +#: guix-git/doc/guix.texi:34991 msgid "Some of the bootloaders do not honor every field of @code{bootloader-configuration}. For instance, the extlinux bootloader does not support themes and thus ignores the @code{theme} field." msgstr "Certains chargeurs d'amorçage ne respectent pas tous les champs de @code{bootloader-configuration}. Par exemple, le chargeur d'amorçage extlinux ne supporte pas les thèmes et ignore donc le champ @code{theme}." #. type: deftp -#: guix-git/doc/guix.texi:34553 +#: guix-git/doc/guix.texi:34992 #, no-wrap msgid "{Data Type} bootloader-configuration" msgstr "{Type de données} bootloader-configuration" #. type: deftp -#: guix-git/doc/guix.texi:34555 +#: guix-git/doc/guix.texi:34994 msgid "The type of a bootloader configuration declaration." msgstr "Le type d'une déclaration de configuration de chargeur d'amorçage." #. type: cindex -#: guix-git/doc/guix.texi:34559 +#: guix-git/doc/guix.texi:34998 #, no-wrap msgid "EFI, bootloader" msgstr "EFI, chargeur d'amorçage" #. type: cindex -#: guix-git/doc/guix.texi:34560 +#: guix-git/doc/guix.texi:34999 #, no-wrap msgid "UEFI, bootloader" msgstr "UEFI, chargeur d'amorçage" #. type: cindex -#: guix-git/doc/guix.texi:34561 +#: guix-git/doc/guix.texi:35000 #, no-wrap msgid "BIOS, bootloader" msgstr "BIOS, chargeur d'amorçage" #. type: table -#: guix-git/doc/guix.texi:34566 +#: guix-git/doc/guix.texi:35005 msgid "The bootloader to use, as a @code{bootloader} object. For now @code{grub-bootloader}, @code{grub-efi-bootloader}, @code{grub-efi-netboot-bootloader}, @code{extlinux-bootloader} and @code{u-boot-bootloader} are supported." msgstr "Le chargeur d'amorçage à utiliser, en tant qu'objet @code{bootloader}. Pour l'instant @code{grub-bootloader}, @code{grub-efi-bootloader}, @code{gru-efi-netboot-bootloader}, @code{extlinux-bootloader} et @code{u-boot-bootloader} sont pris en charge." #. type: cindex -#: guix-git/doc/guix.texi:34567 +#: guix-git/doc/guix.texi:35006 #, no-wrap msgid "ARM, bootloaders" msgstr "ARM, chargeurs d'amorçage" #. type: cindex -#: guix-git/doc/guix.texi:34568 +#: guix-git/doc/guix.texi:35007 #, no-wrap msgid "AArch64, bootloaders" msgstr "AArch64, chargeurs d'amorçage" #. type: table -#: guix-git/doc/guix.texi:34573 +#: guix-git/doc/guix.texi:35012 msgid "Available bootloaders are described in @code{(gnu bootloader @dots{})} modules. In particular, @code{(gnu bootloader u-boot)} contains definitions of bootloaders for a wide range of ARM and AArch64 systems, using the @uref{https://www.denx.de/wiki/U-Boot/, U-Boot bootloader}." msgstr "Les chargeurs d'amorçage disponibles sont décrits dans les modules @code{(gnu bootloader @dots{})}. En particulier, @code{(gnu bootloader u-boot)} contient des définitions de chargeurs d'amorçage pour une large gamme de systèmes ARM et AArch, à l'aide du @uref{https://www.denx.de/wiki/U-Boot/, chargeur d'amorçage U-Boot}." #. type: table -#: guix-git/doc/guix.texi:34579 +#: guix-git/doc/guix.texi:35018 msgid "@code{grub-efi-bootloader} allows to boot on modern systems using the @dfn{Unified Extensible Firmware Interface} (UEFI). This is what you should use if the installation image contains a @file{/sys/firmware/efi} directory when you boot it on your system." msgstr "@code{grub-efi-bootloader} permet de démarrer sur un système moderne qui utilise l'UEFI (@dfn{Unified Extensible Firmware Interface}). C'est ce que vous devriez utiliser si l'image d'installation contient un répertoire @file{/sys/firmware/efi} lorsque vous démarrez dessus sur votre machine." #. type: table -#: guix-git/doc/guix.texi:34583 +#: guix-git/doc/guix.texi:35022 msgid "@code{grub-bootloader} allows you to boot in particular Intel-based machines in ``legacy'' BIOS mode." msgstr "@code{grub-bootloader} vous permet de démarrer en particulier sur des machines Intel en mode BIOS « legacy »." #. type: vindex -#: guix-git/doc/guix.texi:34584 +#: guix-git/doc/guix.texi:35023 #, no-wrap msgid "grub-efi-netboot-bootloader" msgstr "grub-efi-netboot-bootloader" #. type: table -#: guix-git/doc/guix.texi:34588 +#: guix-git/doc/guix.texi:35027 msgid "@code{grub-efi-netboot-bootloader} allows you to boot your system over network through TFTP@. In combination with an NFS root file system this allows you to build a diskless Guix system." msgstr "@code{grub-efi-netboot-bootloader} vous permet de démarrer votre système via le réseau avec TFTP@. En plus d'un système de fichier racine NFS, cela vous permet de démarrer un système Guix sans disque." #. type: table -#: guix-git/doc/guix.texi:34594 +#: guix-git/doc/guix.texi:35033 msgid "The installation of the @code{grub-efi-netboot-bootloader} generates the content of the TFTP root directory at @code{targets} (@pxref{Bootloader Configuration, @code{targets}}), to be served by a TFTP server. You may want to mount your TFTP server directories onto the @code{targets} to move the required files to the TFTP server automatically." msgstr "L'installation de @code{ggrub-efi-netboot-bootloader} génère le contenu du répertoire racine TFTP sur @code{targets} (@pxref{Bootloader Configuration, @code{targets}}), qui sera servi par un serveur TFTP. Vous pouvez maintenant monter les répertoires du serveur TFTP directement sur @code{targets} pour déplacer les fichiers requis vers le serveur TFTP automatiquement." #. type: table -#: guix-git/doc/guix.texi:34603 +#: guix-git/doc/guix.texi:35042 msgid "If you plan to use an NFS root file system as well (actually if you mount the store from an NFS share), then the TFTP server needs to serve the file @file{/boot/grub/grub.cfg} and other files from the store (like GRUBs background image, the kernel (@pxref{operating-system Reference, @code{kernel}}) and the initrd (@pxref{operating-system Reference, @code{initrd}})), too. All these files from the store will be accessed by GRUB through TFTP with their normal store path, for example as @file{tftp://tftp-server/gnu/store/…-initrd/initrd.cpio.gz}." msgstr "Si vous voulez aussi utiliser un système de fichier racine NFS (en fait si vous montez le dépôt depuis un partage NFS), alors le serveur TFTP doit aussi servir le fichier @file{/boot/grub/grub.cfg} et d'autres fichiers à partir du dépôt (comme l'image de fond de GRUB, le noyau (@pxref{operating-system Reference, @code{kernel}}) et l'initrd (@pxref{operating-system Reference, @code{initrd}})). Tous ces fichiers du dépôt seront accessibles pour GRUB à travers TFTP avec leurs chemins normaux, par exemple @file{tftp://tftp-server/gnu/store/…-initrd/initrd.cpio.gz}." #. type: table -#: guix-git/doc/guix.texi:34612 +#: guix-git/doc/guix.texi:35051 msgid "Two symlinks are created to make this possible. For each target in the @code{targets} field, the first symlink is @samp{target}@file{/efi/Guix/boot/grub/grub.cfg} pointing to @file{../../../boot/grub/grub.cfg}, where @samp{target} may be @file{/boot}. In this case the link is not leaving the served TFTP root directory, but otherwise it does. The second link is @samp{target}@file{/gnu/store} and points to @file{../gnu/store}. This link is leaving the served TFTP root directory." msgstr "Deux liens symboliques sont créés pour rendre cela possible. Pour chaque cible du champ @code{targets}, le premier lien est @samp{target}@file{/efi/Guix/boot/grub/grub.cfg} pointant vers @file{../../../boot/grub/grub.cfg}, où @samp{target} peut être @file{/boot}. Dans ce cas le lien ne quitte pas le répertoire racine du serveur TFTP. Le second lien est @samp{target}@file{/gnu/store} qui pointe vers @file{../gnu/store}. Ce lien est en dehors du répertoire racine du serveur TFTP." #. type: table -#: guix-git/doc/guix.texi:34618 +#: guix-git/doc/guix.texi:35057 msgid "The assumption behind all this is that you have an NFS server exporting the root file system for your Guix system, and additionally a TFTP server exporting your @code{targets} directories—usually a single @file{/boot}—from that same root file system for your Guix system. In this constellation the symlinks will work." msgstr "L'hypothèse derrière tout ceci est que vous avez un serveur NFS qui exporte le système de fichiers racine de votre système Guix, et en plus, un serveur TFTP qui exporte vos répertoires @code{targets} — habituellement @file{/boot} uniquement — à partir du même système de fichiers racine que votre système Guix. Dans ce cas les liens symboliques vont fonctionner." #. type: table -#: guix-git/doc/guix.texi:34623 +#: guix-git/doc/guix.texi:35062 msgid "For other constellations you will have to program your own bootloader installer, which then takes care to make necessary files from the store accessible through TFTP, for example by copying them into the TFTP root directory to your @code{targets}." msgstr "Pour d'autres cas vous devrez programmer votre propre installateur de chargeur d'amorçage qui rende les fichiers nécessaires du dépôt disponibles à travers TFTP, par exemple en les copiant vers la racine du répertoire de TFTP vers vos @code{targets}." #. type: table -#: guix-git/doc/guix.texi:34628 +#: guix-git/doc/guix.texi:35067 msgid "It is important to note that symlinks pointing outside the TFTP root directory may need to be allowed in the configuration of your TFTP server. Further the store link exposes the whole store through TFTP@. Both points need to be considered carefully for security aspects." msgstr "Il est important de remarquer que les liens symboliques pointant hors du répertoire racine de TFTP peuvent ne pas être permis par dans configuration de votre serveur TFTP@. De plus le lien vers le dépôt expose la totalité de celui-ci à travers TFTP. Ces deux points sont à prendre en compte pour les aspects de sécurité." #. type: table -#: guix-git/doc/guix.texi:34633 +#: guix-git/doc/guix.texi:35072 msgid "Beside the @code{grub-efi-netboot-bootloader}, the already mentioned TFTP and NFS servers, you also need a properly configured DHCP server to make the booting over netboot possible. For all this we can currently only recommend you to look for instructions about @acronym{PXE, Preboot eXecution Environment}." msgstr "En dehors de @code{grub-efi-netboot-bootloader}, des serveurs TFTP et NFS déjà mentionnés, vous pouvez utiliser un serveur DHCP correctement configuré pour permettre le démarrage réseau. Pour cela nous ne pouvons que vous recommander de regarder les instructions sur @acronym{PXE, Preboot eXecution Environment}." #. type: table -#: guix-git/doc/guix.texi:34637 +#: guix-git/doc/guix.texi:35076 msgid "This is a list of strings denoting the targets onto which to install the bootloader." msgstr "C'est une liste de chaînes qui dénotent les cibles sur lesquelles installer le chargeur d'amorçage." #. type: table -#: guix-git/doc/guix.texi:34647 +#: guix-git/doc/guix.texi:35086 msgid "The interpretation of targets depends on the bootloader in question. For @code{grub-bootloader}, for example, they should be device names understood by the bootloader @command{installer} command, such as @code{/dev/sda} or @code{(hd0)} (@pxref{Invoking grub-install,,, grub, GNU GRUB Manual}). For @code{grub-efi-bootloader}, they should be mount points of the EFI file system, usually @file{/boot/efi}. For @code{grub-efi-netboot-bootloader}, @code{targets} should be the mount points corresponding to TFTP root directories served by your TFTP server." msgstr "L'interprétation des cibles dépend du chargeur d'amorçage en question. Pour @code{grub-bootloader} par exemple, cela devrait être le nom des périphériques compris par la commande @command{installer} du chargeur d'amorçage, comme @code{/dev/sda} ou @code{(hd0)} (@pxref{Invoking grub-install,,, grub, GNU GRUB Manual}). Pour @code{grub-efi-bootloader}, cela devrait être les points de montage des systèmes de fichiers EFI, typiquement @file{/boot/efi}. Pour @code{grub-efi-netboot-bootloader}, @code{targets} doit contenir les points de montage correspondant aux répertoires racines de TFTP sur votre serveur TFTP." #. type: item -#: guix-git/doc/guix.texi:34648 +#: guix-git/doc/guix.texi:35087 #, no-wrap msgid "@code{menu-entries} (default: @code{()})" msgstr "@code{menu-entries} (par défaut : @code{()})" #. type: table -#: guix-git/doc/guix.texi:34652 +#: guix-git/doc/guix.texi:35091 msgid "A possibly empty list of @code{menu-entry} objects (see below), denoting entries to appear in the bootloader menu, in addition to the current system entry and the entry pointing to previous system generations." msgstr "Une liste éventuellement vide d'objets @code{menu-entry} (voir plus bas), dénotant les entrées qui doivent apparaître dans le menu du chargeur d'amorçage, en plus de l'entrée pour le système actuel et l'entrée pointant vers les générations précédentes." #. type: item -#: guix-git/doc/guix.texi:34653 +#: guix-git/doc/guix.texi:35092 #, no-wrap msgid "@code{default-entry} (default: @code{0})" msgstr "@code{default-entry} (par défaut : @code{0})" #. type: table -#: guix-git/doc/guix.texi:34656 +#: guix-git/doc/guix.texi:35095 msgid "The index of the default boot menu entry. Index 0 is for the entry of the current system." msgstr "L'index de l'entrée du menu de démarrage par défaut. L'index 0 correspond au système actuel." #. type: item -#: guix-git/doc/guix.texi:34657 +#: guix-git/doc/guix.texi:35096 #, no-wrap msgid "@code{timeout} (default: @code{5})" msgstr "@code{timeout} (par défaut : @code{5})" #. type: table -#: guix-git/doc/guix.texi:34660 +#: guix-git/doc/guix.texi:35099 msgid "The number of seconds to wait for keyboard input before booting. Set to 0 to boot immediately, and to -1 to wait indefinitely." msgstr "Le nombre de secondes à attendre une entrée clavier avant de démarrer. Indiquez 0 pour démarre immédiatement, et -1 pour attendre indéfiniment." #. type: cindex -#: guix-git/doc/guix.texi:34661 +#: guix-git/doc/guix.texi:35100 #, no-wrap msgid "keyboard layout, for the bootloader" msgstr "disposition du clavier, pour le chargeur d'amorçage" #. type: table -#: guix-git/doc/guix.texi:34665 +#: guix-git/doc/guix.texi:35104 msgid "If this is @code{#f}, the bootloader's menu (if any) uses the default keyboard layout, usually US@tie{}English (``qwerty'')." msgstr "Si c'est @code{#f}, le menu du chargeur d'amorçage (s'il y en a un) utilise la disposition du clavier par défaut, normalement pour l'anglais américain (« qwerty »)." #. type: table -#: guix-git/doc/guix.texi:34668 +#: guix-git/doc/guix.texi:35107 msgid "Otherwise, this must be a @code{keyboard-layout} object (@pxref{Keyboard Layout})." msgstr "Sinon, cela doit être un objet @code{keyboard-layout} (@pxref{Keyboard Layout})." #. type: quotation -#: guix-git/doc/guix.texi:34672 +#: guix-git/doc/guix.texi:35111 msgid "This option is currently ignored by bootloaders other than @code{grub} and @code{grub-efi}." msgstr "Cette option est actuellement ignorée par les chargeurs d'amorçage autre que @code{grub} et @code{grub-efi}." #. type: item -#: guix-git/doc/guix.texi:34674 +#: guix-git/doc/guix.texi:35113 #, no-wrap msgid "@code{theme} (default: @var{#f})" msgstr "@code{theme} (par défaut : @var{#f})" #. type: table -#: guix-git/doc/guix.texi:34678 +#: guix-git/doc/guix.texi:35117 msgid "The bootloader theme object describing the theme to use. If no theme is provided, some bootloaders might use a default theme, that's true for GRUB." msgstr "L'objet de thème du chargeur d'amorçage décrivant le thème utilisé. Si aucun thème n'est fournit, certains chargeurs d'amorçage peuvent utiliser un thème par défaut, c'est le cas de GRUB." #. type: item -#: guix-git/doc/guix.texi:34679 +#: guix-git/doc/guix.texi:35118 #, no-wrap msgid "@code{terminal-outputs} (default: @code{'(gfxterm)})" msgstr "@code{terminal-outputs} (par défaut : @code{'(gfxterm)})" #. type: table -#: guix-git/doc/guix.texi:34686 +#: guix-git/doc/guix.texi:35125 msgid "The output terminals used for the bootloader boot menu, as a list of symbols. GRUB accepts the values: @code{console}, @code{serial}, @code{serial_@{0-3@}}, @code{gfxterm}, @code{vga_text}, @code{mda_text}, @code{morse}, and @code{pkmodem}. This field corresponds to the GRUB variable @code{GRUB_TERMINAL_OUTPUT} (@pxref{Simple configuration,,, grub,GNU GRUB manual})." msgstr "Les terminaux de sortie utilisés par le menu de démarrage du chargeur d'amorçage, en tant que liste de symboles. GRUB accepte les valeurs @code{console}, @code{serial}, @code{serial_@{0-3@}}, @code{gfxterm}, @code{vga_text}, @code{mda_text}, @code{morse} et @code{pkmodem}. Ce champ correspond à la variable GRUB @code{GRUB_TERMINAL_OUTPUT} (@pxref{Simple configuration,,, grub,GNU GRUB manual})." #. type: item -#: guix-git/doc/guix.texi:34687 +#: guix-git/doc/guix.texi:35126 #, no-wrap msgid "@code{terminal-inputs} (default: @code{'()})" msgstr "@code{terminal-inputs} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:34695 +#: guix-git/doc/guix.texi:35134 msgid "The input terminals used for the bootloader boot menu, as a list of symbols. For GRUB, the default is the native platform terminal as determined at run-time. GRUB accepts the values: @code{console}, @code{serial}, @code{serial_@{0-3@}}, @code{at_keyboard}, and @code{usb_keyboard}. This field corresponds to the GRUB variable @code{GRUB_TERMINAL_INPUT} (@pxref{Simple configuration,,, grub,GNU GRUB manual})." msgstr "Les terminaux d'entrée utilisés par le menu de démarrage du chargeur d'amorçage, en tant que liste de symboles. Pour GRUB, la valeur par défaut est le terminal natif de la plate-forme déterminé à l'exécution. GRUB accepte les valeurs @code{console}, @code{serial}, @code{serial_@{0-3@}}, @code{at_keyboard} et @code{usb_keyboard}. Ce champ correspond à la variable GRUB @code{GRUB_TERMINAL_INPUT} (@pxref{Simple configuration,,, grub,GNU GRUB manual})." #. type: item -#: guix-git/doc/guix.texi:34696 +#: guix-git/doc/guix.texi:35135 #, no-wrap msgid "@code{serial-unit} (default: @code{#f})" msgstr "@code{serial-unit} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:34700 +#: guix-git/doc/guix.texi:35139 msgid "The serial unit used by the bootloader, as an integer from 0 to 3. For GRUB, it is chosen at run-time; currently GRUB chooses 0, which corresponds to COM1 (@pxref{Serial terminal,,, grub,GNU GRUB manual})." msgstr "L'unitié série utilisée par le chargeur d'amorçage, en tant qu'entier entre 0 et 3. Pour GRUB, il est choisi à l'exécution ; actuellement GRUB choisi 0, ce qui correspond à COM1 (@pxref{Serial terminal,,, grub,GNU GRUB manual})." #. type: item -#: guix-git/doc/guix.texi:34701 +#: guix-git/doc/guix.texi:35140 #, no-wrap msgid "@code{serial-speed} (default: @code{#f})" msgstr "@code{serial-speed} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:34705 +#: guix-git/doc/guix.texi:35144 msgid "The speed of the serial interface, as an integer. For GRUB, the default value is chosen at run-time; currently GRUB chooses 9600@tie{}bps (@pxref{Serial terminal,,, grub,GNU GRUB manual})." msgstr "La vitesse de l'interface série, en tant qu'entier. Pour GRUB, la valeur par défaut est choisie à l'exécution ; actuellement GRUB choisi 9600@tie{}bps (@pxref{Serial terminal,,, grub,GNU GRUB manual})." #. type: cindex -#: guix-git/doc/guix.texi:34709 +#: guix-git/doc/guix.texi:35148 #, no-wrap msgid "dual boot" msgstr "dual boot" #. type: cindex -#: guix-git/doc/guix.texi:34710 +#: guix-git/doc/guix.texi:35149 #, no-wrap msgid "boot menu" msgstr "menu de démarrage" #. type: Plain text -#: guix-git/doc/guix.texi:34716 +#: guix-git/doc/guix.texi:35155 msgid "Should you want to list additional boot menu entries @i{via} the @code{menu-entries} field above, you will need to create them with the @code{menu-entry} form. For example, imagine you want to be able to boot another distro (hard to imagine!), you can define a menu entry along these lines:" msgstr "Si vous voulez lister des entrées du menu de démarrage supplémentaires via le champ @code{menu-entries} ci-dessus, vous devrez les créer avec la forme @code{menu-entry}. Par exemple, imaginons que vous souhaitiez pouvoir démarrer sur une autre distro (c'est difficile à concevoir !), vous pourriez alors définir une entrée du menu comme ceci :" #. type: lisp -#: guix-git/doc/guix.texi:34723 +#: guix-git/doc/guix.texi:35162 #, no-wrap msgid "" "(menu-entry\n" @@ -65012,132 +65902,132 @@ msgstr "" " (initrd \"/boot/old/initrd\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:34726 +#: guix-git/doc/guix.texi:35165 msgid "Details below." msgstr "Les détails suivent." #. type: deftp -#: guix-git/doc/guix.texi:34727 +#: guix-git/doc/guix.texi:35166 #, no-wrap msgid "{Data Type} menu-entry" msgstr "{Type de données} menu-entry" #. type: deftp -#: guix-git/doc/guix.texi:34729 +#: guix-git/doc/guix.texi:35168 msgid "The type of an entry in the bootloader menu." msgstr "Le type d'une entrée dans le menu du chargeur d'amorçage." #. type: table -#: guix-git/doc/guix.texi:34734 +#: guix-git/doc/guix.texi:35173 msgid "The label to show in the menu---e.g., @code{\"GNU\"}." msgstr "L'étiquette à montrer dans le menu — p.@: ex.@: @code{\"GNU\"}." #. type: item -#: guix-git/doc/guix.texi:34735 +#: guix-git/doc/guix.texi:35174 #, no-wrap msgid "@code{linux} (default: @code{#f})" msgstr "@code{linux} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:34737 +#: guix-git/doc/guix.texi:35176 msgid "The Linux kernel image to boot, for example:" msgstr "L'image du noyau Linux à démarrer, par exemple :" #. type: lisp -#: guix-git/doc/guix.texi:34740 +#: guix-git/doc/guix.texi:35179 #, no-wrap msgid "(file-append linux-libre \"/bzImage\")\n" msgstr "(file-append linux-libre \"/bzImage\")\n" #. type: table -#: guix-git/doc/guix.texi:34745 +#: guix-git/doc/guix.texi:35184 msgid "For GRUB, it is also possible to specify a device explicitly in the file path using GRUB's device naming convention (@pxref{Naming convention,,, grub, GNU GRUB manual}), for example:" msgstr "Pour GRUB, il est aussi possible de spécifier un périphérique explicitement dans le chemin de fichier avec la convention de nommage de GRUB (@pxref{Naming convention,,, grub, GNU GRUB manual}), par exemple :" #. type: example -#: guix-git/doc/guix.texi:34748 +#: guix-git/doc/guix.texi:35187 #, no-wrap msgid "\"(hd0,msdos1)/boot/vmlinuz\"\n" msgstr "\"(hd0,msdos1)/boot/vmlinuz\"\n" #. type: table -#: guix-git/doc/guix.texi:34752 +#: guix-git/doc/guix.texi:35191 msgid "If the device is specified explicitly as above, then the @code{device} field is ignored entirely." msgstr "Si le périphérique est spécifié explicitement comme au-dessus, le champ @code{device} est complètement ignoré." #. type: item -#: guix-git/doc/guix.texi:34753 +#: guix-git/doc/guix.texi:35192 #, no-wrap msgid "@code{linux-arguments} (default: @code{()})" msgstr "@code{linux-arguments} (par défaut : @code{()})" #. type: table -#: guix-git/doc/guix.texi:34756 +#: guix-git/doc/guix.texi:35195 msgid "The list of extra Linux kernel command-line arguments---e.g., @code{(\"console=ttyS0\")}." msgstr "La liste des arguments de la ligne de commande du noyau supplémentaires — p.@: ex.@: @code{(\"console=ttyS0\")}." #. type: item -#: guix-git/doc/guix.texi:34757 +#: guix-git/doc/guix.texi:35196 #, no-wrap msgid "@code{initrd} (default: @code{#f})" msgstr "@code{initrd} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:34760 +#: guix-git/doc/guix.texi:35199 msgid "A G-Expression or string denoting the file name of the initial RAM disk to use (@pxref{G-Expressions})." msgstr "Une G-expression ou une chaîne dénotant le nom de fichier du disque de RAM initial à utiliser (@pxref{G-Expressions})." #. type: table -#: guix-git/doc/guix.texi:34764 +#: guix-git/doc/guix.texi:35203 msgid "The device where the kernel and initrd are to be found---i.e., for GRUB, @dfn{root} for this menu entry (@pxref{root,,, grub, GNU GRUB manual})." msgstr "Le périphérique où le noyau et l'initrd se trouvent — c.-à-d.@: pour GRUB, l'option @dfn{root} de cette entrée de menu (@pxref{root,,, grub, GNU GRUB manual})." #. type: table -#: guix-git/doc/guix.texi:34770 +#: guix-git/doc/guix.texi:35209 msgid "This may be a file system label (a string), a file system UUID (a bytevector, @pxref{File Systems}), or @code{#f}, in which case the bootloader will search the device containing the file specified by the @code{linux} field (@pxref{search,,, grub, GNU GRUB manual}). It must @emph{not} be an OS device name such as @file{/dev/sda1}." msgstr "Cela peut être une étiquette de système de fichiers (une chaîne), un UUID de système de fichiers (un vecteur d'octets, @pxref{File Systems}) ou @code{#f}, auquel cas le chargeur d'amorçage recherchera le périphérique contenant le fichier spécifié par le champ @code{linux} (@pxref{search,,, grub, GNU GRUB manual}). Cela ne doit @emph{pas} être un nom de périphérique donné par l'OS comme @file{/dev/sda1}." #. type: item -#: guix-git/doc/guix.texi:34771 +#: guix-git/doc/guix.texi:35210 #, no-wrap msgid "@code{multiboot-kernel} (default: @code{#f})" msgstr "@code{multiboot-kernel} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:34775 +#: guix-git/doc/guix.texi:35214 msgid "The kernel to boot in Multiboot-mode (@pxref{multiboot,,, grub, GNU GRUB manual}). When this field is set, a Multiboot menu-entry is generated. For example:" msgstr "Le noyau à démarrer en mode Multiboot (@pxref{multiboot,,, grub, GNU GRUB manual}). Lorsque ce champ est spécifié, une entrée de menu Multiboot est générée. Par exemple :" #. type: lisp -#: guix-git/doc/guix.texi:34778 +#: guix-git/doc/guix.texi:35217 #, no-wrap msgid "(file-append mach \"/boot/gnumach\")\n" msgstr "(file-append mach \"/boot/gnumach\")\n" #. type: item -#: guix-git/doc/guix.texi:34780 +#: guix-git/doc/guix.texi:35219 #, no-wrap msgid "@code{multiboot-arguments} (default: @code{()})" msgstr "@code{multiboot-arguments} (par défaut : @code{()})" #. type: table -#: guix-git/doc/guix.texi:34782 +#: guix-git/doc/guix.texi:35221 msgid "The list of extra command-line arguments for the multiboot-kernel." msgstr "Liste d'arguments de la ligne de commande supplémentaires pour le multiboot-kernel." #. type: item -#: guix-git/doc/guix.texi:34783 +#: guix-git/doc/guix.texi:35222 #, no-wrap msgid "@code{multiboot-modules} (default: @code{()})" msgstr "@code{multiboot-modules} (par défaut : @code{()})" #. type: table -#: guix-git/doc/guix.texi:34785 +#: guix-git/doc/guix.texi:35224 msgid "The list of commands for loading Multiboot modules. For example:" msgstr "Liste de commandes pour charger les modules Multiboot. Par exemple :" #. type: lisp -#: guix-git/doc/guix.texi:34791 +#: guix-git/doc/guix.texi:35230 #, no-wrap msgid "" "(list (list (file-append hurd \"/hurd/ext2fs.static\") \"ext2fs\"\n" @@ -65151,73 +66041,73 @@ msgstr "" " @dots{}))\n" #. type: cindex -#: guix-git/doc/guix.texi:34796 guix-git/doc/guix.texi:34855 +#: guix-git/doc/guix.texi:35235 guix-git/doc/guix.texi:35294 #, no-wrap msgid "HDPI" msgstr "HDPI" #. type: cindex -#: guix-git/doc/guix.texi:34797 guix-git/doc/guix.texi:34856 +#: guix-git/doc/guix.texi:35236 guix-git/doc/guix.texi:35295 #, no-wrap msgid "HiDPI" msgstr "HiDPI" #. type: cindex -#: guix-git/doc/guix.texi:34798 guix-git/doc/guix.texi:34857 +#: guix-git/doc/guix.texi:35237 guix-git/doc/guix.texi:35296 #, no-wrap msgid "resolution" msgstr "resolution" #. type: Plain text -#: guix-git/doc/guix.texi:34802 +#: guix-git/doc/guix.texi:35241 msgid "For now only GRUB has theme support. GRUB themes are created using the @code{grub-theme} form, which is not fully documented yet." msgstr "Pour l'instant seul GRUB prend en charge les thèmes. On crée un thème GRUB avec la forme @code{grub-theme}, qui n'est pas encore complètement documentée." #. type: deftp -#: guix-git/doc/guix.texi:34803 +#: guix-git/doc/guix.texi:35242 #, no-wrap msgid "{Data Type} grub-theme" msgstr "{Type de données} grub-theme" #. type: deftp -#: guix-git/doc/guix.texi:34805 +#: guix-git/doc/guix.texi:35244 msgid "Data type representing the configuration of the GRUB theme." msgstr "Type de données représentant la configuration du thème GRUB." #. type: item -#: guix-git/doc/guix.texi:34807 +#: guix-git/doc/guix.texi:35246 #, no-wrap msgid "@code{gfxmode} (default: @code{'(\"auto\")})" msgstr "@code{gfxmode} (par défaut : @code{'(\"auto\")})" #. type: table -#: guix-git/doc/guix.texi:34810 +#: guix-git/doc/guix.texi:35249 msgid "The GRUB @code{gfxmode} to set (a list of screen resolution strings, @pxref{gfxmode,,, grub, GNU GRUB manual})." msgstr "Le @code{gfxmode} de GRUB à utiliser (une liste de chaines de résolution d'écran, @pxref{gfxmode,,, grub, GNU GRUB manual})." #. type: deffn -#: guix-git/doc/guix.texi:34813 +#: guix-git/doc/guix.texi:35252 #, no-wrap msgid "{Scheme Procedure} grub-theme" msgstr "{Procédure Scheme} grub-theme" #. type: deffn -#: guix-git/doc/guix.texi:34817 +#: guix-git/doc/guix.texi:35256 msgid "Return the default GRUB theme used by the operating system if no @code{theme} field is specified in @code{bootloader-configuration} record." msgstr "Renvoie le thème par défaut de GRUB utilisé par le système d'exploitation si aucun champ @code{theme} n'est spécifié dans l'enregistrement @code{bootloader-configuration}." #. type: deffn -#: guix-git/doc/guix.texi:34820 +#: guix-git/doc/guix.texi:35259 msgid "It comes with a fancy background image displaying the GNU and Guix logos." msgstr "Il contient une image de fond sympathique avec les logos de GNU et de Guix." #. type: Plain text -#: guix-git/doc/guix.texi:34824 +#: guix-git/doc/guix.texi:35263 msgid "For example, to override the default resolution, you may use something like" msgstr "Par exemple, pour changer la résolution par défaut, vous pouvez utiliser quelque chose comme" #. type: lisp -#: guix-git/doc/guix.texi:34832 +#: guix-git/doc/guix.texi:35271 #, no-wrap msgid "" "(bootloader\n" @@ -65235,40 +66125,40 @@ msgstr "" " (gfxmode '(\"1024x786x32\" \"auto\"))))))\n" #. type: section -#: guix-git/doc/guix.texi:34835 +#: guix-git/doc/guix.texi:35274 #, no-wrap msgid "Invoking @code{guix system}" msgstr "Invoquer @code{guix system}" #. type: Plain text -#: guix-git/doc/guix.texi:34840 +#: guix-git/doc/guix.texi:35279 msgid "Once you have written an operating system declaration as seen in the previous section, it can be @dfn{instantiated} using the @command{guix system} command. The synopsis is:" msgstr "Une fois que vous avez écrit une déclaration de système d'exploitation comme nous l'avons vu dans les sections précédentes, elle peut être instanciée avec la commande @command{guix system}. Voici le résumé de la commande :" #. type: example -#: guix-git/doc/guix.texi:34843 +#: guix-git/doc/guix.texi:35282 #, no-wrap msgid "guix system @var{options}@dots{} @var{action} @var{file}\n" msgstr "guix system @var{options}@dots{} @var{action} @var{file}\n" #. type: Plain text -#: guix-git/doc/guix.texi:34849 +#: guix-git/doc/guix.texi:35288 msgid "@var{file} must be the name of a file containing an @code{operating-system} declaration. @var{action} specifies how the operating system is instantiated. Currently the following values are supported:" msgstr "@var{file} doit être le nom d'un fichier contenant une déclaration @code{operating-system}. @var{action} spécifie comme le système d'exploitation est instancié. Actuellement les valeurs suivantes sont supportées :" #. type: item -#: guix-git/doc/guix.texi:34851 guix-git/doc/guix.texi:37496 +#: guix-git/doc/guix.texi:35290 guix-git/doc/guix.texi:37992 #, no-wrap msgid "search" msgstr "search" #. type: table -#: guix-git/doc/guix.texi:34854 +#: guix-git/doc/guix.texi:35293 msgid "Display available service type definitions that match the given regular expressions, sorted by relevance:" msgstr "Affiche les définitions des types de services disponibles qui correspondent aux expressions régulières données, triées par pertinence :" #. type: example -#: guix-git/doc/guix.texi:34876 +#: guix-git/doc/guix.texi:35315 #, no-wrap msgid "" "$ guix system search console\n" @@ -65310,7 +66200,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:34882 +#: guix-git/doc/guix.texi:35321 #, no-wrap msgid "" "name: mingetty\n" @@ -65328,7 +66218,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:34889 +#: guix-git/doc/guix.texi:35328 #, no-wrap msgid "" "name: login\n" @@ -65348,72 +66238,72 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:34891 guix-git/doc/guix.texi:37549 +#: guix-git/doc/guix.texi:35330 guix-git/doc/guix.texi:38028 #, no-wrap msgid "@dots{}\n" msgstr "@dots{}\n" #. type: table -#: guix-git/doc/guix.texi:34896 guix-git/doc/guix.texi:37554 +#: guix-git/doc/guix.texi:35335 msgid "As for @command{guix package --search}, the result is written in @code{recutils} format, which makes it easy to filter the output (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "Comme pour @command{guix package --search}, le résultat est écrit au format @code{recutils}, ce qui rend facile le filtrage de la sortie (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." #. type: item -#: guix-git/doc/guix.texi:34897 guix-git/doc/guix.texi:37555 +#: guix-git/doc/guix.texi:35336 guix-git/doc/guix.texi:38034 #, no-wrap msgid "reconfigure" msgstr "reconfigure" #. type: table -#: guix-git/doc/guix.texi:34902 +#: guix-git/doc/guix.texi:35341 msgid "Build the operating system described in @var{file}, activate it, and switch to it@footnote{This action (and the related actions @code{switch-generation} and @code{roll-back}) are usable only on systems already running Guix System.}." msgstr "Construit le système d'exploitation décrit dans @var{file}, l'active et passe dessus@footnote{Cette action (et les action liées que sont @code{switch-generation} et @code{roll-back}) ne sont utilisables que sur les systèmes sous Guix System.}." #. type: quotation -#: guix-git/doc/guix.texi:34910 +#: guix-git/doc/guix.texi:35349 msgid "It is highly recommended to run @command{guix pull} once before you run @command{guix system reconfigure} for the first time (@pxref{Invoking guix pull}). Failing to do that you would see an older version of Guix once @command{reconfigure} has completed." msgstr "Il est grandement recommandé de lancer @command{guix pull} une fois avant de lancer @command{guix system reconfigure} pour la première fois (@pxref{Invoking guix pull}). Sans cela, vous verriez une version plus ancienne de Guix une fois @command{reconfigure} terminé." #. type: table -#: guix-git/doc/guix.texi:34918 +#: guix-git/doc/guix.texi:35357 msgid "This effects all the configuration specified in @var{file}: user accounts, system services, global package list, setuid programs, etc. The command starts system services specified in @var{file} that are not currently running; if a service is currently running this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop X} or @code{herd restart X})." msgstr "Cela met en application toute la configuration spécifiée dans @var{file} : les comptes utilisateurs, les services du système, la liste globale des paquets, les programmes setuid, etc. La commande démarre les services systèmes spécifiés dans @var{file} qui ne sont pas actuellement lancés ; si un service est actuellement exécuté cette commande s'arrange pour qu'il soit mis à jour la prochaine fois qu'il est stoppé (p.@: ex@: par @code{herd stop X} ou @code{herd restart X})." #. type: table -#: guix-git/doc/guix.texi:34924 +#: guix-git/doc/guix.texi:35363 msgid "This command creates a new generation whose number is one greater than the current generation (as reported by @command{guix system list-generations}). If that generation already exists, it will be overwritten. This behavior mirrors that of @command{guix package} (@pxref{Invoking guix package})." msgstr "Cette commande crée une nouvelle génération dont le numéro est un de plus que la génération actuelle (rapportée par @command{guix system list-generations}). Si cette génération existe déjà, elle sera réécrite. Ce comportement correspond à celui de @command{guix package} (@pxref{Invoking guix package})." #. type: table -#: guix-git/doc/guix.texi:34929 +#: guix-git/doc/guix.texi:35368 msgid "It also adds a bootloader menu entry for the new OS configuration, ---unless @option{--no-bootloader} is passed. For GRUB, it moves entries for older configurations to a submenu, allowing you to choose an older system generation at boot time should you need it." msgstr "Elle ajoute aussi une entrée de menu du chargeur d'amorçage pour la nouvelle configuration, à moins que @option{--no-bootloader} ne soit passé. Pour GRUB, elle déplace les entrées pour les anciennes configurations dans un sous-menu, ce qui vous permet de choisir une ancienne génération au démarrage si vous en avez besoin." #. type: cindex -#: guix-git/doc/guix.texi:34930 guix-git/doc/guix.texi:35261 -#: guix-git/doc/guix.texi:36223 +#: guix-git/doc/guix.texi:35369 guix-git/doc/guix.texi:35705 +#: guix-git/doc/guix.texi:36713 #, no-wrap msgid "provenance tracking, of the operating system" msgstr "suivi de provenance, pour le système d'exploitation" #. type: table -#: guix-git/doc/guix.texi:34935 +#: guix-git/doc/guix.texi:35374 msgid "Upon completion, the new system is deployed under @file{/run/current-system}. This directory contains @dfn{provenance meta-data}: the list of channels in use (@pxref{Channels}) and @var{file} itself, when available. You can view it by running:" msgstr "À la fin, le nouveau système d'exploitation est déployé dans @file{/run/current-system}. Ce répertoire contient les @dfn{métadonnées de provenance} : la liste des canaux utilisés (@pxref{Channels}) et @var{fichier} lui-même, s'il est disponible. Vous pouvez les voir avec :" #. type: example -#: guix-git/doc/guix.texi:34938 +#: guix-git/doc/guix.texi:35377 #, no-wrap msgid "guix system describe\n" msgstr "guix system describe\n" #. type: table -#: guix-git/doc/guix.texi:34944 +#: guix-git/doc/guix.texi:35383 msgid "This information is useful should you later want to inspect how this particular generation was built. In fact, assuming @var{file} is self-contained, you can later rebuild generation @var{n} of your operating system with:" msgstr "Cette information est utile si vous voulez plus tard inspecter comment une génération particulière a été construite. En fait, en supposant que @var{file} est auto-contenu, vous pouvez reconstruire la génération @var{n} de votre système d'exploitation avec :" #. type: example -#: guix-git/doc/guix.texi:34950 +#: guix-git/doc/guix.texi:35389 #, no-wrap msgid "" "guix time-machine \\\n" @@ -65427,233 +66317,238 @@ msgstr "" " /var/guix/profiles/system-@var{n}-link/configuration.scm\n" #. type: table -#: guix-git/doc/guix.texi:34956 +#: guix-git/doc/guix.texi:35395 msgid "You can think of it as some sort of built-in version control! Your system is not just a binary artifact: @emph{it carries its own source}. @xref{Service Reference, @code{provenance-service-type}}, for more information on provenance tracking." msgstr "Vous pouvez considérer cela comme une sorte de contrôle de version intégré ! Votre système n'est pas seulement un artéfact binaire : @emph{il contient ses propres sources}. @xref{Service Reference, @code{provenance-service-type}}, pour plus d'informations sur le suivi de provenance." #. type: table -#: guix-git/doc/guix.texi:34962 +#: guix-git/doc/guix.texi:35401 msgid "By default, @command{reconfigure} @emph{prevents you from downgrading your system}, which could (re)introduce security vulnerabilities and also cause problems with ``stateful'' services such as database management systems. You can override that behavior by passing @option{--allow-downgrades}." msgstr "Par défaut, @command{reconfigure} @emph{vous empêche de faire revenir en arrière votre système}, ce qui pourrait (ré)introduire des vulnérabilités de sécurité et cause des problèmes avec les services « avec état » comme les systèmes de gestion de bases de données. Vous pouvez contrôler ce comportement en passant @option{--allow-downgrades}." #. type: item -#: guix-git/doc/guix.texi:34963 guix-git/doc/guix.texi:37614 +#: guix-git/doc/guix.texi:35402 guix-git/doc/guix.texi:38093 #, no-wrap msgid "switch-generation" msgstr "switch-generation" #. type: table -#: guix-git/doc/guix.texi:34972 +#: guix-git/doc/guix.texi:35411 msgid "Switch to an existing system generation. This action atomically switches the system profile to the specified system generation. It also rearranges the system's existing bootloader menu entries. It makes the menu entry for the specified system generation the default, and it moves the entries for the other generations to a submenu, if supported by the bootloader being used. The next time the system boots, it will use the specified system generation." msgstr "Passe à une génération existante du système. Cette action change automatiquement le profil système vers la génération spécifiée. Elle réarrange aussi les entrées existantes du menu du chargeur d'amorçage du système. Elle fait de l'entrée du menu pour la génération spécifiée l'entrée par défaut et déplace les entrées pour les autres générations dans un sous-menu, si cela est pris en charge par le chargeur d'amorçage utilisé. Lors du prochain démarrage du système, la génération du système spécifiée sera utilisée." #. type: table -#: guix-git/doc/guix.texi:34976 +#: guix-git/doc/guix.texi:35415 msgid "The bootloader itself is not being reinstalled when using this command. Thus, the installed bootloader is used with an updated configuration file." msgstr "Le chargeur d'amorçage lui-même n'est pas réinstallé avec cette commande. Ainsi, le chargeur d'amorçage est utilisé avec un fichier de configuration plus à jour." #. type: table -#: guix-git/doc/guix.texi:34980 +#: guix-git/doc/guix.texi:35419 msgid "The target generation can be specified explicitly by its generation number. For example, the following invocation would switch to system generation 7:" msgstr "La génération cible peut être spécifiée explicitement par son numéro de génération. Par exemple, l'invocation suivante passerait à la génération 7 du système :" #. type: example -#: guix-git/doc/guix.texi:34983 +#: guix-git/doc/guix.texi:35422 #, no-wrap msgid "guix system switch-generation 7\n" msgstr "guix system switch-generation 7\n" #. type: table -#: guix-git/doc/guix.texi:34991 guix-git/doc/guix.texi:37633 +#: guix-git/doc/guix.texi:35430 guix-git/doc/guix.texi:38112 msgid "The target generation can also be specified relative to the current generation with the form @code{+N} or @code{-N}, where @code{+3} means ``3 generations ahead of the current generation,'' and @code{-1} means ``1 generation prior to the current generation.'' When specifying a negative value such as @code{-1}, you must precede it with @code{--} to prevent it from being parsed as an option. For example:" msgstr "La génération cible peut aussi être spécifiée relativement à la génération actuelle avec la forme @code{+N} ou @code{-N}, où @code{+3} signifie « trois générations après la génération actuelle » et @code{-1} signifie « une génération précédent la génération actuelle ». Lorsque vous spécifiez un nombre négatif comme @code{-1}, il doit être précédé de @code{--} pour éviter qu'il ne soit compris comme une option. Par exemple :" #. type: example -#: guix-git/doc/guix.texi:34994 +#: guix-git/doc/guix.texi:35433 #, no-wrap msgid "guix system switch-generation -- -1\n" msgstr "guix system switch-generation -- -1\n" #. type: table -#: guix-git/doc/guix.texi:35002 +#: guix-git/doc/guix.texi:35441 msgid "Currently, the effect of invoking this action is @emph{only} to switch the system profile to an existing generation and rearrange the bootloader menu entries. To actually start using the target system generation, you must reboot after running this action. In the future, it will be updated to do the same things as @command{reconfigure}, like activating and deactivating services." msgstr "Actuellement, l'effet de l'invocation de cette action est @emph{uniquement} de passer au profil du système vers une autre génération existante et de réarranger le menu du chargeur d'amorçage. Pour vraiment commencer à utiliser la génération spécifiée, vous devez redémarrer après avoir lancé cette action. Dans le futur, elle sera corrigée pour faire la même chose que @command{reconfigure}, comme réactiver et désactiver les services." #. type: table -#: guix-git/doc/guix.texi:35004 guix-git/doc/guix.texi:37639 +#: guix-git/doc/guix.texi:35443 guix-git/doc/guix.texi:38118 msgid "This action will fail if the specified generation does not exist." msgstr "Cette action échouera si la génération spécifiée n'existe pas." #. type: item -#: guix-git/doc/guix.texi:35005 guix-git/doc/guix.texi:37640 +#: guix-git/doc/guix.texi:35444 guix-git/doc/guix.texi:38119 #, no-wrap msgid "roll-back" msgstr "roll-back" #. type: table -#: guix-git/doc/guix.texi:35011 +#: guix-git/doc/guix.texi:35450 msgid "Switch to the preceding system generation. The next time the system boots, it will use the preceding system generation. This is the inverse of @command{reconfigure}, and it is exactly the same as invoking @command{switch-generation} with an argument of @code{-1}." msgstr "Passe à la génération précédente du système. Au prochain démarrage, la génération précédente sera utilisée. C'est le contraire de @command{reconfigure}, et c'est exactement comme invoquer @command{switch-generation} avec pour argument @code{-1}." #. type: table -#: guix-git/doc/guix.texi:35015 +#: guix-git/doc/guix.texi:35454 msgid "Currently, as with @command{switch-generation}, you must reboot after running this action to actually start using the preceding system generation." msgstr "Actuellement, comme pour @command{switch-generation}, vous devez redémarrer après avoir lancé cette action pour vraiment démarrer sur la génération précédente du système." #. type: item -#: guix-git/doc/guix.texi:35016 guix-git/doc/guix.texi:37646 +#: guix-git/doc/guix.texi:35455 guix-git/doc/guix.texi:38125 #, no-wrap msgid "delete-generations" msgstr "delete-generations" #. type: cindex -#: guix-git/doc/guix.texi:35017 +#: guix-git/doc/guix.texi:35456 #, no-wrap msgid "deleting system generations" msgstr "supprimer des générations du système" #. type: cindex -#: guix-git/doc/guix.texi:35018 guix-git/doc/guix.texi:37648 +#: guix-git/doc/guix.texi:35457 guix-git/doc/guix.texi:38127 #, no-wrap msgid "saving space" msgstr "gagner de la place" #. type: table -#: guix-git/doc/guix.texi:35022 +#: guix-git/doc/guix.texi:35461 msgid "Delete system generations, making them candidates for garbage collection (@pxref{Invoking guix gc}, for information on how to run the ``garbage collector'')." msgstr "Supprimer des générations du système, ce qui les rend disponibles pour le ramasse-miettes (@pxref{Invoking guix gc}, pour des informations sur la manière de lancer le « ramasse-miettes »)." #. type: table -#: guix-git/doc/guix.texi:35026 +#: guix-git/doc/guix.texi:35465 msgid "This works in the same way as @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). With no arguments, all system generations but the current one are deleted:" msgstr "Cela fonctionne comme pour @samp{guix package --delete-generations} (@pxref{Invoking guix package, @code{--delete-generations}}). Avec aucun argument, toutes les générations du système sauf la génération actuelle sont supprimées :" #. type: example -#: guix-git/doc/guix.texi:35029 +#: guix-git/doc/guix.texi:35468 #, no-wrap msgid "guix system delete-generations\n" msgstr "guix system delete-generations\n" #. type: table -#: guix-git/doc/guix.texi:35033 +#: guix-git/doc/guix.texi:35472 msgid "You can also select the generations you want to delete. The example below deletes all the system generations that are more than two months old:" msgstr "Vous pouvez aussi choisir les générations que vous voulez supprimer. L'exemple plus bas supprime toutes les génération du système plus vieilles que deux mois :" #. type: example -#: guix-git/doc/guix.texi:35036 +#: guix-git/doc/guix.texi:35475 #, no-wrap msgid "guix system delete-generations 2m\n" msgstr "guix system delete-generations 2m\n" #. type: table -#: guix-git/doc/guix.texi:35041 +#: guix-git/doc/guix.texi:35480 msgid "Running this command automatically reinstalls the bootloader with an updated list of menu entries---e.g., the ``old generations'' sub-menu in GRUB no longer lists the generations that have been deleted." msgstr "Lancer cette commande réinstalle automatiquement le chargeur d'amorçage avec une liste à jour d'entrées de menu — p.@: ex.@: le sous-menu « anciennes générations » dans GRUB ne liste plus les générations qui ont été supprimées." #. type: table -#: guix-git/doc/guix.texi:35046 +#: guix-git/doc/guix.texi:35485 msgid "Build the derivation of the operating system, which includes all the configuration files and programs needed to boot and run the system. This action does not actually install anything." msgstr "Construit la dérivation du système d'exploitation, ce qui comprend tous les fichiers de configuration et les programmes requis pour démarrer et lancer le système. Cette action n'installe rien." #. type: item -#: guix-git/doc/guix.texi:35047 +#: guix-git/doc/guix.texi:35486 #, no-wrap msgid "init" msgstr "init" #. type: table -#: guix-git/doc/guix.texi:35051 +#: guix-git/doc/guix.texi:35490 msgid "Populate the given directory with all the files necessary to run the operating system specified in @var{file}. This is useful for first-time installations of Guix System. For instance:" msgstr "Rempli le répertoire donné avec tous les fichiers nécessaires à lancer le système d'exploitation spécifié dans @var{file}. C'est utile pour la première installation de Guix System. Par exemple :" #. type: example -#: guix-git/doc/guix.texi:35054 +#: guix-git/doc/guix.texi:35493 #, no-wrap msgid "guix system init my-os-config.scm /mnt\n" msgstr "guix system init my-os-config.scm /mnt\n" #. type: table -#: guix-git/doc/guix.texi:35061 +#: guix-git/doc/guix.texi:35500 msgid "copies to @file{/mnt} all the store items required by the configuration specified in @file{my-os-config.scm}. This includes configuration files, packages, and so on. It also creates other essential files needed for the system to operate correctly---e.g., the @file{/etc}, @file{/var}, and @file{/run} directories, and the @file{/bin/sh} file." msgstr "copie tous les éléments du dépôt requis par la configuration spécifiée dans @file{my-os-config.scm} dans @file{/mnt}. Cela comprend les fichiers de configuration, les paquets, etc. Elle crée aussi d'autres fichiers essentiels requis pour que le système fonctionne correctement — p.@: ex.@: les répertoires @file{/etc}, @file{/var} et @file{/run} et le fichier @file{/bin/sh}." #. type: table -#: guix-git/doc/guix.texi:35065 +#: guix-git/doc/guix.texi:35504 msgid "This command also installs bootloader on the targets specified in @file{my-os-config}, unless the @option{--no-bootloader} option was passed." msgstr "Cette commande installe aussi le chargeur d'amorçage sur les cibles spécifiées dans @file{my-os-config}, à moins que l'option @option{--no-bootloader} ne soit passée." #. type: item -#: guix-git/doc/guix.texi:35066 +#: guix-git/doc/guix.texi:35505 #, no-wrap msgid "vm" msgstr "vm" #. type: cindex -#: guix-git/doc/guix.texi:35067 guix-git/doc/guix.texi:35634 +#: guix-git/doc/guix.texi:35506 guix-git/doc/guix.texi:36124 #, no-wrap msgid "virtual machine" msgstr "machine virtuelle" #. type: cindex -#: guix-git/doc/guix.texi:35068 +#: guix-git/doc/guix.texi:35507 #, no-wrap msgid "VM" msgstr "VM" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35072 +#: guix-git/doc/guix.texi:35511 msgid "guix system vm" msgstr "guix system vm" #. type: table -#: guix-git/doc/guix.texi:35072 +#: guix-git/doc/guix.texi:35511 msgid "Build a virtual machine (VM) that contains the operating system declared in @var{file}, and return a script to run that VM." msgstr "Construit une machine virtuelle (VM) qui contient le système d'exploitation déclaré dans @var{file} et renvoie un script pour lancer cette VM." #. type: quotation -#: guix-git/doc/guix.texi:35080 +#: guix-git/doc/guix.texi:35519 msgid "The @code{vm} action and others below can use KVM support in the Linux-libre kernel. Specifically, if the machine has hardware virtualization support, the corresponding KVM kernel module should be loaded, and the @file{/dev/kvm} device node must exist and be readable and writable by the user and by the build users of the daemon (@pxref{Build Environment Setup})." msgstr "Les actions @code{vm} et les autres plus bas peuvent utiliser la prise en charge KVM du noyau Linux-libre. Plus spécifiquement, si la machine prend en charge la virtualisation matérielle, le module noyau KVM correspondant devrait être chargé, et le nœud de périphérique @file{/dev/kvm} devrait exister et être lisible et inscriptible pour l'utilisateur et pour les utilisateurs de construction du démon (@pxref{Build Environment Setup})." #. type: table -#: guix-git/doc/guix.texi:35085 +#: guix-git/doc/guix.texi:35524 msgid "Arguments given to the script are passed to QEMU as in the example below, which enables networking and requests 1@tie{}GiB of RAM for the emulated machine:" msgstr "Les arguments passés au script sont passés à QEMU comme dans l'exemple ci-dessous, qui active le réseau et demande 1@tie{}Go de RAM pour la machine émulée :" #. type: example -#: guix-git/doc/guix.texi:35088 +#: guix-git/doc/guix.texi:35527 #, no-wrap msgid "$ /gnu/store/@dots{}-run-vm.sh -m 1024 -smp 2 -nic user,model=virtio-net-pci\n" msgstr "$ /gnu/store/@dots{}-run-vm.sh -m 1024 -smp 2 -nic user,model=virtio-net-pci\n" #. type: table -#: guix-git/doc/guix.texi:35091 +#: guix-git/doc/guix.texi:35530 msgid "It's possible to combine the two steps into one:" msgstr "Il est possible de combiner les deux étapes en une :" #. type: example -#: guix-git/doc/guix.texi:35094 +#: guix-git/doc/guix.texi:35533 #, no-wrap msgid "$ $(guix system vm my-config.scm) -m 1024 -smp 2 -nic user,model=virtio-net-pci\n" msgstr "$ $(guix system vm my-config.scm) -m 1024 -smp 2 -nic user,model=virtio-net-pci\n" #. type: table -#: guix-git/doc/guix.texi:35097 +#: guix-git/doc/guix.texi:35536 msgid "The VM shares its store with the host system." msgstr "La VM partage sont dépôt avec le système hôte." #. type: table -#: guix-git/doc/guix.texi:35102 +#: guix-git/doc/guix.texi:35541 +msgid "By default, the root file system of the VM is mounted volatile; the @option{--persistent} option can be provided to make it persistent instead. In that case, the VM disk-image file will be copied from the store to the @env{TMPDIR} directory to make it writable." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:35546 msgid "Additional file systems can be shared between the host and the VM using the @option{--share} and @option{--expose} command-line options: the former specifies a directory to be shared with write access, while the latter provides read-only access to the shared directory." msgstr "Vous pouvez partager des fichiers supplémentaires entre l'hôte et la VM avec les options en ligne de commande @option{--share} et @option{--expose} : la première spécifie un répertoire à partager avec accès en écriture, tandis que le deuxième fournit un accès en lecture-seule au répertoire partagé." #. type: table -#: guix-git/doc/guix.texi:35106 +#: guix-git/doc/guix.texi:35550 msgid "The example below creates a VM in which the user's home directory is accessible read-only, and where the @file{/exchange} directory is a read-write mapping of @file{$HOME/tmp} on the host:" msgstr "L'exemple ci-dessous crée une VM dans laquelle le répertoire personnel de l'utilisateur est accessible en lecture-seule, et où le répertoire @file{/exchange} est une correspondance en lecture-écriture à @file{$HOME/tmp} sur l'hôte :" #. type: example -#: guix-git/doc/guix.texi:35110 +#: guix-git/doc/guix.texi:35554 #, no-wrap msgid "" "guix system vm my-config.scm \\\n" @@ -65663,56 +66558,56 @@ msgstr "" " --expose=$HOME --share=$HOME/tmp=/exchange\n" #. type: table -#: guix-git/doc/guix.texi:35115 +#: guix-git/doc/guix.texi:35559 msgid "On GNU/Linux, the default is to boot directly to the kernel; this has the advantage of requiring only a very tiny root disk image since the store of the host can then be mounted." msgstr "Sur GNU/Linux, le comportement par défaut consiste à démarrer directement sur le noyau ; cela a l'avantage de n'avoir besoin que d'une toute petite image disque puisque le dépôt de l'hôte peut ensuite être monté." #. type: table -#: guix-git/doc/guix.texi:35120 +#: guix-git/doc/guix.texi:35564 msgid "The @option{--full-boot} option forces a complete boot sequence, starting with the bootloader. This requires more disk space since a root image containing at least the kernel, initrd, and bootloader data files must be created." msgstr "L'option @option{--full-boot} force une séquence de démarrage complète, en commençant par le chargeur d'amorçage. Cela requiert plus d'espace disque puisqu'une image racine contenant au moins le noyau, l'initrd et les fichiers de données du chargeur d'amorçage doit être créé." #. type: table -#: guix-git/doc/guix.texi:35123 +#: guix-git/doc/guix.texi:35567 msgid "The @option{--image-size} option can be used to specify the size of the image." msgstr "On peut utiliser l'option @option{--image-size} pour spécifier la taille de l'image." #. type: table -#: guix-git/doc/guix.texi:35130 +#: guix-git/doc/guix.texi:35574 msgid "The @option{--no-graphic} option will instruct @command{guix system} to spawn a headless VM that will use the invoking tty for IO. Among other things, this enables copy-pasting, and scrollback. Use the @kbd{ctrl-a} prefix to issue QEMU commands; e.g. @kbd{ctrl-a h} prints a help, @kbd{ctrl-a x} quits the VM, and @kbd{ctrl-a c} switches between the QEMU monitor and the VM." msgstr "L'option @option{--no-graphic} demandera à @command{guix system} de créer une VM sans interface qui utilisera le tty qui l'invoque pour ses entrées-sorties. Entre autres, cela active le copier-coller et le défilement. Utilisez le préfixe @kbd{ctrl-a} pour lancer des commandes QEMU ; p.@: ex.@: @kbd{ctrl-a h} affiche l'aide, @kbd{ctrl-a x} quitte la VM et @kbd{ctrl-a c} alterne entre le moniteur QEMU et la VM." #. type: cindex -#: guix-git/doc/guix.texi:35131 +#: guix-git/doc/guix.texi:35575 #, no-wrap msgid "System images, creation in various formats" msgstr "Images système, création en divers formats" #. type: cindex -#: guix-git/doc/guix.texi:35132 +#: guix-git/doc/guix.texi:35576 #, no-wrap msgid "Creating system images in various formats" msgstr "Créer des images systèmes sous différents formats" #. type: item -#: guix-git/doc/guix.texi:35133 +#: guix-git/doc/guix.texi:35577 #, no-wrap msgid "image" msgstr "image" #. type: cindex -#: guix-git/doc/guix.texi:35134 +#: guix-git/doc/guix.texi:35578 #, no-wrap msgid "image, creating disk images" msgstr "image, créer des images disques" #. type: table -#: guix-git/doc/guix.texi:35146 +#: guix-git/doc/guix.texi:35590 msgid "The @code{image} command can produce various image types. The image type can be selected using the @option{--image-type} option. It defaults to @code{efi-raw}. When its value is @code{iso9660}, the @option{--label} option can be used to specify a volume ID with @code{image}. By default, the root file system of a disk image is mounted non-volatile; the @option{--volatile} option can be provided to make it volatile instead. When using @code{image}, the bootloader installed on the generated image is taken from the provided @code{operating-system} definition. The following example demonstrates how to generate an image that uses the @code{grub-efi-bootloader} bootloader and boot it with QEMU:" msgstr "La commande @code{image} peut produire divers types d'images. Vous pouvez choisir le type d'image en utilisant l'option @option{--image-type}. Sa valeur par défaut est @code{efi-raw}. Lorsque sa valeur est @code{iso9660}, vous pouvez utiliser l'option @option{--label} pour spécifier un identifiant de volume avec @code{image}. Par défaut, le système de fichiers racine d'une image disque est montée en non-volatile ; vous pouvez fournir l'option @option{--volatile} pour la rendre volatile. Si vous utilisez @code{image}, le chargeur d'amorçage installé sur l'image générée est celui de la définition @code{operating-system} fournie. L'exemple suivant montre comment générer une image qui utilise le chargeur d'amorçage @code{grub-efi-bootloader} et la démarrer avec QEMU :" #. type: example -#: guix-git/doc/guix.texi:35154 +#: guix-git/doc/guix.texi:35598 #, no-wrap msgid "" "image=$(guix system image --image-type=qcow2 \\\n" @@ -65730,47 +66625,45 @@ msgstr "" " -bios $(guix build ovmf)/share/firmware/ovmf_x64.bin\n" #. type: table -#: guix-git/doc/guix.texi:35160 +#: guix-git/doc/guix.texi:35604 msgid "When using the @code{efi-raw} image type, a raw disk image is produced; it can be copied as is to a USB stick, for instance. Assuming @code{/dev/sdc} is the device corresponding to a USB stick, one can copy the image to it using the following command:" msgstr "Lorsque vous utilisez le type d'image @code{efi-raw}, une image disque brute est produite ; elle peut être copiée telle quelle sur un périphérique USB par exemple. En supposant que @code{/dev/sdc} est le périphérique correspondant à une clé USB, on peut copier l'image dessus avec la commande suivante :" #. type: example -#: guix-git/doc/guix.texi:35163 +#: guix-git/doc/guix.texi:35607 #, no-wrap msgid "# dd if=$(guix system image my-os.scm) of=/dev/sdc status=progress\n" msgstr "# dd if=$(guix system image my-os.scm) of=/dev/sdc status=progress\n" #. type: table -#: guix-git/doc/guix.texi:35167 +#: guix-git/doc/guix.texi:35611 msgid "The @code{--list-image-types} command lists all the available image types." msgstr "La commande @code{--list-image-types} liste tous les types d'images disponibles." #. type: cindex -#: guix-git/doc/guix.texi:35168 +#: guix-git/doc/guix.texi:35612 #, no-wrap msgid "creating virtual machine images" msgstr "créer des images de machines virtuelles" #. type: table -#: guix-git/doc/guix.texi:35177 +#: guix-git/doc/guix.texi:35621 msgid "When using the @code{qcow2} image type, the returned image is in qcow2 format, which the QEMU emulator can efficiently use. @xref{Running Guix in a VM}, for more information on how to run the image in a virtual machine. The @code{grub-bootloader} bootloader is always used independently of what is declared in the @code{operating-system} file passed as argument. This is to make it easier to work with QEMU, which uses the SeaBIOS BIOS by default, expecting a bootloader to be installed in the Master Boot Record (MBR)." msgstr "Lorsque vous utilisez le type d'image @code{qcow2}, l'image renvoyée est au format qcow2, que l'émulateur QEMU peut utiliser efficacement. @xref{Running Guix in a VM}, pour plus d'information sur la manière de lancer l'image dans une machine virtuelle. Le chargeur d'amorçage @code{grub-bootloader} est toujours utilisé quelque soit celui déclaré dans le fichier @code{operating-system} passé en argument. Cela facilite l'utilisation de QEMU, qui utilise le BIOS SeaBIOS par défaut, et s'attend à un chargeur d'amorçage installé dans le Master Boot Record (MBR)." #. type: cindex -#: guix-git/doc/guix.texi:35178 +#: guix-git/doc/guix.texi:35622 #, no-wrap msgid "docker-image, creating docker images" msgstr "docker-image, créer des images docker" #. type: table -#: guix-git/doc/guix.texi:35184 -#, fuzzy -#| msgid "When using @code{docker-image}, a Docker image is produced. Guix builds the image from scratch, not from a pre-existing Docker base image. As a result, it contains @emph{exactly} what you define in the operating system configuration file. You can then load the image and launch a Docker container using commands like the following:" +#: guix-git/doc/guix.texi:35628 msgid "When using the @code{docker} image type, a Docker image is produced. Guix builds the image from scratch, not from a pre-existing Docker base image. As a result, it contains @emph{exactly} what you define in the operating system configuration file. You can then load the image and launch a Docker container using commands like the following:" -msgstr "En utilisant @code{docker-image}, on produit une image Docker. Guix construit l'image de zéro, et non à partir d'une image Docker de base pré-existante. En conséquence, elle contient @emph{exactly} ce que vous avez défini dans le fichier de configuration du système. Vous pouvez ensuite charger l'image et lancer un conteneur Docker avec des commande comme :" +msgstr "En utilisant le type d'image @code{docker}, on produit une image Docker. Guix construit l'image de zéro, et non à partir d'une image Docker de base pré-existante. En conséquence, elle contient @emph{exactly} ce que vous avez défini dans le fichier de configuration du système. Vous pouvez ensuite charger l'image et lancer un conteneur Docker avec des commande comme :" #. type: example -#: guix-git/doc/guix.texi:35189 +#: guix-git/doc/guix.texi:35633 #, no-wrap msgid "" "image_id=\"$(docker load < guix-system-docker-image.tar.gz)\"\n" @@ -65782,43 +66675,43 @@ msgstr "" "docker start $container_id\n" #. type: table -#: guix-git/doc/guix.texi:35196 +#: guix-git/doc/guix.texi:35640 msgid "This command starts a new Docker container from the specified image. It will boot the Guix system in the usual manner, which means it will start any services you have defined in the operating system configuration. You can get an interactive shell running in the container using @command{docker exec}:" msgstr "Cette commande démarre un nouveau conteneur Docker à partir de l'image spécifiée. Il démarrera le système Guix de la manière habituelle, ce qui signifie qu'il démarrera tous les services que vous avez définis dans la configuration du système d'exploitation. Vous pouvez obtenir un shell interactif dans le conteneur en utilisant @command{docker exec} :" #. type: example -#: guix-git/doc/guix.texi:35199 +#: guix-git/doc/guix.texi:35643 #, no-wrap msgid "docker exec -ti $container_id /run/current-system/profile/bin/bash --login\n" msgstr "docker exec -ti $container_id /run/current-system/profile/bin/bash --login\n" #. type: table -#: guix-git/doc/guix.texi:35206 +#: guix-git/doc/guix.texi:35650 msgid "Depending on what you run in the Docker container, it may be necessary to give the container additional permissions. For example, if you intend to build software using Guix inside of the Docker container, you may need to pass the @option{--privileged} option to @code{docker create}." msgstr "En fonction de ce que vous lancez dans le conteneur Docker, il peut être nécessaire de donner des permissions supplémentaires au conteneur. Par exemple, si vous voulez construire des paquets avec Guix dans le conteneur Docker, vous devriez passer @option{--privileged} à @code{docker create}." #. type: table -#: guix-git/doc/guix.texi:35210 +#: guix-git/doc/guix.texi:35654 msgid "Last, the @option{--network} option applies to @command{guix system docker-image}: it produces an image where network is supposedly shared with the host, and thus without services like nscd or NetworkManager." msgstr "Enfin, l'option @option{--network} s'applique à @command{guix system docker-image} : elle produit une image où le réseau est partagé avec l'hôte, et donc sans services comme nscd ou NetworkManager." #. type: table -#: guix-git/doc/guix.texi:35218 +#: guix-git/doc/guix.texi:35662 msgid "Return a script to run the operating system declared in @var{file} within a container. Containers are a set of lightweight isolation mechanisms provided by the kernel Linux-libre. Containers are substantially less resource-demanding than full virtual machines since the kernel, shared objects, and other resources can be shared with the host system; this also means they provide thinner isolation." msgstr "Renvoie un script qui lance le système d'exploitation déclaré dans @var{file} dans un conteneur. Les conteneurs sont un ensemble de mécanismes d'isolation légers fournis par le noyau Linux-libre. Les conteneurs sont substantiellement moins gourmands en ressources que les machines virtuelles complètes car le noyau, les objets partagés et d'autres ressources peuvent être partagés avec le système hôte ; cela signifie aussi une isolation moins complète." #. type: table -#: guix-git/doc/guix.texi:35222 +#: guix-git/doc/guix.texi:35666 msgid "Currently, the script must be run as root in order to support more than a single user and group. The container shares its store with the host system." msgstr "Actuellement, le script doit être lancé en root pour pouvoir supporter plus d'un utilisateur et d'un groupe. Le conteneur partage son dépôt avec le système hôte." #. type: table -#: guix-git/doc/guix.texi:35226 +#: guix-git/doc/guix.texi:35670 msgid "As with the @code{vm} action (@pxref{guix system vm}), additional file systems to be shared between the host and container can be specified using the @option{--share} and @option{--expose} options:" msgstr "Comme avec l'action @code{vm} (@pxref{guix system vm}), des systèmes de fichiers supplémentaires peuvent être partagés entre l'hôte et le conteneur avec les options @option{--share} et @option{--expose} :" #. type: example -#: guix-git/doc/guix.texi:35230 +#: guix-git/doc/guix.texi:35674 #, no-wrap msgid "" "guix system container my-config.scm \\\n" @@ -65828,319 +66721,331 @@ msgstr "" " --expose=$HOME --share=$HOME/tmp=/exchange\n" #. type: quotation -#: guix-git/doc/guix.texi:35234 +#: guix-git/doc/guix.texi:35678 msgid "This option requires Linux-libre 3.19 or newer." msgstr "Cette option requiert Linux-libre ou supérieur." #. type: Plain text -#: guix-git/doc/guix.texi:35241 guix-git/doc/guix.texi:37710 +#: guix-git/doc/guix.texi:35685 guix-git/doc/guix.texi:38189 msgid "@var{options} can contain any of the common build options (@pxref{Common Build Options}). In addition, @var{options} can contain one of the following:" msgstr "@var{options} peut contenir n'importe quelle option commune de construction (@pxref{Common Build Options}). En plus, @var{options} peut contenir l'une de ces options :" #. type: table -#: guix-git/doc/guix.texi:35250 +#: guix-git/doc/guix.texi:35694 msgid "Consider the operating-system @var{expr} evaluates to. This is an alternative to specifying a file which evaluates to an operating system. This is used to generate the Guix system installer @pxref{Building the Installation Image})." msgstr "Considère le système d'exploitation en lequel s'évalue @var{expr}. C'est une alternative à la spécification d'un fichier qui s'évalue en un système d'exploitation. C'est utilisé pour générer l'installateur du système Guix (@pxref{Building the Installation Image})." #. type: table -#: guix-git/doc/guix.texi:35255 +#: guix-git/doc/guix.texi:35699 msgid "Attempt to build for @var{system} instead of the host system type. This works as per @command{guix build} (@pxref{Invoking guix build})." msgstr "Essaye de construire pour @var{system} au lieu du type du système hôte. Cela fonction comme pour @command{guix build} (@pxref{Invoking guix build})." #. type: table -#: guix-git/doc/guix.texi:35260 +#: guix-git/doc/guix.texi:35704 msgid "Return the derivation file name of the given operating system without building anything." msgstr "Renvoie le nom du fichier de dérivation du système d'exploitation donné sans rien construire." #. type: table -#: guix-git/doc/guix.texi:35269 +#: guix-git/doc/guix.texi:35713 msgid "As discussed above, @command{guix system init} and @command{guix system reconfigure} always save provenance information @i{via} a dedicated service (@pxref{Service Reference, @code{provenance-service-type}}). However, other commands don't do that by default. If you wish to, say, create a virtual machine image that contains provenance information, you can run:" msgstr "Comme nous en avons parlé précédemment, @command{guix system init} et @command{guix system reconfigure} enregistrent toujours les informations de provenance via un service dédié (@pxref{Service Reference, @code{provenance-service-type}}). Cependant, d'autres commande ne le font pas par défaut. Si vous voulez, disons, créer une image de machine virtuelle contenant les informations de provenance, vous pouvez lancer :" #. type: example -#: guix-git/doc/guix.texi:35272 +#: guix-git/doc/guix.texi:35716 #, no-wrap msgid "guix system image -t qcow2 --save-provenance config.scm\n" msgstr "guix system image -t qcow2 --save-provenance config.scm\n" #. type: table -#: guix-git/doc/guix.texi:35279 +#: guix-git/doc/guix.texi:35723 msgid "That way, the resulting image will effectively ``embed its own source'' in the form of meta-data in @file{/run/current-system}. With that information, one can rebuild the image to make sure it really contains what it pretends to contain; or they could use that to derive a variant of the image." msgstr "De cette façon, l'image qui en résulte va effectivement « intégrer sa propre source » sous la forme de méta-données dans @file{/run/current-system}. Avec cette information, on peut reconstruire l'image pour s'assurer qu'elle contient vraiment ce qu'elle prétend contenir ; ou on peut utiliser ça pour dériver une variante de l'image." #. type: item -#: guix-git/doc/guix.texi:35280 +#: guix-git/doc/guix.texi:35724 #, no-wrap msgid "--image-type=@var{type}" msgstr "--image-type=@var{type}" #. type: table -#: guix-git/doc/guix.texi:35283 +#: guix-git/doc/guix.texi:35727 msgid "For the @code{image} action, create an image with given @var{type}." msgstr "Pour l'action @code{image}, crée une image du @var{type} donné." #. type: table -#: guix-git/doc/guix.texi:35286 +#: guix-git/doc/guix.texi:35730 msgid "When this option is omitted, @command{guix system} uses the @code{efi-raw} image type." msgstr "Lorsque cette option est omise, @command{guix system} utilise le type d'image @code{efi-raw}." #. type: cindex -#: guix-git/doc/guix.texi:35287 +#: guix-git/doc/guix.texi:35731 #, no-wrap msgid "ISO-9660 format" msgstr "Format ISO-9660" #. type: cindex -#: guix-git/doc/guix.texi:35288 +#: guix-git/doc/guix.texi:35732 #, no-wrap msgid "CD image format" msgstr "Format d'image de CD" #. type: cindex -#: guix-git/doc/guix.texi:35289 +#: guix-git/doc/guix.texi:35733 #, no-wrap msgid "DVD image format" msgstr "Format d'image de DVD" #. type: table -#: guix-git/doc/guix.texi:35292 +#: guix-git/doc/guix.texi:35736 msgid "@option{--image-type=iso9660} produces an ISO-9660 image, suitable for burning on CDs and DVDs." msgstr "@option{--image-type=iso9660} produit une image ISO-9660, qu'il est possible de graver sur un CD ou un DVD." #. type: item -#: guix-git/doc/guix.texi:35293 +#: guix-git/doc/guix.texi:35737 #, no-wrap msgid "--image-size=@var{size}" msgstr "--image-size=@var{size}" #. type: table -#: guix-git/doc/guix.texi:35298 +#: guix-git/doc/guix.texi:35742 msgid "For the @code{image} action, create an image of the given @var{size}. @var{size} may be a number of bytes, or it may include a unit as a suffix (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." msgstr "Pour l'action @code{image}, crée une image de la taille donnée @var{size}. @var{size} peut être un nombre d'octets ou contenir un suffixe d'unité (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." #. type: table -#: guix-git/doc/guix.texi:35302 +#: guix-git/doc/guix.texi:35746 msgid "When this option is omitted, @command{guix system} computes an estimate of the image size as a function of the size of the system declared in @var{file}." msgstr "Lorsque cette option est omise, @command{guix system} calcule une estimation de la taille de l'image en fonction de la taille du système déclaré dans @var{file}." #. type: table -#: guix-git/doc/guix.texi:35307 +#: guix-git/doc/guix.texi:35751 msgid "For the @code{container} action, allow containers to access the host network, that is, do not create a network namespace." msgstr "Pour l'action @code{container}, permet aux conteneurs d'accéder au réseau de l'hôte, c'est-à-dire, ne crée pas d'espace de nom réseau." #. type: item -#: guix-git/doc/guix.texi:35313 +#: guix-git/doc/guix.texi:35757 #, no-wrap msgid "--skip-checks" msgstr "--skip-checks" #. type: table -#: guix-git/doc/guix.texi:35315 +#: guix-git/doc/guix.texi:35759 msgid "Skip pre-installation safety checks." msgstr "Passe les vérifications de sécurité avant l'installation." #. type: table -#: guix-git/doc/guix.texi:35322 +#: guix-git/doc/guix.texi:35766 msgid "By default, @command{guix system init} and @command{guix system reconfigure} perform safety checks: they make sure the file systems that appear in the @code{operating-system} declaration actually exist (@pxref{File Systems}), and that any Linux kernel modules that may be needed at boot time are listed in @code{initrd-modules} (@pxref{Initial RAM Disk}). Passing this option skips these tests altogether." msgstr "Par défaut, @command{guix system init} et @command{guix system reconfigure} effectuent des vérifications de sécurité : ils s'assurent que les systèmes de fichiers qui apparaissent dans la déclaration @code{operating-system} existent vraiment (@pxref{File Systems}) et que les modules de noyau Linux qui peuvent être requis au démarrage sont listés dans @code{initrd-modules} (@pxref{Initial RAM Disk}). Passer cette option saute ces vérifications complètement." #. type: table -#: guix-git/doc/guix.texi:35325 +#: guix-git/doc/guix.texi:35769 msgid "Instruct @command{guix system reconfigure} to allow system downgrades." msgstr "Dit à @command{guix system reconfigure} de permettre le retour en arrière du système." #. type: table -#: guix-git/doc/guix.texi:35333 +#: guix-git/doc/guix.texi:35777 msgid "By default, @command{reconfigure} prevents you from downgrading your system. It achieves that by comparing the provenance info of your system (shown by @command{guix system describe}) with that of your @command{guix} command (shown by @command{guix describe}). If the commits for @command{guix} are not descendants of those used for your system, @command{guix system reconfigure} errors out. Passing @option{--allow-downgrades} allows you to bypass these checks." msgstr "Par défaut, @command{reconfigure} vous empêche de faire revenir votre système en arrière. Il fait cela en comparant les informations de provenance de votre système (décrites par @command{guix system describe}) avec celles de la commande @command{guix} (décrites par @command{guix describe}). Si les commits de @command{guix} ne descendent pas de ceux utilisés pour votre système, @command{guix system reconfigure} renvoie une erreur. Passer @option{--allow-downgrades} vous permet de passer ces tests." #. type: cindex -#: guix-git/doc/guix.texi:35339 +#: guix-git/doc/guix.texi:35783 #, no-wrap msgid "on-error" msgstr "on-error" #. type: cindex -#: guix-git/doc/guix.texi:35340 +#: guix-git/doc/guix.texi:35784 #, no-wrap msgid "on-error strategy" msgstr "stratégie on-error" #. type: cindex -#: guix-git/doc/guix.texi:35341 +#: guix-git/doc/guix.texi:35785 #, no-wrap msgid "error strategy" msgstr "stratégie en cas d'erreur" #. type: item -#: guix-git/doc/guix.texi:35342 +#: guix-git/doc/guix.texi:35786 #, no-wrap msgid "--on-error=@var{strategy}" msgstr "--on-error=@var{strategy}" #. type: table -#: guix-git/doc/guix.texi:35345 +#: guix-git/doc/guix.texi:35789 msgid "Apply @var{strategy} when an error occurs when reading @var{file}. @var{strategy} may be one of the following:" msgstr "Applique @var{strategy} lorsqu'une erreur arrive lors de la lecture de @var{file}. @var{strategy} peut être l'une des valeurs suivantes :" #. type: item -#: guix-git/doc/guix.texi:35347 +#: guix-git/doc/guix.texi:35791 #, no-wrap msgid "nothing-special" msgstr "nothing-special" #. type: table -#: guix-git/doc/guix.texi:35349 +#: guix-git/doc/guix.texi:35793 msgid "Report the error concisely and exit. This is the default strategy." msgstr "Rapporte l'erreur de manière concise et quitte. C'est la stratégie par défaut." #. type: item -#: guix-git/doc/guix.texi:35350 +#: guix-git/doc/guix.texi:35794 #, no-wrap msgid "backtrace" msgstr "backtrace" #. type: table -#: guix-git/doc/guix.texi:35352 +#: guix-git/doc/guix.texi:35796 msgid "Likewise, but also display a backtrace." msgstr "Pareil, mais affiche aussi une trace de débogage." #. type: item -#: guix-git/doc/guix.texi:35353 +#: guix-git/doc/guix.texi:35797 #, no-wrap msgid "debug" msgstr "debug" #. type: table -#: guix-git/doc/guix.texi:35359 +#: guix-git/doc/guix.texi:35803 msgid "Report the error and enter Guile's debugger. From there, you can run commands such as @code{,bt} to get a backtrace, @code{,locals} to display local variable values, and more generally inspect the state of the program. @xref{Debug Commands,,, guile, GNU Guile Reference Manual}, for a list of available debugging commands." msgstr "Rapporte l'erreur et entre dans le débogueur Guile. À partir de là, vous pouvez lancer des commandes comme @code{,bt} pour obtenir une trace de débogage, @code{,locals} pour afficher les valeurs des variables locales et plus généralement inspecter l'état du programme. @xref{Debug Commands,,, guile, GNU Guile Reference Manual}, pour une liste de commandes de débogage disponibles." #. type: Plain text -#: guix-git/doc/guix.texi:35366 +#: guix-git/doc/guix.texi:35810 msgid "Once you have built, configured, re-configured, and re-re-configured your Guix installation, you may find it useful to list the operating system generations available on disk---and that you can choose from the bootloader boot menu:" msgstr "Une fois que vous avez construit, re-configuré et re-re-configuré votre installation Guix, vous pourriez trouver utile de lister les générations du système disponibles sur le disque — et que vous pouvez choisir dans le menu du chargeur d'amorçage :" #. type: item -#: guix-git/doc/guix.texi:35369 guix-git/doc/guix.texi:37673 +#: guix-git/doc/guix.texi:35813 guix-git/doc/guix.texi:38152 #, no-wrap msgid "describe" msgstr "describe" #. type: table -#: guix-git/doc/guix.texi:35372 -msgid "Describe the current system generation: its file name, the kernel and bootloader used, etc., as well as provenance information when available." +#: guix-git/doc/guix.texi:35816 +#, fuzzy +#| msgid "Describe the current system generation: its file name, the kernel and bootloader used, etc., as well as provenance information when available." +msgid "Describe the running system generation: its file name, the kernel and bootloader used, etc., as well as provenance information when available." msgstr "Décrit la génération du système actuel : son nom de fichier, son noyau et chargeur d'amorçage utilisé, etc, ainsi que les informations de provenance si elles sont disponibles." +#. type: quotation +#: guix-git/doc/guix.texi:35823 +msgid "The @emph{running} system generation---referred to by @file{/run/current-system}---is not necessarily the @emph{current} system generation---referred to by @file{/var/guix/profiles/system}: it differs when, for instance, you chose from the bootloader menu to boot an older generation." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:35827 +msgid "It can also differ from the @emph{booted} system generation---referred to by @file{/run/booted-system}---for instance because you reconfigured the system in the meantime." +msgstr "" + #. type: item -#: guix-git/doc/guix.texi:35373 guix-git/doc/guix.texi:37677 +#: guix-git/doc/guix.texi:35829 guix-git/doc/guix.texi:38156 #, no-wrap msgid "list-generations" msgstr "list-generations" #. type: table -#: guix-git/doc/guix.texi:35378 +#: guix-git/doc/guix.texi:35834 msgid "List a summary of each generation of the operating system available on disk, in a human-readable way. This is similar to the @option{--list-generations} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "Affiche un résumé de chaque génération du système d'exploitation disponible sur le disque, dans un format lisible pour un humain. C'est similaire à l'option @option{--list-generations} de @command{guix package} (@pxref{Invoking guix package})." #. type: table -#: guix-git/doc/guix.texi:35383 guix-git/doc/guix.texi:37687 +#: guix-git/doc/guix.texi:35839 guix-git/doc/guix.texi:38166 msgid "Optionally, one can specify a pattern, with the same syntax that is used in @command{guix package --list-generations}, to restrict the list of generations displayed. For instance, the following command displays generations that are up to 10 days old:" msgstr "Éventuellement, on peut spécifier un motif, avec la même syntaxe utilisée pour @command{guix package --list-generations}, pour restreindre la liste des générations affichées. Par exemple, la commande suivante affiche les générations de moins de 10 jours :" #. type: example -#: guix-git/doc/guix.texi:35386 +#: guix-git/doc/guix.texi:35842 #, no-wrap msgid "$ guix system list-generations 10d\n" msgstr "$ guix system list-generations 10d\n" #. type: Plain text -#: guix-git/doc/guix.texi:35393 +#: guix-git/doc/guix.texi:35849 msgid "The @command{guix system} command has even more to offer! The following sub-commands allow you to visualize how your system services relate to each other:" msgstr "La commande @command{guix system} a même plus à proposer ! Les sous-commandes suivantes vous permettent de visualiser comme vos services systèmes sont liés les uns aux autres :" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35395 +#: guix-git/doc/guix.texi:35851 msgid "system-extension-graph" msgstr "system-extension-graph" #. type: item -#: guix-git/doc/guix.texi:35397 +#: guix-git/doc/guix.texi:35853 #, no-wrap msgid "extension-graph" msgstr "extension-graph" #. type: table -#: guix-git/doc/guix.texi:35404 +#: guix-git/doc/guix.texi:35860 msgid "Emit to standard output the @dfn{service extension graph} of the operating system defined in @var{file} (@pxref{Service Composition}, for more information on service extensions). By default the output is in Dot/Graphviz format, but you can choose a different format with @option{--graph-backend}, as with @command{guix graph} (@pxref{Invoking guix graph, @option{--backend}}):" msgstr "Émettre vers la sortie standard le @dfn{graphe d'extension de service} du système d'exploitation défini dans @var{file} (@pxref{Service Composition}, pour plus d'informations sur les extensions de service). Par défaut, le format de sortie est le format Dot/Graphviz, mais vous pouvez choisir un autre format avec @option{--graph-backend}, comme avec @command{guix graph} (@pxref{Invoking guix graph, @option{--backend}}) :" #. type: table -#: guix-git/doc/guix.texi:35406 +#: guix-git/doc/guix.texi:35862 msgid "The command:" msgstr "La commande :" #. type: example -#: guix-git/doc/guix.texi:35409 +#: guix-git/doc/guix.texi:35865 #, no-wrap msgid "$ guix system extension-graph @var{file} | xdot -\n" msgstr "$ guix system extension-graph @var{file} | xdot -\n" #. type: table -#: guix-git/doc/guix.texi:35412 +#: guix-git/doc/guix.texi:35868 msgid "shows the extension relations among services." msgstr "montre les relations d'extension entre les services." #. type: anchor{#1} -#: guix-git/doc/guix.texi:35414 +#: guix-git/doc/guix.texi:35870 msgid "system-shepherd-graph" msgstr "system-shepherd-graph" #. type: item -#: guix-git/doc/guix.texi:35414 +#: guix-git/doc/guix.texi:35870 #, no-wrap msgid "shepherd-graph" msgstr "shepherd-graph" #. type: table -#: guix-git/doc/guix.texi:35419 +#: guix-git/doc/guix.texi:35875 msgid "Emit to standard output the @dfn{dependency graph} of shepherd services of the operating system defined in @var{file}. @xref{Shepherd Services}, for more information and for an example graph." msgstr "Affiche le @dfn{graphe de dépendance} des services shepherd du système d'exploitation défini dans @var{file} sur la sortie standard. @xref{Shepherd Services}, pour plus d'informations et un exemple de graphe." #. type: table -#: guix-git/doc/guix.texi:35422 +#: guix-git/doc/guix.texi:35878 msgid "Again, the default output format is Dot/Graphviz, but you can pass @option{--graph-backend} to select a different one." msgstr "Encore une fois, le format de sortie par défaut est Dot/Graphviz, mais vous pouvez passer @option{--graph-backend} pour en choisir un autre." #. type: section -#: guix-git/doc/guix.texi:35426 +#: guix-git/doc/guix.texi:35882 #, no-wrap msgid "Invoking @code{guix deploy}" msgstr "Invoquer @command{guix deploy}" #. type: Plain text -#: guix-git/doc/guix.texi:35434 +#: guix-git/doc/guix.texi:35890 msgid "We've already seen @code{operating-system} declarations used to manage a machine's configuration locally. Suppose you need to configure multiple machines, though---perhaps you're managing a service on the web that's comprised of several servers. @command{guix deploy} enables you to use those same @code{operating-system} declarations to manage multiple remote hosts at once as a logical ``deployment''." msgstr "Nous avons déjà vu les déclarations de @code{operating-system} utilisées pour gérer la configuration d'une machine localement. Supposez que vous ayez besoin de configurer plusieurs machines --- peut-être que vous gérez un service web comprenant plusieurs serveurs. @command{guix deploy} vous permet d'utiliser les mêmes déclarations de systèmes d'exploitation pour gérer plusieurs hôtes distants en même temps dans le même « déploiement » logique." #. type: quotation -#: guix-git/doc/guix.texi:35439 guix-git/doc/guix.texi:36900 +#: guix-git/doc/guix.texi:35895 guix-git/doc/guix.texi:37390 msgid "The functionality described in this section is still under development and is subject to change. Get in touch with us on @email{guix-devel@@gnu.org}!" msgstr "La fonctionnalité décrite dans cette section est toujours en cours de développement et est sujette à changement. Contactez-nous sur @email{guix-devel@@gnu.org} !" #. type: example -#: guix-git/doc/guix.texi:35443 +#: guix-git/doc/guix.texi:35899 #, no-wrap msgid "guix deploy @var{file}\n" msgstr "guix deploy @var{fichier}\n" #. type: Plain text -#: guix-git/doc/guix.texi:35447 +#: guix-git/doc/guix.texi:35903 msgid "Such an invocation will deploy the machines that the code within @var{file} evaluates to. As an example, @var{file} might contain a definition like this:" msgstr "Une telle invocation déploiera les machines en lesquelles le code de @var{fichier} s'évalue. Par exemple, @var{fichier} peut contenir une définition comme celle-ci :" #. type: lisp -#: guix-git/doc/guix.texi:35454 +#: guix-git/doc/guix.texi:35910 #, no-wrap msgid "" ";; This is a Guix deployment of a \"bare bones\" setup, with\n" @@ -66158,7 +67063,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:35457 +#: guix-git/doc/guix.texi:35913 #, no-wrap msgid "" "(use-service-modules networking ssh)\n" @@ -66170,7 +67075,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:35478 +#: guix-git/doc/guix.texi:35934 #, no-wrap msgid "" "(define %system\n" @@ -66218,7 +67123,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:35488 +#: guix-git/doc/guix.texi:35944 #, no-wrap msgid "" "(list (machine\n" @@ -66242,33 +67147,33 @@ msgstr "" " (port 2222)))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:35501 +#: guix-git/doc/guix.texi:35957 msgid "The file should evaluate to a list of @var{machine} objects. This example, upon being deployed, will create a new generation on the remote system realizing the @code{operating-system} declaration @code{%system}. @code{environment} and @code{configuration} specify how the machine should be provisioned---that is, how the computing resources should be created and managed. The above example does not create any resources, as a @code{'managed-host} is a machine that is already running the Guix system and available over the network. This is a particularly simple case; a more complex deployment may involve, for example, starting virtual machines through a Virtual Private Server (VPS) provider. In such a case, a different @var{environment} type would be used." msgstr "Le fichier devrait s'évaluer en une liste d'objets @var{machine}. Cet exemple, lors du déploiement, créera une nouvelle génération sur le système distant en réalisant la déclaration @code{operating-system} @code{%system}. @code{environment} et @code{configuration} spécifient comme la machine devrait être provisionnée --- c.-à-d.@: comment les ressources sont créées et gérées. L'exemple ci-dessus ne crée aucune ressource, car un @code{'managed-host} est une machine qui fait déjà tourner le système Guix et est disponible sur le réseau. Cela est un cas particulièrement simple ; un déploiement plus complexe pourrait impliquer, par exemple, le démarrage de machines virtuels chez un fournisseur de serveurs privés virtuels (VPS). Dans ce cas, une type d'@var{environnement} différent devrait être utilisé." #. type: Plain text -#: guix-git/doc/guix.texi:35506 +#: guix-git/doc/guix.texi:35962 msgid "Do note that you first need to generate a key pair on the coordinator machine to allow the daemon to export signed archives of files from the store (@pxref{Invoking guix archive}), though this step is automatic on Guix System:" msgstr "Prenez note que vous devez d'abord générer une paire de clés sur la machine coordinatrice pour permettre au démon d'exporter les archives signées des fichiers du dépôt (@pxref{Invoking guix archive}), bien que cette étape soit automatique sur Guix System :" #. type: Plain text -#: guix-git/doc/guix.texi:35514 +#: guix-git/doc/guix.texi:35970 msgid "Each target machine must authorize the key of the master machine so that it accepts store items it receives from the coordinator:" msgstr "Chaque machine cible doit autoriser la clé de la machine maître afin qu'elle accepte les objets de stockage qu'elle reçoit du coordinateur :" #. type: example -#: guix-git/doc/guix.texi:35517 +#: guix-git/doc/guix.texi:35973 #, no-wrap msgid "# guix archive --authorize < coordinator-public-key.txt\n" msgstr "# guix archive --authorize < coordinator-public-key.txt\n" #. type: Plain text -#: guix-git/doc/guix.texi:35528 +#: guix-git/doc/guix.texi:35984 msgid "@code{user}, in this example, specifies the name of the user account to log in as to perform the deployment. Its default value is @code{root}, but root login over SSH may be forbidden in some cases. To work around this, @command{guix deploy} can log in as an unprivileged user and employ @code{sudo} to escalate privileges. This will only work if @code{sudo} is currently installed on the remote and can be invoked non-interactively as @code{user}. That is, the line in @code{sudoers} granting @code{user} the ability to use @code{sudo} must contain the @code{NOPASSWD} tag. This can be accomplished with the following operating system configuration snippet:" msgstr "@code{user}, dans cet exemple, spécifie le nom du compte utilisateur à utiliser pour se connecter lors du déploiement. Sa valeur par défaut est @code{root}, mais la connexion SSH en root peut être interdite dans certains cas. Pour contourner cela, @command{guix deploy} peut se connecter en tant qu'utilisateur non-privilégié et utiliser @code{sudo} pour récupérer les privilèges. Cela ne fonctionnera que si @code{sudo} est actuellement installé sur la machine distante et peut être invoqué de manière non interactive par @code{user}. C'est-à-dire que la ligne @code{sudoers} permettant à @code{user} d'utiliser @code{sudo} doit contenir l'attribut @code{NOPASSWD}. Cela peut se faire avec le bout de configuration du système d'exploitation suivant :" #. type: lisp -#: guix-git/doc/guix.texi:35532 +#: guix-git/doc/guix.texi:35988 #, no-wrap msgid "" "(use-modules ...\n" @@ -66280,7 +67185,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:35534 +#: guix-git/doc/guix.texi:35990 #, no-wrap msgid "" "(define %user \"username\")\n" @@ -66290,7 +67195,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:35542 +#: guix-git/doc/guix.texi:35998 #, no-wrap msgid "" "(operating-system\n" @@ -66312,235 +67217,285 @@ msgstr "" "\n" #. type: Plain text -#: guix-git/doc/guix.texi:35547 +#: guix-git/doc/guix.texi:36003 msgid "For more information regarding the format of the @file{sudoers} file, consult @command{man sudoers}." msgstr "Pour plus d'informations sur le format du fichier @file{sudoers}, consultez @command{man sudoers}." +#. type: Plain text +#: guix-git/doc/guix.texi:36008 +msgid "Once you've deployed a system on a set of machines, you may find it useful to run a command on all of them. The @option{--execute} or @option{-x} option lets you do that; the example below runs @command{uname -a} on all the machines listed in the deployment file:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:36011 +#, fuzzy, no-wrap +#| msgid "guix deploy @var{file}\n" +msgid "guix deploy @var{file} -x -- uname -a\n" +msgstr "guix deploy @var{fichier}\n" + +#. type: Plain text +#: guix-git/doc/guix.texi:36015 +msgid "One thing you may often need to do after deployment is restart specific services on all the machines, which you can do like so:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:36018 +#, no-wrap +msgid "guix deploy @var{file} -x -- herd restart @var{service}\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36022 +msgid "The @command{guix deploy -x} command returns zero if and only if the command succeeded on all the machines." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36027 +msgid "Below are the data types you need to know about when writing a deployment file." +msgstr "" + #. type: deftp -#: guix-git/doc/guix.texi:35548 +#: guix-git/doc/guix.texi:36028 #, no-wrap msgid "{Data Type} machine" msgstr "{Type de données} machine" #. type: deftp -#: guix-git/doc/guix.texi:35551 +#: guix-git/doc/guix.texi:36031 msgid "This is the data type representing a single machine in a heterogeneous Guix deployment." msgstr "C'est le type de données représentant une seule machine dans un déploiement Guix hétérogène." #. type: table -#: guix-git/doc/guix.texi:35555 +#: guix-git/doc/guix.texi:36035 msgid "The object of the operating system configuration to deploy." msgstr "L'objet de la configuration du système d'exploitation à déployer." #. type: code{#1} -#: guix-git/doc/guix.texi:35556 +#: guix-git/doc/guix.texi:36036 #, no-wrap msgid "environment" msgstr "environment" #. type: table -#: guix-git/doc/guix.texi:35558 +#: guix-git/doc/guix.texi:36038 msgid "An @code{environment-type} describing how the machine should be provisioned." msgstr "Un @code{environment-type} décrit comment la machine est provisionnée." #. type: item -#: guix-git/doc/guix.texi:35559 +#: guix-git/doc/guix.texi:36039 #, no-wrap msgid "@code{configuration} (default: @code{#f})" msgstr "@code{configuration} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:35564 +#: guix-git/doc/guix.texi:36044 msgid "An object describing the configuration for the machine's @code{environment}. If the @code{environment} has a default configuration, @code{#f} may be used. If @code{#f} is used for an environment with no default configuration, however, an error will be thrown." msgstr "Un objet décrivant la configuration de l'environnement de la machine. Si l'objet @code{environment} a une configuration par défaut, vous pouvez utiliser @code{#f}. Si vous utilisez @code{#f} mais que l'environnement n'a pas de configuration par défaut, une erreur sera renvoyée." #. type: deftp -#: guix-git/doc/guix.texi:35567 +#: guix-git/doc/guix.texi:36047 #, no-wrap msgid "{Data Type} machine-ssh-configuration" msgstr "{Type de données} machine-ssh-configuration" #. type: deftp -#: guix-git/doc/guix.texi:35570 +#: guix-git/doc/guix.texi:36050 msgid "This is the data type representing the SSH client parameters for a machine with an @code{environment} of @code{managed-host-environment-type}." msgstr "C'est le type de données représentant les paramètres du client SSH pour une machine qui a pour @code{environment} @code{managed-host-environment-type}." #. type: item -#: guix-git/doc/guix.texi:35573 +#: guix-git/doc/guix.texi:36053 #, no-wrap msgid "@code{build-locally?} (default: @code{#t})" msgstr "@code{build-locally?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:35575 +#: guix-git/doc/guix.texi:36055 msgid "If false, system derivations will be built on the machine being deployed to." msgstr "Si la valeur est fausse, les dérivations du système seront construites sur la machine qui est déployée." #. type: code{#1} -#: guix-git/doc/guix.texi:35575 +#: guix-git/doc/guix.texi:36055 #, no-wrap msgid "system" msgstr "system" #. type: table -#: guix-git/doc/guix.texi:35578 +#: guix-git/doc/guix.texi:36058 msgid "The system type describing the architecture of the machine being deployed to---e.g., @code{\"x86_64-linux\"}." msgstr "Le type de système décrivant l'architecture de la machine déployée pour---par exemple, @code{\"x86_64-linux\"}." #. type: item -#: guix-git/doc/guix.texi:35578 +#: guix-git/doc/guix.texi:36058 #, no-wrap msgid "@code{authorize?} (default: @code{#t})" msgstr "@code{authorize?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:35581 +#: guix-git/doc/guix.texi:36061 msgid "If true, the coordinator's signing key will be added to the remote's ACL keyring." msgstr "Si la valeur est vraie, la clé de signature du coordinateur sera ajoutée au porteclé des ACL de la machine distante." #. type: item -#: guix-git/doc/guix.texi:35583 +#: guix-git/doc/guix.texi:36063 #, no-wrap msgid "@code{identity} (default: @code{#f})" msgstr "@code{identity} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:35586 +#: guix-git/doc/guix.texi:36066 msgid "If specified, the path to the SSH private key to use to authenticate with the remote host." msgstr "Si spécifié, le chemin d'accès à la clé privée SSH à utiliser pour s'authentifier auprès de l'hôte distant." #. type: item -#: guix-git/doc/guix.texi:35587 +#: guix-git/doc/guix.texi:36067 #, no-wrap msgid "@code{host-key} (default: @code{#f})" msgstr "@code{host-key} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:35589 +#: guix-git/doc/guix.texi:36069 msgid "This should be the SSH host key of the machine, which looks like this:" msgstr "Cela devrait être la clé de l'hôte SSH de la machine, qui ressemble à cela :" #. type: example -#: guix-git/doc/guix.texi:35592 +#: guix-git/doc/guix.texi:36072 #, no-wrap msgid "ssh-ed25519 AAAAC3Nz@dots{} root@@example.org\n" msgstr "ssh-ed25519 AAAAC3Nz@dots{} root@@example.org\n" #. type: table -#: guix-git/doc/guix.texi:35597 +#: guix-git/doc/guix.texi:36077 msgid "When @code{host-key} is @code{#f}, the server is authenticated against the @file{~/.ssh/known_hosts} file, just like the OpenSSH @command{ssh} client does." msgstr "Quand @code{host-key} est @code{#f}, le serveur est authentifié avec le fichier @file{~/.ssh/known_hosts}, exactement comme le ferait le client @command{ssh} OpenSSH." #. type: item -#: guix-git/doc/guix.texi:35598 +#: guix-git/doc/guix.texi:36078 #, no-wrap msgid "@code{allow-downgrades?} (default: @code{#f})" msgstr "@code{allow-downgrades?} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:35600 +#: guix-git/doc/guix.texi:36080 msgid "Whether to allow potential downgrades." msgstr "Autoriser ou non d'éventuels déclassements." #. type: table -#: guix-git/doc/guix.texi:35608 +#: guix-git/doc/guix.texi:36088 msgid "Like @command{guix system reconfigure}, @command{guix deploy} compares the channel commits currently deployed on the remote host (as returned by @command{guix system describe}) to those currently in use (as returned by @command{guix describe}) to determine whether commits currently in use are descendants of those deployed. When this is not the case and @code{allow-downgrades?} is false, it raises an error. This ensures you do not accidentally downgrade remote machines." msgstr "Comme @command{guix sysetm reconfigure}, @command{guix deploy} compare les commits du canal actuellement déployé sur l'hôte distant (renvoyé par @command{guix system describe}) à ceux utilisés (renvoyés par @command{guix describe}) pour déterminer si les commits actuellement utilisés descendent de ceux déployés. Lorsque ce n'est pas le cas et que @code{allow-downgrades?} est faux, cela lève une erreur. Cela permet de s'assurer que vous ne déployez pas accidentellement une version plus ancienne version les machines distantes." +#. type: item +#: guix-git/doc/guix.texi:36089 +#, fuzzy, no-wrap +#| msgid "@code{check?} (default: @code{#t})" +msgid "@code{safety-checks?} (default: @code{#t})" +msgstr "@code{check?} (par défaut : @code{#t})" + +#. type: table +#: guix-git/doc/guix.texi:36095 +msgid "Whether to perform ``safety checks'' before deployment. This includes verifying that devices and file systems referred to in the operating system configuration actually exist on the target machine, and making sure that Linux modules required to access storage devices at boot time are listed in the @code{initrd-modules} field of the operating system." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:36098 +msgid "These safety checks ensure that you do not inadvertently deploy a system that would fail to boot. Be careful before turning them off!" +msgstr "" + #. type: deftp -#: guix-git/doc/guix.texi:35611 +#: guix-git/doc/guix.texi:36101 #, no-wrap msgid "{Data Type} digital-ocean-configuration" msgstr "{Type de données} digital-ocean-configuration" #. type: deftp -#: guix-git/doc/guix.texi:35614 +#: guix-git/doc/guix.texi:36104 msgid "This is the data type describing the Droplet that should be created for a machine with an @code{environment} of @code{digital-ocean-environment-type}." msgstr "C'est le type de données décrivant le Droplet qui devrait être créé pour une machine avec un @code{environment} valant @code{digital-ocean-environment-type}." #. type: code{#1} -#: guix-git/doc/guix.texi:35616 +#: guix-git/doc/guix.texi:36106 #, no-wrap msgid "ssh-key" msgstr "ssh-key" #. type: table -#: guix-git/doc/guix.texi:35619 +#: guix-git/doc/guix.texi:36109 msgid "The path to the SSH private key to use to authenticate with the remote host. In the future, this field may not exist." msgstr "Le chemin vers la clé SSH privée à utiliser pour s'authentifier avec l'hôte distant. Dans le futur, le champ pourrait ne plus exister." #. type: code{#1} -#: guix-git/doc/guix.texi:35619 +#: guix-git/doc/guix.texi:36109 #, no-wrap msgid "tags" msgstr "tags" #. type: table -#: guix-git/doc/guix.texi:35622 +#: guix-git/doc/guix.texi:36112 msgid "A list of string ``tags'' that uniquely identify the machine. Must be given such that no two machines in the deployment have the same set of tags." msgstr "Une liste « d'attributs » qui identifient la machine de manière unique. Il faut faire attention à ce que deux machine du déploiement n'aient pas le même ensemble d'attributs." #. type: code{#1} -#: guix-git/doc/guix.texi:35622 +#: guix-git/doc/guix.texi:36112 #, no-wrap msgid "region" msgstr "region" #. type: table -#: guix-git/doc/guix.texi:35624 +#: guix-git/doc/guix.texi:36114 msgid "A Digital Ocean region slug, such as @code{\"nyc3\"}." msgstr "Le nom d'une région de Digital Ocean, comme @code{\"nyc3\"}." #. type: table -#: guix-git/doc/guix.texi:35626 +#: guix-git/doc/guix.texi:36116 msgid "A Digital Ocean size slug, such as @code{\"s-1vcpu-1gb\"}" msgstr "Le nom d'une taille de Digital Ocean, comme @code{\"s-1vcpu-1gb\"}" #. type: code{#1} -#: guix-git/doc/guix.texi:35626 +#: guix-git/doc/guix.texi:36116 #, no-wrap msgid "enable-ipv6?" msgstr "enable-ipv6?" #. type: table -#: guix-git/doc/guix.texi:35628 +#: guix-git/doc/guix.texi:36118 msgid "Whether or not the droplet should be created with IPv6 networking." msgstr "Indique s'il faut créer une IPv6 pour le droplet." #. type: section -#: guix-git/doc/guix.texi:35632 +#: guix-git/doc/guix.texi:36122 #, no-wrap msgid "Running Guix in a Virtual Machine" msgstr "Exécuter Guix sur une machine virtuelle" #. type: Plain text -#: guix-git/doc/guix.texi:35640 +#: guix-git/doc/guix.texi:36130 msgid "To run Guix in a virtual machine (VM), one can use the pre-built Guix VM image distributed at @url{@value{BASE-URL}/guix-system-vm-image-@value{VERSION}.x86_64-linux.qcow2}. This image is a compressed image in QCOW format. You can pass it to an emulator such as @uref{https://qemu.org/, QEMU} (see below for details)." msgstr "Pour exécuter Guix dans une machine virtuelle (VM), on peut soit utiliser l'image de VM Guix pré-construite sur @indicateurl{@value{BASE-URL}/guix-system-vm-image-@value{VERSION}.x86_64-linux.qcow2} . Cette image est une image compressée au format QCOW. Vous devrez la passer à un émulateur comme @uref{https://qemu.org/, QEMU} (voir plus bas pour des détails)." #. type: Plain text -#: guix-git/doc/guix.texi:35647 +#: guix-git/doc/guix.texi:36137 msgid "This image boots the Xfce graphical environment and it contains some commonly used tools. You can install more software in the image by running @command{guix package} in a terminal (@pxref{Invoking guix package}). You can also reconfigure the system based on its initial configuration file available as @file{/run/current-system/configuration.scm} (@pxref{Using the Configuration System})." msgstr "Cette image démarre l'environnement graphique Xfce et contient certains outils couramment utilisés. Vous pouvez installer plus de logiciels sur l'image en lançant @command{guix package} dans un terminal (@pxref{Invoking guix package}). Vous pouvez aussi reconfigurer le système à partir de son fichier de configuration initiale disponible dans @file{/run/current-system/configuration.scm} (@pxref{Using the Configuration System})." #. type: Plain text -#: guix-git/doc/guix.texi:35650 +#: guix-git/doc/guix.texi:36140 msgid "Instead of using this pre-built image, one can also build their own image using @command{guix system image} (@pxref{Invoking guix system})." msgstr "Au lieu d'utiliser cette image pré-construite, on peut construire sa propre image avec @command{guix system image} (@pxref{Invoking guix system})." #. type: cindex -#: guix-git/doc/guix.texi:35651 +#: guix-git/doc/guix.texi:36141 #, no-wrap msgid "QEMU" msgstr "QEMU" #. type: Plain text -#: guix-git/doc/guix.texi:35658 +#: guix-git/doc/guix.texi:36148 msgid "If you built your own image, you must copy it out of the store (@pxref{The Store}) and give yourself permission to write to the copy before you can use it. When invoking QEMU, you must choose a system emulator that is suitable for your hardware platform. Here is a minimal QEMU invocation that will boot the result of @command{guix system image -t qcow2} on x86_64 hardware:" msgstr "Si vous construisez votre propre image, vous devez la copier en dehors du dépôt (@pxref{The Store}) et vous donner la permission d'écrire sur la copie avant de pouvoir l'utiliser. Lorsque vous invoquez QEMU, vous devez choisir un émulateur système correspondant à votre plate-forme matérielle. Voici une invocation minimale de QEMU qui démarrera le résultat de @command{guix system image -t qcow2} sur un matériel x8_64 :" #. type: example -#: guix-git/doc/guix.texi:35665 +#: guix-git/doc/guix.texi:36155 #, no-wrap msgid "" "$ qemu-system-x86_64 \\\n" @@ -66556,137 +67511,137 @@ msgstr "" " -drive if=none,file=/tmp/qemu-image,id=myhd\n" #. type: Plain text -#: guix-git/doc/guix.texi:35668 +#: guix-git/doc/guix.texi:36158 msgid "Here is what each of these options means:" msgstr "Voici la signification de ces options :" #. type: item -#: guix-git/doc/guix.texi:35670 +#: guix-git/doc/guix.texi:36160 #, no-wrap msgid "qemu-system-x86_64" msgstr "qemu-system-x86_64" #. type: table -#: guix-git/doc/guix.texi:35673 +#: guix-git/doc/guix.texi:36163 msgid "This specifies the hardware platform to emulate. This should match the host." msgstr "Cela spécifie la plate-forme matérielle à émuler. Elle doit correspondre à l'hôte." #. type: item -#: guix-git/doc/guix.texi:35674 +#: guix-git/doc/guix.texi:36164 #, no-wrap msgid "-nic user,model=virtio-net-pci" msgstr "-nic user,model=virtio-net-pci" #. type: table -#: guix-git/doc/guix.texi:35682 +#: guix-git/doc/guix.texi:36172 msgid "Enable the unprivileged user-mode network stack. The guest OS can access the host but not vice versa. This is the simplest way to get the guest OS online. @code{model} specifies which network device to emulate: @code{virtio-net-pci} is a special device made for virtualized operating systems and recommended for most uses. Assuming your hardware platform is x86_64, you can get a list of available NIC models by running @command{qemu-system-x86_64 -nic model=help}." msgstr "Active la pile réseau en mode utilisateur non privilégié. Le système invité peut accéder à l'hôte mais pas l'inverse. C'est la manière la plus simple de mettre le système en ligne. @code{model} spécifie le périphérique réseau à émuler : @code{virtio-net-pci} est un périphérique spécial conçu pour les systèmes d'exploitation virtualisés et recommandés dans la plupart des cas. En supposant que votre plateforme matérielle est x86_64, vous pouvez récupérer une liste des modèles d'interfaces réseaux en lançant @command{qemu-system-x86_64 -nic model=help}." #. type: item -#: guix-git/doc/guix.texi:35683 +#: guix-git/doc/guix.texi:36173 #, no-wrap msgid "-enable-kvm" msgstr "-enable-kvm" #. type: table -#: guix-git/doc/guix.texi:35687 +#: guix-git/doc/guix.texi:36177 msgid "If your system has hardware virtualization extensions, enabling the virtual machine support (KVM) of the Linux kernel will make things run faster." msgstr "Si votre système a des extensions de virtualisation matérielle, activer le support des machines virtuelles de Linux (KVM) accélérera les choses." #. type: item -#: guix-git/doc/guix.texi:35689 +#: guix-git/doc/guix.texi:36179 #, no-wrap msgid "-m 1024" msgstr "-m 1024" #. type: table -#: guix-git/doc/guix.texi:35692 +#: guix-git/doc/guix.texi:36182 msgid "RAM available to the guest OS, in mebibytes. Defaults to 128@tie{}MiB, which may be insufficient for some operations." msgstr "RAM disponible sur l'OS émulé, en mébioctets. La valeur par défaut est 128@tie{}Mo, ce qui peut ne pas suffire pour certaines opérations." #. type: item -#: guix-git/doc/guix.texi:35693 +#: guix-git/doc/guix.texi:36183 #, no-wrap msgid "-device virtio-blk,drive=myhd" msgstr "-device virtio-blk,drive=myhd" #. type: table -#: guix-git/doc/guix.texi:35698 +#: guix-git/doc/guix.texi:36188 msgid "Create a @code{virtio-blk} drive called ``myhd''. @code{virtio-blk} is a ``paravirtualization'' mechanism for block devices that allows QEMU to achieve better performance than if it were emulating a complete disk drive. See the QEMU and KVM documentation for more info." msgstr "Crée un lecteur @code{virtio-blk} nommé « myhd ». @code{virtio-blk} est un mécanisme de « paravirtualisation » pour les périphériques blocs qui permet à QEMU d'avoir de meilleures performances que s'il émulait un disque complet. Voir la documentation de QEMU et KVM pour plus d'info." #. type: item -#: guix-git/doc/guix.texi:35699 +#: guix-git/doc/guix.texi:36189 #, no-wrap msgid "-drive if=none,file=/tmp/qemu-image,id=myhd" msgstr "-drive if=none,file=/tmp/qemu-image,id=myhd" #. type: table -#: guix-git/doc/guix.texi:35702 +#: guix-git/doc/guix.texi:36192 msgid "Use our QCOW image, the @file{/tmp/qemu-image} file, as the backing store of the ``myhd'' drive." msgstr "Utilise notre image QCOW, le fichier @file{/tmp/qemu-image}, comme stockage pour le lecteur « myhd »." #. type: Plain text -#: guix-git/doc/guix.texi:35712 +#: guix-git/doc/guix.texi:36202 msgid "The default @command{run-vm.sh} script that is returned by an invocation of @command{guix system vm} does not add a @command{-nic user} flag by default. To get network access from within the vm add the @code{(dhcp-client-service)} to your system definition and start the VM using @command{$(guix system vm config.scm) -nic user}. An important caveat of using @command{-nic user} for networking is that @command{ping} will not work, because it uses the ICMP protocol. You'll have to use a different command to check for network connectivity, for example @command{guix download}." msgstr "Le script @command{run-vm.sh} par défaut renvoyé par une invocation de @command{guix system vm} n'ajoute pas le drapeau @command{-nic user} par défaut. Pour avoir accès au réseau dans la vm, ajoutez le @code{(dhcp-client-service)} à votre définition et démarrez la VM avec @command{$(guix system vm config.scm) -nic user}. Un problème important avec @command{-nic user} pour le réseau, est que @command{ping} ne fonctionnera pas, car il utilise le protocole ICMP. Vous devrez utiliser une autre commande pour vérifier la connectivité réseau, par exemple @command{guix download}." #. type: subsection -#: guix-git/doc/guix.texi:35713 +#: guix-git/doc/guix.texi:36203 #, no-wrap msgid "Connecting Through SSH" msgstr "Se connecter par SSH" #. type: Plain text -#: guix-git/doc/guix.texi:35721 +#: guix-git/doc/guix.texi:36211 msgid "To enable SSH inside a VM you need to add an SSH server like @code{openssh-service-type} to your VM (@pxref{Networking Services, @code{openssh-service-type}}). In addition you need to forward the SSH port, 22 by default, to the host. You can do this with" msgstr "Pour activer SSH dans une VM vous devez ajouter un serveur SSH comme @code{opennssh-service-type} à votre VM (@pxref{Networking Services, @code{openssh-service-type}}). En plus vous devez transférer le port 22, par défaut, à l'hôte. Vous pouvez faire cela avec" #. type: example -#: guix-git/doc/guix.texi:35724 +#: guix-git/doc/guix.texi:36214 #, no-wrap msgid "$(guix system vm config.scm) -nic user,model=virtio-net-pci,hostfwd=tcp::10022-:22\n" msgstr "$(guix system vm config.scm) -nic user,model=virtio-net-pci,hostfwd=tcp::10022-:22\n" #. type: Plain text -#: guix-git/doc/guix.texi:35727 +#: guix-git/doc/guix.texi:36217 msgid "To connect to the VM you can run" msgstr "Pour vous connecter à la VM vous pouvez lancer" #. type: example -#: guix-git/doc/guix.texi:35730 +#: guix-git/doc/guix.texi:36220 #, no-wrap msgid "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 10022 localhost\n" msgstr "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 10022 localhost\n" #. type: Plain text -#: guix-git/doc/guix.texi:35737 +#: guix-git/doc/guix.texi:36227 msgid "The @command{-p} tells @command{ssh} the port you want to connect to. @command{-o UserKnownHostsFile=/dev/null} prevents @command{ssh} from complaining every time you modify your @command{config.scm} file and the @command{-o StrictHostKeyChecking=no} prevents you from having to allow a connection to an unknown host every time you connect." msgstr "Le @command{-p} donne le port auquel vous voulez vous connecter à @command{ssh}, @command{-o UserKnownHostsFile=/dev/null} évite que @command{ssh} ne se plaigne à chaque fois que vous modifiez le fichier @command{config.scm} et @command{-o StrictHostKeyChecking=no} évite que vous n'ayez à autoriser une connexion à un hôte inconnu à chaque fois que vous vous connectez." #. type: quotation -#: guix-git/doc/guix.texi:35743 +#: guix-git/doc/guix.texi:36233 msgid "If you find the above @samp{hostfwd} example not to be working (e.g., your SSH client hangs attempting to connect to the mapped port of your VM), make sure that your Guix System VM has networking support, such as by using the @code{dhcp-client-service-type} service type." msgstr "Si le @samp{hostfwd} d'exemple ci-dessus ne marche pas chez vous (ex : si votre client SSH reste bloqué en attente de connexion vers le port lié de votre VM), assurez-vous que votre VM Guix System prend bien en charge le réseau, en utilisant par exemple le type de service @code{dhcp-client-service-type}." #. type: subsection -#: guix-git/doc/guix.texi:35745 +#: guix-git/doc/guix.texi:36235 #, no-wrap msgid "Using @command{virt-viewer} with Spice" msgstr "Utiliser @command{virt-viewer} avec Spice" #. type: Plain text -#: guix-git/doc/guix.texi:35751 +#: guix-git/doc/guix.texi:36241 msgid "As an alternative to the default @command{qemu} graphical client you can use the @command{remote-viewer} from the @command{virt-viewer} package. To connect pass the @command{-spice port=5930,disable-ticketing} flag to @command{qemu}. See previous section for further information on how to do this." msgstr "Alternativement au client graphique @command{qemu} par défaut vous pouvez utiliser @command{remote-viewer} du paquet @command{virt-viewer}. Pour vous connecter, passez le drapeau @command{-spice port=5930,disable-ticketing} à @command{qemu}. Voir les sections précédentes pour plus d'informations sur comment faire cela." #. type: Plain text -#: guix-git/doc/guix.texi:35754 +#: guix-git/doc/guix.texi:36244 msgid "Spice also allows you to do some nice stuff like share your clipboard with your VM@. To enable that you'll also have to pass the following flags to @command{qemu}:" msgstr "Spice a aussi de chouettes fonctionnalités comme le partage de votre presse-papier avec la VM@. Pour activer cela vous devrez aussi passer les drapeaux suivants à @command{qemu} :" #. type: example -#: guix-git/doc/guix.texi:35760 +#: guix-git/doc/guix.texi:36250 #, no-wrap msgid "" "-device virtio-serial-pci,id=virtio-serial0,max_ports=16,bus=pci.0,addr=0x5\n" @@ -66700,81 +67655,81 @@ msgstr "" "name=com.redhat.spice.0\n" #. type: Plain text -#: guix-git/doc/guix.texi:35764 +#: guix-git/doc/guix.texi:36254 msgid "You'll also need to add the @code{(spice-vdagent-service)} to your system definition (@pxref{Miscellaneous Services, Spice service})." msgstr "Vous devrez également ajouter le @code{(spice-vdagent-service)} à la définition de votre système (@pxref{Miscellaneous Services, Spice service})." #. type: Plain text -#: guix-git/doc/guix.texi:35771 +#: guix-git/doc/guix.texi:36261 msgid "The previous sections show the available services and how one can combine them in an @code{operating-system} declaration. But how do we define them in the first place? And what is a service anyway?" msgstr "Les sections précédentes montrent les services disponibles et comment on peut les combiner dans une déclaration @code{operating-system}. Mais, déjà, comment les définir ? Et qu'est-ce qu'un service au fait ?" #. type: cindex -#: guix-git/doc/guix.texi:35784 +#: guix-git/doc/guix.texi:36274 #, no-wrap msgid "daemons" msgstr "démons" #. type: Plain text -#: guix-git/doc/guix.texi:35797 +#: guix-git/doc/guix.texi:36287 msgid "Here we define a @dfn{service} as, broadly, something that extends the functionality of the operating system. Often a service is a process---a @dfn{daemon}---started when the system boots: a secure shell server, a Web server, the Guix build daemon, etc. Sometimes a service is a daemon whose execution can be triggered by another daemon---e.g., an FTP server started by @command{inetd} or a D-Bus service activated by @command{dbus-daemon}. Occasionally, a service does not map to a daemon. For instance, the ``account'' service collects user accounts and makes sure they exist when the system runs; the ``udev'' service collects device management rules and makes them available to the eudev daemon; the @file{/etc} service populates the @file{/etc} directory of the system." msgstr "Ici nous définissons un @dfn{service} comme étant, assez largement, quelque chose qui étend la fonctionnalité d'un système d'exploitation. Souvent un service est un processus — un @dfn{démon} — démarré lorsque le système démarre : un serveur ssh, un serveur web, le démon de construction de Guix, etc. Parfois un service est un démon dont l'exécution peut être déclenchée par un autre démon — p.@: ex.@: un serveur FTP démarré par @command{inetd} ou un service D-Bus activé par @command{dbus-daemon}. Parfois, un service ne correspond pas à un démon. Par exemple, le service « de comptes » récupère la liste des comptes utilisateurs et s'assure qu'ils existent bien lorsque le système est lancé ; le service « udev » récupère les règles de gestion des périphériques et les rend disponible au démon eudev ; le service @file{/etc} rempli le répertoire @file{/etc} du système." #. type: cindex -#: guix-git/doc/guix.texi:35798 +#: guix-git/doc/guix.texi:36288 #, no-wrap msgid "service extensions" msgstr "extensions de service" #. type: Plain text -#: guix-git/doc/guix.texi:35810 +#: guix-git/doc/guix.texi:36300 msgid "Guix system services are connected by @dfn{extensions}. For instance, the secure shell service @emph{extends} the Shepherd---the initialization system, running as PID@tie{}1---by giving it the command lines to start and stop the secure shell daemon (@pxref{Networking Services, @code{openssh-service-type}}); the UPower service extends the D-Bus service by passing it its @file{.service} specification, and extends the udev service by passing it device management rules (@pxref{Desktop Services, @code{upower-service}}); the Guix daemon service extends the Shepherd by passing it the command lines to start and stop the daemon, and extends the account service by passing it a list of required build user accounts (@pxref{Base Services})." msgstr "Les services de Guix sont connectés par des @dfn{extensions}. Par exemple, le service ssh @dfn{étend} le Shepherd — le système d'initialisation de GuixSD, qui tourne en tant que PID@tie{}1 — en lui donnant les lignes de commande pour démarrer et arrêter le démon ssh (@pxref{Networking Services, @code{lsh-service}}) ; le service UPower étend le service D-Bus en lui passant sa spécification @file{.service} et étend le service udev en lui passant des règles de gestion de périphériques (@pxref{Desktop Services, @code{upower-service}}) ; le démon Guix étend le Shepherd en lui passant les lignes de commande pour démarrer et arrêter le démon et étend le service de comptes en lui passant une liste des comptes utilisateurs de constructions requis (@pxref{Base Services})." #. type: Plain text -#: guix-git/doc/guix.texi:35814 +#: guix-git/doc/guix.texi:36304 msgid "All in all, services and their ``extends'' relations form a directed acyclic graph (DAG). If we represent services as boxes and extensions as arrows, a typical system might provide something like this:" msgstr "En définitive, les services et leurs relation « d'extensions » forment un graphe orienté acyclique (DAG). Si nous représentons les services comme des boîtes et les extensions comme des flèches, un système typique pourrait fournir quelque chose comme cela :" #. type: Plain text -#: guix-git/doc/guix.texi:35816 +#: guix-git/doc/guix.texi:36306 msgid "@image{images/service-graph,,5in,Typical service extension graph.}" msgstr "@image{images/service-graph,,5in,Graphe d'extension des services typique.}" #. type: cindex -#: guix-git/doc/guix.texi:35817 +#: guix-git/doc/guix.texi:36307 #, no-wrap msgid "system service" msgstr "service système" #. type: Plain text -#: guix-git/doc/guix.texi:35825 +#: guix-git/doc/guix.texi:36315 msgid "At the bottom, we see the @dfn{system service}, which produces the directory containing everything to run and boot the system, as returned by the @command{guix system build} command. @xref{Service Reference}, to learn about the other service types shown here. @xref{system-extension-graph, the @command{guix system extension-graph} command}, for information on how to generate this representation for a particular operating system definition." msgstr "En bas, on voit le @dfn{service système} qui produit le répertoire contenant tout et lançant et démarrant le système, renvoyé par la commande @command{guix system build}. @xref{Service Reference}, pour apprendre les autres types de services montrés ici. @xref{system-extension-graph, the @command{guix system extension-graph} command}, pour plus d'informations sur la manière de générer cette représentation pour une définition de système d'exploitation particulière." #. type: cindex -#: guix-git/doc/guix.texi:35826 +#: guix-git/doc/guix.texi:36316 #, no-wrap msgid "service types" msgstr "types de services" #. type: Plain text -#: guix-git/doc/guix.texi:35832 +#: guix-git/doc/guix.texi:36322 msgid "Technically, developers can define @dfn{service types} to express these relations. There can be any number of services of a given type on the system---for instance, a system running two instances of the GNU secure shell server (lsh) has two instances of @code{lsh-service-type}, with different parameters." msgstr "Techniquement, on peut définir des @dfn{types de services} pour exprimer ces relations. Il peut y avoir n'importe quel quantité de services d'un type donné sur le système — par exemple, un système sur lequel tournent deux instances du serveur ssh de GNU (lsh) a deux instance de @var{lsh-service-type}, avec des paramètres différents." #. type: Plain text -#: guix-git/doc/guix.texi:35835 +#: guix-git/doc/guix.texi:36325 msgid "The following section describes the programming interface for service types and services." msgstr "La section suivante décrit l'interface de programmation des types de services et des services." #. type: Plain text -#: guix-git/doc/guix.texi:35842 +#: guix-git/doc/guix.texi:36332 msgid "A @dfn{service type} is a node in the DAG described above. Let us start with a simple example, the service type for the Guix build daemon (@pxref{Invoking guix-daemon}):" msgstr "Un @dfn{type de service} est un nœud dans le DAG décrit plus haut. Commençons avec un exemple simple, le type de service pour le démon de construction de Guix (@pxref{Invoking guix-daemon}) :" #. type: lisp -#: guix-git/doc/guix.texi:35852 +#: guix-git/doc/guix.texi:36342 #, no-wrap msgid "" "(define guix-service-type\n" @@ -66796,75 +67751,75 @@ msgstr "" " (default-value (guix-configuration))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:35856 +#: guix-git/doc/guix.texi:36346 msgid "It defines three things:" msgstr "Il définit trois choses :" #. type: enumerate -#: guix-git/doc/guix.texi:35860 +#: guix-git/doc/guix.texi:36350 msgid "A name, whose sole purpose is to make inspection and debugging easier." msgstr "Un nom, dont le seul but de rendre l'inspection et le débogage plus faciles." #. type: enumerate -#: guix-git/doc/guix.texi:35865 +#: guix-git/doc/guix.texi:36355 msgid "A list of @dfn{service extensions}, where each extension designates the target service type and a procedure that, given the parameters of the service, returns a list of objects to extend the service of that type." msgstr "Une liste d'@dfn{extensions de services}, où chaque extension désigne le type de service cible et une procédure qui, étant donné les paramètres du service, renvoie une liste d'objets pour étendre le service de ce type." #. type: enumerate -#: guix-git/doc/guix.texi:35868 +#: guix-git/doc/guix.texi:36358 msgid "Every service type has at least one service extension. The only exception is the @dfn{boot service type}, which is the ultimate service." msgstr "Chaque type de service a au moins une extension de service. La seule exception est le @dfn{type de service boot}, qui est le service ultime." #. type: enumerate -#: guix-git/doc/guix.texi:35871 +#: guix-git/doc/guix.texi:36361 msgid "Optionally, a default value for instances of this type." msgstr "Éventuellement, une valeur par défaut pour les instances de ce type." #. type: Plain text -#: guix-git/doc/guix.texi:35874 +#: guix-git/doc/guix.texi:36364 msgid "In this example, @code{guix-service-type} extends three services:" msgstr "Dans cet exemple, @var{guix-service-type} étend trois services :" #. type: item -#: guix-git/doc/guix.texi:35876 +#: guix-git/doc/guix.texi:36366 #, no-wrap msgid "shepherd-root-service-type" msgstr "shepherd-root-service-type" #. type: table -#: guix-git/doc/guix.texi:35881 +#: guix-git/doc/guix.texi:36371 msgid "The @code{guix-shepherd-service} procedure defines how the Shepherd service is extended. Namely, it returns a @code{} object that defines how @command{guix-daemon} is started and stopped (@pxref{Shepherd Services})." msgstr "La procédure @var{guix-shepherd-service} définit comment le service du Shepherd est étendu. En fait, elle renvoie un objet @code{} qui définit comment @command{guix-daemon} est démarré et stoppé (@pxref{Shepherd Services})." #. type: item -#: guix-git/doc/guix.texi:35882 +#: guix-git/doc/guix.texi:36372 #, no-wrap msgid "account-service-type" msgstr "account-service-type" #. type: table -#: guix-git/doc/guix.texi:35887 +#: guix-git/doc/guix.texi:36377 msgid "This extension for this service is computed by @code{guix-accounts}, which returns a list of @code{user-group} and @code{user-account} objects representing the build user accounts (@pxref{Invoking guix-daemon})." msgstr "Cette extension pour ce service est calculée par @var{guix-accounts}, qui renvoie une liste d'objets @code{user-group} et @code{user-account} représentant les comptes des utilisateurs de construction (@pxref{Invoking guix-daemon})." #. type: item -#: guix-git/doc/guix.texi:35888 +#: guix-git/doc/guix.texi:36378 #, no-wrap msgid "activation-service-type" msgstr "activation-service-type" #. type: table -#: guix-git/doc/guix.texi:35892 +#: guix-git/doc/guix.texi:36382 msgid "Here @code{guix-activation} is a procedure that returns a gexp, which is a code snippet to run at ``activation time''---e.g., when the service is booted." msgstr "Ici, @var{guix-activation} est une procédure qui renvoie une gexp, qui est un bout de code qui s'exécute au moment de l'activation — p.@: ex.@: lorsque le service est démarré." #. type: Plain text -#: guix-git/doc/guix.texi:35895 +#: guix-git/doc/guix.texi:36385 msgid "A service of this type is instantiated like this:" msgstr "Un service de ce type est instancié de cette manière :" #. type: lisp -#: guix-git/doc/guix.texi:35901 +#: guix-git/doc/guix.texi:36391 #, no-wrap msgid "" "(service guix-service-type\n" @@ -66878,28 +67833,28 @@ msgstr "" " (extra-options '(\"--gc-keep-derivations\"))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:35909 +#: guix-git/doc/guix.texi:36399 msgid "The second argument to the @code{service} form is a value representing the parameters of this specific service instance. @xref{guix-configuration-type, @code{guix-configuration}}, for information about the @code{guix-configuration} data type. When the value is omitted, the default value specified by @code{guix-service-type} is used:" msgstr "Le deuxième argument de la forme @code{service} est une valeur représentant les paramètres de cet instance spécifique du service. @xref{guix-configuration-type, @code{guix-configuration}}, pour plus d'informations sur le type de données @code{guix-configuration}. Lorsque la valeur est omise, la valeur par défaut spécifiée par @code{guix-service-type} est utilisée :" #. type: lisp -#: guix-git/doc/guix.texi:35912 +#: guix-git/doc/guix.texi:36402 #, no-wrap msgid "(service guix-service-type)\n" msgstr "(service guix-service-type)\n" #. type: Plain text -#: guix-git/doc/guix.texi:35916 +#: guix-git/doc/guix.texi:36406 msgid "@code{guix-service-type} is quite simple because it extends other services but is not extensible itself." msgstr "@var{guix-service-type} est très simple car il étend d'autres services mais ne peut pas être étendu." #. type: Plain text -#: guix-git/doc/guix.texi:35920 +#: guix-git/doc/guix.texi:36410 msgid "The service type for an @emph{extensible} service looks like this:" msgstr "Le type de service pour un service @emph{extensible} ressemble à ceci :" #. type: lisp -#: guix-git/doc/guix.texi:35927 +#: guix-git/doc/guix.texi:36417 #, no-wrap msgid "" "(define udev-service-type\n" @@ -66917,7 +67872,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:35935 +#: guix-git/doc/guix.texi:36425 #, no-wrap msgid "" " (compose concatenate) ;concatenate the list of rules\n" @@ -66937,96 +67892,96 @@ msgstr "" " (rules (append initial-rules rules)))))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:35941 +#: guix-git/doc/guix.texi:36431 msgid "This is the service type for the @uref{https://wiki.gentoo.org/wiki/Project:Eudev, eudev device management daemon}. Compared to the previous example, in addition to an extension of @code{shepherd-root-service-type}, we see two new fields:" msgstr "C'est le type de service pour le @uref{https://wiki.gentoo.org/wiki/Project:Eudev, le démon de gestion des périphériques eudev}. Comparé à l'exemple précédent, en plus d'une extension de @var{shepherd-root-service-type}, on trouve deux nouveaux champs :" #. type: item -#: guix-git/doc/guix.texi:35943 +#: guix-git/doc/guix.texi:36433 #, no-wrap msgid "compose" msgstr "compose" #. type: table -#: guix-git/doc/guix.texi:35946 +#: guix-git/doc/guix.texi:36436 msgid "This is the procedure to @dfn{compose} the list of extensions to services of this type." msgstr "C'est la procédure pour @dfn{composer} la liste des extensions de services de ce type." #. type: table -#: guix-git/doc/guix.texi:35949 +#: guix-git/doc/guix.texi:36439 msgid "Services can extend the udev service by passing it lists of rules; we compose those extensions simply by concatenating them." msgstr "Les services peuvent étendre le service udev en lui passant des listes de règles ; on compose ces extensions simplement en les concaténant." #. type: item -#: guix-git/doc/guix.texi:35950 +#: guix-git/doc/guix.texi:36440 #, no-wrap msgid "extend" msgstr "extend" #. type: table -#: guix-git/doc/guix.texi:35953 +#: guix-git/doc/guix.texi:36443 msgid "This procedure defines how the value of the service is @dfn{extended} with the composition of the extensions." msgstr "Cette procédure définie comme la valeur du service est @dfn{étendue} avec la composition des extensions." #. type: table -#: guix-git/doc/guix.texi:35958 +#: guix-git/doc/guix.texi:36448 msgid "Udev extensions are composed into a list of rules, but the udev service value is itself a @code{} record. So here, we extend that record by appending the list of rules it contains to the list of contributed rules." msgstr "Les extensions Udev sont composés en une liste de règles, mais la valeur du service udev est elle-même un enregistrement @code{}. Donc ici, nous étendons cet enregistrement en ajoutant la liste des règle contribuées à la liste des règles qu'il contient déjà." #. type: table -#: guix-git/doc/guix.texi:35964 +#: guix-git/doc/guix.texi:36454 msgid "This is a string giving an overview of the service type. The string can contain Texinfo markup (@pxref{Overview,,, texinfo, GNU Texinfo}). The @command{guix system search} command searches these strings and displays them (@pxref{Invoking guix system})." msgstr "C'est une chaîne donnant un aperçu du type de service. Elle peut contenir du balisage Texinfo (@pxref{Overview,,, texinfo, GNU Texinfo}). La commande @command{guix system search} permet de rechercher dans ces chaînes et de les afficher (@pxref{Invoking guix system})." #. type: Plain text -#: guix-git/doc/guix.texi:35969 +#: guix-git/doc/guix.texi:36459 msgid "There can be only one instance of an extensible service type such as @code{udev-service-type}. If there were more, the @code{service-extension} specifications would be ambiguous." msgstr "Il ne peut y avoir qu'une instance d'un type de service extensible comme @var{udev-service-type}. S'il y en avait plus, les spécification @code{service-extension} seraient ambiguës." #. type: Plain text -#: guix-git/doc/guix.texi:35972 +#: guix-git/doc/guix.texi:36462 msgid "Still here? The next section provides a reference of the programming interface for services." msgstr "Toujours ici ? La section suivante fournit une référence de l'interface de programmation des services." #. type: Plain text -#: guix-git/doc/guix.texi:35980 +#: guix-git/doc/guix.texi:36470 msgid "We have seen an overview of service types (@pxref{Service Types and Services}). This section provides a reference on how to manipulate services and service types. This interface is provided by the @code{(gnu services)} module." msgstr "Nous avons vu un résumé des types de services (@pxref{Service Types and Services}). Cette section fournit une référence sur la manière de manipuler les services et les types de services. Cette interface est fournie par le module @code{(gnu services)}." #. type: deffn -#: guix-git/doc/guix.texi:35981 +#: guix-git/doc/guix.texi:36471 #, no-wrap msgid "{Scheme Procedure} service @var{type} [@var{value}]" msgstr "{Procédure Scheme} service @var{type} [@var{value}]" #. type: deffn -#: guix-git/doc/guix.texi:35985 +#: guix-git/doc/guix.texi:36475 msgid "Return a new service of @var{type}, a @code{} object (see below). @var{value} can be any object; it represents the parameters of this particular service instance." msgstr "Renvoie un nouveau service de type @var{type}, un objet @code{} (voir plus bas). @var{value}peut être n'importe quel objet ; il représente les paramètres de cette instance particulière de service." #. type: deffn -#: guix-git/doc/guix.texi:35989 +#: guix-git/doc/guix.texi:36479 msgid "When @var{value} is omitted, the default value specified by @var{type} is used; if @var{type} does not specify a default value, an error is raised." msgstr "Lorsque @var{value} est omise, la valeur par défaut spécifiée par @var{type} est utilisée ; si @var{type} ne spécifie pas de valeur par défaut, une erreur est levée." #. type: deffn -#: guix-git/doc/guix.texi:35991 +#: guix-git/doc/guix.texi:36481 msgid "For instance, this:" msgstr "Par exemple ceci :" #. type: lisp -#: guix-git/doc/guix.texi:35994 +#: guix-git/doc/guix.texi:36484 #, no-wrap msgid "(service openssh-service-type)\n" msgstr "(service openssh-service-type)\n" #. type: deffn -#: guix-git/doc/guix.texi:35998 +#: guix-git/doc/guix.texi:36488 msgid "is equivalent to this:" msgstr "est équivalent à ceci :" #. type: lisp -#: guix-git/doc/guix.texi:36002 +#: guix-git/doc/guix.texi:36492 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -67036,50 +67991,50 @@ msgstr "" " (openssh-configuration))\n" #. type: deffn -#: guix-git/doc/guix.texi:36006 +#: guix-git/doc/guix.texi:36496 msgid "In both cases the result is an instance of @code{openssh-service-type} with the default configuration." msgstr "Dans les deux cas le résultat est une instance de @code{openssh-service-type} avec la configuration par défaut." #. type: deffn -#: guix-git/doc/guix.texi:36008 +#: guix-git/doc/guix.texi:36498 #, no-wrap msgid "{Scheme Procedure} service? @var{obj}" msgstr "{Procédure Scheme} service? @var{obj}" #. type: deffn -#: guix-git/doc/guix.texi:36010 +#: guix-git/doc/guix.texi:36500 msgid "Return true if @var{obj} is a service." msgstr "Renvoie vrai si @var{obj} est un service." #. type: deffn -#: guix-git/doc/guix.texi:36012 +#: guix-git/doc/guix.texi:36502 #, no-wrap msgid "{Scheme Procedure} service-kind @var{service}" msgstr "{Procédure Scheme} service-kind @var{service}" #. type: deffn -#: guix-git/doc/guix.texi:36014 +#: guix-git/doc/guix.texi:36504 msgid "Return the type of @var{service}---i.e., a @code{} object." msgstr "Renvoie le type de @var{service} — c.-à-d.@: un objet @code{}." #. type: deffn -#: guix-git/doc/guix.texi:36016 +#: guix-git/doc/guix.texi:36506 #, no-wrap msgid "{Scheme Procedure} service-value @var{service}" msgstr "{Procédure Scheme} service-value @var{service}" #. type: deffn -#: guix-git/doc/guix.texi:36019 +#: guix-git/doc/guix.texi:36509 msgid "Return the value associated with @var{service}. It represents its parameters." msgstr "Renvoie la valeur associée à @var{service}. Elle représente ses paramètres." #. type: Plain text -#: guix-git/doc/guix.texi:36022 +#: guix-git/doc/guix.texi:36512 msgid "Here is an example of how a service is created and manipulated:" msgstr "Voici un exemple de la manière dont un service est créé et manipulé :" #. type: lisp -#: guix-git/doc/guix.texi:36031 +#: guix-git/doc/guix.texi:36521 #, no-wrap msgid "" "(define s\n" @@ -67101,7 +68056,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36034 +#: guix-git/doc/guix.texi:36524 #, no-wrap msgid "" "(service? s)\n" @@ -67113,7 +68068,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36037 +#: guix-git/doc/guix.texi:36527 #, no-wrap msgid "" "(eq? (service-kind s) nginx-service-type)\n" @@ -67123,215 +68078,215 @@ msgstr "" "@result{} #t\n" #. type: Plain text -#: guix-git/doc/guix.texi:36047 +#: guix-git/doc/guix.texi:36537 msgid "The @code{modify-services} form provides a handy way to change the parameters of some of the services of a list such as @code{%base-services} (@pxref{Base Services, @code{%base-services}}). It evaluates to a list of services. Of course, you could always use standard list combinators such as @code{map} and @code{fold} to do that (@pxref{SRFI-1, List Library,, guile, GNU Guile Reference Manual}); @code{modify-services} simply provides a more concise form for this common pattern." msgstr "La forme @code{modify-services} fournit une manière pratique de modifier les paramètres de certains services d'une liste comme @var{%base-services} (@pxref{Base Services, @code{%base-services}}). Elle s'évalue en une liste de services. Bien sûr, vous pouvez toujours utiliser les combinateurs de liste standards comme @code{map} et @code{fold} pour cela (@pxref{SRFI-1, List Library,, guile, GNU Guile Reference Manual}) ; @code{modify-services} fournit simplement une manière plus concise pour ce besoin commun." #. type: deffn -#: guix-git/doc/guix.texi:36048 +#: guix-git/doc/guix.texi:36538 #, no-wrap msgid "{Scheme Syntax} modify-services @var{services} @" msgstr "{Syntaxe Scheme} modify-services @var{services} @" #. type: deffn -#: guix-git/doc/guix.texi:36050 +#: guix-git/doc/guix.texi:36540 msgid "(@var{type} @var{variable} => @var{body}) @dots{}" msgstr "(@var{type} @var{variable} => @var{body}) @dots{}" #. type: deffn -#: guix-git/doc/guix.texi:36053 +#: guix-git/doc/guix.texi:36543 msgid "Modify the services listed in @var{services} according to the given clauses. Each clause has the form:" msgstr "Modifie les services listés dans @var{services} en fonction des clauses données. Chaque clause à la forme :" #. type: example -#: guix-git/doc/guix.texi:36056 +#: guix-git/doc/guix.texi:36546 #, no-wrap msgid "(@var{type} @var{variable} => @var{body})\n" msgstr "(@var{type} @var{variable} => @var{body})\n" #. type: deffn -#: guix-git/doc/guix.texi:36063 +#: guix-git/doc/guix.texi:36553 msgid "where @var{type} is a service type---e.g., @code{guix-service-type}---and @var{variable} is an identifier that is bound within the @var{body} to the service parameters---e.g., a @code{guix-configuration} instance---of the original service of that @var{type}." msgstr "où @var{type} est un type de service — p.@: ex.@: @code{guix-service-type} — et @var{variable} est un identifiant lié dans @var{body} aux paramètres du service — p.@: ex.@: une instance de @code{guix-configuration} — du service original de ce @var{type}." #. type: deffn -#: guix-git/doc/guix.texi:36070 +#: guix-git/doc/guix.texi:36560 msgid "The @var{body} should evaluate to the new service parameters, which will be used to configure the new service. This new service will replace the original in the resulting list. Because a service's service parameters are created using @code{define-record-type*}, you can write a succinct @var{body} that evaluates to the new service parameters by using the @code{inherit} feature that @code{define-record-type*} provides." msgstr "La variable @var{body} devrait s'évaluer en de nouveaux paramètres de service, qui seront utilisés pour configurer le nouveau service. Ce nouveau service remplacera l'original dans la liste qui en résulte. Comme les paramètres d'un service sont créés avec @code{define-record-type*}, vous pouvez écrire un @var{body} court qui s'évalue en de nouveaux paramètres pour le services en utilisant @code{inherit}, fourni par @code{define-record-type*}." #. type: deffn -#: guix-git/doc/guix.texi:36072 +#: guix-git/doc/guix.texi:36562 #, fuzzy #| msgid "Packages are currently available on the following platforms:" msgid "Clauses can also have the following form:" msgstr "Les paquets sont actuellement disponibles pour les plateformes suivantes :" #. type: lisp -#: guix-git/doc/guix.texi:36075 +#: guix-git/doc/guix.texi:36565 #, fuzzy, no-wrap #| msgid "(service @var{type})\n" msgid "(delete @var{type})\n" msgstr "(service @var{type})\n" #. type: deffn -#: guix-git/doc/guix.texi:36079 +#: guix-git/doc/guix.texi:36569 msgid "Such a clause removes all services of the given @var{type} from @var{services}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36081 +#: guix-git/doc/guix.texi:36571 msgid "@xref{Using the Configuration System}, for example usage." msgstr "@xref{Using the Configuration System} pour des exemples d'utilisation." #. type: Plain text -#: guix-git/doc/guix.texi:36088 +#: guix-git/doc/guix.texi:36578 msgid "Next comes the programming interface for service types. This is something you want to know when writing new service definitions, but not necessarily when simply looking for ways to customize your @code{operating-system} declaration." msgstr "Suit l'interface de programmation des types de services. Vous devrez la connaître pour écrire de nouvelles définitions de services, mais pas forcément lorsque vous cherchez des manières simples de personnaliser votre déclaration @code{operating-system}." #. type: deftp -#: guix-git/doc/guix.texi:36089 +#: guix-git/doc/guix.texi:36579 #, no-wrap msgid "{Data Type} service-type" msgstr "{Type de données} service-type" #. type: cindex -#: guix-git/doc/guix.texi:36090 +#: guix-git/doc/guix.texi:36580 #, no-wrap msgid "service type" msgstr "type de service" #. type: deftp -#: guix-git/doc/guix.texi:36093 +#: guix-git/doc/guix.texi:36583 msgid "This is the representation of a @dfn{service type} (@pxref{Service Types and Services})." msgstr "C'est la représentation d'un @dfn{type de service} (@pxref{Service Types and Services})." #. type: table -#: guix-git/doc/guix.texi:36097 +#: guix-git/doc/guix.texi:36587 msgid "This is a symbol, used only to simplify inspection and debugging." msgstr "C'est un symbole, utilisé seulement pour simplifier l'inspection et le débogage." #. type: code{#1} -#: guix-git/doc/guix.texi:36098 +#: guix-git/doc/guix.texi:36588 #, no-wrap msgid "extensions" msgstr "extensions" #. type: table -#: guix-git/doc/guix.texi:36100 +#: guix-git/doc/guix.texi:36590 msgid "A non-empty list of @code{} objects (see below)." msgstr "Une liste non-vide d'objets @code{} (voir plus bas)." #. type: item -#: guix-git/doc/guix.texi:36101 +#: guix-git/doc/guix.texi:36591 #, no-wrap msgid "@code{compose} (default: @code{#f})" msgstr "@code{compose} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:36105 +#: guix-git/doc/guix.texi:36595 msgid "If this is @code{#f}, then the service type denotes services that cannot be extended---i.e., services that do not receive ``values'' from other services." msgstr "S'il s'agit de @code{#f}, le type de service dénote des services qui ne peuvent pas être étendus — c.-à-d.@: qui ne reçoivent pas de « valeurs » d'autres services." #. type: table -#: guix-git/doc/guix.texi:36109 +#: guix-git/doc/guix.texi:36599 msgid "Otherwise, it must be a one-argument procedure. The procedure is called by @code{fold-services} and is passed a list of values collected from extensions. It may return any single value." msgstr "Sinon, ce doit être une procédure à un argument. La procédure est appelée par @code{fold-services} et on lui passe une liste de valeurs collectées par les extensions. Elle peut renvoyer n'importe quelle valeur simple." #. type: item -#: guix-git/doc/guix.texi:36110 +#: guix-git/doc/guix.texi:36600 #, no-wrap msgid "@code{extend} (default: @code{#f})" msgstr "@code{extend} (par défaut : @code{#f})" #. type: table -#: guix-git/doc/guix.texi:36112 +#: guix-git/doc/guix.texi:36602 msgid "If this is @code{#f}, services of this type cannot be extended." msgstr "Si la valeur est @code{#f}, les services de ce type ne peuvent pas être étendus." #. type: table -#: guix-git/doc/guix.texi:36118 +#: guix-git/doc/guix.texi:36608 msgid "Otherwise, it must be a two-argument procedure: @code{fold-services} calls it, passing it the initial value of the service as the first argument and the result of applying @code{compose} to the extension values as the second argument. It must return a value that is a valid parameter value for the service instance." msgstr "Sinon, il doit s'agir 'une procédure à deux arguments : @code{fold-services} l'appelle et lui passe la valeur initiale du service comme premier argument et le résultat de l'application de @code{compose} sur les valeurs d'extension en second argument. Elle doit renvoyer une valeur qui est une valeur de paramètre valide pour l'instance du service." #. type: table -#: guix-git/doc/guix.texi:36124 +#: guix-git/doc/guix.texi:36614 msgid "This is a string, possibly using Texinfo markup, describing in a couple of sentences what the service is about. This string allows users to find about the service through @command{guix system search} (@pxref{Invoking guix system})." msgstr "C'est une chaine, éventuellement avec de la syntaxe Texinfo, décrivant une quelques phrases ce que le service fait. Cette chaine permet aux utilisateurs de trouver le service à travers @command{guix system search} (@pxref{Invoking guix system})." #. type: item -#: guix-git/doc/guix.texi:36125 +#: guix-git/doc/guix.texi:36615 #, no-wrap msgid "@code{default-value} (default: @code{&no-default-value})" msgstr "@code{default-value} (par défaut : @code{&no-default-value})" #. type: table -#: guix-git/doc/guix.texi:36128 +#: guix-git/doc/guix.texi:36618 msgid "The default value associated for instances of this service type. This allows users to use the @code{service} form without its second argument:" msgstr "La valeur par défaut associée aux instances de ce type de service. Cela permet d'utiliser la forme @code{service} sans son second argument :" #. type: lisp -#: guix-git/doc/guix.texi:36131 +#: guix-git/doc/guix.texi:36621 #, no-wrap msgid "(service @var{type})\n" msgstr "(service @var{type})\n" #. type: table -#: guix-git/doc/guix.texi:36135 +#: guix-git/doc/guix.texi:36625 msgid "The returned service in this case has the default value specified by @var{type}." msgstr "Le service renvoyé dans ce cas a la valeur par défaut spécifiée par @var{type}." #. type: deftp -#: guix-git/doc/guix.texi:36138 +#: guix-git/doc/guix.texi:36628 msgid "@xref{Service Types and Services}, for examples." msgstr "@xref{Service Types and Services}, pour des exemples." #. type: deffn -#: guix-git/doc/guix.texi:36140 +#: guix-git/doc/guix.texi:36630 #, no-wrap msgid "{Scheme Procedure} service-extension @var{target-type} @" msgstr "{Procédure Scheme} service-extension @var{target-type} @" #. type: deffn -#: guix-git/doc/guix.texi:36146 +#: guix-git/doc/guix.texi:36636 msgid "@var{compute} Return a new extension for services of type @var{target-type}. @var{compute} must be a one-argument procedure: @code{fold-services} calls it, passing it the value associated with the service that provides the extension; it must return a valid value for the target service." msgstr "" "@var{compute}\n" "Renvoie une nouvelle extension pour les services de type @var{target-type}. @var{compute} doit être une procédure à un argument : @code{fold-services} l'appelle et lui passe la valeur associée au service qui fournit cette extension ; elle doit renvoyer une valeur valide pour le service cible." #. type: deffn -#: guix-git/doc/guix.texi:36148 +#: guix-git/doc/guix.texi:36638 #, no-wrap msgid "{Scheme Procedure} service-extension? @var{obj}" msgstr "{Procédure Scheme} service-extension? @var{obj}" #. type: deffn -#: guix-git/doc/guix.texi:36150 +#: guix-git/doc/guix.texi:36640 msgid "Return true if @var{obj} is a service extension." msgstr "Renvoie vrai si @var{obj} est une extension de service." #. type: Plain text -#: guix-git/doc/guix.texi:36156 +#: guix-git/doc/guix.texi:36646 msgid "Occasionally, you might want to simply extend an existing service. This involves creating a new service type and specifying the extension of interest, which can be verbose; the @code{simple-service} procedure provides a shorthand for this." msgstr "Parfois, vous voudrez simplement étendre un service existant. Cela implique de créer un nouveau type de service et de spécifier l'extension qui vous intéresse, ce qui peut être assez verbeux ; la procédure @code{simple-service} fournit un raccourci pour ce cas." #. type: deffn -#: guix-git/doc/guix.texi:36157 +#: guix-git/doc/guix.texi:36647 #, no-wrap msgid "{Scheme Procedure} simple-service @var{name} @var{target} @var{value}" msgstr "{Procédure Scheme} simple-service @var{name} @var{target} @var{value}" #. type: deffn -#: guix-git/doc/guix.texi:36161 +#: guix-git/doc/guix.texi:36651 msgid "Return a service that extends @var{target} with @var{value}. This works by creating a singleton service type @var{name}, of which the returned service is an instance." msgstr "Renvoie un service qui étend @var{target} avec @var{value}. Cela fonctionne en créant un type de service singleton @var{name}, dont le service renvoyé est une instance." #. type: deffn -#: guix-git/doc/guix.texi:36164 +#: guix-git/doc/guix.texi:36654 msgid "For example, this extends mcron (@pxref{Scheduled Job Execution}) with an additional job:" msgstr "Par exemple, cela étend mcron (@pxref{Scheduled Job Execution}) avec une tâche supplémentaire :" #. type: lisp -#: guix-git/doc/guix.texi:36168 +#: guix-git/doc/guix.texi:36658 #, no-wrap msgid "" "(simple-service 'my-mcron-job mcron-service-type\n" @@ -67341,187 +68296,187 @@ msgstr "" " #~(job '(next-hour (3)) \"guix gc -F 2G\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:36178 +#: guix-git/doc/guix.texi:36668 msgid "At the core of the service abstraction lies the @code{fold-services} procedure, which is responsible for ``compiling'' a list of services down to a single directory that contains everything needed to boot and run the system---the directory shown by the @command{guix system build} command (@pxref{Invoking guix system}). In essence, it propagates service extensions down the service graph, updating each node parameters on the way, until it reaches the root node." msgstr "Au cœur de l'abstraction des services se cache la procédure @code{fold-services}, responsable de la « compilation » d'une liste de services en un répertoire unique qui contient tout ce qui est nécessaire au démarrage et à l'exécution du système — le répertoire indiqué par la commande @command{guix system build} (@pxref{Invoking guix system}). En soit, elle propage les extensions des services le long du graphe des services, en mettant à jour chaque paramètre des nœuds sur son chemin, jusqu'à atteindre le nœud racine." #. type: deffn -#: guix-git/doc/guix.texi:36179 +#: guix-git/doc/guix.texi:36669 #, no-wrap msgid "{Scheme Procedure} fold-services @var{services} @" msgstr "{Procédure Scheme} fold-services @var{services} @" #. type: deffn -#: guix-git/doc/guix.texi:36183 +#: guix-git/doc/guix.texi:36673 msgid "[#:target-type @var{system-service-type}] Fold @var{services} by propagating their extensions down to the root of type @var{target-type}; return the root service adjusted accordingly." msgstr "" "[#:target-type @var{system-service-type}]\n" "Replie @var{services} en propageant leurs extensions jusqu'à la racine de type @var{target-type} ; renvoie le service racine ajusté de cette manière." #. type: Plain text -#: guix-git/doc/guix.texi:36187 +#: guix-git/doc/guix.texi:36677 msgid "Lastly, the @code{(gnu services)} module also defines several essential service types, some of which are listed below." msgstr "Enfin, le module @code{(gnu services)} définie aussi divers types de services essentiels, dont certains sont listés ci-dessous." #. type: defvr -#: guix-git/doc/guix.texi:36188 +#: guix-git/doc/guix.texi:36678 #, no-wrap msgid "{Scheme Variable} system-service-type" msgstr "{Variable Scheme} system-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36191 +#: guix-git/doc/guix.texi:36681 msgid "This is the root of the service graph. It produces the system directory as returned by the @command{guix system build} command." msgstr "C'est la racine du graphe des services. Il produit le répertoire du système renvoyé par la commande @command{guix system build}." #. type: defvr -#: guix-git/doc/guix.texi:36193 +#: guix-git/doc/guix.texi:36683 #, no-wrap msgid "{Scheme Variable} boot-service-type" msgstr "{Variable Scheme} boot-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36196 +#: guix-git/doc/guix.texi:36686 msgid "The type of the ``boot service'', which produces the @dfn{boot script}. The boot script is what the initial RAM disk runs when booting." msgstr "Le type du service « boot », qui produit le @dfn{script de démarrage}. Le script de démarrage est ce que le disque de RAM initial lance au démarrage." #. type: defvr -#: guix-git/doc/guix.texi:36198 +#: guix-git/doc/guix.texi:36688 #, no-wrap msgid "{Scheme Variable} etc-service-type" msgstr "{Variable Scheme} etc-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36202 +#: guix-git/doc/guix.texi:36692 msgid "The type of the @file{/etc} service. This service is used to create files under @file{/etc} and can be extended by passing it name/file tuples such as:" msgstr "Le type du service @file{/etc}. Ce service est utilisé pour créer des fichiers dans @file{/etc} et peut être étendu en lui passant des tuples nom/fichier comme ceci :" #. type: lisp -#: guix-git/doc/guix.texi:36205 +#: guix-git/doc/guix.texi:36695 #, no-wrap msgid "(list `(\"issue\" ,(plain-file \"issue\" \"Welcome!\\n\")))\n" msgstr "(list `(\"issue\" ,(plain-file \"issue\" \"Bienvenue !\\n\")))\n" #. type: defvr -#: guix-git/doc/guix.texi:36209 +#: guix-git/doc/guix.texi:36699 msgid "In this example, the effect would be to add an @file{/etc/issue} file pointing to the given file." msgstr "Dans cet exemple, l'effet serait d'ajouter un fichier @file{/etc/issue} pointant vers le fichier donné." #. type: defvr -#: guix-git/doc/guix.texi:36211 +#: guix-git/doc/guix.texi:36701 #, no-wrap msgid "{Scheme Variable} setuid-program-service-type" msgstr "{Variable Scheme} setuid-program-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36215 +#: guix-git/doc/guix.texi:36705 msgid "Type for the ``setuid-program service''. This service collects lists of executable file names, passed as gexps, and adds them to the set of setuid-root programs on the system (@pxref{Setuid Programs})." msgstr "Le type du « service setuid ». Ce service récupère des listes de noms de fichiers exécutables, passés en tant que gexps, et les ajoute à l'ensemble des programmes setuid root sur le système (@pxref{Setuid Programs})." #. type: defvr -#: guix-git/doc/guix.texi:36217 +#: guix-git/doc/guix.texi:36707 #, no-wrap msgid "{Scheme Variable} profile-service-type" msgstr "{Variable Scheme} profile-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36221 +#: guix-git/doc/guix.texi:36711 msgid "Type of the service that populates the @dfn{system profile}---i.e., the programs under @file{/run/current-system/profile}. Other services can extend it by passing it lists of packages to add to the system profile." msgstr "De type du service qui rempli le @dfn{profil du système} — c.-à-d.@: les programmes dans @file{/run/current-system/profile}. Les autres services peuvent l'étendre en lui passant des listes de paquets à ajouter au profil du système." #. type: anchor{#1} -#: guix-git/doc/guix.texi:36225 +#: guix-git/doc/guix.texi:36715 msgid "provenance-service-type" msgstr "provenance-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36225 +#: guix-git/doc/guix.texi:36715 #, no-wrap msgid "{Scheme Variable} provenance-service-type" msgstr "{Variable Scheme} provenance-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36229 +#: guix-git/doc/guix.texi:36719 msgid "This is the type of the service that records @dfn{provenance meta-data} in the system itself. It creates several files under @file{/run/current-system}:" msgstr "C'est le type de service qui enregistre les @dfn{métadonnées de provenance} dans le système lui-même. Il crée plusieurs fichiers dans @file{/run/current-system} :" #. type: item -#: guix-git/doc/guix.texi:36231 +#: guix-git/doc/guix.texi:36721 #, no-wrap msgid "channels.scm" msgstr "channels.scm" #. type: table -#: guix-git/doc/guix.texi:36236 +#: guix-git/doc/guix.texi:36726 msgid "This is a ``channel file'' that can be passed to @command{guix pull -C} or @command{guix time-machine -C}, and which describes the channels used to build the system, if that information was available (@pxref{Channels})." msgstr "C'est un « fichier de canaux » qui peut être passé à @command{guix pull -C} ou @command{guix time-machine -C}, et qui décrit les canaux utilisés pour construire le système, si cette information était disponible (@pxref{Channels})." #. type: item -#: guix-git/doc/guix.texi:36237 +#: guix-git/doc/guix.texi:36727 #, no-wrap msgid "configuration.scm" msgstr "configuration.scm" #. type: table -#: guix-git/doc/guix.texi:36242 +#: guix-git/doc/guix.texi:36732 msgid "This is the file that was passed as the value for this @code{provenance-service-type} service. By default, @command{guix system reconfigure} automatically passes the OS configuration file it received on the command line." msgstr "C'est le fichier qui était passé en argument à ce service @code{provenance-service-type}. Par défaut, @command{guix system reconfigure} passe automatiquement le fichier de configuration du système qu'il a reçu en argument de la ligne de commande." #. type: item -#: guix-git/doc/guix.texi:36243 +#: guix-git/doc/guix.texi:36733 #, no-wrap msgid "provenance" msgstr "provenance" #. type: table -#: guix-git/doc/guix.texi:36246 +#: guix-git/doc/guix.texi:36736 msgid "This contains the same information as the two other files but in a format that is more readily processable." msgstr "Cela contient la même information que les deux autres fichiers mais dans un format plus facile à traiter automatiquement." #. type: defvr -#: guix-git/doc/guix.texi:36250 +#: guix-git/doc/guix.texi:36740 msgid "In general, these two pieces of information (channels and configuration file) are enough to reproduce the operating system ``from source''." msgstr "En général, ces deux informations (les canaux et le fichier de configuration) sont suffisants pour reproduire le système d'exploitation « depuis les sources »." #. type: quotation -#: guix-git/doc/guix.texi:36251 +#: guix-git/doc/guix.texi:36741 #, no-wrap msgid "Caveats" msgstr "Limites" #. type: quotation -#: guix-git/doc/guix.texi:36258 +#: guix-git/doc/guix.texi:36748 msgid "This information is necessary to rebuild your operating system, but it is not always sufficient. In particular, @file{configuration.scm} itself is insufficient if it is not self-contained---if it refers to external Guile modules or to extra files. If you want @file{configuration.scm} to be self-contained, we recommend that modules or files it refers to be part of a channel." msgstr "Cette information est nécessaire pour reconstruire votre système d'exploitation, mais elle n'est pas suffisante. En particulier, @file{configuration.scm} lui-même n'est pas suffisant s'il n'est pas auto-contenu --- s'il référence des modules Guile externes ou des fichiers supplémentaires. Si vous voulez que @file{configuration.scm} soit auto-contenu, nous vous recommandons de faire en sorte que les modules et les fichiers auxquels il fait référence se trouvent dans un canal." #. type: quotation -#: guix-git/doc/guix.texi:36266 +#: guix-git/doc/guix.texi:36756 msgid "Besides, provenance meta-data is ``silent'' in the sense that it does not change the bits contained in your system, @emph{except for the meta-data bits themselves}. Two different OS configurations or sets of channels can lead to the same system, bit-for-bit; when @code{provenance-service-type} is used, these two systems will have different meta-data and thus different store file names, which makes comparison less trivial." msgstr "De plus, les métadonnées de provenance sont « silencieuses » dans le sens où elles ne changent pas les bits contenus dans votre système, @emph{en dehors des bits des métadonnées elles-mêmes}. Deux configuration de système différents ou des ensembles de canaux différents peuvent créer le même système, bit-à-bit, mais lorsque @code{provenance-service-type} est utilisé ces deux systèmes auront des métadonnées différentes et donc des noms de fichiers dans le dépôt différents, ce qui rend la comparaison plus difficile." #. type: defvr -#: guix-git/doc/guix.texi:36271 +#: guix-git/doc/guix.texi:36761 msgid "This service is automatically added to your operating system configuration when you use @command{guix system reconfigure}, @command{guix system init}, or @command{guix deploy}." msgstr "Ce service est automatiquement ajouté à la configuration de votre système d'exploitation quand vous utilisez @command{guix system reconfigure}, @command{guix system init} et @command{guix deploy}." #. type: defvr -#: guix-git/doc/guix.texi:36273 +#: guix-git/doc/guix.texi:36763 #, no-wrap msgid "{Scheme Variable} linux-loadable-module-service-type" msgstr "{Variable Scheme} linux-loadable-module-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36277 +#: guix-git/doc/guix.texi:36767 msgid "Type of the service that collects lists of packages containing kernel-loadable modules, and adds them to the set of kernel-loadable modules." msgstr "Type du service qui récolte les listes de paquets contenant les modules chargeables par le noyau, et les ajoute à l'ensemble des modules chargeables par le noyau." #. type: defvr -#: guix-git/doc/guix.texi:36280 +#: guix-git/doc/guix.texi:36770 msgid "This service type is intended to be extended by other service types, such as below:" msgstr "Ce type de service est conçu pour être étendu par d'autres types de services, comme ceci :" #. type: lisp -#: guix-git/doc/guix.texi:36286 +#: guix-git/doc/guix.texi:36776 #, no-wrap msgid "" "(simple-service 'installing-module\n" @@ -67535,192 +68490,192 @@ msgstr "" " module-to-install-2))\n" #. type: defvr -#: guix-git/doc/guix.texi:36290 +#: guix-git/doc/guix.texi:36780 msgid "This does not actually load modules at bootup, only adds it to the kernel profile so that it @emph{can} be loaded by other means." msgstr "Ce service ne charge pas les modules au démarrage, il ne fait que les ajouter au profil du noyau pour qu'ils @emph{puissent} être chargés par d'autres moyens." #. type: cindex -#: guix-git/doc/guix.texi:36295 guix-git/doc/guix.texi:37447 +#: guix-git/doc/guix.texi:36785 #, no-wrap msgid "shepherd services" msgstr "services shepherd" #. type: cindex -#: guix-git/doc/guix.texi:36296 +#: guix-git/doc/guix.texi:36786 #, no-wrap msgid "PID 1" msgstr "PID 1" #. type: cindex -#: guix-git/doc/guix.texi:36297 +#: guix-git/doc/guix.texi:36787 #, no-wrap msgid "init system" msgstr "système d'init" #. type: Plain text -#: guix-git/doc/guix.texi:36303 +#: guix-git/doc/guix.texi:36793 msgid "The @code{(gnu services shepherd)} module provides a way to define services managed by the GNU@tie{}Shepherd, which is the initialization system---the first process that is started when the system boots, also known as PID@tie{}1 (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual})." msgstr "Le module @code{(gnu services shepherd)} fournit une manière de définir les services gérés par le GNU@tie{}Shepherd, qui est le système d'initialisation — le premier processus démarré lorsque le système démarre, aussi connu comme étant le PID@tie{}1 (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual})." #. type: Plain text -#: guix-git/doc/guix.texi:36309 +#: guix-git/doc/guix.texi:36799 msgid "Services in the Shepherd can depend on each other. For instance, the SSH daemon may need to be started after the syslog daemon has been started, which in turn can only happen once all the file systems have been mounted. The simple operating system defined earlier (@pxref{Using the Configuration System}) results in a service graph like this:" msgstr "Les services dans le Shepherd peuvent dépendre les uns des autres. Par exemple, le démon SSH peut avoir besoin d'être démarré après le démon syslog, qui à son tour doit être démarré après le montage des systèmes de fichiers. Le système d'exploitation simple déclaré précédemment (@pxref{Using the Configuration System}) crée un graphe de service comme ceci :" #. type: Plain text -#: guix-git/doc/guix.texi:36311 +#: guix-git/doc/guix.texi:36801 msgid "@image{images/shepherd-graph,,5in,Typical shepherd service graph.}" msgstr "@image{images/shepherd-graph,,5in,Graphe de service typique du shepherd.}" #. type: Plain text -#: guix-git/doc/guix.texi:36315 +#: guix-git/doc/guix.texi:36805 msgid "You can actually generate such a graph for any operating system definition using the @command{guix system shepherd-graph} command (@pxref{system-shepherd-graph, @command{guix system shepherd-graph}})." msgstr "Vous pouvez générer un tel graphe pour n'importe quelle définition de système d'exploitation avec la commande @command{guix system shepherd-graph} (@pxref{system-shepherd-graph, @command{guix system shepherd-graph}})." #. type: Plain text -#: guix-git/doc/guix.texi:36319 +#: guix-git/doc/guix.texi:36809 msgid "The @code{%shepherd-root-service} is a service object representing PID@tie{}1, of type @code{shepherd-root-service-type}; it can be extended by passing it lists of @code{} objects." msgstr "La variable @var{%shepherd-root-service} est un objet de service représentant le PID@tie{}1, de type @var{shepherd-root-service-type} ; il peut être étendu en lui passant des listes d'objets @code{}." #. type: deftp -#: guix-git/doc/guix.texi:36320 +#: guix-git/doc/guix.texi:36810 #, no-wrap msgid "{Data Type} shepherd-service" msgstr "{Type de données} shepherd-service" #. type: deftp -#: guix-git/doc/guix.texi:36322 +#: guix-git/doc/guix.texi:36812 msgid "The data type representing a service managed by the Shepherd." msgstr "Le type de données représentant un service géré par le Shepherd." #. type: code{#1} -#: guix-git/doc/guix.texi:36324 +#: guix-git/doc/guix.texi:36814 #, no-wrap msgid "provision" msgstr "provision" #. type: table -#: guix-git/doc/guix.texi:36326 +#: guix-git/doc/guix.texi:36816 msgid "This is a list of symbols denoting what the service provides." msgstr "C'est une liste de symboles dénotant ce que le service fournit." #. type: table -#: guix-git/doc/guix.texi:36331 +#: guix-git/doc/guix.texi:36821 msgid "These are the names that may be passed to @command{herd start}, @command{herd status}, and similar commands (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual}). @xref{Slots of services, the @code{provides} slot,, shepherd, The GNU Shepherd Manual}, for details." msgstr "Ce sont les noms qui peuvent être passés à @command{herd start}, @command{herd status} et les commandes similaires (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual}). @xref{Slots of services, the @code{provides} slot,, shepherd, The GNU Shepherd Manual}, pour plus de détails." #. type: item -#: guix-git/doc/guix.texi:36332 +#: guix-git/doc/guix.texi:36822 #, no-wrap msgid "@code{requirement} (default: @code{'()})" msgstr "@code{requirement} (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:36334 +#: guix-git/doc/guix.texi:36824 msgid "List of symbols denoting the Shepherd services this one depends on." msgstr "Liste de symboles dénotant les services du Shepherd dont celui-ci dépend." #. type: cindex -#: guix-git/doc/guix.texi:36335 +#: guix-git/doc/guix.texi:36825 #, no-wrap msgid "one-shot services, for the Shepherd" msgstr "services ponctuels, pour le Shepherd" #. type: table -#: guix-git/doc/guix.texi:36340 +#: guix-git/doc/guix.texi:36830 msgid "Whether this service is @dfn{one-shot}. One-shot services stop immediately after their @code{start} action has completed. @xref{Slots of services,,, shepherd, The GNU Shepherd Manual}, for more info." msgstr "Indique si ce service est @dfn{ponctuel}. Les services ponctuels s'arrêtent immédiatement à la fin de leur action @code{start}. @xref{Slots of services,,, shepherd, The GNU Shepherd Manual}, pour plus d'infos." #. type: item -#: guix-git/doc/guix.texi:36341 +#: guix-git/doc/guix.texi:36831 #, no-wrap msgid "@code{respawn?} (default: @code{#t})" msgstr "@code{respawn?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:36344 +#: guix-git/doc/guix.texi:36834 msgid "Whether to restart the service when it stops, for instance when the underlying process dies." msgstr "Indique s'il faut redémarrer le service lorsqu'il s'arrête, par exemple si le processus sous-jacent meurt." #. type: code{#1} -#: guix-git/doc/guix.texi:36345 +#: guix-git/doc/guix.texi:36835 #, no-wrap msgid "start" msgstr "start" #. type: itemx -#: guix-git/doc/guix.texi:36346 +#: guix-git/doc/guix.texi:36836 #, no-wrap msgid "@code{stop} (default: @code{#~(const #f)})" msgstr "@code{stop} (par défaut : @code{#~(const #f)})" #. type: table -#: guix-git/doc/guix.texi:36352 +#: guix-git/doc/guix.texi:36842 msgid "The @code{start} and @code{stop} fields refer to the Shepherd's facilities to start and stop processes (@pxref{Service De- and Constructors,,, shepherd, The GNU Shepherd Manual}). They are given as G-expressions that get expanded in the Shepherd configuration file (@pxref{G-Expressions})." msgstr "Les champs @code{start} et @code{stop} se réfèrent à la capacité du Shepherd de démarrer et d'arrêter des processus (@pxref{Service De- and Constructors,,, shepherd, The GNU Shepherd Manual}). Ils sont donnés comme des G-expressions qui sont étendues dans le fichier de configuration du Shepherd (@pxref{G-Expressions})." #. type: item -#: guix-git/doc/guix.texi:36353 +#: guix-git/doc/guix.texi:36843 #, no-wrap msgid "@code{actions} (default: @code{'()})" msgstr "@code{actions} (par défaut : @code{'()})" #. type: cindex -#: guix-git/doc/guix.texi:36354 +#: guix-git/doc/guix.texi:36844 #, no-wrap msgid "actions, of Shepherd services" msgstr "action, des services Shepherd" #. type: table -#: guix-git/doc/guix.texi:36359 +#: guix-git/doc/guix.texi:36849 msgid "This is a list of @code{shepherd-action} objects (see below) defining @dfn{actions} supported by the service, in addition to the standard @code{start} and @code{stop} actions. Actions listed here become available as @command{herd} sub-commands:" msgstr "C'est une liste d'objets @code{shepherd-action} (voir plus bas) définissant des @dfn{actions} supportées par le service, en plus des actions @code{start} et @code{stop} standards. Les actions listées ici sont disponibles en tant que sous-commande de @command{herd} :" #. type: example -#: guix-git/doc/guix.texi:36362 +#: guix-git/doc/guix.texi:36852 #, no-wrap msgid "herd @var{action} @var{service} [@var{arguments}@dots{}]\n" msgstr "herd @var{action} @var{service} [@var{arguments}@dots{}]\n" #. type: item -#: guix-git/doc/guix.texi:36364 +#: guix-git/doc/guix.texi:36854 #, no-wrap msgid "@code{auto-start?} (default: @code{#t})" msgstr "@code{auto-start?} (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:36367 +#: guix-git/doc/guix.texi:36857 msgid "Whether this service should be started automatically by the Shepherd. If it is @code{#f} the service has to be started manually with @code{herd start}." msgstr "Indique si ce service doit être démarré automatiquement par le Shepherd. Si la valeur est @code{#f}, le service doit être démarré manuellement avec @code{herd start}." #. type: table -#: guix-git/doc/guix.texi:36370 +#: guix-git/doc/guix.texi:36860 msgid "A documentation string, as shown when running:" msgstr "Une chaîne de documentation, montrée lorsqu'on lance :" #. type: example -#: guix-git/doc/guix.texi:36373 +#: guix-git/doc/guix.texi:36863 #, no-wrap msgid "herd doc @var{service-name}\n" msgstr "herd doc @var{service-name}\n" #. type: table -#: guix-git/doc/guix.texi:36377 +#: guix-git/doc/guix.texi:36867 msgid "where @var{service-name} is one of the symbols in @code{provision} (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual})." msgstr "où @var{service-name} est l'un des symboles dans @var{provision} (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual})." #. type: table -#: guix-git/doc/guix.texi:36381 +#: guix-git/doc/guix.texi:36871 msgid "This is the list of modules that must be in scope when @code{start} and @code{stop} are evaluated." msgstr "C'est la liste des modules qui doivent être dans le contexte lorsque @code{start} et @code{stop} sont évalués." #. type: Plain text -#: guix-git/doc/guix.texi:36389 +#: guix-git/doc/guix.texi:36879 msgid "The example below defines a Shepherd service that spawns @command{syslogd}, the system logger from the GNU Networking Utilities (@pxref{syslogd invocation, @command{syslogd},, inetutils, GNU Inetutils}):" msgstr "L'exemple ci-dessous défini un service Shepherd qui lance @command{syslogd}, le démon de journalisation du système des utilitaires réseau de GNU (@pxref{syslogd invocation, @command{syslogd},, inetutils, GNU Inetutils}) :" #. type: example -#: guix-git/doc/guix.texi:36401 +#: guix-git/doc/guix.texi:36891 #, no-wrap msgid "" "(let ((config (plain-file \"syslogd.conf\" \"@dots{}\")))\n" @@ -67746,55 +68701,55 @@ msgstr "" " (stop #~(make-kill-destructor))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:36416 +#: guix-git/doc/guix.texi:36906 msgid "Key elements in this example are the @code{start} and @code{stop} fields: they are @dfn{staged} code snippets that use the @code{make-forkexec-constructor} procedure provided by the Shepherd and its dual, @code{make-kill-destructor} (@pxref{Service De- and Constructors,,, shepherd, The GNU Shepherd Manual}). The @code{start} field will have @command{shepherd} spawn @command{syslogd} with the given option; note that we pass @code{config} after @option{--rcfile}, which is a configuration file declared above (contents of this file are omitted). Likewise, the @code{stop} field tells how this service is to be stopped; in this case, it is stopped by making the @code{kill} system call on its PID@. Code staging is achieved using G-expressions: @code{#~} stages code, while @code{#$} ``escapes'' back to host code (@pxref{G-Expressions})." msgstr "Les éléments clés de cet exemple sont les champs @code{start} et @code{stop} : ce sont des bouts de code @dfn{échelonné} qui utilisent la procédure @code{make-forkexec-constructor} fournie par le Shepherd et son dual, @code{make-kill-destructor} (@pxref{Service De- and Constructors,,, shepherd, The GNU Shepherd Manual}). Le champ @code{start} fera créer un @command{syslogd} au @command{shepherd} avec les options données. Remarquez que nous passons @code{config} après @option{--rcfile}, qui est un fichier de configuration déclaré plus haut (le contenu de ce fichier a été omis). De même, le champ @code{stop} décrit comment ce service sera arrêté. Dans ce cas, il est arrêté par l'appel système @code{kill} sur son PID@. Le code est échelonné par des G-expressions : @code{#~} échelonne le code, tandis que @code{#$} « descend » vers le code hôte (@pxref{G-Expressions})." #. type: deftp -#: guix-git/doc/guix.texi:36417 +#: guix-git/doc/guix.texi:36907 #, no-wrap msgid "{Data Type} shepherd-action" msgstr "{Type de données} shepherd-action" #. type: deftp -#: guix-git/doc/guix.texi:36420 +#: guix-git/doc/guix.texi:36910 msgid "This is the data type that defines additional actions implemented by a Shepherd service (see above)." msgstr "C'est le type de données qui définie des actions supplémentaires implémentées par un service Shepherd (voir au-dessus)." #. type: table -#: guix-git/doc/guix.texi:36424 +#: guix-git/doc/guix.texi:36914 msgid "Symbol naming the action." msgstr "Symbole nommant l'action." #. type: table -#: guix-git/doc/guix.texi:36427 +#: guix-git/doc/guix.texi:36917 msgid "This is a documentation string for the action. It can be viewed by running:" msgstr "C'est une chaîne de documentation pour l'action. Elle peut être consultée avec :" #. type: example -#: guix-git/doc/guix.texi:36430 +#: guix-git/doc/guix.texi:36920 #, no-wrap msgid "herd doc @var{service} action @var{action}\n" msgstr "herd doc @var{service} action @var{action}\n" #. type: item -#: guix-git/doc/guix.texi:36432 +#: guix-git/doc/guix.texi:36922 #, no-wrap msgid "procedure" msgstr "procedure" #. type: table -#: guix-git/doc/guix.texi:36436 +#: guix-git/doc/guix.texi:36926 msgid "This should be a gexp that evaluates to a procedure of at least one argument, which is the ``running value'' of the service (@pxref{Slots of services,,, shepherd, The GNU Shepherd Manual})." msgstr "Cela devrait être une gexp qui s'évalue en une procédure à au moins un argument, la « valeur de lancement » du service (@pxref{Slots of services,,, shepherd, The GNU Shepherd Manual})." #. type: deftp -#: guix-git/doc/guix.texi:36440 +#: guix-git/doc/guix.texi:36930 msgid "The following example defines an action called @code{say-hello} that kindly greets the user:" msgstr "L'exemple suivant définie une action nommée @code{dire-bonjour} qui salue amicalement l'utilisateur :" #. type: lisp -#: guix-git/doc/guix.texi:36449 +#: guix-git/doc/guix.texi:36939 #, no-wrap msgid "" "(shepherd-action\n" @@ -67814,12 +68769,12 @@ msgstr "" " #t)))\n" #. type: deftp -#: guix-git/doc/guix.texi:36452 +#: guix-git/doc/guix.texi:36942 msgid "Assuming this action is added to the @code{example} service, then you can do:" msgstr "En supposant que cette action est ajoutée dans le service @code{example}, vous pouvez écrire :" #. type: example -#: guix-git/doc/guix.texi:36458 +#: guix-git/doc/guix.texi:36948 #, no-wrap msgid "" "# herd say-hello example\n" @@ -67833,66 +68788,66 @@ msgstr "" "Salut, l'ami ! arguments : (\"a\" \"b\" \"c\")\n" #. type: deftp -#: guix-git/doc/guix.texi:36463 +#: guix-git/doc/guix.texi:36953 msgid "This, as you can see, is a fairly sophisticated way to say hello. @xref{Service Convenience,,, shepherd, The GNU Shepherd Manual}, for more info on actions." msgstr "Comme vous pouvez le voir, c'est une manière assez sophistiquée de dire bonjour. @xref{Service Convenience,,, shepherd, The GNU Shepherd Manual}, pour plus d'informations sur les actions." #. type: defvr -#: guix-git/doc/guix.texi:36465 +#: guix-git/doc/guix.texi:36955 #, no-wrap msgid "{Scheme Variable} shepherd-root-service-type" msgstr "{Variable Scheme} shepherd-root-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36467 +#: guix-git/doc/guix.texi:36957 msgid "The service type for the Shepherd ``root service''---i.e., PID@tie{}1." msgstr "Le type de service pour le « service racine » du Shepherd — c.-à-d.@: le PID@tie{}1." #. type: defvr -#: guix-git/doc/guix.texi:36472 +#: guix-git/doc/guix.texi:36962 msgid "This is the service type that extensions target when they want to create shepherd services (@pxref{Service Types and Services}, for an example). Each extension must pass a list of @code{}. Its value must be a @code{shepherd-configuration}, as described below." msgstr "C'est le type de service que les extensions ciblent lorqu'elles veulent créer un service shepherd (@pxref{Service Types and Services}, pour un exemple). Chaque extension doit passer une liste de @code{}. Sa valeur doit être un @code{shepherd-configuration}, décrit plus bas." #. type: deftp -#: guix-git/doc/guix.texi:36474 +#: guix-git/doc/guix.texi:36964 #, no-wrap msgid "{Data Type} shepherd-configuration" msgstr "{Type de données} shepherd-configuration" #. type: deftp -#: guix-git/doc/guix.texi:36476 guix-git/doc/guix.texi:37463 +#: guix-git/doc/guix.texi:36966 guix-git/doc/guix.texi:37959 msgid "This data type represents the Shepherd's configuration." msgstr "Ce type de données représente la configuration du Shepherd." #. type: item -#: guix-git/doc/guix.texi:36478 guix-git/doc/guix.texi:37465 +#: guix-git/doc/guix.texi:36968 guix-git/doc/guix.texi:37961 #, no-wrap msgid "shepherd (default: @code{shepherd})" msgstr "shepherd (par défaut : @code{shepherd})" #. type: table -#: guix-git/doc/guix.texi:36480 guix-git/doc/guix.texi:37467 +#: guix-git/doc/guix.texi:36970 guix-git/doc/guix.texi:37963 msgid "The Shepherd package to use." msgstr "Le paquet Shepherd à utiliser." #. type: item -#: guix-git/doc/guix.texi:36481 guix-git/doc/guix.texi:37471 +#: guix-git/doc/guix.texi:36971 guix-git/doc/guix.texi:37967 #, no-wrap msgid "services (default: @code{'()})" msgstr "services (par défaut : @code{'()})" #. type: table -#: guix-git/doc/guix.texi:36485 guix-git/doc/guix.texi:37475 +#: guix-git/doc/guix.texi:36975 guix-git/doc/guix.texi:37971 msgid "A list of @code{} to start. You should probably use the service extension mechanism instead (@pxref{Shepherd Services})." msgstr "Une liste de @code{} à démarrer. Vous devriez probablement utiliser le mécanisme d'extensions des services à la place (@pxref{Shepherd Services})." #. type: Plain text -#: guix-git/doc/guix.texi:36490 +#: guix-git/doc/guix.texi:36980 msgid "The following example specifies the Shepherd package for the operating system:" msgstr "L'exemple suivant spécifie le paquet Shepherd pour le système d'exploitation :" #. type: lisp -#: guix-git/doc/guix.texi:36505 +#: guix-git/doc/guix.texi:36995 #, no-wrap msgid "" "(operating-system\n" @@ -67924,54 +68879,54 @@ msgstr "" " (shepherd my-shepherd))))))\n" #. type: defvr -#: guix-git/doc/guix.texi:36507 +#: guix-git/doc/guix.texi:36997 #, no-wrap msgid "{Scheme Variable} %shepherd-root-service" msgstr "{Variable Scheme} %shepherd-root-service" #. type: defvr -#: guix-git/doc/guix.texi:36509 +#: guix-git/doc/guix.texi:36999 msgid "This service represents PID@tie{}1." msgstr "Ce service représente le PID@tie{}1." #. type: cindex -#: guix-git/doc/guix.texi:36513 +#: guix-git/doc/guix.texi:37003 #, fuzzy, no-wrap #| msgid "home configuration" msgid "complex configurations" msgstr "configuration du dossier personnel" #. type: Plain text -#: guix-git/doc/guix.texi:36518 +#: guix-git/doc/guix.texi:37008 msgid "Some programs might have rather complex configuration files or formats, and to make it easier to create Scheme bindings for these configuration files, you can use the utilities defined in the @code{(gnu services configuration)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36526 +#: guix-git/doc/guix.texi:37016 msgid "The main utility is the @code{define-configuration} macro, which you will use to define a Scheme record type (@pxref{Record Overview,,, guile, GNU Guile Reference Manual}). The Scheme record will be serialized to a configuration file by using @dfn{serializers}, which are procedures that take some kind of Scheme value and returns a G-expression (@pxref{G-Expressions}), which should, once serialized to the disk, return a string. More details are listed below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36527 +#: guix-git/doc/guix.texi:37017 #, fuzzy, no-wrap #| msgid "{Scheme Syntax} modify-phases @var{phases} @var{clause}@dots{}" msgid "{Scheme Syntax} define-configuration @var{name} @var{clause1} @" msgstr "{Syntaxe Scheme} modify-phases @var{phases} @var{clause}@dots{}" #. type: deffn -#: guix-git/doc/guix.texi:36531 +#: guix-git/doc/guix.texi:37021 msgid "@var{clause2} ... Create a record type named @code{@var{name}} that contains the fields found in the clauses." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36533 +#: guix-git/doc/guix.texi:37023 #, fuzzy #| msgid "Packages are currently available on the following platforms:" msgid "A clause can have one of the following forms:" msgstr "Les paquets sont actuellement disponibles pour les plateformes suivantes :" #. type: example -#: guix-git/doc/guix.texi:36538 +#: guix-git/doc/guix.texi:37028 #, no-wrap msgid "" "(@var{field-name}\n" @@ -67981,7 +68936,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36543 +#: guix-git/doc/guix.texi:37033 #, no-wrap msgid "" "(@var{field-name}\n" @@ -67992,7 +68947,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36547 +#: guix-git/doc/guix.texi:37037 #, no-wrap msgid "" "(@var{field-name}\n" @@ -68002,7 +68957,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36552 +#: guix-git/doc/guix.texi:37042 #, no-wrap msgid "" "(@var{field-name}\n" @@ -68012,39 +68967,39 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36556 +#: guix-git/doc/guix.texi:37046 msgid "@var{field-name} is an identifier that denotes the name of the field in the generated record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36564 +#: guix-git/doc/guix.texi:37054 msgid "@var{type} is the type of the value corresponding to @var{field-name}; since Guile is untyped, a predicate procedure---@code{@var{type}?}---will be called on the value corresponding to the field to ensure that the value is of the correct type. This means that if say, @var{type} is @code{package}, then a procedure named @code{package?} will be applied on the value to make sure that it is indeed a @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36568 +#: guix-git/doc/guix.texi:37058 msgid "@var{default-value} is the default value corresponding to the field; if none is specified, the user is forced to provide a value when creating an object of the record type." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36573 +#: guix-git/doc/guix.texi:37063 msgid "@var{documentation} is a string formatted with Texinfo syntax which should provide a description of what setting this field does." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36580 +#: guix-git/doc/guix.texi:37070 msgid "@var{serializer} is the name of a procedure which takes two arguments, the first is the name of the field, and the second is the value corresponding to the field. The procedure should return a string or G-expression (@pxref{G-Expressions}) that represents the content that will be serialized to the configuration file. If none is specified, a procedure of the name @code{serialize-@var{type}} will be used." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36582 +#: guix-git/doc/guix.texi:37072 #, fuzzy #| msgid "A simple services setup for nginx with php can look like this:" msgid "A simple serializer procedure could look like this:" msgstr "Une configuration simple de services pour php ressemble à ceci :" #. type: lisp -#: guix-git/doc/guix.texi:36587 +#: guix-git/doc/guix.texi:37077 #, no-wrap msgid "" "(define (serialize-boolean field-name value)\n" @@ -68053,12 +69008,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36598 +#: guix-git/doc/guix.texi:37088 msgid "In some cases multiple different configuration records might be defined in the same file, but their serializers for the same type might have to be different, because they have different configuration formats. For example, the @code{serialize-boolean} procedure for the Getmail service would have to be different for the one for the Transmission service. To make it easier to deal with this situation, one can specify a serializer prefix by using the @code{prefix} literal in the @code{define-configuration} form. This means that one doesn't have to manually specify a custom @var{serializer} for every field." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36602 +#: guix-git/doc/guix.texi:37092 #, no-wrap msgid "" "(define (foo-serialize-string field-name value)\n" @@ -68067,7 +69022,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36605 +#: guix-git/doc/guix.texi:37095 #, no-wrap msgid "" "(define (bar-serialize-string field-name value)\n" @@ -68076,7 +69031,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36611 +#: guix-git/doc/guix.texi:37101 #, no-wrap msgid "" "(define-configuration foo-configuration\n" @@ -68088,7 +69043,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36617 +#: guix-git/doc/guix.texi:37107 #, no-wrap msgid "" "(define-configuration bar-configuration\n" @@ -68099,12 +69054,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36623 +#: guix-git/doc/guix.texi:37113 msgid "However, in some cases you might not want to serialize any of the values of the record, to do this, you can use the @code{no-serialization} literal. There is also the @code{define-configuration/no-serialization} macro which is a shorthand of this." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36631 +#: guix-git/doc/guix.texi:37121 #, no-wrap msgid "" ";; Nothing will be serialized to disk.\n" @@ -68117,7 +69072,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36637 +#: guix-git/doc/guix.texi:37127 #, no-wrap msgid "" ";; The same thing as above.\n" @@ -68128,24 +69083,24 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36640 +#: guix-git/doc/guix.texi:37130 #, fuzzy, no-wrap #| msgid "{Scheme Syntax} return @var{val}" msgid "{Scheme Syntax} define-maybe @var{type}" msgstr "{Syntaxe Scheme} return @var{val}" #. type: deffn -#: guix-git/doc/guix.texi:36645 +#: guix-git/doc/guix.texi:37135 msgid "Sometimes a field should not be serialized if the user doesn’t specify a value. To achieve this, you can use the @code{define-maybe} macro to define a ``maybe type''; if the value of a maybe type is set to the @code{disabled}, it will not be serialized." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36652 +#: guix-git/doc/guix.texi:37142 msgid "When defining a ``maybe type'', the corresponding serializer for the regular type will be used by default. For example, a field of type @code{maybe-string} will be serialized using the @code{serialize-string} procedure by default, you can of course change this by specifying a custom serializer procedure. Likewise, the type of the value would have to be a string, unless it is set to the @code{disabled} symbol." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36655 +#: guix-git/doc/guix.texi:37145 #, fuzzy, no-wrap #| msgid "" #| "(define %user \"username\")\n" @@ -68158,7 +69113,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36658 +#: guix-git/doc/guix.texi:37148 #, no-wrap msgid "" "(define (serialize-string field-name value)\n" @@ -68167,7 +69122,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36665 +#: guix-git/doc/guix.texi:37155 #, no-wrap msgid "" "(define-configuration baz-configuration\n" @@ -68179,12 +69134,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36669 +#: guix-git/doc/guix.texi:37159 msgid "Like with @code{define-configuration}, one can set a prefix for the serializer name by using the @code{prefix} literal." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36673 +#: guix-git/doc/guix.texi:37163 #, no-wrap msgid "" "(define-maybe integer\n" @@ -68193,7 +69148,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36676 +#: guix-git/doc/guix.texi:37166 #, no-wrap msgid "" "(define (baz-serialize-interger field-name value)\n" @@ -68201,12 +69156,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36683 +#: guix-git/doc/guix.texi:37173 msgid "There is also the @code{no-serialization} literal, which when set means that no serializer will be defined for the ``maybe type'', regardless of its value is @code{disabled} or not. @code{define-maybe/no-serialization} is a shorthand for specifying the @code{no-serialization} literal." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36686 +#: guix-git/doc/guix.texi:37176 #, no-wrap msgid "" "(define-maybe/no-serialization symbol)\n" @@ -68214,7 +69169,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36691 +#: guix-git/doc/guix.texi:37181 #, no-wrap msgid "" "(define-configuration/no-serialization test-configuration\n" @@ -68224,70 +69179,70 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36694 +#: guix-git/doc/guix.texi:37184 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} set-xorg-configuration @var{config} @" msgid "{Scheme Procedure} serialize-configuration @var{configuration} @" msgstr "{Procédure Scheme} set-xorg-configuration @var{config} @" #. type: deffn -#: guix-git/doc/guix.texi:36700 +#: guix-git/doc/guix.texi:37190 msgid "@var{fields} Return a G-expression that contains the values corresponding to the @var{fields} of @var{configuration}, a record that has been generated by @code{define-configuration}. The G-expression can then be serialized to disk by using something like @code{mixed-text-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36702 +#: guix-git/doc/guix.texi:37192 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} set-xorg-configuration @var{config} @" msgid "{Scheme Procedure} validate-configuration @var{configuration}" msgstr "{Procédure Scheme} set-xorg-configuration @var{config} @" #. type: deffn -#: guix-git/doc/guix.texi:36706 +#: guix-git/doc/guix.texi:37196 msgid "@var{fields} Type-check @var{fields}, a list of field names of @var{configuration}, a configuration record created by @code{define-configuration}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36708 +#: guix-git/doc/guix.texi:37198 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} extra-special-file @var{file} @var{target}" msgid "{Scheme Procedure} empty-serializer @var{field-name} @var{value}" msgstr "{Procédure Scheme} extra-special-file @var{file} @var{target}" #. type: deffn -#: guix-git/doc/guix.texi:36711 +#: guix-git/doc/guix.texi:37201 msgid "A serializer that just returns an empty string. The @code{serialize-package} procedure is an alias for this." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36716 +#: guix-git/doc/guix.texi:37206 msgid "Once you have defined a configuration record, you will most likely also want to document it so that other people know to use it. To help with that, there are two procedures, both of which are documented below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36717 +#: guix-git/doc/guix.texi:37207 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} set-xorg-configuration @var{config} @" msgid "{Scheme Procedure} generate-documentation @var{documentation} @" msgstr "{Procédure Scheme} set-xorg-configuration @var{config} @" #. type: deffn -#: guix-git/doc/guix.texi:36724 +#: guix-git/doc/guix.texi:37214 msgid "@var{documentation-name} Generate a Texinfo fragment from the docstrings in @var{documentation}, a list of @code{(@var{label} @var{fields} @var{sub-documentation} ...)}. @var{label} should be a symbol and should be the name of the configuration record. @var{fields} should be a list of all the fields available for the configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36729 +#: guix-git/doc/guix.texi:37219 msgid "@var{sub-documentation} is a @code{(@var{field-name} @var{configuration-name})} tuple. @var{field-name} is the name of the field which takes another configuration record as its value, and @var{configuration-name} is the name of that configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36736 +#: guix-git/doc/guix.texi:37226 msgid "@var{sub-documentation} is only needed if there are nested configuration records. For example, the @code{getmail-configuration} record (@pxref{Mail Services}) accepts a @code{getmail-configuration-file} record in one of its @code{rcfile} field, therefore documentation for @code{getmail-configuration-file} is nested in @code{getmail-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36743 +#: guix-git/doc/guix.texi:37233 #, no-wrap msgid "" "(generate-documentation\n" @@ -68298,34 +69253,34 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36747 +#: guix-git/doc/guix.texi:37237 msgid "@var{documentation-name} should be a symbol and should be the name of the configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36750 +#: guix-git/doc/guix.texi:37240 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} nginx-php-location @" msgid "{Scheme Procedure} configuration->documentation" msgstr "{Procédure Scheme} nginx-php-location @" #. type: deffn -#: guix-git/doc/guix.texi:36757 +#: guix-git/doc/guix.texi:37247 msgid "@var{configuration-symbol} Take @var{configuration-symbol}, the symbol corresponding to the name used when defining a configuration record with @code{define-configuration}, and print the Texinfo documentation of its fields. This is useful if there aren’t any nested configuration records since it only prints the documentation for the top-level fields." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36765 +#: guix-git/doc/guix.texi:37255 msgid "As of right now, there is no automated way to generate documentation for configuration records and put them in the manual. Instead, every time you make a change to the docstrings of a configuration record, you have to manually call @code{generate-documentation} or @code{configuration->documentation}, and paste the output into the @file{doc/guix.texi} file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36769 +#: guix-git/doc/guix.texi:37259 msgid "Below is an example of a record type created using @code{define-configuration} and friends." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36776 +#: guix-git/doc/guix.texi:37266 #, fuzzy, no-wrap #| msgid "" #| "(use-modules (gnu services)\n" @@ -68346,7 +69301,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36784 +#: guix-git/doc/guix.texi:37274 #, no-wrap msgid "" ";; Turn field names, which are Scheme symbols into strings\n" @@ -68360,7 +69315,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36787 +#: guix-git/doc/guix.texi:37277 #, no-wrap msgid "" "(define (serialize-string field-name value)\n" @@ -68369,7 +69324,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36790 +#: guix-git/doc/guix.texi:37280 #, no-wrap msgid "" "(define (serialize-integer field-name value)\n" @@ -68378,7 +69333,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36793 +#: guix-git/doc/guix.texi:37283 #, no-wrap msgid "" "(define (serialize-boolean field-name value)\n" @@ -68387,7 +69342,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36796 +#: guix-git/doc/guix.texi:37286 #, no-wrap msgid "" "(define (serialize-contact-name field-name value)\n" @@ -68396,7 +69351,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36799 +#: guix-git/doc/guix.texi:37289 #, fuzzy, no-wrap #| msgid "The list of knot-acl-configuration used by this configuration." msgid "" @@ -68406,7 +69361,7 @@ msgid "" msgstr "La liste des knot-acl-configuration utilisés par cette configuration." #. type: lisp -#: guix-git/doc/guix.texi:36804 +#: guix-git/doc/guix.texi:37294 #, no-wrap msgid "" "(define (serialize-list-of-contact-configurations field-name value)\n" @@ -68417,7 +69372,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36811 +#: guix-git/doc/guix.texi:37301 #, no-wrap msgid "" "(define (serialize-contacts-list-configuration configuration)\n" @@ -68430,7 +69385,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36814 +#: guix-git/doc/guix.texi:37304 #, no-wrap msgid "" "(define-maybe integer)\n" @@ -68439,7 +69394,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36829 +#: guix-git/doc/guix.texi:37319 #, no-wrap msgid "" "(define-configuration contact-configuration\n" @@ -68460,7 +69415,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36841 +#: guix-git/doc/guix.texi:37331 #, no-wrap msgid "" "(define-configuration contacts-list-configuration\n" @@ -68477,14 +69432,14 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36844 +#: guix-git/doc/guix.texi:37334 #, fuzzy #| msgid "The Transmission Daemon configuration can then be updated with" msgid "A contacts list configuration could then be created like this:" msgstr "La configuration de démon Transmission peut être mise à jour avec" #. type: lisp -#: guix-git/doc/guix.texi:36860 +#: guix-git/doc/guix.texi:37350 #, no-wrap msgid "" "(define my-contacts\n" @@ -68504,12 +69459,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36864 +#: guix-git/doc/guix.texi:37354 msgid "After serializing the configuration to disk, the resulting file would look like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36869 +#: guix-git/doc/guix.texi:37359 #, no-wrap msgid "" "[owner]\n" @@ -68519,7 +69474,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36874 +#: guix-git/doc/guix.texi:37364 #, no-wrap msgid "" "[Bob]\n" @@ -68530,7 +69485,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36878 +#: guix-git/doc/guix.texi:37368 #, no-wrap msgid "" "[Charlie]\n" @@ -68539,202 +69494,202 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36883 +#: guix-git/doc/guix.texi:37373 #, no-wrap msgid "home configuration" msgstr "configuration du dossier personnel" #. type: Plain text -#: guix-git/doc/guix.texi:36895 +#: guix-git/doc/guix.texi:37385 msgid "Guix supports declarative configuration of @dfn{home environments} by utilizing the configuration mechanism described in the previous chapter (@pxref{Defining Services}), but for user's dotfiles and packages. It works both on Guix System and foreign distros and allows users to declare all the packages and services that should be installed and configured for the user. Once a user has written a file containing @code{home-environment} record, such a configuration can be @dfn{instantiated} by an unprivileged user with the @command{guix home} command (@pxref{Invoking guix home})." msgstr "Guix prend en charge la configuration déclarative des @dfn{environnement personnels} en utilisant le mécanisme de configuration décrit au chapitre précédent (@pxref{Defining Services}), mais pour les paquets et les fichiers de configuration des utilisateurs et utilisatrices. Cela fonctionne aussi bien sur le système Guix que sur les distributions externes et vous permet de déclarer tous les paquets et services qui devraient être installés et configurés. Une fois que vous avez écrit un fichier contenant un enregistrement @code{home-environment}, cette configuration peut être @dfn{instanciée} par un utilisateur ou une utilisatrice non privilégié·e avec la commande @command{guix home} (@pxref{Invoking guix home})." #. type: Plain text -#: guix-git/doc/guix.texi:36912 +#: guix-git/doc/guix.texi:37402 msgid "The user's home environment usually consists of three basic parts: software, configuration, and state. Software in mainstream distros are usually installed system-wide, but with GNU Guix most software packages can be installed on a per-user basis without needing root privileges, and are thus considered part of the user’s @dfn{home environment}. Packages on their own not very useful in many cases, because often they require some additional configuration, usually config files that reside in @env{XDG_CONFIG_HOME} (@file{~/.config} by default) or other directories. Everything else can be considered state, like media files, application databases, and logs." msgstr "Votre environnement personnel consiste en général de trois parties : les logiciels, la configuration et l'état. Dans les distributions populaires, les logiciels sont habituellement installés au niveau du système, mais avec GNU Guix, la plupart des paquets peuvent être installés indépendamment par chaque utilisateur et utilisatrice sans nécessiter de privilèges root, et font donc partie de votre @dfn{environnement personnel}. Les paquets seuls ne sont généralement pas très utiles car ils nécessitent de la configuration supplémentaire, typiquement dans des fichiers de configuration dans @env{XDG_CONFIG_HOME} (@file{~/.config} par défaut) ou d'autres répertoires. Tout le reste peut être considéré comme faisant partie de l'état, comme les fichiers multimédia, les bases de données des applications et les journaux." #. type: Plain text -#: guix-git/doc/guix.texi:36915 +#: guix-git/doc/guix.texi:37405 msgid "Using Guix for managing home environments provides a number of advantages:" msgstr "Utiliser Guix pour gérer votre environnement personnel apporte de nombreux avantages :" #. type: item -#: guix-git/doc/guix.texi:36918 +#: guix-git/doc/guix.texi:37408 #, no-wrap msgid "All software can be configured in one language (Guile Scheme)," msgstr "Tous vos logiciels peuvent être configurés en un unique langage (Guile Scheme)," #. type: itemize -#: guix-git/doc/guix.texi:36921 +#: guix-git/doc/guix.texi:37411 msgid "this gives users the ability to share values between configurations of different programs." msgstr "cela vous donne la possibilité de partager des valeurs entre les configurations de plusieurs programmes." #. type: item -#: guix-git/doc/guix.texi:36922 +#: guix-git/doc/guix.texi:37412 #, no-wrap msgid "A well-defined home environment is self-contained and can be" msgstr "Un environnement personnel bien défini est auto-contenu et peut" #. type: itemize -#: guix-git/doc/guix.texi:36925 +#: guix-git/doc/guix.texi:37415 msgid "created in a declarative and reproducible way---there is no need to grab external binaries or manually edit some configuration file." msgstr "être créé de manière déclarative et reproductible — pas besoin de récupérer des binaires externes ou de modifier des fichiers de configuration." #. type: item -#: guix-git/doc/guix.texi:36926 +#: guix-git/doc/guix.texi:37416 #, no-wrap msgid "After every @command{guix home reconfigure} invocation, a new home" msgstr "Après chaque @command{guix home reconfigure}, une nouvelle génération de" #. type: itemize -#: guix-git/doc/guix.texi:36930 +#: guix-git/doc/guix.texi:37420 msgid "environment generation will be created. This means that users can rollback to a previous home environment generation so they don’t have to worry about breaking their configuration." msgstr "l'environnement personnel sera créée. Cela signifie que vous pouvez revenir à une génération précédente de votre environnement personnel et que vous n'avez pas à craindre de casser votre configuration." #. type: item -#: guix-git/doc/guix.texi:36931 +#: guix-git/doc/guix.texi:37421 #, no-wrap msgid "It is possible to manage stateful data with Guix Home, this" msgstr "Il est possible de gérer les données avec état avec Guix Home," #. type: itemize -#: guix-git/doc/guix.texi:36936 +#: guix-git/doc/guix.texi:37426 msgid "includes the ability to automatically clone Git repositories on the initial setup of the machine, and periodically running commands like @command{rsync} to sync data with another host. This functionality is still in an experimental stage, though." msgstr "ce qui inclut la possibilité de cloner automatiquement des dépôts Git lors de la première configuration de la machine, et de lancer régulièrement des commandes comme @command{rsync} pour synchroniser vos données entre vos hôtes. Cette fonctionnalité est cependant toujours expérimentale." #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:36946 -#: guix-git/doc/guix.texi:36947 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37436 +#: guix-git/doc/guix.texi:37437 #, no-wrap msgid "Declaring the Home Environment" msgstr "Déclarer l'environnement personnel" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 msgid "Customizing your Home." msgstr "Personnaliser votre dossier personnel." #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:37014 -#: guix-git/doc/guix.texi:37015 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37504 +#: guix-git/doc/guix.texi:37505 #, no-wrap msgid "Configuring the Shell" msgstr "Configurer le shell" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 msgid "Enabling home environment." msgstr "Activer l'environnement personnel." #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:37061 -#: guix-git/doc/guix.texi:37062 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37551 +#: guix-git/doc/guix.texi:37552 #, no-wrap msgid "Home Services" msgstr "Services du dossier personnel" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 msgid "Specifying home services." msgstr "Spécifier les services du dossier personnel." #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 msgid "Instantiating a home configuration." msgstr "Instancier une configuration du dossier personnel." #. type: Plain text -#: guix-git/doc/guix.texi:36953 +#: guix-git/doc/guix.texi:37443 msgid "The home environment is configured by providing a @code{home-environment} declaration in a file that can be passed to the @command{guix home} command (@pxref{Invoking guix home}). The easiest way to get started is by generating an initial configuration with @command{guix home import}:" msgstr "L'environnement personnel est configuré en fournissant une déclaration @code{home-environment} dans un fichier qui peut être passé à la commande @command{guix home} (@pxref{Invoking guix home}). Le plus facile pour commencer est de générer une configuration initiale avec @command{guix home import} :" #. type: example -#: guix-git/doc/guix.texi:36956 +#: guix-git/doc/guix.texi:37446 #, no-wrap msgid "guix home import ~/src/guix-config\n" msgstr "guix home import ~/src/guix-config\n" #. type: Plain text -#: guix-git/doc/guix.texi:36964 +#: guix-git/doc/guix.texi:37454 msgid "The @command{guix home import} command reads some of the ``dot files'' such as @file{~/.bashrc} found in your home directory and copies them to the given directory, @file{~/src/guix-config} in this case; it also reads the contents of your profile, @file{~/.guix-profile}, and, based on that, it populates @file{~/src/guix-config/home-configuration.scm} with a Home configuration that resembles your current configuration." msgstr "La commande @command{guix home import} lit certains « dot files » comme @file{~/.bashrc} qui se trouvent dans votre dossier personnel et les copie dans le dossier donné, @file{~/src/guix-config} dans notre exemple. Il lit aussi le contenu de votre profil, @file{~/.guix-profile}, et, en fonction de cela, il rempli @file{~/src/guix-config/home-configuration.scm} avec une configuration du dossier personnel qui ressemble à votre configuration actuelle." #. type: Plain text -#: guix-git/doc/guix.texi:36970 +#: guix-git/doc/guix.texi:37460 msgid "A simple setup can include Bash and a custom text configuration, like in the example below. Don't be afraid to declare home environment parts, which overlaps with your current dot files: before installing any configuration files, Guix Home will back up existing config files to a separate place in the home directory." msgstr "Une configuration simple peut inclure par exemple Bash et une configuration textuelle personnalisée, comme dans l'exemple ci-dessous. N'ayez pas peur de déclarer des parties de votre environnement personnel qui correspondent à des fichiers de configuration existants : avant d'installer les fichiers de configuration, Guix Home créera une sauvegarde des fichiers existants à un emplacement distinct de votre dossier personnel." #. type: quotation -#: guix-git/doc/guix.texi:36976 +#: guix-git/doc/guix.texi:37466 msgid "It is highly recommended that you manage your shell or shells with Guix Home, because it will make sure that all the necessary scripts are sourced by the shell configuration file. Otherwise you will need to do it manually. (@pxref{Configuring the Shell})." msgstr "Il est fortement recommandé de gérer votre shell avec Guix Home, car il s'assurera que tous les scripts nécessaires seront sourcés par le fichier de configuration du shell. Sinon, vous devrez le faire manuellement. (@pxref{Configuring the Shell})." #. type: findex -#: guix-git/doc/guix.texi:36978 +#: guix-git/doc/guix.texi:37468 #, no-wrap msgid "home-environment" msgstr "home-environment" #. type: include -#: guix-git/doc/guix.texi:36980 +#: guix-git/doc/guix.texi:37470 #, no-wrap msgid "he-config-bare-bones.scm" msgstr "he-config-bare-bones.scm" #. type: Plain text -#: guix-git/doc/guix.texi:36987 +#: guix-git/doc/guix.texi:37477 msgid "The @code{packages} field should be self-explanatory, it will install the list of packages into the user's profile. The most important field is @code{services}, it contains a list of @dfn{home services}, which are the basic building blocks of a home environment." msgstr "Le champ @code{packages} devrait être évident, il installera la liste des paquets dans votre profil. Le champ le plus important est @code{services}, qui contient une liste de @dfn{services personnels}, qui sont les blocs de base d'un environnement personnel." #. type: Plain text -#: guix-git/doc/guix.texi:36995 +#: guix-git/doc/guix.texi:37485 msgid "There is no daemon (at least not necessarily) related to a home service, a home service is just an element that is used to declare part of home environment and extend other parts of it. The extension mechanism discussed in the previous chapter (@pxref{Defining Services}) should not be confused with Shepherd services (@pxref{Shepherd Services}). Using this extension mechanism and some Scheme code that glues things together gives the user the freedom to declare their own, very custom, home environments." msgstr "Il n'y a pas de démon (en tout cas pas nécessairement) lié à un service personnel, un service personnel est seulement un élément qui est utilisé pour déclarer une partie de l'environnement personnel et en étendre d'autres parties. Le mécanisme d'extension présenté dans le chapitre précédent (@pxref{Defining Services}) ne doit pas être confondu avec les services Shepherd (@pxref{Shepherd Services}). L'utilisation de ce mécanisme d'extension et de code Scheme autour vous donne la liberté de déclarer votre propre environnement personnel, hautement personnalisé." #. type: Plain text -#: guix-git/doc/guix.texi:36998 +#: guix-git/doc/guix.texi:37488 msgid "Once you have a configuration file that suits your needs, you can reconfigure your home by running:" msgstr "Une fois que votre configuration correspond à vos besoins, vous pouvez reconfigurer votre dossier personnel en exécutant :" #. type: example -#: guix-git/doc/guix.texi:37001 +#: guix-git/doc/guix.texi:37491 #, no-wrap msgid "guix home reconfigure config.scm\n" msgstr "guix home reconfigure config.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:37005 +#: guix-git/doc/guix.texi:37495 msgid "This ``builds'' your home environment and creates @file{~/.guix-home} pointing to it. Voilà!" msgstr "Cette commande « construit » votre environnement personnel et crée un lien @file{~/.guix-home} qui pointe dessus. Et voilà !" #. type: quotation -#: guix-git/doc/guix.texi:37012 +#: guix-git/doc/guix.texi:37502 msgid "Make sure the operating system has elogind, systemd, or a similar mechanism to create the XDG run-time directory and has the @env{XDG_RUNTIME_DIR} variable set. Failing that, the @file{on-first-login} script will not execute anything, and processes like user Shepherd and its descendants will not start." msgstr "Assurez-vous que votre système d'exploitation a elogind, systemd ou un mécanisme similaire pour créer les répertoires XDG à l'exécution et défini la variable @env{XDG_RUNTIME_DIR}. Autrement, le script @file{on-first-login} ne sera pas exécuté et les processus comme le Shepherd utilisateur et ses descendants ne démarreront pas." #. type: Plain text -#: guix-git/doc/guix.texi:37018 +#: guix-git/doc/guix.texi:37508 msgid "This section is safe to skip if your shell or shells are managed by Guix Home. Otherwise, read it carefully." msgstr "Vous pouvez sauter cette section sans problème si votre shell ou vos shells sont gérés par Guix Home. Sinon, lisez-la avec attention." #. type: Plain text -#: guix-git/doc/guix.texi:37025 +#: guix-git/doc/guix.texi:37515 msgid "There are a few scripts that must be evaluated by a login shell to activate the home environment. The shell startup files only read by login shells often have @code{profile} suffix. For more information about login shells see @ref{Invoking Bash,,, bash, The GNU Bash Reference Manual} and see @ref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}." msgstr "Il y a quelques scripts qui doivent être évalués par un shell de connexion pour activer l'environnement personnel. Les fichiers de démarrage du shell lus par les shells de connexion ont souvent le suffixe @code{profile}. Pour plus d'information sur les shells de connexion, voir @ref{Invoking Bash,,, bash, The GNU Bash Reference Manual} et voir @ref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}." #. type: Plain text -#: guix-git/doc/guix.texi:37032 +#: guix-git/doc/guix.texi:37522 msgid "The first script that needs to be sourced is @file{setup-environment}, which sets all the necessary environment variables (including variables declared by the user) and the second one is @file{on-first-login}, which starts Shepherd for the current user and performs actions declared by other home services that extends @code{home-run-on-first-login-service-type}." msgstr "Le premier script qui a besoin d'être sourcé est @file{setup-environment}, qui initialise toutes les variables d'environnement nécessaires (dont les variables que vous avez déclarées) et le second est @file{on-first-login}, qui démarre Shepherd pour l'utilisateur actuel et effectue les action déclarées par les autres services personnels qui étendent @code{home-run-on-first-login-service-type}." #. type: Plain text -#: guix-git/doc/guix.texi:37035 +#: guix-git/doc/guix.texi:37525 msgid "Guix Home will always create @file{~/.profile}, which contains the following lines:" msgstr "Guix Home créera toujours @file{~/.profile}, qui contient les lignes suivantes :" #. type: example -#: guix-git/doc/guix.texi:37040 +#: guix-git/doc/guix.texi:37530 #, no-wrap msgid "" "HOME_ENVIRONMENT=$HOME/.guix-home\n" @@ -68746,107 +69701,109 @@ msgstr "" "$HOME_ENVIRONMENT/on-first-login\n" #. type: Plain text -#: guix-git/doc/guix.texi:37050 +#: guix-git/doc/guix.texi:37540 msgid "This makes POSIX compliant login shells activate the home environment. However, in most cases this file won't be read by most modern shells, because they are run in non POSIX mode by default and have their own @file{*profile} startup files. For example Bash will prefer @file{~/.bash_profile} in case it exists and only if it doesn't will it fallback to @file{~/.profile}. Zsh (if no additional options are specified) will ignore @file{~/.profile}, even if @file{~/.zprofile} doesn't exist." msgstr "Cela fait activer l'environnement personnel sur les shell POSIX. Cependant, dans la plupart des cas ce fichier ne sera pas lu par les shells les plus modernes, parce qu'ils sont lancés en mode non POSIX par défaut et qu'ils ont leur propre fichiers de démarrage @file{*profile}. Par exemple Bash préfèrera @file{~/.bash_profile} s'il existe et n'utilisera @file{~/.profile} que s'il n'existe pas. Zsh (sans option supplémentaire) ignorera @file{~/.profile} même si @file{~/.zprofile} n'existe pas." #. type: Plain text -#: guix-git/doc/guix.texi:37055 +#: guix-git/doc/guix.texi:37545 msgid "To make your shell respect @file{~/.profile}, add @code{. ~/.profile} or @code{source ~/profile} to the startup file for the login shell. In case of Bash, it is @file{~/.bash_profile}, and in case of Zsh, it is @file{~/.zprofile}." msgstr "Pour que votre shell respecte @file{~/.profile}, ajoutez @code{. ~/.profile} ou @code{source ~/.profile} au fichier de démarrage pour le shell de connexion. Dans le cas d eBash, c'est @file{~/.bash_profile}, et dans le cas de Zsh, c'est @file{~/.zprofile}." #. type: quotation -#: guix-git/doc/guix.texi:37059 +#: guix-git/doc/guix.texi:37549 msgid "This step is only required if your shell is NOT managed by Guix Home. Otherwise, everything will be done automatically." msgstr "Cette étape n'est requise que si votre shell n'est PAS géré par Guix HOME. Sinon, tout sera déjà fait automatiquement." #. type: cindex -#: guix-git/doc/guix.texi:37063 +#: guix-git/doc/guix.texi:37553 #, no-wrap msgid "home services" msgstr "services personnels" #. type: Plain text -#: guix-git/doc/guix.texi:37072 +#: guix-git/doc/guix.texi:37562 msgid "A @dfn{home service} is not necessarily something that has a daemon and is managed by Shepherd (@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}), in most cases it doesn't. It's a simple building block of the home environment, often declaring a set of packages to be installed in the home environment profile, a set of config files to be symlinked into @env{XDG_CONFIG_HOME} (@file{~/.config} by default), and environment variables to be set by a login shell." msgstr "Un @dfn{service personnel} ne correspond pas forcément à un démon géré par le Shepherd (@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}), dans la plupart des cas ce n'est pas le cas. C'est un simple bloc de construction de l'environnement personnel, souvent déclaré comme une ensemble de paquets à installer dans le profil de l'environnement personnel, un ensemble de fichiers de configuration vers lesquels créer des liens symboliques dans @env{XDG_CONFIG_HOME} (@file{~/.config} par défaut) et des variables d'environnement à initialiser dans un shell de connexion." #. type: Plain text -#: guix-git/doc/guix.texi:37080 +#: guix-git/doc/guix.texi:37570 msgid "There is a service extension mechanism (@pxref{Service Composition}) which allows home services to extend other home services and utilize capabilities they provide; for example: declare mcron jobs (@pxref{Top,,, mcron, GNU@tie{}Mcron}) by extending @ref{Mcron Home Service}; declare daemons by extending @ref{Shepherd Home Service}; add commands, which will be invoked on by the Bash by extending @ref{Shells Home Services, @code{home-bash-service-type}}." msgstr "Il y a un mécanisme d'extension de services (@pxref{Service Composition}) qui permet aux services personnels d'étendre les autres services personnels et d'utiliser leurs fonctionnalités ; par exemple : déclarer des tâches mcron (@pxref{Top,,, mcron, GNU@tie{}Mcron}) en étendant @ref{Mcron Home Service} ; déclarer des démons en étendant @ref{Shepherd Home Service} ; ajouter des commandes qui seront invoquées par Bash en étendant @ref{Shells Home Services, @code{home-bash-service-type}}." #. type: Plain text -#: guix-git/doc/guix.texi:37091 -msgid "A good way to discover avaliable home services is using the @command{guix home search} command (@pxref{Invoking guix home}). After the required home services are found, include its module with the @code{use-modules} form (@pxref{use-modules,, Using Guile Modules, guile, The GNU Guile Reference Manual}), or the @code{#:use-modules} directive (@pxref{define-module,, Creating Guile Modules, guile, The GNU Guile Reference Manual}) and declare a home service using the @code{service} function, or extend a service type by declaring a new service with the @code{simple-service} procedure from @code{(gnu services)}." +#: guix-git/doc/guix.texi:37581 +#, fuzzy +#| msgid "A good way to discover avaliable home services is using the @command{guix home search} command (@pxref{Invoking guix home}). After the required home services are found, include its module with the @code{use-modules} form (@pxref{use-modules,, Using Guile Modules, guile, The GNU Guile Reference Manual}), or the @code{#:use-modules} directive (@pxref{define-module,, Creating Guile Modules, guile, The GNU Guile Reference Manual}) and declare a home service using the @code{service} function, or extend a service type by declaring a new service with the @code{simple-service} procedure from @code{(gnu services)}." +msgid "A good way to discover available home services is using the @command{guix home search} command (@pxref{Invoking guix home}). After the required home services are found, include its module with the @code{use-modules} form (@pxref{use-modules,, Using Guile Modules, guile, The GNU Guile Reference Manual}), or the @code{#:use-modules} directive (@pxref{define-module,, Creating Guile Modules, guile, The GNU Guile Reference Manual}) and declare a home service using the @code{service} function, or extend a service type by declaring a new service with the @code{simple-service} procedure from @code{(gnu services)}." msgstr "Une bonne manière de découvrir les services personnels disponibles est d'utiliser la commande @command{guix home search} (@pxref{Invoking guix home}). Après avoir trouvé les services personnels requis, ajoutez son module avec la forme @code{use-modules} (@pxref{use-modules,, Using Guile Modules, guile, The GNU Guile Reference Manual}), ou la directive @code{#:use-modules} (@pxref{define-module,, Creating Guile Modules, guile, The GNU Guile Reference Manual}) et déclarez un service personnels avec la fonction @code{service}, ou étendez un type de service en déclarant un nouveau service avec la procédure @code{simple-service} de @code{(gnu services)}." #. type: subsection -#: guix-git/doc/guix.texi:37097 guix-git/doc/guix.texi:37100 -#: guix-git/doc/guix.texi:37101 +#: guix-git/doc/guix.texi:37587 guix-git/doc/guix.texi:37590 +#: guix-git/doc/guix.texi:37591 #, no-wrap msgid "Essential Home Services" msgstr "Services personnels essentiels" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Environment variables, packages, on-* scripts." msgstr "Une liste de variables d'environnement, de paquets et de scripts on-*." #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Shells: Shells Home Services" msgstr "Shells : Services shells personnels" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "POSIX shells, Bash, Zsh." msgstr "Shells POSIX, Bash, Zsh." #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Mcron: Mcron Home Service" msgstr "Mcron : Service personnel Mcron" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Scheduled User's Job Execution." msgstr "Exécution de tâches planifiées par utilisateur." #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Shepherd: Shepherd Home Service" msgstr "Shepherd : Service Shepherd personnel" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Managing User's Daemons." msgstr "Gérer les démons utilisateurs." #. type: Plain text -#: guix-git/doc/guix.texi:37106 +#: guix-git/doc/guix.texi:37596 msgid "There are a few essential home services defined in @code{(gnu services)}, they are mostly for internal use and are required to build a home environment, but some of them will be useful for the end user." msgstr "Il y a quelques services essentiels définis dans @code{(gnu services)}, ils sont surtout utilisés en interne et sont requis pour construire un environnement personnel, mais certains vous seront utiles." #. type: cindex -#: guix-git/doc/guix.texi:37107 +#: guix-git/doc/guix.texi:37597 #, no-wrap msgid "environment variables" msgstr "variables d'environment" #. type: defvr -#: guix-git/doc/guix.texi:37109 +#: guix-git/doc/guix.texi:37599 #, no-wrap msgid "{Scheme Variable} home-environment-variables-service-type" msgstr "{Variable Scheme} home-environment-variables-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37114 +#: guix-git/doc/guix.texi:37604 msgid "The service of this type will be instantiated by every home environment automatically by default, there is no need to define it, but someone may want to extend it with a list of pairs to set some environment variables." msgstr "Le service de ce type sera instancié par chaque environnement personnel automatiquement par défaut, il n'y a pas besoin de le définir, mais vous voudrez peut-être l'étendre avec une liste de paires pour initialiser certaines variables d'environnement." #. type: lisp -#: guix-git/doc/guix.texi:37118 +#: guix-git/doc/guix.texi:37608 #, no-wrap msgid "" "(list (\"ENV_VAR1\" . \"value1\")\n" @@ -68856,12 +69813,12 @@ msgstr "" " (\"ENV_VAR2\" . \"valeur2\"))\n" #. type: defvr -#: guix-git/doc/guix.texi:37123 +#: guix-git/doc/guix.texi:37613 msgid "The easiest way to extend a service type, without defining new service type is to use the @code{simple-service} helper from @code{(gnu services)}." msgstr "Le plus simple pour étendre un type de service, sans définir de nouveau type de service est d'utiliser la fonction @code{simple-service} de @code{(gnu services)}." #. type: lisp -#: guix-git/doc/guix.texi:37131 +#: guix-git/doc/guix.texi:37621 #, no-wrap msgid "" "(simple-service 'some-useful-env-vars-service\n" @@ -68879,12 +69836,12 @@ msgstr "" " (\"_JAVA_AWT_WM_NONREPARENTING\" . #t)))\n" #. type: defvr -#: guix-git/doc/guix.texi:37136 +#: guix-git/doc/guix.texi:37626 msgid "If you include such a service in you home environment definition, it will add the following content to the @file{setup-environment} script (which is expected to be sourced by the login shell):" msgstr "Si vous incluez un tel service dans votre définition d'environnement personnel, il ajoutera le contenu suivant au script @file{setup-environment} (qui doit être sourcé par le shell de connexion) :" #. type: example -#: guix-git/doc/guix.texi:37141 +#: guix-git/doc/guix.texi:37631 #, no-wrap msgid "" "export LESSHISTFILE=$XDG_CACHE_HOME/.lesshst\n" @@ -68896,550 +69853,576 @@ msgstr "" "export _JAVA_AWT_WM_NONREPARENTING\n" #. type: quotation -#: guix-git/doc/guix.texi:37148 +#: guix-git/doc/guix.texi:37638 msgid "Make sure that module @code{(gnu packages shells)} is imported with @code{use-modules} or any other way, this namespace contains the definition of the @code{zsh} packages, which is used in the example above." msgstr "Assurez-vous que le module @code{(gnu packages shells)} est importé avec @code{use-modules} ou d'une autre façon ; cet espace de nom contient la définition du paquet @code{zsh}, utilisé dans l'exemple précédent." #. type: defvr -#: guix-git/doc/guix.texi:37161 +#: guix-git/doc/guix.texi:37651 msgid "The association list (@pxref{Association Lists, alists, Association Lists, guile, The GNU Guile Reference manual}) is a data structure containing key-value pairs, for @code{home-environment-variables-service-type} the key is always a string, the value can be a string, string-valued gexp (@pxref{G-Expressions}), file-like object (@pxref{G-Expressions, file-like object}) or boolean. For gexps, the variable will be set to the value of the gexp; for file-like objects, it will be set to the path of the file in the store (@pxref{The Store}); for @code{#t}, it will export the variable without any value; and for @code{#f}, it will omit variable." msgstr "La liste d'association (@pxref{Association Lists, alists, Association Lists, guile, le manuel de référence de Guile}) est une structure de données contenant des paires de clé-valeurs. Pour @code{home-environment-variables-service-type} la clé est toujours une chaine, la valeur peut être une chaine, une gexp s'évaluant en une chaine (@pxref{G-Expressions}), un objet simili-fichier (@pxref{G-Expressions, file-like object}) ou un booléen. Pour les gexps, la variable sera initialisée à la valeur de la gexp ; pour les objets simili-fichiers, elle sera initialisée au chemin du fichier dans le dépôt (@pxref{The Store}) ; pour @code{#t}, la variable sera exportée sans valeur et pour @code{#f}, la variable sera omise." #. type: defvr -#: guix-git/doc/guix.texi:37164 +#: guix-git/doc/guix.texi:37654 #, no-wrap msgid "{Scheme Variable} home-profile-service-type" msgstr "{Variable Scheme} home-profile-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37170 -msgid "The service of this type will be instantiated by every home environment automatically, there is no need to define it, but you may want to extend it with a list of packages if you want to install additional packages into your profile. Other services, which need to make some programs avaliable to the user will also extend this service type." +#: guix-git/doc/guix.texi:37660 +#, fuzzy +#| msgid "The service of this type will be instantiated by every home environment automatically, there is no need to define it, but you may want to extend it with a list of packages if you want to install additional packages into your profile. Other services, which need to make some programs avaliable to the user will also extend this service type." +msgid "The service of this type will be instantiated by every home environment automatically, there is no need to define it, but you may want to extend it with a list of packages if you want to install additional packages into your profile. Other services, which need to make some programs available to the user will also extend this service type." msgstr "Le service de ce type sera instancié par chaque environnement personnel automatiquement, il n'y a pas besoin de le définir, mais vous pouvez l'étendre avec une liste de paquets si vous voulez installer des paquets supplémentaires dans votre profil. D'autres services, qui ont besoin de rendre certains programmes disponible à l'utilisateur ou l'utilisatrice étendront aussi ce type de service." #. type: defvr -#: guix-git/doc/guix.texi:37172 +#: guix-git/doc/guix.texi:37662 msgid "The extension value is just a list of packages:" msgstr "La valeur d'extension est simplement une liste de paquets :" #. type: lisp -#: guix-git/doc/guix.texi:37175 +#: guix-git/doc/guix.texi:37665 #, no-wrap msgid "(list htop vim emacs)\n" msgstr "(list htop vim emacs)\n" #. type: defvr -#: guix-git/doc/guix.texi:37185 +#: guix-git/doc/guix.texi:37675 msgid "The same approach as @code{simple-service} (@pxref{Service Reference, simple-service}) for @code{home-environment-variables-service-type} can be used here, too. Make sure that modules containing the specified packages are imported with @code{use-modules}. To find a package or information about its module use @command{guix search} (@pxref{Invoking guix package}). Alternatively, @code{specification->package} can be used to get the package record from string without importing related module." msgstr "Vous pouvez utiliser la même approche avec @code{simple-service} (@pxref{Service Reference, simple-service}) que pour @code{home-environment-variables-service-type} . Assurez-vous que les modules contenant les paquets spécifiés sont importés avec @code{use-modules}. Pour trouver un paquet ou des informations à propos de son module utilisez @command{guix search} @pxref{Invoking guix package}). Autrement, vous pouvez utiliser @code{specification->package} pour récupérer l'enregistrement de paquet à partir d'une chaine sans importer le module correspondant." #. type: Plain text -#: guix-git/doc/guix.texi:37189 +#: guix-git/doc/guix.texi:37679 msgid "There are few more essential services, but users are not expected to extend them." msgstr "Il y a quelques autres services essentiels, mais vous n'avez pas besoin de les étendre." #. type: defvr -#: guix-git/doc/guix.texi:37190 +#: guix-git/doc/guix.texi:37680 #, no-wrap msgid "{Scheme Variable} home-service-type" msgstr "{Variable Scheme} home-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37195 +#: guix-git/doc/guix.texi:37685 msgid "The root of home services DAG, it generates a folder, which later will be symlinked to @file{~/.guix-home}, it contains configurations, profile with binaries and libraries, and some necessary scripts to glue things together." msgstr "La racine du graphe des services personnels, elle génère un dossier qui sera plus tard lié à partir de @file{~/.guix-home}, il contient les configurations, le profil avec les binaires et les bibliothèques et certains scripts nécessaires pour tout faire fonctionner ensemble." #. type: defvr -#: guix-git/doc/guix.texi:37197 +#: guix-git/doc/guix.texi:37687 #, no-wrap msgid "{Scheme Variable} home-run-on-first-login-service-type" msgstr "{Variable Scheme} home-run-on-first-login-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37202 +#: guix-git/doc/guix.texi:37692 msgid "The service of this type generates a Guile script, which is expected to be executed by the login shell. It is only executed if the special flag file inside @env{XDG_RUNTIME_DIR} hasn't been created, this prevents redundant executions of the script if multiple login shells are spawned." msgstr "Le service de ce type génère un script Guile qui devrait être lancé par le shell de connexion. Il n'est exécuté que si le fichier spécial dans @env{XDG_RUNTIME_DIR} n'a pas été créé, ce qui évite les exécutions supplémentaires de ce script si plusieurs shells de connexion sont ouverts." #. type: defvr -#: guix-git/doc/guix.texi:37208 +#: guix-git/doc/guix.texi:37698 #, fuzzy #| msgid "It can be extended with a gexp. However, to autostart an application, users @emph{should not} use this service, in most cases it's better to extend @code{home-shpeherd-service-type} with a Shepherd service (@pxref{Shepherd Services}), or extend the shell's startup file with required command using the appropriate service type." msgid "It can be extended with a gexp. However, to autostart an application, users @emph{should not} use this service, in most cases it's better to extend @code{home-shepherd-service-type} with a Shepherd service (@pxref{Shepherd Services}), or extend the shell's startup file with the required command using the appropriate service type." msgstr "Il peut être étendu avec une gexp. Cependant, pour démarrer une application automatiquement, vous ne @emph{devriez pas} utiliser ce service, dans la plupart des cas il vaut mieux étendre @code{home-shepherd-service-type} avec un service Shepherd (@pxref{Shepherd Services}), ou en étendant le fichier de démarrage de shell avec la commande requise en utilisant le type de service approprié." #. type: defvr -#: guix-git/doc/guix.texi:37210 +#: guix-git/doc/guix.texi:37700 #, no-wrap msgid "{Scheme Variable} home-activation-service-type" msgstr "{Variable Scheme} home-activation-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37214 +#: guix-git/doc/guix.texi:37704 msgid "The service of this type generates a guile script, which runs on every @command{guix home reconfigure} invocation or any other action, which leads to the activation of the home environment." msgstr "Le service de ce type génère un script guile qui est lancé à chaque invocation de @command{guix home reconfigure} ou n'importe quelle autre action qui active l'environnement personnel." #. type: node -#: guix-git/doc/guix.texi:37216 +#: guix-git/doc/guix.texi:37706 #, no-wrap msgid "Shells Home Services" msgstr "Services shells personnels" #. type: subsection -#: guix-git/doc/guix.texi:37217 +#: guix-git/doc/guix.texi:37707 #, no-wrap msgid "Shells" msgstr "Shells" #. type: cindex -#: guix-git/doc/guix.texi:37219 guix-git/doc/guix.texi:37500 +#: guix-git/doc/guix.texi:37709 guix-git/doc/guix.texi:37996 #, no-wrap msgid "shell" msgstr "shell" #. type: cindex -#: guix-git/doc/guix.texi:37220 +#: guix-git/doc/guix.texi:37710 #, no-wrap msgid "login shell" msgstr "shell de connexion" #. type: cindex -#: guix-git/doc/guix.texi:37221 +#: guix-git/doc/guix.texi:37711 #, no-wrap msgid "interactive shell" msgstr "shell interactif" #. type: cindex -#: guix-git/doc/guix.texi:37222 guix-git/doc/guix.texi:37502 +#: guix-git/doc/guix.texi:37712 guix-git/doc/guix.texi:37998 #, no-wrap msgid "bash" msgstr "bash" #. type: cindex -#: guix-git/doc/guix.texi:37223 guix-git/doc/guix.texi:37503 +#: guix-git/doc/guix.texi:37713 guix-git/doc/guix.texi:37999 #, no-wrap msgid "zsh" msgstr "zsh" #. type: Plain text -#: guix-git/doc/guix.texi:37229 +#: guix-git/doc/guix.texi:37719 msgid "Shells play a quite important role in the environment initialization process, you can configure them manually as described in section @ref{Configuring the Shell}, but the recommended way is to use home services listed below. It's both easier and more reliable." msgstr "Les shells jouent un rôle important dans le processus d'initialisation de l'environnement, et vous pouvez les configurer manuellement comme décrit dans la section @ref{Configuring the Shell}, mais il est recommandé d'utiliser les services personnels listés plus bas. C'est à la fois plus facile et plus fiable." #. type: Plain text -#: guix-git/doc/guix.texi:37239 +#: guix-git/doc/guix.texi:37729 msgid "Each home environment instantiates @code{home-shell-profile-service-type}, which creates a @file{~/.profile} startup file for all POSIX-compatible shells. This file contains all the necessary steps to properly initialize the environment, but many modern shells like Bash or Zsh prefer their own startup files, that's why the respective home services (@code{home-bash-service-type} and @code{home-zsh-service-type}) ensure that @file{~/.profile} is sourced by @file{~/.bash_profile} and @file{~/.zprofile}, respectively." msgstr "Chaque environnement personnel instancie @code{home-shell-profile-service-type}, qui crée un fichier de démarrage @file{~/.profile} pour tous les shell POSIX. Ce fichier content toutes les étapes nécessaires à l'initialisation de l'environnement, mais de nombreux shells modernes comme Bash ou Zsh préfèrent leur propres fichiers de démarrage, c'est pourquoi les services personnels correspondants (@code{home-bash-service-type} et @code{home-zsh-service-type}) s'assurent que @file{~/.profile} est sourcé par @file{~/.bash_profile} et @file{~/.zprofile}, respectivement." #. type: subsubheading -#: guix-git/doc/guix.texi:37240 +#: guix-git/doc/guix.texi:37730 #, no-wrap msgid "Shell Profile Service" msgstr "Service de profil du shell" #. type: deftp -#: guix-git/doc/guix.texi:37242 +#: guix-git/doc/guix.texi:37732 #, no-wrap msgid "{Data Type} home-shell-profile-configuration" msgstr "{Type de données} home-shell-profile-configuration" #. type: deftp -#: guix-git/doc/guix.texi:37244 +#: guix-git/doc/guix.texi:37734 msgid "Available @code{home-shell-profile-configuration} fields are:" msgstr "Les champs de @code{home-shell-profile-configuration} disponibles sont :" #. type: item -#: guix-git/doc/guix.texi:37246 +#: guix-git/doc/guix.texi:37736 #, no-wrap msgid "@code{profile} (default: @code{()}) (type: text-config)" msgstr "@code{profile} (par défaut : @code{()}) (type : text-config)" #. type: table -#: guix-git/doc/guix.texi:37256 -msgid "@code{home-shell-profile} is instantiated automatically by @code{home-environment}, DO NOT create this service manually, it can only be extended. @code{profile} is a list of file-like objects, which will go to @file{~/.profile}. By default @file{~/.profile} contains the initialization code, which have to be evaluated by login shell to make home-environment's profile avaliable to the user, but other commands can be added to the file if it is really necessary. In most cases shell's configuration files are preferred places for user's customizations. Extend home-shell-profile service only if you really know what you do." +#: guix-git/doc/guix.texi:37746 +#, fuzzy +#| msgid "@code{home-shell-profile} is instantiated automatically by @code{home-environment}, DO NOT create this service manually, it can only be extended. @code{profile} is a list of file-like objects, which will go to @file{~/.profile}. By default @file{~/.profile} contains the initialization code, which have to be evaluated by login shell to make home-environment's profile avaliable to the user, but other commands can be added to the file if it is really necessary. In most cases shell's configuration files are preferred places for user's customizations. Extend home-shell-profile service only if you really know what you do." +msgid "@code{home-shell-profile} is instantiated automatically by @code{home-environment}, DO NOT create this service manually, it can only be extended. @code{profile} is a list of file-like objects, which will go to @file{~/.profile}. By default @file{~/.profile} contains the initialization code which must be evaluated by the login shell to make home-environment's profile available to the user, but other commands can be added to the file if it is really necessary. In most cases shell's configuration files are preferred places for user's customizations. Extend home-shell-profile service only if you really know what you do." msgstr "@code{home-shell-profile} est instancié automatiquement par @code{home-environment}, NE créez PAS ce service manuellement, il ne peut qu'être étendu. @code{profile} est une liste d'objets simili-fichiers, qui iront dans @file{~/.profile}. Par défaut @file{~/.profile} contient le code d'initialisation, qui doit être évalué par le shell de connexion pour rendre le profil de l'environnement personnel disponible, mais vous pouvez ajouter d'autres commandes au fichier si c'est vraiment nécessaire. Dans la plupart des cas les personnalisations devraient aller dans les fichiers de configuration de votre shell. Étendez le service home-shell-profile qui si vous savez vraiment ce que vous faites." #. type: subsubheading -#: guix-git/doc/guix.texi:37261 +#: guix-git/doc/guix.texi:37751 #, no-wrap msgid "Bash Home Service" msgstr "Services personnel Bash" #. type: anchor{#1} -#: guix-git/doc/guix.texi:37264 +#: guix-git/doc/guix.texi:37754 msgid "home-bash-configuration" msgstr "home-bash-configuration" #. type: deftp -#: guix-git/doc/guix.texi:37264 +#: guix-git/doc/guix.texi:37754 #, no-wrap msgid "{Data Type} home-bash-configuration" msgstr "{Type de données} home-bash-configuration" #. type: deftp -#: guix-git/doc/guix.texi:37266 +#: guix-git/doc/guix.texi:37756 msgid "Available @code{home-bash-configuration} fields are:" msgstr "Les champs de @code{home-bash-configuration} disponibles sont :" #. type: item -#: guix-git/doc/guix.texi:37268 +#: guix-git/doc/guix.texi:37758 #, no-wrap msgid "@code{package} (default: @code{bash}) (type: package)" msgstr "@code{package} (par défaut : @code{bash}) (type : paquet)" #. type: table -#: guix-git/doc/guix.texi:37270 +#: guix-git/doc/guix.texi:37760 msgid "The Bash package to use." msgstr "Le paquet Bash à utiliser." #. type: item -#: guix-git/doc/guix.texi:37271 +#: guix-git/doc/guix.texi:37761 #, no-wrap msgid "@code{guix-defaults?} (default: @code{#t}) (type: boolean)" msgstr "@code{guix-defaults?} (par défaut : @code{#t}) (type : booléen)" #. type: table -#: guix-git/doc/guix.texi:37274 +#: guix-git/doc/guix.texi:37764 msgid "Add sane defaults like reading @file{/etc/bashrc} and coloring the output of @command{ls} to the end of the @file{.bashrc} file." msgstr "Ajoute des instructions par défaut correctes comme la lecture de @file{/etc/bashrc} et la coloration de la sortie de @command{ls} à la fin du fichier @file{.bashrc}." #. type: item -#: guix-git/doc/guix.texi:37275 guix-git/doc/guix.texi:37329 -#: guix-git/doc/guix.texi:37368 +#: guix-git/doc/guix.texi:37765 guix-git/doc/guix.texi:37819 +#: guix-git/doc/guix.texi:37858 #, no-wrap msgid "@code{environment-variables} (default: @code{()}) (type: alist)" msgstr "@code{environment-variables} (par défaut : @code{()}) (type : liste d'association)" #. type: table -#: guix-git/doc/guix.texi:37280 +#: guix-git/doc/guix.texi:37770 msgid "Association list of environment variables to set for the Bash session. The rules for the @code{home-environment-variables-service-type} apply here (@pxref{Essential Home Services}). The contents of this field will be added after the contents of the @code{bash-profile} field." msgstr "Liste d'association de variables d'environnement à initialiser dans la session Bash. Les règles de @code{home-environment-variables-service-type} s'appliquent ici (@pxref{Essential Home Services}). Le contenu de ce champ sera ajouté après le contenu du champ @code{bash-profile}." #. type: item -#: guix-git/doc/guix.texi:37281 guix-git/doc/guix.texi:37334 +#: guix-git/doc/guix.texi:37771 guix-git/doc/guix.texi:37824 #, no-wrap msgid "@code{aliases} (default: @code{()}) (type: alist)" msgstr "@code{aliases} (par défaut : @code{()}) (type : liste d'association)" #. type: table -#: guix-git/doc/guix.texi:37286 +#: guix-git/doc/guix.texi:37776 msgid "Association list of aliases to set for the Bash session. The aliases will be defined after the contents of the @code{bashrc} field has been put in the @file{.bashrc} file. The alias will automatically be quoted, so something line this:" msgstr "Liste d'association d'alias à initialiser pour la session Bash. Les alias seront définis après le contenu du champ @code{bashrc} dans le fichier @file{.bashrc}. Les alias seront automatiquement encadrés de guillemets, pour que ceci :" #. type: lisp -#: guix-git/doc/guix.texi:37289 +#: guix-git/doc/guix.texi:37779 #, no-wrap msgid "'((\\\"ls\\\" . \\\"ls -alF\\\"))\n" msgstr "'((\\\"ls\\\" . \\\"ls -alF\\\"))\n" #. type: table -#: guix-git/doc/guix.texi:37292 +#: guix-git/doc/guix.texi:37782 msgid "turns into" msgstr "devienne" #. type: example -#: guix-git/doc/guix.texi:37295 +#: guix-git/doc/guix.texi:37785 #, no-wrap msgid "alias ls=\\\"ls -alF\\\"\n" msgstr "alias ls=\\\"ls -alF\\\"\n" #. type: item -#: guix-git/doc/guix.texi:37297 guix-git/doc/guix.texi:37338 +#: guix-git/doc/guix.texi:37787 guix-git/doc/guix.texi:37828 #, no-wrap msgid "@code{bash-profile} (default: @code{()}) (type: text-config)" msgstr "@code{bash-profile} (par défaut : @code{()}) (type : text-config)" #. type: table -#: guix-git/doc/guix.texi:37302 +#: guix-git/doc/guix.texi:37792 msgid "List of file-like objects, which will be added to @file{.bash_profile}. Used for executing user's commands at start of login shell (In most cases the shell started on tty just after login). @file{.bash_login} won't be ever read, because @file{.bash_profile} always present." msgstr "Liste d'objets simili-fichiers qui seront ajoutés à @file{.bash_profile}. C'est utilisé pour exécuter des commandes au démarrage d'un shell de connexion (dans la plupart des cas le shell qui démarre sur un tty après la connexion). @file{.bash_login} ne sera jamais lu parce que @file{.bash_profile} est toujours présent." #. type: item -#: guix-git/doc/guix.texi:37303 guix-git/doc/guix.texi:37342 +#: guix-git/doc/guix.texi:37793 guix-git/doc/guix.texi:37832 #, no-wrap msgid "@code{bashrc} (default: @code{()}) (type: text-config)" msgstr "@code{bashrc} (par défaut : @code{()}) (type : text-config)" #. type: table -#: guix-git/doc/guix.texi:37308 +#: guix-git/doc/guix.texi:37798 msgid "List of file-like objects, which will be added to @file{.bashrc}. Used for executing user's commands at start of interactive shell (The shell for interactive usage started by typing @code{bash} or by terminal app or any other program)." msgstr "Liste d'objets simili-fichiers qui seront ajoutés à @file{.bashrc}. C'est utilisé pour exécuter des commandes au lancement d'un shell interactif (le shell utilisé de manière interactive, démarré en tapant @code{bash} ou par votre application de terminal ou tout autre programme)." #. type: item -#: guix-git/doc/guix.texi:37309 guix-git/doc/guix.texi:37346 +#: guix-git/doc/guix.texi:37799 guix-git/doc/guix.texi:37836 #, no-wrap msgid "@code{bash-logout} (default: @code{()}) (type: text-config)" msgstr "@code{bash-logout} (par défaut : @code{()}) (type : text-config)" #. type: table -#: guix-git/doc/guix.texi:37314 +#: guix-git/doc/guix.texi:37804 msgid "List of file-like objects, which will be added to @file{.bash_logout}. Used for executing user's commands at the exit of login shell. It won't be read in some cases (if the shell terminates by exec'ing another process for example)." msgstr "Liste d'objets simili-fichiers qui seront ajoutés à @file{.bash_logout}. C'est utilisé pour exécuter des commandes à la sortie d'un shell de connexion. Il ne sera pas lu dans certains cas (si le shell termine en utilisant exec sur un autre processus par exemple)." #. type: Plain text -#: guix-git/doc/guix.texi:37324 +#: guix-git/doc/guix.texi:37814 msgid "You can extend the Bash service by using the @code{home-bash-extension} configuration record, whose fields most mirror that of @code{home-bash-configuration} (@pxref{home-bash-configuration}). The contents of the extensions will be added to the end of the corresponding Bash configuration files (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}." msgstr "Vous pouvez étendre le service Bash en utilisant un enregistrement de configuration @code{home-bash-extension}, dont les champs correspondent à ceux de @code{home-bash-configuration} (@pxref{home-bash-configuration}). Le contenu des extensions seront ajoutées à la fin des fichiers de configuration Bash correspondants (@pxref{Bash Startup Files,,, bash, le manuel de référence de Bash}." #. type: deftp -#: guix-git/doc/guix.texi:37325 +#: guix-git/doc/guix.texi:37815 #, no-wrap msgid "{Data Type} home-bash-extension" msgstr "{Type de données} home-bash-extension" #. type: deftp -#: guix-git/doc/guix.texi:37327 +#: guix-git/doc/guix.texi:37817 msgid "Available @code{home-bash-extension} fields are:" msgstr "Les champs de @code{home-bash-extension} disponibles sont :" #. type: table -#: guix-git/doc/guix.texi:37333 +#: guix-git/doc/guix.texi:37823 msgid "Additional environment variables to set. These will be combined with the environment variables from other extensions and the base service to form one coherent block of environment variables." msgstr "Variables d'environnement supplémentaires à définir. Elles seront combinées aux variables d'environnement des autres extensions et du service de base pour former un bloc cohérent de variables d'environnement." #. type: table -#: guix-git/doc/guix.texi:37337 +#: guix-git/doc/guix.texi:37827 msgid "Additional aliases to set. These will be combined with the aliases from other extensions and the base service." msgstr "Alias supplémentaires à définir. Ils seront combinés aux alias des autres extensions et du service de base." #. type: table -#: guix-git/doc/guix.texi:37341 +#: guix-git/doc/guix.texi:37831 msgid "Additional text blocks to add to @file{.bash_profile}, which will be combined with text blocks from other extensions and the base service." msgstr "Blocs de texte supplémentaires à ajouter à @file{.bash_profile}, qui seront combinés avec les blocs de texte des autres extensions et du service de base." #. type: table -#: guix-git/doc/guix.texi:37345 +#: guix-git/doc/guix.texi:37835 msgid "Additional text blocks to add to @file{.bashrc}, which will be combined with text blocks from other extensions and the base service." msgstr "Blocs de texte supplémentaires à ajouter à @file{.bashrc}, qui seront combinés avec les blocs de texte des autres extensions et du service de base." #. type: table -#: guix-git/doc/guix.texi:37349 +#: guix-git/doc/guix.texi:37839 msgid "Additional text blocks to add to @file{.bash_logout}, which will be combined with text blocks from other extensions and the base service." msgstr "Blocs de texte supplémentaires à ajouter à @file{.bash_logout}, qui seront combinés avec les blocs de texte des autres extensions et du service de base." #. type: subsubheading -#: guix-git/doc/guix.texi:37353 +#: guix-git/doc/guix.texi:37843 #, no-wrap msgid "Zsh Home Service" msgstr "Services personnel Zsh" #. type: deftp -#: guix-git/doc/guix.texi:37355 +#: guix-git/doc/guix.texi:37845 #, no-wrap msgid "{Data Type} home-zsh-configuration" msgstr "{Type de données} home-zsh-configuration" #. type: deftp -#: guix-git/doc/guix.texi:37357 +#: guix-git/doc/guix.texi:37847 msgid "Available @code{home-zsh-configuration} fields are:" msgstr "Les champs de @code{home-zsh-configuration} disponibles sont :" #. type: item -#: guix-git/doc/guix.texi:37359 +#: guix-git/doc/guix.texi:37849 #, no-wrap msgid "@code{package} (default: @code{zsh}) (type: package)" msgstr "@code{package} (par défaut : @code{zsh}) (type : paquet)" #. type: table -#: guix-git/doc/guix.texi:37361 +#: guix-git/doc/guix.texi:37851 msgid "The Zsh package to use." msgstr "Le paquet Zsh à utiliser." #. type: item -#: guix-git/doc/guix.texi:37362 +#: guix-git/doc/guix.texi:37852 #, no-wrap msgid "@code{xdg-flavor?} (default: @code{#t}) (type: boolean)" msgstr "@code{xdg-flavor?} (par défaut : @code{#t}) (type : booléen)" #. type: table -#: guix-git/doc/guix.texi:37367 +#: guix-git/doc/guix.texi:37857 msgid "Place all the configs to @file{$XDG_CONFIG_HOME/zsh}. Makes @file{~/.zshenv} to set @env{ZDOTDIR} to @file{$XDG_CONFIG_HOME/zsh}. Shell startup process will continue with @file{$XDG_CONFIG_HOME/zsh/.zshenv}." msgstr "Place tous les fichiers de configuration dans @file{$XDG_CONFIG_HOME/zsh}. Cela fait initialiser @env{ZDOTDIR} à @file{$XDG_CONFIG_HOME/zsh} dans @file{~/.zshenv}. Le processus de démarrage du shell continuera avec @file{$XDG_CONFIG_HOME/zsh/.zshenv}." #. type: table -#: guix-git/doc/guix.texi:37370 +#: guix-git/doc/guix.texi:37860 msgid "Association list of environment variables to set for the Zsh session." msgstr "Une liste d'association de variables d'environnement à initialiser dans la session Zsh." #. type: item -#: guix-git/doc/guix.texi:37371 +#: guix-git/doc/guix.texi:37861 #, no-wrap msgid "@code{zshenv} (default: @code{()}) (type: text-config)" msgstr "@code{zshenv} (par défaut : @code{()}) (type : text-config)" #. type: table -#: guix-git/doc/guix.texi:37376 +#: guix-git/doc/guix.texi:37866 msgid "List of file-like objects, which will be added to @file{.zshenv}. Used for setting user's shell environment variables. Must not contain commands assuming the presence of tty or producing output. Will be read always. Will be read before any other file in @env{ZDOTDIR}." msgstr "Liste d'objets simili-fichiers qui seront ajoutés à @file{.zshenv}. C'est utilisé pour initialiser les variables d'environnement du shell. Elle ne doit pas contenir de commande qui suppose la présence d'un tty ou qui produise une sortie. Cela sera toujours lu, et toujours avant tout autre fichiers dans @env{ZDOTDIR}." #. type: item -#: guix-git/doc/guix.texi:37377 +#: guix-git/doc/guix.texi:37867 #, no-wrap msgid "@code{zprofile} (default: @code{()}) (type: text-config)" msgstr "@code{zprofile} (par défaut : @code{()}) (type : text-config)" #. type: table -#: guix-git/doc/guix.texi:37382 +#: guix-git/doc/guix.texi:37872 msgid "List of file-like objects, which will be added to @file{.zprofile}. Used for executing user's commands at start of login shell (In most cases the shell started on tty just after login). Will be read before @file{.zlogin}." msgstr "Liste d'objets simili-fichiers qui seront ajoutés à @file{.zprofile}. C'est utilisé pour exécuter des commandes au démarrage d'un shell de connexion (dans la plupart des cas le shell démarré sur un tty après la connexion). Elle sera lue avant @file{.zlogin}." #. type: item -#: guix-git/doc/guix.texi:37383 +#: guix-git/doc/guix.texi:37873 #, no-wrap msgid "@code{zshrc} (default: @code{()}) (type: text-config)" msgstr "@code{zshrc} (par défaut : @code{()}) (type : text-config)" #. type: table -#: guix-git/doc/guix.texi:37388 +#: guix-git/doc/guix.texi:37878 msgid "List of file-like objects, which will be added to @file{.zshrc}. Used for executing user's commands at start of interactive shell (The shell for interactive usage started by typing @code{zsh} or by terminal app or any other program)." msgstr "Liste d'objets simili-fichiers qui seront ajoutés à @file{.zshrc}. C'est utilisé pour exécuter des commandes au démarrage d'un shell interactif (le shell utilisé de manière interactive démarré en tapant @code{zsh} ou par votre application de terminal ou toute autre application)." #. type: item -#: guix-git/doc/guix.texi:37389 +#: guix-git/doc/guix.texi:37879 #, no-wrap msgid "@code{zlogin} (default: @code{()}) (type: text-config)" msgstr "@code{zlogin} (par défaut : @code{()}) (type : text-config)" #. type: table -#: guix-git/doc/guix.texi:37393 +#: guix-git/doc/guix.texi:37883 msgid "List of file-like objects, which will be added to @file{.zlogin}. Used for executing user's commands at the end of starting process of login shell." msgstr "Liste d'objets simili-fichiers qui seront ajoutés à @file{.zlogin}. C'est utilisé pour exécuter des commandes à la fin du processus de démarrage du shell de connexion." #. type: item -#: guix-git/doc/guix.texi:37394 +#: guix-git/doc/guix.texi:37884 #, no-wrap msgid "@code{zlogout} (default: @code{()}) (type: text-config)" msgstr "@code{zlogout} (par défaut : @code{()}) (type : text-config)" #. type: table -#: guix-git/doc/guix.texi:37399 +#: guix-git/doc/guix.texi:37889 msgid "List of file-like objects, which will be added to @file{.zlogout}. Used for executing user's commands at the exit of login shell. It won't be read in some cases (if the shell terminates by exec'ing another process for example)." msgstr "Liste d'objets simili-fichiers qui seront ajoutés à @file{.zlogout}. C'est utilisé pour exécuter des commandes à la sortie d'un shell de connexion. Elle ne sera pas lue dans certains cas (si le shell termine après avoir utilisé exec sur un autre processus par exemple)." #. type: node -#: guix-git/doc/guix.texi:37404 +#: guix-git/doc/guix.texi:37894 #, no-wrap msgid "Mcron Home Service" msgstr "Service personnel Mcron" #. type: subsection -#: guix-git/doc/guix.texi:37405 +#: guix-git/doc/guix.texi:37895 #, no-wrap msgid "Scheduled User's Job Execution" msgstr "Exécution de tâches planifiées personnelles" #. type: Plain text -#: guix-git/doc/guix.texi:37418 +#: guix-git/doc/guix.texi:37908 msgid "The @code{(gnu home services mcron)} module provides an interface to GNU@tie{}mcron, a daemon to run jobs at scheduled times (@pxref{Top,,, mcron, GNU@tie{}mcron}). The information about system's mcron is applicable here (@pxref{Scheduled Job Execution}), the only difference for home services is that they have to be declared in a @code{home-envirnoment} record instead of an @code{operating-system} record." msgstr "Le module @code{(gnu home services mcron)} fournit une interface pour GNU@tie{}mcron, un démon qui lance des tâches planifiées (@pxref{Top,,, mcron, GNU@tie{}mcron}). Les informations sur le mcron du système s'appliquent ici aussi (@pxref{Scheduled Job Execution}), la seule différence pour les services personnels et qu'ils doivent être déclarés dans un enregistrement @code{home-environment} au lieu d'un enregistrement @code{operating-system}." #. type: defvr -#: guix-git/doc/guix.texi:37419 +#: guix-git/doc/guix.texi:37909 #, no-wrap msgid "{Scheme Variable} home-mcron-service-type" msgstr "{Variable Scheme} home-mcron-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37423 +#: guix-git/doc/guix.texi:37913 msgid "This is the type of the @code{mcron} home service, whose value is an @code{home-mcron-configuration} object. It allows to manage scheduled tasks." msgstr "C'est le type du service personnel @code{mcron}, dont la valeur est un objet @code{home-mcron-configuration}. Il permet de gérer des tâches planifiées." #. type: deftp -#: guix-git/doc/guix.texi:37430 +#: guix-git/doc/guix.texi:37920 #, no-wrap msgid "{Data Type} home-mcron-configuration" msgstr "{Type de données} home-mcron-configuration" #. type: node -#: guix-git/doc/guix.texi:37444 +#: guix-git/doc/guix.texi:37934 #, no-wrap msgid "Shepherd Home Service" msgstr "Service Shepherd personnel" #. type: subsection -#: guix-git/doc/guix.texi:37445 -#, no-wrap -msgid "Managing User's Daemons" +#: guix-git/doc/guix.texi:37935 +#, fuzzy, no-wrap +#| msgid "Managing User's Daemons" +msgid "Managing User Daemons" msgstr "Gérer les démons personnels" +#. type: cindex +#: guix-git/doc/guix.texi:37937 +#, fuzzy, no-wrap +#| msgid "shepherd services" +msgid "shepherd services, for users" +msgstr "services shepherd" + +#. type: Plain text +#: guix-git/doc/guix.texi:37944 +msgid "The @code{(gnu home services shepherd)} module supports the definitions of per-user Shepherd services (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}). You extend @code{home-shepherd-service-type} with new services; Guix Home then takes care of starting the @code{shepherd} daemon for you when you log in, which in turns starts the services you asked for." +msgstr "" + #. type: defvr -#: guix-git/doc/guix.texi:37449 +#: guix-git/doc/guix.texi:37945 #, no-wrap msgid "{Scheme Variable} home-shepherd-service-type" msgstr "{Variable Scheme} home-shepherd-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37454 +#: guix-git/doc/guix.texi:37950 msgid "The service type for the userland Shepherd, which allows one to manage long-running processes or one-shot tasks. User's Shepherd is not an init process (PID 1), but almost all other information described in (@pxref{Shepherd Services}) is applicable here too." msgstr "Le type de service pour le shepherd en espace utilisateur, qui vous permet de gérer les processus longs ou les tâches uniques. Le shepherd personnel n'est pas un processus d'init (PID 1), mais presque toutes les information décrites dans @ref{Shepherd Services} sont applicables ici aussi." #. type: defvr -#: guix-git/doc/guix.texi:37459 +#: guix-git/doc/guix.texi:37955 #, fuzzy #| msgid "This is the service type that extensions target when they want to create shepherd services (@pxref{Service Types and Services}, for an example). Each extension must pass a list of @code{}. Its value must be a @code{shepherd-configuration}, as described below." msgid "This is the service type that extensions target when they want to create shepherd services (@pxref{Service Types and Services}, for an example). Each extension must pass a list of @code{}. Its value must be a @code{home-shepherd-configuration}, as described below." msgstr "C'est le type de service que les extensions ciblent lorqu'elles veulent créer un service shepherd (@pxref{Service Types and Services}, pour un exemple). Chaque extension doit passer une liste de @code{}. Sa valeur doit être un @code{shepherd-configuration}, décrit plus bas." #. type: deftp -#: guix-git/doc/guix.texi:37461 +#: guix-git/doc/guix.texi:37957 #, fuzzy, no-wrap #| msgid "{Data Type} shepherd-configuration" msgid "{Data Type} home-shepherd-configuration" msgstr "{Type de données} shepherd-configuration" #. type: item -#: guix-git/doc/guix.texi:37468 +#: guix-git/doc/guix.texi:37964 #, no-wrap msgid "auto-start? (default: @code{#t})" msgstr "auto-start? (par défaut : @code{#t})" #. type: table -#: guix-git/doc/guix.texi:37470 +#: guix-git/doc/guix.texi:37966 msgid "Whether or not to start Shepherd on first login." msgstr "Indique s'il faut lancer le Shepherd à la première connexion." #. type: section -#: guix-git/doc/guix.texi:37479 +#: guix-git/doc/guix.texi:37975 #, no-wrap msgid "Invoking @code{guix home}" msgstr "Invoquer @code{guix home}" #. type: Plain text -#: guix-git/doc/guix.texi:37484 +#: guix-git/doc/guix.texi:37980 msgid "Once you have written a home environment declaration (@pxref{Declaring the Home Environment,,,,}, it can be @dfn{instantiated} using the @command{guix home} command. The synopsis is:" msgstr "Une fois que vous avez écrit une déclaration d'environnement personnel (@pxref{Declaring the Home Environment,,,,}), elle peut être @dfn{instanciée} avec la commande @command{guix home}. Voici le résumé de la commande :" #. type: example -#: guix-git/doc/guix.texi:37487 +#: guix-git/doc/guix.texi:37983 #, no-wrap msgid "guix home @var{options}@dots{} @var{action} @var{file}\n" msgstr "guix home @var{options}@dots{} @var{action} @var{file}\n" #. type: Plain text -#: guix-git/doc/guix.texi:37494 +#: guix-git/doc/guix.texi:37990 msgid "@var{file} must be the name of a file containing a @code{home-environment} declaration. @var{action} specifies how the home environment is instantiated, but there are few auxiliary actions which don't instantiate it. Currently the following values are supported:" msgstr "@var{file} doit être le nom d'un fichier contenant une déclaration @code{home-environment}. @var{action} spécifie comment l'environnement personnel est instancié, mais il y a quelques actions supplémentaires qui ne l'instancient pas. Actuellement les valeurs suivantes sont prises en charge :" #. type: table -#: guix-git/doc/guix.texi:37499 +#: guix-git/doc/guix.texi:37995 msgid "Display available home service type definitions that match the given regular expressions, sorted by relevance:" msgstr "Affiche les définitions des types de services personnels disponibles qui correspondent aux expressions régulières données, triées par pertinence :" #. type: cindex -#: guix-git/doc/guix.texi:37501 +#: guix-git/doc/guix.texi:37997 #, no-wrap msgid "shell-profile" msgstr "shell-profile" #. type: example -#: guix-git/doc/guix.texi:37513 -#, no-wrap +#: guix-git/doc/guix.texi:38008 +#, fuzzy, no-wrap +#| msgid "" +#| "$ guix home search shell\n" +#| "name: home-shell-profile\n" +#| "location: gnu/home/services/shells.scm:73:2\n" +#| "extends: home-files\n" +#| "description: Create `~/.profile', which is used for environment initialization\n" +#| "+ of POSIX compatible login shells. Can be extended with a list of strings or\n" +#| "+ gexps.\n" +#| "relevance: 6\n" +#| "\n" msgid "" "$ guix home search shell\n" "name: home-shell-profile\n" -"location: gnu/home/services/shells.scm:73:2\n" +"location: gnu/home/services/shells.scm:100:2\n" "extends: home-files\n" -"description: Create `~/.profile', which is used for environment initialization\n" -"+ of POSIX compatible login shells. Can be extended with a list of strings or\n" -"+ gexps.\n" +"description: Create `~/.profile', which is used for environment initialization of POSIX compliant login shells.\n" +"+ This service type can be extended with a list of file-like objects.\n" "relevance: 6\n" "\n" msgstr "" @@ -69454,73 +70437,43 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:37519 -#, no-wrap -msgid "" -"name: home-zsh-plugin-manager\n" -"location: gnu/home/services/shellutils.scm:28:2\n" -"extends: home-zsh home-profile\n" -"description: Install plugins in profile and configure Zsh to load them.\n" -"relevance: 1\n" -"\n" -msgstr "" -"name: home-zsh-plugin-manager\n" -"location: gnu/home/services/shellutils.scm:28:2\n" -"extends: home-zsh home-profile\n" -"description: Install plugins in profile and configure Zsh to load them.\n" -"relevance: 1\n" -"\n" - -#. type: example -#: guix-git/doc/guix.texi:37526 -#, no-wrap -msgid "" -"name: home-zsh-direnv\n" -"location: gnu/home/services/shellutils.scm:69:2\n" -"extends: home-profile home-zsh\n" -"description: Enables `direnv' for `zsh'. Adds hook to `.zshrc' and installs a\n" -"+ package in the profile.\n" -"relevance: 1\n" -"\n" -msgstr "" -"name: home-zsh-direnv\n" -"location: gnu/home/services/shellutils.scm:69:2\n" -"extends: home-profile home-zsh\n" -"description: Enables `direnv' for `zsh'. Adds hook to `.zshrc' and installs a\n" -"+ package in the profile.\n" -"relevance: 1\n" -"\n" - -#. type: example -#: guix-git/doc/guix.texi:37535 -#, no-wrap +#: guix-git/doc/guix.texi:38014 +#, fuzzy, no-wrap +#| msgid "" +#| "name: home-zsh\n" +#| "location: gnu/home/services/shells.scm:236:2\n" +#| "extends: home-files home-profile\n" +#| "description: Install and configure Zsh.\n" +#| "relevance: 1\n" +#| "\n" msgid "" -"name: home-zsh-autosuggestions\n" -"location: gnu/home/services/shellutils.scm:43:2\n" -"extends: home-zsh-plugin-manager home-zsh\n" -"description: Enables Fish-like fast/unobtrusive autosuggestions for `zsh' and\n" -"+ sets reasonable default values for some plugin's variables to improve perfomance\n" -"+ and adjust behavior: `(history completion)' is set for strategy, manual rebind\n" -"+ and async are enabled.\n" -"relevance: 1\n" +"name: home-fish\n" +"location: gnu/home/services/shells.scm:640:2\n" +"extends: home-files home-profile\n" +"description: Install and configure Fish, the friendly interactive shell.\n" +"relevance: 3\n" "\n" msgstr "" -"name: home-zsh-autosuggestions\n" -"location: gnu/home/services/shellutils.scm:43:2\n" -"extends: home-zsh-plugin-manager home-zsh\n" -"description: Enables Fish-like fast/unobtrusive autosuggestions for `zsh' and\n" -"+ sets reasonable default values for some plugin's variables to improve perfomance\n" -"+ and adjust behavior: `(history completion)' is set for strategy, manual rebind\n" -"+ and async are enabled.\n" +"name: home-zsh\n" +"location: gnu/home/services/shells.scm:236:2\n" +"extends: home-files home-profile\n" +"description: Install and configure Zsh.\n" "relevance: 1\n" "\n" #. type: example -#: guix-git/doc/guix.texi:37541 -#, no-wrap +#: guix-git/doc/guix.texi:38020 +#, fuzzy, no-wrap +#| msgid "" +#| "name: home-zsh\n" +#| "location: gnu/home/services/shells.scm:236:2\n" +#| "extends: home-files home-profile\n" +#| "description: Install and configure Zsh.\n" +#| "relevance: 1\n" +#| "\n" msgid "" "name: home-zsh\n" -"location: gnu/home/services/shells.scm:236:2\n" +"location: gnu/home/services/shells.scm:290:2\n" "extends: home-files home-profile\n" "description: Install and configure Zsh.\n" "relevance: 1\n" @@ -69534,13 +70487,20 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:37547 -#, no-wrap +#: guix-git/doc/guix.texi:38026 +#, fuzzy, no-wrap +#| msgid "" +#| "name: home-bash\n" +#| "location: gnu/home/services/shells.scm:388:2\n" +#| "extends: home-files home-profile\n" +#| "description: Install and configure Bash.\n" +#| "relevance: 1\n" +#| "\n" msgid "" "name: home-bash\n" -"location: gnu/home/services/shells.scm:388:2\n" +"location: gnu/home/services/shells.scm:508:2\n" "extends: home-files home-profile\n" -"description: Install and configure Bash.\n" +"description: Install and configure GNU Bash.\n" "relevance: 1\n" "\n" msgstr "" @@ -69552,49 +70512,60 @@ msgstr "" "\n" #. type: table -#: guix-git/doc/guix.texi:37563 -msgid "Build the home environment described in @var{file}, and switch to it. Switching means that the activation script will be evaluated and (in basic scenario) symlinks to configuration files generated from @code{home-environment} declaration will be created in @file{~}. If the file with the same path already exists in home folder it will be moved to @file{~/TIMESTAMP-guix-home-legacy-configs-backup}, where TIMESTAMP is a current UNIX epoch time." +#: guix-git/doc/guix.texi:38033 +#, fuzzy +#| msgid "As for @command{guix package --search}, the result is written in @code{recutils} format, which makes it easy to filter the output (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." +msgid "As for @command{guix search}, the result is written in @code{recutils} format, which makes it easy to filter the output (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." +msgstr "Comme pour @command{guix package --search}, le résultat est écrit au format @code{recutils}, ce qui rend facile le filtrage de la sortie (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." + +#. type: table +#: guix-git/doc/guix.texi:38042 +#, fuzzy +#| msgid "Build the home environment described in @var{file}, and switch to it. Switching means that the activation script will be evaluated and (in basic scenario) symlinks to configuration files generated from @code{home-environment} declaration will be created in @file{~}. If the file with the same path already exists in home folder it will be moved to @file{~/TIMESTAMP-guix-home-legacy-configs-backup}, where TIMESTAMP is a current UNIX epoch time." +msgid "Build the home environment described in @var{file}, and switch to it. Switching means that the activation script will be evaluated and (in basic scenario) symlinks to configuration files generated from @code{home-environment} declaration will be created in @file{~}. If the file with the same path already exists in home folder it will be moved to @file{~/@var{timestamp}-guix-home-legacy-configs-backup}, where @var{timestamp} is a current UNIX epoch time." msgstr "Construit l'environnement personnel décrit dans @var{file} et y bascule. Le basculement signifie que le script d'activation sera évalué et (dans le scénario de base) les liens symboliques vers les fichiesr de configuration générés dans la déclaration @code{home-environment} seront créés dans @file{~}. Si un fichier avec le même chemin existe dans le répertoire personnel il sera déplacé vers @file{~/TIMESTAMP-guix-home-legacy-confis-backup}, où TIMESTAMP est l'epoch UNIX actuelle." #. type: quotation -#: guix-git/doc/guix.texi:37568 +#: guix-git/doc/guix.texi:38047 msgid "It is highly recommended to run @command{guix pull} once before you run @command{guix home reconfigure} for the first time (@pxref{Invoking guix pull})." msgstr "Il est grandement recommandé de lancer @command{guix pull} une fois avant de lancer @command{guix home reconfigure} pour la première fois (@pxref{Invoking guix pull})." #. type: table -#: guix-git/doc/guix.texi:37575 -msgid "This effects all the configuration specified in @var{file}. The command starts Shepherd services specified in @var{file} that are not currently running; if a service is currently running, this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop X} or @code{herd restart X})." +#: guix-git/doc/guix.texi:38054 +#, fuzzy +#| msgid "This effects all the configuration specified in @var{file}. The command starts Shepherd services specified in @var{file} that are not currently running; if a service is currently running, this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop X} or @code{herd restart X})." +msgid "This effects all the configuration specified in @var{file}. The command starts Shepherd services specified in @var{file} that are not currently running; if a service is currently running, this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop @var{service}} or @code{herd restart @var{service}})." msgstr "Cela met en application toute la configuration spécifiée dans @var{file}. La commande démarre les services Shepherd spécifiés dans @var{file} qui ne sont pas actuellement lancés ; si un service est actuellement exécuté cette commande s'arrange pour qu'il soit mis à jour la prochaine fois qu'il est stoppé (p.@: ex@: par @code{herd stop X} ou @code{herd restart X})." #. type: table -#: guix-git/doc/guix.texi:37581 +#: guix-git/doc/guix.texi:38060 msgid "This command creates a new generation whose number is one greater than the current generation (as reported by @command{guix home list-generations}). If that generation already exists, it will be overwritten. This behavior mirrors that of @command{guix package} (@pxref{Invoking guix package})." msgstr "Cette commande crée une nouvelle génération dont le numéro est un de plus que la génération actuelle (rapportée par @command{guix home list-generations}). Si cette génération existe déjà, elle sera réécrite. Ce comportement correspond à celui de @command{guix package} (@pxref{Invoking guix package})." #. type: cindex -#: guix-git/doc/guix.texi:37582 +#: guix-git/doc/guix.texi:38061 #, no-wrap msgid "provenance tracking, of the home environment" msgstr "suivi de provenance, pour l'environnement personnel" #. type: table -#: guix-git/doc/guix.texi:37587 +#: guix-git/doc/guix.texi:38066 msgid "Upon completion, the new home is deployed under @file{~/.guix-home}. This directory contains @dfn{provenance meta-data}: the list of channels in use (@pxref{Channels}) and @var{file} itself, when available. You can view the provenance information by running:" msgstr "À la fin, le nouveau dossier personel est déployé dans @file{~/.guix-home}. Ce répertoire contient les @dfn{métadonnées de provenance} : la liste des canaux utilisés (@pxref{Channels}) et le @var{fichier} lui-même, s'il est disponible. Vous pouvez voir les informations de provenance avec :" #. type: example -#: guix-git/doc/guix.texi:37590 +#: guix-git/doc/guix.texi:38069 #, no-wrap msgid "guix home describe\n" msgstr "guix home describe\n" #. type: table -#: guix-git/doc/guix.texi:37596 +#: guix-git/doc/guix.texi:38075 msgid "This information is useful should you later want to inspect how this particular generation was built. In fact, assuming @var{file} is self-contained, you can later rebuild generation @var{n} of your home environment with:" msgstr "Cette information est utile si vous voulez plus tard inspecter comment une génération particulière a été construite. En fait, en supposant que @var{file} est auto-contenu, vous pouvez reconstruire la génération @var{n} de votre environnement personnel avec :" #. type: example -#: guix-git/doc/guix.texi:37602 +#: guix-git/doc/guix.texi:38081 #, no-wrap msgid "" "guix time-machine \\\n" @@ -69610,110 +70581,110 @@ msgstr "" "\n" #. type: table -#: guix-git/doc/guix.texi:37609 +#: guix-git/doc/guix.texi:38088 msgid "You can think of it as some sort of built-in version control! Your home is not just a binary artifact: @emph{it carries its own source}." msgstr "Vous pouvez considérer cela comme une sorte de contrôle de version intégré ! Votre dossier personnel n'est pas seulement un artefact binaire : @emph{il contient ses propres sources}." #. type: cindex -#: guix-git/doc/guix.texi:37615 +#: guix-git/doc/guix.texi:38094 #, no-wrap msgid "home generations" msgstr "générations du dossier personnel" #. type: table -#: guix-git/doc/guix.texi:37618 +#: guix-git/doc/guix.texi:38097 msgid "Switch to an existing home generation. This action atomically switches the home profile to the specified home generation." msgstr "Bascule à une génération du dossier personnel existante. Cette action bascule de manière atomique à la génération du dossier personnel spécifiée." #. type: table -#: guix-git/doc/guix.texi:37622 +#: guix-git/doc/guix.texi:38101 msgid "The target generation can be specified explicitly by its generation number. For example, the following invocation would switch to home generation 7:" msgstr "La génération cible peut être spécifiée explicitement par son numéro de génération. Par exemple, l'invocation suivante passerait à la génération 7 du dossier personnel :" #. type: example -#: guix-git/doc/guix.texi:37625 +#: guix-git/doc/guix.texi:38104 #, no-wrap msgid "guix home switch-generation 7\n" msgstr "guix home switch-generation 7\n" #. type: example -#: guix-git/doc/guix.texi:37636 +#: guix-git/doc/guix.texi:38115 #, no-wrap msgid "guix home switch-generation -- -1\n" msgstr "guix home switch-generation -- -1\n" #. type: table -#: guix-git/doc/guix.texi:37645 +#: guix-git/doc/guix.texi:38124 msgid "Switch to the preceding home generation. This is the inverse of @command{reconfigure}, and it is exactly the same as invoking @command{switch-generation} with an argument of @code{-1}." msgstr "Passe à la génération précédente du dossier personnel. C'est le contraire de @command{reconfigure}, et c'est exactement comme invoquer @command{switch-generation} avec pour argument @code{-1}." #. type: cindex -#: guix-git/doc/guix.texi:37647 +#: guix-git/doc/guix.texi:38126 #, no-wrap msgid "deleting home generations" msgstr "supprimer des générations du dossier personnel" #. type: table -#: guix-git/doc/guix.texi:37652 +#: guix-git/doc/guix.texi:38131 msgid "Delete home generations, making them candidates for garbage collection (@pxref{Invoking guix gc}, for information on how to run the ``garbage collector'')." msgstr "Supprimer des générations du dossier personnel, ce qui les rend disponibles pour le ramasse-miettes (@pxref{Invoking guix gc}, pour des informations sur la manière de lancer le « ramasse-miettes »)." #. type: table -#: guix-git/doc/guix.texi:37656 +#: guix-git/doc/guix.texi:38135 msgid "This works in the same way as @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). With no arguments, all home generations but the current one are deleted:" msgstr "Cela fonctionne comme pour @samp{guix package --delete-generations} (@pxref{Invoking guix package, @code{--delete-generations}}). Avec aucun argument, toutes les générations du dossier personnel sauf la génération actuelle sont supprimées :" #. type: example -#: guix-git/doc/guix.texi:37659 +#: guix-git/doc/guix.texi:38138 #, no-wrap msgid "guix home delete-generations\n" msgstr "guix home delete-generations\n" #. type: table -#: guix-git/doc/guix.texi:37663 +#: guix-git/doc/guix.texi:38142 msgid "You can also select the generations you want to delete. The example below deletes all the home generations that are more than two months old:" msgstr "Vous pouvez aussi choisir les générations que vous voulez supprimer. L'exemple plus bas supprime toutes les génération du dossier personnel plus vieilles que deux mois :" #. type: example -#: guix-git/doc/guix.texi:37666 +#: guix-git/doc/guix.texi:38145 #, no-wrap msgid "guix home delete-generations 2m\n" msgstr "guix home delete-generations 2m\n" #. type: table -#: guix-git/doc/guix.texi:37672 +#: guix-git/doc/guix.texi:38151 msgid "Build the derivation of the home environment, which includes all the configuration files and programs needed. This action does not actually install anything." msgstr "Construit la dérivation de l'environnement personnel, ce qui comprend tous les fichiers de configuration et les programmes requis. Cette action n'installe rien." #. type: table -#: guix-git/doc/guix.texi:37676 +#: guix-git/doc/guix.texi:38155 msgid "Describe the current home generation: its file name, as well as provenance information when available." msgstr "Décrit la génération du dossier personnel actuel : son nom de fichier, ainsi que les informations de provenance si elles sont disponibles." #. type: table -#: guix-git/doc/guix.texi:37682 +#: guix-git/doc/guix.texi:38161 msgid "List a summary of each generation of the home environment available on disk, in a human-readable way. This is similar to the @option{--list-generations} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "Affiche un résumé de chaque génération de l'environnement personnel disponible sur le disque, dans un format lisible pour un humain. C'est similaire à l'option @option{--list-generations} de @command{guix package} (@pxref{Invoking guix package})." #. type: example -#: guix-git/doc/guix.texi:37690 +#: guix-git/doc/guix.texi:38169 #, no-wrap msgid "$ guix home list-generations 10d\n" msgstr "$ guix home list-generations 10d\n" #. type: item -#: guix-git/doc/guix.texi:37692 +#: guix-git/doc/guix.texi:38171 #, no-wrap msgid "import" msgstr "import" #. type: table -#: guix-git/doc/guix.texi:37699 +#: guix-git/doc/guix.texi:38178 msgid "Generate a @dfn{home environment} from the packages in the default profile and configuration files found in the user's home directory. The configuration files will be copied to the specified directory, and a @file{home-configuration.scm} will be populated with the home environment. Note that not every home service that exists is supported (@pxref{Home Services})." msgstr "Génère un @dfn{environnement personnel} à partir des paquets du profil par défaut et des fichiers de configuration qui se trouvent dans votre répertoire personnel. Les fichiers de configuration sont copiés vers le répertoire donné, et un fichier @file{home-configuration.scm} sera rempli avec l'environnement personnel. Remarquez que les services personnels existants ne sont pas tous pris en charge (@pxref{Home Services})." #. type: example -#: guix-git/doc/guix.texi:37703 +#: guix-git/doc/guix.texi:38182 #, no-wrap msgid "" "$ guix home import ~/guix-config\n" @@ -69723,52 +70694,64 @@ msgstr "" "guix home: « /home/alice/guix-config » rempli avec tous les fichiers de configuration du dossier personnel\n" #. type: table -#: guix-git/doc/guix.texi:37718 +#: guix-git/doc/guix.texi:38197 msgid "Consider the home-environment @var{expr} evaluates to. This is an alternative to specifying a file which evaluates to a home environment." msgstr "Considère l'environnement personnel en lequel s'évalue @var{expr}. C'est une alternative à la spécification d'un fichier qui s'évalue en un environnement personnel." +#. type: table +#: guix-git/doc/guix.texi:38200 +#, fuzzy +#| msgid "Instruct @command{guix system reconfigure} to allow system downgrades." +msgid "Instruct @command{guix home reconfigure} to allow system downgrades." +msgstr "Dit à @command{guix system reconfigure} de permettre le retour en arrière du système." + +#. type: table +#: guix-git/doc/guix.texi:38207 +msgid "Just like @command{guix system}, @command{guix home reconfigure}, by default, prevents you from downgrading your home to older or unrelated revisions compared to the channel revisions that were used to deploy it---those shown by @command{guix home describe}. Using @option{--allow-downgrades} allows you to bypass that check, at the risk of downgrading your home---be careful!" +msgstr "" + #. type: cindex -#: guix-git/doc/guix.texi:37724 +#: guix-git/doc/guix.texi:38213 #, no-wrap msgid "documentation, searching for" msgstr "documentation, recherche" #. type: cindex -#: guix-git/doc/guix.texi:37725 +#: guix-git/doc/guix.texi:38214 #, no-wrap msgid "searching for documentation" msgstr "chercher de la documentation" #. type: cindex -#: guix-git/doc/guix.texi:37726 +#: guix-git/doc/guix.texi:38215 #, no-wrap msgid "Info, documentation format" msgstr "Info, format de documentation" #. type: cindex -#: guix-git/doc/guix.texi:37727 +#: guix-git/doc/guix.texi:38216 #, no-wrap msgid "man pages" msgstr "man, pages de manuel" #. type: cindex -#: guix-git/doc/guix.texi:37728 +#: guix-git/doc/guix.texi:38217 #, no-wrap msgid "manual pages" msgstr "pages de manuel" #. type: Plain text -#: guix-git/doc/guix.texi:37735 +#: guix-git/doc/guix.texi:38224 msgid "In most cases packages installed with Guix come with documentation. There are two main documentation formats: ``Info'', a browsable hypertext format used for GNU software, and ``manual pages'' (or ``man pages''), the linear documentation format traditionally found on Unix. Info manuals are accessed with the @command{info} command or with Emacs, and man pages are accessed using @command{man}." msgstr "Dans la plupart des cas les paquets installés avec Guix ont une documentation. Il y a deux formats de documentation principaux : « Info », un format hypertexte navigable utilisé par les logiciels GNU et les « pages de manuel » (ou « pages de man »), le format de documentation linéaire traditionnel chez Unix. Les manuels Info sont disponibles via la commande @command{info} ou avec Emacs, et les pages de man sont accessibles via la commande @command{man}." #. type: Plain text -#: guix-git/doc/guix.texi:37739 +#: guix-git/doc/guix.texi:38228 msgid "You can look for documentation of software installed on your system by keyword. For example, the following command searches for information about ``TLS'' in Info manuals:" msgstr "Vous pouvez chercher de la documentation pour les logiciels installés sur votre système par mot-clef. Par exemple, la commande suivante recherche des informations sur « TLS » dans les manuels Info :" #. type: example -#: guix-git/doc/guix.texi:37747 +#: guix-git/doc/guix.texi:38236 #, no-wrap msgid "" "$ info -k TLS\n" @@ -69786,12 +70769,12 @@ msgstr "" "@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:37753 +#: guix-git/doc/guix.texi:38242 msgid "The command below searches for the same keyword in man pages@footnote{The database searched by @command{man -k} is only created in profiles that contain the @code{man-db} package.}:" msgstr "La commande ci-dessous recherche le même mot-clé dans les pages de manuel@footnote{La base de donnée parcourue par @command{man -k} est uniquement créée dans les profils qui contiennent le paquet @code{man-db}.} :" #. type: example -#: guix-git/doc/guix.texi:37759 +#: guix-git/doc/guix.texi:38248 #, no-wrap msgid "" "$ man -k TLS\n" @@ -69805,97 +70788,97 @@ msgstr "" "@dots {}\n" #. type: Plain text -#: guix-git/doc/guix.texi:37765 +#: guix-git/doc/guix.texi:38254 msgid "These searches are purely local to your computer so you have the guarantee that documentation you find corresponds to what you have actually installed, you can access it off-line, and your privacy is respected." msgstr "Ces recherches sont purement locales à votre ordinateur donc vous savez que la documentation trouvée correspond à ce qui est effectivement installé, vous pouvez y accéder hors ligne et votre vie privée est préservée." #. type: Plain text -#: guix-git/doc/guix.texi:37768 +#: guix-git/doc/guix.texi:38257 msgid "Once you have these results, you can view the relevant documentation by running, say:" msgstr "Une fois que vous avez ces résultats, vous pouvez visualiser la documentation appropriée avec, disons :" #. type: example -#: guix-git/doc/guix.texi:37771 +#: guix-git/doc/guix.texi:38260 #, no-wrap msgid "$ info \"(gnutls)Core TLS API\"\n" msgstr "$ info \"(gnutls)Core TLS API\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:37775 +#: guix-git/doc/guix.texi:38264 msgid "or:" msgstr "ou :" #. type: example -#: guix-git/doc/guix.texi:37778 +#: guix-git/doc/guix.texi:38267 #, no-wrap msgid "$ man certtool\n" msgstr "$ man certtool\n" #. type: Plain text -#: guix-git/doc/guix.texi:37786 +#: guix-git/doc/guix.texi:38275 msgid "Info manuals contain sections and indices as well as hyperlinks like those found in Web pages. The @command{info} reader (@pxref{Top, Info reader,, info-stnd, Stand-alone GNU Info}) and its Emacs counterpart (@pxref{Misc Help,,, emacs, The GNU Emacs Manual}) provide intuitive key bindings to navigate manuals. @xref{Getting Started,,, info, Info: An Introduction}, for an introduction to Info navigation." msgstr "Les manuels Info contiennent des sections et des indexs ainsi que des hyperliens comme ce qu'on trouve sur les pages Web. Le lecteur @command{info} (@pxref{Top, Info reader,, info-stnd, Stand-alone GNU Info}) et sa contre-partie dans Emacs (@pxref{Misc Help,,, emacs, The GNU Emacs Manual}) fournissent des raccourcis claviers intuitifs pour naviguer dans les manuels @xref{Getting Started,,, info, Info: An Introduction} pour trouver une introduction sur la navigation dans info." #. type: cindex -#: guix-git/doc/guix.texi:37790 +#: guix-git/doc/guix.texi:38279 #, no-wrap msgid "debugging files" msgstr "fichiers de débogage" #. type: Plain text -#: guix-git/doc/guix.texi:37796 +#: guix-git/doc/guix.texi:38285 msgid "Program binaries, as produced by the GCC compilers for instance, are typically written in the ELF format, with a section containing @dfn{debugging information}. Debugging information is what allows the debugger, GDB, to map binary code to source code; it is required to debug a compiled program in good conditions." msgstr "Les binaires des programmes, produits par les compilateurs GCC par exemple, sont typiquement écrits au format ELF, avec une section contenant des @dfn{informations de débogage}. Les informations de débogage sont ce qui permet au débogueur, GDB, de relier le code binaire et le code source ; elles sont requises pour déboguer un programme compilé dans de bonnes conditions." #. type: Plain text -#: guix-git/doc/guix.texi:37800 +#: guix-git/doc/guix.texi:38289 msgid "This chapter explains how to use separate debug info when packages provide it, and how to rebuild packages with debug info when it's missing." msgstr "Ce chapitre explique comme utiliser les information de débogages séparées quand un paquet ne les fournit pas, et comme reconstruire un paquet avec les informations de débogage manquantes." #. type: Plain text -#: guix-git/doc/guix.texi:37816 +#: guix-git/doc/guix.texi:38305 msgid "The problem with debugging information is that is takes up a fair amount of disk space. For example, debugging information for the GNU C Library weighs in at more than 60 MiB@. Thus, as a user, keeping all the debugging info of all the installed programs is usually not an option. Yet, space savings should not come at the cost of an impediment to debugging---especially in the GNU system, which should make it easier for users to exert their computing freedom (@pxref{GNU Distribution})." msgstr "Le problème avec les informations de débogage est qu'elles prennent pas mal de place sur le disque. Par exemple, les informations de débogage de la bibliothèque C de GNU prend plus de 60 Mo. Ainsi, en tant qu'utilisateur, garder toutes les informations de débogage de tous les programmes installés n'est souvent pas une possibilité. Cependant, l'économie d'espace ne devrait pas empêcher le débogage — en particulier, dans le système GNU, qui devrait faciliter pour ses utilisateurs l'exercice de leurs libertés (@pxref{Distribution GNU})." #. type: Plain text -#: guix-git/doc/guix.texi:37823 +#: guix-git/doc/guix.texi:38312 msgid "Thankfully, the GNU Binary Utilities (Binutils) and GDB provide a mechanism that allows users to get the best of both worlds: debugging information can be stripped from the binaries and stored in separate files. GDB is then able to load debugging information from those files, when they are available (@pxref{Separate Debug Files,,, gdb, Debugging with GDB})." msgstr "Heureusement, les utilitaires binaires de GNU (Binutils) et GDB fournissent un mécanisme qui permet aux utilisateurs d'avoir le meilleur des deux mondes : les informations de débogage peuvent être nettoyées des binaires et stockées dans des fichiers séparés. GDB peut ensuite charger les informations de débogage depuis ces fichiers, lorsqu'elles sont disponibles (@pxref{Separate Debug Files,,, gdb, Debugging with GDB})." #. type: Plain text -#: guix-git/doc/guix.texi:37831 +#: guix-git/doc/guix.texi:38320 msgid "The GNU distribution takes advantage of this by storing debugging information in the @code{lib/debug} sub-directory of a separate package output unimaginatively called @code{debug} (@pxref{Packages with Multiple Outputs}). Users can choose to install the @code{debug} output of a package when they need it. For instance, the following command installs the debugging information for the GNU C Library and for GNU Guile:" msgstr "La distribution GNU se sert de cela pour stocker les informations de débogage dans le sous-répertoire @code{lib/debug} d'une sortie séparée du paquet appelée sans grande imagination @code{debug} (@pxref{Packages with Multiple Outputs}). Les utilisateurs peuvent choisir d'installer la sortie @code{debug} d'un paquet lorsqu'ils en ont besoin. Par exemple, la commande suivante installe les informations de débogage pour la bibliothèque C de GNU et pour GNU Guile :" #. type: example -#: guix-git/doc/guix.texi:37834 +#: guix-git/doc/guix.texi:38323 #, no-wrap msgid "guix install glibc:debug guile:debug\n" msgstr "guix install glibc:debug guile:debug\n" #. type: Plain text -#: guix-git/doc/guix.texi:37840 +#: guix-git/doc/guix.texi:38329 msgid "GDB must then be told to look for debug files in the user's profile, by setting the @code{debug-file-directory} variable (consider setting it from the @file{~/.gdbinit} file, @pxref{Startup,,, gdb, Debugging with GDB}):" msgstr "On doit ensuite dire à GDB de chercher les fichiers de débogage dans le profil de l'utilisateur, en remplissant la variable @code{debug-file-directory} (vous pourriez aussi l'instancier depuis le fichier @file{~/.gdbinit}, @pxref{Startup,,, gdb, Debugging with GDB}) :" #. type: example -#: guix-git/doc/guix.texi:37843 +#: guix-git/doc/guix.texi:38332 #, no-wrap msgid "(gdb) set debug-file-directory ~/.guix-profile/lib/debug\n" msgstr "(gdb) set debug-file-directory ~/.guix-profile/lib/debug\n" #. type: Plain text -#: guix-git/doc/guix.texi:37847 +#: guix-git/doc/guix.texi:38336 msgid "From there on, GDB will pick up debugging information from the @file{.debug} files under @file{~/.guix-profile/lib/debug}." msgstr "À partir de là, GDB récuperera les informations de débogage des fichiers @file{.debug} sous @file{~/.guix-profile/lib/debug}." #. type: Plain text -#: guix-git/doc/guix.texi:37852 +#: guix-git/doc/guix.texi:38341 msgid "Below is an alternative GDB script which is useful when working with other profiles. It takes advantage of the optional Guile integration in GDB. This snippet is included by default on Guix System in the @file{~/.gdbinit} file." msgstr "" #. type: example -#: guix-git/doc/guix.texi:37860 +#: guix-git/doc/guix.texi:38349 #, no-wrap msgid "" "guile\n" @@ -69907,32 +70890,32 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37868 +#: guix-git/doc/guix.texi:38357 msgid "In addition, you will most likely want GDB to be able to show the source code being debugged. To do that, you will have to unpack the source code of the package of interest (obtained with @code{guix build --source}, @pxref{Invoking guix build}), and to point GDB to that source directory using the @code{directory} command (@pxref{Source Path, @code{directory},, gdb, Debugging with GDB})." msgstr "EN plus, vous voudrez sans doute que GDB puisse montrer le code source débogué. Pour cela, vous devrez désarchiver le code source du paquet qui vous intéresse (obtenu via @code{guix build --source}, @pxref{Invoking guix build}) et pointer GDB vers ce répertoire des sources avec la commande @code{directory} (@pxref{Source Path, @code{directory},, gdb, Debugging with GDB})." #. type: Plain text -#: guix-git/doc/guix.texi:37876 +#: guix-git/doc/guix.texi:38365 msgid "The @code{debug} output mechanism in Guix is implemented by the @code{gnu-build-system} (@pxref{Build Systems}). Currently, it is opt-in---debugging information is available only for the packages with definitions explicitly declaring a @code{debug} output. To check whether a package has a @code{debug} output, use @command{guix package --list-available} (@pxref{Invoking guix package})." msgstr "Le mécanisme de sortie @code{debug} dans Guix est implémenté par le @code{gnu-build-system} (@pxref{Build Systems}). Actuellement, ce n'est pas obligatoire — les informations de débogage sont disponibles uniquement si les définitions déclarent explicitement une sortie @code{debug}. Cela pourrait être modifié tout en permettant aux paquets de s'en passer dans le futur si nos serveurs de construction peuvent tenir la charge. Pour vérifier si un paquet a une sortie @code{debug}, utilisez @command{guix package --list-available} (@pxref{Invoquer guix package})." #. type: Plain text -#: guix-git/doc/guix.texi:37878 +#: guix-git/doc/guix.texi:38367 msgid "Read on for how to deal with packages lacking a @code{debug} output." msgstr "Continuez à lire pour apprendre comment gérer les paquets qui n'ont pas de sortie @code{debug}." #. type: Plain text -#: guix-git/doc/guix.texi:37890 +#: guix-git/doc/guix.texi:38379 msgid "As we saw above, some packages, but not all, provide debugging info in a @code{debug} output. What can you do when debugging info is missing? The @option{--with-debug-info} option provides a solution to that: it allows you to rebuild the package(s) for which debugging info is missing---and only those---and to graft those onto the application you're debugging. Thus, while it's not as fast as installing a @code{debug} output, it is relatively inexpensive." msgstr "Comme nous l'avons montré, certains paquets, mais pas tous, fournissent des informations de débogage dans une sortie @code{debug}. Que faire lorsque les informations de débogage sont manquantes ? L'option @option{--with-debug-info} fournit une solution à cela : il vous permet de reconstruire les paquets pour lesquels les informations de débogages sont manquantes --- et seulement ceux-là --- et les greffe sur les applications que vous déboguez. Ainsi, bien que ce ne soit pas aussi rapide qu'installer la sortie @code{debug}, ça demande relativement peu de choses." #. type: Plain text -#: guix-git/doc/guix.texi:37895 +#: guix-git/doc/guix.texi:38384 msgid "Let's illustrate that. Suppose you're experiencing a bug in Inkscape and would like to see what's going on in GLib, a library that's deep down in its dependency graph. As it turns out, GLib does not have a @code{debug} output and the backtrace GDB shows is all sadness:" msgstr "Illustrons cela. Supposons que vous rencontriez un bogue dans Inkscape et que vous souhaitiez voir ce qui se passe dans GLib, une bibliothèque assez loin dans le graphe de dépendances. Il se trouve que GLib n'a pas de sortie @code{debug} et la trace de débogage de GDB est toute triste :" #. type: example -#: guix-git/doc/guix.texi:37906 +#: guix-git/doc/guix.texi:38395 #, no-wrap msgid "" "(gdb) bt\n" @@ -69956,17 +70939,17 @@ msgstr "" " at dl-init.c:118\n" #. type: Plain text -#: guix-git/doc/guix.texi:37910 +#: guix-git/doc/guix.texi:38399 msgid "To address that, you install Inkscape linked against a variant GLib that contains debug info:" msgstr "Pour corriger cela, vous installez Inkscape lié à une variante de GLib qui contient les informations de débogage :" #. type: Plain text -#: guix-git/doc/guix.texi:37916 +#: guix-git/doc/guix.texi:38405 msgid "This time, debugging will be a whole lot nicer:" msgstr "Cette fois-ci, le débogage a bien plus d'informations :" #. type: example -#: guix-git/doc/guix.texi:37934 +#: guix-git/doc/guix.texi:38423 #, no-wrap msgid "" "$ gdb --args sh -c 'exec inkscape'\n" @@ -70004,28 +70987,28 @@ msgstr "" "@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:37937 +#: guix-git/doc/guix.texi:38426 msgid "Much better!" msgstr "Bien mieux !" #. type: Plain text -#: guix-git/doc/guix.texi:37941 +#: guix-git/doc/guix.texi:38430 msgid "Note that there can be packages for which @option{--with-debug-info} will not have the desired effect. @xref{Package Transformation Options, @option{--with-debug-info}}, for more information." msgstr "Remarquez qu'il y a des paquets pour lesquels @option{--with-debug-info} n'a pas l'effet désiré. @xref{Package Transformation Options, @option{--with-debug-info}}, pour plus d'informations." #. type: cindex -#: guix-git/doc/guix.texi:37945 +#: guix-git/doc/guix.texi:38434 #, no-wrap msgid "security updates" msgstr "mises à jour de sécurité" #. type: Plain text -#: guix-git/doc/guix.texi:37954 +#: guix-git/doc/guix.texi:38443 msgid "Occasionally, important security vulnerabilities are discovered in software packages and must be patched. Guix developers try hard to keep track of known vulnerabilities and to apply fixes as soon as possible in the @code{master} branch of Guix (we do not yet provide a ``stable'' branch containing only security updates). The @command{guix lint} tool helps developers find out about vulnerable versions of software packages in the distribution:" msgstr "Parfois, des vulnérabilités importantes sont découvertes dans les paquets logiciels et doivent être corrigées. Les développeur·euses de Guix essayent de suivre les vulnérabilités connues et d'appliquer des correctifs aussi vite que possible dans la branche @code{master} de Guix (nous n'avons pas encore de branche « stable » contenant seulement des mises à jour de sécurité). L'outil @command{guix lint} aide à trouver les versions vulnérables des paquets logiciels dans la distribution :" #. type: smallexample -#: guix-git/doc/guix.texi:37961 +#: guix-git/doc/guix.texi:38450 #, no-wrap msgid "" "$ guix lint -c cve\n" @@ -70041,39 +71024,39 @@ msgstr "" "@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:37964 +#: guix-git/doc/guix.texi:38453 msgid "@xref{Invoking guix lint}, for more information." msgstr "@xref{Invoking guix lint}, pour plus d'informations." #. type: Plain text -#: guix-git/doc/guix.texi:37973 +#: guix-git/doc/guix.texi:38462 msgid "Guix follows a functional package management discipline (@pxref{Introduction}), which implies that, when a package is changed, @emph{every package that depends on it} must be rebuilt. This can significantly slow down the deployment of fixes in core packages such as libc or Bash, since basically the whole distribution would need to be rebuilt. Using pre-built binaries helps (@pxref{Substitutes}), but deployment may still take more time than desired." msgstr "Guix suit une discipline de gestion de paquets fonctionnelle (@pxref{Introduction}), ce qui implique que lorsqu'un paquet change, @emph{tous les paquets qui en dépendent} doivent être reconstruits. Cela peut grandement ralentir le déploiement de corrections dans les paquets du cœur comme libc ou bash comme presque toute la distribution aurait besoin d'être reconstruite. Cela aide d'utiliser des binaires pré-construits (@pxref{Substituts}), mais le déploiement peut toujours prendre plus de temps de souhaité." #. type: cindex -#: guix-git/doc/guix.texi:37974 +#: guix-git/doc/guix.texi:38463 #, no-wrap msgid "grafts" msgstr "greffes" #. type: Plain text -#: guix-git/doc/guix.texi:37982 +#: guix-git/doc/guix.texi:38471 msgid "To address this, Guix implements @dfn{grafts}, a mechanism that allows for fast deployment of critical updates without the costs associated with a whole-distribution rebuild. The idea is to rebuild only the package that needs to be patched, and then to ``graft'' it onto packages explicitly installed by the user and that were previously referring to the original package. The cost of grafting is typically very low, and order of magnitudes lower than a full rebuild of the dependency chain." msgstr "Pour corriger cela, Guix implémente les @dfn{greffes}, un mécanisme qui permet un déploiement rapide des mises à jour de sécurité critiques sans le coût associé à une reconstruction complète de la distribution. L'idée est de reconstruire uniquement le paquet qui doit être corrigé puis de le « greffer » sur les paquets qui sont explicitement installés par l'utilisateur et qui se référaient avant au paquet d'origine. Le coût d'une greffe est typiquement très bas, et plusieurs ordres de grandeurs moins élevé que de reconstruire tout la chaîne de dépendance." #. type: cindex -#: guix-git/doc/guix.texi:37983 +#: guix-git/doc/guix.texi:38472 #, no-wrap msgid "replacements of packages, for grafts" msgstr "remplacement de paquet, pour les greffes" #. type: Plain text -#: guix-git/doc/guix.texi:37989 +#: guix-git/doc/guix.texi:38478 msgid "For instance, suppose a security update needs to be applied to Bash. Guix developers will provide a package definition for the ``fixed'' Bash, say @code{bash-fixed}, in the usual way (@pxref{Defining Packages}). Then, the original package definition is augmented with a @code{replacement} field pointing to the package containing the bug fix:" msgstr "Par exemple, supposons qu'une mise à jour de sécurité doive être appliquée à Bash. Les développeurs de Guix fourniront une définition de paquet pour le Bash « corrigé », disons @var{bash-fixed}, de la manière habituelle (@pxref{Defining Packages}). Ensuite, la définition originale du paquet est augmentée avec un champ @code{replacement} qui pointe vers le paquet contenant la correction :" #. type: lisp -#: guix-git/doc/guix.texi:37996 +#: guix-git/doc/guix.texi:38485 #, no-wrap msgid "" "(define bash\n" @@ -70089,190 +71072,190 @@ msgstr "" " (replacement bash-fixed)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:38006 +#: guix-git/doc/guix.texi:38495 msgid "From there on, any package depending directly or indirectly on Bash---as reported by @command{guix gc --requisites} (@pxref{Invoking guix gc})---that is installed is automatically ``rewritten'' to refer to @code{bash-fixed} instead of @code{bash}. This grafting process takes time proportional to the size of the package, usually less than a minute for an ``average'' package on a recent machine. Grafting is recursive: when an indirect dependency requires grafting, then grafting ``propagates'' up to the package that the user is installing." msgstr "À partir de maintenant, tout paquet dépendant directement ou indirectement de Bash — rapporté par @command{guix gc --requisites} (@pxref{Invoking guix gc}) — installé est automatiquement « réécrit » pour se référer à @var{bash-fixed} au lieu de @var{bash}. Ce processus de greffe prend du temps en proportion de la taille du paquet, typiquement moins d'une minute pour un paquet de taille « moyenne » sur une machine récente. La greffe est récursive : lorsqu'une dépendance indirecte a besoin d'être greffée, la greffe se « propage » jusqu'au paquet que l'utilisateur installe." #. type: Plain text -#: guix-git/doc/guix.texi:38014 +#: guix-git/doc/guix.texi:38503 msgid "Currently, the length of the name and version of the graft and that of the package it replaces (@code{bash-fixed} and @code{bash} in the example above) must be equal. This restriction mostly comes from the fact that grafting works by patching files, including binary files, directly. Other restrictions may apply: for instance, when adding a graft to a package providing a shared library, the original shared library and its replacement must have the same @code{SONAME} and be binary-compatible." msgstr "Actuellement la longueur du nom et la version de la greffe et du paquet qu'il remplace (@var{bash-fixed} et @var{bash} dans l'exemple ci-dessus) doivent être identiques. Cette restriction vient surtout du fait que la greffe fonctionne en corrigeant les fichiers, dont des fichiers binaires, directement. D'autres restrictions peuvent apparaître : par exemple, si vous ajoutez une greffe à un paquet fournissant une bibliothèque partagée, la bibliothèque partagée originale et son remplacement doivent avoir le même @code{SONAME} et être compatibles au niveau binaire." #. type: Plain text -#: guix-git/doc/guix.texi:38018 +#: guix-git/doc/guix.texi:38507 msgid "The @option{--no-grafts} command-line option allows you to forcefully avoid grafting (@pxref{Common Build Options, @option{--no-grafts}}). Thus, the command:" msgstr "L'option en ligne de commande @option{--no-grafts} vous permet d'éviter les greffes (@pxref{Common Build Options, @option{--no-grafts}}). Donc la commande :" #. type: example -#: guix-git/doc/guix.texi:38021 +#: guix-git/doc/guix.texi:38510 #, no-wrap msgid "guix build bash --no-grafts\n" msgstr "guix build bash --no-grafts\n" #. type: Plain text -#: guix-git/doc/guix.texi:38025 +#: guix-git/doc/guix.texi:38514 msgid "returns the store file name of the original Bash, whereas:" msgstr "renvoie le nom de fichier dans les dépôt du Bash original, alors que :" #. type: example -#: guix-git/doc/guix.texi:38028 +#: guix-git/doc/guix.texi:38517 #, no-wrap msgid "guix build bash\n" msgstr "guix build bash\n" #. type: Plain text -#: guix-git/doc/guix.texi:38033 +#: guix-git/doc/guix.texi:38522 msgid "returns the store file name of the ``fixed'', replacement Bash. This allows you to distinguish between the two variants of Bash." msgstr "renvoie le nom de fichier du Bash « corrigé » de remplacement. Cela vous permet de distinguer les deux variantes de Bash." #. type: Plain text -#: guix-git/doc/guix.texi:38036 +#: guix-git/doc/guix.texi:38525 msgid "To verify which Bash your whole profile refers to, you can run (@pxref{Invoking guix gc}):" msgstr "Pour vérifier à quel Bash votre profil se réfère, vous pouvez lancer (@pxref{Invoking guix gc}) :" #. type: example -#: guix-git/doc/guix.texi:38039 +#: guix-git/doc/guix.texi:38528 #, no-wrap msgid "guix gc -R $(readlink -f ~/.guix-profile) | grep bash\n" msgstr "guix gc -R $(readlink -f ~/.guix-profile) | grep bash\n" #. type: Plain text -#: guix-git/doc/guix.texi:38044 +#: guix-git/doc/guix.texi:38533 msgid "@dots{} and compare the store file names that you get with those above. Likewise for a complete Guix system generation:" msgstr "@dots{} et comparer les noms de fichiers que vous obtenez avec ceux du dessus. De la même manière pour une génération du système Guix :" #. type: example -#: guix-git/doc/guix.texi:38047 +#: guix-git/doc/guix.texi:38536 #, no-wrap msgid "guix gc -R $(guix system build my-config.scm) | grep bash\n" msgstr "guix gc -R $(guix system build my-config.scm) | grep bash\n" #. type: Plain text -#: guix-git/doc/guix.texi:38051 +#: guix-git/doc/guix.texi:38540 msgid "Lastly, to check which Bash running processes are using, you can use the @command{lsof} command:" msgstr "Enfin, pour vérifier quelles processus Bash lancés vous utilisez, vous pouvez utiliser la commande @command{lsof} :" #. type: example -#: guix-git/doc/guix.texi:38054 +#: guix-git/doc/guix.texi:38543 #, no-wrap msgid "lsof | grep /gnu/store/.*bash\n" msgstr "lsof | grep /gnu/store/.*bash\n" #. type: cindex -#: guix-git/doc/guix.texi:38062 +#: guix-git/doc/guix.texi:38551 #, no-wrap msgid "bootstrapping" msgstr "bootstrap" #. type: Plain text -#: guix-git/doc/guix.texi:38069 +#: guix-git/doc/guix.texi:38558 msgid "Bootstrapping in our context refers to how the distribution gets built ``from nothing''. Remember that the build environment of a derivation contains nothing but its declared inputs (@pxref{Introduction}). So there's an obvious chicken-and-egg problem: how does the first package get built? How does the first compiler get compiled?" msgstr "Dans notre contexte, le bootstrap se réfère à la manière dont la distribution est construite « à partir de rien ». Rappelez-vous que l'environnement de construction d'une dérivation ne contient rien d'autre que les entrées déclarées (@pxref{Introduction}). Donc il y a un problème évident de poule et d'œuf : comment le premier paquet est-il construit ? Comment le premier compilateur est-il construit ?" #. type: Plain text -#: guix-git/doc/guix.texi:38077 +#: guix-git/doc/guix.texi:38566 msgid "It is tempting to think of this question as one that only die-hard hackers may care about. However, while the answer to that question is technical in nature, its implications are wide-ranging. How the distribution is bootstrapped defines the extent to which we, as individuals and as a collective of users and hackers, can trust the software we run. It is a central concern from the standpoint of @emph{security} and from a @emph{user freedom} viewpoint." msgstr "Il est tentant de penser que seuls les bidouilleurs les plus enthousiastes se soucient de cette question. Cependant, bien que la réponse à cette question soit technique par nature, ses implications sont très vastes. La manière dont une distribution est amorcée définie l'étendue de ce que nous, individuellement et collectivement en tant qu'utilisateurs, utilisatrices, bidouilleuses et bidouilleurs, pouvons faire confiance aux logiciels que nous lançons. C'est une préoccupation centrale du point de vue de la @emph{sécurité} et de @emph{liberté des utilisateurs}." #. type: cindex -#: guix-git/doc/guix.texi:38078 guix-git/doc/guix.texi:38290 +#: guix-git/doc/guix.texi:38567 guix-git/doc/guix.texi:38779 #, no-wrap msgid "bootstrap binaries" msgstr "binaires de bootstrap" #. type: Plain text -#: guix-git/doc/guix.texi:38088 +#: guix-git/doc/guix.texi:38577 msgid "The GNU system is primarily made of C code, with libc at its core. The GNU build system itself assumes the availability of a Bourne shell and command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and `grep'. Furthermore, build programs---programs that run @code{./configure}, @code{make}, etc.---are written in Guile Scheme (@pxref{Derivations}). Consequently, to be able to build anything at all, from scratch, Guix relies on pre-built binaries of Guile, GCC, Binutils, libc, and the other packages mentioned above---the @dfn{bootstrap binaries}." msgstr "Le système GNU est surtout fait de code C, avec la libc en son cœur. Le système de construction GNU lui-même suppose la disponibilité d'un shell Bourne et d'outils en ligne de commande fournis par GNU Coreutils, Awk, Findutils, sed et grep. En plus, les programmes de construction — les programmes qui exécutent @code{./configure}, @code{make} etc — sont écrits en Guile Scheme (@pxref{Derivations}). En conséquence, pour pouvoir construire quoi que ce soit, de zéro, Guix a besoin de binaire pré-construits de Guile, GCC, Binutils, la libc et des autres paquets mentionnés plus haut — les @dfn{binaires de bootstrap}." #. type: Plain text -#: guix-git/doc/guix.texi:38092 +#: guix-git/doc/guix.texi:38581 msgid "These bootstrap binaries are ``taken for granted'', though we can also re-create them if needed (@pxref{Preparing to Use the Bootstrap Binaries})." msgstr "Ces binaires de bootstrap sont pris comme des acquis, bien qu'on puisse les recréer (ça arrive plus tard) si besoin (@pxref{Preparing to Use the Bootstrap Binaries})." #. type: section -#: guix-git/doc/guix.texi:38099 +#: guix-git/doc/guix.texi:38588 #, no-wrap msgid "The Reduced Binary Seed Bootstrap" msgstr "Le bootstrap avec les sources binaires réduites" #. type: Plain text -#: guix-git/doc/guix.texi:38106 +#: guix-git/doc/guix.texi:38595 msgid "Guix---like other GNU/Linux distributions---is traditionally bootstrapped from a set of bootstrap binaries: Bourne shell, command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and `grep' and Guile, GCC, Binutils, and the GNU C Library (@pxref{Bootstrapping}). Usually, these bootstrap binaries are ``taken for granted.''" msgstr "Guix --- comme les autres distributions GNU/Linux --- est traditionnellement bootstrappé à partir d'un ensemble de binaires de boostrap : Bourne shell, des outils en ligne de commande fournis par GNU Coreutils, Awk, Findutils, « sed » et « grep » et Guile, GCC, Binutils et la bibliothèque C de NU (@pxref{Bootstrapping}). Habituellement, ces binaires de bootstrap sont « pris pour acquis »." #. type: Plain text -#: guix-git/doc/guix.texi:38112 +#: guix-git/doc/guix.texi:38601 msgid "Taking the bootstrap binaries for granted means that we consider them to be a correct and trustworthy ``seed'' for building the complete system. Therein lies a problem: the combined size of these bootstrap binaries is about 250MB (@pxref{Bootstrappable Builds,,, mes, GNU Mes}). Auditing or even inspecting these is next to impossible." msgstr "Prendre les binaires de bootstrap pour acquis signifie que nous les considérons comme des « sources » corrects et de confiance pour la construction d'un système complet. Là se trouve le problème : la taille de ces binaires de bootstrap est d'environ 250 Mo (@pxref{Bootstrappable Builds,,, mes, GNU Mes}). Auditer ou même inspecter ces binaires est presque impossible." #. type: Plain text -#: guix-git/doc/guix.texi:38117 +#: guix-git/doc/guix.texi:38606 msgid "For @code{i686-linux} and @code{x86_64-linux}, Guix now features a ``Reduced Binary Seed'' bootstrap @footnote{We would like to say: ``Full Source Bootstrap'' and while we are working towards that goal it would be hyperbole to use that term for what we do now.}." msgstr "Pour @code{i686-linux} et @code{x86_64-linux}, Guix propose maintenant un bootstrap avec « source binaire réduite » @footnote{On aimerait pouvoir dire « Bootstrap Source Complet » et même si on travail vers ce but, utiliser ce terme serait une hyperbole pour ce qu'on fait actuellement.}." #. type: Plain text -#: guix-git/doc/guix.texi:38123 +#: guix-git/doc/guix.texi:38612 msgid "The Reduced Binary Seed bootstrap removes the most critical tools---from a trust perspective---from the bootstrap binaries: GCC, Binutils and the GNU C Library are replaced by: @code{bootstrap-mescc-tools} (a tiny assembler and linker) and @code{bootstrap-mes} (a small Scheme Interpreter and a C compiler written in Scheme and the Mes C Library, built for TinyCC and for GCC)." msgstr "Le bootstrap avec les sources binaires réduites supprime les outils les plus critiques --- du point de vue de la confiance --- des binaires de bootstrap : GCC, Binutils et la bibliothèque C de GNU sont remplacées par : @code{bootstrap-mescc-tools} (un petit assembleur et éditeur des liens) et @code{bootstrap-mes} (un petit interpréteur Scheme et un compilateur C écrit en Scheme et la bibliothèque C de Mes, construite pour TinyCC et pour GCC)." #. type: Plain text -#: guix-git/doc/guix.texi:38128 +#: guix-git/doc/guix.texi:38617 msgid "Using these new binary seeds the ``missing'' Binutils, GCC, and the GNU C Library are built from source. From here on the more traditional bootstrap process resumes. This approach has reduced the bootstrap binaries in size to about 145MB in Guix v1.1." msgstr "À partir de ces nouvelles sources binaires, les Binutils, GCC et la bibliothèque C de GNU sont construits à partir des sources. À partir de là, les processus de bootstrap plus traditionnel continue. Cette approche a réduit la taille des binaires de bootstrap à environ 145 Mo dans Guix v1.1." #. type: Plain text -#: guix-git/doc/guix.texi:38136 +#: guix-git/doc/guix.texi:38625 msgid "The next step that Guix has taken is to replace the shell and all its utilities with implementations in Guile Scheme, the @emph{Scheme-only bootstrap}. Gash (@pxref{Gash,,, gash, The Gash manual}) is a POSIX-compatible shell that replaces Bash, and it comes with Gash Utils which has minimalist replacements for Awk, the GNU Core Utilities, Grep, Gzip, Sed, and Tar. The rest of the bootstrap binary seeds that were removed are now built from source." msgstr "La prochaine étape qui Guix prépare est de remplacer le shell et tous ses utilitaires avec des implémentations en Guile Scheme, le @emph{bootstrap Scheme-seulement}. Gash (@pxref{Gash,,, gash, The Gash manual}) est un shell compatible avec POSIX qui remplace Bash, et il propose Gash Utils qui a des remplaçants minimalistes pour Awk, les utilitaires GNu Core Utilities, Grep, Gzip, Sed et Tar. Le reste des binaires de bootstrap que nous avons enlevés sont maintenant construits à partir des sources." #. type: Plain text -#: guix-git/doc/guix.texi:38146 +#: guix-git/doc/guix.texi:38635 msgid "Building the GNU System from source is currently only possible by adding some historical GNU packages as intermediate steps@footnote{Packages such as @code{gcc-2.95.3}, @code{binutils-2.14}, @code{glibc-2.2.5}, @code{gzip-1.2.4}, @code{tar-1.22}, and some others. For details, see @file{gnu/packages/commencement.scm}.}. As Gash and Gash Utils mature, and GNU packages become more bootstrappable again (e.g., new releases of GNU Sed will also ship as gzipped tarballs again, as alternative to the hard to bootstrap @code{xz}-compression), this set of added packages can hopefully be reduced again." msgstr "Construire le Système GNU à partir des sources est actuellement seulement possible en ajoutant certains paquets GNU historiques en tant qu'étapes intermédiaires@footnote{Les paquets comme @code{gcc-2.95.3}, @code{binutils-2.14}, @code{glicb-2.2.5}, @code{gzip-1.2.4}, @code{tar-1.22} et certains autres. Pour les détails, voir @file{gnu/packages/commencement.scm}.}. Tandis que Gash et Gash Utils avancent, et que les paquets GNU deviennent de nouveau plus bootstrappables (p.@: ex.@: les nouvelles versions de GNU Sed proposeront de nouveau des archives gzip, en alternative à la compression @code{xz} difficile à boostrapper), on espère pouvoir réduire de nouveau cet ensemble de paquets supplémentaires." #. type: Plain text -#: guix-git/doc/guix.texi:38150 +#: guix-git/doc/guix.texi:38639 msgid "The graph below shows the resulting dependency graph for @code{gcc-core-mesboot0}, the bootstrap compiler used for the traditional bootstrap of the rest of the Guix System." msgstr "Le graphe ci-dessous montre le graphe de dépendance résultant pour @code{gcc-core-mesboot}, le compilateur de bootstrap utilisé pour le bootstrap traditionnel du reste du système Guix." #. type: Plain text -#: guix-git/doc/guix.texi:38153 +#: guix-git/doc/guix.texi:38642 msgid "@image{images/gcc-core-mesboot0-graph,6in,,Dependency graph of gcc-core-mesboot0}" msgstr "@image{images/gcc-core-mesboot0-graph,6in,,Graphe de dépendance de gcc-core-mesboot0}" #. type: Plain text -#: guix-git/doc/guix.texi:38160 +#: guix-git/doc/guix.texi:38649 msgid "The only significant binary bootstrap seeds that remain@footnote{ Ignoring the 68KB @code{mescc-tools}; that will be removed later, together with @code{mes}.} are a Scheme interpreter and a Scheme compiler: GNU Mes and GNU Guile@footnote{Not shown in this graph are the static binaries for @file{bash}, @code{tar}, and @code{xz} that are used to get Guile running.}." msgstr "La seule source binaire restant@footnote{En ignorant @code{mescc-tools} qui fait 68 Ko ; qui sera supprimée plus tard, avec @code{mes}.} sont un interpréteur Scheme et un compilateur Scheme : GNU Mes et GNU Guile@footnote{Ce graphe ne montre pas les binaires statiques pour @file{bash}, @code{tar} et @code{xz} utilisés pour pouvoir lancer Guile.}." #. type: Plain text -#: guix-git/doc/guix.texi:38163 +#: guix-git/doc/guix.texi:38652 msgid "This further reduction has brought down the size of the binary seed to about 60MB for @code{i686-linux} and @code{x86_64-linux}." msgstr "Cette réduction supplémentaire a réduit la taille du bootstrap à environ 60 Mo pour @code{i686-linux} et @code{x86_64-linux}." #. type: Plain text -#: guix-git/doc/guix.texi:38168 +#: guix-git/doc/guix.texi:38657 msgid "Work is ongoing to remove all binary blobs from our free software bootstrap stack, working towards a Full Source Bootstrap. Also ongoing is work to bring these bootstraps to the @code{arm-linux} and @code{aarch64-linux} architectures and to the Hurd." msgstr "Le travail continue pour supprimer tous les blobs binaires de notre pile de bootstrap libre, en essayant d'atteindre un bootstrap complet par les sources. Le travail continue aussi pour apporter ces bootstraps aux architectures @code{arm-linux} et @code{aarch64-linux} et au Hurd." #. type: Plain text -#: guix-git/doc/guix.texi:38172 +#: guix-git/doc/guix.texi:38661 msgid "If you are interested, join us on @samp{#bootstrappable} on the Freenode IRC network or discuss on @email{bug-mes@@gnu.org} or @email{gash-devel@@nongnu.org}." msgstr "Si vous êtes intéressé·e, rejoignez-nous sur @samp{#bootstrappable} sur le réseau IRC Freenode our discutez-en sur @email{bug-mes@@gnu.org} ou @email{gash-devel@@nongnu.org}." #. type: Plain text -#: guix-git/doc/guix.texi:38179 +#: guix-git/doc/guix.texi:38668 msgid "@image{images/bootstrap-graph,6in,,Dependency graph of the early bootstrap derivations}" msgstr "@image{images/bootstrap-graph,6in,,Graphe de dépendance des premières dérivations de bootstrap}" #. type: Plain text -#: guix-git/doc/guix.texi:38184 +#: guix-git/doc/guix.texi:38673 msgid "The figure above shows the very beginning of the dependency graph of the distribution, corresponding to the package definitions of the @code{(gnu packages bootstrap)} module. A similar figure can be generated with @command{guix graph} (@pxref{Invoking guix graph}), along the lines of:" msgstr "La figure ci-dessus montre le tout début du graphe de dépendances de la distribution, correspondant aux définitions des paquets du module @code{(gnu packages bootstrap)}. Une figure similaire peut être générée avec @command{guix graph} (@pxref{Invoking guix graph}), de cette manière :" #. type: example -#: guix-git/doc/guix.texi:38189 +#: guix-git/doc/guix.texi:38678 #, no-wrap msgid "" "guix graph -t derivation \\\n" @@ -70284,12 +71267,12 @@ msgstr "" " | dot -Tps > gcc.ps\n" #. type: Plain text -#: guix-git/doc/guix.texi:38192 +#: guix-git/doc/guix.texi:38681 msgid "or, for the further Reduced Binary Seed bootstrap" msgstr "ou, pour le bootstrap avec les sources binaires plus réduites" #. type: example -#: guix-git/doc/guix.texi:38197 +#: guix-git/doc/guix.texi:38686 #, no-wrap msgid "" "guix graph -t derivation \\\n" @@ -70301,43 +71284,43 @@ msgstr "" " | dot -Tps > mes.ps\n" #. type: Plain text -#: guix-git/doc/guix.texi:38206 +#: guix-git/doc/guix.texi:38695 msgid "At this level of detail, things are slightly complex. First, Guile itself consists of an ELF executable, along with many source and compiled Scheme files that are dynamically loaded when it runs. This gets stored in the @file{guile-2.0.7.tar.xz} tarball shown in this graph. This tarball is part of Guix's ``source'' distribution, and gets inserted into the store with @code{add-to-store} (@pxref{The Store})." msgstr "À ce niveau de détails, les choses sont légèrement complexes. Tout d'abord, Guile lui-même consiste en an exécutable ELF, avec plusieurs fichiers Scheme sources et compilés qui sont chargés dynamiquement quand il est exécuté. Cela est stocké dans l'archive @file{guile-2.0.7.tar.xz} montrée dans ce graphe. Cette archive fait parti de la distribution « source » de Guix, et est insérée dans le dépôt avec @code{add-to-store} (@pxref{The Store})." #. type: Plain text -#: guix-git/doc/guix.texi:38215 +#: guix-git/doc/guix.texi:38704 msgid "But how do we write a derivation that unpacks this tarball and adds it to the store? To solve this problem, the @code{guile-bootstrap-2.0.drv} derivation---the first one that gets built---uses @code{bash} as its builder, which runs @code{build-bootstrap-guile.sh}, which in turn calls @code{tar} to unpack the tarball. Thus, @file{bash}, @file{tar}, @file{xz}, and @file{mkdir} are statically-linked binaries, also part of the Guix source distribution, whose sole purpose is to allow the Guile tarball to be unpacked." msgstr "Mais comment écrire une dérivation qui décompresse cette archive et l'ajoute au dépôt ? Pour résoudre ce problème, la dérivation @code{guile-bootstrap-2.0.drv} — la première qui est construite — utilise @code{bash} comme constructeur, qui lance @code{build-bootstrap-guile.sh}, qui à son tour appelle @code{tar} pour décompresser l'archive. Ainsi, @file{bash}, @file{tar}, @file{xz} et @file{mkdir} sont des binaires liés statiquement, qui font aussi partie de la distribution source de Guix, dont le seul but est de permettre à l'archive de Guile d'être décompressée." #. type: Plain text -#: guix-git/doc/guix.texi:38227 +#: guix-git/doc/guix.texi:38716 msgid "Once @code{guile-bootstrap-2.0.drv} is built, we have a functioning Guile that can be used to run subsequent build programs. Its first task is to download tarballs containing the other pre-built binaries---this is what the @file{.tar.xz.drv} derivations do. Guix modules such as @code{ftp-client.scm} are used for this purpose. The @code{module-import.drv} derivations import those modules in a directory in the store, using the original layout. The @code{module-import-compiled.drv} derivations compile those modules, and write them in an output directory with the right layout. This corresponds to the @code{#:modules} argument of @code{build-expression->derivation} (@pxref{Derivations})." msgstr "Une fois que @code{guile-bootstrap-2.0.drv} est construit, nous avons un Guile fonctionnel qui peut être utilisé pour exécuter les programmes de construction suivants. Sa première tâche consiste à télécharger les archives contenant les autres binaires pré-construits — c'est ce que la dérivation @code{.tar.xz.drv} accomplit. Les modules Guix comme @code{ftp-client.scm} sont utilisés pour cela. Les dérivations @code{module-import.drv} importent ces modules dans un répertoire dans le dépôt, en utilisant la disposition d'origine. Les dérivations @code{module-import-compiled.drv} compilent ces modules, et les écrivent dans un répertoire de sortie avec le bon agencement. Cela correspond à l'argument @code{#:modules} de @code{build-expression->derivation} (@pxref{Derivations})." #. type: Plain text -#: guix-git/doc/guix.texi:38232 +#: guix-git/doc/guix.texi:38721 msgid "Finally, the various tarballs are unpacked by the derivations @code{gcc-bootstrap-0.drv}, @code{glibc-bootstrap-0.drv}, or @code{bootstrap-mes-0.drv} and @code{bootstrap-mescc-tools-0.drv}, at which point we have a working C tool chain." msgstr "Enfin, les diverses archives sont décompressées par les dérivations @code{gcc-bootstrap-0.drv}, @code{glibc-bootstrap-0.drv}, ou @code{bootstrap-mes-0.drv} et @code{bootstrap-mescc-tools-0.drv}, à ce stade, nous avons une chaîne d'outils C qui fonctionne." #. type: unnumberedsec -#: guix-git/doc/guix.texi:38233 +#: guix-git/doc/guix.texi:38722 #, no-wrap msgid "Building the Build Tools" msgstr "Construire les outils de construction" #. type: Plain text -#: guix-git/doc/guix.texi:38242 +#: guix-git/doc/guix.texi:38731 msgid "Bootstrapping is complete when we have a full tool chain that does not depend on the pre-built bootstrap tools discussed above. This no-dependency requirement is verified by checking whether the files of the final tool chain contain references to the @file{/gnu/store} directories of the bootstrap inputs. The process that leads to this ``final'' tool chain is described by the package definitions found in the @code{(gnu packages commencement)} module." msgstr "Le bootstrap est complet lorsque nous avons une chaîne d'outils complète qui ne dépend pas des outils de bootstrap pré-construits dont on vient de parler. Ce pré-requis d'indépendance est vérifié en s'assurant que les fichiers de la chaîne d'outil finale ne contiennent pas de référence vers les répertoires @file{/gnu/store} des entrées de bootstrap. Le processus qui mène à cette chaîne d'outils « finale » est décrit par les définitions de paquets qui se trouvent dans le module @code{(gnu packages commencement)}." #. type: Plain text -#: guix-git/doc/guix.texi:38249 +#: guix-git/doc/guix.texi:38738 msgid "The @command{guix graph} command allows us to ``zoom out'' compared to the graph above, by looking at the level of package objects instead of individual derivations---remember that a package may translate to several derivations, typically one derivation to download its source, one to build the Guile modules it needs, and one to actually build the package from source. The command:" msgstr "La commande @command{guix graph} nous permet de « dézoomer » comparé au graphe précédent, en regardant au niveau des objets de paquets plutôt que des dérivations individuelles — rappelez-vous qu'un paquet peut se traduire en plusieurs dérivations, typiquement une dérivation pour télécharger ses sources, une pour les modules Guile dont il a besoin et une pour effectivement compiler le paquet depuis les sources. La commande :" #. type: example -#: guix-git/doc/guix.texi:38254 +#: guix-git/doc/guix.texi:38743 #, no-wrap msgid "" "guix graph -t bag \\\n" @@ -70349,168 +71332,269 @@ msgstr "" " glibc-final-with-bootstrap-bash)' | dot -Tps > t.ps\n" #. type: Plain text -#: guix-git/doc/guix.texi:38261 +#: guix-git/doc/guix.texi:38750 msgid "displays the dependency graph leading to the ``final'' C library@footnote{You may notice the @code{glibc-intermediate} label, suggesting that it is not @emph{quite} final, but as a good approximation, we will consider it final.}, depicted below." msgstr "produit le graphe de dépendances qui mène à la bibliothèque C « finale »@footnote{Vous remarquerez qu'elle s'appelle @code{glibc-intermediate}, ce qui suggère qu'elle n'est pas @emph{tout à fait} finale, mais c'est une bonne approximation tout de même.}, représentée ci-dessous." #. type: Plain text -#: guix-git/doc/guix.texi:38263 +#: guix-git/doc/guix.texi:38752 msgid "@image{images/bootstrap-packages,6in,,Dependency graph of the early packages}" msgstr "@image{images/bootstrap-packages,6in,,Graphe de dépendance des premiers paquets}" #. type: Plain text -#: guix-git/doc/guix.texi:38269 +#: guix-git/doc/guix.texi:38758 msgid "The first tool that gets built with the bootstrap binaries is GNU@tie{}Make---noted @code{make-boot0} above---which is a prerequisite for all the following packages. From there Findutils and Diffutils get built." msgstr "Le premier outil construit avec les binaires de bootstrap est GNU@tie{}Make — appelé @code{make-boot0} ci-dessus — qui est un prérequis de tous les paquets suivants . Ensuite, Findutils et Diffutils sont construits." #. type: Plain text -#: guix-git/doc/guix.texi:38274 +#: guix-git/doc/guix.texi:38763 msgid "Then come the first-stage Binutils and GCC, built as pseudo cross tools---i.e., with @option{--target} equal to @option{--host}. They are used to build libc. Thanks to this cross-build trick, this libc is guaranteed not to hold any reference to the initial tool chain." msgstr "Ensuite vient la première passe de Binutils et GCC, construits comme des pseudo outils croisés — c.-à-d.@: dont @option{--target} est égal à @code{--host}. Ils sont utilisés pour construire la libc. Grâce à cette astuce de compilation croisée, cette libc est garantie de ne contenir aucune référence à la chaîne d'outils initiale." #. type: Plain text -#: guix-git/doc/guix.texi:38280 +#: guix-git/doc/guix.texi:38769 msgid "From there the final Binutils and GCC (not shown above) are built. GCC uses @command{ld} from the final Binutils, and links programs against the just-built libc. This tool chain is used to build the other packages used by Guix and by the GNU Build System: Guile, Bash, Coreutils, etc." msgstr "À partir de là, les Bintulis finaux et GCC (non visibles ci-dessus) sont construits. GCC utilise @command{ld} du Binutils final et lie les programme avec la libc qui vient d'être construite. Cette chaîne d'outils est utilisée pour construire les autres paquets utilisés par Guix et par le système de construction de GNU : Guile, Bash, Coreutils, etc." #. type: Plain text -#: guix-git/doc/guix.texi:38286 +#: guix-git/doc/guix.texi:38775 msgid "And voilà! At this point we have the complete set of build tools that the GNU Build System expects. These are in the @code{%final-inputs} variable of the @code{(gnu packages commencement)} module, and are implicitly used by any package that uses @code{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}})." msgstr "Et voilà ! À partir de là nous avons l'ensemble complet des outils auxquels s'attend le système de construction GNU. Ils sont dans la variable @code{%final-inputs} du module @code{(gnu packages commencement)} et sont implicitement utilisés par tous les paquets qui utilisent le @code{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}})." #. type: unnumberedsec -#: guix-git/doc/guix.texi:38288 +#: guix-git/doc/guix.texi:38777 #, no-wrap msgid "Building the Bootstrap Binaries" msgstr "Construire les binaires de bootstrap" #. type: Plain text -#: guix-git/doc/guix.texi:38295 +#: guix-git/doc/guix.texi:38784 msgid "Because the final tool chain does not depend on the bootstrap binaries, those rarely need to be updated. Nevertheless, it is useful to have an automated way to produce them, should an update occur, and this is what the @code{(gnu packages make-bootstrap)} module provides." msgstr "Comme la chaîne d'outils finale ne dépend pas des binaires de bootstrap, ils ont rarement besoin d'être mis à jour. Cependant, il est utile d'avoir une manière de faire cela automatiquement, dans le cas d'une mise à jour et c'est ce que le module @code{(gnu packages make-bootstrap)} fournit." #. type: Plain text -#: guix-git/doc/guix.texi:38301 +#: guix-git/doc/guix.texi:38790 msgid "The following command builds the tarballs containing the bootstrap binaries (Binutils, GCC, glibc, for the traditional bootstrap and linux-libre-headers, bootstrap-mescc-tools, bootstrap-mes for the Reduced Binary Seed bootstrap, and Guile, and a tarball containing a mixture of Coreutils and other basic command-line tools):" msgstr "La commande suivante construit les archives contenant les binaires bootstrap (Binutils, GCC, glibc, pour le bootstrap traditionnel et les linux-libre-headers, bootstrap-mescc-tools, bootstrap-mes pour le bootstrap Reduced Binary Seed, et Guile, et une archive contenant un mélange de Coreutils et d'autres outils de base de la ligne de commande) :" #. type: example -#: guix-git/doc/guix.texi:38304 +#: guix-git/doc/guix.texi:38793 #, no-wrap msgid "guix build bootstrap-tarballs\n" msgstr "guix build bootstrap-tarballs\n" #. type: Plain text -#: guix-git/doc/guix.texi:38309 +#: guix-git/doc/guix.texi:38798 msgid "The generated tarballs are those that should be referred to in the @code{(gnu packages bootstrap)} module mentioned at the beginning of this section." msgstr "Les archives générées sont celles qui devraient être référencées dans le module @code{(gnu packages bootstrap)} au début de cette section." #. type: Plain text -#: guix-git/doc/guix.texi:38315 +#: guix-git/doc/guix.texi:38804 msgid "Still here? Then perhaps by now you've started to wonder: when do we reach a fixed point? That is an interesting question! The answer is unknown, but if you would like to investigate further (and have significant computational and storage resources to do so), then let us know." msgstr "Vous êtes toujours là ? Alors peut-être que maintenant vous vous demandez, quand est-ce qu'on atteint un point fixe ? C'est une question intéressante ! La réponse est inconnue, mais si vous voulez enquêter plus profondément (et que vous avez les ressources en puissance de calcul et en capacité de stockage pour cela), dites-le nous." #. type: unnumberedsec -#: guix-git/doc/guix.texi:38316 +#: guix-git/doc/guix.texi:38805 #, no-wrap msgid "Reducing the Set of Bootstrap Binaries" msgstr "Réduire l'ensemble des binaires de bootstrap" #. type: Plain text -#: guix-git/doc/guix.texi:38324 +#: guix-git/doc/guix.texi:38813 msgid "Our traditional bootstrap includes GCC, GNU Libc, Guile, etc. That's a lot of binary code! Why is that a problem? It's a problem because these big chunks of binary code are practically non-auditable, which makes it hard to establish what source code produced them. Every unauditable binary also leaves us vulnerable to compiler backdoors as described by Ken Thompson in the 1984 paper @emph{Reflections on Trusting Trust}." msgstr "Nos binaires de bootstrap incluent actuellement GCC, GNU Libc, Guile, etc. C'est beaucoup de code binaire ! Pourquoi est-ce un problème ? C'est un problème parce que ces gros morceaux de code binaire sont en pratique impossibles à auditer, ce qui fait qu'il est difficile d'établir quel code source les a produit. Chaque binaire non vérifiable nous rend également vulnérables aux portes dérobées des compilateurs, comme le décrit Ken Thompson dans le document @emph{Reflections on Trusting Trust} de 1984." #. type: Plain text -#: guix-git/doc/guix.texi:38330 +#: guix-git/doc/guix.texi:38819 msgid "This is mitigated by the fact that our bootstrap binaries were generated from an earlier Guix revision. Nevertheless it lacks the level of transparency that we get in the rest of the package dependency graph, where Guix always gives us a source-to-binary mapping. Thus, our goal is to reduce the set of bootstrap binaries to the bare minimum." msgstr "Cela est rendu moins inquiétant par le fait que les binaires de bootstrap ont été générés par une révision antérieure de Guix. Cependant, il leur manque le niveau de transparence que l'on obtient avec le reste des paquets du graphe de dépendance, où Guix nous donne toujours une correspondance source-binaire. Ainsi, notre but est de réduire l'ensemble des binaires de bootstrap au minimum." #. type: Plain text -#: guix-git/doc/guix.texi:38336 +#: guix-git/doc/guix.texi:38825 msgid "The @uref{https://bootstrappable.org, Bootstrappable.org web site} lists on-going projects to do that. One of these is about replacing the bootstrap GCC with a sequence of assemblers, interpreters, and compilers of increasing complexity, which could be built from source starting from a simple and auditable assembler." msgstr "Le @uref{http://bootstrappable.org, site web Bootstrappable.org} liste les projets en cours à ce sujet. L'un d'entre eux parle de remplacer le GCC de bootstrap par une série d'assembleurs, d'interpréteurs et de compilateurs d'une complexité croissante, qui pourraient être construits à partir des sources à partir d'un assembleur simple et auditable. Votre aide est (bien sûr !) la bienvenue." #. type: Plain text -#: guix-git/doc/guix.texi:38345 +#: guix-git/doc/guix.texi:38834 msgid "Our first major achievement is the replacement of of GCC, the GNU C Library and Binutils by MesCC-Tools (a simple hex linker and macro assembler) and Mes (@pxref{Top, GNU Mes Reference Manual,, mes, GNU Mes}, a Scheme interpreter and C compiler in Scheme). Neither MesCC-Tools nor Mes can be fully bootstrapped yet and thus we inject them as binary seeds. We call this the Reduced Binary Seed bootstrap, as it has halved the size of our bootstrap binaries! Also, it has eliminated the C compiler binary; i686-linux and x86_64-linux Guix packages are now bootstrapped without any binary C compiler." msgstr "Notre premier grand succès est le remplacement de GCC, de la bibliothèque C de GNU et de Binutils par MesCC-Tools (un éditeur de lien hexadécimal et un macro assembleur) et Mes (@pxref{Top, GNU Mes Reference Manual,, mes, GNU Mes}, un interpréteur Scheme et un compilateur C écrit en Scheme). Ni MesCC-Tools ni Mes ne peuvent encore être bootstrappés et donc nous les injectons comme des sources binaires. Nous appelons cela le bootstrap avec les sources binaires réduites, comme cela a réduit de moitié la taille de nous binaires de bootstrap ! Aussi, cela a éliminé le compilateur C binaire ; les paquets i686-linux et x86_64-linux de Guix sont maintenant bootstrappé sans aucun compilateur C binaire." #. type: Plain text -#: guix-git/doc/guix.texi:38348 +#: guix-git/doc/guix.texi:38837 msgid "Work is ongoing to make MesCC-Tools and Mes fully bootstrappable and we are also looking at any other bootstrap binaries. Your help is welcome!" msgstr "Le travail continue pour rendre MesCC-Tools et Mes complètement bootstrappables et nous cherchons aussi comment remplacer tout autre binaire de bootstrap. votre aide est la bienvenue !" #. type: chapter -#: guix-git/doc/guix.texi:38350 +#: guix-git/doc/guix.texi:38839 #, no-wrap msgid "Porting to a New Platform" msgstr "Porter vers une nouvelle plateforme" #. type: Plain text -#: guix-git/doc/guix.texi:38359 +#: guix-git/doc/guix.texi:38848 msgid "As discussed above, the GNU distribution is self-contained, and self-containment is achieved by relying on pre-built ``bootstrap binaries'' (@pxref{Bootstrapping}). These binaries are specific to an operating system kernel, CPU architecture, and application binary interface (ABI). Thus, to port the distribution to a platform that is not yet supported, one must build those bootstrap binaries, and update the @code{(gnu packages bootstrap)} module to use them on that platform." msgstr "Comme nous en avons discuté plus haut, la distribution GNU est auto-contenue, et cela est possible en se basant sur des « binaires de bootstrap » pré-construits (@pxref{Bootstrapping}). Ces binaires sont spécifiques au noyau de système d'exploitation, à l'architecture CPU et à l'interface applicative binaire (ABI). Ainsi, pour porter la distribution sur une plateforme qui n'est pas encore supportée, on doit construire ces binaires de bootstrap et mettre à jour le module @code{(gnu packages bootstrap)} pour les utiliser sur cette plateforme." #. type: Plain text -#: guix-git/doc/guix.texi:38364 +#: guix-git/doc/guix.texi:38853 msgid "Fortunately, Guix can @emph{cross compile} those bootstrap binaries. When everything goes well, and assuming the GNU tool chain supports the target platform, this can be as simple as running a command like this one:" msgstr "Heureusement, Guix peut effectuer une @emph{compilation croisée} de ces binaires de bootstrap. Lorsque tout va bien, et en supposant que la chaîne d'outils GNU supporte la plateforme cible, cela peut être aussi simple que de lancer une commande comme ceci :" #. type: example -#: guix-git/doc/guix.texi:38367 +#: guix-git/doc/guix.texi:38856 #, no-wrap msgid "guix build --target=armv5tel-linux-gnueabi bootstrap-tarballs\n" msgstr "guix build --target=armv5tel-linux-gnueabi bootstrap-tarballs\n" #. type: Plain text -#: guix-git/doc/guix.texi:38374 +#: guix-git/doc/guix.texi:38863 msgid "For this to work, the @code{glibc-dynamic-linker} procedure in @code{(gnu packages bootstrap)} must be augmented to return the right file name for libc's dynamic linker on that platform; likewise, @code{system->linux-architecture} in @code{(gnu packages linux)} must be taught about the new platform." msgstr "Pour que cela fonctione, la procédure @code{glibc-dynamic-linker} dans @code{(gnu packages bootstrap)} doit être augmentée pour renvoyer le bon nom de fichier pour l'éditeur de lien dynamique de la libc sur cette plateforme ; de même, il faut indiquer cette nouvelle platefore à @code{system->linux-architecture} dans @code{(gnu packages linux)}." #. type: Plain text -#: guix-git/doc/guix.texi:38383 +#: guix-git/doc/guix.texi:38872 msgid "Once these are built, the @code{(gnu packages bootstrap)} module needs to be updated to refer to these binaries on the target platform. That is, the hashes and URLs of the bootstrap tarballs for the new platform must be added alongside those of the currently supported platforms. The bootstrap Guile tarball is treated specially: it is expected to be available locally, and @file{gnu/local.mk} has rules to download it for the supported architectures; a rule for the new platform must be added as well." msgstr "Une fois qu'ils sont construits, le module @code{(gnu packages bootstrap)} doit être mis à jour pour se référer à ces binaires sur la plateforme cible. C'est à dire que les hashs et les URL des archives de bootstrap pour la nouvelle plateforme doivent être ajoutés avec ceux des plateformes actuellement supportées. L'archive de bootstrap de Guile est traitée séparément : elle doit être disponible localement, et @file{gnu/local.mk} a une règle pour la télécharger pour les architectures supportées ; vous devez également ajouter une règle pour la nouvelle plateforme." #. type: Plain text -#: guix-git/doc/guix.texi:38392 +#: guix-git/doc/guix.texi:38881 msgid "In practice, there may be some complications. First, it may be that the extended GNU triplet that specifies an ABI (like the @code{eabi} suffix above) is not recognized by all the GNU tools. Typically, glibc recognizes some of these, whereas GCC uses an extra @option{--with-abi} configure flag (see @code{gcc.scm} for examples of how to handle this). Second, some of the required packages could fail to build for that platform. Lastly, the generated binaries could be broken for some reason." msgstr "En pratique, il peut y avoir des complications. Déjà, il se peut que le triplet GNU étendu qui spécifie l'ABI (comme le suffixe @code{eabi} ci-dessus) ne soit pas reconnu par tous les outils GNU. Typiquement, la glibc en reconnait certains, alors que GCC utilise un drapeau de configuration @option{--with-abi} supplémentaire (voir @code{gcc.scm} pour trouver des exemples où ce cas est géré). Ensuite, certains des paquets requis pourraient échouer à se construire pour cette plateforme. Enfin, les binaires générés pourraient être cassé pour une raison ou une autre." #. type: include -#: guix-git/doc/guix.texi:38394 +#: guix-git/doc/guix.texi:38883 #, no-wrap msgid "contributing.texi" msgstr "contributing.fr.texi" #. type: Plain text -#: guix-git/doc/guix.texi:38407 +#: guix-git/doc/guix.texi:38896 msgid "Guix is based on the @uref{https://nixos.org/nix/, Nix package manager}, which was designed and implemented by Eelco Dolstra, with contributions from other people (see the @file{nix/AUTHORS} file in Guix). Nix pioneered functional package management, and promoted unprecedented features, such as transactional package upgrades and rollbacks, per-user profiles, and referentially transparent build processes. Without this work, Guix would not exist." msgstr "Guix se base sur le @uref{https://nixos.org/nix/ gestionnaire de paquets Nix} conçu et implémenté par Eelco Dolstra, avec des contributions d'autres personnes (voir le fichier @file{nix/AUTHORS} dans Guix). Nix a inventé la gestion de paquet fonctionnelle et promu des fonctionnalités sans précédents comme les mises à jour de paquets transactionnelles et les retours en arrière, les profils par utilisateurs et les processus de constructions transparents pour les références. Sans ce travail, Guix n'existerait pas." #. type: Plain text -#: guix-git/doc/guix.texi:38410 +#: guix-git/doc/guix.texi:38899 msgid "The Nix-based software distributions, Nixpkgs and NixOS, have also been an inspiration for Guix." msgstr "Les distributions logicielles basées sur Nix, Nixpkgs et NixOS, ont aussi été une inspiration pour Guix." #. type: Plain text -#: guix-git/doc/guix.texi:38416 +#: guix-git/doc/guix.texi:38905 msgid "GNU@tie{}Guix itself is a collective work with contributions from a number of people. See the @file{AUTHORS} file in Guix for more information on these fine people. The @file{THANKS} file lists people who have helped by reporting bugs, taking care of the infrastructure, providing artwork and themes, making suggestions, and more---thank you!" msgstr "GNU@tie{}Guix lui-même est un travail collectif avec des contributions d'un grand nombre de personnes. Voyez le fichier @file{AUTHORS} dans Guix pour plus d'information sur ces personnes de qualité. Le fichier @file{THANKS} liste les personnes qui ont aidé en rapportant des bogues, en prenant soin de l'infrastructure, en fournissant des images et des thèmes, en faisant des suggestions et bien plus. Merci !" #. type: cindex -#: guix-git/doc/guix.texi:38421 +#: guix-git/doc/guix.texi:38910 #, no-wrap msgid "license, GNU Free Documentation License" msgstr "licence, GNU Free Documentation License" #. type: include -#: guix-git/doc/guix.texi:38422 +#: guix-git/doc/guix.texi:38911 #, no-wrap msgid "fdl-1.3.texi" msgstr "fdl-1.3.texi" +#~ msgid "{@code{zabbix-front-end-configuration} parameter} nginx-server-configuration-list nginx" +#~ msgstr "{paramètre de @code{zabbix-front-end-configuration}} nginx-server-configuration-list nginx" + +#~ msgid "{@code{zabbix-front-end-configuration} parameter} string db-host" +#~ msgstr "{paramètre de @code{zabbix-front-end-configuration}} string db-host" + +#~ msgid "{@code{zabbix-front-end-configuration} parameter} number db-port" +#~ msgstr "{paramètre de @code{zabbix-front-end-configuration}} number db-port" + +#~ msgid "{@code{zabbix-front-end-configuration} parameter} string db-name" +#~ msgstr "{paramètre de @code{zabbix-front-end-configuration}} string db-name" + +#~ msgid "{@code{zabbix-front-end-configuration} parameter} string db-user" +#~ msgstr "{paramètre de @code{zabbix-front-end-configuration}} string db-user" + +#~ msgid "{@code{zabbix-front-end-configuration} parameter} string db-password" +#~ msgstr "{paramètre de @code{zabbix-front-end-configuration}} string db-password" + +#~ msgid "{@code{zabbix-front-end-configuration} parameter} string db-secret-file" +#~ msgstr "{paramètre de @code{zabbix-front-end-configuration}} string db-secret-file" + +#~ msgid "Secret file containing the credentials for the Zabbix front-end. The value must be a local file name, not a G-expression. You are expected to create this file manually. Its contents will be copied into @file{zabbix.conf.php} as the value of @code{$DB['PASSWORD']}." +#~ msgstr "Fichier secret contenant les identifiants pour l'interface de Zabbix. La valeur doit être un nom de fichier local, pas une G-expression. Vous devez créer ce fichier manuellement. Sont contenu sera recopié dans @file{zabbix.conf.php} en tant que valeur de @code{$DB['PASSWORD']}." + +#~ msgid "{@code{zabbix-front-end-configuration} parameter} string zabbix-host" +#~ msgstr "{paramètre de @code{zabbix-front-end-configuration}} string zabbix-host" + +#~ msgid "{@code{zabbix-front-end-configuration} parameter} number zabbix-port" +#~ msgstr "{paramètre de @code{zabbix-front-end-configuration}} number zabbix-port" + +#~ msgid "Defaults to @samp{10051}." +#~ msgstr "La valeur par défaut est @samp{10051}." + +#~ msgid "When using @option{--manifest}, @option{--file}, or when invoked without arguments, @command{guix shell} caches the environment so that subsequent uses are instantaneous. The cache is invalidated anytime the file is modified." +#~ msgstr "Lorsque vous utilisez @option{--manifest}, @option{--file} ou que vous l'invoquez sans argument, @command{guix shell} met en cache l'environnement pour que les utilisations ultérieures soient instantanées. Le cache est invalidé si le fichier est modifié." + +#~ msgid "" +#~ "name: home-zsh-plugin-manager\n" +#~ "location: gnu/home/services/shellutils.scm:28:2\n" +#~ "extends: home-zsh home-profile\n" +#~ "description: Install plugins in profile and configure Zsh to load them.\n" +#~ "relevance: 1\n" +#~ "\n" +#~ msgstr "" +#~ "name: home-zsh-plugin-manager\n" +#~ "location: gnu/home/services/shellutils.scm:28:2\n" +#~ "extends: home-zsh home-profile\n" +#~ "description: Install plugins in profile and configure Zsh to load them.\n" +#~ "relevance: 1\n" +#~ "\n" + +#~ msgid "" +#~ "name: home-zsh-direnv\n" +#~ "location: gnu/home/services/shellutils.scm:69:2\n" +#~ "extends: home-profile home-zsh\n" +#~ "description: Enables `direnv' for `zsh'. Adds hook to `.zshrc' and installs a\n" +#~ "+ package in the profile.\n" +#~ "relevance: 1\n" +#~ "\n" +#~ msgstr "" +#~ "name: home-zsh-direnv\n" +#~ "location: gnu/home/services/shellutils.scm:69:2\n" +#~ "extends: home-profile home-zsh\n" +#~ "description: Enables `direnv' for `zsh'. Adds hook to `.zshrc' and installs a\n" +#~ "+ package in the profile.\n" +#~ "relevance: 1\n" +#~ "\n" + +#~ msgid "" +#~ "name: home-zsh-autosuggestions\n" +#~ "location: gnu/home/services/shellutils.scm:43:2\n" +#~ "extends: home-zsh-plugin-manager home-zsh\n" +#~ "description: Enables Fish-like fast/unobtrusive autosuggestions for `zsh' and\n" +#~ "+ sets reasonable default values for some plugin's variables to improve perfomance\n" +#~ "+ and adjust behavior: `(history completion)' is set for strategy, manual rebind\n" +#~ "+ and async are enabled.\n" +#~ "relevance: 1\n" +#~ "\n" +#~ msgstr "" +#~ "name: home-zsh-autosuggestions\n" +#~ "location: gnu/home/services/shellutils.scm:43:2\n" +#~ "extends: home-zsh-plugin-manager home-zsh\n" +#~ "description: Enables Fish-like fast/unobtrusive autosuggestions for `zsh' and\n" +#~ "+ sets reasonable default values for some plugin's variables to improve perfomance\n" +#~ "+ and adjust behavior: `(history completion)' is set for strategy, manual rebind\n" +#~ "+ and async are enabled.\n" +#~ "relevance: 1\n" +#~ "\n" + +#~ msgid "./etc/indent-code.el gnu/packages/@var{file}.scm @var{package}\n" +#~ msgstr "./etc/indent-code.el gnu/packages/@var{file}.scm @var{package}\n" + +#~ msgid "This automatically indents the definition of @var{package} in @file{gnu/packages/@var{file}.scm} by running Emacs in batch mode. To indent a whole file, omit the second argument:" +#~ msgstr "Cela indente automatiquement la définition de @var{package} dans @file{gnu/packages/@var{file}.scm} en lançant Emacs en mode commande. Pour indenter un fichier complet, n'indiquez pas de second argument :" + +#~ msgid "./etc/indent-code.el gnu/services/@var{file}.scm\n" +#~ msgstr "./etc/indent-code.el gnu/services/@var{file}.scm\n" + +#~ msgid "Some older packages that aren't using @file{Package.toml} yet, will require this file to be created, too. The function @code{julia-create-package-toml} helps creating the file. You need to pass the outputs and the source of the package, its name (the same as the @code{file-name} parameter), the package uuid, the package version, and a list of dependencies specified by their name and their uuid." +#~ msgstr "Certains anciens paquets qui n'utilisent pas encore @file{Package.toml}, nécessiteront la création de ce fichier également. La fonction @code{julia-create-package-toml} aide à créer le fichier. Vous devez transmettre les sorties et la source du paquet, son nom (le même que le paramètre @code{file-name}), l'uuid du paquet, la version du paquet, et une liste des dépendances spécifiées par leur nom et leur uuid." + #~ msgid "" #~ " (build-machine\n" #~ " (name \"armeight.example.org\")\n" @@ -70943,9 +72027,6 @@ msgstr "fdl-1.3.texi" #~ msgid "Size of the database writer queue." #~ msgstr "La taille de la queue d'écriture de la base de données." -#~ msgid "@code{database} (default: @code{\"/var/lib/cuirass/cuirass.db\"})" -#~ msgstr "@code{database} (par défaut : @code{\"/var/lib/cuirass/cuirass.db\"})" - #~ msgid "Location of sqlite database which contains the build results and previously added specifications." #~ msgstr "Emplacement de la base de données sqlite qui contient les résultats de construction et les spécifications précédemment ajoutées." @@ -71092,9 +72173,6 @@ msgstr "fdl-1.3.texi" #~ msgid "{@code{cups-configuration} parameter} package-list extensions" #~ msgstr "{paramètre de @code{cups-configuration}} package-list extensions" -#~ msgid "Secret file which will be appended to @file{zabbix.conf.php} file. This file contains credentials for use by Zabbix front-end. You are expected to create it manually." -#~ msgstr "Fichier de secrets qui sera ajouté au fichier @file{zabbix.conf.php}. Ce fichier contient les paramètres d'authentification utilisés par Zabbix. On s'attend à ce que vous le créiez manuellement." - #~ msgid "@code{systems} (default: @var{#f})" #~ msgstr "@code{systems} (par défaut : @var{#f})" diff --git a/po/doc/guix-manual.it.po b/po/doc/guix-manual.it.po index 512d2c674a..daa8f01d71 100644 --- a/po/doc/guix-manual.it.po +++ b/po/doc/guix-manual.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: guix manual checkout\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2021-12-21 15:18+0000\n" +"POT-Creation-Date: 2022-02-02 15:18+0000\n" "PO-Revision-Date: 2021-08-26 14:42+0000\n" "Last-Translator: Nathan \n" "Language-Team: Italian \n" @@ -68,8 +68,8 @@ msgid "The latest and greatest." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:161 -#: guix-git/doc/contributing.texi:162 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:173 +#: guix-git/doc/contributing.texi:174 #, no-wrap msgid "Running Guix Before It Is Installed" msgstr "" @@ -80,8 +80,8 @@ msgid "Hacker tricks." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:235 -#: guix-git/doc/contributing.texi:236 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:265 +#: guix-git/doc/contributing.texi:266 #, no-wrap msgid "The Perfect Setup" msgstr "" @@ -92,8 +92,8 @@ msgid "The right tools." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:326 -#: guix-git/doc/contributing.texi:327 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:356 +#: guix-git/doc/contributing.texi:357 #, no-wrap msgid "Packaging Guidelines" msgstr "" @@ -104,8 +104,8 @@ msgid "Growing the distribution." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:890 -#: guix-git/doc/contributing.texi:891 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:920 +#: guix-git/doc/contributing.texi:921 #, no-wrap msgid "Coding Style" msgstr "" @@ -116,8 +116,8 @@ msgid "Hygiene of the contributor." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:989 -#: guix-git/doc/contributing.texi:990 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1013 +#: guix-git/doc/contributing.texi:1014 #, no-wrap msgid "Submitting Patches" msgstr "Invia delle Patches" @@ -128,8 +128,8 @@ msgid "Share your work." msgstr "Condividi il tuo lavoro." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1270 -#: guix-git/doc/contributing.texi:1271 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1298 +#: guix-git/doc/contributing.texi:1299 #, no-wrap msgid "Tracking Bugs and Patches" msgstr "Traccia Bug e Patches" @@ -140,8 +140,8 @@ msgid "Keeping it all organized." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1385 -#: guix-git/doc/contributing.texi:1386 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1413 +#: guix-git/doc/contributing.texi:1414 #, no-wrap msgid "Commit Access" msgstr "Acesso Commit" @@ -152,8 +152,8 @@ msgid "Pushing to the official repository." msgstr "Esegui il Pushing sul repository ufficiale." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1611 -#: guix-git/doc/contributing.texi:1612 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1644 +#: guix-git/doc/contributing.texi:1645 #, no-wrap msgid "Updating the Guix Package" msgstr "Aggiornamento del pacchetto Guix" @@ -164,8 +164,8 @@ msgid "Updating the Guix package definition." msgstr "Aggiornamento della definizione del pacchetto Guix." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1652 -#: guix-git/doc/contributing.texi:1653 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1686 #, no-wrap msgid "Translating Guix" msgstr "Traduzione di Guix" @@ -349,30 +349,31 @@ msgid "make authenticate GUIX_GIT_KEYRING=myremote/keyring\n" msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:154 guix-git/doc/contributing.texi:1463 -#: guix-git/doc/guix.texi:594 guix-git/doc/guix.texi:643 -#: guix-git/doc/guix.texi:833 guix-git/doc/guix.texi:1813 -#: guix-git/doc/guix.texi:2060 guix-git/doc/guix.texi:2244 -#: guix-git/doc/guix.texi:2465 guix-git/doc/guix.texi:2677 -#: guix-git/doc/guix.texi:3807 guix-git/doc/guix.texi:4548 -#: guix-git/doc/guix.texi:4562 guix-git/doc/guix.texi:4644 -#: guix-git/doc/guix.texi:4874 guix-git/doc/guix.texi:5615 -#: guix-git/doc/guix.texi:6082 guix-git/doc/guix.texi:6333 -#: guix-git/doc/guix.texi:6454 guix-git/doc/guix.texi:6482 -#: guix-git/doc/guix.texi:6535 guix-git/doc/guix.texi:9391 -#: guix-git/doc/guix.texi:9461 guix-git/doc/guix.texi:11198 -#: guix-git/doc/guix.texi:11238 guix-git/doc/guix.texi:11512 -#: guix-git/doc/guix.texi:11524 guix-git/doc/guix.texi:14000 -#: guix-git/doc/guix.texi:14631 guix-git/doc/guix.texi:15521 -#: guix-git/doc/guix.texi:16507 guix-git/doc/guix.texi:19140 -#: guix-git/doc/guix.texi:19310 guix-git/doc/guix.texi:27188 -#: guix-git/doc/guix.texi:30914 guix-git/doc/guix.texi:34669 -#: guix-git/doc/guix.texi:34903 guix-git/doc/guix.texi:35073 -#: guix-git/doc/guix.texi:35232 guix-git/doc/guix.texi:35334 -#: guix-git/doc/guix.texi:35435 guix-git/doc/guix.texi:35738 -#: guix-git/doc/guix.texi:36896 guix-git/doc/guix.texi:36971 -#: guix-git/doc/guix.texi:37006 guix-git/doc/guix.texi:37056 -#: guix-git/doc/guix.texi:37143 guix-git/doc/guix.texi:37564 +#: guix-git/doc/contributing.texi:154 guix-git/doc/contributing.texi:1496 +#: guix-git/doc/guix.texi:605 guix-git/doc/guix.texi:654 +#: guix-git/doc/guix.texi:844 guix-git/doc/guix.texi:1830 +#: guix-git/doc/guix.texi:2077 guix-git/doc/guix.texi:2261 +#: guix-git/doc/guix.texi:2482 guix-git/doc/guix.texi:2694 +#: guix-git/doc/guix.texi:3825 guix-git/doc/guix.texi:4566 +#: guix-git/doc/guix.texi:4580 guix-git/doc/guix.texi:4662 +#: guix-git/doc/guix.texi:4892 guix-git/doc/guix.texi:5633 +#: guix-git/doc/guix.texi:6119 guix-git/doc/guix.texi:6376 +#: guix-git/doc/guix.texi:6497 guix-git/doc/guix.texi:6525 +#: guix-git/doc/guix.texi:6578 guix-git/doc/guix.texi:9581 +#: guix-git/doc/guix.texi:9705 guix-git/doc/guix.texi:9775 +#: guix-git/doc/guix.texi:11512 guix-git/doc/guix.texi:11552 +#: guix-git/doc/guix.texi:11826 guix-git/doc/guix.texi:11838 +#: guix-git/doc/guix.texi:14357 guix-git/doc/guix.texi:14988 +#: guix-git/doc/guix.texi:15878 guix-git/doc/guix.texi:16864 +#: guix-git/doc/guix.texi:19502 guix-git/doc/guix.texi:19672 +#: guix-git/doc/guix.texi:27525 guix-git/doc/guix.texi:31279 +#: guix-git/doc/guix.texi:35108 guix-git/doc/guix.texi:35342 +#: guix-git/doc/guix.texi:35512 guix-git/doc/guix.texi:35676 +#: guix-git/doc/guix.texi:35778 guix-git/doc/guix.texi:35817 +#: guix-git/doc/guix.texi:35891 guix-git/doc/guix.texi:36228 +#: guix-git/doc/guix.texi:37386 guix-git/doc/guix.texi:37461 +#: guix-git/doc/guix.texi:37496 guix-git/doc/guix.texi:37546 +#: guix-git/doc/guix.texi:37633 guix-git/doc/guix.texi:38043 #, no-wrap msgid "Note" msgstr "Note" @@ -383,28 +384,46 @@ msgid "You are advised to run @command{make authenticate} after every @command{g msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:168 +#: guix-git/doc/contributing.texi:162 +msgid "After updating the repository, @command{make} might fail with an error similar to the following example:" +msgstr "" + +#. type: example +#: guix-git/doc/contributing.texi:166 +#, no-wrap +msgid "" +"error: failed to load 'gnu/packages/dunst.scm':\n" +"ice-9/eval.scm:293:34: In procedure abi-check: #>: record ABI mismatch; recompilation needed\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:172 +msgid "This means that one of the record types that Guix defines (in this example, the @code{origin} record) has changed, and all of guix needs to be recompiled to take that change into account. To do so, run @command{make clean-go} followed by @command{make}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:180 msgid "In order to keep a sane working environment, you will find it useful to test the changes made in your local source tree checkout without actually installing them. So that you can distinguish between your ``end-user'' hat and your ``motley'' costume." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:179 +#: guix-git/doc/contributing.texi:191 msgid "To that end, all the command-line tools can be used even if you have not run @code{make install}. To do that, you first need to have an environment with all the dependencies available (@pxref{Building from Git}), and then simply prefix each command with @command{./pre-inst-env} (the @file{pre-inst-env} script lives in the top build tree of Guix; it is generated by running @command{./bootstrap} followed by @command{./configure}). As an example, here is how you would build the @code{hello} package as defined in your working tree (this assumes @command{guix-daemon} is already running on your system; it's OK if it's a different version):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:182 +#: guix-git/doc/contributing.texi:194 #, no-wrap msgid "$ ./pre-inst-env guix build hello\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:186 +#: guix-git/doc/contributing.texi:198 msgid "Similarly, an example for a Guile session using the Guix modules:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:189 +#: guix-git/doc/contributing.texi:201 #, no-wrap msgid "" "$ ./pre-inst-env guile -c '(use-modules (guix utils)) (pk (%current-system))'\n" @@ -412,30 +431,30 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:191 +#: guix-git/doc/contributing.texi:203 #, no-wrap msgid ";;; (\"x86_64-linux\")\n" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:194 +#: guix-git/doc/contributing.texi:206 #, no-wrap msgid "REPL" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:195 +#: guix-git/doc/contributing.texi:207 #, no-wrap msgid "read-eval-print loop" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:198 +#: guix-git/doc/contributing.texi:210 msgid "@dots{} and for a REPL (@pxref{Using Guile Interactively,,, guile, Guile Reference Manual}):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:213 +#: guix-git/doc/contributing.texi:225 #, no-wrap msgid "" "$ ./pre-inst-env guile\n" @@ -454,44 +473,67 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:221 +#: guix-git/doc/contributing.texi:233 msgid "If you are hacking on the daemon and its supporting code or if @command{guix-daemon} is not already running on your system, you can launch it straight from the build tree@footnote{The @option{-E} flag to @command{sudo} guarantees that @code{GUILE_LOAD_PATH} is correctly set such that @command{guix-daemon} and the tools it uses can find the Guile modules they need.}:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:224 +#: guix-git/doc/contributing.texi:236 #, no-wrap msgid "$ sudo -E ./pre-inst-env guix-daemon --build-users-group=guixbuild\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:228 +#: guix-git/doc/contributing.texi:240 msgid "The @command{pre-inst-env} script sets up all the environment variables necessary to support this, including @env{PATH} and @env{GUILE_LOAD_PATH}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:233 +#: guix-git/doc/contributing.texi:245 msgid "Note that @command{./pre-inst-env guix pull} does @emph{not} upgrade the local source tree; it simply updates the @file{~/.config/guix/current} symlink (@pxref{Invoking guix pull}). Run @command{git pull} instead if you want to upgrade your local source tree." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:243 +#: guix-git/doc/contributing.texi:249 +msgid "Sometimes, especially if you have recently updated your repository, running @command{./pre-inst-env} will print a message similar to the following example:" +msgstr "" + +#. type: example +#: guix-git/doc/contributing.texi:253 +#, no-wrap +msgid "" +";;; note: source file /home/user/projects/guix/guix/progress.scm\n" +";;; newer than compiled /home/user/projects/guix/guix/progress.go\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:259 +msgid "This is only a note and you can safely ignore it. You can get rid of the message by running @command{make -j4}. Until you do, Guile will run slightly slower because it will interpret the code instead of using prepared Guile object (@file{.go}) files." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:264 +msgid "You can run @command{make} automatically as you work using @command{watchexec} from the @code{watchexec} package. For example, to build again each time you update a package file, you can run @samp{watchexec -w gnu/packages make -j4}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:273 msgid "The Perfect Setup to hack on Guix is basically the perfect setup used for Guile hacking (@pxref{Using Guile in Emacs,,, guile, Guile Reference Manual}). First, you need more than an editor, you need @url{https://www.gnu.org/software/emacs, Emacs}, empowered by the wonderful @url{https://nongnu.org/geiser/, Geiser}. To set that up, run:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:246 +#: guix-git/doc/contributing.texi:276 #, no-wrap msgid "guix package -i emacs guile emacs-geiser emacs-geiser-guile\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:255 +#: guix-git/doc/contributing.texi:285 msgid "Geiser allows for interactive and incremental development from within Emacs: code compilation and evaluation from within buffers, access to on-line documentation (docstrings), context-sensitive completion, @kbd{M-.} to jump to an object definition, a REPL to try out your code, and more (@pxref{Introduction,,, geiser, Geiser User Manual}). For convenient Guix development, make sure to augment Guile’s load path so that it finds source files from your checkout:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:260 +#: guix-git/doc/contributing.texi:290 #, no-wrap msgid "" ";; @r{Assuming the Guix checkout is in ~/src/guix.}\n" @@ -500,35 +542,35 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:268 +#: guix-git/doc/contributing.texi:298 msgid "To actually edit the code, Emacs already has a neat Scheme mode. But in addition to that, you must not miss @url{https://www.emacswiki.org/emacs/ParEdit, Paredit}. It provides facilities to directly operate on the syntax tree, such as raising an s-expression or wrapping it, swallowing or rejecting the following s-expression, etc." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:269 +#: guix-git/doc/contributing.texi:299 #, no-wrap msgid "code snippets" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:270 +#: guix-git/doc/contributing.texi:300 #, no-wrap msgid "templates" msgstr "modelli" #. type: cindex -#: guix-git/doc/contributing.texi:271 +#: guix-git/doc/contributing.texi:301 #, no-wrap msgid "reducing boilerplate" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:278 +#: guix-git/doc/contributing.texi:308 msgid "We also provide templates for common git commit messages and package definitions in the @file{etc/snippets} directory. These templates can be used with @url{https://joaotavora.github.io/yasnippet/, YASnippet} to expand short trigger strings to interactive text snippets. You may want to add the snippets directory to the @var{yas-snippet-dirs} variable in Emacs." msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:283 +#: guix-git/doc/contributing.texi:313 #, no-wrap msgid "" ";; @r{Assuming the Guix checkout is in ~/src/guix.}\n" @@ -537,40 +579,40 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:291 +#: guix-git/doc/contributing.texi:321 msgid "The commit message snippets depend on @url{https://magit.vc/, Magit} to display staged files. When editing a commit message type @code{add} followed by @kbd{TAB} to insert a commit message template for adding a package; type @code{update} followed by @kbd{TAB} to insert a template for updating a package; type @code{https} followed by @kbd{TAB} to insert a template for changing the home page URI of a package to HTTPS." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:297 +#: guix-git/doc/contributing.texi:327 msgid "The main snippet for @code{scheme-mode} is triggered by typing @code{package...} followed by @kbd{TAB}. This snippet also inserts the trigger string @code{origin...}, which can be expanded further. The @code{origin} snippet in turn may insert other trigger strings ending on @code{...}, which also can be expanded further." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:298 +#: guix-git/doc/contributing.texi:328 #, no-wrap msgid "insert or update copyright" msgstr "" #. type: code{#1} -#: guix-git/doc/contributing.texi:299 +#: guix-git/doc/contributing.texi:329 #, no-wrap msgid "M-x guix-copyright" msgstr "" #. type: code{#1} -#: guix-git/doc/contributing.texi:300 +#: guix-git/doc/contributing.texi:330 #, no-wrap msgid "M-x copyright-update" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:304 +#: guix-git/doc/contributing.texi:334 msgid "We additionally provide insertion and automatic update of a copyright in @file{etc/copyright.el}. You may want to set your full name, mail, and load a file." msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:310 +#: guix-git/doc/contributing.texi:340 #, no-wrap msgid "" "(setq user-full-name \"Alice Doe\")\n" @@ -580,17 +622,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:313 +#: guix-git/doc/contributing.texi:343 msgid "To insert a copyright at the current line invoke @code{M-x guix-copyright}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:315 +#: guix-git/doc/contributing.texi:345 msgid "To update a copyright you need to specify a @code{copyright-names-regexp}." msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:319 +#: guix-git/doc/contributing.texi:349 #, no-wrap msgid "" "(setq copyright-names-regexp\n" @@ -598,281 +640,281 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:325 +#: guix-git/doc/contributing.texi:355 msgid "You can check if your copyright is up to date by evaluating @code{M-x copyright-update}. If you want to do it automatically after each buffer save then add @code{(add-hook 'after-save-hook 'copyright-update)} in Emacs." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:329 +#: guix-git/doc/contributing.texi:359 #, no-wrap msgid "packages, creating" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:333 +#: guix-git/doc/contributing.texi:363 msgid "The GNU distribution is nascent and may well lack some of your favorite packages. This section describes how you can help make the distribution grow." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:341 +#: guix-git/doc/contributing.texi:371 msgid "Free software packages are usually distributed in the form of @dfn{source code tarballs}---typically @file{tar.gz} files that contain all the source files. Adding a package to the distribution means essentially two things: adding a @dfn{recipe} that describes how to build the package, including a list of other packages required to build it, and adding @dfn{package metadata} along with that recipe, such as a description and licensing information." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:350 +#: guix-git/doc/contributing.texi:380 msgid "In Guix all this information is embodied in @dfn{package definitions}. Package definitions provide a high-level view of the package. They are written using the syntax of the Scheme programming language; in fact, for each package we define a variable bound to the package definition, and export that variable from a module (@pxref{Package Modules}). However, in-depth Scheme knowledge is @emph{not} a prerequisite for creating packages. For more information on package definitions, @pxref{Defining Packages}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:356 +#: guix-git/doc/contributing.texi:386 msgid "Once a package definition is in place, stored in a file in the Guix source tree, it can be tested using the @command{guix build} command (@pxref{Invoking guix build}). For example, assuming the new package is called @code{gnew}, you may run this command from the Guix build tree (@pxref{Running Guix Before It Is Installed}):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:359 +#: guix-git/doc/contributing.texi:389 #, no-wrap msgid "./pre-inst-env guix build gnew --keep-failed\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:365 +#: guix-git/doc/contributing.texi:395 msgid "Using @code{--keep-failed} makes it easier to debug build failures since it provides access to the failed build tree. Another useful command-line option when debugging is @code{--log-file}, to access the build log." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:370 +#: guix-git/doc/contributing.texi:400 msgid "If the package is unknown to the @command{guix} command, it may be that the source file contains a syntax error, or lacks a @code{define-public} clause to export the package variable. To figure it out, you may load the module from Guile to get more information about the actual error:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:373 +#: guix-git/doc/contributing.texi:403 #, no-wrap msgid "./pre-inst-env guile -c '(use-modules (gnu packages gnew))'\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:380 +#: guix-git/doc/contributing.texi:410 msgid "Once your package builds correctly, please send us a patch (@pxref{Submitting Patches}). Well, if you need help, we will be happy to help you too. Once the patch is committed in the Guix repository, the new package automatically gets built on the supported platforms by @url{https://@value{SUBSTITUTE-SERVER-1}, our continuous integration system}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:381 +#: guix-git/doc/contributing.texi:411 #, no-wrap msgid "substituter" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:388 +#: guix-git/doc/contributing.texi:418 msgid "Users can obtain the new package definition simply by running @command{guix pull} (@pxref{Invoking guix pull}). When @code{@value{SUBSTITUTE-SERVER-1}} is done building the package, installing the package automatically downloads binaries from there (@pxref{Substitutes}). The only place where human intervention is needed is to review and apply the patch." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:404 -#: guix-git/doc/contributing.texi:405 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:434 +#: guix-git/doc/contributing.texi:435 #, no-wrap msgid "Software Freedom" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "What may go into the distribution." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:432 -#: guix-git/doc/contributing.texi:433 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:462 +#: guix-git/doc/contributing.texi:463 #, no-wrap msgid "Package Naming" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "What's in a name?" msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:465 -#: guix-git/doc/contributing.texi:466 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:495 +#: guix-git/doc/contributing.texi:496 #, no-wrap msgid "Version Numbers" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "When the name is not enough." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:572 -#: guix-git/doc/contributing.texi:573 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:602 +#: guix-git/doc/contributing.texi:603 #, no-wrap msgid "Synopses and Descriptions" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Helping users find the right package." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:651 -#: guix-git/doc/contributing.texi:652 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:681 +#: guix-git/doc/contributing.texi:682 #, no-wrap msgid "Snippets versus Phases" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Whether to use a snippet, or a build phase." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:666 -#: guix-git/doc/contributing.texi:667 guix-git/doc/guix.texi:1995 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:696 +#: guix-git/doc/contributing.texi:697 guix-git/doc/guix.texi:2012 #, no-wrap msgid "Emacs Packages" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Your Elisp fix." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:706 -#: guix-git/doc/contributing.texi:707 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:736 +#: guix-git/doc/contributing.texi:737 #, no-wrap msgid "Python Modules" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "A touch of British comedy." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:782 -#: guix-git/doc/contributing.texi:783 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:812 +#: guix-git/doc/contributing.texi:813 #, no-wrap msgid "Perl Modules" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Little pearls." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:798 -#: guix-git/doc/contributing.texi:799 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:828 +#: guix-git/doc/contributing.texi:829 #, no-wrap msgid "Java Packages" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Coffee break." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:818 -#: guix-git/doc/contributing.texi:819 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:848 +#: guix-git/doc/contributing.texi:849 #, no-wrap msgid "Rust Crates" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Beware of oxidation." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:852 -#: guix-git/doc/contributing.texi:853 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:882 +#: guix-git/doc/contributing.texi:883 #, no-wrap msgid "Fonts" msgstr "Font" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Fond of fonts." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:408 +#: guix-git/doc/contributing.texi:438 #, no-wrap msgid "free software" msgstr "software libero" #. type: Plain text -#: guix-git/doc/contributing.texi:416 +#: guix-git/doc/contributing.texi:446 msgid "The GNU operating system has been developed so that users can have freedom in their computing. GNU is @dfn{free software}, meaning that users have the @url{https://www.gnu.org/philosophy/free-sw.html,four essential freedoms}: to run the program, to study and change the program in source code form, to redistribute exact copies, and to distribute modified versions. Packages found in the GNU distribution provide only software that conveys these four freedoms." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:422 +#: guix-git/doc/contributing.texi:452 msgid "In addition, the GNU distribution follow the @url{https://www.gnu.org/distros/free-system-distribution-guidelines.html,free software distribution guidelines}. Among other things, these guidelines reject non-free firmware, recommendations of non-free software, and discuss ways to deal with trademarks and patents." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:430 +#: guix-git/doc/contributing.texi:460 msgid "Some otherwise free upstream package sources contain a small and optional subset that violates the above guidelines, for instance because this subset is itself non-free code. When that happens, the offending items are removed with appropriate patches or code snippets in the @code{origin} form of the package (@pxref{Defining Packages}). This way, @code{guix build --source} returns the ``freed'' source rather than the unmodified upstream source." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:435 +#: guix-git/doc/contributing.texi:465 #, no-wrap msgid "package name" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:443 +#: guix-git/doc/contributing.texi:473 msgid "A package actually has two names associated with it. First, there is the name of the @emph{Scheme variable}, the one following @code{define-public}. By this name, the package can be made known in the Scheme code, for instance as input to another package. Second, there is the string in the @code{name} field of a package definition. This name is used by package management commands such as @command{guix package} and @command{guix build}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:448 +#: guix-git/doc/contributing.texi:478 msgid "Both are usually the same and correspond to the lowercase conversion of the project name chosen upstream, with underscores replaced with hyphens. For instance, GNUnet is available as @code{gnunet}, and SDL_net as @code{sdl-net}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:456 +#: guix-git/doc/contributing.texi:486 msgid "A noteworthy exception to this rule is when the project name is only a single character, or if an older maintained project with the same name already exists---regardless of whether it has already been packaged for Guix. Use common sense to make such names unambiguous and meaningful. For example, Guix's package for the shell called ``s'' upstream is @code{s-shell} and @emph{not} @code{s}. Feel free to ask your fellow hackers for inspiration." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:461 +#: guix-git/doc/contributing.texi:491 msgid "We do not add @code{lib} prefixes for library packages, unless these are already part of the official project name. But @pxref{Python Modules} and @ref{Perl Modules} for special rules concerning modules for the Python and Perl languages." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:463 +#: guix-git/doc/contributing.texi:493 msgid "Font package names are handled differently, @pxref{Fonts}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:468 +#: guix-git/doc/contributing.texi:498 #, no-wrap msgid "package version" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:477 +#: guix-git/doc/contributing.texi:507 msgid "We usually package only the latest version of a given free software project. But sometimes, for instance for incompatible library versions, two (or more) versions of the same package are needed. These require different Scheme variable names. We use the name as defined in @ref{Package Naming} for the most recent version; previous versions use the same name, suffixed by @code{-} and the smallest prefix of the version number that may distinguish the two versions." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:480 +#: guix-git/doc/contributing.texi:510 msgid "The name inside the package definition is the same for all versions of a package and does not contain any version number." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:482 +#: guix-git/doc/contributing.texi:512 msgid "For instance, the versions 2.24.20 and 3.9.12 of GTK+ may be packaged as follows:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:494 +#: guix-git/doc/contributing.texi:524 #, no-wrap msgid "" "(define-public gtk+\n" @@ -888,12 +930,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:496 +#: guix-git/doc/contributing.texi:526 msgid "If we also wanted GTK+ 3.8.2, this would be packaged as" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:502 +#: guix-git/doc/contributing.texi:532 #, no-wrap msgid "" "(define-public gtk+-3.8\n" @@ -904,23 +946,23 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:506 +#: guix-git/doc/contributing.texi:536 #, no-wrap msgid "version number, for VCS snapshots" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:512 +#: guix-git/doc/contributing.texi:542 msgid "Occasionally, we package snapshots of upstream's version control system (VCS) instead of formal releases. This should remain exceptional, because it is up to upstream developers to clarify what the stable release is. Yet, it is sometimes necessary. So, what should we put in the @code{version} field?" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:520 +#: guix-git/doc/contributing.texi:550 msgid "Clearly, we need to make the commit identifier of the VCS snapshot visible in the version string, but we also need to make sure that the version string is monotonically increasing so that @command{guix package --upgrade} can determine which version is newer. Since commit identifiers, notably with Git, are not monotonically increasing, we add a revision number that we increase each time we upgrade to a newer snapshot. The resulting version string looks like this:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:529 +#: guix-git/doc/contributing.texi:559 #, no-wrap msgid "" "2.0.11-3.cabba9e\n" @@ -933,12 +975,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:539 +#: guix-git/doc/contributing.texi:569 msgid "It is a good idea to strip commit identifiers in the @code{version} field to, say, 7 digits. It avoids an aesthetic annoyance (assuming aesthetics have a role to play here) as well as problems related to OS limits such as the maximum shebang length (127 bytes for the Linux kernel). There are helper functions for doing this for packages using @code{git-fetch} or @code{hg-fetch} (see below). It is best to use the full commit identifiers in @code{origin}s, though, to avoid ambiguities. A typical package definition may look like this:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:556 +#: guix-git/doc/contributing.texi:586 #, no-wrap msgid "" "(define my-package\n" @@ -958,18 +1000,18 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/contributing.texi:558 +#: guix-git/doc/contributing.texi:588 #, no-wrap msgid "{Scheme Procedure} git-version @var{VERSION} @var{REVISION} @var{COMMIT}" msgstr "" #. type: deffn -#: guix-git/doc/contributing.texi:560 +#: guix-git/doc/contributing.texi:590 msgid "Return the version string for packages using @code{git-fetch}." msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:564 +#: guix-git/doc/contributing.texi:594 #, no-wrap msgid "" "(git-version \"0.2.3\" \"0\" \"93818c936ee7e2f1ba1b315578bde363a7d43d05\")\n" @@ -977,71 +1019,71 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/contributing.texi:567 +#: guix-git/doc/contributing.texi:597 #, no-wrap msgid "{Scheme Procedure} hg-version @var{VERSION} @var{REVISION} @var{CHANGESET}" msgstr "" #. type: deffn -#: guix-git/doc/contributing.texi:570 +#: guix-git/doc/contributing.texi:600 msgid "Return the version string for packages using @code{hg-fetch}. It works in the same way as @code{git-version}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:575 +#: guix-git/doc/contributing.texi:605 #, no-wrap msgid "package description" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:576 +#: guix-git/doc/contributing.texi:606 #, no-wrap msgid "package synopsis" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:583 +#: guix-git/doc/contributing.texi:613 msgid "As we have seen before, each package in GNU@tie{}Guix includes a synopsis and a description (@pxref{Defining Packages}). Synopses and descriptions are important: They are what @command{guix package --search} searches, and a crucial piece of information to help users determine whether a given package suits their needs. Consequently, packagers should pay attention to what goes into them." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:591 +#: guix-git/doc/contributing.texi:621 msgid "Synopses must start with a capital letter and must not end with a period. They must not start with ``a'' or ``the'', which usually does not bring anything; for instance, prefer ``File-frobbing tool'' over ``A tool that frobs files''. The synopsis should say what the package is---e.g., ``Core GNU utilities (file, text, shell)''---or what it is used for---e.g., the synopsis for GNU@tie{}grep is ``Print lines matching a pattern''." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:601 +#: guix-git/doc/contributing.texi:631 msgid "Keep in mind that the synopsis must be meaningful for a very wide audience. For example, ``Manipulate alignments in the SAM format'' might make sense for a seasoned bioinformatics researcher, but might be fairly unhelpful or even misleading to a non-specialized audience. It is a good idea to come up with a synopsis that gives an idea of the application domain of the package. In this example, this might give something like ``Manipulate nucleotide sequence alignments'', which hopefully gives the user a better idea of whether this is what they are looking for." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:609 +#: guix-git/doc/contributing.texi:639 msgid "Descriptions should take between five and ten lines. Use full sentences, and avoid using acronyms without first introducing them. Please avoid marketing phrases such as ``world-leading'', ``industrial-strength'', and ``next-generation'', and avoid superlatives like ``the most advanced''---they are not helpful to users looking for a package and may even sound suspicious. Instead, try to be factual, mentioning use cases and features." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:610 +#: guix-git/doc/contributing.texi:640 #, no-wrap msgid "Texinfo markup, in package descriptions" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:619 +#: guix-git/doc/contributing.texi:649 msgid "Descriptions can include Texinfo markup, which is useful to introduce ornaments such as @code{@@code} or @code{@@dfn}, bullet lists, or hyperlinks (@pxref{Overview,,, texinfo, GNU Texinfo}). However you should be careful when using some characters for example @samp{@@} and curly braces which are the basic special characters in Texinfo (@pxref{Special Characters,,, texinfo, GNU Texinfo}). User interfaces such as @command{guix package --show} take care of rendering it appropriately." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:625 +#: guix-git/doc/contributing.texi:655 msgid "Synopses and descriptions are translated by volunteers @uref{https://translate.fedoraproject.org/projects/guix/packages, at Weblate} so that as many users as possible can read them in their native language. User interfaces search them and display them in the language specified by the current locale." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:630 +#: guix-git/doc/contributing.texi:660 msgid "To allow @command{xgettext} to extract them as translatable strings, synopses and descriptions @emph{must be literal strings}. This means that you cannot use @code{string-append} or @code{format} to construct these strings:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:636 +#: guix-git/doc/contributing.texi:666 #, no-wrap msgid "" "(package\n" @@ -1051,12 +1093,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:644 +#: guix-git/doc/contributing.texi:674 msgid "Translation is a lot of work so, as a packager, please pay even more attention to your synopses and descriptions as every change may entail additional work for translators. In order to help them, it is possible to make recommendations or instructions visible to them by inserting special comments like this (@pxref{xgettext Invocation,,, gettext, GNU Gettext}):" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:649 +#: guix-git/doc/contributing.texi:679 #, no-wrap msgid "" ";; TRANSLATORS: \"X11 resize-and-rotate\" should not be translated.\n" @@ -1065,440 +1107,439 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:654 +#: guix-git/doc/contributing.texi:684 #, no-wrap msgid "snippets, when to use" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:665 +#: guix-git/doc/contributing.texi:695 msgid "The boundary between using an origin snippet versus a build phase to modify the sources of a package can be elusive. Origin snippets are typically used to remove unwanted files such as bundled libraries, nonfree sources, or to apply simple substitutions. The source derived from an origin should produce a source that can be used to build the package on any system that the upstream package supports (i.e., act as the corresponding source). In particular, origin snippets must not embed store items in the sources; such patching should rather be done using build phases. Refer to the @code{origin} record documentation for more information (@pxref{origin Reference})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:669 +#: guix-git/doc/contributing.texi:699 #, no-wrap msgid "emacs, packaging" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:670 +#: guix-git/doc/contributing.texi:700 #, no-wrap msgid "elisp, packaging" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:682 +#: guix-git/doc/contributing.texi:712 msgid "Emacs packages should preferably use the Emacs build system (@pxref{emacs-build-system}), for uniformity and the benefits provided by its build phases, such as the auto-generation of the autoloads file and the byte compilation of the sources. Because there is no standardized way to run a test suite for Emacs packages, tests are disabled by default. When a test suite is available, it should be enabled by setting the @code{#:tests?} argument to @code{#true}. By default, the command to run the test is @command{make check}, but any command can be specified via the @code{#:test-command} argument. The @code{#:test-command} argument expects a list containing a command and its arguments, to be invoked during the @code{check} phase." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:687 +#: guix-git/doc/contributing.texi:717 msgid "The Elisp dependencies of Emacs packages are typically provided as @code{propagated-inputs} when required at run time. As for other packages, build or test dependencies should be specified as @code{native-inputs}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:696 +#: guix-git/doc/contributing.texi:726 msgid "Emacs packages sometimes depend on resources directories that should be installed along the Elisp files. The @code{#:include} argument can be used for that purpose, by specifying a list of regexps to match. The best practice when using the @code{#:include} argument is to extend rather than override its default value (accessible via the @code{%default-include} variable). As an example, a yasnippet extension package typically include a @file{snippets} directory, which could be copied to the installation directory using:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:699 +#: guix-git/doc/contributing.texi:729 #, no-wrap msgid "#:include (cons \"^snippets/\" %default-include)\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:705 +#: guix-git/doc/contributing.texi:735 msgid "When encountering problems, it is wise to check for the presence of the @code{Package-Requires} extension header in the package main source file, and whether any dependencies and their versions listed therein are satisfied." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:709 +#: guix-git/doc/contributing.texi:739 #, no-wrap msgid "python" msgstr "python" #. type: Plain text -#: guix-git/doc/contributing.texi:715 +#: guix-git/doc/contributing.texi:745 msgid "We currently package Python 2 and Python 3, under the Scheme variable names @code{python-2} and @code{python} as explained in @ref{Version Numbers}. To avoid confusion and naming clashes with other programming languages, it seems desirable that the name of a package for a Python module contains the word @code{python}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:722 +#: guix-git/doc/contributing.texi:752 msgid "Some modules are compatible with only one version of Python, others with both. If the package Foo is compiled with Python 3, we name it @code{python-foo}. If it is compiled with Python 2, we name it @code{python2-foo}. Packages should be added when they are necessary; we don't add Python 2 variants of the package unless we are going to use them." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:728 +#: guix-git/doc/contributing.texi:758 msgid "If a project already contains the word @code{python}, we drop this; for instance, the module python-dateutil is packaged under the names @code{python-dateutil} and @code{python2-dateutil}. If the project name starts with @code{py} (e.g.@: @code{pytz}), we keep it and prefix it as described above." msgstr "" #. type: subsubsection -#: guix-git/doc/contributing.texi:729 +#: guix-git/doc/contributing.texi:759 #, no-wrap msgid "Specifying Dependencies" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:730 +#: guix-git/doc/contributing.texi:760 #, no-wrap msgid "inputs, for Python packages" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:735 +#: guix-git/doc/contributing.texi:765 msgid "Dependency information for Python packages is usually available in the package source tree, with varying degrees of accuracy: in the @file{setup.py} file, in @file{requirements.txt}, or in @file{tox.ini}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:741 +#: guix-git/doc/contributing.texi:771 msgid "Your mission, when writing a recipe for a Python package, is to map these dependencies to the appropriate type of ``input'' (@pxref{package Reference, inputs}). Although the @code{pypi} importer normally does a good job (@pxref{Invoking guix import}), you may want to check the following check list to determine which dependency goes where." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:749 +#: guix-git/doc/contributing.texi:779 msgid "We currently package Python 2 with @code{setuptools} and @code{pip} installed like Python 3.4 has per default. Thus you don't need to specify either of these as an input. @command{guix lint} will warn you if you do." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:755 +#: guix-git/doc/contributing.texi:785 msgid "Python dependencies required at run time go into @code{propagated-inputs}. They are typically defined with the @code{install_requires} keyword in @file{setup.py}, or in the @file{requirements.txt} file." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:763 +#: guix-git/doc/contributing.texi:793 msgid "Python packages required only at build time---e.g., those listed with the @code{setup_requires} keyword in @file{setup.py}---or only for testing---e.g., those in @code{tests_require}---go into @code{native-inputs}. The rationale is that (1) they do not need to be propagated because they are not needed at run time, and (2) in a cross-compilation context, it's the ``native'' input that we'd want." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:767 +#: guix-git/doc/contributing.texi:797 msgid "Examples are the @code{pytest}, @code{mock}, and @code{nose} test frameworks. Of course if any of these packages is also required at run-time, it needs to go to @code{propagated-inputs}." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:772 +#: guix-git/doc/contributing.texi:802 msgid "Anything that does not fall in the previous categories goes to @code{inputs}, for example programs or C libraries required for building Python packages containing C extensions." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:778 +#: guix-git/doc/contributing.texi:808 msgid "If a Python package has optional dependencies (@code{extras_require}), it is up to you to decide whether to add them or not, based on their usefulness/overhead ratio (@pxref{Submitting Patches, @command{guix size}})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:785 +#: guix-git/doc/contributing.texi:815 #, no-wrap msgid "perl" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:796 +#: guix-git/doc/contributing.texi:826 msgid "Perl programs standing for themselves are named as any other package, using the lowercase upstream name. For Perl packages containing a single class, we use the lowercase class name, replace all occurrences of @code{::} by dashes and prepend the prefix @code{perl-}. So the class @code{XML::Parser} becomes @code{perl-xml-parser}. Modules containing several classes keep their lowercase upstream name and are also prepended by @code{perl-}. Such modules tend to have the word @code{perl} somewhere in their name, which gets dropped in favor of the prefix. For instance, @code{libwww-perl} becomes @code{perl-libwww}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:801 +#: guix-git/doc/contributing.texi:831 #, no-wrap msgid "java" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:804 +#: guix-git/doc/contributing.texi:834 msgid "Java programs standing for themselves are named as any other package, using the lowercase upstream name." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:810 +#: guix-git/doc/contributing.texi:840 msgid "To avoid confusion and naming clashes with other programming languages, it is desirable that the name of a package for a Java package is prefixed with @code{java-}. If a project already contains the word @code{java}, we drop this; for instance, the package @code{ngsjava} is packaged under the name @code{java-ngs}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:816 +#: guix-git/doc/contributing.texi:846 msgid "For Java packages containing a single class or a small class hierarchy, we use the lowercase class name, replace all occurrences of @code{.} by dashes and prepend the prefix @code{java-}. So the class @code{apache.commons.cli} becomes package @code{java-apache-commons-cli}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:821 +#: guix-git/doc/contributing.texi:851 #, no-wrap msgid "rust" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:824 +#: guix-git/doc/contributing.texi:854 msgid "Rust programs standing for themselves are named as any other package, using the lowercase upstream name." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:828 +#: guix-git/doc/contributing.texi:858 msgid "To prevent namespace collisions we prefix all other Rust packages with the @code{rust-} prefix. The name should be changed to lowercase as appropriate and dashes should remain in place." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:834 +#: guix-git/doc/contributing.texi:864 msgid "In the rust ecosystem it is common for multiple incompatible versions of a package to be used at any given time, so all package definitions should have a versioned suffix. The versioned suffix is the left-most non-zero digit (and any leading zeros, of course). This follows the ``caret'' version scheme intended by Cargo. Examples@: @code{rust-clap-2}, @code{rust-rand-0.6}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:844 +#: guix-git/doc/contributing.texi:874 msgid "Because of the difficulty in reusing rust packages as pre-compiled inputs for other packages the Cargo build system (@pxref{Build Systems, @code{cargo-build-system}}) presents the @code{#:cargo-inputs} and @code{cargo-development-inputs} keywords as build system arguments. It would be helpful to think of these as similar to @code{propagated-inputs} and @code{native-inputs}. Rust @code{dependencies} and @code{build-dependencies} should go in @code{#:cargo-inputs}, and @code{dev-dependencies} should go in @code{#:cargo-development-inputs}. If a Rust package links to other libraries then the standard placement in @code{inputs} and the like should be used." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:850 +#: guix-git/doc/contributing.texi:880 msgid "Care should be taken to ensure the correct version of dependencies are used; to this end we try to refrain from skipping the tests or using @code{#:skip-build?} when possible. Of course this is not always possible, as the package may be developed for a different Operating System, depend on features from the Nightly Rust compiler, or the test suite may have atrophied since it was released." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:855 guix-git/doc/guix.texi:1930 +#: guix-git/doc/contributing.texi:885 guix-git/doc/guix.texi:1947 #, no-wrap msgid "fonts" msgstr "font" #. type: Plain text -#: guix-git/doc/contributing.texi:861 +#: guix-git/doc/contributing.texi:891 msgid "For fonts that are in general not installed by a user for typesetting purposes, or that are distributed as part of a larger software package, we rely on the general packaging rules for software; for instance, this applies to the fonts delivered as part of the X.Org system or fonts that are part of TeX Live." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:865 +#: guix-git/doc/contributing.texi:895 msgid "To make it easier for a user to search for fonts, names for other packages containing only fonts are constructed as follows, independently of the upstream package name." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:873 +#: guix-git/doc/contributing.texi:903 msgid "The name of a package containing only one font family starts with @code{font-}; it is followed by the foundry name and a dash @code{-} if the foundry is known, and the font family name, in which spaces are replaced by dashes (and as usual, all upper case letters are transformed to lower case). For example, the Gentium font family by SIL is packaged under the name @code{font-sil-gentium}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:882 +#: guix-git/doc/contributing.texi:912 msgid "For a package containing several font families, the name of the collection is used in the place of the font family name. For instance, the Liberation fonts consist of three families, Liberation Sans, Liberation Serif and Liberation Mono. These could be packaged separately under the names @code{font-liberation-sans} and so on; but as they are distributed together under a common name, we prefer to package them together as @code{font-liberation}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:888 +#: guix-git/doc/contributing.texi:918 msgid "In the case where several formats of the same font family or font collection are packaged separately, a short form of the format, prepended by a dash, is added to the package name. We use @code{-ttf} for TrueType fonts, @code{-otf} for OpenType fonts and @code{-type1} for PostScript Type 1 fonts." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:896 +#: guix-git/doc/contributing.texi:926 msgid "In general our code follows the GNU Coding Standards (@pxref{Top,,, standards, GNU Coding Standards}). However, they do not say much about Scheme, so here are some additional rules." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:904 -#: guix-git/doc/contributing.texi:905 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:934 +#: guix-git/doc/contributing.texi:935 #, no-wrap msgid "Programming Paradigm" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "How to compose your elements." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:911 -#: guix-git/doc/contributing.texi:912 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:941 +#: guix-git/doc/contributing.texi:942 #, no-wrap msgid "Modules" msgstr "Moduli" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Where to store your code?" msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:922 -#: guix-git/doc/contributing.texi:923 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:952 +#: guix-git/doc/contributing.texi:953 #, no-wrap msgid "Data Types and Pattern Matching" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Implementing data structures." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:937 -#: guix-git/doc/contributing.texi:938 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:967 +#: guix-git/doc/contributing.texi:968 #, no-wrap msgid "Formatting Code" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Writing conventions." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:910 +#: guix-git/doc/contributing.texi:940 msgid "Scheme code in Guix is written in a purely functional style. One exception is code that involves input/output, and procedures that implement low-level concepts, such as the @code{memoize} procedure." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:918 +#: guix-git/doc/contributing.texi:948 msgid "Guile modules that are meant to be used on the builder side must live in the @code{(guix build @dots{})} name space. They must not refer to other Guix or GNU modules. However, it is OK for a ``host-side'' module to use a build-side module." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:921 +#: guix-git/doc/contributing.texi:951 msgid "Modules that deal with the broader GNU system should be in the @code{(gnu @dots{})} name space rather than @code{(guix @dots{})}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:930 +#: guix-git/doc/contributing.texi:960 msgid "The tendency in classical Lisp is to use lists to represent everything, and then to browse them ``by hand'' using @code{car}, @code{cdr}, @code{cadr}, and co. There are several problems with that style, notably the fact that it is hard to read, error-prone, and a hindrance to proper type error reports." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:936 +#: guix-git/doc/contributing.texi:966 msgid "Guix code should define appropriate data types (for instance, using @code{define-record-type*}) rather than abuse lists. In addition, it should use pattern matching, via Guile’s @code{(ice-9 match)} module, especially when matching lists (@pxref{Pattern Matching,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:940 +#: guix-git/doc/contributing.texi:970 #, no-wrap msgid "formatting code" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:941 +#: guix-git/doc/contributing.texi:971 #, no-wrap msgid "coding style" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:948 +#: guix-git/doc/contributing.texi:978 msgid "When writing Scheme code, we follow common wisdom among Scheme programmers. In general, we follow the @url{https://mumble.net/~campbell/scheme/style.txt, Riastradh's Lisp Style Rules}. This document happens to describe the conventions mostly used in Guile’s code too. It is very thoughtful and well written, so please do read it." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:955 +#: guix-git/doc/contributing.texi:985 msgid "Some special forms introduced in Guix, such as the @code{substitute*} macro, have special indentation rules. These are defined in the @file{.dir-locals.el} file, which Emacs automatically uses. Also note that Emacs-Guix provides @code{guix-devel-mode} mode that indents and highlights Guix code properly (@pxref{Development,,, emacs-guix, The Emacs-Guix Reference Manual})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:956 +#: guix-git/doc/contributing.texi:986 #, no-wrap msgid "indentation, of code" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:957 +#: guix-git/doc/contributing.texi:987 #, no-wrap msgid "formatting, of code" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:960 +#: guix-git/doc/contributing.texi:990 msgid "If you do not use Emacs, please make sure to let your editor knows these rules. To automatically indent a package definition, you can also run:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:963 +#: guix-git/doc/contributing.texi:993 #, no-wrap -msgid "./etc/indent-code.el gnu/packages/@var{file}.scm @var{package}\n" +msgid "./pre-inst-env guix style @var{package}\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:969 -msgid "This automatically indents the definition of @var{package} in @file{gnu/packages/@var{file}.scm} by running Emacs in batch mode. To indent a whole file, omit the second argument:" -msgstr "" - -#. type: example -#: guix-git/doc/contributing.texi:972 -#, no-wrap -msgid "./etc/indent-code.el gnu/services/@var{file}.scm\n" +#: guix-git/doc/contributing.texi:997 +msgid "@xref{Invoking guix style}, for more information." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:974 +#: guix-git/doc/contributing.texi:998 #, no-wrap msgid "Vim, Scheme code editing" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:980 +#: guix-git/doc/contributing.texi:1004 msgid "If you are editing code with Vim, we recommend that you run @code{:set autoindent} so that your code is automatically indented as you type. Additionally, @uref{https://www.vim.org/scripts/script.php?script_id=3998, @code{paredit.vim}} may help you deal with all these parentheses." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:984 +#: guix-git/doc/contributing.texi:1008 msgid "We require all top-level procedures to carry a docstring. This requirement can be relaxed for simple private procedures in the @code{(guix build @dots{})} name space, though." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:987 +#: guix-git/doc/contributing.texi:1011 msgid "Procedures should not have more than four positional parameters. Use keyword parameters for procedures that take more than four parameters." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1001 +#: guix-git/doc/contributing.texi:1025 msgid "Development is done using the Git distributed version control system. Thus, access to the repository is not strictly necessary. We welcome contributions in the form of patches as produced by @code{git format-patch} sent to the @email{guix-patches@@gnu.org} mailing list (@pxref{submitting patches,, Submitting patches to a project, git, Git User Manual}). Contributors are encouraged to take a moment to set some Git repository options (@pxref{Configuring Git}) first, which can improve the readability of patches. Seasoned Guix developers may also want to look at the section on commit access (@pxref{Commit Access})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1008 +#: guix-git/doc/contributing.texi:1032 msgid "This mailing list is backed by a Debbugs instance, which allows us to keep track of submissions (@pxref{Tracking Bugs and Patches}). Each message sent to that mailing list gets a new tracking number assigned; people can then follow up on the submission by sending email to @code{@var{NNN}@@debbugs.gnu.org}, where @var{NNN} is the tracking number (@pxref{Sending a Patch Series})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1012 +#: guix-git/doc/contributing.texi:1036 msgid "Please write commit logs in the ChangeLog format (@pxref{Change Logs,,, standards, GNU Coding Standards}); you can check the commit history for examples." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1015 +#: guix-git/doc/contributing.texi:1039 msgid "Before submitting a patch that adds or modifies a package definition, please run through this check list:" msgstr "" #. type: code{#1} -#: guix-git/doc/contributing.texi:1017 guix-git/doc/contributing.texi:1223 +#: guix-git/doc/contributing.texi:1041 guix-git/doc/contributing.texi:1251 #, no-wrap msgid "git format-patch" msgstr "" #. type: code{#1} -#: guix-git/doc/contributing.texi:1018 +#: guix-git/doc/contributing.texi:1042 #, no-wrap msgid "git-format-patch" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1025 +#: guix-git/doc/contributing.texi:1049 msgid "When generating your patches with @code{git format-patch} or @code{git send-email}, we recommend using the option @code{--base=}, perhaps with the value @code{auto}. This option adds a note to the patch stating which commit the patch is based on. This helps reviewers understand how to apply and review your patches." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1031 +#: guix-git/doc/contributing.texi:1055 msgid "If the authors of the packaged software provide a cryptographic signature for the release tarball, make an effort to verify the authenticity of the archive. For a detached GPG signature file this would be done with the @code{gpg --verify} command." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1035 +#: guix-git/doc/contributing.texi:1059 msgid "Take some time to provide an adequate synopsis and description for the package. @xref{Synopses and Descriptions}, for some guidelines." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1040 +#: guix-git/doc/contributing.texi:1064 msgid "Run @code{guix lint @var{package}}, where @var{package} is the name of the new or modified package, and fix any errors it reports (@pxref{Invoking guix lint})." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1044 +#: guix-git/doc/contributing.texi:1068 +msgid "Run @code{guix style @var{package}} to format the new package definition according to the project's conventions (@pxref{Invoking guix style})." +msgstr "" + +#. type: enumerate +#: guix-git/doc/contributing.texi:1072 msgid "Make sure the package builds on your platform, using @code{guix build @var{package}}." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1052 +#: guix-git/doc/contributing.texi:1080 msgid "We recommend you also try building the package on other supported platforms. As you may not have access to actual hardware platforms, we recommend using the @code{qemu-binfmt-service-type} to emulate them. In order to enable it, add the @code{virtualization} service module and the following service to the list of services in your @code{operating-system} configuration:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:1057 +#: guix-git/doc/contributing.texi:1085 #, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -1507,17 +1548,17 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1060 +#: guix-git/doc/contributing.texi:1088 msgid "Then reconfigure your system." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1065 +#: guix-git/doc/contributing.texi:1093 msgid "You can then build packages for different platforms by specifying the @code{--system} option. For example, to build the \"hello\" package for the armhf or aarch64 architectures, you would run the following commands, respectively:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1068 +#: guix-git/doc/contributing.texi:1096 #, no-wrap msgid "" "guix build --system=armhf-linux --rounds=2 hello\n" @@ -1525,231 +1566,231 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1071 +#: guix-git/doc/contributing.texi:1099 #, no-wrap msgid "bundling" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1074 +#: guix-git/doc/contributing.texi:1102 msgid "Make sure the package does not use bundled copies of software already available as separate packages." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1083 +#: guix-git/doc/contributing.texi:1111 msgid "Sometimes, packages include copies of the source code of their dependencies as a convenience for users. However, as a distribution, we want to make sure that such packages end up using the copy we already have in the distribution, if there is one. This improves resource usage (the dependency is built and stored only once), and allows the distribution to make transverse changes such as applying security updates for a given software package in a single place and have them affect the whole system---something that bundled copies prevent." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1092 +#: guix-git/doc/contributing.texi:1120 msgid "Take a look at the profile reported by @command{guix size} (@pxref{Invoking guix size}). This will allow you to notice references to other packages unwillingly retained. It may also help determine whether to split the package (@pxref{Packages with Multiple Outputs}), and which optional dependencies should be used. In particular, avoid adding @code{texlive} as a dependency: because of its extreme size, use the @code{texlive-tiny} package or @code{texlive-union} procedure instead." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1097 +#: guix-git/doc/contributing.texi:1125 msgid "For important changes, check that dependent packages (if applicable) are not affected by the change; @code{guix refresh --list-dependent @var{package}} will help you do that (@pxref{Invoking guix refresh})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1099 +#: guix-git/doc/contributing.texi:1127 #, no-wrap msgid "branching strategy" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1100 +#: guix-git/doc/contributing.texi:1128 #, no-wrap msgid "rebuild scheduling strategy" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1103 +#: guix-git/doc/contributing.texi:1131 msgid "Depending on the number of dependent packages and thus the amount of rebuilding induced, commits go to different branches, along these lines:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1105 +#: guix-git/doc/contributing.texi:1133 #, no-wrap msgid "300 dependent packages or less" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1107 +#: guix-git/doc/contributing.texi:1135 msgid "@code{master} branch (non-disruptive changes)." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1108 +#: guix-git/doc/contributing.texi:1136 #, no-wrap msgid "between 300 and 1,800 dependent packages" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1114 +#: guix-git/doc/contributing.texi:1142 msgid "@code{staging} branch (non-disruptive changes). This branch is intended to be merged in @code{master} every 6 weeks or so. Topical changes (e.g., an update of the GNOME stack) can instead go to a specific branch (say, @code{gnome-updates}). This branch is not expected to be buildable or usable until late in its development process." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1115 +#: guix-git/doc/contributing.texi:1143 #, no-wrap msgid "more than 1,800 dependent packages" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1120 +#: guix-git/doc/contributing.texi:1148 msgid "@code{core-updates} branch (may include major and potentially disruptive changes). This branch is intended to be merged in @code{master} every 6 months or so. This branch is not expected to be buildable or usable until late in its development process." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1127 +#: guix-git/doc/contributing.texi:1155 msgid "All these branches are @uref{https://@value{SUBSTITUTE-SERVER-1}, tracked by our build farm} and merged into @code{master} once everything has been successfully built. This allows us to fix issues before they hit users, and to reduce the window during which pre-built binaries are not available." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1136 +#: guix-git/doc/contributing.texi:1164 msgid "When we decide to start building the @code{staging} or @code{core-updates} branches, they will be forked and renamed with the suffix @code{-frozen}, at which time only bug fixes may be pushed to the frozen branches. The @code{core-updates} and @code{staging} branches will remain open to accept patches for the next cycle. Please ask on the mailing list or IRC if unsure where to place a patch." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1138 +#: guix-git/doc/contributing.texi:1166 #, no-wrap msgid "determinism, of build processes" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1139 +#: guix-git/doc/contributing.texi:1167 #, no-wrap msgid "reproducible builds, checking" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1143 +#: guix-git/doc/contributing.texi:1171 msgid "Check whether the package's build process is deterministic. This typically means checking whether an independent build of the package yields the exact same result that you obtained, bit for bit." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1146 +#: guix-git/doc/contributing.texi:1174 msgid "A simple way to do that is by building the same package several times in a row on your machine (@pxref{Invoking guix build}):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1149 +#: guix-git/doc/contributing.texi:1177 #, no-wrap msgid "guix build --rounds=2 my-package\n" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1153 +#: guix-git/doc/contributing.texi:1181 msgid "This is enough to catch a class of common non-determinism issues, such as timestamps or randomly-generated output in the build result." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1163 +#: guix-git/doc/contributing.texi:1191 msgid "Another option is to use @command{guix challenge} (@pxref{Invoking guix challenge}). You may run it once the package has been committed and built by @code{@value{SUBSTITUTE-SERVER-1}} to check whether it obtains the same result as you did. Better yet: Find another machine that can build it and run @command{guix publish}. Since the remote build machine is likely different from yours, this can catch non-determinism issues related to the hardware---e.g., use of different instruction set extensions---or to the operating system kernel---e.g., reliance on @code{uname} or @file{/proc} files." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1169 +#: guix-git/doc/contributing.texi:1197 msgid "When writing documentation, please use gender-neutral wording when referring to people, such as @uref{https://en.wikipedia.org/wiki/Singular_they, singular ``they''@comma{} ``their''@comma{} ``them''}, and so forth." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1173 +#: guix-git/doc/contributing.texi:1201 msgid "Verify that your patch contains only one set of related changes. Bundling unrelated changes together makes reviewing harder and slower." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1176 +#: guix-git/doc/contributing.texi:1204 msgid "Examples of unrelated changes include the addition of several packages, or a package update along with fixes to that package." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1181 -msgid "Please follow our code formatting rules, possibly running the @command{etc/indent-code.el} script to do that automatically for you (@pxref{Formatting Code})." +#: guix-git/doc/contributing.texi:1209 +msgid "Please follow our code formatting rules, possibly running @command{guix style} script to do that automatically for you (@pxref{Formatting Code})." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1189 +#: guix-git/doc/contributing.texi:1217 msgid "When possible, use mirrors in the source URL (@pxref{Invoking guix download}). Use reliable URLs, not generated ones. For instance, GitHub archives are not necessarily identical from one generation to the next, so in this case it's often better to clone the repository. Don't use the @command{name} field in the URL: it is not very useful and if the name changes, the URL will probably be wrong." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1193 +#: guix-git/doc/contributing.texi:1221 msgid "Check if Guix builds (@pxref{Building from Git}) and address the warnings, especially those about use of undefined symbols." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1196 +#: guix-git/doc/contributing.texi:1224 msgid "Make sure your changes do not break Guix and simulate a @code{guix pull} with:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1198 +#: guix-git/doc/contributing.texi:1226 #, no-wrap msgid "guix pull --url=/path/to/your/checkout --profile=/tmp/guix.master\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1211 +#: guix-git/doc/contributing.texi:1239 msgid "When posting a patch to the mailing list, use @samp{[PATCH] @dots{}} as a subject, if your patch is to be applied on a branch other than @code{master}, say @code{core-updates}, specify it in the subject like @samp{[PATCH core-updates] @dots{}}. You may use your email client or the @command{git send-email} command (@pxref{Sending a Patch Series}). We prefer to get patches in plain text messages, either inline or as MIME attachments. You are advised to pay attention if your email client changes anything like line breaks or indentation which could potentially break the patches." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1216 +#: guix-git/doc/contributing.texi:1244 msgid "Expect some delay when you submit your very first patch to @email{guix-patches@@gnu.org}. You have to wait until you get an acknowledgement with the assigned tracking number. Future acknowledgements should not be delayed." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1219 +#: guix-git/doc/contributing.texi:1247 msgid "When a bug is resolved, please close the thread by sending an email to @email{@var{NNN}-done@@debbugs.gnu.org}." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1220 guix-git/doc/contributing.texi:1221 +#: guix-git/doc/contributing.texi:1248 guix-git/doc/contributing.texi:1249 #, no-wrap msgid "Configuring Git" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1222 +#: guix-git/doc/contributing.texi:1250 #, no-wrap msgid "git configuration" msgstr "" #. type: code{#1} -#: guix-git/doc/contributing.texi:1224 guix-git/doc/contributing.texi:1259 +#: guix-git/doc/contributing.texi:1252 guix-git/doc/contributing.texi:1287 #, no-wrap msgid "git send-email" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1232 +#: guix-git/doc/contributing.texi:1260 msgid "If you have not done so already, you may wish to set a name and email that will be associated with your commits (@pxref{telling git your name, , Telling Git your name, git, Git User Manual}). If you wish to use a different name or email just for commits in this repository, you can use @command{git config --local}, or edit @file{.git/config} in the repository instead of @file{~/.gitconfig}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1238 +#: guix-git/doc/contributing.texi:1266 msgid "We provide some default settings in @file{etc/git/gitconfig} which modify how patches are generated, making them easier to read and apply. These settings can be applied by manually copying them to @file{.git/config} in your checkout, or by telling Git to include the whole file:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1241 +#: guix-git/doc/contributing.texi:1269 #, no-wrap msgid "git config --local include.path ../etc/git/gitconfig\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1245 +#: guix-git/doc/contributing.texi:1273 msgid "From then on, any changes to @file{etc/git/gitconfig} would automatically take effect." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1250 +#: guix-git/doc/contributing.texi:1278 msgid "Since the first patch in a series must be sent separately (@pxref{Sending a Patch Series}), it can also be helpful to tell @command{git format-patch} to handle the e-mail threading instead of @command{git send-email}:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1254 +#: guix-git/doc/contributing.texi:1282 #, no-wrap msgid "" "git config --local format.thread shallow\n" @@ -1757,184 +1798,184 @@ msgid "" msgstr "" #. type: anchor{#1} -#: guix-git/doc/contributing.texi:1256 guix-git/doc/contributing.texi:1258 +#: guix-git/doc/contributing.texi:1284 guix-git/doc/contributing.texi:1286 #, no-wrap msgid "Sending a Patch Series" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1258 +#: guix-git/doc/contributing.texi:1286 #, no-wrap msgid "patch series" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1269 +#: guix-git/doc/contributing.texi:1297 msgid "When sending a patch series (e.g., using @code{git send-email}), please first send one message to @email{guix-patches@@gnu.org}, and then send subsequent patches to @email{@var{NNN}@@debbugs.gnu.org} to make sure they are kept together. See @uref{https://debbugs.gnu.org/Advanced.html, the Debbugs documentation} for more information. You can install @command{git send-email} with @command{guix install git:send-email}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1275 +#: guix-git/doc/contributing.texi:1303 msgid "This section describes how the Guix project tracks its bug reports and patch submissions." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1282 -#: guix-git/doc/contributing.texi:1283 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1310 +#: guix-git/doc/contributing.texi:1311 #, no-wrap msgid "The Issue Tracker" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "The official bug and patch tracker." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1296 -#: guix-git/doc/contributing.texi:1297 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1324 +#: guix-git/doc/contributing.texi:1325 #, no-wrap msgid "Debbugs User Interfaces" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "Ways to interact with Debbugs." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1336 -#: guix-git/doc/contributing.texi:1337 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1364 +#: guix-git/doc/contributing.texi:1365 #, no-wrap msgid "Debbugs Usertags" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "Tag reports with custom labels." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1285 +#: guix-git/doc/contributing.texi:1313 #, no-wrap msgid "bug reports, tracking" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1286 +#: guix-git/doc/contributing.texi:1314 #, no-wrap msgid "patch submissions, tracking" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1287 +#: guix-git/doc/contributing.texi:1315 #, no-wrap msgid "issue tracking" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1288 +#: guix-git/doc/contributing.texi:1316 #, no-wrap msgid "Debbugs, issue tracking system" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1295 +#: guix-git/doc/contributing.texi:1323 msgid "Bug reports and patch submissions are currently tracked using the Debbugs instance at @uref{https://bugs.gnu.org}. Bug reports are filed against the @code{guix} ``package'' (in Debbugs parlance), by sending email to @email{bug-guix@@gnu.org}, while patch submissions are filed against the @code{guix-patches} package by sending email to @email{guix-patches@@gnu.org} (@pxref{Submitting Patches})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1301 +#: guix-git/doc/contributing.texi:1329 msgid "A web interface (actually @emph{two} web interfaces!) are available to browse issues:" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1310 +#: guix-git/doc/contributing.texi:1338 msgid "@url{https://issues.guix.gnu.org} provides a pleasant interface@footnote{The web interface at @url{https://issues.guix.gnu.org} is powered by Mumi, a nice piece of software written in Guile, and you can help! See @url{https://git.elephly.net/gitweb.cgi?p=software/mumi.git}.} to browse bug reports and patches, and to participate in discussions;" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1312 +#: guix-git/doc/contributing.texi:1340 msgid "@url{https://bugs.gnu.org/guix} lists bug reports;" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1314 +#: guix-git/doc/contributing.texi:1342 msgid "@url{https://bugs.gnu.org/guix-patches} lists patch submissions." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1319 +#: guix-git/doc/contributing.texi:1347 msgid "To view discussions related to issue number @var{n}, go to @indicateurl{https://issues.guix.gnu.org/@var{n}} or @indicateurl{https://bugs.gnu.org/@var{n}}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1322 +#: guix-git/doc/contributing.texi:1350 msgid "If you use Emacs, you may find it more convenient to interact with issues using @file{debbugs.el}, which you can install with:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1325 +#: guix-git/doc/contributing.texi:1353 #, no-wrap msgid "guix install emacs-debbugs\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1328 +#: guix-git/doc/contributing.texi:1356 msgid "For example, to list all open issues on @code{guix-patches}, hit:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1331 +#: guix-git/doc/contributing.texi:1359 #, no-wrap msgid "@kbd{C-u} @kbd{M-x} debbugs-gnu @kbd{RET} @kbd{RET} guix-patches @kbd{RET} n y\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1335 +#: guix-git/doc/contributing.texi:1363 msgid "@xref{Top,,, debbugs-ug, Debbugs User Guide}, for more information on this nifty tool!" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1339 +#: guix-git/doc/contributing.texi:1367 #, no-wrap msgid "usertags, for debbugs" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1340 +#: guix-git/doc/contributing.texi:1368 #, no-wrap msgid "Debbugs usertags" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1346 +#: guix-git/doc/contributing.texi:1374 msgid "Debbugs provides a feature called @dfn{usertags} that allows any user to tag any bug with an arbitrary label. Bugs can be searched by usertag, so this is a handy way to organize bugs@footnote{The list of usertags is public information, and anyone can modify any user's list of usertags, so keep that in mind if you choose to use this feature.}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1352 +#: guix-git/doc/contributing.texi:1380 msgid "For example, to view all the bug reports (or patches, in the case of @code{guix-patches}) tagged with the usertag @code{powerpc64le-linux} for the user @code{guix}, open a URL like the following in a web browser: @url{https://debbugs.gnu.org/cgi-bin/pkgreport.cgi?tag=powerpc64le-linux;users=guix}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1356 +#: guix-git/doc/contributing.texi:1384 msgid "For more information on how to use usertags, please refer to the documentation for Debbugs or the documentation for whatever tool you use to interact with Debbugs." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1361 +#: guix-git/doc/contributing.texi:1389 msgid "In Guix, we are experimenting with usertags to keep track of architecture-specific issues. To facilitate collaboration, all our usertags are associated with the single user @code{guix}. The following usertags currently exist for that user:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1364 guix-git/doc/guix.texi:556 +#: guix-git/doc/contributing.texi:1392 guix-git/doc/guix.texi:557 #, no-wrap msgid "powerpc64le-linux" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1372 +#: guix-git/doc/contributing.texi:1400 msgid "The purpose of this usertag is to make it easy to find the issues that matter most for the @code{powerpc64le-linux} system type. Please assign this usertag to bugs or patches that affect @code{powerpc64le-linux} but not other system types. In addition, you may use it to identify issues that for some reason are particularly important for the @code{powerpc64le-linux} system type, even if the issue affects other system types, too." msgstr "" @@ -1942,134 +1983,134 @@ msgstr "" #. type: item #. #-#-#-#-# guix.pot (guix manual checkout) #-#-#-#-# #. type: cindex -#: guix-git/doc/contributing.texi:1373 guix-git/doc/guix.texi:3070 -#: guix-git/doc/guix.texi:4771 +#: guix-git/doc/contributing.texi:1401 guix-git/doc/guix.texi:3087 +#: guix-git/doc/guix.texi:4789 #, no-wrap msgid "reproducibility" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1377 +#: guix-git/doc/contributing.texi:1405 msgid "For issues related to reproducibility. For example, it would be appropriate to assign this usertag to a bug report for a package that fails to build reproducibly." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1384 +#: guix-git/doc/contributing.texi:1412 msgid "If you're a committer and you want to add a usertag, just start using it with the @code{guix} user. If the usertag proves useful to you, consider updating this section of the manual so that others will know what your usertag means." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1388 +#: guix-git/doc/contributing.texi:1416 #, no-wrap msgid "commit access, for developers" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1394 -msgid "Everyone can contribute to Guix without having commit access (@pxref{Submitting Patches}). However, for frequent contributors, having write access to the repository can be convenient. Commit access should not be thought of as a ``badge of honor'' but rather as a responsibility a contributor is willing to take to help the project." +#: guix-git/doc/contributing.texi:1427 +msgid "Everyone can contribute to Guix without having commit access (@pxref{Submitting Patches}). However, for frequent contributors, having write access to the repository can be convenient. As a rule of thumb, a contributor should have accumulated fifty (50) reviewed commits to be considered as a committer and have sustained their activity in the project for at least 6 months. This ensures enough interactions with the contributor, which is essential for mentoring and assessing whether they are ready to become a committer. Commit access should not be thought of as a ``badge of honor'' but rather as a responsibility a contributor is willing to take to help the project." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1398 +#: guix-git/doc/contributing.texi:1431 msgid "The following sections explain how to get commit access, how to be ready to push commits, and the policies and community expectations for commits pushed upstream." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1399 +#: guix-git/doc/contributing.texi:1432 #, no-wrap msgid "Applying for Commit Access" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1403 +#: guix-git/doc/contributing.texi:1436 msgid "When you deem it necessary, consider applying for commit access by following these steps:" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1412 +#: guix-git/doc/contributing.texi:1445 msgid "Find three committers who would vouch for you. You can view the list of committers at @url{https://savannah.gnu.org/project/memberlist.php?group=guix}. Each of them should email a statement to @email{guix-maintainers@@gnu.org} (a private alias for the collective of maintainers), signed with their OpenPGP key." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1418 +#: guix-git/doc/contributing.texi:1451 msgid "Committers are expected to have had some interactions with you as a contributor and to be able to judge whether you are sufficiently familiar with the project's practices. It is @emph{not} a judgment on the value of your work, so a refusal should rather be interpreted as ``let's try again later''." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1425 +#: guix-git/doc/contributing.texi:1458 msgid "Send @email{guix-maintainers@@gnu.org} a message stating your intent, listing the three committers who support your application, signed with the OpenPGP key you will use to sign commits, and giving its fingerprint (see below). See @uref{https://emailselfdefense.fsf.org/en/}, for an introduction to public-key cryptography with GnuPG." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1431 +#: guix-git/doc/contributing.texi:1464 msgid "Set up GnuPG such that it never uses the SHA1 hash algorithm for digital signatures, which is known to be unsafe since 2019, for instance by adding the following line to @file{~/.gnupg/gpg.conf} (@pxref{GPG Esoteric Options,,, gnupg, The GNU Privacy Guard Manual}):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1434 +#: guix-git/doc/contributing.texi:1467 #, no-wrap msgid "digest-algo sha512\n" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1439 +#: guix-git/doc/contributing.texi:1472 msgid "Maintainers ultimately decide whether to grant you commit access, usually following your referrals' recommendation." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1441 +#: guix-git/doc/contributing.texi:1474 #, no-wrap msgid "OpenPGP, signed commits" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1446 +#: guix-git/doc/contributing.texi:1479 msgid "If and once you've been given access, please send a message to @email{guix-devel@@gnu.org} to say so, again signed with the OpenPGP key you will use to sign commits (do that before pushing your first commit). That way, everyone can notice and ensure you control that OpenPGP key." msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:1447 guix-git/doc/guix.texi:17972 +#: guix-git/doc/contributing.texi:1480 guix-git/doc/guix.texi:18334 #, no-wrap msgid "Important" msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:1449 +#: guix-git/doc/contributing.texi:1482 msgid "Before you can push for the first time, maintainers must:" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1453 +#: guix-git/doc/contributing.texi:1486 msgid "add your OpenPGP key to the @code{keyring} branch;" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1456 +#: guix-git/doc/contributing.texi:1489 msgid "add your OpenPGP fingerprint to the @file{.guix-authorizations} file of the branch(es) you will commit to." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1461 +#: guix-git/doc/contributing.texi:1494 msgid "Make sure to read the rest of this section and... profit!" msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:1467 +#: guix-git/doc/contributing.texi:1500 msgid "Maintainers are happy to give commit access to people who have been contributing for some time and have a track record---don't be shy and don't underestimate your work!" msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:1471 +#: guix-git/doc/contributing.texi:1504 msgid "However, note that the project is working towards a more automated patch review and merging system, which, as a consequence, may lead us to have fewer people with commit access to the main repository. Stay tuned!" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1478 +#: guix-git/doc/contributing.texi:1511 msgid "All commits that are pushed to the central repository on Savannah must be signed with an OpenPGP key, and the public key should be uploaded to your user account on Savannah and to public key servers, such as @code{keys.openpgp.org}. To configure Git to automatically sign commits, run:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1481 +#: guix-git/doc/contributing.texi:1514 #, no-wrap msgid "" "git config commit.gpgsign true\n" @@ -2077,7 +2118,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1484 +#: guix-git/doc/contributing.texi:1517 #, no-wrap msgid "" "# Substitute the fingerprint of your public PGP key.\n" @@ -2085,348 +2126,348 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1489 +#: guix-git/doc/contributing.texi:1522 msgid "You can prevent yourself from accidentally pushing unsigned commits to Savannah by using the pre-push Git hook located at @file{etc/git/pre-push}:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1492 +#: guix-git/doc/contributing.texi:1525 #, no-wrap msgid "cp etc/git/pre-push .git/hooks/pre-push\n" msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1494 +#: guix-git/doc/contributing.texi:1527 #, no-wrap msgid "Commit Policy" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1499 +#: guix-git/doc/contributing.texi:1532 msgid "If you get commit access, please make sure to follow the policy below (discussions of the policy can take place on @email{guix-devel@@gnu.org})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1504 +#: guix-git/doc/contributing.texi:1537 msgid "Non-trivial patches should always be posted to @email{guix-patches@@gnu.org} (trivial patches include fixing typos, etc.). This mailing list fills the patch-tracking database (@pxref{Tracking Bugs and Patches})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1513 +#: guix-git/doc/contributing.texi:1546 msgid "For patches that just add a new package, and a simple one, it's OK to commit, if you're confident (which means you successfully built it in a chroot setup, and have done a reasonable copyright and license auditing). Likewise for package upgrades, except upgrades that trigger a lot of rebuilds (for example, upgrading GnuTLS or GLib). We have a mailing list for commit notifications (@email{guix-commits@@gnu.org}), so people can notice. Before pushing your changes, make sure to run @code{git pull --rebase}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1518 +#: guix-git/doc/contributing.texi:1551 msgid "When pushing a commit on behalf of somebody else, please add a @code{Signed-off-by} line at the end of the commit log message---e.g., with @command{git am --signoff}. This improves tracking of who did what." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1522 +#: guix-git/doc/contributing.texi:1555 msgid "When adding channel news entries (@pxref{Channels, Writing Channel News}), make sure they are well-formed by running the following command right before pushing:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1525 +#: guix-git/doc/contributing.texi:1558 #, no-wrap msgid "make check-channel-news\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1531 +#: guix-git/doc/contributing.texi:1564 msgid "For anything else, please post to @email{guix-patches@@gnu.org} and leave time for a review, without committing anything (@pxref{Submitting Patches}). If you didn’t receive any reply after two weeks, and if you're confident, it's OK to commit." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1534 +#: guix-git/doc/contributing.texi:1567 msgid "That last part is subject to being adjusted, allowing individuals to commit directly on non-controversial changes on parts they’re familiar with." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1535 +#: guix-git/doc/contributing.texi:1568 #, no-wrap msgid "Addressing Issues" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1546 +#: guix-git/doc/contributing.texi:1579 msgid "Peer review (@pxref{Submitting Patches}) and tools such as @command{guix lint} (@pxref{Invoking guix lint}) and the test suite (@pxref{Running the Test Suite}) should catch issues before they are pushed. Yet, commits that ``break'' functionality might occasionally go through. When that happens, there are two priorities: mitigating the impact, and understanding what happened to reduce the chance of similar incidents in the future. The responsibility for both these things primarily lies with those involved, but like everything this is a group effort." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1551 +#: guix-git/doc/contributing.texi:1584 msgid "Some issues can directly affect all users---for instance because they make @command{guix pull} fail or break core functionality, because they break major packages (at build time or run time), or because they introduce known security vulnerabilities." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1552 +#: guix-git/doc/contributing.texi:1585 #, no-wrap msgid "reverting commits" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1558 +#: guix-git/doc/contributing.texi:1591 msgid "The people involved in authoring, reviewing, and pushing such commit(s) should be at the forefront to mitigate their impact in a timely fashion: by pushing a followup commit to fix it (if possible), or by reverting it to leave time to come up with a proper fix, and by communicating with other developers about the problem." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1564 +#: guix-git/doc/contributing.texi:1597 msgid "If these persons are unavailable to address the issue in time, other committers are entitled to revert the commit(s), explaining in the commit log and on the mailing list what the problem was, with the goal of leaving time to the original committer, reviewer(s), and author(s) to propose a way forward." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1573 +#: guix-git/doc/contributing.texi:1606 msgid "Once the problem has been dealt with, it is the responsibility of those involved to make sure the situation is understood. If you are working to understand what happened, focus on gathering information and avoid assigning any blame. Do ask those involved to describe what happened, do not ask them to explain the situation---this would implicitly blame them, which is unhelpful. Accountability comes from a consensus about the problem, learning from it and improving processes so that it's less likely to reoccur." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1574 +#: guix-git/doc/contributing.texi:1607 #, no-wrap msgid "Commit Revocation" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1581 +#: guix-git/doc/contributing.texi:1614 msgid "In order to reduce the possibility of mistakes, committers will have their Savannah account removed from the Guix Savannah project and their key removed from @file{.guix-authorizations} after 12 months of inactivity; they can ask to regain commit access by emailing the maintainers, without going through the vouching process." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1591 +#: guix-git/doc/contributing.texi:1624 msgid "Maintainers@footnote{See @uref{https://guix.gnu.org/en/about} for the current list of maintainers. You can email them privately at @email{guix-maintainers@@gnu.org}.} may also revoke an individual's commit rights, as a last resort, if cooperation with the rest of the community has caused too much friction---even within the bounds of the project's code of conduct (@pxref{Contributing}). They would only do so after public or private discussion with the individual and a clear notice. Examples of behavior that hinders cooperation and could lead to such a decision include:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1593 +#: guix-git/doc/contributing.texi:1626 #, no-wrap msgid "repeated violation of the commit policy stated above;" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1594 +#: guix-git/doc/contributing.texi:1627 #, no-wrap msgid "repeated failure to take peer criticism into account;" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1595 +#: guix-git/doc/contributing.texi:1628 #, no-wrap msgid "breaching trust through a series of grave incidents." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1602 +#: guix-git/doc/contributing.texi:1635 msgid "When maintainers resort to such a decision, they notify developers on @email{guix-devel@@gnu.org}; inquiries may be sent to @email{guix-maintainers@@gnu.org}. Depending on the situation, the individual may still be welcome to contribute." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1603 +#: guix-git/doc/contributing.texi:1636 #, no-wrap msgid "Helping Out" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1610 +#: guix-git/doc/contributing.texi:1643 msgid "One last thing: the project keeps moving forward because committers not only push their own awesome changes, but also offer some of their time @emph{reviewing} and pushing other people's changes. As a committer, you're welcome to use your expertise and commit rights to help other contributors, too!" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1614 +#: guix-git/doc/contributing.texi:1647 #, no-wrap msgid "update-guix-package, updating the guix package" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1620 +#: guix-git/doc/contributing.texi:1653 msgid "It is sometimes desirable to update the @code{guix} package itself (the package defined in @code{(gnu packages package-management)}), for example to make new daemon features available for use by the @code{guix-service-type} service type. In order to simplify this task, the following command can be used:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1623 +#: guix-git/doc/contributing.texi:1656 #, no-wrap msgid "make update-guix-package\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1630 +#: guix-git/doc/contributing.texi:1663 msgid "The @code{update-guix-package} make target will use the last known @emph{commit} corresponding to @code{HEAD} in your Guix checkout, compute the hash of the Guix sources corresponding to that commit and update the @code{commit}, @code{revision} and hash of the @code{guix} package definition." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1634 +#: guix-git/doc/contributing.texi:1667 msgid "To validate that the updated @code{guix} package hashes are correct and that it can be built successfully, the following command can be run from the directory of your Guix checkout:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1637 +#: guix-git/doc/contributing.texi:1670 #, no-wrap msgid "./pre-inst-env guix build guix\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1642 +#: guix-git/doc/contributing.texi:1675 msgid "To guard against accidentally updating the @code{guix} package to a commit that others can't refer to, a check is made that the commit used has already been pushed to the Savannah-hosted Guix git repository." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1647 +#: guix-git/doc/contributing.texi:1680 msgid "This check can be disabled, @emph{at your own peril}, by setting the @code{GUIX_ALLOW_ME_TO_USE_PRIVATE_COMMIT} environment variable. When this variable is set, the updated package source is also added to the store. This is used as part of the release process of Guix." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1648 +#: guix-git/doc/contributing.texi:1681 #, fuzzy, no-wrap #| msgid "Installation" msgid "translation" msgstr "Installazione" #. type: cindex -#: guix-git/doc/contributing.texi:1649 +#: guix-git/doc/contributing.texi:1682 #, no-wrap msgid "l10n" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1650 +#: guix-git/doc/contributing.texi:1683 #, no-wrap msgid "i18n" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1651 +#: guix-git/doc/contributing.texi:1684 #, no-wrap msgid "native language support" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1661 +#: guix-git/doc/contributing.texi:1694 msgid "Writing code and packages is not the only way to provide a meaningful contribution to Guix. Translating to a language you speak is another example of a valuable contribution you can make. This section is designed to describe the translation process. It gives you advice on how you can get involved, what can be translated, what mistakes you should avoid and what we can do to help you!" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1667 +#: guix-git/doc/contributing.texi:1700 msgid "Guix is a big project that has multiple components that can be translated. We coordinate the translation effort on a @uref{https://translate.fedoraproject.org/projects/guix/,Weblate instance} hosted by our friends at Fedora. You will need an account to submit translations." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1674 +#: guix-git/doc/contributing.texi:1707 msgid "Some of the software packaged in Guix also contain translations. We do not host a translation platform for them. If you want to translate a package provided by Guix, you should contact their developers or find the information on their website. As an example, you can find the homepage of the @code{hello} package by typing @code{guix show hello}. On the ``homepage'' line, you will see @url{https://www.gnu.org/software/hello/} as the homepage." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1679 +#: guix-git/doc/contributing.texi:1712 msgid "Many GNU and non-GNU packages can be translated on the @uref{https://translationproject.org,Translation Project}. Some projects with multiple components have their own platform. For instance, GNOME has its own platform, @uref{https://l10n.gnome.org/,Damned Lies}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1681 +#: guix-git/doc/contributing.texi:1714 msgid "Guix has five components hosted on Weblate." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1683 +#: guix-git/doc/contributing.texi:1716 #, no-wrap msgid "@code{guix} contains all the strings from the Guix software (the" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1718 msgid "guided system installer, the package manager, etc), excluding packages." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1718 #, no-wrap msgid "@code{packages} contains the synopsis (single-sentence description" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1687 +#: guix-git/doc/contributing.texi:1720 msgid "of a package) and description (longer description) of packages in Guix." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1687 +#: guix-git/doc/contributing.texi:1720 #, no-wrap msgid "@code{website} contains the official Guix website, except for" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1689 +#: guix-git/doc/contributing.texi:1722 msgid "blog posts and multimedia content." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1689 +#: guix-git/doc/contributing.texi:1722 #, no-wrap msgid "@code{documentation-manual} corresponds to this manual." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1690 +#: guix-git/doc/contributing.texi:1723 #, no-wrap msgid "@code{documentation-cookbook} is the component for the cookbook." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1693 +#: guix-git/doc/contributing.texi:1726 #, no-wrap msgid "General Directions" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1701 +#: guix-git/doc/contributing.texi:1734 msgid "Once you get an account, you should be able to select a component from @uref{https://translate.fedoraproject.org/projects/guix/,the guix project}, and select a language. If your language does not appear in the list, go to the bottom and click on the ``Start new translation'' button. Select the language you want to translate to from the list, to start your new translation." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1706 +#: guix-git/doc/contributing.texi:1739 msgid "Like lots of other free software packages, Guix uses @uref{https://www.gnu.org/software/gettext,GNU Gettext} for its translations, with which translatable strings are extracted from the source code to so-called PO files." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1717 +#: guix-git/doc/contributing.texi:1750 msgid "Even though PO files are text files, changes should not be made with a text editor but with PO editing software. Weblate integrates PO editing functionality. Alternatively, translators can use any of various free-software tools for filling in translations, of which @uref{https://poedit.net/,Poedit} is one example, and (after logging in) @uref{https://docs.weblate.org/en/latest/user/files.html,upload} the changed file. There is also a special @uref{https://www.emacswiki.org/emacs/PoMode,PO editing mode} for users of GNU Emacs. Over time translators find out what software they are happy with and what features they need." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1722 +#: guix-git/doc/contributing.texi:1755 msgid "On Weblate, you will find various links to the editor, that will show various subsets (or all) of the strings. Have a look around and at the @uref{https://docs.weblate.org/en/latest/,documentation} to familiarize yourself with the platform." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1723 +#: guix-git/doc/contributing.texi:1756 #, no-wrap msgid "Translation Components" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1728 +#: guix-git/doc/contributing.texi:1761 msgid "In this section, we provide more detailed guidance on the translation process, as well as details on what you should or should not do. When in doubt, please contact us, we will be happy to help!" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1730 guix-git/doc/guix.texi:9420 +#: guix-git/doc/contributing.texi:1763 guix-git/doc/guix.texi:9734 #, no-wrap msgid "guix" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1735 +#: guix-git/doc/contributing.texi:1768 msgid "Guix is written in the Guile programming language, and some strings contain special formatting that is interpreted by Guile. These special formatting should be highlighted by Weblate. They start with @code{~} followed by one or more characters." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1744 +#: guix-git/doc/contributing.texi:1777 msgid "When printing the string, Guile replaces the special formatting symbols with actual values. For instance, the string @samp{ambiguous package specification `~a'} would be substituted to contain said package specification instead of @code{~a}. To properly translate this string, you must keep the formatting code in your translation, although you can place it where it makes sense in your language. For instance, the French translation says @samp{spécification du paquet « ~a » ambiguë} because the adjective needs to be placed in the end of the sentence." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1748 +#: guix-git/doc/contributing.texi:1781 msgid "If there are multiple formatting symbols, make sure to respect the order. Guile does not know in which order you intended the string to be read, so it will substitute the symbols in the same order as the English sentence." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1756 +#: guix-git/doc/contributing.texi:1789 msgid "As an example, you cannot translate @samp{package '~a' has been superseded by '~a'} by @samp{'~a' superseeds package '~a'}, because the meaning would be reversed. If @var{foo} is superseded by @var{bar}, the translation would read @samp{'foo' superseeds package 'bar'}. To work around this problem, it is possible to use more advanced formatting to select a given piece of data, instead of following the default English order. @xref{Formatted Output,,, guile, GNU Guile Reference Manual}, for more information on formatting in Guile." msgstr "" @@ -2434,98 +2475,98 @@ msgstr "" #. type: item #. #-#-#-#-# guix.pot (guix manual checkout) #-#-#-#-# #. type: cindex -#: guix-git/doc/contributing.texi:1757 guix-git/doc/guix.texi:2988 +#: guix-git/doc/contributing.texi:1790 guix-git/doc/guix.texi:3005 #, no-wrap msgid "packages" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1762 +#: guix-git/doc/contributing.texi:1795 msgid "Package descriptions occasionally contain Texinfo markup (@pxref{Synopses and Descriptions}). Texinfo markup looks like @samp{@@code@{rm -rf@}}, @samp{@@emph@{important@}}, etc. When translating, please leave markup as is." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1771 +#: guix-git/doc/contributing.texi:1804 msgid "The characters after ``@@'' form the name of the markup, and the text between ``@{'' and ``@}'' is its content. In general, you should not translate the content of markup like @code{@@code}, as it contains literal code that do not change with language. You can translate the content of formatting markup such as @code{@@emph}, @code{@@i}, @code{@@itemize}, @code{@@item}. However, do not translate the name of the markup, or it will not be recognized. Do not translate the word after @code{@@end}, it is the name of the markup that is closed at this position (e.g.@: @code{@@itemize ... @@end itemize})." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1772 +#: guix-git/doc/contributing.texi:1805 #, no-wrap msgid "documentation-manual and documentation-cookbook" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1776 +#: guix-git/doc/contributing.texi:1809 msgid "The first step to ensure a successful translation of the manual is to find and translate the following strings @emph{first}:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1778 +#: guix-git/doc/contributing.texi:1811 #, no-wrap msgid "@code{version.texi}: Translate this string as @code{version-xx.texi}," msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1781 +#: guix-git/doc/contributing.texi:1814 msgid "where @code{xx} is your language code (the one shown in the URL on weblate)." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1781 +#: guix-git/doc/contributing.texi:1814 #, no-wrap msgid "@code{contributing.texi}: Translate this string as" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1783 +#: guix-git/doc/contributing.texi:1816 msgid "@code{contributing.xx.texi}, where @code{xx} is the same language code." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1783 +#: guix-git/doc/contributing.texi:1816 #, no-wrap msgid "@code{Top}: Do not translate this string, it is important for Texinfo." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1786 +#: guix-git/doc/contributing.texi:1819 msgid "If you translate it, the document will be empty (missing a Top node). Please look for it, and register @code{Top} as its translation." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1791 +#: guix-git/doc/contributing.texi:1824 msgid "Translating these strings first ensure we can include your translation in the guix repository without breaking the make process or the @command{guix pull} machinery." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1798 +#: guix-git/doc/contributing.texi:1831 msgid "The manual and the cookbook both use Texinfo. As for @code{packages}, please keep Texinfo markup as is. There are more possible markup types in the manual than in the package descriptions. In general, do not translate the content of @code{@@code}, @code{@@file}, @code{@@var}, @code{@@value}, etc. You should translate the content of formatting markup such as @code{@@emph}, @code{@@i}, etc." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1806 +#: guix-git/doc/contributing.texi:1839 msgid "The manual contains sections that can be referred to by name by @code{@@ref}, @code{@@xref} and @code{@@pxref}. We have a mechanism in place so you do not have to translate their content. If you keep the English title, we will automatically replace it with your translation of that title. This ensures that Texinfo will always be able to find the node. If you decide to change the translation of the title, the references will automatically be updated and you will not have to update them all yourself." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1816 +#: guix-git/doc/contributing.texi:1849 msgid "When translating references from the cookbook to the manual, you need to replace the name of the manual and the name of the section. For instance, to translate @code{@@pxref@{Defining Packages,,, guix, GNU Guix Reference Manual@}}, you would replace @code{Defining Packages} with the title of that section in the translated manual @emph{only} if that title is translated. If the title is not translated in your language yet, do not translate it here, or the link will be broken. Replace @code{guix} with @code{guix.xx} where @code{xx} is your language code. @code{GNU Guix Reference Manual} is the text of the link. You can translate it however you wish." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1817 +#: guix-git/doc/contributing.texi:1850 #, no-wrap msgid "website" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1824 +#: guix-git/doc/contributing.texi:1857 msgid "The website pages are written using SXML, an s-expression version of HTML, the basic language of the web. We have a process to extract translatable strings from the source, and replace complex s-expressions with a more familiar XML markup, where each markup is numbered. Translators can arbitrarily change the ordering, as in the following example." msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1831 +#: guix-git/doc/contributing.texi:1864 #, no-wrap msgid "" "#. TRANSLATORS: Defining Packages is a section name\n" @@ -2536,138 +2577,138 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1834 +#: guix-git/doc/contributing.texi:1867 msgid "Note that you need to include the same markups. You cannot skip any." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1842 +#: guix-git/doc/contributing.texi:1875 msgid "In case you make a mistake, the component might fail to build properly with your language, or even make guix pull fail. To prevent that, we have a process in place to check the content of the files before pushing to our repository. We will not be able to update the translation for your language in Guix, so we will notify you (through weblate and/or by email) so you get a chance to fix the issue." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1843 +#: guix-git/doc/contributing.texi:1876 #, no-wrap msgid "Outside of Weblate" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1846 +#: guix-git/doc/contributing.texi:1879 msgid "Currently, some parts of Guix cannot be translated on Weblate, help wanted!" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1848 +#: guix-git/doc/contributing.texi:1881 #, no-wrap msgid "@command{guix pull} news can be translated in @file{news.scm}, but is not" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1854 +#: guix-git/doc/contributing.texi:1887 msgid "available from Weblate. If you want to provide a translation, you can prepare a patch as described above, or simply send us your translation with the name of the news entry you translated and your language. @xref{Writing Channel News}, for more information about channel news." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1854 +#: guix-git/doc/contributing.texi:1887 #, no-wrap msgid "Guix blog posts cannot currently be translated." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1855 +#: guix-git/doc/contributing.texi:1888 #, no-wrap msgid "The installer script (for foreign distributions) is entirely in English." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1856 +#: guix-git/doc/contributing.texi:1889 #, no-wrap msgid "Some of the libraries Guix uses cannot be translated or are translated" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1858 +#: guix-git/doc/contributing.texi:1891 msgid "outside of the Guix project. Guile itself is not internationalized." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1858 +#: guix-git/doc/contributing.texi:1891 #, no-wrap msgid "Other manuals linked from this manual or the cookbook might not be" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1860 +#: guix-git/doc/contributing.texi:1893 msgid "translated." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1862 +#: guix-git/doc/contributing.texi:1895 #, no-wrap msgid "Translation Infrastructure" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1873 +#: guix-git/doc/contributing.texi:1906 msgid "Weblate is backed by a git repository from which it discovers new strings to translate and pushes new and updated translations. Normally, it would be enough to give it commit access to our repositories. However, we decided to use a separate repository for two reasons. First, we would have to give Weblate commit access and authorize its signing key, but we do not trust it in the same way we trust guix developers, especially since we do not manage the instance ourselves. Second, if translators mess something up, it can break the generation of the website and/or guix pull for all our users, independently of their language." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1877 +#: guix-git/doc/contributing.texi:1910 msgid "For these reasons, we use a dedicated repository to host translations, and we synchronize it with our guix and artworks repositories after checking no issue was introduced in the translation." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1883 +#: guix-git/doc/contributing.texi:1916 msgid "Developers can download the latest PO files from weblate in the Guix repository by running the @command{make download-po} command. It will automatically download the latest files from weblate, reformat them to a canonical form, and check they do not contain issues. The manual needs to be built again to check for additional issues that might crash Texinfo." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1887 +#: guix-git/doc/contributing.texi:1920 msgid "Before pushing new translation files, developers should add them to the make machinery so the translations are actually available. The process differs for the various components." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1889 +#: guix-git/doc/contributing.texi:1922 #, no-wrap msgid "New po files for the @code{guix} and @code{packages} components must" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1892 +#: guix-git/doc/contributing.texi:1925 msgid "be registered by adding the new language to @file{po/guix/LINGUAS} or @file{po/packages/LINGUAS}." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1892 +#: guix-git/doc/contributing.texi:1925 #, no-wrap msgid "New po files for the @code{documentation-manual} component must be" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1898 +#: guix-git/doc/contributing.texi:1931 msgid "registered by adding the file name to @code{DOC_PO_FILES} in @file{po/doc/local.mk}, the generated @file{%D%/guix.xx.texi} manual to @code{info_TEXINFOS} in @file{doc/local.mk} and the generated @file{%D%/guix.xx.texi} and @file{%D%/contributing.xx.texi} to @code{TRANSLATED_INFO} also in @file{doc/local.mk}." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1898 +#: guix-git/doc/contributing.texi:1931 #, no-wrap msgid "New po files for the @code{documentation-cookbook} component must be" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1904 +#: guix-git/doc/contributing.texi:1937 msgid "registered by adding the file name to @code{DOC_COOKBOOK_PO_FILES} in @file{po/doc/local.mk}, the generated @file{%D%/guix-cookbook.xx.texi} manual to @code{info_TEXINFOS} in @file{doc/local.mk} and the generated @file{%D%/guix-cookbook.xx.texi} to @code{TRANSLATED_INFO} also in @file{doc/local.mk}." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1904 +#: guix-git/doc/contributing.texi:1937 #, no-wrap msgid "New po files for the @code{website} component must be added to the" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1909 +#: guix-git/doc/contributing.texi:1942 msgid "@code{guix-artwork} repository, in @file{website/po/}. @file{website/po/LINGUAS} and @file{website/po/ietf-tags.scm} must be updated accordingly (see @file{website/i18n-howto.txt} for more information on the process)." msgstr "" @@ -2690,7 +2731,7 @@ msgstr "version-it.texi" #. type: copying #: guix-git/doc/guix.texi:103 -msgid "Copyright @copyright{} 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" +msgid "Copyright @copyright{} 2012-2022 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021, 2022 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021, 2022 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021, 2022 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021, 2022 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" msgstr "" #. type: copying @@ -2851,7 +2892,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:192 -#: guix-git/doc/guix.texi:402 guix-git/doc/guix.texi:403 +#: guix-git/doc/guix.texi:403 guix-git/doc/guix.texi:404 #, no-wrap msgid "Introduction" msgstr "" @@ -2863,7 +2904,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:197 -#: guix-git/doc/guix.texi:589 guix-git/doc/guix.texi:590 +#: guix-git/doc/guix.texi:600 guix-git/doc/guix.texi:601 #, no-wrap msgid "Installation" msgstr "Installazione" @@ -2875,7 +2916,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:213 -#: guix-git/doc/guix.texi:2049 guix-git/doc/guix.texi:2050 +#: guix-git/doc/guix.texi:2066 guix-git/doc/guix.texi:2067 #, no-wrap msgid "System Installation" msgstr "" @@ -2886,8 +2927,8 @@ msgid "Installing the whole operating system." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:2777 -#: guix-git/doc/guix.texi:2778 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:2794 +#: guix-git/doc/guix.texi:2795 #, no-wrap msgid "Getting Started" msgstr "" @@ -2899,7 +2940,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:230 -#: guix-git/doc/guix.texi:2985 guix-git/doc/guix.texi:2986 +#: guix-git/doc/guix.texi:3002 guix-git/doc/guix.texi:3003 #, no-wrap msgid "Package Management" msgstr "" @@ -2911,7 +2952,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:253 -#: guix-git/doc/guix.texi:5053 guix-git/doc/guix.texi:5054 +#: guix-git/doc/guix.texi:5071 guix-git/doc/guix.texi:5072 #, no-wrap msgid "Channels" msgstr "Canali" @@ -2923,7 +2964,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:267 -#: guix-git/doc/guix.texi:5581 guix-git/doc/guix.texi:5582 +#: guix-git/doc/guix.texi:5599 guix-git/doc/guix.texi:5600 #, no-wrap msgid "Development" msgstr "Sviluppo" @@ -2935,7 +2976,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:275 -#: guix-git/doc/guix.texi:6799 guix-git/doc/guix.texi:6800 +#: guix-git/doc/guix.texi:6842 guix-git/doc/guix.texi:6843 #, no-wrap msgid "Programming Interface" msgstr "" @@ -2946,8 +2987,8 @@ msgid "Using Guix in Scheme." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:294 -#: guix-git/doc/guix.texi:10774 guix-git/doc/guix.texi:10775 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:295 +#: guix-git/doc/guix.texi:11088 guix-git/doc/guix.texi:11089 #, no-wrap msgid "Utilities" msgstr "" @@ -2958,8 +2999,8 @@ msgid "Package management commands." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:320 -#: guix-git/doc/guix.texi:14278 guix-git/doc/guix.texi:14279 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:321 +#: guix-git/doc/guix.texi:14635 guix-git/doc/guix.texi:14636 #, no-wrap msgid "System Configuration" msgstr "" @@ -2970,8 +3011,8 @@ msgid "Configuring the operating system." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:36881 -#: guix-git/doc/guix.texi:36882 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37371 +#: guix-git/doc/guix.texi:37372 #, no-wrap msgid "Home Configuration" msgstr "" @@ -2982,8 +3023,8 @@ msgid "Configuring the home environment." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37721 -#: guix-git/doc/guix.texi:37722 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38210 +#: guix-git/doc/guix.texi:38211 #, no-wrap msgid "Documentation" msgstr "Documentazione" @@ -2994,8 +3035,8 @@ msgid "Browsing software user manuals." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:389 -#: guix-git/doc/guix.texi:37787 guix-git/doc/guix.texi:37788 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:390 +#: guix-git/doc/guix.texi:38276 guix-git/doc/guix.texi:38277 #, no-wrap msgid "Installing Debugging Files" msgstr "" @@ -3006,8 +3047,8 @@ msgid "Feeding the debugger." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37942 -#: guix-git/doc/guix.texi:37943 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38431 +#: guix-git/doc/guix.texi:38432 #, no-wrap msgid "Security Updates" msgstr "" @@ -3018,8 +3059,8 @@ msgid "Deploying security fixes quickly." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:394 -#: guix-git/doc/guix.texi:38057 guix-git/doc/guix.texi:38058 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:395 +#: guix-git/doc/guix.texi:38546 guix-git/doc/guix.texi:38547 #, no-wrap msgid "Bootstrapping" msgstr "" @@ -3030,7 +3071,7 @@ msgid "GNU/Linux built from scratch." msgstr "" #. type: node -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38349 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38838 #, no-wrap msgid "Porting" msgstr "" @@ -3046,8 +3087,8 @@ msgid "Your help needed!" msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38397 -#: guix-git/doc/guix.texi:38398 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38886 +#: guix-git/doc/guix.texi:38887 #, no-wrap msgid "Acknowledgments" msgstr "" @@ -3058,8 +3099,8 @@ msgid "Thanks!" msgstr "" #. type: appendix -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38419 -#: guix-git/doc/guix.texi:38420 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38908 +#: guix-git/doc/guix.texi:38909 #, no-wrap msgid "GNU Free Documentation License" msgstr "" @@ -3070,8 +3111,8 @@ msgid "The license of this manual." msgstr "" #. type: unnumbered -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38425 -#: guix-git/doc/guix.texi:38426 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38914 +#: guix-git/doc/guix.texi:38915 #, no-wrap msgid "Concept Index" msgstr "" @@ -3082,8 +3123,8 @@ msgid "Concepts." msgstr "" #. type: unnumbered -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38429 -#: guix-git/doc/guix.texi:38430 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38918 +#: guix-git/doc/guix.texi:38919 #, no-wrap msgid "Programming Index" msgstr "" @@ -3099,2133 +3140,2156 @@ msgid "--- The Detailed Node Listing ---" msgstr "" #. type: section -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 -#: guix-git/doc/guix.texi:431 guix-git/doc/guix.texi:432 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 +#: guix-git/doc/guix.texi:432 guix-git/doc/guix.texi:433 #, no-wrap msgid "Managing Software the Guix Way" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 msgid "What's special." msgstr "" #. type: section -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 -#: guix-git/doc/guix.texi:486 guix-git/doc/guix.texi:487 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 +#: guix-git/doc/guix.texi:487 guix-git/doc/guix.texi:488 #, no-wrap msgid "GNU Distribution" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 msgid "The packages and tools." msgstr "" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:631 guix-git/doc/guix.texi:632 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:642 guix-git/doc/guix.texi:643 #, no-wrap msgid "Binary Installation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Getting Guix running in no time!" msgstr "" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:871 guix-git/doc/guix.texi:872 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:882 guix-git/doc/guix.texi:883 #, no-wrap msgid "Requirements" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Software needed to build and run Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:957 guix-git/doc/guix.texi:958 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:969 guix-git/doc/guix.texi:970 #, no-wrap msgid "Running the Test Suite" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Testing Guix." msgstr "" #. type: section #: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:207 -#: guix-git/doc/guix.texi:629 guix-git/doc/guix.texi:1054 -#: guix-git/doc/guix.texi:1055 +#: guix-git/doc/guix.texi:640 guix-git/doc/guix.texi:1066 +#: guix-git/doc/guix.texi:1067 #, no-wrap msgid "Setting Up the Daemon" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Preparing the build daemon's environment." msgstr "" #. type: node -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:1525 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:1542 #, no-wrap msgid "Invoking guix-daemon" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Running the build daemon." msgstr "" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:1827 guix-git/doc/guix.texi:1828 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:1844 guix-git/doc/guix.texi:1845 #, no-wrap msgid "Application Setup" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Application-specific setup." msgstr "" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:2012 guix-git/doc/guix.texi:2013 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:2029 guix-git/doc/guix.texi:2030 #, no-wrap msgid "Upgrading Guix" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Upgrading Guix and its build daemon." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1076 guix-git/doc/guix.texi:1077 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1088 guix-git/doc/guix.texi:1089 #, no-wrap msgid "Build Environment Setup" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Preparing the isolated build environment." msgstr "" #. type: node -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1195 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1212 #, no-wrap msgid "Daemon Offload Setup" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Offloading builds to remote machines." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1434 guix-git/doc/guix.texi:1435 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1451 guix-git/doc/guix.texi:1452 #, no-wrap msgid "SELinux Support" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Using an SELinux policy for the daemon." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:1470 -#: guix-git/doc/guix.texi:2083 guix-git/doc/guix.texi:2085 -#: guix-git/doc/guix.texi:2086 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:1487 +#: guix-git/doc/guix.texi:2100 guix-git/doc/guix.texi:2102 +#: guix-git/doc/guix.texi:2103 #, no-wrap msgid "Limitations" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "What you can expect." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2111 guix-git/doc/guix.texi:2112 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2128 guix-git/doc/guix.texi:2129 #, no-wrap msgid "Hardware Considerations" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Supported hardware." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2146 guix-git/doc/guix.texi:2147 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2163 guix-git/doc/guix.texi:2164 #, no-wrap msgid "USB Stick and DVD Installation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Preparing the installation medium." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2227 guix-git/doc/guix.texi:2228 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2244 guix-git/doc/guix.texi:2245 #, no-wrap msgid "Preparing for Installation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Networking, partitioning, etc." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2250 guix-git/doc/guix.texi:2251 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2267 guix-git/doc/guix.texi:2268 #, no-wrap msgid "Guided Graphical Installation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Easy graphical installation." msgstr "" #. type: section #: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:225 -#: guix-git/doc/guix.texi:2083 guix-git/doc/guix.texi:2281 -#: guix-git/doc/guix.texi:2282 +#: guix-git/doc/guix.texi:2100 guix-git/doc/guix.texi:2298 +#: guix-git/doc/guix.texi:2299 #, no-wrap msgid "Manual Installation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Manual installation for wizards." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2660 guix-git/doc/guix.texi:2661 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2677 guix-git/doc/guix.texi:2678 #, no-wrap msgid "After System Installation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "When installation succeeded." msgstr "" #. type: node -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2694 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2711 #, no-wrap msgid "Installing Guix in a VM" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Guix System playground." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2745 guix-git/doc/guix.texi:2746 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2762 guix-git/doc/guix.texi:2763 #, no-wrap msgid "Building the Installation Image" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "How this comes to be." msgstr "" #. type: node -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 -#: guix-git/doc/guix.texi:2301 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 +#: guix-git/doc/guix.texi:2318 #, no-wrap msgid "Keyboard Layout and Networking and Partitioning" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 msgid "Initial setup." msgstr "Configurazione iniziale." #. type: subsection -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 -#: guix-git/doc/guix.texi:2571 guix-git/doc/guix.texi:2572 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 +#: guix-git/doc/guix.texi:2588 guix-git/doc/guix.texi:2589 #, no-wrap msgid "Proceeding with the Installation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 msgid "Installing." msgstr "" #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:3019 guix-git/doc/guix.texi:3020 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3036 guix-git/doc/guix.texi:3037 #, no-wrap msgid "Features" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "How Guix will make your life brighter." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:3109 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3126 #, no-wrap msgid "Invoking guix package" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Package installation, removal, etc." msgstr "" #. type: section #: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:243 -#: guix-git/doc/guix.texi:3017 guix-git/doc/guix.texi:3738 -#: guix-git/doc/guix.texi:3739 +#: guix-git/doc/guix.texi:3034 guix-git/doc/guix.texi:3756 +#: guix-git/doc/guix.texi:3757 #, no-wrap msgid "Substitutes" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Downloading pre-built binaries." msgstr "" #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4074 guix-git/doc/guix.texi:4075 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4092 guix-git/doc/guix.texi:4093 #, no-wrap msgid "Packages with Multiple Outputs" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Single source package, multiple outputs." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4128 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4146 #, no-wrap msgid "Invoking guix gc" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Running the garbage collector." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4338 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4356 #, no-wrap msgid "Invoking guix pull" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Fetching the latest Guix and distribution." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4585 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4603 #, no-wrap msgid "Invoking guix time-machine" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Running an older revision of Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4640 guix-git/doc/guix.texi:4641 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4658 guix-git/doc/guix.texi:4659 #, no-wrap msgid "Inferiors" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Interacting with another revision of Guix." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4768 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4786 #, no-wrap msgid "Invoking guix describe" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Display information about your Guix revision." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4863 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4881 #, no-wrap msgid "Invoking guix archive" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Exporting and importing store files." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3764 guix-git/doc/guix.texi:3765 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3782 guix-git/doc/guix.texi:3783 #, no-wrap msgid "Official Substitute Servers" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "One particular source of substitutes." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3794 guix-git/doc/guix.texi:3795 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3812 guix-git/doc/guix.texi:3813 #, no-wrap msgid "Substitute Server Authorization" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How to enable or disable substitutes." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3864 guix-git/doc/guix.texi:3865 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3882 guix-git/doc/guix.texi:3883 #, no-wrap msgid "Getting Substitutes from Other Servers" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "Substitute diversity." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3969 guix-git/doc/guix.texi:3970 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3987 guix-git/doc/guix.texi:3988 #, no-wrap msgid "Substitute Authentication" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How Guix verifies substitutes." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4004 guix-git/doc/guix.texi:4005 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4022 guix-git/doc/guix.texi:4023 #, no-wrap msgid "Proxy Settings" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How to get substitutes via proxy." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4016 guix-git/doc/guix.texi:4017 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4034 guix-git/doc/guix.texi:4035 #, no-wrap msgid "Substitution Failure" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "What happens when substitution fails." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4044 guix-git/doc/guix.texi:4045 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4062 guix-git/doc/guix.texi:4063 #, no-wrap msgid "On Trusting Binaries" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How can you trust that binary blob?" msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5086 guix-git/doc/guix.texi:5087 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5104 guix-git/doc/guix.texi:5105 #, no-wrap msgid "Specifying Additional Channels" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Extending the package collection." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5136 guix-git/doc/guix.texi:5137 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5154 guix-git/doc/guix.texi:5155 #, no-wrap msgid "Using a Custom Guix Channel" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Using a customized Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5158 guix-git/doc/guix.texi:5159 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5176 guix-git/doc/guix.texi:5177 #, no-wrap msgid "Replicating Guix" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Running the @emph{exact same} Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5199 guix-git/doc/guix.texi:5200 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5217 guix-git/doc/guix.texi:5218 #, no-wrap msgid "Channel Authentication" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How Guix verifies what it fetches." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5239 guix-git/doc/guix.texi:5240 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5257 guix-git/doc/guix.texi:5258 #, no-wrap msgid "Channels with Substitutes" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Using channels with available substitutes." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5264 guix-git/doc/guix.texi:5265 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5282 guix-git/doc/guix.texi:5283 #, no-wrap msgid "Creating a Channel" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How to write your custom channel." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5331 guix-git/doc/guix.texi:5332 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5349 guix-git/doc/guix.texi:5350 #, no-wrap msgid "Package Modules in a Sub-directory" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Specifying the channel's package modules location." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5345 guix-git/doc/guix.texi:5346 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5363 guix-git/doc/guix.texi:5364 #, no-wrap msgid "Declaring Channel Dependencies" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How to depend on other channels." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5387 guix-git/doc/guix.texi:5388 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5405 guix-git/doc/guix.texi:5406 #, no-wrap msgid "Specifying Channel Authorizations" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Defining channel authors authorizations." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5488 guix-git/doc/guix.texi:5489 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5506 guix-git/doc/guix.texi:5507 #, no-wrap msgid "Primary URL" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Distinguishing mirror to original." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5511 guix-git/doc/guix.texi:5512 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5529 guix-git/doc/guix.texi:5530 #, no-wrap msgid "Writing Channel News" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Communicating information to channel's users." msgstr "" #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:5603 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:5621 #, no-wrap msgid "Invoking guix shell" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Spawning one-off software environments." msgstr "" #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:5956 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:5993 #, no-wrap msgid "Invoking guix environment" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Setting up development environments." msgstr "" #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6325 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6368 #, no-wrap msgid "Invoking guix pack" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Creating software bundles." msgstr "" #. type: section -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6711 guix-git/doc/guix.texi:6712 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6754 guix-git/doc/guix.texi:6755 #, no-wrap msgid "The GCC toolchain" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Working with languages supported by GCC." msgstr "" #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6737 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6780 #, no-wrap msgid "Invoking guix git authenticate" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Authenticating Git repositories." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:6841 guix-git/doc/guix.texi:6842 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:6885 guix-git/doc/guix.texi:6886 #, no-wrap msgid "Package Modules" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Packages from the programmer's viewpoint." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:289 -#: guix-git/doc/guix.texi:6839 guix-git/doc/guix.texi:6903 -#: guix-git/doc/guix.texi:6904 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:290 +#: guix-git/doc/guix.texi:6883 guix-git/doc/guix.texi:6947 +#: guix-git/doc/guix.texi:6948 #, no-wrap msgid "Defining Packages" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Defining new packages." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:7554 guix-git/doc/guix.texi:7555 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:7612 guix-git/doc/guix.texi:7613 #, no-wrap msgid "Defining Package Variants" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Customizing packages." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:7821 guix-git/doc/guix.texi:7822 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:7879 guix-git/doc/guix.texi:7880 #, no-wrap msgid "Build Systems" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Specifying how packages are built." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:8861 guix-git/doc/guix.texi:8862 -#: guix-git/doc/guix.texi:9292 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:8918 guix-git/doc/guix.texi:8919 +#: guix-git/doc/guix.texi:9427 #, no-wrap msgid "Build Phases" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Phases of the build process of a package." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9055 guix-git/doc/guix.texi:9056 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9116 guix-git/doc/guix.texi:9117 #, no-wrap msgid "Build Utilities" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Helpers for your package definitions and more." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9369 guix-git/doc/guix.texi:9370 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9504 guix-git/doc/guix.texi:9505 +#, no-wrap +msgid "Search Paths" +msgstr "" + +#. type: menuentry +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +msgid "Declaring search path environment variables." +msgstr "" + +#. type: section +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9683 guix-git/doc/guix.texi:9684 #, no-wrap msgid "The Store" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Manipulating the package store." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9522 guix-git/doc/guix.texi:9523 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9836 guix-git/doc/guix.texi:9837 #, no-wrap msgid "Derivations" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Low-level interface to package derivations." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9716 guix-git/doc/guix.texi:9717 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10030 guix-git/doc/guix.texi:10031 #, no-wrap msgid "The Store Monad" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Purely functional interface to the store." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:10035 guix-git/doc/guix.texi:10036 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10349 guix-git/doc/guix.texi:10350 #, no-wrap msgid "G-Expressions" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Manipulating build expressions." msgstr "" #. type: node -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:10674 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10988 #, no-wrap msgid "Invoking guix repl" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 +#: guix-git/doc/guix.texi:288 msgid "Programming Guix in Guile." msgstr "" #. type: node -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 -#: guix-git/doc/guix.texi:7103 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 +#: guix-git/doc/guix.texi:7147 #, no-wrap msgid "package Reference" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 msgid "The package data type." msgstr "" #. type: node -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 -#: guix-git/doc/guix.texi:7362 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 +#: guix-git/doc/guix.texi:7420 #, no-wrap msgid "origin Reference" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 msgid "The origin data type." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:10801 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:11115 #, no-wrap msgid "Invoking guix build" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Building packages from the command line." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11699 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12013 #, no-wrap msgid "Invoking guix edit" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Editing package definitions." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11729 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12043 #, no-wrap msgid "Invoking guix download" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Downloading a file and printing its hash." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11787 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12101 #, no-wrap msgid "Invoking guix hash" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Computing the cryptographic hash of a file." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11877 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12192 #, no-wrap msgid "Invoking guix import" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Importing package definitions." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12412 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12727 #, no-wrap msgid "Invoking guix refresh" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Updating package definitions." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12784 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13099 #, no-wrap msgid "Invoking guix style" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 #, fuzzy #| msgid "Updating the Guix package definition." msgid "Styling package definitions." msgstr "Aggiornamento della definizione del pacchetto Guix." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12880 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13237 #, no-wrap msgid "Invoking guix lint" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Finding errors in package definitions." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13056 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13413 #, no-wrap msgid "Invoking guix size" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Profiling disk usage." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13200 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13557 #, no-wrap msgid "Invoking guix graph" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Visualizing the graph of packages." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13481 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13838 #, no-wrap msgid "Invoking guix publish" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Sharing substitutes." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13750 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14107 #, no-wrap msgid "Invoking guix challenge" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Challenging substitute servers." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13933 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14290 #, no-wrap msgid "Invoking guix copy" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Copying to and from a remote store." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13996 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14353 #, no-wrap msgid "Invoking guix container" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Process isolation." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:14050 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14407 #, no-wrap msgid "Invoking guix weather" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Assessing substitute availability." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:14180 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14537 #, no-wrap msgid "Invoking guix processes" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Listing client processes." msgstr "" #. type: section -#: guix-git/doc/guix.texi:313 guix-git/doc/guix.texi:10802 +#: guix-git/doc/guix.texi:314 guix-git/doc/guix.texi:11116 #, no-wrap msgid "Invoking @command{guix build}" msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:10855 guix-git/doc/guix.texi:10856 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11169 guix-git/doc/guix.texi:11170 #, no-wrap msgid "Common Build Options" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Build options for most commands." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11010 guix-git/doc/guix.texi:11011 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11324 guix-git/doc/guix.texi:11325 #, no-wrap msgid "Package Transformation Options" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Creating variants of packages." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11381 guix-git/doc/guix.texi:11382 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11695 guix-git/doc/guix.texi:11696 #, no-wrap msgid "Additional Build Options" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Options specific to 'guix build'." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11619 guix-git/doc/guix.texi:11620 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11933 guix-git/doc/guix.texi:11934 #, no-wrap msgid "Debugging Build Failures" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Real life packaging experience." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14324 guix-git/doc/guix.texi:14325 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:14681 guix-git/doc/guix.texi:14682 #, no-wrap msgid "Using the Configuration System" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Customizing your GNU system." msgstr "" #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14575 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:14932 #, no-wrap msgid "operating-system Reference" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Detail of operating-system declarations." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14798 guix-git/doc/guix.texi:14799 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15155 guix-git/doc/guix.texi:15156 #, no-wrap msgid "File Systems" msgstr "Filesystem" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring file system mounts." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15151 guix-git/doc/guix.texi:15152 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15508 guix-git/doc/guix.texi:15509 #, no-wrap msgid "Mapped Devices" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Block device extra processing." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15300 guix-git/doc/guix.texi:15301 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15657 guix-git/doc/guix.texi:15658 #, no-wrap msgid "Swap Space" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Backing RAM with disk space." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15400 guix-git/doc/guix.texi:15401 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15757 guix-git/doc/guix.texi:15758 #, no-wrap msgid "User Accounts" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Specifying user accounts." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:2308 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15581 -#: guix-git/doc/guix.texi:15582 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:2325 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:15938 +#: guix-git/doc/guix.texi:15939 #, no-wrap msgid "Keyboard Layout" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "How the system interprets key strokes." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1835 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15727 -#: guix-git/doc/guix.texi:15728 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:1852 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:16084 +#: guix-git/doc/guix.texi:16085 #, no-wrap msgid "Locales" msgstr "Lingue" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Language and cultural convention settings." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:345 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15867 -#: guix-git/doc/guix.texi:15868 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:346 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:16224 +#: guix-git/doc/guix.texi:16225 #, no-wrap msgid "Services" msgstr "Servizi" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Specifying system services." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34056 guix-git/doc/guix.texi:34057 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34493 guix-git/doc/guix.texi:34494 #, no-wrap msgid "Setuid Programs" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Programs running with root privileges." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1984 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:34140 -#: guix-git/doc/guix.texi:34141 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:2001 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:34579 +#: guix-git/doc/guix.texi:34580 #, no-wrap msgid "X.509 Certificates" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Authenticating HTTPS servers." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1878 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:34203 -#: guix-git/doc/guix.texi:34204 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:1895 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:34642 +#: guix-git/doc/guix.texi:34643 #, no-wrap msgid "Name Service Switch" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring libc's name service switch." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34341 guix-git/doc/guix.texi:34342 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34780 guix-git/doc/guix.texi:34781 #, no-wrap msgid "Initial RAM Disk" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Linux-Libre bootstrapping." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34536 guix-git/doc/guix.texi:34537 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34975 guix-git/doc/guix.texi:34976 #, no-wrap msgid "Bootloader Configuration" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring the boot loader." msgstr "" #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34834 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:35273 #, no-wrap msgid "Invoking guix system" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Instantiating a system configuration." msgstr "" #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:35425 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:35881 #, no-wrap msgid "Invoking guix deploy" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Deploying a system configuration to a remote host." msgstr "" #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:35631 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:36121 #, no-wrap msgid "Running Guix in a VM" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "How to run Guix System in a virtual machine." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:381 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:35765 -#: guix-git/doc/guix.texi:35766 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:382 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:36255 +#: guix-git/doc/guix.texi:36256 #, no-wrap msgid "Defining Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Adding new service definitions." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:341 +#: guix-git/doc/guix.texi:342 msgid "Home Environment Configuration" msgstr "" #. type: node -#: guix-git/doc/guix.texi:343 guix-git/doc/guix.texi:36944 -#: guix-git/doc/guix.texi:37478 +#: guix-git/doc/guix.texi:344 guix-git/doc/guix.texi:37434 +#: guix-git/doc/guix.texi:37974 #, no-wrap msgid "Invoking guix home" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:343 +#: guix-git/doc/guix.texi:344 msgid "Instantiating a home environment configuration." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:15953 guix-git/doc/guix.texi:15954 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:16310 guix-git/doc/guix.texi:16311 #, no-wrap msgid "Base Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Essential system services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:16880 guix-git/doc/guix.texi:16881 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17242 guix-git/doc/guix.texi:17243 #, no-wrap msgid "Scheduled Job Execution" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The mcron service." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17030 guix-git/doc/guix.texi:17031 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17392 guix-git/doc/guix.texi:17393 #, no-wrap msgid "Log Rotation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The rottlog service." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17143 guix-git/doc/guix.texi:17144 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17505 guix-git/doc/guix.texi:17506 #, fuzzy, no-wrap #| msgid "Networking" msgid "Networking Setup" msgstr "Rete" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Setting up network interfaces." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17561 guix-git/doc/guix.texi:17562 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17923 guix-git/doc/guix.texi:17924 #, no-wrap msgid "Networking Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Firewall, SSH daemon, etc." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19020 guix-git/doc/guix.texi:19021 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19382 guix-git/doc/guix.texi:19383 #, no-wrap msgid "Unattended Upgrades" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Automated system upgrades." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19158 guix-git/doc/guix.texi:19159 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19520 guix-git/doc/guix.texi:19521 #, no-wrap msgid "X Window" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Graphical display." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19556 guix-git/doc/guix.texi:19557 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19918 guix-git/doc/guix.texi:19919 #, no-wrap msgid "Printing Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Local and remote printer support." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:20409 guix-git/doc/guix.texi:20410 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:20771 guix-git/doc/guix.texi:20772 #, no-wrap msgid "Desktop Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "D-Bus and desktop services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:20928 guix-git/doc/guix.texi:20929 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21290 guix-git/doc/guix.texi:21291 #, no-wrap msgid "Sound Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "ALSA and Pulseaudio services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:21068 guix-git/doc/guix.texi:21069 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21430 guix-git/doc/guix.texi:21431 #, no-wrap msgid "Database Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "SQL databases, key-value stores, etc." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:21403 guix-git/doc/guix.texi:21404 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21765 guix-git/doc/guix.texi:21766 #, no-wrap msgid "Mail Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "IMAP, POP3, SMTP, and all that." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:23262 guix-git/doc/guix.texi:23263 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:23624 guix-git/doc/guix.texi:23625 #, no-wrap msgid "Messaging Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Messaging services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:23765 guix-git/doc/guix.texi:23766 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:24127 guix-git/doc/guix.texi:24128 #, no-wrap msgid "Telephony Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Telephony services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:24996 guix-git/doc/guix.texi:24997 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25358 guix-git/doc/guix.texi:25359 #, no-wrap msgid "Monitoring Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Monitoring services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:25507 guix-git/doc/guix.texi:25508 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25844 guix-git/doc/guix.texi:25845 #, no-wrap msgid "Kerberos Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Kerberos services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:25633 guix-git/doc/guix.texi:25634 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25970 guix-git/doc/guix.texi:25971 #, no-wrap msgid "LDAP Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "LDAP services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:26112 guix-git/doc/guix.texi:26113 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:26449 guix-git/doc/guix.texi:26450 #, no-wrap msgid "Web Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Web servers." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:27320 guix-git/doc/guix.texi:27321 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:27657 guix-git/doc/guix.texi:27658 #, no-wrap msgid "Certificate Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "TLS certificates via Let's Encrypt." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:27501 guix-git/doc/guix.texi:27502 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:27838 guix-git/doc/guix.texi:27839 #, no-wrap msgid "DNS Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "DNS daemons." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28246 guix-git/doc/guix.texi:28247 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:28583 guix-git/doc/guix.texi:28584 #, no-wrap msgid "VPN Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "VPN daemons." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28758 guix-git/doc/guix.texi:28759 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29095 guix-git/doc/guix.texi:29096 #, no-wrap msgid "Network File System" msgstr "Filesystem di rete" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "NFS related services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28954 guix-git/doc/guix.texi:28955 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29291 guix-git/doc/guix.texi:29292 #, no-wrap msgid "Continuous Integration" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Cuirass and Laminar services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29240 guix-git/doc/guix.texi:29241 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29577 guix-git/doc/guix.texi:29578 #, no-wrap msgid "Power Management Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Extending battery life." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29774 guix-git/doc/guix.texi:29775 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:30139 guix-git/doc/guix.texi:30140 #, no-wrap msgid "Audio Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The MPD." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29893 guix-git/doc/guix.texi:29894 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:30258 guix-git/doc/guix.texi:30259 #, no-wrap msgid "Virtualization Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Virtualization services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:31561 guix-git/doc/guix.texi:31562 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:31926 guix-git/doc/guix.texi:31927 #, no-wrap msgid "Version Control Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Providing remote access to Git repositories." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:32897 guix-git/doc/guix.texi:32898 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33262 guix-git/doc/guix.texi:33263 #, no-wrap msgid "Game Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Game servers." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:32929 guix-git/doc/guix.texi:32930 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33294 guix-git/doc/guix.texi:33295 #, no-wrap msgid "PAM Mount Service" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Service to mount volumes when logging in." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33012 guix-git/doc/guix.texi:33013 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33377 guix-git/doc/guix.texi:33378 #, no-wrap msgid "Guix Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services relating specifically to Guix." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33290 guix-git/doc/guix.texi:33291 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33727 guix-git/doc/guix.texi:33728 #, no-wrap msgid "Linux Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services tied to the Linux kernel." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33517 guix-git/doc/guix.texi:33518 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33954 guix-git/doc/guix.texi:33955 #, no-wrap msgid "Hurd Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services specific for a Hurd System." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33559 guix-git/doc/guix.texi:33560 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33996 guix-git/doc/guix.texi:33997 #, no-wrap msgid "Miscellaneous Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Other services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35780 guix-git/doc/guix.texi:35781 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36270 guix-git/doc/guix.texi:36271 #, no-wrap msgid "Service Composition" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "The model for composing services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35836 guix-git/doc/guix.texi:35837 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36326 guix-git/doc/guix.texi:36327 #, no-wrap msgid "Service Types and Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "Types and services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35973 guix-git/doc/guix.texi:35974 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36463 guix-git/doc/guix.texi:36464 #, no-wrap msgid "Service Reference" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "API reference." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:36292 guix-git/doc/guix.texi:36293 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36782 guix-git/doc/guix.texi:36783 #, no-wrap msgid "Shepherd Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "A particular type of service." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:36511 guix-git/doc/guix.texi:36512 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:37001 guix-git/doc/guix.texi:37002 #, fuzzy, no-wrap #| msgid "Documentation" msgid "Complex Configurations" msgstr "Documentazione" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "Defining bindings for complex configurations." msgstr "" #. type: section -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 -#: guix-git/doc/guix.texi:37806 guix-git/doc/guix.texi:37807 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 +#: guix-git/doc/guix.texi:38295 guix-git/doc/guix.texi:38296 #, no-wrap msgid "Separate Debug Info" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 msgid "Installing 'debug' outputs." msgstr "" #. type: section -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 -#: guix-git/doc/guix.texi:37879 guix-git/doc/guix.texi:37880 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 +#: guix-git/doc/guix.texi:38368 guix-git/doc/guix.texi:38369 #, no-wrap msgid "Rebuilding Debug Info" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 msgid "Building missing debug info." msgstr "" #. type: node -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 -#: guix-git/doc/guix.texi:38098 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 +#: guix-git/doc/guix.texi:38587 #, no-wrap msgid "Reduced Binary Seed Bootstrap" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 msgid "A Bootstrap worthy of GNU." msgstr "" #. type: section -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 -#: guix-git/doc/guix.texi:38173 guix-git/doc/guix.texi:38174 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 +#: guix-git/doc/guix.texi:38662 guix-git/doc/guix.texi:38663 #, no-wrap msgid "Preparing to Use the Bootstrap Binaries" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 msgid "Building that what matters most." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:405 +#: guix-git/doc/guix.texi:406 #, no-wrap msgid "purpose" msgstr "scopo" #. type: Plain text -#: guix-git/doc/guix.texi:413 +#: guix-git/doc/guix.texi:414 msgid "GNU Guix@footnote{``Guix'' is pronounced like ``geeks'', or ``ɡiːks'' using the international phonetic alphabet (IPA).} is a package management tool for and distribution of the GNU system. Guix makes it easy for unprivileged users to install, upgrade, or remove software packages, to roll back to a previous package set, to build packages from source, and generally assists with the creation and maintenance of software environments." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:414 guix-git/doc/guix.texi:489 +#: guix-git/doc/guix.texi:415 guix-git/doc/guix.texi:490 #, no-wrap msgid "Guix System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:415 +#: guix-git/doc/guix.texi:416 #, no-wrap msgid "GuixSD, now Guix System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:416 +#: guix-git/doc/guix.texi:417 #, no-wrap msgid "Guix System Distribution, now Guix System" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:425 +#: guix-git/doc/guix.texi:426 msgid "You can install GNU@tie{}Guix on top of an existing GNU/Linux system where it complements the available tools without interference (@pxref{Installation}), or you can use it as a standalone operating system distribution, @dfn{Guix@tie{}System}@footnote{We used to refer to Guix System as ``Guix System Distribution'' or ``GuixSD''. We now consider it makes more sense to group everything under the ``Guix'' banner since, after all, Guix System is readily available through the @command{guix system} command, even if you're using a different distro underneath!}. @xref{GNU Distribution}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:434 +#: guix-git/doc/guix.texi:435 #, no-wrap msgid "user interfaces" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:440 +#: guix-git/doc/guix.texi:441 msgid "Guix provides a command-line package management interface (@pxref{Package Management}), tools to help with software development (@pxref{Development}), command-line utilities for more advanced usage (@pxref{Utilities}), as well as Scheme programming interfaces (@pxref{Programming Interface})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:440 +#: guix-git/doc/guix.texi:441 #, no-wrap msgid "build daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:444 +#: guix-git/doc/guix.texi:445 msgid "Its @dfn{build daemon} is responsible for building packages on behalf of users (@pxref{Setting Up the Daemon}) and for downloading pre-built binaries from authorized sources (@pxref{Substitutes})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:445 +#: guix-git/doc/guix.texi:446 #, no-wrap msgid "extensibility of the distribution" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:446 guix-git/doc/guix.texi:6863 +#: guix-git/doc/guix.texi:447 guix-git/doc/guix.texi:6907 #, no-wrap msgid "customization, of packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:455 +#: guix-git/doc/guix.texi:456 msgid "Guix includes package definitions for many GNU and non-GNU packages, all of which @uref{https://www.gnu.org/philosophy/free-sw.html, respect the user's computing freedom}. It is @emph{extensible}: users can write their own package definitions (@pxref{Defining Packages}) and make them available as independent package modules (@pxref{Package Modules}). It is also @emph{customizable}: users can @emph{derive} specialized package definitions from existing ones, including from the command line (@pxref{Package Transformation Options})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:456 +#: guix-git/doc/guix.texi:457 #, no-wrap msgid "functional package management" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:457 +#: guix-git/doc/guix.texi:458 #, no-wrap msgid "isolation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:472 +#: guix-git/doc/guix.texi:473 msgid "Under the hood, Guix implements the @dfn{functional package management} discipline pioneered by Nix (@pxref{Acknowledgments}). In Guix, the package build and installation process is seen as a @emph{function}, in the mathematical sense. That function takes inputs, such as build scripts, a compiler, and libraries, and returns an installed package. As a pure function, its result depends solely on its inputs---for instance, it cannot refer to software or scripts that were not explicitly passed as inputs. A build function always produces the same result when passed a given set of inputs. It cannot alter the environment of the running system in any way; for instance, it cannot create, modify, or delete files outside of its build and installation directories. This is achieved by running build processes in isolated environments (or @dfn{containers}), where only their explicit inputs are visible." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:473 guix-git/doc/guix.texi:9372 +#: guix-git/doc/guix.texi:474 guix-git/doc/guix.texi:9686 #, no-wrap msgid "store" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:480 +#: guix-git/doc/guix.texi:481 msgid "The result of package build functions is @dfn{cached} in the file system, in a special directory called @dfn{the store} (@pxref{The Store}). Each package is installed in a directory of its own in the store---by default under @file{/gnu/store}. The directory name contains a hash of all the inputs used to build that package; thus, changing an input yields a different directory name." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:484 +#: guix-git/doc/guix.texi:485 msgid "This approach is the foundation for the salient features of Guix: support for transactional package upgrade and rollback, per-user installation, and garbage collection of packages (@pxref{Features})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:499 +#: guix-git/doc/guix.texi:500 msgid "Guix comes with a distribution of the GNU system consisting entirely of free software@footnote{The term ``free'' here refers to the @url{https://www.gnu.org/philosophy/free-sw.html,freedom provided to users of that software}.}. The distribution can be installed on its own (@pxref{System Installation}), but it is also possible to install Guix as a package manager on top of an installed GNU/Linux system (@pxref{Installation}). When we need to distinguish between the two, we refer to the standalone distribution as Guix@tie{}System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:505 +#: guix-git/doc/guix.texi:506 msgid "The distribution provides core GNU packages such as GNU libc, GCC, and Binutils, as well as many GNU and non-GNU applications. The complete list of available packages can be browsed @url{https://www.gnu.org/software/guix/packages,on-line} or by running @command{guix package} (@pxref{Invoking guix package}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:508 +#: guix-git/doc/guix.texi:509 #, no-wrap msgid "guix package --list-available\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:514 +#: guix-git/doc/guix.texi:515 msgid "Our goal is to provide a practical 100% free software distribution of Linux-based and other variants of GNU, with a focus on the promotion and tight integration of GNU components, and an emphasis on programs and tools that help users exert that freedom." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:516 +#: guix-git/doc/guix.texi:517 msgid "Packages are currently available on the following platforms:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:519 guix-git/doc/guix.texi:2155 +#: guix-git/doc/guix.texi:520 guix-git/doc/guix.texi:2172 #, no-wrap msgid "x86_64-linux" msgstr "" #. type: table -#: guix-git/doc/guix.texi:521 +#: guix-git/doc/guix.texi:522 msgid "Intel/AMD @code{x86_64} architecture, Linux-Libre kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:522 guix-git/doc/guix.texi:2158 +#: guix-git/doc/guix.texi:523 guix-git/doc/guix.texi:2175 #, no-wrap msgid "i686-linux" msgstr "" #. type: table -#: guix-git/doc/guix.texi:524 +#: guix-git/doc/guix.texi:525 msgid "Intel 32-bit architecture (IA32), Linux-Libre kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:525 +#: guix-git/doc/guix.texi:526 #, no-wrap msgid "armhf-linux" msgstr "" #. type: table -#: guix-git/doc/guix.texi:529 +#: guix-git/doc/guix.texi:530 msgid "ARMv7-A architecture with hard float, Thumb-2 and NEON, using the EABI hard-float application binary interface (ABI), and Linux-Libre kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:530 +#: guix-git/doc/guix.texi:531 #, no-wrap msgid "aarch64-linux" msgstr "" #. type: table -#: guix-git/doc/guix.texi:532 +#: guix-git/doc/guix.texi:533 msgid "little-endian 64-bit ARMv8-A processors, Linux-Libre kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:533 +#: guix-git/doc/guix.texi:534 #, no-wrap msgid "i586-gnu" msgstr "" #. type: table -#: guix-git/doc/guix.texi:536 +#: guix-git/doc/guix.texi:537 msgid "@uref{https://hurd.gnu.org, GNU/Hurd} on the Intel 32-bit architecture (IA32)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:542 +#: guix-git/doc/guix.texi:543 msgid "This configuration is experimental and under development. The easiest way for you to give it a try is by setting up an instance of @code{hurd-vm-service-type} on your GNU/Linux machine (@pxref{transparent-emulation-qemu, @code{hurd-vm-service-type}}). @xref{Contributing}, on how to help!" msgstr "" #. type: item -#: guix-git/doc/guix.texi:543 +#: guix-git/doc/guix.texi:544 #, no-wrap msgid "mips64el-linux (unsupported)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:549 +#: guix-git/doc/guix.texi:550 msgid "little-endian 64-bit MIPS processors, specifically the Loongson series, n32 ABI, and Linux-Libre kernel. This configuration is no longer fully supported; in particular, there is no ongoing work to ensure that this architecture still works. Should someone decide they wish to revive this architecture then the code is still available." msgstr "" #. type: item -#: guix-git/doc/guix.texi:550 +#: guix-git/doc/guix.texi:551 #, no-wrap msgid "powerpc-linux (unsupported)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:555 +#: guix-git/doc/guix.texi:556 msgid "big-endian 32-bit PowerPC processors, specifically the PowerPC G4 with AltiVec support, and Linux-Libre kernel. This configuration is not fully supported and there is no ongoing work to ensure this architecture works." msgstr "" #. type: table -#: guix-git/doc/guix.texi:566 +#: guix-git/doc/guix.texi:567 msgid "little-endian 64-bit Power ISA processors, Linux-Libre kernel. This includes POWER9 systems such as the @uref{https://www.fsf.org/news/talos-ii-mainboard-and-talos-ii-lite-mainboard-now-fsf-certified-to-respect-your-freedom, RYF Talos II mainboard}. This platform is available as a \"technology preview\": although it is supported, substitutes are not yet available from the build farm (@pxref{Substitutes}), and some packages may fail to build (@pxref{Tracking Bugs and Patches}). That said, the Guix community is actively working on improving this support, and now is a great time to try it and get involved!" msgstr "" -#. type: Plain text +#. type: item +#: guix-git/doc/guix.texi:568 +#, no-wrap +msgid "riscv64-linux" +msgstr "" + +#. type: table #: guix-git/doc/guix.texi:576 +msgid "little-endian 64-bit RISC-V processors, specifically RV64GC, and Linux-Libre kernel. This playform is available as a \"technology preview\": although it is supported, substitutes are not yet available from the build farm (@pxref{Substitutes}), and some packages may fail to build (@pxref{Tracking Bugs and Patches}). That said, the Guix community is actively working on improving this support, and now is a great time to try it and get involved!" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:586 msgid "With Guix@tie{}System, you @emph{declare} all aspects of the operating system configuration and Guix takes care of instantiating the configuration in a transactional, reproducible, and stateless fashion (@pxref{System Configuration}). Guix System uses the Linux-libre kernel, the Shepherd initialization system (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}), the well-known GNU utilities and tool chain, as well as the graphical environment or system services of your choice." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:579 -msgid "Guix System is available on all the above platforms except @code{mips64el-linux} and @code{powerpc64le-linux}." +#: guix-git/doc/guix.texi:590 +msgid "Guix System is available on all the above platforms except @code{mips64el-linux}, @code{powerpc-linux}, @code{powerpc64le-linux} and @code{riscv64-linux}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:583 +#: guix-git/doc/guix.texi:594 msgid "For information on porting to other architectures or kernels, @pxref{Porting}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:586 +#: guix-git/doc/guix.texi:597 msgid "Building this distribution is a cooperative effort, and you are invited to join! @xref{Contributing}, for information about how you can help." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:592 +#: guix-git/doc/guix.texi:603 #, no-wrap msgid "installing Guix" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:604 +#: guix-git/doc/guix.texi:615 msgid "We recommend the use of this @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, shell installer script} to install Guix on top of a running GNU/Linux system, thereafter called a @dfn{foreign distro}.@footnote{This section is concerned with the installation of the package manager, which can be done on top of a running GNU/Linux system. If, instead, you want to install the complete GNU operating system, @pxref{System Installation}.} The script automates the download, installation, and initial configuration of Guix. It should be run as the root user." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:606 guix-git/doc/guix.texi:1830 +#: guix-git/doc/guix.texi:617 guix-git/doc/guix.texi:1847 #, no-wrap msgid "foreign distro" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:607 +#: guix-git/doc/guix.texi:618 #, no-wrap msgid "directories related to foreign distro" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:612 +#: guix-git/doc/guix.texi:623 msgid "When installed on a foreign distro, GNU@tie{}Guix complements the available tools without interference. Its data lives exclusively in two directories, usually @file{/gnu/store} and @file{/var/guix}; other files on your system, such as @file{/etc}, are left untouched." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:615 +#: guix-git/doc/guix.texi:626 msgid "Once installed, Guix can be updated by running @command{guix pull} (@pxref{Invoking guix pull})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:620 +#: guix-git/doc/guix.texi:631 msgid "If you prefer to perform the installation steps manually or want to tweak them, you may find the following subsections useful. They describe the software requirements of Guix, as well as how to install it manually and get ready to use it." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:634 +#: guix-git/doc/guix.texi:645 #, no-wrap msgid "installing Guix from binaries" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:635 +#: guix-git/doc/guix.texi:646 #, no-wrap msgid "installer script" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:641 +#: guix-git/doc/guix.texi:652 msgid "This section describes how to install Guix on an arbitrary system from a self-contained tarball providing binaries for Guix and for all its dependencies. This is often quicker than installing from source, which is described in the next sections. The only requirement is to have GNU@tie{}tar and Xz." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:649 +#: guix-git/doc/guix.texi:660 msgid "We recommend the use of this @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, shell installer script}. The script automates the download, installation, and initial configuration steps described below. It should be run as the root user. As root, you can thus run this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:655 +#: guix-git/doc/guix.texi:666 #, no-wrap msgid "" "cd /tmp\n" @@ -5235,33 +5299,33 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:659 +#: guix-git/doc/guix.texi:670 msgid "When you're done, @pxref{Application Setup} for extra configuration you might need, and @ref{Getting Started} for your first steps!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:662 +#: guix-git/doc/guix.texi:673 msgid "Installing goes along these lines:" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:665 +#: guix-git/doc/guix.texi:676 #, no-wrap msgid "downloading Guix binary" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:671 +#: guix-git/doc/guix.texi:682 msgid "Download the binary tarball from @indicateurl{@value{BASE-URL}/guix-binary-@value{VERSION}.x86_64-linux.tar.xz}, where @code{x86_64-linux} can be replaced with @code{i686-linux} for an @code{i686} (32-bits) machine already running the kernel Linux, and so on (@pxref{GNU Distribution})." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:675 +#: guix-git/doc/guix.texi:686 msgid "Make sure to download the associated @file{.sig} file and to verify the authenticity of the tarball against it, along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:679 +#: guix-git/doc/guix.texi:690 #, no-wrap msgid "" "$ wget @value{BASE-URL}/guix-binary-@value{VERSION}.x86_64-linux.tar.xz.sig\n" @@ -5269,12 +5333,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:683 guix-git/doc/guix.texi:2173 +#: guix-git/doc/guix.texi:694 guix-git/doc/guix.texi:2190 msgid "If that command fails because you do not have the required public key, then run this command to import it:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:687 +#: guix-git/doc/guix.texi:698 #, no-wrap msgid "" "$ wget '@value{OPENPGP-SIGNING-KEY-URL}' \\\n" @@ -5282,22 +5346,22 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:691 guix-git/doc/guix.texi:2181 +#: guix-git/doc/guix.texi:702 guix-git/doc/guix.texi:2198 msgid "and rerun the @code{gpg --verify} command." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:694 guix-git/doc/guix.texi:2184 +#: guix-git/doc/guix.texi:705 guix-git/doc/guix.texi:2201 msgid "Take note that a warning like ``This key is not certified with a trusted signature!'' is normal." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:700 +#: guix-git/doc/guix.texi:711 msgid "Now, you need to become the @code{root} user. Depending on your distribution, you may have to run @code{su -} or @code{sudo -i}. As @code{root}, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:706 +#: guix-git/doc/guix.texi:717 #, no-wrap msgid "" "# cd /tmp\n" @@ -5307,27 +5371,27 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:711 +#: guix-git/doc/guix.texi:722 msgid "This creates @file{/gnu/store} (@pxref{The Store}) and @file{/var/guix}. The latter contains a ready-to-use profile for @code{root} (see next step)." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:714 +#: guix-git/doc/guix.texi:725 msgid "Do @emph{not} unpack the tarball on a working Guix system since that would overwrite its own essential files." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:724 +#: guix-git/doc/guix.texi:735 msgid "The @option{--warning=no-timestamp} option makes sure GNU@tie{}tar does not emit warnings about ``implausibly old time stamps'' (such warnings were triggered by GNU@tie{}tar 1.26 and older; recent versions are fine). They stem from the fact that all the files in the archive have their modification time set to 1 (which means January 1st, 1970). This is done on purpose to make sure the archive content is independent of its creation time, thus making it reproducible." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:728 +#: guix-git/doc/guix.texi:739 msgid "Make the profile available under @file{~root/.config/guix/current}, which is where @command{guix pull} will install updates (@pxref{Invoking guix pull}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:733 +#: guix-git/doc/guix.texi:744 #, no-wrap msgid "" "# mkdir -p ~root/.config/guix\n" @@ -5336,12 +5400,12 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:737 +#: guix-git/doc/guix.texi:748 msgid "Source @file{etc/profile} to augment @env{PATH} and other relevant environment variables:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:741 +#: guix-git/doc/guix.texi:752 #, no-wrap msgid "" "# GUIX_PROFILE=\"`echo ~root`/.config/guix/current\" ; \\\n" @@ -5349,22 +5413,22 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:746 +#: guix-git/doc/guix.texi:757 msgid "Create the group and user accounts for build users as explained below (@pxref{Build Environment Setup})." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:749 +#: guix-git/doc/guix.texi:760 msgid "Run the daemon, and set it to automatically start on boot." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:752 +#: guix-git/doc/guix.texi:763 msgid "If your host distro uses the systemd init system, this can be achieved with these commands:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:765 +#: guix-git/doc/guix.texi:776 #, no-wrap msgid "" "# cp ~root/.config/guix/current/lib/systemd/system/gnu-store.mount \\\n" @@ -5374,12 +5438,12 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:768 +#: guix-git/doc/guix.texi:779 msgid "You may also want to arrange for @command{guix gc} to run periodically:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:774 +#: guix-git/doc/guix.texi:785 #, no-wrap msgid "" "# cp ~root/.config/guix/current/lib/systemd/system/guix-gc.service \\\n" @@ -5389,17 +5453,17 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:778 +#: guix-git/doc/guix.texi:789 msgid "You may want to edit @file{guix-gc.service} to adjust the command line options to fit your needs (@pxref{Invoking guix gc})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:780 guix-git/doc/guix.texi:13740 +#: guix-git/doc/guix.texi:791 guix-git/doc/guix.texi:14097 msgid "If your host distro uses the Upstart init system:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:786 +#: guix-git/doc/guix.texi:797 #, no-wrap msgid "" "# initctl reload-configuration\n" @@ -5409,12 +5473,12 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:789 +#: guix-git/doc/guix.texi:800 msgid "Otherwise, you can still start the daemon manually with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:793 +#: guix-git/doc/guix.texi:804 #, no-wrap msgid "" "# ~root/.config/guix/current/bin/guix-daemon \\\n" @@ -5422,12 +5486,12 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:798 +#: guix-git/doc/guix.texi:809 msgid "Make the @command{guix} command available to other users on the machine, for instance with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:803 +#: guix-git/doc/guix.texi:814 #, no-wrap msgid "" "# mkdir -p /usr/local/bin\n" @@ -5436,12 +5500,12 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:807 +#: guix-git/doc/guix.texi:818 msgid "It is also a good idea to make the Info version of this manual available there:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:813 +#: guix-git/doc/guix.texi:824 #, no-wrap msgid "" "# mkdir -p /usr/local/share/info\n" @@ -5451,24 +5515,24 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:819 +#: guix-git/doc/guix.texi:830 msgid "That way, assuming @file{/usr/local/share/info} is in the search path, running @command{info guix} will open this manual (@pxref{Other Info Directories,,, texinfo, GNU Texinfo}, for more details on changing the Info search path)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:821 guix-git/doc/guix.texi:3798 -#: guix-git/doc/guix.texi:16494 +#: guix-git/doc/guix.texi:832 guix-git/doc/guix.texi:3816 +#: guix-git/doc/guix.texi:16851 #, no-wrap msgid "substitutes, authorization thereof" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:825 +#: guix-git/doc/guix.texi:836 msgid "To use substitutes from @code{@value{SUBSTITUTE-SERVER-1}}, @code{@value{SUBSTITUTE-SERVER-2}} or a mirror (@pxref{Substitutes}), authorize them:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:831 +#: guix-git/doc/guix.texi:842 #, no-wrap msgid "" "# guix archive --authorize < \\\n" @@ -5478,49 +5542,49 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:838 +#: guix-git/doc/guix.texi:849 msgid "If you do not enable substitutes, Guix will end up building @emph{everything} from source on your machine, making each installation and upgrade very expensive. @xref{On Trusting Binaries}, for a discussion of reasons why one might want do disable substitutes." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:843 +#: guix-git/doc/guix.texi:854 msgid "Each user may need to perform a few additional steps to make their Guix environment ready for use, @pxref{Application Setup}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:846 +#: guix-git/doc/guix.texi:857 msgid "Voilà, the installation is complete!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:849 +#: guix-git/doc/guix.texi:860 msgid "You can confirm that Guix is working by installing a sample package into the root profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:852 +#: guix-git/doc/guix.texi:863 #, no-wrap msgid "# guix install hello\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:856 +#: guix-git/doc/guix.texi:867 msgid "The binary installation tarball can be (re)produced and verified simply by running the following command in the Guix source tree:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:859 +#: guix-git/doc/guix.texi:870 #, no-wrap msgid "make guix-binary.@var{system}.tar.xz\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:863 +#: guix-git/doc/guix.texi:874 msgid "...@: which, in turn, runs:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:867 +#: guix-git/doc/guix.texi:878 #, no-wrap msgid "" "guix pack -s @var{system} --localstatedir \\\n" @@ -5528,223 +5592,228 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:870 +#: guix-git/doc/guix.texi:881 msgid "@xref{Invoking guix pack}, for more info on this handy tool." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:878 +#: guix-git/doc/guix.texi:889 msgid "This section lists requirements when building Guix from source. The build procedure for Guix is the same as for other GNU software, and is not covered here. Please see the files @file{README} and @file{INSTALL} in the Guix source tree for additional details." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:879 +#: guix-git/doc/guix.texi:890 #, no-wrap msgid "official website" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:882 +#: guix-git/doc/guix.texi:893 msgid "GNU Guix is available for download from its website at @url{https://www.gnu.org/software/guix/}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:884 +#: guix-git/doc/guix.texi:895 msgid "GNU Guix depends on the following packages:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:886 +#: guix-git/doc/guix.texi:897 #, no-wrap -msgid "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x;" +msgid "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x," +msgstr "" + +#. type: itemize +#: guix-git/doc/guix.texi:899 +msgid "version 3.0.3 or later;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:887 +#: guix-git/doc/guix.texi:899 #, no-wrap msgid "@url{https://notabug.org/cwebber/guile-gcrypt, Guile-Gcrypt}, version" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:889 +#: guix-git/doc/guix.texi:901 msgid "0.1.0 or later;" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:893 +#: guix-git/doc/guix.texi:905 msgid "@uref{https://gnutls.org/, GnuTLS}, specifically its Guile bindings (@pxref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile});" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:896 +#: guix-git/doc/guix.texi:908 msgid "@uref{https://notabug.org/guile-sqlite3/guile-sqlite3, Guile-SQLite3}, version 0.1.0 or later;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:896 +#: guix-git/doc/guix.texi:908 #, no-wrap msgid "@uref{https://notabug.org/guile-zlib/guile-zlib, Guile-zlib}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:898 +#: guix-git/doc/guix.texi:910 msgid "version 0.1.0 or later;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:898 +#: guix-git/doc/guix.texi:910 #, no-wrap msgid "@uref{https://notabug.org/guile-lzlib/guile-lzlib, Guile-lzlib};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:899 +#: guix-git/doc/guix.texi:911 #, no-wrap msgid "@uref{https://www.nongnu.org/guile-avahi/, Guile-Avahi};" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:903 +#: guix-git/doc/guix.texi:915 msgid "@uref{https://gitlab.com/guile-git/guile-git, Guile-Git}, version 0.5.0 or later;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:903 +#: guix-git/doc/guix.texi:915 #, no-wrap msgid "@uref{https://savannah.nongnu.org/projects/guile-json/, Guile-JSON}" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:905 +#: guix-git/doc/guix.texi:917 msgid "4.3.0 or later;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:905 +#: guix-git/doc/guix.texi:917 #, no-wrap msgid "@url{https://www.gnu.org/software/make/, GNU Make}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:909 +#: guix-git/doc/guix.texi:921 msgid "The following dependencies are optional:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:917 +#: guix-git/doc/guix.texi:929 msgid "Support for build offloading (@pxref{Daemon Offload Setup}) and @command{guix copy} (@pxref{Invoking guix copy}) depends on @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH}, version 0.13.0 or later." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:922 +#: guix-git/doc/guix.texi:934 msgid "@uref{https://notabug.org/guile-zstd/guile-zstd, Guile-zstd}, for zstd compression and decompression in @command{guix publish} and for substitutes (@pxref{Invoking guix publish})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:926 +#: guix-git/doc/guix.texi:938 msgid "@uref{https://ngyro.com/software/guile-semver.html, Guile-Semver} for the @code{crate} importer (@pxref{Invoking guix import})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:931 +#: guix-git/doc/guix.texi:943 msgid "@uref{https://www.nongnu.org/guile-lib/doc/ref/htmlprag/, Guile-Lib} for the @code{go} importer (@pxref{Invoking guix import}) and for some of the ``updaters'' (@pxref{Invoking guix refresh})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:935 +#: guix-git/doc/guix.texi:947 msgid "When @url{http://www.bzip.org, libbz2} is available, @command{guix-daemon} can use it to compress build logs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:939 +#: guix-git/doc/guix.texi:951 msgid "Unless @option{--disable-daemon} was passed to @command{configure}, the following packages are also needed:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:941 +#: guix-git/doc/guix.texi:953 #, no-wrap msgid "@url{https://gnupg.org/, GNU libgcrypt};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:942 +#: guix-git/doc/guix.texi:954 #, no-wrap msgid "@url{https://sqlite.org, SQLite 3};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:943 +#: guix-git/doc/guix.texi:955 #, no-wrap msgid "@url{https://gcc.gnu.org, GCC's g++}, with support for the" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:945 +#: guix-git/doc/guix.texi:957 msgid "C++11 standard." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:947 +#: guix-git/doc/guix.texi:959 #, no-wrap msgid "state directory" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:956 +#: guix-git/doc/guix.texi:968 msgid "When configuring Guix on a system that already has a Guix installation, be sure to specify the same state directory as the existing installation using the @option{--localstatedir} option of the @command{configure} script (@pxref{Directory Variables, @code{localstatedir},, standards, GNU Coding Standards}). Usually, this @var{localstatedir} option is set to the value @file{/var}. The @command{configure} script protects against unintended misconfiguration of @var{localstatedir} so you do not inadvertently corrupt your store (@pxref{The Store})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:960 +#: guix-git/doc/guix.texi:972 #, no-wrap msgid "test suite" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:966 +#: guix-git/doc/guix.texi:978 msgid "After a successful @command{configure} and @code{make} run, it is a good idea to run the test suite. It can help catch issues with the setup or environment, or bugs in Guix itself---and really, reporting test failures is a good way to help improve the software. To run the test suite, type:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:969 +#: guix-git/doc/guix.texi:981 #, no-wrap msgid "make check\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:976 +#: guix-git/doc/guix.texi:988 msgid "Test cases can run in parallel: you can use the @code{-j} option of GNU@tie{}make to speed things up. The first run may take a few minutes on a recent machine; subsequent runs will be faster because the store that is created for test purposes will already have various things in cache." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:979 +#: guix-git/doc/guix.texi:991 msgid "It is also possible to run a subset of the tests by defining the @code{TESTS} makefile variable as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:982 +#: guix-git/doc/guix.texi:994 #, no-wrap msgid "make check TESTS=\"tests/store.scm tests/cpio.scm\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:987 +#: guix-git/doc/guix.texi:999 msgid "By default, tests results are displayed at a file level. In order to see the details of every individual test cases, it is possible to define the @code{SCM_LOG_DRIVER_FLAGS} makefile variable as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:990 +#: guix-git/doc/guix.texi:1002 #, no-wrap msgid "make check TESTS=\"tests/base64.scm\" SCM_LOG_DRIVER_FLAGS=\"--brief=no\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:998 +#: guix-git/doc/guix.texi:1010 msgid "The underlying SRFI 64 custom Automake test driver used for the 'check' test suite (located at @file{build-aux/test-driver.scm}) also allows selecting which test cases to run at a finer level, via its @option{--select} and @option{--exclude} options. Here's an example, to run all the test cases from the @file{tests/packages.scm} test file whose names start with ``transaction-upgrade-entry'':" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1002 +#: guix-git/doc/guix.texi:1014 #, no-wrap msgid "" "export SCM_LOG_DRIVER_FLAGS=\"--select=^transaction-upgrade-entry\"\n" @@ -5752,114 +5821,114 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1008 +#: guix-git/doc/guix.texi:1020 msgid "Those wishing to inspect the results of failed tests directly from the command line can add the @option{--errors-only=yes} option to the @code{SCM_LOG_DRIVER_FLAGS} makefile variable and set the @code{VERBOSE} Automake makefile variable, as in:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1011 +#: guix-git/doc/guix.texi:1023 #, no-wrap msgid "make check SCM_LOG_DRIVER_FLAGS=\"--brief=no --errors-only=yes\" VERBOSE=1\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1016 +#: guix-git/doc/guix.texi:1028 msgid "The @option{--show-duration=yes} option can be used to print the duration of the individual test cases, when used in combination with @option{--brief=no}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1019 +#: guix-git/doc/guix.texi:1031 #, no-wrap msgid "make check SCM_LOG_DRIVER_FLAGS=\"--brief=no --show-duration=yes\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1023 +#: guix-git/doc/guix.texi:1035 msgid "@xref{Parallel Test Harness,,,automake,GNU Automake} for more information about the Automake Parallel Test Harness." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1028 +#: guix-git/doc/guix.texi:1040 msgid "Upon failure, please email @email{bug-guix@@gnu.org} and attach the @file{test-suite.log} file. Please specify the Guix version being used as well as version numbers of the dependencies (@pxref{Requirements}) in your message." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1032 +#: guix-git/doc/guix.texi:1044 msgid "Guix also comes with a whole-system test suite that tests complete Guix System instances. It can only run on systems where Guix is already installed, using:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1035 +#: guix-git/doc/guix.texi:1047 #, no-wrap msgid "make check-system\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1039 +#: guix-git/doc/guix.texi:1051 msgid "or, again, by defining @code{TESTS} to select a subset of tests to run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1042 +#: guix-git/doc/guix.texi:1054 #, no-wrap msgid "make check-system TESTS=\"basic mcron\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1050 +#: guix-git/doc/guix.texi:1062 msgid "These system tests are defined in the @code{(gnu tests @dots{})} modules. They work by running the operating systems under test with lightweight instrumentation in a virtual machine (VM). They can be computationally intensive or rather cheap, depending on whether substitutes are available for their dependencies (@pxref{Substitutes}). Some of them require a lot of storage space to hold VM images." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1053 +#: guix-git/doc/guix.texi:1065 msgid "Again in case of test failures, please send @email{bug-guix@@gnu.org} all the details." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1057 +#: guix-git/doc/guix.texi:1069 #, no-wrap msgid "daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1065 +#: guix-git/doc/guix.texi:1077 msgid "Operations such as building a package or running the garbage collector are all performed by a specialized process, the @dfn{build daemon}, on behalf of clients. Only the daemon may access the store and its associated database. Thus, any operation that manipulates the store goes through the daemon. For instance, command-line tools such as @command{guix package} and @command{guix build} communicate with the daemon (@i{via} remote procedure calls) to instruct it what to do." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1069 +#: guix-git/doc/guix.texi:1081 msgid "The following sections explain how to prepare the build daemon's environment. See also @ref{Substitutes}, for information on how to allow the daemon to download pre-built binaries." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1079 guix-git/doc/guix.texi:1542 +#: guix-git/doc/guix.texi:1091 guix-git/doc/guix.texi:1559 #, no-wrap msgid "build environment" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1087 +#: guix-git/doc/guix.texi:1099 msgid "In a standard multi-user setup, Guix and its daemon---the @command{guix-daemon} program---are installed by the system administrator; @file{/gnu/store} is owned by @code{root} and @command{guix-daemon} runs as @code{root}. Unprivileged users may use Guix tools to build packages or otherwise access the store, and the daemon will do it on their behalf, ensuring that the store is kept in a consistent state, and allowing built packages to be shared among users." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1088 +#: guix-git/doc/guix.texi:1100 #, no-wrap msgid "build users" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1099 +#: guix-git/doc/guix.texi:1111 msgid "When @command{guix-daemon} runs as @code{root}, you may not want package build processes themselves to run as @code{root} too, for obvious security reasons. To avoid that, a special pool of @dfn{build users} should be created for use by build processes started by the daemon. These build users need not have a shell and a home directory: they will just be used when the daemon drops @code{root} privileges in build processes. Having several such users allows the daemon to launch distinct build processes under separate UIDs, which guarantees that they do not interfere with each other---an essential feature since builds are regarded as pure functions (@pxref{Introduction})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1102 +#: guix-git/doc/guix.texi:1114 msgid "On a GNU/Linux system, a build user pool may be created like this (using Bash syntax and the @code{shadow} commands):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1114 +#: guix-git/doc/guix.texi:1126 #, no-wrap msgid "" "# groupadd --system guixbuild\n" @@ -5873,139 +5942,144 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1124 +#: guix-git/doc/guix.texi:1136 msgid "The number of build users determines how many build jobs may run in parallel, as specified by the @option{--max-jobs} option (@pxref{Invoking guix-daemon, @option{--max-jobs}}). To use @command{guix system vm} and related commands, you may need to add the build users to the @code{kvm} group so they can access @file{/dev/kvm}, using @code{-G guixbuild,kvm} instead of @code{-G guixbuild} (@pxref{Invoking guix system})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1133 +#: guix-git/doc/guix.texi:1145 msgid "The @code{guix-daemon} program may then be run as @code{root} with the following command@footnote{If your machine uses the systemd init system, dropping the @file{@var{prefix}/lib/systemd/system/guix-daemon.service} file in @file{/etc/systemd/system} will ensure that @command{guix-daemon} is automatically started. Similarly, if your machine uses the Upstart init system, drop the @file{@var{prefix}/lib/upstart/system/guix-daemon.conf} file in @file{/etc/init}.}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1136 guix-git/doc/guix.texi:1535 +#: guix-git/doc/guix.texi:1148 guix-git/doc/guix.texi:1552 #, no-wrap msgid "# guix-daemon --build-users-group=guixbuild\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1138 guix-git/doc/guix.texi:1540 +#: guix-git/doc/guix.texi:1150 guix-git/doc/guix.texi:1557 #, no-wrap msgid "chroot" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1143 +#: guix-git/doc/guix.texi:1155 msgid "This way, the daemon starts build processes in a chroot, under one of the @code{guixbuilder} users. On GNU/Linux, by default, the chroot environment contains nothing but:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1151 +#: guix-git/doc/guix.texi:1163 msgid "a minimal @code{/dev} directory, created mostly independently from the host @code{/dev}@footnote{``Mostly'', because while the set of files that appear in the chroot's @code{/dev} is fixed, most of these files can only be created if the host has them.};" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1155 +#: guix-git/doc/guix.texi:1167 msgid "the @code{/proc} directory; it only shows the processes of the container since a separate PID name space is used;" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1159 +#: guix-git/doc/guix.texi:1171 msgid "@file{/etc/passwd} with an entry for the current user and an entry for user @file{nobody};" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1162 +#: guix-git/doc/guix.texi:1174 msgid "@file{/etc/group} with an entry for the user's group;" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1166 +#: guix-git/doc/guix.texi:1178 msgid "@file{/etc/hosts} with an entry that maps @code{localhost} to @code{127.0.0.1};" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1169 +#: guix-git/doc/guix.texi:1181 msgid "a writable @file{/tmp} directory." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1178 +#: guix-git/doc/guix.texi:1187 +msgid "The chroot does not contain a @file{/home} directory, and the @env{HOME} environment variable is set to the non-existent @file{/homeless-shelter}. This helps to highlight inappropriate uses of @env{HOME} in the build scripts of packages." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:1195 msgid "You can influence the directory where the daemon stores build trees @i{via} the @env{TMPDIR} environment variable. However, the build tree within the chroot is always called @file{/tmp/guix-build-@var{name}.drv-0}, where @var{name} is the derivation name---e.g., @code{coreutils-8.24}. This way, the value of @env{TMPDIR} does not leak inside build environments, which avoids discrepancies in cases where build processes capture the name of their build tree." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:1179 guix-git/doc/guix.texi:4007 +#: guix-git/doc/guix.texi:1196 guix-git/doc/guix.texi:4025 #, no-wrap msgid "http_proxy" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:1180 guix-git/doc/guix.texi:4008 +#: guix-git/doc/guix.texi:1197 guix-git/doc/guix.texi:4026 #, no-wrap msgid "https_proxy" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1185 +#: guix-git/doc/guix.texi:1202 msgid "The daemon also honors the @env{http_proxy} and @env{https_proxy} environment variables for HTTP and HTTPS downloads it performs, be it for fixed-output derivations (@pxref{Derivations}) or for substitutes (@pxref{Substitutes})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1193 +#: guix-git/doc/guix.texi:1210 msgid "If you are installing Guix as an unprivileged user, it is still possible to run @command{guix-daemon} provided you pass @option{--disable-chroot}. However, build processes will not be isolated from one another, and not from the rest of the system. Thus, build processes may interfere with each other, and may access programs, libraries, and other files available on the system---making it much harder to view them as @emph{pure} functions." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:1196 +#: guix-git/doc/guix.texi:1213 #, no-wrap msgid "Using the Offload Facility" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1198 guix-git/doc/guix.texi:1601 +#: guix-git/doc/guix.texi:1215 guix-git/doc/guix.texi:1618 #, no-wrap msgid "offloading" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1199 +#: guix-git/doc/guix.texi:1216 #, no-wrap msgid "build hook" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1218 +#: guix-git/doc/guix.texi:1235 msgid "When desired, the build daemon can @dfn{offload} derivation builds to other machines running Guix, using the @code{offload} @dfn{build hook}@footnote{This feature is available only when @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH} is present.}. When that feature is enabled, a list of user-specified build machines is read from @file{/etc/guix/machines.scm}; every time a build is requested, for instance via @code{guix build}, the daemon attempts to offload it to one of the machines that satisfy the constraints of the derivation, in particular its system types---e.g., @code{x86_64-linux}. A single machine can have multiple system types, either because its architecture natively supports it, via emulation (@pxref{transparent-emulation-qemu, Transparent Emulation with QEMU}), or both. Missing prerequisites for the build are copied over SSH to the target machine, which then proceeds with the build; upon success the output(s) of the build are copied back to the initial machine. The offload facility comes with a basic scheduler that attempts to select the best machine. The best machine is chosen among the available machines based on criteria such as:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1224 +#: guix-git/doc/guix.texi:1241 msgid "The availability of a build slot. A build machine can have as many build slots (connections) as the value of the @code{parallel-builds} field of its @code{build-machine} object." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1228 +#: guix-git/doc/guix.texi:1245 msgid "Its relative speed, as defined via the @code{speed} field of its @code{build-machine} object." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1233 +#: guix-git/doc/guix.texi:1250 msgid "Its load. The normalized machine load must be lower than a threshold value, configurable via the @code{overload-threshold} field of its @code{build-machine} object." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1236 +#: guix-git/doc/guix.texi:1253 msgid "Disk space availability. More than a 100 MiB must be available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1239 +#: guix-git/doc/guix.texi:1256 msgid "The @file{/etc/guix/machines.scm} file typically looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:1247 +#: guix-git/doc/guix.texi:1264 #, no-wrap msgid "" "(list (build-machine\n" @@ -6018,7 +6092,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:1253 +#: guix-git/doc/guix.texi:1270 #, no-wrap msgid "" " (build-machine\n" @@ -6030,7 +6104,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:1257 +#: guix-git/doc/guix.texi:1274 #, no-wrap msgid "" " ;; Remember 'guix offload' is spawned by\n" @@ -6039,98 +6113,98 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1263 +#: guix-git/doc/guix.texi:1280 msgid "In the example above we specify a list of two build machines, one for the @code{x86_64} and @code{i686} architectures and one for the @code{aarch64} architecture." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1272 +#: guix-git/doc/guix.texi:1289 msgid "In fact, this file is---not surprisingly!---a Scheme file that is evaluated when the @code{offload} hook is started. Its return value must be a list of @code{build-machine} objects. While this example shows a fixed list of build machines, one could imagine, say, using DNS-SD to return a list of potential build machines discovered in the local network (@pxref{Introduction, Guile-Avahi,, guile-avahi, Using Avahi in Guile Scheme Programs}). The @code{build-machine} data type is detailed below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:1273 +#: guix-git/doc/guix.texi:1290 #, no-wrap msgid "{Data Type} build-machine" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:1276 +#: guix-git/doc/guix.texi:1293 msgid "This data type represents build machines to which the daemon may offload builds. The important fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1279 guix-git/doc/guix.texi:7113 -#: guix-git/doc/guix.texi:15446 guix-git/doc/guix.texi:15545 -#: guix-git/doc/guix.texi:15786 guix-git/doc/guix.texi:17314 -#: guix-git/doc/guix.texi:17935 guix-git/doc/guix.texi:18209 -#: guix-git/doc/guix.texi:21269 guix-git/doc/guix.texi:24179 -#: guix-git/doc/guix.texi:25568 guix-git/doc/guix.texi:26180 -#: guix-git/doc/guix.texi:26533 guix-git/doc/guix.texi:26574 -#: guix-git/doc/guix.texi:28735 guix-git/doc/guix.texi:31072 -#: guix-git/doc/guix.texi:31092 guix-git/doc/guix.texi:33766 -#: guix-git/doc/guix.texi:33783 guix-git/doc/guix.texi:34320 -#: guix-git/doc/guix.texi:36095 guix-git/doc/guix.texi:36422 +#: guix-git/doc/guix.texi:1296 guix-git/doc/guix.texi:7157 +#: guix-git/doc/guix.texi:15803 guix-git/doc/guix.texi:15902 +#: guix-git/doc/guix.texi:16143 guix-git/doc/guix.texi:17676 +#: guix-git/doc/guix.texi:18297 guix-git/doc/guix.texi:18571 +#: guix-git/doc/guix.texi:21631 guix-git/doc/guix.texi:24541 +#: guix-git/doc/guix.texi:25905 guix-git/doc/guix.texi:26517 +#: guix-git/doc/guix.texi:26870 guix-git/doc/guix.texi:26911 +#: guix-git/doc/guix.texi:29072 guix-git/doc/guix.texi:31437 +#: guix-git/doc/guix.texi:31457 guix-git/doc/guix.texi:34203 +#: guix-git/doc/guix.texi:34220 guix-git/doc/guix.texi:34759 +#: guix-git/doc/guix.texi:36585 guix-git/doc/guix.texi:36912 #, no-wrap msgid "name" msgstr "nome" #. type: table -#: guix-git/doc/guix.texi:1281 +#: guix-git/doc/guix.texi:1298 msgid "The host name of the remote machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1282 +#: guix-git/doc/guix.texi:1299 #, no-wrap msgid "systems" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1285 +#: guix-git/doc/guix.texi:1302 msgid "The system types the remote machine supports---e.g., @code{(list \"x86_64-linux\" \"i686-linux\")}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1286 guix-git/doc/guix.texi:17945 +#: guix-git/doc/guix.texi:1303 guix-git/doc/guix.texi:18307 #, no-wrap msgid "user" msgstr "utente" #. type: table -#: guix-git/doc/guix.texi:1290 +#: guix-git/doc/guix.texi:1307 msgid "The user account to use when connecting to the remote machine over SSH. Note that the SSH key pair must @emph{not} be passphrase-protected, to allow non-interactive logins." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1291 +#: guix-git/doc/guix.texi:1308 #, no-wrap msgid "host-key" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1295 +#: guix-git/doc/guix.texi:1312 msgid "This must be the machine's SSH @dfn{public host key} in OpenSSH format. This is used to authenticate the machine when we connect to it. It is a long string that looks like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1298 +#: guix-git/doc/guix.texi:1315 #, no-wrap msgid "ssh-ed25519 AAAAC3NzaC@dots{}mde+UhL hint@@example.org\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1303 +#: guix-git/doc/guix.texi:1320 msgid "If the machine is running the OpenSSH daemon, @command{sshd}, the host key can be found in a file such as @file{/etc/ssh/ssh_host_ed25519_key.pub}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1308 +#: guix-git/doc/guix.texi:1325 msgid "If the machine is running the SSH daemon of GNU@tie{}lsh, @command{lshd}, the host key is in @file{/etc/lsh/host-key.pub} or a similar file. It can be converted to the OpenSSH format using @command{lsh-export-key} (@pxref{Converting keys,,, lsh, LSH Manual}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1312 +#: guix-git/doc/guix.texi:1329 #, no-wrap msgid "" "$ lsh-export-key --openssh < /etc/lsh/host-key.pub\n" @@ -6138,674 +6212,674 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:1317 +#: guix-git/doc/guix.texi:1334 msgid "A number of optional fields may be specified:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1320 guix-git/doc/guix.texi:35581 +#: guix-git/doc/guix.texi:1337 guix-git/doc/guix.texi:36061 #, no-wrap msgid "@code{port} (default: @code{22})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1322 +#: guix-git/doc/guix.texi:1339 msgid "Port number of SSH server on the machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1323 +#: guix-git/doc/guix.texi:1340 #, no-wrap msgid "@code{private-key} (default: @file{~root/.ssh/id_rsa})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1326 +#: guix-git/doc/guix.texi:1343 msgid "The SSH private key file to use when connecting to the machine, in OpenSSH format. This key must not be protected with a passphrase." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1329 +#: guix-git/doc/guix.texi:1346 msgid "Note that the default value is the private key @emph{of the root account}. Make sure it exists if you use the default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1330 +#: guix-git/doc/guix.texi:1347 #, no-wrap msgid "@code{compression} (default: @code{\"zlib@@openssh.com,zlib\"})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:1331 +#: guix-git/doc/guix.texi:1348 #, no-wrap msgid "@code{compression-level} (default: @code{3})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1333 +#: guix-git/doc/guix.texi:1350 msgid "The SSH-level compression methods and compression level requested." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1336 +#: guix-git/doc/guix.texi:1353 msgid "Note that offloading relies on SSH compression to reduce bandwidth usage when transferring files to and from build machines." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1337 +#: guix-git/doc/guix.texi:1354 #, no-wrap msgid "@code{daemon-socket} (default: @code{\"/var/guix/daemon-socket/socket\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1340 +#: guix-git/doc/guix.texi:1357 msgid "File name of the Unix-domain socket @command{guix-daemon} is listening to on that machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1341 +#: guix-git/doc/guix.texi:1358 #, no-wrap msgid "@code{overload-threshold} (default: @code{0.6})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1347 +#: guix-git/doc/guix.texi:1364 msgid "The load threshold above which a potential offload machine is disregarded by the offload scheduler. The value roughly translates to the total processor usage of the build machine, ranging from 0.0 (0%) to 1.0 (100%). It can also be disabled by setting @code{overload-threshold} to @code{#f}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1348 +#: guix-git/doc/guix.texi:1365 #, no-wrap msgid "@code{parallel-builds} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1350 +#: guix-git/doc/guix.texi:1367 msgid "The number of builds that may run in parallel on the machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1351 +#: guix-git/doc/guix.texi:1368 #, no-wrap msgid "@code{speed} (default: @code{1.0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1354 +#: guix-git/doc/guix.texi:1371 msgid "A ``relative speed factor''. The offload scheduler will tend to prefer machines with a higher speed factor." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1355 +#: guix-git/doc/guix.texi:1372 #, no-wrap msgid "@code{features} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1360 +#: guix-git/doc/guix.texi:1377 msgid "A list of strings denoting specific features supported by the machine. An example is @code{\"kvm\"} for machines that have the KVM Linux modules and corresponding hardware support. Derivations can request features by name, and they will be scheduled on matching build machines." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1366 +#: guix-git/doc/guix.texi:1383 msgid "The @command{guix} command must be in the search path on the build machines. You can check whether this is the case by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1369 +#: guix-git/doc/guix.texi:1386 #, no-wrap msgid "ssh build-machine guix repl --version\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1376 +#: guix-git/doc/guix.texi:1393 msgid "There is one last thing to do once @file{machines.scm} is in place. As explained above, when offloading, files are transferred back and forth between the machine stores. For this to work, you first need to generate a key pair on each machine to allow the daemon to export signed archives of files from the store (@pxref{Invoking guix archive}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1379 guix-git/doc/guix.texi:35509 +#: guix-git/doc/guix.texi:1396 guix-git/doc/guix.texi:35965 #, no-wrap msgid "# guix archive --generate-key\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1384 +#: guix-git/doc/guix.texi:1401 msgid "Each build machine must authorize the key of the master machine so that it accepts store items it receives from the master:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1387 +#: guix-git/doc/guix.texi:1404 #, no-wrap msgid "# guix archive --authorize < master-public-key.txt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1391 +#: guix-git/doc/guix.texi:1408 msgid "Likewise, the master machine must authorize the key of each build machine." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1397 +#: guix-git/doc/guix.texi:1414 msgid "All the fuss with keys is here to express pairwise mutual trust relations between the master and the build machines. Concretely, when the master receives files from a build machine (and @i{vice versa}), its build daemon can make sure they are genuine, have not been tampered with, and that they are signed by an authorized key." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1398 +#: guix-git/doc/guix.texi:1415 #, no-wrap msgid "offload test" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1401 +#: guix-git/doc/guix.texi:1418 msgid "To test whether your setup is operational, run this command on the master node:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1404 +#: guix-git/doc/guix.texi:1421 #, no-wrap msgid "# guix offload test\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1410 +#: guix-git/doc/guix.texi:1427 msgid "This will attempt to connect to each of the build machines specified in @file{/etc/guix/machines.scm}, make sure Guix is available on each machine, attempt to export to the machine and import from it, and report any error in the process." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1413 +#: guix-git/doc/guix.texi:1430 msgid "If you want to test a different machine file, just specify it on the command line:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1416 +#: guix-git/doc/guix.texi:1433 #, no-wrap msgid "# guix offload test machines-qualif.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1420 +#: guix-git/doc/guix.texi:1437 msgid "Last, you can test the subset of the machines whose name matches a regular expression like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1423 +#: guix-git/doc/guix.texi:1440 #, no-wrap msgid "# guix offload test machines.scm '\\.gnu\\.org$'\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1425 +#: guix-git/doc/guix.texi:1442 #, no-wrap msgid "offload status" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1428 +#: guix-git/doc/guix.texi:1445 msgid "To display the current load of all build hosts, run this command on the main node:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1431 +#: guix-git/doc/guix.texi:1448 #, no-wrap msgid "# guix offload status\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1437 +#: guix-git/doc/guix.texi:1454 #, no-wrap msgid "SELinux, daemon policy" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1438 +#: guix-git/doc/guix.texi:1455 #, no-wrap msgid "mandatory access control, SELinux" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1439 +#: guix-git/doc/guix.texi:1456 #, no-wrap msgid "security, guix-daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1445 +#: guix-git/doc/guix.texi:1462 msgid "Guix includes an SELinux policy file at @file{etc/guix-daemon.cil} that can be installed on a system where SELinux is enabled, in order to label Guix files and to specify the expected behavior of the daemon. Since Guix System does not provide an SELinux base policy, the daemon policy cannot be used on Guix System." msgstr "" #. type: subsubsection -#: guix-git/doc/guix.texi:1446 +#: guix-git/doc/guix.texi:1463 #, no-wrap msgid "Installing the SELinux policy" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1447 +#: guix-git/doc/guix.texi:1464 #, no-wrap msgid "SELinux, policy installation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1449 +#: guix-git/doc/guix.texi:1466 msgid "To install the policy run this command as root:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1452 +#: guix-git/doc/guix.texi:1469 #, no-wrap msgid "semodule -i etc/guix-daemon.cil\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1456 +#: guix-git/doc/guix.texi:1473 msgid "Then relabel the file system with @code{restorecon} or by a different mechanism provided by your system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1461 +#: guix-git/doc/guix.texi:1478 msgid "Once the policy is installed, the file system has been relabeled, and the daemon has been restarted, it should be running in the @code{guix_daemon_t} context. You can confirm this with the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1464 +#: guix-git/doc/guix.texi:1481 #, no-wrap msgid "ps -Zax | grep guix-daemon\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1469 +#: guix-git/doc/guix.texi:1486 msgid "Monitor the SELinux log files as you run a command like @code{guix build hello} to convince yourself that SELinux permits all necessary operations." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1471 +#: guix-git/doc/guix.texi:1488 #, no-wrap msgid "SELinux, limitations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1476 +#: guix-git/doc/guix.texi:1493 msgid "This policy is not perfect. Here is a list of limitations or quirks that should be considered when deploying the provided SELinux policy for the Guix daemon." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1483 +#: guix-git/doc/guix.texi:1500 msgid "@code{guix_daemon_socket_t} isn’t actually used. None of the socket operations involve contexts that have anything to do with @code{guix_daemon_socket_t}. It doesn’t hurt to have this unused label, but it would be preferable to define socket rules for only this label." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1494 +#: guix-git/doc/guix.texi:1511 msgid "@code{guix gc} cannot access arbitrary links to profiles. By design, the file label of the destination of a symlink is independent of the file label of the link itself. Although all profiles under $localstatedir are labelled, the links to these profiles inherit the label of the directory they are in. For links in the user’s home directory this will be @code{user_home_t}. But for links from the root user’s home directory, or @file{/tmp}, or the HTTP server’s working directory, etc, this won’t work. @code{guix gc} would be prevented from reading and following these links." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1499 +#: guix-git/doc/guix.texi:1516 msgid "The daemon’s feature to listen for TCP connections might no longer work. This might require extra rules, because SELinux treats network sockets differently from files." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1510 +#: guix-git/doc/guix.texi:1527 msgid "Currently all files with a name matching the regular expression @code{/gnu/store/.+-(guix-.+|profile)/bin/guix-daemon} are assigned the label @code{guix_daemon_exec_t}; this means that @emph{any} file with that name in any profile would be permitted to run in the @code{guix_daemon_t} domain. This is not ideal. An attacker could build a package that provides this executable and convince a user to install and run it, which lifts it into the @code{guix_daemon_t} domain. At that point SELinux could not prevent it from accessing files that are allowed for processes in that domain." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1515 +#: guix-git/doc/guix.texi:1532 msgid "You will need to relabel the store directory after all upgrades to @file{guix-daemon}, such as after running @code{guix pull}. Assuming the store is in @file{/gnu}, you can do this with @code{restorecon -vR /gnu}, or by other means provided by your operating system." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1523 +#: guix-git/doc/guix.texi:1540 msgid "We could generate a much more restrictive policy at installation time, so that only the @emph{exact} file name of the currently installed @code{guix-daemon} executable would be labelled with @code{guix_daemon_exec_t}, instead of using a broad regular expression. The downside is that root would have to install or upgrade the policy at installation time whenever the Guix package that provides the effectively running @code{guix-daemon} executable is upgraded." msgstr "" #. type: section -#: guix-git/doc/guix.texi:1526 +#: guix-git/doc/guix.texi:1543 #, no-wrap msgid "Invoking @command{guix-daemon}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1532 +#: guix-git/doc/guix.texi:1549 msgid "The @command{guix-daemon} program implements all the functionality to access the store. This includes launching build processes, running the garbage collector, querying the availability of a build result, etc. It is normally run as @code{root} like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1539 +#: guix-git/doc/guix.texi:1556 msgid "For details on how to set it up, @pxref{Setting Up the Daemon}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1541 +#: guix-git/doc/guix.texi:1558 #, no-wrap msgid "container, build environment" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1543 guix-git/doc/guix.texi:3071 -#: guix-git/doc/guix.texi:3988 guix-git/doc/guix.texi:13753 +#: guix-git/doc/guix.texi:1560 guix-git/doc/guix.texi:3088 +#: guix-git/doc/guix.texi:4006 guix-git/doc/guix.texi:14110 #, no-wrap msgid "reproducible builds" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1555 +#: guix-git/doc/guix.texi:1572 msgid "By default, @command{guix-daemon} launches build processes under different UIDs, taken from the build group specified with @option{--build-users-group}. In addition, each build process is run in a chroot environment that only contains the subset of the store that the build process depends on, as specified by its derivation (@pxref{Programming Interface, derivation}), plus a set of specific system directories. By default, the latter contains @file{/dev} and @file{/dev/pts}. Furthermore, on GNU/Linux, the build environment is a @dfn{container}: in addition to having its own file system tree, it has a separate mount name space, its own PID name space, network name space, etc. This helps achieve reproducible builds (@pxref{Features})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1561 +#: guix-git/doc/guix.texi:1578 msgid "When the daemon performs a build on behalf of the user, it creates a build directory under @file{/tmp} or under the directory specified by its @env{TMPDIR} environment variable. This directory is shared with the container for the duration of the build, though within the container, the build tree is always called @file{/tmp/guix-build-@var{name}.drv-0}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1565 +#: guix-git/doc/guix.texi:1582 msgid "The build directory is automatically deleted upon completion, unless the build failed and the client specified @option{--keep-failed} (@pxref{Common Build Options, @option{--keep-failed}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1571 +#: guix-git/doc/guix.texi:1588 msgid "The daemon listens for connections and spawns one sub-process for each session started by a client (one of the @command{guix} sub-commands). The @command{guix processes} command allows you to get an overview of the activity on your system by viewing each of the active sessions and clients. @xref{Invoking guix processes}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1573 +#: guix-git/doc/guix.texi:1590 msgid "The following command-line options are supported:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1575 +#: guix-git/doc/guix.texi:1592 #, no-wrap msgid "--build-users-group=@var{group}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1578 +#: guix-git/doc/guix.texi:1595 msgid "Take users from @var{group} to run build processes (@pxref{Setting Up the Daemon, build users})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1579 guix-git/doc/guix.texi:10915 +#: guix-git/doc/guix.texi:1596 guix-git/doc/guix.texi:11229 #, no-wrap msgid "--no-substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1580 guix-git/doc/guix.texi:3083 -#: guix-git/doc/guix.texi:3741 +#: guix-git/doc/guix.texi:1597 guix-git/doc/guix.texi:3100 +#: guix-git/doc/guix.texi:3759 #, no-wrap msgid "substitutes" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1584 guix-git/doc/guix.texi:10919 +#: guix-git/doc/guix.texi:1601 guix-git/doc/guix.texi:11233 msgid "Do not use substitutes for build products. That is, always build things locally instead of allowing downloads of pre-built binaries (@pxref{Substitutes})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1588 +#: guix-git/doc/guix.texi:1605 msgid "When the daemon runs with @option{--no-substitutes}, clients can still explicitly enable substitution @i{via} the @code{set-build-options} remote procedure call (@pxref{The Store})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:1590 +#: guix-git/doc/guix.texi:1607 msgid "daemon-substitute-urls" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1590 guix-git/doc/guix.texi:10902 -#: guix-git/doc/guix.texi:13160 guix-git/doc/guix.texi:13899 -#: guix-git/doc/guix.texi:14124 +#: guix-git/doc/guix.texi:1607 guix-git/doc/guix.texi:11216 +#: guix-git/doc/guix.texi:13517 guix-git/doc/guix.texi:14256 +#: guix-git/doc/guix.texi:14481 #, no-wrap msgid "--substitute-urls=@var{urls}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1594 +#: guix-git/doc/guix.texi:1611 msgid "Consider @var{urls} the default whitespace-separated list of substitute source URLs. When this option is omitted, @indicateurl{@value{SUBSTITUTE-URLS}} is used." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1597 +#: guix-git/doc/guix.texi:1614 msgid "This means that substitutes may be downloaded from @var{urls}, as long as they are signed by a trusted signature (@pxref{Substitutes})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1600 +#: guix-git/doc/guix.texi:1617 msgid "@xref{Getting Substitutes from Other Servers}, for more information on how to configure the daemon to get substitutes from other servers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1602 guix-git/doc/guix.texi:10938 +#: guix-git/doc/guix.texi:1619 guix-git/doc/guix.texi:11252 #, no-wrap msgid "--no-offload" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1606 guix-git/doc/guix.texi:10942 +#: guix-git/doc/guix.texi:1623 guix-git/doc/guix.texi:11256 msgid "Do not use offload builds to other machines (@pxref{Daemon Offload Setup}). That is, always build things locally instead of offloading builds to remote machines." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1607 +#: guix-git/doc/guix.texi:1624 #, no-wrap msgid "--cache-failures" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1609 +#: guix-git/doc/guix.texi:1626 msgid "Cache build failures. By default, only successful builds are cached." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1614 +#: guix-git/doc/guix.texi:1631 msgid "When this option is used, @command{guix gc --list-failures} can be used to query the set of store items marked as failed; @command{guix gc --clear-failures} removes store items from the set of cached failures. @xref{Invoking guix gc}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1615 guix-git/doc/guix.texi:10968 +#: guix-git/doc/guix.texi:1632 guix-git/doc/guix.texi:11282 #, no-wrap msgid "--cores=@var{n}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:1616 guix-git/doc/guix.texi:10969 +#: guix-git/doc/guix.texi:1633 guix-git/doc/guix.texi:11283 #, no-wrap msgid "-c @var{n}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1619 +#: guix-git/doc/guix.texi:1636 msgid "Use @var{n} CPU cores to build each derivation; @code{0} means as many as available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1623 +#: guix-git/doc/guix.texi:1640 msgid "The default value is @code{0}, but it may be overridden by clients, such as the @option{--cores} option of @command{guix build} (@pxref{Invoking guix build})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1627 +#: guix-git/doc/guix.texi:1644 msgid "The effect is to define the @env{NIX_BUILD_CORES} environment variable in the build process, which can then use it to exploit internal parallelism---for instance, by running @code{make -j$NIX_BUILD_CORES}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1628 guix-git/doc/guix.texi:10973 +#: guix-git/doc/guix.texi:1645 guix-git/doc/guix.texi:11287 #, no-wrap msgid "--max-jobs=@var{n}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:1629 guix-git/doc/guix.texi:10974 +#: guix-git/doc/guix.texi:1646 guix-git/doc/guix.texi:11288 #, no-wrap msgid "-M @var{n}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1634 +#: guix-git/doc/guix.texi:1651 msgid "Allow at most @var{n} build jobs in parallel. The default value is @code{1}. Setting it to @code{0} means that no builds will be performed locally; instead, the daemon will offload builds (@pxref{Daemon Offload Setup}), or simply fail." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1635 guix-git/doc/guix.texi:10943 +#: guix-git/doc/guix.texi:1652 guix-git/doc/guix.texi:11257 #, no-wrap msgid "--max-silent-time=@var{seconds}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1638 guix-git/doc/guix.texi:10946 +#: guix-git/doc/guix.texi:1655 guix-git/doc/guix.texi:11260 msgid "When the build or substitution process remains silent for more than @var{seconds}, terminate it and report a build failure." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1640 guix-git/doc/guix.texi:1649 +#: guix-git/doc/guix.texi:1657 guix-git/doc/guix.texi:1666 msgid "The default value is @code{0}, which disables the timeout." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1643 +#: guix-git/doc/guix.texi:1660 msgid "The value specified here can be overridden by clients (@pxref{Common Build Options, @option{--max-silent-time}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1644 guix-git/doc/guix.texi:10950 +#: guix-git/doc/guix.texi:1661 guix-git/doc/guix.texi:11264 #, no-wrap msgid "--timeout=@var{seconds}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1647 guix-git/doc/guix.texi:10953 +#: guix-git/doc/guix.texi:1664 guix-git/doc/guix.texi:11267 msgid "Likewise, when the build or substitution process lasts for more than @var{seconds}, terminate it and report a build failure." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1652 +#: guix-git/doc/guix.texi:1669 msgid "The value specified here can be overridden by clients (@pxref{Common Build Options, @option{--timeout}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1653 +#: guix-git/doc/guix.texi:1670 #, no-wrap msgid "--rounds=@var{N}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1658 +#: guix-git/doc/guix.texi:1675 msgid "Build each derivation @var{n} times in a row, and raise an error if consecutive build results are not bit-for-bit identical. Note that this setting can be overridden by clients such as @command{guix build} (@pxref{Invoking guix build})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1662 guix-git/doc/guix.texi:10937 -#: guix-git/doc/guix.texi:11561 +#: guix-git/doc/guix.texi:1679 guix-git/doc/guix.texi:11251 +#: guix-git/doc/guix.texi:11875 msgid "When used in conjunction with @option{--keep-failed}, the differing output is kept in the store, under @file{/gnu/store/@dots{}-check}. This makes it easy to look for differences between the two results." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1663 +#: guix-git/doc/guix.texi:1680 #, no-wrap msgid "--debug" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1665 +#: guix-git/doc/guix.texi:1682 msgid "Produce debugging output." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1669 +#: guix-git/doc/guix.texi:1686 msgid "This is useful to debug daemon start-up issues, but then it may be overridden by clients, for example the @option{--verbosity} option of @command{guix build} (@pxref{Invoking guix build})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1670 +#: guix-git/doc/guix.texi:1687 #, no-wrap msgid "--chroot-directory=@var{dir}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1672 +#: guix-git/doc/guix.texi:1689 msgid "Add @var{dir} to the build chroot." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1678 +#: guix-git/doc/guix.texi:1695 msgid "Doing this may change the result of build processes---for instance if they use optional dependencies found in @var{dir} when it is available, and not otherwise. For that reason, it is not recommended to do so. Instead, make sure that each derivation declares all the inputs that it needs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1679 +#: guix-git/doc/guix.texi:1696 #, no-wrap msgid "--disable-chroot" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1681 +#: guix-git/doc/guix.texi:1698 msgid "Disable chroot builds." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1686 +#: guix-git/doc/guix.texi:1703 msgid "Using this option is not recommended since, again, it would allow build processes to gain access to undeclared dependencies. It is necessary, though, when @command{guix-daemon} is running under an unprivileged user account." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1687 +#: guix-git/doc/guix.texi:1704 #, no-wrap msgid "--log-compression=@var{type}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1690 +#: guix-git/doc/guix.texi:1707 msgid "Compress build logs according to @var{type}, one of @code{gzip}, @code{bzip2}, or @code{none}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1694 -msgid "Unless @option{--lose-logs} is used, all the build logs are kept in the @var{localstatedir}. To save space, the daemon automatically compresses them with Bzip2 by default." +#: guix-git/doc/guix.texi:1711 +msgid "Unless @option{--lose-logs} is used, all the build logs are kept in the @var{localstatedir}. To save space, the daemon automatically compresses them with gzip by default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1695 +#: guix-git/doc/guix.texi:1712 #, no-wrap msgid "--discover[=yes|no]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1698 guix-git/doc/guix.texi:16563 +#: guix-git/doc/guix.texi:1715 guix-git/doc/guix.texi:16920 msgid "Whether to discover substitute servers on the local network using mDNS and DNS-SD." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1701 +#: guix-git/doc/guix.texi:1718 msgid "This feature is still experimental. However, here are a few considerations." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1705 +#: guix-git/doc/guix.texi:1722 msgid "It might be faster/less expensive than fetching from remote servers;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1708 +#: guix-git/doc/guix.texi:1725 msgid "There are no security risks, only genuine substitutes will be used (@pxref{Substitute Authentication});" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1712 +#: guix-git/doc/guix.texi:1729 msgid "An attacker advertising @command{guix publish} on your LAN cannot serve you malicious binaries, but they can learn what software you’re installing;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1715 +#: guix-git/doc/guix.texi:1732 msgid "Servers may serve substitute over HTTP, unencrypted, so anyone on the LAN can see what software you’re installing." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1719 +#: guix-git/doc/guix.texi:1736 msgid "It is also possible to enable or disable substitute server discovery at run-time by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1723 +#: guix-git/doc/guix.texi:1740 #, no-wrap msgid "" "herd discover guix-daemon on\n" @@ -6813,237 +6887,237 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1725 +#: guix-git/doc/guix.texi:1742 #, no-wrap msgid "--disable-deduplication" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1726 guix-git/doc/guix.texi:4326 +#: guix-git/doc/guix.texi:1743 guix-git/doc/guix.texi:4344 #, no-wrap msgid "deduplication" msgstr "deduplicazione" #. type: table -#: guix-git/doc/guix.texi:1728 +#: guix-git/doc/guix.texi:1745 msgid "Disable automatic file ``deduplication'' in the store." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1735 +#: guix-git/doc/guix.texi:1752 msgid "By default, files added to the store are automatically ``deduplicated'': if a newly added file is identical to another one found in the store, the daemon makes the new file a hard link to the other file. This can noticeably reduce disk usage, at the expense of slightly increased input/output load at the end of a build process. This option disables this optimization." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1736 +#: guix-git/doc/guix.texi:1753 #, no-wrap msgid "--gc-keep-outputs[=yes|no]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1739 +#: guix-git/doc/guix.texi:1756 msgid "Tell whether the garbage collector (GC) must keep outputs of live derivations." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1740 guix-git/doc/guix.texi:4139 +#: guix-git/doc/guix.texi:1757 guix-git/doc/guix.texi:4157 #, no-wrap msgid "GC roots" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1741 guix-git/doc/guix.texi:4140 +#: guix-git/doc/guix.texi:1758 guix-git/doc/guix.texi:4158 #, no-wrap msgid "garbage collector roots" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1747 +#: guix-git/doc/guix.texi:1764 msgid "When set to @code{yes}, the GC will keep the outputs of any live derivation available in the store---the @file{.drv} files. The default is @code{no}, meaning that derivation outputs are kept only if they are reachable from a GC root. @xref{Invoking guix gc}, for more on GC roots." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1748 +#: guix-git/doc/guix.texi:1765 #, no-wrap msgid "--gc-keep-derivations[=yes|no]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1751 +#: guix-git/doc/guix.texi:1768 msgid "Tell whether the garbage collector (GC) must keep derivations corresponding to live outputs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1757 +#: guix-git/doc/guix.texi:1774 msgid "When set to @code{yes}, as is the case by default, the GC keeps derivations---i.e., @file{.drv} files---as long as at least one of their outputs is live. This allows users to keep track of the origins of items in their store. Setting it to @code{no} saves a bit of disk space." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1766 +#: guix-git/doc/guix.texi:1783 msgid "In this way, setting @option{--gc-keep-derivations} to @code{yes} causes liveness to flow from outputs to derivations, and setting @option{--gc-keep-outputs} to @code{yes} causes liveness to flow from derivations to outputs. When both are set to @code{yes}, the effect is to keep all the build prerequisites (the sources, compiler, libraries, and other build-time tools) of live objects in the store, regardless of whether these prerequisites are reachable from a GC root. This is convenient for developers since it saves rebuilds or downloads." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1767 +#: guix-git/doc/guix.texi:1784 #, no-wrap msgid "--impersonate-linux-2.6" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1770 +#: guix-git/doc/guix.texi:1787 msgid "On Linux-based systems, impersonate Linux 2.6. This means that the kernel's @command{uname} system call will report 2.6 as the release number." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1773 +#: guix-git/doc/guix.texi:1790 msgid "This might be helpful to build programs that (usually wrongfully) depend on the kernel version number." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1774 +#: guix-git/doc/guix.texi:1791 #, no-wrap msgid "--lose-logs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1777 +#: guix-git/doc/guix.texi:1794 msgid "Do not keep build logs. By default they are kept under @file{@var{localstatedir}/guix/log}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1778 guix-git/doc/guix.texi:4567 -#: guix-git/doc/guix.texi:5846 guix-git/doc/guix.texi:6229 -#: guix-git/doc/guix.texi:6629 guix-git/doc/guix.texi:11505 -#: guix-git/doc/guix.texi:13187 guix-git/doc/guix.texi:13452 -#: guix-git/doc/guix.texi:14129 guix-git/doc/guix.texi:34442 -#: guix-git/doc/guix.texi:35251 +#: guix-git/doc/guix.texi:1795 guix-git/doc/guix.texi:4585 +#: guix-git/doc/guix.texi:5859 guix-git/doc/guix.texi:6272 +#: guix-git/doc/guix.texi:6672 guix-git/doc/guix.texi:11819 +#: guix-git/doc/guix.texi:13544 guix-git/doc/guix.texi:13809 +#: guix-git/doc/guix.texi:14486 guix-git/doc/guix.texi:34881 +#: guix-git/doc/guix.texi:35695 #, no-wrap msgid "--system=@var{system}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1782 +#: guix-git/doc/guix.texi:1799 msgid "Assume @var{system} as the current system type. By default it is the architecture/kernel pair found at configure time, such as @code{x86_64-linux}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1783 guix-git/doc/guix.texi:10747 +#: guix-git/doc/guix.texi:1800 guix-git/doc/guix.texi:11061 #, no-wrap msgid "--listen=@var{endpoint}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1788 +#: guix-git/doc/guix.texi:1805 msgid "Listen for connections on @var{endpoint}. @var{endpoint} is interpreted as the file name of a Unix-domain socket if it starts with @code{/} (slash sign). Otherwise, @var{endpoint} is interpreted as a host name or host name and port to listen to. Here are a few examples:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1790 +#: guix-git/doc/guix.texi:1807 #, no-wrap msgid "--listen=/gnu/var/daemon" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1793 +#: guix-git/doc/guix.texi:1810 msgid "Listen for connections on the @file{/gnu/var/daemon} Unix-domain socket, creating it if needed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1794 +#: guix-git/doc/guix.texi:1811 #, no-wrap msgid "--listen=localhost" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1795 guix-git/doc/guix.texi:9421 +#: guix-git/doc/guix.texi:1812 guix-git/doc/guix.texi:9735 #, no-wrap msgid "daemon, remote access" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1796 guix-git/doc/guix.texi:9422 +#: guix-git/doc/guix.texi:1813 guix-git/doc/guix.texi:9736 #, no-wrap msgid "remote access to the daemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1797 guix-git/doc/guix.texi:9423 +#: guix-git/doc/guix.texi:1814 guix-git/doc/guix.texi:9737 #, no-wrap msgid "daemon, cluster setup" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1798 guix-git/doc/guix.texi:9424 +#: guix-git/doc/guix.texi:1815 guix-git/doc/guix.texi:9738 #, no-wrap msgid "clusters, daemon setup" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1801 +#: guix-git/doc/guix.texi:1818 msgid "Listen for TCP connections on the network interface corresponding to @code{localhost}, on port 44146." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1802 +#: guix-git/doc/guix.texi:1819 #, no-wrap msgid "--listen=128.0.0.42:1234" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1805 +#: guix-git/doc/guix.texi:1822 msgid "Listen for TCP connections on the network interface corresponding to @code{128.0.0.42}, on port 1234." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1812 +#: guix-git/doc/guix.texi:1829 msgid "This option can be repeated multiple times, in which case @command{guix-daemon} accepts connections on all the specified endpoints. Users can tell client commands what endpoint to connect to by setting the @env{GUIX_DAEMON_SOCKET} environment variable (@pxref{The Store, @env{GUIX_DAEMON_SOCKET}})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:1819 +#: guix-git/doc/guix.texi:1836 msgid "The daemon protocol is @emph{unauthenticated and unencrypted}. Using @option{--listen=@var{host}} is suitable on local networks, such as clusters, where only trusted nodes may connect to the build daemon. In other cases where remote access to the daemon is needed, we recommend using Unix-domain sockets along with SSH." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1824 +#: guix-git/doc/guix.texi:1841 msgid "When @option{--listen} is omitted, @command{guix-daemon} listens for connections on the Unix-domain socket located at @file{@var{localstatedir}/guix/daemon-socket/socket}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1834 +#: guix-git/doc/guix.texi:1851 msgid "When using Guix on top of GNU/Linux distribution other than Guix System---a so-called @dfn{foreign distro}---a few additional steps are needed to get everything in place. Here are some of them." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:1838 +#: guix-git/doc/guix.texi:1855 msgid "locales-and-locpath" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1838 +#: guix-git/doc/guix.texi:1855 #, no-wrap msgid "locales, when not on Guix System" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:1839 guix-git/doc/guix.texi:15770 +#: guix-git/doc/guix.texi:1856 guix-git/doc/guix.texi:16127 #, no-wrap msgid "LOCPATH" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:1840 +#: guix-git/doc/guix.texi:1857 #, no-wrap msgid "GUIX_LOCPATH" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1845 +#: guix-git/doc/guix.texi:1862 msgid "Packages installed @i{via} Guix will not use the locale data of the host system. Instead, you must first install one of the locale packages available with Guix and then define the @env{GUIX_LOCPATH} environment variable:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1849 +#: guix-git/doc/guix.texi:1866 #, no-wrap msgid "" "$ guix install glibc-locales\n" @@ -7051,132 +7125,132 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1855 +#: guix-git/doc/guix.texi:1872 msgid "Note that the @code{glibc-locales} package contains data for all the locales supported by the GNU@tie{}libc and weighs in at around 917@tie{}MiB@. Alternatively, the @code{glibc-utf8-locales} is smaller but limited to a few UTF-8 locales." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1859 +#: guix-git/doc/guix.texi:1876 msgid "The @env{GUIX_LOCPATH} variable plays a role similar to @env{LOCPATH} (@pxref{Locale Names, @env{LOCPATH},, libc, The GNU C Library Reference Manual}). There are two important differences though:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1866 +#: guix-git/doc/guix.texi:1883 msgid "@env{GUIX_LOCPATH} is honored only by the libc in Guix, and not by the libc provided by foreign distros. Thus, using @env{GUIX_LOCPATH} allows you to make sure the programs of the foreign distro will not end up loading incompatible locale data." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1873 +#: guix-git/doc/guix.texi:1890 msgid "libc suffixes each entry of @env{GUIX_LOCPATH} with @code{/X.Y}, where @code{X.Y} is the libc version---e.g., @code{2.22}. This means that, should your Guix profile contain a mixture of programs linked against different libc version, each libc version will only try to load locale data in the right format." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1877 +#: guix-git/doc/guix.texi:1894 msgid "This is important because the locale data format used by different libc versions may be incompatible." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1880 +#: guix-git/doc/guix.texi:1897 #, no-wrap msgid "name service switch, glibc" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1881 +#: guix-git/doc/guix.texi:1898 #, no-wrap msgid "NSS (name service switch), glibc" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1882 +#: guix-git/doc/guix.texi:1899 #, no-wrap msgid "nscd (name service caching daemon)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1883 +#: guix-git/doc/guix.texi:1900 #, no-wrap msgid "name service caching daemon (nscd)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1890 +#: guix-git/doc/guix.texi:1907 msgid "When using Guix on a foreign distro, we @emph{strongly recommend} that the system run the GNU C library's @dfn{name service cache daemon}, @command{nscd}, which should be listening on the @file{/var/run/nscd/socket} socket. Failing to do that, applications installed with Guix may fail to look up host names or user accounts, or may even crash. The next paragraphs explain why." msgstr "" #. type: file{#1} -#: guix-git/doc/guix.texi:1891 +#: guix-git/doc/guix.texi:1908 #, no-wrap msgid "nsswitch.conf" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1896 +#: guix-git/doc/guix.texi:1913 msgid "The GNU C library implements a @dfn{name service switch} (NSS), which is an extensible mechanism for ``name lookups'' in general: host name resolution, user accounts, and more (@pxref{Name Service Switch,,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1897 +#: guix-git/doc/guix.texi:1914 #, no-wrap msgid "Network information service (NIS)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1898 +#: guix-git/doc/guix.texi:1915 #, no-wrap msgid "NIS (Network information service)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1907 +#: guix-git/doc/guix.texi:1924 msgid "Being extensible, the NSS supports @dfn{plugins}, which provide new name lookup implementations: for example, the @code{nss-mdns} plugin allow resolution of @code{.local} host names, the @code{nis} plugin allows user account lookup using the Network information service (NIS), and so on. These extra ``lookup services'' are configured system-wide in @file{/etc/nsswitch.conf}, and all the programs running on the system honor those settings (@pxref{NSS Configuration File,,, libc, The GNU C Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1917 +#: guix-git/doc/guix.texi:1934 msgid "When they perform a name lookup---for instance by calling the @code{getaddrinfo} function in C---applications first try to connect to the nscd; on success, nscd performs name lookups on their behalf. If the nscd is not running, then they perform the name lookup by themselves, by loading the name lookup services into their own address space and running it. These name lookup services---the @file{libnss_*.so} files---are @code{dlopen}'d, but they may come from the host system's C library, rather than from the C library the application is linked against (the C library coming from Guix)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1922 +#: guix-git/doc/guix.texi:1939 msgid "And this is where the problem is: if your application is linked against Guix's C library (say, glibc 2.24) and tries to load NSS plugins from another C library (say, @code{libnss_mdns.so} for glibc 2.22), it will likely crash or have its name lookups fail unexpectedly." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1927 +#: guix-git/doc/guix.texi:1944 msgid "Running @command{nscd} on the system, among other advantages, eliminates this binary incompatibility problem because those @code{libnss_*.so} files are loaded in the @command{nscd} process, not in applications themselves." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:1928 +#: guix-git/doc/guix.texi:1945 #, no-wrap msgid "X11 Fonts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1938 +#: guix-git/doc/guix.texi:1955 msgid "The majority of graphical applications use Fontconfig to locate and load fonts and perform X11-client-side rendering. The @code{fontconfig} package in Guix looks for fonts in @file{$HOME/.guix-profile} by default. Thus, to allow graphical applications installed with Guix to display fonts, you have to install fonts with Guix as well. Essential font packages include @code{font-ghostscript}, @code{font-dejavu}, and @code{font-gnu-freefont}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1939 +#: guix-git/doc/guix.texi:1956 #, no-wrap msgid "fc-cache" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1940 +#: guix-git/doc/guix.texi:1957 #, no-wrap msgid "font cache" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1944 +#: guix-git/doc/guix.texi:1961 msgid "Once you have installed or removed fonts, or when you notice an application that does not find fonts, you may need to install Fontconfig and to force an update of its font cache by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1948 +#: guix-git/doc/guix.texi:1965 #, no-wrap msgid "" "guix install fontconfig\n" @@ -7184,266 +7258,266 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1956 +#: guix-git/doc/guix.texi:1973 msgid "To display text written in Chinese languages, Japanese, or Korean in graphical applications, consider installing @code{font-adobe-source-han-sans} or @code{font-wqy-zenhei}. The former has multiple outputs, one per language family (@pxref{Packages with Multiple Outputs}). For instance, the following command installs fonts for Chinese languages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1959 +#: guix-git/doc/guix.texi:1976 #, no-wrap msgid "guix install font-adobe-source-han-sans:cn\n" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1961 +#: guix-git/doc/guix.texi:1978 #, no-wrap msgid "xterm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1965 +#: guix-git/doc/guix.texi:1982 msgid "Older programs such as @command{xterm} do not use Fontconfig and instead rely on server-side font rendering. Such programs require to specify a full name of a font using XLFD (X Logical Font Description), like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1968 +#: guix-git/doc/guix.texi:1985 #, no-wrap msgid "-*-dejavu sans-medium-r-normal-*-*-100-*-*-*-*-*-1\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1972 +#: guix-git/doc/guix.texi:1989 msgid "To be able to use such full names for the TrueType fonts installed in your Guix profile, you need to extend the font path of the X server:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1977 +#: guix-git/doc/guix.texi:1994 #, no-wrap msgid "xset +fp $(dirname $(readlink -f ~/.guix-profile/share/fonts/truetype/fonts.dir))\n" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1979 +#: guix-git/doc/guix.texi:1996 #, no-wrap msgid "xlsfonts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1982 +#: guix-git/doc/guix.texi:1999 msgid "After that, you can run @code{xlsfonts} (from @code{xlsfonts} package) to make sure your TrueType fonts are listed there." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1986 guix-git/doc/guix.texi:34161 +#: guix-git/doc/guix.texi:2003 guix-git/doc/guix.texi:34600 #, no-wrap msgid "nss-certs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1989 +#: guix-git/doc/guix.texi:2006 msgid "The @code{nss-certs} package provides X.509 certificates, which allow programs to authenticate Web servers accessed over HTTPS." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1994 +#: guix-git/doc/guix.texi:2011 msgid "When using Guix on a foreign distro, you can install this package and define the relevant environment variables so that packages know where to look for certificates. @xref{X.509 Certificates}, for detailed information." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1997 +#: guix-git/doc/guix.texi:2014 #, no-wrap msgid "emacs" msgstr "emacs" #. type: Plain text -#: guix-git/doc/guix.texi:2003 +#: guix-git/doc/guix.texi:2020 msgid "When you install Emacs packages with Guix, the Elisp files are placed under the @file{share/emacs/site-lisp/} directory of the profile in which they are installed. The Elisp libraries are made available to Emacs through the @env{EMACSLOADPATH} environment variable, which is set when installing Emacs itself." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2010 +#: guix-git/doc/guix.texi:2027 msgid "Additionally, autoload definitions are automatically evaluated at the initialization of Emacs, by the Guix-specific @code{guix-emacs-autoload-packages} procedure. If, for some reason, you want to avoid auto-loading the Emacs packages installed with Guix, you can do so by running Emacs with the @option{--no-site-file} option (@pxref{Init File,,, emacs, The GNU Emacs Manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2015 +#: guix-git/doc/guix.texi:2032 #, no-wrap msgid "Upgrading Guix, on a foreign distro" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2018 +#: guix-git/doc/guix.texi:2035 msgid "To upgrade Guix, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2021 guix-git/doc/guix.texi:2879 +#: guix-git/doc/guix.texi:2038 guix-git/doc/guix.texi:2896 #, no-wrap msgid "guix pull\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2024 +#: guix-git/doc/guix.texi:2041 msgid "@xref{Invoking guix pull}, for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2025 +#: guix-git/doc/guix.texi:2042 #, no-wrap msgid "upgrading Guix for the root user, on a foreign distro" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2026 +#: guix-git/doc/guix.texi:2043 #, no-wrap msgid "upgrading the Guix daemon, on a foreign distro" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2027 +#: guix-git/doc/guix.texi:2044 #, no-wrap msgid "@command{guix pull} for the root user, on a foreign distro" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2030 +#: guix-git/doc/guix.texi:2047 msgid "On a foreign distro, you can upgrade the build daemon by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2033 +#: guix-git/doc/guix.texi:2050 #, no-wrap msgid "sudo -i guix pull\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2038 +#: guix-git/doc/guix.texi:2055 msgid "followed by (assuming your distro uses the systemd service management tool):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2041 +#: guix-git/doc/guix.texi:2058 #, no-wrap msgid "systemctl restart guix-daemon.service\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2045 +#: guix-git/doc/guix.texi:2062 msgid "On Guix System, upgrading the daemon is achieved by reconfiguring the system (@pxref{Invoking guix system, @code{guix system reconfigure}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2052 +#: guix-git/doc/guix.texi:2069 #, no-wrap msgid "installing Guix System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2053 +#: guix-git/doc/guix.texi:2070 #, no-wrap msgid "Guix System, installation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2058 +#: guix-git/doc/guix.texi:2075 msgid "This section explains how to install Guix System on a machine. Guix, as a package manager, can also be installed on top of a running GNU/Linux system, @pxref{Installation}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2067 +#: guix-git/doc/guix.texi:2084 msgid "You are reading this documentation with an Info reader. For details on how to use it, hit the @key{RET} key (``return'' or ``enter'') on the link that follows: @pxref{Top, Info reader,, info-stnd, Stand-alone GNU Info}. Hit @kbd{l} afterwards to come back here." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2070 +#: guix-git/doc/guix.texi:2087 msgid "Alternatively, run @command{info info} in another tty to keep the manual available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2091 +#: guix-git/doc/guix.texi:2108 msgid "We consider Guix System to be ready for a wide range of ``desktop'' and server use cases. The reliability guarantees it provides---transactional upgrades and rollbacks, reproducibility---make it a solid foundation." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2094 +#: guix-git/doc/guix.texi:2111 msgid "Nevertheless, before you proceed with the installation, be aware of the following noteworthy limitations applicable to version @value{VERSION}:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2099 +#: guix-git/doc/guix.texi:2116 msgid "More and more system services are provided (@pxref{Services}), but some may be missing." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2104 +#: guix-git/doc/guix.texi:2121 msgid "GNOME, Xfce, LXDE, and Enlightenment are available (@pxref{Desktop Services}), as well as a number of X11 window managers. However, KDE is currently missing." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2109 +#: guix-git/doc/guix.texi:2126 msgid "More than a disclaimer, this is an invitation to report issues (and success stories!), and to join us in improving it. @xref{Contributing}, for more info." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2114 +#: guix-git/doc/guix.texi:2131 #, no-wrap msgid "hardware support on Guix System" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2123 +#: guix-git/doc/guix.texi:2140 msgid "GNU@tie{}Guix focuses on respecting the user's computing freedom. It builds around the kernel Linux-libre, which means that only hardware for which free software drivers and firmware exist is supported. Nowadays, a wide range of off-the-shelf hardware is supported on GNU/Linux-libre---from keyboards to graphics cards to scanners and Ethernet controllers. Unfortunately, there are still areas where hardware vendors deny users control over their own computing, and such hardware is not supported on Guix System." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2124 +#: guix-git/doc/guix.texi:2141 #, no-wrap msgid "WiFi, hardware support" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2133 +#: guix-git/doc/guix.texi:2150 msgid "One of the main areas where free drivers or firmware are lacking is WiFi devices. WiFi devices known to work include those using Atheros chips (AR9271 and AR7010), which corresponds to the @code{ath9k} Linux-libre driver, and those using Broadcom/AirForce chips (BCM43xx with Wireless-Core Revision 5), which corresponds to the @code{b43-open} Linux-libre driver. Free firmware exists for both and is available out-of-the-box on Guix System, as part of @code{%base-firmware} (@pxref{operating-system Reference, @code{firmware}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2134 +#: guix-git/doc/guix.texi:2151 #, no-wrap msgid "RYF, Respects Your Freedom" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2140 +#: guix-git/doc/guix.texi:2157 msgid "The @uref{https://www.fsf.org/, Free Software Foundation} runs @uref{https://www.fsf.org/ryf, @dfn{Respects Your Freedom}} (RYF), a certification program for hardware products that respect your freedom and your privacy and ensure that you have control over your device. We encourage you to check the list of RYF-certified devices." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2144 +#: guix-git/doc/guix.texi:2161 msgid "Another useful resource is the @uref{https://www.h-node.org/, H-Node} web site. It contains a catalog of hardware devices with information about their support in GNU/Linux." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2153 +#: guix-git/doc/guix.texi:2170 msgid "An ISO-9660 installation image that can be written to a USB stick or burnt to a DVD can be downloaded from @indicateurl{@value{BASE-URL}/guix-system-install-@value{VERSION}.x86_64-linux.iso}, where you can replace @code{x86_64-linux} with one of:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2157 +#: guix-git/doc/guix.texi:2174 msgid "for a GNU/Linux system on Intel/AMD-compatible 64-bit CPUs;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2160 +#: guix-git/doc/guix.texi:2177 msgid "for a 32-bit GNU/Linux system on Intel-compatible CPUs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2165 +#: guix-git/doc/guix.texi:2182 msgid "Make sure to download the associated @file{.sig} file and to verify the authenticity of the image against it, along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2169 +#: guix-git/doc/guix.texi:2186 #, no-wrap msgid "" "$ wget @value{BASE-URL}/guix-system-install-@value{VERSION}.x86_64-linux.iso.sig\n" @@ -7451,7 +7525,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2177 +#: guix-git/doc/guix.texi:2194 #, no-wrap msgid "" "$ wget @value{OPENPGP-SIGNING-KEY-URL} \\\n" @@ -7459,23 +7533,23 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2189 +#: guix-git/doc/guix.texi:2206 msgid "This image contains the tools necessary for an installation. It is meant to be copied @emph{as is} to a large-enough USB stick or DVD." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2190 +#: guix-git/doc/guix.texi:2207 #, no-wrap msgid "Copying to a USB Stick" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2195 +#: guix-git/doc/guix.texi:2212 msgid "Insert a USB stick of 1@tie{}GiB or more into your machine, and determine its device name. Assuming that the USB stick is known as @file{/dev/sdX}, copy the image with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2199 +#: guix-git/doc/guix.texi:2216 #, no-wrap msgid "" "dd if=guix-system-install-@value{VERSION}.x86_64-linux.iso of=/dev/sdX status=progress\n" @@ -7483,238 +7557,238 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2202 +#: guix-git/doc/guix.texi:2219 msgid "Access to @file{/dev/sdX} usually requires root privileges." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2203 +#: guix-git/doc/guix.texi:2220 #, no-wrap msgid "Burning on a DVD" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2208 +#: guix-git/doc/guix.texi:2225 msgid "Insert a blank DVD into your machine, and determine its device name. Assuming that the DVD drive is known as @file{/dev/srX}, copy the image with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2211 +#: guix-git/doc/guix.texi:2228 #, no-wrap msgid "growisofs -dvd-compat -Z /dev/srX=guix-system-install-@value{VERSION}.x86_64-linux.iso\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2214 +#: guix-git/doc/guix.texi:2231 msgid "Access to @file{/dev/srX} usually requires root privileges." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2215 +#: guix-git/doc/guix.texi:2232 #, no-wrap msgid "Booting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2222 +#: guix-git/doc/guix.texi:2239 msgid "Once this is done, you should be able to reboot the system and boot from the USB stick or DVD@. The latter usually requires you to get in the BIOS or UEFI boot menu, where you can choose to boot from the USB stick. In order to boot from Libreboot, switch to the command mode by pressing the @kbd{c} key and type @command{search_grub usb}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2225 +#: guix-git/doc/guix.texi:2242 msgid "@xref{Installing Guix in a VM}, if, instead, you would like to install Guix System in a virtual machine (VM)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2235 +#: guix-git/doc/guix.texi:2252 msgid "Once you have booted, you can use the guided graphical installer, which makes it easy to get started (@pxref{Guided Graphical Installation}). Alternatively, if you are already familiar with GNU/Linux and if you want more control than what the graphical installer provides, you can choose the ``manual'' installation process (@pxref{Manual Installation})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2243 +#: guix-git/doc/guix.texi:2260 msgid "The graphical installer is available on TTY1. You can obtain root shells on TTYs 3 to 6 by hitting @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4}, etc. TTY2 shows this documentation and you can reach it with @kbd{ctrl-alt-f2}. Documentation is browsable using the Info reader commands (@pxref{Top,,, info-stnd, Stand-alone GNU Info}). The installation system runs the GPM mouse daemon, which allows you to select text with the left mouse button and to paste it with the middle button." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2248 +#: guix-git/doc/guix.texi:2265 msgid "Installation requires access to the Internet so that any missing dependencies of your system configuration can be downloaded. See the ``Networking'' section below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2255 +#: guix-git/doc/guix.texi:2272 msgid "The graphical installer is a text-based user interface. It will guide you, with dialog boxes, through the steps needed to install GNU@tie{}Guix System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2260 +#: guix-git/doc/guix.texi:2277 msgid "The first dialog boxes allow you to set up the system as you use it during the installation: you can choose the language, keyboard layout, and set up networking, which will be used during the installation. The image below shows the networking dialog." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2262 +#: guix-git/doc/guix.texi:2279 msgid "@image{images/installer-network,5in,, networking setup with the graphical installer}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2267 +#: guix-git/doc/guix.texi:2284 msgid "Later steps allow you to partition your hard disk, as shown in the image below, to choose whether or not to use encrypted file systems, to enter the host name and root password, and to create an additional account, among other things." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2269 +#: guix-git/doc/guix.texi:2286 msgid "@image{images/installer-partitions,5in,, partitioning with the graphical installer}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2272 +#: guix-git/doc/guix.texi:2289 msgid "Note that, at any time, the installer allows you to exit the current installation step and resume at a previous step, as show in the image below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2274 +#: guix-git/doc/guix.texi:2291 msgid "@image{images/installer-resume,5in,, resuming the installation process}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2279 +#: guix-git/doc/guix.texi:2296 msgid "Once you're done, the installer produces an operating system configuration and displays it (@pxref{Using the Configuration System}). At that point you can hit ``OK'' and installation will proceed. On success, you can reboot into the new system and enjoy. @xref{After System Installation}, for what's next!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2289 +#: guix-git/doc/guix.texi:2306 msgid "This section describes how you would ``manually'' install GNU@tie{}Guix System on your machine. This option requires familiarity with GNU/Linux, with the shell, and with common administration tools. If you think this is not for you, consider using the guided graphical installer (@pxref{Guided Graphical Installation})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2295 +#: guix-git/doc/guix.texi:2312 msgid "The installation system provides root shells on TTYs 3 to 6; press @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4}, and so on to reach them. It includes many common tools needed to install the system. But it is also a full-blown Guix System, which means that you can install additional packages, should you need it, using @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:2302 +#: guix-git/doc/guix.texi:2319 #, no-wrap msgid "Keyboard Layout, Networking, and Partitioning" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2307 +#: guix-git/doc/guix.texi:2324 msgid "Before you can install the system, you may want to adjust the keyboard layout, set up networking, and partition your target hard disk. This section will guide you through this." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2310 guix-git/doc/guix.texi:15584 +#: guix-git/doc/guix.texi:2327 guix-git/doc/guix.texi:15941 #, no-wrap msgid "keyboard layout" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2314 +#: guix-git/doc/guix.texi:2331 msgid "The installation image uses the US qwerty keyboard layout. If you want to change it, you can use the @command{loadkeys} command. For example, the following command selects the Dvorak keyboard layout:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2317 +#: guix-git/doc/guix.texi:2334 #, no-wrap msgid "loadkeys dvorak\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2322 +#: guix-git/doc/guix.texi:2339 msgid "See the files under @file{/run/current-system/profile/share/keymaps} for a list of available keyboard layouts. Run @command{man loadkeys} for more information." msgstr "" #. type: subsubsection -#: guix-git/doc/guix.texi:2323 +#: guix-git/doc/guix.texi:2340 #, no-wrap msgid "Networking" msgstr "Rete" #. type: Plain text -#: guix-git/doc/guix.texi:2326 +#: guix-git/doc/guix.texi:2343 msgid "Run the following command to see what your network interfaces are called:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2329 +#: guix-git/doc/guix.texi:2346 #, no-wrap msgid "ifconfig -a\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2333 guix-git/doc/guix.texi:2355 +#: guix-git/doc/guix.texi:2350 guix-git/doc/guix.texi:2372 msgid "@dots{} or, using the GNU/Linux-specific @command{ip} command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2336 +#: guix-git/doc/guix.texi:2353 #, no-wrap msgid "ip address\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2343 +#: guix-git/doc/guix.texi:2360 msgid "Wired interfaces have a name starting with @samp{e}; for example, the interface corresponding to the first on-board Ethernet controller is called @samp{eno1}. Wireless interfaces have a name starting with @samp{w}, like @samp{w1p2s0}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:2345 +#: guix-git/doc/guix.texi:2362 #, no-wrap msgid "Wired connection" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2348 +#: guix-git/doc/guix.texi:2365 msgid "To configure a wired network run the following command, substituting @var{interface} with the name of the wired interface you want to use." msgstr "" #. type: example -#: guix-git/doc/guix.texi:2351 +#: guix-git/doc/guix.texi:2368 #, no-wrap msgid "ifconfig @var{interface} up\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2358 +#: guix-git/doc/guix.texi:2375 #, no-wrap msgid "ip link set @var{interface} up\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:2360 +#: guix-git/doc/guix.texi:2377 #, no-wrap msgid "Wireless connection" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2361 guix-git/doc/guix.texi:17484 +#: guix-git/doc/guix.texi:2378 guix-git/doc/guix.texi:17846 #, no-wrap msgid "wireless" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2362 guix-git/doc/guix.texi:17485 +#: guix-git/doc/guix.texi:2379 guix-git/doc/guix.texi:17847 #, no-wrap msgid "WiFi" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2367 +#: guix-git/doc/guix.texi:2384 msgid "To configure wireless networking, you can create a configuration file for the @command{wpa_supplicant} configuration tool (its location is not important) using one of the available text editors such as @command{nano}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2370 +#: guix-git/doc/guix.texi:2387 #, no-wrap msgid "nano wpa_supplicant.conf\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2375 +#: guix-git/doc/guix.texi:2392 msgid "As an example, the following stanza can go to this file and will work for many wireless networks, provided you give the actual SSID and passphrase for the network you are connecting to:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2382 +#: guix-git/doc/guix.texi:2399 #, no-wrap msgid "" "network=@{\n" @@ -7725,229 +7799,229 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2387 +#: guix-git/doc/guix.texi:2404 msgid "Start the wireless service and run it in the background with the following command (substitute @var{interface} with the name of the network interface you want to use):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2390 +#: guix-git/doc/guix.texi:2407 #, no-wrap msgid "wpa_supplicant -c wpa_supplicant.conf -i @var{interface} -B\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2393 +#: guix-git/doc/guix.texi:2410 msgid "Run @command{man wpa_supplicant} for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2395 +#: guix-git/doc/guix.texi:2412 #, no-wrap msgid "DHCP" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2398 +#: guix-git/doc/guix.texi:2415 msgid "At this point, you need to acquire an IP address. On a network where IP addresses are automatically assigned @i{via} DHCP, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2401 +#: guix-git/doc/guix.texi:2418 #, no-wrap msgid "dhclient -v @var{interface}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2404 +#: guix-git/doc/guix.texi:2421 msgid "Try to ping a server to see if networking is up and running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2407 +#: guix-git/doc/guix.texi:2424 #, no-wrap msgid "ping -c 3 gnu.org\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2411 +#: guix-git/doc/guix.texi:2428 msgid "Setting up network access is almost always a requirement because the image does not contain all the software and tools that may be needed." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2412 +#: guix-git/doc/guix.texi:2429 #, no-wrap msgid "proxy, during system installation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2415 +#: guix-git/doc/guix.texi:2432 msgid "If you need HTTP and HTTPS access to go through a proxy, run the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2418 +#: guix-git/doc/guix.texi:2435 #, no-wrap msgid "herd set-http-proxy guix-daemon @var{URL}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2423 +#: guix-git/doc/guix.texi:2440 msgid "where @var{URL} is the proxy URL, for example @code{http://example.org:8118}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2424 +#: guix-git/doc/guix.texi:2441 #, no-wrap msgid "installing over SSH" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2427 +#: guix-git/doc/guix.texi:2444 msgid "If you want to, you can continue the installation remotely by starting an SSH server:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2430 +#: guix-git/doc/guix.texi:2447 #, no-wrap msgid "herd start ssh-daemon\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2434 +#: guix-git/doc/guix.texi:2451 msgid "Make sure to either set a password with @command{passwd}, or configure OpenSSH public key authentication before logging in." msgstr "" #. type: subsubsection -#: guix-git/doc/guix.texi:2435 +#: guix-git/doc/guix.texi:2452 #, no-wrap msgid "Disk Partitioning" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2439 +#: guix-git/doc/guix.texi:2456 msgid "Unless this has already been done, the next step is to partition, and then format the target partition(s)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2444 +#: guix-git/doc/guix.texi:2461 msgid "The installation image includes several partitioning tools, including Parted (@pxref{Overview,,, parted, GNU Parted User Manual}), @command{fdisk}, and @command{cfdisk}. Run it and set up your disk with the partition layout you want:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2447 +#: guix-git/doc/guix.texi:2464 #, no-wrap msgid "cfdisk\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2453 +#: guix-git/doc/guix.texi:2470 msgid "If your disk uses the GUID Partition Table (GPT) format and you plan to install BIOS-based GRUB (which is the default), make sure a BIOS Boot Partition is available (@pxref{BIOS installation,,, grub, GNU GRUB manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2454 +#: guix-git/doc/guix.texi:2471 #, no-wrap msgid "EFI, installation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2455 +#: guix-git/doc/guix.texi:2472 #, no-wrap msgid "UEFI, installation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2456 +#: guix-git/doc/guix.texi:2473 #, no-wrap msgid "ESP, EFI system partition" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2460 +#: guix-git/doc/guix.texi:2477 msgid "If you instead wish to use EFI-based GRUB, a FAT32 @dfn{EFI System Partition} (ESP) is required. This partition can be mounted at @file{/boot/efi} for instance and must have the @code{esp} flag set. E.g., for @command{parted}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2463 +#: guix-git/doc/guix.texi:2480 #, no-wrap msgid "parted /dev/sda set 1 esp on\n" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:2466 guix-git/doc/guix.texi:34580 +#: guix-git/doc/guix.texi:2483 guix-git/doc/guix.texi:35019 #, no-wrap msgid "grub-bootloader" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:2467 guix-git/doc/guix.texi:34574 +#: guix-git/doc/guix.texi:2484 guix-git/doc/guix.texi:35013 #, no-wrap msgid "grub-efi-bootloader" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2474 +#: guix-git/doc/guix.texi:2491 msgid "Unsure whether to use EFI- or BIOS-based GRUB? If the directory @file{/sys/firmware/efi} exists in the installation image, then you should probably perform an EFI installation, using @code{grub-efi-bootloader}. Otherwise you should use the BIOS-based GRUB, known as @code{grub-bootloader}. @xref{Bootloader Configuration}, for more info on bootloaders." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2482 +#: guix-git/doc/guix.texi:2499 msgid "Once you are done partitioning the target hard disk drive, you have to create a file system on the relevant partition(s)@footnote{Currently Guix System only supports ext4, btrfs, JFS, F2FS, and XFS file systems. In particular, code that reads file system UUIDs and labels only works for these file system types.}. For the ESP, if you have one and assuming it is @file{/dev/sda1}, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2485 +#: guix-git/doc/guix.texi:2502 #, no-wrap msgid "mkfs.fat -F32 /dev/sda1\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2492 +#: guix-git/doc/guix.texi:2509 msgid "For the root file system, ext4 is the most widely used format. Other file systems, such as Btrfs, support compression, which is reported to nicely complement file deduplication that the daemon performs independently of the file system (@pxref{Invoking guix-daemon, deduplication})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2499 +#: guix-git/doc/guix.texi:2516 msgid "Preferably, assign file systems a label so that you can easily and reliably refer to them in @code{file-system} declarations (@pxref{File Systems}). This is typically done using the @code{-L} option of @command{mkfs.ext4} and related commands. So, assuming the target root partition lives at @file{/dev/sda2}, a file system with the label @code{my-root} can be created with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2502 +#: guix-git/doc/guix.texi:2519 #, no-wrap msgid "mkfs.ext4 -L my-root /dev/sda2\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2504 guix-git/doc/guix.texi:14475 +#: guix-git/doc/guix.texi:2521 guix-git/doc/guix.texi:14832 #, no-wrap msgid "encrypted disk" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2509 +#: guix-git/doc/guix.texi:2526 msgid "If you are instead planning to encrypt the root partition, you can use the Cryptsetup/LUKS utilities to do that (see @inlinefmtifelse{html, @uref{https://linux.die.net/man/8/cryptsetup, @code{man cryptsetup}}, @code{man cryptsetup}} for more information)." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2510 guix-git/doc/guix.texi:5280 -#: guix-git/doc/guix.texi:6489 guix-git/doc/guix.texi:14601 -#: guix-git/doc/guix.texi:21013 guix-git/doc/guix.texi:21020 +#: guix-git/doc/guix.texi:2527 guix-git/doc/guix.texi:5298 +#: guix-git/doc/guix.texi:6532 guix-git/doc/guix.texi:14958 +#: guix-git/doc/guix.texi:21375 guix-git/doc/guix.texi:21382 #, no-wrap msgid "Warning" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2517 +#: guix-git/doc/guix.texi:2534 msgid "Note that GRUB can unlock LUKS2 devices since version 2.06, but only supports the PBKDF2 key derivation function, which is not the default for @command{cryptsetup luksFormat}. You can check which key derivation function is being used by a device by running @command{cryptsetup luksDump @var{device}}, and looking for the PBKDF field of your keyslots." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2522 +#: guix-git/doc/guix.texi:2539 msgid "Assuming you want to store the root partition on @file{/dev/sda2}, the command sequence to format it as a LUKS2 partition would be along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2527 +#: guix-git/doc/guix.texi:2544 #, no-wrap msgid "" "cryptsetup luksFormat --type luks2 --pbkdf pbkdf2 /dev/sda2\n" @@ -7956,28 +8030,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2532 +#: guix-git/doc/guix.texi:2549 msgid "Once that is done, mount the target file system under @file{/mnt} with a command like (again, assuming @code{my-root} is the label of the root file system):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2535 +#: guix-git/doc/guix.texi:2552 #, no-wrap msgid "mount LABEL=my-root /mnt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2541 +#: guix-git/doc/guix.texi:2558 msgid "Also mount any other file systems you would like to use on the target system relative to this path. If you have opted for @file{/boot/efi} as an EFI mount point for example, mount it at @file{/mnt/boot/efi} now so it is found by @code{guix system init} afterwards." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2545 +#: guix-git/doc/guix.texi:2562 msgid "Finally, if you plan to use one or more swap partitions (@pxref{Swap Space}), make sure to initialize them with @command{mkswap}. Assuming you have one swap partition on @file{/dev/sda3}, you would run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2549 +#: guix-git/doc/guix.texi:2566 #, no-wrap msgid "" "mkswap /dev/sda3\n" @@ -7985,12 +8059,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2557 +#: guix-git/doc/guix.texi:2574 msgid "Alternatively, you may use a swap file. For example, assuming that in the new system you want to use the file @file{/swapfile} as a swap file, you would run@footnote{This example will work for many types of file systems (e.g., ext4). However, for copy-on-write file systems (e.g., btrfs), the required steps may be different. For details, see the manual pages for @command{mkswap} and @command{swapon}.}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2565 +#: guix-git/doc/guix.texi:2582 #, no-wrap msgid "" "# This is 10 GiB of swap space. Adjust \"count\" to change the size.\n" @@ -8002,38 +8076,38 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2570 +#: guix-git/doc/guix.texi:2587 msgid "Note that if you have encrypted the root partition and created a swap file in its file system as described above, then the encryption also protects the swap file, just like any other file in that file system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2576 +#: guix-git/doc/guix.texi:2593 msgid "With the target partitions ready and the target root mounted on @file{/mnt}, we're ready to go. First, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2579 +#: guix-git/doc/guix.texi:2596 #, no-wrap msgid "herd start cow-store /mnt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2586 +#: guix-git/doc/guix.texi:2603 msgid "This makes @file{/gnu/store} copy-on-write, such that packages added to it during the installation phase are written to the target disk on @file{/mnt} rather than kept in memory. This is necessary because the first phase of the @command{guix system init} command (see below) entails downloads or builds to @file{/gnu/store} which, initially, is an in-memory file system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2597 +#: guix-git/doc/guix.texi:2614 msgid "Next, you have to edit a file and provide the declaration of the operating system to be installed. To that end, the installation system comes with three text editors. We recommend GNU nano (@pxref{Top,,, nano, GNU nano Manual}), which supports syntax highlighting and parentheses matching; other editors include mg (an Emacs clone), and nvi (a clone of the original BSD @command{vi} editor). We strongly recommend storing that file on the target root file system, say, as @file{/mnt/etc/config.scm}. Failing to do that, you will have lost your configuration file once you have rebooted into the newly-installed system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2604 +#: guix-git/doc/guix.texi:2621 msgid "@xref{Using the Configuration System}, for an overview of the configuration file. The example configurations discussed in that section are available under @file{/etc/configuration} in the installation image. Thus, to get started with a system configuration providing a graphical display server (a ``desktop'' system), you can run something along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2609 +#: guix-git/doc/guix.texi:2626 #, no-wrap msgid "" "# mkdir /mnt/etc\n" @@ -8042,53 +8116,53 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2613 +#: guix-git/doc/guix.texi:2630 msgid "You should pay attention to what your configuration file contains, and in particular:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2625 +#: guix-git/doc/guix.texi:2642 msgid "Make sure the @code{bootloader-configuration} form refers to the targets you want to install GRUB on. It should mention @code{grub-bootloader} if you are installing GRUB in the legacy way, or @code{grub-efi-bootloader} for newer UEFI systems. For legacy systems, the @code{targets} field contain the names of the devices, like @code{(list \"/dev/sda\")}; for UEFI systems it names the paths to mounted EFI partitions, like @code{(list \"/boot/efi\")}; do make sure the paths are currently mounted and a @code{file-system} entry is specified in your configuration." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2631 +#: guix-git/doc/guix.texi:2648 msgid "Be sure that your file system labels match the value of their respective @code{device} fields in your @code{file-system} configuration, assuming your @code{file-system} configuration uses the @code{file-system-label} procedure in its @code{device} field." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2635 +#: guix-git/doc/guix.texi:2652 msgid "If there are encrypted or RAID partitions, make sure to add a @code{mapped-devices} field to describe them (@pxref{Mapped Devices})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2640 +#: guix-git/doc/guix.texi:2657 msgid "Once you are done preparing the configuration file, the new system must be initialized (remember that the target root file system is mounted under @file{/mnt}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2643 +#: guix-git/doc/guix.texi:2660 #, no-wrap msgid "guix system init /mnt/etc/config.scm /mnt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2650 +#: guix-git/doc/guix.texi:2667 msgid "This copies all the necessary files and installs GRUB on @file{/dev/sdX}, unless you pass the @option{--no-bootloader} option. For more information, @pxref{Invoking guix system}. This command may trigger downloads or builds of missing packages, which can take some time." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2658 +#: guix-git/doc/guix.texi:2675 msgid "Once that command has completed---and hopefully succeeded!---you can run @command{reboot} and boot into the new system. The @code{root} password in the new system is initially empty; other users' passwords need to be initialized by running the @command{passwd} command as @code{root}, unless your configuration specifies otherwise (@pxref{user-account-password, user account passwords}). @xref{After System Installation}, for what's next!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2665 +#: guix-git/doc/guix.texi:2682 msgid "Success, you've now booted into Guix System! From then on, you can update the system whenever you want by running, say:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2669 +#: guix-git/doc/guix.texi:2686 #, no-wrap msgid "" "guix pull\n" @@ -8096,93 +8170,93 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2675 +#: guix-git/doc/guix.texi:2692 msgid "This builds a new system generation with the latest packages and services (@pxref{Invoking guix system}). We recommend doing that regularly so that your system includes the latest security updates (@pxref{Security Updates})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2678 +#: guix-git/doc/guix.texi:2695 #, no-wrap msgid "sudo vs. @command{guix pull}" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2682 +#: guix-git/doc/guix.texi:2699 msgid "Note that @command{sudo guix} runs your user's @command{guix} command and @emph{not} root's, because @command{sudo} leaves @env{PATH} unchanged. To explicitly run root's @command{guix}, type @command{sudo -i guix @dots{}}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2687 +#: guix-git/doc/guix.texi:2704 msgid "The difference matters here, because @command{guix pull} updates the @command{guix} command and package definitions only for the user it is run as. This means that if you choose to use @command{guix system reconfigure} in root's login shell, you'll need to @command{guix pull} separately." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2692 +#: guix-git/doc/guix.texi:2709 msgid "Now, @pxref{Getting Started}, and join us on @code{#guix} on the Libera Chat IRC network or on @email{guix-devel@@gnu.org} to share your experience!" msgstr "" #. type: section -#: guix-git/doc/guix.texi:2695 +#: guix-git/doc/guix.texi:2712 #, no-wrap msgid "Installing Guix in a Virtual Machine" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2697 +#: guix-git/doc/guix.texi:2714 #, no-wrap msgid "virtual machine, Guix System installation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2698 +#: guix-git/doc/guix.texi:2715 #, no-wrap msgid "virtual private server (VPS)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2699 +#: guix-git/doc/guix.texi:2716 #, no-wrap msgid "VPS (virtual private server)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2703 +#: guix-git/doc/guix.texi:2720 msgid "If you'd like to install Guix System in a virtual machine (VM) or on a virtual private server (VPS) rather than on your beloved machine, this section is for you." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2706 +#: guix-git/doc/guix.texi:2723 msgid "To boot a @uref{https://qemu.org/,QEMU} VM for installing Guix System in a disk image, follow these steps:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2711 +#: guix-git/doc/guix.texi:2728 msgid "First, retrieve and decompress the Guix system installation image as described previously (@pxref{USB Stick and DVD Installation})." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2715 +#: guix-git/doc/guix.texi:2732 msgid "Create a disk image that will hold the installed system. To make a qcow2-formatted disk image, use the @command{qemu-img} command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2718 +#: guix-git/doc/guix.texi:2735 #, no-wrap msgid "qemu-img create -f qcow2 guix-system.img 50G\n" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2722 +#: guix-git/doc/guix.texi:2739 msgid "The resulting file will be much smaller than 50 GB (typically less than 1 MB), but it will grow as the virtualized storage device is filled up." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2725 +#: guix-git/doc/guix.texi:2742 msgid "Boot the USB installation image in an VM:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2731 +#: guix-git/doc/guix.texi:2748 #, no-wrap msgid "" "qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \\\n" @@ -8192,115 +8266,115 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2735 +#: guix-git/doc/guix.texi:2752 msgid "@code{-enable-kvm} is optional, but significantly improves performance, @pxref{Running Guix in a VM}." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2739 +#: guix-git/doc/guix.texi:2756 msgid "You're now root in the VM, proceed with the installation process. @xref{Preparing for Installation}, and follow the instructions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2744 +#: guix-git/doc/guix.texi:2761 msgid "Once installation is complete, you can boot the system that's on your @file{guix-system.img} image. @xref{Running Guix in a VM}, for how to do that." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2748 +#: guix-git/doc/guix.texi:2765 #, no-wrap msgid "installation image" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2751 +#: guix-git/doc/guix.texi:2768 msgid "The installation image described above was built using the @command{guix system} command, specifically:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2754 +#: guix-git/doc/guix.texi:2771 #, no-wrap msgid "guix system image -t iso9660 gnu/system/install.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2759 +#: guix-git/doc/guix.texi:2776 msgid "Have a look at @file{gnu/system/install.scm} in the source tree, and see also @ref{Invoking guix system} for more information about the installation image." msgstr "" #. type: section -#: guix-git/doc/guix.texi:2760 +#: guix-git/doc/guix.texi:2777 #, no-wrap msgid "Building the Installation Image for ARM Boards" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2764 +#: guix-git/doc/guix.texi:2781 msgid "Many ARM boards require a specific variant of the @uref{https://www.denx.de/wiki/U-Boot/, U-Boot} bootloader." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2768 +#: guix-git/doc/guix.texi:2785 msgid "If you build a disk image and the bootloader is not available otherwise (on another boot drive etc), it's advisable to build an image that includes the bootloader, specifically:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2771 +#: guix-git/doc/guix.texi:2788 #, no-wrap msgid "guix system image --system=armhf-linux -e '((@@ (gnu system install) os-with-u-boot) (@@ (gnu system install) installation-os) \"A20-OLinuXino-Lime2\")'\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2775 +#: guix-git/doc/guix.texi:2792 msgid "@code{A20-OLinuXino-Lime2} is the name of the board. If you specify an invalid board, a list of possible boards will be printed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2785 +#: guix-git/doc/guix.texi:2802 msgid "Presumably, you've reached this section because either you have installed Guix on top of another distribution (@pxref{Installation}), or you've installed the standalone Guix System (@pxref{System Installation}). It's time for you to get started using Guix and this section aims to help you do that and give you a feel of what it's like." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2789 +#: guix-git/doc/guix.texi:2806 msgid "Guix is about installing software, so probably the first thing you'll want to do is to actually look for software. Let's say you're looking for a text editor, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2792 +#: guix-git/doc/guix.texi:2809 #, no-wrap msgid "guix search text editor\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2799 +#: guix-git/doc/guix.texi:2816 msgid "This command shows you a number of matching @dfn{packages}, each time showing the package's name, version, a description, and additional info. Once you've found out the one you want to use, let's say Emacs (ah ha!), you can go ahead and install it (run this command as a regular user, @emph{no need for root privileges}!):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2802 +#: guix-git/doc/guix.texi:2819 #, no-wrap msgid "guix install emacs\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2804 guix-git/doc/guix.texi:3116 -#: guix-git/doc/guix.texi:3168 +#: guix-git/doc/guix.texi:2821 guix-git/doc/guix.texi:3133 +#: guix-git/doc/guix.texi:3185 #, no-wrap msgid "profile" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2812 +#: guix-git/doc/guix.texi:2829 msgid "You've installed your first package, congrats! The package is now visible in your default @dfn{profile}, @file{$HOME/.guix-profile}---a profile is a directory containing installed packages. In the process, you've probably noticed that Guix downloaded pre-built binaries; or, if you explicitly chose to @emph{not} use pre-built binaries, then probably Guix is still building software (@pxref{Substitutes}, for more info)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2815 +#: guix-git/doc/guix.texi:2832 msgid "Unless you're using Guix System, the @command{guix install} command must have printed this hint:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2818 +#: guix-git/doc/guix.texi:2835 #, no-wrap msgid "" "hint: Consider setting the necessary environment variables by running:\n" @@ -8308,7 +8382,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2821 +#: guix-git/doc/guix.texi:2838 #, no-wrap msgid "" " GUIX_PROFILE=\"$HOME/.guix-profile\"\n" @@ -8317,77 +8391,77 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2823 +#: guix-git/doc/guix.texi:2840 #, no-wrap msgid "Alternately, see `guix package --search-paths -p \"$HOME/.guix-profile\"'.\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2837 +#: guix-git/doc/guix.texi:2854 msgid "Indeed, you must now tell your shell where @command{emacs} and other programs installed with Guix are to be found. Pasting the two lines above will do just that: it will add @code{$HOME/.guix-profile/bin}---which is where the installed package is---to the @code{PATH} environment variable. You can paste these two lines in your shell so they take effect right away, but more importantly you should add them to @file{~/.bash_profile} (or equivalent file if you do not use Bash) so that environment variables are set next time you spawn a shell. You only need to do this once and other search paths environment variables will be taken care of similarly---e.g., if you eventually install @code{python} and Python libraries, @env{GUIX_PYTHONPATH} will be defined." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2840 +#: guix-git/doc/guix.texi:2857 msgid "You can go on installing packages at your will. To list installed packages, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2843 +#: guix-git/doc/guix.texi:2860 #, no-wrap msgid "guix package --list-installed\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2848 +#: guix-git/doc/guix.texi:2865 msgid "To remove a package, you would unsurprisingly run @command{guix remove}. A distinguishing feature is the ability to @dfn{roll back} any operation you made---installation, removal, upgrade---by simply typing:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2851 +#: guix-git/doc/guix.texi:2868 #, no-wrap msgid "guix package --roll-back\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2856 +#: guix-git/doc/guix.texi:2873 msgid "This is because each operation is in fact a @dfn{transaction} that creates a new @dfn{generation}. These generations and the difference between them can be displayed by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2859 +#: guix-git/doc/guix.texi:2876 #, no-wrap msgid "guix package --list-generations\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2862 +#: guix-git/doc/guix.texi:2879 msgid "Now you know the basics of package management!" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2863 guix-git/doc/guix.texi:2922 +#: guix-git/doc/guix.texi:2880 guix-git/doc/guix.texi:2939 #, no-wrap msgid "Going further" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2871 +#: guix-git/doc/guix.texi:2888 msgid "@xref{Package Management}, for more about package management. You may like @dfn{declarative} package management with @command{guix package --manifest}, managing separate @dfn{profiles} with @option{--profile}, deleting old generations, collecting garbage, and other nifty features that will come in handy as you become more familiar with Guix. If you are a developer, @pxref{Development} for additional tools. And if you're curious, @pxref{Features}, to peek under the hood." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2876 +#: guix-git/doc/guix.texi:2893 msgid "Once you've installed a set of packages, you will want to periodically @emph{upgrade} them to the latest and greatest version. To do that, you will first pull the latest revision of Guix and its package collection:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2886 +#: guix-git/doc/guix.texi:2903 msgid "The end result is a new @command{guix} command, under @file{~/.config/guix/current/bin}. Unless you're on Guix System, the first time you run @command{guix pull}, be sure to follow the hint that the command prints and, similar to what we saw above, paste these two lines in your terminal and @file{.bash_profile}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2890 +#: guix-git/doc/guix.texi:2907 #, no-wrap msgid "" "GUIX_PROFILE=\"$HOME/.config/guix/current\"\n" @@ -8395,336 +8469,336 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2894 +#: guix-git/doc/guix.texi:2911 msgid "You must also instruct your shell to point to this new @command{guix}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2897 +#: guix-git/doc/guix.texi:2914 #, no-wrap msgid "hash guix\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2901 +#: guix-git/doc/guix.texi:2918 msgid "At this point, you're running a brand new Guix. You can thus go ahead and actually upgrade all the packages you previously installed:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2904 +#: guix-git/doc/guix.texi:2921 #, no-wrap msgid "guix upgrade\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2910 +#: guix-git/doc/guix.texi:2927 msgid "As you run this command, you will see that binaries are downloaded (or perhaps some packages are built), and eventually you end up with the upgraded packages. Should one of these upgraded packages not be to your liking, remember you can always roll back!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2913 +#: guix-git/doc/guix.texi:2930 msgid "You can display the exact revision of Guix you're currently using by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2916 +#: guix-git/doc/guix.texi:2933 #, no-wrap msgid "guix describe\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2921 +#: guix-git/doc/guix.texi:2938 msgid "The information it displays is @emph{all it takes to reproduce the exact same Guix}, be it at a different point in time or on a different machine." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2927 +#: guix-git/doc/guix.texi:2944 msgid "@xref{Invoking guix pull}, for more information. @xref{Channels}, on how to specify additional @dfn{channels} to pull packages from, how to replicate Guix, and more. You may also find @command{time-machine} handy (@pxref{Invoking guix time-machine})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2932 +#: guix-git/doc/guix.texi:2949 msgid "If you installed Guix System, one of the first things you'll want to do is to upgrade your system. Once you've run @command{guix pull} to get the latest Guix, you can upgrade the system like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2935 +#: guix-git/doc/guix.texi:2952 #, no-wrap msgid "sudo guix system reconfigure /etc/config.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2944 +#: guix-git/doc/guix.texi:2961 msgid "Upon completion, the system runs the latest versions of its software packages. When you eventually reboot, you'll notice a sub-menu in the bootloader that reads ``Old system generations'': it's what allows you to boot @emph{an older generation of your system}, should the latest generation be ``broken'' or otherwise unsatisfying. Just like for packages, you can always @emph{roll back} to a previous generation @emph{of the whole system}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2947 +#: guix-git/doc/guix.texi:2964 #, no-wrap msgid "sudo guix system roll-back\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2954 +#: guix-git/doc/guix.texi:2971 msgid "There are many things you'll probably want to tweak on your system: adding new user accounts, adding new system services, fiddling with the configuration of those services, etc. The system configuration is @emph{entirely} described in the @file{/etc/config.scm} file. @xref{Using the Configuration System}, to learn how to change it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2956 +#: guix-git/doc/guix.texi:2973 msgid "Now you know enough to get started!" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2957 +#: guix-git/doc/guix.texi:2974 #, no-wrap msgid "Resources" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2960 +#: guix-git/doc/guix.texi:2977 msgid "The rest of this manual provides a reference for all things Guix. Here are some additional resources you may find useful:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2965 +#: guix-git/doc/guix.texi:2982 msgid "@xref{Top,,, guix-cookbook, The GNU Guix Cookbook}, for a list of ``how-to'' style of recipes for a variety of applications." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2970 +#: guix-git/doc/guix.texi:2987 msgid "The @uref{https://guix.gnu.org/guix-refcard.pdf, GNU Guix Reference Card} lists in two pages most of the commands and options you'll ever need." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2975 +#: guix-git/doc/guix.texi:2992 msgid "The web site contains @uref{https://guix.gnu.org/en/videos/, instructional videos} covering topics such as everyday use of Guix, how to get help, and how to become a contributor." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2979 +#: guix-git/doc/guix.texi:2996 msgid "@xref{Documentation}, to learn how to access documentation on your computer." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2982 +#: guix-git/doc/guix.texi:2999 msgid "We hope you will enjoy Guix as much as the community enjoys building it!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2993 +#: guix-git/doc/guix.texi:3010 msgid "The purpose of GNU Guix is to allow users to easily install, upgrade, and remove software packages, without having to know about their build procedures or dependencies. Guix also goes beyond this obvious set of features." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3001 +#: guix-git/doc/guix.texi:3018 msgid "This chapter describes the main features of Guix, as well as the package management tools it provides. Along with the command-line interface described below (@pxref{Invoking guix package, @code{guix package}}), you may also use the Emacs-Guix interface (@pxref{Top,,, emacs-guix, The Emacs-Guix Reference Manual}), after installing @code{emacs-guix} package (run @kbd{M-x guix-help} command to start with it):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3004 +#: guix-git/doc/guix.texi:3021 #, no-wrap msgid "guix install emacs-guix\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3025 +#: guix-git/doc/guix.texi:3042 msgid "Here we assume you've already made your first steps with Guix (@pxref{Getting Started}) and would like to get an overview about what's going on under the hood." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3029 +#: guix-git/doc/guix.texi:3046 msgid "When using Guix, each package ends up in the @dfn{package store}, in its own directory---something that resembles @file{/gnu/store/xxx-package-1.2}, where @code{xxx} is a base32 string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3051 msgid "Instead of referring to these directories, users have their own @dfn{profile}, which points to the packages that they actually want to use. These profiles are stored within each user's home directory, at @code{$HOME/.guix-profile}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3042 +#: guix-git/doc/guix.texi:3059 msgid "For example, @code{alice} installs GCC 4.7.2. As a result, @file{/home/alice/.guix-profile/bin/gcc} points to @file{/gnu/store/@dots{}-gcc-4.7.2/bin/gcc}. Now, on the same machine, @code{bob} had already installed GCC 4.8.0. The profile of @code{bob} simply continues to point to @file{/gnu/store/@dots{}-gcc-4.8.0/bin/gcc}---i.e., both versions of GCC coexist on the same system without any interference." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3046 +#: guix-git/doc/guix.texi:3063 msgid "The @command{guix package} command is the central tool to manage packages (@pxref{Invoking guix package}). It operates on the per-user profiles, and can be used @emph{with normal user privileges}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3047 guix-git/doc/guix.texi:3130 +#: guix-git/doc/guix.texi:3064 guix-git/doc/guix.texi:3147 #, no-wrap msgid "transactions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3054 +#: guix-git/doc/guix.texi:3071 msgid "The command provides the obvious install, remove, and upgrade operations. Each invocation is actually a @emph{transaction}: either the specified operation succeeds, or nothing happens. Thus, if the @command{guix package} process is terminated during the transaction, or if a power outage occurs during the transaction, then the user's profile remains in its previous state, and remains usable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3062 +#: guix-git/doc/guix.texi:3079 msgid "In addition, any package transaction may be @emph{rolled back}. So, if, for example, an upgrade installs a new version of a package that turns out to have a serious bug, users may roll back to the previous instance of their profile, which was known to work well. Similarly, the global system configuration on Guix is subject to transactional upgrades and roll-back (@pxref{Using the Configuration System})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3069 +#: guix-git/doc/guix.texi:3086 msgid "All packages in the package store may be @emph{garbage-collected}. Guix can determine which packages are still referenced by user profiles, and remove those that are provably no longer referenced (@pxref{Invoking guix gc}). Users may also explicitly remove old generations of their profile so that the packages they refer to can be collected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3082 +#: guix-git/doc/guix.texi:3099 msgid "Guix takes a @dfn{purely functional} approach to package management, as described in the introduction (@pxref{Introduction}). Each @file{/gnu/store} package directory name contains a hash of all the inputs that were used to build that package---compiler, libraries, build scripts, etc. This direct correspondence allows users to make sure a given package installation matches the current state of their distribution. It also helps maximize @dfn{build reproducibility}: thanks to the isolated build environments that are used, a given build is likely to yield bit-identical files when performed on different machines (@pxref{Invoking guix-daemon, container})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3093 +#: guix-git/doc/guix.texi:3110 msgid "This foundation allows Guix to support @dfn{transparent binary/source deployment}. When a pre-built binary for a @file{/gnu/store} item is available from an external source---a @dfn{substitute}, Guix just downloads it and unpacks it; otherwise, it builds the package from source, locally (@pxref{Substitutes}). Because build results are usually bit-for-bit reproducible, users do not have to trust servers that provide substitutes: they can force a local build and @emph{challenge} providers (@pxref{Invoking guix challenge})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3099 +#: guix-git/doc/guix.texi:3116 msgid "Control over the build environment is a feature that is also useful for developers. The @command{guix shell} command allows developers of a package to quickly set up the right development environment for their package, without having to manually install the dependencies of the package into their profile (@pxref{Invoking guix shell})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3100 +#: guix-git/doc/guix.texi:3117 #, no-wrap msgid "replication, of software environments" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3101 +#: guix-git/doc/guix.texi:3118 #, no-wrap msgid "provenance tracking, of software artifacts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3108 +#: guix-git/doc/guix.texi:3125 msgid "All of Guix and its package definitions is version-controlled, and @command{guix pull} allows you to ``travel in time'' on the history of Guix itself (@pxref{Invoking guix pull}). This makes it possible to replicate a Guix instance on a different machine or at a later point in time, which in turn allows you to @emph{replicate complete software environments}, while retaining precise @dfn{provenance tracking} of the software." msgstr "" #. type: section -#: guix-git/doc/guix.texi:3110 +#: guix-git/doc/guix.texi:3127 #, no-wrap msgid "Invoking @command{guix package}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3112 +#: guix-git/doc/guix.texi:3129 #, no-wrap msgid "installing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3113 +#: guix-git/doc/guix.texi:3130 #, no-wrap msgid "removing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3114 +#: guix-git/doc/guix.texi:3131 #, no-wrap msgid "package installation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3115 +#: guix-git/doc/guix.texi:3132 #, no-wrap msgid "package removal" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3125 +#: guix-git/doc/guix.texi:3142 msgid "The @command{guix package} command is the tool that allows users to install, upgrade, and remove packages, as well as rolling back to previous configurations. These operations work on a user @dfn{profile}---a directory of installed packages. Each user has a default profile in @file{$HOME/.guix-profile}. The command operates only on the user's own profile, and works with normal user privileges (@pxref{Features}). Its syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3128 +#: guix-git/doc/guix.texi:3145 #, no-wrap msgid "guix package @var{options}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3135 +#: guix-git/doc/guix.texi:3152 msgid "Primarily, @var{options} specifies the operations to be performed during the transaction. Upon completion, a new profile is created, but previous @dfn{generations} of the profile remain available, should the user want to roll back." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3138 +#: guix-git/doc/guix.texi:3155 msgid "For example, to remove @code{lua} and install @code{guile} and @code{guile-cairo} in a single transaction:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3141 +#: guix-git/doc/guix.texi:3158 #, no-wrap msgid "guix package -r lua -i guile guile-cairo\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3143 +#: guix-git/doc/guix.texi:3160 #, no-wrap msgid "aliases, for @command{guix package}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3145 +#: guix-git/doc/guix.texi:3162 msgid "For your convenience, we also provide the following aliases:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3149 +#: guix-git/doc/guix.texi:3166 msgid "@command{guix search} is an alias for @command{guix package -s}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3151 +#: guix-git/doc/guix.texi:3168 msgid "@command{guix install} is an alias for @command{guix package -i}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3153 +#: guix-git/doc/guix.texi:3170 msgid "@command{guix remove} is an alias for @command{guix package -r}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3155 +#: guix-git/doc/guix.texi:3172 msgid "@command{guix upgrade} is an alias for @command{guix package -u}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3157 +#: guix-git/doc/guix.texi:3174 msgid "and @command{guix show} is an alias for @command{guix package --show=}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3162 +#: guix-git/doc/guix.texi:3179 msgid "These aliases are less expressive than @command{guix package} and provide fewer options, so in some cases you'll probably want to use @command{guix package} directly." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3167 +#: guix-git/doc/guix.texi:3184 msgid "@command{guix package} also supports a @dfn{declarative approach} whereby the user specifies the exact set of packages to be available and passes it @i{via} the @option{--manifest} option (@pxref{profile-manifest, @option{--manifest}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3174 +#: guix-git/doc/guix.texi:3191 msgid "For each user, a symlink to the user's default profile is automatically created in @file{$HOME/.guix-profile}. This symlink always points to the current generation of the user's default profile. Thus, users can add @file{$HOME/.guix-profile/bin} to their @env{PATH} environment variable, and so on." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3174 guix-git/doc/guix.texi:3418 +#: guix-git/doc/guix.texi:3191 guix-git/doc/guix.texi:3435 #, no-wrap msgid "search paths" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3179 +#: guix-git/doc/guix.texi:3196 msgid "If you are not using Guix System, consider adding the following lines to your @file{~/.bash_profile} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}) so that newly-spawned shells get all the right environment variable definitions:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3183 +#: guix-git/doc/guix.texi:3200 #, no-wrap msgid "" "GUIX_PROFILE=\"$HOME/.guix-profile\" ; \\\n" @@ -8732,298 +8806,298 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3194 +#: guix-git/doc/guix.texi:3211 msgid "In a multi-user setup, user profiles are stored in a place registered as a @dfn{garbage-collector root}, which @file{$HOME/.guix-profile} points to (@pxref{Invoking guix gc}). That directory is normally @code{@var{localstatedir}/guix/profiles/per-user/@var{user}}, where @var{localstatedir} is the value passed to @code{configure} as @option{--localstatedir}, and @var{user} is the user name. The @file{per-user} directory is created when @command{guix-daemon} is started, and the @var{user} sub-directory is created by @command{guix package}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3196 +#: guix-git/doc/guix.texi:3213 msgid "The @var{options} can be among the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3199 +#: guix-git/doc/guix.texi:3216 #, no-wrap msgid "--install=@var{package} @dots{}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3200 +#: guix-git/doc/guix.texi:3217 #, no-wrap msgid "-i @var{package} @dots{}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3202 +#: guix-git/doc/guix.texi:3219 msgid "Install the specified @var{package}s." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3207 +#: guix-git/doc/guix.texi:3224 msgid "Each @var{package} may specify either a simple package name, such as @code{guile}, or a package name followed by an at-sign and version number, such as @code{guile@@1.8.8} or simply @code{guile@@1.8} (in the latter case, the newest version prefixed by @code{1.8} is selected)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3215 +#: guix-git/doc/guix.texi:3232 msgid "If no version number is specified, the newest available version will be selected. In addition, @var{package} may contain a colon, followed by the name of one of the outputs of the package, as in @code{gcc:doc} or @code{binutils@@2.22:lib} (@pxref{Packages with Multiple Outputs}). Packages with a corresponding name (and optionally version) are searched for among the GNU distribution modules (@pxref{Package Modules})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3216 +#: guix-git/doc/guix.texi:3233 #, no-wrap msgid "propagated inputs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3222 +#: guix-git/doc/guix.texi:3239 msgid "Sometimes packages have @dfn{propagated inputs}: these are dependencies that automatically get installed along with the required package (@pxref{package-propagated-inputs, @code{propagated-inputs} in @code{package} objects}, for information about propagated inputs in package definitions)." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3229 +#: guix-git/doc/guix.texi:3246 msgid "package-cmd-propagated-inputs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3229 +#: guix-git/doc/guix.texi:3246 msgid "An example is the GNU MPC library: its C header files refer to those of the GNU MPFR library, which in turn refer to those of the GMP library. Thus, when installing MPC, the MPFR and GMP libraries also get installed in the profile; removing MPC also removes MPFR and GMP---unless they had also been explicitly installed by the user." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3234 +#: guix-git/doc/guix.texi:3251 msgid "Besides, packages sometimes rely on the definition of environment variables for their search paths (see explanation of @option{--search-paths} below). Any missing or possibly incorrect environment variable definitions are reported here." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3235 +#: guix-git/doc/guix.texi:3252 #, no-wrap msgid "--install-from-expression=@var{exp}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3236 +#: guix-git/doc/guix.texi:3253 #, no-wrap msgid "-e @var{exp}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3238 +#: guix-git/doc/guix.texi:3255 msgid "Install the package @var{exp} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3243 +#: guix-git/doc/guix.texi:3260 msgid "@var{exp} must be a Scheme expression that evaluates to a @code{} object. This option is notably useful to disambiguate between same-named variants of a package, with expressions such as @code{(@@ (gnu packages base) guile-final)}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3247 +#: guix-git/doc/guix.texi:3264 msgid "Note that this option installs the first output of the specified package, which may be insufficient when needing a specific output of a multiple-output package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3248 +#: guix-git/doc/guix.texi:3265 #, no-wrap msgid "--install-from-file=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3249 guix-git/doc/guix.texi:5781 -#: guix-git/doc/guix.texi:11396 +#: guix-git/doc/guix.texi:3266 guix-git/doc/guix.texi:5799 +#: guix-git/doc/guix.texi:11710 #, no-wrap msgid "-f @var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3251 +#: guix-git/doc/guix.texi:3268 msgid "Install the package that the code within @var{file} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3254 guix-git/doc/guix.texi:5787 -#: guix-git/doc/guix.texi:6162 +#: guix-git/doc/guix.texi:3271 guix-git/doc/guix.texi:5805 +#: guix-git/doc/guix.texi:6199 msgid "As an example, @var{file} might contain a definition like this (@pxref{Defining Packages}):" msgstr "" #. type: include -#: guix-git/doc/guix.texi:3256 guix-git/doc/guix.texi:11404 +#: guix-git/doc/guix.texi:3273 guix-git/doc/guix.texi:11718 #, no-wrap msgid "package-hello.scm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3263 +#: guix-git/doc/guix.texi:3280 msgid "Developers may find it useful to include such a @file{guix.scm} file in the root of their project source tree that can be used to test development snapshots and create reproducible development environments (@pxref{Invoking guix shell})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3268 +#: guix-git/doc/guix.texi:3285 msgid "The @var{file} may also contain a JSON representation of one or more package definitions. Running @code{guix package -f} on @file{hello.json} with the following contents would result in installing the package @code{greeter} after building @code{myhello}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3271 guix-git/doc/guix.texi:11414 +#: guix-git/doc/guix.texi:3288 guix-git/doc/guix.texi:11728 #, no-wrap msgid "@verbatiminclude package-hello.json\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3273 +#: guix-git/doc/guix.texi:3290 #, no-wrap msgid "--remove=@var{package} @dots{}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3274 +#: guix-git/doc/guix.texi:3291 #, no-wrap msgid "-r @var{package} @dots{}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3276 +#: guix-git/doc/guix.texi:3293 msgid "Remove the specified @var{package}s." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3281 +#: guix-git/doc/guix.texi:3298 msgid "As for @option{--install}, each @var{package} may specify a version number and/or output name in addition to the package name. For instance, @samp{-r glibc:debug} would remove the @code{debug} output of @code{glibc}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3282 +#: guix-git/doc/guix.texi:3299 #, no-wrap msgid "--upgrade[=@var{regexp} @dots{}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3283 +#: guix-git/doc/guix.texi:3300 #, no-wrap msgid "-u [@var{regexp} @dots{}]" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3284 +#: guix-git/doc/guix.texi:3301 #, no-wrap msgid "upgrading packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3288 +#: guix-git/doc/guix.texi:3305 msgid "Upgrade all the installed packages. If one or more @var{regexp}s are specified, upgrade only installed packages whose name matches a @var{regexp}. Also see the @option{--do-not-upgrade} option below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3293 +#: guix-git/doc/guix.texi:3310 msgid "Note that this upgrades package to the latest version of packages found in the distribution currently installed. To update your distribution, you should regularly run @command{guix pull} (@pxref{Invoking guix pull})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3294 +#: guix-git/doc/guix.texi:3311 #, no-wrap msgid "package transformations, upgrades" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3299 +#: guix-git/doc/guix.texi:3316 msgid "When upgrading, package transformations that were originally applied when creating the profile are automatically re-applied (@pxref{Package Transformation Options}). For example, assume you first installed Emacs from the tip of its development branch with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3302 +#: guix-git/doc/guix.texi:3319 #, no-wrap msgid "guix install emacs-next --with-branch=emacs-next=master\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3307 +#: guix-git/doc/guix.texi:3324 msgid "Next time you run @command{guix upgrade}, Guix will again pull the tip of the Emacs development branch and build @code{emacs-next} from that checkout." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3312 +#: guix-git/doc/guix.texi:3329 msgid "Note that transformation options such as @option{--with-branch} and @option{--with-source} depend on external state; it is up to you to ensure that they work as expected. You can also discard a transformations that apply to a package by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3315 +#: guix-git/doc/guix.texi:3332 #, no-wrap msgid "guix install @var{package}\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3317 +#: guix-git/doc/guix.texi:3334 #, no-wrap msgid "--do-not-upgrade[=@var{regexp} @dots{}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3322 +#: guix-git/doc/guix.texi:3339 msgid "When used together with the @option{--upgrade} option, do @emph{not} upgrade any packages whose name matches a @var{regexp}. For example, to upgrade all packages in the current profile except those containing the substring ``emacs'':" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3325 +#: guix-git/doc/guix.texi:3342 #, no-wrap msgid "$ guix package --upgrade . --do-not-upgrade emacs\n" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3327 +#: guix-git/doc/guix.texi:3344 #, no-wrap msgid "profile-manifest" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3327 guix-git/doc/guix.texi:5799 -#: guix-git/doc/guix.texi:6167 guix-git/doc/guix.texi:6615 -#: guix-git/doc/guix.texi:12535 guix-git/doc/guix.texi:14135 +#: guix-git/doc/guix.texi:3344 guix-git/doc/guix.texi:5817 +#: guix-git/doc/guix.texi:6204 guix-git/doc/guix.texi:6658 +#: guix-git/doc/guix.texi:12850 guix-git/doc/guix.texi:14492 #, no-wrap msgid "--manifest=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3328 guix-git/doc/guix.texi:5800 -#: guix-git/doc/guix.texi:6168 guix-git/doc/guix.texi:6616 -#: guix-git/doc/guix.texi:12536 +#: guix-git/doc/guix.texi:3345 guix-git/doc/guix.texi:5818 +#: guix-git/doc/guix.texi:6205 guix-git/doc/guix.texi:6659 +#: guix-git/doc/guix.texi:12851 #, no-wrap msgid "-m @var{file}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3329 +#: guix-git/doc/guix.texi:3346 #, no-wrap msgid "profile declaration" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3330 +#: guix-git/doc/guix.texi:3347 #, no-wrap msgid "profile manifest" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3334 +#: guix-git/doc/guix.texi:3351 msgid "Create a new generation of the profile from the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3340 +#: guix-git/doc/guix.texi:3357 msgid "This allows you to @emph{declare} the profile's contents rather than constructing it through a sequence of @option{--install} and similar commands. The advantage is that @var{file} can be put under version control, copied to different machines to reproduce the same profile, and so on." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3344 +#: guix-git/doc/guix.texi:3361 msgid "@var{file} must return a @dfn{manifest} object, which is roughly a list of packages:" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:3345 +#: guix-git/doc/guix.texi:3362 #, no-wrap msgid "packages->manifest" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3348 +#: guix-git/doc/guix.texi:3365 #, no-wrap msgid "" "(use-package-modules guile emacs)\n" @@ -9031,7 +9105,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3354 +#: guix-git/doc/guix.texi:3371 #, no-wrap msgid "" "(packages->manifest\n" @@ -9042,18 +9116,18 @@ msgid "" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:3356 +#: guix-git/doc/guix.texi:3373 #, no-wrap msgid "specifications->manifest" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3363 +#: guix-git/doc/guix.texi:3380 msgid "In this example we have to know which modules define the @code{emacs} and @code{guile-2.0} variables to provide the right @code{use-package-modules} line, which can be cumbersome. We can instead provide regular package specifications and let @code{specifications->manifest} look up the corresponding package objects, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3367 +#: guix-git/doc/guix.texi:3384 #, no-wrap msgid "" "(specifications->manifest\n" @@ -9061,150 +9135,150 @@ msgid "" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:3369 +#: guix-git/doc/guix.texi:3386 #, no-wrap msgid "package->development-manifest" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3372 +#: guix-git/doc/guix.texi:3389 msgid "You might also want to create a manifest for all the dependencies of a package, rather than the package itself:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3375 +#: guix-git/doc/guix.texi:3392 #, no-wrap msgid "(package->development-manifest (specification->package \"emacs\"))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3379 +#: guix-git/doc/guix.texi:3396 msgid "The example above gives you all the software required to develop Emacs, similar to what @command{guix environment emacs} provides." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3382 +#: guix-git/doc/guix.texi:3399 msgid "@xref{export-manifest, @option{--export-manifest}}, to learn how to obtain a manifest file from an existing profile." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3383 guix-git/doc/guix.texi:4492 +#: guix-git/doc/guix.texi:3400 guix-git/doc/guix.texi:4510 #, no-wrap msgid "--roll-back" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3384 guix-git/doc/guix.texi:4493 -#: guix-git/doc/guix.texi:35006 guix-git/doc/guix.texi:37641 +#: guix-git/doc/guix.texi:3401 guix-git/doc/guix.texi:4511 +#: guix-git/doc/guix.texi:35445 guix-git/doc/guix.texi:38120 #, no-wrap msgid "rolling back" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3385 guix-git/doc/guix.texi:4494 +#: guix-git/doc/guix.texi:3402 guix-git/doc/guix.texi:4512 #, no-wrap msgid "undoing transactions" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3386 guix-git/doc/guix.texi:4495 +#: guix-git/doc/guix.texi:3403 guix-git/doc/guix.texi:4513 #, no-wrap msgid "transactions, undoing" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3389 +#: guix-git/doc/guix.texi:3406 msgid "Roll back to the previous @dfn{generation} of the profile---i.e., undo the last transaction." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3392 +#: guix-git/doc/guix.texi:3409 msgid "When combined with options such as @option{--install}, roll back occurs before any other actions." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3396 +#: guix-git/doc/guix.texi:3413 msgid "When rolling back from the first generation that actually contains installed packages, the profile is made to point to the @dfn{zeroth generation}, which contains no files apart from its own metadata." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3400 +#: guix-git/doc/guix.texi:3417 msgid "After having rolled back, installing, removing, or upgrading packages overwrites previous future generations. Thus, the history of the generations in a profile is always linear." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3401 guix-git/doc/guix.texi:4499 +#: guix-git/doc/guix.texi:3418 guix-git/doc/guix.texi:4517 #, no-wrap msgid "--switch-generation=@var{pattern}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3402 guix-git/doc/guix.texi:4500 +#: guix-git/doc/guix.texi:3419 guix-git/doc/guix.texi:4518 #, no-wrap msgid "-S @var{pattern}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3403 guix-git/doc/guix.texi:3635 -#: guix-git/doc/guix.texi:4501 guix-git/doc/guix.texi:34964 +#: guix-git/doc/guix.texi:3420 guix-git/doc/guix.texi:3653 +#: guix-git/doc/guix.texi:4519 guix-git/doc/guix.texi:35403 #, no-wrap msgid "generations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3405 guix-git/doc/guix.texi:4503 +#: guix-git/doc/guix.texi:3422 guix-git/doc/guix.texi:4521 msgid "Switch to a particular generation defined by @var{pattern}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3411 guix-git/doc/guix.texi:4509 +#: guix-git/doc/guix.texi:3428 guix-git/doc/guix.texi:4527 msgid "@var{pattern} may be either a generation number or a number prefixed with ``+'' or ``-''. The latter means: move forward/backward by a specified number of generations. For example, if you want to return to the latest generation after @option{--roll-back}, use @option{--switch-generation=+1}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3416 +#: guix-git/doc/guix.texi:3433 msgid "The difference between @option{--roll-back} and @option{--switch-generation=-1} is that @option{--switch-generation} will not make a zeroth generation, so if a specified generation does not exist, the current generation will not be changed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3417 +#: guix-git/doc/guix.texi:3434 #, no-wrap msgid "--search-paths[=@var{kind}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3423 +#: guix-git/doc/guix.texi:3440 msgid "Report environment variable definitions, in Bash syntax, that may be needed in order to use the set of installed packages. These environment variables are used to specify @dfn{search paths} for files used by some of the installed packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3431 -msgid "For example, GCC needs the @env{CPATH} and @env{LIBRARY_PATH} environment variables to be defined so it can look for headers and libraries in the user's profile (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C library are installed in the profile, then @option{--search-paths} will suggest setting these variables to @file{@var{profile}/include} and @file{@var{profile}/lib}, respectively." +#: guix-git/doc/guix.texi:3449 +msgid "For example, GCC needs the @env{CPATH} and @env{LIBRARY_PATH} environment variables to be defined so it can look for headers and libraries in the user's profile (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C library are installed in the profile, then @option{--search-paths} will suggest setting these variables to @file{@var{profile}/include} and @file{@var{profile}/lib}, respectively (@pxref{Search Paths}, for info on search path specifications associated with packages.)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3434 +#: guix-git/doc/guix.texi:3452 msgid "The typical use case is to define these environment variables in the shell:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3437 +#: guix-git/doc/guix.texi:3455 #, no-wrap msgid "$ eval `guix package --search-paths`\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3443 +#: guix-git/doc/guix.texi:3461 msgid "@var{kind} may be one of @code{exact}, @code{prefix}, or @code{suffix}, meaning that the returned environment variable definitions will either be exact settings, or prefixes or suffixes of the current value of these variables. When omitted, @var{kind} defaults to @code{exact}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3446 +#: guix-git/doc/guix.texi:3464 msgid "This option can also be used to compute the @emph{combined} search paths of several profiles. Consider this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3451 +#: guix-git/doc/guix.texi:3469 #, no-wrap msgid "" "$ guix package -p foo -i guile\n" @@ -9213,42 +9287,44 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3456 +#: guix-git/doc/guix.texi:3474 msgid "The last command above reports about the @env{GUILE_LOAD_PATH} variable, even though, taken individually, neither @file{foo} nor @file{bar} would lead to that recommendation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3458 +#: guix-git/doc/guix.texi:3476 #, no-wrap msgid "profile, choosing" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3459 guix-git/doc/guix.texi:4529 -#: guix-git/doc/guix.texi:4858 +#: guix-git/doc/guix.texi:3477 guix-git/doc/guix.texi:4547 +#: guix-git/doc/guix.texi:4876 guix-git/doc/guix.texi:5827 +#: guix-git/doc/guix.texi:6240 #, no-wrap msgid "--profile=@var{profile}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3460 guix-git/doc/guix.texi:4530 -#: guix-git/doc/guix.texi:4859 +#: guix-git/doc/guix.texi:3478 guix-git/doc/guix.texi:4548 +#: guix-git/doc/guix.texi:4877 guix-git/doc/guix.texi:5828 +#: guix-git/doc/guix.texi:6241 #, no-wrap msgid "-p @var{profile}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3462 +#: guix-git/doc/guix.texi:3480 msgid "Use @var{profile} instead of the user's default profile." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3467 +#: guix-git/doc/guix.texi:3485 msgid "@var{profile} must be the name of a file that will be created upon completion. Concretely, @var{profile} will be a mere symbolic link (``symlink'') pointing to the actual profile where packages are installed:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3473 +#: guix-git/doc/guix.texi:3491 #, no-wrap msgid "" "$ guix install hello -p ~/code/my-profile\n" @@ -9258,29 +9334,29 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3477 +#: guix-git/doc/guix.texi:3495 msgid "All it takes to get rid of the profile is to remove this symlink and its siblings that point to specific generations:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3480 +#: guix-git/doc/guix.texi:3498 #, no-wrap msgid "$ rm ~/code/my-profile ~/code/my-profile-*-link\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3482 +#: guix-git/doc/guix.texi:3500 #, no-wrap msgid "--list-profiles" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3484 +#: guix-git/doc/guix.texi:3502 msgid "List all the user's profiles:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3491 +#: guix-git/doc/guix.texi:3509 #, no-wrap msgid "" "$ guix package --list-profiles\n" @@ -9291,96 +9367,96 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3494 +#: guix-git/doc/guix.texi:3512 msgid "When running as root, list all the profiles of all the users." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3495 +#: guix-git/doc/guix.texi:3513 #, no-wrap msgid "collisions, in a profile" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3496 +#: guix-git/doc/guix.texi:3514 #, no-wrap msgid "colliding packages in profiles" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3497 +#: guix-git/doc/guix.texi:3515 #, no-wrap msgid "profile collisions" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3498 +#: guix-git/doc/guix.texi:3516 #, no-wrap msgid "--allow-collisions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3500 +#: guix-git/doc/guix.texi:3518 msgid "Allow colliding packages in the new profile. Use at your own risk!" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3504 +#: guix-git/doc/guix.texi:3522 msgid "By default, @command{guix package} reports as an error @dfn{collisions} in the profile. Collisions happen when two or more different versions or variants of a given package end up in the profile." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3505 guix-git/doc/guix.texi:4572 -#: guix-git/doc/guix.texi:6701 +#: guix-git/doc/guix.texi:3523 guix-git/doc/guix.texi:4590 +#: guix-git/doc/guix.texi:6744 #, no-wrap msgid "--bootstrap" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3508 +#: guix-git/doc/guix.texi:3526 msgid "Use the bootstrap Guile to build the profile. This option is only useful to distribution developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3514 +#: guix-git/doc/guix.texi:3532 msgid "In addition to these actions, @command{guix package} supports the following options to query the current state of a profile, or the availability of packages:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3517 +#: guix-git/doc/guix.texi:3535 #, no-wrap msgid "--search=@var{regexp}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3518 +#: guix-git/doc/guix.texi:3536 #, no-wrap msgid "-s @var{regexp}" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3520 +#: guix-git/doc/guix.texi:3538 msgid "guix-search" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3520 +#: guix-git/doc/guix.texi:3538 #, no-wrap msgid "searching for packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3526 +#: guix-git/doc/guix.texi:3544 msgid "List the available packages whose name, synopsis, or description matches @var{regexp} (in a case-insensitive fashion), sorted by relevance. Print all the metadata of matching packages in @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3529 +#: guix-git/doc/guix.texi:3547 msgid "This allows specific fields to be extracted using the @command{recsel} command, for instance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3535 +#: guix-git/doc/guix.texi:3553 #, no-wrap msgid "" "$ guix package -s malloc | recsel -p name,version,relevance\n" @@ -9391,7 +9467,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3539 +#: guix-git/doc/guix.texi:3557 #, no-wrap msgid "" "name: glibc\n" @@ -9401,7 +9477,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3543 +#: guix-git/doc/guix.texi:3561 #, no-wrap msgid "" "name: libgc\n" @@ -9410,12 +9486,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3547 +#: guix-git/doc/guix.texi:3565 msgid "Similarly, to show the name of all the packages available under the terms of the GNU@tie{}LGPL version 3:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3551 +#: guix-git/doc/guix.texi:3569 #, no-wrap msgid "" "$ guix package -s \"\" | recsel -p name -e 'license ~ \"LGPL 3\"'\n" @@ -9424,7 +9500,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3554 +#: guix-git/doc/guix.texi:3572 #, no-wrap msgid "" "name: gmp\n" @@ -9432,12 +9508,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3560 +#: guix-git/doc/guix.texi:3578 msgid "It is also possible to refine search results using several @code{-s} flags to @command{guix package}, or several arguments to @command{guix search}. For example, the following command returns a list of board games (this time using the @command{guix search} alias):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3565 +#: guix-git/doc/guix.texi:3583 #, no-wrap msgid "" "$ guix search '\\' game | recsel -p name\n" @@ -9446,17 +9522,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3571 +#: guix-git/doc/guix.texi:3589 msgid "If we were to omit @code{-s game}, we would also get software packages that deal with printed circuit boards; removing the angle brackets around @code{board} would further add packages that have to do with keyboards." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3575 +#: guix-git/doc/guix.texi:3593 msgid "And now for a more elaborate example. The following command searches for cryptographic libraries, filters out Haskell, Perl, Python, and Ruby libraries, and prints the name and synopsis of the matching packages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3579 +#: guix-git/doc/guix.texi:3597 #, no-wrap msgid "" "$ guix search crypto library | \\\n" @@ -9464,23 +9540,23 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3584 +#: guix-git/doc/guix.texi:3602 msgid "@xref{Selection Expressions,,, recutils, GNU recutils manual}, for more information on @dfn{selection expressions} for @code{recsel -e}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3585 +#: guix-git/doc/guix.texi:3603 #, no-wrap msgid "--show=@var{package}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3589 +#: guix-git/doc/guix.texi:3607 msgid "Show details about @var{package}, taken from the list of available packages, in @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:3594 +#: guix-git/doc/guix.texi:3612 #, no-wrap msgid "" "$ guix package --show=guile | recsel -p name,version\n" @@ -9490,7 +9566,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3597 +#: guix-git/doc/guix.texi:3615 #, no-wrap msgid "" "name: guile\n" @@ -9499,7 +9575,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3601 +#: guix-git/doc/guix.texi:3619 #, no-wrap msgid "" "name: guile\n" @@ -9508,12 +9584,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3605 +#: guix-git/doc/guix.texi:3623 msgid "You may also specify the full name of a package to only get details about a specific version of it (this time using the @command{guix show} alias):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3609 +#: guix-git/doc/guix.texi:3627 #, no-wrap msgid "" "$ guix show guile@@3.0.5 | recsel -p name,version\n" @@ -9522,297 +9598,297 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3611 +#: guix-git/doc/guix.texi:3629 #, no-wrap msgid "--list-installed[=@var{regexp}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3612 +#: guix-git/doc/guix.texi:3630 #, no-wrap msgid "-I [@var{regexp}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3616 +#: guix-git/doc/guix.texi:3634 msgid "List the currently installed packages in the specified profile, with the most recently installed packages shown last. When @var{regexp} is specified, list only installed packages whose name matches @var{regexp}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3622 +#: guix-git/doc/guix.texi:3640 msgid "For each installed package, print the following items, separated by tabs: the package name, its version string, the part of the package that is installed (for instance, @code{out} for the default output, @code{include} for its headers, etc.), and the path of this package in the store." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3623 +#: guix-git/doc/guix.texi:3641 #, no-wrap msgid "--list-available[=@var{regexp}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3624 +#: guix-git/doc/guix.texi:3642 #, no-wrap msgid "-A [@var{regexp}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3628 +#: guix-git/doc/guix.texi:3646 msgid "List packages currently available in the distribution for this system (@pxref{GNU Distribution}). When @var{regexp} is specified, list only available packages whose name matches @var{regexp}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3632 +#: guix-git/doc/guix.texi:3650 msgid "For each package, print the following items separated by tabs: its name, its version string, the parts of the package (@pxref{Packages with Multiple Outputs}), and the source location of its definition." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3633 guix-git/doc/guix.texi:4485 +#: guix-git/doc/guix.texi:3651 guix-git/doc/guix.texi:4503 #, no-wrap msgid "--list-generations[=@var{pattern}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3634 guix-git/doc/guix.texi:4486 +#: guix-git/doc/guix.texi:3652 guix-git/doc/guix.texi:4504 #, no-wrap msgid "-l [@var{pattern}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3640 +#: guix-git/doc/guix.texi:3658 msgid "Return a list of generations along with their creation dates; for each generation, show the installed packages, with the most recently installed packages shown last. Note that the zeroth generation is never shown." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3645 +#: guix-git/doc/guix.texi:3663 msgid "For each installed package, print the following items, separated by tabs: the name of a package, its version string, the part of the package that is installed (@pxref{Packages with Multiple Outputs}), and the location of this package in the store." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3648 +#: guix-git/doc/guix.texi:3666 msgid "When @var{pattern} is used, the command returns only matching generations. Valid patterns include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3650 +#: guix-git/doc/guix.texi:3668 #, no-wrap msgid "@emph{Integers and comma-separated integers}. Both patterns denote" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3653 +#: guix-git/doc/guix.texi:3671 msgid "generation numbers. For instance, @option{--list-generations=1} returns the first one." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3656 +#: guix-git/doc/guix.texi:3674 msgid "And @option{--list-generations=1,8,2} outputs three generations in the specified order. Neither spaces nor trailing commas are allowed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3657 +#: guix-git/doc/guix.texi:3675 #, no-wrap msgid "@emph{Ranges}. @option{--list-generations=2..9} prints the" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3660 +#: guix-git/doc/guix.texi:3678 msgid "specified generations and everything in between. Note that the start of a range must be smaller than its end." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3664 +#: guix-git/doc/guix.texi:3682 msgid "It is also possible to omit the endpoint. For example, @option{--list-generations=2..}, returns all generations starting from the second one." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3665 +#: guix-git/doc/guix.texi:3683 #, no-wrap msgid "@emph{Durations}. You can also get the last @emph{N}@tie{}days, weeks," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3669 +#: guix-git/doc/guix.texi:3687 msgid "or months by passing an integer along with the first letter of the duration. For example, @option{--list-generations=20d} lists generations that are up to 20 days old." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3671 guix-git/doc/guix.texi:4510 +#: guix-git/doc/guix.texi:3689 guix-git/doc/guix.texi:4528 #, no-wrap msgid "--delete-generations[=@var{pattern}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3672 guix-git/doc/guix.texi:4511 +#: guix-git/doc/guix.texi:3690 guix-git/doc/guix.texi:4529 #, no-wrap msgid "-d [@var{pattern}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3675 guix-git/doc/guix.texi:4514 +#: guix-git/doc/guix.texi:3693 guix-git/doc/guix.texi:4532 msgid "When @var{pattern} is omitted, delete all generations except the current one." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3681 guix-git/doc/guix.texi:4520 +#: guix-git/doc/guix.texi:3699 guix-git/doc/guix.texi:4538 msgid "This command accepts the same patterns as @option{--list-generations}. When @var{pattern} is specified, delete the matching generations. When @var{pattern} specifies a duration, generations @emph{older} than the specified duration match. For instance, @option{--delete-generations=1m} deletes generations that are more than one month old." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3684 +#: guix-git/doc/guix.texi:3702 msgid "If the current generation matches, it is @emph{not} deleted. Also, the zeroth generation is never deleted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3687 guix-git/doc/guix.texi:4525 +#: guix-git/doc/guix.texi:3705 guix-git/doc/guix.texi:4543 msgid "Note that deleting generations prevents rolling back to them. Consequently, this command must be used with care." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3688 +#: guix-git/doc/guix.texi:3706 #, no-wrap msgid "manifest, exporting" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3690 +#: guix-git/doc/guix.texi:3708 msgid "export-manifest" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3690 +#: guix-git/doc/guix.texi:3708 #, no-wrap msgid "--export-manifest" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3693 +#: guix-git/doc/guix.texi:3711 msgid "Write to standard output a manifest suitable for @option{--manifest} corresponding to the chosen profile(s)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3697 +#: guix-git/doc/guix.texi:3715 msgid "This option is meant to help you migrate from the ``imperative'' operating mode---running @command{guix install}, @command{guix upgrade}, etc.---to the declarative mode that @option{--manifest} offers." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3702 +#: guix-git/doc/guix.texi:3720 msgid "Be aware that the resulting manifest @emph{approximates} what your profile actually contains; for instance, depending on how your profile was created, it can refer to packages or package versions that are not exactly what you specified." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3707 +#: guix-git/doc/guix.texi:3725 msgid "Keep in mind that a manifest is purely symbolic: it only contains package names and possibly versions, and their meaning varies over time. If you wish to ``pin'' channels to the revisions that were used to build the profile(s), see @option{--export-channels} below." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3708 +#: guix-git/doc/guix.texi:3726 #, no-wrap msgid "pinning, channel revisions of a profile" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3709 +#: guix-git/doc/guix.texi:3727 #, no-wrap msgid "--export-channels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3713 +#: guix-git/doc/guix.texi:3731 msgid "Write to standard output the list of channels used by the chosen profile(s), in a format suitable for @command{guix pull --channels} or @command{guix time-machine --channels} (@pxref{Channels})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3717 +#: guix-git/doc/guix.texi:3735 msgid "Together with @option{--export-manifest}, this option provides information allowing you to replicate the current profile (@pxref{Replicating Guix})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3725 +#: guix-git/doc/guix.texi:3743 msgid "However, note that the output of this command @emph{approximates} what was actually used to build this profile. In particular, a single profile might have been built from several different revisions of the same channel. In that case, @option{--export-manifest} chooses the last one and writes the list of other revisions in a comment. If you really need to pick packages from different channel revisions, you can use inferiors in your manifest to do so (@pxref{Inferiors})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3730 +#: guix-git/doc/guix.texi:3748 msgid "Together with @option{--export-manifest}, this is a good starting point if you are willing to migrate from the ``imperative'' model to the fully declarative model consisting of a manifest file along with a channels file pinning the exact channel revision(s) you want." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3737 +#: guix-git/doc/guix.texi:3755 msgid "Finally, since @command{guix package} may actually start build processes, it supports all the common build options (@pxref{Common Build Options}). It also supports package transformation options, such as @option{--with-source}, and preserves them across upgrades (@pxref{Package Transformation Options})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3742 +#: guix-git/doc/guix.texi:3760 #, no-wrap msgid "pre-built binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3748 +#: guix-git/doc/guix.texi:3766 msgid "Guix supports transparent source/binary deployment, which means that it can either build things locally, or download pre-built items from a server, or both. We call these pre-built items @dfn{substitutes}---they are substitutes for local build results. In many cases, downloading a substitute is much faster than building things locally." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3753 +#: guix-git/doc/guix.texi:3771 msgid "Substitutes can be anything resulting from a derivation build (@pxref{Derivations}). Of course, in the common case, they are pre-built package binaries, but source tarballs, for instance, which also result from derivation builds, can be available as substitutes." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3767 +#: guix-git/doc/guix.texi:3785 #, no-wrap msgid "build farm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3778 +#: guix-git/doc/guix.texi:3796 msgid "@code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} are both front-ends to official build farms that build packages from Guix continuously for some architectures, and make them available as substitutes. These are the default source of substitutes; which can be overridden by passing the @option{--substitute-urls} option either to @command{guix-daemon} (@pxref{daemon-substitute-urls,, @code{guix-daemon --substitute-urls}}) or to client tools such as @command{guix package} (@pxref{client-substitute-urls,, client @option{--substitute-urls} option})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3784 +#: guix-git/doc/guix.texi:3802 msgid "Substitute URLs can be either HTTP or HTTPS. HTTPS is recommended because communications are encrypted; conversely, using HTTP makes all communications visible to an eavesdropper, who could use the information gathered to determine, for instance, whether your system has unpatched security vulnerabilities." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3793 +#: guix-git/doc/guix.texi:3811 msgid "Substitutes from the official build farms are enabled by default when using Guix System (@pxref{GNU Distribution}). However, they are disabled by default when using Guix on a foreign distribution, unless you have explicitly enabled them via one of the recommended installation steps (@pxref{Installation}). The following paragraphs describe how to enable or disable substitutes for the official build farm; the same procedure can also be used to enable substitutes for any other substitute server." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3797 +#: guix-git/doc/guix.texi:3815 #, no-wrap msgid "security" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3799 +#: guix-git/doc/guix.texi:3817 #, no-wrap msgid "access control list (ACL), for substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3800 +#: guix-git/doc/guix.texi:3818 #, no-wrap msgid "ACL (access control list), for substitutes" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3806 +#: guix-git/doc/guix.texi:3824 msgid "To allow Guix to download substitutes from @code{@value{SUBSTITUTE-SERVER-1}}, @code{@value{SUBSTITUTE-SERVER-2}} or a mirror, you must add the relevant public key to the access control list (ACL) of archive imports, using the @command{guix archive} command (@pxref{Invoking guix archive}). Doing so implies that you trust the substitute server to not be compromised and to serve genuine substitutes." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:3811 +#: guix-git/doc/guix.texi:3829 msgid "If you are using Guix System, you can skip this section: Guix System authorizes substitutes from @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} by default." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3819 +#: guix-git/doc/guix.texi:3837 msgid "The public keys for each of the project maintained substitute servers are installed along with Guix, in @code{@var{prefix}/share/guix/}, where @var{prefix} is the installation prefix of Guix. If you installed Guix from source, make sure you checked the GPG signature of @file{guix-@value{VERSION}.tar.gz}, which contains this public key file. Then, you can run something like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3823 +#: guix-git/doc/guix.texi:3841 #, no-wrap msgid "" "# guix archive --authorize < @var{prefix}/share/guix/@value{SUBSTITUTE-SERVER-1}.pub\n" @@ -9820,12 +9896,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3827 +#: guix-git/doc/guix.texi:3845 msgid "Once this is in place, the output of a command like @code{guix build} should change from something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3836 +#: guix-git/doc/guix.texi:3854 #, no-wrap msgid "" "$ guix build emacs --dry-run\n" @@ -9838,12 +9914,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3840 +#: guix-git/doc/guix.texi:3858 msgid "to something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3849 +#: guix-git/doc/guix.texi:3867 #, no-wrap msgid "" "$ guix build emacs --dry-run\n" @@ -9856,49 +9932,49 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3856 +#: guix-git/doc/guix.texi:3874 msgid "The text changed from ``The following derivations would be built'' to ``112.3 MB would be downloaded''. This indicates that substitutes from the configured substitute servers are usable and will be downloaded, when possible, for future builds." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3857 +#: guix-git/doc/guix.texi:3875 #, no-wrap msgid "substitutes, how to disable" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3863 +#: guix-git/doc/guix.texi:3881 msgid "The substitute mechanism can be disabled globally by running @code{guix-daemon} with @option{--no-substitutes} (@pxref{Invoking guix-daemon}). It can also be disabled temporarily by passing the @option{--no-substitutes} option to @command{guix package}, @command{guix build}, and other command-line tools." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3867 +#: guix-git/doc/guix.texi:3885 #, no-wrap msgid "substitute servers, adding more" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3874 +#: guix-git/doc/guix.texi:3892 msgid "Guix can look up and fetch substitutes from several servers. This is useful when you are using packages from additional channels for which the official server does not have substitutes but another server provides them. Another situation where this is useful is when you would prefer to download from your organization's substitute server, resorting to the official server only as a fallback or dismissing it altogether." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3879 +#: guix-git/doc/guix.texi:3897 msgid "You can give Guix a list of substitute server URLs and it will check them in the specified order. You also need to explicitly authorize the public keys of substitute servers to instruct Guix to accept the substitutes they sign." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3886 +#: guix-git/doc/guix.texi:3904 msgid "On Guix System, this is achieved by modifying the configuration of the @code{guix} service. Since the @code{guix} service is part of the default lists of services, @code{%base-services} and @code{%desktop-services}, you can use @code{modify-services} to change its configuration and add the URLs and substitute keys that you want (@pxref{Service Reference, @code{modify-services}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3892 +#: guix-git/doc/guix.texi:3910 msgid "As an example, suppose you want to fetch substitutes from @code{guix.example.org} and to authorize the signing key of that server, in addition to the default @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}}. The resulting operating system configuration will look something like:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3909 +#: guix-git/doc/guix.texi:3927 #, no-wrap msgid "" "(operating-system\n" @@ -9919,12 +9995,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3916 +#: guix-git/doc/guix.texi:3934 msgid "This assumes that the file @file{key.pub} contains the signing key of @code{guix.example.org}. With this change in place in your operating system configuration file (say @file{/etc/config.scm}), you can reconfigure and restart the @code{guix-daemon} service or reboot so the changes take effect:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3920 +#: guix-git/doc/guix.texi:3938 #, no-wrap msgid "" "$ sudo guix system reconfigure /etc/config.scm\n" @@ -9932,28 +10008,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3924 +#: guix-git/doc/guix.texi:3942 msgid "If you're running Guix on a ``foreign distro'', you would instead take the following steps to get substitutes from additional servers:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:3933 +#: guix-git/doc/guix.texi:3951 msgid "Edit the service configuration file for @code{guix-daemon}; when using systemd, this is normally @file{/etc/systemd/system/guix-daemon.service}. Add the @option{--substitute-urls} option on the @command{guix-daemon} command line and list the URLs of interest (@pxref{daemon-substitute-urls, @code{guix-daemon --substitute-urls}}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3936 +#: guix-git/doc/guix.texi:3954 #, no-wrap msgid "@dots{} --substitute-urls='https://guix.example.org @value{SUBSTITUTE-URLS}'\n" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:3940 +#: guix-git/doc/guix.texi:3958 msgid "Restart the daemon. For systemd, it goes like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3944 +#: guix-git/doc/guix.texi:3962 #, no-wrap msgid "" "systemctl daemon-reload\n" @@ -9961,651 +10037,651 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:3948 +#: guix-git/doc/guix.texi:3966 msgid "Authorize the key of the new server (@pxref{Invoking guix archive}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3951 +#: guix-git/doc/guix.texi:3969 #, no-wrap msgid "guix archive --authorize < key.pub\n" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:3955 +#: guix-git/doc/guix.texi:3973 msgid "Again this assumes @file{key.pub} contains the public key that @code{guix.example.org} uses to sign substitutes." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3964 +#: guix-git/doc/guix.texi:3982 msgid "Now you're all set! Substitutes will be preferably taken from @code{https://guix.example.org}, using @code{@value{SUBSTITUTE-SERVER-1}} then @code{@value{SUBSTITUTE-SERVER-2}} as fallback options. Of course you can list as many substitute servers as you like, with the caveat that substitute lookup can be slowed down if too many servers need to be contacted." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3968 +#: guix-git/doc/guix.texi:3986 msgid "Note that there are also situations where one may want to add the URL of a substitute server @emph{without} authorizing its key. @xref{Substitute Authentication}, to understand this fine point." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3972 +#: guix-git/doc/guix.texi:3990 #, no-wrap msgid "digital signatures" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3976 +#: guix-git/doc/guix.texi:3994 msgid "Guix detects and raises an error when attempting to use a substitute that has been tampered with. Likewise, it ignores substitutes that are not signed, or that are not signed by one of the keys listed in the ACL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3982 +#: guix-git/doc/guix.texi:4000 msgid "There is one exception though: if an unauthorized server provides substitutes that are @emph{bit-for-bit identical} to those provided by an authorized server, then the unauthorized server becomes eligible for downloads. For example, assume we have chosen two substitute servers with this option:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3985 +#: guix-git/doc/guix.texi:4003 #, no-wrap msgid "--substitute-urls=\"https://a.example.org https://b.example.org\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3996 +#: guix-git/doc/guix.texi:4014 msgid "If the ACL contains only the key for @samp{b.example.org}, and if @samp{a.example.org} happens to serve the @emph{exact same} substitutes, then Guix will download substitutes from @samp{a.example.org} because it comes first in the list and can be considered a mirror of @samp{b.example.org}. In practice, independent build machines usually produce the same binaries, thanks to bit-reproducible builds (see below)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4003 +#: guix-git/doc/guix.texi:4021 msgid "When using HTTPS, the server's X.509 certificate is @emph{not} validated (in other words, the server is not authenticated), contrary to what HTTPS clients such as Web browsers usually do. This is because Guix authenticates substitute information itself, as explained above, which is what we care about (whereas X.509 certificates are about authenticating bindings between domain names and public keys)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4015 +#: guix-git/doc/guix.texi:4033 msgid "Substitutes are downloaded over HTTP or HTTPS@. The @env{http_proxy} and @env{https_proxy} environment variables can be set in the environment of @command{guix-daemon} and are honored for downloads of substitutes. Note that the value of those environment variables in the environment where @command{guix build}, @command{guix package}, and other client commands are run has @emph{absolutely no effect}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4024 +#: guix-git/doc/guix.texi:4042 msgid "Even when a substitute for a derivation is available, sometimes the substitution attempt will fail. This can happen for a variety of reasons: the substitute server might be offline, the substitute may recently have been deleted, the connection might have been interrupted, etc." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4038 +#: guix-git/doc/guix.texi:4056 msgid "When substitutes are enabled and a substitute for a derivation is available, but the substitution attempt fails, Guix will attempt to build the derivation locally depending on whether or not @option{--fallback} was given (@pxref{fallback-option,, common build option @option{--fallback}}). Specifically, if @option{--fallback} was omitted, then no local build will be performed, and the derivation is considered to have failed. However, if @option{--fallback} was given, then Guix will attempt to build the derivation locally, and the success or failure of the derivation depends on the success or failure of the local build. Note that when substitutes are disabled or no substitute is available for the derivation in question, a local build will @emph{always} be performed, regardless of whether or not @option{--fallback} was given." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4043 +#: guix-git/doc/guix.texi:4061 msgid "To get an idea of how many substitutes are available right now, you can try running the @command{guix weather} command (@pxref{Invoking guix weather}). This command provides statistics on the substitutes provided by a server." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4047 +#: guix-git/doc/guix.texi:4065 #, no-wrap msgid "trust, of pre-built binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4057 +#: guix-git/doc/guix.texi:4075 msgid "Today, each individual's control over their own computing is at the mercy of institutions, corporations, and groups with enough power and determination to subvert the computing infrastructure and exploit its weaknesses. While using substitutes can be convenient, we encourage users to also build on their own, or even run their own build farm, such that the project run substitute servers are less of an interesting target. One way to help is by publishing the software you build using @command{guix publish} so that others have one more choice of server to download substitutes from (@pxref{Invoking guix publish})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4069 +#: guix-git/doc/guix.texi:4087 msgid "Guix has the foundations to maximize build reproducibility (@pxref{Features}). In most cases, independent builds of a given package or derivation should yield bit-identical results. Thus, through a diverse set of independent package builds, we can strengthen the integrity of our systems. The @command{guix challenge} command aims to help users assess substitute servers, and to assist developers in finding out about non-deterministic package builds (@pxref{Invoking guix challenge}). Similarly, the @option{--check} option of @command{guix build} allows users to check whether previously-installed substitutes are genuine by rebuilding them locally (@pxref{build-check, @command{guix build --check}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4073 +#: guix-git/doc/guix.texi:4091 msgid "In the future, we want Guix to have support to publish and retrieve binaries to/from other users, in a peer-to-peer fashion. If you would like to discuss this project, join us on @email{guix-devel@@gnu.org}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4077 +#: guix-git/doc/guix.texi:4095 #, no-wrap msgid "multiple-output packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4078 +#: guix-git/doc/guix.texi:4096 #, no-wrap msgid "package outputs" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4079 +#: guix-git/doc/guix.texi:4097 #, no-wrap msgid "outputs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4089 +#: guix-git/doc/guix.texi:4107 msgid "Often, packages defined in Guix have a single @dfn{output}---i.e., the source package leads to exactly one directory in the store. When running @command{guix install glibc}, one installs the default output of the GNU libc package; the default output is called @code{out}, but its name can be omitted as shown in this command. In this particular case, the default output of @code{glibc} contains all the C header files, shared libraries, static libraries, Info documentation, and other supporting files." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4097 +#: guix-git/doc/guix.texi:4115 msgid "Sometimes it is more appropriate to separate the various types of files produced from a single source package into separate outputs. For instance, the GLib C library (used by GTK+ and related packages) installs more than 20 MiB of reference documentation as HTML pages. To save space for users who do not need it, the documentation goes to a separate output, called @code{doc}. To install the main GLib output, which contains everything but the documentation, one would run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4100 +#: guix-git/doc/guix.texi:4118 #, no-wrap msgid "guix install glib\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4102 guix-git/doc/guix.texi:36368 -#: guix-git/doc/guix.texi:36425 +#: guix-git/doc/guix.texi:4120 guix-git/doc/guix.texi:36858 +#: guix-git/doc/guix.texi:36915 #, no-wrap msgid "documentation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4104 +#: guix-git/doc/guix.texi:4122 msgid "The command to install its documentation is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4107 +#: guix-git/doc/guix.texi:4125 #, no-wrap msgid "guix install glib:doc\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4118 +#: guix-git/doc/guix.texi:4136 msgid "Some packages install programs with different ``dependency footprints''. For instance, the WordNet package installs both command-line tools and graphical user interfaces (GUIs). The former depend solely on the C library, whereas the latter depend on Tcl/Tk and the underlying X libraries. In this case, we leave the command-line tools in the default output, whereas the GUIs are in a separate output. This allows users who do not need the GUIs to save space. The @command{guix size} command can help find out about such situations (@pxref{Invoking guix size}). @command{guix graph} can also be helpful (@pxref{Invoking guix graph})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4126 +#: guix-git/doc/guix.texi:4144 msgid "There are several such multiple-output packages in the GNU distribution. Other conventional output names include @code{lib} for libraries and possibly header files, @code{bin} for stand-alone programs, and @code{debug} for debugging information (@pxref{Installing Debugging Files}). The outputs of a packages are listed in the third column of the output of @command{guix package --list-available} (@pxref{Invoking guix package})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4129 +#: guix-git/doc/guix.texi:4147 #, no-wrap msgid "Invoking @command{guix gc}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4131 +#: guix-git/doc/guix.texi:4149 #, no-wrap msgid "garbage collector" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4132 +#: guix-git/doc/guix.texi:4150 #, no-wrap msgid "disk space" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4138 +#: guix-git/doc/guix.texi:4156 msgid "Packages that are installed, but not used, may be @dfn{garbage-collected}. The @command{guix gc} command allows users to explicitly run the garbage collector to reclaim space from the @file{/gnu/store} directory. It is the @emph{only} way to remove files from @file{/gnu/store}---removing files or directories manually may break it beyond repair!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4149 +#: guix-git/doc/guix.texi:4167 msgid "The garbage collector has a set of known @dfn{roots}: any file under @file{/gnu/store} reachable from a root is considered @dfn{live} and cannot be deleted; any other file is considered @dfn{dead} and may be deleted. The set of garbage collector roots (``GC roots'' for short) includes default user profiles; by default, the symlinks under @file{/var/guix/gcroots} represent these GC roots. New GC roots can be added with @command{guix build --root}, for example (@pxref{Invoking guix build}). The @command{guix gc --list-roots} command lists them." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4155 +#: guix-git/doc/guix.texi:4173 msgid "Prior to running @code{guix gc --collect-garbage} to make space, it is often useful to remove old generations from user profiles; that way, old package builds referenced by those generations can be reclaimed. This is achieved by running @code{guix package --delete-generations} (@pxref{Invoking guix package})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4159 +#: guix-git/doc/guix.texi:4177 msgid "Our recommendation is to run a garbage collection periodically, or when you are short on disk space. For instance, to guarantee that at least 5@tie{}GB are available on your disk, simply run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4162 +#: guix-git/doc/guix.texi:4180 #, no-wrap msgid "guix gc -F 5G\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4171 +#: guix-git/doc/guix.texi:4189 msgid "It is perfectly safe to run as a non-interactive periodic job (@pxref{Scheduled Job Execution}, for how to set up such a job). Running @command{guix gc} with no arguments will collect as much garbage as it can, but that is often inconvenient: you may find yourself having to rebuild or re-download software that is ``dead'' from the GC viewpoint but that is necessary to build other pieces of software---e.g., the compiler tool chain." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4177 +#: guix-git/doc/guix.texi:4195 msgid "The @command{guix gc} command has three modes of operation: it can be used to garbage-collect any dead files (the default), to delete specific files (the @option{--delete} option), to print garbage-collector information, or for more advanced queries. The garbage collection options are as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4179 +#: guix-git/doc/guix.texi:4197 #, no-wrap msgid "--collect-garbage[=@var{min}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4180 +#: guix-git/doc/guix.texi:4198 #, no-wrap msgid "-C [@var{min}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4184 +#: guix-git/doc/guix.texi:4202 msgid "Collect garbage---i.e., unreachable @file{/gnu/store} files and sub-directories. This is the default operation when no option is specified." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4189 +#: guix-git/doc/guix.texi:4207 msgid "When @var{min} is given, stop once @var{min} bytes have been collected. @var{min} may be a number of bytes, or it may include a unit as a suffix, such as @code{MiB} for mebibytes and @code{GB} for gigabytes (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4191 +#: guix-git/doc/guix.texi:4209 msgid "When @var{min} is omitted, collect all the garbage." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4192 +#: guix-git/doc/guix.texi:4210 #, no-wrap msgid "--free-space=@var{free}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4193 +#: guix-git/doc/guix.texi:4211 #, no-wrap msgid "-F @var{free}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4197 +#: guix-git/doc/guix.texi:4215 msgid "Collect garbage until @var{free} space is available under @file{/gnu/store}, if possible; @var{free} denotes storage space, such as @code{500MiB}, as described above." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4200 +#: guix-git/doc/guix.texi:4218 msgid "When @var{free} or more is already available in @file{/gnu/store}, do nothing and exit immediately." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4201 +#: guix-git/doc/guix.texi:4219 #, no-wrap msgid "--delete-generations[=@var{duration}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4202 +#: guix-git/doc/guix.texi:4220 #, no-wrap msgid "-d [@var{duration}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4206 +#: guix-git/doc/guix.texi:4224 msgid "Before starting the garbage collection process, delete all the generations older than @var{duration}, for all the user profiles; when run as root, this applies to all the profiles @emph{of all the users}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4210 +#: guix-git/doc/guix.texi:4228 msgid "For example, this command deletes all the generations of all your profiles that are older than 2 months (except generations that are current), and then proceeds to free space until at least 10 GiB are available:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4213 +#: guix-git/doc/guix.texi:4231 #, no-wrap msgid "guix gc -d 2m -F 10G\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4215 +#: guix-git/doc/guix.texi:4233 #, no-wrap msgid "--delete" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4216 guix-git/doc/guix.texi:5740 +#: guix-git/doc/guix.texi:4234 guix-git/doc/guix.texi:5758 #, no-wrap msgid "-D" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4220 +#: guix-git/doc/guix.texi:4238 msgid "Attempt to delete all the store files and directories specified as arguments. This fails if some of the files are not in the store, or if they are still live." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4221 +#: guix-git/doc/guix.texi:4239 #, no-wrap msgid "--list-failures" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4223 +#: guix-git/doc/guix.texi:4241 msgid "List store items corresponding to cached build failures." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4227 +#: guix-git/doc/guix.texi:4245 msgid "This prints nothing unless the daemon was started with @option{--cache-failures} (@pxref{Invoking guix-daemon, @option{--cache-failures}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4228 +#: guix-git/doc/guix.texi:4246 #, no-wrap msgid "--list-roots" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4231 +#: guix-git/doc/guix.texi:4249 msgid "List the GC roots owned by the user; when run as root, list @emph{all} the GC roots." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4232 +#: guix-git/doc/guix.texi:4250 #, no-wrap msgid "--list-busy" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4235 +#: guix-git/doc/guix.texi:4253 msgid "List store items in use by currently running processes. These store items are effectively considered GC roots: they cannot be deleted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4236 +#: guix-git/doc/guix.texi:4254 #, no-wrap msgid "--clear-failures" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4238 +#: guix-git/doc/guix.texi:4256 msgid "Remove the specified store items from the failed-build cache." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4241 +#: guix-git/doc/guix.texi:4259 msgid "Again, this option only makes sense when the daemon is started with @option{--cache-failures}. Otherwise, it does nothing." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4242 +#: guix-git/doc/guix.texi:4260 #, no-wrap msgid "--list-dead" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4245 +#: guix-git/doc/guix.texi:4263 msgid "Show the list of dead files and directories still present in the store---i.e., files and directories no longer reachable from any root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4246 +#: guix-git/doc/guix.texi:4264 #, no-wrap msgid "--list-live" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4248 +#: guix-git/doc/guix.texi:4266 msgid "Show the list of live store files and directories." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4252 +#: guix-git/doc/guix.texi:4270 msgid "In addition, the references among existing store files can be queried:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4255 +#: guix-git/doc/guix.texi:4273 #, no-wrap msgid "--references" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4256 +#: guix-git/doc/guix.texi:4274 #, no-wrap msgid "--referrers" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4257 guix-git/doc/guix.texi:13205 +#: guix-git/doc/guix.texi:4275 guix-git/doc/guix.texi:13562 #, no-wrap msgid "package dependencies" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4260 +#: guix-git/doc/guix.texi:4278 msgid "List the references (respectively, the referrers) of store files given as arguments." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4261 +#: guix-git/doc/guix.texi:4279 #, no-wrap msgid "--requisites" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4262 guix-git/doc/guix.texi:6501 +#: guix-git/doc/guix.texi:4280 guix-git/doc/guix.texi:6544 #, no-wrap msgid "-R" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4263 guix-git/doc/guix.texi:13061 -#: guix-git/doc/guix.texi:13089 guix-git/doc/guix.texi:13170 +#: guix-git/doc/guix.texi:4281 guix-git/doc/guix.texi:13418 +#: guix-git/doc/guix.texi:13446 guix-git/doc/guix.texi:13527 #, no-wrap msgid "closure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4268 +#: guix-git/doc/guix.texi:4286 msgid "List the requisites of the store files passed as arguments. Requisites include the store files themselves, their references, and the references of these, recursively. In other words, the returned list is the @dfn{transitive closure} of the store files." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4272 +#: guix-git/doc/guix.texi:4290 msgid "@xref{Invoking guix size}, for a tool to profile the size of the closure of an element. @xref{Invoking guix graph}, for a tool to visualize the graph of references." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4273 +#: guix-git/doc/guix.texi:4291 #, no-wrap msgid "--derivers" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4274 guix-git/doc/guix.texi:6815 -#: guix-git/doc/guix.texi:12917 guix-git/doc/guix.texi:13314 +#: guix-git/doc/guix.texi:4292 guix-git/doc/guix.texi:6858 +#: guix-git/doc/guix.texi:13274 guix-git/doc/guix.texi:13671 #, no-wrap msgid "derivation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4277 +#: guix-git/doc/guix.texi:4295 msgid "Return the derivation(s) leading to the given store items (@pxref{Derivations})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4279 +#: guix-git/doc/guix.texi:4297 msgid "For example, this command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4282 +#: guix-git/doc/guix.texi:4300 #, no-wrap msgid "guix gc --derivers $(guix package -I ^emacs$ | cut -f4)\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4287 +#: guix-git/doc/guix.texi:4305 msgid "returns the @file{.drv} file(s) leading to the @code{emacs} package installed in your profile." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4291 +#: guix-git/doc/guix.texi:4309 msgid "Note that there may be zero matching @file{.drv} files, for instance because these files have been garbage-collected. There can also be more than one matching @file{.drv} due to fixed-output derivations." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4295 +#: guix-git/doc/guix.texi:4313 msgid "Lastly, the following options allow you to check the integrity of the store and to control disk usage." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4298 +#: guix-git/doc/guix.texi:4316 #, no-wrap msgid "--verify[=@var{options}]" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4299 +#: guix-git/doc/guix.texi:4317 #, no-wrap msgid "integrity, of the store" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4300 +#: guix-git/doc/guix.texi:4318 #, no-wrap msgid "integrity checking" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4302 +#: guix-git/doc/guix.texi:4320 msgid "Verify the integrity of the store." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4305 +#: guix-git/doc/guix.texi:4323 msgid "By default, make sure that all the store items marked as valid in the database of the daemon actually exist in @file{/gnu/store}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4308 +#: guix-git/doc/guix.texi:4326 msgid "When provided, @var{options} must be a comma-separated list containing one or more of @code{contents} and @code{repair}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4314 +#: guix-git/doc/guix.texi:4332 msgid "When passing @option{--verify=contents}, the daemon computes the content hash of each store item and compares it against its hash in the database. Hash mismatches are reported as data corruptions. Because it traverses @emph{all the files in the store}, this command can take a long time, especially on systems with a slow disk drive." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4315 +#: guix-git/doc/guix.texi:4333 #, no-wrap msgid "repairing the store" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4316 guix-git/doc/guix.texi:11564 +#: guix-git/doc/guix.texi:4334 guix-git/doc/guix.texi:11878 #, no-wrap msgid "corruption, recovering from" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4324 +#: guix-git/doc/guix.texi:4342 msgid "Using @option{--verify=repair} or @option{--verify=contents,repair} causes the daemon to try to repair corrupt store items by fetching substitutes for them (@pxref{Substitutes}). Because repairing is not atomic, and thus potentially dangerous, it is available only to the system administrator. A lightweight alternative, when you know exactly which items in the store are corrupt, is @command{guix build --repair} (@pxref{Invoking guix build})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4325 +#: guix-git/doc/guix.texi:4343 #, no-wrap msgid "--optimize" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4329 +#: guix-git/doc/guix.texi:4347 msgid "Optimize the store by hard-linking identical files---this is @dfn{deduplication}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4335 +#: guix-git/doc/guix.texi:4353 msgid "The daemon performs deduplication after each successful build or archive import, unless it was started with @option{--disable-deduplication} (@pxref{Invoking guix-daemon, @option{--disable-deduplication}}). Thus, this option is primarily useful when the daemon was running with @option{--disable-deduplication}." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4339 +#: guix-git/doc/guix.texi:4357 #, no-wrap msgid "Invoking @command{guix pull}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4341 +#: guix-git/doc/guix.texi:4359 #, no-wrap msgid "upgrading Guix" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4342 +#: guix-git/doc/guix.texi:4360 #, no-wrap msgid "updating Guix" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:4343 +#: guix-git/doc/guix.texi:4361 #, no-wrap msgid "guix pull" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4344 +#: guix-git/doc/guix.texi:4362 #, no-wrap msgid "pull" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4345 +#: guix-git/doc/guix.texi:4363 #, no-wrap msgid "security, @command{guix pull}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4346 +#: guix-git/doc/guix.texi:4364 #, no-wrap msgid "authenticity, of code obtained with @command{guix pull}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4356 +#: guix-git/doc/guix.texi:4374 msgid "Packages are installed or upgraded to the latest version available in the distribution currently available on your local machine. To update that distribution, along with the Guix tools, you must run @command{guix pull}: the command downloads the latest Guix source code and package descriptions, and deploys it. Source code is downloaded from a @uref{https://git-scm.com, Git} repository, by default the official GNU@tie{}Guix repository, though this can be customized. @command{guix pull} ensures that the code it downloads is @emph{authentic} by verifying that commits are signed by Guix developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4359 +#: guix-git/doc/guix.texi:4377 msgid "Specifically, @command{guix pull} downloads code from the @dfn{channels} (@pxref{Channels}) specified by one of the followings, in this order:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4363 +#: guix-git/doc/guix.texi:4381 msgid "the @option{--channels} option;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4365 +#: guix-git/doc/guix.texi:4383 msgid "the user's @file{~/.config/guix/channels.scm} file;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4367 +#: guix-git/doc/guix.texi:4385 msgid "the system-wide @file{/etc/guix/channels.scm} file;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4370 +#: guix-git/doc/guix.texi:4388 msgid "the built-in default channels specified in the @code{%default-channels} variable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4377 +#: guix-git/doc/guix.texi:4395 msgid "On completion, @command{guix package} will use packages and package versions from this just-retrieved copy of Guix. Not only that, but all the Guix commands and Scheme modules will also be taken from that latest version. New @command{guix} sub-commands added by the update also become available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4383 +#: guix-git/doc/guix.texi:4401 msgid "Any user can update their Guix copy using @command{guix pull}, and the effect is limited to the user who ran @command{guix pull}. For instance, when user @code{root} runs @command{guix pull}, this has no effect on the version of Guix that user @code{alice} sees, and vice versa." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4389 +#: guix-git/doc/guix.texi:4407 msgid "The result of running @command{guix pull} is a @dfn{profile} available under @file{~/.config/guix/current} containing the latest Guix. Thus, make sure to add it to the beginning of your search path so that you use the latest version, and similarly for the Info manual (@pxref{Documentation}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4393 +#: guix-git/doc/guix.texi:4411 #, no-wrap msgid "" "export PATH=\"$HOME/.config/guix/current/bin:$PATH\"\n" @@ -10613,12 +10689,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4397 +#: guix-git/doc/guix.texi:4415 msgid "The @option{--list-generations} or @option{-l} option lists past generations produced by @command{guix pull}, along with details about their provenance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4405 +#: guix-git/doc/guix.texi:4423 #, no-wrap msgid "" "$ guix pull -l\n" @@ -10631,7 +10707,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4415 +#: guix-git/doc/guix.texi:4433 #, no-wrap msgid "" "Generation 2\tJun 11 2018 11:02:49\n" @@ -10647,7 +10723,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4423 +#: guix-git/doc/guix.texi:4441 #, no-wrap msgid "" "Generation 3\tJun 13 2018 23:31:07\t(current)\n" @@ -10660,17 +10736,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4427 +#: guix-git/doc/guix.texi:4445 msgid "@xref{Invoking guix describe, @command{guix describe}}, for other ways to describe the current status of Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4432 +#: guix-git/doc/guix.texi:4450 msgid "This @code{~/.config/guix/current} profile works exactly like the profiles created by @command{guix package} (@pxref{Invoking guix package}). That is, you can list generations, roll back to the previous generation---i.e., the previous Guix---and so on:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4438 +#: guix-git/doc/guix.texi:4456 #, no-wrap msgid "" "$ guix pull --roll-back\n" @@ -10680,12 +10756,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4442 +#: guix-git/doc/guix.texi:4460 msgid "You can also use @command{guix package} (@pxref{Invoking guix package}) to manage the profile by naming it explicitly:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4447 +#: guix-git/doc/guix.texi:4465 #, no-wrap msgid "" "$ guix package -p ~/.config/guix/current --roll-back\n" @@ -10695,354 +10771,355 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4451 +#: guix-git/doc/guix.texi:4469 msgid "The @command{guix pull} command is usually invoked with no arguments, but it supports the following options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4453 guix-git/doc/guix.texi:4611 +#: guix-git/doc/guix.texi:4471 guix-git/doc/guix.texi:4629 #, no-wrap msgid "--url=@var{url}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4454 guix-git/doc/guix.texi:4612 +#: guix-git/doc/guix.texi:4472 guix-git/doc/guix.texi:4630 #, no-wrap msgid "--commit=@var{commit}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4455 guix-git/doc/guix.texi:4613 +#: guix-git/doc/guix.texi:4473 guix-git/doc/guix.texi:4631 #, no-wrap msgid "--branch=@var{branch}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4459 +#: guix-git/doc/guix.texi:4477 msgid "Download code for the @code{guix} channel from the specified @var{url}, at the given @var{commit} (a valid Git commit ID represented as a hexadecimal string), or @var{branch}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4460 guix-git/doc/guix.texi:5057 +#: guix-git/doc/guix.texi:4478 guix-git/doc/guix.texi:5075 #, no-wrap msgid "@file{channels.scm}, configuration file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4461 guix-git/doc/guix.texi:5058 +#: guix-git/doc/guix.texi:4479 guix-git/doc/guix.texi:5076 #, no-wrap msgid "configuration file for channels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4465 +#: guix-git/doc/guix.texi:4483 msgid "These options are provided for convenience, but you can also specify your configuration in the @file{~/.config/guix/channels.scm} file or using the @option{--channels} option (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4466 guix-git/doc/guix.texi:4618 +#: guix-git/doc/guix.texi:4484 guix-git/doc/guix.texi:4636 #, no-wrap msgid "--channels=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4467 guix-git/doc/guix.texi:4619 +#: guix-git/doc/guix.texi:4485 guix-git/doc/guix.texi:4637 #, no-wrap msgid "-C @var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4473 +#: guix-git/doc/guix.texi:4491 msgid "Read the list of channels from @var{file} instead of @file{~/.config/guix/channels.scm} or @file{/etc/guix/channels.scm}. @var{file} must contain Scheme code that evaluates to a list of channel objects. @xref{Channels}, for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4474 +#: guix-git/doc/guix.texi:4492 #, no-wrap msgid "channel news" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4475 +#: guix-git/doc/guix.texi:4493 #, no-wrap msgid "--news" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4476 guix-git/doc/guix.texi:5864 -#: guix-git/doc/guix.texi:6247 guix-git/doc/guix.texi:35304 +#: guix-git/doc/guix.texi:4494 guix-git/doc/guix.texi:5877 +#: guix-git/doc/guix.texi:6290 guix-git/doc/guix.texi:35748 #, no-wrap msgid "-N" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4480 +#: guix-git/doc/guix.texi:4498 msgid "Display the list of packages added or upgraded since the previous generation, as well as, occasionally, news written by channel authors for their users (@pxref{Channels, Writing Channel News})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4484 +#: guix-git/doc/guix.texi:4502 msgid "The package information is the same as displayed upon @command{guix pull} completion, but without ellipses; it is also similar to the output of @command{guix pull -l} for the last generation (see below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4491 +#: guix-git/doc/guix.texi:4509 msgid "List all the generations of @file{~/.config/guix/current} or, if @var{pattern} is provided, the subset of generations that match @var{pattern}. The syntax of @var{pattern} is the same as with @code{guix package --list-generations} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4498 +#: guix-git/doc/guix.texi:4516 msgid "Roll back to the previous @dfn{generation} of @file{~/.config/guix/current}---i.e., undo the last transaction." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4522 +#: guix-git/doc/guix.texi:4540 msgid "If the current generation matches, it is @emph{not} deleted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4528 +#: guix-git/doc/guix.texi:4546 msgid "@xref{Invoking guix describe}, for a way to display information about the current generation only." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4532 +#: guix-git/doc/guix.texi:4550 msgid "Use @var{profile} instead of @file{~/.config/guix/current}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4533 guix-git/doc/guix.texi:10893 -#: guix-git/doc/guix.texi:12836 +#: guix-git/doc/guix.texi:4551 guix-git/doc/guix.texi:11207 +#: guix-git/doc/guix.texi:13162 #, no-wrap msgid "--dry-run" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4534 guix-git/doc/guix.texi:10894 -#: guix-git/doc/guix.texi:12837 guix-git/doc/guix.texi:13043 +#: guix-git/doc/guix.texi:4552 guix-git/doc/guix.texi:11208 +#: guix-git/doc/guix.texi:13163 guix-git/doc/guix.texi:13400 #, no-wrap msgid "-n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4537 +#: guix-git/doc/guix.texi:4555 msgid "Show which channel commit(s) would be used and what would be built or substituted but do not actually do it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4538 guix-git/doc/guix.texi:35323 +#: guix-git/doc/guix.texi:4556 guix-git/doc/guix.texi:35767 +#: guix-git/doc/guix.texi:38198 #, no-wrap msgid "--allow-downgrades" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4541 +#: guix-git/doc/guix.texi:4559 msgid "Allow pulling older or unrelated revisions of channels than those currently in use." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4542 +#: guix-git/doc/guix.texi:4560 #, no-wrap msgid "downgrade attacks, protection against" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4547 +#: guix-git/doc/guix.texi:4565 msgid "By default, @command{guix pull} protects against so-called ``downgrade attacks'' whereby the Git repository of a channel would be reset to an earlier or unrelated revision of itself, potentially leading you to install older, known-vulnerable versions of software packages." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4551 guix-git/doc/guix.texi:35337 +#: guix-git/doc/guix.texi:4569 guix-git/doc/guix.texi:35781 msgid "Make sure you understand its security implications before using @option{--allow-downgrades}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4553 +#: guix-git/doc/guix.texi:4571 #, no-wrap msgid "--disable-authentication" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4555 +#: guix-git/doc/guix.texi:4573 msgid "Allow pulling channel code without authenticating it." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4556 guix-git/doc/guix.texi:5203 +#: guix-git/doc/guix.texi:4574 guix-git/doc/guix.texi:5221 #, no-wrap msgid "authentication, of channel code" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4561 +#: guix-git/doc/guix.texi:4579 msgid "By default, @command{guix pull} authenticates code downloaded from channels by verifying that its commits are signed by authorized developers, and raises an error if this is not the case. This option instructs it to not perform any such verification." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4565 +#: guix-git/doc/guix.texi:4583 msgid "Make sure you understand its security implications before using @option{--disable-authentication}." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4568 guix-git/doc/guix.texi:5847 -#: guix-git/doc/guix.texi:6230 guix-git/doc/guix.texi:6630 -#: guix-git/doc/guix.texi:11506 guix-git/doc/guix.texi:13188 -#: guix-git/doc/guix.texi:13453 guix-git/doc/guix.texi:14130 -#: guix-git/doc/guix.texi:35252 +#: guix-git/doc/guix.texi:4586 guix-git/doc/guix.texi:5860 +#: guix-git/doc/guix.texi:6273 guix-git/doc/guix.texi:6673 +#: guix-git/doc/guix.texi:11820 guix-git/doc/guix.texi:13545 +#: guix-git/doc/guix.texi:13810 guix-git/doc/guix.texi:14487 +#: guix-git/doc/guix.texi:35696 #, no-wrap msgid "-s @var{system}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4571 guix-git/doc/guix.texi:6633 +#: guix-git/doc/guix.texi:4589 guix-git/doc/guix.texi:6676 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of the system type of the build host." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4575 +#: guix-git/doc/guix.texi:4593 msgid "Use the bootstrap Guile to build the latest Guix. This option is only useful to Guix developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4581 +#: guix-git/doc/guix.texi:4599 msgid "The @dfn{channel} mechanism allows you to instruct @command{guix pull} which repository and branch to pull from, as well as @emph{additional} repositories containing package modules that should be deployed. @xref{Channels}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4584 +#: guix-git/doc/guix.texi:4602 msgid "In addition, @command{guix pull} supports all the common build options (@pxref{Common Build Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4586 +#: guix-git/doc/guix.texi:4604 #, no-wrap msgid "Invoking @command{guix time-machine}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:4588 +#: guix-git/doc/guix.texi:4606 #, no-wrap msgid "guix time-machine" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4589 guix-git/doc/guix.texi:5161 +#: guix-git/doc/guix.texi:4607 guix-git/doc/guix.texi:5179 #, no-wrap msgid "pinning, channels" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4590 guix-git/doc/guix.texi:4772 -#: guix-git/doc/guix.texi:5162 +#: guix-git/doc/guix.texi:4608 guix-git/doc/guix.texi:4790 +#: guix-git/doc/guix.texi:5180 #, no-wrap msgid "replicating Guix" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4591 guix-git/doc/guix.texi:5163 +#: guix-git/doc/guix.texi:4609 guix-git/doc/guix.texi:5181 #, no-wrap msgid "reproducibility, of Guix" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4599 +#: guix-git/doc/guix.texi:4617 msgid "The @command{guix time-machine} command provides access to other revisions of Guix, for example to install older versions of packages, or to reproduce a computation in an identical environment. The revision of Guix to be used is defined by a commit or by a channel description file created by @command{guix describe} (@pxref{Invoking guix describe})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4601 guix-git/doc/guix.texi:5623 -#: guix-git/doc/guix.texi:5974 guix-git/doc/guix.texi:6753 -#: guix-git/doc/guix.texi:10689 guix-git/doc/guix.texi:10813 -#: guix-git/doc/guix.texi:11797 guix-git/doc/guix.texi:11892 -#: guix-git/doc/guix.texi:12825 guix-git/doc/guix.texi:13018 -#: guix-git/doc/guix.texi:13511 guix-git/doc/guix.texi:13884 -#: guix-git/doc/guix.texi:13973 guix-git/doc/guix.texi:14012 -#: guix-git/doc/guix.texi:14109 +#: guix-git/doc/guix.texi:4619 guix-git/doc/guix.texi:5641 +#: guix-git/doc/guix.texi:6011 guix-git/doc/guix.texi:6796 +#: guix-git/doc/guix.texi:11003 guix-git/doc/guix.texi:11127 +#: guix-git/doc/guix.texi:12111 guix-git/doc/guix.texi:12207 +#: guix-git/doc/guix.texi:13148 guix-git/doc/guix.texi:13375 +#: guix-git/doc/guix.texi:13868 guix-git/doc/guix.texi:14241 +#: guix-git/doc/guix.texi:14330 guix-git/doc/guix.texi:14369 +#: guix-git/doc/guix.texi:14466 msgid "The general syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4604 +#: guix-git/doc/guix.texi:4622 #, no-wrap msgid "guix time-machine @var{options}@dots{} -- @var{command} @var {arg}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4609 +#: guix-git/doc/guix.texi:4627 msgid "where @var{command} and @var{arg}@dots{} are passed unmodified to the @command{guix} command of the specified revision. The @var{options} that define this revision are the same as for @command{guix pull} (@pxref{Invoking guix pull}):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4617 +#: guix-git/doc/guix.texi:4635 msgid "Use the @code{guix} channel from the specified @var{url}, at the given @var{commit} (a valid Git commit ID represented as a hexadecimal string), or @var{branch}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4623 +#: guix-git/doc/guix.texi:4641 msgid "Read the list of channels from @var{file}. @var{file} must contain Scheme code that evaluates to a list of channel objects. @xref{Channels} for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4627 +#: guix-git/doc/guix.texi:4645 msgid "As for @command{guix pull}, the absence of any options means that the latest commit on the master branch will be used. The command" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4630 +#: guix-git/doc/guix.texi:4648 #, no-wrap msgid "guix time-machine -- build hello\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4635 +#: guix-git/doc/guix.texi:4653 msgid "will thus build the package @code{hello} as defined in the master branch, which is in general a newer revision of Guix than you have installed. Time travel works in both directions!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4639 +#: guix-git/doc/guix.texi:4657 msgid "Note that @command{guix time-machine} can trigger builds of channels and their dependencies, and these are controlled by the standard build options (@pxref{Common Build Options})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4647 +#: guix-git/doc/guix.texi:4665 msgid "The functionality described here is a ``technology preview'' as of version @value{VERSION}. As such, the interface is subject to change." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4649 guix-git/doc/guix.texi:10726 +#: guix-git/doc/guix.texi:4667 guix-git/doc/guix.texi:11040 #, no-wrap msgid "inferiors" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4650 +#: guix-git/doc/guix.texi:4668 #, no-wrap msgid "composition of Guix revisions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4655 +#: guix-git/doc/guix.texi:4673 msgid "Sometimes you might need to mix packages from the revision of Guix you're currently running with packages available in a different revision of Guix. Guix @dfn{inferiors} allow you to achieve that by composing different Guix revisions in arbitrary ways." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4656 guix-git/doc/guix.texi:4721 +#: guix-git/doc/guix.texi:4674 guix-git/doc/guix.texi:4739 #, no-wrap msgid "inferior packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4662 +#: guix-git/doc/guix.texi:4680 msgid "Technically, an ``inferior'' is essentially a separate Guix process connected to your main Guix process through a REPL (@pxref{Invoking guix repl}). The @code{(guix inferior)} module allows you to create inferiors and to communicate with them. It also provides a high-level interface to browse and manipulate the packages that an inferior provides---@dfn{inferior packages}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4672 +#: guix-git/doc/guix.texi:4690 msgid "When combined with channels (@pxref{Channels}), inferiors provide a simple way to interact with a separate revision of Guix. For example, let's assume you want to install in your profile the current @code{guile} package, along with the @code{guile-json} as it existed in an older revision of Guix---perhaps because the newer @code{guile-json} has an incompatible API and you want to run your code against the old API@. To do that, you could write a manifest for use by @code{guix package --manifest} (@pxref{Invoking guix package}); in that manifest, you would create an inferior for that old Guix revision you care about, and you would look up the @code{guile-json} package in the inferior:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4676 +#: guix-git/doc/guix.texi:4694 #, no-wrap msgid "" "(use-modules (guix inferior) (guix channels)\n" @@ -11051,7 +11128,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4685 +#: guix-git/doc/guix.texi:4703 #, no-wrap msgid "" "(define channels\n" @@ -11066,7 +11143,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4689 +#: guix-git/doc/guix.texi:4707 #, no-wrap msgid "" "(define inferior\n" @@ -11076,7 +11153,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4695 +#: guix-git/doc/guix.texi:4713 #, no-wrap msgid "" ";; Now create a manifest with the current \"guile\" package\n" @@ -11087,186 +11164,186 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4700 +#: guix-git/doc/guix.texi:4718 msgid "On its first run, @command{guix package --manifest} might have to build the channel you specified before it can create the inferior; subsequent runs will be much faster because the Guix revision will be cached." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4703 +#: guix-git/doc/guix.texi:4721 msgid "The @code{(guix inferior)} module provides the following procedures to open an inferior:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4704 +#: guix-git/doc/guix.texi:4722 #, no-wrap msgid "{Scheme Procedure} inferior-for-channels @var{channels} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4709 +#: guix-git/doc/guix.texi:4727 msgid "[#:cache-directory] [#:ttl] Return an inferior for @var{channels}, a list of channels. Use the cache at @var{cache-directory}, where entries can be reclaimed after @var{ttl} seconds. This procedure opens a new connection to the build daemon." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4712 +#: guix-git/doc/guix.texi:4730 msgid "As a side effect, this procedure may build or substitute binaries for @var{channels}, which can take time." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4714 +#: guix-git/doc/guix.texi:4732 #, no-wrap msgid "{Scheme Procedure} open-inferior @var{directory} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4719 +#: guix-git/doc/guix.texi:4737 msgid "[#:command \"bin/guix\"] Open the inferior Guix in @var{directory}, running @code{@var{directory}/@var{command} repl} or equivalent. Return @code{#f} if the inferior could not be launched." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4724 +#: guix-git/doc/guix.texi:4742 msgid "The procedures listed below allow you to obtain and manipulate inferior packages." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4725 +#: guix-git/doc/guix.texi:4743 #, no-wrap msgid "{Scheme Procedure} inferior-packages @var{inferior}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4727 +#: guix-git/doc/guix.texi:4745 msgid "Return the list of packages known to @var{inferior}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4729 +#: guix-git/doc/guix.texi:4747 #, no-wrap msgid "{Scheme Procedure} lookup-inferior-packages @var{inferior} @var{name} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4734 +#: guix-git/doc/guix.texi:4752 msgid "[@var{version}] Return the sorted list of inferior packages matching @var{name} in @var{inferior}, with highest version numbers first. If @var{version} is true, return only packages with a version number prefixed by @var{version}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4736 +#: guix-git/doc/guix.texi:4754 #, no-wrap msgid "{Scheme Procedure} inferior-package? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4738 +#: guix-git/doc/guix.texi:4756 msgid "Return true if @var{obj} is an inferior package." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4740 +#: guix-git/doc/guix.texi:4758 #, no-wrap msgid "{Scheme Procedure} inferior-package-name @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4741 +#: guix-git/doc/guix.texi:4759 #, no-wrap msgid "{Scheme Procedure} inferior-package-version @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4742 +#: guix-git/doc/guix.texi:4760 #, no-wrap msgid "{Scheme Procedure} inferior-package-synopsis @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4743 +#: guix-git/doc/guix.texi:4761 #, no-wrap msgid "{Scheme Procedure} inferior-package-description @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4744 +#: guix-git/doc/guix.texi:4762 #, no-wrap msgid "{Scheme Procedure} inferior-package-home-page @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4745 +#: guix-git/doc/guix.texi:4763 #, no-wrap msgid "{Scheme Procedure} inferior-package-location @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4746 +#: guix-git/doc/guix.texi:4764 #, no-wrap msgid "{Scheme Procedure} inferior-package-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4747 +#: guix-git/doc/guix.texi:4765 #, no-wrap msgid "{Scheme Procedure} inferior-package-native-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4748 +#: guix-git/doc/guix.texi:4766 #, no-wrap msgid "{Scheme Procedure} inferior-package-propagated-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4749 +#: guix-git/doc/guix.texi:4767 #, no-wrap msgid "{Scheme Procedure} inferior-package-transitive-propagated-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4750 +#: guix-git/doc/guix.texi:4768 #, no-wrap msgid "{Scheme Procedure} inferior-package-native-search-paths @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4751 +#: guix-git/doc/guix.texi:4769 #, no-wrap msgid "{Scheme Procedure} inferior-package-transitive-native-search-paths @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4752 +#: guix-git/doc/guix.texi:4770 #, no-wrap msgid "{Scheme Procedure} inferior-package-search-paths @var{package}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4757 +#: guix-git/doc/guix.texi:4775 msgid "These procedures are the counterpart of package record accessors (@pxref{package Reference}). Most of them work by querying the inferior @var{package} comes from, so the inferior must still be live when you call these procedures." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4767 +#: guix-git/doc/guix.texi:4785 msgid "Inferior packages can be used transparently like any other package or file-like object in G-expressions (@pxref{G-Expressions}). They are also transparently handled by the @code{packages->manifest} procedure, which is commonly used in manifests (@pxref{Invoking guix package, the @option{--manifest} option of @command{guix package}}). Thus you can insert an inferior package pretty much anywhere you would insert a regular package: in manifests, in the @code{packages} field of your @code{operating-system} declaration, and so on." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4769 +#: guix-git/doc/guix.texi:4787 #, no-wrap msgid "Invoking @command{guix describe}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4780 +#: guix-git/doc/guix.texi:4798 msgid "Often you may want to answer questions like: ``Which revision of Guix am I using?'' or ``Which channels am I using?'' This is useful information in many situations: if you want to @emph{replicate} an environment on a different machine or user account, if you want to report a bug or to determine what change in the channels you are using caused it, or if you want to record your system state for reproducibility purposes. The @command{guix describe} command answers these questions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4784 +#: guix-git/doc/guix.texi:4802 msgid "When run from a @command{guix pull}ed @command{guix}, @command{guix describe} displays the channel(s) that it was built from, including their repository URL and commit IDs (@pxref{Channels}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4792 +#: guix-git/doc/guix.texi:4810 #, no-wrap msgid "" "$ guix describe\n" @@ -11278,17 +11355,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4801 +#: guix-git/doc/guix.texi:4819 msgid "If you're familiar with the Git version control system, this is similar in spirit to @command{git describe}; the output is also similar to that of @command{guix pull --list-generations}, but limited to the current generation (@pxref{Invoking guix pull, the @option{--list-generations} option}). Because the Git commit ID shown above unambiguously refers to a snapshot of Guix, this information is all it takes to describe the revision of Guix you're using, and also to replicate it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4804 +#: guix-git/doc/guix.texi:4822 msgid "To make it easier to replicate Guix, @command{guix describe} can also be asked to return a list of channels instead of the human-readable description above:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4817 +#: guix-git/doc/guix.texi:4835 #, no-wrap msgid "" "$ guix describe -f channels\n" @@ -11305,190 +11382,190 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4826 +#: guix-git/doc/guix.texi:4844 msgid "You can save this to a file and feed it to @command{guix pull -C} on some other machine or at a later point in time, which will instantiate @emph{this exact Guix revision} (@pxref{Invoking guix pull, the @option{-C} option}). From there on, since you're able to deploy the same revision of Guix, you can just as well @emph{replicate a complete software environment}. We humbly think that this is @emph{awesome}, and we hope you'll like it too!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4829 +#: guix-git/doc/guix.texi:4847 msgid "The details of the options supported by @command{guix describe} are as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4831 guix-git/doc/guix.texi:6431 -#: guix-git/doc/guix.texi:14242 +#: guix-git/doc/guix.texi:4849 guix-git/doc/guix.texi:6474 +#: guix-git/doc/guix.texi:14599 #, no-wrap msgid "--format=@var{format}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4832 guix-git/doc/guix.texi:6432 -#: guix-git/doc/guix.texi:14243 +#: guix-git/doc/guix.texi:4850 guix-git/doc/guix.texi:6475 +#: guix-git/doc/guix.texi:14600 #, no-wrap msgid "-f @var{format}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4834 guix-git/doc/guix.texi:14245 +#: guix-git/doc/guix.texi:4852 guix-git/doc/guix.texi:14602 msgid "Produce output in the specified @var{format}, one of:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4836 +#: guix-git/doc/guix.texi:4854 #, no-wrap msgid "human" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4838 +#: guix-git/doc/guix.texi:4856 msgid "produce human-readable output;" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4838 guix-git/doc/guix.texi:5056 +#: guix-git/doc/guix.texi:4856 guix-git/doc/guix.texi:5074 #, no-wrap msgid "channels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4842 +#: guix-git/doc/guix.texi:4860 msgid "produce a list of channel specifications that can be passed to @command{guix pull -C} or installed as @file{~/.config/guix/channels.scm} (@pxref{Invoking guix pull});" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4842 +#: guix-git/doc/guix.texi:4860 #, no-wrap msgid "channels-sans-intro" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4848 +#: guix-git/doc/guix.texi:4866 msgid "like @code{channels}, but omit the @code{introduction} field; use it to produce a channel specification suitable for Guix version 1.1.0 or earlier---the @code{introduction} field has to do with channel authentication (@pxref{Channels, Channel Authentication}) and is not supported by these older versions;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4848 guix-git/doc/guix.texi:12109 +#: guix-git/doc/guix.texi:4866 guix-git/doc/guix.texi:12424 #, no-wrap msgid "json" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4849 +#: guix-git/doc/guix.texi:4867 #, no-wrap msgid "JSON" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4851 +#: guix-git/doc/guix.texi:4869 msgid "produce a list of channel specifications in JSON format;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4851 guix-git/doc/guix.texi:14247 +#: guix-git/doc/guix.texi:4869 guix-git/doc/guix.texi:14604 #, no-wrap msgid "recutils" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4853 +#: guix-git/doc/guix.texi:4871 msgid "produce a list of channel specifications in Recutils format." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4855 +#: guix-git/doc/guix.texi:4873 #, no-wrap msgid "--list-formats" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4857 +#: guix-git/doc/guix.texi:4875 msgid "Display available formats for @option{--format} option." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4861 +#: guix-git/doc/guix.texi:4879 msgid "Display information about @var{profile}." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4864 +#: guix-git/doc/guix.texi:4882 #, no-wrap msgid "Invoking @command{guix archive}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:4866 +#: guix-git/doc/guix.texi:4884 #, no-wrap msgid "guix archive" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4867 +#: guix-git/doc/guix.texi:4885 #, no-wrap msgid "archive" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4873 +#: guix-git/doc/guix.texi:4891 msgid "The @command{guix archive} command allows users to @dfn{export} files from the store into a single archive, and to later @dfn{import} them on a machine that runs Guix. In particular, it allows store files to be transferred from one machine to the store on another machine." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4877 +#: guix-git/doc/guix.texi:4895 msgid "If you're looking for a way to produce archives in a format suitable for tools other than Guix, @pxref{Invoking guix pack}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4879 +#: guix-git/doc/guix.texi:4897 #, no-wrap msgid "exporting store items" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4881 +#: guix-git/doc/guix.texi:4899 msgid "To export store files as an archive to standard output, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4884 +#: guix-git/doc/guix.texi:4902 #, no-wrap msgid "guix archive --export @var{options} @var{specifications}...\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4891 +#: guix-git/doc/guix.texi:4909 msgid "@var{specifications} may be either store file names or package specifications, as for @command{guix package} (@pxref{Invoking guix package}). For instance, the following command creates an archive containing the @code{gui} output of the @code{git} package and the main output of @code{emacs}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4894 +#: guix-git/doc/guix.texi:4912 #, no-wrap msgid "guix archive --export git:gui /gnu/store/...-emacs-24.3 > great.nar\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4899 +#: guix-git/doc/guix.texi:4917 msgid "If the specified packages are not built yet, @command{guix archive} automatically builds them. The build process may be controlled with the common build options (@pxref{Common Build Options})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4902 +#: guix-git/doc/guix.texi:4920 msgid "To transfer the @code{emacs} package to a machine connected over SSH, one would run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4905 +#: guix-git/doc/guix.texi:4923 #, no-wrap msgid "guix archive --export -r emacs | ssh the-machine guix archive --import\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4910 +#: guix-git/doc/guix.texi:4928 msgid "Similarly, a complete user profile may be transferred from one machine to another like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4914 +#: guix-git/doc/guix.texi:4932 #, no-wrap msgid "" "guix archive --export -r $(readlink -f ~/.guix-profile) | \\\n" @@ -11496,187 +11573,187 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4924 +#: guix-git/doc/guix.texi:4942 msgid "However, note that, in both examples, all of @code{emacs} and the profile as well as all of their dependencies are transferred (due to @option{-r}), regardless of what is already available in the store on the target machine. The @option{--missing} option can help figure out which items are missing from the target store. The @command{guix copy} command simplifies and optimizes this whole process, so this is probably what you should use in this case (@pxref{Invoking guix copy})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4925 +#: guix-git/doc/guix.texi:4943 #, no-wrap msgid "nar, archive format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4926 +#: guix-git/doc/guix.texi:4944 #, no-wrap msgid "normalized archive (nar)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4927 +#: guix-git/doc/guix.texi:4945 #, no-wrap msgid "nar bundle, archive format" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4932 +#: guix-git/doc/guix.texi:4950 msgid "Each store item is written in the @dfn{normalized archive} or @dfn{nar} format (described below), and the output of @command{guix archive --export} (and input of @command{guix archive --import}) is a @dfn{nar bundle}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4942 +#: guix-git/doc/guix.texi:4960 msgid "The nar format is comparable in spirit to `tar', but with differences that make it more appropriate for our purposes. First, rather than recording all Unix metadata for each file, the nar format only mentions the file type (regular, directory, or symbolic link); Unix permissions and owner/group are dismissed. Second, the order in which directory entries are stored always follows the order of file names according to the C locale collation order. This makes archive production fully deterministic." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4946 +#: guix-git/doc/guix.texi:4964 msgid "That nar bundle format is essentially the concatenation of zero or more nars along with metadata for each store item it contains: its file name, references, corresponding derivation, and a digital signature." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4952 +#: guix-git/doc/guix.texi:4970 msgid "When exporting, the daemon digitally signs the contents of the archive, and that digital signature is appended. When importing, the daemon verifies the signature and rejects the import in case of an invalid signature or if the signing key is not authorized." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4954 +#: guix-git/doc/guix.texi:4972 msgid "The main options are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4956 +#: guix-git/doc/guix.texi:4974 #, no-wrap msgid "--export" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4959 +#: guix-git/doc/guix.texi:4977 msgid "Export the specified store files or packages (see below). Write the resulting archive to the standard output." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4962 +#: guix-git/doc/guix.texi:4980 msgid "Dependencies are @emph{not} included in the output, unless @option{--recursive} is passed." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4963 guix-git/doc/guix.texi:11830 -#: guix-git/doc/guix.texi:11956 guix-git/doc/guix.texi:11981 -#: guix-git/doc/guix.texi:12013 guix-git/doc/guix.texi:12184 -#: guix-git/doc/guix.texi:12225 guix-git/doc/guix.texi:12276 -#: guix-git/doc/guix.texi:12301 guix-git/doc/guix.texi:12317 -#: guix-git/doc/guix.texi:12365 guix-git/doc/guix.texi:12401 +#: guix-git/doc/guix.texi:4981 guix-git/doc/guix.texi:12144 +#: guix-git/doc/guix.texi:12271 guix-git/doc/guix.texi:12296 +#: guix-git/doc/guix.texi:12328 guix-git/doc/guix.texi:12499 +#: guix-git/doc/guix.texi:12540 guix-git/doc/guix.texi:12591 +#: guix-git/doc/guix.texi:12616 guix-git/doc/guix.texi:12632 +#: guix-git/doc/guix.texi:12680 guix-git/doc/guix.texi:12716 #, no-wrap msgid "-r" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4964 guix-git/doc/guix.texi:11829 -#: guix-git/doc/guix.texi:11955 guix-git/doc/guix.texi:11980 -#: guix-git/doc/guix.texi:12012 guix-git/doc/guix.texi:12183 -#: guix-git/doc/guix.texi:12224 guix-git/doc/guix.texi:12275 -#: guix-git/doc/guix.texi:12300 guix-git/doc/guix.texi:12316 -#: guix-git/doc/guix.texi:12364 guix-git/doc/guix.texi:12400 -#: guix-git/doc/guix.texi:12449 +#: guix-git/doc/guix.texi:4982 guix-git/doc/guix.texi:12143 +#: guix-git/doc/guix.texi:12270 guix-git/doc/guix.texi:12295 +#: guix-git/doc/guix.texi:12327 guix-git/doc/guix.texi:12498 +#: guix-git/doc/guix.texi:12539 guix-git/doc/guix.texi:12590 +#: guix-git/doc/guix.texi:12615 guix-git/doc/guix.texi:12631 +#: guix-git/doc/guix.texi:12679 guix-git/doc/guix.texi:12715 +#: guix-git/doc/guix.texi:12764 #, no-wrap msgid "--recursive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4969 +#: guix-git/doc/guix.texi:4987 msgid "When combined with @option{--export}, this instructs @command{guix archive} to include dependencies of the given items in the archive. Thus, the resulting archive is self-contained: it contains the closure of the exported store items." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4970 +#: guix-git/doc/guix.texi:4988 #, no-wrap msgid "--import" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4975 +#: guix-git/doc/guix.texi:4993 msgid "Read an archive from the standard input, and import the files listed therein into the store. Abort if the archive has an invalid digital signature, or if it is signed by a public key not among the authorized keys (see @option{--authorize} below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4976 +#: guix-git/doc/guix.texi:4994 #, no-wrap msgid "--missing" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4980 +#: guix-git/doc/guix.texi:4998 msgid "Read a list of store file names from the standard input, one per line, and write on the standard output the subset of these files missing from the store." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4981 +#: guix-git/doc/guix.texi:4999 #, no-wrap msgid "--generate-key[=@var{parameters}]" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4982 +#: guix-git/doc/guix.texi:5000 #, no-wrap msgid "signing, archives" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4989 +#: guix-git/doc/guix.texi:5007 msgid "Generate a new key pair for the daemon. This is a prerequisite before archives can be exported with @option{--export}. This operation is usually instantaneous but it can take time if the system's entropy pool needs to be refilled. On Guix System, @code{guix-service-type} takes care of generating this key pair the first boot." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4999 +#: guix-git/doc/guix.texi:5017 msgid "The generated key pair is typically stored under @file{/etc/guix}, in @file{signing-key.pub} (public key) and @file{signing-key.sec} (private key, which must be kept secret). When @var{parameters} is omitted, an ECDSA key using the Ed25519 curve is generated, or, for Libgcrypt versions before 1.6.0, it is a 4096-bit RSA key. Alternatively, @var{parameters} can specify @code{genkey} parameters suitable for Libgcrypt (@pxref{General public-key related Functions, @code{gcry_pk_genkey},, gcrypt, The Libgcrypt Reference Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5000 +#: guix-git/doc/guix.texi:5018 #, no-wrap msgid "--authorize" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5001 +#: guix-git/doc/guix.texi:5019 #, no-wrap msgid "authorizing, archives" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5005 +#: guix-git/doc/guix.texi:5023 msgid "Authorize imports signed by the public key passed on standard input. The public key must be in ``s-expression advanced format''---i.e., the same format as the @file{signing-key.pub} file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5012 +#: guix-git/doc/guix.texi:5030 msgid "The list of authorized keys is kept in the human-editable file @file{/etc/guix/acl}. The file contains @url{https://people.csail.mit.edu/rivest/Sexp.txt, ``advanced-format s-expressions''} and is structured as an access-control list in the @url{https://theworld.com/~cme/spki.txt, Simple Public-Key Infrastructure (SPKI)}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5013 +#: guix-git/doc/guix.texi:5031 #, no-wrap msgid "--extract=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5014 +#: guix-git/doc/guix.texi:5032 #, no-wrap msgid "-x @var{directory}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5018 +#: guix-git/doc/guix.texi:5036 msgid "Read a single-item archive as served by substitute servers (@pxref{Substitutes}) and extract it to @var{directory}. This is a low-level operation needed in only very narrow use cases; see below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5021 +#: guix-git/doc/guix.texi:5039 msgid "For example, the following command extracts the substitute for Emacs served by @code{@value{SUBSTITUTE-SERVER-1}} to @file{/tmp/emacs}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5026 +#: guix-git/doc/guix.texi:5044 #, no-wrap msgid "" "$ wget -O - \\\n" @@ -11685,35 +11762,35 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5033 +#: guix-git/doc/guix.texi:5051 msgid "Single-item archives are different from multiple-item archives produced by @command{guix archive --export}; they contain a single store item, and they do @emph{not} embed a signature. Thus this operation does @emph{no} signature verification and its output should be considered unsafe." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5037 +#: guix-git/doc/guix.texi:5055 msgid "The primary purpose of this operation is to facilitate inspection of archive contents coming from possibly untrusted substitute servers (@pxref{Invoking guix challenge})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5038 +#: guix-git/doc/guix.texi:5056 #, no-wrap msgid "--list" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5039 guix-git/doc/guix.texi:12171 -#: guix-git/doc/guix.texi:12218 +#: guix-git/doc/guix.texi:5057 guix-git/doc/guix.texi:12486 +#: guix-git/doc/guix.texi:12533 #, no-wrap msgid "-t" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5043 +#: guix-git/doc/guix.texi:5061 msgid "Read a single-item archive as served by substitute servers (@pxref{Substitutes}) and print the list of files it contains, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5048 +#: guix-git/doc/guix.texi:5066 #, no-wrap msgid "" "$ wget -O - \\\n" @@ -11722,47 +11799,47 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5059 +#: guix-git/doc/guix.texi:5077 #, no-wrap msgid "@command{guix pull}, configuration file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5060 +#: guix-git/doc/guix.texi:5078 #, no-wrap msgid "configuration of @command{guix pull}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5071 +#: guix-git/doc/guix.texi:5089 msgid "Guix and its package collection are updated by running @command{guix pull} (@pxref{Invoking guix pull}). By default @command{guix pull} downloads and deploys Guix itself from the official GNU@tie{}Guix repository. This can be customized by defining @dfn{channels} in the @file{~/.config/guix/channels.scm} file. A channel specifies a URL and branch of a Git repository to be deployed, and @command{guix pull} can be instructed to pull from one or more channels. In other words, channels can be used to @emph{customize} and to @emph{extend} Guix, as we will see below. Guix is able to take into account security concerns and deal with authenticated updates." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5089 +#: guix-git/doc/guix.texi:5107 #, no-wrap msgid "extending the package collection (channels)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5090 +#: guix-git/doc/guix.texi:5108 #, no-wrap msgid "variant packages (channels)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5094 +#: guix-git/doc/guix.texi:5112 msgid "You can specify @emph{additional channels} to pull from. To use a channel, write @code{~/.config/guix/channels.scm} to instruct @command{guix pull} to pull from it @emph{in addition} to the default Guix channel(s):" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:5095 +#: guix-git/doc/guix.texi:5113 #, no-wrap msgid "%default-channels" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5120 #, no-wrap msgid "" ";; Add variant packages to those Guix provides.\n" @@ -11773,12 +11850,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5112 +#: guix-git/doc/guix.texi:5130 msgid "Note that the snippet above is (as always!)@: Scheme code; we use @code{cons} to add a channel the list of channels that the variable @code{%default-channels} is bound to (@pxref{Pairs, @code{cons} and lists,, guile, GNU Guile Reference Manual}). With this file in place, @command{guix pull} builds not only Guix but also the package modules from your own repository. The result in @file{~/.config/guix/current} is the union of Guix with your own package modules:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5127 +#: guix-git/doc/guix.texi:5145 #, no-wrap msgid "" "$ guix pull --list-generations\n" @@ -11797,17 +11874,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5135 +#: guix-git/doc/guix.texi:5153 msgid "The output of @command{guix pull} above shows that Generation@tie{}19 includes both Guix and packages from the @code{variant-personal-packages} channel. Among the new and upgraded packages that are listed, some like @code{variant-gimp} and @code{variant-emacs-with-cool-features} might come from @code{variant-packages}, while others come from the Guix default channel." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5144 +#: guix-git/doc/guix.texi:5162 msgid "The channel called @code{guix} specifies where Guix itself---its command-line tools as well as its package collection---should be downloaded. For instance, suppose you want to update from another copy of the Guix repository at @code{example.org}, and specifically the @code{super-hacks} branch, you can write in @code{~/.config/guix/channels.scm} this specification:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5151 +#: guix-git/doc/guix.texi:5169 #, no-wrap msgid "" ";; Tell 'guix pull' to use another repo.\n" @@ -11818,17 +11895,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5157 +#: guix-git/doc/guix.texi:5175 msgid "From there on, @command{guix pull} will fetch code from the @code{super-hacks} branch of the repository at @code{example.org}. The authentication concern is addressed below ((@pxref{Channel Authentication})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5168 +#: guix-git/doc/guix.texi:5186 msgid "The @command{guix pull --list-generations} output above shows precisely which commits were used to build this instance of Guix. We can thus replicate it, say, on another machine, by providing a channel specification in @file{~/.config/guix/channels.scm} that is ``pinned'' to these commits:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5179 +#: guix-git/doc/guix.texi:5197 #, no-wrap msgid "" ";; Deploy specific commits of my channels of interest.\n" @@ -11843,37 +11920,37 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5186 +#: guix-git/doc/guix.texi:5204 msgid "The @command{guix describe --format=channels} command can even generate this list of channels directly (@pxref{Invoking guix describe}). The resulting file can be used with the -C options of @command{guix pull} (@pxref{Invoking guix pull}) or @command{guix time-machine} (@pxref{Invoking guix time-machine})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5193 +#: guix-git/doc/guix.texi:5211 msgid "At this point the two machines run the @emph{exact same Guix}, with access to the @emph{exact same packages}. The output of @command{guix build gimp} on one machine will be exactly the same, bit for bit, as the output of the same command on the other machine. It also means both machines have access to all the source code of Guix and, transitively, to all the source code of every package it defines." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5198 +#: guix-git/doc/guix.texi:5216 msgid "This gives you super powers, allowing you to track the provenance of binary artifacts with very fine grain, and to reproduce software environments at will---some sort of ``meta reproducibility'' capabilities, if you will. @xref{Inferiors}, for another way to take advantage of these super powers." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:5203 +#: guix-git/doc/guix.texi:5221 msgid "channel-authentication" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5209 +#: guix-git/doc/guix.texi:5227 msgid "The @command{guix pull} and @command{guix time-machine} commands @dfn{authenticate} the code retrieved from channels: they make sure each commit that is fetched is signed by an authorized developer. The goal is to protect from unauthorized modifications to the channel that would lead users to run malicious code." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5214 +#: guix-git/doc/guix.texi:5232 msgid "As a user, you must provide a @dfn{channel introduction} in your channels file so that Guix knows how to authenticate its first commit. A channel specification, including its introduction, looks something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5224 +#: guix-git/doc/guix.texi:5242 #, no-wrap msgid "" "(channel\n" @@ -11887,27 +11964,27 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5230 +#: guix-git/doc/guix.texi:5248 msgid "The specification above shows the name and URL of the channel. The call to @code{make-channel-introduction} above specifies that authentication of this channel starts at commit @code{6f0d8cc@dots{}}, which is signed by the OpenPGP key with fingerprint @code{CABB A931@dots{}}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5236 +#: guix-git/doc/guix.texi:5254 msgid "For the main channel, called @code{guix}, you automatically get that information from your Guix installation. For other channels, include the channel introduction provided by the channel authors in your @file{channels.scm} file. Make sure you retrieve the channel introduction from a trusted source since that is the root of your trust." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5238 +#: guix-git/doc/guix.texi:5256 msgid "If you're curious about the authentication mechanics, read on!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5249 +#: guix-git/doc/guix.texi:5267 msgid "When running @command{guix pull}, Guix will first compile the definitions of every available package. This is an expensive operation for which substitutes (@pxref{Substitutes}) may be available. The following snippet in @file{channels.scm} will ensure that @command{guix pull} uses the latest commit with available substitutes for the package definitions: this is done by querying the continuous integration server at @url{https://ci.guix.gnu.org}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5252 +#: guix-git/doc/guix.texi:5270 #, no-wrap msgid "" "(use-modules (guix ci))\n" @@ -11915,7 +11992,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5256 +#: guix-git/doc/guix.texi:5274 #, no-wrap msgid "" "(list (channel-with-substitutes-available\n" @@ -11924,75 +12001,75 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5263 +#: guix-git/doc/guix.texi:5281 msgid "Note that this does not mean that all the packages that you will install after running @command{guix pull} will have available substitutes. It only ensures that @command{guix pull} will not try to compile package definitions. This is particularly useful when using machines with limited resources." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5267 +#: guix-git/doc/guix.texi:5285 #, no-wrap msgid "personal packages (channels)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5268 +#: guix-git/doc/guix.texi:5286 #, no-wrap msgid "channels, for personal packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5276 +#: guix-git/doc/guix.texi:5294 msgid "Let's say you have a bunch of custom package variants or personal packages that you think would make little sense to contribute to the Guix project, but would like to have these packages transparently available to you at the command line. You would first write modules containing those package definitions (@pxref{Package Modules}), maintain them in a Git repository, and then you and anyone else can use it as an additional channel to get packages from. Neat, no?" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5284 +#: guix-git/doc/guix.texi:5302 msgid "Before you, dear user, shout---``woow this is @emph{soooo coool}!''---and publish your personal channel to the world, we would like to share a few words of caution:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:5292 +#: guix-git/doc/guix.texi:5310 msgid "Before publishing a channel, please consider contributing your package definitions to Guix proper (@pxref{Contributing}). Guix as a project is open to free software of all sorts, and packages in Guix proper are readily available to all Guix users and benefit from the project's quality assurance process." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:5301 +#: guix-git/doc/guix.texi:5319 msgid "When you maintain package definitions outside Guix, we, Guix developers, consider that @emph{the compatibility burden is on you}. Remember that package modules and package definitions are just Scheme code that uses various programming interfaces (APIs). We want to remain free to change these APIs to keep improving Guix, possibly in ways that break your channel. We never change APIs gratuitously, but we will @emph{not} commit to freezing APIs either." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:5305 +#: guix-git/doc/guix.texi:5323 msgid "Corollary: if you're using an external channel and that channel breaks, please @emph{report the issue to the channel authors}, not to the Guix project." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5312 +#: guix-git/doc/guix.texi:5330 msgid "You've been warned! Having said this, we believe external channels are a practical way to exert your freedom to augment Guix' package collection and to share your improvements, which are basic tenets of @uref{https://www.gnu.org/philosophy/free-sw.html, free software}. Please email us at @email{guix-devel@@gnu.org} if you'd like to discuss this." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5324 +#: guix-git/doc/guix.texi:5342 msgid "To create a channel, create a Git repository containing your own package modules and make it available. The repository can contain anything, but a useful channel will contain Guile modules that export packages. Once you start using a channel, Guix will behave as if the root directory of that channel's Git repository has been added to the Guile load path (@pxref{Load Paths,,, guile, GNU Guile Reference Manual}). For example, if your channel contains a file at @file{my-packages/my-tools.scm} that defines a Guile module, then the module will be available under the name @code{(my-packages my-tools)}, and you will be able to use it like any other module (@pxref{Modules,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5329 +#: guix-git/doc/guix.texi:5347 msgid "As a channel author, consider bundling authentication material with your channel so that users can authenticate it. @xref{Channel Authentication}, and @ref{Specifying Channel Authorizations}, for info on how to do it." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5334 +#: guix-git/doc/guix.texi:5352 #, no-wrap msgid "subdirectory, channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5338 +#: guix-git/doc/guix.texi:5356 msgid "As a channel author, you may want to keep your channel modules in a sub-directory. If your modules are in the sub-directory @file{guix}, you must add a meta-data file @file{.guix-channel} that contains:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5343 +#: guix-git/doc/guix.texi:5361 #, no-wrap msgid "" "(channel\n" @@ -12001,29 +12078,29 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5348 +#: guix-git/doc/guix.texi:5366 #, no-wrap msgid "dependencies, channels" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5349 +#: guix-git/doc/guix.texi:5367 #, no-wrap msgid "meta-data, channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5354 +#: guix-git/doc/guix.texi:5372 msgid "Channel authors may decide to augment a package collection provided by other channels. They can declare their channel to be dependent on other channels in a meta-data file @file{.guix-channel}, which is to be placed in the root of the channel repository." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5356 +#: guix-git/doc/guix.texi:5374 msgid "The meta-data file should contain a simple S-expression like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5364 +#: guix-git/doc/guix.texi:5382 #, no-wrap msgid "" "(channel\n" @@ -12036,7 +12113,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5376 +#: guix-git/doc/guix.texi:5394 #, no-wrap msgid "" " ;; The 'introduction' bit below is optional: you would\n" @@ -12053,33 +12130,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5382 +#: guix-git/doc/guix.texi:5400 msgid "In the above example this channel is declared to depend on two other channels, which will both be fetched automatically. The modules provided by the channel will be compiled in an environment where the modules of all these declared channels are available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5386 +#: guix-git/doc/guix.texi:5404 msgid "For the sake of reliability and maintainability, you should avoid dependencies on channels that you don't control, and you should aim to keep the number of dependencies to a minimum." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5390 +#: guix-git/doc/guix.texi:5408 #, no-wrap msgid "channel authorizations" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:5404 +#: guix-git/doc/guix.texi:5422 msgid "channel-authorizations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5404 +#: guix-git/doc/guix.texi:5422 msgid "As we saw above, Guix ensures the source code it pulls from channels comes from authorized developers. As a channel author, you need to specify the list of authorized developers in the @file{.guix-authorizations} file in the channel's Git repository. The authentication rule is simple: each commit must be signed by a key listed in the @file{.guix-authorizations} file of its parent commit(s)@footnote{Git commits form a @dfn{directed acyclic graph} (DAG). Each commit can have zero or more parents; ``regular'' commits have one parent and merge commits have two parent commits. Read @uref{https://eagain.net/articles/git-for-computer-scientists/, @i{Git for Computer Scientists}} for a great overview.} The @file{.guix-authorizations} file looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5407 +#: guix-git/doc/guix.texi:5425 #, no-wrap msgid "" ";; Example '.guix-authorizations' file.\n" @@ -12087,7 +12164,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5410 +#: guix-git/doc/guix.texi:5428 #, no-wrap msgid "" "(authorizations\n" @@ -12096,7 +12173,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5417 +#: guix-git/doc/guix.texi:5435 #, no-wrap msgid "" " ((\"AD17 A21E F8AE D8F1 CC02 DBD9 F8AE D8F1 765C 61E3\"\n" @@ -12108,33 +12185,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5421 +#: guix-git/doc/guix.texi:5439 msgid "Each fingerprint is followed by optional key/value pairs, as in the example above. Currently these key/value pairs are ignored." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5426 +#: guix-git/doc/guix.texi:5444 msgid "This authentication rule creates a chicken-and-egg issue: how do we authenticate the first commit? Related to that: how do we deal with channels whose repository history contains unsigned commits and lack @file{.guix-authorizations}? And how do we fork existing channels?" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5427 +#: guix-git/doc/guix.texi:5445 #, no-wrap msgid "channel introduction" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5434 +#: guix-git/doc/guix.texi:5452 msgid "Channel introductions answer these questions by describing the first commit of a channel that should be authenticated. The first time a channel is fetched with @command{guix pull} or @command{guix time-machine}, the command looks up the introductory commit and verifies that it is signed by the specified OpenPGP key. From then on, it authenticates commits according to the rule above." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5441 +#: guix-git/doc/guix.texi:5459 msgid "Additionally, your channel must provide all the OpenPGP keys that were ever mentioned in @file{.guix-authorizations}, stored as @file{.key} files, which can be either binary or ``ASCII-armored''. By default, those @file{.key} files are searched for in the branch named @code{keyring} but you can specify a different branch name in @code{.guix-channel} like so:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5446 +#: guix-git/doc/guix.texi:5464 #, no-wrap msgid "" "(channel\n" @@ -12143,59 +12220,59 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5450 +#: guix-git/doc/guix.texi:5468 msgid "To summarize, as the author of a channel, there are three things you have to do to allow users to authenticate your code:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:5456 +#: guix-git/doc/guix.texi:5474 msgid "Export the OpenPGP keys of past and present committers with @command{gpg --export} and store them in @file{.key} files, by default in a branch named @code{keyring} (we recommend making it an @dfn{orphan branch})." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:5461 +#: guix-git/doc/guix.texi:5479 msgid "Introduce an initial @file{.guix-authorizations} in the channel's repository. Do that in a signed commit (@pxref{Commit Access}, for information on how to sign Git commits.)" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:5467 +#: guix-git/doc/guix.texi:5485 msgid "Advertise the channel introduction, for instance on your channel's web page. The channel introduction, as we saw above, is the commit/key pair---i.e., the commit that introduced @file{.guix-authorizations}, and the fingerprint of the OpenPGP used to sign it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5472 +#: guix-git/doc/guix.texi:5490 msgid "Before pushing to your public Git repository, you can run @command{guix git-authenticate} to verify that you did sign all the commits you are about to push with an authorized key:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5475 +#: guix-git/doc/guix.texi:5493 #, no-wrap msgid "guix git authenticate @var{commit} @var{signer}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5480 +#: guix-git/doc/guix.texi:5498 msgid "where @var{commit} and @var{signer} are your channel introduction. @xref{Invoking guix git authenticate}, for details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5487 +#: guix-git/doc/guix.texi:5505 msgid "Publishing a signed channel requires discipline: any mistake, such as an unsigned commit or a commit signed by an unauthorized key, will prevent users from pulling from your channel---well, that's the whole point of authentication! Pay attention to merges in particular: merge commits are considered authentic if and only if they are signed by a key present in the @file{.guix-authorizations} file of @emph{both} branches." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5491 +#: guix-git/doc/guix.texi:5509 #, no-wrap msgid "primary URL, channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5494 +#: guix-git/doc/guix.texi:5512 msgid "Channel authors can indicate the primary URL of their channel's Git repository in the @file{.guix-channel} file, like so:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5499 +#: guix-git/doc/guix.texi:5517 #, no-wrap msgid "" "(channel\n" @@ -12204,38 +12281,38 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5506 +#: guix-git/doc/guix.texi:5524 msgid "This allows @command{guix pull} to determine whether it is pulling code from a mirror of the channel; when that is the case, it warns the user that the mirror might be stale and displays the primary URL@. That way, users cannot be tricked into fetching code from a stale mirror that does not receive security updates." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5510 +#: guix-git/doc/guix.texi:5528 msgid "This feature only makes sense for authenticated repositories, such as the official @code{guix} channel, for which @command{guix pull} ensures the code it fetches is authentic." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5514 +#: guix-git/doc/guix.texi:5532 #, no-wrap msgid "news, for channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5518 +#: guix-git/doc/guix.texi:5536 msgid "Channel authors may occasionally want to communicate to their users information about important changes in the channel. You'd send them all an email, but that's not convenient." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5523 +#: guix-git/doc/guix.texi:5541 msgid "Instead, channels can provide a @dfn{news file}; when the channel users run @command{guix pull}, that news file is automatically read and @command{guix pull --news} can display the announcements that correspond to the new commits that have been pulled, if any." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5526 +#: guix-git/doc/guix.texi:5544 msgid "To do that, channel authors must first declare the name of the news file in their @file{.guix-channel} file:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5531 +#: guix-git/doc/guix.texi:5549 #, no-wrap msgid "" "(channel\n" @@ -12244,12 +12321,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5535 +#: guix-git/doc/guix.texi:5553 msgid "The news file itself, @file{etc/news.txt} in this example, must look something like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5548 +#: guix-git/doc/guix.texi:5566 #, no-wrap msgid "" "(channel-news\n" @@ -12266,164 +12343,164 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5555 +#: guix-git/doc/guix.texi:5573 msgid "While the news file is using the Scheme syntax, avoid naming it with a @file{.scm} extension or else it will get picked up when building the channel and yield an error since it is not a valid module. Alternatively, you can move the channel module to a subdirectory and store the news file in another directory." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5560 +#: guix-git/doc/guix.texi:5578 msgid "The file consists of a list of @dfn{news entries}. Each entry is associated with a commit or tag: it describes changes made in this commit, possibly in preceding commits as well. Users see entries only the first time they obtain the commit the entry refers to." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5566 +#: guix-git/doc/guix.texi:5584 msgid "The @code{title} field should be a one-line summary while @code{body} can be arbitrarily long, and both can contain Texinfo markup (@pxref{Overview,,, texinfo, GNU Texinfo}). Both the title and body are a list of language tag/message tuples, which allows @command{guix pull} to display news in the language that corresponds to the user's locale." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5572 +#: guix-git/doc/guix.texi:5590 msgid "If you want to translate news using a gettext-based workflow, you can extract translatable strings with @command{xgettext} (@pxref{xgettext Invocation,,, gettext, GNU Gettext Utilities}). For example, assuming you write news entries in English first, the command below creates a PO file containing the strings to translate:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5575 +#: guix-git/doc/guix.texi:5593 #, no-wrap msgid "xgettext -o news.po -l scheme -ken etc/news.txt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5579 +#: guix-git/doc/guix.texi:5597 msgid "To sum up, yes, you could use your channel as a blog. But beware, this is @emph{not quite} what your users might expect." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5584 +#: guix-git/doc/guix.texi:5602 #, no-wrap msgid "software development" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5588 +#: guix-git/doc/guix.texi:5606 msgid "If you are a software developer, Guix provides tools that you should find helpful---independently of the language you're developing in. This is what this chapter is about." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5594 +#: guix-git/doc/guix.texi:5612 msgid "The @command{guix shell} command provides a convenient way to set up one-off software environments, be it for development purposes or to run a command without installing it in your profile. The @command{guix pack} command allows you to create @dfn{application bundles} that can be easily distributed to users who do not run Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:5604 +#: guix-git/doc/guix.texi:5622 #, no-wrap msgid "Invoking @command{guix shell}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5606 +#: guix-git/doc/guix.texi:5624 #, no-wrap msgid "reproducible build environments" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5607 +#: guix-git/doc/guix.texi:5625 #, no-wrap msgid "development environments" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:5608 +#: guix-git/doc/guix.texi:5626 #, no-wrap msgid "guix environment" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5609 +#: guix-git/doc/guix.texi:5627 #, no-wrap msgid "environment, package build environment" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5614 +#: guix-git/doc/guix.texi:5632 msgid "The purpose of @command{guix shell} is to make it easy to create one-off software environments, without changing one's profile. It is typically used to create development environments; it is also a convenient way to run applications without ``polluting'' your profile." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5620 +#: guix-git/doc/guix.texi:5638 msgid "The @command{guix shell} command was recently introduced to supersede @command{guix environment} (@pxref{Invoking guix environment}). If you are familiar with @command{guix environment}, you will notice that it is similar but also---we hope!---more convenient." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5626 +#: guix-git/doc/guix.texi:5644 #, no-wrap msgid "guix shell [@var{options}] [@var{package}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5631 +#: guix-git/doc/guix.texi:5649 msgid "The following example creates an environment containing Python and NumPy, building or downloading any missing package, and runs the @command{python3} command in that environment:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5634 +#: guix-git/doc/guix.texi:5652 #, no-wrap msgid "guix shell python python-numpy -- python3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5639 +#: guix-git/doc/guix.texi:5657 msgid "Development environments can be created as in the example below, which spawns an interactive shell containing all the dependencies and environment variables needed to work on Inkscape:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5642 +#: guix-git/doc/guix.texi:5660 #, no-wrap msgid "guix shell --development inkscape\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5648 +#: guix-git/doc/guix.texi:5666 msgid "Exiting the shell places the user back in the original environment before @command{guix shell} was invoked. The next garbage collection (@pxref{Invoking guix gc}) may clean up packages that were installed in the environment and that are no longer used outside of it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5655 +#: guix-git/doc/guix.texi:5673 msgid "As an added convenience, when running from a directory that contains a @file{manifest.scm} or a @file{guix.scm} file (in this order), possibly in a parent directory, @command{guix shell} automatically loads the file---provided the directory is listed in @file{~/.config/guix/shell-authorized-directories}, and only for interactive use:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5658 +#: guix-git/doc/guix.texi:5676 #, no-wrap msgid "guix shell\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5662 +#: guix-git/doc/guix.texi:5680 msgid "This provides an easy way to define, share, and enter development environments." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5673 +#: guix-git/doc/guix.texi:5691 msgid "By default, the shell session or command runs in an @emph{augmented} environment, where the new packages are added to search path environment variables such as @code{PATH}. You can, instead, choose to create an @emph{isolated} environment containing nothing but the packages you asked for. Passing the @option{--pure} option clears environment variable definitions found in the parent environment@footnote{Be sure to use the @option{--check} option the first time you use @command{guix shell} interactively to make sure the shell does not undo the effect of @option{--pure}.}; passing @option{--container} goes one step further by spawning a @dfn{container} isolated from the rest of the system:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5676 +#: guix-git/doc/guix.texi:5694 #, no-wrap msgid "guix shell --container emacs gcc-toolchain\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5684 +#: guix-git/doc/guix.texi:5702 msgid "The command above spawns an interactive shell in a container where nothing but @code{emacs}, @code{gcc-toolchain}, and their dependencies is available. The container lacks network access and shares no files other than the current working directory with the surrounding environment. This is useful to prevent access to system-wide resources such as @file{/usr/bin} on foreign distros." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5691 +#: guix-git/doc/guix.texi:5709 msgid "This @option{--container} option can also prove useful if you wish to run a security-sensitive application, such as a web browser, in an isolated environment. For example, the command below launches Ungoogled-Chromium in an isolated environment, this time sharing network access with the host and preserving its @code{DISPLAY} environment variable, but without even sharing the current directory:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5695 +#: guix-git/doc/guix.texi:5713 #, no-wrap msgid "" "guix shell --container --network --no-cwd ungoogled-chromium \\\n" @@ -12431,18 +12508,18 @@ msgid "" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:5697 guix-git/doc/guix.texi:6008 +#: guix-git/doc/guix.texi:5715 guix-git/doc/guix.texi:6045 #, no-wrap msgid "GUIX_ENVIRONMENT" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5703 +#: guix-git/doc/guix.texi:5721 msgid "@command{guix shell} defines the @env{GUIX_ENVIRONMENT} variable in the shell it spawns; its value is the file name of the profile of this environment. This allows users to, say, define a specific prompt for development environments in their @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5709 guix-git/doc/guix.texi:6020 +#: guix-git/doc/guix.texi:5727 guix-git/doc/guix.texi:6057 #, no-wrap msgid "" "if [ -n \"$GUIX_ENVIRONMENT\" ]\n" @@ -12452,214 +12529,203 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5713 guix-git/doc/guix.texi:6024 +#: guix-git/doc/guix.texi:5731 guix-git/doc/guix.texi:6061 msgid "...@: or to browse the profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5716 guix-git/doc/guix.texi:6027 +#: guix-git/doc/guix.texi:5734 guix-git/doc/guix.texi:6064 #, no-wrap msgid "$ ls \"$GUIX_ENVIRONMENT/bin\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5719 guix-git/doc/guix.texi:6103 +#: guix-git/doc/guix.texi:5737 guix-git/doc/guix.texi:6140 msgid "The available options are summarized below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5721 guix-git/doc/guix.texi:6105 -#: guix-git/doc/guix.texi:11546 +#: guix-git/doc/guix.texi:5739 guix-git/doc/guix.texi:6142 +#: guix-git/doc/guix.texi:11860 #, no-wrap msgid "--check" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5726 +#: guix-git/doc/guix.texi:5744 msgid "Set up the environment and check whether the shell would clobber environment variables. It's a good idea to use this option the first time you run @command{guix shell} for an interactive session to make sure your setup is correct." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5730 +#: guix-git/doc/guix.texi:5748 msgid "For example, if the shell modifies the @env{PATH} environment variable, report it since you would get a different environment than what you asked for." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5738 +#: guix-git/doc/guix.texi:5756 msgid "Such problems usually indicate that the shell startup files are unexpectedly modifying those environment variables. For example, if you are using Bash, make sure that environment variables are set or modified in @file{~/.bash_profile} and @emph{not} in @file{~/.bashrc}---the former is sourced only by log-in shells. @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for details on Bash start-up files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5739 +#: guix-git/doc/guix.texi:5757 #, fuzzy, no-wrap #| msgid "Development" msgid "--development" msgstr "Sviluppo" #. type: table -#: guix-git/doc/guix.texi:5746 +#: guix-git/doc/guix.texi:5764 msgid "Cause @command{guix shell} to include in the environment the dependencies of the following package rather than the package itself. This can be combined with other packages. For instance, the command below starts an interactive shell containing the build-time dependencies of GNU@tie{}Guile, plus Autoconf, Automake, and Libtool:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5749 +#: guix-git/doc/guix.texi:5767 #, no-wrap msgid "guix shell -D guile autoconf automake libtool\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5751 guix-git/doc/guix.texi:6126 -#: guix-git/doc/guix.texi:6607 guix-git/doc/guix.texi:11421 -#: guix-git/doc/guix.texi:12494 guix-git/doc/guix.texi:12845 -#: guix-git/doc/guix.texi:13442 guix-git/doc/guix.texi:35243 -#: guix-git/doc/guix.texi:37713 +#: guix-git/doc/guix.texi:5769 guix-git/doc/guix.texi:6163 +#: guix-git/doc/guix.texi:6650 guix-git/doc/guix.texi:11735 +#: guix-git/doc/guix.texi:12809 guix-git/doc/guix.texi:13201 +#: guix-git/doc/guix.texi:13799 guix-git/doc/guix.texi:35687 +#: guix-git/doc/guix.texi:38192 #, no-wrap msgid "--expression=@var{expr}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5752 guix-git/doc/guix.texi:6127 -#: guix-git/doc/guix.texi:6608 guix-git/doc/guix.texi:11422 -#: guix-git/doc/guix.texi:12495 guix-git/doc/guix.texi:12846 -#: guix-git/doc/guix.texi:13443 guix-git/doc/guix.texi:35244 -#: guix-git/doc/guix.texi:37714 +#: guix-git/doc/guix.texi:5770 guix-git/doc/guix.texi:6164 +#: guix-git/doc/guix.texi:6651 guix-git/doc/guix.texi:11736 +#: guix-git/doc/guix.texi:12810 guix-git/doc/guix.texi:13202 +#: guix-git/doc/guix.texi:13800 guix-git/doc/guix.texi:35688 +#: guix-git/doc/guix.texi:38193 #, no-wrap msgid "-e @var{expr}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5755 guix-git/doc/guix.texi:6130 +#: guix-git/doc/guix.texi:5773 guix-git/doc/guix.texi:6167 msgid "Create an environment for the package or list of packages that @var{expr} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5757 guix-git/doc/guix.texi:6132 -#: guix-git/doc/guix.texi:12850 +#: guix-git/doc/guix.texi:5775 guix-git/doc/guix.texi:6169 +#: guix-git/doc/guix.texi:13206 msgid "For example, running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5760 +#: guix-git/doc/guix.texi:5778 #, no-wrap msgid "guix shell -D -e '(@@ (gnu packages maths) petsc-openmpi)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5764 guix-git/doc/guix.texi:6139 +#: guix-git/doc/guix.texi:5782 guix-git/doc/guix.texi:6176 msgid "starts a shell with the environment for this specific variant of the PETSc package." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5766 guix-git/doc/guix.texi:6141 +#: guix-git/doc/guix.texi:5784 guix-git/doc/guix.texi:6178 msgid "Running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5769 +#: guix-git/doc/guix.texi:5787 #, no-wrap msgid "guix shell -e '(@@ (gnu) %base-packages)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5772 guix-git/doc/guix.texi:6147 +#: guix-git/doc/guix.texi:5790 guix-git/doc/guix.texi:6184 msgid "starts a shell with all the base system packages available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5775 guix-git/doc/guix.texi:6150 +#: guix-git/doc/guix.texi:5793 guix-git/doc/guix.texi:6187 msgid "The above commands only use the default output of the given packages. To select other outputs, two element tuples can be specified:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5778 +#: guix-git/doc/guix.texi:5796 #, no-wrap msgid "guix shell -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5780 guix-git/doc/guix.texi:11395 +#: guix-git/doc/guix.texi:5798 guix-git/doc/guix.texi:11709 #, no-wrap msgid "--file=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5784 +#: guix-git/doc/guix.texi:5802 msgid "Create an environment containing the package or list of packages that the code within @var{file} evaluates to." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5790 guix-git/doc/guix.texi:6165 +#: guix-git/doc/guix.texi:5808 guix-git/doc/guix.texi:6202 #, no-wrap msgid "@verbatiminclude environment-gdb.scm\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5794 +#: guix-git/doc/guix.texi:5812 msgid "With the file above, you can enter a development environment for GDB by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5797 +#: guix-git/doc/guix.texi:5815 #, no-wrap msgid "guix shell -D -f gdb-devel.scm\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5804 guix-git/doc/guix.texi:6172 +#: guix-git/doc/guix.texi:5822 guix-git/doc/guix.texi:6209 msgid "Create an environment for the packages contained in the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5808 guix-git/doc/guix.texi:6176 +#: guix-git/doc/guix.texi:5826 guix-git/doc/guix.texi:6213 msgid "This is similar to the same-named option in @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) and uses the same manifest files." msgstr "" -#. type: item -#: guix-git/doc/guix.texi:5809 -#, no-wrap -msgid "--rebuild-cache" -msgstr "" - -#. type: table -#: guix-git/doc/guix.texi:5814 -msgid "When using @option{--manifest}, @option{--file}, or when invoked without arguments, @command{guix shell} caches the environment so that subsequent uses are instantaneous. The cache is invalidated anytime the file is modified." -msgstr "" - #. type: table -#: guix-git/doc/guix.texi:5819 -msgid "The @option{--rebuild-cache} forces the cached environment to be refreshed even if the file has not changed. This is useful if the @command{guix.scm} or @command{manifest.scm} has external dependencies, or if its behavior depends, say, on environment variables." +#: guix-git/doc/guix.texi:5832 guix-git/doc/guix.texi:6245 +msgid "Create an environment containing the packages installed in @var{profile}. Use @command{guix package} (@pxref{Invoking guix package}) to create and manage profiles." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5820 guix-git/doc/guix.texi:6203 +#: guix-git/doc/guix.texi:5833 guix-git/doc/guix.texi:6246 #, no-wrap msgid "--pure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5824 guix-git/doc/guix.texi:6207 +#: guix-git/doc/guix.texi:5837 guix-git/doc/guix.texi:6250 msgid "Unset existing environment variables when building the new environment, except those specified with @option{--preserve} (see below). This has the effect of creating an environment in which search paths only contain package inputs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5825 guix-git/doc/guix.texi:6208 +#: guix-git/doc/guix.texi:5838 guix-git/doc/guix.texi:6251 #, no-wrap msgid "--preserve=@var{regexp}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5826 guix-git/doc/guix.texi:6209 +#: guix-git/doc/guix.texi:5839 guix-git/doc/guix.texi:6252 #, no-wrap msgid "-E @var{regexp}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5831 guix-git/doc/guix.texi:6214 +#: guix-git/doc/guix.texi:5844 guix-git/doc/guix.texi:6257 msgid "When used alongside @option{--pure}, preserve the environment variables matching @var{regexp}---in other words, put them on a ``white list'' of environment variables that must be preserved. This option can be repeated several times." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5835 +#: guix-git/doc/guix.texi:5848 #, no-wrap msgid "" "guix shell --pure --preserve=^SLURM openmpi @dots{} \\\n" @@ -12667,116 +12733,116 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5841 guix-git/doc/guix.texi:6224 +#: guix-git/doc/guix.texi:5854 guix-git/doc/guix.texi:6267 msgid "This example runs @command{mpirun} in a context where the only environment variables defined are @env{PATH}, environment variables whose name starts with @samp{SLURM}, as well as the usual ``precious'' variables (@env{HOME}, @env{USER}, etc.)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5842 guix-git/doc/guix.texi:6225 +#: guix-git/doc/guix.texi:5855 guix-git/doc/guix.texi:6268 #, no-wrap msgid "--search-paths" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5845 guix-git/doc/guix.texi:6228 +#: guix-git/doc/guix.texi:5858 guix-git/doc/guix.texi:6271 msgid "Display the environment variable definitions that make up the environment." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5849 guix-git/doc/guix.texi:6232 +#: guix-git/doc/guix.texi:5862 guix-git/doc/guix.texi:6275 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5850 guix-git/doc/guix.texi:6233 +#: guix-git/doc/guix.texi:5863 guix-git/doc/guix.texi:6276 #, no-wrap msgid "--container" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5851 guix-git/doc/guix.texi:6234 +#: guix-git/doc/guix.texi:5864 guix-git/doc/guix.texi:6277 #, no-wrap msgid "-C" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5852 guix-git/doc/guix.texi:6069 -#: guix-git/doc/guix.texi:6235 guix-git/doc/guix.texi:13998 -#: guix-git/doc/guix.texi:35211 +#: guix-git/doc/guix.texi:5865 guix-git/doc/guix.texi:6106 +#: guix-git/doc/guix.texi:6278 guix-git/doc/guix.texi:14355 +#: guix-git/doc/guix.texi:35655 #, no-wrap msgid "container" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5858 guix-git/doc/guix.texi:6241 +#: guix-git/doc/guix.texi:5871 guix-git/doc/guix.texi:6284 msgid "Run @var{command} within an isolated container. The current working directory outside the container is mapped inside the container. Additionally, unless overridden with @option{--user}, a dummy home directory is created that matches the current user's home directory, and @file{/etc/passwd} is configured accordingly." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5862 guix-git/doc/guix.texi:6245 +#: guix-git/doc/guix.texi:5875 guix-git/doc/guix.texi:6288 msgid "The spawned process runs as the current user outside the container. Inside the container, it has the same UID and GID as the current user, unless @option{--user} is passed (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5863 guix-git/doc/guix.texi:6246 -#: guix-git/doc/guix.texi:35303 +#: guix-git/doc/guix.texi:5876 guix-git/doc/guix.texi:6289 +#: guix-git/doc/guix.texi:35747 #, no-wrap msgid "--network" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5868 guix-git/doc/guix.texi:6251 +#: guix-git/doc/guix.texi:5881 guix-git/doc/guix.texi:6294 msgid "For containers, share the network namespace with the host system. Containers created without this flag only have access to the loopback device." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5869 guix-git/doc/guix.texi:6252 +#: guix-git/doc/guix.texi:5882 guix-git/doc/guix.texi:6295 #, no-wrap msgid "--link-profile" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5870 guix-git/doc/guix.texi:6253 +#: guix-git/doc/guix.texi:5883 guix-git/doc/guix.texi:6296 #, no-wrap msgid "-P" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5878 +#: guix-git/doc/guix.texi:5891 msgid "For containers, link the environment profile to @file{~/.guix-profile} within the container and set @code{GUIX_ENVIRONMENT} to that. This is equivalent to making @file{~/.guix-profile} a symlink to the actual profile within the container. Linking will fail and abort the environment if the directory already exists, which will certainly be the case if @command{guix shell} was invoked in the user's home directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5884 guix-git/doc/guix.texi:6267 +#: guix-git/doc/guix.texi:5897 guix-git/doc/guix.texi:6310 msgid "Certain packages are configured to look in @file{~/.guix-profile} for configuration files and data;@footnote{For example, the @code{fontconfig} package inspects @file{~/.guix-profile/share/fonts} for additional fonts.} @option{--link-profile} allows these programs to behave as expected within the environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5885 guix-git/doc/guix.texi:6268 -#: guix-git/doc/guix.texi:13575 +#: guix-git/doc/guix.texi:5898 guix-git/doc/guix.texi:6311 +#: guix-git/doc/guix.texi:13932 #, no-wrap msgid "--user=@var{user}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5886 guix-git/doc/guix.texi:6269 -#: guix-git/doc/guix.texi:13576 +#: guix-git/doc/guix.texi:5899 guix-git/doc/guix.texi:6312 +#: guix-git/doc/guix.texi:13933 #, no-wrap msgid "-u @var{user}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5893 guix-git/doc/guix.texi:6276 +#: guix-git/doc/guix.texi:5906 guix-git/doc/guix.texi:6319 msgid "For containers, use the username @var{user} in place of the current user. The generated @file{/etc/passwd} entry within the container will contain the name @var{user}, the home directory will be @file{/home/@var{user}}, and no user GECOS data will be copied. Furthermore, the UID and GID inside the container are 1000. @var{user} need not exist on the system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5898 guix-git/doc/guix.texi:6281 +#: guix-git/doc/guix.texi:5911 guix-git/doc/guix.texi:6324 msgid "Additionally, any shared or exposed path (see @option{--share} and @option{--expose} respectively) whose target is within the current user's home directory will be remapped relative to @file{/home/USER}; this includes the automatic mapping of the current working directory." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5905 +#: guix-git/doc/guix.texi:5918 #, no-wrap msgid "" "# will expose paths as /home/foo/wd, /home/foo/test, and /home/foo/target\n" @@ -12787,229 +12853,267 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5910 guix-git/doc/guix.texi:6293 +#: guix-git/doc/guix.texi:5923 guix-git/doc/guix.texi:6336 msgid "While this will limit the leaking of user identity through home paths and each of the user fields, this is only one useful component of a broader privacy/anonymity solution---not one in and of itself." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5911 guix-git/doc/guix.texi:6294 +#: guix-git/doc/guix.texi:5924 guix-git/doc/guix.texi:6337 #, no-wrap msgid "--no-cwd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5918 guix-git/doc/guix.texi:6301 +#: guix-git/doc/guix.texi:5931 guix-git/doc/guix.texi:6344 msgid "For containers, the default behavior is to share the current working directory with the isolated container and immediately change to that directory within the container. If this is undesirable, @option{--no-cwd} will cause the current working directory to @emph{not} be automatically shared and will change to the user's home directory within the container instead. See also @option{--user}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5919 guix-git/doc/guix.texi:6302 +#: guix-git/doc/guix.texi:5932 guix-git/doc/guix.texi:6345 #, no-wrap msgid "--expose=@var{source}[=@var{target}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5920 guix-git/doc/guix.texi:6303 +#: guix-git/doc/guix.texi:5933 guix-git/doc/guix.texi:6346 #, no-wrap msgid "--share=@var{source}[=@var{target}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5926 guix-git/doc/guix.texi:6309 +#: guix-git/doc/guix.texi:5939 guix-git/doc/guix.texi:6352 msgid "For containers, @option{--expose} (resp. @option{--share}) exposes the file system @var{source} from the host system as the read-only (resp. writable) file system @var{target} within the container. If @var{target} is not specified, @var{source} is used as the target mount point in the container." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5930 guix-git/doc/guix.texi:6313 +#: guix-git/doc/guix.texi:5943 guix-git/doc/guix.texi:6356 msgid "The example below spawns a Guile REPL in a container in which the user's home directory is accessible read-only via the @file{/exchange} directory:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5933 +#: guix-git/doc/guix.texi:5946 #, no-wrap msgid "guix shell --container --expose=$HOME=/exchange guile -- guile\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5935 guix-git/doc/guix.texi:6110 -#: guix-git/doc/guix.texi:6675 guix-git/doc/guix.texi:11575 -#: guix-git/doc/guix.texi:35308 +#: guix-git/doc/guix.texi:5948 +#, no-wrap +msgid "--rebuild-cache" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:5949 +#, no-wrap +msgid "caching, of profiles" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:5950 +#, no-wrap +msgid "caching, in @command{guix shell}" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:5956 +msgid "In most cases, @command{guix shell} caches the environment so that subsequent uses are instantaneous. Least-recently used cache entries are periodically removed. The cache is also invalidated, when using @option{--file} or @option{--manifest}, anytime the corresponding file is modified." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:5962 +msgid "The @option{--rebuild-cache} forces the cached environment to be refreshed. This is useful when using @option{--file} or @option{--manifest} and the @command{guix.scm} or @command{manifest.scm} file has external dependencies, or if its behavior depends, say, on environment variables." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:5963 guix-git/doc/guix.texi:6147 +#: guix-git/doc/guix.texi:6718 guix-git/doc/guix.texi:11889 +#: guix-git/doc/guix.texi:35752 #, no-wrap msgid "--root=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5936 guix-git/doc/guix.texi:6111 -#: guix-git/doc/guix.texi:6676 guix-git/doc/guix.texi:11576 -#: guix-git/doc/guix.texi:35309 +#: guix-git/doc/guix.texi:5964 guix-git/doc/guix.texi:6148 +#: guix-git/doc/guix.texi:6719 guix-git/doc/guix.texi:11890 +#: guix-git/doc/guix.texi:35753 #, no-wrap msgid "-r @var{file}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5937 guix-git/doc/guix.texi:6112 +#: guix-git/doc/guix.texi:5965 guix-git/doc/guix.texi:6149 #, no-wrap msgid "persistent environment" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5938 guix-git/doc/guix.texi:6113 +#: guix-git/doc/guix.texi:5966 guix-git/doc/guix.texi:6150 #, no-wrap msgid "garbage collector root, for environments" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5941 guix-git/doc/guix.texi:6116 +#: guix-git/doc/guix.texi:5969 guix-git/doc/guix.texi:6153 msgid "Make @var{file} a symlink to the profile for this environment, and register it as a garbage collector root." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5944 guix-git/doc/guix.texi:6119 +#: guix-git/doc/guix.texi:5972 guix-git/doc/guix.texi:6156 msgid "This is useful if you want to protect your environment from garbage collection, to make it ``persistent''." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5950 -msgid "When this option is omitted, the environment is protected from garbage collection only for the duration of the @command{guix shell} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages. @xref{Invoking guix gc}, for more on GC roots." +#: guix-git/doc/guix.texi:5978 +msgid "When this option is omitted, @command{guix shell} caches profiles so that subsequent uses of the same environment are instantaneous---this is comparable to using @option{--root} except that @command{guix shell} takes care of periodically removing the least-recently used garbage collector roots." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:5985 +msgid "In some cases, @command{guix shell} does not cache profiles---e.g., if transformation options such as @option{--with-latest} are used. In those cases, the environment is protected from garbage collection only for the duration of the @command{guix shell} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:5987 +msgid "@xref{Invoking guix gc}, for more on GC roots." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5955 +#: guix-git/doc/guix.texi:5992 msgid "@command{guix shell} also supports all of the common build options that @command{guix build} supports (@pxref{Common Build Options}) as well as package transformation options (@pxref{Package Transformation Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:5957 +#: guix-git/doc/guix.texi:5994 #, no-wrap msgid "Invoking @command{guix environment}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5961 +#: guix-git/doc/guix.texi:5998 msgid "The purpose of @command{guix environment} is to assist in creating development environments." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5962 +#: guix-git/doc/guix.texi:5999 #, no-wrap msgid "Deprecation warning" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5966 +#: guix-git/doc/guix.texi:6003 msgid "The @command{guix environment} command is deprecated in favor of @command{guix shell}, which performs similar functions but is more convenient to use. @xref{Invoking guix shell}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5971 +#: guix-git/doc/guix.texi:6008 msgid "Being deprecated, @command{guix environment} is slated for eventual removal, but the Guix project is committed to keeping it until May 1st, 2023. Please get in touch with us at @email{guix-devel@@gnu.org} if you would like to discuss it." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5977 +#: guix-git/doc/guix.texi:6014 #, no-wrap msgid "guix environment @var{options} @var{package}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5981 +#: guix-git/doc/guix.texi:6018 msgid "The following example spawns a new shell set up for the development of GNU@tie{}Guile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5984 +#: guix-git/doc/guix.texi:6021 #, no-wrap msgid "guix environment guile\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6001 +#: guix-git/doc/guix.texi:6038 msgid "If the needed dependencies are not built yet, @command{guix environment} automatically builds them. The environment of the new shell is an augmented version of the environment that @command{guix environment} was run in. It contains the necessary search paths for building the given package added to the existing environment variables. To create a ``pure'' environment, in which the original environment variables have been unset, use the @option{--pure} option@footnote{Users sometimes wrongfully augment environment variables such as @env{PATH} in their @file{~/.bashrc} file. As a consequence, when @command{guix environment} launches it, Bash may read @file{~/.bashrc}, thereby introducing ``impurities'' in these environment variables. It is an error to define such environment variables in @file{.bashrc}; instead, they should be defined in @file{.bash_profile}, which is sourced only by log-in shells. @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for details on Bash start-up files.}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6007 +#: guix-git/doc/guix.texi:6044 msgid "Exiting from a Guix environment is the same as exiting from the shell, and will place the user back in the old environment before @command{guix environment} was invoked. The next garbage collection (@pxref{Invoking guix gc}) will clean up packages that were installed from within the environment and are no longer used outside of it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6014 +#: guix-git/doc/guix.texi:6051 msgid "@command{guix environment} defines the @env{GUIX_ENVIRONMENT} variable in the shell it spawns; its value is the file name of the profile of this environment. This allows users to, say, define a specific prompt for development environments in their @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6033 +#: guix-git/doc/guix.texi:6070 msgid "Additionally, more than one package may be specified, in which case the union of the inputs for the given packages are used. For example, the command below spawns a shell where all of the dependencies of both Guile and Emacs are available:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6036 +#: guix-git/doc/guix.texi:6073 #, no-wrap msgid "guix environment guile emacs\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6041 +#: guix-git/doc/guix.texi:6078 msgid "Sometimes an interactive shell session is not desired. An arbitrary command may be invoked by placing the @code{--} token to separate the command from the rest of the arguments:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6044 +#: guix-git/doc/guix.texi:6081 #, no-wrap msgid "guix environment guile -- make -j4\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6050 +#: guix-git/doc/guix.texi:6087 msgid "In other situations, it is more convenient to specify the list of packages needed in the environment. For example, the following command runs @command{python} from an environment containing Python@tie{}3 and NumPy:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6053 +#: guix-git/doc/guix.texi:6090 #, no-wrap msgid "guix environment --ad-hoc python-numpy python -- python3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6064 +#: guix-git/doc/guix.texi:6101 msgid "Furthermore, one might want the dependencies of a package and also some additional packages that are not build-time or runtime dependencies, but are useful when developing nonetheless. Because of this, the @option{--ad-hoc} flag is positional. Packages appearing before @option{--ad-hoc} are interpreted as packages whose dependencies will be added to the environment. Packages appearing after are interpreted as packages that will be added to the environment directly. For example, the following command creates a Guix development environment that additionally includes Git and strace:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6067 +#: guix-git/doc/guix.texi:6104 #, no-wrap msgid "guix environment --pure guix --ad-hoc git strace\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6077 +#: guix-git/doc/guix.texi:6114 msgid "Sometimes it is desirable to isolate the environment as much as possible, for maximal purity and reproducibility. In particular, when using Guix on a host distro that is not Guix System, it is desirable to prevent access to @file{/usr/bin} and other system-wide resources from the development environment. For example, the following command spawns a Guile REPL in a ``container'' where only the store and the current working directory are mounted:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6080 +#: guix-git/doc/guix.texi:6117 #, no-wrap msgid "guix environment --ad-hoc --container guile -- guile\n" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6084 +#: guix-git/doc/guix.texi:6121 msgid "The @option{--container} option requires Linux-libre 3.19 or newer." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6086 +#: guix-git/doc/guix.texi:6123 #, no-wrap msgid "certificates" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6093 +#: guix-git/doc/guix.texi:6130 msgid "Another typical use case for containers is to run security-sensitive applications such as a web browser. To run Eolie, we must expose and share some files and directories; we include @code{nss-certs} and expose @file{/etc/ssl/certs/} for HTTPS authentication; finally we preserve the @env{DISPLAY} environment variable since containerized graphical applications won't display without it." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6100 +#: guix-git/doc/guix.texi:6137 #, no-wrap msgid "" "guix environment --preserve='^DISPLAY$' --container --network \\\n" @@ -13020,89 +13124,89 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6109 +#: guix-git/doc/guix.texi:6146 msgid "Set up the environment and check whether the shell would clobber environment variables. @xref{Invoking guix shell, @option{--check}}, for more info." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6125 +#: guix-git/doc/guix.texi:6162 msgid "When this option is omitted, the environment is protected from garbage collection only for the duration of the @command{guix environment} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages. @xref{Invoking guix gc}, for more on GC roots." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6135 +#: guix-git/doc/guix.texi:6172 #, no-wrap msgid "guix environment -e '(@@ (gnu packages maths) petsc-openmpi)'\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6144 +#: guix-git/doc/guix.texi:6181 #, no-wrap msgid "guix environment --ad-hoc -e '(@@ (gnu) %base-packages)'\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6153 +#: guix-git/doc/guix.texi:6190 #, no-wrap msgid "guix environment --ad-hoc -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6155 +#: guix-git/doc/guix.texi:6192 #, no-wrap msgid "--load=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6156 +#: guix-git/doc/guix.texi:6193 #, no-wrap msgid "-l @var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6159 +#: guix-git/doc/guix.texi:6196 msgid "Create an environment for the package or list of packages that the code within @var{file} evaluates to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6177 +#: guix-git/doc/guix.texi:6214 #, no-wrap msgid "--ad-hoc" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6182 +#: guix-git/doc/guix.texi:6219 msgid "Include all specified packages in the resulting environment, as if an @i{ad hoc} package were defined with them as inputs. This option is useful for quickly creating an environment without having to write a package expression to contain the desired inputs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6184 +#: guix-git/doc/guix.texi:6221 msgid "For instance, the command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6187 +#: guix-git/doc/guix.texi:6224 #, no-wrap msgid "guix environment --ad-hoc guile guile-sdl -- guile\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6191 +#: guix-git/doc/guix.texi:6228 msgid "runs @command{guile} in an environment where Guile and Guile-SDL are available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6196 +#: guix-git/doc/guix.texi:6233 msgid "Note that this example implicitly asks for the default output of @code{guile} and @code{guile-sdl}, but it is possible to ask for a specific output---e.g., @code{glib:bin} asks for the @code{bin} output of @code{glib} (@pxref{Packages with Multiple Outputs})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6202 +#: guix-git/doc/guix.texi:6239 msgid "This option may be composed with the default behavior of @command{guix environment}. Packages appearing before @option{--ad-hoc} are interpreted as packages whose dependencies will be added to the environment, the default behavior. Packages appearing after are interpreted as packages that will be added to the environment directly." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6218 +#: guix-git/doc/guix.texi:6261 #, no-wrap msgid "" "guix environment --pure --preserve=^SLURM --ad-hoc openmpi @dots{} \\\n" @@ -13110,12 +13214,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6261 +#: guix-git/doc/guix.texi:6304 msgid "For containers, link the environment profile to @file{~/.guix-profile} within the container and set @code{GUIX_ENVIRONMENT} to that. This is equivalent to making @file{~/.guix-profile} a symlink to the actual profile within the container. Linking will fail and abort the environment if the directory already exists, which will certainly be the case if @command{guix environment} was invoked in the user's home directory." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6288 +#: guix-git/doc/guix.texi:6331 #, no-wrap msgid "" "# will expose paths as /home/foo/wd, /home/foo/test, and /home/foo/target\n" @@ -13126,68 +13230,68 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6316 +#: guix-git/doc/guix.texi:6359 #, no-wrap msgid "guix environment --container --expose=$HOME=/exchange --ad-hoc guile -- guile\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6324 +#: guix-git/doc/guix.texi:6367 msgid "@command{guix environment} also supports all of the common build options that @command{guix build} supports (@pxref{Common Build Options}) as well as package transformation options (@pxref{Package Transformation Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:6326 +#: guix-git/doc/guix.texi:6369 #, no-wrap msgid "Invoking @command{guix pack}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6332 +#: guix-git/doc/guix.texi:6375 msgid "Occasionally you want to pass software to people who are not (yet!) lucky enough to be using Guix. You'd tell them to run @command{guix package -i @var{something}}, but that's not possible in this case. This is where @command{guix pack} comes in." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6337 +#: guix-git/doc/guix.texi:6380 msgid "If you are looking for ways to exchange binaries among machines that already run Guix, @pxref{Invoking guix copy}, @ref{Invoking guix publish}, and @ref{Invoking guix archive}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6339 +#: guix-git/doc/guix.texi:6382 #, no-wrap msgid "pack" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6340 +#: guix-git/doc/guix.texi:6383 #, no-wrap msgid "bundle" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6341 +#: guix-git/doc/guix.texi:6384 #, no-wrap msgid "application bundle" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6342 +#: guix-git/doc/guix.texi:6385 #, no-wrap msgid "software bundle" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6351 +#: guix-git/doc/guix.texi:6394 msgid "The @command{guix pack} command creates a shrink-wrapped @dfn{pack} or @dfn{software bundle}: it creates a tarball or some other archive containing the binaries of the software you're interested in, and all its dependencies. The resulting archive can be used on any machine that does not have Guix, and people can run the exact same binaries as those you have with Guix. The pack itself is created in a bit-reproducible fashion, so anyone can verify that it really contains the build results that you pretend to be shipping." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6354 +#: guix-git/doc/guix.texi:6397 msgid "For example, to create a bundle containing Guile, Emacs, Geiser, and all their dependencies, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6359 +#: guix-git/doc/guix.texi:6402 #, no-wrap msgid "" "$ guix pack guile emacs emacs-geiser\n" @@ -13196,61 +13300,61 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6367 +#: guix-git/doc/guix.texi:6410 msgid "The result here is a tarball containing a @file{/gnu/store} directory with all the relevant packages. The resulting tarball contains a @dfn{profile} with the three packages of interest; the profile is the same as would be created by @command{guix package -i}. It is this mechanism that is used to create Guix's own standalone binary tarball (@pxref{Binary Installation})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6372 +#: guix-git/doc/guix.texi:6415 msgid "Users of this pack would have to run @file{/gnu/store/@dots{}-profile/bin/guile} to run Guile, which you may find inconvenient. To work around it, you can create, say, a @file{/opt/gnu/bin} symlink to the profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6375 +#: guix-git/doc/guix.texi:6418 #, no-wrap msgid "guix pack -S /opt/gnu/bin=bin guile emacs emacs-geiser\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6379 +#: guix-git/doc/guix.texi:6422 msgid "That way, users can happily type @file{/opt/gnu/bin/guile} and enjoy." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6380 +#: guix-git/doc/guix.texi:6423 #, no-wrap msgid "relocatable binaries, with @command{guix pack}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6388 +#: guix-git/doc/guix.texi:6431 msgid "What if the recipient of your pack does not have root privileges on their machine, and thus cannot unpack it in the root file system? In that case, you will want to use the @option{--relocatable} option (see below). This option produces @dfn{relocatable binaries}, meaning they they can be placed anywhere in the file system hierarchy: in the example above, users can unpack your tarball in their home directory and directly run @file{./opt/gnu/bin/guile}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6389 +#: guix-git/doc/guix.texi:6432 #, no-wrap msgid "Docker, build an image with guix pack" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6392 +#: guix-git/doc/guix.texi:6435 msgid "Alternatively, you can produce a pack in the Docker image format using the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6395 +#: guix-git/doc/guix.texi:6438 #, no-wrap msgid "guix pack -f docker -S /bin=bin guile guile-readline\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6400 +#: guix-git/doc/guix.texi:6443 msgid "The result is a tarball that can be passed to the @command{docker load} command, followed by @code{docker run}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6404 +#: guix-git/doc/guix.texi:6447 #, no-wrap msgid "" "docker load < @var{file}\n" @@ -13258,169 +13362,169 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6411 +#: guix-git/doc/guix.texi:6454 msgid "where @var{file} is the image returned by @var{guix pack}, and @code{guile-guile-readline} is its ``image tag''. See the @uref{https://docs.docker.com/engine/reference/commandline/load/, Docker documentation} for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6412 +#: guix-git/doc/guix.texi:6455 #, no-wrap msgid "Singularity, build an image with guix pack" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6413 +#: guix-git/doc/guix.texi:6456 #, no-wrap msgid "SquashFS, build an image with guix pack" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6416 +#: guix-git/doc/guix.texi:6459 msgid "Yet another option is to produce a SquashFS image with the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6419 +#: guix-git/doc/guix.texi:6462 #, no-wrap msgid "guix pack -f squashfs bash guile emacs emacs-geiser\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6427 +#: guix-git/doc/guix.texi:6470 msgid "The result is a SquashFS file system image that can either be mounted or directly be used as a file system container image with the @uref{https://www.sylabs.io/docs/, Singularity container execution environment}, using commands like @command{singularity shell} or @command{singularity exec}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6429 +#: guix-git/doc/guix.texi:6472 msgid "Several command-line options allow you to customize your pack:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6434 +#: guix-git/doc/guix.texi:6477 msgid "Produce a pack in the given @var{format}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6436 +#: guix-git/doc/guix.texi:6479 msgid "The available formats are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6438 +#: guix-git/doc/guix.texi:6481 #, no-wrap msgid "tarball" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6441 +#: guix-git/doc/guix.texi:6484 msgid "This is the default format. It produces a tarball containing all the specified binaries and symlinks." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6442 +#: guix-git/doc/guix.texi:6485 #, no-wrap msgid "docker" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6448 +#: guix-git/doc/guix.texi:6491 msgid "This produces a tarball that follows the @uref{https://github.com/docker/docker/blob/master/image/spec/v1.2.md, Docker Image Specification}. The ``repository name'' as it appears in the output of the @command{docker images} command is computed from package names passed on the command line or in the manifest file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6449 +#: guix-git/doc/guix.texi:6492 #, no-wrap msgid "squashfs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6453 +#: guix-git/doc/guix.texi:6496 msgid "This produces a SquashFS image containing all the specified binaries and symlinks, as well as empty mount points for virtual file systems like procfs." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6459 +#: guix-git/doc/guix.texi:6502 msgid "Singularity @emph{requires} you to provide @file{/bin/sh} in the image. For that reason, @command{guix pack -f squashfs} always implies @code{-S /bin=bin}. Thus, your @command{guix pack} invocation must always start with something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6462 +#: guix-git/doc/guix.texi:6505 #, no-wrap msgid "guix pack -f squashfs bash @dots{}\n" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6467 +#: guix-git/doc/guix.texi:6510 msgid "If you forget the @code{bash} (or similar) package, @command{singularity run} and @command{singularity exec} will fail with an unhelpful ``no such file or directory'' message." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6469 +#: guix-git/doc/guix.texi:6512 #, no-wrap msgid "deb" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6477 +#: guix-git/doc/guix.texi:6520 msgid "This produces a Debian archive (a package with the @samp{.deb} file extension) containing all the specified binaries and symbolic links, that can be installed on top of any dpkg-based GNU(/Linux) distribution. Advanced options can be revealed via the @option{--help-deb-format} option. They allow embedding control files for more fine-grained control, such as activating specific triggers or providing a maintainer configure script to run arbitrary setup code upon installation." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6480 +#: guix-git/doc/guix.texi:6523 #, no-wrap msgid "guix pack -f deb -C xz -S /usr/bin/hello=bin/hello hello\n" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6487 +#: guix-git/doc/guix.texi:6530 msgid "Because archives produced with @command{guix pack} contain a collection of store items and because each @command{dpkg} package must not have conflicting files, in practice that means you likely won't be able to install more than one such archive on a given system." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6495 +#: guix-git/doc/guix.texi:6538 msgid "@command{dpkg} will assume ownership of any files contained in the pack that it does @emph{not} know about. It is unwise to install Guix-produced @samp{.deb} files on a system where @file{/gnu/store} is shared by other software, such as a Guix installation or other, non-deb packs." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6499 +#: guix-git/doc/guix.texi:6542 #, no-wrap msgid "relocatable binaries" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6500 +#: guix-git/doc/guix.texi:6543 #, no-wrap msgid "--relocatable" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6504 +#: guix-git/doc/guix.texi:6547 msgid "Produce @dfn{relocatable binaries}---i.e., binaries that can be placed anywhere in the file system hierarchy and run from there." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6512 +#: guix-git/doc/guix.texi:6555 msgid "When this option is passed once, the resulting binaries require support for @dfn{user namespaces} in the kernel Linux; when passed @emph{twice}@footnote{Here's a trick to memorize it: @code{-RR}, which adds PRoot support, can be thought of as the abbreviation of ``Really Relocatable''. Neat, isn't it?}, relocatable binaries fall to back to other techniques if user namespaces are unavailable, and essentially work anywhere---see below for the implications." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6514 +#: guix-git/doc/guix.texi:6557 msgid "For example, if you create a pack containing Bash with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6517 +#: guix-git/doc/guix.texi:6560 #, no-wrap msgid "guix pack -RR -S /mybin=bin bash\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6522 +#: guix-git/doc/guix.texi:6565 msgid "...@: you can copy that pack to a machine that lacks Guix, and from your home directory as a normal user, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6526 +#: guix-git/doc/guix.texi:6569 #, no-wrap msgid "" "tar xf pack.tar.gz\n" @@ -13428,121 +13532,121 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6534 +#: guix-git/doc/guix.texi:6577 msgid "In that shell, if you type @code{ls /gnu/store}, you'll notice that @file{/gnu/store} shows up and contains all the dependencies of @code{bash}, even though the machine actually lacks @file{/gnu/store} altogether! That is probably the simplest way to deploy Guix-built software on a non-Guix machine." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6540 +#: guix-git/doc/guix.texi:6583 msgid "By default, relocatable binaries rely on the @dfn{user namespace} feature of the kernel Linux, which allows unprivileged users to mount or change root. Old versions of Linux did not support it, and some GNU/Linux distributions turn it off." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6546 +#: guix-git/doc/guix.texi:6589 msgid "To produce relocatable binaries that work even in the absence of user namespaces, pass @option{--relocatable} or @option{-R} @emph{twice}. In that case, binaries will try user namespace support and fall back to another @dfn{execution engine} if user namespaces are not supported. The following execution engines are supported:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6548 guix-git/doc/guix.texi:17371 +#: guix-git/doc/guix.texi:6591 guix-git/doc/guix.texi:17733 #, no-wrap msgid "default" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6551 +#: guix-git/doc/guix.texi:6594 msgid "Try user namespaces and fall back to PRoot if user namespaces are not supported (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6552 +#: guix-git/doc/guix.texi:6595 #, no-wrap msgid "performance" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6555 +#: guix-git/doc/guix.texi:6598 msgid "Try user namespaces and fall back to Fakechroot if user namespaces are not supported (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6556 +#: guix-git/doc/guix.texi:6599 #, no-wrap msgid "userns" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6559 +#: guix-git/doc/guix.texi:6602 msgid "Run the program through user namespaces and abort if they are not supported." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6560 +#: guix-git/doc/guix.texi:6603 #, no-wrap msgid "proot" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6567 +#: guix-git/doc/guix.texi:6610 msgid "Run through PRoot. The @uref{https://proot-me.github.io/, PRoot} program provides the necessary support for file system virtualization. It achieves that by using the @code{ptrace} system call on the running program. This approach has the advantage to work without requiring special kernel support, but it incurs run-time overhead every time a system call is made." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6568 +#: guix-git/doc/guix.texi:6611 #, no-wrap msgid "fakechroot" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6576 +#: guix-git/doc/guix.texi:6619 msgid "Run through Fakechroot. @uref{https://github.com/dex4er/fakechroot/, Fakechroot} virtualizes file system accesses by intercepting calls to C library functions such as @code{open}, @code{stat}, @code{exec}, and so on. Unlike PRoot, it incurs very little overhead. However, it does not always work: for example, some file system accesses made from within the C library are not intercepted, and file system accesses made @i{via} direct syscalls are not intercepted either, leading to erratic behavior." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:6578 +#: guix-git/doc/guix.texi:6621 #, no-wrap msgid "GUIX_EXECUTION_ENGINE" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6582 +#: guix-git/doc/guix.texi:6625 msgid "When running a wrapped program, you can explicitly request one of the execution engines listed above by setting the @env{GUIX_EXECUTION_ENGINE} environment variable accordingly." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6584 +#: guix-git/doc/guix.texi:6627 #, no-wrap msgid "entry point, for Docker images" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6585 +#: guix-git/doc/guix.texi:6628 #, no-wrap msgid "--entry-point=@var{command}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6590 +#: guix-git/doc/guix.texi:6633 msgid "Use @var{command} as the @dfn{entry point} of the resulting pack, if the pack format supports it---currently @code{docker} and @code{squashfs} (Singularity) support it. @var{command} must be relative to the profile contained in the pack." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6594 +#: guix-git/doc/guix.texi:6637 msgid "The entry point specifies the command that tools like @code{docker run} or @code{singularity run} automatically start by default. For example, you can do:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6597 +#: guix-git/doc/guix.texi:6640 #, no-wrap msgid "guix pack -f docker --entry-point=bin/guile guile\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6601 +#: guix-git/doc/guix.texi:6644 msgid "The resulting pack can easily be loaded and @code{docker run} with no extra arguments will spawn @code{bin/guile}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6605 +#: guix-git/doc/guix.texi:6648 #, no-wrap msgid "" "docker load -i pack.tar.gz\n" @@ -13550,398 +13654,398 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6610 guix-git/doc/guix.texi:12497 -#: guix-git/doc/guix.texi:13445 +#: guix-git/doc/guix.texi:6653 guix-git/doc/guix.texi:12812 +#: guix-git/doc/guix.texi:13802 msgid "Consider the package @var{expr} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6614 +#: guix-git/doc/guix.texi:6657 msgid "This has the same purpose as the same-named option in @command{guix build} (@pxref{Additional Build Options, @option{--expression} in @command{guix build}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6620 +#: guix-git/doc/guix.texi:6663 msgid "Use the packages contained in the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6628 +#: guix-git/doc/guix.texi:6671 msgid "This has a similar purpose as the same-named option in @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) and uses the same manifest files. It allows you to define a collection of packages once and use it both for creating profiles and for creating archives for use on machines that do not have Guix installed. Note that you can specify @emph{either} a manifest file @emph{or} a list of packages, but not both." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6634 guix-git/doc/guix.texi:11539 +#: guix-git/doc/guix.texi:6677 guix-git/doc/guix.texi:11853 #, no-wrap msgid "--target=@var{triplet}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6635 guix-git/doc/guix.texi:7080 -#: guix-git/doc/guix.texi:11540 +#: guix-git/doc/guix.texi:6678 guix-git/doc/guix.texi:7124 +#: guix-git/doc/guix.texi:11854 #, no-wrap msgid "cross-compilation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6639 +#: guix-git/doc/guix.texi:6682 msgid "Cross-build for @var{triplet}, which must be a valid GNU triplet, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying target triplets, GNU configuration triplets,, autoconf, Autoconf})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6640 +#: guix-git/doc/guix.texi:6683 #, no-wrap msgid "--compression=@var{tool}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6641 +#: guix-git/doc/guix.texi:6684 #, no-wrap msgid "-C @var{tool}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6645 +#: guix-git/doc/guix.texi:6688 msgid "Compress the resulting tarball using @var{tool}---one of @code{gzip}, @code{zstd}, @code{bzip2}, @code{xz}, @code{lzip}, or @code{none} for no compression." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6646 +#: guix-git/doc/guix.texi:6689 #, no-wrap msgid "--symlink=@var{spec}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6647 +#: guix-git/doc/guix.texi:6690 #, no-wrap msgid "-S @var{spec}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6650 +#: guix-git/doc/guix.texi:6693 msgid "Add the symlinks specified by @var{spec} to the pack. This option can appear several times." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6654 +#: guix-git/doc/guix.texi:6697 msgid "@var{spec} has the form @code{@var{source}=@var{target}}, where @var{source} is the symlink that will be created and @var{target} is the symlink target." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6657 +#: guix-git/doc/guix.texi:6700 msgid "For instance, @code{-S /opt/gnu/bin=bin} creates a @file{/opt/gnu/bin} symlink pointing to the @file{bin} sub-directory of the profile." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6658 guix-git/doc/guix.texi:35262 +#: guix-git/doc/guix.texi:6701 guix-git/doc/guix.texi:35706 #, no-wrap msgid "--save-provenance" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6662 +#: guix-git/doc/guix.texi:6705 msgid "Save provenance information for the packages passed on the command line. Provenance information includes the URL and commit of the channels in use (@pxref{Channels})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6668 +#: guix-git/doc/guix.texi:6711 msgid "Provenance information is saved in the @file{/gnu/store/@dots{}-profile/manifest} file in the pack, along with the usual package metadata---the name and version of each package, their propagated inputs, and so on. It is useful information to the recipient of the pack, who then knows how the pack was (supposedly) obtained." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6674 +#: guix-git/doc/guix.texi:6717 msgid "This option is not enabled by default because, like timestamps, provenance information contributes nothing to the build process. In other words, there is an infinity of channel URLs and commit IDs that can lead to the same pack. Recording such ``silent'' metadata in the output thus potentially breaks the source-to-binary bitwise reproducibility property." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6677 +#: guix-git/doc/guix.texi:6720 #, no-wrap msgid "garbage collector root, for packs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6680 +#: guix-git/doc/guix.texi:6723 msgid "Make @var{file} a symlink to the resulting pack, and register it as a garbage collector root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6681 +#: guix-git/doc/guix.texi:6724 #, no-wrap msgid "--localstatedir" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6682 +#: guix-git/doc/guix.texi:6725 #, no-wrap msgid "--profile-name=@var{name}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6687 +#: guix-git/doc/guix.texi:6730 msgid "Include the ``local state directory'', @file{/var/guix}, in the resulting pack, and notably the @file{/var/guix/profiles/per-user/root/@var{name}} profile---by default @var{name} is @code{guix-profile}, which corresponds to @file{~root/.guix-profile}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6693 +#: guix-git/doc/guix.texi:6736 msgid "@file{/var/guix} contains the store database (@pxref{The Store}) as well as garbage-collector roots (@pxref{Invoking guix gc}). Providing it in the pack means that the store is ``complete'' and manageable by Guix; not providing it pack means that the store is ``dead'': items cannot be added to it or removed from it after extraction of the pack." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6696 +#: guix-git/doc/guix.texi:6739 msgid "One use case for this is the Guix self-contained binary tarball (@pxref{Binary Installation})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6697 guix-git/doc/guix.texi:35256 +#: guix-git/doc/guix.texi:6740 guix-git/doc/guix.texi:35700 #, no-wrap msgid "--derivation" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6698 guix-git/doc/guix.texi:11571 -#: guix-git/doc/guix.texi:35257 +#: guix-git/doc/guix.texi:6741 guix-git/doc/guix.texi:11885 +#: guix-git/doc/guix.texi:35701 #, no-wrap msgid "-d" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6700 +#: guix-git/doc/guix.texi:6743 msgid "Print the name of the derivation that builds the pack." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6704 +#: guix-git/doc/guix.texi:6747 msgid "Use the bootstrap binaries to build the pack. This option is only useful to Guix developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6709 +#: guix-git/doc/guix.texi:6752 msgid "In addition, @command{guix pack} supports all the common build options (@pxref{Common Build Options}) and all the package transformation options (@pxref{Package Transformation Options})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6714 +#: guix-git/doc/guix.texi:6757 #, no-wrap msgid "GCC" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6715 +#: guix-git/doc/guix.texi:6758 #, no-wrap msgid "ld-wrapper" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6716 +#: guix-git/doc/guix.texi:6759 #, no-wrap msgid "linker wrapper" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6717 +#: guix-git/doc/guix.texi:6760 #, no-wrap msgid "toolchain, for C development" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6718 +#: guix-git/doc/guix.texi:6761 #, no-wrap msgid "toolchain, for Fortran development" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6725 +#: guix-git/doc/guix.texi:6768 msgid "If you need a complete toolchain for compiling and linking C or C++ source code, use the @code{gcc-toolchain} package. This package provides a complete GCC toolchain for C/C++ development, including GCC itself, the GNU C Library (headers and binaries, plus debugging symbols in the @code{debug} output), Binutils, and a linker wrapper." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6731 +#: guix-git/doc/guix.texi:6774 msgid "The wrapper's purpose is to inspect the @code{-L} and @code{-l} switches passed to the linker, add corresponding @code{-rpath} arguments, and invoke the actual linker with this new set of arguments. You can instruct the wrapper to refuse to link against libraries not in the store by setting the @env{GUIX_LD_WRAPPER_ALLOW_IMPURITIES} environment variable to @code{no}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6735 +#: guix-git/doc/guix.texi:6778 msgid "The package @code{gfortran-toolchain} provides a complete GCC toolchain for Fortran development. For other languages, please use @samp{guix search gcc toolchain} (@pxref{guix-search,, Invoking guix package})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:6738 +#: guix-git/doc/guix.texi:6781 #, no-wrap msgid "Invoking @command{guix git authenticate}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6746 +#: guix-git/doc/guix.texi:6789 msgid "The @command{guix git authenticate} command authenticates a Git checkout following the same rule as for channels (@pxref{channel-authentication, channel authentication}). That is, starting from a given commit, it ensures that all subsequent commits are signed by an OpenPGP key whose fingerprint appears in the @file{.guix-authorizations} file of its parent commit(s)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6751 +#: guix-git/doc/guix.texi:6794 msgid "You will find this command useful if you maintain a channel. But in fact, this authentication mechanism is useful in a broader context, so you might want to use it for Git repositories that have nothing to do with Guix." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6756 +#: guix-git/doc/guix.texi:6799 #, no-wrap msgid "guix git authenticate @var{commit} @var{signer} [@var{options}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6765 +#: guix-git/doc/guix.texi:6808 msgid "By default, this command authenticates the Git checkout in the current directory; it outputs nothing and exits with exit code zero on success and non-zero on failure. @var{commit} above denotes the first commit where authentication takes place, and @var{signer} is the OpenPGP fingerprint of public key used to sign @var{commit}. Together, they form a ``channel introduction'' (@pxref{channel-authentication, channel introduction}). The options below allow you to fine-tune the process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6767 +#: guix-git/doc/guix.texi:6810 #, no-wrap msgid "--repository=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6768 +#: guix-git/doc/guix.texi:6811 #, no-wrap msgid "-r @var{directory}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6771 +#: guix-git/doc/guix.texi:6814 msgid "Open the Git repository in @var{directory} instead of the current directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6772 +#: guix-git/doc/guix.texi:6815 #, no-wrap msgid "--keyring=@var{reference}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6773 +#: guix-git/doc/guix.texi:6816 #, no-wrap msgid "-k @var{reference}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6779 +#: guix-git/doc/guix.texi:6822 msgid "Load OpenPGP keyring from @var{reference}, the reference of a branch such as @code{origin/keyring} or @code{my-keyring}. The branch must contain OpenPGP public keys in @file{.key} files, either in binary form or ``ASCII-armored''. By default the keyring is loaded from the branch named @code{keyring}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6780 +#: guix-git/doc/guix.texi:6823 #, no-wrap msgid "--stats" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6782 +#: guix-git/doc/guix.texi:6825 msgid "Display commit signing statistics upon completion." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6783 +#: guix-git/doc/guix.texi:6826 #, no-wrap msgid "--cache-key=@var{key}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6787 +#: guix-git/doc/guix.texi:6830 msgid "Previously-authenticated commits are cached in a file under @file{~/.cache/guix/authentication}. This option forces the cache to be stored in file @var{key} in that directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6788 +#: guix-git/doc/guix.texi:6831 #, no-wrap msgid "--historical-authorizations=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6795 +#: guix-git/doc/guix.texi:6838 msgid "By default, any commit whose parent commit(s) lack the @file{.guix-authorizations} file is considered inauthentic. In contrast, this option considers the authorizations in @var{file} for any commit that lacks @file{.guix-authorizations}. The format of @var{file} is the same as that of @file{.guix-authorizations} (@pxref{channel-authorizations, @file{.guix-authorizations} format})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6808 +#: guix-git/doc/guix.texi:6851 msgid "GNU Guix provides several Scheme programming interfaces (APIs) to define, build, and query packages. The first interface allows users to write high-level package definitions. These definitions refer to familiar packaging concepts, such as the name and version of a package, its build system, and its dependencies. These definitions can then be turned into concrete build actions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6814 +#: guix-git/doc/guix.texi:6857 msgid "Build actions are performed by the Guix daemon, on behalf of users. In a standard setup, the daemon has write access to the store---the @file{/gnu/store} directory---whereas users do not. The recommended setup also has the daemon perform builds in chroots, under specific build users, to minimize interference with the rest of the system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6823 +#: guix-git/doc/guix.texi:6866 msgid "Lower-level APIs are available to interact with the daemon and the store. To instruct the daemon to perform a build action, users actually provide it with a @dfn{derivation}. A derivation is a low-level representation of the build actions to be taken, and the environment in which they should occur---derivations are to package definitions what assembly is to C programs. The term ``derivation'' comes from the fact that build results @emph{derive} from them." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6826 +#: guix-git/doc/guix.texi:6869 msgid "This chapter describes all these APIs in turn, starting from high-level package definitions." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:6883 msgid "Programming Guix in Guile" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6855 +#: guix-git/doc/guix.texi:6899 msgid "From a programming viewpoint, the package definitions of the GNU distribution are provided by Guile modules in the @code{(gnu packages @dots{})} name space@footnote{Note that packages under the @code{(gnu packages @dots{})} module name space are not necessarily ``GNU packages''. This module naming scheme follows the usual Guile module naming convention: @code{gnu} means that these modules are distributed as part of the GNU system, and @code{packages} identifies modules that define packages.} (@pxref{Modules, Guile modules,, guile, GNU Guile Reference Manual}). For instance, the @code{(gnu packages emacs)} module exports a variable named @code{emacs}, which is bound to a @code{} object (@pxref{Defining Packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6862 +#: guix-git/doc/guix.texi:6906 msgid "The @code{(gnu packages @dots{})} module name space is automatically scanned for packages by the command-line tools. For instance, when running @code{guix install emacs}, all the @code{(gnu packages @dots{})} modules are scanned until one that exports a package object whose name is @code{emacs} is found. This package search facility is implemented in the @code{(gnu packages)} module." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6864 +#: guix-git/doc/guix.texi:6908 #, no-wrap msgid "package module search path" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6873 +#: guix-git/doc/guix.texi:6917 msgid "Users can store package definitions in modules with different names---e.g., @code{(my-packages emacs)}@footnote{Note that the file name and module name must match. For instance, the @code{(my-packages emacs)} module must be stored in a @file{my-packages/emacs.scm} file relative to the load path specified with @option{--load-path} or @env{GUIX_PACKAGE_PATH}. @xref{Modules and the File System,,, guile, GNU Guile Reference Manual}, for details.}. There are two ways to make these package definitions visible to the user interfaces:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:6880 +#: guix-git/doc/guix.texi:6924 msgid "By adding the directory containing your package modules to the search path with the @code{-L} flag of @command{guix package} and other commands (@pxref{Common Build Options}), or by setting the @env{GUIX_PACKAGE_PATH} environment variable described below." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:6886 +#: guix-git/doc/guix.texi:6930 msgid "By defining a @dfn{channel} and configuring @command{guix pull} so that it pulls from it. A channel is essentially a Git repository containing package modules. @xref{Channels}, for more information on how to define and use channels." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6889 +#: guix-git/doc/guix.texi:6933 msgid "@env{GUIX_PACKAGE_PATH} works similarly to other search path variables:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:6890 +#: guix-git/doc/guix.texi:6934 #, no-wrap msgid "{Environment Variable} GUIX_PACKAGE_PATH" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:6894 +#: guix-git/doc/guix.texi:6938 msgid "This is a colon-separated list of directories to search for additional package modules. Directories listed in this variable take precedence over the own modules of the distribution." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6902 +#: guix-git/doc/guix.texi:6946 msgid "The distribution is fully @dfn{bootstrapped} and @dfn{self-contained}: each package is built based solely on other packages in the distribution. The root of this dependency graph is a small set of @dfn{bootstrap binaries}, provided by the @code{(gnu packages bootstrap)} module. For more information on bootstrapping, @pxref{Bootstrapping}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6910 +#: guix-git/doc/guix.texi:6954 msgid "The high-level interface to package definitions is implemented in the @code{(guix packages)} and @code{(guix build-system)} modules. As an example, the package definition, or @dfn{recipe}, for the GNU Hello package looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:6918 +#: guix-git/doc/guix.texi:6962 #, no-wrap msgid "" "(define-module (gnu packages hello)\n" @@ -13954,7 +14058,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:6937 +#: guix-git/doc/guix.texi:6981 #, no-wrap msgid "" "(define-public hello\n" @@ -13978,327 +14082,327 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6947 +#: guix-git/doc/guix.texi:6991 msgid "Without being a Scheme expert, the reader may have guessed the meaning of the various fields here. This expression binds the variable @code{hello} to a @code{} object, which is essentially a record (@pxref{SRFI-9, Scheme records,, guile, GNU Guile Reference Manual}). This package object can be inspected using procedures found in the @code{(guix packages)} module; for instance, @code{(package-name hello)} returns---surprise!---@code{\"hello\"}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6951 +#: guix-git/doc/guix.texi:6995 msgid "With luck, you may be able to import part or all of the definition of the package you are interested in from another repository, using the @code{guix import} command (@pxref{Invoking guix import})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6957 +#: guix-git/doc/guix.texi:7001 msgid "In the example above, @code{hello} is defined in a module of its own, @code{(gnu packages hello)}. Technically, this is not strictly necessary, but it is convenient to do so: all the packages defined in modules under @code{(gnu packages @dots{})} are automatically known to the command-line tools (@pxref{Package Modules})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6959 +#: guix-git/doc/guix.texi:7003 msgid "There are a few points worth noting in the above package definition:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6966 +#: guix-git/doc/guix.texi:7010 msgid "The @code{source} field of the package is an @code{} object (@pxref{origin Reference}, for the complete reference). Here, the @code{url-fetch} method from @code{(guix download)} is used, meaning that the source is a file to be downloaded over FTP or HTTP." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6969 +#: guix-git/doc/guix.texi:7013 msgid "The @code{mirror://gnu} prefix instructs @code{url-fetch} to use one of the GNU mirrors defined in @code{(guix download)}." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6976 +#: guix-git/doc/guix.texi:7020 msgid "The @code{sha256} field specifies the expected SHA256 hash of the file being downloaded. It is mandatory, and allows Guix to check the integrity of the file. The @code{(base32 @dots{})} form introduces the base32 representation of the hash. You can obtain this information with @code{guix download} (@pxref{Invoking guix download}) and @code{guix hash} (@pxref{Invoking guix hash})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6977 +#: guix-git/doc/guix.texi:7021 #, no-wrap msgid "patches" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6981 +#: guix-git/doc/guix.texi:7025 msgid "When needed, the @code{origin} form can also have a @code{patches} field listing patches to be applied, and a @code{snippet} field giving a Scheme expression to modify the source code." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6983 +#: guix-git/doc/guix.texi:7027 #, no-wrap msgid "GNU Build System" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6989 +#: guix-git/doc/guix.texi:7033 msgid "The @code{build-system} field specifies the procedure to build the package (@pxref{Build Systems}). Here, @code{gnu-build-system} represents the familiar GNU Build System, where packages may be configured, built, and installed with the usual @code{./configure && make && make check && make install} command sequence." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6993 +#: guix-git/doc/guix.texi:7037 msgid "When you start packaging non-trivial software, you may need tools to manipulate those build phases, manipulate files, and so on. @xref{Build Utilities}, for more on this." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6999 +#: guix-git/doc/guix.texi:7043 msgid "The @code{arguments} field specifies options for the build system (@pxref{Build Systems}). Here it is interpreted by @code{gnu-build-system} as a request run @file{configure} with the @option{--enable-silent-rules} flag." msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7000 guix-git/doc/guix.texi:7003 +#: guix-git/doc/guix.texi:7044 guix-git/doc/guix.texi:7047 #, no-wrap msgid "quote" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7001 +#: guix-git/doc/guix.texi:7045 #, no-wrap msgid "quoting" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7002 +#: guix-git/doc/guix.texi:7046 #, no-wrap msgid "'" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7004 +#: guix-git/doc/guix.texi:7048 #, no-wrap msgid "backquote (quasiquote)" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7005 +#: guix-git/doc/guix.texi:7049 #, no-wrap msgid "`" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7006 +#: guix-git/doc/guix.texi:7050 #, no-wrap msgid "quasiquote" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7007 +#: guix-git/doc/guix.texi:7051 #, no-wrap msgid "comma (unquote)" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7008 +#: guix-git/doc/guix.texi:7052 #, no-wrap msgid "," msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7009 +#: guix-git/doc/guix.texi:7053 #, no-wrap msgid "unquote" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7019 +#: guix-git/doc/guix.texi:7063 msgid "What about these quote (@code{'}) characters? They are Scheme syntax to introduce a literal list; @code{'} is synonymous with @code{quote}. Sometimes you'll also see @code{`} (a backquote, synonymous with @code{quasiquote}) and @code{,} (a comma, synonymous with @code{unquote}). @xref{Expression Syntax, quoting,, guile, GNU Guile Reference Manual}, for details. Here the value of the @code{arguments} field is a list of arguments passed to the build system down the road, as with @code{apply} (@pxref{Fly Evaluation, @code{apply},, guile, GNU Guile Reference Manual})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7025 +#: guix-git/doc/guix.texi:7069 msgid "The hash-colon (@code{#:}) sequence defines a Scheme @dfn{keyword} (@pxref{Keywords,,, guile, GNU Guile Reference Manual}), and @code{#:configure-flags} is a keyword used to pass a keyword argument to the build system (@pxref{Coding With Keywords,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7031 +#: guix-git/doc/guix.texi:7075 msgid "The @code{inputs} field specifies inputs to the build process---i.e., build-time or run-time dependencies of the package. Here, we add an input, a reference to the @code{gawk} variable; @code{gawk} is itself bound to a @code{} object." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7035 +#: guix-git/doc/guix.texi:7079 msgid "Note that GCC, Coreutils, Bash, and other essential tools do not need to be specified as inputs here. Instead, @code{gnu-build-system} takes care of ensuring that they are present (@pxref{Build Systems})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7039 +#: guix-git/doc/guix.texi:7083 msgid "However, any other dependencies need to be specified in the @code{inputs} field. Any dependency not specified here will simply be unavailable to the build process, possibly leading to a build failure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7042 +#: guix-git/doc/guix.texi:7086 msgid "@xref{package Reference}, for a full description of possible fields." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7053 +#: guix-git/doc/guix.texi:7097 msgid "Once a package definition is in place, the package may actually be built using the @code{guix build} command-line tool (@pxref{Invoking guix build}), troubleshooting any build failures you encounter (@pxref{Debugging Build Failures}). You can easily jump back to the package definition using the @command{guix edit} command (@pxref{Invoking guix edit}). @xref{Packaging Guidelines}, for more information on how to test package definitions, and @ref{Invoking guix lint}, for information on how to check a definition for style conformance." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:7053 +#: guix-git/doc/guix.texi:7097 #, no-wrap msgid "GUIX_PACKAGE_PATH" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7057 +#: guix-git/doc/guix.texi:7101 msgid "Lastly, @pxref{Channels}, for information on how to extend the distribution by adding your own package definitions in a ``channel''." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7061 +#: guix-git/doc/guix.texi:7105 msgid "Finally, updating the package definition to a new upstream version can be partly automated by the @command{guix refresh} command (@pxref{Invoking guix refresh})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7067 +#: guix-git/doc/guix.texi:7111 msgid "Behind the scenes, a derivation corresponding to the @code{} object is first computed by the @code{package-derivation} procedure. That derivation is stored in a @file{.drv} file under @file{/gnu/store}. The build actions it prescribes may then be realized by using the @code{build-derivations} procedure (@pxref{The Store})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7068 +#: guix-git/doc/guix.texi:7112 #, no-wrap msgid "{Scheme Procedure} package-derivation @var{store} @var{package} [@var{system}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7071 +#: guix-git/doc/guix.texi:7115 msgid "Return the @code{} object of @var{package} for @var{system} (@pxref{Derivations})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7077 +#: guix-git/doc/guix.texi:7121 msgid "@var{package} must be a valid @code{} object, and @var{system} must be a string denoting the target system type---e.g., @code{\"x86_64-linux\"} for an x86_64 Linux-based GNU system. @var{store} must be a connection to the daemon, which operates on the store (@pxref{The Store})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7083 +#: guix-git/doc/guix.texi:7127 msgid "Similarly, it is possible to compute a derivation that cross-builds a package for some other system:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7084 +#: guix-git/doc/guix.texi:7128 #, no-wrap msgid "{Scheme Procedure} package-cross-derivation @var{store} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7088 +#: guix-git/doc/guix.texi:7132 msgid "@var{package} @var{target} [@var{system}] Return the @code{} object of @var{package} cross-built from @var{system} to @var{target}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7092 +#: guix-git/doc/guix.texi:7136 msgid "@var{target} must be a valid GNU triplet denoting the target hardware and operating system, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying Target Triplets,,, autoconf, Autoconf})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7096 +#: guix-git/doc/guix.texi:7140 msgid "Once you have package definitions, you can easily define @emph{variants} of those packages. @xref{Defining Package Variants}, for more on that." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:7104 +#: guix-git/doc/guix.texi:7148 #, no-wrap msgid "@code{package} Reference" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7108 +#: guix-git/doc/guix.texi:7152 msgid "This section summarizes all the options available in @code{package} declarations (@pxref{Defining Packages})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7109 +#: guix-git/doc/guix.texi:7153 #, no-wrap msgid "{Data Type} package" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7111 +#: guix-git/doc/guix.texi:7155 msgid "This is the data type representing a package recipe." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7115 +#: guix-git/doc/guix.texi:7159 msgid "The name of the package, as a string." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7116 +#: guix-git/doc/guix.texi:7160 #, no-wrap msgid "version" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7119 +#: guix-git/doc/guix.texi:7163 msgid "The version of the package, as a string. @xref{Version Numbers}, for guidelines." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7120 guix-git/doc/guix.texi:12900 -#: guix-git/doc/guix.texi:15181 guix-git/doc/guix.texi:15790 +#: guix-git/doc/guix.texi:7164 guix-git/doc/guix.texi:13257 +#: guix-git/doc/guix.texi:15538 guix-git/doc/guix.texi:16147 #, no-wrap msgid "source" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7127 +#: guix-git/doc/guix.texi:7171 msgid "An object telling how the source code for the package should be acquired. Most of the time, this is an @code{origin} object, which denotes a file fetched from the Internet (@pxref{origin Reference}). It can also be any other ``file-like'' object such as a @code{local-file}, which denotes a file from the local file system (@pxref{G-Expressions, @code{local-file}})." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7128 +#: guix-git/doc/guix.texi:7172 #, no-wrap msgid "build-system" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7131 +#: guix-git/doc/guix.texi:7175 msgid "The build system that should be used to build the package (@pxref{Build Systems})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7132 guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:7176 guix-git/doc/guix.texi:18315 #, no-wrap msgid "@code{arguments} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7135 +#: guix-git/doc/guix.texi:7179 msgid "The arguments that should be passed to the build system. This is a list, typically containing sequential keyword-value pairs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7136 +#: guix-git/doc/guix.texi:7180 #, no-wrap msgid "@code{inputs} (default: @code{'()})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7137 +#: guix-git/doc/guix.texi:7181 #, no-wrap msgid "@code{native-inputs} (default: @code{'()})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7138 +#: guix-git/doc/guix.texi:7182 #, no-wrap msgid "@code{propagated-inputs} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7139 +#: guix-git/doc/guix.texi:7183 #, no-wrap msgid "inputs, of packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7146 +#: guix-git/doc/guix.texi:7190 msgid "These fields list dependencies of the package. Each element of these lists is either a package, origin, or other ``file-like object'' (@pxref{G-Expressions}); to specify the output of that file-like object that should be used, pass a two-element list where the second element is the output (@pxref{Packages with Multiple Outputs}, for more on package outputs). For example, the list below specifies three inputs:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7150 +#: guix-git/doc/guix.texi:7194 #, no-wrap msgid "" "(list libffi libunistring\n" @@ -14306,23 +14410,23 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7154 +#: guix-git/doc/guix.texi:7198 msgid "In the example above, the @code{\"out\"} output of @code{libffi} and @code{libunistring} is used." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:7155 +#: guix-git/doc/guix.texi:7199 #, no-wrap msgid "Compatibility Note" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:7162 +#: guix-git/doc/guix.texi:7206 msgid "Until version 1.3.0, input lists were a list of tuples, where each tuple has a label for the input (a string) as its first element, a package, origin, or derivation as its second element, and optionally the name of the output thereof that should be used, which defaults to @code{\"out\"}. For example, the list below is equivalent to the one above, but using the @dfn{old input style}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7168 +#: guix-git/doc/guix.texi:7212 #, no-wrap msgid "" ";; Old input style (deprecated).\n" @@ -14332,176 +14436,186 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:7174 +#: guix-git/doc/guix.texi:7218 msgid "This style is now deprecated; it is still supported but support will be removed in a future version. It should not be used for new package definitions. @xref{Invoking guix style}, on how to migrate to the new style." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7176 +#: guix-git/doc/guix.texi:7220 #, no-wrap msgid "cross compilation, package dependencies" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7182 +#: guix-git/doc/guix.texi:7226 msgid "The distinction between @code{native-inputs} and @code{inputs} is necessary when considering cross-compilation. When cross-compiling, dependencies listed in @code{inputs} are built for the @emph{target} architecture; conversely, dependencies listed in @code{native-inputs} are built for the architecture of the @emph{build} machine." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7187 +#: guix-git/doc/guix.texi:7231 msgid "@code{native-inputs} is typically used to list tools needed at build time, but not at run time, such as Autoconf, Automake, pkg-config, Gettext, or Bison. @command{guix lint} can report likely mistakes in this area (@pxref{Invoking guix lint})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:7195 +#: guix-git/doc/guix.texi:7239 msgid "package-propagated-inputs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7195 +#: guix-git/doc/guix.texi:7239 msgid "Lastly, @code{propagated-inputs} is similar to @code{inputs}, but the specified packages will be automatically installed to profiles (@pxref{Features, the role of profiles in Guix}) alongside the package they belong to (@pxref{package-cmd-propagated-inputs, @command{guix package}}, for information on how @command{guix package} deals with propagated inputs)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7199 +#: guix-git/doc/guix.texi:7243 msgid "For example this is necessary when packaging a C/C++ library that needs headers of another library to compile, or when a pkg-config file refers to another one @i{via} its @code{Requires} field." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7206 +#: guix-git/doc/guix.texi:7250 msgid "Another example where @code{propagated-inputs} is useful is for languages that lack a facility to record the run-time search path akin to the @code{RUNPATH} of ELF files; this includes Guile, Python, Perl, and more. When packaging libraries written in those languages, ensure they can find library code they depend on at run time by listing run-time dependencies in @code{propagated-inputs} rather than @code{inputs}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7207 +#: guix-git/doc/guix.texi:7251 #, no-wrap msgid "@code{outputs} (default: @code{'(\"out\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7210 +#: guix-git/doc/guix.texi:7254 msgid "The list of output names of the package. @xref{Packages with Multiple Outputs}, for typical uses of additional outputs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7211 +#: guix-git/doc/guix.texi:7255 #, no-wrap msgid "@code{native-search-paths} (default: @code{'()})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7212 +#: guix-git/doc/guix.texi:7256 #, no-wrap msgid "@code{search-paths} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7215 -msgid "A list of @code{search-path-specification} objects describing search-path environment variables honored by the package." +#: guix-git/doc/guix.texi:7260 +msgid "A list of @code{search-path-specification} objects describing search-path environment variables honored by the package. @xref{Search Paths}, for more on search path specifications." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:7266 +msgid "As for inputs, the distinction between @code{native-search-paths} and @code{search-paths} only matters when cross-compiling. In a cross-compilation context, @code{native-search-paths} applies exclusively to native inputs whereas @code{search-paths} applies only to host inputs." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:7273 +msgid "Packages such as cross-compilers care about target inputs---for instance, our (modified) GCC cross-compiler has @env{CROSS_C_INCLUDE_PATH} in @code{search-paths}, which allows it to pick @file{.h} files for the target system and @emph{not} those of native inputs. For the majority of packages though, only @code{native-search-paths} makes sense." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7216 +#: guix-git/doc/guix.texi:7274 #, no-wrap msgid "@code{replacement} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7220 +#: guix-git/doc/guix.texi:7278 msgid "This must be either @code{#f} or a package object that will be used as a @dfn{replacement} for this package. @xref{Security Updates, grafts}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7221 guix-git/doc/guix.texi:12892 +#: guix-git/doc/guix.texi:7279 guix-git/doc/guix.texi:13249 #, no-wrap msgid "synopsis" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7223 +#: guix-git/doc/guix.texi:7281 msgid "A one-line description of the package." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7224 guix-git/doc/guix.texi:12893 -#: guix-git/doc/guix.texi:35959 guix-git/doc/guix.texi:36119 +#: guix-git/doc/guix.texi:7282 guix-git/doc/guix.texi:13250 +#: guix-git/doc/guix.texi:36449 guix-git/doc/guix.texi:36609 #, no-wrap msgid "description" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7226 +#: guix-git/doc/guix.texi:7284 msgid "A more elaborate description of the package." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7227 +#: guix-git/doc/guix.texi:7285 #, no-wrap msgid "license" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7228 +#: guix-git/doc/guix.texi:7286 #, no-wrap msgid "license, of packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7231 +#: guix-git/doc/guix.texi:7289 msgid "The license of the package; a value from @code{(guix licenses)}, or a list of such values." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7232 guix-git/doc/guix.texi:12901 +#: guix-git/doc/guix.texi:7290 guix-git/doc/guix.texi:13258 #, no-wrap msgid "home-page" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7234 +#: guix-git/doc/guix.texi:7292 msgid "The URL to the home-page of the package, as a string." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7235 +#: guix-git/doc/guix.texi:7293 #, no-wrap msgid "@code{supported-systems} (default: @code{%supported-systems})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7238 +#: guix-git/doc/guix.texi:7296 msgid "The list of systems supported by the package, as strings of the form @code{architecture-kernel}, for example @code{\"x86_64-linux\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7239 +#: guix-git/doc/guix.texi:7297 #, no-wrap msgid "@code{location} (default: source location of the @code{package} form)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7243 +#: guix-git/doc/guix.texi:7301 msgid "The source location of the package. It is useful to override this when inheriting from another package, in which case this field is not automatically corrected." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7246 +#: guix-git/doc/guix.texi:7304 #, no-wrap msgid "{Scheme Syntax} this-package" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7249 +#: guix-git/doc/guix.texi:7307 msgid "When used in the @emph{lexical scope} of a package field definition, this identifier resolves to the package being defined." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7252 +#: guix-git/doc/guix.texi:7310 msgid "The example below shows how to add a package as a native input of itself when cross-compiling:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7257 +#: guix-git/doc/guix.texi:7315 #, no-wrap msgid "" "(package\n" @@ -14511,7 +14625,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7263 +#: guix-git/doc/guix.texi:7321 #, no-wrap msgid "" " ;; When cross-compiled, Guile, for example, depends on\n" @@ -14522,51 +14636,51 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7266 +#: guix-git/doc/guix.texi:7324 msgid "It is an error to refer to @code{this-package} outside a package definition." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7270 +#: guix-git/doc/guix.texi:7328 msgid "The following helper procedures are provided to help deal with package inputs." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7271 +#: guix-git/doc/guix.texi:7329 #, no-wrap msgid "{Scheme Procedure} lookup-package-input @var{package} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:7272 +#: guix-git/doc/guix.texi:7330 #, no-wrap msgid "{Scheme Procedure} lookup-package-native-input @var{package} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:7273 +#: guix-git/doc/guix.texi:7331 #, no-wrap msgid "{Scheme Procedure} lookup-package-propagated-input @var{package} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:7274 +#: guix-git/doc/guix.texi:7332 #, no-wrap msgid "{Scheme Procedure} lookup-package-direct-input @var{package} @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7277 +#: guix-git/doc/guix.texi:7335 msgid "Look up @var{name} among @var{package}'s inputs (or native, propagated, or direct inputs). Return it if found, @code{#f} otherwise." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7280 +#: guix-git/doc/guix.texi:7338 msgid "@var{name} is the name of a package depended on. Here's how you might use it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7283 +#: guix-git/doc/guix.texi:7341 #, no-wrap msgid "" "(use-modules (guix packages) (gnu packages base))\n" @@ -14574,7 +14688,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7286 +#: guix-git/doc/guix.texi:7344 #, no-wrap msgid "" "(lookup-package-direct-input coreutils \"gmp\")\n" @@ -14582,45 +14696,45 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7290 +#: guix-git/doc/guix.texi:7348 msgid "In this example we obtain the @code{gmp} package that is among the direct inputs of @code{coreutils}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7292 +#: guix-git/doc/guix.texi:7350 #, no-wrap msgid "development inputs, of a package" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7293 +#: guix-git/doc/guix.texi:7351 #, no-wrap msgid "implicit inputs, of a package" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7298 +#: guix-git/doc/guix.texi:7356 msgid "Sometimes you will want to obtain the list of inputs needed to @emph{develop} a package---all the inputs that are visible when the package is compiled. This is what the @code{package-development-inputs} procedure returns." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7299 +#: guix-git/doc/guix.texi:7357 #, no-wrap msgid "{Scheme Procedure} package-development-inputs @var{package} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7306 +#: guix-git/doc/guix.texi:7364 msgid "[@var{system}] [#:target #f] Return the list of inputs required by @var{package} for development purposes on @var{system}. When @var{target} is true, return the inputs needed to cross-compile @var{package} from @var{system} to @var{triplet}, where @var{triplet} is a triplet such as @code{\"aarch64-linux-gnu\"}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7310 +#: guix-git/doc/guix.texi:7368 msgid "Note that the result includes both explicit inputs and implicit inputs---inputs automatically added by the build system (@pxref{Build Systems}). Let us take the @code{hello} package to illustrate that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7313 +#: guix-git/doc/guix.texi:7371 #, no-wrap msgid "" "(use-modules (gnu packages base) (guix packages))\n" @@ -14628,7 +14742,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7316 +#: guix-git/doc/guix.texi:7374 #, no-wrap msgid "" "hello\n" @@ -14637,7 +14751,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7319 +#: guix-git/doc/guix.texi:7377 #, no-wrap msgid "" "(package-direct-inputs hello)\n" @@ -14646,7 +14760,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7322 +#: guix-git/doc/guix.texi:7380 #, no-wrap msgid "" "(package-development-inputs hello)\n" @@ -14654,39 +14768,39 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7331 +#: guix-git/doc/guix.texi:7389 msgid "In this example, @code{package-direct-inputs} returns the empty list, because @code{hello} has zero explicit dependencies. Conversely, @code{package-development-inputs} includes inputs implicitly added by @code{gnu-build-system} that are required to build @code{hello}: tar, gzip, GCC, libc, Bash, and more. To visualize it, @command{guix graph hello} would show you explicit inputs, whereas @command{guix graph -t bag hello} would include implicit inputs (@pxref{Invoking guix graph})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7337 +#: guix-git/doc/guix.texi:7395 msgid "Because packages are regular Scheme objects that capture a complete dependency graph and associated build procedures, it is often useful to write procedures that take a package and return a modified version thereof according to some parameters. Below are a few examples." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7338 +#: guix-git/doc/guix.texi:7396 #, no-wrap msgid "tool chain, choosing a package's tool chain" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7339 +#: guix-git/doc/guix.texi:7397 #, no-wrap msgid "{Scheme Procedure} package-with-c-toolchain @var{package} @var{toolchain}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7344 +#: guix-git/doc/guix.texi:7402 msgid "Return a variant of @var{package} that uses @var{toolchain} instead of the default GNU C/C++ toolchain. @var{toolchain} must be a list of inputs (label/package tuples) providing equivalent functionality, such as the @code{gcc-toolchain} package." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7348 +#: guix-git/doc/guix.texi:7406 msgid "The example below returns a variant of the @code{hello} package built with GCC@tie{}10.x and the rest of the GNU tool chain (Binutils and the GNU C Library) instead of the default tool chain:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7352 +#: guix-git/doc/guix.texi:7410 #, no-wrap msgid "" "(let ((toolchain (specification->package \"gcc-toolchain@@10\")))\n" @@ -14694,197 +14808,197 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7360 +#: guix-git/doc/guix.texi:7418 msgid "The build tool chain is part of the @dfn{implicit inputs} of packages---it's usually not listed as part of the various ``inputs'' fields and is instead pulled in by the build system. Consequently, this procedure works by changing the build system of @var{package} so that it pulls in @var{toolchain} instead of the defaults. @ref{Build Systems}, for more on build systems." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:7363 +#: guix-git/doc/guix.texi:7421 #, no-wrap msgid "@code{origin} Reference" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7371 +#: guix-git/doc/guix.texi:7429 msgid "This section documents @dfn{origins}. An @code{origin} declaration specifies data that must be ``produced''---downloaded, usually---and whose content hash is known in advance. Origins are primarily used to represent the source code of packages (@pxref{Defining Packages}). For that reason, the @code{origin} form allows you to declare patches to apply to the original source code as well as code snippets to modify it." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7372 +#: guix-git/doc/guix.texi:7430 #, no-wrap msgid "{Data Type} origin" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7374 +#: guix-git/doc/guix.texi:7432 msgid "This is the data type representing a source code origin." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7376 guix-git/doc/guix.texi:26552 +#: guix-git/doc/guix.texi:7434 guix-git/doc/guix.texi:26889 #, no-wrap msgid "uri" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7381 +#: guix-git/doc/guix.texi:7439 msgid "An object containing the URI of the source. The object type depends on the @code{method} (see below). For example, when using the @var{url-fetch} method of @code{(guix download)}, the valid @code{uri} values are: a URL represented as a string, or a list thereof." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7382 +#: guix-git/doc/guix.texi:7440 #, no-wrap msgid "fixed-output derivations, for download" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7383 +#: guix-git/doc/guix.texi:7441 #, no-wrap msgid "method" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7390 +#: guix-git/doc/guix.texi:7448 msgid "A monadic procedure that handles the given URI@. The procedure must accept at least three arguments: the value of the @code{uri} field and the hash algorithm and hash value specified by the @code{hash} field. It must return a store item or a derivation in the store monad (@pxref{The Store Monad}); most methods return a fixed-output derivation (@pxref{Derivations})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7394 +#: guix-git/doc/guix.texi:7452 msgid "Commonly used methods include @code{url-fetch}, which fetches data from a URL, and @code{git-fetch}, which fetches data from a Git repository (see below)." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7395 +#: guix-git/doc/guix.texi:7453 #, no-wrap msgid "sha256" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7399 +#: guix-git/doc/guix.texi:7457 msgid "A bytevector containing the SHA-256 hash of the source. This is equivalent to providing a @code{content-hash} SHA256 object in the @code{hash} field described below." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7400 +#: guix-git/doc/guix.texi:7458 #, no-wrap msgid "hash" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7403 +#: guix-git/doc/guix.texi:7461 msgid "The @code{content-hash} object of the source---see below for how to use @code{content-hash}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7407 +#: guix-git/doc/guix.texi:7465 msgid "You can obtain this information using @code{guix download} (@pxref{Invoking guix download}) or @code{guix hash} (@pxref{Invoking guix hash})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7408 +#: guix-git/doc/guix.texi:7466 #, no-wrap msgid "@code{file-name} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7414 +#: guix-git/doc/guix.texi:7472 msgid "The file name under which the source code should be saved. When this is @code{#f}, a sensible default value will be used in most cases. In case the source is fetched from a URL, the file name from the URL will be used. For version control checkouts, it is recommended to provide the file name explicitly because the default is not very descriptive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7415 +#: guix-git/doc/guix.texi:7473 #, no-wrap msgid "@code{patches} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7418 +#: guix-git/doc/guix.texi:7476 msgid "A list of file names, origins, or file-like objects (@pxref{G-Expressions, file-like objects}) pointing to patches to be applied to the source." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7422 +#: guix-git/doc/guix.texi:7480 msgid "This list of patches must be unconditional. In particular, it cannot depend on the value of @code{%current-system} or @code{%current-target-system}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7423 +#: guix-git/doc/guix.texi:7481 #, no-wrap msgid "@code{snippet} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7427 +#: guix-git/doc/guix.texi:7485 msgid "A G-expression (@pxref{G-Expressions}) or S-expression that will be run in the source directory. This is a convenient way to modify the source, sometimes more convenient than a patch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7428 +#: guix-git/doc/guix.texi:7486 #, no-wrap msgid "@code{patch-flags} (default: @code{'(\"-p1\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7431 +#: guix-git/doc/guix.texi:7489 msgid "A list of command-line flags that should be passed to the @code{patch} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7432 +#: guix-git/doc/guix.texi:7490 #, no-wrap msgid "@code{patch-inputs} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7436 +#: guix-git/doc/guix.texi:7494 msgid "Input packages or derivations to the patching process. When this is @code{#f}, the usual set of inputs necessary for patching are provided, such as GNU@tie{}Patch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7437 guix-git/doc/guix.texi:26425 +#: guix-git/doc/guix.texi:7495 guix-git/doc/guix.texi:26762 #, no-wrap msgid "@code{modules} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7440 +#: guix-git/doc/guix.texi:7498 msgid "A list of Guile modules that should be loaded during the patching process and while running the code in the @code{snippet} field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7441 +#: guix-git/doc/guix.texi:7499 #, no-wrap msgid "@code{patch-guile} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7444 +#: guix-git/doc/guix.texi:7502 msgid "The Guile package that should be used in the patching process. When this is @code{#f}, a sensible default is used." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7447 +#: guix-git/doc/guix.texi:7505 #, no-wrap msgid "{Data Type} content-hash @var{value} [@var{algorithm}]" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7451 +#: guix-git/doc/guix.texi:7509 msgid "Construct a content hash object for the given @var{algorithm}, and with @var{value} as its hash value. When @var{algorithm} is omitted, assume it is @code{sha256}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7454 +#: guix-git/doc/guix.texi:7512 msgid "@var{value} can be a literal string, in which case it is base32-decoded, or it can be a bytevector." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7456 +#: guix-git/doc/guix.texi:7514 msgid "The following forms are all equivalent:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7465 +#: guix-git/doc/guix.texi:7523 #, no-wrap msgid "" "(content-hash \"05zxkyz9bv3j9h0xyid1rhvh3klhsmrpkf3bcs6frvlgyr2gwilj\")\n" @@ -14897,103 +15011,103 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7470 +#: guix-git/doc/guix.texi:7528 msgid "Technically, @code{content-hash} is currently implemented as a macro. It performs sanity checks at macro-expansion time, when possible, such as ensuring that @var{value} has the right size for @var{algorithm}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7476 +#: guix-git/doc/guix.texi:7534 msgid "As we have seen above, how exactly the data an origin refers to is retrieved is determined by its @code{method} field. The @code{(guix download)} module provides the most common method, @code{url-fetch}, described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7477 +#: guix-git/doc/guix.texi:7535 #, no-wrap msgid "{Scheme Procedure} url-fetch @var{url} @var{hash-algo} @var{hash} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7485 +#: guix-git/doc/guix.texi:7543 msgid "[name] [#:executable? #f] Return a fixed-output derivation that fetches data from @var{url} (a string, or a list of strings denoting alternate URLs), which is expected to have hash @var{hash} of type @var{hash-algo} (a symbol). By default, the file name is the base name of URL; optionally, @var{name} can specify a different file name. When @var{executable?} is true, make the downloaded file executable." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7488 +#: guix-git/doc/guix.texi:7546 msgid "When one of the URL starts with @code{mirror://}, then its host part is interpreted as the name of a mirror scheme, taken from @file{%mirror-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7491 +#: guix-git/doc/guix.texi:7549 msgid "Alternatively, when URL starts with @code{file://}, return the corresponding file name in the store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7497 +#: guix-git/doc/guix.texi:7555 msgid "Likewise, the @code{(guix git-download)} module defines the @code{git-fetch} origin method, which fetches data from a Git version control repository, and the @code{git-reference} data type to describe the repository and revision to fetch." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7498 +#: guix-git/doc/guix.texi:7556 #, no-wrap msgid "{Scheme Procedure} git-fetch @var{ref} @var{hash-algo} @var{hash}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7503 +#: guix-git/doc/guix.texi:7561 msgid "Return a fixed-output derivation that fetches @var{ref}, a @code{} object. The output is expected to have recursive hash @var{hash} of type @var{hash-algo} (a symbol). Use @var{name} as the file name, or a generic name if @code{#f}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7505 +#: guix-git/doc/guix.texi:7563 #, no-wrap msgid "{Data Type} git-reference" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7508 +#: guix-git/doc/guix.texi:7566 msgid "This data type represents a Git reference for @code{git-fetch} to retrieve." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7510 guix-git/doc/guix.texi:24186 +#: guix-git/doc/guix.texi:7568 guix-git/doc/guix.texi:24548 #, no-wrap msgid "url" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7512 +#: guix-git/doc/guix.texi:7570 msgid "The URL of the Git repository to clone." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7513 +#: guix-git/doc/guix.texi:7571 #, no-wrap msgid "commit" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7518 +#: guix-git/doc/guix.texi:7576 msgid "This string denotes either the commit to fetch (a hexadecimal string), or the tag to fetch. You can also use a ``short'' commit ID or a @command{git describe} style identifier such as @code{v1.0.1-10-g58d7909c97}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7519 +#: guix-git/doc/guix.texi:7577 #, no-wrap msgid "@code{recursive?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7521 +#: guix-git/doc/guix.texi:7579 msgid "This Boolean indicates whether to recursively fetch Git sub-modules." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7525 +#: guix-git/doc/guix.texi:7583 msgid "The example below denotes the @code{v2.10} tag of the GNU@tie{}Hello repository:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7530 +#: guix-git/doc/guix.texi:7588 #, no-wrap msgid "" "(git-reference\n" @@ -15002,12 +15116,12 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7534 +#: guix-git/doc/guix.texi:7592 msgid "This is equivalent to the reference below, which explicitly names the commit:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7539 +#: guix-git/doc/guix.texi:7597 #, no-wrap msgid "" "(git-reference\n" @@ -15016,56 +15130,56 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7545 +#: guix-git/doc/guix.texi:7603 msgid "For Mercurial repositories, the module @code{(guix hg-download)} defines the @code{hg-fetch} origin method and @code{hg-reference} data type for support of the Mercurial version control system." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7546 +#: guix-git/doc/guix.texi:7604 #, no-wrap msgid "{Scheme Procedure} hg-fetch @var{ref} @var{hash-algo} @var{hash} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7552 +#: guix-git/doc/guix.texi:7610 msgid "[name] Return a fixed-output derivation that fetches @var{ref}, a @code{} object. The output is expected to have recursive hash @var{hash} of type @var{hash-algo} (a symbol). Use @var{name} as the file name, or a generic name if @code{#false}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7557 +#: guix-git/doc/guix.texi:7615 #, no-wrap msgid "customizing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7558 +#: guix-git/doc/guix.texi:7616 #, no-wrap msgid "variants, of packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7568 +#: guix-git/doc/guix.texi:7626 msgid "One of the nice things with Guix is that, given a package definition, you can easily @emph{derive} variants of that package---for a different upstream version, with different dependencies, different compilation options, and so on. Some of these custom packages can be defined straight from the command line (@pxref{Package Transformation Options}). This section describes how to define package variants in code. This can be useful in ``manifests'' (@pxref{profile-manifest, @option{--manifest}}) and in your own package collection (@pxref{Creating a Channel}), among others!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7569 +#: guix-git/doc/guix.texi:7627 #, no-wrap msgid "inherit, for package definitions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7576 +#: guix-git/doc/guix.texi:7634 msgid "As discussed earlier, packages are first-class objects in the Scheme language. The @code{(guix packages)} module provides the @code{package} construct to define new package objects (@pxref{package Reference}). The easiest way to define a package variant is using the @code{inherit} keyword together with @code{package}. This allows you to inherit from a package definition while overriding the fields you want." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7581 +#: guix-git/doc/guix.texi:7639 msgid "For example, given the @code{hello} variable, which contains a definition for the current version of GNU@tie{}Hello, here's how you would define a variant for version 2.2 (released in 2006, it's vintage!):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7584 +#: guix-git/doc/guix.texi:7642 #, no-wrap msgid "" "(use-modules (gnu packages base)) ;for 'hello'\n" @@ -15073,7 +15187,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7596 +#: guix-git/doc/guix.texi:7654 #, no-wrap msgid "" "(define hello-2.2\n" @@ -15090,17 +15204,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7605 +#: guix-git/doc/guix.texi:7663 msgid "The example above corresponds to what the @option{--with-source} package transformation option does. Essentially @code{hello-2.2} preserves all the fields of @code{hello}, except @code{version} and @code{source}, which it overrides. Note that the original @code{hello} variable is still there, in the @code{(gnu packages base)} module, unchanged. When you define a custom package like this, you are really @emph{adding} a new package definition; the original one remains available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7611 +#: guix-git/doc/guix.texi:7669 msgid "You can just as well define variants with a different set of dependencies than the original package. For example, the default @code{gdb} package depends on @code{guile}, but since that is an optional dependency, you can define a variant that removes that dependency like so:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7614 +#: guix-git/doc/guix.texi:7672 #, no-wrap msgid "" "(use-modules (gnu packages gdb)) ;for 'gdb'\n" @@ -15108,7 +15222,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7620 +#: guix-git/doc/guix.texi:7678 #, no-wrap msgid "" "(define gdb-sans-guile\n" @@ -15119,61 +15233,61 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7626 +#: guix-git/doc/guix.texi:7684 msgid "The @code{modify-inputs} form above removes the @code{\"guile\"} package from the @code{inputs} field of @code{gdb}. The @code{modify-inputs} macro is a helper that can prove useful anytime you want to remove, add, or replace package inputs." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7627 +#: guix-git/doc/guix.texi:7685 #, no-wrap msgid "{Scheme Syntax} modify-inputs @var{inputs} @var{clauses}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7631 +#: guix-git/doc/guix.texi:7689 msgid "Modify the given package inputs, as returned by @code{package-inputs} & co., according to the given clauses. Each clause must have one of the following forms:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:7633 +#: guix-git/doc/guix.texi:7691 #, no-wrap msgid "(delete @var{name}@dots{})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7635 +#: guix-git/doc/guix.texi:7693 msgid "Delete from the inputs packages with the given @var{name}s (strings)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7636 +#: guix-git/doc/guix.texi:7694 #, no-wrap msgid "(append @var{package}@dots{})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7638 +#: guix-git/doc/guix.texi:7696 msgid "Add @var{package}s to the end of the input list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7639 +#: guix-git/doc/guix.texi:7697 #, no-wrap msgid "(prepend @var{package}@dots{})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7641 +#: guix-git/doc/guix.texi:7699 msgid "Add @var{package}s to the front of the input list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7645 +#: guix-git/doc/guix.texi:7703 msgid "The example below removes the GMP and ACL inputs of Coreutils and adds libcap to the back of the input list:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7650 +#: guix-git/doc/guix.texi:7708 #, no-wrap msgid "" "(modify-inputs (package-inputs coreutils)\n" @@ -15182,12 +15296,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7654 +#: guix-git/doc/guix.texi:7712 msgid "The example below replaces the @code{guile} package from the inputs of @code{guile-redis} with @code{guile-2.2}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7658 +#: guix-git/doc/guix.texi:7716 #, no-wrap msgid "" "(modify-inputs (package-inputs guile-redis)\n" @@ -15195,17 +15309,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7662 +#: guix-git/doc/guix.texi:7720 msgid "The last type of clause is @code{prepend}, to add inputs to the front of the list." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7671 +#: guix-git/doc/guix.texi:7729 msgid "In some cases, you may find it useful to write functions (``procedures'', in Scheme parlance) that return a package based on some parameters. For example, consider the @code{luasocket} library for the Lua programming language. We want to create @code{luasocket} packages for major versions of Lua. One way to do that is to define a procedure that takes a Lua package and returns a @code{luasocket} package that depends on it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7681 +#: guix-git/doc/guix.texi:7739 #, no-wrap msgid "" "(define (make-lua-socket name lua)\n" @@ -15220,7 +15334,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7684 +#: guix-git/doc/guix.texi:7742 #, no-wrap msgid "" "(define-public lua5.1-socket\n" @@ -15229,7 +15343,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7687 +#: guix-git/doc/guix.texi:7745 #, no-wrap msgid "" "(define-public lua5.2-socket\n" @@ -15237,34 +15351,34 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7695 +#: guix-git/doc/guix.texi:7753 msgid "Here we have defined packages @code{lua5.1-socket} and @code{lua5.2-socket} by calling @code{make-lua-socket} with different arguments. @xref{Procedures,,, guile, GNU Guile Reference Manual}, for more info on procedures. Having top-level public definitions for these two packages means that they can be referred to from the command line (@pxref{Package Modules})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7696 +#: guix-git/doc/guix.texi:7754 #, no-wrap msgid "package transformations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7701 +#: guix-git/doc/guix.texi:7759 msgid "These are pretty simple package variants. As a convenience, the @code{(guix transformations)} module provides a high-level interface that directly maps to the more sophisticated package transformation options (@pxref{Package Transformation Options}):" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7702 +#: guix-git/doc/guix.texi:7760 #, no-wrap msgid "{Scheme Procedure} options->transformation @var{opts}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7706 +#: guix-git/doc/guix.texi:7764 msgid "Return a procedure that, when passed an object to build (package, derivation, etc.), applies the transformations specified by @var{opts} and returns the resulting objects. @var{opts} must be a list of symbol/string pairs such as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7710 +#: guix-git/doc/guix.texi:7768 #, no-wrap msgid "" "((with-branch . \"guile-gcrypt=master\")\n" @@ -15272,17 +15386,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7714 +#: guix-git/doc/guix.texi:7772 msgid "Each symbol names a transformation and the corresponding string is an argument to that transformation." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7717 +#: guix-git/doc/guix.texi:7775 msgid "For instance, a manifest equivalent to this command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:7722 +#: guix-git/doc/guix.texi:7780 #, no-wrap msgid "" "guix build guix \\\n" @@ -15291,12 +15405,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7726 +#: guix-git/doc/guix.texi:7784 msgid "... would look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7729 +#: guix-git/doc/guix.texi:7787 #, no-wrap msgid "" "(use-modules (guix transformations))\n" @@ -15304,7 +15418,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7735 +#: guix-git/doc/guix.texi:7793 #, no-wrap msgid "" "(define transform\n" @@ -15316,7 +15430,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7738 +#: guix-git/doc/guix.texi:7796 #, no-wrap msgid "" "(packages->manifest\n" @@ -15324,50 +15438,50 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7740 +#: guix-git/doc/guix.texi:7798 #, no-wrap msgid "input rewriting" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7741 +#: guix-git/doc/guix.texi:7799 #, no-wrap msgid "dependency graph rewriting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7748 +#: guix-git/doc/guix.texi:7806 msgid "The @code{options->transformation} procedure is convenient, but it's perhaps also not as flexible as you may like. How is it implemented? The astute reader probably noticed that most package transformation options go beyond the superficial changes shown in the first examples of this section: they involve @dfn{input rewriting}, whereby the dependency graph of a package is rewritten by replacing specific inputs by others." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7752 +#: guix-git/doc/guix.texi:7810 msgid "Dependency graph rewriting, for the purposes of swapping packages in the graph, is what the @code{package-input-rewriting} procedure in @code{(guix packages)} implements." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7753 +#: guix-git/doc/guix.texi:7811 #, no-wrap msgid "{Scheme Procedure} package-input-rewriting @var{replacements} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7760 +#: guix-git/doc/guix.texi:7818 msgid "[@var{rewrite-name}] [#:deep? #t] Return a procedure that, when passed a package, replaces its direct and indirect dependencies, including implicit inputs when @var{deep?} is true, according to @var{replacements}. @var{replacements} is a list of package pairs; the first element of each pair is the package to replace, and the second one is the replacement." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7763 +#: guix-git/doc/guix.texi:7821 msgid "Optionally, @var{rewrite-name} is a one-argument procedure that takes the name of a package and returns its new name after rewrite." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7767 guix-git/doc/guix.texi:11216 +#: guix-git/doc/guix.texi:7825 guix-git/doc/guix.texi:11530 msgid "Consider this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7773 +#: guix-git/doc/guix.texi:7831 #, no-wrap msgid "" "(define libressl-instead-of-openssl\n" @@ -15378,7 +15492,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7776 +#: guix-git/doc/guix.texi:7834 #, no-wrap msgid "" "(define git-with-libressl\n" @@ -15386,33 +15500,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7784 +#: guix-git/doc/guix.texi:7842 msgid "Here we first define a rewriting procedure that replaces @var{openssl} with @var{libressl}. Then we use it to define a @dfn{variant} of the @var{git} package that uses @var{libressl} instead of @var{openssl}. This is exactly what the @option{--with-input} command-line option does (@pxref{Package Transformation Options, @option{--with-input}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7787 +#: guix-git/doc/guix.texi:7845 msgid "The following variant of @code{package-input-rewriting} can match packages to be replaced by name rather than by identity." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7788 +#: guix-git/doc/guix.texi:7846 #, no-wrap msgid "{Scheme Procedure} package-input-rewriting/spec @var{replacements} [#:deep? #t]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7795 +#: guix-git/doc/guix.texi:7853 msgid "Return a procedure that, given a package, applies the given @var{replacements} to all the package graph, including implicit inputs unless @var{deep?} is false. @var{replacements} is a list of spec/procedures pair; each spec is a package specification such as @code{\"gcc\"} or @code{\"guile@@2\"}, and each procedure takes a matching package and returns a replacement for that package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7798 +#: guix-git/doc/guix.texi:7856 msgid "The example above could be rewritten this way:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7803 +#: guix-git/doc/guix.texi:7861 #, no-wrap msgid "" "(define libressl-instead-of-openssl\n" @@ -15421,872 +15535,872 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7808 +#: guix-git/doc/guix.texi:7866 msgid "The key difference here is that, this time, packages are matched by spec and not by identity. In other words, any package in the graph that is called @code{openssl} will be replaced." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7812 +#: guix-git/doc/guix.texi:7870 msgid "A more generic procedure to rewrite a package dependency graph is @code{package-mapping}: it supports arbitrary changes to nodes in the graph." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7813 +#: guix-git/doc/guix.texi:7871 #, no-wrap msgid "{Scheme Procedure} package-mapping @var{proc} [@var{cut?}] [#:deep? #f]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7818 +#: guix-git/doc/guix.texi:7876 msgid "Return a procedure that, given a package, applies @var{proc} to all the packages depended on and returns the resulting package. The procedure stops recursion when @var{cut?} returns true for a given package. When @var{deep?} is true, @var{proc} is applied to implicit inputs as well." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7824 +#: guix-git/doc/guix.texi:7882 #, no-wrap msgid "build system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7829 +#: guix-git/doc/guix.texi:7887 msgid "Each package definition specifies a @dfn{build system} and arguments for that build system (@pxref{Defining Packages}). This @code{build-system} field represents the build procedure of the package, as well as implicit dependencies of that build procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7833 +#: guix-git/doc/guix.texi:7891 msgid "Build systems are @code{} objects. The interface to create and manipulate them is provided by the @code{(guix build-system)} module, and actual build systems are exported by specific modules." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7834 +#: guix-git/doc/guix.texi:7892 #, no-wrap msgid "bag (low-level package representation)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7844 +#: guix-git/doc/guix.texi:7902 msgid "Under the hood, build systems first compile package objects to @dfn{bags}. A @dfn{bag} is like a package, but with less ornamentation---in other words, a bag is a lower-level representation of a package, which includes all the inputs of that package, including some that were implicitly added by the build system. This intermediate representation is then compiled to a derivation (@pxref{Derivations}). The @code{package-with-c-toolchain} is an example of a way to change the implicit inputs that a package's build system pulls in (@pxref{package Reference, @code{package-with-c-toolchain}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7852 +#: guix-git/doc/guix.texi:7910 msgid "Build systems accept an optional list of @dfn{arguments}. In package definitions, these are passed @i{via} the @code{arguments} field (@pxref{Defining Packages}). They are typically keyword arguments (@pxref{Optional Arguments, keyword arguments in Guile,, guile, GNU Guile Reference Manual}). The value of these arguments is usually evaluated in the @dfn{build stratum}---i.e., by a Guile process launched by the daemon (@pxref{Derivations})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7856 +#: guix-git/doc/guix.texi:7914 msgid "The main build system is @code{gnu-build-system}, which implements the standard build procedure for GNU and many other packages. It is provided by the @code{(guix build-system gnu)} module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7857 +#: guix-git/doc/guix.texi:7915 #, no-wrap msgid "{Scheme Variable} gnu-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7861 +#: guix-git/doc/guix.texi:7919 msgid "@code{gnu-build-system} represents the GNU Build System, and variants thereof (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7862 guix-git/doc/guix.texi:8812 -#: guix-git/doc/guix.texi:9294 +#: guix-git/doc/guix.texi:7920 guix-git/doc/guix.texi:8869 +#: guix-git/doc/guix.texi:9429 #, no-wrap msgid "build phases" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7869 +#: guix-git/doc/guix.texi:7927 msgid "In a nutshell, packages using it are configured, built, and installed with the usual @code{./configure && make && make check && make install} command sequence. In practice, a few additional steps are often needed. All these steps are split up in separate @dfn{phases}. @xref{Build Phases}, for more info on build phases and ways to customize them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7876 +#: guix-git/doc/guix.texi:7934 msgid "In addition, this build system ensures that the ``standard'' environment for GNU packages is available. This includes tools such as GCC, libc, Coreutils, Bash, Make, Diffutils, grep, and sed (see the @code{(guix build-system gnu)} module for a complete list). We call these the @dfn{implicit inputs} of a package, because package definitions do not have to mention them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7880 +#: guix-git/doc/guix.texi:7938 msgid "This build system supports a number of keyword arguments, which can be passed @i{via} the @code{arguments} field of a package. Here are some of the main parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:7882 +#: guix-git/doc/guix.texi:7940 #, no-wrap msgid "#:phases" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7885 +#: guix-git/doc/guix.texi:7943 msgid "This argument specifies build-side code that evaluates to an alist of build phases. @xref{Build Phases}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7886 +#: guix-git/doc/guix.texi:7944 #, no-wrap msgid "#:configure-flags" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7889 +#: guix-git/doc/guix.texi:7947 msgid "This is a list of flags (strings) passed to the @command{configure} script. @xref{Defining Packages}, for an example." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7890 +#: guix-git/doc/guix.texi:7948 #, no-wrap msgid "#:make-flags" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7894 +#: guix-git/doc/guix.texi:7952 msgid "This list of strings contains flags passed as arguments to @command{make} invocations in the @code{build}, @code{check}, and @code{install} phases." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7895 +#: guix-git/doc/guix.texi:7953 #, no-wrap msgid "#:out-of-source?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7898 +#: guix-git/doc/guix.texi:7956 msgid "This Boolean, @code{#f} by default, indicates whether to run builds in a build directory separate from the source tree." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7903 +#: guix-git/doc/guix.texi:7961 msgid "When it is true, the @code{configure} phase creates a separate build directory, changes to that directory, and runs the @code{configure} script from there. This is useful for packages that require it, such as @code{glibc}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7904 +#: guix-git/doc/guix.texi:7962 #, no-wrap msgid "#:tests?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7907 +#: guix-git/doc/guix.texi:7965 msgid "This Boolean, @code{#t} by default, indicates whether the @code{check} phase should run the package's test suite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7908 +#: guix-git/doc/guix.texi:7966 #, no-wrap msgid "#:test-target" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7911 +#: guix-git/doc/guix.texi:7969 msgid "This string, @code{\"check\"} by default, gives the name of the makefile target used by the @code{check} phase." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7912 +#: guix-git/doc/guix.texi:7970 #, no-wrap msgid "#:parallel-build?" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7913 +#: guix-git/doc/guix.texi:7971 #, no-wrap msgid "#:parallel-tests?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7920 +#: guix-git/doc/guix.texi:7978 msgid "These Boolean values specify whether to build, respectively run the test suite, in parallel, with the @code{-j} flag of @command{make}. When they are true, @code{make} is passed @code{-j@var{n}}, where @var{n} is the number specified as the @option{--cores} option of @command{guix-daemon} or that of the @command{guix} client command (@pxref{Common Build Options, @option{--cores}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7921 +#: guix-git/doc/guix.texi:7979 #, no-wrap msgid "RUNPATH, validation" msgstr "" #. type: item -#: guix-git/doc/guix.texi:7922 +#: guix-git/doc/guix.texi:7980 #, no-wrap msgid "#:validate-runpath?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7926 +#: guix-git/doc/guix.texi:7984 msgid "This Boolean, @code{#t} by default, determines whether to ``validate'' the @code{RUNPATH} of ELF binaries (@code{.so} shared libraries as well as executables) previously installed by the @code{install} phase." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7934 +#: guix-git/doc/guix.texi:7992 msgid "This validation step consists in making sure that all the shared libraries needed by an ELF binary, which are listed as @code{DT_NEEDED} entries in its @code{PT_DYNAMIC} segment, appear in the @code{DT_RUNPATH} entry of that binary. In other words, it ensures that running or using those binaries will not result in a ``file not found'' error at run time. @xref{Options, @option{-rpath},, ld, The GNU Linker}, for more information on @code{RUNPATH}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7935 +#: guix-git/doc/guix.texi:7993 #, no-wrap msgid "#:substitutable?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7939 +#: guix-git/doc/guix.texi:7997 msgid "This Boolean, @code{#t} by default, tells whether the package outputs should be substitutable---i.e., whether users should be able to obtain substitutes for them instead of building locally (@pxref{Substitutes})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7940 +#: guix-git/doc/guix.texi:7998 #, no-wrap msgid "#:allowed-references" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7941 +#: guix-git/doc/guix.texi:7999 #, no-wrap msgid "#:disallowed-references" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7946 +#: guix-git/doc/guix.texi:8004 msgid "When true, these arguments must be a list of dependencies that must not appear among the references of the build results. If, upon build completion, some of these references are retained, the build process fails." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7951 +#: guix-git/doc/guix.texi:8009 msgid "This is useful to ensure that a package does not erroneously keep a reference to some of it build-time inputs, in cases where doing so would, for example, unnecessarily increase its size (@pxref{Invoking guix size})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7954 +#: guix-git/doc/guix.texi:8012 msgid "Most other build systems support these keyword arguments." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7961 +#: guix-git/doc/guix.texi:8019 msgid "Other @code{} objects are defined to support other conventions and tools used by free software packages. They inherit most of @code{gnu-build-system}, and differ mainly in the set of inputs implicitly added to the build process, and in the list of phases executed. Some of these build systems are listed below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7962 +#: guix-git/doc/guix.texi:8020 #, no-wrap msgid "{Scheme Variable} ant-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7966 +#: guix-git/doc/guix.texi:8024 msgid "This variable is exported by @code{(guix build-system ant)}. It implements the build procedure for Java packages that can be built with @url{https://ant.apache.org/, Ant build tool}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7971 +#: guix-git/doc/guix.texi:8029 msgid "It adds both @code{ant} and the @dfn{Java Development Kit} (JDK) as provided by the @code{icedtea} package to the set of inputs. Different packages can be specified with the @code{#:ant} and @code{#:jdk} parameters, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7977 +#: guix-git/doc/guix.texi:8035 msgid "When the original package does not provide a suitable Ant build file, the parameter @code{#:jar-name} can be used to generate a minimal Ant build file @file{build.xml} with tasks to build the specified jar archive. In this case the parameter @code{#:source-dir} can be used to specify the source sub-directory, defaulting to ``src''." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7985 +#: guix-git/doc/guix.texi:8043 msgid "The @code{#:main-class} parameter can be used with the minimal ant buildfile to specify the main class of the resulting jar. This makes the jar file executable. The @code{#:test-include} parameter can be used to specify the list of junit tests to run. It defaults to @code{(list \"**/*Test.java\")}. The @code{#:test-exclude} can be used to disable some tests. It defaults to @code{(list \"**/Abstract*.java\")}, because abstract classes cannot be run as tests." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7989 +#: guix-git/doc/guix.texi:8047 msgid "The parameter @code{#:build-target} can be used to specify the Ant task that should be run during the @code{build} phase. By default the ``jar'' task will be run." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7992 +#: guix-git/doc/guix.texi:8050 #, no-wrap msgid "{Scheme Variable} android-ndk-build-system" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7993 +#: guix-git/doc/guix.texi:8051 #, no-wrap msgid "Android distribution" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7994 +#: guix-git/doc/guix.texi:8052 #, no-wrap msgid "Android NDK build system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7998 +#: guix-git/doc/guix.texi:8056 msgid "This variable is exported by @code{(guix build-system android-ndk)}. It implements a build procedure for Android NDK (native development kit) packages using a Guix-specific build process." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8002 +#: guix-git/doc/guix.texi:8060 msgid "The build system assumes that packages install their public interface (header) files to the subdirectory @file{include} of the @code{out} output and their libraries to the subdirectory @file{lib} the @code{out} output." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8005 +#: guix-git/doc/guix.texi:8063 msgid "It's also assumed that the union of all the dependencies of a package has no conflicting files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8008 +#: guix-git/doc/guix.texi:8066 msgid "For the time being, cross-compilation is not supported - so right now the libraries and header files are assumed to be host tools." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8011 +#: guix-git/doc/guix.texi:8069 #, no-wrap msgid "{Scheme Variable} asdf-build-system/source" msgstr "" #. type: defvrx -#: guix-git/doc/guix.texi:8012 +#: guix-git/doc/guix.texi:8070 #, no-wrap msgid "{Scheme Variable} asdf-build-system/sbcl" msgstr "" #. type: defvrx -#: guix-git/doc/guix.texi:8013 +#: guix-git/doc/guix.texi:8071 #, no-wrap msgid "{Scheme Variable} asdf-build-system/ecl" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8019 +#: guix-git/doc/guix.texi:8077 msgid "These variables, exported by @code{(guix build-system asdf)}, implement build procedures for Common Lisp packages using @url{https://common-lisp.net/project/asdf/, ``ASDF''}. ASDF is a system definition facility for Common Lisp programs and libraries." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8026 +#: guix-git/doc/guix.texi:8084 msgid "The @code{asdf-build-system/source} system installs the packages in source form, and can be loaded using any common lisp implementation, via ASDF@. The others, such as @code{asdf-build-system/sbcl}, install binary systems in the format which a particular implementation understands. These build systems can also be used to produce executable programs, or lisp images which contain a set of packages pre-loaded." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8030 +#: guix-git/doc/guix.texi:8088 msgid "The build system uses naming conventions. For binary packages, the package name should be prefixed with the lisp implementation, such as @code{sbcl-} for @code{asdf-build-system/sbcl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8034 +#: guix-git/doc/guix.texi:8092 msgid "Additionally, the corresponding source package should be labeled using the same convention as python packages (see @ref{Python Modules}), using the @code{cl-} prefix." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8042 +#: guix-git/doc/guix.texi:8100 msgid "In order to create executable programs and images, the build-side procedures @code{build-program} and @code{build-image} can be used. They should be called in a build phase after the @code{create-asdf-configuration} phase, so that the system which was just built can be used within the resulting image. @code{build-program} requires a list of Common Lisp expressions to be passed as the @code{#:entry-program} argument." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8051 +#: guix-git/doc/guix.texi:8109 msgid "By default, all the @file{.asd} files present in the sources are read to find system definitions. The @code{#:asd-files} parameter can be used to specify the list of @file{.asd} files to read. Furthermore, if the package defines a system for its tests in a separate file, it will be loaded before the tests are run if it is specified by the @code{#:test-asd-file} parameter. If it is not set, the files @code{-tests.asd}, @code{-test.asd}, @code{tests.asd}, and @code{test.asd} will be tried if they exist." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8056 +#: guix-git/doc/guix.texi:8114 msgid "If for some reason the package must be named in a different way than the naming conventions suggest, or if several systems must be compiled, the @code{#:asd-systems} parameter can be used to specify the list of system names." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8059 +#: guix-git/doc/guix.texi:8117 #, no-wrap msgid "{Scheme Variable} cargo-build-system" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8060 +#: guix-git/doc/guix.texi:8118 #, no-wrap msgid "Rust programming language" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8061 +#: guix-git/doc/guix.texi:8119 #, no-wrap msgid "Cargo (Rust build system)" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8065 +#: guix-git/doc/guix.texi:8123 msgid "This variable is exported by @code{(guix build-system cargo)}. It supports builds of packages using Cargo, the build tool of the @uref{https://www.rust-lang.org, Rust programming language}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8068 +#: guix-git/doc/guix.texi:8126 msgid "It adds @code{rustc} and @code{cargo} to the set of inputs. A different Rust package can be specified with the @code{#:rust} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8078 +#: guix-git/doc/guix.texi:8136 msgid "Regular cargo dependencies should be added to the package definition similarly to other packages; those needed only at build time to native-inputs, others to inputs. If you need to add source-only crates then you should add them to via the @code{#:cargo-inputs} parameter as a list of name and spec pairs, where the spec can be a package or a source definition. Note that the spec must evaluate to a path to a gzipped tarball which includes a @code{Cargo.toml} file at its root, or it will be ignored. Similarly, cargo dev-dependencies should be added to the package definition via the @code{#:cargo-development-inputs} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8088 +#: guix-git/doc/guix.texi:8146 msgid "In its @code{configure} phase, this build system will make any source inputs specified in the @code{#:cargo-inputs} and @code{#:cargo-development-inputs} parameters available to cargo. It will also remove an included @code{Cargo.lock} file to be recreated by @code{cargo} during the @code{build} phase. The @code{package} phase will run @code{cargo package} to create a source crate for future use. The @code{install} phase installs the binaries defined by the crate. Unless @code{install-source? #f} is defined it will also install a source crate repository of itself and unpacked sources, to ease in future hacking on rust packages." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8090 +#: guix-git/doc/guix.texi:8148 #, no-wrap msgid "{Scheme Variable} chicken-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8095 +#: guix-git/doc/guix.texi:8153 msgid "This variable is exported by @code{(guix build-system chicken)}. It builds @uref{https://call-cc.org/, CHICKEN Scheme} modules, also called ``eggs'' or ``extensions''. CHICKEN generates C source code, which then gets compiled by a C compiler, in this case GCC." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8098 +#: guix-git/doc/guix.texi:8156 msgid "This build system adds @code{chicken} to the package inputs, as well as the packages of @code{gnu-build-system}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8102 +#: guix-git/doc/guix.texi:8160 msgid "The build system can't (yet) deduce the egg's name automatically, so just like with @code{go-build-system} and its @code{#:import-path}, you should define @code{#:egg-name} in the package's @code{arguments} field." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8104 +#: guix-git/doc/guix.texi:8162 msgid "For example, if you are packaging the @code{srfi-1} egg:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8107 +#: guix-git/doc/guix.texi:8165 #, no-wrap msgid "(arguments '(#:egg-name \"srfi-1\"))\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8112 +#: guix-git/doc/guix.texi:8170 msgid "Egg dependencies must be defined in @code{propagated-inputs}, not @code{inputs} because CHICKEN doesn't embed absolute references in compiled eggs. Test dependencies should go to @code{native-inputs}, as usual." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8114 +#: guix-git/doc/guix.texi:8172 #, no-wrap msgid "{Scheme Variable} copy-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8118 +#: guix-git/doc/guix.texi:8176 msgid "This variable is exported by @code{(guix build-system copy)}. It supports builds of simple packages that don't require much compiling, mostly just moving files around." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8123 +#: guix-git/doc/guix.texi:8181 msgid "It adds much of the @code{gnu-build-system} packages to the set of inputs. Because of this, the @code{copy-build-system} does not require all the boilerplate code often needed for the @code{trivial-build-system}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8128 +#: guix-git/doc/guix.texi:8186 msgid "To further simplify the file installation process, an @code{#:install-plan} argument is exposed to let the packager specify which files go where. The install plan is a list of @code{(@var{source} @var{target} [@var{filters}])}. @var{filters} are optional." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8130 +#: guix-git/doc/guix.texi:8188 #, no-wrap msgid "When @var{source} matches a file or directory without trailing slash, install it to @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8132 +#: guix-git/doc/guix.texi:8190 #, no-wrap msgid "If @var{target} has a trailing slash, install @var{source} basename beneath @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8133 +#: guix-git/doc/guix.texi:8191 #, no-wrap msgid "Otherwise install @var{source} as @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8136 +#: guix-git/doc/guix.texi:8194 #, no-wrap msgid "When @var{source} is a directory with a trailing slash, or when @var{filters} are used," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8139 +#: guix-git/doc/guix.texi:8197 msgid "the trailing slash of @var{target} is implied with the same meaning as above." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8140 +#: guix-git/doc/guix.texi:8198 #, no-wrap msgid "Without @var{filters}, install the full @var{source} @emph{content} to @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8141 +#: guix-git/doc/guix.texi:8199 #, no-wrap msgid "With @var{filters} among @code{#:include}, @code{#:include-regexp}, @code{#:exclude}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8144 +#: guix-git/doc/guix.texi:8202 msgid "@code{#:exclude-regexp}, only select files are installed depending on the filters. Each filters is specified by a list of strings." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8145 +#: guix-git/doc/guix.texi:8203 #, no-wrap msgid "With @code{#:include}, install all the files which the path suffix matches" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8147 +#: guix-git/doc/guix.texi:8205 msgid "at least one of the elements in the given list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8147 +#: guix-git/doc/guix.texi:8205 #, no-wrap msgid "With @code{#:include-regexp}, install all the files which the" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8150 +#: guix-git/doc/guix.texi:8208 msgid "subpaths match at least one of the regular expressions in the given list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8150 +#: guix-git/doc/guix.texi:8208 #, no-wrap msgid "The @code{#:exclude} and @code{#:exclude-regexp} filters" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8155 +#: guix-git/doc/guix.texi:8213 msgid "are the complement of their inclusion counterpart. Without @code{#:include} flags, install all files but those matching the exclusion filters. If both inclusions and exclusions are specified, the exclusions are done on top of the inclusions." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8159 +#: guix-git/doc/guix.texi:8217 msgid "In all cases, the paths relative to @var{source} are preserved within @var{target}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8162 +#: guix-git/doc/guix.texi:8220 msgid "Examples:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8164 +#: guix-git/doc/guix.texi:8222 #, no-wrap msgid "@code{(\"foo/bar\" \"share/my-app/\")}: Install @file{bar} to @file{share/my-app/bar}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8165 +#: guix-git/doc/guix.texi:8223 #, no-wrap msgid "@code{(\"foo/bar\" \"share/my-app/baz\")}: Install @file{bar} to @file{share/my-app/baz}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8166 +#: guix-git/doc/guix.texi:8224 #, no-wrap msgid "@code{(\"foo/\" \"share/my-app\")}: Install the content of @file{foo} inside @file{share/my-app}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8168 +#: guix-git/doc/guix.texi:8226 msgid "e.g., install @file{foo/sub/file} to @file{share/my-app/sub/file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8168 +#: guix-git/doc/guix.texi:8226 #, no-wrap msgid "@code{(\"foo/\" \"share/my-app\" #:include (\"sub/file\"))}: Install only @file{foo/sub/file} to" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8170 +#: guix-git/doc/guix.texi:8228 msgid "@file{share/my-app/sub/file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8170 +#: guix-git/doc/guix.texi:8228 #, no-wrap msgid "@code{(\"foo/sub\" \"share/my-app\" #:include (\"file\"))}: Install @file{foo/sub/file} to" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8172 +#: guix-git/doc/guix.texi:8230 msgid "@file{share/my-app/file}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8176 +#: guix-git/doc/guix.texi:8234 #, no-wrap msgid "Clojure (programming language)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8177 +#: guix-git/doc/guix.texi:8235 #, no-wrap msgid "simple Clojure build system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8178 +#: guix-git/doc/guix.texi:8236 #, no-wrap msgid "{Scheme Variable} clojure-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8183 +#: guix-git/doc/guix.texi:8241 msgid "This variable is exported by @code{(guix build-system clojure)}. It implements a simple build procedure for @uref{https://clojure.org/, Clojure} packages using plain old @code{compile} in Clojure. Cross-compilation is not supported yet." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8187 +#: guix-git/doc/guix.texi:8245 msgid "It adds @code{clojure}, @code{icedtea} and @code{zip} to the set of inputs. Different packages can be specified with the @code{#:clojure}, @code{#:jdk} and @code{#:zip} parameters, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8193 +#: guix-git/doc/guix.texi:8251 msgid "A list of source directories, test directories and jar names can be specified with the @code{#:source-dirs}, @code{#:test-dirs} and @code{#:jar-names} parameters, respectively. Compile directory and main class can be specified with the @code{#:compile-dir} and @code{#:main-class} parameters, respectively. Other parameters are documented below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8196 +#: guix-git/doc/guix.texi:8254 msgid "This build system is an extension of @code{ant-build-system}, but with the following phases changed:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8199 guix-git/doc/guix.texi:8773 -#: guix-git/doc/guix.texi:8822 guix-git/doc/guix.texi:8891 -#: guix-git/doc/guix.texi:35042 guix-git/doc/guix.texi:37668 +#: guix-git/doc/guix.texi:8257 guix-git/doc/guix.texi:8830 +#: guix-git/doc/guix.texi:8879 guix-git/doc/guix.texi:8952 +#: guix-git/doc/guix.texi:35481 guix-git/doc/guix.texi:38147 #, no-wrap msgid "build" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8208 +#: guix-git/doc/guix.texi:8266 msgid "This phase calls @code{compile} in Clojure to compile source files and runs @command{jar} to create jars from both source files and compiled files according to the include list and exclude list specified in @code{#:aot-include} and @code{#:aot-exclude}, respectively. The exclude list has priority over the include list. These lists consist of symbols representing Clojure libraries or the special keyword @code{#:all} representing all Clojure libraries found under the source directories. The parameter @code{#:omit-source?} decides if source should be included into the jars." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8209 guix-git/doc/guix.texi:8777 -#: guix-git/doc/guix.texi:8896 +#: guix-git/doc/guix.texi:8267 guix-git/doc/guix.texi:8834 +#: guix-git/doc/guix.texi:8957 #, no-wrap msgid "check" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8216 +#: guix-git/doc/guix.texi:8274 msgid "This phase runs tests according to the include list and exclude list specified in @code{#:test-include} and @code{#:test-exclude}, respectively. Their meanings are analogous to that of @code{#:aot-include} and @code{#:aot-exclude}, except that the special keyword @code{#:all} now stands for all Clojure libraries found under the test directories. The parameter @code{#:tests?} decides if tests should be run." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8217 guix-git/doc/guix.texi:8783 -#: guix-git/doc/guix.texi:8826 guix-git/doc/guix.texi:8902 +#: guix-git/doc/guix.texi:8275 guix-git/doc/guix.texi:8840 +#: guix-git/doc/guix.texi:8883 guix-git/doc/guix.texi:8963 #, no-wrap msgid "install" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8219 +#: guix-git/doc/guix.texi:8277 msgid "This phase installs all jars built previously." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8222 +#: guix-git/doc/guix.texi:8280 msgid "Apart from the above, this build system also contains an additional phase:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8225 +#: guix-git/doc/guix.texi:8283 #, no-wrap msgid "install-doc" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8230 +#: guix-git/doc/guix.texi:8288 msgid "This phase installs all top-level files with base name matching @code{%doc-regex}. A different regex can be specified with the @code{#:doc-regex} parameter. All files (recursively) inside the documentation directories specified in @code{#:doc-dirs} are installed as well." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8233 +#: guix-git/doc/guix.texi:8291 #, no-wrap msgid "{Scheme Variable} cmake-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8237 +#: guix-git/doc/guix.texi:8295 msgid "This variable is exported by @code{(guix build-system cmake)}. It implements the build procedure for packages using the @url{https://www.cmake.org, CMake build tool}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8241 +#: guix-git/doc/guix.texi:8299 msgid "It automatically adds the @code{cmake} package to the set of inputs. Which package is used can be specified with the @code{#:cmake} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8248 +#: guix-git/doc/guix.texi:8306 msgid "The @code{#:configure-flags} parameter is taken as a list of flags passed to the @command{cmake} command. The @code{#:build-type} parameter specifies in abstract terms the flags passed to the compiler; it defaults to @code{\"RelWithDebInfo\"} (short for ``release mode with debugging information''), which roughly means that code is compiled with @code{-O2 -g}, as is the case for Autoconf-based packages by default." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8250 +#: guix-git/doc/guix.texi:8308 #, no-wrap msgid "{Scheme Variable} dune-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8257 +#: guix-git/doc/guix.texi:8315 msgid "This variable is exported by @code{(guix build-system dune)}. It supports builds of packages using @uref{https://dune.build/, Dune}, a build tool for the OCaml programming language. It is implemented as an extension of the @code{ocaml-build-system} which is described below. As such, the @code{#:ocaml} and @code{#:findlib} parameters can be passed to this build system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8261 +#: guix-git/doc/guix.texi:8319 msgid "It automatically adds the @code{dune} package to the set of inputs. Which package is used can be specified with the @code{#:dune} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8265 +#: guix-git/doc/guix.texi:8323 msgid "There is no @code{configure} phase because dune packages typically don't need to be configured. The @code{#:build-flags} parameter is taken as a list of flags passed to the @code{dune} command during the build." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8269 +#: guix-git/doc/guix.texi:8327 msgid "The @code{#:jbuild?} parameter can be passed to use the @code{jbuild} command instead of the more recent @code{dune} command while building a package. Its default value is @code{#f}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8274 +#: guix-git/doc/guix.texi:8332 msgid "The @code{#:package} parameter can be passed to specify a package name, which is useful when a package contains multiple packages and you want to build only one of them. This is equivalent to passing the @code{-p} argument to @code{dune}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8277 +#: guix-git/doc/guix.texi:8335 #, no-wrap msgid "{Scheme Variable} go-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8282 +#: guix-git/doc/guix.texi:8340 msgid "This variable is exported by @code{(guix build-system go)}. It implements a build procedure for Go packages using the standard @url{https://golang.org/cmd/go/#hdr-Compile_packages_and_dependencies, Go build mechanisms}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8293 +#: guix-git/doc/guix.texi:8351 msgid "The user is expected to provide a value for the key @code{#:import-path} and, in some cases, @code{#:unpack-path}. The @url{https://golang.org/doc/code.html#ImportPaths, import path} corresponds to the file system path expected by the package's build scripts and any referring packages, and provides a unique way to refer to a Go package. It is typically based on a combination of the package source code's remote URI and file system hierarchy structure. In some cases, you will need to unpack the package's source code to a different directory structure than the one indicated by the import path, and @code{#:unpack-path} should be used in such cases." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8298 +#: guix-git/doc/guix.texi:8356 msgid "Packages that provide Go libraries should install their source code into the built output. The key @code{#:install-source?}, which defaults to @code{#t}, controls whether or not the source code is installed. It can be set to @code{#f} for packages that only provide executable files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8305 +#: guix-git/doc/guix.texi:8363 msgid "Packages can be cross-built, and if a specific architecture or operating system is desired then the keywords @code{#:goarch} and @code{#:goos} can be used to force the package to be built for that architecture and operating system. The combinations known to Go can be found @url{\"https://golang.org/doc/install/source#environment\", in their documentation}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8307 +#: guix-git/doc/guix.texi:8365 #, no-wrap msgid "{Scheme Variable} glib-or-gtk-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8310 +#: guix-git/doc/guix.texi:8368 msgid "This variable is exported by @code{(guix build-system glib-or-gtk)}. It is intended for use with packages making use of GLib or GTK+." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8313 +#: guix-git/doc/guix.texi:8371 msgid "This build system adds the following two phases to the ones defined by @code{gnu-build-system}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8315 guix-git/doc/guix.texi:8799 +#: guix-git/doc/guix.texi:8373 guix-git/doc/guix.texi:8856 #, no-wrap msgid "glib-or-gtk-wrap" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8322 +#: guix-git/doc/guix.texi:8380 msgid "The phase @code{glib-or-gtk-wrap} ensures that programs in @file{bin/} are able to find GLib ``schemas'' and @uref{https://developer.gnome.org/gtk3/stable/gtk-running.html, GTK+ modules}. This is achieved by wrapping the programs in launch scripts that appropriately set the @env{XDG_DATA_DIRS} and @env{GTK_PATH} environment variables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8329 +#: guix-git/doc/guix.texi:8387 msgid "It is possible to exclude specific package outputs from that wrapping process by listing their names in the @code{#:glib-or-gtk-wrap-excluded-outputs} parameter. This is useful when an output is known not to contain any GLib or GTK+ binaries, and where wrapping would gratuitously add a dependency of that output on GLib and GTK+." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8330 guix-git/doc/guix.texi:8803 +#: guix-git/doc/guix.texi:8388 guix-git/doc/guix.texi:8860 #, no-wrap msgid "glib-or-gtk-compile-schemas" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8338 +#: guix-git/doc/guix.texi:8396 msgid "The phase @code{glib-or-gtk-compile-schemas} makes sure that all @uref{https://developer.gnome.org/gio/stable/glib-compile-schemas.html, GSettings schemas} of GLib are compiled. Compilation is performed by the @command{glib-compile-schemas} program. It is provided by the package @code{glib:bin} which is automatically imported by the build system. The @code{glib} package providing @command{glib-compile-schemas} can be specified with the @code{#:glib} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8341 +#: guix-git/doc/guix.texi:8399 msgid "Both phases are executed after the @code{install} phase." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8343 +#: guix-git/doc/guix.texi:8401 #, no-wrap msgid "{Scheme Variable} guile-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8350 +#: guix-git/doc/guix.texi:8408 msgid "This build system is for Guile packages that consist exclusively of Scheme code and that are so lean that they don't even have a makefile, let alone a @file{configure} script. It compiles Scheme code using @command{guild compile} (@pxref{Compilation,,, guile, GNU Guile Reference Manual}) and installs the @file{.scm} and @file{.go} files in the right place. It also installs documentation." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8353 +#: guix-git/doc/guix.texi:8411 msgid "This build system supports cross-compilation by using the @option{--target} option of @samp{guild compile}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8356 +#: guix-git/doc/guix.texi:8414 msgid "Packages built with @code{guile-build-system} must provide a Guile package in their @code{native-inputs} field." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8358 +#: guix-git/doc/guix.texi:8416 #, no-wrap msgid "{Scheme Variable} julia-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8365 +#: guix-git/doc/guix.texi:8423 msgid "This variable is exported by @code{(guix build-system julia)}. It implements the build procedure used by @uref{https://julialang.org/, julia} packages, which essentially is similar to running @samp{julia -e 'using Pkg; Pkg.add(package)'} in an environment where @env{JULIA_LOAD_PATH} contains the paths to all Julia package inputs. Tests are run by calling @code{/test/runtests.jl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8369 -msgid "The Julia package name is read from the file @file{Project.toml}. This value can be overridden by passing the argument @code{#:julia-package-name} (which must be correctly capitalized)." +#: guix-git/doc/guix.texi:8428 +msgid "The Julia package name and uuid is read from the file @file{Project.toml}. These values can be overridden by passing the argument @code{#:julia-package-name} (which must be correctly capitalized) or @code{#:julia-package-uuid}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8373 +#: guix-git/doc/guix.texi:8432 msgid "Julia packages usually manage their binary dependencies via @code{JLLWrappers.jl}, a Julia package that creates a module (named after the wrapped library followed by @code{_jll.jl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8378 +#: guix-git/doc/guix.texi:8437 msgid "To add the binary path @code{_jll.jl} packages, you need to patch the files under @file{src/wrappers/}, replacing the call to the macro @code{JLLWrappers.@@generate_wrapper_header}, adding as a second argument containing the store path the binary." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8382 +#: guix-git/doc/guix.texi:8441 msgid "As an example, in the MbedTLS Julia package, we add a build phase (@pxref{Build Phases}) to insert the absolute file name of the wrapped MbedTLS package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8394 +#: guix-git/doc/guix.texi:8453 #, no-wrap msgid "" "(add-after 'unpack 'override-binary-path\n" @@ -16302,655 +16416,666 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8402 -msgid "Some older packages that aren't using @file{Package.toml} yet, will require this file to be created, too. The function @code{julia-create-package-toml} helps creating the file. You need to pass the outputs and the source of the package, its name (the same as the @code{file-name} parameter), the package uuid, the package version, and a list of dependencies specified by their name and their uuid." +#: guix-git/doc/guix.texi:8459 +msgid "Some older packages that aren't using @file{Project.toml} yet, will require this file to be created, too. It is internally done if the arguments @code{#:julia-package-name} and @code{#:julia-package-uuid} are provided." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8404 +#: guix-git/doc/guix.texi:8461 #, no-wrap msgid "{Scheme Variable} maven-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8411 +#: guix-git/doc/guix.texi:8468 msgid "This variable is exported by @code{(guix build-system maven)}. It implements a build procedure for @uref{https://maven.apache.org, Maven} packages. Maven is a dependency and lifecycle management tool for Java. A user of Maven specifies dependencies and plugins in a @file{pom.xml} file that Maven reads. When Maven does not have one of the dependencies or plugins in its repository, it will download them and use them to build the package." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8421 +#: guix-git/doc/guix.texi:8478 msgid "The maven build system ensures that maven will not try to download any dependency by running in offline mode. Maven will fail if a dependency is missing. Before running Maven, the @file{pom.xml} (and subprojects) are modified to specify the version of dependencies and plugins that match the versions available in the guix build environment. Dependencies and plugins must be installed in the fake maven repository at @file{lib/m2}, and are symlinked into a proper repository before maven is run. Maven is instructed to use that repository for the build and installs built artifacts there. Changed files are copied to the @file{lib/m2} directory of the package output." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8424 +#: guix-git/doc/guix.texi:8481 msgid "You can specify a @file{pom.xml} file with the @code{#:pom-file} argument, or let the build system use the default @file{pom.xml} file in the sources." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8430 +#: guix-git/doc/guix.texi:8487 msgid "In case you need to specify a dependency's version manually, you can use the @code{#:local-packages} argument. It takes an association list where the key is the groupId of the package and its value is an association list where the key is the artifactId of the package and its value is the version you want to override in the @file{pom.xml}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8436 +#: guix-git/doc/guix.texi:8493 msgid "Some packages use dependencies or plugins that are not useful at runtime nor at build time in Guix. You can alter the @file{pom.xml} file to remove them using the @code{#:exclude} argument. Its value is an association list where the key is the groupId of the plugin or dependency you want to remove, and the value is a list of artifactId you want to remove." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8439 +#: guix-git/doc/guix.texi:8496 msgid "You can override the default @code{jdk} and @code{maven} packages with the corresponding argument, @code{#:jdk} and @code{#:maven}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8444 +#: guix-git/doc/guix.texi:8501 msgid "The @code{#:maven-plugins} argument is a list of maven plugins used during the build, with the same format as the @code{inputs} fields of the package declaration. Its default value is @code{(default-maven-plugins)} which is also exported." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8446 +#: guix-git/doc/guix.texi:8503 #, no-wrap msgid "{Scheme Variable} minetest-mod-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8452 +#: guix-git/doc/guix.texi:8509 msgid "This variable is exported by @code{(guix build-system minetest)}. It implements a build procedure for @uref{https://www.minetest.net, Minetest} mods, which consists of copying Lua code, images and other resources to the location Minetest searches for mods. The build system also minimises PNG images and verifies that Minetest can load the mod without errors." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8454 +#: guix-git/doc/guix.texi:8511 #, no-wrap msgid "{Scheme Variable} minify-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8457 +#: guix-git/doc/guix.texi:8514 msgid "This variable is exported by @code{(guix build-system minify)}. It implements a minification procedure for simple JavaScript packages." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8463 +#: guix-git/doc/guix.texi:8520 msgid "It adds @code{uglify-js} to the set of inputs and uses it to compress all JavaScript files in the @file{src} directory. A different minifier package can be specified with the @code{#:uglify-js} parameter, but it is expected that the package writes the minified code to the standard output." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8467 +#: guix-git/doc/guix.texi:8524 msgid "When the input JavaScript files are not all located in the @file{src} directory, the parameter @code{#:javascript-files} can be used to specify a list of file names to feed to the minifier." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8469 +#: guix-git/doc/guix.texi:8526 #, no-wrap msgid "{Scheme Variable} ocaml-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8475 +#: guix-git/doc/guix.texi:8532 msgid "This variable is exported by @code{(guix build-system ocaml)}. It implements a build procedure for @uref{https://ocaml.org, OCaml} packages, which consists of choosing the correct set of commands to run for each package. OCaml packages can expect many different commands to be run. This build system will try some of them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8485 +#: guix-git/doc/guix.texi:8542 msgid "When the package has a @file{setup.ml} file present at the top-level, it will run @code{ocaml setup.ml -configure}, @code{ocaml setup.ml -build} and @code{ocaml setup.ml -install}. The build system will assume that this file was generated by @uref{http://oasis.forge.ocamlcore.org/, OASIS} and will take care of setting the prefix and enabling tests if they are not disabled. You can pass configure and build flags with the @code{#:configure-flags} and @code{#:build-flags}. The @code{#:test-flags} key can be passed to change the set of flags used to enable tests. The @code{#:use-make?} key can be used to bypass this system in the build and install phases." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8490 +#: guix-git/doc/guix.texi:8547 msgid "When the package has a @file{configure} file, it is assumed that it is a hand-made configure script that requires a different argument format than in the @code{gnu-build-system}. You can add more flags with the @code{#:configure-flags} key." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8494 +#: guix-git/doc/guix.texi:8551 msgid "When the package has a @file{Makefile} file (or @code{#:use-make?} is @code{#t}), it will be used and more flags can be passed to the build and install phases with the @code{#:make-flags} key." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8502 +#: guix-git/doc/guix.texi:8559 msgid "Finally, some packages do not have these files and use a somewhat standard location for its build system. In that case, the build system will run @code{ocaml pkg/pkg.ml} or @code{ocaml pkg/build.ml} and take care of providing the path to the required findlib module. Additional flags can be passed via the @code{#:build-flags} key. Install is taken care of by @command{opam-installer}. In this case, the @code{opam} package must be added to the @code{native-inputs} field of the package definition." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8510 +#: guix-git/doc/guix.texi:8567 msgid "Note that most OCaml packages assume they will be installed in the same directory as OCaml, which is not what we want in guix. In particular, they will install @file{.so} files in their module's directory, which is usually fine because it is in the OCaml compiler directory. In guix though, these libraries cannot be found and we use @env{CAML_LD_LIBRARY_PATH}. This variable points to @file{lib/ocaml/site-lib/stubslibs} and this is where @file{.so} libraries should be installed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8512 +#: guix-git/doc/guix.texi:8569 #, no-wrap msgid "{Scheme Variable} python-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8517 +#: guix-git/doc/guix.texi:8574 msgid "This variable is exported by @code{(guix build-system python)}. It implements the more or less standard build procedure used by Python packages, which consists in running @code{python setup.py build} and then @code{python setup.py install --prefix=/gnu/store/@dots{}}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8522 +#: guix-git/doc/guix.texi:8579 msgid "For packages that install stand-alone Python programs under @code{bin/}, it takes care of wrapping these programs so that their @env{GUIX_PYTHONPATH} environment variable points to all the Python libraries they depend on." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8528 +#: guix-git/doc/guix.texi:8585 msgid "Which Python package is used to perform the build can be specified with the @code{#:python} parameter. This is a useful way to force a package to be built for a specific version of the Python interpreter, which might be necessary if the package is only compatible with a single interpreter version." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8533 +#: guix-git/doc/guix.texi:8590 msgid "By default guix calls @code{setup.py} under control of @code{setuptools}, much like @command{pip} does. Some packages are not compatible with setuptools (and pip), thus you can disable this by setting the @code{#:use-setuptools?} parameter to @code{#f}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8539 +#: guix-git/doc/guix.texi:8596 msgid "If a @code{\"python\"} output is available, the package is installed into it instead of the default @code{\"out\"} output. This is useful for packages that include a Python package as only a part of the software, and thus want to combine the phases of @code{python-build-system} with another build system. Python bindings are a common usecase." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8542 +#: guix-git/doc/guix.texi:8599 #, no-wrap msgid "{Scheme Variable} perl-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8554 +#: guix-git/doc/guix.texi:8611 msgid "This variable is exported by @code{(guix build-system perl)}. It implements the standard build procedure for Perl packages, which either consists in running @code{perl Build.PL --prefix=/gnu/store/@dots{}}, followed by @code{Build} and @code{Build install}; or in running @code{perl Makefile.PL PREFIX=/gnu/store/@dots{}}, followed by @code{make} and @code{make install}, depending on which of @code{Build.PL} or @code{Makefile.PL} is present in the package distribution. Preference is given to the former if both @code{Build.PL} and @code{Makefile.PL} exist in the package distribution. This preference can be reversed by specifying @code{#t} for the @code{#:make-maker?} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8558 +#: guix-git/doc/guix.texi:8615 msgid "The initial @code{perl Makefile.PL} or @code{perl Build.PL} invocation passes flags specified by the @code{#:make-maker-flags} or @code{#:module-build-flags} parameter, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8560 +#: guix-git/doc/guix.texi:8617 msgid "Which Perl package is used can be specified with @code{#:perl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8562 +#: guix-git/doc/guix.texi:8619 #, no-wrap msgid "{Scheme Variable} renpy-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8566 +#: guix-git/doc/guix.texi:8623 msgid "This variable is exported by @code{(guix build-system renpy)}. It implements the more or less standard build procedure used by Ren'py games, which consists of loading @code{#:game} once, thereby creating bytecode for it." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8569 +#: guix-git/doc/guix.texi:8626 msgid "It further creates a wrapper script in @code{bin/} and a desktop entry in @code{share/applications}, both of which can be used to launch the game." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8573 +#: guix-git/doc/guix.texi:8630 msgid "Which Ren'py package is used can be specified with @code{#:renpy}. Games can also be installed in outputs other than ``out'' by using @code{#:output}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8575 +#: guix-git/doc/guix.texi:8632 #, no-wrap msgid "{Scheme Variable} qt-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8578 +#: guix-git/doc/guix.texi:8635 msgid "This variable is exported by @code{(guix build-system qt)}. It is intended for use with applications using Qt or KDE." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8581 +#: guix-git/doc/guix.texi:8638 msgid "This build system adds the following two phases to the ones defined by @code{cmake-build-system}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8583 +#: guix-git/doc/guix.texi:8640 #, no-wrap msgid "check-setup" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8590 +#: guix-git/doc/guix.texi:8647 msgid "The phase @code{check-setup} prepares the environment for running the checks as commonly used by Qt test programs. For now this only sets some environment variables: @code{QT_QPA_PLATFORM=offscreen}, @code{DBUS_FATAL_WARNINGS=0} and @code{CTEST_OUTPUT_ON_FAILURE=1}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8593 +#: guix-git/doc/guix.texi:8650 msgid "This phase is added before the @code{check} phase. It's a separate phase to ease adjusting if necessary." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8594 +#: guix-git/doc/guix.texi:8651 #, no-wrap msgid "qt-wrap" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8600 +#: guix-git/doc/guix.texi:8657 msgid "The phase @code{qt-wrap} searches for Qt5 plugin paths, QML paths and some XDG in the inputs and output. In case some path is found, all programs in the output's @file{bin/}, @file{sbin/}, @file{libexec/} and @file{lib/libexec/} directories are wrapped in scripts defining the necessary environment variables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8606 +#: guix-git/doc/guix.texi:8663 msgid "It is possible to exclude specific package outputs from that wrapping process by listing their names in the @code{#:qt-wrap-excluded-outputs} parameter. This is useful when an output is known not to contain any Qt binaries, and where wrapping would gratuitously add a dependency of that output on Qt, KDE, or such." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8608 +#: guix-git/doc/guix.texi:8665 msgid "This phase is added after the @code{install} phase." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8611 +#: guix-git/doc/guix.texi:8668 #, no-wrap msgid "{Scheme Variable} r-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8619 +#: guix-git/doc/guix.texi:8676 msgid "This variable is exported by @code{(guix build-system r)}. It implements the build procedure used by @uref{https://r-project.org, R} packages, which essentially is little more than running @samp{R CMD INSTALL --library=/gnu/store/@dots{}} in an environment where @env{R_LIBS_SITE} contains the paths to all R package inputs. Tests are run after installation using the R function @code{tools::testInstalledPackage}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8621 +#: guix-git/doc/guix.texi:8678 #, no-wrap msgid "{Scheme Variable} rakudo-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8629 +#: guix-git/doc/guix.texi:8686 msgid "This variable is exported by @code{(guix build-system rakudo)}. It implements the build procedure used by @uref{https://rakudo.org/, Rakudo} for @uref{https://perl6.org/, Perl6} packages. It installs the package to @code{/gnu/store/@dots{}/NAME-VERSION/share/perl6} and installs the binaries, library files and the resources, as well as wrap the files under the @code{bin/} directory. Tests can be skipped by passing @code{#f} to the @code{tests?} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8637 +#: guix-git/doc/guix.texi:8694 msgid "Which rakudo package is used can be specified with @code{rakudo}. Which perl6-tap-harness package used for the tests can be specified with @code{#:prove6} or removed by passing @code{#f} to the @code{with-prove6?} parameter. Which perl6-zef package used for tests and installing can be specified with @code{#:zef} or removed by passing @code{#f} to the @code{with-zef?} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8639 +#: guix-git/doc/guix.texi:8696 #, no-wrap msgid "{Scheme Variable} texlive-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8644 +#: guix-git/doc/guix.texi:8701 msgid "This variable is exported by @code{(guix build-system texlive)}. It is used to build TeX packages in batch mode with a specified engine. The build system sets the @env{TEXINPUTS} variable to find all TeX source files in the inputs." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8653 +#: guix-git/doc/guix.texi:8710 msgid "By default it runs @code{luatex} on all files ending on @code{ins}. A different engine and format can be specified with the @code{#:tex-format} argument. Different build targets can be specified with the @code{#:build-targets} argument, which expects a list of file names. The build system adds only @code{texlive-bin} and @code{texlive-latex-base} (both from @code{(gnu packages tex}) to the inputs. Both can be overridden with the arguments @code{#:texlive-bin} and @code{#:texlive-latex-base}, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8656 +#: guix-git/doc/guix.texi:8713 msgid "The @code{#:tex-directory} parameter tells the build system where to install the built files under the texmf tree." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8658 +#: guix-git/doc/guix.texi:8715 #, no-wrap msgid "{Scheme Variable} ruby-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8662 +#: guix-git/doc/guix.texi:8719 msgid "This variable is exported by @code{(guix build-system ruby)}. It implements the RubyGems build procedure used by Ruby packages, which involves running @code{gem build} followed by @code{gem install}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8670 +#: guix-git/doc/guix.texi:8727 msgid "The @code{source} field of a package that uses this build system typically references a gem archive, since this is the format that Ruby developers use when releasing their software. The build system unpacks the gem archive, potentially patches the source, runs the test suite, repackages the gem, and installs it. Additionally, directories and tarballs may be referenced to allow building unreleased gems from Git or a traditional source release tarball." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8674 +#: guix-git/doc/guix.texi:8731 msgid "Which Ruby package is used can be specified with the @code{#:ruby} parameter. A list of additional flags to be passed to the @command{gem} command can be specified with the @code{#:gem-flags} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8676 +#: guix-git/doc/guix.texi:8733 #, no-wrap msgid "{Scheme Variable} waf-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8682 +#: guix-git/doc/guix.texi:8739 msgid "This variable is exported by @code{(guix build-system waf)}. It implements a build procedure around the @code{waf} script. The common phases---@code{configure}, @code{build}, and @code{install}---are implemented by passing their names as arguments to the @code{waf} script." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8686 +#: guix-git/doc/guix.texi:8743 msgid "The @code{waf} script is executed by the Python interpreter. Which Python package is used to run the script can be specified with the @code{#:python} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8688 +#: guix-git/doc/guix.texi:8745 #, no-wrap msgid "{Scheme Variable} scons-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8694 +#: guix-git/doc/guix.texi:8751 msgid "This variable is exported by @code{(guix build-system scons)}. It implements the build procedure used by the SCons software construction tool. This build system runs @code{scons} to build the package, @code{scons test} to run tests, and then @code{scons install} to install the package." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8701 +#: guix-git/doc/guix.texi:8758 msgid "Additional flags to be passed to @code{scons} can be specified with the @code{#:scons-flags} parameter. The default build and install targets can be overridden with @code{#:build-targets} and @code{#:install-targets} respectively. The version of Python used to run SCons can be specified by selecting the appropriate SCons package with the @code{#:scons} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8703 +#: guix-git/doc/guix.texi:8760 #, no-wrap msgid "{Scheme Variable} haskell-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8717 +#: guix-git/doc/guix.texi:8774 msgid "This variable is exported by @code{(guix build-system haskell)}. It implements the Cabal build procedure used by Haskell packages, which involves running @code{runhaskell Setup.hs configure --prefix=/gnu/store/@dots{}} and @code{runhaskell Setup.hs build}. Instead of installing the package by running @code{runhaskell Setup.hs install}, to avoid trying to register libraries in the read-only compiler store directory, the build system uses @code{runhaskell Setup.hs copy}, followed by @code{runhaskell Setup.hs register}. In addition, the build system generates the package documentation by running @code{runhaskell Setup.hs haddock}, unless @code{#:haddock? #f} is passed. Optional Haddock parameters can be passed with the help of the @code{#:haddock-flags} parameter. If the file @code{Setup.hs} is not found, the build system looks for @code{Setup.lhs} instead." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8720 +#: guix-git/doc/guix.texi:8777 msgid "Which Haskell compiler is used can be specified with the @code{#:haskell} parameter which defaults to @code{ghc}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8722 +#: guix-git/doc/guix.texi:8779 #, no-wrap msgid "{Scheme Variable} dub-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8727 +#: guix-git/doc/guix.texi:8784 msgid "This variable is exported by @code{(guix build-system dub)}. It implements the Dub build procedure used by D packages, which involves running @code{dub build} and @code{dub run}. Installation is done by copying the files manually." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8730 +#: guix-git/doc/guix.texi:8787 msgid "Which D compiler is used can be specified with the @code{#:ldc} parameter which defaults to @code{ldc}." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:8733 +#: guix-git/doc/guix.texi:8790 msgid "emacs-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8733 +#: guix-git/doc/guix.texi:8790 #, no-wrap msgid "{Scheme Variable} emacs-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8737 +#: guix-git/doc/guix.texi:8794 msgid "This variable is exported by @code{(guix build-system emacs)}. It implements an installation procedure similar to the packaging system of Emacs itself (@pxref{Packages,,, emacs, The GNU Emacs Manual})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8743 +#: guix-git/doc/guix.texi:8800 msgid "It first creates the @code{@code{package}-autoloads.el} file, then it byte compiles all Emacs Lisp files. Differently from the Emacs packaging system, the Info documentation files are moved to the standard documentation directory and the @file{dir} file is deleted. The Elisp package files are installed directly under @file{share/emacs/site-lisp}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8745 +#: guix-git/doc/guix.texi:8802 #, no-wrap msgid "{Scheme Variable} font-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8751 +#: guix-git/doc/guix.texi:8808 msgid "This variable is exported by @code{(guix build-system font)}. It implements an installation procedure for font packages where upstream provides pre-compiled TrueType, OpenType, etc.@: font files that merely need to be copied into place. It copies font files to standard locations in the output directory." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8753 +#: guix-git/doc/guix.texi:8810 #, no-wrap msgid "{Scheme Variable} meson-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8757 +#: guix-git/doc/guix.texi:8814 msgid "This variable is exported by @code{(guix build-system meson)}. It implements the build procedure for packages that use @url{https://mesonbuild.com, Meson} as their build system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8761 +#: guix-git/doc/guix.texi:8818 msgid "It adds both Meson and @uref{https://ninja-build.org/, Ninja} to the set of inputs, and they can be changed with the parameters @code{#:meson} and @code{#:ninja} if needed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8764 +#: guix-git/doc/guix.texi:8821 msgid "This build system is an extension of @code{gnu-build-system}, but with the following phases changed to some specific for Meson:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8767 guix-git/doc/guix.texi:8818 -#: guix-git/doc/guix.texi:8886 +#: guix-git/doc/guix.texi:8824 guix-git/doc/guix.texi:8875 +#: guix-git/doc/guix.texi:8947 #, no-wrap msgid "configure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8772 +#: guix-git/doc/guix.texi:8829 msgid "The phase runs @code{meson} with the flags specified in @code{#:configure-flags}. The flag @option{--buildtype} is always set to @code{debugoptimized} unless something else is specified in @code{#:build-type}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8776 +#: guix-git/doc/guix.texi:8833 msgid "The phase runs @code{ninja} to build the package in parallel by default, but this can be changed with @code{#:parallel-build?}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8782 +#: guix-git/doc/guix.texi:8839 msgid "The phase runs @samp{meson test} with a base set of options that cannot be overridden. This base set of options can be extended via the @code{#:test-options} argument, for example to select or skip a specific test suite." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8785 +#: guix-git/doc/guix.texi:8842 msgid "The phase runs @code{ninja install} and can not be changed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8788 +#: guix-git/doc/guix.texi:8845 msgid "Apart from that, the build system also adds the following phases:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8791 +#: guix-git/doc/guix.texi:8848 #, no-wrap msgid "fix-runpath" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8798 +#: guix-git/doc/guix.texi:8855 msgid "This phase ensures that all binaries can find the libraries they need. It searches for required libraries in subdirectories of the package being built, and adds those to @code{RUNPATH} where needed. It also removes references to libraries left over from the build phase by @code{meson}, such as test dependencies, that aren't actually required for the program to run." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8802 guix-git/doc/guix.texi:8806 +#: guix-git/doc/guix.texi:8859 guix-git/doc/guix.texi:8863 msgid "This phase is the phase provided by @code{glib-or-gtk-build-system}, and it is not enabled by default. It can be enabled with @code{#:glib-or-gtk?}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8809 +#: guix-git/doc/guix.texi:8866 #, no-wrap msgid "{Scheme Variable} linux-module-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8811 +#: guix-git/doc/guix.texi:8868 msgid "@code{linux-module-build-system} allows building Linux kernel modules." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8815 +#: guix-git/doc/guix.texi:8872 msgid "This build system is an extension of @code{gnu-build-system}, but with the following phases changed:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8821 +#: guix-git/doc/guix.texi:8878 msgid "This phase configures the environment so that the Linux kernel's Makefile can be used to build the external kernel module." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8825 +#: guix-git/doc/guix.texi:8882 msgid "This phase uses the Linux kernel's Makefile in order to build the external kernel module." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8829 +#: guix-git/doc/guix.texi:8886 msgid "This phase uses the Linux kernel's Makefile in order to install the external kernel module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8834 +#: guix-git/doc/guix.texi:8891 msgid "It is possible and useful to specify the Linux kernel to use for building the module (in the @code{arguments} form of a package using the @code{linux-module-build-system}, use the key @code{#:linux} to specify it)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8836 +#: guix-git/doc/guix.texi:8893 #, no-wrap msgid "{Scheme Variable} node-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8841 +#: guix-git/doc/guix.texi:8898 msgid "This variable is exported by @code{(guix build-system node)}. It implements the build procedure used by @uref{https://nodejs.org, Node.js}, which implements an approximation of the @code{npm install} command, followed by an @code{npm test} command." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8845 +#: guix-git/doc/guix.texi:8902 msgid "Which Node.js package is used to interpret the @code{npm} commands can be specified with the @code{#:node} parameter which defaults to @code{node}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8851 +#: guix-git/doc/guix.texi:8908 msgid "Lastly, for packages that do not need anything as sophisticated, a ``trivial'' build system is provided. It is trivial in the sense that it provides basically no support: it does not pull any implicit inputs, and does not have a notion of build phases." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8852 +#: guix-git/doc/guix.texi:8909 #, no-wrap msgid "{Scheme Variable} trivial-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8854 +#: guix-git/doc/guix.texi:8911 msgid "This variable is exported by @code{(guix build-system trivial)}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8859 +#: guix-git/doc/guix.texi:8916 msgid "This build system requires a @code{#:builder} argument. This argument must be a Scheme expression that builds the package output(s)---as with @code{build-expression->derivation} (@pxref{Derivations, @code{build-expression->derivation}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8864 +#: guix-git/doc/guix.texi:8921 #, no-wrap msgid "build phases, for packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8870 +#: guix-git/doc/guix.texi:8927 msgid "Almost all package build systems implement a notion @dfn{build phases}: a sequence of actions that the build system executes, when you build the package, leading to the installed byproducts in the store. A notable exception is the ``bare-bones'' @code{trivial-build-system} (@pxref{Build Systems})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8874 +#: guix-git/doc/guix.texi:8931 msgid "As discussed in the previous section, those build systems provide a standard list of phases. For @code{gnu-build-system}, the main build phases are the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8876 +#: guix-git/doc/guix.texi:8933 +#, no-wrap +msgid "set-paths" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:8936 +msgid "Define search path environment variables for all the input packages, including @env{PATH} (@pxref{Search Paths})." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:8937 #, no-wrap msgid "unpack" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8880 +#: guix-git/doc/guix.texi:8941 msgid "Unpack the source tarball, and change the current directory to the extracted source tree. If the source is actually a directory, copy it to the build tree, and enter that directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8881 +#: guix-git/doc/guix.texi:8942 #, no-wrap msgid "patch-source-shebangs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8885 +#: guix-git/doc/guix.texi:8946 msgid "Patch shebangs encountered in source files so they refer to the right store file names. For instance, this changes @code{#!/bin/sh} to @code{#!/gnu/store/@dots{}-bash-4.3/bin/sh}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8890 +#: guix-git/doc/guix.texi:8951 msgid "Run the @file{configure} script with a number of default options, such as @option{--prefix=/gnu/store/@dots{}}, as well as the options specified by the @code{#:configure-flags} argument." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8895 +#: guix-git/doc/guix.texi:8956 msgid "Run @code{make} with the list of flags specified with @code{#:make-flags}. If the @code{#:parallel-build?} argument is true (the default), build with @code{make -j}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8901 +#: guix-git/doc/guix.texi:8962 msgid "Run @code{make check}, or some other target specified with @code{#:test-target}, unless @code{#:tests? #f} is passed. If the @code{#:parallel-tests?} argument is true (the default), run @code{make check -j}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8904 +#: guix-git/doc/guix.texi:8965 msgid "Run @code{make install} with the flags listed in @code{#:make-flags}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8905 +#: guix-git/doc/guix.texi:8966 #, no-wrap msgid "patch-shebangs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8907 +#: guix-git/doc/guix.texi:8968 msgid "Patch shebangs on the installed executable files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8908 +#: guix-git/doc/guix.texi:8969 #, no-wrap msgid "strip" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8912 +#: guix-git/doc/guix.texi:8973 msgid "Strip debugging symbols from ELF files (unless @code{#:strip-binaries?} is false), copying them to the @code{debug} output when available (@pxref{Installing Debugging Files})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8921 +#: guix-git/doc/guix.texi:8982 msgid "Other build systems have similar phases, with some variations. For example, @code{cmake-build-system} has same-named phases but its @code{configure} phases runs @code{cmake} instead of @code{./configure}. Others, such as @code{python-build-system}, have a wholly different list of standard phases. All this code runs on the @dfn{build side}: it is evaluated when you actually build the package, in a dedicated build process spawned by the build daemon (@pxref{Invoking guix-daemon})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8928 +#: guix-git/doc/guix.texi:8989 msgid "Build phases are represented as association lists or ``alists'' (@pxref{Association Lists,,, guile, GNU Guile Reference Manual}) where each key is a symbol for the name of the phase and the associated value is a procedure that accepts an arbitrary number of arguments. By convention, those procedures receive information about the build in the form of @dfn{keyword parameters}, which they can use or ignore." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:8929 +#: guix-git/doc/guix.texi:8990 #, no-wrap msgid "%standard-phases" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8935 +#: guix-git/doc/guix.texi:8996 msgid "For example, here is how @code{(guix build gnu-build-system)} defines @code{%standard-phases}, the variable holding its alist of build phases@footnote{We present a simplified view of those build phases, but do take a look at @code{(guix build gnu-build-system)} to see all the details!}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8938 +#: guix-git/doc/guix.texi:8999 #, no-wrap msgid "" ";; The build phases of 'gnu-build-system'.\n" @@ -16958,7 +17083,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8942 +#: guix-git/doc/guix.texi:9003 #, no-wrap msgid "" "(define* (unpack #:key source #:allow-other-keys)\n" @@ -16968,7 +17093,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8948 +#: guix-git/doc/guix.texi:9009 #, no-wrap msgid "" "(define* (configure #:key outputs #:allow-other-keys)\n" @@ -16980,7 +17105,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8952 +#: guix-git/doc/guix.texi:9013 #, no-wrap msgid "" "(define* (build #:allow-other-keys)\n" @@ -16990,7 +17115,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8959 +#: guix-git/doc/guix.texi:9020 #, no-wrap msgid "" "(define* (check #:key (test-target \"check\") (tests? #true)\n" @@ -17003,7 +17128,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8963 +#: guix-git/doc/guix.texi:9024 #, no-wrap msgid "" "(define* (install #:allow-other-keys)\n" @@ -17013,7 +17138,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8972 +#: guix-git/doc/guix.texi:9033 #, no-wrap msgid "" "(define %standard-phases\n" @@ -17027,38 +17152,38 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8982 +#: guix-git/doc/guix.texi:9043 msgid "This shows how @code{%standard-phases} is defined as a list of symbol/procedure pairs (@pxref{Pairs,,, guile, GNU Guile Reference Manual}). The first pair associates the @code{unpack} procedure with the @code{unpack} symbol---a name; the second pair defines the @code{configure} phase similarly, and so on. When building a package that uses @code{gnu-build-system} with its default list of phases, those phases are executed sequentially. You can see the name of each phase started and completed in the build log of packages that you build." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8988 +#: guix-git/doc/guix.texi:9049 msgid "Let's now look at the procedures themselves. Each one is defined with @code{define*}: @code{#:key} lists keyword parameters the procedure accepts, possibly with a default value, and @code{#:allow-other-keys} specifies that other keyword parameters are ignored (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9004 +#: guix-git/doc/guix.texi:9065 msgid "The @code{unpack} procedure honors the @code{source} parameter, which the build system uses to pass the file name of the source tarball (or version control checkout), and it ignores other parameters. The @code{configure} phase only cares about the @code{outputs} parameter, an alist mapping package output names to their store file name (@pxref{Packages with Multiple Outputs}). It extracts the file name of for @code{out}, the default output, and passes it to @command{./configure} as the installation prefix, meaning that @command{make install} will eventually copy all the files in that directory (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards}). @code{build} and @code{install} ignore all their arguments. @code{check} honors the @code{test-target} argument, which specifies the name of the Makefile target to run tests; it prints a message and skips tests when @code{tests?} is false." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9005 +#: guix-git/doc/guix.texi:9066 #, no-wrap msgid "build phases, customizing" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9014 +#: guix-git/doc/guix.texi:9075 msgid "The list of phases used for a particular package can be changed with the @code{#:phases} parameter of the build system. Changing the set of build phases boils down to building a new alist of phases based on the @code{%standard-phases} alist described above. This can be done with standard alist procedures such as @code{alist-delete} (@pxref{SRFI-1 Association Lists,,, guile, GNU Guile Reference Manual}); however, it is more convenient to do so with @code{modify-phases} (@pxref{Build Utilities, @code{modify-phases}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9019 +#: guix-git/doc/guix.texi:9080 msgid "Here is an example of a package definition that removes the @code{configure} phase of @code{%standard-phases} and inserts a new phase before the @code{build} phase, called @code{set-prefix-in-makefile}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9039 +#: guix-git/doc/guix.texi:9100 #, no-wrap msgid "" "(define-public example\n" @@ -17082,44 +17207,44 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9045 +#: guix-git/doc/guix.texi:9106 msgid "The new phase that is inserted is written as an anonymous procedure, introduced with @code{lambda*}; it honors the @code{outputs} parameter we have seen before. @xref{Build Utilities}, for more about the helpers used by this phase, and for more examples of @code{modify-phases}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9046 guix-git/doc/guix.texi:10046 +#: guix-git/doc/guix.texi:9107 guix-git/doc/guix.texi:10360 #, no-wrap msgid "code staging" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9047 guix-git/doc/guix.texi:10047 +#: guix-git/doc/guix.texi:9108 guix-git/doc/guix.texi:10361 #, no-wrap msgid "staging, of code" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9054 +#: guix-git/doc/guix.texi:9115 msgid "Keep in mind that build phases are code evaluated at the time the package is actually built. This explains why the whole @code{modify-phases} expression above is quoted (it comes after the @code{'} or apostrophe): it is @dfn{staged} for later execution. @xref{G-Expressions}, for an explanation of code staging and the @dfn{code strata} involved." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9064 +#: guix-git/doc/guix.texi:9125 msgid "As soon as you start writing non-trivial package definitions (@pxref{Defining Packages}) or other build actions (@pxref{G-Expressions}), you will likely start looking for helpers for ``shell-like'' actions---creating directories, copying and deleting files recursively, manipulating build phases, and so on. The @code{(guix build utils)} module provides such utility procedures." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9068 +#: guix-git/doc/guix.texi:9129 msgid "Most build systems load @code{(guix build utils)} (@pxref{Build Systems}). Thus, when writing custom build phases for your package definitions, you can usually assume those procedures are in scope." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9073 +#: guix-git/doc/guix.texi:9134 msgid "When writing G-expressions, you can import @code{(guix build utils)} on the ``build side'' using @code{with-imported-modules} and then put it in scope with the @code{use-modules} form (@pxref{Using Guile Modules,,, guile, GNU Guile Reference Manual}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9080 +#: guix-git/doc/guix.texi:9141 #, no-wrap msgid "" "(with-imported-modules '((guix build utils)) ;import it\n" @@ -17131,7 +17256,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9083 +#: guix-git/doc/guix.texi:9144 #, no-wrap msgid "" " ;; Happily use its 'mkdir-p' procedure.\n" @@ -17139,238 +17264,238 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9087 +#: guix-git/doc/guix.texi:9148 msgid "The remainder of this section is the reference for most of the utility procedures provided by @code{(guix build utils)}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9090 +#: guix-git/doc/guix.texi:9151 #, no-wrap msgid "Dealing with Store File Names" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9093 +#: guix-git/doc/guix.texi:9154 msgid "This section documents procedures that deal with store file names." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9094 +#: guix-git/doc/guix.texi:9155 #, no-wrap msgid "{Scheme Procedure} %store-directory" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9096 +#: guix-git/doc/guix.texi:9157 msgid "Return the directory name of the store." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9098 +#: guix-git/doc/guix.texi:9159 #, no-wrap msgid "{Scheme Procedure} store-file-name? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9100 +#: guix-git/doc/guix.texi:9161 msgid "Return true if @var{file} is in the store." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9102 +#: guix-git/doc/guix.texi:9163 #, no-wrap msgid "{Scheme Procedure} strip-store-file-name @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9105 +#: guix-git/doc/guix.texi:9166 msgid "Strip the @file{/gnu/store} and hash from @var{file}, a store file name. The result is typically a @code{\"@var{package}-@var{version}\"} string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9107 +#: guix-git/doc/guix.texi:9168 #, no-wrap msgid "{Scheme Procedure} package-name->name+version @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9112 +#: guix-git/doc/guix.texi:9173 msgid "Given @var{name}, a package name like @code{\"foo-0.9.1b\"}, return two values: @code{\"foo\"} and @code{\"0.9.1b\"}. When the version part is unavailable, @var{name} and @code{#f} are returned. The first hyphen followed by a digit is considered to introduce the version part." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9114 +#: guix-git/doc/guix.texi:9175 #, no-wrap msgid "File Types" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9117 +#: guix-git/doc/guix.texi:9178 msgid "The procedures below deal with files and file types." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9118 +#: guix-git/doc/guix.texi:9179 #, no-wrap msgid "{Scheme Procedure} directory-exists? @var{dir}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9120 +#: guix-git/doc/guix.texi:9181 msgid "Return @code{#t} if @var{dir} exists and is a directory." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9122 +#: guix-git/doc/guix.texi:9183 #, no-wrap msgid "{Scheme Procedure} executable-file? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9124 +#: guix-git/doc/guix.texi:9185 msgid "Return @code{#t} if @var{file} exists and is executable." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9126 +#: guix-git/doc/guix.texi:9187 #, no-wrap msgid "{Scheme Procedure} symbolic-link? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9128 +#: guix-git/doc/guix.texi:9189 msgid "Return @code{#t} if @var{file} is a symbolic link (aka. a ``symlink'')." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9130 +#: guix-git/doc/guix.texi:9191 #, no-wrap msgid "{Scheme Procedure} elf-file? @var{file}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9131 +#: guix-git/doc/guix.texi:9192 #, no-wrap msgid "{Scheme Procedure} ar-file? @var{file}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9132 +#: guix-git/doc/guix.texi:9193 #, no-wrap msgid "{Scheme Procedure} gzip-file? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9135 +#: guix-git/doc/guix.texi:9196 msgid "Return @code{#t} if @var{file} is, respectively, an ELF file, an @code{ar} archive (such as a @file{.a} static library), or a gzip file." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9137 +#: guix-git/doc/guix.texi:9198 #, no-wrap msgid "{Scheme Procedure} reset-gzip-timestamp @var{file} [#:keep-mtime? #t]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9141 +#: guix-git/doc/guix.texi:9202 msgid "If @var{file} is a gzip file, reset its embedded timestamp (as with @command{gzip --no-name}) and return true. Otherwise return @code{#f}. When @var{keep-mtime?} is true, preserve @var{file}'s modification time." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9143 +#: guix-git/doc/guix.texi:9204 #, no-wrap msgid "File Manipulation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9150 +#: guix-git/doc/guix.texi:9211 msgid "The following procedures and macros help create, modify, and delete files. They provide functionality comparable to common shell utilities such as @command{mkdir -p}, @command{cp -r}, @command{rm -r}, and @command{sed}. They complement Guile's extensive, but low-level, file system interface (@pxref{POSIX,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9151 +#: guix-git/doc/guix.texi:9212 #, no-wrap msgid "{Scheme Syntax} with-directory-excursion @var{directory} @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9153 +#: guix-git/doc/guix.texi:9214 msgid "Run @var{body} with @var{directory} as the process's current directory." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9160 +#: guix-git/doc/guix.texi:9221 msgid "Essentially, this macro changes the current directory to @var{directory} before evaluating @var{body}, using @code{chdir} (@pxref{Processes,,, guile, GNU Guile Reference Manual}). It changes back to the initial directory when the dynamic extent of @var{body} is left, be it @i{via} normal procedure return or @i{via} a non-local exit such as an exception." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9162 +#: guix-git/doc/guix.texi:9223 #, no-wrap msgid "{Scheme Procedure} mkdir-p @var{dir}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9164 +#: guix-git/doc/guix.texi:9225 msgid "Create directory @var{dir} and all its ancestors." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9166 +#: guix-git/doc/guix.texi:9227 #, no-wrap msgid "{Scheme Procedure} install-file @var{file} @var{directory}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9169 +#: guix-git/doc/guix.texi:9230 msgid "Create @var{directory} if it does not exist and copy @var{file} in there under the same name." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9171 +#: guix-git/doc/guix.texi:9232 #, no-wrap msgid "{Scheme Procedure} make-file-writable @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9173 +#: guix-git/doc/guix.texi:9234 msgid "Make @var{file} writable for its owner." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9175 +#: guix-git/doc/guix.texi:9236 #, no-wrap msgid "{Scheme Procedure} copy-recursively @var{source} @var{destination} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9184 +#: guix-git/doc/guix.texi:9245 msgid "[#:log (current-output-port)] [#:follow-symlinks? #f] @ [#:copy-file copy-file] [#:keep-mtime? #f] [#:keep-permissions? #t] Copy @var{source} directory to @var{destination}. Follow symlinks if @var{follow-symlinks?} is true; otherwise, just preserve them. Call @var{copy-file} to copy regular files. When @var{keep-mtime?} is true, keep the modification time of the files in @var{source} on those of @var{destination}. When @var{keep-permissions?} is true, preserve file permissions. Write verbose output to the @var{log} port." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9186 +#: guix-git/doc/guix.texi:9247 #, no-wrap msgid "{Scheme Procedure} delete-file-recursively @var{dir} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9191 +#: guix-git/doc/guix.texi:9252 msgid "[#:follow-mounts? #f] Delete @var{dir} recursively, like @command{rm -rf}, without following symlinks. Don't follow mount points either, unless @var{follow-mounts?} is true. Report but ignore errors." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9193 +#: guix-git/doc/guix.texi:9254 #, no-wrap msgid "{Scheme Syntax} substitute* @var{file} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9198 +#: guix-git/doc/guix.texi:9259 msgid "((@var{regexp} @var{match-var}@dots{}) @var{body}@dots{}) @dots{} Substitute @var{regexp} in @var{file} by the string returned by @var{body}. @var{body} is evaluated with each @var{match-var} bound to the corresponding positional regexp sub-expression. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9205 +#: guix-git/doc/guix.texi:9266 #, no-wrap msgid "" "(substitute* file\n" @@ -17381,71 +17506,71 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9211 +#: guix-git/doc/guix.texi:9272 msgid "Here, anytime a line of @var{file} contains @code{hello}, it is replaced by @code{good morning}. Anytime a line of @var{file} matches the second regexp, @code{all} is bound to the complete match, @code{letters} is bound to the first sub-expression, and @code{end} is bound to the last one." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9214 +#: guix-git/doc/guix.texi:9275 msgid "When one of the @var{match-var} is @code{_}, no variable is bound to the corresponding match substring." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9217 +#: guix-git/doc/guix.texi:9278 msgid "Alternatively, @var{file} may be a list of file names, in which case they are all subject to the substitutions." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9220 +#: guix-git/doc/guix.texi:9281 msgid "Be careful about using @code{$} to match the end of a line; by itself it won't match the terminating newline of a line." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9222 +#: guix-git/doc/guix.texi:9283 #, no-wrap msgid "File Search" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9224 +#: guix-git/doc/guix.texi:9285 #, no-wrap msgid "file, searching" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9226 +#: guix-git/doc/guix.texi:9287 msgid "This section documents procedures to search and filter files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9227 +#: guix-git/doc/guix.texi:9288 #, no-wrap msgid "{Scheme Procedure} file-name-predicate @var{regexp}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9230 +#: guix-git/doc/guix.texi:9291 msgid "Return a predicate that returns true when passed a file name whose base name matches @var{regexp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9232 +#: guix-git/doc/guix.texi:9293 #, no-wrap msgid "{Scheme Procedure} find-files @var{dir} [@var{pred}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9243 +#: guix-git/doc/guix.texi:9304 msgid "[#:stat lstat] [#:directories? #f] [#:fail-on-error? #f] Return the lexicographically sorted list of files under @var{dir} for which @var{pred} returns true. @var{pred} is passed two arguments: the absolute file name, and its stat buffer; the default predicate always returns true. @var{pred} can also be a regular expression, in which case it is equivalent to @code{(file-name-predicate @var{pred})}. @var{stat} is used to obtain file information; using @code{lstat} means that symlinks are not followed. If @var{directories?} is true, then directories will also be included. If @var{fail-on-error?} is true, raise an exception upon error." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9247 +#: guix-git/doc/guix.texi:9308 msgid "Here are a few examples where we assume that the current directory is the root of the Guix source tree:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9252 +#: guix-git/doc/guix.texi:9313 #, no-wrap msgid "" ";; List all the regular files in the current directory.\n" @@ -17455,7 +17580,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9256 +#: guix-git/doc/guix.texi:9317 #, no-wrap msgid "" ";; List all the .scm files under gnu/services.\n" @@ -17465,7 +17590,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9260 +#: guix-git/doc/guix.texi:9321 #, no-wrap msgid "" ";; List ar files in the current directory.\n" @@ -17474,45 +17599,45 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9262 +#: guix-git/doc/guix.texi:9323 #, no-wrap msgid "{Scheme Procedure} which @var{program}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9265 +#: guix-git/doc/guix.texi:9326 msgid "Return the complete file name for @var{program} as found in @code{$PATH}, or @code{#f} if @var{program} could not be found." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9267 +#: guix-git/doc/guix.texi:9328 #, no-wrap msgid "{Scheme Procedure} search-input-file @var{inputs} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9268 +#: guix-git/doc/guix.texi:9329 #, no-wrap msgid "{Scheme Procedure} search-input-directory @var{inputs} @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9273 +#: guix-git/doc/guix.texi:9334 msgid "Return the complete file name for @var{name} as found in @var{inputs}; @code{search-input-file} searches for a regular file and @code{search-input-directory} searches for a directory. If @var{name} could not be found, an exception is raised." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9277 +#: guix-git/doc/guix.texi:9338 msgid "Here, @var{inputs} must be an association list like @code{inputs} and @code{native-inputs} as available to build phases (@pxref{Build Phases})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9281 +#: guix-git/doc/guix.texi:9342 msgid "Here is a (simplified) example of how @code{search-input-file} is used in a build phase of the @code{wireguard-tools} package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9290 +#: guix-git/doc/guix.texi:9351 #, no-wrap msgid "" "(add-after 'install 'wrap-wg-quick\n" @@ -17524,35 +17649,214 @@ msgid "" " `(\"PATH\" \":\" prefix ,(list coreutils))))))\n" msgstr "" +#. type: subsection +#: guix-git/doc/guix.texi:9353 +#, no-wrap +msgid "Program Invocation" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:9355 +#, no-wrap +msgid "program invocation, from Scheme" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:9356 +#, no-wrap +msgid "invoking programs, from Scheme" +msgstr "" + #. type: Plain text -#: guix-git/doc/guix.texi:9301 +#: guix-git/doc/guix.texi:9360 +msgid "You'll find handy procedures to spawn processes in this module, essentially convenient wrappers around Guile's @code{system*} (@pxref{Processes, @code{system*},, guile, GNU Guile Reference Manual})." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9361 +#, no-wrap +msgid "{Scheme Procedure} invoke @var{program} @var{args}@dots{}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9365 +msgid "Invoke @var{program} with the given @var{args}. Raise an @code{&invoke-error} exception if the exit code is non-zero; otherwise return @code{#t}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9369 +msgid "The advantage compared to @code{system*} is that you do not need to check the return value. This reduces boilerplate in shell-script-like snippets for instance in package build phases." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9371 +#, no-wrap +msgid "{Scheme Procedure} invoke-error? @var{c}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9373 +msgid "Return true if @var{c} is an @code{&invoke-error} condition." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9375 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-program @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9376 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-arguments @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9377 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-exit-status @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9378 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-term-signal @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9379 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-stop-signal @var{c}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9381 +msgid "Access specific fields of @var{c}, an @code{&invoke-error} condition." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9383 +#, no-wrap +msgid "{Scheme Procedure} report-invoke-error @var{c} [@var{port}]" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9386 +msgid "Report to @var{port} (by default the current error port) about @var{c}, an @code{&invoke-error} condition, in a human-friendly way." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9388 +msgid "Typical usage would look like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9392 +#, no-wrap +msgid "" +"(use-modules (srfi srfi-34) ;for 'guard'\n" +" (guix build utils))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9396 +#, no-wrap +msgid "" +"(guard (c ((invoke-error? c)\n" +" (report-invoke-error c)))\n" +" (invoke \"date\" \"--imaginary-option\"))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9398 +#, no-wrap +msgid "@print{} command \"date\" \"--imaginary-option\" failed with status 1\n" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9401 +#, no-wrap +msgid "{Scheme Procedure} invoke/quiet @var{program} @var{args}@dots{}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9407 +msgid "Invoke @var{program} with @var{args} and capture @var{program}'s standard output and standard error. If @var{program} succeeds, print nothing and return the unspecified value; otherwise, raise a @code{&message} error condition that includes the status code and the output of @var{program}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9409 +msgid "Here's an example:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9414 +#, no-wrap +msgid "" +"(use-modules (srfi srfi-34) ;for 'guard'\n" +" (srfi srfi-35) ;for 'message-condition?'\n" +" (guix build utils))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9419 +#, no-wrap +msgid "" +"(guard (c ((message-condition? c)\n" +" (display (condition-message c))))\n" +" (invoke/quiet \"date\") ;all is fine\n" +" (invoke/quiet \"date\" \"--imaginary-option\"))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9421 +#, no-wrap +msgid "" +"@print{} 'date --imaginary-option' exited with status 1; output follows:\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9424 +#, no-wrap +msgid "" +" date: unrecognized option '--imaginary-option'\n" +" Try 'date --help' for more information.\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9436 msgid "The @code{(guix build utils)} also contains tools to manipulate build phases as used by build systems (@pxref{Build Systems}). Build phases are represented as association lists or ``alists'' (@pxref{Association Lists,,, guile, GNU Guile Reference Manual}) where each key is a symbol naming the phase and the associated value is a procedure (@pxref{Build Phases})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9305 +#: guix-git/doc/guix.texi:9440 msgid "Guile core and the @code{(srfi srfi-1)} module both provide tools to manipulate alists. The @code{(guix build utils)} module complements those with tools written with build phases in mind." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9306 +#: guix-git/doc/guix.texi:9441 #, no-wrap msgid "build phases, modifying" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9307 +#: guix-git/doc/guix.texi:9442 #, no-wrap msgid "{Scheme Syntax} modify-phases @var{phases} @var{clause}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9310 +#: guix-git/doc/guix.texi:9445 msgid "Modify @var{phases} sequentially as per each @var{clause}, which may have one of the following forms:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9316 +#: guix-git/doc/guix.texi:9451 #, no-wrap msgid "" "(delete @var{old-phase-name})\n" @@ -17562,17 +17866,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9320 +#: guix-git/doc/guix.texi:9455 msgid "Where every @var{phase-name} above is an expression evaluating to a symbol, and @var{new-phase} an expression evaluating to a procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9331 +#: guix-git/doc/guix.texi:9466 msgid "The example below is taken from the definition of the @code{grep} package. It adds a phase to run after the @code{install} phase, called @code{fix-egrep-and-fgrep}. That phase is a procedure (@code{lambda*} is for anonymous procedures) that takes a @code{#:outputs} keyword argument and ignores extra keyword arguments (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual}, for more on @code{lambda*} and optional and keyword arguments.) The phase uses @code{substitute*} to modify the installed @file{egrep} and @file{fgrep} scripts so that they refer to @code{grep} by its absolute file name:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9345 +#: guix-git/doc/guix.texi:9480 #, no-wrap msgid "" "(modify-phases %standard-phases\n" @@ -17590,12 +17894,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9352 +#: guix-git/doc/guix.texi:9487 msgid "In the example below, phases are modified in two ways: the standard @code{configure} phase is deleted, presumably because the package does not have a @file{configure} script or anything similar, and the default @code{install} phase is replaced by one that manually copies the executable files to be installed:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9365 +#: guix-git/doc/guix.texi:9500 #, no-wrap msgid "" "(modify-phases %standard-phases\n" @@ -17612,377 +17916,605 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9373 +#: guix-git/doc/guix.texi:9507 +#, no-wrap +msgid "search path" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9514 +msgid "Many programs and libraries look for input data in a @dfn{search path}, a list of directories: shells like Bash look for executables in the command search path, a C compiler looks for @file{.h} files in its header search path, the Python interpreter looks for @file{.py} files in its search path, the spell checker has a search path for dictionaries, and so on." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9522 +msgid "Search paths can usually be defined or overridden @i{via} environment variables (@pxref{Environment Variables,,, libc, The GNU C Library Reference Manual}). For example, the search paths mentioned above can be changed by defining the @env{PATH}, @env{C_INCLUDE_PATH}, @env{PYTHONPATH} (or @env{GUIX_PYTHONPATH}), and @env{DICPATH} environment variables---you know, all these something-PATH variables that you need to get right or things ``won't be found''." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9532 +msgid "You may have noticed from the command line that Guix ``knows'' which search path environment variables should be defined, and how. When you install packages in your default profile, the file @file{~/.guix-profile/etc/profile} is created, which you can ``source'' from the shell to set those variables. Likewise, if you ask @command{guix shell} to create an environment containing Python and NumPy, a Python library, and if you pass it the @option{--search-paths} option, it will tell you about @env{PATH} and @env{GUIX_PYTHONPATH} (@pxref{Invoking guix shell}):" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9537 +#, no-wrap +msgid "" +"$ guix shell python python-numpy --pure --search-paths\n" +"export PATH=\"/gnu/store/@dots{}-profile/bin\"\n" +"export GUIX_PYTHONPATH=\"/gnu/store/@dots{}-profile/lib/python3.9/site-packages\"\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9541 +msgid "When you omit @option{--search-paths}, it defines these environment variables right away, such that Python can readily find NumPy:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9550 +#, no-wrap +msgid "" +"$ guix shell python python-numpy -- python3\n" +"Python 3.9.6 (default, Jan 1 1970, 00:00:01)\n" +"[GCC 10.3.0] on linux\n" +"Type \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n" +">>> import numpy\n" +">>> numpy.version.version\n" +"'1.20.3'\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9555 +msgid "For this to work, the definition of the @code{python} package @emph{declares} the search path it cares about and its associated environment variable, @env{GUIX_PYTHONPATH}. It looks like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9565 +#, no-wrap +msgid "" +"(package\n" +" (name \"python\")\n" +" (version \"3.9.9\")\n" +" ;; some fields omitted...\n" +" (native-search-paths\n" +" (list (search-path-specification\n" +" (variable \"GUIX_PYTHONPATH\")\n" +" (files (list \"lib/python/3.9/site-packages\"))))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9580 +msgid "What this @code{native-search-paths} field says is that, when the @code{python} package is used, the @env{GUIX_PYTHONPATH} environment variable must be defined to include all the @file{lib/python/3.9/site-packages} sub-directories encountered in its environment. (The @code{native-} bit means that, if we are in a cross-compilation environment, only native inputs may be added to the search path; @pxref{package Reference, @code{search-paths}}.) In the NumPy example above, the profile where @code{python} appears contains exactly one such sub-directory, and @env{GUIX_PYTHONPATH} is set to that. When there are several @file{lib/python/3.9/site-packages}---this is the case in package build environments---they are all added to @env{GUIX_PYTHONPATH}, separated by colons (@code{:})." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9587 +msgid "Notice that @env{GUIX_PYTHONPATH} is specified as part of the definition of the @code{python} package, and @emph{not} as part of that of @code{python-numpy}. This is because this environment variable ``belongs'' to Python, not NumPy: Python actually reads the value of that variable and honors it." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9591 +msgid "Corollary: if you create a profile that does not contain @code{python}, @code{GUIX_PYTHONPATH} will @emph{not} be defined, even if it contains packages that provide @file{.py} files:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9595 +#, no-wrap +msgid "" +"$ guix shell python-numpy --search-paths --pure\n" +"export PATH=\"/gnu/store/@dots{}-profile/bin\"\n" +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9599 +msgid "This makes a lot of sense if we look at this profile in isolation: no software in this profile would read @env{GUIX_PYTHONPATH}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9609 +msgid "Of course, there are many variations on that theme: some packages honor more than one search path, some use separators other than colon, some accumulate several directories in their search path, and so on. A more complex example is the search path of libxml2: the value of the @env{XML_CATALOG_FILES} environment variable is space-separated, it must contain a list of @file{catalog.xml} files (not directories), which are to be found in @file{xml} sub-directories---nothing less. The search path specification looks like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9621 +#, no-wrap +msgid "" +"(package\n" +" (name \"libxml2\")\n" +" ;; some fields omitted\n" +" (native-search-paths\n" +" (list (search-path-specification\n" +" (variable \"XML_CATALOG_FILES\")\n" +" (separator \" \")\n" +" (files '(\"xml\"))\n" +" (file-pattern \"^catalog\\\\.xml$\")\n" +" (file-type 'regular)))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9624 +msgid "Worry not, search path specifications are usually not this tricky." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9628 +msgid "The @code{(guix search-paths)} module defines the data type of search path specifications and a number of helper procedures. Below is the reference of search path specifications." +msgstr "" + +#. type: deftp +#: guix-git/doc/guix.texi:9629 +#, no-wrap +msgid "{Data Type} search-path-specification" +msgstr "" + +#. type: deftp +#: guix-git/doc/guix.texi:9631 +msgid "The data type for search path specifications." +msgstr "" + +#. type: code{#1} +#: guix-git/doc/guix.texi:9633 +#, no-wrap +msgid "variable" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9635 +msgid "The name of the environment variable for this search path (a string)." +msgstr "" + +#. type: code{#1} +#: guix-git/doc/guix.texi:9636 guix-git/doc/guix.texi:17482 +#, no-wrap +msgid "files" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9639 +msgid "The list of sub-directories (strings) that should be added to the search path." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9640 +#, no-wrap +msgid "@code{separator} (default: @code{\":\"})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9642 +msgid "The string used to separate search path components." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9650 +msgid "As a special case, a @code{separator} value of @code{#f} specifies a ``single-component search path''---in other words, a search path that cannot contain more than one element. This is useful in some cases, such as the @code{SSL_CERT_DIR} variable (honored by OpenSSL, cURL, and a few other packages) or the @code{ASPELL_DICT_DIR} variable (honored by the GNU Aspell spell checker), both of which must point to a single directory." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9651 +#, no-wrap +msgid "@code{file-type} (default: @code{'directory})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9655 +msgid "The type of file being matched---@code{'directory} or @code{'regular}, though it can be any symbol returned by @code{stat:type} (@pxref{File System, @code{stat},, guile, GNU Guile Reference Manual})." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9658 +msgid "In the libxml2 example above, we would match regular files; in the Python example, we would match directories." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9659 +#, no-wrap +msgid "@code{file-pattern} (default: @code{#f})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9663 +msgid "This must be either @code{#f} or a regular expression specifying files to be matched @emph{within} the sub-directories specified by the @code{files} field." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9665 +msgid "Again, the libxml2 example shows a situation where this is needed." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9671 +msgid "How do you turn search path specifications on one hand and a bunch of directories on the other hand in a set of environment variable definitions? That's the job of @code{evaluate-search-paths}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9672 +#, no-wrap +msgid "{Scheme Procedure} evaluate-search-paths @var{search-paths} @" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9678 +msgid "@var{directories} [@var{getenv}] Evaluate @var{search-paths}, a list of search-path specifications, for @var{directories}, a list of directory names, and return a list of specification/value pairs. Use @var{getenv} to determine the current settings and report only settings not already effective." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9682 +msgid "The @code{(guix profiles)} provides a higher-level helper procedure, @code{load-profile}, that sets the environment variables of a profile." +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:9687 #, no-wrap msgid "store items" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9374 +#: guix-git/doc/guix.texi:9688 #, no-wrap msgid "store paths" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9385 +#: guix-git/doc/guix.texi:9699 msgid "Conceptually, the @dfn{store} is the place where derivations that have been built successfully are stored---by default, @file{/gnu/store}. Sub-directories in the store are referred to as @dfn{store items} or sometimes @dfn{store paths}. The store has an associated database that contains information such as the store paths referred to by each store path, and the list of @emph{valid} store items---results of successful builds. This database resides in @file{@var{localstatedir}/guix/db}, where @var{localstatedir} is the state directory specified @i{via} @option{--localstatedir} at configure time, usually @file{/var}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9390 +#: guix-git/doc/guix.texi:9704 msgid "The store is @emph{always} accessed by the daemon on behalf of its clients (@pxref{Invoking guix-daemon}). To manipulate the store, clients connect to the daemon over a Unix-domain socket, send requests to it, and read the result---these are remote procedure calls, or RPCs." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:9395 +#: guix-git/doc/guix.texi:9709 msgid "Users must @emph{never} modify files under @file{/gnu/store} directly. This would lead to inconsistencies and break the immutability assumptions of Guix's functional model (@pxref{Introduction})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:9399 +#: guix-git/doc/guix.texi:9713 msgid "@xref{Invoking guix gc, @command{guix gc --verify}}, for information on how to check the integrity of the store and attempt recovery from accidental modifications." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9406 +#: guix-git/doc/guix.texi:9720 msgid "The @code{(guix store)} module provides procedures to connect to the daemon, and to perform RPCs. These are described below. By default, @code{open-connection}, and thus all the @command{guix} commands, connect to the local daemon or to the URI specified by the @env{GUIX_DAEMON_SOCKET} environment variable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9407 +#: guix-git/doc/guix.texi:9721 #, no-wrap msgid "{Environment Variable} GUIX_DAEMON_SOCKET" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9412 +#: guix-git/doc/guix.texi:9726 msgid "When set, the value of this variable should be a file name or a URI designating the daemon endpoint. When it is a file name, it denotes a Unix-domain socket to connect to. In addition to file names, the supported URI schemes are:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:9414 guix-git/doc/guix.texi:26183 +#: guix-git/doc/guix.texi:9728 guix-git/doc/guix.texi:26520 #, no-wrap msgid "file" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:9415 +#: guix-git/doc/guix.texi:9729 #, no-wrap msgid "unix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:9419 +#: guix-git/doc/guix.texi:9733 msgid "These are for Unix-domain sockets. @code{file:///var/guix/daemon-socket/socket} is equivalent to @file{/var/guix/daemon-socket/socket}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:9428 +#: guix-git/doc/guix.texi:9742 msgid "These URIs denote connections over TCP/IP, without encryption nor authentication of the remote host. The URI must specify the host name and optionally a port number (by default port 44146 is used):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9431 +#: guix-git/doc/guix.texi:9745 #, no-wrap msgid "guix://master.guix.example.org:1234\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:9436 +#: guix-git/doc/guix.texi:9750 msgid "This setup is suitable on local networks, such as clusters, where only trusted nodes may connect to the build daemon at @code{master.guix.example.org}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:9440 +#: guix-git/doc/guix.texi:9754 msgid "The @option{--listen} option of @command{guix-daemon} can be used to instruct it to listen for TCP connections (@pxref{Invoking guix-daemon, @option{--listen}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:9441 +#: guix-git/doc/guix.texi:9755 #, no-wrap msgid "ssh" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9442 +#: guix-git/doc/guix.texi:9756 #, no-wrap msgid "SSH access to build daemons" msgstr "" #. type: table -#: guix-git/doc/guix.texi:9448 +#: guix-git/doc/guix.texi:9762 msgid "These URIs allow you to connect to a remote daemon over SSH@. This feature requires Guile-SSH (@pxref{Requirements}) and a working @command{guile} binary in @env{PATH} on the destination machine. It supports public key and GSSAPI authentication. A typical URL might look like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9451 +#: guix-git/doc/guix.texi:9765 #, no-wrap msgid "ssh://charlie@@guix.example.org:22\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:9455 +#: guix-git/doc/guix.texi:9769 msgid "As for @command{guix copy}, the usual OpenSSH client configuration files are honored (@pxref{Invoking guix copy})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9458 +#: guix-git/doc/guix.texi:9772 msgid "Additional URI schemes may be supported in the future." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:9465 +#: guix-git/doc/guix.texi:9779 msgid "The ability to connect to remote build daemons is considered experimental as of @value{VERSION}. Please get in touch with us to share any problems or suggestions you may have (@pxref{Contributing})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9468 +#: guix-git/doc/guix.texi:9782 #, no-wrap msgid "{Scheme Procedure} open-connection [@var{uri}] [#:reserve-space? #t]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9473 +#: guix-git/doc/guix.texi:9787 msgid "Connect to the daemon over the Unix-domain socket at @var{uri} (a string). When @var{reserve-space?} is true, instruct it to reserve a little bit of extra space on the file system so that the garbage collector can still operate should the disk become full. Return a server object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9476 +#: guix-git/doc/guix.texi:9790 msgid "@var{file} defaults to @code{%default-socket-path}, which is the normal location given the options that were passed to @command{configure}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9478 +#: guix-git/doc/guix.texi:9792 #, no-wrap msgid "{Scheme Procedure} close-connection @var{server}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9480 +#: guix-git/doc/guix.texi:9794 msgid "Close the connection to @var{server}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9482 +#: guix-git/doc/guix.texi:9796 #, no-wrap msgid "{Scheme Variable} current-build-output-port" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9485 +#: guix-git/doc/guix.texi:9799 msgid "This variable is bound to a SRFI-39 parameter, which refers to the port where build and error logs sent by the daemon should be written." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9489 +#: guix-git/doc/guix.texi:9803 msgid "Procedures that make RPCs all take a server object as their first argument." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9490 +#: guix-git/doc/guix.texi:9804 #, no-wrap msgid "{Scheme Procedure} valid-path? @var{server} @var{path}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9491 +#: guix-git/doc/guix.texi:9805 #, no-wrap msgid "invalid store items" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9496 +#: guix-git/doc/guix.texi:9810 msgid "Return @code{#t} when @var{path} designates a valid store item and @code{#f} otherwise (an invalid item may exist on disk but still be invalid, for instance because it is the result of an aborted or failed build)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9499 +#: guix-git/doc/guix.texi:9813 msgid "A @code{&store-protocol-error} condition is raised if @var{path} is not prefixed by the store directory (@file{/gnu/store})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9501 +#: guix-git/doc/guix.texi:9815 #, no-wrap msgid "{Scheme Procedure} add-text-to-store @var{server} @var{name} @var{text} [@var{references}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9505 +#: guix-git/doc/guix.texi:9819 msgid "Add @var{text} under file @var{name} in the store, and return its store path. @var{references} is the list of store paths referred to by the resulting store path." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9507 +#: guix-git/doc/guix.texi:9821 #, no-wrap msgid "{Scheme Procedure} build-derivations @var{store} @var{derivations} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9512 +#: guix-git/doc/guix.texi:9826 msgid "[@var{mode}] Build @var{derivations}, a list of @code{} objects, @file{.drv} file names, or derivation/output pairs, using the specified @var{mode}---@code{(build-mode normal)} by default." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9518 +#: guix-git/doc/guix.texi:9832 msgid "Note that the @code{(guix monads)} module provides a monad as well as monadic versions of the above procedures, with the goal of making it more convenient to work with code that accesses the store (@pxref{The Store Monad})." msgstr "" #. type: i{#1} -#: guix-git/doc/guix.texi:9521 +#: guix-git/doc/guix.texi:9835 msgid "This section is currently incomplete." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9525 +#: guix-git/doc/guix.texi:9839 #, no-wrap msgid "derivations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9529 +#: guix-git/doc/guix.texi:9843 msgid "Low-level build actions and the environment in which they are performed are represented by @dfn{derivations}. A derivation contains the following pieces of information:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9534 +#: guix-git/doc/guix.texi:9848 msgid "The outputs of the derivation---derivations produce at least one file or directory in the store, but may produce more." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9536 +#: guix-git/doc/guix.texi:9850 #, no-wrap msgid "build-time dependencies" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9537 +#: guix-git/doc/guix.texi:9851 #, no-wrap msgid "dependencies, build-time" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9541 +#: guix-git/doc/guix.texi:9855 msgid "The inputs of the derivations---i.e., its build-time dependencies---which may be other derivations or plain files in the store (patches, build scripts, etc.)." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9544 +#: guix-git/doc/guix.texi:9858 msgid "The system type targeted by the derivation---e.g., @code{x86_64-linux}." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9548 +#: guix-git/doc/guix.texi:9862 msgid "The file name of a build script in the store, along with the arguments to be passed." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9551 +#: guix-git/doc/guix.texi:9865 msgid "A list of environment variables to be defined." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9554 +#: guix-git/doc/guix.texi:9868 #, no-wrap msgid "derivation path" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9562 +#: guix-git/doc/guix.texi:9876 msgid "Derivations allow clients of the daemon to communicate build actions to the store. They exist in two forms: as an in-memory representation, both on the client- and daemon-side, and as files in the store whose name end in @file{.drv}---these files are referred to as @dfn{derivation paths}. Derivations paths can be passed to the @code{build-derivations} procedure to perform the build actions they prescribe (@pxref{The Store})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9563 +#: guix-git/doc/guix.texi:9877 #, no-wrap msgid "fixed-output derivations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9570 +#: guix-git/doc/guix.texi:9884 msgid "Operations such as file downloads and version-control checkouts for which the expected content hash is known in advance are modeled as @dfn{fixed-output derivations}. Unlike regular derivations, the outputs of a fixed-output derivation are independent of its inputs---e.g., a source code download produces the same result regardless of the download method and tools being used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:9571 guix-git/doc/guix.texi:13341 +#: guix-git/doc/guix.texi:9885 guix-git/doc/guix.texi:13698 #, no-wrap msgid "references" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9572 +#: guix-git/doc/guix.texi:9886 #, no-wrap msgid "run-time dependencies" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9573 +#: guix-git/doc/guix.texi:9887 #, no-wrap msgid "dependencies, run-time" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9580 +#: guix-git/doc/guix.texi:9894 msgid "The outputs of derivations---i.e., the build results---have a set of @dfn{references}, as reported by the @code{references} RPC or the @command{guix gc --references} command (@pxref{Invoking guix gc}). References are the set of run-time dependencies of the build results. References are a subset of the inputs of the derivation; this subset is automatically computed by the build daemon by scanning all the files in the outputs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9585 +#: guix-git/doc/guix.texi:9899 msgid "The @code{(guix derivations)} module provides a representation of derivations as Scheme objects, along with procedures to create and otherwise manipulate derivations. The lowest-level primitive to create a derivation is the @code{derivation} procedure:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9586 +#: guix-git/doc/guix.texi:9900 #, no-wrap msgid "{Scheme Procedure} derivation @var{store} @var{name} @var{builder} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9595 +#: guix-git/doc/guix.texi:9909 msgid "@var{args} [#:outputs '(\"out\")] [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:inputs '()] [#:env-vars '()] @ [#:system (%current-system)] [#:references-graphs #f] @ [#:allowed-references #f] [#:disallowed-references #f] @ [#:leaked-env-vars #f] [#:local-build? #f] @ [#:substitutable? #t] [#:properties '()] Build a derivation with the given arguments, and return the resulting @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9602 +#: guix-git/doc/guix.texi:9916 msgid "When @var{hash} and @var{hash-algo} are given, a @dfn{fixed-output derivation} is created---i.e., one whose result is known in advance, such as a file download. If, in addition, @var{recursive?} is true, then that fixed output may be an executable file or a directory and @var{hash} must be the hash of an archive containing this output." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9607 +#: guix-git/doc/guix.texi:9921 msgid "When @var{references-graphs} is true, it must be a list of file name/store path pairs. In that case, the reference graph of each store path is exported in the build environment in the corresponding file, in a simple text format." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9612 +#: guix-git/doc/guix.texi:9926 msgid "When @var{allowed-references} is true, it must be a list of store items or outputs that the derivation's output may refer to. Likewise, @var{disallowed-references}, if true, must be a list of things the outputs may @emph{not} refer to." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9619 +#: guix-git/doc/guix.texi:9933 msgid "When @var{leaked-env-vars} is true, it must be a list of strings denoting environment variables that are allowed to ``leak'' from the daemon's environment to the build environment. This is only applicable to fixed-output derivations---i.e., when @var{hash} is true. The main use is to allow variables such as @code{http_proxy} to be passed to derivations that download files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9624 +#: guix-git/doc/guix.texi:9938 msgid "When @var{local-build?} is true, declare that the derivation is not a good candidate for offloading and should rather be built locally (@pxref{Daemon Offload Setup}). This is the case for small derivations where the costs of data transfers would outweigh the benefits." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9629 +#: guix-git/doc/guix.texi:9943 msgid "When @var{substitutable?} is false, declare that substitutes of the derivation's output should not be used (@pxref{Substitutes}). This is useful, for instance, when building packages that capture details of the host CPU instruction set." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9632 +#: guix-git/doc/guix.texi:9946 msgid "@var{properties} must be an association list describing ``properties'' of the derivation. It is kept as-is, uninterpreted, in the derivation." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9638 +#: guix-git/doc/guix.texi:9952 msgid "Here's an example with a shell script as its builder, assuming @var{store} is an open connection to the daemon, and @var{bash} points to a Bash executable in the store:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9643 +#: guix-git/doc/guix.texi:9957 #, no-wrap msgid "" "(use-modules (guix utils)\n" @@ -17992,7 +18524,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9652 +#: guix-git/doc/guix.texi:9966 #, no-wrap msgid "" "(let ((builder ; add the Bash script to the store\n" @@ -18006,48 +18538,48 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9659 +#: guix-git/doc/guix.texi:9973 msgid "As can be guessed, this primitive is cumbersome to use directly. A better approach is to write build scripts in Scheme, of course! The best course of action for that is to write the build code as a ``G-expression'', and to pass it to @code{gexp->derivation}. For more information, @pxref{G-Expressions}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9664 +#: guix-git/doc/guix.texi:9978 msgid "Once upon a time, @code{gexp->derivation} did not exist and constructing derivations with build code written in Scheme was achieved with @code{build-expression->derivation}, documented below. This procedure is now deprecated in favor of the much nicer @code{gexp->derivation}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9665 +#: guix-git/doc/guix.texi:9979 #, no-wrap msgid "{Scheme Procedure} build-expression->derivation @var{store} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9681 +#: guix-git/doc/guix.texi:9995 msgid "@var{name} @var{exp} @ [#:system (%current-system)] [#:inputs '()] @ [#:outputs '(\"out\")] [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:env-vars '()] [#:modules '()] @ [#:references-graphs #f] [#:allowed-references #f] @ [#:disallowed-references #f] @ [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f] Return a derivation that executes Scheme expression @var{exp} as a builder for derivation @var{name}. @var{inputs} must be a list of @code{(name drv-path sub-drv)} tuples; when @var{sub-drv} is omitted, @code{\"out\"} is assumed. @var{modules} is a list of names of Guile modules from the current search path to be copied in the store, compiled, and made available in the load path during the execution of @var{exp}---e.g., @code{((guix build utils) (guix build gnu-build-system))}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9689 +#: guix-git/doc/guix.texi:10003 msgid "@var{exp} is evaluated in an environment where @code{%outputs} is bound to a list of output/path pairs, and where @code{%build-inputs} is bound to a list of string/output-path pairs made from @var{inputs}. Optionally, @var{env-vars} is a list of string pairs specifying the name and value of environment variables visible to the builder. The builder terminates by passing the result of @var{exp} to @code{exit}; thus, when @var{exp} returns @code{#f}, the build is considered to have failed." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9693 +#: guix-git/doc/guix.texi:10007 msgid "@var{exp} is built using @var{guile-for-build} (a derivation). When @var{guile-for-build} is omitted or is @code{#f}, the value of the @code{%guile-for-build} fluid is used instead." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9698 +#: guix-git/doc/guix.texi:10012 msgid "See the @code{derivation} procedure for the meaning of @var{references-graphs}, @var{allowed-references}, @var{disallowed-references}, @var{local-build?}, and @var{substitutable?}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9703 +#: guix-git/doc/guix.texi:10017 msgid "Here's an example of a single-output derivation that creates a directory containing one file:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9711 +#: guix-git/doc/guix.texi:10025 #, no-wrap msgid "" "(let ((builder '(let ((out (assoc-ref %outputs \"out\")))\n" @@ -18060,51 +18592,51 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9713 +#: guix-git/doc/guix.texi:10027 #, no-wrap msgid "@result{} # @dots{}>\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9719 +#: guix-git/doc/guix.texi:10033 #, no-wrap msgid "monad" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9725 +#: guix-git/doc/guix.texi:10039 msgid "The procedures that operate on the store described in the previous sections all take an open connection to the build daemon as their first argument. Although the underlying model is functional, they either have side effects or depend on the current state of the store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9731 +#: guix-git/doc/guix.texi:10045 msgid "The former is inconvenient: the connection to the build daemon has to be carried around in all those functions, making it impossible to compose functions that do not take that parameter with functions that do. The latter can be problematic: since store operations have side effects and/or depend on external state, they have to be properly sequenced." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9732 +#: guix-git/doc/guix.texi:10046 #, no-wrap msgid "monadic values" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9733 +#: guix-git/doc/guix.texi:10047 #, no-wrap msgid "monadic functions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9743 +#: guix-git/doc/guix.texi:10057 msgid "This is where the @code{(guix monads)} module comes in. This module provides a framework for working with @dfn{monads}, and a particularly useful monad for our uses, the @dfn{store monad}. Monads are a construct that allows two things: associating ``context'' with values (in our case, the context is the store), and building sequences of computations (here computations include accesses to the store). Values in a monad---values that carry this additional context---are called @dfn{monadic values}; procedures that return such values are called @dfn{monadic procedures}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9745 +#: guix-git/doc/guix.texi:10059 msgid "Consider this ``normal'' procedure:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9754 +#: guix-git/doc/guix.texi:10068 #, no-wrap msgid "" "(define (sh-symlink store)\n" @@ -18117,12 +18649,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9758 +#: guix-git/doc/guix.texi:10072 msgid "Using @code{(guix monads)} and @code{(guix gexp)}, it may be rewritten as a monadic function:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9766 +#: guix-git/doc/guix.texi:10080 #, no-wrap msgid "" "(define (sh-symlink)\n" @@ -18134,17 +18666,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9773 +#: guix-git/doc/guix.texi:10087 msgid "There are several things to note in the second version: the @code{store} parameter is now implicit and is ``threaded'' in the calls to the @code{package->derivation} and @code{gexp->derivation} monadic procedures, and the monadic value returned by @code{package->derivation} is @dfn{bound} using @code{mlet} instead of plain @code{let}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9777 +#: guix-git/doc/guix.texi:10091 msgid "As it turns out, the call to @code{package->derivation} can even be omitted since it will take place implicitly, as we will see later (@pxref{G-Expressions}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9783 +#: guix-git/doc/guix.texi:10097 #, no-wrap msgid "" "(define (sh-symlink)\n" @@ -18154,12 +18686,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9792 +#: guix-git/doc/guix.texi:10106 msgid "Calling the monadic @code{sh-symlink} has no effect. As someone once said, ``you exit a monad like you exit a building on fire: by running''. So, to exit the monad and get the desired effect, one must use @code{run-with-store}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9796 +#: guix-git/doc/guix.texi:10110 #, no-wrap msgid "" "(run-with-store (open-connection) (sh-symlink))\n" @@ -18167,12 +18699,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9802 +#: guix-git/doc/guix.texi:10116 msgid "Note that the @code{(guix monad-repl)} module extends the Guile REPL with new ``meta-commands'' to make it easier to deal with monadic procedures: @code{run-in-store}, and @code{enter-store-monad}. The former is used to ``run'' a single monadic value through the store:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9806 +#: guix-git/doc/guix.texi:10120 #, no-wrap msgid "" "scheme@@(guile-user)> ,run-in-store (package->derivation hello)\n" @@ -18180,12 +18712,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9810 +#: guix-git/doc/guix.texi:10124 msgid "The latter enters a recursive REPL, where all the return values are automatically run through the store:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9819 +#: guix-git/doc/guix.texi:10133 #, no-wrap msgid "" "scheme@@(guile-user)> ,enter-store-monad\n" @@ -18198,50 +18730,50 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9824 +#: guix-git/doc/guix.texi:10138 msgid "Note that non-monadic values cannot be returned in the @code{store-monad} REPL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9827 +#: guix-git/doc/guix.texi:10141 msgid "The main syntactic forms to deal with monads in general are provided by the @code{(guix monads)} module and are described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9828 +#: guix-git/doc/guix.texi:10142 #, no-wrap msgid "{Scheme Syntax} with-monad @var{monad} @var{body} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9831 +#: guix-git/doc/guix.texi:10145 msgid "Evaluate any @code{>>=} or @code{return} forms in @var{body} as being in @var{monad}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9833 +#: guix-git/doc/guix.texi:10147 #, no-wrap msgid "{Scheme Syntax} return @var{val}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9835 +#: guix-git/doc/guix.texi:10149 msgid "Return a monadic value that encapsulates @var{val}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9837 +#: guix-git/doc/guix.texi:10151 #, no-wrap msgid "{Scheme Syntax} >>= @var{mval} @var{mproc} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9844 +#: guix-git/doc/guix.texi:10158 msgid "@dfn{Bind} monadic value @var{mval}, passing its ``contents'' to monadic procedures @var{mproc}@dots{}@footnote{This operation is commonly referred to as ``bind'', but that name denotes an unrelated procedure in Guile. Thus we use this somewhat cryptic symbol inherited from the Haskell language.}. There can be one @var{mproc} or several of them, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9852 +#: guix-git/doc/guix.texi:10166 #, no-wrap msgid "" "(run-with-state\n" @@ -18254,7 +18786,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9855 +#: guix-git/doc/guix.texi:10169 #, no-wrap msgid "" "@result{} 4\n" @@ -18262,99 +18794,99 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9858 +#: guix-git/doc/guix.texi:10172 #, no-wrap msgid "{Scheme Syntax} mlet @var{monad} ((@var{var} @var{mval}) ...) @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9860 +#: guix-git/doc/guix.texi:10174 msgid "@var{body} ..." msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9860 +#: guix-git/doc/guix.texi:10174 #, no-wrap msgid "{Scheme Syntax} mlet* @var{monad} ((@var{var} @var{mval}) ...) @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9872 +#: guix-git/doc/guix.texi:10186 msgid "@var{body} ... Bind the variables @var{var} to the monadic values @var{mval} in @var{body}, which is a sequence of expressions. As with the bind operator, this can be thought of as ``unpacking'' the raw, non-monadic value ``contained'' in @var{mval} and making @var{var} refer to that raw, non-monadic value within the scope of the @var{body}. The form (@var{var} -> @var{val}) binds @var{var} to the ``normal'' value @var{val}, as per @code{let}. The binding operations occur in sequence from left to right. The last expression of @var{body} must be a monadic expression, and its result will become the result of the @code{mlet} or @code{mlet*} when run in the @var{monad}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9875 +#: guix-git/doc/guix.texi:10189 msgid "@code{mlet*} is to @code{mlet} what @code{let*} is to @code{let} (@pxref{Local Bindings,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9877 +#: guix-git/doc/guix.texi:10191 #, no-wrap msgid "{Scheme System} mbegin @var{monad} @var{mexp} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9881 +#: guix-git/doc/guix.texi:10195 msgid "Bind @var{mexp} and the following monadic expressions in sequence, returning the result of the last expression. Every expression in the sequence must be a monadic expression." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9885 +#: guix-git/doc/guix.texi:10199 msgid "This is akin to @code{mlet}, except that the return values of the monadic expressions are ignored. In that sense, it is analogous to @code{begin}, but applied to monadic expressions." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9887 +#: guix-git/doc/guix.texi:10201 #, no-wrap msgid "{Scheme System} mwhen @var{condition} @var{mexp0} @var{mexp*} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9892 +#: guix-git/doc/guix.texi:10206 msgid "When @var{condition} is true, evaluate the sequence of monadic expressions @var{mexp0}..@var{mexp*} as in an @code{mbegin}. When @var{condition} is false, return @code{*unspecified*} in the current monad. Every expression in the sequence must be a monadic expression." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9894 +#: guix-git/doc/guix.texi:10208 #, no-wrap msgid "{Scheme System} munless @var{condition} @var{mexp0} @var{mexp*} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9899 +#: guix-git/doc/guix.texi:10213 msgid "When @var{condition} is false, evaluate the sequence of monadic expressions @var{mexp0}..@var{mexp*} as in an @code{mbegin}. When @var{condition} is true, return @code{*unspecified*} in the current monad. Every expression in the sequence must be a monadic expression." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9901 +#: guix-git/doc/guix.texi:10215 #, no-wrap msgid "state monad" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9905 +#: guix-git/doc/guix.texi:10219 msgid "The @code{(guix monads)} module provides the @dfn{state monad}, which allows an additional value---the state---to be @emph{threaded} through monadic procedure calls." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9906 +#: guix-git/doc/guix.texi:10220 #, no-wrap msgid "{Scheme Variable} %state-monad" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9909 +#: guix-git/doc/guix.texi:10223 msgid "The state monad. Procedures in the state monad can access and change the state that is threaded." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9913 +#: guix-git/doc/guix.texi:10227 msgid "Consider the example below. The @code{square} procedure returns a value in the state monad. It returns the square of its argument, but also increments the current state value:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9920 +#: guix-git/doc/guix.texi:10234 #, no-wrap msgid "" "(define (square x)\n" @@ -18366,7 +18898,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9924 +#: guix-git/doc/guix.texi:10238 #, no-wrap msgid "" "(run-with-state (sequence %state-monad (map square (iota 3))) 0)\n" @@ -18375,147 +18907,147 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9928 +#: guix-git/doc/guix.texi:10242 msgid "When ``run'' through @code{%state-monad}, we obtain that additional state value, which is the number of @code{square} calls." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9930 +#: guix-git/doc/guix.texi:10244 #, no-wrap msgid "{Monadic Procedure} current-state" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9932 +#: guix-git/doc/guix.texi:10246 msgid "Return the current state as a monadic value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9934 +#: guix-git/doc/guix.texi:10248 #, no-wrap msgid "{Monadic Procedure} set-current-state @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9937 +#: guix-git/doc/guix.texi:10251 msgid "Set the current state to @var{value} and return the previous state as a monadic value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9939 +#: guix-git/doc/guix.texi:10253 #, no-wrap msgid "{Monadic Procedure} state-push @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9942 +#: guix-git/doc/guix.texi:10256 msgid "Push @var{value} to the current state, which is assumed to be a list, and return the previous state as a monadic value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9944 +#: guix-git/doc/guix.texi:10258 #, no-wrap msgid "{Monadic Procedure} state-pop" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9947 +#: guix-git/doc/guix.texi:10261 msgid "Pop a value from the current state and return it as a monadic value. The state is assumed to be a list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9949 +#: guix-git/doc/guix.texi:10263 #, no-wrap msgid "{Scheme Procedure} run-with-state @var{mval} [@var{state}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9952 +#: guix-git/doc/guix.texi:10266 msgid "Run monadic value @var{mval} starting with @var{state} as the initial state. Return two values: the resulting value, and the resulting state." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9956 +#: guix-git/doc/guix.texi:10270 msgid "The main interface to the store monad, provided by the @code{(guix store)} module, is as follows." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9957 +#: guix-git/doc/guix.texi:10271 #, no-wrap msgid "{Scheme Variable} %store-monad" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9959 +#: guix-git/doc/guix.texi:10273 msgid "The store monad---an alias for @code{%state-monad}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9963 +#: guix-git/doc/guix.texi:10277 msgid "Values in the store monad encapsulate accesses to the store. When its effect is needed, a value of the store monad must be ``evaluated'' by passing it to the @code{run-with-store} procedure (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9965 +#: guix-git/doc/guix.texi:10279 #, no-wrap msgid "{Scheme Procedure} run-with-store @var{store} @var{mval} [#:guile-for-build] [#:system (%current-system)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9968 +#: guix-git/doc/guix.texi:10282 msgid "Run @var{mval}, a monadic value in the store monad, in @var{store}, an open store connection." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9970 +#: guix-git/doc/guix.texi:10284 #, no-wrap msgid "{Monadic Procedure} text-file @var{name} @var{text} [@var{references}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9974 +#: guix-git/doc/guix.texi:10288 msgid "Return as a monadic value the absolute file name in the store of the file containing @var{text}, a string. @var{references} is a list of store items that the resulting text file refers to; it defaults to the empty list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9976 +#: guix-git/doc/guix.texi:10290 #, no-wrap msgid "{Monadic Procedure} binary-file @var{name} @var{data} [@var{references}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9980 +#: guix-git/doc/guix.texi:10294 msgid "Return as a monadic value the absolute file name in the store of the file containing @var{data}, a bytevector. @var{references} is a list of store items that the resulting binary file refers to; it defaults to the empty list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9982 +#: guix-git/doc/guix.texi:10296 #, no-wrap msgid "{Monadic Procedure} interned-file @var{file} [@var{name}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9987 +#: guix-git/doc/guix.texi:10301 msgid "[#:recursive? #t] [#:select? (const #t)] Return the name of @var{file} once interned in the store. Use @var{name} as its store name, or the basename of @var{file} if @var{name} is omitted." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9991 guix-git/doc/guix.texi:10414 +#: guix-git/doc/guix.texi:10305 guix-git/doc/guix.texi:10728 msgid "When @var{recursive?} is true, the contents of @var{file} are added recursively; if @var{file} designates a flat file and @var{recursive?} is true, its contents are added, and its permission bits are kept." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9996 guix-git/doc/guix.texi:10419 +#: guix-git/doc/guix.texi:10310 guix-git/doc/guix.texi:10733 msgid "When @var{recursive?} is true, call @code{(@var{select?} @var{file} @var{stat})} for each directory entry, where @var{file} is the entry's absolute file name and @var{stat} is the result of @code{lstat}; exclude entries for which @var{select?} does not return true." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9998 +#: guix-git/doc/guix.texi:10312 msgid "The example below adds a file to the store, under two different names:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10004 +#: guix-git/doc/guix.texi:10318 #, no-wrap msgid "" "(run-with-store (open-connection)\n" @@ -18526,120 +19058,120 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10006 +#: guix-git/doc/guix.texi:10320 #, no-wrap msgid "@result{} (\"/gnu/store/rwm@dots{}-README\" \"/gnu/store/44i@dots{}-LEGU-MIN\")\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10012 +#: guix-git/doc/guix.texi:10326 msgid "The @code{(guix packages)} module exports the following package-related monadic procedures:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10013 +#: guix-git/doc/guix.texi:10327 #, no-wrap msgid "{Monadic Procedure} package-file @var{package} [@var{file}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10021 +#: guix-git/doc/guix.texi:10335 msgid "[#:system (%current-system)] [#:target #f] @ [#:output \"out\"] Return as a monadic value in the absolute file name of @var{file} within the @var{output} directory of @var{package}. When @var{file} is omitted, return the name of the @var{output} directory of @var{package}. When @var{target} is true, use it as a cross-compilation target triplet." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10025 +#: guix-git/doc/guix.texi:10339 msgid "Note that this procedure does @emph{not} build @var{package}. Thus, the result might or might not designate an existing file. We recommend not using this procedure unless you know what you are doing." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10027 +#: guix-git/doc/guix.texi:10341 #, no-wrap msgid "{Monadic Procedure} package->derivation @var{package} [@var{system}]" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:10028 +#: guix-git/doc/guix.texi:10342 #, no-wrap msgid "{Monadic Procedure} package->cross-derivation @var{package} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10032 +#: guix-git/doc/guix.texi:10346 msgid "@var{target} [@var{system}] Monadic version of @code{package-derivation} and @code{package-cross-derivation} (@pxref{Defining Packages})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10038 +#: guix-git/doc/guix.texi:10352 #, no-wrap msgid "G-expression" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10039 +#: guix-git/doc/guix.texi:10353 #, no-wrap msgid "build code quoting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10045 +#: guix-git/doc/guix.texi:10359 msgid "So we have ``derivations'', which represent a sequence of build actions to be performed to produce an item in the store (@pxref{Derivations}). These build actions are performed when asking the daemon to actually build the derivations; they are run by the daemon in a container (@pxref{Invoking guix-daemon})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10048 +#: guix-git/doc/guix.texi:10362 #, no-wrap msgid "strata of code" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10060 +#: guix-git/doc/guix.texi:10374 msgid "It should come as no surprise that we like to write these build actions in Scheme. When we do that, we end up with two @dfn{strata} of Scheme code@footnote{The term @dfn{stratum} in this context was coined by Manuel Serrano et al.@: in the context of their work on Hop. Oleg Kiselyov, who has written insightful @url{http://okmij.org/ftp/meta-programming/#meta-scheme, essays and code on this topic}, refers to this kind of code generation as @dfn{staging}.}: the ``host code''---code that defines packages, talks to the daemon, etc.---and the ``build code''---code that actually performs build actions, such as making directories, invoking @command{make}, and so on (@pxref{Build Phases})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10067 +#: guix-git/doc/guix.texi:10381 msgid "To describe a derivation and its build actions, one typically needs to embed build code inside host code. It boils down to manipulating build code as data, and the homoiconicity of Scheme---code has a direct representation as data---comes in handy for that. But we need more than the normal @code{quasiquote} mechanism in Scheme to construct build expressions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10076 +#: guix-git/doc/guix.texi:10390 msgid "The @code{(guix gexp)} module implements @dfn{G-expressions}, a form of S-expressions adapted to build expressions. G-expressions, or @dfn{gexps}, consist essentially of three syntactic forms: @code{gexp}, @code{ungexp}, and @code{ungexp-splicing} (or simply: @code{#~}, @code{#$}, and @code{#$@@}), which are comparable to @code{quasiquote}, @code{unquote}, and @code{unquote-splicing}, respectively (@pxref{Expression Syntax, @code{quasiquote},, guile, GNU Guile Reference Manual}). However, there are major differences:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:10081 +#: guix-git/doc/guix.texi:10395 msgid "Gexps are meant to be written to a file and run or manipulated by other processes." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:10086 +#: guix-git/doc/guix.texi:10400 msgid "When a high-level object such as a package or derivation is unquoted inside a gexp, the result is as if its output file name had been introduced." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:10091 +#: guix-git/doc/guix.texi:10405 msgid "Gexps carry information about the packages or derivations they refer to, and these dependencies are automatically added as inputs to the build processes that use them." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10093 guix-git/doc/guix.texi:10650 +#: guix-git/doc/guix.texi:10407 guix-git/doc/guix.texi:10964 #, no-wrap msgid "lowering, of high-level objects in gexps" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10103 +#: guix-git/doc/guix.texi:10417 msgid "This mechanism is not limited to package and derivation objects: @dfn{compilers} able to ``lower'' other high-level objects to derivations or files in the store can be defined, such that these objects can also be inserted into gexps. For example, a useful type of high-level objects that can be inserted in a gexp is ``file-like objects'', which make it easy to add files to the store and to refer to them in derivations and such (see @code{local-file} and @code{plain-file} below)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10105 +#: guix-git/doc/guix.texi:10419 msgid "To illustrate the idea, here is an example of a gexp:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10113 +#: guix-git/doc/guix.texi:10427 #, no-wrap msgid "" "(define build-exp\n" @@ -18651,34 +19183,34 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10118 +#: guix-git/doc/guix.texi:10432 msgid "This gexp can be passed to @code{gexp->derivation}; we obtain a derivation that builds a directory containing exactly one symlink to @file{/gnu/store/@dots{}-coreutils-8.22/bin/ls}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10121 +#: guix-git/doc/guix.texi:10435 #, no-wrap msgid "(gexp->derivation \"the-thing\" build-exp)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10129 +#: guix-git/doc/guix.texi:10443 msgid "As one would expect, the @code{\"/gnu/store/@dots{}-coreutils-8.22\"} string is substituted to the reference to the @var{coreutils} package in the actual build code, and @var{coreutils} is automatically made an input to the derivation. Likewise, @code{#$output} (equivalent to @code{(ungexp output)}) is replaced by a string containing the directory name of the output of the derivation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10130 +#: guix-git/doc/guix.texi:10444 #, no-wrap msgid "cross compilation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10136 +#: guix-git/doc/guix.texi:10450 msgid "In a cross-compilation context, it is useful to distinguish between references to the @emph{native} build of a package---that can run on the host---versus references to cross builds of a package. To that end, the @code{#+} plays the same role as @code{#$}, but is a reference to a native package build:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10147 +#: guix-git/doc/guix.texi:10461 #, no-wrap msgid "" "(gexp->derivation \"vi\"\n" @@ -18693,29 +19225,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10153 +#: guix-git/doc/guix.texi:10467 msgid "In the example above, the native build of @var{coreutils} is used, so that @command{ln} can actually run on the host; but then the cross-compiled build of @var{emacs} is referenced." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10154 +#: guix-git/doc/guix.texi:10468 #, no-wrap msgid "imported modules, for gexps" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:10155 +#: guix-git/doc/guix.texi:10469 #, no-wrap msgid "with-imported-modules" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10160 +#: guix-git/doc/guix.texi:10474 msgid "Another gexp feature is @dfn{imported modules}: sometimes you want to be able to use certain Guile modules from the ``host environment'' in the gexp, so those modules should be imported in the ``build environment''. The @code{with-imported-modules} form allows you to express that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10171 +#: guix-git/doc/guix.texi:10485 #, no-wrap msgid "" "(let ((build (with-imported-modules '((guix build utils))\n" @@ -18730,29 +19262,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10177 +#: guix-git/doc/guix.texi:10491 msgid "In this example, the @code{(guix build utils)} module is automatically pulled into the isolated build environment of our gexp, such that @code{(use-modules (guix build utils))} works as expected." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10178 +#: guix-git/doc/guix.texi:10492 #, no-wrap msgid "module closure" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:10179 +#: guix-git/doc/guix.texi:10493 #, no-wrap msgid "source-module-closure" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10186 +#: guix-git/doc/guix.texi:10500 msgid "Usually you want the @emph{closure} of the module to be imported---i.e., the module itself and all the modules it depends on---rather than just the module; failing to do that, attempts to use the module will fail because of missing dependent modules. The @code{source-module-closure} procedure computes the closure of a module by looking at its source file headers, which comes in handy in this case:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10189 +#: guix-git/doc/guix.texi:10503 #, no-wrap msgid "" "(use-modules (guix modules)) ;for 'source-module-closure'\n" @@ -18760,7 +19292,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10198 +#: guix-git/doc/guix.texi:10512 #, no-wrap msgid "" "(with-imported-modules (source-module-closure\n" @@ -18774,24 +19306,24 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10200 +#: guix-git/doc/guix.texi:10514 #, no-wrap msgid "extensions, for gexps" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:10201 +#: guix-git/doc/guix.texi:10515 #, no-wrap msgid "with-extensions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10206 +#: guix-git/doc/guix.texi:10520 msgid "In the same vein, sometimes you want to import not just pure-Scheme modules, but also ``extensions'' such as Guile bindings to C libraries or other ``full-blown'' packages. Say you need the @code{guile-json} package available on the build side, here's how you would do it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10209 +#: guix-git/doc/guix.texi:10523 #, no-wrap msgid "" "(use-modules (gnu packages guile)) ;for 'guile-json'\n" @@ -18799,7 +19331,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10215 +#: guix-git/doc/guix.texi:10529 #, no-wrap msgid "" "(with-extensions (list guile-json)\n" @@ -18810,184 +19342,184 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10218 +#: guix-git/doc/guix.texi:10532 msgid "The syntactic form to construct gexps is summarized below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10219 +#: guix-git/doc/guix.texi:10533 #, no-wrap msgid "{Scheme Syntax} #~@var{exp}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:10220 +#: guix-git/doc/guix.texi:10534 #, no-wrap msgid "{Scheme Syntax} (gexp @var{exp})" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10223 +#: guix-git/doc/guix.texi:10537 msgid "Return a G-expression containing @var{exp}. @var{exp} may contain one or more of the following forms:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10225 +#: guix-git/doc/guix.texi:10539 #, no-wrap msgid "#$@var{obj}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10226 +#: guix-git/doc/guix.texi:10540 #, no-wrap msgid "(ungexp @var{obj})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10231 +#: guix-git/doc/guix.texi:10545 msgid "Introduce a reference to @var{obj}. @var{obj} may have one of the supported types, for example a package or a derivation, in which case the @code{ungexp} form is replaced by its output file name---e.g., @code{\"/gnu/store/@dots{}-coreutils-8.22}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10234 +#: guix-git/doc/guix.texi:10548 msgid "If @var{obj} is a list, it is traversed and references to supported objects are substituted similarly." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10237 +#: guix-git/doc/guix.texi:10551 msgid "If @var{obj} is another gexp, its contents are inserted and its dependencies are added to those of the containing gexp." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10239 +#: guix-git/doc/guix.texi:10553 msgid "If @var{obj} is another kind of object, it is inserted as is." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10240 +#: guix-git/doc/guix.texi:10554 #, no-wrap msgid "#$@var{obj}:@var{output}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10241 +#: guix-git/doc/guix.texi:10555 #, no-wrap msgid "(ungexp @var{obj} @var{output})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10245 +#: guix-git/doc/guix.texi:10559 msgid "This is like the form above, but referring explicitly to the @var{output} of @var{obj}---this is useful when @var{obj} produces multiple outputs (@pxref{Packages with Multiple Outputs})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10246 +#: guix-git/doc/guix.texi:10560 #, no-wrap msgid "#+@var{obj}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10247 +#: guix-git/doc/guix.texi:10561 #, no-wrap msgid "#+@var{obj}:output" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10248 +#: guix-git/doc/guix.texi:10562 #, no-wrap msgid "(ungexp-native @var{obj})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10249 +#: guix-git/doc/guix.texi:10563 #, no-wrap msgid "(ungexp-native @var{obj} @var{output})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10252 +#: guix-git/doc/guix.texi:10566 msgid "Same as @code{ungexp}, but produces a reference to the @emph{native} build of @var{obj} when used in a cross compilation context." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10253 +#: guix-git/doc/guix.texi:10567 #, no-wrap msgid "#$output[:@var{output}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10254 +#: guix-git/doc/guix.texi:10568 #, no-wrap msgid "(ungexp output [@var{output}])" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10257 +#: guix-git/doc/guix.texi:10571 msgid "Insert a reference to derivation output @var{output}, or to the main output when @var{output} is omitted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10259 +#: guix-git/doc/guix.texi:10573 msgid "This only makes sense for gexps passed to @code{gexp->derivation}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10260 +#: guix-git/doc/guix.texi:10574 #, no-wrap msgid "#$@@@var{lst}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10261 +#: guix-git/doc/guix.texi:10575 #, no-wrap msgid "(ungexp-splicing @var{lst})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10264 +#: guix-git/doc/guix.texi:10578 msgid "Like the above, but splices the contents of @var{lst} inside the containing list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10265 +#: guix-git/doc/guix.texi:10579 #, no-wrap msgid "#+@@@var{lst}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10266 +#: guix-git/doc/guix.texi:10580 #, no-wrap msgid "(ungexp-native-splicing @var{lst})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10269 +#: guix-git/doc/guix.texi:10583 msgid "Like the above, but refers to native builds of the objects listed in @var{lst}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10274 +#: guix-git/doc/guix.texi:10588 msgid "G-expressions created by @code{gexp} or @code{#~} are run-time objects of the @code{gexp?} type (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10276 +#: guix-git/doc/guix.texi:10590 #, no-wrap msgid "{Scheme Syntax} with-imported-modules @var{modules} @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10279 +#: guix-git/doc/guix.texi:10593 msgid "Mark the gexps defined in @var{body}@dots{} as requiring @var{modules} in their execution environment." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10283 +#: guix-git/doc/guix.texi:10597 msgid "Each item in @var{modules} can be the name of a module, such as @code{(guix build utils)}, or it can be a module name, followed by an arrow, followed by a file-like object:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10289 +#: guix-git/doc/guix.texi:10603 #, no-wrap msgid "" "`((guix build utils)\n" @@ -18997,80 +19529,80 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10294 +#: guix-git/doc/guix.texi:10608 msgid "In the example above, the first two modules are taken from the search path, and the last one is created from the given file-like object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10298 +#: guix-git/doc/guix.texi:10612 msgid "This form has @emph{lexical} scope: it has an effect on the gexps directly defined in @var{body}@dots{}, but not on those defined, say, in procedures called from @var{body}@dots{}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10300 +#: guix-git/doc/guix.texi:10614 #, no-wrap msgid "{Scheme Syntax} with-extensions @var{extensions} @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10305 +#: guix-git/doc/guix.texi:10619 msgid "Mark the gexps defined in @var{body}@dots{} as requiring @var{extensions} in their build and execution environment. @var{extensions} is typically a list of package objects such as those defined in the @code{(gnu packages guile)} module." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10310 +#: guix-git/doc/guix.texi:10624 msgid "Concretely, the packages listed in @var{extensions} are added to the load path while compiling imported modules in @var{body}@dots{}; they are also added to the load path of the gexp returned by @var{body}@dots{}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10312 +#: guix-git/doc/guix.texi:10626 #, no-wrap msgid "{Scheme Procedure} gexp? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10314 +#: guix-git/doc/guix.texi:10628 msgid "Return @code{#t} if @var{obj} is a G-expression." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10320 +#: guix-git/doc/guix.texi:10634 msgid "G-expressions are meant to be written to disk, either as code building some derivation, or as plain files in the store. The monadic procedures below allow you to do that (@pxref{The Store Monad}, for more information about monads)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10321 +#: guix-git/doc/guix.texi:10635 #, no-wrap msgid "{Monadic Procedure} gexp->derivation @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10339 +#: guix-git/doc/guix.texi:10653 msgid "[#:system (%current-system)] [#:target #f] [#:graft? #t] @ [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:env-vars '()] [#:modules '()] @ [#:module-path @code{%load-path}] @ [#:effective-version \"2.2\"] @ [#:references-graphs #f] [#:allowed-references #f] @ [#:disallowed-references #f] @ [#:leaked-env-vars #f] @ [#:script-name (string-append @var{name} \"-builder\")] @ [#:deprecation-warnings #f] @ [#:local-build? #f] [#:substitutable? #t] @ [#:properties '()] [#:guile-for-build #f] Return a derivation @var{name} that runs @var{exp} (a gexp) with @var{guile-for-build} (a derivation) on @var{system}; @var{exp} is stored in a file called @var{script-name}. When @var{target} is true, it is used as the cross-compilation target triplet for packages referred to by @var{exp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10347 +#: guix-git/doc/guix.texi:10661 msgid "@var{modules} is deprecated in favor of @code{with-imported-modules}. Its meaning is to make @var{modules} available in the evaluation context of @var{exp}; @var{modules} is a list of names of Guile modules searched in @var{module-path} to be copied in the store, compiled, and made available in the load path during the execution of @var{exp}---e.g., @code{((guix build utils) (guix build gnu-build-system))}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10350 +#: guix-git/doc/guix.texi:10664 msgid "@var{effective-version} determines the string to use when adding extensions of @var{exp} (see @code{with-extensions}) to the search path---e.g., @code{\"2.2\"}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10353 +#: guix-git/doc/guix.texi:10667 msgid "@var{graft?} determines whether packages referred to by @var{exp} should be grafted when applicable." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10356 +#: guix-git/doc/guix.texi:10670 msgid "When @var{references-graphs} is true, it must be a list of tuples of one of the following forms:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10363 +#: guix-git/doc/guix.texi:10677 #, no-wrap msgid "" "(@var{file-name} @var{package})\n" @@ -19081,38 +19613,38 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10369 +#: guix-git/doc/guix.texi:10683 msgid "The right-hand-side of each element of @var{references-graphs} is automatically made an input of the build process of @var{exp}. In the build environment, each @var{file-name} contains the reference graph of the corresponding item, in a simple text format." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10375 +#: guix-git/doc/guix.texi:10689 msgid "@var{allowed-references} must be either @code{#f} or a list of output names and packages. In the latter case, the list denotes store items that the result is allowed to refer to. Any reference to another store item will lead to a build error. Similarly for @var{disallowed-references}, which can list items that must not be referenced by the outputs." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10378 +#: guix-git/doc/guix.texi:10692 msgid "@var{deprecation-warnings} determines whether to show deprecation warnings while compiling modules. It can be @code{#f}, @code{#t}, or @code{'detailed}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10380 +#: guix-git/doc/guix.texi:10694 msgid "The other arguments are as for @code{derivation} (@pxref{Derivations})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10382 +#: guix-git/doc/guix.texi:10696 #, no-wrap msgid "file-like objects" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10387 +#: guix-git/doc/guix.texi:10701 msgid "The @code{local-file}, @code{plain-file}, @code{computed-file}, @code{program-file}, and @code{scheme-file} procedures below return @dfn{file-like objects}. That is, when unquoted in a G-expression, these objects lead to a file in the store. Consider this G-expression:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10391 +#: guix-git/doc/guix.texi:10705 #, no-wrap msgid "" "#~(system* #$(file-append glibc \"/sbin/nscd\") \"-f\"\n" @@ -19120,76 +19652,76 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10400 +#: guix-git/doc/guix.texi:10714 msgid "The effect here is to ``intern'' @file{/tmp/my-nscd.conf} by copying it to the store. Once expanded, for instance @i{via} @code{gexp->derivation}, the G-expression refers to that copy under @file{/gnu/store}; thus, modifying or removing the file in @file{/tmp} does not have any effect on what the G-expression does. @code{plain-file} can be used similarly; it differs in that the file content is directly passed as a string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10401 +#: guix-git/doc/guix.texi:10715 #, no-wrap msgid "{Scheme Procedure} local-file @var{file} [@var{name}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10410 +#: guix-git/doc/guix.texi:10724 msgid "[#:recursive? #f] [#:select? (const #t)] Return an object representing local file @var{file} to add to the store; this object can be used in a gexp. If @var{file} is a literal string denoting a relative file name, it is looked up relative to the source file where it appears; if @var{file} is not a literal string, it is looked up relative to the current working directory at run time. @var{file} will be added to the store under @var{name}--by default the base name of @var{file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10422 +#: guix-git/doc/guix.texi:10736 msgid "This is the declarative counterpart of the @code{interned-file} monadic procedure (@pxref{The Store Monad, @code{interned-file}})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10424 +#: guix-git/doc/guix.texi:10738 #, no-wrap msgid "{Scheme Procedure} plain-file @var{name} @var{content}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10427 +#: guix-git/doc/guix.texi:10741 msgid "Return an object representing a text file called @var{name} with the given @var{content} (a string or a bytevector) to be added to the store." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10429 +#: guix-git/doc/guix.texi:10743 msgid "This is the declarative counterpart of @code{text-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10431 +#: guix-git/doc/guix.texi:10745 #, no-wrap msgid "{Scheme Procedure} computed-file @var{name} @var{gexp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10438 +#: guix-git/doc/guix.texi:10752 msgid "[#:local-build? #t] [#:options '()] Return an object representing the store item @var{name}, a file or directory computed by @var{gexp}. When @var{local-build?} is true (the default), the derivation is built locally. @var{options} is a list of additional arguments to pass to @code{gexp->derivation}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10440 +#: guix-git/doc/guix.texi:10754 msgid "This is the declarative counterpart of @code{gexp->derivation}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10442 +#: guix-git/doc/guix.texi:10756 #, no-wrap msgid "{Monadic Procedure} gexp->script @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10448 +#: guix-git/doc/guix.texi:10762 msgid "[#:guile (default-guile)] [#:module-path %load-path] @ [#:system (%current-system)] [#:target #f] Return an executable script @var{name} that runs @var{exp} using @var{guile}, with @var{exp}'s imported modules in its search path. Look up @var{exp}'s modules in @var{module-path}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10451 +#: guix-git/doc/guix.texi:10765 msgid "The example below builds a script that simply invokes the @command{ls} command:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10454 +#: guix-git/doc/guix.texi:10768 #, no-wrap msgid "" "(use-modules (guix gexp) (gnu packages base))\n" @@ -19197,7 +19729,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10458 +#: guix-git/doc/guix.texi:10772 #, no-wrap msgid "" "(gexp->script \"list-files\"\n" @@ -19206,12 +19738,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10463 +#: guix-git/doc/guix.texi:10777 msgid "When ``running'' it through the store (@pxref{The Store Monad, @code{run-with-store}}), we obtain a derivation that produces an executable file @file{/gnu/store/@dots{}-list-files} along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10468 +#: guix-git/doc/guix.texi:10782 #, no-wrap msgid "" "#!/gnu/store/@dots{}-guile-2.0.11/bin/guile -ds\n" @@ -19220,76 +19752,76 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10471 +#: guix-git/doc/guix.texi:10785 #, no-wrap msgid "{Scheme Procedure} program-file @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10476 +#: guix-git/doc/guix.texi:10790 msgid "[#:guile #f] [#:module-path %load-path] Return an object representing the executable store item @var{name} that runs @var{gexp}. @var{guile} is the Guile package used to execute that script. Imported modules of @var{gexp} are looked up in @var{module-path}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10478 +#: guix-git/doc/guix.texi:10792 msgid "This is the declarative counterpart of @code{gexp->script}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10480 +#: guix-git/doc/guix.texi:10794 #, no-wrap msgid "{Monadic Procedure} gexp->file @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10487 +#: guix-git/doc/guix.texi:10801 msgid "[#:set-load-path? #t] [#:module-path %load-path] @ [#:splice? #f] @ [#:guile (default-guile)] Return a derivation that builds a file @var{name} containing @var{exp}. When @var{splice?} is true, @var{exp} is considered to be a list of expressions that will be spliced in the resulting file." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10492 +#: guix-git/doc/guix.texi:10806 msgid "When @var{set-load-path?} is true, emit code in the resulting file to set @code{%load-path} and @code{%load-compiled-path} to honor @var{exp}'s imported modules. Look up @var{exp}'s modules in @var{module-path}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10495 +#: guix-git/doc/guix.texi:10809 msgid "The resulting file holds references to all the dependencies of @var{exp} or a subset thereof." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10497 +#: guix-git/doc/guix.texi:10811 #, no-wrap msgid "{Scheme Procedure} scheme-file @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10501 +#: guix-git/doc/guix.texi:10815 msgid "[#:splice? #f] [#:set-load-path? #t] Return an object representing the Scheme file @var{name} that contains @var{exp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10503 +#: guix-git/doc/guix.texi:10817 msgid "This is the declarative counterpart of @code{gexp->file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10505 +#: guix-git/doc/guix.texi:10819 #, no-wrap msgid "{Monadic Procedure} text-file* @var{name} @var{text} @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10511 +#: guix-git/doc/guix.texi:10825 msgid "Return as a monadic value a derivation that builds a text file containing all of @var{text}. @var{text} may list, in addition to strings, objects of any type that can be used in a gexp: packages, derivations, local file objects, etc. The resulting store file holds references to all these." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10516 +#: guix-git/doc/guix.texi:10830 msgid "This variant should be preferred over @code{text-file} anytime the file to create will reference items from the store. This is typically the case when building a configuration file that embeds store file names, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10524 +#: guix-git/doc/guix.texi:10838 #, no-wrap msgid "" "(define (profile.sh)\n" @@ -19301,23 +19833,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10529 +#: guix-git/doc/guix.texi:10843 msgid "In this example, the resulting @file{/gnu/store/@dots{}-profile.sh} file will reference @var{coreutils}, @var{grep}, and @var{sed}, thereby preventing them from being garbage-collected during its lifetime." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10531 +#: guix-git/doc/guix.texi:10845 #, no-wrap msgid "{Scheme Procedure} mixed-text-file @var{name} @var{text} @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10535 +#: guix-git/doc/guix.texi:10849 msgid "Return an object representing store file @var{name} containing @var{text}. @var{text} is a sequence of strings and file-like objects, as in:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10539 +#: guix-git/doc/guix.texi:10853 #, no-wrap msgid "" "(mixed-text-file \"profile\"\n" @@ -19325,23 +19857,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10542 +#: guix-git/doc/guix.texi:10856 msgid "This is the declarative counterpart of @code{text-file*}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10544 +#: guix-git/doc/guix.texi:10858 #, no-wrap msgid "{Scheme Procedure} file-union @var{name} @var{files}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10549 +#: guix-git/doc/guix.texi:10863 msgid "Return a @code{} that builds a directory containing all of @var{files}. Each item in @var{files} must be a two-element list where the first element is the file name to use in the new directory, and the second element is a gexp denoting the target file. Here's an example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10556 +#: guix-git/doc/guix.texi:10870 #, no-wrap msgid "" "(file-union \"etc\"\n" @@ -19352,50 +19884,50 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10559 +#: guix-git/doc/guix.texi:10873 msgid "This yields an @code{etc} directory containing these two files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10561 +#: guix-git/doc/guix.texi:10875 #, no-wrap msgid "{Scheme Procedure} directory-union @var{name} @var{things}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10564 +#: guix-git/doc/guix.texi:10878 msgid "Return a directory that is the union of @var{things}, where @var{things} is a list of file-like objects denoting directories. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10567 +#: guix-git/doc/guix.texi:10881 #, no-wrap msgid "(directory-union \"guile+emacs\" (list guile emacs))\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10570 +#: guix-git/doc/guix.texi:10884 msgid "yields a directory that is the union of the @code{guile} and @code{emacs} packages." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10572 +#: guix-git/doc/guix.texi:10886 #, no-wrap msgid "{Scheme Procedure} file-append @var{obj} @var{suffix} @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10576 +#: guix-git/doc/guix.texi:10890 msgid "Return a file-like object that expands to the concatenation of @var{obj} and @var{suffix}, where @var{obj} is a lowerable object and each @var{suffix} is a string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10578 +#: guix-git/doc/guix.texi:10892 msgid "As an example, consider this gexp:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10583 +#: guix-git/doc/guix.texi:10897 #, no-wrap msgid "" "(gexp->script \"run-uname\"\n" @@ -19404,12 +19936,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10586 +#: guix-git/doc/guix.texi:10900 msgid "The same effect could be achieved with:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10591 +#: guix-git/doc/guix.texi:10905 #, no-wrap msgid "" "(gexp->script \"run-uname\"\n" @@ -19418,39 +19950,39 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10597 +#: guix-git/doc/guix.texi:10911 msgid "There is one difference though: in the @code{file-append} case, the resulting script contains the absolute file name as a string, whereas in the second case, the resulting script contains a @code{(string-append @dots{})} expression to construct the file name @emph{at run time}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10599 +#: guix-git/doc/guix.texi:10913 #, no-wrap msgid "{Scheme Syntax} let-system @var{system} @var{body}@dots{}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:10600 +#: guix-git/doc/guix.texi:10914 #, no-wrap msgid "{Scheme Syntax} let-system (@var{system} @var{target}) @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10603 +#: guix-git/doc/guix.texi:10917 msgid "Bind @var{system} to the currently targeted system---e.g., @code{\"x86_64-linux\"}---within @var{body}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10608 +#: guix-git/doc/guix.texi:10922 msgid "In the second case, additionally bind @var{target} to the current cross-compilation target---a GNU triplet such as @code{\"arm-linux-gnueabihf\"}---or @code{#f} if we are not cross-compiling." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10611 +#: guix-git/doc/guix.texi:10925 msgid "@code{let-system} is useful in the occasional case where the object spliced into the gexp depends on the target system, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10622 +#: guix-git/doc/guix.texi:10936 #, no-wrap msgid "" "#~(system*\n" @@ -19465,23 +19997,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10625 +#: guix-git/doc/guix.texi:10939 #, no-wrap msgid "{Scheme Syntax} with-parameters ((@var{parameter} @var{value}) @dots{}) @var{exp}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10631 +#: guix-git/doc/guix.texi:10945 msgid "This macro is similar to the @code{parameterize} form for dynamically-bound @dfn{parameters} (@pxref{Parameters,,, guile, GNU Guile Reference Manual}). The key difference is that it takes effect when the file-like object returned by @var{exp} is lowered to a derivation or store item." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10634 +#: guix-git/doc/guix.texi:10948 msgid "A typical use of @code{with-parameters} is to force the system in effect for a given object:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10638 +#: guix-git/doc/guix.texi:10952 #, no-wrap msgid "" "(with-parameters ((%current-system \"i686-linux\"))\n" @@ -19489,94 +20021,94 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10642 +#: guix-git/doc/guix.texi:10956 msgid "The example above returns an object that corresponds to the i686 build of Coreutils, regardless of the current value of @code{%current-system}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10649 +#: guix-git/doc/guix.texi:10963 msgid "Of course, in addition to gexps embedded in ``host'' code, there are also modules containing build tools. To make it clear that they are meant to be used in the build stratum, these modules are kept in the @code{(guix build @dots{})} name space." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10655 +#: guix-git/doc/guix.texi:10969 msgid "Internally, high-level objects are @dfn{lowered}, using their compiler, to either derivations or store items. For instance, lowering a package yields a derivation, and lowering a @code{plain-file} yields a store item. This is achieved using the @code{lower-object} monadic procedure." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10656 +#: guix-git/doc/guix.texi:10970 #, no-wrap msgid "{Monadic Procedure} lower-object @var{obj} [@var{system}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10662 +#: guix-git/doc/guix.texi:10976 msgid "[#:target #f] Return as a value in @code{%store-monad} the derivation or store item corresponding to @var{obj} for @var{system}, cross-compiling for @var{target} if @var{target} is true. @var{obj} must be an object that has an associated gexp compiler, such as a @code{}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10664 +#: guix-git/doc/guix.texi:10978 #, no-wrap msgid "{Procedure} gexp->approximate-sexp @var{gexp}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10672 +#: guix-git/doc/guix.texi:10986 msgid "Sometimes, it may be useful to convert a G-exp into a S-exp. For example, some linters (@pxref{Invoking guix lint}) peek into the build phases of a package to detect potential problems. This conversion can be achieved with this procedure. However, some information can be lost in the process. More specifically, lowerable objects will be silently replaced with some arbitrary object -- currently the list @code{(*approximate*)}, but this may change." msgstr "" #. type: section -#: guix-git/doc/guix.texi:10675 +#: guix-git/doc/guix.texi:10989 #, no-wrap msgid "Invoking @command{guix repl}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10677 +#: guix-git/doc/guix.texi:10991 #, no-wrap msgid "REPL, read-eval-print loop, script" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10687 +#: guix-git/doc/guix.texi:11001 msgid "The @command{guix repl} command makes it easier to program Guix in Guile by launching a Guile @dfn{read-eval-print loop} (REPL) for interactive programming (@pxref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}), or by running Guile scripts (@pxref{Running Guile Scripts,,, guile, GNU Guile Reference Manual}). Compared to just launching the @command{guile} command, @command{guix repl} guarantees that all the Guix modules and all its dependencies are available in the search path." msgstr "" #. type: example -#: guix-git/doc/guix.texi:10692 +#: guix-git/doc/guix.texi:11006 #, no-wrap msgid "guix repl @var{options} [@var{file} @var{args}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10696 +#: guix-git/doc/guix.texi:11010 msgid "When a @var{file} argument is provided, @var{file} is executed as a Guile scripts:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10699 +#: guix-git/doc/guix.texi:11013 #, no-wrap msgid "guix repl my-script.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10703 +#: guix-git/doc/guix.texi:11017 msgid "To pass arguments to the script, use @code{--} to prevent them from being interpreted as arguments to @command{guix repl} itself:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10706 +#: guix-git/doc/guix.texi:11020 #, no-wrap msgid "guix repl -- my-script.scm --input=foo.txt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10711 +#: guix-git/doc/guix.texi:11025 msgid "To make a script executable directly from the shell, using the guix executable that is on the user's search path, add the following two lines at the top of the script:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10715 +#: guix-git/doc/guix.texi:11029 #, no-wrap msgid "" "@code{#!/usr/bin/env -S guix repl --}\n" @@ -19584,12 +20116,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10718 +#: guix-git/doc/guix.texi:11032 msgid "Without a file name argument, a Guile REPL is started:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10724 +#: guix-git/doc/guix.texi:11038 #, no-wrap msgid "" "$ guix repl\n" @@ -19599,169 +20131,169 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10731 +#: guix-git/doc/guix.texi:11045 msgid "In addition, @command{guix repl} implements a simple machine-readable REPL protocol for use by @code{(guix inferior)}, a facility to interact with @dfn{inferiors}, separate processes running a potentially different revision of Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10733 +#: guix-git/doc/guix.texi:11047 msgid "The available options are as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10735 guix-git/doc/guix.texi:13411 +#: guix-git/doc/guix.texi:11049 guix-git/doc/guix.texi:13768 #, no-wrap msgid "--type=@var{type}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10736 guix-git/doc/guix.texi:13412 -#: guix-git/doc/guix.texi:35281 +#: guix-git/doc/guix.texi:11050 guix-git/doc/guix.texi:13769 +#: guix-git/doc/guix.texi:35725 #, no-wrap msgid "-t @var{type}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10738 +#: guix-git/doc/guix.texi:11052 msgid "Start a REPL of the given @var{TYPE}, which can be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10740 +#: guix-git/doc/guix.texi:11054 #, no-wrap msgid "guile" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10742 +#: guix-git/doc/guix.texi:11056 msgid "This is default, and it spawns a standard full-featured Guile REPL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10742 +#: guix-git/doc/guix.texi:11056 #, no-wrap msgid "machine" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10745 +#: guix-git/doc/guix.texi:11059 msgid "Spawn a REPL that uses the machine-readable protocol. This is the protocol that the @code{(guix inferior)} module speaks." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10751 +#: guix-git/doc/guix.texi:11065 msgid "By default, @command{guix repl} reads from standard input and writes to standard output. When this option is passed, it will instead listen for connections on @var{endpoint}. Here are examples of valid options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10753 +#: guix-git/doc/guix.texi:11067 #, no-wrap msgid "--listen=tcp:37146" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10755 +#: guix-git/doc/guix.texi:11069 msgid "Accept connections on localhost on port 37146." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10756 +#: guix-git/doc/guix.texi:11070 #, no-wrap msgid "--listen=unix:/tmp/socket" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10758 +#: guix-git/doc/guix.texi:11072 msgid "Accept connections on the Unix-domain socket @file{/tmp/socket}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10760 guix-git/doc/guix.texi:10865 -#: guix-git/doc/guix.texi:12763 guix-git/doc/guix.texi:12840 -#: guix-git/doc/guix.texi:13046 guix-git/doc/guix.texi:13191 -#: guix-git/doc/guix.texi:13459 +#: guix-git/doc/guix.texi:11074 guix-git/doc/guix.texi:11179 +#: guix-git/doc/guix.texi:13078 guix-git/doc/guix.texi:13196 +#: guix-git/doc/guix.texi:13403 guix-git/doc/guix.texi:13548 +#: guix-git/doc/guix.texi:13816 #, no-wrap msgid "--load-path=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10761 guix-git/doc/guix.texi:10866 -#: guix-git/doc/guix.texi:12841 guix-git/doc/guix.texi:13047 -#: guix-git/doc/guix.texi:13192 guix-git/doc/guix.texi:13460 +#: guix-git/doc/guix.texi:11075 guix-git/doc/guix.texi:11180 +#: guix-git/doc/guix.texi:13197 guix-git/doc/guix.texi:13404 +#: guix-git/doc/guix.texi:13549 guix-git/doc/guix.texi:13817 #, no-wrap msgid "-L @var{directory}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10764 guix-git/doc/guix.texi:10869 -#: guix-git/doc/guix.texi:12766 guix-git/doc/guix.texi:12844 -#: guix-git/doc/guix.texi:13050 guix-git/doc/guix.texi:13195 -#: guix-git/doc/guix.texi:13463 +#: guix-git/doc/guix.texi:11078 guix-git/doc/guix.texi:11183 +#: guix-git/doc/guix.texi:13081 guix-git/doc/guix.texi:13200 +#: guix-git/doc/guix.texi:13407 guix-git/doc/guix.texi:13552 +#: guix-git/doc/guix.texi:13820 msgid "Add @var{directory} to the front of the package module search path (@pxref{Package Modules})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10767 +#: guix-git/doc/guix.texi:11081 msgid "This allows users to define their own packages and make them visible to the script or REPL." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10768 guix-git/doc/guix.texi:11390 +#: guix-git/doc/guix.texi:11082 guix-git/doc/guix.texi:11704 #, no-wrap msgid "-q" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10771 +#: guix-git/doc/guix.texi:11085 msgid "Inhibit loading of the @file{~/.guile} file. By default, that configuration file is loaded when spawning a @code{guile} REPL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10781 +#: guix-git/doc/guix.texi:11095 msgid "This section describes Guix command-line utilities. Some of them are primarily targeted at developers and users who write new package definitions, while others are more generally useful. They complement the Scheme programming interface of Guix in a convenient way." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10804 +#: guix-git/doc/guix.texi:11118 #, no-wrap msgid "package building" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:10805 +#: guix-git/doc/guix.texi:11119 #, no-wrap msgid "guix build" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10811 +#: guix-git/doc/guix.texi:11125 msgid "The @command{guix build} command builds packages or derivations and their dependencies, and prints the resulting store paths. Note that it does not modify the user's profile---this is the job of the @command{guix package} command (@pxref{Invoking guix package}). Thus, it is mainly useful for distribution developers." msgstr "" #. type: example -#: guix-git/doc/guix.texi:10816 +#: guix-git/doc/guix.texi:11130 #, no-wrap msgid "guix build @var{options} @var{package-or-derivation}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10821 +#: guix-git/doc/guix.texi:11135 msgid "As an example, the following command builds the latest versions of Emacs and of Guile, displays their build logs, and finally displays the resulting directories:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10824 +#: guix-git/doc/guix.texi:11138 #, no-wrap msgid "guix build emacs guile\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10827 +#: guix-git/doc/guix.texi:11141 msgid "Similarly, the following command builds all the available packages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10831 +#: guix-git/doc/guix.texi:11145 #, no-wrap msgid "" "guix build --quiet --keep-going \\\n" @@ -19769,321 +20301,321 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10839 +#: guix-git/doc/guix.texi:11153 msgid "@var{package-or-derivation} may be either the name of a package found in the software distribution such as @code{coreutils} or @code{coreutils@@8.20}, or a derivation such as @file{/gnu/store/@dots{}-coreutils-8.19.drv}. In the former case, a package with the corresponding name (and optionally version) is searched for among the GNU distribution modules (@pxref{Package Modules})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10844 +#: guix-git/doc/guix.texi:11158 msgid "Alternatively, the @option{--expression} option may be used to specify a Scheme expression that evaluates to a package; this is useful when disambiguating among several same-named packages or package variants is needed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10847 +#: guix-git/doc/guix.texi:11161 msgid "There may be zero or more @var{options}. The available options are described in the subsections below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10862 +#: guix-git/doc/guix.texi:11176 msgid "A number of options that control the build process are common to @command{guix build} and other commands that can spawn builds, such as @command{guix package} or @command{guix archive}. These are the following:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10872 guix-git/doc/guix.texi:12769 -#: guix-git/doc/guix.texi:13053 guix-git/doc/guix.texi:13198 -#: guix-git/doc/guix.texi:13466 +#: guix-git/doc/guix.texi:11186 guix-git/doc/guix.texi:13084 +#: guix-git/doc/guix.texi:13410 guix-git/doc/guix.texi:13555 +#: guix-git/doc/guix.texi:13823 msgid "This allows users to define their own packages and make them visible to the command-line tools." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10873 +#: guix-git/doc/guix.texi:11187 #, no-wrap msgid "--keep-failed" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10874 +#: guix-git/doc/guix.texi:11188 #, no-wrap msgid "-K" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10880 +#: guix-git/doc/guix.texi:11194 msgid "Keep the build tree of failed builds. Thus, if a build fails, its build tree is kept under @file{/tmp}, in a directory whose name is shown at the end of the build log. This is useful when debugging build issues. @xref{Debugging Build Failures}, for tips and tricks on how to debug build issues." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10884 +#: guix-git/doc/guix.texi:11198 msgid "This option implies @option{--no-offload}, and it has no effect when connecting to a remote daemon with a @code{guix://} URI (@pxref{The Store, the @env{GUIX_DAEMON_SOCKET} variable})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10885 +#: guix-git/doc/guix.texi:11199 #, no-wrap msgid "--keep-going" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10886 +#: guix-git/doc/guix.texi:11200 #, no-wrap msgid "-k" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10889 +#: guix-git/doc/guix.texi:11203 msgid "Keep going when some of the derivations fail to build; return only once all the builds have either completed or failed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10892 +#: guix-git/doc/guix.texi:11206 msgid "The default behavior is to stop as soon as one of the specified derivations has failed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10896 +#: guix-git/doc/guix.texi:11210 msgid "Do not build the derivations." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:10898 +#: guix-git/doc/guix.texi:11212 msgid "fallback-option" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10898 +#: guix-git/doc/guix.texi:11212 #, no-wrap msgid "--fallback" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10901 +#: guix-git/doc/guix.texi:11215 msgid "When substituting a pre-built binary fails, fall back to building packages locally (@pxref{Substitution Failure})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:10907 +#: guix-git/doc/guix.texi:11221 msgid "client-substitute-urls" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10907 +#: guix-git/doc/guix.texi:11221 msgid "Consider @var{urls} the whitespace-separated list of substitute source URLs, overriding the default list of URLs of @command{guix-daemon} (@pxref{daemon-substitute-urls,, @command{guix-daemon} URLs})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10911 +#: guix-git/doc/guix.texi:11225 msgid "This means that substitutes may be downloaded from @var{urls}, provided they are signed by a key authorized by the system administrator (@pxref{Substitutes})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10914 +#: guix-git/doc/guix.texi:11228 msgid "When @var{urls} is the empty string, substitutes are effectively disabled." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10920 +#: guix-git/doc/guix.texi:11234 #, no-wrap msgid "--no-grafts" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10924 +#: guix-git/doc/guix.texi:11238 msgid "Do not ``graft'' packages. In practice, this means that package updates available as grafts are not applied. @xref{Security Updates}, for more information on grafts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10925 +#: guix-git/doc/guix.texi:11239 #, no-wrap msgid "--rounds=@var{n}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10928 +#: guix-git/doc/guix.texi:11242 msgid "Build each derivation @var{n} times in a row, and raise an error if consecutive build results are not bit-for-bit identical." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10933 +#: guix-git/doc/guix.texi:11247 msgid "This is a useful way to detect non-deterministic builds processes. Non-deterministic build processes are a problem because they make it practically impossible for users to @emph{verify} whether third-party binaries are genuine. @xref{Invoking guix challenge}, for more." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10949 +#: guix-git/doc/guix.texi:11263 msgid "By default, the daemon's setting is honored (@pxref{Invoking guix-daemon, @option{--max-silent-time}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10956 +#: guix-git/doc/guix.texi:11270 msgid "By default, the daemon's setting is honored (@pxref{Invoking guix-daemon, @option{--timeout}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10959 +#: guix-git/doc/guix.texi:11273 #, no-wrap msgid "verbosity, of the command-line tools" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10960 +#: guix-git/doc/guix.texi:11274 #, no-wrap msgid "build logs, verbosity" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10961 +#: guix-git/doc/guix.texi:11275 #, no-wrap msgid "-v @var{level}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10962 +#: guix-git/doc/guix.texi:11276 #, no-wrap msgid "--verbosity=@var{level}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10967 +#: guix-git/doc/guix.texi:11281 msgid "Use the given verbosity @var{level}, an integer. Choosing 0 means that no output is produced, 1 is for quiet output; 2 is similar to 1 but it additionally displays download URLs; 3 shows all the build log output on standard error." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10972 +#: guix-git/doc/guix.texi:11286 msgid "Allow the use of up to @var{n} CPU cores for the build. The special value @code{0} means to use as many CPU cores as available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10978 +#: guix-git/doc/guix.texi:11292 msgid "Allow at most @var{n} build jobs in parallel. @xref{Invoking guix-daemon, @option{--max-jobs}}, for details about this option and the equivalent @command{guix-daemon} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10979 +#: guix-git/doc/guix.texi:11293 #, no-wrap msgid "--debug=@var{level}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10983 +#: guix-git/doc/guix.texi:11297 msgid "Produce debugging output coming from the build daemon. @var{level} must be an integer between 0 and 5; higher means more verbose output. Setting a level of 4 or more may be helpful when debugging setup issues with the build daemon." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10990 +#: guix-git/doc/guix.texi:11304 msgid "Behind the scenes, @command{guix build} is essentially an interface to the @code{package-derivation} procedure of the @code{(guix packages)} module, and to the @code{build-derivations} procedure of the @code{(guix derivations)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10994 +#: guix-git/doc/guix.texi:11308 msgid "In addition to options explicitly passed on the command line, @command{guix build} and other @command{guix} commands that support building honor the @env{GUIX_BUILD_OPTIONS} environment variable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:10995 +#: guix-git/doc/guix.texi:11309 #, no-wrap msgid "{Environment Variable} GUIX_BUILD_OPTIONS" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:11000 +#: guix-git/doc/guix.texi:11314 msgid "Users can define this variable to a list of command line options that will automatically be used by @command{guix build} and other @command{guix} commands that can perform builds, as in the example below:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11003 +#: guix-git/doc/guix.texi:11317 #, no-wrap msgid "$ export GUIX_BUILD_OPTIONS=\"--no-substitutes -c 2 -L /foo/bar\"\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:11007 +#: guix-git/doc/guix.texi:11321 msgid "These options are parsed independently, and the result is appended to the parsed command-line options." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11013 +#: guix-git/doc/guix.texi:11327 #, no-wrap msgid "package variants" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11021 +#: guix-git/doc/guix.texi:11335 msgid "Another set of command-line options supported by @command{guix build} and also @command{guix package} are @dfn{package transformation options}. These are options that make it possible to define @dfn{package variants}---for instance, packages built from different source code. This is a convenient way to create customized packages on the fly without having to type in the definitions of package variants (@pxref{Defining Packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11025 +#: guix-git/doc/guix.texi:11339 msgid "Package transformation options are preserved across upgrades: @command{guix upgrade} attempts to apply transformation options initially used when creating the profile to the upgraded packages." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11030 +#: guix-git/doc/guix.texi:11344 msgid "The available options are listed below. Most commands support them and also support a @option{--help-transform} option that lists all the available options and a synopsis (these options are not shown in the @option{--help} output for brevity)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11033 +#: guix-git/doc/guix.texi:11347 #, no-wrap msgid "performance, tuning code" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11034 +#: guix-git/doc/guix.texi:11348 #, no-wrap msgid "optimization, of package code" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11035 +#: guix-git/doc/guix.texi:11349 #, no-wrap msgid "tuning, of package code" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11036 +#: guix-git/doc/guix.texi:11350 #, no-wrap msgid "SIMD support" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11037 +#: guix-git/doc/guix.texi:11351 #, no-wrap msgid "tunable packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11038 +#: guix-git/doc/guix.texi:11352 #, no-wrap msgid "package multi-versioning" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11039 +#: guix-git/doc/guix.texi:11353 #, no-wrap msgid "--tune[=@var{cpu}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11043 +#: guix-git/doc/guix.texi:11357 msgid "Use versions of the packages marked as ``tunable'' optimized for @var{cpu}. When @var{cpu} is @code{native}, or when it is omitted, tune for the CPU on which the @command{guix} command is running." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11049 +#: guix-git/doc/guix.texi:11363 msgid "Valid @var{cpu} names are those recognized by the underlying compiler, by default the GNU Compiler Collection. On x86_64 processors, this includes CPU names such as @code{nehalem}, @code{haswell}, and @code{skylake} (@pxref{x86 Options, @code{-march},, gcc, Using the GNU Compiler Collection (GCC)})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11056 +#: guix-git/doc/guix.texi:11370 msgid "As new generations of CPUs come out, they augment the standard instruction set architecture (ISA) with additional instructions, in particular instructions for single-instruction/multiple-data (SIMD) parallel processing. For example, while Core2 and Skylake CPUs both implement the x86_64 ISA, only the latter supports AVX2 SIMD instructions." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11063 +#: guix-git/doc/guix.texi:11377 msgid "The primary gain one can expect from @option{--tune} is for programs that can make use of those SIMD capabilities @emph{and} that do not already have a mechanism to select the right optimized code at run time. Packages that have the @code{tunable?} property set are considered @dfn{tunable packages} by the @option{--tune} option; a package definition with the property set looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:11068 +#: guix-git/doc/guix.texi:11382 #, no-wrap msgid "" "(package\n" @@ -20093,7 +20625,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:11072 +#: guix-git/doc/guix.texi:11386 #, no-wrap msgid "" " ;; This package may benefit from SIMD extensions so\n" @@ -20102,87 +20634,87 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11077 +#: guix-git/doc/guix.texi:11391 msgid "Other packages are not considered tunable. This allows Guix to use generic binaries in the cases where tuning for a specific CPU is unlikely to provide any gain." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11083 +#: guix-git/doc/guix.texi:11397 msgid "Tuned packages are built with @code{-march=@var{CPU}}; under the hood, the @option{-march} option is passed to the actual wrapper by a compiler wrapper. Since the build machine may not be able to run code for the target CPU micro-architecture, the test suite is not run when building a tuned package." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11087 +#: guix-git/doc/guix.texi:11401 msgid "To reduce rebuilds to the minimum, tuned packages are @emph{grafted} onto packages that depend on them (@pxref{Security Updates, grafts}). Thus, using @option{--no-grafts} cancels the effect of @option{--tune}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11093 +#: guix-git/doc/guix.texi:11407 msgid "We call this technique @dfn{package multi-versioning}: several variants of tunable packages may be built, one for each CPU variant. It is the coarse-grain counterpart of @dfn{function multi-versioning} as implemented by the GNU tool chain (@pxref{Function Multiversioning,,, gcc, Using the GNU Compiler Collection (GCC)})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11094 +#: guix-git/doc/guix.texi:11408 #, no-wrap msgid "--with-source=@var{source}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11095 +#: guix-git/doc/guix.texi:11409 #, no-wrap msgid "--with-source=@var{package}=@var{source}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11096 +#: guix-git/doc/guix.texi:11410 #, no-wrap msgid "--with-source=@var{package}@@@var{version}=@var{source}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11101 +#: guix-git/doc/guix.texi:11415 msgid "Use @var{source} as the source of @var{package}, and @var{version} as its version number. @var{source} must be a file name or a URL, as for @command{guix download} (@pxref{Invoking guix download})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11107 +#: guix-git/doc/guix.texi:11421 msgid "When @var{package} is omitted, it is taken to be the package name specified on the command line that matches the base of @var{source}---e.g., if @var{source} is @code{/src/guile-2.0.10.tar.gz}, the corresponding package is @code{guile}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11110 +#: guix-git/doc/guix.texi:11424 msgid "Likewise, when @var{version} is omitted, the version string is inferred from @var{source}; in the previous example, it is @code{2.0.10}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11115 +#: guix-git/doc/guix.texi:11429 msgid "This option allows users to try out versions of packages other than the one provided by the distribution. The example below downloads @file{ed-1.7.tar.gz} from a GNU mirror and uses that as the source for the @code{ed} package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11118 +#: guix-git/doc/guix.texi:11432 #, no-wrap msgid "guix build ed --with-source=mirror://gnu/ed/ed-1.7.tar.gz\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11122 +#: guix-git/doc/guix.texi:11436 msgid "As a developer, @option{--with-source} makes it easy to test release candidates:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11125 +#: guix-git/doc/guix.texi:11439 #, no-wrap msgid "guix build guile --with-source=../guile-2.0.9.219-e1bb7.tar.xz\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11128 +#: guix-git/doc/guix.texi:11442 msgid "@dots{} or to build from a checkout in a pristine environment:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11132 +#: guix-git/doc/guix.texi:11446 #, no-wrap msgid "" "$ git clone git://git.sv.gnu.org/guix.git\n" @@ -20190,126 +20722,126 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11134 +#: guix-git/doc/guix.texi:11448 #, no-wrap msgid "--with-input=@var{package}=@var{replacement}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11139 +#: guix-git/doc/guix.texi:11453 msgid "Replace dependency on @var{package} by a dependency on @var{replacement}. @var{package} must be a package name, and @var{replacement} must be a package specification such as @code{guile} or @code{guile@@1.8}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11143 +#: guix-git/doc/guix.texi:11457 msgid "For instance, the following command builds Guix, but replaces its dependency on the current stable version of Guile with a dependency on the legacy version of Guile, @code{guile@@2.0}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11146 +#: guix-git/doc/guix.texi:11460 #, no-wrap msgid "guix build --with-input=guile=guile@@2.0 guix\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11151 +#: guix-git/doc/guix.texi:11465 msgid "This is a recursive, deep replacement. So in this example, both @code{guix} and its dependency @code{guile-json} (which also depends on @code{guile}) get rebuilt against @code{guile@@2.0}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11154 +#: guix-git/doc/guix.texi:11468 msgid "This is implemented using the @code{package-input-rewriting} Scheme procedure (@pxref{Defining Packages, @code{package-input-rewriting}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11155 +#: guix-git/doc/guix.texi:11469 #, no-wrap msgid "--with-graft=@var{package}=@var{replacement}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11161 +#: guix-git/doc/guix.texi:11475 msgid "This is similar to @option{--with-input} but with an important difference: instead of rebuilding the whole dependency chain, @var{replacement} is built and then @dfn{grafted} onto the binaries that were initially referring to @var{package}. @xref{Security Updates}, for more information on grafts." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11165 +#: guix-git/doc/guix.texi:11479 msgid "For example, the command below grafts version 3.5.4 of GnuTLS onto Wget and all its dependencies, replacing references to the version of GnuTLS they currently refer to:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11168 +#: guix-git/doc/guix.texi:11482 #, no-wrap msgid "guix build --with-graft=gnutls=gnutls@@3.5.4 wget\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11177 +#: guix-git/doc/guix.texi:11491 msgid "This has the advantage of being much faster than rebuilding everything. But there is a caveat: it works if and only if @var{package} and @var{replacement} are strictly compatible---for example, if they provide a library, the application binary interface (ABI) of those libraries must be compatible. If @var{replacement} is somehow incompatible with @var{package}, then the resulting package may be unusable. Use with care!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11178 guix-git/doc/guix.texi:37882 +#: guix-git/doc/guix.texi:11492 guix-git/doc/guix.texi:38371 #, no-wrap msgid "debugging info, rebuilding" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11179 +#: guix-git/doc/guix.texi:11493 #, no-wrap msgid "--with-debug-info=@var{package}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11184 +#: guix-git/doc/guix.texi:11498 msgid "Build @var{package} in a way that preserves its debugging info and graft it onto packages that depend on it. This is useful if @var{package} does not already provide debugging info as a @code{debug} output (@pxref{Installing Debugging Files})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11190 +#: guix-git/doc/guix.texi:11504 msgid "For example, suppose you're experiencing a crash in Inkscape and would like to see what's up in GLib, a library deep down in Inkscape's dependency graph. GLib lacks a @code{debug} output, so debugging is tough. Fortunately, you rebuild GLib with debugging info and tack it on Inkscape:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11193 guix-git/doc/guix.texi:37913 +#: guix-git/doc/guix.texi:11507 guix-git/doc/guix.texi:38402 #, no-wrap msgid "guix install inkscape --with-debug-info=glib\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11197 +#: guix-git/doc/guix.texi:11511 msgid "Only GLib needs to be recompiled so this takes a reasonable amount of time. @xref{Installing Debugging Files}, for more info." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11203 +#: guix-git/doc/guix.texi:11517 msgid "Under the hood, this option works by passing the @samp{#:strip-binaries? #f} to the build system of the package of interest (@pxref{Build Systems}). Most build systems support that option but some do not. In that case, an error is raised." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11207 +#: guix-git/doc/guix.texi:11521 msgid "Likewise, if a C/C++ package is built without @code{-g} (which is rarely the case), debugging info will remain unavailable even when @code{#:strip-binaries?} is false." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11209 +#: guix-git/doc/guix.texi:11523 #, no-wrap msgid "tool chain, changing the build tool chain of a package" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11210 +#: guix-git/doc/guix.texi:11524 #, no-wrap msgid "--with-c-toolchain=@var{package}=@var{toolchain}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11214 +#: guix-git/doc/guix.texi:11528 msgid "This option changes the compilation of @var{package} and everything that depends on it so that they get built with @var{toolchain} instead of the default GNU tool chain for C/C++." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11221 +#: guix-git/doc/guix.texi:11535 #, no-wrap msgid "" "guix build octave-cli \\\n" @@ -20318,17 +20850,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11228 +#: guix-git/doc/guix.texi:11542 msgid "The command above builds a variant of the @code{fftw} and @code{fftwf} packages using version 10 of @code{gcc-toolchain} instead of the default tool chain, and then builds a variant of the GNU@tie{}Octave command-line interface using them. GNU@tie{}Octave itself is also built with @code{gcc-toolchain@@10}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11232 +#: guix-git/doc/guix.texi:11546 msgid "This other example builds the Hardware Locality (@code{hwloc}) library and its dependents up to @code{intel-mpi-benchmarks} with the Clang C compiler:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11236 +#: guix-git/doc/guix.texi:11550 #, no-wrap msgid "" "guix build --with-c-toolchain=hwloc=clang-toolchain \\\n" @@ -20336,40 +20868,40 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11245 +#: guix-git/doc/guix.texi:11559 msgid "There can be application binary interface (ABI) incompatibilities among tool chains. This is particularly true of the C++ standard library and run-time support libraries such as that of OpenMP@. By rebuilding all dependents with the same tool chain, @option{--with-c-toolchain} minimizes the risks of incompatibility but cannot entirely eliminate them. Choose @var{package} wisely." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11247 +#: guix-git/doc/guix.texi:11561 #, no-wrap msgid "--with-git-url=@var{package}=@var{url}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11248 +#: guix-git/doc/guix.texi:11562 #, no-wrap msgid "Git, using the latest commit" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11249 +#: guix-git/doc/guix.texi:11563 #, no-wrap msgid "latest commit, building" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11253 +#: guix-git/doc/guix.texi:11567 msgid "Build @var{package} from the latest commit of the @code{master} branch of the Git repository at @var{url}. Git sub-modules of the repository are fetched, recursively." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11256 +#: guix-git/doc/guix.texi:11570 msgid "For example, the following command builds the NumPy Python library against the latest commit of the master branch of Python itself:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11260 +#: guix-git/doc/guix.texi:11574 #, no-wrap msgid "" "guix build python-numpy \\\n" @@ -20377,318 +20909,318 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11264 +#: guix-git/doc/guix.texi:11578 msgid "This option can also be combined with @option{--with-branch} or @option{--with-commit} (see below)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11265 guix-git/doc/guix.texi:28957 +#: guix-git/doc/guix.texi:11579 guix-git/doc/guix.texi:29294 #, no-wrap msgid "continuous integration" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11271 +#: guix-git/doc/guix.texi:11585 msgid "Obviously, since it uses the latest commit of the given branch, the result of such a command varies over time. Nevertheless it is a convenient way to rebuild entire software stacks against the latest commit of one or more packages. This is particularly useful in the context of continuous integration (CI)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11275 +#: guix-git/doc/guix.texi:11589 msgid "Checkouts are kept in a cache under @file{~/.cache/guix/checkouts} to speed up consecutive accesses to the same repository. You may want to clean it up once in a while to save disk space." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11276 +#: guix-git/doc/guix.texi:11590 #, no-wrap msgid "--with-branch=@var{package}=@var{branch}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11282 +#: guix-git/doc/guix.texi:11596 msgid "Build @var{package} from the latest commit of @var{branch}. If the @code{source} field of @var{package} is an origin with the @code{git-fetch} method (@pxref{origin Reference}) or a @code{git-checkout} object, the repository URL is taken from that @code{source}. Otherwise you have to use @option{--with-git-url} to specify the URL of the Git repository." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11287 +#: guix-git/doc/guix.texi:11601 msgid "For instance, the following command builds @code{guile-sqlite3} from the latest commit of its @code{master} branch, and then builds @code{guix} (which depends on it) and @code{cuirass} (which depends on @code{guix}) against this specific @code{guile-sqlite3} build:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11290 +#: guix-git/doc/guix.texi:11604 #, no-wrap msgid "guix build --with-branch=guile-sqlite3=master cuirass\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11292 +#: guix-git/doc/guix.texi:11606 #, no-wrap msgid "--with-commit=@var{package}=@var{commit}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11297 +#: guix-git/doc/guix.texi:11611 msgid "This is similar to @option{--with-branch}, except that it builds from @var{commit} rather than the tip of a branch. @var{commit} must be a valid Git commit SHA1 identifier, a tag, or a @command{git describe} style identifier such as @code{1.0-3-gabc123}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11298 +#: guix-git/doc/guix.texi:11612 #, no-wrap msgid "--with-patch=@var{package}=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11305 +#: guix-git/doc/guix.texi:11619 msgid "Add @var{file} to the list of patches applied to @var{package}, where @var{package} is a spec such as @code{python@@3.8} or @code{glibc}. @var{file} must contain a patch; it is applied with the flags specified in the @code{origin} of @var{package} (@pxref{origin Reference}), which by default includes @code{-p1} (@pxref{patch Directories,,, diffutils, Comparing and Merging Files})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11308 +#: guix-git/doc/guix.texi:11622 msgid "As an example, the command below rebuilds Coreutils with the GNU C Library (glibc) patched with the given patch:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11311 +#: guix-git/doc/guix.texi:11625 #, no-wrap msgid "guix build coreutils --with-patch=glibc=./glibc-frob.patch\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11315 +#: guix-git/doc/guix.texi:11629 msgid "In this example, glibc itself as well as everything that leads to Coreutils in the dependency graph is rebuilt." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11316 +#: guix-git/doc/guix.texi:11630 #, no-wrap msgid "upstream, latest version" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11317 +#: guix-git/doc/guix.texi:11631 #, no-wrap msgid "--with-latest=@var{package}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11322 +#: guix-git/doc/guix.texi:11636 msgid "So you like living on the bleeding edge? This option is for you! It replaces occurrences of @var{package} in the dependency graph with its latest upstream version, as reported by @command{guix refresh} (@pxref{Invoking guix refresh})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11326 +#: guix-git/doc/guix.texi:11640 msgid "It does so by determining the latest upstream release of @var{package} (if possible), downloading it, and authenticating it @emph{if} it comes with an OpenPGP signature." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11329 +#: guix-git/doc/guix.texi:11643 msgid "As an example, the command below builds Guix against the latest version of Guile-JSON:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11332 +#: guix-git/doc/guix.texi:11646 #, no-wrap msgid "guix build guix --with-latest=guile-json\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11341 +#: guix-git/doc/guix.texi:11655 msgid "There are limitations. First, in cases where the tool cannot or does not know how to authenticate source code, you are at risk of running malicious code; a warning is emitted in this case. Second, this option simply changes the source used in the existing package definitions, which is not always sufficient: there might be additional dependencies that need to be added, patches to apply, and more generally the quality assurance work that Guix developers normally do will be missing." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11346 +#: guix-git/doc/guix.texi:11660 msgid "You've been warned! In all the other cases, it's a snappy way to stay on top. We encourage you to submit patches updating the actual package definitions once you have successfully tested an upgrade (@pxref{Contributing})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11347 +#: guix-git/doc/guix.texi:11661 #, no-wrap msgid "test suite, skipping" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11348 +#: guix-git/doc/guix.texi:11662 #, no-wrap msgid "--without-tests=@var{package}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11354 +#: guix-git/doc/guix.texi:11668 msgid "Build @var{package} without running its tests. This can be useful in situations where you want to skip the lengthy test suite of a intermediate package, or if a package's test suite fails in a non-deterministic fashion. It should be used with care because running the test suite is a good way to ensure a package is working as intended." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11358 +#: guix-git/doc/guix.texi:11672 msgid "Turning off tests leads to a different store item. Consequently, when using this option, anything that depends on @var{package} must be rebuilt, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11361 +#: guix-git/doc/guix.texi:11675 #, no-wrap msgid "guix install --without-tests=python python-notebook\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11367 +#: guix-git/doc/guix.texi:11681 msgid "The command above installs @code{python-notebook} on top of @code{python} built without running its test suite. To do so, it also rebuilds everything that depends on @code{python}, including @code{python-notebook} itself." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11373 +#: guix-git/doc/guix.texi:11687 msgid "Internally, @option{--without-tests} relies on changing the @code{#:tests?} option of a package's @code{check} phase (@pxref{Build Systems}). Note that some packages use a customized @code{check} phase that does not respect a @code{#:tests? #f} setting. Therefore, @option{--without-tests} has no effect on these packages." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11380 +#: guix-git/doc/guix.texi:11694 msgid "Wondering how to achieve the same effect using Scheme code, for example in your manifest, or how to write your own package transformation? @xref{Defining Package Variants}, for an overview of the programming interfaces available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11386 +#: guix-git/doc/guix.texi:11700 msgid "The command-line options presented below are specific to @command{guix build}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11389 +#: guix-git/doc/guix.texi:11703 #, no-wrap msgid "--quiet" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11394 +#: guix-git/doc/guix.texi:11708 msgid "Build quietly, without displaying the build log; this is equivalent to @option{--verbosity=0}. Upon completion, the build log is kept in @file{/var} (or similar) and can always be retrieved using the @option{--log-file} option." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11399 +#: guix-git/doc/guix.texi:11713 msgid "Build the package, derivation, or other file-like object that the code within @var{file} evaluates to (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11402 +#: guix-git/doc/guix.texi:11716 msgid "As an example, @var{file} might contain a package definition like this (@pxref{Defining Packages}):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11411 +#: guix-git/doc/guix.texi:11725 msgid "The @var{file} may also contain a JSON representation of one or more package definitions. Running @code{guix build -f} on @file{hello.json} with the following contents would result in building the packages @code{myhello} and @code{greeter}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11416 +#: guix-git/doc/guix.texi:11730 #, no-wrap msgid "--manifest=@var{manifest}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11417 +#: guix-git/doc/guix.texi:11731 #, no-wrap msgid "-m @var{manifest}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11420 +#: guix-git/doc/guix.texi:11734 msgid "Build all packages listed in the given @var{manifest} (@pxref{profile-manifest, @option{--manifest}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11424 +#: guix-git/doc/guix.texi:11738 msgid "Build the package or derivation @var{expr} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11428 +#: guix-git/doc/guix.texi:11742 msgid "For example, @var{expr} may be @code{(@@ (gnu packages guile) guile-1.8)}, which unambiguously designates this specific variant of version 1.8 of Guile." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11432 +#: guix-git/doc/guix.texi:11746 msgid "Alternatively, @var{expr} may be a G-expression, in which case it is used as a build program passed to @code{gexp->derivation} (@pxref{G-Expressions})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11436 +#: guix-git/doc/guix.texi:11750 msgid "Lastly, @var{expr} may refer to a zero-argument monadic procedure (@pxref{The Store Monad}). The procedure must return a derivation as a monadic value, which is then passed through @code{run-with-store}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11437 +#: guix-git/doc/guix.texi:11751 #, no-wrap msgid "--source" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11438 guix-git/doc/guix.texi:11835 +#: guix-git/doc/guix.texi:11752 #, no-wrap msgid "-S" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11441 +#: guix-git/doc/guix.texi:11755 msgid "Build the source derivations of the packages, rather than the packages themselves." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11445 +#: guix-git/doc/guix.texi:11759 msgid "For instance, @code{guix build -S gcc} returns something like @file{/gnu/store/@dots{}-gcc-4.7.2.tar.bz2}, which is the GCC source tarball." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11449 +#: guix-git/doc/guix.texi:11763 msgid "The returned source tarball is the result of applying any patches and code snippets specified in the package @code{origin} (@pxref{Defining Packages})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11450 +#: guix-git/doc/guix.texi:11764 #, no-wrap msgid "source, verification" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11456 +#: guix-git/doc/guix.texi:11770 msgid "As with other derivations, the result of building a source derivation can be verified using the @option{--check} option (@pxref{build-check}). This is useful to validate that a (potentially already built or substituted, thus cached) package source matches against its declared hash." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11461 +#: guix-git/doc/guix.texi:11775 msgid "Note that @command{guix build -S} compiles the sources only of the specified packages. They do not include the sources of statically linked dependencies and by themselves are insufficient for reproducing the packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11462 +#: guix-git/doc/guix.texi:11776 #, no-wrap msgid "--sources" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11469 +#: guix-git/doc/guix.texi:11783 msgid "Fetch and return the source of @var{package-or-derivation} and all their dependencies, recursively. This is a handy way to obtain a local copy of all the source code needed to build @var{packages}, allowing you to eventually build them even without network access. It is an extension of the @option{--source} option and can accept one of the following optional argument values:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11471 guix-git/doc/guix.texi:13252 +#: guix-git/doc/guix.texi:11785 guix-git/doc/guix.texi:13609 #, no-wrap msgid "package" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11474 +#: guix-git/doc/guix.texi:11788 msgid "This value causes the @option{--sources} option to behave in the same way as the @option{--source} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11475 guix-git/doc/guix.texi:19682 +#: guix-git/doc/guix.texi:11789 guix-git/doc/guix.texi:20044 #, no-wrap msgid "all" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11478 +#: guix-git/doc/guix.texi:11792 msgid "Build the source derivations of all packages, including any source that might be listed as @code{inputs}. This is the default value." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11484 +#: guix-git/doc/guix.texi:11798 #, no-wrap msgid "" "$ guix build --sources tzdata\n" @@ -20698,18 +21230,18 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11486 +#: guix-git/doc/guix.texi:11800 #, no-wrap msgid "transitive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11490 +#: guix-git/doc/guix.texi:11804 msgid "Build the source derivations of all packages, as well of all transitive inputs to the packages. This can be used e.g.@: to prefetch package source for later offline building." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11501 +#: guix-git/doc/guix.texi:11815 #, no-wrap msgid "" "$ guix build --sources=transitive tzdata\n" @@ -20724,146 +21256,146 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11511 +#: guix-git/doc/guix.texi:11825 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of the system type of the build host. The @command{guix build} command allows you to repeat this option several times, in which case it builds for all the specified systems; other commands ignore extraneous @option{-s} options." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11516 +#: guix-git/doc/guix.texi:11830 msgid "The @option{--system} flag is for @emph{native} compilation and must not be confused with cross-compilation. See @option{--target} below for information on cross-compilation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11523 +#: guix-git/doc/guix.texi:11837 msgid "An example use of this is on Linux-based systems, which can emulate different personalities. For instance, passing @option{--system=i686-linux} on an @code{x86_64-linux} system or @option{--system=armhf-linux} on an @code{aarch64-linux} system allows you to build packages in a complete 32-bit environment." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11528 +#: guix-git/doc/guix.texi:11842 msgid "Building for an @code{armhf-linux} system is unconditionally enabled on @code{aarch64-linux} machines, although certain aarch64 chipsets do not allow for this functionality, notably the ThunderX." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11534 +#: guix-git/doc/guix.texi:11848 msgid "Similarly, when transparent emulation with QEMU and @code{binfmt_misc} is enabled (@pxref{Virtualization Services, @code{qemu-binfmt-service-type}}), you can build for any system for which a QEMU @code{binfmt_misc} handler is installed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11538 +#: guix-git/doc/guix.texi:11852 msgid "Builds for a system other than that of the machine you are using can also be offloaded to a remote machine of the right architecture. @xref{Daemon Offload Setup}, for more information on offloading." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11544 +#: guix-git/doc/guix.texi:11858 msgid "Cross-build for @var{triplet}, which must be a valid GNU triplet, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying Target Triplets, GNU configuration triplets,, autoconf, Autoconf})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:11546 +#: guix-git/doc/guix.texi:11860 msgid "build-check" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11547 +#: guix-git/doc/guix.texi:11861 #, no-wrap msgid "determinism, checking" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11548 +#: guix-git/doc/guix.texi:11862 #, no-wrap msgid "reproducibility, checking" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11552 +#: guix-git/doc/guix.texi:11866 msgid "Rebuild @var{package-or-derivation}, which are already available in the store, and raise an error if the build results are not bit-for-bit identical." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11557 +#: guix-git/doc/guix.texi:11871 msgid "This mechanism allows you to check whether previously installed substitutes are genuine (@pxref{Substitutes}), or whether the build result of a package is deterministic. @xref{Invoking guix challenge}, for more background information and tools." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11562 +#: guix-git/doc/guix.texi:11876 #, no-wrap msgid "--repair" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11563 +#: guix-git/doc/guix.texi:11877 #, no-wrap msgid "repairing store items" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11567 +#: guix-git/doc/guix.texi:11881 msgid "Attempt to repair the specified store items, if they are corrupt, by re-downloading or rebuilding them." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11569 +#: guix-git/doc/guix.texi:11883 msgid "This operation is not atomic and thus restricted to @code{root}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11570 +#: guix-git/doc/guix.texi:11884 #, no-wrap msgid "--derivations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11574 +#: guix-git/doc/guix.texi:11888 msgid "Return the derivation paths, not the output paths, of the given packages." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11577 +#: guix-git/doc/guix.texi:11891 #, no-wrap msgid "GC roots, adding" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11578 +#: guix-git/doc/guix.texi:11892 #, no-wrap msgid "garbage collector roots, adding" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11581 guix-git/doc/guix.texi:35312 +#: guix-git/doc/guix.texi:11895 guix-git/doc/guix.texi:35756 msgid "Make @var{file} a symlink to the result, and register it as a garbage collector root." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11587 +#: guix-git/doc/guix.texi:11901 msgid "Consequently, the results of this @command{guix build} invocation are protected from garbage collection until @var{file} is removed. When that option is omitted, build results are eligible for garbage collection as soon as the build completes. @xref{Invoking guix gc}, for more on GC roots." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11588 +#: guix-git/doc/guix.texi:11902 #, no-wrap msgid "--log-file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11589 +#: guix-git/doc/guix.texi:11903 #, no-wrap msgid "build logs, access" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11593 +#: guix-git/doc/guix.texi:11907 msgid "Return the build log file names or URLs for the given @var{package-or-derivation}, or raise an error if build logs are missing." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11596 +#: guix-git/doc/guix.texi:11910 msgid "This works regardless of how packages or derivations are specified. For instance, the following invocations are equivalent:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11602 +#: guix-git/doc/guix.texi:11916 #, no-wrap msgid "" "guix build --log-file $(guix build -d guile)\n" @@ -20873,17 +21405,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11607 +#: guix-git/doc/guix.texi:11921 msgid "If a log is unavailable locally, and unless @option{--no-substitutes} is passed, the command looks for a corresponding log on one of the substitute servers (as specified with @option{--substitute-urls})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11610 +#: guix-git/doc/guix.texi:11924 msgid "So for instance, imagine you want to see the build log of GDB on MIPS, but you are actually on an @code{x86_64} machine:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11614 +#: guix-git/doc/guix.texi:11928 #, no-wrap msgid "" "$ guix build --log-file gdb -s aarch64-linux\n" @@ -20891,33 +21423,33 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11617 +#: guix-git/doc/guix.texi:11931 msgid "You can freely access a huge library of build logs!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11622 +#: guix-git/doc/guix.texi:11936 #, no-wrap msgid "build failures, debugging" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11628 +#: guix-git/doc/guix.texi:11942 msgid "When defining a new package (@pxref{Defining Packages}), you will probably find yourself spending some time debugging and tweaking the build until it succeeds. To do that, you need to operate the build commands yourself in an environment as close as possible to the one the build daemon uses." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11633 +#: guix-git/doc/guix.texi:11947 msgid "To that end, the first thing to do is to use the @option{--keep-failed} or @option{-K} option of @command{guix build}, which will keep the failed build tree in @file{/tmp} or whatever directory you specified as @env{TMPDIR} (@pxref{Common Build Options, @option{--keep-failed}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11639 +#: guix-git/doc/guix.texi:11953 msgid "From there on, you can @command{cd} to the failed build tree and source the @file{environment-variables} file, which contains all the environment variable definitions that were in place when the build failed. So let's say you're debugging a build failure in package @code{foo}; a typical session would look like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11646 +#: guix-git/doc/guix.texi:11960 #, no-wrap msgid "" "$ guix build foo -K\n" @@ -20928,22 +21460,22 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11650 +#: guix-git/doc/guix.texi:11964 msgid "Now, you can invoke commands as if you were the daemon (almost) and troubleshoot your build process." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11656 +#: guix-git/doc/guix.texi:11970 msgid "Sometimes it happens that, for example, a package's tests pass when you run them manually but they fail when the daemon runs them. This can happen because the daemon runs builds in containers where, unlike in our environment above, network access is missing, @file{/bin/sh} does not exist, etc. (@pxref{Build Environment Setup})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11659 +#: guix-git/doc/guix.texi:11973 msgid "In such cases, you may need to run inspect the build process from within a container similar to the one the build daemon creates:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11667 +#: guix-git/doc/guix.texi:11981 #, no-wrap msgid "" "$ guix build -K foo\n" @@ -20955,708 +21487,714 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11676 +#: guix-git/doc/guix.texi:11990 msgid "Here, @command{guix shell -C} creates a container and spawns a new shell in it (@pxref{Invoking guix shell}). The @command{strace gdb} part adds the @command{strace} and @command{gdb} commands to the container, which you may find handy while debugging. The @option{--no-grafts} option makes sure we get the exact same environment, with ungrafted packages (@pxref{Security Updates}, for more info on grafts)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11679 +#: guix-git/doc/guix.texi:11993 msgid "To get closer to a container like that used by the build daemon, we can remove @file{/bin/sh}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11682 +#: guix-git/doc/guix.texi:11996 #, no-wrap msgid "[env]# rm /bin/sh\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11686 +#: guix-git/doc/guix.texi:12000 msgid "(Don't worry, this is harmless: this is all happening in the throw-away container created by @command{guix shell}.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11689 +#: guix-git/doc/guix.texi:12003 msgid "The @command{strace} command is probably not in the search path, but we can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11692 +#: guix-git/doc/guix.texi:12006 #, no-wrap msgid "[env]# $GUIX_ENVIRONMENT/bin/strace -f -o log make check\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11697 +#: guix-git/doc/guix.texi:12011 msgid "In this way, not only you will have reproduced the environment variables the daemon uses, you will also be running the build process in a container similar to the one the daemon uses." msgstr "" #. type: section -#: guix-git/doc/guix.texi:11700 +#: guix-git/doc/guix.texi:12014 #, no-wrap msgid "Invoking @command{guix edit}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:11702 +#: guix-git/doc/guix.texi:12016 #, no-wrap msgid "guix edit" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11703 +#: guix-git/doc/guix.texi:12017 #, no-wrap msgid "package definition, editing" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11708 +#: guix-git/doc/guix.texi:12022 msgid "So many packages, so many source files! The @command{guix edit} command facilitates the life of users and packagers by pointing their editor at the source file containing the definition of the specified packages. For instance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11711 +#: guix-git/doc/guix.texi:12025 #, no-wrap msgid "guix edit gcc@@4.9 vim\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11717 +#: guix-git/doc/guix.texi:12031 msgid "launches the program specified in the @env{VISUAL} or in the @env{EDITOR} environment variable to view the recipe of GCC@tie{}4.9.3 and that of Vim." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11723 +#: guix-git/doc/guix.texi:12037 msgid "If you are using a Guix Git checkout (@pxref{Building from Git}), or have created your own packages on @env{GUIX_PACKAGE_PATH} (@pxref{Package Modules}), you will be able to edit the package recipes. In other cases, you will be able to examine the read-only recipes for packages currently in the store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11728 +#: guix-git/doc/guix.texi:12042 msgid "Instead of @env{GUIX_PACKAGE_PATH}, the command-line option @option{--load-path=@var{directory}} (or in short @option{-L @var{directory}}) allows you to add @var{directory} to the front of the package module search path and so make your own packages visible." msgstr "" #. type: section -#: guix-git/doc/guix.texi:11730 +#: guix-git/doc/guix.texi:12044 #, no-wrap msgid "Invoking @command{guix download}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:11732 +#: guix-git/doc/guix.texi:12046 #, no-wrap msgid "guix download" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11733 +#: guix-git/doc/guix.texi:12047 #, no-wrap msgid "downloading package sources" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11740 +#: guix-git/doc/guix.texi:12054 msgid "When writing a package definition, developers typically need to download a source tarball, compute its SHA256 hash, and write that hash in the package definition (@pxref{Defining Packages}). The @command{guix download} tool helps with this task: it downloads a file from the given URI, adds it to the store, and prints both its file name in the store and its SHA256 hash." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11747 +#: guix-git/doc/guix.texi:12061 msgid "The fact that the downloaded file is added to the store saves bandwidth: when the developer eventually tries to build the newly defined package with @command{guix build}, the source tarball will not have to be downloaded again because it is already in the store. It is also a convenient way to temporarily stash files, which may be deleted eventually (@pxref{Invoking guix gc})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11755 +#: guix-git/doc/guix.texi:12069 msgid "The @command{guix download} command supports the same URIs as used in package definitions. In particular, it supports @code{mirror://} URIs. @code{https} URIs (HTTP over TLS) are supported @emph{provided} the Guile bindings for GnuTLS are available in the user's environment; when they are not available, an error is raised. @xref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11760 +#: guix-git/doc/guix.texi:12074 msgid "@command{guix download} verifies HTTPS server certificates by loading the certificates of X.509 authorities from the directory pointed to by the @env{SSL_CERT_DIR} environment variable (@pxref{X.509 Certificates}), unless @option{--no-check-certificate} is used." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11762 guix-git/doc/guix.texi:13565 +#: guix-git/doc/guix.texi:12076 guix-git/doc/guix.texi:13922 msgid "The following options are available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11764 guix-git/doc/guix.texi:11808 +#: guix-git/doc/guix.texi:12078 guix-git/doc/guix.texi:12122 #, no-wrap msgid "--hash=@var{algorithm}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11765 guix-git/doc/guix.texi:11809 +#: guix-git/doc/guix.texi:12079 guix-git/doc/guix.texi:12123 #, no-wrap msgid "-H @var{algorithm}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11768 +#: guix-git/doc/guix.texi:12082 msgid "Compute a hash using the specified @var{algorithm}. @xref{Invoking guix hash}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11769 guix-git/doc/guix.texi:11818 +#: guix-git/doc/guix.texi:12083 guix-git/doc/guix.texi:12132 #, no-wrap msgid "--format=@var{fmt}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11770 guix-git/doc/guix.texi:11819 +#: guix-git/doc/guix.texi:12084 guix-git/doc/guix.texi:12133 #, no-wrap msgid "-f @var{fmt}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11773 +#: guix-git/doc/guix.texi:12087 msgid "Write the hash in the format specified by @var{fmt}. For more information on the valid values for @var{fmt}, @pxref{Invoking guix hash}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11774 +#: guix-git/doc/guix.texi:12088 #, no-wrap msgid "--no-check-certificate" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11776 +#: guix-git/doc/guix.texi:12090 msgid "Do not validate the X.509 certificates of HTTPS servers." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11780 +#: guix-git/doc/guix.texi:12094 msgid "When using this option, you have @emph{absolutely no guarantee} that you are communicating with the authentic server responsible for the given URL, which makes you vulnerable to ``man-in-the-middle'' attacks." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11781 +#: guix-git/doc/guix.texi:12095 #, no-wrap msgid "--output=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11782 +#: guix-git/doc/guix.texi:12096 #, no-wrap msgid "-o @var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11785 +#: guix-git/doc/guix.texi:12099 msgid "Save the downloaded file to @var{file} instead of adding it to the store." msgstr "" #. type: section -#: guix-git/doc/guix.texi:11788 +#: guix-git/doc/guix.texi:12102 #, no-wrap msgid "Invoking @command{guix hash}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:11790 +#: guix-git/doc/guix.texi:12104 #, no-wrap msgid "guix hash" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11795 +#: guix-git/doc/guix.texi:12109 msgid "The @command{guix hash} command computes the hash of a file. It is primarily a convenience tool for anyone contributing to the distribution: it computes the cryptographic hash of one or more files, which can be used in the definition of a package (@pxref{Defining Packages})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11800 +#: guix-git/doc/guix.texi:12114 #, no-wrap msgid "guix hash @var{option} @var{file} ...\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11805 +#: guix-git/doc/guix.texi:12119 msgid "When @var{file} is @code{-} (a hyphen), @command{guix hash} computes the hash of data read from standard input. @command{guix hash} has the following options:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11812 +#: guix-git/doc/guix.texi:12126 msgid "Compute a hash using the specified @var{algorithm}, @code{sha256} by default." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11817 -msgid "@var{algorithm} must the name of a cryptographic hash algorithm supported by Libgcrypt @i{via} Guile-Gcrypt---e.g., @code{sha512} or @code{sha3-256} (@pxref{Hash Functions,,, guile-gcrypt, Guile-Gcrypt Reference Manual})." +#: guix-git/doc/guix.texi:12131 +msgid "@var{algorithm} must be the name of a cryptographic hash algorithm supported by Libgcrypt @i{via} Guile-Gcrypt---e.g., @code{sha512} or @code{sha3-256} (@pxref{Hash Functions,,, guile-gcrypt, Guile-Gcrypt Reference Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11821 +#: guix-git/doc/guix.texi:12135 msgid "Write the hash in the format specified by @var{fmt}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11824 +#: guix-git/doc/guix.texi:12138 msgid "Supported formats: @code{base64}, @code{nix-base32}, @code{base32}, @code{base16} (@code{hex} and @code{hexadecimal} can be used as well)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11828 +#: guix-git/doc/guix.texi:12142 msgid "If the @option{--format} option is not specified, @command{guix hash} will output the hash in @code{nix-base32}. This representation is used in the definitions of packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11833 -msgid "This option is deprecated in favor of @option{--serializer}. It is a legacy alias for @var{type} sets to @code{nar}." +#: guix-git/doc/guix.texi:12148 +msgid "The @option{--recursive} option is deprecated in favor of @option{--serializer=nar} (see below); @option{-r} remains accepted as a convenient shorthand." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11834 +#: guix-git/doc/guix.texi:12149 #, no-wrap msgid "--serializer=@var{type}" msgstr "" +#. type: itemx +#: guix-git/doc/guix.texi:12150 +#, no-wrap +msgid "-S @var{type}" +msgstr "" + #. type: table -#: guix-git/doc/guix.texi:11837 +#: guix-git/doc/guix.texi:12152 msgid "Compute the hash on @var{file} using @var{type} serialization." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11839 +#: guix-git/doc/guix.texi:12154 msgid "@var{type} may be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11841 guix-git/doc/guix.texi:13918 -#: guix-git/doc/guix.texi:17405 guix-git/doc/guix.texi:19679 +#: guix-git/doc/guix.texi:12156 guix-git/doc/guix.texi:14275 +#: guix-git/doc/guix.texi:17767 guix-git/doc/guix.texi:20041 #, no-wrap msgid "none" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11843 +#: guix-git/doc/guix.texi:12158 msgid "This is the default: it computes the hash of a file's contents." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11844 +#: guix-git/doc/guix.texi:12159 #, no-wrap msgid "nar" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11854 -msgid "Compute the hash of a ``normalized archive'' (or ``nar'') containing @var{file}, including its children if it is a directory. Some of the metadata of @var{file} is part of the archive; for instance, when @var{file} is a regular file, the hash is different depending on whether @var{file} is executable or not. Metadata such as time stamps has no impact on the hash (@pxref{Invoking guix archive}, for more info on the nar format)." +#: guix-git/doc/guix.texi:12169 +msgid "Compute the hash of a ``normalized archive'' (or ``nar'') containing @var{file}, including its children if it is a directory. Some of the metadata of @var{file} is part of the archive; for instance, when @var{file} is a regular file, the hash is different depending on whether @var{file} is executable or not. Metadata such as time stamps have no impact on the hash (@pxref{Invoking guix archive}, for more info on the nar format)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11855 +#: guix-git/doc/guix.texi:12170 #, no-wrap msgid "git" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11858 -msgid "Compute the has of the file or directory as a Git ``tree'', following the same method as the Git version control system." +#: guix-git/doc/guix.texi:12173 +msgid "Compute the hash of the file or directory as a Git ``tree'', following the same method as the Git version control system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11860 +#: guix-git/doc/guix.texi:12175 #, no-wrap msgid "--exclude-vcs" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11861 guix-git/doc/guix.texi:13038 +#: guix-git/doc/guix.texi:12176 guix-git/doc/guix.texi:13395 #, no-wrap msgid "-x" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11864 +#: guix-git/doc/guix.texi:12179 msgid "When combined with @option{--recursive}, exclude version control system directories (@file{.bzr}, @file{.git}, @file{.hg}, etc.)." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:11865 +#: guix-git/doc/guix.texi:12180 #, no-wrap msgid "git-fetch" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11869 +#: guix-git/doc/guix.texi:12184 msgid "As an example, here is how you would compute the hash of a Git checkout, which is useful when using the @code{git-fetch} method (@pxref{origin Reference}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11874 +#: guix-git/doc/guix.texi:12189 #, no-wrap msgid "" "$ git clone http://example.org/foo.git\n" "$ cd foo\n" -"$ guix hash -rx .\n" +"$ guix hash -x --serializer=nar .\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11878 guix-git/doc/guix.texi:11883 +#: guix-git/doc/guix.texi:12193 guix-git/doc/guix.texi:12198 #, no-wrap msgid "Invoking @command{guix import}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11880 +#: guix-git/doc/guix.texi:12195 #, no-wrap msgid "importing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11881 +#: guix-git/doc/guix.texi:12196 #, no-wrap msgid "package import" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11882 +#: guix-git/doc/guix.texi:12197 #, no-wrap msgid "package conversion" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11890 +#: guix-git/doc/guix.texi:12205 msgid "The @command{guix import} command is useful for people who would like to add a package to the distribution with as little work as possible---a legitimate demand. The command knows of a few repositories from which it can ``import'' package metadata. The result is a package definition, or a template thereof, in the format we know (@pxref{Defining Packages})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11895 +#: guix-git/doc/guix.texi:12210 #, no-wrap msgid "guix import @var{importer} @var{options}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11900 +#: guix-git/doc/guix.texi:12215 msgid "@var{importer} specifies the source from which to import package metadata, and @var{options} specifies a package identifier and other options specific to @var{importer}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11904 +#: guix-git/doc/guix.texi:12219 msgid "Some of the importers rely on the ability to run the @command{gpgv} command. For these, GnuPG must be installed and in @code{$PATH}; run @code{guix install gnupg} if needed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11906 +#: guix-git/doc/guix.texi:12221 msgid "Currently, the available ``importers'' are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11908 guix-git/doc/guix.texi:12546 +#: guix-git/doc/guix.texi:12223 guix-git/doc/guix.texi:12861 #, no-wrap msgid "gnu" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11912 +#: guix-git/doc/guix.texi:12227 msgid "Import metadata for the given GNU package. This provides a template for the latest version of that GNU package, including the hash of its source tarball, and its canonical synopsis and description." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11915 +#: guix-git/doc/guix.texi:12230 msgid "Additional information such as the package dependencies and its license needs to be figured out manually." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11918 +#: guix-git/doc/guix.texi:12233 msgid "For example, the following command returns a package definition for GNU@tie{}Hello:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11921 +#: guix-git/doc/guix.texi:12236 #, no-wrap msgid "guix import gnu hello\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11924 guix-git/doc/guix.texi:12165 -#: guix-git/doc/guix.texi:12215 guix-git/doc/guix.texi:12244 +#: guix-git/doc/guix.texi:12239 guix-git/doc/guix.texi:12480 +#: guix-git/doc/guix.texi:12530 guix-git/doc/guix.texi:12559 msgid "Specific command-line options are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11926 guix-git/doc/guix.texi:12743 +#: guix-git/doc/guix.texi:12241 guix-git/doc/guix.texi:13058 #, no-wrap msgid "--key-download=@var{policy}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11930 +#: guix-git/doc/guix.texi:12245 msgid "As for @command{guix refresh}, specify the policy to handle missing OpenPGP keys when verifying the package signature. @xref{Invoking guix refresh, @option{--key-download}}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11932 guix-git/doc/guix.texi:11933 -#: guix-git/doc/guix.texi:12570 +#: guix-git/doc/guix.texi:12247 guix-git/doc/guix.texi:12248 +#: guix-git/doc/guix.texi:12885 #, no-wrap msgid "pypi" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11940 +#: guix-git/doc/guix.texi:12255 msgid "Import metadata from the @uref{https://pypi.python.org/, Python Package Index}. Information is taken from the JSON-formatted description available at @code{pypi.python.org} and usually includes all the relevant information, including package dependencies. For maximum efficiency, it is recommended to install the @command{unzip} utility, so that the importer can unzip Python wheels and gather data from them." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11943 +#: guix-git/doc/guix.texi:12258 msgid "The command below imports metadata for the latest version of the @code{itsdangerous} Python package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11946 +#: guix-git/doc/guix.texi:12261 #, no-wrap msgid "guix import pypi itsdangerous\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11949 guix-git/doc/guix.texi:12052 -#: guix-git/doc/guix.texi:12393 +#: guix-git/doc/guix.texi:12264 guix-git/doc/guix.texi:12367 +#: guix-git/doc/guix.texi:12708 msgid "You can also ask for a specific version:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11952 +#: guix-git/doc/guix.texi:12267 #, no-wrap msgid "guix import pypi itsdangerous@@1.1.0\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11960 guix-git/doc/guix.texi:11985 -#: guix-git/doc/guix.texi:12017 guix-git/doc/guix.texi:12188 -#: guix-git/doc/guix.texi:12229 guix-git/doc/guix.texi:12280 -#: guix-git/doc/guix.texi:12305 guix-git/doc/guix.texi:12321 -#: guix-git/doc/guix.texi:12369 guix-git/doc/guix.texi:12405 +#: guix-git/doc/guix.texi:12275 guix-git/doc/guix.texi:12300 +#: guix-git/doc/guix.texi:12332 guix-git/doc/guix.texi:12503 +#: guix-git/doc/guix.texi:12544 guix-git/doc/guix.texi:12595 +#: guix-git/doc/guix.texi:12620 guix-git/doc/guix.texi:12636 +#: guix-git/doc/guix.texi:12684 guix-git/doc/guix.texi:12720 msgid "Traverse the dependency graph of the given upstream package recursively and generate package expressions for all those packages that are not yet in Guix." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11962 guix-git/doc/guix.texi:11963 -#: guix-git/doc/guix.texi:12572 +#: guix-git/doc/guix.texi:12277 guix-git/doc/guix.texi:12278 +#: guix-git/doc/guix.texi:12887 #, no-wrap msgid "gem" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11972 +#: guix-git/doc/guix.texi:12287 msgid "Import metadata from @uref{https://rubygems.org/, RubyGems}. Information is taken from the JSON-formatted description available at @code{rubygems.org} and includes most relevant information, including runtime dependencies. There are some caveats, however. The metadata doesn't distinguish between synopses and descriptions, so the same string is used for both fields. Additionally, the details of non-Ruby dependencies required to build native extensions is unavailable and left as an exercise to the packager." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11974 +#: guix-git/doc/guix.texi:12289 msgid "The command below imports metadata for the @code{rails} Ruby package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11977 +#: guix-git/doc/guix.texi:12292 #, no-wrap msgid "guix import gem rails\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11987 guix-git/doc/guix.texi:11988 +#: guix-git/doc/guix.texi:12302 guix-git/doc/guix.texi:12303 #, no-wrap msgid "minetest" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11989 +#: guix-git/doc/guix.texi:12304 #, no-wrap msgid "ContentDB" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11998 +#: guix-git/doc/guix.texi:12313 msgid "Import metadata from @uref{https://content.minetest.net, ContentDB}. Information is taken from the JSON-formatted metadata provided through @uref{https://content.minetest.net/help/api/, ContentDB's API} and includes most relevant information, including dependencies. There are some caveats, however. The license information is often incomplete. The commit hash is sometimes missing. The descriptions are in the Markdown format, but Guix uses Texinfo instead. Texture packs and subgames are unsupported." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12000 +#: guix-git/doc/guix.texi:12315 msgid "The command below imports metadata for the Mesecons mod by Jeija:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12003 +#: guix-git/doc/guix.texi:12318 #, no-wrap msgid "guix import minetest Jeija/mesecons\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12006 +#: guix-git/doc/guix.texi:12321 msgid "The author name can also be left out:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12009 +#: guix-git/doc/guix.texi:12324 #, no-wrap msgid "guix import minetest mesecons\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12019 guix-git/doc/guix.texi:12568 +#: guix-git/doc/guix.texi:12334 guix-git/doc/guix.texi:12883 #, no-wrap msgid "cpan" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12020 +#: guix-git/doc/guix.texi:12335 #, no-wrap msgid "CPAN" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12028 +#: guix-git/doc/guix.texi:12343 msgid "Import metadata from @uref{https://www.metacpan.org/, MetaCPAN}. Information is taken from the JSON-formatted metadata provided through @uref{https://fastapi.metacpan.org/, MetaCPAN's API} and includes most relevant information, such as module dependencies. License information should be checked closely. If Perl is available in the store, then the @code{corelist} utility will be used to filter core modules out of the list of dependencies." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12031 +#: guix-git/doc/guix.texi:12346 msgid "The command command below imports metadata for the Acme::Boolean Perl module:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12034 +#: guix-git/doc/guix.texi:12349 #, no-wrap msgid "guix import cpan Acme::Boolean\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12036 guix-git/doc/guix.texi:12564 +#: guix-git/doc/guix.texi:12351 guix-git/doc/guix.texi:12879 #, no-wrap msgid "cran" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12037 +#: guix-git/doc/guix.texi:12352 #, no-wrap msgid "CRAN" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12038 +#: guix-git/doc/guix.texi:12353 #, no-wrap msgid "Bioconductor" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12042 +#: guix-git/doc/guix.texi:12357 msgid "Import metadata from @uref{https://cran.r-project.org/, CRAN}, the central repository for the @uref{https://r-project.org, GNU@tie{}R statistical and graphical environment}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12044 +#: guix-git/doc/guix.texi:12359 msgid "Information is extracted from the @file{DESCRIPTION} file of the package." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12046 +#: guix-git/doc/guix.texi:12361 msgid "The command command below imports metadata for the Cairo R package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12049 +#: guix-git/doc/guix.texi:12364 #, no-wrap msgid "guix import cran Cairo\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12055 +#: guix-git/doc/guix.texi:12370 #, no-wrap msgid "guix import cran rasterVis@@0.50.3\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12060 +#: guix-git/doc/guix.texi:12375 msgid "When @option{--recursive} is added, the importer will traverse the dependency graph of the given upstream package recursively and generate package expressions for all those packages that are not yet in Guix." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12067 +#: guix-git/doc/guix.texi:12382 msgid "When @option{--style=specification} is added, the importer will generate package definitions whose inputs are package specifications instead of references to package variables. This is useful when generated package definitions are to be appended to existing user modules, as the list of used package modules need not be changed. The default is @option{--style=variable}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12072 +#: guix-git/doc/guix.texi:12387 msgid "When @option{--archive=bioconductor} is added, metadata is imported from @uref{https://www.bioconductor.org/, Bioconductor}, a repository of R packages for the analysis and comprehension of high-throughput genomic data in bioinformatics." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12075 +#: guix-git/doc/guix.texi:12390 msgid "Information is extracted from the @file{DESCRIPTION} file contained in the package archive." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12077 +#: guix-git/doc/guix.texi:12392 msgid "The command below imports metadata for the GenomicRanges R package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12080 +#: guix-git/doc/guix.texi:12395 #, no-wrap msgid "guix import cran --archive=bioconductor GenomicRanges\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12085 +#: guix-git/doc/guix.texi:12400 msgid "Finally, you can also import R packages that have not yet been published on CRAN or Bioconductor as long as they are in a git repository. Use @option{--archive=git} followed by the URL of the git repository:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12088 +#: guix-git/doc/guix.texi:12403 #, no-wrap msgid "guix import cran --archive=git https://github.com/immunogenomics/harmony\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12090 +#: guix-git/doc/guix.texi:12405 #, no-wrap msgid "texlive" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12091 +#: guix-git/doc/guix.texi:12406 #, no-wrap msgid "TeX Live" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12092 +#: guix-git/doc/guix.texi:12407 #, no-wrap msgid "CTAN" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12096 +#: guix-git/doc/guix.texi:12411 msgid "Import TeX package information from the TeX Live package database for TeX packages that are part of the @uref{https://www.tug.org/texlive/, TeX Live distribution}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12101 +#: guix-git/doc/guix.texi:12416 msgid "Information about the package is obtained from the TeX Live package database, a plain text file that is included in the @code{texlive-bin} package. The source code is downloaded from possibly multiple locations in the SVN repository of the Tex Live project." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12104 +#: guix-git/doc/guix.texi:12419 msgid "The command command below imports metadata for the @code{fontspec} TeX package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12107 +#: guix-git/doc/guix.texi:12422 #, no-wrap msgid "guix import texlive fontspec\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12110 +#: guix-git/doc/guix.texi:12425 #, no-wrap msgid "JSON, import" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12113 +#: guix-git/doc/guix.texi:12428 msgid "Import package metadata from a local JSON file. Consider the following example package definition in JSON format:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12126 +#: guix-git/doc/guix.texi:12441 #, no-wrap msgid "" "@{\n" @@ -21673,17 +22211,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12132 +#: guix-git/doc/guix.texi:12447 msgid "The field names are the same as for the @code{} record (@xref{Defining Packages}). References to other packages are provided as JSON lists of quoted package specification strings such as @code{guile} or @code{guile@@2.0}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12135 +#: guix-git/doc/guix.texi:12450 msgid "The importer also supports a more explicit source definition using the common fields for @code{} records:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12148 +#: guix-git/doc/guix.texi:12463 #, no-wrap msgid "" "@{\n" @@ -21700,382 +22238,382 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12152 +#: guix-git/doc/guix.texi:12467 msgid "The command below reads metadata from the JSON file @code{hello.json} and outputs a package expression:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12155 +#: guix-git/doc/guix.texi:12470 #, no-wrap msgid "guix import json hello.json\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12157 guix-git/doc/guix.texi:12158 -#: guix-git/doc/guix.texi:12576 +#: guix-git/doc/guix.texi:12472 guix-git/doc/guix.texi:12473 +#: guix-git/doc/guix.texi:12891 #, no-wrap msgid "hackage" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12163 +#: guix-git/doc/guix.texi:12478 msgid "Import metadata from the Haskell community's central package archive @uref{https://hackage.haskell.org/, Hackage}. Information is taken from Cabal files and includes all the relevant information, including package dependencies." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12167 +#: guix-git/doc/guix.texi:12482 #, no-wrap msgid "--stdin" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12168 +#: guix-git/doc/guix.texi:12483 #, no-wrap msgid "-s" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12170 +#: guix-git/doc/guix.texi:12485 msgid "Read a Cabal file from standard input." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12170 guix-git/doc/guix.texi:12217 +#: guix-git/doc/guix.texi:12485 guix-git/doc/guix.texi:12532 #, no-wrap msgid "--no-test-dependencies" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12173 guix-git/doc/guix.texi:12220 +#: guix-git/doc/guix.texi:12488 guix-git/doc/guix.texi:12535 msgid "Do not include dependencies required only by the test suites." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12173 +#: guix-git/doc/guix.texi:12488 #, no-wrap msgid "--cabal-environment=@var{alist}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12174 +#: guix-git/doc/guix.texi:12489 #, no-wrap msgid "-e @var{alist}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12183 +#: guix-git/doc/guix.texi:12498 msgid "@var{alist} is a Scheme alist defining the environment in which the Cabal conditionals are evaluated. The accepted keys are: @code{os}, @code{arch}, @code{impl} and a string representing the name of a flag. The value associated with a flag has to be either the symbol @code{true} or @code{false}. The value associated with other keys has to conform to the Cabal file format definition. The default value associated with the keys @code{os}, @code{arch} and @code{impl} is @samp{linux}, @samp{x86_64} and @samp{ghc}, respectively." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12193 +#: guix-git/doc/guix.texi:12508 msgid "The command below imports metadata for the latest version of the HTTP Haskell package without including test dependencies and specifying the value of the flag @samp{network-uri} as @code{false}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12196 +#: guix-git/doc/guix.texi:12511 #, no-wrap msgid "guix import hackage -t -e \"'((\\\"network-uri\\\" . false))\" HTTP\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12200 +#: guix-git/doc/guix.texi:12515 msgid "A specific package version may optionally be specified by following the package name by an at-sign and a version number as in the following example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12203 +#: guix-git/doc/guix.texi:12518 #, no-wrap msgid "guix import hackage mtl@@2.1.3.1\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12205 guix-git/doc/guix.texi:12206 -#: guix-git/doc/guix.texi:12578 +#: guix-git/doc/guix.texi:12520 guix-git/doc/guix.texi:12521 +#: guix-git/doc/guix.texi:12893 #, no-wrap msgid "stackage" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12213 +#: guix-git/doc/guix.texi:12528 msgid "The @code{stackage} importer is a wrapper around the @code{hackage} one. It takes a package name, looks up the package version included in a long-term support (LTS) @uref{https://www.stackage.org, Stackage} release and uses the @code{hackage} importer to retrieve its metadata. Note that it is up to you to select an LTS release compatible with the GHC compiler used by Guix." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12220 +#: guix-git/doc/guix.texi:12535 #, no-wrap msgid "--lts-version=@var{version}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12221 +#: guix-git/doc/guix.texi:12536 #, no-wrap msgid "-l @var{version}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12224 +#: guix-git/doc/guix.texi:12539 msgid "@var{version} is the desired LTS release version. If omitted the latest release is used." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12233 +#: guix-git/doc/guix.texi:12548 msgid "The command below imports metadata for the HTTP Haskell package included in the LTS Stackage release version 7.18:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12236 +#: guix-git/doc/guix.texi:12551 #, no-wrap msgid "guix import stackage --lts-version=7.18 HTTP\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12238 guix-git/doc/guix.texi:12239 -#: guix-git/doc/guix.texi:12562 +#: guix-git/doc/guix.texi:12553 guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12877 #, no-wrap msgid "elpa" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12242 +#: guix-git/doc/guix.texi:12557 msgid "Import metadata from an Emacs Lisp Package Archive (ELPA) package repository (@pxref{Packages,,, emacs, The GNU Emacs Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12246 +#: guix-git/doc/guix.texi:12561 #, no-wrap msgid "--archive=@var{repo}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12247 +#: guix-git/doc/guix.texi:12562 #, no-wrap msgid "-a @var{repo}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12251 +#: guix-git/doc/guix.texi:12566 msgid "@var{repo} identifies the archive repository from which to retrieve the information. Currently the supported repositories and their identifiers are:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12255 +#: guix-git/doc/guix.texi:12570 msgid "@uref{https://elpa.gnu.org/packages, GNU}, selected by the @code{gnu} identifier. This is the default." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12261 +#: guix-git/doc/guix.texi:12576 msgid "Packages from @code{elpa.gnu.org} are signed with one of the keys contained in the GnuPG keyring at @file{share/emacs/25.1/etc/package-keyring.gpg} (or similar) in the @code{emacs} package (@pxref{Package Installation, ELPA package signatures,, emacs, The GNU Emacs Manual})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12265 +#: guix-git/doc/guix.texi:12580 msgid "@uref{https://elpa.nongnu.org/nongnu/, NonGNU}, selected by the @code{nongnu} identifier." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12269 +#: guix-git/doc/guix.texi:12584 msgid "@uref{https://stable.melpa.org/packages, MELPA-Stable}, selected by the @code{melpa-stable} identifier." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12273 +#: guix-git/doc/guix.texi:12588 msgid "@uref{https://melpa.org/packages, MELPA}, selected by the @code{melpa} identifier." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12282 guix-git/doc/guix.texi:12283 -#: guix-git/doc/guix.texi:12580 +#: guix-git/doc/guix.texi:12597 guix-git/doc/guix.texi:12598 +#: guix-git/doc/guix.texi:12895 #, no-wrap msgid "crate" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12286 +#: guix-git/doc/guix.texi:12601 msgid "Import metadata from the crates.io Rust package repository @uref{https://crates.io, crates.io}, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12289 +#: guix-git/doc/guix.texi:12604 #, no-wrap msgid "guix import crate blake2-rfc\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12292 +#: guix-git/doc/guix.texi:12607 msgid "The crate importer also allows you to specify a version string:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12295 +#: guix-git/doc/guix.texi:12610 #, no-wrap msgid "guix import crate constant-time-eq@@0.1.0\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12298 guix-git/doc/guix.texi:12314 -#: guix-git/doc/guix.texi:12362 guix-git/doc/guix.texi:12399 +#: guix-git/doc/guix.texi:12613 guix-git/doc/guix.texi:12629 +#: guix-git/doc/guix.texi:12677 guix-git/doc/guix.texi:12714 msgid "Additional options include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12307 +#: guix-git/doc/guix.texi:12622 #, no-wrap msgid "opam" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12308 +#: guix-git/doc/guix.texi:12623 #, no-wrap msgid "OPAM" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12309 +#: guix-git/doc/guix.texi:12624 #, no-wrap msgid "OCaml" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12312 +#: guix-git/doc/guix.texi:12627 msgid "Import metadata from the @uref{https://opam.ocaml.org/, OPAM} package repository used by the OCaml community." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12321 +#: guix-git/doc/guix.texi:12636 #, no-wrap msgid "--repo" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12325 +#: guix-git/doc/guix.texi:12640 msgid "By default, packages are searched in the official OPAM repository. This option, which can be used more than once, lets you add other repositories which will be searched for packages. It accepts as valid arguments:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12327 +#: guix-git/doc/guix.texi:12642 #, no-wrap msgid "the name of a known repository - can be one of @code{opam}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12330 +#: guix-git/doc/guix.texi:12645 msgid "@code{coq} (equivalent to @code{coq-released}), @code{coq-core-dev}, @code{coq-extra-dev} or @code{grew}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12330 +#: guix-git/doc/guix.texi:12645 #, no-wrap msgid "the URL of a repository as expected by the" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12334 +#: guix-git/doc/guix.texi:12649 msgid "@code{opam repository add} command (for instance, the URL equivalent of the above @code{opam} name would be @uref{https://opam.ocaml.org})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12334 +#: guix-git/doc/guix.texi:12649 #, no-wrap msgid "the path to a local copy of a repository (a directory containing a" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12336 +#: guix-git/doc/guix.texi:12651 msgid "@file{packages/} sub-directory)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12341 +#: guix-git/doc/guix.texi:12656 msgid "Repositories are assumed to be passed to this option by order of preference. The additional repositories will not replace the default @code{opam} repository, which is always kept as a fallback." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12346 +#: guix-git/doc/guix.texi:12661 msgid "Also, please note that versions are not compared across repositories. The first repository (from left to right) that has at least one version of a given package will prevail over any others, and the version imported will be the latest one found @emph{in this repository only}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12349 guix-git/doc/guix.texi:12350 +#: guix-git/doc/guix.texi:12664 guix-git/doc/guix.texi:12665 #, no-wrap msgid "go" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12353 +#: guix-git/doc/guix.texi:12668 msgid "Import metadata for a Go module using @uref{https://proxy.golang.org, proxy.golang.org}." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12356 +#: guix-git/doc/guix.texi:12671 #, no-wrap msgid "guix import go gopkg.in/yaml.v2\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12360 +#: guix-git/doc/guix.texi:12675 msgid "It is possible to use a package specification with a @code{@@VERSION} suffix to import a specific version." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12369 +#: guix-git/doc/guix.texi:12684 #, no-wrap msgid "--pin-versions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12377 +#: guix-git/doc/guix.texi:12692 msgid "When using this option, the importer preserves the exact versions of the Go modules dependencies instead of using their latest available versions. This can be useful when attempting to import packages that recursively depend on former versions of themselves to build. When using this mode, the symbol of the package is made by appending the version to its name, so that multiple versions of the same package can coexist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12379 guix-git/doc/guix.texi:12380 -#: guix-git/doc/guix.texi:12560 +#: guix-git/doc/guix.texi:12694 guix-git/doc/guix.texi:12695 +#: guix-git/doc/guix.texi:12875 #, no-wrap msgid "egg" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12387 +#: guix-git/doc/guix.texi:12702 msgid "Import metadata for @uref{https://wiki.call-cc.org/eggs, CHICKEN eggs}. The information is taken from @file{PACKAGE.egg} files found in the @uref{git://code.call-cc.org/eggs-5-all, eggs-5-all} Git repository. However, it does not provide all the information that we need, there is no ``description'' field, and the licenses used are not always precise (BSD is often used instead of BSD-N)." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12390 +#: guix-git/doc/guix.texi:12705 #, no-wrap msgid "guix import egg sourcehut\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12396 +#: guix-git/doc/guix.texi:12711 #, no-wrap msgid "guix import egg arrays@@1.0\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12411 +#: guix-git/doc/guix.texi:12726 msgid "The structure of the @command{guix import} code is modular. It would be useful to have more importers for other package formats, and your help is welcome here (@pxref{Contributing})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:12413 +#: guix-git/doc/guix.texi:12728 #, no-wrap msgid "Invoking @command{guix refresh}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:12415 +#: guix-git/doc/guix.texi:12730 #, no-wrap msgid "guix refresh" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12423 +#: guix-git/doc/guix.texi:12738 msgid "The primary audience of the @command{guix refresh} command is packagers. As a user, you may be interested in the @option{--with-latest} option, which can bring you package update superpowers built upon @command{guix refresh} (@pxref{Package Transformation Options, @option{--with-latest}}). By default, @command{guix refresh} reports any packages provided by the distribution that are outdated compared to the latest upstream version, like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12428 +#: guix-git/doc/guix.texi:12743 #, no-wrap msgid "" "$ guix refresh\n" @@ -22084,12 +22622,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12432 +#: guix-git/doc/guix.texi:12747 msgid "Alternatively, one can specify packages to consider, in which case a warning is emitted for packages that lack an updater:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12437 +#: guix-git/doc/guix.texi:12752 #, no-wrap msgid "" "$ guix refresh coreutils guile guile-ssh\n" @@ -22098,17 +22636,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12446 +#: guix-git/doc/guix.texi:12761 msgid "@command{guix refresh} browses the upstream repository of each package and determines the highest version number of the releases therein. The command knows how to update specific types of packages: GNU packages, ELPA packages, etc.---see the documentation for @option{--type} below. There are many packages, though, for which it lacks a method to determine whether a new upstream release is available. However, the mechanism is extensible, so feel free to get in touch with us to add a new method!" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12451 +#: guix-git/doc/guix.texi:12766 msgid "Consider the packages specified, and all the packages upon which they depend." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12459 +#: guix-git/doc/guix.texi:12774 #, no-wrap msgid "" "$ guix refresh --recursive coreutils\n" @@ -22120,12 +22658,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12467 +#: guix-git/doc/guix.texi:12782 msgid "Sometimes the upstream name differs from the package name used in Guix, and @command{guix refresh} needs a little help. Most updaters honor the @code{upstream-name} property in package definitions, which can be used to that effect:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12474 +#: guix-git/doc/guix.texi:12789 #, no-wrap msgid "" "(define-public network-manager\n" @@ -22136,325 +22674,325 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12483 +#: guix-git/doc/guix.texi:12798 msgid "When passed @option{--update}, it modifies distribution source files to update the version numbers and source tarball hashes of those package recipes (@pxref{Defining Packages}). This is achieved by downloading each package's latest source tarball and its associated OpenPGP signature, authenticating the downloaded tarball against its signature using @command{gpgv}, and finally computing its hash---note that GnuPG must be installed and in @code{$PATH}; run @code{guix install gnupg} if needed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12489 +#: guix-git/doc/guix.texi:12804 msgid "When the public key used to sign the tarball is missing from the user's keyring, an attempt is made to automatically retrieve it from a public key server; when this is successful, the key is added to the user's keyring; otherwise, @command{guix refresh} reports an error." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12491 +#: guix-git/doc/guix.texi:12806 msgid "The following options are supported:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12499 guix-git/doc/guix.texi:13447 +#: guix-git/doc/guix.texi:12814 guix-git/doc/guix.texi:13804 msgid "This is useful to precisely refer to a package, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12502 +#: guix-git/doc/guix.texi:12817 #, no-wrap msgid "guix refresh -l -e '(@@@@ (gnu packages commencement) glibc-final)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12506 +#: guix-git/doc/guix.texi:12821 msgid "This command lists the dependents of the ``final'' libc (essentially all the packages)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12507 +#: guix-git/doc/guix.texi:12822 #, no-wrap msgid "--update" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12508 +#: guix-git/doc/guix.texi:12823 #, no-wrap msgid "-u" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12512 +#: guix-git/doc/guix.texi:12827 msgid "Update distribution source files (package recipes) in place. This is usually run from a checkout of the Guix source tree (@pxref{Running Guix Before It Is Installed}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12515 +#: guix-git/doc/guix.texi:12830 #, no-wrap msgid "$ ./pre-inst-env guix refresh -s non-core -u\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12518 +#: guix-git/doc/guix.texi:12833 msgid "@xref{Defining Packages}, for more information on package definitions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12519 +#: guix-git/doc/guix.texi:12834 #, no-wrap msgid "--select=[@var{subset}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12520 +#: guix-git/doc/guix.texi:12835 #, no-wrap msgid "-s @var{subset}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12523 +#: guix-git/doc/guix.texi:12838 msgid "Select all the packages in @var{subset}, one of @code{core} or @code{non-core}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12530 +#: guix-git/doc/guix.texi:12845 msgid "The @code{core} subset refers to all the packages at the core of the distribution---i.e., packages that are used to build ``everything else''. This includes GCC, libc, Binutils, Bash, etc. Usually, changing one of these packages in the distribution entails a rebuild of all the others. Thus, such updates are an inconvenience to users in terms of build time or bandwidth used to achieve the upgrade." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12534 +#: guix-git/doc/guix.texi:12849 msgid "The @code{non-core} subset refers to the remaining packages. It is typically useful in cases where an update of the core packages would be inconvenient." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12539 +#: guix-git/doc/guix.texi:12854 msgid "Select all the packages from the manifest in @var{file}. This is useful to check if any packages of the user manifest can be updated." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12540 +#: guix-git/doc/guix.texi:12855 #, no-wrap msgid "--type=@var{updater}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12541 +#: guix-git/doc/guix.texi:12856 #, no-wrap msgid "-t @var{updater}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12544 +#: guix-git/doc/guix.texi:12859 msgid "Select only packages handled by @var{updater} (may be a comma-separated list of updaters). Currently, @var{updater} may be one of:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12548 +#: guix-git/doc/guix.texi:12863 msgid "the updater for GNU packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12548 +#: guix-git/doc/guix.texi:12863 #, no-wrap msgid "savannah" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12550 +#: guix-git/doc/guix.texi:12865 msgid "the updater for packages hosted at @uref{https://savannah.gnu.org, Savannah};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12550 +#: guix-git/doc/guix.texi:12865 #, no-wrap msgid "sourceforge" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12552 +#: guix-git/doc/guix.texi:12867 msgid "the updater for packages hosted at @uref{https://sourceforge.net, SourceForge};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12552 +#: guix-git/doc/guix.texi:12867 #, no-wrap msgid "gnome" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12869 msgid "the updater for GNOME packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12869 #, no-wrap msgid "kde" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12556 +#: guix-git/doc/guix.texi:12871 msgid "the updater for KDE packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12556 +#: guix-git/doc/guix.texi:12871 #, no-wrap msgid "xorg" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12558 +#: guix-git/doc/guix.texi:12873 msgid "the updater for X.org packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12558 +#: guix-git/doc/guix.texi:12873 #, no-wrap msgid "kernel.org" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12560 +#: guix-git/doc/guix.texi:12875 msgid "the updater for packages hosted on kernel.org;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12562 +#: guix-git/doc/guix.texi:12877 msgid "the updater for @uref{https://wiki.call-cc.org/eggs/, Egg} packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12564 +#: guix-git/doc/guix.texi:12879 msgid "the updater for @uref{https://elpa.gnu.org/, ELPA} packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12566 +#: guix-git/doc/guix.texi:12881 msgid "the updater for @uref{https://cran.r-project.org/, CRAN} packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12566 +#: guix-git/doc/guix.texi:12881 #, no-wrap msgid "bioconductor" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12568 +#: guix-git/doc/guix.texi:12883 msgid "the updater for @uref{https://www.bioconductor.org/, Bioconductor} R packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12570 +#: guix-git/doc/guix.texi:12885 msgid "the updater for @uref{https://www.cpan.org/, CPAN} packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12572 +#: guix-git/doc/guix.texi:12887 msgid "the updater for @uref{https://pypi.python.org, PyPI} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12574 +#: guix-git/doc/guix.texi:12889 msgid "the updater for @uref{https://rubygems.org, RubyGems} packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12574 +#: guix-git/doc/guix.texi:12889 #, no-wrap msgid "github" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12576 +#: guix-git/doc/guix.texi:12891 msgid "the updater for @uref{https://github.com, GitHub} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12578 +#: guix-git/doc/guix.texi:12893 msgid "the updater for @uref{https://hackage.haskell.org, Hackage} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12580 +#: guix-git/doc/guix.texi:12895 msgid "the updater for @uref{https://www.stackage.org, Stackage} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12582 +#: guix-git/doc/guix.texi:12897 msgid "the updater for @uref{https://crates.io, Crates} packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12582 +#: guix-git/doc/guix.texi:12897 #, no-wrap msgid "launchpad" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12584 +#: guix-git/doc/guix.texi:12899 msgid "the updater for @uref{https://launchpad.net, Launchpad} packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12584 +#: guix-git/doc/guix.texi:12899 #, no-wrap msgid "generic-html" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12587 +#: guix-git/doc/guix.texi:12902 msgid "a generic updater that crawls the HTML page where the source tarball of the package is hosted, when applicable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12588 +#: guix-git/doc/guix.texi:12903 #, no-wrap msgid "generic-git" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12593 +#: guix-git/doc/guix.texi:12908 msgid "a generic updater for packages hosted on Git repositories. It tries to be smart about parsing Git tag names, but if it is not able to parse the tag name and compare tags correctly, users can define the following properties for a package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12595 +#: guix-git/doc/guix.texi:12910 #, no-wrap msgid "@code{release-tag-prefix}: a regular expression for matching a prefix of" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12597 guix-git/doc/guix.texi:12600 +#: guix-git/doc/guix.texi:12912 guix-git/doc/guix.texi:12915 msgid "the tag name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12598 +#: guix-git/doc/guix.texi:12913 #, no-wrap msgid "@code{release-tag-suffix}: a regular expression for matching a suffix of" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12601 +#: guix-git/doc/guix.texi:12916 #, no-wrap msgid "@code{release-tag-version-delimiter}: a string used as the delimiter in" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12603 +#: guix-git/doc/guix.texi:12918 msgid "the tag name for separating the numbers of the version." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12604 +#: guix-git/doc/guix.texi:12919 #, no-wrap msgid "@code{accept-pre-releases}: by default, the updater will ignore" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12607 +#: guix-git/doc/guix.texi:12922 msgid "pre-releases; to make it also look for pre-releases, set the this property to @code{#t}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12618 +#: guix-git/doc/guix.texi:12933 #, no-wrap msgid "" "(package\n" @@ -22467,12 +23005,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12625 +#: guix-git/doc/guix.texi:12940 msgid "For instance, the following command only checks for updates of Emacs packages hosted at @code{elpa.gnu.org} and for updates of CRAN packages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12630 +#: guix-git/doc/guix.texi:12945 #, no-wrap msgid "" "$ guix refresh --type=elpa,cran\n" @@ -22481,45 +23019,45 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12632 +#: guix-git/doc/guix.texi:12947 #, no-wrap msgid "--list-updaters" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12633 +#: guix-git/doc/guix.texi:12948 #, no-wrap msgid "-L" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12635 +#: guix-git/doc/guix.texi:12950 msgid "List available updaters and exit (see @option{--type} above)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12638 +#: guix-git/doc/guix.texi:12953 msgid "For each updater, display the fraction of packages it covers; at the end, display the fraction of packages covered by all these updaters." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12642 +#: guix-git/doc/guix.texi:12957 msgid "In addition, @command{guix refresh} can be passed one or more package names, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12645 +#: guix-git/doc/guix.texi:12960 #, no-wrap msgid "$ ./pre-inst-env guix refresh -u emacs idutils gcc@@4.8\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12652 +#: guix-git/doc/guix.texi:12967 msgid "The command above specifically updates the @code{emacs} and @code{idutils} packages. The @option{--select} option would have no effect in this case. You might also want to update definitions that correspond to the packages installed in your profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12656 +#: guix-git/doc/guix.texi:12971 #, no-wrap msgid "" "$ ./pre-inst-env guix refresh -u \\\n" @@ -22527,39 +23065,39 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12662 +#: guix-git/doc/guix.texi:12977 msgid "When considering whether to upgrade a package, it is sometimes convenient to know which packages would be affected by the upgrade and should be checked for compatibility. For this the following option may be used when passing @command{guix refresh} one or more package names:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12665 +#: guix-git/doc/guix.texi:12980 #, no-wrap msgid "--list-dependent" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12666 guix-git/doc/guix.texi:13028 +#: guix-git/doc/guix.texi:12981 guix-git/doc/guix.texi:13385 #, no-wrap msgid "-l" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12669 +#: guix-git/doc/guix.texi:12984 msgid "List top-level dependent packages that would need to be rebuilt as a result of upgrading one or more packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12673 +#: guix-git/doc/guix.texi:12988 msgid "@xref{Invoking guix graph, the @code{reverse-package} type of @command{guix graph}}, for information on how to visualize the list of dependents of a package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12679 +#: guix-git/doc/guix.texi:12994 msgid "Be aware that the @option{--list-dependent} option only @emph{approximates} the rebuilds that would be required as a result of an upgrade. More rebuilds might be required under some circumstances." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12684 +#: guix-git/doc/guix.texi:12999 #, no-wrap msgid "" "$ guix refresh --list-dependent flex\n" @@ -22568,23 +23106,23 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12688 +#: guix-git/doc/guix.texi:13003 msgid "The command above lists a set of packages that could be built to check for compatibility with an upgraded @code{flex} package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12691 +#: guix-git/doc/guix.texi:13006 #, no-wrap msgid "--list-transitive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12693 +#: guix-git/doc/guix.texi:13008 msgid "List all the packages which one or more packages depend upon." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12698 +#: guix-git/doc/guix.texi:13013 #, no-wrap msgid "" "$ guix refresh --list-transitive flex\n" @@ -22593,60 +23131,60 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12704 +#: guix-git/doc/guix.texi:13019 msgid "The command above lists a set of packages which, when changed, would cause @code{flex} to be rebuilt." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12706 +#: guix-git/doc/guix.texi:13021 msgid "The following options can be used to customize GnuPG operation:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12709 +#: guix-git/doc/guix.texi:13024 #, no-wrap msgid "--gpg=@var{command}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12712 +#: guix-git/doc/guix.texi:13027 msgid "Use @var{command} as the GnuPG 2.x command. @var{command} is searched for in @code{$PATH}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12713 +#: guix-git/doc/guix.texi:13028 #, no-wrap msgid "--keyring=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12719 +#: guix-git/doc/guix.texi:13034 msgid "Use @var{file} as the keyring for upstream keys. @var{file} must be in the @dfn{keybox format}. Keybox files usually have a name ending in @file{.kbx} and the GNU@tie{}Privacy Guard (GPG) can manipulate these files (@pxref{kbxutil, @command{kbxutil},, gnupg, Using the GNU Privacy Guard}, for information on a tool to manipulate keybox files)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12725 +#: guix-git/doc/guix.texi:13040 msgid "When this option is omitted, @command{guix refresh} uses @file{~/.config/guix/upstream/trustedkeys.kbx} as the keyring for upstream signing keys. OpenPGP signatures are checked against keys from this keyring; missing keys are downloaded to this keyring as well (see @option{--key-download} below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12728 +#: guix-git/doc/guix.texi:13043 msgid "You can export keys from your default GPG keyring into a keybox file using commands like this one:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12731 +#: guix-git/doc/guix.texi:13046 #, no-wrap msgid "gpg --export rms@@gnu.org | kbxutil --import-openpgp >> mykeyring.kbx\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12734 +#: guix-git/doc/guix.texi:13049 msgid "Likewise, you can fetch keys to a specific keybox file like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12738 +#: guix-git/doc/guix.texi:13053 #, no-wrap msgid "" "gpg --no-default-keyring --keyring mykeyring.kbx \\\n" @@ -22654,83 +23192,93 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12742 +#: guix-git/doc/guix.texi:13057 msgid "@xref{GPG Configuration Options, @option{--keyring},, gnupg, Using the GNU Privacy Guard}, for more information on GPG's @option{--keyring} option." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12746 +#: guix-git/doc/guix.texi:13061 msgid "Handle missing OpenPGP keys according to @var{policy}, which may be one of:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12748 guix-git/doc/guix.texi:12871 -#: guix-git/doc/guix.texi:22249 +#: guix-git/doc/guix.texi:13063 guix-git/doc/guix.texi:13228 +#: guix-git/doc/guix.texi:22611 #, no-wrap msgid "always" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12751 +#: guix-git/doc/guix.texi:13066 msgid "Always download missing OpenPGP keys from the key server, and add them to the user's GnuPG keyring." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12752 guix-git/doc/guix.texi:22251 +#: guix-git/doc/guix.texi:13067 guix-git/doc/guix.texi:22613 #, no-wrap msgid "never" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12754 +#: guix-git/doc/guix.texi:13069 msgid "Never try to download missing OpenPGP keys. Instead just bail out." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12755 +#: guix-git/doc/guix.texi:13070 #, no-wrap msgid "interactive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12758 +#: guix-git/doc/guix.texi:13073 msgid "When a package signed with an unknown OpenPGP key is encountered, ask the user whether to download it or not. This is the default behavior." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12760 +#: guix-git/doc/guix.texi:13075 #, no-wrap msgid "--key-server=@var{host}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12762 +#: guix-git/doc/guix.texi:13077 msgid "Use @var{host} as the OpenPGP key server when importing a public key." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12782 +#: guix-git/doc/guix.texi:13097 msgid "The @code{github} updater uses the @uref{https://developer.github.com/v3/, GitHub API} to query for new releases. When used repeatedly e.g.@: when refreshing all packages, GitHub will eventually refuse to answer any further API requests. By default 60 API requests per hour are allowed, and a full refresh on all GitHub packages in Guix requires more than this. Authentication with GitHub through the use of an API token alleviates these limits. To use an API token, set the environment variable @env{GUIX_GITHUB_TOKEN} to a token procured from @uref{https://github.com/settings/tokens} or otherwise." msgstr "" #. type: section -#: guix-git/doc/guix.texi:12785 +#: guix-git/doc/guix.texi:13100 #, no-wrap msgid "Invoking @command{guix style}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12791 -msgid "The @command{guix style} command helps packagers style their package definitions according to the latest fashionable trends. The command currently focuses on one aspect: the style of package inputs. It may eventually be extended to handle other stylistic matters." +#: guix-git/doc/guix.texi:13105 +msgid "The @command{guix style} command helps packagers style their package definitions according to the latest fashionable trends. The command currently provides the following styling rules:" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix.texi:13110 +msgid "formatting package definitions according to the project's conventions (@pxref{Formatting Code});" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix.texi:13113 +msgid "rewriting package inputs to the ``new style'', as explained below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12796 +#: guix-git/doc/guix.texi:13119 msgid "The way package inputs are written is going through a transition (@pxref{package Reference}, for more on package inputs). Until version 1.3.0, package inputs were written using the ``old style'', where each input was given an explicit label, most of the time the package name:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12803 +#: guix-git/doc/guix.texi:13126 #, no-wrap msgid "" "(package\n" @@ -22741,12 +23289,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12807 +#: guix-git/doc/guix.texi:13130 msgid "Today, the old style is deprecated and the preferred style looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12813 +#: guix-git/doc/guix.texi:13136 #, no-wrap msgid "" "(package\n" @@ -22756,269 +23304,330 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12818 +#: guix-git/doc/guix.texi:13141 msgid "Likewise, uses of @code{alist-delete} and friends to manipulate inputs is now deprecated in favor of @code{modify-inputs} (@pxref{Defining Package Variants}, for more info on @code{modify-inputs})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12823 -msgid "In the vast majority of cases, this is a purely mechanical change on the surface syntax that does not even incur a package rebuild. Running @command{guix style} can do that for you, whether you're working on packages in Guix proper or in an external channel." +#: guix-git/doc/guix.texi:13146 +msgid "In the vast majority of cases, this is a purely mechanical change on the surface syntax that does not even incur a package rebuild. Running @command{guix style -S inputs} can do that for you, whether you're working on packages in Guix proper or in an external channel." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12828 +#: guix-git/doc/guix.texi:13151 #, no-wrap msgid "guix style [@var{options}] @var{package}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12834 -msgid "This causes @command{guix style} to analyze and rewrite the definition of @var{package}@dots{}. It does so in a conservative way: preserving comments and bailing out if it cannot make sense of the code that appears in an inputs field. The available options are listed below." +#: guix-git/doc/guix.texi:13158 +msgid "This causes @command{guix style} to analyze and rewrite the definition of @var{package}@dots{} or, when @var{package} is omitted, of @emph{all} the packages. The @option{--styling} or @option{-S} option allows you to select the style rule, the default rule being @code{format}---see below." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:13160 guix-git/doc/guix.texi:14479 +msgid "The available options are listed below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12839 +#: guix-git/doc/guix.texi:13165 msgid "Show source file locations that would be edited but do not modify them." msgstr "" +#. type: item +#: guix-git/doc/guix.texi:13166 +#, no-wrap +msgid "--styling=@var{rule}" +msgstr "" + +#. type: itemx +#: guix-git/doc/guix.texi:13167 +#, no-wrap +msgid "-S @var{rule}" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:13169 +msgid "Apply @var{rule}, one of the following styling rules:" +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:13171 +#, no-wrap +msgid "format" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:13176 +msgid "Format the given package definition(s)---this is the default styling rule. For example, a packager running Guix on a checkout (@pxref{Running Guix Before It Is Installed}) might want to reformat the definition of the Coreutils package like so:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:13179 +#, no-wrap +msgid "./pre-inst-env guix style coreutils\n" +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:13181 +#, no-wrap +msgid "inputs" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:13185 +msgid "Rewrite package inputs to the ``new style'', as described above. This is how you would rewrite inputs of package @code{whatnot} in your own channel:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:13188 +#, no-wrap +msgid "guix style -L ~/my/channel -S inputs whatnot\n" +msgstr "" + #. type: table -#: guix-git/doc/guix.texi:12848 +#: guix-git/doc/guix.texi:13194 +msgid "Rewriting is done in a conservative way: preserving comments and bailing out if it cannot make sense of the code that appears in an inputs field. The @option{--input-simplification} option described below provides fine-grain control over when inputs should be simplified." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:13204 msgid "Style the package @var{expr} evaluates to." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12853 +#: guix-git/doc/guix.texi:13209 #, no-wrap msgid "guix style -e '(@@ (gnu packages gcc) gcc-5)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12856 +#: guix-git/doc/guix.texi:13212 #, fuzzy #| msgid "Updating the Guix package definition." msgid "styles the @code{gcc-5} package definition." msgstr "Aggiornamento della definizione del pacchetto Guix." #. type: item -#: guix-git/doc/guix.texi:12857 +#: guix-git/doc/guix.texi:13213 #, no-wrap msgid "--input-simplification=@var{policy}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12861 -msgid "Specify the package input simplification policy for cases where an input label does not match the corresponding package name. @var{policy} may be one of the following:" +#: guix-git/doc/guix.texi:13218 +msgid "When using the @code{inputs} styling rule, with @samp{-S inputs}, this option specifies the package input simplification policy for cases where an input label does not match the corresponding package name. @var{policy} may be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12863 +#: guix-git/doc/guix.texi:13220 #, no-wrap msgid "silent" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12866 +#: guix-git/doc/guix.texi:13223 msgid "Simplify inputs only when the change is ``silent'', meaning that the package does not need to be rebuilt (its derivation is unchanged)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12867 +#: guix-git/doc/guix.texi:13224 #, no-wrap msgid "safe" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12870 +#: guix-git/doc/guix.texi:13227 msgid "Simplify inputs only when that is ``safe'' to do: the package might need to be rebuilt, but the change is known to have no observable effect." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12874 +#: guix-git/doc/guix.texi:13231 msgid "Simplify inputs even when input labels do not match package names, and even if that might have an observable effect." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12878 +#: guix-git/doc/guix.texi:13235 msgid "The default is @code{silent}, meaning that input simplifications do not trigger any package rebuild." msgstr "" #. type: section -#: guix-git/doc/guix.texi:12881 +#: guix-git/doc/guix.texi:13238 #, no-wrap msgid "Invoking @command{guix lint}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:12883 +#: guix-git/doc/guix.texi:13240 #, no-wrap msgid "guix lint" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12884 +#: guix-git/doc/guix.texi:13241 #, no-wrap msgid "package, checking for errors" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12890 +#: guix-git/doc/guix.texi:13247 msgid "The @command{guix lint} command is meant to help package developers avoid common errors and use a consistent style. It runs a number of checks on a given set of packages in order to find common mistakes in their definitions. Available @dfn{checkers} include (see @option{--list-checkers} for a complete list):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12896 +#: guix-git/doc/guix.texi:13253 msgid "Validate certain typographical and stylistic rules about package descriptions and synopses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12897 +#: guix-git/doc/guix.texi:13254 #, no-wrap msgid "inputs-should-be-native" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12899 +#: guix-git/doc/guix.texi:13256 msgid "Identify inputs that should most likely be native inputs." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12902 +#: guix-git/doc/guix.texi:13259 #, no-wrap msgid "mirror-url" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12903 +#: guix-git/doc/guix.texi:13260 #, no-wrap msgid "github-url" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12904 +#: guix-git/doc/guix.texi:13261 #, no-wrap msgid "source-file-name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12911 +#: guix-git/doc/guix.texi:13268 msgid "Probe @code{home-page} and @code{source} URLs and report those that are invalid. Suggest a @code{mirror://} URL when applicable. If the @code{source} URL redirects to a GitHub URL, recommend usage of the GitHub URL@. Check that the source file name is meaningful, e.g.@: is not just a version number or ``git-checkout'', without a declared @code{file-name} (@pxref{origin Reference})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12912 +#: guix-git/doc/guix.texi:13269 #, no-wrap msgid "source-unstable-tarball" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12916 +#: guix-git/doc/guix.texi:13273 msgid "Parse the @code{source} URL to determine if a tarball from GitHub is autogenerated or if it is a release tarball. Unfortunately GitHub's autogenerated tarballs are sometimes regenerated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12920 +#: guix-git/doc/guix.texi:13277 msgid "Check that the derivation of the given packages can be successfully computed for all the supported systems (@pxref{Derivations})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12921 +#: guix-git/doc/guix.texi:13278 #, no-wrap msgid "profile-collisions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12927 +#: guix-git/doc/guix.texi:13284 msgid "Check whether installing the given packages in a profile would lead to collisions. Collisions occur when several packages with the same name but a different version or a different store file name are propagated. @xref{package Reference, @code{propagated-inputs}}, for more information on propagated inputs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12928 +#: guix-git/doc/guix.texi:13285 #, no-wrap msgid "archival" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12929 +#: guix-git/doc/guix.texi:13286 #, no-wrap msgid "Software Heritage, source code archive" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12930 +#: guix-git/doc/guix.texi:13287 #, no-wrap msgid "archival of source code, Software Heritage" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12933 +#: guix-git/doc/guix.texi:13290 msgid "Checks whether the package's source code is archived at @uref{https://www.softwareheritage.org, Software Heritage}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12941 +#: guix-git/doc/guix.texi:13298 msgid "When the source code that is not archived comes from a version-control system (VCS)---e.g., it's obtained with @code{git-fetch}, send Software Heritage a ``save'' request so that it eventually archives it. This ensures that the source will remain available in the long term, and that Guix can fall back to Software Heritage should the source code disappear from its original host. The status of recent ``save'' requests can be @uref{https://archive.softwareheritage.org/save/#requests, viewed on-line}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12946 +#: guix-git/doc/guix.texi:13303 msgid "When source code is a tarball obtained with @code{url-fetch}, simply print a message when it is not archived. As of this writing, Software Heritage does not allow requests to save arbitrary tarballs; we are working on ways to ensure that non-VCS source code is also archived." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12952 +#: guix-git/doc/guix.texi:13309 msgid "Software Heritage @uref{https://archive.softwareheritage.org/api/#rate-limiting, limits the request rate per IP address}. When the limit is reached, @command{guix lint} prints a message and the @code{archival} checker stops doing anything until that limit has been reset." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12953 +#: guix-git/doc/guix.texi:13310 #, no-wrap msgid "cve" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12954 guix-git/doc/guix.texi:37946 +#: guix-git/doc/guix.texi:13311 guix-git/doc/guix.texi:38435 #, no-wrap msgid "security vulnerabilities" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12955 +#: guix-git/doc/guix.texi:13312 #, no-wrap msgid "CVE, Common Vulnerabilities and Exposures" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12960 +#: guix-git/doc/guix.texi:13317 msgid "Report known vulnerabilities found in the Common Vulnerabilities and Exposures (CVE) databases of the current and past year @uref{https://nvd.nist.gov/vuln/data-feeds, published by the US NIST}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12962 +#: guix-git/doc/guix.texi:13319 msgid "To view information about a particular vulnerability, visit pages such as:" msgstr "" #. type: indicateurl{#1} -#: guix-git/doc/guix.texi:12966 +#: guix-git/doc/guix.texi:13323 msgid "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-YYYY-ABCD" msgstr "" #. type: indicateurl{#1} -#: guix-git/doc/guix.texi:12968 +#: guix-git/doc/guix.texi:13325 msgid "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-YYYY-ABCD" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12973 +#: guix-git/doc/guix.texi:13330 msgid "where @code{CVE-YYYY-ABCD} is the CVE identifier---e.g., @code{CVE-2015-7554}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12978 +#: guix-git/doc/guix.texi:13335 msgid "Package developers can specify in package recipes the @uref{https://nvd.nist.gov/products/cpe,Common Platform Enumeration (CPE)} name and version of the package when they differ from the name or version that Guix uses, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12986 +#: guix-git/doc/guix.texi:13343 #, no-wrap msgid "" "(package\n" @@ -23030,12 +23639,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12993 +#: guix-git/doc/guix.texi:13350 msgid "Some entries in the CVE database do not specify which version of a package they apply to, and would thus ``stick around'' forever. Package developers who found CVE alerts and verified they can be ignored can declare them as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:13003 +#: guix-git/doc/guix.texi:13360 #, no-wrap msgid "" "(package\n" @@ -23049,124 +23658,124 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13005 +#: guix-git/doc/guix.texi:13362 #, no-wrap msgid "formatting" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13008 +#: guix-git/doc/guix.texi:13365 msgid "Warn about obvious source code formatting issues: trailing white space, use of tabulations, etc." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13009 +#: guix-git/doc/guix.texi:13366 #, no-wrap msgid "input-labels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13015 +#: guix-git/doc/guix.texi:13372 msgid "Report old-style input labels that do not match the name of the corresponding package. This aims to help migrate from the ``old input style''. @xref{package Reference}, for more information on package inputs and input styles. @xref{Invoking guix style}, on how to migrate to the new style." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13021 +#: guix-git/doc/guix.texi:13378 #, no-wrap msgid "guix lint @var{options} @var{package}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13025 +#: guix-git/doc/guix.texi:13382 msgid "If no package is given on the command line, then all packages are checked. The @var{options} may be zero or more of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13027 +#: guix-git/doc/guix.texi:13384 #, no-wrap msgid "--list-checkers" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13031 +#: guix-git/doc/guix.texi:13388 msgid "List and describe all the available checkers that will be run on packages and exit." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13032 +#: guix-git/doc/guix.texi:13389 #, no-wrap msgid "--checkers" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13033 +#: guix-git/doc/guix.texi:13390 #, no-wrap msgid "-c" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13036 +#: guix-git/doc/guix.texi:13393 msgid "Only enable the checkers specified in a comma-separated list using the names returned by @option{--list-checkers}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13037 +#: guix-git/doc/guix.texi:13394 #, no-wrap msgid "--exclude" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13041 +#: guix-git/doc/guix.texi:13398 msgid "Only disable the checkers specified in a comma-separated list using the names returned by @option{--list-checkers}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13042 +#: guix-git/doc/guix.texi:13399 #, no-wrap msgid "--no-network" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13045 +#: guix-git/doc/guix.texi:13402 msgid "Only enable the checkers that do not depend on Internet access." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13057 +#: guix-git/doc/guix.texi:13414 #, no-wrap msgid "Invoking @command{guix size}" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:13059 guix-git/doc/guix.texi:35624 +#: guix-git/doc/guix.texi:13416 guix-git/doc/guix.texi:36114 #, no-wrap msgid "size" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13060 +#: guix-git/doc/guix.texi:13417 #, no-wrap msgid "package size" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13062 +#: guix-git/doc/guix.texi:13419 #, no-wrap msgid "guix size" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13069 +#: guix-git/doc/guix.texi:13426 msgid "The @command{guix size} command helps package developers profile the disk usage of packages. It is easy to overlook the impact of an additional dependency added to a package, or the impact of using a single output for a package that could easily be split (@pxref{Packages with Multiple Outputs}). Such are the typical issues that @command{guix size} can highlight." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13074 +#: guix-git/doc/guix.texi:13431 msgid "The command can be passed one or more package specifications such as @code{gcc@@4.8} or @code{guile:debug}, or a file name in the store. Consider this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13087 +#: guix-git/doc/guix.texi:13444 #, no-wrap msgid "" "$ guix size coreutils\n" @@ -23183,54 +23792,54 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13093 +#: guix-git/doc/guix.texi:13450 msgid "The store items listed here constitute the @dfn{transitive closure} of Coreutils---i.e., Coreutils and all its dependencies, recursively---as would be returned by:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13096 +#: guix-git/doc/guix.texi:13453 #, no-wrap msgid "$ guix gc -R /gnu/store/@dots{}-coreutils-8.23\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13104 +#: guix-git/doc/guix.texi:13461 msgid "Here the output shows three columns next to store items. The first column, labeled ``total'', shows the size in mebibytes (MiB) of the closure of the store item---that is, its own size plus the size of all its dependencies. The next column, labeled ``self'', shows the size of the item itself. The last column shows the ratio of the size of the item itself to the space occupied by all the items listed here." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13110 +#: guix-git/doc/guix.texi:13467 msgid "In this example, we see that the closure of Coreutils weighs in at 79@tie{}MiB, most of which is taken by libc and GCC's run-time support libraries. (That libc and GCC's libraries represent a large fraction of the closure is not a problem @i{per se} because they are always available on the system anyway.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13113 +#: guix-git/doc/guix.texi:13470 msgid "Since the command also accepts store file names, assessing the size of a build result is straightforward:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13116 +#: guix-git/doc/guix.texi:13473 #, no-wrap msgid "guix size $(guix system build config.scm)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13126 +#: guix-git/doc/guix.texi:13483 msgid "When the package(s) passed to @command{guix size} are available in the store@footnote{More precisely, @command{guix size} looks for the @emph{ungrafted} variant of the given package(s), as returned by @code{guix build @var{package} --no-grafts}. @xref{Security Updates}, for information on grafts.}, @command{guix size} queries the daemon to determine its dependencies, and measures its size in the store, similar to @command{du -ms --apparent-size} (@pxref{du invocation,,, coreutils, GNU Coreutils})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13131 +#: guix-git/doc/guix.texi:13488 msgid "When the given packages are @emph{not} in the store, @command{guix size} reports information based on the available substitutes (@pxref{Substitutes}). This makes it possible it to profile disk usage of store items that are not even on disk, only available remotely." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13133 +#: guix-git/doc/guix.texi:13490 msgid "You can also specify several package names:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13143 +#: guix-git/doc/guix.texi:13500 #, no-wrap msgid "" "$ guix size coreutils grep sed bash\n" @@ -23244,365 +23853,365 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13149 +#: guix-git/doc/guix.texi:13506 msgid "In this example we see that the combination of the four packages takes 102.3@tie{}MiB in total, which is much less than the sum of each closure since they have a lot of dependencies in common." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13155 +#: guix-git/doc/guix.texi:13512 msgid "When looking at the profile returned by @command{guix size}, you may find yourself wondering why a given package shows up in the profile at all. To understand it, you can use @command{guix graph --path -t references} to display the shortest path between the two packages (@pxref{Invoking guix graph})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13157 +#: guix-git/doc/guix.texi:13514 msgid "The available options are:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13163 +#: guix-git/doc/guix.texi:13520 msgid "Use substitute information from @var{urls}. @xref{client-substitute-urls, the same option for @code{guix build}}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13164 +#: guix-git/doc/guix.texi:13521 #, no-wrap msgid "--sort=@var{key}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13166 +#: guix-git/doc/guix.texi:13523 msgid "Sort lines according to @var{key}, one of the following options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13168 +#: guix-git/doc/guix.texi:13525 #, no-wrap msgid "self" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13170 +#: guix-git/doc/guix.texi:13527 msgid "the size of each item (the default);" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13172 +#: guix-git/doc/guix.texi:13529 msgid "the total size of the item's closure." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13174 +#: guix-git/doc/guix.texi:13531 #, no-wrap msgid "--map-file=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13176 +#: guix-git/doc/guix.texi:13533 msgid "Write a graphical map of disk usage in PNG format to @var{file}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13178 +#: guix-git/doc/guix.texi:13535 msgid "For the example above, the map looks like this:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13181 +#: guix-git/doc/guix.texi:13538 msgid "@image{images/coreutils-size-map,5in,, map of Coreutils disk usage produced by @command{guix size}}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13186 +#: guix-git/doc/guix.texi:13543 msgid "This option requires that @uref{https://wingolog.org/software/guile-charting/, Guile-Charting} be installed and visible in Guile's module search path. When that is not the case, @command{guix size} fails as it tries to load it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13190 +#: guix-git/doc/guix.texi:13547 msgid "Consider packages for @var{system}---e.g., @code{x86_64-linux}." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13201 +#: guix-git/doc/guix.texi:13558 #, no-wrap msgid "Invoking @command{guix graph}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13203 +#: guix-git/doc/guix.texi:13560 #, no-wrap msgid "DAG" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13204 +#: guix-git/doc/guix.texi:13561 #, no-wrap msgid "guix graph" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13219 +#: guix-git/doc/guix.texi:13576 msgid "Packages and their dependencies form a @dfn{graph}, specifically a directed acyclic graph (DAG). It can quickly become difficult to have a mental model of the package DAG, so the @command{guix graph} command provides a visual representation of the DAG@. By default, @command{guix graph} emits a DAG representation in the input format of @uref{https://www.graphviz.org/, Graphviz}, so its output can be passed directly to the @command{dot} command of Graphviz. It can also emit an HTML page with embedded JavaScript code to display a ``chord diagram'' in a Web browser, using the @uref{https://d3js.org/, d3.js} library, or emit Cypher queries to construct a graph in a graph database supporting the @uref{https://www.opencypher.org/, openCypher} query language. With @option{--path}, it simply displays the shortest path between two packages. The general syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13222 +#: guix-git/doc/guix.texi:13579 #, no-wrap msgid "guix graph @var{options} @var{package}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13227 +#: guix-git/doc/guix.texi:13584 msgid "For example, the following command generates a PDF file representing the package DAG for the GNU@tie{}Core Utilities, showing its build-time dependencies:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13230 +#: guix-git/doc/guix.texi:13587 #, no-wrap msgid "guix graph coreutils | dot -Tpdf > dag.pdf\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13233 +#: guix-git/doc/guix.texi:13590 msgid "The output looks like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13235 +#: guix-git/doc/guix.texi:13592 msgid "@image{images/coreutils-graph,2in,,Dependency graph of the GNU Coreutils}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13237 +#: guix-git/doc/guix.texi:13594 msgid "Nice little graph, no?" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13240 +#: guix-git/doc/guix.texi:13597 msgid "You may find it more pleasant to navigate the graph interactively with @command{xdot} (from the @code{xdot} package):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13243 +#: guix-git/doc/guix.texi:13600 #, no-wrap msgid "guix graph coreutils | xdot -\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13250 +#: guix-git/doc/guix.texi:13607 msgid "But there is more than one graph! The one above is concise: it is the graph of package objects, omitting implicit inputs such as GCC, libc, grep, etc. It is often useful to have such a concise graph, but sometimes one may want to see more details. @command{guix graph} supports several types of graphs, allowing you to choose the level of detail:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13256 +#: guix-git/doc/guix.texi:13613 msgid "This is the default type used in the example above. It shows the DAG of package objects, excluding implicit dependencies. It is concise, but filters out many details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13257 +#: guix-git/doc/guix.texi:13614 #, no-wrap msgid "reverse-package" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13259 +#: guix-git/doc/guix.texi:13616 msgid "This shows the @emph{reverse} DAG of packages. For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13262 +#: guix-git/doc/guix.texi:13619 #, no-wrap msgid "guix graph --type=reverse-package ocaml\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13267 +#: guix-git/doc/guix.texi:13624 msgid "...@: yields the graph of packages that @emph{explicitly} depend on OCaml (if you are also interested in cases where OCaml is an implicit dependency, see @code{reverse-bag} below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13272 +#: guix-git/doc/guix.texi:13629 msgid "Note that for core packages this can yield huge graphs. If all you want is to know the number of packages that depend on a given package, use @command{guix refresh --list-dependent} (@pxref{Invoking guix refresh, @option{--list-dependent}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13273 +#: guix-git/doc/guix.texi:13630 #, no-wrap msgid "bag-emerged" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13275 +#: guix-git/doc/guix.texi:13632 msgid "This is the package DAG, @emph{including} implicit inputs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13277 +#: guix-git/doc/guix.texi:13634 msgid "For instance, the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13280 +#: guix-git/doc/guix.texi:13637 #, no-wrap msgid "guix graph --type=bag-emerged coreutils\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13283 +#: guix-git/doc/guix.texi:13640 msgid "...@: yields this bigger graph:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13285 +#: guix-git/doc/guix.texi:13642 msgid "@image{images/coreutils-bag-graph,,5in,Detailed dependency graph of the GNU Coreutils}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13288 +#: guix-git/doc/guix.texi:13645 msgid "At the bottom of the graph, we see all the implicit inputs of @var{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13292 +#: guix-git/doc/guix.texi:13649 msgid "Now, note that the dependencies of these implicit inputs---that is, the @dfn{bootstrap dependencies} (@pxref{Bootstrapping})---are not shown here, for conciseness." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13293 +#: guix-git/doc/guix.texi:13650 #, no-wrap msgid "bag" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13296 +#: guix-git/doc/guix.texi:13653 msgid "Similar to @code{bag-emerged}, but this time including all the bootstrap dependencies." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13297 +#: guix-git/doc/guix.texi:13654 #, no-wrap msgid "bag-with-origins" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13299 +#: guix-git/doc/guix.texi:13656 msgid "Similar to @code{bag}, but also showing origins and their dependencies." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13300 +#: guix-git/doc/guix.texi:13657 #, no-wrap msgid "reverse-bag" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13303 +#: guix-git/doc/guix.texi:13660 msgid "This shows the @emph{reverse} DAG of packages. Unlike @code{reverse-package}, it also takes implicit dependencies into account. For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13306 +#: guix-git/doc/guix.texi:13663 #, no-wrap msgid "guix graph -t reverse-bag dune\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13313 +#: guix-git/doc/guix.texi:13670 msgid "...@: yields the graph of all packages that depend on Dune, directly or indirectly. Since Dune is an @emph{implicit} dependency of many packages @i{via} @code{dune-build-system}, this shows a large number of packages, whereas @code{reverse-package} would show very few if any." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13319 +#: guix-git/doc/guix.texi:13676 msgid "This is the most detailed representation: It shows the DAG of derivations (@pxref{Derivations}) and plain store items. Compared to the above representation, many additional nodes are visible, including build scripts, patches, Guile modules, etc." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13322 +#: guix-git/doc/guix.texi:13679 msgid "For this type of graph, it is also possible to pass a @file{.drv} file name instead of a package name, as in:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13325 +#: guix-git/doc/guix.texi:13682 #, no-wrap msgid "guix graph -t derivation $(guix system build -d my-config.scm)\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13327 +#: guix-git/doc/guix.texi:13684 #, no-wrap msgid "module" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13331 +#: guix-git/doc/guix.texi:13688 msgid "This is the graph of @dfn{package modules} (@pxref{Package Modules}). For example, the following command shows the graph for the package module that defines the @code{guile} package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13334 +#: guix-git/doc/guix.texi:13691 #, no-wrap msgid "guix graph -t module guile | xdot -\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13339 +#: guix-git/doc/guix.texi:13696 msgid "All the types above correspond to @emph{build-time dependencies}. The following graph type represents the @emph{run-time dependencies}:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13344 +#: guix-git/doc/guix.texi:13701 msgid "This is the graph of @dfn{references} of a package output, as returned by @command{guix gc --references} (@pxref{Invoking guix gc})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13347 +#: guix-git/doc/guix.texi:13704 msgid "If the given package output is not available in the store, @command{guix graph} attempts to obtain dependency information from substitutes." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13351 +#: guix-git/doc/guix.texi:13708 msgid "Here you can also pass a store file name instead of a package name. For example, the command below produces the reference graph of your profile (which can be big!):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13354 +#: guix-git/doc/guix.texi:13711 #, no-wrap msgid "guix graph -t references $(readlink -f ~/.guix-profile)\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13356 +#: guix-git/doc/guix.texi:13713 #, no-wrap msgid "referrers" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13359 +#: guix-git/doc/guix.texi:13716 msgid "This is the graph of the @dfn{referrers} of a store item, as returned by @command{guix gc --referrers} (@pxref{Invoking guix gc})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13365 +#: guix-git/doc/guix.texi:13722 msgid "This relies exclusively on local information from your store. For instance, let us suppose that the current Inkscape is available in 10 profiles on your machine; @command{guix graph -t referrers inkscape} will show a graph rooted at Inkscape and with those 10 profiles linked to it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13368 +#: guix-git/doc/guix.texi:13725 msgid "It can help determine what is preventing a store item from being garbage collected." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13371 +#: guix-git/doc/guix.texi:13728 #, no-wrap msgid "shortest path, between packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13378 +#: guix-git/doc/guix.texi:13735 msgid "Often, the graph of the package you are interested in does not fit on your screen, and anyway all you want to know is @emph{why} that package actually depends on some seemingly unrelated package. The @option{--path} option instructs @command{guix graph} to display the shortest path between two packages (or derivations, or store items, etc.):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13392 +#: guix-git/doc/guix.texi:13749 #, no-wrap msgid "" "$ guix graph --path emacs libunistring\n" @@ -23620,88 +24229,88 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13400 +#: guix-git/doc/guix.texi:13757 msgid "Sometimes you still want to visualize the graph but would like to trim it so it can actually be displayed. One way to do it is via the @option{--max-depth} (or @option{-M}) option, which lets you specify the maximum depth of the graph. In the example below, we visualize only @code{libreoffice} and the nodes whose distance to @code{libreoffice} is at most 2:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13403 +#: guix-git/doc/guix.texi:13760 #, no-wrap msgid "guix graph -M 2 libreoffice | xdot -f fdp -\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13407 +#: guix-git/doc/guix.texi:13764 msgid "Mind you, that's still a big ball of spaghetti, but at least @command{dot} can render it quickly and it can be browsed somewhat." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13409 +#: guix-git/doc/guix.texi:13766 msgid "The available options are the following:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13415 +#: guix-git/doc/guix.texi:13772 msgid "Produce a graph output of @var{type}, where @var{type} must be one of the values listed above." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13416 +#: guix-git/doc/guix.texi:13773 #, no-wrap msgid "--list-types" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13418 +#: guix-git/doc/guix.texi:13775 msgid "List the supported graph types." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13419 +#: guix-git/doc/guix.texi:13776 #, no-wrap msgid "--backend=@var{backend}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13420 +#: guix-git/doc/guix.texi:13777 #, no-wrap msgid "-b @var{backend}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13422 +#: guix-git/doc/guix.texi:13779 msgid "Produce a graph using the selected @var{backend}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13423 +#: guix-git/doc/guix.texi:13780 #, no-wrap msgid "--list-backends" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13425 +#: guix-git/doc/guix.texi:13782 msgid "List the supported graph backends." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13427 +#: guix-git/doc/guix.texi:13784 msgid "Currently, the available backends are Graphviz and d3.js." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13428 +#: guix-git/doc/guix.texi:13785 #, no-wrap msgid "--path" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13433 +#: guix-git/doc/guix.texi:13790 msgid "Display the shortest path between two nodes of the type specified by @option{--type}. The example below shows the shortest path between @code{libreoffice} and @code{llvm} according to the references of @code{libreoffice}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13440 +#: guix-git/doc/guix.texi:13797 #, no-wrap msgid "" "$ guix graph --path -t references libreoffice llvm\n" @@ -23712,398 +24321,398 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13450 +#: guix-git/doc/guix.texi:13807 #, no-wrap msgid "guix graph -e '(@@@@ (gnu packages commencement) gnu-make-final)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13455 +#: guix-git/doc/guix.texi:13812 msgid "Display the graph for @var{system}---e.g., @code{i686-linux}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13458 +#: guix-git/doc/guix.texi:13815 msgid "The package dependency graph is largely architecture-independent, but there are some architecture-dependent bits that this option allows you to visualize." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13474 +#: guix-git/doc/guix.texi:13831 msgid "On top of that, @command{guix graph} supports all the usual package transformation options (@pxref{Package Transformation Options}). This makes it easy to view the effect of a graph-rewriting transformation such as @option{--with-input}. For example, the command below outputs the graph of @code{git} once @code{openssl} has been replaced by @code{libressl} everywhere in the graph:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13477 +#: guix-git/doc/guix.texi:13834 #, no-wrap msgid "guix graph git --with-input=openssl=libressl\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13480 +#: guix-git/doc/guix.texi:13837 msgid "So many possibilities, so much fun!" msgstr "" #. type: section -#: guix-git/doc/guix.texi:13482 +#: guix-git/doc/guix.texi:13839 #, no-wrap msgid "Invoking @command{guix publish}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13484 +#: guix-git/doc/guix.texi:13841 #, no-wrap msgid "guix publish" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13488 +#: guix-git/doc/guix.texi:13845 msgid "The purpose of @command{guix publish} is to enable users to easily share their store with others, who can then use it as a substitute server (@pxref{Substitutes})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13494 +#: guix-git/doc/guix.texi:13851 msgid "When @command{guix publish} runs, it spawns an HTTP server which allows anyone with network access to obtain substitutes from it. This means that any machine running Guix can also act as if it were a build farm, since the HTTP interface is compatible with Cuirass, the software behind the @code{@value{SUBSTITUTE-SERVER-1}} build farm." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13500 +#: guix-git/doc/guix.texi:13857 msgid "For security, each substitute is signed, allowing recipients to check their authenticity and integrity (@pxref{Substitutes}). Because @command{guix publish} uses the signing key of the system, which is only readable by the system administrator, it must be started as root; the @option{--user} option makes it drop root privileges early on." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13504 +#: guix-git/doc/guix.texi:13861 msgid "The signing key pair must be generated before @command{guix publish} is launched, using @command{guix archive --generate-key} (@pxref{Invoking guix archive})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13509 +#: guix-git/doc/guix.texi:13866 msgid "When the @option{--advertise} option is passed, the server advertises its availability on the local network using multicast DNS (mDNS) and DNS service discovery (DNS-SD), currently @i{via} Guile-Avahi (@pxref{Top,,, guile-avahi, Using Avahi in Guile Scheme Programs})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13514 +#: guix-git/doc/guix.texi:13871 #, no-wrap msgid "guix publish @var{options}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13518 +#: guix-git/doc/guix.texi:13875 msgid "Running @command{guix publish} without any additional arguments will spawn an HTTP server on port 8080:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13521 +#: guix-git/doc/guix.texi:13878 #, no-wrap msgid "guix publish\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13525 +#: guix-git/doc/guix.texi:13882 msgid "Once a publishing server has been authorized, the daemon may download substitutes from it. @xref{Getting Substitutes from Other Servers}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13533 +#: guix-git/doc/guix.texi:13890 msgid "By default, @command{guix publish} compresses archives on the fly as it serves them. This ``on-the-fly'' mode is convenient in that it requires no setup and is immediately available. However, when serving lots of clients, we recommend using the @option{--cache} option, which enables caching of the archives before they are sent to clients---see below for details. The @command{guix weather} command provides a handy way to check what a server provides (@pxref{Invoking guix weather})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13540 +#: guix-git/doc/guix.texi:13897 msgid "As a bonus, @command{guix publish} also serves as a content-addressed mirror for source files referenced in @code{origin} records (@pxref{origin Reference}). For instance, assuming @command{guix publish} is running on @code{example.org}, the following URL returns the raw @file{hello-2.10.tar.gz} file with the given SHA256 hash (represented in @code{nix-base32} format, @pxref{Invoking guix hash}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13543 +#: guix-git/doc/guix.texi:13900 #, no-wrap msgid "http://example.org/file/hello-2.10.tar.gz/sha256/0ssi1@dots{}ndq1i\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13547 +#: guix-git/doc/guix.texi:13904 msgid "Obviously, these URLs only work for files that are in the store; in other cases, they return 404 (``Not Found'')." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13548 +#: guix-git/doc/guix.texi:13905 #, no-wrap msgid "build logs, publication" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13550 +#: guix-git/doc/guix.texi:13907 msgid "Build logs are available from @code{/log} URLs like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13553 +#: guix-git/doc/guix.texi:13910 #, no-wrap msgid "http://example.org/log/gwspk@dots{}-guile-2.2.3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13563 +#: guix-git/doc/guix.texi:13920 msgid "When @command{guix-daemon} is configured to save compressed build logs, as is the case by default (@pxref{Invoking guix-daemon}), @code{/log} URLs return the compressed log as-is, with an appropriate @code{Content-Type} and/or @code{Content-Encoding} header. We recommend running @command{guix-daemon} with @option{--log-compression=gzip} since Web browsers can automatically decompress it, which is not the case with Bzip2 compression." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13567 +#: guix-git/doc/guix.texi:13924 #, no-wrap msgid "--port=@var{port}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13568 +#: guix-git/doc/guix.texi:13925 #, no-wrap msgid "-p @var{port}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13570 +#: guix-git/doc/guix.texi:13927 msgid "Listen for HTTP requests on @var{port}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13571 +#: guix-git/doc/guix.texi:13928 #, no-wrap msgid "--listen=@var{host}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13574 +#: guix-git/doc/guix.texi:13931 msgid "Listen on the network interface for @var{host}. The default is to accept connections from any interface." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13579 +#: guix-git/doc/guix.texi:13936 msgid "Change privileges to @var{user} as soon as possible---i.e., once the server socket is open and the signing key has been read." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13580 +#: guix-git/doc/guix.texi:13937 #, no-wrap msgid "--compression[=@var{method}[:@var{level}]]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13581 +#: guix-git/doc/guix.texi:13938 #, no-wrap msgid "-C [@var{method}[:@var{level}]]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13585 +#: guix-git/doc/guix.texi:13942 msgid "Compress data using the given @var{method} and @var{level}. @var{method} is one of @code{lzip}, @code{zstd}, and @code{gzip}; when @var{method} is omitted, @code{gzip} is used." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13589 +#: guix-git/doc/guix.texi:13946 msgid "When @var{level} is zero, disable compression. The range 1 to 9 corresponds to different compression levels: 1 is the fastest, and 9 is the best (CPU-intensive). The default is 3." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13596 +#: guix-git/doc/guix.texi:13953 msgid "Usually, @code{lzip} compresses noticeably better than @code{gzip} for a small increase in CPU usage; see @uref{https://nongnu.org/lzip/lzip_benchmark.html,benchmarks on the lzip Web page}. However, @code{lzip} achieves low decompression throughput (on the order of 50@tie{}MiB/s on modern hardware), which can be a bottleneck for someone who downloads over a fast network connection." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13600 +#: guix-git/doc/guix.texi:13957 msgid "The compression ratio of @code{zstd} is between that of @code{lzip} and that of @code{gzip}; its main advantage is a @uref{https://facebook.github.io/zstd/,high decompression speed}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13609 +#: guix-git/doc/guix.texi:13966 msgid "Unless @option{--cache} is used, compression occurs on the fly and the compressed streams are not cached. Thus, to reduce load on the machine that runs @command{guix publish}, it may be a good idea to choose a low compression level, to run @command{guix publish} behind a caching proxy, or to use @option{--cache}. Using @option{--cache} has the advantage that it allows @command{guix publish} to add @code{Content-Length} HTTP header to its responses." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13614 +#: guix-git/doc/guix.texi:13971 msgid "This option can be repeated, in which case every substitute gets compressed using all the selected methods, and all of them are advertised. This is useful when users may not support all the compression methods: they can select the one they support." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13615 +#: guix-git/doc/guix.texi:13972 #, no-wrap msgid "--cache=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13616 +#: guix-git/doc/guix.texi:13973 #, no-wrap msgid "-c @var{directory}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13619 +#: guix-git/doc/guix.texi:13976 msgid "Cache archives and meta-data (@code{.narinfo} URLs) to @var{directory} and only serve archives that are in cache." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13627 +#: guix-git/doc/guix.texi:13984 msgid "When this option is omitted, archives and meta-data are created on-the-fly. This can reduce the available bandwidth, especially when compression is enabled, since this may become CPU-bound. Another drawback of the default mode is that the length of archives is not known in advance, so @command{guix publish} does not add a @code{Content-Length} HTTP header to its responses, which in turn prevents clients from knowing the amount of data being downloaded." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13635 +#: guix-git/doc/guix.texi:13992 msgid "Conversely, when @option{--cache} is used, the first request for a store item (@i{via} a @code{.narinfo} URL) triggers a background process to @dfn{bake} the archive---computing its @code{.narinfo} and compressing the archive, if needed. Once the archive is cached in @var{directory}, subsequent requests succeed and are served directly from the cache, which guarantees that clients get the best possible bandwidth." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13642 +#: guix-git/doc/guix.texi:13999 msgid "That first @code{.narinfo} request nonetheless returns 200, provided the requested store item is ``small enough'', below the cache bypass threshold---see @option{--cache-bypass-threshold} below. That way, clients do not have to wait until the archive is baked. For larger store items, the first @code{.narinfo} request returns 404, meaning that clients have to wait until the archive is baked." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13646 +#: guix-git/doc/guix.texi:14003 msgid "The ``baking'' process is performed by worker threads. By default, one thread per CPU core is created, but this can be customized. See @option{--workers} below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13649 +#: guix-git/doc/guix.texi:14006 msgid "When @option{--ttl} is used, cached entries are automatically deleted when they have expired." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13650 +#: guix-git/doc/guix.texi:14007 #, no-wrap msgid "--workers=@var{N}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13653 +#: guix-git/doc/guix.texi:14010 msgid "When @option{--cache} is used, request the allocation of @var{N} worker threads to ``bake'' archives." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13654 +#: guix-git/doc/guix.texi:14011 #, no-wrap msgid "--ttl=@var{ttl}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13658 +#: guix-git/doc/guix.texi:14015 msgid "Produce @code{Cache-Control} HTTP headers that advertise a time-to-live (TTL) of @var{ttl}. @var{ttl} must denote a duration: @code{5d} means 5 days, @code{1m} means 1 month, and so on." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13663 +#: guix-git/doc/guix.texi:14020 msgid "This allows the user's Guix to keep substitute information in cache for @var{ttl}. However, note that @code{guix publish} does not itself guarantee that the store items it provides will indeed remain available for as long as @var{ttl}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13667 +#: guix-git/doc/guix.texi:14024 msgid "Additionally, when @option{--cache} is used, cached entries that have not been accessed for @var{ttl} and that no longer have a corresponding item in the store, may be deleted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13668 +#: guix-git/doc/guix.texi:14025 #, no-wrap msgid "--negative-ttl=@var{ttl}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13673 +#: guix-git/doc/guix.texi:14030 msgid "Similarly produce @code{Cache-Control} HTTP headers to advertise the time-to-live (TTL) of @emph{negative} lookups---missing store items, for which the HTTP 404 code is returned. By default, no negative TTL is advertised." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13677 +#: guix-git/doc/guix.texi:14034 msgid "This parameter can help adjust server load and substitute latency by instructing cooperating clients to be more or less patient when a store item is missing." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13678 +#: guix-git/doc/guix.texi:14035 #, no-wrap msgid "--cache-bypass-threshold=@var{size}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13683 +#: guix-git/doc/guix.texi:14040 msgid "When used in conjunction with @option{--cache}, store items smaller than @var{size} are immediately available, even when they are not yet in cache. @var{size} is a size in bytes, or it can be suffixed by @code{M} for megabytes and so on. The default is @code{10M}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13688 +#: guix-git/doc/guix.texi:14045 msgid "``Cache bypass'' allows you to reduce the publication delay for clients at the expense of possibly additional I/O and CPU use on the server side: depending on the client access patterns, those store items can end up being baked several times until a copy is available in cache." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13692 +#: guix-git/doc/guix.texi:14049 msgid "Increasing the threshold may be useful for sites that have few users, or to guarantee that users get substitutes even for store items that are not popular." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13693 +#: guix-git/doc/guix.texi:14050 #, no-wrap msgid "--nar-path=@var{path}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13696 +#: guix-git/doc/guix.texi:14053 msgid "Use @var{path} as the prefix for the URLs of ``nar'' files (@pxref{Invoking guix archive, normalized archives})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13700 +#: guix-git/doc/guix.texi:14057 msgid "By default, nars are served at a URL such as @code{/nar/gzip/@dots{}-coreutils-8.25}. This option allows you to change the @code{/nar} part to @var{path}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13701 +#: guix-git/doc/guix.texi:14058 #, no-wrap msgid "--public-key=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13702 +#: guix-git/doc/guix.texi:14059 #, no-wrap msgid "--private-key=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13705 guix-git/doc/guix.texi:29141 -#: guix-git/doc/guix.texi:29178 +#: guix-git/doc/guix.texi:14062 guix-git/doc/guix.texi:29478 +#: guix-git/doc/guix.texi:29515 msgid "Use the specific @var{file}s as the public/private key pair used to sign the store items being published." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13712 +#: guix-git/doc/guix.texi:14069 msgid "The files must correspond to the same key pair (the private key is used for signing and the public key is merely advertised in the signature metadata). They must contain keys in the canonical s-expression format as produced by @command{guix archive --generate-key} (@pxref{Invoking guix archive}). By default, @file{/etc/guix/signing-key.pub} and @file{/etc/guix/signing-key.sec} are used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13713 +#: guix-git/doc/guix.texi:14070 #, no-wrap msgid "--repl[=@var{port}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13714 +#: guix-git/doc/guix.texi:14071 #, no-wrap msgid "-r [@var{port}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13718 +#: guix-git/doc/guix.texi:14075 msgid "Spawn a Guile REPL server (@pxref{REPL Servers,,, guile, GNU Guile Reference Manual}) on @var{port} (37146 by default). This is used primarily for debugging a running @command{guix publish} server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13724 +#: guix-git/doc/guix.texi:14081 msgid "Enabling @command{guix publish} on Guix System is a one-liner: just instantiate a @code{guix-publish-service-type} service in the @code{services} field of the @code{operating-system} declaration (@pxref{guix-publish-service-type, @code{guix-publish-service-type}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13727 +#: guix-git/doc/guix.texi:14084 msgid "If you are instead running Guix on a ``foreign distro'', follow these instructions:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:13731 +#: guix-git/doc/guix.texi:14088 msgid "If your host distro uses the systemd init system:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13736 +#: guix-git/doc/guix.texi:14093 #, no-wrap msgid "" "# ln -s ~root/.guix-profile/lib/systemd/system/guix-publish.service \\\n" @@ -24112,7 +24721,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13744 +#: guix-git/doc/guix.texi:14101 #, no-wrap msgid "" "# ln -s ~root/.guix-profile/lib/upstart/system/guix-publish.conf /etc/init/\n" @@ -24120,56 +24729,56 @@ msgid "" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:13748 +#: guix-git/doc/guix.texi:14105 msgid "Otherwise, proceed similarly with your distro's init system." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13751 +#: guix-git/doc/guix.texi:14108 #, no-wrap msgid "Invoking @command{guix challenge}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13754 +#: guix-git/doc/guix.texi:14111 #, no-wrap msgid "verifiable builds" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13755 +#: guix-git/doc/guix.texi:14112 #, no-wrap msgid "guix challenge" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13756 +#: guix-git/doc/guix.texi:14113 #, no-wrap msgid "challenge" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13761 +#: guix-git/doc/guix.texi:14118 msgid "Do the binaries provided by this server really correspond to the source code it claims to build? Is a package build process deterministic? These are the questions the @command{guix challenge} command attempts to answer." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13769 +#: guix-git/doc/guix.texi:14126 msgid "The former is obviously an important question: Before using a substitute server (@pxref{Substitutes}), one had better @emph{verify} that it provides the right binaries, and thus @emph{challenge} it. The latter is what enables the former: If package builds are deterministic, then independent builds of the package should yield the exact same result, bit for bit; if a server provides a binary different from the one obtained locally, it may be either corrupt or malicious." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13778 +#: guix-git/doc/guix.texi:14135 msgid "We know that the hash that shows up in @file{/gnu/store} file names is the hash of all the inputs of the process that built the file or directory---compilers, libraries, build scripts, etc. (@pxref{Introduction}). Assuming deterministic build processes, one store file name should map to exactly one build output. @command{guix challenge} checks whether there is, indeed, a single mapping by comparing the build outputs of several independent builds of any given store item." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13780 +#: guix-git/doc/guix.texi:14137 msgid "The command output looks like this:" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13792 +#: guix-git/doc/guix.texi:14149 #, no-wrap msgid "" "$ guix challenge --substitute-urls=\"https://@value{SUBSTITUTE-SERVER-1} https://guix.example.org\"\n" @@ -24186,7 +24795,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13799 +#: guix-git/doc/guix.texi:14156 #, no-wrap msgid "" "/gnu/store/@dots{}-git-2.5.0 contents differ:\n" @@ -24199,7 +24808,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13806 +#: guix-git/doc/guix.texi:14163 #, no-wrap msgid "" "/gnu/store/@dots{}-pius-2.1.1 contents differ:\n" @@ -24212,7 +24821,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13808 +#: guix-git/doc/guix.texi:14165 #, no-wrap msgid "" "@dots{}\n" @@ -24220,7 +24829,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13813 +#: guix-git/doc/guix.texi:14170 #, no-wrap msgid "" "6,406 store items were analyzed:\n" @@ -24230,28 +24839,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13821 +#: guix-git/doc/guix.texi:14178 msgid "In this example, @command{guix challenge} first scans the store to determine the set of locally-built derivations---as opposed to store items that were downloaded from a substitute server---and then queries all the substitute servers. It then reports those store items for which the servers obtained a result different from the local build." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13822 +#: guix-git/doc/guix.texi:14179 #, no-wrap msgid "non-determinism, in package builds" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13833 +#: guix-git/doc/guix.texi:14190 msgid "As an example, @code{guix.example.org} always gets a different answer. Conversely, @code{@value{SUBSTITUTE-SERVER-1}} agrees with local builds, except in the case of Git. This might indicate that the build process of Git is non-deterministic, meaning that its output varies as a function of various things that Guix does not fully control, in spite of building packages in isolated environments (@pxref{Features}). Most common sources of non-determinism include the addition of timestamps in build results, the inclusion of random numbers, and directory listings sorted by inode number. See @uref{https://reproducible-builds.org/docs/}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13836 +#: guix-git/doc/guix.texi:14193 msgid "To find out what is wrong with this Git binary, the easiest approach is to run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13841 +#: guix-git/doc/guix.texi:14198 #, no-wrap msgid "" "guix challenge git \\\n" @@ -24260,17 +24869,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13845 +#: guix-git/doc/guix.texi:14202 msgid "This automatically invokes @command{diffoscope}, which displays detailed information about files that differ." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13848 +#: guix-git/doc/guix.texi:14205 msgid "Alternatively, we can do something along these lines (@pxref{Invoking guix archive}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13853 +#: guix-git/doc/guix.texi:14210 #, no-wrap msgid "" "$ wget -q -O - https://@value{SUBSTITUTE-SERVER-1}/nar/lzip/@dots{}-git-2.5.0 \\\n" @@ -24279,160 +24888,160 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13862 +#: guix-git/doc/guix.texi:14219 msgid "This command shows the difference between the files resulting from the local build, and the files resulting from the build on @code{@value{SUBSTITUTE-SERVER-1}} (@pxref{Overview, Comparing and Merging Files,, diffutils, Comparing and Merging Files}). The @command{diff} command works great for text files. When binary files differ, a better option is @uref{https://diffoscope.org/, Diffoscope}, a tool that helps visualize differences for all kinds of files." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13870 +#: guix-git/doc/guix.texi:14227 msgid "Once you have done that work, you can tell whether the differences are due to a non-deterministic build process or to a malicious server. We try hard to remove sources of non-determinism in packages to make it easier to verify substitutes, but of course, this is a process that involves not just Guix, but a large part of the free software community. In the meantime, @command{guix challenge} is one tool to help address the problem." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13874 +#: guix-git/doc/guix.texi:14231 msgid "If you are writing packages for Guix, you are encouraged to check whether @code{@value{SUBSTITUTE-SERVER-1}} and other substitute servers obtain the same build result as you did with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13877 +#: guix-git/doc/guix.texi:14234 #, no-wrap msgid "$ guix challenge @var{package}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13882 +#: guix-git/doc/guix.texi:14239 msgid "where @var{package} is a package specification such as @code{guile@@2.0} or @code{glibc:debug}." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13887 +#: guix-git/doc/guix.texi:14244 #, no-wrap msgid "guix challenge @var{options} [@var{packages}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13894 +#: guix-git/doc/guix.texi:14251 msgid "When a difference is found between the hash of a locally-built item and that of a server-provided substitute, or among substitutes provided by different servers, the command displays it as in the example above and its exit code is 2 (other non-zero exit codes denote other kinds of errors)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13896 +#: guix-git/doc/guix.texi:14253 msgid "The one option that matters is:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13902 +#: guix-git/doc/guix.texi:14259 msgid "Consider @var{urls} the whitespace-separated list of substitute source URLs to compare to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13903 +#: guix-git/doc/guix.texi:14260 #, no-wrap msgid "--diff=@var{mode}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13905 +#: guix-git/doc/guix.texi:14262 msgid "Upon mismatches, show differences according to @var{mode}, one of:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13907 +#: guix-git/doc/guix.texi:14264 #, no-wrap msgid "@code{simple} (the default)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13909 +#: guix-git/doc/guix.texi:14266 msgid "Show the list of files that differ." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:13910 +#: guix-git/doc/guix.texi:14267 #, no-wrap msgid "diffoscope" msgstr "" #. type: var{#1} -#: guix-git/doc/guix.texi:13911 +#: guix-git/doc/guix.texi:14268 #, no-wrap msgid "command" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13914 +#: guix-git/doc/guix.texi:14271 msgid "Invoke @uref{https://diffoscope.org/, Diffoscope}, passing it two directories whose contents do not match." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13917 +#: guix-git/doc/guix.texi:14274 msgid "When @var{command} is an absolute file name, run @var{command} instead of Diffoscope." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13920 +#: guix-git/doc/guix.texi:14277 msgid "Do not show further details about the differences." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13925 +#: guix-git/doc/guix.texi:14282 msgid "Thus, unless @option{--diff=none} is passed, @command{guix challenge} downloads the store items from the given substitute servers so that it can compare them." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13926 +#: guix-git/doc/guix.texi:14283 #, no-wrap msgid "--verbose" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13927 +#: guix-git/doc/guix.texi:14284 #, no-wrap msgid "-v" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13930 +#: guix-git/doc/guix.texi:14287 msgid "Show details about matches (identical contents) in addition to information about mismatches." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13934 +#: guix-git/doc/guix.texi:14291 #, no-wrap msgid "Invoking @command{guix copy}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13936 +#: guix-git/doc/guix.texi:14293 #, no-wrap msgid "copy, of store items, over SSH" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13937 +#: guix-git/doc/guix.texi:14294 #, no-wrap msgid "SSH, copy of store items" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13938 +#: guix-git/doc/guix.texi:14295 #, no-wrap msgid "sharing store items across machines" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13939 +#: guix-git/doc/guix.texi:14296 #, no-wrap msgid "transferring store items across machines" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13946 +#: guix-git/doc/guix.texi:14303 msgid "The @command{guix copy} command copies items from the store of one machine to that of another machine over a secure shell (SSH) connection@footnote{This command is available only when Guile-SSH was found. @xref{Requirements}, for details.}. For example, the following command copies the @code{coreutils} package, the user's profile, and all their dependencies over to @var{host}, logged in as @var{user}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13950 +#: guix-git/doc/guix.texi:14307 #, no-wrap msgid "" "guix copy --to=@var{user}@@@var{host} \\\n" @@ -24440,192 +25049,192 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13954 +#: guix-git/doc/guix.texi:14311 msgid "If some of the items to be copied are already present on @var{host}, they are not actually sent." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13957 +#: guix-git/doc/guix.texi:14314 msgid "The command below retrieves @code{libreoffice} and @code{gimp} from @var{host}, assuming they are available there:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13960 +#: guix-git/doc/guix.texi:14317 #, no-wrap msgid "guix copy --from=@var{host} libreoffice gimp\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13965 +#: guix-git/doc/guix.texi:14322 msgid "The SSH connection is established using the Guile-SSH client, which is compatible with OpenSSH: it honors @file{~/.ssh/known_hosts} and @file{~/.ssh/config}, and uses the SSH agent for authentication." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13971 +#: guix-git/doc/guix.texi:14328 msgid "The key used to sign items that are sent must be accepted by the remote machine. Likewise, the key used by the remote machine to sign items you are retrieving must be in @file{/etc/guix/acl} so it is accepted by your own daemon. @xref{Invoking guix archive}, for more information about store item authentication." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13976 +#: guix-git/doc/guix.texi:14333 #, no-wrap msgid "guix copy [--to=@var{spec}|--from=@var{spec}] @var{items}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13979 +#: guix-git/doc/guix.texi:14336 msgid "You must always specify one of the following options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13981 +#: guix-git/doc/guix.texi:14338 #, no-wrap msgid "--to=@var{spec}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13982 +#: guix-git/doc/guix.texi:14339 #, no-wrap msgid "--from=@var{spec}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13986 +#: guix-git/doc/guix.texi:14343 msgid "Specify the host to send to or receive from. @var{spec} must be an SSH spec such as @code{example.org}, @code{charlie@@example.org}, or @code{charlie@@example.org:2222}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13990 +#: guix-git/doc/guix.texi:14347 msgid "The @var{items} can be either package names, such as @code{gimp}, or store items, such as @file{/gnu/store/@dots{}-idutils-4.6}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13994 +#: guix-git/doc/guix.texi:14351 msgid "When specifying the name of a package to send, it is first built if needed, unless @option{--dry-run} was specified. Common build options are supported (@pxref{Common Build Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13997 +#: guix-git/doc/guix.texi:14354 #, no-wrap msgid "Invoking @command{guix container}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13999 +#: guix-git/doc/guix.texi:14356 #, no-wrap msgid "guix container" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:14003 +#: guix-git/doc/guix.texi:14360 msgid "As of version @value{VERSION}, this tool is experimental. The interface is subject to radical change in the future." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14010 +#: guix-git/doc/guix.texi:14367 msgid "The purpose of @command{guix container} is to manipulate processes running within an isolated environment, commonly known as a ``container'', typically created by the @command{guix shell} (@pxref{Invoking guix shell}) and @command{guix system container} (@pxref{Invoking guix system}) commands." msgstr "" #. type: example -#: guix-git/doc/guix.texi:14015 +#: guix-git/doc/guix.texi:14372 #, no-wrap msgid "guix container @var{action} @var{options}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14019 +#: guix-git/doc/guix.texi:14376 msgid "@var{action} specifies the operation to perform with a container, and @var{options} specifies the context-specific arguments for the action." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14021 +#: guix-git/doc/guix.texi:14378 msgid "The following actions are available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14023 +#: guix-git/doc/guix.texi:14380 #, no-wrap msgid "exec" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14025 +#: guix-git/doc/guix.texi:14382 msgid "Execute a command within the context of a running container." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14027 +#: guix-git/doc/guix.texi:14384 msgid "The syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14030 +#: guix-git/doc/guix.texi:14387 #, no-wrap msgid "guix container exec @var{pid} @var{program} @var{arguments}@dots{}\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14036 +#: guix-git/doc/guix.texi:14393 msgid "@var{pid} specifies the process ID of the running container. @var{program} specifies an executable file name within the root file system of the container. @var{arguments} are the additional options that will be passed to @var{program}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14040 +#: guix-git/doc/guix.texi:14397 msgid "The following command launches an interactive login shell inside a Guix system container, started by @command{guix system container}, and whose process ID is 9001:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14043 +#: guix-git/doc/guix.texi:14400 #, no-wrap msgid "guix container exec 9001 /run/current-system/profile/bin/bash --login\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14047 +#: guix-git/doc/guix.texi:14404 msgid "Note that the @var{pid} cannot be the parent process of a container. It must be PID 1 of the container or one of its child processes." msgstr "" #. type: section -#: guix-git/doc/guix.texi:14051 +#: guix-git/doc/guix.texi:14408 #, no-wrap msgid "Invoking @command{guix weather}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14060 +#: guix-git/doc/guix.texi:14417 msgid "Occasionally you're grumpy because substitutes are lacking and you end up building packages by yourself (@pxref{Substitutes}). The @command{guix weather} command reports on substitute availability on the specified servers so you can have an idea of whether you'll be grumpy today. It can sometimes be useful info as a user, but it is primarily useful to people running @command{guix publish} (@pxref{Invoking guix publish})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14061 +#: guix-git/doc/guix.texi:14418 #, no-wrap msgid "statistics, for substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14062 +#: guix-git/doc/guix.texi:14419 #, no-wrap msgid "availability of substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14063 +#: guix-git/doc/guix.texi:14420 #, no-wrap msgid "substitute availability" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14064 +#: guix-git/doc/guix.texi:14421 #, no-wrap msgid "weather, substitute availability" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14066 +#: guix-git/doc/guix.texi:14423 msgid "Here's a sample run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14078 +#: guix-git/doc/guix.texi:14435 #, no-wrap msgid "" "$ guix weather --substitute-urls=https://guix.example.org\n" @@ -24642,7 +25251,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14088 +#: guix-git/doc/guix.texi:14445 #, no-wrap msgid "" " 9.8% (342 out of 3,470) of the missing items are queued\n" @@ -24657,76 +25266,71 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14090 +#: guix-git/doc/guix.texi:14447 #, no-wrap msgid "continuous integration, statistics" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14101 +#: guix-git/doc/guix.texi:14458 msgid "As you can see, it reports the fraction of all the packages for which substitutes are available on the server---regardless of whether substitutes are enabled, and regardless of whether this server's signing key is authorized. It also reports the size of the compressed archives (``nars'') provided by the server, the size the corresponding store items occupy in the store (assuming deduplication is turned off), and the server's throughput. The second part gives continuous integration (CI) statistics, if the server supports it. In addition, using the @option{--coverage} option, @command{guix weather} can list ``important'' package substitutes missing on the server (see below)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14107 +#: guix-git/doc/guix.texi:14464 msgid "To achieve that, @command{guix weather} queries over HTTP(S) meta-data (@dfn{narinfos}) for all the relevant store items. Like @command{guix challenge}, it ignores signatures on those substitutes, which is innocuous since the command only gathers statistics and cannot install those substitutes." msgstr "" #. type: example -#: guix-git/doc/guix.texi:14112 +#: guix-git/doc/guix.texi:14469 #, no-wrap msgid "guix weather @var{options}@dots{} [@var{packages}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14120 +#: guix-git/doc/guix.texi:14477 msgid "When @var{packages} is omitted, @command{guix weather} checks the availability of substitutes for @emph{all} the packages, or for those specified with @option{--manifest}; otherwise it only considers the specified packages. It is also possible to query specific system types with @option{--system}. @command{guix weather} exits with a non-zero code when the fraction of available substitutes is below 100%." msgstr "" -#. type: Plain text -#: guix-git/doc/guix.texi:14122 -msgid "The available options are listed below." -msgstr "" - #. type: table -#: guix-git/doc/guix.texi:14128 +#: guix-git/doc/guix.texi:14485 msgid "@var{urls} is the space-separated list of substitute server URLs to query. When this option is omitted, the default set of substitute servers is queried." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14134 +#: guix-git/doc/guix.texi:14491 msgid "Query substitutes for @var{system}---e.g., @code{aarch64-linux}. This option can be repeated, in which case @command{guix weather} will query substitutes for several system types." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14140 +#: guix-git/doc/guix.texi:14497 msgid "Instead of querying substitutes for all the packages, only ask for those specified in @var{file}. @var{file} must contain a @dfn{manifest}, as with the @code{-m} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14143 +#: guix-git/doc/guix.texi:14500 msgid "This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14144 +#: guix-git/doc/guix.texi:14501 #, no-wrap msgid "--coverage[=@var{count}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:14145 +#: guix-git/doc/guix.texi:14502 #, no-wrap msgid "-c [@var{count}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14151 +#: guix-git/doc/guix.texi:14508 msgid "Report on substitute coverage for packages: list packages with at least @var{count} dependents (zero by default) for which substitutes are unavailable. Dependent packages themselves are not listed: if @var{b} depends on @var{a} and @var{a} has no substitutes, only @var{a} is listed, even though @var{b} usually lacks substitutes as well. The result looks like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14165 +#: guix-git/doc/guix.texi:14522 #, no-wrap msgid "" "$ guix weather --substitute-urls=@value{SUBSTITUTE-URLS} -c 10\n" @@ -24744,39 +25348,39 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14171 +#: guix-git/doc/guix.texi:14528 msgid "What this example shows is that @code{kcoreaddons} and presumably the 58 packages that depend on it have no substitutes at @code{@value{SUBSTITUTE-SERVER-1}}; likewise for @code{qgpgme} and the 46 packages that depend on it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14175 +#: guix-git/doc/guix.texi:14532 msgid "If you are a Guix developer, or if you are taking care of this build farm, you'll probably want to have a closer look at these packages: they may simply fail to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14176 +#: guix-git/doc/guix.texi:14533 #, no-wrap msgid "--display-missing" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14178 +#: guix-git/doc/guix.texi:14535 msgid "Display the list of store items for which substitutes are missing." msgstr "" #. type: section -#: guix-git/doc/guix.texi:14181 +#: guix-git/doc/guix.texi:14538 #, no-wrap msgid "Invoking @command{guix processes}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14189 +#: guix-git/doc/guix.texi:14546 msgid "The @command{guix processes} command can be useful to developers and system administrators, especially on multi-user machines and on build farms: it lists the current sessions (connections to the daemon), as well as information about the processes involved@footnote{Remote sessions, when @command{guix-daemon} is started with @option{--listen} specifying a TCP endpoint, are @emph{not} listed.}. Here's an example of the information it returns:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14195 +#: guix-git/doc/guix.texi:14552 #, no-wrap msgid "" "$ sudo guix processes\n" @@ -24787,7 +25391,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14199 +#: guix-git/doc/guix.texi:14556 #, no-wrap msgid "" "SessionPID: 19402\n" @@ -24797,7 +25401,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14212 +#: guix-git/doc/guix.texi:14569 #, no-wrap msgid "" "SessionPID: 19444\n" @@ -24815,22 +25419,22 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14219 +#: guix-git/doc/guix.texi:14576 msgid "In this example we see that @command{guix-daemon} has three clients: @command{guix environment}, @command{guix publish}, and the Cuirass continuous integration tool; their process identifier (PID) is given by the @code{ClientPID} field. The @code{SessionPID} field gives the PID of the @command{guix-daemon} sub-process of this particular session." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14226 +#: guix-git/doc/guix.texi:14583 msgid "The @code{LockHeld} fields show which store items are currently locked by this session, which corresponds to store items being built or substituted (the @code{LockHeld} field is not displayed when @command{guix processes} is not running as root). Last, by looking at the @code{ChildPID} and @code{ChildCommand} fields, we understand that these three builds are being offloaded (@pxref{Daemon Offload Setup})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14231 +#: guix-git/doc/guix.texi:14588 msgid "The output is in Recutils format so we can use the handy @command{recsel} command to select sessions of interest (@pxref{Selection Expressions,,, recutils, GNU recutils manual}). As an example, the command shows the command line and PID of the client that triggered the build of a Perl package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14237 +#: guix-git/doc/guix.texi:14594 #, no-wrap msgid "" "$ sudo guix processes | \\\n" @@ -24840,28 +25444,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14240 +#: guix-git/doc/guix.texi:14597 msgid "Additional options are listed below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14250 +#: guix-git/doc/guix.texi:14607 msgid "The default option. It outputs a set of Session recutils records that include each @code{ChildProcess} as a field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14251 +#: guix-git/doc/guix.texi:14608 #, no-wrap msgid "normalized" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14258 +#: guix-git/doc/guix.texi:14615 msgid "Normalize the output records into record sets (@pxref{Record Sets,,, recutils, GNU recutils manual}). Normalizing into record sets allows joins across record types. The example below lists the PID of each @code{ChildProcess} and the associated PID for @code{Session} that spawned the @code{ChildProcess} where the @code{Session} was started using @command{guix build}." msgstr "" #. type: example -#: guix-git/doc/guix.texi:14268 +#: guix-git/doc/guix.texi:14625 #, no-wrap msgid "" "$ guix processes --format=normalized | \\\n" @@ -24876,7 +25480,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14271 +#: guix-git/doc/guix.texi:14628 #, no-wrap msgid "" "PID: 4554\n" @@ -24885,7 +25489,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14274 +#: guix-git/doc/guix.texi:14631 #, no-wrap msgid "" "PID: 4646\n" @@ -24893,90 +25497,90 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14281 +#: guix-git/doc/guix.texi:14638 #, no-wrap msgid "system configuration" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14287 +#: guix-git/doc/guix.texi:14644 msgid "Guix System supports a consistent whole-system configuration mechanism. By that we mean that all aspects of the global system configuration---such as the available system services, timezone and locale settings, user accounts---are declared in a single place. Such a @dfn{system configuration} can be @dfn{instantiated}---i.e., effected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14297 +#: guix-git/doc/guix.texi:14654 msgid "One of the advantages of putting all the system configuration under the control of Guix is that it supports transactional system upgrades, and makes it possible to roll back to a previous system instantiation, should something go wrong with the new one (@pxref{Features}). Another advantage is that it makes it easy to replicate the exact same configuration across different machines, or at different points in time, without having to resort to additional administration tools layered on top of the own tools of the system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14302 +#: guix-git/doc/guix.texi:14659 msgid "This section describes this mechanism. First we focus on the system administrator's viewpoint---explaining how the system is configured and instantiated. Then we show how this mechanism can be extended, for instance to support new system services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14332 +#: guix-git/doc/guix.texi:14689 msgid "The operating system is configured by providing an @code{operating-system} declaration in a file that can then be passed to the @command{guix system} command (@pxref{Invoking guix system}). A simple setup, with the default system services, the default Linux-Libre kernel, initial RAM disk, and boot loader looks like this:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14333 guix-git/doc/guix.texi:35553 +#: guix-git/doc/guix.texi:14690 guix-git/doc/guix.texi:36033 #, no-wrap msgid "operating-system" msgstr "" #. type: include -#: guix-git/doc/guix.texi:14335 +#: guix-git/doc/guix.texi:14692 #, no-wrap msgid "os-config-bare-bones.texi" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14342 +#: guix-git/doc/guix.texi:14699 msgid "This example should be self-describing. Some of the fields defined above, such as @code{host-name} and @code{bootloader}, are mandatory. Others, such as @code{packages} and @code{services}, can be omitted, in which case they get a default value." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14347 +#: guix-git/doc/guix.texi:14704 msgid "Below we discuss the effect of some of the most important fields (@pxref{operating-system Reference}, for details about all the available fields), and how to @dfn{instantiate} the operating system using @command{guix system}." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14348 +#: guix-git/doc/guix.texi:14705 #, no-wrap msgid "Bootloader" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14350 +#: guix-git/doc/guix.texi:14707 #, no-wrap msgid "legacy boot, on Intel machines" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14351 +#: guix-git/doc/guix.texi:14708 #, no-wrap msgid "BIOS boot, on Intel machines" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14352 +#: guix-git/doc/guix.texi:14709 #, no-wrap msgid "UEFI boot" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14353 +#: guix-git/doc/guix.texi:14710 #, no-wrap msgid "EFI boot" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14359 +#: guix-git/doc/guix.texi:14716 msgid "The @code{bootloader} field describes the method that will be used to boot your system. Machines based on Intel processors can boot in ``legacy'' BIOS mode, as in the example above. However, more recent machines rely instead on the @dfn{Unified Extensible Firmware Interface} (UEFI) to boot. In that case, the @code{bootloader} field should contain something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14364 +#: guix-git/doc/guix.texi:14721 #, no-wrap msgid "" "(bootloader-configuration\n" @@ -24985,29 +25589,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14368 +#: guix-git/doc/guix.texi:14725 msgid "@xref{Bootloader Configuration}, for more information on the available configuration options." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14369 +#: guix-git/doc/guix.texi:14726 #, no-wrap msgid "Globally-Visible Packages" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:14371 +#: guix-git/doc/guix.texi:14728 #, no-wrap msgid "%base-packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14384 +#: guix-git/doc/guix.texi:14741 msgid "The @code{packages} field lists packages that will be globally visible on the system, for all user accounts---i.e., in every user's @env{PATH} environment variable---in addition to the per-user profiles (@pxref{Invoking guix package}). The @code{%base-packages} variable provides all the tools one would expect for basic user and administrator tasks---including the GNU Core Utilities, the GNU Networking Utilities, the @command{mg} lightweight text editor, @command{find}, @command{grep}, etc. The example above adds GNU@tie{}Screen to those, taken from the @code{(gnu packages screen)} module (@pxref{Package Modules}). The @code{(list package output)} syntax can be used to add a specific output of a package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14388 +#: guix-git/doc/guix.texi:14745 #, no-wrap msgid "" "(use-modules (gnu packages))\n" @@ -25016,7 +25620,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14393 +#: guix-git/doc/guix.texi:14750 #, no-wrap msgid "" "(operating-system\n" @@ -25026,18 +25630,18 @@ msgid "" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:14395 +#: guix-git/doc/guix.texi:14752 #, no-wrap msgid "specification->package" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14404 +#: guix-git/doc/guix.texi:14761 msgid "Referring to packages by variable name, like @code{isc-bind} above, has the advantage of being unambiguous; it also allows typos and such to be diagnosed right away as ``unbound variables''. The downside is that one needs to know which module defines which package, and to augment the @code{use-package-modules} line accordingly. To avoid that, one can use the @code{specification->package} procedure of the @code{(gnu packages)} module, which returns the best package for a given name or name and version:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14407 +#: guix-git/doc/guix.texi:14764 #, no-wrap msgid "" "(use-modules (gnu packages))\n" @@ -25045,7 +25649,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14413 +#: guix-git/doc/guix.texi:14770 #, no-wrap msgid "" "(operating-system\n" @@ -25056,58 +25660,58 @@ msgid "" msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14415 +#: guix-git/doc/guix.texi:14772 #, no-wrap msgid "System Services" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14417 guix-git/doc/guix.texi:34307 -#: guix-git/doc/guix.texi:35783 +#: guix-git/doc/guix.texi:14774 guix-git/doc/guix.texi:34746 +#: guix-git/doc/guix.texi:36273 #, no-wrap msgid "services" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:14418 +#: guix-git/doc/guix.texi:14775 #, no-wrap msgid "%base-services" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14428 +#: guix-git/doc/guix.texi:14785 msgid "The @code{services} field lists @dfn{system services} to be made available when the system starts (@pxref{Services}). The @code{operating-system} declaration above specifies that, in addition to the basic services, we want the OpenSSH secure shell daemon listening on port 2222 (@pxref{Networking Services, @code{openssh-service-type}}). Under the hood, @code{openssh-service-type} arranges so that @command{sshd} is started with the right command-line options, possibly with supporting configuration files generated as needed (@pxref{Defining Services})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14429 +#: guix-git/doc/guix.texi:14786 #, no-wrap msgid "customization, of services" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:14430 +#: guix-git/doc/guix.texi:14787 #, no-wrap msgid "modify-services" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14434 +#: guix-git/doc/guix.texi:14791 msgid "Occasionally, instead of using the base services as is, you will want to customize them. To do this, use @code{modify-services} (@pxref{Service Reference, @code{modify-services}}) to modify the list." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:14440 +#: guix-git/doc/guix.texi:14797 msgid "auto-login to TTY" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14440 +#: guix-git/doc/guix.texi:14797 msgid "For example, suppose you want to modify @code{guix-daemon} and Mingetty (the console log-in) in the @code{%base-services} list (@pxref{Base Services, @code{%base-services}}). To do that, you can write the following in your operating system declaration:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14457 +#: guix-git/doc/guix.texi:14814 #, no-wrap msgid "" "(define %my-services\n" @@ -25123,13 +25727,13 @@ msgid "" " (mingetty-service-type config =>\n" " (mingetty-configuration\n" " (inherit config)\n" -" ;; Automatially log in as \"guest\".\n" +" ;; Automatically log in as \"guest\".\n" " (auto-login \"guest\")))))\n" "\n" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14461 +#: guix-git/doc/guix.texi:14818 #, no-wrap msgid "" "(operating-system\n" @@ -25138,49 +25742,49 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14474 +#: guix-git/doc/guix.texi:14831 msgid "This changes the configuration---i.e., the service parameters---of the @code{guix-service-type} instance, and that of all the @code{mingetty-service-type} instances in the @code{%base-services} list (@pxref{Auto-Login to a Specific TTY, see the cookbook for how to auto-login one user to a specific TTY,, guix-cookbook, GNU Guix Cookbook})). Observe how this is accomplished: first, we arrange for the original configuration to be bound to the identifier @code{config} in the @var{body}, and then we write the @var{body} so that it evaluates to the desired configuration. In particular, notice how we use @code{inherit} to create a new configuration which has the same values as the old configuration, but with a few modifications." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14481 +#: guix-git/doc/guix.texi:14838 msgid "The configuration for a typical ``desktop'' usage, with an encrypted root partition, a swap file on the root partition, the X11 display server, GNOME and Xfce (users can choose which of these desktop environments to use at the log-in screen by pressing @kbd{F1}), network management, power management, and more, would look like this:" msgstr "" #. type: include -#: guix-git/doc/guix.texi:14483 +#: guix-git/doc/guix.texi:14840 #, no-wrap msgid "os-config-desktop.texi" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14488 +#: guix-git/doc/guix.texi:14845 msgid "A graphical system with a choice of lightweight window managers instead of full-blown desktop environments would look like this:" msgstr "" #. type: include -#: guix-git/doc/guix.texi:14490 +#: guix-git/doc/guix.texi:14847 #, no-wrap msgid "os-config-lightweight-desktop.texi" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14496 +#: guix-git/doc/guix.texi:14853 msgid "This example refers to the @file{/boot/efi} file system by its UUID, @code{1234-ABCD}. Replace this UUID with the right UUID on your system, as returned by the @command{blkid} command." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14500 +#: guix-git/doc/guix.texi:14857 msgid "@xref{Desktop Services}, for the exact list of services provided by @code{%desktop-services}. @xref{X.509 Certificates}, for background information about the @code{nss-certs} package that is used here." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14507 +#: guix-git/doc/guix.texi:14864 msgid "Again, @code{%desktop-services} is just a list of service objects. If you want to remove services from there, you can do so using the procedures for list filtering (@pxref{SRFI-1 Filtering and Partitioning,,, guile, GNU Guile Reference Manual}). For instance, the following expression returns a list that contains all the services in @code{%desktop-services} minus the Avahi service:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14512 +#: guix-git/doc/guix.texi:14869 #, no-wrap msgid "" "(remove (lambda (service)\n" @@ -25189,12 +25793,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14515 +#: guix-git/doc/guix.texi:14872 msgid "Alternatively, the @code{modify-services} macro can be used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14519 +#: guix-git/doc/guix.texi:14876 #, no-wrap msgid "" "(modify-services %desktop-services\n" @@ -25202,356 +25806,356 @@ msgid "" msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14522 +#: guix-git/doc/guix.texi:14879 #, no-wrap msgid "Instantiating the System" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14529 +#: guix-git/doc/guix.texi:14886 msgid "Assuming the @code{operating-system} declaration is stored in the @file{my-system-config.scm} file, the @command{guix system reconfigure my-system-config.scm} command instantiates that configuration, and makes it the default GRUB boot entry (@pxref{Invoking guix system})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14537 +#: guix-git/doc/guix.texi:14894 msgid "The normal way to change the system configuration is by updating this file and re-running @command{guix system reconfigure}. One should never have to touch files in @file{/etc} or to run commands that modify the system state such as @command{useradd} or @command{grub-install}. In fact, you must avoid that since that would not only void your warranty but also prevent you from rolling back to previous versions of your system, should you ever need to." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14538 +#: guix-git/doc/guix.texi:14895 #, no-wrap msgid "roll-back, of the operating system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14548 +#: guix-git/doc/guix.texi:14905 msgid "Speaking of roll-back, each time you run @command{guix system reconfigure}, a new @dfn{generation} of the system is created---without modifying or deleting previous generations. Old system generations get an entry in the bootloader boot menu, allowing you to boot them in case something went wrong with the latest generation. Reassuring, no? The @command{guix system list-generations} command lists the system generations available on disk. It is also possible to roll back the system via the commands @command{guix system roll-back} and @command{guix system switch-generation}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14554 +#: guix-git/doc/guix.texi:14911 msgid "Although the @command{guix system reconfigure} command will not modify previous generations, you must take care when the current generation is not the latest (e.g., after invoking @command{guix system roll-back}), since the operation might overwrite a later generation (@pxref{Invoking guix system})." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14555 +#: guix-git/doc/guix.texi:14912 #, no-wrap msgid "The Programming Interface" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14560 +#: guix-git/doc/guix.texi:14917 msgid "At the Scheme level, the bulk of an @code{operating-system} declaration is instantiated with the following monadic procedure (@pxref{The Store Monad}):" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14561 +#: guix-git/doc/guix.texi:14918 #, no-wrap msgid "{Monadic Procedure} operating-system-derivation os" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14564 +#: guix-git/doc/guix.texi:14921 msgid "Return a derivation that builds @var{os}, an @code{operating-system} object (@pxref{Derivations})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14568 +#: guix-git/doc/guix.texi:14925 msgid "The output of the derivation is a single directory that refers to all the packages, configuration files, and other supporting files needed to instantiate @var{os}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14573 +#: guix-git/doc/guix.texi:14930 msgid "This procedure is provided by the @code{(gnu system)} module. Along with @code{(gnu services)} (@pxref{Services}), this module contains the guts of Guix System. Make sure to visit it!" msgstr "" #. type: section -#: guix-git/doc/guix.texi:14576 +#: guix-git/doc/guix.texi:14933 #, no-wrap msgid "@code{operating-system} Reference" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14581 +#: guix-git/doc/guix.texi:14938 msgid "This section summarizes all the options available in @code{operating-system} declarations (@pxref{Using the Configuration System})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14582 +#: guix-git/doc/guix.texi:14939 #, no-wrap msgid "{Data Type} operating-system" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14586 +#: guix-git/doc/guix.texi:14943 msgid "This is the data type representing an operating system configuration. By that, we mean all the global system configuration, not per-user configuration (@pxref{Using the Configuration System})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14588 +#: guix-git/doc/guix.texi:14945 #, no-wrap msgid "@code{kernel} (default: @code{linux-libre})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14593 +#: guix-git/doc/guix.texi:14950 msgid "The package object of the operating system kernel to use@footnote{Currently only the Linux-libre kernel is fully supported. Using GNU@tie{}mach with the GNU@tie{}Hurd is experimental and only available when building a virtual machine disk image.}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14594 guix-git/doc/guix.texi:30733 +#: guix-git/doc/guix.texi:14951 guix-git/doc/guix.texi:31098 #, no-wrap msgid "hurd" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14595 +#: guix-git/doc/guix.texi:14952 #, no-wrap msgid "@code{hurd} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14600 +#: guix-git/doc/guix.texi:14957 msgid "The package object of the Hurd to be started by the kernel. When this field is set, produce a GNU/Hurd operating system. In that case, @code{kernel} must also be set to the @code{gnumach} package---the microkernel the Hurd runs on." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:14603 +#: guix-git/doc/guix.texi:14960 msgid "This feature is experimental and only supported for disk images." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14605 +#: guix-git/doc/guix.texi:14962 #, no-wrap msgid "@code{kernel-loadable-modules} (default: '())" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14608 +#: guix-git/doc/guix.texi:14965 msgid "A list of objects (usually packages) to collect loadable kernel modules from--e.g. @code{(list ddcci-driver-linux)}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14609 +#: guix-git/doc/guix.texi:14966 #, no-wrap msgid "@code{kernel-arguments} (default: @code{%default-kernel-arguments})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14612 +#: guix-git/doc/guix.texi:14969 msgid "List of strings or gexps representing additional arguments to pass on the command-line of the kernel---e.g., @code{(\"console=ttyS0\")}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14613 guix-git/doc/guix.texi:34539 -#: guix-git/doc/guix.texi:34558 +#: guix-git/doc/guix.texi:14970 guix-git/doc/guix.texi:34978 +#: guix-git/doc/guix.texi:34997 #, no-wrap msgid "bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14615 +#: guix-git/doc/guix.texi:14972 msgid "The system bootloader configuration object. @xref{Bootloader Configuration}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14616 guix-git/doc/guix.texi:34732 +#: guix-git/doc/guix.texi:14973 guix-git/doc/guix.texi:35171 #, no-wrap msgid "label" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14619 +#: guix-git/doc/guix.texi:14976 msgid "This is the label (a string) as it appears in the bootloader's menu entry. The default label includes the kernel name and version." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14620 guix-git/doc/guix.texi:16318 -#: guix-git/doc/guix.texi:19503 guix-git/doc/guix.texi:34662 +#: guix-git/doc/guix.texi:14977 guix-git/doc/guix.texi:16675 +#: guix-git/doc/guix.texi:19865 guix-git/doc/guix.texi:35101 #, no-wrap msgid "@code{keyboard-layout} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14625 +#: guix-git/doc/guix.texi:14982 msgid "This field specifies the keyboard layout to use in the console. It can be either @code{#f}, in which case the default keyboard layout is used (usually US English), or a @code{} record. @xref{Keyboard Layout}, for more information." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14630 +#: guix-git/doc/guix.texi:14987 msgid "This keyboard layout is in effect as soon as the kernel has booted. For instance, it is the keyboard layout in effect when you type a passphrase if your root file system is on a @code{luks-device-mapping} mapped device (@pxref{Mapped Devices})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:14637 +#: guix-git/doc/guix.texi:14994 msgid "This does @emph{not} specify the keyboard layout used by the bootloader, nor that used by the graphical display server. @xref{Bootloader Configuration}, for information on how to specify the bootloader's keyboard layout. @xref{X Window}, for information on how to specify the keyboard layout used by the X Window System." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14639 +#: guix-git/doc/guix.texi:14996 #, no-wrap msgid "@code{initrd-modules} (default: @code{%base-initrd-modules})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14640 guix-git/doc/guix.texi:34344 -#: guix-git/doc/guix.texi:34467 +#: guix-git/doc/guix.texi:14997 guix-git/doc/guix.texi:34783 +#: guix-git/doc/guix.texi:34906 #, no-wrap msgid "initrd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14641 guix-git/doc/guix.texi:34345 -#: guix-git/doc/guix.texi:34468 +#: guix-git/doc/guix.texi:14998 guix-git/doc/guix.texi:34784 +#: guix-git/doc/guix.texi:34907 #, no-wrap msgid "initial RAM disk" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14644 +#: guix-git/doc/guix.texi:15001 msgid "The list of Linux kernel modules that need to be available in the initial RAM disk. @xref{Initial RAM Disk}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14645 +#: guix-git/doc/guix.texi:15002 #, no-wrap msgid "@code{initrd} (default: @code{base-initrd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14649 +#: guix-git/doc/guix.texi:15006 msgid "A procedure that returns an initial RAM disk for the Linux kernel. This field is provided to support low-level customization and should rarely be needed for casual use. @xref{Initial RAM Disk}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14650 +#: guix-git/doc/guix.texi:15007 #, no-wrap msgid "@code{firmware} (default: @code{%base-firmware})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14651 +#: guix-git/doc/guix.texi:15008 #, no-wrap msgid "firmware" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14653 +#: guix-git/doc/guix.texi:15010 msgid "List of firmware packages loadable by the operating system kernel." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14658 +#: guix-git/doc/guix.texi:15015 msgid "The default includes firmware needed for Atheros- and Broadcom-based WiFi devices (Linux-libre modules @code{ath9k} and @code{b43-open}, respectively). @xref{Hardware Considerations}, for more info on supported hardware." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14659 guix-git/doc/guix.texi:35572 +#: guix-git/doc/guix.texi:15016 guix-git/doc/guix.texi:36052 #, no-wrap msgid "host-name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14661 +#: guix-git/doc/guix.texi:15018 msgid "The host name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14662 +#: guix-git/doc/guix.texi:15019 #, no-wrap msgid "hosts-file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14663 +#: guix-git/doc/guix.texi:15020 #, no-wrap msgid "hosts file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14668 +#: guix-git/doc/guix.texi:15025 msgid "A file-like object (@pxref{G-Expressions, file-like objects}) for use as @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). The default is a file with entries for @code{localhost} and @var{host-name}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14669 +#: guix-git/doc/guix.texi:15026 #, no-wrap msgid "@code{mapped-devices} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14671 +#: guix-git/doc/guix.texi:15028 msgid "A list of mapped devices. @xref{Mapped Devices}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14672 +#: guix-git/doc/guix.texi:15029 #, no-wrap msgid "file-systems" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14674 +#: guix-git/doc/guix.texi:15031 msgid "A list of file systems. @xref{File Systems}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14675 +#: guix-git/doc/guix.texi:15032 #, no-wrap msgid "@code{swap-devices} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14676 +#: guix-git/doc/guix.texi:15033 #, no-wrap msgid "swap devices" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14678 +#: guix-git/doc/guix.texi:15035 msgid "A list of swap spaces. @xref{Swap Space}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15036 #, no-wrap msgid "@code{users} (default: @code{%base-user-accounts})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:14680 +#: guix-git/doc/guix.texi:15037 #, no-wrap msgid "@code{groups} (default: @code{%base-groups})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14682 +#: guix-git/doc/guix.texi:15039 msgid "List of user accounts and groups. @xref{User Accounts}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14685 +#: guix-git/doc/guix.texi:15042 msgid "If the @code{users} list lacks a user account with UID@tie{}0, a ``root'' account with UID@tie{}0 is automatically added." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14686 +#: guix-git/doc/guix.texi:15043 #, no-wrap msgid "@code{skeletons} (default: @code{(default-skeletons)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14690 +#: guix-git/doc/guix.texi:15047 msgid "A list of target file name/file-like object tuples (@pxref{G-Expressions, file-like objects}). These are the skeleton files that will be added to the home directory of newly-created user accounts." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14692 +#: guix-git/doc/guix.texi:15049 msgid "For instance, a valid value may look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14698 +#: guix-git/doc/guix.texi:15055 #, no-wrap msgid "" "`((\".bashrc\" ,(plain-file \"bashrc\" \"echo Hello\\n\"))\n" @@ -25561,29 +26165,29 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14700 +#: guix-git/doc/guix.texi:15057 #, no-wrap msgid "@code{issue} (default: @code{%default-issue})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14703 +#: guix-git/doc/guix.texi:15060 msgid "A string denoting the contents of the @file{/etc/issue} file, which is displayed when users log in on a text console." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14704 +#: guix-git/doc/guix.texi:15061 #, no-wrap msgid "@code{packages} (default: @code{%base-packages})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14708 +#: guix-git/doc/guix.texi:15065 msgid "A list of packages to be installed in the global profile, which is accessible at @file{/run/current-system/profile}. Each element is either a package variable or a package/output tuple. Here's a simple example of both:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14713 +#: guix-git/doc/guix.texi:15070 #, no-wrap msgid "" "(cons* git ; the default \"out\" output\n" @@ -25592,172 +26196,172 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14718 +#: guix-git/doc/guix.texi:15075 msgid "The default set includes core utilities and it is good practice to install non-core utilities in user profiles (@pxref{Invoking guix package})." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14719 +#: guix-git/doc/guix.texi:15076 #, no-wrap msgid "timezone" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14721 +#: guix-git/doc/guix.texi:15078 msgid "A timezone identifying string---e.g., @code{\"Europe/Paris\"}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14725 +#: guix-git/doc/guix.texi:15082 msgid "You can run the @command{tzselect} command to find out which timezone string corresponds to your region. Choosing an invalid timezone name causes @command{guix system} to fail." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14726 guix-git/doc/guix.texi:21115 +#: guix-git/doc/guix.texi:15083 guix-git/doc/guix.texi:21477 #, no-wrap msgid "@code{locale} (default: @code{\"en_US.utf8\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14729 +#: guix-git/doc/guix.texi:15086 msgid "The name of the default locale (@pxref{Locale Names,,, libc, The GNU C Library Reference Manual}). @xref{Locales}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14730 +#: guix-git/doc/guix.texi:15087 #, no-wrap msgid "@code{locale-definitions} (default: @code{%default-locale-definitions})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14733 +#: guix-git/doc/guix.texi:15090 msgid "The list of locale definitions to be compiled and that may be used at run time. @xref{Locales}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14734 +#: guix-git/doc/guix.texi:15091 #, no-wrap msgid "@code{locale-libcs} (default: @code{(list @var{glibc})})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14738 +#: guix-git/doc/guix.texi:15095 msgid "The list of GNU@tie{}libc packages whose locale data and tools are used to build the locale definitions. @xref{Locales}, for compatibility considerations that justify this option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14739 +#: guix-git/doc/guix.texi:15096 #, no-wrap msgid "@code{name-service-switch} (default: @code{%default-nss})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14743 +#: guix-git/doc/guix.texi:15100 msgid "Configuration of the libc name service switch (NSS)---a @code{} object. @xref{Name Service Switch}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14744 +#: guix-git/doc/guix.texi:15101 #, no-wrap msgid "@code{services} (default: @code{%base-services})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14746 +#: guix-git/doc/guix.texi:15103 msgid "A list of service objects denoting system services. @xref{Services}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14747 +#: guix-git/doc/guix.texi:15104 #, no-wrap msgid "essential services" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14748 +#: guix-git/doc/guix.texi:15105 #, no-wrap msgid "@code{essential-services} (default: ...)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14753 +#: guix-git/doc/guix.texi:15110 msgid "The list of ``essential services''---i.e., things like instances of @code{system-service-type} and @code{host-name-service-type} (@pxref{Service Reference}), which are derived from the operating system definition itself. As a user you should @emph{never} need to touch this field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14754 +#: guix-git/doc/guix.texi:15111 #, no-wrap msgid "@code{pam-services} (default: @code{(base-pam-services)})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14755 +#: guix-git/doc/guix.texi:15112 #, no-wrap msgid "PAM" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14756 +#: guix-git/doc/guix.texi:15113 #, no-wrap msgid "pluggable authentication modules" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14759 +#: guix-git/doc/guix.texi:15116 msgid "Linux @dfn{pluggable authentication module} (PAM) services." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14760 +#: guix-git/doc/guix.texi:15117 #, no-wrap msgid "@code{setuid-programs} (default: @code{%setuid-programs})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14763 +#: guix-git/doc/guix.texi:15120 msgid "List of @code{}. @xref{Setuid Programs}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14764 +#: guix-git/doc/guix.texi:15121 #, no-wrap msgid "@code{sudoers-file} (default: @code{%sudoers-specification})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14765 +#: guix-git/doc/guix.texi:15122 #, no-wrap msgid "sudoers file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14768 +#: guix-git/doc/guix.texi:15125 msgid "The contents of the @file{/etc/sudoers} file as a file-like object (@pxref{G-Expressions, @code{local-file} and @code{plain-file}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14773 +#: guix-git/doc/guix.texi:15130 msgid "This file specifies which users can use the @command{sudo} command, what they are allowed to do, and what privileges they may gain. The default is that only @code{root} and members of the @code{wheel} group may use @code{sudo}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14776 +#: guix-git/doc/guix.texi:15133 #, no-wrap msgid "{Scheme Syntax} this-operating-system" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14779 +#: guix-git/doc/guix.texi:15136 msgid "When used in the @emph{lexical scope} of an operating system field definition, this identifier resolves to the operating system being defined." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14782 +#: guix-git/doc/guix.texi:15139 msgid "The example below shows how to refer to the operating system being defined in the definition of the @code{label} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14785 guix-git/doc/guix.texi:18711 +#: guix-git/doc/guix.texi:15142 guix-git/doc/guix.texi:19073 #, no-wrap msgid "" "(use-modules (gnu) (guix))\n" @@ -25765,7 +26369,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14790 +#: guix-git/doc/guix.texi:15147 #, no-wrap msgid "" "(operating-system\n" @@ -25775,17 +26379,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14794 +#: guix-git/doc/guix.texi:15151 msgid "It is an error to refer to @code{this-operating-system} outside an operating system definition." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14805 +#: guix-git/doc/guix.texi:15162 msgid "The list of file systems to be mounted is specified in the @code{file-systems} field of the operating system declaration (@pxref{Using the Configuration System}). Each file system is declared using the @code{file-system} form, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14811 +#: guix-git/doc/guix.texi:15168 #, no-wrap msgid "" "(file-system\n" @@ -25795,68 +26399,68 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14815 +#: guix-git/doc/guix.texi:15172 msgid "As usual, some of the fields are mandatory---those shown in the example above---while others can be omitted. These are described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14816 +#: guix-git/doc/guix.texi:15173 #, no-wrap msgid "{Data Type} file-system" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14819 +#: guix-git/doc/guix.texi:15176 msgid "Objects of this type represent file systems to be mounted. They contain the following members:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14821 guix-git/doc/guix.texi:15201 -#: guix-git/doc/guix.texi:17317 +#: guix-git/doc/guix.texi:15178 guix-git/doc/guix.texi:15558 +#: guix-git/doc/guix.texi:17679 #, no-wrap msgid "type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14824 +#: guix-git/doc/guix.texi:15181 msgid "This is a string specifying the type of the file system---e.g., @code{\"ext4\"}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14825 +#: guix-git/doc/guix.texi:15182 #, no-wrap msgid "mount-point" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14827 +#: guix-git/doc/guix.texi:15184 msgid "This designates the place where the file system is to be mounted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14828 guix-git/doc/guix.texi:17267 +#: guix-git/doc/guix.texi:15185 guix-git/doc/guix.texi:17629 #, no-wrap msgid "device" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14838 +#: guix-git/doc/guix.texi:15195 msgid "This names the ``source'' of the file system. It can be one of three things: a file system label, a file system UUID, or the name of a @file{/dev} node. Labels and UUIDs offer a way to refer to file systems without having to hard-code their actual device name@footnote{Note that, while it is tempting to use @file{/dev/disk/by-uuid} and similar device names to achieve the same result, this is not recommended: These special device nodes are created by the udev daemon and may be unavailable at the time the device is mounted.}." msgstr "" #. type: findex -#: guix-git/doc/guix.texi:14839 +#: guix-git/doc/guix.texi:15196 #, no-wrap msgid "file-system-label" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14844 +#: guix-git/doc/guix.texi:15201 msgid "File system labels are created using the @code{file-system-label} procedure, UUIDs are created using @code{uuid}, and @file{/dev} node are plain strings. Here's an example of a file system referred to by its label, as shown by the @command{e2label} command:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14850 +#: guix-git/doc/guix.texi:15207 #, no-wrap msgid "" "(file-system\n" @@ -25866,19 +26470,19 @@ msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14852 guix-git/doc/guix.texi:33130 -#: guix-git/doc/guix.texi:33146 +#: guix-git/doc/guix.texi:15209 guix-git/doc/guix.texi:33495 +#: guix-git/doc/guix.texi:33511 #, no-wrap msgid "uuid" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14860 +#: guix-git/doc/guix.texi:15217 msgid "UUIDs are converted from their string representation (as shown by the @command{tune2fs -l} command) using the @code{uuid} form@footnote{The @code{uuid} form expects 16-byte UUIDs as defined in @uref{https://tools.ietf.org/html/rfc4122, RFC@tie{}4122}. This is the form of UUID used by the ext2 family of file systems and others, but it is different from ``UUIDs'' found in FAT file systems, for instance.}, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14866 +#: guix-git/doc/guix.texi:15223 #, no-wrap msgid "" "(file-system\n" @@ -25888,168 +26492,168 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14874 +#: guix-git/doc/guix.texi:15231 msgid "When the source of a file system is a mapped device (@pxref{Mapped Devices}), its @code{device} field @emph{must} refer to the mapped device name---e.g., @file{\"/dev/mapper/root-partition\"}. This is required so that the system knows that mounting the file system depends on having the corresponding device mapping established." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14875 +#: guix-git/doc/guix.texi:15232 #, no-wrap msgid "@code{flags} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14885 +#: guix-git/doc/guix.texi:15242 msgid "This is a list of symbols denoting mount flags. Recognized flags include @code{read-only}, @code{bind-mount}, @code{no-dev} (disallow access to special files), @code{no-suid} (ignore setuid and setgid bits), @code{no-atime} (do not update file access times), @code{strict-atime} (update file access time), @code{lazy-time} (only update time on the in-memory version of the file inode), and @code{no-exec} (disallow program execution). @xref{Mount-Unmount-Remount,,, libc, The GNU C Library Reference Manual}, for more information on these flags." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14886 +#: guix-git/doc/guix.texi:15243 #, no-wrap msgid "@code{options} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14895 +#: guix-git/doc/guix.texi:15252 msgid "This is either @code{#f}, or a string denoting mount options passed to the file system driver. @xref{Mount-Unmount-Remount,,, libc, The GNU C Library Reference Manual}, for details and run @command{man 8 mount} for options for various file systems. Note that the @code{file-system-options->alist} and @code{alist->file-system-options} procedures from @code{(gnu system file-systems)} can be used to convert file system options given as an association list to the string representation, and vice-versa." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14896 +#: guix-git/doc/guix.texi:15253 #, no-wrap msgid "@code{mount?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14901 +#: guix-git/doc/guix.texi:15258 msgid "This value indicates whether to automatically mount the file system when the system is brought up. When set to @code{#f}, the file system gets an entry in @file{/etc/fstab} (read by the @command{mount} command) but is not automatically mounted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14902 +#: guix-git/doc/guix.texi:15259 #, no-wrap msgid "@code{needed-for-boot?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14907 +#: guix-git/doc/guix.texi:15264 msgid "This Boolean value indicates whether the file system is needed when booting. If that is true, then the file system is mounted when the initial RAM disk (initrd) is loaded. This is always the case, for instance, for the root file system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14908 +#: guix-git/doc/guix.texi:15265 #, no-wrap msgid "@code{check?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14912 +#: guix-git/doc/guix.texi:15269 msgid "This Boolean indicates whether the file system should be checked for errors before being mounted. How and when this happens can be further adjusted with the following options." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14913 +#: guix-git/doc/guix.texi:15270 #, no-wrap msgid "@code{skip-check-if-clean?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14918 +#: guix-git/doc/guix.texi:15275 msgid "When true, this Boolean indicates that a file system check triggered by @code{check?} may exit early if the file system is marked as ``clean'', meaning that it was previously correctly unmounted and should not contain errors." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14922 +#: guix-git/doc/guix.texi:15279 msgid "Setting this to false will always force a full consistency check when @code{check?} is true. This may take a very long time and is not recommended on healthy systems---in fact, it may reduce reliability!" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14926 +#: guix-git/doc/guix.texi:15283 msgid "Conversely, some primitive file systems like @code{fat} do not keep track of clean shutdowns and will perform a full scan regardless of the value of this option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14927 +#: guix-git/doc/guix.texi:15284 #, no-wrap msgid "@code{repair} (default: @code{'preen})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14930 +#: guix-git/doc/guix.texi:15287 msgid "When @code{check?} finds errors, it can (try to) repair them and continue booting. This option controls when and how to do so." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14934 +#: guix-git/doc/guix.texi:15291 msgid "If false, try not to modify the file system at all. Checking certain file systems like @code{jfs} may still write to the device to replay the journal. No repairs will be attempted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14937 +#: guix-git/doc/guix.texi:15294 msgid "If @code{#t}, try to repair any errors found and assume ``yes'' to all questions. This will fix the most errors, but may be risky." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14941 +#: guix-git/doc/guix.texi:15298 msgid "If @code{'preen}, repair only errors that are safe to fix without human interaction. What that means is left up to the developers of each file system and may be equivalent to ``none'' or ``all''." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14942 +#: guix-git/doc/guix.texi:15299 #, no-wrap msgid "@code{create-mount-point?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14944 +#: guix-git/doc/guix.texi:15301 msgid "When true, the mount point is created if it does not exist yet." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14945 +#: guix-git/doc/guix.texi:15302 #, no-wrap msgid "@code{mount-may-fail?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14950 +#: guix-git/doc/guix.texi:15307 msgid "When true, this indicates that mounting this file system can fail but that should not be considered an error. This is useful in unusual cases; an example of this is @code{efivarfs}, a file system that can only be mounted on EFI/UEFI systems." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14951 guix-git/doc/guix.texi:15347 +#: guix-git/doc/guix.texi:15308 guix-git/doc/guix.texi:15704 #, no-wrap msgid "@code{dependencies} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14955 +#: guix-git/doc/guix.texi:15312 msgid "This is a list of @code{} or @code{} objects representing file systems that must be mounted or mapped devices that must be opened before (and unmounted or closed after) this one." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14959 +#: guix-git/doc/guix.texi:15316 msgid "As an example, consider a hierarchy of mounts: @file{/sys/fs/cgroup} is a dependency of @file{/sys/fs/cgroup/cpu} and @file{/sys/fs/cgroup/memory}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14962 +#: guix-git/doc/guix.texi:15319 msgid "Another example is a file system that depends on a mapped device, for example for an encrypted partition (@pxref{Mapped Devices})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14965 +#: guix-git/doc/guix.texi:15322 #, no-wrap msgid "{Scheme Procedure} file-system-label @var{str}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14968 +#: guix-git/doc/guix.texi:15325 msgid "This procedure returns an opaque file system label from @var{str}, a string:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14972 +#: guix-git/doc/guix.texi:15329 #, no-wrap msgid "" "(file-system-label \"home\")\n" @@ -26057,104 +26661,104 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14976 +#: guix-git/doc/guix.texi:15333 msgid "File system labels are used to refer to file systems by label rather than by device name. See above for examples." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14980 +#: guix-git/doc/guix.texi:15337 msgid "The @code{(gnu system file-systems)} exports the following useful variables." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14981 +#: guix-git/doc/guix.texi:15338 #, no-wrap msgid "{Scheme Variable} %base-file-systems" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14986 +#: guix-git/doc/guix.texi:15343 msgid "These are essential file systems that are required on normal systems, such as @code{%pseudo-terminal-file-system} and @code{%immutable-store} (see below). Operating system declarations should always contain at least these." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14988 +#: guix-git/doc/guix.texi:15345 #, no-wrap msgid "{Scheme Variable} %pseudo-terminal-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14994 +#: guix-git/doc/guix.texi:15351 msgid "This is the file system to be mounted as @file{/dev/pts}. It supports @dfn{pseudo-terminals} created @i{via} @code{openpty} and similar functions (@pxref{Pseudo-Terminals,,, libc, The GNU C Library Reference Manual}). Pseudo-terminals are used by terminal emulators such as @command{xterm}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14996 +#: guix-git/doc/guix.texi:15353 #, no-wrap msgid "{Scheme Variable} %shared-memory-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15000 +#: guix-git/doc/guix.texi:15357 msgid "This file system is mounted as @file{/dev/shm} and is used to support memory sharing across processes (@pxref{Memory-mapped I/O, @code{shm_open},, libc, The GNU C Library Reference Manual})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15002 +#: guix-git/doc/guix.texi:15359 #, no-wrap msgid "{Scheme Variable} %immutable-store" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15007 +#: guix-git/doc/guix.texi:15364 msgid "This file system performs a read-only ``bind mount'' of @file{/gnu/store}, making it read-only for all the users including @code{root}. This prevents against accidental modification by software running as @code{root} or by system administrators." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15010 +#: guix-git/doc/guix.texi:15367 msgid "The daemon itself is still able to write to the store: it remounts it read-write in its own ``name space.''" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15012 +#: guix-git/doc/guix.texi:15369 #, no-wrap msgid "{Scheme Variable} %binary-format-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15016 +#: guix-git/doc/guix.texi:15373 msgid "The @code{binfmt_misc} file system, which allows handling of arbitrary executable file types to be delegated to user space. This requires the @code{binfmt.ko} kernel module to be loaded." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15018 +#: guix-git/doc/guix.texi:15375 #, no-wrap msgid "{Scheme Variable} %fuse-control-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15022 +#: guix-git/doc/guix.texi:15379 msgid "The @code{fusectl} file system, which allows unprivileged users to mount and unmount user-space FUSE file systems. This requires the @code{fuse.ko} kernel module to be loaded." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15026 +#: guix-git/doc/guix.texi:15383 msgid "The @code{(gnu system uuid)} module provides tools to deal with file system ``unique identifiers'' (UUIDs)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15027 +#: guix-git/doc/guix.texi:15384 #, no-wrap msgid "{Scheme Procedure} uuid @var{str} [@var{type}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15030 +#: guix-git/doc/guix.texi:15387 msgid "Return an opaque UUID (unique identifier) object of the given @var{type} (a symbol) by parsing @var{str} (a string):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15034 +#: guix-git/doc/guix.texi:15391 #, no-wrap msgid "" "(uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\")\n" @@ -26163,7 +26767,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15037 +#: guix-git/doc/guix.texi:15394 #, no-wrap msgid "" "(uuid \"1234-ABCD\" 'fat)\n" @@ -26171,33 +26775,33 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15041 +#: guix-git/doc/guix.texi:15398 msgid "@var{type} may be one of @code{dce}, @code{iso9660}, @code{fat}, @code{ntfs}, or one of the commonly found synonyms for these." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15044 +#: guix-git/doc/guix.texi:15401 msgid "UUIDs are another way to unambiguously refer to file systems in operating system configuration. See the examples above." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:15047 guix-git/doc/guix.texi:15048 +#: guix-git/doc/guix.texi:15404 guix-git/doc/guix.texi:15405 #, no-wrap msgid "Btrfs file system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15054 +#: guix-git/doc/guix.texi:15411 msgid "The Btrfs has special features, such as subvolumes, that merit being explained in more details. The following section attempts to cover basic as well as complex uses of a Btrfs file system with the Guix System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15057 +#: guix-git/doc/guix.texi:15414 msgid "In its simplest usage, a Btrfs file system can be described, for example, by:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15063 +#: guix-git/doc/guix.texi:15420 #, no-wrap msgid "" "(file-system\n" @@ -26207,12 +26811,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15069 +#: guix-git/doc/guix.texi:15426 msgid "The example below is more complex, as it makes use of a Btrfs subvolume, named @code{rootfs}. The parent Btrfs file system is labeled @code{my-btrfs-pool}, and is located on an encrypted device (hence the dependency on @code{mapped-devices}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15077 +#: guix-git/doc/guix.texi:15434 #, no-wrap msgid "" "(file-system\n" @@ -26224,17 +26828,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15088 +#: guix-git/doc/guix.texi:15445 msgid "Some bootloaders, for example GRUB, only mount a Btrfs partition at its top level during the early boot, and rely on their configuration to refer to the correct subvolume path within that top level. The bootloaders operating in this way typically produce their configuration on a running system where the Btrfs partitions are already mounted and where the subvolume information is readily available. As an example, @command{grub-mkconfig}, the configuration generator command shipped with GRUB, reads @file{/proc/self/mountinfo} to determine the top-level path of a subvolume." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15096 +#: guix-git/doc/guix.texi:15453 msgid "The Guix System produces a bootloader configuration using the operating system configuration as its sole input; it is therefore necessary to extract the subvolume name on which @file{/gnu/store} lives (if any) from that operating system configuration. To better illustrate, consider a subvolume named 'rootfs' which contains the root file system data. In such situation, the GRUB bootloader would only see the top level of the root Btrfs partition, e.g.:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15103 +#: guix-git/doc/guix.texi:15460 #, no-wrap msgid "" "/ (top level)\n" @@ -26245,17 +26849,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15108 +#: guix-git/doc/guix.texi:15465 msgid "Thus, the subvolume name must be prepended to the @file{/gnu/store} path of the kernel, initrd binaries and any other files referred to in the GRUB configuration that must be found during the early boot." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15111 +#: guix-git/doc/guix.texi:15468 msgid "The next example shows a nested hierarchy of subvolumes and directories:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15118 +#: guix-git/doc/guix.texi:15475 #, no-wrap msgid "" "/ (top level)\n" @@ -26266,17 +26870,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15125 +#: guix-git/doc/guix.texi:15482 msgid "This scenario would work without mounting the 'store' subvolume. Mounting 'rootfs' is sufficient, since the subvolume name matches its intended mount point in the file system hierarchy. Alternatively, the 'store' subvolume could be referred to by setting the @code{subvol} option to either @code{/rootfs/gnu/store} or @code{rootfs/gnu/store}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15127 +#: guix-git/doc/guix.texi:15484 msgid "Finally, a more contrived example of nested subvolumes:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15134 +#: guix-git/doc/guix.texi:15491 #, no-wrap msgid "" "/ (top level)\n" @@ -26287,12 +26891,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15141 +#: guix-git/doc/guix.texi:15498 msgid "Here, the 'guix-store' subvolume doesn't match its intended mount point, so it is necessary to mount it. The subvolume must be fully specified, by passing its file name to the @code{subvol} option. To illustrate, the 'guix-store' subvolume could be mounted on @file{/gnu/store} by using a file system declaration such as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15149 +#: guix-git/doc/guix.texi:15506 #, no-wrap msgid "" "(file-system\n" @@ -26304,128 +26908,128 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15154 +#: guix-git/doc/guix.texi:15511 #, no-wrap msgid "device mapping" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15155 +#: guix-git/doc/guix.texi:15512 #, no-wrap msgid "mapped devices" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15172 +#: guix-git/doc/guix.texi:15529 msgid "The Linux kernel has a notion of @dfn{device mapping}: a block device, such as a hard disk partition, can be @dfn{mapped} into another device, usually in @code{/dev/mapper/}, with additional processing over the data that flows through it@footnote{Note that the GNU@tie{}Hurd makes no difference between the concept of a ``mapped device'' and that of a file system: both boil down to @emph{translating} input/output operations made on a file to operations on its backing store. Thus, the Hurd implements mapped devices, like file systems, using the generic @dfn{translator} mechanism (@pxref{Translators,,, hurd, The GNU Hurd Reference Manual}).}. A typical example is encryption device mapping: all writes to the mapped device are encrypted, and all reads are deciphered, transparently. Guix extends this notion by considering any device or set of devices that are @dfn{transformed} in some way to create a new device; for instance, RAID devices are obtained by @dfn{assembling} several other devices, such as hard disks or partitions, into a new one that behaves as one partition." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15175 +#: guix-git/doc/guix.texi:15532 msgid "Mapped devices are declared using the @code{mapped-device} form, defined as follows; for examples, see below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15176 +#: guix-git/doc/guix.texi:15533 #, no-wrap msgid "{Data Type} mapped-device" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15179 +#: guix-git/doc/guix.texi:15536 msgid "Objects of this type represent device mappings that will be made when the system boots up." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15186 +#: guix-git/doc/guix.texi:15543 msgid "This is either a string specifying the name of the block device to be mapped, such as @code{\"/dev/sda3\"}, or a list of such strings when several devices need to be assembled for creating a new one. In case of LVM this is a string specifying name of the volume group to be mapped." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:15187 guix-git/doc/guix.texi:15342 +#: guix-git/doc/guix.texi:15544 guix-git/doc/guix.texi:15699 #, no-wrap msgid "target" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15196 +#: guix-git/doc/guix.texi:15553 msgid "This string specifies the name of the resulting mapped device. For kernel mappers such as encrypted devices of type @code{luks-device-mapping}, specifying @code{\"my-partition\"} leads to the creation of the @code{\"/dev/mapper/my-partition\"} device. For RAID devices of type @code{raid-device-mapping}, the full device name such as @code{\"/dev/md0\"} needs to be given. LVM logical volumes of type @code{lvm-device-mapping} need to be specified as @code{\"VGNAME-LVNAME\"}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:15197 guix-git/doc/guix.texi:34634 +#: guix-git/doc/guix.texi:15554 guix-git/doc/guix.texi:35073 #, no-wrap msgid "targets" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15200 +#: guix-git/doc/guix.texi:15557 msgid "This list of strings specifies names of the resulting mapped devices in case there are several. The format is identical to @var{target}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15204 +#: guix-git/doc/guix.texi:15561 msgid "This must be a @code{mapped-device-kind} object, which specifies how @var{source} is mapped to @var{target}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15207 +#: guix-git/doc/guix.texi:15564 #, no-wrap msgid "{Scheme Variable} luks-device-mapping" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15211 +#: guix-git/doc/guix.texi:15568 msgid "This defines LUKS block device encryption using the @command{cryptsetup} command from the package with the same name. It relies on the @code{dm-crypt} Linux kernel module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15213 +#: guix-git/doc/guix.texi:15570 #, no-wrap msgid "{Scheme Variable} raid-device-mapping" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15218 +#: guix-git/doc/guix.texi:15575 msgid "This defines a RAID device, which is assembled using the @code{mdadm} command from the package with the same name. It requires a Linux kernel module for the appropriate RAID level to be loaded, such as @code{raid456} for RAID-4, RAID-5 or RAID-6, or @code{raid10} for RAID-10." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15220 +#: guix-git/doc/guix.texi:15577 #, no-wrap msgid "LVM, logical volume manager" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15221 +#: guix-git/doc/guix.texi:15578 #, no-wrap msgid "{Scheme Variable} lvm-device-mapping" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15226 +#: guix-git/doc/guix.texi:15583 msgid "This defines one or more logical volumes for the Linux @uref{https://www.sourceware.org/lvm2/, Logical Volume Manager (LVM)}. The volume group is activated by the @command{vgchange} command from the @code{lvm2} package." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15228 +#: guix-git/doc/guix.texi:15585 #, no-wrap msgid "disk encryption" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15229 +#: guix-git/doc/guix.texi:15586 #, no-wrap msgid "LUKS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15237 +#: guix-git/doc/guix.texi:15594 msgid "The following example specifies a mapping from @file{/dev/sda3} to @file{/dev/mapper/home} using LUKS---the @url{https://gitlab.com/cryptsetup/cryptsetup,Linux Unified Key Setup}, a standard mechanism for disk encryption. The @file{/dev/mapper/home} device can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15243 +#: guix-git/doc/guix.texi:15600 #, no-wrap msgid "" "(mapped-device\n" @@ -26435,23 +27039,23 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15248 +#: guix-git/doc/guix.texi:15605 msgid "Alternatively, to become independent of device numbering, one may obtain the LUKS UUID (@dfn{unique identifier}) of the source device by a command like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15251 +#: guix-git/doc/guix.texi:15608 #, no-wrap msgid "cryptsetup luksUUID /dev/sda3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15254 +#: guix-git/doc/guix.texi:15611 msgid "and use it as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15260 +#: guix-git/doc/guix.texi:15617 #, no-wrap msgid "" "(mapped-device\n" @@ -26461,23 +27065,23 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15262 +#: guix-git/doc/guix.texi:15619 #, no-wrap msgid "swap encryption" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15269 +#: guix-git/doc/guix.texi:15626 msgid "It is also desirable to encrypt swap space, since swap space may contain sensitive data. One way to accomplish that is to use a swap file in a file system on a device mapped via LUKS encryption. In this way, the swap file is encrypted because the entire device is encrypted. @xref{Swap Space}, or @xref{Preparing for Installation,,Disk Partitioning}, for an example." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15272 +#: guix-git/doc/guix.texi:15629 msgid "A RAID device formed of the partitions @file{/dev/sda1} and @file{/dev/sdb1} may be declared as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15278 +#: guix-git/doc/guix.texi:15635 #, no-wrap msgid "" "(mapped-device\n" @@ -26487,17 +27091,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15285 +#: guix-git/doc/guix.texi:15642 msgid "The @file{/dev/md0} device can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems}). Note that the RAID level need not be given; it is chosen during the initial creation and formatting of the RAID device and is determined automatically later." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15288 +#: guix-git/doc/guix.texi:15645 msgid "LVM logical volumes ``alpha'' and ``beta'' from volume group ``vg0'' can be declared as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15294 +#: guix-git/doc/guix.texi:15651 #, no-wrap msgid "" "(mapped-device\n" @@ -26507,102 +27111,102 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15299 +#: guix-git/doc/guix.texi:15656 msgid "Devices @file{/dev/mapper/vg0-alpha} and @file{/dev/mapper/vg0-beta} can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15302 +#: guix-git/doc/guix.texi:15659 #, no-wrap msgid "swap space" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15312 +#: guix-git/doc/guix.texi:15669 msgid "Swap space, as it is commonly called, is a disk area specifically designated for paging: the process in charge of memory management (the Linux kernel or Hurd's default pager) can decide that some memory pages stored in RAM which belong to a running program but are unused should be stored on disk instead. It unloads those from the RAM, freeing up precious fast memory, and writes them to the swap space. If the program tries to access that very page, the memory management process loads it back into memory for the program to use." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15318 +#: guix-git/doc/guix.texi:15675 msgid "A common misconception about swap is that it is only useful when small amounts of RAM are available to the system. However, it should be noted that kernels often use all available RAM for disk access caching to make I/O faster, and thus paging out unused portions of program memory will expand the RAM available for such caching." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15322 +#: guix-git/doc/guix.texi:15679 msgid "For a more detailed description of how memory is managed from the viewpoint of a monolithic kernel, @xref{Memory Concepts,,, libc, The GNU C Library Reference Manual}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15331 +#: guix-git/doc/guix.texi:15688 msgid "The Linux kernel has support for swap partitions and swap files: the former uses a whole disk partition for paging, whereas the second uses a file on a file system for that (the file system driver needs to support it). On a comparable setup, both have the same performance, so one should consider ease of use when deciding between them. Partitions are ``simpler'' and do not need file system support, but need to be allocated at disk formatting time (logical volumes notwithstanding), whereas files can be allocated and deallocated at any time." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15336 +#: guix-git/doc/guix.texi:15693 msgid "Note that swap space is not zeroed on shutdown, so sensitive data (such as passwords) may linger on it if it was paged out. As such, you should consider having your swap reside on an encrypted device (@pxref{Mapped Devices})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15337 +#: guix-git/doc/guix.texi:15694 #, no-wrap msgid "{Data Type} swap-space" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15340 +#: guix-git/doc/guix.texi:15697 msgid "Objects of this type represent swap spaces. They contain the following members:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15346 +#: guix-git/doc/guix.texi:15703 msgid "The device or file to use, either a UUID, a @code{file-system-label} or a string, as in the definition of a @code{file-system} (@pxref{File Systems})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15353 +#: guix-git/doc/guix.texi:15710 msgid "A list of @code{file-system} or @code{mapped-device} objects, upon which the availability of the space depends. Note that just like for @code{file-system} objects, dependencies which are needed for boot and mounted in early userspace are not managed by the Shepherd, and so automatically filtered out for you." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15354 +#: guix-git/doc/guix.texi:15711 #, no-wrap msgid "@code{priority} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15361 +#: guix-git/doc/guix.texi:15718 msgid "Only supported by the Linux kernel. Either @code{#f} to disable swap priority, or an integer between 0 and 32767. The kernel will first use swap spaces of higher priority when paging, and use same priority spaces on a round-robin basis. The kernel will use swap spaces without a set priority after prioritized spaces, and in the order that they appeared in (not round-robin)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15362 +#: guix-git/doc/guix.texi:15719 #, no-wrap msgid "@code{discard?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15366 +#: guix-git/doc/guix.texi:15723 msgid "Only supported by the Linux kernel. When true, the kernel will notify the disk controller of discarded pages, for example with the TRIM operation on Solid State Drives." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15371 +#: guix-git/doc/guix.texi:15728 msgid "Here are some examples:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15374 +#: guix-git/doc/guix.texi:15731 #, no-wrap msgid "(swap-space (target (uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\")))\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15379 +#: guix-git/doc/guix.texi:15736 msgid "Use the swap partition with the given UUID@. You can learn the UUID of a Linux swap partition by running @command{swaplabel @var{device}}, where @var{device} is the @file{/dev} file name of that partition." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15384 +#: guix-git/doc/guix.texi:15741 #, no-wrap msgid "" "(swap-space\n" @@ -26611,12 +27215,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15390 +#: guix-git/doc/guix.texi:15747 msgid "Use the partition with label @code{swap}, which can be found after the @var{lvm-device} mapped device has been opened. Again, the @command{swaplabel} command allows you to view and change the label of a Linux swap partition." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15395 +#: guix-git/doc/guix.texi:15752 #, no-wrap msgid "" "(swap-space\n" @@ -26625,35 +27229,35 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15399 +#: guix-git/doc/guix.texi:15756 msgid "Use the file @file{/btrfs/swapfile} as swap space, which is present on the @var{btrfs-fs} filesystem." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15403 +#: guix-git/doc/guix.texi:15760 #, no-wrap msgid "users" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15404 +#: guix-git/doc/guix.texi:15761 #, no-wrap msgid "accounts" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15405 +#: guix-git/doc/guix.texi:15762 #, no-wrap msgid "user accounts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15409 +#: guix-git/doc/guix.texi:15766 msgid "User accounts and groups are entirely managed through the @code{operating-system} declaration. They are specified with the @code{user-account} and @code{user-group} forms:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15419 +#: guix-git/doc/guix.texi:15776 #, no-wrap msgid "" "(user-account\n" @@ -26667,12 +27271,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15423 +#: guix-git/doc/guix.texi:15780 msgid "Here's a user account that uses a different shell and a custom home directory (the default would be @file{\"/home/bob\"}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15431 +#: guix-git/doc/guix.texi:15788 #, no-wrap msgid "" "(user-account\n" @@ -26684,171 +27288,171 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15440 +#: guix-git/doc/guix.texi:15797 msgid "When booting or upon completion of @command{guix system reconfigure}, the system ensures that only the user accounts and groups specified in the @code{operating-system} declaration exist, and with the specified properties. Thus, account or group creations or modifications made by directly invoking commands such as @command{useradd} are lost upon reconfiguration or reboot. This ensures that the system remains exactly as declared." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15441 +#: guix-git/doc/guix.texi:15798 #, no-wrap msgid "{Data Type} user-account" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15444 +#: guix-git/doc/guix.texi:15801 msgid "Objects of this type represent user accounts. The following members may be specified:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15448 +#: guix-git/doc/guix.texi:15805 msgid "The name of the user account." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:15449 guix-git/doc/guix.texi:34298 +#: guix-git/doc/guix.texi:15806 guix-git/doc/guix.texi:34737 #, no-wrap msgid "group" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15450 guix-git/doc/guix.texi:15534 +#: guix-git/doc/guix.texi:15807 guix-git/doc/guix.texi:15891 #, no-wrap msgid "groups" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15453 +#: guix-git/doc/guix.texi:15810 msgid "This is the name (a string) or identifier (a number) of the user group this account belongs to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15454 +#: guix-git/doc/guix.texi:15811 #, no-wrap msgid "@code{supplementary-groups} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15457 +#: guix-git/doc/guix.texi:15814 msgid "Optionally, this can be defined as a list of group names that this account belongs to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15458 +#: guix-git/doc/guix.texi:15815 #, no-wrap msgid "@code{uid} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15462 +#: guix-git/doc/guix.texi:15819 msgid "This is the user ID for this account (a number), or @code{#f}. In the latter case, a number is automatically chosen by the system when the account is created." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15463 guix-git/doc/guix.texi:18217 +#: guix-git/doc/guix.texi:15820 guix-git/doc/guix.texi:18579 #, no-wrap msgid "@code{comment} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15465 +#: guix-git/doc/guix.texi:15822 msgid "A comment about the account, such as the account owner's full name." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15470 +#: guix-git/doc/guix.texi:15827 msgid "Note that, for non-system accounts, users are free to change their real name as it appears in @file{/etc/passwd} using the @command{chfn} command. When they do, their choice prevails over the system administrator's choice; reconfiguring does @emph{not} change their name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:15471 +#: guix-git/doc/guix.texi:15828 #, no-wrap msgid "home-directory" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15473 +#: guix-git/doc/guix.texi:15830 msgid "This is the name of the home directory for the account." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15474 +#: guix-git/doc/guix.texi:15831 #, no-wrap msgid "@code{create-home-directory?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15477 +#: guix-git/doc/guix.texi:15834 msgid "Indicates whether the home directory of this account should be created if it does not exist yet." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15478 +#: guix-git/doc/guix.texi:15835 #, no-wrap msgid "@code{shell} (default: Bash)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15482 +#: guix-git/doc/guix.texi:15839 msgid "This is a G-expression denoting the file name of a program to be used as the shell (@pxref{G-Expressions}). For example, you would refer to the Bash executable like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15485 +#: guix-git/doc/guix.texi:15842 #, no-wrap msgid "(file-append bash \"/bin/bash\")\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15489 +#: guix-git/doc/guix.texi:15846 msgid "... and to the Zsh executable like that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15492 +#: guix-git/doc/guix.texi:15849 #, no-wrap msgid "(file-append zsh \"/bin/zsh\")\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:15494 guix-git/doc/guix.texi:15552 +#: guix-git/doc/guix.texi:15851 guix-git/doc/guix.texi:15909 #, no-wrap msgid "@code{system?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15498 +#: guix-git/doc/guix.texi:15855 msgid "This Boolean value indicates whether the account is a ``system'' account. System accounts are sometimes treated specially; for instance, graphical login managers do not list them." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:15500 +#: guix-git/doc/guix.texi:15857 msgid "user-account-password" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15500 +#: guix-git/doc/guix.texi:15857 #, no-wrap msgid "password, for user accounts" msgstr "" #. type: item -#: guix-git/doc/guix.texi:15501 guix-git/doc/guix.texi:15556 +#: guix-git/doc/guix.texi:15858 guix-git/doc/guix.texi:15913 #, no-wrap msgid "@code{password} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15507 +#: guix-git/doc/guix.texi:15864 msgid "You would normally leave this field to @code{#f}, initialize user passwords as @code{root} with the @command{passwd} command, and then let users change it with @command{passwd}. Passwords set with @command{passwd} are of course preserved across reboot and reconfiguration." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15511 +#: guix-git/doc/guix.texi:15868 msgid "If you @emph{do} want to set an initial password for an account, then this field must contain the encrypted password, as a string. You can use the @code{crypt} procedure for this purpose:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15516 +#: guix-git/doc/guix.texi:15873 #, no-wrap msgid "" "(user-account\n" @@ -26858,7 +27462,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15519 +#: guix-git/doc/guix.texi:15876 #, no-wrap msgid "" " ;; Specify a SHA-512-hashed initial password.\n" @@ -26866,171 +27470,171 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:15525 +#: guix-git/doc/guix.texi:15882 msgid "The hash of this initial password will be available in a file in @file{/gnu/store}, readable by all the users, so this method must be used with care." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15530 +#: guix-git/doc/guix.texi:15887 msgid "@xref{Passphrase Storage,,, libc, The GNU C Library Reference Manual}, for more information on password encryption, and @ref{Encryption,,, guile, GNU Guile Reference Manual}, for information on Guile's @code{crypt} procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15536 +#: guix-git/doc/guix.texi:15893 msgid "User group declarations are even simpler:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15539 +#: guix-git/doc/guix.texi:15896 #, no-wrap msgid "(user-group (name \"students\"))\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15541 +#: guix-git/doc/guix.texi:15898 #, no-wrap msgid "{Data Type} user-group" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15543 +#: guix-git/doc/guix.texi:15900 msgid "This type is for, well, user groups. There are just a few fields:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15547 +#: guix-git/doc/guix.texi:15904 msgid "The name of the group." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15548 guix-git/doc/guix.texi:30819 +#: guix-git/doc/guix.texi:15905 guix-git/doc/guix.texi:31184 #, no-wrap msgid "@code{id} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15551 +#: guix-git/doc/guix.texi:15908 msgid "The group identifier (a number). If @code{#f}, a new number is automatically allocated when the group is created." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15555 +#: guix-git/doc/guix.texi:15912 msgid "This Boolean value indicates whether the group is a ``system'' group. System groups have low numerical IDs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15559 +#: guix-git/doc/guix.texi:15916 msgid "What, user groups can have a password? Well, apparently yes. Unless @code{#f}, this field specifies the password of the group." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15565 +#: guix-git/doc/guix.texi:15922 msgid "For convenience, a variable lists all the basic user groups one may expect:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15566 +#: guix-git/doc/guix.texi:15923 #, no-wrap msgid "{Scheme Variable} %base-groups" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15571 +#: guix-git/doc/guix.texi:15928 msgid "This is the list of basic user groups that users and/or packages expect to be present on the system. This includes groups such as ``root'', ``wheel'', and ``users'', as well as groups used to control access to specific devices such as ``audio'', ``disk'', and ``cdrom''." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15573 +#: guix-git/doc/guix.texi:15930 #, no-wrap msgid "{Scheme Variable} %base-user-accounts" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15576 +#: guix-git/doc/guix.texi:15933 msgid "This is the list of basic system accounts that programs may expect to find on a GNU/Linux system, such as the ``nobody'' account." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15579 +#: guix-git/doc/guix.texi:15936 msgid "Note that the ``root'' account is not included here. It is a special-case and is automatically added whether or not it is specified." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15585 +#: guix-git/doc/guix.texi:15942 #, no-wrap msgid "keymap" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15593 +#: guix-git/doc/guix.texi:15950 msgid "To specify what each key of your keyboard does, you need to tell the operating system what @dfn{keyboard layout} you want to use. The default, when nothing is specified, is the US English QWERTY layout for 105-key PC keyboards. However, German speakers will usually prefer the German QWERTZ layout, French speakers will want the AZERTY layout, and so on; hackers might prefer Dvorak or bépo, and they might even want to further customize the effect of some of the keys. This section explains how to get that done." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15594 +#: guix-git/doc/guix.texi:15951 #, no-wrap msgid "keyboard layout, definition" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15596 +#: guix-git/doc/guix.texi:15953 msgid "There are three components that will want to know about your keyboard layout:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15603 +#: guix-git/doc/guix.texi:15960 msgid "The @emph{bootloader} may want to know what keyboard layout you want to use (@pxref{Bootloader Configuration, @code{keyboard-layout}}). This is useful if you want, for instance, to make sure that you can type the passphrase of your encrypted root partition using the right layout." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15608 +#: guix-git/doc/guix.texi:15965 msgid "The @emph{operating system kernel}, Linux, will need that so that the console is properly configured (@pxref{operating-system Reference, @code{keyboard-layout}})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15612 +#: guix-git/doc/guix.texi:15969 msgid "The @emph{graphical display server}, usually Xorg, also has its own idea of the keyboard layout (@pxref{X Window, @code{keyboard-layout}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15616 +#: guix-git/doc/guix.texi:15973 msgid "Guix allows you to configure all three separately but, fortunately, it allows you to share the same keyboard layout for all three components." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15617 +#: guix-git/doc/guix.texi:15974 #, no-wrap msgid "XKB, keyboard layouts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15625 +#: guix-git/doc/guix.texi:15982 msgid "Keyboard layouts are represented by records created by the @code{keyboard-layout} procedure of @code{(gnu system keyboard)}. Following the X Keyboard extension (XKB), each layout has four attributes: a name (often a language code such as ``fi'' for Finnish or ``jp'' for Japanese), an optional variant name, an optional keyboard model name, and a possibly empty list of additional options. In most cases the layout name is all you care about." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15626 +#: guix-git/doc/guix.texi:15983 #, no-wrap msgid "{Scheme Procedure} keyboard-layout @var{name} [@var{variant}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15629 +#: guix-git/doc/guix.texi:15986 msgid "[#:model] [#:options '()] Return a new keyboard layout with the given @var{name} and @var{variant}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15633 +#: guix-git/doc/guix.texi:15990 msgid "@var{name} must be a string such as @code{\"fr\"}; @var{variant} must be a string such as @code{\"bepo\"} or @code{\"nodeadkeys\"}. See the @code{xkeyboard-config} package for valid options." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15636 +#: guix-git/doc/guix.texi:15993 msgid "Here are a few examples:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15641 +#: guix-git/doc/guix.texi:15998 #, no-wrap msgid "" ";; The German QWERTZ layout. Here we assume a standard\n" @@ -27040,7 +27644,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15644 +#: guix-git/doc/guix.texi:16001 #, no-wrap msgid "" ";; The bépo variant of the French layout.\n" @@ -27049,7 +27653,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15647 +#: guix-git/doc/guix.texi:16004 #, no-wrap msgid "" ";; The Catalan layout.\n" @@ -27058,7 +27662,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15650 +#: guix-git/doc/guix.texi:16007 #, no-wrap msgid "" ";; Arabic layout with \"Alt-Shift\" to switch to US layout.\n" @@ -27067,7 +27671,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15657 +#: guix-git/doc/guix.texi:16014 #, no-wrap msgid "" ";; The Latin American Spanish layout. In addition, the\n" @@ -27080,7 +27684,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15660 +#: guix-git/doc/guix.texi:16017 #, no-wrap msgid "" ";; The Russian layout for a ThinkPad keyboard.\n" @@ -27089,7 +27693,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15665 +#: guix-git/doc/guix.texi:16022 #, no-wrap msgid "" ";; The \"US international\" layout, which is the US layout plus\n" @@ -27099,29 +27703,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15669 +#: guix-git/doc/guix.texi:16026 msgid "See the @file{share/X11/xkb} directory of the @code{xkeyboard-config} package for a complete list of supported layouts, variants, and models." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15670 +#: guix-git/doc/guix.texi:16027 #, no-wrap msgid "keyboard layout, configuration" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15674 +#: guix-git/doc/guix.texi:16031 msgid "Let's say you want your system to use the Turkish keyboard layout throughout your system---bootloader, console, and Xorg. Here's what your system configuration would look like:" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:15675 +#: guix-git/doc/guix.texi:16032 #, no-wrap msgid "set-xorg-configuration" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15679 +#: guix-git/doc/guix.texi:16036 #, no-wrap msgid "" ";; Using the Turkish layout for the bootloader, the console,\n" @@ -27130,7 +27734,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15691 +#: guix-git/doc/guix.texi:16048 #, no-wrap msgid "" "(operating-system\n" @@ -27147,76 +27751,76 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15698 +#: guix-git/doc/guix.texi:16055 msgid "In the example above, for GRUB and for Xorg, we just refer to the @code{keyboard-layout} field defined above, but we could just as well refer to a different layout. The @code{set-xorg-configuration} procedure communicates the desired Xorg configuration to the graphical log-in manager, by default GDM." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15701 +#: guix-git/doc/guix.texi:16058 msgid "We've discussed how to specify the @emph{default} keyboard layout of your system when it starts, but you can also adjust it at run time:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15706 +#: guix-git/doc/guix.texi:16063 msgid "If you're using GNOME, its settings panel has a ``Region & Language'' entry where you can select one or more keyboard layouts." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15711 +#: guix-git/doc/guix.texi:16068 msgid "Under Xorg, the @command{setxkbmap} command (from the same-named package) allows you to change the current layout. For example, this is how you would change the layout to US Dvorak:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15714 +#: guix-git/doc/guix.texi:16071 #, no-wrap msgid "setxkbmap us dvorak\n" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15721 +#: guix-git/doc/guix.texi:16078 msgid "The @code{loadkeys} command changes the keyboard layout in effect in the Linux console. However, note that @code{loadkeys} does @emph{not} use the XKB keyboard layout categorization described above. The command below loads the French bépo layout:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15724 +#: guix-git/doc/guix.texi:16081 #, no-wrap msgid "loadkeys fr-bepo\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15730 +#: guix-git/doc/guix.texi:16087 #, no-wrap msgid "locale" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15737 +#: guix-git/doc/guix.texi:16094 msgid "A @dfn{locale} defines cultural conventions for a particular language and region of the world (@pxref{Locales,,, libc, The GNU C Library Reference Manual}). Each locale has a name that typically has the form @code{@var{language}_@var{territory}.@var{codeset}}---e.g., @code{fr_LU.utf8} designates the locale for the French language, with cultural conventions from Luxembourg, and using the UTF-8 encoding." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15738 +#: guix-git/doc/guix.texi:16095 #, no-wrap msgid "locale definition" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15742 +#: guix-git/doc/guix.texi:16099 msgid "Usually, you will want to specify the default locale for the machine using the @code{locale} field of the @code{operating-system} declaration (@pxref{operating-system Reference, @code{locale}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15751 +#: guix-git/doc/guix.texi:16108 msgid "The selected locale is automatically added to the @dfn{locale definitions} known to the system if needed, with its codeset inferred from its name---e.g., @code{bo_CN.utf8} will be assumed to use the @code{UTF-8} codeset. Additional locale definitions can be specified in the @code{locale-definitions} slot of @code{operating-system}---this is useful, for instance, if the codeset could not be inferred from the locale name. The default set of locale definitions includes some widely used locales, but not all the available locales, in order to save space." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15754 +#: guix-git/doc/guix.texi:16111 msgid "For instance, to add the North Frisian locale for Germany, the value of that field may be:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15759 +#: guix-git/doc/guix.texi:16116 #, no-wrap msgid "" "(cons (locale-definition\n" @@ -27225,12 +27829,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15763 +#: guix-git/doc/guix.texi:16120 msgid "Likewise, to save space, one might want @code{locale-definitions} to list only the locales that are actually used, as in:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15768 +#: guix-git/doc/guix.texi:16125 #, no-wrap msgid "" "(list (locale-definition\n" @@ -27239,114 +27843,114 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15777 +#: guix-git/doc/guix.texi:16134 msgid "The compiled locale definitions are available at @file{/run/current-system/locale/X.Y}, where @code{X.Y} is the libc version, which is the default location where the GNU@tie{}libc provided by Guix looks for locale data. This can be overridden using the @env{LOCPATH} environment variable (@pxref{locales-and-locpath, @env{LOCPATH} and locale packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15780 +#: guix-git/doc/guix.texi:16137 msgid "The @code{locale-definition} form is provided by the @code{(gnu system locale)} module. Details are given below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15781 +#: guix-git/doc/guix.texi:16138 #, no-wrap msgid "{Data Type} locale-definition" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15783 +#: guix-git/doc/guix.texi:16140 msgid "This is the data type of a locale definition." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15789 +#: guix-git/doc/guix.texi:16146 msgid "The name of the locale. @xref{Locale Names,,, libc, The GNU C Library Reference Manual}, for more information on locale names." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15793 +#: guix-git/doc/guix.texi:16150 msgid "The name of the source for that locale. This is typically the @code{@var{language}_@var{territory}} part of the locale name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15794 +#: guix-git/doc/guix.texi:16151 #, no-wrap msgid "@code{charset} (default: @code{\"UTF-8\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15798 +#: guix-git/doc/guix.texi:16155 msgid "The ``character set'' or ``code set'' for that locale, @uref{https://www.iana.org/assignments/character-sets, as defined by IANA}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15802 +#: guix-git/doc/guix.texi:16159 #, no-wrap msgid "{Scheme Variable} %default-locale-definitions" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15806 +#: guix-git/doc/guix.texi:16163 msgid "A list of commonly used UTF-8 locales, used as the default value of the @code{locale-definitions} field of @code{operating-system} declarations." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15807 +#: guix-git/doc/guix.texi:16164 #, no-wrap msgid "locale name" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15808 +#: guix-git/doc/guix.texi:16165 #, no-wrap msgid "normalized codeset in locale names" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15814 +#: guix-git/doc/guix.texi:16171 msgid "These locale definitions use the @dfn{normalized codeset} for the part that follows the dot in the name (@pxref{Using gettextized software, normalized codeset,, libc, The GNU C Library Reference Manual}). So for instance it has @code{uk_UA.utf8} but @emph{not}, say, @code{uk_UA.UTF-8}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:15816 +#: guix-git/doc/guix.texi:16173 #, no-wrap msgid "Locale Data Compatibility Considerations" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15818 +#: guix-git/doc/guix.texi:16175 #, no-wrap msgid "incompatibility, of locale data" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15825 +#: guix-git/doc/guix.texi:16182 msgid "@code{operating-system} declarations provide a @code{locale-libcs} field to specify the GNU@tie{}libc packages that are used to compile locale declarations (@pxref{operating-system Reference}). ``Why would I care?'', you may ask. Well, it turns out that the binary format of locale data is occasionally incompatible from one libc version to another." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15837 +#: guix-git/doc/guix.texi:16194 msgid "For instance, a program linked against libc version 2.21 is unable to read locale data produced with libc 2.22; worse, that program @emph{aborts} instead of simply ignoring the incompatible locale data@footnote{Versions 2.23 and later of GNU@tie{}libc will simply skip the incompatible locale data, which is already an improvement.}. Similarly, a program linked against libc 2.22 can read most, but not all, of the locale data from libc 2.21 (specifically, @env{LC_COLLATE} data is incompatible); thus calls to @code{setlocale} may fail, but programs will not abort." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15842 +#: guix-git/doc/guix.texi:16199 msgid "The ``problem'' with Guix is that users have a lot of freedom: They can choose whether and when to upgrade software in their profiles, and might be using a libc version different from the one the system administrator used to build the system-wide locale data." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15846 +#: guix-git/doc/guix.texi:16203 msgid "Fortunately, unprivileged users can also install their own locale data and define @env{GUIX_LOCPATH} accordingly (@pxref{locales-and-locpath, @env{GUIX_LOCPATH} and locale packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15853 +#: guix-git/doc/guix.texi:16210 msgid "Still, it is best if the system-wide locale data at @file{/run/current-system/locale} is built for all the libc versions actually in use on the system, so that all the programs can access it---this is especially crucial on a multi-user system. To do that, the administrator can specify several libc packages in the @code{locale-libcs} field of @code{operating-system}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15856 +#: guix-git/doc/guix.texi:16213 #, no-wrap msgid "" "(use-package-modules base)\n" @@ -27354,7 +27958,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15860 +#: guix-git/doc/guix.texi:16217 #, no-wrap msgid "" "(operating-system\n" @@ -27363,39 +27967,39 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15865 +#: guix-git/doc/guix.texi:16222 msgid "This example would lead to a system containing locale definitions for both libc 2.21 and the current version of libc in @file{/run/current-system/locale}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15870 +#: guix-git/doc/guix.texi:16227 #, no-wrap msgid "system services" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15876 +#: guix-git/doc/guix.texi:16233 msgid "An important part of preparing an @code{operating-system} declaration is listing @dfn{system services} and their configuration (@pxref{Using the Configuration System}). System services are typically daemons launched when the system boots, or other actions needed at that time---e.g., configuring network access." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15883 +#: guix-git/doc/guix.texi:16240 msgid "Guix has a broad definition of ``service'' (@pxref{Service Composition}), but many services are managed by the GNU@tie{}Shepherd (@pxref{Shepherd Services}). On a running system, the @command{herd} command allows you to list the available services, show their status, start and stop them, or do other specific operations (@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}). For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15886 +#: guix-git/doc/guix.texi:16243 #, no-wrap msgid "# herd status\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15891 +#: guix-git/doc/guix.texi:16248 msgid "The above command, run as @code{root}, lists the currently defined services. The @command{herd doc} command shows a synopsis of the given service and its associated actions:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15895 +#: guix-git/doc/guix.texi:16252 #, no-wrap msgid "" "# herd doc nscd\n" @@ -27404,7 +28008,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15898 +#: guix-git/doc/guix.texi:16255 #, no-wrap msgid "" "# herd doc nscd action invalidate\n" @@ -27412,12 +28016,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15903 +#: guix-git/doc/guix.texi:16260 msgid "The @command{start}, @command{stop}, and @command{restart} sub-commands have the effect you would expect. For instance, the commands below stop the nscd service and restart the Xorg display server:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15910 +#: guix-git/doc/guix.texi:16267 #, no-wrap msgid "" "# herd stop nscd\n" @@ -27428,45 +28032,45 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15915 +#: guix-git/doc/guix.texi:16272 msgid "The following sections document the available services, starting with the core services, that may be used in an @code{operating-system} declaration." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:15951 guix-git/doc/guix.texi:24198 -#: guix-git/doc/guix.texi:24199 +#: guix-git/doc/guix.texi:16308 guix-git/doc/guix.texi:24560 +#: guix-git/doc/guix.texi:24561 #, no-wrap msgid "File-Sharing Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:16308 msgid "File-sharing services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15959 +#: guix-git/doc/guix.texi:16316 msgid "The @code{(gnu services base)} module provides definitions for the basic services that one expects from the system. The services exported by this module are listed below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15960 +#: guix-git/doc/guix.texi:16317 #, no-wrap msgid "{Scheme Variable} %base-services" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15966 +#: guix-git/doc/guix.texi:16323 msgid "This variable contains a list of basic services (@pxref{Service Types and Services}, for more information on service objects) one would expect from the system: a login service (mingetty) on each tty, syslogd, the libc name service cache daemon (nscd), the udev device manager, and more." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15971 +#: guix-git/doc/guix.texi:16328 msgid "This is the default value of the @code{services} field of @code{operating-system} declarations. Usually, when customizing a system, you will want to append services to @code{%base-services}, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15976 +#: guix-git/doc/guix.texi:16333 #, no-wrap msgid "" "(append (list (service avahi-service-type)\n" @@ -27475,58 +28079,58 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15979 +#: guix-git/doc/guix.texi:16336 #, no-wrap msgid "{Scheme Variable} special-files-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15982 +#: guix-git/doc/guix.texi:16339 msgid "This is the service that sets up ``special files'' such as @file{/bin/sh}; an instance of it is part of @code{%base-services}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15986 +#: guix-git/doc/guix.texi:16343 msgid "The value associated with @code{special-files-service-type} services must be a list of tuples where the first element is the ``special file'' and the second element is its target. By default it is:" msgstr "" #. type: file{#1} -#: guix-git/doc/guix.texi:15987 +#: guix-git/doc/guix.texi:16344 #, no-wrap msgid "/bin/sh" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15988 +#: guix-git/doc/guix.texi:16345 #, no-wrap msgid "@file{sh}, in @file{/bin}" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15991 +#: guix-git/doc/guix.texi:16348 #, no-wrap msgid "`((\"/bin/sh\" ,(file-append bash \"/bin/sh\")))\n" msgstr "" #. type: file{#1} -#: guix-git/doc/guix.texi:15993 +#: guix-git/doc/guix.texi:16350 #, no-wrap msgid "/usr/bin/env" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15994 +#: guix-git/doc/guix.texi:16351 #, no-wrap msgid "@file{env}, in @file{/usr/bin}" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15997 +#: guix-git/doc/guix.texi:16354 msgid "If you want to add, say, @code{/usr/bin/env} to your system, you can change it to:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16001 +#: guix-git/doc/guix.texi:16358 #, no-wrap msgid "" "`((\"/bin/sh\" ,(file-append bash \"/bin/sh\"))\n" @@ -27534,28 +28138,28 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16008 +#: guix-git/doc/guix.texi:16365 msgid "Since this is part of @code{%base-services}, you can use @code{modify-services} to customize the set of special files (@pxref{Service Reference, @code{modify-services}}). But the simple way to add a special file is @i{via} the @code{extra-special-file} procedure (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16010 +#: guix-git/doc/guix.texi:16367 #, no-wrap msgid "{Scheme Procedure} extra-special-file @var{file} @var{target}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16012 +#: guix-git/doc/guix.texi:16369 msgid "Use @var{target} as the ``special file'' @var{file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16016 +#: guix-git/doc/guix.texi:16373 msgid "For example, adding the following lines to the @code{services} field of your operating system declaration leads to a @file{/usr/bin/env} symlink:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16020 +#: guix-git/doc/guix.texi:16377 #, no-wrap msgid "" "(extra-special-file \"/usr/bin/env\"\n" @@ -27563,29 +28167,29 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16023 +#: guix-git/doc/guix.texi:16380 #, no-wrap msgid "{Scheme Procedure} host-name-service @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16025 +#: guix-git/doc/guix.texi:16382 msgid "Return a service that sets the host name to @var{name}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16027 +#: guix-git/doc/guix.texi:16384 #, no-wrap msgid "{Scheme Variable} console-font-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16032 +#: guix-git/doc/guix.texi:16389 msgid "Install the given fonts on the specified ttys (fonts are per virtual console on the kernel Linux). The value of this service is a list of tty/font pairs. The font can be the name of a font provided by the @code{kbd} package or any valid argument to @command{setfont}, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16041 +#: guix-git/doc/guix.texi:16398 #, no-wrap msgid "" "`((\"tty1\" . \"LatGrkCyr-8x16\")\n" @@ -27598,1109 +28202,1109 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16044 +#: guix-git/doc/guix.texi:16401 #, no-wrap msgid "{Scheme Procedure} login-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16048 +#: guix-git/doc/guix.texi:16405 msgid "Return a service to run login according to @var{config}, a @code{} object, which specifies the message of the day, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16050 +#: guix-git/doc/guix.texi:16407 #, no-wrap msgid "{Data Type} login-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16052 +#: guix-git/doc/guix.texi:16409 msgid "This is the data type representing the configuration of login." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16055 +#: guix-git/doc/guix.texi:16412 #, no-wrap msgid "motd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16056 +#: guix-git/doc/guix.texi:16413 #, no-wrap msgid "message of the day" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16058 +#: guix-git/doc/guix.texi:16415 msgid "A file-like object containing the ``message of the day''." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16059 guix-git/doc/guix.texi:19280 +#: guix-git/doc/guix.texi:16416 guix-git/doc/guix.texi:19642 #, no-wrap msgid "@code{allow-empty-passwords?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16062 +#: guix-git/doc/guix.texi:16419 msgid "Allow empty passwords by default so that first-time users can log in when the 'root' account has just been created." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16066 +#: guix-git/doc/guix.texi:16423 #, no-wrap msgid "{Scheme Procedure} mingetty-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16070 +#: guix-git/doc/guix.texi:16427 msgid "Return a service to run mingetty according to @var{config}, a @code{} object, which specifies the tty to run, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16072 +#: guix-git/doc/guix.texi:16429 #, no-wrap msgid "{Data Type} mingetty-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16075 +#: guix-git/doc/guix.texi:16432 msgid "This is the data type representing the configuration of Mingetty, which provides the default implementation of virtual console log-in." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16078 guix-git/doc/guix.texi:16117 -#: guix-git/doc/guix.texi:33550 +#: guix-git/doc/guix.texi:16435 guix-git/doc/guix.texi:16474 +#: guix-git/doc/guix.texi:33987 #, no-wrap msgid "tty" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16080 +#: guix-git/doc/guix.texi:16437 msgid "The name of the console this Mingetty runs on---e.g., @code{\"tty1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16081 guix-git/doc/guix.texi:16146 -#: guix-git/doc/guix.texi:16305 +#: guix-git/doc/guix.texi:16438 guix-git/doc/guix.texi:16503 +#: guix-git/doc/guix.texi:16662 #, no-wrap msgid "@code{auto-login} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16085 +#: guix-git/doc/guix.texi:16442 msgid "When true, this field must be a string denoting the user name under which the system automatically logs in. When it is @code{#f}, a user name and password must be entered to log in." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16086 +#: guix-git/doc/guix.texi:16443 #, no-wrap msgid "@code{login-program} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16090 +#: guix-git/doc/guix.texi:16447 msgid "This must be either @code{#f}, in which case the default log-in program is used (@command{login} from the Shadow tool suite), or a gexp denoting the name of the log-in program." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16091 +#: guix-git/doc/guix.texi:16448 #, no-wrap msgid "@code{login-pause?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16094 +#: guix-git/doc/guix.texi:16451 msgid "When set to @code{#t} in conjunction with @var{auto-login}, the user will have to press a key before the log-in shell is launched." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16095 +#: guix-git/doc/guix.texi:16452 #, no-wrap msgid "@code{clear-on-logout?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16097 +#: guix-git/doc/guix.texi:16454 msgid "When set to @code{#t}, the screen will be cleared after logout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16098 +#: guix-git/doc/guix.texi:16455 #, no-wrap msgid "@code{mingetty} (default: @var{mingetty})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16100 +#: guix-git/doc/guix.texi:16457 msgid "The Mingetty package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16104 +#: guix-git/doc/guix.texi:16461 #, no-wrap msgid "{Scheme Procedure} agetty-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16108 +#: guix-git/doc/guix.texi:16465 msgid "Return a service to run agetty according to @var{config}, an @code{} object, which specifies the tty to run, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16110 +#: guix-git/doc/guix.texi:16467 #, no-wrap msgid "{Data Type} agetty-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16114 +#: guix-git/doc/guix.texi:16471 msgid "This is the data type representing the configuration of agetty, which implements virtual and serial console log-in. See the @code{agetty(8)} man page for more information." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16121 +#: guix-git/doc/guix.texi:16478 msgid "The name of the console this agetty runs on, as a string---e.g., @code{\"ttyS0\"}. This argument is optional, it will default to a reasonable default serial port used by the kernel Linux." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16125 +#: guix-git/doc/guix.texi:16482 msgid "For this, if there is a value for an option @code{agetty.tty} in the kernel command line, agetty will extract the device name of the serial port from it and use that." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16129 +#: guix-git/doc/guix.texi:16486 msgid "If not and if there is a value for an option @code{console} with a tty in the Linux command line, agetty will extract the device name of the serial port from it and use that." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16133 +#: guix-git/doc/guix.texi:16490 msgid "In both cases, agetty will leave the other serial device settings (baud rate etc.)@: alone---in the hope that Linux pinned them to the correct values." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16134 guix-git/doc/guix.texi:33711 +#: guix-git/doc/guix.texi:16491 guix-git/doc/guix.texi:34148 #, no-wrap msgid "@code{baud-rate} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16137 +#: guix-git/doc/guix.texi:16494 msgid "A string containing a comma-separated list of one or more baud rates, in descending order." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16138 +#: guix-git/doc/guix.texi:16495 #, no-wrap msgid "@code{term} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16141 +#: guix-git/doc/guix.texi:16498 msgid "A string containing the value used for the @env{TERM} environment variable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16142 +#: guix-git/doc/guix.texi:16499 #, no-wrap msgid "@code{eight-bits?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16145 +#: guix-git/doc/guix.texi:16502 msgid "When @code{#t}, the tty is assumed to be 8-bit clean, and parity detection is disabled." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16149 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:16506 guix-git/doc/guix.texi:16665 msgid "When passed a login name, as a string, the specified user will be logged in automatically without prompting for their login name or password." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16150 +#: guix-git/doc/guix.texi:16507 #, no-wrap msgid "@code{no-reset?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16152 +#: guix-git/doc/guix.texi:16509 msgid "When @code{#t}, don't reset terminal cflags (control modes)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16153 +#: guix-git/doc/guix.texi:16510 #, no-wrap msgid "@code{host} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16156 +#: guix-git/doc/guix.texi:16513 msgid "This accepts a string containing the ``login_host'', which will be written into the @file{/var/run/utmpx} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16157 +#: guix-git/doc/guix.texi:16514 #, no-wrap msgid "@code{remote?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16161 +#: guix-git/doc/guix.texi:16518 msgid "When set to @code{#t} in conjunction with @var{host}, this will add an @code{-r} fakehost option to the command line of the login program specified in @var{login-program}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16162 +#: guix-git/doc/guix.texi:16519 #, no-wrap msgid "@code{flow-control?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16164 +#: guix-git/doc/guix.texi:16521 msgid "When set to @code{#t}, enable hardware (RTS/CTS) flow control." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16165 +#: guix-git/doc/guix.texi:16522 #, no-wrap msgid "@code{no-issue?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16168 +#: guix-git/doc/guix.texi:16525 msgid "When set to @code{#t}, the contents of the @file{/etc/issue} file will not be displayed before presenting the login prompt." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16169 +#: guix-git/doc/guix.texi:16526 #, no-wrap msgid "@code{init-string} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16172 +#: guix-git/doc/guix.texi:16529 msgid "This accepts a string that will be sent to the tty or modem before sending anything else. It can be used to initialize a modem." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16173 +#: guix-git/doc/guix.texi:16530 #, no-wrap msgid "@code{no-clear?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16176 +#: guix-git/doc/guix.texi:16533 msgid "When set to @code{#t}, agetty will not clear the screen before showing the login prompt." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16177 +#: guix-git/doc/guix.texi:16534 #, no-wrap msgid "@code{login-program} (default: (file-append shadow \"/bin/login\"))" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16181 +#: guix-git/doc/guix.texi:16538 msgid "This must be either a gexp denoting the name of a log-in program, or unset, in which case the default value is the @command{login} from the Shadow tool suite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16182 +#: guix-git/doc/guix.texi:16539 #, no-wrap msgid "@code{local-line} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16186 +#: guix-git/doc/guix.texi:16543 msgid "Control the CLOCAL line flag. This accepts one of three symbols as arguments, @code{'auto}, @code{'always}, or @code{'never}. If @code{#f}, the default value chosen by agetty is @code{'auto}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16187 +#: guix-git/doc/guix.texi:16544 #, no-wrap msgid "@code{extract-baud?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16190 +#: guix-git/doc/guix.texi:16547 msgid "When set to @code{#t}, instruct agetty to try to extract the baud rate from the status messages produced by certain types of modems." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16191 +#: guix-git/doc/guix.texi:16548 #, no-wrap msgid "@code{skip-login?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16195 +#: guix-git/doc/guix.texi:16552 msgid "When set to @code{#t}, do not prompt the user for a login name. This can be used with @var{login-program} field to use non-standard login systems." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16196 +#: guix-git/doc/guix.texi:16553 #, no-wrap msgid "@code{no-newline?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16199 +#: guix-git/doc/guix.texi:16556 msgid "When set to @code{#t}, do not print a newline before printing the @file{/etc/issue} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16201 +#: guix-git/doc/guix.texi:16558 #, no-wrap msgid "@code{login-options} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16206 +#: guix-git/doc/guix.texi:16563 msgid "This option accepts a string containing options that are passed to the login program. When used with the @var{login-program}, be aware that a malicious user could try to enter a login name containing embedded options that could be parsed by the login program." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16207 +#: guix-git/doc/guix.texi:16564 #, no-wrap msgid "@code{login-pause} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16211 +#: guix-git/doc/guix.texi:16568 msgid "When set to @code{#t}, wait for any key before showing the login prompt. This can be used in conjunction with @var{auto-login} to save memory by lazily spawning shells." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16212 +#: guix-git/doc/guix.texi:16569 #, no-wrap msgid "@code{chroot} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16215 +#: guix-git/doc/guix.texi:16572 msgid "Change root to the specified directory. This option accepts a directory path as a string." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16216 +#: guix-git/doc/guix.texi:16573 #, no-wrap msgid "@code{hangup?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16219 +#: guix-git/doc/guix.texi:16576 msgid "Use the Linux system call @code{vhangup} to do a virtual hangup of the specified terminal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16220 +#: guix-git/doc/guix.texi:16577 #, no-wrap msgid "@code{keep-baud?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16224 +#: guix-git/doc/guix.texi:16581 msgid "When set to @code{#t}, try to keep the existing baud rate. The baud rates from @var{baud-rate} are used when agetty receives a @key{BREAK} character." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16225 +#: guix-git/doc/guix.texi:16582 #, no-wrap msgid "@code{timeout} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16228 +#: guix-git/doc/guix.texi:16585 msgid "When set to an integer value, terminate if no user name could be read within @var{timeout} seconds." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16229 +#: guix-git/doc/guix.texi:16586 #, no-wrap msgid "@code{detect-case?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16235 +#: guix-git/doc/guix.texi:16592 msgid "When set to @code{#t}, turn on support for detecting an uppercase-only terminal. This setting will detect a login name containing only uppercase letters as indicating an uppercase-only terminal and turn on some upper-to-lower case conversions. Note that this will not support Unicode characters." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16236 +#: guix-git/doc/guix.texi:16593 #, no-wrap msgid "@code{wait-cr?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16241 +#: guix-git/doc/guix.texi:16598 msgid "When set to @code{#t}, wait for the user or modem to send a carriage-return or linefeed character before displaying @file{/etc/issue} or login prompt. This is typically used with the @var{init-string} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16242 +#: guix-git/doc/guix.texi:16599 #, no-wrap msgid "@code{no-hints?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16245 +#: guix-git/doc/guix.texi:16602 msgid "When set to @code{#t}, do not print hints about Num, Caps, and Scroll locks." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16246 +#: guix-git/doc/guix.texi:16603 #, no-wrap msgid "@code{no-hostname?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16249 +#: guix-git/doc/guix.texi:16606 msgid "By default, the hostname is printed. When this option is set to @code{#t}, no hostname will be shown at all." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16250 +#: guix-git/doc/guix.texi:16607 #, no-wrap msgid "@code{long-hostname?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16254 +#: guix-git/doc/guix.texi:16611 msgid "By default, the hostname is only printed until the first dot. When this option is set to @code{#t}, the fully qualified hostname by @code{gethostname} or @code{getaddrinfo} is shown." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16255 +#: guix-git/doc/guix.texi:16612 #, no-wrap msgid "@code{erase-characters} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16258 +#: guix-git/doc/guix.texi:16615 msgid "This option accepts a string of additional characters that should be interpreted as backspace when the user types their login name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16259 +#: guix-git/doc/guix.texi:16616 #, no-wrap msgid "@code{kill-characters} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16263 +#: guix-git/doc/guix.texi:16620 msgid "This option accepts a string that should be interpreted to mean ``ignore all previous characters'' (also called a ``kill'' character) when the user types their login name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16264 +#: guix-git/doc/guix.texi:16621 #, no-wrap msgid "@code{chdir} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16267 +#: guix-git/doc/guix.texi:16624 msgid "This option accepts, as a string, a directory path that will be changed to before login." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16268 +#: guix-git/doc/guix.texi:16625 #, no-wrap msgid "@code{delay} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16271 +#: guix-git/doc/guix.texi:16628 msgid "This options accepts, as an integer, the number of seconds to sleep before opening the tty and displaying the login prompt." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16272 +#: guix-git/doc/guix.texi:16629 #, no-wrap msgid "@code{nice} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16275 +#: guix-git/doc/guix.texi:16632 msgid "This option accepts, as an integer, the nice value with which to run the @command{login} program." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16276 guix-git/doc/guix.texi:16564 -#: guix-git/doc/guix.texi:17478 guix-git/doc/guix.texi:25181 -#: guix-git/doc/guix.texi:26658 guix-git/doc/guix.texi:29074 -#: guix-git/doc/guix.texi:29869 guix-git/doc/guix.texi:31622 -#: guix-git/doc/guix.texi:34051 +#: guix-git/doc/guix.texi:16633 guix-git/doc/guix.texi:16921 +#: guix-git/doc/guix.texi:17840 guix-git/doc/guix.texi:25543 +#: guix-git/doc/guix.texi:26995 guix-git/doc/guix.texi:29411 +#: guix-git/doc/guix.texi:30234 guix-git/doc/guix.texi:31987 +#: guix-git/doc/guix.texi:34488 #, no-wrap msgid "@code{extra-options} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16279 +#: guix-git/doc/guix.texi:16636 msgid "This option provides an ``escape hatch'' for the user to provide arbitrary command-line arguments to @command{agetty} as a list of strings." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16283 +#: guix-git/doc/guix.texi:16640 #, no-wrap msgid "{Scheme Procedure} kmscon-service-type @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16287 +#: guix-git/doc/guix.texi:16644 msgid "Return a service to run @uref{https://www.freedesktop.org/wiki/Software/kmscon,kmscon} according to @var{config}, a @code{} object, which specifies the tty to run, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16289 +#: guix-git/doc/guix.texi:16646 #, no-wrap msgid "{Data Type} kmscon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16292 +#: guix-git/doc/guix.texi:16649 msgid "This is the data type representing the configuration of Kmscon, which implements virtual console log-in." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16295 +#: guix-git/doc/guix.texi:16652 #, no-wrap msgid "virtual-terminal" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16297 +#: guix-git/doc/guix.texi:16654 msgid "The name of the console this Kmscon runs on---e.g., @code{\"tty1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16298 +#: guix-git/doc/guix.texi:16655 #, no-wrap msgid "@code{login-program} (default: @code{#~(string-append #$shadow \"/bin/login\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16301 +#: guix-git/doc/guix.texi:16658 msgid "A gexp denoting the name of the log-in program. The default log-in program is @command{login} from the Shadow tool suite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16302 +#: guix-git/doc/guix.texi:16659 #, no-wrap msgid "@code{login-arguments} (default: @code{'(\"-p\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16304 +#: guix-git/doc/guix.texi:16661 msgid "A list of arguments to pass to @command{login}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16309 +#: guix-git/doc/guix.texi:16666 #, no-wrap msgid "@code{hardware-acceleration?} (default: #f)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16311 +#: guix-git/doc/guix.texi:16668 msgid "Whether to use hardware acceleration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16312 +#: guix-git/doc/guix.texi:16669 #, no-wrap msgid "@code{font-engine} (default: @code{\"pango\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16314 +#: guix-git/doc/guix.texi:16671 msgid "Font engine used in Kmscon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16315 +#: guix-git/doc/guix.texi:16672 #, no-wrap msgid "@code{font-size} (default: @code{12})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16317 +#: guix-git/doc/guix.texi:16674 msgid "Font size used in Kmscon." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16321 +#: guix-git/doc/guix.texi:16678 msgid "If this is @code{#f}, Kmscon uses the default keyboard layout---usually US English (``qwerty'') for a 105-key PC keyboard." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16325 +#: guix-git/doc/guix.texi:16682 msgid "Otherwise this must be a @code{keyboard-layout} object specifying the keyboard layout. @xref{Keyboard Layout}, for more information on how to specify the keyboard layout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16326 +#: guix-git/doc/guix.texi:16683 #, no-wrap msgid "@code{kmscon} (default: @var{kmscon})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16328 +#: guix-git/doc/guix.texi:16685 msgid "The Kmscon package to use." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16332 +#: guix-git/doc/guix.texi:16689 #, no-wrap msgid "name service cache daemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16333 +#: guix-git/doc/guix.texi:16690 #, no-wrap msgid "nscd" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16334 +#: guix-git/doc/guix.texi:16691 #, no-wrap msgid "{Scheme Procedure} nscd-service [@var{config}] [#:glibc glibc] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16339 +#: guix-git/doc/guix.texi:16696 msgid "[#:name-services '()] Return a service that runs the libc name service cache daemon (nscd) with the given @var{config}---an @code{} object. @xref{Name Service Switch}, for an example." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16341 +#: guix-git/doc/guix.texi:16698 msgid "For convenience, the Shepherd service for nscd provides the following actions:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16343 +#: guix-git/doc/guix.texi:16700 #, no-wrap msgid "invalidate" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16344 +#: guix-git/doc/guix.texi:16701 #, no-wrap msgid "cache invalidation, nscd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16345 +#: guix-git/doc/guix.texi:16702 #, no-wrap msgid "nscd, cache invalidation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16347 +#: guix-git/doc/guix.texi:16704 msgid "This invalidate the given cache. For instance, running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16350 +#: guix-git/doc/guix.texi:16707 #, no-wrap msgid "herd invalidate nscd hosts\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16354 +#: guix-git/doc/guix.texi:16711 msgid "invalidates the host name lookup cache of nscd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16355 +#: guix-git/doc/guix.texi:16712 #, no-wrap msgid "statistics" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16358 +#: guix-git/doc/guix.texi:16715 msgid "Running @command{herd statistics nscd} displays information about nscd usage and caches." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16362 +#: guix-git/doc/guix.texi:16719 #, no-wrap msgid "{Scheme Variable} %nscd-default-configuration" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16366 +#: guix-git/doc/guix.texi:16723 msgid "This is the default @code{} value (see below) used by @code{nscd-service}. It uses the caches defined by @code{%nscd-default-caches}; see below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16368 +#: guix-git/doc/guix.texi:16725 #, no-wrap msgid "{Data Type} nscd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16371 +#: guix-git/doc/guix.texi:16728 msgid "This is the data type representing the name service cache daemon (nscd) configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16374 +#: guix-git/doc/guix.texi:16731 #, no-wrap msgid "@code{name-services} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16377 +#: guix-git/doc/guix.texi:16734 msgid "List of packages denoting @dfn{name services} that must be visible to the nscd---e.g., @code{(list @var{nss-mdns})}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16378 +#: guix-git/doc/guix.texi:16735 #, no-wrap msgid "@code{glibc} (default: @var{glibc})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16381 +#: guix-git/doc/guix.texi:16738 msgid "Package object denoting the GNU C Library providing the @command{nscd} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16382 +#: guix-git/doc/guix.texi:16739 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/nscd.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16385 +#: guix-git/doc/guix.texi:16742 msgid "Name of the nscd log file. This is where debugging output goes when @code{debug-level} is strictly positive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16386 +#: guix-git/doc/guix.texi:16743 #, no-wrap msgid "@code{debug-level} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16389 +#: guix-git/doc/guix.texi:16746 msgid "Integer denoting the debugging levels. Higher numbers mean that more debugging output is logged." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16390 +#: guix-git/doc/guix.texi:16747 #, no-wrap msgid "@code{caches} (default: @code{%nscd-default-caches})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16393 +#: guix-git/doc/guix.texi:16750 msgid "List of @code{} objects denoting things to be cached; see below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16397 +#: guix-git/doc/guix.texi:16754 #, no-wrap msgid "{Data Type} nscd-cache" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16399 +#: guix-git/doc/guix.texi:16756 msgid "Data type representing a cache database of nscd and its parameters." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16402 guix-git/doc/guix.texi:21071 +#: guix-git/doc/guix.texi:16759 guix-git/doc/guix.texi:21433 #, no-wrap msgid "database" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16407 +#: guix-git/doc/guix.texi:16764 msgid "This is a symbol representing the name of the database to be cached. Valid values are @code{passwd}, @code{group}, @code{hosts}, and @code{services}, which designate the corresponding NSS database (@pxref{NSS Basics,,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16408 +#: guix-git/doc/guix.texi:16765 #, no-wrap msgid "positive-time-to-live" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:16409 +#: guix-git/doc/guix.texi:16766 #, no-wrap msgid "@code{negative-time-to-live} (default: @code{20})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16412 +#: guix-git/doc/guix.texi:16769 msgid "A number representing the number of seconds during which a positive or negative lookup result remains in cache." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16413 +#: guix-git/doc/guix.texi:16770 #, no-wrap msgid "@code{check-files?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16416 +#: guix-git/doc/guix.texi:16773 msgid "Whether to check for updates of the files corresponding to @var{database}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16420 +#: guix-git/doc/guix.texi:16777 msgid "For instance, when @var{database} is @code{hosts}, setting this flag instructs nscd to check for updates in @file{/etc/hosts} and to take them into account." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16421 +#: guix-git/doc/guix.texi:16778 #, no-wrap msgid "@code{persistent?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16423 +#: guix-git/doc/guix.texi:16780 msgid "Whether the cache should be stored persistently on disk." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16424 +#: guix-git/doc/guix.texi:16781 #, no-wrap msgid "@code{shared?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16426 +#: guix-git/doc/guix.texi:16783 msgid "Whether the cache should be shared among users." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16427 +#: guix-git/doc/guix.texi:16784 #, no-wrap msgid "@code{max-database-size} (default: 32@tie{}MiB)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16429 +#: guix-git/doc/guix.texi:16786 msgid "Maximum size in bytes of the database cache." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16436 +#: guix-git/doc/guix.texi:16793 #, no-wrap msgid "{Scheme Variable} %nscd-default-caches" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16439 +#: guix-git/doc/guix.texi:16796 msgid "List of @code{} objects used by default by @code{nscd-configuration} (see above)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16445 +#: guix-git/doc/guix.texi:16802 msgid "It enables persistent and aggressive caching of service and host name lookups. The latter provides better host name lookup performance, resilience in the face of unreliable name servers, and also better privacy---often the result of host name lookups is in local cache, so external name servers do not even need to be queried." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16448 +#: guix-git/doc/guix.texi:16805 msgid "syslog-configuration-type" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16448 guix-git/doc/guix.texi:16464 +#: guix-git/doc/guix.texi:16805 guix-git/doc/guix.texi:16821 #, no-wrap msgid "syslog" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16449 guix-git/doc/guix.texi:17035 +#: guix-git/doc/guix.texi:16806 guix-git/doc/guix.texi:17397 #, no-wrap msgid "logging" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16450 +#: guix-git/doc/guix.texi:16807 #, no-wrap msgid "{Data Type} syslog-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16452 +#: guix-git/doc/guix.texi:16809 msgid "This data type represents the configuration of the syslog daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16454 +#: guix-git/doc/guix.texi:16811 #, no-wrap msgid "@code{syslogd} (default: @code{#~(string-append #$inetutils \"/libexec/syslogd\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16456 +#: guix-git/doc/guix.texi:16813 msgid "The syslog daemon to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16457 +#: guix-git/doc/guix.texi:16814 #, no-wrap msgid "@code{config-file} (default: @code{%default-syslog.conf})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16459 +#: guix-git/doc/guix.texi:16816 msgid "The syslog configuration file to use." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16464 +#: guix-git/doc/guix.texi:16821 msgid "syslog-service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16465 +#: guix-git/doc/guix.texi:16822 #, no-wrap msgid "{Scheme Procedure} syslog-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16467 +#: guix-git/doc/guix.texi:16824 msgid "Return a service that runs a syslog daemon according to @var{config}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16470 +#: guix-git/doc/guix.texi:16827 msgid "@xref{syslogd invocation,,, inetutils, GNU Inetutils}, for more information on the configuration file syntax." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16472 +#: guix-git/doc/guix.texi:16829 #, no-wrap msgid "{Scheme Variable} guix-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16476 +#: guix-git/doc/guix.texi:16833 msgid "This is the type of the service that runs the build daemon, @command{guix-daemon} (@pxref{Invoking guix-daemon}). Its value must be a @code{guix-configuration} record as described below." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16479 +#: guix-git/doc/guix.texi:16836 msgid "guix-configuration-type" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16479 +#: guix-git/doc/guix.texi:16836 #, no-wrap msgid "{Data Type} guix-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16482 +#: guix-git/doc/guix.texi:16839 msgid "This data type represents the configuration of the Guix build daemon. @xref{Invoking guix-daemon}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16484 +#: guix-git/doc/guix.texi:16841 #, no-wrap msgid "@code{guix} (default: @var{guix})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16486 guix-git/doc/guix.texi:16763 +#: guix-git/doc/guix.texi:16843 guix-git/doc/guix.texi:17120 msgid "The Guix package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16487 +#: guix-git/doc/guix.texi:16844 #, no-wrap msgid "@code{build-group} (default: @code{\"guixbuild\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16489 +#: guix-git/doc/guix.texi:16846 msgid "Name of the group for build user accounts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16490 +#: guix-git/doc/guix.texi:16847 #, no-wrap msgid "@code{build-accounts} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16492 +#: guix-git/doc/guix.texi:16849 msgid "Number of build user accounts to create." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16493 +#: guix-git/doc/guix.texi:16850 #, no-wrap msgid "@code{authorize-key?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16500 +#: guix-git/doc/guix.texi:16857 msgid "Whether to authorize the substitute keys listed in @code{authorized-keys}---by default that of @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} (@pxref{Substitutes})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16506 +#: guix-git/doc/guix.texi:16863 msgid "When @code{authorize-key?} is true, @file{/etc/guix/acl} cannot be changed by invoking @command{guix archive --authorize}. You must instead adjust @code{guix-configuration} as you wish and reconfigure the system. This ensures that your operating system configuration file is self-contained." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:16513 +#: guix-git/doc/guix.texi:16870 msgid "When booting or reconfiguring to a system where @code{authorize-key?} is true, the existing @file{/etc/guix/acl} file is backed up as @file{/etc/guix/acl.bak} if it was determined to be a manually modified file. This is to facilitate migration from earlier versions, which allowed for in-place modifications to @file{/etc/guix/acl}." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:16515 +#: guix-git/doc/guix.texi:16872 #, no-wrap msgid "%default-authorized-guix-keys" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16516 +#: guix-git/doc/guix.texi:16873 #, no-wrap msgid "@code{authorized-keys} (default: @code{%default-authorized-guix-keys})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16522 +#: guix-git/doc/guix.texi:16879 msgid "The list of authorized key files for archive imports, as a list of string-valued gexps (@pxref{Invoking guix archive}). By default, it contains that of @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} (@pxref{Substitutes}). See @code{substitute-urls} below for an example on how to change it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16523 +#: guix-git/doc/guix.texi:16880 #, no-wrap msgid "@code{use-substitutes?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16525 +#: guix-git/doc/guix.texi:16882 msgid "Whether to use substitutes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16526 guix-git/doc/guix.texi:29171 +#: guix-git/doc/guix.texi:16883 guix-git/doc/guix.texi:29508 #, no-wrap msgid "@code{substitute-urls} (default: @code{%default-substitute-urls})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16528 guix-git/doc/guix.texi:29173 +#: guix-git/doc/guix.texi:16885 guix-git/doc/guix.texi:29510 msgid "The list of URLs where to look for substitutes by default." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16535 +#: guix-git/doc/guix.texi:16892 msgid "Suppose you would like to fetch substitutes from @code{guix.example.org} in addition to @code{@value{SUBSTITUTE-SERVER-1}}. You will need to do two things: (1) add @code{guix.example.org} to @code{substitute-urls}, and (2) authorize its signing key, having done appropriate checks (@pxref{Substitute Server Authorization}). The configuration below does exactly that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16544 +#: guix-git/doc/guix.texi:16901 #, no-wrap msgid "" "(guix-configuration\n" @@ -28713,150 +29317,150 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16549 +#: guix-git/doc/guix.texi:16906 msgid "This example assumes that the file @file{./guix.example.org-key.pub} contains the public key that @code{guix.example.org} uses to sign substitutes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16550 +#: guix-git/doc/guix.texi:16907 #, no-wrap msgid "@code{max-silent-time} (default: @code{0})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:16551 +#: guix-git/doc/guix.texi:16908 #, no-wrap msgid "@code{timeout} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16555 +#: guix-git/doc/guix.texi:16912 msgid "The number of seconds of silence and the number of seconds of activity, respectively, after which a build process times out. A value of zero disables the timeout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16556 +#: guix-git/doc/guix.texi:16913 #, no-wrap -msgid "@code{log-compression} (default: @code{'bzip2})" +msgid "@code{log-compression} (default: @code{'gzip})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16559 +#: guix-git/doc/guix.texi:16916 msgid "The type of compression used for build logs---one of @code{gzip}, @code{bzip2}, or @code{none}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16560 +#: guix-git/doc/guix.texi:16917 #, no-wrap msgid "@code{discover?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16566 +#: guix-git/doc/guix.texi:16923 msgid "List of extra command-line options for @command{guix-daemon}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16567 +#: guix-git/doc/guix.texi:16924 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/guix-daemon.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16570 +#: guix-git/doc/guix.texi:16927 msgid "File where @command{guix-daemon}'s standard output and standard error are written." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16571 +#: guix-git/doc/guix.texi:16928 #, no-wrap msgid "HTTP proxy, for @code{guix-daemon}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16572 +#: guix-git/doc/guix.texi:16929 #, no-wrap msgid "proxy, for @code{guix-daemon} HTTP access" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16573 +#: guix-git/doc/guix.texi:16930 #, no-wrap msgid "@code{http-proxy} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16576 +#: guix-git/doc/guix.texi:16933 msgid "The URL of the HTTP and HTTPS proxy used for downloading fixed-output derivations and substitutes." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16579 +#: guix-git/doc/guix.texi:16936 msgid "It is also possible to change the daemon's proxy at run time through the @code{set-http-proxy} action, which restarts it:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16582 +#: guix-git/doc/guix.texi:16939 #, no-wrap msgid "herd set-http-proxy guix-daemon http://localhost:8118\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16585 +#: guix-git/doc/guix.texi:16942 msgid "To clear the proxy settings, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16588 +#: guix-git/doc/guix.texi:16945 #, no-wrap msgid "herd set-http-proxy guix-daemon\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16590 +#: guix-git/doc/guix.texi:16947 #, no-wrap msgid "@code{tmpdir} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16592 +#: guix-git/doc/guix.texi:16949 msgid "A directory path where the @command{guix-daemon} will perform builds." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16596 +#: guix-git/doc/guix.texi:16953 #, no-wrap msgid "{Scheme Procedure} udev-service [#:udev @var{eudev} #:rules @code{'()}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16602 +#: guix-git/doc/guix.texi:16959 msgid "Run @var{udev}, which populates the @file{/dev} directory dynamically. udev rules can be provided as a list of files through the @var{rules} variable. The procedures @code{udev-rule}, @code{udev-rules-service} and @code{file->udev-rule} from @code{(gnu services base)} simplify the creation of such rule files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16605 +#: guix-git/doc/guix.texi:16962 msgid "The @command{herd rules udev} command, as root, returns the name of the directory containing all the active udev rules." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16607 +#: guix-git/doc/guix.texi:16964 #, no-wrap msgid "{Scheme Procedure} udev-rule [@var{file-name} @var{contents}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16610 +#: guix-git/doc/guix.texi:16967 msgid "Return a udev-rule file named @var{file-name} containing the rules defined by the @var{contents} literal." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16614 +#: guix-git/doc/guix.texi:16971 msgid "In the following example, a rule for a USB device is defined to be stored in the file @file{90-usb-thing.rules}. The rule runs a script upon detecting a USB device with a given product identifier." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16622 +#: guix-git/doc/guix.texi:16979 #, no-wrap msgid "" "(define %example-udev-rule\n" @@ -28868,23 +29472,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16625 +#: guix-git/doc/guix.texi:16982 #, no-wrap msgid "{Scheme Procedure} udev-rules-service [@var{name} @var{rules}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16632 +#: guix-git/doc/guix.texi:16989 msgid "[#:groups @var{groups}] Return a service that extends @code{udev-service-type } with @var{rules} and @code{account-service-type} with @var{groups} as system groups. This works by creating a singleton service type @code{@var{name}-udev-rules}, of which the returned service is an instance." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16635 +#: guix-git/doc/guix.texi:16992 msgid "Here we show how it can be used to extend @code{udev-service-type} with the previously defined rule @code{%example-udev-rule}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16642 +#: guix-git/doc/guix.texi:16999 #, no-wrap msgid "" "(operating-system\n" @@ -28895,23 +29499,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16645 +#: guix-git/doc/guix.texi:17002 #, no-wrap msgid "{Scheme Procedure} file->udev-rule [@var{file-name} @var{file}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16648 +#: guix-git/doc/guix.texi:17005 msgid "Return a udev file named @var{file-name} containing the rules defined within @var{file}, a file-like object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16650 +#: guix-git/doc/guix.texi:17007 msgid "The following example showcases how we can use an existing rule file." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16655 +#: guix-git/doc/guix.texi:17012 #, no-wrap msgid "" "(use-modules (guix download) ;for url-fetch\n" @@ -28921,7 +29525,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16666 +#: guix-git/doc/guix.texi:17023 #, no-wrap msgid "" "(define %android-udev-rules\n" @@ -28937,17 +29541,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16675 +#: guix-git/doc/guix.texi:17032 msgid "Additionally, Guix package definitions can be included in @var{rules} in order to extend the udev rules with the definitions found under their @file{lib/udev/rules.d} sub-directory. In lieu of the previous @var{file->udev-rule} example, we could have used the @var{android-udev-rules} package which exists in Guix in the @code{(gnu packages android)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16684 +#: guix-git/doc/guix.texi:17041 msgid "The following example shows how to use the @var{android-udev-rules} package so that the Android tool @command{adb} can detect devices without root privileges. It also details how to create the @code{adbusers} group, which is required for the proper functioning of the rules defined within the @code{android-udev-rules} package. To create such a group, we must define it both as part of the @code{supplementary-groups} of our @code{user-account} declaration, as well as in the @var{groups} of the @code{udev-rules-service} procedure." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16689 +#: guix-git/doc/guix.texi:17046 #, no-wrap msgid "" "(use-modules (gnu packages android) ;for android-udev-rules\n" @@ -28957,7 +29561,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16702 +#: guix-git/doc/guix.texi:17059 #, no-wrap msgid "" "(operating-system\n" @@ -28975,328 +29579,339 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16704 +#: guix-git/doc/guix.texi:17061 #, no-wrap msgid "{Scheme Variable} urandom-seed-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16709 +#: guix-git/doc/guix.texi:17066 msgid "Save some entropy in @code{%random-seed-file} to seed @file{/dev/urandom} when rebooting. It also tries to seed @file{/dev/urandom} from @file{/dev/hwrng} while booting, if @file{/dev/hwrng} exists and is readable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16711 +#: guix-git/doc/guix.texi:17068 #, no-wrap msgid "{Scheme Variable} %random-seed-file" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16715 +#: guix-git/doc/guix.texi:17072 msgid "This is the name of the file where some random bytes are saved by @var{urandom-seed-service} to seed @file{/dev/urandom} when rebooting. It defaults to @file{/var/lib/random-seed}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16717 +#: guix-git/doc/guix.texi:17074 #, no-wrap msgid "mouse" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16718 +#: guix-git/doc/guix.texi:17075 #, no-wrap msgid "gpm" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16719 +#: guix-git/doc/guix.texi:17076 #, no-wrap msgid "{Scheme Variable} gpm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16724 +#: guix-git/doc/guix.texi:17081 msgid "This is the type of the service that runs GPM, the @dfn{general-purpose mouse daemon}, which provides mouse support to the Linux console. GPM allows users to use the mouse in the console, notably to select, copy, and paste text." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16727 +#: guix-git/doc/guix.texi:17084 msgid "The value for services of this type must be a @code{gpm-configuration} (see below). This service is not part of @code{%base-services}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16729 +#: guix-git/doc/guix.texi:17086 #, no-wrap msgid "{Data Type} gpm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16731 +#: guix-git/doc/guix.texi:17088 msgid "Data type representing the configuration of GPM." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16733 +#: guix-git/doc/guix.texi:17090 #, no-wrap msgid "@code{options} (default: @code{%default-gpm-options})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16738 +#: guix-git/doc/guix.texi:17095 msgid "Command-line options passed to @command{gpm}. The default set of options instruct @command{gpm} to listen to mouse events on @file{/dev/input/mice}. @xref{Command Line,,, gpm, gpm manual}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16739 +#: guix-git/doc/guix.texi:17096 #, no-wrap msgid "@code{gpm} (default: @code{gpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16741 +#: guix-git/doc/guix.texi:17098 msgid "The GPM package to use." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16746 +#: guix-git/doc/guix.texi:17103 msgid "guix-publish-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16746 +#: guix-git/doc/guix.texi:17103 #, no-wrap msgid "{Scheme Variable} guix-publish-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16750 +#: guix-git/doc/guix.texi:17107 msgid "This is the service type for @command{guix publish} (@pxref{Invoking guix publish}). Its value must be a @code{guix-publish-configuration} object, as described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16754 +#: guix-git/doc/guix.texi:17111 msgid "This assumes that @file{/etc/guix} already contains a signing key pair as created by @command{guix archive --generate-key} (@pxref{Invoking guix archive}). If that is not the case, the service will fail to start." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16756 +#: guix-git/doc/guix.texi:17113 #, no-wrap msgid "{Data Type} guix-publish-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16759 +#: guix-git/doc/guix.texi:17116 msgid "Data type representing the configuration of the @code{guix publish} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16761 +#: guix-git/doc/guix.texi:17118 #, no-wrap msgid "@code{guix} (default: @code{guix})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16764 guix-git/doc/guix.texi:31477 +#: guix-git/doc/guix.texi:17121 guix-git/doc/guix.texi:31842 #, no-wrap msgid "@code{port} (default: @code{80})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16766 +#: guix-git/doc/guix.texi:17123 msgid "The TCP port to listen for connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16767 guix-git/doc/guix.texi:29054 -#: guix-git/doc/guix.texi:32858 +#: guix-git/doc/guix.texi:17124 guix-git/doc/guix.texi:29391 +#: guix-git/doc/guix.texi:33223 #, no-wrap msgid "@code{host} (default: @code{\"localhost\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16770 +#: guix-git/doc/guix.texi:17127 msgid "The host (and thus, network interface) to listen to. Use @code{\"0.0.0.0\"} to listen on all the network interfaces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16771 +#: guix-git/doc/guix.texi:17128 #, no-wrap msgid "@code{advertise?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16774 +#: guix-git/doc/guix.texi:17131 msgid "When true, advertise the service on the local network @i{via} the DNS-SD protocol, using Avahi." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16778 +#: guix-git/doc/guix.texi:17135 msgid "This allows neighboring Guix devices with discovery on (see @code{guix-configuration} above) to discover this @command{guix publish} instance and to automatically download substitutes from it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16779 +#: guix-git/doc/guix.texi:17136 #, no-wrap msgid "@code{compression} (default: @code{'((\"gzip\" 3) (\"zstd\" 3))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16783 +#: guix-git/doc/guix.texi:17140 msgid "This is a list of compression method/level tuple used when compressing substitutes. For example, to compress all substitutes with @emph{both} lzip at level 7 and gzip at level 9, write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16786 +#: guix-git/doc/guix.texi:17143 #, no-wrap msgid "'((\"lzip\" 7) (\"gzip\" 9))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16792 +#: guix-git/doc/guix.texi:17149 msgid "Level 9 achieves the best compression ratio at the expense of increased CPU usage, whereas level 1 achieves fast compression. @xref{Invoking guix publish}, for more information on the available compression methods and the tradeoffs involved." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16794 +#: guix-git/doc/guix.texi:17151 msgid "An empty list disables compression altogether." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16795 +#: guix-git/doc/guix.texi:17152 #, no-wrap msgid "@code{nar-path} (default: @code{\"nar\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16798 +#: guix-git/doc/guix.texi:17155 msgid "The URL path at which ``nars'' can be fetched. @xref{Invoking guix publish, @option{--nar-path}}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16799 +#: guix-git/doc/guix.texi:17156 #, no-wrap msgid "@code{cache} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16805 +#: guix-git/doc/guix.texi:17162 msgid "When it is @code{#f}, disable caching and instead generate archives on demand. Otherwise, this should be the name of a directory---e.g., @code{\"/var/cache/guix/publish\"}---where @command{guix publish} caches archives and meta-data ready to be sent. @xref{Invoking guix publish, @option{--cache}}, for more information on the tradeoffs involved." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16806 +#: guix-git/doc/guix.texi:17163 #, no-wrap msgid "@code{workers} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16810 +#: guix-git/doc/guix.texi:17167 msgid "When it is an integer, this is the number of worker threads used for caching; when @code{#f}, the number of processors is used. @xref{Invoking guix publish, @option{--workers}}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16811 +#: guix-git/doc/guix.texi:17168 #, no-wrap msgid "@code{cache-bypass-threshold} (default: 10 MiB)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16816 +#: guix-git/doc/guix.texi:17173 msgid "When @code{cache} is true, this is the maximum size in bytes of a store item for which @command{guix publish} may bypass its cache in case of a cache miss. @xref{Invoking guix publish, @option{--cache-bypass-threshold}}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16817 +#: guix-git/doc/guix.texi:17174 #, no-wrap msgid "@code{ttl} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16821 +#: guix-git/doc/guix.texi:17178 msgid "When it is an integer, this denotes the @dfn{time-to-live} in seconds of the published archives. @xref{Invoking guix publish, @option{--ttl}}, for more information." msgstr "" +#. type: item +#: guix-git/doc/guix.texi:17179 +#, no-wrap +msgid "@code{negative-ttl} (default: @code{#f})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:17183 +msgid "When it is an integer, this denotes the @dfn{time-to-live} in seconds for the negative lookups. @xref{Invoking guix publish, @option{--negative-ttl}}, for more information." +msgstr "" + #. type: anchor{#1} -#: guix-git/doc/guix.texi:16825 +#: guix-git/doc/guix.texi:17187 msgid "rngd-service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16825 +#: guix-git/doc/guix.texi:17187 #, no-wrap msgid "{Scheme Procedure} rngd-service [#:rng-tools @var{rng-tools}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16830 +#: guix-git/doc/guix.texi:17192 msgid "[#:device \"/dev/hwrng\"] Return a service that runs the @command{rngd} program from @var{rng-tools} to add @var{device} to the kernel's entropy pool. The service will fail if @var{device} does not exist." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16833 +#: guix-git/doc/guix.texi:17195 msgid "pam-limits-service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16833 +#: guix-git/doc/guix.texi:17195 #, no-wrap msgid "session limits" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16834 +#: guix-git/doc/guix.texi:17196 #, no-wrap msgid "ulimit" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16835 +#: guix-git/doc/guix.texi:17197 #, no-wrap msgid "priority" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16836 +#: guix-git/doc/guix.texi:17198 #, no-wrap msgid "realtime" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16837 +#: guix-git/doc/guix.texi:17199 #, no-wrap msgid "jackd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16838 +#: guix-git/doc/guix.texi:17200 #, no-wrap msgid "nofile" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16839 +#: guix-git/doc/guix.texi:17201 #, no-wrap msgid "open file descriptors" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16840 +#: guix-git/doc/guix.texi:17202 #, no-wrap msgid "{Scheme Procedure} pam-limits-service [#:limits @code{'()}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16847 +#: guix-git/doc/guix.texi:17209 msgid "Return a service that installs a configuration file for the @uref{http://linux-pam.org/Linux-PAM-html/sag-pam_limits.html, @code{pam_limits} module}. The procedure optionally takes a list of @code{pam-limits-entry} values, which can be used to specify @code{ulimit} limits and @code{nice} priority limits to user sessions." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16850 +#: guix-git/doc/guix.texi:17212 msgid "The following limits definition sets two hard and soft limits for all login sessions of users in the @code{realtime} group:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16856 +#: guix-git/doc/guix.texi:17218 #, no-wrap msgid "" "(pam-limits-service\n" @@ -29306,17 +29921,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16862 +#: guix-git/doc/guix.texi:17224 msgid "The first entry increases the maximum realtime priority for non-privileged processes; the second entry lifts any restriction of the maximum address space that can be locked in memory. These settings are commonly used for real-time audio systems." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16865 +#: guix-git/doc/guix.texi:17227 msgid "Another useful example is raising the maximum number of open file descriptors that can be used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16870 +#: guix-git/doc/guix.texi:17232 #, no-wrap msgid "" "(pam-limits-service\n" @@ -29325,40 +29940,40 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16878 +#: guix-git/doc/guix.texi:17240 msgid "In the above example, the asterisk means the limit should apply to any user. It is important to ensure the chosen value doesn't exceed the maximum system value visible in the @file{/proc/sys/fs/file-max} file, else the users would be prevented from login in. For more information about the Pluggable Authentication Module (PAM) limits, refer to the @samp{pam_limits} man page from the @code{linux-pam} package." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16883 guix-git/doc/guix.texi:37407 +#: guix-git/doc/guix.texi:17245 guix-git/doc/guix.texi:37897 #, no-wrap msgid "cron" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16884 guix-git/doc/guix.texi:37408 +#: guix-git/doc/guix.texi:17246 guix-git/doc/guix.texi:37898 #, no-wrap msgid "mcron" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16885 guix-git/doc/guix.texi:37409 +#: guix-git/doc/guix.texi:17247 guix-git/doc/guix.texi:37899 #, no-wrap msgid "scheduling jobs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16892 +#: guix-git/doc/guix.texi:17254 msgid "The @code{(gnu services mcron)} module provides an interface to GNU@tie{}mcron, a daemon to run jobs at scheduled times (@pxref{Top,,, mcron, GNU@tie{}mcron}). GNU@tie{}mcron is similar to the traditional Unix @command{cron} daemon; the main difference is that it is implemented in Guile Scheme, which provides a lot of flexibility when specifying the scheduling of jobs and their actions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16900 +#: guix-git/doc/guix.texi:17262 msgid "The example below defines an operating system that runs the @command{updatedb} (@pxref{Invoking updatedb,,, find, Finding Files}) and the @command{guix gc} commands (@pxref{Invoking guix gc}) daily, as well as the @command{mkid} command on behalf of an unprivileged user (@pxref{mkid invocation,,, idutils, ID Database Utilities}). It uses gexps to introduce job definitions that are passed to mcron (@pxref{G-Expressions})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16904 +#: guix-git/doc/guix.texi:17266 #, no-wrap msgid "" "(use-modules (guix) (gnu) (gnu services mcron))\n" @@ -29367,7 +29982,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16914 +#: guix-git/doc/guix.texi:17276 #, no-wrap msgid "" "(define updatedb-job\n" @@ -29383,7 +29998,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16920 +#: guix-git/doc/guix.texi:17282 #, no-wrap msgid "" "(define garbage-collector-job\n" @@ -29395,7 +30010,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16927 +#: guix-git/doc/guix.texi:17289 #, no-wrap msgid "" "(define idutils-job\n" @@ -29408,7 +30023,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16930 +#: guix-git/doc/guix.texi:17292 #, no-wrap msgid "" "(operating-system\n" @@ -29417,7 +30032,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16940 +#: guix-git/doc/guix.texi:17302 #, no-wrap msgid "" " ;; %BASE-SERVICES already includes an instance of\n" @@ -29432,23 +30047,23 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:16942 +#: guix-git/doc/guix.texi:17304 #, no-wrap msgid "Tip" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:16948 +#: guix-git/doc/guix.texi:17310 msgid "When providing the action of a job specification as a procedure, you should provide an explicit name for the job via the optional 3rd argument as done in the @code{updatedb-job} example above. Otherwise, the job would appear as ``Lambda function'' in the output of @command{herd schedule mcron}, which is not nearly descriptive enough!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16955 +#: guix-git/doc/guix.texi:17317 msgid "For more complex jobs defined in Scheme where you need control over the top level, for instance to introduce a @code{use-modules} form, you can move your code to a separate program using the @code{program-file} procedure of the @code{(guix gexp)} module (@pxref{G-Expressions}). The example below illustrates that." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16971 +#: guix-git/doc/guix.texi:17333 #, no-wrap msgid "" "(define %battery-alert-job\n" @@ -29469,7 +30084,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16973 +#: guix-git/doc/guix.texi:17335 #, no-wrap msgid "" " (define %min-level 20)\n" @@ -29477,7 +30092,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16984 +#: guix-git/doc/guix.texi:17346 #, no-wrap msgid "" " (setenv \"LC_ALL\" \"C\") ;ensure English output\n" @@ -29493,106 +30108,106 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16989 +#: guix-git/doc/guix.texi:17351 msgid "@xref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron}, for more information on mcron job specifications. Below is the reference of the mcron service." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16992 +#: guix-git/doc/guix.texi:17354 msgid "On a running system, you can use the @code{schedule} action of the service to visualize the mcron jobs that will be executed next:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16995 +#: guix-git/doc/guix.texi:17357 #, no-wrap msgid "# herd schedule mcron\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17000 +#: guix-git/doc/guix.texi:17362 msgid "The example above lists the next five tasks that will be executed, but you can also specify the number of tasks to display:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:17003 +#: guix-git/doc/guix.texi:17365 #, no-wrap msgid "# herd schedule mcron 10\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17005 +#: guix-git/doc/guix.texi:17367 #, no-wrap msgid "{Scheme Variable} mcron-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17008 +#: guix-git/doc/guix.texi:17370 msgid "This is the type of the @code{mcron} service, whose value is an @code{mcron-configuration} object." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17013 guix-git/doc/guix.texi:37428 +#: guix-git/doc/guix.texi:17375 guix-git/doc/guix.texi:37918 msgid "This service type can be the target of a service extension that provides additional job specifications (@pxref{Service Composition}). In other words, it is possible to define services that provide additional mcron jobs to run." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17015 +#: guix-git/doc/guix.texi:17377 #, no-wrap msgid "{Data Type} mcron-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17017 guix-git/doc/guix.texi:37432 +#: guix-git/doc/guix.texi:17379 guix-git/doc/guix.texi:37922 msgid "Data type representing the configuration of mcron." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17019 guix-git/doc/guix.texi:37434 +#: guix-git/doc/guix.texi:17381 guix-git/doc/guix.texi:37924 #, no-wrap msgid "@code{mcron} (default: @var{mcron})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17021 guix-git/doc/guix.texi:37436 +#: guix-git/doc/guix.texi:17383 guix-git/doc/guix.texi:37926 msgid "The mcron package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17022 guix-git/doc/guix.texi:17091 -#: guix-git/doc/guix.texi:37437 +#: guix-git/doc/guix.texi:17384 guix-git/doc/guix.texi:17453 +#: guix-git/doc/guix.texi:37927 #, no-wrap msgid "jobs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17026 guix-git/doc/guix.texi:37441 +#: guix-git/doc/guix.texi:17388 guix-git/doc/guix.texi:37931 msgid "This is a list of gexps (@pxref{G-Expressions}), where each gexp corresponds to an mcron job specification (@pxref{Syntax, mcron job specifications,, mcron, GNU@tie{}mcron})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17033 +#: guix-git/doc/guix.texi:17395 #, no-wrap msgid "rottlog" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17034 +#: guix-git/doc/guix.texi:17396 #, no-wrap msgid "log rotation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17041 +#: guix-git/doc/guix.texi:17403 msgid "Log files such as those found in @file{/var/log} tend to grow endlessly, so it's a good idea to @dfn{rotate} them once in a while---i.e., archive their contents in separate files, possibly compressed. The @code{(gnu services admin)} module provides an interface to GNU@tie{}Rot[t]log, a log rotation tool (@pxref{Top,,, rottlog, GNU Rot[t]log Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17047 +#: guix-git/doc/guix.texi:17409 msgid "This service is part of @code{%base-services}, and thus enabled by default, with the default settings, for commonly encountered log files. The example below shows how to extend it with an additional @dfn{rotation}, should you need to do that (usually, services that produce log files already take care of that):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17051 +#: guix-git/doc/guix.texi:17413 #, no-wrap msgid "" "(use-modules (guix) (gnu))\n" @@ -29601,7 +30216,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17055 +#: guix-git/doc/guix.texi:17417 #, no-wrap msgid "" "(define my-log-files\n" @@ -29611,7 +30226,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17064 +#: guix-git/doc/guix.texi:17426 #, no-wrap msgid "" "(operating-system\n" @@ -29625,93 +30240,93 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17066 +#: guix-git/doc/guix.texi:17428 #, no-wrap msgid "{Scheme Variable} rottlog-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17069 +#: guix-git/doc/guix.texi:17431 msgid "This is the type of the Rottlog service, whose value is a @code{rottlog-configuration} object." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17072 +#: guix-git/doc/guix.texi:17434 msgid "Other services can extend this one with new @code{log-rotation} objects (see below), thereby augmenting the set of files to be rotated." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17075 +#: guix-git/doc/guix.texi:17437 msgid "This service type can define mcron jobs (@pxref{Scheduled Job Execution}) to run the rottlog service." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17077 +#: guix-git/doc/guix.texi:17439 #, no-wrap msgid "{Data Type} rottlog-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17079 +#: guix-git/doc/guix.texi:17441 msgid "Data type representing the configuration of rottlog." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17081 +#: guix-git/doc/guix.texi:17443 #, no-wrap msgid "@code{rottlog} (default: @code{rottlog})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17083 +#: guix-git/doc/guix.texi:17445 msgid "The Rottlog package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17084 +#: guix-git/doc/guix.texi:17446 #, no-wrap msgid "@code{rc-file} (default: @code{(file-append rottlog \"/etc/rc\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17087 +#: guix-git/doc/guix.texi:17449 msgid "The Rottlog configuration file to use (@pxref{Mandatory RC Variables,,, rottlog, GNU Rot[t]log Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17088 +#: guix-git/doc/guix.texi:17450 #, no-wrap msgid "@code{rotations} (default: @code{%default-rotations})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17090 +#: guix-git/doc/guix.texi:17452 msgid "A list of @code{log-rotation} objects as defined below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17094 +#: guix-git/doc/guix.texi:17456 msgid "This is a list of gexps where each gexp corresponds to an mcron job specification (@pxref{Scheduled Job Execution})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17097 +#: guix-git/doc/guix.texi:17459 #, no-wrap msgid "{Data Type} log-rotation" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17099 +#: guix-git/doc/guix.texi:17461 msgid "Data type representing the rotation of a group of log files." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17103 +#: guix-git/doc/guix.texi:17465 msgid "Taking an example from the Rottlog manual (@pxref{Period Related File Examples,,, rottlog, GNU Rot[t]log Manual}), a log rotation might be defined like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17112 +#: guix-git/doc/guix.texi:17474 #, no-wrap msgid "" "(log-rotation\n" @@ -29724,121 +30339,115 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17115 +#: guix-git/doc/guix.texi:17477 msgid "The list of fields is as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17117 +#: guix-git/doc/guix.texi:17479 #, no-wrap msgid "@code{frequency} (default: @code{'weekly})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17119 +#: guix-git/doc/guix.texi:17481 msgid "The log rotation frequency, a symbol." msgstr "" -#. type: code{#1} -#: guix-git/doc/guix.texi:17120 -#, no-wrap -msgid "files" -msgstr "" - #. type: table -#: guix-git/doc/guix.texi:17122 +#: guix-git/doc/guix.texi:17484 msgid "The list of files or file glob patterns to rotate." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17123 +#: guix-git/doc/guix.texi:17485 #, no-wrap msgid "@code{options} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17126 +#: guix-git/doc/guix.texi:17488 msgid "The list of rottlog options for this rotation (@pxref{Configuration parameters,,, rottlog, GNU Rot[t]lg Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17127 +#: guix-git/doc/guix.texi:17489 #, no-wrap msgid "@code{post-rotate} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17129 +#: guix-git/doc/guix.texi:17491 msgid "Either @code{#f} or a gexp to execute once the rotation has completed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17132 +#: guix-git/doc/guix.texi:17494 #, no-wrap msgid "{Scheme Variable} %default-rotations" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17135 +#: guix-git/doc/guix.texi:17497 msgid "Specifies weekly rotation of @code{%rotated-files} and of @file{/var/log/guix-daemon.log}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17137 +#: guix-git/doc/guix.texi:17499 #, no-wrap msgid "{Scheme Variable} %rotated-files" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17141 +#: guix-git/doc/guix.texi:17503 msgid "The list of syslog-controlled files to be rotated. By default it is: @code{'(\"/var/log/messages\" \"/var/log/secure\" \"/var/log/debug\" \\ \"/var/log/maillog\")}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17154 +#: guix-git/doc/guix.texi:17516 msgid "The @code{(gnu services networking)} module provides services to configure network interfaces and set up networking on your machine. Those services provide different ways for you to set up your machine: by declaring a static network configuration, by running a Dynamic Host Configuration Protocol (DHCP) client, or by running daemons such as NetworkManager and Connman that automate the whole process, automatically adapt to connectivity changes, and provide a high-level user interface." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17160 +#: guix-git/doc/guix.texi:17522 msgid "On a laptop, NetworkManager and Connman are by far the most convenient options, which is why the default desktop services include NetworkManager (@pxref{Desktop Services, @code{%desktop-services}}). For a server, or for a virtual machine or a container, static network configuration or a simple DHCP client are often more appropriate." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17163 +#: guix-git/doc/guix.texi:17525 msgid "This section describes the various network setup services available, starting with static network configuration." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17164 +#: guix-git/doc/guix.texi:17526 #, no-wrap msgid "{Scheme Variable} static-networking-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17169 +#: guix-git/doc/guix.texi:17531 msgid "This is the type for statically-configured network interfaces. Its value must be a list of @code{static-networking} records. Each of them declares a set of @dfn{addresses}, @dfn{routes}, and @dfn{links}, as show below." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17170 +#: guix-git/doc/guix.texi:17532 #, no-wrap msgid "network interface controller (NIC)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17171 +#: guix-git/doc/guix.texi:17533 #, no-wrap msgid "NIC, networking interface controller" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17174 +#: guix-git/doc/guix.texi:17536 msgid "Here is the simplest configuration, with only one network interface controller (NIC) and only IPv4 connectivity:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17188 +#: guix-git/doc/guix.texi:17550 #, no-wrap msgid "" ";; Static networking for one NIC, IPv4-only.\n" @@ -29856,28 +30465,28 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17197 +#: guix-git/doc/guix.texi:17559 msgid "The snippet above can be added to the @code{services} field of your operating system configuration (@pxref{Using the Configuration System}). It will configure your machine to have 10.0.2.15 as its IP address, with a 24-bit netmask for the local network---meaning that any 10.0.2.@var{x} address is on the local area network (LAN). Traffic to addresses outside the local network is routed @i{via} 10.0.2.2. Host names are resolved by sending domain name system (DNS) queries to 10.0.2.3." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17199 +#: guix-git/doc/guix.texi:17561 #, no-wrap msgid "{Data Type} static-networking" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17201 +#: guix-git/doc/guix.texi:17563 msgid "This is the data type representing a static network configuration." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17205 +#: guix-git/doc/guix.texi:17567 msgid "As an example, here is how you would declare the configuration of a machine with a single network interface controller (NIC) available as @code{eno1}, and with one IPv4 and one IPv6 address:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17222 +#: guix-git/doc/guix.texi:17584 #, no-wrap msgid "" ";; Network configuration for one NIC, IPv4 + IPv6.\n" @@ -29898,12 +30507,12 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17228 +#: guix-git/doc/guix.texi:17590 msgid "If you are familiar with the @command{ip} command of the @uref{https://wiki.linuxfoundation.org/networking/iproute2, @code{iproute2} package} found on Linux-based systems, the declaration above is equivalent to typing:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:17234 +#: guix-git/doc/guix.texi:17596 #, no-wrap msgid "" "ip address add 10.0.2.15/24 dev eno1\n" @@ -29913,355 +30522,355 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17239 +#: guix-git/doc/guix.texi:17601 msgid "Run @command{man 8 ip} for more info. Venerable GNU/Linux users will certainly know how to do it with @command{ifconfig} and @command{route}, but we'll spare you that." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17241 +#: guix-git/doc/guix.texi:17603 msgid "The available fields of this data type are as follows:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17243 +#: guix-git/doc/guix.texi:17605 #, no-wrap msgid "addresses" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:17244 +#: guix-git/doc/guix.texi:17606 #, no-wrap msgid "@code{links} (default: @code{'()})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:17245 +#: guix-git/doc/guix.texi:17607 #, no-wrap msgid "@code{routes} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17248 +#: guix-git/doc/guix.texi:17610 msgid "The list of @code{network-address}, @code{network-link}, and @code{network-route} records for this network (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17249 +#: guix-git/doc/guix.texi:17611 #, no-wrap msgid "@code{name-servers} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17252 +#: guix-git/doc/guix.texi:17614 msgid "The list of IP addresses (strings) of domain name servers. These IP addresses go to @file{/etc/resolv.conf}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17253 +#: guix-git/doc/guix.texi:17615 #, no-wrap msgid "@code{provision} (default: @code{'(networking)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17256 +#: guix-git/doc/guix.texi:17618 msgid "If true, this should be a list of symbols for the Shepherd service corresponding to this network configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17257 +#: guix-git/doc/guix.texi:17619 #, no-wrap msgid "@code{requirement} (default @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17259 +#: guix-git/doc/guix.texi:17621 msgid "The list of Shepherd services depended on." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17262 +#: guix-git/doc/guix.texi:17624 #, no-wrap msgid "{Data Type} network-address" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17265 +#: guix-git/doc/guix.texi:17627 msgid "This is the data type representing the IP address of a network interface." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17270 +#: guix-git/doc/guix.texi:17632 msgid "The name of the network interface for this address---e.g., @code{\"eno1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17271 +#: guix-git/doc/guix.texi:17633 #, no-wrap msgid "value" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17275 +#: guix-git/doc/guix.texi:17637 msgid "The actual IP address and network mask, in @uref{https://en.wikipedia.org/wiki/CIDR#CIDR_notation, @acronym{CIDR, Classless Inter-Domain Routing} notation}, as a string." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17279 +#: guix-git/doc/guix.texi:17641 msgid "For example, @code{\"10.0.2.15/24\"} denotes IPv4 address 10.0.2.15 on a 24-bit sub-network---all 10.0.2.@var{x} addresses are on the same local network." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17280 +#: guix-git/doc/guix.texi:17642 #, no-wrap msgid "ipv6?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17283 +#: guix-git/doc/guix.texi:17645 msgid "Whether @code{value} denotes an IPv6 address. By default this is automatically determined." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17286 +#: guix-git/doc/guix.texi:17648 #, no-wrap msgid "{Data Type} network-route" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17288 +#: guix-git/doc/guix.texi:17650 msgid "This is the data type representing a network route." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17290 +#: guix-git/doc/guix.texi:17652 #, fuzzy, no-wrap #| msgid "deduplication" msgid "destination" msgstr "deduplicazione" #. type: table -#: guix-git/doc/guix.texi:17293 +#: guix-git/doc/guix.texi:17655 msgid "The route destination (a string), either an IP address or @code{\"default\"} to denote the default route." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17294 +#: guix-git/doc/guix.texi:17656 #, no-wrap msgid "@code{source} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17296 +#: guix-git/doc/guix.texi:17658 msgid "The route source." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17297 guix-git/doc/guix.texi:34761 +#: guix-git/doc/guix.texi:17659 guix-git/doc/guix.texi:35200 #, no-wrap msgid "@code{device} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17299 +#: guix-git/doc/guix.texi:17661 msgid "The device used for this route---e.g., @code{\"eno2\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17300 +#: guix-git/doc/guix.texi:17662 #, no-wrap msgid "@code{ipv6?} (default: auto)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17303 +#: guix-git/doc/guix.texi:17665 msgid "Whether this is an IPv6 route. By default this is automatically determined based on @code{destination} or @code{gateway}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17304 +#: guix-git/doc/guix.texi:17666 #, no-wrap msgid "@code{gateway} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17306 +#: guix-git/doc/guix.texi:17668 msgid "IP address (a string) through which traffic is routed." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17309 +#: guix-git/doc/guix.texi:17671 #, no-wrap msgid "{Data Type} network-link" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17312 +#: guix-git/doc/guix.texi:17674 msgid "Data type for a network link (@pxref{Link,,, guile-netlink, Guile-Netlink Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17316 +#: guix-git/doc/guix.texi:17678 msgid "The name of the link---e.g., @code{\"v0p0\"}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17319 +#: guix-git/doc/guix.texi:17681 msgid "A symbol denoting the type of the link---e.g., @code{'veth}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17320 +#: guix-git/doc/guix.texi:17682 #, no-wrap msgid "arguments" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17322 +#: guix-git/doc/guix.texi:17684 msgid "List of arguments for this type of link." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17325 +#: guix-git/doc/guix.texi:17687 #, no-wrap msgid "loopback device" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17326 +#: guix-git/doc/guix.texi:17688 #, no-wrap msgid "{Scheme Variable} %loopback-static-networking" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17330 +#: guix-git/doc/guix.texi:17692 msgid "This is the @code{static-networking} record representing the ``loopback device'', @code{lo}, for IP addresses 127.0.0.1 and ::1, and providing the @code{loopback} Shepherd service." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17332 +#: guix-git/doc/guix.texi:17694 #, no-wrap msgid "networking, with QEMU" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17333 +#: guix-git/doc/guix.texi:17695 #, fuzzy, no-wrap #| msgid "Networking" msgid "QEMU, networking" msgstr "Rete" #. type: defvr -#: guix-git/doc/guix.texi:17334 +#: guix-git/doc/guix.texi:17696 #, no-wrap msgid "{Scheme Variable} %qemu-static-networking" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17338 +#: guix-git/doc/guix.texi:17700 msgid "This is the @code{static-networking} record representing network setup when using QEMU's user-mode network stack on @code{eth0} (@pxref{Using the user mode network stack,,, QEMU, QEMU Documentation})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17340 +#: guix-git/doc/guix.texi:17702 #, no-wrap msgid "DHCP, networking service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17341 +#: guix-git/doc/guix.texi:17703 #, no-wrap msgid "{Scheme Variable} dhcp-client-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17345 +#: guix-git/doc/guix.texi:17707 msgid "This is the type of services that run @var{dhcp}, a Dynamic Host Configuration Protocol (DHCP) client, on all the non-loopback network interfaces. Its value is the DHCP client package to use, @code{isc-dhcp} by default." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17347 +#: guix-git/doc/guix.texi:17709 #, no-wrap msgid "NetworkManager" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17349 +#: guix-git/doc/guix.texi:17711 #, no-wrap msgid "{Scheme Variable} network-manager-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17354 +#: guix-git/doc/guix.texi:17716 msgid "This is the service type for the @uref{https://wiki.gnome.org/Projects/NetworkManager, NetworkManager} service. The value for this service type is a @code{network-manager-configuration} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17357 guix-git/doc/guix.texi:17509 -#: guix-git/doc/guix.texi:17538 +#: guix-git/doc/guix.texi:17719 guix-git/doc/guix.texi:17871 +#: guix-git/doc/guix.texi:17900 msgid "This service is part of @code{%desktop-services} (@pxref{Desktop Services})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17359 +#: guix-git/doc/guix.texi:17721 #, no-wrap msgid "{Data Type} network-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17361 +#: guix-git/doc/guix.texi:17723 msgid "Data type representing the configuration of NetworkManager." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17363 +#: guix-git/doc/guix.texi:17725 #, no-wrap msgid "@code{network-manager} (default: @code{network-manager})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17365 +#: guix-git/doc/guix.texi:17727 msgid "The NetworkManager package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17366 +#: guix-git/doc/guix.texi:17728 #, no-wrap msgid "@code{dns} (default: @code{\"default\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17369 +#: guix-git/doc/guix.texi:17731 msgid "Processing mode for DNS, which affects how NetworkManager uses the @code{resolv.conf} configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17374 +#: guix-git/doc/guix.texi:17736 msgid "NetworkManager will update @code{resolv.conf} to reflect the nameservers provided by currently active connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17375 +#: guix-git/doc/guix.texi:17737 #, no-wrap msgid "dnsmasq" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17379 +#: guix-git/doc/guix.texi:17741 msgid "NetworkManager will run @code{dnsmasq} as a local caching nameserver, using a @dfn{conditional forwarding} configuration if you are connected to a VPN, and then update @code{resolv.conf} to point to the local nameserver." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17385 +#: guix-git/doc/guix.texi:17747 msgid "With this setting, you can share your network connection. For example when you want to share your network connection to another laptop @i{via} an Ethernet cable, you can open @command{nm-connection-editor} and configure the Wired connection's method for IPv4 and IPv6 to be ``Shared to other computers'' and reestablish the connection (or reboot)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17392 +#: guix-git/doc/guix.texi:17754 msgid "You can also set up a @dfn{host-to-guest connection} to QEMU VMs (@pxref{Installing Guix in a VM}). With a host-to-guest connection, you can e.g.@: access a Web server running on the VM (@pxref{Web Services}) from a Web browser on your host system, or connect to the VM @i{via} SSH (@pxref{Networking Services, @code{openssh-service-type}}). To set up a host-to-guest connection, run this command once:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:17399 +#: guix-git/doc/guix.texi:17761 #, no-wrap msgid "" "nmcli connection add type tun \\\n" @@ -30272,50 +30881,50 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17404 +#: guix-git/doc/guix.texi:17766 msgid "Then each time you launch your QEMU VM (@pxref{Running Guix in a VM}), pass @option{-nic tap,ifname=tap0,script=no,downscript=no} to @command{qemu-system-...}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17407 +#: guix-git/doc/guix.texi:17769 msgid "NetworkManager will not modify @code{resolv.conf}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17409 +#: guix-git/doc/guix.texi:17771 #, no-wrap msgid "@code{vpn-plugins} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17413 +#: guix-git/doc/guix.texi:17775 msgid "This is the list of available plugins for virtual private networks (VPNs). An example of this is the @code{network-manager-openvpn} package, which allows NetworkManager to manage VPNs @i{via} OpenVPN." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17417 +#: guix-git/doc/guix.texi:17779 #, no-wrap msgid "Connman" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17418 +#: guix-git/doc/guix.texi:17780 #, no-wrap msgid "{Scheme Variable} connman-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17421 +#: guix-git/doc/guix.texi:17783 msgid "This is the service type to run @url{https://01.org/connman,Connman}, a network connection manager." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17424 +#: guix-git/doc/guix.texi:17786 msgid "Its value must be an @code{connman-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17429 +#: guix-git/doc/guix.texi:17791 #, no-wrap msgid "" "(service connman-service-type\n" @@ -30324,311 +30933,311 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17432 +#: guix-git/doc/guix.texi:17794 msgid "See below for details about @code{connman-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17434 +#: guix-git/doc/guix.texi:17796 #, no-wrap msgid "{Data Type} connman-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17436 +#: guix-git/doc/guix.texi:17798 msgid "Data Type representing the configuration of connman." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17438 +#: guix-git/doc/guix.texi:17800 #, no-wrap msgid "@code{connman} (default: @var{connman})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17440 +#: guix-git/doc/guix.texi:17802 msgid "The connman package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17441 +#: guix-git/doc/guix.texi:17803 #, no-wrap msgid "@code{disable-vpn?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17443 +#: guix-git/doc/guix.texi:17805 msgid "When true, disable connman's vpn plugin." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17446 +#: guix-git/doc/guix.texi:17808 #, no-wrap msgid "WPA Supplicant" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17447 +#: guix-git/doc/guix.texi:17809 #, no-wrap msgid "{Scheme Variable} wpa-supplicant-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17451 +#: guix-git/doc/guix.texi:17813 msgid "This is the service type to run @url{https://w1.fi/wpa_supplicant/,WPA supplicant}, an authentication daemon required to authenticate against encrypted WiFi or ethernet networks." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17453 +#: guix-git/doc/guix.texi:17815 #, no-wrap msgid "{Data Type} wpa-supplicant-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17455 +#: guix-git/doc/guix.texi:17817 msgid "Data type representing the configuration of WPA Supplicant." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17457 guix-git/doc/guix.texi:32945 +#: guix-git/doc/guix.texi:17819 guix-git/doc/guix.texi:33310 msgid "It takes the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17459 +#: guix-git/doc/guix.texi:17821 #, no-wrap msgid "@code{wpa-supplicant} (default: @code{wpa-supplicant})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17461 +#: guix-git/doc/guix.texi:17823 msgid "The WPA Supplicant package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17462 +#: guix-git/doc/guix.texi:17824 #, no-wrap msgid "@code{requirement} (default: @code{'(user-processes loopback syslogd)}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17464 +#: guix-git/doc/guix.texi:17826 msgid "List of services that should be started before WPA Supplicant starts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17465 +#: guix-git/doc/guix.texi:17827 #, no-wrap msgid "@code{dbus?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17467 +#: guix-git/doc/guix.texi:17829 msgid "Whether to listen for requests on D-Bus." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17468 +#: guix-git/doc/guix.texi:17830 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/wpa_supplicant.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17470 +#: guix-git/doc/guix.texi:17832 msgid "Where to store the PID file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17471 guix-git/doc/guix.texi:31246 -#: guix-git/doc/guix.texi:31388 +#: guix-git/doc/guix.texi:17833 guix-git/doc/guix.texi:31611 +#: guix-git/doc/guix.texi:31753 #, no-wrap msgid "@code{interface} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17474 +#: guix-git/doc/guix.texi:17836 msgid "If this is set, it must specify the name of a network interface that WPA supplicant will control." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17475 guix-git/doc/guix.texi:17591 -#: guix-git/doc/guix.texi:22879 +#: guix-git/doc/guix.texi:17837 guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:23241 #, no-wrap msgid "@code{config-file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17477 +#: guix-git/doc/guix.texi:17839 msgid "Optional configuration file to use." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17480 +#: guix-git/doc/guix.texi:17842 msgid "List of additional command-line arguments to pass to the daemon." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17483 +#: guix-git/doc/guix.texi:17845 #, no-wrap msgid "wicd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17486 +#: guix-git/doc/guix.texi:17848 #, no-wrap msgid "network management" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17487 +#: guix-git/doc/guix.texi:17849 #, no-wrap msgid "{Scheme Procedure} wicd-service [#:wicd @var{wicd}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17490 +#: guix-git/doc/guix.texi:17852 msgid "Return a service that runs @url{https://launchpad.net/wicd,Wicd}, a network management daemon that aims to simplify wired and wireless networking." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17495 +#: guix-git/doc/guix.texi:17857 msgid "This service adds the @var{wicd} package to the global profile, providing several commands to interact with the daemon and configure networking: @command{wicd-client}, a graphical user interface, and the @command{wicd-cli} and @command{wicd-curses} user interfaces." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17497 +#: guix-git/doc/guix.texi:17859 #, no-wrap msgid "ModemManager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17500 +#: guix-git/doc/guix.texi:17862 msgid "Some networking devices such as modems require special care, and this is what the services below focus on." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17501 +#: guix-git/doc/guix.texi:17863 #, no-wrap msgid "{Scheme Variable} modem-manager-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17506 +#: guix-git/doc/guix.texi:17868 msgid "This is the service type for the @uref{https://wiki.gnome.org/Projects/ModemManager, ModemManager} service. The value for this service type is a @code{modem-manager-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17511 +#: guix-git/doc/guix.texi:17873 #, no-wrap msgid "{Data Type} modem-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17513 +#: guix-git/doc/guix.texi:17875 msgid "Data type representing the configuration of ModemManager." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17515 +#: guix-git/doc/guix.texi:17877 #, no-wrap msgid "@code{modem-manager} (default: @code{modem-manager})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17517 +#: guix-git/doc/guix.texi:17879 msgid "The ModemManager package to use." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17521 +#: guix-git/doc/guix.texi:17883 #, no-wrap msgid "USB_ModeSwitch" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17522 +#: guix-git/doc/guix.texi:17884 #, no-wrap msgid "Modeswitching" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17524 +#: guix-git/doc/guix.texi:17886 #, no-wrap msgid "{Scheme Variable} usb-modeswitch-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17529 +#: guix-git/doc/guix.texi:17891 msgid "This is the service type for the @uref{https://www.draisberghof.de/usb_modeswitch/, USB_ModeSwitch} service. The value for this service type is a @code{usb-modeswitch-configuration} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17535 +#: guix-git/doc/guix.texi:17897 msgid "When plugged in, some USB modems (and other USB devices) initially present themselves as a read-only storage medium and not as a modem. They need to be @dfn{modeswitched} before they are usable. The USB_ModeSwitch service type installs udev rules to automatically modeswitch these devices when they are plugged in." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17540 +#: guix-git/doc/guix.texi:17902 #, no-wrap msgid "{Data Type} usb-modeswitch-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17542 +#: guix-git/doc/guix.texi:17904 msgid "Data type representing the configuration of USB_ModeSwitch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17544 +#: guix-git/doc/guix.texi:17906 #, no-wrap msgid "@code{usb-modeswitch} (default: @code{usb-modeswitch})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17546 +#: guix-git/doc/guix.texi:17908 msgid "The USB_ModeSwitch package providing the binaries for modeswitching." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17547 +#: guix-git/doc/guix.texi:17909 #, no-wrap msgid "@code{usb-modeswitch-data} (default: @code{usb-modeswitch-data})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17550 +#: guix-git/doc/guix.texi:17912 msgid "The package providing the device data and udev rules file used by USB_ModeSwitch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17551 +#: guix-git/doc/guix.texi:17913 #, no-wrap msgid "@code{config-file} (default: @code{#~(string-append #$usb-modeswitch:dispatcher \"/etc/usb_modeswitch.conf\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17556 +#: guix-git/doc/guix.texi:17918 msgid "Which config file to use for the USB_ModeSwitch dispatcher. By default the config file shipped with USB_ModeSwitch is used which disables logging to @file{/var/log} among other default settings. If set to @code{#f}, no config file is used." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17570 +#: guix-git/doc/guix.texi:17932 msgid "The @code{(gnu services networking)} module discussed in the previous section provides services for more advanced setups: providing a DHCP service for others to use, filtering packets with iptables or nftables, running a WiFi access point with @command{hostapd}, running the @command{inetd} ``superdaemon'', and more. This section describes those." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17571 +#: guix-git/doc/guix.texi:17933 #, no-wrap msgid "{Scheme Procedure} dhcpd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17575 +#: guix-git/doc/guix.texi:17937 msgid "This type defines a service that runs a DHCP daemon. To create a service of this type, you must supply a @code{}. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17581 +#: guix-git/doc/guix.texi:17943 #, no-wrap msgid "" "(service dhcpd-service-type\n" @@ -30638,96 +31247,96 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17584 +#: guix-git/doc/guix.texi:17946 #, no-wrap msgid "{Data Type} dhcpd-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17586 +#: guix-git/doc/guix.texi:17948 #, no-wrap msgid "@code{package} (default: @code{isc-dhcp})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17591 +#: guix-git/doc/guix.texi:17953 msgid "The package that provides the DHCP daemon. This package is expected to provide the daemon at @file{sbin/dhcpd} relative to its output directory. The default package is the @uref{https://www.isc.org/products/DHCP, ISC's DHCP server}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17596 +#: guix-git/doc/guix.texi:17958 msgid "The configuration file to use. This is required. It will be passed to @code{dhcpd} via its @code{-cf} option. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). See @code{man dhcpd.conf} for details on the configuration file syntax." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17596 +#: guix-git/doc/guix.texi:17958 #, no-wrap msgid "@code{version} (default: @code{\"4\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17601 +#: guix-git/doc/guix.texi:17963 msgid "The DHCP version to use. The ISC DHCP server supports the values ``4'', ``6'', and ``4o6''. These correspond to the @code{dhcpd} program options @code{-4}, @code{-6}, and @code{-4o6}. See @code{man dhcpd} for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17601 +#: guix-git/doc/guix.texi:17963 #, no-wrap msgid "@code{run-directory} (default: @code{\"/run/dhcpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17604 +#: guix-git/doc/guix.texi:17966 msgid "The run directory to use. At service activation time, this directory will be created if it does not exist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17604 +#: guix-git/doc/guix.texi:17966 #, no-wrap msgid "@code{pid-file} (default: @code{\"/run/dhcpd/dhcpd.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17607 +#: guix-git/doc/guix.texi:17969 msgid "The PID file to use. This corresponds to the @code{-pf} option of @code{dhcpd}. See @code{man dhcpd} for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17607 +#: guix-git/doc/guix.texi:17969 #, no-wrap msgid "@code{interfaces} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17613 +#: guix-git/doc/guix.texi:17975 msgid "The names of the network interfaces on which dhcpd should listen for broadcasts. If this list is not empty, then its elements (which must be strings) will be appended to the @code{dhcpd} invocation when starting the daemon. It may not be necessary to explicitly specify any interfaces here; see @code{man dhcpd} for details." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17616 +#: guix-git/doc/guix.texi:17978 #, no-wrap msgid "hostapd service, for Wi-Fi access points" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17617 +#: guix-git/doc/guix.texi:17979 #, no-wrap msgid "Wi-Fi access points, hostapd service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17618 +#: guix-git/doc/guix.texi:17980 #, no-wrap msgid "{Scheme Variable} hostapd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17623 +#: guix-git/doc/guix.texi:17985 msgid "This is the service type to run the @uref{https://w1.fi/hostapd/, hostapd} daemon to set up WiFi (IEEE 802.11) access points and authentication servers. Its associated value must be a @code{hostapd-configuration} as shown below:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17631 +#: guix-git/doc/guix.texi:17993 #, no-wrap msgid "" ";; Use wlan1 to run the access point for \"My Network\".\n" @@ -30739,129 +31348,129 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17634 +#: guix-git/doc/guix.texi:17996 #, no-wrap msgid "{Data Type} hostapd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17637 +#: guix-git/doc/guix.texi:17999 msgid "This data type represents the configuration of the hostapd service, with the following fields:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17639 +#: guix-git/doc/guix.texi:18001 #, no-wrap msgid "@code{package} (default: @code{hostapd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17641 +#: guix-git/doc/guix.texi:18003 msgid "The hostapd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17642 +#: guix-git/doc/guix.texi:18004 #, no-wrap msgid "@code{interface} (default: @code{\"wlan0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17644 +#: guix-git/doc/guix.texi:18006 msgid "The network interface to run the WiFi access point." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17645 +#: guix-git/doc/guix.texi:18007 #, no-wrap msgid "ssid" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17648 +#: guix-git/doc/guix.texi:18010 msgid "The SSID (@dfn{service set identifier}), a string that identifies this network." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17649 +#: guix-git/doc/guix.texi:18011 #, no-wrap msgid "@code{broadcast-ssid?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17651 +#: guix-git/doc/guix.texi:18013 msgid "Whether to broadcast this SSID." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17652 +#: guix-git/doc/guix.texi:18014 #, no-wrap msgid "@code{channel} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17654 +#: guix-git/doc/guix.texi:18016 msgid "The WiFi channel to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17655 +#: guix-git/doc/guix.texi:18017 #, no-wrap msgid "@code{driver} (default: @code{\"nl80211\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17659 +#: guix-git/doc/guix.texi:18021 msgid "The driver interface type. @code{\"nl80211\"} is used with all Linux mac80211 drivers. Use @code{\"none\"} if building hostapd as a standalone RADIUS server that does # not control any wireless/wired driver." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17660 guix-git/doc/guix.texi:23728 -#: guix-git/doc/guix.texi:26807 +#: guix-git/doc/guix.texi:18022 guix-git/doc/guix.texi:24090 +#: guix-git/doc/guix.texi:27144 #, no-wrap msgid "@code{extra-settings} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17664 +#: guix-git/doc/guix.texi:18026 msgid "Extra settings to append as-is to the hostapd configuration file. See @uref{https://w1.fi/cgit/hostap/plain/hostapd/hostapd.conf} for the configuration file reference." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17667 +#: guix-git/doc/guix.texi:18029 #, no-wrap msgid "{Scheme Variable} simulated-wifi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17674 +#: guix-git/doc/guix.texi:18036 msgid "This is the type of a service to simulate WiFi networking, which can be useful in virtual machines for testing purposes. The service loads the Linux kernel @uref{https://www.kernel.org/doc/html/latest/networking/mac80211_hwsim/mac80211_hwsim.html, @code{mac80211_hwsim} module} and starts hostapd to create a pseudo WiFi network that can be seen on @code{wlan0}, by default." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17676 +#: guix-git/doc/guix.texi:18038 msgid "The service's value is a @code{hostapd-configuration} record." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17679 +#: guix-git/doc/guix.texi:18041 #, no-wrap msgid "iptables" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17680 +#: guix-git/doc/guix.texi:18042 #, no-wrap msgid "{Scheme Variable} iptables-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17686 +#: guix-git/doc/guix.texi:18048 msgid "This is the service type to set up an iptables configuration. iptables is a packet filtering framework supported by the Linux kernel. This service supports configuring iptables for both IPv4 and IPv6. A simple example configuration rejecting all incoming connections except those to the ssh port 22 is shown below." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17708 +#: guix-git/doc/guix.texi:18070 #, no-wrap msgid "" "(service iptables-service-type\n" @@ -30887,241 +31496,241 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17711 +#: guix-git/doc/guix.texi:18073 #, no-wrap msgid "{Data Type} iptables-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17713 +#: guix-git/doc/guix.texi:18075 msgid "The data type representing the configuration of iptables." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17715 +#: guix-git/doc/guix.texi:18077 #, no-wrap msgid "@code{iptables} (default: @code{iptables})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17718 +#: guix-git/doc/guix.texi:18080 msgid "The iptables package that provides @code{iptables-restore} and @code{ip6tables-restore}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17718 +#: guix-git/doc/guix.texi:18080 #, no-wrap msgid "@code{ipv4-rules} (default: @code{%iptables-accept-all-rules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17722 +#: guix-git/doc/guix.texi:18084 msgid "The iptables rules to use. It will be passed to @code{iptables-restore}. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17722 +#: guix-git/doc/guix.texi:18084 #, no-wrap msgid "@code{ipv6-rules} (default: @code{%iptables-accept-all-rules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17726 +#: guix-git/doc/guix.texi:18088 msgid "The ip6tables rules to use. It will be passed to @code{ip6tables-restore}. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17729 +#: guix-git/doc/guix.texi:18091 #, no-wrap msgid "nftables" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17730 +#: guix-git/doc/guix.texi:18092 #, no-wrap msgid "{Scheme Variable} nftables-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17738 +#: guix-git/doc/guix.texi:18100 msgid "This is the service type to set up a nftables configuration. nftables is a netfilter project that aims to replace the existing iptables, ip6tables, arptables and ebtables framework. It provides a new packet filtering framework, a new user-space utility @command{nft}, and a compatibility layer for iptables. This service comes with a default ruleset @code{%default-nftables-ruleset} that rejecting all incoming connections except those to the ssh port 22. To use it, simply write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17741 +#: guix-git/doc/guix.texi:18103 #, no-wrap msgid "(service nftables-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17744 +#: guix-git/doc/guix.texi:18106 #, no-wrap msgid "{Data Type} nftables-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17746 +#: guix-git/doc/guix.texi:18108 msgid "The data type representing the configuration of nftables." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17748 +#: guix-git/doc/guix.texi:18110 #, no-wrap msgid "@code{package} (default: @code{nftables})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17750 +#: guix-git/doc/guix.texi:18112 msgid "The nftables package that provides @command{nft}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17750 +#: guix-git/doc/guix.texi:18112 #, no-wrap msgid "@code{ruleset} (default: @code{%default-nftables-ruleset})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17753 +#: guix-git/doc/guix.texi:18115 msgid "The nftables ruleset to use. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17756 +#: guix-git/doc/guix.texi:18118 #, no-wrap msgid "NTP (Network Time Protocol), service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17757 +#: guix-git/doc/guix.texi:18119 #, no-wrap msgid "ntpd, service for the Network Time Protocol daemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17758 +#: guix-git/doc/guix.texi:18120 #, no-wrap msgid "real time clock" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17759 +#: guix-git/doc/guix.texi:18121 #, no-wrap msgid "{Scheme Variable} ntp-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17763 +#: guix-git/doc/guix.texi:18125 msgid "This is the type of the service running the @uref{https://www.ntp.org, Network Time Protocol (NTP)} daemon, @command{ntpd}. The daemon will keep the system clock synchronized with that of the specified NTP servers." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17766 +#: guix-git/doc/guix.texi:18128 msgid "The value of this service is an @code{ntpd-configuration} object, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17768 +#: guix-git/doc/guix.texi:18130 #, no-wrap msgid "{Data Type} ntp-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17770 +#: guix-git/doc/guix.texi:18132 msgid "This is the data type for the NTP service configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17772 +#: guix-git/doc/guix.texi:18134 #, no-wrap msgid "@code{servers} (default: @code{%ntp-servers})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17776 +#: guix-git/doc/guix.texi:18138 msgid "This is the list of servers (@code{} records) with which @command{ntpd} will be synchronized. See the @code{ntp-server} data type definition below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17777 +#: guix-git/doc/guix.texi:18139 #, no-wrap msgid "@code{allow-large-adjustment?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17780 +#: guix-git/doc/guix.texi:18142 msgid "This determines whether @command{ntpd} is allowed to make an initial adjustment of more than 1,000 seconds." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17781 +#: guix-git/doc/guix.texi:18143 #, no-wrap msgid "@code{ntp} (default: @code{ntp})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17783 +#: guix-git/doc/guix.texi:18145 msgid "The NTP package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17786 +#: guix-git/doc/guix.texi:18148 #, no-wrap msgid "{Scheme Variable} %ntp-servers" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17789 +#: guix-git/doc/guix.texi:18151 msgid "List of host names used as the default NTP servers. These are servers of the @uref{https://www.ntppool.org/en/, NTP Pool Project}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17791 +#: guix-git/doc/guix.texi:18153 #, no-wrap msgid "{Data Type} ntp-server" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17793 +#: guix-git/doc/guix.texi:18155 msgid "The data type representing the configuration of a NTP server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17795 +#: guix-git/doc/guix.texi:18157 #, no-wrap msgid "@code{type} (default: @code{'server})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17798 +#: guix-git/doc/guix.texi:18160 msgid "The type of the NTP server, given as a symbol. One of @code{'pool}, @code{'server}, @code{'peer}, @code{'broadcast} or @code{'manycastclient}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17799 +#: guix-git/doc/guix.texi:18161 #, no-wrap msgid "address" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17801 +#: guix-git/doc/guix.texi:18163 msgid "The address of the server, as a string." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17802 guix-git/doc/guix.texi:33774 -#: guix-git/doc/guix.texi:33794 +#: guix-git/doc/guix.texi:18164 guix-git/doc/guix.texi:34211 +#: guix-git/doc/guix.texi:34231 #, no-wrap msgid "options" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17807 +#: guix-git/doc/guix.texi:18169 msgid "NTPD options to use with that specific server, given as a list of option names and/or of option names and values tuples. The following example define a server to use with the options @option{iburst} and @option{prefer}, as well as @option{version} 3 and a @option{maxpoll} time of 16 seconds." msgstr "" #. type: example -#: guix-git/doc/guix.texi:17813 +#: guix-git/doc/guix.texi:18175 #, no-wrap msgid "" "(ntp-server\n" @@ -31131,24 +31740,24 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17817 +#: guix-git/doc/guix.texi:18179 #, no-wrap msgid "OpenNTPD" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17818 +#: guix-git/doc/guix.texi:18180 #, no-wrap msgid "{Scheme Procedure} openntpd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17822 +#: guix-git/doc/guix.texi:18184 msgid "Run the @command{ntpd}, the Network Time Protocol (NTP) daemon, as implemented by @uref{http://www.openntpd.org, OpenNTPD}. The daemon will keep the system clock synchronized with that of the given servers." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17831 +#: guix-git/doc/guix.texi:18193 #, no-wrap msgid "" "(service\n" @@ -31162,134 +31771,134 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17835 +#: guix-git/doc/guix.texi:18197 #, no-wrap msgid "{Scheme Variable} %openntpd-servers" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17838 +#: guix-git/doc/guix.texi:18200 msgid "This variable is a list of the server addresses defined in @code{%ntp-servers}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17840 +#: guix-git/doc/guix.texi:18202 #, no-wrap msgid "{Data Type} openntpd-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17842 +#: guix-git/doc/guix.texi:18204 #, no-wrap msgid "@code{openntpd} (default: @code{(file-append openntpd \"/sbin/ntpd\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17844 +#: guix-git/doc/guix.texi:18206 msgid "The openntpd executable to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17844 +#: guix-git/doc/guix.texi:18206 #, no-wrap msgid "@code{listen-on} (default: @code{'(\"127.0.0.1\" \"::1\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17846 +#: guix-git/doc/guix.texi:18208 msgid "A list of local IP addresses or hostnames the ntpd daemon should listen on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17846 +#: guix-git/doc/guix.texi:18208 #, no-wrap msgid "@code{query-from} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17848 +#: guix-git/doc/guix.texi:18210 msgid "A list of local IP address the ntpd daemon should use for outgoing queries." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17848 +#: guix-git/doc/guix.texi:18210 #, no-wrap msgid "@code{sensor} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17853 +#: guix-git/doc/guix.texi:18215 msgid "Specify a list of timedelta sensor devices ntpd should use. @code{ntpd} will listen to each sensor that actually exists and ignore non-existent ones. See @uref{https://man.openbsd.org/ntpd.conf, upstream documentation} for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17853 +#: guix-git/doc/guix.texi:18215 #, no-wrap msgid "@code{server} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17855 +#: guix-git/doc/guix.texi:18217 msgid "Specify a list of IP addresses or hostnames of NTP servers to synchronize to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17855 +#: guix-git/doc/guix.texi:18217 #, no-wrap msgid "@code{servers} (default: @code{%openntp-servers})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17857 +#: guix-git/doc/guix.texi:18219 msgid "Specify a list of IP addresses or hostnames of NTP pools to synchronize to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17857 +#: guix-git/doc/guix.texi:18219 #, no-wrap msgid "@code{constraint-from} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17864 +#: guix-git/doc/guix.texi:18226 msgid "@code{ntpd} can be configured to query the ‘Date’ from trusted HTTPS servers via TLS. This time information is not used for precision but acts as an authenticated constraint, thereby reducing the impact of unauthenticated NTP man-in-the-middle attacks. Specify a list of URLs, IP addresses or hostnames of HTTPS servers to provide a constraint." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17864 +#: guix-git/doc/guix.texi:18226 #, no-wrap msgid "@code{constraints-from} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17868 +#: guix-git/doc/guix.texi:18230 msgid "As with constraint from, specify a list of URLs, IP addresses or hostnames of HTTPS servers to provide a constraint. Should the hostname resolve to multiple IP addresses, @code{ntpd} will calculate a median constraint from all of them." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17871 +#: guix-git/doc/guix.texi:18233 #, no-wrap msgid "inetd" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17872 +#: guix-git/doc/guix.texi:18234 #, no-wrap msgid "{Scheme variable} inetd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17877 +#: guix-git/doc/guix.texi:18239 msgid "This service runs the @command{inetd} (@pxref{inetd invocation,,, inetutils, GNU Inetutils}) daemon. @command{inetd} listens for connections on internet sockets, and lazily starts the specified server program when a connection is made on one of these sockets." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17883 +#: guix-git/doc/guix.texi:18245 msgid "The value of this service is an @code{inetd-configuration} object. The following example configures the @command{inetd} daemon to provide the built-in @command{echo} service, as well as an smtp service which forwards smtp traffic over ssh to a server @code{smtp-server} behind a gateway @code{hostname}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17906 +#: guix-git/doc/guix.texi:18268 #, no-wrap msgid "" "(service\n" @@ -31316,463 +31925,465 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17909 +#: guix-git/doc/guix.texi:18271 msgid "See below for more details about @code{inetd-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17911 +#: guix-git/doc/guix.texi:18273 #, no-wrap msgid "{Data Type} inetd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17913 +#: guix-git/doc/guix.texi:18275 msgid "Data type representing the configuration of @command{inetd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17915 +#: guix-git/doc/guix.texi:18277 #, no-wrap msgid "@code{program} (default: @code{(file-append inetutils \"/libexec/inetd\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17917 +#: guix-git/doc/guix.texi:18279 msgid "The @command{inetd} executable to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17918 guix-git/doc/guix.texi:27655 +#: guix-git/doc/guix.texi:18280 guix-git/doc/guix.texi:27992 #, no-wrap msgid "@code{entries} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17921 +#: guix-git/doc/guix.texi:18283 msgid "A list of @command{inetd} service entries. Each entry should be created by the @code{inetd-entry} constructor." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17924 +#: guix-git/doc/guix.texi:18286 #, no-wrap msgid "{Data Type} inetd-entry" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17928 +#: guix-git/doc/guix.texi:18290 msgid "Data type representing an entry in the @command{inetd} configuration. Each entry corresponds to a socket where @command{inetd} will listen for requests." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17930 +#: guix-git/doc/guix.texi:18292 #, no-wrap msgid "@code{node} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17935 +#: guix-git/doc/guix.texi:18297 msgid "Optional string, a comma-separated list of local addresses @command{inetd} should use when listening for this service. @xref{Configuration file,,, inetutils, GNU Inetutils} for a complete description of all options." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17937 +#: guix-git/doc/guix.texi:18299 msgid "A string, the name must correspond to an entry in @code{/etc/services}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17937 +#: guix-git/doc/guix.texi:18299 #, no-wrap msgid "socket-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17940 +#: guix-git/doc/guix.texi:18302 msgid "One of @code{'stream}, @code{'dgram}, @code{'raw}, @code{'rdm} or @code{'seqpacket}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17940 +#: guix-git/doc/guix.texi:18302 #, no-wrap msgid "protocol" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17942 +#: guix-git/doc/guix.texi:18304 msgid "A string, must correspond to an entry in @code{/etc/protocols}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17942 +#: guix-git/doc/guix.texi:18304 #, no-wrap msgid "@code{wait?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17945 +#: guix-git/doc/guix.texi:18307 msgid "Whether @command{inetd} should wait for the server to exit before listening to new service requests." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17950 +#: guix-git/doc/guix.texi:18312 msgid "A string containing the user (and, optionally, group) name of the user as whom the server should run. The group name can be specified in a suffix, separated by a colon or period, i.e.@: @code{\"user\"}, @code{\"user:group\"} or @code{\"user.group\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17950 +#: guix-git/doc/guix.texi:18312 #, no-wrap msgid "@code{program} (default: @code{\"internal\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:18315 msgid "The server program which will serve the requests, or @code{\"internal\"} if @command{inetd} should use a built-in service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17958 +#: guix-git/doc/guix.texi:18320 msgid "A list strings or file-like objects, which are the server program's arguments, starting with the zeroth argument, i.e.@: the name of the program itself. For @command{inetd}'s internal services, this entry must be @code{'()} or @code{'(\"internal\")}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17962 +#: guix-git/doc/guix.texi:18324 msgid "@xref{Configuration file,,, inetutils, GNU Inetutils} for a more detailed discussion of each configuration field." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17964 +#: guix-git/doc/guix.texi:18326 #, no-wrap msgid "opendht, distributed hash table network service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17965 +#: guix-git/doc/guix.texi:18327 #, no-wrap msgid "dhtproxy, for use with jami" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17966 +#: guix-git/doc/guix.texi:18328 #, no-wrap msgid "{Scheme Variable} opendht-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17971 +#: guix-git/doc/guix.texi:18333 msgid "This is the type of the service running a @uref{https://opendht.net, OpenDHT} node, @command{dhtnode}. The daemon can be used to host your own proxy service to the distributed hash table (DHT), for example to connect to with Jami, among other applications." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:17981 +#: guix-git/doc/guix.texi:18343 msgid "When using the OpenDHT proxy server, the IP addresses it ``sees'' from the clients should be addresses reachable from other peers. In practice this means that a publicly reachable address is best suited for a proxy server, outside of your private network. For example, hosting the proxy server on a IPv4 private local network and exposing it via port forwarding could work for external peers, but peers local to the proxy would have their private addresses shared with the external peers, leading to connectivity problems." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17985 +#: guix-git/doc/guix.texi:18347 msgid "The value of this service is a @code{opendht-configuration} object, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17987 +#: guix-git/doc/guix.texi:18349 #, no-wrap msgid "{Data Type} opendht-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17989 +#: guix-git/doc/guix.texi:18351 msgid "This is the data type for the OpenDHT service configuration." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17994 +#: guix-git/doc/guix.texi:18356 msgid "Available @code{opendht-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:17995 +#: guix-git/doc/guix.texi:18357 #, no-wrap msgid "{@code{opendht-configuration} parameter} package opendht" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:17997 +#: guix-git/doc/guix.texi:18359 msgid "The @code{opendht} package to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18000 +#: guix-git/doc/guix.texi:18362 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean peer-discovery?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18002 +#: guix-git/doc/guix.texi:18364 msgid "Whether to enable the multicast local peer discovery mechanism." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18004 guix-git/doc/guix.texi:18012 -#: guix-git/doc/guix.texi:18020 guix-git/doc/guix.texi:19712 -#: guix-git/doc/guix.texi:19788 guix-git/doc/guix.texi:19830 -#: guix-git/doc/guix.texi:19850 guix-git/doc/guix.texi:19856 -#: guix-git/doc/guix.texi:19872 guix-git/doc/guix.texi:19960 -#: guix-git/doc/guix.texi:20048 guix-git/doc/guix.texi:20361 -#: guix-git/doc/guix.texi:20374 guix-git/doc/guix.texi:21492 -#: guix-git/doc/guix.texi:22970 guix-git/doc/guix.texi:23076 -#: guix-git/doc/guix.texi:23141 guix-git/doc/guix.texi:23150 -#: guix-git/doc/guix.texi:24383 guix-git/doc/guix.texi:24427 -#: guix-git/doc/guix.texi:24444 guix-git/doc/guix.texi:24452 -#: guix-git/doc/guix.texi:24467 guix-git/doc/guix.texi:24485 -#: guix-git/doc/guix.texi:24509 guix-git/doc/guix.texi:24562 -#: guix-git/doc/guix.texi:24695 guix-git/doc/guix.texi:24729 -#: guix-git/doc/guix.texi:24765 guix-git/doc/guix.texi:24781 -#: guix-git/doc/guix.texi:24809 guix-git/doc/guix.texi:24870 -#: guix-git/doc/guix.texi:24953 guix-git/doc/guix.texi:28367 -#: guix-git/doc/guix.texi:28381 guix-git/doc/guix.texi:28403 -#: guix-git/doc/guix.texi:28522 guix-git/doc/guix.texi:28536 -#: guix-git/doc/guix.texi:28557 guix-git/doc/guix.texi:28578 -#: guix-git/doc/guix.texi:28585 guix-git/doc/guix.texi:28630 -#: guix-git/doc/guix.texi:28637 guix-git/doc/guix.texi:29426 -#: guix-git/doc/guix.texi:29440 guix-git/doc/guix.texi:29612 -#: guix-git/doc/guix.texi:29657 guix-git/doc/guix.texi:29744 -#: guix-git/doc/guix.texi:29946 guix-git/doc/guix.texi:29979 -#: guix-git/doc/guix.texi:30119 guix-git/doc/guix.texi:30130 -#: guix-git/doc/guix.texi:30381 guix-git/doc/guix.texi:31900 -#: guix-git/doc/guix.texi:31909 guix-git/doc/guix.texi:31917 -#: guix-git/doc/guix.texi:31925 guix-git/doc/guix.texi:31941 -#: guix-git/doc/guix.texi:31957 guix-git/doc/guix.texi:31965 -#: guix-git/doc/guix.texi:31973 guix-git/doc/guix.texi:31982 -#: guix-git/doc/guix.texi:31991 guix-git/doc/guix.texi:32007 -#: guix-git/doc/guix.texi:32071 guix-git/doc/guix.texi:32177 -#: guix-git/doc/guix.texi:32185 guix-git/doc/guix.texi:32193 -#: guix-git/doc/guix.texi:32218 guix-git/doc/guix.texi:32272 -#: guix-git/doc/guix.texi:32320 guix-git/doc/guix.texi:32521 -#: guix-git/doc/guix.texi:32528 +#: guix-git/doc/guix.texi:18366 guix-git/doc/guix.texi:18374 +#: guix-git/doc/guix.texi:18382 guix-git/doc/guix.texi:20074 +#: guix-git/doc/guix.texi:20150 guix-git/doc/guix.texi:20192 +#: guix-git/doc/guix.texi:20212 guix-git/doc/guix.texi:20218 +#: guix-git/doc/guix.texi:20234 guix-git/doc/guix.texi:20322 +#: guix-git/doc/guix.texi:20410 guix-git/doc/guix.texi:20723 +#: guix-git/doc/guix.texi:20736 guix-git/doc/guix.texi:21854 +#: guix-git/doc/guix.texi:23332 guix-git/doc/guix.texi:23438 +#: guix-git/doc/guix.texi:23503 guix-git/doc/guix.texi:23512 +#: guix-git/doc/guix.texi:24745 guix-git/doc/guix.texi:24789 +#: guix-git/doc/guix.texi:24806 guix-git/doc/guix.texi:24814 +#: guix-git/doc/guix.texi:24829 guix-git/doc/guix.texi:24847 +#: guix-git/doc/guix.texi:24871 guix-git/doc/guix.texi:24924 +#: guix-git/doc/guix.texi:25057 guix-git/doc/guix.texi:25091 +#: guix-git/doc/guix.texi:25127 guix-git/doc/guix.texi:25143 +#: guix-git/doc/guix.texi:25171 guix-git/doc/guix.texi:25232 +#: guix-git/doc/guix.texi:25315 guix-git/doc/guix.texi:28704 +#: guix-git/doc/guix.texi:28718 guix-git/doc/guix.texi:28740 +#: guix-git/doc/guix.texi:28859 guix-git/doc/guix.texi:28873 +#: guix-git/doc/guix.texi:28894 guix-git/doc/guix.texi:28915 +#: guix-git/doc/guix.texi:28922 guix-git/doc/guix.texi:28967 +#: guix-git/doc/guix.texi:28974 guix-git/doc/guix.texi:29763 +#: guix-git/doc/guix.texi:29777 guix-git/doc/guix.texi:29977 +#: guix-git/doc/guix.texi:30022 guix-git/doc/guix.texi:30109 +#: guix-git/doc/guix.texi:30311 guix-git/doc/guix.texi:30344 +#: guix-git/doc/guix.texi:30484 guix-git/doc/guix.texi:30495 +#: guix-git/doc/guix.texi:30746 guix-git/doc/guix.texi:32265 +#: guix-git/doc/guix.texi:32274 guix-git/doc/guix.texi:32282 +#: guix-git/doc/guix.texi:32290 guix-git/doc/guix.texi:32306 +#: guix-git/doc/guix.texi:32322 guix-git/doc/guix.texi:32330 +#: guix-git/doc/guix.texi:32338 guix-git/doc/guix.texi:32347 +#: guix-git/doc/guix.texi:32356 guix-git/doc/guix.texi:32372 +#: guix-git/doc/guix.texi:32436 guix-git/doc/guix.texi:32542 +#: guix-git/doc/guix.texi:32550 guix-git/doc/guix.texi:32558 +#: guix-git/doc/guix.texi:32583 guix-git/doc/guix.texi:32637 +#: guix-git/doc/guix.texi:32685 guix-git/doc/guix.texi:32886 +#: guix-git/doc/guix.texi:32893 msgid "Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18007 +#: guix-git/doc/guix.texi:18369 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean enable-logging?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18010 +#: guix-git/doc/guix.texi:18372 msgid "Whether to enable logging messages to syslog. It is disabled by default as it is rather verbose." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18015 +#: guix-git/doc/guix.texi:18377 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean debug?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18018 +#: guix-git/doc/guix.texi:18380 msgid "Whether to enable debug-level logging messages. This has no effect if logging is disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18023 +#: guix-git/doc/guix.texi:18385 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-string bootstrap-host" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18029 +#: guix-git/doc/guix.texi:18391 msgid "The node host name that is used to make the first connection to the network. A specific port value can be provided by appending the @code{:PORT} suffix. By default, it uses the Jami bootstrap nodes, but any host can be specified here. It's also possible to disable bootsrapping by setting this to the @code{'disabled} symbol." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18031 +#: guix-git/doc/guix.texi:18393 msgid "Defaults to @samp{\"bootstrap.jami.net:4222\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18034 +#: guix-git/doc/guix.texi:18396 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18037 +#: guix-git/doc/guix.texi:18399 msgid "The UDP port to bind to. When set to @code{'disabled}, an available port is automatically selected." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18039 +#: guix-git/doc/guix.texi:18401 msgid "Defaults to @samp{4222}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18042 +#: guix-git/doc/guix.texi:18404 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number proxy-server-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18044 +#: guix-git/doc/guix.texi:18406 msgid "Spawn a proxy server listening on the specified port." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18046 guix-git/doc/guix.texi:18053 -#: guix-git/doc/guix.texi:24391 guix-git/doc/guix.texi:24435 -#: guix-git/doc/guix.texi:24648 guix-git/doc/guix.texi:24704 -#: guix-git/doc/guix.texi:24878 guix-git/doc/guix.texi:24889 -#: guix-git/doc/guix.texi:24962 guix-git/doc/guix.texi:25687 -#: guix-git/doc/guix.texi:25730 guix-git/doc/guix.texi:25738 -#: guix-git/doc/guix.texi:25746 guix-git/doc/guix.texi:25754 -#: guix-git/doc/guix.texi:25763 guix-git/doc/guix.texi:25771 -#: guix-git/doc/guix.texi:25778 guix-git/doc/guix.texi:25786 -#: guix-git/doc/guix.texi:25794 guix-git/doc/guix.texi:25804 -#: guix-git/doc/guix.texi:25811 guix-git/doc/guix.texi:25835 -#: guix-git/doc/guix.texi:25843 guix-git/doc/guix.texi:25869 -#: guix-git/doc/guix.texi:25878 guix-git/doc/guix.texi:25887 -#: guix-git/doc/guix.texi:25896 guix-git/doc/guix.texi:25905 -#: guix-git/doc/guix.texi:25914 guix-git/doc/guix.texi:25922 -#: guix-git/doc/guix.texi:25930 guix-git/doc/guix.texi:25937 -#: guix-git/doc/guix.texi:25945 guix-git/doc/guix.texi:25952 -#: guix-git/doc/guix.texi:25960 guix-git/doc/guix.texi:25968 -#: guix-git/doc/guix.texi:25977 guix-git/doc/guix.texi:25986 -#: guix-git/doc/guix.texi:25994 guix-git/doc/guix.texi:26002 -#: guix-git/doc/guix.texi:26010 guix-git/doc/guix.texi:26021 -#: guix-git/doc/guix.texi:26031 guix-git/doc/guix.texi:26042 -#: guix-git/doc/guix.texi:26051 guix-git/doc/guix.texi:26061 -#: guix-git/doc/guix.texi:26069 guix-git/doc/guix.texi:26080 -#: guix-git/doc/guix.texi:26089 guix-git/doc/guix.texi:26099 -#: guix-git/doc/guix.texi:29339 guix-git/doc/guix.texi:29346 -#: guix-git/doc/guix.texi:29353 guix-git/doc/guix.texi:29360 -#: guix-git/doc/guix.texi:29367 guix-git/doc/guix.texi:29374 -#: guix-git/doc/guix.texi:29382 guix-git/doc/guix.texi:29390 -#: guix-git/doc/guix.texi:29397 guix-git/doc/guix.texi:29404 -#: guix-git/doc/guix.texi:29411 guix-git/doc/guix.texi:29418 -#: guix-git/doc/guix.texi:29448 guix-git/doc/guix.texi:29486 -#: guix-git/doc/guix.texi:29493 guix-git/doc/guix.texi:29502 -#: guix-git/doc/guix.texi:29524 guix-git/doc/guix.texi:29532 -#: guix-git/doc/guix.texi:29539 guix-git/doc/guix.texi:29694 -#: guix-git/doc/guix.texi:29714 guix-git/doc/guix.texi:29729 -#: guix-git/doc/guix.texi:29736 guix-git/doc/guix.texi:32473 -#: guix-git/doc/guix.texi:32481 guix-git/doc/guix.texi:32489 -#: guix-git/doc/guix.texi:32497 guix-git/doc/guix.texi:32505 -#: guix-git/doc/guix.texi:32513 +#: guix-git/doc/guix.texi:18408 guix-git/doc/guix.texi:18415 +#: guix-git/doc/guix.texi:24753 guix-git/doc/guix.texi:24797 +#: guix-git/doc/guix.texi:25010 guix-git/doc/guix.texi:25066 +#: guix-git/doc/guix.texi:25240 guix-git/doc/guix.texi:25251 +#: guix-git/doc/guix.texi:25324 guix-git/doc/guix.texi:26024 +#: guix-git/doc/guix.texi:26067 guix-git/doc/guix.texi:26075 +#: guix-git/doc/guix.texi:26083 guix-git/doc/guix.texi:26091 +#: guix-git/doc/guix.texi:26100 guix-git/doc/guix.texi:26108 +#: guix-git/doc/guix.texi:26115 guix-git/doc/guix.texi:26123 +#: guix-git/doc/guix.texi:26131 guix-git/doc/guix.texi:26141 +#: guix-git/doc/guix.texi:26148 guix-git/doc/guix.texi:26172 +#: guix-git/doc/guix.texi:26180 guix-git/doc/guix.texi:26206 +#: guix-git/doc/guix.texi:26215 guix-git/doc/guix.texi:26224 +#: guix-git/doc/guix.texi:26233 guix-git/doc/guix.texi:26242 +#: guix-git/doc/guix.texi:26251 guix-git/doc/guix.texi:26259 +#: guix-git/doc/guix.texi:26267 guix-git/doc/guix.texi:26274 +#: guix-git/doc/guix.texi:26282 guix-git/doc/guix.texi:26289 +#: guix-git/doc/guix.texi:26297 guix-git/doc/guix.texi:26305 +#: guix-git/doc/guix.texi:26314 guix-git/doc/guix.texi:26323 +#: guix-git/doc/guix.texi:26331 guix-git/doc/guix.texi:26339 +#: guix-git/doc/guix.texi:26347 guix-git/doc/guix.texi:26358 +#: guix-git/doc/guix.texi:26368 guix-git/doc/guix.texi:26379 +#: guix-git/doc/guix.texi:26388 guix-git/doc/guix.texi:26398 +#: guix-git/doc/guix.texi:26406 guix-git/doc/guix.texi:26417 +#: guix-git/doc/guix.texi:26426 guix-git/doc/guix.texi:26436 +#: guix-git/doc/guix.texi:29676 guix-git/doc/guix.texi:29683 +#: guix-git/doc/guix.texi:29690 guix-git/doc/guix.texi:29697 +#: guix-git/doc/guix.texi:29704 guix-git/doc/guix.texi:29711 +#: guix-git/doc/guix.texi:29719 guix-git/doc/guix.texi:29727 +#: guix-git/doc/guix.texi:29734 guix-git/doc/guix.texi:29741 +#: guix-git/doc/guix.texi:29748 guix-git/doc/guix.texi:29755 +#: guix-git/doc/guix.texi:29785 guix-git/doc/guix.texi:29823 +#: guix-git/doc/guix.texi:29830 guix-git/doc/guix.texi:29839 +#: guix-git/doc/guix.texi:29861 guix-git/doc/guix.texi:29869 +#: guix-git/doc/guix.texi:29876 guix-git/doc/guix.texi:29905 +#: guix-git/doc/guix.texi:29912 guix-git/doc/guix.texi:29919 +#: guix-git/doc/guix.texi:29926 guix-git/doc/guix.texi:30059 +#: guix-git/doc/guix.texi:30079 guix-git/doc/guix.texi:30094 +#: guix-git/doc/guix.texi:30101 guix-git/doc/guix.texi:32838 +#: guix-git/doc/guix.texi:32846 guix-git/doc/guix.texi:32854 +#: guix-git/doc/guix.texi:32862 guix-git/doc/guix.texi:32870 +#: guix-git/doc/guix.texi:32878 msgid "Defaults to @samp{disabled}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18049 +#: guix-git/doc/guix.texi:18411 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number proxy-server-port-tls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18051 +#: guix-git/doc/guix.texi:18413 msgid "Spawn a proxy server listening to TLS connections on the specified port." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18057 +#: guix-git/doc/guix.texi:18419 #, no-wrap msgid "Tor" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18058 +#: guix-git/doc/guix.texi:18420 #, no-wrap msgid "{Scheme Variable} tor-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18063 +#: guix-git/doc/guix.texi:18425 msgid "This is the type for a service that runs the @uref{https://torproject.org, Tor} anonymous networking daemon. The service is configured using a @code{} record. By default, the Tor daemon runs as the @code{tor} unprivileged user, which is a member of the @code{tor} group." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18066 +#: guix-git/doc/guix.texi:18428 #, no-wrap msgid "{Data Type} tor-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18068 +#: guix-git/doc/guix.texi:18430 #, no-wrap msgid "@code{tor} (default: @code{tor})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18073 +#: guix-git/doc/guix.texi:18435 msgid "The package that provides the Tor daemon. This package is expected to provide the daemon at @file{bin/tor} relative to its output directory. The default package is the @uref{https://www.torproject.org, Tor Project's} implementation." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18074 +#: guix-git/doc/guix.texi:18436 #, no-wrap msgid "@code{config-file} (default: @code{(plain-file \"empty\" \"\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18080 +#: guix-git/doc/guix.texi:18442 msgid "The configuration file to use. It will be appended to a default configuration file, and the final configuration file will be passed to @code{tor} via its @code{-f} option. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). See @code{man tor} for details on the configuration file syntax." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18081 +#: guix-git/doc/guix.texi:18443 #, no-wrap msgid "@code{hidden-services} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18087 +#: guix-git/doc/guix.texi:18449 msgid "The list of @code{} records to use. For any hidden service you include in this list, appropriate configuration to enable the hidden service will be automatically added to the default configuration file. You may conveniently create @code{} records using the @code{tor-hidden-service} procedure described below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18088 +#: guix-git/doc/guix.texi:18450 #, no-wrap msgid "@code{socks-socket-type} (default: @code{'tcp})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18095 +#: guix-git/doc/guix.texi:18457 msgid "The default socket type that Tor should use for its SOCKS socket. This must be either @code{'tcp} or @code{'unix}. If it is @code{'tcp}, then by default Tor will listen on TCP port 9050 on the loopback interface (i.e., localhost). If it is @code{'unix}, then Tor will listen on the UNIX domain socket @file{/var/run/tor/socks-sock}, which will be made writable by members of the @code{tor} group." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18100 +#: guix-git/doc/guix.texi:18462 msgid "If you want to customize the SOCKS socket in more detail, leave @code{socks-socket-type} at its default value of @code{'tcp} and use @code{config-file} to override the default by providing your own @code{SocksPort} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18101 +#: guix-git/doc/guix.texi:18463 #, no-wrap msgid "@code{control-socket?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18107 +#: guix-git/doc/guix.texi:18469 msgid "Whether or not to provide a ``control socket'' by which Tor can be controlled to, for instance, dynamically instantiate tor onion services. If @code{#t}, Tor will listen for control commands on the UNIX domain socket @file{/var/run/tor/control-sock}, which will be made writable by members of the @code{tor} group." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18111 +#: guix-git/doc/guix.texi:18473 #, no-wrap msgid "hidden service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18112 +#: guix-git/doc/guix.texi:18474 #, no-wrap msgid "{Scheme Procedure} tor-hidden-service @var{name} @var{mapping}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18115 +#: guix-git/doc/guix.texi:18477 msgid "Define a new Tor @dfn{hidden service} called @var{name} and implementing @var{mapping}. @var{mapping} is a list of port/host tuples, such as:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18119 +#: guix-git/doc/guix.texi:18481 #, no-wrap msgid "" " '((22 \"127.0.0.1:22\")\n" @@ -31780,43 +32391,43 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18123 +#: guix-git/doc/guix.texi:18485 msgid "In this example, port 22 of the hidden service is mapped to local port 22, and port 80 is mapped to local port 8080." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18127 +#: guix-git/doc/guix.texi:18489 msgid "This creates a @file{/var/lib/tor/hidden-services/@var{name}} directory, where the @file{hostname} file contains the @code{.onion} host name for the hidden service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18130 +#: guix-git/doc/guix.texi:18492 msgid "See @uref{https://www.torproject.org/docs/tor-hidden-service.html.en, the Tor project's documentation} for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18133 +#: guix-git/doc/guix.texi:18495 msgid "The @code{(gnu services rsync)} module provides the following services:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18137 +#: guix-git/doc/guix.texi:18499 msgid "You might want an rsync daemon if you have files that you want available so anyone (or just yourself) can download existing files or upload new files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18138 +#: guix-git/doc/guix.texi:18500 #, no-wrap msgid "{Scheme Variable} rsync-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18142 +#: guix-git/doc/guix.texi:18504 msgid "This is the service type for the @uref{https://rsync.samba.org, rsync} daemon, The value for this service type is a @command{rsync-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18155 +#: guix-git/doc/guix.texi:18517 #, no-wrap msgid "" ";; Export two directories over rsync. By default rsync listens on\n" @@ -31833,236 +32444,236 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18158 +#: guix-git/doc/guix.texi:18520 msgid "See below for details about @code{rsync-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18160 +#: guix-git/doc/guix.texi:18522 #, no-wrap msgid "{Data Type} rsync-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18162 +#: guix-git/doc/guix.texi:18524 msgid "Data type representing the configuration for @code{rsync-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18164 +#: guix-git/doc/guix.texi:18526 #, no-wrap msgid "@code{package} (default: @var{rsync})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18166 +#: guix-git/doc/guix.texi:18528 msgid "@code{rsync} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18167 guix-git/doc/guix.texi:31480 +#: guix-git/doc/guix.texi:18529 guix-git/doc/guix.texi:31845 #, no-wrap msgid "@code{address} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18170 +#: guix-git/doc/guix.texi:18532 msgid "IP address on which @command{rsync} listens for incoming connections. If unspecified, it defaults to listening on all available addresses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18171 +#: guix-git/doc/guix.texi:18533 #, no-wrap msgid "@code{port-number} (default: @code{873})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18175 +#: guix-git/doc/guix.texi:18537 msgid "TCP port on which @command{rsync} listens for incoming connections. If port is less than @code{1024} @command{rsync} needs to be started as the @code{root} user and group." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18176 +#: guix-git/doc/guix.texi:18538 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/rsyncd/rsyncd.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18178 +#: guix-git/doc/guix.texi:18540 msgid "Name of the file where @command{rsync} writes its PID." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18179 +#: guix-git/doc/guix.texi:18541 #, no-wrap msgid "@code{lock-file} (default: @code{\"/var/run/rsyncd/rsyncd.lock\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18181 +#: guix-git/doc/guix.texi:18543 msgid "Name of the file where @command{rsync} writes its lock file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18182 +#: guix-git/doc/guix.texi:18544 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/rsyncd.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18184 +#: guix-git/doc/guix.texi:18546 msgid "Name of the file where @command{rsync} writes its log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18185 guix-git/doc/guix.texi:35582 +#: guix-git/doc/guix.texi:18547 guix-git/doc/guix.texi:36062 #, no-wrap msgid "@code{user} (default: @code{\"root\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18187 +#: guix-git/doc/guix.texi:18549 msgid "Owner of the @code{rsync} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18188 +#: guix-git/doc/guix.texi:18550 #, no-wrap msgid "@code{group} (default: @code{\"root\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18190 +#: guix-git/doc/guix.texi:18552 msgid "Group of the @code{rsync} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18191 +#: guix-git/doc/guix.texi:18553 #, no-wrap msgid "@code{uid} (default: @code{\"rsyncd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18194 +#: guix-git/doc/guix.texi:18556 msgid "User name or user ID that file transfers to and from that module should take place as when the daemon was run as @code{root}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18195 +#: guix-git/doc/guix.texi:18557 #, no-wrap msgid "@code{gid} (default: @code{\"rsyncd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18197 guix-git/doc/guix.texi:18676 +#: guix-git/doc/guix.texi:18559 guix-git/doc/guix.texi:19038 msgid "Group name or group ID that will be used when accessing the module." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18198 guix-git/doc/guix.texi:36378 +#: guix-git/doc/guix.texi:18560 guix-git/doc/guix.texi:36868 #, no-wrap msgid "@code{modules} (default: @code{%default-modules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18201 +#: guix-git/doc/guix.texi:18563 msgid "List of ``modules''---i.e., directories exported over rsync. Each element must be a @code{rsync-module} record, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18204 +#: guix-git/doc/guix.texi:18566 #, no-wrap msgid "{Data Type} rsync-module" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18207 +#: guix-git/doc/guix.texi:18569 msgid "This is the data type for rsync ``modules''. A module is a directory exported over the rsync protocol. The available fields are as follows:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18213 +#: guix-git/doc/guix.texi:18575 msgid "The module name. This is the name that shows up in URLs. For example, if the module is called @code{music}, the corresponding URL will be @code{rsync://host.example.org/music}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18214 +#: guix-git/doc/guix.texi:18576 #, fuzzy, no-wrap msgid "file-name" msgstr "Canali" #. type: table -#: guix-git/doc/guix.texi:18216 +#: guix-git/doc/guix.texi:18578 msgid "Name of the directory being exported." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18220 +#: guix-git/doc/guix.texi:18582 msgid "Comment associated with the module. Client user interfaces may display it when they obtain the list of available modules." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18221 +#: guix-git/doc/guix.texi:18583 #, no-wrap msgid "@code{read-only?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18225 +#: guix-git/doc/guix.texi:18587 msgid "Whether or not client will be able to upload files. If this is false, the uploads will be authorized if permissions on the daemon side permit it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18226 +#: guix-git/doc/guix.texi:18588 #, no-wrap msgid "@code{chroot?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18230 +#: guix-git/doc/guix.texi:18592 msgid "When this is true, the rsync daemon changes root to the module's directory before starting file transfers with the client. This improves security, but requires rsync to run as root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18231 +#: guix-git/doc/guix.texi:18593 #, no-wrap msgid "@code{timeout} (default: @code{300})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18234 +#: guix-git/doc/guix.texi:18596 msgid "Idle time in seconds after which the daemon closes a connection with the client." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18238 +#: guix-git/doc/guix.texi:18600 msgid "The @code{(gnu services syncthing)} module provides the following services:" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18238 +#: guix-git/doc/guix.texi:18600 #, no-wrap msgid "syncthing" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18243 +#: guix-git/doc/guix.texi:18605 msgid "You might want a syncthing daemon if you have files between two or more computers and want to sync them in real time, safely protected from prying eyes." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18244 +#: guix-git/doc/guix.texi:18606 #, no-wrap msgid "{Scheme Variable} syncthing-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18248 +#: guix-git/doc/guix.texi:18610 msgid "This is the service type for the @uref{https://syncthing.net/, syncthing} daemon, The value for this service type is a @command{syncthing-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18252 +#: guix-git/doc/guix.texi:18614 #, no-wrap msgid "" "(service syncthing-service-type\n" @@ -32070,160 +32681,160 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18255 +#: guix-git/doc/guix.texi:18617 msgid "See below for details about @code{syncthing-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18256 +#: guix-git/doc/guix.texi:18618 #, no-wrap msgid "{Data Type} syncthing-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18258 +#: guix-git/doc/guix.texi:18620 msgid "Data type representing the configuration for @code{syncthing-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18260 +#: guix-git/doc/guix.texi:18622 #, no-wrap msgid "@code{syncthing} (default: @var{syncthing})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18262 +#: guix-git/doc/guix.texi:18624 msgid "@code{syncthing} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18263 +#: guix-git/doc/guix.texi:18625 #, no-wrap msgid "@code{arguments} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18265 +#: guix-git/doc/guix.texi:18627 msgid "List of command-line arguments passing to @code{syncthing} binary." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18266 +#: guix-git/doc/guix.texi:18628 #, no-wrap msgid "@code{logflags} (default: @var{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18269 +#: guix-git/doc/guix.texi:18631 msgid "Sum of logging flags, see @uref{https://docs.syncthing.net/users/syncthing.html#cmdoption-logflags, Syncthing documentation logflags}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18270 +#: guix-git/doc/guix.texi:18632 #, no-wrap msgid "@code{user} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18273 +#: guix-git/doc/guix.texi:18635 msgid "The user as which the Syncthing service is to be run. This assumes that the specified user exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18274 +#: guix-git/doc/guix.texi:18636 #, no-wrap msgid "@code{group} (default: @var{\"users\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18277 +#: guix-git/doc/guix.texi:18639 msgid "The group as which the Syncthing service is to be run. This assumes that the specified group exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18278 +#: guix-git/doc/guix.texi:18640 #, no-wrap msgid "@code{home} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18281 +#: guix-git/doc/guix.texi:18643 msgid "Common configuration and data directory. The default configuration directory is @file{$HOME} of the specified Syncthing @code{user}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18287 +#: guix-git/doc/guix.texi:18649 msgid "Furthermore, @code{(gnu services ssh)} provides the following services." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18287 guix-git/doc/guix.texi:18326 -#: guix-git/doc/guix.texi:35715 +#: guix-git/doc/guix.texi:18649 guix-git/doc/guix.texi:18688 +#: guix-git/doc/guix.texi:36205 #, no-wrap msgid "SSH" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18288 guix-git/doc/guix.texi:18327 -#: guix-git/doc/guix.texi:35716 +#: guix-git/doc/guix.texi:18650 guix-git/doc/guix.texi:18689 +#: guix-git/doc/guix.texi:36206 #, no-wrap msgid "SSH server" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18290 +#: guix-git/doc/guix.texi:18652 #, no-wrap msgid "{Scheme Procedure} lsh-service [#:host-key \"/etc/lsh/host-key\"] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18299 +#: guix-git/doc/guix.texi:18661 msgid "[#:daemonic? #t] [#:interfaces '()] [#:port-number 22] @ [#:allow-empty-passwords? #f] [#:root-login? #f] @ [#:syslog-output? #t] [#:x11-forwarding? #t] @ [#:tcp/ip-forwarding? #t] [#:password-authentication? #t] @ [#:public-key-authentication? #t] [#:initialize? #t] Run the @command{lshd} program from @var{lsh} to listen on port @var{port-number}. @var{host-key} must designate a file containing the host key, and readable only by root." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18305 +#: guix-git/doc/guix.texi:18667 msgid "When @var{daemonic?} is true, @command{lshd} will detach from the controlling terminal and log its output to syslogd, unless one sets @var{syslog-output?} to false. Obviously, it also makes lsh-service depend on existence of syslogd service. When @var{pid-file?} is true, @command{lshd} writes its PID to the file called @var{pid-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18309 +#: guix-git/doc/guix.texi:18671 msgid "When @var{initialize?} is true, automatically create the seed and host key upon service activation if they do not exist yet. This may take long and require interaction." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18314 +#: guix-git/doc/guix.texi:18676 msgid "When @var{initialize?} is false, it is up to the user to initialize the randomness generator (@pxref{lsh-make-seed,,, lsh, LSH Manual}), and to create a key pair with the private key stored in file @var{host-key} (@pxref{lshd basics,,, lsh, LSH Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18318 +#: guix-git/doc/guix.texi:18680 msgid "When @var{interfaces} is empty, lshd listens for connections on all the network interfaces; otherwise, @var{interfaces} must be a list of host names or addresses." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18322 +#: guix-git/doc/guix.texi:18684 msgid "@var{allow-empty-passwords?} specifies whether to accept log-ins with empty passwords, and @var{root-login?} specifies whether to accept log-ins as root." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18324 +#: guix-git/doc/guix.texi:18686 msgid "The other options should be self-descriptive." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18328 +#: guix-git/doc/guix.texi:18690 #, no-wrap msgid "{Scheme Variable} openssh-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18332 +#: guix-git/doc/guix.texi:18694 msgid "This is the type for the @uref{http://www.openssh.org, OpenSSH} secure shell daemon, @command{sshd}. Its value must be an @code{openssh-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18341 +#: guix-git/doc/guix.texi:18703 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -32236,17 +32847,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18344 +#: guix-git/doc/guix.texi:18706 msgid "See below for details about @code{openssh-configuration}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18347 +#: guix-git/doc/guix.texi:18709 msgid "This service can be extended with extra authorized keys, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18352 +#: guix-git/doc/guix.texi:18714 #, no-wrap msgid "" "(service-extension openssh-service-type\n" @@ -32255,203 +32866,203 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18355 +#: guix-git/doc/guix.texi:18717 #, no-wrap msgid "{Data Type} openssh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18357 +#: guix-git/doc/guix.texi:18719 msgid "This is the configuration record for OpenSSH's @command{sshd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18359 +#: guix-git/doc/guix.texi:18721 #, no-wrap msgid "@code{openssh} (default @var{openssh})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18361 +#: guix-git/doc/guix.texi:18723 msgid "The Openssh package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18362 +#: guix-git/doc/guix.texi:18724 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/sshd.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18364 +#: guix-git/doc/guix.texi:18726 msgid "Name of the file where @command{sshd} writes its PID." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18365 +#: guix-git/doc/guix.texi:18727 #, no-wrap msgid "@code{port-number} (default: @code{22})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18367 +#: guix-git/doc/guix.texi:18729 msgid "TCP port on which @command{sshd} listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18368 +#: guix-git/doc/guix.texi:18730 #, no-wrap msgid "@code{permit-root-login} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18373 +#: guix-git/doc/guix.texi:18735 msgid "This field determines whether and when to allow logins as root. If @code{#f}, root logins are disallowed; if @code{#t}, they are allowed. If it's the symbol @code{'prohibit-password}, then root logins are permitted but not with password-based authentication." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18374 guix-git/doc/guix.texi:18535 +#: guix-git/doc/guix.texi:18736 guix-git/doc/guix.texi:18897 #, no-wrap msgid "@code{allow-empty-passwords?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18377 +#: guix-git/doc/guix.texi:18739 msgid "When true, users with empty passwords may log in. When false, they may not." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18378 guix-git/doc/guix.texi:18538 +#: guix-git/doc/guix.texi:18740 guix-git/doc/guix.texi:18900 #, no-wrap msgid "@code{password-authentication?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18381 +#: guix-git/doc/guix.texi:18743 msgid "When true, users may log in with their password. When false, they have other authentication methods." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18382 +#: guix-git/doc/guix.texi:18744 #, no-wrap msgid "@code{public-key-authentication?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18385 +#: guix-git/doc/guix.texi:18747 msgid "When true, users may log in using public key authentication. When false, users have to use other authentication method." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18388 +#: guix-git/doc/guix.texi:18750 msgid "Authorized public keys are stored in @file{~/.ssh/authorized_keys}. This is used only by protocol version 2." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18389 +#: guix-git/doc/guix.texi:18751 #, no-wrap msgid "@code{x11-forwarding?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18393 +#: guix-git/doc/guix.texi:18755 msgid "When true, forwarding of X11 graphical client connections is enabled---in other words, @command{ssh} options @option{-X} and @option{-Y} will work." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18394 +#: guix-git/doc/guix.texi:18756 #, no-wrap msgid "@code{allow-agent-forwarding?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18396 +#: guix-git/doc/guix.texi:18758 msgid "Whether to allow agent forwarding." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18397 +#: guix-git/doc/guix.texi:18759 #, no-wrap msgid "@code{allow-tcp-forwarding?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18399 +#: guix-git/doc/guix.texi:18761 msgid "Whether to allow TCP forwarding." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18400 +#: guix-git/doc/guix.texi:18762 #, no-wrap msgid "@code{gateway-ports?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18402 +#: guix-git/doc/guix.texi:18764 msgid "Whether to allow gateway ports." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18403 +#: guix-git/doc/guix.texi:18765 #, no-wrap msgid "@code{challenge-response-authentication?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18406 +#: guix-git/doc/guix.texi:18768 msgid "Specifies whether challenge response authentication is allowed (e.g.@: via PAM)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18407 +#: guix-git/doc/guix.texi:18769 #, no-wrap msgid "@code{use-pam?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18413 +#: guix-git/doc/guix.texi:18775 msgid "Enables the Pluggable Authentication Module interface. If set to @code{#t}, this will enable PAM authentication using @code{challenge-response-authentication?} and @code{password-authentication?}, in addition to PAM account and session module processing for all authentication types." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18418 +#: guix-git/doc/guix.texi:18780 msgid "Because PAM challenge response authentication usually serves an equivalent role to password authentication, you should disable either @code{challenge-response-authentication?} or @code{password-authentication?}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18419 +#: guix-git/doc/guix.texi:18781 #, no-wrap msgid "@code{print-last-log?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18422 +#: guix-git/doc/guix.texi:18784 msgid "Specifies whether @command{sshd} should print the date and time of the last user login when a user logs in interactively." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18423 +#: guix-git/doc/guix.texi:18785 #, no-wrap msgid "@code{subsystems} (default: @code{'((\"sftp\" \"internal-sftp\"))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18425 +#: guix-git/doc/guix.texi:18787 msgid "Configures external subsystems (e.g.@: file transfer daemon)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18429 +#: guix-git/doc/guix.texi:18791 msgid "This is a list of two-element lists, each of which containing the subsystem name and a command (with optional arguments) to execute upon subsystem request." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18432 +#: guix-git/doc/guix.texi:18794 msgid "The command @command{internal-sftp} implements an in-process SFTP server. Alternatively, one can specify the @command{sftp-server} command:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18437 +#: guix-git/doc/guix.texi:18799 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -32461,28 +33072,28 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18439 +#: guix-git/doc/guix.texi:18801 #, no-wrap msgid "@code{accepted-environment} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18441 +#: guix-git/doc/guix.texi:18803 msgid "List of strings describing which environment variables may be exported." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18444 +#: guix-git/doc/guix.texi:18806 msgid "Each string gets on its own line. See the @code{AcceptEnv} option in @code{man sshd_config}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18449 +#: guix-git/doc/guix.texi:18811 msgid "This example allows ssh-clients to export the @env{COLORTERM} variable. It is set by terminal emulators, which support colors. You can use it in your shell's resource file to enable colors for the prompt and commands if this variable is set." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18454 +#: guix-git/doc/guix.texi:18816 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -32491,30 +33102,30 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18456 +#: guix-git/doc/guix.texi:18818 #, no-wrap msgid "@code{authorized-keys} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18457 +#: guix-git/doc/guix.texi:18819 #, no-wrap msgid "authorized keys, SSH" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18458 +#: guix-git/doc/guix.texi:18820 #, no-wrap msgid "SSH authorized keys" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18462 +#: guix-git/doc/guix.texi:18824 msgid "This is the list of authorized keys. Each element of the list is a user name followed by one or more file-like objects that represent SSH public keys. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18469 +#: guix-git/doc/guix.texi:18831 #, no-wrap msgid "" "(openssh-configuration\n" @@ -32525,45 +33136,45 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18474 +#: guix-git/doc/guix.texi:18836 msgid "registers the specified public keys for user accounts @code{rekado}, @code{chris}, and @code{root}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18477 +#: guix-git/doc/guix.texi:18839 msgid "Additional authorized keys can be specified @i{via} @code{service-extension}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18480 +#: guix-git/doc/guix.texi:18842 msgid "Note that this does @emph{not} interfere with the use of @file{~/.ssh/authorized_keys}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18481 guix-git/doc/guix.texi:18912 +#: guix-git/doc/guix.texi:18843 guix-git/doc/guix.texi:19274 #, no-wrap msgid "@code{log-level} (default: @code{'info})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18485 +#: guix-git/doc/guix.texi:18847 msgid "This is a symbol specifying the logging level: @code{quiet}, @code{fatal}, @code{error}, @code{info}, @code{verbose}, @code{debug}, etc. See the man page for @file{sshd_config} for the full list of level names." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18486 guix-git/doc/guix.texi:21328 -#: guix-git/doc/guix.texi:26469 +#: guix-git/doc/guix.texi:18848 guix-git/doc/guix.texi:21690 +#: guix-git/doc/guix.texi:26806 #, no-wrap msgid "@code{extra-content} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18491 +#: guix-git/doc/guix.texi:18853 msgid "This field can be used to append arbitrary text to the configuration file. It is especially useful for elaborate configurations that cannot be expressed otherwise. This configuration, for example, would generally disable root logins, but permit them from one specific IP address:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18497 +#: guix-git/doc/guix.texi:18859 #, no-wrap msgid "" "(openssh-configuration\n" @@ -32573,23 +33184,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18502 +#: guix-git/doc/guix.texi:18864 #, no-wrap msgid "{Scheme Procedure} dropbear-service [@var{config}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18506 +#: guix-git/doc/guix.texi:18868 msgid "Run the @uref{https://matt.ucc.asn.au/dropbear/dropbear.html,Dropbear SSH daemon} with the given @var{config}, a @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18509 +#: guix-git/doc/guix.texi:18871 msgid "For example, to specify a Dropbear service listening on port 1234, add this call to the operating system's @code{services} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18513 +#: guix-git/doc/guix.texi:18875 #, no-wrap msgid "" "(dropbear-service (dropbear-configuration\n" @@ -32597,110 +33208,110 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18516 +#: guix-git/doc/guix.texi:18878 #, no-wrap msgid "{Data Type} dropbear-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18518 +#: guix-git/doc/guix.texi:18880 msgid "This data type represents the configuration of a Dropbear SSH daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18520 +#: guix-git/doc/guix.texi:18882 #, no-wrap msgid "@code{dropbear} (default: @var{dropbear})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18522 +#: guix-git/doc/guix.texi:18884 msgid "The Dropbear package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18523 +#: guix-git/doc/guix.texi:18885 #, no-wrap msgid "@code{port-number} (default: 22)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18525 +#: guix-git/doc/guix.texi:18887 msgid "The TCP port where the daemon waits for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18526 +#: guix-git/doc/guix.texi:18888 #, no-wrap msgid "@code{syslog-output?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18528 +#: guix-git/doc/guix.texi:18890 msgid "Whether to enable syslog output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18529 +#: guix-git/doc/guix.texi:18891 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/dropbear.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18531 +#: guix-git/doc/guix.texi:18893 msgid "File name of the daemon's PID file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18532 +#: guix-git/doc/guix.texi:18894 #, no-wrap msgid "@code{root-login?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18534 +#: guix-git/doc/guix.texi:18896 msgid "Whether to allow @code{root} logins." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18537 +#: guix-git/doc/guix.texi:18899 msgid "Whether to allow empty passwords." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18540 +#: guix-git/doc/guix.texi:18902 msgid "Whether to enable password-based authentication." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18543 +#: guix-git/doc/guix.texi:18905 #, no-wrap msgid "AutoSSH" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18544 +#: guix-git/doc/guix.texi:18906 #, no-wrap msgid "{Scheme Variable} autossh-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18552 +#: guix-git/doc/guix.texi:18914 msgid "This is the type for the @uref{https://www.harding.motd.ca/autossh, AutoSSH} program that runs a copy of @command{ssh} and monitors it, restarting it as necessary should it die or stop passing traffic. AutoSSH can be run manually from the command-line by passing arguments to the binary @command{autossh} from the package @code{autossh}, but it can also be run as a Guix service. This latter use case is documented here." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18556 +#: guix-git/doc/guix.texi:18918 msgid "AutoSSH can be used to forward local traffic to a remote machine using an SSH tunnel, and it respects the @file{~/.ssh/config} of the user it is run as." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18561 +#: guix-git/doc/guix.texi:18923 msgid "For example, to specify a service running autossh as the user @code{pino} and forwarding all local connections to port @code{8081} to @code{remote:8081} using an SSH tunnel, add this call to the operating system's @code{services} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18567 +#: guix-git/doc/guix.texi:18929 #, no-wrap msgid "" "(service autossh-service-type\n" @@ -32710,139 +33321,139 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18570 +#: guix-git/doc/guix.texi:18932 #, no-wrap msgid "{Data Type} autossh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18572 +#: guix-git/doc/guix.texi:18934 msgid "This data type represents the configuration of an AutoSSH service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18575 +#: guix-git/doc/guix.texi:18937 #, no-wrap msgid "@code{user} (default @code{\"autossh\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18578 +#: guix-git/doc/guix.texi:18940 msgid "The user as which the AutoSSH service is to be run. This assumes that the specified user exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18579 +#: guix-git/doc/guix.texi:18941 #, no-wrap msgid "@code{poll} (default @code{600})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18581 +#: guix-git/doc/guix.texi:18943 msgid "Specifies the connection poll time in seconds." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18582 +#: guix-git/doc/guix.texi:18944 #, no-wrap msgid "@code{first-poll} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18588 +#: guix-git/doc/guix.texi:18950 msgid "Specifies how many seconds AutoSSH waits before the first connection test. After this first test, polling is resumed at the pace defined in @code{poll}. When set to @code{#f}, the first poll is not treated specially and will also use the connection poll specified in @code{poll}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18589 +#: guix-git/doc/guix.texi:18951 #, no-wrap msgid "@code{gate-time} (default @code{30})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18592 +#: guix-git/doc/guix.texi:18954 msgid "Specifies how many seconds an SSH connection must be active before it is considered successful." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18593 +#: guix-git/doc/guix.texi:18955 #, no-wrap msgid "@code{log-level} (default @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18596 +#: guix-git/doc/guix.texi:18958 msgid "The log level, corresponding to the levels used by syslog---so @code{0} is the most silent while @code{7} is the chattiest." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18597 +#: guix-git/doc/guix.texi:18959 #, no-wrap msgid "@code{max-start} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18600 +#: guix-git/doc/guix.texi:18962 msgid "The maximum number of times SSH may be (re)started before AutoSSH exits. When set to @code{#f}, no maximum is configured and AutoSSH may restart indefinitely." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18601 +#: guix-git/doc/guix.texi:18963 #, no-wrap msgid "@code{message} (default @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18603 +#: guix-git/doc/guix.texi:18965 msgid "The message to append to the echo message sent when testing connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18604 +#: guix-git/doc/guix.texi:18966 #, no-wrap msgid "@code{port} (default @code{\"0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18614 +#: guix-git/doc/guix.texi:18976 msgid "The ports used for monitoring the connection. When set to @code{\"0\"}, monitoring is disabled. When set to @code{\"@var{n}\"} where @var{n} is a positive integer, ports @var{n} and @var{n}+1 are used for monitoring the connection, such that port @var{n} is the base monitoring port and @code{n+1} is the echo port. When set to @code{\"@var{n}:@var{m}\"} where @var{n} and @var{m} are positive integers, the ports @var{n} and @var{m} are used for monitoring the connection, such that port @var{n} is the base monitoring port and @var{m} is the echo port." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18615 +#: guix-git/doc/guix.texi:18977 #, no-wrap msgid "@code{ssh-options} (default @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18619 +#: guix-git/doc/guix.texi:18981 msgid "The list of command-line arguments to pass to @command{ssh} when it is run. Options @option{-f} and @option{-M} are reserved for AutoSSH and may cause undefined behaviour." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18623 +#: guix-git/doc/guix.texi:18985 #, no-wrap msgid "WebSSH" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18624 +#: guix-git/doc/guix.texi:18986 #, no-wrap msgid "{Scheme Variable} webssh-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18630 +#: guix-git/doc/guix.texi:18992 msgid "This is the type for the @uref{https://webssh.huashengdun.org/, WebSSH} program that runs a web SSH client. WebSSH can be run manually from the command-line by passing arguments to the binary @command{wssh} from the package @code{webssh}, but it can also be run as a Guix service. This latter use case is documented here." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18636 +#: guix-git/doc/guix.texi:18998 msgid "For example, to specify a service running WebSSH on loopback interface on port @code{8888} with reject policy with a list of allowed to connection hosts, and NGINX as a reverse-proxy to this service listening for HTTPS connection, add this call to the operating system's @code{services} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18644 +#: guix-git/doc/guix.texi:19006 #, no-wrap msgid "" "(service webssh-service-type\n" @@ -32855,7 +33466,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18660 +#: guix-git/doc/guix.texi:19022 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -32876,128 +33487,128 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18663 +#: guix-git/doc/guix.texi:19025 #, no-wrap msgid "{Data Type} webssh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18665 +#: guix-git/doc/guix.texi:19027 msgid "Data type representing the configuration for @code{webssh-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18667 +#: guix-git/doc/guix.texi:19029 #, no-wrap msgid "@code{package} (default: @var{webssh})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18669 +#: guix-git/doc/guix.texi:19031 msgid "@code{webssh} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18670 +#: guix-git/doc/guix.texi:19032 #, no-wrap msgid "@code{user-name} (default: @var{\"webssh\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18673 +#: guix-git/doc/guix.texi:19035 msgid "User name or user ID that file transfers to and from that module should take place." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18674 +#: guix-git/doc/guix.texi:19036 #, no-wrap msgid "@code{group-name} (default: @var{\"webssh\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18677 +#: guix-git/doc/guix.texi:19039 #, no-wrap msgid "@code{address} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18679 +#: guix-git/doc/guix.texi:19041 msgid "IP address on which @command{webssh} listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18680 +#: guix-git/doc/guix.texi:19042 #, no-wrap msgid "@code{port} (default: @var{8888})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18682 +#: guix-git/doc/guix.texi:19044 msgid "TCP port on which @command{webssh} listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18683 +#: guix-git/doc/guix.texi:19045 #, no-wrap msgid "@code{policy} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18685 +#: guix-git/doc/guix.texi:19047 msgid "Connection policy. @var{reject} policy requires to specify @var{known-hosts}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18686 +#: guix-git/doc/guix.texi:19048 #, no-wrap msgid "@code{known-hosts} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18688 +#: guix-git/doc/guix.texi:19050 msgid "List of hosts which allowed for SSH connection from @command{webssh}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18689 +#: guix-git/doc/guix.texi:19051 #, no-wrap msgid "@code{log-file} (default: @file{\"/var/log/webssh.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18691 +#: guix-git/doc/guix.texi:19053 msgid "Name of the file where @command{webssh} writes its log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18692 +#: guix-git/doc/guix.texi:19054 #, no-wrap msgid "@code{log-level} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18694 +#: guix-git/doc/guix.texi:19056 msgid "Logging level." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18698 +#: guix-git/doc/guix.texi:19060 #, no-wrap msgid "{Scheme Variable} %facebook-host-aliases" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18704 +#: guix-git/doc/guix.texi:19066 msgid "This variable contains a string for use in @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). Each line contains a entry that maps a known server name of the Facebook on-line service---e.g., @code{www.facebook.com}---to the local host---@code{127.0.0.1} or its IPv6 equivalent, @code{::1}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18708 +#: guix-git/doc/guix.texi:19070 msgid "This variable is typically used in the @code{hosts-file} field of an @code{operating-system} declaration (@pxref{operating-system Reference, @file{/etc/hosts}}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18721 +#: guix-git/doc/guix.texi:19083 #, no-wrap msgid "" "(operating-system\n" @@ -33012,176 +33623,176 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18725 +#: guix-git/doc/guix.texi:19087 msgid "This mechanism can prevent programs running locally, such as Web browsers, from accessing Facebook." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18728 +#: guix-git/doc/guix.texi:19090 msgid "The @code{(gnu services avahi)} provides the following definition." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18729 +#: guix-git/doc/guix.texi:19091 #, no-wrap msgid "{Scheme Variable} avahi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18734 +#: guix-git/doc/guix.texi:19096 msgid "This is the service that runs @command{avahi-daemon}, a system-wide mDNS/DNS-SD responder that allows for service discovery and ``zero-configuration'' host name lookups (see @uref{https://avahi.org/}). Its value must be an @code{avahi-configuration} record---see below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18739 +#: guix-git/doc/guix.texi:19101 msgid "This service extends the name service cache daemon (nscd) so that it can resolve @code{.local} host names using @uref{https://0pointer.de/lennart/projects/nss-mdns/, nss-mdns}. @xref{Name Service Switch}, for information on host name resolution." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18742 +#: guix-git/doc/guix.texi:19104 msgid "Additionally, add the @var{avahi} package to the system profile so that commands such as @command{avahi-browse} are directly usable." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18744 +#: guix-git/doc/guix.texi:19106 #, no-wrap msgid "{Data Type} avahi-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18746 +#: guix-git/doc/guix.texi:19108 msgid "Data type representation the configuration for Avahi." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18749 +#: guix-git/doc/guix.texi:19111 #, no-wrap msgid "@code{host-name} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18752 +#: guix-git/doc/guix.texi:19114 msgid "If different from @code{#f}, use that as the host name to publish for this machine; otherwise, use the machine's actual host name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18753 guix-git/doc/guix.texi:29132 +#: guix-git/doc/guix.texi:19115 guix-git/doc/guix.texi:29469 #, no-wrap msgid "@code{publish?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18756 +#: guix-git/doc/guix.texi:19118 msgid "When true, allow host names and services to be published (broadcast) over the network." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18757 +#: guix-git/doc/guix.texi:19119 #, no-wrap msgid "@code{publish-workstation?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18761 +#: guix-git/doc/guix.texi:19123 msgid "When true, @command{avahi-daemon} publishes the machine's host name and IP address via mDNS on the local network. To view the host names published on your local network, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18764 +#: guix-git/doc/guix.texi:19126 #, no-wrap msgid "avahi-browse _workstation._tcp\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18766 +#: guix-git/doc/guix.texi:19128 #, no-wrap msgid "@code{wide-area?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18768 +#: guix-git/doc/guix.texi:19130 msgid "When true, DNS-SD over unicast DNS is enabled." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18769 +#: guix-git/doc/guix.texi:19131 #, no-wrap msgid "@code{ipv4?} (default: @code{#t})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:18770 +#: guix-git/doc/guix.texi:19132 #, no-wrap msgid "@code{ipv6?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18772 +#: guix-git/doc/guix.texi:19134 msgid "These fields determine whether to use IPv4/IPv6 sockets." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18773 +#: guix-git/doc/guix.texi:19135 #, no-wrap msgid "@code{domains-to-browse} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18775 +#: guix-git/doc/guix.texi:19137 msgid "This is a list of domains to browse." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18778 +#: guix-git/doc/guix.texi:19140 #, no-wrap msgid "{Scheme Variable} openvswitch-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18782 +#: guix-git/doc/guix.texi:19144 msgid "This is the type of the @uref{https://www.openvswitch.org, Open vSwitch} service, whose value should be an @code{openvswitch-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18784 +#: guix-git/doc/guix.texi:19146 #, no-wrap msgid "{Data Type} openvswitch-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18788 +#: guix-git/doc/guix.texi:19150 msgid "Data type representing the configuration of Open vSwitch, a multilayer virtual switch which is designed to enable massive network automation through programmatic extension." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18790 +#: guix-git/doc/guix.texi:19152 #, no-wrap msgid "@code{package} (default: @var{openvswitch})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18792 +#: guix-git/doc/guix.texi:19154 msgid "Package object of the Open vSwitch." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18796 +#: guix-git/doc/guix.texi:19158 #, no-wrap msgid "{Scheme Variable} pagekite-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18801 +#: guix-git/doc/guix.texi:19163 msgid "This is the service type for the @uref{https://pagekite.net, PageKite} service, a tunneling solution for making localhost servers publicly visible, even from behind restrictive firewalls or NAT without forwarded ports. The value for this service type is a @code{pagekite-configuration} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18803 +#: guix-git/doc/guix.texi:19165 msgid "Here's an example exposing the local HTTP and SSH daemons:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18810 +#: guix-git/doc/guix.texi:19172 #, no-wrap msgid "" "(service pagekite-service-type\n" @@ -33192,110 +33803,110 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18813 +#: guix-git/doc/guix.texi:19175 #, no-wrap msgid "{Data Type} pagekite-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18815 +#: guix-git/doc/guix.texi:19177 msgid "Data type representing the configuration of PageKite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18817 +#: guix-git/doc/guix.texi:19179 #, no-wrap msgid "@code{package} (default: @var{pagekite})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18819 +#: guix-git/doc/guix.texi:19181 msgid "Package object of PageKite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18820 +#: guix-git/doc/guix.texi:19182 #, no-wrap msgid "@code{kitename} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18822 +#: guix-git/doc/guix.texi:19184 msgid "PageKite name for authenticating to the frontend server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18823 +#: guix-git/doc/guix.texi:19185 #, no-wrap msgid "@code{kitesecret} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18826 +#: guix-git/doc/guix.texi:19188 msgid "Shared secret for authenticating to the frontend server. You should probably put this inside @code{extra-file} instead." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18827 +#: guix-git/doc/guix.texi:19189 #, no-wrap msgid "@code{frontend} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18830 +#: guix-git/doc/guix.texi:19192 msgid "Connect to the named PageKite frontend server instead of the @uref{https://pagekite.net,,pagekite.net} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18831 +#: guix-git/doc/guix.texi:19193 #, no-wrap msgid "@code{kites} (default: @code{'(\"http:@@kitename:localhost:80:@@kitesecret\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18834 +#: guix-git/doc/guix.texi:19196 msgid "List of service kites to use. Exposes HTTP on port 80 by default. The format is @code{proto:kitename:host:port:secret}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18835 +#: guix-git/doc/guix.texi:19197 #, no-wrap msgid "@code{extra-file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18838 +#: guix-git/doc/guix.texi:19200 msgid "Extra configuration file to read, which you are expected to create manually. Use this to add additional options and manage shared secrets out-of-band." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18842 +#: guix-git/doc/guix.texi:19204 #, no-wrap msgid "{Scheme Variable} yggdrasil-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18846 +#: guix-git/doc/guix.texi:19208 msgid "The service type for connecting to the @uref{https://yggdrasil-network.github.io/, Yggdrasil network}, an early-stage implementation of a fully end-to-end encrypted IPv6 network." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:18853 +#: guix-git/doc/guix.texi:19215 msgid "Yggdrasil provides name-independent routing with cryptographically generated addresses. Static addressing means you can keep the same address as long as you want, even if you move to a new location, or generate a new address (by generating new keys) whenever you want. @uref{https://yggdrasil-network.github.io/2018/07/28/addressing.html}" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18857 +#: guix-git/doc/guix.texi:19219 msgid "Pass it a value of @code{yggdrasil-configuration} to connect it to public peers and/or local peers." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18861 +#: guix-git/doc/guix.texi:19223 msgid "Here is an example using public peers and a static address. The static signing and encryption keys are defined in @file{/etc/yggdrasil-private.conf} (the default value for @code{config-file})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18873 +#: guix-git/doc/guix.texi:19235 #, no-wrap msgid "" ";; part of the operating-system declaration\n" @@ -33311,7 +33922,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18880 +#: guix-git/doc/guix.texi:19242 #, no-wrap msgid "" "# sample content for /etc/yggdrasil-private.conf\n" @@ -33323,7 +33934,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18883 +#: guix-git/doc/guix.texi:19245 #, no-wrap msgid "" " # Your private encryption key. DO NOT share this with anyone!\n" @@ -33332,7 +33943,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18887 +#: guix-git/doc/guix.texi:19249 #, no-wrap msgid "" " # Your public signing key. You should not ordinarily need to share\n" @@ -33342,7 +33953,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18891 +#: guix-git/doc/guix.texi:19253 #, no-wrap msgid "" " # Your private signing key. DO NOT share this with anyone!\n" @@ -33351,124 +33962,124 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18894 +#: guix-git/doc/guix.texi:19256 #, no-wrap msgid "{Data Type} yggdrasil-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18896 +#: guix-git/doc/guix.texi:19258 msgid "Data type representing the configuration of Yggdrasil." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18898 +#: guix-git/doc/guix.texi:19260 #, no-wrap msgid "@code{package} (default: @code{yggdrasil})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18900 +#: guix-git/doc/guix.texi:19262 msgid "Package object of Yggdrasil." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18901 +#: guix-git/doc/guix.texi:19263 #, no-wrap msgid "@code{json-config} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18907 +#: guix-git/doc/guix.texi:19269 msgid "Contents of @file{/etc/yggdrasil.conf}. Will be merged with @file{/etc/yggdrasil-private.conf}. Note that these settings are stored in the Guix store, which is readable to all users. @strong{Do not store your private keys in it}. See the output of @code{yggdrasil -genconf} for a quick overview of valid keys and their default values." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18908 +#: guix-git/doc/guix.texi:19270 #, no-wrap msgid "@code{autoconf?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18911 +#: guix-git/doc/guix.texi:19273 msgid "Whether to use automatic mode. Enabling it makes Yggdrasil use adynamic IP and peer with IPv6 neighbors." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18914 +#: guix-git/doc/guix.texi:19276 msgid "How much detail to include in logs. Use @code{'debug} for more detail." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18915 +#: guix-git/doc/guix.texi:19277 #, no-wrap msgid "@code{log-to} (default: @code{'stdout})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18919 +#: guix-git/doc/guix.texi:19281 msgid "Where to send logs. By default, the service logs standard output to @file{/var/log/yggdrasil.log}. The alternative is @code{'syslog}, which sends output to the running syslog service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18920 +#: guix-git/doc/guix.texi:19282 #, no-wrap msgid "@code{config-file} (default: @code{\"/etc/yggdrasil-private.conf\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18927 +#: guix-git/doc/guix.texi:19289 msgid "What HJSON file to load sensitive data from. This is where private keys should be stored, which are necessary to specify if you don't want a randomized address after each restart. Use @code{#f} to disable. Options defined in this file take precedence over @code{json-config}. Use the output of @code{yggdrasil -genconf} as a starting point. To configure a static address, delete everything except these options:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18929 +#: guix-git/doc/guix.texi:19291 #, no-wrap msgid "EncryptionPublicKey" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18930 +#: guix-git/doc/guix.texi:19292 #, no-wrap msgid "EncryptionPrivateKey" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18931 +#: guix-git/doc/guix.texi:19293 #, no-wrap msgid "SigningPublicKey" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18932 +#: guix-git/doc/guix.texi:19294 #, no-wrap msgid "SigningPrivateKey" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18937 +#: guix-git/doc/guix.texi:19299 #, no-wrap msgid "IPFS" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18938 +#: guix-git/doc/guix.texi:19300 #, no-wrap msgid "{Scheme Variable} ipfs-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18942 +#: guix-git/doc/guix.texi:19304 msgid "The service type for connecting to the @uref{https://ipfs.io,IPFS network}, a global, versioned, peer-to-peer file system. Pass it a @code{ipfs-configuration} to change the ports used for the gateway and API." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18944 +#: guix-git/doc/guix.texi:19306 msgid "Here's an example configuration, using some non-standard ports:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18950 +#: guix-git/doc/guix.texi:19312 #, no-wrap msgid "" "(service ipfs-service-type\n" @@ -33478,68 +34089,68 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18953 +#: guix-git/doc/guix.texi:19315 #, no-wrap msgid "{Data Type} ipfs-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18955 +#: guix-git/doc/guix.texi:19317 msgid "Data type representing the configuration of IPFS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18957 +#: guix-git/doc/guix.texi:19319 #, no-wrap msgid "@code{package} (default: @code{go-ipfs})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18959 +#: guix-git/doc/guix.texi:19321 msgid "Package object of IPFS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18960 +#: guix-git/doc/guix.texi:19322 #, no-wrap msgid "@code{gateway} (default: @code{\"/ip4/127.0.0.1/tcp/8082\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18962 +#: guix-git/doc/guix.texi:19324 msgid "Address of the gateway, in ‘multiaddress’ format." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18963 +#: guix-git/doc/guix.texi:19325 #, no-wrap msgid "@code{api} (default: @code{\"/ip4/127.0.0.1/tcp/5001\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18965 +#: guix-git/doc/guix.texi:19327 msgid "Address of the API endpoint, in ‘multiaddress’ format." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18968 +#: guix-git/doc/guix.texi:19330 #, no-wrap msgid "keepalived" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18969 +#: guix-git/doc/guix.texi:19331 #, no-wrap msgid "{Scheme Variable} keepalived-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18974 +#: guix-git/doc/guix.texi:19336 msgid "This is the type for the @uref{https://www.keepalived.org/, Keepalived} routing software, @command{keepalived}. Its value must be an @code{keepalived-configuration} record as in this example for master machine:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18979 +#: guix-git/doc/guix.texi:19341 #, no-wrap msgid "" "(service keepalived-service-type\n" @@ -33548,12 +34159,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18982 +#: guix-git/doc/guix.texi:19344 msgid "where @file{keepalived-master.conf}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18994 +#: guix-git/doc/guix.texi:19356 #, no-wrap msgid "" "vrrp_instance my-group @{\n" @@ -33569,12 +34180,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18997 +#: guix-git/doc/guix.texi:19359 msgid "and for backup machine:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19002 +#: guix-git/doc/guix.texi:19364 #, no-wrap msgid "" "(service keepalived-service-type\n" @@ -33583,12 +34194,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19005 +#: guix-git/doc/guix.texi:19367 msgid "where @file{keepalived-backup.conf}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:19017 +#: guix-git/doc/guix.texi:19379 #, no-wrap msgid "" "vrrp_instance my-group @{\n" @@ -33604,135 +34215,135 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19023 +#: guix-git/doc/guix.texi:19385 #, no-wrap msgid "unattended upgrades" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19024 +#: guix-git/doc/guix.texi:19386 #, no-wrap msgid "upgrades, unattended" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19029 +#: guix-git/doc/guix.texi:19391 msgid "Guix provides a service to perform @emph{unattended upgrades}: periodically, the system automatically reconfigures itself from the latest Guix. Guix System has several properties that make unattended upgrades safe:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19034 +#: guix-git/doc/guix.texi:19396 msgid "upgrades are transactional (either the upgrade succeeds or it fails, but you cannot end up with an ``in-between'' system state);" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19038 +#: guix-git/doc/guix.texi:19400 msgid "the upgrade log is kept---you can view it with @command{guix system list-generations}---and you can roll back to any previous generation, should the upgraded system fail to behave as intended;" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19041 +#: guix-git/doc/guix.texi:19403 msgid "channel code is authenticated so you know you can only run genuine code (@pxref{Channels});" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19044 +#: guix-git/doc/guix.texi:19406 msgid "@command{guix system reconfigure} prevents downgrades, which makes it immune to @dfn{downgrade attacks}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19049 +#: guix-git/doc/guix.texi:19411 msgid "To set up unattended upgrades, add an instance of @code{unattended-upgrade-service-type} like the one below to the list of your operating system services:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19052 +#: guix-git/doc/guix.texi:19414 #, no-wrap msgid "(service unattended-upgrade-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19059 +#: guix-git/doc/guix.texi:19421 msgid "The defaults above set up weekly upgrades: every Sunday at midnight. You do not need to provide the operating system configuration file: it uses @file{/run/current-system/configuration.scm}, which ensures it always uses your latest configuration---@pxref{provenance-service-type}, for more information about this file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19065 +#: guix-git/doc/guix.texi:19427 msgid "There are several things that can be configured, in particular the periodicity and services (daemons) to be restarted upon completion. When the upgrade is successful, the service takes care of deleting system generations older that some threshold, as per @command{guix system delete-generations}. See the reference below for details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19069 +#: guix-git/doc/guix.texi:19431 msgid "To ensure that upgrades are actually happening, you can run @command{guix system describe}. To investigate upgrade failures, visit the unattended upgrade log file (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19070 +#: guix-git/doc/guix.texi:19432 #, no-wrap msgid "{Scheme Variable} unattended-upgrade-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19074 +#: guix-git/doc/guix.texi:19436 msgid "This is the service type for unattended upgrades. It sets up an mcron job (@pxref{Scheduled Job Execution}) that runs @command{guix system reconfigure} from the latest version of the specified channels." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19077 +#: guix-git/doc/guix.texi:19439 msgid "Its value must be a @code{unattended-upgrade-configuration} record (see below)." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19079 +#: guix-git/doc/guix.texi:19441 #, no-wrap msgid "{Data Type} unattended-upgrade-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19082 +#: guix-git/doc/guix.texi:19444 msgid "This data type represents the configuration of the unattended upgrade service. The following fields are available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19084 +#: guix-git/doc/guix.texi:19446 #, no-wrap msgid "@code{schedule} (default: @code{\"30 01 * * 0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19088 +#: guix-git/doc/guix.texi:19450 msgid "This is the schedule of upgrades, expressed as a gexp containing an mcron job schedule (@pxref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19089 +#: guix-git/doc/guix.texi:19451 #, no-wrap msgid "@code{channels} (default: @code{#~%default-channels})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19093 +#: guix-git/doc/guix.texi:19455 msgid "This gexp specifies the channels to use for the upgrade (@pxref{Channels}). By default, the tip of the official @code{guix} channel is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19094 +#: guix-git/doc/guix.texi:19456 #, no-wrap msgid "@code{operating-system-file} (default: @code{\"/run/current-system/configuration.scm\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19097 +#: guix-git/doc/guix.texi:19459 msgid "This field specifies the operating system configuration file to use. The default is to reuse the config file of the current configuration." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19103 +#: guix-git/doc/guix.texi:19465 msgid "There are cases, though, where referring to @file{/run/current-system/configuration.scm} is not enough, for instance because that file refers to extra files (SSH public keys, extra configuration files, etc.) @i{via} @code{local-file} and similar constructs. For those cases, we recommend something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19109 +#: guix-git/doc/guix.texi:19471 #, no-wrap msgid "" "(unattended-upgrade-configuration\n" @@ -33742,312 +34353,312 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19116 +#: guix-git/doc/guix.texi:19478 msgid "The effect here is to import all of the current directory into the store, and to refer to @file{config.scm} within that directory. Therefore, uses of @code{local-file} within @file{config.scm} will work as expected. @xref{G-Expressions}, for information about @code{local-file} and @code{file-append}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19117 +#: guix-git/doc/guix.texi:19479 #, no-wrap msgid "@code{services-to-restart} (default: @code{'(mcron)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19120 +#: guix-git/doc/guix.texi:19482 msgid "This field specifies the Shepherd services to restart when the upgrade completes." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19127 +#: guix-git/doc/guix.texi:19489 msgid "Those services are restarted right away upon completion, as with @command{herd restart}, which ensures that the latest version is running---remember that by default @command{guix system reconfigure} only restarts services that are not currently running, which is conservative: it minimizes disruption but leaves outdated services running." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19131 +#: guix-git/doc/guix.texi:19493 msgid "Use @command{herd status} to find out candidates for restarting. @xref{Services}, for general information about services. Common services to restart would include @code{ntpd} and @code{ssh-daemon}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19134 +#: guix-git/doc/guix.texi:19496 msgid "By default, the @code{mcron} service is restarted. This ensures that the latest version of the unattended upgrade job will be used next time." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19135 +#: guix-git/doc/guix.texi:19497 #, no-wrap msgid "@code{system-expiration} (default: @code{(* 3 30 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19139 +#: guix-git/doc/guix.texi:19501 msgid "This is the expiration time in seconds for system generations. System generations older that this amount of time are deleted with @command{guix system delete-generations} when an upgrade completes." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:19144 +#: guix-git/doc/guix.texi:19506 msgid "The unattended upgrade service does not run the garbage collector. You will probably want to set up your own mcron job to run @command{guix gc} periodically." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19146 +#: guix-git/doc/guix.texi:19508 #, no-wrap msgid "@code{maximum-duration} (default: @code{3600})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19149 +#: guix-git/doc/guix.texi:19511 msgid "Maximum duration in seconds for the upgrade; past that time, the upgrade aborts." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19152 +#: guix-git/doc/guix.texi:19514 msgid "This is primarily useful to ensure the upgrade does not end up rebuilding or re-downloading ``the world''." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19153 +#: guix-git/doc/guix.texi:19515 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/unattended-upgrade.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19155 +#: guix-git/doc/guix.texi:19517 msgid "File where unattended upgrades are logged." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19161 +#: guix-git/doc/guix.texi:19523 #, no-wrap msgid "X11" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19162 +#: guix-git/doc/guix.texi:19524 #, no-wrap msgid "X Window System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19163 guix-git/doc/guix.texi:19436 +#: guix-git/doc/guix.texi:19525 guix-git/doc/guix.texi:19798 #, no-wrap msgid "login manager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19168 +#: guix-git/doc/guix.texi:19530 msgid "Support for the X Window graphical display system---specifically Xorg---is provided by the @code{(gnu services xorg)} module. Note that there is no @code{xorg-service} procedure. Instead, the X server is started by the @dfn{login manager}, by default the GNOME Display Manager (GDM)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19169 +#: guix-git/doc/guix.texi:19531 #, no-wrap msgid "GDM" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19170 +#: guix-git/doc/guix.texi:19532 #, no-wrap msgid "GNOME, login manager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19174 +#: guix-git/doc/guix.texi:19536 msgid "GDM of course allows users to log in into window managers and desktop environments other than GNOME; for those using GNOME, GDM is required for features such as automatic screen locking." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19175 +#: guix-git/doc/guix.texi:19537 #, no-wrap msgid "window manager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19180 +#: guix-git/doc/guix.texi:19542 msgid "To use X11, you must install at least one @dfn{window manager}---for example the @code{windowmaker} or @code{openbox} packages---preferably by adding it to the @code{packages} field of your operating system definition (@pxref{operating-system Reference, system-wide packages})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:19186 +#: guix-git/doc/guix.texi:19548 msgid "wayland-gdm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19186 +#: guix-git/doc/guix.texi:19548 msgid "GDM also supports Wayland: it can itself use Wayland instead of X11 for its user interface, and it can also start Wayland sessions. The former is required for the latter, to enable, set @code{wayland?} to @code{#t} in @code{gdm-configuration}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19187 +#: guix-git/doc/guix.texi:19549 #, no-wrap msgid "{Scheme Variable} gdm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19192 +#: guix-git/doc/guix.texi:19554 msgid "This is the type for the @uref{https://wiki.gnome.org/Projects/GDM/, GNOME Desktop Manager} (GDM), a program that manages graphical display servers and handles graphical user logins. Its value must be a @code{gdm-configuration} (see below)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19193 +#: guix-git/doc/guix.texi:19555 #, no-wrap msgid "session types" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19201 +#: guix-git/doc/guix.texi:19563 msgid "GDM looks for @dfn{session types} described by the @file{.desktop} files in @file{/run/current-system/profile/share/xsessions} (for X11 sessions) and @file{/run/current-system/profile/share/wayland-sessions} (for Wayland sessions) and allows users to choose a session from the log-in screen. Packages such as @code{gnome}, @code{xfce}, @code{i3} and @code{sway} provide @file{.desktop} files; adding them to the system-wide set of packages automatically makes them available at the log-in screen." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19205 +#: guix-git/doc/guix.texi:19567 msgid "In addition, @file{~/.xsession} files are honored. When available, @file{~/.xsession} must be an executable that starts a window manager and/or other X clients." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19207 +#: guix-git/doc/guix.texi:19569 #, no-wrap msgid "{Data Type} gdm-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19209 guix-git/doc/guix.texi:19291 +#: guix-git/doc/guix.texi:19571 guix-git/doc/guix.texi:19653 #, no-wrap msgid "@code{auto-login?} (default: @code{#f})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:19210 +#: guix-git/doc/guix.texi:19572 #, no-wrap msgid "@code{default-user} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19212 +#: guix-git/doc/guix.texi:19574 msgid "When @code{auto-login?} is false, GDM presents a log-in screen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19215 +#: guix-git/doc/guix.texi:19577 msgid "When @code{auto-login?} is true, GDM logs in directly as @code{default-user}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19216 guix-git/doc/guix.texi:25077 -#: guix-git/doc/guix.texi:26786 guix-git/doc/guix.texi:31266 -#: guix-git/doc/guix.texi:31295 guix-git/doc/guix.texi:31324 -#: guix-git/doc/guix.texi:31351 guix-git/doc/guix.texi:31406 -#: guix-git/doc/guix.texi:31431 guix-git/doc/guix.texi:31458 -#: guix-git/doc/guix.texi:31484 guix-git/doc/guix.texi:31526 +#: guix-git/doc/guix.texi:19578 guix-git/doc/guix.texi:25439 +#: guix-git/doc/guix.texi:27123 guix-git/doc/guix.texi:31631 +#: guix-git/doc/guix.texi:31660 guix-git/doc/guix.texi:31689 +#: guix-git/doc/guix.texi:31716 guix-git/doc/guix.texi:31771 +#: guix-git/doc/guix.texi:31796 guix-git/doc/guix.texi:31823 +#: guix-git/doc/guix.texi:31849 guix-git/doc/guix.texi:31891 #, no-wrap msgid "@code{debug?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19218 +#: guix-git/doc/guix.texi:19580 msgid "When true, GDM writes debug messages to its log." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19219 +#: guix-git/doc/guix.texi:19581 #, no-wrap msgid "@code{gnome-shell-assets} (default: ...)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19221 +#: guix-git/doc/guix.texi:19583 msgid "List of GNOME Shell assets needed by GDM: icon theme, fonts, etc." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19222 +#: guix-git/doc/guix.texi:19584 #, no-wrap msgid "@code{xorg-configuration} (default: @code{(xorg-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19224 guix-git/doc/guix.texi:19318 -#: guix-git/doc/guix.texi:19402 +#: guix-git/doc/guix.texi:19586 guix-git/doc/guix.texi:19680 +#: guix-git/doc/guix.texi:19764 msgid "Configuration of the Xorg graphical server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19225 +#: guix-git/doc/guix.texi:19587 #, no-wrap msgid "@code{xsession} (default: @code{(xinitrc)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19227 guix-git/doc/guix.texi:19417 +#: guix-git/doc/guix.texi:19589 guix-git/doc/guix.texi:19779 msgid "Script to run before starting a X session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19228 +#: guix-git/doc/guix.texi:19590 #, no-wrap msgid "@code{dbus-daemon} (default: @code{dbus-daemon-wrapper})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19230 +#: guix-git/doc/guix.texi:19592 msgid "File name of the @code{dbus-daemon} executable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19231 +#: guix-git/doc/guix.texi:19593 #, no-wrap msgid "@code{gdm} (default: @code{gdm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19233 +#: guix-git/doc/guix.texi:19595 msgid "The GDM package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19234 +#: guix-git/doc/guix.texi:19596 #, no-wrap msgid "@code{wayland?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19236 +#: guix-git/doc/guix.texi:19598 msgid "When true, enables Wayland in GDM, necessary to use Wayland sessions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19237 +#: guix-git/doc/guix.texi:19599 #, no-wrap msgid "@code{wayland-session} (default: @code{gdm-wayland-session-wrapper})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19240 +#: guix-git/doc/guix.texi:19602 msgid "The Wayland session wrapper to use, needed to setup the environment." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19243 +#: guix-git/doc/guix.texi:19605 #, no-wrap msgid "{Scheme Variable} slim-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19245 +#: guix-git/doc/guix.texi:19607 msgid "This is the type for the SLiM graphical login manager for X11." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19249 +#: guix-git/doc/guix.texi:19611 msgid "Like GDM, SLiM looks for session types described by @file{.desktop} files and allows users to choose a session from the log-in screen using @kbd{F1}. It also honors @file{~/.xsession} files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19256 +#: guix-git/doc/guix.texi:19618 msgid "Unlike GDM, SLiM does not spawn the user session on a different VT after logging in, which means that you can only start one graphical session. If you want to be able to run multiple graphical sessions at the same time you have to add multiple SLiM services to your system services. The following example shows how to replace the default GDM service with two SLiM services on tty7 and tty8." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19261 +#: guix-git/doc/guix.texi:19623 #, no-wrap msgid "" "(use-modules (gnu services)\n" @@ -34057,7 +34668,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19272 +#: guix-git/doc/guix.texi:19634 #, no-wrap msgid "" "(operating-system\n" @@ -34073,491 +34684,491 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19276 +#: guix-git/doc/guix.texi:19638 #, no-wrap msgid "{Data Type} slim-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19278 +#: guix-git/doc/guix.texi:19640 msgid "Data type representing the configuration of @code{slim-service-type}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19282 +#: guix-git/doc/guix.texi:19644 msgid "Whether to allow logins with empty passwords." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19283 +#: guix-git/doc/guix.texi:19645 #, no-wrap msgid "@code{gnupg?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19290 +#: guix-git/doc/guix.texi:19652 msgid "If enabled, @code{pam-gnupg} will attempt to automatically unlock the user's GPG keys with the login password via @code{gpg-agent}. The keygrips of all keys to be unlocked should be written to @file{~/.pam-gnupg}, and can be queried with @code{gpg -K --with-keygrip}. Presetting passphrases must be enabled by adding @code{allow-preset-passphrase} in @file{~/.gnupg/gpg-agent.conf}." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:19292 +#: guix-git/doc/guix.texi:19654 #, no-wrap msgid "@code{default-user} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19294 +#: guix-git/doc/guix.texi:19656 msgid "When @code{auto-login?} is false, SLiM presents a log-in screen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19297 +#: guix-git/doc/guix.texi:19659 msgid "When @code{auto-login?} is true, SLiM logs in directly as @code{default-user}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19298 +#: guix-git/doc/guix.texi:19660 #, no-wrap msgid "@code{theme} (default: @code{%default-slim-theme})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:19299 +#: guix-git/doc/guix.texi:19661 #, no-wrap msgid "@code{theme-name} (default: @code{%default-slim-theme-name})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19301 +#: guix-git/doc/guix.texi:19663 msgid "The graphical theme to use and its name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19302 +#: guix-git/doc/guix.texi:19664 #, no-wrap msgid "@code{auto-login-session} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19305 +#: guix-git/doc/guix.texi:19667 msgid "If true, this must be the name of the executable to start as the default session---e.g., @code{(file-append windowmaker \"/bin/windowmaker\")}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19309 +#: guix-git/doc/guix.texi:19671 msgid "If false, a session described by one of the available @file{.desktop} files in @code{/run/current-system/profile} and @code{~/.guix-profile} will be used." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:19314 +#: guix-git/doc/guix.texi:19676 msgid "You must install at least one window manager in the system profile or in your user profile. Failing to do that, if @code{auto-login-session} is false, you will be unable to log in." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19316 guix-git/doc/guix.texi:19400 +#: guix-git/doc/guix.texi:19678 guix-git/doc/guix.texi:19762 #, no-wrap msgid "@code{xorg-configuration} (default @code{(xorg-configuration)})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19319 +#: guix-git/doc/guix.texi:19681 #, no-wrap msgid "@code{display} (default @code{\":0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19321 +#: guix-git/doc/guix.texi:19683 msgid "The display on which to start the Xorg graphical server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19322 +#: guix-git/doc/guix.texi:19684 #, no-wrap msgid "@code{vt} (default @code{\"vt7\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19324 +#: guix-git/doc/guix.texi:19686 msgid "The VT on which to start the Xorg graphical server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19325 +#: guix-git/doc/guix.texi:19687 #, no-wrap msgid "@code{xauth} (default: @code{xauth})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19327 +#: guix-git/doc/guix.texi:19689 msgid "The XAuth package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19328 +#: guix-git/doc/guix.texi:19690 #, no-wrap msgid "@code{shepherd} (default: @code{shepherd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19331 +#: guix-git/doc/guix.texi:19693 msgid "The Shepherd package used when invoking @command{halt} and @command{reboot}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19332 +#: guix-git/doc/guix.texi:19694 #, no-wrap msgid "@code{sessreg} (default: @code{sessreg})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19334 +#: guix-git/doc/guix.texi:19696 msgid "The sessreg package used in order to register the session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19335 +#: guix-git/doc/guix.texi:19697 #, no-wrap msgid "@code{slim} (default: @code{slim})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19337 +#: guix-git/doc/guix.texi:19699 msgid "The SLiM package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19340 +#: guix-git/doc/guix.texi:19702 #, no-wrap msgid "{Scheme Variable} %default-theme" msgstr "" #. type: defvrx -#: guix-git/doc/guix.texi:19341 +#: guix-git/doc/guix.texi:19703 #, no-wrap msgid "{Scheme Variable} %default-theme-name" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19343 +#: guix-git/doc/guix.texi:19705 msgid "The default SLiM theme and its name." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19346 guix-git/doc/guix.texi:19453 +#: guix-git/doc/guix.texi:19708 guix-git/doc/guix.texi:19815 #, no-wrap msgid "{Data Type} sddm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19348 +#: guix-git/doc/guix.texi:19710 msgid "This is the data type representing the SDDM service configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19350 +#: guix-git/doc/guix.texi:19712 #, no-wrap msgid "@code{display-server} (default: \"x11\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19353 +#: guix-git/doc/guix.texi:19715 msgid "Select display server to use for the greeter. Valid values are @samp{\"x11\"} or @samp{\"wayland\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19354 +#: guix-git/doc/guix.texi:19716 #, no-wrap msgid "@code{numlock} (default: \"on\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19356 +#: guix-git/doc/guix.texi:19718 msgid "Valid values are @samp{\"on\"}, @samp{\"off\"} or @samp{\"none\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19357 +#: guix-git/doc/guix.texi:19719 #, no-wrap msgid "@code{halt-command} (default @code{#~(string-apppend #$shepherd \"/sbin/halt\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19359 +#: guix-git/doc/guix.texi:19721 msgid "Command to run when halting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19360 +#: guix-git/doc/guix.texi:19722 #, no-wrap msgid "@code{reboot-command} (default @code{#~(string-append #$shepherd \"/sbin/reboot\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19362 +#: guix-git/doc/guix.texi:19724 msgid "Command to run when rebooting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19363 +#: guix-git/doc/guix.texi:19725 #, no-wrap msgid "@code{theme} (default \"maldives\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19366 +#: guix-git/doc/guix.texi:19728 msgid "Theme to use. Default themes provided by SDDM are @samp{\"elarun\"}, @samp{\"maldives\"} or @samp{\"maya\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19367 +#: guix-git/doc/guix.texi:19729 #, no-wrap msgid "@code{themes-directory} (default \"/run/current-system/profile/share/sddm/themes\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19369 +#: guix-git/doc/guix.texi:19731 msgid "Directory to look for themes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19370 +#: guix-git/doc/guix.texi:19732 #, no-wrap msgid "@code{faces-directory} (default \"/run/current-system/profile/share/sddm/faces\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19372 +#: guix-git/doc/guix.texi:19734 msgid "Directory to look for faces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19373 +#: guix-git/doc/guix.texi:19735 #, no-wrap msgid "@code{default-path} (default \"/run/current-system/profile/bin\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19375 +#: guix-git/doc/guix.texi:19737 msgid "Default PATH to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19376 +#: guix-git/doc/guix.texi:19738 #, no-wrap msgid "@code{minimum-uid} (default: 1000)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19378 +#: guix-git/doc/guix.texi:19740 msgid "Minimum UID displayed in SDDM and allowed for log-in." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19379 +#: guix-git/doc/guix.texi:19741 #, no-wrap msgid "@code{maximum-uid} (default: 2000)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19381 +#: guix-git/doc/guix.texi:19743 msgid "Maximum UID to display in SDDM." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19382 +#: guix-git/doc/guix.texi:19744 #, no-wrap msgid "@code{remember-last-user?} (default #t)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19384 +#: guix-git/doc/guix.texi:19746 msgid "Remember last user." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19385 +#: guix-git/doc/guix.texi:19747 #, no-wrap msgid "@code{remember-last-session?} (default #t)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19387 +#: guix-git/doc/guix.texi:19749 msgid "Remember last session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19388 +#: guix-git/doc/guix.texi:19750 #, no-wrap msgid "@code{hide-users} (default \"\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19390 +#: guix-git/doc/guix.texi:19752 msgid "Usernames to hide from SDDM greeter." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19391 +#: guix-git/doc/guix.texi:19753 #, no-wrap msgid "@code{hide-shells} (default @code{#~(string-append #$shadow \"/sbin/nologin\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19393 +#: guix-git/doc/guix.texi:19755 msgid "Users with shells listed will be hidden from the SDDM greeter." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19394 +#: guix-git/doc/guix.texi:19756 #, no-wrap msgid "@code{session-command} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/wayland-session\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19396 +#: guix-git/doc/guix.texi:19758 msgid "Script to run before starting a wayland session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19397 +#: guix-git/doc/guix.texi:19759 #, no-wrap msgid "@code{sessions-directory} (default \"/run/current-system/profile/share/wayland-sessions\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19399 +#: guix-git/doc/guix.texi:19761 msgid "Directory to look for desktop files starting wayland sessions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19403 +#: guix-git/doc/guix.texi:19765 #, no-wrap msgid "@code{xauth-path} (default @code{#~(string-append #$xauth \"/bin/xauth\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19405 +#: guix-git/doc/guix.texi:19767 msgid "Path to xauth." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19406 +#: guix-git/doc/guix.texi:19768 #, no-wrap msgid "@code{xephyr-path} (default @code{#~(string-append #$xorg-server \"/bin/Xephyr\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19408 +#: guix-git/doc/guix.texi:19770 msgid "Path to Xephyr." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19409 +#: guix-git/doc/guix.texi:19771 #, no-wrap msgid "@code{xdisplay-start} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/Xsetup\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19411 +#: guix-git/doc/guix.texi:19773 msgid "Script to run after starting xorg-server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19412 +#: guix-git/doc/guix.texi:19774 #, no-wrap msgid "@code{xdisplay-stop} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/Xstop\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19414 +#: guix-git/doc/guix.texi:19776 msgid "Script to run before stopping xorg-server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19415 +#: guix-git/doc/guix.texi:19777 #, no-wrap msgid "@code{xsession-command} (default: @code{xinitrc})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19418 +#: guix-git/doc/guix.texi:19780 #, no-wrap msgid "@code{xsessions-directory} (default: \"/run/current-system/profile/share/xsessions\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19420 +#: guix-git/doc/guix.texi:19782 msgid "Directory to look for desktop files starting X sessions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19421 +#: guix-git/doc/guix.texi:19783 #, no-wrap msgid "@code{minimum-vt} (default: 7)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19423 +#: guix-git/doc/guix.texi:19785 msgid "Minimum VT to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19424 +#: guix-git/doc/guix.texi:19786 #, no-wrap msgid "@code{auto-login-user} (default \"\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19426 +#: guix-git/doc/guix.texi:19788 msgid "User to use for auto-login." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19427 +#: guix-git/doc/guix.texi:19789 #, no-wrap msgid "@code{auto-login-session} (default \"\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19429 +#: guix-git/doc/guix.texi:19791 msgid "Desktop file to use for auto-login." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19430 +#: guix-git/doc/guix.texi:19792 #, no-wrap msgid "@code{relogin?} (default #f)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19432 +#: guix-git/doc/guix.texi:19794 msgid "Relogin after logout." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19437 +#: guix-git/doc/guix.texi:19799 #, no-wrap msgid "X11 login" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19438 +#: guix-git/doc/guix.texi:19800 #, no-wrap msgid "{Scheme Variable} sddm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19442 +#: guix-git/doc/guix.texi:19804 msgid "This is the type of the service to run the @uref{https://github.com/sddm/sddm,SDDM display manager}. Its value must be a @code{sddm-configuration} record (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19444 +#: guix-git/doc/guix.texi:19806 msgid "Here's an example use:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19450 +#: guix-git/doc/guix.texi:19812 #, no-wrap msgid "" "(service sddm-service-type\n" @@ -34567,265 +35178,265 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19456 +#: guix-git/doc/guix.texi:19818 msgid "This data type represents the configuration of the SDDM login manager. The available fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19458 +#: guix-git/doc/guix.texi:19820 #, no-wrap msgid "@code{sddm} (default: @code{sddm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19460 +#: guix-git/doc/guix.texi:19822 msgid "The SDDM package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19461 +#: guix-git/doc/guix.texi:19823 #, no-wrap msgid "@code{display-server} (default: @code{\"x11\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19463 +#: guix-git/doc/guix.texi:19825 msgid "This must be either @code{\"x11\"} or @code{\"wayland\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19466 +#: guix-git/doc/guix.texi:19828 #, no-wrap msgid "@code{auto-login-user} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19469 +#: guix-git/doc/guix.texi:19831 msgid "If non-empty, this is the user account under which to log in automatically." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19470 +#: guix-git/doc/guix.texi:19832 #, no-wrap msgid "@code{auto-login-session} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19473 +#: guix-git/doc/guix.texi:19835 msgid "If non-empty, this is the @file{.desktop} file name to use as the auto-login session." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19476 +#: guix-git/doc/guix.texi:19838 #, no-wrap msgid "Xorg, configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19477 +#: guix-git/doc/guix.texi:19839 #, no-wrap msgid "{Data Type} xorg-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19482 +#: guix-git/doc/guix.texi:19844 msgid "This data type represents the configuration of the Xorg graphical display server. Note that there is no Xorg service; instead, the X server is started by a ``display manager'' such as GDM, SDDM, and SLiM@. Thus, the configuration of these display managers aggregates an @code{xorg-configuration} record." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19484 +#: guix-git/doc/guix.texi:19846 #, no-wrap msgid "@code{modules} (default: @code{%default-xorg-modules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19487 +#: guix-git/doc/guix.texi:19849 msgid "This is a list of @dfn{module packages} loaded by the Xorg server---e.g., @code{xf86-video-vesa}, @code{xf86-input-keyboard}, and so on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19488 +#: guix-git/doc/guix.texi:19850 #, no-wrap msgid "@code{fonts} (default: @code{%default-xorg-fonts})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19490 +#: guix-git/doc/guix.texi:19852 msgid "This is a list of font directories to add to the server's @dfn{font path}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19491 +#: guix-git/doc/guix.texi:19853 #, no-wrap msgid "@code{drivers} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19495 +#: guix-git/doc/guix.texi:19857 msgid "This must be either the empty list, in which case Xorg chooses a graphics driver automatically, or a list of driver names that will be tried in this order---e.g., @code{(\"modesetting\" \"vesa\")}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19496 +#: guix-git/doc/guix.texi:19858 #, no-wrap msgid "@code{resolutions} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19500 +#: guix-git/doc/guix.texi:19862 msgid "When @code{resolutions} is the empty list, Xorg chooses an appropriate screen resolution. Otherwise, it must be a list of resolutions---e.g., @code{((1024 768) (640 480))}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19501 +#: guix-git/doc/guix.texi:19863 #, no-wrap msgid "keyboard layout, for Xorg" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19502 +#: guix-git/doc/guix.texi:19864 #, no-wrap msgid "keymap, for Xorg" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19506 +#: guix-git/doc/guix.texi:19868 msgid "If this is @code{#f}, Xorg uses the default keyboard layout---usually US English (``qwerty'') for a 105-key PC keyboard." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19510 +#: guix-git/doc/guix.texi:19872 msgid "Otherwise this must be a @code{keyboard-layout} object specifying the keyboard layout in use when Xorg is running. @xref{Keyboard Layout}, for more information on how to specify the keyboard layout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19511 guix-git/doc/guix.texi:21223 -#: guix-git/doc/guix.texi:34046 +#: guix-git/doc/guix.texi:19873 guix-git/doc/guix.texi:21585 +#: guix-git/doc/guix.texi:34483 #, no-wrap msgid "@code{extra-config} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19514 guix-git/doc/guix.texi:34050 +#: guix-git/doc/guix.texi:19876 guix-git/doc/guix.texi:34487 msgid "This is a list of strings or objects appended to the configuration file. It is used to pass extra text to be added verbatim to the configuration file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19515 +#: guix-git/doc/guix.texi:19877 #, no-wrap msgid "@code{server} (default: @code{xorg-server})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19517 +#: guix-git/doc/guix.texi:19879 msgid "This is the package providing the Xorg server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19518 +#: guix-git/doc/guix.texi:19880 #, no-wrap msgid "@code{server-arguments} (default: @code{%default-xorg-server-arguments})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19521 +#: guix-git/doc/guix.texi:19883 msgid "This is the list of command-line arguments to pass to the X server. The default is @code{-nolisten tcp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19524 +#: guix-git/doc/guix.texi:19886 #, no-wrap msgid "{Scheme Procedure} set-xorg-configuration @var{config} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19528 +#: guix-git/doc/guix.texi:19890 msgid "[@var{login-manager-service-type}] Tell the log-in manager (of type @var{login-manager-service-type}) to use @var{config}, an @code{} record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19532 +#: guix-git/doc/guix.texi:19894 msgid "Since the Xorg configuration is embedded in the log-in manager's configuration---e.g., @code{gdm-configuration}---this procedure provides a shorthand to set the Xorg configuration." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19534 +#: guix-git/doc/guix.texi:19896 #, no-wrap msgid "{Scheme Procedure} xorg-start-command [@var{config}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19538 +#: guix-git/doc/guix.texi:19900 msgid "Return a @code{startx} script in which the modules, fonts, etc. specified in @var{config}, are available. The result should be used in place of @code{startx}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19540 +#: guix-git/doc/guix.texi:19902 msgid "Usually the X server is started by a login manager." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19543 +#: guix-git/doc/guix.texi:19905 #, no-wrap msgid "{Scheme Procedure} screen-locker-service @var{package} [@var{program}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19547 +#: guix-git/doc/guix.texi:19909 msgid "Add @var{package}, a package for a screen locker or screen saver whose command is @var{program}, to the set of setuid programs and add a PAM entry for it. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19550 +#: guix-git/doc/guix.texi:19912 #, no-wrap msgid "(screen-locker-service xlockmore \"xlock\")\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19553 +#: guix-git/doc/guix.texi:19915 msgid "makes the good ol' XlockMore usable." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19559 +#: guix-git/doc/guix.texi:19921 #, no-wrap msgid "printer support with CUPS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19563 +#: guix-git/doc/guix.texi:19925 msgid "The @code{(gnu services cups)} module provides a Guix service definition for the CUPS printing service. To add printer support to a Guix system, add a @code{cups-service} to the operating system definition:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19564 +#: guix-git/doc/guix.texi:19926 #, no-wrap msgid "{Scheme Variable} cups-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19568 +#: guix-git/doc/guix.texi:19930 msgid "The service type for the CUPS print server. Its value should be a valid CUPS configuration (see below). To use the default settings, simply write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19570 +#: guix-git/doc/guix.texi:19932 #, no-wrap msgid "(service cups-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19580 +#: guix-git/doc/guix.texi:19942 msgid "The CUPS configuration controls the basic things about your CUPS installation: what interfaces it listens on, what to do if a print job fails, how much logging to do, and so on. To actually add a printer, you have to visit the @url{http://localhost:631} URL, or use a tool such as GNOME's printer configuration services. By default, configuring a CUPS service will generate a self-signed certificate if needed, for secure connections to the print server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19586 +#: guix-git/doc/guix.texi:19948 msgid "Suppose you want to enable the Web interface of CUPS and also add support for Epson printers @i{via} the @code{epson-inkjet-printer-escpr} package and for HP printers @i{via} the @code{hplip-minimal} package. You can do that directly, like this (you need to use the @code{(gnu packages cups)} module):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19593 +#: guix-git/doc/guix.texi:19955 #, no-wrap msgid "" "(service cups-service-type\n" @@ -34836,1584 +35447,1582 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19598 +#: guix-git/doc/guix.texi:19960 msgid "Note: If you wish to use the Qt5 based GUI which comes with the hplip package then it is suggested that you install the @code{hplip} package, either in your OS configuration file or as your user." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19605 +#: guix-git/doc/guix.texi:19967 msgid "The available configuration parameters follow. Each parameter definition is preceded by its type; for example, @samp{string-list foo} indicates that the @code{foo} parameter should be specified as a list of strings. There is also a way to specify the configuration as a string, if you have an old @code{cupsd.conf} file that you want to port over from some other system; see the end for more details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19616 +#: guix-git/doc/guix.texi:19978 msgid "Available @code{cups-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19617 +#: guix-git/doc/guix.texi:19979 #, no-wrap msgid "{@code{cups-configuration} parameter} package cups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19619 guix-git/doc/guix.texi:20387 +#: guix-git/doc/guix.texi:19981 guix-git/doc/guix.texi:20749 msgid "The CUPS package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19621 +#: guix-git/doc/guix.texi:19983 #, no-wrap msgid "{@code{cups-configuration} parameter} package-list extensions (default: @code{(list brlaser cups-filters epson-inkjet-printer-escpr foomatic-filters hplip-minimal splix)})" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19623 +#: guix-git/doc/guix.texi:19985 msgid "Drivers and other extensions to the CUPS package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19625 +#: guix-git/doc/guix.texi:19987 #, no-wrap msgid "{@code{cups-configuration} parameter} files-configuration files-configuration" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19628 +#: guix-git/doc/guix.texi:19990 msgid "Configuration of where to write logs, what directories to use for print spools, and related privileged configuration parameters." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19630 +#: guix-git/doc/guix.texi:19992 msgid "Available @code{files-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19631 +#: guix-git/doc/guix.texi:19993 #, no-wrap msgid "{@code{files-configuration} parameter} log-location access-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19639 +#: guix-git/doc/guix.texi:20001 msgid "Defines the access log filename. Specifying a blank filename disables access log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-access_log}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19641 +#: guix-git/doc/guix.texi:20003 msgid "Defaults to @samp{\"/var/log/cups/access_log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19643 +#: guix-git/doc/guix.texi:20005 #, no-wrap msgid "{@code{files-configuration} parameter} file-name cache-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19645 +#: guix-git/doc/guix.texi:20007 msgid "Where CUPS should cache data." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19647 +#: guix-git/doc/guix.texi:20009 msgid "Defaults to @samp{\"/var/cache/cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19649 +#: guix-git/doc/guix.texi:20011 #, no-wrap msgid "{@code{files-configuration} parameter} string config-file-perm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19652 +#: guix-git/doc/guix.texi:20014 msgid "Specifies the permissions for all configuration files that the scheduler writes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19658 +#: guix-git/doc/guix.texi:20020 msgid "Note that the permissions for the printers.conf file are currently masked to only allow access from the scheduler user (typically root). This is done because printer device URIs sometimes contain sensitive authentication information that should not be generally known on the system. There is no way to disable this security feature." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19660 +#: guix-git/doc/guix.texi:20022 msgid "Defaults to @samp{\"0640\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19662 +#: guix-git/doc/guix.texi:20024 #, no-wrap msgid "{@code{files-configuration} parameter} log-location error-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19670 +#: guix-git/doc/guix.texi:20032 msgid "Defines the error log filename. Specifying a blank filename disables error log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-error_log}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19672 +#: guix-git/doc/guix.texi:20034 msgid "Defaults to @samp{\"/var/log/cups/error_log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19674 +#: guix-git/doc/guix.texi:20036 #, no-wrap msgid "{@code{files-configuration} parameter} string fatal-errors" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19677 +#: guix-git/doc/guix.texi:20039 msgid "Specifies which errors are fatal, causing the scheduler to exit. The kind strings are:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19681 +#: guix-git/doc/guix.texi:20043 msgid "No errors are fatal." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19684 +#: guix-git/doc/guix.texi:20046 msgid "All of the errors below are fatal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19685 +#: guix-git/doc/guix.texi:20047 #, no-wrap msgid "browse" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19688 +#: guix-git/doc/guix.texi:20050 msgid "Browsing initialization errors are fatal, for example failed connections to the DNS-SD daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19689 +#: guix-git/doc/guix.texi:20051 #, no-wrap msgid "config" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19691 +#: guix-git/doc/guix.texi:20053 msgid "Configuration file syntax errors are fatal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19692 +#: guix-git/doc/guix.texi:20054 #, no-wrap msgid "listen" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19695 +#: guix-git/doc/guix.texi:20057 msgid "Listen or Port errors are fatal, except for IPv6 failures on the loopback or @code{any} addresses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19696 +#: guix-git/doc/guix.texi:20058 #, no-wrap msgid "log" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19698 +#: guix-git/doc/guix.texi:20060 msgid "Log file creation or write errors are fatal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19699 +#: guix-git/doc/guix.texi:20061 #, no-wrap msgid "permissions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19702 +#: guix-git/doc/guix.texi:20064 msgid "Bad startup file permissions are fatal, for example shared TLS certificate and key files with world-read permissions." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19705 +#: guix-git/doc/guix.texi:20067 msgid "Defaults to @samp{\"all -browse\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19707 +#: guix-git/doc/guix.texi:20069 #, no-wrap msgid "{@code{files-configuration} parameter} boolean file-device?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19710 +#: guix-git/doc/guix.texi:20072 msgid "Specifies whether the file pseudo-device can be used for new printer queues. The URI @uref{file:///dev/null} is always allowed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19714 +#: guix-git/doc/guix.texi:20076 #, no-wrap msgid "{@code{files-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19717 +#: guix-git/doc/guix.texi:20079 msgid "Specifies the group name or ID that will be used when executing external programs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19719 guix-git/doc/guix.texi:19805 +#: guix-git/doc/guix.texi:20081 guix-git/doc/guix.texi:20167 msgid "Defaults to @samp{\"lp\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19721 +#: guix-git/doc/guix.texi:20083 #, no-wrap msgid "{@code{files-configuration} parameter} string log-file-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19723 +#: guix-git/doc/guix.texi:20085 msgid "Specifies the group name or ID that will be used for log files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19725 +#: guix-git/doc/guix.texi:20087 msgid "Defaults to @samp{\"lpadmin\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19727 +#: guix-git/doc/guix.texi:20089 #, no-wrap msgid "{@code{files-configuration} parameter} string log-file-perm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19729 +#: guix-git/doc/guix.texi:20091 msgid "Specifies the permissions for all log files that the scheduler writes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19731 +#: guix-git/doc/guix.texi:20093 msgid "Defaults to @samp{\"0644\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19733 +#: guix-git/doc/guix.texi:20095 #, no-wrap msgid "{@code{files-configuration} parameter} log-location page-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19741 +#: guix-git/doc/guix.texi:20103 msgid "Defines the page log filename. Specifying a blank filename disables page log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-page_log}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19743 +#: guix-git/doc/guix.texi:20105 msgid "Defaults to @samp{\"/var/log/cups/page_log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19745 +#: guix-git/doc/guix.texi:20107 #, no-wrap msgid "{@code{files-configuration} parameter} string remote-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19748 +#: guix-git/doc/guix.texi:20110 msgid "Specifies the username that is associated with unauthenticated accesses by clients claiming to be the root user. The default is @code{remroot}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19750 +#: guix-git/doc/guix.texi:20112 msgid "Defaults to @samp{\"remroot\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19752 +#: guix-git/doc/guix.texi:20114 #, no-wrap msgid "{@code{files-configuration} parameter} file-name request-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19755 +#: guix-git/doc/guix.texi:20117 msgid "Specifies the directory that contains print jobs and other HTTP request data." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19757 +#: guix-git/doc/guix.texi:20119 msgid "Defaults to @samp{\"/var/spool/cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19759 +#: guix-git/doc/guix.texi:20121 #, no-wrap msgid "{@code{files-configuration} parameter} sandboxing sandboxing" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19764 +#: guix-git/doc/guix.texi:20126 msgid "Specifies the level of security sandboxing that is applied to print filters, backends, and other child processes of the scheduler; either @code{relaxed} or @code{strict}. This directive is currently only used/supported on macOS." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19766 +#: guix-git/doc/guix.texi:20128 msgid "Defaults to @samp{strict}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19768 +#: guix-git/doc/guix.texi:20130 #, no-wrap msgid "{@code{files-configuration} parameter} file-name server-keychain" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19773 +#: guix-git/doc/guix.texi:20135 msgid "Specifies the location of TLS certificates and private keys. CUPS will look for public and private keys in this directory: @file{.crt} files for PEM-encoded certificates and corresponding @file{.key} files for PEM-encoded private keys." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19775 +#: guix-git/doc/guix.texi:20137 msgid "Defaults to @samp{\"/etc/cups/ssl\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19777 +#: guix-git/doc/guix.texi:20139 #, no-wrap msgid "{@code{files-configuration} parameter} file-name server-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19779 +#: guix-git/doc/guix.texi:20141 msgid "Specifies the directory containing the server configuration files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19781 +#: guix-git/doc/guix.texi:20143 msgid "Defaults to @samp{\"/etc/cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19783 +#: guix-git/doc/guix.texi:20145 #, no-wrap msgid "{@code{files-configuration} parameter} boolean sync-on-close?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19786 +#: guix-git/doc/guix.texi:20148 msgid "Specifies whether the scheduler calls fsync(2) after writing configuration or state files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19790 +#: guix-git/doc/guix.texi:20152 #, no-wrap msgid "{@code{files-configuration} parameter} space-separated-string-list system-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19792 +#: guix-git/doc/guix.texi:20154 msgid "Specifies the group(s) to use for @code{@@SYSTEM} group authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19794 +#: guix-git/doc/guix.texi:20156 #, no-wrap msgid "{@code{files-configuration} parameter} file-name temp-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19796 +#: guix-git/doc/guix.texi:20158 msgid "Specifies the directory where temporary files are stored." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19798 +#: guix-git/doc/guix.texi:20160 msgid "Defaults to @samp{\"/var/spool/cups/tmp\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19800 +#: guix-git/doc/guix.texi:20162 #, no-wrap msgid "{@code{files-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19803 +#: guix-git/doc/guix.texi:20165 msgid "Specifies the user name or ID that is used when running external programs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19807 +#: guix-git/doc/guix.texi:20169 #, no-wrap msgid "{@code{files-configuration} parameter} string set-env" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19809 +#: guix-git/doc/guix.texi:20171 msgid "Set the specified environment variable to be passed to child processes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19811 +#: guix-git/doc/guix.texi:20173 msgid "Defaults to @samp{\"variable value\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19814 +#: guix-git/doc/guix.texi:20176 #, no-wrap msgid "{@code{cups-configuration} parameter} access-log-level access-log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19821 +#: guix-git/doc/guix.texi:20183 msgid "Specifies the logging level for the AccessLog file. The @code{config} level logs when printers and classes are added, deleted, or modified and when configuration files are accessed or updated. The @code{actions} level logs when print jobs are submitted, held, released, modified, or canceled, and any of the conditions for @code{config}. The @code{all} level logs all requests." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19823 +#: guix-git/doc/guix.texi:20185 msgid "Defaults to @samp{actions}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19825 +#: guix-git/doc/guix.texi:20187 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean auto-purge-jobs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19828 +#: guix-git/doc/guix.texi:20190 msgid "Specifies whether to purge job history data automatically when it is no longer required for quotas." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19832 +#: guix-git/doc/guix.texi:20194 #, no-wrap msgid "{@code{cups-configuration} parameter} comma-separated-string-list browse-dns-sd-sub-types" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19836 +#: guix-git/doc/guix.texi:20198 msgid "Specifies a list of DNS-SD sub-types to advertise for each shared printer. For example, @samp{\"_cups\" \"_print\"} will tell network clients that both CUPS sharing and IPP Everywhere are supported." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19838 +#: guix-git/doc/guix.texi:20200 msgid "Defaults to @samp{\"_cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19840 +#: guix-git/doc/guix.texi:20202 #, no-wrap msgid "{@code{cups-configuration} parameter} browse-local-protocols browse-local-protocols" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19842 +#: guix-git/doc/guix.texi:20204 msgid "Specifies which protocols to use for local printer sharing." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19844 +#: guix-git/doc/guix.texi:20206 msgid "Defaults to @samp{dnssd}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19846 +#: guix-git/doc/guix.texi:20208 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean browse-web-if?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19848 +#: guix-git/doc/guix.texi:20210 msgid "Specifies whether the CUPS web interface is advertised." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19852 +#: guix-git/doc/guix.texi:20214 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean browsing?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19854 +#: guix-git/doc/guix.texi:20216 msgid "Specifies whether shared printers are advertised." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19858 +#: guix-git/doc/guix.texi:20220 #, no-wrap msgid "{@code{cups-configuration} parameter} string classification" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19863 +#: guix-git/doc/guix.texi:20225 msgid "Specifies the security classification of the server. Any valid banner name can be used, including @samp{\"classified\"}, @samp{\"confidential\"}, @samp{\"secret\"}, @samp{\"topsecret\"}, and @samp{\"unclassified\"}, or the banner can be omitted to disable secure printing functions." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19865 guix-git/doc/guix.texi:20196 -#: guix-git/doc/guix.texi:22180 guix-git/doc/guix.texi:22192 -#: guix-git/doc/guix.texi:22220 guix-git/doc/guix.texi:22977 -#: guix-git/doc/guix.texi:22991 guix-git/doc/guix.texi:22998 -#: guix-git/doc/guix.texi:23005 guix-git/doc/guix.texi:23035 -#: guix-git/doc/guix.texi:23133 guix-git/doc/guix.texi:25252 -#: guix-git/doc/guix.texi:25278 guix-git/doc/guix.texi:25314 -#: guix-git/doc/guix.texi:25360 guix-git/doc/guix.texi:25379 -#: guix-git/doc/guix.texi:25418 guix-git/doc/guix.texi:25477 -#: guix-git/doc/guix.texi:25487 guix-git/doc/guix.texi:30085 -#: guix-git/doc/guix.texi:30093 guix-git/doc/guix.texi:30101 -#: guix-git/doc/guix.texi:30109 guix-git/doc/guix.texi:30388 -#: guix-git/doc/guix.texi:31743 guix-git/doc/guix.texi:31751 -#: guix-git/doc/guix.texi:31759 guix-git/doc/guix.texi:31867 -#: guix-git/doc/guix.texi:31892 guix-git/doc/guix.texi:32023 -#: guix-git/doc/guix.texi:32031 guix-git/doc/guix.texi:32039 -#: guix-git/doc/guix.texi:32047 guix-git/doc/guix.texi:32055 -#: guix-git/doc/guix.texi:32063 guix-git/doc/guix.texi:32086 -#: guix-git/doc/guix.texi:32094 guix-git/doc/guix.texi:32146 -#: guix-git/doc/guix.texi:32162 guix-git/doc/guix.texi:32170 -#: guix-git/doc/guix.texi:32209 guix-git/doc/guix.texi:32232 -#: guix-git/doc/guix.texi:32254 guix-git/doc/guix.texi:32261 -#: guix-git/doc/guix.texi:32296 guix-git/doc/guix.texi:32304 -#: guix-git/doc/guix.texi:32328 guix-git/doc/guix.texi:32360 -#: guix-git/doc/guix.texi:32389 guix-git/doc/guix.texi:32396 -#: guix-git/doc/guix.texi:32403 guix-git/doc/guix.texi:32411 -#: guix-git/doc/guix.texi:32425 guix-git/doc/guix.texi:32434 -#: guix-git/doc/guix.texi:32444 guix-git/doc/guix.texi:32451 -#: guix-git/doc/guix.texi:32458 guix-git/doc/guix.texi:32465 -#: guix-git/doc/guix.texi:32536 guix-git/doc/guix.texi:32543 -#: guix-git/doc/guix.texi:32550 guix-git/doc/guix.texi:32559 -#: guix-git/doc/guix.texi:32575 guix-git/doc/guix.texi:32582 -#: guix-git/doc/guix.texi:32589 guix-git/doc/guix.texi:32596 -#: guix-git/doc/guix.texi:32604 guix-git/doc/guix.texi:32612 +#: guix-git/doc/guix.texi:20227 guix-git/doc/guix.texi:20558 +#: guix-git/doc/guix.texi:22542 guix-git/doc/guix.texi:22554 +#: guix-git/doc/guix.texi:22582 guix-git/doc/guix.texi:23339 +#: guix-git/doc/guix.texi:23353 guix-git/doc/guix.texi:23360 +#: guix-git/doc/guix.texi:23367 guix-git/doc/guix.texi:23397 +#: guix-git/doc/guix.texi:23495 guix-git/doc/guix.texi:25614 +#: guix-git/doc/guix.texi:25640 guix-git/doc/guix.texi:25676 +#: guix-git/doc/guix.texi:25722 guix-git/doc/guix.texi:25741 +#: guix-git/doc/guix.texi:25780 guix-git/doc/guix.texi:30450 +#: guix-git/doc/guix.texi:30458 guix-git/doc/guix.texi:30466 +#: guix-git/doc/guix.texi:30474 guix-git/doc/guix.texi:30753 +#: guix-git/doc/guix.texi:32108 guix-git/doc/guix.texi:32116 +#: guix-git/doc/guix.texi:32124 guix-git/doc/guix.texi:32232 +#: guix-git/doc/guix.texi:32257 guix-git/doc/guix.texi:32388 +#: guix-git/doc/guix.texi:32396 guix-git/doc/guix.texi:32404 +#: guix-git/doc/guix.texi:32412 guix-git/doc/guix.texi:32420 +#: guix-git/doc/guix.texi:32428 guix-git/doc/guix.texi:32451 +#: guix-git/doc/guix.texi:32459 guix-git/doc/guix.texi:32511 +#: guix-git/doc/guix.texi:32527 guix-git/doc/guix.texi:32535 +#: guix-git/doc/guix.texi:32574 guix-git/doc/guix.texi:32597 +#: guix-git/doc/guix.texi:32619 guix-git/doc/guix.texi:32626 +#: guix-git/doc/guix.texi:32661 guix-git/doc/guix.texi:32669 +#: guix-git/doc/guix.texi:32693 guix-git/doc/guix.texi:32725 +#: guix-git/doc/guix.texi:32754 guix-git/doc/guix.texi:32761 +#: guix-git/doc/guix.texi:32768 guix-git/doc/guix.texi:32776 +#: guix-git/doc/guix.texi:32790 guix-git/doc/guix.texi:32799 +#: guix-git/doc/guix.texi:32809 guix-git/doc/guix.texi:32816 +#: guix-git/doc/guix.texi:32823 guix-git/doc/guix.texi:32830 +#: guix-git/doc/guix.texi:32901 guix-git/doc/guix.texi:32908 +#: guix-git/doc/guix.texi:32915 guix-git/doc/guix.texi:32924 +#: guix-git/doc/guix.texi:32940 guix-git/doc/guix.texi:32947 +#: guix-git/doc/guix.texi:32954 guix-git/doc/guix.texi:32961 +#: guix-git/doc/guix.texi:32969 guix-git/doc/guix.texi:32977 msgid "Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19867 +#: guix-git/doc/guix.texi:20229 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean classify-override?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19870 +#: guix-git/doc/guix.texi:20232 msgid "Specifies whether users may override the classification (cover page) of individual print jobs using the @code{job-sheets} option." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19874 +#: guix-git/doc/guix.texi:20236 #, no-wrap msgid "{@code{cups-configuration} parameter} default-auth-type default-auth-type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19876 +#: guix-git/doc/guix.texi:20238 msgid "Specifies the default type of authentication to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19878 +#: guix-git/doc/guix.texi:20240 msgid "Defaults to @samp{Basic}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19880 +#: guix-git/doc/guix.texi:20242 #, no-wrap msgid "{@code{cups-configuration} parameter} default-encryption default-encryption" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19882 +#: guix-git/doc/guix.texi:20244 msgid "Specifies whether encryption will be used for authenticated requests." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19884 +#: guix-git/doc/guix.texi:20246 msgid "Defaults to @samp{Required}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19886 +#: guix-git/doc/guix.texi:20248 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-language" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19888 +#: guix-git/doc/guix.texi:20250 msgid "Specifies the default language to use for text and web content." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19890 +#: guix-git/doc/guix.texi:20252 msgid "Defaults to @samp{\"en\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19892 +#: guix-git/doc/guix.texi:20254 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-paper-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19897 +#: guix-git/doc/guix.texi:20259 msgid "Specifies the default paper size for new print queues. @samp{\"Auto\"} uses a locale-specific default, while @samp{\"None\"} specifies there is no default paper size. Specific size names are typically @samp{\"Letter\"} or @samp{\"A4\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19899 +#: guix-git/doc/guix.texi:20261 msgid "Defaults to @samp{\"Auto\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19901 +#: guix-git/doc/guix.texi:20263 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-policy" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19903 +#: guix-git/doc/guix.texi:20265 msgid "Specifies the default access policy to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19905 +#: guix-git/doc/guix.texi:20267 msgid "Defaults to @samp{\"default\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19907 +#: guix-git/doc/guix.texi:20269 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean default-shared?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19909 +#: guix-git/doc/guix.texi:20271 msgid "Specifies whether local printers are shared by default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19911 guix-git/doc/guix.texi:19991 -#: guix-git/doc/guix.texi:20281 guix-git/doc/guix.texi:23067 -#: guix-git/doc/guix.texi:23118 guix-git/doc/guix.texi:23125 -#: guix-git/doc/guix.texi:24407 guix-git/doc/guix.texi:24595 -#: guix-git/doc/guix.texi:24712 guix-git/doc/guix.texi:24748 -#: guix-git/doc/guix.texi:24799 guix-git/doc/guix.texi:24818 -#: guix-git/doc/guix.texi:24828 guix-git/doc/guix.texi:24838 -#: guix-git/doc/guix.texi:24897 guix-git/doc/guix.texi:24919 -#: guix-git/doc/guix.texi:24944 guix-git/doc/guix.texi:24970 -#: guix-git/doc/guix.texi:24988 guix-git/doc/guix.texi:28180 -#: guix-git/doc/guix.texi:28208 guix-git/doc/guix.texi:28344 -#: guix-git/doc/guix.texi:28351 guix-git/doc/guix.texi:28359 -#: guix-git/doc/guix.texi:28396 guix-git/doc/guix.texi:28410 -#: guix-git/doc/guix.texi:28499 guix-git/doc/guix.texi:28506 -#: guix-git/doc/guix.texi:28514 guix-git/doc/guix.texi:29293 -#: guix-git/doc/guix.texi:29433 guix-git/doc/guix.texi:29619 -#: guix-git/doc/guix.texi:29626 guix-git/doc/guix.texi:29648 -#: guix-git/doc/guix.texi:29687 guix-git/doc/guix.texi:29707 -#: guix-git/doc/guix.texi:29721 guix-git/doc/guix.texi:29934 -#: guix-git/doc/guix.texi:31845 guix-git/doc/guix.texi:31933 -#: guix-git/doc/guix.texi:31949 guix-git/doc/guix.texi:31999 +#: guix-git/doc/guix.texi:20273 guix-git/doc/guix.texi:20353 +#: guix-git/doc/guix.texi:20643 guix-git/doc/guix.texi:23429 +#: guix-git/doc/guix.texi:23480 guix-git/doc/guix.texi:23487 +#: guix-git/doc/guix.texi:24769 guix-git/doc/guix.texi:24957 +#: guix-git/doc/guix.texi:25074 guix-git/doc/guix.texi:25110 +#: guix-git/doc/guix.texi:25161 guix-git/doc/guix.texi:25180 +#: guix-git/doc/guix.texi:25190 guix-git/doc/guix.texi:25200 +#: guix-git/doc/guix.texi:25259 guix-git/doc/guix.texi:25281 +#: guix-git/doc/guix.texi:25306 guix-git/doc/guix.texi:25332 +#: guix-git/doc/guix.texi:25350 guix-git/doc/guix.texi:28517 +#: guix-git/doc/guix.texi:28545 guix-git/doc/guix.texi:28681 +#: guix-git/doc/guix.texi:28688 guix-git/doc/guix.texi:28696 +#: guix-git/doc/guix.texi:28733 guix-git/doc/guix.texi:28747 +#: guix-git/doc/guix.texi:28836 guix-git/doc/guix.texi:28843 +#: guix-git/doc/guix.texi:28851 guix-git/doc/guix.texi:29630 +#: guix-git/doc/guix.texi:29770 guix-git/doc/guix.texi:29984 +#: guix-git/doc/guix.texi:29991 guix-git/doc/guix.texi:30013 +#: guix-git/doc/guix.texi:30052 guix-git/doc/guix.texi:30072 +#: guix-git/doc/guix.texi:30086 guix-git/doc/guix.texi:30299 +#: guix-git/doc/guix.texi:32210 guix-git/doc/guix.texi:32298 +#: guix-git/doc/guix.texi:32314 guix-git/doc/guix.texi:32364 msgid "Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19913 +#: guix-git/doc/guix.texi:20275 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer dirty-clean-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19917 +#: guix-git/doc/guix.texi:20279 msgid "Specifies the delay for updating of configuration and state files, in seconds. A value of 0 causes the update to happen as soon as possible, typically within a few milliseconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19919 guix-git/doc/guix.texi:19967 -#: guix-git/doc/guix.texi:19976 guix-git/doc/guix.texi:20288 -#: guix-git/doc/guix.texi:24757 guix-git/doc/guix.texi:24790 +#: guix-git/doc/guix.texi:20281 guix-git/doc/guix.texi:20329 +#: guix-git/doc/guix.texi:20338 guix-git/doc/guix.texi:20650 +#: guix-git/doc/guix.texi:25119 guix-git/doc/guix.texi:25152 msgid "Defaults to @samp{30}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19921 +#: guix-git/doc/guix.texi:20283 #, no-wrap msgid "{@code{cups-configuration} parameter} error-policy error-policy" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19927 +#: guix-git/doc/guix.texi:20289 msgid "Specifies what to do when an error occurs. Possible values are @code{abort-job}, which will discard the failed print job; @code{retry-job}, which will retry the job at a later time; @code{retry-current-job}, which retries the failed job immediately; and @code{stop-printer}, which stops the printer." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19929 +#: guix-git/doc/guix.texi:20291 msgid "Defaults to @samp{stop-printer}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19931 +#: guix-git/doc/guix.texi:20293 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer filter-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19939 +#: guix-git/doc/guix.texi:20301 msgid "Specifies the maximum cost of filters that are run concurrently, which can be used to minimize disk, memory, and CPU resource problems. A limit of 0 disables filter limiting. An average print to a non-PostScript printer needs a filter limit of about 200. A PostScript printer needs about half that (100). Setting the limit below these thresholds will effectively limit the scheduler to printing a single job at any time." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19941 guix-git/doc/guix.texi:19949 -#: guix-git/doc/guix.texi:19998 guix-git/doc/guix.texi:20114 -#: guix-git/doc/guix.texi:20128 guix-git/doc/guix.texi:20135 -#: guix-git/doc/guix.texi:21622 guix-git/doc/guix.texi:21638 -#: guix-git/doc/guix.texi:22295 guix-git/doc/guix.texi:22307 -#: guix-git/doc/guix.texi:23086 guix-git/doc/guix.texi:23095 -#: guix-git/doc/guix.texi:23103 guix-git/doc/guix.texi:23111 -#: guix-git/doc/guix.texi:29309 guix-git/doc/guix.texi:29634 -#: guix-git/doc/guix.texi:31838 guix-git/doc/guix.texi:32138 -#: guix-git/doc/guix.texi:32312 +#: guix-git/doc/guix.texi:20303 guix-git/doc/guix.texi:20311 +#: guix-git/doc/guix.texi:20360 guix-git/doc/guix.texi:20476 +#: guix-git/doc/guix.texi:20490 guix-git/doc/guix.texi:20497 +#: guix-git/doc/guix.texi:21984 guix-git/doc/guix.texi:22000 +#: guix-git/doc/guix.texi:22657 guix-git/doc/guix.texi:22669 +#: guix-git/doc/guix.texi:23448 guix-git/doc/guix.texi:23457 +#: guix-git/doc/guix.texi:23465 guix-git/doc/guix.texi:23473 +#: guix-git/doc/guix.texi:29646 guix-git/doc/guix.texi:29999 +#: guix-git/doc/guix.texi:32203 guix-git/doc/guix.texi:32503 +#: guix-git/doc/guix.texi:32677 msgid "Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19943 +#: guix-git/doc/guix.texi:20305 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer filter-nice" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19947 +#: guix-git/doc/guix.texi:20309 msgid "Specifies the scheduling priority of filters that are run to print a job. The nice value ranges from 0, the highest priority, to 19, the lowest priority." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19951 +#: guix-git/doc/guix.texi:20313 #, no-wrap msgid "{@code{cups-configuration} parameter} host-name-lookups host-name-lookups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19958 +#: guix-git/doc/guix.texi:20320 msgid "Specifies whether to do reverse lookups on connecting clients. The @code{double} setting causes @code{cupsd} to verify that the hostname resolved from the address matches one of the addresses returned for that hostname. Double lookups also prevent clients with unregistered addresses from connecting to your server. Only set this option to @code{#t} or @code{double} if absolutely required." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19962 +#: guix-git/doc/guix.texi:20324 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-kill-delay" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19965 +#: guix-git/doc/guix.texi:20327 msgid "Specifies the number of seconds to wait before killing the filters and backend associated with a canceled or held job." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19969 +#: guix-git/doc/guix.texi:20331 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-retry-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19974 +#: guix-git/doc/guix.texi:20336 msgid "Specifies the interval between retries of jobs in seconds. This is typically used for fax queues but can also be used with normal print queues whose error policy is @code{retry-job} or @code{retry-current-job}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19978 +#: guix-git/doc/guix.texi:20340 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-retry-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19983 +#: guix-git/doc/guix.texi:20345 msgid "Specifies the number of retries that are done for jobs. This is typically used for fax queues but can also be used with normal print queues whose error policy is @code{retry-job} or @code{retry-current-job}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19985 guix-git/doc/guix.texi:24721 -#: guix-git/doc/guix.texi:30186 guix-git/doc/guix.texi:30206 -#: guix-git/doc/guix.texi:30222 guix-git/doc/guix.texi:30236 -#: guix-git/doc/guix.texi:30243 guix-git/doc/guix.texi:30250 -#: guix-git/doc/guix.texi:30257 guix-git/doc/guix.texi:30417 -#: guix-git/doc/guix.texi:30433 guix-git/doc/guix.texi:30440 -#: guix-git/doc/guix.texi:30447 guix-git/doc/guix.texi:30458 -#: guix-git/doc/guix.texi:31790 guix-git/doc/guix.texi:31798 -#: guix-git/doc/guix.texi:31806 guix-git/doc/guix.texi:31830 +#: guix-git/doc/guix.texi:20347 guix-git/doc/guix.texi:25083 +#: guix-git/doc/guix.texi:30551 guix-git/doc/guix.texi:30571 +#: guix-git/doc/guix.texi:30587 guix-git/doc/guix.texi:30601 +#: guix-git/doc/guix.texi:30608 guix-git/doc/guix.texi:30615 +#: guix-git/doc/guix.texi:30622 guix-git/doc/guix.texi:30782 +#: guix-git/doc/guix.texi:30798 guix-git/doc/guix.texi:30805 +#: guix-git/doc/guix.texi:30812 guix-git/doc/guix.texi:30823 +#: guix-git/doc/guix.texi:32155 guix-git/doc/guix.texi:32163 +#: guix-git/doc/guix.texi:32171 guix-git/doc/guix.texi:32195 msgid "Defaults to @samp{5}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19987 +#: guix-git/doc/guix.texi:20349 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean keep-alive?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19989 +#: guix-git/doc/guix.texi:20351 msgid "Specifies whether to support HTTP keep-alive connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19993 +#: guix-git/doc/guix.texi:20355 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer limit-request-body" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19996 +#: guix-git/doc/guix.texi:20358 msgid "Specifies the maximum size of print files, IPP requests, and HTML form data. A limit of 0 disables the limit check." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20000 +#: guix-git/doc/guix.texi:20362 #, no-wrap msgid "{@code{cups-configuration} parameter} multiline-string-list listen" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20007 +#: guix-git/doc/guix.texi:20369 msgid "Listens on the specified interfaces for connections. Valid values are of the form @var{address}:@var{port}, where @var{address} is either an IPv6 address enclosed in brackets, an IPv4 address, or @code{*} to indicate all addresses. Values can also be file names of local UNIX domain sockets. The Listen directive is similar to the Port directive but allows you to restrict access to specific interfaces or networks." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20009 +#: guix-git/doc/guix.texi:20371 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer listen-back-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20016 +#: guix-git/doc/guix.texi:20378 msgid "Specifies the number of pending connections that will be allowed. This normally only affects very busy servers that have reached the MaxClients limit, but can also be triggered by large numbers of simultaneous connections. When the limit is reached, the operating system will refuse additional connections until the scheduler can accept the pending ones." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20018 +#: guix-git/doc/guix.texi:20380 msgid "Defaults to @samp{128}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20020 +#: guix-git/doc/guix.texi:20382 #, no-wrap msgid "{@code{cups-configuration} parameter} location-access-control-list location-access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20022 +#: guix-git/doc/guix.texi:20384 msgid "Specifies a set of additional access controls." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20024 +#: guix-git/doc/guix.texi:20386 msgid "Available @code{location-access-controls} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20025 +#: guix-git/doc/guix.texi:20387 #, no-wrap msgid "{@code{location-access-controls} parameter} file-name path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20027 +#: guix-git/doc/guix.texi:20389 msgid "Specifies the URI path to which the access control applies." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20029 +#: guix-git/doc/guix.texi:20391 #, no-wrap msgid "{@code{location-access-controls} parameter} access-control-list access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20032 +#: guix-git/doc/guix.texi:20394 msgid "Access controls for all access to this path, in the same format as the @code{access-controls} of @code{operation-access-control}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20034 guix-git/doc/guix.texi:20040 -#: guix-git/doc/guix.texi:20054 guix-git/doc/guix.texi:20061 -#: guix-git/doc/guix.texi:20203 guix-git/doc/guix.texi:20262 -#: guix-git/doc/guix.texi:20340 guix-git/doc/guix.texi:20354 -#: guix-git/doc/guix.texi:21502 guix-git/doc/guix.texi:21511 -#: guix-git/doc/guix.texi:22781 guix-git/doc/guix.texi:22984 -#: guix-git/doc/guix.texi:23012 guix-git/doc/guix.texi:23042 -#: guix-git/doc/guix.texi:23157 guix-git/doc/guix.texi:23170 -#: guix-git/doc/guix.texi:23177 guix-git/doc/guix.texi:24927 -#: guix-git/doc/guix.texi:25322 guix-git/doc/guix.texi:25426 -#: guix-git/doc/guix.texi:25853 guix-git/doc/guix.texi:25861 -#: guix-git/doc/guix.texi:26106 guix-git/doc/guix.texi:28239 -#: guix-git/doc/guix.texi:28417 guix-git/doc/guix.texi:28616 -#: guix-git/doc/guix.texi:30077 guix-git/doc/guix.texi:30137 -#: guix-git/doc/guix.texi:30145 guix-git/doc/guix.texi:31853 -#: guix-git/doc/guix.texi:31860 guix-git/doc/guix.texi:32202 -#: guix-git/doc/guix.texi:32280 guix-git/doc/guix.texi:32374 -#: guix-git/doc/guix.texi:32382 guix-git/doc/guix.texi:32418 -#: guix-git/doc/guix.texi:32568 guix-git/doc/guix.texi:32619 -#: guix-git/doc/guix.texi:32628 +#: guix-git/doc/guix.texi:20396 guix-git/doc/guix.texi:20402 +#: guix-git/doc/guix.texi:20416 guix-git/doc/guix.texi:20423 +#: guix-git/doc/guix.texi:20565 guix-git/doc/guix.texi:20624 +#: guix-git/doc/guix.texi:20702 guix-git/doc/guix.texi:20716 +#: guix-git/doc/guix.texi:21864 guix-git/doc/guix.texi:21873 +#: guix-git/doc/guix.texi:23143 guix-git/doc/guix.texi:23346 +#: guix-git/doc/guix.texi:23374 guix-git/doc/guix.texi:23404 +#: guix-git/doc/guix.texi:23519 guix-git/doc/guix.texi:23532 +#: guix-git/doc/guix.texi:23539 guix-git/doc/guix.texi:25289 +#: guix-git/doc/guix.texi:25684 guix-git/doc/guix.texi:25788 +#: guix-git/doc/guix.texi:26190 guix-git/doc/guix.texi:26198 +#: guix-git/doc/guix.texi:26443 guix-git/doc/guix.texi:28576 +#: guix-git/doc/guix.texi:28754 guix-git/doc/guix.texi:28953 +#: guix-git/doc/guix.texi:30442 guix-git/doc/guix.texi:30502 +#: guix-git/doc/guix.texi:30510 guix-git/doc/guix.texi:32218 +#: guix-git/doc/guix.texi:32225 guix-git/doc/guix.texi:32567 +#: guix-git/doc/guix.texi:32645 guix-git/doc/guix.texi:32739 +#: guix-git/doc/guix.texi:32747 guix-git/doc/guix.texi:32783 +#: guix-git/doc/guix.texi:32933 guix-git/doc/guix.texi:32984 +#: guix-git/doc/guix.texi:32993 msgid "Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20036 +#: guix-git/doc/guix.texi:20398 #, no-wrap msgid "{@code{location-access-controls} parameter} method-access-control-list method-access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20038 +#: guix-git/doc/guix.texi:20400 msgid "Access controls for method-specific access to this path." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20042 +#: guix-git/doc/guix.texi:20404 msgid "Available @code{method-access-controls} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20043 +#: guix-git/doc/guix.texi:20405 #, no-wrap msgid "{@code{method-access-controls} parameter} boolean reverse?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20046 +#: guix-git/doc/guix.texi:20408 msgid "If @code{#t}, apply access controls to all methods except the listed methods. Otherwise apply to only the listed methods." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20050 +#: guix-git/doc/guix.texi:20412 #, no-wrap msgid "{@code{method-access-controls} parameter} method-list methods" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20052 +#: guix-git/doc/guix.texi:20414 msgid "Methods to which this access control applies." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20056 +#: guix-git/doc/guix.texi:20418 #, no-wrap msgid "{@code{method-access-controls} parameter} access-control-list access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20059 +#: guix-git/doc/guix.texi:20421 msgid "Access control directives, as a list of strings. Each string should be one directive, such as @samp{\"Order allow,deny\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20065 +#: guix-git/doc/guix.texi:20427 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer log-debug-history" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20069 +#: guix-git/doc/guix.texi:20431 msgid "Specifies the number of debugging messages that are retained for logging if an error occurs in a print job. Debug messages are logged regardless of the LogLevel setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20071 guix-git/doc/guix.texi:20092 -#: guix-git/doc/guix.texi:20099 guix-git/doc/guix.texi:22541 -#: guix-git/doc/guix.texi:24459 guix-git/doc/guix.texi:24474 -#: guix-git/doc/guix.texi:28601 +#: guix-git/doc/guix.texi:20433 guix-git/doc/guix.texi:20454 +#: guix-git/doc/guix.texi:20461 guix-git/doc/guix.texi:22903 +#: guix-git/doc/guix.texi:24821 guix-git/doc/guix.texi:24836 +#: guix-git/doc/guix.texi:28938 msgid "Defaults to @samp{100}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20073 +#: guix-git/doc/guix.texi:20435 #, no-wrap msgid "{@code{cups-configuration} parameter} log-level log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20076 +#: guix-git/doc/guix.texi:20438 msgid "Specifies the level of logging for the ErrorLog file. The value @code{none} stops all logging while @code{debug2} logs everything." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20078 guix-git/doc/guix.texi:24936 +#: guix-git/doc/guix.texi:20440 guix-git/doc/guix.texi:25298 msgid "Defaults to @samp{info}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20080 +#: guix-git/doc/guix.texi:20442 #, no-wrap msgid "{@code{cups-configuration} parameter} log-time-format log-time-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20083 +#: guix-git/doc/guix.texi:20445 msgid "Specifies the format of the date and time in the log files. The value @code{standard} logs whole seconds while @code{usecs} logs microseconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20085 +#: guix-git/doc/guix.texi:20447 msgid "Defaults to @samp{standard}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20087 +#: guix-git/doc/guix.texi:20449 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20090 +#: guix-git/doc/guix.texi:20452 msgid "Specifies the maximum number of simultaneous clients that are allowed by the scheduler." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20094 +#: guix-git/doc/guix.texi:20456 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-clients-per-host" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20097 +#: guix-git/doc/guix.texi:20459 msgid "Specifies the maximum number of simultaneous clients that are allowed from a single address." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20101 +#: guix-git/doc/guix.texi:20463 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-copies" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20104 +#: guix-git/doc/guix.texi:20466 msgid "Specifies the maximum number of copies that a user can print of each job." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20106 +#: guix-git/doc/guix.texi:20468 msgid "Defaults to @samp{9999}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20108 +#: guix-git/doc/guix.texi:20470 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-hold-time" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20112 +#: guix-git/doc/guix.texi:20474 msgid "Specifies the maximum time a job may remain in the @code{indefinite} hold state before it is canceled. A value of 0 disables cancellation of held jobs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20116 +#: guix-git/doc/guix.texi:20478 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20119 +#: guix-git/doc/guix.texi:20481 msgid "Specifies the maximum number of simultaneous jobs that are allowed. Set to 0 to allow an unlimited number of jobs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20121 +#: guix-git/doc/guix.texi:20483 msgid "Defaults to @samp{500}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20123 +#: guix-git/doc/guix.texi:20485 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs-per-printer" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20126 +#: guix-git/doc/guix.texi:20488 msgid "Specifies the maximum number of simultaneous jobs that are allowed per printer. A value of 0 allows up to MaxJobs jobs per printer." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20130 +#: guix-git/doc/guix.texi:20492 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs-per-user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20133 +#: guix-git/doc/guix.texi:20495 msgid "Specifies the maximum number of simultaneous jobs that are allowed per user. A value of 0 allows up to MaxJobs jobs per user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20137 +#: guix-git/doc/guix.texi:20499 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-job-time" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20140 +#: guix-git/doc/guix.texi:20502 msgid "Specifies the maximum time a job may take to print before it is canceled, in seconds. Set to 0 to disable cancellation of ``stuck'' jobs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20142 +#: guix-git/doc/guix.texi:20504 msgid "Defaults to @samp{10800}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20144 +#: guix-git/doc/guix.texi:20506 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-log-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20147 +#: guix-git/doc/guix.texi:20509 msgid "Specifies the maximum size of the log files before they are rotated, in bytes. The value 0 disables log rotation." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20149 +#: guix-git/doc/guix.texi:20511 msgid "Defaults to @samp{1048576}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20151 +#: guix-git/doc/guix.texi:20513 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer multiple-operation-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20154 +#: guix-git/doc/guix.texi:20516 msgid "Specifies the maximum amount of time to allow between files in a multiple file print job, in seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20156 guix-git/doc/guix.texi:20367 +#: guix-git/doc/guix.texi:20518 guix-git/doc/guix.texi:20729 msgid "Defaults to @samp{900}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20158 +#: guix-git/doc/guix.texi:20520 #, no-wrap msgid "{@code{cups-configuration} parameter} string page-log-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20163 +#: guix-git/doc/guix.texi:20525 msgid "Specifies the format of PageLog lines. Sequences beginning with percent (@samp{%}) characters are replaced with the corresponding information, while all other characters are copied literally. The following percent sequences are recognized:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20165 +#: guix-git/doc/guix.texi:20527 #, no-wrap msgid "%%" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20167 +#: guix-git/doc/guix.texi:20529 msgid "insert a single percent character" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20168 +#: guix-git/doc/guix.texi:20530 #, no-wrap msgid "%@{name@}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20170 +#: guix-git/doc/guix.texi:20532 msgid "insert the value of the specified IPP attribute" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20171 +#: guix-git/doc/guix.texi:20533 #, no-wrap msgid "%C" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20173 +#: guix-git/doc/guix.texi:20535 msgid "insert the number of copies for the current page" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20174 +#: guix-git/doc/guix.texi:20536 #, no-wrap msgid "%P" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20176 +#: guix-git/doc/guix.texi:20538 msgid "insert the current page number" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20177 +#: guix-git/doc/guix.texi:20539 #, no-wrap msgid "%T" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20179 +#: guix-git/doc/guix.texi:20541 msgid "insert the current date and time in common log format" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20180 +#: guix-git/doc/guix.texi:20542 #, no-wrap msgid "%j" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20182 +#: guix-git/doc/guix.texi:20544 msgid "insert the job ID" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20183 guix-git/doc/guix.texi:22140 +#: guix-git/doc/guix.texi:20545 guix-git/doc/guix.texi:22502 #, no-wrap msgid "%p" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20185 +#: guix-git/doc/guix.texi:20547 msgid "insert the printer name" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20186 guix-git/doc/guix.texi:22163 +#: guix-git/doc/guix.texi:20548 guix-git/doc/guix.texi:22525 #, no-wrap msgid "%u" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20188 +#: guix-git/doc/guix.texi:20550 msgid "insert the username" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20194 +#: guix-git/doc/guix.texi:20556 msgid "A value of the empty string disables page logging. The string @code{%p %u %j %T %P %C %@{job-billing@} %@{job-originating-host-name@} %@{job-name@} %@{media@} %@{sides@}} creates a page log with the standard items." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20198 +#: guix-git/doc/guix.texi:20560 #, no-wrap msgid "{@code{cups-configuration} parameter} environment-variables environment-variables" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20201 +#: guix-git/doc/guix.texi:20563 msgid "Passes the specified environment variable(s) to child processes; a list of strings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20205 +#: guix-git/doc/guix.texi:20567 #, no-wrap msgid "{@code{cups-configuration} parameter} policy-configuration-list policies" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20207 +#: guix-git/doc/guix.texi:20569 msgid "Specifies named access control policies." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20209 +#: guix-git/doc/guix.texi:20571 msgid "Available @code{policy-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20210 +#: guix-git/doc/guix.texi:20572 #, no-wrap msgid "{@code{policy-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20212 +#: guix-git/doc/guix.texi:20574 msgid "Name of the policy." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20214 +#: guix-git/doc/guix.texi:20576 #, no-wrap msgid "{@code{policy-configuration} parameter} string job-private-access" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20224 +#: guix-git/doc/guix.texi:20586 msgid "Specifies an access list for a job's private values. @code{@@ACL} maps to the printer's requesting-user-name-allowed or requesting-user-name-denied values. @code{@@OWNER} maps to the job's owner. @code{@@SYSTEM} maps to the groups listed for the @code{system-group} field of the @code{files-configuration}, which is reified into the @code{cups-files.conf(5)} file. Other possible elements of the access list include specific user names, and @code{@@@var{group}} to indicate members of a specific group. The access list may also be simply @code{all} or @code{default}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20226 guix-git/doc/guix.texi:20248 +#: guix-git/doc/guix.texi:20588 guix-git/doc/guix.texi:20610 msgid "Defaults to @samp{\"@@OWNER @@SYSTEM\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20228 +#: guix-git/doc/guix.texi:20590 #, no-wrap msgid "{@code{policy-configuration} parameter} string job-private-values" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20231 guix-git/doc/guix.texi:20253 +#: guix-git/doc/guix.texi:20593 guix-git/doc/guix.texi:20615 msgid "Specifies the list of job values to make private, or @code{all}, @code{default}, or @code{none}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20234 +#: guix-git/doc/guix.texi:20596 msgid "Defaults to @samp{\"job-name job-originating-host-name job-originating-user-name phone\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20236 +#: guix-git/doc/guix.texi:20598 #, no-wrap msgid "{@code{policy-configuration} parameter} string subscription-private-access" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20246 +#: guix-git/doc/guix.texi:20608 msgid "Specifies an access list for a subscription's private values. @code{@@ACL} maps to the printer's requesting-user-name-allowed or requesting-user-name-denied values. @code{@@OWNER} maps to the job's owner. @code{@@SYSTEM} maps to the groups listed for the @code{system-group} field of the @code{files-configuration}, which is reified into the @code{cups-files.conf(5)} file. Other possible elements of the access list include specific user names, and @code{@@@var{group}} to indicate members of a specific group. The access list may also be simply @code{all} or @code{default}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20250 +#: guix-git/doc/guix.texi:20612 #, no-wrap msgid "{@code{policy-configuration} parameter} string subscription-private-values" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20256 +#: guix-git/doc/guix.texi:20618 msgid "Defaults to @samp{\"notify-events notify-pull-method notify-recipient-uri notify-subscriber-user-name notify-user-data\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20258 +#: guix-git/doc/guix.texi:20620 #, no-wrap msgid "{@code{policy-configuration} parameter} operation-access-control-list access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20260 +#: guix-git/doc/guix.texi:20622 msgid "Access control by IPP operation." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20265 +#: guix-git/doc/guix.texi:20627 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean-or-non-negative-integer preserve-job-files" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20270 +#: guix-git/doc/guix.texi:20632 msgid "Specifies whether job files (documents) are preserved after a job is printed. If a numeric value is specified, job files are preserved for the indicated number of seconds after printing. Otherwise a boolean value applies indefinitely." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20272 +#: guix-git/doc/guix.texi:20634 msgid "Defaults to @samp{86400}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20274 +#: guix-git/doc/guix.texi:20636 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean-or-non-negative-integer preserve-job-history" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20279 +#: guix-git/doc/guix.texi:20641 msgid "Specifies whether the job history is preserved after a job is printed. If a numeric value is specified, the job history is preserved for the indicated number of seconds after printing. If @code{#t}, the job history is preserved until the MaxJobs limit is reached." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20283 +#: guix-git/doc/guix.texi:20645 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer reload-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20286 +#: guix-git/doc/guix.texi:20648 msgid "Specifies the amount of time to wait for job completion before restarting the scheduler." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20290 +#: guix-git/doc/guix.texi:20652 #, no-wrap msgid "{@code{cups-configuration} parameter} string rip-cache" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20293 +#: guix-git/doc/guix.texi:20655 msgid "Specifies the maximum amount of memory to use when converting documents into bitmaps for a printer." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20295 +#: guix-git/doc/guix.texi:20657 msgid "Defaults to @samp{\"128m\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20297 +#: guix-git/doc/guix.texi:20659 #, no-wrap msgid "{@code{cups-configuration} parameter} string server-admin" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20299 +#: guix-git/doc/guix.texi:20661 msgid "Specifies the email address of the server administrator." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20301 +#: guix-git/doc/guix.texi:20663 msgid "Defaults to @samp{\"root@@localhost.localdomain\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20303 +#: guix-git/doc/guix.texi:20665 #, no-wrap msgid "{@code{cups-configuration} parameter} host-name-list-or-* server-alias" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20311 +#: guix-git/doc/guix.texi:20673 msgid "The ServerAlias directive is used for HTTP Host header validation when clients connect to the scheduler from external interfaces. Using the special name @code{*} can expose your system to known browser-based DNS rebinding attacks, even when accessing sites through a firewall. If the auto-discovery of alternate names does not work, we recommend listing each alternate name with a ServerAlias directive instead of using @code{*}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20313 +#: guix-git/doc/guix.texi:20675 msgid "Defaults to @samp{*}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20315 +#: guix-git/doc/guix.texi:20677 #, no-wrap msgid "{@code{cups-configuration} parameter} string server-name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20317 +#: guix-git/doc/guix.texi:20679 msgid "Specifies the fully-qualified host name of the server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20319 guix-git/doc/guix.texi:25449 -#: guix-git/doc/guix.texi:25494 +#: guix-git/doc/guix.texi:20681 msgid "Defaults to @samp{\"localhost\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20321 +#: guix-git/doc/guix.texi:20683 #, no-wrap msgid "{@code{cups-configuration} parameter} server-tokens server-tokens" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20329 +#: guix-git/doc/guix.texi:20691 msgid "Specifies what information is included in the Server header of HTTP responses. @code{None} disables the Server header. @code{ProductOnly} reports @code{CUPS}. @code{Major} reports @code{CUPS 2}. @code{Minor} reports @code{CUPS 2.0}. @code{Minimal} reports @code{CUPS 2.0.0}. @code{OS} reports @code{CUPS 2.0.0 (@var{uname})} where @var{uname} is the output of the @code{uname} command. @code{Full} reports @code{CUPS 2.0.0 (@var{uname}) IPP/2.0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20331 +#: guix-git/doc/guix.texi:20693 msgid "Defaults to @samp{Minimal}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20333 +#: guix-git/doc/guix.texi:20695 #, no-wrap msgid "{@code{cups-configuration} parameter} multiline-string-list ssl-listen" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20338 +#: guix-git/doc/guix.texi:20700 msgid "Listens on the specified interfaces for encrypted connections. Valid values are of the form @var{address}:@var{port}, where @var{address} is either an IPv6 address enclosed in brackets, an IPv4 address, or @code{*} to indicate all addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20342 +#: guix-git/doc/guix.texi:20704 #, no-wrap msgid "{@code{cups-configuration} parameter} ssl-options ssl-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20352 +#: guix-git/doc/guix.texi:20714 msgid "Sets encryption options. By default, CUPS only supports encryption using TLS v1.0 or higher using known secure cipher suites. Security is reduced when @code{Allow} options are used, and enhanced when @code{Deny} options are used. The @code{AllowRC4} option enables the 128-bit RC4 cipher suites, which are required for some older clients. The @code{AllowSSL3} option enables SSL v3.0, which is required for some older clients that do not support TLS v1.0. The @code{DenyCBC} option disables all CBC cipher suites. The @code{DenyTLS1.0} option disables TLS v1.0 support - this sets the minimum protocol version to TLS v1.1." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20356 +#: guix-git/doc/guix.texi:20718 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean strict-conformance?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20359 +#: guix-git/doc/guix.texi:20721 msgid "Specifies whether the scheduler requires clients to strictly adhere to the IPP specifications." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20363 +#: guix-git/doc/guix.texi:20725 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20365 +#: guix-git/doc/guix.texi:20727 msgid "Specifies the HTTP request timeout, in seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20370 +#: guix-git/doc/guix.texi:20732 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean web-interface?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20372 +#: guix-git/doc/guix.texi:20734 msgid "Specifies whether the web interface is enabled." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20382 +#: guix-git/doc/guix.texi:20744 msgid "At this point you're probably thinking ``oh dear, Guix manual, I like you but you can stop already with the configuration options''. Indeed. However, one more point: it could be that you have an existing @code{cupsd.conf} that you want to use. In that case, you can pass an @code{opaque-cups-configuration} as the configuration of a @code{cups-service-type}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20384 +#: guix-git/doc/guix.texi:20746 msgid "Available @code{opaque-cups-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20385 +#: guix-git/doc/guix.texi:20747 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} package cups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20389 +#: guix-git/doc/guix.texi:20751 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} string cupsd.conf" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20391 +#: guix-git/doc/guix.texi:20753 msgid "The contents of the @code{cupsd.conf}, as a string." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20393 +#: guix-git/doc/guix.texi:20755 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} string cups-files.conf" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20395 +#: guix-git/doc/guix.texi:20757 msgid "The contents of the @code{cups-files.conf} file, as a string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20400 +#: guix-git/doc/guix.texi:20762 msgid "For example, if your @code{cupsd.conf} and @code{cups-files.conf} are in strings of the same name, you could instantiate a CUPS service like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20406 +#: guix-git/doc/guix.texi:20768 #, no-wrap msgid "" "(service cups-service-type\n" @@ -36423,238 +37032,238 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20417 +#: guix-git/doc/guix.texi:20779 msgid "The @code{(gnu services desktop)} module provides services that are usually useful in the context of a ``desktop'' setup---that is, on a machine running a graphical display server, possibly with graphical user interfaces, etc. It also defines services that provide specific desktop environments like GNOME, Xfce or MATE." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20421 +#: guix-git/doc/guix.texi:20783 msgid "To simplify things, the module defines a variable containing the set of services that users typically expect on a machine with a graphical environment and networking:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20422 +#: guix-git/doc/guix.texi:20784 #, no-wrap msgid "{Scheme Variable} %desktop-services" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20425 +#: guix-git/doc/guix.texi:20787 msgid "This is a list of services that builds upon @code{%base-services} and adds or adjusts services for a typical ``desktop'' setup." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20436 +#: guix-git/doc/guix.texi:20798 msgid "In particular, it adds a graphical login manager (@pxref{X Window, @code{gdm-service-type}}), screen lockers, a network management tool (@pxref{Networking Services, @code{network-manager-service-type}}) with modem support (@pxref{Networking Services, @code{modem-manager-service-type}}), energy and color management services, the @code{elogind} login and seat manager, the Polkit privilege service, the GeoClue location service, the AccountsService daemon that allows authorized users change system passwords, an NTP client (@pxref{Networking Services}), the Avahi daemon, and has the name service switch service configured to be able to use @code{nss-mdns} (@pxref{Name Service Switch, mDNS})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20441 +#: guix-git/doc/guix.texi:20803 msgid "The @code{%desktop-services} variable can be used as the @code{services} field of an @code{operating-system} declaration (@pxref{operating-system Reference, @code{services}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20464 +#: guix-git/doc/guix.texi:20826 msgid "Additionally, the @code{gnome-desktop-service-type}, @code{xfce-desktop-service}, @code{mate-desktop-service-type}, @code{lxqt-desktop-service-type} and @code{enlightenment-desktop-service-type} procedures can add GNOME, Xfce, MATE and/or Enlightenment to a system. To ``add GNOME'' means that system-level services like the backlight adjustment helpers and the power management utilities are added to the system, extending @code{polkit} and @code{dbus} appropriately, allowing GNOME to operate with elevated privileges on a limited number of special-purpose system interfaces. Additionally, adding a service made by @code{gnome-desktop-service-type} adds the GNOME metapackage to the system profile. Likewise, adding the Xfce service not only adds the @code{xfce} metapackage to the system profile, but it also gives the Thunar file manager the ability to open a ``root-mode'' file management window, if the user authenticates using the administrator's password via the standard polkit graphical interface. To ``add MATE'' means that @code{polkit} and @code{dbus} are extended appropriately, allowing MATE to operate with elevated privileges on a limited number of special-purpose system interfaces. Additionally, adding a service of type @code{mate-desktop-service-type} adds the MATE metapackage to the system profile. ``Adding Enlightenment'' means that @code{dbus} is extended appropriately, and several of Enlightenment's binaries are set as setuid, allowing Enlightenment's screen locker and other functionality to work as expected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20474 +#: guix-git/doc/guix.texi:20836 msgid "The desktop environments in Guix use the Xorg display server by default. If you'd like to use the newer display server protocol called Wayland, you need to enable Wayland support in GDM (@pxref{wayland-gdm}). Another solution is to use the @code{sddm-service} instead of GDM as the graphical login manager. You should then select the ``GNOME (Wayland)'' session in SDDM@. Alternatively you can also try starting GNOME on Wayland manually from a TTY with the command ``XDG_SESSION_TYPE=wayland exec dbus-run-session gnome-session``. Currently only GNOME has support for Wayland." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20475 +#: guix-git/doc/guix.texi:20837 #, no-wrap msgid "{Scheme Variable} gnome-desktop-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20479 +#: guix-git/doc/guix.texi:20841 msgid "This is the type of the service that adds the @uref{https://www.gnome.org, GNOME} desktop environment. Its value is a @code{gnome-desktop-configuration} object (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20482 +#: guix-git/doc/guix.texi:20844 msgid "This service adds the @code{gnome} package to the system profile, and extends polkit with the actions from @code{gnome-settings-daemon}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20484 +#: guix-git/doc/guix.texi:20846 #, no-wrap msgid "{Data Type} gnome-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20486 +#: guix-git/doc/guix.texi:20848 msgid "Configuration record for the GNOME desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20488 +#: guix-git/doc/guix.texi:20850 #, no-wrap msgid "@code{gnome} (default: @code{gnome})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20490 +#: guix-git/doc/guix.texi:20852 msgid "The GNOME package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20493 +#: guix-git/doc/guix.texi:20855 #, no-wrap msgid "{Scheme Variable} xfce-desktop-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20497 +#: guix-git/doc/guix.texi:20859 msgid "This is the type of a service to run the @uref{Xfce, https://xfce.org/} desktop environment. Its value is an @code{xfce-desktop-configuration} object (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20502 +#: guix-git/doc/guix.texi:20864 msgid "This service adds the @code{xfce} package to the system profile, and extends polkit with the ability for @code{thunar} to manipulate the file system as root from within a user session, after the user has authenticated with the administrator's password." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20508 +#: guix-git/doc/guix.texi:20870 msgid "Note that @code{xfce4-panel} and its plugin packages should be installed in the same profile to ensure compatibility. When using this service, you should add extra plugins (@code{xfce4-whiskermenu-plugin}, @code{xfce4-weather-plugin}, etc.) to the @code{packages} field of your @code{operating-system}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20510 +#: guix-git/doc/guix.texi:20872 #, no-wrap msgid "{Data Type} xfce-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20512 +#: guix-git/doc/guix.texi:20874 msgid "Configuration record for the Xfce desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20514 +#: guix-git/doc/guix.texi:20876 #, no-wrap msgid "@code{xfce} (default: @code{xfce})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20516 +#: guix-git/doc/guix.texi:20878 msgid "The Xfce package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20519 +#: guix-git/doc/guix.texi:20881 #, no-wrap msgid "{Scheme Variable} mate-desktop-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20523 +#: guix-git/doc/guix.texi:20885 msgid "This is the type of the service that runs the @uref{https://mate-desktop.org/, MATE desktop environment}. Its value is a @code{mate-desktop-configuration} object (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20527 +#: guix-git/doc/guix.texi:20889 msgid "This service adds the @code{mate} package to the system profile, and extends polkit with the actions from @code{mate-settings-daemon}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20529 +#: guix-git/doc/guix.texi:20891 #, no-wrap msgid "{Data Type} mate-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20531 +#: guix-git/doc/guix.texi:20893 msgid "Configuration record for the MATE desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20533 +#: guix-git/doc/guix.texi:20895 #, no-wrap msgid "@code{mate} (default: @code{mate})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20535 +#: guix-git/doc/guix.texi:20897 msgid "The MATE package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20538 +#: guix-git/doc/guix.texi:20900 #, no-wrap msgid "{Scheme Variable} lxqt-desktop-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20542 +#: guix-git/doc/guix.texi:20904 msgid "This is the type of the service that runs the @uref{https://lxqt-project.org, LXQt desktop environment}. Its value is a @code{lxqt-desktop-configuration} object (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20545 +#: guix-git/doc/guix.texi:20907 msgid "This service adds the @code{lxqt} package to the system profile." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20547 +#: guix-git/doc/guix.texi:20909 #, no-wrap msgid "{Data Type} lxqt-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20549 +#: guix-git/doc/guix.texi:20911 msgid "Configuration record for the LXQt desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20551 +#: guix-git/doc/guix.texi:20913 #, no-wrap msgid "@code{lxqt} (default: @code{lxqt})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20553 +#: guix-git/doc/guix.texi:20915 msgid "The LXQT package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20556 +#: guix-git/doc/guix.texi:20918 #, no-wrap msgid "{Scheme Variable} enlightenment-desktop-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20559 +#: guix-git/doc/guix.texi:20921 msgid "Return a service that adds the @code{enlightenment} package to the system profile, and extends dbus with actions from @code{efl}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20561 +#: guix-git/doc/guix.texi:20923 #, no-wrap msgid "{Data Type} enlightenment-desktop-service-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20563 +#: guix-git/doc/guix.texi:20925 #, no-wrap msgid "@code{enlightenment} (default: @code{enlightenment})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20565 +#: guix-git/doc/guix.texi:20927 msgid "The enlightenment package to use." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20573 +#: guix-git/doc/guix.texi:20935 msgid "Because the GNOME, Xfce and MATE desktop services pull in so many packages, the default @code{%desktop-services} variable doesn't include any of them by default. To add GNOME, Xfce or MATE, just @code{cons} them onto @code{%desktop-services} in the @code{services} field of your @code{operating-system}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20584 +#: guix-git/doc/guix.texi:20946 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -36669,576 +37278,576 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20588 +#: guix-git/doc/guix.texi:20950 msgid "These desktop environments will then be available as options in the graphical login window." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20592 +#: guix-git/doc/guix.texi:20954 msgid "The actual service definitions included in @code{%desktop-services} and provided by @code{(gnu services dbus)} and @code{(gnu services desktop)} are described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20593 +#: guix-git/doc/guix.texi:20955 #, no-wrap msgid "{Scheme Procedure} dbus-service [#:dbus @var{dbus}] [#:services '()]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20596 +#: guix-git/doc/guix.texi:20958 msgid "Return a service that runs the ``system bus'', using @var{dbus}, with support for @var{services}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20600 +#: guix-git/doc/guix.texi:20962 msgid "@uref{https://dbus.freedesktop.org/, D-Bus} is an inter-process communication facility. Its system bus is used to allow system services to communicate and to be notified of system-wide events." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20605 +#: guix-git/doc/guix.texi:20967 msgid "@var{services} must be a list of packages that provide an @file{etc/dbus-1/system.d} directory containing additional D-Bus configuration and policy files. For example, to allow avahi-daemon to use the system bus, @var{services} must be equal to @code{(list avahi)}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20607 +#: guix-git/doc/guix.texi:20969 #, no-wrap msgid "{Scheme Procedure} elogind-service [#:config @var{config}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20613 +#: guix-git/doc/guix.texi:20975 msgid "Return a service that runs the @code{elogind} login and seat management daemon. @uref{https://github.com/elogind/elogind, Elogind} exposes a D-Bus interface that can be used to know which users are logged in, know what kind of sessions they have open, suspend the system, inhibit system suspend, reboot the system, and other tasks." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20617 +#: guix-git/doc/guix.texi:20979 msgid "Elogind handles most system-level power events for a computer, for example suspending the system when a lid is closed, or shutting it down when the power button is pressed." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20622 +#: guix-git/doc/guix.texi:20984 msgid "The @var{config} keyword argument specifies the configuration for elogind, and should be the result of an @code{(elogind-configuration (@var{parameter} @var{value})...)} invocation. Available parameters and their default values are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20624 +#: guix-git/doc/guix.texi:20986 #, no-wrap msgid "kill-user-processes?" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20626 guix-git/doc/guix.texi:20646 -#: guix-git/doc/guix.texi:20648 guix-git/doc/guix.texi:20650 -#: guix-git/doc/guix.texi:20662 +#: guix-git/doc/guix.texi:20988 guix-git/doc/guix.texi:21008 +#: guix-git/doc/guix.texi:21010 guix-git/doc/guix.texi:21012 +#: guix-git/doc/guix.texi:21024 msgid "#f" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20626 +#: guix-git/doc/guix.texi:20988 #, no-wrap msgid "kill-only-users" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20628 guix-git/doc/guix.texi:20668 +#: guix-git/doc/guix.texi:20990 guix-git/doc/guix.texi:21030 msgid "()" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20628 +#: guix-git/doc/guix.texi:20990 #, no-wrap msgid "kill-exclude-users" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20630 +#: guix-git/doc/guix.texi:20992 msgid "(\"root\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20630 +#: guix-git/doc/guix.texi:20992 #, no-wrap msgid "inhibit-delay-max-seconds" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20632 +#: guix-git/doc/guix.texi:20994 msgid "5" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20632 +#: guix-git/doc/guix.texi:20994 #, no-wrap msgid "handle-power-key" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20634 +#: guix-git/doc/guix.texi:20996 msgid "poweroff" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20634 +#: guix-git/doc/guix.texi:20996 #, no-wrap msgid "handle-suspend-key" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20636 guix-git/doc/guix.texi:20640 +#: guix-git/doc/guix.texi:20998 guix-git/doc/guix.texi:21002 msgid "suspend" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20636 +#: guix-git/doc/guix.texi:20998 #, no-wrap msgid "handle-hibernate-key" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20638 +#: guix-git/doc/guix.texi:21000 msgid "hibernate" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20638 +#: guix-git/doc/guix.texi:21000 #, no-wrap msgid "handle-lid-switch" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20640 +#: guix-git/doc/guix.texi:21002 #, no-wrap msgid "handle-lid-switch-docked" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20642 guix-git/doc/guix.texi:20644 -#: guix-git/doc/guix.texi:20656 +#: guix-git/doc/guix.texi:21004 guix-git/doc/guix.texi:21006 +#: guix-git/doc/guix.texi:21018 msgid "ignore" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20642 +#: guix-git/doc/guix.texi:21004 #, no-wrap msgid "handle-lid-switch-external-power" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20644 +#: guix-git/doc/guix.texi:21006 #, no-wrap msgid "power-key-ignore-inhibited?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20646 +#: guix-git/doc/guix.texi:21008 #, no-wrap msgid "suspend-key-ignore-inhibited?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20648 +#: guix-git/doc/guix.texi:21010 #, no-wrap msgid "hibernate-key-ignore-inhibited?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20650 +#: guix-git/doc/guix.texi:21012 #, no-wrap msgid "lid-switch-ignore-inhibited?" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20652 guix-git/doc/guix.texi:20664 +#: guix-git/doc/guix.texi:21014 guix-git/doc/guix.texi:21026 msgid "#t" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20652 +#: guix-git/doc/guix.texi:21014 #, no-wrap msgid "holdoff-timeout-seconds" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20654 +#: guix-git/doc/guix.texi:21016 msgid "30" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20654 +#: guix-git/doc/guix.texi:21016 #, no-wrap msgid "idle-action" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20656 +#: guix-git/doc/guix.texi:21018 #, no-wrap msgid "idle-action-seconds" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20658 +#: guix-git/doc/guix.texi:21020 msgid "(* 30 60)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20658 +#: guix-git/doc/guix.texi:21020 #, no-wrap msgid "runtime-directory-size-percent" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20660 +#: guix-git/doc/guix.texi:21022 msgid "10" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20660 +#: guix-git/doc/guix.texi:21022 #, no-wrap msgid "runtime-directory-size" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20662 +#: guix-git/doc/guix.texi:21024 #, no-wrap msgid "remove-ipc?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20664 +#: guix-git/doc/guix.texi:21026 #, no-wrap msgid "suspend-state" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20666 +#: guix-git/doc/guix.texi:21028 msgid "(\"mem\" \"standby\" \"freeze\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20666 +#: guix-git/doc/guix.texi:21028 #, no-wrap msgid "suspend-mode" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20668 +#: guix-git/doc/guix.texi:21030 #, no-wrap msgid "hibernate-state" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20670 guix-git/doc/guix.texi:20674 +#: guix-git/doc/guix.texi:21032 guix-git/doc/guix.texi:21036 msgid "(\"disk\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20670 +#: guix-git/doc/guix.texi:21032 #, no-wrap msgid "hibernate-mode" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20672 +#: guix-git/doc/guix.texi:21034 msgid "(\"platform\" \"shutdown\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20672 +#: guix-git/doc/guix.texi:21034 #, no-wrap msgid "hybrid-sleep-state" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20674 +#: guix-git/doc/guix.texi:21036 #, no-wrap msgid "hybrid-sleep-mode" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20676 +#: guix-git/doc/guix.texi:21038 msgid "(\"suspend\" \"platform\" \"shutdown\")" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20679 +#: guix-git/doc/guix.texi:21041 #, no-wrap msgid "{Scheme Procedure} accountsservice-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20687 +#: guix-git/doc/guix.texi:21049 msgid "[#:accountsservice @var{accountsservice}] Return a service that runs AccountsService, a system service that can list available accounts, change their passwords, and so on. AccountsService integrates with PolicyKit to enable unprivileged users to acquire the capability to modify their system configuration. @uref{https://www.freedesktop.org/wiki/Software/AccountsService/, the accountsservice web site} for more information." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20690 +#: guix-git/doc/guix.texi:21052 msgid "The @var{accountsservice} keyword argument is the @code{accountsservice} package to expose as a service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20692 +#: guix-git/doc/guix.texi:21054 #, no-wrap msgid "{Scheme Procedure} polkit-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20701 +#: guix-git/doc/guix.texi:21063 msgid "[#:polkit @var{polkit}] Return a service that runs the @uref{https://www.freedesktop.org/wiki/Software/polkit/, Polkit privilege management service}, which allows system administrators to grant access to privileged operations in a structured way. By querying the Polkit service, a privileged system component can know when it should grant additional capabilities to ordinary users. For example, an ordinary user can be granted the capability to suspend the system if the user is logged in locally." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20703 +#: guix-git/doc/guix.texi:21065 #, no-wrap msgid "{Scheme Variable} polkit-wheel-service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20708 +#: guix-git/doc/guix.texi:21070 msgid "Service that adds the @code{wheel} group as admins to the Polkit service. This makes it so that users in the @code{wheel} group are queried for their own passwords when performing administrative actions instead of @code{root}'s, similar to the behaviour used by @code{sudo}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20710 +#: guix-git/doc/guix.texi:21072 #, no-wrap msgid "{Scheme Variable} upower-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20714 +#: guix-git/doc/guix.texi:21076 msgid "Service that runs @uref{https://upower.freedesktop.org/, @command{upowerd}}, a system-wide monitor for power consumption and battery levels, with the given configuration settings." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20717 +#: guix-git/doc/guix.texi:21079 msgid "It implements the @code{org.freedesktop.UPower} D-Bus interface, and is notably used by GNOME." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20719 +#: guix-git/doc/guix.texi:21081 #, no-wrap msgid "{Data Type} upower-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20721 +#: guix-git/doc/guix.texi:21083 msgid "Data type representation the configuration for UPower." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20724 +#: guix-git/doc/guix.texi:21086 #, no-wrap msgid "@code{upower} (default: @var{upower})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20726 +#: guix-git/doc/guix.texi:21088 msgid "Package to use for @code{upower}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20727 +#: guix-git/doc/guix.texi:21089 #, no-wrap msgid "@code{watts-up-pro?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20729 +#: guix-git/doc/guix.texi:21091 msgid "Enable the Watts Up Pro device." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20730 +#: guix-git/doc/guix.texi:21092 #, no-wrap msgid "@code{poll-batteries?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20732 +#: guix-git/doc/guix.texi:21094 msgid "Enable polling the kernel for battery level changes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20733 +#: guix-git/doc/guix.texi:21095 #, no-wrap msgid "@code{ignore-lid?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20735 +#: guix-git/doc/guix.texi:21097 msgid "Ignore the lid state, this can be useful if it's incorrect on a device." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20736 +#: guix-git/doc/guix.texi:21098 #, no-wrap msgid "@code{use-percentage-for-policy?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20739 +#: guix-git/doc/guix.texi:21101 msgid "Whether battery percentage based policy should be used. The default is to use the time left, change to @code{#t} to use the percentage." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20740 +#: guix-git/doc/guix.texi:21102 #, no-wrap msgid "@code{percentage-low} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20743 +#: guix-git/doc/guix.texi:21105 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which the battery is considered low." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20744 +#: guix-git/doc/guix.texi:21106 #, no-wrap msgid "@code{percentage-critical} (default: @code{3})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20747 +#: guix-git/doc/guix.texi:21109 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which the battery is considered critical." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20748 +#: guix-git/doc/guix.texi:21110 #, no-wrap msgid "@code{percentage-action} (default: @code{2})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20751 +#: guix-git/doc/guix.texi:21113 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which action will be taken." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20752 +#: guix-git/doc/guix.texi:21114 #, no-wrap msgid "@code{time-low} (default: @code{1200})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20755 +#: guix-git/doc/guix.texi:21117 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which the battery is considered low." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20756 +#: guix-git/doc/guix.texi:21118 #, no-wrap msgid "@code{time-critical} (default: @code{300})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20759 +#: guix-git/doc/guix.texi:21121 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which the battery is considered critical." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20760 +#: guix-git/doc/guix.texi:21122 #, no-wrap msgid "@code{time-action} (default: @code{120})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20763 +#: guix-git/doc/guix.texi:21125 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which action will be taken." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20764 +#: guix-git/doc/guix.texi:21126 #, no-wrap msgid "@code{critical-power-action} (default: @code{'hybrid-sleep})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20767 +#: guix-git/doc/guix.texi:21129 msgid "The action taken when @code{percentage-action} or @code{time-action} is reached (depending on the configuration of @code{use-percentage-for-policy?})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20769 +#: guix-git/doc/guix.texi:21131 msgid "Possible values are:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20773 +#: guix-git/doc/guix.texi:21135 msgid "'power-off" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20776 +#: guix-git/doc/guix.texi:21138 msgid "'hibernate" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:20779 +#: guix-git/doc/guix.texi:21141 msgid "@code{'hybrid-sleep}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20784 +#: guix-git/doc/guix.texi:21146 #, no-wrap msgid "{Scheme Procedure} udisks-service [#:udisks @var{udisks}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20794 +#: guix-git/doc/guix.texi:21156 msgid "Return a service for @uref{https://udisks.freedesktop.org/docs/latest/, UDisks}, a @dfn{disk management} daemon that provides user interfaces with notifications and ways to mount/unmount disks. Programs that talk to UDisks include the @command{udisksctl} command, part of UDisks, and GNOME Disks. Note that Udisks relies on the @command{mount} command, so it will only be able to use the file-system utilities installed in the system profile. For example if you want to be able to mount NTFS file-systems in read and write fashion, you'll need to have @code{ntfs-3g} installed system-wide." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20796 +#: guix-git/doc/guix.texi:21158 #, no-wrap msgid "{Scheme Variable} colord-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20803 +#: guix-git/doc/guix.texi:21165 msgid "This is the type of the service that runs @command{colord}, a system service with a D-Bus interface to manage the color profiles of input and output devices such as screens and scanners. It is notably used by the GNOME Color Manager graphical tool. See @uref{https://www.freedesktop.org/software/colord/, the colord web site} for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20805 +#: guix-git/doc/guix.texi:21167 #, no-wrap msgid "scanner access" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20806 +#: guix-git/doc/guix.texi:21168 #, no-wrap msgid "{Scheme Variable} sane-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20812 +#: guix-git/doc/guix.texi:21174 msgid "This service provides access to scanners @i{via} @uref{http://www.sane-project.org, SANE} by installing the necessary udev rules. It is included in @code{%desktop-services} (@pxref{Desktop Services}) and relies by default on @code{sane-backends-minimal} package (see below) for hardware support." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20814 +#: guix-git/doc/guix.texi:21176 #, no-wrap msgid "{Scheme Variable} sane-backends-minimal" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20817 +#: guix-git/doc/guix.texi:21179 msgid "The default package which the @code{sane-service-type} installs. It supports many recent scanners." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20819 +#: guix-git/doc/guix.texi:21181 #, no-wrap msgid "{Scheme Variable} sane-backends" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20826 +#: guix-git/doc/guix.texi:21188 msgid "This package includes support for all scanners that @code{sane-backends-minimal} supports, plus older Hewlett-Packard scanners supported by @code{hplip} package. In order to use this on a system which relies on @code{%desktop-services}, you may use @code{modify-services} (@pxref{Service Reference, @code{modify-services}}) as illustrated below:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20835 +#: guix-git/doc/guix.texi:21197 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -37252,7 +37861,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20840 +#: guix-git/doc/guix.texi:21202 #, no-wrap msgid "" "(define %my-desktop-services\n" @@ -37263,7 +37872,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20844 +#: guix-git/doc/guix.texi:21206 #, no-wrap msgid "" "(operating-system\n" @@ -37272,214 +37881,214 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20847 +#: guix-git/doc/guix.texi:21209 #, no-wrap msgid "{Scheme Procedure} geoclue-application name [#:allowed? #t] [#:system? #f] [#:users '()]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20856 +#: guix-git/doc/guix.texi:21218 msgid "Return a configuration allowing an application to access GeoClue location data. @var{name} is the Desktop ID of the application, without the @code{.desktop} part. If @var{allowed?} is true, the application will have access to location information by default. The boolean @var{system?} value indicates whether an application is a system component or not. Finally @var{users} is a list of UIDs of all users for which this application is allowed location info access. An empty users list means that all users are allowed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20858 +#: guix-git/doc/guix.texi:21220 #, no-wrap msgid "{Scheme Variable} %standard-geoclue-applications" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20865 +#: guix-git/doc/guix.texi:21227 msgid "The standard list of well-known GeoClue application configurations, granting authority to the GNOME date-and-time utility to ask for the current location in order to set the time zone, and allowing the IceCat and Epiphany web browsers to request location information. IceCat and Epiphany both query the user before allowing a web page to know the user's location." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20867 +#: guix-git/doc/guix.texi:21229 #, no-wrap msgid "{Scheme Procedure} geoclue-service [#:colord @var{colord}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20880 +#: guix-git/doc/guix.texi:21242 msgid "[#:whitelist '()] @ [#:wifi-geolocation-url \"https://location.services.mozilla.com/v1/geolocate?key=geoclue\"] @ [#:submit-data? #f] [#:wifi-submission-url \"https://location.services.mozilla.com/v1/submit?key=geoclue\"] @ [#:submission-nick \"geoclue\"] @ [#:applications %standard-geoclue-applications] Return a service that runs the GeoClue location service. This service provides a D-Bus interface to allow applications to request access to a user's physical location, and optionally to add information to online location databases. See @uref{https://wiki.freedesktop.org/www/Software/GeoClue/, the GeoClue web site} for more information." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20882 +#: guix-git/doc/guix.texi:21244 #, no-wrap msgid "{Scheme Procedure} bluetooth-service [#:bluez @var{bluez}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20889 +#: guix-git/doc/guix.texi:21251 msgid "[@w{#:auto-enable? #f}] Return a service that runs the @command{bluetoothd} daemon, which manages all the Bluetooth devices and provides a number of D-Bus interfaces. When AUTO-ENABLE? is true, the bluetooth controller is powered automatically at boot, which can be useful when using a bluetooth keyboard or mouse." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20891 +#: guix-git/doc/guix.texi:21253 msgid "Users need to be in the @code{lp} group to access the D-Bus service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20893 +#: guix-git/doc/guix.texi:21255 #, no-wrap msgid "{Scheme Variable} gnome-keyring-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20897 +#: guix-git/doc/guix.texi:21259 msgid "This is the type of the service that adds the @uref{https://wiki.gnome.org/Projects/GnomeKeyring, GNOME Keyring}. Its value is a @code{gnome-keyring-configuration} object (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20901 +#: guix-git/doc/guix.texi:21263 msgid "This service adds the @code{gnome-keyring} package to the system profile and extends PAM with entries using @code{pam_gnome_keyring.so}, unlocking a user's login keyring when they log in or setting its password with passwd." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20903 +#: guix-git/doc/guix.texi:21265 #, no-wrap msgid "{Data Type} gnome-keyring-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20905 +#: guix-git/doc/guix.texi:21267 msgid "Configuration record for the GNOME Keyring service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20907 +#: guix-git/doc/guix.texi:21269 #, no-wrap msgid "@code{keyring} (default: @code{gnome-keyring})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20909 +#: guix-git/doc/guix.texi:21271 msgid "The GNOME keyring package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20910 +#: guix-git/doc/guix.texi:21272 #, no-wrap msgid "pam-services" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20915 +#: guix-git/doc/guix.texi:21277 msgid "A list of @code{(@var{service} . @var{kind})} pairs denoting PAM services to extend, where @var{service} is the name of an existing service to extend and @var{kind} is one of @code{login} or @code{passwd}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20921 +#: guix-git/doc/guix.texi:21283 msgid "If @code{login} is given, it adds an optional @code{pam_gnome_keyring.so} to the auth block without arguments and to the session block with @code{auto_start}. If @code{passwd} is given, it adds an optional @code{pam_gnome_keyring.so} to the password block without arguments." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20924 +#: guix-git/doc/guix.texi:21286 msgid "By default, this field contains ``gdm-password'' with the value @code{login} and ``passwd'' is with the value @code{passwd}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20931 +#: guix-git/doc/guix.texi:21293 #, no-wrap msgid "sound support" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20932 +#: guix-git/doc/guix.texi:21294 #, no-wrap msgid "ALSA" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20933 +#: guix-git/doc/guix.texi:21295 #, no-wrap msgid "PulseAudio, sound support" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20938 +#: guix-git/doc/guix.texi:21300 msgid "The @code{(gnu services sound)} module provides a service to configure the Advanced Linux Sound Architecture (ALSA) system, which makes PulseAudio the preferred ALSA output driver." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20939 +#: guix-git/doc/guix.texi:21301 #, no-wrap msgid "{Scheme Variable} alsa-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20944 +#: guix-git/doc/guix.texi:21306 msgid "This is the type for the @uref{https://alsa-project.org/, Advanced Linux Sound Architecture} (ALSA) system, which generates the @file{/etc/asound.conf} configuration file. The value for this type is a @command{alsa-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20947 +#: guix-git/doc/guix.texi:21309 #, no-wrap msgid "(service alsa-service-type)\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20950 +#: guix-git/doc/guix.texi:21312 msgid "See below for details about @code{alsa-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20952 +#: guix-git/doc/guix.texi:21314 #, no-wrap msgid "{Data Type} alsa-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20954 +#: guix-git/doc/guix.texi:21316 msgid "Data type representing the configuration for @code{alsa-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20956 +#: guix-git/doc/guix.texi:21318 #, no-wrap msgid "@code{alsa-plugins} (default: @var{alsa-plugins})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20958 +#: guix-git/doc/guix.texi:21320 msgid "@code{alsa-plugins} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20959 +#: guix-git/doc/guix.texi:21321 #, no-wrap msgid "@code{pulseaudio?} (default: @var{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20962 +#: guix-git/doc/guix.texi:21324 msgid "Whether ALSA applications should transparently be made to use the @uref{https://www.pulseaudio.org/, PulseAudio} sound server." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20966 +#: guix-git/doc/guix.texi:21328 msgid "Using PulseAudio allows you to run several sound-producing applications at the same time and to individual control them @i{via} @command{pavucontrol}, among other things." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20967 +#: guix-git/doc/guix.texi:21329 #, no-wrap msgid "@code{extra-options} (default: @var{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20969 +#: guix-git/doc/guix.texi:21331 msgid "String to append to the @file{/etc/asound.conf} file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20975 +#: guix-git/doc/guix.texi:21337 msgid "Individual users who want to override the system configuration of ALSA can do it with the @file{~/.asoundrc} file:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:20981 +#: guix-git/doc/guix.texi:21343 #, no-wrap msgid "" "# In guix, we have to specify the absolute path for plugins.\n" @@ -37490,7 +38099,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:20990 +#: guix-git/doc/guix.texi:21352 #, no-wrap msgid "" "# Routing ALSA to jack:\n" @@ -37505,7 +38114,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:20996 +#: guix-git/doc/guix.texi:21358 #, no-wrap msgid "" " capture_ports @{\n" @@ -37517,7 +38126,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:21003 +#: guix-git/doc/guix.texi:21365 #, no-wrap msgid "" "pcm.!default @{\n" @@ -37529,104 +38138,104 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21007 +#: guix-git/doc/guix.texi:21369 msgid "See @uref{https://www.alsa-project.org/main/index.php/Asoundrc} for the details." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21008 +#: guix-git/doc/guix.texi:21370 #, no-wrap msgid "{Scheme Variable} pulseaudio-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21012 +#: guix-git/doc/guix.texi:21374 msgid "This is the type for the @uref{https://www.pulseaudio.org/, PulseAudio} sound server. It exists to allow system overrides of the default settings via @code{pulseaudio-configuration}, see below." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:21018 +#: guix-git/doc/guix.texi:21380 msgid "This service overrides per-user configuration files. If you want PulseAudio to honor configuration files in @file{~/.config/pulse} you have to unset the environment variables @env{PULSE_CONFIG} and @env{PULSE_CLIENTCONFIG} in your @file{~/.bash_profile}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:21026 +#: guix-git/doc/guix.texi:21388 msgid "This service on its own does not ensure, that the @code{pulseaudio} package exists on your machine. It merely adds configuration files for it, as detailed below. In the (admittedly unlikely) case, that you find yourself without a @code{pulseaudio} package, consider enabling it through the @code{alsa-service-type} above." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21029 +#: guix-git/doc/guix.texi:21391 #, no-wrap msgid "{Data Type} pulseaudio-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21031 +#: guix-git/doc/guix.texi:21393 msgid "Data type representing the configuration for @code{pulseaudio-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21033 +#: guix-git/doc/guix.texi:21395 #, no-wrap msgid "@code{client-conf} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21038 -msgid "List of settings to set in @file{client.conf}. Accepts a list of strings or a symbol-value pairs. A string will be inserted as-is with a newline added. A pair will be formatted as ``key = value'', again with a newline added." +#: guix-git/doc/guix.texi:21400 +msgid "List of settings to set in @file{client.conf}. Accepts a list of strings or symbol-value pairs. A string will be inserted as-is with a newline added. A pair will be formatted as ``key = value'', again with a newline added." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21039 +#: guix-git/doc/guix.texi:21401 #, no-wrap msgid "@code{daemon-conf} (default: @code{'((flat-volumes . no))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21042 +#: guix-git/doc/guix.texi:21404 msgid "List of settings to set in @file{daemon.conf}, formatted just like @var{client-conf}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21043 +#: guix-git/doc/guix.texi:21405 #, no-wrap msgid "@code{script-file} (default: @code{(file-append pulseaudio \"/etc/pulse/default.pa\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21045 +#: guix-git/doc/guix.texi:21407 msgid "Script file to use as @file{default.pa}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21046 +#: guix-git/doc/guix.texi:21408 #, no-wrap msgid "@code{system-script-file} (default: @code{(file-append pulseaudio \"/etc/pulse/system.pa\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21048 +#: guix-git/doc/guix.texi:21410 msgid "Script file to use as @file{system.pa}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21051 +#: guix-git/doc/guix.texi:21413 #, no-wrap msgid "{Scheme Variable} ladspa-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21054 +#: guix-git/doc/guix.texi:21416 msgid "This service sets the @var{LADSPA_PATH} variable, so that programs, which respect it, e.g. PulseAudio, can load LADSPA plugins." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21057 +#: guix-git/doc/guix.texi:21419 msgid "The following example will setup the service to enable modules from the @code{swh-plugins} package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21061 +#: guix-git/doc/guix.texi:21423 #, no-wrap msgid "" "(service ladspa-service-type\n" @@ -37634,34 +38243,34 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21065 +#: guix-git/doc/guix.texi:21427 msgid "See @uref{http://plugin.org.uk/ladspa-swh/docs/ladspa-swh.html} for the details." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21072 +#: guix-git/doc/guix.texi:21434 #, no-wrap msgid "SQL" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21074 +#: guix-git/doc/guix.texi:21436 msgid "The @code{(gnu services databases)} module provides the following services." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21075 +#: guix-git/doc/guix.texi:21437 #, no-wrap msgid "PostgreSQL" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21079 +#: guix-git/doc/guix.texi:21441 msgid "The following example describes a PostgreSQL service with the default configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21084 +#: guix-git/doc/guix.texi:21446 #, no-wrap msgid "" "(service postgresql-service-type\n" @@ -37670,17 +38279,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21090 +#: guix-git/doc/guix.texi:21452 msgid "If the services fails to start, it may be due to an incompatible cluster already present in @var{data-directory}. Adjust it (or, if you don't need the cluster anymore, delete @var{data-directory}), then restart the service." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21097 +#: guix-git/doc/guix.texi:21459 msgid "Peer authentication is used by default and the @code{postgres} user account has no shell, which prevents the direct execution of @code{psql} commands as this user. To use @code{psql}, you can temporarily log in as @code{postgres} using a shell, create a PostgreSQL superuser with the same name as one of the system users and then create the associated database." msgstr "" #. type: example -#: guix-git/doc/guix.texi:21102 +#: guix-git/doc/guix.texi:21464 #, no-wrap msgid "" "sudo -u postgres -s /bin/sh\n" @@ -37689,101 +38298,101 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21104 +#: guix-git/doc/guix.texi:21466 #, no-wrap msgid "{Data Type} postgresql-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21107 +#: guix-git/doc/guix.texi:21469 msgid "Data type representing the configuration for the @code{postgresql-service-type}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:21109 +#: guix-git/doc/guix.texi:21471 #, no-wrap msgid "postgresql" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21111 +#: guix-git/doc/guix.texi:21473 msgid "PostgreSQL package to use for the service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21112 +#: guix-git/doc/guix.texi:21474 #, no-wrap msgid "@code{port} (default: @code{5432})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21114 +#: guix-git/doc/guix.texi:21476 msgid "Port on which PostgreSQL should listen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21117 +#: guix-git/doc/guix.texi:21479 msgid "Locale to use as the default when creating the database cluster." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21118 +#: guix-git/doc/guix.texi:21480 #, no-wrap msgid "@code{config-file} (default: @code{(postgresql-config-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21122 +#: guix-git/doc/guix.texi:21484 msgid "The configuration file to use when running PostgreSQL@. The default behaviour uses the postgresql-config-file record with the default values for the fields." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21123 +#: guix-git/doc/guix.texi:21485 #, no-wrap msgid "@code{log-directory} (default: @code{\"/var/log/postgresql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21127 +#: guix-git/doc/guix.texi:21489 msgid "The directory where @command{pg_ctl} output will be written in a file named @code{\"pg_ctl.log\"}. This file can be useful to debug PostgreSQL configuration errors for instance." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21128 +#: guix-git/doc/guix.texi:21490 #, no-wrap msgid "@code{data-directory} (default: @code{\"/var/lib/postgresql/data\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21130 +#: guix-git/doc/guix.texi:21492 msgid "Directory in which to store the data." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21131 +#: guix-git/doc/guix.texi:21493 #, no-wrap msgid "@code{extension-packages} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21132 +#: guix-git/doc/guix.texi:21494 #, no-wrap msgid "postgresql extension-packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21137 +#: guix-git/doc/guix.texi:21499 msgid "Additional extensions are loaded from packages listed in @var{extension-packages}. Extensions are available at runtime. For instance, to create a geographic database using the @code{postgis} extension, a user can configure the postgresql-service as in this example:" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21138 +#: guix-git/doc/guix.texi:21500 #, no-wrap msgid "postgis" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21141 +#: guix-git/doc/guix.texi:21503 #, no-wrap msgid "" "(use-package-modules databases geo)\n" @@ -37791,7 +38400,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21154 +#: guix-git/doc/guix.texi:21516 #, no-wrap msgid "" "(operating-system\n" @@ -37809,12 +38418,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21158 +#: guix-git/doc/guix.texi:21520 msgid "Then the extension becomes visible and you can initialise an empty geographic database in this way:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:21165 +#: guix-git/doc/guix.texi:21527 #, no-wrap msgid "" "psql -U postgres\n" @@ -37825,23 +38434,23 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21170 +#: guix-git/doc/guix.texi:21532 msgid "There is no need to add this field for contrib extensions such as hstore or dblink as they are already loadable by postgresql. This field is only required to add extensions provided by other packages." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21174 +#: guix-git/doc/guix.texi:21536 #, no-wrap msgid "{Data Type} postgresql-config-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21180 +#: guix-git/doc/guix.texi:21542 msgid "Data type representing the PostgreSQL configuration file. As shown in the following example, this can be used to customize the configuration of PostgreSQL@. Note that you can use any G-expression or filename in place of this record, if you already have a configuration file you'd like to use for example." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21200 +#: guix-git/doc/guix.texi:21562 #, no-wrap msgid "" "(service postgresql-service-type\n" @@ -37865,77 +38474,77 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:21203 +#: guix-git/doc/guix.texi:21565 #, no-wrap msgid "@code{log-destination} (default: @code{\"syslog\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21206 +#: guix-git/doc/guix.texi:21568 msgid "The logging method to use for PostgreSQL@. Multiple values are accepted, separated by commas." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21207 +#: guix-git/doc/guix.texi:21569 #, no-wrap msgid "@code{hba-file} (default: @code{%default-postgres-hba})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21210 +#: guix-git/doc/guix.texi:21572 msgid "Filename or G-expression for the host-based authentication configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21211 +#: guix-git/doc/guix.texi:21573 #, no-wrap msgid "@code{ident-file} (default: @code{%default-postgres-ident})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21213 +#: guix-git/doc/guix.texi:21575 msgid "Filename or G-expression for the user name mapping configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21214 +#: guix-git/doc/guix.texi:21576 #, no-wrap msgid "@code{socket-directory} (default: @code{\"/var/run/postgresql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21219 +#: guix-git/doc/guix.texi:21581 msgid "Specifies the directory of the Unix-domain socket(s) on which PostgreSQL is to listen for connections from client applications. If set to @code{\"\"} PostgreSQL does not listen on any Unix-domain sockets, in which case only TCP/IP sockets can be used to connect to the server." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21222 +#: guix-git/doc/guix.texi:21584 msgid "By default, the @code{#false} value means the PostgreSQL default value will be used, which is currently @samp{/tmp}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21227 +#: guix-git/doc/guix.texi:21589 msgid "List of additional keys and values to include in the PostgreSQL config file. Each entry in the list should be a list where the first element is the key, and the remaining elements are the values." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21233 +#: guix-git/doc/guix.texi:21595 msgid "The values can be numbers, booleans or strings and will be mapped to PostgreSQL parameters types @code{Boolean}, @code{String}, @code{Numeric}, @code{Numeric with Unit} and @code{Enumerated} described @uref{https://www.postgresql.org/docs/current/config-setting.html, here}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21237 +#: guix-git/doc/guix.texi:21599 #, no-wrap msgid "{Scheme Variable} postgresql-role-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21240 +#: guix-git/doc/guix.texi:21602 msgid "This service allows to create PostgreSQL roles and databases after PostgreSQL service start. Here is an example of its use." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21248 +#: guix-git/doc/guix.texi:21610 #, no-wrap msgid "" "(service postgresql-role-service-type\n" @@ -37947,12 +38556,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21252 +#: guix-git/doc/guix.texi:21614 msgid "This service can be extended with extra roles, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21258 +#: guix-git/doc/guix.texi:21620 #, no-wrap msgid "" "(service-extension postgresql-role-service-type\n" @@ -37962,398 +38571,398 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21261 +#: guix-git/doc/guix.texi:21623 #, no-wrap msgid "{Data Type} postgresql-role" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21267 +#: guix-git/doc/guix.texi:21629 msgid "PostgreSQL manages database access permissions using the concept of roles. A role can be thought of as either a database user, or a group of database users, depending on how the role is set up. Roles can own database objects (for example, tables) and can assign privileges on those objects to other roles to control who has access to which objects." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21271 +#: guix-git/doc/guix.texi:21633 msgid "The role name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21272 +#: guix-git/doc/guix.texi:21634 #, no-wrap msgid "@code{permissions} (default: @code{'(createdb login)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21276 +#: guix-git/doc/guix.texi:21638 msgid "The role permissions list. Supported permissions are @code{bypassrls}, @code{createdb}, @code{createrole}, @code{login}, @code{replication} and @code{superuser}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21277 +#: guix-git/doc/guix.texi:21639 #, no-wrap msgid "@code{create-database?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21279 +#: guix-git/doc/guix.texi:21641 msgid "Whether to create a database with the same name as the role." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21283 +#: guix-git/doc/guix.texi:21645 #, no-wrap msgid "{Data Type} postgresql-role-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21286 +#: guix-git/doc/guix.texi:21648 msgid "Data type representing the configuration of @var{postgresql-role-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21288 +#: guix-git/doc/guix.texi:21650 #, no-wrap msgid "@code{host} (default: @code{\"/var/run/postgresql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21290 +#: guix-git/doc/guix.texi:21652 msgid "The PostgreSQL host to connect to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21291 +#: guix-git/doc/guix.texi:21653 #, no-wrap msgid "@code{log} (default: @code{\"/var/log/postgresql_roles.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21293 +#: guix-git/doc/guix.texi:21655 msgid "File name of the log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21294 +#: guix-git/doc/guix.texi:21656 #, no-wrap msgid "@code{roles} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21296 +#: guix-git/doc/guix.texi:21658 msgid "The initial PostgreSQL roles to create." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21299 +#: guix-git/doc/guix.texi:21661 #, no-wrap msgid "MariaDB/MySQL" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21301 +#: guix-git/doc/guix.texi:21663 #, no-wrap msgid "{Scheme Variable} mysql-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21305 +#: guix-git/doc/guix.texi:21667 msgid "This is the service type for a MySQL or MariaDB database server. Its value is a @code{mysql-configuration} object that specifies which package to use, as well as various settings for the @command{mysqld} daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21307 +#: guix-git/doc/guix.texi:21669 #, no-wrap msgid "{Data Type} mysql-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21309 +#: guix-git/doc/guix.texi:21671 msgid "Data type representing the configuration of @var{mysql-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21311 +#: guix-git/doc/guix.texi:21673 #, no-wrap msgid "@code{mysql} (default: @var{mariadb})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21314 +#: guix-git/doc/guix.texi:21676 msgid "Package object of the MySQL database server, can be either @var{mariadb} or @var{mysql}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21317 +#: guix-git/doc/guix.texi:21679 msgid "For MySQL, a temporary root password will be displayed at activation time. For MariaDB, the root password is empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21318 guix-git/doc/guix.texi:25138 +#: guix-git/doc/guix.texi:21680 guix-git/doc/guix.texi:25500 #, no-wrap msgid "@code{bind-address} (default: @code{\"127.0.0.1\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21321 +#: guix-git/doc/guix.texi:21683 msgid "The IP on which to listen for network connections. Use @code{\"0.0.0.0\"} to bind to all available network interfaces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21322 +#: guix-git/doc/guix.texi:21684 #, no-wrap msgid "@code{port} (default: @code{3306})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21324 +#: guix-git/doc/guix.texi:21686 msgid "TCP port on which the database server listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21325 +#: guix-git/doc/guix.texi:21687 #, no-wrap msgid "@code{socket} (default: @code{\"/run/mysqld/mysqld.sock\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21327 +#: guix-git/doc/guix.texi:21689 msgid "Socket file to use for local (non-network) connections." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21330 +#: guix-git/doc/guix.texi:21692 msgid "Additional settings for the @file{my.cnf} configuration file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21331 +#: guix-git/doc/guix.texi:21693 #, no-wrap msgid "@code{extra-environment} (default: @code{#~'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21333 +#: guix-git/doc/guix.texi:21695 msgid "List of environment variables passed to the @command{mysqld} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21334 +#: guix-git/doc/guix.texi:21696 #, no-wrap msgid "@code{auto-upgrade?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21339 +#: guix-git/doc/guix.texi:21701 msgid "Whether to automatically run @command{mysql_upgrade} after starting the service. This is necessary to upgrade the @dfn{system schema} after ``major'' updates (such as switching from MariaDB 10.4 to 10.5), but can be disabled if you would rather do that manually." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21343 +#: guix-git/doc/guix.texi:21705 #, no-wrap msgid "Memcached" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21345 +#: guix-git/doc/guix.texi:21707 #, no-wrap msgid "{Scheme Variable} memcached-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21349 +#: guix-git/doc/guix.texi:21711 msgid "This is the service type for the @uref{https://memcached.org/, Memcached} service, which provides a distributed in memory cache. The value for the service type is a @code{memcached-configuration} object." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21353 +#: guix-git/doc/guix.texi:21715 #, no-wrap msgid "(service memcached-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21355 +#: guix-git/doc/guix.texi:21717 #, no-wrap msgid "{Data Type} memcached-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21357 +#: guix-git/doc/guix.texi:21719 msgid "Data type representing the configuration of memcached." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21359 +#: guix-git/doc/guix.texi:21721 #, no-wrap msgid "@code{memcached} (default: @code{memcached})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21361 +#: guix-git/doc/guix.texi:21723 msgid "The Memcached package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21362 +#: guix-git/doc/guix.texi:21724 #, no-wrap msgid "@code{interfaces} (default: @code{'(\"0.0.0.0\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21364 +#: guix-git/doc/guix.texi:21726 msgid "Network interfaces on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21365 +#: guix-git/doc/guix.texi:21727 #, no-wrap msgid "@code{tcp-port} (default: @code{11211})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21367 +#: guix-git/doc/guix.texi:21729 msgid "Port on which to accept connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21368 +#: guix-git/doc/guix.texi:21730 #, no-wrap msgid "@code{udp-port} (default: @code{11211})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21371 +#: guix-git/doc/guix.texi:21733 msgid "Port on which to accept UDP connections on, a value of 0 will disable listening on a UDP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21372 +#: guix-git/doc/guix.texi:21734 #, no-wrap msgid "@code{additional-options} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21374 +#: guix-git/doc/guix.texi:21736 msgid "Additional command line options to pass to @code{memcached}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21377 +#: guix-git/doc/guix.texi:21739 #, no-wrap msgid "Redis" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21379 +#: guix-git/doc/guix.texi:21741 #, no-wrap msgid "{Scheme Variable} redis-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21382 +#: guix-git/doc/guix.texi:21744 msgid "This is the service type for the @uref{https://redis.io/, Redis} key/value store, whose value is a @code{redis-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21384 +#: guix-git/doc/guix.texi:21746 #, no-wrap msgid "{Data Type} redis-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21386 +#: guix-git/doc/guix.texi:21748 msgid "Data type representing the configuration of redis." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21388 +#: guix-git/doc/guix.texi:21750 #, no-wrap msgid "@code{redis} (default: @code{redis})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21390 +#: guix-git/doc/guix.texi:21752 msgid "The Redis package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21391 +#: guix-git/doc/guix.texi:21753 #, no-wrap msgid "@code{bind} (default: @code{\"127.0.0.1\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21393 +#: guix-git/doc/guix.texi:21755 msgid "Network interface on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21394 +#: guix-git/doc/guix.texi:21756 #, no-wrap msgid "@code{port} (default: @code{6379})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21397 +#: guix-git/doc/guix.texi:21759 msgid "Port on which to accept connections on, a value of 0 will disable listening on a TCP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21398 +#: guix-git/doc/guix.texi:21760 #, no-wrap msgid "@code{working-directory} (default: @code{\"/var/lib/redis\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21400 +#: guix-git/doc/guix.texi:21762 msgid "Directory in which to store the database and related files." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21406 +#: guix-git/doc/guix.texi:21768 #, no-wrap msgid "mail" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21407 +#: guix-git/doc/guix.texi:21769 #, no-wrap msgid "email" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21412 +#: guix-git/doc/guix.texi:21774 msgid "The @code{(gnu services mail)} module provides Guix service definitions for email services: IMAP, POP3, and LMTP servers, as well as mail transport agents (MTAs). Lots of acronyms! These services are detailed in the subsections below." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21413 +#: guix-git/doc/guix.texi:21775 #, no-wrap msgid "Dovecot Service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21415 +#: guix-git/doc/guix.texi:21777 #, no-wrap msgid "{Scheme Procedure} dovecot-service [#:config (dovecot-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21417 +#: guix-git/doc/guix.texi:21779 msgid "Return a service that runs the Dovecot IMAP/POP3/LMTP mail server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21427 +#: guix-git/doc/guix.texi:21789 msgid "By default, Dovecot does not need much configuration; the default configuration object created by @code{(dovecot-configuration)} will suffice if your mail is delivered to @code{~/Maildir}. A self-signed certificate will be generated for TLS-protected connections, though Dovecot will also listen on cleartext ports by default. There are a number of options, though, which mail administrators might need to change, and as is the case with other services, Guix allows the system administrator to specify these parameters via a uniform Scheme interface." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21430 +#: guix-git/doc/guix.texi:21792 msgid "For example, to specify that mail is located at @code{maildir~/.mail}, one would instantiate the Dovecot service like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21435 +#: guix-git/doc/guix.texi:21797 #, no-wrap msgid "" "(dovecot-service #:config\n" @@ -38362,2433 +38971,2433 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21443 +#: guix-git/doc/guix.texi:21805 msgid "The available configuration parameters follow. Each parameter definition is preceded by its type; for example, @samp{string-list foo} indicates that the @code{foo} parameter should be specified as a list of strings. There is also a way to specify the configuration as a string, if you have an old @code{dovecot.conf} file that you want to port over from some other system; see the end for more details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21453 +#: guix-git/doc/guix.texi:21815 msgid "Available @code{dovecot-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21454 +#: guix-git/doc/guix.texi:21816 #, no-wrap msgid "{@code{dovecot-configuration} parameter} package dovecot" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21456 guix-git/doc/guix.texi:22805 +#: guix-git/doc/guix.texi:21818 guix-git/doc/guix.texi:23167 msgid "The dovecot package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21458 +#: guix-git/doc/guix.texi:21820 #, no-wrap msgid "{@code{dovecot-configuration} parameter} comma-separated-string-list listen" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21464 +#: guix-git/doc/guix.texi:21826 msgid "A list of IPs or hosts where to listen for connections. @samp{*} listens on all IPv4 interfaces, @samp{::} listens on all IPv6 interfaces. If you want to specify non-default ports or anything more complex, customize the address and port fields of the @samp{inet-listener} of the specific services you are interested in." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21466 +#: guix-git/doc/guix.texi:21828 #, no-wrap msgid "{@code{dovecot-configuration} parameter} protocol-configuration-list protocols" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21469 +#: guix-git/doc/guix.texi:21831 msgid "List of protocols we want to serve. Available protocols include @samp{imap}, @samp{pop3}, and @samp{lmtp}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21471 +#: guix-git/doc/guix.texi:21833 msgid "Available @code{protocol-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21472 +#: guix-git/doc/guix.texi:21834 #, no-wrap msgid "{@code{protocol-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21474 +#: guix-git/doc/guix.texi:21836 msgid "The name of the protocol." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21476 +#: guix-git/doc/guix.texi:21838 #, no-wrap msgid "{@code{protocol-configuration} parameter} string auth-socket-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21480 +#: guix-git/doc/guix.texi:21842 msgid "UNIX socket path to the master authentication server to find users. This is used by imap (for shared users) and lda. It defaults to @samp{\"/var/run/dovecot/auth-userdb\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21482 +#: guix-git/doc/guix.texi:21844 #, no-wrap msgid "{@code{protocol-configuration} parameter} boolean imap-metadata?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21487 +#: guix-git/doc/guix.texi:21849 msgid "Whether to enable the @code{IMAP METADATA} extension as defined in @uref{https://tools.ietf.org/html/rfc5464,RFC@tie{}5464}, which provides a means for clients to set and retrieve per-mailbox, per-user metadata and annotations over IMAP." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21490 +#: guix-git/doc/guix.texi:21852 msgid "If this is @samp{#t}, you must also specify a dictionary @i{via} the @code{mail-attribute-dict} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21495 +#: guix-git/doc/guix.texi:21857 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list managesieve-notify-capabilities" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21500 +#: guix-git/doc/guix.texi:21862 msgid "Which NOTIFY capabilities to report to clients that first connect to the ManageSieve service, before authentication. These may differ from the capabilities offered to authenticated users. If this field is left empty, report what the Sieve interpreter supports by default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21504 +#: guix-git/doc/guix.texi:21866 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list managesieve-sieve-capability" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21509 +#: guix-git/doc/guix.texi:21871 msgid "Which SIEVE capabilities to report to clients that first connect to the ManageSieve service, before authentication. These may differ from the capabilities offered to authenticated users. If this field is left empty, report what the Sieve interpreter supports by default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21514 +#: guix-git/doc/guix.texi:21876 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list mail-plugins" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21516 +#: guix-git/doc/guix.texi:21878 msgid "Space separated list of plugins to load." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21518 +#: guix-git/doc/guix.texi:21880 #, no-wrap msgid "{@code{protocol-configuration} parameter} non-negative-integer mail-max-userip-connections" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21522 +#: guix-git/doc/guix.texi:21884 msgid "Maximum number of IMAP connections allowed for a user from each IP address. NOTE: The username is compared case-sensitively. Defaults to @samp{10}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21526 +#: guix-git/doc/guix.texi:21888 #, no-wrap msgid "{@code{dovecot-configuration} parameter} service-configuration-list services" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21530 +#: guix-git/doc/guix.texi:21892 msgid "List of services to enable. Available services include @samp{imap}, @samp{imap-login}, @samp{pop3}, @samp{pop3-login}, @samp{auth}, and @samp{lmtp}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21532 +#: guix-git/doc/guix.texi:21894 msgid "Available @code{service-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21533 +#: guix-git/doc/guix.texi:21895 #, no-wrap msgid "{@code{service-configuration} parameter} string kind" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21538 +#: guix-git/doc/guix.texi:21900 msgid "The service kind. Valid values include @code{director}, @code{imap-login}, @code{pop3-login}, @code{lmtp}, @code{imap}, @code{pop3}, @code{auth}, @code{auth-worker}, @code{dict}, @code{tcpwrap}, @code{quota-warning}, or anything else." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21540 +#: guix-git/doc/guix.texi:21902 #, no-wrap msgid "{@code{service-configuration} parameter} listener-configuration-list listeners" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21545 +#: guix-git/doc/guix.texi:21907 msgid "Listeners for the service. A listener is either a @code{unix-listener-configuration}, a @code{fifo-listener-configuration}, or an @code{inet-listener-configuration}. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21547 +#: guix-git/doc/guix.texi:21909 msgid "Available @code{unix-listener-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21548 +#: guix-git/doc/guix.texi:21910 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21551 guix-git/doc/guix.texi:21574 +#: guix-git/doc/guix.texi:21913 guix-git/doc/guix.texi:21936 msgid "Path to the file, relative to @code{base-dir} field. This is also used as the section name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21553 +#: guix-git/doc/guix.texi:21915 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string mode" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21556 guix-git/doc/guix.texi:21579 +#: guix-git/doc/guix.texi:21918 guix-git/doc/guix.texi:21941 msgid "The access mode for the socket. Defaults to @samp{\"0600\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21558 +#: guix-git/doc/guix.texi:21920 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21561 guix-git/doc/guix.texi:21584 +#: guix-git/doc/guix.texi:21923 guix-git/doc/guix.texi:21946 msgid "The user to own the socket. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21563 +#: guix-git/doc/guix.texi:21925 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21566 guix-git/doc/guix.texi:21589 +#: guix-git/doc/guix.texi:21928 guix-git/doc/guix.texi:21951 msgid "The group to own the socket. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21570 +#: guix-git/doc/guix.texi:21932 msgid "Available @code{fifo-listener-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21571 +#: guix-git/doc/guix.texi:21933 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21576 +#: guix-git/doc/guix.texi:21938 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string mode" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21581 +#: guix-git/doc/guix.texi:21943 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21586 +#: guix-git/doc/guix.texi:21948 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21593 +#: guix-git/doc/guix.texi:21955 msgid "Available @code{inet-listener-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21594 +#: guix-git/doc/guix.texi:21956 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} string protocol" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21596 +#: guix-git/doc/guix.texi:21958 msgid "The protocol to listen for." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21598 +#: guix-git/doc/guix.texi:21960 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} string address" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21601 +#: guix-git/doc/guix.texi:21963 msgid "The address on which to listen, or empty for all addresses. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21603 +#: guix-git/doc/guix.texi:21965 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} non-negative-integer port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21605 +#: guix-git/doc/guix.texi:21967 msgid "The port on which to listen." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21607 +#: guix-git/doc/guix.texi:21969 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} boolean ssl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21611 +#: guix-git/doc/guix.texi:21973 msgid "Whether to use SSL for this service; @samp{yes}, @samp{no}, or @samp{required}. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21615 +#: guix-git/doc/guix.texi:21977 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer client-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21620 +#: guix-git/doc/guix.texi:21982 msgid "Maximum number of simultaneous client connections per process. Once this number of connections is received, the next incoming connection will prompt Dovecot to spawn another process. If set to 0, @code{default-client-limit} is used instead." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21625 +#: guix-git/doc/guix.texi:21987 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer service-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21630 +#: guix-git/doc/guix.texi:21992 msgid "Number of connections to handle before starting a new process. Typically the only useful values are 0 (unlimited) or 1. 1 is more secure, but 0 is faster. . Defaults to @samp{1}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21633 +#: guix-git/doc/guix.texi:21995 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer process-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21636 +#: guix-git/doc/guix.texi:21998 msgid "Maximum number of processes that can exist for this service. If set to 0, @code{default-process-limit} is used instead." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21641 +#: guix-git/doc/guix.texi:22003 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer process-min-avail" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21644 +#: guix-git/doc/guix.texi:22006 msgid "Number of processes to always keep waiting for more connections. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21646 +#: guix-git/doc/guix.texi:22008 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer vsz-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21650 +#: guix-git/doc/guix.texi:22012 msgid "If you set @samp{service-count 0}, you probably need to grow this. Defaults to @samp{256000000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21654 +#: guix-git/doc/guix.texi:22016 #, no-wrap msgid "{@code{dovecot-configuration} parameter} dict-configuration dict" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21657 +#: guix-git/doc/guix.texi:22019 msgid "Dict configuration, as created by the @code{dict-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21659 +#: guix-git/doc/guix.texi:22021 msgid "Available @code{dict-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21660 +#: guix-git/doc/guix.texi:22022 #, no-wrap msgid "{@code{dict-configuration} parameter} free-form-fields entries" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21663 +#: guix-git/doc/guix.texi:22025 msgid "A list of key-value pairs that this dict should hold. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21667 +#: guix-git/doc/guix.texi:22029 #, no-wrap msgid "{@code{dovecot-configuration} parameter} passdb-configuration-list passdbs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21670 +#: guix-git/doc/guix.texi:22032 msgid "A list of passdb configurations, each one created by the @code{passdb-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21672 +#: guix-git/doc/guix.texi:22034 msgid "Available @code{passdb-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21673 +#: guix-git/doc/guix.texi:22035 #, no-wrap msgid "{@code{passdb-configuration} parameter} string driver" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21678 +#: guix-git/doc/guix.texi:22040 msgid "The driver that the passdb should use. Valid values include @samp{pam}, @samp{passwd}, @samp{shadow}, @samp{bsdauth}, and @samp{static}. Defaults to @samp{\"pam\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21680 +#: guix-git/doc/guix.texi:22042 #, no-wrap msgid "{@code{passdb-configuration} parameter} space-separated-string-list args" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21683 +#: guix-git/doc/guix.texi:22045 msgid "Space separated list of arguments to the passdb driver. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21687 +#: guix-git/doc/guix.texi:22049 #, no-wrap msgid "{@code{dovecot-configuration} parameter} userdb-configuration-list userdbs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21690 +#: guix-git/doc/guix.texi:22052 msgid "List of userdb configurations, each one created by the @code{userdb-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21692 +#: guix-git/doc/guix.texi:22054 msgid "Available @code{userdb-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21693 +#: guix-git/doc/guix.texi:22055 #, no-wrap msgid "{@code{userdb-configuration} parameter} string driver" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21697 +#: guix-git/doc/guix.texi:22059 msgid "The driver that the userdb should use. Valid values include @samp{passwd} and @samp{static}. Defaults to @samp{\"passwd\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21699 +#: guix-git/doc/guix.texi:22061 #, no-wrap msgid "{@code{userdb-configuration} parameter} space-separated-string-list args" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21702 +#: guix-git/doc/guix.texi:22064 msgid "Space separated list of arguments to the userdb driver. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21704 +#: guix-git/doc/guix.texi:22066 #, no-wrap msgid "{@code{userdb-configuration} parameter} free-form-args override-fields" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21707 +#: guix-git/doc/guix.texi:22069 msgid "Override fields from passwd. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21711 +#: guix-git/doc/guix.texi:22073 #, no-wrap msgid "{@code{dovecot-configuration} parameter} plugin-configuration plugin-configuration" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21714 +#: guix-git/doc/guix.texi:22076 msgid "Plug-in configuration, created by the @code{plugin-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21716 +#: guix-git/doc/guix.texi:22078 #, no-wrap msgid "{@code{dovecot-configuration} parameter} list-of-namespace-configuration namespaces" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21719 +#: guix-git/doc/guix.texi:22081 msgid "List of namespaces. Each item in the list is created by the @code{namespace-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21721 +#: guix-git/doc/guix.texi:22083 msgid "Available @code{namespace-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21722 +#: guix-git/doc/guix.texi:22084 #, no-wrap msgid "{@code{namespace-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21724 +#: guix-git/doc/guix.texi:22086 msgid "Name for this namespace." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21726 +#: guix-git/doc/guix.texi:22088 #, no-wrap msgid "{@code{namespace-configuration} parameter} string type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21729 +#: guix-git/doc/guix.texi:22091 msgid "Namespace type: @samp{private}, @samp{shared} or @samp{public}. Defaults to @samp{\"private\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21731 +#: guix-git/doc/guix.texi:22093 #, no-wrap msgid "{@code{namespace-configuration} parameter} string separator" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21737 +#: guix-git/doc/guix.texi:22099 msgid "Hierarchy separator to use. You should use the same separator for all namespaces or some clients get confused. @samp{/} is usually a good one. The default however depends on the underlying mail storage format. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21739 +#: guix-git/doc/guix.texi:22101 #, no-wrap msgid "{@code{namespace-configuration} parameter} string prefix" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21743 +#: guix-git/doc/guix.texi:22105 msgid "Prefix required to access this namespace. This needs to be different for all namespaces. For example @samp{Public/}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21745 +#: guix-git/doc/guix.texi:22107 #, no-wrap msgid "{@code{namespace-configuration} parameter} string location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21749 +#: guix-git/doc/guix.texi:22111 msgid "Physical location of the mailbox. This is in the same format as mail_location, which is also the default for it. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21751 +#: guix-git/doc/guix.texi:22113 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean inbox?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21755 +#: guix-git/doc/guix.texi:22117 msgid "There can be only one INBOX, and this setting defines which namespace has it. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21757 +#: guix-git/doc/guix.texi:22119 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean hidden?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21765 +#: guix-git/doc/guix.texi:22127 msgid "If namespace is hidden, it's not advertised to clients via NAMESPACE extension. You'll most likely also want to set @samp{list? #f}. This is mostly useful when converting from another server with different namespaces which you want to deprecate but still keep working. For example you can create hidden namespaces with prefixes @samp{~/mail/}, @samp{~%u/mail/} and @samp{mail/}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21767 +#: guix-git/doc/guix.texi:22129 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean list?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21773 +#: guix-git/doc/guix.texi:22135 msgid "Show the mailboxes under this namespace with the LIST command. This makes the namespace visible for clients that do not support the NAMESPACE extension. The special @code{children} value lists child mailboxes, but hides the namespace prefix. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21775 +#: guix-git/doc/guix.texi:22137 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean subscriptions?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21780 +#: guix-git/doc/guix.texi:22142 msgid "Namespace handles its own subscriptions. If set to @code{#f}, the parent namespace handles them. The empty prefix should always have this as @code{#t}). Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21782 +#: guix-git/doc/guix.texi:22144 #, no-wrap msgid "{@code{namespace-configuration} parameter} mailbox-configuration-list mailboxes" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21785 +#: guix-git/doc/guix.texi:22147 msgid "List of predefined mailboxes in this namespace. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21787 +#: guix-git/doc/guix.texi:22149 msgid "Available @code{mailbox-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21788 +#: guix-git/doc/guix.texi:22150 #, no-wrap msgid "{@code{mailbox-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21790 +#: guix-git/doc/guix.texi:22152 msgid "Name for this mailbox." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21792 +#: guix-git/doc/guix.texi:22154 #, no-wrap msgid "{@code{mailbox-configuration} parameter} string auto" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21796 +#: guix-git/doc/guix.texi:22158 msgid "@samp{create} will automatically create this mailbox. @samp{subscribe} will both create and subscribe to the mailbox. Defaults to @samp{\"no\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21798 +#: guix-git/doc/guix.texi:22160 #, no-wrap msgid "{@code{mailbox-configuration} parameter} space-separated-string-list special-use" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21803 +#: guix-git/doc/guix.texi:22165 msgid "List of IMAP @code{SPECIAL-USE} attributes as specified by RFC 6154. Valid values are @code{\\All}, @code{\\Archive}, @code{\\Drafts}, @code{\\Flagged}, @code{\\Junk}, @code{\\Sent}, and @code{\\Trash}. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21809 +#: guix-git/doc/guix.texi:22171 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name base-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21812 +#: guix-git/doc/guix.texi:22174 msgid "Base directory where to store runtime data. Defaults to @samp{\"/var/run/dovecot/\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21814 +#: guix-git/doc/guix.texi:22176 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string login-greeting" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21817 +#: guix-git/doc/guix.texi:22179 msgid "Greeting message for clients. Defaults to @samp{\"Dovecot ready.\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21819 +#: guix-git/doc/guix.texi:22181 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-trusted-networks" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21826 +#: guix-git/doc/guix.texi:22188 msgid "List of trusted network ranges. Connections from these IPs are allowed to override their IP addresses and ports (for logging and for authentication checks). @samp{disable-plaintext-auth} is also ignored for these networks. Typically you would specify your IMAP proxy servers here. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21828 +#: guix-git/doc/guix.texi:22190 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-access-sockets" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21831 +#: guix-git/doc/guix.texi:22193 msgid "List of login access check sockets (e.g.@: tcpwrap). Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21833 +#: guix-git/doc/guix.texi:22195 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean verbose-proctitle?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21839 +#: guix-git/doc/guix.texi:22201 msgid "Show more verbose process titles (in ps). Currently shows user name and IP address. Useful for seeing who is actually using the IMAP processes (e.g.@: shared mailboxes or if the same uid is used for multiple accounts). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21841 +#: guix-git/doc/guix.texi:22203 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean shutdown-clients?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21847 +#: guix-git/doc/guix.texi:22209 msgid "Should all processes be killed when Dovecot master process shuts down. Setting this to @code{#f} means that Dovecot can be upgraded without forcing existing client connections to close (although that could also be a problem if the upgrade is e.g.@: due to a security fix). Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21849 +#: guix-git/doc/guix.texi:22211 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer doveadm-worker-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21853 +#: guix-git/doc/guix.texi:22215 msgid "If non-zero, run mail commands via this many connections to doveadm server, instead of running them directly in the same process. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21855 +#: guix-git/doc/guix.texi:22217 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string doveadm-socket-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21858 +#: guix-git/doc/guix.texi:22220 msgid "UNIX socket or host:port used for connecting to doveadm server. Defaults to @samp{\"doveadm-server\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21860 +#: guix-git/doc/guix.texi:22222 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list import-environment" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21864 +#: guix-git/doc/guix.texi:22226 msgid "List of environment variables that are preserved on Dovecot startup and passed down to all of its child processes. You can also give key=value pairs to always set specific settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21866 +#: guix-git/doc/guix.texi:22228 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean disable-plaintext-auth?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21873 +#: guix-git/doc/guix.texi:22235 msgid "Disable LOGIN command and all other plaintext authentications unless SSL/TLS is used (LOGINDISABLED capability). Note that if the remote IP matches the local IP (i.e.@: you're connecting from the same computer), the connection is considered secure and plaintext authentication is allowed. See also ssl=required setting. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21875 +#: guix-git/doc/guix.texi:22237 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer auth-cache-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21880 +#: guix-git/doc/guix.texi:22242 msgid "Authentication cache size (e.g.@: @samp{#e10e6}). 0 means it's disabled. Note that bsdauth, PAM and vpopmail require @samp{cache-key} to be set for caching to be used. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21882 +#: guix-git/doc/guix.texi:22244 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-cache-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21890 +#: guix-git/doc/guix.texi:22252 msgid "Time to live for cached data. After TTL expires the cached record is no longer used, *except* if the main database lookup returns internal failure. We also try to handle password changes automatically: If user's previous authentication was successful, but this one wasn't, the cache isn't used. For now this works only with plaintext authentication. Defaults to @samp{\"1 hour\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21892 +#: guix-git/doc/guix.texi:22254 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-cache-negative-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21896 +#: guix-git/doc/guix.texi:22258 msgid "TTL for negative hits (user not found, password mismatch). 0 disables caching them completely. Defaults to @samp{\"1 hour\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21898 +#: guix-git/doc/guix.texi:22260 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list auth-realms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21904 +#: guix-git/doc/guix.texi:22266 msgid "List of realms for SASL authentication mechanisms that need them. You can leave it empty if you don't want to support multiple realms. Many clients simply use the first one listed here, so keep the default realm first. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21906 +#: guix-git/doc/guix.texi:22268 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-default-realm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21911 +#: guix-git/doc/guix.texi:22273 msgid "Default realm/domain to use if none was specified. This is used for both SASL realms and appending @@domain to username in plaintext logins. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21913 +#: guix-git/doc/guix.texi:22275 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-chars" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21920 +#: guix-git/doc/guix.texi:22282 msgid "List of allowed characters in username. If the user-given username contains a character not listed in here, the login automatically fails. This is just an extra check to make sure user can't exploit any potential quote escaping vulnerabilities with SQL/LDAP databases. If you want to allow all characters, set this value to empty. Defaults to @samp{\"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@@\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21922 +#: guix-git/doc/guix.texi:22284 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-translation" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21928 +#: guix-git/doc/guix.texi:22290 msgid "Username character translations before it's looked up from databases. The value contains series of from -> to characters. For example @samp{#@@/@@} means that @samp{#} and @samp{/} characters are translated to @samp{@@}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21930 +#: guix-git/doc/guix.texi:22292 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21937 +#: guix-git/doc/guix.texi:22299 msgid "Username formatting before it's looked up from databases. You can use the standard variables here, e.g.@: %Lu would lowercase the username, %n would drop away the domain if it was given, or @samp{%n-AT-%d} would change the @samp{@@} into @samp{-AT-}. This translation is done after @samp{auth-username-translation} changes. Defaults to @samp{\"%Lu\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21939 +#: guix-git/doc/guix.texi:22301 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-master-user-separator" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21947 +#: guix-git/doc/guix.texi:22309 msgid "If you want to allow master users to log in by specifying the master username within the normal username string (i.e.@: not using SASL mechanism's support for it), you can specify the separator character here. The format is then . UW-IMAP uses @samp{*} as the separator, so that could be a good choice. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21949 +#: guix-git/doc/guix.texi:22311 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-anonymous-username" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21953 +#: guix-git/doc/guix.texi:22315 msgid "Username to use for users logging in with ANONYMOUS SASL mechanism. Defaults to @samp{\"anonymous\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21955 +#: guix-git/doc/guix.texi:22317 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer auth-worker-max-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21960 +#: guix-git/doc/guix.texi:22322 msgid "Maximum number of dovecot-auth worker processes. They're used to execute blocking passdb and userdb queries (e.g.@: MySQL and PAM). They're automatically created and destroyed as needed. Defaults to @samp{30}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21962 +#: guix-git/doc/guix.texi:22324 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-gssapi-hostname" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21967 +#: guix-git/doc/guix.texi:22329 msgid "Host name to use in GSSAPI principal names. The default is to use the name returned by gethostname(). Use @samp{$ALL} (with quotes) to allow all keytab entries. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21969 +#: guix-git/doc/guix.texi:22331 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-krb5-keytab" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21975 +#: guix-git/doc/guix.texi:22337 msgid "Kerberos keytab to use for the GSSAPI mechanism. Will use the system default (usually @file{/etc/krb5.keytab}) if not specified. You may need to change the auth service to run as root to be able to read this file. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21977 +#: guix-git/doc/guix.texi:22339 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-use-winbind?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21982 +#: guix-git/doc/guix.texi:22344 msgid "Do NTLM and GSS-SPNEGO authentication using Samba's winbind daemon and @samp{ntlm-auth} helper. . Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21984 +#: guix-git/doc/guix.texi:22346 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name auth-winbind-helper-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21987 +#: guix-git/doc/guix.texi:22349 msgid "Path for Samba's @samp{ntlm-auth} helper binary. Defaults to @samp{\"/usr/bin/ntlm_auth\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21989 +#: guix-git/doc/guix.texi:22351 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-failure-delay" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21992 +#: guix-git/doc/guix.texi:22354 msgid "Time to delay before replying to failed authentications. Defaults to @samp{\"2 secs\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21994 +#: guix-git/doc/guix.texi:22356 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-ssl-require-client-cert?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21998 +#: guix-git/doc/guix.texi:22360 msgid "Require a valid SSL client certificate or the authentication fails. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22000 +#: guix-git/doc/guix.texi:22362 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-ssl-username-from-cert?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22005 +#: guix-git/doc/guix.texi:22367 msgid "Take the username from client's SSL certificate, using @code{X509_NAME_get_text_by_NID()} which returns the subject's DN's CommonName. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22007 +#: guix-git/doc/guix.texi:22369 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list auth-mechanisms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22013 +#: guix-git/doc/guix.texi:22375 msgid "List of wanted authentication mechanisms. Supported mechanisms are: @samp{plain}, @samp{login}, @samp{digest-md5}, @samp{cram-md5}, @samp{ntlm}, @samp{rpa}, @samp{apop}, @samp{anonymous}, @samp{gssapi}, @samp{otp}, @samp{skey}, and @samp{gss-spnego}. NOTE: See also @samp{disable-plaintext-auth} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22015 +#: guix-git/doc/guix.texi:22377 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list director-servers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22020 +#: guix-git/doc/guix.texi:22382 msgid "List of IPs or hostnames to all director servers, including ourself. Ports can be specified as ip:port. The default port is the same as what director service's @samp{inet-listener} is using. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22022 +#: guix-git/doc/guix.texi:22384 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list director-mail-servers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22026 +#: guix-git/doc/guix.texi:22388 msgid "List of IPs or hostnames to all backend mail servers. Ranges are allowed too, like 10.0.0.10-10.0.0.30. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22028 +#: guix-git/doc/guix.texi:22390 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string director-user-expire" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22032 +#: guix-git/doc/guix.texi:22394 msgid "How long to redirect users to a specific server after it no longer has any connections. Defaults to @samp{\"15 min\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22034 +#: guix-git/doc/guix.texi:22396 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string director-username-hash" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22039 +#: guix-git/doc/guix.texi:22401 msgid "How the username is translated before being hashed. Useful values include %Ln if user can log in with or without @@domain, %Ld if mailboxes are shared within domain. Defaults to @samp{\"%Lu\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22041 +#: guix-git/doc/guix.texi:22403 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string log-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22045 +#: guix-git/doc/guix.texi:22407 msgid "Log file to use for error messages. @samp{syslog} logs to syslog, @samp{/dev/stderr} logs to stderr. Defaults to @samp{\"syslog\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22047 +#: guix-git/doc/guix.texi:22409 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string info-log-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22051 +#: guix-git/doc/guix.texi:22413 msgid "Log file to use for informational messages. Defaults to @samp{log-path}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22053 +#: guix-git/doc/guix.texi:22415 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string debug-log-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22057 +#: guix-git/doc/guix.texi:22419 msgid "Log file to use for debug messages. Defaults to @samp{info-log-path}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22059 +#: guix-git/doc/guix.texi:22421 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string syslog-facility" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22064 +#: guix-git/doc/guix.texi:22426 msgid "Syslog facility to use if you're logging to syslog. Usually if you don't want to use @samp{mail}, you'll use local0..local7. Also other standard facilities are supported. Defaults to @samp{\"mail\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22066 +#: guix-git/doc/guix.texi:22428 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-verbose?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22070 +#: guix-git/doc/guix.texi:22432 msgid "Log unsuccessful authentication attempts and the reasons why they failed. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22072 +#: guix-git/doc/guix.texi:22434 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-verbose-passwords" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22079 +#: guix-git/doc/guix.texi:22441 msgid "In case of password mismatches, log the attempted password. Valid values are no, plain and sha1. sha1 can be useful for detecting brute force password attempts vs. user simply trying the same password over and over again. You can also truncate the value to n chars by appending \":n\" (e.g.@: sha1:6). Defaults to @samp{\"no\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22081 +#: guix-git/doc/guix.texi:22443 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-debug?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22085 +#: guix-git/doc/guix.texi:22447 msgid "Even more verbose logging for debugging purposes. Shows for example SQL queries. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22087 +#: guix-git/doc/guix.texi:22449 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-debug-passwords?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22092 +#: guix-git/doc/guix.texi:22454 msgid "In case of password mismatches, log the passwords and used scheme so the problem can be debugged. Enabling this also enables @samp{auth-debug}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22094 +#: guix-git/doc/guix.texi:22456 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-debug?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22098 +#: guix-git/doc/guix.texi:22460 msgid "Enable mail process debugging. This can help you figure out why Dovecot isn't finding your mails. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22100 +#: guix-git/doc/guix.texi:22462 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean verbose-ssl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22103 +#: guix-git/doc/guix.texi:22465 msgid "Show protocol level SSL errors. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22105 +#: guix-git/doc/guix.texi:22467 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string log-timestamp" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22109 +#: guix-git/doc/guix.texi:22471 msgid "Prefix for each line written to log file. % codes are in strftime(3) format. Defaults to @samp{\"\\\"%b %d %H:%M:%S \\\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22111 +#: guix-git/doc/guix.texi:22473 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-log-format-elements" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22115 +#: guix-git/doc/guix.texi:22477 msgid "List of elements we want to log. The elements which have a non-empty variable value are joined together to form a comma-separated string." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22117 +#: guix-git/doc/guix.texi:22479 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string login-log-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22121 +#: guix-git/doc/guix.texi:22483 msgid "Login log format. %s contains @samp{login-log-format-elements} string, %$ contains the data we want to log. Defaults to @samp{\"%$: %s\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22123 +#: guix-git/doc/guix.texi:22485 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-log-prefix" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22127 +#: guix-git/doc/guix.texi:22489 msgid "Log prefix for mail processes. See doc/wiki/Variables.txt for list of possible variables you can use. Defaults to @samp{\"\\\"%s(%u)<%@{pid@}><%@{session@}>: \\\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22129 +#: guix-git/doc/guix.texi:22491 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string deliver-log-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22131 +#: guix-git/doc/guix.texi:22493 msgid "Format to use for logging mail deliveries. You can use variables:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22132 +#: guix-git/doc/guix.texi:22494 #, no-wrap msgid "%$" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22134 +#: guix-git/doc/guix.texi:22496 msgid "Delivery status message (e.g.@: @samp{saved to INBOX})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22134 +#: guix-git/doc/guix.texi:22496 #, no-wrap msgid "%m" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22136 +#: guix-git/doc/guix.texi:22498 msgid "Message-ID" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22136 guix-git/doc/guix.texi:22679 +#: guix-git/doc/guix.texi:22498 guix-git/doc/guix.texi:23041 #, no-wrap msgid "%s" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22138 +#: guix-git/doc/guix.texi:22500 msgid "Subject" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22138 +#: guix-git/doc/guix.texi:22500 #, no-wrap msgid "%f" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22140 +#: guix-git/doc/guix.texi:22502 msgid "From address" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22142 +#: guix-git/doc/guix.texi:22504 msgid "Physical size" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22142 +#: guix-git/doc/guix.texi:22504 #, no-wrap msgid "%w" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22144 +#: guix-git/doc/guix.texi:22506 msgid "Virtual size." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22146 +#: guix-git/doc/guix.texi:22508 msgid "Defaults to @samp{\"msgid=%m: %$\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22148 +#: guix-git/doc/guix.texi:22510 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22153 +#: guix-git/doc/guix.texi:22515 msgid "Location for users' mailboxes. The default is empty, which means that Dovecot tries to find the mailboxes automatically. This won't work if the user doesn't yet have any mail, so you should explicitly tell Dovecot the full location." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22159 +#: guix-git/doc/guix.texi:22521 msgid "If you're using mbox, giving a path to the INBOX file (e.g.@: @file{/var/mail/%u}) isn't enough. You'll also need to tell Dovecot where the other mailboxes are kept. This is called the @emph{root mail directory}, and it must be the first path given in the @samp{mail-location} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22161 +#: guix-git/doc/guix.texi:22523 msgid "There are a few special variables you can use, e.g.:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22165 +#: guix-git/doc/guix.texi:22527 msgid "username" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22165 guix-git/doc/guix.texi:22675 +#: guix-git/doc/guix.texi:22527 guix-git/doc/guix.texi:23037 #, no-wrap msgid "%n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22167 +#: guix-git/doc/guix.texi:22529 msgid "user part in user@@domain, same as %u if there's no domain" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22167 +#: guix-git/doc/guix.texi:22529 #, no-wrap msgid "%d" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22169 +#: guix-git/doc/guix.texi:22531 msgid "domain part in user@@domain, empty if there's no domain" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22169 +#: guix-git/doc/guix.texi:22531 #, no-wrap msgid "%h" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22171 +#: guix-git/doc/guix.texi:22533 msgid "home director" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22174 +#: guix-git/doc/guix.texi:22536 msgid "See doc/wiki/Variables.txt for full list. Some examples:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22175 +#: guix-git/doc/guix.texi:22537 #, no-wrap msgid "maildir:~/Maildir" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22176 +#: guix-git/doc/guix.texi:22538 #, no-wrap msgid "mbox:~/mail:INBOX=/var/mail/%u" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22177 +#: guix-git/doc/guix.texi:22539 #, no-wrap msgid "mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22182 +#: guix-git/doc/guix.texi:22544 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22187 +#: guix-git/doc/guix.texi:22549 msgid "System user and group used to access mails. If you use multiple, userdb can override these by returning uid or gid fields. You can use either numbers or names. . Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22189 +#: guix-git/doc/guix.texi:22551 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22194 +#: guix-git/doc/guix.texi:22556 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-privileged-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22200 +#: guix-git/doc/guix.texi:22562 msgid "Group to enable temporarily for privileged operations. Currently this is used only with INBOX when either its initial creation or dotlocking fails. Typically this is set to @samp{\"mail\"} to give access to @file{/var/mail}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22202 +#: guix-git/doc/guix.texi:22564 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-access-groups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22210 +#: guix-git/doc/guix.texi:22572 msgid "Grant access to these supplementary groups for mail processes. Typically these are used to set up access to shared mailboxes. Note that it may be dangerous to set these if users can create symlinks (e.g.@: if @samp{mail} group is set here, @code{ln -s /var/mail ~/mail/var} could allow a user to delete others' mailboxes, or @code{ln -s /secret/shared/box ~/mail/mybox} would allow reading it). Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22212 +#: guix-git/doc/guix.texi:22574 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attribute-dict" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22215 +#: guix-git/doc/guix.texi:22577 msgid "The location of a dictionary used to store @code{IMAP METADATA} as defined by @uref{https://tools.ietf.org/html/rfc5464, RFC@tie{}5464}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22218 +#: guix-git/doc/guix.texi:22580 msgid "The IMAP METADATA commands are available only if the ``imap'' protocol configuration's @code{imap-metadata?} field is @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22223 +#: guix-git/doc/guix.texi:22585 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-full-filesystem-access?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22229 +#: guix-git/doc/guix.texi:22591 msgid "Allow full file system access to clients. There's no access checks other than what the operating system does for the active UID/GID@. It works with both maildir and mboxes, allowing you to prefix mailboxes names with e.g.@: @file{/path/} or @file{~user/}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22231 +#: guix-git/doc/guix.texi:22593 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mmap-disable?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22235 +#: guix-git/doc/guix.texi:22597 msgid "Don't use @code{mmap()} at all. This is required if you store indexes to shared file systems (NFS or clustered file system). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22237 +#: guix-git/doc/guix.texi:22599 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean dotlock-use-excl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22242 +#: guix-git/doc/guix.texi:22604 msgid "Rely on @samp{O_EXCL} to work when creating dotlock files. NFS supports @samp{O_EXCL} since version 3, so this should be safe to use nowadays by default. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22244 +#: guix-git/doc/guix.texi:22606 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-fsync" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22246 +#: guix-git/doc/guix.texi:22608 msgid "When to use fsync() or fdatasync() calls:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22247 +#: guix-git/doc/guix.texi:22609 #, no-wrap msgid "optimized" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22249 +#: guix-git/doc/guix.texi:22611 msgid "Whenever necessary to avoid losing important data" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22251 +#: guix-git/doc/guix.texi:22613 msgid "Useful with e.g.@: NFS when @code{write()}s are delayed" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22253 +#: guix-git/doc/guix.texi:22615 msgid "Never use it (best performance, but crashes can lose data)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22255 +#: guix-git/doc/guix.texi:22617 msgid "Defaults to @samp{\"optimized\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22257 +#: guix-git/doc/guix.texi:22619 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-nfs-storage?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22262 +#: guix-git/doc/guix.texi:22624 msgid "Mail storage exists in NFS@. Set this to yes to make Dovecot flush NFS caches whenever needed. If you're using only a single mail server this isn't needed. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22264 +#: guix-git/doc/guix.texi:22626 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-nfs-index?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22268 +#: guix-git/doc/guix.texi:22630 msgid "Mail index files also exist in NFS@. Setting this to yes requires @samp{mmap-disable? #t} and @samp{fsync-disable? #f}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22270 +#: guix-git/doc/guix.texi:22632 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string lock-method" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22276 +#: guix-git/doc/guix.texi:22638 msgid "Locking method for index files. Alternatives are fcntl, flock and dotlock. Dotlocking uses some tricks which may create more disk I/O than other locking methods. NFS users: flock doesn't work, remember to change @samp{mmap-disable}. Defaults to @samp{\"fcntl\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22278 +#: guix-git/doc/guix.texi:22640 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name mail-temp-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22282 +#: guix-git/doc/guix.texi:22644 msgid "Directory in which LDA/LMTP temporarily stores incoming mails >128 kB. Defaults to @samp{\"/tmp\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22284 +#: guix-git/doc/guix.texi:22646 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer first-valid-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22290 +#: guix-git/doc/guix.texi:22652 msgid "Valid UID range for users. This is mostly to make sure that users can't log in as daemons or other system users. Note that denying root logins is hardcoded to dovecot binary and can't be done even if @samp{first-valid-uid} is set to 0. Defaults to @samp{500}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22292 +#: guix-git/doc/guix.texi:22654 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer last-valid-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22297 +#: guix-git/doc/guix.texi:22659 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer first-valid-gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22302 +#: guix-git/doc/guix.texi:22664 msgid "Valid GID range for users. Users having non-valid GID as primary group ID aren't allowed to log in. If user belongs to supplementary groups with non-valid GIDs, those groups are not set. Defaults to @samp{1}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22304 +#: guix-git/doc/guix.texi:22666 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer last-valid-gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22309 +#: guix-git/doc/guix.texi:22671 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-max-keyword-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22313 +#: guix-git/doc/guix.texi:22675 msgid "Maximum allowed length for mail keyword name. It's only forced when trying to create new keywords. Defaults to @samp{50}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22315 +#: guix-git/doc/guix.texi:22677 #, no-wrap msgid "{@code{dovecot-configuration} parameter} colon-separated-file-name-list valid-chroot-dirs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22325 +#: guix-git/doc/guix.texi:22687 msgid "List of directories under which chrooting is allowed for mail processes (i.e.@: @file{/var/mail} will allow chrooting to @file{/var/mail/foo/bar} too). This setting doesn't affect @samp{login-chroot} @samp{mail-chroot} or auth chroot settings. If this setting is empty, @samp{/./} in home dirs are ignored. WARNING: Never add directories here which local users can modify, that may lead to root exploit. Usually this should be done only if you don't allow shell access for users. . Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22327 +#: guix-git/doc/guix.texi:22689 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-chroot" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22336 +#: guix-git/doc/guix.texi:22698 msgid "Default chroot directory for mail processes. This can be overridden for specific users in user database by giving @samp{/./} in user's home directory (e.g.@: @samp{/home/./user} chroots into @file{/home}). Note that usually there is no real need to do chrooting, Dovecot doesn't allow users to access files outside their mail directory anyway. If your home directories are prefixed with the chroot directory, append @samp{/.} to @samp{mail-chroot}. . Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22338 +#: guix-git/doc/guix.texi:22700 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name auth-socket-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22342 +#: guix-git/doc/guix.texi:22704 msgid "UNIX socket path to master authentication server to find users. This is used by imap (for shared users) and lda. Defaults to @samp{\"/var/run/dovecot/auth-userdb\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22344 +#: guix-git/doc/guix.texi:22706 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name mail-plugin-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22347 +#: guix-git/doc/guix.texi:22709 msgid "Directory where to look up mail plugins. Defaults to @samp{\"/usr/lib/dovecot\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22349 +#: guix-git/doc/guix.texi:22711 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mail-plugins" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22353 +#: guix-git/doc/guix.texi:22715 msgid "List of plugins to load for all services. Plugins specific to IMAP, LDA, etc.@: are added to this list in their own .conf files. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22355 +#: guix-git/doc/guix.texi:22717 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-cache-min-mail-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22360 +#: guix-git/doc/guix.texi:22722 msgid "The minimum number of mails in a mailbox before updates are done to cache file. This allows optimizing Dovecot's behavior to do less disk writes at the cost of more disk reads. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22362 +#: guix-git/doc/guix.texi:22724 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mailbox-idle-check-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22369 +#: guix-git/doc/guix.texi:22731 msgid "When IDLE command is running, mailbox is checked once in a while to see if there are any new mails or other changes. This setting defines the minimum time to wait between those checks. Dovecot can also use dnotify, inotify and kqueue to find out immediately when changes occur. Defaults to @samp{\"30 secs\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22371 +#: guix-git/doc/guix.texi:22733 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-save-crlf?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22378 +#: guix-git/doc/guix.texi:22740 msgid "Save mails with CR+LF instead of plain LF@. This makes sending those mails take less CPU, especially with sendfile() syscall with Linux and FreeBSD@. But it also creates a bit more disk I/O which may just make it slower. Also note that if other software reads the mboxes/maildirs, they may handle the extra CRs wrong and cause problems. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22380 +#: guix-git/doc/guix.texi:22742 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-stat-dirs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22388 +#: guix-git/doc/guix.texi:22750 msgid "By default LIST command returns all entries in maildir beginning with a dot. Enabling this option makes Dovecot return only entries which are directories. This is done by stat()ing each entry, so it causes more disk I/O. (For systems setting struct @samp{dirent->d_type} this check is free and it's done always regardless of this setting). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22390 +#: guix-git/doc/guix.texi:22752 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-copy-with-hardlinks?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22395 +#: guix-git/doc/guix.texi:22757 msgid "When copying a message, do it with hard links whenever possible. This makes the performance much better, and it's unlikely to have any side effects. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22397 +#: guix-git/doc/guix.texi:22759 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-very-dirty-syncs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22402 +#: guix-git/doc/guix.texi:22764 msgid "Assume Dovecot is the only MUA accessing Maildir: Scan cur/ directory only when its mtime changes unexpectedly or when we can't find the mail otherwise. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22404 +#: guix-git/doc/guix.texi:22766 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mbox-read-locks" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22407 +#: guix-git/doc/guix.texi:22769 msgid "Which locking methods to use for locking mbox. There are four available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22409 +#: guix-git/doc/guix.texi:22771 #, no-wrap msgid "dotlock" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22413 +#: guix-git/doc/guix.texi:22775 msgid "Create .lock file. This is the oldest and most NFS-safe solution. If you want to use /var/mail/ like directory, the users will need write access to that directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22413 +#: guix-git/doc/guix.texi:22775 #, no-wrap msgid "dotlock-try" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22416 +#: guix-git/doc/guix.texi:22778 msgid "Same as dotlock, but if it fails because of permissions or because there isn't enough disk space, just skip it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22416 +#: guix-git/doc/guix.texi:22778 #, no-wrap msgid "fcntl" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22418 +#: guix-git/doc/guix.texi:22780 msgid "Use this if possible. Works with NFS too if lockd is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22418 +#: guix-git/doc/guix.texi:22780 #, no-wrap msgid "flock" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22420 guix-git/doc/guix.texi:22422 +#: guix-git/doc/guix.texi:22782 guix-git/doc/guix.texi:22784 msgid "May not exist in all systems. Doesn't work with NFS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22420 +#: guix-git/doc/guix.texi:22782 #, no-wrap msgid "lockf" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22428 +#: guix-git/doc/guix.texi:22790 msgid "You can use multiple locking methods; if you do the order they're declared in is important to avoid deadlocks if other MTAs/MUAs are using multiple locking methods as well. Some operating systems don't allow using some of them simultaneously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22430 +#: guix-git/doc/guix.texi:22792 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mbox-write-locks" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22434 +#: guix-git/doc/guix.texi:22796 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mbox-lock-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22437 +#: guix-git/doc/guix.texi:22799 msgid "Maximum time to wait for lock (all of them) before aborting. Defaults to @samp{\"5 mins\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22439 +#: guix-git/doc/guix.texi:22801 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mbox-dotlock-change-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22443 +#: guix-git/doc/guix.texi:22805 msgid "If dotlock exists but the mailbox isn't modified in any way, override the lock file after this much time. Defaults to @samp{\"2 mins\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22445 +#: guix-git/doc/guix.texi:22807 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-dirty-syncs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22456 +#: guix-git/doc/guix.texi:22818 msgid "When mbox changes unexpectedly we have to fully read it to find out what changed. If the mbox is large this can take a long time. Since the change is usually just a newly appended mail, it'd be faster to simply read the new mails. If this setting is enabled, Dovecot does this but still safely fallbacks to re-reading the whole mbox file whenever something in mbox isn't how it's expected to be. The only real downside to this setting is that if some other MUA changes message flags, Dovecot doesn't notice it immediately. Note that a full sync is done with SELECT, EXAMINE, EXPUNGE and CHECK commands. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22458 +#: guix-git/doc/guix.texi:22820 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-very-dirty-syncs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22463 +#: guix-git/doc/guix.texi:22825 msgid "Like @samp{mbox-dirty-syncs}, but don't do full syncs even with SELECT, EXAMINE, EXPUNGE or CHECK commands. If this is set, @samp{mbox-dirty-syncs} is ignored. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22465 +#: guix-git/doc/guix.texi:22827 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-lazy-writes?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22471 +#: guix-git/doc/guix.texi:22833 msgid "Delay writing mbox headers until doing a full write sync (EXPUNGE and CHECK commands and when closing the mailbox). This is especially useful for POP3 where clients often delete all mails. The downside is that our changes aren't immediately visible to other MUAs. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22473 +#: guix-git/doc/guix.texi:22835 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mbox-min-index-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22478 +#: guix-git/doc/guix.texi:22840 msgid "If mbox size is smaller than this (e.g.@: 100k), don't write index files. If an index file already exists it's still read, just not updated. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22480 +#: guix-git/doc/guix.texi:22842 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mdbox-rotate-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22483 +#: guix-git/doc/guix.texi:22845 msgid "Maximum dbox file size until it's rotated. Defaults to @samp{10000000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22485 +#: guix-git/doc/guix.texi:22847 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mdbox-rotate-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22490 +#: guix-git/doc/guix.texi:22852 msgid "Maximum dbox file age until it's rotated. Typically in days. Day begins from midnight, so 1d = today, 2d = yesterday, etc. 0 = check disabled. Defaults to @samp{\"1d\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22492 +#: guix-git/doc/guix.texi:22854 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mdbox-preallocate-space?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22497 +#: guix-git/doc/guix.texi:22859 msgid "When creating new mdbox files, immediately preallocate their size to @samp{mdbox-rotate-size}. This setting currently works only in Linux with some file systems (ext4, xfs). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22499 +#: guix-git/doc/guix.texi:22861 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22503 +#: guix-git/doc/guix.texi:22865 msgid "sdbox and mdbox support saving mail attachments to external files, which also allows single instance storage for them. Other backends don't support this for now." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22505 +#: guix-git/doc/guix.texi:22867 msgid "WARNING: This feature hasn't been tested much yet. Use at your own risk." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22508 +#: guix-git/doc/guix.texi:22870 msgid "Directory root where to store mail attachments. Disabled, if empty. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22510 +#: guix-git/doc/guix.texi:22872 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-attachment-min-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22515 +#: guix-git/doc/guix.texi:22877 msgid "Attachments smaller than this aren't saved externally. It's also possible to write a plugin to disable saving specific attachments externally. Defaults to @samp{128000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22517 +#: guix-git/doc/guix.texi:22879 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-fs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22519 +#: guix-git/doc/guix.texi:22881 msgid "File system backend to use for saving attachments:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22520 +#: guix-git/doc/guix.texi:22882 #, no-wrap msgid "posix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22522 +#: guix-git/doc/guix.texi:22884 msgid "No SiS done by Dovecot (but this might help FS's own deduplication)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22522 +#: guix-git/doc/guix.texi:22884 #, no-wrap msgid "sis posix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22524 +#: guix-git/doc/guix.texi:22886 msgid "SiS with immediate byte-by-byte comparison during saving" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22524 +#: guix-git/doc/guix.texi:22886 #, no-wrap msgid "sis-queue posix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22526 +#: guix-git/doc/guix.texi:22888 msgid "SiS with delayed comparison and deduplication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22528 +#: guix-git/doc/guix.texi:22890 msgid "Defaults to @samp{\"sis posix\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22530 +#: guix-git/doc/guix.texi:22892 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-hash" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22536 +#: guix-git/doc/guix.texi:22898 msgid "Hash format to use in attachment filenames. You can add any text and variables: @code{%@{md4@}}, @code{%@{md5@}}, @code{%@{sha1@}}, @code{%@{sha256@}}, @code{%@{sha512@}}, @code{%@{size@}}. Variables can be truncated, e.g.@: @code{%@{sha256:80@}} returns only first 80 bits. Defaults to @samp{\"%@{sha1@}\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22538 +#: guix-git/doc/guix.texi:22900 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-process-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22543 +#: guix-git/doc/guix.texi:22905 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-client-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22546 guix-git/doc/guix.texi:30171 +#: guix-git/doc/guix.texi:22908 guix-git/doc/guix.texi:30536 msgid "Defaults to @samp{1000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22548 +#: guix-git/doc/guix.texi:22910 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-vsz-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22553 +#: guix-git/doc/guix.texi:22915 msgid "Default VSZ (virtual memory size) limit for service processes. This is mainly intended to catch and kill processes that leak memory before they eat up everything. Defaults to @samp{256000000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22555 +#: guix-git/doc/guix.texi:22917 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string default-login-user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22560 +#: guix-git/doc/guix.texi:22922 msgid "Login user is internally used by login processes. This is the most untrusted user in Dovecot system. It shouldn't have access to anything at all. Defaults to @samp{\"dovenull\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22562 +#: guix-git/doc/guix.texi:22924 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string default-internal-user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22567 +#: guix-git/doc/guix.texi:22929 msgid "Internal user is used by unprivileged processes. It should be separate from login user, so that login processes can't disturb other processes. Defaults to @samp{\"dovecot\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22569 +#: guix-git/doc/guix.texi:22931 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string ssl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22572 +#: guix-git/doc/guix.texi:22934 msgid "SSL/TLS support: yes, no, required. . Defaults to @samp{\"required\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22574 +#: guix-git/doc/guix.texi:22936 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string ssl-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22577 +#: guix-git/doc/guix.texi:22939 msgid "PEM encoded X.509 SSL/TLS certificate (public key). Defaults to @samp{\" was automatically rejected:%n%r\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22687 +#: guix-git/doc/guix.texi:23049 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string recipient-delimiter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22691 +#: guix-git/doc/guix.texi:23053 msgid "Delimiter character between local-part and detail in email address. Defaults to @samp{\"+\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22693 +#: guix-git/doc/guix.texi:23055 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string lda-original-recipient-header" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22699 +#: guix-git/doc/guix.texi:23061 msgid "Header where the original recipient address (SMTP's RCPT TO: address) is taken from if not available elsewhere. With dovecot-lda -a parameter overrides this. A commonly used header for this is X-Original-To. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22701 +#: guix-git/doc/guix.texi:23063 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean lda-mailbox-autocreate?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22705 +#: guix-git/doc/guix.texi:23067 msgid "Should saving a mail to a nonexistent mailbox automatically create it?. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22707 +#: guix-git/doc/guix.texi:23069 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean lda-mailbox-autosubscribe?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22711 +#: guix-git/doc/guix.texi:23073 msgid "Should automatically created mailboxes be also automatically subscribed?. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22713 +#: guix-git/doc/guix.texi:23075 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer imap-max-line-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22719 +#: guix-git/doc/guix.texi:23081 msgid "Maximum IMAP command line length. Some clients generate very long command lines with huge mailboxes, so you may need to raise this if you get \"Too long argument\" or \"IMAP command line too large\" errors often. Defaults to @samp{64000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22721 +#: guix-git/doc/guix.texi:23083 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-logout-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22723 +#: guix-git/doc/guix.texi:23085 msgid "IMAP logout format string:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22724 +#: guix-git/doc/guix.texi:23086 #, no-wrap msgid "%i" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22726 +#: guix-git/doc/guix.texi:23088 msgid "total number of bytes read from client" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22726 +#: guix-git/doc/guix.texi:23088 #, no-wrap msgid "%o" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22728 +#: guix-git/doc/guix.texi:23090 msgid "total number of bytes sent to client." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22731 +#: guix-git/doc/guix.texi:23093 msgid "See @file{doc/wiki/Variables.txt} for a list of all the variables you can use. Defaults to @samp{\"in=%i out=%o deleted=%@{deleted@} expunged=%@{expunged@} trashed=%@{trashed@} hdr_count=%@{fetch_hdr_count@} hdr_bytes=%@{fetch_hdr_bytes@} body_count=%@{fetch_body_count@} body_bytes=%@{fetch_body_bytes@}\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22733 +#: guix-git/doc/guix.texi:23095 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-capability" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22737 +#: guix-git/doc/guix.texi:23099 msgid "Override the IMAP CAPABILITY response. If the value begins with '+', add the given capabilities on top of the defaults (e.g.@: +XFOO XBAR). Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22739 +#: guix-git/doc/guix.texi:23101 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-idle-notify-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22743 +#: guix-git/doc/guix.texi:23105 msgid "How long to wait between \"OK Still here\" notifications when client is IDLEing. Defaults to @samp{\"2 mins\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22745 +#: guix-git/doc/guix.texi:23107 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-id-send" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22751 +#: guix-git/doc/guix.texi:23113 msgid "ID field names and values to send to clients. Using * as the value makes Dovecot use the default value. The following fields have default values currently: name, version, os, os-version, support-url, support-email. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22753 +#: guix-git/doc/guix.texi:23115 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-id-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22756 +#: guix-git/doc/guix.texi:23118 msgid "ID fields sent by client to log. * means everything. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22758 +#: guix-git/doc/guix.texi:23120 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list imap-client-workarounds" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22760 +#: guix-git/doc/guix.texi:23122 msgid "Workarounds for various client bugs:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22762 +#: guix-git/doc/guix.texi:23124 #, no-wrap msgid "delay-newmail" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22769 +#: guix-git/doc/guix.texi:23131 msgid "Send EXISTS/RECENT new mail notifications only when replying to NOOP and CHECK commands. Some clients ignore them otherwise, for example OSX Mail (' before setting it here, to get a feel for which cipher suites you will get. After setting this option, it is recommend that you inspect your Murmur log to ensure that Murmur is using the cipher suites that you expected it to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24159 +#: guix-git/doc/guix.texi:24521 msgid "Note: Changing this option may impact the backwards compatibility of your Murmur server, and can remove the ability for older Mumble clients to be able to connect to it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:24160 +#: guix-git/doc/guix.texi:24522 #, no-wrap msgid "@code{public-registration} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:24162 +#: guix-git/doc/guix.texi:24524 msgid "Must be a @code{} record or @code{#f}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24167 +#: guix-git/doc/guix.texi:24529 msgid "You can optionally register your server in the public server list that the @code{mumble} client shows on startup. You cannot register your server if you have set a @code{server-password}, or set @code{allow-ping} to @code{#f}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24169 +#: guix-git/doc/guix.texi:24531 msgid "It might take a few hours until it shows up in the public list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:24170 guix-git/doc/guix.texi:26407 +#: guix-git/doc/guix.texi:24532 guix-git/doc/guix.texi:26744 #, no-wrap msgid "@code{file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:24172 +#: guix-git/doc/guix.texi:24534 msgid "Optional alternative override for this configuration." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24175 +#: guix-git/doc/guix.texi:24537 #, no-wrap msgid "{Data Type} murmur-public-registration-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24177 +#: guix-git/doc/guix.texi:24539 msgid "Configuration for public registration of a murmur service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24181 +#: guix-git/doc/guix.texi:24543 msgid "This is a display name for your server. Not to be confused with the hostname." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:24182 guix-git/doc/guix.texi:33135 -#: guix-git/doc/guix.texi:34304 +#: guix-git/doc/guix.texi:24544 guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:34743 #, no-wrap msgid "password" msgstr "" #. type: table -#: guix-git/doc/guix.texi:24185 +#: guix-git/doc/guix.texi:24547 msgid "A password to identify your registration. Subsequent updates will need the same password. Don't lose your password." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24189 +#: guix-git/doc/guix.texi:24551 msgid "This should be a @code{http://} or @code{https://} link to your web site." msgstr "" #. type: item -#: guix-git/doc/guix.texi:24190 guix-git/doc/guix.texi:27292 +#: guix-git/doc/guix.texi:24552 guix-git/doc/guix.texi:27629 #, no-wrap msgid "@code{hostname} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:24193 +#: guix-git/doc/guix.texi:24555 msgid "By default your server will be listed by its IP address. If it is set your server will be linked by this host name instead." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24203 +#: guix-git/doc/guix.texi:24565 msgid "The @code{(gnu services file-sharing)} module provides services that assist with transferring files over peer-to-peer file-sharing networks." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:24204 +#: guix-git/doc/guix.texi:24566 #, no-wrap msgid "Transmission Daemon Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24212 +#: guix-git/doc/guix.texi:24574 msgid "@uref{https://transmissionbt.com/, Transmission} is a flexible BitTorrent client that offers a variety of graphical and command-line interfaces. A @code{transmission-daemon-service-type} service provides Transmission's headless variant, @command{transmission-daemon}, as a system service, allowing users to share files via BitTorrent even when they are not logged in." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24213 +#: guix-git/doc/guix.texi:24575 #, no-wrap msgid "{Scheme Variable} transmission-daemon-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24217 +#: guix-git/doc/guix.texi:24579 msgid "The service type for the Transmission Daemon BitTorrent client. Its value must be a @code{transmission-daemon-configuration} object as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24228 +#: guix-git/doc/guix.texi:24590 #, no-wrap msgid "" "(service transmission-daemon-service-type\n" @@ -43439,7 +44048,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24233 +#: guix-git/doc/guix.texi:24595 #, no-wrap msgid "" " ;; Accept requests from this and other hosts on the\n" @@ -43450,7 +44059,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24237 +#: guix-git/doc/guix.texi:24599 #, no-wrap msgid "" " ;; Limit bandwidth use during work hours\n" @@ -43460,7 +44069,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24244 +#: guix-git/doc/guix.texi:24606 #, no-wrap msgid "" " (alt-speed-time-enabled? #t)\n" @@ -43472,49 +44081,49 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24257 +#: guix-git/doc/guix.texi:24619 msgid "Once the service is started, users can interact with the daemon through its Web interface (at @code{http://localhost:9091/}) or by using the @command{transmission-remote} command-line tool, available in the @code{transmission} package. (Emacs users may want to also consider the @code{emacs-transmission} package.) Both communicate with the daemon through its remote procedure call (RPC) interface, which by default is available to all users on the system; you may wish to change this by assigning values to the @code{rpc-authentication-required?}, @code{rpc-username} and @code{rpc-password} settings, as shown in the example above and documented further below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24265 +#: guix-git/doc/guix.texi:24627 msgid "The value for @code{rpc-password} must be a password hash of the type generated and used by Transmission clients. This can be copied verbatim from an existing @file{settings.json} file, if another Transmission client is already being used. Otherwise, the @code{transmission-password-hash} and @code{transmission-random-salt} procedures provided by this module can be used to obtain a suitable hash value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24266 +#: guix-git/doc/guix.texi:24628 #, no-wrap msgid "{Scheme Procedure} transmission-password-hash @var{password} @var{salt}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24270 +#: guix-git/doc/guix.texi:24632 msgid "Returns a string containing the result of hashing @var{password} together with @var{salt}, in the format recognized by Transmission clients for their @code{rpc-password} configuration setting." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24274 +#: guix-git/doc/guix.texi:24636 msgid "@var{salt} must be an eight-character string. The @code{transmission-random-salt} procedure can be used to generate a suitable salt value at random." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24276 +#: guix-git/doc/guix.texi:24638 #, no-wrap msgid "{Scheme Procedure} transmission-random-salt" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24280 +#: guix-git/doc/guix.texi:24642 msgid "Returns a string containing a random, eight-character salt value of the type generated and used by Transmission clients, suitable for passing to the @code{transmission-password-hash} procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24286 +#: guix-git/doc/guix.texi:24648 msgid "These procedures are accessible from within a Guile REPL started with the @command{guix repl} command (@pxref{Invoking guix repl}). This is useful for obtaining a random salt value to provide as the second parameter to `transmission-password-hash`, as in this example session:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:24292 +#: guix-git/doc/guix.texi:24654 #, no-wrap msgid "" "$ guix repl\n" @@ -43524,12 +44133,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24295 +#: guix-git/doc/guix.texi:24657 msgid "Alternatively, a complete password hash can generated in a single step:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:24300 +#: guix-git/doc/guix.texi:24662 #, no-wrap msgid "" "scheme@@(guix-user)> (transmission-password-hash \"transmission\"\n" @@ -43538,480 +44147,480 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24305 +#: guix-git/doc/guix.texi:24667 msgid "The resulting string can be used as-is for the value of @code{rpc-password}, allowing the password to be kept hidden even in the operating-system configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24314 +#: guix-git/doc/guix.texi:24676 msgid "Torrent files downloaded by the daemon are directly accessible only to users in the ``transmission'' user group, who receive read-only access to the directory specified by the @code{download-dir} configuration setting (and also the directory specified by @code{incomplete-dir}, if @code{incomplete-dir-enabled?} is @code{#t}). Downloaded files can be moved to another directory or deleted altogether using @command{transmission-remote} with its @code{--move} and @code{--remove-and-delete} options." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24321 +#: guix-git/doc/guix.texi:24683 msgid "If the @code{watch-dir-enabled?} setting is set to @code{#t}, users in the ``transmission'' group are able also to place @file{.torrent} files in the directory specified by @code{watch-dir} to have the corresponding torrents added by the daemon. (The @code{trash-original-torrent-files?} setting controls whether the daemon deletes these files after processing them.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24326 +#: guix-git/doc/guix.texi:24688 msgid "Some of the daemon's configuration settings can be changed temporarily by @command{transmission-remote} and similar tools. To undo these changes, use the service's @code{reload} action to have the daemon reload its settings from disk:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:24329 +#: guix-git/doc/guix.texi:24691 #, no-wrap msgid "# herd reload transmission-daemon\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24333 +#: guix-git/doc/guix.texi:24695 msgid "The full set of available configuration settings is defined by the @code{transmission-daemon-configuration} data type." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24334 +#: guix-git/doc/guix.texi:24696 #, no-wrap msgid "{Data Type} transmission-daemon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24338 +#: guix-git/doc/guix.texi:24700 msgid "The data type representing configuration settings for Transmission Daemon. These correspond directly to the settings recognized by Transmission clients in their @file{settings.json} file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24352 +#: guix-git/doc/guix.texi:24714 msgid "Available @code{transmission-daemon-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24353 +#: guix-git/doc/guix.texi:24715 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} package transmission" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24355 +#: guix-git/doc/guix.texi:24717 msgid "The Transmission package to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24358 +#: guix-git/doc/guix.texi:24720 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer stop-wait-period" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24364 +#: guix-git/doc/guix.texi:24726 msgid "The period, in seconds, to wait when stopping the service for @command{transmission-daemon} to exit before killing its process. This allows the daemon time to complete its housekeeping and send a final update to trackers as it shuts down. On slow hosts, or hosts with a slow network connection, this value may need to be increased." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24366 guix-git/doc/guix.texi:24738 -#: guix-git/doc/guix.texi:32101 guix-git/doc/guix.texi:32336 -#: guix-git/doc/guix.texi:32344 guix-git/doc/guix.texi:32352 +#: guix-git/doc/guix.texi:24728 guix-git/doc/guix.texi:25100 +#: guix-git/doc/guix.texi:32466 guix-git/doc/guix.texi:32701 +#: guix-git/doc/guix.texi:32709 guix-git/doc/guix.texi:32717 msgid "Defaults to @samp{10}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24369 +#: guix-git/doc/guix.texi:24731 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string download-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24371 +#: guix-git/doc/guix.texi:24733 msgid "The directory to which torrent files are downloaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24373 +#: guix-git/doc/guix.texi:24735 msgid "Defaults to @samp{\"/var/lib/transmission-daemon/downloads\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24376 +#: guix-git/doc/guix.texi:24738 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean incomplete-dir-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24381 +#: guix-git/doc/guix.texi:24743 msgid "If @code{#t}, files will be held in @code{incomplete-dir} while their torrent is being downloaded, then moved to @code{download-dir} once the torrent is complete. Otherwise, files for all torrents (including those still being downloaded) will be placed in @code{download-dir}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24386 +#: guix-git/doc/guix.texi:24748 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string incomplete-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24389 +#: guix-git/doc/guix.texi:24751 msgid "The directory in which files from incompletely downloaded torrents will be held when @code{incomplete-dir-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24394 +#: guix-git/doc/guix.texi:24756 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} umask umask" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24397 +#: guix-git/doc/guix.texi:24759 msgid "The file mode creation mask used for downloaded files. (See the @command{umask} man page for more information.)" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24399 +#: guix-git/doc/guix.texi:24761 msgid "Defaults to @samp{18}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24402 +#: guix-git/doc/guix.texi:24764 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rename-partial-files?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24405 +#: guix-git/doc/guix.texi:24767 msgid "When @code{#t}, ``.part'' is appended to the name of partially downloaded files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24410 +#: guix-git/doc/guix.texi:24772 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} preallocation-mode preallocation" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24415 +#: guix-git/doc/guix.texi:24777 msgid "The mode by which space should be preallocated for downloaded files, one of @code{none}, @code{fast} (or @code{sparse}) and @code{full}. Specifying @code{full} will minimize disk fragmentation at a cost to file-creation speed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24417 +#: guix-git/doc/guix.texi:24779 msgid "Defaults to @samp{fast}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24420 +#: guix-git/doc/guix.texi:24782 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean watch-dir-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24425 +#: guix-git/doc/guix.texi:24787 msgid "If @code{#t}, the directory specified by @code{watch-dir} will be watched for new @file{.torrent} files and the torrents they describe added automatically (and the original files removed, if @code{trash-original-torrent-files?} is @code{#t})." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24430 +#: guix-git/doc/guix.texi:24792 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string watch-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24433 +#: guix-git/doc/guix.texi:24795 msgid "The directory to be watched for @file{.torrent} files indicating new torrents to be added, when @code{watch-dir-enabled} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24438 +#: guix-git/doc/guix.texi:24800 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean trash-original-torrent-files?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24442 +#: guix-git/doc/guix.texi:24804 msgid "When @code{#t}, @file{.torrent} files will be deleted from the watch directory once their torrent has been added (see @code{watch-directory-enabled?})." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24447 +#: guix-git/doc/guix.texi:24809 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean speed-limit-down-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24450 +#: guix-git/doc/guix.texi:24812 msgid "When @code{#t}, the daemon's download speed will be limited to the rate specified by @code{speed-limit-down}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24455 +#: guix-git/doc/guix.texi:24817 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer speed-limit-down" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24457 +#: guix-git/doc/guix.texi:24819 msgid "The default global-maximum download speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24462 +#: guix-git/doc/guix.texi:24824 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean speed-limit-up-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24465 +#: guix-git/doc/guix.texi:24827 msgid "When @code{#t}, the daemon's upload speed will be limited to the rate specified by @code{speed-limit-up}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24470 +#: guix-git/doc/guix.texi:24832 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer speed-limit-up" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24472 +#: guix-git/doc/guix.texi:24834 msgid "The default global-maximum upload speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24477 +#: guix-git/doc/guix.texi:24839 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean alt-speed-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24483 +#: guix-git/doc/guix.texi:24845 msgid "When @code{#t}, the alternate speed limits @code{alt-speed-down} and @code{alt-speed-up} are used (in place of @code{speed-limit-down} and @code{speed-limit-up}, if they are enabled) to constrain the daemon's bandwidth usage. This can be scheduled to occur automatically at certain times during the week; see @code{alt-speed-time-enabled?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24488 +#: guix-git/doc/guix.texi:24850 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-down" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24490 +#: guix-git/doc/guix.texi:24852 msgid "The alternate global-maximum download speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24492 guix-git/doc/guix.texi:24499 -#: guix-git/doc/guix.texi:24671 guix-git/doc/guix.texi:32108 -#: guix-git/doc/guix.texi:32123 +#: guix-git/doc/guix.texi:24854 guix-git/doc/guix.texi:24861 +#: guix-git/doc/guix.texi:25033 guix-git/doc/guix.texi:32473 +#: guix-git/doc/guix.texi:32488 msgid "Defaults to @samp{50}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24495 +#: guix-git/doc/guix.texi:24857 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-up" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24497 +#: guix-git/doc/guix.texi:24859 msgid "The alternate global-maximum upload speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24502 +#: guix-git/doc/guix.texi:24864 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean alt-speed-time-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24507 +#: guix-git/doc/guix.texi:24869 msgid "When @code{#t}, the alternate speed limits @code{alt-speed-down} and @code{alt-speed-up} will be enabled automatically during the periods specified by @code{alt-speed-time-day}, @code{alt-speed-time-begin} and @code{alt-time-speed-end}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24512 +#: guix-git/doc/guix.texi:24874 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} day-list alt-speed-time-day" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24517 +#: guix-git/doc/guix.texi:24879 msgid "The days of the week on which the alternate-speed schedule should be used, specified either as a list of days (@code{sunday}, @code{monday}, and so on) or using one of the symbols @code{weekdays}, @code{weekends} or @code{all}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24519 +#: guix-git/doc/guix.texi:24881 msgid "Defaults to @samp{all}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24522 +#: guix-git/doc/guix.texi:24884 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-time-begin" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24525 +#: guix-git/doc/guix.texi:24887 msgid "The time of day at which to enable the alternate speed limits, expressed as a number of minutes since midnight." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24527 +#: guix-git/doc/guix.texi:24889 msgid "Defaults to @samp{540}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24530 +#: guix-git/doc/guix.texi:24892 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-time-end" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24533 +#: guix-git/doc/guix.texi:24895 msgid "The time of day at which to disable the alternate speed limits, expressed as a number of minutes since midnight." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24535 +#: guix-git/doc/guix.texi:24897 msgid "Defaults to @samp{1020}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24538 +#: guix-git/doc/guix.texi:24900 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string bind-address-ipv4" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24541 +#: guix-git/doc/guix.texi:24903 msgid "The IP address at which to listen for peer connections, or ``0.0.0.0'' to listen at all available IP addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24543 guix-git/doc/guix.texi:24846 -#: guix-git/doc/guix.texi:29969 +#: guix-git/doc/guix.texi:24905 guix-git/doc/guix.texi:25208 +#: guix-git/doc/guix.texi:30334 msgid "Defaults to @samp{\"0.0.0.0\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24546 +#: guix-git/doc/guix.texi:24908 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string bind-address-ipv6" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24549 +#: guix-git/doc/guix.texi:24911 msgid "The IPv6 address at which to listen for peer connections, or ``::'' to listen at all available IPv6 addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24551 +#: guix-git/doc/guix.texi:24913 msgid "Defaults to @samp{\"::\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24554 +#: guix-git/doc/guix.texi:24916 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean peer-port-random-on-start?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24560 +#: guix-git/doc/guix.texi:24922 msgid "If @code{#t}, when the daemon starts it will select a port at random on which to listen for peer connections, from the range specified (inclusively) by @code{peer-port-random-low} and @code{peer-port-random-high}. Otherwise, it listens on the port specified by @code{peer-port}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24565 +#: guix-git/doc/guix.texi:24927 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port-random-low" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24568 +#: guix-git/doc/guix.texi:24930 msgid "The lowest selectable port number when @code{peer-port-random-on-start?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24570 +#: guix-git/doc/guix.texi:24932 msgid "Defaults to @samp{49152}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24573 +#: guix-git/doc/guix.texi:24935 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port-random-high" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24576 +#: guix-git/doc/guix.texi:24938 msgid "The highest selectable port number when @code{peer-port-random-on-start} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24578 +#: guix-git/doc/guix.texi:24940 msgid "Defaults to @samp{65535}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24581 +#: guix-git/doc/guix.texi:24943 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24584 +#: guix-git/doc/guix.texi:24946 msgid "The port on which to listen for peer connections when @code{peer-port-random-on-start?} is @code{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24586 +#: guix-git/doc/guix.texi:24948 msgid "Defaults to @samp{51413}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24589 +#: guix-git/doc/guix.texi:24951 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean port-forwarding-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24593 +#: guix-git/doc/guix.texi:24955 msgid "If @code{#t}, the daemon will attempt to configure port-forwarding on an upstream gateway automatically using @acronym{UPnP} and @acronym{NAT-PMP}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24598 +#: guix-git/doc/guix.texi:24960 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} encryption-mode encryption" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24603 +#: guix-git/doc/guix.texi:24965 msgid "The encryption preference for peer connections, one of @code{prefer-unencrypted-connections}, @code{prefer-encrypted-connections} or @code{require-encrypted-connections}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24605 +#: guix-git/doc/guix.texi:24967 msgid "Defaults to @samp{prefer-encrypted-connections}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24608 +#: guix-git/doc/guix.texi:24970 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string peer-congestion-algorithm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24613 +#: guix-git/doc/guix.texi:24975 msgid "The TCP congestion-control algorithm to use for peer connections, specified using a string recognized by the operating system in calls to @code{setsockopt} (or set to @code{disabled}, in which case the operating-system default is used)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24622 +#: guix-git/doc/guix.texi:24984 msgid "Note that on GNU/Linux systems, the kernel must be configured to allow processes to use a congestion-control algorithm not in the default set; otherwise, it will deny these requests with ``Operation not permitted''. To see which algorithms are available on your system and which are currently permitted for use, look at the contents of the files @file{tcp_available_congestion_control} and @file{tcp_allowed_congestion_control} in the @file{/proc/sys/net/ipv4} directory." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24630 +#: guix-git/doc/guix.texi:24992 msgid "As an example, to have Transmission Daemon use @uref{http://www-ece.rice.edu/networks/TCP-LP/,the TCP Low Priority congestion-control algorithm}, you'll need to modify your kernel configuration to build in support for the algorithm, then update your operating-system configuration to allow its use by adding a @code{sysctl-service-type} service (or updating the existing one's configuration) with lines like the following:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24637 +#: guix-git/doc/guix.texi:24999 #, no-wrap msgid "" "(service sysctl-service-type\n" @@ -44022,529 +44631,529 @@ msgid "" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24640 +#: guix-git/doc/guix.texi:25002 msgid "The Transmission Daemon configuration can then be updated with" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24643 +#: guix-git/doc/guix.texi:25005 #, no-wrap msgid "(peer-congestion-algorithm \"lp\")\n" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24646 +#: guix-git/doc/guix.texi:25008 msgid "and the system reconfigured to have the changes take effect." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24651 +#: guix-git/doc/guix.texi:25013 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} tcp-type-of-service peer-socket-tos" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24655 +#: guix-git/doc/guix.texi:25017 msgid "The type of service to request in outgoing @acronym{TCP} packets, one of @code{default}, @code{low-cost}, @code{throughput}, @code{low-delay} and @code{reliability}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24657 +#: guix-git/doc/guix.texi:25019 msgid "Defaults to @samp{default}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24660 +#: guix-git/doc/guix.texi:25022 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-limit-global" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24662 +#: guix-git/doc/guix.texi:25024 msgid "The global limit on the number of connected peers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24664 +#: guix-git/doc/guix.texi:25026 msgid "Defaults to @samp{200}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24667 +#: guix-git/doc/guix.texi:25029 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-limit-per-torrent" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24669 +#: guix-git/doc/guix.texi:25031 msgid "The per-torrent limit on the number of connected peers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24674 +#: guix-git/doc/guix.texi:25036 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer upload-slots-per-torrent" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24677 +#: guix-git/doc/guix.texi:25039 msgid "The maximum number of peers to which the daemon will upload data simultaneously for each torrent." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24679 +#: guix-git/doc/guix.texi:25041 msgid "Defaults to @samp{14}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24682 +#: guix-git/doc/guix.texi:25044 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-id-ttl-hours" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24685 +#: guix-git/doc/guix.texi:25047 msgid "The maximum lifespan, in hours, of the peer ID associated with each public torrent before it is regenerated." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24687 +#: guix-git/doc/guix.texi:25049 msgid "Defaults to @samp{6}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24690 +#: guix-git/doc/guix.texi:25052 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean blocklist-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24693 +#: guix-git/doc/guix.texi:25055 msgid "When @code{#t}, the daemon will ignore peers mentioned in the blocklist it has most recently downloaded from @code{blocklist-url}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24698 +#: guix-git/doc/guix.texi:25060 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string blocklist-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24702 +#: guix-git/doc/guix.texi:25064 msgid "The URL of a peer blocklist (in @acronym{P2P}-plaintext or eMule @file{.dat} format) to be periodically downloaded and applied when @code{blocklist-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24707 +#: guix-git/doc/guix.texi:25069 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean download-queue-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24710 +#: guix-git/doc/guix.texi:25072 msgid "If @code{#t}, the daemon will be limited to downloading at most @code{download-queue-size} non-stalled torrents simultaneously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24715 +#: guix-git/doc/guix.texi:25077 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer download-queue-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24719 +#: guix-git/doc/guix.texi:25081 msgid "The size of the daemon's download queue, which limits the number of non-stalled torrents it will download at any one time when @code{download-queue-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24724 +#: guix-git/doc/guix.texi:25086 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean seed-queue-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24727 +#: guix-git/doc/guix.texi:25089 msgid "If @code{#t}, the daemon will be limited to seeding at most @code{seed-queue-size} non-stalled torrents simultaneously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24732 +#: guix-git/doc/guix.texi:25094 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer seed-queue-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24736 +#: guix-git/doc/guix.texi:25098 msgid "The size of the daemon's seed queue, which limits the number of non-stalled torrents it will seed at any one time when @code{seed-queue-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24741 +#: guix-git/doc/guix.texi:25103 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean queue-stalled-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24746 +#: guix-git/doc/guix.texi:25108 msgid "When @code{#t}, the daemon will consider torrents for which it has not shared data in the past @code{queue-stalled-minutes} minutes to be stalled and not count them against its @code{download-queue-size} and @code{seed-queue-size} limits." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24751 +#: guix-git/doc/guix.texi:25113 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer queue-stalled-minutes" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24755 +#: guix-git/doc/guix.texi:25117 msgid "The maximum period, in minutes, a torrent may be idle before it is considered to be stalled, when @code{queue-stalled-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24760 +#: guix-git/doc/guix.texi:25122 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean ratio-limit-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24763 +#: guix-git/doc/guix.texi:25125 msgid "When @code{#t}, a torrent being seeded will automatically be paused once it reaches the ratio specified by @code{ratio-limit}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24768 +#: guix-git/doc/guix.texi:25130 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-rational ratio-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24771 +#: guix-git/doc/guix.texi:25133 msgid "The ratio at which a torrent being seeded will be paused, when @code{ratio-limit-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24773 +#: guix-git/doc/guix.texi:25135 msgid "Defaults to @samp{2.0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24776 +#: guix-git/doc/guix.texi:25138 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean idle-seeding-limit-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24779 +#: guix-git/doc/guix.texi:25141 msgid "When @code{#t}, a torrent being seeded will automatically be paused once it has been idle for @code{idle-seeding-limit} minutes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24784 +#: guix-git/doc/guix.texi:25146 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer idle-seeding-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24788 +#: guix-git/doc/guix.texi:25150 msgid "The maximum period, in minutes, a torrent being seeded may be idle before it is paused, when @code{idle-seeding-limit-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24793 +#: guix-git/doc/guix.texi:25155 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean dht-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24797 +#: guix-git/doc/guix.texi:25159 msgid "Enable @uref{http://bittorrent.org/beps/bep_0005.html,the distributed hash table (@acronym{DHT}) protocol}, which supports the use of trackerless torrents." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24802 +#: guix-git/doc/guix.texi:25164 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean lpd-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24807 +#: guix-git/doc/guix.texi:25169 msgid "Enable @uref{https://en.wikipedia.org/wiki/Local_Peer_Discovery,local peer discovery} (@acronym{LPD}), which allows the discovery of peers on the local network and may reduce the amount of data sent over the public Internet." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24812 +#: guix-git/doc/guix.texi:25174 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean pex-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24816 +#: guix-git/doc/guix.texi:25178 msgid "Enable @uref{https://en.wikipedia.org/wiki/Peer_exchange,peer exchange} (@acronym{PEX}), which reduces the daemon's reliance on external trackers and may improve its performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24821 +#: guix-git/doc/guix.texi:25183 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean utp-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24826 +#: guix-git/doc/guix.texi:25188 msgid "Enable @uref{http://bittorrent.org/beps/bep_0029.html,the micro transport protocol} (@acronym{uTP}), which aims to reduce the impact of BitTorrent traffic on other users of the local network while maintaining full utilization of the available bandwidth." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24831 +#: guix-git/doc/guix.texi:25193 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24836 +#: guix-git/doc/guix.texi:25198 msgid "If @code{#t}, enable the remote procedure call (@acronym{RPC}) interface, which allows remote control of the daemon via its Web interface, the @command{transmission-remote} command-line client, and similar tools." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24841 +#: guix-git/doc/guix.texi:25203 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string rpc-bind-address" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24844 +#: guix-git/doc/guix.texi:25206 msgid "The IP address at which to listen for @acronym{RPC} connections, or ``0.0.0.0'' to listen at all available IP addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24849 +#: guix-git/doc/guix.texi:25211 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number rpc-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24851 +#: guix-git/doc/guix.texi:25213 msgid "The port on which to listen for @acronym{RPC} connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24853 +#: guix-git/doc/guix.texi:25215 msgid "Defaults to @samp{9091}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24856 +#: guix-git/doc/guix.texi:25218 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string rpc-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24858 +#: guix-git/doc/guix.texi:25220 msgid "The path prefix to use in the @acronym{RPC}-endpoint @acronym{URL}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24860 +#: guix-git/doc/guix.texi:25222 msgid "Defaults to @samp{\"/transmission/\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24863 +#: guix-git/doc/guix.texi:25225 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-authentication-required?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24868 +#: guix-git/doc/guix.texi:25230 msgid "When @code{#t}, clients must authenticate (see @code{rpc-username} and @code{rpc-password}) when using the @acronym{RPC} interface. Note this has the side effect of disabling host-name whitelisting (see @code{rpc-host-whitelist-enabled?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24873 +#: guix-git/doc/guix.texi:25235 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string rpc-username" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24876 +#: guix-git/doc/guix.texi:25238 msgid "The username required by clients to access the @acronym{RPC} interface when @code{rpc-authentication-required?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24881 +#: guix-git/doc/guix.texi:25243 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-transmission-password-hash rpc-password" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24887 +#: guix-git/doc/guix.texi:25249 msgid "The password required by clients to access the @acronym{RPC} interface when @code{rpc-authentication-required?} is @code{#t}. This must be specified using a password hash in the format recognized by Transmission clients, either copied from an existing @file{settings.json} file or generated using the @code{transmission-password-hash} procedure." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24892 +#: guix-git/doc/guix.texi:25254 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-whitelist-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24895 +#: guix-git/doc/guix.texi:25257 msgid "When @code{#t}, @acronym{RPC} requests will be accepted only when they originate from an address specified in @code{rpc-whitelist}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24900 +#: guix-git/doc/guix.texi:25262 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string-list rpc-whitelist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24904 +#: guix-git/doc/guix.texi:25266 msgid "The list of IP and IPv6 addresses from which @acronym{RPC} requests will be accepted when @code{rpc-whitelist-enabled?} is @code{#t}. Wildcards may be specified using @samp{*}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24906 +#: guix-git/doc/guix.texi:25268 msgid "Defaults to @samp{(\"127.0.0.1\" \"::1\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24909 +#: guix-git/doc/guix.texi:25271 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-host-whitelist-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24914 +#: guix-git/doc/guix.texi:25276 msgid "When @code{#t}, @acronym{RPC} requests will be accepted only when they are addressed to a host named in @code{rpc-host-whitelist}. Note that requests to ``localhost'' or ``localhost.'', or to a numeric address, are always accepted regardless of these settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24917 +#: guix-git/doc/guix.texi:25279 msgid "Note also this functionality is disabled when @code{rpc-authentication-required?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24922 +#: guix-git/doc/guix.texi:25284 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string-list rpc-host-whitelist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24925 +#: guix-git/doc/guix.texi:25287 msgid "The list of host names recognized by the @acronym{RPC} server when @code{rpc-host-whitelist-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24930 +#: guix-git/doc/guix.texi:25292 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} message-level message-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24934 +#: guix-git/doc/guix.texi:25296 msgid "The minimum severity level of messages to be logged (to @file{/var/log/transmission.log}) by the daemon, one of @code{none} (no logging), @code{error}, @code{info} and @code{debug}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24939 +#: guix-git/doc/guix.texi:25301 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean start-added-torrents?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24942 +#: guix-git/doc/guix.texi:25304 msgid "When @code{#t}, torrents are started as soon as they are added; otherwise, they are added in ``paused'' state." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24947 +#: guix-git/doc/guix.texi:25309 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean script-torrent-done-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24951 +#: guix-git/doc/guix.texi:25313 msgid "When @code{#t}, the script specified by @code{script-torrent-done-filename} will be invoked each time a torrent completes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24956 +#: guix-git/doc/guix.texi:25318 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-file-object script-torrent-done-filename" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24960 +#: guix-git/doc/guix.texi:25322 msgid "A file name or file-like object specifying a script to run each time a torrent completes, when @code{script-torrent-done-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24965 +#: guix-git/doc/guix.texi:25327 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean scrape-paused-torrents-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24968 +#: guix-git/doc/guix.texi:25330 msgid "When @code{#t}, the daemon will scrape trackers for a torrent even when the torrent is paused." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24973 +#: guix-git/doc/guix.texi:25335 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer cache-size-mb" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24977 +#: guix-git/doc/guix.texi:25339 msgid "The amount of memory, in megabytes, to allocate for the daemon's in-memory cache. A larger value may increase performance by reducing the frequency of disk I/O." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24979 +#: guix-git/doc/guix.texi:25341 msgid "Defaults to @samp{4}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24982 +#: guix-git/doc/guix.texi:25344 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean prefetch-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24986 +#: guix-git/doc/guix.texi:25348 msgid "When @code{#t}, the daemon will try to improve I/O performance by hinting to the operating system which data is likely to be read next from disk to satisfy requests from peers." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:24999 +#: guix-git/doc/guix.texi:25361 #, no-wrap msgid "Tailon Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25003 +#: guix-git/doc/guix.texi:25365 msgid "@uref{https://tailon.readthedocs.io/, Tailon} is a web application for viewing and searching log files." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25006 +#: guix-git/doc/guix.texi:25368 msgid "The following example will configure the service with default values. By default, Tailon can be accessed on port 8080 (@code{http://localhost:8080})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25009 +#: guix-git/doc/guix.texi:25371 #, no-wrap msgid "(service tailon-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25013 +#: guix-git/doc/guix.texi:25375 msgid "The following example customises more of the Tailon configuration, adding @command{sed} to the list of allowed commands." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25020 +#: guix-git/doc/guix.texi:25382 #, no-wrap msgid "" "(service tailon-service-type\n" @@ -44555,34 +45164,34 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25023 +#: guix-git/doc/guix.texi:25385 #, no-wrap msgid "{Data Type} tailon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25026 +#: guix-git/doc/guix.texi:25388 msgid "Data type representing the configuration of Tailon. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25028 +#: guix-git/doc/guix.texi:25390 #, no-wrap msgid "@code{config-file} (default: @code{(tailon-configuration-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25032 +#: guix-git/doc/guix.texi:25394 msgid "The configuration file to use for Tailon. This can be set to a @dfn{tailon-configuration-file} record value, or any gexp (@pxref{G-Expressions})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25035 +#: guix-git/doc/guix.texi:25397 msgid "For example, to instead use a local file, the @code{local-file} function can be used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25040 +#: guix-git/doc/guix.texi:25402 #, no-wrap msgid "" "(service tailon-service-type\n" @@ -44591,144 +45200,144 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25042 +#: guix-git/doc/guix.texi:25404 #, no-wrap msgid "@code{package} (default: @code{tailon})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25044 +#: guix-git/doc/guix.texi:25406 msgid "The tailon package to use." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25048 +#: guix-git/doc/guix.texi:25410 #, no-wrap msgid "{Data Type} tailon-configuration-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25051 +#: guix-git/doc/guix.texi:25413 msgid "Data type representing the configuration options for Tailon. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25053 +#: guix-git/doc/guix.texi:25415 #, no-wrap msgid "@code{files} (default: @code{(list \"/var/log\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25058 +#: guix-git/doc/guix.texi:25420 msgid "List of files to display. The list can include strings for a single file or directory, or a list, where the first item is the name of a subsection, and the remaining items are the files or directories in that subsection." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25059 +#: guix-git/doc/guix.texi:25421 #, no-wrap msgid "@code{bind} (default: @code{\"localhost:8080\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25061 +#: guix-git/doc/guix.texi:25423 msgid "Address and port to which Tailon should bind on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25062 +#: guix-git/doc/guix.texi:25424 #, no-wrap msgid "@code{relative-root} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25064 +#: guix-git/doc/guix.texi:25426 msgid "URL path to use for Tailon, set to @code{#f} to not use a path." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25065 +#: guix-git/doc/guix.texi:25427 #, no-wrap msgid "@code{allow-transfers?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25067 +#: guix-git/doc/guix.texi:25429 msgid "Allow downloading the log files in the web interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25068 +#: guix-git/doc/guix.texi:25430 #, no-wrap msgid "@code{follow-names?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25070 +#: guix-git/doc/guix.texi:25432 msgid "Allow tailing of not-yet existent files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25071 +#: guix-git/doc/guix.texi:25433 #, no-wrap msgid "@code{tail-lines} (default: @code{200})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25073 +#: guix-git/doc/guix.texi:25435 msgid "Number of lines to read initially from each file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25074 +#: guix-git/doc/guix.texi:25436 #, no-wrap msgid "@code{allowed-commands} (default: @code{(list \"tail\" \"grep\" \"awk\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25076 +#: guix-git/doc/guix.texi:25438 msgid "Commands to allow running. By default, @code{sed} is disabled." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25079 +#: guix-git/doc/guix.texi:25441 msgid "Set @code{debug?} to @code{#t} to show debug messages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25080 +#: guix-git/doc/guix.texi:25442 #, no-wrap msgid "@code{wrap-lines} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25084 +#: guix-git/doc/guix.texi:25446 msgid "Initial line wrapping state in the web interface. Set to @code{#t} to initially wrap lines (the default), or to @code{#f} to initially not wrap lines." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25085 +#: guix-git/doc/guix.texi:25447 #, no-wrap msgid "@code{http-auth} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25089 +#: guix-git/doc/guix.texi:25451 msgid "HTTP authentication type to use. Set to @code{#f} to disable authentication (the default). Supported values are @code{\"digest\"} or @code{\"basic\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25090 +#: guix-git/doc/guix.texi:25452 #, no-wrap msgid "@code{users} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25095 +#: guix-git/doc/guix.texi:25457 msgid "If HTTP authentication is enabled (see @code{http-auth}), access will be restricted to the credentials provided here. To configure users, use a list of pairs, where the first element of the pair is the username, and the 2nd element of the pair is the password." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25101 +#: guix-git/doc/guix.texi:25463 #, no-wrap msgid "" "(tailon-configuration-file\n" @@ -44738,35 +45347,35 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25107 +#: guix-git/doc/guix.texi:25469 #, no-wrap msgid "Darkstat Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25108 +#: guix-git/doc/guix.texi:25470 #, no-wrap msgid "darkstat" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25111 +#: guix-git/doc/guix.texi:25473 msgid "Darkstat is a packet sniffer that captures network traffic, calculates statistics about usage, and serves reports over HTTP." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25112 +#: guix-git/doc/guix.texi:25474 #, no-wrap msgid "{Scheme Variable} darkstat-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25117 +#: guix-git/doc/guix.texi:25479 msgid "This is the service type for the @uref{https://unix4lyfe.org/darkstat/, darkstat} service, its value must be a @code{darkstat-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25122 +#: guix-git/doc/guix.texi:25484 #, no-wrap msgid "" "(service darkstat-service-type\n" @@ -44775,715 +45384,726 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25125 +#: guix-git/doc/guix.texi:25487 #, no-wrap msgid "{Data Type} darkstat-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25127 +#: guix-git/doc/guix.texi:25489 msgid "Data type representing the configuration of @command{darkstat}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25129 +#: guix-git/doc/guix.texi:25491 #, no-wrap msgid "@code{package} (default: @code{darkstat})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25131 +#: guix-git/doc/guix.texi:25493 msgid "The darkstat package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25132 +#: guix-git/doc/guix.texi:25494 #, no-wrap msgid "interface" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25134 +#: guix-git/doc/guix.texi:25496 msgid "Capture traffic on the specified network interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25135 +#: guix-git/doc/guix.texi:25497 #, no-wrap msgid "@code{port} (default: @code{\"667\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25137 +#: guix-git/doc/guix.texi:25499 msgid "Bind the web interface to the specified port." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25140 guix-git/doc/guix.texi:25175 +#: guix-git/doc/guix.texi:25502 guix-git/doc/guix.texi:25537 msgid "Bind the web interface to the specified address." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25141 +#: guix-git/doc/guix.texi:25503 #, no-wrap msgid "@code{base} (default: @code{\"/\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25144 +#: guix-git/doc/guix.texi:25506 msgid "Specify the path of the base URL@. This can be useful if @command{darkstat} is accessed via a reverse proxy." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25148 +#: guix-git/doc/guix.texi:25510 #, no-wrap msgid "Prometheus Node Exporter Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25150 +#: guix-git/doc/guix.texi:25512 #, no-wrap msgid "prometheus-node-exporter" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25155 +#: guix-git/doc/guix.texi:25517 msgid "The Prometheus ``node exporter'' makes hardware and operating system statistics provided by the Linux kernel available for the Prometheus monitoring system. This service should be deployed on all physical nodes and virtual machines, where monitoring these statistics is desirable." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25156 +#: guix-git/doc/guix.texi:25518 #, no-wrap msgid "{Scheme variable} prometheus-node-exporter-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25160 +#: guix-git/doc/guix.texi:25522 msgid "This is the service type for the @uref{https://github.com/prometheus/node_exporter/, prometheus-node-exporter} service, its value must be a @code{prometheus-node-exporter-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25163 +#: guix-git/doc/guix.texi:25525 #, no-wrap msgid "(service prometheus-node-exporter-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25166 +#: guix-git/doc/guix.texi:25528 #, no-wrap msgid "{Data Type} prometheus-node-exporter-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25168 +#: guix-git/doc/guix.texi:25530 msgid "Data type representing the configuration of @command{node_exporter}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25170 +#: guix-git/doc/guix.texi:25532 #, no-wrap msgid "@code{package} (default: @code{go-github-com-prometheus-node-exporter})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25172 +#: guix-git/doc/guix.texi:25534 msgid "The prometheus-node-exporter package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25173 +#: guix-git/doc/guix.texi:25535 #, no-wrap msgid "@code{web-listen-address} (default: @code{\":9100\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25176 +#: guix-git/doc/guix.texi:25538 #, no-wrap msgid "@code{textfile-directory} (default: @code{\"/var/lib/prometheus/node-exporter\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25180 +#: guix-git/doc/guix.texi:25542 msgid "This directory can be used to export metrics specific to this machine. Files containing metrics in the text format, with the filename ending in @code{.prom} should be placed in this directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25183 +#: guix-git/doc/guix.texi:25545 msgid "Extra options to pass to the Prometheus node exporter." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25187 +#: guix-git/doc/guix.texi:25549 #, no-wrap msgid "Zabbix server" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25188 +#: guix-git/doc/guix.texi:25550 #, no-wrap msgid "zabbix zabbix-server" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25191 +#: guix-git/doc/guix.texi:25553 msgid "Zabbix provides monitoring metrics, among others network utilization, CPU load and disk space consumption:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25193 +#: guix-git/doc/guix.texi:25555 #, no-wrap msgid "High performance, high capacity (able to monitor hundreds of thousands of devices)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25194 +#: guix-git/doc/guix.texi:25556 #, no-wrap msgid "Auto-discovery of servers and network devices and interfaces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25195 +#: guix-git/doc/guix.texi:25557 #, no-wrap msgid "Low-level discovery, allows to automatically start monitoring new items, file systems or network interfaces among others." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25196 +#: guix-git/doc/guix.texi:25558 #, no-wrap msgid "Distributed monitoring with centralized web administration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25197 +#: guix-git/doc/guix.texi:25559 #, no-wrap msgid "Native high performance agents." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25198 +#: guix-git/doc/guix.texi:25560 #, no-wrap msgid "SLA, and ITIL KPI metrics on reporting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25199 +#: guix-git/doc/guix.texi:25561 #, no-wrap msgid "High-level (business) view of monitored resources through user-defined visual console screens and dashboards." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25200 +#: guix-git/doc/guix.texi:25562 #, no-wrap msgid "Remote command execution through Zabbix proxies." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25206 +#: guix-git/doc/guix.texi:25568 msgid "Available @code{zabbix-server-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25207 +#: guix-git/doc/guix.texi:25569 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} package zabbix-server" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25209 +#: guix-git/doc/guix.texi:25571 msgid "The zabbix-server package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25212 +#: guix-git/doc/guix.texi:25574 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25214 +#: guix-git/doc/guix.texi:25576 msgid "User who will run the Zabbix server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25216 guix-git/doc/guix.texi:25223 -#: guix-git/doc/guix.texi:25237 guix-git/doc/guix.texi:25244 -#: guix-git/doc/guix.texi:25345 guix-git/doc/guix.texi:25352 -#: guix-git/doc/guix.texi:25463 guix-git/doc/guix.texi:25470 +#: guix-git/doc/guix.texi:25578 guix-git/doc/guix.texi:25585 +#: guix-git/doc/guix.texi:25599 guix-git/doc/guix.texi:25606 +#: guix-git/doc/guix.texi:25707 guix-git/doc/guix.texi:25714 msgid "Defaults to @samp{\"zabbix\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25219 +#: guix-git/doc/guix.texi:25581 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} group group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25221 +#: guix-git/doc/guix.texi:25583 msgid "Group who will run the Zabbix server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25226 +#: guix-git/doc/guix.texi:25588 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-host" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25228 guix-git/doc/guix.texi:25447 +#. type: table +#: guix-git/doc/guix.texi:25590 guix-git/doc/guix.texi:25813 msgid "Database host name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25230 +#: guix-git/doc/guix.texi:25592 msgid "Defaults to @samp{\"127.0.0.1\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25233 +#: guix-git/doc/guix.texi:25595 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-name" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25235 guix-git/doc/guix.texi:25461 +#. type: table +#: guix-git/doc/guix.texi:25597 guix-git/doc/guix.texi:25819 msgid "Database name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25240 +#: guix-git/doc/guix.texi:25602 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-user" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25242 guix-git/doc/guix.texi:25468 +#. type: table +#: guix-git/doc/guix.texi:25604 guix-git/doc/guix.texi:25822 msgid "Database user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25247 +#: guix-git/doc/guix.texi:25609 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-password" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25250 +#: guix-git/doc/guix.texi:25612 msgid "Database password. Please, use @code{include-files} with @code{DBPassword=SECRET} inside a specified file instead." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25255 +#: guix-git/doc/guix.texi:25617 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} number db-port" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25257 guix-git/doc/guix.texi:25454 +#. type: table +#: guix-git/doc/guix.texi:25619 guix-git/doc/guix.texi:25816 msgid "Database port." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25259 guix-git/doc/guix.texi:25456 +#: guix-git/doc/guix.texi:25621 msgid "Defaults to @samp{5432}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25262 +#: guix-git/doc/guix.texi:25624 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string log-type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25264 guix-git/doc/guix.texi:25365 +#: guix-git/doc/guix.texi:25626 guix-git/doc/guix.texi:25727 msgid "Specifies where log messages are written to:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25268 guix-git/doc/guix.texi:25369 +#: guix-git/doc/guix.texi:25630 guix-git/doc/guix.texi:25731 msgid "@code{system} - syslog." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25271 guix-git/doc/guix.texi:25372 +#: guix-git/doc/guix.texi:25633 guix-git/doc/guix.texi:25734 msgid "@code{file} - file specified with @code{log-file} parameter." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25274 guix-git/doc/guix.texi:25375 +#: guix-git/doc/guix.texi:25636 guix-git/doc/guix.texi:25737 msgid "@code{console} - standard output." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25281 +#: guix-git/doc/guix.texi:25643 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string log-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25283 guix-git/doc/guix.texi:25384 +#: guix-git/doc/guix.texi:25645 guix-git/doc/guix.texi:25746 msgid "Log file name for @code{log-type} @code{file} parameter." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25285 +#: guix-git/doc/guix.texi:25647 msgid "Defaults to @samp{\"/var/log/zabbix/server.log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25288 +#: guix-git/doc/guix.texi:25650 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25290 guix-git/doc/guix.texi:25391 +#: guix-git/doc/guix.texi:25652 guix-git/doc/guix.texi:25753 msgid "Name of PID file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25292 +#: guix-git/doc/guix.texi:25654 msgid "Defaults to @samp{\"/var/run/zabbix/zabbix_server.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25295 +#: guix-git/doc/guix.texi:25657 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string ssl-ca-location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25298 +#: guix-git/doc/guix.texi:25660 msgid "The location of certificate authority (CA) files for SSL server certificate verification." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25300 +#: guix-git/doc/guix.texi:25662 msgid "Defaults to @samp{\"/etc/ssl/certs/ca-certificates.crt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25303 +#: guix-git/doc/guix.texi:25665 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string ssl-cert-location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25305 +#: guix-git/doc/guix.texi:25667 msgid "Location of SSL client certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25307 +#: guix-git/doc/guix.texi:25669 msgid "Defaults to @samp{\"/etc/ssl/certs\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25310 +#: guix-git/doc/guix.texi:25672 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25312 guix-git/doc/guix.texi:25416 +#: guix-git/doc/guix.texi:25674 guix-git/doc/guix.texi:25778 msgid "Extra options will be appended to Zabbix server configuration file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25317 +#: guix-git/doc/guix.texi:25679 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} include-files include-files" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25320 guix-git/doc/guix.texi:25424 +#: guix-git/doc/guix.texi:25682 guix-git/doc/guix.texi:25786 msgid "You may include individual files or all files in a directory in the configuration file." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25327 +#: guix-git/doc/guix.texi:25689 #, no-wrap msgid "Zabbix agent" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25328 +#: guix-git/doc/guix.texi:25690 #, no-wrap msgid "zabbix zabbix-agent" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25331 +#: guix-git/doc/guix.texi:25693 msgid "Zabbix agent gathers information for Zabbix server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25335 +#: guix-git/doc/guix.texi:25697 msgid "Available @code{zabbix-agent-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25336 +#: guix-git/doc/guix.texi:25698 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} package zabbix-agent" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25338 +#: guix-git/doc/guix.texi:25700 msgid "The zabbix-agent package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25341 +#: guix-git/doc/guix.texi:25703 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25343 +#: guix-git/doc/guix.texi:25705 msgid "User who will run the Zabbix agent." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25348 +#: guix-git/doc/guix.texi:25710 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} group group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25350 +#: guix-git/doc/guix.texi:25712 msgid "Group who will run the Zabbix agent." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25355 +#: guix-git/doc/guix.texi:25717 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string hostname" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25358 +#: guix-git/doc/guix.texi:25720 msgid "Unique, case sensitive hostname which is required for active checks and must match hostname as configured on the server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25363 +#: guix-git/doc/guix.texi:25725 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string log-type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25382 +#: guix-git/doc/guix.texi:25744 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string log-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25386 +#: guix-git/doc/guix.texi:25748 msgid "Defaults to @samp{\"/var/log/zabbix/agent.log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25389 +#: guix-git/doc/guix.texi:25751 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25393 +#: guix-git/doc/guix.texi:25755 msgid "Defaults to @samp{\"/var/run/zabbix/zabbix_agent.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25396 +#: guix-git/doc/guix.texi:25758 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} list server" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25400 +#: guix-git/doc/guix.texi:25762 msgid "List of IP addresses, optionally in CIDR notation, or hostnames of Zabbix servers and Zabbix proxies. Incoming connections will be accepted only from the hosts listed here." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25402 guix-git/doc/guix.texi:25411 +#: guix-git/doc/guix.texi:25764 guix-git/doc/guix.texi:25773 msgid "Defaults to @samp{(\"127.0.0.1\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25405 +#: guix-git/doc/guix.texi:25767 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} list server-active" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25409 +#: guix-git/doc/guix.texi:25771 msgid "List of IP:port (or hostname:port) pairs of Zabbix servers and Zabbix proxies for active checks. If port is not specified, default port is used. If this parameter is not specified, active checks are disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25414 +#: guix-git/doc/guix.texi:25776 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25421 +#: guix-git/doc/guix.texi:25783 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} include-files include-files" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25431 +#: guix-git/doc/guix.texi:25793 #, no-wrap msgid "Zabbix front-end" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25432 +#: guix-git/doc/guix.texi:25794 #, no-wrap msgid "zabbix zabbix-front-end" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25435 +#: guix-git/doc/guix.texi:25797 msgid "This service provides a WEB interface to Zabbix server." msgstr "" -#. type: Plain text -#: guix-git/doc/guix.texi:25439 +#. type: deftp +#: guix-git/doc/guix.texi:25800 +#, no-wrap +msgid "{Data Type} zabbix-front-end-configuration" +msgstr "" + +#. type: deftp +#: guix-git/doc/guix.texi:25802 msgid "Available @code{zabbix-front-end-configuration} fields are:" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25440 +#. type: item +#: guix-git/doc/guix.texi:25804 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} nginx-server-configuration-list nginx" +msgid "@code{zabbix-server} (default: @code{zabbix-server}) (type: file-like)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25442 guix-git/doc/guix.texi:31735 -msgid "NGINX configuration." +#. type: table +#: guix-git/doc/guix.texi:25806 +msgid "The Zabbix server package to use." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25445 +#. type: item +#: guix-git/doc/guix.texi:25807 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-host" +msgid "@code{fastcgi-params} (type: list)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25452 +#. type: table +#: guix-git/doc/guix.texi:25810 +msgid "List of FastCGI parameter pairs that will be included in the NGINX configuration." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:25811 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} number db-port" +msgid "@code{db-host} (default: @code{\\\"localhost\\\"}) (type: string)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25459 +#. type: item +#: guix-git/doc/guix.texi:25814 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-name" +msgid "@code{db-port} (default: @code{5432}) (type: number)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25466 +#. type: item +#: guix-git/doc/guix.texi:25817 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-user" +msgid "@code{db-name} (default: @code{\\\"zabbix\\\"}) (type: string)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25473 +#. type: item +#: guix-git/doc/guix.texi:25820 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-password" +msgid "@code{db-user} (default: @code{\\\"zabbix\\\"}) (type: string)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25475 +#. type: item +#: guix-git/doc/guix.texi:25823 +#, no-wrap +msgid "@code{db-password} (default: @code{\\\"\\\"}) (type: string)" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:25825 msgid "Database password. Please, use @code{db-secret-file} instead." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25480 +#. type: item +#: guix-git/doc/guix.texi:25826 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-secret-file" +msgid "@code{db-secret-file} (default: @code{\\\"\\\"}) (type: string)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25485 -msgid "Secret file containing the credentials for the Zabbix front-end. The value must be a local file name, not a G-expression. You are expected to create this file manually. Its contents will be copied into @file{zabbix.conf.php} as the value of @code{$DB['PASSWORD']}." +#. type: table +#: guix-git/doc/guix.texi:25830 +msgid "Secret file which will be appended to @file{zabbix.conf.php} file. This file contains credentials for use by Zabbix front-end. You are expected to create it manually." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25490 +#. type: item +#: guix-git/doc/guix.texi:25831 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string zabbix-host" +msgid "@code{zabbix-host} (default: @code{\\\"localhost\\\"}) (type: string)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25492 +#. type: table +#: guix-git/doc/guix.texi:25833 msgid "Zabbix server hostname." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25497 +#. type: item +#: guix-git/doc/guix.texi:25834 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} number zabbix-port" +msgid "@code{zabbix-port} (default: @code{10051}) (type: number)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25499 +#. type: table +#: guix-git/doc/guix.texi:25836 msgid "Zabbix server port." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25501 -msgid "Defaults to @samp{10051}." -msgstr "" - #. type: cindex -#: guix-git/doc/guix.texi:25509 +#: guix-git/doc/guix.texi:25846 #, no-wrap msgid "Kerberos" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25513 +#: guix-git/doc/guix.texi:25850 msgid "The @code{(gnu services kerberos)} module provides services relating to the authentication protocol @dfn{Kerberos}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25514 +#: guix-git/doc/guix.texi:25851 #, no-wrap msgid "Krb5 Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25521 +#: guix-git/doc/guix.texi:25858 msgid "Programs using a Kerberos client library normally expect a configuration file in @file{/etc/krb5.conf}. This service generates such a file from a definition provided in the operating system declaration. It does not cause any daemon to be started." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25525 +#: guix-git/doc/guix.texi:25862 msgid "No ``keytab'' files are provided by this service---you must explicitly create them. This service is known to work with the MIT client library, @code{mit-krb5}. Other implementations have not been tested." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25526 +#: guix-git/doc/guix.texi:25863 #, no-wrap msgid "{Scheme Variable} krb5-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25528 +#: guix-git/doc/guix.texi:25865 msgid "A service type for Kerberos 5 clients." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25532 +#: guix-git/doc/guix.texi:25869 msgid "Here is an example of its use:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25546 +#: guix-git/doc/guix.texi:25883 #, no-wrap msgid "" "(service krb5-service-type\n" @@ -45502,206 +46122,206 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25550 +#: guix-git/doc/guix.texi:25887 msgid "This example provides a Kerberos@tie{}5 client configuration which:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25551 +#: guix-git/doc/guix.texi:25888 #, no-wrap msgid "Recognizes two realms, @i{viz:} ``EXAMPLE.COM'' and ``ARGRX.EDU'', both" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25553 +#: guix-git/doc/guix.texi:25890 msgid "of which have distinct administration servers and key distribution centers;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25553 +#: guix-git/doc/guix.texi:25890 #, no-wrap msgid "Will default to the realm ``EXAMPLE.COM'' if the realm is not explicitly" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25555 +#: guix-git/doc/guix.texi:25892 msgid "specified by clients;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25555 +#: guix-git/doc/guix.texi:25892 #, no-wrap msgid "Accepts services which only support encryption types known to be weak." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25563 +#: guix-git/doc/guix.texi:25900 msgid "The @code{krb5-realm} and @code{krb5-configuration} types have many fields. Only the most commonly used ones are described here. For a full list, and more detailed explanation of each, see the MIT @uref{https://web.mit.edu/kerberos/krb5-devel/doc/admin/conf_files/krb5_conf.html,,krb5.conf} documentation." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25565 +#: guix-git/doc/guix.texi:25902 #, no-wrap msgid "{Data Type} krb5-realm" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25566 +#: guix-git/doc/guix.texi:25903 #, no-wrap msgid "realm, kerberos" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25572 +#: guix-git/doc/guix.texi:25909 msgid "This field is a string identifying the name of the realm. A common convention is to use the fully qualified DNS name of your organization, converted to upper case." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25573 +#: guix-git/doc/guix.texi:25910 #, no-wrap msgid "admin-server" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25576 +#: guix-git/doc/guix.texi:25913 msgid "This field is a string identifying the host where the administration server is running." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25577 +#: guix-git/doc/guix.texi:25914 #, no-wrap msgid "kdc" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25580 +#: guix-git/doc/guix.texi:25917 msgid "This field is a string identifying the key distribution center for the realm." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25583 +#: guix-git/doc/guix.texi:25920 #, no-wrap msgid "{Data Type} krb5-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25586 +#: guix-git/doc/guix.texi:25923 #, no-wrap msgid "@code{allow-weak-crypto?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25589 +#: guix-git/doc/guix.texi:25926 msgid "If this flag is @code{#t} then services which only offer encryption algorithms known to be weak will be accepted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25590 +#: guix-git/doc/guix.texi:25927 #, no-wrap msgid "@code{default-realm} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25597 +#: guix-git/doc/guix.texi:25934 msgid "This field should be a string identifying the default Kerberos realm for the client. You should set this field to the name of your Kerberos realm. If this value is @code{#f} then a realm must be specified with every Kerberos principal when invoking programs such as @command{kinit}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25598 +#: guix-git/doc/guix.texi:25935 #, no-wrap msgid "realms" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25603 +#: guix-git/doc/guix.texi:25940 msgid "This should be a non-empty list of @code{krb5-realm} objects, which clients may access. Normally, one of them will have a @code{name} field matching the @code{default-realm} field." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25607 +#: guix-git/doc/guix.texi:25944 #, no-wrap msgid "PAM krb5 Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25608 +#: guix-git/doc/guix.texi:25945 #, no-wrap msgid "pam-krb5" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25614 +#: guix-git/doc/guix.texi:25951 msgid "The @code{pam-krb5} service allows for login authentication and password management via Kerberos. You will need this service if you want PAM enabled applications to authenticate users using Kerberos." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25615 +#: guix-git/doc/guix.texi:25952 #, no-wrap msgid "{Scheme Variable} pam-krb5-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25617 +#: guix-git/doc/guix.texi:25954 msgid "A service type for the Kerberos 5 PAM module." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25619 +#: guix-git/doc/guix.texi:25956 #, no-wrap msgid "{Data Type} pam-krb5-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25622 +#: guix-git/doc/guix.texi:25959 msgid "Data type representing the configuration of the Kerberos 5 PAM module. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25623 +#: guix-git/doc/guix.texi:25960 #, no-wrap msgid "@code{pam-krb5} (default: @code{pam-krb5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25625 +#: guix-git/doc/guix.texi:25962 msgid "The pam-krb5 package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25626 +#: guix-git/doc/guix.texi:25963 #, no-wrap msgid "@code{minimum-uid} (default: @code{1000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25629 +#: guix-git/doc/guix.texi:25966 msgid "The smallest user ID for which Kerberos authentications should be attempted. Local accounts with lower values will silently fail to authenticate." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25635 +#: guix-git/doc/guix.texi:25972 #, no-wrap msgid "LDAP" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25636 +#: guix-git/doc/guix.texi:25973 #, no-wrap msgid "nslcd, LDAP service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25643 +#: guix-git/doc/guix.texi:25980 msgid "The @code{(gnu services authentication)} module provides the @code{nslcd-service-type}, which can be used to authenticate against an LDAP server. In addition to configuring the service itself, you may want to add @code{ldap} as a name service to the Name Service Switch. @xref{Name Service Switch} for detailed information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25647 +#: guix-git/doc/guix.texi:25984 msgid "Here is a simple operating system declaration with a default configuration of the @code{nslcd-service-type} and a Name Service Switch configuration that consults the @code{ldap} name service last:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25670 +#: guix-git/doc/guix.texi:26007 #, no-wrap msgid "" "(use-service-modules authentication)\n" @@ -45728,643 +46348,643 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25675 +#: guix-git/doc/guix.texi:26012 msgid "Available @code{nslcd-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25676 +#: guix-git/doc/guix.texi:26013 #, no-wrap msgid "{@code{nslcd-configuration} parameter} package nss-pam-ldapd" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25678 +#: guix-git/doc/guix.texi:26015 msgid "The @code{nss-pam-ldapd} package to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25681 +#: guix-git/doc/guix.texi:26018 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number threads" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25685 +#: guix-git/doc/guix.texi:26022 msgid "The number of threads to start that can handle requests and perform LDAP queries. Each thread opens a separate connection to the LDAP server. The default is to start 5 threads." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25690 +#: guix-git/doc/guix.texi:26027 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25692 +#: guix-git/doc/guix.texi:26029 msgid "This specifies the user id with which the daemon should be run." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25694 guix-git/doc/guix.texi:25701 +#: guix-git/doc/guix.texi:26031 guix-git/doc/guix.texi:26038 msgid "Defaults to @samp{\"nslcd\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25697 +#: guix-git/doc/guix.texi:26034 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25699 +#: guix-git/doc/guix.texi:26036 msgid "This specifies the group id with which the daemon should be run." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25704 +#: guix-git/doc/guix.texi:26041 #, no-wrap msgid "{@code{nslcd-configuration} parameter} log-option log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25712 +#: guix-git/doc/guix.texi:26049 msgid "This option controls the way logging is done via a list containing SCHEME and LEVEL@. The SCHEME argument may either be the symbols @samp{none} or @samp{syslog}, or an absolute file name. The LEVEL argument is optional and specifies the log level. The log level may be one of the following symbols: @samp{crit}, @samp{error}, @samp{warning}, @samp{notice}, @samp{info} or @samp{debug}. All messages with the specified log level or higher are logged." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25714 +#: guix-git/doc/guix.texi:26051 msgid "Defaults to @samp{(\"/var/log/nslcd\" info)}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25717 +#: guix-git/doc/guix.texi:26054 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list uri" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25720 +#: guix-git/doc/guix.texi:26057 msgid "The list of LDAP server URIs. Normally, only the first server will be used with the following servers as fall-back." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25722 +#: guix-git/doc/guix.texi:26059 msgid "Defaults to @samp{(\"ldap://localhost:389/\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25725 +#: guix-git/doc/guix.texi:26062 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string ldap-version" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25728 +#: guix-git/doc/guix.texi:26065 msgid "The version of the LDAP protocol to use. The default is to use the maximum version supported by the LDAP library." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25733 +#: guix-git/doc/guix.texi:26070 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string binddn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25736 +#: guix-git/doc/guix.texi:26073 msgid "Specifies the distinguished name with which to bind to the directory server for lookups. The default is to bind anonymously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25741 +#: guix-git/doc/guix.texi:26078 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string bindpw" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25744 +#: guix-git/doc/guix.texi:26081 msgid "Specifies the credentials with which to bind. This option is only applicable when used with binddn." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25749 +#: guix-git/doc/guix.texi:26086 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string rootpwmoddn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25752 +#: guix-git/doc/guix.texi:26089 msgid "Specifies the distinguished name to use when the root user tries to modify a user's password using the PAM module." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25757 +#: guix-git/doc/guix.texi:26094 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string rootpwmodpw" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25761 +#: guix-git/doc/guix.texi:26098 msgid "Specifies the credentials with which to bind if the root user tries to change a user's password. This option is only applicable when used with rootpwmoddn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25766 +#: guix-git/doc/guix.texi:26103 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-mech" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25769 +#: guix-git/doc/guix.texi:26106 msgid "Specifies the SASL mechanism to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25774 +#: guix-git/doc/guix.texi:26111 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-realm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25776 +#: guix-git/doc/guix.texi:26113 msgid "Specifies the SASL realm to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25781 +#: guix-git/doc/guix.texi:26118 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-authcid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25784 +#: guix-git/doc/guix.texi:26121 msgid "Specifies the authentication identity to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25789 +#: guix-git/doc/guix.texi:26126 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-authzid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25792 +#: guix-git/doc/guix.texi:26129 msgid "Specifies the authorization identity to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25797 +#: guix-git/doc/guix.texi:26134 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean sasl-canonicalize?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25802 +#: guix-git/doc/guix.texi:26139 msgid "Determines whether the LDAP server host name should be canonicalised. If this is enabled the LDAP library will do a reverse host name lookup. By default, it is left up to the LDAP library whether this check is performed or not." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25807 +#: guix-git/doc/guix.texi:26144 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string krb5-ccname" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25809 +#: guix-git/doc/guix.texi:26146 msgid "Set the name for the GSS-API Kerberos credentials cache." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25814 +#: guix-git/doc/guix.texi:26151 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string base" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25816 +#: guix-git/doc/guix.texi:26153 msgid "The directory search base." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25818 +#: guix-git/doc/guix.texi:26155 msgid "Defaults to @samp{\"dc=example,dc=com\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25821 +#: guix-git/doc/guix.texi:26158 #, no-wrap msgid "{@code{nslcd-configuration} parameter} scope-option scope" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25825 +#: guix-git/doc/guix.texi:26162 msgid "Specifies the search scope (subtree, onelevel, base or children). The default scope is subtree; base scope is almost never useful for name service lookups; children scope is not supported on all servers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25827 +#: guix-git/doc/guix.texi:26164 msgid "Defaults to @samp{(subtree)}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25830 +#: guix-git/doc/guix.texi:26167 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-deref-option deref" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25833 +#: guix-git/doc/guix.texi:26170 msgid "Specifies the policy for dereferencing aliases. The default policy is to never dereference aliases." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25838 +#: guix-git/doc/guix.texi:26175 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean referrals" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25841 +#: guix-git/doc/guix.texi:26178 msgid "Specifies whether automatic referral chasing should be enabled. The default behaviour is to chase referrals." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25846 +#: guix-git/doc/guix.texi:26183 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list-of-map-entries maps" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25851 +#: guix-git/doc/guix.texi:26188 msgid "This option allows for custom attributes to be looked up instead of the default RFC 2307 attributes. It is a list of maps, each consisting of the name of a map, the RFC 2307 attribute to match and the query expression for the attribute as it is available in the directory." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25856 +#: guix-git/doc/guix.texi:26193 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list-of-filter-entries filters" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25859 +#: guix-git/doc/guix.texi:26196 msgid "A list of filters consisting of the name of a map to which the filter applies and an LDAP search filter expression." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25864 +#: guix-git/doc/guix.texi:26201 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number bind-timelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25867 +#: guix-git/doc/guix.texi:26204 msgid "Specifies the time limit in seconds to use when connecting to the directory server. The default value is 10 seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25872 +#: guix-git/doc/guix.texi:26209 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number timelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25876 +#: guix-git/doc/guix.texi:26213 msgid "Specifies the time limit (in seconds) to wait for a response from the LDAP server. A value of zero, which is the default, is to wait indefinitely for searches to be completed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25881 +#: guix-git/doc/guix.texi:26218 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number idle-timelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25885 +#: guix-git/doc/guix.texi:26222 msgid "Specifies the period if inactivity (in seconds) after which the con‐ nection to the LDAP server will be closed. The default is not to time out connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25890 +#: guix-git/doc/guix.texi:26227 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number reconnect-sleeptime" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25894 +#: guix-git/doc/guix.texi:26231 msgid "Specifies the number of seconds to sleep when connecting to all LDAP servers fails. By default one second is waited between the first failure and the first retry." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25899 +#: guix-git/doc/guix.texi:26236 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number reconnect-retrytime" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25903 +#: guix-git/doc/guix.texi:26240 msgid "Specifies the time after which the LDAP server is considered to be permanently unavailable. Once this time is reached retries will be done only once per this time period. The default value is 10 seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25908 +#: guix-git/doc/guix.texi:26245 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-ssl-option ssl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25912 +#: guix-git/doc/guix.texi:26249 msgid "Specifies whether to use SSL/TLS or not (the default is not to). If 'start-tls is specified then StartTLS is used rather than raw LDAP over SSL." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25917 +#: guix-git/doc/guix.texi:26254 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-tls-reqcert-option tls-reqcert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25920 +#: guix-git/doc/guix.texi:26257 msgid "Specifies what checks to perform on a server-supplied certificate. The meaning of the values is described in the ldap.conf(5) manual page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25925 +#: guix-git/doc/guix.texi:26262 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cacertdir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25928 +#: guix-git/doc/guix.texi:26265 msgid "Specifies the directory containing X.509 certificates for peer authen‐ tication. This parameter is ignored when using GnuTLS." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25933 +#: guix-git/doc/guix.texi:26270 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cacertfile" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25935 +#: guix-git/doc/guix.texi:26272 msgid "Specifies the path to the X.509 certificate for peer authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25940 +#: guix-git/doc/guix.texi:26277 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-randfile" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25943 +#: guix-git/doc/guix.texi:26280 msgid "Specifies the path to an entropy source. This parameter is ignored when using GnuTLS." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25948 +#: guix-git/doc/guix.texi:26285 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-ciphers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25950 +#: guix-git/doc/guix.texi:26287 msgid "Specifies the ciphers to use for TLS as a string." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25955 +#: guix-git/doc/guix.texi:26292 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25958 +#: guix-git/doc/guix.texi:26295 msgid "Specifies the path to the file containing the local certificate for client TLS authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25963 +#: guix-git/doc/guix.texi:26300 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-key" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25966 +#: guix-git/doc/guix.texi:26303 msgid "Specifies the path to the file containing the private key for client TLS authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25971 +#: guix-git/doc/guix.texi:26308 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number pagesize" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25975 +#: guix-git/doc/guix.texi:26312 msgid "Set this to a number greater than 0 to request paged results from the LDAP server in accordance with RFC2696. The default (0) is to not request paged results." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25980 +#: guix-git/doc/guix.texi:26317 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-ignore-users-option nss-initgroups-ignoreusers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25984 +#: guix-git/doc/guix.texi:26321 msgid "This option prevents group membership lookups through LDAP for the specified users. Alternatively, the value 'all-local may be used. With that value nslcd builds a full list of non-LDAP users on startup." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25989 +#: guix-git/doc/guix.texi:26326 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-min-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25992 +#: guix-git/doc/guix.texi:26329 msgid "This option ensures that LDAP users with a numeric user id lower than the specified value are ignored." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25997 +#: guix-git/doc/guix.texi:26334 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-uid-offset" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26000 +#: guix-git/doc/guix.texi:26337 msgid "This option specifies an offset that is added to all LDAP numeric user ids. This can be used to avoid user id collisions with local users." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26005 +#: guix-git/doc/guix.texi:26342 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-gid-offset" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26008 +#: guix-git/doc/guix.texi:26345 msgid "This option specifies an offset that is added to all LDAP numeric group ids. This can be used to avoid user id collisions with local groups." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26013 +#: guix-git/doc/guix.texi:26350 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-nested-groups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26019 +#: guix-git/doc/guix.texi:26356 msgid "If this option is set, the member attribute of a group may point to another group. Members of nested groups are also returned in the higher level group and parent groups are returned when finding groups for a specific user. The default is not to perform extra searches for nested groups." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26024 +#: guix-git/doc/guix.texi:26361 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-getgrent-skipmembers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26029 +#: guix-git/doc/guix.texi:26366 msgid "If this option is set, the group member list is not retrieved when looking up groups. Lookups for finding which groups a user belongs to will remain functional so the user will likely still get the correct groups assigned on login." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26034 +#: guix-git/doc/guix.texi:26371 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-disable-enumeration" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26040 +#: guix-git/doc/guix.texi:26377 msgid "If this option is set, functions which cause all user/group entries to be loaded from the directory will not succeed in doing so. This can dramatically reduce LDAP server load in situations where there are a great number of users and/or groups. This option is not recommended for most configurations." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26045 +#: guix-git/doc/guix.texi:26382 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string validnames" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26049 +#: guix-git/doc/guix.texi:26386 msgid "This option can be used to specify how user and group names are verified within the system. This pattern is used to check all user and group names that are requested and returned from LDAP." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26054 +#: guix-git/doc/guix.texi:26391 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean ignorecase" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26059 +#: guix-git/doc/guix.texi:26396 msgid "This specifies whether or not to perform searches using case-insensitive matching. Enabling this could open up the system to authorization bypass vulnerabilities and introduce nscd cache poisoning vulnerabilities which allow denial of service." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26064 +#: guix-git/doc/guix.texi:26401 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean pam-authc-ppolicy" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26067 +#: guix-git/doc/guix.texi:26404 msgid "This option specifies whether password policy controls are requested and handled from the LDAP server when performing user authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26072 +#: guix-git/doc/guix.texi:26409 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-authc-search" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26078 +#: guix-git/doc/guix.texi:26415 msgid "By default nslcd performs an LDAP search with the user's credentials after BIND (authentication) to ensure that the BIND operation was successful. The default search is a simple check to see if the user's DN exists. A search filter can be specified that will be used instead. It should return at least one entry." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26083 +#: guix-git/doc/guix.texi:26420 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-authz-search" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26087 +#: guix-git/doc/guix.texi:26424 msgid "This option allows flexible fine tuning of the authorisation check that should be performed. The search filter specified is executed and if any entries match, access is granted, otherwise access is denied." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26092 +#: guix-git/doc/guix.texi:26429 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-password-prohibit-message" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26097 +#: guix-git/doc/guix.texi:26434 msgid "If this option is set password modification using pam_ldap will be denied and the specified message will be presented to the user instead. The message can be used to direct the user to an alternative means of changing their password." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26102 +#: guix-git/doc/guix.texi:26439 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list pam-services" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26104 +#: guix-git/doc/guix.texi:26441 msgid "List of pam service names for which LDAP authentication should suffice." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26115 +#: guix-git/doc/guix.texi:26452 #, no-wrap msgid "web" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26116 +#: guix-git/doc/guix.texi:26453 #, no-wrap msgid "www" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26117 +#: guix-git/doc/guix.texi:26454 #, no-wrap msgid "HTTP" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26120 +#: guix-git/doc/guix.texi:26457 msgid "The @code{(gnu services web)} module provides the Apache HTTP Server, the nginx web server, and also a fastcgi wrapper daemon." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26121 +#: guix-git/doc/guix.texi:26458 #, no-wrap msgid "Apache HTTP Server" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26123 +#: guix-git/doc/guix.texi:26460 #, no-wrap msgid "{Scheme Variable} httpd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26127 +#: guix-git/doc/guix.texi:26464 msgid "Service type for the @uref{https://httpd.apache.org/,Apache HTTP} server (@dfn{httpd}). The value for this service type is a @code{httpd-configuration} record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26129 guix-git/doc/guix.texi:26311 +#: guix-git/doc/guix.texi:26466 guix-git/doc/guix.texi:26648 msgid "A simple example configuration is given below." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26137 +#: guix-git/doc/guix.texi:26474 #, no-wrap msgid "" "(service httpd-service-type\n" @@ -46376,12 +46996,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26141 +#: guix-git/doc/guix.texi:26478 msgid "Other services can also extend the @code{httpd-service-type} to add to the configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26150 guix-git/doc/guix.texi:26290 +#: guix-git/doc/guix.texi:26487 guix-git/doc/guix.texi:26627 #, no-wrap msgid "" "(simple-service 'www.example.com-server httpd-service-type\n" @@ -46394,115 +47014,115 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26156 +#: guix-git/doc/guix.texi:26493 msgid "The details for the @code{httpd-configuration}, @code{httpd-module}, @code{httpd-config-file} and @code{httpd-virtualhost} record types are given below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26157 +#: guix-git/doc/guix.texi:26494 #, no-wrap msgid "{Data Type} httpd-configuration" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26159 +#: guix-git/doc/guix.texi:26496 msgid "This data type represents the configuration for the httpd service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26161 +#: guix-git/doc/guix.texi:26498 #, no-wrap msgid "@code{package} (default: @code{httpd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26163 +#: guix-git/doc/guix.texi:26500 msgid "The httpd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26164 guix-git/doc/guix.texi:26253 +#: guix-git/doc/guix.texi:26501 guix-git/doc/guix.texi:26590 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/httpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26166 +#: guix-git/doc/guix.texi:26503 msgid "The pid file used by the shepherd-service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26167 +#: guix-git/doc/guix.texi:26504 #, no-wrap msgid "@code{config} (default: @code{(httpd-config-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26172 +#: guix-git/doc/guix.texi:26509 msgid "The configuration file to use with the httpd service. The default value is a @code{httpd-config-file} record, but this can also be a different G-expression that generates a file, for example a @code{plain-file}. A file outside of the store can also be specified through a string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26176 +#: guix-git/doc/guix.texi:26513 #, no-wrap msgid "{Data Type} httpd-module" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26178 +#: guix-git/doc/guix.texi:26515 msgid "This data type represents a module for the httpd service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26182 +#: guix-git/doc/guix.texi:26519 msgid "The name of the module." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26188 +#: guix-git/doc/guix.texi:26525 msgid "The file for the module. This can be relative to the httpd package being used, the absolute location of a file, or a G-expression for a file within the store, for example @code{(file-append mod-wsgi \"/modules/mod_wsgi.so\")}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26192 +#: guix-git/doc/guix.texi:26529 #, no-wrap msgid "{Scheme Variable} %default-httpd-modules" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26194 +#: guix-git/doc/guix.texi:26531 msgid "A default list of @code{httpd-module} objects." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26196 +#: guix-git/doc/guix.texi:26533 #, no-wrap msgid "{Data Type} httpd-config-file" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26198 +#: guix-git/doc/guix.texi:26535 msgid "This data type represents a configuration file for the httpd service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26200 +#: guix-git/doc/guix.texi:26537 #, no-wrap msgid "@code{modules} (default: @code{%default-httpd-modules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26203 +#: guix-git/doc/guix.texi:26540 msgid "The modules to load. Additional modules can be added here, or loaded by additional configuration." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26206 +#: guix-git/doc/guix.texi:26543 msgid "For example, in order to handle requests for PHP files, you can use Apache’s @code{mod_proxy_fcgi} module along with @code{php-fpm-service-type}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26228 +#: guix-git/doc/guix.texi:26565 #, no-wrap msgid "" "(service httpd-service-type\n" @@ -46528,165 +47148,165 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26230 +#: guix-git/doc/guix.texi:26567 #, no-wrap msgid "@code{server-root} (default: @code{httpd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26234 +#: guix-git/doc/guix.texi:26571 msgid "The @code{ServerRoot} in the configuration file, defaults to the httpd package. Directives including @code{Include} and @code{LoadModule} are taken as relative to the server root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26235 +#: guix-git/doc/guix.texi:26572 #, no-wrap msgid "@code{server-name} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26239 +#: guix-git/doc/guix.texi:26576 msgid "The @code{ServerName} in the configuration file, used to specify the request scheme, hostname and port that the server uses to identify itself." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26243 +#: guix-git/doc/guix.texi:26580 msgid "This doesn't need to be set in the server config, and can be specified in virtual hosts. The default is @code{#f} to not specify a @code{ServerName}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26244 +#: guix-git/doc/guix.texi:26581 #, no-wrap msgid "@code{document-root} (default: @code{\"/srv/http\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26246 +#: guix-git/doc/guix.texi:26583 msgid "The @code{DocumentRoot} from which files will be served." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26247 +#: guix-git/doc/guix.texi:26584 #, no-wrap msgid "@code{listen} (default: @code{'(\"80\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26252 +#: guix-git/doc/guix.texi:26589 msgid "The list of values for the @code{Listen} directives in the config file. The value should be a list of strings, when each string can specify the port number to listen on, and optionally the IP address and protocol to use." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26257 +#: guix-git/doc/guix.texi:26594 msgid "The @code{PidFile} to use. This should match the @code{pid-file} set in the @code{httpd-configuration} so that the Shepherd service is configured correctly." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26258 +#: guix-git/doc/guix.texi:26595 #, no-wrap msgid "@code{error-log} (default: @code{\"/var/log/httpd/error_log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26260 +#: guix-git/doc/guix.texi:26597 msgid "The @code{ErrorLog} to which the server will log errors." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26261 guix-git/doc/guix.texi:26823 +#: guix-git/doc/guix.texi:26598 guix-git/doc/guix.texi:27160 #, no-wrap msgid "@code{user} (default: @code{\"httpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26263 +#: guix-git/doc/guix.texi:26600 msgid "The @code{User} which the server will answer requests as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26264 +#: guix-git/doc/guix.texi:26601 #, no-wrap msgid "@code{group} (default: @code{\"httpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26266 +#: guix-git/doc/guix.texi:26603 msgid "The @code{Group} which the server will answer requests as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26267 +#: guix-git/doc/guix.texi:26604 #, no-wrap msgid "@code{extra-config} (default: @code{(list \"TypesConfig etc/httpd/mime.types\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26270 +#: guix-git/doc/guix.texi:26607 msgid "A flat list of strings and G-expressions which will be added to the end of the configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26273 +#: guix-git/doc/guix.texi:26610 msgid "Any values which the service is extended with will be appended to this list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26277 +#: guix-git/doc/guix.texi:26614 #, no-wrap msgid "{Data Type} httpd-virtualhost" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26279 +#: guix-git/doc/guix.texi:26616 msgid "This data type represents a virtualhost configuration block for the httpd service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26281 +#: guix-git/doc/guix.texi:26618 msgid "These should be added to the extra-config for the httpd-service." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26293 +#: guix-git/doc/guix.texi:26630 #, no-wrap msgid "addresses-and-ports" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26295 +#: guix-git/doc/guix.texi:26632 msgid "The addresses and ports for the @code{VirtualHost} directive." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26296 +#: guix-git/doc/guix.texi:26633 #, no-wrap msgid "contents" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26299 +#: guix-git/doc/guix.texi:26636 msgid "The contents of the @code{VirtualHost} directive, this should be a list of strings and G-expressions." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26304 +#: guix-git/doc/guix.texi:26641 #, no-wrap msgid "NGINX" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26306 +#: guix-git/doc/guix.texi:26643 #, no-wrap msgid "{Scheme Variable} nginx-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26309 +#: guix-git/doc/guix.texi:26646 msgid "Service type for the @uref{https://nginx.org/,NGinx} web server. The value for this service type is a @code{} record." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26319 guix-git/doc/guix.texi:26373 +#: guix-git/doc/guix.texi:26656 guix-git/doc/guix.texi:26710 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -46698,12 +47318,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26324 +#: guix-git/doc/guix.texi:26661 msgid "In addition to adding server blocks to the service configuration directly, this service can be extended by other services to add server blocks, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26330 +#: guix-git/doc/guix.texi:26667 #, no-wrap msgid "" "(simple-service 'my-extra-server nginx-service-type\n" @@ -46713,88 +47333,88 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26341 +#: guix-git/doc/guix.texi:26678 msgid "At startup, @command{nginx} has not yet read its configuration file, so it uses a default file to log error messages. If it fails to load its configuration file, that is where error messages are logged. After the configuration file is loaded, the default error log file changes as per configuration. In our case, startup error messages can be found in @file{/var/run/nginx/logs/error.log}, and after configuration in @file{/var/log/nginx/error.log}. The second location can be changed with the @var{log-directory} configuration option." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26342 +#: guix-git/doc/guix.texi:26679 #, no-wrap msgid "{Data Type} nginx-configuration" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26346 +#: guix-git/doc/guix.texi:26683 msgid "This data type represents the configuration for NGinx. Some configuration can be done through this and the other provided record types, or alternatively, a config file can be provided." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26348 +#: guix-git/doc/guix.texi:26685 #, no-wrap msgid "@code{nginx} (default: @code{nginx})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26350 +#: guix-git/doc/guix.texi:26687 msgid "The nginx package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26351 +#: guix-git/doc/guix.texi:26688 #, no-wrap msgid "@code{log-directory} (default: @code{\"/var/log/nginx\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26353 +#: guix-git/doc/guix.texi:26690 msgid "The directory to which NGinx will write log files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26354 +#: guix-git/doc/guix.texi:26691 #, no-wrap msgid "@code{run-directory} (default: @code{\"/var/run/nginx\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26357 +#: guix-git/doc/guix.texi:26694 msgid "The directory in which NGinx will create a pid file, and write temporary files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26358 +#: guix-git/doc/guix.texi:26695 #, no-wrap msgid "@code{server-blocks} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26362 +#: guix-git/doc/guix.texi:26699 msgid "A list of @dfn{server blocks} to create in the generated configuration file, the elements should be of type @code{}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26366 +#: guix-git/doc/guix.texi:26703 msgid "The following example would setup NGinx to serve @code{www.example.com} from the @code{/srv/http/www.example.com} directory, without using HTTPS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26375 +#: guix-git/doc/guix.texi:26712 #, no-wrap msgid "@code{upstream-blocks} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26379 +#: guix-git/doc/guix.texi:26716 msgid "A list of @dfn{upstream blocks} to create in the generated configuration file, the elements should be of type @code{}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26386 +#: guix-git/doc/guix.texi:26723 msgid "Configuring upstreams through the @code{upstream-blocks} can be useful when combined with @code{locations} in the @code{} records. The following example creates a server configuration with one location configuration, that will proxy requests to a upstream configuration, which will handle requests with two servers." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26405 +#: guix-git/doc/guix.texi:26742 #, no-wrap msgid "" "(service\n" @@ -46817,44 +47437,44 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26413 +#: guix-git/doc/guix.texi:26750 msgid "If a configuration @var{file} is provided, this will be used, rather than generating a configuration file from the provided @code{log-directory}, @code{run-directory}, @code{server-blocks} and @code{upstream-blocks}. For proper operation, these arguments should match what is in @var{file} to ensure that the directories are created when the service is activated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26417 +#: guix-git/doc/guix.texi:26754 msgid "This can be useful if you have an existing configuration file, or it's not possible to do what is required through the other parts of the nginx-configuration record." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26418 +#: guix-git/doc/guix.texi:26755 #, no-wrap msgid "@code{server-names-hash-bucket-size} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26421 +#: guix-git/doc/guix.texi:26758 msgid "Bucket size for the server names hash tables, defaults to @code{#f} to use the size of the processors cache line." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26422 +#: guix-git/doc/guix.texi:26759 #, no-wrap msgid "@code{server-names-hash-bucket-max-size} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26424 +#: guix-git/doc/guix.texi:26761 msgid "Maximum bucket size for the server names hash tables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26428 +#: guix-git/doc/guix.texi:26765 msgid "List of nginx dynamic modules to load. This should be a list of file names of loadable modules, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26436 +#: guix-git/doc/guix.texi:26773 #, no-wrap msgid "" "(modules\n" @@ -46866,18 +47486,18 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26438 +#: guix-git/doc/guix.texi:26775 #, no-wrap msgid "@code{lua-package-path} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26441 +#: guix-git/doc/guix.texi:26778 msgid "List of nginx lua packages to load. This should be a list of package names of loadable lua modules, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26448 +#: guix-git/doc/guix.texi:26785 #, no-wrap msgid "" "(lua-package-path (list lua-resty-core\n" @@ -46888,35 +47508,35 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26450 +#: guix-git/doc/guix.texi:26787 #, no-wrap msgid "@code{lua-package-cpath} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26453 +#: guix-git/doc/guix.texi:26790 msgid "List of nginx lua C packages to load. This should be a list of package names of loadable lua C modules, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26456 +#: guix-git/doc/guix.texi:26793 #, no-wrap msgid "(lua-package-cpath (list lua-resty-signal))\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26458 +#: guix-git/doc/guix.texi:26795 #, no-wrap msgid "@code{global-directives} (default: @code{'((events . ()))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26461 +#: guix-git/doc/guix.texi:26798 msgid "Association list of global directives for the top level of the nginx configuration. Values may themselves be association lists." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26467 +#: guix-git/doc/guix.texi:26804 #, no-wrap msgid "" "(global-directives\n" @@ -46926,312 +47546,312 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26472 +#: guix-git/doc/guix.texi:26809 msgid "Extra content for the @code{http} block. Should be string or a string valued G-expression." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26476 +#: guix-git/doc/guix.texi:26813 #, no-wrap msgid "{Data Type} nginx-server-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26479 +#: guix-git/doc/guix.texi:26816 msgid "Data type representing the configuration of an nginx server block. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26481 +#: guix-git/doc/guix.texi:26818 #, no-wrap msgid "@code{listen} (default: @code{'(\"80\" \"443 ssl\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26486 +#: guix-git/doc/guix.texi:26823 msgid "Each @code{listen} directive sets the address and port for IP, or the path for a UNIX-domain socket on which the server will accept requests. Both address and port, or only address or only port can be specified. An address may also be a hostname, for example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26489 +#: guix-git/doc/guix.texi:26826 #, no-wrap msgid "'(\"127.0.0.1:8000\" \"127.0.0.1\" \"8000\" \"*:8000\" \"localhost:8000\")\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26491 +#: guix-git/doc/guix.texi:26828 #, no-wrap msgid "@code{server-name} (default: @code{(list 'default)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26494 +#: guix-git/doc/guix.texi:26831 msgid "A list of server names this server represents. @code{'default} represents the default server for connections matching no other server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26495 +#: guix-git/doc/guix.texi:26832 #, no-wrap msgid "@code{root} (default: @code{\"/srv/http\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26497 +#: guix-git/doc/guix.texi:26834 msgid "Root of the website nginx will serve." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26498 +#: guix-git/doc/guix.texi:26835 #, no-wrap msgid "@code{locations} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26502 +#: guix-git/doc/guix.texi:26839 msgid "A list of @dfn{nginx-location-configuration} or @dfn{nginx-named-location-configuration} records to use within this server block." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26503 +#: guix-git/doc/guix.texi:26840 #, no-wrap msgid "@code{index} (default: @code{(list \"index.html\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26506 +#: guix-git/doc/guix.texi:26843 msgid "Index files to look for when clients ask for a directory. If it cannot be found, Nginx will send the list of files in the directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26507 +#: guix-git/doc/guix.texi:26844 #, no-wrap msgid "@code{try-files} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26510 +#: guix-git/doc/guix.texi:26847 msgid "A list of files whose existence is checked in the specified order. @code{nginx} will use the first file it finds to process the request." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26511 +#: guix-git/doc/guix.texi:26848 #, no-wrap msgid "@code{ssl-certificate} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26514 +#: guix-git/doc/guix.texi:26851 msgid "Where to find the certificate for secure connections. Set it to @code{#f} if you don't have a certificate or you don't want to use HTTPS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26515 +#: guix-git/doc/guix.texi:26852 #, no-wrap msgid "@code{ssl-certificate-key} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26518 +#: guix-git/doc/guix.texi:26855 msgid "Where to find the private key for secure connections. Set it to @code{#f} if you don't have a key or you don't want to use HTTPS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26519 +#: guix-git/doc/guix.texi:26856 #, no-wrap msgid "@code{server-tokens?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26521 +#: guix-git/doc/guix.texi:26858 msgid "Whether the server should add its configuration to response." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26522 +#: guix-git/doc/guix.texi:26859 #, no-wrap msgid "@code{raw-content} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26524 +#: guix-git/doc/guix.texi:26861 msgid "A list of raw lines added to the server block." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26528 +#: guix-git/doc/guix.texi:26865 #, no-wrap msgid "{Data Type} nginx-upstream-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26531 +#: guix-git/doc/guix.texi:26868 msgid "Data type representing the configuration of an nginx @code{upstream} block. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26535 +#: guix-git/doc/guix.texi:26872 msgid "Name for this group of servers." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26536 +#: guix-git/doc/guix.texi:26873 #, no-wrap msgid "servers" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26543 +#: guix-git/doc/guix.texi:26880 msgid "Specify the addresses of the servers in the group. The address can be specified as a IP address (e.g.@: @samp{127.0.0.1}), domain name (e.g.@: @samp{backend1.example.com}) or a path to a UNIX socket using the prefix @samp{unix:}. For addresses using an IP address or domain name, the default port is 80, and a different port can be specified explicitly." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26547 +#: guix-git/doc/guix.texi:26884 #, no-wrap msgid "{Data Type} nginx-location-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26550 +#: guix-git/doc/guix.texi:26887 msgid "Data type representing the configuration of an nginx @code{location} block. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26554 +#: guix-git/doc/guix.texi:26891 msgid "URI which this location block matches." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:26556 +#: guix-git/doc/guix.texi:26893 msgid "nginx-location-configuration body" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26556 guix-git/doc/guix.texi:26577 +#: guix-git/doc/guix.texi:26893 guix-git/doc/guix.texi:26914 #, no-wrap msgid "body" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26563 +#: guix-git/doc/guix.texi:26900 msgid "Body of the location block, specified as a list of strings. This can contain many configuration directives. For example, to pass requests to a upstream server group defined using an @code{nginx-upstream-configuration} block, the following directive would be specified in the body @samp{(list \"proxy_pass http://upstream-name;\")}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26567 +#: guix-git/doc/guix.texi:26904 #, no-wrap msgid "{Data Type} nginx-named-location-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26572 +#: guix-git/doc/guix.texi:26909 msgid "Data type representing the configuration of an nginx named location block. Named location blocks are used for request redirection, and not used for regular request processing. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26576 +#: guix-git/doc/guix.texi:26913 msgid "Name to identify this location block." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26582 +#: guix-git/doc/guix.texi:26919 msgid "@xref{nginx-location-configuration body}, as the body for named location blocks can be used in a similar way to the @code{nginx-location-configuration body}. One restriction is that the body of a named location block cannot contain location blocks." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26586 +#: guix-git/doc/guix.texi:26923 #, no-wrap msgid "Varnish Cache" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26587 +#: guix-git/doc/guix.texi:26924 #, no-wrap msgid "Varnish" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26592 +#: guix-git/doc/guix.texi:26929 msgid "Varnish is a fast cache server that sits in between web applications and end users. It proxies requests from clients and caches the accessed URLs such that multiple requests for the same resource only creates one request to the back-end." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26593 +#: guix-git/doc/guix.texi:26930 #, no-wrap msgid "{Scheme Variable} varnish-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26595 +#: guix-git/doc/guix.texi:26932 msgid "Service type for the Varnish daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26597 +#: guix-git/doc/guix.texi:26934 #, no-wrap msgid "{Data Type} varnish-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26600 +#: guix-git/doc/guix.texi:26937 msgid "Data type representing the @code{varnish} service configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26602 +#: guix-git/doc/guix.texi:26939 #, no-wrap msgid "@code{package} (default: @code{varnish})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26604 +#: guix-git/doc/guix.texi:26941 msgid "The Varnish package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26605 +#: guix-git/doc/guix.texi:26942 #, no-wrap msgid "@code{name} (default: @code{\"default\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26610 +#: guix-git/doc/guix.texi:26947 msgid "A name for this Varnish instance. Varnish will create a directory in @file{/var/varnish/} with this name and keep temporary files there. If the name starts with a forward slash, it is interpreted as an absolute directory name." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26613 +#: guix-git/doc/guix.texi:26950 msgid "Pass the @code{-n} argument to other Varnish programs to connect to the named instance, e.g.@: @command{varnishncsa -n default}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26614 +#: guix-git/doc/guix.texi:26951 #, no-wrap msgid "@code{backend} (default: @code{\"localhost:8080\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26616 +#: guix-git/doc/guix.texi:26953 msgid "The backend to use. This option has no effect if @code{vcl} is set." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26617 +#: guix-git/doc/guix.texi:26954 #, no-wrap msgid "@code{vcl} (default: #f)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26622 +#: guix-git/doc/guix.texi:26959 msgid "The @dfn{VCL} (Varnish Configuration Language) program to run. If this is @code{#f}, Varnish will proxy @code{backend} using the default configuration. Otherwise this must be a file-like object with valid VCL syntax." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26626 +#: guix-git/doc/guix.texi:26963 msgid "For example, to mirror @url{https://www.gnu.org,www.gnu.org} with VCL you can do something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26632 +#: guix-git/doc/guix.texi:26969 #, no-wrap msgid "" "(define %gnu-mirror\n" @@ -47242,7 +47862,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26640 +#: guix-git/doc/guix.texi:26977 #, no-wrap msgid "" "(operating-system\n" @@ -47255,82 +47875,82 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26644 +#: guix-git/doc/guix.texi:26981 msgid "The configuration of an already running Varnish instance can be inspected and changed using the @command{varnishadm} program." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26648 +#: guix-git/doc/guix.texi:26985 msgid "Consult the @url{https://varnish-cache.org/docs/,Varnish User Guide} and @url{https://book.varnish-software.com/4.0/,Varnish Book} for comprehensive documentation on Varnish and its configuration language." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26649 +#: guix-git/doc/guix.texi:26986 #, no-wrap msgid "@code{listen} (default: @code{'(\"localhost:80\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26651 +#: guix-git/doc/guix.texi:26988 msgid "List of addresses Varnish will listen on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26652 +#: guix-git/doc/guix.texi:26989 #, no-wrap msgid "@code{storage} (default: @code{'(\"malloc,128m\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26654 +#: guix-git/doc/guix.texi:26991 msgid "List of storage backends that will be available in VCL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26655 +#: guix-git/doc/guix.texi:26992 #, no-wrap msgid "@code{parameters} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26657 +#: guix-git/doc/guix.texi:26994 msgid "List of run-time parameters in the form @code{'((\"parameter\" . \"value\"))}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26660 +#: guix-git/doc/guix.texi:26997 msgid "Additional arguments to pass to the @command{varnishd} process." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26664 guix-git/doc/guix.texi:26665 +#: guix-git/doc/guix.texi:27001 guix-git/doc/guix.texi:27002 #, no-wrap msgid "Patchwork" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26668 +#: guix-git/doc/guix.texi:27005 msgid "Patchwork is a patch tracking system. It can collect patches sent to a mailing list, and display them in a web interface." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26669 +#: guix-git/doc/guix.texi:27006 #, no-wrap msgid "{Scheme Variable} patchwork-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26671 +#: guix-git/doc/guix.texi:27008 msgid "Service type for Patchwork." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26675 +#: guix-git/doc/guix.texi:27012 msgid "The following example is an example of a minimal service for Patchwork, for the @code{patchwork.example.com} domain." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26695 +#: guix-git/doc/guix.texi:27032 #, no-wrap msgid "" "(service patchwork-service-type\n" @@ -47355,806 +47975,806 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26701 +#: guix-git/doc/guix.texi:27038 msgid "There are three records for configuring the Patchwork service. The @code{} relates to the configuration for Patchwork within the HTTPD service." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26705 +#: guix-git/doc/guix.texi:27042 msgid "The @code{settings-module} field within the @code{} record can be populated with the @code{} record, which describes a settings module that is generated within the Guix store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26709 +#: guix-git/doc/guix.texi:27046 msgid "For the @code{database-configuration} field within the @code{}, the @code{} must be used." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26710 +#: guix-git/doc/guix.texi:27047 #, no-wrap msgid "{Data Type} patchwork-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26713 +#: guix-git/doc/guix.texi:27050 msgid "Data type representing the Patchwork service configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26715 +#: guix-git/doc/guix.texi:27052 #, no-wrap msgid "@code{patchwork} (default: @code{patchwork})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26717 +#: guix-git/doc/guix.texi:27054 msgid "The Patchwork package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26718 +#: guix-git/doc/guix.texi:27055 #, no-wrap msgid "domain" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26721 +#: guix-git/doc/guix.texi:27058 msgid "The domain to use for Patchwork, this is used in the HTTPD service virtual host." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26722 +#: guix-git/doc/guix.texi:27059 #, no-wrap msgid "settings-module" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26728 +#: guix-git/doc/guix.texi:27065 msgid "The settings module to use for Patchwork. As a Django application, Patchwork is configured with a Python module containing the settings. This can either be an instance of the @code{} record, any other record that represents the settings in the store, or a directory outside of the store." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26729 +#: guix-git/doc/guix.texi:27066 #, no-wrap msgid "@code{static-path} (default: @code{\"/static/\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26731 +#: guix-git/doc/guix.texi:27068 msgid "The path under which the HTTPD service should serve the static files." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26732 +#: guix-git/doc/guix.texi:27069 #, no-wrap msgid "getmail-retriever-config" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26736 +#: guix-git/doc/guix.texi:27073 msgid "The getmail-retriever-configuration record value to use with Patchwork. Getmail will be configured with this value, the messages will be delivered to Patchwork." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26740 +#: guix-git/doc/guix.texi:27077 #, no-wrap msgid "{Data Type} patchwork-settings-module" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26745 +#: guix-git/doc/guix.texi:27082 msgid "Data type representing a settings module for Patchwork. Some of these settings relate directly to Patchwork, but others relate to Django, the web framework used by Patchwork, or the Django Rest Framework library. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26747 +#: guix-git/doc/guix.texi:27084 #, no-wrap msgid "@code{database-configuration} (default: @code{(patchwork-database-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26750 +#: guix-git/doc/guix.texi:27087 msgid "The database connection settings used for Patchwork. See the @code{} record type for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26751 +#: guix-git/doc/guix.texi:27088 #, no-wrap msgid "@code{secret-key-file} (default: @code{\"/etc/patchwork/django-secret-key\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26754 +#: guix-git/doc/guix.texi:27091 msgid "Patchwork, as a Django web application uses a secret key for cryptographically signing values. This file should contain a unique unpredictable value." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26757 +#: guix-git/doc/guix.texi:27094 msgid "If this file does not exist, it will be created and populated with a random value by the patchwork-setup shepherd service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26759 +#: guix-git/doc/guix.texi:27096 msgid "This setting relates to Django." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26760 +#: guix-git/doc/guix.texi:27097 #, no-wrap msgid "allowed-hosts" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26763 +#: guix-git/doc/guix.texi:27100 msgid "A list of valid hosts for this Patchwork service. This should at least include the domain specified in the @code{} record." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26765 guix-git/doc/guix.texi:26779 -#: guix-git/doc/guix.texi:26785 guix-git/doc/guix.texi:26791 +#: guix-git/doc/guix.texi:27102 guix-git/doc/guix.texi:27116 +#: guix-git/doc/guix.texi:27122 guix-git/doc/guix.texi:27128 msgid "This is a Django setting." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26766 +#: guix-git/doc/guix.texi:27103 #, no-wrap msgid "default-from-email" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26768 +#: guix-git/doc/guix.texi:27105 msgid "The email address from which Patchwork should send email by default." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26770 guix-git/doc/guix.texi:26796 -#: guix-git/doc/guix.texi:26801 guix-git/doc/guix.texi:26806 +#: guix-git/doc/guix.texi:27107 guix-git/doc/guix.texi:27133 +#: guix-git/doc/guix.texi:27138 guix-git/doc/guix.texi:27143 msgid "This is a Patchwork setting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26771 +#: guix-git/doc/guix.texi:27108 #, no-wrap msgid "@code{static-url} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26774 +#: guix-git/doc/guix.texi:27111 msgid "The URL to use when serving static assets. It can be part of a URL, or a full URL, but must end in a @code{/}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26777 +#: guix-git/doc/guix.texi:27114 msgid "If the default value is used, the @code{static-path} value from the @code{} record will be used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26780 +#: guix-git/doc/guix.texi:27117 #, no-wrap msgid "@code{admins} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26783 +#: guix-git/doc/guix.texi:27120 msgid "Email addresses to send the details of errors that occur. Each value should be a list containing two elements, the name and then the email address." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26789 +#: guix-git/doc/guix.texi:27126 msgid "Whether to run Patchwork in debug mode. If set to @code{#t}, detailed error messages will be shown." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26792 +#: guix-git/doc/guix.texi:27129 #, no-wrap msgid "@code{enable-rest-api?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26794 +#: guix-git/doc/guix.texi:27131 msgid "Whether to enable the Patchwork REST API." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26797 +#: guix-git/doc/guix.texi:27134 #, no-wrap msgid "@code{enable-xmlrpc?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26799 +#: guix-git/doc/guix.texi:27136 msgid "Whether to enable the XML RPC API." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26802 +#: guix-git/doc/guix.texi:27139 #, no-wrap msgid "@code{force-https-links?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26804 +#: guix-git/doc/guix.texi:27141 msgid "Whether to use HTTPS links on Patchwork pages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26809 +#: guix-git/doc/guix.texi:27146 msgid "Extra code to place at the end of the Patchwork settings module." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26813 +#: guix-git/doc/guix.texi:27150 #, no-wrap msgid "{Data Type} patchwork-database-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26815 +#: guix-git/doc/guix.texi:27152 msgid "Data type representing the database configuration for Patchwork." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26817 +#: guix-git/doc/guix.texi:27154 #, no-wrap msgid "@code{engine} (default: @code{\"django.db.backends.postgresql_psycopg2\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26819 +#: guix-git/doc/guix.texi:27156 msgid "The database engine to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26820 +#: guix-git/doc/guix.texi:27157 #, no-wrap msgid "@code{name} (default: @code{\"patchwork\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26822 +#: guix-git/doc/guix.texi:27159 msgid "The name of the database to use." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26825 +#: guix-git/doc/guix.texi:27162 msgid "The user to connect to the database as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26826 +#: guix-git/doc/guix.texi:27163 #, no-wrap msgid "@code{password} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26828 +#: guix-git/doc/guix.texi:27165 msgid "The password to use when connecting to the database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26829 +#: guix-git/doc/guix.texi:27166 #, no-wrap msgid "@code{host} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26831 +#: guix-git/doc/guix.texi:27168 msgid "The host to make the database connection to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26832 +#: guix-git/doc/guix.texi:27169 #, no-wrap msgid "@code{port} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26834 +#: guix-git/doc/guix.texi:27171 msgid "The port on which to connect to the database." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26838 +#: guix-git/doc/guix.texi:27175 #, no-wrap msgid "Mumi" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26840 +#: guix-git/doc/guix.texi:27177 #, no-wrap msgid "Mumi, Debbugs Web interface" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26841 +#: guix-git/doc/guix.texi:27178 #, no-wrap msgid "Debbugs, Mumi Web interface" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26846 +#: guix-git/doc/guix.texi:27183 msgid "@uref{https://git.elephly.net/gitweb.cgi?p=software/mumi.git, Mumi} is a Web interface to the Debbugs bug tracker, by default for @uref{https://bugs.gnu.org, the GNU instance}. Mumi is a Web server, but it also fetches and indexes mail retrieved from Debbugs." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26847 +#: guix-git/doc/guix.texi:27184 #, no-wrap msgid "{Scheme Variable} mumi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26849 +#: guix-git/doc/guix.texi:27186 msgid "This is the service type for Mumi." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26851 +#: guix-git/doc/guix.texi:27188 #, no-wrap msgid "{Data Type} mumi-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26854 +#: guix-git/doc/guix.texi:27191 msgid "Data type representing the Mumi service configuration. This type has the following fields:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26856 +#: guix-git/doc/guix.texi:27193 #, no-wrap msgid "@code{mumi} (default: @code{mumi})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26858 +#: guix-git/doc/guix.texi:27195 msgid "The Mumi package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26859 +#: guix-git/doc/guix.texi:27196 #, no-wrap msgid "@code{mailer?} (default: @code{#true})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26861 +#: guix-git/doc/guix.texi:27198 msgid "Whether to enable or disable the mailer component." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26862 +#: guix-git/doc/guix.texi:27199 #, no-wrap msgid "mumi-configuration-sender" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26864 +#: guix-git/doc/guix.texi:27201 msgid "The email address used as the sender for comments." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26865 +#: guix-git/doc/guix.texi:27202 #, no-wrap msgid "mumi-configuration-smtp" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26870 +#: guix-git/doc/guix.texi:27207 msgid "A URI to configure the SMTP settings for Mailutils. This could be something like @code{sendmail:///path/to/bin/msmtp} or any other URI supported by Mailutils. @xref{SMTP Mailboxes, SMTP Mailboxes,, mailutils, GNU@tie{}Mailutils}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26875 +#: guix-git/doc/guix.texi:27212 #, no-wrap msgid "FastCGI" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26876 +#: guix-git/doc/guix.texi:27213 #, no-wrap msgid "fastcgi" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26877 +#: guix-git/doc/guix.texi:27214 #, no-wrap msgid "fcgiwrap" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26884 +#: guix-git/doc/guix.texi:27221 msgid "FastCGI is an interface between the front-end and the back-end of a web service. It is a somewhat legacy facility; new web services should generally just talk HTTP between the front-end and the back-end. However there are a number of back-end services such as PHP or the optimized HTTP Git repository access that use FastCGI, so we have support for it in Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26891 +#: guix-git/doc/guix.texi:27228 msgid "To use FastCGI, you configure the front-end web server (e.g., nginx) to dispatch some subset of its requests to the fastcgi backend, which listens on a local TCP or UNIX socket. There is an intermediary @code{fcgiwrap} program that sits between the actual backend process and the web server. The front-end indicates which backend program to run, passing that information to the @code{fcgiwrap} process." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26892 +#: guix-git/doc/guix.texi:27229 #, no-wrap msgid "{Scheme Variable} fcgiwrap-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26894 +#: guix-git/doc/guix.texi:27231 msgid "A service type for the @code{fcgiwrap} FastCGI proxy." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26896 +#: guix-git/doc/guix.texi:27233 #, no-wrap msgid "{Data Type} fcgiwrap-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26899 +#: guix-git/doc/guix.texi:27236 msgid "Data type representing the configuration of the @code{fcgiwrap} service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26900 +#: guix-git/doc/guix.texi:27237 #, no-wrap msgid "@code{package} (default: @code{fcgiwrap})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26902 +#: guix-git/doc/guix.texi:27239 msgid "The fcgiwrap package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26903 +#: guix-git/doc/guix.texi:27240 #, no-wrap msgid "@code{socket} (default: @code{tcp:127.0.0.1:9000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26909 +#: guix-git/doc/guix.texi:27246 msgid "The socket on which the @code{fcgiwrap} process should listen, as a string. Valid @var{socket} values include @code{unix:@var{/path/to/unix/socket}}, @code{tcp:@var{dot.ted.qu.ad}:@var{port}} and @code{tcp6:[@var{ipv6_addr}]:port}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26910 +#: guix-git/doc/guix.texi:27247 #, no-wrap msgid "@code{user} (default: @code{fcgiwrap})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:26911 +#: guix-git/doc/guix.texi:27248 #, no-wrap msgid "@code{group} (default: @code{fcgiwrap})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26916 +#: guix-git/doc/guix.texi:27253 msgid "The user and group names, as strings, under which to run the @code{fcgiwrap} process. The @code{fastcgi} service will ensure that if the user asks for the specific user or group names @code{fcgiwrap} that the corresponding user and/or group is present on the system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26923 +#: guix-git/doc/guix.texi:27260 msgid "It is possible to configure a FastCGI-backed web service to pass HTTP authentication information from the front-end to the back-end, and to allow @code{fcgiwrap} to run the back-end process as a corresponding local user. To enable this capability on the back-end, run @code{fcgiwrap} as the @code{root} user and group. Note that this capability also has to be configured on the front-end as well." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26926 +#: guix-git/doc/guix.texi:27263 #, no-wrap msgid "php-fpm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26929 +#: guix-git/doc/guix.texi:27266 msgid "PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI implementation with some additional features useful for sites of any size." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26931 +#: guix-git/doc/guix.texi:27268 msgid "These features include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26932 +#: guix-git/doc/guix.texi:27269 #, no-wrap msgid "Adaptive process spawning" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26933 +#: guix-git/doc/guix.texi:27270 #, no-wrap msgid "Basic statistics (similar to Apache's mod_status)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26934 +#: guix-git/doc/guix.texi:27271 #, no-wrap msgid "Advanced process management with graceful stop/start" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26935 +#: guix-git/doc/guix.texi:27272 #, no-wrap msgid "Ability to start workers with different uid/gid/chroot/environment" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:26937 +#: guix-git/doc/guix.texi:27274 msgid "and different php.ini (replaces safe_mode)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26937 +#: guix-git/doc/guix.texi:27274 #, no-wrap msgid "Stdout & stderr logging" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26938 +#: guix-git/doc/guix.texi:27275 #, no-wrap msgid "Emergency restart in case of accidental opcode cache destruction" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26939 +#: guix-git/doc/guix.texi:27276 #, no-wrap msgid "Accelerated upload support" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26940 +#: guix-git/doc/guix.texi:27277 #, no-wrap msgid "Support for a \"slowlog\"" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26941 +#: guix-git/doc/guix.texi:27278 #, no-wrap msgid "Enhancements to FastCGI, such as fastcgi_finish_request() -" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:26944 +#: guix-git/doc/guix.texi:27281 msgid "a special function to finish request & flush all data while continuing to do something time-consuming (video converting, stats processing, etc.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26946 +#: guix-git/doc/guix.texi:27283 msgid "...@: and much more." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26947 +#: guix-git/doc/guix.texi:27284 #, no-wrap msgid "{Scheme Variable} php-fpm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26949 +#: guix-git/doc/guix.texi:27286 msgid "A Service type for @code{php-fpm}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26951 +#: guix-git/doc/guix.texi:27288 #, no-wrap msgid "{Data Type} php-fpm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26953 +#: guix-git/doc/guix.texi:27290 msgid "Data Type for php-fpm service configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26954 +#: guix-git/doc/guix.texi:27291 #, no-wrap msgid "@code{php} (default: @code{php})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26956 +#: guix-git/doc/guix.texi:27293 msgid "The php package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26956 +#: guix-git/doc/guix.texi:27293 #, no-wrap msgid "@code{socket} (default: @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.sock\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26958 +#: guix-git/doc/guix.texi:27295 msgid "The address on which to accept FastCGI requests. Valid syntaxes are:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26959 +#: guix-git/doc/guix.texi:27296 #, no-wrap msgid "\"ip.add.re.ss:port\"" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26961 +#: guix-git/doc/guix.texi:27298 msgid "Listen on a TCP socket to a specific address on a specific port." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26961 +#: guix-git/doc/guix.texi:27298 #, no-wrap msgid "\"port\"" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26963 +#: guix-git/doc/guix.texi:27300 msgid "Listen on a TCP socket to all addresses on a specific port." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26963 +#: guix-git/doc/guix.texi:27300 #, no-wrap msgid "\"/path/to/unix/socket\"" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26965 +#: guix-git/doc/guix.texi:27302 msgid "Listen on a unix socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26967 +#: guix-git/doc/guix.texi:27304 #, no-wrap msgid "@code{user} (default: @code{php-fpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26969 +#: guix-git/doc/guix.texi:27306 msgid "User who will own the php worker processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26969 +#: guix-git/doc/guix.texi:27306 #, no-wrap msgid "@code{group} (default: @code{php-fpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26971 +#: guix-git/doc/guix.texi:27308 msgid "Group of the worker processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26971 +#: guix-git/doc/guix.texi:27308 #, no-wrap msgid "@code{socket-user} (default: @code{php-fpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26973 +#: guix-git/doc/guix.texi:27310 msgid "User who can speak to the php-fpm socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26973 +#: guix-git/doc/guix.texi:27310 #, no-wrap msgid "@code{socket-group} (default: @code{nginx})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26975 +#: guix-git/doc/guix.texi:27312 msgid "Group that can speak to the php-fpm socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26975 +#: guix-git/doc/guix.texi:27312 #, no-wrap msgid "@code{pid-file} (default: @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.pid\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26978 +#: guix-git/doc/guix.texi:27315 msgid "The process id of the php-fpm process is written to this file once the service has started." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26978 +#: guix-git/doc/guix.texi:27315 #, no-wrap msgid "@code{log-file} (default: @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.log\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26980 +#: guix-git/doc/guix.texi:27317 msgid "Log for the php-fpm master process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26980 +#: guix-git/doc/guix.texi:27317 #, no-wrap msgid "@code{process-manager} (default: @code{(php-fpm-dynamic-process-manager-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26983 +#: guix-git/doc/guix.texi:27320 msgid "Detailed settings for the php-fpm process manager. Must be one of:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26984 +#: guix-git/doc/guix.texi:27321 #, no-wrap msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26985 +#: guix-git/doc/guix.texi:27322 #, no-wrap msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26986 +#: guix-git/doc/guix.texi:27323 #, no-wrap msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26988 +#: guix-git/doc/guix.texi:27325 #, no-wrap msgid "@code{display-errors} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26993 +#: guix-git/doc/guix.texi:27330 msgid "Determines whether php errors and warning should be sent to clients and displayed in their browsers. This is useful for local php development, but a security risk for public sites, as error messages can reveal passwords and personal data." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26993 +#: guix-git/doc/guix.texi:27330 #, no-wrap msgid "@code{timezone} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26995 +#: guix-git/doc/guix.texi:27332 msgid "Specifies @code{php_admin_value[date.timezone]} parameter." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26995 +#: guix-git/doc/guix.texi:27332 #, no-wrap msgid "@code{workers-logfile} (default @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.www.log\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26998 +#: guix-git/doc/guix.texi:27335 msgid "This file will log the @code{stderr} outputs of php worker processes. Can be set to @code{#f} to disable logging." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26998 +#: guix-git/doc/guix.texi:27335 #, no-wrap msgid "@code{file} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27001 +#: guix-git/doc/guix.texi:27338 msgid "An optional override of the whole configuration. You can use the @code{mixed-text-file} function or an absolute filepath for it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27001 +#: guix-git/doc/guix.texi:27338 #, no-wrap msgid "@code{php-ini-file} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27005 +#: guix-git/doc/guix.texi:27342 msgid "An optional override of the default php settings. It may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). You can use the @code{mixed-text-file} function or an absolute filepath for it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27009 +#: guix-git/doc/guix.texi:27346 msgid "For local development it is useful to set a higher timeout and memory limit for spawned php processes. This be accomplished with the following operating system configuration snippet:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27014 +#: guix-git/doc/guix.texi:27351 #, no-wrap msgid "" "(define %local-php-ini\n" @@ -48165,7 +48785,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27021 +#: guix-git/doc/guix.texi:27358 #, no-wrap msgid "" "(operating-system\n" @@ -48177,118 +48797,118 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27026 +#: guix-git/doc/guix.texi:27363 msgid "Consult the @url{https://www.php.net/manual/en/ini.core.php,core php.ini directives} for comprehensive documentation on the acceptable @file{php.ini} directives." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27029 +#: guix-git/doc/guix.texi:27366 #, no-wrap msgid "{Data type} php-fpm-dynamic-process-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27033 +#: guix-git/doc/guix.texi:27370 msgid "Data Type for the @code{dynamic} php-fpm process manager. With the @code{dynamic} process manager, spare worker processes are kept around based on its configured limits." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27034 guix-git/doc/guix.texi:27050 -#: guix-git/doc/guix.texi:27060 +#: guix-git/doc/guix.texi:27371 guix-git/doc/guix.texi:27387 +#: guix-git/doc/guix.texi:27397 #, no-wrap msgid "@code{max-children} (default: @code{5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27036 guix-git/doc/guix.texi:27052 -#: guix-git/doc/guix.texi:27062 +#: guix-git/doc/guix.texi:27373 guix-git/doc/guix.texi:27389 +#: guix-git/doc/guix.texi:27399 msgid "Maximum of worker processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27036 +#: guix-git/doc/guix.texi:27373 #, no-wrap msgid "@code{start-servers} (default: @code{2})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27038 +#: guix-git/doc/guix.texi:27375 msgid "How many worker processes should be started on start-up." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27038 +#: guix-git/doc/guix.texi:27375 #, no-wrap msgid "@code{min-spare-servers} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27040 +#: guix-git/doc/guix.texi:27377 msgid "How many spare worker processes should be kept around at minimum." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27040 +#: guix-git/doc/guix.texi:27377 #, no-wrap msgid "@code{max-spare-servers} (default: @code{3})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27042 +#: guix-git/doc/guix.texi:27379 msgid "How many spare worker processes should be kept around at maximum." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27045 +#: guix-git/doc/guix.texi:27382 #, no-wrap msgid "{Data type} php-fpm-static-process-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27049 +#: guix-git/doc/guix.texi:27386 msgid "Data Type for the @code{static} php-fpm process manager. With the @code{static} process manager, an unchanging number of worker processes are created." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27055 +#: guix-git/doc/guix.texi:27392 #, no-wrap msgid "{Data type} php-fpm-on-demand-process-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27059 +#: guix-git/doc/guix.texi:27396 msgid "Data Type for the @code{on-demand} php-fpm process manager. With the @code{on-demand} process manager, worker processes are only created as requests arrive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27062 +#: guix-git/doc/guix.texi:27399 #, no-wrap msgid "@code{process-idle-timeout} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27064 +#: guix-git/doc/guix.texi:27401 msgid "The time in seconds after which a process with no requests is killed." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27068 +#: guix-git/doc/guix.texi:27405 #, no-wrap msgid "{Scheme Procedure} nginx-php-location @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27074 +#: guix-git/doc/guix.texi:27411 msgid "[#:nginx-package nginx] @ [socket (string-append \"/var/run/php\" @ (version-major (package-version php)) @ \"-fpm.sock\")] A helper function to quickly add php to an @code{nginx-server-configuration}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27077 +#: guix-git/doc/guix.texi:27414 msgid "A simple services setup for nginx with php can look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27090 +#: guix-git/doc/guix.texi:27427 #, no-wrap msgid "" "(services (cons* (service dhcp-client-service-type)\n" @@ -48306,34 +48926,34 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27092 +#: guix-git/doc/guix.texi:27429 #, no-wrap msgid "cat-avatar-generator" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27096 +#: guix-git/doc/guix.texi:27433 msgid "The cat avatar generator is a simple service to demonstrate the use of php-fpm in @code{Nginx}. It is used to generate cat avatar from a seed, for instance the hash of a user's email address." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27097 +#: guix-git/doc/guix.texi:27434 #, no-wrap msgid "{Scheme Procedure} cat-avatar-generator-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27105 +#: guix-git/doc/guix.texi:27442 msgid "[#:cache-dir \"/var/cache/cat-avatar-generator\"] @ [#:package cat-avatar-generator] @ [#:configuration (nginx-server-configuration)] Returns an nginx-server-configuration that inherits @code{configuration}. It extends the nginx configuration to add a server block that serves @code{package}, a version of cat-avatar-generator. During execution, cat-avatar-generator will be able to use @code{cache-dir} as its cache directory." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27108 +#: guix-git/doc/guix.texi:27445 msgid "A simple setup for cat-avatar-generator can look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27115 +#: guix-git/doc/guix.texi:27452 #, no-wrap msgid "" "(services (cons* (cat-avatar-generator-service\n" @@ -48345,177 +48965,177 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27117 +#: guix-git/doc/guix.texi:27454 #, no-wrap msgid "Hpcguix-web" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27119 +#: guix-git/doc/guix.texi:27456 #, no-wrap msgid "hpcguix-web" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27124 +#: guix-git/doc/guix.texi:27461 msgid "The @uref{https://github.com/UMCUGenetics/hpcguix-web/, hpcguix-web} program is a customizable web interface to browse Guix packages, initially designed for users of high-performance computing (HPC) clusters." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27125 +#: guix-git/doc/guix.texi:27462 #, no-wrap msgid "{Scheme Variable} hpcguix-web-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27127 +#: guix-git/doc/guix.texi:27464 msgid "The service type for @code{hpcguix-web}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27129 +#: guix-git/doc/guix.texi:27466 #, no-wrap msgid "{Data Type} hpcguix-web-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27131 +#: guix-git/doc/guix.texi:27468 msgid "Data type for the hpcguix-web service configuration." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:27133 +#: guix-git/doc/guix.texi:27470 #, no-wrap msgid "specs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27136 +#: guix-git/doc/guix.texi:27473 msgid "A gexp (@pxref{G-Expressions}) specifying the hpcguix-web service configuration. The main items available in this spec are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27138 +#: guix-git/doc/guix.texi:27475 #, no-wrap msgid "@code{title-prefix} (default: @code{\"hpcguix | \"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27140 +#: guix-git/doc/guix.texi:27477 msgid "The page title prefix." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27141 +#: guix-git/doc/guix.texi:27478 #, no-wrap msgid "@code{guix-command} (default: @code{\"guix\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27143 +#: guix-git/doc/guix.texi:27480 msgid "The @command{guix} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27144 +#: guix-git/doc/guix.texi:27481 #, no-wrap msgid "@code{package-filter-proc} (default: @code{(const #t)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27146 +#: guix-git/doc/guix.texi:27483 msgid "A procedure specifying how to filter packages that are displayed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27147 +#: guix-git/doc/guix.texi:27484 #, no-wrap msgid "@code{package-page-extension-proc} (default: @code{(const '())})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27149 +#: guix-git/doc/guix.texi:27486 msgid "Extension package for @code{hpcguix-web}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27150 +#: guix-git/doc/guix.texi:27487 #, no-wrap msgid "@code{menu} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27152 +#: guix-git/doc/guix.texi:27489 msgid "Additional entry in page @code{menu}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27153 +#: guix-git/doc/guix.texi:27490 #, no-wrap msgid "@code{channels} (default: @code{%default-channels})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27155 +#: guix-git/doc/guix.texi:27492 msgid "List of channels from which the package list is built (@pxref{Channels})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27156 +#: guix-git/doc/guix.texi:27493 #, no-wrap msgid "@code{package-list-expiration} (default: @code{(* 12 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27159 +#: guix-git/doc/guix.texi:27496 msgid "The expiration time, in seconds, after which the package list is rebuilt from the latest instances of the given channels." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27164 +#: guix-git/doc/guix.texi:27501 msgid "See the hpcguix-web repository for a @uref{https://github.com/UMCUGenetics/hpcguix-web/blob/master/hpcweb-configuration.scm, complete example}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27165 +#: guix-git/doc/guix.texi:27502 #, no-wrap msgid "@code{package} (default: @code{hpcguix-web})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27167 +#: guix-git/doc/guix.texi:27504 msgid "The hpcguix-web package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27168 +#: guix-git/doc/guix.texi:27505 #, no-wrap msgid "@code{address} (default: @code{\"127.0.0.1\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27170 +#: guix-git/doc/guix.texi:27507 msgid "The IP address to listen to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27171 +#: guix-git/doc/guix.texi:27508 #, no-wrap msgid "@code{port} (default: @code{5000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27173 +#: guix-git/doc/guix.texi:27510 msgid "The port number to listen to." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27177 +#: guix-git/doc/guix.texi:27514 msgid "A typical hpcguix-web service declaration looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27186 +#: guix-git/doc/guix.texi:27523 #, no-wrap msgid "" "(service hpcguix-web-service-type\n" @@ -48528,39 +49148,39 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:27193 +#: guix-git/doc/guix.texi:27530 msgid "The hpcguix-web service periodically updates the package list it publishes by pulling channels from Git. To that end, it needs to access X.509 certificates so that it can authenticate Git servers when communicating over HTTPS, and it assumes that @file{/etc/ssl/certs} contains those certificates." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:27197 +#: guix-git/doc/guix.texi:27534 msgid "Thus, make sure to add @code{nss-certs} or another certificate package to the @code{packages} field of your configuration. @ref{X.509 Certificates}, for more information on X.509 certificates." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27199 guix-git/doc/guix.texi:27201 +#: guix-git/doc/guix.texi:27536 guix-git/doc/guix.texi:27538 #, no-wrap msgid "gmnisrv" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27204 +#: guix-git/doc/guix.texi:27541 msgid "The @uref{https://git.sr.ht/~sircmpwn/gmnisrv, gmnisrv} program is a simple @uref{https://gemini.circumlunar.space/, Gemini} protocol server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27205 +#: guix-git/doc/guix.texi:27542 #, no-wrap msgid "{Scheme Variable} gmnisrv-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27208 +#: guix-git/doc/guix.texi:27545 msgid "This is the type of the gmnisrv service, whose value should be a @code{gmnisrv-configuration} object, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27213 +#: guix-git/doc/guix.texi:27550 #, no-wrap msgid "" "(service gmnisrv-service-type\n" @@ -48569,68 +49189,68 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27216 +#: guix-git/doc/guix.texi:27553 #, no-wrap msgid "{Data Type} gmnisrv-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27218 +#: guix-git/doc/guix.texi:27555 msgid "Data type representing the configuration of gmnisrv." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27220 +#: guix-git/doc/guix.texi:27557 #, no-wrap msgid "@code{package} (default: @var{gmnisrv})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27222 +#: guix-git/doc/guix.texi:27559 msgid "Package object of the gmnisrv server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27223 +#: guix-git/doc/guix.texi:27560 #, no-wrap msgid "@code{config-file} (default: @code{%default-gmnisrv-config-file})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27229 +#: guix-git/doc/guix.texi:27566 msgid "File-like object of the gmnisrv configuration file to use. The default configuration listens on port 1965 and serves files from @file{/srv/gemini}. Certificates are stored in @file{/var/lib/gemini/certs}. For more information, run @command{man gmnisrv} and @command{man gmnisrv.ini}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27233 +#: guix-git/doc/guix.texi:27570 #, no-wrap msgid "Agate" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27235 +#: guix-git/doc/guix.texi:27572 #, no-wrap msgid "agate" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27240 +#: guix-git/doc/guix.texi:27577 msgid "The @uref{gemini://qwertqwefsday.eu/agate.gmi, Agate} (@uref{https://github.com/mbrubeck/agate, GitHub page over HTTPS}) program is a simple @uref{https://gemini.circumlunar.space/, Gemini} protocol server written in Rust." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27241 +#: guix-git/doc/guix.texi:27578 #, no-wrap msgid "{Scheme Variable} agate-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27244 +#: guix-git/doc/guix.texi:27581 msgid "This is the type of the agate service, whose value should be an @code{agate-service-type} object, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27251 +#: guix-git/doc/guix.texi:27588 #, no-wrap msgid "" "(service agate-service-type\n" @@ -48641,17 +49261,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27256 +#: guix-git/doc/guix.texi:27593 msgid "The example above represents the minimal tweaking necessary to get Agate up and running. Specifying the path to the certificate and key is always necessary, as the Gemini protocol requires TLS by default." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27259 +#: guix-git/doc/guix.texi:27596 msgid "To obtain a certificate and a key, you could, for example, use OpenSSL, running a command similar to the following example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:27263 +#: guix-git/doc/guix.texi:27600 #, no-wrap msgid "" "openssl req -x509 -newkey rsa:4096 -keyout key.rsa -out cert.pem \\\n" @@ -48659,220 +49279,220 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27268 +#: guix-git/doc/guix.texi:27605 msgid "Of course, you'll have to replace @i{example.com} with your own domain name, and then point the Agate configuration towards the path of the generated key and certificate." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27271 +#: guix-git/doc/guix.texi:27608 #, no-wrap msgid "{Data Type} agate-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27273 +#: guix-git/doc/guix.texi:27610 msgid "Data type representing the configuration of Agate." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27275 +#: guix-git/doc/guix.texi:27612 #, no-wrap msgid "@code{package} (default: @code{agate})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27277 +#: guix-git/doc/guix.texi:27614 msgid "The package object of the Agate server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27278 +#: guix-git/doc/guix.texi:27615 #, no-wrap msgid "@code{content} (default: @file{\"/srv/gemini\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27280 +#: guix-git/doc/guix.texi:27617 msgid "The directory from which Agate will serve files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27281 +#: guix-git/doc/guix.texi:27618 #, no-wrap msgid "@code{cert} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27284 +#: guix-git/doc/guix.texi:27621 msgid "The path to the TLS certificate PEM file to be used for encrypted connections. Must be filled in with a value from the user." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27285 guix-git/doc/guix.texi:27721 +#: guix-git/doc/guix.texi:27622 guix-git/doc/guix.texi:28058 #, no-wrap msgid "@code{key} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27288 +#: guix-git/doc/guix.texi:27625 msgid "The path to the PKCS8 private key file to be used for encrypted connections. Must be filled in with a value from the user." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27289 +#: guix-git/doc/guix.texi:27626 #, no-wrap msgid "@code{addr} (default: @code{'(\"0.0.0.0:1965\" \"[::]:1965\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27291 +#: guix-git/doc/guix.texi:27628 msgid "A list of the addresses to listen on." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27294 +#: guix-git/doc/guix.texi:27631 msgid "The domain name of this Gemini server. Optional." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27295 +#: guix-git/doc/guix.texi:27632 #, no-wrap msgid "@code{lang} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27297 +#: guix-git/doc/guix.texi:27634 msgid "RFC 4646 language code(s) for text/gemini documents. Optional." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27298 +#: guix-git/doc/guix.texi:27635 #, no-wrap msgid "@code{silent?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27300 +#: guix-git/doc/guix.texi:27637 msgid "Set to @code{#t} to disable logging output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27301 +#: guix-git/doc/guix.texi:27638 #, no-wrap msgid "@code{serve-secret?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27304 +#: guix-git/doc/guix.texi:27641 msgid "Set to @code{#t} to serve secret files (files/directories starting with a dot)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27305 +#: guix-git/doc/guix.texi:27642 #, no-wrap msgid "@code{log-ip?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27307 +#: guix-git/doc/guix.texi:27644 msgid "Whether or not to output IP addresses when logging." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27308 +#: guix-git/doc/guix.texi:27645 #, no-wrap msgid "@code{user} (default: @code{\"agate\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27310 +#: guix-git/doc/guix.texi:27647 msgid "Owner of the @code{agate} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27311 +#: guix-git/doc/guix.texi:27648 #, no-wrap msgid "@code{group} (default: @code{\"agate\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27313 +#: guix-git/doc/guix.texi:27650 msgid "Owner's group of the @code{agate} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27314 +#: guix-git/doc/guix.texi:27651 #, no-wrap msgid "@code{log-file} (default: @file{\"/var/log/agate.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27316 +#: guix-git/doc/guix.texi:27653 msgid "The file which should store the logging output of Agate." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27323 +#: guix-git/doc/guix.texi:27660 #, no-wrap msgid "Web" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27324 +#: guix-git/doc/guix.texi:27661 #, no-wrap msgid "HTTP, HTTPS" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27325 +#: guix-git/doc/guix.texi:27662 #, no-wrap msgid "Let's Encrypt" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27326 +#: guix-git/doc/guix.texi:27663 #, no-wrap msgid "TLS certificates" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27333 +#: guix-git/doc/guix.texi:27670 msgid "The @code{(gnu services certbot)} module provides a service to automatically obtain a valid TLS certificate from the Let's Encrypt certificate authority. These certificates can then be used to serve content securely over HTTPS or other TLS-based protocols, with the knowledge that the client will be able to verify the server's authenticity." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27345 +#: guix-git/doc/guix.texi:27682 msgid "@url{https://letsencrypt.org/, Let's Encrypt} provides the @code{certbot} tool to automate the certification process. This tool first securely generates a key on the server. It then makes a request to the Let's Encrypt certificate authority (CA) to sign the key. The CA checks that the request originates from the host in question by using a challenge-response protocol, requiring the server to provide its response over HTTP@. If that protocol completes successfully, the CA signs the key, resulting in a certificate. That certificate is valid for a limited period of time, and therefore to continue to provide TLS services, the server needs to periodically ask the CA to renew its signature." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27352 +#: guix-git/doc/guix.texi:27689 msgid "The certbot service automates this process: the initial key generation, the initial certification request to the Let's Encrypt service, the web server challenge/response integration, writing the certificate to disk, the automated periodic renewals, and the deployment tasks associated with the renewal (e.g.@: reloading services, copying keys with different permissions)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27358 +#: guix-git/doc/guix.texi:27695 msgid "Certbot is run twice a day, at a random minute within the hour. It won't do anything until your certificates are due for renewal or revoked, but running it regularly would give your service a chance of staying online in case a Let's Encrypt-initiated revocation happened for some reason." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27362 +#: guix-git/doc/guix.texi:27699 msgid "By using this service, you agree to the ACME Subscriber Agreement, which can be found there: @url{https://acme-v01.api.letsencrypt.org/directory}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27363 +#: guix-git/doc/guix.texi:27700 #, no-wrap msgid "{Scheme Variable} certbot-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27366 +#: guix-git/doc/guix.texi:27703 msgid "A service type for the @code{certbot} Let's Encrypt client. Its value must be a @code{certbot-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27373 +#: guix-git/doc/guix.texi:27710 #, no-wrap msgid "" "(define %nginx-deploy-hook\n" @@ -48884,7 +49504,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27384 +#: guix-git/doc/guix.texi:27721 #, no-wrap msgid "" "(service certbot-service-type\n" @@ -48900,241 +49520,241 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27387 +#: guix-git/doc/guix.texi:27724 msgid "See below for details about @code{certbot-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27389 +#: guix-git/doc/guix.texi:27726 #, no-wrap msgid "{Data Type} certbot-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27392 +#: guix-git/doc/guix.texi:27729 msgid "Data type representing the configuration of the @code{certbot} service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27394 +#: guix-git/doc/guix.texi:27731 #, no-wrap msgid "@code{package} (default: @code{certbot})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27396 +#: guix-git/doc/guix.texi:27733 msgid "The certbot package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27397 +#: guix-git/doc/guix.texi:27734 #, no-wrap msgid "@code{webroot} (default: @code{/var/www})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27400 +#: guix-git/doc/guix.texi:27737 msgid "The directory from which to serve the Let's Encrypt challenge/response files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27401 +#: guix-git/doc/guix.texi:27738 #, no-wrap msgid "@code{certificates} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27405 +#: guix-git/doc/guix.texi:27742 msgid "A list of @code{certificates-configuration}s for which to generate certificates and request signatures. Each certificate has a @code{name} and several @code{domains}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27406 +#: guix-git/doc/guix.texi:27743 #, no-wrap msgid "@code{email} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27410 +#: guix-git/doc/guix.texi:27747 msgid "Optional email address used for registration and recovery contact. Setting this is encouraged as it allows you to receive important notifications about the account and issued certificates." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27411 guix-git/doc/guix.texi:29158 +#: guix-git/doc/guix.texi:27748 guix-git/doc/guix.texi:29495 #, no-wrap msgid "@code{server} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27414 +#: guix-git/doc/guix.texi:27751 msgid "Optional URL of ACME server. Setting this overrides certbot's default, which is the Let's Encrypt server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27415 +#: guix-git/doc/guix.texi:27752 #, no-wrap msgid "@code{rsa-key-size} (default: @code{2048})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27417 +#: guix-git/doc/guix.texi:27754 msgid "Size of the RSA key." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27418 +#: guix-git/doc/guix.texi:27755 #, no-wrap msgid "@code{default-location} (default: @i{see below})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27427 +#: guix-git/doc/guix.texi:27764 msgid "The default @code{nginx-location-configuration}. Because @code{certbot} needs to be able to serve challenges and responses, it needs to be able to run a web server. It does so by extending the @code{nginx} web service with an @code{nginx-server-configuration} listening on the @var{domains} on port 80, and which has a @code{nginx-location-configuration} for the @code{/.well-known/} URI path subspace used by Let's Encrypt. @xref{Web Services}, for more on these nginx configuration data types." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27431 +#: guix-git/doc/guix.texi:27768 msgid "Requests to other URL paths will be matched by the @code{default-location}, which if present is added to all @code{nginx-server-configuration}s." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27435 +#: guix-git/doc/guix.texi:27772 msgid "By default, the @code{default-location} will issue a redirect from @code{http://@var{domain}/...} to @code{https://@var{domain}/...}, leaving you to define what to serve on your site via @code{https}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27437 +#: guix-git/doc/guix.texi:27774 msgid "Pass @code{#f} to not issue a default location." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27440 +#: guix-git/doc/guix.texi:27777 #, no-wrap msgid "{Data Type} certificate-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27443 +#: guix-git/doc/guix.texi:27780 msgid "Data type representing the configuration of a certificate. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27445 +#: guix-git/doc/guix.texi:27782 #, no-wrap msgid "@code{name} (default: @i{see below})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27449 +#: guix-git/doc/guix.texi:27786 msgid "This name is used by Certbot for housekeeping and in file paths; it doesn't affect the content of the certificate itself. To see certificate names, run @code{certbot certificates}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27451 +#: guix-git/doc/guix.texi:27788 msgid "Its default is the first provided domain." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27452 +#: guix-git/doc/guix.texi:27789 #, no-wrap msgid "@code{domains} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27455 +#: guix-git/doc/guix.texi:27792 msgid "The first domain provided will be the subject CN of the certificate, and all domains will be Subject Alternative Names on the certificate." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27456 +#: guix-git/doc/guix.texi:27793 #, no-wrap msgid "@code{challenge} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27463 +#: guix-git/doc/guix.texi:27800 msgid "The challenge type that has to be run by certbot. If @code{#f} is specified, default to the HTTP challenge. If a value is specified, defaults to the manual plugin (see @code{authentication-hook}, @code{cleanup-hook} and the documentation at @url{https://certbot.eff.org/docs/using.html#hooks}), and gives Let's Encrypt permission to log the public IP address of the requesting machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27464 +#: guix-git/doc/guix.texi:27801 #, no-wrap msgid "@code{csr} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27471 +#: guix-git/doc/guix.texi:27808 msgid "File name of Certificate Signing Request (CSR) in DER or PEM format. If @code{#f} is specified, this argument will not be passed to certbot. If a value is specified, certbot will use it to obtain a certificate, instead of using a self-generated CSR. The domain-name(s) mentioned in @code{domains}, must be consistent with the domain-name(s) mentioned in CSR file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27472 +#: guix-git/doc/guix.texi:27809 #, no-wrap msgid "@code{authentication-hook} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27478 +#: guix-git/doc/guix.texi:27815 msgid "Command to be run in a shell once for each certificate challenge to be answered. For this command, the shell variable @code{$CERTBOT_DOMAIN} will contain the domain being authenticated, @code{$CERTBOT_VALIDATION} contains the validation string and @code{$CERTBOT_TOKEN} contains the file name of the resource requested when performing an HTTP-01 challenge." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27479 +#: guix-git/doc/guix.texi:27816 #, no-wrap msgid "@code{cleanup-hook} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27485 +#: guix-git/doc/guix.texi:27822 msgid "Command to be run in a shell once for each certificate challenge that have been answered by the @code{auth-hook}. For this command, the shell variables available in the @code{auth-hook} script are still available, and additionally @code{$CERTBOT_AUTH_OUTPUT} will contain the standard output of the @code{auth-hook} script." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27486 +#: guix-git/doc/guix.texi:27823 #, no-wrap msgid "@code{deploy-hook} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27494 +#: guix-git/doc/guix.texi:27831 msgid "Command to be run in a shell once for each successfully issued certificate. For this command, the shell variable @code{$RENEWED_LINEAGE} will point to the config live subdirectory (for example, @samp{\"/etc/letsencrypt/live/example.com\"}) containing the new certificates and keys; the shell variable @code{$RENEWED_DOMAINS} will contain a space-delimited list of renewed certificate domains (for example, @samp{\"example.com www.example.com\"}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27501 +#: guix-git/doc/guix.texi:27838 msgid "For each @code{certificate-configuration}, the certificate is saved to @code{/etc/letsencrypt/live/@var{name}/fullchain.pem} and the key is saved to @code{/etc/letsencrypt/live/@var{name}/privkey.pem}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27503 +#: guix-git/doc/guix.texi:27840 #, no-wrap msgid "DNS (domain name system)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27504 +#: guix-git/doc/guix.texi:27841 #, no-wrap msgid "domain name system (DNS)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27512 +#: guix-git/doc/guix.texi:27849 msgid "The @code{(gnu services dns)} module provides services related to the @dfn{domain name system} (DNS). It provides a server service for hosting an @emph{authoritative} DNS server for multiple zones, slave or master. This service uses @uref{https://www.knot-dns.cz/, Knot DNS}. And also a caching and forwarding DNS server for the LAN, which uses @uref{http://www.thekelleys.org.uk/dnsmasq/doc.html, dnsmasq}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27513 +#: guix-git/doc/guix.texi:27850 #, no-wrap msgid "Knot Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27517 +#: guix-git/doc/guix.texi:27854 msgid "An example configuration of an authoritative server for two zones, one master and one slave, is:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27524 +#: guix-git/doc/guix.texi:27861 #, no-wrap msgid "" "(define-zone-entries example.org.zone\n" @@ -49146,7 +49766,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27531 +#: guix-git/doc/guix.texi:27868 #, no-wrap msgid "" "(define master-zone\n" @@ -49159,7 +49779,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27537 +#: guix-git/doc/guix.texi:27874 #, no-wrap msgid "" "(define slave-zone\n" @@ -49171,7 +49791,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27542 +#: guix-git/doc/guix.texi:27879 #, no-wrap msgid "" "(define plop-master\n" @@ -49182,7 +49802,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27551 +#: guix-git/doc/guix.texi:27888 #, no-wrap msgid "" "(operating-system\n" @@ -49196,857 +49816,857 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27553 +#: guix-git/doc/guix.texi:27890 #, no-wrap msgid "{Scheme Variable} knot-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27555 +#: guix-git/doc/guix.texi:27892 msgid "This is the type for the Knot DNS server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27563 +#: guix-git/doc/guix.texi:27900 msgid "Knot DNS is an authoritative DNS server, meaning that it can serve multiple zones, that is to say domain names you would buy from a registrar. This server is not a resolver, meaning that it can only resolve names for which it is authoritative. This server can be configured to serve zones as a master server or a slave server as a per-zone basis. Slave zones will get their data from masters, and will serve it as an authoritative server. From the point of view of a resolver, there is no difference between master and slave." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27565 +#: guix-git/doc/guix.texi:27902 msgid "The following data types are used to configure the Knot DNS server:" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27567 +#: guix-git/doc/guix.texi:27904 #, no-wrap msgid "{Data Type} knot-key-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27570 +#: guix-git/doc/guix.texi:27907 msgid "Data type representing a key. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27572 guix-git/doc/guix.texi:27592 -#: guix-git/doc/guix.texi:27707 guix-git/doc/guix.texi:27733 -#: guix-git/doc/guix.texi:27768 +#: guix-git/doc/guix.texi:27909 guix-git/doc/guix.texi:27929 +#: guix-git/doc/guix.texi:28044 guix-git/doc/guix.texi:28070 +#: guix-git/doc/guix.texi:28105 #, no-wrap msgid "@code{id} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27575 guix-git/doc/guix.texi:27595 +#: guix-git/doc/guix.texi:27912 guix-git/doc/guix.texi:27932 msgid "An identifier for other configuration fields to refer to this key. IDs must be unique and must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27576 +#: guix-git/doc/guix.texi:27913 #, no-wrap msgid "@code{algorithm} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27580 +#: guix-git/doc/guix.texi:27917 msgid "The algorithm to use. Choose between @code{#f}, @code{'hmac-md5}, @code{'hmac-sha1}, @code{'hmac-sha224}, @code{'hmac-sha256}, @code{'hmac-sha384} and @code{'hmac-sha512}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27581 +#: guix-git/doc/guix.texi:27918 #, no-wrap msgid "@code{secret} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27583 +#: guix-git/doc/guix.texi:27920 msgid "The secret key itself." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27587 +#: guix-git/doc/guix.texi:27924 #, no-wrap msgid "{Data Type} knot-acl-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27590 +#: guix-git/doc/guix.texi:27927 msgid "Data type representing an Access Control List (ACL) configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27596 guix-git/doc/guix.texi:27711 +#: guix-git/doc/guix.texi:27933 guix-git/doc/guix.texi:28048 #, no-wrap msgid "@code{address} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27600 +#: guix-git/doc/guix.texi:27937 msgid "An ordered list of IP addresses, network subnets, or network ranges represented with strings. The query must match one of them. Empty value means that address match is not required." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27601 +#: guix-git/doc/guix.texi:27938 #, no-wrap msgid "@code{key} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27605 +#: guix-git/doc/guix.texi:27942 msgid "An ordered list of references to keys represented with strings. The string must match a key ID defined in a @code{knot-key-configuration}. No key means that a key is not require to match that ACL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27606 +#: guix-git/doc/guix.texi:27943 #, no-wrap msgid "@code{action} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27610 +#: guix-git/doc/guix.texi:27947 msgid "An ordered list of actions that are permitted or forbidden by this ACL@. Possible values are lists of zero or more elements from @code{'transfer}, @code{'notify} and @code{'update}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27611 +#: guix-git/doc/guix.texi:27948 #, no-wrap msgid "@code{deny?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27614 +#: guix-git/doc/guix.texi:27951 msgid "When true, the ACL defines restrictions. Listed actions are forbidden. When false, listed actions are allowed." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27618 +#: guix-git/doc/guix.texi:27955 #, no-wrap msgid "{Data Type} zone-entry" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27621 +#: guix-git/doc/guix.texi:27958 msgid "Data type representing a record entry in a zone file. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27623 +#: guix-git/doc/guix.texi:27960 #, no-wrap msgid "@code{name} (default: @code{\"@@\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27629 +#: guix-git/doc/guix.texi:27966 msgid "The name of the record. @code{\"@@\"} refers to the origin of the zone. Names are relative to the origin of the zone. For example, in the @code{example.org} zone, @code{\"ns.example.org\"} actually refers to @code{ns.example.org.example.org}. Names ending with a dot are absolute, which means that @code{\"ns.example.org.\"} refers to @code{ns.example.org}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27630 +#: guix-git/doc/guix.texi:27967 #, no-wrap msgid "@code{ttl} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27632 +#: guix-git/doc/guix.texi:27969 msgid "The Time-To-Live (TTL) of this record. If not set, the default TTL is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27633 +#: guix-git/doc/guix.texi:27970 #, no-wrap msgid "@code{class} (default: @code{\"IN\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27636 +#: guix-git/doc/guix.texi:27973 msgid "The class of the record. Knot currently supports only @code{\"IN\"} and partially @code{\"CH\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27637 +#: guix-git/doc/guix.texi:27974 #, no-wrap msgid "@code{type} (default: @code{\"A\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27641 +#: guix-git/doc/guix.texi:27978 msgid "The type of the record. Common types include A (IPv4 address), AAAA (IPv6 address), NS (Name Server) and MX (Mail eXchange). Many other types are defined." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27642 +#: guix-git/doc/guix.texi:27979 #, no-wrap msgid "@code{data} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27646 +#: guix-git/doc/guix.texi:27983 msgid "The data contained in the record. For instance an IP address associated with an A record, or a domain name associated with an NS record. Remember that domain names are relative to the origin unless they end with a dot." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27650 +#: guix-git/doc/guix.texi:27987 #, no-wrap msgid "{Data Type} zone-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27653 +#: guix-git/doc/guix.texi:27990 msgid "Data type representing the content of a zone file. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27662 +#: guix-git/doc/guix.texi:27999 msgid "The list of entries. The SOA record is taken care of, so you don't need to put it in the list of entries. This list should probably contain an entry for your primary authoritative DNS server. Other than using a list of entries directly, you can use @code{define-zone-entries} to define a object containing the list of entries more easily, that you can later pass to the @code{entries} field of the @code{zone-file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27663 +#: guix-git/doc/guix.texi:28000 #, no-wrap msgid "@code{origin} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27665 +#: guix-git/doc/guix.texi:28002 msgid "The name of your zone. This parameter cannot be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27666 +#: guix-git/doc/guix.texi:28003 #, no-wrap msgid "@code{ns} (default: @code{\"ns\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27671 +#: guix-git/doc/guix.texi:28008 msgid "The domain of your primary authoritative DNS server. The name is relative to the origin, unless it ends with a dot. It is mandatory that this primary DNS server corresponds to an NS record in the zone and that it is associated to an IP address in the list of entries." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27672 +#: guix-git/doc/guix.texi:28009 #, no-wrap msgid "@code{mail} (default: @code{\"hostmaster\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27675 +#: guix-git/doc/guix.texi:28012 msgid "An email address people can contact you at, as the owner of the zone. This is translated as @code{@@}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27676 +#: guix-git/doc/guix.texi:28013 #, no-wrap msgid "@code{serial} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27680 +#: guix-git/doc/guix.texi:28017 msgid "The serial number of the zone. As this is used to keep track of changes by both slaves and resolvers, it is mandatory that it @emph{never} decreases. Always increment it when you make a change in your zone." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27681 +#: guix-git/doc/guix.texi:28018 #, no-wrap msgid "@code{refresh} (default: @code{(* 2 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27685 +#: guix-git/doc/guix.texi:28022 msgid "The frequency at which slaves will do a zone transfer. This value is a number of seconds. It can be computed by multiplications or with @code{(string->duration)}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27686 +#: guix-git/doc/guix.texi:28023 #, no-wrap msgid "@code{retry} (default: @code{(* 15 60)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27689 +#: guix-git/doc/guix.texi:28026 msgid "The period after which a slave will retry to contact its master when it fails to do so a first time." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27690 +#: guix-git/doc/guix.texi:28027 #, no-wrap msgid "@code{expiry} (default: @code{(* 14 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27694 +#: guix-git/doc/guix.texi:28031 msgid "Default TTL of records. Existing records are considered correct for at most this amount of time. After this period, resolvers will invalidate their cache and check again that it still exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27695 +#: guix-git/doc/guix.texi:28032 #, no-wrap msgid "@code{nx} (default: @code{3600})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27698 +#: guix-git/doc/guix.texi:28035 msgid "Default TTL of inexistent records. This delay is usually short because you want your new domains to reach everyone quickly." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27702 +#: guix-git/doc/guix.texi:28039 #, no-wrap msgid "{Data Type} knot-remote-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27705 +#: guix-git/doc/guix.texi:28042 msgid "Data type representing a remote configuration. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27710 +#: guix-git/doc/guix.texi:28047 msgid "An identifier for other configuration fields to refer to this remote. IDs must be unique and must not be empty." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27715 +#: guix-git/doc/guix.texi:28052 msgid "An ordered list of destination IP addresses. Addresses are tried in sequence. An optional port can be given with the @@ separator. For instance: @code{(list \"1.2.3.4\" \"2.3.4.5@@53\")}. Default port is 53." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27716 +#: guix-git/doc/guix.texi:28053 #, no-wrap msgid "@code{via} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27720 +#: guix-git/doc/guix.texi:28057 msgid "An ordered list of source IP addresses. An empty list will have Knot choose an appropriate source IP@. An optional port can be given with the @@ separator. The default is to choose at random." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27724 +#: guix-git/doc/guix.texi:28061 msgid "A reference to a key, that is a string containing the identifier of a key defined in a @code{knot-key-configuration} field." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27728 +#: guix-git/doc/guix.texi:28065 #, no-wrap msgid "{Data Type} knot-keystore-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27731 +#: guix-git/doc/guix.texi:28068 msgid "Data type representing a keystore to hold dnssec keys. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27735 +#: guix-git/doc/guix.texi:28072 msgid "The id of the keystore. It must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27736 +#: guix-git/doc/guix.texi:28073 #, no-wrap msgid "@code{backend} (default: @code{'pem})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27738 +#: guix-git/doc/guix.texi:28075 msgid "The backend to store the keys in. Can be @code{'pem} or @code{'pkcs11}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27739 +#: guix-git/doc/guix.texi:28076 #, no-wrap msgid "@code{config} (default: @code{\"/var/lib/knot/keys/keys\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27743 +#: guix-git/doc/guix.texi:28080 msgid "The configuration string of the backend. An example for the PKCS#11 is: @code{\"pkcs11:token=knot;pin-value=1234 /gnu/store/.../lib/pkcs11/libsofthsm2.so\"}. For the pem backend, the string represents a path in the file system." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27747 +#: guix-git/doc/guix.texi:28084 #, no-wrap msgid "{Data Type} knot-policy-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27751 +#: guix-git/doc/guix.texi:28088 msgid "Data type representing a dnssec policy. Knot DNS is able to automatically sign your zones. It can either generate and manage your keys automatically or use keys that you generate." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27758 +#: guix-git/doc/guix.texi:28095 msgid "Dnssec is usually implemented using two keys: a Key Signing Key (KSK) that is used to sign the second, and a Zone Signing Key (ZSK) that is used to sign the zone. In order to be trusted, the KSK needs to be present in the parent zone (usually a top-level domain). If your registrar supports dnssec, you will have to send them your KSK's hash so they can add a DS record in their zone. This is not automated and need to be done each time you change your KSK." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27764 +#: guix-git/doc/guix.texi:28101 msgid "The policy also defines the lifetime of keys. Usually, ZSK can be changed easily and use weaker cryptographic functions (they use lower parameters) in order to sign records quickly, so they are changed often. The KSK however requires manual interaction with the registrar, so they are changed less often and use stronger parameters because they sign only one record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27766 +#: guix-git/doc/guix.texi:28103 msgid "This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27770 +#: guix-git/doc/guix.texi:28107 msgid "The id of the policy. It must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27771 +#: guix-git/doc/guix.texi:28108 #, no-wrap msgid "@code{keystore} (default: @code{\"default\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27776 +#: guix-git/doc/guix.texi:28113 msgid "A reference to a keystore, that is a string containing the identifier of a keystore defined in a @code{knot-keystore-configuration} field. The @code{\"default\"} identifier means the default keystore (a kasp database that was setup by this service)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27777 +#: guix-git/doc/guix.texi:28114 #, no-wrap msgid "@code{manual?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27779 +#: guix-git/doc/guix.texi:28116 msgid "Whether the key management is manual or automatic." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27780 +#: guix-git/doc/guix.texi:28117 #, no-wrap msgid "@code{single-type-signing?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27782 +#: guix-git/doc/guix.texi:28119 msgid "When @code{#t}, use the Single-Type Signing Scheme." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27783 +#: guix-git/doc/guix.texi:28120 #, no-wrap msgid "@code{algorithm} (default: @code{\"ecdsap256sha256\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27785 +#: guix-git/doc/guix.texi:28122 msgid "An algorithm of signing keys and issued signatures." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27786 +#: guix-git/doc/guix.texi:28123 #, no-wrap msgid "@code{ksk-size} (default: @code{256})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27789 +#: guix-git/doc/guix.texi:28126 msgid "The length of the KSK@. Note that this value is correct for the default algorithm, but would be unsecure for other algorithms." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27790 +#: guix-git/doc/guix.texi:28127 #, no-wrap msgid "@code{zsk-size} (default: @code{256})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27793 +#: guix-git/doc/guix.texi:28130 msgid "The length of the ZSK@. Note that this value is correct for the default algorithm, but would be unsecure for other algorithms." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27794 +#: guix-git/doc/guix.texi:28131 #, no-wrap msgid "@code{dnskey-ttl} (default: @code{'default})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27797 +#: guix-git/doc/guix.texi:28134 msgid "The TTL value for DNSKEY records added into zone apex. The special @code{'default} value means same as the zone SOA TTL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27798 +#: guix-git/doc/guix.texi:28135 #, no-wrap msgid "@code{zsk-lifetime} (default: @code{(* 30 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27800 +#: guix-git/doc/guix.texi:28137 msgid "The period between ZSK publication and the next rollover initiation." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27801 +#: guix-git/doc/guix.texi:28138 #, no-wrap msgid "@code{propagation-delay} (default: @code{(* 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27804 +#: guix-git/doc/guix.texi:28141 msgid "An extra delay added for each key rollover step. This value should be high enough to cover propagation of data from the master server to all slaves." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27805 +#: guix-git/doc/guix.texi:28142 #, no-wrap msgid "@code{rrsig-lifetime} (default: @code{(* 14 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27807 +#: guix-git/doc/guix.texi:28144 msgid "A validity period of newly issued signatures." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27808 +#: guix-git/doc/guix.texi:28145 #, no-wrap msgid "@code{rrsig-refresh} (default: @code{(* 7 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27810 +#: guix-git/doc/guix.texi:28147 msgid "A period how long before a signature expiration the signature will be refreshed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27811 +#: guix-git/doc/guix.texi:28148 #, no-wrap msgid "@code{nsec3?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27813 +#: guix-git/doc/guix.texi:28150 msgid "When @code{#t}, NSEC3 will be used instead of NSEC." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27814 +#: guix-git/doc/guix.texi:28151 #, no-wrap msgid "@code{nsec3-iterations} (default: @code{5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27816 +#: guix-git/doc/guix.texi:28153 msgid "The number of additional times the hashing is performed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27817 +#: guix-git/doc/guix.texi:28154 #, no-wrap msgid "@code{nsec3-salt-length} (default: @code{8})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27820 +#: guix-git/doc/guix.texi:28157 msgid "The length of a salt field in octets, which is appended to the original owner name before hashing." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27821 +#: guix-git/doc/guix.texi:28158 #, no-wrap msgid "@code{nsec3-salt-lifetime} (default: @code{(* 30 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27823 +#: guix-git/doc/guix.texi:28160 msgid "The validity period of newly issued salt field." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27827 +#: guix-git/doc/guix.texi:28164 #, no-wrap msgid "{Data Type} knot-zone-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27830 +#: guix-git/doc/guix.texi:28167 msgid "Data type representing a zone served by Knot. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27832 +#: guix-git/doc/guix.texi:28169 #, no-wrap msgid "@code{domain} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27834 +#: guix-git/doc/guix.texi:28171 msgid "The domain served by this configuration. It must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27835 +#: guix-git/doc/guix.texi:28172 #, no-wrap msgid "@code{file} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27838 +#: guix-git/doc/guix.texi:28175 msgid "The file where this zone is saved. This parameter is ignored by master zones. Empty means default location that depends on the domain name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27839 +#: guix-git/doc/guix.texi:28176 #, no-wrap msgid "@code{zone} (default: @code{(zone-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27842 +#: guix-git/doc/guix.texi:28179 msgid "The content of the zone file. This parameter is ignored by slave zones. It must contain a zone-file record." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27843 +#: guix-git/doc/guix.texi:28180 #, no-wrap msgid "@code{master} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27846 +#: guix-git/doc/guix.texi:28183 msgid "A list of master remotes. When empty, this zone is a master. When set, this zone is a slave. This is a list of remotes identifiers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27847 +#: guix-git/doc/guix.texi:28184 #, no-wrap msgid "@code{ddns-master} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27850 +#: guix-git/doc/guix.texi:28187 msgid "The main master. When empty, it defaults to the first master in the list of masters." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27851 +#: guix-git/doc/guix.texi:28188 #, no-wrap msgid "@code{notify} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27853 +#: guix-git/doc/guix.texi:28190 msgid "A list of slave remote identifiers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27854 +#: guix-git/doc/guix.texi:28191 #, no-wrap msgid "@code{acl} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27856 +#: guix-git/doc/guix.texi:28193 msgid "A list of acl identifiers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27857 +#: guix-git/doc/guix.texi:28194 #, no-wrap msgid "@code{semantic-checks?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27859 +#: guix-git/doc/guix.texi:28196 msgid "When set, this adds more semantic checks to the zone." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27860 +#: guix-git/doc/guix.texi:28197 #, no-wrap msgid "@code{zonefile-sync} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27863 +#: guix-git/doc/guix.texi:28200 msgid "The delay between a modification in memory and on disk. 0 means immediate synchronization." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27864 +#: guix-git/doc/guix.texi:28201 #, no-wrap msgid "@code{zonefile-load} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27867 +#: guix-git/doc/guix.texi:28204 msgid "The way the zone file contents are applied during zone load. Possible values are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27869 +#: guix-git/doc/guix.texi:28206 #, no-wrap msgid "@code{#f} for using the default value from Knot," msgstr "" #. type: item -#: guix-git/doc/guix.texi:27870 +#: guix-git/doc/guix.texi:28207 #, no-wrap msgid "@code{'none} for not using the zone file at all," msgstr "" #. type: item -#: guix-git/doc/guix.texi:27871 +#: guix-git/doc/guix.texi:28208 #, no-wrap msgid "@code{'difference} for computing the difference between already available" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:27873 +#: guix-git/doc/guix.texi:28210 msgid "contents and zone contents and applying it to the current zone contents," msgstr "" #. type: item -#: guix-git/doc/guix.texi:27873 +#: guix-git/doc/guix.texi:28210 #, no-wrap msgid "@code{'difference-no-serial} for the same as @code{'difference}, but" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:27876 +#: guix-git/doc/guix.texi:28213 msgid "ignoring the SOA serial in the zone file, while the server takes care of it automatically." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27876 +#: guix-git/doc/guix.texi:28213 #, no-wrap msgid "@code{'whole} for loading zone contents from the zone file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27879 +#: guix-git/doc/guix.texi:28216 #, no-wrap msgid "@code{journal-content} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27884 +#: guix-git/doc/guix.texi:28221 msgid "The way the journal is used to store zone and its changes. Possible values are @code{'none} to not use it at all, @code{'changes} to store changes and @code{'all} to store contents. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27885 +#: guix-git/doc/guix.texi:28222 #, no-wrap msgid "@code{max-journal-usage} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27888 +#: guix-git/doc/guix.texi:28225 msgid "The maximum size for the journal on disk. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27889 +#: guix-git/doc/guix.texi:28226 #, no-wrap msgid "@code{max-journal-depth} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27892 +#: guix-git/doc/guix.texi:28229 msgid "The maximum size of the history. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27893 +#: guix-git/doc/guix.texi:28230 #, no-wrap msgid "@code{max-zone-size} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27897 +#: guix-git/doc/guix.texi:28234 msgid "The maximum size of the zone file. This limit is enforced for incoming transfer and updates. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27898 +#: guix-git/doc/guix.texi:28235 #, no-wrap msgid "@code{dnssec-policy} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27902 +#: guix-git/doc/guix.texi:28239 msgid "A reference to a @code{knot-policy-configuration} record, or the special name @code{\"default\"}. If the value is @code{#f}, there is no dnssec signing on this zone." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27903 +#: guix-git/doc/guix.texi:28240 #, no-wrap msgid "@code{serial-policy} (default: @code{'increment})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27905 +#: guix-git/doc/guix.texi:28242 msgid "A policy between @code{'increment} and @code{'unixtime}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27909 +#: guix-git/doc/guix.texi:28246 #, no-wrap msgid "{Data Type} knot-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27912 +#: guix-git/doc/guix.texi:28249 msgid "Data type representing the Knot configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27914 +#: guix-git/doc/guix.texi:28251 #, no-wrap msgid "@code{knot} (default: @code{knot})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27916 +#: guix-git/doc/guix.texi:28253 msgid "The Knot package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27917 +#: guix-git/doc/guix.texi:28254 #, no-wrap msgid "@code{run-directory} (default: @code{\"/var/run/knot\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27919 +#: guix-git/doc/guix.texi:28256 msgid "The run directory. This directory will be used for pid file and sockets." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27920 +#: guix-git/doc/guix.texi:28257 #, no-wrap msgid "@code{includes} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27923 +#: guix-git/doc/guix.texi:28260 msgid "A list of strings or file-like objects denoting other files that must be included at the top of the configuration file." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27924 +#: guix-git/doc/guix.texi:28261 #, no-wrap msgid "secrets, Knot service" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27930 +#: guix-git/doc/guix.texi:28267 msgid "This can be used to manage secrets out-of-band. For example, secret keys may be stored in an out-of-band file not managed by Guix, and thus not visible in @file{/gnu/store}---e.g., you could store secret key configuration in @file{/etc/knot/secrets.conf} and add this file to the @code{includes} list." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27935 +#: guix-git/doc/guix.texi:28272 msgid "One can generate a secret tsig key (for nsupdate and zone transfers with the keymgr command from the knot package. Note that the package is not automatically installed by the service. The following example shows how to generate a new tsig key:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:27939 +#: guix-git/doc/guix.texi:28276 #, no-wrap msgid "" "keymgr -t mysecret > /etc/knot/secrets.conf\n" @@ -50054,106 +50674,106 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27945 +#: guix-git/doc/guix.texi:28282 msgid "Also note that the generated key will be named @var{mysecret}, so it is the name that needs to be used in the @var{key} field of the @code{knot-acl-configuration} record and in other places that need to refer to that key." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27947 +#: guix-git/doc/guix.texi:28284 msgid "It can also be used to add configuration not supported by this interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27948 +#: guix-git/doc/guix.texi:28285 #, no-wrap msgid "@code{listen-v4} (default: @code{\"0.0.0.0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27950 guix-git/doc/guix.texi:27953 +#: guix-git/doc/guix.texi:28287 guix-git/doc/guix.texi:28290 msgid "An ip address on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27951 +#: guix-git/doc/guix.texi:28288 #, no-wrap msgid "@code{listen-v6} (default: @code{\"::\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27954 +#: guix-git/doc/guix.texi:28291 #, no-wrap msgid "@code{listen-port} (default: @code{53})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27956 +#: guix-git/doc/guix.texi:28293 msgid "A port on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27957 +#: guix-git/doc/guix.texi:28294 #, no-wrap msgid "@code{keys} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27959 +#: guix-git/doc/guix.texi:28296 msgid "The list of knot-key-configuration used by this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27960 +#: guix-git/doc/guix.texi:28297 #, no-wrap msgid "@code{acls} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27962 +#: guix-git/doc/guix.texi:28299 msgid "The list of knot-acl-configuration used by this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27963 +#: guix-git/doc/guix.texi:28300 #, no-wrap msgid "@code{remotes} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27965 +#: guix-git/doc/guix.texi:28302 msgid "The list of knot-remote-configuration used by this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27966 +#: guix-git/doc/guix.texi:28303 #, no-wrap msgid "@code{zones} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27968 +#: guix-git/doc/guix.texi:28305 msgid "The list of knot-zone-configuration used by this configuration." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27972 +#: guix-git/doc/guix.texi:28309 #, no-wrap msgid "Knot Resolver Service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27974 +#: guix-git/doc/guix.texi:28311 #, no-wrap msgid "{Scheme Variable} knot-resolver-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27977 +#: guix-git/doc/guix.texi:28314 msgid "This is the type of the knot resolver service, whose value should be an @code{knot-resolver-configuration} object as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27987 +#: guix-git/doc/guix.texi:28324 #, no-wrap msgid "" "(service knot-resolver-service-type\n" @@ -50167,73 +50787,73 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27990 +#: guix-git/doc/guix.texi:28327 msgid "For more information, refer its @url{https://knot-resolver.readthedocs.org/en/stable/daemon.html#configuration, manual}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27992 +#: guix-git/doc/guix.texi:28329 #, no-wrap msgid "{Data Type} knot-resolver-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27994 +#: guix-git/doc/guix.texi:28331 msgid "Data type representing the configuration of knot-resolver." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27996 +#: guix-git/doc/guix.texi:28333 #, no-wrap msgid "@code{package} (default: @var{knot-resolver})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27998 +#: guix-git/doc/guix.texi:28335 msgid "Package object of the knot DNS resolver." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27999 +#: guix-git/doc/guix.texi:28336 #, no-wrap msgid "@code{kresd-config-file} (default: %kresd.conf)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28002 +#: guix-git/doc/guix.texi:28339 msgid "File-like object of the kresd configuration file to use, by default it will listen on @code{127.0.0.1} and @code{::1}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28003 +#: guix-git/doc/guix.texi:28340 #, no-wrap msgid "@code{garbage-collection-interval} (default: 1000)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28005 +#: guix-git/doc/guix.texi:28342 msgid "Number of milliseconds for @code{kres-cache-gc} to periodically trim the cache." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28010 +#: guix-git/doc/guix.texi:28347 #, no-wrap msgid "Dnsmasq Service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28012 +#: guix-git/doc/guix.texi:28349 #, no-wrap msgid "{Scheme Variable} dnsmasq-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28015 +#: guix-git/doc/guix.texi:28352 msgid "This is the type of the dnsmasq service, whose value should be an @code{dnsmasq-configuration} object as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28021 +#: guix-git/doc/guix.texi:28358 #, no-wrap msgid "" "(service dnsmasq-service-type\n" @@ -50243,122 +50863,122 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28024 +#: guix-git/doc/guix.texi:28361 #, no-wrap msgid "{Data Type} dnsmasq-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28026 +#: guix-git/doc/guix.texi:28363 msgid "Data type representing the configuration of dnsmasq." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28028 +#: guix-git/doc/guix.texi:28365 #, no-wrap msgid "@code{package} (default: @var{dnsmasq})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28030 +#: guix-git/doc/guix.texi:28367 msgid "Package object of the dnsmasq server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28031 +#: guix-git/doc/guix.texi:28368 #, no-wrap msgid "@code{no-hosts?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28033 +#: guix-git/doc/guix.texi:28370 msgid "When true, don't read the hostnames in /etc/hosts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28034 +#: guix-git/doc/guix.texi:28371 #, no-wrap msgid "@code{port} (default: @code{53})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28037 +#: guix-git/doc/guix.texi:28374 msgid "The port to listen on. Setting this to zero completely disables DNS responses, leaving only DHCP and/or TFTP functions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28038 +#: guix-git/doc/guix.texi:28375 #, no-wrap msgid "@code{local-service?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28041 +#: guix-git/doc/guix.texi:28378 msgid "Accept DNS queries only from hosts whose address is on a local subnet, ie a subnet for which an interface exists on the server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28042 +#: guix-git/doc/guix.texi:28379 #, no-wrap msgid "@code{listen-addresses} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28044 +#: guix-git/doc/guix.texi:28381 msgid "Listen on the given IP addresses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28045 +#: guix-git/doc/guix.texi:28382 #, no-wrap msgid "@code{resolv-file} (default: @code{\"/etc/resolv.conf\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28047 +#: guix-git/doc/guix.texi:28384 msgid "The file to read the IP address of the upstream nameservers from." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28048 +#: guix-git/doc/guix.texi:28385 #, no-wrap msgid "@code{no-resolv?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28050 +#: guix-git/doc/guix.texi:28387 msgid "When true, don't read @var{resolv-file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28051 +#: guix-git/doc/guix.texi:28388 #, no-wrap msgid "@code{servers} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28053 +#: guix-git/doc/guix.texi:28390 msgid "Specify IP address of upstream servers directly." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28054 +#: guix-git/doc/guix.texi:28391 #, no-wrap msgid "@code{addresses} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28058 +#: guix-git/doc/guix.texi:28395 msgid "For each entry, specify an IP address to return for any host in the given domains. Queries in the domains are never forwarded and always replied to with the specified IP address." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28060 +#: guix-git/doc/guix.texi:28397 msgid "This is useful for redirecting hosts locally, for example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28069 +#: guix-git/doc/guix.texi:28406 #, no-wrap msgid "" "(service dnsmasq-service-type\n" @@ -50371,1007 +50991,1007 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28072 +#: guix-git/doc/guix.texi:28409 msgid "Note that rules in @file{/etc/hosts} take precedence over this." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28073 +#: guix-git/doc/guix.texi:28410 #, no-wrap msgid "@code{cache-size} (default: @code{150})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28076 +#: guix-git/doc/guix.texi:28413 msgid "Set the size of dnsmasq's cache. Setting the cache size to zero disables caching." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28077 +#: guix-git/doc/guix.texi:28414 #, no-wrap msgid "@code{negative-cache?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28079 +#: guix-git/doc/guix.texi:28416 msgid "When false, disable negative caching." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28080 +#: guix-git/doc/guix.texi:28417 #, no-wrap msgid "@code{tftp-enable?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28082 +#: guix-git/doc/guix.texi:28419 msgid "Whether to enable the built-in TFTP server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28083 +#: guix-git/doc/guix.texi:28420 #, no-wrap msgid "@code{tftp-no-fail?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28085 +#: guix-git/doc/guix.texi:28422 msgid "If true, does not fail dnsmasq if the TFTP server could not start up." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28086 +#: guix-git/doc/guix.texi:28423 #, no-wrap msgid "@code{tftp-single-port?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28088 +#: guix-git/doc/guix.texi:28425 msgid "Whether to use only one single port for TFTP." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28089 +#: guix-git/doc/guix.texi:28426 #, no-wrap msgid "@code{tftp-secure?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28091 +#: guix-git/doc/guix.texi:28428 msgid "If true, only files owned by the user running the dnsmasq process are accessible." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28095 +#: guix-git/doc/guix.texi:28432 msgid "If dnsmasq is being run as root, different rules apply: @code{tftp-secure?} has no effect, but only files which have the world-readable bit set are accessible." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28096 +#: guix-git/doc/guix.texi:28433 #, no-wrap msgid "@code{tftp-max} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28098 +#: guix-git/doc/guix.texi:28435 msgid "If set, sets the maximal number of concurrent connections allowed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28099 +#: guix-git/doc/guix.texi:28436 #, no-wrap msgid "@code{tftp-mtu} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28101 +#: guix-git/doc/guix.texi:28438 msgid "If set, sets the MTU for TFTP packets to that value." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28102 +#: guix-git/doc/guix.texi:28439 #, no-wrap msgid "@code{tftp-no-blocksize?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28104 +#: guix-git/doc/guix.texi:28441 msgid "If true, stops the TFTP server from negotiating the blocksize with a client." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28105 +#: guix-git/doc/guix.texi:28442 #, no-wrap msgid "@code{tftp-lowercase?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28107 +#: guix-git/doc/guix.texi:28444 msgid "Whether to convert all filenames in TFTP requests to lowercase." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28108 +#: guix-git/doc/guix.texi:28445 #, no-wrap msgid "@code{tftp-port-range} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28111 +#: guix-git/doc/guix.texi:28448 msgid "If set, fixes the dynamical ports (one per client) to the given range (@code{\",\"})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28112 +#: guix-git/doc/guix.texi:28449 #, no-wrap msgid "@code{tftp-root} (default: @code{/var/empty,lo})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28119 +#: guix-git/doc/guix.texi:28456 msgid "Look for files to transfer using TFTP relative to the given directory. When this is set, TFTP paths which include @samp{..} are rejected, to stop clients getting outside the specified root. Absolute paths (starting with @samp{/}) are allowed, but they must be within the TFTP-root. If the optional interface argument is given, the directory is only used for TFTP requests via that interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28120 +#: guix-git/doc/guix.texi:28457 #, no-wrap msgid "@code{tftp-unique-root} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28125 +#: guix-git/doc/guix.texi:28462 msgid "If set, add the IP or hardware address of the TFTP client as a path component on the end of the TFTP-root. Only valid if a TFTP root is set and the directory exists. Defaults to adding IP address (in standard dotted-quad format)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28134 +#: guix-git/doc/guix.texi:28471 msgid "For instance, if @option{--tftp-root} is @samp{/tftp} and client @samp{1.2.3.4} requests file @file{myfile} then the effective path will be @file{/tftp/1.2.3.4/myfile} if @file{/tftp/1.2.3.4} exists or @file{/tftp/myfile} otherwise. When @samp{=mac} is specified it will append the MAC address instead, using lowercase zero padded digits separated by dashes, e.g.: @samp{01-02-03-04-aa-bb}. Note that resolving MAC addresses is only possible if the client is in the local network or obtained a DHCP lease from dnsmasq." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28138 +#: guix-git/doc/guix.texi:28475 #, no-wrap msgid "ddclient Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28140 +#: guix-git/doc/guix.texi:28477 #, no-wrap msgid "ddclient" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28144 +#: guix-git/doc/guix.texi:28481 msgid "The ddclient service described below runs the ddclient daemon, which takes care of automatically updating DNS entries for service providers such as @uref{https://dyn.com/dns/, Dyn}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28147 +#: guix-git/doc/guix.texi:28484 msgid "The following example show instantiates the service with its default configuration:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28150 +#: guix-git/doc/guix.texi:28487 #, no-wrap msgid "(service ddclient-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28159 +#: guix-git/doc/guix.texi:28496 msgid "Note that ddclient needs to access credentials that are stored in a @dfn{secret file}, by default @file{/etc/ddclient/secrets} (see @code{secret-file} below). You are expected to create this file manually, in an ``out-of-band'' fashion (you @emph{could} make this file part of the service configuration, for instance by using @code{plain-file}, but it will be world-readable @i{via} @file{/gnu/store}). See the examples in the @file{share/ddclient} directory of the @code{ddclient} package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28163 +#: guix-git/doc/guix.texi:28500 msgid "Available @code{ddclient-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28164 +#: guix-git/doc/guix.texi:28501 #, no-wrap msgid "{@code{ddclient-configuration} parameter} package ddclient" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28166 +#: guix-git/doc/guix.texi:28503 msgid "The ddclient package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28169 +#: guix-git/doc/guix.texi:28506 #, no-wrap msgid "{@code{ddclient-configuration} parameter} integer daemon" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28171 +#: guix-git/doc/guix.texi:28508 msgid "The period after which ddclient will retry to check IP and domain name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28173 +#: guix-git/doc/guix.texi:28510 msgid "Defaults to @samp{300}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28176 +#: guix-git/doc/guix.texi:28513 #, no-wrap msgid "{@code{ddclient-configuration} parameter} boolean syslog" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28178 +#: guix-git/doc/guix.texi:28515 msgid "Use syslog for the output." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28183 +#: guix-git/doc/guix.texi:28520 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string mail" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28185 +#: guix-git/doc/guix.texi:28522 msgid "Mail to user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28187 guix-git/doc/guix.texi:28194 -#: guix-git/doc/guix.texi:29996 +#: guix-git/doc/guix.texi:28524 guix-git/doc/guix.texi:28531 +#: guix-git/doc/guix.texi:30361 msgid "Defaults to @samp{\"root\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28190 +#: guix-git/doc/guix.texi:28527 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string mail-failure" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28192 +#: guix-git/doc/guix.texi:28529 msgid "Mail failed update to user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28197 +#: guix-git/doc/guix.texi:28534 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string pid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28199 +#: guix-git/doc/guix.texi:28536 msgid "The ddclient PID file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28201 +#: guix-git/doc/guix.texi:28538 msgid "Defaults to @samp{\"/var/run/ddclient/ddclient.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28204 +#: guix-git/doc/guix.texi:28541 #, no-wrap msgid "{@code{ddclient-configuration} parameter} boolean ssl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28206 +#: guix-git/doc/guix.texi:28543 msgid "Enable SSL support." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28211 +#: guix-git/doc/guix.texi:28548 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28214 +#: guix-git/doc/guix.texi:28551 msgid "Specifies the user name or ID that is used when running ddclient program." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28216 guix-git/doc/guix.texi:28223 +#: guix-git/doc/guix.texi:28553 guix-git/doc/guix.texi:28560 msgid "Defaults to @samp{\"ddclient\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28219 +#: guix-git/doc/guix.texi:28556 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28221 +#: guix-git/doc/guix.texi:28558 msgid "Group of the user who will run the ddclient program." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28226 +#: guix-git/doc/guix.texi:28563 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string secret-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28230 +#: guix-git/doc/guix.texi:28567 msgid "Secret file which will be appended to @file{ddclient.conf} file. This file contains credentials for use by ddclient. You are expected to create it manually." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28232 +#: guix-git/doc/guix.texi:28569 msgid "Defaults to @samp{\"/etc/ddclient/secrets.conf\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28235 +#: guix-git/doc/guix.texi:28572 #, no-wrap msgid "{@code{ddclient-configuration} parameter} list extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28237 +#: guix-git/doc/guix.texi:28574 msgid "Extra options will be appended to @file{ddclient.conf} file." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28248 +#: guix-git/doc/guix.texi:28585 #, no-wrap msgid "VPN (virtual private network)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28249 +#: guix-git/doc/guix.texi:28586 #, no-wrap msgid "virtual private network (VPN)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28253 +#: guix-git/doc/guix.texi:28590 msgid "The @code{(gnu services vpn)} module provides services related to @dfn{virtual private networks} (VPNs)." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28254 +#: guix-git/doc/guix.texi:28591 #, no-wrap msgid "Bitmask" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28256 +#: guix-git/doc/guix.texi:28593 #, no-wrap msgid "{Scheme Variable} bitmask-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28261 +#: guix-git/doc/guix.texi:28598 msgid "A service type for the @uref{https://bitmask.net, Bitmask} VPN client. It makes the client available in the system and loads its polkit policy. Please note that the client expects an active polkit-agent, which is either run by your desktop-environment or should be run manually." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28263 +#: guix-git/doc/guix.texi:28600 #, no-wrap msgid "OpenVPN" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28267 +#: guix-git/doc/guix.texi:28604 msgid "It provides a @emph{client} service for your machine to connect to a VPN, and a @emph{server} service for your machine to host a VPN@." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28268 +#: guix-git/doc/guix.texi:28605 #, no-wrap msgid "{Scheme Procedure} openvpn-client-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28270 +#: guix-git/doc/guix.texi:28607 msgid "[#:config (openvpn-client-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28272 +#: guix-git/doc/guix.texi:28609 msgid "Return a service that runs @command{openvpn}, a VPN daemon, as a client." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28274 +#: guix-git/doc/guix.texi:28611 #, no-wrap msgid "{Scheme Procedure} openvpn-server-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28276 +#: guix-git/doc/guix.texi:28613 msgid "[#:config (openvpn-server-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28278 +#: guix-git/doc/guix.texi:28615 msgid "Return a service that runs @command{openvpn}, a VPN daemon, as a server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28280 +#: guix-git/doc/guix.texi:28617 msgid "Both can be run simultaneously." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28285 +#: guix-git/doc/guix.texi:28622 msgid "Available @code{openvpn-client-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28286 +#: guix-git/doc/guix.texi:28623 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} package openvpn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28288 guix-git/doc/guix.texi:28443 +#: guix-git/doc/guix.texi:28625 guix-git/doc/guix.texi:28780 msgid "The OpenVPN package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28291 +#: guix-git/doc/guix.texi:28628 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28293 guix-git/doc/guix.texi:28448 +#: guix-git/doc/guix.texi:28630 guix-git/doc/guix.texi:28785 msgid "The OpenVPN pid file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28295 guix-git/doc/guix.texi:28450 +#: guix-git/doc/guix.texi:28632 guix-git/doc/guix.texi:28787 msgid "Defaults to @samp{\"/var/run/openvpn/openvpn.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28298 +#: guix-git/doc/guix.texi:28635 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} proto proto" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28301 guix-git/doc/guix.texi:28456 +#: guix-git/doc/guix.texi:28638 guix-git/doc/guix.texi:28793 msgid "The protocol (UDP or TCP) used to open a channel between clients and servers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28303 guix-git/doc/guix.texi:28458 +#: guix-git/doc/guix.texi:28640 guix-git/doc/guix.texi:28795 msgid "Defaults to @samp{udp}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28306 +#: guix-git/doc/guix.texi:28643 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} dev dev" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28308 guix-git/doc/guix.texi:28463 +#: guix-git/doc/guix.texi:28645 guix-git/doc/guix.texi:28800 msgid "The device type used to represent the VPN connection." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28310 guix-git/doc/guix.texi:28465 +#: guix-git/doc/guix.texi:28647 guix-git/doc/guix.texi:28802 msgid "Defaults to @samp{tun}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28316 guix-git/doc/guix.texi:28471 +#: guix-git/doc/guix.texi:28653 guix-git/doc/guix.texi:28808 msgid "If you do not have some of these files (eg.@: you use a username and password), you can disable any of the following three fields by setting it to @code{'disabled}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28317 +#: guix-git/doc/guix.texi:28654 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string ca" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28319 guix-git/doc/guix.texi:28474 +#: guix-git/doc/guix.texi:28656 guix-git/doc/guix.texi:28811 msgid "The certificate authority to check connections against." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28321 guix-git/doc/guix.texi:28476 +#: guix-git/doc/guix.texi:28658 guix-git/doc/guix.texi:28813 msgid "Defaults to @samp{\"/etc/openvpn/ca.crt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28324 +#: guix-git/doc/guix.texi:28661 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28327 guix-git/doc/guix.texi:28482 +#: guix-git/doc/guix.texi:28664 guix-git/doc/guix.texi:28819 msgid "The certificate of the machine the daemon is running on. It should be signed by the authority given in @code{ca}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28329 guix-git/doc/guix.texi:28484 +#: guix-git/doc/guix.texi:28666 guix-git/doc/guix.texi:28821 msgid "Defaults to @samp{\"/etc/openvpn/client.crt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28332 +#: guix-git/doc/guix.texi:28669 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string key" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28335 guix-git/doc/guix.texi:28490 +#: guix-git/doc/guix.texi:28672 guix-git/doc/guix.texi:28827 msgid "The key of the machine the daemon is running on. It must be the key whose certificate is @code{cert}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28337 guix-git/doc/guix.texi:28492 +#: guix-git/doc/guix.texi:28674 guix-git/doc/guix.texi:28829 msgid "Defaults to @samp{\"/etc/openvpn/client.key\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28340 +#: guix-git/doc/guix.texi:28677 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean comp-lzo?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28342 guix-git/doc/guix.texi:28497 +#: guix-git/doc/guix.texi:28679 guix-git/doc/guix.texi:28834 msgid "Whether to use the lzo compression algorithm." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28347 +#: guix-git/doc/guix.texi:28684 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean persist-key?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28349 guix-git/doc/guix.texi:28504 +#: guix-git/doc/guix.texi:28686 guix-git/doc/guix.texi:28841 msgid "Don't re-read key files across SIGUSR1 or --ping-restart." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28354 +#: guix-git/doc/guix.texi:28691 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean persist-tun?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28357 guix-git/doc/guix.texi:28512 +#: guix-git/doc/guix.texi:28694 guix-git/doc/guix.texi:28849 msgid "Don't close and reopen TUN/TAP device or run up/down scripts across SIGUSR1 or --ping-restart restarts." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28362 +#: guix-git/doc/guix.texi:28699 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean fast-io?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28365 guix-git/doc/guix.texi:28520 +#: guix-git/doc/guix.texi:28702 guix-git/doc/guix.texi:28857 msgid "(Experimental) Optimize TUN/TAP/UDP I/O writes by avoiding a call to poll/epoll/select prior to the write operation." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28369 +#: guix-git/doc/guix.texi:28706 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} number verbosity" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28371 guix-git/doc/guix.texi:28526 +#: guix-git/doc/guix.texi:28708 guix-git/doc/guix.texi:28863 msgid "Verbosity level." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28373 guix-git/doc/guix.texi:28528 -#: guix-git/doc/guix.texi:30264 guix-git/doc/guix.texi:30488 +#: guix-git/doc/guix.texi:28710 guix-git/doc/guix.texi:28865 +#: guix-git/doc/guix.texi:30629 guix-git/doc/guix.texi:30853 msgid "Defaults to @samp{3}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28376 +#: guix-git/doc/guix.texi:28713 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} tls-auth-client tls-auth" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28379 guix-git/doc/guix.texi:28534 +#: guix-git/doc/guix.texi:28716 guix-git/doc/guix.texi:28871 msgid "Add an additional layer of HMAC authentication on top of the TLS control channel to protect against DoS attacks." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28384 +#: guix-git/doc/guix.texi:28721 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string auth-user-pass" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28388 +#: guix-git/doc/guix.texi:28725 msgid "Authenticate with server using username/password. The option is a file containing username/password on 2 lines. Do not use a file-like object as it would be added to the store and readable by any user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28390 +#: guix-git/doc/guix.texi:28727 msgid "Defaults to @samp{'disabled}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28392 +#: guix-git/doc/guix.texi:28729 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} key-usage verify-key-usage?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28394 +#: guix-git/doc/guix.texi:28731 msgid "Whether to check the server certificate has server usage extension." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28399 +#: guix-git/doc/guix.texi:28736 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} bind bind?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28401 +#: guix-git/doc/guix.texi:28738 msgid "Bind to a specific local port number." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28406 +#: guix-git/doc/guix.texi:28743 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} resolv-retry resolv-retry?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28408 +#: guix-git/doc/guix.texi:28745 msgid "Retry resolving server address." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28413 +#: guix-git/doc/guix.texi:28750 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} openvpn-remote-list remote" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28415 +#: guix-git/doc/guix.texi:28752 msgid "A list of remote servers to connect to." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28419 +#: guix-git/doc/guix.texi:28756 msgid "Available @code{openvpn-remote-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28420 +#: guix-git/doc/guix.texi:28757 #, no-wrap msgid "{@code{openvpn-remote-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28422 +#: guix-git/doc/guix.texi:28759 msgid "Server name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28424 +#: guix-git/doc/guix.texi:28761 msgid "Defaults to @samp{\"my-server\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28427 +#: guix-git/doc/guix.texi:28764 #, no-wrap msgid "{@code{openvpn-remote-configuration} parameter} number port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28429 +#: guix-git/doc/guix.texi:28766 msgid "Port number the server listens to." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28431 guix-git/doc/guix.texi:28543 +#: guix-git/doc/guix.texi:28768 guix-git/doc/guix.texi:28880 msgid "Defaults to @samp{1194}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28440 +#: guix-git/doc/guix.texi:28777 msgid "Available @code{openvpn-server-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28441 +#: guix-git/doc/guix.texi:28778 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} package openvpn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28446 +#: guix-git/doc/guix.texi:28783 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28453 +#: guix-git/doc/guix.texi:28790 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} proto proto" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28461 +#: guix-git/doc/guix.texi:28798 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} dev dev" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28472 +#: guix-git/doc/guix.texi:28809 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string ca" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28479 +#: guix-git/doc/guix.texi:28816 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28487 +#: guix-git/doc/guix.texi:28824 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string key" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28495 +#: guix-git/doc/guix.texi:28832 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean comp-lzo?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28502 +#: guix-git/doc/guix.texi:28839 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean persist-key?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28509 +#: guix-git/doc/guix.texi:28846 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean persist-tun?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28517 +#: guix-git/doc/guix.texi:28854 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean fast-io?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28524 +#: guix-git/doc/guix.texi:28861 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number verbosity" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28531 +#: guix-git/doc/guix.texi:28868 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} tls-auth-server tls-auth" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28539 +#: guix-git/doc/guix.texi:28876 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28541 +#: guix-git/doc/guix.texi:28878 msgid "Specifies the port number on which the server listens." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28546 +#: guix-git/doc/guix.texi:28883 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} ip-mask server" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28548 +#: guix-git/doc/guix.texi:28885 msgid "An ip and mask specifying the subnet inside the virtual network." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28550 +#: guix-git/doc/guix.texi:28887 msgid "Defaults to @samp{\"10.8.0.0 255.255.255.0\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28553 +#: guix-git/doc/guix.texi:28890 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} cidr6 server-ipv6" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28555 +#: guix-git/doc/guix.texi:28892 msgid "A CIDR notation specifying the IPv6 subnet inside the virtual network." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28560 +#: guix-git/doc/guix.texi:28897 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string dh" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28562 +#: guix-git/doc/guix.texi:28899 msgid "The Diffie-Hellman parameters file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28564 +#: guix-git/doc/guix.texi:28901 msgid "Defaults to @samp{\"/etc/openvpn/dh2048.pem\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28567 +#: guix-git/doc/guix.texi:28904 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string ifconfig-pool-persist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28569 +#: guix-git/doc/guix.texi:28906 msgid "The file that records client IPs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28571 +#: guix-git/doc/guix.texi:28908 msgid "Defaults to @samp{\"/etc/openvpn/ipp.txt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28574 +#: guix-git/doc/guix.texi:28911 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} gateway redirect-gateway?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28576 +#: guix-git/doc/guix.texi:28913 msgid "When true, the server will act as a gateway for its clients." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28581 +#: guix-git/doc/guix.texi:28918 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean client-to-client?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28583 +#: guix-git/doc/guix.texi:28920 msgid "When true, clients are allowed to talk to each other inside the VPN." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28588 +#: guix-git/doc/guix.texi:28925 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} keepalive keepalive" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28594 +#: guix-git/doc/guix.texi:28931 msgid "Causes ping-like messages to be sent back and forth over the link so that each side knows when the other side has gone down. @code{keepalive} requires a pair. The first element is the period of the ping sending, and the second element is the timeout before considering the other side down." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28597 +#: guix-git/doc/guix.texi:28934 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28599 +#: guix-git/doc/guix.texi:28936 msgid "The maximum number of clients." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28604 +#: guix-git/doc/guix.texi:28941 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string status" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28607 +#: guix-git/doc/guix.texi:28944 msgid "The status file. This file shows a small report on current connection. It is truncated and rewritten every minute." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28609 +#: guix-git/doc/guix.texi:28946 msgid "Defaults to @samp{\"/var/run/openvpn/status\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28612 +#: guix-git/doc/guix.texi:28949 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} openvpn-ccd-list client-config-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28614 +#: guix-git/doc/guix.texi:28951 msgid "The list of configuration for some clients." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28618 +#: guix-git/doc/guix.texi:28955 msgid "Available @code{openvpn-ccd-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28619 +#: guix-git/doc/guix.texi:28956 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28621 +#: guix-git/doc/guix.texi:28958 msgid "Client name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28623 +#: guix-git/doc/guix.texi:28960 msgid "Defaults to @samp{\"client\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28626 +#: guix-git/doc/guix.texi:28963 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} ip-mask iroute" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28628 +#: guix-git/doc/guix.texi:28965 msgid "Client own network" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28633 +#: guix-git/doc/guix.texi:28970 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} ip-mask ifconfig-push" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28635 +#: guix-git/doc/guix.texi:28972 msgid "Client VPN IP." msgstr "" #. type: subheading -#: guix-git/doc/guix.texi:28644 +#: guix-git/doc/guix.texi:28981 #, no-wrap msgid "strongSwan" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28648 +#: guix-git/doc/guix.texi:28985 msgid "Currently, the strongSwan service only provides legacy-style configuration with @file{ipsec.conf} and @file{ipsec.secrets} files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28649 +#: guix-git/doc/guix.texi:28986 #, no-wrap msgid "{Scheme Variable} strongswan-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28653 +#: guix-git/doc/guix.texi:28990 msgid "A service type for configuring strongSwan for IPsec @acronym{VPN, Virtual Private Networking}. Its value must be a @code{strongswan-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28659 +#: guix-git/doc/guix.texi:28996 #, no-wrap msgid "" "(service strongswan-service-type\n" @@ -51381,68 +52001,68 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28663 +#: guix-git/doc/guix.texi:29000 #, no-wrap msgid "{Data Type} strongswan-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28665 +#: guix-git/doc/guix.texi:29002 msgid "Data type representing the configuration of the StrongSwan service." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:28667 +#: guix-git/doc/guix.texi:29004 #, no-wrap msgid "strongswan" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28669 +#: guix-git/doc/guix.texi:29006 msgid "The strongSwan package to use for this service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28670 +#: guix-git/doc/guix.texi:29007 #, no-wrap msgid "@code{ipsec-conf} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28673 +#: guix-git/doc/guix.texi:29010 msgid "The file name of your @file{ipsec.conf}. If not @code{#f}, then this and @code{ipsec-secrets} must both be strings." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28674 +#: guix-git/doc/guix.texi:29011 #, no-wrap msgid "@code{ipsec-secrets} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28677 +#: guix-git/doc/guix.texi:29014 msgid "The file name of your @file{ipsec.secrets}. If not @code{#f}, then this and @code{ipsec-conf} must both be strings." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28681 +#: guix-git/doc/guix.texi:29018 #, no-wrap msgid "Wireguard" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28683 +#: guix-git/doc/guix.texi:29020 #, no-wrap msgid "{Scheme Variable} wireguard-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28686 +#: guix-git/doc/guix.texi:29023 msgid "A service type for a Wireguard tunnel interface. Its value must be a @code{wireguard-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28697 +#: guix-git/doc/guix.texi:29034 #, no-wrap msgid "" "(service wireguard-service-type\n" @@ -51457,250 +52077,250 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28701 +#: guix-git/doc/guix.texi:29038 #, no-wrap msgid "{Data Type} wireguard-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28703 +#: guix-git/doc/guix.texi:29040 msgid "Data type representing the configuration of the Wireguard service." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:28705 +#: guix-git/doc/guix.texi:29042 #, no-wrap msgid "wireguard" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28707 +#: guix-git/doc/guix.texi:29044 msgid "The wireguard package to use for this service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28708 +#: guix-git/doc/guix.texi:29045 #, no-wrap msgid "@code{interface} (default: @code{\"wg0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28710 +#: guix-git/doc/guix.texi:29047 msgid "The interface name for the VPN." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28711 +#: guix-git/doc/guix.texi:29048 #, no-wrap msgid "@code{addresses} (default: @code{'(\"10.0.0.1/32\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28713 +#: guix-git/doc/guix.texi:29050 msgid "The IP addresses to be assigned to the above interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28714 +#: guix-git/doc/guix.texi:29051 #, no-wrap msgid "@code{port} (default: @code{51820})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28716 +#: guix-git/doc/guix.texi:29053 msgid "The port on which to listen for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28717 +#: guix-git/doc/guix.texi:29054 #, no-wrap msgid "@code{dns} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28719 +#: guix-git/doc/guix.texi:29056 msgid "The DNS server(s) to announce to VPN clients via DHCP." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28720 +#: guix-git/doc/guix.texi:29057 #, no-wrap msgid "@code{private-key} (default: @code{\"/etc/wireguard/private.key\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28723 +#: guix-git/doc/guix.texi:29060 msgid "The private key file for the interface. It is automatically generated if the file does not exist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28724 +#: guix-git/doc/guix.texi:29061 #, no-wrap msgid "@code{peers} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28727 +#: guix-git/doc/guix.texi:29064 msgid "The authorized peers on this interface. This is a list of @var{wireguard-peer} records." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28731 +#: guix-git/doc/guix.texi:29068 #, no-wrap msgid "{Data Type} wireguard-peer" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28733 +#: guix-git/doc/guix.texi:29070 msgid "Data type representing a Wireguard peer attached to a given interface." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28737 +#: guix-git/doc/guix.texi:29074 msgid "The peer name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28738 +#: guix-git/doc/guix.texi:29075 #, no-wrap msgid "@code{endpoint} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28741 +#: guix-git/doc/guix.texi:29078 msgid "The optional endpoint for the peer, such as @code{\"demo.wireguard.com:51820\"}." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:28742 guix-git/doc/guix.texi:29137 -#: guix-git/doc/guix.texi:29174 guix-git/doc/guix.texi:34305 +#: guix-git/doc/guix.texi:29079 guix-git/doc/guix.texi:29474 +#: guix-git/doc/guix.texi:29511 guix-git/doc/guix.texi:34744 #, no-wrap msgid "public-key" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28744 +#: guix-git/doc/guix.texi:29081 msgid "The peer public-key represented as a base64 string." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:28745 +#: guix-git/doc/guix.texi:29082 #, no-wrap msgid "allowed-ips" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28748 +#: guix-git/doc/guix.texi:29085 msgid "A list of IP addresses from which incoming traffic for this peer is allowed and to which incoming traffic for this peer is directed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28749 +#: guix-git/doc/guix.texi:29086 #, no-wrap msgid "@code{keep-alive} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28754 +#: guix-git/doc/guix.texi:29091 msgid "An optional time interval in seconds. A packet will be sent to the server endpoint once per time interval. This helps receiving incoming connections from this peer when you are behind a NAT or a firewall." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28760 +#: guix-git/doc/guix.texi:29097 #, no-wrap msgid "NFS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28765 +#: guix-git/doc/guix.texi:29102 msgid "The @code{(gnu services nfs)} module provides the following services, which are most commonly used in relation to mounting or exporting directory trees as @dfn{network file systems} (NFS)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28769 +#: guix-git/doc/guix.texi:29106 msgid "While it is possible to use the individual components that together make up a Network File System service, we recommended to configure an NFS server with the @code{nfs-service-type}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28770 +#: guix-git/doc/guix.texi:29107 #, no-wrap msgid "NFS Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28771 +#: guix-git/doc/guix.texi:29108 #, no-wrap msgid "NFS, server" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28776 +#: guix-git/doc/guix.texi:29113 msgid "The NFS service takes care of setting up all NFS component services, kernel configuration file systems, and installs configuration files in the locations that NFS expects." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28777 +#: guix-git/doc/guix.texi:29114 #, no-wrap msgid "{Scheme Variable} nfs-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28779 +#: guix-git/doc/guix.texi:29116 msgid "A service type for a complete NFS server." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28781 +#: guix-git/doc/guix.texi:29118 #, no-wrap msgid "{Data Type} nfs-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28784 +#: guix-git/doc/guix.texi:29121 msgid "This data type represents the configuration of the NFS service and all of its subsystems." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28786 +#: guix-git/doc/guix.texi:29123 msgid "It has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28787 guix-git/doc/guix.texi:28912 -#: guix-git/doc/guix.texi:28937 +#: guix-git/doc/guix.texi:29124 guix-git/doc/guix.texi:29249 +#: guix-git/doc/guix.texi:29274 #, no-wrap msgid "@code{nfs-utils} (default: @code{nfs-utils})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28789 +#: guix-git/doc/guix.texi:29126 msgid "The nfs-utils package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28790 +#: guix-git/doc/guix.texi:29127 #, no-wrap msgid "@code{nfs-versions} (default: @code{'(\"4.2\" \"4.1\" \"4.0\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28793 +#: guix-git/doc/guix.texi:29130 msgid "If a list of string values is provided, the @command{rpc.nfsd} daemon will be limited to supporting the given versions of the NFS protocol." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28794 +#: guix-git/doc/guix.texi:29131 #, no-wrap msgid "@code{exports} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28799 +#: guix-git/doc/guix.texi:29136 msgid "This is a list of directories the NFS server should export. Each entry is a list consisting of two elements: a directory name and a string containing all options. This is an example in which the directory @file{/export} is served to all NFS clients as a read-only share:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28805 +#: guix-git/doc/guix.texi:29142 #, no-wrap msgid "" "(nfs-configuration\n" @@ -51710,384 +52330,384 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28807 +#: guix-git/doc/guix.texi:29144 #, no-wrap msgid "@code{rpcmountd-port} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28809 +#: guix-git/doc/guix.texi:29146 msgid "The network port that the @command{rpc.mountd} daemon should use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28810 +#: guix-git/doc/guix.texi:29147 #, no-wrap msgid "@code{rpcstatd-port} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28812 +#: guix-git/doc/guix.texi:29149 msgid "The network port that the @command{rpc.statd} daemon should use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28813 guix-git/doc/guix.texi:28861 +#: guix-git/doc/guix.texi:29150 guix-git/doc/guix.texi:29198 #, no-wrap msgid "@code{rpcbind} (default: @code{rpcbind})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28815 guix-git/doc/guix.texi:28863 +#: guix-git/doc/guix.texi:29152 guix-git/doc/guix.texi:29200 msgid "The rpcbind package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28816 +#: guix-git/doc/guix.texi:29153 #, no-wrap msgid "@code{idmap-domain} (default: @code{\"localdomain\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28818 +#: guix-git/doc/guix.texi:29155 msgid "The local NFSv4 domain name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28819 +#: guix-git/doc/guix.texi:29156 #, no-wrap msgid "@code{nfsd-port} (default: @code{2049})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28821 +#: guix-git/doc/guix.texi:29158 msgid "The network port that the @command{nfsd} daemon should use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28822 +#: guix-git/doc/guix.texi:29159 #, no-wrap msgid "@code{nfsd-threads} (default: @code{8})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28824 +#: guix-git/doc/guix.texi:29161 msgid "The number of threads used by the @command{nfsd} daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28825 +#: guix-git/doc/guix.texi:29162 #, no-wrap msgid "@code{nfsd-tcp?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28827 +#: guix-git/doc/guix.texi:29164 msgid "Whether the @command{nfsd} daemon should listen on a TCP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28828 +#: guix-git/doc/guix.texi:29165 #, no-wrap msgid "@code{nfsd-udp?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28830 +#: guix-git/doc/guix.texi:29167 msgid "Whether the @command{nfsd} daemon should listen on a UDP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28831 guix-git/doc/guix.texi:28915 -#: guix-git/doc/guix.texi:28940 +#: guix-git/doc/guix.texi:29168 guix-git/doc/guix.texi:29252 +#: guix-git/doc/guix.texi:29277 #, no-wrap msgid "@code{pipefs-directory} (default: @code{\"/var/lib/nfs/rpc_pipefs\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28833 guix-git/doc/guix.texi:28917 -#: guix-git/doc/guix.texi:28942 +#: guix-git/doc/guix.texi:29170 guix-git/doc/guix.texi:29254 +#: guix-git/doc/guix.texi:29279 msgid "The directory where the pipefs file system is mounted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28834 +#: guix-git/doc/guix.texi:29171 #, no-wrap msgid "@code{debug} (default: @code{'()\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28838 +#: guix-git/doc/guix.texi:29175 msgid "A list of subsystems for which debugging output should be enabled. This is a list of symbols. Any of these symbols are valid: @code{nfsd}, @code{nfs}, @code{rpc}, @code{idmap}, @code{statd}, or @code{mountd}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28843 +#: guix-git/doc/guix.texi:29180 msgid "If you don't need a complete NFS service or prefer to build it yourself you can use the individual component services that are documented below." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28844 +#: guix-git/doc/guix.texi:29181 #, no-wrap msgid "RPC Bind Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28845 +#: guix-git/doc/guix.texi:29182 #, no-wrap msgid "rpcbind" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28851 +#: guix-git/doc/guix.texi:29188 msgid "The RPC Bind service provides a facility to map program numbers into universal addresses. Many NFS related services use this facility. Hence it is automatically started when a dependent service starts." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28852 +#: guix-git/doc/guix.texi:29189 #, no-wrap msgid "{Scheme Variable} rpcbind-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28854 +#: guix-git/doc/guix.texi:29191 msgid "A service type for the RPC portmapper daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28857 +#: guix-git/doc/guix.texi:29194 #, no-wrap msgid "{Data Type} rpcbind-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28860 +#: guix-git/doc/guix.texi:29197 msgid "Data type representing the configuration of the RPC Bind Service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28864 +#: guix-git/doc/guix.texi:29201 #, no-wrap msgid "@code{warm-start?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28868 +#: guix-git/doc/guix.texi:29205 msgid "If this parameter is @code{#t}, then the daemon will read a state file on startup thus reloading state information saved by a previous instance." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28872 +#: guix-git/doc/guix.texi:29209 #, no-wrap msgid "Pipefs Pseudo File System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28873 +#: guix-git/doc/guix.texi:29210 #, no-wrap msgid "pipefs" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28874 +#: guix-git/doc/guix.texi:29211 #, no-wrap msgid "rpc_pipefs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28878 +#: guix-git/doc/guix.texi:29215 msgid "The pipefs file system is used to transfer NFS related data between the kernel and user space programs." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28879 +#: guix-git/doc/guix.texi:29216 #, no-wrap msgid "{Scheme Variable} pipefs-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28881 +#: guix-git/doc/guix.texi:29218 msgid "A service type for the pipefs pseudo file system." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28883 +#: guix-git/doc/guix.texi:29220 #, no-wrap msgid "{Data Type} pipefs-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28886 +#: guix-git/doc/guix.texi:29223 msgid "Data type representing the configuration of the pipefs pseudo file system service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28887 +#: guix-git/doc/guix.texi:29224 #, no-wrap msgid "@code{mount-point} (default: @code{\"/var/lib/nfs/rpc_pipefs\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28889 +#: guix-git/doc/guix.texi:29226 msgid "The directory to which the file system is to be attached." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28893 +#: guix-git/doc/guix.texi:29230 #, no-wrap msgid "GSS Daemon Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28894 +#: guix-git/doc/guix.texi:29231 #, no-wrap msgid "GSSD" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28895 +#: guix-git/doc/guix.texi:29232 #, no-wrap msgid "GSS" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28896 +#: guix-git/doc/guix.texi:29233 #, no-wrap msgid "global security system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28903 +#: guix-git/doc/guix.texi:29240 msgid "The @dfn{global security system} (GSS) daemon provides strong security for RPC based protocols. Before exchanging RPC requests an RPC client must establish a security context. Typically this is done using the Kerberos command @command{kinit} or automatically at login time using PAM services (@pxref{Kerberos Services})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28904 +#: guix-git/doc/guix.texi:29241 #, no-wrap msgid "{Scheme Variable} gss-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28906 +#: guix-git/doc/guix.texi:29243 msgid "A service type for the Global Security System (GSS) daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28908 +#: guix-git/doc/guix.texi:29245 #, no-wrap msgid "{Data Type} gss-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28911 +#: guix-git/doc/guix.texi:29248 msgid "Data type representing the configuration of the GSS daemon service. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28914 +#: guix-git/doc/guix.texi:29251 msgid "The package in which the @command{rpc.gssd} command is to be found." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28922 +#: guix-git/doc/guix.texi:29259 #, no-wrap msgid "IDMAP Daemon Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28923 +#: guix-git/doc/guix.texi:29260 #, no-wrap msgid "idmapd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28924 +#: guix-git/doc/guix.texi:29261 #, no-wrap msgid "name mapper" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28928 +#: guix-git/doc/guix.texi:29265 msgid "The idmap daemon service provides mapping between user IDs and user names. Typically it is required in order to access file systems mounted via NFSv4." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28929 +#: guix-git/doc/guix.texi:29266 #, no-wrap msgid "{Scheme Variable} idmap-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28931 +#: guix-git/doc/guix.texi:29268 msgid "A service type for the Identity Mapper (IDMAP) daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28933 +#: guix-git/doc/guix.texi:29270 #, no-wrap msgid "{Data Type} idmap-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28936 +#: guix-git/doc/guix.texi:29273 msgid "Data type representing the configuration of the IDMAP daemon service. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28939 +#: guix-git/doc/guix.texi:29276 msgid "The package in which the @command{rpc.idmapd} command is to be found." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28943 +#: guix-git/doc/guix.texi:29280 #, no-wrap msgid "@code{domain} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28947 +#: guix-git/doc/guix.texi:29284 msgid "The local NFSv4 domain name. This must be a string or @code{#f}. If it is @code{#f} then the daemon will use the host's fully qualified domain name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28948 +#: guix-git/doc/guix.texi:29285 #, no-wrap msgid "@code{verbosity} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28950 +#: guix-git/doc/guix.texi:29287 msgid "The verbosity level of the daemon." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28961 +#: guix-git/doc/guix.texi:29298 msgid "@uref{https://guix.gnu.org/cuirass/, Cuirass} is a continuous integration tool for Guix. It can be used both for development and for providing substitutes to others (@pxref{Substitutes})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28963 +#: guix-git/doc/guix.texi:29300 msgid "The @code{(gnu services cuirass)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28964 +#: guix-git/doc/guix.texi:29301 #, no-wrap msgid "{Scheme Procedure} cuirass-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28967 +#: guix-git/doc/guix.texi:29304 msgid "The type of the Cuirass service. Its value must be a @code{cuirass-configuration} object, as described below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28972 +#: guix-git/doc/guix.texi:29309 msgid "To add build jobs, you have to set the @code{specifications} field of the configuration. For instance, the following example will build all the packages provided by the @code{my-channel} channel." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28983 +#: guix-git/doc/guix.texi:29320 #, no-wrap msgid "" "(define %cuirass-specs\n" @@ -52103,7 +52723,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28987 guix-git/doc/guix.texi:29001 +#: guix-git/doc/guix.texi:29324 guix-git/doc/guix.texi:29338 #, no-wrap msgid "" "(service cuirass-service-type\n" @@ -52112,12 +52732,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28991 +#: guix-git/doc/guix.texi:29328 msgid "To build the @code{linux-libre} package defined by the default Guix channel, one can use the following configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28997 +#: guix-git/doc/guix.texi:29334 #, no-wrap msgid "" "(define %cuirass-specs\n" @@ -52128,572 +52748,572 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29006 +#: guix-git/doc/guix.texi:29343 msgid "The other configuration possibilities, as well as the specification record itself are described in the Cuirass manual (@pxref{Specifications,,, cuirass, Cuirass})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29010 +#: guix-git/doc/guix.texi:29347 msgid "While information related to build jobs is located directly in the specifications, global settings for the @command{cuirass} process are accessible in other @code{cuirass-configuration} fields." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29011 +#: guix-git/doc/guix.texi:29348 #, no-wrap msgid "{Data Type} cuirass-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29013 +#: guix-git/doc/guix.texi:29350 msgid "Data type representing the configuration of Cuirass." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29015 guix-git/doc/guix.texi:29152 +#: guix-git/doc/guix.texi:29352 guix-git/doc/guix.texi:29489 #, no-wrap msgid "@code{cuirass} (default: @code{cuirass})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29017 guix-git/doc/guix.texi:29154 +#: guix-git/doc/guix.texi:29354 guix-git/doc/guix.texi:29491 msgid "The Cuirass package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29018 +#: guix-git/doc/guix.texi:29355 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29020 guix-git/doc/guix.texi:29124 -#: guix-git/doc/guix.texi:29167 +#: guix-git/doc/guix.texi:29357 guix-git/doc/guix.texi:29461 +#: guix-git/doc/guix.texi:29504 msgid "Location of the log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29021 +#: guix-git/doc/guix.texi:29358 #, no-wrap msgid "@code{web-log-file} (default: @code{\"/var/log/cuirass-web.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29023 +#: guix-git/doc/guix.texi:29360 msgid "Location of the log file used by the web interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29024 +#: guix-git/doc/guix.texi:29361 #, no-wrap msgid "@code{cache-directory} (default: @code{\"/var/cache/cuirass\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29026 +#: guix-git/doc/guix.texi:29363 msgid "Location of the repository cache." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29027 +#: guix-git/doc/guix.texi:29364 #, no-wrap msgid "@code{user} (default: @code{\"cuirass\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29029 +#: guix-git/doc/guix.texi:29366 msgid "Owner of the @code{cuirass} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29030 +#: guix-git/doc/guix.texi:29367 #, no-wrap msgid "@code{group} (default: @code{\"cuirass\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29032 +#: guix-git/doc/guix.texi:29369 msgid "Owner's group of the @code{cuirass} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29033 +#: guix-git/doc/guix.texi:29370 #, no-wrap msgid "@code{interval} (default: @code{60})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29036 +#: guix-git/doc/guix.texi:29373 msgid "Number of seconds between the poll of the repositories followed by the Cuirass jobs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29037 +#: guix-git/doc/guix.texi:29374 #, no-wrap msgid "@code{parameters} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29040 +#: guix-git/doc/guix.texi:29377 msgid "Read parameters from the given @var{parameters} file. The supported parameters are described here (@pxref{Parameters,,, cuirass, Cuirass})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29041 +#: guix-git/doc/guix.texi:29378 #, no-wrap msgid "@code{remote-server} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29044 +#: guix-git/doc/guix.texi:29381 msgid "A @code{cuirass-remote-server-configuration} record to use the build remote mechanism or @code{#f} to use the default build mechanism." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29045 +#: guix-git/doc/guix.texi:29382 #, no-wrap msgid "@code{database} (default: @code{\"dbname=cuirass host=/var/run/postgresql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29050 +#: guix-git/doc/guix.texi:29387 msgid "Use @var{database} as the database containing the jobs and the past build results. Since Cuirass uses PostgreSQL as a database engine, @var{database} must be a string such as @code{\"dbname=cuirass host=localhost\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29051 +#: guix-git/doc/guix.texi:29388 #, no-wrap msgid "@code{port} (default: @code{8081})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29053 +#: guix-git/doc/guix.texi:29390 msgid "Port number used by the HTTP server." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29057 +#: guix-git/doc/guix.texi:29394 msgid "Listen on the network interface for @var{host}. The default is to accept connections from localhost." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29058 +#: guix-git/doc/guix.texi:29395 #, no-wrap msgid "@code{specifications} (default: @code{#~'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29062 +#: guix-git/doc/guix.texi:29399 msgid "A gexp (@pxref{G-Expressions}) that evaluates to a list of specifications records. The specification record is described in the Cuirass manual (@pxref{Specifications,,, cuirass, Cuirass})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29063 +#: guix-git/doc/guix.texi:29400 #, no-wrap msgid "@code{use-substitutes?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29066 +#: guix-git/doc/guix.texi:29403 msgid "This allows using substitutes to avoid building every dependencies of a job from source." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29067 guix-git/doc/guix.texi:36336 +#: guix-git/doc/guix.texi:29404 guix-git/doc/guix.texi:36826 #, no-wrap msgid "@code{one-shot?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29069 +#: guix-git/doc/guix.texi:29406 msgid "Only evaluate specifications and build derivations once." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29070 +#: guix-git/doc/guix.texi:29407 #, no-wrap msgid "@code{fallback?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29073 +#: guix-git/doc/guix.texi:29410 msgid "When substituting a pre-built binary fails, fall back to building packages locally." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29076 +#: guix-git/doc/guix.texi:29413 msgid "Extra options to pass when running the Cuirass processes." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29080 +#: guix-git/doc/guix.texi:29417 #, no-wrap msgid "remote build" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29081 +#: guix-git/doc/guix.texi:29418 #, no-wrap msgid "Cuirass remote building" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29084 +#: guix-git/doc/guix.texi:29421 msgid "Cuirass supports two mechanisms to build derivations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29086 +#: guix-git/doc/guix.texi:29423 #, no-wrap msgid "Using the local Guix daemon." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:29090 +#: guix-git/doc/guix.texi:29427 msgid "This is the default build mechanism. Once the build jobs are evaluated, they are sent to the local Guix daemon. Cuirass then listens to the Guix daemon output to detect the various build events." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29091 +#: guix-git/doc/guix.texi:29428 #, no-wrap msgid "Using the remote build mechanism." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:29095 +#: guix-git/doc/guix.texi:29432 msgid "The build jobs are not submitted to the local Guix daemon. Instead, a remote server dispatches build requests to the connect remote workers, according to the build priorities." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29102 +#: guix-git/doc/guix.texi:29439 msgid "To enable this build mode a @code{cuirass-remote-server-configuration} record must be passed as @code{remote-server} argument of the @code{cuirass-configuration} record. The @code{cuirass-remote-server-configuration} record is described below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29107 +#: guix-git/doc/guix.texi:29444 msgid "This build mode scales way better than the default build mode. This is the build mode that is used on the GNU Guix build farm at @url{https://ci.guix.gnu.org}. It should be preferred when using Cuirass to build large amount of packages." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29108 +#: guix-git/doc/guix.texi:29445 #, no-wrap msgid "{Data Type} cuirass-remote-server-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29110 +#: guix-git/doc/guix.texi:29447 msgid "Data type representing the configuration of the Cuirass remote-server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29112 +#: guix-git/doc/guix.texi:29449 #, no-wrap msgid "@code{backend-port} (default: @code{5555})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29115 +#: guix-git/doc/guix.texi:29452 msgid "The TCP port for communicating with @code{remote-worker} processes using ZMQ. It defaults to @code{5555}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29116 +#: guix-git/doc/guix.texi:29453 #, no-wrap msgid "@code{log-port} (default: @code{5556})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29118 +#: guix-git/doc/guix.texi:29455 msgid "The TCP port of the log server. It defaults to @code{5556}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29119 +#: guix-git/doc/guix.texi:29456 #, no-wrap msgid "@code{publish-port} (default: @code{5557})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29121 +#: guix-git/doc/guix.texi:29458 msgid "The TCP port of the publish server. It defaults to @code{5557}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29122 +#: guix-git/doc/guix.texi:29459 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass-remote-server.log\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:29125 +#: guix-git/doc/guix.texi:29462 #, no-wrap msgid "@code{cache} (default: @code{\"/var/cache/cuirass/remote\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29127 +#: guix-git/doc/guix.texi:29464 msgid "Use @var{cache} directory to cache build log files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29128 +#: guix-git/doc/guix.texi:29465 #, no-wrap msgid "@code{trigger-url} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29131 +#: guix-git/doc/guix.texi:29468 msgid "Once a substitute is successfully fetched, trigger substitute baking at @var{trigger-url}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29136 +#: guix-git/doc/guix.texi:29473 msgid "If set to false, do not start a publish server and ignore the @code{publish-port} argument. This can be useful if there is already a standalone publish server standing next to the remote server." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:29138 guix-git/doc/guix.texi:29175 +#: guix-git/doc/guix.texi:29475 guix-git/doc/guix.texi:29512 #, no-wrap msgid "private-key" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29147 +#: guix-git/doc/guix.texi:29484 msgid "At least one remote worker must also be started on any machine of the local network to actually perform the builds and report their status." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29148 +#: guix-git/doc/guix.texi:29485 #, no-wrap msgid "{Data Type} cuirass-remote-worker-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29150 +#: guix-git/doc/guix.texi:29487 msgid "Data type representing the configuration of the Cuirass remote-worker." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29155 +#: guix-git/doc/guix.texi:29492 #, no-wrap msgid "@code{workers} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29157 +#: guix-git/doc/guix.texi:29494 msgid "Start @var{workers} parallel workers." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29161 +#: guix-git/doc/guix.texi:29498 msgid "Do not use Avahi discovery and connect to the given @code{server} IP address instead." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29162 +#: guix-git/doc/guix.texi:29499 #, no-wrap msgid "@code{systems} (default: @code{(list (%current-system))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29164 +#: guix-git/doc/guix.texi:29501 msgid "Only request builds for the given @var{systems}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29165 +#: guix-git/doc/guix.texi:29502 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass-remote-worker.log\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:29168 +#: guix-git/doc/guix.texi:29505 #, no-wrap msgid "@code{publish-port} (default: @code{5558})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29170 +#: guix-git/doc/guix.texi:29507 msgid "The TCP port of the publish server. It defaults to @code{5558}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29182 +#: guix-git/doc/guix.texi:29519 #, no-wrap msgid "Laminar" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29187 +#: guix-git/doc/guix.texi:29524 msgid "@uref{https://laminar.ohwg.net/, Laminar} is a lightweight and modular Continuous Integration service. It doesn't have a configuration web UI instead uses version-controllable configuration files and scripts." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29190 +#: guix-git/doc/guix.texi:29527 msgid "Laminar encourages the use of existing tools such as bash and cron instead of reinventing them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29191 +#: guix-git/doc/guix.texi:29528 #, no-wrap msgid "{Scheme Procedure} laminar-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29194 +#: guix-git/doc/guix.texi:29531 msgid "The type of the Laminar service. Its value must be a @code{laminar-configuration} object, as described below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29198 +#: guix-git/doc/guix.texi:29535 msgid "All configuration values have defaults, a minimal configuration to get Laminar running is shown below. By default, the web interface is available on port 8080." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29201 +#: guix-git/doc/guix.texi:29538 #, no-wrap msgid "(service laminar-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29204 +#: guix-git/doc/guix.texi:29541 #, no-wrap msgid "{Data Type} laminar-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29206 +#: guix-git/doc/guix.texi:29543 msgid "Data type representing the configuration of Laminar." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29208 +#: guix-git/doc/guix.texi:29545 #, no-wrap msgid "@code{laminar} (default: @code{laminar})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29210 +#: guix-git/doc/guix.texi:29547 msgid "The Laminar package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29211 +#: guix-git/doc/guix.texi:29548 #, no-wrap msgid "@code{home-directory} (default: @code{\"/var/lib/laminar\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29213 +#: guix-git/doc/guix.texi:29550 msgid "The directory for job configurations and run directories." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29214 +#: guix-git/doc/guix.texi:29551 #, no-wrap msgid "@code{bind-http} (default: @code{\"*:8080\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29217 +#: guix-git/doc/guix.texi:29554 msgid "The interface/port or unix socket on which laminard should listen for incoming connections to the web frontend." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29218 +#: guix-git/doc/guix.texi:29555 #, no-wrap msgid "@code{bind-rpc} (default: @code{\"unix-abstract:laminar\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29221 +#: guix-git/doc/guix.texi:29558 msgid "The interface/port or unix socket on which laminard should listen for incoming commands such as build triggers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29222 +#: guix-git/doc/guix.texi:29559 #, no-wrap msgid "@code{title} (default: @code{\"Laminar\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29224 +#: guix-git/doc/guix.texi:29561 msgid "The page title to show in the web frontend." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29225 +#: guix-git/doc/guix.texi:29562 #, no-wrap msgid "@code{keep-rundirs} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29229 +#: guix-git/doc/guix.texi:29566 msgid "Set to an integer defining how many rundirs to keep per job. The lowest-numbered ones will be deleted. The default is 0, meaning all run dirs will be immediately deleted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29230 +#: guix-git/doc/guix.texi:29567 #, no-wrap msgid "@code{archive-url} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29233 +#: guix-git/doc/guix.texi:29570 msgid "The web frontend served by laminard will use this URL to form links to artefacts archived jobs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29234 +#: guix-git/doc/guix.texi:29571 #, no-wrap msgid "@code{base-url} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29236 +#: guix-git/doc/guix.texi:29573 msgid "Base URL to use for links to laminar itself." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29243 +#: guix-git/doc/guix.texi:29580 #, no-wrap msgid "tlp" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29244 +#: guix-git/doc/guix.texi:29581 #, no-wrap msgid "power management with TLP" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29245 +#: guix-git/doc/guix.texi:29582 #, no-wrap msgid "TLP daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29249 +#: guix-git/doc/guix.texi:29586 msgid "The @code{(gnu services pm)} module provides a Guix service definition for the Linux power management tool TLP." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29255 +#: guix-git/doc/guix.texi:29592 msgid "TLP enables various powersaving modes in userspace and kernel. Contrary to @code{upower-service}, it is not a passive, monitoring tool, as it will apply custom settings each time a new power source is detected. More information can be found at @uref{https://linrunner.de/en/tlp/tlp.html, TLP home page}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29256 +#: guix-git/doc/guix.texi:29593 #, no-wrap msgid "{Scheme Variable} tlp-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29260 +#: guix-git/doc/guix.texi:29597 msgid "The service type for the TLP tool. The default settings are optimised for battery life on most systems, but you can tweak them to your heart's content by adding a valid @code{tlp-configuration}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29265 +#: guix-git/doc/guix.texi:29602 #, no-wrap msgid "" "(service tlp-service-type\n" @@ -52703,888 +53323,932 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29273 +#: guix-git/doc/guix.texi:29610 msgid "Each parameter definition is preceded by its type; for example, @samp{boolean foo} indicates that the @code{foo} parameter should be specified as a boolean. Types starting with @code{maybe-} denote parameters that won't show up in TLP config file when their value is @code{'disabled}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29283 +#: guix-git/doc/guix.texi:29620 msgid "Available @code{tlp-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29284 +#: guix-git/doc/guix.texi:29621 #, no-wrap msgid "{@code{tlp-configuration} parameter} package tlp" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29286 +#: guix-git/doc/guix.texi:29623 msgid "The TLP package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29289 +#: guix-git/doc/guix.texi:29626 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean tlp-enable?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29291 +#: guix-git/doc/guix.texi:29628 msgid "Set to true if you wish to enable TLP." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29296 +#: guix-git/doc/guix.texi:29633 #, no-wrap msgid "{@code{tlp-configuration} parameter} string tlp-default-mode" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29299 +#: guix-git/doc/guix.texi:29636 msgid "Default mode when no power supply can be detected. Alternatives are AC and BAT." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29301 +#: guix-git/doc/guix.texi:29638 msgid "Defaults to @samp{\"AC\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29304 +#: guix-git/doc/guix.texi:29641 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer disk-idle-secs-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29307 +#: guix-git/doc/guix.texi:29644 msgid "Number of seconds Linux kernel has to wait after the disk goes idle, before syncing on AC." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29312 +#: guix-git/doc/guix.texi:29649 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer disk-idle-secs-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29314 +#: guix-git/doc/guix.texi:29651 msgid "Same as @code{disk-idle-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29316 +#: guix-git/doc/guix.texi:29653 msgid "Defaults to @samp{2}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29319 +#: guix-git/doc/guix.texi:29656 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer max-lost-work-secs-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29321 +#: guix-git/doc/guix.texi:29658 msgid "Dirty pages flushing periodicity, expressed in seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29323 guix-git/doc/guix.texi:29546 -#: guix-git/doc/guix.texi:31814 guix-git/doc/guix.texi:31822 +#: guix-git/doc/guix.texi:29660 guix-git/doc/guix.texi:29883 +#: guix-git/doc/guix.texi:32179 guix-git/doc/guix.texi:32187 msgid "Defaults to @samp{15}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29326 +#: guix-git/doc/guix.texi:29663 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer max-lost-work-secs-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29328 +#: guix-git/doc/guix.texi:29665 msgid "Same as @code{max-lost-work-secs-on-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29330 +#: guix-git/doc/guix.texi:29667 msgid "Defaults to @samp{60}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29333 +#: guix-git/doc/guix.texi:29670 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list cpu-scaling-governor-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29337 +#: guix-git/doc/guix.texi:29674 msgid "CPU frequency scaling governor on AC mode. With intel_pstate driver, alternatives are powersave and performance. With acpi-cpufreq driver, alternatives are ondemand, powersave, performance and conservative." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29342 +#: guix-git/doc/guix.texi:29679 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list cpu-scaling-governor-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29344 +#: guix-git/doc/guix.texi:29681 msgid "Same as @code{cpu-scaling-governor-on-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29349 +#: guix-git/doc/guix.texi:29686 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-min-freq-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29351 +#: guix-git/doc/guix.texi:29688 msgid "Set the min available frequency for the scaling governor on AC." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29356 +#: guix-git/doc/guix.texi:29693 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-max-freq-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29358 +#: guix-git/doc/guix.texi:29695 msgid "Set the max available frequency for the scaling governor on AC." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29363 +#: guix-git/doc/guix.texi:29700 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-min-freq-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29365 +#: guix-git/doc/guix.texi:29702 msgid "Set the min available frequency for the scaling governor on BAT." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29370 +#: guix-git/doc/guix.texi:29707 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-max-freq-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29372 +#: guix-git/doc/guix.texi:29709 msgid "Set the max available frequency for the scaling governor on BAT." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29377 +#: guix-git/doc/guix.texi:29714 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-min-perf-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29380 +#: guix-git/doc/guix.texi:29717 msgid "Limit the min P-state to control the power dissipation of the CPU, in AC mode. Values are stated as a percentage of the available performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29385 +#: guix-git/doc/guix.texi:29722 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29388 +#: guix-git/doc/guix.texi:29725 msgid "Limit the max P-state to control the power dissipation of the CPU, in AC mode. Values are stated as a percentage of the available performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29393 +#: guix-git/doc/guix.texi:29730 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-min-perf-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29395 +#: guix-git/doc/guix.texi:29732 msgid "Same as @code{cpu-min-perf-on-ac} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29400 +#: guix-git/doc/guix.texi:29737 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29402 +#: guix-git/doc/guix.texi:29739 msgid "Same as @code{cpu-max-perf-on-ac} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29407 +#: guix-git/doc/guix.texi:29744 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean cpu-boost-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29409 +#: guix-git/doc/guix.texi:29746 msgid "Enable CPU turbo boost feature on AC mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29414 +#: guix-git/doc/guix.texi:29751 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean cpu-boost-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29416 +#: guix-git/doc/guix.texi:29753 msgid "Same as @code{cpu-boost-on-ac?} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29421 +#: guix-git/doc/guix.texi:29758 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean sched-powersave-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29424 +#: guix-git/doc/guix.texi:29761 msgid "Allow Linux kernel to minimize the number of CPU cores/hyper-threads used under light load conditions." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29429 +#: guix-git/doc/guix.texi:29766 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean sched-powersave-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29431 +#: guix-git/doc/guix.texi:29768 msgid "Same as @code{sched-powersave-on-ac?} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29436 +#: guix-git/doc/guix.texi:29773 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean nmi-watchdog?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29438 +#: guix-git/doc/guix.texi:29775 msgid "Enable Linux kernel NMI watchdog." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29443 +#: guix-git/doc/guix.texi:29780 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string phc-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29446 +#: guix-git/doc/guix.texi:29783 msgid "For Linux kernels with PHC patch applied, change CPU voltages. An example value would be @samp{\"F:V F:V F:V F:V\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29451 +#: guix-git/doc/guix.texi:29788 #, no-wrap msgid "{@code{tlp-configuration} parameter} string energy-perf-policy-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29454 +#: guix-git/doc/guix.texi:29791 msgid "Set CPU performance versus energy saving policy on AC@. Alternatives are performance, normal, powersave." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29456 guix-git/doc/guix.texi:29554 -#: guix-git/doc/guix.texi:29584 +#: guix-git/doc/guix.texi:29793 guix-git/doc/guix.texi:29891 +#: guix-git/doc/guix.texi:29949 msgid "Defaults to @samp{\"performance\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29459 +#: guix-git/doc/guix.texi:29796 #, no-wrap msgid "{@code{tlp-configuration} parameter} string energy-perf-policy-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29461 +#: guix-git/doc/guix.texi:29798 msgid "Same as @code{energy-perf-policy-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29463 guix-git/doc/guix.texi:29561 +#: guix-git/doc/guix.texi:29800 guix-git/doc/guix.texi:29898 msgid "Defaults to @samp{\"powersave\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29466 +#: guix-git/doc/guix.texi:29803 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disks-devices" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29468 +#: guix-git/doc/guix.texi:29805 msgid "Hard disk devices." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29471 +#: guix-git/doc/guix.texi:29808 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disk-apm-level-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29473 +#: guix-git/doc/guix.texi:29810 msgid "Hard disk advanced power management level." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29476 +#: guix-git/doc/guix.texi:29813 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disk-apm-level-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29478 +#: guix-git/doc/guix.texi:29815 msgid "Same as @code{disk-apm-bat} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29481 +#: guix-git/doc/guix.texi:29818 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-spindown-timeout-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29484 +#: guix-git/doc/guix.texi:29821 msgid "Hard disk spin down timeout. One value has to be specified for each declared hard disk." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29489 +#: guix-git/doc/guix.texi:29826 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-spindown-timeout-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29491 +#: guix-git/doc/guix.texi:29828 msgid "Same as @code{disk-spindown-timeout-on-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29496 +#: guix-git/doc/guix.texi:29833 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-iosched" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29500 +#: guix-git/doc/guix.texi:29837 msgid "Select IO scheduler for disk devices. One value has to be specified for each declared hard disk. Example alternatives are cfq, deadline and noop." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29505 +#: guix-git/doc/guix.texi:29842 #, no-wrap msgid "{@code{tlp-configuration} parameter} string sata-linkpwr-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29508 +#: guix-git/doc/guix.texi:29845 msgid "SATA aggressive link power management (ALPM) level. Alternatives are min_power, medium_power, max_performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29510 +#: guix-git/doc/guix.texi:29847 msgid "Defaults to @samp{\"max_performance\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29513 +#: guix-git/doc/guix.texi:29850 #, no-wrap msgid "{@code{tlp-configuration} parameter} string sata-linkpwr-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29515 +#: guix-git/doc/guix.texi:29852 msgid "Same as @code{sata-linkpwr-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29517 +#: guix-git/doc/guix.texi:29854 msgid "Defaults to @samp{\"min_power\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29520 +#: guix-git/doc/guix.texi:29857 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string sata-linkpwr-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29522 +#: guix-git/doc/guix.texi:29859 msgid "Exclude specified SATA host devices for link power management." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29527 +#: guix-git/doc/guix.texi:29864 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-on-off-boolean ahci-runtime-pm-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29530 +#: guix-git/doc/guix.texi:29867 msgid "Enable Runtime Power Management for AHCI controller and disks on AC mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29535 +#: guix-git/doc/guix.texi:29872 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-on-off-boolean ahci-runtime-pm-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29537 +#: guix-git/doc/guix.texi:29874 msgid "Same as @code{ahci-runtime-pm-on-ac} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29542 +#: guix-git/doc/guix.texi:29879 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer ahci-runtime-pm-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29544 +#: guix-git/doc/guix.texi:29881 msgid "Seconds of inactivity before disk is suspended." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29549 +#: guix-git/doc/guix.texi:29886 #, no-wrap msgid "{@code{tlp-configuration} parameter} string pcie-aspm-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29552 +#: guix-git/doc/guix.texi:29889 msgid "PCI Express Active State Power Management level. Alternatives are default, performance, powersave." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29557 +#: guix-git/doc/guix.texi:29894 #, no-wrap msgid "{@code{tlp-configuration} parameter} string pcie-aspm-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29559 +#: guix-git/doc/guix.texi:29896 msgid "Same as @code{pcie-aspm-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29564 +#: guix-git/doc/guix.texi:29901 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer start-charge-thresh-bat0" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29903 +msgid "Percentage when battery 0 should begin charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29908 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer stop-charge-thresh-bat0" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29910 +msgid "Percentage when battery 0 should stop charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29915 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer start-charge-thresh-bat1" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29917 +msgid "Percentage when battery 1 should begin charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29922 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer stop-charge-thresh-bat1" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29924 +msgid "Percentage when battery 1 should stop charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29929 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-power-profile-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29567 +#: guix-git/doc/guix.texi:29932 msgid "Radeon graphics clock speed level. Alternatives are low, mid, high, auto, default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29569 +#: guix-git/doc/guix.texi:29934 msgid "Defaults to @samp{\"high\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29572 +#: guix-git/doc/guix.texi:29937 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-power-profile-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29574 +#: guix-git/doc/guix.texi:29939 msgid "Same as @code{radeon-power-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29576 +#: guix-git/doc/guix.texi:29941 msgid "Defaults to @samp{\"low\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29579 +#: guix-git/doc/guix.texi:29944 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-state-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29582 +#: guix-git/doc/guix.texi:29947 msgid "Radeon dynamic power management method (DPM). Alternatives are battery, performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29587 +#: guix-git/doc/guix.texi:29952 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-state-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29589 +#: guix-git/doc/guix.texi:29954 msgid "Same as @code{radeon-dpm-state-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29591 +#: guix-git/doc/guix.texi:29956 msgid "Defaults to @samp{\"battery\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29594 +#: guix-git/doc/guix.texi:29959 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-perf-level-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29596 +#: guix-git/doc/guix.texi:29961 msgid "Radeon DPM performance level. Alternatives are auto, low, high." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29598 guix-git/doc/guix.texi:29605 -#: guix-git/doc/guix.texi:29679 +#: guix-git/doc/guix.texi:29963 guix-git/doc/guix.texi:29970 +#: guix-git/doc/guix.texi:30044 msgid "Defaults to @samp{\"auto\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29601 +#: guix-git/doc/guix.texi:29966 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-perf-level-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29603 +#: guix-git/doc/guix.texi:29968 msgid "Same as @code{radeon-dpm-perf-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29608 +#: guix-git/doc/guix.texi:29973 #, no-wrap msgid "{@code{tlp-configuration} parameter} on-off-boolean wifi-pwr-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29610 +#: guix-git/doc/guix.texi:29975 msgid "Wifi power saving mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29615 +#: guix-git/doc/guix.texi:29980 #, no-wrap msgid "{@code{tlp-configuration} parameter} on-off-boolean wifi-pwr-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29617 +#: guix-git/doc/guix.texi:29982 msgid "Same as @code{wifi-power-ac?} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29622 +#: guix-git/doc/guix.texi:29987 #, no-wrap msgid "{@code{tlp-configuration} parameter} y-n-boolean wol-disable?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29624 +#: guix-git/doc/guix.texi:29989 msgid "Disable wake on LAN." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29629 +#: guix-git/doc/guix.texi:29994 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer sound-power-save-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29632 +#: guix-git/doc/guix.texi:29997 msgid "Timeout duration in seconds before activating audio power saving on Intel HDA and AC97 devices. A value of 0 disables power saving." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29637 +#: guix-git/doc/guix.texi:30002 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer sound-power-save-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29639 +#: guix-git/doc/guix.texi:30004 msgid "Same as @code{sound-powersave-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29644 +#: guix-git/doc/guix.texi:30009 #, no-wrap msgid "{@code{tlp-configuration} parameter} y-n-boolean sound-power-save-controller?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29646 +#: guix-git/doc/guix.texi:30011 msgid "Disable controller in powersaving mode on Intel HDA devices." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29651 +#: guix-git/doc/guix.texi:30016 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean bay-poweroff-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29655 +#: guix-git/doc/guix.texi:30020 msgid "Enable optical drive in UltraBay/MediaBay on BAT mode. Drive can be powered on again by releasing (and reinserting) the eject lever or by pressing the disc eject button on newer models." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29660 +#: guix-git/doc/guix.texi:30025 #, no-wrap msgid "{@code{tlp-configuration} parameter} string bay-device" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29662 +#: guix-git/doc/guix.texi:30027 msgid "Name of the optical drive device to power off." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29664 +#: guix-git/doc/guix.texi:30029 msgid "Defaults to @samp{\"sr0\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29667 +#: guix-git/doc/guix.texi:30032 #, no-wrap msgid "{@code{tlp-configuration} parameter} string runtime-pm-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29670 +#: guix-git/doc/guix.texi:30035 msgid "Runtime Power Management for PCI(e) bus devices. Alternatives are on and auto." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29672 +#: guix-git/doc/guix.texi:30037 msgid "Defaults to @samp{\"on\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29675 +#: guix-git/doc/guix.texi:30040 #, no-wrap msgid "{@code{tlp-configuration} parameter} string runtime-pm-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29677 +#: guix-git/doc/guix.texi:30042 msgid "Same as @code{runtime-pm-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29682 +#: guix-git/doc/guix.texi:30047 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean runtime-pm-all?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29685 +#: guix-git/doc/guix.texi:30050 msgid "Runtime Power Management for all PCI(e) bus devices, except blacklisted ones." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29690 +#: guix-git/doc/guix.texi:30055 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list runtime-pm-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29692 +#: guix-git/doc/guix.texi:30057 msgid "Exclude specified PCI(e) device addresses from Runtime Power Management." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29697 +#: guix-git/doc/guix.texi:30062 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list runtime-pm-driver-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29700 +#: guix-git/doc/guix.texi:30065 msgid "Exclude PCI(e) devices assigned to the specified drivers from Runtime Power Management." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29703 +#: guix-git/doc/guix.texi:30068 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean usb-autosuspend?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29705 +#: guix-git/doc/guix.texi:30070 msgid "Enable USB autosuspend feature." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29710 +#: guix-git/doc/guix.texi:30075 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string usb-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29712 +#: guix-git/doc/guix.texi:30077 msgid "Exclude specified devices from USB autosuspend." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29717 +#: guix-git/doc/guix.texi:30082 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean usb-blacklist-wwan?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29719 +#: guix-git/doc/guix.texi:30084 msgid "Exclude WWAN devices from USB autosuspend." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29724 +#: guix-git/doc/guix.texi:30089 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string usb-whitelist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29727 +#: guix-git/doc/guix.texi:30092 msgid "Include specified devices into USB autosuspend, even if they are already excluded by the driver or via @code{usb-blacklist-wwan?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29732 +#: guix-git/doc/guix.texi:30097 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean usb-autosuspend-disable-on-shutdown?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29734 +#: guix-git/doc/guix.texi:30099 msgid "Enable USB autosuspend before shutdown." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29739 +#: guix-git/doc/guix.texi:30104 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean restore-device-state-on-startup?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29742 +#: guix-git/doc/guix.texi:30107 msgid "Restore radio device state (bluetooth, wifi, wwan) from previous shutdown on system startup." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29747 +#: guix-git/doc/guix.texi:30112 #, no-wrap msgid "thermald" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29748 +#: guix-git/doc/guix.texi:30113 #, no-wrap msgid "CPU frequency scaling with thermald" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29749 +#: guix-git/doc/guix.texi:30114 #, no-wrap msgid "Thermald daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29753 +#: guix-git/doc/guix.texi:30118 msgid "The @code{(gnu services pm)} module provides an interface to thermald, a CPU frequency scaling service which helps prevent overheating." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29754 +#: guix-git/doc/guix.texi:30119 #, no-wrap msgid "{Scheme Variable} thermald-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29759 +#: guix-git/doc/guix.texi:30124 msgid "This is the service type for @uref{https://01.org/linux-thermal-daemon/, thermald}, the Linux Thermal Daemon, which is responsible for controlling the thermal state of processors and preventing overheating." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29761 +#: guix-git/doc/guix.texi:30126 #, no-wrap msgid "{Data Type} thermald-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29763 +#: guix-git/doc/guix.texi:30128 msgid "Data type representing the configuration of @code{thermald-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29765 +#: guix-git/doc/guix.texi:30130 #, no-wrap msgid "@code{ignore-cpuid-check?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29767 +#: guix-git/doc/guix.texi:30132 msgid "Ignore cpuid check for supported CPU models." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29768 +#: guix-git/doc/guix.texi:30133 #, no-wrap msgid "@code{thermald} (default: @var{thermald})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29770 +#: guix-git/doc/guix.texi:30135 msgid "Package object of thermald." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29779 +#: guix-git/doc/guix.texi:30144 msgid "The @code{(gnu services audio)} module provides a service to start MPD (the Music Player Daemon)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29780 +#: guix-git/doc/guix.texi:30145 #, no-wrap msgid "mpd" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29781 +#: guix-git/doc/guix.texi:30146 #, no-wrap msgid "Music Player Daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29786 +#: guix-git/doc/guix.texi:30151 msgid "The Music Player Daemon (MPD) is a service that can play music while being controlled from the local machine or over the network by a variety of clients." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29789 +#: guix-git/doc/guix.texi:30154 msgid "The following example shows how one might run @code{mpd} as user @code{\"bob\"} on port @code{6666}. It uses pulseaudio for output." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29795 +#: guix-git/doc/guix.texi:30160 #, no-wrap msgid "" "(service mpd-service-type\n" @@ -53594,215 +54258,215 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29797 +#: guix-git/doc/guix.texi:30162 #, no-wrap msgid "{Scheme Variable} mpd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29799 +#: guix-git/doc/guix.texi:30164 msgid "The service type for @command{mpd}" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29801 +#: guix-git/doc/guix.texi:30166 #, no-wrap msgid "{Data Type} mpd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29803 +#: guix-git/doc/guix.texi:30168 msgid "Data type representing the configuration of @command{mpd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29805 +#: guix-git/doc/guix.texi:30170 #, no-wrap msgid "@code{user} (default: @code{\"mpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29807 +#: guix-git/doc/guix.texi:30172 msgid "The user to run mpd as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29808 +#: guix-git/doc/guix.texi:30173 #, no-wrap msgid "@code{music-dir} (default: @code{\"~/Music\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29810 +#: guix-git/doc/guix.texi:30175 msgid "The directory to scan for music files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29811 +#: guix-git/doc/guix.texi:30176 #, no-wrap msgid "@code{playlist-dir} (default: @code{\"~/.mpd/playlists\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29813 +#: guix-git/doc/guix.texi:30178 msgid "The directory to store playlists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29814 +#: guix-git/doc/guix.texi:30179 #, no-wrap msgid "@code{db-file} (default: @code{\"~/.mpd/tag_cache\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29816 +#: guix-git/doc/guix.texi:30181 msgid "The location of the music database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29817 +#: guix-git/doc/guix.texi:30182 #, no-wrap msgid "@code{state-file} (default: @code{\"~/.mpd/state\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29819 +#: guix-git/doc/guix.texi:30184 msgid "The location of the file that stores current MPD's state." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29820 +#: guix-git/doc/guix.texi:30185 #, no-wrap msgid "@code{sticker-file} (default: @code{\"~/.mpd/sticker.sql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29822 +#: guix-git/doc/guix.texi:30187 msgid "The location of the sticker database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29823 +#: guix-git/doc/guix.texi:30188 #, no-wrap msgid "@code{port} (default: @code{\"6600\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29825 +#: guix-git/doc/guix.texi:30190 msgid "The port to run mpd on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29826 +#: guix-git/doc/guix.texi:30191 #, no-wrap msgid "@code{address} (default: @code{\"any\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29829 +#: guix-git/doc/guix.texi:30194 msgid "The address that mpd will bind to. To use a Unix domain socket, an absolute path can be specified here." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29830 +#: guix-git/doc/guix.texi:30195 #, no-wrap msgid "@code{outputs} (default: @code{\"(list (mpd-output))\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29832 +#: guix-git/doc/guix.texi:30197 msgid "The audio outputs that MPD can use. By default this is a single output using pulseaudio." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29836 +#: guix-git/doc/guix.texi:30201 #, no-wrap msgid "{Data Type} mpd-output" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29838 +#: guix-git/doc/guix.texi:30203 msgid "Data type representing an @command{mpd} audio output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29840 +#: guix-git/doc/guix.texi:30205 #, no-wrap msgid "@code{name} (default: @code{\"MPD\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29842 +#: guix-git/doc/guix.texi:30207 msgid "The name of the audio output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29843 +#: guix-git/doc/guix.texi:30208 #, no-wrap msgid "@code{type} (default: @code{\"pulse\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29845 +#: guix-git/doc/guix.texi:30210 msgid "The type of audio output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29846 +#: guix-git/doc/guix.texi:30211 #, no-wrap msgid "@code{enabled?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29851 +#: guix-git/doc/guix.texi:30216 msgid "Specifies whether this audio output is enabled when MPD is started. By default, all audio outputs are enabled. This is just the default setting when there is no state file; with a state file, the previous state is restored." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29852 +#: guix-git/doc/guix.texi:30217 #, no-wrap msgid "@code{tags?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29856 +#: guix-git/doc/guix.texi:30221 msgid "If set to @code{#f}, then MPD will not send tags to this output. This is only useful for output plugins that can receive tags, for example the @code{httpd} output plugin." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29857 +#: guix-git/doc/guix.texi:30222 #, no-wrap msgid "@code{always-on?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29861 +#: guix-git/doc/guix.texi:30226 msgid "If set to @code{#t}, then MPD attempts to keep this audio output always open. This may be useful for streaming servers, when you don’t want to disconnect all listeners even when playback is accidentally stopped." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:29862 +#: guix-git/doc/guix.texi:30227 #, no-wrap msgid "mixer-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29868 +#: guix-git/doc/guix.texi:30233 msgid "This field accepts a symbol that specifies which mixer should be used for this audio output: the @code{hardware} mixer, the @code{software} mixer, the @code{null} mixer (allows setting the volume, but with no effect; this can be used as a trick to implement an external mixer External Mixer) or no mixer (@code{none})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29872 +#: guix-git/doc/guix.texi:30237 msgid "An association list of option symbols to string values to be appended to the audio output configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29878 +#: guix-git/doc/guix.texi:30243 msgid "The following example shows a configuration of @code{mpd} that provides an HTTP audio streaming output." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29890 +#: guix-git/doc/guix.texi:30255 #, no-wrap msgid "" "(service mpd-service-type\n" @@ -53818,34 +54482,34 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29899 +#: guix-git/doc/guix.texi:30264 msgid "The @code{(gnu services virtualization)} module provides services for the libvirt and virtlog daemons, as well as other virtualization-related services." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29900 +#: guix-git/doc/guix.texi:30265 #, no-wrap msgid "Libvirt daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29905 +#: guix-git/doc/guix.texi:30270 msgid "@code{libvirtd} is the server side daemon component of the libvirt virtualization management system. This daemon runs on host servers and performs required management tasks for virtualized guests." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29906 +#: guix-git/doc/guix.texi:30271 #, no-wrap msgid "{Scheme Variable} libvirt-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29909 +#: guix-git/doc/guix.texi:30274 msgid "This is the type of the @uref{https://libvirt.org, libvirt daemon}. Its value must be a @code{libvirt-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29915 +#: guix-git/doc/guix.texi:30280 #, no-wrap msgid "" "(service libvirt-service-type\n" @@ -53855,870 +54519,870 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29920 +#: guix-git/doc/guix.texi:30285 msgid "Available @code{libvirt-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29921 +#: guix-git/doc/guix.texi:30286 #, no-wrap msgid "{@code{libvirt-configuration} parameter} package libvirt" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29923 +#: guix-git/doc/guix.texi:30288 msgid "Libvirt package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29926 +#: guix-git/doc/guix.texi:30291 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean listen-tls?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29929 +#: guix-git/doc/guix.texi:30294 msgid "Flag listening for secure TLS connections on the public TCP/IP port. You must set @code{listen} for this to have any effect." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29932 +#: guix-git/doc/guix.texi:30297 msgid "It is necessary to setup a CA and issue server certificates before using this capability." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29937 +#: guix-git/doc/guix.texi:30302 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean listen-tcp?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29940 +#: guix-git/doc/guix.texi:30305 msgid "Listen for unencrypted TCP connections on the public TCP/IP port. You must set @code{listen} for this to have any effect." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29944 +#: guix-git/doc/guix.texi:30309 msgid "Using the TCP socket requires SASL authentication by default. Only SASL mechanisms which support data encryption are allowed. This is DIGEST_MD5 and GSSAPI (Kerberos5)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29949 +#: guix-git/doc/guix.texi:30314 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tls-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29952 +#: guix-git/doc/guix.texi:30317 msgid "Port for accepting secure TLS connections. This can be a port number, or service name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29954 +#: guix-git/doc/guix.texi:30319 msgid "Defaults to @samp{\"16514\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29957 +#: guix-git/doc/guix.texi:30322 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tcp-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29960 +#: guix-git/doc/guix.texi:30325 msgid "Port for accepting insecure TCP connections. This can be a port number, or service name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29962 +#: guix-git/doc/guix.texi:30327 msgid "Defaults to @samp{\"16509\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29965 +#: guix-git/doc/guix.texi:30330 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string listen-addr" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29967 +#: guix-git/doc/guix.texi:30332 msgid "IP address or hostname used for client connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29972 +#: guix-git/doc/guix.texi:30337 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean mdns-adv?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29974 +#: guix-git/doc/guix.texi:30339 msgid "Flag toggling mDNS advertisement of the libvirt service." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29977 +#: guix-git/doc/guix.texi:30342 msgid "Alternatively can disable for all services on a host by stopping the Avahi daemon." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29982 +#: guix-git/doc/guix.texi:30347 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string mdns-name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29985 +#: guix-git/doc/guix.texi:30350 msgid "Default mDNS advertisement name. This must be unique on the immediate broadcast network." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29987 +#: guix-git/doc/guix.texi:30352 msgid "Defaults to @samp{\"Virtualization Host \"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29990 +#: guix-git/doc/guix.texi:30355 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29994 +#: guix-git/doc/guix.texi:30359 msgid "UNIX domain socket group ownership. This can be used to allow a 'trusted' set of users access to management capabilities without becoming root." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29999 +#: guix-git/doc/guix.texi:30364 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-ro-perms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30002 +#: guix-git/doc/guix.texi:30367 msgid "UNIX socket permissions for the R/O socket. This is used for monitoring VM status only." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30004 guix-git/doc/guix.texi:30022 +#: guix-git/doc/guix.texi:30369 guix-git/doc/guix.texi:30387 msgid "Defaults to @samp{\"0777\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30007 +#: guix-git/doc/guix.texi:30372 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-rw-perms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30011 +#: guix-git/doc/guix.texi:30376 msgid "UNIX socket permissions for the R/W socket. Default allows only root. If PolicyKit is enabled on the socket, the default will change to allow everyone (eg, 0777)" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30013 +#: guix-git/doc/guix.texi:30378 msgid "Defaults to @samp{\"0770\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30016 +#: guix-git/doc/guix.texi:30381 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-admin-perms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30020 +#: guix-git/doc/guix.texi:30385 msgid "UNIX socket permissions for the admin socket. Default allows only owner (root), do not change it unless you are sure to whom you are exposing the access to." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30025 +#: guix-git/doc/guix.texi:30390 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30027 +#: guix-git/doc/guix.texi:30392 msgid "The directory in which sockets will be found/created." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30029 +#: guix-git/doc/guix.texi:30394 msgid "Defaults to @samp{\"/var/run/libvirt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30032 +#: guix-git/doc/guix.texi:30397 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-unix-ro" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30035 +#: guix-git/doc/guix.texi:30400 msgid "Authentication scheme for UNIX read-only sockets. By default socket permissions allow anyone to connect" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30037 guix-git/doc/guix.texi:30046 +#: guix-git/doc/guix.texi:30402 guix-git/doc/guix.texi:30411 msgid "Defaults to @samp{\"polkit\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30040 +#: guix-git/doc/guix.texi:30405 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-unix-rw" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30044 +#: guix-git/doc/guix.texi:30409 msgid "Authentication scheme for UNIX read-write sockets. By default socket permissions only allow root. If PolicyKit support was compiled into libvirt, the default will be to use 'polkit' auth." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30049 +#: guix-git/doc/guix.texi:30414 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-tcp" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30053 +#: guix-git/doc/guix.texi:30418 msgid "Authentication scheme for TCP sockets. If you don't enable SASL, then all TCP traffic is cleartext. Don't do this outside of a dev/test scenario." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30055 +#: guix-git/doc/guix.texi:30420 msgid "Defaults to @samp{\"sasl\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30058 +#: guix-git/doc/guix.texi:30423 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-tls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30062 +#: guix-git/doc/guix.texi:30427 msgid "Authentication scheme for TLS sockets. TLS sockets already have encryption provided by the TLS layer, and limited authentication is done by certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30065 +#: guix-git/doc/guix.texi:30430 msgid "It is possible to make use of any SASL authentication mechanism as well, by using 'sasl' for this option" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30067 +#: guix-git/doc/guix.texi:30432 msgid "Defaults to @samp{\"none\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30070 +#: guix-git/doc/guix.texi:30435 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list access-drivers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30072 +#: guix-git/doc/guix.texi:30437 msgid "API access control scheme." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30075 +#: guix-git/doc/guix.texi:30440 msgid "By default an authenticated user is allowed access to all APIs. Access drivers can place restrictions on this." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30080 +#: guix-git/doc/guix.texi:30445 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string key-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30083 +#: guix-git/doc/guix.texi:30448 msgid "Server key file path. If set to an empty string, then no private key is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30088 +#: guix-git/doc/guix.texi:30453 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string cert-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30091 +#: guix-git/doc/guix.texi:30456 msgid "Server key file path. If set to an empty string, then no certificate is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30096 +#: guix-git/doc/guix.texi:30461 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string ca-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30099 +#: guix-git/doc/guix.texi:30464 msgid "Server key file path. If set to an empty string, then no CA certificate is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30104 +#: guix-git/doc/guix.texi:30469 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string crl-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30107 +#: guix-git/doc/guix.texi:30472 msgid "Certificate revocation list path. If set to an empty string, then no CRL is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30112 +#: guix-git/doc/guix.texi:30477 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean tls-no-sanity-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30114 +#: guix-git/doc/guix.texi:30479 msgid "Disable verification of our own server certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30117 +#: guix-git/doc/guix.texi:30482 msgid "When libvirtd starts it performs some sanity checks against its own certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30122 +#: guix-git/doc/guix.texi:30487 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean tls-no-verify-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30124 +#: guix-git/doc/guix.texi:30489 msgid "Disable verification of client certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30128 +#: guix-git/doc/guix.texi:30493 msgid "Client certificate verification is the primary authentication mechanism. Any client which does not present a certificate signed by the CA will be rejected." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30133 +#: guix-git/doc/guix.texi:30498 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list tls-allowed-dn-list" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30135 +#: guix-git/doc/guix.texi:30500 msgid "Whitelist of allowed x509 Distinguished Name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30140 +#: guix-git/doc/guix.texi:30505 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list sasl-allowed-usernames" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30143 +#: guix-git/doc/guix.texi:30508 msgid "Whitelist of allowed SASL usernames. The format for username depends on the SASL authentication mechanism." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30148 +#: guix-git/doc/guix.texi:30513 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tls-priority" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30152 +#: guix-git/doc/guix.texi:30517 msgid "Override the compile time default TLS priority string. The default is usually @samp{\"NORMAL\"} unless overridden at build time. Only set this is it is desired for libvirt to deviate from the global default settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30154 +#: guix-git/doc/guix.texi:30519 msgid "Defaults to @samp{\"NORMAL\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30157 +#: guix-git/doc/guix.texi:30522 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30160 guix-git/doc/guix.texi:30584 +#: guix-git/doc/guix.texi:30525 guix-git/doc/guix.texi:30949 msgid "Maximum number of concurrent client connections to allow over all sockets combined." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30162 +#: guix-git/doc/guix.texi:30527 msgid "Defaults to @samp{5000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30165 +#: guix-git/doc/guix.texi:30530 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-queued-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30169 +#: guix-git/doc/guix.texi:30534 msgid "Maximum length of queue of connections waiting to be accepted by the daemon. Note, that some protocols supporting retransmission may obey this so that a later reattempt at connection succeeds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30174 +#: guix-git/doc/guix.texi:30539 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-anonymous-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30177 +#: guix-git/doc/guix.texi:30542 msgid "Maximum length of queue of accepted but not yet authenticated clients. Set this to zero to turn this feature off" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30179 guix-git/doc/guix.texi:30197 -#: guix-git/doc/guix.texi:30213 +#: guix-git/doc/guix.texi:30544 guix-git/doc/guix.texi:30562 +#: guix-git/doc/guix.texi:30578 msgid "Defaults to @samp{20}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30182 +#: guix-git/doc/guix.texi:30547 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer min-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30184 +#: guix-git/doc/guix.texi:30549 msgid "Number of workers to start up initially." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30189 +#: guix-git/doc/guix.texi:30554 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30191 +#: guix-git/doc/guix.texi:30556 msgid "Maximum number of worker threads." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30195 +#: guix-git/doc/guix.texi:30560 msgid "If the number of active clients exceeds @code{min-workers}, then more threads are spawned, up to max_workers limit. Typically you'd want max_workers to equal maximum number of clients allowed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30200 +#: guix-git/doc/guix.texi:30565 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer prio-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30204 +#: guix-git/doc/guix.texi:30569 msgid "Number of priority workers. If all workers from above pool are stuck, some calls marked as high priority (notably domainDestroy) can be executed in this pool." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30209 +#: guix-git/doc/guix.texi:30574 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-requests" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30211 +#: guix-git/doc/guix.texi:30576 msgid "Total global limit on concurrent RPC calls." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30216 +#: guix-git/doc/guix.texi:30581 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-client-requests" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30220 +#: guix-git/doc/guix.texi:30585 msgid "Limit on concurrent requests from a single client connection. To avoid one client monopolizing the server this should be a small fraction of the global max_requests and max_workers parameter." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30225 +#: guix-git/doc/guix.texi:30590 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-min-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30227 +#: guix-git/doc/guix.texi:30592 msgid "Same as @code{min-workers} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30232 +#: guix-git/doc/guix.texi:30597 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30234 +#: guix-git/doc/guix.texi:30599 msgid "Same as @code{max-workers} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30239 +#: guix-git/doc/guix.texi:30604 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30241 +#: guix-git/doc/guix.texi:30606 msgid "Same as @code{max-clients} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30246 +#: guix-git/doc/guix.texi:30611 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-queued-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30248 +#: guix-git/doc/guix.texi:30613 msgid "Same as @code{max-queued-clients} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30253 +#: guix-git/doc/guix.texi:30618 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-client-requests" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30255 +#: guix-git/doc/guix.texi:30620 msgid "Same as @code{max-client-requests} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30260 +#: guix-git/doc/guix.texi:30625 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30262 guix-git/doc/guix.texi:30486 +#: guix-git/doc/guix.texi:30627 guix-git/doc/guix.texi:30851 msgid "Logging level. 4 errors, 3 warnings, 2 information, 1 debug." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30267 +#: guix-git/doc/guix.texi:30632 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string log-filters" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30269 guix-git/doc/guix.texi:30493 +#: guix-git/doc/guix.texi:30634 guix-git/doc/guix.texi:30858 msgid "Logging filters." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30272 +#: guix-git/doc/guix.texi:30637 msgid "A filter allows to select a different logging level for a given category of logs. The format for a filter is one of:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30276 guix-git/doc/guix.texi:30500 +#: guix-git/doc/guix.texi:30641 guix-git/doc/guix.texi:30865 msgid "x:name" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30279 guix-git/doc/guix.texi:30503 +#: guix-git/doc/guix.texi:30644 guix-git/doc/guix.texi:30868 msgid "x:+name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30290 +#: guix-git/doc/guix.texi:30655 msgid "where @code{name} is a string which is matched against the category given in the @code{VIR_LOG_INIT()} at the top of each libvirt source file, e.g., @samp{\"remote\"}, @samp{\"qemu\"}, or @samp{\"util.json\"} (the name in the filter can be a substring of the full category name, in order to match multiple similar categories), the optional @samp{\"+\"} prefix tells libvirt to log stack trace for each message matching name, and @code{x} is the minimal level where matching messages should be logged:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30294 guix-git/doc/guix.texi:30339 -#: guix-git/doc/guix.texi:30517 guix-git/doc/guix.texi:30562 +#: guix-git/doc/guix.texi:30659 guix-git/doc/guix.texi:30704 +#: guix-git/doc/guix.texi:30882 guix-git/doc/guix.texi:30927 msgid "1: DEBUG" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30297 guix-git/doc/guix.texi:30342 -#: guix-git/doc/guix.texi:30520 guix-git/doc/guix.texi:30565 +#: guix-git/doc/guix.texi:30662 guix-git/doc/guix.texi:30707 +#: guix-git/doc/guix.texi:30885 guix-git/doc/guix.texi:30930 msgid "2: INFO" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30300 guix-git/doc/guix.texi:30345 -#: guix-git/doc/guix.texi:30523 guix-git/doc/guix.texi:30568 +#: guix-git/doc/guix.texi:30665 guix-git/doc/guix.texi:30710 +#: guix-git/doc/guix.texi:30888 guix-git/doc/guix.texi:30933 msgid "3: WARNING" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30303 guix-git/doc/guix.texi:30348 -#: guix-git/doc/guix.texi:30526 guix-git/doc/guix.texi:30571 +#: guix-git/doc/guix.texi:30668 guix-git/doc/guix.texi:30713 +#: guix-git/doc/guix.texi:30891 guix-git/doc/guix.texi:30936 msgid "4: ERROR" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30308 guix-git/doc/guix.texi:30531 +#: guix-git/doc/guix.texi:30673 guix-git/doc/guix.texi:30896 msgid "Multiple filters can be defined in a single filters statement, they just need to be separated by spaces." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30310 guix-git/doc/guix.texi:30533 +#: guix-git/doc/guix.texi:30675 guix-git/doc/guix.texi:30898 msgid "Defaults to @samp{\"3:remote 4:event\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30313 +#: guix-git/doc/guix.texi:30678 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string log-outputs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30315 guix-git/doc/guix.texi:30538 +#: guix-git/doc/guix.texi:30680 guix-git/doc/guix.texi:30903 msgid "Logging outputs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30318 +#: guix-git/doc/guix.texi:30683 msgid "An output is one of the places to save logging information. The format for an output can be:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30320 guix-git/doc/guix.texi:30543 +#: guix-git/doc/guix.texi:30685 guix-git/doc/guix.texi:30908 #, no-wrap msgid "x:stderr" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30322 guix-git/doc/guix.texi:30545 +#: guix-git/doc/guix.texi:30687 guix-git/doc/guix.texi:30910 msgid "output goes to stderr" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30323 guix-git/doc/guix.texi:30546 +#: guix-git/doc/guix.texi:30688 guix-git/doc/guix.texi:30911 #, no-wrap msgid "x:syslog:name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30325 guix-git/doc/guix.texi:30548 +#: guix-git/doc/guix.texi:30690 guix-git/doc/guix.texi:30913 msgid "use syslog for the output and use the given name as the ident" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30326 guix-git/doc/guix.texi:30549 +#: guix-git/doc/guix.texi:30691 guix-git/doc/guix.texi:30914 #, no-wrap msgid "x:file:file_path" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30328 guix-git/doc/guix.texi:30551 +#: guix-git/doc/guix.texi:30693 guix-git/doc/guix.texi:30916 msgid "output to a file, with the given filepath" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30329 guix-git/doc/guix.texi:30552 +#: guix-git/doc/guix.texi:30694 guix-git/doc/guix.texi:30917 #, no-wrap msgid "x:journald" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30331 guix-git/doc/guix.texi:30554 +#: guix-git/doc/guix.texi:30696 guix-git/doc/guix.texi:30919 msgid "output to journald logging system" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30335 guix-git/doc/guix.texi:30558 +#: guix-git/doc/guix.texi:30700 guix-git/doc/guix.texi:30923 msgid "In all case the x prefix is the minimal level, acting as a filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30353 guix-git/doc/guix.texi:30576 +#: guix-git/doc/guix.texi:30718 guix-git/doc/guix.texi:30941 msgid "Multiple outputs can be defined, they just need to be separated by spaces." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30355 guix-git/doc/guix.texi:30578 +#: guix-git/doc/guix.texi:30720 guix-git/doc/guix.texi:30943 msgid "Defaults to @samp{\"3:stderr\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30358 +#: guix-git/doc/guix.texi:30723 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer audit-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30360 +#: guix-git/doc/guix.texi:30725 msgid "Allows usage of the auditing subsystem to be altered" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30364 +#: guix-git/doc/guix.texi:30729 msgid "0: disable all auditing" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30367 +#: guix-git/doc/guix.texi:30732 msgid "1: enable auditing, only if enabled on host" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30370 +#: guix-git/doc/guix.texi:30735 msgid "2: enable auditing, and exit if disabled on host." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30377 +#: guix-git/doc/guix.texi:30742 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean audit-logging" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30379 +#: guix-git/doc/guix.texi:30744 msgid "Send audit messages via libvirt logging infrastructure." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30384 +#: guix-git/doc/guix.texi:30749 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-string host-uuid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30386 +#: guix-git/doc/guix.texi:30751 msgid "Host UUID@. UUID must not have all digits be the same." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30391 +#: guix-git/doc/guix.texi:30756 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string host-uuid-source" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30393 +#: guix-git/doc/guix.texi:30758 msgid "Source to read host UUID." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30397 +#: guix-git/doc/guix.texi:30762 msgid "@code{smbios}: fetch the UUID from @code{dmidecode -s system-uuid}" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30400 +#: guix-git/doc/guix.texi:30765 msgid "@code{machine-id}: fetch the UUID from @code{/etc/machine-id}" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30405 +#: guix-git/doc/guix.texi:30770 msgid "If @code{dmidecode} does not provide a valid UUID a temporary UUID will be generated." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30407 +#: guix-git/doc/guix.texi:30772 msgid "Defaults to @samp{\"smbios\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30410 +#: guix-git/doc/guix.texi:30775 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer keepalive-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30415 +#: guix-git/doc/guix.texi:30780 msgid "A keepalive message is sent to a client after @code{keepalive_interval} seconds of inactivity to check if the client is still responding. If set to -1, libvirtd will never send keepalive requests; however clients can still send them and the daemon will send responses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30420 +#: guix-git/doc/guix.texi:30785 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer keepalive-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30424 +#: guix-git/doc/guix.texi:30789 msgid "Maximum number of keepalive messages that are allowed to be sent to the client without getting any response before the connection is considered broken." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30431 +#: guix-git/doc/guix.texi:30796 msgid "In other words, the connection is automatically closed approximately after @code{keepalive_interval * (keepalive_count + 1)} seconds since the last message received from the client. When @code{keepalive-count} is set to 0, connections will be automatically closed after @code{keepalive-interval} seconds of inactivity without sending any keepalive messages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30436 +#: guix-git/doc/guix.texi:30801 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-keepalive-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30438 guix-git/doc/guix.texi:30445 +#: guix-git/doc/guix.texi:30803 guix-git/doc/guix.texi:30810 msgid "Same as above but for admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30443 +#: guix-git/doc/guix.texi:30808 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-keepalive-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30450 +#: guix-git/doc/guix.texi:30815 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer ovs-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30452 +#: guix-git/doc/guix.texi:30817 msgid "Timeout for Open vSwitch calls." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30456 +#: guix-git/doc/guix.texi:30821 msgid "The @code{ovs-vsctl} utility is used for the configuration and its timeout option is set by default to 5 seconds to avoid potential infinite waits blocking libvirt." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30463 +#: guix-git/doc/guix.texi:30828 #, no-wrap msgid "Virtlog daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30466 +#: guix-git/doc/guix.texi:30831 msgid "The virtlogd service is a server side daemon component of libvirt that is used to manage logs from virtual machine consoles." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30472 +#: guix-git/doc/guix.texi:30837 msgid "This daemon is not used directly by libvirt client applications, rather it is called on their behalf by @code{libvirtd}. By maintaining the logs in a standalone daemon, the main @code{libvirtd} daemon can be restarted without risk of losing logs. The @code{virtlogd} daemon has the ability to re-exec() itself upon receiving @code{SIGUSR1}, to allow live upgrades without downtime." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30473 +#: guix-git/doc/guix.texi:30838 #, no-wrap msgid "{Scheme Variable} virtlog-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30476 +#: guix-git/doc/guix.texi:30841 msgid "This is the type of the virtlog daemon. Its value must be a @code{virtlog-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30481 +#: guix-git/doc/guix.texi:30846 #, no-wrap msgid "" "(service virtlog-service-type\n" @@ -54727,122 +55391,122 @@ msgid "" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30484 +#: guix-git/doc/guix.texi:30849 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30491 +#: guix-git/doc/guix.texi:30856 #, no-wrap msgid "{@code{virtlog-configuration} parameter} string log-filters" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30496 +#: guix-git/doc/guix.texi:30861 msgid "A filter allows to select a different logging level for a given category of logs The format for a filter is one of:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30513 +#: guix-git/doc/guix.texi:30878 msgid "where @code{name} is a string which is matched against the category given in the @code{VIR_LOG_INIT()} at the top of each libvirt source file, e.g., \"remote\", \"qemu\", or \"util.json\" (the name in the filter can be a substring of the full category name, in order to match multiple similar categories), the optional \"+\" prefix tells libvirt to log stack trace for each message matching name, and @code{x} is the minimal level where matching messages should be logged:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30536 +#: guix-git/doc/guix.texi:30901 #, no-wrap msgid "{@code{virtlog-configuration} parameter} string log-outputs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30541 +#: guix-git/doc/guix.texi:30906 msgid "An output is one of the places to save logging information The format for an output can be:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30581 +#: guix-git/doc/guix.texi:30946 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30586 +#: guix-git/doc/guix.texi:30951 msgid "Defaults to @samp{1024}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30589 +#: guix-git/doc/guix.texi:30954 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30591 +#: guix-git/doc/guix.texi:30956 msgid "Maximum file size before rolling over." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30593 +#: guix-git/doc/guix.texi:30958 msgid "Defaults to @samp{2MB}" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30596 +#: guix-git/doc/guix.texi:30961 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-backups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30598 +#: guix-git/doc/guix.texi:30963 msgid "Maximum number of backup files to keep." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30600 +#: guix-git/doc/guix.texi:30965 msgid "Defaults to @samp{3}" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:30604 +#: guix-git/doc/guix.texi:30969 msgid "transparent-emulation-qemu" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30604 +#: guix-git/doc/guix.texi:30969 #, no-wrap msgid "Transparent Emulation with QEMU" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30606 guix-git/doc/guix.texi:30686 +#: guix-git/doc/guix.texi:30971 guix-git/doc/guix.texi:31051 #, no-wrap msgid "emulation" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:30607 +#: guix-git/doc/guix.texi:30972 #, no-wrap msgid "binfmt_misc" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30615 +#: guix-git/doc/guix.texi:30980 msgid "@code{qemu-binfmt-service-type} provides support for transparent emulation of program binaries built for different architectures---e.g., it allows you to transparently execute an ARMv7 program on an x86_64 machine. It achieves this by combining the @uref{https://www.qemu.org, QEMU} emulator and the @code{binfmt_misc} feature of the kernel Linux. This feature only allows you to emulate GNU/Linux on a different architecture, but see below for GNU/Hurd support." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30616 +#: guix-git/doc/guix.texi:30981 #, no-wrap msgid "{Scheme Variable} qemu-binfmt-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30621 +#: guix-git/doc/guix.texi:30986 msgid "This is the type of the QEMU/binfmt service for transparent emulation. Its value must be a @code{qemu-binfmt-configuration} object, which specifies the QEMU package to use as well as the architecture we want to emulated:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30626 +#: guix-git/doc/guix.texi:30991 #, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -54851,39 +55515,39 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30632 +#: guix-git/doc/guix.texi:30997 msgid "In this example, we enable transparent emulation for the ARM and aarch64 platforms. Running @code{herd stop qemu-binfmt} turns it off, and running @code{herd start qemu-binfmt} turns it back on (@pxref{Invoking herd, the @command{herd} command,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30634 +#: guix-git/doc/guix.texi:30999 #, no-wrap msgid "{Data Type} qemu-binfmt-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30636 +#: guix-git/doc/guix.texi:31001 msgid "This is the configuration for the @code{qemu-binfmt} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30638 +#: guix-git/doc/guix.texi:31003 #, no-wrap msgid "@code{platforms} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30641 +#: guix-git/doc/guix.texi:31006 msgid "The list of emulated QEMU platforms. Each item must be a @dfn{platform object} as returned by @code{lookup-qemu-platforms} (see below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30644 +#: guix-git/doc/guix.texi:31009 msgid "For example, let's suppose you're on an x86_64 machine and you have this service:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30649 +#: guix-git/doc/guix.texi:31014 #, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -54892,79 +55556,79 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30652 +#: guix-git/doc/guix.texi:31017 msgid "You can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30655 +#: guix-git/doc/guix.texi:31020 #, no-wrap msgid "guix build -s armhf-linux inkscape\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30662 +#: guix-git/doc/guix.texi:31027 msgid "and it will build Inkscape for ARMv7 @emph{as if it were a native build}, transparently using QEMU to emulate the ARMv7 CPU@. Pretty handy if you'd like to test a package build for an architecture you don't have access to!" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30663 +#: guix-git/doc/guix.texi:31028 #, no-wrap msgid "@code{qemu} (default: @code{qemu})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30665 guix-git/doc/guix.texi:30723 -#: guix-git/doc/guix.texi:30805 +#: guix-git/doc/guix.texi:31030 guix-git/doc/guix.texi:31088 +#: guix-git/doc/guix.texi:31170 msgid "The QEMU package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30668 +#: guix-git/doc/guix.texi:31033 #, no-wrap msgid "{Scheme Procedure} lookup-qemu-platforms @var{platforms}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30673 +#: guix-git/doc/guix.texi:31038 msgid "Return the list of QEMU platform objects corresponding to @var{platforms}@dots{}. @var{platforms} must be a list of strings corresponding to platform names, such as @code{\"arm\"}, @code{\"sparc\"}, @code{\"mips64el\"}, and so on." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30675 +#: guix-git/doc/guix.texi:31040 #, no-wrap msgid "{Scheme Procedure} qemu-platform? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30677 +#: guix-git/doc/guix.texi:31042 msgid "Return true if @var{obj} is a platform object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30679 +#: guix-git/doc/guix.texi:31044 #, no-wrap msgid "{Scheme Procedure} qemu-platform-name @var{platform}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30681 +#: guix-git/doc/guix.texi:31046 msgid "Return the name of @var{platform}---a string such as @code{\"arm\"}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30684 +#: guix-git/doc/guix.texi:31049 #, no-wrap msgid "QEMU Guest Agent" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30692 +#: guix-git/doc/guix.texi:31057 msgid "The QEMU guest agent provides control over the emulated system to the host. The @code{qemu-guest-agent} service runs the agent on Guix guests. To control the agent from the host, open a socket by invoking QEMU with the following arguments:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30699 +#: guix-git/doc/guix.texi:31064 #, no-wrap msgid "" "qemu-system-x86_64 \\\n" @@ -54975,12 +55639,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30703 +#: guix-git/doc/guix.texi:31068 msgid "This creates a socket at @file{/tmp/qga.sock} on the host. Once the guest agent is running, you can issue commands with @code{socat}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30708 +#: guix-git/doc/guix.texi:31073 #, no-wrap msgid "" "$ guix shell socat -- socat unix-connect:/tmp/qga.sock stdio\n" @@ -54989,74 +55653,74 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30712 +#: guix-git/doc/guix.texi:31077 msgid "See @url{https://wiki.qemu.org/Features/GuestAgent,QEMU guest agent documentation} for more options and commands." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30713 +#: guix-git/doc/guix.texi:31078 #, no-wrap msgid "{Scheme Variable} qemu-guest-agent-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30715 +#: guix-git/doc/guix.texi:31080 msgid "Service type for the QEMU guest agent service." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30717 +#: guix-git/doc/guix.texi:31082 #, no-wrap msgid "{Data Type} qemu-guest-agent-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30719 +#: guix-git/doc/guix.texi:31084 msgid "Configuration for the @code{qemu-guest-agent} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30721 guix-git/doc/guix.texi:30803 +#: guix-git/doc/guix.texi:31086 guix-git/doc/guix.texi:31168 #, no-wrap msgid "@code{qemu} (default: @code{qemu-minimal})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30724 +#: guix-git/doc/guix.texi:31089 #, no-wrap msgid "@code{device} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30727 +#: guix-git/doc/guix.texi:31092 msgid "File name of the device or socket the agent uses to communicate with the host. If empty, QEMU uses a default file name." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30731 +#: guix-git/doc/guix.texi:31096 #, no-wrap msgid "The Hurd in a Virtual Machine" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30734 +#: guix-git/doc/guix.texi:31099 #, no-wrap msgid "the Hurd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30735 +#: guix-git/doc/guix.texi:31100 #, no-wrap msgid "childhurd" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30743 +#: guix-git/doc/guix.texi:31108 msgid "Service @code{hurd-vm} provides support for running GNU/Hurd in a virtual machine (VM), a so-called @dfn{childhurd}. This service is meant to be used on GNU/Linux and the given GNU/Hurd operating system configuration is cross-compiled. The virtual machine is a Shepherd service that can be referred to by the names @code{hurd-vm} and @code{childhurd} and be controlled with commands such as:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30747 +#: guix-git/doc/guix.texi:31112 #, no-wrap msgid "" "herd start hurd-vm\n" @@ -55064,50 +55728,50 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30751 +#: guix-git/doc/guix.texi:31116 msgid "When the service is running, you can view its console by connecting to it with a VNC client, for example with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30754 +#: guix-git/doc/guix.texi:31119 #, no-wrap msgid "guix shell tigervnc-client -- vncviewer localhost:5900\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30760 +#: guix-git/doc/guix.texi:31125 msgid "The default configuration (see @code{hurd-vm-configuration} below) spawns a secure shell (SSH) server in your GNU/Hurd system, which QEMU (the virtual machine emulator) redirects to port 10222 on the host. Thus, you can connect over SSH to the childhurd with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30763 +#: guix-git/doc/guix.texi:31128 #, no-wrap msgid "ssh root@@localhost -p 10022\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30772 +#: guix-git/doc/guix.texi:31137 msgid "The childhurd is volatile and stateless: it starts with a fresh root file system every time you restart it. By default though, all the files under @file{/etc/childhurd} on the host are copied as is to the root file system of the childhurd when it boots. This allows you to initialize ``secrets'' inside the VM: SSH host keys, authorized substitute keys, and so on---see the explanation of @code{secret-root} below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30773 +#: guix-git/doc/guix.texi:31138 #, no-wrap msgid "{Scheme Variable} hurd-vm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30779 +#: guix-git/doc/guix.texi:31144 msgid "This is the type of the Hurd in a Virtual Machine service. Its value must be a @code{hurd-vm-configuration} object, which specifies the operating system (@pxref{operating-system Reference}) and the disk size for the Hurd Virtual Machine, the QEMU package to use as well as the options for running it." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30781 +#: guix-git/doc/guix.texi:31146 msgid "For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30787 +#: guix-git/doc/guix.texi:31152 #, no-wrap msgid "" "(service hurd-vm-service-type\n" @@ -55117,99 +55781,99 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30791 +#: guix-git/doc/guix.texi:31156 msgid "would create a disk image big enough to build GNU@tie{}Hello, with some extra memory." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30793 +#: guix-git/doc/guix.texi:31158 #, no-wrap msgid "{Data Type} hurd-vm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30796 +#: guix-git/doc/guix.texi:31161 msgid "The data type representing the configuration for @code{hurd-vm-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30798 +#: guix-git/doc/guix.texi:31163 #, no-wrap msgid "@code{os} (default: @var{%hurd-vm-operating-system})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30802 +#: guix-git/doc/guix.texi:31167 msgid "The operating system to instantiate. This default is bare-bones with a permissive OpenSSH secure shell daemon listening on port 2222 (@pxref{Networking Services, @code{openssh-service-type}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30806 +#: guix-git/doc/guix.texi:31171 #, no-wrap msgid "@code{image} (default: @var{hurd-vm-disk-image})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30809 +#: guix-git/doc/guix.texi:31174 msgid "The procedure used to build the disk-image built from this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30810 +#: guix-git/doc/guix.texi:31175 #, no-wrap msgid "@code{disk-size} (default: @code{'guess})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30812 +#: guix-git/doc/guix.texi:31177 msgid "The size of the disk image." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30813 +#: guix-git/doc/guix.texi:31178 #, no-wrap msgid "@code{memory-size} (default: @code{512})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30815 +#: guix-git/doc/guix.texi:31180 msgid "The memory size of the Virtual Machine in mebibytes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30816 +#: guix-git/doc/guix.texi:31181 #, no-wrap msgid "@code{options} (default: @code{'(\"--snapshot\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30818 +#: guix-git/doc/guix.texi:31183 msgid "The extra options for running QEMU." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30823 +#: guix-git/doc/guix.texi:31188 msgid "If set, a non-zero positive integer used to parameterize Childhurd instances. It is appended to the service's name, e.g. @code{childhurd1}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30824 +#: guix-git/doc/guix.texi:31189 #, no-wrap msgid "@code{net-options} (default: @var{hurd-vm-net-options})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30826 +#: guix-git/doc/guix.texi:31191 msgid "The procedure used to produce the list of QEMU networking options." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30828 +#: guix-git/doc/guix.texi:31193 msgid "By default, it produces" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30836 +#: guix-git/doc/guix.texi:31201 #, no-wrap msgid "" "'(\"--device\" \"rtl8139,netdev=net0\"\n" @@ -55221,12 +55885,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30839 +#: guix-git/doc/guix.texi:31204 msgid "with forwarded ports:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30844 +#: guix-git/doc/guix.texi:31209 #, no-wrap msgid "" "@var{secrets-port}: @code{(+ 11004 (* 1000 @var{ID}))}\n" @@ -55235,28 +55899,28 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30846 +#: guix-git/doc/guix.texi:31211 #, no-wrap msgid "@code{secret-root} (default: @file{/etc/childhurd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30851 +#: guix-git/doc/guix.texi:31216 msgid "The root directory with out-of-band secrets to be installed into the childhurd once it runs. Childhurds are volatile which means that on every startup, secrets such as the SSH host keys and Guix signing key are recreated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30855 +#: guix-git/doc/guix.texi:31220 msgid "If the @file{/etc/childhurd} directory does not exist, the @code{secret-service} running in the Childhurd will be sent an empty list of secrets." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30858 +#: guix-git/doc/guix.texi:31223 msgid "By default, the service automatically populates @file{/etc/childhurd} with the following non-volatile secrets, unless they already exist:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30867 +#: guix-git/doc/guix.texi:31232 #, no-wrap msgid "" "/etc/childhurd/etc/guix/acl\n" @@ -55269,34 +55933,34 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30871 +#: guix-git/doc/guix.texi:31236 msgid "These files are automatically sent to the guest Hurd VM when it boots, including permissions." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30872 +#: guix-git/doc/guix.texi:31237 #, no-wrap msgid "childhurd, offloading" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30873 +#: guix-git/doc/guix.texi:31238 #, no-wrap msgid "Hurd, offloading" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30877 +#: guix-git/doc/guix.texi:31242 msgid "Having these files in place means that only a couple of things are missing to allow the host to offload @code{i586-gnu} builds to the childhurd:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:30882 +#: guix-git/doc/guix.texi:31247 msgid "Authorizing the childhurd's key on the host so that the host accepts build results coming from the childhurd, which can be done like so:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30886 +#: guix-git/doc/guix.texi:31251 #, no-wrap msgid "" "guix archive --authorize < \\\n" @@ -55304,22 +55968,22 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:30891 +#: guix-git/doc/guix.texi:31256 msgid "Adding the childhurd to @file{/etc/guix/machines.scm} (@pxref{Daemon Offload Setup})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30895 +#: guix-git/doc/guix.texi:31260 msgid "We're working towards making that happen automatically---get in touch with us at @email{guix-devel@@gnu.org} to discuss it!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30902 +#: guix-git/doc/guix.texi:31267 msgid "Note that by default the VM image is volatile, i.e., once stopped the contents are lost. If you want a stateful image instead, override the configuration's @code{image} and @code{options} without the @code{--snapshot} flag using something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30908 +#: guix-git/doc/guix.texi:31273 #, no-wrap msgid "" "(service hurd-vm-service-type\n" @@ -55329,34 +55993,34 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30910 +#: guix-git/doc/guix.texi:31275 #, no-wrap msgid "Ganeti" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30912 +#: guix-git/doc/guix.texi:31277 #, no-wrap msgid "ganeti" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:30919 +#: guix-git/doc/guix.texi:31284 msgid "This service is considered experimental. Configuration options may be changed in a backwards-incompatible manner, and not all features have been thorougly tested. Users of this service are encouraged to share their experience at @email{guix-devel@@gnu.org}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30929 +#: guix-git/doc/guix.texi:31294 msgid "Ganeti is a virtual machine management system. It is designed to keep virtual machines running on a cluster of servers even in the event of hardware failures, and to make maintenance and recovery tasks easy. It consists of multiple services which are described later in this section. In addition to the Ganeti service, you will need the OpenSSH service (@pxref{Networking Services, @code{openssh-service-type}}), and update the @file{/etc/hosts} file (@pxref{operating-system Reference, @code{hosts-file}}) with the cluster name and address (or use a DNS server)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30934 +#: guix-git/doc/guix.texi:31299 msgid "All nodes participating in a Ganeti cluster should have the same Ganeti and @file{/etc/hosts} configuration. Here is an example configuration for a Ganeti cluster node that supports multiple storage backends, and installs the @code{debootstrap} and @code{guix} @dfn{OS providers}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30944 +#: guix-git/doc/guix.texi:31309 #, no-wrap msgid "" "(use-package-modules virtualization)\n" @@ -55371,7 +56035,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30949 +#: guix-git/doc/guix.texi:31314 #, no-wrap msgid "" "192.168.1.200 ganeti.example.com\n" @@ -55382,7 +56046,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30970 +#: guix-git/doc/guix.texi:31335 #, no-wrap msgid "" " ;; Install QEMU so we can use KVM-based instances, and LVM, DRBD and Ceph\n" @@ -55409,7 +56073,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30975 +#: guix-git/doc/guix.texi:31340 #, no-wrap msgid "" " ;; Ganeti uses SSH to communicate between nodes.\n" @@ -55420,7 +56084,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30985 +#: guix-git/doc/guix.texi:31350 #, no-wrap msgid "" " (service ganeti-service-type\n" @@ -55435,120 +56099,120 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30993 +#: guix-git/doc/guix.texi:31358 msgid "Users are advised to read the @url{http://docs.ganeti.org/ganeti/master/html/admin.html,Ganeti administrators guide} to learn about the various cluster options and day-to-day operations. There is also a @url{https://guix.gnu.org/blog/2020/running-a-ganeti-cluster-on-guix/,blog post} describing how to configure and initialize a small cluster." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30994 +#: guix-git/doc/guix.texi:31359 #, no-wrap msgid "{Scheme Variable} ganeti-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30997 +#: guix-git/doc/guix.texi:31362 msgid "This is a service type that includes all the various services that Ganeti nodes should run." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31002 +#: guix-git/doc/guix.texi:31367 msgid "Its value is a @code{ganeti-configuration} object that defines the package to use for CLI operations, as well as configuration for the various daemons. Allowed file storage paths and available guest operating systems are also configured through this data type." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31004 +#: guix-git/doc/guix.texi:31369 #, no-wrap msgid "{Data Type} ganeti-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31006 +#: guix-git/doc/guix.texi:31371 msgid "The @code{ganeti} service takes the following configuration options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31008 guix-git/doc/guix.texi:31236 -#: guix-git/doc/guix.texi:31286 guix-git/doc/guix.texi:31316 -#: guix-git/doc/guix.texi:31343 guix-git/doc/guix.texi:31375 -#: guix-git/doc/guix.texi:31428 guix-git/doc/guix.texi:31448 -#: guix-git/doc/guix.texi:31474 guix-git/doc/guix.texi:31507 -#: guix-git/doc/guix.texi:31547 +#: guix-git/doc/guix.texi:31373 guix-git/doc/guix.texi:31601 +#: guix-git/doc/guix.texi:31651 guix-git/doc/guix.texi:31681 +#: guix-git/doc/guix.texi:31708 guix-git/doc/guix.texi:31740 +#: guix-git/doc/guix.texi:31793 guix-git/doc/guix.texi:31813 +#: guix-git/doc/guix.texi:31839 guix-git/doc/guix.texi:31872 +#: guix-git/doc/guix.texi:31912 #, no-wrap msgid "@code{ganeti} (default: @code{ganeti})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31013 +#: guix-git/doc/guix.texi:31378 msgid "The @code{ganeti} package to use. It will be installed to the system profile and make @command{gnt-cluster}, @command{gnt-instance}, etc available. Note that the value specified here does not affect the other services as each refer to a specific @code{ganeti} package (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31014 +#: guix-git/doc/guix.texi:31379 #, no-wrap msgid "@code{noded-configuration} (default: @code{(ganeti-noded-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31015 +#: guix-git/doc/guix.texi:31380 #, no-wrap msgid "@code{confd-configuration} (default: @code{(ganeti-confd-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31016 +#: guix-git/doc/guix.texi:31381 #, no-wrap msgid "@code{wconfd-configuration} (default: @code{(ganeti-wconfd-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31017 +#: guix-git/doc/guix.texi:31382 #, no-wrap msgid "@code{luxid-configuration} (default: @code{(ganeti-luxid-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31018 +#: guix-git/doc/guix.texi:31383 #, no-wrap msgid "@code{rapi-configuration} (default: @code{(ganeti-rapi-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31019 +#: guix-git/doc/guix.texi:31384 #, no-wrap msgid "@code{kvmd-configuration} (default: @code{(ganeti-kvmd-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31020 +#: guix-git/doc/guix.texi:31385 #, no-wrap msgid "@code{mond-configuration} (default: @code{(ganeti-mond-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31021 +#: guix-git/doc/guix.texi:31386 #, no-wrap msgid "@code{metad-configuration} (default: @code{(ganeti-metad-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31022 +#: guix-git/doc/guix.texi:31387 #, no-wrap msgid "@code{watcher-configuration} (default: @code{(ganeti-watcher-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31023 +#: guix-git/doc/guix.texi:31388 #, no-wrap msgid "@code{cleaner-configuration} (default: @code{(ganeti-cleaner-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31028 +#: guix-git/doc/guix.texi:31393 msgid "These options control the various daemons and cron jobs that are distributed with Ganeti. The possible values for these are described in detail below. To override a setting, you must use the configuration type for that service:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31038 +#: guix-git/doc/guix.texi:31403 #, no-wrap msgid "" "(service ganeti-service-type\n" @@ -55562,34 +56226,34 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31040 +#: guix-git/doc/guix.texi:31405 #, no-wrap msgid "@code{file-storage-paths} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31042 +#: guix-git/doc/guix.texi:31407 msgid "List of allowed directories for file storage backend." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31043 +#: guix-git/doc/guix.texi:31408 #, no-wrap msgid "@code{os} (default: @code{%default-ganeti-os})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31045 +#: guix-git/doc/guix.texi:31410 msgid "List of @code{} records." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31049 +#: guix-git/doc/guix.texi:31414 msgid "In essence @code{ganeti-service-type} is shorthand for declaring each service individually:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31060 +#: guix-git/doc/guix.texi:31425 #, no-wrap msgid "" "(service ganeti-noded-service-type)\n" @@ -55604,297 +56268,297 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31064 +#: guix-git/doc/guix.texi:31429 msgid "Plus a service extension for @code{etc-service-type} that configures the file storage backend and OS variants." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31067 +#: guix-git/doc/guix.texi:31432 #, no-wrap msgid "{Data Type} ganeti-os" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31070 +#: guix-git/doc/guix.texi:31435 msgid "This data type is suitable for passing to the @code{os} parameter of @code{ganeti-configuration}. It takes the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31076 +#: guix-git/doc/guix.texi:31441 msgid "The name for this OS provider. It is only used to specify where the configuration ends up. Setting it to ``debootstrap'' will create @file{/etc/ganeti/instance-debootstrap}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:31077 +#: guix-git/doc/guix.texi:31442 #, no-wrap msgid "extension" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31080 +#: guix-git/doc/guix.texi:31445 msgid "The file extension for variants of this OS type. For example @file{.conf} or @file{.scm}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31081 +#: guix-git/doc/guix.texi:31446 #, no-wrap msgid "@code{variants} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31083 +#: guix-git/doc/guix.texi:31448 msgid "List of @code{ganeti-os-variant} objects for this OS." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31087 +#: guix-git/doc/guix.texi:31452 #, no-wrap msgid "{Data Type} ganeti-os-variant" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31090 +#: guix-git/doc/guix.texi:31455 msgid "This is the data type for a Ganeti OS variant. It takes the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31094 +#: guix-git/doc/guix.texi:31459 msgid "The name of this variant." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:31095 +#: guix-git/doc/guix.texi:31460 #, no-wrap msgid "configuration" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31097 +#: guix-git/doc/guix.texi:31462 msgid "A configuration file for this variant." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31100 +#: guix-git/doc/guix.texi:31465 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-hooks" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31102 +#: guix-git/doc/guix.texi:31467 msgid "This variable contains hooks to configure networking and the GRUB bootloader." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31104 +#: guix-git/doc/guix.texi:31469 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-extra-pkgs" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31106 +#: guix-git/doc/guix.texi:31471 msgid "This variable contains a list of packages suitable for a fully-virtualized guest." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31108 +#: guix-git/doc/guix.texi:31473 #, no-wrap msgid "{Data Type} debootstrap-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31111 +#: guix-git/doc/guix.texi:31476 msgid "This data type creates configuration files suitable for the debootstrap OS provider." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31113 +#: guix-git/doc/guix.texi:31478 #, no-wrap msgid "@code{hooks} (default: @code{%default-debootstrap-hooks})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31117 +#: guix-git/doc/guix.texi:31482 msgid "When not @code{#f}, this must be a G-expression that specifies a directory with scripts that will run when the OS is installed. It can also be a list of @code{(name . file-like)} pairs. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31120 +#: guix-git/doc/guix.texi:31485 #, no-wrap msgid "`((99-hello-world . ,(plain-file \"#!/bin/sh\\necho Hello, World\")))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31125 +#: guix-git/doc/guix.texi:31490 msgid "That will create a directory with one executable named @code{99-hello-world} and run it every time this variant is installed. If set to @code{#f}, hooks in @file{/etc/ganeti/instance-debootstrap/hooks} will be used, if any." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31125 +#: guix-git/doc/guix.texi:31490 #, no-wrap msgid "@code{proxy} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31127 +#: guix-git/doc/guix.texi:31492 msgid "Optional HTTP proxy to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31127 +#: guix-git/doc/guix.texi:31492 guix-git/doc/guix.texi:33685 #, no-wrap msgid "@code{mirror} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31130 +#: guix-git/doc/guix.texi:31495 msgid "The Debian mirror. Typically something like @code{http://ftp.no.debian.org/debian}. The default varies depending on the distribution." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31130 +#: guix-git/doc/guix.texi:31495 #, no-wrap msgid "@code{arch} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31133 +#: guix-git/doc/guix.texi:31498 msgid "The dpkg architecture. Set to @code{armhf} to debootstrap an ARMv7 instance on an AArch64 host. Default is to use the current system architecture." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31133 +#: guix-git/doc/guix.texi:31498 #, no-wrap msgid "@code{suite} (default: @code{\"stable\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31136 +#: guix-git/doc/guix.texi:31501 msgid "When set, this must be a Debian distribution ``suite'' such as @code{buster} or @code{focal}. If set to @code{#f}, the default for the OS provider is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31136 +#: guix-git/doc/guix.texi:31501 #, no-wrap msgid "@code{extra-pkgs} (default: @code{%default-debootstrap-extra-pkgs})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31139 +#: guix-git/doc/guix.texi:31504 msgid "List of extra packages that will get installed by dpkg in addition to the minimal system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31139 +#: guix-git/doc/guix.texi:31504 #, no-wrap msgid "@code{components} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31142 +#: guix-git/doc/guix.texi:31507 msgid "When set, must be a list of Debian repository ``components''. For example @code{'(\"main\" \"contrib\")}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31142 +#: guix-git/doc/guix.texi:31507 #, no-wrap msgid "@code{generate-cache?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31144 +#: guix-git/doc/guix.texi:31509 msgid "Whether to automatically cache the generated debootstrap archive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31144 +#: guix-git/doc/guix.texi:31509 #, no-wrap msgid "@code{clean-cache} (default: @code{14})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31147 +#: guix-git/doc/guix.texi:31512 msgid "Discard the cache after this amount of days. Use @code{#f} to never clear the cache." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31147 +#: guix-git/doc/guix.texi:31512 #, no-wrap msgid "@code{partition-style} (default: @code{'msdos})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31150 +#: guix-git/doc/guix.texi:31515 msgid "The type of partition to create. When set, it must be one of @code{'msdos}, @code{'none} or a string." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31150 +#: guix-git/doc/guix.texi:31515 #, no-wrap msgid "@code{partition-alignment} (default: @code{2048})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31152 +#: guix-git/doc/guix.texi:31517 msgid "Alignment of the partition in sectors." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31155 +#: guix-git/doc/guix.texi:31520 #, no-wrap msgid "{Scheme Procedure} debootstrap-variant @var{name} @var{configuration}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31158 +#: guix-git/doc/guix.texi:31523 msgid "This is a helper procedure that creates a @code{ganeti-os-variant} record. It takes two parameters: a name and a @code{debootstrap-configuration} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31160 +#: guix-git/doc/guix.texi:31525 #, no-wrap msgid "{Scheme Procedure} debootstrap-os @var{variants}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31163 +#: guix-git/doc/guix.texi:31528 msgid "This is a helper procedure that creates a @code{ganeti-os} record. It takes a list of variants created with @code{debootstrap-variant}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31165 +#: guix-git/doc/guix.texi:31530 #, no-wrap msgid "{Scheme Procedure} guix-variant @var{name} @var{configuration}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31170 +#: guix-git/doc/guix.texi:31535 msgid "This is a helper procedure that creates a @code{ganeti-os-variant} record for use with the Guix OS provider. It takes a name and a G-expression that returns a ``file-like'' (@pxref{G-Expressions, file-like objects}) object containing a Guix System configuration." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31172 +#: guix-git/doc/guix.texi:31537 #, no-wrap msgid "{Scheme Procedure} guix-os @var{variants}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31175 +#: guix-git/doc/guix.texi:31540 msgid "This is a helper procedure that creates a @code{ganeti-os} record. It takes a list of variants produced by @code{guix-variant}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31177 +#: guix-git/doc/guix.texi:31542 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-variants" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31181 +#: guix-git/doc/guix.texi:31546 msgid "This is a convenience variable to make the debootstrap provider work ``out of the box'' without users having to declare variants manually. It contains a single debootstrap variant with the default configuration:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31186 +#: guix-git/doc/guix.texi:31551 #, no-wrap msgid "" "(list (debootstrap-variant\n" @@ -55903,18 +56567,18 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31189 +#: guix-git/doc/guix.texi:31554 #, no-wrap msgid "{Scheme Variable} %default-guix-variants" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31193 +#: guix-git/doc/guix.texi:31558 msgid "This is a convenience variable to make the Guix OS provider work without additional configuration. It creates a virtual machine that has an SSH server, a serial console, and authorizes the Ganeti hosts SSH keys." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31199 +#: guix-git/doc/guix.texi:31564 #, no-wrap msgid "" "(list (guix-variant\n" @@ -55924,12 +56588,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31205 +#: guix-git/doc/guix.texi:31570 msgid "Users can implement support for OS providers unbeknownst to Guix by extending the @code{ganeti-os} and @code{ganeti-os-variant} records appropriately. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31214 +#: guix-git/doc/guix.texi:31579 #, no-wrap msgid "" "(ganeti-os\n" @@ -55942,726 +56606,726 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31219 +#: guix-git/doc/guix.texi:31584 msgid "That creates @file{/etc/ganeti/instance-custom/variants/foo.conf} which points to a file in the store with contents @code{this is fine}. It also creates @file{/etc/ganeti/instance-custom/variants/variants.list} with contents @code{foo}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31222 +#: guix-git/doc/guix.texi:31587 msgid "Obviously this may not work for all OS providers out there. If you find the interface limiting, please reach out to @email{guix-devel@@gnu.org}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31225 +#: guix-git/doc/guix.texi:31590 msgid "The rest of this section documents the various services that are included by @code{ganeti-service-type}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31226 +#: guix-git/doc/guix.texi:31591 #, no-wrap msgid "{Scheme Variable} ganeti-noded-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31230 +#: guix-git/doc/guix.texi:31595 msgid "@command{ganeti-noded} is the daemon responsible for node-specific functions within the Ganeti system. The value of this service must be a @code{ganeti-noded-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31232 +#: guix-git/doc/guix.texi:31597 #, no-wrap msgid "{Data Type} ganeti-noded-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31234 +#: guix-git/doc/guix.texi:31599 msgid "This is the configuration for the @code{ganeti-noded} service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31238 guix-git/doc/guix.texi:31288 -#: guix-git/doc/guix.texi:31318 guix-git/doc/guix.texi:31345 -#: guix-git/doc/guix.texi:31377 guix-git/doc/guix.texi:31430 -#: guix-git/doc/guix.texi:31450 guix-git/doc/guix.texi:31476 -#: guix-git/doc/guix.texi:31509 +#: guix-git/doc/guix.texi:31603 guix-git/doc/guix.texi:31653 +#: guix-git/doc/guix.texi:31683 guix-git/doc/guix.texi:31710 +#: guix-git/doc/guix.texi:31742 guix-git/doc/guix.texi:31795 +#: guix-git/doc/guix.texi:31815 guix-git/doc/guix.texi:31841 +#: guix-git/doc/guix.texi:31874 msgid "The @code{ganeti} package to use for this service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31239 +#: guix-git/doc/guix.texi:31604 #, no-wrap msgid "@code{port} (default: @code{1811})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31241 +#: guix-git/doc/guix.texi:31606 msgid "The TCP port on which the node daemon listens for network requests." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31242 guix-git/doc/guix.texi:31292 -#: guix-git/doc/guix.texi:31384 guix-git/doc/guix.texi:31454 +#: guix-git/doc/guix.texi:31607 guix-git/doc/guix.texi:31657 +#: guix-git/doc/guix.texi:31749 guix-git/doc/guix.texi:31819 #, no-wrap msgid "@code{address} (default: @code{\"0.0.0.0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31245 +#: guix-git/doc/guix.texi:31610 msgid "The network address that the daemon will bind to. The default address means bind to all available addresses." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31249 +#: guix-git/doc/guix.texi:31614 msgid "When this is set, it must be a specific network interface (e.g.@: @code{eth0}) that the daemon will bind to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31250 guix-git/doc/guix.texi:31392 +#: guix-git/doc/guix.texi:31615 guix-git/doc/guix.texi:31757 #, no-wrap msgid "@code{max-clients} (default: @code{20})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31254 +#: guix-git/doc/guix.texi:31619 msgid "This sets a limit on the maximum number of simultaneous client connections that the daemon will handle. Connections above this count are accepted, but no responses will be sent until enough connections have closed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31255 guix-git/doc/guix.texi:31397 +#: guix-git/doc/guix.texi:31620 guix-git/doc/guix.texi:31762 #, no-wrap msgid "@code{ssl?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31259 +#: guix-git/doc/guix.texi:31624 msgid "Whether to use SSL/TLS to encrypt network communications. The certificate is automatically provisioned by the cluster and can be rotated with @command{gnt-cluster renew-crypto}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31260 guix-git/doc/guix.texi:31400 +#: guix-git/doc/guix.texi:31625 guix-git/doc/guix.texi:31765 #, no-wrap msgid "@code{ssl-key} (default: @file{\"/var/lib/ganeti/server.pem\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31262 guix-git/doc/guix.texi:31402 +#: guix-git/doc/guix.texi:31627 guix-git/doc/guix.texi:31767 msgid "This can be used to provide a specific encryption key for TLS communications." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31263 guix-git/doc/guix.texi:31403 +#: guix-git/doc/guix.texi:31628 guix-git/doc/guix.texi:31768 #, no-wrap msgid "@code{ssl-cert} (default: @file{\"/var/lib/ganeti/server.pem\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31265 guix-git/doc/guix.texi:31405 +#: guix-git/doc/guix.texi:31630 guix-git/doc/guix.texi:31770 msgid "This can be used to provide a specific certificate for TLS communications." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31269 guix-git/doc/guix.texi:31409 +#: guix-git/doc/guix.texi:31634 guix-git/doc/guix.texi:31774 msgid "When true, the daemon performs additional logging for debugging purposes. Note that this will leak encryption details to the log files, use with caution." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31273 +#: guix-git/doc/guix.texi:31638 #, no-wrap msgid "{Scheme Variable} ganeti-confd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31279 +#: guix-git/doc/guix.texi:31644 msgid "@command{ganeti-confd} answers queries related to the configuration of a Ganeti cluster. The purpose of this daemon is to have a highly available and fast way to query cluster configuration values. It is automatically active on all @dfn{master candidates}. The value of this service must be a @code{ganeti-confd-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31282 +#: guix-git/doc/guix.texi:31647 #, no-wrap msgid "{Data Type} ganeti-confd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31284 +#: guix-git/doc/guix.texi:31649 msgid "This is the configuration for the @code{ganeti-confd} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31289 +#: guix-git/doc/guix.texi:31654 #, no-wrap msgid "@code{port} (default: @code{1814})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31291 +#: guix-git/doc/guix.texi:31656 msgid "The UDP port on which to listen for network requests." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31294 +#: guix-git/doc/guix.texi:31659 msgid "Network address that the daemon will bind to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31297 guix-git/doc/guix.texi:31326 -#: guix-git/doc/guix.texi:31353 guix-git/doc/guix.texi:31433 -#: guix-git/doc/guix.texi:31460 guix-git/doc/guix.texi:31486 +#: guix-git/doc/guix.texi:31662 guix-git/doc/guix.texi:31691 +#: guix-git/doc/guix.texi:31718 guix-git/doc/guix.texi:31798 +#: guix-git/doc/guix.texi:31825 guix-git/doc/guix.texi:31851 msgid "When true, the daemon performs additional logging for debugging purposes." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31301 +#: guix-git/doc/guix.texi:31666 #, no-wrap msgid "{Scheme Variable} ganeti-wconfd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31307 +#: guix-git/doc/guix.texi:31672 msgid "@command{ganeti-wconfd} is the daemon that has authoritative knowledge about the cluster configuration and is the only entity that can accept changes to it. All jobs that need to modify the configuration will do so by sending appropriate requests to this daemon. It only runs on the @dfn{master node} and will automatically disable itself on other nodes." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31310 +#: guix-git/doc/guix.texi:31675 msgid "The value of this service must be a @code{ganeti-wconfd-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31312 +#: guix-git/doc/guix.texi:31677 #, no-wrap msgid "{Data Type} ganeti-wconfd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31314 +#: guix-git/doc/guix.texi:31679 msgid "This is the configuration for the @code{ganeti-wconfd} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31319 guix-git/doc/guix.texi:31346 +#: guix-git/doc/guix.texi:31684 guix-git/doc/guix.texi:31711 #, no-wrap msgid "@code{no-voting?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31323 +#: guix-git/doc/guix.texi:31688 msgid "The daemon will refuse to start if the majority of cluster nodes does not agree that it is running on the master node. Set to @code{#t} to start even if a quorum can not be reached (dangerous, use with caution)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31330 +#: guix-git/doc/guix.texi:31695 #, no-wrap msgid "{Scheme Variable} ganeti-luxid-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31335 +#: guix-git/doc/guix.texi:31700 msgid "@command{ganeti-luxid} is a daemon used to answer queries related to the configuration and the current live state of a Ganeti cluster. Additionally, it is the authoritative daemon for the Ganeti job queue. Jobs can be submitted via this daemon and it schedules and starts them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31337 +#: guix-git/doc/guix.texi:31702 msgid "It takes a @code{ganeti-luxid-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31339 +#: guix-git/doc/guix.texi:31704 #, no-wrap msgid "{Data Type} ganeti-luxid-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31341 +#: guix-git/doc/guix.texi:31706 msgid "This is the configuration for the @code{ganeti-luxid} service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31350 +#: guix-git/doc/guix.texi:31715 msgid "The daemon will refuse to start if it cannot verify that the majority of cluster nodes believes that it is running on the master node. Set to @code{#t} to ignore such checks and start anyway (this can be dangerous)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31357 +#: guix-git/doc/guix.texi:31722 #, no-wrap msgid "{Scheme Variable} ganeti-rapi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31361 +#: guix-git/doc/guix.texi:31726 msgid "@command{ganeti-rapi} provides a remote API for Ganeti clusters. It runs on the master node and can be used to perform cluster actions programmatically via a JSON-based RPC protocol." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31367 +#: guix-git/doc/guix.texi:31732 msgid "Most query operations are allowed without authentication (unless @var{require-authentication?} is set), whereas write operations require explicit authorization via the @file{/var/lib/ganeti/rapi/users} file. See the @url{http://docs.ganeti.org/ganeti/master/html/rapi.html, Ganeti Remote API documentation} for more information." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31369 +#: guix-git/doc/guix.texi:31734 msgid "The value of this service must be a @code{ganeti-rapi-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31371 +#: guix-git/doc/guix.texi:31736 #, no-wrap msgid "{Data Type} ganeti-rapi-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31373 +#: guix-git/doc/guix.texi:31738 msgid "This is the configuration for the @code{ganeti-rapi} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31378 +#: guix-git/doc/guix.texi:31743 #, no-wrap msgid "@code{require-authentication?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31380 +#: guix-git/doc/guix.texi:31745 msgid "Whether to require authentication even for read-only operations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31381 +#: guix-git/doc/guix.texi:31746 #, no-wrap msgid "@code{port} (default: @code{5080})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31383 +#: guix-git/doc/guix.texi:31748 msgid "The TCP port on which to listen to API requests." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31387 +#: guix-git/doc/guix.texi:31752 msgid "The network address that the service will bind to. By default it listens on all configured addresses." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31391 +#: guix-git/doc/guix.texi:31756 msgid "When set, it must specify a specific network interface such as @code{eth0} that the daemon will bind to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31396 +#: guix-git/doc/guix.texi:31761 msgid "The maximum number of simultaneous client requests to handle. Further connections are allowed, but no responses are sent until enough connections have closed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31399 +#: guix-git/doc/guix.texi:31764 msgid "Whether to use SSL/TLS encryption on the RAPI port." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31413 +#: guix-git/doc/guix.texi:31778 #, no-wrap msgid "{Scheme Variable} ganeti-kvmd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31421 +#: guix-git/doc/guix.texi:31786 msgid "@command{ganeti-kvmd} is responsible for determining whether a given KVM instance was shut down by an administrator or a user. Normally Ganeti will restart an instance that was not stopped through Ganeti itself. If the cluster option @code{user_shutdown} is true, this daemon monitors the @code{QMP} socket provided by QEMU and listens for shutdown events, and marks the instance as @dfn{USER_down} instead of @dfn{ERROR_down} when it shuts down gracefully by itself." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31423 +#: guix-git/doc/guix.texi:31788 msgid "It takes a @code{ganeti-kvmd-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31425 +#: guix-git/doc/guix.texi:31790 #, no-wrap msgid "{Data Type} ganeti-kvmd-configuration" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31437 +#: guix-git/doc/guix.texi:31802 #, no-wrap msgid "{Scheme Variable} ganeti-mond-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31441 +#: guix-git/doc/guix.texi:31806 msgid "@command{ganeti-mond} is an optional daemon that provides Ganeti monitoring functionality. It is responsible for running data collectors and publish the collected information through a HTTP interface." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31443 +#: guix-git/doc/guix.texi:31808 msgid "It takes a @code{ganeti-mond-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31445 +#: guix-git/doc/guix.texi:31810 #, no-wrap msgid "{Data Type} ganeti-mond-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31451 +#: guix-git/doc/guix.texi:31816 #, no-wrap msgid "@code{port} (default: @code{1815})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31453 guix-git/doc/guix.texi:31479 +#: guix-git/doc/guix.texi:31818 guix-git/doc/guix.texi:31844 msgid "The port on which the daemon will listen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31457 +#: guix-git/doc/guix.texi:31822 msgid "The network address that the daemon will bind to. By default it binds to all available interfaces." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31464 +#: guix-git/doc/guix.texi:31829 #, no-wrap msgid "{Scheme Variable} ganeti-metad-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31467 +#: guix-git/doc/guix.texi:31832 msgid "@command{ganeti-metad} is an optional daemon that can be used to provide information about the cluster to instances or OS install scripts." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31469 +#: guix-git/doc/guix.texi:31834 msgid "It takes a @code{ganeti-metad-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31471 +#: guix-git/doc/guix.texi:31836 #, no-wrap msgid "{Data Type} ganeti-metad-configuration" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31483 +#: guix-git/doc/guix.texi:31848 msgid "If set, the daemon will bind to this address only. If left unset, the behavior depends on the cluster configuration." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31490 +#: guix-git/doc/guix.texi:31855 #, no-wrap msgid "{Scheme Variable} ganeti-watcher-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31498 +#: guix-git/doc/guix.texi:31863 msgid "@command{ganeti-watcher} is a script designed to run periodically and ensure the health of a cluster. It will automatically restart instances that have stopped without Ganeti's consent, and repairs DRBD links in case a node has rebooted. It also archives old cluster jobs and restarts Ganeti daemons that are not running. If the cluster parameter @code{ensure_node_health} is set, the watcher will also shutdown instances and DRBD devices if the node it is running on is declared offline by known master candidates." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31500 +#: guix-git/doc/guix.texi:31865 msgid "It can be paused on all nodes with @command{gnt-cluster watcher pause}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31502 +#: guix-git/doc/guix.texi:31867 msgid "The service takes a @code{ganeti-watcher-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31504 +#: guix-git/doc/guix.texi:31869 #, no-wrap msgid "{Data Type} ganeti-watcher-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31510 +#: guix-git/doc/guix.texi:31875 #, no-wrap msgid "@code{schedule} (default: @code{'(next-second-from (next-minute (range 0 60 5)))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31512 +#: guix-git/doc/guix.texi:31877 msgid "How often to run the script. The default is every five minutes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31513 +#: guix-git/doc/guix.texi:31878 #, no-wrap msgid "@code{rapi-ip} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31516 +#: guix-git/doc/guix.texi:31881 msgid "This option needs to be specified only if the RAPI daemon is configured to use a particular interface or address. By default the cluster address is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31517 +#: guix-git/doc/guix.texi:31882 #, no-wrap msgid "@code{job-age} (default: @code{(* 6 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31520 +#: guix-git/doc/guix.texi:31885 msgid "Archive cluster jobs older than this age, specified in seconds. The default is 6 hours. This keeps @command{gnt-job list} manageable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31521 +#: guix-git/doc/guix.texi:31886 #, no-wrap msgid "@code{verify-disks?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31525 +#: guix-git/doc/guix.texi:31890 msgid "If this is @code{#f}, the watcher will not try to repair broken DRBD links automatically. Administrators will need to use @command{gnt-cluster verify-disks} manually instead." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31528 +#: guix-git/doc/guix.texi:31893 msgid "When @code{#t}, the script performs additional logging for debugging purposes." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31532 +#: guix-git/doc/guix.texi:31897 #, no-wrap msgid "{Scheme Variable} ganeti-cleaner-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31540 +#: guix-git/doc/guix.texi:31905 msgid "@command{ganeti-cleaner} is a script designed to run periodically and remove old files from the cluster. This service type controls two @dfn{cron jobs}: one intended for the master node that permanently purges old cluster jobs, and one intended for every node that removes expired X509 certificates, keys, and outdated @command{ganeti-watcher} information. Like all Ganeti services, it is safe to include even on non-master nodes as it will disable itself as necessary." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31542 +#: guix-git/doc/guix.texi:31907 msgid "It takes a @code{ganeti-cleaner-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31544 +#: guix-git/doc/guix.texi:31909 #, no-wrap msgid "{Data Type} ganeti-cleaner-configuration" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31549 +#: guix-git/doc/guix.texi:31914 msgid "The @code{ganeti} package to use for the @command{gnt-cleaner} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31550 +#: guix-git/doc/guix.texi:31915 #, no-wrap msgid "@code{master-schedule} (default: @code{\"45 1 * * *\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31553 +#: guix-git/doc/guix.texi:31918 msgid "How often to run the master cleaning job. The default is once per day, at 01:45:00." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31554 +#: guix-git/doc/guix.texi:31919 #, no-wrap msgid "@code{node-schedule} (default: @code{\"45 2 * * *\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31557 +#: guix-git/doc/guix.texi:31922 msgid "How often to run the node cleaning job. The default is once per day, at 02:45:00." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31571 +#: guix-git/doc/guix.texi:31936 msgid "The @code{(gnu services version-control)} module provides a service to allow remote access to local Git repositories. There are three options: the @code{git-daemon-service}, which provides access to repositories via the @code{git://} unsecured TCP-based protocol, extending the @code{nginx} web server to proxy some requests to @code{git-http-backend}, or providing a web interface with @code{cgit-service-type}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31572 +#: guix-git/doc/guix.texi:31937 #, no-wrap msgid "{Scheme Procedure} git-daemon-service [#:config (git-daemon-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31576 +#: guix-git/doc/guix.texi:31941 msgid "Return a service that runs @command{git daemon}, a simple TCP server to expose repositories over the Git protocol for anonymous access." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31582 +#: guix-git/doc/guix.texi:31947 msgid "The optional @var{config} argument should be a @code{} object, by default it allows read-only access to exported@footnote{By creating the magic file @file{git-daemon-export-ok} in the repository directory.} repositories under @file{/srv/git}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31585 +#: guix-git/doc/guix.texi:31950 #, no-wrap msgid "{Data Type} git-daemon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31587 +#: guix-git/doc/guix.texi:31952 msgid "Data type representing the configuration for @code{git-daemon-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31589 +#: guix-git/doc/guix.texi:31954 #, no-wrap msgid "@code{package} (default: @code{git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31591 guix-git/doc/guix.texi:31651 +#: guix-git/doc/guix.texi:31956 guix-git/doc/guix.texi:32016 msgid "Package object of the Git distributed version control system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31592 guix-git/doc/guix.texi:31655 +#: guix-git/doc/guix.texi:31957 guix-git/doc/guix.texi:32020 #, no-wrap msgid "@code{export-all?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31595 +#: guix-git/doc/guix.texi:31960 msgid "Whether to allow access for all Git repositories, even if they do not have the @file{git-daemon-export-ok} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31596 +#: guix-git/doc/guix.texi:31961 #, no-wrap msgid "@code{base-path} (default: @file{/srv/git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31602 +#: guix-git/doc/guix.texi:31967 msgid "Whether to remap all the path requests as relative to the given path. If you run @command{git daemon} with @code{(base-path \"/srv/git\")} on @samp{example.com}, then if you later try to pull @indicateurl{git://example.com/hello.git}, git daemon will interpret the path as @file{/srv/git/hello.git}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31603 +#: guix-git/doc/guix.texi:31968 #, no-wrap msgid "@code{user-path} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31611 +#: guix-git/doc/guix.texi:31976 msgid "Whether to allow @code{~user} notation to be used in requests. When specified with empty string, requests to @indicateurl{git://host/~alice/foo} is taken as a request to access @code{foo} repository in the home directory of user @code{alice}. If @code{(user-path \"@var{path}\")} is specified, the same request is taken as a request to access @file{@var{path}/foo} repository in the home directory of user @code{alice}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31612 +#: guix-git/doc/guix.texi:31977 #, no-wrap msgid "@code{listen} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31615 +#: guix-git/doc/guix.texi:31980 msgid "Whether to listen on specific IP addresses or hostnames, defaults to all." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31616 +#: guix-git/doc/guix.texi:31981 #, no-wrap msgid "@code{port} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31618 +#: guix-git/doc/guix.texi:31983 msgid "Whether to listen on an alternative port, which defaults to 9418." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31619 +#: guix-git/doc/guix.texi:31984 #, no-wrap msgid "@code{whitelist} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31621 +#: guix-git/doc/guix.texi:31986 msgid "If not empty, only allow access to this list of directories." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31625 +#: guix-git/doc/guix.texi:31990 msgid "Extra options will be passed to @command{git daemon}, please run @command{man git-daemon} for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31639 +#: guix-git/doc/guix.texi:32004 msgid "The @code{git://} protocol lacks authentication. When you pull from a repository fetched via @code{git://}, you don't know whether the data you receive was modified or is even coming from the specified host, and your connection is subject to eavesdropping. It's better to use an authenticated and encrypted transport, such as @code{https}. Although Git allows you to serve repositories using unsophisticated file-based web servers, there is a faster protocol implemented by the @code{git-http-backend} program. This program is the back-end of a proper Git web service. It is designed to sit behind a FastCGI proxy. @xref{Web Services}, for more on running the necessary @code{fcgiwrap} daemon." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31642 +#: guix-git/doc/guix.texi:32007 msgid "Guix has a separate configuration data type for serving Git repositories over HTTP." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31643 +#: guix-git/doc/guix.texi:32008 #, no-wrap msgid "{Data Type} git-http-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31647 +#: guix-git/doc/guix.texi:32012 msgid "Data type representing the configuration for a future @code{git-http-service-type}; can currently be used to configure Nginx through @code{git-http-nginx-location-configuration}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31649 +#: guix-git/doc/guix.texi:32014 #, no-wrap msgid "@code{package} (default: @var{git})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31652 +#: guix-git/doc/guix.texi:32017 #, no-wrap msgid "@code{git-root} (default: @file{/srv/git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31654 +#: guix-git/doc/guix.texi:32019 msgid "Directory containing the Git repositories to expose to the world." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31658 +#: guix-git/doc/guix.texi:32023 msgid "Whether to expose access for all Git repositories in @var{git-root}, even if they do not have the @file{git-daemon-export-ok} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31659 +#: guix-git/doc/guix.texi:32024 #, no-wrap msgid "@code{uri-path} (default: @samp{/git/})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31664 +#: guix-git/doc/guix.texi:32029 msgid "Path prefix for Git access. With the default @samp{/git/} prefix, this will map @indicateurl{http://@var{server}/git/@var{repo}.git} to @file{/srv/git/@var{repo}.git}. Requests whose URI paths do not begin with this prefix are not passed on to this Git instance." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31665 +#: guix-git/doc/guix.texi:32030 #, no-wrap msgid "@code{fcgiwrap-socket} (default: @code{127.0.0.1:9000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31668 +#: guix-git/doc/guix.texi:32033 msgid "The socket on which the @code{fcgiwrap} daemon is listening. @xref{Web Services}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31675 +#: guix-git/doc/guix.texi:32040 msgid "There is no @code{git-http-service-type}, currently; instead you can create an @code{nginx-location-configuration} from a @code{git-http-configuration} and then add that location to a web server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31676 +#: guix-git/doc/guix.texi:32041 #, no-wrap msgid "{Scheme Procedure} git-http-nginx-location-configuration @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31681 +#: guix-git/doc/guix.texi:32046 msgid "[config=(git-http-configuration)] Compute an @code{nginx-location-configuration} that corresponds to the given Git http configuration. An example nginx service definition to serve the default @file{/srv/git} over HTTPS might be:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31698 +#: guix-git/doc/guix.texi:32063 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -56682,1409 +57346,1414 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31705 +#: guix-git/doc/guix.texi:32070 msgid "This example assumes that you are using Let's Encrypt to get your TLS certificate. @xref{Certificate Services}. The default @code{certbot} service will redirect all HTTP traffic on @code{git.my-host.org} to HTTPS@. You will also need to add an @code{fcgiwrap} proxy to your system services. @xref{Web Services}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:31707 +#: guix-git/doc/guix.texi:32072 #, no-wrap msgid "Cgit Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:31709 +#: guix-git/doc/guix.texi:32074 #, no-wrap msgid "Cgit service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:31710 +#: guix-git/doc/guix.texi:32075 #, no-wrap msgid "Git, web interface" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31713 +#: guix-git/doc/guix.texi:32078 msgid "@uref{https://git.zx2c4.com/cgit/, Cgit} is a web frontend for Git repositories written in C." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31716 +#: guix-git/doc/guix.texi:32081 msgid "The following example will configure the service with default values. By default, Cgit can be accessed on port 80 (@code{http://localhost:80})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31719 +#: guix-git/doc/guix.texi:32084 #, no-wrap msgid "(service cgit-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31723 +#: guix-git/doc/guix.texi:32088 msgid "The @code{file-object} type designates either a file-like object (@pxref{G-Expressions, file-like objects}) or a string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31727 +#: guix-git/doc/guix.texi:32092 msgid "Available @code{cgit-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31728 +#: guix-git/doc/guix.texi:32093 #, no-wrap msgid "{@code{cgit-configuration} parameter} package package" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31730 +#: guix-git/doc/guix.texi:32095 msgid "The CGIT package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31733 +#: guix-git/doc/guix.texi:32098 #, no-wrap msgid "{@code{cgit-configuration} parameter} nginx-server-configuration-list nginx" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31738 +#: guix-git/doc/guix.texi:32100 +msgid "NGINX configuration." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:32103 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object about-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31741 +#: guix-git/doc/guix.texi:32106 msgid "Specifies a command which will be invoked to format the content of about pages (both top-level and for each repository)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31746 +#: guix-git/doc/guix.texi:32111 #, no-wrap msgid "{@code{cgit-configuration} parameter} string agefile" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31749 +#: guix-git/doc/guix.texi:32114 msgid "Specifies a path, relative to each repository path, which can be used to specify the date and time of the youngest commit in the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31754 +#: guix-git/doc/guix.texi:32119 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object auth-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31757 +#: guix-git/doc/guix.texi:32122 msgid "Specifies a command that will be invoked for authenticating repository access." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31762 +#: guix-git/doc/guix.texi:32127 #, no-wrap msgid "{@code{cgit-configuration} parameter} string branch-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31765 +#: guix-git/doc/guix.texi:32130 msgid "Flag which, when set to @samp{age}, enables date ordering in the branch ref list, and when set @samp{name} enables ordering by branch name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31767 +#: guix-git/doc/guix.texi:32132 msgid "Defaults to @samp{\"name\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31770 +#: guix-git/doc/guix.texi:32135 #, no-wrap msgid "{@code{cgit-configuration} parameter} string cache-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31772 +#: guix-git/doc/guix.texi:32137 msgid "Path used to store the cgit cache entries." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31774 +#: guix-git/doc/guix.texi:32139 msgid "Defaults to @samp{\"/var/cache/cgit\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31777 +#: guix-git/doc/guix.texi:32142 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-static-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31780 +#: guix-git/doc/guix.texi:32145 msgid "Number which specifies the time-to-live, in minutes, for the cached version of repository pages accessed with a fixed SHA1." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31782 guix-git/doc/guix.texi:32225 +#: guix-git/doc/guix.texi:32147 guix-git/doc/guix.texi:32590 msgid "Defaults to @samp{-1}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31785 +#: guix-git/doc/guix.texi:32150 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-dynamic-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31788 +#: guix-git/doc/guix.texi:32153 msgid "Number which specifies the time-to-live, in minutes, for the cached version of repository pages accessed without a fixed SHA1." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31793 +#: guix-git/doc/guix.texi:32158 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-repo-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31796 +#: guix-git/doc/guix.texi:32161 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository summary page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31801 +#: guix-git/doc/guix.texi:32166 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-root-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31804 +#: guix-git/doc/guix.texi:32169 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31809 +#: guix-git/doc/guix.texi:32174 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-scanrc-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31812 +#: guix-git/doc/guix.texi:32177 msgid "Number which specifies the time-to-live, in minutes, for the result of scanning a path for Git repositories." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31817 +#: guix-git/doc/guix.texi:32182 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-about-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31820 +#: guix-git/doc/guix.texi:32185 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository about page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31825 +#: guix-git/doc/guix.texi:32190 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-snapshot-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31828 +#: guix-git/doc/guix.texi:32193 msgid "Number which specifies the time-to-live, in minutes, for the cached version of snapshots." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31833 +#: guix-git/doc/guix.texi:32198 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31836 +#: guix-git/doc/guix.texi:32201 msgid "The maximum number of entries in the cgit cache. When set to @samp{0}, caching is disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31841 +#: guix-git/doc/guix.texi:32206 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean case-sensitive-sort?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31843 +#: guix-git/doc/guix.texi:32208 msgid "Sort items in the repo list case sensitively." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31848 +#: guix-git/doc/guix.texi:32213 #, no-wrap msgid "{@code{cgit-configuration} parameter} list clone-prefix" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31851 +#: guix-git/doc/guix.texi:32216 msgid "List of common prefixes which, when combined with a repository URL, generates valid clone URLs for the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31856 +#: guix-git/doc/guix.texi:32221 #, no-wrap msgid "{@code{cgit-configuration} parameter} list clone-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31858 +#: guix-git/doc/guix.texi:32223 msgid "List of @code{clone-url} templates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31863 +#: guix-git/doc/guix.texi:32228 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object commit-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31865 +#: guix-git/doc/guix.texi:32230 msgid "Command which will be invoked to format commit messages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31870 +#: guix-git/doc/guix.texi:32235 #, no-wrap msgid "{@code{cgit-configuration} parameter} string commit-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31874 guix-git/doc/guix.texi:32432 +#: guix-git/doc/guix.texi:32239 guix-git/doc/guix.texi:32797 msgid "Flag which, when set to @samp{date}, enables strict date ordering in the commit log, and when set to @samp{topo} enables strict topological ordering." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31876 +#: guix-git/doc/guix.texi:32241 msgid "Defaults to @samp{\"git log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31879 +#: guix-git/doc/guix.texi:32244 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object css" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31881 +#: guix-git/doc/guix.texi:32246 msgid "URL which specifies the css document to include in all cgit pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31883 +#: guix-git/doc/guix.texi:32248 msgid "Defaults to @samp{\"/share/cgit/cgit.css\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31886 +#: guix-git/doc/guix.texi:32251 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object email-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31890 +#: guix-git/doc/guix.texi:32255 msgid "Specifies a command which will be invoked to format names and email address of committers, authors, and taggers, as represented in various places throughout the cgit interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31895 +#: guix-git/doc/guix.texi:32260 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean embedded?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31898 +#: guix-git/doc/guix.texi:32263 msgid "Flag which, when set to @samp{#t}, will make cgit generate a HTML fragment suitable for embedding in other HTML pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31903 +#: guix-git/doc/guix.texi:32268 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-commit-graph?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31907 +#: guix-git/doc/guix.texi:32272 msgid "Flag which, when set to @samp{#t}, will make cgit print an ASCII-art commit history graph to the left of the commit messages in the repository log page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31912 +#: guix-git/doc/guix.texi:32277 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-filter-overrides?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31915 +#: guix-git/doc/guix.texi:32280 msgid "Flag which, when set to @samp{#t}, allows all filter settings to be overridden in repository-specific cgitrc files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31920 +#: guix-git/doc/guix.texi:32285 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-follow-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31923 +#: guix-git/doc/guix.texi:32288 msgid "Flag which, when set to @samp{#t}, allows users to follow a file in the log view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31928 +#: guix-git/doc/guix.texi:32293 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-http-clone?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31931 +#: guix-git/doc/guix.texi:32296 msgid "If set to @samp{#t}, cgit will act as an dumb HTTP endpoint for Git clones." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31936 +#: guix-git/doc/guix.texi:32301 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-index-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31939 +#: guix-git/doc/guix.texi:32304 msgid "Flag which, when set to @samp{#t}, will make cgit generate extra links \"summary\", \"commit\", \"tree\" for each repo in the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31944 +#: guix-git/doc/guix.texi:32309 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-index-owner?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31947 +#: guix-git/doc/guix.texi:32312 msgid "Flag which, when set to @samp{#t}, will make cgit display the owner of each repo in the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31952 +#: guix-git/doc/guix.texi:32317 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-log-filecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31955 +#: guix-git/doc/guix.texi:32320 msgid "Flag which, when set to @samp{#t}, will make cgit print the number of modified files for each commit on the repository log page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31960 +#: guix-git/doc/guix.texi:32325 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-log-linecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31963 +#: guix-git/doc/guix.texi:32328 msgid "Flag which, when set to @samp{#t}, will make cgit print the number of added and removed lines for each commit on the repository log page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31968 +#: guix-git/doc/guix.texi:32333 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-remote-branches?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31971 guix-git/doc/guix.texi:32495 +#: guix-git/doc/guix.texi:32336 guix-git/doc/guix.texi:32860 msgid "Flag which, when set to @code{#t}, will make cgit display remote branches in the summary and refs views." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31976 +#: guix-git/doc/guix.texi:32341 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-subject-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31980 +#: guix-git/doc/guix.texi:32345 msgid "Flag which, when set to @code{1}, will make cgit use the subject of the parent commit as link text when generating links to parent commits in commit view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31985 +#: guix-git/doc/guix.texi:32350 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-html-serving?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31989 +#: guix-git/doc/guix.texi:32354 msgid "Flag which, when set to @samp{#t}, will make cgit use the subject of the parent commit as link text when generating links to parent commits in commit view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31994 +#: guix-git/doc/guix.texi:32359 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-tree-linenumbers?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31997 +#: guix-git/doc/guix.texi:32362 msgid "Flag which, when set to @samp{#t}, will make cgit generate linenumber links for plaintext blobs printed in the tree view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32002 +#: guix-git/doc/guix.texi:32367 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-git-config?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32005 +#: guix-git/doc/guix.texi:32370 msgid "Flag which, when set to @samp{#f}, will allow cgit to use Git config to set any repo specific settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32010 +#: guix-git/doc/guix.texi:32375 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object favicon" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32012 +#: guix-git/doc/guix.texi:32377 msgid "URL used as link to a shortcut icon for cgit." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32014 +#: guix-git/doc/guix.texi:32379 msgid "Defaults to @samp{\"/favicon.ico\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32017 +#: guix-git/doc/guix.texi:32382 #, no-wrap msgid "{@code{cgit-configuration} parameter} string footer" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32021 +#: guix-git/doc/guix.texi:32386 msgid "The content of the file specified with this option will be included verbatim at the bottom of all pages (i.e.@: it replaces the standard \"generated by...\"@: message)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32026 +#: guix-git/doc/guix.texi:32391 #, no-wrap msgid "{@code{cgit-configuration} parameter} string head-include" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32029 +#: guix-git/doc/guix.texi:32394 msgid "The content of the file specified with this option will be included verbatim in the HTML HEAD section on all pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32034 +#: guix-git/doc/guix.texi:32399 #, no-wrap msgid "{@code{cgit-configuration} parameter} string header" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32037 +#: guix-git/doc/guix.texi:32402 msgid "The content of the file specified with this option will be included verbatim at the top of all pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32042 +#: guix-git/doc/guix.texi:32407 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object include" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32045 +#: guix-git/doc/guix.texi:32410 msgid "Name of a configfile to include before the rest of the current config- file is parsed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32050 +#: guix-git/doc/guix.texi:32415 #, no-wrap msgid "{@code{cgit-configuration} parameter} string index-header" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32053 +#: guix-git/doc/guix.texi:32418 msgid "The content of the file specified with this option will be included verbatim above the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32058 +#: guix-git/doc/guix.texi:32423 #, no-wrap msgid "{@code{cgit-configuration} parameter} string index-info" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32061 +#: guix-git/doc/guix.texi:32426 msgid "The content of the file specified with this option will be included verbatim below the heading on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32066 +#: guix-git/doc/guix.texi:32431 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean local-time?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32069 +#: guix-git/doc/guix.texi:32434 msgid "Flag which, if set to @samp{#t}, makes cgit print commit and tag times in the servers timezone." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32074 +#: guix-git/doc/guix.texi:32439 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object logo" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32077 +#: guix-git/doc/guix.texi:32442 msgid "URL which specifies the source of an image which will be used as a logo on all cgit pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32079 +#: guix-git/doc/guix.texi:32444 msgid "Defaults to @samp{\"/share/cgit/cgit.png\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32082 +#: guix-git/doc/guix.texi:32447 #, no-wrap msgid "{@code{cgit-configuration} parameter} string logo-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32084 guix-git/doc/guix.texi:32541 +#: guix-git/doc/guix.texi:32449 guix-git/doc/guix.texi:32906 msgid "URL loaded when clicking on the cgit logo image." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32089 +#: guix-git/doc/guix.texi:32454 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object owner-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32092 +#: guix-git/doc/guix.texi:32457 msgid "Command which will be invoked to format the Owner column of the main page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32097 +#: guix-git/doc/guix.texi:32462 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-atom-items" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32099 +#: guix-git/doc/guix.texi:32464 msgid "Number of items to display in atom feeds view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32104 +#: guix-git/doc/guix.texi:32469 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-commit-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32106 +#: guix-git/doc/guix.texi:32471 msgid "Number of entries to list per page in \"log\" view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32111 +#: guix-git/doc/guix.texi:32476 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-message-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32113 +#: guix-git/doc/guix.texi:32478 msgid "Number of commit message characters to display in \"log\" view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32115 guix-git/doc/guix.texi:32131 +#: guix-git/doc/guix.texi:32480 guix-git/doc/guix.texi:32496 msgid "Defaults to @samp{80}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32118 +#: guix-git/doc/guix.texi:32483 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-repo-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32121 +#: guix-git/doc/guix.texi:32486 msgid "Specifies the number of entries to list per page on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32126 +#: guix-git/doc/guix.texi:32491 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-repodesc-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32129 +#: guix-git/doc/guix.texi:32494 msgid "Specifies the maximum number of repo description characters to display on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32134 +#: guix-git/doc/guix.texi:32499 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-blob-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32136 +#: guix-git/doc/guix.texi:32501 msgid "Specifies the maximum size of a blob to display HTML for in KBytes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32141 +#: guix-git/doc/guix.texi:32506 #, no-wrap msgid "{@code{cgit-configuration} parameter} string max-stats" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32144 +#: guix-git/doc/guix.texi:32509 msgid "Maximum statistics period. Valid values are @samp{week},@samp{month}, @samp{quarter} and @samp{year}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32149 +#: guix-git/doc/guix.texi:32514 #, no-wrap msgid "{@code{cgit-configuration} parameter} mimetype-alist mimetype" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32151 +#: guix-git/doc/guix.texi:32516 msgid "Mimetype for the specified filename extension." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32155 +#: guix-git/doc/guix.texi:32520 msgid "Defaults to @samp{((gif \"image/gif\") (html \"text/html\") (jpg \"image/jpeg\") (jpeg \"image/jpeg\") (pdf \"application/pdf\") (png \"image/png\") (svg \"image/svg+xml\"))}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32158 +#: guix-git/doc/guix.texi:32523 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object mimetype-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32160 +#: guix-git/doc/guix.texi:32525 msgid "Specifies the file to use for automatic mimetype lookup." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32165 +#: guix-git/doc/guix.texi:32530 #, no-wrap msgid "{@code{cgit-configuration} parameter} string module-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32168 +#: guix-git/doc/guix.texi:32533 msgid "Text which will be used as the formatstring for a hyperlink when a submodule is printed in a directory listing." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32173 +#: guix-git/doc/guix.texi:32538 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean nocache?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32175 +#: guix-git/doc/guix.texi:32540 msgid "If set to the value @samp{#t} caching will be disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32180 +#: guix-git/doc/guix.texi:32545 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean noplainemail?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32183 +#: guix-git/doc/guix.texi:32548 msgid "If set to @samp{#t} showing full author email addresses will be disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32188 +#: guix-git/doc/guix.texi:32553 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean noheader?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32191 +#: guix-git/doc/guix.texi:32556 msgid "Flag which, when set to @samp{#t}, will make cgit omit the standard header on all pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32196 +#: guix-git/doc/guix.texi:32561 #, no-wrap msgid "{@code{cgit-configuration} parameter} project-list project-list" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32200 +#: guix-git/doc/guix.texi:32565 msgid "A list of subdirectories inside of @code{repository-directory}, relative to it, that should loaded as Git repositories. An empty list means that all subdirectories will be loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32205 +#: guix-git/doc/guix.texi:32570 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object readme" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32207 +#: guix-git/doc/guix.texi:32572 msgid "Text which will be used as default value for @code{cgit-repo-readme}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32212 +#: guix-git/doc/guix.texi:32577 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean remove-suffix?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32216 +#: guix-git/doc/guix.texi:32581 msgid "If set to @code{#t} and @code{repository-directory} is enabled, if any repositories are found with a suffix of @code{.git}, this suffix will be removed for the URL and name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32221 +#: guix-git/doc/guix.texi:32586 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer renamelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32223 +#: guix-git/doc/guix.texi:32588 msgid "Maximum number of files to consider when detecting renames." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32228 +#: guix-git/doc/guix.texi:32593 #, no-wrap msgid "{@code{cgit-configuration} parameter} string repository-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32230 +#: guix-git/doc/guix.texi:32595 msgid "The way in which repositories in each section are sorted." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32235 +#: guix-git/doc/guix.texi:32600 #, no-wrap msgid "{@code{cgit-configuration} parameter} robots-list robots" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32237 +#: guix-git/doc/guix.texi:32602 msgid "Text used as content for the @code{robots} meta-tag." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32239 +#: guix-git/doc/guix.texi:32604 msgid "Defaults to @samp{(\"noindex\" \"nofollow\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32242 +#: guix-git/doc/guix.texi:32607 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-desc" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32244 +#: guix-git/doc/guix.texi:32609 msgid "Text printed below the heading on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32246 +#: guix-git/doc/guix.texi:32611 msgid "Defaults to @samp{\"a fast webinterface for the git dscm\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32249 +#: guix-git/doc/guix.texi:32614 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-readme" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32252 +#: guix-git/doc/guix.texi:32617 msgid "The content of the file specified with this option will be included verbatim below the ``about'' link on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32257 +#: guix-git/doc/guix.texi:32622 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-title" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32259 +#: guix-git/doc/guix.texi:32624 msgid "Text printed as heading on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32264 +#: guix-git/doc/guix.texi:32629 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean scan-hidden-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32270 +#: guix-git/doc/guix.texi:32635 msgid "If set to @samp{#t} and repository-directory is enabled, repository-directory will recurse into directories whose name starts with a period. Otherwise, repository-directory will stay away from such directories, considered as ``hidden''. Note that this does not apply to the @file{.git} directory in non-bare repos." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32275 +#: guix-git/doc/guix.texi:32640 #, no-wrap msgid "{@code{cgit-configuration} parameter} list snapshots" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32278 +#: guix-git/doc/guix.texi:32643 msgid "Text which specifies the default set of snapshot formats that cgit generates links for." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32283 +#: guix-git/doc/guix.texi:32648 #, no-wrap msgid "{@code{cgit-configuration} parameter} repository-directory repository-directory" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32286 +#: guix-git/doc/guix.texi:32651 msgid "Name of the directory to scan for repositories (represents @code{scan-path})." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32288 +#: guix-git/doc/guix.texi:32653 msgid "Defaults to @samp{\"/srv/git\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32291 +#: guix-git/doc/guix.texi:32656 #, no-wrap msgid "{@code{cgit-configuration} parameter} string section" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32294 guix-git/doc/guix.texi:32610 +#: guix-git/doc/guix.texi:32659 guix-git/doc/guix.texi:32975 msgid "The name of the current repository section - all repositories defined after this option will inherit the current section name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32299 +#: guix-git/doc/guix.texi:32664 #, no-wrap msgid "{@code{cgit-configuration} parameter} string section-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32302 +#: guix-git/doc/guix.texi:32667 msgid "Flag which, when set to @samp{1}, will sort the sections on the repository listing by name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32307 +#: guix-git/doc/guix.texi:32672 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer section-from-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32310 +#: guix-git/doc/guix.texi:32675 msgid "A number which, if defined prior to repository-directory, specifies how many path elements from each repo path to use as a default section name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32315 +#: guix-git/doc/guix.texi:32680 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean side-by-side-diffs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32318 +#: guix-git/doc/guix.texi:32683 msgid "If set to @samp{#t} shows side-by-side diffs instead of unidiffs per default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32323 +#: guix-git/doc/guix.texi:32688 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object source-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32326 +#: guix-git/doc/guix.texi:32691 msgid "Specifies a command which will be invoked to format plaintext blobs in the tree view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32331 +#: guix-git/doc/guix.texi:32696 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-branches" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32334 +#: guix-git/doc/guix.texi:32699 msgid "Specifies the number of branches to display in the repository ``summary'' view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32339 +#: guix-git/doc/guix.texi:32704 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32342 +#: guix-git/doc/guix.texi:32707 msgid "Specifies the number of log entries to display in the repository ``summary'' view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32347 +#: guix-git/doc/guix.texi:32712 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-tags" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32350 +#: guix-git/doc/guix.texi:32715 msgid "Specifies the number of tags to display in the repository ``summary'' view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32355 +#: guix-git/doc/guix.texi:32720 #, no-wrap msgid "{@code{cgit-configuration} parameter} string strict-export" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32358 +#: guix-git/doc/guix.texi:32723 msgid "Filename which, if specified, needs to be present within the repository for cgit to allow access to that repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32363 +#: guix-git/doc/guix.texi:32728 #, no-wrap msgid "{@code{cgit-configuration} parameter} string virtual-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32365 +#: guix-git/doc/guix.texi:32730 msgid "URL which, if specified, will be used as root for all cgit links." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32367 +#: guix-git/doc/guix.texi:32732 msgid "Defaults to @samp{\"/\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32370 +#: guix-git/doc/guix.texi:32735 #, no-wrap msgid "{@code{cgit-configuration} parameter} repository-cgit-configuration-list repositories" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32372 +#: guix-git/doc/guix.texi:32737 msgid "A list of @dfn{cgit-repo} records to use with config." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32376 +#: guix-git/doc/guix.texi:32741 msgid "Available @code{repository-cgit-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32377 +#: guix-git/doc/guix.texi:32742 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list snapshots" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32380 +#: guix-git/doc/guix.texi:32745 msgid "A mask of snapshot formats for this repo that cgit generates links for, restricted by the global @code{snapshots} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32385 +#: guix-git/doc/guix.texi:32750 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object source-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32387 +#: guix-git/doc/guix.texi:32752 msgid "Override the default @code{source-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32392 +#: guix-git/doc/guix.texi:32757 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32394 +#: guix-git/doc/guix.texi:32759 msgid "The relative URL used to access the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32399 +#: guix-git/doc/guix.texi:32764 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object about-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32401 +#: guix-git/doc/guix.texi:32766 msgid "Override the default @code{about-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32406 +#: guix-git/doc/guix.texi:32771 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string branch-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32409 +#: guix-git/doc/guix.texi:32774 msgid "Flag which, when set to @samp{age}, enables date ordering in the branch ref list, and when set to @samp{name} enables ordering by branch name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32414 +#: guix-git/doc/guix.texi:32779 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list clone-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32416 +#: guix-git/doc/guix.texi:32781 msgid "A list of URLs which can be used to clone repo." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32421 +#: guix-git/doc/guix.texi:32786 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object commit-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32423 +#: guix-git/doc/guix.texi:32788 msgid "Override the default @code{commit-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32428 +#: guix-git/doc/guix.texi:32793 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string commit-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32437 +#: guix-git/doc/guix.texi:32802 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string defbranch" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32442 +#: guix-git/doc/guix.texi:32807 msgid "The name of the default branch for this repository. If no such branch exists in the repository, the first branch name (when sorted) is used as default instead. By default branch pointed to by HEAD, or ``master'' if there is no suitable HEAD." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32447 +#: guix-git/doc/guix.texi:32812 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string desc" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32449 +#: guix-git/doc/guix.texi:32814 msgid "The value to show as repository description." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32454 +#: guix-git/doc/guix.texi:32819 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string homepage" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32456 +#: guix-git/doc/guix.texi:32821 msgid "The value to show as repository homepage." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32461 +#: guix-git/doc/guix.texi:32826 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object email-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32463 +#: guix-git/doc/guix.texi:32828 msgid "Override the default @code{email-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32468 +#: guix-git/doc/guix.texi:32833 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-commit-graph?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32471 +#: guix-git/doc/guix.texi:32836 msgid "A flag which can be used to disable the global setting @code{enable-commit-graph?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32476 +#: guix-git/doc/guix.texi:32841 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-log-filecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32479 +#: guix-git/doc/guix.texi:32844 msgid "A flag which can be used to disable the global setting @code{enable-log-filecount?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32484 +#: guix-git/doc/guix.texi:32849 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-log-linecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32487 +#: guix-git/doc/guix.texi:32852 msgid "A flag which can be used to disable the global setting @code{enable-log-linecount?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32492 +#: guix-git/doc/guix.texi:32857 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-remote-branches?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32500 +#: guix-git/doc/guix.texi:32865 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-subject-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32503 +#: guix-git/doc/guix.texi:32868 msgid "A flag which can be used to override the global setting @code{enable-subject-links?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32508 +#: guix-git/doc/guix.texi:32873 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-html-serving?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32511 +#: guix-git/doc/guix.texi:32876 msgid "A flag which can be used to override the global setting @code{enable-html-serving?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32516 +#: guix-git/doc/guix.texi:32881 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-boolean hide?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32519 +#: guix-git/doc/guix.texi:32884 msgid "Flag which, when set to @code{#t}, hides the repository from the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32524 +#: guix-git/doc/guix.texi:32889 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-boolean ignore?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32526 +#: guix-git/doc/guix.texi:32891 msgid "Flag which, when set to @samp{#t}, ignores the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32531 +#: guix-git/doc/guix.texi:32896 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object logo" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32534 +#: guix-git/doc/guix.texi:32899 msgid "URL which specifies the source of an image which will be used as a logo on this repo’s pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32539 +#: guix-git/doc/guix.texi:32904 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string logo-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32546 +#: guix-git/doc/guix.texi:32911 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object owner-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32548 +#: guix-git/doc/guix.texi:32913 msgid "Override the default @code{owner-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32553 +#: guix-git/doc/guix.texi:32918 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string module-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32557 +#: guix-git/doc/guix.texi:32922 msgid "Text which will be used as the formatstring for a hyperlink when a submodule is printed in a directory listing. The arguments for the formatstring are the path and SHA1 of the submodule commit." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32562 +#: guix-git/doc/guix.texi:32927 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} module-link-path module-link-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32566 +#: guix-git/doc/guix.texi:32931 msgid "Text which will be used as the formatstring for a hyperlink when a submodule with the specified subdirectory path is printed in a directory listing." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32571 +#: guix-git/doc/guix.texi:32936 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string max-stats" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32573 +#: guix-git/doc/guix.texi:32938 msgid "Override the default maximum statistics period." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32578 +#: guix-git/doc/guix.texi:32943 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32580 +#: guix-git/doc/guix.texi:32945 msgid "The value to show as repository name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32585 +#: guix-git/doc/guix.texi:32950 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string owner" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32587 +#: guix-git/doc/guix.texi:32952 msgid "A value used to identify the owner of the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32592 +#: guix-git/doc/guix.texi:32957 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32594 +#: guix-git/doc/guix.texi:32959 msgid "An absolute path to the repository directory." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32599 +#: guix-git/doc/guix.texi:32964 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string readme" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32602 +#: guix-git/doc/guix.texi:32967 msgid "A path (relative to repo) which specifies a file to include verbatim as the ``About'' page for this repo." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32607 +#: guix-git/doc/guix.texi:32972 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string section" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32615 +#: guix-git/doc/guix.texi:32980 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32617 guix-git/doc/guix.texi:32626 +#: guix-git/doc/guix.texi:32982 guix-git/doc/guix.texi:32991 msgid "Extra options will be appended to cgitrc file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32624 +#: guix-git/doc/guix.texi:32989 #, no-wrap msgid "{@code{cgit-configuration} parameter} list extra-options" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32638 +#: guix-git/doc/guix.texi:33003 msgid "However, it could be that you just want to get a @code{cgitrc} up and running. In that case, you can pass an @code{opaque-cgit-configuration} as a record to @code{cgit-service-type}. As its name indicates, an opaque configuration does not have easy reflective capabilities." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32640 +#: guix-git/doc/guix.texi:33005 msgid "Available @code{opaque-cgit-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32641 +#: guix-git/doc/guix.texi:33006 #, no-wrap msgid "{@code{opaque-cgit-configuration} parameter} package cgit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32643 +#: guix-git/doc/guix.texi:33008 msgid "The cgit package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32645 +#: guix-git/doc/guix.texi:33010 #, no-wrap msgid "{@code{opaque-cgit-configuration} parameter} string string" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32647 +#: guix-git/doc/guix.texi:33012 msgid "The contents of the @code{cgitrc}, as a string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32651 +#: guix-git/doc/guix.texi:33016 msgid "For example, if your @code{cgitrc} is just the empty string, you could instantiate a cgit service like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32656 +#: guix-git/doc/guix.texi:33021 #, no-wrap msgid "" "(service cgit-service-type\n" @@ -58093,40 +58762,40 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:32658 +#: guix-git/doc/guix.texi:33023 #, no-wrap msgid "Gitolite Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32660 +#: guix-git/doc/guix.texi:33025 #, no-wrap msgid "Gitolite service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32661 +#: guix-git/doc/guix.texi:33026 #, no-wrap msgid "Git, hosting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32664 +#: guix-git/doc/guix.texi:33029 msgid "@uref{https://gitolite.com/gitolite/, Gitolite} is a tool for hosting Git repositories on a central server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32667 +#: guix-git/doc/guix.texi:33032 msgid "Gitolite can handle multiple repositories and users, and supports flexible configuration of the permissions for the users on the repositories." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32670 +#: guix-git/doc/guix.texi:33035 msgid "The following example will configure Gitolite using the default @code{git} user, and the provided SSH public key." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32677 +#: guix-git/doc/guix.texi:33042 #, no-wrap msgid "" "(service gitolite-service-type\n" @@ -58137,221 +58806,221 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32682 +#: guix-git/doc/guix.texi:33047 msgid "Gitolite is configured through a special admin repository which you can clone, for example, if you setup Gitolite on @code{example.com}, you would run the following command to clone the admin repository." msgstr "" #. type: example -#: guix-git/doc/guix.texi:32685 +#: guix-git/doc/guix.texi:33050 #, no-wrap msgid "git clone git@@example.com:gitolite-admin\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32691 +#: guix-git/doc/guix.texi:33056 msgid "When the Gitolite service is activated, the provided @code{admin-pubkey} will be inserted in to the @file{keydir} directory in the gitolite-admin repository. If this results in a change in the repository, it will be committed using the message ``gitolite setup by GNU Guix''." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32692 +#: guix-git/doc/guix.texi:33057 #, no-wrap msgid "{Data Type} gitolite-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32694 +#: guix-git/doc/guix.texi:33059 msgid "Data type representing the configuration for @code{gitolite-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32696 +#: guix-git/doc/guix.texi:33061 #, no-wrap msgid "@code{package} (default: @var{gitolite})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32698 +#: guix-git/doc/guix.texi:33063 msgid "Gitolite package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32699 +#: guix-git/doc/guix.texi:33064 #, no-wrap msgid "@code{user} (default: @var{git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32702 +#: guix-git/doc/guix.texi:33067 msgid "User to use for Gitolite. This will be user that you use when accessing Gitolite over SSH." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32703 +#: guix-git/doc/guix.texi:33068 #, no-wrap msgid "@code{group} (default: @var{git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32705 +#: guix-git/doc/guix.texi:33070 msgid "Group to use for Gitolite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32706 +#: guix-git/doc/guix.texi:33071 #, no-wrap msgid "@code{home-directory} (default: @var{\"/var/lib/gitolite\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32708 +#: guix-git/doc/guix.texi:33073 msgid "Directory in which to store the Gitolite configuration and repositories." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32709 +#: guix-git/doc/guix.texi:33074 #, no-wrap msgid "@code{rc-file} (default: @var{(gitolite-rc-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32712 +#: guix-git/doc/guix.texi:33077 msgid "A ``file-like'' object (@pxref{G-Expressions, file-like objects}), representing the configuration for Gitolite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32713 +#: guix-git/doc/guix.texi:33078 #, no-wrap msgid "@code{admin-pubkey} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32717 +#: guix-git/doc/guix.texi:33082 msgid "A ``file-like'' object (@pxref{G-Expressions, file-like objects}) used to setup Gitolite. This will be inserted in to the @file{keydir} directory within the gitolite-admin repository." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32719 +#: guix-git/doc/guix.texi:33084 msgid "To specify the SSH key as a string, use the @code{plain-file} function." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32722 +#: guix-git/doc/guix.texi:33087 #, no-wrap msgid "(plain-file \"yourname.pub\" \"ssh-rsa AAAA... guix@@example.com\")\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32727 +#: guix-git/doc/guix.texi:33092 #, no-wrap msgid "{Data Type} gitolite-rc-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32729 +#: guix-git/doc/guix.texi:33094 msgid "Data type representing the Gitolite RC file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32731 +#: guix-git/doc/guix.texi:33096 #, no-wrap msgid "@code{umask} (default: @code{#o0077})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32734 +#: guix-git/doc/guix.texi:33099 msgid "This controls the permissions Gitolite sets on the repositories and their contents." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32738 +#: guix-git/doc/guix.texi:33103 msgid "A value like @code{#o0027} will give read access to the group used by Gitolite (by default: @code{git}). This is necessary when using Gitolite with software like cgit or gitweb." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32739 +#: guix-git/doc/guix.texi:33104 #, no-wrap msgid "@code{unsafe-pattern} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32744 +#: guix-git/doc/guix.texi:33109 msgid "An optional Perl regular expression for catching unsafe configurations in the configuration file. See @uref{https://gitolite.com/gitolite/git-config.html#compensating-for-unsafe_patt, Gitolite's documentation} for more information." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32751 +#: guix-git/doc/guix.texi:33116 msgid "When the value is not @code{#f}, it should be a string containing a Perl regular expression, such as @samp{\"[`~#\\$\\&()|;<>]\"}, which is the default value used by gitolite. It rejects any special character in configuration that might be interpreted by a shell, which is useful when sharing the administration burden with other people that do not otherwise have shell access on the server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32752 +#: guix-git/doc/guix.texi:33117 #, no-wrap msgid "@code{git-config-keys} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32755 +#: guix-git/doc/guix.texi:33120 msgid "Gitolite allows you to set git config values using the @samp{config} keyword. This setting allows control over the config keys to accept." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32756 +#: guix-git/doc/guix.texi:33121 #, no-wrap msgid "@code{roles} (default: @code{'((\"READERS\" . 1) (\"WRITERS\" . ))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32758 +#: guix-git/doc/guix.texi:33123 msgid "Set the role names allowed to be used by users running the perms command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32759 +#: guix-git/doc/guix.texi:33124 #, no-wrap msgid "@code{enable} (default: @code{'(\"help\" \"desc\" \"info\" \"perms\" \"writable\" \"ssh-authkeys\" \"git-config\" \"daemon\" \"gitweb\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32761 +#: guix-git/doc/guix.texi:33126 msgid "This setting controls the commands and features to enable within Gitolite." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:32766 +#: guix-git/doc/guix.texi:33131 #, fuzzy, no-wrap #| msgid "Services" msgid "Gitile Service" msgstr "Servizi" #. type: cindex -#: guix-git/doc/guix.texi:32768 +#: guix-git/doc/guix.texi:33133 #, no-wrap msgid "Gitile service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32769 +#: guix-git/doc/guix.texi:33134 #, no-wrap msgid "Git, forge" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32772 +#: guix-git/doc/guix.texi:33137 msgid "@uref{https://git.lepiller.eu/gitile, Gitile} is a Git forge for viewing public git repository contents from a web browser." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32778 +#: guix-git/doc/guix.texi:33143 msgid "Gitile works best in collaboration with Gitolite, and will serve the public repositories from Gitolite by default. The service should listen only on a local port, and a webserver should be configured to serve static resources. The gitile service provides an easy way to extend the Nginx service for that purpose (@pxref{NGINX})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32782 +#: guix-git/doc/guix.texi:33147 msgid "The following example will configure Gitile to serve repositories from a custom location, with some default messages for the home page and the footers." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32805 +#: guix-git/doc/guix.texi:33170 #, no-wrap msgid "" "(service gitile-service-type\n" @@ -58378,12 +59047,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32814 +#: guix-git/doc/guix.texi:33179 msgid "In addition to the configuration record, you should configure your git repositories to contain some optional information. First, your public repositories need to contain the @file{git-daemon-export-ok} magic file that allows Git to export the repository. Gitile uses the presence of this file to detect public repositories it should make accessible. To do so with Gitolite for instance, modify your @file{conf/gitolite.conf} to include this in the repositories you want to make public:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:32818 +#: guix-git/doc/guix.texi:33183 #, no-wrap msgid "" "repo foo\n" @@ -58391,12 +59060,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32824 +#: guix-git/doc/guix.texi:33189 msgid "In addition, Gitile can read the repository configuration to display more information on the repository. Gitile uses the gitweb namespace for its configuration. As an example, you can use the following in your @file{conf/gitolite.conf}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:32831 +#: guix-git/doc/guix.texi:33196 #, no-wrap msgid "" "repo foo\n" @@ -58407,12 +59076,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32837 +#: guix-git/doc/guix.texi:33202 msgid "Do not forget to commit and push these changes once you are satisfied. You may need to change your gitolite configuration to allow the previous configuration options to be set. One way to do that is to add the following service definition:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32849 +#: guix-git/doc/guix.texi:33214 #, no-wrap msgid "" "(service gitolite-service-type\n" @@ -58428,243 +59097,243 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32851 +#: guix-git/doc/guix.texi:33216 #, no-wrap msgid "{Data Type} gitile-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32853 +#: guix-git/doc/guix.texi:33218 msgid "Data type representing the configuration for @code{gitile-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32855 +#: guix-git/doc/guix.texi:33220 #, no-wrap msgid "@code{package} (default: @var{gitile})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32857 +#: guix-git/doc/guix.texi:33222 msgid "Gitile package to use." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32860 +#: guix-git/doc/guix.texi:33225 msgid "The host on which gitile is listening." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32861 +#: guix-git/doc/guix.texi:33226 #, no-wrap msgid "@code{port} (default: @code{8080})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32863 +#: guix-git/doc/guix.texi:33228 msgid "The port on which gitile is listening." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32864 +#: guix-git/doc/guix.texi:33229 #, no-wrap msgid "@code{database} (default: @code{\"/var/lib/gitile/gitile-db.sql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32866 +#: guix-git/doc/guix.texi:33231 msgid "The location of the database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32867 +#: guix-git/doc/guix.texi:33232 #, no-wrap msgid "@code{repositories} (default: @code{\"/var/lib/gitolite/repositories\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32871 +#: guix-git/doc/guix.texi:33236 msgid "The location of the repositories. Note that only public repositories will be shown by Gitile. To make a repository public, add an empty @file{git-daemon-export-ok} file at the root of that repository." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:32872 +#: guix-git/doc/guix.texi:33237 #, no-wrap msgid "base-git-url" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32874 +#: guix-git/doc/guix.texi:33239 msgid "The base git url that will be used to show clone commands." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32875 +#: guix-git/doc/guix.texi:33240 #, no-wrap msgid "@code{index-title} (default: @code{\"Index\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32877 +#: guix-git/doc/guix.texi:33242 msgid "The page title for the index page that lists all the available repositories." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32878 +#: guix-git/doc/guix.texi:33243 #, no-wrap msgid "@code{intro} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32881 +#: guix-git/doc/guix.texi:33246 msgid "The intro content, as a list of sxml expressions. This is shown above the list of repositories, on the index page." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32882 +#: guix-git/doc/guix.texi:33247 #, no-wrap msgid "@code{footer} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32885 +#: guix-git/doc/guix.texi:33250 msgid "The footer content, as a list of sxml expressions. This is shown on every page served by Gitile." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:32886 +#: guix-git/doc/guix.texi:33251 #, no-wrap msgid "nginx-server-block" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32889 +#: guix-git/doc/guix.texi:33254 msgid "An nginx server block that will be extended and used as a reverse proxy by Gitile to serve its pages, and as a normal web server to serve its assets." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32893 +#: guix-git/doc/guix.texi:33258 msgid "You can use this block to add more custom URLs to your domain, such as a @code{/git/} URL for anonymous clones, or serving any other files you would like to serve." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:32900 +#: guix-git/doc/guix.texi:33265 #, no-wrap msgid "The Battle for Wesnoth Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32901 +#: guix-git/doc/guix.texi:33266 #, no-wrap msgid "wesnothd" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32905 +#: guix-git/doc/guix.texi:33270 msgid "@uref{https://wesnoth.org, The Battle for Wesnoth} is a fantasy, turn based tactical strategy game, with several single player campaigns, and multiplayer games (both networked and local)." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32906 +#: guix-git/doc/guix.texi:33271 #, no-wrap msgid "{Scheme Variable} wesnothd-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32910 +#: guix-git/doc/guix.texi:33275 msgid "Service type for the wesnothd service. Its value must be a @code{wesnothd-configuration} object. To run wesnothd in the default configuration, instantiate it as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32913 +#: guix-git/doc/guix.texi:33278 #, no-wrap msgid "(service wesnothd-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32916 +#: guix-git/doc/guix.texi:33281 #, no-wrap msgid "{Data Type} wesnothd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32918 +#: guix-git/doc/guix.texi:33283 msgid "Data type representing the configuration of @command{wesnothd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32920 +#: guix-git/doc/guix.texi:33285 #, no-wrap msgid "@code{package} (default: @code{wesnoth-server})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32922 +#: guix-git/doc/guix.texi:33287 msgid "The wesnoth server package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32923 +#: guix-git/doc/guix.texi:33288 #, no-wrap msgid "@code{port} (default: @code{15000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32925 +#: guix-git/doc/guix.texi:33290 guix-git/doc/guix.texi:33681 msgid "The port to bind the server to." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32931 +#: guix-git/doc/guix.texi:33296 #, no-wrap msgid "pam-mount" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32936 +#: guix-git/doc/guix.texi:33301 msgid "The @code{(gnu services pam-mount)} module provides a service allowing users to mount volumes when they log in. It should be able to mount any volume format supported by the system." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32937 +#: guix-git/doc/guix.texi:33302 #, no-wrap msgid "{Scheme Variable} pam-mount-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32939 +#: guix-git/doc/guix.texi:33304 msgid "Service type for PAM Mount support." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32941 +#: guix-git/doc/guix.texi:33306 #, no-wrap msgid "{Data Type} pam-mount-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32943 +#: guix-git/doc/guix.texi:33308 msgid "Data type representing the configuration of PAM Mount." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:32947 +#: guix-git/doc/guix.texi:33312 #, no-wrap msgid "rules" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32950 +#: guix-git/doc/guix.texi:33315 msgid "The configuration rules that will be used to generate @file{/etc/security/pam_mount.conf.xml}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32954 +#: guix-git/doc/guix.texi:33319 msgid "The configuration rules are SXML elements (@pxref{SXML,,, guile, GNU Guile Reference Manual}), and the default ones don't mount anything for anyone at login:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32969 +#: guix-git/doc/guix.texi:33334 #, no-wrap msgid "" "`((debug (@@ (enable \"0\")))\n" @@ -58683,12 +59352,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32975 +#: guix-git/doc/guix.texi:33340 msgid "Some @code{volume} elements must be added to automatically mount volumes at login. Here's an example allowing the user @code{alice} to mount her encrypted @env{HOME} directory and allowing the user @code{bob} to mount the partition where he stores his data:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33000 +#: guix-git/doc/guix.texi:33365 #, no-wrap msgid "" "(define pam-mount-rules\n" @@ -58718,7 +59387,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33004 +#: guix-git/doc/guix.texi:33369 #, no-wrap msgid "" "(service pam-mount-service-type\n" @@ -58727,770 +59396,909 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33008 +#: guix-git/doc/guix.texi:33373 msgid "The complete list of possible options can be found in the man page for @uref{http://pam-mount.sourceforge.net/pam_mount.conf.5.html, pam_mount.conf}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33015 +#: guix-git/doc/guix.texi:33380 #, no-wrap msgid "Guix Build Coordinator" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33021 +#: guix-git/doc/guix.texi:33386 msgid "The @uref{https://git.cbaines.net/guix/build-coordinator/,Guix Build Coordinator} aids in distributing derivation builds among machines running an @dfn{agent}. The build daemon is still used to build the derivations, but the Guix Build Coordinator manages allocating builds and working with the results." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33027 +#: guix-git/doc/guix.texi:33392 msgid "The Guix Build Coordinator consists of one @dfn{coordinator}, and one or more connected @dfn{agent} processes. The coordinator process handles clients submitting builds, and allocating builds to agents. The agent processes talk to a build daemon to actually perform the builds, then send the results back to the coordinator." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33031 +#: guix-git/doc/guix.texi:33396 msgid "There is a script to run the coordinator component of the Guix Build Coordinator, but the Guix service uses a custom Guile script instead, to provide better integration with G-expressions used in the configuration." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33032 +#: guix-git/doc/guix.texi:33397 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33035 +#: guix-git/doc/guix.texi:33400 msgid "Service type for the Guix Build Coordinator. Its value must be a @code{guix-build-coordinator-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33037 +#: guix-git/doc/guix.texi:33402 #, no-wrap msgid "{Data Type} guix-build-coordinator-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33039 +#: guix-git/doc/guix.texi:33404 msgid "Data type representing the configuration of the Guix Build Coordinator." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33041 guix-git/doc/guix.texi:33211 +#: guix-git/doc/guix.texi:33406 guix-git/doc/guix.texi:33576 #, no-wrap msgid "@code{package} (default: @code{guix-build-coordinator})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33043 guix-git/doc/guix.texi:33087 -#: guix-git/doc/guix.texi:33213 +#: guix-git/doc/guix.texi:33408 guix-git/doc/guix.texi:33452 +#: guix-git/doc/guix.texi:33578 msgid "The Guix Build Coordinator package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33044 +#: guix-git/doc/guix.texi:33409 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33046 guix-git/doc/guix.texi:33090 -#: guix-git/doc/guix.texi:33216 guix-git/doc/guix.texi:33262 +#: guix-git/doc/guix.texi:33411 guix-git/doc/guix.texi:33455 +#: guix-git/doc/guix.texi:33581 guix-git/doc/guix.texi:33627 +#: guix-git/doc/guix.texi:33675 msgid "The system user to run the service as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33047 +#: guix-git/doc/guix.texi:33412 #, no-wrap msgid "@code{group} (default: @code{\"guix-build-coordinator\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33049 guix-git/doc/guix.texi:33265 +#: guix-git/doc/guix.texi:33414 guix-git/doc/guix.texi:33630 +#: guix-git/doc/guix.texi:33678 msgid "The system group to run the service as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33050 +#: guix-git/doc/guix.texi:33415 #, no-wrap msgid "@code{database-uri-string} (default: @code{\"sqlite:///var/lib/guix-build-coordinator/guix_build_coordinator.db\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33052 +#: guix-git/doc/guix.texi:33417 msgid "The URI to use for the database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33053 +#: guix-git/doc/guix.texi:33418 #, no-wrap msgid "@code{agent-communication-uri} (default: @code{\"http://0.0.0.0:8745\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33055 +#: guix-git/doc/guix.texi:33420 msgid "The URI describing how to listen to requests from agent processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33056 +#: guix-git/doc/guix.texi:33421 #, no-wrap msgid "@code{client-communication-uri} (default: @code{\"http://127.0.0.1:8746\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33060 +#: guix-git/doc/guix.texi:33425 msgid "The URI describing how to listen to requests from clients. The client API allows submitting builds and currently isn't authenticated, so take care when configuring this value." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33061 +#: guix-git/doc/guix.texi:33426 #, no-wrap msgid "@code{allocation-strategy} (default: @code{#~basic-build-allocation-strategy})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33065 +#: guix-git/doc/guix.texi:33430 msgid "A G-expression for the allocation strategy to be used. This is a procedure that takes the datastore as an argument and populates the allocation plan in the database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33066 +#: guix-git/doc/guix.texi:33431 #, no-wrap msgid "@code{hooks} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33069 +#: guix-git/doc/guix.texi:33434 msgid "An association list of hooks. These provide a way to execute arbitrary code upon certain events, like a build result being processed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33070 +#: guix-git/doc/guix.texi:33435 #, no-wrap msgid "@code{guile} (default: @code{guile-3.0-latest})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33072 +#: guix-git/doc/guix.texi:33437 msgid "The Guile package with which to run the Guix Build Coordinator." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33076 +#: guix-git/doc/guix.texi:33441 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-agent-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33079 +#: guix-git/doc/guix.texi:33444 msgid "Service type for a Guix Build Coordinator agent. Its value must be a @code{guix-build-coordinator-agent-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33081 +#: guix-git/doc/guix.texi:33446 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33083 +#: guix-git/doc/guix.texi:33448 msgid "Data type representing the configuration a Guix Build Coordinator agent." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33085 +#: guix-git/doc/guix.texi:33450 #, no-wrap msgid "@code{package} (default: @code{guix-build-coordinator/agent-only})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33088 +#: guix-git/doc/guix.texi:33453 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator-agent\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33091 +#: guix-git/doc/guix.texi:33456 #, no-wrap msgid "@code{coordinator} (default: @code{\"http://localhost:8745\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33093 guix-git/doc/guix.texi:33219 +#: guix-git/doc/guix.texi:33458 guix-git/doc/guix.texi:33584 msgid "The URI to use when connecting to the coordinator." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33094 +#: guix-git/doc/guix.texi:33459 #, fuzzy, no-wrap msgid "authentication" msgstr "Documentazione" #. type: table -#: guix-git/doc/guix.texi:33097 +#: guix-git/doc/guix.texi:33462 msgid "Record describing how this agent should authenticate with the coordinator. Possible record types are described below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33098 guix-git/doc/guix.texi:33220 +#: guix-git/doc/guix.texi:33463 guix-git/doc/guix.texi:33585 #, no-wrap msgid "@code{systems} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33101 +#: guix-git/doc/guix.texi:33466 msgid "The systems for which this agent should fetch builds. The agent process will use the current system it's running on as the default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33102 +#: guix-git/doc/guix.texi:33467 #, no-wrap msgid "@code{max-parallel-builds} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33104 +#: guix-git/doc/guix.texi:33469 msgid "The number of builds to perform in parallel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33105 +#: guix-git/doc/guix.texi:33470 #, no-wrap msgid "@code{max-1min-load-average} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33109 +#: guix-git/doc/guix.texi:33474 msgid "Load average value to look at when considering starting new builds, if the 1 minute load average exceeds this value, the agent will wait before starting new builds." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33113 +#: guix-git/doc/guix.texi:33478 msgid "This will be unspecified if the value is @code{#f}, and the agent will use the number of cores reported by the system as the max 1 minute load average." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33114 +#: guix-git/doc/guix.texi:33479 #, no-wrap msgid "@code{derivation-substitute-urls} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33117 +#: guix-git/doc/guix.texi:33482 msgid "URLs from which to attempt to fetch substitutes for derivations, if the derivations aren't already available." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33118 +#: guix-git/doc/guix.texi:33483 #, no-wrap msgid "@code{non-derivation-substitute-urls} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33121 +#: guix-git/doc/guix.texi:33486 msgid "URLs from which to attempt to fetch substitutes for build inputs, if the input store items aren't already available." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33125 +#: guix-git/doc/guix.texi:33490 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-password-auth" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33128 +#: guix-git/doc/guix.texi:33493 msgid "Data type representing an agent authenticating with a coordinator via a UUID and password." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33134 guix-git/doc/guix.texi:33150 +#: guix-git/doc/guix.texi:33499 guix-git/doc/guix.texi:33515 msgid "The UUID of the agent. This should be generated by the coordinator process, stored in the coordinator database, and used by the intended agent." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33137 +#: guix-git/doc/guix.texi:33502 msgid "The password to use when connecting to the coordinator." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33141 +#: guix-git/doc/guix.texi:33506 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-password-file-auth" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33144 +#: guix-git/doc/guix.texi:33509 msgid "Data type representing an agent authenticating with a coordinator via a UUID and password read from a file." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33151 +#: guix-git/doc/guix.texi:33516 #, no-wrap msgid "password-file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33154 +#: guix-git/doc/guix.texi:33519 msgid "A file containing the password to use when connecting to the coordinator." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33158 +#: guix-git/doc/guix.texi:33523 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-dynamic-auth" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33161 +#: guix-git/doc/guix.texi:33526 msgid "Data type representing an agent authenticating with a coordinator via a dynamic auth token and agent name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33163 guix-git/doc/guix.texi:33180 +#: guix-git/doc/guix.texi:33528 guix-git/doc/guix.texi:33545 #, fuzzy, no-wrap msgid "agent-name" msgstr "Canali" #. type: table -#: guix-git/doc/guix.texi:33167 guix-git/doc/guix.texi:33184 +#: guix-git/doc/guix.texi:33532 guix-git/doc/guix.texi:33549 msgid "Name of an agent, this is used to match up to an existing entry in the database if there is one. When no existing entry is found, a new entry is automatically added." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33168 +#: guix-git/doc/guix.texi:33533 #, no-wrap msgid "token" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33171 +#: guix-git/doc/guix.texi:33536 msgid "Dynamic auth token, this is created and stored in the coordinator database, and is used by the agent to authenticate." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33175 +#: guix-git/doc/guix.texi:33540 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-dynamic-auth-with-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33178 +#: guix-git/doc/guix.texi:33543 msgid "Data type representing an agent authenticating with a coordinator via a dynamic auth token read from a file and agent name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33185 +#: guix-git/doc/guix.texi:33550 #, no-wrap msgid "token-file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33188 +#: guix-git/doc/guix.texi:33553 msgid "File containing the dynamic auth token, this is created and stored in the coordinator database, and is used by the agent to authenticate." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33198 +#: guix-git/doc/guix.texi:33563 msgid "The Guix Build Coordinator package contains a script to query an instance of the Guix Data Service for derivations to build, and then submit builds for those derivations to the coordinator. The service type below assists in running this script. This is an additional tool that may be useful when building derivations contained within an instance of the Guix Data Service." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33199 +#: guix-git/doc/guix.texi:33564 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-queue-builds-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33204 +#: guix-git/doc/guix.texi:33569 msgid "Service type for the guix-build-coordinator-queue-builds-from-guix-data-service script. Its value must be a @code{guix-build-coordinator-queue-builds-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33206 +#: guix-git/doc/guix.texi:33571 #, no-wrap msgid "{Data Type} guix-build-coordinator-queue-builds-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33209 +#: guix-git/doc/guix.texi:33574 msgid "Data type representing the options to the queue builds from guix data service script." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33214 +#: guix-git/doc/guix.texi:33579 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator-queue-builds\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33217 +#: guix-git/doc/guix.texi:33582 #, no-wrap msgid "@code{coordinator} (default: @code{\"http://localhost:8746\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33222 +#: guix-git/doc/guix.texi:33587 msgid "The systems for which to fetch derivations to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33223 +#: guix-git/doc/guix.texi:33588 #, no-wrap msgid "@code{systems-and-targets} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33226 +#: guix-git/doc/guix.texi:33591 msgid "An association list of system and target pairs for which to fetch derivations to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33227 +#: guix-git/doc/guix.texi:33592 #, no-wrap msgid "@code{guix-data-service} (default: @code{\"https://data.guix.gnu.org\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33230 +#: guix-git/doc/guix.texi:33595 msgid "The Guix Data Service instance from which to query to find out about derivations to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33231 +#: guix-git/doc/guix.texi:33596 #, no-wrap msgid "@code{processed-commits-file} (default: @code{\"/var/cache/guix-build-coordinator-queue-builds/processed-commits\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33234 +#: guix-git/doc/guix.texi:33599 msgid "A file to record which commits have been processed, to avoid needlessly processing them again if the service is restarted." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33238 +#: guix-git/doc/guix.texi:33603 #, no-wrap msgid "Guix Data Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33242 +#: guix-git/doc/guix.texi:33607 msgid "The @uref{http://data.guix.gnu.org,Guix Data Service} processes, stores and provides data about GNU Guix. This includes information about packages, derivations and lint warnings." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33245 +#: guix-git/doc/guix.texi:33610 msgid "The data is stored in a PostgreSQL database, and available through a web interface." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33246 +#: guix-git/doc/guix.texi:33611 #, no-wrap msgid "{Scheme Variable} guix-data-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33251 +#: guix-git/doc/guix.texi:33616 msgid "Service type for the Guix Data Service. Its value must be a @code{guix-data-service-configuration} object. The service optionally extends the getmail service, as the guix-commits mailing list is used to find out about changes in the Guix git repository." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33253 +#: guix-git/doc/guix.texi:33618 #, no-wrap msgid "{Data Type} guix-data-service-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33255 +#: guix-git/doc/guix.texi:33620 guix-git/doc/guix.texi:33668 msgid "Data type representing the configuration of the Guix Data Service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33257 +#: guix-git/doc/guix.texi:33622 #, no-wrap msgid "@code{package} (default: @code{guix-data-service})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33259 +#: guix-git/doc/guix.texi:33624 msgid "The Guix Data Service package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33260 +#: guix-git/doc/guix.texi:33625 #, no-wrap msgid "@code{user} (default: @code{\"guix-data-service\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33263 +#: guix-git/doc/guix.texi:33628 #, no-wrap msgid "@code{group} (default: @code{\"guix-data-service\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33266 +#: guix-git/doc/guix.texi:33631 #, no-wrap msgid "@code{port} (default: @code{8765})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33268 +#: guix-git/doc/guix.texi:33633 msgid "The port to bind the web service to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33269 +#: guix-git/doc/guix.texi:33634 guix-git/doc/guix.texi:33682 #, no-wrap msgid "@code{host} (default: @code{\"127.0.0.1\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33271 +#: guix-git/doc/guix.texi:33636 msgid "The host to bind the web service to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33272 +#: guix-git/doc/guix.texi:33637 #, no-wrap msgid "@code{getmail-idle-mailboxes} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33275 +#: guix-git/doc/guix.texi:33640 msgid "If set, this is the list of mailboxes that the getmail service will be configured to listen to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33276 +#: guix-git/doc/guix.texi:33641 #, no-wrap msgid "@code{commits-getmail-retriever-configuration} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33280 +#: guix-git/doc/guix.texi:33645 msgid "If set, this is the @code{getmail-retriever-configuration} object with which to configure getmail to fetch mail from the guix-commits mailing list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33281 +#: guix-git/doc/guix.texi:33646 #, no-wrap msgid "@code{extra-options} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33283 +#: guix-git/doc/guix.texi:33648 msgid "Extra command line options for @code{guix-data-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33284 +#: guix-git/doc/guix.texi:33649 #, no-wrap msgid "@code{extra-process-jobs-options} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33286 +#: guix-git/doc/guix.texi:33651 msgid "Extra command line options for @code{guix-data-service-process-jobs}." msgstr "" +#. type: subsubheading +#: guix-git/doc/guix.texi:33655 +#, no-wrap +msgid "Nar Herder" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:33658 +msgid "The @uref{https://git.cbaines.net/guix/nar-herder/about/,Nar Herder} is a utility for managing a collection of nars." +msgstr "" + +#. type: defvar +#: guix-git/doc/guix.texi:33659 +#, no-wrap +msgid "{Scheme Variable} nar-herder-type" +msgstr "" + +#. type: defvar +#: guix-git/doc/guix.texi:33664 +msgid "Service type for the Guix Data Service. Its value must be a @code{nar-herder-configuration} object. The service optionally extends the getmail service, as the guix-commits mailing list is used to find out about changes in the Guix git repository." +msgstr "" + +#. type: deftp +#: guix-git/doc/guix.texi:33666 +#, no-wrap +msgid "{Data Type} nar-herder-configuration" +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33670 +#, no-wrap +msgid "@code{package} (default: @code{nar-herder})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33672 +msgid "The Nar Herder package to use." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33673 +#, no-wrap +msgid "@code{user} (default: @code{\"nar-herder\"})" +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33676 +#, no-wrap +msgid "@code{group} (default: @code{\"nar-herder\"})" +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33679 +#, no-wrap +msgid "@code{port} (default: @code{8734})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33684 +msgid "The host to bind the server to." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33689 +msgid "Optional URL of the other Nar Herder instance which should be mirrored. This means that this Nar Herder instance will download it's database, and keep it up to date." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33690 +#, no-wrap +msgid "@code{database} (default: @code{\"/var/lib/nar-herder/nar_herder.db\"})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33695 +msgid "Location for the database. If this Nar Herder instance is mirroring another, the database will be downloaded if it doesn't exist. If this Nar Herder instance isn't mirroring another, an empty database will be created." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33696 +#, no-wrap +msgid "@code{database-dump} (default: @code{\"/var/lib/nar-herder/nar_herder_dump.db\"})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33700 +msgid "Location of the database dump. This is created and regularly updated by taking a copy of the database. This is the version of the database that is available to download." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33701 +#, no-wrap +msgid "@code{storage} (default: @code{#f})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33703 +msgid "Optional location in which to store nars." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33704 +#, no-wrap +msgid "@code{storage-limit} (default: @code{\"none\"})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33707 +msgid "Limit in bytes for the nars stored in the storage location. This can also be set to ``none'' so that there is no limit." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33710 +msgid "When the storage location exceeds this size, nars are removed according to the nar removal criteria." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33711 +#, no-wrap +msgid "@code{storage-nar-removal-criteria} (default: @code{'()})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33714 +msgid "Criteria used to remove nars from the storage location. These are used in conjunction with the storage limit." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33719 +msgid "When the storage location exceeds the storage limit size, nars will be checked against the nar removal criteria and if any of the criteria match, they will be removed. This will continue until the storage location is below the storage limit size." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33723 +msgid "Each criteria is specified by a string, then an equals sign, then another string. Currently, only one criteria is supported, checking if a nar is stored on another Nar Herder instance." +msgstr "" + #. type: cindex -#: guix-git/doc/guix.texi:33293 +#: guix-git/doc/guix.texi:33730 #, no-wrap msgid "oom" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33294 +#: guix-git/doc/guix.texi:33731 #, no-wrap msgid "out of memory killer" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33295 +#: guix-git/doc/guix.texi:33732 #, no-wrap msgid "earlyoom" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33296 +#: guix-git/doc/guix.texi:33733 #, no-wrap msgid "early out of memory daemon" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33297 +#: guix-git/doc/guix.texi:33734 #, no-wrap msgid "Early OOM Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33304 +#: guix-git/doc/guix.texi:33741 msgid "@uref{https://github.com/rfjakob/earlyoom,Early OOM}, also known as Earlyoom, is a minimalist out of memory (OOM) daemon that runs in user space and provides a more responsive and configurable alternative to the in-kernel OOM killer. It is useful to prevent the system from becoming unresponsive when it runs out of memory." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33305 +#: guix-git/doc/guix.texi:33742 #, no-wrap msgid "{Scheme Variable} earlyoom-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33310 +#: guix-git/doc/guix.texi:33747 msgid "The service type for running @command{earlyoom}, the Early OOM daemon. Its value must be a @code{earlyoom-configuration} object, described below. The service can be instantiated in its default configuration with:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33313 +#: guix-git/doc/guix.texi:33750 #, no-wrap msgid "(service earlyoom-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33316 +#: guix-git/doc/guix.texi:33753 #, no-wrap msgid "{Data Type} earlyoom-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33318 +#: guix-git/doc/guix.texi:33755 msgid "This is the configuration record for the @code{earlyoom-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33320 +#: guix-git/doc/guix.texi:33757 #, no-wrap msgid "@code{earlyoom} (default: @var{earlyoom})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33322 +#: guix-git/doc/guix.texi:33759 msgid "The Earlyoom package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33323 +#: guix-git/doc/guix.texi:33760 #, no-wrap msgid "@code{minimum-available-memory} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33325 +#: guix-git/doc/guix.texi:33762 msgid "The threshold for the minimum @emph{available} memory, in percentages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33326 +#: guix-git/doc/guix.texi:33763 #, no-wrap msgid "@code{minimum-free-swap} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33328 +#: guix-git/doc/guix.texi:33765 msgid "The threshold for the minimum free swap memory, in percentages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33329 +#: guix-git/doc/guix.texi:33766 #, no-wrap msgid "@code{prefer-regexp} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33332 +#: guix-git/doc/guix.texi:33769 msgid "A regular expression (as a string) to match the names of the processes that should be preferably killed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33333 +#: guix-git/doc/guix.texi:33770 #, no-wrap msgid "@code{avoid-regexp} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33336 +#: guix-git/doc/guix.texi:33773 msgid "A regular expression (as a string) to match the names of the processes that should @emph{not} be killed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33337 +#: guix-git/doc/guix.texi:33774 #, no-wrap msgid "@code{memory-report-interval} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33340 +#: guix-git/doc/guix.texi:33777 msgid "The interval in seconds at which a memory report is printed. It is disabled by default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33341 +#: guix-git/doc/guix.texi:33778 #, no-wrap msgid "@code{ignore-positive-oom-score-adj?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33344 +#: guix-git/doc/guix.texi:33781 msgid "A boolean indicating whether the positive adjustments set in @file{/proc/*/oom_score_adj} should be ignored." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33345 +#: guix-git/doc/guix.texi:33782 #, no-wrap msgid "@code{show-debug-messages?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33348 +#: guix-git/doc/guix.texi:33785 msgid "A boolean indicating whether debug messages should be printed. The logs are saved at @file{/var/log/earlyoom.log}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33349 +#: guix-git/doc/guix.texi:33786 #, no-wrap msgid "@code{send-notification-command} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33352 +#: guix-git/doc/guix.texi:33789 msgid "This can be used to provide a custom command used for sending notifications." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33355 +#: guix-git/doc/guix.texi:33792 #, no-wrap msgid "modprobe" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33356 +#: guix-git/doc/guix.texi:33793 #, no-wrap msgid "kernel module loader" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33357 +#: guix-git/doc/guix.texi:33794 #, no-wrap msgid "Kernel Module Loader Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33363 +#: guix-git/doc/guix.texi:33800 msgid "The kernel module loader service allows one to load loadable kernel modules at boot. This is especially useful for modules that don't autoload and need to be manually loaded, as is the case with @code{ddcci}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33364 +#: guix-git/doc/guix.texi:33801 #, no-wrap msgid "{Scheme Variable} kernel-module-loader-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33370 +#: guix-git/doc/guix.texi:33807 msgid "The service type for loading loadable kernel modules at boot with @command{modprobe}. Its value must be a list of strings representing module names. For example loading the drivers provided by @code{ddcci-driver-linux}, in debugging mode by passing some module parameters, can be done as follow:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33375 +#: guix-git/doc/guix.texi:33812 #, no-wrap msgid "" "(use-modules (gnu) (gnu services))\n" @@ -59500,7 +60308,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33379 +#: guix-git/doc/guix.texi:33816 #, no-wrap msgid "" "(define ddcci-config\n" @@ -59510,7 +60318,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33389 +#: guix-git/doc/guix.texi:33826 #, no-wrap msgid "" "(operating-system\n" @@ -59525,411 +60333,411 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33392 +#: guix-git/doc/guix.texi:33829 #, no-wrap msgid "rasdaemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33393 +#: guix-git/doc/guix.texi:33830 #, no-wrap msgid "Platform Reliability, Availability and Serviceability daemon" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33394 +#: guix-git/doc/guix.texi:33831 #, no-wrap msgid "Rasdaemon Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33399 +#: guix-git/doc/guix.texi:33836 msgid "The Rasdaemon service provides a daemon which monitors platform @acronym{RAS, Reliability@comma{} Availability@comma{} and Serviceability} reports from Linux kernel trace events, logging them to syslogd." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33402 +#: guix-git/doc/guix.texi:33839 msgid "Reliability, Availability and Serviceability is a concept used on servers meant to measure their robustness." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33405 +#: guix-git/doc/guix.texi:33842 msgid "@strong{Relability} is the probability that a system will produce correct outputs:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33407 +#: guix-git/doc/guix.texi:33844 #, no-wrap msgid "Generally measured as Mean Time Between Failures (MTBF), and" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33408 +#: guix-git/doc/guix.texi:33845 #, no-wrap msgid "Enhanced by features that help to avoid, detect and repair hardware" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:33410 +#: guix-git/doc/guix.texi:33847 msgid "faults" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33414 +#: guix-git/doc/guix.texi:33851 msgid "@strong{Availability} is the probability that a system is operational at a given time:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33416 +#: guix-git/doc/guix.texi:33853 #, no-wrap msgid "Generally measured as a percentage of downtime per a period of time, and" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33417 +#: guix-git/doc/guix.texi:33854 #, no-wrap msgid "Often uses mechanisms to detect and correct hardware faults in runtime." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33422 +#: guix-git/doc/guix.texi:33859 msgid "@strong{Serviceability} is the simplicity and speed with which a system can be repaired or maintained:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33424 +#: guix-git/doc/guix.texi:33861 #, no-wrap msgid "Generally measured on Mean Time Between Repair (MTBR)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33429 +#: guix-git/doc/guix.texi:33866 msgid "Among the monitoring measures, the most usual ones include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33431 +#: guix-git/doc/guix.texi:33868 #, no-wrap msgid "CPU – detect errors at instruction execution and at L1/L2/L3 caches;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33432 +#: guix-git/doc/guix.texi:33869 #, no-wrap msgid "Memory – add error correction logic (ECC) to detect and correct errors;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33433 +#: guix-git/doc/guix.texi:33870 #, no-wrap msgid "I/O – add CRC checksums for transferred data;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33434 +#: guix-git/doc/guix.texi:33871 #, no-wrap msgid "Storage – RAID, journal file systems, checksums, Self-Monitoring," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:33436 +#: guix-git/doc/guix.texi:33873 msgid "Analysis and Reporting Technology (SMART)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33442 +#: guix-git/doc/guix.texi:33879 msgid "By monitoring the number of occurrences of error detections, it is possible to identify if the probability of hardware errors is increasing, and, on such case, do a preventive maintenance to replace a degraded component while those errors are correctable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33446 +#: guix-git/doc/guix.texi:33883 msgid "For detailed information about the types of error events gathered and how to make sense of them, see the kernel administrator's guide at @url{https://www.kernel.org/doc/html/latest/admin-guide/ras.html}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33447 +#: guix-git/doc/guix.texi:33884 #, no-wrap msgid "{Scheme Variable} rasdaemon-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33450 +#: guix-git/doc/guix.texi:33887 msgid "Service type for the @command{rasdaemon} service. It accepts a @code{rasdaemon-configuration} object. Instantiating like" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33453 +#: guix-git/doc/guix.texi:33890 #, no-wrap msgid "(service rasdaemon-service-type)\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33457 +#: guix-git/doc/guix.texi:33894 msgid "will load with a default configuration, which monitors all events and logs to syslogd." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33459 +#: guix-git/doc/guix.texi:33896 #, no-wrap msgid "{Data Type} rasdaemon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33461 +#: guix-git/doc/guix.texi:33898 msgid "The data type representing the configuration of @command{rasdaemon}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33463 +#: guix-git/doc/guix.texi:33900 #, no-wrap msgid "@code{record?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33468 +#: guix-git/doc/guix.texi:33905 msgid "A boolean indicating whether to record the events in an SQLite database. This provides a more structured access to the information contained in the log file. The database location is hard-coded to @file{/var/lib/rasdaemon/ras-mc_event.db}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33472 +#: guix-git/doc/guix.texi:33909 #, no-wrap msgid "zram" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33473 +#: guix-git/doc/guix.texi:33910 #, no-wrap msgid "compressed swap" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33474 +#: guix-git/doc/guix.texi:33911 #, no-wrap msgid "Compressed RAM-based block devices" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33475 +#: guix-git/doc/guix.texi:33912 #, no-wrap msgid "Zram Device Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33481 +#: guix-git/doc/guix.texi:33918 msgid "The Zram device service provides a compressed swap device in system memory. The Linux Kernel documentation has more information about @uref{https://www.kernel.org/doc/html/latest/admin-guide/blockdev/zram.html,zram} devices." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33482 +#: guix-git/doc/guix.texi:33919 #, no-wrap msgid "{Scheme Variable} zram-device-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33486 +#: guix-git/doc/guix.texi:33923 msgid "This service creates the zram block device, formats it as swap and enables it as a swap device. The service's value is a @code{zram-device-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33487 +#: guix-git/doc/guix.texi:33924 #, no-wrap msgid "{Data Type} zram-device-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33490 +#: guix-git/doc/guix.texi:33927 msgid "This is the data type representing the configuration for the zram-device service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33492 +#: guix-git/doc/guix.texi:33929 #, no-wrap msgid "@code{size} (default @code{\"1G\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33496 +#: guix-git/doc/guix.texi:33933 msgid "This is the amount of space you wish to provide for the zram device. It accepts a string and can be a number of bytes or use a suffix, eg.: @code{\"512M\"} or @code{1024000}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33496 +#: guix-git/doc/guix.texi:33933 #, no-wrap msgid "@code{compression-algorithm} (default @code{'lzo})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:33937 msgid "This is the compression algorithm you wish to use. It is difficult to list all the possible compression options, but common ones supported by Guix's Linux Libre Kernel include @code{'lzo}, @code{'lz4} and @code{'zstd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:33937 #, no-wrap msgid "@code{memory-limit} (default @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33507 +#: guix-git/doc/guix.texi:33944 msgid "This is the maximum amount of memory which the zram device can use. Setting it to '0' disables the limit. While it is generally expected that compression will be 2:1, it is possible that uncompressable data can be written to swap and this is a method to limit how much memory can be used. It accepts a string and can be a number of bytes or use a suffix, eg.: @code{\"2G\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33507 +#: guix-git/doc/guix.texi:33944 #, no-wrap msgid "@code{priority} (default @code{-1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33512 +#: guix-git/doc/guix.texi:33949 msgid "This is the priority of the swap device created from the zram device. @code{swapon} accepts values between -1 and 32767, with higher values indicating higher priority. Higher priority swap will generally be used first." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33520 +#: guix-git/doc/guix.texi:33957 #, no-wrap msgid "{Scheme Variable} hurd-console-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33522 +#: guix-git/doc/guix.texi:33959 msgid "This service starts the fancy @code{VGA} console client on the Hurd." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33524 +#: guix-git/doc/guix.texi:33961 msgid "The service's value is a @code{hurd-console-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33526 +#: guix-git/doc/guix.texi:33963 #, no-wrap msgid "{Data Type} hurd-console-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33529 +#: guix-git/doc/guix.texi:33966 msgid "This is the data type representing the configuration for the hurd-console-service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33531 guix-git/doc/guix.texi:33547 +#: guix-git/doc/guix.texi:33968 guix-git/doc/guix.texi:33984 #, no-wrap msgid "@code{hurd} (default: @var{hurd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33533 guix-git/doc/guix.texi:33549 +#: guix-git/doc/guix.texi:33970 guix-git/doc/guix.texi:33986 msgid "The Hurd package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33536 +#: guix-git/doc/guix.texi:33973 #, no-wrap msgid "{Scheme Variable} hurd-getty-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33538 +#: guix-git/doc/guix.texi:33975 msgid "This service starts a tty using the Hurd @code{getty} program." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33540 +#: guix-git/doc/guix.texi:33977 msgid "The service's value is a @code{hurd-getty-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33542 +#: guix-git/doc/guix.texi:33979 #, no-wrap msgid "{Data Type} hurd-getty-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33545 +#: guix-git/doc/guix.texi:33982 msgid "This is the data type representing the configuration for the hurd-getty-service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33552 +#: guix-git/doc/guix.texi:33989 msgid "The name of the console this Getty runs on---e.g., @code{\"tty1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33553 +#: guix-git/doc/guix.texi:33990 #, no-wrap msgid "@code{baud-rate} (default: @code{38400})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33555 +#: guix-git/doc/guix.texi:33992 msgid "An integer specifying the baud rate of the tty." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33562 +#: guix-git/doc/guix.texi:33999 #, no-wrap msgid "fingerprint" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33563 +#: guix-git/doc/guix.texi:34000 #, no-wrap msgid "Fingerprint Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33567 +#: guix-git/doc/guix.texi:34004 msgid "The @code{(gnu services authentication)} module provides a DBus service to read and identify fingerprints via a fingerprint sensor." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33568 +#: guix-git/doc/guix.texi:34005 #, no-wrap msgid "{Scheme Variable} fprintd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33571 +#: guix-git/doc/guix.texi:34008 msgid "The service type for @command{fprintd}, which provides the fingerprint reading capability." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33574 +#: guix-git/doc/guix.texi:34011 #, no-wrap msgid "(service fprintd-service-type)\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33577 +#: guix-git/doc/guix.texi:34014 #, no-wrap msgid "sysctl" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33578 +#: guix-git/doc/guix.texi:34015 #, no-wrap msgid "System Control Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33582 +#: guix-git/doc/guix.texi:34019 msgid "The @code{(gnu services sysctl)} provides a service to configure kernel parameters at boot." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33583 +#: guix-git/doc/guix.texi:34020 #, no-wrap msgid "{Scheme Variable} sysctl-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33587 +#: guix-git/doc/guix.texi:34024 msgid "The service type for @command{sysctl}, which modifies kernel parameters under @file{/proc/sys/}. To enable IPv4 forwarding, it can be instantiated as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33592 +#: guix-git/doc/guix.texi:34029 #, no-wrap msgid "" "(service sysctl-service-type\n" @@ -59938,12 +60746,12 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33599 +#: guix-git/doc/guix.texi:34036 msgid "Since @code{sysctl-service-type} is used in the default lists of services, @code{%base-services} and @code{%desktop-services}, you can use @code{modify-services} to change its configuration and add the kernel parameters that you want (@pxref{Service Reference, @code{modify-services}})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33606 +#: guix-git/doc/guix.texi:34043 #, no-wrap msgid "" "(modify-services %base-services\n" @@ -59954,463 +60762,463 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33610 +#: guix-git/doc/guix.texi:34047 #, no-wrap msgid "{Data Type} sysctl-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33612 +#: guix-git/doc/guix.texi:34049 msgid "The data type representing the configuration of @command{sysctl}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33614 +#: guix-git/doc/guix.texi:34051 #, no-wrap msgid "@code{sysctl} (default: @code{(file-append procps \"/sbin/sysctl\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33616 +#: guix-git/doc/guix.texi:34053 msgid "The @command{sysctl} executable to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33617 +#: guix-git/doc/guix.texi:34054 #, no-wrap msgid "@code{settings} (default: @code{%default-sysctl-settings})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33619 +#: guix-git/doc/guix.texi:34056 msgid "An association list specifies kernel parameters and their values." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33622 +#: guix-git/doc/guix.texi:34059 #, no-wrap msgid "{Scheme Variable} %default-sysctl-settings" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33625 +#: guix-git/doc/guix.texi:34062 msgid "An association list specifying the default @command{sysctl} parameters on Guix System." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33627 +#: guix-git/doc/guix.texi:34064 #, no-wrap msgid "pcscd" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33628 +#: guix-git/doc/guix.texi:34065 #, no-wrap msgid "PC/SC Smart Card Daemon Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33635 +#: guix-git/doc/guix.texi:34072 msgid "The @code{(gnu services security-token)} module provides the following service to run @command{pcscd}, the PC/SC Smart Card Daemon. @command{pcscd} is the daemon program for pcsc-lite and the MuscleCard framework. It is a resource manager that coordinates communications with smart card readers, smart cards and cryptographic tokens that are connected to the system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33636 +#: guix-git/doc/guix.texi:34073 #, no-wrap msgid "{Scheme Variable} pcscd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33640 +#: guix-git/doc/guix.texi:34077 msgid "Service type for the @command{pcscd} service. Its value must be a @code{pcscd-configuration} object. To run pcscd in the default configuration, instantiate it as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33643 +#: guix-git/doc/guix.texi:34080 #, no-wrap msgid "(service pcscd-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33646 +#: guix-git/doc/guix.texi:34083 #, no-wrap msgid "{Data Type} pcscd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33648 +#: guix-git/doc/guix.texi:34085 msgid "The data type representing the configuration of @command{pcscd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33650 +#: guix-git/doc/guix.texi:34087 #, no-wrap msgid "@code{pcsc-lite} (default: @code{pcsc-lite})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33652 +#: guix-git/doc/guix.texi:34089 msgid "The pcsc-lite package that provides pcscd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33652 +#: guix-git/doc/guix.texi:34089 #, no-wrap msgid "@code{usb-drivers} (default: @code{(list ccid)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33655 +#: guix-git/doc/guix.texi:34092 msgid "List of packages that provide USB drivers to pcscd. Drivers are expected to be under @file{pcsc/drivers} in the store directory of the package." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33658 +#: guix-git/doc/guix.texi:34095 #, no-wrap msgid "lirc" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33659 +#: guix-git/doc/guix.texi:34096 #, no-wrap msgid "Lirc Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33662 +#: guix-git/doc/guix.texi:34099 msgid "The @code{(gnu services lirc)} module provides the following service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33663 +#: guix-git/doc/guix.texi:34100 #, no-wrap msgid "{Scheme Procedure} lirc-service [#:lirc lirc] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33668 +#: guix-git/doc/guix.texi:34105 msgid "[#:device #f] [#:driver #f] [#:config-file #f] @ [#:extra-options '()] Return a service that runs @url{http://www.lirc.org,LIRC}, a daemon that decodes infrared signals from remote controls." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33672 +#: guix-git/doc/guix.texi:34109 msgid "Optionally, @var{device}, @var{driver} and @var{config-file} (configuration file name) may be specified. See @command{lircd} manual for details." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33675 +#: guix-git/doc/guix.texi:34112 msgid "Finally, @var{extra-options} is a list of additional command-line options passed to @command{lircd}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33677 +#: guix-git/doc/guix.texi:34114 #, no-wrap msgid "spice" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33678 +#: guix-git/doc/guix.texi:34115 #, no-wrap msgid "Spice Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33681 +#: guix-git/doc/guix.texi:34118 msgid "The @code{(gnu services spice)} module provides the following service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33682 +#: guix-git/doc/guix.texi:34119 #, no-wrap msgid "{Scheme Procedure} spice-vdagent-service [#:spice-vdagent]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33686 +#: guix-git/doc/guix.texi:34123 msgid "Returns a service that runs @url{https://www.spice-space.org,VDAGENT}, a daemon that enables sharing the clipboard with a vm and setting the guest display resolution when the graphical console window resizes." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33688 +#: guix-git/doc/guix.texi:34125 #, no-wrap msgid "inputattach" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33689 +#: guix-git/doc/guix.texi:34126 #, no-wrap msgid "inputattach Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33691 +#: guix-git/doc/guix.texi:34128 #, no-wrap msgid "tablet input, for Xorg" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33692 +#: guix-git/doc/guix.texi:34129 #, no-wrap msgid "touchscreen input, for Xorg" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33696 +#: guix-git/doc/guix.texi:34133 msgid "The @uref{https://linuxwacom.github.io/, inputattach} service allows you to use input devices such as Wacom tablets, touchscreens, or joysticks with the Xorg display server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33697 +#: guix-git/doc/guix.texi:34134 #, no-wrap msgid "{Scheme Variable} inputattach-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33700 +#: guix-git/doc/guix.texi:34137 msgid "Type of a service that runs @command{inputattach} on a device and dispatches events from it." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33702 +#: guix-git/doc/guix.texi:34139 #, no-wrap msgid "{Data Type} inputattach-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33704 +#: guix-git/doc/guix.texi:34141 #, no-wrap msgid "@code{device-type} (default: @code{\"wacom\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33707 +#: guix-git/doc/guix.texi:34144 msgid "The type of device to connect to. Run @command{inputattach --help}, from the @code{inputattach} package, to see the list of supported device types." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33708 +#: guix-git/doc/guix.texi:34145 #, no-wrap msgid "@code{device} (default: @code{\"/dev/ttyS0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33710 +#: guix-git/doc/guix.texi:34147 msgid "The device file to connect to the device." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33714 +#: guix-git/doc/guix.texi:34151 msgid "Baud rate to use for the serial connection. Should be a number or @code{#f}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33715 +#: guix-git/doc/guix.texi:34152 #, no-wrap msgid "@code{log-file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33717 +#: guix-git/doc/guix.texi:34154 msgid "If true, this must be the name of a file to log messages to." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33720 +#: guix-git/doc/guix.texi:34157 #, no-wrap msgid "Dictionary Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33721 +#: guix-git/doc/guix.texi:34158 #, no-wrap msgid "dictionary" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33723 +#: guix-git/doc/guix.texi:34160 msgid "The @code{(gnu services dict)} module provides the following service:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33724 +#: guix-git/doc/guix.texi:34161 #, no-wrap msgid "{Scheme Variable} dicod-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33727 +#: guix-git/doc/guix.texi:34164 msgid "This is the type of the service that runs the @command{dicod} daemon, an implementation of DICT server (@pxref{Dicod,,, dico, GNU Dico Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33729 +#: guix-git/doc/guix.texi:34166 #, no-wrap msgid "{Scheme Procedure} dicod-service [#:config (dicod-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33732 +#: guix-git/doc/guix.texi:34169 msgid "Return a service that runs the @command{dicod} daemon, an implementation of DICT server (@pxref{Dicod,,, dico, GNU Dico Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33736 +#: guix-git/doc/guix.texi:34173 msgid "The optional @var{config} argument specifies the configuration for @command{dicod}, which should be a @code{} object, by default it serves the GNU Collaborative International Dictionary of English." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33740 +#: guix-git/doc/guix.texi:34177 msgid "You can add @command{open localhost} to your @file{~/.dico} file to make @code{localhost} the default server for @command{dico} client (@pxref{Initialization File,,, dico, GNU Dico Manual})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33742 +#: guix-git/doc/guix.texi:34179 #, no-wrap msgid "{Data Type} dicod-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33744 +#: guix-git/doc/guix.texi:34181 msgid "Data type representing the configuration of dicod." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33746 +#: guix-git/doc/guix.texi:34183 #, no-wrap msgid "@code{dico} (default: @var{dico})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33748 +#: guix-git/doc/guix.texi:34185 msgid "Package object of the GNU Dico dictionary server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33749 +#: guix-git/doc/guix.texi:34186 #, no-wrap msgid "@code{interfaces} (default: @var{'(\"localhost\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33753 +#: guix-git/doc/guix.texi:34190 msgid "This is the list of IP addresses and ports and possibly socket file names to listen to (@pxref{Server Settings, @code{listen} directive,, dico, GNU Dico Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33754 +#: guix-git/doc/guix.texi:34191 #, no-wrap msgid "@code{handlers} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33756 +#: guix-git/doc/guix.texi:34193 msgid "List of @code{} objects denoting handlers (module instances)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33757 +#: guix-git/doc/guix.texi:34194 #, no-wrap msgid "@code{databases} (default: @var{(list %dicod-database:gcide)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33759 +#: guix-git/doc/guix.texi:34196 msgid "List of @code{} objects denoting dictionaries to be served." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33762 +#: guix-git/doc/guix.texi:34199 #, no-wrap msgid "{Data Type} dicod-handler" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33764 +#: guix-git/doc/guix.texi:34201 msgid "Data type representing a dictionary handler (module instance)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33768 +#: guix-git/doc/guix.texi:34205 msgid "Name of the handler (module instance)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33769 +#: guix-git/doc/guix.texi:34206 #, no-wrap msgid "@code{module} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33773 +#: guix-git/doc/guix.texi:34210 msgid "Name of the dicod module of the handler (instance). If it is @code{#f}, the module has the same name as the handler. (@pxref{Modules,,, dico, GNU Dico Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33776 +#: guix-git/doc/guix.texi:34213 msgid "List of strings or gexps representing the arguments for the module handler" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33779 +#: guix-git/doc/guix.texi:34216 #, no-wrap msgid "{Data Type} dicod-database" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33781 +#: guix-git/doc/guix.texi:34218 msgid "Data type representing a dictionary database." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33785 +#: guix-git/doc/guix.texi:34222 msgid "Name of the database, will be used in DICT commands." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33786 +#: guix-git/doc/guix.texi:34223 #, no-wrap msgid "handler" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33789 +#: guix-git/doc/guix.texi:34226 msgid "Name of the dicod handler (module instance) used by this database (@pxref{Handlers,,, dico, GNU Dico Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33790 +#: guix-git/doc/guix.texi:34227 #, no-wrap msgid "@code{complex?} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33793 +#: guix-git/doc/guix.texi:34230 msgid "Whether the database configuration complex. The complex configuration will need a corresponding @code{} object, otherwise not." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33797 +#: guix-git/doc/guix.texi:34234 msgid "List of strings or gexps representing the arguments for the database (@pxref{Databases,,, dico, GNU Dico Manual})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33800 +#: guix-git/doc/guix.texi:34237 #, no-wrap msgid "{Scheme Variable} %dicod-database:gcide" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33803 +#: guix-git/doc/guix.texi:34240 msgid "A @code{} object serving the GNU Collaborative International Dictionary of English using the @code{gcide} package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33806 +#: guix-git/doc/guix.texi:34243 msgid "The following is an example @code{dicod-service} configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33821 +#: guix-git/doc/guix.texi:34258 #, no-wrap msgid "" "(dicod-service #:config\n" @@ -60429,139 +61237,139 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33823 +#: guix-git/doc/guix.texi:34260 #, no-wrap msgid "Docker" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33824 +#: guix-git/doc/guix.texi:34261 #, no-wrap msgid "Docker Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33827 +#: guix-git/doc/guix.texi:34264 msgid "The @code{(gnu services docker)} module provides the following services." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33828 +#: guix-git/doc/guix.texi:34265 #, no-wrap msgid "{Scheme Variable} docker-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33833 +#: guix-git/doc/guix.texi:34270 msgid "This is the type of the service that runs @url{https://www.docker.com,Docker}, a daemon that can execute application bundles (sometimes referred to as ``containers'') in isolated environments." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33836 +#: guix-git/doc/guix.texi:34273 #, no-wrap msgid "{Data Type} docker-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33838 +#: guix-git/doc/guix.texi:34275 msgid "This is the data type representing the configuration of Docker and Containerd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33841 +#: guix-git/doc/guix.texi:34278 #, no-wrap msgid "@code{docker} (default: @code{docker})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33843 +#: guix-git/doc/guix.texi:34280 msgid "The Docker daemon package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33844 +#: guix-git/doc/guix.texi:34281 #, no-wrap msgid "@code{docker-cli} (default: @code{docker-cli})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33846 +#: guix-git/doc/guix.texi:34283 msgid "The Docker client package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33847 +#: guix-git/doc/guix.texi:34284 #, no-wrap msgid "@code{containerd} (default: @var{containerd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33849 +#: guix-git/doc/guix.texi:34286 msgid "The Containerd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33850 +#: guix-git/doc/guix.texi:34287 #, no-wrap msgid "@code{proxy} (default @var{docker-libnetwork-cmd-proxy})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33852 +#: guix-git/doc/guix.texi:34289 msgid "The Docker user-land networking proxy package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33853 +#: guix-git/doc/guix.texi:34290 #, no-wrap msgid "@code{enable-proxy?} (default @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33855 +#: guix-git/doc/guix.texi:34292 msgid "Enable or disable the use of the Docker user-land networking proxy." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33856 +#: guix-git/doc/guix.texi:34293 #, no-wrap msgid "@code{debug?} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33858 +#: guix-git/doc/guix.texi:34295 msgid "Enable or disable debug output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33859 +#: guix-git/doc/guix.texi:34296 #, no-wrap msgid "@code{enable-iptables?} (default @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33861 +#: guix-git/doc/guix.texi:34298 msgid "Enable or disable the addition of iptables rules." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33862 +#: guix-git/doc/guix.texi:34299 #, no-wrap msgid "@code{environment-variables} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33864 +#: guix-git/doc/guix.texi:34301 msgid "List of environment variables to set for @command{dockerd}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33867 +#: guix-git/doc/guix.texi:34304 msgid "This must be a list of strings where each string has the form @samp{@var{key}=@var{value}} as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33871 +#: guix-git/doc/guix.texi:34308 #, no-wrap msgid "" "(list \"LANGUAGE=eo:ca:eu\"\n" @@ -60569,196 +61377,196 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33876 +#: guix-git/doc/guix.texi:34313 #, no-wrap msgid "Singularity, container service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33877 +#: guix-git/doc/guix.texi:34314 #, no-wrap msgid "{Scheme Variable} singularity-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33882 +#: guix-git/doc/guix.texi:34319 msgid "This is the type of the service that allows you to run @url{https://www.sylabs.io/singularity/, Singularity}, a Docker-style tool to create and run application bundles (aka. ``containers''). The value for this service is the Singularity package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33886 +#: guix-git/doc/guix.texi:34323 msgid "The service does not install a daemon; instead, it installs helper programs as setuid-root (@pxref{Setuid Programs}) such that unprivileged users can invoke @command{singularity run} and similar commands." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33888 +#: guix-git/doc/guix.texi:34325 #, no-wrap msgid "Audit" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33889 +#: guix-git/doc/guix.texi:34326 #, no-wrap msgid "Auditd Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33892 +#: guix-git/doc/guix.texi:34329 msgid "The @code{(gnu services auditd)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33893 +#: guix-git/doc/guix.texi:34330 #, no-wrap msgid "{Scheme Variable} auditd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33898 +#: guix-git/doc/guix.texi:34335 msgid "This is the type of the service that runs @url{https://people.redhat.com/sgrubb/audit/,auditd}, a daemon that tracks security-relevant information on your system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33900 +#: guix-git/doc/guix.texi:34337 msgid "Examples of things that can be tracked:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33904 +#: guix-git/doc/guix.texi:34341 msgid "File accesses" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33906 +#: guix-git/doc/guix.texi:34343 msgid "System calls" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33908 +#: guix-git/doc/guix.texi:34345 msgid "Invoked commands" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33910 +#: guix-git/doc/guix.texi:34347 msgid "Failed login attempts" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33912 +#: guix-git/doc/guix.texi:34349 msgid "Firewall filtering" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33914 +#: guix-git/doc/guix.texi:34351 msgid "Network access" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33925 +#: guix-git/doc/guix.texi:34362 msgid "@command{auditctl} from the @code{audit} package can be used in order to add or remove events to be tracked (until the next reboot). In order to permanently track events, put the command line arguments of auditctl into a file called @code{audit.rules} in the configuration directory (see below). @command{aureport} from the @code{audit} package can be used in order to view a report of all recorded events. The audit daemon by default logs into the file @file{/var/log/audit.log}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33928 +#: guix-git/doc/guix.texi:34365 #, no-wrap msgid "{Data Type} auditd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33930 +#: guix-git/doc/guix.texi:34367 msgid "This is the data type representing the configuration of auditd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33933 +#: guix-git/doc/guix.texi:34370 #, no-wrap msgid "@code{audit} (default: @code{audit})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33935 +#: guix-git/doc/guix.texi:34372 msgid "The audit package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33936 +#: guix-git/doc/guix.texi:34373 #, no-wrap msgid "@code{configuration-directory} (default: @code{%default-auditd-configuration-directory})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33940 +#: guix-git/doc/guix.texi:34377 msgid "The directory containing the configuration file for the audit package, which must be named @code{auditd.conf}, and optionally some audit rules to instantiate on startup." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33944 +#: guix-git/doc/guix.texi:34381 #, no-wrap msgid "rshiny" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33945 +#: guix-git/doc/guix.texi:34382 #, no-wrap msgid "R-Shiny service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33948 +#: guix-git/doc/guix.texi:34385 msgid "The @code{(gnu services science)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33949 +#: guix-git/doc/guix.texi:34386 #, no-wrap msgid "{Scheme Variable} rshiny-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33954 +#: guix-git/doc/guix.texi:34391 msgid "This is a type of service which is used to run a webapp created with @code{r-shiny}. This service sets the @env{R_LIBS_USER} environment variable and runs the provided script to call @code{runApp}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33955 +#: guix-git/doc/guix.texi:34392 #, no-wrap msgid "{Data Type} rshiny-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33957 +#: guix-git/doc/guix.texi:34394 msgid "This is the data type representing the configuration of rshiny." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33960 +#: guix-git/doc/guix.texi:34397 #, no-wrap msgid "@code{package} (default: @code{r-shiny})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33962 +#: guix-git/doc/guix.texi:34399 msgid "The package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33963 +#: guix-git/doc/guix.texi:34400 #, no-wrap msgid "@code{binary} (defaunlt @code{\"rshiny\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33966 +#: guix-git/doc/guix.texi:34403 msgid "The name of the binary or shell script located at @code{package/bin/} to run when the service is run." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33968 +#: guix-git/doc/guix.texi:34405 msgid "The common way to create this file is as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33985 +#: guix-git/doc/guix.texi:34422 #, no-wrap msgid "" "@dots{}\n" @@ -60779,35 +61587,35 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33991 +#: guix-git/doc/guix.texi:34428 #, no-wrap msgid "Nix" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33992 +#: guix-git/doc/guix.texi:34429 #, no-wrap msgid "Nix service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33995 +#: guix-git/doc/guix.texi:34432 msgid "The @code{(gnu services nix)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33996 +#: guix-git/doc/guix.texi:34433 #, no-wrap msgid "{Scheme Variable} nix-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34001 +#: guix-git/doc/guix.texi:34438 msgid "This is the type of the service that runs build daemon of the @url{https://nixos.org/nix/, Nix} package manager. Here is an example showing how to use it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34006 +#: guix-git/doc/guix.texi:34443 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -60817,7 +61625,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34011 +#: guix-git/doc/guix.texi:34448 #, no-wrap msgid "" "(operating-system\n" @@ -60828,7 +61636,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34014 +#: guix-git/doc/guix.texi:34451 #, no-wrap msgid "" " (services (append (list (service nix-service-type))\n" @@ -60836,29 +61644,29 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34017 +#: guix-git/doc/guix.texi:34454 msgid "After @command{guix system reconfigure} configure Nix for your user:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34019 +#: guix-git/doc/guix.texi:34456 #, no-wrap msgid "Add a Nix channel and update it. See" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:34021 +#: guix-git/doc/guix.texi:34458 msgid "@url{https://nixos.org/nix/manual/, Nix Package Manager Guide}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34022 +#: guix-git/doc/guix.texi:34459 #, no-wrap msgid "Create a symlink to your profile and activate Nix profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34028 +#: guix-git/doc/guix.texi:34465 #, no-wrap msgid "" "$ ln -s \"/nix/var/nix/profiles/per-user/$USER/profile\" ~/.nix-profile\n" @@ -60866,77 +61674,77 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34032 +#: guix-git/doc/guix.texi:34469 #, no-wrap msgid "{Data Type} nix-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34034 +#: guix-git/doc/guix.texi:34471 msgid "This data type represents the configuration of the Nix daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34036 +#: guix-git/doc/guix.texi:34473 #, no-wrap msgid "@code{nix} (default: @code{nix})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34038 +#: guix-git/doc/guix.texi:34475 msgid "The Nix package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34039 +#: guix-git/doc/guix.texi:34476 #, no-wrap msgid "@code{sandbox} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34041 +#: guix-git/doc/guix.texi:34478 msgid "Specifies whether builds are sandboxed by default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34042 +#: guix-git/doc/guix.texi:34479 #, no-wrap msgid "@code{build-sandbox-items} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34045 +#: guix-git/doc/guix.texi:34482 msgid "This is a list of strings or objects appended to the @code{build-sandbox-items} field of the configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34053 +#: guix-git/doc/guix.texi:34490 msgid "Extra command line options for @code{nix-service-type}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34059 +#: guix-git/doc/guix.texi:34496 #, no-wrap msgid "setuid programs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34069 +#: guix-git/doc/guix.texi:34506 msgid "Some programs need to run with ``root'' privileges, even when they are launched by unprivileged users. A notorious example is the @command{passwd} program, which users can run to change their password, and which needs to access the @file{/etc/passwd} and @file{/etc/shadow} files---something normally restricted to root, for obvious security reasons. To address that, these executables are @dfn{setuid-root}, meaning that they always run with root privileges (@pxref{How Change Persona,,, libc, The GNU C Library Reference Manual}, for more info about the setuid mechanism)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34076 +#: guix-git/doc/guix.texi:34513 msgid "The store itself @emph{cannot} contain setuid programs: that would be a security issue since any user on the system can write derivations that populate the store (@pxref{The Store}). Thus, a different mechanism is used: instead of changing the setuid bit directly on files that are in the store, we let the system administrator @emph{declare} which programs should be setuid root." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34083 +#: guix-git/doc/guix.texi:34520 msgid "The @code{setuid-programs} field of an @code{operating-system} declaration contains a list of @code{} denoting the names of programs to have a setuid or setgid bit set (@pxref{Using the Configuration System}). For instance, the @command{mount.nfs} program, which is part of the nfs-utils package, with a setuid root can be designated like this:" msgstr "" -#. type: example -#: guix-git/doc/guix.texi:34087 +#. type: lisp +#: guix-git/doc/guix.texi:34524 #, no-wrap msgid "" "(setuid-program\n" @@ -60944,162 +61752,164 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34092 +#: guix-git/doc/guix.texi:34529 msgid "And then, to make @command{mount.nfs} setuid on your system, add the previous example to your operating system declaration by appending it to @code{%setuid-programs} like this:" msgstr "" -#. type: example -#: guix-git/doc/guix.texi:34098 +#. type: lisp +#: guix-git/doc/guix.texi:34537 #, no-wrap msgid "" -"(setuid-programs\n" -" (append (list (setuid-program\n" -" (program (file-append nfs-utils \"/sbin/mount.nfs\"))))\n" -" %setuid-programs))\n" +"(operating-system\n" +" ;; Some fields omitted...\n" +" (setuid-programs\n" +" (append (list (setuid-program\n" +" (program (file-append nfs-utils \"/sbin/mount.nfs\")))\n" +" %setuid-programs))))\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34100 +#: guix-git/doc/guix.texi:34539 #, no-wrap msgid "{Data Type} setuid-program" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34102 +#: guix-git/doc/guix.texi:34541 msgid "This data type represents a program with a setuid or setgid bit set." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:34104 +#: guix-git/doc/guix.texi:34543 #, no-wrap msgid "program" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34106 +#: guix-git/doc/guix.texi:34545 msgid "A file-like object having its setuid and/or setgid bit set." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34107 +#: guix-git/doc/guix.texi:34546 #, no-wrap msgid "@code{setuid?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34109 +#: guix-git/doc/guix.texi:34548 msgid "Whether to set user setuid bit." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34110 +#: guix-git/doc/guix.texi:34549 #, no-wrap msgid "@code{setgid?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34112 +#: guix-git/doc/guix.texi:34551 msgid "Whether to set group setgid bit." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34113 +#: guix-git/doc/guix.texi:34552 #, no-wrap msgid "@code{user} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34116 +#: guix-git/doc/guix.texi:34555 msgid "UID (integer) or user name (string) for the user owner of the program, defaults to root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34117 +#: guix-git/doc/guix.texi:34556 #, no-wrap msgid "@code{group} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34120 +#: guix-git/doc/guix.texi:34559 msgid "GID (integer) goup name (string) for the group owner of the program, defaults to root." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34126 +#: guix-git/doc/guix.texi:34565 msgid "A default set of setuid programs is defined by the @code{%setuid-programs} variable of the @code{(gnu system)} module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34127 +#: guix-git/doc/guix.texi:34566 #, no-wrap msgid "{Scheme Variable} %setuid-programs" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34130 +#: guix-git/doc/guix.texi:34569 msgid "A list of @code{} denoting common programs that are setuid-root." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34133 +#: guix-git/doc/guix.texi:34572 msgid "The list includes commands such as @command{passwd}, @command{ping}, @command{su}, and @command{sudo}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34139 +#: guix-git/doc/guix.texi:34578 msgid "Under the hood, the actual setuid programs are created in the @file{/run/setuid-programs} directory at system activation time. The files in this directory refer to the ``real'' binaries, which are in the store." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34143 +#: guix-git/doc/guix.texi:34582 #, no-wrap msgid "HTTPS, certificates" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34144 +#: guix-git/doc/guix.texi:34583 #, no-wrap msgid "X.509 certificates" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34145 +#: guix-git/doc/guix.texi:34584 #, no-wrap msgid "TLS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34152 +#: guix-git/doc/guix.texi:34591 msgid "Web servers available over HTTPS (that is, HTTP over the transport-layer security mechanism, TLS) send client programs an @dfn{X.509 certificate} that the client can then use to @emph{authenticate} the server. To do that, clients verify that the server's certificate is signed by a so-called @dfn{certificate authority} (CA). But to verify the CA's signature, clients must have first acquired the CA's certificate." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34156 +#: guix-git/doc/guix.texi:34595 msgid "Web browsers such as GNU@tie{}IceCat include their own set of CA certificates, such that they are able to verify CA signatures out-of-the-box." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34160 +#: guix-git/doc/guix.texi:34599 msgid "However, most other programs that can talk HTTPS---@command{wget}, @command{git}, @command{w3m}, etc.---need to be told where CA certificates can be found." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34167 +#: guix-git/doc/guix.texi:34606 msgid "In Guix, this is done by adding a package that provides certificates to the @code{packages} field of the @code{operating-system} declaration (@pxref{operating-system Reference}). Guix includes one such package, @code{nss-certs}, which is a set of CA certificates provided as part of Mozilla's Network Security Services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34172 +#: guix-git/doc/guix.texi:34611 msgid "Note that it is @emph{not} part of @code{%base-packages}, so you need to explicitly add it. The @file{/etc/ssl/certs} directory, which is where most applications and libraries look for certificates by default, points to the certificates installed globally." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34182 +#: guix-git/doc/guix.texi:34621 msgid "Unprivileged users, including users of Guix on a foreign distro, can also install their own certificate package in their profile. A number of environment variables need to be defined so that applications and libraries know where to find them. Namely, the OpenSSL library honors the @env{SSL_CERT_DIR} and @env{SSL_CERT_FILE} variables. Some applications add their own environment variables; for instance, the Git version control system honors the certificate bundle pointed to by the @env{GIT_SSL_CAINFO} environment variable. Thus, you would typically run something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34188 +#: guix-git/doc/guix.texi:34627 #, no-wrap msgid "" "guix install nss-certs\n" @@ -61109,12 +61919,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34193 +#: guix-git/doc/guix.texi:34632 msgid "As another example, R requires the @env{CURL_CA_BUNDLE} environment variable to point to a certificate bundle, so you would have to run something like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34197 +#: guix-git/doc/guix.texi:34636 #, no-wrap msgid "" "guix install nss-certs\n" @@ -61122,51 +61932,51 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34201 +#: guix-git/doc/guix.texi:34640 msgid "For other applications you may want to look up the required environment variable in the relevant documentation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34206 +#: guix-git/doc/guix.texi:34645 #, no-wrap msgid "name service switch" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34207 +#: guix-git/doc/guix.texi:34646 #, no-wrap msgid "NSS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34216 +#: guix-git/doc/guix.texi:34655 msgid "The @code{(gnu system nss)} module provides bindings to the configuration file of the libc @dfn{name service switch} or @dfn{NSS} (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference Manual}). In a nutshell, the NSS is a mechanism that allows libc to be extended with new ``name'' lookup methods for system databases, which includes host names, service names, user accounts, and more (@pxref{Name Service Switch, System Databases and Name Service Switch,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34223 +#: guix-git/doc/guix.texi:34662 msgid "The NSS configuration specifies, for each system database, which lookup method is to be used, and how the various methods are chained together---for instance, under which circumstances NSS should try the next method in the list. The NSS configuration is given in the @code{name-service-switch} field of @code{operating-system} declarations (@pxref{operating-system Reference, @code{name-service-switch}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34224 +#: guix-git/doc/guix.texi:34663 #, no-wrap msgid "nss-mdns" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34225 +#: guix-git/doc/guix.texi:34664 #, no-wrap msgid ".local, host name lookup" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34230 +#: guix-git/doc/guix.texi:34669 msgid "As an example, the declaration below configures the NSS to use the @uref{https://0pointer.de/lennart/projects/nss-mdns/, @code{nss-mdns} back-end}, which supports host name lookups over multicast DNS (mDNS) for host names ending in @code{.local}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34234 +#: guix-git/doc/guix.texi:34673 #, no-wrap msgid "" "(name-service-switch\n" @@ -61175,7 +61985,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34239 +#: guix-git/doc/guix.texi:34678 #, no-wrap msgid "" " ;; If the above did not succeed, try\n" @@ -61186,7 +61996,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34245 +#: guix-git/doc/guix.texi:34684 #, no-wrap msgid "" " ;; 'mdns_minimal' is authoritative for\n" @@ -61198,7 +62008,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34249 +#: guix-git/doc/guix.texi:34688 #, no-wrap msgid "" " ;; Then fall back to DNS.\n" @@ -61208,7 +62018,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34253 +#: guix-git/doc/guix.texi:34692 #, no-wrap msgid "" " ;; Finally, try with the \"full\" 'mdns'.\n" @@ -61217,151 +62027,151 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34258 +#: guix-git/doc/guix.texi:34697 msgid "Do not worry: the @code{%mdns-host-lookup-nss} variable (see below) contains this configuration, so you will not have to type it if all you want is to have @code{.local} host lookup working." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34266 +#: guix-git/doc/guix.texi:34705 msgid "Note that, in this case, in addition to setting the @code{name-service-switch} of the @code{operating-system} declaration, you also need to use @code{avahi-service-type} (@pxref{Networking Services, @code{avahi-service-type}}), or @code{%desktop-services}, which includes it (@pxref{Desktop Services}). Doing this makes @code{nss-mdns} accessible to the name service cache daemon (@pxref{Base Services, @code{nscd-service}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34269 +#: guix-git/doc/guix.texi:34708 msgid "For convenience, the following variables provide typical NSS configurations." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34270 +#: guix-git/doc/guix.texi:34709 #, no-wrap msgid "{Scheme Variable} %default-nss" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34273 +#: guix-git/doc/guix.texi:34712 msgid "This is the default name service switch configuration, a @code{name-service-switch} object." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34275 +#: guix-git/doc/guix.texi:34714 #, no-wrap msgid "{Scheme Variable} %mdns-host-lookup-nss" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34278 +#: guix-git/doc/guix.texi:34717 msgid "This is the name service switch configuration with support for host name lookup over multicast DNS (mDNS) for host names ending in @code{.local}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34288 +#: guix-git/doc/guix.texi:34727 msgid "The reference for name service switch configuration is given below. It is a direct mapping of the configuration file format of the C library , so please refer to the C library manual for more information (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference Manual}). Compared to the configuration file format of libc NSS, it has the advantage not only of adding this warm parenthetic feel that we like, but also static checks: you will know about syntax errors and typos as soon as you run @command{guix system}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34289 +#: guix-git/doc/guix.texi:34728 #, no-wrap msgid "{Data Type} name-service-switch" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34294 +#: guix-git/doc/guix.texi:34733 msgid "This is the data type representation the configuration of libc's name service switch (NSS). Each field below represents one of the supported system databases." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34296 +#: guix-git/doc/guix.texi:34735 #, no-wrap msgid "aliases" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34297 +#: guix-git/doc/guix.texi:34736 #, no-wrap msgid "ethers" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34299 +#: guix-git/doc/guix.texi:34738 #, no-wrap msgid "gshadow" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34300 +#: guix-git/doc/guix.texi:34739 #, no-wrap msgid "hosts" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34301 +#: guix-git/doc/guix.texi:34740 #, no-wrap msgid "initgroups" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34302 +#: guix-git/doc/guix.texi:34741 #, no-wrap msgid "netgroup" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34303 +#: guix-git/doc/guix.texi:34742 #, no-wrap msgid "networks" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34306 +#: guix-git/doc/guix.texi:34745 #, no-wrap msgid "rpc" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34308 +#: guix-git/doc/guix.texi:34747 #, no-wrap msgid "shadow" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34311 +#: guix-git/doc/guix.texi:34750 msgid "The system databases handled by the NSS@. Each of these fields must be a list of @code{} objects (see below)." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34314 +#: guix-git/doc/guix.texi:34753 #, no-wrap msgid "{Data Type} name-service" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34318 +#: guix-git/doc/guix.texi:34757 msgid "This is the data type representing an actual name service and the associated lookup action." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34323 +#: guix-git/doc/guix.texi:34762 msgid "A string denoting the name service (@pxref{Services in the NSS configuration,,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34328 +#: guix-git/doc/guix.texi:34767 msgid "Note that name services listed here must be visible to nscd. This is achieved by passing the @code{#:name-services} argument to @code{nscd-service} the list of packages providing the needed name services (@pxref{Base Services, @code{nscd-service}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34329 +#: guix-git/doc/guix.texi:34768 #, no-wrap msgid "reaction" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34333 +#: guix-git/doc/guix.texi:34772 msgid "An action specified using the @code{lookup-specification} macro (@pxref{Actions in the NSS configuration,,, libc, The GNU C Library Reference Manual}). For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34337 +#: guix-git/doc/guix.texi:34776 #, no-wrap msgid "" "(lookup-specification (unavailable => continue)\n" @@ -61369,17 +62179,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34351 +#: guix-git/doc/guix.texi:34790 msgid "For bootstrapping purposes, the Linux-Libre kernel is passed an @dfn{initial RAM disk}, or @dfn{initrd}. An initrd contains a temporary root file system as well as an initialization script. The latter is responsible for mounting the real root file system, and for loading any kernel modules that may be needed to achieve that." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34360 +#: guix-git/doc/guix.texi:34799 msgid "The @code{initrd-modules} field of an @code{operating-system} declaration allows you to specify Linux-libre kernel modules that must be available in the initrd. In particular, this is where you would list modules needed to actually drive the hard disk where your root partition is---although the default value of @code{initrd-modules} should cover most use cases. For example, assuming you need the @code{megaraid_sas} module in addition to the default modules to be able to access your root file system, you would write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34365 +#: guix-git/doc/guix.texi:34804 #, no-wrap msgid "" "(operating-system\n" @@ -61388,28 +62198,28 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34367 +#: guix-git/doc/guix.texi:34806 #, no-wrap msgid "{Scheme Variable} %base-initrd-modules" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34369 +#: guix-git/doc/guix.texi:34808 msgid "This is the list of kernel modules included in the initrd by default." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34377 +#: guix-git/doc/guix.texi:34816 msgid "Furthermore, if you need lower-level customization, the @code{initrd} field of an @code{operating-system} declaration allows you to specify which initrd you would like to use. The @code{(gnu system linux-initrd)} module provides three ways to build an initrd: the high-level @code{base-initrd} procedure and the low-level @code{raw-initrd} and @code{expression->initrd} procedures." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34382 +#: guix-git/doc/guix.texi:34821 msgid "The @code{base-initrd} procedure is intended to cover most common uses. For example, if you want to add a bunch of kernel modules to be loaded at boot time, you can define the @code{initrd} field of the operating system declaration like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34390 +#: guix-git/doc/guix.texi:34829 #, no-wrap msgid "" "(initrd (lambda (file-systems . rest)\n" @@ -61421,447 +62231,447 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34395 +#: guix-git/doc/guix.texi:34834 msgid "The @code{base-initrd} procedure also handles common use cases that involves using the system as a QEMU guest, or as a ``live'' system with volatile root file system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34402 +#: guix-git/doc/guix.texi:34841 msgid "The @code{base-initrd} procedure is built from @code{raw-initrd} procedure. Unlike @code{base-initrd}, @code{raw-initrd} doesn't do anything high-level, such as trying to guess which kernel modules and packages should be included to the initrd. An example use of @code{raw-initrd} is when a user has a custom Linux kernel configuration and default kernel modules included by @code{base-initrd} are not available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34407 +#: guix-git/doc/guix.texi:34846 msgid "The initial RAM disk produced by @code{base-initrd} or @code{raw-initrd} honors several options passed on the Linux kernel command line (that is, arguments passed @i{via} the @code{linux} command of GRUB, or the @code{-append} option of QEMU), notably:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34409 +#: guix-git/doc/guix.texi:34848 #, no-wrap msgid "--load=@var{boot}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34412 +#: guix-git/doc/guix.texi:34851 msgid "Tell the initial RAM disk to load @var{boot}, a file containing a Scheme program, once it has mounted the root file system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34416 +#: guix-git/doc/guix.texi:34855 msgid "Guix uses this option to yield control to a boot program that runs the service activation programs and then spawns the GNU@tie{}Shepherd, the initialization system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34417 +#: guix-git/doc/guix.texi:34856 #, no-wrap msgid "--root=@var{root}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34422 +#: guix-git/doc/guix.texi:34861 msgid "Mount @var{root} as the root file system. @var{root} can be a device name like @code{/dev/sda1}, a file system label, or a file system UUID. When unspecified, the device name from the root file system of the operating system declaration is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34423 +#: guix-git/doc/guix.texi:34862 #, no-wrap msgid "fsck.mode=@var{mode}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34429 +#: guix-git/doc/guix.texi:34868 msgid "Whether to check the @var{root} file system for errors before mounting it. @var{mode} is one of @code{skip} (never check), @code{force} (always check), or @code{auto} to respect the root file-system object's 'check?' setting (@pxref{File Systems}) and run a full scan only if the file system was not cleanly shut down." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34432 +#: guix-git/doc/guix.texi:34871 msgid "@code{auto} is the default if this option is not present or if @var{mode} is not one of the above." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34433 +#: guix-git/doc/guix.texi:34872 #, no-wrap msgid "fsck.repair=@var{level}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34438 +#: guix-git/doc/guix.texi:34877 msgid "The level of repairs to perform automatically if errors are found in the @var{root} file system. @var{level} is one of @code{no} (do not write to @var{root} at all if possible), @code{yes} (repair as much as possible), or @code{preen} to repair problems considered safe to repair automatically." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34441 +#: guix-git/doc/guix.texi:34880 msgid "@code{preen} is the default if this option is not present or if @var{level} is not one of the above." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34445 +#: guix-git/doc/guix.texi:34884 msgid "Have @file{/run/booted-system} and @file{/run/current-system} point to @var{system}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34446 +#: guix-git/doc/guix.texi:34885 #, no-wrap msgid "modprobe.blacklist=@var{modules}@dots{}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34447 +#: guix-git/doc/guix.texi:34886 #, no-wrap msgid "module, black-listing" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34448 +#: guix-git/doc/guix.texi:34887 #, no-wrap msgid "black list, of kernel modules" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34453 +#: guix-git/doc/guix.texi:34892 msgid "Instruct the initial RAM disk as well as the @command{modprobe} command (from the kmod package) to refuse to load @var{modules}. @var{modules} must be a comma-separated list of module names---e.g., @code{usbkbd,9pnet}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34454 +#: guix-git/doc/guix.texi:34893 #, no-wrap msgid "--repl" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34460 +#: guix-git/doc/guix.texi:34899 msgid "Start a read-eval-print loop (REPL) from the initial RAM disk before it tries to load kernel modules and to mount the root file system. Our marketing team calls it @dfn{boot-to-Guile}. The Schemer in you will love it. @xref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}, for more information on Guile's REPL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34466 +#: guix-git/doc/guix.texi:34905 msgid "Now that you know all the features that initial RAM disks produced by @code{base-initrd} and @code{raw-initrd} provide, here is how to use it and customize it further." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34469 +#: guix-git/doc/guix.texi:34908 #, no-wrap msgid "{Scheme Procedure} raw-initrd @var{file-systems} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34483 +#: guix-git/doc/guix.texi:34922 msgid "[#:linux-modules '()] [#:mapped-devices '()] @ [#:keyboard-layout #f] @ [#:helper-packages '()] [#:qemu-networking? #f] [#:volatile-root? #f] Return a derivation that builds a raw initrd. @var{file-systems} is a list of file systems to be mounted by the initrd, possibly in addition to the root file system specified on the kernel command line via @option{--root}. @var{linux-modules} is a list of kernel modules to be loaded at boot time. @var{mapped-devices} is a list of device mappings to realize before @var{file-systems} are mounted (@pxref{Mapped Devices}). @var{helper-packages} is a list of packages to be copied in the initrd. It may include @code{e2fsck/static} or other packages needed by the initrd to check the root file system." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34489 guix-git/doc/guix.texi:34513 +#: guix-git/doc/guix.texi:34928 guix-git/doc/guix.texi:34952 msgid "When true, @var{keyboard-layout} is a @code{} record denoting the desired console keyboard layout. This is done before @var{mapped-devices} are set up and before @var{file-systems} are mounted such that, should the user need to enter a passphrase or use the REPL, this happens using the intended keyboard layout." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34493 +#: guix-git/doc/guix.texi:34932 msgid "When @var{qemu-networking?} is true, set up networking with the standard QEMU parameters. When @var{virtio?} is true, load additional modules so that the initrd can be used as a QEMU guest with para-virtualized I/O drivers." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34496 +#: guix-git/doc/guix.texi:34935 msgid "When @var{volatile-root?} is true, the root file system is writable but any changes to it are lost." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34498 +#: guix-git/doc/guix.texi:34937 #, no-wrap msgid "{Scheme Procedure} base-initrd @var{file-systems} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34507 +#: guix-git/doc/guix.texi:34946 msgid "[#:mapped-devices '()] [#:keyboard-layout #f] @ [#:qemu-networking? #f] [#:volatile-root? #f] @ [#:linux-modules '()] Return as a file-like object a generic initrd, with kernel modules taken from @var{linux}. @var{file-systems} is a list of file-systems to be mounted by the initrd, possibly in addition to the root file system specified on the kernel command line via @option{--root}. @var{mapped-devices} is a list of device mappings to realize before @var{file-systems} are mounted." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34515 +#: guix-git/doc/guix.texi:34954 msgid "@var{qemu-networking?} and @var{volatile-root?} behaves as in @code{raw-initrd}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34520 +#: guix-git/doc/guix.texi:34959 msgid "The initrd is automatically populated with all the kernel modules necessary for @var{file-systems} and for the given options. Additional kernel modules can be listed in @var{linux-modules}. They will be added to the initrd, and loaded at boot time in the order in which they appear." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34527 +#: guix-git/doc/guix.texi:34966 msgid "Needless to say, the initrds we produce and use embed a statically-linked Guile, and the initialization program is a Guile program. That gives a lot of flexibility. The @code{expression->initrd} procedure builds such an initrd, given the program to run in that initrd." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34528 +#: guix-git/doc/guix.texi:34967 #, no-wrap msgid "{Scheme Procedure} expression->initrd @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34534 +#: guix-git/doc/guix.texi:34973 msgid "[#:guile %guile-static-stripped] [#:name \"guile-initrd\"] Return as a file-like object a Linux initrd (a gzipped cpio archive) containing @var{guile} and that evaluates @var{exp}, a G-expression, upon booting. All the derivations referenced by @var{exp} are automatically copied to the initrd." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34540 +#: guix-git/doc/guix.texi:34979 #, no-wrap msgid "boot loader" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34547 +#: guix-git/doc/guix.texi:34986 msgid "The operating system supports multiple bootloaders. The bootloader is configured using @code{bootloader-configuration} declaration. All the fields of this structure are bootloader agnostic except for one field, @code{bootloader} that indicates the bootloader to be configured and installed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34552 +#: guix-git/doc/guix.texi:34991 msgid "Some of the bootloaders do not honor every field of @code{bootloader-configuration}. For instance, the extlinux bootloader does not support themes and thus ignores the @code{theme} field." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34553 +#: guix-git/doc/guix.texi:34992 #, no-wrap msgid "{Data Type} bootloader-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34555 +#: guix-git/doc/guix.texi:34994 msgid "The type of a bootloader configuration declaration." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34559 +#: guix-git/doc/guix.texi:34998 #, no-wrap msgid "EFI, bootloader" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34560 +#: guix-git/doc/guix.texi:34999 #, no-wrap msgid "UEFI, bootloader" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34561 +#: guix-git/doc/guix.texi:35000 #, no-wrap msgid "BIOS, bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34566 +#: guix-git/doc/guix.texi:35005 msgid "The bootloader to use, as a @code{bootloader} object. For now @code{grub-bootloader}, @code{grub-efi-bootloader}, @code{grub-efi-netboot-bootloader}, @code{extlinux-bootloader} and @code{u-boot-bootloader} are supported." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34567 +#: guix-git/doc/guix.texi:35006 #, no-wrap msgid "ARM, bootloaders" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34568 +#: guix-git/doc/guix.texi:35007 #, no-wrap msgid "AArch64, bootloaders" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34573 +#: guix-git/doc/guix.texi:35012 msgid "Available bootloaders are described in @code{(gnu bootloader @dots{})} modules. In particular, @code{(gnu bootloader u-boot)} contains definitions of bootloaders for a wide range of ARM and AArch64 systems, using the @uref{https://www.denx.de/wiki/U-Boot/, U-Boot bootloader}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34579 +#: guix-git/doc/guix.texi:35018 msgid "@code{grub-efi-bootloader} allows to boot on modern systems using the @dfn{Unified Extensible Firmware Interface} (UEFI). This is what you should use if the installation image contains a @file{/sys/firmware/efi} directory when you boot it on your system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34583 +#: guix-git/doc/guix.texi:35022 msgid "@code{grub-bootloader} allows you to boot in particular Intel-based machines in ``legacy'' BIOS mode." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:34584 +#: guix-git/doc/guix.texi:35023 #, no-wrap msgid "grub-efi-netboot-bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34588 +#: guix-git/doc/guix.texi:35027 msgid "@code{grub-efi-netboot-bootloader} allows you to boot your system over network through TFTP@. In combination with an NFS root file system this allows you to build a diskless Guix system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34594 +#: guix-git/doc/guix.texi:35033 msgid "The installation of the @code{grub-efi-netboot-bootloader} generates the content of the TFTP root directory at @code{targets} (@pxref{Bootloader Configuration, @code{targets}}), to be served by a TFTP server. You may want to mount your TFTP server directories onto the @code{targets} to move the required files to the TFTP server automatically." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34603 +#: guix-git/doc/guix.texi:35042 msgid "If you plan to use an NFS root file system as well (actually if you mount the store from an NFS share), then the TFTP server needs to serve the file @file{/boot/grub/grub.cfg} and other files from the store (like GRUBs background image, the kernel (@pxref{operating-system Reference, @code{kernel}}) and the initrd (@pxref{operating-system Reference, @code{initrd}})), too. All these files from the store will be accessed by GRUB through TFTP with their normal store path, for example as @file{tftp://tftp-server/gnu/store/…-initrd/initrd.cpio.gz}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34612 +#: guix-git/doc/guix.texi:35051 msgid "Two symlinks are created to make this possible. For each target in the @code{targets} field, the first symlink is @samp{target}@file{/efi/Guix/boot/grub/grub.cfg} pointing to @file{../../../boot/grub/grub.cfg}, where @samp{target} may be @file{/boot}. In this case the link is not leaving the served TFTP root directory, but otherwise it does. The second link is @samp{target}@file{/gnu/store} and points to @file{../gnu/store}. This link is leaving the served TFTP root directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34618 +#: guix-git/doc/guix.texi:35057 msgid "The assumption behind all this is that you have an NFS server exporting the root file system for your Guix system, and additionally a TFTP server exporting your @code{targets} directories—usually a single @file{/boot}—from that same root file system for your Guix system. In this constellation the symlinks will work." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34623 +#: guix-git/doc/guix.texi:35062 msgid "For other constellations you will have to program your own bootloader installer, which then takes care to make necessary files from the store accessible through TFTP, for example by copying them into the TFTP root directory to your @code{targets}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34628 +#: guix-git/doc/guix.texi:35067 msgid "It is important to note that symlinks pointing outside the TFTP root directory may need to be allowed in the configuration of your TFTP server. Further the store link exposes the whole store through TFTP@. Both points need to be considered carefully for security aspects." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34633 +#: guix-git/doc/guix.texi:35072 msgid "Beside the @code{grub-efi-netboot-bootloader}, the already mentioned TFTP and NFS servers, you also need a properly configured DHCP server to make the booting over netboot possible. For all this we can currently only recommend you to look for instructions about @acronym{PXE, Preboot eXecution Environment}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34637 +#: guix-git/doc/guix.texi:35076 msgid "This is a list of strings denoting the targets onto which to install the bootloader." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34647 +#: guix-git/doc/guix.texi:35086 msgid "The interpretation of targets depends on the bootloader in question. For @code{grub-bootloader}, for example, they should be device names understood by the bootloader @command{installer} command, such as @code{/dev/sda} or @code{(hd0)} (@pxref{Invoking grub-install,,, grub, GNU GRUB Manual}). For @code{grub-efi-bootloader}, they should be mount points of the EFI file system, usually @file{/boot/efi}. For @code{grub-efi-netboot-bootloader}, @code{targets} should be the mount points corresponding to TFTP root directories served by your TFTP server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34648 +#: guix-git/doc/guix.texi:35087 #, no-wrap msgid "@code{menu-entries} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34652 +#: guix-git/doc/guix.texi:35091 msgid "A possibly empty list of @code{menu-entry} objects (see below), denoting entries to appear in the bootloader menu, in addition to the current system entry and the entry pointing to previous system generations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34653 +#: guix-git/doc/guix.texi:35092 #, no-wrap msgid "@code{default-entry} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34656 +#: guix-git/doc/guix.texi:35095 msgid "The index of the default boot menu entry. Index 0 is for the entry of the current system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34657 +#: guix-git/doc/guix.texi:35096 #, no-wrap msgid "@code{timeout} (default: @code{5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34660 +#: guix-git/doc/guix.texi:35099 msgid "The number of seconds to wait for keyboard input before booting. Set to 0 to boot immediately, and to -1 to wait indefinitely." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34661 +#: guix-git/doc/guix.texi:35100 #, no-wrap msgid "keyboard layout, for the bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34665 +#: guix-git/doc/guix.texi:35104 msgid "If this is @code{#f}, the bootloader's menu (if any) uses the default keyboard layout, usually US@tie{}English (``qwerty'')." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34668 +#: guix-git/doc/guix.texi:35107 msgid "Otherwise, this must be a @code{keyboard-layout} object (@pxref{Keyboard Layout})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:34672 +#: guix-git/doc/guix.texi:35111 msgid "This option is currently ignored by bootloaders other than @code{grub} and @code{grub-efi}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34674 +#: guix-git/doc/guix.texi:35113 #, no-wrap msgid "@code{theme} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34678 +#: guix-git/doc/guix.texi:35117 msgid "The bootloader theme object describing the theme to use. If no theme is provided, some bootloaders might use a default theme, that's true for GRUB." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34679 +#: guix-git/doc/guix.texi:35118 #, no-wrap msgid "@code{terminal-outputs} (default: @code{'(gfxterm)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34686 +#: guix-git/doc/guix.texi:35125 msgid "The output terminals used for the bootloader boot menu, as a list of symbols. GRUB accepts the values: @code{console}, @code{serial}, @code{serial_@{0-3@}}, @code{gfxterm}, @code{vga_text}, @code{mda_text}, @code{morse}, and @code{pkmodem}. This field corresponds to the GRUB variable @code{GRUB_TERMINAL_OUTPUT} (@pxref{Simple configuration,,, grub,GNU GRUB manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34687 +#: guix-git/doc/guix.texi:35126 #, no-wrap msgid "@code{terminal-inputs} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34695 +#: guix-git/doc/guix.texi:35134 msgid "The input terminals used for the bootloader boot menu, as a list of symbols. For GRUB, the default is the native platform terminal as determined at run-time. GRUB accepts the values: @code{console}, @code{serial}, @code{serial_@{0-3@}}, @code{at_keyboard}, and @code{usb_keyboard}. This field corresponds to the GRUB variable @code{GRUB_TERMINAL_INPUT} (@pxref{Simple configuration,,, grub,GNU GRUB manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34696 +#: guix-git/doc/guix.texi:35135 #, no-wrap msgid "@code{serial-unit} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34700 +#: guix-git/doc/guix.texi:35139 msgid "The serial unit used by the bootloader, as an integer from 0 to 3. For GRUB, it is chosen at run-time; currently GRUB chooses 0, which corresponds to COM1 (@pxref{Serial terminal,,, grub,GNU GRUB manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34701 +#: guix-git/doc/guix.texi:35140 #, no-wrap msgid "@code{serial-speed} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34705 +#: guix-git/doc/guix.texi:35144 msgid "The speed of the serial interface, as an integer. For GRUB, the default value is chosen at run-time; currently GRUB chooses 9600@tie{}bps (@pxref{Serial terminal,,, grub,GNU GRUB manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34709 +#: guix-git/doc/guix.texi:35148 #, no-wrap msgid "dual boot" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34710 +#: guix-git/doc/guix.texi:35149 #, no-wrap msgid "boot menu" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34716 +#: guix-git/doc/guix.texi:35155 msgid "Should you want to list additional boot menu entries @i{via} the @code{menu-entries} field above, you will need to create them with the @code{menu-entry} form. For example, imagine you want to be able to boot another distro (hard to imagine!), you can define a menu entry along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34723 +#: guix-git/doc/guix.texi:35162 #, no-wrap msgid "" "(menu-entry\n" @@ -61872,132 +62682,132 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34726 +#: guix-git/doc/guix.texi:35165 msgid "Details below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34727 +#: guix-git/doc/guix.texi:35166 #, no-wrap msgid "{Data Type} menu-entry" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34729 +#: guix-git/doc/guix.texi:35168 msgid "The type of an entry in the bootloader menu." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34734 +#: guix-git/doc/guix.texi:35173 msgid "The label to show in the menu---e.g., @code{\"GNU\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34735 +#: guix-git/doc/guix.texi:35174 #, no-wrap msgid "@code{linux} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34737 +#: guix-git/doc/guix.texi:35176 msgid "The Linux kernel image to boot, for example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34740 +#: guix-git/doc/guix.texi:35179 #, no-wrap msgid "(file-append linux-libre \"/bzImage\")\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34745 +#: guix-git/doc/guix.texi:35184 msgid "For GRUB, it is also possible to specify a device explicitly in the file path using GRUB's device naming convention (@pxref{Naming convention,,, grub, GNU GRUB manual}), for example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34748 +#: guix-git/doc/guix.texi:35187 #, no-wrap msgid "\"(hd0,msdos1)/boot/vmlinuz\"\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34752 +#: guix-git/doc/guix.texi:35191 msgid "If the device is specified explicitly as above, then the @code{device} field is ignored entirely." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34753 +#: guix-git/doc/guix.texi:35192 #, no-wrap msgid "@code{linux-arguments} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34756 +#: guix-git/doc/guix.texi:35195 msgid "The list of extra Linux kernel command-line arguments---e.g., @code{(\"console=ttyS0\")}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34757 +#: guix-git/doc/guix.texi:35196 #, no-wrap msgid "@code{initrd} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34760 +#: guix-git/doc/guix.texi:35199 msgid "A G-Expression or string denoting the file name of the initial RAM disk to use (@pxref{G-Expressions})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34764 +#: guix-git/doc/guix.texi:35203 msgid "The device where the kernel and initrd are to be found---i.e., for GRUB, @dfn{root} for this menu entry (@pxref{root,,, grub, GNU GRUB manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34770 +#: guix-git/doc/guix.texi:35209 msgid "This may be a file system label (a string), a file system UUID (a bytevector, @pxref{File Systems}), or @code{#f}, in which case the bootloader will search the device containing the file specified by the @code{linux} field (@pxref{search,,, grub, GNU GRUB manual}). It must @emph{not} be an OS device name such as @file{/dev/sda1}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34771 +#: guix-git/doc/guix.texi:35210 #, no-wrap msgid "@code{multiboot-kernel} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34775 +#: guix-git/doc/guix.texi:35214 msgid "The kernel to boot in Multiboot-mode (@pxref{multiboot,,, grub, GNU GRUB manual}). When this field is set, a Multiboot menu-entry is generated. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34778 +#: guix-git/doc/guix.texi:35217 #, no-wrap msgid "(file-append mach \"/boot/gnumach\")\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34780 +#: guix-git/doc/guix.texi:35219 #, no-wrap msgid "@code{multiboot-arguments} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34782 +#: guix-git/doc/guix.texi:35221 msgid "The list of extra command-line arguments for the multiboot-kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34783 +#: guix-git/doc/guix.texi:35222 #, no-wrap msgid "@code{multiboot-modules} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34785 +#: guix-git/doc/guix.texi:35224 msgid "The list of commands for loading Multiboot modules. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34791 +#: guix-git/doc/guix.texi:35230 #, no-wrap msgid "" "(list (list (file-append hurd \"/hurd/ext2fs.static\") \"ext2fs\"\n" @@ -62007,73 +62817,73 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34796 guix-git/doc/guix.texi:34855 +#: guix-git/doc/guix.texi:35235 guix-git/doc/guix.texi:35294 #, no-wrap msgid "HDPI" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34797 guix-git/doc/guix.texi:34856 +#: guix-git/doc/guix.texi:35236 guix-git/doc/guix.texi:35295 #, no-wrap msgid "HiDPI" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34798 guix-git/doc/guix.texi:34857 +#: guix-git/doc/guix.texi:35237 guix-git/doc/guix.texi:35296 #, no-wrap msgid "resolution" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34802 +#: guix-git/doc/guix.texi:35241 msgid "For now only GRUB has theme support. GRUB themes are created using the @code{grub-theme} form, which is not fully documented yet." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34803 +#: guix-git/doc/guix.texi:35242 #, no-wrap msgid "{Data Type} grub-theme" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34805 +#: guix-git/doc/guix.texi:35244 msgid "Data type representing the configuration of the GRUB theme." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34807 +#: guix-git/doc/guix.texi:35246 #, no-wrap msgid "@code{gfxmode} (default: @code{'(\"auto\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34810 +#: guix-git/doc/guix.texi:35249 msgid "The GRUB @code{gfxmode} to set (a list of screen resolution strings, @pxref{gfxmode,,, grub, GNU GRUB manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34813 +#: guix-git/doc/guix.texi:35252 #, no-wrap msgid "{Scheme Procedure} grub-theme" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34817 +#: guix-git/doc/guix.texi:35256 msgid "Return the default GRUB theme used by the operating system if no @code{theme} field is specified in @code{bootloader-configuration} record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34820 +#: guix-git/doc/guix.texi:35259 msgid "It comes with a fancy background image displaying the GNU and Guix logos." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34824 +#: guix-git/doc/guix.texi:35263 msgid "For example, to override the default resolution, you may use something like" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34832 +#: guix-git/doc/guix.texi:35271 #, no-wrap msgid "" "(bootloader\n" @@ -62085,40 +62895,40 @@ msgid "" msgstr "" #. type: section -#: guix-git/doc/guix.texi:34835 +#: guix-git/doc/guix.texi:35274 #, no-wrap msgid "Invoking @code{guix system}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34840 +#: guix-git/doc/guix.texi:35279 msgid "Once you have written an operating system declaration as seen in the previous section, it can be @dfn{instantiated} using the @command{guix system} command. The synopsis is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34843 +#: guix-git/doc/guix.texi:35282 #, no-wrap msgid "guix system @var{options}@dots{} @var{action} @var{file}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34849 +#: guix-git/doc/guix.texi:35288 msgid "@var{file} must be the name of a file containing an @code{operating-system} declaration. @var{action} specifies how the operating system is instantiated. Currently the following values are supported:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34851 guix-git/doc/guix.texi:37496 +#: guix-git/doc/guix.texi:35290 guix-git/doc/guix.texi:37992 #, no-wrap msgid "search" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34854 +#: guix-git/doc/guix.texi:35293 msgid "Display available service type definitions that match the given regular expressions, sorted by relevance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34876 +#: guix-git/doc/guix.texi:35315 #, no-wrap msgid "" "$ guix system search console\n" @@ -62142,7 +62952,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34882 +#: guix-git/doc/guix.texi:35321 #, no-wrap msgid "" "name: mingetty\n" @@ -62154,7 +62964,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34889 +#: guix-git/doc/guix.texi:35328 #, no-wrap msgid "" "name: login\n" @@ -62167,72 +62977,72 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34891 guix-git/doc/guix.texi:37549 +#: guix-git/doc/guix.texi:35330 guix-git/doc/guix.texi:38028 #, no-wrap msgid "@dots{}\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34896 guix-git/doc/guix.texi:37554 +#: guix-git/doc/guix.texi:35335 msgid "As for @command{guix package --search}, the result is written in @code{recutils} format, which makes it easy to filter the output (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34897 guix-git/doc/guix.texi:37555 +#: guix-git/doc/guix.texi:35336 guix-git/doc/guix.texi:38034 #, no-wrap msgid "reconfigure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34902 +#: guix-git/doc/guix.texi:35341 msgid "Build the operating system described in @var{file}, activate it, and switch to it@footnote{This action (and the related actions @code{switch-generation} and @code{roll-back}) are usable only on systems already running Guix System.}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:34910 +#: guix-git/doc/guix.texi:35349 msgid "It is highly recommended to run @command{guix pull} once before you run @command{guix system reconfigure} for the first time (@pxref{Invoking guix pull}). Failing to do that you would see an older version of Guix once @command{reconfigure} has completed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34918 +#: guix-git/doc/guix.texi:35357 msgid "This effects all the configuration specified in @var{file}: user accounts, system services, global package list, setuid programs, etc. The command starts system services specified in @var{file} that are not currently running; if a service is currently running this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop X} or @code{herd restart X})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34924 +#: guix-git/doc/guix.texi:35363 msgid "This command creates a new generation whose number is one greater than the current generation (as reported by @command{guix system list-generations}). If that generation already exists, it will be overwritten. This behavior mirrors that of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34929 +#: guix-git/doc/guix.texi:35368 msgid "It also adds a bootloader menu entry for the new OS configuration, ---unless @option{--no-bootloader} is passed. For GRUB, it moves entries for older configurations to a submenu, allowing you to choose an older system generation at boot time should you need it." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34930 guix-git/doc/guix.texi:35261 -#: guix-git/doc/guix.texi:36223 +#: guix-git/doc/guix.texi:35369 guix-git/doc/guix.texi:35705 +#: guix-git/doc/guix.texi:36713 #, no-wrap msgid "provenance tracking, of the operating system" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34935 +#: guix-git/doc/guix.texi:35374 msgid "Upon completion, the new system is deployed under @file{/run/current-system}. This directory contains @dfn{provenance meta-data}: the list of channels in use (@pxref{Channels}) and @var{file} itself, when available. You can view it by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34938 +#: guix-git/doc/guix.texi:35377 #, no-wrap msgid "guix system describe\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34944 +#: guix-git/doc/guix.texi:35383 msgid "This information is useful should you later want to inspect how this particular generation was built. In fact, assuming @var{file} is self-contained, you can later rebuild generation @var{n} of your operating system with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34950 +#: guix-git/doc/guix.texi:35389 #, no-wrap msgid "" "guix time-machine \\\n" @@ -62242,233 +63052,238 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34956 +#: guix-git/doc/guix.texi:35395 msgid "You can think of it as some sort of built-in version control! Your system is not just a binary artifact: @emph{it carries its own source}. @xref{Service Reference, @code{provenance-service-type}}, for more information on provenance tracking." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34962 +#: guix-git/doc/guix.texi:35401 msgid "By default, @command{reconfigure} @emph{prevents you from downgrading your system}, which could (re)introduce security vulnerabilities and also cause problems with ``stateful'' services such as database management systems. You can override that behavior by passing @option{--allow-downgrades}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34963 guix-git/doc/guix.texi:37614 +#: guix-git/doc/guix.texi:35402 guix-git/doc/guix.texi:38093 #, no-wrap msgid "switch-generation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34972 +#: guix-git/doc/guix.texi:35411 msgid "Switch to an existing system generation. This action atomically switches the system profile to the specified system generation. It also rearranges the system's existing bootloader menu entries. It makes the menu entry for the specified system generation the default, and it moves the entries for the other generations to a submenu, if supported by the bootloader being used. The next time the system boots, it will use the specified system generation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34976 +#: guix-git/doc/guix.texi:35415 msgid "The bootloader itself is not being reinstalled when using this command. Thus, the installed bootloader is used with an updated configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34980 +#: guix-git/doc/guix.texi:35419 msgid "The target generation can be specified explicitly by its generation number. For example, the following invocation would switch to system generation 7:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34983 +#: guix-git/doc/guix.texi:35422 #, no-wrap msgid "guix system switch-generation 7\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34991 guix-git/doc/guix.texi:37633 +#: guix-git/doc/guix.texi:35430 guix-git/doc/guix.texi:38112 msgid "The target generation can also be specified relative to the current generation with the form @code{+N} or @code{-N}, where @code{+3} means ``3 generations ahead of the current generation,'' and @code{-1} means ``1 generation prior to the current generation.'' When specifying a negative value such as @code{-1}, you must precede it with @code{--} to prevent it from being parsed as an option. For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34994 +#: guix-git/doc/guix.texi:35433 #, no-wrap msgid "guix system switch-generation -- -1\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35002 +#: guix-git/doc/guix.texi:35441 msgid "Currently, the effect of invoking this action is @emph{only} to switch the system profile to an existing generation and rearrange the bootloader menu entries. To actually start using the target system generation, you must reboot after running this action. In the future, it will be updated to do the same things as @command{reconfigure}, like activating and deactivating services." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35004 guix-git/doc/guix.texi:37639 +#: guix-git/doc/guix.texi:35443 guix-git/doc/guix.texi:38118 msgid "This action will fail if the specified generation does not exist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35005 guix-git/doc/guix.texi:37640 +#: guix-git/doc/guix.texi:35444 guix-git/doc/guix.texi:38119 #, no-wrap msgid "roll-back" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35011 +#: guix-git/doc/guix.texi:35450 msgid "Switch to the preceding system generation. The next time the system boots, it will use the preceding system generation. This is the inverse of @command{reconfigure}, and it is exactly the same as invoking @command{switch-generation} with an argument of @code{-1}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35015 +#: guix-git/doc/guix.texi:35454 msgid "Currently, as with @command{switch-generation}, you must reboot after running this action to actually start using the preceding system generation." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35016 guix-git/doc/guix.texi:37646 +#: guix-git/doc/guix.texi:35455 guix-git/doc/guix.texi:38125 #, no-wrap msgid "delete-generations" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35017 +#: guix-git/doc/guix.texi:35456 #, no-wrap msgid "deleting system generations" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35018 guix-git/doc/guix.texi:37648 +#: guix-git/doc/guix.texi:35457 guix-git/doc/guix.texi:38127 #, no-wrap msgid "saving space" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35022 +#: guix-git/doc/guix.texi:35461 msgid "Delete system generations, making them candidates for garbage collection (@pxref{Invoking guix gc}, for information on how to run the ``garbage collector'')." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35026 +#: guix-git/doc/guix.texi:35465 msgid "This works in the same way as @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). With no arguments, all system generations but the current one are deleted:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35029 +#: guix-git/doc/guix.texi:35468 #, no-wrap msgid "guix system delete-generations\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35033 +#: guix-git/doc/guix.texi:35472 msgid "You can also select the generations you want to delete. The example below deletes all the system generations that are more than two months old:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35036 +#: guix-git/doc/guix.texi:35475 #, no-wrap msgid "guix system delete-generations 2m\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35041 +#: guix-git/doc/guix.texi:35480 msgid "Running this command automatically reinstalls the bootloader with an updated list of menu entries---e.g., the ``old generations'' sub-menu in GRUB no longer lists the generations that have been deleted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35046 +#: guix-git/doc/guix.texi:35485 msgid "Build the derivation of the operating system, which includes all the configuration files and programs needed to boot and run the system. This action does not actually install anything." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35047 +#: guix-git/doc/guix.texi:35486 #, no-wrap msgid "init" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35051 +#: guix-git/doc/guix.texi:35490 msgid "Populate the given directory with all the files necessary to run the operating system specified in @var{file}. This is useful for first-time installations of Guix System. For instance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35054 +#: guix-git/doc/guix.texi:35493 #, no-wrap msgid "guix system init my-os-config.scm /mnt\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35061 +#: guix-git/doc/guix.texi:35500 msgid "copies to @file{/mnt} all the store items required by the configuration specified in @file{my-os-config.scm}. This includes configuration files, packages, and so on. It also creates other essential files needed for the system to operate correctly---e.g., the @file{/etc}, @file{/var}, and @file{/run} directories, and the @file{/bin/sh} file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35065 +#: guix-git/doc/guix.texi:35504 msgid "This command also installs bootloader on the targets specified in @file{my-os-config}, unless the @option{--no-bootloader} option was passed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35066 +#: guix-git/doc/guix.texi:35505 #, no-wrap msgid "vm" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35067 guix-git/doc/guix.texi:35634 +#: guix-git/doc/guix.texi:35506 guix-git/doc/guix.texi:36124 #, no-wrap msgid "virtual machine" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35068 +#: guix-git/doc/guix.texi:35507 #, no-wrap msgid "VM" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35072 +#: guix-git/doc/guix.texi:35511 msgid "guix system vm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35072 +#: guix-git/doc/guix.texi:35511 msgid "Build a virtual machine (VM) that contains the operating system declared in @var{file}, and return a script to run that VM." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35080 +#: guix-git/doc/guix.texi:35519 msgid "The @code{vm} action and others below can use KVM support in the Linux-libre kernel. Specifically, if the machine has hardware virtualization support, the corresponding KVM kernel module should be loaded, and the @file{/dev/kvm} device node must exist and be readable and writable by the user and by the build users of the daemon (@pxref{Build Environment Setup})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35085 +#: guix-git/doc/guix.texi:35524 msgid "Arguments given to the script are passed to QEMU as in the example below, which enables networking and requests 1@tie{}GiB of RAM for the emulated machine:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35088 +#: guix-git/doc/guix.texi:35527 #, no-wrap msgid "$ /gnu/store/@dots{}-run-vm.sh -m 1024 -smp 2 -nic user,model=virtio-net-pci\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35091 +#: guix-git/doc/guix.texi:35530 msgid "It's possible to combine the two steps into one:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35094 +#: guix-git/doc/guix.texi:35533 #, no-wrap msgid "$ $(guix system vm my-config.scm) -m 1024 -smp 2 -nic user,model=virtio-net-pci\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35097 +#: guix-git/doc/guix.texi:35536 msgid "The VM shares its store with the host system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35102 +#: guix-git/doc/guix.texi:35541 +msgid "By default, the root file system of the VM is mounted volatile; the @option{--persistent} option can be provided to make it persistent instead. In that case, the VM disk-image file will be copied from the store to the @env{TMPDIR} directory to make it writable." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:35546 msgid "Additional file systems can be shared between the host and the VM using the @option{--share} and @option{--expose} command-line options: the former specifies a directory to be shared with write access, while the latter provides read-only access to the shared directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35106 +#: guix-git/doc/guix.texi:35550 msgid "The example below creates a VM in which the user's home directory is accessible read-only, and where the @file{/exchange} directory is a read-write mapping of @file{$HOME/tmp} on the host:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35110 +#: guix-git/doc/guix.texi:35554 #, no-wrap msgid "" "guix system vm my-config.scm \\\n" @@ -62476,56 +63291,56 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35115 +#: guix-git/doc/guix.texi:35559 msgid "On GNU/Linux, the default is to boot directly to the kernel; this has the advantage of requiring only a very tiny root disk image since the store of the host can then be mounted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35120 +#: guix-git/doc/guix.texi:35564 msgid "The @option{--full-boot} option forces a complete boot sequence, starting with the bootloader. This requires more disk space since a root image containing at least the kernel, initrd, and bootloader data files must be created." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35123 +#: guix-git/doc/guix.texi:35567 msgid "The @option{--image-size} option can be used to specify the size of the image." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35130 +#: guix-git/doc/guix.texi:35574 msgid "The @option{--no-graphic} option will instruct @command{guix system} to spawn a headless VM that will use the invoking tty for IO. Among other things, this enables copy-pasting, and scrollback. Use the @kbd{ctrl-a} prefix to issue QEMU commands; e.g. @kbd{ctrl-a h} prints a help, @kbd{ctrl-a x} quits the VM, and @kbd{ctrl-a c} switches between the QEMU monitor and the VM." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35131 +#: guix-git/doc/guix.texi:35575 #, no-wrap msgid "System images, creation in various formats" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35132 +#: guix-git/doc/guix.texi:35576 #, no-wrap msgid "Creating system images in various formats" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35133 +#: guix-git/doc/guix.texi:35577 #, no-wrap msgid "image" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35134 +#: guix-git/doc/guix.texi:35578 #, no-wrap msgid "image, creating disk images" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35146 +#: guix-git/doc/guix.texi:35590 msgid "The @code{image} command can produce various image types. The image type can be selected using the @option{--image-type} option. It defaults to @code{efi-raw}. When its value is @code{iso9660}, the @option{--label} option can be used to specify a volume ID with @code{image}. By default, the root file system of a disk image is mounted non-volatile; the @option{--volatile} option can be provided to make it volatile instead. When using @code{image}, the bootloader installed on the generated image is taken from the provided @code{operating-system} definition. The following example demonstrates how to generate an image that uses the @code{grub-efi-bootloader} bootloader and boot it with QEMU:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35154 +#: guix-git/doc/guix.texi:35598 #, no-wrap msgid "" "image=$(guix system image --image-type=qcow2 \\\n" @@ -62537,45 +63352,45 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35160 +#: guix-git/doc/guix.texi:35604 msgid "When using the @code{efi-raw} image type, a raw disk image is produced; it can be copied as is to a USB stick, for instance. Assuming @code{/dev/sdc} is the device corresponding to a USB stick, one can copy the image to it using the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35163 +#: guix-git/doc/guix.texi:35607 #, no-wrap msgid "# dd if=$(guix system image my-os.scm) of=/dev/sdc status=progress\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35167 +#: guix-git/doc/guix.texi:35611 msgid "The @code{--list-image-types} command lists all the available image types." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35168 +#: guix-git/doc/guix.texi:35612 #, no-wrap msgid "creating virtual machine images" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35177 +#: guix-git/doc/guix.texi:35621 msgid "When using the @code{qcow2} image type, the returned image is in qcow2 format, which the QEMU emulator can efficiently use. @xref{Running Guix in a VM}, for more information on how to run the image in a virtual machine. The @code{grub-bootloader} bootloader is always used independently of what is declared in the @code{operating-system} file passed as argument. This is to make it easier to work with QEMU, which uses the SeaBIOS BIOS by default, expecting a bootloader to be installed in the Master Boot Record (MBR)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35178 +#: guix-git/doc/guix.texi:35622 #, no-wrap msgid "docker-image, creating docker images" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35184 +#: guix-git/doc/guix.texi:35628 msgid "When using the @code{docker} image type, a Docker image is produced. Guix builds the image from scratch, not from a pre-existing Docker base image. As a result, it contains @emph{exactly} what you define in the operating system configuration file. You can then load the image and launch a Docker container using commands like the following:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35189 +#: guix-git/doc/guix.texi:35633 #, no-wrap msgid "" "image_id=\"$(docker load < guix-system-docker-image.tar.gz)\"\n" @@ -62584,43 +63399,43 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35196 +#: guix-git/doc/guix.texi:35640 msgid "This command starts a new Docker container from the specified image. It will boot the Guix system in the usual manner, which means it will start any services you have defined in the operating system configuration. You can get an interactive shell running in the container using @command{docker exec}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35199 +#: guix-git/doc/guix.texi:35643 #, no-wrap msgid "docker exec -ti $container_id /run/current-system/profile/bin/bash --login\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35206 +#: guix-git/doc/guix.texi:35650 msgid "Depending on what you run in the Docker container, it may be necessary to give the container additional permissions. For example, if you intend to build software using Guix inside of the Docker container, you may need to pass the @option{--privileged} option to @code{docker create}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35210 +#: guix-git/doc/guix.texi:35654 msgid "Last, the @option{--network} option applies to @command{guix system docker-image}: it produces an image where network is supposedly shared with the host, and thus without services like nscd or NetworkManager." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35218 +#: guix-git/doc/guix.texi:35662 msgid "Return a script to run the operating system declared in @var{file} within a container. Containers are a set of lightweight isolation mechanisms provided by the kernel Linux-libre. Containers are substantially less resource-demanding than full virtual machines since the kernel, shared objects, and other resources can be shared with the host system; this also means they provide thinner isolation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35222 +#: guix-git/doc/guix.texi:35666 msgid "Currently, the script must be run as root in order to support more than a single user and group. The container shares its store with the host system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35226 +#: guix-git/doc/guix.texi:35670 msgid "As with the @code{vm} action (@pxref{guix system vm}), additional file systems to be shared between the host and container can be specified using the @option{--share} and @option{--expose} options:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35230 +#: guix-git/doc/guix.texi:35674 #, no-wrap msgid "" "guix system container my-config.scm \\\n" @@ -62628,319 +63443,329 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35234 +#: guix-git/doc/guix.texi:35678 msgid "This option requires Linux-libre 3.19 or newer." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35241 guix-git/doc/guix.texi:37710 +#: guix-git/doc/guix.texi:35685 guix-git/doc/guix.texi:38189 msgid "@var{options} can contain any of the common build options (@pxref{Common Build Options}). In addition, @var{options} can contain one of the following:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35250 +#: guix-git/doc/guix.texi:35694 msgid "Consider the operating-system @var{expr} evaluates to. This is an alternative to specifying a file which evaluates to an operating system. This is used to generate the Guix system installer @pxref{Building the Installation Image})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35255 +#: guix-git/doc/guix.texi:35699 msgid "Attempt to build for @var{system} instead of the host system type. This works as per @command{guix build} (@pxref{Invoking guix build})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35260 +#: guix-git/doc/guix.texi:35704 msgid "Return the derivation file name of the given operating system without building anything." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35269 +#: guix-git/doc/guix.texi:35713 msgid "As discussed above, @command{guix system init} and @command{guix system reconfigure} always save provenance information @i{via} a dedicated service (@pxref{Service Reference, @code{provenance-service-type}}). However, other commands don't do that by default. If you wish to, say, create a virtual machine image that contains provenance information, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35272 +#: guix-git/doc/guix.texi:35716 #, no-wrap msgid "guix system image -t qcow2 --save-provenance config.scm\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35279 +#: guix-git/doc/guix.texi:35723 msgid "That way, the resulting image will effectively ``embed its own source'' in the form of meta-data in @file{/run/current-system}. With that information, one can rebuild the image to make sure it really contains what it pretends to contain; or they could use that to derive a variant of the image." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35280 +#: guix-git/doc/guix.texi:35724 #, no-wrap msgid "--image-type=@var{type}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35283 +#: guix-git/doc/guix.texi:35727 msgid "For the @code{image} action, create an image with given @var{type}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35286 +#: guix-git/doc/guix.texi:35730 msgid "When this option is omitted, @command{guix system} uses the @code{efi-raw} image type." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35287 +#: guix-git/doc/guix.texi:35731 #, no-wrap msgid "ISO-9660 format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35288 +#: guix-git/doc/guix.texi:35732 #, no-wrap msgid "CD image format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35289 +#: guix-git/doc/guix.texi:35733 #, no-wrap msgid "DVD image format" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35292 +#: guix-git/doc/guix.texi:35736 msgid "@option{--image-type=iso9660} produces an ISO-9660 image, suitable for burning on CDs and DVDs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35293 +#: guix-git/doc/guix.texi:35737 #, no-wrap msgid "--image-size=@var{size}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35298 +#: guix-git/doc/guix.texi:35742 msgid "For the @code{image} action, create an image of the given @var{size}. @var{size} may be a number of bytes, or it may include a unit as a suffix (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35302 +#: guix-git/doc/guix.texi:35746 msgid "When this option is omitted, @command{guix system} computes an estimate of the image size as a function of the size of the system declared in @var{file}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35307 +#: guix-git/doc/guix.texi:35751 msgid "For the @code{container} action, allow containers to access the host network, that is, do not create a network namespace." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35313 +#: guix-git/doc/guix.texi:35757 #, no-wrap msgid "--skip-checks" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35315 +#: guix-git/doc/guix.texi:35759 msgid "Skip pre-installation safety checks." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35322 +#: guix-git/doc/guix.texi:35766 msgid "By default, @command{guix system init} and @command{guix system reconfigure} perform safety checks: they make sure the file systems that appear in the @code{operating-system} declaration actually exist (@pxref{File Systems}), and that any Linux kernel modules that may be needed at boot time are listed in @code{initrd-modules} (@pxref{Initial RAM Disk}). Passing this option skips these tests altogether." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35325 +#: guix-git/doc/guix.texi:35769 msgid "Instruct @command{guix system reconfigure} to allow system downgrades." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35333 +#: guix-git/doc/guix.texi:35777 msgid "By default, @command{reconfigure} prevents you from downgrading your system. It achieves that by comparing the provenance info of your system (shown by @command{guix system describe}) with that of your @command{guix} command (shown by @command{guix describe}). If the commits for @command{guix} are not descendants of those used for your system, @command{guix system reconfigure} errors out. Passing @option{--allow-downgrades} allows you to bypass these checks." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35339 +#: guix-git/doc/guix.texi:35783 #, no-wrap msgid "on-error" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35340 +#: guix-git/doc/guix.texi:35784 #, no-wrap msgid "on-error strategy" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35341 +#: guix-git/doc/guix.texi:35785 #, no-wrap msgid "error strategy" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35342 +#: guix-git/doc/guix.texi:35786 #, no-wrap msgid "--on-error=@var{strategy}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35345 +#: guix-git/doc/guix.texi:35789 msgid "Apply @var{strategy} when an error occurs when reading @var{file}. @var{strategy} may be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35347 +#: guix-git/doc/guix.texi:35791 #, no-wrap msgid "nothing-special" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35349 +#: guix-git/doc/guix.texi:35793 msgid "Report the error concisely and exit. This is the default strategy." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35350 +#: guix-git/doc/guix.texi:35794 #, no-wrap msgid "backtrace" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35352 +#: guix-git/doc/guix.texi:35796 msgid "Likewise, but also display a backtrace." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35353 +#: guix-git/doc/guix.texi:35797 #, no-wrap msgid "debug" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35359 +#: guix-git/doc/guix.texi:35803 msgid "Report the error and enter Guile's debugger. From there, you can run commands such as @code{,bt} to get a backtrace, @code{,locals} to display local variable values, and more generally inspect the state of the program. @xref{Debug Commands,,, guile, GNU Guile Reference Manual}, for a list of available debugging commands." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35366 +#: guix-git/doc/guix.texi:35810 msgid "Once you have built, configured, re-configured, and re-re-configured your Guix installation, you may find it useful to list the operating system generations available on disk---and that you can choose from the bootloader boot menu:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35369 guix-git/doc/guix.texi:37673 +#: guix-git/doc/guix.texi:35813 guix-git/doc/guix.texi:38152 #, no-wrap msgid "describe" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35372 -msgid "Describe the current system generation: its file name, the kernel and bootloader used, etc., as well as provenance information when available." +#: guix-git/doc/guix.texi:35816 +msgid "Describe the running system generation: its file name, the kernel and bootloader used, etc., as well as provenance information when available." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:35823 +msgid "The @emph{running} system generation---referred to by @file{/run/current-system}---is not necessarily the @emph{current} system generation---referred to by @file{/var/guix/profiles/system}: it differs when, for instance, you chose from the bootloader menu to boot an older generation." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:35827 +msgid "It can also differ from the @emph{booted} system generation---referred to by @file{/run/booted-system}---for instance because you reconfigured the system in the meantime." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35373 guix-git/doc/guix.texi:37677 +#: guix-git/doc/guix.texi:35829 guix-git/doc/guix.texi:38156 #, no-wrap msgid "list-generations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35378 +#: guix-git/doc/guix.texi:35834 msgid "List a summary of each generation of the operating system available on disk, in a human-readable way. This is similar to the @option{--list-generations} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35383 guix-git/doc/guix.texi:37687 +#: guix-git/doc/guix.texi:35839 guix-git/doc/guix.texi:38166 msgid "Optionally, one can specify a pattern, with the same syntax that is used in @command{guix package --list-generations}, to restrict the list of generations displayed. For instance, the following command displays generations that are up to 10 days old:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35386 +#: guix-git/doc/guix.texi:35842 #, no-wrap msgid "$ guix system list-generations 10d\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35393 +#: guix-git/doc/guix.texi:35849 msgid "The @command{guix system} command has even more to offer! The following sub-commands allow you to visualize how your system services relate to each other:" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35395 +#: guix-git/doc/guix.texi:35851 msgid "system-extension-graph" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35397 +#: guix-git/doc/guix.texi:35853 #, no-wrap msgid "extension-graph" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35404 +#: guix-git/doc/guix.texi:35860 msgid "Emit to standard output the @dfn{service extension graph} of the operating system defined in @var{file} (@pxref{Service Composition}, for more information on service extensions). By default the output is in Dot/Graphviz format, but you can choose a different format with @option{--graph-backend}, as with @command{guix graph} (@pxref{Invoking guix graph, @option{--backend}}):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35406 +#: guix-git/doc/guix.texi:35862 msgid "The command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35409 +#: guix-git/doc/guix.texi:35865 #, no-wrap msgid "$ guix system extension-graph @var{file} | xdot -\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35412 +#: guix-git/doc/guix.texi:35868 msgid "shows the extension relations among services." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35414 +#: guix-git/doc/guix.texi:35870 msgid "system-shepherd-graph" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35414 +#: guix-git/doc/guix.texi:35870 #, no-wrap msgid "shepherd-graph" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35419 +#: guix-git/doc/guix.texi:35875 msgid "Emit to standard output the @dfn{dependency graph} of shepherd services of the operating system defined in @var{file}. @xref{Shepherd Services}, for more information and for an example graph." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35422 +#: guix-git/doc/guix.texi:35878 msgid "Again, the default output format is Dot/Graphviz, but you can pass @option{--graph-backend} to select a different one." msgstr "" #. type: section -#: guix-git/doc/guix.texi:35426 +#: guix-git/doc/guix.texi:35882 #, no-wrap msgid "Invoking @code{guix deploy}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35434 +#: guix-git/doc/guix.texi:35890 msgid "We've already seen @code{operating-system} declarations used to manage a machine's configuration locally. Suppose you need to configure multiple machines, though---perhaps you're managing a service on the web that's comprised of several servers. @command{guix deploy} enables you to use those same @code{operating-system} declarations to manage multiple remote hosts at once as a logical ``deployment''." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35439 guix-git/doc/guix.texi:36900 +#: guix-git/doc/guix.texi:35895 guix-git/doc/guix.texi:37390 msgid "The functionality described in this section is still under development and is subject to change. Get in touch with us on @email{guix-devel@@gnu.org}!" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35443 +#: guix-git/doc/guix.texi:35899 #, no-wrap msgid "guix deploy @var{file}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35447 +#: guix-git/doc/guix.texi:35903 msgid "Such an invocation will deploy the machines that the code within @var{file} evaluates to. As an example, @var{file} might contain a definition like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35454 +#: guix-git/doc/guix.texi:35910 #, no-wrap msgid "" ";; This is a Guix deployment of a \"bare bones\" setup, with\n" @@ -62952,7 +63777,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35457 +#: guix-git/doc/guix.texi:35913 #, no-wrap msgid "" "(use-service-modules networking ssh)\n" @@ -62961,7 +63786,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35478 +#: guix-git/doc/guix.texi:35934 #, no-wrap msgid "" "(define %system\n" @@ -62988,7 +63813,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35488 +#: guix-git/doc/guix.texi:35944 #, no-wrap msgid "" "(list (machine\n" @@ -63003,33 +63828,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35501 +#: guix-git/doc/guix.texi:35957 msgid "The file should evaluate to a list of @var{machine} objects. This example, upon being deployed, will create a new generation on the remote system realizing the @code{operating-system} declaration @code{%system}. @code{environment} and @code{configuration} specify how the machine should be provisioned---that is, how the computing resources should be created and managed. The above example does not create any resources, as a @code{'managed-host} is a machine that is already running the Guix system and available over the network. This is a particularly simple case; a more complex deployment may involve, for example, starting virtual machines through a Virtual Private Server (VPS) provider. In such a case, a different @var{environment} type would be used." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35506 +#: guix-git/doc/guix.texi:35962 msgid "Do note that you first need to generate a key pair on the coordinator machine to allow the daemon to export signed archives of files from the store (@pxref{Invoking guix archive}), though this step is automatic on Guix System:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35514 +#: guix-git/doc/guix.texi:35970 msgid "Each target machine must authorize the key of the master machine so that it accepts store items it receives from the coordinator:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35517 +#: guix-git/doc/guix.texi:35973 #, no-wrap msgid "# guix archive --authorize < coordinator-public-key.txt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35528 +#: guix-git/doc/guix.texi:35984 msgid "@code{user}, in this example, specifies the name of the user account to log in as to perform the deployment. Its default value is @code{root}, but root login over SSH may be forbidden in some cases. To work around this, @command{guix deploy} can log in as an unprivileged user and employ @code{sudo} to escalate privileges. This will only work if @code{sudo} is currently installed on the remote and can be invoked non-interactively as @code{user}. That is, the line in @code{sudoers} granting @code{user} the ability to use @code{sudo} must contain the @code{NOPASSWD} tag. This can be accomplished with the following operating system configuration snippet:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35532 +#: guix-git/doc/guix.texi:35988 #, no-wrap msgid "" "(use-modules ...\n" @@ -63038,7 +63863,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35534 +#: guix-git/doc/guix.texi:35990 #, no-wrap msgid "" "(define %user \"username\")\n" @@ -63046,7 +63871,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35542 +#: guix-git/doc/guix.texi:35998 #, no-wrap msgid "" "(operating-system\n" @@ -63060,235 +63885,283 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35547 +#: guix-git/doc/guix.texi:36003 msgid "For more information regarding the format of the @file{sudoers} file, consult @command{man sudoers}." msgstr "" +#. type: Plain text +#: guix-git/doc/guix.texi:36008 +msgid "Once you've deployed a system on a set of machines, you may find it useful to run a command on all of them. The @option{--execute} or @option{-x} option lets you do that; the example below runs @command{uname -a} on all the machines listed in the deployment file:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:36011 +#, no-wrap +msgid "guix deploy @var{file} -x -- uname -a\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36015 +msgid "One thing you may often need to do after deployment is restart specific services on all the machines, which you can do like so:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:36018 +#, no-wrap +msgid "guix deploy @var{file} -x -- herd restart @var{service}\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36022 +msgid "The @command{guix deploy -x} command returns zero if and only if the command succeeded on all the machines." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36027 +msgid "Below are the data types you need to know about when writing a deployment file." +msgstr "" + #. type: deftp -#: guix-git/doc/guix.texi:35548 +#: guix-git/doc/guix.texi:36028 #, no-wrap msgid "{Data Type} machine" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35551 +#: guix-git/doc/guix.texi:36031 msgid "This is the data type representing a single machine in a heterogeneous Guix deployment." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35555 +#: guix-git/doc/guix.texi:36035 msgid "The object of the operating system configuration to deploy." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35556 +#: guix-git/doc/guix.texi:36036 #, no-wrap msgid "environment" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35558 +#: guix-git/doc/guix.texi:36038 msgid "An @code{environment-type} describing how the machine should be provisioned." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35559 +#: guix-git/doc/guix.texi:36039 #, no-wrap msgid "@code{configuration} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35564 +#: guix-git/doc/guix.texi:36044 msgid "An object describing the configuration for the machine's @code{environment}. If the @code{environment} has a default configuration, @code{#f} may be used. If @code{#f} is used for an environment with no default configuration, however, an error will be thrown." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35567 +#: guix-git/doc/guix.texi:36047 #, no-wrap msgid "{Data Type} machine-ssh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35570 +#: guix-git/doc/guix.texi:36050 msgid "This is the data type representing the SSH client parameters for a machine with an @code{environment} of @code{managed-host-environment-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35573 +#: guix-git/doc/guix.texi:36053 #, no-wrap msgid "@code{build-locally?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35575 +#: guix-git/doc/guix.texi:36055 msgid "If false, system derivations will be built on the machine being deployed to." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35575 +#: guix-git/doc/guix.texi:36055 #, no-wrap msgid "system" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35578 +#: guix-git/doc/guix.texi:36058 msgid "The system type describing the architecture of the machine being deployed to---e.g., @code{\"x86_64-linux\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35578 +#: guix-git/doc/guix.texi:36058 #, no-wrap msgid "@code{authorize?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35581 +#: guix-git/doc/guix.texi:36061 msgid "If true, the coordinator's signing key will be added to the remote's ACL keyring." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35583 +#: guix-git/doc/guix.texi:36063 #, no-wrap msgid "@code{identity} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35586 +#: guix-git/doc/guix.texi:36066 msgid "If specified, the path to the SSH private key to use to authenticate with the remote host." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35587 +#: guix-git/doc/guix.texi:36067 #, no-wrap msgid "@code{host-key} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35589 +#: guix-git/doc/guix.texi:36069 msgid "This should be the SSH host key of the machine, which looks like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35592 +#: guix-git/doc/guix.texi:36072 #, no-wrap msgid "ssh-ed25519 AAAAC3Nz@dots{} root@@example.org\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35597 +#: guix-git/doc/guix.texi:36077 msgid "When @code{host-key} is @code{#f}, the server is authenticated against the @file{~/.ssh/known_hosts} file, just like the OpenSSH @command{ssh} client does." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35598 +#: guix-git/doc/guix.texi:36078 #, no-wrap msgid "@code{allow-downgrades?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35600 +#: guix-git/doc/guix.texi:36080 msgid "Whether to allow potential downgrades." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35608 +#: guix-git/doc/guix.texi:36088 msgid "Like @command{guix system reconfigure}, @command{guix deploy} compares the channel commits currently deployed on the remote host (as returned by @command{guix system describe}) to those currently in use (as returned by @command{guix describe}) to determine whether commits currently in use are descendants of those deployed. When this is not the case and @code{allow-downgrades?} is false, it raises an error. This ensures you do not accidentally downgrade remote machines." msgstr "" +#. type: item +#: guix-git/doc/guix.texi:36089 +#, no-wrap +msgid "@code{safety-checks?} (default: @code{#t})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:36095 +msgid "Whether to perform ``safety checks'' before deployment. This includes verifying that devices and file systems referred to in the operating system configuration actually exist on the target machine, and making sure that Linux modules required to access storage devices at boot time are listed in the @code{initrd-modules} field of the operating system." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:36098 +msgid "These safety checks ensure that you do not inadvertently deploy a system that would fail to boot. Be careful before turning them off!" +msgstr "" + #. type: deftp -#: guix-git/doc/guix.texi:35611 +#: guix-git/doc/guix.texi:36101 #, no-wrap msgid "{Data Type} digital-ocean-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35614 +#: guix-git/doc/guix.texi:36104 msgid "This is the data type describing the Droplet that should be created for a machine with an @code{environment} of @code{digital-ocean-environment-type}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35616 +#: guix-git/doc/guix.texi:36106 #, no-wrap msgid "ssh-key" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35619 +#: guix-git/doc/guix.texi:36109 msgid "The path to the SSH private key to use to authenticate with the remote host. In the future, this field may not exist." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35619 +#: guix-git/doc/guix.texi:36109 #, no-wrap msgid "tags" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35622 +#: guix-git/doc/guix.texi:36112 msgid "A list of string ``tags'' that uniquely identify the machine. Must be given such that no two machines in the deployment have the same set of tags." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35622 +#: guix-git/doc/guix.texi:36112 #, no-wrap msgid "region" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35624 +#: guix-git/doc/guix.texi:36114 msgid "A Digital Ocean region slug, such as @code{\"nyc3\"}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35626 +#: guix-git/doc/guix.texi:36116 msgid "A Digital Ocean size slug, such as @code{\"s-1vcpu-1gb\"}" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35626 +#: guix-git/doc/guix.texi:36116 #, no-wrap msgid "enable-ipv6?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35628 +#: guix-git/doc/guix.texi:36118 msgid "Whether or not the droplet should be created with IPv6 networking." msgstr "" #. type: section -#: guix-git/doc/guix.texi:35632 +#: guix-git/doc/guix.texi:36122 #, no-wrap msgid "Running Guix in a Virtual Machine" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35640 +#: guix-git/doc/guix.texi:36130 msgid "To run Guix in a virtual machine (VM), one can use the pre-built Guix VM image distributed at @url{@value{BASE-URL}/guix-system-vm-image-@value{VERSION}.x86_64-linux.qcow2}. This image is a compressed image in QCOW format. You can pass it to an emulator such as @uref{https://qemu.org/, QEMU} (see below for details)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35647 +#: guix-git/doc/guix.texi:36137 msgid "This image boots the Xfce graphical environment and it contains some commonly used tools. You can install more software in the image by running @command{guix package} in a terminal (@pxref{Invoking guix package}). You can also reconfigure the system based on its initial configuration file available as @file{/run/current-system/configuration.scm} (@pxref{Using the Configuration System})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35650 +#: guix-git/doc/guix.texi:36140 msgid "Instead of using this pre-built image, one can also build their own image using @command{guix system image} (@pxref{Invoking guix system})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35651 +#: guix-git/doc/guix.texi:36141 #, no-wrap msgid "QEMU" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35658 +#: guix-git/doc/guix.texi:36148 msgid "If you built your own image, you must copy it out of the store (@pxref{The Store}) and give yourself permission to write to the copy before you can use it. When invoking QEMU, you must choose a system emulator that is suitable for your hardware platform. Here is a minimal QEMU invocation that will boot the result of @command{guix system image -t qcow2} on x86_64 hardware:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35665 +#: guix-git/doc/guix.texi:36155 #, no-wrap msgid "" "$ qemu-system-x86_64 \\\n" @@ -63299,137 +64172,137 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35668 +#: guix-git/doc/guix.texi:36158 msgid "Here is what each of these options means:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35670 +#: guix-git/doc/guix.texi:36160 #, no-wrap msgid "qemu-system-x86_64" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35673 +#: guix-git/doc/guix.texi:36163 msgid "This specifies the hardware platform to emulate. This should match the host." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35674 +#: guix-git/doc/guix.texi:36164 #, no-wrap msgid "-nic user,model=virtio-net-pci" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35682 +#: guix-git/doc/guix.texi:36172 msgid "Enable the unprivileged user-mode network stack. The guest OS can access the host but not vice versa. This is the simplest way to get the guest OS online. @code{model} specifies which network device to emulate: @code{virtio-net-pci} is a special device made for virtualized operating systems and recommended for most uses. Assuming your hardware platform is x86_64, you can get a list of available NIC models by running @command{qemu-system-x86_64 -nic model=help}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35683 +#: guix-git/doc/guix.texi:36173 #, no-wrap msgid "-enable-kvm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35687 +#: guix-git/doc/guix.texi:36177 msgid "If your system has hardware virtualization extensions, enabling the virtual machine support (KVM) of the Linux kernel will make things run faster." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35689 +#: guix-git/doc/guix.texi:36179 #, no-wrap msgid "-m 1024" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35692 +#: guix-git/doc/guix.texi:36182 msgid "RAM available to the guest OS, in mebibytes. Defaults to 128@tie{}MiB, which may be insufficient for some operations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35693 +#: guix-git/doc/guix.texi:36183 #, no-wrap msgid "-device virtio-blk,drive=myhd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35698 +#: guix-git/doc/guix.texi:36188 msgid "Create a @code{virtio-blk} drive called ``myhd''. @code{virtio-blk} is a ``paravirtualization'' mechanism for block devices that allows QEMU to achieve better performance than if it were emulating a complete disk drive. See the QEMU and KVM documentation for more info." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35699 +#: guix-git/doc/guix.texi:36189 #, no-wrap msgid "-drive if=none,file=/tmp/qemu-image,id=myhd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35702 +#: guix-git/doc/guix.texi:36192 msgid "Use our QCOW image, the @file{/tmp/qemu-image} file, as the backing store of the ``myhd'' drive." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35712 +#: guix-git/doc/guix.texi:36202 msgid "The default @command{run-vm.sh} script that is returned by an invocation of @command{guix system vm} does not add a @command{-nic user} flag by default. To get network access from within the vm add the @code{(dhcp-client-service)} to your system definition and start the VM using @command{$(guix system vm config.scm) -nic user}. An important caveat of using @command{-nic user} for networking is that @command{ping} will not work, because it uses the ICMP protocol. You'll have to use a different command to check for network connectivity, for example @command{guix download}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:35713 +#: guix-git/doc/guix.texi:36203 #, no-wrap msgid "Connecting Through SSH" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35721 +#: guix-git/doc/guix.texi:36211 msgid "To enable SSH inside a VM you need to add an SSH server like @code{openssh-service-type} to your VM (@pxref{Networking Services, @code{openssh-service-type}}). In addition you need to forward the SSH port, 22 by default, to the host. You can do this with" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35724 +#: guix-git/doc/guix.texi:36214 #, no-wrap msgid "$(guix system vm config.scm) -nic user,model=virtio-net-pci,hostfwd=tcp::10022-:22\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35727 +#: guix-git/doc/guix.texi:36217 msgid "To connect to the VM you can run" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35730 +#: guix-git/doc/guix.texi:36220 #, no-wrap msgid "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 10022 localhost\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35737 +#: guix-git/doc/guix.texi:36227 msgid "The @command{-p} tells @command{ssh} the port you want to connect to. @command{-o UserKnownHostsFile=/dev/null} prevents @command{ssh} from complaining every time you modify your @command{config.scm} file and the @command{-o StrictHostKeyChecking=no} prevents you from having to allow a connection to an unknown host every time you connect." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35743 +#: guix-git/doc/guix.texi:36233 msgid "If you find the above @samp{hostfwd} example not to be working (e.g., your SSH client hangs attempting to connect to the mapped port of your VM), make sure that your Guix System VM has networking support, such as by using the @code{dhcp-client-service-type} service type." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:35745 +#: guix-git/doc/guix.texi:36235 #, no-wrap msgid "Using @command{virt-viewer} with Spice" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35751 +#: guix-git/doc/guix.texi:36241 msgid "As an alternative to the default @command{qemu} graphical client you can use the @command{remote-viewer} from the @command{virt-viewer} package. To connect pass the @command{-spice port=5930,disable-ticketing} flag to @command{qemu}. See previous section for further information on how to do this." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35754 +#: guix-git/doc/guix.texi:36244 msgid "Spice also allows you to do some nice stuff like share your clipboard with your VM@. To enable that you'll also have to pass the following flags to @command{qemu}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35760 +#: guix-git/doc/guix.texi:36250 #, no-wrap msgid "" "-device virtio-serial-pci,id=virtio-serial0,max_ports=16,bus=pci.0,addr=0x5\n" @@ -63439,81 +64312,81 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35764 +#: guix-git/doc/guix.texi:36254 msgid "You'll also need to add the @code{(spice-vdagent-service)} to your system definition (@pxref{Miscellaneous Services, Spice service})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35771 +#: guix-git/doc/guix.texi:36261 msgid "The previous sections show the available services and how one can combine them in an @code{operating-system} declaration. But how do we define them in the first place? And what is a service anyway?" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35784 +#: guix-git/doc/guix.texi:36274 #, no-wrap msgid "daemons" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35797 +#: guix-git/doc/guix.texi:36287 msgid "Here we define a @dfn{service} as, broadly, something that extends the functionality of the operating system. Often a service is a process---a @dfn{daemon}---started when the system boots: a secure shell server, a Web server, the Guix build daemon, etc. Sometimes a service is a daemon whose execution can be triggered by another daemon---e.g., an FTP server started by @command{inetd} or a D-Bus service activated by @command{dbus-daemon}. Occasionally, a service does not map to a daemon. For instance, the ``account'' service collects user accounts and makes sure they exist when the system runs; the ``udev'' service collects device management rules and makes them available to the eudev daemon; the @file{/etc} service populates the @file{/etc} directory of the system." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35798 +#: guix-git/doc/guix.texi:36288 #, no-wrap msgid "service extensions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35810 +#: guix-git/doc/guix.texi:36300 msgid "Guix system services are connected by @dfn{extensions}. For instance, the secure shell service @emph{extends} the Shepherd---the initialization system, running as PID@tie{}1---by giving it the command lines to start and stop the secure shell daemon (@pxref{Networking Services, @code{openssh-service-type}}); the UPower service extends the D-Bus service by passing it its @file{.service} specification, and extends the udev service by passing it device management rules (@pxref{Desktop Services, @code{upower-service}}); the Guix daemon service extends the Shepherd by passing it the command lines to start and stop the daemon, and extends the account service by passing it a list of required build user accounts (@pxref{Base Services})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35814 +#: guix-git/doc/guix.texi:36304 msgid "All in all, services and their ``extends'' relations form a directed acyclic graph (DAG). If we represent services as boxes and extensions as arrows, a typical system might provide something like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35816 +#: guix-git/doc/guix.texi:36306 msgid "@image{images/service-graph,,5in,Typical service extension graph.}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35817 +#: guix-git/doc/guix.texi:36307 #, no-wrap msgid "system service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35825 +#: guix-git/doc/guix.texi:36315 msgid "At the bottom, we see the @dfn{system service}, which produces the directory containing everything to run and boot the system, as returned by the @command{guix system build} command. @xref{Service Reference}, to learn about the other service types shown here. @xref{system-extension-graph, the @command{guix system extension-graph} command}, for information on how to generate this representation for a particular operating system definition." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35826 +#: guix-git/doc/guix.texi:36316 #, no-wrap msgid "service types" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35832 +#: guix-git/doc/guix.texi:36322 msgid "Technically, developers can define @dfn{service types} to express these relations. There can be any number of services of a given type on the system---for instance, a system running two instances of the GNU secure shell server (lsh) has two instances of @code{lsh-service-type}, with different parameters." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35835 +#: guix-git/doc/guix.texi:36325 msgid "The following section describes the programming interface for service types and services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35842 +#: guix-git/doc/guix.texi:36332 msgid "A @dfn{service type} is a node in the DAG described above. Let us start with a simple example, the service type for the Guix build daemon (@pxref{Invoking guix-daemon}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35852 +#: guix-git/doc/guix.texi:36342 #, no-wrap msgid "" "(define guix-service-type\n" @@ -63527,75 +64400,75 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35856 +#: guix-git/doc/guix.texi:36346 msgid "It defines three things:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35860 +#: guix-git/doc/guix.texi:36350 msgid "A name, whose sole purpose is to make inspection and debugging easier." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35865 +#: guix-git/doc/guix.texi:36355 msgid "A list of @dfn{service extensions}, where each extension designates the target service type and a procedure that, given the parameters of the service, returns a list of objects to extend the service of that type." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35868 +#: guix-git/doc/guix.texi:36358 msgid "Every service type has at least one service extension. The only exception is the @dfn{boot service type}, which is the ultimate service." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35871 +#: guix-git/doc/guix.texi:36361 msgid "Optionally, a default value for instances of this type." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35874 +#: guix-git/doc/guix.texi:36364 msgid "In this example, @code{guix-service-type} extends three services:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35876 +#: guix-git/doc/guix.texi:36366 #, no-wrap msgid "shepherd-root-service-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35881 +#: guix-git/doc/guix.texi:36371 msgid "The @code{guix-shepherd-service} procedure defines how the Shepherd service is extended. Namely, it returns a @code{} object that defines how @command{guix-daemon} is started and stopped (@pxref{Shepherd Services})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35882 +#: guix-git/doc/guix.texi:36372 #, no-wrap msgid "account-service-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35887 +#: guix-git/doc/guix.texi:36377 msgid "This extension for this service is computed by @code{guix-accounts}, which returns a list of @code{user-group} and @code{user-account} objects representing the build user accounts (@pxref{Invoking guix-daemon})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35888 +#: guix-git/doc/guix.texi:36378 #, no-wrap msgid "activation-service-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35892 +#: guix-git/doc/guix.texi:36382 msgid "Here @code{guix-activation} is a procedure that returns a gexp, which is a code snippet to run at ``activation time''---e.g., when the service is booted." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35895 +#: guix-git/doc/guix.texi:36385 msgid "A service of this type is instantiated like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35901 +#: guix-git/doc/guix.texi:36391 #, no-wrap msgid "" "(service guix-service-type\n" @@ -63605,28 +64478,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35909 +#: guix-git/doc/guix.texi:36399 msgid "The second argument to the @code{service} form is a value representing the parameters of this specific service instance. @xref{guix-configuration-type, @code{guix-configuration}}, for information about the @code{guix-configuration} data type. When the value is omitted, the default value specified by @code{guix-service-type} is used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35912 +#: guix-git/doc/guix.texi:36402 #, no-wrap msgid "(service guix-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35916 +#: guix-git/doc/guix.texi:36406 msgid "@code{guix-service-type} is quite simple because it extends other services but is not extensible itself." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35920 +#: guix-git/doc/guix.texi:36410 msgid "The service type for an @emph{extensible} service looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35927 +#: guix-git/doc/guix.texi:36417 #, no-wrap msgid "" "(define udev-service-type\n" @@ -63638,7 +64511,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35935 +#: guix-git/doc/guix.texi:36425 #, no-wrap msgid "" " (compose concatenate) ;concatenate the list of rules\n" @@ -63651,96 +64524,96 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35941 +#: guix-git/doc/guix.texi:36431 msgid "This is the service type for the @uref{https://wiki.gentoo.org/wiki/Project:Eudev, eudev device management daemon}. Compared to the previous example, in addition to an extension of @code{shepherd-root-service-type}, we see two new fields:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35943 +#: guix-git/doc/guix.texi:36433 #, no-wrap msgid "compose" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35946 +#: guix-git/doc/guix.texi:36436 msgid "This is the procedure to @dfn{compose} the list of extensions to services of this type." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35949 +#: guix-git/doc/guix.texi:36439 msgid "Services can extend the udev service by passing it lists of rules; we compose those extensions simply by concatenating them." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35950 +#: guix-git/doc/guix.texi:36440 #, no-wrap msgid "extend" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35953 +#: guix-git/doc/guix.texi:36443 msgid "This procedure defines how the value of the service is @dfn{extended} with the composition of the extensions." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35958 +#: guix-git/doc/guix.texi:36448 msgid "Udev extensions are composed into a list of rules, but the udev service value is itself a @code{} record. So here, we extend that record by appending the list of rules it contains to the list of contributed rules." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35964 +#: guix-git/doc/guix.texi:36454 msgid "This is a string giving an overview of the service type. The string can contain Texinfo markup (@pxref{Overview,,, texinfo, GNU Texinfo}). The @command{guix system search} command searches these strings and displays them (@pxref{Invoking guix system})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35969 +#: guix-git/doc/guix.texi:36459 msgid "There can be only one instance of an extensible service type such as @code{udev-service-type}. If there were more, the @code{service-extension} specifications would be ambiguous." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35972 +#: guix-git/doc/guix.texi:36462 msgid "Still here? The next section provides a reference of the programming interface for services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35980 +#: guix-git/doc/guix.texi:36470 msgid "We have seen an overview of service types (@pxref{Service Types and Services}). This section provides a reference on how to manipulate services and service types. This interface is provided by the @code{(gnu services)} module." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35981 +#: guix-git/doc/guix.texi:36471 #, no-wrap msgid "{Scheme Procedure} service @var{type} [@var{value}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35985 +#: guix-git/doc/guix.texi:36475 msgid "Return a new service of @var{type}, a @code{} object (see below). @var{value} can be any object; it represents the parameters of this particular service instance." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35989 +#: guix-git/doc/guix.texi:36479 msgid "When @var{value} is omitted, the default value specified by @var{type} is used; if @var{type} does not specify a default value, an error is raised." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35991 +#: guix-git/doc/guix.texi:36481 msgid "For instance, this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35994 +#: guix-git/doc/guix.texi:36484 #, no-wrap msgid "(service openssh-service-type)\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35998 +#: guix-git/doc/guix.texi:36488 msgid "is equivalent to this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36002 +#: guix-git/doc/guix.texi:36492 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -63748,50 +64621,50 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36006 +#: guix-git/doc/guix.texi:36496 msgid "In both cases the result is an instance of @code{openssh-service-type} with the default configuration." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36008 +#: guix-git/doc/guix.texi:36498 #, no-wrap msgid "{Scheme Procedure} service? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36010 +#: guix-git/doc/guix.texi:36500 msgid "Return true if @var{obj} is a service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36012 +#: guix-git/doc/guix.texi:36502 #, no-wrap msgid "{Scheme Procedure} service-kind @var{service}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36014 +#: guix-git/doc/guix.texi:36504 msgid "Return the type of @var{service}---i.e., a @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36016 +#: guix-git/doc/guix.texi:36506 #, no-wrap msgid "{Scheme Procedure} service-value @var{service}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36019 +#: guix-git/doc/guix.texi:36509 msgid "Return the value associated with @var{service}. It represents its parameters." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36022 +#: guix-git/doc/guix.texi:36512 msgid "Here is an example of how a service is created and manipulated:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36031 +#: guix-git/doc/guix.texi:36521 #, no-wrap msgid "" "(define s\n" @@ -63805,7 +64678,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36034 +#: guix-git/doc/guix.texi:36524 #, no-wrap msgid "" "(service? s)\n" @@ -63814,7 +64687,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36037 +#: guix-git/doc/guix.texi:36527 #, no-wrap msgid "" "(eq? (service-kind s) nginx-service-type)\n" @@ -63822,210 +64695,210 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36047 +#: guix-git/doc/guix.texi:36537 msgid "The @code{modify-services} form provides a handy way to change the parameters of some of the services of a list such as @code{%base-services} (@pxref{Base Services, @code{%base-services}}). It evaluates to a list of services. Of course, you could always use standard list combinators such as @code{map} and @code{fold} to do that (@pxref{SRFI-1, List Library,, guile, GNU Guile Reference Manual}); @code{modify-services} simply provides a more concise form for this common pattern." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36048 +#: guix-git/doc/guix.texi:36538 #, no-wrap msgid "{Scheme Syntax} modify-services @var{services} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36050 +#: guix-git/doc/guix.texi:36540 msgid "(@var{type} @var{variable} => @var{body}) @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36053 +#: guix-git/doc/guix.texi:36543 msgid "Modify the services listed in @var{services} according to the given clauses. Each clause has the form:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36056 +#: guix-git/doc/guix.texi:36546 #, no-wrap msgid "(@var{type} @var{variable} => @var{body})\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36063 +#: guix-git/doc/guix.texi:36553 msgid "where @var{type} is a service type---e.g., @code{guix-service-type}---and @var{variable} is an identifier that is bound within the @var{body} to the service parameters---e.g., a @code{guix-configuration} instance---of the original service of that @var{type}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36070 +#: guix-git/doc/guix.texi:36560 msgid "The @var{body} should evaluate to the new service parameters, which will be used to configure the new service. This new service will replace the original in the resulting list. Because a service's service parameters are created using @code{define-record-type*}, you can write a succinct @var{body} that evaluates to the new service parameters by using the @code{inherit} feature that @code{define-record-type*} provides." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36072 +#: guix-git/doc/guix.texi:36562 msgid "Clauses can also have the following form:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36075 +#: guix-git/doc/guix.texi:36565 #, no-wrap msgid "(delete @var{type})\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36079 +#: guix-git/doc/guix.texi:36569 msgid "Such a clause removes all services of the given @var{type} from @var{services}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36081 +#: guix-git/doc/guix.texi:36571 msgid "@xref{Using the Configuration System}, for example usage." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36088 +#: guix-git/doc/guix.texi:36578 msgid "Next comes the programming interface for service types. This is something you want to know when writing new service definitions, but not necessarily when simply looking for ways to customize your @code{operating-system} declaration." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36089 +#: guix-git/doc/guix.texi:36579 #, no-wrap msgid "{Data Type} service-type" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36090 +#: guix-git/doc/guix.texi:36580 #, no-wrap msgid "service type" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36093 +#: guix-git/doc/guix.texi:36583 msgid "This is the representation of a @dfn{service type} (@pxref{Service Types and Services})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36097 +#: guix-git/doc/guix.texi:36587 msgid "This is a symbol, used only to simplify inspection and debugging." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:36098 +#: guix-git/doc/guix.texi:36588 #, no-wrap msgid "extensions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36100 +#: guix-git/doc/guix.texi:36590 msgid "A non-empty list of @code{} objects (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36101 +#: guix-git/doc/guix.texi:36591 #, no-wrap msgid "@code{compose} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36105 +#: guix-git/doc/guix.texi:36595 msgid "If this is @code{#f}, then the service type denotes services that cannot be extended---i.e., services that do not receive ``values'' from other services." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36109 +#: guix-git/doc/guix.texi:36599 msgid "Otherwise, it must be a one-argument procedure. The procedure is called by @code{fold-services} and is passed a list of values collected from extensions. It may return any single value." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36110 +#: guix-git/doc/guix.texi:36600 #, no-wrap msgid "@code{extend} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36112 +#: guix-git/doc/guix.texi:36602 msgid "If this is @code{#f}, services of this type cannot be extended." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36118 +#: guix-git/doc/guix.texi:36608 msgid "Otherwise, it must be a two-argument procedure: @code{fold-services} calls it, passing it the initial value of the service as the first argument and the result of applying @code{compose} to the extension values as the second argument. It must return a value that is a valid parameter value for the service instance." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36124 +#: guix-git/doc/guix.texi:36614 msgid "This is a string, possibly using Texinfo markup, describing in a couple of sentences what the service is about. This string allows users to find about the service through @command{guix system search} (@pxref{Invoking guix system})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36125 +#: guix-git/doc/guix.texi:36615 #, no-wrap msgid "@code{default-value} (default: @code{&no-default-value})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36128 +#: guix-git/doc/guix.texi:36618 msgid "The default value associated for instances of this service type. This allows users to use the @code{service} form without its second argument:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36131 +#: guix-git/doc/guix.texi:36621 #, no-wrap msgid "(service @var{type})\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36135 +#: guix-git/doc/guix.texi:36625 msgid "The returned service in this case has the default value specified by @var{type}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36138 +#: guix-git/doc/guix.texi:36628 msgid "@xref{Service Types and Services}, for examples." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36140 +#: guix-git/doc/guix.texi:36630 #, no-wrap msgid "{Scheme Procedure} service-extension @var{target-type} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36146 +#: guix-git/doc/guix.texi:36636 msgid "@var{compute} Return a new extension for services of type @var{target-type}. @var{compute} must be a one-argument procedure: @code{fold-services} calls it, passing it the value associated with the service that provides the extension; it must return a valid value for the target service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36148 +#: guix-git/doc/guix.texi:36638 #, no-wrap msgid "{Scheme Procedure} service-extension? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36150 +#: guix-git/doc/guix.texi:36640 msgid "Return true if @var{obj} is a service extension." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36156 +#: guix-git/doc/guix.texi:36646 msgid "Occasionally, you might want to simply extend an existing service. This involves creating a new service type and specifying the extension of interest, which can be verbose; the @code{simple-service} procedure provides a shorthand for this." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36157 +#: guix-git/doc/guix.texi:36647 #, no-wrap msgid "{Scheme Procedure} simple-service @var{name} @var{target} @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36161 +#: guix-git/doc/guix.texi:36651 msgid "Return a service that extends @var{target} with @var{value}. This works by creating a singleton service type @var{name}, of which the returned service is an instance." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36164 +#: guix-git/doc/guix.texi:36654 msgid "For example, this extends mcron (@pxref{Scheduled Job Execution}) with an additional job:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36168 +#: guix-git/doc/guix.texi:36658 #, no-wrap msgid "" "(simple-service 'my-mcron-job mcron-service-type\n" @@ -64033,185 +64906,185 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36178 +#: guix-git/doc/guix.texi:36668 msgid "At the core of the service abstraction lies the @code{fold-services} procedure, which is responsible for ``compiling'' a list of services down to a single directory that contains everything needed to boot and run the system---the directory shown by the @command{guix system build} command (@pxref{Invoking guix system}). In essence, it propagates service extensions down the service graph, updating each node parameters on the way, until it reaches the root node." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36179 +#: guix-git/doc/guix.texi:36669 #, no-wrap msgid "{Scheme Procedure} fold-services @var{services} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36183 +#: guix-git/doc/guix.texi:36673 msgid "[#:target-type @var{system-service-type}] Fold @var{services} by propagating their extensions down to the root of type @var{target-type}; return the root service adjusted accordingly." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36187 +#: guix-git/doc/guix.texi:36677 msgid "Lastly, the @code{(gnu services)} module also defines several essential service types, some of which are listed below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36188 +#: guix-git/doc/guix.texi:36678 #, no-wrap msgid "{Scheme Variable} system-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36191 +#: guix-git/doc/guix.texi:36681 msgid "This is the root of the service graph. It produces the system directory as returned by the @command{guix system build} command." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36193 +#: guix-git/doc/guix.texi:36683 #, no-wrap msgid "{Scheme Variable} boot-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36196 +#: guix-git/doc/guix.texi:36686 msgid "The type of the ``boot service'', which produces the @dfn{boot script}. The boot script is what the initial RAM disk runs when booting." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36198 +#: guix-git/doc/guix.texi:36688 #, no-wrap msgid "{Scheme Variable} etc-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36202 +#: guix-git/doc/guix.texi:36692 msgid "The type of the @file{/etc} service. This service is used to create files under @file{/etc} and can be extended by passing it name/file tuples such as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36205 +#: guix-git/doc/guix.texi:36695 #, no-wrap msgid "(list `(\"issue\" ,(plain-file \"issue\" \"Welcome!\\n\")))\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36209 +#: guix-git/doc/guix.texi:36699 msgid "In this example, the effect would be to add an @file{/etc/issue} file pointing to the given file." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36211 +#: guix-git/doc/guix.texi:36701 #, no-wrap msgid "{Scheme Variable} setuid-program-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36215 +#: guix-git/doc/guix.texi:36705 msgid "Type for the ``setuid-program service''. This service collects lists of executable file names, passed as gexps, and adds them to the set of setuid-root programs on the system (@pxref{Setuid Programs})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36217 +#: guix-git/doc/guix.texi:36707 #, no-wrap msgid "{Scheme Variable} profile-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36221 +#: guix-git/doc/guix.texi:36711 msgid "Type of the service that populates the @dfn{system profile}---i.e., the programs under @file{/run/current-system/profile}. Other services can extend it by passing it lists of packages to add to the system profile." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:36225 +#: guix-git/doc/guix.texi:36715 msgid "provenance-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36225 +#: guix-git/doc/guix.texi:36715 #, no-wrap msgid "{Scheme Variable} provenance-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36229 +#: guix-git/doc/guix.texi:36719 msgid "This is the type of the service that records @dfn{provenance meta-data} in the system itself. It creates several files under @file{/run/current-system}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36231 +#: guix-git/doc/guix.texi:36721 #, no-wrap msgid "channels.scm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36236 +#: guix-git/doc/guix.texi:36726 msgid "This is a ``channel file'' that can be passed to @command{guix pull -C} or @command{guix time-machine -C}, and which describes the channels used to build the system, if that information was available (@pxref{Channels})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36237 +#: guix-git/doc/guix.texi:36727 #, no-wrap msgid "configuration.scm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36242 +#: guix-git/doc/guix.texi:36732 msgid "This is the file that was passed as the value for this @code{provenance-service-type} service. By default, @command{guix system reconfigure} automatically passes the OS configuration file it received on the command line." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36243 +#: guix-git/doc/guix.texi:36733 #, no-wrap msgid "provenance" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36246 +#: guix-git/doc/guix.texi:36736 msgid "This contains the same information as the two other files but in a format that is more readily processable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36250 +#: guix-git/doc/guix.texi:36740 msgid "In general, these two pieces of information (channels and configuration file) are enough to reproduce the operating system ``from source''." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36251 +#: guix-git/doc/guix.texi:36741 #, no-wrap msgid "Caveats" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36258 +#: guix-git/doc/guix.texi:36748 msgid "This information is necessary to rebuild your operating system, but it is not always sufficient. In particular, @file{configuration.scm} itself is insufficient if it is not self-contained---if it refers to external Guile modules or to extra files. If you want @file{configuration.scm} to be self-contained, we recommend that modules or files it refers to be part of a channel." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36266 +#: guix-git/doc/guix.texi:36756 msgid "Besides, provenance meta-data is ``silent'' in the sense that it does not change the bits contained in your system, @emph{except for the meta-data bits themselves}. Two different OS configurations or sets of channels can lead to the same system, bit-for-bit; when @code{provenance-service-type} is used, these two systems will have different meta-data and thus different store file names, which makes comparison less trivial." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36271 +#: guix-git/doc/guix.texi:36761 msgid "This service is automatically added to your operating system configuration when you use @command{guix system reconfigure}, @command{guix system init}, or @command{guix deploy}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36273 +#: guix-git/doc/guix.texi:36763 #, no-wrap msgid "{Scheme Variable} linux-loadable-module-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36277 +#: guix-git/doc/guix.texi:36767 msgid "Type of the service that collects lists of packages containing kernel-loadable modules, and adds them to the set of kernel-loadable modules." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36280 +#: guix-git/doc/guix.texi:36770 msgid "This service type is intended to be extended by other service types, such as below:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36286 +#: guix-git/doc/guix.texi:36776 #, no-wrap msgid "" "(simple-service 'installing-module\n" @@ -64221,192 +65094,192 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36290 +#: guix-git/doc/guix.texi:36780 msgid "This does not actually load modules at bootup, only adds it to the kernel profile so that it @emph{can} be loaded by other means." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36295 guix-git/doc/guix.texi:37447 +#: guix-git/doc/guix.texi:36785 #, no-wrap msgid "shepherd services" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36296 +#: guix-git/doc/guix.texi:36786 #, no-wrap msgid "PID 1" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36297 +#: guix-git/doc/guix.texi:36787 #, no-wrap msgid "init system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36303 +#: guix-git/doc/guix.texi:36793 msgid "The @code{(gnu services shepherd)} module provides a way to define services managed by the GNU@tie{}Shepherd, which is the initialization system---the first process that is started when the system boots, also known as PID@tie{}1 (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36309 +#: guix-git/doc/guix.texi:36799 msgid "Services in the Shepherd can depend on each other. For instance, the SSH daemon may need to be started after the syslog daemon has been started, which in turn can only happen once all the file systems have been mounted. The simple operating system defined earlier (@pxref{Using the Configuration System}) results in a service graph like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36311 +#: guix-git/doc/guix.texi:36801 msgid "@image{images/shepherd-graph,,5in,Typical shepherd service graph.}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36315 +#: guix-git/doc/guix.texi:36805 msgid "You can actually generate such a graph for any operating system definition using the @command{guix system shepherd-graph} command (@pxref{system-shepherd-graph, @command{guix system shepherd-graph}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36319 +#: guix-git/doc/guix.texi:36809 msgid "The @code{%shepherd-root-service} is a service object representing PID@tie{}1, of type @code{shepherd-root-service-type}; it can be extended by passing it lists of @code{} objects." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36320 +#: guix-git/doc/guix.texi:36810 #, no-wrap msgid "{Data Type} shepherd-service" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36322 +#: guix-git/doc/guix.texi:36812 msgid "The data type representing a service managed by the Shepherd." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:36324 +#: guix-git/doc/guix.texi:36814 #, no-wrap msgid "provision" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36326 +#: guix-git/doc/guix.texi:36816 msgid "This is a list of symbols denoting what the service provides." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36331 +#: guix-git/doc/guix.texi:36821 msgid "These are the names that may be passed to @command{herd start}, @command{herd status}, and similar commands (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual}). @xref{Slots of services, the @code{provides} slot,, shepherd, The GNU Shepherd Manual}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36332 +#: guix-git/doc/guix.texi:36822 #, no-wrap msgid "@code{requirement} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36334 +#: guix-git/doc/guix.texi:36824 msgid "List of symbols denoting the Shepherd services this one depends on." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36335 +#: guix-git/doc/guix.texi:36825 #, no-wrap msgid "one-shot services, for the Shepherd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36340 +#: guix-git/doc/guix.texi:36830 msgid "Whether this service is @dfn{one-shot}. One-shot services stop immediately after their @code{start} action has completed. @xref{Slots of services,,, shepherd, The GNU Shepherd Manual}, for more info." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36341 +#: guix-git/doc/guix.texi:36831 #, no-wrap msgid "@code{respawn?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36344 +#: guix-git/doc/guix.texi:36834 msgid "Whether to restart the service when it stops, for instance when the underlying process dies." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:36345 +#: guix-git/doc/guix.texi:36835 #, no-wrap msgid "start" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:36346 +#: guix-git/doc/guix.texi:36836 #, no-wrap msgid "@code{stop} (default: @code{#~(const #f)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36352 +#: guix-git/doc/guix.texi:36842 msgid "The @code{start} and @code{stop} fields refer to the Shepherd's facilities to start and stop processes (@pxref{Service De- and Constructors,,, shepherd, The GNU Shepherd Manual}). They are given as G-expressions that get expanded in the Shepherd configuration file (@pxref{G-Expressions})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36353 +#: guix-git/doc/guix.texi:36843 #, no-wrap msgid "@code{actions} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36354 +#: guix-git/doc/guix.texi:36844 #, no-wrap msgid "actions, of Shepherd services" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36359 +#: guix-git/doc/guix.texi:36849 msgid "This is a list of @code{shepherd-action} objects (see below) defining @dfn{actions} supported by the service, in addition to the standard @code{start} and @code{stop} actions. Actions listed here become available as @command{herd} sub-commands:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36362 +#: guix-git/doc/guix.texi:36852 #, no-wrap msgid "herd @var{action} @var{service} [@var{arguments}@dots{}]\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36364 +#: guix-git/doc/guix.texi:36854 #, no-wrap msgid "@code{auto-start?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36367 +#: guix-git/doc/guix.texi:36857 msgid "Whether this service should be started automatically by the Shepherd. If it is @code{#f} the service has to be started manually with @code{herd start}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36370 +#: guix-git/doc/guix.texi:36860 msgid "A documentation string, as shown when running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36373 +#: guix-git/doc/guix.texi:36863 #, no-wrap msgid "herd doc @var{service-name}\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36377 +#: guix-git/doc/guix.texi:36867 msgid "where @var{service-name} is one of the symbols in @code{provision} (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36381 +#: guix-git/doc/guix.texi:36871 msgid "This is the list of modules that must be in scope when @code{start} and @code{stop} are evaluated." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36389 +#: guix-git/doc/guix.texi:36879 msgid "The example below defines a Shepherd service that spawns @command{syslogd}, the system logger from the GNU Networking Utilities (@pxref{syslogd invocation, @command{syslogd},, inetutils, GNU Inetutils}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36401 +#: guix-git/doc/guix.texi:36891 #, no-wrap msgid "" "(let ((config (plain-file \"syslogd.conf\" \"@dots{}\")))\n" @@ -64422,55 +65295,55 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36416 +#: guix-git/doc/guix.texi:36906 msgid "Key elements in this example are the @code{start} and @code{stop} fields: they are @dfn{staged} code snippets that use the @code{make-forkexec-constructor} procedure provided by the Shepherd and its dual, @code{make-kill-destructor} (@pxref{Service De- and Constructors,,, shepherd, The GNU Shepherd Manual}). The @code{start} field will have @command{shepherd} spawn @command{syslogd} with the given option; note that we pass @code{config} after @option{--rcfile}, which is a configuration file declared above (contents of this file are omitted). Likewise, the @code{stop} field tells how this service is to be stopped; in this case, it is stopped by making the @code{kill} system call on its PID@. Code staging is achieved using G-expressions: @code{#~} stages code, while @code{#$} ``escapes'' back to host code (@pxref{G-Expressions})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36417 +#: guix-git/doc/guix.texi:36907 #, no-wrap msgid "{Data Type} shepherd-action" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36420 +#: guix-git/doc/guix.texi:36910 msgid "This is the data type that defines additional actions implemented by a Shepherd service (see above)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36424 +#: guix-git/doc/guix.texi:36914 msgid "Symbol naming the action." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36427 +#: guix-git/doc/guix.texi:36917 msgid "This is a documentation string for the action. It can be viewed by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36430 +#: guix-git/doc/guix.texi:36920 #, no-wrap msgid "herd doc @var{service} action @var{action}\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36432 +#: guix-git/doc/guix.texi:36922 #, no-wrap msgid "procedure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36436 +#: guix-git/doc/guix.texi:36926 msgid "This should be a gexp that evaluates to a procedure of at least one argument, which is the ``running value'' of the service (@pxref{Slots of services,,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36440 +#: guix-git/doc/guix.texi:36930 msgid "The following example defines an action called @code{say-hello} that kindly greets the user:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36449 +#: guix-git/doc/guix.texi:36939 #, no-wrap msgid "" "(shepherd-action\n" @@ -64483,12 +65356,12 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36452 +#: guix-git/doc/guix.texi:36942 msgid "Assuming this action is added to the @code{example} service, then you can do:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36458 +#: guix-git/doc/guix.texi:36948 #, no-wrap msgid "" "# herd say-hello example\n" @@ -64498,66 +65371,66 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36463 +#: guix-git/doc/guix.texi:36953 msgid "This, as you can see, is a fairly sophisticated way to say hello. @xref{Service Convenience,,, shepherd, The GNU Shepherd Manual}, for more info on actions." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36465 +#: guix-git/doc/guix.texi:36955 #, no-wrap msgid "{Scheme Variable} shepherd-root-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36467 +#: guix-git/doc/guix.texi:36957 msgid "The service type for the Shepherd ``root service''---i.e., PID@tie{}1." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36472 +#: guix-git/doc/guix.texi:36962 msgid "This is the service type that extensions target when they want to create shepherd services (@pxref{Service Types and Services}, for an example). Each extension must pass a list of @code{}. Its value must be a @code{shepherd-configuration}, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36474 +#: guix-git/doc/guix.texi:36964 #, no-wrap msgid "{Data Type} shepherd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36476 guix-git/doc/guix.texi:37463 +#: guix-git/doc/guix.texi:36966 guix-git/doc/guix.texi:37959 msgid "This data type represents the Shepherd's configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36478 guix-git/doc/guix.texi:37465 +#: guix-git/doc/guix.texi:36968 guix-git/doc/guix.texi:37961 #, no-wrap msgid "shepherd (default: @code{shepherd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36480 guix-git/doc/guix.texi:37467 +#: guix-git/doc/guix.texi:36970 guix-git/doc/guix.texi:37963 msgid "The Shepherd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36481 guix-git/doc/guix.texi:37471 +#: guix-git/doc/guix.texi:36971 guix-git/doc/guix.texi:37967 #, no-wrap msgid "services (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36485 guix-git/doc/guix.texi:37475 +#: guix-git/doc/guix.texi:36975 guix-git/doc/guix.texi:37971 msgid "A list of @code{} to start. You should probably use the service extension mechanism instead (@pxref{Shepherd Services})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36490 +#: guix-git/doc/guix.texi:36980 msgid "The following example specifies the Shepherd package for the operating system:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36505 +#: guix-git/doc/guix.texi:36995 #, no-wrap msgid "" "(operating-system\n" @@ -64576,51 +65449,51 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36507 +#: guix-git/doc/guix.texi:36997 #, no-wrap msgid "{Scheme Variable} %shepherd-root-service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36509 +#: guix-git/doc/guix.texi:36999 msgid "This service represents PID@tie{}1." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36513 +#: guix-git/doc/guix.texi:37003 #, fuzzy, no-wrap #| msgid "Documentation" msgid "complex configurations" msgstr "Documentazione" #. type: Plain text -#: guix-git/doc/guix.texi:36518 +#: guix-git/doc/guix.texi:37008 msgid "Some programs might have rather complex configuration files or formats, and to make it easier to create Scheme bindings for these configuration files, you can use the utilities defined in the @code{(gnu services configuration)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36526 +#: guix-git/doc/guix.texi:37016 msgid "The main utility is the @code{define-configuration} macro, which you will use to define a Scheme record type (@pxref{Record Overview,,, guile, GNU Guile Reference Manual}). The Scheme record will be serialized to a configuration file by using @dfn{serializers}, which are procedures that take some kind of Scheme value and returns a G-expression (@pxref{G-Expressions}), which should, once serialized to the disk, return a string. More details are listed below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36527 +#: guix-git/doc/guix.texi:37017 #, no-wrap msgid "{Scheme Syntax} define-configuration @var{name} @var{clause1} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36531 +#: guix-git/doc/guix.texi:37021 msgid "@var{clause2} ... Create a record type named @code{@var{name}} that contains the fields found in the clauses." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36533 +#: guix-git/doc/guix.texi:37023 msgid "A clause can have one of the following forms:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36538 +#: guix-git/doc/guix.texi:37028 #, no-wrap msgid "" "(@var{field-name}\n" @@ -64630,7 +65503,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36543 +#: guix-git/doc/guix.texi:37033 #, no-wrap msgid "" "(@var{field-name}\n" @@ -64641,7 +65514,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36547 +#: guix-git/doc/guix.texi:37037 #, no-wrap msgid "" "(@var{field-name}\n" @@ -64651,7 +65524,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36552 +#: guix-git/doc/guix.texi:37042 #, no-wrap msgid "" "(@var{field-name}\n" @@ -64661,37 +65534,37 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36556 +#: guix-git/doc/guix.texi:37046 msgid "@var{field-name} is an identifier that denotes the name of the field in the generated record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36564 +#: guix-git/doc/guix.texi:37054 msgid "@var{type} is the type of the value corresponding to @var{field-name}; since Guile is untyped, a predicate procedure---@code{@var{type}?}---will be called on the value corresponding to the field to ensure that the value is of the correct type. This means that if say, @var{type} is @code{package}, then a procedure named @code{package?} will be applied on the value to make sure that it is indeed a @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36568 +#: guix-git/doc/guix.texi:37058 msgid "@var{default-value} is the default value corresponding to the field; if none is specified, the user is forced to provide a value when creating an object of the record type." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36573 +#: guix-git/doc/guix.texi:37063 msgid "@var{documentation} is a string formatted with Texinfo syntax which should provide a description of what setting this field does." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36580 +#: guix-git/doc/guix.texi:37070 msgid "@var{serializer} is the name of a procedure which takes two arguments, the first is the name of the field, and the second is the value corresponding to the field. The procedure should return a string or G-expression (@pxref{G-Expressions}) that represents the content that will be serialized to the configuration file. If none is specified, a procedure of the name @code{serialize-@var{type}} will be used." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36582 +#: guix-git/doc/guix.texi:37072 msgid "A simple serializer procedure could look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36587 +#: guix-git/doc/guix.texi:37077 #, no-wrap msgid "" "(define (serialize-boolean field-name value)\n" @@ -64700,12 +65573,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36598 +#: guix-git/doc/guix.texi:37088 msgid "In some cases multiple different configuration records might be defined in the same file, but their serializers for the same type might have to be different, because they have different configuration formats. For example, the @code{serialize-boolean} procedure for the Getmail service would have to be different for the one for the Transmission service. To make it easier to deal with this situation, one can specify a serializer prefix by using the @code{prefix} literal in the @code{define-configuration} form. This means that one doesn't have to manually specify a custom @var{serializer} for every field." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36602 +#: guix-git/doc/guix.texi:37092 #, no-wrap msgid "" "(define (foo-serialize-string field-name value)\n" @@ -64714,7 +65587,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36605 +#: guix-git/doc/guix.texi:37095 #, no-wrap msgid "" "(define (bar-serialize-string field-name value)\n" @@ -64723,7 +65596,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36611 +#: guix-git/doc/guix.texi:37101 #, no-wrap msgid "" "(define-configuration foo-configuration\n" @@ -64735,7 +65608,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36617 +#: guix-git/doc/guix.texi:37107 #, no-wrap msgid "" "(define-configuration bar-configuration\n" @@ -64746,12 +65619,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36623 +#: guix-git/doc/guix.texi:37113 msgid "However, in some cases you might not want to serialize any of the values of the record, to do this, you can use the @code{no-serialization} literal. There is also the @code{define-configuration/no-serialization} macro which is a shorthand of this." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36631 +#: guix-git/doc/guix.texi:37121 #, no-wrap msgid "" ";; Nothing will be serialized to disk.\n" @@ -64764,7 +65637,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36637 +#: guix-git/doc/guix.texi:37127 #, no-wrap msgid "" ";; The same thing as above.\n" @@ -64775,23 +65648,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36640 +#: guix-git/doc/guix.texi:37130 #, no-wrap msgid "{Scheme Syntax} define-maybe @var{type}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36645 +#: guix-git/doc/guix.texi:37135 msgid "Sometimes a field should not be serialized if the user doesn’t specify a value. To achieve this, you can use the @code{define-maybe} macro to define a ``maybe type''; if the value of a maybe type is set to the @code{disabled}, it will not be serialized." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36652 +#: guix-git/doc/guix.texi:37142 msgid "When defining a ``maybe type'', the corresponding serializer for the regular type will be used by default. For example, a field of type @code{maybe-string} will be serialized using the @code{serialize-string} procedure by default, you can of course change this by specifying a custom serializer procedure. Likewise, the type of the value would have to be a string, unless it is set to the @code{disabled} symbol." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36655 +#: guix-git/doc/guix.texi:37145 #, no-wrap msgid "" "(define-maybe string)\n" @@ -64799,7 +65672,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36658 +#: guix-git/doc/guix.texi:37148 #, no-wrap msgid "" "(define (serialize-string field-name value)\n" @@ -64808,7 +65681,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36665 +#: guix-git/doc/guix.texi:37155 #, no-wrap msgid "" "(define-configuration baz-configuration\n" @@ -64820,12 +65693,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36669 +#: guix-git/doc/guix.texi:37159 msgid "Like with @code{define-configuration}, one can set a prefix for the serializer name by using the @code{prefix} literal." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36673 +#: guix-git/doc/guix.texi:37163 #, no-wrap msgid "" "(define-maybe integer\n" @@ -64834,7 +65707,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36676 +#: guix-git/doc/guix.texi:37166 #, no-wrap msgid "" "(define (baz-serialize-interger field-name value)\n" @@ -64842,12 +65715,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36683 +#: guix-git/doc/guix.texi:37173 msgid "There is also the @code{no-serialization} literal, which when set means that no serializer will be defined for the ``maybe type'', regardless of its value is @code{disabled} or not. @code{define-maybe/no-serialization} is a shorthand for specifying the @code{no-serialization} literal." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36686 +#: guix-git/doc/guix.texi:37176 #, no-wrap msgid "" "(define-maybe/no-serialization symbol)\n" @@ -64855,7 +65728,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36691 +#: guix-git/doc/guix.texi:37181 #, no-wrap msgid "" "(define-configuration/no-serialization test-configuration\n" @@ -64865,66 +65738,66 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36694 +#: guix-git/doc/guix.texi:37184 #, no-wrap msgid "{Scheme Procedure} serialize-configuration @var{configuration} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36700 +#: guix-git/doc/guix.texi:37190 msgid "@var{fields} Return a G-expression that contains the values corresponding to the @var{fields} of @var{configuration}, a record that has been generated by @code{define-configuration}. The G-expression can then be serialized to disk by using something like @code{mixed-text-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36702 +#: guix-git/doc/guix.texi:37192 #, no-wrap msgid "{Scheme Procedure} validate-configuration @var{configuration}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36706 +#: guix-git/doc/guix.texi:37196 msgid "@var{fields} Type-check @var{fields}, a list of field names of @var{configuration}, a configuration record created by @code{define-configuration}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36708 +#: guix-git/doc/guix.texi:37198 #, no-wrap msgid "{Scheme Procedure} empty-serializer @var{field-name} @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36711 +#: guix-git/doc/guix.texi:37201 msgid "A serializer that just returns an empty string. The @code{serialize-package} procedure is an alias for this." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36716 +#: guix-git/doc/guix.texi:37206 msgid "Once you have defined a configuration record, you will most likely also want to document it so that other people know to use it. To help with that, there are two procedures, both of which are documented below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36717 +#: guix-git/doc/guix.texi:37207 #, no-wrap msgid "{Scheme Procedure} generate-documentation @var{documentation} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36724 +#: guix-git/doc/guix.texi:37214 msgid "@var{documentation-name} Generate a Texinfo fragment from the docstrings in @var{documentation}, a list of @code{(@var{label} @var{fields} @var{sub-documentation} ...)}. @var{label} should be a symbol and should be the name of the configuration record. @var{fields} should be a list of all the fields available for the configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36729 +#: guix-git/doc/guix.texi:37219 msgid "@var{sub-documentation} is a @code{(@var{field-name} @var{configuration-name})} tuple. @var{field-name} is the name of the field which takes another configuration record as its value, and @var{configuration-name} is the name of that configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36736 +#: guix-git/doc/guix.texi:37226 msgid "@var{sub-documentation} is only needed if there are nested configuration records. For example, the @code{getmail-configuration} record (@pxref{Mail Services}) accepts a @code{getmail-configuration-file} record in one of its @code{rcfile} field, therefore documentation for @code{getmail-configuration-file} is nested in @code{getmail-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36743 +#: guix-git/doc/guix.texi:37233 #, no-wrap msgid "" "(generate-documentation\n" @@ -64935,33 +65808,33 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36747 +#: guix-git/doc/guix.texi:37237 msgid "@var{documentation-name} should be a symbol and should be the name of the configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36750 +#: guix-git/doc/guix.texi:37240 #, no-wrap msgid "{Scheme Procedure} configuration->documentation" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36757 +#: guix-git/doc/guix.texi:37247 msgid "@var{configuration-symbol} Take @var{configuration-symbol}, the symbol corresponding to the name used when defining a configuration record with @code{define-configuration}, and print the Texinfo documentation of its fields. This is useful if there aren’t any nested configuration records since it only prints the documentation for the top-level fields." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36765 +#: guix-git/doc/guix.texi:37255 msgid "As of right now, there is no automated way to generate documentation for configuration records and put them in the manual. Instead, every time you make a change to the docstrings of a configuration record, you have to manually call @code{generate-documentation} or @code{configuration->documentation}, and paste the output into the @file{doc/guix.texi} file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36769 +#: guix-git/doc/guix.texi:37259 msgid "Below is an example of a record type created using @code{define-configuration} and friends." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36776 +#: guix-git/doc/guix.texi:37266 #, no-wrap msgid "" "(use-modules (gnu services)\n" @@ -64973,7 +65846,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36784 +#: guix-git/doc/guix.texi:37274 #, no-wrap msgid "" ";; Turn field names, which are Scheme symbols into strings\n" @@ -64987,7 +65860,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36787 +#: guix-git/doc/guix.texi:37277 #, no-wrap msgid "" "(define (serialize-string field-name value)\n" @@ -64996,7 +65869,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36790 +#: guix-git/doc/guix.texi:37280 #, no-wrap msgid "" "(define (serialize-integer field-name value)\n" @@ -65005,7 +65878,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36793 +#: guix-git/doc/guix.texi:37283 #, no-wrap msgid "" "(define (serialize-boolean field-name value)\n" @@ -65014,7 +65887,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36796 +#: guix-git/doc/guix.texi:37286 #, no-wrap msgid "" "(define (serialize-contact-name field-name value)\n" @@ -65023,7 +65896,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36799 +#: guix-git/doc/guix.texi:37289 #, no-wrap msgid "" "(define (list-of-contact-configurations? lst)\n" @@ -65032,7 +65905,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36804 +#: guix-git/doc/guix.texi:37294 #, no-wrap msgid "" "(define (serialize-list-of-contact-configurations field-name value)\n" @@ -65043,7 +65916,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36811 +#: guix-git/doc/guix.texi:37301 #, no-wrap msgid "" "(define (serialize-contacts-list-configuration configuration)\n" @@ -65056,7 +65929,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36814 +#: guix-git/doc/guix.texi:37304 #, no-wrap msgid "" "(define-maybe integer)\n" @@ -65065,7 +65938,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36829 +#: guix-git/doc/guix.texi:37319 #, no-wrap msgid "" "(define-configuration contact-configuration\n" @@ -65086,7 +65959,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36841 +#: guix-git/doc/guix.texi:37331 #, no-wrap msgid "" "(define-configuration contacts-list-configuration\n" @@ -65103,12 +65976,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36844 +#: guix-git/doc/guix.texi:37334 msgid "A contacts list configuration could then be created like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36860 +#: guix-git/doc/guix.texi:37350 #, no-wrap msgid "" "(define my-contacts\n" @@ -65128,12 +66001,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36864 +#: guix-git/doc/guix.texi:37354 msgid "After serializing the configuration to disk, the resulting file would look like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36869 +#: guix-git/doc/guix.texi:37359 #, no-wrap msgid "" "[owner]\n" @@ -65143,7 +66016,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36874 +#: guix-git/doc/guix.texi:37364 #, no-wrap msgid "" "[Bob]\n" @@ -65154,7 +66027,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36878 +#: guix-git/doc/guix.texi:37368 #, no-wrap msgid "" "[Charlie]\n" @@ -65163,203 +66036,203 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36883 +#: guix-git/doc/guix.texi:37373 #, no-wrap msgid "home configuration" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36895 +#: guix-git/doc/guix.texi:37385 msgid "Guix supports declarative configuration of @dfn{home environments} by utilizing the configuration mechanism described in the previous chapter (@pxref{Defining Services}), but for user's dotfiles and packages. It works both on Guix System and foreign distros and allows users to declare all the packages and services that should be installed and configured for the user. Once a user has written a file containing @code{home-environment} record, such a configuration can be @dfn{instantiated} by an unprivileged user with the @command{guix home} command (@pxref{Invoking guix home})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36912 +#: guix-git/doc/guix.texi:37402 msgid "The user's home environment usually consists of three basic parts: software, configuration, and state. Software in mainstream distros are usually installed system-wide, but with GNU Guix most software packages can be installed on a per-user basis without needing root privileges, and are thus considered part of the user’s @dfn{home environment}. Packages on their own not very useful in many cases, because often they require some additional configuration, usually config files that reside in @env{XDG_CONFIG_HOME} (@file{~/.config} by default) or other directories. Everything else can be considered state, like media files, application databases, and logs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36915 +#: guix-git/doc/guix.texi:37405 msgid "Using Guix for managing home environments provides a number of advantages:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36918 +#: guix-git/doc/guix.texi:37408 #, no-wrap msgid "All software can be configured in one language (Guile Scheme)," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36921 +#: guix-git/doc/guix.texi:37411 msgid "this gives users the ability to share values between configurations of different programs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36922 +#: guix-git/doc/guix.texi:37412 #, no-wrap msgid "A well-defined home environment is self-contained and can be" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36925 +#: guix-git/doc/guix.texi:37415 msgid "created in a declarative and reproducible way---there is no need to grab external binaries or manually edit some configuration file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36926 +#: guix-git/doc/guix.texi:37416 #, no-wrap msgid "After every @command{guix home reconfigure} invocation, a new home" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36930 +#: guix-git/doc/guix.texi:37420 msgid "environment generation will be created. This means that users can rollback to a previous home environment generation so they don’t have to worry about breaking their configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36931 +#: guix-git/doc/guix.texi:37421 #, no-wrap msgid "It is possible to manage stateful data with Guix Home, this" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36936 +#: guix-git/doc/guix.texi:37426 msgid "includes the ability to automatically clone Git repositories on the initial setup of the machine, and periodically running commands like @command{rsync} to sync data with another host. This functionality is still in an experimental stage, though." msgstr "" #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:36946 -#: guix-git/doc/guix.texi:36947 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37436 +#: guix-git/doc/guix.texi:37437 #, no-wrap msgid "Declaring the Home Environment" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 msgid "Customizing your Home." msgstr "" #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:37014 -#: guix-git/doc/guix.texi:37015 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37504 +#: guix-git/doc/guix.texi:37505 #, no-wrap msgid "Configuring the Shell" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 msgid "Enabling home environment." msgstr "" #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:37061 -#: guix-git/doc/guix.texi:37062 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37551 +#: guix-git/doc/guix.texi:37552 #, fuzzy, no-wrap #| msgid "Services" msgid "Home Services" msgstr "Servizi" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 msgid "Specifying home services." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 msgid "Instantiating a home configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36953 +#: guix-git/doc/guix.texi:37443 msgid "The home environment is configured by providing a @code{home-environment} declaration in a file that can be passed to the @command{guix home} command (@pxref{Invoking guix home}). The easiest way to get started is by generating an initial configuration with @command{guix home import}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36956 +#: guix-git/doc/guix.texi:37446 #, no-wrap msgid "guix home import ~/src/guix-config\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36964 +#: guix-git/doc/guix.texi:37454 msgid "The @command{guix home import} command reads some of the ``dot files'' such as @file{~/.bashrc} found in your home directory and copies them to the given directory, @file{~/src/guix-config} in this case; it also reads the contents of your profile, @file{~/.guix-profile}, and, based on that, it populates @file{~/src/guix-config/home-configuration.scm} with a Home configuration that resembles your current configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36970 +#: guix-git/doc/guix.texi:37460 msgid "A simple setup can include Bash and a custom text configuration, like in the example below. Don't be afraid to declare home environment parts, which overlaps with your current dot files: before installing any configuration files, Guix Home will back up existing config files to a separate place in the home directory." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36976 +#: guix-git/doc/guix.texi:37466 msgid "It is highly recommended that you manage your shell or shells with Guix Home, because it will make sure that all the necessary scripts are sourced by the shell configuration file. Otherwise you will need to do it manually. (@pxref{Configuring the Shell})." msgstr "" #. type: findex -#: guix-git/doc/guix.texi:36978 +#: guix-git/doc/guix.texi:37468 #, no-wrap msgid "home-environment" msgstr "" #. type: include -#: guix-git/doc/guix.texi:36980 +#: guix-git/doc/guix.texi:37470 #, no-wrap msgid "he-config-bare-bones.scm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36987 +#: guix-git/doc/guix.texi:37477 msgid "The @code{packages} field should be self-explanatory, it will install the list of packages into the user's profile. The most important field is @code{services}, it contains a list of @dfn{home services}, which are the basic building blocks of a home environment." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36995 +#: guix-git/doc/guix.texi:37485 msgid "There is no daemon (at least not necessarily) related to a home service, a home service is just an element that is used to declare part of home environment and extend other parts of it. The extension mechanism discussed in the previous chapter (@pxref{Defining Services}) should not be confused with Shepherd services (@pxref{Shepherd Services}). Using this extension mechanism and some Scheme code that glues things together gives the user the freedom to declare their own, very custom, home environments." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36998 +#: guix-git/doc/guix.texi:37488 msgid "Once you have a configuration file that suits your needs, you can reconfigure your home by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37001 +#: guix-git/doc/guix.texi:37491 #, no-wrap msgid "guix home reconfigure config.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37005 +#: guix-git/doc/guix.texi:37495 msgid "This ``builds'' your home environment and creates @file{~/.guix-home} pointing to it. Voilà!" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37012 +#: guix-git/doc/guix.texi:37502 msgid "Make sure the operating system has elogind, systemd, or a similar mechanism to create the XDG run-time directory and has the @env{XDG_RUNTIME_DIR} variable set. Failing that, the @file{on-first-login} script will not execute anything, and processes like user Shepherd and its descendants will not start." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37018 +#: guix-git/doc/guix.texi:37508 msgid "This section is safe to skip if your shell or shells are managed by Guix Home. Otherwise, read it carefully." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37025 +#: guix-git/doc/guix.texi:37515 msgid "There are a few scripts that must be evaluated by a login shell to activate the home environment. The shell startup files only read by login shells often have @code{profile} suffix. For more information about login shells see @ref{Invoking Bash,,, bash, The GNU Bash Reference Manual} and see @ref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37032 +#: guix-git/doc/guix.texi:37522 msgid "The first script that needs to be sourced is @file{setup-environment}, which sets all the necessary environment variables (including variables declared by the user) and the second one is @file{on-first-login}, which starts Shepherd for the current user and performs actions declared by other home services that extends @code{home-run-on-first-login-service-type}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37035 +#: guix-git/doc/guix.texi:37525 msgid "Guix Home will always create @file{~/.profile}, which contains the following lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37040 +#: guix-git/doc/guix.texi:37530 #, no-wrap msgid "" "HOME_ENVIRONMENT=$HOME/.guix-home\n" @@ -65368,109 +66241,109 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37050 +#: guix-git/doc/guix.texi:37540 msgid "This makes POSIX compliant login shells activate the home environment. However, in most cases this file won't be read by most modern shells, because they are run in non POSIX mode by default and have their own @file{*profile} startup files. For example Bash will prefer @file{~/.bash_profile} in case it exists and only if it doesn't will it fallback to @file{~/.profile}. Zsh (if no additional options are specified) will ignore @file{~/.profile}, even if @file{~/.zprofile} doesn't exist." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37055 +#: guix-git/doc/guix.texi:37545 msgid "To make your shell respect @file{~/.profile}, add @code{. ~/.profile} or @code{source ~/profile} to the startup file for the login shell. In case of Bash, it is @file{~/.bash_profile}, and in case of Zsh, it is @file{~/.zprofile}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37059 +#: guix-git/doc/guix.texi:37549 msgid "This step is only required if your shell is NOT managed by Guix Home. Otherwise, everything will be done automatically." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37063 +#: guix-git/doc/guix.texi:37553 #, fuzzy, no-wrap #| msgid "Services" msgid "home services" msgstr "Servizi" #. type: Plain text -#: guix-git/doc/guix.texi:37072 +#: guix-git/doc/guix.texi:37562 msgid "A @dfn{home service} is not necessarily something that has a daemon and is managed by Shepherd (@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}), in most cases it doesn't. It's a simple building block of the home environment, often declaring a set of packages to be installed in the home environment profile, a set of config files to be symlinked into @env{XDG_CONFIG_HOME} (@file{~/.config} by default), and environment variables to be set by a login shell." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37080 +#: guix-git/doc/guix.texi:37570 msgid "There is a service extension mechanism (@pxref{Service Composition}) which allows home services to extend other home services and utilize capabilities they provide; for example: declare mcron jobs (@pxref{Top,,, mcron, GNU@tie{}Mcron}) by extending @ref{Mcron Home Service}; declare daemons by extending @ref{Shepherd Home Service}; add commands, which will be invoked on by the Bash by extending @ref{Shells Home Services, @code{home-bash-service-type}}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37091 -msgid "A good way to discover avaliable home services is using the @command{guix home search} command (@pxref{Invoking guix home}). After the required home services are found, include its module with the @code{use-modules} form (@pxref{use-modules,, Using Guile Modules, guile, The GNU Guile Reference Manual}), or the @code{#:use-modules} directive (@pxref{define-module,, Creating Guile Modules, guile, The GNU Guile Reference Manual}) and declare a home service using the @code{service} function, or extend a service type by declaring a new service with the @code{simple-service} procedure from @code{(gnu services)}." +#: guix-git/doc/guix.texi:37581 +msgid "A good way to discover available home services is using the @command{guix home search} command (@pxref{Invoking guix home}). After the required home services are found, include its module with the @code{use-modules} form (@pxref{use-modules,, Using Guile Modules, guile, The GNU Guile Reference Manual}), or the @code{#:use-modules} directive (@pxref{define-module,, Creating Guile Modules, guile, The GNU Guile Reference Manual}) and declare a home service using the @code{service} function, or extend a service type by declaring a new service with the @code{simple-service} procedure from @code{(gnu services)}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:37097 guix-git/doc/guix.texi:37100 -#: guix-git/doc/guix.texi:37101 +#: guix-git/doc/guix.texi:37587 guix-git/doc/guix.texi:37590 +#: guix-git/doc/guix.texi:37591 #, fuzzy, no-wrap #| msgid "Services" msgid "Essential Home Services" msgstr "Servizi" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Environment variables, packages, on-* scripts." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Shells: Shells Home Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "POSIX shells, Bash, Zsh." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Mcron: Mcron Home Service" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Scheduled User's Job Execution." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Shepherd: Shepherd Home Service" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Managing User's Daemons." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37106 +#: guix-git/doc/guix.texi:37596 msgid "There are a few essential home services defined in @code{(gnu services)}, they are mostly for internal use and are required to build a home environment, but some of them will be useful for the end user." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37107 +#: guix-git/doc/guix.texi:37597 #, no-wrap msgid "environment variables" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37109 +#: guix-git/doc/guix.texi:37599 #, no-wrap msgid "{Scheme Variable} home-environment-variables-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37114 +#: guix-git/doc/guix.texi:37604 msgid "The service of this type will be instantiated by every home environment automatically by default, there is no need to define it, but someone may want to extend it with a list of pairs to set some environment variables." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37118 +#: guix-git/doc/guix.texi:37608 #, no-wrap msgid "" "(list (\"ENV_VAR1\" . \"value1\")\n" @@ -65478,12 +66351,12 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37123 +#: guix-git/doc/guix.texi:37613 msgid "The easiest way to extend a service type, without defining new service type is to use the @code{simple-service} helper from @code{(gnu services)}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37131 +#: guix-git/doc/guix.texi:37621 #, no-wrap msgid "" "(simple-service 'some-useful-env-vars-service\n" @@ -65495,12 +66368,12 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37136 +#: guix-git/doc/guix.texi:37626 msgid "If you include such a service in you home environment definition, it will add the following content to the @file{setup-environment} script (which is expected to be sourced by the login shell):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37141 +#: guix-git/doc/guix.texi:37631 #, no-wrap msgid "" "export LESSHISTFILE=$XDG_CACHE_HOME/.lesshst\n" @@ -65509,597 +66382,579 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37148 +#: guix-git/doc/guix.texi:37638 msgid "Make sure that module @code{(gnu packages shells)} is imported with @code{use-modules} or any other way, this namespace contains the definition of the @code{zsh} packages, which is used in the example above." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37161 +#: guix-git/doc/guix.texi:37651 msgid "The association list (@pxref{Association Lists, alists, Association Lists, guile, The GNU Guile Reference manual}) is a data structure containing key-value pairs, for @code{home-environment-variables-service-type} the key is always a string, the value can be a string, string-valued gexp (@pxref{G-Expressions}), file-like object (@pxref{G-Expressions, file-like object}) or boolean. For gexps, the variable will be set to the value of the gexp; for file-like objects, it will be set to the path of the file in the store (@pxref{The Store}); for @code{#t}, it will export the variable without any value; and for @code{#f}, it will omit variable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37164 +#: guix-git/doc/guix.texi:37654 #, no-wrap msgid "{Scheme Variable} home-profile-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37170 -msgid "The service of this type will be instantiated by every home environment automatically, there is no need to define it, but you may want to extend it with a list of packages if you want to install additional packages into your profile. Other services, which need to make some programs avaliable to the user will also extend this service type." +#: guix-git/doc/guix.texi:37660 +msgid "The service of this type will be instantiated by every home environment automatically, there is no need to define it, but you may want to extend it with a list of packages if you want to install additional packages into your profile. Other services, which need to make some programs available to the user will also extend this service type." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37172 +#: guix-git/doc/guix.texi:37662 msgid "The extension value is just a list of packages:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37175 +#: guix-git/doc/guix.texi:37665 #, no-wrap msgid "(list htop vim emacs)\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37185 +#: guix-git/doc/guix.texi:37675 msgid "The same approach as @code{simple-service} (@pxref{Service Reference, simple-service}) for @code{home-environment-variables-service-type} can be used here, too. Make sure that modules containing the specified packages are imported with @code{use-modules}. To find a package or information about its module use @command{guix search} (@pxref{Invoking guix package}). Alternatively, @code{specification->package} can be used to get the package record from string without importing related module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37189 +#: guix-git/doc/guix.texi:37679 msgid "There are few more essential services, but users are not expected to extend them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37190 +#: guix-git/doc/guix.texi:37680 #, no-wrap msgid "{Scheme Variable} home-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37195 +#: guix-git/doc/guix.texi:37685 msgid "The root of home services DAG, it generates a folder, which later will be symlinked to @file{~/.guix-home}, it contains configurations, profile with binaries and libraries, and some necessary scripts to glue things together." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37197 +#: guix-git/doc/guix.texi:37687 #, no-wrap msgid "{Scheme Variable} home-run-on-first-login-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37202 +#: guix-git/doc/guix.texi:37692 msgid "The service of this type generates a Guile script, which is expected to be executed by the login shell. It is only executed if the special flag file inside @env{XDG_RUNTIME_DIR} hasn't been created, this prevents redundant executions of the script if multiple login shells are spawned." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37208 +#: guix-git/doc/guix.texi:37698 msgid "It can be extended with a gexp. However, to autostart an application, users @emph{should not} use this service, in most cases it's better to extend @code{home-shepherd-service-type} with a Shepherd service (@pxref{Shepherd Services}), or extend the shell's startup file with the required command using the appropriate service type." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37210 +#: guix-git/doc/guix.texi:37700 #, no-wrap msgid "{Scheme Variable} home-activation-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37214 +#: guix-git/doc/guix.texi:37704 msgid "The service of this type generates a guile script, which runs on every @command{guix home reconfigure} invocation or any other action, which leads to the activation of the home environment." msgstr "" #. type: node -#: guix-git/doc/guix.texi:37216 +#: guix-git/doc/guix.texi:37706 #, no-wrap msgid "Shells Home Services" msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:37217 +#: guix-git/doc/guix.texi:37707 #, no-wrap msgid "Shells" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37219 guix-git/doc/guix.texi:37500 +#: guix-git/doc/guix.texi:37709 guix-git/doc/guix.texi:37996 #, no-wrap msgid "shell" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37220 +#: guix-git/doc/guix.texi:37710 #, no-wrap msgid "login shell" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37221 +#: guix-git/doc/guix.texi:37711 #, no-wrap msgid "interactive shell" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37222 guix-git/doc/guix.texi:37502 +#: guix-git/doc/guix.texi:37712 guix-git/doc/guix.texi:37998 #, no-wrap msgid "bash" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37223 guix-git/doc/guix.texi:37503 +#: guix-git/doc/guix.texi:37713 guix-git/doc/guix.texi:37999 #, no-wrap msgid "zsh" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37229 +#: guix-git/doc/guix.texi:37719 msgid "Shells play a quite important role in the environment initialization process, you can configure them manually as described in section @ref{Configuring the Shell}, but the recommended way is to use home services listed below. It's both easier and more reliable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37239 +#: guix-git/doc/guix.texi:37729 msgid "Each home environment instantiates @code{home-shell-profile-service-type}, which creates a @file{~/.profile} startup file for all POSIX-compatible shells. This file contains all the necessary steps to properly initialize the environment, but many modern shells like Bash or Zsh prefer their own startup files, that's why the respective home services (@code{home-bash-service-type} and @code{home-zsh-service-type}) ensure that @file{~/.profile} is sourced by @file{~/.bash_profile} and @file{~/.zprofile}, respectively." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:37240 +#: guix-git/doc/guix.texi:37730 #, fuzzy, no-wrap #| msgid "Services" msgid "Shell Profile Service" msgstr "Servizi" #. type: deftp -#: guix-git/doc/guix.texi:37242 +#: guix-git/doc/guix.texi:37732 #, no-wrap msgid "{Data Type} home-shell-profile-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37244 +#: guix-git/doc/guix.texi:37734 msgid "Available @code{home-shell-profile-configuration} fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37246 +#: guix-git/doc/guix.texi:37736 #, no-wrap msgid "@code{profile} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37256 -msgid "@code{home-shell-profile} is instantiated automatically by @code{home-environment}, DO NOT create this service manually, it can only be extended. @code{profile} is a list of file-like objects, which will go to @file{~/.profile}. By default @file{~/.profile} contains the initialization code, which have to be evaluated by login shell to make home-environment's profile avaliable to the user, but other commands can be added to the file if it is really necessary. In most cases shell's configuration files are preferred places for user's customizations. Extend home-shell-profile service only if you really know what you do." +#: guix-git/doc/guix.texi:37746 +msgid "@code{home-shell-profile} is instantiated automatically by @code{home-environment}, DO NOT create this service manually, it can only be extended. @code{profile} is a list of file-like objects, which will go to @file{~/.profile}. By default @file{~/.profile} contains the initialization code which must be evaluated by the login shell to make home-environment's profile available to the user, but other commands can be added to the file if it is really necessary. In most cases shell's configuration files are preferred places for user's customizations. Extend home-shell-profile service only if you really know what you do." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:37261 +#: guix-git/doc/guix.texi:37751 #, no-wrap msgid "Bash Home Service" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:37264 +#: guix-git/doc/guix.texi:37754 msgid "home-bash-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37264 +#: guix-git/doc/guix.texi:37754 #, no-wrap msgid "{Data Type} home-bash-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37266 +#: guix-git/doc/guix.texi:37756 msgid "Available @code{home-bash-configuration} fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37268 +#: guix-git/doc/guix.texi:37758 #, no-wrap msgid "@code{package} (default: @code{bash}) (type: package)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37270 +#: guix-git/doc/guix.texi:37760 msgid "The Bash package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37271 +#: guix-git/doc/guix.texi:37761 #, no-wrap msgid "@code{guix-defaults?} (default: @code{#t}) (type: boolean)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37274 +#: guix-git/doc/guix.texi:37764 msgid "Add sane defaults like reading @file{/etc/bashrc} and coloring the output of @command{ls} to the end of the @file{.bashrc} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37275 guix-git/doc/guix.texi:37329 -#: guix-git/doc/guix.texi:37368 +#: guix-git/doc/guix.texi:37765 guix-git/doc/guix.texi:37819 +#: guix-git/doc/guix.texi:37858 #, no-wrap msgid "@code{environment-variables} (default: @code{()}) (type: alist)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37280 +#: guix-git/doc/guix.texi:37770 msgid "Association list of environment variables to set for the Bash session. The rules for the @code{home-environment-variables-service-type} apply here (@pxref{Essential Home Services}). The contents of this field will be added after the contents of the @code{bash-profile} field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37281 guix-git/doc/guix.texi:37334 +#: guix-git/doc/guix.texi:37771 guix-git/doc/guix.texi:37824 #, no-wrap msgid "@code{aliases} (default: @code{()}) (type: alist)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37286 +#: guix-git/doc/guix.texi:37776 msgid "Association list of aliases to set for the Bash session. The aliases will be defined after the contents of the @code{bashrc} field has been put in the @file{.bashrc} file. The alias will automatically be quoted, so something line this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37289 +#: guix-git/doc/guix.texi:37779 #, no-wrap msgid "'((\\\"ls\\\" . \\\"ls -alF\\\"))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37292 +#: guix-git/doc/guix.texi:37782 msgid "turns into" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37295 +#: guix-git/doc/guix.texi:37785 #, no-wrap msgid "alias ls=\\\"ls -alF\\\"\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37297 guix-git/doc/guix.texi:37338 +#: guix-git/doc/guix.texi:37787 guix-git/doc/guix.texi:37828 #, no-wrap msgid "@code{bash-profile} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37302 +#: guix-git/doc/guix.texi:37792 msgid "List of file-like objects, which will be added to @file{.bash_profile}. Used for executing user's commands at start of login shell (In most cases the shell started on tty just after login). @file{.bash_login} won't be ever read, because @file{.bash_profile} always present." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37303 guix-git/doc/guix.texi:37342 +#: guix-git/doc/guix.texi:37793 guix-git/doc/guix.texi:37832 #, no-wrap msgid "@code{bashrc} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37308 +#: guix-git/doc/guix.texi:37798 msgid "List of file-like objects, which will be added to @file{.bashrc}. Used for executing user's commands at start of interactive shell (The shell for interactive usage started by typing @code{bash} or by terminal app or any other program)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37309 guix-git/doc/guix.texi:37346 +#: guix-git/doc/guix.texi:37799 guix-git/doc/guix.texi:37836 #, no-wrap msgid "@code{bash-logout} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37314 +#: guix-git/doc/guix.texi:37804 msgid "List of file-like objects, which will be added to @file{.bash_logout}. Used for executing user's commands at the exit of login shell. It won't be read in some cases (if the shell terminates by exec'ing another process for example)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37324 +#: guix-git/doc/guix.texi:37814 msgid "You can extend the Bash service by using the @code{home-bash-extension} configuration record, whose fields most mirror that of @code{home-bash-configuration} (@pxref{home-bash-configuration}). The contents of the extensions will be added to the end of the corresponding Bash configuration files (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37325 +#: guix-git/doc/guix.texi:37815 #, no-wrap msgid "{Data Type} home-bash-extension" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37327 +#: guix-git/doc/guix.texi:37817 msgid "Available @code{home-bash-extension} fields are:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37333 +#: guix-git/doc/guix.texi:37823 msgid "Additional environment variables to set. These will be combined with the environment variables from other extensions and the base service to form one coherent block of environment variables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37337 +#: guix-git/doc/guix.texi:37827 msgid "Additional aliases to set. These will be combined with the aliases from other extensions and the base service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37341 +#: guix-git/doc/guix.texi:37831 msgid "Additional text blocks to add to @file{.bash_profile}, which will be combined with text blocks from other extensions and the base service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37345 +#: guix-git/doc/guix.texi:37835 msgid "Additional text blocks to add to @file{.bashrc}, which will be combined with text blocks from other extensions and the base service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37349 +#: guix-git/doc/guix.texi:37839 msgid "Additional text blocks to add to @file{.bash_logout}, which will be combined with text blocks from other extensions and the base service." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:37353 +#: guix-git/doc/guix.texi:37843 #, fuzzy, no-wrap #| msgid "Services" msgid "Zsh Home Service" msgstr "Servizi" #. type: deftp -#: guix-git/doc/guix.texi:37355 +#: guix-git/doc/guix.texi:37845 #, no-wrap msgid "{Data Type} home-zsh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37357 +#: guix-git/doc/guix.texi:37847 msgid "Available @code{home-zsh-configuration} fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37359 +#: guix-git/doc/guix.texi:37849 #, no-wrap msgid "@code{package} (default: @code{zsh}) (type: package)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37361 +#: guix-git/doc/guix.texi:37851 msgid "The Zsh package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37362 +#: guix-git/doc/guix.texi:37852 #, no-wrap msgid "@code{xdg-flavor?} (default: @code{#t}) (type: boolean)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37367 +#: guix-git/doc/guix.texi:37857 msgid "Place all the configs to @file{$XDG_CONFIG_HOME/zsh}. Makes @file{~/.zshenv} to set @env{ZDOTDIR} to @file{$XDG_CONFIG_HOME/zsh}. Shell startup process will continue with @file{$XDG_CONFIG_HOME/zsh/.zshenv}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37370 +#: guix-git/doc/guix.texi:37860 msgid "Association list of environment variables to set for the Zsh session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37371 +#: guix-git/doc/guix.texi:37861 #, no-wrap msgid "@code{zshenv} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37376 +#: guix-git/doc/guix.texi:37866 msgid "List of file-like objects, which will be added to @file{.zshenv}. Used for setting user's shell environment variables. Must not contain commands assuming the presence of tty or producing output. Will be read always. Will be read before any other file in @env{ZDOTDIR}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37377 +#: guix-git/doc/guix.texi:37867 #, no-wrap msgid "@code{zprofile} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37382 +#: guix-git/doc/guix.texi:37872 msgid "List of file-like objects, which will be added to @file{.zprofile}. Used for executing user's commands at start of login shell (In most cases the shell started on tty just after login). Will be read before @file{.zlogin}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37383 +#: guix-git/doc/guix.texi:37873 #, no-wrap msgid "@code{zshrc} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37388 +#: guix-git/doc/guix.texi:37878 msgid "List of file-like objects, which will be added to @file{.zshrc}. Used for executing user's commands at start of interactive shell (The shell for interactive usage started by typing @code{zsh} or by terminal app or any other program)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37389 +#: guix-git/doc/guix.texi:37879 #, no-wrap msgid "@code{zlogin} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37393 +#: guix-git/doc/guix.texi:37883 msgid "List of file-like objects, which will be added to @file{.zlogin}. Used for executing user's commands at the end of starting process of login shell." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37394 +#: guix-git/doc/guix.texi:37884 #, no-wrap msgid "@code{zlogout} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37399 +#: guix-git/doc/guix.texi:37889 msgid "List of file-like objects, which will be added to @file{.zlogout}. Used for executing user's commands at the exit of login shell. It won't be read in some cases (if the shell terminates by exec'ing another process for example)." msgstr "" #. type: node -#: guix-git/doc/guix.texi:37404 +#: guix-git/doc/guix.texi:37894 #, no-wrap msgid "Mcron Home Service" msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:37405 +#: guix-git/doc/guix.texi:37895 #, no-wrap msgid "Scheduled User's Job Execution" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37418 +#: guix-git/doc/guix.texi:37908 msgid "The @code{(gnu home services mcron)} module provides an interface to GNU@tie{}mcron, a daemon to run jobs at scheduled times (@pxref{Top,,, mcron, GNU@tie{}mcron}). The information about system's mcron is applicable here (@pxref{Scheduled Job Execution}), the only difference for home services is that they have to be declared in a @code{home-envirnoment} record instead of an @code{operating-system} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37419 +#: guix-git/doc/guix.texi:37909 #, no-wrap msgid "{Scheme Variable} home-mcron-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37423 +#: guix-git/doc/guix.texi:37913 msgid "This is the type of the @code{mcron} home service, whose value is an @code{home-mcron-configuration} object. It allows to manage scheduled tasks." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37430 +#: guix-git/doc/guix.texi:37920 #, no-wrap msgid "{Data Type} home-mcron-configuration" msgstr "" #. type: node -#: guix-git/doc/guix.texi:37444 +#: guix-git/doc/guix.texi:37934 #, no-wrap msgid "Shepherd Home Service" msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:37445 +#: guix-git/doc/guix.texi:37935 #, no-wrap -msgid "Managing User's Daemons" +msgid "Managing User Daemons" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:37937 +#, no-wrap +msgid "shepherd services, for users" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:37944 +msgid "The @code{(gnu home services shepherd)} module supports the definitions of per-user Shepherd services (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}). You extend @code{home-shepherd-service-type} with new services; Guix Home then takes care of starting the @code{shepherd} daemon for you when you log in, which in turns starts the services you asked for." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37449 +#: guix-git/doc/guix.texi:37945 #, no-wrap msgid "{Scheme Variable} home-shepherd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37454 +#: guix-git/doc/guix.texi:37950 msgid "The service type for the userland Shepherd, which allows one to manage long-running processes or one-shot tasks. User's Shepherd is not an init process (PID 1), but almost all other information described in (@pxref{Shepherd Services}) is applicable here too." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37459 +#: guix-git/doc/guix.texi:37955 msgid "This is the service type that extensions target when they want to create shepherd services (@pxref{Service Types and Services}, for an example). Each extension must pass a list of @code{}. Its value must be a @code{home-shepherd-configuration}, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37461 +#: guix-git/doc/guix.texi:37957 #, no-wrap msgid "{Data Type} home-shepherd-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37468 +#: guix-git/doc/guix.texi:37964 #, no-wrap msgid "auto-start? (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37470 +#: guix-git/doc/guix.texi:37966 msgid "Whether or not to start Shepherd on first login." msgstr "" #. type: section -#: guix-git/doc/guix.texi:37479 +#: guix-git/doc/guix.texi:37975 #, no-wrap msgid "Invoking @code{guix home}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37484 +#: guix-git/doc/guix.texi:37980 msgid "Once you have written a home environment declaration (@pxref{Declaring the Home Environment,,,,}, it can be @dfn{instantiated} using the @command{guix home} command. The synopsis is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37487 +#: guix-git/doc/guix.texi:37983 #, no-wrap msgid "guix home @var{options}@dots{} @var{action} @var{file}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37494 +#: guix-git/doc/guix.texi:37990 msgid "@var{file} must be the name of a file containing a @code{home-environment} declaration. @var{action} specifies how the home environment is instantiated, but there are few auxiliary actions which don't instantiate it. Currently the following values are supported:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37499 +#: guix-git/doc/guix.texi:37995 msgid "Display available home service type definitions that match the given regular expressions, sorted by relevance:" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37501 +#: guix-git/doc/guix.texi:37997 #, no-wrap msgid "shell-profile" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37513 +#: guix-git/doc/guix.texi:38008 #, no-wrap msgid "" "$ guix home search shell\n" "name: home-shell-profile\n" -"location: gnu/home/services/shells.scm:73:2\n" +"location: gnu/home/services/shells.scm:100:2\n" "extends: home-files\n" -"description: Create `~/.profile', which is used for environment initialization\n" -"+ of POSIX compatible login shells. Can be extended with a list of strings or\n" -"+ gexps.\n" +"description: Create `~/.profile', which is used for environment initialization of POSIX compliant login shells.\n" +"+ This service type can be extended with a list of file-like objects.\n" "relevance: 6\n" "\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37519 -#, no-wrap -msgid "" -"name: home-zsh-plugin-manager\n" -"location: gnu/home/services/shellutils.scm:28:2\n" -"extends: home-zsh home-profile\n" -"description: Install plugins in profile and configure Zsh to load them.\n" -"relevance: 1\n" -"\n" -msgstr "" - -#. type: example -#: guix-git/doc/guix.texi:37526 -#, no-wrap -msgid "" -"name: home-zsh-direnv\n" -"location: gnu/home/services/shellutils.scm:69:2\n" -"extends: home-profile home-zsh\n" -"description: Enables `direnv' for `zsh'. Adds hook to `.zshrc' and installs a\n" -"+ package in the profile.\n" -"relevance: 1\n" -"\n" -msgstr "" - -#. type: example -#: guix-git/doc/guix.texi:37535 +#: guix-git/doc/guix.texi:38014 #, no-wrap msgid "" -"name: home-zsh-autosuggestions\n" -"location: gnu/home/services/shellutils.scm:43:2\n" -"extends: home-zsh-plugin-manager home-zsh\n" -"description: Enables Fish-like fast/unobtrusive autosuggestions for `zsh' and\n" -"+ sets reasonable default values for some plugin's variables to improve perfomance\n" -"+ and adjust behavior: `(history completion)' is set for strategy, manual rebind\n" -"+ and async are enabled.\n" -"relevance: 1\n" +"name: home-fish\n" +"location: gnu/home/services/shells.scm:640:2\n" +"extends: home-files home-profile\n" +"description: Install and configure Fish, the friendly interactive shell.\n" +"relevance: 3\n" "\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37541 +#: guix-git/doc/guix.texi:38020 #, no-wrap msgid "" "name: home-zsh\n" -"location: gnu/home/services/shells.scm:236:2\n" +"location: gnu/home/services/shells.scm:290:2\n" "extends: home-files home-profile\n" "description: Install and configure Zsh.\n" "relevance: 1\n" @@ -66107,61 +66962,66 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37547 +#: guix-git/doc/guix.texi:38026 #, no-wrap msgid "" "name: home-bash\n" -"location: gnu/home/services/shells.scm:388:2\n" +"location: gnu/home/services/shells.scm:508:2\n" "extends: home-files home-profile\n" -"description: Install and configure Bash.\n" +"description: Install and configure GNU Bash.\n" "relevance: 1\n" "\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37563 -msgid "Build the home environment described in @var{file}, and switch to it. Switching means that the activation script will be evaluated and (in basic scenario) symlinks to configuration files generated from @code{home-environment} declaration will be created in @file{~}. If the file with the same path already exists in home folder it will be moved to @file{~/TIMESTAMP-guix-home-legacy-configs-backup}, where TIMESTAMP is a current UNIX epoch time." +#: guix-git/doc/guix.texi:38033 +msgid "As for @command{guix search}, the result is written in @code{recutils} format, which makes it easy to filter the output (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:38042 +msgid "Build the home environment described in @var{file}, and switch to it. Switching means that the activation script will be evaluated and (in basic scenario) symlinks to configuration files generated from @code{home-environment} declaration will be created in @file{~}. If the file with the same path already exists in home folder it will be moved to @file{~/@var{timestamp}-guix-home-legacy-configs-backup}, where @var{timestamp} is a current UNIX epoch time." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37568 +#: guix-git/doc/guix.texi:38047 msgid "It is highly recommended to run @command{guix pull} once before you run @command{guix home reconfigure} for the first time (@pxref{Invoking guix pull})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37575 -msgid "This effects all the configuration specified in @var{file}. The command starts Shepherd services specified in @var{file} that are not currently running; if a service is currently running, this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop X} or @code{herd restart X})." +#: guix-git/doc/guix.texi:38054 +msgid "This effects all the configuration specified in @var{file}. The command starts Shepherd services specified in @var{file} that are not currently running; if a service is currently running, this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop @var{service}} or @code{herd restart @var{service}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37581 +#: guix-git/doc/guix.texi:38060 msgid "This command creates a new generation whose number is one greater than the current generation (as reported by @command{guix home list-generations}). If that generation already exists, it will be overwritten. This behavior mirrors that of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37582 +#: guix-git/doc/guix.texi:38061 #, no-wrap msgid "provenance tracking, of the home environment" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37587 +#: guix-git/doc/guix.texi:38066 msgid "Upon completion, the new home is deployed under @file{~/.guix-home}. This directory contains @dfn{provenance meta-data}: the list of channels in use (@pxref{Channels}) and @var{file} itself, when available. You can view the provenance information by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37590 +#: guix-git/doc/guix.texi:38069 #, no-wrap msgid "guix home describe\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37596 +#: guix-git/doc/guix.texi:38075 msgid "This information is useful should you later want to inspect how this particular generation was built. In fact, assuming @var{file} is self-contained, you can later rebuild generation @var{n} of your home environment with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37602 +#: guix-git/doc/guix.texi:38081 #, no-wrap msgid "" "guix time-machine \\\n" @@ -66172,111 +67032,111 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37609 +#: guix-git/doc/guix.texi:38088 msgid "You can think of it as some sort of built-in version control! Your home is not just a binary artifact: @emph{it carries its own source}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37615 +#: guix-git/doc/guix.texi:38094 #, fuzzy, no-wrap #| msgid "Documentation" msgid "home generations" msgstr "Documentazione" #. type: table -#: guix-git/doc/guix.texi:37618 +#: guix-git/doc/guix.texi:38097 msgid "Switch to an existing home generation. This action atomically switches the home profile to the specified home generation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37622 +#: guix-git/doc/guix.texi:38101 msgid "The target generation can be specified explicitly by its generation number. For example, the following invocation would switch to home generation 7:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37625 +#: guix-git/doc/guix.texi:38104 #, no-wrap msgid "guix home switch-generation 7\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37636 +#: guix-git/doc/guix.texi:38115 #, no-wrap msgid "guix home switch-generation -- -1\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37645 +#: guix-git/doc/guix.texi:38124 msgid "Switch to the preceding home generation. This is the inverse of @command{reconfigure}, and it is exactly the same as invoking @command{switch-generation} with an argument of @code{-1}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37647 +#: guix-git/doc/guix.texi:38126 #, no-wrap msgid "deleting home generations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37652 +#: guix-git/doc/guix.texi:38131 msgid "Delete home generations, making them candidates for garbage collection (@pxref{Invoking guix gc}, for information on how to run the ``garbage collector'')." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37656 +#: guix-git/doc/guix.texi:38135 msgid "This works in the same way as @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). With no arguments, all home generations but the current one are deleted:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37659 +#: guix-git/doc/guix.texi:38138 #, no-wrap msgid "guix home delete-generations\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37663 +#: guix-git/doc/guix.texi:38142 msgid "You can also select the generations you want to delete. The example below deletes all the home generations that are more than two months old:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37666 +#: guix-git/doc/guix.texi:38145 #, no-wrap msgid "guix home delete-generations 2m\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37672 +#: guix-git/doc/guix.texi:38151 msgid "Build the derivation of the home environment, which includes all the configuration files and programs needed. This action does not actually install anything." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37676 +#: guix-git/doc/guix.texi:38155 msgid "Describe the current home generation: its file name, as well as provenance information when available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37682 +#: guix-git/doc/guix.texi:38161 msgid "List a summary of each generation of the home environment available on disk, in a human-readable way. This is similar to the @option{--list-generations} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:37690 +#: guix-git/doc/guix.texi:38169 #, no-wrap msgid "$ guix home list-generations 10d\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37692 +#: guix-git/doc/guix.texi:38171 #, no-wrap msgid "import" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37699 +#: guix-git/doc/guix.texi:38178 msgid "Generate a @dfn{home environment} from the packages in the default profile and configuration files found in the user's home directory. The configuration files will be copied to the specified directory, and a @file{home-configuration.scm} will be populated with the home environment. Note that not every home service that exists is supported (@pxref{Home Services})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:37703 +#: guix-git/doc/guix.texi:38182 #, no-wrap msgid "" "$ guix home import ~/guix-config\n" @@ -66284,52 +67144,62 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37718 +#: guix-git/doc/guix.texi:38197 msgid "Consider the home-environment @var{expr} evaluates to. This is an alternative to specifying a file which evaluates to a home environment." msgstr "" +#. type: table +#: guix-git/doc/guix.texi:38200 +msgid "Instruct @command{guix home reconfigure} to allow system downgrades." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:38207 +msgid "Just like @command{guix system}, @command{guix home reconfigure}, by default, prevents you from downgrading your home to older or unrelated revisions compared to the channel revisions that were used to deploy it---those shown by @command{guix home describe}. Using @option{--allow-downgrades} allows you to bypass that check, at the risk of downgrading your home---be careful!" +msgstr "" + #. type: cindex -#: guix-git/doc/guix.texi:37724 +#: guix-git/doc/guix.texi:38213 #, no-wrap msgid "documentation, searching for" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37725 +#: guix-git/doc/guix.texi:38214 #, no-wrap msgid "searching for documentation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37726 +#: guix-git/doc/guix.texi:38215 #, no-wrap msgid "Info, documentation format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37727 +#: guix-git/doc/guix.texi:38216 #, no-wrap msgid "man pages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37728 +#: guix-git/doc/guix.texi:38217 #, no-wrap msgid "manual pages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37735 +#: guix-git/doc/guix.texi:38224 msgid "In most cases packages installed with Guix come with documentation. There are two main documentation formats: ``Info'', a browsable hypertext format used for GNU software, and ``manual pages'' (or ``man pages''), the linear documentation format traditionally found on Unix. Info manuals are accessed with the @command{info} command or with Emacs, and man pages are accessed using @command{man}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37739 +#: guix-git/doc/guix.texi:38228 msgid "You can look for documentation of software installed on your system by keyword. For example, the following command searches for information about ``TLS'' in Info manuals:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37747 +#: guix-git/doc/guix.texi:38236 #, no-wrap msgid "" "$ info -k TLS\n" @@ -66341,12 +67211,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37753 +#: guix-git/doc/guix.texi:38242 msgid "The command below searches for the same keyword in man pages@footnote{The database searched by @command{man -k} is only created in profiles that contain the @code{man-db} package.}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37759 +#: guix-git/doc/guix.texi:38248 #, no-wrap msgid "" "$ man -k TLS\n" @@ -66356,97 +67226,97 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37765 +#: guix-git/doc/guix.texi:38254 msgid "These searches are purely local to your computer so you have the guarantee that documentation you find corresponds to what you have actually installed, you can access it off-line, and your privacy is respected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37768 +#: guix-git/doc/guix.texi:38257 msgid "Once you have these results, you can view the relevant documentation by running, say:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37771 +#: guix-git/doc/guix.texi:38260 #, no-wrap msgid "$ info \"(gnutls)Core TLS API\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37775 +#: guix-git/doc/guix.texi:38264 msgid "or:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37778 +#: guix-git/doc/guix.texi:38267 #, no-wrap msgid "$ man certtool\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37786 +#: guix-git/doc/guix.texi:38275 msgid "Info manuals contain sections and indices as well as hyperlinks like those found in Web pages. The @command{info} reader (@pxref{Top, Info reader,, info-stnd, Stand-alone GNU Info}) and its Emacs counterpart (@pxref{Misc Help,,, emacs, The GNU Emacs Manual}) provide intuitive key bindings to navigate manuals. @xref{Getting Started,,, info, Info: An Introduction}, for an introduction to Info navigation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37790 +#: guix-git/doc/guix.texi:38279 #, no-wrap msgid "debugging files" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37796 +#: guix-git/doc/guix.texi:38285 msgid "Program binaries, as produced by the GCC compilers for instance, are typically written in the ELF format, with a section containing @dfn{debugging information}. Debugging information is what allows the debugger, GDB, to map binary code to source code; it is required to debug a compiled program in good conditions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37800 +#: guix-git/doc/guix.texi:38289 msgid "This chapter explains how to use separate debug info when packages provide it, and how to rebuild packages with debug info when it's missing." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37816 +#: guix-git/doc/guix.texi:38305 msgid "The problem with debugging information is that is takes up a fair amount of disk space. For example, debugging information for the GNU C Library weighs in at more than 60 MiB@. Thus, as a user, keeping all the debugging info of all the installed programs is usually not an option. Yet, space savings should not come at the cost of an impediment to debugging---especially in the GNU system, which should make it easier for users to exert their computing freedom (@pxref{GNU Distribution})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37823 +#: guix-git/doc/guix.texi:38312 msgid "Thankfully, the GNU Binary Utilities (Binutils) and GDB provide a mechanism that allows users to get the best of both worlds: debugging information can be stripped from the binaries and stored in separate files. GDB is then able to load debugging information from those files, when they are available (@pxref{Separate Debug Files,,, gdb, Debugging with GDB})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37831 +#: guix-git/doc/guix.texi:38320 msgid "The GNU distribution takes advantage of this by storing debugging information in the @code{lib/debug} sub-directory of a separate package output unimaginatively called @code{debug} (@pxref{Packages with Multiple Outputs}). Users can choose to install the @code{debug} output of a package when they need it. For instance, the following command installs the debugging information for the GNU C Library and for GNU Guile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37834 +#: guix-git/doc/guix.texi:38323 #, no-wrap msgid "guix install glibc:debug guile:debug\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37840 +#: guix-git/doc/guix.texi:38329 msgid "GDB must then be told to look for debug files in the user's profile, by setting the @code{debug-file-directory} variable (consider setting it from the @file{~/.gdbinit} file, @pxref{Startup,,, gdb, Debugging with GDB}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37843 +#: guix-git/doc/guix.texi:38332 #, no-wrap msgid "(gdb) set debug-file-directory ~/.guix-profile/lib/debug\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37847 +#: guix-git/doc/guix.texi:38336 msgid "From there on, GDB will pick up debugging information from the @file{.debug} files under @file{~/.guix-profile/lib/debug}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37852 +#: guix-git/doc/guix.texi:38341 msgid "Below is an alternative GDB script which is useful when working with other profiles. It takes advantage of the optional Guile integration in GDB. This snippet is included by default on Guix System in the @file{~/.gdbinit} file." msgstr "" #. type: example -#: guix-git/doc/guix.texi:37860 +#: guix-git/doc/guix.texi:38349 #, no-wrap msgid "" "guile\n" @@ -66458,32 +67328,32 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37868 +#: guix-git/doc/guix.texi:38357 msgid "In addition, you will most likely want GDB to be able to show the source code being debugged. To do that, you will have to unpack the source code of the package of interest (obtained with @code{guix build --source}, @pxref{Invoking guix build}), and to point GDB to that source directory using the @code{directory} command (@pxref{Source Path, @code{directory},, gdb, Debugging with GDB})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37876 +#: guix-git/doc/guix.texi:38365 msgid "The @code{debug} output mechanism in Guix is implemented by the @code{gnu-build-system} (@pxref{Build Systems}). Currently, it is opt-in---debugging information is available only for the packages with definitions explicitly declaring a @code{debug} output. To check whether a package has a @code{debug} output, use @command{guix package --list-available} (@pxref{Invoking guix package})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37878 +#: guix-git/doc/guix.texi:38367 msgid "Read on for how to deal with packages lacking a @code{debug} output." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37890 +#: guix-git/doc/guix.texi:38379 msgid "As we saw above, some packages, but not all, provide debugging info in a @code{debug} output. What can you do when debugging info is missing? The @option{--with-debug-info} option provides a solution to that: it allows you to rebuild the package(s) for which debugging info is missing---and only those---and to graft those onto the application you're debugging. Thus, while it's not as fast as installing a @code{debug} output, it is relatively inexpensive." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37895 +#: guix-git/doc/guix.texi:38384 msgid "Let's illustrate that. Suppose you're experiencing a bug in Inkscape and would like to see what's going on in GLib, a library that's deep down in its dependency graph. As it turns out, GLib does not have a @code{debug} output and the backtrace GDB shows is all sadness:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37906 +#: guix-git/doc/guix.texi:38395 #, no-wrap msgid "" "(gdb) bt\n" @@ -66498,17 +67368,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37910 +#: guix-git/doc/guix.texi:38399 msgid "To address that, you install Inkscape linked against a variant GLib that contains debug info:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37916 +#: guix-git/doc/guix.texi:38405 msgid "This time, debugging will be a whole lot nicer:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37934 +#: guix-git/doc/guix.texi:38423 #, no-wrap msgid "" "$ gdb --args sh -c 'exec inkscape'\n" @@ -66530,28 +67400,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37937 +#: guix-git/doc/guix.texi:38426 msgid "Much better!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37941 +#: guix-git/doc/guix.texi:38430 msgid "Note that there can be packages for which @option{--with-debug-info} will not have the desired effect. @xref{Package Transformation Options, @option{--with-debug-info}}, for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37945 +#: guix-git/doc/guix.texi:38434 #, no-wrap msgid "security updates" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37954 +#: guix-git/doc/guix.texi:38443 msgid "Occasionally, important security vulnerabilities are discovered in software packages and must be patched. Guix developers try hard to keep track of known vulnerabilities and to apply fixes as soon as possible in the @code{master} branch of Guix (we do not yet provide a ``stable'' branch containing only security updates). The @command{guix lint} tool helps developers find out about vulnerable versions of software packages in the distribution:" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:37961 +#: guix-git/doc/guix.texi:38450 #, no-wrap msgid "" "$ guix lint -c cve\n" @@ -66562,39 +67432,39 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37964 +#: guix-git/doc/guix.texi:38453 msgid "@xref{Invoking guix lint}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37973 +#: guix-git/doc/guix.texi:38462 msgid "Guix follows a functional package management discipline (@pxref{Introduction}), which implies that, when a package is changed, @emph{every package that depends on it} must be rebuilt. This can significantly slow down the deployment of fixes in core packages such as libc or Bash, since basically the whole distribution would need to be rebuilt. Using pre-built binaries helps (@pxref{Substitutes}), but deployment may still take more time than desired." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37974 +#: guix-git/doc/guix.texi:38463 #, no-wrap msgid "grafts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37982 +#: guix-git/doc/guix.texi:38471 msgid "To address this, Guix implements @dfn{grafts}, a mechanism that allows for fast deployment of critical updates without the costs associated with a whole-distribution rebuild. The idea is to rebuild only the package that needs to be patched, and then to ``graft'' it onto packages explicitly installed by the user and that were previously referring to the original package. The cost of grafting is typically very low, and order of magnitudes lower than a full rebuild of the dependency chain." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37983 +#: guix-git/doc/guix.texi:38472 #, no-wrap msgid "replacements of packages, for grafts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37989 +#: guix-git/doc/guix.texi:38478 msgid "For instance, suppose a security update needs to be applied to Bash. Guix developers will provide a package definition for the ``fixed'' Bash, say @code{bash-fixed}, in the usual way (@pxref{Defining Packages}). Then, the original package definition is augmented with a @code{replacement} field pointing to the package containing the bug fix:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37996 +#: guix-git/doc/guix.texi:38485 #, no-wrap msgid "" "(define bash\n" @@ -66605,190 +67475,190 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38006 +#: guix-git/doc/guix.texi:38495 msgid "From there on, any package depending directly or indirectly on Bash---as reported by @command{guix gc --requisites} (@pxref{Invoking guix gc})---that is installed is automatically ``rewritten'' to refer to @code{bash-fixed} instead of @code{bash}. This grafting process takes time proportional to the size of the package, usually less than a minute for an ``average'' package on a recent machine. Grafting is recursive: when an indirect dependency requires grafting, then grafting ``propagates'' up to the package that the user is installing." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38014 +#: guix-git/doc/guix.texi:38503 msgid "Currently, the length of the name and version of the graft and that of the package it replaces (@code{bash-fixed} and @code{bash} in the example above) must be equal. This restriction mostly comes from the fact that grafting works by patching files, including binary files, directly. Other restrictions may apply: for instance, when adding a graft to a package providing a shared library, the original shared library and its replacement must have the same @code{SONAME} and be binary-compatible." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38018 +#: guix-git/doc/guix.texi:38507 msgid "The @option{--no-grafts} command-line option allows you to forcefully avoid grafting (@pxref{Common Build Options, @option{--no-grafts}}). Thus, the command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38021 +#: guix-git/doc/guix.texi:38510 #, no-wrap msgid "guix build bash --no-grafts\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38025 +#: guix-git/doc/guix.texi:38514 msgid "returns the store file name of the original Bash, whereas:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38028 +#: guix-git/doc/guix.texi:38517 #, no-wrap msgid "guix build bash\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38033 +#: guix-git/doc/guix.texi:38522 msgid "returns the store file name of the ``fixed'', replacement Bash. This allows you to distinguish between the two variants of Bash." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38036 +#: guix-git/doc/guix.texi:38525 msgid "To verify which Bash your whole profile refers to, you can run (@pxref{Invoking guix gc}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38039 +#: guix-git/doc/guix.texi:38528 #, no-wrap msgid "guix gc -R $(readlink -f ~/.guix-profile) | grep bash\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38044 +#: guix-git/doc/guix.texi:38533 msgid "@dots{} and compare the store file names that you get with those above. Likewise for a complete Guix system generation:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38047 +#: guix-git/doc/guix.texi:38536 #, no-wrap msgid "guix gc -R $(guix system build my-config.scm) | grep bash\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38051 +#: guix-git/doc/guix.texi:38540 msgid "Lastly, to check which Bash running processes are using, you can use the @command{lsof} command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38054 +#: guix-git/doc/guix.texi:38543 #, no-wrap msgid "lsof | grep /gnu/store/.*bash\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:38062 +#: guix-git/doc/guix.texi:38551 #, no-wrap msgid "bootstrapping" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38069 +#: guix-git/doc/guix.texi:38558 msgid "Bootstrapping in our context refers to how the distribution gets built ``from nothing''. Remember that the build environment of a derivation contains nothing but its declared inputs (@pxref{Introduction}). So there's an obvious chicken-and-egg problem: how does the first package get built? How does the first compiler get compiled?" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38077 +#: guix-git/doc/guix.texi:38566 msgid "It is tempting to think of this question as one that only die-hard hackers may care about. However, while the answer to that question is technical in nature, its implications are wide-ranging. How the distribution is bootstrapped defines the extent to which we, as individuals and as a collective of users and hackers, can trust the software we run. It is a central concern from the standpoint of @emph{security} and from a @emph{user freedom} viewpoint." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:38078 guix-git/doc/guix.texi:38290 +#: guix-git/doc/guix.texi:38567 guix-git/doc/guix.texi:38779 #, no-wrap msgid "bootstrap binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38088 +#: guix-git/doc/guix.texi:38577 msgid "The GNU system is primarily made of C code, with libc at its core. The GNU build system itself assumes the availability of a Bourne shell and command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and `grep'. Furthermore, build programs---programs that run @code{./configure}, @code{make}, etc.---are written in Guile Scheme (@pxref{Derivations}). Consequently, to be able to build anything at all, from scratch, Guix relies on pre-built binaries of Guile, GCC, Binutils, libc, and the other packages mentioned above---the @dfn{bootstrap binaries}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38092 +#: guix-git/doc/guix.texi:38581 msgid "These bootstrap binaries are ``taken for granted'', though we can also re-create them if needed (@pxref{Preparing to Use the Bootstrap Binaries})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:38099 +#: guix-git/doc/guix.texi:38588 #, no-wrap msgid "The Reduced Binary Seed Bootstrap" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38106 +#: guix-git/doc/guix.texi:38595 msgid "Guix---like other GNU/Linux distributions---is traditionally bootstrapped from a set of bootstrap binaries: Bourne shell, command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and `grep' and Guile, GCC, Binutils, and the GNU C Library (@pxref{Bootstrapping}). Usually, these bootstrap binaries are ``taken for granted.''" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38112 +#: guix-git/doc/guix.texi:38601 msgid "Taking the bootstrap binaries for granted means that we consider them to be a correct and trustworthy ``seed'' for building the complete system. Therein lies a problem: the combined size of these bootstrap binaries is about 250MB (@pxref{Bootstrappable Builds,,, mes, GNU Mes}). Auditing or even inspecting these is next to impossible." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38117 +#: guix-git/doc/guix.texi:38606 msgid "For @code{i686-linux} and @code{x86_64-linux}, Guix now features a ``Reduced Binary Seed'' bootstrap @footnote{We would like to say: ``Full Source Bootstrap'' and while we are working towards that goal it would be hyperbole to use that term for what we do now.}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38123 +#: guix-git/doc/guix.texi:38612 msgid "The Reduced Binary Seed bootstrap removes the most critical tools---from a trust perspective---from the bootstrap binaries: GCC, Binutils and the GNU C Library are replaced by: @code{bootstrap-mescc-tools} (a tiny assembler and linker) and @code{bootstrap-mes} (a small Scheme Interpreter and a C compiler written in Scheme and the Mes C Library, built for TinyCC and for GCC)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38128 +#: guix-git/doc/guix.texi:38617 msgid "Using these new binary seeds the ``missing'' Binutils, GCC, and the GNU C Library are built from source. From here on the more traditional bootstrap process resumes. This approach has reduced the bootstrap binaries in size to about 145MB in Guix v1.1." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38136 +#: guix-git/doc/guix.texi:38625 msgid "The next step that Guix has taken is to replace the shell and all its utilities with implementations in Guile Scheme, the @emph{Scheme-only bootstrap}. Gash (@pxref{Gash,,, gash, The Gash manual}) is a POSIX-compatible shell that replaces Bash, and it comes with Gash Utils which has minimalist replacements for Awk, the GNU Core Utilities, Grep, Gzip, Sed, and Tar. The rest of the bootstrap binary seeds that were removed are now built from source." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38146 +#: guix-git/doc/guix.texi:38635 msgid "Building the GNU System from source is currently only possible by adding some historical GNU packages as intermediate steps@footnote{Packages such as @code{gcc-2.95.3}, @code{binutils-2.14}, @code{glibc-2.2.5}, @code{gzip-1.2.4}, @code{tar-1.22}, and some others. For details, see @file{gnu/packages/commencement.scm}.}. As Gash and Gash Utils mature, and GNU packages become more bootstrappable again (e.g., new releases of GNU Sed will also ship as gzipped tarballs again, as alternative to the hard to bootstrap @code{xz}-compression), this set of added packages can hopefully be reduced again." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38150 +#: guix-git/doc/guix.texi:38639 msgid "The graph below shows the resulting dependency graph for @code{gcc-core-mesboot0}, the bootstrap compiler used for the traditional bootstrap of the rest of the Guix System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38153 +#: guix-git/doc/guix.texi:38642 msgid "@image{images/gcc-core-mesboot0-graph,6in,,Dependency graph of gcc-core-mesboot0}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38160 +#: guix-git/doc/guix.texi:38649 msgid "The only significant binary bootstrap seeds that remain@footnote{ Ignoring the 68KB @code{mescc-tools}; that will be removed later, together with @code{mes}.} are a Scheme interpreter and a Scheme compiler: GNU Mes and GNU Guile@footnote{Not shown in this graph are the static binaries for @file{bash}, @code{tar}, and @code{xz} that are used to get Guile running.}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38163 +#: guix-git/doc/guix.texi:38652 msgid "This further reduction has brought down the size of the binary seed to about 60MB for @code{i686-linux} and @code{x86_64-linux}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38168 +#: guix-git/doc/guix.texi:38657 msgid "Work is ongoing to remove all binary blobs from our free software bootstrap stack, working towards a Full Source Bootstrap. Also ongoing is work to bring these bootstraps to the @code{arm-linux} and @code{aarch64-linux} architectures and to the Hurd." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38172 +#: guix-git/doc/guix.texi:38661 msgid "If you are interested, join us on @samp{#bootstrappable} on the Freenode IRC network or discuss on @email{bug-mes@@gnu.org} or @email{gash-devel@@nongnu.org}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38179 +#: guix-git/doc/guix.texi:38668 msgid "@image{images/bootstrap-graph,6in,,Dependency graph of the early bootstrap derivations}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38184 +#: guix-git/doc/guix.texi:38673 msgid "The figure above shows the very beginning of the dependency graph of the distribution, corresponding to the package definitions of the @code{(gnu packages bootstrap)} module. A similar figure can be generated with @command{guix graph} (@pxref{Invoking guix graph}), along the lines of:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38189 +#: guix-git/doc/guix.texi:38678 #, no-wrap msgid "" "guix graph -t derivation \\\n" @@ -66797,12 +67667,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38192 +#: guix-git/doc/guix.texi:38681 msgid "or, for the further Reduced Binary Seed bootstrap" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38197 +#: guix-git/doc/guix.texi:38686 #, no-wrap msgid "" "guix graph -t derivation \\\n" @@ -66811,43 +67681,43 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38206 +#: guix-git/doc/guix.texi:38695 msgid "At this level of detail, things are slightly complex. First, Guile itself consists of an ELF executable, along with many source and compiled Scheme files that are dynamically loaded when it runs. This gets stored in the @file{guile-2.0.7.tar.xz} tarball shown in this graph. This tarball is part of Guix's ``source'' distribution, and gets inserted into the store with @code{add-to-store} (@pxref{The Store})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38215 +#: guix-git/doc/guix.texi:38704 msgid "But how do we write a derivation that unpacks this tarball and adds it to the store? To solve this problem, the @code{guile-bootstrap-2.0.drv} derivation---the first one that gets built---uses @code{bash} as its builder, which runs @code{build-bootstrap-guile.sh}, which in turn calls @code{tar} to unpack the tarball. Thus, @file{bash}, @file{tar}, @file{xz}, and @file{mkdir} are statically-linked binaries, also part of the Guix source distribution, whose sole purpose is to allow the Guile tarball to be unpacked." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38227 +#: guix-git/doc/guix.texi:38716 msgid "Once @code{guile-bootstrap-2.0.drv} is built, we have a functioning Guile that can be used to run subsequent build programs. Its first task is to download tarballs containing the other pre-built binaries---this is what the @file{.tar.xz.drv} derivations do. Guix modules such as @code{ftp-client.scm} are used for this purpose. The @code{module-import.drv} derivations import those modules in a directory in the store, using the original layout. The @code{module-import-compiled.drv} derivations compile those modules, and write them in an output directory with the right layout. This corresponds to the @code{#:modules} argument of @code{build-expression->derivation} (@pxref{Derivations})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38232 +#: guix-git/doc/guix.texi:38721 msgid "Finally, the various tarballs are unpacked by the derivations @code{gcc-bootstrap-0.drv}, @code{glibc-bootstrap-0.drv}, or @code{bootstrap-mes-0.drv} and @code{bootstrap-mescc-tools-0.drv}, at which point we have a working C tool chain." msgstr "" #. type: unnumberedsec -#: guix-git/doc/guix.texi:38233 +#: guix-git/doc/guix.texi:38722 #, no-wrap msgid "Building the Build Tools" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38242 +#: guix-git/doc/guix.texi:38731 msgid "Bootstrapping is complete when we have a full tool chain that does not depend on the pre-built bootstrap tools discussed above. This no-dependency requirement is verified by checking whether the files of the final tool chain contain references to the @file{/gnu/store} directories of the bootstrap inputs. The process that leads to this ``final'' tool chain is described by the package definitions found in the @code{(gnu packages commencement)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38249 +#: guix-git/doc/guix.texi:38738 msgid "The @command{guix graph} command allows us to ``zoom out'' compared to the graph above, by looking at the level of package objects instead of individual derivations---remember that a package may translate to several derivations, typically one derivation to download its source, one to build the Guile modules it needs, and one to actually build the package from source. The command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38254 +#: guix-git/doc/guix.texi:38743 #, no-wrap msgid "" "guix graph -t bag \\\n" @@ -66856,164 +67726,164 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38261 +#: guix-git/doc/guix.texi:38750 msgid "displays the dependency graph leading to the ``final'' C library@footnote{You may notice the @code{glibc-intermediate} label, suggesting that it is not @emph{quite} final, but as a good approximation, we will consider it final.}, depicted below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38263 +#: guix-git/doc/guix.texi:38752 msgid "@image{images/bootstrap-packages,6in,,Dependency graph of the early packages}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38269 +#: guix-git/doc/guix.texi:38758 msgid "The first tool that gets built with the bootstrap binaries is GNU@tie{}Make---noted @code{make-boot0} above---which is a prerequisite for all the following packages. From there Findutils and Diffutils get built." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38274 +#: guix-git/doc/guix.texi:38763 msgid "Then come the first-stage Binutils and GCC, built as pseudo cross tools---i.e., with @option{--target} equal to @option{--host}. They are used to build libc. Thanks to this cross-build trick, this libc is guaranteed not to hold any reference to the initial tool chain." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38280 +#: guix-git/doc/guix.texi:38769 msgid "From there the final Binutils and GCC (not shown above) are built. GCC uses @command{ld} from the final Binutils, and links programs against the just-built libc. This tool chain is used to build the other packages used by Guix and by the GNU Build System: Guile, Bash, Coreutils, etc." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38286 +#: guix-git/doc/guix.texi:38775 msgid "And voilà! At this point we have the complete set of build tools that the GNU Build System expects. These are in the @code{%final-inputs} variable of the @code{(gnu packages commencement)} module, and are implicitly used by any package that uses @code{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}})." msgstr "" #. type: unnumberedsec -#: guix-git/doc/guix.texi:38288 +#: guix-git/doc/guix.texi:38777 #, no-wrap msgid "Building the Bootstrap Binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38295 +#: guix-git/doc/guix.texi:38784 msgid "Because the final tool chain does not depend on the bootstrap binaries, those rarely need to be updated. Nevertheless, it is useful to have an automated way to produce them, should an update occur, and this is what the @code{(gnu packages make-bootstrap)} module provides." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38301 +#: guix-git/doc/guix.texi:38790 msgid "The following command builds the tarballs containing the bootstrap binaries (Binutils, GCC, glibc, for the traditional bootstrap and linux-libre-headers, bootstrap-mescc-tools, bootstrap-mes for the Reduced Binary Seed bootstrap, and Guile, and a tarball containing a mixture of Coreutils and other basic command-line tools):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38304 +#: guix-git/doc/guix.texi:38793 #, no-wrap msgid "guix build bootstrap-tarballs\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38309 +#: guix-git/doc/guix.texi:38798 msgid "The generated tarballs are those that should be referred to in the @code{(gnu packages bootstrap)} module mentioned at the beginning of this section." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38315 +#: guix-git/doc/guix.texi:38804 msgid "Still here? Then perhaps by now you've started to wonder: when do we reach a fixed point? That is an interesting question! The answer is unknown, but if you would like to investigate further (and have significant computational and storage resources to do so), then let us know." msgstr "" #. type: unnumberedsec -#: guix-git/doc/guix.texi:38316 +#: guix-git/doc/guix.texi:38805 #, no-wrap msgid "Reducing the Set of Bootstrap Binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38324 +#: guix-git/doc/guix.texi:38813 msgid "Our traditional bootstrap includes GCC, GNU Libc, Guile, etc. That's a lot of binary code! Why is that a problem? It's a problem because these big chunks of binary code are practically non-auditable, which makes it hard to establish what source code produced them. Every unauditable binary also leaves us vulnerable to compiler backdoors as described by Ken Thompson in the 1984 paper @emph{Reflections on Trusting Trust}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38330 +#: guix-git/doc/guix.texi:38819 msgid "This is mitigated by the fact that our bootstrap binaries were generated from an earlier Guix revision. Nevertheless it lacks the level of transparency that we get in the rest of the package dependency graph, where Guix always gives us a source-to-binary mapping. Thus, our goal is to reduce the set of bootstrap binaries to the bare minimum." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38336 +#: guix-git/doc/guix.texi:38825 msgid "The @uref{https://bootstrappable.org, Bootstrappable.org web site} lists on-going projects to do that. One of these is about replacing the bootstrap GCC with a sequence of assemblers, interpreters, and compilers of increasing complexity, which could be built from source starting from a simple and auditable assembler." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38345 +#: guix-git/doc/guix.texi:38834 msgid "Our first major achievement is the replacement of of GCC, the GNU C Library and Binutils by MesCC-Tools (a simple hex linker and macro assembler) and Mes (@pxref{Top, GNU Mes Reference Manual,, mes, GNU Mes}, a Scheme interpreter and C compiler in Scheme). Neither MesCC-Tools nor Mes can be fully bootstrapped yet and thus we inject them as binary seeds. We call this the Reduced Binary Seed bootstrap, as it has halved the size of our bootstrap binaries! Also, it has eliminated the C compiler binary; i686-linux and x86_64-linux Guix packages are now bootstrapped without any binary C compiler." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38348 +#: guix-git/doc/guix.texi:38837 msgid "Work is ongoing to make MesCC-Tools and Mes fully bootstrappable and we are also looking at any other bootstrap binaries. Your help is welcome!" msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:38350 +#: guix-git/doc/guix.texi:38839 #, no-wrap msgid "Porting to a New Platform" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38359 +#: guix-git/doc/guix.texi:38848 msgid "As discussed above, the GNU distribution is self-contained, and self-containment is achieved by relying on pre-built ``bootstrap binaries'' (@pxref{Bootstrapping}). These binaries are specific to an operating system kernel, CPU architecture, and application binary interface (ABI). Thus, to port the distribution to a platform that is not yet supported, one must build those bootstrap binaries, and update the @code{(gnu packages bootstrap)} module to use them on that platform." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38364 +#: guix-git/doc/guix.texi:38853 msgid "Fortunately, Guix can @emph{cross compile} those bootstrap binaries. When everything goes well, and assuming the GNU tool chain supports the target platform, this can be as simple as running a command like this one:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38367 +#: guix-git/doc/guix.texi:38856 #, no-wrap msgid "guix build --target=armv5tel-linux-gnueabi bootstrap-tarballs\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38374 +#: guix-git/doc/guix.texi:38863 msgid "For this to work, the @code{glibc-dynamic-linker} procedure in @code{(gnu packages bootstrap)} must be augmented to return the right file name for libc's dynamic linker on that platform; likewise, @code{system->linux-architecture} in @code{(gnu packages linux)} must be taught about the new platform." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38383 +#: guix-git/doc/guix.texi:38872 msgid "Once these are built, the @code{(gnu packages bootstrap)} module needs to be updated to refer to these binaries on the target platform. That is, the hashes and URLs of the bootstrap tarballs for the new platform must be added alongside those of the currently supported platforms. The bootstrap Guile tarball is treated specially: it is expected to be available locally, and @file{gnu/local.mk} has rules to download it for the supported architectures; a rule for the new platform must be added as well." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38392 +#: guix-git/doc/guix.texi:38881 msgid "In practice, there may be some complications. First, it may be that the extended GNU triplet that specifies an ABI (like the @code{eabi} suffix above) is not recognized by all the GNU tools. Typically, glibc recognizes some of these, whereas GCC uses an extra @option{--with-abi} configure flag (see @code{gcc.scm} for examples of how to handle this). Second, some of the required packages could fail to build for that platform. Lastly, the generated binaries could be broken for some reason." msgstr "" #. type: include -#: guix-git/doc/guix.texi:38394 +#: guix-git/doc/guix.texi:38883 #, no-wrap msgid "contributing.texi" msgstr "contributing.it.texi" #. type: Plain text -#: guix-git/doc/guix.texi:38407 +#: guix-git/doc/guix.texi:38896 msgid "Guix is based on the @uref{https://nixos.org/nix/, Nix package manager}, which was designed and implemented by Eelco Dolstra, with contributions from other people (see the @file{nix/AUTHORS} file in Guix). Nix pioneered functional package management, and promoted unprecedented features, such as transactional package upgrades and rollbacks, per-user profiles, and referentially transparent build processes. Without this work, Guix would not exist." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38410 +#: guix-git/doc/guix.texi:38899 msgid "The Nix-based software distributions, Nixpkgs and NixOS, have also been an inspiration for Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38416 +#: guix-git/doc/guix.texi:38905 msgid "GNU@tie{}Guix itself is a collective work with contributions from a number of people. See the @file{AUTHORS} file in Guix for more information on these fine people. The @file{THANKS} file lists people who have helped by reporting bugs, taking care of the infrastructure, providing artwork and themes, making suggestions, and more---thank you!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:38421 +#: guix-git/doc/guix.texi:38910 #, no-wrap msgid "license, GNU Free Documentation License" msgstr "" #. type: include -#: guix-git/doc/guix.texi:38422 +#: guix-git/doc/guix.texi:38911 #, no-wrap msgid "fdl-1.3.texi" msgstr "" diff --git a/po/doc/guix-manual.ko.po b/po/doc/guix-manual.ko.po index 04095c5b68..edd68fd23b 100644 --- a/po/doc/guix-manual.ko.po +++ b/po/doc/guix-manual.ko.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE # Copyright (C) 2021 the authors of Guix (msgids) and the following authors (msgstr) # This file is distributed under the same license as the guix manual package. -# simmon , 2021. +# simmon , 2021, 2022. msgid "" msgstr "" "Project-Id-Version: guix manual checkout\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2021-12-21 15:18+0000\n" -"PO-Revision-Date: 2021-12-19 16:16+0000\n" +"POT-Creation-Date: 2022-02-02 15:18+0000\n" +"PO-Revision-Date: 2022-02-01 06:16+0000\n" "Last-Translator: simmon \n" "Language-Team: Korean \n" "Language: ko\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.10\n" +"X-Generator: Weblate 4.10.1\n" #. #-#-#-#-# contributing.pot (guix manual checkout) #-#-#-#-# #. type: chapter @@ -67,8 +67,8 @@ msgid "The latest and greatest." msgstr "최신 및 가장 위대한." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:161 -#: guix-git/doc/contributing.texi:162 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:173 +#: guix-git/doc/contributing.texi:174 #, no-wrap msgid "Running Guix Before It Is Installed" msgstr "설치하기 전에 Guix 동작하기" @@ -79,8 +79,8 @@ msgid "Hacker tricks." msgstr "해커 장난." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:235 -#: guix-git/doc/contributing.texi:236 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:265 +#: guix-git/doc/contributing.texi:266 #, no-wrap msgid "The Perfect Setup" msgstr "완벽한 구성" @@ -91,8 +91,8 @@ msgid "The right tools." msgstr "올바른 도구." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:326 -#: guix-git/doc/contributing.texi:327 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:356 +#: guix-git/doc/contributing.texi:357 #, no-wrap msgid "Packaging Guidelines" msgstr "꾸러미 안내" @@ -103,8 +103,8 @@ msgid "Growing the distribution." msgstr "배포 성장." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:890 -#: guix-git/doc/contributing.texi:891 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:920 +#: guix-git/doc/contributing.texi:921 #, no-wrap msgid "Coding Style" msgstr "코딩 형태" @@ -115,8 +115,8 @@ msgid "Hygiene of the contributor." msgstr "기여자의 위생." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:989 -#: guix-git/doc/contributing.texi:990 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1013 +#: guix-git/doc/contributing.texi:1014 #, no-wrap msgid "Submitting Patches" msgstr "패치 제출" @@ -127,8 +127,8 @@ msgid "Share your work." msgstr "일을 공유하다." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1270 -#: guix-git/doc/contributing.texi:1271 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1298 +#: guix-git/doc/contributing.texi:1299 #, no-wrap msgid "Tracking Bugs and Patches" msgstr "결점 추적과 패치" @@ -139,8 +139,8 @@ msgid "Keeping it all organized." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1385 -#: guix-git/doc/contributing.texi:1386 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1413 +#: guix-git/doc/contributing.texi:1414 #, no-wrap msgid "Commit Access" msgstr "접근 허용" @@ -151,8 +151,8 @@ msgid "Pushing to the official repository." msgstr "공식적인 저장소로 밀어넣기." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1611 -#: guix-git/doc/contributing.texi:1612 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1644 +#: guix-git/doc/contributing.texi:1645 #, no-wrap msgid "Updating the Guix Package" msgstr "Guix 꾸러미 최신화하기" @@ -163,8 +163,8 @@ msgid "Updating the Guix package definition." msgstr "Guix 꾸러미 확인 최신화하기." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1652 -#: guix-git/doc/contributing.texi:1653 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1686 #, no-wrap msgid "Translating Guix" msgstr "Guix 변역하기" @@ -354,30 +354,31 @@ msgid "make authenticate GUIX_GIT_KEYRING=myremote/keyring\n" msgstr "GUIX_GIT_KEYRING=myremote/keyring 인증을 만들다\n" #. type: quotation -#: guix-git/doc/contributing.texi:154 guix-git/doc/contributing.texi:1463 -#: guix-git/doc/guix.texi:594 guix-git/doc/guix.texi:643 -#: guix-git/doc/guix.texi:833 guix-git/doc/guix.texi:1813 -#: guix-git/doc/guix.texi:2060 guix-git/doc/guix.texi:2244 -#: guix-git/doc/guix.texi:2465 guix-git/doc/guix.texi:2677 -#: guix-git/doc/guix.texi:3807 guix-git/doc/guix.texi:4548 -#: guix-git/doc/guix.texi:4562 guix-git/doc/guix.texi:4644 -#: guix-git/doc/guix.texi:4874 guix-git/doc/guix.texi:5615 -#: guix-git/doc/guix.texi:6082 guix-git/doc/guix.texi:6333 -#: guix-git/doc/guix.texi:6454 guix-git/doc/guix.texi:6482 -#: guix-git/doc/guix.texi:6535 guix-git/doc/guix.texi:9391 -#: guix-git/doc/guix.texi:9461 guix-git/doc/guix.texi:11198 -#: guix-git/doc/guix.texi:11238 guix-git/doc/guix.texi:11512 -#: guix-git/doc/guix.texi:11524 guix-git/doc/guix.texi:14000 -#: guix-git/doc/guix.texi:14631 guix-git/doc/guix.texi:15521 -#: guix-git/doc/guix.texi:16507 guix-git/doc/guix.texi:19140 -#: guix-git/doc/guix.texi:19310 guix-git/doc/guix.texi:27188 -#: guix-git/doc/guix.texi:30914 guix-git/doc/guix.texi:34669 -#: guix-git/doc/guix.texi:34903 guix-git/doc/guix.texi:35073 -#: guix-git/doc/guix.texi:35232 guix-git/doc/guix.texi:35334 -#: guix-git/doc/guix.texi:35435 guix-git/doc/guix.texi:35738 -#: guix-git/doc/guix.texi:36896 guix-git/doc/guix.texi:36971 -#: guix-git/doc/guix.texi:37006 guix-git/doc/guix.texi:37056 -#: guix-git/doc/guix.texi:37143 guix-git/doc/guix.texi:37564 +#: guix-git/doc/contributing.texi:154 guix-git/doc/contributing.texi:1496 +#: guix-git/doc/guix.texi:605 guix-git/doc/guix.texi:654 +#: guix-git/doc/guix.texi:844 guix-git/doc/guix.texi:1830 +#: guix-git/doc/guix.texi:2077 guix-git/doc/guix.texi:2261 +#: guix-git/doc/guix.texi:2482 guix-git/doc/guix.texi:2694 +#: guix-git/doc/guix.texi:3825 guix-git/doc/guix.texi:4566 +#: guix-git/doc/guix.texi:4580 guix-git/doc/guix.texi:4662 +#: guix-git/doc/guix.texi:4892 guix-git/doc/guix.texi:5633 +#: guix-git/doc/guix.texi:6119 guix-git/doc/guix.texi:6376 +#: guix-git/doc/guix.texi:6497 guix-git/doc/guix.texi:6525 +#: guix-git/doc/guix.texi:6578 guix-git/doc/guix.texi:9581 +#: guix-git/doc/guix.texi:9705 guix-git/doc/guix.texi:9775 +#: guix-git/doc/guix.texi:11512 guix-git/doc/guix.texi:11552 +#: guix-git/doc/guix.texi:11826 guix-git/doc/guix.texi:11838 +#: guix-git/doc/guix.texi:14357 guix-git/doc/guix.texi:14988 +#: guix-git/doc/guix.texi:15878 guix-git/doc/guix.texi:16864 +#: guix-git/doc/guix.texi:19502 guix-git/doc/guix.texi:19672 +#: guix-git/doc/guix.texi:27525 guix-git/doc/guix.texi:31279 +#: guix-git/doc/guix.texi:35108 guix-git/doc/guix.texi:35342 +#: guix-git/doc/guix.texi:35512 guix-git/doc/guix.texi:35676 +#: guix-git/doc/guix.texi:35778 guix-git/doc/guix.texi:35817 +#: guix-git/doc/guix.texi:35891 guix-git/doc/guix.texi:36228 +#: guix-git/doc/guix.texi:37386 guix-git/doc/guix.texi:37461 +#: guix-git/doc/guix.texi:37496 guix-git/doc/guix.texi:37546 +#: guix-git/doc/guix.texi:37633 guix-git/doc/guix.texi:38043 #, no-wrap msgid "Note" msgstr "알림" @@ -388,28 +389,46 @@ msgid "You are advised to run @command{make authenticate} after every @command{g msgstr "@command{make authenticate} after every @command{git pull} 기도을 실행하기 위해 조언합니다. 이는 저장소에 유효한 변화를 수신는 것을 유지하게 합니다." #. type: Plain text -#: guix-git/doc/contributing.texi:168 +#: guix-git/doc/contributing.texi:162 +msgid "After updating the repository, @command{make} might fail with an error similar to the following example:" +msgstr "" + +#. type: example +#: guix-git/doc/contributing.texi:166 +#, no-wrap +msgid "" +"error: failed to load 'gnu/packages/dunst.scm':\n" +"ice-9/eval.scm:293:34: In procedure abi-check: #>: record ABI mismatch; recompilation needed\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:172 +msgid "This means that one of the record types that Guix defines (in this example, the @code{origin} record) has changed, and all of guix needs to be recompiled to take that change into account. To do so, run @command{make clean-go} followed by @command{make}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:180 msgid "In order to keep a sane working environment, you will find it useful to test the changes made in your local source tree checkout without actually installing them. So that you can distinguish between your ``end-user'' hat and your ``motley'' costume." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:179 +#: guix-git/doc/contributing.texi:191 msgid "To that end, all the command-line tools can be used even if you have not run @code{make install}. To do that, you first need to have an environment with all the dependencies available (@pxref{Building from Git}), and then simply prefix each command with @command{./pre-inst-env} (the @file{pre-inst-env} script lives in the top build tree of Guix; it is generated by running @command{./bootstrap} followed by @command{./configure}). As an example, here is how you would build the @code{hello} package as defined in your working tree (this assumes @command{guix-daemon} is already running on your system; it's OK if it's a different version):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:182 +#: guix-git/doc/contributing.texi:194 #, no-wrap msgid "$ ./pre-inst-env guix build hello\n" msgstr "$ ./pre-inst-env guix build hello\n" #. type: Plain text -#: guix-git/doc/contributing.texi:186 +#: guix-git/doc/contributing.texi:198 msgid "Similarly, an example for a Guile session using the Guix modules:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:189 +#: guix-git/doc/contributing.texi:201 #, no-wrap msgid "" "$ ./pre-inst-env guile -c '(use-modules (guix utils)) (pk (%current-system))'\n" @@ -419,30 +438,30 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/contributing.texi:191 +#: guix-git/doc/contributing.texi:203 #, no-wrap msgid ";;; (\"x86_64-linux\")\n" msgstr ";;; (\"x86_64-linux\")\n" #. type: cindex -#: guix-git/doc/contributing.texi:194 +#: guix-git/doc/contributing.texi:206 #, no-wrap msgid "REPL" msgstr "REPL" #. type: cindex -#: guix-git/doc/contributing.texi:195 +#: guix-git/doc/contributing.texi:207 #, no-wrap msgid "read-eval-print loop" msgstr "read-eval-print loop" #. type: Plain text -#: guix-git/doc/contributing.texi:198 +#: guix-git/doc/contributing.texi:210 msgid "@dots{} and for a REPL (@pxref{Using Guile Interactively,,, guile, Guile Reference Manual}):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:213 +#: guix-git/doc/contributing.texi:225 #, no-wrap msgid "" "$ ./pre-inst-env guile\n" @@ -474,45 +493,68 @@ msgstr "" "$1 = 361\n" #. type: Plain text -#: guix-git/doc/contributing.texi:221 +#: guix-git/doc/contributing.texi:233 msgid "If you are hacking on the daemon and its supporting code or if @command{guix-daemon} is not already running on your system, you can launch it straight from the build tree@footnote{The @option{-E} flag to @command{sudo} guarantees that @code{GUILE_LOAD_PATH} is correctly set such that @command{guix-daemon} and the tools it uses can find the Guile modules they need.}:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:224 +#: guix-git/doc/contributing.texi:236 #, no-wrap msgid "$ sudo -E ./pre-inst-env guix-daemon --build-users-group=guixbuild\n" msgstr "$ sudo -E ./pre-inst-env guix-daemon --build-users-group=guixbuild\n" #. type: Plain text -#: guix-git/doc/contributing.texi:228 +#: guix-git/doc/contributing.texi:240 msgid "The @command{pre-inst-env} script sets up all the environment variables necessary to support this, including @env{PATH} and @env{GUILE_LOAD_PATH}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:233 +#: guix-git/doc/contributing.texi:245 msgid "Note that @command{./pre-inst-env guix pull} does @emph{not} upgrade the local source tree; it simply updates the @file{~/.config/guix/current} symlink (@pxref{Invoking guix pull}). Run @command{git pull} instead if you want to upgrade your local source tree." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:243 +#: guix-git/doc/contributing.texi:249 +msgid "Sometimes, especially if you have recently updated your repository, running @command{./pre-inst-env} will print a message similar to the following example:" +msgstr "" + +#. type: example +#: guix-git/doc/contributing.texi:253 +#, no-wrap +msgid "" +";;; note: source file /home/user/projects/guix/guix/progress.scm\n" +";;; newer than compiled /home/user/projects/guix/guix/progress.go\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:259 +msgid "This is only a note and you can safely ignore it. You can get rid of the message by running @command{make -j4}. Until you do, Guile will run slightly slower because it will interpret the code instead of using prepared Guile object (@file{.go}) files." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:264 +msgid "You can run @command{make} automatically as you work using @command{watchexec} from the @code{watchexec} package. For example, to build again each time you update a package file, you can run @samp{watchexec -w gnu/packages make -j4}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:273 msgid "The Perfect Setup to hack on Guix is basically the perfect setup used for Guile hacking (@pxref{Using Guile in Emacs,,, guile, Guile Reference Manual}). First, you need more than an editor, you need @url{https://www.gnu.org/software/emacs, Emacs}, empowered by the wonderful @url{https://nongnu.org/geiser/, Geiser}. To set that up, run:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:246 +#: guix-git/doc/contributing.texi:276 #, fuzzy, no-wrap #| msgid "guix package -i emacs guile emacs-geiser\n" msgid "guix package -i emacs guile emacs-geiser emacs-geiser-guile\n" msgstr "guix package -i emacs guile emacs-geiser\n" #. type: Plain text -#: guix-git/doc/contributing.texi:255 +#: guix-git/doc/contributing.texi:285 msgid "Geiser allows for interactive and incremental development from within Emacs: code compilation and evaluation from within buffers, access to on-line documentation (docstrings), context-sensitive completion, @kbd{M-.} to jump to an object definition, a REPL to try out your code, and more (@pxref{Introduction,,, geiser, Geiser User Manual}). For convenient Guix development, make sure to augment Guile’s load path so that it finds source files from your checkout:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:260 +#: guix-git/doc/contributing.texi:290 #, no-wrap msgid "" ";; @r{Assuming the Guix checkout is in ~/src/guix.}\n" @@ -524,35 +566,35 @@ msgstr "" " (add-to-list 'geiser-guile-load-path \"~/src/guix\"))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:268 +#: guix-git/doc/contributing.texi:298 msgid "To actually edit the code, Emacs already has a neat Scheme mode. But in addition to that, you must not miss @url{https://www.emacswiki.org/emacs/ParEdit, Paredit}. It provides facilities to directly operate on the syntax tree, such as raising an s-expression or wrapping it, swallowing or rejecting the following s-expression, etc." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:269 +#: guix-git/doc/contributing.texi:299 #, no-wrap msgid "code snippets" msgstr "코드 조각" #. type: cindex -#: guix-git/doc/contributing.texi:270 +#: guix-git/doc/contributing.texi:300 #, no-wrap msgid "templates" msgstr "템플리트" #. type: cindex -#: guix-git/doc/contributing.texi:271 +#: guix-git/doc/contributing.texi:301 #, no-wrap msgid "reducing boilerplate" msgstr "상용구 줄이기" #. type: Plain text -#: guix-git/doc/contributing.texi:278 +#: guix-git/doc/contributing.texi:308 msgid "We also provide templates for common git commit messages and package definitions in the @file{etc/snippets} directory. These templates can be used with @url{https://joaotavora.github.io/yasnippet/, YASnippet} to expand short trigger strings to interactive text snippets. You may want to add the snippets directory to the @var{yas-snippet-dirs} variable in Emacs." msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:283 +#: guix-git/doc/contributing.texi:313 #, no-wrap msgid "" ";; @r{Assuming the Guix checkout is in ~/src/guix.}\n" @@ -564,40 +606,40 @@ msgstr "" " (add-to-list 'yas-snippet-dirs \"~/src/guix/etc/snippets\"))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:291 +#: guix-git/doc/contributing.texi:321 msgid "The commit message snippets depend on @url{https://magit.vc/, Magit} to display staged files. When editing a commit message type @code{add} followed by @kbd{TAB} to insert a commit message template for adding a package; type @code{update} followed by @kbd{TAB} to insert a template for updating a package; type @code{https} followed by @kbd{TAB} to insert a template for changing the home page URI of a package to HTTPS." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:297 +#: guix-git/doc/contributing.texi:327 msgid "The main snippet for @code{scheme-mode} is triggered by typing @code{package...} followed by @kbd{TAB}. This snippet also inserts the trigger string @code{origin...}, which can be expanded further. The @code{origin} snippet in turn may insert other trigger strings ending on @code{...}, which also can be expanded further." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:298 +#: guix-git/doc/contributing.texi:328 #, no-wrap msgid "insert or update copyright" msgstr "저작권 삽입 또는 최신화" #. type: code{#1} -#: guix-git/doc/contributing.texi:299 +#: guix-git/doc/contributing.texi:329 #, no-wrap msgid "M-x guix-copyright" msgstr "M-x guix-copyright" #. type: code{#1} -#: guix-git/doc/contributing.texi:300 +#: guix-git/doc/contributing.texi:330 #, no-wrap msgid "M-x copyright-update" msgstr "M-x copyright-update" #. type: Plain text -#: guix-git/doc/contributing.texi:304 +#: guix-git/doc/contributing.texi:334 msgid "We additionally provide insertion and automatic update of a copyright in @file{etc/copyright.el}. You may want to set your full name, mail, and load a file." msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:310 +#: guix-git/doc/contributing.texi:340 #, no-wrap msgid "" "(setq user-full-name \"Alice Doe\")\n" @@ -611,17 +653,17 @@ msgstr "" "(load-file \"~/src/guix/etc/copyright.el\")\n" #. type: Plain text -#: guix-git/doc/contributing.texi:313 +#: guix-git/doc/contributing.texi:343 msgid "To insert a copyright at the current line invoke @code{M-x guix-copyright}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:315 +#: guix-git/doc/contributing.texi:345 msgid "To update a copyright you need to specify a @code{copyright-names-regexp}." msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:319 +#: guix-git/doc/contributing.texi:349 #, no-wrap msgid "" "(setq copyright-names-regexp\n" @@ -631,281 +673,281 @@ msgstr "" " (format \"%s <%s>\" user-full-name user-mail-address))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:325 +#: guix-git/doc/contributing.texi:355 msgid "You can check if your copyright is up to date by evaluating @code{M-x copyright-update}. If you want to do it automatically after each buffer save then add @code{(add-hook 'after-save-hook 'copyright-update)} in Emacs." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:329 +#: guix-git/doc/contributing.texi:359 #, no-wrap msgid "packages, creating" msgstr "꾸러미, 생성" #. type: Plain text -#: guix-git/doc/contributing.texi:333 +#: guix-git/doc/contributing.texi:363 msgid "The GNU distribution is nascent and may well lack some of your favorite packages. This section describes how you can help make the distribution grow." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:341 +#: guix-git/doc/contributing.texi:371 msgid "Free software packages are usually distributed in the form of @dfn{source code tarballs}---typically @file{tar.gz} files that contain all the source files. Adding a package to the distribution means essentially two things: adding a @dfn{recipe} that describes how to build the package, including a list of other packages required to build it, and adding @dfn{package metadata} along with that recipe, such as a description and licensing information." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:350 +#: guix-git/doc/contributing.texi:380 msgid "In Guix all this information is embodied in @dfn{package definitions}. Package definitions provide a high-level view of the package. They are written using the syntax of the Scheme programming language; in fact, for each package we define a variable bound to the package definition, and export that variable from a module (@pxref{Package Modules}). However, in-depth Scheme knowledge is @emph{not} a prerequisite for creating packages. For more information on package definitions, @pxref{Defining Packages}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:356 +#: guix-git/doc/contributing.texi:386 msgid "Once a package definition is in place, stored in a file in the Guix source tree, it can be tested using the @command{guix build} command (@pxref{Invoking guix build}). For example, assuming the new package is called @code{gnew}, you may run this command from the Guix build tree (@pxref{Running Guix Before It Is Installed}):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:359 +#: guix-git/doc/contributing.texi:389 #, no-wrap msgid "./pre-inst-env guix build gnew --keep-failed\n" msgstr "./pre-inst-env guix build gnew --keep-failed\n" #. type: Plain text -#: guix-git/doc/contributing.texi:365 +#: guix-git/doc/contributing.texi:395 msgid "Using @code{--keep-failed} makes it easier to debug build failures since it provides access to the failed build tree. Another useful command-line option when debugging is @code{--log-file}, to access the build log." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:370 +#: guix-git/doc/contributing.texi:400 msgid "If the package is unknown to the @command{guix} command, it may be that the source file contains a syntax error, or lacks a @code{define-public} clause to export the package variable. To figure it out, you may load the module from Guile to get more information about the actual error:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:373 +#: guix-git/doc/contributing.texi:403 #, no-wrap msgid "./pre-inst-env guile -c '(use-modules (gnu packages gnew))'\n" msgstr "./pre-inst-env guile -c '(use-modules (gnu packages gnew))'\n" #. type: Plain text -#: guix-git/doc/contributing.texi:380 +#: guix-git/doc/contributing.texi:410 msgid "Once your package builds correctly, please send us a patch (@pxref{Submitting Patches}). Well, if you need help, we will be happy to help you too. Once the patch is committed in the Guix repository, the new package automatically gets built on the supported platforms by @url{https://@value{SUBSTITUTE-SERVER-1}, our continuous integration system}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:381 +#: guix-git/doc/contributing.texi:411 #, no-wrap msgid "substituter" msgstr "대체자" #. type: Plain text -#: guix-git/doc/contributing.texi:388 +#: guix-git/doc/contributing.texi:418 msgid "Users can obtain the new package definition simply by running @command{guix pull} (@pxref{Invoking guix pull}). When @code{@value{SUBSTITUTE-SERVER-1}} is done building the package, installing the package automatically downloads binaries from there (@pxref{Substitutes}). The only place where human intervention is needed is to review and apply the patch." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:404 -#: guix-git/doc/contributing.texi:405 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:434 +#: guix-git/doc/contributing.texi:435 #, no-wrap msgid "Software Freedom" msgstr "소프트웨어 자유" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "What may go into the distribution." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:432 -#: guix-git/doc/contributing.texi:433 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:462 +#: guix-git/doc/contributing.texi:463 #, no-wrap msgid "Package Naming" msgstr "꾸러미 이름 붙이기" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "What's in a name?" msgstr "이름에 무엇이 있습니까?" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:465 -#: guix-git/doc/contributing.texi:466 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:495 +#: guix-git/doc/contributing.texi:496 #, no-wrap msgid "Version Numbers" msgstr "버전 수" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "When the name is not enough." msgstr "이름이 충분하지 않을 때." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:572 -#: guix-git/doc/contributing.texi:573 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:602 +#: guix-git/doc/contributing.texi:603 #, no-wrap msgid "Synopses and Descriptions" msgstr "개요 및 설명" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Helping users find the right package." msgstr "사용자는 올바른 꾸러미 찾기를 도와줍니다." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:651 -#: guix-git/doc/contributing.texi:652 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:681 +#: guix-git/doc/contributing.texi:682 #, no-wrap msgid "Snippets versus Phases" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Whether to use a snippet, or a build phase." msgstr "단편적인 또는 구성 단계 사용 여부." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:666 -#: guix-git/doc/contributing.texi:667 guix-git/doc/guix.texi:1995 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:696 +#: guix-git/doc/contributing.texi:697 guix-git/doc/guix.texi:2012 #, no-wrap msgid "Emacs Packages" msgstr "이맥스 꾸러미" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Your Elisp fix." msgstr "Elisp 수정." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:706 -#: guix-git/doc/contributing.texi:707 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:736 +#: guix-git/doc/contributing.texi:737 #, no-wrap msgid "Python Modules" msgstr "파이썬 모듈" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "A touch of British comedy." msgstr "영국 희극의 촉진." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:782 -#: guix-git/doc/contributing.texi:783 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:812 +#: guix-git/doc/contributing.texi:813 #, no-wrap msgid "Perl Modules" msgstr "펄 모듈" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Little pearls." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:798 -#: guix-git/doc/contributing.texi:799 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:828 +#: guix-git/doc/contributing.texi:829 #, no-wrap msgid "Java Packages" msgstr "자바 꾸러미" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Coffee break." msgstr "휴식." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:818 -#: guix-git/doc/contributing.texi:819 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:848 +#: guix-git/doc/contributing.texi:849 #, no-wrap msgid "Rust Crates" msgstr "녹 상자" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Beware of oxidation." msgstr "산화에 주의하세요." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:852 -#: guix-git/doc/contributing.texi:853 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:882 +#: guix-git/doc/contributing.texi:883 #, no-wrap msgid "Fonts" msgstr "글꼴" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Fond of fonts." msgstr "폰트를 찾았습니다." #. type: cindex -#: guix-git/doc/contributing.texi:408 +#: guix-git/doc/contributing.texi:438 #, no-wrap msgid "free software" msgstr "자유 소프트웨어" #. type: Plain text -#: guix-git/doc/contributing.texi:416 +#: guix-git/doc/contributing.texi:446 msgid "The GNU operating system has been developed so that users can have freedom in their computing. GNU is @dfn{free software}, meaning that users have the @url{https://www.gnu.org/philosophy/free-sw.html,four essential freedoms}: to run the program, to study and change the program in source code form, to redistribute exact copies, and to distribute modified versions. Packages found in the GNU distribution provide only software that conveys these four freedoms." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:422 +#: guix-git/doc/contributing.texi:452 msgid "In addition, the GNU distribution follow the @url{https://www.gnu.org/distros/free-system-distribution-guidelines.html,free software distribution guidelines}. Among other things, these guidelines reject non-free firmware, recommendations of non-free software, and discuss ways to deal with trademarks and patents." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:430 +#: guix-git/doc/contributing.texi:460 msgid "Some otherwise free upstream package sources contain a small and optional subset that violates the above guidelines, for instance because this subset is itself non-free code. When that happens, the offending items are removed with appropriate patches or code snippets in the @code{origin} form of the package (@pxref{Defining Packages}). This way, @code{guix build --source} returns the ``freed'' source rather than the unmodified upstream source." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:435 +#: guix-git/doc/contributing.texi:465 #, no-wrap msgid "package name" msgstr "꾸러미 이름" #. type: Plain text -#: guix-git/doc/contributing.texi:443 +#: guix-git/doc/contributing.texi:473 msgid "A package actually has two names associated with it. First, there is the name of the @emph{Scheme variable}, the one following @code{define-public}. By this name, the package can be made known in the Scheme code, for instance as input to another package. Second, there is the string in the @code{name} field of a package definition. This name is used by package management commands such as @command{guix package} and @command{guix build}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:448 +#: guix-git/doc/contributing.texi:478 msgid "Both are usually the same and correspond to the lowercase conversion of the project name chosen upstream, with underscores replaced with hyphens. For instance, GNUnet is available as @code{gnunet}, and SDL_net as @code{sdl-net}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:456 +#: guix-git/doc/contributing.texi:486 msgid "A noteworthy exception to this rule is when the project name is only a single character, or if an older maintained project with the same name already exists---regardless of whether it has already been packaged for Guix. Use common sense to make such names unambiguous and meaningful. For example, Guix's package for the shell called ``s'' upstream is @code{s-shell} and @emph{not} @code{s}. Feel free to ask your fellow hackers for inspiration." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:461 +#: guix-git/doc/contributing.texi:491 msgid "We do not add @code{lib} prefixes for library packages, unless these are already part of the official project name. But @pxref{Python Modules} and @ref{Perl Modules} for special rules concerning modules for the Python and Perl languages." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:463 +#: guix-git/doc/contributing.texi:493 msgid "Font package names are handled differently, @pxref{Fonts}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:468 +#: guix-git/doc/contributing.texi:498 #, no-wrap msgid "package version" msgstr "꾸러미 버전" #. type: Plain text -#: guix-git/doc/contributing.texi:477 +#: guix-git/doc/contributing.texi:507 msgid "We usually package only the latest version of a given free software project. But sometimes, for instance for incompatible library versions, two (or more) versions of the same package are needed. These require different Scheme variable names. We use the name as defined in @ref{Package Naming} for the most recent version; previous versions use the same name, suffixed by @code{-} and the smallest prefix of the version number that may distinguish the two versions." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:480 +#: guix-git/doc/contributing.texi:510 msgid "The name inside the package definition is the same for all versions of a package and does not contain any version number." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:482 +#: guix-git/doc/contributing.texi:512 msgid "For instance, the versions 2.24.20 and 3.9.12 of GTK+ may be packaged as follows:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:494 +#: guix-git/doc/contributing.texi:524 #, no-wrap msgid "" "(define-public gtk+\n" @@ -931,12 +973,12 @@ msgstr "" " ...))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:496 +#: guix-git/doc/contributing.texi:526 msgid "If we also wanted GTK+ 3.8.2, this would be packaged as" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:502 +#: guix-git/doc/contributing.texi:532 #, no-wrap msgid "" "(define-public gtk+-3.8\n" @@ -952,23 +994,23 @@ msgstr "" " ...))\n" #. type: cindex -#: guix-git/doc/contributing.texi:506 +#: guix-git/doc/contributing.texi:536 #, no-wrap msgid "version number, for VCS snapshots" msgstr "VCS 스크린샷을 위한 버전 번호" #. type: Plain text -#: guix-git/doc/contributing.texi:512 +#: guix-git/doc/contributing.texi:542 msgid "Occasionally, we package snapshots of upstream's version control system (VCS) instead of formal releases. This should remain exceptional, because it is up to upstream developers to clarify what the stable release is. Yet, it is sometimes necessary. So, what should we put in the @code{version} field?" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:520 +#: guix-git/doc/contributing.texi:550 msgid "Clearly, we need to make the commit identifier of the VCS snapshot visible in the version string, but we also need to make sure that the version string is monotonically increasing so that @command{guix package --upgrade} can determine which version is newer. Since commit identifiers, notably with Git, are not monotonically increasing, we add a revision number that we increase each time we upgrade to a newer snapshot. The resulting version string looks like this:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:529 +#: guix-git/doc/contributing.texi:559 #, no-wrap msgid "" "2.0.11-3.cabba9e\n" @@ -988,12 +1030,12 @@ msgstr "" "latest upstream version\n" #. type: Plain text -#: guix-git/doc/contributing.texi:539 +#: guix-git/doc/contributing.texi:569 msgid "It is a good idea to strip commit identifiers in the @code{version} field to, say, 7 digits. It avoids an aesthetic annoyance (assuming aesthetics have a role to play here) as well as problems related to OS limits such as the maximum shebang length (127 bytes for the Linux kernel). There are helper functions for doing this for packages using @code{git-fetch} or @code{hg-fetch} (see below). It is best to use the full commit identifiers in @code{origin}s, though, to avoid ambiguities. A typical package definition may look like this:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:556 +#: guix-git/doc/contributing.texi:586 #, no-wrap msgid "" "(define my-package\n" @@ -1027,18 +1069,18 @@ msgstr "" " )))\n" #. type: deffn -#: guix-git/doc/contributing.texi:558 +#: guix-git/doc/contributing.texi:588 #, no-wrap msgid "{Scheme Procedure} git-version @var{VERSION} @var{REVISION} @var{COMMIT}" msgstr "" #. type: deffn -#: guix-git/doc/contributing.texi:560 +#: guix-git/doc/contributing.texi:590 msgid "Return the version string for packages using @code{git-fetch}." msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:564 +#: guix-git/doc/contributing.texi:594 #, no-wrap msgid "" "(git-version \"0.2.3\" \"0\" \"93818c936ee7e2f1ba1b315578bde363a7d43d05\")\n" @@ -1046,71 +1088,71 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/contributing.texi:567 +#: guix-git/doc/contributing.texi:597 #, no-wrap msgid "{Scheme Procedure} hg-version @var{VERSION} @var{REVISION} @var{CHANGESET}" msgstr "" #. type: deffn -#: guix-git/doc/contributing.texi:570 +#: guix-git/doc/contributing.texi:600 msgid "Return the version string for packages using @code{hg-fetch}. It works in the same way as @code{git-version}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:575 +#: guix-git/doc/contributing.texi:605 #, no-wrap msgid "package description" msgstr "꾸러미 설명" #. type: cindex -#: guix-git/doc/contributing.texi:576 +#: guix-git/doc/contributing.texi:606 #, no-wrap msgid "package synopsis" msgstr "꾸러미 개요" #. type: Plain text -#: guix-git/doc/contributing.texi:583 +#: guix-git/doc/contributing.texi:613 msgid "As we have seen before, each package in GNU@tie{}Guix includes a synopsis and a description (@pxref{Defining Packages}). Synopses and descriptions are important: They are what @command{guix package --search} searches, and a crucial piece of information to help users determine whether a given package suits their needs. Consequently, packagers should pay attention to what goes into them." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:591 +#: guix-git/doc/contributing.texi:621 msgid "Synopses must start with a capital letter and must not end with a period. They must not start with ``a'' or ``the'', which usually does not bring anything; for instance, prefer ``File-frobbing tool'' over ``A tool that frobs files''. The synopsis should say what the package is---e.g., ``Core GNU utilities (file, text, shell)''---or what it is used for---e.g., the synopsis for GNU@tie{}grep is ``Print lines matching a pattern''." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:601 +#: guix-git/doc/contributing.texi:631 msgid "Keep in mind that the synopsis must be meaningful for a very wide audience. For example, ``Manipulate alignments in the SAM format'' might make sense for a seasoned bioinformatics researcher, but might be fairly unhelpful or even misleading to a non-specialized audience. It is a good idea to come up with a synopsis that gives an idea of the application domain of the package. In this example, this might give something like ``Manipulate nucleotide sequence alignments'', which hopefully gives the user a better idea of whether this is what they are looking for." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:609 +#: guix-git/doc/contributing.texi:639 msgid "Descriptions should take between five and ten lines. Use full sentences, and avoid using acronyms without first introducing them. Please avoid marketing phrases such as ``world-leading'', ``industrial-strength'', and ``next-generation'', and avoid superlatives like ``the most advanced''---they are not helpful to users looking for a package and may even sound suspicious. Instead, try to be factual, mentioning use cases and features." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:610 +#: guix-git/doc/contributing.texi:640 #, no-wrap msgid "Texinfo markup, in package descriptions" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:619 +#: guix-git/doc/contributing.texi:649 msgid "Descriptions can include Texinfo markup, which is useful to introduce ornaments such as @code{@@code} or @code{@@dfn}, bullet lists, or hyperlinks (@pxref{Overview,,, texinfo, GNU Texinfo}). However you should be careful when using some characters for example @samp{@@} and curly braces which are the basic special characters in Texinfo (@pxref{Special Characters,,, texinfo, GNU Texinfo}). User interfaces such as @command{guix package --show} take care of rendering it appropriately." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:625 +#: guix-git/doc/contributing.texi:655 msgid "Synopses and descriptions are translated by volunteers @uref{https://translate.fedoraproject.org/projects/guix/packages, at Weblate} so that as many users as possible can read them in their native language. User interfaces search them and display them in the language specified by the current locale." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:630 +#: guix-git/doc/contributing.texi:660 msgid "To allow @command{xgettext} to extract them as translatable strings, synopses and descriptions @emph{must be literal strings}. This means that you cannot use @code{string-append} or @code{format} to construct these strings:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:636 +#: guix-git/doc/contributing.texi:666 #, no-wrap msgid "" "(package\n" @@ -1124,12 +1166,12 @@ msgstr "" " (description (string-append \"This is \" \"*not*\" \" translatable.\")))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:644 +#: guix-git/doc/contributing.texi:674 msgid "Translation is a lot of work so, as a packager, please pay even more attention to your synopses and descriptions as every change may entail additional work for translators. In order to help them, it is possible to make recommendations or instructions visible to them by inserting special comments like this (@pxref{xgettext Invocation,,, gettext, GNU Gettext}):" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:649 +#: guix-git/doc/contributing.texi:679 #, no-wrap msgid "" ";; TRANSLATORS: \"X11 resize-and-rotate\" should not be translated.\n" @@ -1138,441 +1180,445 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:654 +#: guix-git/doc/contributing.texi:684 #, no-wrap msgid "snippets, when to use" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:665 +#: guix-git/doc/contributing.texi:695 msgid "The boundary between using an origin snippet versus a build phase to modify the sources of a package can be elusive. Origin snippets are typically used to remove unwanted files such as bundled libraries, nonfree sources, or to apply simple substitutions. The source derived from an origin should produce a source that can be used to build the package on any system that the upstream package supports (i.e., act as the corresponding source). In particular, origin snippets must not embed store items in the sources; such patching should rather be done using build phases. Refer to the @code{origin} record documentation for more information (@pxref{origin Reference})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:669 +#: guix-git/doc/contributing.texi:699 #, no-wrap msgid "emacs, packaging" msgstr "emacs, 포장(packaging)" #. type: cindex -#: guix-git/doc/contributing.texi:670 +#: guix-git/doc/contributing.texi:700 #, no-wrap msgid "elisp, packaging" msgstr "elisp, 포장(packaging)" #. type: Plain text -#: guix-git/doc/contributing.texi:682 +#: guix-git/doc/contributing.texi:712 msgid "Emacs packages should preferably use the Emacs build system (@pxref{emacs-build-system}), for uniformity and the benefits provided by its build phases, such as the auto-generation of the autoloads file and the byte compilation of the sources. Because there is no standardized way to run a test suite for Emacs packages, tests are disabled by default. When a test suite is available, it should be enabled by setting the @code{#:tests?} argument to @code{#true}. By default, the command to run the test is @command{make check}, but any command can be specified via the @code{#:test-command} argument. The @code{#:test-command} argument expects a list containing a command and its arguments, to be invoked during the @code{check} phase." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:687 +#: guix-git/doc/contributing.texi:717 msgid "The Elisp dependencies of Emacs packages are typically provided as @code{propagated-inputs} when required at run time. As for other packages, build or test dependencies should be specified as @code{native-inputs}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:696 +#: guix-git/doc/contributing.texi:726 msgid "Emacs packages sometimes depend on resources directories that should be installed along the Elisp files. The @code{#:include} argument can be used for that purpose, by specifying a list of regexps to match. The best practice when using the @code{#:include} argument is to extend rather than override its default value (accessible via the @code{%default-include} variable). As an example, a yasnippet extension package typically include a @file{snippets} directory, which could be copied to the installation directory using:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:699 +#: guix-git/doc/contributing.texi:729 #, fuzzy, no-wrap #| msgid "#:include (cons \"^snippets/\" %default-include))\n" msgid "#:include (cons \"^snippets/\" %default-include)\n" msgstr "#:include (cons \"^snippets/\" %default-include))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:705 +#: guix-git/doc/contributing.texi:735 msgid "When encountering problems, it is wise to check for the presence of the @code{Package-Requires} extension header in the package main source file, and whether any dependencies and their versions listed therein are satisfied." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:709 +#: guix-git/doc/contributing.texi:739 #, no-wrap msgid "python" msgstr "파이썬" #. type: Plain text -#: guix-git/doc/contributing.texi:715 +#: guix-git/doc/contributing.texi:745 msgid "We currently package Python 2 and Python 3, under the Scheme variable names @code{python-2} and @code{python} as explained in @ref{Version Numbers}. To avoid confusion and naming clashes with other programming languages, it seems desirable that the name of a package for a Python module contains the word @code{python}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:722 +#: guix-git/doc/contributing.texi:752 msgid "Some modules are compatible with only one version of Python, others with both. If the package Foo is compiled with Python 3, we name it @code{python-foo}. If it is compiled with Python 2, we name it @code{python2-foo}. Packages should be added when they are necessary; we don't add Python 2 variants of the package unless we are going to use them." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:728 +#: guix-git/doc/contributing.texi:758 msgid "If a project already contains the word @code{python}, we drop this; for instance, the module python-dateutil is packaged under the names @code{python-dateutil} and @code{python2-dateutil}. If the project name starts with @code{py} (e.g.@: @code{pytz}), we keep it and prefix it as described above." msgstr "" #. type: subsubsection -#: guix-git/doc/contributing.texi:729 +#: guix-git/doc/contributing.texi:759 #, no-wrap msgid "Specifying Dependencies" msgstr "종속성 지정" #. type: cindex -#: guix-git/doc/contributing.texi:730 +#: guix-git/doc/contributing.texi:760 #, no-wrap msgid "inputs, for Python packages" msgstr "파이썬 꾸러미를 위한 입력" #. type: Plain text -#: guix-git/doc/contributing.texi:735 +#: guix-git/doc/contributing.texi:765 msgid "Dependency information for Python packages is usually available in the package source tree, with varying degrees of accuracy: in the @file{setup.py} file, in @file{requirements.txt}, or in @file{tox.ini}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:741 +#: guix-git/doc/contributing.texi:771 msgid "Your mission, when writing a recipe for a Python package, is to map these dependencies to the appropriate type of ``input'' (@pxref{package Reference, inputs}). Although the @code{pypi} importer normally does a good job (@pxref{Invoking guix import}), you may want to check the following check list to determine which dependency goes where." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:749 +#: guix-git/doc/contributing.texi:779 msgid "We currently package Python 2 with @code{setuptools} and @code{pip} installed like Python 3.4 has per default. Thus you don't need to specify either of these as an input. @command{guix lint} will warn you if you do." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:755 +#: guix-git/doc/contributing.texi:785 msgid "Python dependencies required at run time go into @code{propagated-inputs}. They are typically defined with the @code{install_requires} keyword in @file{setup.py}, or in the @file{requirements.txt} file." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:763 +#: guix-git/doc/contributing.texi:793 msgid "Python packages required only at build time---e.g., those listed with the @code{setup_requires} keyword in @file{setup.py}---or only for testing---e.g., those in @code{tests_require}---go into @code{native-inputs}. The rationale is that (1) they do not need to be propagated because they are not needed at run time, and (2) in a cross-compilation context, it's the ``native'' input that we'd want." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:767 +#: guix-git/doc/contributing.texi:797 msgid "Examples are the @code{pytest}, @code{mock}, and @code{nose} test frameworks. Of course if any of these packages is also required at run-time, it needs to go to @code{propagated-inputs}." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:772 +#: guix-git/doc/contributing.texi:802 msgid "Anything that does not fall in the previous categories goes to @code{inputs}, for example programs or C libraries required for building Python packages containing C extensions." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:778 +#: guix-git/doc/contributing.texi:808 msgid "If a Python package has optional dependencies (@code{extras_require}), it is up to you to decide whether to add them or not, based on their usefulness/overhead ratio (@pxref{Submitting Patches, @command{guix size}})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:785 +#: guix-git/doc/contributing.texi:815 #, no-wrap msgid "perl" msgstr "펄(perl)" #. type: Plain text -#: guix-git/doc/contributing.texi:796 +#: guix-git/doc/contributing.texi:826 msgid "Perl programs standing for themselves are named as any other package, using the lowercase upstream name. For Perl packages containing a single class, we use the lowercase class name, replace all occurrences of @code{::} by dashes and prepend the prefix @code{perl-}. So the class @code{XML::Parser} becomes @code{perl-xml-parser}. Modules containing several classes keep their lowercase upstream name and are also prepended by @code{perl-}. Such modules tend to have the word @code{perl} somewhere in their name, which gets dropped in favor of the prefix. For instance, @code{libwww-perl} becomes @code{perl-libwww}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:801 +#: guix-git/doc/contributing.texi:831 #, no-wrap msgid "java" msgstr "자바(java)" #. type: Plain text -#: guix-git/doc/contributing.texi:804 +#: guix-git/doc/contributing.texi:834 msgid "Java programs standing for themselves are named as any other package, using the lowercase upstream name." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:810 +#: guix-git/doc/contributing.texi:840 msgid "To avoid confusion and naming clashes with other programming languages, it is desirable that the name of a package for a Java package is prefixed with @code{java-}. If a project already contains the word @code{java}, we drop this; for instance, the package @code{ngsjava} is packaged under the name @code{java-ngs}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:816 +#: guix-git/doc/contributing.texi:846 msgid "For Java packages containing a single class or a small class hierarchy, we use the lowercase class name, replace all occurrences of @code{.} by dashes and prepend the prefix @code{java-}. So the class @code{apache.commons.cli} becomes package @code{java-apache-commons-cli}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:821 +#: guix-git/doc/contributing.texi:851 #, no-wrap msgid "rust" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:824 +#: guix-git/doc/contributing.texi:854 msgid "Rust programs standing for themselves are named as any other package, using the lowercase upstream name." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:828 +#: guix-git/doc/contributing.texi:858 msgid "To prevent namespace collisions we prefix all other Rust packages with the @code{rust-} prefix. The name should be changed to lowercase as appropriate and dashes should remain in place." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:834 +#: guix-git/doc/contributing.texi:864 msgid "In the rust ecosystem it is common for multiple incompatible versions of a package to be used at any given time, so all package definitions should have a versioned suffix. The versioned suffix is the left-most non-zero digit (and any leading zeros, of course). This follows the ``caret'' version scheme intended by Cargo. Examples@: @code{rust-clap-2}, @code{rust-rand-0.6}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:844 +#: guix-git/doc/contributing.texi:874 msgid "Because of the difficulty in reusing rust packages as pre-compiled inputs for other packages the Cargo build system (@pxref{Build Systems, @code{cargo-build-system}}) presents the @code{#:cargo-inputs} and @code{cargo-development-inputs} keywords as build system arguments. It would be helpful to think of these as similar to @code{propagated-inputs} and @code{native-inputs}. Rust @code{dependencies} and @code{build-dependencies} should go in @code{#:cargo-inputs}, and @code{dev-dependencies} should go in @code{#:cargo-development-inputs}. If a Rust package links to other libraries then the standard placement in @code{inputs} and the like should be used." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:850 +#: guix-git/doc/contributing.texi:880 msgid "Care should be taken to ensure the correct version of dependencies are used; to this end we try to refrain from skipping the tests or using @code{#:skip-build?} when possible. Of course this is not always possible, as the package may be developed for a different Operating System, depend on features from the Nightly Rust compiler, or the test suite may have atrophied since it was released." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:855 guix-git/doc/guix.texi:1930 +#: guix-git/doc/contributing.texi:885 guix-git/doc/guix.texi:1947 #, no-wrap msgid "fonts" msgstr "글꼴" #. type: Plain text -#: guix-git/doc/contributing.texi:861 +#: guix-git/doc/contributing.texi:891 msgid "For fonts that are in general not installed by a user for typesetting purposes, or that are distributed as part of a larger software package, we rely on the general packaging rules for software; for instance, this applies to the fonts delivered as part of the X.Org system or fonts that are part of TeX Live." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:865 +#: guix-git/doc/contributing.texi:895 msgid "To make it easier for a user to search for fonts, names for other packages containing only fonts are constructed as follows, independently of the upstream package name." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:873 +#: guix-git/doc/contributing.texi:903 msgid "The name of a package containing only one font family starts with @code{font-}; it is followed by the foundry name and a dash @code{-} if the foundry is known, and the font family name, in which spaces are replaced by dashes (and as usual, all upper case letters are transformed to lower case). For example, the Gentium font family by SIL is packaged under the name @code{font-sil-gentium}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:882 +#: guix-git/doc/contributing.texi:912 msgid "For a package containing several font families, the name of the collection is used in the place of the font family name. For instance, the Liberation fonts consist of three families, Liberation Sans, Liberation Serif and Liberation Mono. These could be packaged separately under the names @code{font-liberation-sans} and so on; but as they are distributed together under a common name, we prefer to package them together as @code{font-liberation}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:888 +#: guix-git/doc/contributing.texi:918 msgid "In the case where several formats of the same font family or font collection are packaged separately, a short form of the format, prepended by a dash, is added to the package name. We use @code{-ttf} for TrueType fonts, @code{-otf} for OpenType fonts and @code{-type1} for PostScript Type 1 fonts." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:896 +#: guix-git/doc/contributing.texi:926 msgid "In general our code follows the GNU Coding Standards (@pxref{Top,,, standards, GNU Coding Standards}). However, they do not say much about Scheme, so here are some additional rules." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:904 -#: guix-git/doc/contributing.texi:905 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:934 +#: guix-git/doc/contributing.texi:935 #, no-wrap msgid "Programming Paradigm" msgstr "프로그래밍 패러다임" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "How to compose your elements." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:911 -#: guix-git/doc/contributing.texi:912 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:941 +#: guix-git/doc/contributing.texi:942 #, no-wrap msgid "Modules" msgstr "모듈" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Where to store your code?" msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:922 -#: guix-git/doc/contributing.texi:923 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:952 +#: guix-git/doc/contributing.texi:953 #, no-wrap msgid "Data Types and Pattern Matching" msgstr "자료 유형과 유형 일치(pattern matching)" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Implementing data structures." msgstr "자료 구조 구현." #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:937 -#: guix-git/doc/contributing.texi:938 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:967 +#: guix-git/doc/contributing.texi:968 #, no-wrap msgid "Formatting Code" msgstr "형식화(formatting) 코드" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Writing conventions." msgstr "쓰기 규칙." #. type: Plain text -#: guix-git/doc/contributing.texi:910 +#: guix-git/doc/contributing.texi:940 msgid "Scheme code in Guix is written in a purely functional style. One exception is code that involves input/output, and procedures that implement low-level concepts, such as the @code{memoize} procedure." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:918 +#: guix-git/doc/contributing.texi:948 msgid "Guile modules that are meant to be used on the builder side must live in the @code{(guix build @dots{})} name space. They must not refer to other Guix or GNU modules. However, it is OK for a ``host-side'' module to use a build-side module." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:921 +#: guix-git/doc/contributing.texi:951 msgid "Modules that deal with the broader GNU system should be in the @code{(gnu @dots{})} name space rather than @code{(guix @dots{})}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:930 +#: guix-git/doc/contributing.texi:960 msgid "The tendency in classical Lisp is to use lists to represent everything, and then to browse them ``by hand'' using @code{car}, @code{cdr}, @code{cadr}, and co. There are several problems with that style, notably the fact that it is hard to read, error-prone, and a hindrance to proper type error reports." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:936 +#: guix-git/doc/contributing.texi:966 msgid "Guix code should define appropriate data types (for instance, using @code{define-record-type*}) rather than abuse lists. In addition, it should use pattern matching, via Guile’s @code{(ice-9 match)} module, especially when matching lists (@pxref{Pattern Matching,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:940 +#: guix-git/doc/contributing.texi:970 #, no-wrap msgid "formatting code" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:941 +#: guix-git/doc/contributing.texi:971 #, no-wrap msgid "coding style" msgstr "코딩 유형" #. type: Plain text -#: guix-git/doc/contributing.texi:948 +#: guix-git/doc/contributing.texi:978 msgid "When writing Scheme code, we follow common wisdom among Scheme programmers. In general, we follow the @url{https://mumble.net/~campbell/scheme/style.txt, Riastradh's Lisp Style Rules}. This document happens to describe the conventions mostly used in Guile’s code too. It is very thoughtful and well written, so please do read it." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:955 +#: guix-git/doc/contributing.texi:985 msgid "Some special forms introduced in Guix, such as the @code{substitute*} macro, have special indentation rules. These are defined in the @file{.dir-locals.el} file, which Emacs automatically uses. Also note that Emacs-Guix provides @code{guix-devel-mode} mode that indents and highlights Guix code properly (@pxref{Development,,, emacs-guix, The Emacs-Guix Reference Manual})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:956 +#: guix-git/doc/contributing.texi:986 #, no-wrap msgid "indentation, of code" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:957 +#: guix-git/doc/contributing.texi:987 #, no-wrap msgid "formatting, of code" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:960 +#: guix-git/doc/contributing.texi:990 msgid "If you do not use Emacs, please make sure to let your editor knows these rules. To automatically indent a package definition, you can also run:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:963 -#, no-wrap -msgid "./etc/indent-code.el gnu/packages/@var{file}.scm @var{package}\n" -msgstr "" +#: guix-git/doc/contributing.texi:993 +#, fuzzy, no-wrap +#| msgid "./pre-inst-env guix build guix\n" +msgid "./pre-inst-env guix style @var{package}\n" +msgstr "./pre-inst-env guix build guix\n" #. type: Plain text -#: guix-git/doc/contributing.texi:969 -msgid "This automatically indents the definition of @var{package} in @file{gnu/packages/@var{file}.scm} by running Emacs in batch mode. To indent a whole file, omit the second argument:" -msgstr "" - -#. type: example -#: guix-git/doc/contributing.texi:972 -#, no-wrap -msgid "./etc/indent-code.el gnu/services/@var{file}.scm\n" -msgstr "./etc/indent-code.el gnu/services/@var{file}.scm\n" +#: guix-git/doc/contributing.texi:997 +#, fuzzy +#| msgid "@xref{Invoking guix environment}, for more information on that command." +msgid "@xref{Invoking guix style}, for more information." +msgstr "@xref{Invoking guix environment}, 그 명령에서 보다 상세한 정보를 위하여." #. type: cindex -#: guix-git/doc/contributing.texi:974 +#: guix-git/doc/contributing.texi:998 #, no-wrap msgid "Vim, Scheme code editing" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:980 +#: guix-git/doc/contributing.texi:1004 msgid "If you are editing code with Vim, we recommend that you run @code{:set autoindent} so that your code is automatically indented as you type. Additionally, @uref{https://www.vim.org/scripts/script.php?script_id=3998, @code{paredit.vim}} may help you deal with all these parentheses." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:984 +#: guix-git/doc/contributing.texi:1008 msgid "We require all top-level procedures to carry a docstring. This requirement can be relaxed for simple private procedures in the @code{(guix build @dots{})} name space, though." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:987 +#: guix-git/doc/contributing.texi:1011 msgid "Procedures should not have more than four positional parameters. Use keyword parameters for procedures that take more than four parameters." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1001 +#: guix-git/doc/contributing.texi:1025 msgid "Development is done using the Git distributed version control system. Thus, access to the repository is not strictly necessary. We welcome contributions in the form of patches as produced by @code{git format-patch} sent to the @email{guix-patches@@gnu.org} mailing list (@pxref{submitting patches,, Submitting patches to a project, git, Git User Manual}). Contributors are encouraged to take a moment to set some Git repository options (@pxref{Configuring Git}) first, which can improve the readability of patches. Seasoned Guix developers may also want to look at the section on commit access (@pxref{Commit Access})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1008 +#: guix-git/doc/contributing.texi:1032 msgid "This mailing list is backed by a Debbugs instance, which allows us to keep track of submissions (@pxref{Tracking Bugs and Patches}). Each message sent to that mailing list gets a new tracking number assigned; people can then follow up on the submission by sending email to @code{@var{NNN}@@debbugs.gnu.org}, where @var{NNN} is the tracking number (@pxref{Sending a Patch Series})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1012 +#: guix-git/doc/contributing.texi:1036 msgid "Please write commit logs in the ChangeLog format (@pxref{Change Logs,,, standards, GNU Coding Standards}); you can check the commit history for examples." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1015 +#: guix-git/doc/contributing.texi:1039 msgid "Before submitting a patch that adds or modifies a package definition, please run through this check list:" msgstr "" #. type: code{#1} -#: guix-git/doc/contributing.texi:1017 guix-git/doc/contributing.texi:1223 +#: guix-git/doc/contributing.texi:1041 guix-git/doc/contributing.texi:1251 #, no-wrap msgid "git format-patch" msgstr "" #. type: code{#1} -#: guix-git/doc/contributing.texi:1018 +#: guix-git/doc/contributing.texi:1042 #, no-wrap msgid "git-format-patch" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1025 +#: guix-git/doc/contributing.texi:1049 msgid "When generating your patches with @code{git format-patch} or @code{git send-email}, we recommend using the option @code{--base=}, perhaps with the value @code{auto}. This option adds a note to the patch stating which commit the patch is based on. This helps reviewers understand how to apply and review your patches." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1031 +#: guix-git/doc/contributing.texi:1055 msgid "If the authors of the packaged software provide a cryptographic signature for the release tarball, make an effort to verify the authenticity of the archive. For a detached GPG signature file this would be done with the @code{gpg --verify} command." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1035 +#: guix-git/doc/contributing.texi:1059 msgid "Take some time to provide an adequate synopsis and description for the package. @xref{Synopses and Descriptions}, for some guidelines." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1040 +#: guix-git/doc/contributing.texi:1064 msgid "Run @code{guix lint @var{package}}, where @var{package} is the name of the new or modified package, and fix any errors it reports (@pxref{Invoking guix lint})." msgstr "Run @code{guix lint @var{package}}, where @var{package} is the name of the new or modified package, and fix any errors it reports (@pxref{Invoking guix lint})." #. type: enumerate -#: guix-git/doc/contributing.texi:1044 +#: guix-git/doc/contributing.texi:1068 +#, fuzzy +#| msgid "Run @code{guix lint @var{package}}, where @var{package} is the name of the new or modified package, and fix any errors it reports (@pxref{Invoking guix lint})." +msgid "Run @code{guix style @var{package}} to format the new package definition according to the project's conventions (@pxref{Invoking guix style})." +msgstr "Run @code{guix lint @var{package}}, where @var{package} is the name of the new or modified package, and fix any errors it reports (@pxref{Invoking guix lint})." + +#. type: enumerate +#: guix-git/doc/contributing.texi:1072 msgid "Make sure the package builds on your platform, using @code{guix build @var{package}}." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1052 +#: guix-git/doc/contributing.texi:1080 msgid "We recommend you also try building the package on other supported platforms. As you may not have access to actual hardware platforms, we recommend using the @code{qemu-binfmt-service-type} to emulate them. In order to enable it, add the @code{virtualization} service module and the following service to the list of services in your @code{operating-system} configuration:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:1057 +#: guix-git/doc/contributing.texi:1085 #, fuzzy, no-wrap #| msgid "" #| "(service qemu-binfmt-service-type\n" @@ -1588,17 +1634,17 @@ msgstr "" "(platforms (lookup-qemu-platforms \"arm\" \"aarch64\"))\n" #. type: enumerate -#: guix-git/doc/contributing.texi:1060 +#: guix-git/doc/contributing.texi:1088 msgid "Then reconfigure your system." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1065 +#: guix-git/doc/contributing.texi:1093 msgid "You can then build packages for different platforms by specifying the @code{--system} option. For example, to build the \"hello\" package for the armhf or aarch64 architectures, you would run the following commands, respectively:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1068 +#: guix-git/doc/contributing.texi:1096 #, no-wrap msgid "" "guix build --system=armhf-linux --rounds=2 hello\n" @@ -1606,231 +1652,231 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1071 +#: guix-git/doc/contributing.texi:1099 #, no-wrap msgid "bundling" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1074 +#: guix-git/doc/contributing.texi:1102 msgid "Make sure the package does not use bundled copies of software already available as separate packages." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1083 +#: guix-git/doc/contributing.texi:1111 msgid "Sometimes, packages include copies of the source code of their dependencies as a convenience for users. However, as a distribution, we want to make sure that such packages end up using the copy we already have in the distribution, if there is one. This improves resource usage (the dependency is built and stored only once), and allows the distribution to make transverse changes such as applying security updates for a given software package in a single place and have them affect the whole system---something that bundled copies prevent." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1092 +#: guix-git/doc/contributing.texi:1120 msgid "Take a look at the profile reported by @command{guix size} (@pxref{Invoking guix size}). This will allow you to notice references to other packages unwillingly retained. It may also help determine whether to split the package (@pxref{Packages with Multiple Outputs}), and which optional dependencies should be used. In particular, avoid adding @code{texlive} as a dependency: because of its extreme size, use the @code{texlive-tiny} package or @code{texlive-union} procedure instead." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1097 +#: guix-git/doc/contributing.texi:1125 msgid "For important changes, check that dependent packages (if applicable) are not affected by the change; @code{guix refresh --list-dependent @var{package}} will help you do that (@pxref{Invoking guix refresh})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1099 +#: guix-git/doc/contributing.texi:1127 #, no-wrap msgid "branching strategy" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1100 +#: guix-git/doc/contributing.texi:1128 #, no-wrap msgid "rebuild scheduling strategy" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1103 +#: guix-git/doc/contributing.texi:1131 msgid "Depending on the number of dependent packages and thus the amount of rebuilding induced, commits go to different branches, along these lines:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1105 +#: guix-git/doc/contributing.texi:1133 #, no-wrap msgid "300 dependent packages or less" msgstr "300 종속 꾸러미 이하" #. type: table -#: guix-git/doc/contributing.texi:1107 +#: guix-git/doc/contributing.texi:1135 msgid "@code{master} branch (non-disruptive changes)." msgstr "@code{master} branch (non-disruptive changes)." #. type: item -#: guix-git/doc/contributing.texi:1108 +#: guix-git/doc/contributing.texi:1136 #, no-wrap msgid "between 300 and 1,800 dependent packages" msgstr "300과 1,800 사이에서 종속 꾸러미" #. type: table -#: guix-git/doc/contributing.texi:1114 +#: guix-git/doc/contributing.texi:1142 msgid "@code{staging} branch (non-disruptive changes). This branch is intended to be merged in @code{master} every 6 weeks or so. Topical changes (e.g., an update of the GNOME stack) can instead go to a specific branch (say, @code{gnome-updates}). This branch is not expected to be buildable or usable until late in its development process." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1115 +#: guix-git/doc/contributing.texi:1143 #, no-wrap msgid "more than 1,800 dependent packages" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1120 +#: guix-git/doc/contributing.texi:1148 msgid "@code{core-updates} branch (may include major and potentially disruptive changes). This branch is intended to be merged in @code{master} every 6 months or so. This branch is not expected to be buildable or usable until late in its development process." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1127 +#: guix-git/doc/contributing.texi:1155 msgid "All these branches are @uref{https://@value{SUBSTITUTE-SERVER-1}, tracked by our build farm} and merged into @code{master} once everything has been successfully built. This allows us to fix issues before they hit users, and to reduce the window during which pre-built binaries are not available." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1136 +#: guix-git/doc/contributing.texi:1164 msgid "When we decide to start building the @code{staging} or @code{core-updates} branches, they will be forked and renamed with the suffix @code{-frozen}, at which time only bug fixes may be pushed to the frozen branches. The @code{core-updates} and @code{staging} branches will remain open to accept patches for the next cycle. Please ask on the mailing list or IRC if unsure where to place a patch." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1138 +#: guix-git/doc/contributing.texi:1166 #, no-wrap msgid "determinism, of build processes" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1139 +#: guix-git/doc/contributing.texi:1167 #, no-wrap msgid "reproducible builds, checking" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1143 +#: guix-git/doc/contributing.texi:1171 msgid "Check whether the package's build process is deterministic. This typically means checking whether an independent build of the package yields the exact same result that you obtained, bit for bit." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1146 +#: guix-git/doc/contributing.texi:1174 msgid "A simple way to do that is by building the same package several times in a row on your machine (@pxref{Invoking guix build}):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1149 +#: guix-git/doc/contributing.texi:1177 #, no-wrap msgid "guix build --rounds=2 my-package\n" msgstr "guix build --rounds=2 my-package\n" #. type: enumerate -#: guix-git/doc/contributing.texi:1153 +#: guix-git/doc/contributing.texi:1181 msgid "This is enough to catch a class of common non-determinism issues, such as timestamps or randomly-generated output in the build result." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1163 +#: guix-git/doc/contributing.texi:1191 msgid "Another option is to use @command{guix challenge} (@pxref{Invoking guix challenge}). You may run it once the package has been committed and built by @code{@value{SUBSTITUTE-SERVER-1}} to check whether it obtains the same result as you did. Better yet: Find another machine that can build it and run @command{guix publish}. Since the remote build machine is likely different from yours, this can catch non-determinism issues related to the hardware---e.g., use of different instruction set extensions---or to the operating system kernel---e.g., reliance on @code{uname} or @file{/proc} files." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1169 +#: guix-git/doc/contributing.texi:1197 msgid "When writing documentation, please use gender-neutral wording when referring to people, such as @uref{https://en.wikipedia.org/wiki/Singular_they, singular ``they''@comma{} ``their''@comma{} ``them''}, and so forth." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1173 +#: guix-git/doc/contributing.texi:1201 msgid "Verify that your patch contains only one set of related changes. Bundling unrelated changes together makes reviewing harder and slower." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1176 +#: guix-git/doc/contributing.texi:1204 msgid "Examples of unrelated changes include the addition of several packages, or a package update along with fixes to that package." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1181 -msgid "Please follow our code formatting rules, possibly running the @command{etc/indent-code.el} script to do that automatically for you (@pxref{Formatting Code})." +#: guix-git/doc/contributing.texi:1209 +msgid "Please follow our code formatting rules, possibly running @command{guix style} script to do that automatically for you (@pxref{Formatting Code})." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1189 +#: guix-git/doc/contributing.texi:1217 msgid "When possible, use mirrors in the source URL (@pxref{Invoking guix download}). Use reliable URLs, not generated ones. For instance, GitHub archives are not necessarily identical from one generation to the next, so in this case it's often better to clone the repository. Don't use the @command{name} field in the URL: it is not very useful and if the name changes, the URL will probably be wrong." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1193 +#: guix-git/doc/contributing.texi:1221 msgid "Check if Guix builds (@pxref{Building from Git}) and address the warnings, especially those about use of undefined symbols." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1196 +#: guix-git/doc/contributing.texi:1224 msgid "Make sure your changes do not break Guix and simulate a @code{guix pull} with:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1198 +#: guix-git/doc/contributing.texi:1226 #, no-wrap msgid "guix pull --url=/path/to/your/checkout --profile=/tmp/guix.master\n" msgstr "guix pull --url=/path/to/your/checkout --profile=/tmp/guix.master\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1211 +#: guix-git/doc/contributing.texi:1239 msgid "When posting a patch to the mailing list, use @samp{[PATCH] @dots{}} as a subject, if your patch is to be applied on a branch other than @code{master}, say @code{core-updates}, specify it in the subject like @samp{[PATCH core-updates] @dots{}}. You may use your email client or the @command{git send-email} command (@pxref{Sending a Patch Series}). We prefer to get patches in plain text messages, either inline or as MIME attachments. You are advised to pay attention if your email client changes anything like line breaks or indentation which could potentially break the patches." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1216 +#: guix-git/doc/contributing.texi:1244 msgid "Expect some delay when you submit your very first patch to @email{guix-patches@@gnu.org}. You have to wait until you get an acknowledgement with the assigned tracking number. Future acknowledgements should not be delayed." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1219 +#: guix-git/doc/contributing.texi:1247 msgid "When a bug is resolved, please close the thread by sending an email to @email{@var{NNN}-done@@debbugs.gnu.org}." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1220 guix-git/doc/contributing.texi:1221 +#: guix-git/doc/contributing.texi:1248 guix-git/doc/contributing.texi:1249 #, no-wrap msgid "Configuring Git" msgstr "Git 구성하기" #. type: cindex -#: guix-git/doc/contributing.texi:1222 +#: guix-git/doc/contributing.texi:1250 #, no-wrap msgid "git configuration" msgstr "git 구성" #. type: code{#1} -#: guix-git/doc/contributing.texi:1224 guix-git/doc/contributing.texi:1259 +#: guix-git/doc/contributing.texi:1252 guix-git/doc/contributing.texi:1287 #, no-wrap msgid "git send-email" msgstr "깃 전송-전자우편" #. type: Plain text -#: guix-git/doc/contributing.texi:1232 +#: guix-git/doc/contributing.texi:1260 msgid "If you have not done so already, you may wish to set a name and email that will be associated with your commits (@pxref{telling git your name, , Telling Git your name, git, Git User Manual}). If you wish to use a different name or email just for commits in this repository, you can use @command{git config --local}, or edit @file{.git/config} in the repository instead of @file{~/.gitconfig}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1238 +#: guix-git/doc/contributing.texi:1266 msgid "We provide some default settings in @file{etc/git/gitconfig} which modify how patches are generated, making them easier to read and apply. These settings can be applied by manually copying them to @file{.git/config} in your checkout, or by telling Git to include the whole file:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1241 +#: guix-git/doc/contributing.texi:1269 #, no-wrap msgid "git config --local include.path ../etc/git/gitconfig\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1245 +#: guix-git/doc/contributing.texi:1273 msgid "From then on, any changes to @file{etc/git/gitconfig} would automatically take effect." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1250 +#: guix-git/doc/contributing.texi:1278 msgid "Since the first patch in a series must be sent separately (@pxref{Sending a Patch Series}), it can also be helpful to tell @command{git format-patch} to handle the e-mail threading instead of @command{git send-email}:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1254 +#: guix-git/doc/contributing.texi:1282 #, no-wrap msgid "" "git config --local format.thread shallow\n" @@ -1838,187 +1884,187 @@ msgid "" msgstr "" #. type: anchor{#1} -#: guix-git/doc/contributing.texi:1256 guix-git/doc/contributing.texi:1258 +#: guix-git/doc/contributing.texi:1284 guix-git/doc/contributing.texi:1286 #, no-wrap msgid "Sending a Patch Series" msgstr "패치 시리즈 보내기" #. type: cindex -#: guix-git/doc/contributing.texi:1258 +#: guix-git/doc/contributing.texi:1286 #, no-wrap msgid "patch series" msgstr "패치 시리즈" #. type: Plain text -#: guix-git/doc/contributing.texi:1269 +#: guix-git/doc/contributing.texi:1297 msgid "When sending a patch series (e.g., using @code{git send-email}), please first send one message to @email{guix-patches@@gnu.org}, and then send subsequent patches to @email{@var{NNN}@@debbugs.gnu.org} to make sure they are kept together. See @uref{https://debbugs.gnu.org/Advanced.html, the Debbugs documentation} for more information. You can install @command{git send-email} with @command{guix install git:send-email}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1275 +#: guix-git/doc/contributing.texi:1303 msgid "This section describes how the Guix project tracks its bug reports and patch submissions." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1282 -#: guix-git/doc/contributing.texi:1283 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1310 +#: guix-git/doc/contributing.texi:1311 #, no-wrap msgid "The Issue Tracker" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "The official bug and patch tracker." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1296 -#: guix-git/doc/contributing.texi:1297 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1324 +#: guix-git/doc/contributing.texi:1325 #, fuzzy, no-wrap #| msgid "Debbugs, issue tracking system" msgid "Debbugs User Interfaces" msgstr "디버그, 사건 추적 시스템" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "Ways to interact with Debbugs." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1336 -#: guix-git/doc/contributing.texi:1337 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1364 +#: guix-git/doc/contributing.texi:1365 #, fuzzy, no-wrap #| msgid "Debbugs, issue tracking system" msgid "Debbugs Usertags" msgstr "디버그, 사건 추적 시스템" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "Tag reports with custom labels." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1285 +#: guix-git/doc/contributing.texi:1313 #, no-wrap msgid "bug reports, tracking" msgstr "결점 보고, 추적" #. type: cindex -#: guix-git/doc/contributing.texi:1286 +#: guix-git/doc/contributing.texi:1314 #, no-wrap msgid "patch submissions, tracking" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1287 +#: guix-git/doc/contributing.texi:1315 #, no-wrap msgid "issue tracking" msgstr "사건 추적하기" #. type: cindex -#: guix-git/doc/contributing.texi:1288 +#: guix-git/doc/contributing.texi:1316 #, no-wrap msgid "Debbugs, issue tracking system" msgstr "디버그, 사건 추적 시스템" #. type: Plain text -#: guix-git/doc/contributing.texi:1295 +#: guix-git/doc/contributing.texi:1323 msgid "Bug reports and patch submissions are currently tracked using the Debbugs instance at @uref{https://bugs.gnu.org}. Bug reports are filed against the @code{guix} ``package'' (in Debbugs parlance), by sending email to @email{bug-guix@@gnu.org}, while patch submissions are filed against the @code{guix-patches} package by sending email to @email{guix-patches@@gnu.org} (@pxref{Submitting Patches})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1301 +#: guix-git/doc/contributing.texi:1329 msgid "A web interface (actually @emph{two} web interfaces!) are available to browse issues:" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1310 +#: guix-git/doc/contributing.texi:1338 msgid "@url{https://issues.guix.gnu.org} provides a pleasant interface@footnote{The web interface at @url{https://issues.guix.gnu.org} is powered by Mumi, a nice piece of software written in Guile, and you can help! See @url{https://git.elephly.net/gitweb.cgi?p=software/mumi.git}.} to browse bug reports and patches, and to participate in discussions;" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1312 +#: guix-git/doc/contributing.texi:1340 msgid "@url{https://bugs.gnu.org/guix} lists bug reports;" msgstr "@url{https://bugs.gnu.org/guix} 결점 보고 목록;" #. type: itemize -#: guix-git/doc/contributing.texi:1314 +#: guix-git/doc/contributing.texi:1342 msgid "@url{https://bugs.gnu.org/guix-patches} lists patch submissions." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1319 +#: guix-git/doc/contributing.texi:1347 msgid "To view discussions related to issue number @var{n}, go to @indicateurl{https://issues.guix.gnu.org/@var{n}} or @indicateurl{https://bugs.gnu.org/@var{n}}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1322 +#: guix-git/doc/contributing.texi:1350 msgid "If you use Emacs, you may find it more convenient to interact with issues using @file{debbugs.el}, which you can install with:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1325 +#: guix-git/doc/contributing.texi:1353 #, no-wrap msgid "guix install emacs-debbugs\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1328 +#: guix-git/doc/contributing.texi:1356 msgid "For example, to list all open issues on @code{guix-patches}, hit:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1331 +#: guix-git/doc/contributing.texi:1359 #, no-wrap msgid "@kbd{C-u} @kbd{M-x} debbugs-gnu @kbd{RET} @kbd{RET} guix-patches @kbd{RET} n y\n" msgstr "@kbd{C-u} @kbd{M-x} debbugs-gnu @kbd{RET} @kbd{RET} guix-patches @kbd{RET} n y\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1335 +#: guix-git/doc/contributing.texi:1363 msgid "@xref{Top,,, debbugs-ug, Debbugs User Guide}, for more information on this nifty tool!" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1339 +#: guix-git/doc/contributing.texi:1367 #, no-wrap msgid "usertags, for debbugs" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1340 +#: guix-git/doc/contributing.texi:1368 #, fuzzy, no-wrap #| msgid "Debbugs, issue tracking system" msgid "Debbugs usertags" msgstr "디버그, 사건 추적 시스템" #. type: Plain text -#: guix-git/doc/contributing.texi:1346 +#: guix-git/doc/contributing.texi:1374 msgid "Debbugs provides a feature called @dfn{usertags} that allows any user to tag any bug with an arbitrary label. Bugs can be searched by usertag, so this is a handy way to organize bugs@footnote{The list of usertags is public information, and anyone can modify any user's list of usertags, so keep that in mind if you choose to use this feature.}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1352 +#: guix-git/doc/contributing.texi:1380 msgid "For example, to view all the bug reports (or patches, in the case of @code{guix-patches}) tagged with the usertag @code{powerpc64le-linux} for the user @code{guix}, open a URL like the following in a web browser: @url{https://debbugs.gnu.org/cgi-bin/pkgreport.cgi?tag=powerpc64le-linux;users=guix}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1356 +#: guix-git/doc/contributing.texi:1384 msgid "For more information on how to use usertags, please refer to the documentation for Debbugs or the documentation for whatever tool you use to interact with Debbugs." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1361 +#: guix-git/doc/contributing.texi:1389 msgid "In Guix, we are experimenting with usertags to keep track of architecture-specific issues. To facilitate collaboration, all our usertags are associated with the single user @code{guix}. The following usertags currently exist for that user:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1364 guix-git/doc/guix.texi:556 +#: guix-git/doc/contributing.texi:1392 guix-git/doc/guix.texi:557 #, no-wrap msgid "powerpc64le-linux" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1372 +#: guix-git/doc/contributing.texi:1400 msgid "The purpose of this usertag is to make it easy to find the issues that matter most for the @code{powerpc64le-linux} system type. Please assign this usertag to bugs or patches that affect @code{powerpc64le-linux} but not other system types. In addition, you may use it to identify issues that for some reason are particularly important for the @code{powerpc64le-linux} system type, even if the issue affects other system types, too." msgstr "" @@ -2026,135 +2072,135 @@ msgstr "" #. type: item #. #-#-#-#-# guix.pot (guix manual checkout) #-#-#-#-# #. type: cindex -#: guix-git/doc/contributing.texi:1373 guix-git/doc/guix.texi:3070 -#: guix-git/doc/guix.texi:4771 +#: guix-git/doc/contributing.texi:1401 guix-git/doc/guix.texi:3087 +#: guix-git/doc/guix.texi:4789 #, no-wrap msgid "reproducibility" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1377 +#: guix-git/doc/contributing.texi:1405 msgid "For issues related to reproducibility. For example, it would be appropriate to assign this usertag to a bug report for a package that fails to build reproducibly." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1384 +#: guix-git/doc/contributing.texi:1412 msgid "If you're a committer and you want to add a usertag, just start using it with the @code{guix} user. If the usertag proves useful to you, consider updating this section of the manual so that others will know what your usertag means." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1388 +#: guix-git/doc/contributing.texi:1416 #, no-wrap msgid "commit access, for developers" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1394 -msgid "Everyone can contribute to Guix without having commit access (@pxref{Submitting Patches}). However, for frequent contributors, having write access to the repository can be convenient. Commit access should not be thought of as a ``badge of honor'' but rather as a responsibility a contributor is willing to take to help the project." +#: guix-git/doc/contributing.texi:1427 +msgid "Everyone can contribute to Guix without having commit access (@pxref{Submitting Patches}). However, for frequent contributors, having write access to the repository can be convenient. As a rule of thumb, a contributor should have accumulated fifty (50) reviewed commits to be considered as a committer and have sustained their activity in the project for at least 6 months. This ensures enough interactions with the contributor, which is essential for mentoring and assessing whether they are ready to become a committer. Commit access should not be thought of as a ``badge of honor'' but rather as a responsibility a contributor is willing to take to help the project." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1398 +#: guix-git/doc/contributing.texi:1431 msgid "The following sections explain how to get commit access, how to be ready to push commits, and the policies and community expectations for commits pushed upstream." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1399 +#: guix-git/doc/contributing.texi:1432 #, fuzzy, no-wrap #| msgid "Commit Access" msgid "Applying for Commit Access" msgstr "접근 허용" #. type: Plain text -#: guix-git/doc/contributing.texi:1403 +#: guix-git/doc/contributing.texi:1436 msgid "When you deem it necessary, consider applying for commit access by following these steps:" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1412 +#: guix-git/doc/contributing.texi:1445 msgid "Find three committers who would vouch for you. You can view the list of committers at @url{https://savannah.gnu.org/project/memberlist.php?group=guix}. Each of them should email a statement to @email{guix-maintainers@@gnu.org} (a private alias for the collective of maintainers), signed with their OpenPGP key." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1418 +#: guix-git/doc/contributing.texi:1451 msgid "Committers are expected to have had some interactions with you as a contributor and to be able to judge whether you are sufficiently familiar with the project's practices. It is @emph{not} a judgment on the value of your work, so a refusal should rather be interpreted as ``let's try again later''." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1425 +#: guix-git/doc/contributing.texi:1458 msgid "Send @email{guix-maintainers@@gnu.org} a message stating your intent, listing the three committers who support your application, signed with the OpenPGP key you will use to sign commits, and giving its fingerprint (see below). See @uref{https://emailselfdefense.fsf.org/en/}, for an introduction to public-key cryptography with GnuPG." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1431 +#: guix-git/doc/contributing.texi:1464 msgid "Set up GnuPG such that it never uses the SHA1 hash algorithm for digital signatures, which is known to be unsafe since 2019, for instance by adding the following line to @file{~/.gnupg/gpg.conf} (@pxref{GPG Esoteric Options,,, gnupg, The GNU Privacy Guard Manual}):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1434 +#: guix-git/doc/contributing.texi:1467 #, no-wrap msgid "digest-algo sha512\n" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1439 +#: guix-git/doc/contributing.texi:1472 msgid "Maintainers ultimately decide whether to grant you commit access, usually following your referrals' recommendation." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1441 +#: guix-git/doc/contributing.texi:1474 #, no-wrap msgid "OpenPGP, signed commits" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1446 +#: guix-git/doc/contributing.texi:1479 msgid "If and once you've been given access, please send a message to @email{guix-devel@@gnu.org} to say so, again signed with the OpenPGP key you will use to sign commits (do that before pushing your first commit). That way, everyone can notice and ensure you control that OpenPGP key." msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:1447 guix-git/doc/guix.texi:17972 +#: guix-git/doc/contributing.texi:1480 guix-git/doc/guix.texi:18334 #, no-wrap msgid "Important" msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:1449 +#: guix-git/doc/contributing.texi:1482 msgid "Before you can push for the first time, maintainers must:" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1453 +#: guix-git/doc/contributing.texi:1486 msgid "add your OpenPGP key to the @code{keyring} branch;" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1456 +#: guix-git/doc/contributing.texi:1489 msgid "add your OpenPGP fingerprint to the @file{.guix-authorizations} file of the branch(es) you will commit to." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1461 +#: guix-git/doc/contributing.texi:1494 msgid "Make sure to read the rest of this section and... profit!" msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:1467 +#: guix-git/doc/contributing.texi:1500 msgid "Maintainers are happy to give commit access to people who have been contributing for some time and have a track record---don't be shy and don't underestimate your work!" msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:1471 +#: guix-git/doc/contributing.texi:1504 msgid "However, note that the project is working towards a more automated patch review and merging system, which, as a consequence, may lead us to have fewer people with commit access to the main repository. Stay tuned!" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1478 +#: guix-git/doc/contributing.texi:1511 msgid "All commits that are pushed to the central repository on Savannah must be signed with an OpenPGP key, and the public key should be uploaded to your user account on Savannah and to public key servers, such as @code{keys.openpgp.org}. To configure Git to automatically sign commits, run:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1481 +#: guix-git/doc/contributing.texi:1514 #, no-wrap msgid "" "git config commit.gpgsign true\n" @@ -2162,7 +2208,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1484 +#: guix-git/doc/contributing.texi:1517 #, fuzzy, no-wrap #| msgid "" #| "git config commit.gpgsign true\n" @@ -2175,348 +2221,348 @@ msgstr "" "git config user.signingkey CABBA6EA1DC0FF33\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1489 +#: guix-git/doc/contributing.texi:1522 msgid "You can prevent yourself from accidentally pushing unsigned commits to Savannah by using the pre-push Git hook located at @file{etc/git/pre-push}:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1492 +#: guix-git/doc/contributing.texi:1525 #, no-wrap msgid "cp etc/git/pre-push .git/hooks/pre-push\n" msgstr "cp etc/git/pre-push .git/hooks/pre-push\n" #. type: subsection -#: guix-git/doc/contributing.texi:1494 +#: guix-git/doc/contributing.texi:1527 #, fuzzy, no-wrap #| msgid "Commit Access" msgid "Commit Policy" msgstr "접근 허용" #. type: Plain text -#: guix-git/doc/contributing.texi:1499 +#: guix-git/doc/contributing.texi:1532 msgid "If you get commit access, please make sure to follow the policy below (discussions of the policy can take place on @email{guix-devel@@gnu.org})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1504 +#: guix-git/doc/contributing.texi:1537 msgid "Non-trivial patches should always be posted to @email{guix-patches@@gnu.org} (trivial patches include fixing typos, etc.). This mailing list fills the patch-tracking database (@pxref{Tracking Bugs and Patches})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1513 +#: guix-git/doc/contributing.texi:1546 msgid "For patches that just add a new package, and a simple one, it's OK to commit, if you're confident (which means you successfully built it in a chroot setup, and have done a reasonable copyright and license auditing). Likewise for package upgrades, except upgrades that trigger a lot of rebuilds (for example, upgrading GnuTLS or GLib). We have a mailing list for commit notifications (@email{guix-commits@@gnu.org}), so people can notice. Before pushing your changes, make sure to run @code{git pull --rebase}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1518 +#: guix-git/doc/contributing.texi:1551 msgid "When pushing a commit on behalf of somebody else, please add a @code{Signed-off-by} line at the end of the commit log message---e.g., with @command{git am --signoff}. This improves tracking of who did what." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1522 +#: guix-git/doc/contributing.texi:1555 msgid "When adding channel news entries (@pxref{Channels, Writing Channel News}), make sure they are well-formed by running the following command right before pushing:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1525 +#: guix-git/doc/contributing.texi:1558 #, no-wrap msgid "make check-channel-news\n" msgstr "make check-channel-news\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1531 +#: guix-git/doc/contributing.texi:1564 msgid "For anything else, please post to @email{guix-patches@@gnu.org} and leave time for a review, without committing anything (@pxref{Submitting Patches}). If you didn’t receive any reply after two weeks, and if you're confident, it's OK to commit." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1534 +#: guix-git/doc/contributing.texi:1567 msgid "That last part is subject to being adjusted, allowing individuals to commit directly on non-controversial changes on parts they’re familiar with." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1535 +#: guix-git/doc/contributing.texi:1568 #, no-wrap msgid "Addressing Issues" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1546 +#: guix-git/doc/contributing.texi:1579 msgid "Peer review (@pxref{Submitting Patches}) and tools such as @command{guix lint} (@pxref{Invoking guix lint}) and the test suite (@pxref{Running the Test Suite}) should catch issues before they are pushed. Yet, commits that ``break'' functionality might occasionally go through. When that happens, there are two priorities: mitigating the impact, and understanding what happened to reduce the chance of similar incidents in the future. The responsibility for both these things primarily lies with those involved, but like everything this is a group effort." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1551 +#: guix-git/doc/contributing.texi:1584 msgid "Some issues can directly affect all users---for instance because they make @command{guix pull} fail or break core functionality, because they break major packages (at build time or run time), or because they introduce known security vulnerabilities." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1552 +#: guix-git/doc/contributing.texi:1585 #, no-wrap msgid "reverting commits" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1558 +#: guix-git/doc/contributing.texi:1591 msgid "The people involved in authoring, reviewing, and pushing such commit(s) should be at the forefront to mitigate their impact in a timely fashion: by pushing a followup commit to fix it (if possible), or by reverting it to leave time to come up with a proper fix, and by communicating with other developers about the problem." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1564 +#: guix-git/doc/contributing.texi:1597 msgid "If these persons are unavailable to address the issue in time, other committers are entitled to revert the commit(s), explaining in the commit log and on the mailing list what the problem was, with the goal of leaving time to the original committer, reviewer(s), and author(s) to propose a way forward." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1573 +#: guix-git/doc/contributing.texi:1606 msgid "Once the problem has been dealt with, it is the responsibility of those involved to make sure the situation is understood. If you are working to understand what happened, focus on gathering information and avoid assigning any blame. Do ask those involved to describe what happened, do not ask them to explain the situation---this would implicitly blame them, which is unhelpful. Accountability comes from a consensus about the problem, learning from it and improving processes so that it's less likely to reoccur." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1574 +#: guix-git/doc/contributing.texi:1607 #, no-wrap msgid "Commit Revocation" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1581 +#: guix-git/doc/contributing.texi:1614 msgid "In order to reduce the possibility of mistakes, committers will have their Savannah account removed from the Guix Savannah project and their key removed from @file{.guix-authorizations} after 12 months of inactivity; they can ask to regain commit access by emailing the maintainers, without going through the vouching process." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1591 +#: guix-git/doc/contributing.texi:1624 msgid "Maintainers@footnote{See @uref{https://guix.gnu.org/en/about} for the current list of maintainers. You can email them privately at @email{guix-maintainers@@gnu.org}.} may also revoke an individual's commit rights, as a last resort, if cooperation with the rest of the community has caused too much friction---even within the bounds of the project's code of conduct (@pxref{Contributing}). They would only do so after public or private discussion with the individual and a clear notice. Examples of behavior that hinders cooperation and could lead to such a decision include:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1593 +#: guix-git/doc/contributing.texi:1626 #, no-wrap msgid "repeated violation of the commit policy stated above;" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1594 +#: guix-git/doc/contributing.texi:1627 #, no-wrap msgid "repeated failure to take peer criticism into account;" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1595 +#: guix-git/doc/contributing.texi:1628 #, no-wrap msgid "breaching trust through a series of grave incidents." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1602 +#: guix-git/doc/contributing.texi:1635 msgid "When maintainers resort to such a decision, they notify developers on @email{guix-devel@@gnu.org}; inquiries may be sent to @email{guix-maintainers@@gnu.org}. Depending on the situation, the individual may still be welcome to contribute." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1603 +#: guix-git/doc/contributing.texi:1636 #, no-wrap msgid "Helping Out" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1610 +#: guix-git/doc/contributing.texi:1643 msgid "One last thing: the project keeps moving forward because committers not only push their own awesome changes, but also offer some of their time @emph{reviewing} and pushing other people's changes. As a committer, you're welcome to use your expertise and commit rights to help other contributors, too!" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1614 +#: guix-git/doc/contributing.texi:1647 #, no-wrap msgid "update-guix-package, updating the guix package" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1620 +#: guix-git/doc/contributing.texi:1653 msgid "It is sometimes desirable to update the @code{guix} package itself (the package defined in @code{(gnu packages package-management)}), for example to make new daemon features available for use by the @code{guix-service-type} service type. In order to simplify this task, the following command can be used:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1623 +#: guix-git/doc/contributing.texi:1656 #, no-wrap msgid "make update-guix-package\n" msgstr "make update-guix-package\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1630 +#: guix-git/doc/contributing.texi:1663 msgid "The @code{update-guix-package} make target will use the last known @emph{commit} corresponding to @code{HEAD} in your Guix checkout, compute the hash of the Guix sources corresponding to that commit and update the @code{commit}, @code{revision} and hash of the @code{guix} package definition." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1634 +#: guix-git/doc/contributing.texi:1667 msgid "To validate that the updated @code{guix} package hashes are correct and that it can be built successfully, the following command can be run from the directory of your Guix checkout:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1637 +#: guix-git/doc/contributing.texi:1670 #, no-wrap msgid "./pre-inst-env guix build guix\n" msgstr "./pre-inst-env guix build guix\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1642 +#: guix-git/doc/contributing.texi:1675 msgid "To guard against accidentally updating the @code{guix} package to a commit that others can't refer to, a check is made that the commit used has already been pushed to the Savannah-hosted Guix git repository." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1647 +#: guix-git/doc/contributing.texi:1680 msgid "This check can be disabled, @emph{at your own peril}, by setting the @code{GUIX_ALLOW_ME_TO_USE_PRIVATE_COMMIT} environment variable. When this variable is set, the updated package source is also added to the store. This is used as part of the release process of Guix." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1648 +#: guix-git/doc/contributing.texi:1681 #, no-wrap msgid "translation" msgstr "번역" #. type: cindex -#: guix-git/doc/contributing.texi:1649 +#: guix-git/doc/contributing.texi:1682 #, no-wrap msgid "l10n" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1650 +#: guix-git/doc/contributing.texi:1683 #, no-wrap msgid "i18n" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1651 +#: guix-git/doc/contributing.texi:1684 #, no-wrap msgid "native language support" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1661 +#: guix-git/doc/contributing.texi:1694 msgid "Writing code and packages is not the only way to provide a meaningful contribution to Guix. Translating to a language you speak is another example of a valuable contribution you can make. This section is designed to describe the translation process. It gives you advice on how you can get involved, what can be translated, what mistakes you should avoid and what we can do to help you!" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1667 +#: guix-git/doc/contributing.texi:1700 msgid "Guix is a big project that has multiple components that can be translated. We coordinate the translation effort on a @uref{https://translate.fedoraproject.org/projects/guix/,Weblate instance} hosted by our friends at Fedora. You will need an account to submit translations." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1674 +#: guix-git/doc/contributing.texi:1707 msgid "Some of the software packaged in Guix also contain translations. We do not host a translation platform for them. If you want to translate a package provided by Guix, you should contact their developers or find the information on their website. As an example, you can find the homepage of the @code{hello} package by typing @code{guix show hello}. On the ``homepage'' line, you will see @url{https://www.gnu.org/software/hello/} as the homepage." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1679 +#: guix-git/doc/contributing.texi:1712 msgid "Many GNU and non-GNU packages can be translated on the @uref{https://translationproject.org,Translation Project}. Some projects with multiple components have their own platform. For instance, GNOME has its own platform, @uref{https://l10n.gnome.org/,Damned Lies}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1681 +#: guix-git/doc/contributing.texi:1714 msgid "Guix has five components hosted on Weblate." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1683 +#: guix-git/doc/contributing.texi:1716 #, no-wrap msgid "@code{guix} contains all the strings from the Guix software (the" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1718 msgid "guided system installer, the package manager, etc), excluding packages." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1718 #, no-wrap msgid "@code{packages} contains the synopsis (single-sentence description" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1687 +#: guix-git/doc/contributing.texi:1720 msgid "of a package) and description (longer description) of packages in Guix." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1687 +#: guix-git/doc/contributing.texi:1720 #, no-wrap msgid "@code{website} contains the official Guix website, except for" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1689 +#: guix-git/doc/contributing.texi:1722 msgid "blog posts and multimedia content." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1689 +#: guix-git/doc/contributing.texi:1722 #, no-wrap msgid "@code{documentation-manual} corresponds to this manual." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1690 +#: guix-git/doc/contributing.texi:1723 #, no-wrap msgid "@code{documentation-cookbook} is the component for the cookbook." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1693 +#: guix-git/doc/contributing.texi:1726 #, no-wrap msgid "General Directions" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1701 +#: guix-git/doc/contributing.texi:1734 msgid "Once you get an account, you should be able to select a component from @uref{https://translate.fedoraproject.org/projects/guix/,the guix project}, and select a language. If your language does not appear in the list, go to the bottom and click on the ``Start new translation'' button. Select the language you want to translate to from the list, to start your new translation." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1706 +#: guix-git/doc/contributing.texi:1739 msgid "Like lots of other free software packages, Guix uses @uref{https://www.gnu.org/software/gettext,GNU Gettext} for its translations, with which translatable strings are extracted from the source code to so-called PO files." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1717 +#: guix-git/doc/contributing.texi:1750 msgid "Even though PO files are text files, changes should not be made with a text editor but with PO editing software. Weblate integrates PO editing functionality. Alternatively, translators can use any of various free-software tools for filling in translations, of which @uref{https://poedit.net/,Poedit} is one example, and (after logging in) @uref{https://docs.weblate.org/en/latest/user/files.html,upload} the changed file. There is also a special @uref{https://www.emacswiki.org/emacs/PoMode,PO editing mode} for users of GNU Emacs. Over time translators find out what software they are happy with and what features they need." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1722 +#: guix-git/doc/contributing.texi:1755 msgid "On Weblate, you will find various links to the editor, that will show various subsets (or all) of the strings. Have a look around and at the @uref{https://docs.weblate.org/en/latest/,documentation} to familiarize yourself with the platform." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1723 +#: guix-git/doc/contributing.texi:1756 #, no-wrap msgid "Translation Components" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1728 +#: guix-git/doc/contributing.texi:1761 msgid "In this section, we provide more detailed guidance on the translation process, as well as details on what you should or should not do. When in doubt, please contact us, we will be happy to help!" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1730 guix-git/doc/guix.texi:9420 +#: guix-git/doc/contributing.texi:1763 guix-git/doc/guix.texi:9734 #, no-wrap msgid "guix" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1735 +#: guix-git/doc/contributing.texi:1768 msgid "Guix is written in the Guile programming language, and some strings contain special formatting that is interpreted by Guile. These special formatting should be highlighted by Weblate. They start with @code{~} followed by one or more characters." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1744 +#: guix-git/doc/contributing.texi:1777 msgid "When printing the string, Guile replaces the special formatting symbols with actual values. For instance, the string @samp{ambiguous package specification `~a'} would be substituted to contain said package specification instead of @code{~a}. To properly translate this string, you must keep the formatting code in your translation, although you can place it where it makes sense in your language. For instance, the French translation says @samp{spécification du paquet « ~a » ambiguë} because the adjective needs to be placed in the end of the sentence." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1748 +#: guix-git/doc/contributing.texi:1781 msgid "If there are multiple formatting symbols, make sure to respect the order. Guile does not know in which order you intended the string to be read, so it will substitute the symbols in the same order as the English sentence." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1756 +#: guix-git/doc/contributing.texi:1789 msgid "As an example, you cannot translate @samp{package '~a' has been superseded by '~a'} by @samp{'~a' superseeds package '~a'}, because the meaning would be reversed. If @var{foo} is superseded by @var{bar}, the translation would read @samp{'foo' superseeds package 'bar'}. To work around this problem, it is possible to use more advanced formatting to select a given piece of data, instead of following the default English order. @xref{Formatted Output,,, guile, GNU Guile Reference Manual}, for more information on formatting in Guile." msgstr "" @@ -2524,98 +2570,98 @@ msgstr "" #. type: item #. #-#-#-#-# guix.pot (guix manual checkout) #-#-#-#-# #. type: cindex -#: guix-git/doc/contributing.texi:1757 guix-git/doc/guix.texi:2988 +#: guix-git/doc/contributing.texi:1790 guix-git/doc/guix.texi:3005 #, no-wrap msgid "packages" msgstr "꾸러미" #. type: table -#: guix-git/doc/contributing.texi:1762 +#: guix-git/doc/contributing.texi:1795 msgid "Package descriptions occasionally contain Texinfo markup (@pxref{Synopses and Descriptions}). Texinfo markup looks like @samp{@@code@{rm -rf@}}, @samp{@@emph@{important@}}, etc. When translating, please leave markup as is." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1771 +#: guix-git/doc/contributing.texi:1804 msgid "The characters after ``@@'' form the name of the markup, and the text between ``@{'' and ``@}'' is its content. In general, you should not translate the content of markup like @code{@@code}, as it contains literal code that do not change with language. You can translate the content of formatting markup such as @code{@@emph}, @code{@@i}, @code{@@itemize}, @code{@@item}. However, do not translate the name of the markup, or it will not be recognized. Do not translate the word after @code{@@end}, it is the name of the markup that is closed at this position (e.g.@: @code{@@itemize ... @@end itemize})." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1772 +#: guix-git/doc/contributing.texi:1805 #, no-wrap msgid "documentation-manual and documentation-cookbook" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1776 +#: guix-git/doc/contributing.texi:1809 msgid "The first step to ensure a successful translation of the manual is to find and translate the following strings @emph{first}:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1778 +#: guix-git/doc/contributing.texi:1811 #, no-wrap msgid "@code{version.texi}: Translate this string as @code{version-xx.texi}," msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1781 +#: guix-git/doc/contributing.texi:1814 msgid "where @code{xx} is your language code (the one shown in the URL on weblate)." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1781 +#: guix-git/doc/contributing.texi:1814 #, no-wrap msgid "@code{contributing.texi}: Translate this string as" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1783 +#: guix-git/doc/contributing.texi:1816 msgid "@code{contributing.xx.texi}, where @code{xx} is the same language code." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1783 +#: guix-git/doc/contributing.texi:1816 #, no-wrap msgid "@code{Top}: Do not translate this string, it is important for Texinfo." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1786 +#: guix-git/doc/contributing.texi:1819 msgid "If you translate it, the document will be empty (missing a Top node). Please look for it, and register @code{Top} as its translation." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1791 +#: guix-git/doc/contributing.texi:1824 msgid "Translating these strings first ensure we can include your translation in the guix repository without breaking the make process or the @command{guix pull} machinery." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1798 +#: guix-git/doc/contributing.texi:1831 msgid "The manual and the cookbook both use Texinfo. As for @code{packages}, please keep Texinfo markup as is. There are more possible markup types in the manual than in the package descriptions. In general, do not translate the content of @code{@@code}, @code{@@file}, @code{@@var}, @code{@@value}, etc. You should translate the content of formatting markup such as @code{@@emph}, @code{@@i}, etc." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1806 +#: guix-git/doc/contributing.texi:1839 msgid "The manual contains sections that can be referred to by name by @code{@@ref}, @code{@@xref} and @code{@@pxref}. We have a mechanism in place so you do not have to translate their content. If you keep the English title, we will automatically replace it with your translation of that title. This ensures that Texinfo will always be able to find the node. If you decide to change the translation of the title, the references will automatically be updated and you will not have to update them all yourself." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1816 +#: guix-git/doc/contributing.texi:1849 msgid "When translating references from the cookbook to the manual, you need to replace the name of the manual and the name of the section. For instance, to translate @code{@@pxref@{Defining Packages,,, guix, GNU Guix Reference Manual@}}, you would replace @code{Defining Packages} with the title of that section in the translated manual @emph{only} if that title is translated. If the title is not translated in your language yet, do not translate it here, or the link will be broken. Replace @code{guix} with @code{guix.xx} where @code{xx} is your language code. @code{GNU Guix Reference Manual} is the text of the link. You can translate it however you wish." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1817 +#: guix-git/doc/contributing.texi:1850 #, no-wrap msgid "website" msgstr "웹사이트" #. type: table -#: guix-git/doc/contributing.texi:1824 +#: guix-git/doc/contributing.texi:1857 msgid "The website pages are written using SXML, an s-expression version of HTML, the basic language of the web. We have a process to extract translatable strings from the source, and replace complex s-expressions with a more familiar XML markup, where each markup is numbered. Translators can arbitrarily change the ordering, as in the following example." msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1831 +#: guix-git/doc/contributing.texi:1864 #, no-wrap msgid "" "#. TRANSLATORS: Defining Packages is a section name\n" @@ -2626,138 +2672,138 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1834 +#: guix-git/doc/contributing.texi:1867 msgid "Note that you need to include the same markups. You cannot skip any." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1842 +#: guix-git/doc/contributing.texi:1875 msgid "In case you make a mistake, the component might fail to build properly with your language, or even make guix pull fail. To prevent that, we have a process in place to check the content of the files before pushing to our repository. We will not be able to update the translation for your language in Guix, so we will notify you (through weblate and/or by email) so you get a chance to fix the issue." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1843 +#: guix-git/doc/contributing.texi:1876 #, no-wrap msgid "Outside of Weblate" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1846 +#: guix-git/doc/contributing.texi:1879 msgid "Currently, some parts of Guix cannot be translated on Weblate, help wanted!" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1848 +#: guix-git/doc/contributing.texi:1881 #, no-wrap msgid "@command{guix pull} news can be translated in @file{news.scm}, but is not" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1854 +#: guix-git/doc/contributing.texi:1887 msgid "available from Weblate. If you want to provide a translation, you can prepare a patch as described above, or simply send us your translation with the name of the news entry you translated and your language. @xref{Writing Channel News}, for more information about channel news." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1854 +#: guix-git/doc/contributing.texi:1887 #, no-wrap msgid "Guix blog posts cannot currently be translated." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1855 +#: guix-git/doc/contributing.texi:1888 #, no-wrap msgid "The installer script (for foreign distributions) is entirely in English." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1856 +#: guix-git/doc/contributing.texi:1889 #, no-wrap msgid "Some of the libraries Guix uses cannot be translated or are translated" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1858 +#: guix-git/doc/contributing.texi:1891 msgid "outside of the Guix project. Guile itself is not internationalized." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1858 +#: guix-git/doc/contributing.texi:1891 #, no-wrap msgid "Other manuals linked from this manual or the cookbook might not be" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1860 +#: guix-git/doc/contributing.texi:1893 msgid "translated." msgstr "번역됨." #. type: subsubheading -#: guix-git/doc/contributing.texi:1862 +#: guix-git/doc/contributing.texi:1895 #, no-wrap msgid "Translation Infrastructure" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1873 +#: guix-git/doc/contributing.texi:1906 msgid "Weblate is backed by a git repository from which it discovers new strings to translate and pushes new and updated translations. Normally, it would be enough to give it commit access to our repositories. However, we decided to use a separate repository for two reasons. First, we would have to give Weblate commit access and authorize its signing key, but we do not trust it in the same way we trust guix developers, especially since we do not manage the instance ourselves. Second, if translators mess something up, it can break the generation of the website and/or guix pull for all our users, independently of their language." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1877 +#: guix-git/doc/contributing.texi:1910 msgid "For these reasons, we use a dedicated repository to host translations, and we synchronize it with our guix and artworks repositories after checking no issue was introduced in the translation." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1883 +#: guix-git/doc/contributing.texi:1916 msgid "Developers can download the latest PO files from weblate in the Guix repository by running the @command{make download-po} command. It will automatically download the latest files from weblate, reformat them to a canonical form, and check they do not contain issues. The manual needs to be built again to check for additional issues that might crash Texinfo." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1887 +#: guix-git/doc/contributing.texi:1920 msgid "Before pushing new translation files, developers should add them to the make machinery so the translations are actually available. The process differs for the various components." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1889 +#: guix-git/doc/contributing.texi:1922 #, no-wrap msgid "New po files for the @code{guix} and @code{packages} components must" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1892 +#: guix-git/doc/contributing.texi:1925 msgid "be registered by adding the new language to @file{po/guix/LINGUAS} or @file{po/packages/LINGUAS}." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1892 +#: guix-git/doc/contributing.texi:1925 #, no-wrap msgid "New po files for the @code{documentation-manual} component must be" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1898 +#: guix-git/doc/contributing.texi:1931 msgid "registered by adding the file name to @code{DOC_PO_FILES} in @file{po/doc/local.mk}, the generated @file{%D%/guix.xx.texi} manual to @code{info_TEXINFOS} in @file{doc/local.mk} and the generated @file{%D%/guix.xx.texi} and @file{%D%/contributing.xx.texi} to @code{TRANSLATED_INFO} also in @file{doc/local.mk}." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1898 +#: guix-git/doc/contributing.texi:1931 #, no-wrap msgid "New po files for the @code{documentation-cookbook} component must be" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1904 +#: guix-git/doc/contributing.texi:1937 msgid "registered by adding the file name to @code{DOC_COOKBOOK_PO_FILES} in @file{po/doc/local.mk}, the generated @file{%D%/guix-cookbook.xx.texi} manual to @code{info_TEXINFOS} in @file{doc/local.mk} and the generated @file{%D%/guix-cookbook.xx.texi} to @code{TRANSLATED_INFO} also in @file{doc/local.mk}." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1904 +#: guix-git/doc/contributing.texi:1937 #, no-wrap msgid "New po files for the @code{website} component must be added to the" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1909 +#: guix-git/doc/contributing.texi:1942 msgid "@code{guix-artwork} repository, in @file{website/po/}. @file{website/po/LINGUAS} and @file{website/po/ietf-tags.scm} must be updated accordingly (see @file{website/i18n-howto.txt} for more information on the process)." msgstr "" @@ -2781,7 +2827,7 @@ msgstr "version-ko.texi" #. type: copying #: guix-git/doc/guix.texi:103 #, fuzzy -msgid "Copyright @copyright{} 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" +msgid "Copyright @copyright{} 2012-2022 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021, 2022 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021, 2022 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021, 2022 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021, 2022 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" msgstr "Copyright @copyright{} 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christopher Lemmer Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Leo Prikler@* Copyright @copyright{} 2019, 2020 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copy" #. type: copying @@ -2946,7 +2992,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:192 -#: guix-git/doc/guix.texi:402 guix-git/doc/guix.texi:403 +#: guix-git/doc/guix.texi:403 guix-git/doc/guix.texi:404 #, no-wrap msgid "Introduction" msgstr "안내" @@ -2958,7 +3004,7 @@ msgstr "Guix는 무엇인가요?" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:197 -#: guix-git/doc/guix.texi:589 guix-git/doc/guix.texi:590 +#: guix-git/doc/guix.texi:600 guix-git/doc/guix.texi:601 #, no-wrap msgid "Installation" msgstr "설치" @@ -2970,7 +3016,7 @@ msgstr "Guix 설치하기." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:213 -#: guix-git/doc/guix.texi:2049 guix-git/doc/guix.texi:2050 +#: guix-git/doc/guix.texi:2066 guix-git/doc/guix.texi:2067 #, no-wrap msgid "System Installation" msgstr "시스템 설치" @@ -2981,8 +3027,8 @@ msgid "Installing the whole operating system." msgstr "전체 운영체제 설치하기." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:2777 -#: guix-git/doc/guix.texi:2778 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:2794 +#: guix-git/doc/guix.texi:2795 #, no-wrap msgid "Getting Started" msgstr "시작하기" @@ -2994,7 +3040,7 @@ msgstr "당신의 첫 번째 단계." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:230 -#: guix-git/doc/guix.texi:2985 guix-git/doc/guix.texi:2986 +#: guix-git/doc/guix.texi:3002 guix-git/doc/guix.texi:3003 #, no-wrap msgid "Package Management" msgstr "꾸러미 관리" @@ -3006,7 +3052,7 @@ msgstr "꾸러미 설치, 향상, 기타." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:253 -#: guix-git/doc/guix.texi:5053 guix-git/doc/guix.texi:5054 +#: guix-git/doc/guix.texi:5071 guix-git/doc/guix.texi:5072 #, no-wrap msgid "Channels" msgstr "채널" @@ -3018,7 +3064,7 @@ msgstr "꾸러미 사용자 정의 모음." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:267 -#: guix-git/doc/guix.texi:5581 guix-git/doc/guix.texi:5582 +#: guix-git/doc/guix.texi:5599 guix-git/doc/guix.texi:5600 #, no-wrap msgid "Development" msgstr "개발" @@ -3030,7 +3076,7 @@ msgstr "Guix-지원 소프트웨어 개발." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:275 -#: guix-git/doc/guix.texi:6799 guix-git/doc/guix.texi:6800 +#: guix-git/doc/guix.texi:6842 guix-git/doc/guix.texi:6843 #, no-wrap msgid "Programming Interface" msgstr "프로그래밍 연결장치" @@ -3041,8 +3087,8 @@ msgid "Using Guix in Scheme." msgstr "계획적으로 Guix 사용하기." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:294 -#: guix-git/doc/guix.texi:10774 guix-git/doc/guix.texi:10775 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:295 +#: guix-git/doc/guix.texi:11088 guix-git/doc/guix.texi:11089 #, no-wrap msgid "Utilities" msgstr "유틸리티" @@ -3053,8 +3099,8 @@ msgid "Package management commands." msgstr "꾸러미 관리 명령." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:320 -#: guix-git/doc/guix.texi:14278 guix-git/doc/guix.texi:14279 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:321 +#: guix-git/doc/guix.texi:14635 guix-git/doc/guix.texi:14636 #, no-wrap msgid "System Configuration" msgstr "시스템 설정" @@ -3065,8 +3111,8 @@ msgid "Configuring the operating system." msgstr "운영 체제 설정하기." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:36881 -#: guix-git/doc/guix.texi:36882 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37371 +#: guix-git/doc/guix.texi:37372 #, fuzzy, no-wrap #| msgid "System Configuration" msgid "Home Configuration" @@ -3080,8 +3126,8 @@ msgid "Configuring the home environment." msgstr "운영 체제 설정하기." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37721 -#: guix-git/doc/guix.texi:37722 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38210 +#: guix-git/doc/guix.texi:38211 #, no-wrap msgid "Documentation" msgstr "문서" @@ -3092,8 +3138,8 @@ msgid "Browsing software user manuals." msgstr "소프트웨어 사용자 설명서 검색하기." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:389 -#: guix-git/doc/guix.texi:37787 guix-git/doc/guix.texi:37788 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:390 +#: guix-git/doc/guix.texi:38276 guix-git/doc/guix.texi:38277 #, no-wrap msgid "Installing Debugging Files" msgstr "디버깅 파일 설치하기" @@ -3104,8 +3150,8 @@ msgid "Feeding the debugger." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37942 -#: guix-git/doc/guix.texi:37943 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38431 +#: guix-git/doc/guix.texi:38432 #, no-wrap msgid "Security Updates" msgstr "보안 최신화" @@ -3116,8 +3162,8 @@ msgid "Deploying security fixes quickly." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:394 -#: guix-git/doc/guix.texi:38057 guix-git/doc/guix.texi:38058 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:395 +#: guix-git/doc/guix.texi:38546 guix-git/doc/guix.texi:38547 #, no-wrap msgid "Bootstrapping" msgstr "" @@ -3128,7 +3174,7 @@ msgid "GNU/Linux built from scratch." msgstr "" #. type: node -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38349 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38838 #, no-wrap msgid "Porting" msgstr "" @@ -3144,8 +3190,8 @@ msgid "Your help needed!" msgstr "당신의 도움이 필요합니다!" #. type: chapter -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38397 -#: guix-git/doc/guix.texi:38398 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38886 +#: guix-git/doc/guix.texi:38887 #, no-wrap msgid "Acknowledgments" msgstr "감사의 말" @@ -3156,8 +3202,8 @@ msgid "Thanks!" msgstr "감사합니다!" #. type: appendix -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38419 -#: guix-git/doc/guix.texi:38420 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38908 +#: guix-git/doc/guix.texi:38909 #, no-wrap msgid "GNU Free Documentation License" msgstr "GNU 자유 문서 저작권" @@ -3168,8 +3214,8 @@ msgid "The license of this manual." msgstr "이 설명서의 저작권." #. type: unnumbered -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38425 -#: guix-git/doc/guix.texi:38426 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38914 +#: guix-git/doc/guix.texi:38915 #, no-wrap msgid "Concept Index" msgstr "개념 색인" @@ -3180,8 +3226,8 @@ msgid "Concepts." msgstr "개념." #. type: unnumbered -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38429 -#: guix-git/doc/guix.texi:38430 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38918 +#: guix-git/doc/guix.texi:38919 #, no-wrap msgid "Programming Index" msgstr "프로그래밍 색인" @@ -3197,2144 +3243,2167 @@ msgid "--- The Detailed Node Listing ---" msgstr "--- 상세한 노드 목록 ---" #. type: section -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 -#: guix-git/doc/guix.texi:431 guix-git/doc/guix.texi:432 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 +#: guix-git/doc/guix.texi:432 guix-git/doc/guix.texi:433 #, no-wrap msgid "Managing Software the Guix Way" msgstr "Guix 방식으로 소프트웨어 관리하기" #. type: menuentry -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 msgid "What's special." msgstr "특별한 것." #. type: section -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 -#: guix-git/doc/guix.texi:486 guix-git/doc/guix.texi:487 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 +#: guix-git/doc/guix.texi:487 guix-git/doc/guix.texi:488 #, no-wrap msgid "GNU Distribution" msgstr "GNU 배포" #. type: menuentry -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 msgid "The packages and tools." msgstr "꾸러미와 도구." #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:631 guix-git/doc/guix.texi:632 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:642 guix-git/doc/guix.texi:643 #, no-wrap msgid "Binary Installation" msgstr "바이너리 설치" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Getting Guix running in no time!" msgstr "Guix 바로 실행하기!" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:871 guix-git/doc/guix.texi:872 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:882 guix-git/doc/guix.texi:883 #, no-wrap msgid "Requirements" msgstr "요구사항" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Software needed to build and run Guix." msgstr "Guix를 구성하고 실행하는데 필요한 소프트웨어." #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:957 guix-git/doc/guix.texi:958 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:969 guix-git/doc/guix.texi:970 #, no-wrap msgid "Running the Test Suite" msgstr "시험용 제품군 실행하기" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Testing Guix." msgstr "Guix 시험하기." #. type: section #: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:207 -#: guix-git/doc/guix.texi:629 guix-git/doc/guix.texi:1054 -#: guix-git/doc/guix.texi:1055 +#: guix-git/doc/guix.texi:640 guix-git/doc/guix.texi:1066 +#: guix-git/doc/guix.texi:1067 #, no-wrap msgid "Setting Up the Daemon" msgstr "데몬 구성하기" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Preparing the build daemon's environment." msgstr "구성 데몬의 환경 준비하기." #. type: node -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:1525 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:1542 #, no-wrap msgid "Invoking guix-daemon" msgstr "guix-데몬 호출하기" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Running the build daemon." msgstr "구성 데몬 실행하기." #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:1827 guix-git/doc/guix.texi:1828 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:1844 guix-git/doc/guix.texi:1845 #, no-wrap msgid "Application Setup" msgstr "응용프로그램 설정" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Application-specific setup." msgstr "응용프로그램-지정 설정." #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:2012 guix-git/doc/guix.texi:2013 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:2029 guix-git/doc/guix.texi:2030 #, no-wrap msgid "Upgrading Guix" msgstr "Guix 향상하기" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Upgrading Guix and its build daemon." msgstr "Guix 향상과 데몬 구성하기." #. type: subsection -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1076 guix-git/doc/guix.texi:1077 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1088 guix-git/doc/guix.texi:1089 #, no-wrap msgid "Build Environment Setup" msgstr "구성(build) 환경 설정" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Preparing the isolated build environment." msgstr "" #. type: node -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1195 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1212 #, no-wrap msgid "Daemon Offload Setup" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Offloading builds to remote machines." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1434 guix-git/doc/guix.texi:1435 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1451 guix-git/doc/guix.texi:1452 #, no-wrap msgid "SELinux Support" msgstr "SELinux 지원" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Using an SELinux policy for the daemon." msgstr "데몬을 위해 SELinux 정책 사용하기." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:1470 -#: guix-git/doc/guix.texi:2083 guix-git/doc/guix.texi:2085 -#: guix-git/doc/guix.texi:2086 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:1487 +#: guix-git/doc/guix.texi:2100 guix-git/doc/guix.texi:2102 +#: guix-git/doc/guix.texi:2103 #, no-wrap msgid "Limitations" msgstr "제한" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "What you can expect." msgstr "당신이 기대하는 것." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2111 guix-git/doc/guix.texi:2112 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2128 guix-git/doc/guix.texi:2129 #, no-wrap msgid "Hardware Considerations" msgstr "하드웨어 고려하기" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Supported hardware." msgstr "지원 하드웨어." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2146 guix-git/doc/guix.texi:2147 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2163 guix-git/doc/guix.texi:2164 #, no-wrap msgid "USB Stick and DVD Installation" msgstr "USB 저장장치와 DVD 설치" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Preparing the installation medium." msgstr "설치 매체 준비하기." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2227 guix-git/doc/guix.texi:2228 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2244 guix-git/doc/guix.texi:2245 #, no-wrap msgid "Preparing for Installation" msgstr "설치를 위한 준비" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Networking, partitioning, etc." msgstr "네트워킹(Networking), 구획화(partitioning), 기타." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2250 guix-git/doc/guix.texi:2251 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2267 guix-git/doc/guix.texi:2268 #, no-wrap msgid "Guided Graphical Installation" msgstr "안내된 그리팩 설치" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Easy graphical installation." msgstr "손쉬운 그래픽 설치." #. type: section #: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:225 -#: guix-git/doc/guix.texi:2083 guix-git/doc/guix.texi:2281 -#: guix-git/doc/guix.texi:2282 +#: guix-git/doc/guix.texi:2100 guix-git/doc/guix.texi:2298 +#: guix-git/doc/guix.texi:2299 #, no-wrap msgid "Manual Installation" msgstr "수동 설치" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Manual installation for wizards." msgstr "마법사를 위한 수동 설치." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2660 guix-git/doc/guix.texi:2661 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2677 guix-git/doc/guix.texi:2678 #, no-wrap msgid "After System Installation" msgstr "시스템 설치 이후에" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "When installation succeeded." msgstr "설치가 성공했을 때에." #. type: node -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2694 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2711 #, no-wrap msgid "Installing Guix in a VM" msgstr "VM에서 Guix 설치하기" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Guix System playground." msgstr "Guix 시스템 놀이터." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2745 guix-git/doc/guix.texi:2746 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2762 guix-git/doc/guix.texi:2763 #, no-wrap msgid "Building the Installation Image" msgstr "설치 이미지 구성하기" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "How this comes to be." msgstr "이 것이 어떻게 되는가." #. type: node -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 -#: guix-git/doc/guix.texi:2301 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 +#: guix-git/doc/guix.texi:2318 #, no-wrap msgid "Keyboard Layout and Networking and Partitioning" msgstr "키보드 배열과 네트워킹과 구획화" #. type: menuentry -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 msgid "Initial setup." msgstr "초기 설정." #. type: subsection -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 -#: guix-git/doc/guix.texi:2571 guix-git/doc/guix.texi:2572 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 +#: guix-git/doc/guix.texi:2588 guix-git/doc/guix.texi:2589 #, no-wrap msgid "Proceeding with the Installation" msgstr "설치 진행" #. type: menuentry -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 msgid "Installing." msgstr "설치 중." #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:3019 guix-git/doc/guix.texi:3020 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3036 guix-git/doc/guix.texi:3037 #, no-wrap msgid "Features" msgstr "기능" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "How Guix will make your life brighter." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:3109 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3126 #, no-wrap msgid "Invoking guix package" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Package installation, removal, etc." msgstr "" #. type: section #: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:243 -#: guix-git/doc/guix.texi:3017 guix-git/doc/guix.texi:3738 -#: guix-git/doc/guix.texi:3739 +#: guix-git/doc/guix.texi:3034 guix-git/doc/guix.texi:3756 +#: guix-git/doc/guix.texi:3757 #, no-wrap msgid "Substitutes" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Downloading pre-built binaries." msgstr "" #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4074 guix-git/doc/guix.texi:4075 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4092 guix-git/doc/guix.texi:4093 #, no-wrap msgid "Packages with Multiple Outputs" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Single source package, multiple outputs." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4128 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4146 #, no-wrap msgid "Invoking guix gc" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Running the garbage collector." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4338 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4356 #, no-wrap msgid "Invoking guix pull" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Fetching the latest Guix and distribution." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4585 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4603 #, no-wrap msgid "Invoking guix time-machine" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Running an older revision of Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4640 guix-git/doc/guix.texi:4641 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4658 guix-git/doc/guix.texi:4659 #, no-wrap msgid "Inferiors" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Interacting with another revision of Guix." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4768 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4786 #, no-wrap msgid "Invoking guix describe" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Display information about your Guix revision." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4863 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4881 #, no-wrap msgid "Invoking guix archive" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Exporting and importing store files." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3764 guix-git/doc/guix.texi:3765 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3782 guix-git/doc/guix.texi:3783 #, no-wrap msgid "Official Substitute Servers" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "One particular source of substitutes." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3794 guix-git/doc/guix.texi:3795 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3812 guix-git/doc/guix.texi:3813 #, no-wrap msgid "Substitute Server Authorization" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How to enable or disable substitutes." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3864 guix-git/doc/guix.texi:3865 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3882 guix-git/doc/guix.texi:3883 #, no-wrap msgid "Getting Substitutes from Other Servers" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "Substitute diversity." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3969 guix-git/doc/guix.texi:3970 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3987 guix-git/doc/guix.texi:3988 #, no-wrap msgid "Substitute Authentication" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How Guix verifies substitutes." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4004 guix-git/doc/guix.texi:4005 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4022 guix-git/doc/guix.texi:4023 #, no-wrap msgid "Proxy Settings" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How to get substitutes via proxy." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4016 guix-git/doc/guix.texi:4017 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4034 guix-git/doc/guix.texi:4035 #, no-wrap msgid "Substitution Failure" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "What happens when substitution fails." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4044 guix-git/doc/guix.texi:4045 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4062 guix-git/doc/guix.texi:4063 #, no-wrap msgid "On Trusting Binaries" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How can you trust that binary blob?" msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5086 guix-git/doc/guix.texi:5087 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5104 guix-git/doc/guix.texi:5105 #, no-wrap msgid "Specifying Additional Channels" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Extending the package collection." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5136 guix-git/doc/guix.texi:5137 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5154 guix-git/doc/guix.texi:5155 #, no-wrap msgid "Using a Custom Guix Channel" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Using a customized Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5158 guix-git/doc/guix.texi:5159 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5176 guix-git/doc/guix.texi:5177 #, no-wrap msgid "Replicating Guix" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Running the @emph{exact same} Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5199 guix-git/doc/guix.texi:5200 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5217 guix-git/doc/guix.texi:5218 #, no-wrap msgid "Channel Authentication" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How Guix verifies what it fetches." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5239 guix-git/doc/guix.texi:5240 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5257 guix-git/doc/guix.texi:5258 #, no-wrap msgid "Channels with Substitutes" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Using channels with available substitutes." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5264 guix-git/doc/guix.texi:5265 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5282 guix-git/doc/guix.texi:5283 #, no-wrap msgid "Creating a Channel" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How to write your custom channel." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5331 guix-git/doc/guix.texi:5332 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5349 guix-git/doc/guix.texi:5350 #, no-wrap msgid "Package Modules in a Sub-directory" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Specifying the channel's package modules location." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5345 guix-git/doc/guix.texi:5346 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5363 guix-git/doc/guix.texi:5364 #, no-wrap msgid "Declaring Channel Dependencies" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How to depend on other channels." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5387 guix-git/doc/guix.texi:5388 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5405 guix-git/doc/guix.texi:5406 #, no-wrap msgid "Specifying Channel Authorizations" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Defining channel authors authorizations." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5488 guix-git/doc/guix.texi:5489 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5506 guix-git/doc/guix.texi:5507 #, no-wrap msgid "Primary URL" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Distinguishing mirror to original." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5511 guix-git/doc/guix.texi:5512 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5529 guix-git/doc/guix.texi:5530 #, no-wrap msgid "Writing Channel News" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Communicating information to channel's users." msgstr "" #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:5603 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:5621 #, fuzzy, no-wrap #| msgid "Invoking guix-daemon" msgid "Invoking guix shell" msgstr "guix-데몬 호출하기" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 #, fuzzy #| msgid "Building development environments with Guix." msgid "Spawning one-off software environments." msgstr "guix로 개발 환경 구성하기." #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:5956 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:5993 #, no-wrap msgid "Invoking guix environment" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Setting up development environments." msgstr "" #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6325 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6368 #, no-wrap msgid "Invoking guix pack" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Creating software bundles." msgstr "" #. type: section -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6711 guix-git/doc/guix.texi:6712 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6754 guix-git/doc/guix.texi:6755 #, no-wrap msgid "The GCC toolchain" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Working with languages supported by GCC." msgstr "" #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6737 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6780 #, no-wrap msgid "Invoking guix git authenticate" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Authenticating Git repositories." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:6841 guix-git/doc/guix.texi:6842 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:6885 guix-git/doc/guix.texi:6886 #, no-wrap msgid "Package Modules" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Packages from the programmer's viewpoint." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:289 -#: guix-git/doc/guix.texi:6839 guix-git/doc/guix.texi:6903 -#: guix-git/doc/guix.texi:6904 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:290 +#: guix-git/doc/guix.texi:6883 guix-git/doc/guix.texi:6947 +#: guix-git/doc/guix.texi:6948 #, no-wrap msgid "Defining Packages" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Defining new packages." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:7554 guix-git/doc/guix.texi:7555 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:7612 guix-git/doc/guix.texi:7613 #, no-wrap msgid "Defining Package Variants" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Customizing packages." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:7821 guix-git/doc/guix.texi:7822 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:7879 guix-git/doc/guix.texi:7880 #, no-wrap msgid "Build Systems" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Specifying how packages are built." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:8861 guix-git/doc/guix.texi:8862 -#: guix-git/doc/guix.texi:9292 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:8918 guix-git/doc/guix.texi:8919 +#: guix-git/doc/guix.texi:9427 #, no-wrap msgid "Build Phases" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Phases of the build process of a package." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9055 guix-git/doc/guix.texi:9056 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9116 guix-git/doc/guix.texi:9117 #, no-wrap msgid "Build Utilities" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Helpers for your package definitions and more." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9369 guix-git/doc/guix.texi:9370 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9504 guix-git/doc/guix.texi:9505 +#, no-wrap +msgid "Search Paths" +msgstr "" + +#. type: menuentry +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +msgid "Declaring search path environment variables." +msgstr "검색 경로 환경 변수를 선언하기." + +#. type: section +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9683 guix-git/doc/guix.texi:9684 #, no-wrap msgid "The Store" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Manipulating the package store." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9522 guix-git/doc/guix.texi:9523 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9836 guix-git/doc/guix.texi:9837 #, no-wrap msgid "Derivations" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Low-level interface to package derivations." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9716 guix-git/doc/guix.texi:9717 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10030 guix-git/doc/guix.texi:10031 #, no-wrap msgid "The Store Monad" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Purely functional interface to the store." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:10035 guix-git/doc/guix.texi:10036 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10349 guix-git/doc/guix.texi:10350 #, no-wrap msgid "G-Expressions" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Manipulating build expressions." msgstr "" #. type: node -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:10674 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10988 #, no-wrap msgid "Invoking guix repl" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 +#: guix-git/doc/guix.texi:288 msgid "Programming Guix in Guile." msgstr "" #. type: node -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 -#: guix-git/doc/guix.texi:7103 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 +#: guix-git/doc/guix.texi:7147 #, no-wrap msgid "package Reference" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 msgid "The package data type." msgstr "" #. type: node -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 -#: guix-git/doc/guix.texi:7362 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 +#: guix-git/doc/guix.texi:7420 #, no-wrap msgid "origin Reference" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 msgid "The origin data type." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:10801 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:11115 #, no-wrap msgid "Invoking guix build" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Building packages from the command line." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11699 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12013 #, no-wrap msgid "Invoking guix edit" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Editing package definitions." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11729 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12043 #, no-wrap msgid "Invoking guix download" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Downloading a file and printing its hash." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11787 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12101 #, no-wrap msgid "Invoking guix hash" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Computing the cryptographic hash of a file." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11877 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12192 #, no-wrap msgid "Invoking guix import" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Importing package definitions." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12412 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12727 #, no-wrap msgid "Invoking guix refresh" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Updating package definitions." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12784 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13099 #, fuzzy, no-wrap #| msgid "Invoking guix-daemon" msgid "Invoking guix style" msgstr "guix-데몬 호출하기" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 #, fuzzy #| msgid "Updating the Guix package definition." msgid "Styling package definitions." msgstr "Guix 꾸러미 확인 최신화하기." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12880 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13237 #, no-wrap msgid "Invoking guix lint" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Finding errors in package definitions." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13056 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13413 #, no-wrap msgid "Invoking guix size" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Profiling disk usage." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13200 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13557 #, no-wrap msgid "Invoking guix graph" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Visualizing the graph of packages." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13481 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13838 #, no-wrap msgid "Invoking guix publish" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Sharing substitutes." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13750 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14107 #, no-wrap msgid "Invoking guix challenge" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Challenging substitute servers." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13933 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14290 #, no-wrap msgid "Invoking guix copy" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Copying to and from a remote store." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13996 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14353 #, no-wrap msgid "Invoking guix container" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Process isolation." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:14050 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14407 #, no-wrap msgid "Invoking guix weather" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Assessing substitute availability." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:14180 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14537 #, no-wrap msgid "Invoking guix processes" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Listing client processes." msgstr "" #. type: section -#: guix-git/doc/guix.texi:313 guix-git/doc/guix.texi:10802 +#: guix-git/doc/guix.texi:314 guix-git/doc/guix.texi:11116 #, no-wrap msgid "Invoking @command{guix build}" msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:10855 guix-git/doc/guix.texi:10856 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11169 guix-git/doc/guix.texi:11170 #, no-wrap msgid "Common Build Options" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Build options for most commands." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11010 guix-git/doc/guix.texi:11011 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11324 guix-git/doc/guix.texi:11325 #, no-wrap msgid "Package Transformation Options" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Creating variants of packages." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11381 guix-git/doc/guix.texi:11382 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11695 guix-git/doc/guix.texi:11696 #, no-wrap msgid "Additional Build Options" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Options specific to 'guix build'." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11619 guix-git/doc/guix.texi:11620 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11933 guix-git/doc/guix.texi:11934 #, no-wrap msgid "Debugging Build Failures" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Real life packaging experience." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14324 guix-git/doc/guix.texi:14325 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:14681 guix-git/doc/guix.texi:14682 #, no-wrap msgid "Using the Configuration System" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Customizing your GNU system." msgstr "" #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14575 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:14932 #, no-wrap msgid "operating-system Reference" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Detail of operating-system declarations." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14798 guix-git/doc/guix.texi:14799 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15155 guix-git/doc/guix.texi:15156 #, no-wrap msgid "File Systems" msgstr "파일 시스템" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring file system mounts." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15151 guix-git/doc/guix.texi:15152 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15508 guix-git/doc/guix.texi:15509 #, no-wrap msgid "Mapped Devices" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Block device extra processing." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15300 guix-git/doc/guix.texi:15301 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15657 guix-git/doc/guix.texi:15658 #, no-wrap msgid "Swap Space" msgstr "스왑 공간" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Backing RAM with disk space." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15400 guix-git/doc/guix.texi:15401 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15757 guix-git/doc/guix.texi:15758 #, no-wrap msgid "User Accounts" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Specifying user accounts." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:2308 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15581 -#: guix-git/doc/guix.texi:15582 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:2325 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:15938 +#: guix-git/doc/guix.texi:15939 #, no-wrap msgid "Keyboard Layout" msgstr "키보드 배열" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "How the system interprets key strokes." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1835 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15727 -#: guix-git/doc/guix.texi:15728 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:1852 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:16084 +#: guix-git/doc/guix.texi:16085 #, no-wrap msgid "Locales" msgstr "지역설정" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Language and cultural convention settings." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:345 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15867 -#: guix-git/doc/guix.texi:15868 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:346 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:16224 +#: guix-git/doc/guix.texi:16225 #, no-wrap msgid "Services" msgstr "서비스" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Specifying system services." msgstr "시스템 서비스 지정하기." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34056 guix-git/doc/guix.texi:34057 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34493 guix-git/doc/guix.texi:34494 #, no-wrap msgid "Setuid Programs" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Programs running with root privileges." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1984 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:34140 -#: guix-git/doc/guix.texi:34141 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:2001 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:34579 +#: guix-git/doc/guix.texi:34580 #, no-wrap msgid "X.509 Certificates" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Authenticating HTTPS servers." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1878 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:34203 -#: guix-git/doc/guix.texi:34204 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:1895 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:34642 +#: guix-git/doc/guix.texi:34643 #, no-wrap msgid "Name Service Switch" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring libc's name service switch." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34341 guix-git/doc/guix.texi:34342 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34780 guix-git/doc/guix.texi:34781 #, no-wrap msgid "Initial RAM Disk" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Linux-Libre bootstrapping." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34536 guix-git/doc/guix.texi:34537 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34975 guix-git/doc/guix.texi:34976 #, no-wrap msgid "Bootloader Configuration" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring the boot loader." msgstr "" #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34834 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:35273 #, no-wrap msgid "Invoking guix system" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Instantiating a system configuration." msgstr "" #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:35425 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:35881 #, no-wrap msgid "Invoking guix deploy" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Deploying a system configuration to a remote host." msgstr "" #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:35631 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:36121 #, no-wrap msgid "Running Guix in a VM" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "How to run Guix System in a virtual machine." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:381 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:35765 -#: guix-git/doc/guix.texi:35766 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:382 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:36255 +#: guix-git/doc/guix.texi:36256 #, no-wrap msgid "Defining Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Adding new service definitions." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:341 +#: guix-git/doc/guix.texi:342 #, fuzzy #| msgid "System Configuration" msgid "Home Environment Configuration" msgstr "시스템 설정" #. type: node -#: guix-git/doc/guix.texi:343 guix-git/doc/guix.texi:36944 -#: guix-git/doc/guix.texi:37478 +#: guix-git/doc/guix.texi:344 guix-git/doc/guix.texi:37434 +#: guix-git/doc/guix.texi:37974 #, fuzzy, no-wrap #| msgid "Invoking guix-daemon" msgid "Invoking guix home" msgstr "guix-데몬 호출하기" #. type: menuentry -#: guix-git/doc/guix.texi:343 +#: guix-git/doc/guix.texi:344 #, fuzzy #| msgid "Manage the operating system configuration." msgid "Instantiating a home environment configuration." msgstr "운영체제 설정 관리." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:15953 guix-git/doc/guix.texi:15954 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:16310 guix-git/doc/guix.texi:16311 #, no-wrap msgid "Base Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Essential system services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:16880 guix-git/doc/guix.texi:16881 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17242 guix-git/doc/guix.texi:17243 #, no-wrap msgid "Scheduled Job Execution" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The mcron service." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17030 guix-git/doc/guix.texi:17031 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17392 guix-git/doc/guix.texi:17393 #, no-wrap msgid "Log Rotation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The rottlog service." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17143 guix-git/doc/guix.texi:17144 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17505 guix-git/doc/guix.texi:17506 #, fuzzy, no-wrap #| msgid "Networking" msgid "Networking Setup" msgstr "네트워킹" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Setting up network interfaces." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17561 guix-git/doc/guix.texi:17562 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17923 guix-git/doc/guix.texi:17924 #, no-wrap msgid "Networking Services" msgstr "네트워크 서비스" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Firewall, SSH daemon, etc." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19020 guix-git/doc/guix.texi:19021 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19382 guix-git/doc/guix.texi:19383 #, no-wrap msgid "Unattended Upgrades" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Automated system upgrades." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19158 guix-git/doc/guix.texi:19159 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19520 guix-git/doc/guix.texi:19521 #, no-wrap msgid "X Window" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Graphical display." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19556 guix-git/doc/guix.texi:19557 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19918 guix-git/doc/guix.texi:19919 #, no-wrap msgid "Printing Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Local and remote printer support." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:20409 guix-git/doc/guix.texi:20410 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:20771 guix-git/doc/guix.texi:20772 #, no-wrap msgid "Desktop Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "D-Bus and desktop services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:20928 guix-git/doc/guix.texi:20929 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21290 guix-git/doc/guix.texi:21291 #, no-wrap msgid "Sound Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "ALSA and Pulseaudio services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:21068 guix-git/doc/guix.texi:21069 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21430 guix-git/doc/guix.texi:21431 #, no-wrap msgid "Database Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "SQL databases, key-value stores, etc." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:21403 guix-git/doc/guix.texi:21404 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21765 guix-git/doc/guix.texi:21766 #, no-wrap msgid "Mail Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "IMAP, POP3, SMTP, and all that." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:23262 guix-git/doc/guix.texi:23263 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:23624 guix-git/doc/guix.texi:23625 #, no-wrap msgid "Messaging Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Messaging services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:23765 guix-git/doc/guix.texi:23766 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:24127 guix-git/doc/guix.texi:24128 #, no-wrap msgid "Telephony Services" -msgstr "전화(voip와 같은 전화) 서비스" +msgstr "전화 서비스" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Telephony services." msgstr "전화(전화또는 voip와 같은), 서비스." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:24996 guix-git/doc/guix.texi:24997 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25358 guix-git/doc/guix.texi:25359 #, no-wrap msgid "Monitoring Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Monitoring services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:25507 guix-git/doc/guix.texi:25508 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25844 guix-git/doc/guix.texi:25845 #, no-wrap msgid "Kerberos Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Kerberos services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:25633 guix-git/doc/guix.texi:25634 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25970 guix-git/doc/guix.texi:25971 #, no-wrap msgid "LDAP Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "LDAP services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:26112 guix-git/doc/guix.texi:26113 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:26449 guix-git/doc/guix.texi:26450 #, no-wrap msgid "Web Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Web servers." msgstr "웹 서버." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:27320 guix-git/doc/guix.texi:27321 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:27657 guix-git/doc/guix.texi:27658 #, no-wrap msgid "Certificate Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "TLS certificates via Let's Encrypt." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:27501 guix-git/doc/guix.texi:27502 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:27838 guix-git/doc/guix.texi:27839 #, no-wrap msgid "DNS Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "DNS daemons." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28246 guix-git/doc/guix.texi:28247 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:28583 guix-git/doc/guix.texi:28584 #, no-wrap msgid "VPN Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "VPN daemons." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28758 guix-git/doc/guix.texi:28759 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29095 guix-git/doc/guix.texi:29096 #, no-wrap msgid "Network File System" msgstr "네트워크 파일 시스템" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "NFS related services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28954 guix-git/doc/guix.texi:28955 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29291 guix-git/doc/guix.texi:29292 #, no-wrap msgid "Continuous Integration" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Cuirass and Laminar services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29240 guix-git/doc/guix.texi:29241 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29577 guix-git/doc/guix.texi:29578 #, no-wrap msgid "Power Management Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Extending battery life." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29774 guix-git/doc/guix.texi:29775 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:30139 guix-git/doc/guix.texi:30140 #, no-wrap msgid "Audio Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The MPD." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29893 guix-git/doc/guix.texi:29894 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:30258 guix-git/doc/guix.texi:30259 #, no-wrap msgid "Virtualization Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Virtualization services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:31561 guix-git/doc/guix.texi:31562 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:31926 guix-git/doc/guix.texi:31927 #, no-wrap msgid "Version Control Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Providing remote access to Git repositories." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:32897 guix-git/doc/guix.texi:32898 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33262 guix-git/doc/guix.texi:33263 #, no-wrap msgid "Game Services" msgstr "게임 서비스" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Game servers." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:32929 guix-git/doc/guix.texi:32930 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33294 guix-git/doc/guix.texi:33295 #, no-wrap msgid "PAM Mount Service" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Service to mount volumes when logging in." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33012 guix-git/doc/guix.texi:33013 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33377 guix-git/doc/guix.texi:33378 #, no-wrap msgid "Guix Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services relating specifically to Guix." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33290 guix-git/doc/guix.texi:33291 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33727 guix-git/doc/guix.texi:33728 #, no-wrap msgid "Linux Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services tied to the Linux kernel." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33517 guix-git/doc/guix.texi:33518 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33954 guix-git/doc/guix.texi:33955 #, no-wrap msgid "Hurd Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services specific for a Hurd System." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33559 guix-git/doc/guix.texi:33560 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33996 guix-git/doc/guix.texi:33997 #, no-wrap msgid "Miscellaneous Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Other services." msgstr "다른 장치." #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35780 guix-git/doc/guix.texi:35781 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36270 guix-git/doc/guix.texi:36271 #, no-wrap msgid "Service Composition" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "The model for composing services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35836 guix-git/doc/guix.texi:35837 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36326 guix-git/doc/guix.texi:36327 #, no-wrap msgid "Service Types and Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "Types and services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35973 guix-git/doc/guix.texi:35974 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36463 guix-git/doc/guix.texi:36464 #, no-wrap msgid "Service Reference" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "API reference." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:36292 guix-git/doc/guix.texi:36293 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36782 guix-git/doc/guix.texi:36783 #, no-wrap msgid "Shepherd Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "A particular type of service." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:36511 guix-git/doc/guix.texi:36512 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:37001 guix-git/doc/guix.texi:37002 #, fuzzy, no-wrap #| msgid "System Configuration" msgid "Complex Configurations" msgstr "시스템 설정" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 #, fuzzy #| msgid "Manage the operating system configuration." msgid "Defining bindings for complex configurations." msgstr "운영체제 설정 관리." #. type: section -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 -#: guix-git/doc/guix.texi:37806 guix-git/doc/guix.texi:37807 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 +#: guix-git/doc/guix.texi:38295 guix-git/doc/guix.texi:38296 #, no-wrap msgid "Separate Debug Info" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 msgid "Installing 'debug' outputs." msgstr "" #. type: section -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 -#: guix-git/doc/guix.texi:37879 guix-git/doc/guix.texi:37880 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 +#: guix-git/doc/guix.texi:38368 guix-git/doc/guix.texi:38369 #, no-wrap msgid "Rebuilding Debug Info" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 msgid "Building missing debug info." msgstr "" #. type: node -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 -#: guix-git/doc/guix.texi:38098 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 +#: guix-git/doc/guix.texi:38587 #, no-wrap msgid "Reduced Binary Seed Bootstrap" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 msgid "A Bootstrap worthy of GNU." msgstr "" #. type: section -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 -#: guix-git/doc/guix.texi:38173 guix-git/doc/guix.texi:38174 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 +#: guix-git/doc/guix.texi:38662 guix-git/doc/guix.texi:38663 #, no-wrap msgid "Preparing to Use the Bootstrap Binaries" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 msgid "Building that what matters most." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:405 +#: guix-git/doc/guix.texi:406 #, no-wrap msgid "purpose" msgstr "목적" #. type: Plain text -#: guix-git/doc/guix.texi:413 +#: guix-git/doc/guix.texi:414 msgid "GNU Guix@footnote{``Guix'' is pronounced like ``geeks'', or ``ɡiːks'' using the international phonetic alphabet (IPA).} is a package management tool for and distribution of the GNU system. Guix makes it easy for unprivileged users to install, upgrade, or remove software packages, to roll back to a previous package set, to build packages from source, and generally assists with the creation and maintenance of software environments." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:414 guix-git/doc/guix.texi:489 +#: guix-git/doc/guix.texi:415 guix-git/doc/guix.texi:490 #, no-wrap msgid "Guix System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:415 +#: guix-git/doc/guix.texi:416 #, no-wrap msgid "GuixSD, now Guix System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:416 +#: guix-git/doc/guix.texi:417 #, no-wrap msgid "Guix System Distribution, now Guix System" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:425 +#: guix-git/doc/guix.texi:426 msgid "You can install GNU@tie{}Guix on top of an existing GNU/Linux system where it complements the available tools without interference (@pxref{Installation}), or you can use it as a standalone operating system distribution, @dfn{Guix@tie{}System}@footnote{We used to refer to Guix System as ``Guix System Distribution'' or ``GuixSD''. We now consider it makes more sense to group everything under the ``Guix'' banner since, after all, Guix System is readily available through the @command{guix system} command, even if you're using a different distro underneath!}. @xref{GNU Distribution}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:434 +#: guix-git/doc/guix.texi:435 #, no-wrap msgid "user interfaces" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:440 +#: guix-git/doc/guix.texi:441 msgid "Guix provides a command-line package management interface (@pxref{Package Management}), tools to help with software development (@pxref{Development}), command-line utilities for more advanced usage (@pxref{Utilities}), as well as Scheme programming interfaces (@pxref{Programming Interface})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:440 +#: guix-git/doc/guix.texi:441 #, no-wrap msgid "build daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:444 +#: guix-git/doc/guix.texi:445 msgid "Its @dfn{build daemon} is responsible for building packages on behalf of users (@pxref{Setting Up the Daemon}) and for downloading pre-built binaries from authorized sources (@pxref{Substitutes})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:445 +#: guix-git/doc/guix.texi:446 #, no-wrap msgid "extensibility of the distribution" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:446 guix-git/doc/guix.texi:6863 +#: guix-git/doc/guix.texi:447 guix-git/doc/guix.texi:6907 #, no-wrap msgid "customization, of packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:455 +#: guix-git/doc/guix.texi:456 msgid "Guix includes package definitions for many GNU and non-GNU packages, all of which @uref{https://www.gnu.org/philosophy/free-sw.html, respect the user's computing freedom}. It is @emph{extensible}: users can write their own package definitions (@pxref{Defining Packages}) and make them available as independent package modules (@pxref{Package Modules}). It is also @emph{customizable}: users can @emph{derive} specialized package definitions from existing ones, including from the command line (@pxref{Package Transformation Options})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:456 +#: guix-git/doc/guix.texi:457 #, no-wrap msgid "functional package management" msgstr "기능적인 꾸러미 관리" #. type: cindex -#: guix-git/doc/guix.texi:457 +#: guix-git/doc/guix.texi:458 #, no-wrap msgid "isolation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:472 +#: guix-git/doc/guix.texi:473 msgid "Under the hood, Guix implements the @dfn{functional package management} discipline pioneered by Nix (@pxref{Acknowledgments}). In Guix, the package build and installation process is seen as a @emph{function}, in the mathematical sense. That function takes inputs, such as build scripts, a compiler, and libraries, and returns an installed package. As a pure function, its result depends solely on its inputs---for instance, it cannot refer to software or scripts that were not explicitly passed as inputs. A build function always produces the same result when passed a given set of inputs. It cannot alter the environment of the running system in any way; for instance, it cannot create, modify, or delete files outside of its build and installation directories. This is achieved by running build processes in isolated environments (or @dfn{containers}), where only their explicit inputs are visible." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:473 guix-git/doc/guix.texi:9372 +#: guix-git/doc/guix.texi:474 guix-git/doc/guix.texi:9686 #, no-wrap msgid "store" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:480 +#: guix-git/doc/guix.texi:481 msgid "The result of package build functions is @dfn{cached} in the file system, in a special directory called @dfn{the store} (@pxref{The Store}). Each package is installed in a directory of its own in the store---by default under @file{/gnu/store}. The directory name contains a hash of all the inputs used to build that package; thus, changing an input yields a different directory name." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:484 +#: guix-git/doc/guix.texi:485 msgid "This approach is the foundation for the salient features of Guix: support for transactional package upgrade and rollback, per-user installation, and garbage collection of packages (@pxref{Features})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:499 +#: guix-git/doc/guix.texi:500 msgid "Guix comes with a distribution of the GNU system consisting entirely of free software@footnote{The term ``free'' here refers to the @url{https://www.gnu.org/philosophy/free-sw.html,freedom provided to users of that software}.}. The distribution can be installed on its own (@pxref{System Installation}), but it is also possible to install Guix as a package manager on top of an installed GNU/Linux system (@pxref{Installation}). When we need to distinguish between the two, we refer to the standalone distribution as Guix@tie{}System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:505 +#: guix-git/doc/guix.texi:506 msgid "The distribution provides core GNU packages such as GNU libc, GCC, and Binutils, as well as many GNU and non-GNU applications. The complete list of available packages can be browsed @url{https://www.gnu.org/software/guix/packages,on-line} or by running @command{guix package} (@pxref{Invoking guix package}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:508 +#: guix-git/doc/guix.texi:509 #, no-wrap msgid "guix package --list-available\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:514 +#: guix-git/doc/guix.texi:515 msgid "Our goal is to provide a practical 100% free software distribution of Linux-based and other variants of GNU, with a focus on the promotion and tight integration of GNU components, and an emphasis on programs and tools that help users exert that freedom." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:516 +#: guix-git/doc/guix.texi:517 msgid "Packages are currently available on the following platforms:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:519 guix-git/doc/guix.texi:2155 +#: guix-git/doc/guix.texi:520 guix-git/doc/guix.texi:2172 #, no-wrap msgid "x86_64-linux" msgstr "" #. type: table -#: guix-git/doc/guix.texi:521 +#: guix-git/doc/guix.texi:522 msgid "Intel/AMD @code{x86_64} architecture, Linux-Libre kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:522 guix-git/doc/guix.texi:2158 +#: guix-git/doc/guix.texi:523 guix-git/doc/guix.texi:2175 #, no-wrap msgid "i686-linux" msgstr "" #. type: table -#: guix-git/doc/guix.texi:524 +#: guix-git/doc/guix.texi:525 msgid "Intel 32-bit architecture (IA32), Linux-Libre kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:525 +#: guix-git/doc/guix.texi:526 #, no-wrap msgid "armhf-linux" msgstr "" #. type: table -#: guix-git/doc/guix.texi:529 +#: guix-git/doc/guix.texi:530 msgid "ARMv7-A architecture with hard float, Thumb-2 and NEON, using the EABI hard-float application binary interface (ABI), and Linux-Libre kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:530 +#: guix-git/doc/guix.texi:531 #, no-wrap msgid "aarch64-linux" msgstr "" #. type: table -#: guix-git/doc/guix.texi:532 +#: guix-git/doc/guix.texi:533 msgid "little-endian 64-bit ARMv8-A processors, Linux-Libre kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:533 +#: guix-git/doc/guix.texi:534 #, no-wrap msgid "i586-gnu" msgstr "" #. type: table -#: guix-git/doc/guix.texi:536 +#: guix-git/doc/guix.texi:537 msgid "@uref{https://hurd.gnu.org, GNU/Hurd} on the Intel 32-bit architecture (IA32)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:542 +#: guix-git/doc/guix.texi:543 msgid "This configuration is experimental and under development. The easiest way for you to give it a try is by setting up an instance of @code{hurd-vm-service-type} on your GNU/Linux machine (@pxref{transparent-emulation-qemu, @code{hurd-vm-service-type}}). @xref{Contributing}, on how to help!" msgstr "" #. type: item -#: guix-git/doc/guix.texi:543 +#: guix-git/doc/guix.texi:544 #, no-wrap msgid "mips64el-linux (unsupported)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:549 +#: guix-git/doc/guix.texi:550 msgid "little-endian 64-bit MIPS processors, specifically the Loongson series, n32 ABI, and Linux-Libre kernel. This configuration is no longer fully supported; in particular, there is no ongoing work to ensure that this architecture still works. Should someone decide they wish to revive this architecture then the code is still available." msgstr "" #. type: item -#: guix-git/doc/guix.texi:550 +#: guix-git/doc/guix.texi:551 #, no-wrap msgid "powerpc-linux (unsupported)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:555 +#: guix-git/doc/guix.texi:556 msgid "big-endian 32-bit PowerPC processors, specifically the PowerPC G4 with AltiVec support, and Linux-Libre kernel. This configuration is not fully supported and there is no ongoing work to ensure this architecture works." msgstr "" #. type: table -#: guix-git/doc/guix.texi:566 +#: guix-git/doc/guix.texi:567 msgid "little-endian 64-bit Power ISA processors, Linux-Libre kernel. This includes POWER9 systems such as the @uref{https://www.fsf.org/news/talos-ii-mainboard-and-talos-ii-lite-mainboard-now-fsf-certified-to-respect-your-freedom, RYF Talos II mainboard}. This platform is available as a \"technology preview\": although it is supported, substitutes are not yet available from the build farm (@pxref{Substitutes}), and some packages may fail to build (@pxref{Tracking Bugs and Patches}). That said, the Guix community is actively working on improving this support, and now is a great time to try it and get involved!" msgstr "" -#. type: Plain text +#. type: item +#: guix-git/doc/guix.texi:568 +#, no-wrap +msgid "riscv64-linux" +msgstr "" + +#. type: table #: guix-git/doc/guix.texi:576 +msgid "little-endian 64-bit RISC-V processors, specifically RV64GC, and Linux-Libre kernel. This playform is available as a \"technology preview\": although it is supported, substitutes are not yet available from the build farm (@pxref{Substitutes}), and some packages may fail to build (@pxref{Tracking Bugs and Patches}). That said, the Guix community is actively working on improving this support, and now is a great time to try it and get involved!" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:586 msgid "With Guix@tie{}System, you @emph{declare} all aspects of the operating system configuration and Guix takes care of instantiating the configuration in a transactional, reproducible, and stateless fashion (@pxref{System Configuration}). Guix System uses the Linux-libre kernel, the Shepherd initialization system (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}), the well-known GNU utilities and tool chain, as well as the graphical environment or system services of your choice." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:579 -msgid "Guix System is available on all the above platforms except @code{mips64el-linux} and @code{powerpc64le-linux}." +#: guix-git/doc/guix.texi:590 +msgid "Guix System is available on all the above platforms except @code{mips64el-linux}, @code{powerpc-linux}, @code{powerpc64le-linux} and @code{riscv64-linux}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:583 +#: guix-git/doc/guix.texi:594 msgid "For information on porting to other architectures or kernels, @pxref{Porting}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:586 +#: guix-git/doc/guix.texi:597 msgid "Building this distribution is a cooperative effort, and you are invited to join! @xref{Contributing}, for information about how you can help." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:592 +#: guix-git/doc/guix.texi:603 #, no-wrap msgid "installing Guix" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:604 +#: guix-git/doc/guix.texi:615 msgid "We recommend the use of this @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, shell installer script} to install Guix on top of a running GNU/Linux system, thereafter called a @dfn{foreign distro}.@footnote{This section is concerned with the installation of the package manager, which can be done on top of a running GNU/Linux system. If, instead, you want to install the complete GNU operating system, @pxref{System Installation}.} The script automates the download, installation, and initial configuration of Guix. It should be run as the root user." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:606 guix-git/doc/guix.texi:1830 +#: guix-git/doc/guix.texi:617 guix-git/doc/guix.texi:1847 #, no-wrap msgid "foreign distro" msgstr "외부 배포판" #. type: cindex -#: guix-git/doc/guix.texi:607 +#: guix-git/doc/guix.texi:618 #, no-wrap msgid "directories related to foreign distro" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:612 +#: guix-git/doc/guix.texi:623 msgid "When installed on a foreign distro, GNU@tie{}Guix complements the available tools without interference. Its data lives exclusively in two directories, usually @file{/gnu/store} and @file{/var/guix}; other files on your system, such as @file{/etc}, are left untouched." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:615 +#: guix-git/doc/guix.texi:626 msgid "Once installed, Guix can be updated by running @command{guix pull} (@pxref{Invoking guix pull})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:620 +#: guix-git/doc/guix.texi:631 msgid "If you prefer to perform the installation steps manually or want to tweak them, you may find the following subsections useful. They describe the software requirements of Guix, as well as how to install it manually and get ready to use it." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:634 +#: guix-git/doc/guix.texi:645 #, no-wrap msgid "installing Guix from binaries" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:635 +#: guix-git/doc/guix.texi:646 #, no-wrap msgid "installer script" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:641 +#: guix-git/doc/guix.texi:652 msgid "This section describes how to install Guix on an arbitrary system from a self-contained tarball providing binaries for Guix and for all its dependencies. This is often quicker than installing from source, which is described in the next sections. The only requirement is to have GNU@tie{}tar and Xz." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:649 +#: guix-git/doc/guix.texi:660 msgid "We recommend the use of this @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, shell installer script}. The script automates the download, installation, and initial configuration steps described below. It should be run as the root user. As root, you can thus run this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:655 +#: guix-git/doc/guix.texi:666 #, no-wrap msgid "" "cd /tmp\n" @@ -5344,33 +5413,33 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:659 +#: guix-git/doc/guix.texi:670 msgid "When you're done, @pxref{Application Setup} for extra configuration you might need, and @ref{Getting Started} for your first steps!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:662 +#: guix-git/doc/guix.texi:673 msgid "Installing goes along these lines:" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:665 +#: guix-git/doc/guix.texi:676 #, no-wrap msgid "downloading Guix binary" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:671 +#: guix-git/doc/guix.texi:682 msgid "Download the binary tarball from @indicateurl{@value{BASE-URL}/guix-binary-@value{VERSION}.x86_64-linux.tar.xz}, where @code{x86_64-linux} can be replaced with @code{i686-linux} for an @code{i686} (32-bits) machine already running the kernel Linux, and so on (@pxref{GNU Distribution})." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:675 +#: guix-git/doc/guix.texi:686 msgid "Make sure to download the associated @file{.sig} file and to verify the authenticity of the tarball against it, along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:679 +#: guix-git/doc/guix.texi:690 #, no-wrap msgid "" "$ wget @value{BASE-URL}/guix-binary-@value{VERSION}.x86_64-linux.tar.xz.sig\n" @@ -5378,12 +5447,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:683 guix-git/doc/guix.texi:2173 +#: guix-git/doc/guix.texi:694 guix-git/doc/guix.texi:2190 msgid "If that command fails because you do not have the required public key, then run this command to import it:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:687 +#: guix-git/doc/guix.texi:698 #, no-wrap msgid "" "$ wget '@value{OPENPGP-SIGNING-KEY-URL}' \\\n" @@ -5391,22 +5460,22 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:691 guix-git/doc/guix.texi:2181 +#: guix-git/doc/guix.texi:702 guix-git/doc/guix.texi:2198 msgid "and rerun the @code{gpg --verify} command." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:694 guix-git/doc/guix.texi:2184 +#: guix-git/doc/guix.texi:705 guix-git/doc/guix.texi:2201 msgid "Take note that a warning like ``This key is not certified with a trusted signature!'' is normal." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:700 +#: guix-git/doc/guix.texi:711 msgid "Now, you need to become the @code{root} user. Depending on your distribution, you may have to run @code{su -} or @code{sudo -i}. As @code{root}, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:706 +#: guix-git/doc/guix.texi:717 #, no-wrap msgid "" "# cd /tmp\n" @@ -5416,27 +5485,27 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:711 +#: guix-git/doc/guix.texi:722 msgid "This creates @file{/gnu/store} (@pxref{The Store}) and @file{/var/guix}. The latter contains a ready-to-use profile for @code{root} (see next step)." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:714 +#: guix-git/doc/guix.texi:725 msgid "Do @emph{not} unpack the tarball on a working Guix system since that would overwrite its own essential files." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:724 +#: guix-git/doc/guix.texi:735 msgid "The @option{--warning=no-timestamp} option makes sure GNU@tie{}tar does not emit warnings about ``implausibly old time stamps'' (such warnings were triggered by GNU@tie{}tar 1.26 and older; recent versions are fine). They stem from the fact that all the files in the archive have their modification time set to 1 (which means January 1st, 1970). This is done on purpose to make sure the archive content is independent of its creation time, thus making it reproducible." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:728 +#: guix-git/doc/guix.texi:739 msgid "Make the profile available under @file{~root/.config/guix/current}, which is where @command{guix pull} will install updates (@pxref{Invoking guix pull}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:733 +#: guix-git/doc/guix.texi:744 #, no-wrap msgid "" "# mkdir -p ~root/.config/guix\n" @@ -5445,12 +5514,12 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:737 +#: guix-git/doc/guix.texi:748 msgid "Source @file{etc/profile} to augment @env{PATH} and other relevant environment variables:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:741 +#: guix-git/doc/guix.texi:752 #, no-wrap msgid "" "# GUIX_PROFILE=\"`echo ~root`/.config/guix/current\" ; \\\n" @@ -5458,22 +5527,22 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:746 +#: guix-git/doc/guix.texi:757 msgid "Create the group and user accounts for build users as explained below (@pxref{Build Environment Setup})." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:749 +#: guix-git/doc/guix.texi:760 msgid "Run the daemon, and set it to automatically start on boot." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:752 +#: guix-git/doc/guix.texi:763 msgid "If your host distro uses the systemd init system, this can be achieved with these commands:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:765 +#: guix-git/doc/guix.texi:776 #, no-wrap msgid "" "# cp ~root/.config/guix/current/lib/systemd/system/gnu-store.mount \\\n" @@ -5483,12 +5552,12 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:768 +#: guix-git/doc/guix.texi:779 msgid "You may also want to arrange for @command{guix gc} to run periodically:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:774 +#: guix-git/doc/guix.texi:785 #, no-wrap msgid "" "# cp ~root/.config/guix/current/lib/systemd/system/guix-gc.service \\\n" @@ -5498,17 +5567,17 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:778 +#: guix-git/doc/guix.texi:789 msgid "You may want to edit @file{guix-gc.service} to adjust the command line options to fit your needs (@pxref{Invoking guix gc})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:780 guix-git/doc/guix.texi:13740 +#: guix-git/doc/guix.texi:791 guix-git/doc/guix.texi:14097 msgid "If your host distro uses the Upstart init system:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:786 +#: guix-git/doc/guix.texi:797 #, no-wrap msgid "" "# initctl reload-configuration\n" @@ -5518,12 +5587,12 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:789 +#: guix-git/doc/guix.texi:800 msgid "Otherwise, you can still start the daemon manually with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:793 +#: guix-git/doc/guix.texi:804 #, no-wrap msgid "" "# ~root/.config/guix/current/bin/guix-daemon \\\n" @@ -5531,12 +5600,12 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:798 +#: guix-git/doc/guix.texi:809 msgid "Make the @command{guix} command available to other users on the machine, for instance with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:803 +#: guix-git/doc/guix.texi:814 #, no-wrap msgid "" "# mkdir -p /usr/local/bin\n" @@ -5545,12 +5614,12 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:807 +#: guix-git/doc/guix.texi:818 msgid "It is also a good idea to make the Info version of this manual available there:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:813 +#: guix-git/doc/guix.texi:824 #, no-wrap msgid "" "# mkdir -p /usr/local/share/info\n" @@ -5560,24 +5629,24 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:819 +#: guix-git/doc/guix.texi:830 msgid "That way, assuming @file{/usr/local/share/info} is in the search path, running @command{info guix} will open this manual (@pxref{Other Info Directories,,, texinfo, GNU Texinfo}, for more details on changing the Info search path)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:821 guix-git/doc/guix.texi:3798 -#: guix-git/doc/guix.texi:16494 +#: guix-git/doc/guix.texi:832 guix-git/doc/guix.texi:3816 +#: guix-git/doc/guix.texi:16851 #, no-wrap msgid "substitutes, authorization thereof" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:825 +#: guix-git/doc/guix.texi:836 msgid "To use substitutes from @code{@value{SUBSTITUTE-SERVER-1}}, @code{@value{SUBSTITUTE-SERVER-2}} or a mirror (@pxref{Substitutes}), authorize them:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:831 +#: guix-git/doc/guix.texi:842 #, no-wrap msgid "" "# guix archive --authorize < \\\n" @@ -5587,49 +5656,49 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:838 +#: guix-git/doc/guix.texi:849 msgid "If you do not enable substitutes, Guix will end up building @emph{everything} from source on your machine, making each installation and upgrade very expensive. @xref{On Trusting Binaries}, for a discussion of reasons why one might want do disable substitutes." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:843 +#: guix-git/doc/guix.texi:854 msgid "Each user may need to perform a few additional steps to make their Guix environment ready for use, @pxref{Application Setup}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:846 +#: guix-git/doc/guix.texi:857 msgid "Voilà, the installation is complete!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:849 +#: guix-git/doc/guix.texi:860 msgid "You can confirm that Guix is working by installing a sample package into the root profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:852 +#: guix-git/doc/guix.texi:863 #, no-wrap msgid "# guix install hello\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:856 +#: guix-git/doc/guix.texi:867 msgid "The binary installation tarball can be (re)produced and verified simply by running the following command in the Guix source tree:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:859 +#: guix-git/doc/guix.texi:870 #, no-wrap msgid "make guix-binary.@var{system}.tar.xz\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:863 +#: guix-git/doc/guix.texi:874 msgid "...@: which, in turn, runs:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:867 +#: guix-git/doc/guix.texi:878 #, no-wrap msgid "" "guix pack -s @var{system} --localstatedir \\\n" @@ -5637,226 +5706,230 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:870 +#: guix-git/doc/guix.texi:881 msgid "@xref{Invoking guix pack}, for more info on this handy tool." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:878 +#: guix-git/doc/guix.texi:889 msgid "This section lists requirements when building Guix from source. The build procedure for Guix is the same as for other GNU software, and is not covered here. Please see the files @file{README} and @file{INSTALL} in the Guix source tree for additional details." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:879 +#: guix-git/doc/guix.texi:890 #, no-wrap msgid "official website" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:882 +#: guix-git/doc/guix.texi:893 msgid "GNU Guix is available for download from its website at @url{https://www.gnu.org/software/guix/}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:884 +#: guix-git/doc/guix.texi:895 msgid "GNU Guix depends on the following packages:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:886 -#, fuzzy, no-wrap -#| msgid "@url{https://gnu.org/software/gettext/, GNU Gettext};" -msgid "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x;" -msgstr "@url{https://gnu.org/software/gettext/, GNU Gettext};" +#: guix-git/doc/guix.texi:897 +#, no-wrap +msgid "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x," +msgstr "@url{https://gnu.org/software/guile/, GNU Guile}, 버전 3.0.x," + +#. type: itemize +#: guix-git/doc/guix.texi:899 +msgid "version 3.0.3 or later;" +msgstr "" #. type: item -#: guix-git/doc/guix.texi:887 +#: guix-git/doc/guix.texi:899 #, no-wrap msgid "@url{https://notabug.org/cwebber/guile-gcrypt, Guile-Gcrypt}, version" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:889 +#: guix-git/doc/guix.texi:901 msgid "0.1.0 or later;" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:893 +#: guix-git/doc/guix.texi:905 msgid "@uref{https://gnutls.org/, GnuTLS}, specifically its Guile bindings (@pxref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile});" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:896 +#: guix-git/doc/guix.texi:908 msgid "@uref{https://notabug.org/guile-sqlite3/guile-sqlite3, Guile-SQLite3}, version 0.1.0 or later;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:896 +#: guix-git/doc/guix.texi:908 #, no-wrap msgid "@uref{https://notabug.org/guile-zlib/guile-zlib, Guile-zlib}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:898 +#: guix-git/doc/guix.texi:910 msgid "version 0.1.0 or later;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:898 +#: guix-git/doc/guix.texi:910 #, no-wrap msgid "@uref{https://notabug.org/guile-lzlib/guile-lzlib, Guile-lzlib};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:899 +#: guix-git/doc/guix.texi:911 #, no-wrap msgid "@uref{https://www.nongnu.org/guile-avahi/, Guile-Avahi};" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:903 +#: guix-git/doc/guix.texi:915 #, fuzzy #| msgid "@url{https://gnu.org/software/gettext/, GNU Gettext};" msgid "@uref{https://gitlab.com/guile-git/guile-git, Guile-Git}, version 0.5.0 or later;" msgstr "@url{https://gnu.org/software/gettext/, GNU Gettext};" #. type: item -#: guix-git/doc/guix.texi:903 +#: guix-git/doc/guix.texi:915 #, no-wrap msgid "@uref{https://savannah.nongnu.org/projects/guile-json/, Guile-JSON}" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:905 +#: guix-git/doc/guix.texi:917 msgid "4.3.0 or later;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:905 +#: guix-git/doc/guix.texi:917 #, no-wrap msgid "@url{https://www.gnu.org/software/make/, GNU Make}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:909 +#: guix-git/doc/guix.texi:921 msgid "The following dependencies are optional:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:917 +#: guix-git/doc/guix.texi:929 msgid "Support for build offloading (@pxref{Daemon Offload Setup}) and @command{guix copy} (@pxref{Invoking guix copy}) depends on @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH}, version 0.13.0 or later." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:922 +#: guix-git/doc/guix.texi:934 msgid "@uref{https://notabug.org/guile-zstd/guile-zstd, Guile-zstd}, for zstd compression and decompression in @command{guix publish} and for substitutes (@pxref{Invoking guix publish})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:926 +#: guix-git/doc/guix.texi:938 msgid "@uref{https://ngyro.com/software/guile-semver.html, Guile-Semver} for the @code{crate} importer (@pxref{Invoking guix import})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:931 +#: guix-git/doc/guix.texi:943 msgid "@uref{https://www.nongnu.org/guile-lib/doc/ref/htmlprag/, Guile-Lib} for the @code{go} importer (@pxref{Invoking guix import}) and for some of the ``updaters'' (@pxref{Invoking guix refresh})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:935 +#: guix-git/doc/guix.texi:947 msgid "When @url{http://www.bzip.org, libbz2} is available, @command{guix-daemon} can use it to compress build logs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:939 +#: guix-git/doc/guix.texi:951 msgid "Unless @option{--disable-daemon} was passed to @command{configure}, the following packages are also needed:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:941 +#: guix-git/doc/guix.texi:953 #, no-wrap msgid "@url{https://gnupg.org/, GNU libgcrypt};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:942 +#: guix-git/doc/guix.texi:954 #, no-wrap msgid "@url{https://sqlite.org, SQLite 3};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:943 +#: guix-git/doc/guix.texi:955 #, no-wrap msgid "@url{https://gcc.gnu.org, GCC's g++}, with support for the" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:945 +#: guix-git/doc/guix.texi:957 msgid "C++11 standard." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:947 +#: guix-git/doc/guix.texi:959 #, no-wrap msgid "state directory" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:956 +#: guix-git/doc/guix.texi:968 msgid "When configuring Guix on a system that already has a Guix installation, be sure to specify the same state directory as the existing installation using the @option{--localstatedir} option of the @command{configure} script (@pxref{Directory Variables, @code{localstatedir},, standards, GNU Coding Standards}). Usually, this @var{localstatedir} option is set to the value @file{/var}. The @command{configure} script protects against unintended misconfiguration of @var{localstatedir} so you do not inadvertently corrupt your store (@pxref{The Store})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:960 +#: guix-git/doc/guix.texi:972 #, no-wrap msgid "test suite" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:966 +#: guix-git/doc/guix.texi:978 msgid "After a successful @command{configure} and @code{make} run, it is a good idea to run the test suite. It can help catch issues with the setup or environment, or bugs in Guix itself---and really, reporting test failures is a good way to help improve the software. To run the test suite, type:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:969 +#: guix-git/doc/guix.texi:981 #, no-wrap msgid "make check\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:976 +#: guix-git/doc/guix.texi:988 msgid "Test cases can run in parallel: you can use the @code{-j} option of GNU@tie{}make to speed things up. The first run may take a few minutes on a recent machine; subsequent runs will be faster because the store that is created for test purposes will already have various things in cache." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:979 +#: guix-git/doc/guix.texi:991 msgid "It is also possible to run a subset of the tests by defining the @code{TESTS} makefile variable as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:982 +#: guix-git/doc/guix.texi:994 #, no-wrap msgid "make check TESTS=\"tests/store.scm tests/cpio.scm\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:987 +#: guix-git/doc/guix.texi:999 msgid "By default, tests results are displayed at a file level. In order to see the details of every individual test cases, it is possible to define the @code{SCM_LOG_DRIVER_FLAGS} makefile variable as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:990 +#: guix-git/doc/guix.texi:1002 #, no-wrap msgid "make check TESTS=\"tests/base64.scm\" SCM_LOG_DRIVER_FLAGS=\"--brief=no\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:998 +#: guix-git/doc/guix.texi:1010 msgid "The underlying SRFI 64 custom Automake test driver used for the 'check' test suite (located at @file{build-aux/test-driver.scm}) also allows selecting which test cases to run at a finer level, via its @option{--select} and @option{--exclude} options. Here's an example, to run all the test cases from the @file{tests/packages.scm} test file whose names start with ``transaction-upgrade-entry'':" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1002 +#: guix-git/doc/guix.texi:1014 #, no-wrap msgid "" "export SCM_LOG_DRIVER_FLAGS=\"--select=^transaction-upgrade-entry\"\n" @@ -5864,114 +5937,114 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1008 +#: guix-git/doc/guix.texi:1020 msgid "Those wishing to inspect the results of failed tests directly from the command line can add the @option{--errors-only=yes} option to the @code{SCM_LOG_DRIVER_FLAGS} makefile variable and set the @code{VERBOSE} Automake makefile variable, as in:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1011 +#: guix-git/doc/guix.texi:1023 #, no-wrap msgid "make check SCM_LOG_DRIVER_FLAGS=\"--brief=no --errors-only=yes\" VERBOSE=1\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1016 +#: guix-git/doc/guix.texi:1028 msgid "The @option{--show-duration=yes} option can be used to print the duration of the individual test cases, when used in combination with @option{--brief=no}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1019 +#: guix-git/doc/guix.texi:1031 #, no-wrap msgid "make check SCM_LOG_DRIVER_FLAGS=\"--brief=no --show-duration=yes\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1023 +#: guix-git/doc/guix.texi:1035 msgid "@xref{Parallel Test Harness,,,automake,GNU Automake} for more information about the Automake Parallel Test Harness." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1028 +#: guix-git/doc/guix.texi:1040 msgid "Upon failure, please email @email{bug-guix@@gnu.org} and attach the @file{test-suite.log} file. Please specify the Guix version being used as well as version numbers of the dependencies (@pxref{Requirements}) in your message." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1032 +#: guix-git/doc/guix.texi:1044 msgid "Guix also comes with a whole-system test suite that tests complete Guix System instances. It can only run on systems where Guix is already installed, using:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1035 +#: guix-git/doc/guix.texi:1047 #, no-wrap msgid "make check-system\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1039 +#: guix-git/doc/guix.texi:1051 msgid "or, again, by defining @code{TESTS} to select a subset of tests to run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1042 +#: guix-git/doc/guix.texi:1054 #, no-wrap msgid "make check-system TESTS=\"basic mcron\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1050 +#: guix-git/doc/guix.texi:1062 msgid "These system tests are defined in the @code{(gnu tests @dots{})} modules. They work by running the operating systems under test with lightweight instrumentation in a virtual machine (VM). They can be computationally intensive or rather cheap, depending on whether substitutes are available for their dependencies (@pxref{Substitutes}). Some of them require a lot of storage space to hold VM images." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1053 +#: guix-git/doc/guix.texi:1065 msgid "Again in case of test failures, please send @email{bug-guix@@gnu.org} all the details." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1057 +#: guix-git/doc/guix.texi:1069 #, no-wrap msgid "daemon" msgstr "데몬" #. type: Plain text -#: guix-git/doc/guix.texi:1065 +#: guix-git/doc/guix.texi:1077 msgid "Operations such as building a package or running the garbage collector are all performed by a specialized process, the @dfn{build daemon}, on behalf of clients. Only the daemon may access the store and its associated database. Thus, any operation that manipulates the store goes through the daemon. For instance, command-line tools such as @command{guix package} and @command{guix build} communicate with the daemon (@i{via} remote procedure calls) to instruct it what to do." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1069 +#: guix-git/doc/guix.texi:1081 msgid "The following sections explain how to prepare the build daemon's environment. See also @ref{Substitutes}, for information on how to allow the daemon to download pre-built binaries." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1079 guix-git/doc/guix.texi:1542 +#: guix-git/doc/guix.texi:1091 guix-git/doc/guix.texi:1559 #, no-wrap msgid "build environment" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1087 +#: guix-git/doc/guix.texi:1099 msgid "In a standard multi-user setup, Guix and its daemon---the @command{guix-daemon} program---are installed by the system administrator; @file{/gnu/store} is owned by @code{root} and @command{guix-daemon} runs as @code{root}. Unprivileged users may use Guix tools to build packages or otherwise access the store, and the daemon will do it on their behalf, ensuring that the store is kept in a consistent state, and allowing built packages to be shared among users." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1088 +#: guix-git/doc/guix.texi:1100 #, no-wrap msgid "build users" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1099 +#: guix-git/doc/guix.texi:1111 msgid "When @command{guix-daemon} runs as @code{root}, you may not want package build processes themselves to run as @code{root} too, for obvious security reasons. To avoid that, a special pool of @dfn{build users} should be created for use by build processes started by the daemon. These build users need not have a shell and a home directory: they will just be used when the daemon drops @code{root} privileges in build processes. Having several such users allows the daemon to launch distinct build processes under separate UIDs, which guarantees that they do not interfere with each other---an essential feature since builds are regarded as pure functions (@pxref{Introduction})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1102 +#: guix-git/doc/guix.texi:1114 msgid "On a GNU/Linux system, a build user pool may be created like this (using Bash syntax and the @code{shadow} commands):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1114 +#: guix-git/doc/guix.texi:1126 #, no-wrap msgid "" "# groupadd --system guixbuild\n" @@ -5985,139 +6058,144 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1124 +#: guix-git/doc/guix.texi:1136 msgid "The number of build users determines how many build jobs may run in parallel, as specified by the @option{--max-jobs} option (@pxref{Invoking guix-daemon, @option{--max-jobs}}). To use @command{guix system vm} and related commands, you may need to add the build users to the @code{kvm} group so they can access @file{/dev/kvm}, using @code{-G guixbuild,kvm} instead of @code{-G guixbuild} (@pxref{Invoking guix system})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1133 +#: guix-git/doc/guix.texi:1145 msgid "The @code{guix-daemon} program may then be run as @code{root} with the following command@footnote{If your machine uses the systemd init system, dropping the @file{@var{prefix}/lib/systemd/system/guix-daemon.service} file in @file{/etc/systemd/system} will ensure that @command{guix-daemon} is automatically started. Similarly, if your machine uses the Upstart init system, drop the @file{@var{prefix}/lib/upstart/system/guix-daemon.conf} file in @file{/etc/init}.}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1136 guix-git/doc/guix.texi:1535 +#: guix-git/doc/guix.texi:1148 guix-git/doc/guix.texi:1552 #, no-wrap msgid "# guix-daemon --build-users-group=guixbuild\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1138 guix-git/doc/guix.texi:1540 +#: guix-git/doc/guix.texi:1150 guix-git/doc/guix.texi:1557 #, no-wrap msgid "chroot" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1143 +#: guix-git/doc/guix.texi:1155 msgid "This way, the daemon starts build processes in a chroot, under one of the @code{guixbuilder} users. On GNU/Linux, by default, the chroot environment contains nothing but:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1151 +#: guix-git/doc/guix.texi:1163 msgid "a minimal @code{/dev} directory, created mostly independently from the host @code{/dev}@footnote{``Mostly'', because while the set of files that appear in the chroot's @code{/dev} is fixed, most of these files can only be created if the host has them.};" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1155 +#: guix-git/doc/guix.texi:1167 msgid "the @code{/proc} directory; it only shows the processes of the container since a separate PID name space is used;" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1159 +#: guix-git/doc/guix.texi:1171 msgid "@file{/etc/passwd} with an entry for the current user and an entry for user @file{nobody};" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1162 +#: guix-git/doc/guix.texi:1174 msgid "@file{/etc/group} with an entry for the user's group;" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1166 +#: guix-git/doc/guix.texi:1178 msgid "@file{/etc/hosts} with an entry that maps @code{localhost} to @code{127.0.0.1};" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1169 +#: guix-git/doc/guix.texi:1181 msgid "a writable @file{/tmp} directory." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1178 +#: guix-git/doc/guix.texi:1187 +msgid "The chroot does not contain a @file{/home} directory, and the @env{HOME} environment variable is set to the non-existent @file{/homeless-shelter}. This helps to highlight inappropriate uses of @env{HOME} in the build scripts of packages." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:1195 msgid "You can influence the directory where the daemon stores build trees @i{via} the @env{TMPDIR} environment variable. However, the build tree within the chroot is always called @file{/tmp/guix-build-@var{name}.drv-0}, where @var{name} is the derivation name---e.g., @code{coreutils-8.24}. This way, the value of @env{TMPDIR} does not leak inside build environments, which avoids discrepancies in cases where build processes capture the name of their build tree." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:1179 guix-git/doc/guix.texi:4007 +#: guix-git/doc/guix.texi:1196 guix-git/doc/guix.texi:4025 #, no-wrap msgid "http_proxy" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:1180 guix-git/doc/guix.texi:4008 +#: guix-git/doc/guix.texi:1197 guix-git/doc/guix.texi:4026 #, no-wrap msgid "https_proxy" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1185 +#: guix-git/doc/guix.texi:1202 msgid "The daemon also honors the @env{http_proxy} and @env{https_proxy} environment variables for HTTP and HTTPS downloads it performs, be it for fixed-output derivations (@pxref{Derivations}) or for substitutes (@pxref{Substitutes})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1193 +#: guix-git/doc/guix.texi:1210 msgid "If you are installing Guix as an unprivileged user, it is still possible to run @command{guix-daemon} provided you pass @option{--disable-chroot}. However, build processes will not be isolated from one another, and not from the rest of the system. Thus, build processes may interfere with each other, and may access programs, libraries, and other files available on the system---making it much harder to view them as @emph{pure} functions." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:1196 +#: guix-git/doc/guix.texi:1213 #, no-wrap msgid "Using the Offload Facility" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1198 guix-git/doc/guix.texi:1601 +#: guix-git/doc/guix.texi:1215 guix-git/doc/guix.texi:1618 #, no-wrap msgid "offloading" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1199 +#: guix-git/doc/guix.texi:1216 #, no-wrap msgid "build hook" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1218 +#: guix-git/doc/guix.texi:1235 msgid "When desired, the build daemon can @dfn{offload} derivation builds to other machines running Guix, using the @code{offload} @dfn{build hook}@footnote{This feature is available only when @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH} is present.}. When that feature is enabled, a list of user-specified build machines is read from @file{/etc/guix/machines.scm}; every time a build is requested, for instance via @code{guix build}, the daemon attempts to offload it to one of the machines that satisfy the constraints of the derivation, in particular its system types---e.g., @code{x86_64-linux}. A single machine can have multiple system types, either because its architecture natively supports it, via emulation (@pxref{transparent-emulation-qemu, Transparent Emulation with QEMU}), or both. Missing prerequisites for the build are copied over SSH to the target machine, which then proceeds with the build; upon success the output(s) of the build are copied back to the initial machine. The offload facility comes with a basic scheduler that attempts to select the best machine. The best machine is chosen among the available machines based on criteria such as:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1224 +#: guix-git/doc/guix.texi:1241 msgid "The availability of a build slot. A build machine can have as many build slots (connections) as the value of the @code{parallel-builds} field of its @code{build-machine} object." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1228 +#: guix-git/doc/guix.texi:1245 msgid "Its relative speed, as defined via the @code{speed} field of its @code{build-machine} object." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1233 +#: guix-git/doc/guix.texi:1250 msgid "Its load. The normalized machine load must be lower than a threshold value, configurable via the @code{overload-threshold} field of its @code{build-machine} object." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1236 +#: guix-git/doc/guix.texi:1253 msgid "Disk space availability. More than a 100 MiB must be available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1239 +#: guix-git/doc/guix.texi:1256 msgid "The @file{/etc/guix/machines.scm} file typically looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:1247 +#: guix-git/doc/guix.texi:1264 #, no-wrap msgid "" "(list (build-machine\n" @@ -6130,7 +6208,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:1253 +#: guix-git/doc/guix.texi:1270 #, no-wrap msgid "" " (build-machine\n" @@ -6142,7 +6220,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:1257 +#: guix-git/doc/guix.texi:1274 #, no-wrap msgid "" " ;; Remember 'guix offload' is spawned by\n" @@ -6151,98 +6229,98 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1263 +#: guix-git/doc/guix.texi:1280 msgid "In the example above we specify a list of two build machines, one for the @code{x86_64} and @code{i686} architectures and one for the @code{aarch64} architecture." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1272 +#: guix-git/doc/guix.texi:1289 msgid "In fact, this file is---not surprisingly!---a Scheme file that is evaluated when the @code{offload} hook is started. Its return value must be a list of @code{build-machine} objects. While this example shows a fixed list of build machines, one could imagine, say, using DNS-SD to return a list of potential build machines discovered in the local network (@pxref{Introduction, Guile-Avahi,, guile-avahi, Using Avahi in Guile Scheme Programs}). The @code{build-machine} data type is detailed below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:1273 +#: guix-git/doc/guix.texi:1290 #, no-wrap msgid "{Data Type} build-machine" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:1276 +#: guix-git/doc/guix.texi:1293 msgid "This data type represents build machines to which the daemon may offload builds. The important fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1279 guix-git/doc/guix.texi:7113 -#: guix-git/doc/guix.texi:15446 guix-git/doc/guix.texi:15545 -#: guix-git/doc/guix.texi:15786 guix-git/doc/guix.texi:17314 -#: guix-git/doc/guix.texi:17935 guix-git/doc/guix.texi:18209 -#: guix-git/doc/guix.texi:21269 guix-git/doc/guix.texi:24179 -#: guix-git/doc/guix.texi:25568 guix-git/doc/guix.texi:26180 -#: guix-git/doc/guix.texi:26533 guix-git/doc/guix.texi:26574 -#: guix-git/doc/guix.texi:28735 guix-git/doc/guix.texi:31072 -#: guix-git/doc/guix.texi:31092 guix-git/doc/guix.texi:33766 -#: guix-git/doc/guix.texi:33783 guix-git/doc/guix.texi:34320 -#: guix-git/doc/guix.texi:36095 guix-git/doc/guix.texi:36422 +#: guix-git/doc/guix.texi:1296 guix-git/doc/guix.texi:7157 +#: guix-git/doc/guix.texi:15803 guix-git/doc/guix.texi:15902 +#: guix-git/doc/guix.texi:16143 guix-git/doc/guix.texi:17676 +#: guix-git/doc/guix.texi:18297 guix-git/doc/guix.texi:18571 +#: guix-git/doc/guix.texi:21631 guix-git/doc/guix.texi:24541 +#: guix-git/doc/guix.texi:25905 guix-git/doc/guix.texi:26517 +#: guix-git/doc/guix.texi:26870 guix-git/doc/guix.texi:26911 +#: guix-git/doc/guix.texi:29072 guix-git/doc/guix.texi:31437 +#: guix-git/doc/guix.texi:31457 guix-git/doc/guix.texi:34203 +#: guix-git/doc/guix.texi:34220 guix-git/doc/guix.texi:34759 +#: guix-git/doc/guix.texi:36585 guix-git/doc/guix.texi:36912 #, no-wrap msgid "name" msgstr "이름" #. type: table -#: guix-git/doc/guix.texi:1281 +#: guix-git/doc/guix.texi:1298 msgid "The host name of the remote machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1282 +#: guix-git/doc/guix.texi:1299 #, no-wrap msgid "systems" msgstr "시스템" #. type: table -#: guix-git/doc/guix.texi:1285 +#: guix-git/doc/guix.texi:1302 msgid "The system types the remote machine supports---e.g., @code{(list \"x86_64-linux\" \"i686-linux\")}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1286 guix-git/doc/guix.texi:17945 +#: guix-git/doc/guix.texi:1303 guix-git/doc/guix.texi:18307 #, no-wrap msgid "user" msgstr "사용자" #. type: table -#: guix-git/doc/guix.texi:1290 +#: guix-git/doc/guix.texi:1307 msgid "The user account to use when connecting to the remote machine over SSH. Note that the SSH key pair must @emph{not} be passphrase-protected, to allow non-interactive logins." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1291 +#: guix-git/doc/guix.texi:1308 #, no-wrap msgid "host-key" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1295 +#: guix-git/doc/guix.texi:1312 msgid "This must be the machine's SSH @dfn{public host key} in OpenSSH format. This is used to authenticate the machine when we connect to it. It is a long string that looks like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1298 +#: guix-git/doc/guix.texi:1315 #, no-wrap msgid "ssh-ed25519 AAAAC3NzaC@dots{}mde+UhL hint@@example.org\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1303 +#: guix-git/doc/guix.texi:1320 msgid "If the machine is running the OpenSSH daemon, @command{sshd}, the host key can be found in a file such as @file{/etc/ssh/ssh_host_ed25519_key.pub}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1308 +#: guix-git/doc/guix.texi:1325 msgid "If the machine is running the SSH daemon of GNU@tie{}lsh, @command{lshd}, the host key is in @file{/etc/lsh/host-key.pub} or a similar file. It can be converted to the OpenSSH format using @command{lsh-export-key} (@pxref{Converting keys,,, lsh, LSH Manual}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1312 +#: guix-git/doc/guix.texi:1329 #, no-wrap msgid "" "$ lsh-export-key --openssh < /etc/lsh/host-key.pub\n" @@ -6250,674 +6328,674 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:1317 +#: guix-git/doc/guix.texi:1334 msgid "A number of optional fields may be specified:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1320 guix-git/doc/guix.texi:35581 +#: guix-git/doc/guix.texi:1337 guix-git/doc/guix.texi:36061 #, no-wrap msgid "@code{port} (default: @code{22})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1322 +#: guix-git/doc/guix.texi:1339 msgid "Port number of SSH server on the machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1323 +#: guix-git/doc/guix.texi:1340 #, no-wrap msgid "@code{private-key} (default: @file{~root/.ssh/id_rsa})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1326 +#: guix-git/doc/guix.texi:1343 msgid "The SSH private key file to use when connecting to the machine, in OpenSSH format. This key must not be protected with a passphrase." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1329 +#: guix-git/doc/guix.texi:1346 msgid "Note that the default value is the private key @emph{of the root account}. Make sure it exists if you use the default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1330 +#: guix-git/doc/guix.texi:1347 #, no-wrap msgid "@code{compression} (default: @code{\"zlib@@openssh.com,zlib\"})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:1331 +#: guix-git/doc/guix.texi:1348 #, no-wrap msgid "@code{compression-level} (default: @code{3})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1333 +#: guix-git/doc/guix.texi:1350 msgid "The SSH-level compression methods and compression level requested." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1336 +#: guix-git/doc/guix.texi:1353 msgid "Note that offloading relies on SSH compression to reduce bandwidth usage when transferring files to and from build machines." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1337 +#: guix-git/doc/guix.texi:1354 #, no-wrap msgid "@code{daemon-socket} (default: @code{\"/var/guix/daemon-socket/socket\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1340 +#: guix-git/doc/guix.texi:1357 msgid "File name of the Unix-domain socket @command{guix-daemon} is listening to on that machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1341 +#: guix-git/doc/guix.texi:1358 #, no-wrap msgid "@code{overload-threshold} (default: @code{0.6})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1347 +#: guix-git/doc/guix.texi:1364 msgid "The load threshold above which a potential offload machine is disregarded by the offload scheduler. The value roughly translates to the total processor usage of the build machine, ranging from 0.0 (0%) to 1.0 (100%). It can also be disabled by setting @code{overload-threshold} to @code{#f}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1348 +#: guix-git/doc/guix.texi:1365 #, no-wrap msgid "@code{parallel-builds} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1350 +#: guix-git/doc/guix.texi:1367 msgid "The number of builds that may run in parallel on the machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1351 +#: guix-git/doc/guix.texi:1368 #, no-wrap msgid "@code{speed} (default: @code{1.0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1354 +#: guix-git/doc/guix.texi:1371 msgid "A ``relative speed factor''. The offload scheduler will tend to prefer machines with a higher speed factor." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1355 +#: guix-git/doc/guix.texi:1372 #, no-wrap msgid "@code{features} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1360 +#: guix-git/doc/guix.texi:1377 msgid "A list of strings denoting specific features supported by the machine. An example is @code{\"kvm\"} for machines that have the KVM Linux modules and corresponding hardware support. Derivations can request features by name, and they will be scheduled on matching build machines." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1366 +#: guix-git/doc/guix.texi:1383 msgid "The @command{guix} command must be in the search path on the build machines. You can check whether this is the case by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1369 +#: guix-git/doc/guix.texi:1386 #, no-wrap msgid "ssh build-machine guix repl --version\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1376 +#: guix-git/doc/guix.texi:1393 msgid "There is one last thing to do once @file{machines.scm} is in place. As explained above, when offloading, files are transferred back and forth between the machine stores. For this to work, you first need to generate a key pair on each machine to allow the daemon to export signed archives of files from the store (@pxref{Invoking guix archive}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1379 guix-git/doc/guix.texi:35509 +#: guix-git/doc/guix.texi:1396 guix-git/doc/guix.texi:35965 #, no-wrap msgid "# guix archive --generate-key\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1384 +#: guix-git/doc/guix.texi:1401 msgid "Each build machine must authorize the key of the master machine so that it accepts store items it receives from the master:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1387 +#: guix-git/doc/guix.texi:1404 #, no-wrap msgid "# guix archive --authorize < master-public-key.txt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1391 +#: guix-git/doc/guix.texi:1408 msgid "Likewise, the master machine must authorize the key of each build machine." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1397 +#: guix-git/doc/guix.texi:1414 msgid "All the fuss with keys is here to express pairwise mutual trust relations between the master and the build machines. Concretely, when the master receives files from a build machine (and @i{vice versa}), its build daemon can make sure they are genuine, have not been tampered with, and that they are signed by an authorized key." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1398 +#: guix-git/doc/guix.texi:1415 #, no-wrap msgid "offload test" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1401 +#: guix-git/doc/guix.texi:1418 msgid "To test whether your setup is operational, run this command on the master node:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1404 +#: guix-git/doc/guix.texi:1421 #, no-wrap msgid "# guix offload test\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1410 +#: guix-git/doc/guix.texi:1427 msgid "This will attempt to connect to each of the build machines specified in @file{/etc/guix/machines.scm}, make sure Guix is available on each machine, attempt to export to the machine and import from it, and report any error in the process." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1413 +#: guix-git/doc/guix.texi:1430 msgid "If you want to test a different machine file, just specify it on the command line:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1416 +#: guix-git/doc/guix.texi:1433 #, no-wrap msgid "# guix offload test machines-qualif.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1420 +#: guix-git/doc/guix.texi:1437 msgid "Last, you can test the subset of the machines whose name matches a regular expression like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1423 +#: guix-git/doc/guix.texi:1440 #, no-wrap msgid "# guix offload test machines.scm '\\.gnu\\.org$'\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1425 +#: guix-git/doc/guix.texi:1442 #, no-wrap msgid "offload status" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1428 +#: guix-git/doc/guix.texi:1445 msgid "To display the current load of all build hosts, run this command on the main node:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1431 +#: guix-git/doc/guix.texi:1448 #, no-wrap msgid "# guix offload status\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1437 +#: guix-git/doc/guix.texi:1454 #, no-wrap msgid "SELinux, daemon policy" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1438 +#: guix-git/doc/guix.texi:1455 #, no-wrap msgid "mandatory access control, SELinux" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1439 +#: guix-git/doc/guix.texi:1456 #, no-wrap msgid "security, guix-daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1445 +#: guix-git/doc/guix.texi:1462 msgid "Guix includes an SELinux policy file at @file{etc/guix-daemon.cil} that can be installed on a system where SELinux is enabled, in order to label Guix files and to specify the expected behavior of the daemon. Since Guix System does not provide an SELinux base policy, the daemon policy cannot be used on Guix System." msgstr "" #. type: subsubsection -#: guix-git/doc/guix.texi:1446 +#: guix-git/doc/guix.texi:1463 #, no-wrap msgid "Installing the SELinux policy" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1447 +#: guix-git/doc/guix.texi:1464 #, no-wrap msgid "SELinux, policy installation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1449 +#: guix-git/doc/guix.texi:1466 msgid "To install the policy run this command as root:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1452 +#: guix-git/doc/guix.texi:1469 #, no-wrap msgid "semodule -i etc/guix-daemon.cil\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1456 +#: guix-git/doc/guix.texi:1473 msgid "Then relabel the file system with @code{restorecon} or by a different mechanism provided by your system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1461 +#: guix-git/doc/guix.texi:1478 msgid "Once the policy is installed, the file system has been relabeled, and the daemon has been restarted, it should be running in the @code{guix_daemon_t} context. You can confirm this with the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1464 +#: guix-git/doc/guix.texi:1481 #, no-wrap msgid "ps -Zax | grep guix-daemon\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1469 +#: guix-git/doc/guix.texi:1486 msgid "Monitor the SELinux log files as you run a command like @code{guix build hello} to convince yourself that SELinux permits all necessary operations." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1471 +#: guix-git/doc/guix.texi:1488 #, no-wrap msgid "SELinux, limitations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1476 +#: guix-git/doc/guix.texi:1493 msgid "This policy is not perfect. Here is a list of limitations or quirks that should be considered when deploying the provided SELinux policy for the Guix daemon." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1483 +#: guix-git/doc/guix.texi:1500 msgid "@code{guix_daemon_socket_t} isn’t actually used. None of the socket operations involve contexts that have anything to do with @code{guix_daemon_socket_t}. It doesn’t hurt to have this unused label, but it would be preferable to define socket rules for only this label." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1494 +#: guix-git/doc/guix.texi:1511 msgid "@code{guix gc} cannot access arbitrary links to profiles. By design, the file label of the destination of a symlink is independent of the file label of the link itself. Although all profiles under $localstatedir are labelled, the links to these profiles inherit the label of the directory they are in. For links in the user’s home directory this will be @code{user_home_t}. But for links from the root user’s home directory, or @file{/tmp}, or the HTTP server’s working directory, etc, this won’t work. @code{guix gc} would be prevented from reading and following these links." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1499 +#: guix-git/doc/guix.texi:1516 msgid "The daemon’s feature to listen for TCP connections might no longer work. This might require extra rules, because SELinux treats network sockets differently from files." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1510 +#: guix-git/doc/guix.texi:1527 msgid "Currently all files with a name matching the regular expression @code{/gnu/store/.+-(guix-.+|profile)/bin/guix-daemon} are assigned the label @code{guix_daemon_exec_t}; this means that @emph{any} file with that name in any profile would be permitted to run in the @code{guix_daemon_t} domain. This is not ideal. An attacker could build a package that provides this executable and convince a user to install and run it, which lifts it into the @code{guix_daemon_t} domain. At that point SELinux could not prevent it from accessing files that are allowed for processes in that domain." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1515 +#: guix-git/doc/guix.texi:1532 msgid "You will need to relabel the store directory after all upgrades to @file{guix-daemon}, such as after running @code{guix pull}. Assuming the store is in @file{/gnu}, you can do this with @code{restorecon -vR /gnu}, or by other means provided by your operating system." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1523 +#: guix-git/doc/guix.texi:1540 msgid "We could generate a much more restrictive policy at installation time, so that only the @emph{exact} file name of the currently installed @code{guix-daemon} executable would be labelled with @code{guix_daemon_exec_t}, instead of using a broad regular expression. The downside is that root would have to install or upgrade the policy at installation time whenever the Guix package that provides the effectively running @code{guix-daemon} executable is upgraded." msgstr "" #. type: section -#: guix-git/doc/guix.texi:1526 +#: guix-git/doc/guix.texi:1543 #, no-wrap msgid "Invoking @command{guix-daemon}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1532 +#: guix-git/doc/guix.texi:1549 msgid "The @command{guix-daemon} program implements all the functionality to access the store. This includes launching build processes, running the garbage collector, querying the availability of a build result, etc. It is normally run as @code{root} like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1539 +#: guix-git/doc/guix.texi:1556 msgid "For details on how to set it up, @pxref{Setting Up the Daemon}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1541 +#: guix-git/doc/guix.texi:1558 #, no-wrap msgid "container, build environment" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1543 guix-git/doc/guix.texi:3071 -#: guix-git/doc/guix.texi:3988 guix-git/doc/guix.texi:13753 +#: guix-git/doc/guix.texi:1560 guix-git/doc/guix.texi:3088 +#: guix-git/doc/guix.texi:4006 guix-git/doc/guix.texi:14110 #, no-wrap msgid "reproducible builds" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1555 +#: guix-git/doc/guix.texi:1572 msgid "By default, @command{guix-daemon} launches build processes under different UIDs, taken from the build group specified with @option{--build-users-group}. In addition, each build process is run in a chroot environment that only contains the subset of the store that the build process depends on, as specified by its derivation (@pxref{Programming Interface, derivation}), plus a set of specific system directories. By default, the latter contains @file{/dev} and @file{/dev/pts}. Furthermore, on GNU/Linux, the build environment is a @dfn{container}: in addition to having its own file system tree, it has a separate mount name space, its own PID name space, network name space, etc. This helps achieve reproducible builds (@pxref{Features})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1561 +#: guix-git/doc/guix.texi:1578 msgid "When the daemon performs a build on behalf of the user, it creates a build directory under @file{/tmp} or under the directory specified by its @env{TMPDIR} environment variable. This directory is shared with the container for the duration of the build, though within the container, the build tree is always called @file{/tmp/guix-build-@var{name}.drv-0}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1565 +#: guix-git/doc/guix.texi:1582 msgid "The build directory is automatically deleted upon completion, unless the build failed and the client specified @option{--keep-failed} (@pxref{Common Build Options, @option{--keep-failed}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1571 +#: guix-git/doc/guix.texi:1588 msgid "The daemon listens for connections and spawns one sub-process for each session started by a client (one of the @command{guix} sub-commands). The @command{guix processes} command allows you to get an overview of the activity on your system by viewing each of the active sessions and clients. @xref{Invoking guix processes}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1573 +#: guix-git/doc/guix.texi:1590 msgid "The following command-line options are supported:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1575 +#: guix-git/doc/guix.texi:1592 #, no-wrap msgid "--build-users-group=@var{group}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1578 +#: guix-git/doc/guix.texi:1595 msgid "Take users from @var{group} to run build processes (@pxref{Setting Up the Daemon, build users})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1579 guix-git/doc/guix.texi:10915 +#: guix-git/doc/guix.texi:1596 guix-git/doc/guix.texi:11229 #, no-wrap msgid "--no-substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1580 guix-git/doc/guix.texi:3083 -#: guix-git/doc/guix.texi:3741 +#: guix-git/doc/guix.texi:1597 guix-git/doc/guix.texi:3100 +#: guix-git/doc/guix.texi:3759 #, no-wrap msgid "substitutes" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1584 guix-git/doc/guix.texi:10919 +#: guix-git/doc/guix.texi:1601 guix-git/doc/guix.texi:11233 msgid "Do not use substitutes for build products. That is, always build things locally instead of allowing downloads of pre-built binaries (@pxref{Substitutes})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1588 +#: guix-git/doc/guix.texi:1605 msgid "When the daemon runs with @option{--no-substitutes}, clients can still explicitly enable substitution @i{via} the @code{set-build-options} remote procedure call (@pxref{The Store})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:1590 +#: guix-git/doc/guix.texi:1607 msgid "daemon-substitute-urls" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1590 guix-git/doc/guix.texi:10902 -#: guix-git/doc/guix.texi:13160 guix-git/doc/guix.texi:13899 -#: guix-git/doc/guix.texi:14124 +#: guix-git/doc/guix.texi:1607 guix-git/doc/guix.texi:11216 +#: guix-git/doc/guix.texi:13517 guix-git/doc/guix.texi:14256 +#: guix-git/doc/guix.texi:14481 #, no-wrap msgid "--substitute-urls=@var{urls}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1594 +#: guix-git/doc/guix.texi:1611 msgid "Consider @var{urls} the default whitespace-separated list of substitute source URLs. When this option is omitted, @indicateurl{@value{SUBSTITUTE-URLS}} is used." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1597 +#: guix-git/doc/guix.texi:1614 msgid "This means that substitutes may be downloaded from @var{urls}, as long as they are signed by a trusted signature (@pxref{Substitutes})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1600 +#: guix-git/doc/guix.texi:1617 msgid "@xref{Getting Substitutes from Other Servers}, for more information on how to configure the daemon to get substitutes from other servers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1602 guix-git/doc/guix.texi:10938 +#: guix-git/doc/guix.texi:1619 guix-git/doc/guix.texi:11252 #, no-wrap msgid "--no-offload" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1606 guix-git/doc/guix.texi:10942 +#: guix-git/doc/guix.texi:1623 guix-git/doc/guix.texi:11256 msgid "Do not use offload builds to other machines (@pxref{Daemon Offload Setup}). That is, always build things locally instead of offloading builds to remote machines." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1607 +#: guix-git/doc/guix.texi:1624 #, no-wrap msgid "--cache-failures" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1609 +#: guix-git/doc/guix.texi:1626 msgid "Cache build failures. By default, only successful builds are cached." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1614 +#: guix-git/doc/guix.texi:1631 msgid "When this option is used, @command{guix gc --list-failures} can be used to query the set of store items marked as failed; @command{guix gc --clear-failures} removes store items from the set of cached failures. @xref{Invoking guix gc}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1615 guix-git/doc/guix.texi:10968 +#: guix-git/doc/guix.texi:1632 guix-git/doc/guix.texi:11282 #, no-wrap msgid "--cores=@var{n}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:1616 guix-git/doc/guix.texi:10969 +#: guix-git/doc/guix.texi:1633 guix-git/doc/guix.texi:11283 #, no-wrap msgid "-c @var{n}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1619 +#: guix-git/doc/guix.texi:1636 msgid "Use @var{n} CPU cores to build each derivation; @code{0} means as many as available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1623 +#: guix-git/doc/guix.texi:1640 msgid "The default value is @code{0}, but it may be overridden by clients, such as the @option{--cores} option of @command{guix build} (@pxref{Invoking guix build})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1627 +#: guix-git/doc/guix.texi:1644 msgid "The effect is to define the @env{NIX_BUILD_CORES} environment variable in the build process, which can then use it to exploit internal parallelism---for instance, by running @code{make -j$NIX_BUILD_CORES}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1628 guix-git/doc/guix.texi:10973 +#: guix-git/doc/guix.texi:1645 guix-git/doc/guix.texi:11287 #, no-wrap msgid "--max-jobs=@var{n}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:1629 guix-git/doc/guix.texi:10974 +#: guix-git/doc/guix.texi:1646 guix-git/doc/guix.texi:11288 #, no-wrap msgid "-M @var{n}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1634 +#: guix-git/doc/guix.texi:1651 msgid "Allow at most @var{n} build jobs in parallel. The default value is @code{1}. Setting it to @code{0} means that no builds will be performed locally; instead, the daemon will offload builds (@pxref{Daemon Offload Setup}), or simply fail." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1635 guix-git/doc/guix.texi:10943 +#: guix-git/doc/guix.texi:1652 guix-git/doc/guix.texi:11257 #, no-wrap msgid "--max-silent-time=@var{seconds}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1638 guix-git/doc/guix.texi:10946 +#: guix-git/doc/guix.texi:1655 guix-git/doc/guix.texi:11260 msgid "When the build or substitution process remains silent for more than @var{seconds}, terminate it and report a build failure." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1640 guix-git/doc/guix.texi:1649 +#: guix-git/doc/guix.texi:1657 guix-git/doc/guix.texi:1666 msgid "The default value is @code{0}, which disables the timeout." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1643 +#: guix-git/doc/guix.texi:1660 msgid "The value specified here can be overridden by clients (@pxref{Common Build Options, @option{--max-silent-time}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1644 guix-git/doc/guix.texi:10950 +#: guix-git/doc/guix.texi:1661 guix-git/doc/guix.texi:11264 #, no-wrap msgid "--timeout=@var{seconds}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1647 guix-git/doc/guix.texi:10953 +#: guix-git/doc/guix.texi:1664 guix-git/doc/guix.texi:11267 msgid "Likewise, when the build or substitution process lasts for more than @var{seconds}, terminate it and report a build failure." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1652 +#: guix-git/doc/guix.texi:1669 msgid "The value specified here can be overridden by clients (@pxref{Common Build Options, @option{--timeout}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1653 +#: guix-git/doc/guix.texi:1670 #, no-wrap msgid "--rounds=@var{N}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1658 +#: guix-git/doc/guix.texi:1675 msgid "Build each derivation @var{n} times in a row, and raise an error if consecutive build results are not bit-for-bit identical. Note that this setting can be overridden by clients such as @command{guix build} (@pxref{Invoking guix build})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1662 guix-git/doc/guix.texi:10937 -#: guix-git/doc/guix.texi:11561 +#: guix-git/doc/guix.texi:1679 guix-git/doc/guix.texi:11251 +#: guix-git/doc/guix.texi:11875 msgid "When used in conjunction with @option{--keep-failed}, the differing output is kept in the store, under @file{/gnu/store/@dots{}-check}. This makes it easy to look for differences between the two results." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1663 +#: guix-git/doc/guix.texi:1680 #, no-wrap msgid "--debug" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1665 +#: guix-git/doc/guix.texi:1682 msgid "Produce debugging output." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1669 +#: guix-git/doc/guix.texi:1686 msgid "This is useful to debug daemon start-up issues, but then it may be overridden by clients, for example the @option{--verbosity} option of @command{guix build} (@pxref{Invoking guix build})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1670 +#: guix-git/doc/guix.texi:1687 #, no-wrap msgid "--chroot-directory=@var{dir}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1672 +#: guix-git/doc/guix.texi:1689 msgid "Add @var{dir} to the build chroot." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1678 +#: guix-git/doc/guix.texi:1695 msgid "Doing this may change the result of build processes---for instance if they use optional dependencies found in @var{dir} when it is available, and not otherwise. For that reason, it is not recommended to do so. Instead, make sure that each derivation declares all the inputs that it needs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1679 +#: guix-git/doc/guix.texi:1696 #, no-wrap msgid "--disable-chroot" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1681 +#: guix-git/doc/guix.texi:1698 msgid "Disable chroot builds." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1686 +#: guix-git/doc/guix.texi:1703 msgid "Using this option is not recommended since, again, it would allow build processes to gain access to undeclared dependencies. It is necessary, though, when @command{guix-daemon} is running under an unprivileged user account." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1687 +#: guix-git/doc/guix.texi:1704 #, no-wrap msgid "--log-compression=@var{type}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1690 +#: guix-git/doc/guix.texi:1707 msgid "Compress build logs according to @var{type}, one of @code{gzip}, @code{bzip2}, or @code{none}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1694 -msgid "Unless @option{--lose-logs} is used, all the build logs are kept in the @var{localstatedir}. To save space, the daemon automatically compresses them with Bzip2 by default." +#: guix-git/doc/guix.texi:1711 +msgid "Unless @option{--lose-logs} is used, all the build logs are kept in the @var{localstatedir}. To save space, the daemon automatically compresses them with gzip by default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1695 +#: guix-git/doc/guix.texi:1712 #, no-wrap msgid "--discover[=yes|no]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1698 guix-git/doc/guix.texi:16563 +#: guix-git/doc/guix.texi:1715 guix-git/doc/guix.texi:16920 msgid "Whether to discover substitute servers on the local network using mDNS and DNS-SD." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1701 +#: guix-git/doc/guix.texi:1718 msgid "This feature is still experimental. However, here are a few considerations." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1705 +#: guix-git/doc/guix.texi:1722 msgid "It might be faster/less expensive than fetching from remote servers;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1708 +#: guix-git/doc/guix.texi:1725 msgid "There are no security risks, only genuine substitutes will be used (@pxref{Substitute Authentication});" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1712 +#: guix-git/doc/guix.texi:1729 msgid "An attacker advertising @command{guix publish} on your LAN cannot serve you malicious binaries, but they can learn what software you’re installing;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1715 +#: guix-git/doc/guix.texi:1732 msgid "Servers may serve substitute over HTTP, unencrypted, so anyone on the LAN can see what software you’re installing." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1719 +#: guix-git/doc/guix.texi:1736 msgid "It is also possible to enable or disable substitute server discovery at run-time by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1723 +#: guix-git/doc/guix.texi:1740 #, no-wrap msgid "" "herd discover guix-daemon on\n" @@ -6925,237 +7003,237 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1725 +#: guix-git/doc/guix.texi:1742 #, no-wrap msgid "--disable-deduplication" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1726 guix-git/doc/guix.texi:4326 +#: guix-git/doc/guix.texi:1743 guix-git/doc/guix.texi:4344 #, no-wrap msgid "deduplication" msgstr "중복" #. type: table -#: guix-git/doc/guix.texi:1728 +#: guix-git/doc/guix.texi:1745 msgid "Disable automatic file ``deduplication'' in the store." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1735 +#: guix-git/doc/guix.texi:1752 msgid "By default, files added to the store are automatically ``deduplicated'': if a newly added file is identical to another one found in the store, the daemon makes the new file a hard link to the other file. This can noticeably reduce disk usage, at the expense of slightly increased input/output load at the end of a build process. This option disables this optimization." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1736 +#: guix-git/doc/guix.texi:1753 #, no-wrap msgid "--gc-keep-outputs[=yes|no]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1739 +#: guix-git/doc/guix.texi:1756 msgid "Tell whether the garbage collector (GC) must keep outputs of live derivations." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1740 guix-git/doc/guix.texi:4139 +#: guix-git/doc/guix.texi:1757 guix-git/doc/guix.texi:4157 #, no-wrap msgid "GC roots" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1741 guix-git/doc/guix.texi:4140 +#: guix-git/doc/guix.texi:1758 guix-git/doc/guix.texi:4158 #, no-wrap msgid "garbage collector roots" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1747 +#: guix-git/doc/guix.texi:1764 msgid "When set to @code{yes}, the GC will keep the outputs of any live derivation available in the store---the @file{.drv} files. The default is @code{no}, meaning that derivation outputs are kept only if they are reachable from a GC root. @xref{Invoking guix gc}, for more on GC roots." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1748 +#: guix-git/doc/guix.texi:1765 #, no-wrap msgid "--gc-keep-derivations[=yes|no]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1751 +#: guix-git/doc/guix.texi:1768 msgid "Tell whether the garbage collector (GC) must keep derivations corresponding to live outputs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1757 +#: guix-git/doc/guix.texi:1774 msgid "When set to @code{yes}, as is the case by default, the GC keeps derivations---i.e., @file{.drv} files---as long as at least one of their outputs is live. This allows users to keep track of the origins of items in their store. Setting it to @code{no} saves a bit of disk space." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1766 +#: guix-git/doc/guix.texi:1783 msgid "In this way, setting @option{--gc-keep-derivations} to @code{yes} causes liveness to flow from outputs to derivations, and setting @option{--gc-keep-outputs} to @code{yes} causes liveness to flow from derivations to outputs. When both are set to @code{yes}, the effect is to keep all the build prerequisites (the sources, compiler, libraries, and other build-time tools) of live objects in the store, regardless of whether these prerequisites are reachable from a GC root. This is convenient for developers since it saves rebuilds or downloads." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1767 +#: guix-git/doc/guix.texi:1784 #, no-wrap msgid "--impersonate-linux-2.6" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1770 +#: guix-git/doc/guix.texi:1787 msgid "On Linux-based systems, impersonate Linux 2.6. This means that the kernel's @command{uname} system call will report 2.6 as the release number." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1773 +#: guix-git/doc/guix.texi:1790 msgid "This might be helpful to build programs that (usually wrongfully) depend on the kernel version number." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1774 +#: guix-git/doc/guix.texi:1791 #, no-wrap msgid "--lose-logs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1777 +#: guix-git/doc/guix.texi:1794 msgid "Do not keep build logs. By default they are kept under @file{@var{localstatedir}/guix/log}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1778 guix-git/doc/guix.texi:4567 -#: guix-git/doc/guix.texi:5846 guix-git/doc/guix.texi:6229 -#: guix-git/doc/guix.texi:6629 guix-git/doc/guix.texi:11505 -#: guix-git/doc/guix.texi:13187 guix-git/doc/guix.texi:13452 -#: guix-git/doc/guix.texi:14129 guix-git/doc/guix.texi:34442 -#: guix-git/doc/guix.texi:35251 +#: guix-git/doc/guix.texi:1795 guix-git/doc/guix.texi:4585 +#: guix-git/doc/guix.texi:5859 guix-git/doc/guix.texi:6272 +#: guix-git/doc/guix.texi:6672 guix-git/doc/guix.texi:11819 +#: guix-git/doc/guix.texi:13544 guix-git/doc/guix.texi:13809 +#: guix-git/doc/guix.texi:14486 guix-git/doc/guix.texi:34881 +#: guix-git/doc/guix.texi:35695 #, no-wrap msgid "--system=@var{system}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1782 +#: guix-git/doc/guix.texi:1799 msgid "Assume @var{system} as the current system type. By default it is the architecture/kernel pair found at configure time, such as @code{x86_64-linux}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1783 guix-git/doc/guix.texi:10747 +#: guix-git/doc/guix.texi:1800 guix-git/doc/guix.texi:11061 #, no-wrap msgid "--listen=@var{endpoint}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1788 +#: guix-git/doc/guix.texi:1805 msgid "Listen for connections on @var{endpoint}. @var{endpoint} is interpreted as the file name of a Unix-domain socket if it starts with @code{/} (slash sign). Otherwise, @var{endpoint} is interpreted as a host name or host name and port to listen to. Here are a few examples:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1790 +#: guix-git/doc/guix.texi:1807 #, no-wrap msgid "--listen=/gnu/var/daemon" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1793 +#: guix-git/doc/guix.texi:1810 msgid "Listen for connections on the @file{/gnu/var/daemon} Unix-domain socket, creating it if needed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1794 +#: guix-git/doc/guix.texi:1811 #, no-wrap msgid "--listen=localhost" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1795 guix-git/doc/guix.texi:9421 +#: guix-git/doc/guix.texi:1812 guix-git/doc/guix.texi:9735 #, no-wrap msgid "daemon, remote access" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1796 guix-git/doc/guix.texi:9422 +#: guix-git/doc/guix.texi:1813 guix-git/doc/guix.texi:9736 #, no-wrap msgid "remote access to the daemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1797 guix-git/doc/guix.texi:9423 +#: guix-git/doc/guix.texi:1814 guix-git/doc/guix.texi:9737 #, no-wrap msgid "daemon, cluster setup" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1798 guix-git/doc/guix.texi:9424 +#: guix-git/doc/guix.texi:1815 guix-git/doc/guix.texi:9738 #, no-wrap msgid "clusters, daemon setup" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1801 +#: guix-git/doc/guix.texi:1818 msgid "Listen for TCP connections on the network interface corresponding to @code{localhost}, on port 44146." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1802 +#: guix-git/doc/guix.texi:1819 #, no-wrap msgid "--listen=128.0.0.42:1234" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1805 +#: guix-git/doc/guix.texi:1822 msgid "Listen for TCP connections on the network interface corresponding to @code{128.0.0.42}, on port 1234." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1812 +#: guix-git/doc/guix.texi:1829 msgid "This option can be repeated multiple times, in which case @command{guix-daemon} accepts connections on all the specified endpoints. Users can tell client commands what endpoint to connect to by setting the @env{GUIX_DAEMON_SOCKET} environment variable (@pxref{The Store, @env{GUIX_DAEMON_SOCKET}})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:1819 +#: guix-git/doc/guix.texi:1836 msgid "The daemon protocol is @emph{unauthenticated and unencrypted}. Using @option{--listen=@var{host}} is suitable on local networks, such as clusters, where only trusted nodes may connect to the build daemon. In other cases where remote access to the daemon is needed, we recommend using Unix-domain sockets along with SSH." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1824 +#: guix-git/doc/guix.texi:1841 msgid "When @option{--listen} is omitted, @command{guix-daemon} listens for connections on the Unix-domain socket located at @file{@var{localstatedir}/guix/daemon-socket/socket}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1834 +#: guix-git/doc/guix.texi:1851 msgid "When using Guix on top of GNU/Linux distribution other than Guix System---a so-called @dfn{foreign distro}---a few additional steps are needed to get everything in place. Here are some of them." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:1838 +#: guix-git/doc/guix.texi:1855 msgid "locales-and-locpath" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1838 +#: guix-git/doc/guix.texi:1855 #, no-wrap msgid "locales, when not on Guix System" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:1839 guix-git/doc/guix.texi:15770 +#: guix-git/doc/guix.texi:1856 guix-git/doc/guix.texi:16127 #, no-wrap msgid "LOCPATH" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:1840 +#: guix-git/doc/guix.texi:1857 #, no-wrap msgid "GUIX_LOCPATH" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1845 +#: guix-git/doc/guix.texi:1862 msgid "Packages installed @i{via} Guix will not use the locale data of the host system. Instead, you must first install one of the locale packages available with Guix and then define the @env{GUIX_LOCPATH} environment variable:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1849 +#: guix-git/doc/guix.texi:1866 #, no-wrap msgid "" "$ guix install glibc-locales\n" @@ -7163,132 +7241,132 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1855 +#: guix-git/doc/guix.texi:1872 msgid "Note that the @code{glibc-locales} package contains data for all the locales supported by the GNU@tie{}libc and weighs in at around 917@tie{}MiB@. Alternatively, the @code{glibc-utf8-locales} is smaller but limited to a few UTF-8 locales." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1859 +#: guix-git/doc/guix.texi:1876 msgid "The @env{GUIX_LOCPATH} variable plays a role similar to @env{LOCPATH} (@pxref{Locale Names, @env{LOCPATH},, libc, The GNU C Library Reference Manual}). There are two important differences though:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1866 +#: guix-git/doc/guix.texi:1883 msgid "@env{GUIX_LOCPATH} is honored only by the libc in Guix, and not by the libc provided by foreign distros. Thus, using @env{GUIX_LOCPATH} allows you to make sure the programs of the foreign distro will not end up loading incompatible locale data." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1873 +#: guix-git/doc/guix.texi:1890 msgid "libc suffixes each entry of @env{GUIX_LOCPATH} with @code{/X.Y}, where @code{X.Y} is the libc version---e.g., @code{2.22}. This means that, should your Guix profile contain a mixture of programs linked against different libc version, each libc version will only try to load locale data in the right format." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1877 +#: guix-git/doc/guix.texi:1894 msgid "This is important because the locale data format used by different libc versions may be incompatible." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1880 +#: guix-git/doc/guix.texi:1897 #, no-wrap msgid "name service switch, glibc" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1881 +#: guix-git/doc/guix.texi:1898 #, no-wrap msgid "NSS (name service switch), glibc" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1882 +#: guix-git/doc/guix.texi:1899 #, no-wrap msgid "nscd (name service caching daemon)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1883 +#: guix-git/doc/guix.texi:1900 #, no-wrap msgid "name service caching daemon (nscd)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1890 +#: guix-git/doc/guix.texi:1907 msgid "When using Guix on a foreign distro, we @emph{strongly recommend} that the system run the GNU C library's @dfn{name service cache daemon}, @command{nscd}, which should be listening on the @file{/var/run/nscd/socket} socket. Failing to do that, applications installed with Guix may fail to look up host names or user accounts, or may even crash. The next paragraphs explain why." msgstr "" #. type: file{#1} -#: guix-git/doc/guix.texi:1891 +#: guix-git/doc/guix.texi:1908 #, no-wrap msgid "nsswitch.conf" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1896 +#: guix-git/doc/guix.texi:1913 msgid "The GNU C library implements a @dfn{name service switch} (NSS), which is an extensible mechanism for ``name lookups'' in general: host name resolution, user accounts, and more (@pxref{Name Service Switch,,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1897 +#: guix-git/doc/guix.texi:1914 #, no-wrap msgid "Network information service (NIS)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1898 +#: guix-git/doc/guix.texi:1915 #, no-wrap msgid "NIS (Network information service)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1907 +#: guix-git/doc/guix.texi:1924 msgid "Being extensible, the NSS supports @dfn{plugins}, which provide new name lookup implementations: for example, the @code{nss-mdns} plugin allow resolution of @code{.local} host names, the @code{nis} plugin allows user account lookup using the Network information service (NIS), and so on. These extra ``lookup services'' are configured system-wide in @file{/etc/nsswitch.conf}, and all the programs running on the system honor those settings (@pxref{NSS Configuration File,,, libc, The GNU C Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1917 +#: guix-git/doc/guix.texi:1934 msgid "When they perform a name lookup---for instance by calling the @code{getaddrinfo} function in C---applications first try to connect to the nscd; on success, nscd performs name lookups on their behalf. If the nscd is not running, then they perform the name lookup by themselves, by loading the name lookup services into their own address space and running it. These name lookup services---the @file{libnss_*.so} files---are @code{dlopen}'d, but they may come from the host system's C library, rather than from the C library the application is linked against (the C library coming from Guix)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1922 +#: guix-git/doc/guix.texi:1939 msgid "And this is where the problem is: if your application is linked against Guix's C library (say, glibc 2.24) and tries to load NSS plugins from another C library (say, @code{libnss_mdns.so} for glibc 2.22), it will likely crash or have its name lookups fail unexpectedly." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1927 +#: guix-git/doc/guix.texi:1944 msgid "Running @command{nscd} on the system, among other advantages, eliminates this binary incompatibility problem because those @code{libnss_*.so} files are loaded in the @command{nscd} process, not in applications themselves." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:1928 +#: guix-git/doc/guix.texi:1945 #, no-wrap msgid "X11 Fonts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1938 +#: guix-git/doc/guix.texi:1955 msgid "The majority of graphical applications use Fontconfig to locate and load fonts and perform X11-client-side rendering. The @code{fontconfig} package in Guix looks for fonts in @file{$HOME/.guix-profile} by default. Thus, to allow graphical applications installed with Guix to display fonts, you have to install fonts with Guix as well. Essential font packages include @code{font-ghostscript}, @code{font-dejavu}, and @code{font-gnu-freefont}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1939 +#: guix-git/doc/guix.texi:1956 #, no-wrap msgid "fc-cache" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1940 +#: guix-git/doc/guix.texi:1957 #, no-wrap msgid "font cache" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1944 +#: guix-git/doc/guix.texi:1961 msgid "Once you have installed or removed fonts, or when you notice an application that does not find fonts, you may need to install Fontconfig and to force an update of its font cache by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1948 +#: guix-git/doc/guix.texi:1965 #, no-wrap msgid "" "guix install fontconfig\n" @@ -7296,266 +7374,266 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1956 +#: guix-git/doc/guix.texi:1973 msgid "To display text written in Chinese languages, Japanese, or Korean in graphical applications, consider installing @code{font-adobe-source-han-sans} or @code{font-wqy-zenhei}. The former has multiple outputs, one per language family (@pxref{Packages with Multiple Outputs}). For instance, the following command installs fonts for Chinese languages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1959 +#: guix-git/doc/guix.texi:1976 #, no-wrap msgid "guix install font-adobe-source-han-sans:cn\n" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1961 +#: guix-git/doc/guix.texi:1978 #, no-wrap msgid "xterm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1965 +#: guix-git/doc/guix.texi:1982 msgid "Older programs such as @command{xterm} do not use Fontconfig and instead rely on server-side font rendering. Such programs require to specify a full name of a font using XLFD (X Logical Font Description), like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1968 +#: guix-git/doc/guix.texi:1985 #, no-wrap msgid "-*-dejavu sans-medium-r-normal-*-*-100-*-*-*-*-*-1\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1972 +#: guix-git/doc/guix.texi:1989 msgid "To be able to use such full names for the TrueType fonts installed in your Guix profile, you need to extend the font path of the X server:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1977 +#: guix-git/doc/guix.texi:1994 #, no-wrap msgid "xset +fp $(dirname $(readlink -f ~/.guix-profile/share/fonts/truetype/fonts.dir))\n" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1979 +#: guix-git/doc/guix.texi:1996 #, no-wrap msgid "xlsfonts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1982 +#: guix-git/doc/guix.texi:1999 msgid "After that, you can run @code{xlsfonts} (from @code{xlsfonts} package) to make sure your TrueType fonts are listed there." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1986 guix-git/doc/guix.texi:34161 +#: guix-git/doc/guix.texi:2003 guix-git/doc/guix.texi:34600 #, no-wrap msgid "nss-certs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1989 +#: guix-git/doc/guix.texi:2006 msgid "The @code{nss-certs} package provides X.509 certificates, which allow programs to authenticate Web servers accessed over HTTPS." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1994 +#: guix-git/doc/guix.texi:2011 msgid "When using Guix on a foreign distro, you can install this package and define the relevant environment variables so that packages know where to look for certificates. @xref{X.509 Certificates}, for detailed information." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1997 +#: guix-git/doc/guix.texi:2014 #, no-wrap msgid "emacs" msgstr "이맥스" #. type: Plain text -#: guix-git/doc/guix.texi:2003 +#: guix-git/doc/guix.texi:2020 msgid "When you install Emacs packages with Guix, the Elisp files are placed under the @file{share/emacs/site-lisp/} directory of the profile in which they are installed. The Elisp libraries are made available to Emacs through the @env{EMACSLOADPATH} environment variable, which is set when installing Emacs itself." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2010 +#: guix-git/doc/guix.texi:2027 msgid "Additionally, autoload definitions are automatically evaluated at the initialization of Emacs, by the Guix-specific @code{guix-emacs-autoload-packages} procedure. If, for some reason, you want to avoid auto-loading the Emacs packages installed with Guix, you can do so by running Emacs with the @option{--no-site-file} option (@pxref{Init File,,, emacs, The GNU Emacs Manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2015 +#: guix-git/doc/guix.texi:2032 #, no-wrap msgid "Upgrading Guix, on a foreign distro" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2018 +#: guix-git/doc/guix.texi:2035 msgid "To upgrade Guix, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2021 guix-git/doc/guix.texi:2879 +#: guix-git/doc/guix.texi:2038 guix-git/doc/guix.texi:2896 #, no-wrap msgid "guix pull\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2024 +#: guix-git/doc/guix.texi:2041 msgid "@xref{Invoking guix pull}, for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2025 +#: guix-git/doc/guix.texi:2042 #, no-wrap msgid "upgrading Guix for the root user, on a foreign distro" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2026 +#: guix-git/doc/guix.texi:2043 #, no-wrap msgid "upgrading the Guix daemon, on a foreign distro" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2027 +#: guix-git/doc/guix.texi:2044 #, no-wrap msgid "@command{guix pull} for the root user, on a foreign distro" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2030 +#: guix-git/doc/guix.texi:2047 msgid "On a foreign distro, you can upgrade the build daemon by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2033 +#: guix-git/doc/guix.texi:2050 #, no-wrap msgid "sudo -i guix pull\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2038 +#: guix-git/doc/guix.texi:2055 msgid "followed by (assuming your distro uses the systemd service management tool):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2041 +#: guix-git/doc/guix.texi:2058 #, no-wrap msgid "systemctl restart guix-daemon.service\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2045 +#: guix-git/doc/guix.texi:2062 msgid "On Guix System, upgrading the daemon is achieved by reconfiguring the system (@pxref{Invoking guix system, @code{guix system reconfigure}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2052 +#: guix-git/doc/guix.texi:2069 #, no-wrap msgid "installing Guix System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2053 +#: guix-git/doc/guix.texi:2070 #, no-wrap msgid "Guix System, installation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2058 +#: guix-git/doc/guix.texi:2075 msgid "This section explains how to install Guix System on a machine. Guix, as a package manager, can also be installed on top of a running GNU/Linux system, @pxref{Installation}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2067 +#: guix-git/doc/guix.texi:2084 msgid "You are reading this documentation with an Info reader. For details on how to use it, hit the @key{RET} key (``return'' or ``enter'') on the link that follows: @pxref{Top, Info reader,, info-stnd, Stand-alone GNU Info}. Hit @kbd{l} afterwards to come back here." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2070 +#: guix-git/doc/guix.texi:2087 msgid "Alternatively, run @command{info info} in another tty to keep the manual available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2091 +#: guix-git/doc/guix.texi:2108 msgid "We consider Guix System to be ready for a wide range of ``desktop'' and server use cases. The reliability guarantees it provides---transactional upgrades and rollbacks, reproducibility---make it a solid foundation." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2094 +#: guix-git/doc/guix.texi:2111 msgid "Nevertheless, before you proceed with the installation, be aware of the following noteworthy limitations applicable to version @value{VERSION}:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2099 +#: guix-git/doc/guix.texi:2116 msgid "More and more system services are provided (@pxref{Services}), but some may be missing." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2104 +#: guix-git/doc/guix.texi:2121 msgid "GNOME, Xfce, LXDE, and Enlightenment are available (@pxref{Desktop Services}), as well as a number of X11 window managers. However, KDE is currently missing." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2109 +#: guix-git/doc/guix.texi:2126 msgid "More than a disclaimer, this is an invitation to report issues (and success stories!), and to join us in improving it. @xref{Contributing}, for more info." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2114 +#: guix-git/doc/guix.texi:2131 #, no-wrap msgid "hardware support on Guix System" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2123 +#: guix-git/doc/guix.texi:2140 msgid "GNU@tie{}Guix focuses on respecting the user's computing freedom. It builds around the kernel Linux-libre, which means that only hardware for which free software drivers and firmware exist is supported. Nowadays, a wide range of off-the-shelf hardware is supported on GNU/Linux-libre---from keyboards to graphics cards to scanners and Ethernet controllers. Unfortunately, there are still areas where hardware vendors deny users control over their own computing, and such hardware is not supported on Guix System." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2124 +#: guix-git/doc/guix.texi:2141 #, no-wrap msgid "WiFi, hardware support" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2133 +#: guix-git/doc/guix.texi:2150 msgid "One of the main areas where free drivers or firmware are lacking is WiFi devices. WiFi devices known to work include those using Atheros chips (AR9271 and AR7010), which corresponds to the @code{ath9k} Linux-libre driver, and those using Broadcom/AirForce chips (BCM43xx with Wireless-Core Revision 5), which corresponds to the @code{b43-open} Linux-libre driver. Free firmware exists for both and is available out-of-the-box on Guix System, as part of @code{%base-firmware} (@pxref{operating-system Reference, @code{firmware}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2134 +#: guix-git/doc/guix.texi:2151 #, no-wrap msgid "RYF, Respects Your Freedom" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2140 +#: guix-git/doc/guix.texi:2157 msgid "The @uref{https://www.fsf.org/, Free Software Foundation} runs @uref{https://www.fsf.org/ryf, @dfn{Respects Your Freedom}} (RYF), a certification program for hardware products that respect your freedom and your privacy and ensure that you have control over your device. We encourage you to check the list of RYF-certified devices." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2144 +#: guix-git/doc/guix.texi:2161 msgid "Another useful resource is the @uref{https://www.h-node.org/, H-Node} web site. It contains a catalog of hardware devices with information about their support in GNU/Linux." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2153 +#: guix-git/doc/guix.texi:2170 msgid "An ISO-9660 installation image that can be written to a USB stick or burnt to a DVD can be downloaded from @indicateurl{@value{BASE-URL}/guix-system-install-@value{VERSION}.x86_64-linux.iso}, where you can replace @code{x86_64-linux} with one of:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2157 +#: guix-git/doc/guix.texi:2174 msgid "for a GNU/Linux system on Intel/AMD-compatible 64-bit CPUs;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2160 +#: guix-git/doc/guix.texi:2177 msgid "for a 32-bit GNU/Linux system on Intel-compatible CPUs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2165 +#: guix-git/doc/guix.texi:2182 msgid "Make sure to download the associated @file{.sig} file and to verify the authenticity of the image against it, along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2169 +#: guix-git/doc/guix.texi:2186 #, no-wrap msgid "" "$ wget @value{BASE-URL}/guix-system-install-@value{VERSION}.x86_64-linux.iso.sig\n" @@ -7563,7 +7641,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2177 +#: guix-git/doc/guix.texi:2194 #, no-wrap msgid "" "$ wget @value{OPENPGP-SIGNING-KEY-URL} \\\n" @@ -7571,23 +7649,23 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2189 +#: guix-git/doc/guix.texi:2206 msgid "This image contains the tools necessary for an installation. It is meant to be copied @emph{as is} to a large-enough USB stick or DVD." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2190 +#: guix-git/doc/guix.texi:2207 #, no-wrap msgid "Copying to a USB Stick" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2195 +#: guix-git/doc/guix.texi:2212 msgid "Insert a USB stick of 1@tie{}GiB or more into your machine, and determine its device name. Assuming that the USB stick is known as @file{/dev/sdX}, copy the image with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2199 +#: guix-git/doc/guix.texi:2216 #, no-wrap msgid "" "dd if=guix-system-install-@value{VERSION}.x86_64-linux.iso of=/dev/sdX status=progress\n" @@ -7595,238 +7673,238 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2202 +#: guix-git/doc/guix.texi:2219 msgid "Access to @file{/dev/sdX} usually requires root privileges." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2203 +#: guix-git/doc/guix.texi:2220 #, no-wrap msgid "Burning on a DVD" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2208 +#: guix-git/doc/guix.texi:2225 msgid "Insert a blank DVD into your machine, and determine its device name. Assuming that the DVD drive is known as @file{/dev/srX}, copy the image with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2211 +#: guix-git/doc/guix.texi:2228 #, no-wrap msgid "growisofs -dvd-compat -Z /dev/srX=guix-system-install-@value{VERSION}.x86_64-linux.iso\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2214 +#: guix-git/doc/guix.texi:2231 msgid "Access to @file{/dev/srX} usually requires root privileges." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2215 +#: guix-git/doc/guix.texi:2232 #, no-wrap msgid "Booting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2222 +#: guix-git/doc/guix.texi:2239 msgid "Once this is done, you should be able to reboot the system and boot from the USB stick or DVD@. The latter usually requires you to get in the BIOS or UEFI boot menu, where you can choose to boot from the USB stick. In order to boot from Libreboot, switch to the command mode by pressing the @kbd{c} key and type @command{search_grub usb}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2225 +#: guix-git/doc/guix.texi:2242 msgid "@xref{Installing Guix in a VM}, if, instead, you would like to install Guix System in a virtual machine (VM)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2235 +#: guix-git/doc/guix.texi:2252 msgid "Once you have booted, you can use the guided graphical installer, which makes it easy to get started (@pxref{Guided Graphical Installation}). Alternatively, if you are already familiar with GNU/Linux and if you want more control than what the graphical installer provides, you can choose the ``manual'' installation process (@pxref{Manual Installation})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2243 +#: guix-git/doc/guix.texi:2260 msgid "The graphical installer is available on TTY1. You can obtain root shells on TTYs 3 to 6 by hitting @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4}, etc. TTY2 shows this documentation and you can reach it with @kbd{ctrl-alt-f2}. Documentation is browsable using the Info reader commands (@pxref{Top,,, info-stnd, Stand-alone GNU Info}). The installation system runs the GPM mouse daemon, which allows you to select text with the left mouse button and to paste it with the middle button." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2248 +#: guix-git/doc/guix.texi:2265 msgid "Installation requires access to the Internet so that any missing dependencies of your system configuration can be downloaded. See the ``Networking'' section below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2255 +#: guix-git/doc/guix.texi:2272 msgid "The graphical installer is a text-based user interface. It will guide you, with dialog boxes, through the steps needed to install GNU@tie{}Guix System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2260 +#: guix-git/doc/guix.texi:2277 msgid "The first dialog boxes allow you to set up the system as you use it during the installation: you can choose the language, keyboard layout, and set up networking, which will be used during the installation. The image below shows the networking dialog." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2262 +#: guix-git/doc/guix.texi:2279 msgid "@image{images/installer-network,5in,, networking setup with the graphical installer}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2267 +#: guix-git/doc/guix.texi:2284 msgid "Later steps allow you to partition your hard disk, as shown in the image below, to choose whether or not to use encrypted file systems, to enter the host name and root password, and to create an additional account, among other things." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2269 +#: guix-git/doc/guix.texi:2286 msgid "@image{images/installer-partitions,5in,, partitioning with the graphical installer}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2272 +#: guix-git/doc/guix.texi:2289 msgid "Note that, at any time, the installer allows you to exit the current installation step and resume at a previous step, as show in the image below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2274 +#: guix-git/doc/guix.texi:2291 msgid "@image{images/installer-resume,5in,, resuming the installation process}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2279 +#: guix-git/doc/guix.texi:2296 msgid "Once you're done, the installer produces an operating system configuration and displays it (@pxref{Using the Configuration System}). At that point you can hit ``OK'' and installation will proceed. On success, you can reboot into the new system and enjoy. @xref{After System Installation}, for what's next!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2289 +#: guix-git/doc/guix.texi:2306 msgid "This section describes how you would ``manually'' install GNU@tie{}Guix System on your machine. This option requires familiarity with GNU/Linux, with the shell, and with common administration tools. If you think this is not for you, consider using the guided graphical installer (@pxref{Guided Graphical Installation})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2295 +#: guix-git/doc/guix.texi:2312 msgid "The installation system provides root shells on TTYs 3 to 6; press @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4}, and so on to reach them. It includes many common tools needed to install the system. But it is also a full-blown Guix System, which means that you can install additional packages, should you need it, using @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:2302 +#: guix-git/doc/guix.texi:2319 #, no-wrap msgid "Keyboard Layout, Networking, and Partitioning" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2307 +#: guix-git/doc/guix.texi:2324 msgid "Before you can install the system, you may want to adjust the keyboard layout, set up networking, and partition your target hard disk. This section will guide you through this." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2310 guix-git/doc/guix.texi:15584 +#: guix-git/doc/guix.texi:2327 guix-git/doc/guix.texi:15941 #, no-wrap msgid "keyboard layout" msgstr "키보드 배열" #. type: Plain text -#: guix-git/doc/guix.texi:2314 +#: guix-git/doc/guix.texi:2331 msgid "The installation image uses the US qwerty keyboard layout. If you want to change it, you can use the @command{loadkeys} command. For example, the following command selects the Dvorak keyboard layout:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2317 +#: guix-git/doc/guix.texi:2334 #, no-wrap msgid "loadkeys dvorak\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2322 +#: guix-git/doc/guix.texi:2339 msgid "See the files under @file{/run/current-system/profile/share/keymaps} for a list of available keyboard layouts. Run @command{man loadkeys} for more information." msgstr "" #. type: subsubsection -#: guix-git/doc/guix.texi:2323 +#: guix-git/doc/guix.texi:2340 #, no-wrap msgid "Networking" msgstr "네트워킹" #. type: Plain text -#: guix-git/doc/guix.texi:2326 +#: guix-git/doc/guix.texi:2343 msgid "Run the following command to see what your network interfaces are called:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2329 +#: guix-git/doc/guix.texi:2346 #, no-wrap msgid "ifconfig -a\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2333 guix-git/doc/guix.texi:2355 +#: guix-git/doc/guix.texi:2350 guix-git/doc/guix.texi:2372 msgid "@dots{} or, using the GNU/Linux-specific @command{ip} command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2336 +#: guix-git/doc/guix.texi:2353 #, no-wrap msgid "ip address\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2343 +#: guix-git/doc/guix.texi:2360 msgid "Wired interfaces have a name starting with @samp{e}; for example, the interface corresponding to the first on-board Ethernet controller is called @samp{eno1}. Wireless interfaces have a name starting with @samp{w}, like @samp{w1p2s0}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:2345 +#: guix-git/doc/guix.texi:2362 #, no-wrap msgid "Wired connection" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2348 +#: guix-git/doc/guix.texi:2365 msgid "To configure a wired network run the following command, substituting @var{interface} with the name of the wired interface you want to use." msgstr "" #. type: example -#: guix-git/doc/guix.texi:2351 +#: guix-git/doc/guix.texi:2368 #, no-wrap msgid "ifconfig @var{interface} up\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2358 +#: guix-git/doc/guix.texi:2375 #, no-wrap msgid "ip link set @var{interface} up\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:2360 +#: guix-git/doc/guix.texi:2377 #, no-wrap msgid "Wireless connection" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2361 guix-git/doc/guix.texi:17484 +#: guix-git/doc/guix.texi:2378 guix-git/doc/guix.texi:17846 #, no-wrap msgid "wireless" msgstr "무선" #. type: cindex -#: guix-git/doc/guix.texi:2362 guix-git/doc/guix.texi:17485 +#: guix-git/doc/guix.texi:2379 guix-git/doc/guix.texi:17847 #, no-wrap msgid "WiFi" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2367 +#: guix-git/doc/guix.texi:2384 msgid "To configure wireless networking, you can create a configuration file for the @command{wpa_supplicant} configuration tool (its location is not important) using one of the available text editors such as @command{nano}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2370 +#: guix-git/doc/guix.texi:2387 #, no-wrap msgid "nano wpa_supplicant.conf\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2375 +#: guix-git/doc/guix.texi:2392 msgid "As an example, the following stanza can go to this file and will work for many wireless networks, provided you give the actual SSID and passphrase for the network you are connecting to:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2382 +#: guix-git/doc/guix.texi:2399 #, no-wrap msgid "" "network=@{\n" @@ -7837,229 +7915,229 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2387 +#: guix-git/doc/guix.texi:2404 msgid "Start the wireless service and run it in the background with the following command (substitute @var{interface} with the name of the network interface you want to use):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2390 +#: guix-git/doc/guix.texi:2407 #, no-wrap msgid "wpa_supplicant -c wpa_supplicant.conf -i @var{interface} -B\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2393 +#: guix-git/doc/guix.texi:2410 msgid "Run @command{man wpa_supplicant} for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2395 +#: guix-git/doc/guix.texi:2412 #, no-wrap msgid "DHCP" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2398 +#: guix-git/doc/guix.texi:2415 msgid "At this point, you need to acquire an IP address. On a network where IP addresses are automatically assigned @i{via} DHCP, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2401 +#: guix-git/doc/guix.texi:2418 #, no-wrap msgid "dhclient -v @var{interface}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2404 +#: guix-git/doc/guix.texi:2421 msgid "Try to ping a server to see if networking is up and running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2407 +#: guix-git/doc/guix.texi:2424 #, no-wrap msgid "ping -c 3 gnu.org\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2411 +#: guix-git/doc/guix.texi:2428 msgid "Setting up network access is almost always a requirement because the image does not contain all the software and tools that may be needed." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2412 +#: guix-git/doc/guix.texi:2429 #, no-wrap msgid "proxy, during system installation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2415 +#: guix-git/doc/guix.texi:2432 msgid "If you need HTTP and HTTPS access to go through a proxy, run the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2418 +#: guix-git/doc/guix.texi:2435 #, no-wrap msgid "herd set-http-proxy guix-daemon @var{URL}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2423 +#: guix-git/doc/guix.texi:2440 msgid "where @var{URL} is the proxy URL, for example @code{http://example.org:8118}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2424 +#: guix-git/doc/guix.texi:2441 #, no-wrap msgid "installing over SSH" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2427 +#: guix-git/doc/guix.texi:2444 msgid "If you want to, you can continue the installation remotely by starting an SSH server:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2430 +#: guix-git/doc/guix.texi:2447 #, no-wrap msgid "herd start ssh-daemon\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2434 +#: guix-git/doc/guix.texi:2451 msgid "Make sure to either set a password with @command{passwd}, or configure OpenSSH public key authentication before logging in." msgstr "" #. type: subsubsection -#: guix-git/doc/guix.texi:2435 +#: guix-git/doc/guix.texi:2452 #, no-wrap msgid "Disk Partitioning" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2439 +#: guix-git/doc/guix.texi:2456 msgid "Unless this has already been done, the next step is to partition, and then format the target partition(s)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2444 +#: guix-git/doc/guix.texi:2461 msgid "The installation image includes several partitioning tools, including Parted (@pxref{Overview,,, parted, GNU Parted User Manual}), @command{fdisk}, and @command{cfdisk}. Run it and set up your disk with the partition layout you want:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2447 +#: guix-git/doc/guix.texi:2464 #, no-wrap msgid "cfdisk\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2453 +#: guix-git/doc/guix.texi:2470 msgid "If your disk uses the GUID Partition Table (GPT) format and you plan to install BIOS-based GRUB (which is the default), make sure a BIOS Boot Partition is available (@pxref{BIOS installation,,, grub, GNU GRUB manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2454 +#: guix-git/doc/guix.texi:2471 #, no-wrap msgid "EFI, installation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2455 +#: guix-git/doc/guix.texi:2472 #, no-wrap msgid "UEFI, installation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2456 +#: guix-git/doc/guix.texi:2473 #, no-wrap msgid "ESP, EFI system partition" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2460 +#: guix-git/doc/guix.texi:2477 msgid "If you instead wish to use EFI-based GRUB, a FAT32 @dfn{EFI System Partition} (ESP) is required. This partition can be mounted at @file{/boot/efi} for instance and must have the @code{esp} flag set. E.g., for @command{parted}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2463 +#: guix-git/doc/guix.texi:2480 #, no-wrap msgid "parted /dev/sda set 1 esp on\n" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:2466 guix-git/doc/guix.texi:34580 +#: guix-git/doc/guix.texi:2483 guix-git/doc/guix.texi:35019 #, no-wrap msgid "grub-bootloader" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:2467 guix-git/doc/guix.texi:34574 +#: guix-git/doc/guix.texi:2484 guix-git/doc/guix.texi:35013 #, no-wrap msgid "grub-efi-bootloader" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2474 +#: guix-git/doc/guix.texi:2491 msgid "Unsure whether to use EFI- or BIOS-based GRUB? If the directory @file{/sys/firmware/efi} exists in the installation image, then you should probably perform an EFI installation, using @code{grub-efi-bootloader}. Otherwise you should use the BIOS-based GRUB, known as @code{grub-bootloader}. @xref{Bootloader Configuration}, for more info on bootloaders." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2482 +#: guix-git/doc/guix.texi:2499 msgid "Once you are done partitioning the target hard disk drive, you have to create a file system on the relevant partition(s)@footnote{Currently Guix System only supports ext4, btrfs, JFS, F2FS, and XFS file systems. In particular, code that reads file system UUIDs and labels only works for these file system types.}. For the ESP, if you have one and assuming it is @file{/dev/sda1}, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2485 +#: guix-git/doc/guix.texi:2502 #, no-wrap msgid "mkfs.fat -F32 /dev/sda1\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2492 +#: guix-git/doc/guix.texi:2509 msgid "For the root file system, ext4 is the most widely used format. Other file systems, such as Btrfs, support compression, which is reported to nicely complement file deduplication that the daemon performs independently of the file system (@pxref{Invoking guix-daemon, deduplication})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2499 +#: guix-git/doc/guix.texi:2516 msgid "Preferably, assign file systems a label so that you can easily and reliably refer to them in @code{file-system} declarations (@pxref{File Systems}). This is typically done using the @code{-L} option of @command{mkfs.ext4} and related commands. So, assuming the target root partition lives at @file{/dev/sda2}, a file system with the label @code{my-root} can be created with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2502 +#: guix-git/doc/guix.texi:2519 #, no-wrap msgid "mkfs.ext4 -L my-root /dev/sda2\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2504 guix-git/doc/guix.texi:14475 +#: guix-git/doc/guix.texi:2521 guix-git/doc/guix.texi:14832 #, no-wrap msgid "encrypted disk" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2509 +#: guix-git/doc/guix.texi:2526 msgid "If you are instead planning to encrypt the root partition, you can use the Cryptsetup/LUKS utilities to do that (see @inlinefmtifelse{html, @uref{https://linux.die.net/man/8/cryptsetup, @code{man cryptsetup}}, @code{man cryptsetup}} for more information)." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2510 guix-git/doc/guix.texi:5280 -#: guix-git/doc/guix.texi:6489 guix-git/doc/guix.texi:14601 -#: guix-git/doc/guix.texi:21013 guix-git/doc/guix.texi:21020 +#: guix-git/doc/guix.texi:2527 guix-git/doc/guix.texi:5298 +#: guix-git/doc/guix.texi:6532 guix-git/doc/guix.texi:14958 +#: guix-git/doc/guix.texi:21375 guix-git/doc/guix.texi:21382 #, no-wrap msgid "Warning" msgstr "경고" #. type: quotation -#: guix-git/doc/guix.texi:2517 +#: guix-git/doc/guix.texi:2534 msgid "Note that GRUB can unlock LUKS2 devices since version 2.06, but only supports the PBKDF2 key derivation function, which is not the default for @command{cryptsetup luksFormat}. You can check which key derivation function is being used by a device by running @command{cryptsetup luksDump @var{device}}, and looking for the PBKDF field of your keyslots." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2522 +#: guix-git/doc/guix.texi:2539 msgid "Assuming you want to store the root partition on @file{/dev/sda2}, the command sequence to format it as a LUKS2 partition would be along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2527 +#: guix-git/doc/guix.texi:2544 #, no-wrap msgid "" "cryptsetup luksFormat --type luks2 --pbkdf pbkdf2 /dev/sda2\n" @@ -8068,28 +8146,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2532 +#: guix-git/doc/guix.texi:2549 msgid "Once that is done, mount the target file system under @file{/mnt} with a command like (again, assuming @code{my-root} is the label of the root file system):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2535 +#: guix-git/doc/guix.texi:2552 #, no-wrap msgid "mount LABEL=my-root /mnt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2541 +#: guix-git/doc/guix.texi:2558 msgid "Also mount any other file systems you would like to use on the target system relative to this path. If you have opted for @file{/boot/efi} as an EFI mount point for example, mount it at @file{/mnt/boot/efi} now so it is found by @code{guix system init} afterwards." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2545 +#: guix-git/doc/guix.texi:2562 msgid "Finally, if you plan to use one or more swap partitions (@pxref{Swap Space}), make sure to initialize them with @command{mkswap}. Assuming you have one swap partition on @file{/dev/sda3}, you would run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2549 +#: guix-git/doc/guix.texi:2566 #, no-wrap msgid "" "mkswap /dev/sda3\n" @@ -8097,12 +8175,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2557 +#: guix-git/doc/guix.texi:2574 msgid "Alternatively, you may use a swap file. For example, assuming that in the new system you want to use the file @file{/swapfile} as a swap file, you would run@footnote{This example will work for many types of file systems (e.g., ext4). However, for copy-on-write file systems (e.g., btrfs), the required steps may be different. For details, see the manual pages for @command{mkswap} and @command{swapon}.}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2565 +#: guix-git/doc/guix.texi:2582 #, no-wrap msgid "" "# This is 10 GiB of swap space. Adjust \"count\" to change the size.\n" @@ -8114,38 +8192,38 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2570 +#: guix-git/doc/guix.texi:2587 msgid "Note that if you have encrypted the root partition and created a swap file in its file system as described above, then the encryption also protects the swap file, just like any other file in that file system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2576 +#: guix-git/doc/guix.texi:2593 msgid "With the target partitions ready and the target root mounted on @file{/mnt}, we're ready to go. First, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2579 +#: guix-git/doc/guix.texi:2596 #, no-wrap msgid "herd start cow-store /mnt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2586 +#: guix-git/doc/guix.texi:2603 msgid "This makes @file{/gnu/store} copy-on-write, such that packages added to it during the installation phase are written to the target disk on @file{/mnt} rather than kept in memory. This is necessary because the first phase of the @command{guix system init} command (see below) entails downloads or builds to @file{/gnu/store} which, initially, is an in-memory file system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2597 +#: guix-git/doc/guix.texi:2614 msgid "Next, you have to edit a file and provide the declaration of the operating system to be installed. To that end, the installation system comes with three text editors. We recommend GNU nano (@pxref{Top,,, nano, GNU nano Manual}), which supports syntax highlighting and parentheses matching; other editors include mg (an Emacs clone), and nvi (a clone of the original BSD @command{vi} editor). We strongly recommend storing that file on the target root file system, say, as @file{/mnt/etc/config.scm}. Failing to do that, you will have lost your configuration file once you have rebooted into the newly-installed system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2604 +#: guix-git/doc/guix.texi:2621 msgid "@xref{Using the Configuration System}, for an overview of the configuration file. The example configurations discussed in that section are available under @file{/etc/configuration} in the installation image. Thus, to get started with a system configuration providing a graphical display server (a ``desktop'' system), you can run something along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2609 +#: guix-git/doc/guix.texi:2626 #, no-wrap msgid "" "# mkdir /mnt/etc\n" @@ -8154,53 +8232,53 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2613 +#: guix-git/doc/guix.texi:2630 msgid "You should pay attention to what your configuration file contains, and in particular:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2625 +#: guix-git/doc/guix.texi:2642 msgid "Make sure the @code{bootloader-configuration} form refers to the targets you want to install GRUB on. It should mention @code{grub-bootloader} if you are installing GRUB in the legacy way, or @code{grub-efi-bootloader} for newer UEFI systems. For legacy systems, the @code{targets} field contain the names of the devices, like @code{(list \"/dev/sda\")}; for UEFI systems it names the paths to mounted EFI partitions, like @code{(list \"/boot/efi\")}; do make sure the paths are currently mounted and a @code{file-system} entry is specified in your configuration." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2631 +#: guix-git/doc/guix.texi:2648 msgid "Be sure that your file system labels match the value of their respective @code{device} fields in your @code{file-system} configuration, assuming your @code{file-system} configuration uses the @code{file-system-label} procedure in its @code{device} field." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2635 +#: guix-git/doc/guix.texi:2652 msgid "If there are encrypted or RAID partitions, make sure to add a @code{mapped-devices} field to describe them (@pxref{Mapped Devices})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2640 +#: guix-git/doc/guix.texi:2657 msgid "Once you are done preparing the configuration file, the new system must be initialized (remember that the target root file system is mounted under @file{/mnt}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2643 +#: guix-git/doc/guix.texi:2660 #, no-wrap msgid "guix system init /mnt/etc/config.scm /mnt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2650 +#: guix-git/doc/guix.texi:2667 msgid "This copies all the necessary files and installs GRUB on @file{/dev/sdX}, unless you pass the @option{--no-bootloader} option. For more information, @pxref{Invoking guix system}. This command may trigger downloads or builds of missing packages, which can take some time." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2658 +#: guix-git/doc/guix.texi:2675 msgid "Once that command has completed---and hopefully succeeded!---you can run @command{reboot} and boot into the new system. The @code{root} password in the new system is initially empty; other users' passwords need to be initialized by running the @command{passwd} command as @code{root}, unless your configuration specifies otherwise (@pxref{user-account-password, user account passwords}). @xref{After System Installation}, for what's next!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2665 +#: guix-git/doc/guix.texi:2682 msgid "Success, you've now booted into Guix System! From then on, you can update the system whenever you want by running, say:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2669 +#: guix-git/doc/guix.texi:2686 #, no-wrap msgid "" "guix pull\n" @@ -8208,93 +8286,93 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2675 +#: guix-git/doc/guix.texi:2692 msgid "This builds a new system generation with the latest packages and services (@pxref{Invoking guix system}). We recommend doing that regularly so that your system includes the latest security updates (@pxref{Security Updates})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2678 +#: guix-git/doc/guix.texi:2695 #, no-wrap msgid "sudo vs. @command{guix pull}" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2682 +#: guix-git/doc/guix.texi:2699 msgid "Note that @command{sudo guix} runs your user's @command{guix} command and @emph{not} root's, because @command{sudo} leaves @env{PATH} unchanged. To explicitly run root's @command{guix}, type @command{sudo -i guix @dots{}}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2687 +#: guix-git/doc/guix.texi:2704 msgid "The difference matters here, because @command{guix pull} updates the @command{guix} command and package definitions only for the user it is run as. This means that if you choose to use @command{guix system reconfigure} in root's login shell, you'll need to @command{guix pull} separately." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2692 +#: guix-git/doc/guix.texi:2709 msgid "Now, @pxref{Getting Started}, and join us on @code{#guix} on the Libera Chat IRC network or on @email{guix-devel@@gnu.org} to share your experience!" msgstr "" #. type: section -#: guix-git/doc/guix.texi:2695 +#: guix-git/doc/guix.texi:2712 #, no-wrap msgid "Installing Guix in a Virtual Machine" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2697 +#: guix-git/doc/guix.texi:2714 #, no-wrap msgid "virtual machine, Guix System installation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2698 +#: guix-git/doc/guix.texi:2715 #, no-wrap msgid "virtual private server (VPS)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2699 +#: guix-git/doc/guix.texi:2716 #, no-wrap msgid "VPS (virtual private server)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2703 +#: guix-git/doc/guix.texi:2720 msgid "If you'd like to install Guix System in a virtual machine (VM) or on a virtual private server (VPS) rather than on your beloved machine, this section is for you." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2706 +#: guix-git/doc/guix.texi:2723 msgid "To boot a @uref{https://qemu.org/,QEMU} VM for installing Guix System in a disk image, follow these steps:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2711 +#: guix-git/doc/guix.texi:2728 msgid "First, retrieve and decompress the Guix system installation image as described previously (@pxref{USB Stick and DVD Installation})." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2715 +#: guix-git/doc/guix.texi:2732 msgid "Create a disk image that will hold the installed system. To make a qcow2-formatted disk image, use the @command{qemu-img} command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2718 +#: guix-git/doc/guix.texi:2735 #, no-wrap msgid "qemu-img create -f qcow2 guix-system.img 50G\n" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2722 +#: guix-git/doc/guix.texi:2739 msgid "The resulting file will be much smaller than 50 GB (typically less than 1 MB), but it will grow as the virtualized storage device is filled up." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2725 +#: guix-git/doc/guix.texi:2742 msgid "Boot the USB installation image in an VM:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2731 +#: guix-git/doc/guix.texi:2748 #, no-wrap msgid "" "qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \\\n" @@ -8304,115 +8382,115 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2735 +#: guix-git/doc/guix.texi:2752 msgid "@code{-enable-kvm} is optional, but significantly improves performance, @pxref{Running Guix in a VM}." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2739 +#: guix-git/doc/guix.texi:2756 msgid "You're now root in the VM, proceed with the installation process. @xref{Preparing for Installation}, and follow the instructions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2744 +#: guix-git/doc/guix.texi:2761 msgid "Once installation is complete, you can boot the system that's on your @file{guix-system.img} image. @xref{Running Guix in a VM}, for how to do that." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2748 +#: guix-git/doc/guix.texi:2765 #, no-wrap msgid "installation image" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2751 +#: guix-git/doc/guix.texi:2768 msgid "The installation image described above was built using the @command{guix system} command, specifically:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2754 +#: guix-git/doc/guix.texi:2771 #, no-wrap msgid "guix system image -t iso9660 gnu/system/install.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2759 +#: guix-git/doc/guix.texi:2776 msgid "Have a look at @file{gnu/system/install.scm} in the source tree, and see also @ref{Invoking guix system} for more information about the installation image." msgstr "" #. type: section -#: guix-git/doc/guix.texi:2760 +#: guix-git/doc/guix.texi:2777 #, no-wrap msgid "Building the Installation Image for ARM Boards" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2764 +#: guix-git/doc/guix.texi:2781 msgid "Many ARM boards require a specific variant of the @uref{https://www.denx.de/wiki/U-Boot/, U-Boot} bootloader." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2768 +#: guix-git/doc/guix.texi:2785 msgid "If you build a disk image and the bootloader is not available otherwise (on another boot drive etc), it's advisable to build an image that includes the bootloader, specifically:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2771 +#: guix-git/doc/guix.texi:2788 #, no-wrap msgid "guix system image --system=armhf-linux -e '((@@ (gnu system install) os-with-u-boot) (@@ (gnu system install) installation-os) \"A20-OLinuXino-Lime2\")'\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2775 +#: guix-git/doc/guix.texi:2792 msgid "@code{A20-OLinuXino-Lime2} is the name of the board. If you specify an invalid board, a list of possible boards will be printed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2785 +#: guix-git/doc/guix.texi:2802 msgid "Presumably, you've reached this section because either you have installed Guix on top of another distribution (@pxref{Installation}), or you've installed the standalone Guix System (@pxref{System Installation}). It's time for you to get started using Guix and this section aims to help you do that and give you a feel of what it's like." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2789 +#: guix-git/doc/guix.texi:2806 msgid "Guix is about installing software, so probably the first thing you'll want to do is to actually look for software. Let's say you're looking for a text editor, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2792 +#: guix-git/doc/guix.texi:2809 #, no-wrap msgid "guix search text editor\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2799 +#: guix-git/doc/guix.texi:2816 msgid "This command shows you a number of matching @dfn{packages}, each time showing the package's name, version, a description, and additional info. Once you've found out the one you want to use, let's say Emacs (ah ha!), you can go ahead and install it (run this command as a regular user, @emph{no need for root privileges}!):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2802 +#: guix-git/doc/guix.texi:2819 #, no-wrap msgid "guix install emacs\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2804 guix-git/doc/guix.texi:3116 -#: guix-git/doc/guix.texi:3168 +#: guix-git/doc/guix.texi:2821 guix-git/doc/guix.texi:3133 +#: guix-git/doc/guix.texi:3185 #, no-wrap msgid "profile" msgstr "프로파일" #. type: Plain text -#: guix-git/doc/guix.texi:2812 +#: guix-git/doc/guix.texi:2829 msgid "You've installed your first package, congrats! The package is now visible in your default @dfn{profile}, @file{$HOME/.guix-profile}---a profile is a directory containing installed packages. In the process, you've probably noticed that Guix downloaded pre-built binaries; or, if you explicitly chose to @emph{not} use pre-built binaries, then probably Guix is still building software (@pxref{Substitutes}, for more info)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2815 +#: guix-git/doc/guix.texi:2832 msgid "Unless you're using Guix System, the @command{guix install} command must have printed this hint:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2818 +#: guix-git/doc/guix.texi:2835 #, no-wrap msgid "" "hint: Consider setting the necessary environment variables by running:\n" @@ -8420,7 +8498,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2821 +#: guix-git/doc/guix.texi:2838 #, no-wrap msgid "" " GUIX_PROFILE=\"$HOME/.guix-profile\"\n" @@ -8429,77 +8507,77 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2823 +#: guix-git/doc/guix.texi:2840 #, no-wrap msgid "Alternately, see `guix package --search-paths -p \"$HOME/.guix-profile\"'.\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2837 +#: guix-git/doc/guix.texi:2854 msgid "Indeed, you must now tell your shell where @command{emacs} and other programs installed with Guix are to be found. Pasting the two lines above will do just that: it will add @code{$HOME/.guix-profile/bin}---which is where the installed package is---to the @code{PATH} environment variable. You can paste these two lines in your shell so they take effect right away, but more importantly you should add them to @file{~/.bash_profile} (or equivalent file if you do not use Bash) so that environment variables are set next time you spawn a shell. You only need to do this once and other search paths environment variables will be taken care of similarly---e.g., if you eventually install @code{python} and Python libraries, @env{GUIX_PYTHONPATH} will be defined." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2840 +#: guix-git/doc/guix.texi:2857 msgid "You can go on installing packages at your will. To list installed packages, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2843 +#: guix-git/doc/guix.texi:2860 #, no-wrap msgid "guix package --list-installed\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2848 +#: guix-git/doc/guix.texi:2865 msgid "To remove a package, you would unsurprisingly run @command{guix remove}. A distinguishing feature is the ability to @dfn{roll back} any operation you made---installation, removal, upgrade---by simply typing:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2851 +#: guix-git/doc/guix.texi:2868 #, no-wrap msgid "guix package --roll-back\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2856 +#: guix-git/doc/guix.texi:2873 msgid "This is because each operation is in fact a @dfn{transaction} that creates a new @dfn{generation}. These generations and the difference between them can be displayed by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2859 +#: guix-git/doc/guix.texi:2876 #, no-wrap msgid "guix package --list-generations\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2862 +#: guix-git/doc/guix.texi:2879 msgid "Now you know the basics of package management!" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2863 guix-git/doc/guix.texi:2922 +#: guix-git/doc/guix.texi:2880 guix-git/doc/guix.texi:2939 #, no-wrap msgid "Going further" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2871 +#: guix-git/doc/guix.texi:2888 msgid "@xref{Package Management}, for more about package management. You may like @dfn{declarative} package management with @command{guix package --manifest}, managing separate @dfn{profiles} with @option{--profile}, deleting old generations, collecting garbage, and other nifty features that will come in handy as you become more familiar with Guix. If you are a developer, @pxref{Development} for additional tools. And if you're curious, @pxref{Features}, to peek under the hood." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2876 +#: guix-git/doc/guix.texi:2893 msgid "Once you've installed a set of packages, you will want to periodically @emph{upgrade} them to the latest and greatest version. To do that, you will first pull the latest revision of Guix and its package collection:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2886 +#: guix-git/doc/guix.texi:2903 msgid "The end result is a new @command{guix} command, under @file{~/.config/guix/current/bin}. Unless you're on Guix System, the first time you run @command{guix pull}, be sure to follow the hint that the command prints and, similar to what we saw above, paste these two lines in your terminal and @file{.bash_profile}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2890 +#: guix-git/doc/guix.texi:2907 #, no-wrap msgid "" "GUIX_PROFILE=\"$HOME/.config/guix/current\"\n" @@ -8507,336 +8585,336 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2894 +#: guix-git/doc/guix.texi:2911 msgid "You must also instruct your shell to point to this new @command{guix}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2897 +#: guix-git/doc/guix.texi:2914 #, no-wrap msgid "hash guix\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2901 +#: guix-git/doc/guix.texi:2918 msgid "At this point, you're running a brand new Guix. You can thus go ahead and actually upgrade all the packages you previously installed:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2904 +#: guix-git/doc/guix.texi:2921 #, no-wrap msgid "guix upgrade\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2910 +#: guix-git/doc/guix.texi:2927 msgid "As you run this command, you will see that binaries are downloaded (or perhaps some packages are built), and eventually you end up with the upgraded packages. Should one of these upgraded packages not be to your liking, remember you can always roll back!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2913 +#: guix-git/doc/guix.texi:2930 msgid "You can display the exact revision of Guix you're currently using by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2916 +#: guix-git/doc/guix.texi:2933 #, no-wrap msgid "guix describe\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2921 +#: guix-git/doc/guix.texi:2938 msgid "The information it displays is @emph{all it takes to reproduce the exact same Guix}, be it at a different point in time or on a different machine." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2927 +#: guix-git/doc/guix.texi:2944 msgid "@xref{Invoking guix pull}, for more information. @xref{Channels}, on how to specify additional @dfn{channels} to pull packages from, how to replicate Guix, and more. You may also find @command{time-machine} handy (@pxref{Invoking guix time-machine})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2932 +#: guix-git/doc/guix.texi:2949 msgid "If you installed Guix System, one of the first things you'll want to do is to upgrade your system. Once you've run @command{guix pull} to get the latest Guix, you can upgrade the system like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2935 +#: guix-git/doc/guix.texi:2952 #, no-wrap msgid "sudo guix system reconfigure /etc/config.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2944 +#: guix-git/doc/guix.texi:2961 msgid "Upon completion, the system runs the latest versions of its software packages. When you eventually reboot, you'll notice a sub-menu in the bootloader that reads ``Old system generations'': it's what allows you to boot @emph{an older generation of your system}, should the latest generation be ``broken'' or otherwise unsatisfying. Just like for packages, you can always @emph{roll back} to a previous generation @emph{of the whole system}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2947 +#: guix-git/doc/guix.texi:2964 #, no-wrap msgid "sudo guix system roll-back\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2954 +#: guix-git/doc/guix.texi:2971 msgid "There are many things you'll probably want to tweak on your system: adding new user accounts, adding new system services, fiddling with the configuration of those services, etc. The system configuration is @emph{entirely} described in the @file{/etc/config.scm} file. @xref{Using the Configuration System}, to learn how to change it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2956 +#: guix-git/doc/guix.texi:2973 msgid "Now you know enough to get started!" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2957 +#: guix-git/doc/guix.texi:2974 #, no-wrap msgid "Resources" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2960 +#: guix-git/doc/guix.texi:2977 msgid "The rest of this manual provides a reference for all things Guix. Here are some additional resources you may find useful:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2965 +#: guix-git/doc/guix.texi:2982 msgid "@xref{Top,,, guix-cookbook, The GNU Guix Cookbook}, for a list of ``how-to'' style of recipes for a variety of applications." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2970 +#: guix-git/doc/guix.texi:2987 msgid "The @uref{https://guix.gnu.org/guix-refcard.pdf, GNU Guix Reference Card} lists in two pages most of the commands and options you'll ever need." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2975 +#: guix-git/doc/guix.texi:2992 msgid "The web site contains @uref{https://guix.gnu.org/en/videos/, instructional videos} covering topics such as everyday use of Guix, how to get help, and how to become a contributor." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2979 +#: guix-git/doc/guix.texi:2996 msgid "@xref{Documentation}, to learn how to access documentation on your computer." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2982 +#: guix-git/doc/guix.texi:2999 msgid "We hope you will enjoy Guix as much as the community enjoys building it!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2993 +#: guix-git/doc/guix.texi:3010 msgid "The purpose of GNU Guix is to allow users to easily install, upgrade, and remove software packages, without having to know about their build procedures or dependencies. Guix also goes beyond this obvious set of features." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3001 +#: guix-git/doc/guix.texi:3018 msgid "This chapter describes the main features of Guix, as well as the package management tools it provides. Along with the command-line interface described below (@pxref{Invoking guix package, @code{guix package}}), you may also use the Emacs-Guix interface (@pxref{Top,,, emacs-guix, The Emacs-Guix Reference Manual}), after installing @code{emacs-guix} package (run @kbd{M-x guix-help} command to start with it):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3004 +#: guix-git/doc/guix.texi:3021 #, no-wrap msgid "guix install emacs-guix\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3025 +#: guix-git/doc/guix.texi:3042 msgid "Here we assume you've already made your first steps with Guix (@pxref{Getting Started}) and would like to get an overview about what's going on under the hood." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3029 +#: guix-git/doc/guix.texi:3046 msgid "When using Guix, each package ends up in the @dfn{package store}, in its own directory---something that resembles @file{/gnu/store/xxx-package-1.2}, where @code{xxx} is a base32 string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3051 msgid "Instead of referring to these directories, users have their own @dfn{profile}, which points to the packages that they actually want to use. These profiles are stored within each user's home directory, at @code{$HOME/.guix-profile}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3042 +#: guix-git/doc/guix.texi:3059 msgid "For example, @code{alice} installs GCC 4.7.2. As a result, @file{/home/alice/.guix-profile/bin/gcc} points to @file{/gnu/store/@dots{}-gcc-4.7.2/bin/gcc}. Now, on the same machine, @code{bob} had already installed GCC 4.8.0. The profile of @code{bob} simply continues to point to @file{/gnu/store/@dots{}-gcc-4.8.0/bin/gcc}---i.e., both versions of GCC coexist on the same system without any interference." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3046 +#: guix-git/doc/guix.texi:3063 msgid "The @command{guix package} command is the central tool to manage packages (@pxref{Invoking guix package}). It operates on the per-user profiles, and can be used @emph{with normal user privileges}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3047 guix-git/doc/guix.texi:3130 +#: guix-git/doc/guix.texi:3064 guix-git/doc/guix.texi:3147 #, no-wrap msgid "transactions" msgstr "연결" #. type: Plain text -#: guix-git/doc/guix.texi:3054 +#: guix-git/doc/guix.texi:3071 msgid "The command provides the obvious install, remove, and upgrade operations. Each invocation is actually a @emph{transaction}: either the specified operation succeeds, or nothing happens. Thus, if the @command{guix package} process is terminated during the transaction, or if a power outage occurs during the transaction, then the user's profile remains in its previous state, and remains usable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3062 +#: guix-git/doc/guix.texi:3079 msgid "In addition, any package transaction may be @emph{rolled back}. So, if, for example, an upgrade installs a new version of a package that turns out to have a serious bug, users may roll back to the previous instance of their profile, which was known to work well. Similarly, the global system configuration on Guix is subject to transactional upgrades and roll-back (@pxref{Using the Configuration System})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3069 +#: guix-git/doc/guix.texi:3086 msgid "All packages in the package store may be @emph{garbage-collected}. Guix can determine which packages are still referenced by user profiles, and remove those that are provably no longer referenced (@pxref{Invoking guix gc}). Users may also explicitly remove old generations of their profile so that the packages they refer to can be collected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3082 +#: guix-git/doc/guix.texi:3099 msgid "Guix takes a @dfn{purely functional} approach to package management, as described in the introduction (@pxref{Introduction}). Each @file{/gnu/store} package directory name contains a hash of all the inputs that were used to build that package---compiler, libraries, build scripts, etc. This direct correspondence allows users to make sure a given package installation matches the current state of their distribution. It also helps maximize @dfn{build reproducibility}: thanks to the isolated build environments that are used, a given build is likely to yield bit-identical files when performed on different machines (@pxref{Invoking guix-daemon, container})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3093 +#: guix-git/doc/guix.texi:3110 msgid "This foundation allows Guix to support @dfn{transparent binary/source deployment}. When a pre-built binary for a @file{/gnu/store} item is available from an external source---a @dfn{substitute}, Guix just downloads it and unpacks it; otherwise, it builds the package from source, locally (@pxref{Substitutes}). Because build results are usually bit-for-bit reproducible, users do not have to trust servers that provide substitutes: they can force a local build and @emph{challenge} providers (@pxref{Invoking guix challenge})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3099 +#: guix-git/doc/guix.texi:3116 msgid "Control over the build environment is a feature that is also useful for developers. The @command{guix shell} command allows developers of a package to quickly set up the right development environment for their package, without having to manually install the dependencies of the package into their profile (@pxref{Invoking guix shell})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3100 +#: guix-git/doc/guix.texi:3117 #, no-wrap msgid "replication, of software environments" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3101 +#: guix-git/doc/guix.texi:3118 #, no-wrap msgid "provenance tracking, of software artifacts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3108 +#: guix-git/doc/guix.texi:3125 msgid "All of Guix and its package definitions is version-controlled, and @command{guix pull} allows you to ``travel in time'' on the history of Guix itself (@pxref{Invoking guix pull}). This makes it possible to replicate a Guix instance on a different machine or at a later point in time, which in turn allows you to @emph{replicate complete software environments}, while retaining precise @dfn{provenance tracking} of the software." msgstr "" #. type: section -#: guix-git/doc/guix.texi:3110 +#: guix-git/doc/guix.texi:3127 #, no-wrap msgid "Invoking @command{guix package}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3112 +#: guix-git/doc/guix.texi:3129 #, no-wrap msgid "installing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3113 +#: guix-git/doc/guix.texi:3130 #, no-wrap msgid "removing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3114 +#: guix-git/doc/guix.texi:3131 #, no-wrap msgid "package installation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3115 +#: guix-git/doc/guix.texi:3132 #, no-wrap msgid "package removal" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3125 +#: guix-git/doc/guix.texi:3142 msgid "The @command{guix package} command is the tool that allows users to install, upgrade, and remove packages, as well as rolling back to previous configurations. These operations work on a user @dfn{profile}---a directory of installed packages. Each user has a default profile in @file{$HOME/.guix-profile}. The command operates only on the user's own profile, and works with normal user privileges (@pxref{Features}). Its syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3128 +#: guix-git/doc/guix.texi:3145 #, no-wrap msgid "guix package @var{options}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3135 +#: guix-git/doc/guix.texi:3152 msgid "Primarily, @var{options} specifies the operations to be performed during the transaction. Upon completion, a new profile is created, but previous @dfn{generations} of the profile remain available, should the user want to roll back." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3138 +#: guix-git/doc/guix.texi:3155 msgid "For example, to remove @code{lua} and install @code{guile} and @code{guile-cairo} in a single transaction:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3141 +#: guix-git/doc/guix.texi:3158 #, no-wrap msgid "guix package -r lua -i guile guile-cairo\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3143 +#: guix-git/doc/guix.texi:3160 #, no-wrap msgid "aliases, for @command{guix package}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3145 +#: guix-git/doc/guix.texi:3162 msgid "For your convenience, we also provide the following aliases:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3149 +#: guix-git/doc/guix.texi:3166 msgid "@command{guix search} is an alias for @command{guix package -s}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3151 +#: guix-git/doc/guix.texi:3168 msgid "@command{guix install} is an alias for @command{guix package -i}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3153 +#: guix-git/doc/guix.texi:3170 msgid "@command{guix remove} is an alias for @command{guix package -r}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3155 +#: guix-git/doc/guix.texi:3172 msgid "@command{guix upgrade} is an alias for @command{guix package -u}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3157 +#: guix-git/doc/guix.texi:3174 msgid "and @command{guix show} is an alias for @command{guix package --show=}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3162 +#: guix-git/doc/guix.texi:3179 msgid "These aliases are less expressive than @command{guix package} and provide fewer options, so in some cases you'll probably want to use @command{guix package} directly." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3167 +#: guix-git/doc/guix.texi:3184 msgid "@command{guix package} also supports a @dfn{declarative approach} whereby the user specifies the exact set of packages to be available and passes it @i{via} the @option{--manifest} option (@pxref{profile-manifest, @option{--manifest}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3174 +#: guix-git/doc/guix.texi:3191 msgid "For each user, a symlink to the user's default profile is automatically created in @file{$HOME/.guix-profile}. This symlink always points to the current generation of the user's default profile. Thus, users can add @file{$HOME/.guix-profile/bin} to their @env{PATH} environment variable, and so on." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3174 guix-git/doc/guix.texi:3418 +#: guix-git/doc/guix.texi:3191 guix-git/doc/guix.texi:3435 #, no-wrap msgid "search paths" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3179 +#: guix-git/doc/guix.texi:3196 msgid "If you are not using Guix System, consider adding the following lines to your @file{~/.bash_profile} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}) so that newly-spawned shells get all the right environment variable definitions:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3183 +#: guix-git/doc/guix.texi:3200 #, no-wrap msgid "" "GUIX_PROFILE=\"$HOME/.guix-profile\" ; \\\n" @@ -8844,298 +8922,298 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3194 +#: guix-git/doc/guix.texi:3211 msgid "In a multi-user setup, user profiles are stored in a place registered as a @dfn{garbage-collector root}, which @file{$HOME/.guix-profile} points to (@pxref{Invoking guix gc}). That directory is normally @code{@var{localstatedir}/guix/profiles/per-user/@var{user}}, where @var{localstatedir} is the value passed to @code{configure} as @option{--localstatedir}, and @var{user} is the user name. The @file{per-user} directory is created when @command{guix-daemon} is started, and the @var{user} sub-directory is created by @command{guix package}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3196 +#: guix-git/doc/guix.texi:3213 msgid "The @var{options} can be among the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3199 +#: guix-git/doc/guix.texi:3216 #, no-wrap msgid "--install=@var{package} @dots{}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3200 +#: guix-git/doc/guix.texi:3217 #, no-wrap msgid "-i @var{package} @dots{}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3202 +#: guix-git/doc/guix.texi:3219 msgid "Install the specified @var{package}s." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3207 +#: guix-git/doc/guix.texi:3224 msgid "Each @var{package} may specify either a simple package name, such as @code{guile}, or a package name followed by an at-sign and version number, such as @code{guile@@1.8.8} or simply @code{guile@@1.8} (in the latter case, the newest version prefixed by @code{1.8} is selected)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3215 +#: guix-git/doc/guix.texi:3232 msgid "If no version number is specified, the newest available version will be selected. In addition, @var{package} may contain a colon, followed by the name of one of the outputs of the package, as in @code{gcc:doc} or @code{binutils@@2.22:lib} (@pxref{Packages with Multiple Outputs}). Packages with a corresponding name (and optionally version) are searched for among the GNU distribution modules (@pxref{Package Modules})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3216 +#: guix-git/doc/guix.texi:3233 #, no-wrap msgid "propagated inputs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3222 +#: guix-git/doc/guix.texi:3239 msgid "Sometimes packages have @dfn{propagated inputs}: these are dependencies that automatically get installed along with the required package (@pxref{package-propagated-inputs, @code{propagated-inputs} in @code{package} objects}, for information about propagated inputs in package definitions)." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3229 +#: guix-git/doc/guix.texi:3246 msgid "package-cmd-propagated-inputs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3229 +#: guix-git/doc/guix.texi:3246 msgid "An example is the GNU MPC library: its C header files refer to those of the GNU MPFR library, which in turn refer to those of the GMP library. Thus, when installing MPC, the MPFR and GMP libraries also get installed in the profile; removing MPC also removes MPFR and GMP---unless they had also been explicitly installed by the user." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3234 +#: guix-git/doc/guix.texi:3251 msgid "Besides, packages sometimes rely on the definition of environment variables for their search paths (see explanation of @option{--search-paths} below). Any missing or possibly incorrect environment variable definitions are reported here." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3235 +#: guix-git/doc/guix.texi:3252 #, no-wrap msgid "--install-from-expression=@var{exp}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3236 +#: guix-git/doc/guix.texi:3253 #, no-wrap msgid "-e @var{exp}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3238 +#: guix-git/doc/guix.texi:3255 msgid "Install the package @var{exp} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3243 +#: guix-git/doc/guix.texi:3260 msgid "@var{exp} must be a Scheme expression that evaluates to a @code{} object. This option is notably useful to disambiguate between same-named variants of a package, with expressions such as @code{(@@ (gnu packages base) guile-final)}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3247 +#: guix-git/doc/guix.texi:3264 msgid "Note that this option installs the first output of the specified package, which may be insufficient when needing a specific output of a multiple-output package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3248 +#: guix-git/doc/guix.texi:3265 #, no-wrap msgid "--install-from-file=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3249 guix-git/doc/guix.texi:5781 -#: guix-git/doc/guix.texi:11396 +#: guix-git/doc/guix.texi:3266 guix-git/doc/guix.texi:5799 +#: guix-git/doc/guix.texi:11710 #, no-wrap msgid "-f @var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3251 +#: guix-git/doc/guix.texi:3268 msgid "Install the package that the code within @var{file} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3254 guix-git/doc/guix.texi:5787 -#: guix-git/doc/guix.texi:6162 +#: guix-git/doc/guix.texi:3271 guix-git/doc/guix.texi:5805 +#: guix-git/doc/guix.texi:6199 msgid "As an example, @var{file} might contain a definition like this (@pxref{Defining Packages}):" msgstr "" #. type: include -#: guix-git/doc/guix.texi:3256 guix-git/doc/guix.texi:11404 +#: guix-git/doc/guix.texi:3273 guix-git/doc/guix.texi:11718 #, no-wrap msgid "package-hello.scm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3263 +#: guix-git/doc/guix.texi:3280 msgid "Developers may find it useful to include such a @file{guix.scm} file in the root of their project source tree that can be used to test development snapshots and create reproducible development environments (@pxref{Invoking guix shell})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3268 +#: guix-git/doc/guix.texi:3285 msgid "The @var{file} may also contain a JSON representation of one or more package definitions. Running @code{guix package -f} on @file{hello.json} with the following contents would result in installing the package @code{greeter} after building @code{myhello}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3271 guix-git/doc/guix.texi:11414 +#: guix-git/doc/guix.texi:3288 guix-git/doc/guix.texi:11728 #, no-wrap msgid "@verbatiminclude package-hello.json\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3273 +#: guix-git/doc/guix.texi:3290 #, no-wrap msgid "--remove=@var{package} @dots{}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3274 +#: guix-git/doc/guix.texi:3291 #, no-wrap msgid "-r @var{package} @dots{}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3276 +#: guix-git/doc/guix.texi:3293 msgid "Remove the specified @var{package}s." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3281 +#: guix-git/doc/guix.texi:3298 msgid "As for @option{--install}, each @var{package} may specify a version number and/or output name in addition to the package name. For instance, @samp{-r glibc:debug} would remove the @code{debug} output of @code{glibc}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3282 +#: guix-git/doc/guix.texi:3299 #, no-wrap msgid "--upgrade[=@var{regexp} @dots{}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3283 +#: guix-git/doc/guix.texi:3300 #, no-wrap msgid "-u [@var{regexp} @dots{}]" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3284 +#: guix-git/doc/guix.texi:3301 #, no-wrap msgid "upgrading packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3288 +#: guix-git/doc/guix.texi:3305 msgid "Upgrade all the installed packages. If one or more @var{regexp}s are specified, upgrade only installed packages whose name matches a @var{regexp}. Also see the @option{--do-not-upgrade} option below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3293 +#: guix-git/doc/guix.texi:3310 msgid "Note that this upgrades package to the latest version of packages found in the distribution currently installed. To update your distribution, you should regularly run @command{guix pull} (@pxref{Invoking guix pull})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3294 +#: guix-git/doc/guix.texi:3311 #, no-wrap msgid "package transformations, upgrades" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3299 +#: guix-git/doc/guix.texi:3316 msgid "When upgrading, package transformations that were originally applied when creating the profile are automatically re-applied (@pxref{Package Transformation Options}). For example, assume you first installed Emacs from the tip of its development branch with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3302 +#: guix-git/doc/guix.texi:3319 #, no-wrap msgid "guix install emacs-next --with-branch=emacs-next=master\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3307 +#: guix-git/doc/guix.texi:3324 msgid "Next time you run @command{guix upgrade}, Guix will again pull the tip of the Emacs development branch and build @code{emacs-next} from that checkout." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3312 +#: guix-git/doc/guix.texi:3329 msgid "Note that transformation options such as @option{--with-branch} and @option{--with-source} depend on external state; it is up to you to ensure that they work as expected. You can also discard a transformations that apply to a package by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3315 +#: guix-git/doc/guix.texi:3332 #, no-wrap msgid "guix install @var{package}\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3317 +#: guix-git/doc/guix.texi:3334 #, no-wrap msgid "--do-not-upgrade[=@var{regexp} @dots{}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3322 +#: guix-git/doc/guix.texi:3339 msgid "When used together with the @option{--upgrade} option, do @emph{not} upgrade any packages whose name matches a @var{regexp}. For example, to upgrade all packages in the current profile except those containing the substring ``emacs'':" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3325 +#: guix-git/doc/guix.texi:3342 #, no-wrap msgid "$ guix package --upgrade . --do-not-upgrade emacs\n" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3327 +#: guix-git/doc/guix.texi:3344 #, no-wrap msgid "profile-manifest" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3327 guix-git/doc/guix.texi:5799 -#: guix-git/doc/guix.texi:6167 guix-git/doc/guix.texi:6615 -#: guix-git/doc/guix.texi:12535 guix-git/doc/guix.texi:14135 +#: guix-git/doc/guix.texi:3344 guix-git/doc/guix.texi:5817 +#: guix-git/doc/guix.texi:6204 guix-git/doc/guix.texi:6658 +#: guix-git/doc/guix.texi:12850 guix-git/doc/guix.texi:14492 #, no-wrap msgid "--manifest=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3328 guix-git/doc/guix.texi:5800 -#: guix-git/doc/guix.texi:6168 guix-git/doc/guix.texi:6616 -#: guix-git/doc/guix.texi:12536 +#: guix-git/doc/guix.texi:3345 guix-git/doc/guix.texi:5818 +#: guix-git/doc/guix.texi:6205 guix-git/doc/guix.texi:6659 +#: guix-git/doc/guix.texi:12851 #, no-wrap msgid "-m @var{file}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3329 +#: guix-git/doc/guix.texi:3346 #, no-wrap msgid "profile declaration" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3330 +#: guix-git/doc/guix.texi:3347 #, no-wrap msgid "profile manifest" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3334 +#: guix-git/doc/guix.texi:3351 msgid "Create a new generation of the profile from the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3340 +#: guix-git/doc/guix.texi:3357 msgid "This allows you to @emph{declare} the profile's contents rather than constructing it through a sequence of @option{--install} and similar commands. The advantage is that @var{file} can be put under version control, copied to different machines to reproduce the same profile, and so on." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3344 +#: guix-git/doc/guix.texi:3361 msgid "@var{file} must return a @dfn{manifest} object, which is roughly a list of packages:" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:3345 +#: guix-git/doc/guix.texi:3362 #, no-wrap msgid "packages->manifest" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3348 +#: guix-git/doc/guix.texi:3365 #, no-wrap msgid "" "(use-package-modules guile emacs)\n" @@ -9143,7 +9221,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3354 +#: guix-git/doc/guix.texi:3371 #, no-wrap msgid "" "(packages->manifest\n" @@ -9154,18 +9232,18 @@ msgid "" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:3356 +#: guix-git/doc/guix.texi:3373 #, no-wrap msgid "specifications->manifest" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3363 +#: guix-git/doc/guix.texi:3380 msgid "In this example we have to know which modules define the @code{emacs} and @code{guile-2.0} variables to provide the right @code{use-package-modules} line, which can be cumbersome. We can instead provide regular package specifications and let @code{specifications->manifest} look up the corresponding package objects, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3367 +#: guix-git/doc/guix.texi:3384 #, no-wrap msgid "" "(specifications->manifest\n" @@ -9173,150 +9251,150 @@ msgid "" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:3369 +#: guix-git/doc/guix.texi:3386 #, no-wrap msgid "package->development-manifest" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3372 +#: guix-git/doc/guix.texi:3389 msgid "You might also want to create a manifest for all the dependencies of a package, rather than the package itself:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3375 +#: guix-git/doc/guix.texi:3392 #, no-wrap msgid "(package->development-manifest (specification->package \"emacs\"))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3379 +#: guix-git/doc/guix.texi:3396 msgid "The example above gives you all the software required to develop Emacs, similar to what @command{guix environment emacs} provides." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3382 +#: guix-git/doc/guix.texi:3399 msgid "@xref{export-manifest, @option{--export-manifest}}, to learn how to obtain a manifest file from an existing profile." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3383 guix-git/doc/guix.texi:4492 +#: guix-git/doc/guix.texi:3400 guix-git/doc/guix.texi:4510 #, no-wrap msgid "--roll-back" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3384 guix-git/doc/guix.texi:4493 -#: guix-git/doc/guix.texi:35006 guix-git/doc/guix.texi:37641 +#: guix-git/doc/guix.texi:3401 guix-git/doc/guix.texi:4511 +#: guix-git/doc/guix.texi:35445 guix-git/doc/guix.texi:38120 #, no-wrap msgid "rolling back" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3385 guix-git/doc/guix.texi:4494 +#: guix-git/doc/guix.texi:3402 guix-git/doc/guix.texi:4512 #, no-wrap msgid "undoing transactions" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3386 guix-git/doc/guix.texi:4495 +#: guix-git/doc/guix.texi:3403 guix-git/doc/guix.texi:4513 #, no-wrap msgid "transactions, undoing" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3389 +#: guix-git/doc/guix.texi:3406 msgid "Roll back to the previous @dfn{generation} of the profile---i.e., undo the last transaction." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3392 +#: guix-git/doc/guix.texi:3409 msgid "When combined with options such as @option{--install}, roll back occurs before any other actions." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3396 +#: guix-git/doc/guix.texi:3413 msgid "When rolling back from the first generation that actually contains installed packages, the profile is made to point to the @dfn{zeroth generation}, which contains no files apart from its own metadata." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3400 +#: guix-git/doc/guix.texi:3417 msgid "After having rolled back, installing, removing, or upgrading packages overwrites previous future generations. Thus, the history of the generations in a profile is always linear." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3401 guix-git/doc/guix.texi:4499 +#: guix-git/doc/guix.texi:3418 guix-git/doc/guix.texi:4517 #, no-wrap msgid "--switch-generation=@var{pattern}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3402 guix-git/doc/guix.texi:4500 +#: guix-git/doc/guix.texi:3419 guix-git/doc/guix.texi:4518 #, no-wrap msgid "-S @var{pattern}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3403 guix-git/doc/guix.texi:3635 -#: guix-git/doc/guix.texi:4501 guix-git/doc/guix.texi:34964 +#: guix-git/doc/guix.texi:3420 guix-git/doc/guix.texi:3653 +#: guix-git/doc/guix.texi:4519 guix-git/doc/guix.texi:35403 #, no-wrap msgid "generations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3405 guix-git/doc/guix.texi:4503 +#: guix-git/doc/guix.texi:3422 guix-git/doc/guix.texi:4521 msgid "Switch to a particular generation defined by @var{pattern}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3411 guix-git/doc/guix.texi:4509 +#: guix-git/doc/guix.texi:3428 guix-git/doc/guix.texi:4527 msgid "@var{pattern} may be either a generation number or a number prefixed with ``+'' or ``-''. The latter means: move forward/backward by a specified number of generations. For example, if you want to return to the latest generation after @option{--roll-back}, use @option{--switch-generation=+1}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3416 +#: guix-git/doc/guix.texi:3433 msgid "The difference between @option{--roll-back} and @option{--switch-generation=-1} is that @option{--switch-generation} will not make a zeroth generation, so if a specified generation does not exist, the current generation will not be changed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3417 +#: guix-git/doc/guix.texi:3434 #, no-wrap msgid "--search-paths[=@var{kind}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3423 +#: guix-git/doc/guix.texi:3440 msgid "Report environment variable definitions, in Bash syntax, that may be needed in order to use the set of installed packages. These environment variables are used to specify @dfn{search paths} for files used by some of the installed packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3431 -msgid "For example, GCC needs the @env{CPATH} and @env{LIBRARY_PATH} environment variables to be defined so it can look for headers and libraries in the user's profile (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C library are installed in the profile, then @option{--search-paths} will suggest setting these variables to @file{@var{profile}/include} and @file{@var{profile}/lib}, respectively." +#: guix-git/doc/guix.texi:3449 +msgid "For example, GCC needs the @env{CPATH} and @env{LIBRARY_PATH} environment variables to be defined so it can look for headers and libraries in the user's profile (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C library are installed in the profile, then @option{--search-paths} will suggest setting these variables to @file{@var{profile}/include} and @file{@var{profile}/lib}, respectively (@pxref{Search Paths}, for info on search path specifications associated with packages.)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3434 +#: guix-git/doc/guix.texi:3452 msgid "The typical use case is to define these environment variables in the shell:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3437 +#: guix-git/doc/guix.texi:3455 #, no-wrap msgid "$ eval `guix package --search-paths`\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3443 +#: guix-git/doc/guix.texi:3461 msgid "@var{kind} may be one of @code{exact}, @code{prefix}, or @code{suffix}, meaning that the returned environment variable definitions will either be exact settings, or prefixes or suffixes of the current value of these variables. When omitted, @var{kind} defaults to @code{exact}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3446 +#: guix-git/doc/guix.texi:3464 msgid "This option can also be used to compute the @emph{combined} search paths of several profiles. Consider this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3451 +#: guix-git/doc/guix.texi:3469 #, no-wrap msgid "" "$ guix package -p foo -i guile\n" @@ -9325,42 +9403,44 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3456 +#: guix-git/doc/guix.texi:3474 msgid "The last command above reports about the @env{GUILE_LOAD_PATH} variable, even though, taken individually, neither @file{foo} nor @file{bar} would lead to that recommendation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3458 +#: guix-git/doc/guix.texi:3476 #, no-wrap msgid "profile, choosing" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3459 guix-git/doc/guix.texi:4529 -#: guix-git/doc/guix.texi:4858 +#: guix-git/doc/guix.texi:3477 guix-git/doc/guix.texi:4547 +#: guix-git/doc/guix.texi:4876 guix-git/doc/guix.texi:5827 +#: guix-git/doc/guix.texi:6240 #, no-wrap msgid "--profile=@var{profile}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3460 guix-git/doc/guix.texi:4530 -#: guix-git/doc/guix.texi:4859 +#: guix-git/doc/guix.texi:3478 guix-git/doc/guix.texi:4548 +#: guix-git/doc/guix.texi:4877 guix-git/doc/guix.texi:5828 +#: guix-git/doc/guix.texi:6241 #, no-wrap msgid "-p @var{profile}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3462 +#: guix-git/doc/guix.texi:3480 msgid "Use @var{profile} instead of the user's default profile." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3467 +#: guix-git/doc/guix.texi:3485 msgid "@var{profile} must be the name of a file that will be created upon completion. Concretely, @var{profile} will be a mere symbolic link (``symlink'') pointing to the actual profile where packages are installed:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3473 +#: guix-git/doc/guix.texi:3491 #, no-wrap msgid "" "$ guix install hello -p ~/code/my-profile\n" @@ -9370,29 +9450,29 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3477 +#: guix-git/doc/guix.texi:3495 msgid "All it takes to get rid of the profile is to remove this symlink and its siblings that point to specific generations:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3480 +#: guix-git/doc/guix.texi:3498 #, no-wrap msgid "$ rm ~/code/my-profile ~/code/my-profile-*-link\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3482 +#: guix-git/doc/guix.texi:3500 #, no-wrap msgid "--list-profiles" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3484 +#: guix-git/doc/guix.texi:3502 msgid "List all the user's profiles:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3491 +#: guix-git/doc/guix.texi:3509 #, no-wrap msgid "" "$ guix package --list-profiles\n" @@ -9403,96 +9483,96 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3494 +#: guix-git/doc/guix.texi:3512 msgid "When running as root, list all the profiles of all the users." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3495 +#: guix-git/doc/guix.texi:3513 #, no-wrap msgid "collisions, in a profile" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3496 +#: guix-git/doc/guix.texi:3514 #, no-wrap msgid "colliding packages in profiles" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3497 +#: guix-git/doc/guix.texi:3515 #, no-wrap msgid "profile collisions" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3498 +#: guix-git/doc/guix.texi:3516 #, no-wrap msgid "--allow-collisions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3500 +#: guix-git/doc/guix.texi:3518 msgid "Allow colliding packages in the new profile. Use at your own risk!" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3504 +#: guix-git/doc/guix.texi:3522 msgid "By default, @command{guix package} reports as an error @dfn{collisions} in the profile. Collisions happen when two or more different versions or variants of a given package end up in the profile." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3505 guix-git/doc/guix.texi:4572 -#: guix-git/doc/guix.texi:6701 +#: guix-git/doc/guix.texi:3523 guix-git/doc/guix.texi:4590 +#: guix-git/doc/guix.texi:6744 #, no-wrap msgid "--bootstrap" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3508 +#: guix-git/doc/guix.texi:3526 msgid "Use the bootstrap Guile to build the profile. This option is only useful to distribution developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3514 +#: guix-git/doc/guix.texi:3532 msgid "In addition to these actions, @command{guix package} supports the following options to query the current state of a profile, or the availability of packages:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3517 +#: guix-git/doc/guix.texi:3535 #, no-wrap msgid "--search=@var{regexp}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3518 +#: guix-git/doc/guix.texi:3536 #, no-wrap msgid "-s @var{regexp}" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3520 +#: guix-git/doc/guix.texi:3538 msgid "guix-search" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3520 +#: guix-git/doc/guix.texi:3538 #, no-wrap msgid "searching for packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3526 +#: guix-git/doc/guix.texi:3544 msgid "List the available packages whose name, synopsis, or description matches @var{regexp} (in a case-insensitive fashion), sorted by relevance. Print all the metadata of matching packages in @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3529 +#: guix-git/doc/guix.texi:3547 msgid "This allows specific fields to be extracted using the @command{recsel} command, for instance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3535 +#: guix-git/doc/guix.texi:3553 #, no-wrap msgid "" "$ guix package -s malloc | recsel -p name,version,relevance\n" @@ -9503,7 +9583,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3539 +#: guix-git/doc/guix.texi:3557 #, no-wrap msgid "" "name: glibc\n" @@ -9513,7 +9593,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3543 +#: guix-git/doc/guix.texi:3561 #, no-wrap msgid "" "name: libgc\n" @@ -9522,12 +9602,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3547 +#: guix-git/doc/guix.texi:3565 msgid "Similarly, to show the name of all the packages available under the terms of the GNU@tie{}LGPL version 3:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3551 +#: guix-git/doc/guix.texi:3569 #, no-wrap msgid "" "$ guix package -s \"\" | recsel -p name -e 'license ~ \"LGPL 3\"'\n" @@ -9536,7 +9616,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3554 +#: guix-git/doc/guix.texi:3572 #, no-wrap msgid "" "name: gmp\n" @@ -9544,12 +9624,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3560 +#: guix-git/doc/guix.texi:3578 msgid "It is also possible to refine search results using several @code{-s} flags to @command{guix package}, or several arguments to @command{guix search}. For example, the following command returns a list of board games (this time using the @command{guix search} alias):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3565 +#: guix-git/doc/guix.texi:3583 #, no-wrap msgid "" "$ guix search '\\' game | recsel -p name\n" @@ -9558,17 +9638,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3571 +#: guix-git/doc/guix.texi:3589 msgid "If we were to omit @code{-s game}, we would also get software packages that deal with printed circuit boards; removing the angle brackets around @code{board} would further add packages that have to do with keyboards." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3575 +#: guix-git/doc/guix.texi:3593 msgid "And now for a more elaborate example. The following command searches for cryptographic libraries, filters out Haskell, Perl, Python, and Ruby libraries, and prints the name and synopsis of the matching packages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3579 +#: guix-git/doc/guix.texi:3597 #, no-wrap msgid "" "$ guix search crypto library | \\\n" @@ -9576,23 +9656,23 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3584 +#: guix-git/doc/guix.texi:3602 msgid "@xref{Selection Expressions,,, recutils, GNU recutils manual}, for more information on @dfn{selection expressions} for @code{recsel -e}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3585 +#: guix-git/doc/guix.texi:3603 #, no-wrap msgid "--show=@var{package}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3589 +#: guix-git/doc/guix.texi:3607 msgid "Show details about @var{package}, taken from the list of available packages, in @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:3594 +#: guix-git/doc/guix.texi:3612 #, no-wrap msgid "" "$ guix package --show=guile | recsel -p name,version\n" @@ -9602,7 +9682,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3597 +#: guix-git/doc/guix.texi:3615 #, no-wrap msgid "" "name: guile\n" @@ -9611,7 +9691,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3601 +#: guix-git/doc/guix.texi:3619 #, no-wrap msgid "" "name: guile\n" @@ -9620,12 +9700,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3605 +#: guix-git/doc/guix.texi:3623 msgid "You may also specify the full name of a package to only get details about a specific version of it (this time using the @command{guix show} alias):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3609 +#: guix-git/doc/guix.texi:3627 #, no-wrap msgid "" "$ guix show guile@@3.0.5 | recsel -p name,version\n" @@ -9634,297 +9714,297 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3611 +#: guix-git/doc/guix.texi:3629 #, no-wrap msgid "--list-installed[=@var{regexp}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3612 +#: guix-git/doc/guix.texi:3630 #, no-wrap msgid "-I [@var{regexp}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3616 +#: guix-git/doc/guix.texi:3634 msgid "List the currently installed packages in the specified profile, with the most recently installed packages shown last. When @var{regexp} is specified, list only installed packages whose name matches @var{regexp}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3622 +#: guix-git/doc/guix.texi:3640 msgid "For each installed package, print the following items, separated by tabs: the package name, its version string, the part of the package that is installed (for instance, @code{out} for the default output, @code{include} for its headers, etc.), and the path of this package in the store." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3623 +#: guix-git/doc/guix.texi:3641 #, no-wrap msgid "--list-available[=@var{regexp}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3624 +#: guix-git/doc/guix.texi:3642 #, no-wrap msgid "-A [@var{regexp}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3628 +#: guix-git/doc/guix.texi:3646 msgid "List packages currently available in the distribution for this system (@pxref{GNU Distribution}). When @var{regexp} is specified, list only available packages whose name matches @var{regexp}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3632 +#: guix-git/doc/guix.texi:3650 msgid "For each package, print the following items separated by tabs: its name, its version string, the parts of the package (@pxref{Packages with Multiple Outputs}), and the source location of its definition." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3633 guix-git/doc/guix.texi:4485 +#: guix-git/doc/guix.texi:3651 guix-git/doc/guix.texi:4503 #, no-wrap msgid "--list-generations[=@var{pattern}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3634 guix-git/doc/guix.texi:4486 +#: guix-git/doc/guix.texi:3652 guix-git/doc/guix.texi:4504 #, no-wrap msgid "-l [@var{pattern}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3640 +#: guix-git/doc/guix.texi:3658 msgid "Return a list of generations along with their creation dates; for each generation, show the installed packages, with the most recently installed packages shown last. Note that the zeroth generation is never shown." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3645 +#: guix-git/doc/guix.texi:3663 msgid "For each installed package, print the following items, separated by tabs: the name of a package, its version string, the part of the package that is installed (@pxref{Packages with Multiple Outputs}), and the location of this package in the store." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3648 +#: guix-git/doc/guix.texi:3666 msgid "When @var{pattern} is used, the command returns only matching generations. Valid patterns include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3650 +#: guix-git/doc/guix.texi:3668 #, no-wrap msgid "@emph{Integers and comma-separated integers}. Both patterns denote" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3653 +#: guix-git/doc/guix.texi:3671 msgid "generation numbers. For instance, @option{--list-generations=1} returns the first one." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3656 +#: guix-git/doc/guix.texi:3674 msgid "And @option{--list-generations=1,8,2} outputs three generations in the specified order. Neither spaces nor trailing commas are allowed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3657 +#: guix-git/doc/guix.texi:3675 #, no-wrap msgid "@emph{Ranges}. @option{--list-generations=2..9} prints the" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3660 +#: guix-git/doc/guix.texi:3678 msgid "specified generations and everything in between. Note that the start of a range must be smaller than its end." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3664 +#: guix-git/doc/guix.texi:3682 msgid "It is also possible to omit the endpoint. For example, @option{--list-generations=2..}, returns all generations starting from the second one." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3665 +#: guix-git/doc/guix.texi:3683 #, no-wrap msgid "@emph{Durations}. You can also get the last @emph{N}@tie{}days, weeks," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3669 +#: guix-git/doc/guix.texi:3687 msgid "or months by passing an integer along with the first letter of the duration. For example, @option{--list-generations=20d} lists generations that are up to 20 days old." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3671 guix-git/doc/guix.texi:4510 +#: guix-git/doc/guix.texi:3689 guix-git/doc/guix.texi:4528 #, no-wrap msgid "--delete-generations[=@var{pattern}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3672 guix-git/doc/guix.texi:4511 +#: guix-git/doc/guix.texi:3690 guix-git/doc/guix.texi:4529 #, no-wrap msgid "-d [@var{pattern}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3675 guix-git/doc/guix.texi:4514 +#: guix-git/doc/guix.texi:3693 guix-git/doc/guix.texi:4532 msgid "When @var{pattern} is omitted, delete all generations except the current one." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3681 guix-git/doc/guix.texi:4520 +#: guix-git/doc/guix.texi:3699 guix-git/doc/guix.texi:4538 msgid "This command accepts the same patterns as @option{--list-generations}. When @var{pattern} is specified, delete the matching generations. When @var{pattern} specifies a duration, generations @emph{older} than the specified duration match. For instance, @option{--delete-generations=1m} deletes generations that are more than one month old." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3684 +#: guix-git/doc/guix.texi:3702 msgid "If the current generation matches, it is @emph{not} deleted. Also, the zeroth generation is never deleted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3687 guix-git/doc/guix.texi:4525 +#: guix-git/doc/guix.texi:3705 guix-git/doc/guix.texi:4543 msgid "Note that deleting generations prevents rolling back to them. Consequently, this command must be used with care." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3688 +#: guix-git/doc/guix.texi:3706 #, no-wrap msgid "manifest, exporting" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3690 +#: guix-git/doc/guix.texi:3708 msgid "export-manifest" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3690 +#: guix-git/doc/guix.texi:3708 #, no-wrap msgid "--export-manifest" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3693 +#: guix-git/doc/guix.texi:3711 msgid "Write to standard output a manifest suitable for @option{--manifest} corresponding to the chosen profile(s)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3697 +#: guix-git/doc/guix.texi:3715 msgid "This option is meant to help you migrate from the ``imperative'' operating mode---running @command{guix install}, @command{guix upgrade}, etc.---to the declarative mode that @option{--manifest} offers." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3702 +#: guix-git/doc/guix.texi:3720 msgid "Be aware that the resulting manifest @emph{approximates} what your profile actually contains; for instance, depending on how your profile was created, it can refer to packages or package versions that are not exactly what you specified." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3707 +#: guix-git/doc/guix.texi:3725 msgid "Keep in mind that a manifest is purely symbolic: it only contains package names and possibly versions, and their meaning varies over time. If you wish to ``pin'' channels to the revisions that were used to build the profile(s), see @option{--export-channels} below." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3708 +#: guix-git/doc/guix.texi:3726 #, no-wrap msgid "pinning, channel revisions of a profile" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3709 +#: guix-git/doc/guix.texi:3727 #, no-wrap msgid "--export-channels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3713 +#: guix-git/doc/guix.texi:3731 msgid "Write to standard output the list of channels used by the chosen profile(s), in a format suitable for @command{guix pull --channels} or @command{guix time-machine --channels} (@pxref{Channels})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3717 +#: guix-git/doc/guix.texi:3735 msgid "Together with @option{--export-manifest}, this option provides information allowing you to replicate the current profile (@pxref{Replicating Guix})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3725 +#: guix-git/doc/guix.texi:3743 msgid "However, note that the output of this command @emph{approximates} what was actually used to build this profile. In particular, a single profile might have been built from several different revisions of the same channel. In that case, @option{--export-manifest} chooses the last one and writes the list of other revisions in a comment. If you really need to pick packages from different channel revisions, you can use inferiors in your manifest to do so (@pxref{Inferiors})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3730 +#: guix-git/doc/guix.texi:3748 msgid "Together with @option{--export-manifest}, this is a good starting point if you are willing to migrate from the ``imperative'' model to the fully declarative model consisting of a manifest file along with a channels file pinning the exact channel revision(s) you want." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3737 +#: guix-git/doc/guix.texi:3755 msgid "Finally, since @command{guix package} may actually start build processes, it supports all the common build options (@pxref{Common Build Options}). It also supports package transformation options, such as @option{--with-source}, and preserves them across upgrades (@pxref{Package Transformation Options})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3742 +#: guix-git/doc/guix.texi:3760 #, no-wrap msgid "pre-built binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3748 +#: guix-git/doc/guix.texi:3766 msgid "Guix supports transparent source/binary deployment, which means that it can either build things locally, or download pre-built items from a server, or both. We call these pre-built items @dfn{substitutes}---they are substitutes for local build results. In many cases, downloading a substitute is much faster than building things locally." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3753 +#: guix-git/doc/guix.texi:3771 msgid "Substitutes can be anything resulting from a derivation build (@pxref{Derivations}). Of course, in the common case, they are pre-built package binaries, but source tarballs, for instance, which also result from derivation builds, can be available as substitutes." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3767 +#: guix-git/doc/guix.texi:3785 #, no-wrap msgid "build farm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3778 +#: guix-git/doc/guix.texi:3796 msgid "@code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} are both front-ends to official build farms that build packages from Guix continuously for some architectures, and make them available as substitutes. These are the default source of substitutes; which can be overridden by passing the @option{--substitute-urls} option either to @command{guix-daemon} (@pxref{daemon-substitute-urls,, @code{guix-daemon --substitute-urls}}) or to client tools such as @command{guix package} (@pxref{client-substitute-urls,, client @option{--substitute-urls} option})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3784 +#: guix-git/doc/guix.texi:3802 msgid "Substitute URLs can be either HTTP or HTTPS. HTTPS is recommended because communications are encrypted; conversely, using HTTP makes all communications visible to an eavesdropper, who could use the information gathered to determine, for instance, whether your system has unpatched security vulnerabilities." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3793 +#: guix-git/doc/guix.texi:3811 msgid "Substitutes from the official build farms are enabled by default when using Guix System (@pxref{GNU Distribution}). However, they are disabled by default when using Guix on a foreign distribution, unless you have explicitly enabled them via one of the recommended installation steps (@pxref{Installation}). The following paragraphs describe how to enable or disable substitutes for the official build farm; the same procedure can also be used to enable substitutes for any other substitute server." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3797 +#: guix-git/doc/guix.texi:3815 #, no-wrap msgid "security" msgstr "보안" #. type: cindex -#: guix-git/doc/guix.texi:3799 +#: guix-git/doc/guix.texi:3817 #, no-wrap msgid "access control list (ACL), for substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3800 +#: guix-git/doc/guix.texi:3818 #, no-wrap msgid "ACL (access control list), for substitutes" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3806 +#: guix-git/doc/guix.texi:3824 msgid "To allow Guix to download substitutes from @code{@value{SUBSTITUTE-SERVER-1}}, @code{@value{SUBSTITUTE-SERVER-2}} or a mirror, you must add the relevant public key to the access control list (ACL) of archive imports, using the @command{guix archive} command (@pxref{Invoking guix archive}). Doing so implies that you trust the substitute server to not be compromised and to serve genuine substitutes." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:3811 +#: guix-git/doc/guix.texi:3829 msgid "If you are using Guix System, you can skip this section: Guix System authorizes substitutes from @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} by default." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3819 +#: guix-git/doc/guix.texi:3837 msgid "The public keys for each of the project maintained substitute servers are installed along with Guix, in @code{@var{prefix}/share/guix/}, where @var{prefix} is the installation prefix of Guix. If you installed Guix from source, make sure you checked the GPG signature of @file{guix-@value{VERSION}.tar.gz}, which contains this public key file. Then, you can run something like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3823 +#: guix-git/doc/guix.texi:3841 #, no-wrap msgid "" "# guix archive --authorize < @var{prefix}/share/guix/@value{SUBSTITUTE-SERVER-1}.pub\n" @@ -9932,12 +10012,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3827 +#: guix-git/doc/guix.texi:3845 msgid "Once this is in place, the output of a command like @code{guix build} should change from something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3836 +#: guix-git/doc/guix.texi:3854 #, no-wrap msgid "" "$ guix build emacs --dry-run\n" @@ -9950,12 +10030,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3840 +#: guix-git/doc/guix.texi:3858 msgid "to something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3849 +#: guix-git/doc/guix.texi:3867 #, no-wrap msgid "" "$ guix build emacs --dry-run\n" @@ -9968,49 +10048,49 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3856 +#: guix-git/doc/guix.texi:3874 msgid "The text changed from ``The following derivations would be built'' to ``112.3 MB would be downloaded''. This indicates that substitutes from the configured substitute servers are usable and will be downloaded, when possible, for future builds." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3857 +#: guix-git/doc/guix.texi:3875 #, no-wrap msgid "substitutes, how to disable" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3863 +#: guix-git/doc/guix.texi:3881 msgid "The substitute mechanism can be disabled globally by running @code{guix-daemon} with @option{--no-substitutes} (@pxref{Invoking guix-daemon}). It can also be disabled temporarily by passing the @option{--no-substitutes} option to @command{guix package}, @command{guix build}, and other command-line tools." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3867 +#: guix-git/doc/guix.texi:3885 #, no-wrap msgid "substitute servers, adding more" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3874 +#: guix-git/doc/guix.texi:3892 msgid "Guix can look up and fetch substitutes from several servers. This is useful when you are using packages from additional channels for which the official server does not have substitutes but another server provides them. Another situation where this is useful is when you would prefer to download from your organization's substitute server, resorting to the official server only as a fallback or dismissing it altogether." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3879 +#: guix-git/doc/guix.texi:3897 msgid "You can give Guix a list of substitute server URLs and it will check them in the specified order. You also need to explicitly authorize the public keys of substitute servers to instruct Guix to accept the substitutes they sign." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3886 +#: guix-git/doc/guix.texi:3904 msgid "On Guix System, this is achieved by modifying the configuration of the @code{guix} service. Since the @code{guix} service is part of the default lists of services, @code{%base-services} and @code{%desktop-services}, you can use @code{modify-services} to change its configuration and add the URLs and substitute keys that you want (@pxref{Service Reference, @code{modify-services}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3892 +#: guix-git/doc/guix.texi:3910 msgid "As an example, suppose you want to fetch substitutes from @code{guix.example.org} and to authorize the signing key of that server, in addition to the default @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}}. The resulting operating system configuration will look something like:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3909 +#: guix-git/doc/guix.texi:3927 #, no-wrap msgid "" "(operating-system\n" @@ -10031,12 +10111,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3916 +#: guix-git/doc/guix.texi:3934 msgid "This assumes that the file @file{key.pub} contains the signing key of @code{guix.example.org}. With this change in place in your operating system configuration file (say @file{/etc/config.scm}), you can reconfigure and restart the @code{guix-daemon} service or reboot so the changes take effect:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3920 +#: guix-git/doc/guix.texi:3938 #, no-wrap msgid "" "$ sudo guix system reconfigure /etc/config.scm\n" @@ -10044,28 +10124,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3924 +#: guix-git/doc/guix.texi:3942 msgid "If you're running Guix on a ``foreign distro'', you would instead take the following steps to get substitutes from additional servers:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:3933 +#: guix-git/doc/guix.texi:3951 msgid "Edit the service configuration file for @code{guix-daemon}; when using systemd, this is normally @file{/etc/systemd/system/guix-daemon.service}. Add the @option{--substitute-urls} option on the @command{guix-daemon} command line and list the URLs of interest (@pxref{daemon-substitute-urls, @code{guix-daemon --substitute-urls}}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3936 +#: guix-git/doc/guix.texi:3954 #, no-wrap msgid "@dots{} --substitute-urls='https://guix.example.org @value{SUBSTITUTE-URLS}'\n" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:3940 +#: guix-git/doc/guix.texi:3958 msgid "Restart the daemon. For systemd, it goes like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3944 +#: guix-git/doc/guix.texi:3962 #, no-wrap msgid "" "systemctl daemon-reload\n" @@ -10073,651 +10153,651 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:3948 +#: guix-git/doc/guix.texi:3966 msgid "Authorize the key of the new server (@pxref{Invoking guix archive}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3951 +#: guix-git/doc/guix.texi:3969 #, no-wrap msgid "guix archive --authorize < key.pub\n" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:3955 +#: guix-git/doc/guix.texi:3973 msgid "Again this assumes @file{key.pub} contains the public key that @code{guix.example.org} uses to sign substitutes." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3964 +#: guix-git/doc/guix.texi:3982 msgid "Now you're all set! Substitutes will be preferably taken from @code{https://guix.example.org}, using @code{@value{SUBSTITUTE-SERVER-1}} then @code{@value{SUBSTITUTE-SERVER-2}} as fallback options. Of course you can list as many substitute servers as you like, with the caveat that substitute lookup can be slowed down if too many servers need to be contacted." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3968 +#: guix-git/doc/guix.texi:3986 msgid "Note that there are also situations where one may want to add the URL of a substitute server @emph{without} authorizing its key. @xref{Substitute Authentication}, to understand this fine point." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3972 +#: guix-git/doc/guix.texi:3990 #, no-wrap msgid "digital signatures" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3976 +#: guix-git/doc/guix.texi:3994 msgid "Guix detects and raises an error when attempting to use a substitute that has been tampered with. Likewise, it ignores substitutes that are not signed, or that are not signed by one of the keys listed in the ACL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3982 +#: guix-git/doc/guix.texi:4000 msgid "There is one exception though: if an unauthorized server provides substitutes that are @emph{bit-for-bit identical} to those provided by an authorized server, then the unauthorized server becomes eligible for downloads. For example, assume we have chosen two substitute servers with this option:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3985 +#: guix-git/doc/guix.texi:4003 #, no-wrap msgid "--substitute-urls=\"https://a.example.org https://b.example.org\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3996 +#: guix-git/doc/guix.texi:4014 msgid "If the ACL contains only the key for @samp{b.example.org}, and if @samp{a.example.org} happens to serve the @emph{exact same} substitutes, then Guix will download substitutes from @samp{a.example.org} because it comes first in the list and can be considered a mirror of @samp{b.example.org}. In practice, independent build machines usually produce the same binaries, thanks to bit-reproducible builds (see below)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4003 +#: guix-git/doc/guix.texi:4021 msgid "When using HTTPS, the server's X.509 certificate is @emph{not} validated (in other words, the server is not authenticated), contrary to what HTTPS clients such as Web browsers usually do. This is because Guix authenticates substitute information itself, as explained above, which is what we care about (whereas X.509 certificates are about authenticating bindings between domain names and public keys)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4015 +#: guix-git/doc/guix.texi:4033 msgid "Substitutes are downloaded over HTTP or HTTPS@. The @env{http_proxy} and @env{https_proxy} environment variables can be set in the environment of @command{guix-daemon} and are honored for downloads of substitutes. Note that the value of those environment variables in the environment where @command{guix build}, @command{guix package}, and other client commands are run has @emph{absolutely no effect}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4024 +#: guix-git/doc/guix.texi:4042 msgid "Even when a substitute for a derivation is available, sometimes the substitution attempt will fail. This can happen for a variety of reasons: the substitute server might be offline, the substitute may recently have been deleted, the connection might have been interrupted, etc." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4038 +#: guix-git/doc/guix.texi:4056 msgid "When substitutes are enabled and a substitute for a derivation is available, but the substitution attempt fails, Guix will attempt to build the derivation locally depending on whether or not @option{--fallback} was given (@pxref{fallback-option,, common build option @option{--fallback}}). Specifically, if @option{--fallback} was omitted, then no local build will be performed, and the derivation is considered to have failed. However, if @option{--fallback} was given, then Guix will attempt to build the derivation locally, and the success or failure of the derivation depends on the success or failure of the local build. Note that when substitutes are disabled or no substitute is available for the derivation in question, a local build will @emph{always} be performed, regardless of whether or not @option{--fallback} was given." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4043 +#: guix-git/doc/guix.texi:4061 msgid "To get an idea of how many substitutes are available right now, you can try running the @command{guix weather} command (@pxref{Invoking guix weather}). This command provides statistics on the substitutes provided by a server." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4047 +#: guix-git/doc/guix.texi:4065 #, no-wrap msgid "trust, of pre-built binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4057 +#: guix-git/doc/guix.texi:4075 msgid "Today, each individual's control over their own computing is at the mercy of institutions, corporations, and groups with enough power and determination to subvert the computing infrastructure and exploit its weaknesses. While using substitutes can be convenient, we encourage users to also build on their own, or even run their own build farm, such that the project run substitute servers are less of an interesting target. One way to help is by publishing the software you build using @command{guix publish} so that others have one more choice of server to download substitutes from (@pxref{Invoking guix publish})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4069 +#: guix-git/doc/guix.texi:4087 msgid "Guix has the foundations to maximize build reproducibility (@pxref{Features}). In most cases, independent builds of a given package or derivation should yield bit-identical results. Thus, through a diverse set of independent package builds, we can strengthen the integrity of our systems. The @command{guix challenge} command aims to help users assess substitute servers, and to assist developers in finding out about non-deterministic package builds (@pxref{Invoking guix challenge}). Similarly, the @option{--check} option of @command{guix build} allows users to check whether previously-installed substitutes are genuine by rebuilding them locally (@pxref{build-check, @command{guix build --check}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4073 +#: guix-git/doc/guix.texi:4091 msgid "In the future, we want Guix to have support to publish and retrieve binaries to/from other users, in a peer-to-peer fashion. If you would like to discuss this project, join us on @email{guix-devel@@gnu.org}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4077 +#: guix-git/doc/guix.texi:4095 #, no-wrap msgid "multiple-output packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4078 +#: guix-git/doc/guix.texi:4096 #, no-wrap msgid "package outputs" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4079 +#: guix-git/doc/guix.texi:4097 #, no-wrap msgid "outputs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4089 +#: guix-git/doc/guix.texi:4107 msgid "Often, packages defined in Guix have a single @dfn{output}---i.e., the source package leads to exactly one directory in the store. When running @command{guix install glibc}, one installs the default output of the GNU libc package; the default output is called @code{out}, but its name can be omitted as shown in this command. In this particular case, the default output of @code{glibc} contains all the C header files, shared libraries, static libraries, Info documentation, and other supporting files." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4097 +#: guix-git/doc/guix.texi:4115 msgid "Sometimes it is more appropriate to separate the various types of files produced from a single source package into separate outputs. For instance, the GLib C library (used by GTK+ and related packages) installs more than 20 MiB of reference documentation as HTML pages. To save space for users who do not need it, the documentation goes to a separate output, called @code{doc}. To install the main GLib output, which contains everything but the documentation, one would run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4100 +#: guix-git/doc/guix.texi:4118 #, no-wrap msgid "guix install glib\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4102 guix-git/doc/guix.texi:36368 -#: guix-git/doc/guix.texi:36425 +#: guix-git/doc/guix.texi:4120 guix-git/doc/guix.texi:36858 +#: guix-git/doc/guix.texi:36915 #, no-wrap msgid "documentation" msgstr "문서" #. type: Plain text -#: guix-git/doc/guix.texi:4104 +#: guix-git/doc/guix.texi:4122 msgid "The command to install its documentation is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4107 +#: guix-git/doc/guix.texi:4125 #, no-wrap msgid "guix install glib:doc\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4118 +#: guix-git/doc/guix.texi:4136 msgid "Some packages install programs with different ``dependency footprints''. For instance, the WordNet package installs both command-line tools and graphical user interfaces (GUIs). The former depend solely on the C library, whereas the latter depend on Tcl/Tk and the underlying X libraries. In this case, we leave the command-line tools in the default output, whereas the GUIs are in a separate output. This allows users who do not need the GUIs to save space. The @command{guix size} command can help find out about such situations (@pxref{Invoking guix size}). @command{guix graph} can also be helpful (@pxref{Invoking guix graph})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4126 +#: guix-git/doc/guix.texi:4144 msgid "There are several such multiple-output packages in the GNU distribution. Other conventional output names include @code{lib} for libraries and possibly header files, @code{bin} for stand-alone programs, and @code{debug} for debugging information (@pxref{Installing Debugging Files}). The outputs of a packages are listed in the third column of the output of @command{guix package --list-available} (@pxref{Invoking guix package})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4129 +#: guix-git/doc/guix.texi:4147 #, no-wrap msgid "Invoking @command{guix gc}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4131 +#: guix-git/doc/guix.texi:4149 #, no-wrap msgid "garbage collector" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4132 +#: guix-git/doc/guix.texi:4150 #, no-wrap msgid "disk space" msgstr "디스크 공간" #. type: Plain text -#: guix-git/doc/guix.texi:4138 +#: guix-git/doc/guix.texi:4156 msgid "Packages that are installed, but not used, may be @dfn{garbage-collected}. The @command{guix gc} command allows users to explicitly run the garbage collector to reclaim space from the @file{/gnu/store} directory. It is the @emph{only} way to remove files from @file{/gnu/store}---removing files or directories manually may break it beyond repair!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4149 +#: guix-git/doc/guix.texi:4167 msgid "The garbage collector has a set of known @dfn{roots}: any file under @file{/gnu/store} reachable from a root is considered @dfn{live} and cannot be deleted; any other file is considered @dfn{dead} and may be deleted. The set of garbage collector roots (``GC roots'' for short) includes default user profiles; by default, the symlinks under @file{/var/guix/gcroots} represent these GC roots. New GC roots can be added with @command{guix build --root}, for example (@pxref{Invoking guix build}). The @command{guix gc --list-roots} command lists them." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4155 +#: guix-git/doc/guix.texi:4173 msgid "Prior to running @code{guix gc --collect-garbage} to make space, it is often useful to remove old generations from user profiles; that way, old package builds referenced by those generations can be reclaimed. This is achieved by running @code{guix package --delete-generations} (@pxref{Invoking guix package})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4159 +#: guix-git/doc/guix.texi:4177 msgid "Our recommendation is to run a garbage collection periodically, or when you are short on disk space. For instance, to guarantee that at least 5@tie{}GB are available on your disk, simply run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4162 +#: guix-git/doc/guix.texi:4180 #, no-wrap msgid "guix gc -F 5G\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4171 +#: guix-git/doc/guix.texi:4189 msgid "It is perfectly safe to run as a non-interactive periodic job (@pxref{Scheduled Job Execution}, for how to set up such a job). Running @command{guix gc} with no arguments will collect as much garbage as it can, but that is often inconvenient: you may find yourself having to rebuild or re-download software that is ``dead'' from the GC viewpoint but that is necessary to build other pieces of software---e.g., the compiler tool chain." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4177 +#: guix-git/doc/guix.texi:4195 msgid "The @command{guix gc} command has three modes of operation: it can be used to garbage-collect any dead files (the default), to delete specific files (the @option{--delete} option), to print garbage-collector information, or for more advanced queries. The garbage collection options are as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4179 +#: guix-git/doc/guix.texi:4197 #, no-wrap msgid "--collect-garbage[=@var{min}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4180 +#: guix-git/doc/guix.texi:4198 #, no-wrap msgid "-C [@var{min}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4184 +#: guix-git/doc/guix.texi:4202 msgid "Collect garbage---i.e., unreachable @file{/gnu/store} files and sub-directories. This is the default operation when no option is specified." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4189 +#: guix-git/doc/guix.texi:4207 msgid "When @var{min} is given, stop once @var{min} bytes have been collected. @var{min} may be a number of bytes, or it may include a unit as a suffix, such as @code{MiB} for mebibytes and @code{GB} for gigabytes (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4191 +#: guix-git/doc/guix.texi:4209 msgid "When @var{min} is omitted, collect all the garbage." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4192 +#: guix-git/doc/guix.texi:4210 #, no-wrap msgid "--free-space=@var{free}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4193 +#: guix-git/doc/guix.texi:4211 #, no-wrap msgid "-F @var{free}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4197 +#: guix-git/doc/guix.texi:4215 msgid "Collect garbage until @var{free} space is available under @file{/gnu/store}, if possible; @var{free} denotes storage space, such as @code{500MiB}, as described above." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4200 +#: guix-git/doc/guix.texi:4218 msgid "When @var{free} or more is already available in @file{/gnu/store}, do nothing and exit immediately." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4201 +#: guix-git/doc/guix.texi:4219 #, no-wrap msgid "--delete-generations[=@var{duration}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4202 +#: guix-git/doc/guix.texi:4220 #, no-wrap msgid "-d [@var{duration}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4206 +#: guix-git/doc/guix.texi:4224 msgid "Before starting the garbage collection process, delete all the generations older than @var{duration}, for all the user profiles; when run as root, this applies to all the profiles @emph{of all the users}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4210 +#: guix-git/doc/guix.texi:4228 msgid "For example, this command deletes all the generations of all your profiles that are older than 2 months (except generations that are current), and then proceeds to free space until at least 10 GiB are available:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4213 +#: guix-git/doc/guix.texi:4231 #, no-wrap msgid "guix gc -d 2m -F 10G\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4215 +#: guix-git/doc/guix.texi:4233 #, no-wrap msgid "--delete" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4216 guix-git/doc/guix.texi:5740 +#: guix-git/doc/guix.texi:4234 guix-git/doc/guix.texi:5758 #, no-wrap msgid "-D" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4220 +#: guix-git/doc/guix.texi:4238 msgid "Attempt to delete all the store files and directories specified as arguments. This fails if some of the files are not in the store, or if they are still live." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4221 +#: guix-git/doc/guix.texi:4239 #, no-wrap msgid "--list-failures" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4223 +#: guix-git/doc/guix.texi:4241 msgid "List store items corresponding to cached build failures." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4227 +#: guix-git/doc/guix.texi:4245 msgid "This prints nothing unless the daemon was started with @option{--cache-failures} (@pxref{Invoking guix-daemon, @option{--cache-failures}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4228 +#: guix-git/doc/guix.texi:4246 #, no-wrap msgid "--list-roots" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4231 +#: guix-git/doc/guix.texi:4249 msgid "List the GC roots owned by the user; when run as root, list @emph{all} the GC roots." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4232 +#: guix-git/doc/guix.texi:4250 #, no-wrap msgid "--list-busy" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4235 +#: guix-git/doc/guix.texi:4253 msgid "List store items in use by currently running processes. These store items are effectively considered GC roots: they cannot be deleted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4236 +#: guix-git/doc/guix.texi:4254 #, no-wrap msgid "--clear-failures" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4238 +#: guix-git/doc/guix.texi:4256 msgid "Remove the specified store items from the failed-build cache." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4241 +#: guix-git/doc/guix.texi:4259 msgid "Again, this option only makes sense when the daemon is started with @option{--cache-failures}. Otherwise, it does nothing." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4242 +#: guix-git/doc/guix.texi:4260 #, no-wrap msgid "--list-dead" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4245 +#: guix-git/doc/guix.texi:4263 msgid "Show the list of dead files and directories still present in the store---i.e., files and directories no longer reachable from any root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4246 +#: guix-git/doc/guix.texi:4264 #, no-wrap msgid "--list-live" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4248 +#: guix-git/doc/guix.texi:4266 msgid "Show the list of live store files and directories." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4252 +#: guix-git/doc/guix.texi:4270 msgid "In addition, the references among existing store files can be queried:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4255 +#: guix-git/doc/guix.texi:4273 #, no-wrap msgid "--references" msgstr "--references" #. type: itemx -#: guix-git/doc/guix.texi:4256 +#: guix-git/doc/guix.texi:4274 #, no-wrap msgid "--referrers" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4257 guix-git/doc/guix.texi:13205 +#: guix-git/doc/guix.texi:4275 guix-git/doc/guix.texi:13562 #, no-wrap msgid "package dependencies" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4260 +#: guix-git/doc/guix.texi:4278 msgid "List the references (respectively, the referrers) of store files given as arguments." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4261 +#: guix-git/doc/guix.texi:4279 #, no-wrap msgid "--requisites" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4262 guix-git/doc/guix.texi:6501 +#: guix-git/doc/guix.texi:4280 guix-git/doc/guix.texi:6544 #, no-wrap msgid "-R" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4263 guix-git/doc/guix.texi:13061 -#: guix-git/doc/guix.texi:13089 guix-git/doc/guix.texi:13170 +#: guix-git/doc/guix.texi:4281 guix-git/doc/guix.texi:13418 +#: guix-git/doc/guix.texi:13446 guix-git/doc/guix.texi:13527 #, no-wrap msgid "closure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4268 +#: guix-git/doc/guix.texi:4286 msgid "List the requisites of the store files passed as arguments. Requisites include the store files themselves, their references, and the references of these, recursively. In other words, the returned list is the @dfn{transitive closure} of the store files." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4272 +#: guix-git/doc/guix.texi:4290 msgid "@xref{Invoking guix size}, for a tool to profile the size of the closure of an element. @xref{Invoking guix graph}, for a tool to visualize the graph of references." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4273 +#: guix-git/doc/guix.texi:4291 #, no-wrap msgid "--derivers" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4274 guix-git/doc/guix.texi:6815 -#: guix-git/doc/guix.texi:12917 guix-git/doc/guix.texi:13314 +#: guix-git/doc/guix.texi:4292 guix-git/doc/guix.texi:6858 +#: guix-git/doc/guix.texi:13274 guix-git/doc/guix.texi:13671 #, no-wrap msgid "derivation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4277 +#: guix-git/doc/guix.texi:4295 msgid "Return the derivation(s) leading to the given store items (@pxref{Derivations})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4279 +#: guix-git/doc/guix.texi:4297 msgid "For example, this command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4282 +#: guix-git/doc/guix.texi:4300 #, no-wrap msgid "guix gc --derivers $(guix package -I ^emacs$ | cut -f4)\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4287 +#: guix-git/doc/guix.texi:4305 msgid "returns the @file{.drv} file(s) leading to the @code{emacs} package installed in your profile." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4291 +#: guix-git/doc/guix.texi:4309 msgid "Note that there may be zero matching @file{.drv} files, for instance because these files have been garbage-collected. There can also be more than one matching @file{.drv} due to fixed-output derivations." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4295 +#: guix-git/doc/guix.texi:4313 msgid "Lastly, the following options allow you to check the integrity of the store and to control disk usage." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4298 +#: guix-git/doc/guix.texi:4316 #, no-wrap msgid "--verify[=@var{options}]" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4299 +#: guix-git/doc/guix.texi:4317 #, no-wrap msgid "integrity, of the store" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4300 +#: guix-git/doc/guix.texi:4318 #, no-wrap msgid "integrity checking" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4302 +#: guix-git/doc/guix.texi:4320 msgid "Verify the integrity of the store." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4305 +#: guix-git/doc/guix.texi:4323 msgid "By default, make sure that all the store items marked as valid in the database of the daemon actually exist in @file{/gnu/store}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4308 +#: guix-git/doc/guix.texi:4326 msgid "When provided, @var{options} must be a comma-separated list containing one or more of @code{contents} and @code{repair}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4314 +#: guix-git/doc/guix.texi:4332 msgid "When passing @option{--verify=contents}, the daemon computes the content hash of each store item and compares it against its hash in the database. Hash mismatches are reported as data corruptions. Because it traverses @emph{all the files in the store}, this command can take a long time, especially on systems with a slow disk drive." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4315 +#: guix-git/doc/guix.texi:4333 #, no-wrap msgid "repairing the store" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4316 guix-git/doc/guix.texi:11564 +#: guix-git/doc/guix.texi:4334 guix-git/doc/guix.texi:11878 #, no-wrap msgid "corruption, recovering from" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4324 +#: guix-git/doc/guix.texi:4342 msgid "Using @option{--verify=repair} or @option{--verify=contents,repair} causes the daemon to try to repair corrupt store items by fetching substitutes for them (@pxref{Substitutes}). Because repairing is not atomic, and thus potentially dangerous, it is available only to the system administrator. A lightweight alternative, when you know exactly which items in the store are corrupt, is @command{guix build --repair} (@pxref{Invoking guix build})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4325 +#: guix-git/doc/guix.texi:4343 #, no-wrap msgid "--optimize" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4329 +#: guix-git/doc/guix.texi:4347 msgid "Optimize the store by hard-linking identical files---this is @dfn{deduplication}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4335 +#: guix-git/doc/guix.texi:4353 msgid "The daemon performs deduplication after each successful build or archive import, unless it was started with @option{--disable-deduplication} (@pxref{Invoking guix-daemon, @option{--disable-deduplication}}). Thus, this option is primarily useful when the daemon was running with @option{--disable-deduplication}." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4339 +#: guix-git/doc/guix.texi:4357 #, no-wrap msgid "Invoking @command{guix pull}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4341 +#: guix-git/doc/guix.texi:4359 #, no-wrap msgid "upgrading Guix" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4342 +#: guix-git/doc/guix.texi:4360 #, no-wrap msgid "updating Guix" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:4343 +#: guix-git/doc/guix.texi:4361 #, no-wrap msgid "guix pull" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4344 +#: guix-git/doc/guix.texi:4362 #, no-wrap msgid "pull" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4345 +#: guix-git/doc/guix.texi:4363 #, no-wrap msgid "security, @command{guix pull}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4346 +#: guix-git/doc/guix.texi:4364 #, no-wrap msgid "authenticity, of code obtained with @command{guix pull}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4356 +#: guix-git/doc/guix.texi:4374 msgid "Packages are installed or upgraded to the latest version available in the distribution currently available on your local machine. To update that distribution, along with the Guix tools, you must run @command{guix pull}: the command downloads the latest Guix source code and package descriptions, and deploys it. Source code is downloaded from a @uref{https://git-scm.com, Git} repository, by default the official GNU@tie{}Guix repository, though this can be customized. @command{guix pull} ensures that the code it downloads is @emph{authentic} by verifying that commits are signed by Guix developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4359 +#: guix-git/doc/guix.texi:4377 msgid "Specifically, @command{guix pull} downloads code from the @dfn{channels} (@pxref{Channels}) specified by one of the followings, in this order:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4363 +#: guix-git/doc/guix.texi:4381 msgid "the @option{--channels} option;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4365 +#: guix-git/doc/guix.texi:4383 msgid "the user's @file{~/.config/guix/channels.scm} file;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4367 +#: guix-git/doc/guix.texi:4385 msgid "the system-wide @file{/etc/guix/channels.scm} file;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4370 +#: guix-git/doc/guix.texi:4388 msgid "the built-in default channels specified in the @code{%default-channels} variable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4377 +#: guix-git/doc/guix.texi:4395 msgid "On completion, @command{guix package} will use packages and package versions from this just-retrieved copy of Guix. Not only that, but all the Guix commands and Scheme modules will also be taken from that latest version. New @command{guix} sub-commands added by the update also become available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4383 +#: guix-git/doc/guix.texi:4401 msgid "Any user can update their Guix copy using @command{guix pull}, and the effect is limited to the user who ran @command{guix pull}. For instance, when user @code{root} runs @command{guix pull}, this has no effect on the version of Guix that user @code{alice} sees, and vice versa." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4389 +#: guix-git/doc/guix.texi:4407 msgid "The result of running @command{guix pull} is a @dfn{profile} available under @file{~/.config/guix/current} containing the latest Guix. Thus, make sure to add it to the beginning of your search path so that you use the latest version, and similarly for the Info manual (@pxref{Documentation}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4393 +#: guix-git/doc/guix.texi:4411 #, no-wrap msgid "" "export PATH=\"$HOME/.config/guix/current/bin:$PATH\"\n" @@ -10725,12 +10805,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4397 +#: guix-git/doc/guix.texi:4415 msgid "The @option{--list-generations} or @option{-l} option lists past generations produced by @command{guix pull}, along with details about their provenance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4405 +#: guix-git/doc/guix.texi:4423 #, no-wrap msgid "" "$ guix pull -l\n" @@ -10743,7 +10823,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4415 +#: guix-git/doc/guix.texi:4433 #, no-wrap msgid "" "Generation 2\tJun 11 2018 11:02:49\n" @@ -10759,7 +10839,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4423 +#: guix-git/doc/guix.texi:4441 #, no-wrap msgid "" "Generation 3\tJun 13 2018 23:31:07\t(current)\n" @@ -10772,17 +10852,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4427 +#: guix-git/doc/guix.texi:4445 msgid "@xref{Invoking guix describe, @command{guix describe}}, for other ways to describe the current status of Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4432 +#: guix-git/doc/guix.texi:4450 msgid "This @code{~/.config/guix/current} profile works exactly like the profiles created by @command{guix package} (@pxref{Invoking guix package}). That is, you can list generations, roll back to the previous generation---i.e., the previous Guix---and so on:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4438 +#: guix-git/doc/guix.texi:4456 #, no-wrap msgid "" "$ guix pull --roll-back\n" @@ -10792,12 +10872,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4442 +#: guix-git/doc/guix.texi:4460 msgid "You can also use @command{guix package} (@pxref{Invoking guix package}) to manage the profile by naming it explicitly:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4447 +#: guix-git/doc/guix.texi:4465 #, no-wrap msgid "" "$ guix package -p ~/.config/guix/current --roll-back\n" @@ -10807,354 +10887,355 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4451 +#: guix-git/doc/guix.texi:4469 msgid "The @command{guix pull} command is usually invoked with no arguments, but it supports the following options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4453 guix-git/doc/guix.texi:4611 +#: guix-git/doc/guix.texi:4471 guix-git/doc/guix.texi:4629 #, no-wrap msgid "--url=@var{url}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4454 guix-git/doc/guix.texi:4612 +#: guix-git/doc/guix.texi:4472 guix-git/doc/guix.texi:4630 #, no-wrap msgid "--commit=@var{commit}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4455 guix-git/doc/guix.texi:4613 +#: guix-git/doc/guix.texi:4473 guix-git/doc/guix.texi:4631 #, no-wrap msgid "--branch=@var{branch}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4459 +#: guix-git/doc/guix.texi:4477 msgid "Download code for the @code{guix} channel from the specified @var{url}, at the given @var{commit} (a valid Git commit ID represented as a hexadecimal string), or @var{branch}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4460 guix-git/doc/guix.texi:5057 +#: guix-git/doc/guix.texi:4478 guix-git/doc/guix.texi:5075 #, no-wrap msgid "@file{channels.scm}, configuration file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4461 guix-git/doc/guix.texi:5058 +#: guix-git/doc/guix.texi:4479 guix-git/doc/guix.texi:5076 #, no-wrap msgid "configuration file for channels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4465 +#: guix-git/doc/guix.texi:4483 msgid "These options are provided for convenience, but you can also specify your configuration in the @file{~/.config/guix/channels.scm} file or using the @option{--channels} option (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4466 guix-git/doc/guix.texi:4618 +#: guix-git/doc/guix.texi:4484 guix-git/doc/guix.texi:4636 #, no-wrap msgid "--channels=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4467 guix-git/doc/guix.texi:4619 +#: guix-git/doc/guix.texi:4485 guix-git/doc/guix.texi:4637 #, no-wrap msgid "-C @var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4473 +#: guix-git/doc/guix.texi:4491 msgid "Read the list of channels from @var{file} instead of @file{~/.config/guix/channels.scm} or @file{/etc/guix/channels.scm}. @var{file} must contain Scheme code that evaluates to a list of channel objects. @xref{Channels}, for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4474 +#: guix-git/doc/guix.texi:4492 #, no-wrap msgid "channel news" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4475 +#: guix-git/doc/guix.texi:4493 #, no-wrap msgid "--news" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4476 guix-git/doc/guix.texi:5864 -#: guix-git/doc/guix.texi:6247 guix-git/doc/guix.texi:35304 +#: guix-git/doc/guix.texi:4494 guix-git/doc/guix.texi:5877 +#: guix-git/doc/guix.texi:6290 guix-git/doc/guix.texi:35748 #, no-wrap msgid "-N" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4480 +#: guix-git/doc/guix.texi:4498 msgid "Display the list of packages added or upgraded since the previous generation, as well as, occasionally, news written by channel authors for their users (@pxref{Channels, Writing Channel News})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4484 +#: guix-git/doc/guix.texi:4502 msgid "The package information is the same as displayed upon @command{guix pull} completion, but without ellipses; it is also similar to the output of @command{guix pull -l} for the last generation (see below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4491 +#: guix-git/doc/guix.texi:4509 msgid "List all the generations of @file{~/.config/guix/current} or, if @var{pattern} is provided, the subset of generations that match @var{pattern}. The syntax of @var{pattern} is the same as with @code{guix package --list-generations} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4498 +#: guix-git/doc/guix.texi:4516 msgid "Roll back to the previous @dfn{generation} of @file{~/.config/guix/current}---i.e., undo the last transaction." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4522 +#: guix-git/doc/guix.texi:4540 msgid "If the current generation matches, it is @emph{not} deleted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4528 +#: guix-git/doc/guix.texi:4546 msgid "@xref{Invoking guix describe}, for a way to display information about the current generation only." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4532 +#: guix-git/doc/guix.texi:4550 msgid "Use @var{profile} instead of @file{~/.config/guix/current}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4533 guix-git/doc/guix.texi:10893 -#: guix-git/doc/guix.texi:12836 +#: guix-git/doc/guix.texi:4551 guix-git/doc/guix.texi:11207 +#: guix-git/doc/guix.texi:13162 #, no-wrap msgid "--dry-run" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4534 guix-git/doc/guix.texi:10894 -#: guix-git/doc/guix.texi:12837 guix-git/doc/guix.texi:13043 +#: guix-git/doc/guix.texi:4552 guix-git/doc/guix.texi:11208 +#: guix-git/doc/guix.texi:13163 guix-git/doc/guix.texi:13400 #, no-wrap msgid "-n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4537 +#: guix-git/doc/guix.texi:4555 msgid "Show which channel commit(s) would be used and what would be built or substituted but do not actually do it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4538 guix-git/doc/guix.texi:35323 +#: guix-git/doc/guix.texi:4556 guix-git/doc/guix.texi:35767 +#: guix-git/doc/guix.texi:38198 #, no-wrap msgid "--allow-downgrades" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4541 +#: guix-git/doc/guix.texi:4559 msgid "Allow pulling older or unrelated revisions of channels than those currently in use." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4542 +#: guix-git/doc/guix.texi:4560 #, no-wrap msgid "downgrade attacks, protection against" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4547 +#: guix-git/doc/guix.texi:4565 msgid "By default, @command{guix pull} protects against so-called ``downgrade attacks'' whereby the Git repository of a channel would be reset to an earlier or unrelated revision of itself, potentially leading you to install older, known-vulnerable versions of software packages." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4551 guix-git/doc/guix.texi:35337 +#: guix-git/doc/guix.texi:4569 guix-git/doc/guix.texi:35781 msgid "Make sure you understand its security implications before using @option{--allow-downgrades}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4553 +#: guix-git/doc/guix.texi:4571 #, no-wrap msgid "--disable-authentication" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4555 +#: guix-git/doc/guix.texi:4573 msgid "Allow pulling channel code without authenticating it." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4556 guix-git/doc/guix.texi:5203 +#: guix-git/doc/guix.texi:4574 guix-git/doc/guix.texi:5221 #, no-wrap msgid "authentication, of channel code" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4561 +#: guix-git/doc/guix.texi:4579 msgid "By default, @command{guix pull} authenticates code downloaded from channels by verifying that its commits are signed by authorized developers, and raises an error if this is not the case. This option instructs it to not perform any such verification." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4565 +#: guix-git/doc/guix.texi:4583 msgid "Make sure you understand its security implications before using @option{--disable-authentication}." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4568 guix-git/doc/guix.texi:5847 -#: guix-git/doc/guix.texi:6230 guix-git/doc/guix.texi:6630 -#: guix-git/doc/guix.texi:11506 guix-git/doc/guix.texi:13188 -#: guix-git/doc/guix.texi:13453 guix-git/doc/guix.texi:14130 -#: guix-git/doc/guix.texi:35252 +#: guix-git/doc/guix.texi:4586 guix-git/doc/guix.texi:5860 +#: guix-git/doc/guix.texi:6273 guix-git/doc/guix.texi:6673 +#: guix-git/doc/guix.texi:11820 guix-git/doc/guix.texi:13545 +#: guix-git/doc/guix.texi:13810 guix-git/doc/guix.texi:14487 +#: guix-git/doc/guix.texi:35696 #, no-wrap msgid "-s @var{system}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4571 guix-git/doc/guix.texi:6633 +#: guix-git/doc/guix.texi:4589 guix-git/doc/guix.texi:6676 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of the system type of the build host." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4575 +#: guix-git/doc/guix.texi:4593 msgid "Use the bootstrap Guile to build the latest Guix. This option is only useful to Guix developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4581 +#: guix-git/doc/guix.texi:4599 msgid "The @dfn{channel} mechanism allows you to instruct @command{guix pull} which repository and branch to pull from, as well as @emph{additional} repositories containing package modules that should be deployed. @xref{Channels}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4584 +#: guix-git/doc/guix.texi:4602 msgid "In addition, @command{guix pull} supports all the common build options (@pxref{Common Build Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4586 +#: guix-git/doc/guix.texi:4604 #, no-wrap msgid "Invoking @command{guix time-machine}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:4588 +#: guix-git/doc/guix.texi:4606 #, no-wrap msgid "guix time-machine" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4589 guix-git/doc/guix.texi:5161 +#: guix-git/doc/guix.texi:4607 guix-git/doc/guix.texi:5179 #, no-wrap msgid "pinning, channels" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4590 guix-git/doc/guix.texi:4772 -#: guix-git/doc/guix.texi:5162 +#: guix-git/doc/guix.texi:4608 guix-git/doc/guix.texi:4790 +#: guix-git/doc/guix.texi:5180 #, no-wrap msgid "replicating Guix" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4591 guix-git/doc/guix.texi:5163 +#: guix-git/doc/guix.texi:4609 guix-git/doc/guix.texi:5181 #, no-wrap msgid "reproducibility, of Guix" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4599 +#: guix-git/doc/guix.texi:4617 msgid "The @command{guix time-machine} command provides access to other revisions of Guix, for example to install older versions of packages, or to reproduce a computation in an identical environment. The revision of Guix to be used is defined by a commit or by a channel description file created by @command{guix describe} (@pxref{Invoking guix describe})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4601 guix-git/doc/guix.texi:5623 -#: guix-git/doc/guix.texi:5974 guix-git/doc/guix.texi:6753 -#: guix-git/doc/guix.texi:10689 guix-git/doc/guix.texi:10813 -#: guix-git/doc/guix.texi:11797 guix-git/doc/guix.texi:11892 -#: guix-git/doc/guix.texi:12825 guix-git/doc/guix.texi:13018 -#: guix-git/doc/guix.texi:13511 guix-git/doc/guix.texi:13884 -#: guix-git/doc/guix.texi:13973 guix-git/doc/guix.texi:14012 -#: guix-git/doc/guix.texi:14109 +#: guix-git/doc/guix.texi:4619 guix-git/doc/guix.texi:5641 +#: guix-git/doc/guix.texi:6011 guix-git/doc/guix.texi:6796 +#: guix-git/doc/guix.texi:11003 guix-git/doc/guix.texi:11127 +#: guix-git/doc/guix.texi:12111 guix-git/doc/guix.texi:12207 +#: guix-git/doc/guix.texi:13148 guix-git/doc/guix.texi:13375 +#: guix-git/doc/guix.texi:13868 guix-git/doc/guix.texi:14241 +#: guix-git/doc/guix.texi:14330 guix-git/doc/guix.texi:14369 +#: guix-git/doc/guix.texi:14466 msgid "The general syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4604 +#: guix-git/doc/guix.texi:4622 #, no-wrap msgid "guix time-machine @var{options}@dots{} -- @var{command} @var {arg}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4609 +#: guix-git/doc/guix.texi:4627 msgid "where @var{command} and @var{arg}@dots{} are passed unmodified to the @command{guix} command of the specified revision. The @var{options} that define this revision are the same as for @command{guix pull} (@pxref{Invoking guix pull}):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4617 +#: guix-git/doc/guix.texi:4635 msgid "Use the @code{guix} channel from the specified @var{url}, at the given @var{commit} (a valid Git commit ID represented as a hexadecimal string), or @var{branch}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4623 +#: guix-git/doc/guix.texi:4641 msgid "Read the list of channels from @var{file}. @var{file} must contain Scheme code that evaluates to a list of channel objects. @xref{Channels} for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4627 +#: guix-git/doc/guix.texi:4645 msgid "As for @command{guix pull}, the absence of any options means that the latest commit on the master branch will be used. The command" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4630 +#: guix-git/doc/guix.texi:4648 #, no-wrap msgid "guix time-machine -- build hello\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4635 +#: guix-git/doc/guix.texi:4653 msgid "will thus build the package @code{hello} as defined in the master branch, which is in general a newer revision of Guix than you have installed. Time travel works in both directions!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4639 +#: guix-git/doc/guix.texi:4657 msgid "Note that @command{guix time-machine} can trigger builds of channels and their dependencies, and these are controlled by the standard build options (@pxref{Common Build Options})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4647 +#: guix-git/doc/guix.texi:4665 msgid "The functionality described here is a ``technology preview'' as of version @value{VERSION}. As such, the interface is subject to change." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4649 guix-git/doc/guix.texi:10726 +#: guix-git/doc/guix.texi:4667 guix-git/doc/guix.texi:11040 #, no-wrap msgid "inferiors" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4650 +#: guix-git/doc/guix.texi:4668 #, no-wrap msgid "composition of Guix revisions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4655 +#: guix-git/doc/guix.texi:4673 msgid "Sometimes you might need to mix packages from the revision of Guix you're currently running with packages available in a different revision of Guix. Guix @dfn{inferiors} allow you to achieve that by composing different Guix revisions in arbitrary ways." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4656 guix-git/doc/guix.texi:4721 +#: guix-git/doc/guix.texi:4674 guix-git/doc/guix.texi:4739 #, no-wrap msgid "inferior packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4662 +#: guix-git/doc/guix.texi:4680 msgid "Technically, an ``inferior'' is essentially a separate Guix process connected to your main Guix process through a REPL (@pxref{Invoking guix repl}). The @code{(guix inferior)} module allows you to create inferiors and to communicate with them. It also provides a high-level interface to browse and manipulate the packages that an inferior provides---@dfn{inferior packages}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4672 +#: guix-git/doc/guix.texi:4690 msgid "When combined with channels (@pxref{Channels}), inferiors provide a simple way to interact with a separate revision of Guix. For example, let's assume you want to install in your profile the current @code{guile} package, along with the @code{guile-json} as it existed in an older revision of Guix---perhaps because the newer @code{guile-json} has an incompatible API and you want to run your code against the old API@. To do that, you could write a manifest for use by @code{guix package --manifest} (@pxref{Invoking guix package}); in that manifest, you would create an inferior for that old Guix revision you care about, and you would look up the @code{guile-json} package in the inferior:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4676 +#: guix-git/doc/guix.texi:4694 #, no-wrap msgid "" "(use-modules (guix inferior) (guix channels)\n" @@ -11163,7 +11244,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4685 +#: guix-git/doc/guix.texi:4703 #, no-wrap msgid "" "(define channels\n" @@ -11178,7 +11259,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4689 +#: guix-git/doc/guix.texi:4707 #, no-wrap msgid "" "(define inferior\n" @@ -11188,7 +11269,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4695 +#: guix-git/doc/guix.texi:4713 #, no-wrap msgid "" ";; Now create a manifest with the current \"guile\" package\n" @@ -11199,186 +11280,186 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4700 +#: guix-git/doc/guix.texi:4718 msgid "On its first run, @command{guix package --manifest} might have to build the channel you specified before it can create the inferior; subsequent runs will be much faster because the Guix revision will be cached." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4703 +#: guix-git/doc/guix.texi:4721 msgid "The @code{(guix inferior)} module provides the following procedures to open an inferior:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4704 +#: guix-git/doc/guix.texi:4722 #, no-wrap msgid "{Scheme Procedure} inferior-for-channels @var{channels} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4709 +#: guix-git/doc/guix.texi:4727 msgid "[#:cache-directory] [#:ttl] Return an inferior for @var{channels}, a list of channels. Use the cache at @var{cache-directory}, where entries can be reclaimed after @var{ttl} seconds. This procedure opens a new connection to the build daemon." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4712 +#: guix-git/doc/guix.texi:4730 msgid "As a side effect, this procedure may build or substitute binaries for @var{channels}, which can take time." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4714 +#: guix-git/doc/guix.texi:4732 #, no-wrap msgid "{Scheme Procedure} open-inferior @var{directory} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4719 +#: guix-git/doc/guix.texi:4737 msgid "[#:command \"bin/guix\"] Open the inferior Guix in @var{directory}, running @code{@var{directory}/@var{command} repl} or equivalent. Return @code{#f} if the inferior could not be launched." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4724 +#: guix-git/doc/guix.texi:4742 msgid "The procedures listed below allow you to obtain and manipulate inferior packages." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4725 +#: guix-git/doc/guix.texi:4743 #, no-wrap msgid "{Scheme Procedure} inferior-packages @var{inferior}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4727 +#: guix-git/doc/guix.texi:4745 msgid "Return the list of packages known to @var{inferior}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4729 +#: guix-git/doc/guix.texi:4747 #, no-wrap msgid "{Scheme Procedure} lookup-inferior-packages @var{inferior} @var{name} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4734 +#: guix-git/doc/guix.texi:4752 msgid "[@var{version}] Return the sorted list of inferior packages matching @var{name} in @var{inferior}, with highest version numbers first. If @var{version} is true, return only packages with a version number prefixed by @var{version}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4736 +#: guix-git/doc/guix.texi:4754 #, no-wrap msgid "{Scheme Procedure} inferior-package? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4738 +#: guix-git/doc/guix.texi:4756 msgid "Return true if @var{obj} is an inferior package." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4740 +#: guix-git/doc/guix.texi:4758 #, no-wrap msgid "{Scheme Procedure} inferior-package-name @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4741 +#: guix-git/doc/guix.texi:4759 #, no-wrap msgid "{Scheme Procedure} inferior-package-version @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4742 +#: guix-git/doc/guix.texi:4760 #, no-wrap msgid "{Scheme Procedure} inferior-package-synopsis @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4743 +#: guix-git/doc/guix.texi:4761 #, no-wrap msgid "{Scheme Procedure} inferior-package-description @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4744 +#: guix-git/doc/guix.texi:4762 #, no-wrap msgid "{Scheme Procedure} inferior-package-home-page @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4745 +#: guix-git/doc/guix.texi:4763 #, no-wrap msgid "{Scheme Procedure} inferior-package-location @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4746 +#: guix-git/doc/guix.texi:4764 #, no-wrap msgid "{Scheme Procedure} inferior-package-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4747 +#: guix-git/doc/guix.texi:4765 #, no-wrap msgid "{Scheme Procedure} inferior-package-native-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4748 +#: guix-git/doc/guix.texi:4766 #, no-wrap msgid "{Scheme Procedure} inferior-package-propagated-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4749 +#: guix-git/doc/guix.texi:4767 #, no-wrap msgid "{Scheme Procedure} inferior-package-transitive-propagated-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4750 +#: guix-git/doc/guix.texi:4768 #, no-wrap msgid "{Scheme Procedure} inferior-package-native-search-paths @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4751 +#: guix-git/doc/guix.texi:4769 #, no-wrap msgid "{Scheme Procedure} inferior-package-transitive-native-search-paths @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4752 +#: guix-git/doc/guix.texi:4770 #, no-wrap msgid "{Scheme Procedure} inferior-package-search-paths @var{package}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4757 +#: guix-git/doc/guix.texi:4775 msgid "These procedures are the counterpart of package record accessors (@pxref{package Reference}). Most of them work by querying the inferior @var{package} comes from, so the inferior must still be live when you call these procedures." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4767 +#: guix-git/doc/guix.texi:4785 msgid "Inferior packages can be used transparently like any other package or file-like object in G-expressions (@pxref{G-Expressions}). They are also transparently handled by the @code{packages->manifest} procedure, which is commonly used in manifests (@pxref{Invoking guix package, the @option{--manifest} option of @command{guix package}}). Thus you can insert an inferior package pretty much anywhere you would insert a regular package: in manifests, in the @code{packages} field of your @code{operating-system} declaration, and so on." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4769 +#: guix-git/doc/guix.texi:4787 #, no-wrap msgid "Invoking @command{guix describe}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4780 +#: guix-git/doc/guix.texi:4798 msgid "Often you may want to answer questions like: ``Which revision of Guix am I using?'' or ``Which channels am I using?'' This is useful information in many situations: if you want to @emph{replicate} an environment on a different machine or user account, if you want to report a bug or to determine what change in the channels you are using caused it, or if you want to record your system state for reproducibility purposes. The @command{guix describe} command answers these questions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4784 +#: guix-git/doc/guix.texi:4802 msgid "When run from a @command{guix pull}ed @command{guix}, @command{guix describe} displays the channel(s) that it was built from, including their repository URL and commit IDs (@pxref{Channels}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4792 +#: guix-git/doc/guix.texi:4810 #, no-wrap msgid "" "$ guix describe\n" @@ -11390,17 +11471,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4801 +#: guix-git/doc/guix.texi:4819 msgid "If you're familiar with the Git version control system, this is similar in spirit to @command{git describe}; the output is also similar to that of @command{guix pull --list-generations}, but limited to the current generation (@pxref{Invoking guix pull, the @option{--list-generations} option}). Because the Git commit ID shown above unambiguously refers to a snapshot of Guix, this information is all it takes to describe the revision of Guix you're using, and also to replicate it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4804 +#: guix-git/doc/guix.texi:4822 msgid "To make it easier to replicate Guix, @command{guix describe} can also be asked to return a list of channels instead of the human-readable description above:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4817 +#: guix-git/doc/guix.texi:4835 #, no-wrap msgid "" "$ guix describe -f channels\n" @@ -11417,190 +11498,190 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4826 +#: guix-git/doc/guix.texi:4844 msgid "You can save this to a file and feed it to @command{guix pull -C} on some other machine or at a later point in time, which will instantiate @emph{this exact Guix revision} (@pxref{Invoking guix pull, the @option{-C} option}). From there on, since you're able to deploy the same revision of Guix, you can just as well @emph{replicate a complete software environment}. We humbly think that this is @emph{awesome}, and we hope you'll like it too!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4829 +#: guix-git/doc/guix.texi:4847 msgid "The details of the options supported by @command{guix describe} are as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4831 guix-git/doc/guix.texi:6431 -#: guix-git/doc/guix.texi:14242 +#: guix-git/doc/guix.texi:4849 guix-git/doc/guix.texi:6474 +#: guix-git/doc/guix.texi:14599 #, no-wrap msgid "--format=@var{format}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4832 guix-git/doc/guix.texi:6432 -#: guix-git/doc/guix.texi:14243 +#: guix-git/doc/guix.texi:4850 guix-git/doc/guix.texi:6475 +#: guix-git/doc/guix.texi:14600 #, no-wrap msgid "-f @var{format}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4834 guix-git/doc/guix.texi:14245 +#: guix-git/doc/guix.texi:4852 guix-git/doc/guix.texi:14602 msgid "Produce output in the specified @var{format}, one of:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4836 +#: guix-git/doc/guix.texi:4854 #, no-wrap msgid "human" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4838 +#: guix-git/doc/guix.texi:4856 msgid "produce human-readable output;" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4838 guix-git/doc/guix.texi:5056 +#: guix-git/doc/guix.texi:4856 guix-git/doc/guix.texi:5074 #, no-wrap msgid "channels" msgstr "채널" #. type: table -#: guix-git/doc/guix.texi:4842 +#: guix-git/doc/guix.texi:4860 msgid "produce a list of channel specifications that can be passed to @command{guix pull -C} or installed as @file{~/.config/guix/channels.scm} (@pxref{Invoking guix pull});" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4842 +#: guix-git/doc/guix.texi:4860 #, no-wrap msgid "channels-sans-intro" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4848 +#: guix-git/doc/guix.texi:4866 msgid "like @code{channels}, but omit the @code{introduction} field; use it to produce a channel specification suitable for Guix version 1.1.0 or earlier---the @code{introduction} field has to do with channel authentication (@pxref{Channels, Channel Authentication}) and is not supported by these older versions;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4848 guix-git/doc/guix.texi:12109 +#: guix-git/doc/guix.texi:4866 guix-git/doc/guix.texi:12424 #, no-wrap msgid "json" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4849 +#: guix-git/doc/guix.texi:4867 #, no-wrap msgid "JSON" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4851 +#: guix-git/doc/guix.texi:4869 msgid "produce a list of channel specifications in JSON format;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4851 guix-git/doc/guix.texi:14247 +#: guix-git/doc/guix.texi:4869 guix-git/doc/guix.texi:14604 #, no-wrap msgid "recutils" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4853 +#: guix-git/doc/guix.texi:4871 msgid "produce a list of channel specifications in Recutils format." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4855 +#: guix-git/doc/guix.texi:4873 #, no-wrap msgid "--list-formats" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4857 +#: guix-git/doc/guix.texi:4875 msgid "Display available formats for @option{--format} option." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4861 +#: guix-git/doc/guix.texi:4879 msgid "Display information about @var{profile}." msgstr "@var{profile}에 대해 정보를 표시합니다." #. type: section -#: guix-git/doc/guix.texi:4864 +#: guix-git/doc/guix.texi:4882 #, no-wrap msgid "Invoking @command{guix archive}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:4866 +#: guix-git/doc/guix.texi:4884 #, no-wrap msgid "guix archive" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4867 +#: guix-git/doc/guix.texi:4885 #, no-wrap msgid "archive" msgstr "보관소" #. type: Plain text -#: guix-git/doc/guix.texi:4873 +#: guix-git/doc/guix.texi:4891 msgid "The @command{guix archive} command allows users to @dfn{export} files from the store into a single archive, and to later @dfn{import} them on a machine that runs Guix. In particular, it allows store files to be transferred from one machine to the store on another machine." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4877 +#: guix-git/doc/guix.texi:4895 msgid "If you're looking for a way to produce archives in a format suitable for tools other than Guix, @pxref{Invoking guix pack}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4879 +#: guix-git/doc/guix.texi:4897 #, no-wrap msgid "exporting store items" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4881 +#: guix-git/doc/guix.texi:4899 msgid "To export store files as an archive to standard output, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4884 +#: guix-git/doc/guix.texi:4902 #, no-wrap msgid "guix archive --export @var{options} @var{specifications}...\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4891 +#: guix-git/doc/guix.texi:4909 msgid "@var{specifications} may be either store file names or package specifications, as for @command{guix package} (@pxref{Invoking guix package}). For instance, the following command creates an archive containing the @code{gui} output of the @code{git} package and the main output of @code{emacs}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4894 +#: guix-git/doc/guix.texi:4912 #, no-wrap msgid "guix archive --export git:gui /gnu/store/...-emacs-24.3 > great.nar\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4899 +#: guix-git/doc/guix.texi:4917 msgid "If the specified packages are not built yet, @command{guix archive} automatically builds them. The build process may be controlled with the common build options (@pxref{Common Build Options})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4902 +#: guix-git/doc/guix.texi:4920 msgid "To transfer the @code{emacs} package to a machine connected over SSH, one would run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4905 +#: guix-git/doc/guix.texi:4923 #, no-wrap msgid "guix archive --export -r emacs | ssh the-machine guix archive --import\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4910 +#: guix-git/doc/guix.texi:4928 msgid "Similarly, a complete user profile may be transferred from one machine to another like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4914 +#: guix-git/doc/guix.texi:4932 #, no-wrap msgid "" "guix archive --export -r $(readlink -f ~/.guix-profile) | \\\n" @@ -11608,187 +11689,187 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4924 +#: guix-git/doc/guix.texi:4942 msgid "However, note that, in both examples, all of @code{emacs} and the profile as well as all of their dependencies are transferred (due to @option{-r}), regardless of what is already available in the store on the target machine. The @option{--missing} option can help figure out which items are missing from the target store. The @command{guix copy} command simplifies and optimizes this whole process, so this is probably what you should use in this case (@pxref{Invoking guix copy})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4925 +#: guix-git/doc/guix.texi:4943 #, no-wrap msgid "nar, archive format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4926 +#: guix-git/doc/guix.texi:4944 #, no-wrap msgid "normalized archive (nar)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4927 +#: guix-git/doc/guix.texi:4945 #, no-wrap msgid "nar bundle, archive format" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4932 +#: guix-git/doc/guix.texi:4950 msgid "Each store item is written in the @dfn{normalized archive} or @dfn{nar} format (described below), and the output of @command{guix archive --export} (and input of @command{guix archive --import}) is a @dfn{nar bundle}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4942 +#: guix-git/doc/guix.texi:4960 msgid "The nar format is comparable in spirit to `tar', but with differences that make it more appropriate for our purposes. First, rather than recording all Unix metadata for each file, the nar format only mentions the file type (regular, directory, or symbolic link); Unix permissions and owner/group are dismissed. Second, the order in which directory entries are stored always follows the order of file names according to the C locale collation order. This makes archive production fully deterministic." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4946 +#: guix-git/doc/guix.texi:4964 msgid "That nar bundle format is essentially the concatenation of zero or more nars along with metadata for each store item it contains: its file name, references, corresponding derivation, and a digital signature." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4952 +#: guix-git/doc/guix.texi:4970 msgid "When exporting, the daemon digitally signs the contents of the archive, and that digital signature is appended. When importing, the daemon verifies the signature and rejects the import in case of an invalid signature or if the signing key is not authorized." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4954 +#: guix-git/doc/guix.texi:4972 msgid "The main options are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4956 +#: guix-git/doc/guix.texi:4974 #, no-wrap msgid "--export" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4959 +#: guix-git/doc/guix.texi:4977 msgid "Export the specified store files or packages (see below). Write the resulting archive to the standard output." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4962 +#: guix-git/doc/guix.texi:4980 msgid "Dependencies are @emph{not} included in the output, unless @option{--recursive} is passed." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4963 guix-git/doc/guix.texi:11830 -#: guix-git/doc/guix.texi:11956 guix-git/doc/guix.texi:11981 -#: guix-git/doc/guix.texi:12013 guix-git/doc/guix.texi:12184 -#: guix-git/doc/guix.texi:12225 guix-git/doc/guix.texi:12276 -#: guix-git/doc/guix.texi:12301 guix-git/doc/guix.texi:12317 -#: guix-git/doc/guix.texi:12365 guix-git/doc/guix.texi:12401 +#: guix-git/doc/guix.texi:4981 guix-git/doc/guix.texi:12144 +#: guix-git/doc/guix.texi:12271 guix-git/doc/guix.texi:12296 +#: guix-git/doc/guix.texi:12328 guix-git/doc/guix.texi:12499 +#: guix-git/doc/guix.texi:12540 guix-git/doc/guix.texi:12591 +#: guix-git/doc/guix.texi:12616 guix-git/doc/guix.texi:12632 +#: guix-git/doc/guix.texi:12680 guix-git/doc/guix.texi:12716 #, no-wrap msgid "-r" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4964 guix-git/doc/guix.texi:11829 -#: guix-git/doc/guix.texi:11955 guix-git/doc/guix.texi:11980 -#: guix-git/doc/guix.texi:12012 guix-git/doc/guix.texi:12183 -#: guix-git/doc/guix.texi:12224 guix-git/doc/guix.texi:12275 -#: guix-git/doc/guix.texi:12300 guix-git/doc/guix.texi:12316 -#: guix-git/doc/guix.texi:12364 guix-git/doc/guix.texi:12400 -#: guix-git/doc/guix.texi:12449 +#: guix-git/doc/guix.texi:4982 guix-git/doc/guix.texi:12143 +#: guix-git/doc/guix.texi:12270 guix-git/doc/guix.texi:12295 +#: guix-git/doc/guix.texi:12327 guix-git/doc/guix.texi:12498 +#: guix-git/doc/guix.texi:12539 guix-git/doc/guix.texi:12590 +#: guix-git/doc/guix.texi:12615 guix-git/doc/guix.texi:12631 +#: guix-git/doc/guix.texi:12679 guix-git/doc/guix.texi:12715 +#: guix-git/doc/guix.texi:12764 #, no-wrap msgid "--recursive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4969 +#: guix-git/doc/guix.texi:4987 msgid "When combined with @option{--export}, this instructs @command{guix archive} to include dependencies of the given items in the archive. Thus, the resulting archive is self-contained: it contains the closure of the exported store items." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4970 +#: guix-git/doc/guix.texi:4988 #, no-wrap msgid "--import" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4975 +#: guix-git/doc/guix.texi:4993 msgid "Read an archive from the standard input, and import the files listed therein into the store. Abort if the archive has an invalid digital signature, or if it is signed by a public key not among the authorized keys (see @option{--authorize} below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4976 +#: guix-git/doc/guix.texi:4994 #, no-wrap msgid "--missing" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4980 +#: guix-git/doc/guix.texi:4998 msgid "Read a list of store file names from the standard input, one per line, and write on the standard output the subset of these files missing from the store." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4981 +#: guix-git/doc/guix.texi:4999 #, no-wrap msgid "--generate-key[=@var{parameters}]" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4982 +#: guix-git/doc/guix.texi:5000 #, no-wrap msgid "signing, archives" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4989 +#: guix-git/doc/guix.texi:5007 msgid "Generate a new key pair for the daemon. This is a prerequisite before archives can be exported with @option{--export}. This operation is usually instantaneous but it can take time if the system's entropy pool needs to be refilled. On Guix System, @code{guix-service-type} takes care of generating this key pair the first boot." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4999 +#: guix-git/doc/guix.texi:5017 msgid "The generated key pair is typically stored under @file{/etc/guix}, in @file{signing-key.pub} (public key) and @file{signing-key.sec} (private key, which must be kept secret). When @var{parameters} is omitted, an ECDSA key using the Ed25519 curve is generated, or, for Libgcrypt versions before 1.6.0, it is a 4096-bit RSA key. Alternatively, @var{parameters} can specify @code{genkey} parameters suitable for Libgcrypt (@pxref{General public-key related Functions, @code{gcry_pk_genkey},, gcrypt, The Libgcrypt Reference Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5000 +#: guix-git/doc/guix.texi:5018 #, no-wrap msgid "--authorize" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5001 +#: guix-git/doc/guix.texi:5019 #, no-wrap msgid "authorizing, archives" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5005 +#: guix-git/doc/guix.texi:5023 msgid "Authorize imports signed by the public key passed on standard input. The public key must be in ``s-expression advanced format''---i.e., the same format as the @file{signing-key.pub} file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5012 +#: guix-git/doc/guix.texi:5030 msgid "The list of authorized keys is kept in the human-editable file @file{/etc/guix/acl}. The file contains @url{https://people.csail.mit.edu/rivest/Sexp.txt, ``advanced-format s-expressions''} and is structured as an access-control list in the @url{https://theworld.com/~cme/spki.txt, Simple Public-Key Infrastructure (SPKI)}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5013 +#: guix-git/doc/guix.texi:5031 #, no-wrap msgid "--extract=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5014 +#: guix-git/doc/guix.texi:5032 #, no-wrap msgid "-x @var{directory}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5018 +#: guix-git/doc/guix.texi:5036 msgid "Read a single-item archive as served by substitute servers (@pxref{Substitutes}) and extract it to @var{directory}. This is a low-level operation needed in only very narrow use cases; see below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5021 +#: guix-git/doc/guix.texi:5039 msgid "For example, the following command extracts the substitute for Emacs served by @code{@value{SUBSTITUTE-SERVER-1}} to @file{/tmp/emacs}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5026 +#: guix-git/doc/guix.texi:5044 #, no-wrap msgid "" "$ wget -O - \\\n" @@ -11797,35 +11878,35 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5033 +#: guix-git/doc/guix.texi:5051 msgid "Single-item archives are different from multiple-item archives produced by @command{guix archive --export}; they contain a single store item, and they do @emph{not} embed a signature. Thus this operation does @emph{no} signature verification and its output should be considered unsafe." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5037 +#: guix-git/doc/guix.texi:5055 msgid "The primary purpose of this operation is to facilitate inspection of archive contents coming from possibly untrusted substitute servers (@pxref{Invoking guix challenge})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5038 +#: guix-git/doc/guix.texi:5056 #, no-wrap msgid "--list" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5039 guix-git/doc/guix.texi:12171 -#: guix-git/doc/guix.texi:12218 +#: guix-git/doc/guix.texi:5057 guix-git/doc/guix.texi:12486 +#: guix-git/doc/guix.texi:12533 #, no-wrap msgid "-t" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5043 +#: guix-git/doc/guix.texi:5061 msgid "Read a single-item archive as served by substitute servers (@pxref{Substitutes}) and print the list of files it contains, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5048 +#: guix-git/doc/guix.texi:5066 #, no-wrap msgid "" "$ wget -O - \\\n" @@ -11834,47 +11915,47 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5059 +#: guix-git/doc/guix.texi:5077 #, no-wrap msgid "@command{guix pull}, configuration file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5060 +#: guix-git/doc/guix.texi:5078 #, no-wrap msgid "configuration of @command{guix pull}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5071 +#: guix-git/doc/guix.texi:5089 msgid "Guix and its package collection are updated by running @command{guix pull} (@pxref{Invoking guix pull}). By default @command{guix pull} downloads and deploys Guix itself from the official GNU@tie{}Guix repository. This can be customized by defining @dfn{channels} in the @file{~/.config/guix/channels.scm} file. A channel specifies a URL and branch of a Git repository to be deployed, and @command{guix pull} can be instructed to pull from one or more channels. In other words, channels can be used to @emph{customize} and to @emph{extend} Guix, as we will see below. Guix is able to take into account security concerns and deal with authenticated updates." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5089 +#: guix-git/doc/guix.texi:5107 #, no-wrap msgid "extending the package collection (channels)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5090 +#: guix-git/doc/guix.texi:5108 #, no-wrap msgid "variant packages (channels)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5094 +#: guix-git/doc/guix.texi:5112 msgid "You can specify @emph{additional channels} to pull from. To use a channel, write @code{~/.config/guix/channels.scm} to instruct @command{guix pull} to pull from it @emph{in addition} to the default Guix channel(s):" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:5095 +#: guix-git/doc/guix.texi:5113 #, no-wrap msgid "%default-channels" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5120 #, no-wrap msgid "" ";; Add variant packages to those Guix provides.\n" @@ -11885,12 +11966,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5112 +#: guix-git/doc/guix.texi:5130 msgid "Note that the snippet above is (as always!)@: Scheme code; we use @code{cons} to add a channel the list of channels that the variable @code{%default-channels} is bound to (@pxref{Pairs, @code{cons} and lists,, guile, GNU Guile Reference Manual}). With this file in place, @command{guix pull} builds not only Guix but also the package modules from your own repository. The result in @file{~/.config/guix/current} is the union of Guix with your own package modules:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5127 +#: guix-git/doc/guix.texi:5145 #, no-wrap msgid "" "$ guix pull --list-generations\n" @@ -11909,17 +11990,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5135 +#: guix-git/doc/guix.texi:5153 msgid "The output of @command{guix pull} above shows that Generation@tie{}19 includes both Guix and packages from the @code{variant-personal-packages} channel. Among the new and upgraded packages that are listed, some like @code{variant-gimp} and @code{variant-emacs-with-cool-features} might come from @code{variant-packages}, while others come from the Guix default channel." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5144 +#: guix-git/doc/guix.texi:5162 msgid "The channel called @code{guix} specifies where Guix itself---its command-line tools as well as its package collection---should be downloaded. For instance, suppose you want to update from another copy of the Guix repository at @code{example.org}, and specifically the @code{super-hacks} branch, you can write in @code{~/.config/guix/channels.scm} this specification:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5151 +#: guix-git/doc/guix.texi:5169 #, no-wrap msgid "" ";; Tell 'guix pull' to use another repo.\n" @@ -11930,17 +12011,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5157 +#: guix-git/doc/guix.texi:5175 msgid "From there on, @command{guix pull} will fetch code from the @code{super-hacks} branch of the repository at @code{example.org}. The authentication concern is addressed below ((@pxref{Channel Authentication})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5168 +#: guix-git/doc/guix.texi:5186 msgid "The @command{guix pull --list-generations} output above shows precisely which commits were used to build this instance of Guix. We can thus replicate it, say, on another machine, by providing a channel specification in @file{~/.config/guix/channels.scm} that is ``pinned'' to these commits:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5179 +#: guix-git/doc/guix.texi:5197 #, no-wrap msgid "" ";; Deploy specific commits of my channels of interest.\n" @@ -11955,37 +12036,37 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5186 +#: guix-git/doc/guix.texi:5204 msgid "The @command{guix describe --format=channels} command can even generate this list of channels directly (@pxref{Invoking guix describe}). The resulting file can be used with the -C options of @command{guix pull} (@pxref{Invoking guix pull}) or @command{guix time-machine} (@pxref{Invoking guix time-machine})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5193 +#: guix-git/doc/guix.texi:5211 msgid "At this point the two machines run the @emph{exact same Guix}, with access to the @emph{exact same packages}. The output of @command{guix build gimp} on one machine will be exactly the same, bit for bit, as the output of the same command on the other machine. It also means both machines have access to all the source code of Guix and, transitively, to all the source code of every package it defines." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5198 +#: guix-git/doc/guix.texi:5216 msgid "This gives you super powers, allowing you to track the provenance of binary artifacts with very fine grain, and to reproduce software environments at will---some sort of ``meta reproducibility'' capabilities, if you will. @xref{Inferiors}, for another way to take advantage of these super powers." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:5203 +#: guix-git/doc/guix.texi:5221 msgid "channel-authentication" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5209 +#: guix-git/doc/guix.texi:5227 msgid "The @command{guix pull} and @command{guix time-machine} commands @dfn{authenticate} the code retrieved from channels: they make sure each commit that is fetched is signed by an authorized developer. The goal is to protect from unauthorized modifications to the channel that would lead users to run malicious code." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5214 +#: guix-git/doc/guix.texi:5232 msgid "As a user, you must provide a @dfn{channel introduction} in your channels file so that Guix knows how to authenticate its first commit. A channel specification, including its introduction, looks something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5224 +#: guix-git/doc/guix.texi:5242 #, no-wrap msgid "" "(channel\n" @@ -11999,27 +12080,27 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5230 +#: guix-git/doc/guix.texi:5248 msgid "The specification above shows the name and URL of the channel. The call to @code{make-channel-introduction} above specifies that authentication of this channel starts at commit @code{6f0d8cc@dots{}}, which is signed by the OpenPGP key with fingerprint @code{CABB A931@dots{}}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5236 +#: guix-git/doc/guix.texi:5254 msgid "For the main channel, called @code{guix}, you automatically get that information from your Guix installation. For other channels, include the channel introduction provided by the channel authors in your @file{channels.scm} file. Make sure you retrieve the channel introduction from a trusted source since that is the root of your trust." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5238 +#: guix-git/doc/guix.texi:5256 msgid "If you're curious about the authentication mechanics, read on!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5249 +#: guix-git/doc/guix.texi:5267 msgid "When running @command{guix pull}, Guix will first compile the definitions of every available package. This is an expensive operation for which substitutes (@pxref{Substitutes}) may be available. The following snippet in @file{channels.scm} will ensure that @command{guix pull} uses the latest commit with available substitutes for the package definitions: this is done by querying the continuous integration server at @url{https://ci.guix.gnu.org}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5252 +#: guix-git/doc/guix.texi:5270 #, no-wrap msgid "" "(use-modules (guix ci))\n" @@ -12027,7 +12108,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5256 +#: guix-git/doc/guix.texi:5274 #, no-wrap msgid "" "(list (channel-with-substitutes-available\n" @@ -12036,75 +12117,75 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5263 +#: guix-git/doc/guix.texi:5281 msgid "Note that this does not mean that all the packages that you will install after running @command{guix pull} will have available substitutes. It only ensures that @command{guix pull} will not try to compile package definitions. This is particularly useful when using machines with limited resources." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5267 +#: guix-git/doc/guix.texi:5285 #, no-wrap msgid "personal packages (channels)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5268 +#: guix-git/doc/guix.texi:5286 #, no-wrap msgid "channels, for personal packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5276 +#: guix-git/doc/guix.texi:5294 msgid "Let's say you have a bunch of custom package variants or personal packages that you think would make little sense to contribute to the Guix project, but would like to have these packages transparently available to you at the command line. You would first write modules containing those package definitions (@pxref{Package Modules}), maintain them in a Git repository, and then you and anyone else can use it as an additional channel to get packages from. Neat, no?" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5284 +#: guix-git/doc/guix.texi:5302 msgid "Before you, dear user, shout---``woow this is @emph{soooo coool}!''---and publish your personal channel to the world, we would like to share a few words of caution:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:5292 +#: guix-git/doc/guix.texi:5310 msgid "Before publishing a channel, please consider contributing your package definitions to Guix proper (@pxref{Contributing}). Guix as a project is open to free software of all sorts, and packages in Guix proper are readily available to all Guix users and benefit from the project's quality assurance process." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:5301 +#: guix-git/doc/guix.texi:5319 msgid "When you maintain package definitions outside Guix, we, Guix developers, consider that @emph{the compatibility burden is on you}. Remember that package modules and package definitions are just Scheme code that uses various programming interfaces (APIs). We want to remain free to change these APIs to keep improving Guix, possibly in ways that break your channel. We never change APIs gratuitously, but we will @emph{not} commit to freezing APIs either." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:5305 +#: guix-git/doc/guix.texi:5323 msgid "Corollary: if you're using an external channel and that channel breaks, please @emph{report the issue to the channel authors}, not to the Guix project." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5312 +#: guix-git/doc/guix.texi:5330 msgid "You've been warned! Having said this, we believe external channels are a practical way to exert your freedom to augment Guix' package collection and to share your improvements, which are basic tenets of @uref{https://www.gnu.org/philosophy/free-sw.html, free software}. Please email us at @email{guix-devel@@gnu.org} if you'd like to discuss this." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5324 +#: guix-git/doc/guix.texi:5342 msgid "To create a channel, create a Git repository containing your own package modules and make it available. The repository can contain anything, but a useful channel will contain Guile modules that export packages. Once you start using a channel, Guix will behave as if the root directory of that channel's Git repository has been added to the Guile load path (@pxref{Load Paths,,, guile, GNU Guile Reference Manual}). For example, if your channel contains a file at @file{my-packages/my-tools.scm} that defines a Guile module, then the module will be available under the name @code{(my-packages my-tools)}, and you will be able to use it like any other module (@pxref{Modules,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5329 +#: guix-git/doc/guix.texi:5347 msgid "As a channel author, consider bundling authentication material with your channel so that users can authenticate it. @xref{Channel Authentication}, and @ref{Specifying Channel Authorizations}, for info on how to do it." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5334 +#: guix-git/doc/guix.texi:5352 #, no-wrap msgid "subdirectory, channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5338 +#: guix-git/doc/guix.texi:5356 msgid "As a channel author, you may want to keep your channel modules in a sub-directory. If your modules are in the sub-directory @file{guix}, you must add a meta-data file @file{.guix-channel} that contains:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5343 +#: guix-git/doc/guix.texi:5361 #, no-wrap msgid "" "(channel\n" @@ -12113,29 +12194,29 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5348 +#: guix-git/doc/guix.texi:5366 #, no-wrap msgid "dependencies, channels" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5349 +#: guix-git/doc/guix.texi:5367 #, no-wrap msgid "meta-data, channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5354 +#: guix-git/doc/guix.texi:5372 msgid "Channel authors may decide to augment a package collection provided by other channels. They can declare their channel to be dependent on other channels in a meta-data file @file{.guix-channel}, which is to be placed in the root of the channel repository." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5356 +#: guix-git/doc/guix.texi:5374 msgid "The meta-data file should contain a simple S-expression like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5364 +#: guix-git/doc/guix.texi:5382 #, no-wrap msgid "" "(channel\n" @@ -12148,7 +12229,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5376 +#: guix-git/doc/guix.texi:5394 #, no-wrap msgid "" " ;; The 'introduction' bit below is optional: you would\n" @@ -12165,33 +12246,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5382 +#: guix-git/doc/guix.texi:5400 msgid "In the above example this channel is declared to depend on two other channels, which will both be fetched automatically. The modules provided by the channel will be compiled in an environment where the modules of all these declared channels are available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5386 +#: guix-git/doc/guix.texi:5404 msgid "For the sake of reliability and maintainability, you should avoid dependencies on channels that you don't control, and you should aim to keep the number of dependencies to a minimum." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5390 +#: guix-git/doc/guix.texi:5408 #, no-wrap msgid "channel authorizations" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:5404 +#: guix-git/doc/guix.texi:5422 msgid "channel-authorizations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5404 +#: guix-git/doc/guix.texi:5422 msgid "As we saw above, Guix ensures the source code it pulls from channels comes from authorized developers. As a channel author, you need to specify the list of authorized developers in the @file{.guix-authorizations} file in the channel's Git repository. The authentication rule is simple: each commit must be signed by a key listed in the @file{.guix-authorizations} file of its parent commit(s)@footnote{Git commits form a @dfn{directed acyclic graph} (DAG). Each commit can have zero or more parents; ``regular'' commits have one parent and merge commits have two parent commits. Read @uref{https://eagain.net/articles/git-for-computer-scientists/, @i{Git for Computer Scientists}} for a great overview.} The @file{.guix-authorizations} file looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5407 +#: guix-git/doc/guix.texi:5425 #, no-wrap msgid "" ";; Example '.guix-authorizations' file.\n" @@ -12199,7 +12280,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5410 +#: guix-git/doc/guix.texi:5428 #, no-wrap msgid "" "(authorizations\n" @@ -12208,7 +12289,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5417 +#: guix-git/doc/guix.texi:5435 #, no-wrap msgid "" " ((\"AD17 A21E F8AE D8F1 CC02 DBD9 F8AE D8F1 765C 61E3\"\n" @@ -12220,33 +12301,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5421 +#: guix-git/doc/guix.texi:5439 msgid "Each fingerprint is followed by optional key/value pairs, as in the example above. Currently these key/value pairs are ignored." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5426 +#: guix-git/doc/guix.texi:5444 msgid "This authentication rule creates a chicken-and-egg issue: how do we authenticate the first commit? Related to that: how do we deal with channels whose repository history contains unsigned commits and lack @file{.guix-authorizations}? And how do we fork existing channels?" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5427 +#: guix-git/doc/guix.texi:5445 #, no-wrap msgid "channel introduction" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5434 +#: guix-git/doc/guix.texi:5452 msgid "Channel introductions answer these questions by describing the first commit of a channel that should be authenticated. The first time a channel is fetched with @command{guix pull} or @command{guix time-machine}, the command looks up the introductory commit and verifies that it is signed by the specified OpenPGP key. From then on, it authenticates commits according to the rule above." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5441 +#: guix-git/doc/guix.texi:5459 msgid "Additionally, your channel must provide all the OpenPGP keys that were ever mentioned in @file{.guix-authorizations}, stored as @file{.key} files, which can be either binary or ``ASCII-armored''. By default, those @file{.key} files are searched for in the branch named @code{keyring} but you can specify a different branch name in @code{.guix-channel} like so:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5446 +#: guix-git/doc/guix.texi:5464 #, no-wrap msgid "" "(channel\n" @@ -12255,59 +12336,59 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5450 +#: guix-git/doc/guix.texi:5468 msgid "To summarize, as the author of a channel, there are three things you have to do to allow users to authenticate your code:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:5456 +#: guix-git/doc/guix.texi:5474 msgid "Export the OpenPGP keys of past and present committers with @command{gpg --export} and store them in @file{.key} files, by default in a branch named @code{keyring} (we recommend making it an @dfn{orphan branch})." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:5461 +#: guix-git/doc/guix.texi:5479 msgid "Introduce an initial @file{.guix-authorizations} in the channel's repository. Do that in a signed commit (@pxref{Commit Access}, for information on how to sign Git commits.)" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:5467 +#: guix-git/doc/guix.texi:5485 msgid "Advertise the channel introduction, for instance on your channel's web page. The channel introduction, as we saw above, is the commit/key pair---i.e., the commit that introduced @file{.guix-authorizations}, and the fingerprint of the OpenPGP used to sign it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5472 +#: guix-git/doc/guix.texi:5490 msgid "Before pushing to your public Git repository, you can run @command{guix git-authenticate} to verify that you did sign all the commits you are about to push with an authorized key:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5475 +#: guix-git/doc/guix.texi:5493 #, no-wrap msgid "guix git authenticate @var{commit} @var{signer}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5480 +#: guix-git/doc/guix.texi:5498 msgid "where @var{commit} and @var{signer} are your channel introduction. @xref{Invoking guix git authenticate}, for details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5487 +#: guix-git/doc/guix.texi:5505 msgid "Publishing a signed channel requires discipline: any mistake, such as an unsigned commit or a commit signed by an unauthorized key, will prevent users from pulling from your channel---well, that's the whole point of authentication! Pay attention to merges in particular: merge commits are considered authentic if and only if they are signed by a key present in the @file{.guix-authorizations} file of @emph{both} branches." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5491 +#: guix-git/doc/guix.texi:5509 #, no-wrap msgid "primary URL, channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5494 +#: guix-git/doc/guix.texi:5512 msgid "Channel authors can indicate the primary URL of their channel's Git repository in the @file{.guix-channel} file, like so:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5499 +#: guix-git/doc/guix.texi:5517 #, no-wrap msgid "" "(channel\n" @@ -12316,38 +12397,38 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5506 +#: guix-git/doc/guix.texi:5524 msgid "This allows @command{guix pull} to determine whether it is pulling code from a mirror of the channel; when that is the case, it warns the user that the mirror might be stale and displays the primary URL@. That way, users cannot be tricked into fetching code from a stale mirror that does not receive security updates." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5510 +#: guix-git/doc/guix.texi:5528 msgid "This feature only makes sense for authenticated repositories, such as the official @code{guix} channel, for which @command{guix pull} ensures the code it fetches is authentic." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5514 +#: guix-git/doc/guix.texi:5532 #, no-wrap msgid "news, for channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5518 +#: guix-git/doc/guix.texi:5536 msgid "Channel authors may occasionally want to communicate to their users information about important changes in the channel. You'd send them all an email, but that's not convenient." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5523 +#: guix-git/doc/guix.texi:5541 msgid "Instead, channels can provide a @dfn{news file}; when the channel users run @command{guix pull}, that news file is automatically read and @command{guix pull --news} can display the announcements that correspond to the new commits that have been pulled, if any." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5526 +#: guix-git/doc/guix.texi:5544 msgid "To do that, channel authors must first declare the name of the news file in their @file{.guix-channel} file:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5531 +#: guix-git/doc/guix.texi:5549 #, no-wrap msgid "" "(channel\n" @@ -12356,12 +12437,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5535 +#: guix-git/doc/guix.texi:5553 msgid "The news file itself, @file{etc/news.txt} in this example, must look something like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5548 +#: guix-git/doc/guix.texi:5566 #, no-wrap msgid "" "(channel-news\n" @@ -12378,165 +12459,165 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5555 +#: guix-git/doc/guix.texi:5573 msgid "While the news file is using the Scheme syntax, avoid naming it with a @file{.scm} extension or else it will get picked up when building the channel and yield an error since it is not a valid module. Alternatively, you can move the channel module to a subdirectory and store the news file in another directory." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5560 +#: guix-git/doc/guix.texi:5578 msgid "The file consists of a list of @dfn{news entries}. Each entry is associated with a commit or tag: it describes changes made in this commit, possibly in preceding commits as well. Users see entries only the first time they obtain the commit the entry refers to." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5566 +#: guix-git/doc/guix.texi:5584 msgid "The @code{title} field should be a one-line summary while @code{body} can be arbitrarily long, and both can contain Texinfo markup (@pxref{Overview,,, texinfo, GNU Texinfo}). Both the title and body are a list of language tag/message tuples, which allows @command{guix pull} to display news in the language that corresponds to the user's locale." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5572 +#: guix-git/doc/guix.texi:5590 msgid "If you want to translate news using a gettext-based workflow, you can extract translatable strings with @command{xgettext} (@pxref{xgettext Invocation,,, gettext, GNU Gettext Utilities}). For example, assuming you write news entries in English first, the command below creates a PO file containing the strings to translate:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5575 +#: guix-git/doc/guix.texi:5593 #, no-wrap msgid "xgettext -o news.po -l scheme -ken etc/news.txt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5579 +#: guix-git/doc/guix.texi:5597 msgid "To sum up, yes, you could use your channel as a blog. But beware, this is @emph{not quite} what your users might expect." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5584 +#: guix-git/doc/guix.texi:5602 #, no-wrap msgid "software development" msgstr "소프트웨어 개발" #. type: Plain text -#: guix-git/doc/guix.texi:5588 +#: guix-git/doc/guix.texi:5606 msgid "If you are a software developer, Guix provides tools that you should find helpful---independently of the language you're developing in. This is what this chapter is about." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5594 +#: guix-git/doc/guix.texi:5612 msgid "The @command{guix shell} command provides a convenient way to set up one-off software environments, be it for development purposes or to run a command without installing it in your profile. The @command{guix pack} command allows you to create @dfn{application bundles} that can be easily distributed to users who do not run Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:5604 +#: guix-git/doc/guix.texi:5622 #, fuzzy, no-wrap #| msgid "Invoking guix-daemon" msgid "Invoking @command{guix shell}" msgstr "guix-데몬 호출하기" #. type: cindex -#: guix-git/doc/guix.texi:5606 +#: guix-git/doc/guix.texi:5624 #, no-wrap msgid "reproducible build environments" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5607 +#: guix-git/doc/guix.texi:5625 #, no-wrap msgid "development environments" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:5608 +#: guix-git/doc/guix.texi:5626 #, no-wrap msgid "guix environment" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5609 +#: guix-git/doc/guix.texi:5627 #, no-wrap msgid "environment, package build environment" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5614 +#: guix-git/doc/guix.texi:5632 msgid "The purpose of @command{guix shell} is to make it easy to create one-off software environments, without changing one's profile. It is typically used to create development environments; it is also a convenient way to run applications without ``polluting'' your profile." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5620 +#: guix-git/doc/guix.texi:5638 msgid "The @command{guix shell} command was recently introduced to supersede @command{guix environment} (@pxref{Invoking guix environment}). If you are familiar with @command{guix environment}, you will notice that it is similar but also---we hope!---more convenient." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5626 +#: guix-git/doc/guix.texi:5644 #, no-wrap msgid "guix shell [@var{options}] [@var{package}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5631 +#: guix-git/doc/guix.texi:5649 msgid "The following example creates an environment containing Python and NumPy, building or downloading any missing package, and runs the @command{python3} command in that environment:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5634 +#: guix-git/doc/guix.texi:5652 #, no-wrap msgid "guix shell python python-numpy -- python3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5639 +#: guix-git/doc/guix.texi:5657 msgid "Development environments can be created as in the example below, which spawns an interactive shell containing all the dependencies and environment variables needed to work on Inkscape:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5642 +#: guix-git/doc/guix.texi:5660 #, no-wrap msgid "guix shell --development inkscape\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5648 +#: guix-git/doc/guix.texi:5666 msgid "Exiting the shell places the user back in the original environment before @command{guix shell} was invoked. The next garbage collection (@pxref{Invoking guix gc}) may clean up packages that were installed in the environment and that are no longer used outside of it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5655 +#: guix-git/doc/guix.texi:5673 msgid "As an added convenience, when running from a directory that contains a @file{manifest.scm} or a @file{guix.scm} file (in this order), possibly in a parent directory, @command{guix shell} automatically loads the file---provided the directory is listed in @file{~/.config/guix/shell-authorized-directories}, and only for interactive use:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5658 +#: guix-git/doc/guix.texi:5676 #, no-wrap msgid "guix shell\n" msgstr "guix 쉘\n" #. type: Plain text -#: guix-git/doc/guix.texi:5662 +#: guix-git/doc/guix.texi:5680 msgid "This provides an easy way to define, share, and enter development environments." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5673 +#: guix-git/doc/guix.texi:5691 msgid "By default, the shell session or command runs in an @emph{augmented} environment, where the new packages are added to search path environment variables such as @code{PATH}. You can, instead, choose to create an @emph{isolated} environment containing nothing but the packages you asked for. Passing the @option{--pure} option clears environment variable definitions found in the parent environment@footnote{Be sure to use the @option{--check} option the first time you use @command{guix shell} interactively to make sure the shell does not undo the effect of @option{--pure}.}; passing @option{--container} goes one step further by spawning a @dfn{container} isolated from the rest of the system:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5676 +#: guix-git/doc/guix.texi:5694 #, no-wrap msgid "guix shell --container emacs gcc-toolchain\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5684 +#: guix-git/doc/guix.texi:5702 msgid "The command above spawns an interactive shell in a container where nothing but @code{emacs}, @code{gcc-toolchain}, and their dependencies is available. The container lacks network access and shares no files other than the current working directory with the surrounding environment. This is useful to prevent access to system-wide resources such as @file{/usr/bin} on foreign distros." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5691 +#: guix-git/doc/guix.texi:5709 msgid "This @option{--container} option can also prove useful if you wish to run a security-sensitive application, such as a web browser, in an isolated environment. For example, the command below launches Ungoogled-Chromium in an isolated environment, this time sharing network access with the host and preserving its @code{DISPLAY} environment variable, but without even sharing the current directory:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5695 +#: guix-git/doc/guix.texi:5713 #, no-wrap msgid "" "guix shell --container --network --no-cwd ungoogled-chromium \\\n" @@ -12544,18 +12625,18 @@ msgid "" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:5697 guix-git/doc/guix.texi:6008 +#: guix-git/doc/guix.texi:5715 guix-git/doc/guix.texi:6045 #, no-wrap msgid "GUIX_ENVIRONMENT" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5703 +#: guix-git/doc/guix.texi:5721 msgid "@command{guix shell} defines the @env{GUIX_ENVIRONMENT} variable in the shell it spawns; its value is the file name of the profile of this environment. This allows users to, say, define a specific prompt for development environments in their @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5709 guix-git/doc/guix.texi:6020 +#: guix-git/doc/guix.texi:5727 guix-git/doc/guix.texi:6057 #, no-wrap msgid "" "if [ -n \"$GUIX_ENVIRONMENT\" ]\n" @@ -12565,214 +12646,203 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5713 guix-git/doc/guix.texi:6024 +#: guix-git/doc/guix.texi:5731 guix-git/doc/guix.texi:6061 msgid "...@: or to browse the profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5716 guix-git/doc/guix.texi:6027 +#: guix-git/doc/guix.texi:5734 guix-git/doc/guix.texi:6064 #, no-wrap msgid "$ ls \"$GUIX_ENVIRONMENT/bin\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5719 guix-git/doc/guix.texi:6103 +#: guix-git/doc/guix.texi:5737 guix-git/doc/guix.texi:6140 msgid "The available options are summarized below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5721 guix-git/doc/guix.texi:6105 -#: guix-git/doc/guix.texi:11546 +#: guix-git/doc/guix.texi:5739 guix-git/doc/guix.texi:6142 +#: guix-git/doc/guix.texi:11860 #, no-wrap msgid "--check" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5726 +#: guix-git/doc/guix.texi:5744 msgid "Set up the environment and check whether the shell would clobber environment variables. It's a good idea to use this option the first time you run @command{guix shell} for an interactive session to make sure your setup is correct." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5730 +#: guix-git/doc/guix.texi:5748 msgid "For example, if the shell modifies the @env{PATH} environment variable, report it since you would get a different environment than what you asked for." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5738 +#: guix-git/doc/guix.texi:5756 msgid "Such problems usually indicate that the shell startup files are unexpectedly modifying those environment variables. For example, if you are using Bash, make sure that environment variables are set or modified in @file{~/.bash_profile} and @emph{not} in @file{~/.bashrc}---the former is sourced only by log-in shells. @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for details on Bash start-up files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5739 +#: guix-git/doc/guix.texi:5757 #, fuzzy, no-wrap #| msgid "Development" msgid "--development" msgstr "개발" #. type: table -#: guix-git/doc/guix.texi:5746 +#: guix-git/doc/guix.texi:5764 msgid "Cause @command{guix shell} to include in the environment the dependencies of the following package rather than the package itself. This can be combined with other packages. For instance, the command below starts an interactive shell containing the build-time dependencies of GNU@tie{}Guile, plus Autoconf, Automake, and Libtool:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5749 +#: guix-git/doc/guix.texi:5767 #, no-wrap msgid "guix shell -D guile autoconf automake libtool\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5751 guix-git/doc/guix.texi:6126 -#: guix-git/doc/guix.texi:6607 guix-git/doc/guix.texi:11421 -#: guix-git/doc/guix.texi:12494 guix-git/doc/guix.texi:12845 -#: guix-git/doc/guix.texi:13442 guix-git/doc/guix.texi:35243 -#: guix-git/doc/guix.texi:37713 +#: guix-git/doc/guix.texi:5769 guix-git/doc/guix.texi:6163 +#: guix-git/doc/guix.texi:6650 guix-git/doc/guix.texi:11735 +#: guix-git/doc/guix.texi:12809 guix-git/doc/guix.texi:13201 +#: guix-git/doc/guix.texi:13799 guix-git/doc/guix.texi:35687 +#: guix-git/doc/guix.texi:38192 #, no-wrap msgid "--expression=@var{expr}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5752 guix-git/doc/guix.texi:6127 -#: guix-git/doc/guix.texi:6608 guix-git/doc/guix.texi:11422 -#: guix-git/doc/guix.texi:12495 guix-git/doc/guix.texi:12846 -#: guix-git/doc/guix.texi:13443 guix-git/doc/guix.texi:35244 -#: guix-git/doc/guix.texi:37714 +#: guix-git/doc/guix.texi:5770 guix-git/doc/guix.texi:6164 +#: guix-git/doc/guix.texi:6651 guix-git/doc/guix.texi:11736 +#: guix-git/doc/guix.texi:12810 guix-git/doc/guix.texi:13202 +#: guix-git/doc/guix.texi:13800 guix-git/doc/guix.texi:35688 +#: guix-git/doc/guix.texi:38193 #, no-wrap msgid "-e @var{expr}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5755 guix-git/doc/guix.texi:6130 +#: guix-git/doc/guix.texi:5773 guix-git/doc/guix.texi:6167 msgid "Create an environment for the package or list of packages that @var{expr} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5757 guix-git/doc/guix.texi:6132 -#: guix-git/doc/guix.texi:12850 +#: guix-git/doc/guix.texi:5775 guix-git/doc/guix.texi:6169 +#: guix-git/doc/guix.texi:13206 msgid "For example, running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5760 +#: guix-git/doc/guix.texi:5778 #, no-wrap msgid "guix shell -D -e '(@@ (gnu packages maths) petsc-openmpi)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5764 guix-git/doc/guix.texi:6139 +#: guix-git/doc/guix.texi:5782 guix-git/doc/guix.texi:6176 msgid "starts a shell with the environment for this specific variant of the PETSc package." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5766 guix-git/doc/guix.texi:6141 +#: guix-git/doc/guix.texi:5784 guix-git/doc/guix.texi:6178 msgid "Running:" msgstr "실행중:" #. type: example -#: guix-git/doc/guix.texi:5769 +#: guix-git/doc/guix.texi:5787 #, no-wrap msgid "guix shell -e '(@@ (gnu) %base-packages)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5772 guix-git/doc/guix.texi:6147 +#: guix-git/doc/guix.texi:5790 guix-git/doc/guix.texi:6184 msgid "starts a shell with all the base system packages available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5775 guix-git/doc/guix.texi:6150 +#: guix-git/doc/guix.texi:5793 guix-git/doc/guix.texi:6187 msgid "The above commands only use the default output of the given packages. To select other outputs, two element tuples can be specified:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5778 +#: guix-git/doc/guix.texi:5796 #, no-wrap msgid "guix shell -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5780 guix-git/doc/guix.texi:11395 +#: guix-git/doc/guix.texi:5798 guix-git/doc/guix.texi:11709 #, no-wrap msgid "--file=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5784 +#: guix-git/doc/guix.texi:5802 msgid "Create an environment containing the package or list of packages that the code within @var{file} evaluates to." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5790 guix-git/doc/guix.texi:6165 +#: guix-git/doc/guix.texi:5808 guix-git/doc/guix.texi:6202 #, no-wrap msgid "@verbatiminclude environment-gdb.scm\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5794 +#: guix-git/doc/guix.texi:5812 msgid "With the file above, you can enter a development environment for GDB by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5797 +#: guix-git/doc/guix.texi:5815 #, no-wrap msgid "guix shell -D -f gdb-devel.scm\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5804 guix-git/doc/guix.texi:6172 +#: guix-git/doc/guix.texi:5822 guix-git/doc/guix.texi:6209 msgid "Create an environment for the packages contained in the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5808 guix-git/doc/guix.texi:6176 +#: guix-git/doc/guix.texi:5826 guix-git/doc/guix.texi:6213 msgid "This is similar to the same-named option in @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) and uses the same manifest files." msgstr "" -#. type: item -#: guix-git/doc/guix.texi:5809 -#, no-wrap -msgid "--rebuild-cache" -msgstr "" - -#. type: table -#: guix-git/doc/guix.texi:5814 -msgid "When using @option{--manifest}, @option{--file}, or when invoked without arguments, @command{guix shell} caches the environment so that subsequent uses are instantaneous. The cache is invalidated anytime the file is modified." -msgstr "" - #. type: table -#: guix-git/doc/guix.texi:5819 -msgid "The @option{--rebuild-cache} forces the cached environment to be refreshed even if the file has not changed. This is useful if the @command{guix.scm} or @command{manifest.scm} has external dependencies, or if its behavior depends, say, on environment variables." +#: guix-git/doc/guix.texi:5832 guix-git/doc/guix.texi:6245 +msgid "Create an environment containing the packages installed in @var{profile}. Use @command{guix package} (@pxref{Invoking guix package}) to create and manage profiles." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5820 guix-git/doc/guix.texi:6203 +#: guix-git/doc/guix.texi:5833 guix-git/doc/guix.texi:6246 #, no-wrap msgid "--pure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5824 guix-git/doc/guix.texi:6207 +#: guix-git/doc/guix.texi:5837 guix-git/doc/guix.texi:6250 msgid "Unset existing environment variables when building the new environment, except those specified with @option{--preserve} (see below). This has the effect of creating an environment in which search paths only contain package inputs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5825 guix-git/doc/guix.texi:6208 +#: guix-git/doc/guix.texi:5838 guix-git/doc/guix.texi:6251 #, no-wrap msgid "--preserve=@var{regexp}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5826 guix-git/doc/guix.texi:6209 +#: guix-git/doc/guix.texi:5839 guix-git/doc/guix.texi:6252 #, no-wrap msgid "-E @var{regexp}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5831 guix-git/doc/guix.texi:6214 +#: guix-git/doc/guix.texi:5844 guix-git/doc/guix.texi:6257 msgid "When used alongside @option{--pure}, preserve the environment variables matching @var{regexp}---in other words, put them on a ``white list'' of environment variables that must be preserved. This option can be repeated several times." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5835 +#: guix-git/doc/guix.texi:5848 #, no-wrap msgid "" "guix shell --pure --preserve=^SLURM openmpi @dots{} \\\n" @@ -12780,116 +12850,116 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5841 guix-git/doc/guix.texi:6224 +#: guix-git/doc/guix.texi:5854 guix-git/doc/guix.texi:6267 msgid "This example runs @command{mpirun} in a context where the only environment variables defined are @env{PATH}, environment variables whose name starts with @samp{SLURM}, as well as the usual ``precious'' variables (@env{HOME}, @env{USER}, etc.)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5842 guix-git/doc/guix.texi:6225 +#: guix-git/doc/guix.texi:5855 guix-git/doc/guix.texi:6268 #, no-wrap msgid "--search-paths" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5845 guix-git/doc/guix.texi:6228 +#: guix-git/doc/guix.texi:5858 guix-git/doc/guix.texi:6271 msgid "Display the environment variable definitions that make up the environment." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5849 guix-git/doc/guix.texi:6232 +#: guix-git/doc/guix.texi:5862 guix-git/doc/guix.texi:6275 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5850 guix-git/doc/guix.texi:6233 +#: guix-git/doc/guix.texi:5863 guix-git/doc/guix.texi:6276 #, no-wrap msgid "--container" msgstr "--container" #. type: itemx -#: guix-git/doc/guix.texi:5851 guix-git/doc/guix.texi:6234 +#: guix-git/doc/guix.texi:5864 guix-git/doc/guix.texi:6277 #, no-wrap msgid "-C" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5852 guix-git/doc/guix.texi:6069 -#: guix-git/doc/guix.texi:6235 guix-git/doc/guix.texi:13998 -#: guix-git/doc/guix.texi:35211 +#: guix-git/doc/guix.texi:5865 guix-git/doc/guix.texi:6106 +#: guix-git/doc/guix.texi:6278 guix-git/doc/guix.texi:14355 +#: guix-git/doc/guix.texi:35655 #, no-wrap msgid "container" msgstr "켄테이너" #. type: table -#: guix-git/doc/guix.texi:5858 guix-git/doc/guix.texi:6241 +#: guix-git/doc/guix.texi:5871 guix-git/doc/guix.texi:6284 msgid "Run @var{command} within an isolated container. The current working directory outside the container is mapped inside the container. Additionally, unless overridden with @option{--user}, a dummy home directory is created that matches the current user's home directory, and @file{/etc/passwd} is configured accordingly." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5862 guix-git/doc/guix.texi:6245 +#: guix-git/doc/guix.texi:5875 guix-git/doc/guix.texi:6288 msgid "The spawned process runs as the current user outside the container. Inside the container, it has the same UID and GID as the current user, unless @option{--user} is passed (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5863 guix-git/doc/guix.texi:6246 -#: guix-git/doc/guix.texi:35303 +#: guix-git/doc/guix.texi:5876 guix-git/doc/guix.texi:6289 +#: guix-git/doc/guix.texi:35747 #, no-wrap msgid "--network" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5868 guix-git/doc/guix.texi:6251 +#: guix-git/doc/guix.texi:5881 guix-git/doc/guix.texi:6294 msgid "For containers, share the network namespace with the host system. Containers created without this flag only have access to the loopback device." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5869 guix-git/doc/guix.texi:6252 +#: guix-git/doc/guix.texi:5882 guix-git/doc/guix.texi:6295 #, no-wrap msgid "--link-profile" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5870 guix-git/doc/guix.texi:6253 +#: guix-git/doc/guix.texi:5883 guix-git/doc/guix.texi:6296 #, no-wrap msgid "-P" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5878 +#: guix-git/doc/guix.texi:5891 msgid "For containers, link the environment profile to @file{~/.guix-profile} within the container and set @code{GUIX_ENVIRONMENT} to that. This is equivalent to making @file{~/.guix-profile} a symlink to the actual profile within the container. Linking will fail and abort the environment if the directory already exists, which will certainly be the case if @command{guix shell} was invoked in the user's home directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5884 guix-git/doc/guix.texi:6267 +#: guix-git/doc/guix.texi:5897 guix-git/doc/guix.texi:6310 msgid "Certain packages are configured to look in @file{~/.guix-profile} for configuration files and data;@footnote{For example, the @code{fontconfig} package inspects @file{~/.guix-profile/share/fonts} for additional fonts.} @option{--link-profile} allows these programs to behave as expected within the environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5885 guix-git/doc/guix.texi:6268 -#: guix-git/doc/guix.texi:13575 +#: guix-git/doc/guix.texi:5898 guix-git/doc/guix.texi:6311 +#: guix-git/doc/guix.texi:13932 #, no-wrap msgid "--user=@var{user}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5886 guix-git/doc/guix.texi:6269 -#: guix-git/doc/guix.texi:13576 +#: guix-git/doc/guix.texi:5899 guix-git/doc/guix.texi:6312 +#: guix-git/doc/guix.texi:13933 #, no-wrap msgid "-u @var{user}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5893 guix-git/doc/guix.texi:6276 +#: guix-git/doc/guix.texi:5906 guix-git/doc/guix.texi:6319 msgid "For containers, use the username @var{user} in place of the current user. The generated @file{/etc/passwd} entry within the container will contain the name @var{user}, the home directory will be @file{/home/@var{user}}, and no user GECOS data will be copied. Furthermore, the UID and GID inside the container are 1000. @var{user} need not exist on the system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5898 guix-git/doc/guix.texi:6281 +#: guix-git/doc/guix.texi:5911 guix-git/doc/guix.texi:6324 msgid "Additionally, any shared or exposed path (see @option{--share} and @option{--expose} respectively) whose target is within the current user's home directory will be remapped relative to @file{/home/USER}; this includes the automatic mapping of the current working directory." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5905 +#: guix-git/doc/guix.texi:5918 #, no-wrap msgid "" "# will expose paths as /home/foo/wd, /home/foo/test, and /home/foo/target\n" @@ -12900,229 +12970,270 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5910 guix-git/doc/guix.texi:6293 +#: guix-git/doc/guix.texi:5923 guix-git/doc/guix.texi:6336 msgid "While this will limit the leaking of user identity through home paths and each of the user fields, this is only one useful component of a broader privacy/anonymity solution---not one in and of itself." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5911 guix-git/doc/guix.texi:6294 +#: guix-git/doc/guix.texi:5924 guix-git/doc/guix.texi:6337 #, no-wrap msgid "--no-cwd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5918 guix-git/doc/guix.texi:6301 +#: guix-git/doc/guix.texi:5931 guix-git/doc/guix.texi:6344 msgid "For containers, the default behavior is to share the current working directory with the isolated container and immediately change to that directory within the container. If this is undesirable, @option{--no-cwd} will cause the current working directory to @emph{not} be automatically shared and will change to the user's home directory within the container instead. See also @option{--user}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5919 guix-git/doc/guix.texi:6302 +#: guix-git/doc/guix.texi:5932 guix-git/doc/guix.texi:6345 #, no-wrap msgid "--expose=@var{source}[=@var{target}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5920 guix-git/doc/guix.texi:6303 +#: guix-git/doc/guix.texi:5933 guix-git/doc/guix.texi:6346 #, no-wrap msgid "--share=@var{source}[=@var{target}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5926 guix-git/doc/guix.texi:6309 +#: guix-git/doc/guix.texi:5939 guix-git/doc/guix.texi:6352 msgid "For containers, @option{--expose} (resp. @option{--share}) exposes the file system @var{source} from the host system as the read-only (resp. writable) file system @var{target} within the container. If @var{target} is not specified, @var{source} is used as the target mount point in the container." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5930 guix-git/doc/guix.texi:6313 +#: guix-git/doc/guix.texi:5943 guix-git/doc/guix.texi:6356 msgid "The example below spawns a Guile REPL in a container in which the user's home directory is accessible read-only via the @file{/exchange} directory:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5933 +#: guix-git/doc/guix.texi:5946 #, no-wrap msgid "guix shell --container --expose=$HOME=/exchange guile -- guile\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5935 guix-git/doc/guix.texi:6110 -#: guix-git/doc/guix.texi:6675 guix-git/doc/guix.texi:11575 -#: guix-git/doc/guix.texi:35308 +#: guix-git/doc/guix.texi:5948 +#, no-wrap +msgid "--rebuild-cache" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:5949 +#, no-wrap +msgid "caching, of profiles" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:5950 +#, fuzzy, no-wrap +#| msgid "Invoking guix-daemon" +msgid "caching, in @command{guix shell}" +msgstr "guix-데몬 호출하기" + +#. type: table +#: guix-git/doc/guix.texi:5956 +msgid "In most cases, @command{guix shell} caches the environment so that subsequent uses are instantaneous. Least-recently used cache entries are periodically removed. The cache is also invalidated, when using @option{--file} or @option{--manifest}, anytime the corresponding file is modified." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:5962 +msgid "The @option{--rebuild-cache} forces the cached environment to be refreshed. This is useful when using @option{--file} or @option{--manifest} and the @command{guix.scm} or @command{manifest.scm} file has external dependencies, or if its behavior depends, say, on environment variables." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:5963 guix-git/doc/guix.texi:6147 +#: guix-git/doc/guix.texi:6718 guix-git/doc/guix.texi:11889 +#: guix-git/doc/guix.texi:35752 #, no-wrap msgid "--root=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5936 guix-git/doc/guix.texi:6111 -#: guix-git/doc/guix.texi:6676 guix-git/doc/guix.texi:11576 -#: guix-git/doc/guix.texi:35309 +#: guix-git/doc/guix.texi:5964 guix-git/doc/guix.texi:6148 +#: guix-git/doc/guix.texi:6719 guix-git/doc/guix.texi:11890 +#: guix-git/doc/guix.texi:35753 #, no-wrap msgid "-r @var{file}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5937 guix-git/doc/guix.texi:6112 +#: guix-git/doc/guix.texi:5965 guix-git/doc/guix.texi:6149 #, no-wrap msgid "persistent environment" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5938 guix-git/doc/guix.texi:6113 +#: guix-git/doc/guix.texi:5966 guix-git/doc/guix.texi:6150 #, no-wrap msgid "garbage collector root, for environments" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5941 guix-git/doc/guix.texi:6116 +#: guix-git/doc/guix.texi:5969 guix-git/doc/guix.texi:6153 msgid "Make @var{file} a symlink to the profile for this environment, and register it as a garbage collector root." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5944 guix-git/doc/guix.texi:6119 +#: guix-git/doc/guix.texi:5972 guix-git/doc/guix.texi:6156 msgid "This is useful if you want to protect your environment from garbage collection, to make it ``persistent''." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5950 -msgid "When this option is omitted, the environment is protected from garbage collection only for the duration of the @command{guix shell} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages. @xref{Invoking guix gc}, for more on GC roots." +#: guix-git/doc/guix.texi:5978 +msgid "When this option is omitted, @command{guix shell} caches profiles so that subsequent uses of the same environment are instantaneous---this is comparable to using @option{--root} except that @command{guix shell} takes care of periodically removing the least-recently used garbage collector roots." msgstr "" +#. type: table +#: guix-git/doc/guix.texi:5985 +msgid "In some cases, @command{guix shell} does not cache profiles---e.g., if transformation options such as @option{--with-latest} are used. In those cases, the environment is protected from garbage collection only for the duration of the @command{guix shell} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:5987 +#, fuzzy +#| msgid "@xref{Invoking guix environment}, for more information on that command." +msgid "@xref{Invoking guix gc}, for more on GC roots." +msgstr "@xref{Invoking guix environment}, 그 명령에서 보다 상세한 정보를 위하여." + #. type: Plain text -#: guix-git/doc/guix.texi:5955 +#: guix-git/doc/guix.texi:5992 msgid "@command{guix shell} also supports all of the common build options that @command{guix build} supports (@pxref{Common Build Options}) as well as package transformation options (@pxref{Package Transformation Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:5957 +#: guix-git/doc/guix.texi:5994 #, no-wrap msgid "Invoking @command{guix environment}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5961 +#: guix-git/doc/guix.texi:5998 msgid "The purpose of @command{guix environment} is to assist in creating development environments." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5962 +#: guix-git/doc/guix.texi:5999 #, no-wrap msgid "Deprecation warning" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5966 +#: guix-git/doc/guix.texi:6003 msgid "The @command{guix environment} command is deprecated in favor of @command{guix shell}, which performs similar functions but is more convenient to use. @xref{Invoking guix shell}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5971 +#: guix-git/doc/guix.texi:6008 msgid "Being deprecated, @command{guix environment} is slated for eventual removal, but the Guix project is committed to keeping it until May 1st, 2023. Please get in touch with us at @email{guix-devel@@gnu.org} if you would like to discuss it." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5977 +#: guix-git/doc/guix.texi:6014 #, no-wrap msgid "guix environment @var{options} @var{package}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5981 +#: guix-git/doc/guix.texi:6018 msgid "The following example spawns a new shell set up for the development of GNU@tie{}Guile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5984 +#: guix-git/doc/guix.texi:6021 #, no-wrap msgid "guix environment guile\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6001 +#: guix-git/doc/guix.texi:6038 msgid "If the needed dependencies are not built yet, @command{guix environment} automatically builds them. The environment of the new shell is an augmented version of the environment that @command{guix environment} was run in. It contains the necessary search paths for building the given package added to the existing environment variables. To create a ``pure'' environment, in which the original environment variables have been unset, use the @option{--pure} option@footnote{Users sometimes wrongfully augment environment variables such as @env{PATH} in their @file{~/.bashrc} file. As a consequence, when @command{guix environment} launches it, Bash may read @file{~/.bashrc}, thereby introducing ``impurities'' in these environment variables. It is an error to define such environment variables in @file{.bashrc}; instead, they should be defined in @file{.bash_profile}, which is sourced only by log-in shells. @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for details on Bash start-up files.}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6007 +#: guix-git/doc/guix.texi:6044 msgid "Exiting from a Guix environment is the same as exiting from the shell, and will place the user back in the old environment before @command{guix environment} was invoked. The next garbage collection (@pxref{Invoking guix gc}) will clean up packages that were installed from within the environment and are no longer used outside of it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6014 +#: guix-git/doc/guix.texi:6051 msgid "@command{guix environment} defines the @env{GUIX_ENVIRONMENT} variable in the shell it spawns; its value is the file name of the profile of this environment. This allows users to, say, define a specific prompt for development environments in their @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6033 +#: guix-git/doc/guix.texi:6070 msgid "Additionally, more than one package may be specified, in which case the union of the inputs for the given packages are used. For example, the command below spawns a shell where all of the dependencies of both Guile and Emacs are available:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6036 +#: guix-git/doc/guix.texi:6073 #, no-wrap msgid "guix environment guile emacs\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6041 +#: guix-git/doc/guix.texi:6078 msgid "Sometimes an interactive shell session is not desired. An arbitrary command may be invoked by placing the @code{--} token to separate the command from the rest of the arguments:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6044 +#: guix-git/doc/guix.texi:6081 #, no-wrap msgid "guix environment guile -- make -j4\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6050 +#: guix-git/doc/guix.texi:6087 msgid "In other situations, it is more convenient to specify the list of packages needed in the environment. For example, the following command runs @command{python} from an environment containing Python@tie{}3 and NumPy:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6053 +#: guix-git/doc/guix.texi:6090 #, no-wrap msgid "guix environment --ad-hoc python-numpy python -- python3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6064 +#: guix-git/doc/guix.texi:6101 msgid "Furthermore, one might want the dependencies of a package and also some additional packages that are not build-time or runtime dependencies, but are useful when developing nonetheless. Because of this, the @option{--ad-hoc} flag is positional. Packages appearing before @option{--ad-hoc} are interpreted as packages whose dependencies will be added to the environment. Packages appearing after are interpreted as packages that will be added to the environment directly. For example, the following command creates a Guix development environment that additionally includes Git and strace:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6067 +#: guix-git/doc/guix.texi:6104 #, no-wrap msgid "guix environment --pure guix --ad-hoc git strace\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6077 +#: guix-git/doc/guix.texi:6114 msgid "Sometimes it is desirable to isolate the environment as much as possible, for maximal purity and reproducibility. In particular, when using Guix on a host distro that is not Guix System, it is desirable to prevent access to @file{/usr/bin} and other system-wide resources from the development environment. For example, the following command spawns a Guile REPL in a ``container'' where only the store and the current working directory are mounted:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6080 +#: guix-git/doc/guix.texi:6117 #, no-wrap msgid "guix environment --ad-hoc --container guile -- guile\n" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6084 +#: guix-git/doc/guix.texi:6121 msgid "The @option{--container} option requires Linux-libre 3.19 or newer." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6086 +#: guix-git/doc/guix.texi:6123 #, no-wrap msgid "certificates" msgstr "인증서" #. type: Plain text -#: guix-git/doc/guix.texi:6093 +#: guix-git/doc/guix.texi:6130 msgid "Another typical use case for containers is to run security-sensitive applications such as a web browser. To run Eolie, we must expose and share some files and directories; we include @code{nss-certs} and expose @file{/etc/ssl/certs/} for HTTPS authentication; finally we preserve the @env{DISPLAY} environment variable since containerized graphical applications won't display without it." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6100 +#: guix-git/doc/guix.texi:6137 #, no-wrap msgid "" "guix environment --preserve='^DISPLAY$' --container --network \\\n" @@ -13133,89 +13244,89 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6109 +#: guix-git/doc/guix.texi:6146 msgid "Set up the environment and check whether the shell would clobber environment variables. @xref{Invoking guix shell, @option{--check}}, for more info." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6125 +#: guix-git/doc/guix.texi:6162 msgid "When this option is omitted, the environment is protected from garbage collection only for the duration of the @command{guix environment} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages. @xref{Invoking guix gc}, for more on GC roots." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6135 +#: guix-git/doc/guix.texi:6172 #, no-wrap msgid "guix environment -e '(@@ (gnu packages maths) petsc-openmpi)'\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6144 +#: guix-git/doc/guix.texi:6181 #, no-wrap msgid "guix environment --ad-hoc -e '(@@ (gnu) %base-packages)'\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6153 +#: guix-git/doc/guix.texi:6190 #, no-wrap msgid "guix environment --ad-hoc -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6155 +#: guix-git/doc/guix.texi:6192 #, no-wrap msgid "--load=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6156 +#: guix-git/doc/guix.texi:6193 #, no-wrap msgid "-l @var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6159 +#: guix-git/doc/guix.texi:6196 msgid "Create an environment for the package or list of packages that the code within @var{file} evaluates to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6177 +#: guix-git/doc/guix.texi:6214 #, no-wrap msgid "--ad-hoc" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6182 +#: guix-git/doc/guix.texi:6219 msgid "Include all specified packages in the resulting environment, as if an @i{ad hoc} package were defined with them as inputs. This option is useful for quickly creating an environment without having to write a package expression to contain the desired inputs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6184 +#: guix-git/doc/guix.texi:6221 msgid "For instance, the command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6187 +#: guix-git/doc/guix.texi:6224 #, no-wrap msgid "guix environment --ad-hoc guile guile-sdl -- guile\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6191 +#: guix-git/doc/guix.texi:6228 msgid "runs @command{guile} in an environment where Guile and Guile-SDL are available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6196 +#: guix-git/doc/guix.texi:6233 msgid "Note that this example implicitly asks for the default output of @code{guile} and @code{guile-sdl}, but it is possible to ask for a specific output---e.g., @code{glib:bin} asks for the @code{bin} output of @code{glib} (@pxref{Packages with Multiple Outputs})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6202 +#: guix-git/doc/guix.texi:6239 msgid "This option may be composed with the default behavior of @command{guix environment}. Packages appearing before @option{--ad-hoc} are interpreted as packages whose dependencies will be added to the environment, the default behavior. Packages appearing after are interpreted as packages that will be added to the environment directly." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6218 +#: guix-git/doc/guix.texi:6261 #, no-wrap msgid "" "guix environment --pure --preserve=^SLURM --ad-hoc openmpi @dots{} \\\n" @@ -13223,12 +13334,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6261 +#: guix-git/doc/guix.texi:6304 msgid "For containers, link the environment profile to @file{~/.guix-profile} within the container and set @code{GUIX_ENVIRONMENT} to that. This is equivalent to making @file{~/.guix-profile} a symlink to the actual profile within the container. Linking will fail and abort the environment if the directory already exists, which will certainly be the case if @command{guix environment} was invoked in the user's home directory." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6288 +#: guix-git/doc/guix.texi:6331 #, no-wrap msgid "" "# will expose paths as /home/foo/wd, /home/foo/test, and /home/foo/target\n" @@ -13239,68 +13350,68 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6316 +#: guix-git/doc/guix.texi:6359 #, no-wrap msgid "guix environment --container --expose=$HOME=/exchange --ad-hoc guile -- guile\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6324 +#: guix-git/doc/guix.texi:6367 msgid "@command{guix environment} also supports all of the common build options that @command{guix build} supports (@pxref{Common Build Options}) as well as package transformation options (@pxref{Package Transformation Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:6326 +#: guix-git/doc/guix.texi:6369 #, no-wrap msgid "Invoking @command{guix pack}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6332 +#: guix-git/doc/guix.texi:6375 msgid "Occasionally you want to pass software to people who are not (yet!) lucky enough to be using Guix. You'd tell them to run @command{guix package -i @var{something}}, but that's not possible in this case. This is where @command{guix pack} comes in." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6337 +#: guix-git/doc/guix.texi:6380 msgid "If you are looking for ways to exchange binaries among machines that already run Guix, @pxref{Invoking guix copy}, @ref{Invoking guix publish}, and @ref{Invoking guix archive}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6339 +#: guix-git/doc/guix.texi:6382 #, no-wrap msgid "pack" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6340 +#: guix-git/doc/guix.texi:6383 #, no-wrap msgid "bundle" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6341 +#: guix-git/doc/guix.texi:6384 #, no-wrap msgid "application bundle" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6342 +#: guix-git/doc/guix.texi:6385 #, no-wrap msgid "software bundle" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6351 +#: guix-git/doc/guix.texi:6394 msgid "The @command{guix pack} command creates a shrink-wrapped @dfn{pack} or @dfn{software bundle}: it creates a tarball or some other archive containing the binaries of the software you're interested in, and all its dependencies. The resulting archive can be used on any machine that does not have Guix, and people can run the exact same binaries as those you have with Guix. The pack itself is created in a bit-reproducible fashion, so anyone can verify that it really contains the build results that you pretend to be shipping." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6354 +#: guix-git/doc/guix.texi:6397 msgid "For example, to create a bundle containing Guile, Emacs, Geiser, and all their dependencies, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6359 +#: guix-git/doc/guix.texi:6402 #, no-wrap msgid "" "$ guix pack guile emacs emacs-geiser\n" @@ -13309,62 +13420,62 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6367 +#: guix-git/doc/guix.texi:6410 msgid "The result here is a tarball containing a @file{/gnu/store} directory with all the relevant packages. The resulting tarball contains a @dfn{profile} with the three packages of interest; the profile is the same as would be created by @command{guix package -i}. It is this mechanism that is used to create Guix's own standalone binary tarball (@pxref{Binary Installation})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6372 +#: guix-git/doc/guix.texi:6415 msgid "Users of this pack would have to run @file{/gnu/store/@dots{}-profile/bin/guile} to run Guile, which you may find inconvenient. To work around it, you can create, say, a @file{/opt/gnu/bin} symlink to the profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6375 +#: guix-git/doc/guix.texi:6418 #, fuzzy, no-wrap #| msgid "guix package -i emacs guile emacs-geiser\n" msgid "guix pack -S /opt/gnu/bin=bin guile emacs emacs-geiser\n" msgstr "guix package -i emacs guile emacs-geiser\n" #. type: Plain text -#: guix-git/doc/guix.texi:6379 +#: guix-git/doc/guix.texi:6422 msgid "That way, users can happily type @file{/opt/gnu/bin/guile} and enjoy." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6380 +#: guix-git/doc/guix.texi:6423 #, no-wrap msgid "relocatable binaries, with @command{guix pack}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6388 +#: guix-git/doc/guix.texi:6431 msgid "What if the recipient of your pack does not have root privileges on their machine, and thus cannot unpack it in the root file system? In that case, you will want to use the @option{--relocatable} option (see below). This option produces @dfn{relocatable binaries}, meaning they they can be placed anywhere in the file system hierarchy: in the example above, users can unpack your tarball in their home directory and directly run @file{./opt/gnu/bin/guile}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6389 +#: guix-git/doc/guix.texi:6432 #, no-wrap msgid "Docker, build an image with guix pack" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6392 +#: guix-git/doc/guix.texi:6435 msgid "Alternatively, you can produce a pack in the Docker image format using the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6395 +#: guix-git/doc/guix.texi:6438 #, no-wrap msgid "guix pack -f docker -S /bin=bin guile guile-readline\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6400 +#: guix-git/doc/guix.texi:6443 msgid "The result is a tarball that can be passed to the @command{docker load} command, followed by @code{docker run}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6404 +#: guix-git/doc/guix.texi:6447 #, no-wrap msgid "" "docker load < @var{file}\n" @@ -13372,171 +13483,171 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6411 +#: guix-git/doc/guix.texi:6454 msgid "where @var{file} is the image returned by @var{guix pack}, and @code{guile-guile-readline} is its ``image tag''. See the @uref{https://docs.docker.com/engine/reference/commandline/load/, Docker documentation} for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6412 +#: guix-git/doc/guix.texi:6455 #, no-wrap msgid "Singularity, build an image with guix pack" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6413 +#: guix-git/doc/guix.texi:6456 #, no-wrap msgid "SquashFS, build an image with guix pack" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6416 +#: guix-git/doc/guix.texi:6459 msgid "Yet another option is to produce a SquashFS image with the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6419 +#: guix-git/doc/guix.texi:6462 #, fuzzy, no-wrap #| msgid "guix package -i emacs guile emacs-geiser\n" msgid "guix pack -f squashfs bash guile emacs emacs-geiser\n" msgstr "guix package -i emacs guile emacs-geiser\n" #. type: Plain text -#: guix-git/doc/guix.texi:6427 +#: guix-git/doc/guix.texi:6470 msgid "The result is a SquashFS file system image that can either be mounted or directly be used as a file system container image with the @uref{https://www.sylabs.io/docs/, Singularity container execution environment}, using commands like @command{singularity shell} or @command{singularity exec}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6429 +#: guix-git/doc/guix.texi:6472 msgid "Several command-line options allow you to customize your pack:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6434 +#: guix-git/doc/guix.texi:6477 msgid "Produce a pack in the given @var{format}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6436 +#: guix-git/doc/guix.texi:6479 msgid "The available formats are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6438 +#: guix-git/doc/guix.texi:6481 #, no-wrap msgid "tarball" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6441 +#: guix-git/doc/guix.texi:6484 msgid "This is the default format. It produces a tarball containing all the specified binaries and symlinks." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6442 +#: guix-git/doc/guix.texi:6485 #, no-wrap msgid "docker" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6448 +#: guix-git/doc/guix.texi:6491 msgid "This produces a tarball that follows the @uref{https://github.com/docker/docker/blob/master/image/spec/v1.2.md, Docker Image Specification}. The ``repository name'' as it appears in the output of the @command{docker images} command is computed from package names passed on the command line or in the manifest file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6449 +#: guix-git/doc/guix.texi:6492 #, no-wrap msgid "squashfs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6453 +#: guix-git/doc/guix.texi:6496 msgid "This produces a SquashFS image containing all the specified binaries and symlinks, as well as empty mount points for virtual file systems like procfs." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6459 +#: guix-git/doc/guix.texi:6502 msgid "Singularity @emph{requires} you to provide @file{/bin/sh} in the image. For that reason, @command{guix pack -f squashfs} always implies @code{-S /bin=bin}. Thus, your @command{guix pack} invocation must always start with something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6462 +#: guix-git/doc/guix.texi:6505 #, no-wrap msgid "guix pack -f squashfs bash @dots{}\n" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6467 +#: guix-git/doc/guix.texi:6510 msgid "If you forget the @code{bash} (or similar) package, @command{singularity run} and @command{singularity exec} will fail with an unhelpful ``no such file or directory'' message." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6469 +#: guix-git/doc/guix.texi:6512 #, fuzzy, no-wrap #| msgid "debug" msgid "deb" msgstr "디버그" #. type: table -#: guix-git/doc/guix.texi:6477 +#: guix-git/doc/guix.texi:6520 msgid "This produces a Debian archive (a package with the @samp{.deb} file extension) containing all the specified binaries and symbolic links, that can be installed on top of any dpkg-based GNU(/Linux) distribution. Advanced options can be revealed via the @option{--help-deb-format} option. They allow embedding control files for more fine-grained control, such as activating specific triggers or providing a maintainer configure script to run arbitrary setup code upon installation." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6480 +#: guix-git/doc/guix.texi:6523 #, no-wrap msgid "guix pack -f deb -C xz -S /usr/bin/hello=bin/hello hello\n" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6487 +#: guix-git/doc/guix.texi:6530 msgid "Because archives produced with @command{guix pack} contain a collection of store items and because each @command{dpkg} package must not have conflicting files, in practice that means you likely won't be able to install more than one such archive on a given system." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6495 +#: guix-git/doc/guix.texi:6538 msgid "@command{dpkg} will assume ownership of any files contained in the pack that it does @emph{not} know about. It is unwise to install Guix-produced @samp{.deb} files on a system where @file{/gnu/store} is shared by other software, such as a Guix installation or other, non-deb packs." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6499 +#: guix-git/doc/guix.texi:6542 #, no-wrap msgid "relocatable binaries" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6500 +#: guix-git/doc/guix.texi:6543 #, no-wrap msgid "--relocatable" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6504 +#: guix-git/doc/guix.texi:6547 msgid "Produce @dfn{relocatable binaries}---i.e., binaries that can be placed anywhere in the file system hierarchy and run from there." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6512 +#: guix-git/doc/guix.texi:6555 msgid "When this option is passed once, the resulting binaries require support for @dfn{user namespaces} in the kernel Linux; when passed @emph{twice}@footnote{Here's a trick to memorize it: @code{-RR}, which adds PRoot support, can be thought of as the abbreviation of ``Really Relocatable''. Neat, isn't it?}, relocatable binaries fall to back to other techniques if user namespaces are unavailable, and essentially work anywhere---see below for the implications." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6514 +#: guix-git/doc/guix.texi:6557 msgid "For example, if you create a pack containing Bash with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6517 +#: guix-git/doc/guix.texi:6560 #, no-wrap msgid "guix pack -RR -S /mybin=bin bash\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6522 +#: guix-git/doc/guix.texi:6565 msgid "...@: you can copy that pack to a machine that lacks Guix, and from your home directory as a normal user, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6526 +#: guix-git/doc/guix.texi:6569 #, no-wrap msgid "" "tar xf pack.tar.gz\n" @@ -13544,121 +13655,121 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6534 +#: guix-git/doc/guix.texi:6577 msgid "In that shell, if you type @code{ls /gnu/store}, you'll notice that @file{/gnu/store} shows up and contains all the dependencies of @code{bash}, even though the machine actually lacks @file{/gnu/store} altogether! That is probably the simplest way to deploy Guix-built software on a non-Guix machine." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6540 +#: guix-git/doc/guix.texi:6583 msgid "By default, relocatable binaries rely on the @dfn{user namespace} feature of the kernel Linux, which allows unprivileged users to mount or change root. Old versions of Linux did not support it, and some GNU/Linux distributions turn it off." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6546 +#: guix-git/doc/guix.texi:6589 msgid "To produce relocatable binaries that work even in the absence of user namespaces, pass @option{--relocatable} or @option{-R} @emph{twice}. In that case, binaries will try user namespace support and fall back to another @dfn{execution engine} if user namespaces are not supported. The following execution engines are supported:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6548 guix-git/doc/guix.texi:17371 +#: guix-git/doc/guix.texi:6591 guix-git/doc/guix.texi:17733 #, no-wrap msgid "default" msgstr "기본" #. type: table -#: guix-git/doc/guix.texi:6551 +#: guix-git/doc/guix.texi:6594 msgid "Try user namespaces and fall back to PRoot if user namespaces are not supported (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6552 +#: guix-git/doc/guix.texi:6595 #, no-wrap msgid "performance" msgstr "성능" #. type: table -#: guix-git/doc/guix.texi:6555 +#: guix-git/doc/guix.texi:6598 msgid "Try user namespaces and fall back to Fakechroot if user namespaces are not supported (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6556 +#: guix-git/doc/guix.texi:6599 #, no-wrap msgid "userns" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6559 +#: guix-git/doc/guix.texi:6602 msgid "Run the program through user namespaces and abort if they are not supported." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6560 +#: guix-git/doc/guix.texi:6603 #, no-wrap msgid "proot" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6567 +#: guix-git/doc/guix.texi:6610 msgid "Run through PRoot. The @uref{https://proot-me.github.io/, PRoot} program provides the necessary support for file system virtualization. It achieves that by using the @code{ptrace} system call on the running program. This approach has the advantage to work without requiring special kernel support, but it incurs run-time overhead every time a system call is made." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6568 +#: guix-git/doc/guix.texi:6611 #, no-wrap msgid "fakechroot" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6576 +#: guix-git/doc/guix.texi:6619 msgid "Run through Fakechroot. @uref{https://github.com/dex4er/fakechroot/, Fakechroot} virtualizes file system accesses by intercepting calls to C library functions such as @code{open}, @code{stat}, @code{exec}, and so on. Unlike PRoot, it incurs very little overhead. However, it does not always work: for example, some file system accesses made from within the C library are not intercepted, and file system accesses made @i{via} direct syscalls are not intercepted either, leading to erratic behavior." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:6578 +#: guix-git/doc/guix.texi:6621 #, no-wrap msgid "GUIX_EXECUTION_ENGINE" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6582 +#: guix-git/doc/guix.texi:6625 msgid "When running a wrapped program, you can explicitly request one of the execution engines listed above by setting the @env{GUIX_EXECUTION_ENGINE} environment variable accordingly." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6584 +#: guix-git/doc/guix.texi:6627 #, no-wrap msgid "entry point, for Docker images" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6585 +#: guix-git/doc/guix.texi:6628 #, no-wrap msgid "--entry-point=@var{command}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6590 +#: guix-git/doc/guix.texi:6633 msgid "Use @var{command} as the @dfn{entry point} of the resulting pack, if the pack format supports it---currently @code{docker} and @code{squashfs} (Singularity) support it. @var{command} must be relative to the profile contained in the pack." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6594 +#: guix-git/doc/guix.texi:6637 msgid "The entry point specifies the command that tools like @code{docker run} or @code{singularity run} automatically start by default. For example, you can do:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6597 +#: guix-git/doc/guix.texi:6640 #, no-wrap msgid "guix pack -f docker --entry-point=bin/guile guile\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6601 +#: guix-git/doc/guix.texi:6644 msgid "The resulting pack can easily be loaded and @code{docker run} with no extra arguments will spawn @code{bin/guile}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6605 +#: guix-git/doc/guix.texi:6648 #, no-wrap msgid "" "docker load -i pack.tar.gz\n" @@ -13666,398 +13777,398 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6610 guix-git/doc/guix.texi:12497 -#: guix-git/doc/guix.texi:13445 +#: guix-git/doc/guix.texi:6653 guix-git/doc/guix.texi:12812 +#: guix-git/doc/guix.texi:13802 msgid "Consider the package @var{expr} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6614 +#: guix-git/doc/guix.texi:6657 msgid "This has the same purpose as the same-named option in @command{guix build} (@pxref{Additional Build Options, @option{--expression} in @command{guix build}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6620 +#: guix-git/doc/guix.texi:6663 msgid "Use the packages contained in the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6628 +#: guix-git/doc/guix.texi:6671 msgid "This has a similar purpose as the same-named option in @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) and uses the same manifest files. It allows you to define a collection of packages once and use it both for creating profiles and for creating archives for use on machines that do not have Guix installed. Note that you can specify @emph{either} a manifest file @emph{or} a list of packages, but not both." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6634 guix-git/doc/guix.texi:11539 +#: guix-git/doc/guix.texi:6677 guix-git/doc/guix.texi:11853 #, no-wrap msgid "--target=@var{triplet}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6635 guix-git/doc/guix.texi:7080 -#: guix-git/doc/guix.texi:11540 +#: guix-git/doc/guix.texi:6678 guix-git/doc/guix.texi:7124 +#: guix-git/doc/guix.texi:11854 #, no-wrap msgid "cross-compilation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6639 +#: guix-git/doc/guix.texi:6682 msgid "Cross-build for @var{triplet}, which must be a valid GNU triplet, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying target triplets, GNU configuration triplets,, autoconf, Autoconf})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6640 +#: guix-git/doc/guix.texi:6683 #, no-wrap msgid "--compression=@var{tool}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6641 +#: guix-git/doc/guix.texi:6684 #, no-wrap msgid "-C @var{tool}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6645 +#: guix-git/doc/guix.texi:6688 msgid "Compress the resulting tarball using @var{tool}---one of @code{gzip}, @code{zstd}, @code{bzip2}, @code{xz}, @code{lzip}, or @code{none} for no compression." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6646 +#: guix-git/doc/guix.texi:6689 #, no-wrap msgid "--symlink=@var{spec}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6647 +#: guix-git/doc/guix.texi:6690 #, no-wrap msgid "-S @var{spec}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6650 +#: guix-git/doc/guix.texi:6693 msgid "Add the symlinks specified by @var{spec} to the pack. This option can appear several times." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6654 +#: guix-git/doc/guix.texi:6697 msgid "@var{spec} has the form @code{@var{source}=@var{target}}, where @var{source} is the symlink that will be created and @var{target} is the symlink target." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6657 +#: guix-git/doc/guix.texi:6700 msgid "For instance, @code{-S /opt/gnu/bin=bin} creates a @file{/opt/gnu/bin} symlink pointing to the @file{bin} sub-directory of the profile." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6658 guix-git/doc/guix.texi:35262 +#: guix-git/doc/guix.texi:6701 guix-git/doc/guix.texi:35706 #, no-wrap msgid "--save-provenance" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6662 +#: guix-git/doc/guix.texi:6705 msgid "Save provenance information for the packages passed on the command line. Provenance information includes the URL and commit of the channels in use (@pxref{Channels})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6668 +#: guix-git/doc/guix.texi:6711 msgid "Provenance information is saved in the @file{/gnu/store/@dots{}-profile/manifest} file in the pack, along with the usual package metadata---the name and version of each package, their propagated inputs, and so on. It is useful information to the recipient of the pack, who then knows how the pack was (supposedly) obtained." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6674 +#: guix-git/doc/guix.texi:6717 msgid "This option is not enabled by default because, like timestamps, provenance information contributes nothing to the build process. In other words, there is an infinity of channel URLs and commit IDs that can lead to the same pack. Recording such ``silent'' metadata in the output thus potentially breaks the source-to-binary bitwise reproducibility property." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6677 +#: guix-git/doc/guix.texi:6720 #, no-wrap msgid "garbage collector root, for packs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6680 +#: guix-git/doc/guix.texi:6723 msgid "Make @var{file} a symlink to the resulting pack, and register it as a garbage collector root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6681 +#: guix-git/doc/guix.texi:6724 #, no-wrap msgid "--localstatedir" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6682 +#: guix-git/doc/guix.texi:6725 #, no-wrap msgid "--profile-name=@var{name}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6687 +#: guix-git/doc/guix.texi:6730 msgid "Include the ``local state directory'', @file{/var/guix}, in the resulting pack, and notably the @file{/var/guix/profiles/per-user/root/@var{name}} profile---by default @var{name} is @code{guix-profile}, which corresponds to @file{~root/.guix-profile}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6693 +#: guix-git/doc/guix.texi:6736 msgid "@file{/var/guix} contains the store database (@pxref{The Store}) as well as garbage-collector roots (@pxref{Invoking guix gc}). Providing it in the pack means that the store is ``complete'' and manageable by Guix; not providing it pack means that the store is ``dead'': items cannot be added to it or removed from it after extraction of the pack." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6696 +#: guix-git/doc/guix.texi:6739 msgid "One use case for this is the Guix self-contained binary tarball (@pxref{Binary Installation})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6697 guix-git/doc/guix.texi:35256 +#: guix-git/doc/guix.texi:6740 guix-git/doc/guix.texi:35700 #, no-wrap msgid "--derivation" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6698 guix-git/doc/guix.texi:11571 -#: guix-git/doc/guix.texi:35257 +#: guix-git/doc/guix.texi:6741 guix-git/doc/guix.texi:11885 +#: guix-git/doc/guix.texi:35701 #, no-wrap msgid "-d" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6700 +#: guix-git/doc/guix.texi:6743 msgid "Print the name of the derivation that builds the pack." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6704 +#: guix-git/doc/guix.texi:6747 msgid "Use the bootstrap binaries to build the pack. This option is only useful to Guix developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6709 +#: guix-git/doc/guix.texi:6752 msgid "In addition, @command{guix pack} supports all the common build options (@pxref{Common Build Options}) and all the package transformation options (@pxref{Package Transformation Options})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6714 +#: guix-git/doc/guix.texi:6757 #, no-wrap msgid "GCC" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6715 +#: guix-git/doc/guix.texi:6758 #, no-wrap msgid "ld-wrapper" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6716 +#: guix-git/doc/guix.texi:6759 #, no-wrap msgid "linker wrapper" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6717 +#: guix-git/doc/guix.texi:6760 #, no-wrap msgid "toolchain, for C development" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6718 +#: guix-git/doc/guix.texi:6761 #, no-wrap msgid "toolchain, for Fortran development" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6725 +#: guix-git/doc/guix.texi:6768 msgid "If you need a complete toolchain for compiling and linking C or C++ source code, use the @code{gcc-toolchain} package. This package provides a complete GCC toolchain for C/C++ development, including GCC itself, the GNU C Library (headers and binaries, plus debugging symbols in the @code{debug} output), Binutils, and a linker wrapper." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6731 +#: guix-git/doc/guix.texi:6774 msgid "The wrapper's purpose is to inspect the @code{-L} and @code{-l} switches passed to the linker, add corresponding @code{-rpath} arguments, and invoke the actual linker with this new set of arguments. You can instruct the wrapper to refuse to link against libraries not in the store by setting the @env{GUIX_LD_WRAPPER_ALLOW_IMPURITIES} environment variable to @code{no}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6735 +#: guix-git/doc/guix.texi:6778 msgid "The package @code{gfortran-toolchain} provides a complete GCC toolchain for Fortran development. For other languages, please use @samp{guix search gcc toolchain} (@pxref{guix-search,, Invoking guix package})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:6738 +#: guix-git/doc/guix.texi:6781 #, no-wrap msgid "Invoking @command{guix git authenticate}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6746 +#: guix-git/doc/guix.texi:6789 msgid "The @command{guix git authenticate} command authenticates a Git checkout following the same rule as for channels (@pxref{channel-authentication, channel authentication}). That is, starting from a given commit, it ensures that all subsequent commits are signed by an OpenPGP key whose fingerprint appears in the @file{.guix-authorizations} file of its parent commit(s)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6751 +#: guix-git/doc/guix.texi:6794 msgid "You will find this command useful if you maintain a channel. But in fact, this authentication mechanism is useful in a broader context, so you might want to use it for Git repositories that have nothing to do with Guix." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6756 +#: guix-git/doc/guix.texi:6799 #, no-wrap msgid "guix git authenticate @var{commit} @var{signer} [@var{options}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6765 +#: guix-git/doc/guix.texi:6808 msgid "By default, this command authenticates the Git checkout in the current directory; it outputs nothing and exits with exit code zero on success and non-zero on failure. @var{commit} above denotes the first commit where authentication takes place, and @var{signer} is the OpenPGP fingerprint of public key used to sign @var{commit}. Together, they form a ``channel introduction'' (@pxref{channel-authentication, channel introduction}). The options below allow you to fine-tune the process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6767 +#: guix-git/doc/guix.texi:6810 #, no-wrap msgid "--repository=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6768 +#: guix-git/doc/guix.texi:6811 #, no-wrap msgid "-r @var{directory}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6771 +#: guix-git/doc/guix.texi:6814 msgid "Open the Git repository in @var{directory} instead of the current directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6772 +#: guix-git/doc/guix.texi:6815 #, no-wrap msgid "--keyring=@var{reference}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6773 +#: guix-git/doc/guix.texi:6816 #, no-wrap msgid "-k @var{reference}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6779 +#: guix-git/doc/guix.texi:6822 msgid "Load OpenPGP keyring from @var{reference}, the reference of a branch such as @code{origin/keyring} or @code{my-keyring}. The branch must contain OpenPGP public keys in @file{.key} files, either in binary form or ``ASCII-armored''. By default the keyring is loaded from the branch named @code{keyring}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6780 +#: guix-git/doc/guix.texi:6823 #, no-wrap msgid "--stats" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6782 +#: guix-git/doc/guix.texi:6825 msgid "Display commit signing statistics upon completion." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6783 +#: guix-git/doc/guix.texi:6826 #, no-wrap msgid "--cache-key=@var{key}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6787 +#: guix-git/doc/guix.texi:6830 msgid "Previously-authenticated commits are cached in a file under @file{~/.cache/guix/authentication}. This option forces the cache to be stored in file @var{key} in that directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6788 +#: guix-git/doc/guix.texi:6831 #, no-wrap msgid "--historical-authorizations=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6795 +#: guix-git/doc/guix.texi:6838 msgid "By default, any commit whose parent commit(s) lack the @file{.guix-authorizations} file is considered inauthentic. In contrast, this option considers the authorizations in @var{file} for any commit that lacks @file{.guix-authorizations}. The format of @var{file} is the same as that of @file{.guix-authorizations} (@pxref{channel-authorizations, @file{.guix-authorizations} format})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6808 +#: guix-git/doc/guix.texi:6851 msgid "GNU Guix provides several Scheme programming interfaces (APIs) to define, build, and query packages. The first interface allows users to write high-level package definitions. These definitions refer to familiar packaging concepts, such as the name and version of a package, its build system, and its dependencies. These definitions can then be turned into concrete build actions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6814 +#: guix-git/doc/guix.texi:6857 msgid "Build actions are performed by the Guix daemon, on behalf of users. In a standard setup, the daemon has write access to the store---the @file{/gnu/store} directory---whereas users do not. The recommended setup also has the daemon perform builds in chroots, under specific build users, to minimize interference with the rest of the system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6823 +#: guix-git/doc/guix.texi:6866 msgid "Lower-level APIs are available to interact with the daemon and the store. To instruct the daemon to perform a build action, users actually provide it with a @dfn{derivation}. A derivation is a low-level representation of the build actions to be taken, and the environment in which they should occur---derivations are to package definitions what assembly is to C programs. The term ``derivation'' comes from the fact that build results @emph{derive} from them." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6826 +#: guix-git/doc/guix.texi:6869 msgid "This chapter describes all these APIs in turn, starting from high-level package definitions." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:6883 msgid "Programming Guix in Guile" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6855 +#: guix-git/doc/guix.texi:6899 msgid "From a programming viewpoint, the package definitions of the GNU distribution are provided by Guile modules in the @code{(gnu packages @dots{})} name space@footnote{Note that packages under the @code{(gnu packages @dots{})} module name space are not necessarily ``GNU packages''. This module naming scheme follows the usual Guile module naming convention: @code{gnu} means that these modules are distributed as part of the GNU system, and @code{packages} identifies modules that define packages.} (@pxref{Modules, Guile modules,, guile, GNU Guile Reference Manual}). For instance, the @code{(gnu packages emacs)} module exports a variable named @code{emacs}, which is bound to a @code{} object (@pxref{Defining Packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6862 +#: guix-git/doc/guix.texi:6906 msgid "The @code{(gnu packages @dots{})} module name space is automatically scanned for packages by the command-line tools. For instance, when running @code{guix install emacs}, all the @code{(gnu packages @dots{})} modules are scanned until one that exports a package object whose name is @code{emacs} is found. This package search facility is implemented in the @code{(gnu packages)} module." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6864 +#: guix-git/doc/guix.texi:6908 #, no-wrap msgid "package module search path" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6873 +#: guix-git/doc/guix.texi:6917 msgid "Users can store package definitions in modules with different names---e.g., @code{(my-packages emacs)}@footnote{Note that the file name and module name must match. For instance, the @code{(my-packages emacs)} module must be stored in a @file{my-packages/emacs.scm} file relative to the load path specified with @option{--load-path} or @env{GUIX_PACKAGE_PATH}. @xref{Modules and the File System,,, guile, GNU Guile Reference Manual}, for details.}. There are two ways to make these package definitions visible to the user interfaces:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:6880 +#: guix-git/doc/guix.texi:6924 msgid "By adding the directory containing your package modules to the search path with the @code{-L} flag of @command{guix package} and other commands (@pxref{Common Build Options}), or by setting the @env{GUIX_PACKAGE_PATH} environment variable described below." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:6886 +#: guix-git/doc/guix.texi:6930 msgid "By defining a @dfn{channel} and configuring @command{guix pull} so that it pulls from it. A channel is essentially a Git repository containing package modules. @xref{Channels}, for more information on how to define and use channels." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6889 +#: guix-git/doc/guix.texi:6933 msgid "@env{GUIX_PACKAGE_PATH} works similarly to other search path variables:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:6890 +#: guix-git/doc/guix.texi:6934 #, no-wrap msgid "{Environment Variable} GUIX_PACKAGE_PATH" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:6894 +#: guix-git/doc/guix.texi:6938 msgid "This is a colon-separated list of directories to search for additional package modules. Directories listed in this variable take precedence over the own modules of the distribution." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6902 +#: guix-git/doc/guix.texi:6946 msgid "The distribution is fully @dfn{bootstrapped} and @dfn{self-contained}: each package is built based solely on other packages in the distribution. The root of this dependency graph is a small set of @dfn{bootstrap binaries}, provided by the @code{(gnu packages bootstrap)} module. For more information on bootstrapping, @pxref{Bootstrapping}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6910 +#: guix-git/doc/guix.texi:6954 msgid "The high-level interface to package definitions is implemented in the @code{(guix packages)} and @code{(guix build-system)} modules. As an example, the package definition, or @dfn{recipe}, for the GNU Hello package looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:6918 +#: guix-git/doc/guix.texi:6962 #, no-wrap msgid "" "(define-module (gnu packages hello)\n" @@ -14070,7 +14181,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:6937 +#: guix-git/doc/guix.texi:6981 #, no-wrap msgid "" "(define-public hello\n" @@ -14094,327 +14205,327 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6947 +#: guix-git/doc/guix.texi:6991 msgid "Without being a Scheme expert, the reader may have guessed the meaning of the various fields here. This expression binds the variable @code{hello} to a @code{} object, which is essentially a record (@pxref{SRFI-9, Scheme records,, guile, GNU Guile Reference Manual}). This package object can be inspected using procedures found in the @code{(guix packages)} module; for instance, @code{(package-name hello)} returns---surprise!---@code{\"hello\"}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6951 +#: guix-git/doc/guix.texi:6995 msgid "With luck, you may be able to import part or all of the definition of the package you are interested in from another repository, using the @code{guix import} command (@pxref{Invoking guix import})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6957 +#: guix-git/doc/guix.texi:7001 msgid "In the example above, @code{hello} is defined in a module of its own, @code{(gnu packages hello)}. Technically, this is not strictly necessary, but it is convenient to do so: all the packages defined in modules under @code{(gnu packages @dots{})} are automatically known to the command-line tools (@pxref{Package Modules})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6959 +#: guix-git/doc/guix.texi:7003 msgid "There are a few points worth noting in the above package definition:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6966 +#: guix-git/doc/guix.texi:7010 msgid "The @code{source} field of the package is an @code{} object (@pxref{origin Reference}, for the complete reference). Here, the @code{url-fetch} method from @code{(guix download)} is used, meaning that the source is a file to be downloaded over FTP or HTTP." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6969 +#: guix-git/doc/guix.texi:7013 msgid "The @code{mirror://gnu} prefix instructs @code{url-fetch} to use one of the GNU mirrors defined in @code{(guix download)}." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6976 +#: guix-git/doc/guix.texi:7020 msgid "The @code{sha256} field specifies the expected SHA256 hash of the file being downloaded. It is mandatory, and allows Guix to check the integrity of the file. The @code{(base32 @dots{})} form introduces the base32 representation of the hash. You can obtain this information with @code{guix download} (@pxref{Invoking guix download}) and @code{guix hash} (@pxref{Invoking guix hash})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6977 +#: guix-git/doc/guix.texi:7021 #, no-wrap msgid "patches" msgstr "패치" #. type: itemize -#: guix-git/doc/guix.texi:6981 +#: guix-git/doc/guix.texi:7025 msgid "When needed, the @code{origin} form can also have a @code{patches} field listing patches to be applied, and a @code{snippet} field giving a Scheme expression to modify the source code." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6983 +#: guix-git/doc/guix.texi:7027 #, no-wrap msgid "GNU Build System" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6989 +#: guix-git/doc/guix.texi:7033 msgid "The @code{build-system} field specifies the procedure to build the package (@pxref{Build Systems}). Here, @code{gnu-build-system} represents the familiar GNU Build System, where packages may be configured, built, and installed with the usual @code{./configure && make && make check && make install} command sequence." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6993 +#: guix-git/doc/guix.texi:7037 msgid "When you start packaging non-trivial software, you may need tools to manipulate those build phases, manipulate files, and so on. @xref{Build Utilities}, for more on this." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6999 +#: guix-git/doc/guix.texi:7043 msgid "The @code{arguments} field specifies options for the build system (@pxref{Build Systems}). Here it is interpreted by @code{gnu-build-system} as a request run @file{configure} with the @option{--enable-silent-rules} flag." msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7000 guix-git/doc/guix.texi:7003 +#: guix-git/doc/guix.texi:7044 guix-git/doc/guix.texi:7047 #, no-wrap msgid "quote" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7001 +#: guix-git/doc/guix.texi:7045 #, no-wrap msgid "quoting" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7002 +#: guix-git/doc/guix.texi:7046 #, no-wrap msgid "'" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7004 +#: guix-git/doc/guix.texi:7048 #, no-wrap msgid "backquote (quasiquote)" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7005 +#: guix-git/doc/guix.texi:7049 #, no-wrap msgid "`" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7006 +#: guix-git/doc/guix.texi:7050 #, no-wrap msgid "quasiquote" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7007 +#: guix-git/doc/guix.texi:7051 #, no-wrap msgid "comma (unquote)" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7008 +#: guix-git/doc/guix.texi:7052 #, no-wrap msgid "," msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7009 +#: guix-git/doc/guix.texi:7053 #, no-wrap msgid "unquote" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7019 +#: guix-git/doc/guix.texi:7063 msgid "What about these quote (@code{'}) characters? They are Scheme syntax to introduce a literal list; @code{'} is synonymous with @code{quote}. Sometimes you'll also see @code{`} (a backquote, synonymous with @code{quasiquote}) and @code{,} (a comma, synonymous with @code{unquote}). @xref{Expression Syntax, quoting,, guile, GNU Guile Reference Manual}, for details. Here the value of the @code{arguments} field is a list of arguments passed to the build system down the road, as with @code{apply} (@pxref{Fly Evaluation, @code{apply},, guile, GNU Guile Reference Manual})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7025 +#: guix-git/doc/guix.texi:7069 msgid "The hash-colon (@code{#:}) sequence defines a Scheme @dfn{keyword} (@pxref{Keywords,,, guile, GNU Guile Reference Manual}), and @code{#:configure-flags} is a keyword used to pass a keyword argument to the build system (@pxref{Coding With Keywords,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7031 +#: guix-git/doc/guix.texi:7075 msgid "The @code{inputs} field specifies inputs to the build process---i.e., build-time or run-time dependencies of the package. Here, we add an input, a reference to the @code{gawk} variable; @code{gawk} is itself bound to a @code{} object." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7035 +#: guix-git/doc/guix.texi:7079 msgid "Note that GCC, Coreutils, Bash, and other essential tools do not need to be specified as inputs here. Instead, @code{gnu-build-system} takes care of ensuring that they are present (@pxref{Build Systems})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7039 +#: guix-git/doc/guix.texi:7083 msgid "However, any other dependencies need to be specified in the @code{inputs} field. Any dependency not specified here will simply be unavailable to the build process, possibly leading to a build failure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7042 +#: guix-git/doc/guix.texi:7086 msgid "@xref{package Reference}, for a full description of possible fields." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7053 +#: guix-git/doc/guix.texi:7097 msgid "Once a package definition is in place, the package may actually be built using the @code{guix build} command-line tool (@pxref{Invoking guix build}), troubleshooting any build failures you encounter (@pxref{Debugging Build Failures}). You can easily jump back to the package definition using the @command{guix edit} command (@pxref{Invoking guix edit}). @xref{Packaging Guidelines}, for more information on how to test package definitions, and @ref{Invoking guix lint}, for information on how to check a definition for style conformance." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:7053 +#: guix-git/doc/guix.texi:7097 #, no-wrap msgid "GUIX_PACKAGE_PATH" msgstr "GUIX_PACKAGE_PATH" #. type: Plain text -#: guix-git/doc/guix.texi:7057 +#: guix-git/doc/guix.texi:7101 msgid "Lastly, @pxref{Channels}, for information on how to extend the distribution by adding your own package definitions in a ``channel''." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7061 +#: guix-git/doc/guix.texi:7105 msgid "Finally, updating the package definition to a new upstream version can be partly automated by the @command{guix refresh} command (@pxref{Invoking guix refresh})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7067 +#: guix-git/doc/guix.texi:7111 msgid "Behind the scenes, a derivation corresponding to the @code{} object is first computed by the @code{package-derivation} procedure. That derivation is stored in a @file{.drv} file under @file{/gnu/store}. The build actions it prescribes may then be realized by using the @code{build-derivations} procedure (@pxref{The Store})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7068 +#: guix-git/doc/guix.texi:7112 #, no-wrap msgid "{Scheme Procedure} package-derivation @var{store} @var{package} [@var{system}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7071 +#: guix-git/doc/guix.texi:7115 msgid "Return the @code{} object of @var{package} for @var{system} (@pxref{Derivations})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7077 +#: guix-git/doc/guix.texi:7121 msgid "@var{package} must be a valid @code{} object, and @var{system} must be a string denoting the target system type---e.g., @code{\"x86_64-linux\"} for an x86_64 Linux-based GNU system. @var{store} must be a connection to the daemon, which operates on the store (@pxref{The Store})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7083 +#: guix-git/doc/guix.texi:7127 msgid "Similarly, it is possible to compute a derivation that cross-builds a package for some other system:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7084 +#: guix-git/doc/guix.texi:7128 #, no-wrap msgid "{Scheme Procedure} package-cross-derivation @var{store} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7088 +#: guix-git/doc/guix.texi:7132 msgid "@var{package} @var{target} [@var{system}] Return the @code{} object of @var{package} cross-built from @var{system} to @var{target}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7092 +#: guix-git/doc/guix.texi:7136 msgid "@var{target} must be a valid GNU triplet denoting the target hardware and operating system, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying Target Triplets,,, autoconf, Autoconf})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7096 +#: guix-git/doc/guix.texi:7140 msgid "Once you have package definitions, you can easily define @emph{variants} of those packages. @xref{Defining Package Variants}, for more on that." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:7104 +#: guix-git/doc/guix.texi:7148 #, no-wrap msgid "@code{package} Reference" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7108 +#: guix-git/doc/guix.texi:7152 msgid "This section summarizes all the options available in @code{package} declarations (@pxref{Defining Packages})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7109 +#: guix-git/doc/guix.texi:7153 #, no-wrap msgid "{Data Type} package" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7111 +#: guix-git/doc/guix.texi:7155 msgid "This is the data type representing a package recipe." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7115 +#: guix-git/doc/guix.texi:7159 msgid "The name of the package, as a string." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7116 +#: guix-git/doc/guix.texi:7160 #, no-wrap msgid "version" msgstr "버전" #. type: table -#: guix-git/doc/guix.texi:7119 +#: guix-git/doc/guix.texi:7163 msgid "The version of the package, as a string. @xref{Version Numbers}, for guidelines." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7120 guix-git/doc/guix.texi:12900 -#: guix-git/doc/guix.texi:15181 guix-git/doc/guix.texi:15790 +#: guix-git/doc/guix.texi:7164 guix-git/doc/guix.texi:13257 +#: guix-git/doc/guix.texi:15538 guix-git/doc/guix.texi:16147 #, no-wrap msgid "source" msgstr "소스" #. type: table -#: guix-git/doc/guix.texi:7127 +#: guix-git/doc/guix.texi:7171 msgid "An object telling how the source code for the package should be acquired. Most of the time, this is an @code{origin} object, which denotes a file fetched from the Internet (@pxref{origin Reference}). It can also be any other ``file-like'' object such as a @code{local-file}, which denotes a file from the local file system (@pxref{G-Expressions, @code{local-file}})." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7128 +#: guix-git/doc/guix.texi:7172 #, no-wrap msgid "build-system" msgstr "구성-시스템" #. type: table -#: guix-git/doc/guix.texi:7131 +#: guix-git/doc/guix.texi:7175 msgid "The build system that should be used to build the package (@pxref{Build Systems})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7132 guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:7176 guix-git/doc/guix.texi:18315 #, no-wrap msgid "@code{arguments} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7135 +#: guix-git/doc/guix.texi:7179 msgid "The arguments that should be passed to the build system. This is a list, typically containing sequential keyword-value pairs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7136 +#: guix-git/doc/guix.texi:7180 #, no-wrap msgid "@code{inputs} (default: @code{'()})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7137 +#: guix-git/doc/guix.texi:7181 #, no-wrap msgid "@code{native-inputs} (default: @code{'()})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7138 +#: guix-git/doc/guix.texi:7182 #, no-wrap msgid "@code{propagated-inputs} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7139 +#: guix-git/doc/guix.texi:7183 #, no-wrap msgid "inputs, of packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7146 +#: guix-git/doc/guix.texi:7190 msgid "These fields list dependencies of the package. Each element of these lists is either a package, origin, or other ``file-like object'' (@pxref{G-Expressions}); to specify the output of that file-like object that should be used, pass a two-element list where the second element is the output (@pxref{Packages with Multiple Outputs}, for more on package outputs). For example, the list below specifies three inputs:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7150 +#: guix-git/doc/guix.texi:7194 #, no-wrap msgid "" "(list libffi libunistring\n" @@ -14422,23 +14533,23 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7154 +#: guix-git/doc/guix.texi:7198 msgid "In the example above, the @code{\"out\"} output of @code{libffi} and @code{libunistring} is used." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:7155 +#: guix-git/doc/guix.texi:7199 #, no-wrap msgid "Compatibility Note" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:7162 +#: guix-git/doc/guix.texi:7206 msgid "Until version 1.3.0, input lists were a list of tuples, where each tuple has a label for the input (a string) as its first element, a package, origin, or derivation as its second element, and optionally the name of the output thereof that should be used, which defaults to @code{\"out\"}. For example, the list below is equivalent to the one above, but using the @dfn{old input style}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7168 +#: guix-git/doc/guix.texi:7212 #, no-wrap msgid "" ";; Old input style (deprecated).\n" @@ -14448,176 +14559,186 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:7174 +#: guix-git/doc/guix.texi:7218 msgid "This style is now deprecated; it is still supported but support will be removed in a future version. It should not be used for new package definitions. @xref{Invoking guix style}, on how to migrate to the new style." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7176 +#: guix-git/doc/guix.texi:7220 #, no-wrap msgid "cross compilation, package dependencies" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7182 +#: guix-git/doc/guix.texi:7226 msgid "The distinction between @code{native-inputs} and @code{inputs} is necessary when considering cross-compilation. When cross-compiling, dependencies listed in @code{inputs} are built for the @emph{target} architecture; conversely, dependencies listed in @code{native-inputs} are built for the architecture of the @emph{build} machine." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7187 +#: guix-git/doc/guix.texi:7231 msgid "@code{native-inputs} is typically used to list tools needed at build time, but not at run time, such as Autoconf, Automake, pkg-config, Gettext, or Bison. @command{guix lint} can report likely mistakes in this area (@pxref{Invoking guix lint})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:7195 +#: guix-git/doc/guix.texi:7239 msgid "package-propagated-inputs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7195 +#: guix-git/doc/guix.texi:7239 msgid "Lastly, @code{propagated-inputs} is similar to @code{inputs}, but the specified packages will be automatically installed to profiles (@pxref{Features, the role of profiles in Guix}) alongside the package they belong to (@pxref{package-cmd-propagated-inputs, @command{guix package}}, for information on how @command{guix package} deals with propagated inputs)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7199 +#: guix-git/doc/guix.texi:7243 msgid "For example this is necessary when packaging a C/C++ library that needs headers of another library to compile, or when a pkg-config file refers to another one @i{via} its @code{Requires} field." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7206 +#: guix-git/doc/guix.texi:7250 msgid "Another example where @code{propagated-inputs} is useful is for languages that lack a facility to record the run-time search path akin to the @code{RUNPATH} of ELF files; this includes Guile, Python, Perl, and more. When packaging libraries written in those languages, ensure they can find library code they depend on at run time by listing run-time dependencies in @code{propagated-inputs} rather than @code{inputs}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7207 +#: guix-git/doc/guix.texi:7251 #, no-wrap msgid "@code{outputs} (default: @code{'(\"out\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7210 +#: guix-git/doc/guix.texi:7254 msgid "The list of output names of the package. @xref{Packages with Multiple Outputs}, for typical uses of additional outputs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7211 +#: guix-git/doc/guix.texi:7255 #, no-wrap msgid "@code{native-search-paths} (default: @code{'()})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7212 +#: guix-git/doc/guix.texi:7256 #, no-wrap msgid "@code{search-paths} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7215 -msgid "A list of @code{search-path-specification} objects describing search-path environment variables honored by the package." +#: guix-git/doc/guix.texi:7260 +msgid "A list of @code{search-path-specification} objects describing search-path environment variables honored by the package. @xref{Search Paths}, for more on search path specifications." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:7266 +msgid "As for inputs, the distinction between @code{native-search-paths} and @code{search-paths} only matters when cross-compiling. In a cross-compilation context, @code{native-search-paths} applies exclusively to native inputs whereas @code{search-paths} applies only to host inputs." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:7273 +msgid "Packages such as cross-compilers care about target inputs---for instance, our (modified) GCC cross-compiler has @env{CROSS_C_INCLUDE_PATH} in @code{search-paths}, which allows it to pick @file{.h} files for the target system and @emph{not} those of native inputs. For the majority of packages though, only @code{native-search-paths} makes sense." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7216 +#: guix-git/doc/guix.texi:7274 #, no-wrap msgid "@code{replacement} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7220 +#: guix-git/doc/guix.texi:7278 msgid "This must be either @code{#f} or a package object that will be used as a @dfn{replacement} for this package. @xref{Security Updates, grafts}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7221 guix-git/doc/guix.texi:12892 +#: guix-git/doc/guix.texi:7279 guix-git/doc/guix.texi:13249 #, no-wrap msgid "synopsis" msgstr "개요" #. type: table -#: guix-git/doc/guix.texi:7223 +#: guix-git/doc/guix.texi:7281 msgid "A one-line description of the package." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7224 guix-git/doc/guix.texi:12893 -#: guix-git/doc/guix.texi:35959 guix-git/doc/guix.texi:36119 +#: guix-git/doc/guix.texi:7282 guix-git/doc/guix.texi:13250 +#: guix-git/doc/guix.texi:36449 guix-git/doc/guix.texi:36609 #, no-wrap msgid "description" msgstr "설명" #. type: table -#: guix-git/doc/guix.texi:7226 +#: guix-git/doc/guix.texi:7284 msgid "A more elaborate description of the package." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7227 +#: guix-git/doc/guix.texi:7285 #, no-wrap msgid "license" msgstr "저작권" #. type: cindex -#: guix-git/doc/guix.texi:7228 +#: guix-git/doc/guix.texi:7286 #, no-wrap msgid "license, of packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7231 +#: guix-git/doc/guix.texi:7289 msgid "The license of the package; a value from @code{(guix licenses)}, or a list of such values." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7232 guix-git/doc/guix.texi:12901 +#: guix-git/doc/guix.texi:7290 guix-git/doc/guix.texi:13258 #, no-wrap msgid "home-page" msgstr "홈페이지" #. type: table -#: guix-git/doc/guix.texi:7234 +#: guix-git/doc/guix.texi:7292 msgid "The URL to the home-page of the package, as a string." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7235 +#: guix-git/doc/guix.texi:7293 #, no-wrap msgid "@code{supported-systems} (default: @code{%supported-systems})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7238 +#: guix-git/doc/guix.texi:7296 msgid "The list of systems supported by the package, as strings of the form @code{architecture-kernel}, for example @code{\"x86_64-linux\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7239 +#: guix-git/doc/guix.texi:7297 #, no-wrap msgid "@code{location} (default: source location of the @code{package} form)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7243 +#: guix-git/doc/guix.texi:7301 msgid "The source location of the package. It is useful to override this when inheriting from another package, in which case this field is not automatically corrected." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7246 +#: guix-git/doc/guix.texi:7304 #, no-wrap msgid "{Scheme Syntax} this-package" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7249 +#: guix-git/doc/guix.texi:7307 msgid "When used in the @emph{lexical scope} of a package field definition, this identifier resolves to the package being defined." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7252 +#: guix-git/doc/guix.texi:7310 msgid "The example below shows how to add a package as a native input of itself when cross-compiling:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7257 +#: guix-git/doc/guix.texi:7315 #, no-wrap msgid "" "(package\n" @@ -14627,7 +14748,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7263 +#: guix-git/doc/guix.texi:7321 #, no-wrap msgid "" " ;; When cross-compiled, Guile, for example, depends on\n" @@ -14638,51 +14759,51 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7266 +#: guix-git/doc/guix.texi:7324 msgid "It is an error to refer to @code{this-package} outside a package definition." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7270 +#: guix-git/doc/guix.texi:7328 msgid "The following helper procedures are provided to help deal with package inputs." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7271 +#: guix-git/doc/guix.texi:7329 #, no-wrap msgid "{Scheme Procedure} lookup-package-input @var{package} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:7272 +#: guix-git/doc/guix.texi:7330 #, no-wrap msgid "{Scheme Procedure} lookup-package-native-input @var{package} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:7273 +#: guix-git/doc/guix.texi:7331 #, no-wrap msgid "{Scheme Procedure} lookup-package-propagated-input @var{package} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:7274 +#: guix-git/doc/guix.texi:7332 #, no-wrap msgid "{Scheme Procedure} lookup-package-direct-input @var{package} @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7277 +#: guix-git/doc/guix.texi:7335 msgid "Look up @var{name} among @var{package}'s inputs (or native, propagated, or direct inputs). Return it if found, @code{#f} otherwise." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7280 +#: guix-git/doc/guix.texi:7338 msgid "@var{name} is the name of a package depended on. Here's how you might use it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7283 +#: guix-git/doc/guix.texi:7341 #, no-wrap msgid "" "(use-modules (guix packages) (gnu packages base))\n" @@ -14690,7 +14811,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7286 +#: guix-git/doc/guix.texi:7344 #, no-wrap msgid "" "(lookup-package-direct-input coreutils \"gmp\")\n" @@ -14698,47 +14819,47 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7290 +#: guix-git/doc/guix.texi:7348 msgid "In this example we obtain the @code{gmp} package that is among the direct inputs of @code{coreutils}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7292 +#: guix-git/doc/guix.texi:7350 #, fuzzy, no-wrap #| msgid "inputs, for Python packages" msgid "development inputs, of a package" msgstr "파이썬 꾸러미를 위한 입력" #. type: cindex -#: guix-git/doc/guix.texi:7293 +#: guix-git/doc/guix.texi:7351 #, fuzzy, no-wrap #| msgid "inputs, for Python packages" msgid "implicit inputs, of a package" msgstr "파이썬 꾸러미를 위한 입력" #. type: Plain text -#: guix-git/doc/guix.texi:7298 +#: guix-git/doc/guix.texi:7356 msgid "Sometimes you will want to obtain the list of inputs needed to @emph{develop} a package---all the inputs that are visible when the package is compiled. This is what the @code{package-development-inputs} procedure returns." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7299 +#: guix-git/doc/guix.texi:7357 #, no-wrap msgid "{Scheme Procedure} package-development-inputs @var{package} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7306 +#: guix-git/doc/guix.texi:7364 msgid "[@var{system}] [#:target #f] Return the list of inputs required by @var{package} for development purposes on @var{system}. When @var{target} is true, return the inputs needed to cross-compile @var{package} from @var{system} to @var{triplet}, where @var{triplet} is a triplet such as @code{\"aarch64-linux-gnu\"}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7310 +#: guix-git/doc/guix.texi:7368 msgid "Note that the result includes both explicit inputs and implicit inputs---inputs automatically added by the build system (@pxref{Build Systems}). Let us take the @code{hello} package to illustrate that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7313 +#: guix-git/doc/guix.texi:7371 #, no-wrap msgid "" "(use-modules (gnu packages base) (guix packages))\n" @@ -14746,7 +14867,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7316 +#: guix-git/doc/guix.texi:7374 #, no-wrap msgid "" "hello\n" @@ -14755,7 +14876,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7319 +#: guix-git/doc/guix.texi:7377 #, no-wrap msgid "" "(package-direct-inputs hello)\n" @@ -14764,7 +14885,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7322 +#: guix-git/doc/guix.texi:7380 #, no-wrap msgid "" "(package-development-inputs hello)\n" @@ -14772,39 +14893,39 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7331 +#: guix-git/doc/guix.texi:7389 msgid "In this example, @code{package-direct-inputs} returns the empty list, because @code{hello} has zero explicit dependencies. Conversely, @code{package-development-inputs} includes inputs implicitly added by @code{gnu-build-system} that are required to build @code{hello}: tar, gzip, GCC, libc, Bash, and more. To visualize it, @command{guix graph hello} would show you explicit inputs, whereas @command{guix graph -t bag hello} would include implicit inputs (@pxref{Invoking guix graph})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7337 +#: guix-git/doc/guix.texi:7395 msgid "Because packages are regular Scheme objects that capture a complete dependency graph and associated build procedures, it is often useful to write procedures that take a package and return a modified version thereof according to some parameters. Below are a few examples." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7338 +#: guix-git/doc/guix.texi:7396 #, no-wrap msgid "tool chain, choosing a package's tool chain" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7339 +#: guix-git/doc/guix.texi:7397 #, no-wrap msgid "{Scheme Procedure} package-with-c-toolchain @var{package} @var{toolchain}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7344 +#: guix-git/doc/guix.texi:7402 msgid "Return a variant of @var{package} that uses @var{toolchain} instead of the default GNU C/C++ toolchain. @var{toolchain} must be a list of inputs (label/package tuples) providing equivalent functionality, such as the @code{gcc-toolchain} package." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7348 +#: guix-git/doc/guix.texi:7406 msgid "The example below returns a variant of the @code{hello} package built with GCC@tie{}10.x and the rest of the GNU tool chain (Binutils and the GNU C Library) instead of the default tool chain:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7352 +#: guix-git/doc/guix.texi:7410 #, no-wrap msgid "" "(let ((toolchain (specification->package \"gcc-toolchain@@10\")))\n" @@ -14812,197 +14933,197 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7360 +#: guix-git/doc/guix.texi:7418 msgid "The build tool chain is part of the @dfn{implicit inputs} of packages---it's usually not listed as part of the various ``inputs'' fields and is instead pulled in by the build system. Consequently, this procedure works by changing the build system of @var{package} so that it pulls in @var{toolchain} instead of the defaults. @ref{Build Systems}, for more on build systems." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:7363 +#: guix-git/doc/guix.texi:7421 #, no-wrap msgid "@code{origin} Reference" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7371 +#: guix-git/doc/guix.texi:7429 msgid "This section documents @dfn{origins}. An @code{origin} declaration specifies data that must be ``produced''---downloaded, usually---and whose content hash is known in advance. Origins are primarily used to represent the source code of packages (@pxref{Defining Packages}). For that reason, the @code{origin} form allows you to declare patches to apply to the original source code as well as code snippets to modify it." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7372 +#: guix-git/doc/guix.texi:7430 #, no-wrap msgid "{Data Type} origin" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7374 +#: guix-git/doc/guix.texi:7432 msgid "This is the data type representing a source code origin." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7376 guix-git/doc/guix.texi:26552 +#: guix-git/doc/guix.texi:7434 guix-git/doc/guix.texi:26889 #, no-wrap msgid "uri" msgstr "uri" #. type: table -#: guix-git/doc/guix.texi:7381 +#: guix-git/doc/guix.texi:7439 msgid "An object containing the URI of the source. The object type depends on the @code{method} (see below). For example, when using the @var{url-fetch} method of @code{(guix download)}, the valid @code{uri} values are: a URL represented as a string, or a list thereof." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7382 +#: guix-git/doc/guix.texi:7440 #, no-wrap msgid "fixed-output derivations, for download" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7383 +#: guix-git/doc/guix.texi:7441 #, no-wrap msgid "method" msgstr "방식" #. type: table -#: guix-git/doc/guix.texi:7390 +#: guix-git/doc/guix.texi:7448 msgid "A monadic procedure that handles the given URI@. The procedure must accept at least three arguments: the value of the @code{uri} field and the hash algorithm and hash value specified by the @code{hash} field. It must return a store item or a derivation in the store monad (@pxref{The Store Monad}); most methods return a fixed-output derivation (@pxref{Derivations})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7394 +#: guix-git/doc/guix.texi:7452 msgid "Commonly used methods include @code{url-fetch}, which fetches data from a URL, and @code{git-fetch}, which fetches data from a Git repository (see below)." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7395 +#: guix-git/doc/guix.texi:7453 #, no-wrap msgid "sha256" msgstr "sha256" #. type: table -#: guix-git/doc/guix.texi:7399 +#: guix-git/doc/guix.texi:7457 msgid "A bytevector containing the SHA-256 hash of the source. This is equivalent to providing a @code{content-hash} SHA256 object in the @code{hash} field described below." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7400 +#: guix-git/doc/guix.texi:7458 #, no-wrap msgid "hash" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7403 +#: guix-git/doc/guix.texi:7461 msgid "The @code{content-hash} object of the source---see below for how to use @code{content-hash}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7407 +#: guix-git/doc/guix.texi:7465 msgid "You can obtain this information using @code{guix download} (@pxref{Invoking guix download}) or @code{guix hash} (@pxref{Invoking guix hash})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7408 +#: guix-git/doc/guix.texi:7466 #, no-wrap msgid "@code{file-name} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7414 +#: guix-git/doc/guix.texi:7472 msgid "The file name under which the source code should be saved. When this is @code{#f}, a sensible default value will be used in most cases. In case the source is fetched from a URL, the file name from the URL will be used. For version control checkouts, it is recommended to provide the file name explicitly because the default is not very descriptive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7415 +#: guix-git/doc/guix.texi:7473 #, no-wrap msgid "@code{patches} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7418 +#: guix-git/doc/guix.texi:7476 msgid "A list of file names, origins, or file-like objects (@pxref{G-Expressions, file-like objects}) pointing to patches to be applied to the source." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7422 +#: guix-git/doc/guix.texi:7480 msgid "This list of patches must be unconditional. In particular, it cannot depend on the value of @code{%current-system} or @code{%current-target-system}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7423 +#: guix-git/doc/guix.texi:7481 #, no-wrap msgid "@code{snippet} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7427 +#: guix-git/doc/guix.texi:7485 msgid "A G-expression (@pxref{G-Expressions}) or S-expression that will be run in the source directory. This is a convenient way to modify the source, sometimes more convenient than a patch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7428 +#: guix-git/doc/guix.texi:7486 #, no-wrap msgid "@code{patch-flags} (default: @code{'(\"-p1\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7431 +#: guix-git/doc/guix.texi:7489 msgid "A list of command-line flags that should be passed to the @code{patch} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7432 +#: guix-git/doc/guix.texi:7490 #, no-wrap msgid "@code{patch-inputs} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7436 +#: guix-git/doc/guix.texi:7494 msgid "Input packages or derivations to the patching process. When this is @code{#f}, the usual set of inputs necessary for patching are provided, such as GNU@tie{}Patch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7437 guix-git/doc/guix.texi:26425 +#: guix-git/doc/guix.texi:7495 guix-git/doc/guix.texi:26762 #, no-wrap msgid "@code{modules} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7440 +#: guix-git/doc/guix.texi:7498 msgid "A list of Guile modules that should be loaded during the patching process and while running the code in the @code{snippet} field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7441 +#: guix-git/doc/guix.texi:7499 #, no-wrap msgid "@code{patch-guile} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7444 +#: guix-git/doc/guix.texi:7502 msgid "The Guile package that should be used in the patching process. When this is @code{#f}, a sensible default is used." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7447 +#: guix-git/doc/guix.texi:7505 #, no-wrap msgid "{Data Type} content-hash @var{value} [@var{algorithm}]" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7451 +#: guix-git/doc/guix.texi:7509 msgid "Construct a content hash object for the given @var{algorithm}, and with @var{value} as its hash value. When @var{algorithm} is omitted, assume it is @code{sha256}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7454 +#: guix-git/doc/guix.texi:7512 msgid "@var{value} can be a literal string, in which case it is base32-decoded, or it can be a bytevector." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7456 +#: guix-git/doc/guix.texi:7514 msgid "The following forms are all equivalent:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7465 +#: guix-git/doc/guix.texi:7523 #, no-wrap msgid "" "(content-hash \"05zxkyz9bv3j9h0xyid1rhvh3klhsmrpkf3bcs6frvlgyr2gwilj\")\n" @@ -15015,103 +15136,103 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7470 +#: guix-git/doc/guix.texi:7528 msgid "Technically, @code{content-hash} is currently implemented as a macro. It performs sanity checks at macro-expansion time, when possible, such as ensuring that @var{value} has the right size for @var{algorithm}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7476 +#: guix-git/doc/guix.texi:7534 msgid "As we have seen above, how exactly the data an origin refers to is retrieved is determined by its @code{method} field. The @code{(guix download)} module provides the most common method, @code{url-fetch}, described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7477 +#: guix-git/doc/guix.texi:7535 #, no-wrap msgid "{Scheme Procedure} url-fetch @var{url} @var{hash-algo} @var{hash} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7485 +#: guix-git/doc/guix.texi:7543 msgid "[name] [#:executable? #f] Return a fixed-output derivation that fetches data from @var{url} (a string, or a list of strings denoting alternate URLs), which is expected to have hash @var{hash} of type @var{hash-algo} (a symbol). By default, the file name is the base name of URL; optionally, @var{name} can specify a different file name. When @var{executable?} is true, make the downloaded file executable." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7488 +#: guix-git/doc/guix.texi:7546 msgid "When one of the URL starts with @code{mirror://}, then its host part is interpreted as the name of a mirror scheme, taken from @file{%mirror-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7491 +#: guix-git/doc/guix.texi:7549 msgid "Alternatively, when URL starts with @code{file://}, return the corresponding file name in the store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7497 +#: guix-git/doc/guix.texi:7555 msgid "Likewise, the @code{(guix git-download)} module defines the @code{git-fetch} origin method, which fetches data from a Git version control repository, and the @code{git-reference} data type to describe the repository and revision to fetch." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7498 +#: guix-git/doc/guix.texi:7556 #, no-wrap msgid "{Scheme Procedure} git-fetch @var{ref} @var{hash-algo} @var{hash}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7503 +#: guix-git/doc/guix.texi:7561 msgid "Return a fixed-output derivation that fetches @var{ref}, a @code{} object. The output is expected to have recursive hash @var{hash} of type @var{hash-algo} (a symbol). Use @var{name} as the file name, or a generic name if @code{#f}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7505 +#: guix-git/doc/guix.texi:7563 #, no-wrap msgid "{Data Type} git-reference" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7508 +#: guix-git/doc/guix.texi:7566 msgid "This data type represents a Git reference for @code{git-fetch} to retrieve." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7510 guix-git/doc/guix.texi:24186 +#: guix-git/doc/guix.texi:7568 guix-git/doc/guix.texi:24548 #, no-wrap msgid "url" msgstr "url" #. type: table -#: guix-git/doc/guix.texi:7512 +#: guix-git/doc/guix.texi:7570 msgid "The URL of the Git repository to clone." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7513 +#: guix-git/doc/guix.texi:7571 #, no-wrap msgid "commit" msgstr "수행" #. type: table -#: guix-git/doc/guix.texi:7518 +#: guix-git/doc/guix.texi:7576 msgid "This string denotes either the commit to fetch (a hexadecimal string), or the tag to fetch. You can also use a ``short'' commit ID or a @command{git describe} style identifier such as @code{v1.0.1-10-g58d7909c97}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7519 +#: guix-git/doc/guix.texi:7577 #, no-wrap msgid "@code{recursive?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7521 +#: guix-git/doc/guix.texi:7579 msgid "This Boolean indicates whether to recursively fetch Git sub-modules." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7525 +#: guix-git/doc/guix.texi:7583 msgid "The example below denotes the @code{v2.10} tag of the GNU@tie{}Hello repository:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7530 +#: guix-git/doc/guix.texi:7588 #, no-wrap msgid "" "(git-reference\n" @@ -15120,12 +15241,12 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7534 +#: guix-git/doc/guix.texi:7592 msgid "This is equivalent to the reference below, which explicitly names the commit:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7539 +#: guix-git/doc/guix.texi:7597 #, no-wrap msgid "" "(git-reference\n" @@ -15134,56 +15255,56 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7545 +#: guix-git/doc/guix.texi:7603 msgid "For Mercurial repositories, the module @code{(guix hg-download)} defines the @code{hg-fetch} origin method and @code{hg-reference} data type for support of the Mercurial version control system." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7546 +#: guix-git/doc/guix.texi:7604 #, no-wrap msgid "{Scheme Procedure} hg-fetch @var{ref} @var{hash-algo} @var{hash} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7552 +#: guix-git/doc/guix.texi:7610 msgid "[name] Return a fixed-output derivation that fetches @var{ref}, a @code{} object. The output is expected to have recursive hash @var{hash} of type @var{hash-algo} (a symbol). Use @var{name} as the file name, or a generic name if @code{#false}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7557 +#: guix-git/doc/guix.texi:7615 #, no-wrap msgid "customizing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7558 +#: guix-git/doc/guix.texi:7616 #, no-wrap msgid "variants, of packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7568 +#: guix-git/doc/guix.texi:7626 msgid "One of the nice things with Guix is that, given a package definition, you can easily @emph{derive} variants of that package---for a different upstream version, with different dependencies, different compilation options, and so on. Some of these custom packages can be defined straight from the command line (@pxref{Package Transformation Options}). This section describes how to define package variants in code. This can be useful in ``manifests'' (@pxref{profile-manifest, @option{--manifest}}) and in your own package collection (@pxref{Creating a Channel}), among others!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7569 +#: guix-git/doc/guix.texi:7627 #, no-wrap msgid "inherit, for package definitions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7576 +#: guix-git/doc/guix.texi:7634 msgid "As discussed earlier, packages are first-class objects in the Scheme language. The @code{(guix packages)} module provides the @code{package} construct to define new package objects (@pxref{package Reference}). The easiest way to define a package variant is using the @code{inherit} keyword together with @code{package}. This allows you to inherit from a package definition while overriding the fields you want." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7581 +#: guix-git/doc/guix.texi:7639 msgid "For example, given the @code{hello} variable, which contains a definition for the current version of GNU@tie{}Hello, here's how you would define a variant for version 2.2 (released in 2006, it's vintage!):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7584 +#: guix-git/doc/guix.texi:7642 #, no-wrap msgid "" "(use-modules (gnu packages base)) ;for 'hello'\n" @@ -15191,7 +15312,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7596 +#: guix-git/doc/guix.texi:7654 #, no-wrap msgid "" "(define hello-2.2\n" @@ -15208,17 +15329,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7605 +#: guix-git/doc/guix.texi:7663 msgid "The example above corresponds to what the @option{--with-source} package transformation option does. Essentially @code{hello-2.2} preserves all the fields of @code{hello}, except @code{version} and @code{source}, which it overrides. Note that the original @code{hello} variable is still there, in the @code{(gnu packages base)} module, unchanged. When you define a custom package like this, you are really @emph{adding} a new package definition; the original one remains available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7611 +#: guix-git/doc/guix.texi:7669 msgid "You can just as well define variants with a different set of dependencies than the original package. For example, the default @code{gdb} package depends on @code{guile}, but since that is an optional dependency, you can define a variant that removes that dependency like so:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7614 +#: guix-git/doc/guix.texi:7672 #, no-wrap msgid "" "(use-modules (gnu packages gdb)) ;for 'gdb'\n" @@ -15226,7 +15347,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7620 +#: guix-git/doc/guix.texi:7678 #, no-wrap msgid "" "(define gdb-sans-guile\n" @@ -15237,61 +15358,61 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7626 +#: guix-git/doc/guix.texi:7684 msgid "The @code{modify-inputs} form above removes the @code{\"guile\"} package from the @code{inputs} field of @code{gdb}. The @code{modify-inputs} macro is a helper that can prove useful anytime you want to remove, add, or replace package inputs." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7627 +#: guix-git/doc/guix.texi:7685 #, no-wrap msgid "{Scheme Syntax} modify-inputs @var{inputs} @var{clauses}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7631 +#: guix-git/doc/guix.texi:7689 msgid "Modify the given package inputs, as returned by @code{package-inputs} & co., according to the given clauses. Each clause must have one of the following forms:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:7633 +#: guix-git/doc/guix.texi:7691 #, no-wrap msgid "(delete @var{name}@dots{})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7635 +#: guix-git/doc/guix.texi:7693 msgid "Delete from the inputs packages with the given @var{name}s (strings)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7636 +#: guix-git/doc/guix.texi:7694 #, no-wrap msgid "(append @var{package}@dots{})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7638 +#: guix-git/doc/guix.texi:7696 msgid "Add @var{package}s to the end of the input list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7639 +#: guix-git/doc/guix.texi:7697 #, no-wrap msgid "(prepend @var{package}@dots{})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7641 +#: guix-git/doc/guix.texi:7699 msgid "Add @var{package}s to the front of the input list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7645 +#: guix-git/doc/guix.texi:7703 msgid "The example below removes the GMP and ACL inputs of Coreutils and adds libcap to the back of the input list:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7650 +#: guix-git/doc/guix.texi:7708 #, no-wrap msgid "" "(modify-inputs (package-inputs coreutils)\n" @@ -15300,12 +15421,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7654 +#: guix-git/doc/guix.texi:7712 msgid "The example below replaces the @code{guile} package from the inputs of @code{guile-redis} with @code{guile-2.2}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7658 +#: guix-git/doc/guix.texi:7716 #, no-wrap msgid "" "(modify-inputs (package-inputs guile-redis)\n" @@ -15313,17 +15434,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7662 +#: guix-git/doc/guix.texi:7720 msgid "The last type of clause is @code{prepend}, to add inputs to the front of the list." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7671 +#: guix-git/doc/guix.texi:7729 msgid "In some cases, you may find it useful to write functions (``procedures'', in Scheme parlance) that return a package based on some parameters. For example, consider the @code{luasocket} library for the Lua programming language. We want to create @code{luasocket} packages for major versions of Lua. One way to do that is to define a procedure that takes a Lua package and returns a @code{luasocket} package that depends on it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7681 +#: guix-git/doc/guix.texi:7739 #, no-wrap msgid "" "(define (make-lua-socket name lua)\n" @@ -15338,7 +15459,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7684 +#: guix-git/doc/guix.texi:7742 #, no-wrap msgid "" "(define-public lua5.1-socket\n" @@ -15347,7 +15468,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7687 +#: guix-git/doc/guix.texi:7745 #, no-wrap msgid "" "(define-public lua5.2-socket\n" @@ -15355,34 +15476,34 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7695 +#: guix-git/doc/guix.texi:7753 msgid "Here we have defined packages @code{lua5.1-socket} and @code{lua5.2-socket} by calling @code{make-lua-socket} with different arguments. @xref{Procedures,,, guile, GNU Guile Reference Manual}, for more info on procedures. Having top-level public definitions for these two packages means that they can be referred to from the command line (@pxref{Package Modules})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7696 +#: guix-git/doc/guix.texi:7754 #, no-wrap msgid "package transformations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7701 +#: guix-git/doc/guix.texi:7759 msgid "These are pretty simple package variants. As a convenience, the @code{(guix transformations)} module provides a high-level interface that directly maps to the more sophisticated package transformation options (@pxref{Package Transformation Options}):" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7702 +#: guix-git/doc/guix.texi:7760 #, no-wrap msgid "{Scheme Procedure} options->transformation @var{opts}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7706 +#: guix-git/doc/guix.texi:7764 msgid "Return a procedure that, when passed an object to build (package, derivation, etc.), applies the transformations specified by @var{opts} and returns the resulting objects. @var{opts} must be a list of symbol/string pairs such as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7710 +#: guix-git/doc/guix.texi:7768 #, no-wrap msgid "" "((with-branch . \"guile-gcrypt=master\")\n" @@ -15390,17 +15511,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7714 +#: guix-git/doc/guix.texi:7772 msgid "Each symbol names a transformation and the corresponding string is an argument to that transformation." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7717 +#: guix-git/doc/guix.texi:7775 msgid "For instance, a manifest equivalent to this command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:7722 +#: guix-git/doc/guix.texi:7780 #, no-wrap msgid "" "guix build guix \\\n" @@ -15409,12 +15530,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7726 +#: guix-git/doc/guix.texi:7784 msgid "... would look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7729 +#: guix-git/doc/guix.texi:7787 #, no-wrap msgid "" "(use-modules (guix transformations))\n" @@ -15422,7 +15543,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7735 +#: guix-git/doc/guix.texi:7793 #, no-wrap msgid "" "(define transform\n" @@ -15434,7 +15555,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7738 +#: guix-git/doc/guix.texi:7796 #, no-wrap msgid "" "(packages->manifest\n" @@ -15442,50 +15563,50 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7740 +#: guix-git/doc/guix.texi:7798 #, no-wrap msgid "input rewriting" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7741 +#: guix-git/doc/guix.texi:7799 #, no-wrap msgid "dependency graph rewriting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7748 +#: guix-git/doc/guix.texi:7806 msgid "The @code{options->transformation} procedure is convenient, but it's perhaps also not as flexible as you may like. How is it implemented? The astute reader probably noticed that most package transformation options go beyond the superficial changes shown in the first examples of this section: they involve @dfn{input rewriting}, whereby the dependency graph of a package is rewritten by replacing specific inputs by others." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7752 +#: guix-git/doc/guix.texi:7810 msgid "Dependency graph rewriting, for the purposes of swapping packages in the graph, is what the @code{package-input-rewriting} procedure in @code{(guix packages)} implements." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7753 +#: guix-git/doc/guix.texi:7811 #, no-wrap msgid "{Scheme Procedure} package-input-rewriting @var{replacements} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7760 +#: guix-git/doc/guix.texi:7818 msgid "[@var{rewrite-name}] [#:deep? #t] Return a procedure that, when passed a package, replaces its direct and indirect dependencies, including implicit inputs when @var{deep?} is true, according to @var{replacements}. @var{replacements} is a list of package pairs; the first element of each pair is the package to replace, and the second one is the replacement." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7763 +#: guix-git/doc/guix.texi:7821 msgid "Optionally, @var{rewrite-name} is a one-argument procedure that takes the name of a package and returns its new name after rewrite." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7767 guix-git/doc/guix.texi:11216 +#: guix-git/doc/guix.texi:7825 guix-git/doc/guix.texi:11530 msgid "Consider this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7773 +#: guix-git/doc/guix.texi:7831 #, no-wrap msgid "" "(define libressl-instead-of-openssl\n" @@ -15496,7 +15617,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7776 +#: guix-git/doc/guix.texi:7834 #, no-wrap msgid "" "(define git-with-libressl\n" @@ -15504,33 +15625,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7784 +#: guix-git/doc/guix.texi:7842 msgid "Here we first define a rewriting procedure that replaces @var{openssl} with @var{libressl}. Then we use it to define a @dfn{variant} of the @var{git} package that uses @var{libressl} instead of @var{openssl}. This is exactly what the @option{--with-input} command-line option does (@pxref{Package Transformation Options, @option{--with-input}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7787 +#: guix-git/doc/guix.texi:7845 msgid "The following variant of @code{package-input-rewriting} can match packages to be replaced by name rather than by identity." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7788 +#: guix-git/doc/guix.texi:7846 #, no-wrap msgid "{Scheme Procedure} package-input-rewriting/spec @var{replacements} [#:deep? #t]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7795 +#: guix-git/doc/guix.texi:7853 msgid "Return a procedure that, given a package, applies the given @var{replacements} to all the package graph, including implicit inputs unless @var{deep?} is false. @var{replacements} is a list of spec/procedures pair; each spec is a package specification such as @code{\"gcc\"} or @code{\"guile@@2\"}, and each procedure takes a matching package and returns a replacement for that package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7798 +#: guix-git/doc/guix.texi:7856 msgid "The example above could be rewritten this way:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7803 +#: guix-git/doc/guix.texi:7861 #, no-wrap msgid "" "(define libressl-instead-of-openssl\n" @@ -15539,872 +15660,872 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7808 +#: guix-git/doc/guix.texi:7866 msgid "The key difference here is that, this time, packages are matched by spec and not by identity. In other words, any package in the graph that is called @code{openssl} will be replaced." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7812 +#: guix-git/doc/guix.texi:7870 msgid "A more generic procedure to rewrite a package dependency graph is @code{package-mapping}: it supports arbitrary changes to nodes in the graph." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7813 +#: guix-git/doc/guix.texi:7871 #, no-wrap msgid "{Scheme Procedure} package-mapping @var{proc} [@var{cut?}] [#:deep? #f]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7818 +#: guix-git/doc/guix.texi:7876 msgid "Return a procedure that, given a package, applies @var{proc} to all the packages depended on and returns the resulting package. The procedure stops recursion when @var{cut?} returns true for a given package. When @var{deep?} is true, @var{proc} is applied to implicit inputs as well." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7824 +#: guix-git/doc/guix.texi:7882 #, no-wrap msgid "build system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7829 +#: guix-git/doc/guix.texi:7887 msgid "Each package definition specifies a @dfn{build system} and arguments for that build system (@pxref{Defining Packages}). This @code{build-system} field represents the build procedure of the package, as well as implicit dependencies of that build procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7833 +#: guix-git/doc/guix.texi:7891 msgid "Build systems are @code{} objects. The interface to create and manipulate them is provided by the @code{(guix build-system)} module, and actual build systems are exported by specific modules." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7834 +#: guix-git/doc/guix.texi:7892 #, no-wrap msgid "bag (low-level package representation)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7844 +#: guix-git/doc/guix.texi:7902 msgid "Under the hood, build systems first compile package objects to @dfn{bags}. A @dfn{bag} is like a package, but with less ornamentation---in other words, a bag is a lower-level representation of a package, which includes all the inputs of that package, including some that were implicitly added by the build system. This intermediate representation is then compiled to a derivation (@pxref{Derivations}). The @code{package-with-c-toolchain} is an example of a way to change the implicit inputs that a package's build system pulls in (@pxref{package Reference, @code{package-with-c-toolchain}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7852 +#: guix-git/doc/guix.texi:7910 msgid "Build systems accept an optional list of @dfn{arguments}. In package definitions, these are passed @i{via} the @code{arguments} field (@pxref{Defining Packages}). They are typically keyword arguments (@pxref{Optional Arguments, keyword arguments in Guile,, guile, GNU Guile Reference Manual}). The value of these arguments is usually evaluated in the @dfn{build stratum}---i.e., by a Guile process launched by the daemon (@pxref{Derivations})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7856 +#: guix-git/doc/guix.texi:7914 msgid "The main build system is @code{gnu-build-system}, which implements the standard build procedure for GNU and many other packages. It is provided by the @code{(guix build-system gnu)} module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7857 +#: guix-git/doc/guix.texi:7915 #, no-wrap msgid "{Scheme Variable} gnu-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7861 +#: guix-git/doc/guix.texi:7919 msgid "@code{gnu-build-system} represents the GNU Build System, and variants thereof (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7862 guix-git/doc/guix.texi:8812 -#: guix-git/doc/guix.texi:9294 +#: guix-git/doc/guix.texi:7920 guix-git/doc/guix.texi:8869 +#: guix-git/doc/guix.texi:9429 #, no-wrap msgid "build phases" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7869 +#: guix-git/doc/guix.texi:7927 msgid "In a nutshell, packages using it are configured, built, and installed with the usual @code{./configure && make && make check && make install} command sequence. In practice, a few additional steps are often needed. All these steps are split up in separate @dfn{phases}. @xref{Build Phases}, for more info on build phases and ways to customize them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7876 +#: guix-git/doc/guix.texi:7934 msgid "In addition, this build system ensures that the ``standard'' environment for GNU packages is available. This includes tools such as GCC, libc, Coreutils, Bash, Make, Diffutils, grep, and sed (see the @code{(guix build-system gnu)} module for a complete list). We call these the @dfn{implicit inputs} of a package, because package definitions do not have to mention them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7880 +#: guix-git/doc/guix.texi:7938 msgid "This build system supports a number of keyword arguments, which can be passed @i{via} the @code{arguments} field of a package. Here are some of the main parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:7882 +#: guix-git/doc/guix.texi:7940 #, no-wrap msgid "#:phases" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7885 +#: guix-git/doc/guix.texi:7943 msgid "This argument specifies build-side code that evaluates to an alist of build phases. @xref{Build Phases}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7886 +#: guix-git/doc/guix.texi:7944 #, fuzzy, no-wrap msgid "#:configure-flags" msgstr "설정" #. type: table -#: guix-git/doc/guix.texi:7889 +#: guix-git/doc/guix.texi:7947 msgid "This is a list of flags (strings) passed to the @command{configure} script. @xref{Defining Packages}, for an example." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7890 +#: guix-git/doc/guix.texi:7948 #, no-wrap msgid "#:make-flags" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7894 +#: guix-git/doc/guix.texi:7952 msgid "This list of strings contains flags passed as arguments to @command{make} invocations in the @code{build}, @code{check}, and @code{install} phases." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7895 +#: guix-git/doc/guix.texi:7953 #, no-wrap msgid "#:out-of-source?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7898 +#: guix-git/doc/guix.texi:7956 msgid "This Boolean, @code{#f} by default, indicates whether to run builds in a build directory separate from the source tree." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7903 +#: guix-git/doc/guix.texi:7961 msgid "When it is true, the @code{configure} phase creates a separate build directory, changes to that directory, and runs the @code{configure} script from there. This is useful for packages that require it, such as @code{glibc}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7904 +#: guix-git/doc/guix.texi:7962 #, no-wrap msgid "#:tests?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7907 +#: guix-git/doc/guix.texi:7965 msgid "This Boolean, @code{#t} by default, indicates whether the @code{check} phase should run the package's test suite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7908 +#: guix-git/doc/guix.texi:7966 #, fuzzy, no-wrap msgid "#:test-target" msgstr "대상" #. type: table -#: guix-git/doc/guix.texi:7911 +#: guix-git/doc/guix.texi:7969 msgid "This string, @code{\"check\"} by default, gives the name of the makefile target used by the @code{check} phase." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7912 +#: guix-git/doc/guix.texi:7970 #, no-wrap msgid "#:parallel-build?" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7913 +#: guix-git/doc/guix.texi:7971 #, no-wrap msgid "#:parallel-tests?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7920 +#: guix-git/doc/guix.texi:7978 msgid "These Boolean values specify whether to build, respectively run the test suite, in parallel, with the @code{-j} flag of @command{make}. When they are true, @code{make} is passed @code{-j@var{n}}, where @var{n} is the number specified as the @option{--cores} option of @command{guix-daemon} or that of the @command{guix} client command (@pxref{Common Build Options, @option{--cores}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7921 +#: guix-git/doc/guix.texi:7979 #, no-wrap msgid "RUNPATH, validation" msgstr "" #. type: item -#: guix-git/doc/guix.texi:7922 +#: guix-git/doc/guix.texi:7980 #, no-wrap msgid "#:validate-runpath?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7926 +#: guix-git/doc/guix.texi:7984 msgid "This Boolean, @code{#t} by default, determines whether to ``validate'' the @code{RUNPATH} of ELF binaries (@code{.so} shared libraries as well as executables) previously installed by the @code{install} phase." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7934 +#: guix-git/doc/guix.texi:7992 msgid "This validation step consists in making sure that all the shared libraries needed by an ELF binary, which are listed as @code{DT_NEEDED} entries in its @code{PT_DYNAMIC} segment, appear in the @code{DT_RUNPATH} entry of that binary. In other words, it ensures that running or using those binaries will not result in a ``file not found'' error at run time. @xref{Options, @option{-rpath},, ld, The GNU Linker}, for more information on @code{RUNPATH}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7935 +#: guix-git/doc/guix.texi:7993 #, no-wrap msgid "#:substitutable?" msgstr "#:대체할 수 있는?" #. type: table -#: guix-git/doc/guix.texi:7939 +#: guix-git/doc/guix.texi:7997 msgid "This Boolean, @code{#t} by default, tells whether the package outputs should be substitutable---i.e., whether users should be able to obtain substitutes for them instead of building locally (@pxref{Substitutes})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7940 +#: guix-git/doc/guix.texi:7998 #, fuzzy, no-wrap msgid "#:allowed-references" msgstr "--references" #. type: itemx -#: guix-git/doc/guix.texi:7941 +#: guix-git/doc/guix.texi:7999 #, fuzzy, no-wrap msgid "#:disallowed-references" msgstr "--references" #. type: table -#: guix-git/doc/guix.texi:7946 +#: guix-git/doc/guix.texi:8004 msgid "When true, these arguments must be a list of dependencies that must not appear among the references of the build results. If, upon build completion, some of these references are retained, the build process fails." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7951 +#: guix-git/doc/guix.texi:8009 msgid "This is useful to ensure that a package does not erroneously keep a reference to some of it build-time inputs, in cases where doing so would, for example, unnecessarily increase its size (@pxref{Invoking guix size})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7954 +#: guix-git/doc/guix.texi:8012 msgid "Most other build systems support these keyword arguments." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7961 +#: guix-git/doc/guix.texi:8019 msgid "Other @code{} objects are defined to support other conventions and tools used by free software packages. They inherit most of @code{gnu-build-system}, and differ mainly in the set of inputs implicitly added to the build process, and in the list of phases executed. Some of these build systems are listed below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7962 +#: guix-git/doc/guix.texi:8020 #, no-wrap msgid "{Scheme Variable} ant-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7966 +#: guix-git/doc/guix.texi:8024 msgid "This variable is exported by @code{(guix build-system ant)}. It implements the build procedure for Java packages that can be built with @url{https://ant.apache.org/, Ant build tool}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7971 +#: guix-git/doc/guix.texi:8029 msgid "It adds both @code{ant} and the @dfn{Java Development Kit} (JDK) as provided by the @code{icedtea} package to the set of inputs. Different packages can be specified with the @code{#:ant} and @code{#:jdk} parameters, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7977 +#: guix-git/doc/guix.texi:8035 msgid "When the original package does not provide a suitable Ant build file, the parameter @code{#:jar-name} can be used to generate a minimal Ant build file @file{build.xml} with tasks to build the specified jar archive. In this case the parameter @code{#:source-dir} can be used to specify the source sub-directory, defaulting to ``src''." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7985 +#: guix-git/doc/guix.texi:8043 msgid "The @code{#:main-class} parameter can be used with the minimal ant buildfile to specify the main class of the resulting jar. This makes the jar file executable. The @code{#:test-include} parameter can be used to specify the list of junit tests to run. It defaults to @code{(list \"**/*Test.java\")}. The @code{#:test-exclude} can be used to disable some tests. It defaults to @code{(list \"**/Abstract*.java\")}, because abstract classes cannot be run as tests." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7989 +#: guix-git/doc/guix.texi:8047 msgid "The parameter @code{#:build-target} can be used to specify the Ant task that should be run during the @code{build} phase. By default the ``jar'' task will be run." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7992 +#: guix-git/doc/guix.texi:8050 #, no-wrap msgid "{Scheme Variable} android-ndk-build-system" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7993 +#: guix-git/doc/guix.texi:8051 #, no-wrap msgid "Android distribution" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7994 +#: guix-git/doc/guix.texi:8052 #, no-wrap msgid "Android NDK build system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7998 +#: guix-git/doc/guix.texi:8056 msgid "This variable is exported by @code{(guix build-system android-ndk)}. It implements a build procedure for Android NDK (native development kit) packages using a Guix-specific build process." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8002 +#: guix-git/doc/guix.texi:8060 msgid "The build system assumes that packages install their public interface (header) files to the subdirectory @file{include} of the @code{out} output and their libraries to the subdirectory @file{lib} the @code{out} output." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8005 +#: guix-git/doc/guix.texi:8063 msgid "It's also assumed that the union of all the dependencies of a package has no conflicting files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8008 +#: guix-git/doc/guix.texi:8066 msgid "For the time being, cross-compilation is not supported - so right now the libraries and header files are assumed to be host tools." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8011 +#: guix-git/doc/guix.texi:8069 #, no-wrap msgid "{Scheme Variable} asdf-build-system/source" msgstr "" #. type: defvrx -#: guix-git/doc/guix.texi:8012 +#: guix-git/doc/guix.texi:8070 #, no-wrap msgid "{Scheme Variable} asdf-build-system/sbcl" msgstr "" #. type: defvrx -#: guix-git/doc/guix.texi:8013 +#: guix-git/doc/guix.texi:8071 #, no-wrap msgid "{Scheme Variable} asdf-build-system/ecl" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8019 +#: guix-git/doc/guix.texi:8077 msgid "These variables, exported by @code{(guix build-system asdf)}, implement build procedures for Common Lisp packages using @url{https://common-lisp.net/project/asdf/, ``ASDF''}. ASDF is a system definition facility for Common Lisp programs and libraries." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8026 +#: guix-git/doc/guix.texi:8084 msgid "The @code{asdf-build-system/source} system installs the packages in source form, and can be loaded using any common lisp implementation, via ASDF@. The others, such as @code{asdf-build-system/sbcl}, install binary systems in the format which a particular implementation understands. These build systems can also be used to produce executable programs, or lisp images which contain a set of packages pre-loaded." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8030 +#: guix-git/doc/guix.texi:8088 msgid "The build system uses naming conventions. For binary packages, the package name should be prefixed with the lisp implementation, such as @code{sbcl-} for @code{asdf-build-system/sbcl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8034 +#: guix-git/doc/guix.texi:8092 msgid "Additionally, the corresponding source package should be labeled using the same convention as python packages (see @ref{Python Modules}), using the @code{cl-} prefix." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8042 +#: guix-git/doc/guix.texi:8100 msgid "In order to create executable programs and images, the build-side procedures @code{build-program} and @code{build-image} can be used. They should be called in a build phase after the @code{create-asdf-configuration} phase, so that the system which was just built can be used within the resulting image. @code{build-program} requires a list of Common Lisp expressions to be passed as the @code{#:entry-program} argument." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8051 +#: guix-git/doc/guix.texi:8109 msgid "By default, all the @file{.asd} files present in the sources are read to find system definitions. The @code{#:asd-files} parameter can be used to specify the list of @file{.asd} files to read. Furthermore, if the package defines a system for its tests in a separate file, it will be loaded before the tests are run if it is specified by the @code{#:test-asd-file} parameter. If it is not set, the files @code{-tests.asd}, @code{-test.asd}, @code{tests.asd}, and @code{test.asd} will be tried if they exist." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8056 +#: guix-git/doc/guix.texi:8114 msgid "If for some reason the package must be named in a different way than the naming conventions suggest, or if several systems must be compiled, the @code{#:asd-systems} parameter can be used to specify the list of system names." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8059 +#: guix-git/doc/guix.texi:8117 #, no-wrap msgid "{Scheme Variable} cargo-build-system" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8060 +#: guix-git/doc/guix.texi:8118 #, no-wrap msgid "Rust programming language" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8061 +#: guix-git/doc/guix.texi:8119 #, no-wrap msgid "Cargo (Rust build system)" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8065 +#: guix-git/doc/guix.texi:8123 msgid "This variable is exported by @code{(guix build-system cargo)}. It supports builds of packages using Cargo, the build tool of the @uref{https://www.rust-lang.org, Rust programming language}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8068 +#: guix-git/doc/guix.texi:8126 msgid "It adds @code{rustc} and @code{cargo} to the set of inputs. A different Rust package can be specified with the @code{#:rust} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8078 +#: guix-git/doc/guix.texi:8136 msgid "Regular cargo dependencies should be added to the package definition similarly to other packages; those needed only at build time to native-inputs, others to inputs. If you need to add source-only crates then you should add them to via the @code{#:cargo-inputs} parameter as a list of name and spec pairs, where the spec can be a package or a source definition. Note that the spec must evaluate to a path to a gzipped tarball which includes a @code{Cargo.toml} file at its root, or it will be ignored. Similarly, cargo dev-dependencies should be added to the package definition via the @code{#:cargo-development-inputs} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8088 +#: guix-git/doc/guix.texi:8146 msgid "In its @code{configure} phase, this build system will make any source inputs specified in the @code{#:cargo-inputs} and @code{#:cargo-development-inputs} parameters available to cargo. It will also remove an included @code{Cargo.lock} file to be recreated by @code{cargo} during the @code{build} phase. The @code{package} phase will run @code{cargo package} to create a source crate for future use. The @code{install} phase installs the binaries defined by the crate. Unless @code{install-source? #f} is defined it will also install a source crate repository of itself and unpacked sources, to ease in future hacking on rust packages." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8090 +#: guix-git/doc/guix.texi:8148 #, no-wrap msgid "{Scheme Variable} chicken-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8095 +#: guix-git/doc/guix.texi:8153 msgid "This variable is exported by @code{(guix build-system chicken)}. It builds @uref{https://call-cc.org/, CHICKEN Scheme} modules, also called ``eggs'' or ``extensions''. CHICKEN generates C source code, which then gets compiled by a C compiler, in this case GCC." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8098 +#: guix-git/doc/guix.texi:8156 msgid "This build system adds @code{chicken} to the package inputs, as well as the packages of @code{gnu-build-system}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8102 +#: guix-git/doc/guix.texi:8160 msgid "The build system can't (yet) deduce the egg's name automatically, so just like with @code{go-build-system} and its @code{#:import-path}, you should define @code{#:egg-name} in the package's @code{arguments} field." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8104 +#: guix-git/doc/guix.texi:8162 msgid "For example, if you are packaging the @code{srfi-1} egg:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8107 +#: guix-git/doc/guix.texi:8165 #, no-wrap msgid "(arguments '(#:egg-name \"srfi-1\"))\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8112 +#: guix-git/doc/guix.texi:8170 msgid "Egg dependencies must be defined in @code{propagated-inputs}, not @code{inputs} because CHICKEN doesn't embed absolute references in compiled eggs. Test dependencies should go to @code{native-inputs}, as usual." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8114 +#: guix-git/doc/guix.texi:8172 #, no-wrap msgid "{Scheme Variable} copy-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8118 +#: guix-git/doc/guix.texi:8176 msgid "This variable is exported by @code{(guix build-system copy)}. It supports builds of simple packages that don't require much compiling, mostly just moving files around." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8123 +#: guix-git/doc/guix.texi:8181 msgid "It adds much of the @code{gnu-build-system} packages to the set of inputs. Because of this, the @code{copy-build-system} does not require all the boilerplate code often needed for the @code{trivial-build-system}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8128 +#: guix-git/doc/guix.texi:8186 msgid "To further simplify the file installation process, an @code{#:install-plan} argument is exposed to let the packager specify which files go where. The install plan is a list of @code{(@var{source} @var{target} [@var{filters}])}. @var{filters} are optional." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8130 +#: guix-git/doc/guix.texi:8188 #, no-wrap msgid "When @var{source} matches a file or directory without trailing slash, install it to @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8132 +#: guix-git/doc/guix.texi:8190 #, no-wrap msgid "If @var{target} has a trailing slash, install @var{source} basename beneath @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8133 +#: guix-git/doc/guix.texi:8191 #, no-wrap msgid "Otherwise install @var{source} as @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8136 +#: guix-git/doc/guix.texi:8194 #, no-wrap msgid "When @var{source} is a directory with a trailing slash, or when @var{filters} are used," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8139 +#: guix-git/doc/guix.texi:8197 msgid "the trailing slash of @var{target} is implied with the same meaning as above." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8140 +#: guix-git/doc/guix.texi:8198 #, no-wrap msgid "Without @var{filters}, install the full @var{source} @emph{content} to @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8141 +#: guix-git/doc/guix.texi:8199 #, no-wrap msgid "With @var{filters} among @code{#:include}, @code{#:include-regexp}, @code{#:exclude}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8144 +#: guix-git/doc/guix.texi:8202 msgid "@code{#:exclude-regexp}, only select files are installed depending on the filters. Each filters is specified by a list of strings." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8145 +#: guix-git/doc/guix.texi:8203 #, no-wrap msgid "With @code{#:include}, install all the files which the path suffix matches" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8147 +#: guix-git/doc/guix.texi:8205 msgid "at least one of the elements in the given list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8147 +#: guix-git/doc/guix.texi:8205 #, no-wrap msgid "With @code{#:include-regexp}, install all the files which the" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8150 +#: guix-git/doc/guix.texi:8208 msgid "subpaths match at least one of the regular expressions in the given list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8150 +#: guix-git/doc/guix.texi:8208 #, no-wrap msgid "The @code{#:exclude} and @code{#:exclude-regexp} filters" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8155 +#: guix-git/doc/guix.texi:8213 msgid "are the complement of their inclusion counterpart. Without @code{#:include} flags, install all files but those matching the exclusion filters. If both inclusions and exclusions are specified, the exclusions are done on top of the inclusions." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8159 +#: guix-git/doc/guix.texi:8217 msgid "In all cases, the paths relative to @var{source} are preserved within @var{target}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8162 +#: guix-git/doc/guix.texi:8220 msgid "Examples:" msgstr "예:" #. type: item -#: guix-git/doc/guix.texi:8164 +#: guix-git/doc/guix.texi:8222 #, no-wrap msgid "@code{(\"foo/bar\" \"share/my-app/\")}: Install @file{bar} to @file{share/my-app/bar}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8165 +#: guix-git/doc/guix.texi:8223 #, no-wrap msgid "@code{(\"foo/bar\" \"share/my-app/baz\")}: Install @file{bar} to @file{share/my-app/baz}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8166 +#: guix-git/doc/guix.texi:8224 #, no-wrap msgid "@code{(\"foo/\" \"share/my-app\")}: Install the content of @file{foo} inside @file{share/my-app}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8168 +#: guix-git/doc/guix.texi:8226 msgid "e.g., install @file{foo/sub/file} to @file{share/my-app/sub/file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8168 +#: guix-git/doc/guix.texi:8226 #, no-wrap msgid "@code{(\"foo/\" \"share/my-app\" #:include (\"sub/file\"))}: Install only @file{foo/sub/file} to" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8170 +#: guix-git/doc/guix.texi:8228 msgid "@file{share/my-app/sub/file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8170 +#: guix-git/doc/guix.texi:8228 #, no-wrap msgid "@code{(\"foo/sub\" \"share/my-app\" #:include (\"file\"))}: Install @file{foo/sub/file} to" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8172 +#: guix-git/doc/guix.texi:8230 msgid "@file{share/my-app/file}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8176 +#: guix-git/doc/guix.texi:8234 #, no-wrap msgid "Clojure (programming language)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8177 +#: guix-git/doc/guix.texi:8235 #, no-wrap msgid "simple Clojure build system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8178 +#: guix-git/doc/guix.texi:8236 #, no-wrap msgid "{Scheme Variable} clojure-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8183 +#: guix-git/doc/guix.texi:8241 msgid "This variable is exported by @code{(guix build-system clojure)}. It implements a simple build procedure for @uref{https://clojure.org/, Clojure} packages using plain old @code{compile} in Clojure. Cross-compilation is not supported yet." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8187 +#: guix-git/doc/guix.texi:8245 msgid "It adds @code{clojure}, @code{icedtea} and @code{zip} to the set of inputs. Different packages can be specified with the @code{#:clojure}, @code{#:jdk} and @code{#:zip} parameters, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8193 +#: guix-git/doc/guix.texi:8251 msgid "A list of source directories, test directories and jar names can be specified with the @code{#:source-dirs}, @code{#:test-dirs} and @code{#:jar-names} parameters, respectively. Compile directory and main class can be specified with the @code{#:compile-dir} and @code{#:main-class} parameters, respectively. Other parameters are documented below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8196 +#: guix-git/doc/guix.texi:8254 msgid "This build system is an extension of @code{ant-build-system}, but with the following phases changed:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8199 guix-git/doc/guix.texi:8773 -#: guix-git/doc/guix.texi:8822 guix-git/doc/guix.texi:8891 -#: guix-git/doc/guix.texi:35042 guix-git/doc/guix.texi:37668 +#: guix-git/doc/guix.texi:8257 guix-git/doc/guix.texi:8830 +#: guix-git/doc/guix.texi:8879 guix-git/doc/guix.texi:8952 +#: guix-git/doc/guix.texi:35481 guix-git/doc/guix.texi:38147 #, no-wrap msgid "build" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8208 +#: guix-git/doc/guix.texi:8266 msgid "This phase calls @code{compile} in Clojure to compile source files and runs @command{jar} to create jars from both source files and compiled files according to the include list and exclude list specified in @code{#:aot-include} and @code{#:aot-exclude}, respectively. The exclude list has priority over the include list. These lists consist of symbols representing Clojure libraries or the special keyword @code{#:all} representing all Clojure libraries found under the source directories. The parameter @code{#:omit-source?} decides if source should be included into the jars." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8209 guix-git/doc/guix.texi:8777 -#: guix-git/doc/guix.texi:8896 +#: guix-git/doc/guix.texi:8267 guix-git/doc/guix.texi:8834 +#: guix-git/doc/guix.texi:8957 #, no-wrap msgid "check" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8216 +#: guix-git/doc/guix.texi:8274 msgid "This phase runs tests according to the include list and exclude list specified in @code{#:test-include} and @code{#:test-exclude}, respectively. Their meanings are analogous to that of @code{#:aot-include} and @code{#:aot-exclude}, except that the special keyword @code{#:all} now stands for all Clojure libraries found under the test directories. The parameter @code{#:tests?} decides if tests should be run." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8217 guix-git/doc/guix.texi:8783 -#: guix-git/doc/guix.texi:8826 guix-git/doc/guix.texi:8902 +#: guix-git/doc/guix.texi:8275 guix-git/doc/guix.texi:8840 +#: guix-git/doc/guix.texi:8883 guix-git/doc/guix.texi:8963 #, no-wrap msgid "install" msgstr "설치" #. type: table -#: guix-git/doc/guix.texi:8219 +#: guix-git/doc/guix.texi:8277 msgid "This phase installs all jars built previously." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8222 +#: guix-git/doc/guix.texi:8280 msgid "Apart from the above, this build system also contains an additional phase:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8225 +#: guix-git/doc/guix.texi:8283 #, no-wrap msgid "install-doc" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8230 +#: guix-git/doc/guix.texi:8288 msgid "This phase installs all top-level files with base name matching @code{%doc-regex}. A different regex can be specified with the @code{#:doc-regex} parameter. All files (recursively) inside the documentation directories specified in @code{#:doc-dirs} are installed as well." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8233 +#: guix-git/doc/guix.texi:8291 #, no-wrap msgid "{Scheme Variable} cmake-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8237 +#: guix-git/doc/guix.texi:8295 msgid "This variable is exported by @code{(guix build-system cmake)}. It implements the build procedure for packages using the @url{https://www.cmake.org, CMake build tool}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8241 +#: guix-git/doc/guix.texi:8299 msgid "It automatically adds the @code{cmake} package to the set of inputs. Which package is used can be specified with the @code{#:cmake} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8248 +#: guix-git/doc/guix.texi:8306 msgid "The @code{#:configure-flags} parameter is taken as a list of flags passed to the @command{cmake} command. The @code{#:build-type} parameter specifies in abstract terms the flags passed to the compiler; it defaults to @code{\"RelWithDebInfo\"} (short for ``release mode with debugging information''), which roughly means that code is compiled with @code{-O2 -g}, as is the case for Autoconf-based packages by default." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8250 +#: guix-git/doc/guix.texi:8308 #, no-wrap msgid "{Scheme Variable} dune-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8257 +#: guix-git/doc/guix.texi:8315 msgid "This variable is exported by @code{(guix build-system dune)}. It supports builds of packages using @uref{https://dune.build/, Dune}, a build tool for the OCaml programming language. It is implemented as an extension of the @code{ocaml-build-system} which is described below. As such, the @code{#:ocaml} and @code{#:findlib} parameters can be passed to this build system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8261 +#: guix-git/doc/guix.texi:8319 msgid "It automatically adds the @code{dune} package to the set of inputs. Which package is used can be specified with the @code{#:dune} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8265 +#: guix-git/doc/guix.texi:8323 msgid "There is no @code{configure} phase because dune packages typically don't need to be configured. The @code{#:build-flags} parameter is taken as a list of flags passed to the @code{dune} command during the build." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8269 +#: guix-git/doc/guix.texi:8327 msgid "The @code{#:jbuild?} parameter can be passed to use the @code{jbuild} command instead of the more recent @code{dune} command while building a package. Its default value is @code{#f}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8274 +#: guix-git/doc/guix.texi:8332 msgid "The @code{#:package} parameter can be passed to specify a package name, which is useful when a package contains multiple packages and you want to build only one of them. This is equivalent to passing the @code{-p} argument to @code{dune}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8277 +#: guix-git/doc/guix.texi:8335 #, no-wrap msgid "{Scheme Variable} go-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8282 +#: guix-git/doc/guix.texi:8340 msgid "This variable is exported by @code{(guix build-system go)}. It implements a build procedure for Go packages using the standard @url{https://golang.org/cmd/go/#hdr-Compile_packages_and_dependencies, Go build mechanisms}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8293 +#: guix-git/doc/guix.texi:8351 msgid "The user is expected to provide a value for the key @code{#:import-path} and, in some cases, @code{#:unpack-path}. The @url{https://golang.org/doc/code.html#ImportPaths, import path} corresponds to the file system path expected by the package's build scripts and any referring packages, and provides a unique way to refer to a Go package. It is typically based on a combination of the package source code's remote URI and file system hierarchy structure. In some cases, you will need to unpack the package's source code to a different directory structure than the one indicated by the import path, and @code{#:unpack-path} should be used in such cases." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8298 +#: guix-git/doc/guix.texi:8356 msgid "Packages that provide Go libraries should install their source code into the built output. The key @code{#:install-source?}, which defaults to @code{#t}, controls whether or not the source code is installed. It can be set to @code{#f} for packages that only provide executable files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8305 +#: guix-git/doc/guix.texi:8363 msgid "Packages can be cross-built, and if a specific architecture or operating system is desired then the keywords @code{#:goarch} and @code{#:goos} can be used to force the package to be built for that architecture and operating system. The combinations known to Go can be found @url{\"https://golang.org/doc/install/source#environment\", in their documentation}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8307 +#: guix-git/doc/guix.texi:8365 #, no-wrap msgid "{Scheme Variable} glib-or-gtk-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8310 +#: guix-git/doc/guix.texi:8368 msgid "This variable is exported by @code{(guix build-system glib-or-gtk)}. It is intended for use with packages making use of GLib or GTK+." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8313 +#: guix-git/doc/guix.texi:8371 msgid "This build system adds the following two phases to the ones defined by @code{gnu-build-system}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8315 guix-git/doc/guix.texi:8799 +#: guix-git/doc/guix.texi:8373 guix-git/doc/guix.texi:8856 #, no-wrap msgid "glib-or-gtk-wrap" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8322 +#: guix-git/doc/guix.texi:8380 msgid "The phase @code{glib-or-gtk-wrap} ensures that programs in @file{bin/} are able to find GLib ``schemas'' and @uref{https://developer.gnome.org/gtk3/stable/gtk-running.html, GTK+ modules}. This is achieved by wrapping the programs in launch scripts that appropriately set the @env{XDG_DATA_DIRS} and @env{GTK_PATH} environment variables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8329 +#: guix-git/doc/guix.texi:8387 msgid "It is possible to exclude specific package outputs from that wrapping process by listing their names in the @code{#:glib-or-gtk-wrap-excluded-outputs} parameter. This is useful when an output is known not to contain any GLib or GTK+ binaries, and where wrapping would gratuitously add a dependency of that output on GLib and GTK+." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8330 guix-git/doc/guix.texi:8803 +#: guix-git/doc/guix.texi:8388 guix-git/doc/guix.texi:8860 #, no-wrap msgid "glib-or-gtk-compile-schemas" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8338 +#: guix-git/doc/guix.texi:8396 msgid "The phase @code{glib-or-gtk-compile-schemas} makes sure that all @uref{https://developer.gnome.org/gio/stable/glib-compile-schemas.html, GSettings schemas} of GLib are compiled. Compilation is performed by the @command{glib-compile-schemas} program. It is provided by the package @code{glib:bin} which is automatically imported by the build system. The @code{glib} package providing @command{glib-compile-schemas} can be specified with the @code{#:glib} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8341 +#: guix-git/doc/guix.texi:8399 msgid "Both phases are executed after the @code{install} phase." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8343 +#: guix-git/doc/guix.texi:8401 #, no-wrap msgid "{Scheme Variable} guile-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8350 +#: guix-git/doc/guix.texi:8408 msgid "This build system is for Guile packages that consist exclusively of Scheme code and that are so lean that they don't even have a makefile, let alone a @file{configure} script. It compiles Scheme code using @command{guild compile} (@pxref{Compilation,,, guile, GNU Guile Reference Manual}) and installs the @file{.scm} and @file{.go} files in the right place. It also installs documentation." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8353 +#: guix-git/doc/guix.texi:8411 msgid "This build system supports cross-compilation by using the @option{--target} option of @samp{guild compile}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8356 +#: guix-git/doc/guix.texi:8414 msgid "Packages built with @code{guile-build-system} must provide a Guile package in their @code{native-inputs} field." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8358 +#: guix-git/doc/guix.texi:8416 #, no-wrap msgid "{Scheme Variable} julia-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8365 +#: guix-git/doc/guix.texi:8423 msgid "This variable is exported by @code{(guix build-system julia)}. It implements the build procedure used by @uref{https://julialang.org/, julia} packages, which essentially is similar to running @samp{julia -e 'using Pkg; Pkg.add(package)'} in an environment where @env{JULIA_LOAD_PATH} contains the paths to all Julia package inputs. Tests are run by calling @code{/test/runtests.jl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8369 -msgid "The Julia package name is read from the file @file{Project.toml}. This value can be overridden by passing the argument @code{#:julia-package-name} (which must be correctly capitalized)." +#: guix-git/doc/guix.texi:8428 +msgid "The Julia package name and uuid is read from the file @file{Project.toml}. These values can be overridden by passing the argument @code{#:julia-package-name} (which must be correctly capitalized) or @code{#:julia-package-uuid}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8373 +#: guix-git/doc/guix.texi:8432 msgid "Julia packages usually manage their binary dependencies via @code{JLLWrappers.jl}, a Julia package that creates a module (named after the wrapped library followed by @code{_jll.jl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8378 +#: guix-git/doc/guix.texi:8437 msgid "To add the binary path @code{_jll.jl} packages, you need to patch the files under @file{src/wrappers/}, replacing the call to the macro @code{JLLWrappers.@@generate_wrapper_header}, adding as a second argument containing the store path the binary." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8382 +#: guix-git/doc/guix.texi:8441 msgid "As an example, in the MbedTLS Julia package, we add a build phase (@pxref{Build Phases}) to insert the absolute file name of the wrapped MbedTLS package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8394 +#: guix-git/doc/guix.texi:8453 #, no-wrap msgid "" "(add-after 'unpack 'override-binary-path\n" @@ -16420,655 +16541,666 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8402 -msgid "Some older packages that aren't using @file{Package.toml} yet, will require this file to be created, too. The function @code{julia-create-package-toml} helps creating the file. You need to pass the outputs and the source of the package, its name (the same as the @code{file-name} parameter), the package uuid, the package version, and a list of dependencies specified by their name and their uuid." +#: guix-git/doc/guix.texi:8459 +msgid "Some older packages that aren't using @file{Project.toml} yet, will require this file to be created, too. It is internally done if the arguments @code{#:julia-package-name} and @code{#:julia-package-uuid} are provided." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8404 +#: guix-git/doc/guix.texi:8461 #, no-wrap msgid "{Scheme Variable} maven-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8411 +#: guix-git/doc/guix.texi:8468 msgid "This variable is exported by @code{(guix build-system maven)}. It implements a build procedure for @uref{https://maven.apache.org, Maven} packages. Maven is a dependency and lifecycle management tool for Java. A user of Maven specifies dependencies and plugins in a @file{pom.xml} file that Maven reads. When Maven does not have one of the dependencies or plugins in its repository, it will download them and use them to build the package." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8421 +#: guix-git/doc/guix.texi:8478 msgid "The maven build system ensures that maven will not try to download any dependency by running in offline mode. Maven will fail if a dependency is missing. Before running Maven, the @file{pom.xml} (and subprojects) are modified to specify the version of dependencies and plugins that match the versions available in the guix build environment. Dependencies and plugins must be installed in the fake maven repository at @file{lib/m2}, and are symlinked into a proper repository before maven is run. Maven is instructed to use that repository for the build and installs built artifacts there. Changed files are copied to the @file{lib/m2} directory of the package output." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8424 +#: guix-git/doc/guix.texi:8481 msgid "You can specify a @file{pom.xml} file with the @code{#:pom-file} argument, or let the build system use the default @file{pom.xml} file in the sources." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8430 +#: guix-git/doc/guix.texi:8487 msgid "In case you need to specify a dependency's version manually, you can use the @code{#:local-packages} argument. It takes an association list where the key is the groupId of the package and its value is an association list where the key is the artifactId of the package and its value is the version you want to override in the @file{pom.xml}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8436 +#: guix-git/doc/guix.texi:8493 msgid "Some packages use dependencies or plugins that are not useful at runtime nor at build time in Guix. You can alter the @file{pom.xml} file to remove them using the @code{#:exclude} argument. Its value is an association list where the key is the groupId of the plugin or dependency you want to remove, and the value is a list of artifactId you want to remove." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8439 +#: guix-git/doc/guix.texi:8496 msgid "You can override the default @code{jdk} and @code{maven} packages with the corresponding argument, @code{#:jdk} and @code{#:maven}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8444 +#: guix-git/doc/guix.texi:8501 msgid "The @code{#:maven-plugins} argument is a list of maven plugins used during the build, with the same format as the @code{inputs} fields of the package declaration. Its default value is @code{(default-maven-plugins)} which is also exported." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8446 +#: guix-git/doc/guix.texi:8503 #, no-wrap msgid "{Scheme Variable} minetest-mod-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8452 +#: guix-git/doc/guix.texi:8509 msgid "This variable is exported by @code{(guix build-system minetest)}. It implements a build procedure for @uref{https://www.minetest.net, Minetest} mods, which consists of copying Lua code, images and other resources to the location Minetest searches for mods. The build system also minimises PNG images and verifies that Minetest can load the mod without errors." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8454 +#: guix-git/doc/guix.texi:8511 #, no-wrap msgid "{Scheme Variable} minify-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8457 +#: guix-git/doc/guix.texi:8514 msgid "This variable is exported by @code{(guix build-system minify)}. It implements a minification procedure for simple JavaScript packages." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8463 +#: guix-git/doc/guix.texi:8520 msgid "It adds @code{uglify-js} to the set of inputs and uses it to compress all JavaScript files in the @file{src} directory. A different minifier package can be specified with the @code{#:uglify-js} parameter, but it is expected that the package writes the minified code to the standard output." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8467 +#: guix-git/doc/guix.texi:8524 msgid "When the input JavaScript files are not all located in the @file{src} directory, the parameter @code{#:javascript-files} can be used to specify a list of file names to feed to the minifier." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8469 +#: guix-git/doc/guix.texi:8526 #, no-wrap msgid "{Scheme Variable} ocaml-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8475 +#: guix-git/doc/guix.texi:8532 msgid "This variable is exported by @code{(guix build-system ocaml)}. It implements a build procedure for @uref{https://ocaml.org, OCaml} packages, which consists of choosing the correct set of commands to run for each package. OCaml packages can expect many different commands to be run. This build system will try some of them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8485 +#: guix-git/doc/guix.texi:8542 msgid "When the package has a @file{setup.ml} file present at the top-level, it will run @code{ocaml setup.ml -configure}, @code{ocaml setup.ml -build} and @code{ocaml setup.ml -install}. The build system will assume that this file was generated by @uref{http://oasis.forge.ocamlcore.org/, OASIS} and will take care of setting the prefix and enabling tests if they are not disabled. You can pass configure and build flags with the @code{#:configure-flags} and @code{#:build-flags}. The @code{#:test-flags} key can be passed to change the set of flags used to enable tests. The @code{#:use-make?} key can be used to bypass this system in the build and install phases." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8490 +#: guix-git/doc/guix.texi:8547 msgid "When the package has a @file{configure} file, it is assumed that it is a hand-made configure script that requires a different argument format than in the @code{gnu-build-system}. You can add more flags with the @code{#:configure-flags} key." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8494 +#: guix-git/doc/guix.texi:8551 msgid "When the package has a @file{Makefile} file (or @code{#:use-make?} is @code{#t}), it will be used and more flags can be passed to the build and install phases with the @code{#:make-flags} key." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8502 +#: guix-git/doc/guix.texi:8559 msgid "Finally, some packages do not have these files and use a somewhat standard location for its build system. In that case, the build system will run @code{ocaml pkg/pkg.ml} or @code{ocaml pkg/build.ml} and take care of providing the path to the required findlib module. Additional flags can be passed via the @code{#:build-flags} key. Install is taken care of by @command{opam-installer}. In this case, the @code{opam} package must be added to the @code{native-inputs} field of the package definition." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8510 +#: guix-git/doc/guix.texi:8567 msgid "Note that most OCaml packages assume they will be installed in the same directory as OCaml, which is not what we want in guix. In particular, they will install @file{.so} files in their module's directory, which is usually fine because it is in the OCaml compiler directory. In guix though, these libraries cannot be found and we use @env{CAML_LD_LIBRARY_PATH}. This variable points to @file{lib/ocaml/site-lib/stubslibs} and this is where @file{.so} libraries should be installed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8512 +#: guix-git/doc/guix.texi:8569 #, no-wrap msgid "{Scheme Variable} python-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8517 +#: guix-git/doc/guix.texi:8574 msgid "This variable is exported by @code{(guix build-system python)}. It implements the more or less standard build procedure used by Python packages, which consists in running @code{python setup.py build} and then @code{python setup.py install --prefix=/gnu/store/@dots{}}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8522 +#: guix-git/doc/guix.texi:8579 msgid "For packages that install stand-alone Python programs under @code{bin/}, it takes care of wrapping these programs so that their @env{GUIX_PYTHONPATH} environment variable points to all the Python libraries they depend on." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8528 +#: guix-git/doc/guix.texi:8585 msgid "Which Python package is used to perform the build can be specified with the @code{#:python} parameter. This is a useful way to force a package to be built for a specific version of the Python interpreter, which might be necessary if the package is only compatible with a single interpreter version." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8533 +#: guix-git/doc/guix.texi:8590 msgid "By default guix calls @code{setup.py} under control of @code{setuptools}, much like @command{pip} does. Some packages are not compatible with setuptools (and pip), thus you can disable this by setting the @code{#:use-setuptools?} parameter to @code{#f}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8539 +#: guix-git/doc/guix.texi:8596 msgid "If a @code{\"python\"} output is available, the package is installed into it instead of the default @code{\"out\"} output. This is useful for packages that include a Python package as only a part of the software, and thus want to combine the phases of @code{python-build-system} with another build system. Python bindings are a common usecase." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8542 +#: guix-git/doc/guix.texi:8599 #, no-wrap msgid "{Scheme Variable} perl-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8554 +#: guix-git/doc/guix.texi:8611 msgid "This variable is exported by @code{(guix build-system perl)}. It implements the standard build procedure for Perl packages, which either consists in running @code{perl Build.PL --prefix=/gnu/store/@dots{}}, followed by @code{Build} and @code{Build install}; or in running @code{perl Makefile.PL PREFIX=/gnu/store/@dots{}}, followed by @code{make} and @code{make install}, depending on which of @code{Build.PL} or @code{Makefile.PL} is present in the package distribution. Preference is given to the former if both @code{Build.PL} and @code{Makefile.PL} exist in the package distribution. This preference can be reversed by specifying @code{#t} for the @code{#:make-maker?} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8558 +#: guix-git/doc/guix.texi:8615 msgid "The initial @code{perl Makefile.PL} or @code{perl Build.PL} invocation passes flags specified by the @code{#:make-maker-flags} or @code{#:module-build-flags} parameter, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8560 +#: guix-git/doc/guix.texi:8617 msgid "Which Perl package is used can be specified with @code{#:perl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8562 +#: guix-git/doc/guix.texi:8619 #, no-wrap msgid "{Scheme Variable} renpy-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8566 +#: guix-git/doc/guix.texi:8623 msgid "This variable is exported by @code{(guix build-system renpy)}. It implements the more or less standard build procedure used by Ren'py games, which consists of loading @code{#:game} once, thereby creating bytecode for it." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8569 +#: guix-git/doc/guix.texi:8626 msgid "It further creates a wrapper script in @code{bin/} and a desktop entry in @code{share/applications}, both of which can be used to launch the game." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8573 +#: guix-git/doc/guix.texi:8630 msgid "Which Ren'py package is used can be specified with @code{#:renpy}. Games can also be installed in outputs other than ``out'' by using @code{#:output}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8575 +#: guix-git/doc/guix.texi:8632 #, no-wrap msgid "{Scheme Variable} qt-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8578 +#: guix-git/doc/guix.texi:8635 msgid "This variable is exported by @code{(guix build-system qt)}. It is intended for use with applications using Qt or KDE." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8581 +#: guix-git/doc/guix.texi:8638 msgid "This build system adds the following two phases to the ones defined by @code{cmake-build-system}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8583 +#: guix-git/doc/guix.texi:8640 #, no-wrap msgid "check-setup" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8590 +#: guix-git/doc/guix.texi:8647 msgid "The phase @code{check-setup} prepares the environment for running the checks as commonly used by Qt test programs. For now this only sets some environment variables: @code{QT_QPA_PLATFORM=offscreen}, @code{DBUS_FATAL_WARNINGS=0} and @code{CTEST_OUTPUT_ON_FAILURE=1}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8593 +#: guix-git/doc/guix.texi:8650 msgid "This phase is added before the @code{check} phase. It's a separate phase to ease adjusting if necessary." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8594 +#: guix-git/doc/guix.texi:8651 #, no-wrap msgid "qt-wrap" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8600 +#: guix-git/doc/guix.texi:8657 msgid "The phase @code{qt-wrap} searches for Qt5 plugin paths, QML paths and some XDG in the inputs and output. In case some path is found, all programs in the output's @file{bin/}, @file{sbin/}, @file{libexec/} and @file{lib/libexec/} directories are wrapped in scripts defining the necessary environment variables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8606 +#: guix-git/doc/guix.texi:8663 msgid "It is possible to exclude specific package outputs from that wrapping process by listing their names in the @code{#:qt-wrap-excluded-outputs} parameter. This is useful when an output is known not to contain any Qt binaries, and where wrapping would gratuitously add a dependency of that output on Qt, KDE, or such." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8608 +#: guix-git/doc/guix.texi:8665 msgid "This phase is added after the @code{install} phase." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8611 +#: guix-git/doc/guix.texi:8668 #, no-wrap msgid "{Scheme Variable} r-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8619 +#: guix-git/doc/guix.texi:8676 msgid "This variable is exported by @code{(guix build-system r)}. It implements the build procedure used by @uref{https://r-project.org, R} packages, which essentially is little more than running @samp{R CMD INSTALL --library=/gnu/store/@dots{}} in an environment where @env{R_LIBS_SITE} contains the paths to all R package inputs. Tests are run after installation using the R function @code{tools::testInstalledPackage}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8621 +#: guix-git/doc/guix.texi:8678 #, no-wrap msgid "{Scheme Variable} rakudo-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8629 +#: guix-git/doc/guix.texi:8686 msgid "This variable is exported by @code{(guix build-system rakudo)}. It implements the build procedure used by @uref{https://rakudo.org/, Rakudo} for @uref{https://perl6.org/, Perl6} packages. It installs the package to @code{/gnu/store/@dots{}/NAME-VERSION/share/perl6} and installs the binaries, library files and the resources, as well as wrap the files under the @code{bin/} directory. Tests can be skipped by passing @code{#f} to the @code{tests?} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8637 +#: guix-git/doc/guix.texi:8694 msgid "Which rakudo package is used can be specified with @code{rakudo}. Which perl6-tap-harness package used for the tests can be specified with @code{#:prove6} or removed by passing @code{#f} to the @code{with-prove6?} parameter. Which perl6-zef package used for tests and installing can be specified with @code{#:zef} or removed by passing @code{#f} to the @code{with-zef?} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8639 +#: guix-git/doc/guix.texi:8696 #, no-wrap msgid "{Scheme Variable} texlive-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8644 +#: guix-git/doc/guix.texi:8701 msgid "This variable is exported by @code{(guix build-system texlive)}. It is used to build TeX packages in batch mode with a specified engine. The build system sets the @env{TEXINPUTS} variable to find all TeX source files in the inputs." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8653 +#: guix-git/doc/guix.texi:8710 msgid "By default it runs @code{luatex} on all files ending on @code{ins}. A different engine and format can be specified with the @code{#:tex-format} argument. Different build targets can be specified with the @code{#:build-targets} argument, which expects a list of file names. The build system adds only @code{texlive-bin} and @code{texlive-latex-base} (both from @code{(gnu packages tex}) to the inputs. Both can be overridden with the arguments @code{#:texlive-bin} and @code{#:texlive-latex-base}, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8656 +#: guix-git/doc/guix.texi:8713 msgid "The @code{#:tex-directory} parameter tells the build system where to install the built files under the texmf tree." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8658 +#: guix-git/doc/guix.texi:8715 #, no-wrap msgid "{Scheme Variable} ruby-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8662 +#: guix-git/doc/guix.texi:8719 msgid "This variable is exported by @code{(guix build-system ruby)}. It implements the RubyGems build procedure used by Ruby packages, which involves running @code{gem build} followed by @code{gem install}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8670 +#: guix-git/doc/guix.texi:8727 msgid "The @code{source} field of a package that uses this build system typically references a gem archive, since this is the format that Ruby developers use when releasing their software. The build system unpacks the gem archive, potentially patches the source, runs the test suite, repackages the gem, and installs it. Additionally, directories and tarballs may be referenced to allow building unreleased gems from Git or a traditional source release tarball." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8674 +#: guix-git/doc/guix.texi:8731 msgid "Which Ruby package is used can be specified with the @code{#:ruby} parameter. A list of additional flags to be passed to the @command{gem} command can be specified with the @code{#:gem-flags} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8676 +#: guix-git/doc/guix.texi:8733 #, no-wrap msgid "{Scheme Variable} waf-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8682 +#: guix-git/doc/guix.texi:8739 msgid "This variable is exported by @code{(guix build-system waf)}. It implements a build procedure around the @code{waf} script. The common phases---@code{configure}, @code{build}, and @code{install}---are implemented by passing their names as arguments to the @code{waf} script." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8686 +#: guix-git/doc/guix.texi:8743 msgid "The @code{waf} script is executed by the Python interpreter. Which Python package is used to run the script can be specified with the @code{#:python} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8688 +#: guix-git/doc/guix.texi:8745 #, no-wrap msgid "{Scheme Variable} scons-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8694 +#: guix-git/doc/guix.texi:8751 msgid "This variable is exported by @code{(guix build-system scons)}. It implements the build procedure used by the SCons software construction tool. This build system runs @code{scons} to build the package, @code{scons test} to run tests, and then @code{scons install} to install the package." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8701 +#: guix-git/doc/guix.texi:8758 msgid "Additional flags to be passed to @code{scons} can be specified with the @code{#:scons-flags} parameter. The default build and install targets can be overridden with @code{#:build-targets} and @code{#:install-targets} respectively. The version of Python used to run SCons can be specified by selecting the appropriate SCons package with the @code{#:scons} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8703 +#: guix-git/doc/guix.texi:8760 #, no-wrap msgid "{Scheme Variable} haskell-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8717 +#: guix-git/doc/guix.texi:8774 msgid "This variable is exported by @code{(guix build-system haskell)}. It implements the Cabal build procedure used by Haskell packages, which involves running @code{runhaskell Setup.hs configure --prefix=/gnu/store/@dots{}} and @code{runhaskell Setup.hs build}. Instead of installing the package by running @code{runhaskell Setup.hs install}, to avoid trying to register libraries in the read-only compiler store directory, the build system uses @code{runhaskell Setup.hs copy}, followed by @code{runhaskell Setup.hs register}. In addition, the build system generates the package documentation by running @code{runhaskell Setup.hs haddock}, unless @code{#:haddock? #f} is passed. Optional Haddock parameters can be passed with the help of the @code{#:haddock-flags} parameter. If the file @code{Setup.hs} is not found, the build system looks for @code{Setup.lhs} instead." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8720 +#: guix-git/doc/guix.texi:8777 msgid "Which Haskell compiler is used can be specified with the @code{#:haskell} parameter which defaults to @code{ghc}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8722 +#: guix-git/doc/guix.texi:8779 #, no-wrap msgid "{Scheme Variable} dub-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8727 +#: guix-git/doc/guix.texi:8784 msgid "This variable is exported by @code{(guix build-system dub)}. It implements the Dub build procedure used by D packages, which involves running @code{dub build} and @code{dub run}. Installation is done by copying the files manually." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8730 +#: guix-git/doc/guix.texi:8787 msgid "Which D compiler is used can be specified with the @code{#:ldc} parameter which defaults to @code{ldc}." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:8733 +#: guix-git/doc/guix.texi:8790 msgid "emacs-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8733 +#: guix-git/doc/guix.texi:8790 #, no-wrap msgid "{Scheme Variable} emacs-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8737 +#: guix-git/doc/guix.texi:8794 msgid "This variable is exported by @code{(guix build-system emacs)}. It implements an installation procedure similar to the packaging system of Emacs itself (@pxref{Packages,,, emacs, The GNU Emacs Manual})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8743 +#: guix-git/doc/guix.texi:8800 msgid "It first creates the @code{@code{package}-autoloads.el} file, then it byte compiles all Emacs Lisp files. Differently from the Emacs packaging system, the Info documentation files are moved to the standard documentation directory and the @file{dir} file is deleted. The Elisp package files are installed directly under @file{share/emacs/site-lisp}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8745 +#: guix-git/doc/guix.texi:8802 #, no-wrap msgid "{Scheme Variable} font-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8751 +#: guix-git/doc/guix.texi:8808 msgid "This variable is exported by @code{(guix build-system font)}. It implements an installation procedure for font packages where upstream provides pre-compiled TrueType, OpenType, etc.@: font files that merely need to be copied into place. It copies font files to standard locations in the output directory." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8753 +#: guix-git/doc/guix.texi:8810 #, no-wrap msgid "{Scheme Variable} meson-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8757 +#: guix-git/doc/guix.texi:8814 msgid "This variable is exported by @code{(guix build-system meson)}. It implements the build procedure for packages that use @url{https://mesonbuild.com, Meson} as their build system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8761 +#: guix-git/doc/guix.texi:8818 msgid "It adds both Meson and @uref{https://ninja-build.org/, Ninja} to the set of inputs, and they can be changed with the parameters @code{#:meson} and @code{#:ninja} if needed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8764 +#: guix-git/doc/guix.texi:8821 msgid "This build system is an extension of @code{gnu-build-system}, but with the following phases changed to some specific for Meson:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8767 guix-git/doc/guix.texi:8818 -#: guix-git/doc/guix.texi:8886 +#: guix-git/doc/guix.texi:8824 guix-git/doc/guix.texi:8875 +#: guix-git/doc/guix.texi:8947 #, no-wrap msgid "configure" msgstr "설정" #. type: table -#: guix-git/doc/guix.texi:8772 +#: guix-git/doc/guix.texi:8829 msgid "The phase runs @code{meson} with the flags specified in @code{#:configure-flags}. The flag @option{--buildtype} is always set to @code{debugoptimized} unless something else is specified in @code{#:build-type}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8776 +#: guix-git/doc/guix.texi:8833 msgid "The phase runs @code{ninja} to build the package in parallel by default, but this can be changed with @code{#:parallel-build?}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8782 +#: guix-git/doc/guix.texi:8839 msgid "The phase runs @samp{meson test} with a base set of options that cannot be overridden. This base set of options can be extended via the @code{#:test-options} argument, for example to select or skip a specific test suite." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8785 +#: guix-git/doc/guix.texi:8842 msgid "The phase runs @code{ninja install} and can not be changed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8788 +#: guix-git/doc/guix.texi:8845 msgid "Apart from that, the build system also adds the following phases:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8791 +#: guix-git/doc/guix.texi:8848 #, no-wrap msgid "fix-runpath" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8798 +#: guix-git/doc/guix.texi:8855 msgid "This phase ensures that all binaries can find the libraries they need. It searches for required libraries in subdirectories of the package being built, and adds those to @code{RUNPATH} where needed. It also removes references to libraries left over from the build phase by @code{meson}, such as test dependencies, that aren't actually required for the program to run." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8802 guix-git/doc/guix.texi:8806 +#: guix-git/doc/guix.texi:8859 guix-git/doc/guix.texi:8863 msgid "This phase is the phase provided by @code{glib-or-gtk-build-system}, and it is not enabled by default. It can be enabled with @code{#:glib-or-gtk?}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8809 +#: guix-git/doc/guix.texi:8866 #, no-wrap msgid "{Scheme Variable} linux-module-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8811 +#: guix-git/doc/guix.texi:8868 msgid "@code{linux-module-build-system} allows building Linux kernel modules." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8815 +#: guix-git/doc/guix.texi:8872 msgid "This build system is an extension of @code{gnu-build-system}, but with the following phases changed:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8821 +#: guix-git/doc/guix.texi:8878 msgid "This phase configures the environment so that the Linux kernel's Makefile can be used to build the external kernel module." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8825 +#: guix-git/doc/guix.texi:8882 msgid "This phase uses the Linux kernel's Makefile in order to build the external kernel module." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8829 +#: guix-git/doc/guix.texi:8886 msgid "This phase uses the Linux kernel's Makefile in order to install the external kernel module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8834 +#: guix-git/doc/guix.texi:8891 msgid "It is possible and useful to specify the Linux kernel to use for building the module (in the @code{arguments} form of a package using the @code{linux-module-build-system}, use the key @code{#:linux} to specify it)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8836 +#: guix-git/doc/guix.texi:8893 #, no-wrap msgid "{Scheme Variable} node-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8841 +#: guix-git/doc/guix.texi:8898 msgid "This variable is exported by @code{(guix build-system node)}. It implements the build procedure used by @uref{https://nodejs.org, Node.js}, which implements an approximation of the @code{npm install} command, followed by an @code{npm test} command." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8845 +#: guix-git/doc/guix.texi:8902 msgid "Which Node.js package is used to interpret the @code{npm} commands can be specified with the @code{#:node} parameter which defaults to @code{node}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8851 +#: guix-git/doc/guix.texi:8908 msgid "Lastly, for packages that do not need anything as sophisticated, a ``trivial'' build system is provided. It is trivial in the sense that it provides basically no support: it does not pull any implicit inputs, and does not have a notion of build phases." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8852 +#: guix-git/doc/guix.texi:8909 #, no-wrap msgid "{Scheme Variable} trivial-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8854 +#: guix-git/doc/guix.texi:8911 msgid "This variable is exported by @code{(guix build-system trivial)}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8859 +#: guix-git/doc/guix.texi:8916 msgid "This build system requires a @code{#:builder} argument. This argument must be a Scheme expression that builds the package output(s)---as with @code{build-expression->derivation} (@pxref{Derivations, @code{build-expression->derivation}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8864 +#: guix-git/doc/guix.texi:8921 #, no-wrap msgid "build phases, for packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8870 +#: guix-git/doc/guix.texi:8927 msgid "Almost all package build systems implement a notion @dfn{build phases}: a sequence of actions that the build system executes, when you build the package, leading to the installed byproducts in the store. A notable exception is the ``bare-bones'' @code{trivial-build-system} (@pxref{Build Systems})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8874 +#: guix-git/doc/guix.texi:8931 msgid "As discussed in the previous section, those build systems provide a standard list of phases. For @code{gnu-build-system}, the main build phases are the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8876 +#: guix-git/doc/guix.texi:8933 +#, no-wrap +msgid "set-paths" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:8936 +msgid "Define search path environment variables for all the input packages, including @env{PATH} (@pxref{Search Paths})." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:8937 #, no-wrap msgid "unpack" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8880 +#: guix-git/doc/guix.texi:8941 msgid "Unpack the source tarball, and change the current directory to the extracted source tree. If the source is actually a directory, copy it to the build tree, and enter that directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8881 +#: guix-git/doc/guix.texi:8942 #, no-wrap msgid "patch-source-shebangs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8885 +#: guix-git/doc/guix.texi:8946 msgid "Patch shebangs encountered in source files so they refer to the right store file names. For instance, this changes @code{#!/bin/sh} to @code{#!/gnu/store/@dots{}-bash-4.3/bin/sh}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8890 +#: guix-git/doc/guix.texi:8951 msgid "Run the @file{configure} script with a number of default options, such as @option{--prefix=/gnu/store/@dots{}}, as well as the options specified by the @code{#:configure-flags} argument." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8895 +#: guix-git/doc/guix.texi:8956 msgid "Run @code{make} with the list of flags specified with @code{#:make-flags}. If the @code{#:parallel-build?} argument is true (the default), build with @code{make -j}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8901 +#: guix-git/doc/guix.texi:8962 msgid "Run @code{make check}, or some other target specified with @code{#:test-target}, unless @code{#:tests? #f} is passed. If the @code{#:parallel-tests?} argument is true (the default), run @code{make check -j}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8904 +#: guix-git/doc/guix.texi:8965 msgid "Run @code{make install} with the flags listed in @code{#:make-flags}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8905 +#: guix-git/doc/guix.texi:8966 #, no-wrap msgid "patch-shebangs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8907 +#: guix-git/doc/guix.texi:8968 msgid "Patch shebangs on the installed executable files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8908 +#: guix-git/doc/guix.texi:8969 #, no-wrap msgid "strip" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8912 +#: guix-git/doc/guix.texi:8973 msgid "Strip debugging symbols from ELF files (unless @code{#:strip-binaries?} is false), copying them to the @code{debug} output when available (@pxref{Installing Debugging Files})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8921 +#: guix-git/doc/guix.texi:8982 msgid "Other build systems have similar phases, with some variations. For example, @code{cmake-build-system} has same-named phases but its @code{configure} phases runs @code{cmake} instead of @code{./configure}. Others, such as @code{python-build-system}, have a wholly different list of standard phases. All this code runs on the @dfn{build side}: it is evaluated when you actually build the package, in a dedicated build process spawned by the build daemon (@pxref{Invoking guix-daemon})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8928 +#: guix-git/doc/guix.texi:8989 msgid "Build phases are represented as association lists or ``alists'' (@pxref{Association Lists,,, guile, GNU Guile Reference Manual}) where each key is a symbol for the name of the phase and the associated value is a procedure that accepts an arbitrary number of arguments. By convention, those procedures receive information about the build in the form of @dfn{keyword parameters}, which they can use or ignore." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:8929 +#: guix-git/doc/guix.texi:8990 #, no-wrap msgid "%standard-phases" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8935 +#: guix-git/doc/guix.texi:8996 msgid "For example, here is how @code{(guix build gnu-build-system)} defines @code{%standard-phases}, the variable holding its alist of build phases@footnote{We present a simplified view of those build phases, but do take a look at @code{(guix build gnu-build-system)} to see all the details!}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8938 +#: guix-git/doc/guix.texi:8999 #, no-wrap msgid "" ";; The build phases of 'gnu-build-system'.\n" @@ -17076,7 +17208,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8942 +#: guix-git/doc/guix.texi:9003 #, no-wrap msgid "" "(define* (unpack #:key source #:allow-other-keys)\n" @@ -17086,7 +17218,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8948 +#: guix-git/doc/guix.texi:9009 #, no-wrap msgid "" "(define* (configure #:key outputs #:allow-other-keys)\n" @@ -17098,7 +17230,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8952 +#: guix-git/doc/guix.texi:9013 #, no-wrap msgid "" "(define* (build #:allow-other-keys)\n" @@ -17108,7 +17240,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8959 +#: guix-git/doc/guix.texi:9020 #, no-wrap msgid "" "(define* (check #:key (test-target \"check\") (tests? #true)\n" @@ -17121,7 +17253,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8963 +#: guix-git/doc/guix.texi:9024 #, no-wrap msgid "" "(define* (install #:allow-other-keys)\n" @@ -17131,7 +17263,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8972 +#: guix-git/doc/guix.texi:9033 #, no-wrap msgid "" "(define %standard-phases\n" @@ -17145,38 +17277,38 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8982 +#: guix-git/doc/guix.texi:9043 msgid "This shows how @code{%standard-phases} is defined as a list of symbol/procedure pairs (@pxref{Pairs,,, guile, GNU Guile Reference Manual}). The first pair associates the @code{unpack} procedure with the @code{unpack} symbol---a name; the second pair defines the @code{configure} phase similarly, and so on. When building a package that uses @code{gnu-build-system} with its default list of phases, those phases are executed sequentially. You can see the name of each phase started and completed in the build log of packages that you build." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8988 +#: guix-git/doc/guix.texi:9049 msgid "Let's now look at the procedures themselves. Each one is defined with @code{define*}: @code{#:key} lists keyword parameters the procedure accepts, possibly with a default value, and @code{#:allow-other-keys} specifies that other keyword parameters are ignored (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9004 +#: guix-git/doc/guix.texi:9065 msgid "The @code{unpack} procedure honors the @code{source} parameter, which the build system uses to pass the file name of the source tarball (or version control checkout), and it ignores other parameters. The @code{configure} phase only cares about the @code{outputs} parameter, an alist mapping package output names to their store file name (@pxref{Packages with Multiple Outputs}). It extracts the file name of for @code{out}, the default output, and passes it to @command{./configure} as the installation prefix, meaning that @command{make install} will eventually copy all the files in that directory (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards}). @code{build} and @code{install} ignore all their arguments. @code{check} honors the @code{test-target} argument, which specifies the name of the Makefile target to run tests; it prints a message and skips tests when @code{tests?} is false." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9005 +#: guix-git/doc/guix.texi:9066 #, no-wrap msgid "build phases, customizing" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9014 +#: guix-git/doc/guix.texi:9075 msgid "The list of phases used for a particular package can be changed with the @code{#:phases} parameter of the build system. Changing the set of build phases boils down to building a new alist of phases based on the @code{%standard-phases} alist described above. This can be done with standard alist procedures such as @code{alist-delete} (@pxref{SRFI-1 Association Lists,,, guile, GNU Guile Reference Manual}); however, it is more convenient to do so with @code{modify-phases} (@pxref{Build Utilities, @code{modify-phases}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9019 +#: guix-git/doc/guix.texi:9080 msgid "Here is an example of a package definition that removes the @code{configure} phase of @code{%standard-phases} and inserts a new phase before the @code{build} phase, called @code{set-prefix-in-makefile}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9039 +#: guix-git/doc/guix.texi:9100 #, no-wrap msgid "" "(define-public example\n" @@ -17200,44 +17332,44 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9045 +#: guix-git/doc/guix.texi:9106 msgid "The new phase that is inserted is written as an anonymous procedure, introduced with @code{lambda*}; it honors the @code{outputs} parameter we have seen before. @xref{Build Utilities}, for more about the helpers used by this phase, and for more examples of @code{modify-phases}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9046 guix-git/doc/guix.texi:10046 +#: guix-git/doc/guix.texi:9107 guix-git/doc/guix.texi:10360 #, no-wrap msgid "code staging" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9047 guix-git/doc/guix.texi:10047 +#: guix-git/doc/guix.texi:9108 guix-git/doc/guix.texi:10361 #, no-wrap msgid "staging, of code" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9054 +#: guix-git/doc/guix.texi:9115 msgid "Keep in mind that build phases are code evaluated at the time the package is actually built. This explains why the whole @code{modify-phases} expression above is quoted (it comes after the @code{'} or apostrophe): it is @dfn{staged} for later execution. @xref{G-Expressions}, for an explanation of code staging and the @dfn{code strata} involved." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9064 +#: guix-git/doc/guix.texi:9125 msgid "As soon as you start writing non-trivial package definitions (@pxref{Defining Packages}) or other build actions (@pxref{G-Expressions}), you will likely start looking for helpers for ``shell-like'' actions---creating directories, copying and deleting files recursively, manipulating build phases, and so on. The @code{(guix build utils)} module provides such utility procedures." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9068 +#: guix-git/doc/guix.texi:9129 msgid "Most build systems load @code{(guix build utils)} (@pxref{Build Systems}). Thus, when writing custom build phases for your package definitions, you can usually assume those procedures are in scope." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9073 +#: guix-git/doc/guix.texi:9134 msgid "When writing G-expressions, you can import @code{(guix build utils)} on the ``build side'' using @code{with-imported-modules} and then put it in scope with the @code{use-modules} form (@pxref{Using Guile Modules,,, guile, GNU Guile Reference Manual}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9080 +#: guix-git/doc/guix.texi:9141 #, no-wrap msgid "" "(with-imported-modules '((guix build utils)) ;import it\n" @@ -17249,7 +17381,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9083 +#: guix-git/doc/guix.texi:9144 #, no-wrap msgid "" " ;; Happily use its 'mkdir-p' procedure.\n" @@ -17257,238 +17389,238 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9087 +#: guix-git/doc/guix.texi:9148 msgid "The remainder of this section is the reference for most of the utility procedures provided by @code{(guix build utils)}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9090 +#: guix-git/doc/guix.texi:9151 #, no-wrap msgid "Dealing with Store File Names" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9093 +#: guix-git/doc/guix.texi:9154 msgid "This section documents procedures that deal with store file names." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9094 +#: guix-git/doc/guix.texi:9155 #, no-wrap msgid "{Scheme Procedure} %store-directory" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9096 +#: guix-git/doc/guix.texi:9157 msgid "Return the directory name of the store." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9098 +#: guix-git/doc/guix.texi:9159 #, no-wrap msgid "{Scheme Procedure} store-file-name? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9100 +#: guix-git/doc/guix.texi:9161 msgid "Return true if @var{file} is in the store." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9102 +#: guix-git/doc/guix.texi:9163 #, no-wrap msgid "{Scheme Procedure} strip-store-file-name @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9105 +#: guix-git/doc/guix.texi:9166 msgid "Strip the @file{/gnu/store} and hash from @var{file}, a store file name. The result is typically a @code{\"@var{package}-@var{version}\"} string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9107 +#: guix-git/doc/guix.texi:9168 #, no-wrap msgid "{Scheme Procedure} package-name->name+version @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9112 +#: guix-git/doc/guix.texi:9173 msgid "Given @var{name}, a package name like @code{\"foo-0.9.1b\"}, return two values: @code{\"foo\"} and @code{\"0.9.1b\"}. When the version part is unavailable, @var{name} and @code{#f} are returned. The first hyphen followed by a digit is considered to introduce the version part." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9114 +#: guix-git/doc/guix.texi:9175 #, no-wrap msgid "File Types" msgstr "파일 유형" #. type: Plain text -#: guix-git/doc/guix.texi:9117 +#: guix-git/doc/guix.texi:9178 msgid "The procedures below deal with files and file types." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9118 +#: guix-git/doc/guix.texi:9179 #, no-wrap msgid "{Scheme Procedure} directory-exists? @var{dir}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9120 +#: guix-git/doc/guix.texi:9181 msgid "Return @code{#t} if @var{dir} exists and is a directory." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9122 +#: guix-git/doc/guix.texi:9183 #, no-wrap msgid "{Scheme Procedure} executable-file? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9124 +#: guix-git/doc/guix.texi:9185 msgid "Return @code{#t} if @var{file} exists and is executable." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9126 +#: guix-git/doc/guix.texi:9187 #, no-wrap msgid "{Scheme Procedure} symbolic-link? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9128 +#: guix-git/doc/guix.texi:9189 msgid "Return @code{#t} if @var{file} is a symbolic link (aka. a ``symlink'')." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9130 +#: guix-git/doc/guix.texi:9191 #, no-wrap msgid "{Scheme Procedure} elf-file? @var{file}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9131 +#: guix-git/doc/guix.texi:9192 #, no-wrap msgid "{Scheme Procedure} ar-file? @var{file}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9132 +#: guix-git/doc/guix.texi:9193 #, no-wrap msgid "{Scheme Procedure} gzip-file? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9135 +#: guix-git/doc/guix.texi:9196 msgid "Return @code{#t} if @var{file} is, respectively, an ELF file, an @code{ar} archive (such as a @file{.a} static library), or a gzip file." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9137 +#: guix-git/doc/guix.texi:9198 #, no-wrap msgid "{Scheme Procedure} reset-gzip-timestamp @var{file} [#:keep-mtime? #t]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9141 +#: guix-git/doc/guix.texi:9202 msgid "If @var{file} is a gzip file, reset its embedded timestamp (as with @command{gzip --no-name}) and return true. Otherwise return @code{#f}. When @var{keep-mtime?} is true, preserve @var{file}'s modification time." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9143 +#: guix-git/doc/guix.texi:9204 #, no-wrap msgid "File Manipulation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9150 +#: guix-git/doc/guix.texi:9211 msgid "The following procedures and macros help create, modify, and delete files. They provide functionality comparable to common shell utilities such as @command{mkdir -p}, @command{cp -r}, @command{rm -r}, and @command{sed}. They complement Guile's extensive, but low-level, file system interface (@pxref{POSIX,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9151 +#: guix-git/doc/guix.texi:9212 #, no-wrap msgid "{Scheme Syntax} with-directory-excursion @var{directory} @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9153 +#: guix-git/doc/guix.texi:9214 msgid "Run @var{body} with @var{directory} as the process's current directory." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9160 +#: guix-git/doc/guix.texi:9221 msgid "Essentially, this macro changes the current directory to @var{directory} before evaluating @var{body}, using @code{chdir} (@pxref{Processes,,, guile, GNU Guile Reference Manual}). It changes back to the initial directory when the dynamic extent of @var{body} is left, be it @i{via} normal procedure return or @i{via} a non-local exit such as an exception." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9162 +#: guix-git/doc/guix.texi:9223 #, no-wrap msgid "{Scheme Procedure} mkdir-p @var{dir}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9164 +#: guix-git/doc/guix.texi:9225 msgid "Create directory @var{dir} and all its ancestors." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9166 +#: guix-git/doc/guix.texi:9227 #, no-wrap msgid "{Scheme Procedure} install-file @var{file} @var{directory}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9169 +#: guix-git/doc/guix.texi:9230 msgid "Create @var{directory} if it does not exist and copy @var{file} in there under the same name." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9171 +#: guix-git/doc/guix.texi:9232 #, no-wrap msgid "{Scheme Procedure} make-file-writable @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9173 +#: guix-git/doc/guix.texi:9234 msgid "Make @var{file} writable for its owner." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9175 +#: guix-git/doc/guix.texi:9236 #, no-wrap msgid "{Scheme Procedure} copy-recursively @var{source} @var{destination} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9184 +#: guix-git/doc/guix.texi:9245 msgid "[#:log (current-output-port)] [#:follow-symlinks? #f] @ [#:copy-file copy-file] [#:keep-mtime? #f] [#:keep-permissions? #t] Copy @var{source} directory to @var{destination}. Follow symlinks if @var{follow-symlinks?} is true; otherwise, just preserve them. Call @var{copy-file} to copy regular files. When @var{keep-mtime?} is true, keep the modification time of the files in @var{source} on those of @var{destination}. When @var{keep-permissions?} is true, preserve file permissions. Write verbose output to the @var{log} port." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9186 +#: guix-git/doc/guix.texi:9247 #, no-wrap msgid "{Scheme Procedure} delete-file-recursively @var{dir} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9191 +#: guix-git/doc/guix.texi:9252 msgid "[#:follow-mounts? #f] Delete @var{dir} recursively, like @command{rm -rf}, without following symlinks. Don't follow mount points either, unless @var{follow-mounts?} is true. Report but ignore errors." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9193 +#: guix-git/doc/guix.texi:9254 #, no-wrap msgid "{Scheme Syntax} substitute* @var{file} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9198 +#: guix-git/doc/guix.texi:9259 msgid "((@var{regexp} @var{match-var}@dots{}) @var{body}@dots{}) @dots{} Substitute @var{regexp} in @var{file} by the string returned by @var{body}. @var{body} is evaluated with each @var{match-var} bound to the corresponding positional regexp sub-expression. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9205 +#: guix-git/doc/guix.texi:9266 #, no-wrap msgid "" "(substitute* file\n" @@ -17499,71 +17631,71 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9211 +#: guix-git/doc/guix.texi:9272 msgid "Here, anytime a line of @var{file} contains @code{hello}, it is replaced by @code{good morning}. Anytime a line of @var{file} matches the second regexp, @code{all} is bound to the complete match, @code{letters} is bound to the first sub-expression, and @code{end} is bound to the last one." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9214 +#: guix-git/doc/guix.texi:9275 msgid "When one of the @var{match-var} is @code{_}, no variable is bound to the corresponding match substring." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9217 +#: guix-git/doc/guix.texi:9278 msgid "Alternatively, @var{file} may be a list of file names, in which case they are all subject to the substitutions." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9220 +#: guix-git/doc/guix.texi:9281 msgid "Be careful about using @code{$} to match the end of a line; by itself it won't match the terminating newline of a line." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9222 +#: guix-git/doc/guix.texi:9283 #, no-wrap msgid "File Search" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9224 +#: guix-git/doc/guix.texi:9285 #, no-wrap msgid "file, searching" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9226 +#: guix-git/doc/guix.texi:9287 msgid "This section documents procedures to search and filter files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9227 +#: guix-git/doc/guix.texi:9288 #, no-wrap msgid "{Scheme Procedure} file-name-predicate @var{regexp}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9230 +#: guix-git/doc/guix.texi:9291 msgid "Return a predicate that returns true when passed a file name whose base name matches @var{regexp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9232 +#: guix-git/doc/guix.texi:9293 #, no-wrap msgid "{Scheme Procedure} find-files @var{dir} [@var{pred}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9243 +#: guix-git/doc/guix.texi:9304 msgid "[#:stat lstat] [#:directories? #f] [#:fail-on-error? #f] Return the lexicographically sorted list of files under @var{dir} for which @var{pred} returns true. @var{pred} is passed two arguments: the absolute file name, and its stat buffer; the default predicate always returns true. @var{pred} can also be a regular expression, in which case it is equivalent to @code{(file-name-predicate @var{pred})}. @var{stat} is used to obtain file information; using @code{lstat} means that symlinks are not followed. If @var{directories?} is true, then directories will also be included. If @var{fail-on-error?} is true, raise an exception upon error." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9247 +#: guix-git/doc/guix.texi:9308 msgid "Here are a few examples where we assume that the current directory is the root of the Guix source tree:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9252 +#: guix-git/doc/guix.texi:9313 #, no-wrap msgid "" ";; List all the regular files in the current directory.\n" @@ -17573,7 +17705,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9256 +#: guix-git/doc/guix.texi:9317 #, no-wrap msgid "" ";; List all the .scm files under gnu/services.\n" @@ -17583,7 +17715,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9260 +#: guix-git/doc/guix.texi:9321 #, no-wrap msgid "" ";; List ar files in the current directory.\n" @@ -17592,45 +17724,45 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9262 +#: guix-git/doc/guix.texi:9323 #, no-wrap msgid "{Scheme Procedure} which @var{program}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9265 +#: guix-git/doc/guix.texi:9326 msgid "Return the complete file name for @var{program} as found in @code{$PATH}, or @code{#f} if @var{program} could not be found." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9267 +#: guix-git/doc/guix.texi:9328 #, no-wrap msgid "{Scheme Procedure} search-input-file @var{inputs} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9268 +#: guix-git/doc/guix.texi:9329 #, no-wrap msgid "{Scheme Procedure} search-input-directory @var{inputs} @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9273 +#: guix-git/doc/guix.texi:9334 msgid "Return the complete file name for @var{name} as found in @var{inputs}; @code{search-input-file} searches for a regular file and @code{search-input-directory} searches for a directory. If @var{name} could not be found, an exception is raised." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9277 +#: guix-git/doc/guix.texi:9338 msgid "Here, @var{inputs} must be an association list like @code{inputs} and @code{native-inputs} as available to build phases (@pxref{Build Phases})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9281 +#: guix-git/doc/guix.texi:9342 msgid "Here is a (simplified) example of how @code{search-input-file} is used in a build phase of the @code{wireguard-tools} package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9290 +#: guix-git/doc/guix.texi:9351 #, no-wrap msgid "" "(add-after 'install 'wrap-wg-quick\n" @@ -17642,35 +17774,216 @@ msgid "" " `(\"PATH\" \":\" prefix ,(list coreutils))))))\n" msgstr "" +#. type: subsection +#: guix-git/doc/guix.texi:9353 +#, no-wrap +msgid "Program Invocation" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:9355 +#, no-wrap +msgid "program invocation, from Scheme" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:9356 +#, no-wrap +msgid "invoking programs, from Scheme" +msgstr "" + #. type: Plain text -#: guix-git/doc/guix.texi:9301 +#: guix-git/doc/guix.texi:9360 +msgid "You'll find handy procedures to spawn processes in this module, essentially convenient wrappers around Guile's @code{system*} (@pxref{Processes, @code{system*},, guile, GNU Guile Reference Manual})." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9361 +#, no-wrap +msgid "{Scheme Procedure} invoke @var{program} @var{args}@dots{}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9365 +msgid "Invoke @var{program} with the given @var{args}. Raise an @code{&invoke-error} exception if the exit code is non-zero; otherwise return @code{#t}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9369 +msgid "The advantage compared to @code{system*} is that you do not need to check the return value. This reduces boilerplate in shell-script-like snippets for instance in package build phases." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9371 +#, no-wrap +msgid "{Scheme Procedure} invoke-error? @var{c}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9373 +msgid "Return true if @var{c} is an @code{&invoke-error} condition." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9375 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-program @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9376 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-arguments @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9377 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-exit-status @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9378 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-term-signal @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9379 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-stop-signal @var{c}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9381 +msgid "Access specific fields of @var{c}, an @code{&invoke-error} condition." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9383 +#, no-wrap +msgid "{Scheme Procedure} report-invoke-error @var{c} [@var{port}]" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9386 +msgid "Report to @var{port} (by default the current error port) about @var{c}, an @code{&invoke-error} condition, in a human-friendly way." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9388 +msgid "Typical usage would look like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9392 +#, no-wrap +msgid "" +"(use-modules (srfi srfi-34) ;for 'guard'\n" +" (guix build utils))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9396 +#, no-wrap +msgid "" +"(guard (c ((invoke-error? c)\n" +" (report-invoke-error c)))\n" +" (invoke \"date\" \"--imaginary-option\"))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9398 +#, no-wrap +msgid "@print{} command \"date\" \"--imaginary-option\" failed with status 1\n" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9401 +#, no-wrap +msgid "{Scheme Procedure} invoke/quiet @var{program} @var{args}@dots{}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9407 +msgid "Invoke @var{program} with @var{args} and capture @var{program}'s standard output and standard error. If @var{program} succeeds, print nothing and return the unspecified value; otherwise, raise a @code{&message} error condition that includes the status code and the output of @var{program}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9409 +#, fuzzy +#| msgid "For example:" +msgid "Here's an example:" +msgstr "예를 들면:" + +#. type: lisp +#: guix-git/doc/guix.texi:9414 +#, no-wrap +msgid "" +"(use-modules (srfi srfi-34) ;for 'guard'\n" +" (srfi srfi-35) ;for 'message-condition?'\n" +" (guix build utils))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9419 +#, no-wrap +msgid "" +"(guard (c ((message-condition? c)\n" +" (display (condition-message c))))\n" +" (invoke/quiet \"date\") ;all is fine\n" +" (invoke/quiet \"date\" \"--imaginary-option\"))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9421 +#, no-wrap +msgid "" +"@print{} 'date --imaginary-option' exited with status 1; output follows:\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9424 +#, no-wrap +msgid "" +" date: unrecognized option '--imaginary-option'\n" +" Try 'date --help' for more information.\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9436 msgid "The @code{(guix build utils)} also contains tools to manipulate build phases as used by build systems (@pxref{Build Systems}). Build phases are represented as association lists or ``alists'' (@pxref{Association Lists,,, guile, GNU Guile Reference Manual}) where each key is a symbol naming the phase and the associated value is a procedure (@pxref{Build Phases})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9305 +#: guix-git/doc/guix.texi:9440 msgid "Guile core and the @code{(srfi srfi-1)} module both provide tools to manipulate alists. The @code{(guix build utils)} module complements those with tools written with build phases in mind." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9306 +#: guix-git/doc/guix.texi:9441 #, no-wrap msgid "build phases, modifying" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9307 +#: guix-git/doc/guix.texi:9442 #, no-wrap msgid "{Scheme Syntax} modify-phases @var{phases} @var{clause}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9310 +#: guix-git/doc/guix.texi:9445 msgid "Modify @var{phases} sequentially as per each @var{clause}, which may have one of the following forms:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9316 +#: guix-git/doc/guix.texi:9451 #, no-wrap msgid "" "(delete @var{old-phase-name})\n" @@ -17680,17 +17993,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9320 +#: guix-git/doc/guix.texi:9455 msgid "Where every @var{phase-name} above is an expression evaluating to a symbol, and @var{new-phase} an expression evaluating to a procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9331 +#: guix-git/doc/guix.texi:9466 msgid "The example below is taken from the definition of the @code{grep} package. It adds a phase to run after the @code{install} phase, called @code{fix-egrep-and-fgrep}. That phase is a procedure (@code{lambda*} is for anonymous procedures) that takes a @code{#:outputs} keyword argument and ignores extra keyword arguments (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual}, for more on @code{lambda*} and optional and keyword arguments.) The phase uses @code{substitute*} to modify the installed @file{egrep} and @file{fgrep} scripts so that they refer to @code{grep} by its absolute file name:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9345 +#: guix-git/doc/guix.texi:9480 #, no-wrap msgid "" "(modify-phases %standard-phases\n" @@ -17708,12 +18021,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9352 +#: guix-git/doc/guix.texi:9487 msgid "In the example below, phases are modified in two ways: the standard @code{configure} phase is deleted, presumably because the package does not have a @file{configure} script or anything similar, and the default @code{install} phase is replaced by one that manually copies the executable files to be installed:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9365 +#: guix-git/doc/guix.texi:9500 #, no-wrap msgid "" "(modify-phases %standard-phases\n" @@ -17730,377 +18043,606 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9373 +#: guix-git/doc/guix.texi:9507 +#, fuzzy, no-wrap +#| msgid "search" +msgid "search path" +msgstr "검색" + +#. type: Plain text +#: guix-git/doc/guix.texi:9514 +msgid "Many programs and libraries look for input data in a @dfn{search path}, a list of directories: shells like Bash look for executables in the command search path, a C compiler looks for @file{.h} files in its header search path, the Python interpreter looks for @file{.py} files in its search path, the spell checker has a search path for dictionaries, and so on." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9522 +msgid "Search paths can usually be defined or overridden @i{via} environment variables (@pxref{Environment Variables,,, libc, The GNU C Library Reference Manual}). For example, the search paths mentioned above can be changed by defining the @env{PATH}, @env{C_INCLUDE_PATH}, @env{PYTHONPATH} (or @env{GUIX_PYTHONPATH}), and @env{DICPATH} environment variables---you know, all these something-PATH variables that you need to get right or things ``won't be found''." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9532 +msgid "You may have noticed from the command line that Guix ``knows'' which search path environment variables should be defined, and how. When you install packages in your default profile, the file @file{~/.guix-profile/etc/profile} is created, which you can ``source'' from the shell to set those variables. Likewise, if you ask @command{guix shell} to create an environment containing Python and NumPy, a Python library, and if you pass it the @option{--search-paths} option, it will tell you about @env{PATH} and @env{GUIX_PYTHONPATH} (@pxref{Invoking guix shell}):" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9537 +#, no-wrap +msgid "" +"$ guix shell python python-numpy --pure --search-paths\n" +"export PATH=\"/gnu/store/@dots{}-profile/bin\"\n" +"export GUIX_PYTHONPATH=\"/gnu/store/@dots{}-profile/lib/python3.9/site-packages\"\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9541 +msgid "When you omit @option{--search-paths}, it defines these environment variables right away, such that Python can readily find NumPy:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9550 +#, no-wrap +msgid "" +"$ guix shell python python-numpy -- python3\n" +"Python 3.9.6 (default, Jan 1 1970, 00:00:01)\n" +"[GCC 10.3.0] on linux\n" +"Type \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n" +">>> import numpy\n" +">>> numpy.version.version\n" +"'1.20.3'\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9555 +msgid "For this to work, the definition of the @code{python} package @emph{declares} the search path it cares about and its associated environment variable, @env{GUIX_PYTHONPATH}. It looks like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9565 +#, no-wrap +msgid "" +"(package\n" +" (name \"python\")\n" +" (version \"3.9.9\")\n" +" ;; some fields omitted...\n" +" (native-search-paths\n" +" (list (search-path-specification\n" +" (variable \"GUIX_PYTHONPATH\")\n" +" (files (list \"lib/python/3.9/site-packages\"))))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9580 +msgid "What this @code{native-search-paths} field says is that, when the @code{python} package is used, the @env{GUIX_PYTHONPATH} environment variable must be defined to include all the @file{lib/python/3.9/site-packages} sub-directories encountered in its environment. (The @code{native-} bit means that, if we are in a cross-compilation environment, only native inputs may be added to the search path; @pxref{package Reference, @code{search-paths}}.) In the NumPy example above, the profile where @code{python} appears contains exactly one such sub-directory, and @env{GUIX_PYTHONPATH} is set to that. When there are several @file{lib/python/3.9/site-packages}---this is the case in package build environments---they are all added to @env{GUIX_PYTHONPATH}, separated by colons (@code{:})." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9587 +msgid "Notice that @env{GUIX_PYTHONPATH} is specified as part of the definition of the @code{python} package, and @emph{not} as part of that of @code{python-numpy}. This is because this environment variable ``belongs'' to Python, not NumPy: Python actually reads the value of that variable and honors it." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9591 +msgid "Corollary: if you create a profile that does not contain @code{python}, @code{GUIX_PYTHONPATH} will @emph{not} be defined, even if it contains packages that provide @file{.py} files:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9595 +#, no-wrap +msgid "" +"$ guix shell python-numpy --search-paths --pure\n" +"export PATH=\"/gnu/store/@dots{}-profile/bin\"\n" +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9599 +msgid "This makes a lot of sense if we look at this profile in isolation: no software in this profile would read @env{GUIX_PYTHONPATH}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9609 +msgid "Of course, there are many variations on that theme: some packages honor more than one search path, some use separators other than colon, some accumulate several directories in their search path, and so on. A more complex example is the search path of libxml2: the value of the @env{XML_CATALOG_FILES} environment variable is space-separated, it must contain a list of @file{catalog.xml} files (not directories), which are to be found in @file{xml} sub-directories---nothing less. The search path specification looks like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9621 +#, no-wrap +msgid "" +"(package\n" +" (name \"libxml2\")\n" +" ;; some fields omitted\n" +" (native-search-paths\n" +" (list (search-path-specification\n" +" (variable \"XML_CATALOG_FILES\")\n" +" (separator \" \")\n" +" (files '(\"xml\"))\n" +" (file-pattern \"^catalog\\\\.xml$\")\n" +" (file-type 'regular)))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9624 +msgid "Worry not, search path specifications are usually not this tricky." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9628 +msgid "The @code{(guix search-paths)} module defines the data type of search path specifications and a number of helper procedures. Below is the reference of search path specifications." +msgstr "" + +#. type: deftp +#: guix-git/doc/guix.texi:9629 +#, fuzzy, no-wrap +msgid "{Data Type} search-path-specification" +msgstr "설정" + +#. type: deftp +#: guix-git/doc/guix.texi:9631 +msgid "The data type for search path specifications." +msgstr "" + +#. type: code{#1} +#: guix-git/doc/guix.texi:9633 +#, no-wrap +msgid "variable" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9635 +msgid "The name of the environment variable for this search path (a string)." +msgstr "" + +#. type: code{#1} +#: guix-git/doc/guix.texi:9636 guix-git/doc/guix.texi:17482 +#, no-wrap +msgid "files" +msgstr "파일" + +#. type: table +#: guix-git/doc/guix.texi:9639 +msgid "The list of sub-directories (strings) that should be added to the search path." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9640 +#, no-wrap +msgid "@code{separator} (default: @code{\":\"})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9642 +msgid "The string used to separate search path components." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9650 +msgid "As a special case, a @code{separator} value of @code{#f} specifies a ``single-component search path''---in other words, a search path that cannot contain more than one element. This is useful in some cases, such as the @code{SSL_CERT_DIR} variable (honored by OpenSSL, cURL, and a few other packages) or the @code{ASPELL_DICT_DIR} variable (honored by the GNU Aspell spell checker), both of which must point to a single directory." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9651 +#, no-wrap +msgid "@code{file-type} (default: @code{'directory})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9655 +msgid "The type of file being matched---@code{'directory} or @code{'regular}, though it can be any symbol returned by @code{stat:type} (@pxref{File System, @code{stat},, guile, GNU Guile Reference Manual})." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9658 +msgid "In the libxml2 example above, we would match regular files; in the Python example, we would match directories." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9659 +#, no-wrap +msgid "@code{file-pattern} (default: @code{#f})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9663 +msgid "This must be either @code{#f} or a regular expression specifying files to be matched @emph{within} the sub-directories specified by the @code{files} field." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9665 +msgid "Again, the libxml2 example shows a situation where this is needed." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9671 +msgid "How do you turn search path specifications on one hand and a bunch of directories on the other hand in a set of environment variable definitions? That's the job of @code{evaluate-search-paths}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9672 +#, no-wrap +msgid "{Scheme Procedure} evaluate-search-paths @var{search-paths} @" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9678 +msgid "@var{directories} [@var{getenv}] Evaluate @var{search-paths}, a list of search-path specifications, for @var{directories}, a list of directory names, and return a list of specification/value pairs. Use @var{getenv} to determine the current settings and report only settings not already effective." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9682 +msgid "The @code{(guix profiles)} provides a higher-level helper procedure, @code{load-profile}, that sets the environment variables of a profile." +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:9687 #, no-wrap msgid "store items" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9374 +#: guix-git/doc/guix.texi:9688 #, no-wrap msgid "store paths" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9385 +#: guix-git/doc/guix.texi:9699 msgid "Conceptually, the @dfn{store} is the place where derivations that have been built successfully are stored---by default, @file{/gnu/store}. Sub-directories in the store are referred to as @dfn{store items} or sometimes @dfn{store paths}. The store has an associated database that contains information such as the store paths referred to by each store path, and the list of @emph{valid} store items---results of successful builds. This database resides in @file{@var{localstatedir}/guix/db}, where @var{localstatedir} is the state directory specified @i{via} @option{--localstatedir} at configure time, usually @file{/var}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9390 +#: guix-git/doc/guix.texi:9704 msgid "The store is @emph{always} accessed by the daemon on behalf of its clients (@pxref{Invoking guix-daemon}). To manipulate the store, clients connect to the daemon over a Unix-domain socket, send requests to it, and read the result---these are remote procedure calls, or RPCs." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:9395 +#: guix-git/doc/guix.texi:9709 msgid "Users must @emph{never} modify files under @file{/gnu/store} directly. This would lead to inconsistencies and break the immutability assumptions of Guix's functional model (@pxref{Introduction})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:9399 +#: guix-git/doc/guix.texi:9713 msgid "@xref{Invoking guix gc, @command{guix gc --verify}}, for information on how to check the integrity of the store and attempt recovery from accidental modifications." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9406 +#: guix-git/doc/guix.texi:9720 msgid "The @code{(guix store)} module provides procedures to connect to the daemon, and to perform RPCs. These are described below. By default, @code{open-connection}, and thus all the @command{guix} commands, connect to the local daemon or to the URI specified by the @env{GUIX_DAEMON_SOCKET} environment variable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9407 +#: guix-git/doc/guix.texi:9721 #, no-wrap msgid "{Environment Variable} GUIX_DAEMON_SOCKET" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9412 +#: guix-git/doc/guix.texi:9726 msgid "When set, the value of this variable should be a file name or a URI designating the daemon endpoint. When it is a file name, it denotes a Unix-domain socket to connect to. In addition to file names, the supported URI schemes are:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:9414 guix-git/doc/guix.texi:26183 +#: guix-git/doc/guix.texi:9728 guix-git/doc/guix.texi:26520 #, no-wrap msgid "file" msgstr "파일" #. type: itemx -#: guix-git/doc/guix.texi:9415 +#: guix-git/doc/guix.texi:9729 #, no-wrap msgid "unix" msgstr "유닉스" #. type: table -#: guix-git/doc/guix.texi:9419 +#: guix-git/doc/guix.texi:9733 msgid "These are for Unix-domain sockets. @code{file:///var/guix/daemon-socket/socket} is equivalent to @file{/var/guix/daemon-socket/socket}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:9428 +#: guix-git/doc/guix.texi:9742 msgid "These URIs denote connections over TCP/IP, without encryption nor authentication of the remote host. The URI must specify the host name and optionally a port number (by default port 44146 is used):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9431 +#: guix-git/doc/guix.texi:9745 #, no-wrap msgid "guix://master.guix.example.org:1234\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:9436 +#: guix-git/doc/guix.texi:9750 msgid "This setup is suitable on local networks, such as clusters, where only trusted nodes may connect to the build daemon at @code{master.guix.example.org}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:9440 +#: guix-git/doc/guix.texi:9754 msgid "The @option{--listen} option of @command{guix-daemon} can be used to instruct it to listen for TCP connections (@pxref{Invoking guix-daemon, @option{--listen}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:9441 +#: guix-git/doc/guix.texi:9755 #, no-wrap msgid "ssh" msgstr "ssh" #. type: cindex -#: guix-git/doc/guix.texi:9442 +#: guix-git/doc/guix.texi:9756 #, no-wrap msgid "SSH access to build daemons" msgstr "" #. type: table -#: guix-git/doc/guix.texi:9448 +#: guix-git/doc/guix.texi:9762 msgid "These URIs allow you to connect to a remote daemon over SSH@. This feature requires Guile-SSH (@pxref{Requirements}) and a working @command{guile} binary in @env{PATH} on the destination machine. It supports public key and GSSAPI authentication. A typical URL might look like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9451 +#: guix-git/doc/guix.texi:9765 #, no-wrap msgid "ssh://charlie@@guix.example.org:22\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:9455 +#: guix-git/doc/guix.texi:9769 msgid "As for @command{guix copy}, the usual OpenSSH client configuration files are honored (@pxref{Invoking guix copy})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9458 +#: guix-git/doc/guix.texi:9772 msgid "Additional URI schemes may be supported in the future." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:9465 +#: guix-git/doc/guix.texi:9779 msgid "The ability to connect to remote build daemons is considered experimental as of @value{VERSION}. Please get in touch with us to share any problems or suggestions you may have (@pxref{Contributing})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9468 +#: guix-git/doc/guix.texi:9782 #, no-wrap msgid "{Scheme Procedure} open-connection [@var{uri}] [#:reserve-space? #t]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9473 +#: guix-git/doc/guix.texi:9787 msgid "Connect to the daemon over the Unix-domain socket at @var{uri} (a string). When @var{reserve-space?} is true, instruct it to reserve a little bit of extra space on the file system so that the garbage collector can still operate should the disk become full. Return a server object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9476 +#: guix-git/doc/guix.texi:9790 msgid "@var{file} defaults to @code{%default-socket-path}, which is the normal location given the options that were passed to @command{configure}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9478 +#: guix-git/doc/guix.texi:9792 #, no-wrap msgid "{Scheme Procedure} close-connection @var{server}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9480 +#: guix-git/doc/guix.texi:9794 msgid "Close the connection to @var{server}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9482 +#: guix-git/doc/guix.texi:9796 #, no-wrap msgid "{Scheme Variable} current-build-output-port" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9485 +#: guix-git/doc/guix.texi:9799 msgid "This variable is bound to a SRFI-39 parameter, which refers to the port where build and error logs sent by the daemon should be written." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9489 +#: guix-git/doc/guix.texi:9803 msgid "Procedures that make RPCs all take a server object as their first argument." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9490 +#: guix-git/doc/guix.texi:9804 #, no-wrap msgid "{Scheme Procedure} valid-path? @var{server} @var{path}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9491 +#: guix-git/doc/guix.texi:9805 #, no-wrap msgid "invalid store items" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9496 +#: guix-git/doc/guix.texi:9810 msgid "Return @code{#t} when @var{path} designates a valid store item and @code{#f} otherwise (an invalid item may exist on disk but still be invalid, for instance because it is the result of an aborted or failed build)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9499 +#: guix-git/doc/guix.texi:9813 msgid "A @code{&store-protocol-error} condition is raised if @var{path} is not prefixed by the store directory (@file{/gnu/store})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9501 +#: guix-git/doc/guix.texi:9815 #, no-wrap msgid "{Scheme Procedure} add-text-to-store @var{server} @var{name} @var{text} [@var{references}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9505 +#: guix-git/doc/guix.texi:9819 msgid "Add @var{text} under file @var{name} in the store, and return its store path. @var{references} is the list of store paths referred to by the resulting store path." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9507 +#: guix-git/doc/guix.texi:9821 #, no-wrap msgid "{Scheme Procedure} build-derivations @var{store} @var{derivations} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9512 +#: guix-git/doc/guix.texi:9826 msgid "[@var{mode}] Build @var{derivations}, a list of @code{} objects, @file{.drv} file names, or derivation/output pairs, using the specified @var{mode}---@code{(build-mode normal)} by default." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9518 +#: guix-git/doc/guix.texi:9832 msgid "Note that the @code{(guix monads)} module provides a monad as well as monadic versions of the above procedures, with the goal of making it more convenient to work with code that accesses the store (@pxref{The Store Monad})." msgstr "" #. type: i{#1} -#: guix-git/doc/guix.texi:9521 +#: guix-git/doc/guix.texi:9835 msgid "This section is currently incomplete." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9525 +#: guix-git/doc/guix.texi:9839 #, no-wrap msgid "derivations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9529 +#: guix-git/doc/guix.texi:9843 msgid "Low-level build actions and the environment in which they are performed are represented by @dfn{derivations}. A derivation contains the following pieces of information:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9534 +#: guix-git/doc/guix.texi:9848 msgid "The outputs of the derivation---derivations produce at least one file or directory in the store, but may produce more." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9536 +#: guix-git/doc/guix.texi:9850 #, no-wrap msgid "build-time dependencies" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9537 +#: guix-git/doc/guix.texi:9851 #, no-wrap msgid "dependencies, build-time" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9541 +#: guix-git/doc/guix.texi:9855 msgid "The inputs of the derivations---i.e., its build-time dependencies---which may be other derivations or plain files in the store (patches, build scripts, etc.)." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9544 +#: guix-git/doc/guix.texi:9858 msgid "The system type targeted by the derivation---e.g., @code{x86_64-linux}." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9548 +#: guix-git/doc/guix.texi:9862 msgid "The file name of a build script in the store, along with the arguments to be passed." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9551 +#: guix-git/doc/guix.texi:9865 msgid "A list of environment variables to be defined." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9554 +#: guix-git/doc/guix.texi:9868 #, no-wrap msgid "derivation path" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9562 +#: guix-git/doc/guix.texi:9876 msgid "Derivations allow clients of the daemon to communicate build actions to the store. They exist in two forms: as an in-memory representation, both on the client- and daemon-side, and as files in the store whose name end in @file{.drv}---these files are referred to as @dfn{derivation paths}. Derivations paths can be passed to the @code{build-derivations} procedure to perform the build actions they prescribe (@pxref{The Store})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9563 +#: guix-git/doc/guix.texi:9877 #, no-wrap msgid "fixed-output derivations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9570 +#: guix-git/doc/guix.texi:9884 msgid "Operations such as file downloads and version-control checkouts for which the expected content hash is known in advance are modeled as @dfn{fixed-output derivations}. Unlike regular derivations, the outputs of a fixed-output derivation are independent of its inputs---e.g., a source code download produces the same result regardless of the download method and tools being used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:9571 guix-git/doc/guix.texi:13341 +#: guix-git/doc/guix.texi:9885 guix-git/doc/guix.texi:13698 #, no-wrap msgid "references" msgstr "환경설정" #. type: cindex -#: guix-git/doc/guix.texi:9572 +#: guix-git/doc/guix.texi:9886 #, no-wrap msgid "run-time dependencies" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9573 +#: guix-git/doc/guix.texi:9887 #, no-wrap msgid "dependencies, run-time" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9580 +#: guix-git/doc/guix.texi:9894 msgid "The outputs of derivations---i.e., the build results---have a set of @dfn{references}, as reported by the @code{references} RPC or the @command{guix gc --references} command (@pxref{Invoking guix gc}). References are the set of run-time dependencies of the build results. References are a subset of the inputs of the derivation; this subset is automatically computed by the build daemon by scanning all the files in the outputs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9585 +#: guix-git/doc/guix.texi:9899 msgid "The @code{(guix derivations)} module provides a representation of derivations as Scheme objects, along with procedures to create and otherwise manipulate derivations. The lowest-level primitive to create a derivation is the @code{derivation} procedure:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9586 +#: guix-git/doc/guix.texi:9900 #, no-wrap msgid "{Scheme Procedure} derivation @var{store} @var{name} @var{builder} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9595 +#: guix-git/doc/guix.texi:9909 msgid "@var{args} [#:outputs '(\"out\")] [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:inputs '()] [#:env-vars '()] @ [#:system (%current-system)] [#:references-graphs #f] @ [#:allowed-references #f] [#:disallowed-references #f] @ [#:leaked-env-vars #f] [#:local-build? #f] @ [#:substitutable? #t] [#:properties '()] Build a derivation with the given arguments, and return the resulting @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9602 +#: guix-git/doc/guix.texi:9916 msgid "When @var{hash} and @var{hash-algo} are given, a @dfn{fixed-output derivation} is created---i.e., one whose result is known in advance, such as a file download. If, in addition, @var{recursive?} is true, then that fixed output may be an executable file or a directory and @var{hash} must be the hash of an archive containing this output." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9607 +#: guix-git/doc/guix.texi:9921 msgid "When @var{references-graphs} is true, it must be a list of file name/store path pairs. In that case, the reference graph of each store path is exported in the build environment in the corresponding file, in a simple text format." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9612 +#: guix-git/doc/guix.texi:9926 msgid "When @var{allowed-references} is true, it must be a list of store items or outputs that the derivation's output may refer to. Likewise, @var{disallowed-references}, if true, must be a list of things the outputs may @emph{not} refer to." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9619 +#: guix-git/doc/guix.texi:9933 msgid "When @var{leaked-env-vars} is true, it must be a list of strings denoting environment variables that are allowed to ``leak'' from the daemon's environment to the build environment. This is only applicable to fixed-output derivations---i.e., when @var{hash} is true. The main use is to allow variables such as @code{http_proxy} to be passed to derivations that download files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9624 +#: guix-git/doc/guix.texi:9938 msgid "When @var{local-build?} is true, declare that the derivation is not a good candidate for offloading and should rather be built locally (@pxref{Daemon Offload Setup}). This is the case for small derivations where the costs of data transfers would outweigh the benefits." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9629 +#: guix-git/doc/guix.texi:9943 msgid "When @var{substitutable?} is false, declare that substitutes of the derivation's output should not be used (@pxref{Substitutes}). This is useful, for instance, when building packages that capture details of the host CPU instruction set." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9632 +#: guix-git/doc/guix.texi:9946 msgid "@var{properties} must be an association list describing ``properties'' of the derivation. It is kept as-is, uninterpreted, in the derivation." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9638 +#: guix-git/doc/guix.texi:9952 msgid "Here's an example with a shell script as its builder, assuming @var{store} is an open connection to the daemon, and @var{bash} points to a Bash executable in the store:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9643 +#: guix-git/doc/guix.texi:9957 #, no-wrap msgid "" "(use-modules (guix utils)\n" @@ -18110,7 +18652,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9652 +#: guix-git/doc/guix.texi:9966 #, no-wrap msgid "" "(let ((builder ; add the Bash script to the store\n" @@ -18124,48 +18666,48 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9659 +#: guix-git/doc/guix.texi:9973 msgid "As can be guessed, this primitive is cumbersome to use directly. A better approach is to write build scripts in Scheme, of course! The best course of action for that is to write the build code as a ``G-expression'', and to pass it to @code{gexp->derivation}. For more information, @pxref{G-Expressions}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9664 +#: guix-git/doc/guix.texi:9978 msgid "Once upon a time, @code{gexp->derivation} did not exist and constructing derivations with build code written in Scheme was achieved with @code{build-expression->derivation}, documented below. This procedure is now deprecated in favor of the much nicer @code{gexp->derivation}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9665 +#: guix-git/doc/guix.texi:9979 #, no-wrap msgid "{Scheme Procedure} build-expression->derivation @var{store} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9681 +#: guix-git/doc/guix.texi:9995 msgid "@var{name} @var{exp} @ [#:system (%current-system)] [#:inputs '()] @ [#:outputs '(\"out\")] [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:env-vars '()] [#:modules '()] @ [#:references-graphs #f] [#:allowed-references #f] @ [#:disallowed-references #f] @ [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f] Return a derivation that executes Scheme expression @var{exp} as a builder for derivation @var{name}. @var{inputs} must be a list of @code{(name drv-path sub-drv)} tuples; when @var{sub-drv} is omitted, @code{\"out\"} is assumed. @var{modules} is a list of names of Guile modules from the current search path to be copied in the store, compiled, and made available in the load path during the execution of @var{exp}---e.g., @code{((guix build utils) (guix build gnu-build-system))}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9689 +#: guix-git/doc/guix.texi:10003 msgid "@var{exp} is evaluated in an environment where @code{%outputs} is bound to a list of output/path pairs, and where @code{%build-inputs} is bound to a list of string/output-path pairs made from @var{inputs}. Optionally, @var{env-vars} is a list of string pairs specifying the name and value of environment variables visible to the builder. The builder terminates by passing the result of @var{exp} to @code{exit}; thus, when @var{exp} returns @code{#f}, the build is considered to have failed." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9693 +#: guix-git/doc/guix.texi:10007 msgid "@var{exp} is built using @var{guile-for-build} (a derivation). When @var{guile-for-build} is omitted or is @code{#f}, the value of the @code{%guile-for-build} fluid is used instead." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9698 +#: guix-git/doc/guix.texi:10012 msgid "See the @code{derivation} procedure for the meaning of @var{references-graphs}, @var{allowed-references}, @var{disallowed-references}, @var{local-build?}, and @var{substitutable?}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9703 +#: guix-git/doc/guix.texi:10017 msgid "Here's an example of a single-output derivation that creates a directory containing one file:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9711 +#: guix-git/doc/guix.texi:10025 #, no-wrap msgid "" "(let ((builder '(let ((out (assoc-ref %outputs \"out\")))\n" @@ -18178,51 +18720,51 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9713 +#: guix-git/doc/guix.texi:10027 #, no-wrap msgid "@result{} # @dots{}>\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9719 +#: guix-git/doc/guix.texi:10033 #, no-wrap msgid "monad" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9725 +#: guix-git/doc/guix.texi:10039 msgid "The procedures that operate on the store described in the previous sections all take an open connection to the build daemon as their first argument. Although the underlying model is functional, they either have side effects or depend on the current state of the store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9731 +#: guix-git/doc/guix.texi:10045 msgid "The former is inconvenient: the connection to the build daemon has to be carried around in all those functions, making it impossible to compose functions that do not take that parameter with functions that do. The latter can be problematic: since store operations have side effects and/or depend on external state, they have to be properly sequenced." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9732 +#: guix-git/doc/guix.texi:10046 #, no-wrap msgid "monadic values" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9733 +#: guix-git/doc/guix.texi:10047 #, no-wrap msgid "monadic functions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9743 +#: guix-git/doc/guix.texi:10057 msgid "This is where the @code{(guix monads)} module comes in. This module provides a framework for working with @dfn{monads}, and a particularly useful monad for our uses, the @dfn{store monad}. Monads are a construct that allows two things: associating ``context'' with values (in our case, the context is the store), and building sequences of computations (here computations include accesses to the store). Values in a monad---values that carry this additional context---are called @dfn{monadic values}; procedures that return such values are called @dfn{monadic procedures}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9745 +#: guix-git/doc/guix.texi:10059 msgid "Consider this ``normal'' procedure:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9754 +#: guix-git/doc/guix.texi:10068 #, no-wrap msgid "" "(define (sh-symlink store)\n" @@ -18235,12 +18777,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9758 +#: guix-git/doc/guix.texi:10072 msgid "Using @code{(guix monads)} and @code{(guix gexp)}, it may be rewritten as a monadic function:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9766 +#: guix-git/doc/guix.texi:10080 #, no-wrap msgid "" "(define (sh-symlink)\n" @@ -18252,17 +18794,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9773 +#: guix-git/doc/guix.texi:10087 msgid "There are several things to note in the second version: the @code{store} parameter is now implicit and is ``threaded'' in the calls to the @code{package->derivation} and @code{gexp->derivation} monadic procedures, and the monadic value returned by @code{package->derivation} is @dfn{bound} using @code{mlet} instead of plain @code{let}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9777 +#: guix-git/doc/guix.texi:10091 msgid "As it turns out, the call to @code{package->derivation} can even be omitted since it will take place implicitly, as we will see later (@pxref{G-Expressions}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9783 +#: guix-git/doc/guix.texi:10097 #, no-wrap msgid "" "(define (sh-symlink)\n" @@ -18272,12 +18814,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9792 +#: guix-git/doc/guix.texi:10106 msgid "Calling the monadic @code{sh-symlink} has no effect. As someone once said, ``you exit a monad like you exit a building on fire: by running''. So, to exit the monad and get the desired effect, one must use @code{run-with-store}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9796 +#: guix-git/doc/guix.texi:10110 #, no-wrap msgid "" "(run-with-store (open-connection) (sh-symlink))\n" @@ -18285,12 +18827,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9802 +#: guix-git/doc/guix.texi:10116 msgid "Note that the @code{(guix monad-repl)} module extends the Guile REPL with new ``meta-commands'' to make it easier to deal with monadic procedures: @code{run-in-store}, and @code{enter-store-monad}. The former is used to ``run'' a single monadic value through the store:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9806 +#: guix-git/doc/guix.texi:10120 #, no-wrap msgid "" "scheme@@(guile-user)> ,run-in-store (package->derivation hello)\n" @@ -18298,12 +18840,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9810 +#: guix-git/doc/guix.texi:10124 msgid "The latter enters a recursive REPL, where all the return values are automatically run through the store:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9819 +#: guix-git/doc/guix.texi:10133 #, no-wrap msgid "" "scheme@@(guile-user)> ,enter-store-monad\n" @@ -18316,50 +18858,50 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9824 +#: guix-git/doc/guix.texi:10138 msgid "Note that non-monadic values cannot be returned in the @code{store-monad} REPL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9827 +#: guix-git/doc/guix.texi:10141 msgid "The main syntactic forms to deal with monads in general are provided by the @code{(guix monads)} module and are described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9828 +#: guix-git/doc/guix.texi:10142 #, no-wrap msgid "{Scheme Syntax} with-monad @var{monad} @var{body} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9831 +#: guix-git/doc/guix.texi:10145 msgid "Evaluate any @code{>>=} or @code{return} forms in @var{body} as being in @var{monad}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9833 +#: guix-git/doc/guix.texi:10147 #, no-wrap msgid "{Scheme Syntax} return @var{val}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9835 +#: guix-git/doc/guix.texi:10149 msgid "Return a monadic value that encapsulates @var{val}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9837 +#: guix-git/doc/guix.texi:10151 #, no-wrap msgid "{Scheme Syntax} >>= @var{mval} @var{mproc} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9844 +#: guix-git/doc/guix.texi:10158 msgid "@dfn{Bind} monadic value @var{mval}, passing its ``contents'' to monadic procedures @var{mproc}@dots{}@footnote{This operation is commonly referred to as ``bind'', but that name denotes an unrelated procedure in Guile. Thus we use this somewhat cryptic symbol inherited from the Haskell language.}. There can be one @var{mproc} or several of them, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9852 +#: guix-git/doc/guix.texi:10166 #, no-wrap msgid "" "(run-with-state\n" @@ -18372,7 +18914,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9855 +#: guix-git/doc/guix.texi:10169 #, no-wrap msgid "" "@result{} 4\n" @@ -18380,99 +18922,99 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9858 +#: guix-git/doc/guix.texi:10172 #, no-wrap msgid "{Scheme Syntax} mlet @var{monad} ((@var{var} @var{mval}) ...) @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9860 +#: guix-git/doc/guix.texi:10174 msgid "@var{body} ..." msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9860 +#: guix-git/doc/guix.texi:10174 #, no-wrap msgid "{Scheme Syntax} mlet* @var{monad} ((@var{var} @var{mval}) ...) @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9872 +#: guix-git/doc/guix.texi:10186 msgid "@var{body} ... Bind the variables @var{var} to the monadic values @var{mval} in @var{body}, which is a sequence of expressions. As with the bind operator, this can be thought of as ``unpacking'' the raw, non-monadic value ``contained'' in @var{mval} and making @var{var} refer to that raw, non-monadic value within the scope of the @var{body}. The form (@var{var} -> @var{val}) binds @var{var} to the ``normal'' value @var{val}, as per @code{let}. The binding operations occur in sequence from left to right. The last expression of @var{body} must be a monadic expression, and its result will become the result of the @code{mlet} or @code{mlet*} when run in the @var{monad}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9875 +#: guix-git/doc/guix.texi:10189 msgid "@code{mlet*} is to @code{mlet} what @code{let*} is to @code{let} (@pxref{Local Bindings,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9877 +#: guix-git/doc/guix.texi:10191 #, no-wrap msgid "{Scheme System} mbegin @var{monad} @var{mexp} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9881 +#: guix-git/doc/guix.texi:10195 msgid "Bind @var{mexp} and the following monadic expressions in sequence, returning the result of the last expression. Every expression in the sequence must be a monadic expression." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9885 +#: guix-git/doc/guix.texi:10199 msgid "This is akin to @code{mlet}, except that the return values of the monadic expressions are ignored. In that sense, it is analogous to @code{begin}, but applied to monadic expressions." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9887 +#: guix-git/doc/guix.texi:10201 #, no-wrap msgid "{Scheme System} mwhen @var{condition} @var{mexp0} @var{mexp*} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9892 +#: guix-git/doc/guix.texi:10206 msgid "When @var{condition} is true, evaluate the sequence of monadic expressions @var{mexp0}..@var{mexp*} as in an @code{mbegin}. When @var{condition} is false, return @code{*unspecified*} in the current monad. Every expression in the sequence must be a monadic expression." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9894 +#: guix-git/doc/guix.texi:10208 #, no-wrap msgid "{Scheme System} munless @var{condition} @var{mexp0} @var{mexp*} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9899 +#: guix-git/doc/guix.texi:10213 msgid "When @var{condition} is false, evaluate the sequence of monadic expressions @var{mexp0}..@var{mexp*} as in an @code{mbegin}. When @var{condition} is true, return @code{*unspecified*} in the current monad. Every expression in the sequence must be a monadic expression." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9901 +#: guix-git/doc/guix.texi:10215 #, no-wrap msgid "state monad" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9905 +#: guix-git/doc/guix.texi:10219 msgid "The @code{(guix monads)} module provides the @dfn{state monad}, which allows an additional value---the state---to be @emph{threaded} through monadic procedure calls." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9906 +#: guix-git/doc/guix.texi:10220 #, no-wrap msgid "{Scheme Variable} %state-monad" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9909 +#: guix-git/doc/guix.texi:10223 msgid "The state monad. Procedures in the state monad can access and change the state that is threaded." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9913 +#: guix-git/doc/guix.texi:10227 msgid "Consider the example below. The @code{square} procedure returns a value in the state monad. It returns the square of its argument, but also increments the current state value:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9920 +#: guix-git/doc/guix.texi:10234 #, no-wrap msgid "" "(define (square x)\n" @@ -18484,7 +19026,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9924 +#: guix-git/doc/guix.texi:10238 #, no-wrap msgid "" "(run-with-state (sequence %state-monad (map square (iota 3))) 0)\n" @@ -18493,147 +19035,147 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9928 +#: guix-git/doc/guix.texi:10242 msgid "When ``run'' through @code{%state-monad}, we obtain that additional state value, which is the number of @code{square} calls." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9930 +#: guix-git/doc/guix.texi:10244 #, no-wrap msgid "{Monadic Procedure} current-state" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9932 +#: guix-git/doc/guix.texi:10246 msgid "Return the current state as a monadic value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9934 +#: guix-git/doc/guix.texi:10248 #, no-wrap msgid "{Monadic Procedure} set-current-state @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9937 +#: guix-git/doc/guix.texi:10251 msgid "Set the current state to @var{value} and return the previous state as a monadic value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9939 +#: guix-git/doc/guix.texi:10253 #, no-wrap msgid "{Monadic Procedure} state-push @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9942 +#: guix-git/doc/guix.texi:10256 msgid "Push @var{value} to the current state, which is assumed to be a list, and return the previous state as a monadic value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9944 +#: guix-git/doc/guix.texi:10258 #, no-wrap msgid "{Monadic Procedure} state-pop" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9947 +#: guix-git/doc/guix.texi:10261 msgid "Pop a value from the current state and return it as a monadic value. The state is assumed to be a list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9949 +#: guix-git/doc/guix.texi:10263 #, no-wrap msgid "{Scheme Procedure} run-with-state @var{mval} [@var{state}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9952 +#: guix-git/doc/guix.texi:10266 msgid "Run monadic value @var{mval} starting with @var{state} as the initial state. Return two values: the resulting value, and the resulting state." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9956 +#: guix-git/doc/guix.texi:10270 msgid "The main interface to the store monad, provided by the @code{(guix store)} module, is as follows." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9957 +#: guix-git/doc/guix.texi:10271 #, no-wrap msgid "{Scheme Variable} %store-monad" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9959 +#: guix-git/doc/guix.texi:10273 msgid "The store monad---an alias for @code{%state-monad}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9963 +#: guix-git/doc/guix.texi:10277 msgid "Values in the store monad encapsulate accesses to the store. When its effect is needed, a value of the store monad must be ``evaluated'' by passing it to the @code{run-with-store} procedure (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9965 +#: guix-git/doc/guix.texi:10279 #, no-wrap msgid "{Scheme Procedure} run-with-store @var{store} @var{mval} [#:guile-for-build] [#:system (%current-system)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9968 +#: guix-git/doc/guix.texi:10282 msgid "Run @var{mval}, a monadic value in the store monad, in @var{store}, an open store connection." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9970 +#: guix-git/doc/guix.texi:10284 #, no-wrap msgid "{Monadic Procedure} text-file @var{name} @var{text} [@var{references}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9974 +#: guix-git/doc/guix.texi:10288 msgid "Return as a monadic value the absolute file name in the store of the file containing @var{text}, a string. @var{references} is a list of store items that the resulting text file refers to; it defaults to the empty list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9976 +#: guix-git/doc/guix.texi:10290 #, no-wrap msgid "{Monadic Procedure} binary-file @var{name} @var{data} [@var{references}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9980 +#: guix-git/doc/guix.texi:10294 msgid "Return as a monadic value the absolute file name in the store of the file containing @var{data}, a bytevector. @var{references} is a list of store items that the resulting binary file refers to; it defaults to the empty list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9982 +#: guix-git/doc/guix.texi:10296 #, no-wrap msgid "{Monadic Procedure} interned-file @var{file} [@var{name}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9987 +#: guix-git/doc/guix.texi:10301 msgid "[#:recursive? #t] [#:select? (const #t)] Return the name of @var{file} once interned in the store. Use @var{name} as its store name, or the basename of @var{file} if @var{name} is omitted." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9991 guix-git/doc/guix.texi:10414 +#: guix-git/doc/guix.texi:10305 guix-git/doc/guix.texi:10728 msgid "When @var{recursive?} is true, the contents of @var{file} are added recursively; if @var{file} designates a flat file and @var{recursive?} is true, its contents are added, and its permission bits are kept." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9996 guix-git/doc/guix.texi:10419 +#: guix-git/doc/guix.texi:10310 guix-git/doc/guix.texi:10733 msgid "When @var{recursive?} is true, call @code{(@var{select?} @var{file} @var{stat})} for each directory entry, where @var{file} is the entry's absolute file name and @var{stat} is the result of @code{lstat}; exclude entries for which @var{select?} does not return true." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9998 +#: guix-git/doc/guix.texi:10312 msgid "The example below adds a file to the store, under two different names:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10004 +#: guix-git/doc/guix.texi:10318 #, no-wrap msgid "" "(run-with-store (open-connection)\n" @@ -18644,120 +19186,120 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10006 +#: guix-git/doc/guix.texi:10320 #, no-wrap msgid "@result{} (\"/gnu/store/rwm@dots{}-README\" \"/gnu/store/44i@dots{}-LEGU-MIN\")\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10012 +#: guix-git/doc/guix.texi:10326 msgid "The @code{(guix packages)} module exports the following package-related monadic procedures:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10013 +#: guix-git/doc/guix.texi:10327 #, no-wrap msgid "{Monadic Procedure} package-file @var{package} [@var{file}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10021 +#: guix-git/doc/guix.texi:10335 msgid "[#:system (%current-system)] [#:target #f] @ [#:output \"out\"] Return as a monadic value in the absolute file name of @var{file} within the @var{output} directory of @var{package}. When @var{file} is omitted, return the name of the @var{output} directory of @var{package}. When @var{target} is true, use it as a cross-compilation target triplet." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10025 +#: guix-git/doc/guix.texi:10339 msgid "Note that this procedure does @emph{not} build @var{package}. Thus, the result might or might not designate an existing file. We recommend not using this procedure unless you know what you are doing." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10027 +#: guix-git/doc/guix.texi:10341 #, no-wrap msgid "{Monadic Procedure} package->derivation @var{package} [@var{system}]" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:10028 +#: guix-git/doc/guix.texi:10342 #, no-wrap msgid "{Monadic Procedure} package->cross-derivation @var{package} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10032 +#: guix-git/doc/guix.texi:10346 msgid "@var{target} [@var{system}] Monadic version of @code{package-derivation} and @code{package-cross-derivation} (@pxref{Defining Packages})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10038 +#: guix-git/doc/guix.texi:10352 #, no-wrap msgid "G-expression" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10039 +#: guix-git/doc/guix.texi:10353 #, no-wrap msgid "build code quoting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10045 +#: guix-git/doc/guix.texi:10359 msgid "So we have ``derivations'', which represent a sequence of build actions to be performed to produce an item in the store (@pxref{Derivations}). These build actions are performed when asking the daemon to actually build the derivations; they are run by the daemon in a container (@pxref{Invoking guix-daemon})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10048 +#: guix-git/doc/guix.texi:10362 #, no-wrap msgid "strata of code" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10060 +#: guix-git/doc/guix.texi:10374 msgid "It should come as no surprise that we like to write these build actions in Scheme. When we do that, we end up with two @dfn{strata} of Scheme code@footnote{The term @dfn{stratum} in this context was coined by Manuel Serrano et al.@: in the context of their work on Hop. Oleg Kiselyov, who has written insightful @url{http://okmij.org/ftp/meta-programming/#meta-scheme, essays and code on this topic}, refers to this kind of code generation as @dfn{staging}.}: the ``host code''---code that defines packages, talks to the daemon, etc.---and the ``build code''---code that actually performs build actions, such as making directories, invoking @command{make}, and so on (@pxref{Build Phases})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10067 +#: guix-git/doc/guix.texi:10381 msgid "To describe a derivation and its build actions, one typically needs to embed build code inside host code. It boils down to manipulating build code as data, and the homoiconicity of Scheme---code has a direct representation as data---comes in handy for that. But we need more than the normal @code{quasiquote} mechanism in Scheme to construct build expressions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10076 +#: guix-git/doc/guix.texi:10390 msgid "The @code{(guix gexp)} module implements @dfn{G-expressions}, a form of S-expressions adapted to build expressions. G-expressions, or @dfn{gexps}, consist essentially of three syntactic forms: @code{gexp}, @code{ungexp}, and @code{ungexp-splicing} (or simply: @code{#~}, @code{#$}, and @code{#$@@}), which are comparable to @code{quasiquote}, @code{unquote}, and @code{unquote-splicing}, respectively (@pxref{Expression Syntax, @code{quasiquote},, guile, GNU Guile Reference Manual}). However, there are major differences:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:10081 +#: guix-git/doc/guix.texi:10395 msgid "Gexps are meant to be written to a file and run or manipulated by other processes." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:10086 +#: guix-git/doc/guix.texi:10400 msgid "When a high-level object such as a package or derivation is unquoted inside a gexp, the result is as if its output file name had been introduced." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:10091 +#: guix-git/doc/guix.texi:10405 msgid "Gexps carry information about the packages or derivations they refer to, and these dependencies are automatically added as inputs to the build processes that use them." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10093 guix-git/doc/guix.texi:10650 +#: guix-git/doc/guix.texi:10407 guix-git/doc/guix.texi:10964 #, no-wrap msgid "lowering, of high-level objects in gexps" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10103 +#: guix-git/doc/guix.texi:10417 msgid "This mechanism is not limited to package and derivation objects: @dfn{compilers} able to ``lower'' other high-level objects to derivations or files in the store can be defined, such that these objects can also be inserted into gexps. For example, a useful type of high-level objects that can be inserted in a gexp is ``file-like objects'', which make it easy to add files to the store and to refer to them in derivations and such (see @code{local-file} and @code{plain-file} below)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10105 +#: guix-git/doc/guix.texi:10419 msgid "To illustrate the idea, here is an example of a gexp:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10113 +#: guix-git/doc/guix.texi:10427 #, no-wrap msgid "" "(define build-exp\n" @@ -18769,34 +19311,34 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10118 +#: guix-git/doc/guix.texi:10432 msgid "This gexp can be passed to @code{gexp->derivation}; we obtain a derivation that builds a directory containing exactly one symlink to @file{/gnu/store/@dots{}-coreutils-8.22/bin/ls}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10121 +#: guix-git/doc/guix.texi:10435 #, no-wrap msgid "(gexp->derivation \"the-thing\" build-exp)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10129 +#: guix-git/doc/guix.texi:10443 msgid "As one would expect, the @code{\"/gnu/store/@dots{}-coreutils-8.22\"} string is substituted to the reference to the @var{coreutils} package in the actual build code, and @var{coreutils} is automatically made an input to the derivation. Likewise, @code{#$output} (equivalent to @code{(ungexp output)}) is replaced by a string containing the directory name of the output of the derivation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10130 +#: guix-git/doc/guix.texi:10444 #, no-wrap msgid "cross compilation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10136 +#: guix-git/doc/guix.texi:10450 msgid "In a cross-compilation context, it is useful to distinguish between references to the @emph{native} build of a package---that can run on the host---versus references to cross builds of a package. To that end, the @code{#+} plays the same role as @code{#$}, but is a reference to a native package build:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10147 +#: guix-git/doc/guix.texi:10461 #, no-wrap msgid "" "(gexp->derivation \"vi\"\n" @@ -18811,29 +19353,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10153 +#: guix-git/doc/guix.texi:10467 msgid "In the example above, the native build of @var{coreutils} is used, so that @command{ln} can actually run on the host; but then the cross-compiled build of @var{emacs} is referenced." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10154 +#: guix-git/doc/guix.texi:10468 #, no-wrap msgid "imported modules, for gexps" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:10155 +#: guix-git/doc/guix.texi:10469 #, no-wrap msgid "with-imported-modules" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10160 +#: guix-git/doc/guix.texi:10474 msgid "Another gexp feature is @dfn{imported modules}: sometimes you want to be able to use certain Guile modules from the ``host environment'' in the gexp, so those modules should be imported in the ``build environment''. The @code{with-imported-modules} form allows you to express that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10171 +#: guix-git/doc/guix.texi:10485 #, no-wrap msgid "" "(let ((build (with-imported-modules '((guix build utils))\n" @@ -18848,29 +19390,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10177 +#: guix-git/doc/guix.texi:10491 msgid "In this example, the @code{(guix build utils)} module is automatically pulled into the isolated build environment of our gexp, such that @code{(use-modules (guix build utils))} works as expected." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10178 +#: guix-git/doc/guix.texi:10492 #, no-wrap msgid "module closure" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:10179 +#: guix-git/doc/guix.texi:10493 #, no-wrap msgid "source-module-closure" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10186 +#: guix-git/doc/guix.texi:10500 msgid "Usually you want the @emph{closure} of the module to be imported---i.e., the module itself and all the modules it depends on---rather than just the module; failing to do that, attempts to use the module will fail because of missing dependent modules. The @code{source-module-closure} procedure computes the closure of a module by looking at its source file headers, which comes in handy in this case:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10189 +#: guix-git/doc/guix.texi:10503 #, no-wrap msgid "" "(use-modules (guix modules)) ;for 'source-module-closure'\n" @@ -18878,7 +19420,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10198 +#: guix-git/doc/guix.texi:10512 #, no-wrap msgid "" "(with-imported-modules (source-module-closure\n" @@ -18892,24 +19434,24 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10200 +#: guix-git/doc/guix.texi:10514 #, no-wrap msgid "extensions, for gexps" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:10201 +#: guix-git/doc/guix.texi:10515 #, no-wrap msgid "with-extensions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10206 +#: guix-git/doc/guix.texi:10520 msgid "In the same vein, sometimes you want to import not just pure-Scheme modules, but also ``extensions'' such as Guile bindings to C libraries or other ``full-blown'' packages. Say you need the @code{guile-json} package available on the build side, here's how you would do it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10209 +#: guix-git/doc/guix.texi:10523 #, no-wrap msgid "" "(use-modules (gnu packages guile)) ;for 'guile-json'\n" @@ -18917,7 +19459,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10215 +#: guix-git/doc/guix.texi:10529 #, no-wrap msgid "" "(with-extensions (list guile-json)\n" @@ -18928,184 +19470,184 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10218 +#: guix-git/doc/guix.texi:10532 msgid "The syntactic form to construct gexps is summarized below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10219 +#: guix-git/doc/guix.texi:10533 #, no-wrap msgid "{Scheme Syntax} #~@var{exp}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:10220 +#: guix-git/doc/guix.texi:10534 #, no-wrap msgid "{Scheme Syntax} (gexp @var{exp})" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10223 +#: guix-git/doc/guix.texi:10537 msgid "Return a G-expression containing @var{exp}. @var{exp} may contain one or more of the following forms:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10225 +#: guix-git/doc/guix.texi:10539 #, no-wrap msgid "#$@var{obj}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10226 +#: guix-git/doc/guix.texi:10540 #, no-wrap msgid "(ungexp @var{obj})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10231 +#: guix-git/doc/guix.texi:10545 msgid "Introduce a reference to @var{obj}. @var{obj} may have one of the supported types, for example a package or a derivation, in which case the @code{ungexp} form is replaced by its output file name---e.g., @code{\"/gnu/store/@dots{}-coreutils-8.22}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10234 +#: guix-git/doc/guix.texi:10548 msgid "If @var{obj} is a list, it is traversed and references to supported objects are substituted similarly." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10237 +#: guix-git/doc/guix.texi:10551 msgid "If @var{obj} is another gexp, its contents are inserted and its dependencies are added to those of the containing gexp." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10239 +#: guix-git/doc/guix.texi:10553 msgid "If @var{obj} is another kind of object, it is inserted as is." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10240 +#: guix-git/doc/guix.texi:10554 #, no-wrap msgid "#$@var{obj}:@var{output}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10241 +#: guix-git/doc/guix.texi:10555 #, no-wrap msgid "(ungexp @var{obj} @var{output})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10245 +#: guix-git/doc/guix.texi:10559 msgid "This is like the form above, but referring explicitly to the @var{output} of @var{obj}---this is useful when @var{obj} produces multiple outputs (@pxref{Packages with Multiple Outputs})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10246 +#: guix-git/doc/guix.texi:10560 #, no-wrap msgid "#+@var{obj}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10247 +#: guix-git/doc/guix.texi:10561 #, no-wrap msgid "#+@var{obj}:output" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10248 +#: guix-git/doc/guix.texi:10562 #, no-wrap msgid "(ungexp-native @var{obj})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10249 +#: guix-git/doc/guix.texi:10563 #, no-wrap msgid "(ungexp-native @var{obj} @var{output})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10252 +#: guix-git/doc/guix.texi:10566 msgid "Same as @code{ungexp}, but produces a reference to the @emph{native} build of @var{obj} when used in a cross compilation context." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10253 +#: guix-git/doc/guix.texi:10567 #, no-wrap msgid "#$output[:@var{output}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10254 +#: guix-git/doc/guix.texi:10568 #, no-wrap msgid "(ungexp output [@var{output}])" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10257 +#: guix-git/doc/guix.texi:10571 msgid "Insert a reference to derivation output @var{output}, or to the main output when @var{output} is omitted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10259 +#: guix-git/doc/guix.texi:10573 msgid "This only makes sense for gexps passed to @code{gexp->derivation}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10260 +#: guix-git/doc/guix.texi:10574 #, no-wrap msgid "#$@@@var{lst}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10261 +#: guix-git/doc/guix.texi:10575 #, no-wrap msgid "(ungexp-splicing @var{lst})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10264 +#: guix-git/doc/guix.texi:10578 msgid "Like the above, but splices the contents of @var{lst} inside the containing list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10265 +#: guix-git/doc/guix.texi:10579 #, no-wrap msgid "#+@@@var{lst}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10266 +#: guix-git/doc/guix.texi:10580 #, no-wrap msgid "(ungexp-native-splicing @var{lst})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10269 +#: guix-git/doc/guix.texi:10583 msgid "Like the above, but refers to native builds of the objects listed in @var{lst}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10274 +#: guix-git/doc/guix.texi:10588 msgid "G-expressions created by @code{gexp} or @code{#~} are run-time objects of the @code{gexp?} type (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10276 +#: guix-git/doc/guix.texi:10590 #, no-wrap msgid "{Scheme Syntax} with-imported-modules @var{modules} @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10279 +#: guix-git/doc/guix.texi:10593 msgid "Mark the gexps defined in @var{body}@dots{} as requiring @var{modules} in their execution environment." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10283 +#: guix-git/doc/guix.texi:10597 msgid "Each item in @var{modules} can be the name of a module, such as @code{(guix build utils)}, or it can be a module name, followed by an arrow, followed by a file-like object:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10289 +#: guix-git/doc/guix.texi:10603 #, no-wrap msgid "" "`((guix build utils)\n" @@ -19115,80 +19657,80 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10294 +#: guix-git/doc/guix.texi:10608 msgid "In the example above, the first two modules are taken from the search path, and the last one is created from the given file-like object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10298 +#: guix-git/doc/guix.texi:10612 msgid "This form has @emph{lexical} scope: it has an effect on the gexps directly defined in @var{body}@dots{}, but not on those defined, say, in procedures called from @var{body}@dots{}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10300 +#: guix-git/doc/guix.texi:10614 #, no-wrap msgid "{Scheme Syntax} with-extensions @var{extensions} @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10305 +#: guix-git/doc/guix.texi:10619 msgid "Mark the gexps defined in @var{body}@dots{} as requiring @var{extensions} in their build and execution environment. @var{extensions} is typically a list of package objects such as those defined in the @code{(gnu packages guile)} module." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10310 +#: guix-git/doc/guix.texi:10624 msgid "Concretely, the packages listed in @var{extensions} are added to the load path while compiling imported modules in @var{body}@dots{}; they are also added to the load path of the gexp returned by @var{body}@dots{}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10312 +#: guix-git/doc/guix.texi:10626 #, no-wrap msgid "{Scheme Procedure} gexp? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10314 +#: guix-git/doc/guix.texi:10628 msgid "Return @code{#t} if @var{obj} is a G-expression." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10320 +#: guix-git/doc/guix.texi:10634 msgid "G-expressions are meant to be written to disk, either as code building some derivation, or as plain files in the store. The monadic procedures below allow you to do that (@pxref{The Store Monad}, for more information about monads)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10321 +#: guix-git/doc/guix.texi:10635 #, no-wrap msgid "{Monadic Procedure} gexp->derivation @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10339 +#: guix-git/doc/guix.texi:10653 msgid "[#:system (%current-system)] [#:target #f] [#:graft? #t] @ [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:env-vars '()] [#:modules '()] @ [#:module-path @code{%load-path}] @ [#:effective-version \"2.2\"] @ [#:references-graphs #f] [#:allowed-references #f] @ [#:disallowed-references #f] @ [#:leaked-env-vars #f] @ [#:script-name (string-append @var{name} \"-builder\")] @ [#:deprecation-warnings #f] @ [#:local-build? #f] [#:substitutable? #t] @ [#:properties '()] [#:guile-for-build #f] Return a derivation @var{name} that runs @var{exp} (a gexp) with @var{guile-for-build} (a derivation) on @var{system}; @var{exp} is stored in a file called @var{script-name}. When @var{target} is true, it is used as the cross-compilation target triplet for packages referred to by @var{exp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10347 +#: guix-git/doc/guix.texi:10661 msgid "@var{modules} is deprecated in favor of @code{with-imported-modules}. Its meaning is to make @var{modules} available in the evaluation context of @var{exp}; @var{modules} is a list of names of Guile modules searched in @var{module-path} to be copied in the store, compiled, and made available in the load path during the execution of @var{exp}---e.g., @code{((guix build utils) (guix build gnu-build-system))}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10350 +#: guix-git/doc/guix.texi:10664 msgid "@var{effective-version} determines the string to use when adding extensions of @var{exp} (see @code{with-extensions}) to the search path---e.g., @code{\"2.2\"}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10353 +#: guix-git/doc/guix.texi:10667 msgid "@var{graft?} determines whether packages referred to by @var{exp} should be grafted when applicable." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10356 +#: guix-git/doc/guix.texi:10670 msgid "When @var{references-graphs} is true, it must be a list of tuples of one of the following forms:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10363 +#: guix-git/doc/guix.texi:10677 #, no-wrap msgid "" "(@var{file-name} @var{package})\n" @@ -19199,38 +19741,38 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10369 +#: guix-git/doc/guix.texi:10683 msgid "The right-hand-side of each element of @var{references-graphs} is automatically made an input of the build process of @var{exp}. In the build environment, each @var{file-name} contains the reference graph of the corresponding item, in a simple text format." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10375 +#: guix-git/doc/guix.texi:10689 msgid "@var{allowed-references} must be either @code{#f} or a list of output names and packages. In the latter case, the list denotes store items that the result is allowed to refer to. Any reference to another store item will lead to a build error. Similarly for @var{disallowed-references}, which can list items that must not be referenced by the outputs." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10378 +#: guix-git/doc/guix.texi:10692 msgid "@var{deprecation-warnings} determines whether to show deprecation warnings while compiling modules. It can be @code{#f}, @code{#t}, or @code{'detailed}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10380 +#: guix-git/doc/guix.texi:10694 msgid "The other arguments are as for @code{derivation} (@pxref{Derivations})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10382 +#: guix-git/doc/guix.texi:10696 #, no-wrap msgid "file-like objects" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10387 +#: guix-git/doc/guix.texi:10701 msgid "The @code{local-file}, @code{plain-file}, @code{computed-file}, @code{program-file}, and @code{scheme-file} procedures below return @dfn{file-like objects}. That is, when unquoted in a G-expression, these objects lead to a file in the store. Consider this G-expression:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10391 +#: guix-git/doc/guix.texi:10705 #, no-wrap msgid "" "#~(system* #$(file-append glibc \"/sbin/nscd\") \"-f\"\n" @@ -19238,76 +19780,76 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10400 +#: guix-git/doc/guix.texi:10714 msgid "The effect here is to ``intern'' @file{/tmp/my-nscd.conf} by copying it to the store. Once expanded, for instance @i{via} @code{gexp->derivation}, the G-expression refers to that copy under @file{/gnu/store}; thus, modifying or removing the file in @file{/tmp} does not have any effect on what the G-expression does. @code{plain-file} can be used similarly; it differs in that the file content is directly passed as a string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10401 +#: guix-git/doc/guix.texi:10715 #, no-wrap msgid "{Scheme Procedure} local-file @var{file} [@var{name}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10410 +#: guix-git/doc/guix.texi:10724 msgid "[#:recursive? #f] [#:select? (const #t)] Return an object representing local file @var{file} to add to the store; this object can be used in a gexp. If @var{file} is a literal string denoting a relative file name, it is looked up relative to the source file where it appears; if @var{file} is not a literal string, it is looked up relative to the current working directory at run time. @var{file} will be added to the store under @var{name}--by default the base name of @var{file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10422 +#: guix-git/doc/guix.texi:10736 msgid "This is the declarative counterpart of the @code{interned-file} monadic procedure (@pxref{The Store Monad, @code{interned-file}})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10424 +#: guix-git/doc/guix.texi:10738 #, no-wrap msgid "{Scheme Procedure} plain-file @var{name} @var{content}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10427 +#: guix-git/doc/guix.texi:10741 msgid "Return an object representing a text file called @var{name} with the given @var{content} (a string or a bytevector) to be added to the store." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10429 +#: guix-git/doc/guix.texi:10743 msgid "This is the declarative counterpart of @code{text-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10431 +#: guix-git/doc/guix.texi:10745 #, no-wrap msgid "{Scheme Procedure} computed-file @var{name} @var{gexp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10438 +#: guix-git/doc/guix.texi:10752 msgid "[#:local-build? #t] [#:options '()] Return an object representing the store item @var{name}, a file or directory computed by @var{gexp}. When @var{local-build?} is true (the default), the derivation is built locally. @var{options} is a list of additional arguments to pass to @code{gexp->derivation}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10440 +#: guix-git/doc/guix.texi:10754 msgid "This is the declarative counterpart of @code{gexp->derivation}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10442 +#: guix-git/doc/guix.texi:10756 #, no-wrap msgid "{Monadic Procedure} gexp->script @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10448 +#: guix-git/doc/guix.texi:10762 msgid "[#:guile (default-guile)] [#:module-path %load-path] @ [#:system (%current-system)] [#:target #f] Return an executable script @var{name} that runs @var{exp} using @var{guile}, with @var{exp}'s imported modules in its search path. Look up @var{exp}'s modules in @var{module-path}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10451 +#: guix-git/doc/guix.texi:10765 msgid "The example below builds a script that simply invokes the @command{ls} command:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10454 +#: guix-git/doc/guix.texi:10768 #, no-wrap msgid "" "(use-modules (guix gexp) (gnu packages base))\n" @@ -19315,7 +19857,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10458 +#: guix-git/doc/guix.texi:10772 #, no-wrap msgid "" "(gexp->script \"list-files\"\n" @@ -19324,12 +19866,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10463 +#: guix-git/doc/guix.texi:10777 msgid "When ``running'' it through the store (@pxref{The Store Monad, @code{run-with-store}}), we obtain a derivation that produces an executable file @file{/gnu/store/@dots{}-list-files} along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10468 +#: guix-git/doc/guix.texi:10782 #, no-wrap msgid "" "#!/gnu/store/@dots{}-guile-2.0.11/bin/guile -ds\n" @@ -19338,76 +19880,76 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10471 +#: guix-git/doc/guix.texi:10785 #, no-wrap msgid "{Scheme Procedure} program-file @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10476 +#: guix-git/doc/guix.texi:10790 msgid "[#:guile #f] [#:module-path %load-path] Return an object representing the executable store item @var{name} that runs @var{gexp}. @var{guile} is the Guile package used to execute that script. Imported modules of @var{gexp} are looked up in @var{module-path}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10478 +#: guix-git/doc/guix.texi:10792 msgid "This is the declarative counterpart of @code{gexp->script}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10480 +#: guix-git/doc/guix.texi:10794 #, no-wrap msgid "{Monadic Procedure} gexp->file @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10487 +#: guix-git/doc/guix.texi:10801 msgid "[#:set-load-path? #t] [#:module-path %load-path] @ [#:splice? #f] @ [#:guile (default-guile)] Return a derivation that builds a file @var{name} containing @var{exp}. When @var{splice?} is true, @var{exp} is considered to be a list of expressions that will be spliced in the resulting file." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10492 +#: guix-git/doc/guix.texi:10806 msgid "When @var{set-load-path?} is true, emit code in the resulting file to set @code{%load-path} and @code{%load-compiled-path} to honor @var{exp}'s imported modules. Look up @var{exp}'s modules in @var{module-path}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10495 +#: guix-git/doc/guix.texi:10809 msgid "The resulting file holds references to all the dependencies of @var{exp} or a subset thereof." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10497 +#: guix-git/doc/guix.texi:10811 #, no-wrap msgid "{Scheme Procedure} scheme-file @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10501 +#: guix-git/doc/guix.texi:10815 msgid "[#:splice? #f] [#:set-load-path? #t] Return an object representing the Scheme file @var{name} that contains @var{exp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10503 +#: guix-git/doc/guix.texi:10817 msgid "This is the declarative counterpart of @code{gexp->file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10505 +#: guix-git/doc/guix.texi:10819 #, no-wrap msgid "{Monadic Procedure} text-file* @var{name} @var{text} @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10511 +#: guix-git/doc/guix.texi:10825 msgid "Return as a monadic value a derivation that builds a text file containing all of @var{text}. @var{text} may list, in addition to strings, objects of any type that can be used in a gexp: packages, derivations, local file objects, etc. The resulting store file holds references to all these." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10516 +#: guix-git/doc/guix.texi:10830 msgid "This variant should be preferred over @code{text-file} anytime the file to create will reference items from the store. This is typically the case when building a configuration file that embeds store file names, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10524 +#: guix-git/doc/guix.texi:10838 #, no-wrap msgid "" "(define (profile.sh)\n" @@ -19419,23 +19961,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10529 +#: guix-git/doc/guix.texi:10843 msgid "In this example, the resulting @file{/gnu/store/@dots{}-profile.sh} file will reference @var{coreutils}, @var{grep}, and @var{sed}, thereby preventing them from being garbage-collected during its lifetime." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10531 +#: guix-git/doc/guix.texi:10845 #, no-wrap msgid "{Scheme Procedure} mixed-text-file @var{name} @var{text} @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10535 +#: guix-git/doc/guix.texi:10849 msgid "Return an object representing store file @var{name} containing @var{text}. @var{text} is a sequence of strings and file-like objects, as in:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10539 +#: guix-git/doc/guix.texi:10853 #, no-wrap msgid "" "(mixed-text-file \"profile\"\n" @@ -19443,23 +19985,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10542 +#: guix-git/doc/guix.texi:10856 msgid "This is the declarative counterpart of @code{text-file*}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10544 +#: guix-git/doc/guix.texi:10858 #, no-wrap msgid "{Scheme Procedure} file-union @var{name} @var{files}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10549 +#: guix-git/doc/guix.texi:10863 msgid "Return a @code{} that builds a directory containing all of @var{files}. Each item in @var{files} must be a two-element list where the first element is the file name to use in the new directory, and the second element is a gexp denoting the target file. Here's an example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10556 +#: guix-git/doc/guix.texi:10870 #, no-wrap msgid "" "(file-union \"etc\"\n" @@ -19470,50 +20012,50 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10559 +#: guix-git/doc/guix.texi:10873 msgid "This yields an @code{etc} directory containing these two files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10561 +#: guix-git/doc/guix.texi:10875 #, no-wrap msgid "{Scheme Procedure} directory-union @var{name} @var{things}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10564 +#: guix-git/doc/guix.texi:10878 msgid "Return a directory that is the union of @var{things}, where @var{things} is a list of file-like objects denoting directories. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10567 +#: guix-git/doc/guix.texi:10881 #, no-wrap msgid "(directory-union \"guile+emacs\" (list guile emacs))\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10570 +#: guix-git/doc/guix.texi:10884 msgid "yields a directory that is the union of the @code{guile} and @code{emacs} packages." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10572 +#: guix-git/doc/guix.texi:10886 #, no-wrap msgid "{Scheme Procedure} file-append @var{obj} @var{suffix} @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10576 +#: guix-git/doc/guix.texi:10890 msgid "Return a file-like object that expands to the concatenation of @var{obj} and @var{suffix}, where @var{obj} is a lowerable object and each @var{suffix} is a string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10578 +#: guix-git/doc/guix.texi:10892 msgid "As an example, consider this gexp:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10583 +#: guix-git/doc/guix.texi:10897 #, no-wrap msgid "" "(gexp->script \"run-uname\"\n" @@ -19522,12 +20064,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10586 +#: guix-git/doc/guix.texi:10900 msgid "The same effect could be achieved with:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10591 +#: guix-git/doc/guix.texi:10905 #, no-wrap msgid "" "(gexp->script \"run-uname\"\n" @@ -19536,39 +20078,39 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10597 +#: guix-git/doc/guix.texi:10911 msgid "There is one difference though: in the @code{file-append} case, the resulting script contains the absolute file name as a string, whereas in the second case, the resulting script contains a @code{(string-append @dots{})} expression to construct the file name @emph{at run time}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10599 +#: guix-git/doc/guix.texi:10913 #, no-wrap msgid "{Scheme Syntax} let-system @var{system} @var{body}@dots{}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:10600 +#: guix-git/doc/guix.texi:10914 #, no-wrap msgid "{Scheme Syntax} let-system (@var{system} @var{target}) @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10603 +#: guix-git/doc/guix.texi:10917 msgid "Bind @var{system} to the currently targeted system---e.g., @code{\"x86_64-linux\"}---within @var{body}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10608 +#: guix-git/doc/guix.texi:10922 msgid "In the second case, additionally bind @var{target} to the current cross-compilation target---a GNU triplet such as @code{\"arm-linux-gnueabihf\"}---or @code{#f} if we are not cross-compiling." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10611 +#: guix-git/doc/guix.texi:10925 msgid "@code{let-system} is useful in the occasional case where the object spliced into the gexp depends on the target system, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10622 +#: guix-git/doc/guix.texi:10936 #, no-wrap msgid "" "#~(system*\n" @@ -19583,23 +20125,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10625 +#: guix-git/doc/guix.texi:10939 #, no-wrap msgid "{Scheme Syntax} with-parameters ((@var{parameter} @var{value}) @dots{}) @var{exp}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10631 +#: guix-git/doc/guix.texi:10945 msgid "This macro is similar to the @code{parameterize} form for dynamically-bound @dfn{parameters} (@pxref{Parameters,,, guile, GNU Guile Reference Manual}). The key difference is that it takes effect when the file-like object returned by @var{exp} is lowered to a derivation or store item." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10634 +#: guix-git/doc/guix.texi:10948 msgid "A typical use of @code{with-parameters} is to force the system in effect for a given object:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10638 +#: guix-git/doc/guix.texi:10952 #, no-wrap msgid "" "(with-parameters ((%current-system \"i686-linux\"))\n" @@ -19607,94 +20149,94 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10642 +#: guix-git/doc/guix.texi:10956 msgid "The example above returns an object that corresponds to the i686 build of Coreutils, regardless of the current value of @code{%current-system}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10649 +#: guix-git/doc/guix.texi:10963 msgid "Of course, in addition to gexps embedded in ``host'' code, there are also modules containing build tools. To make it clear that they are meant to be used in the build stratum, these modules are kept in the @code{(guix build @dots{})} name space." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10655 +#: guix-git/doc/guix.texi:10969 msgid "Internally, high-level objects are @dfn{lowered}, using their compiler, to either derivations or store items. For instance, lowering a package yields a derivation, and lowering a @code{plain-file} yields a store item. This is achieved using the @code{lower-object} monadic procedure." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10656 +#: guix-git/doc/guix.texi:10970 #, no-wrap msgid "{Monadic Procedure} lower-object @var{obj} [@var{system}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10662 +#: guix-git/doc/guix.texi:10976 msgid "[#:target #f] Return as a value in @code{%store-monad} the derivation or store item corresponding to @var{obj} for @var{system}, cross-compiling for @var{target} if @var{target} is true. @var{obj} must be an object that has an associated gexp compiler, such as a @code{}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10664 +#: guix-git/doc/guix.texi:10978 #, no-wrap msgid "{Procedure} gexp->approximate-sexp @var{gexp}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10672 +#: guix-git/doc/guix.texi:10986 msgid "Sometimes, it may be useful to convert a G-exp into a S-exp. For example, some linters (@pxref{Invoking guix lint}) peek into the build phases of a package to detect potential problems. This conversion can be achieved with this procedure. However, some information can be lost in the process. More specifically, lowerable objects will be silently replaced with some arbitrary object -- currently the list @code{(*approximate*)}, but this may change." msgstr "" #. type: section -#: guix-git/doc/guix.texi:10675 +#: guix-git/doc/guix.texi:10989 #, no-wrap msgid "Invoking @command{guix repl}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10677 +#: guix-git/doc/guix.texi:10991 #, no-wrap msgid "REPL, read-eval-print loop, script" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10687 +#: guix-git/doc/guix.texi:11001 msgid "The @command{guix repl} command makes it easier to program Guix in Guile by launching a Guile @dfn{read-eval-print loop} (REPL) for interactive programming (@pxref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}), or by running Guile scripts (@pxref{Running Guile Scripts,,, guile, GNU Guile Reference Manual}). Compared to just launching the @command{guile} command, @command{guix repl} guarantees that all the Guix modules and all its dependencies are available in the search path." msgstr "" #. type: example -#: guix-git/doc/guix.texi:10692 +#: guix-git/doc/guix.texi:11006 #, no-wrap msgid "guix repl @var{options} [@var{file} @var{args}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10696 +#: guix-git/doc/guix.texi:11010 msgid "When a @var{file} argument is provided, @var{file} is executed as a Guile scripts:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10699 +#: guix-git/doc/guix.texi:11013 #, no-wrap msgid "guix repl my-script.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10703 +#: guix-git/doc/guix.texi:11017 msgid "To pass arguments to the script, use @code{--} to prevent them from being interpreted as arguments to @command{guix repl} itself:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10706 +#: guix-git/doc/guix.texi:11020 #, no-wrap msgid "guix repl -- my-script.scm --input=foo.txt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10711 +#: guix-git/doc/guix.texi:11025 msgid "To make a script executable directly from the shell, using the guix executable that is on the user's search path, add the following two lines at the top of the script:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10715 +#: guix-git/doc/guix.texi:11029 #, no-wrap msgid "" "@code{#!/usr/bin/env -S guix repl --}\n" @@ -19702,12 +20244,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10718 +#: guix-git/doc/guix.texi:11032 msgid "Without a file name argument, a Guile REPL is started:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10724 +#: guix-git/doc/guix.texi:11038 #, no-wrap msgid "" "$ guix repl\n" @@ -19717,169 +20259,169 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10731 +#: guix-git/doc/guix.texi:11045 msgid "In addition, @command{guix repl} implements a simple machine-readable REPL protocol for use by @code{(guix inferior)}, a facility to interact with @dfn{inferiors}, separate processes running a potentially different revision of Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10733 +#: guix-git/doc/guix.texi:11047 msgid "The available options are as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10735 guix-git/doc/guix.texi:13411 +#: guix-git/doc/guix.texi:11049 guix-git/doc/guix.texi:13768 #, no-wrap msgid "--type=@var{type}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10736 guix-git/doc/guix.texi:13412 -#: guix-git/doc/guix.texi:35281 +#: guix-git/doc/guix.texi:11050 guix-git/doc/guix.texi:13769 +#: guix-git/doc/guix.texi:35725 #, no-wrap msgid "-t @var{type}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10738 +#: guix-git/doc/guix.texi:11052 msgid "Start a REPL of the given @var{TYPE}, which can be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10740 +#: guix-git/doc/guix.texi:11054 #, no-wrap msgid "guile" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10742 +#: guix-git/doc/guix.texi:11056 msgid "This is default, and it spawns a standard full-featured Guile REPL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10742 +#: guix-git/doc/guix.texi:11056 #, no-wrap msgid "machine" msgstr "장비" #. type: table -#: guix-git/doc/guix.texi:10745 +#: guix-git/doc/guix.texi:11059 msgid "Spawn a REPL that uses the machine-readable protocol. This is the protocol that the @code{(guix inferior)} module speaks." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10751 +#: guix-git/doc/guix.texi:11065 msgid "By default, @command{guix repl} reads from standard input and writes to standard output. When this option is passed, it will instead listen for connections on @var{endpoint}. Here are examples of valid options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10753 +#: guix-git/doc/guix.texi:11067 #, no-wrap msgid "--listen=tcp:37146" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10755 +#: guix-git/doc/guix.texi:11069 msgid "Accept connections on localhost on port 37146." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10756 +#: guix-git/doc/guix.texi:11070 #, no-wrap msgid "--listen=unix:/tmp/socket" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10758 +#: guix-git/doc/guix.texi:11072 msgid "Accept connections on the Unix-domain socket @file{/tmp/socket}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10760 guix-git/doc/guix.texi:10865 -#: guix-git/doc/guix.texi:12763 guix-git/doc/guix.texi:12840 -#: guix-git/doc/guix.texi:13046 guix-git/doc/guix.texi:13191 -#: guix-git/doc/guix.texi:13459 +#: guix-git/doc/guix.texi:11074 guix-git/doc/guix.texi:11179 +#: guix-git/doc/guix.texi:13078 guix-git/doc/guix.texi:13196 +#: guix-git/doc/guix.texi:13403 guix-git/doc/guix.texi:13548 +#: guix-git/doc/guix.texi:13816 #, no-wrap msgid "--load-path=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10761 guix-git/doc/guix.texi:10866 -#: guix-git/doc/guix.texi:12841 guix-git/doc/guix.texi:13047 -#: guix-git/doc/guix.texi:13192 guix-git/doc/guix.texi:13460 +#: guix-git/doc/guix.texi:11075 guix-git/doc/guix.texi:11180 +#: guix-git/doc/guix.texi:13197 guix-git/doc/guix.texi:13404 +#: guix-git/doc/guix.texi:13549 guix-git/doc/guix.texi:13817 #, no-wrap msgid "-L @var{directory}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10764 guix-git/doc/guix.texi:10869 -#: guix-git/doc/guix.texi:12766 guix-git/doc/guix.texi:12844 -#: guix-git/doc/guix.texi:13050 guix-git/doc/guix.texi:13195 -#: guix-git/doc/guix.texi:13463 +#: guix-git/doc/guix.texi:11078 guix-git/doc/guix.texi:11183 +#: guix-git/doc/guix.texi:13081 guix-git/doc/guix.texi:13200 +#: guix-git/doc/guix.texi:13407 guix-git/doc/guix.texi:13552 +#: guix-git/doc/guix.texi:13820 msgid "Add @var{directory} to the front of the package module search path (@pxref{Package Modules})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10767 +#: guix-git/doc/guix.texi:11081 msgid "This allows users to define their own packages and make them visible to the script or REPL." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10768 guix-git/doc/guix.texi:11390 +#: guix-git/doc/guix.texi:11082 guix-git/doc/guix.texi:11704 #, no-wrap msgid "-q" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10771 +#: guix-git/doc/guix.texi:11085 msgid "Inhibit loading of the @file{~/.guile} file. By default, that configuration file is loaded when spawning a @code{guile} REPL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10781 +#: guix-git/doc/guix.texi:11095 msgid "This section describes Guix command-line utilities. Some of them are primarily targeted at developers and users who write new package definitions, while others are more generally useful. They complement the Scheme programming interface of Guix in a convenient way." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10804 +#: guix-git/doc/guix.texi:11118 #, no-wrap msgid "package building" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:10805 +#: guix-git/doc/guix.texi:11119 #, no-wrap msgid "guix build" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10811 +#: guix-git/doc/guix.texi:11125 msgid "The @command{guix build} command builds packages or derivations and their dependencies, and prints the resulting store paths. Note that it does not modify the user's profile---this is the job of the @command{guix package} command (@pxref{Invoking guix package}). Thus, it is mainly useful for distribution developers." msgstr "" #. type: example -#: guix-git/doc/guix.texi:10816 +#: guix-git/doc/guix.texi:11130 #, no-wrap msgid "guix build @var{options} @var{package-or-derivation}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10821 +#: guix-git/doc/guix.texi:11135 msgid "As an example, the following command builds the latest versions of Emacs and of Guile, displays their build logs, and finally displays the resulting directories:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10824 +#: guix-git/doc/guix.texi:11138 #, no-wrap msgid "guix build emacs guile\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10827 +#: guix-git/doc/guix.texi:11141 msgid "Similarly, the following command builds all the available packages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10831 +#: guix-git/doc/guix.texi:11145 #, no-wrap msgid "" "guix build --quiet --keep-going \\\n" @@ -19887,325 +20429,325 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10839 +#: guix-git/doc/guix.texi:11153 msgid "@var{package-or-derivation} may be either the name of a package found in the software distribution such as @code{coreutils} or @code{coreutils@@8.20}, or a derivation such as @file{/gnu/store/@dots{}-coreutils-8.19.drv}. In the former case, a package with the corresponding name (and optionally version) is searched for among the GNU distribution modules (@pxref{Package Modules})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10844 +#: guix-git/doc/guix.texi:11158 msgid "Alternatively, the @option{--expression} option may be used to specify a Scheme expression that evaluates to a package; this is useful when disambiguating among several same-named packages or package variants is needed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10847 +#: guix-git/doc/guix.texi:11161 msgid "There may be zero or more @var{options}. The available options are described in the subsections below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10862 +#: guix-git/doc/guix.texi:11176 msgid "A number of options that control the build process are common to @command{guix build} and other commands that can spawn builds, such as @command{guix package} or @command{guix archive}. These are the following:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10872 guix-git/doc/guix.texi:12769 -#: guix-git/doc/guix.texi:13053 guix-git/doc/guix.texi:13198 -#: guix-git/doc/guix.texi:13466 +#: guix-git/doc/guix.texi:11186 guix-git/doc/guix.texi:13084 +#: guix-git/doc/guix.texi:13410 guix-git/doc/guix.texi:13555 +#: guix-git/doc/guix.texi:13823 msgid "This allows users to define their own packages and make them visible to the command-line tools." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10873 +#: guix-git/doc/guix.texi:11187 #, no-wrap msgid "--keep-failed" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10874 +#: guix-git/doc/guix.texi:11188 #, no-wrap msgid "-K" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10880 +#: guix-git/doc/guix.texi:11194 msgid "Keep the build tree of failed builds. Thus, if a build fails, its build tree is kept under @file{/tmp}, in a directory whose name is shown at the end of the build log. This is useful when debugging build issues. @xref{Debugging Build Failures}, for tips and tricks on how to debug build issues." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10884 +#: guix-git/doc/guix.texi:11198 msgid "This option implies @option{--no-offload}, and it has no effect when connecting to a remote daemon with a @code{guix://} URI (@pxref{The Store, the @env{GUIX_DAEMON_SOCKET} variable})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10885 +#: guix-git/doc/guix.texi:11199 #, no-wrap msgid "--keep-going" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10886 +#: guix-git/doc/guix.texi:11200 #, no-wrap msgid "-k" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10889 +#: guix-git/doc/guix.texi:11203 msgid "Keep going when some of the derivations fail to build; return only once all the builds have either completed or failed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10892 +#: guix-git/doc/guix.texi:11206 msgid "The default behavior is to stop as soon as one of the specified derivations has failed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10896 +#: guix-git/doc/guix.texi:11210 msgid "Do not build the derivations." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:10898 +#: guix-git/doc/guix.texi:11212 msgid "fallback-option" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10898 +#: guix-git/doc/guix.texi:11212 #, no-wrap msgid "--fallback" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10901 +#: guix-git/doc/guix.texi:11215 msgid "When substituting a pre-built binary fails, fall back to building packages locally (@pxref{Substitution Failure})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:10907 +#: guix-git/doc/guix.texi:11221 msgid "client-substitute-urls" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10907 +#: guix-git/doc/guix.texi:11221 msgid "Consider @var{urls} the whitespace-separated list of substitute source URLs, overriding the default list of URLs of @command{guix-daemon} (@pxref{daemon-substitute-urls,, @command{guix-daemon} URLs})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10911 +#: guix-git/doc/guix.texi:11225 msgid "This means that substitutes may be downloaded from @var{urls}, provided they are signed by a key authorized by the system administrator (@pxref{Substitutes})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10914 +#: guix-git/doc/guix.texi:11228 msgid "When @var{urls} is the empty string, substitutes are effectively disabled." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10920 +#: guix-git/doc/guix.texi:11234 #, no-wrap msgid "--no-grafts" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10924 +#: guix-git/doc/guix.texi:11238 msgid "Do not ``graft'' packages. In practice, this means that package updates available as grafts are not applied. @xref{Security Updates}, for more information on grafts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10925 +#: guix-git/doc/guix.texi:11239 #, no-wrap msgid "--rounds=@var{n}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10928 +#: guix-git/doc/guix.texi:11242 msgid "Build each derivation @var{n} times in a row, and raise an error if consecutive build results are not bit-for-bit identical." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10933 +#: guix-git/doc/guix.texi:11247 msgid "This is a useful way to detect non-deterministic builds processes. Non-deterministic build processes are a problem because they make it practically impossible for users to @emph{verify} whether third-party binaries are genuine. @xref{Invoking guix challenge}, for more." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10949 +#: guix-git/doc/guix.texi:11263 msgid "By default, the daemon's setting is honored (@pxref{Invoking guix-daemon, @option{--max-silent-time}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10956 +#: guix-git/doc/guix.texi:11270 msgid "By default, the daemon's setting is honored (@pxref{Invoking guix-daemon, @option{--timeout}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10959 +#: guix-git/doc/guix.texi:11273 #, no-wrap msgid "verbosity, of the command-line tools" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10960 +#: guix-git/doc/guix.texi:11274 #, no-wrap msgid "build logs, verbosity" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10961 +#: guix-git/doc/guix.texi:11275 #, no-wrap msgid "-v @var{level}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10962 +#: guix-git/doc/guix.texi:11276 #, no-wrap msgid "--verbosity=@var{level}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10967 +#: guix-git/doc/guix.texi:11281 msgid "Use the given verbosity @var{level}, an integer. Choosing 0 means that no output is produced, 1 is for quiet output; 2 is similar to 1 but it additionally displays download URLs; 3 shows all the build log output on standard error." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10972 +#: guix-git/doc/guix.texi:11286 msgid "Allow the use of up to @var{n} CPU cores for the build. The special value @code{0} means to use as many CPU cores as available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10978 +#: guix-git/doc/guix.texi:11292 msgid "Allow at most @var{n} build jobs in parallel. @xref{Invoking guix-daemon, @option{--max-jobs}}, for details about this option and the equivalent @command{guix-daemon} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10979 +#: guix-git/doc/guix.texi:11293 #, no-wrap msgid "--debug=@var{level}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10983 +#: guix-git/doc/guix.texi:11297 msgid "Produce debugging output coming from the build daemon. @var{level} must be an integer between 0 and 5; higher means more verbose output. Setting a level of 4 or more may be helpful when debugging setup issues with the build daemon." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10990 +#: guix-git/doc/guix.texi:11304 msgid "Behind the scenes, @command{guix build} is essentially an interface to the @code{package-derivation} procedure of the @code{(guix packages)} module, and to the @code{build-derivations} procedure of the @code{(guix derivations)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10994 +#: guix-git/doc/guix.texi:11308 msgid "In addition to options explicitly passed on the command line, @command{guix build} and other @command{guix} commands that support building honor the @env{GUIX_BUILD_OPTIONS} environment variable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:10995 +#: guix-git/doc/guix.texi:11309 #, no-wrap msgid "{Environment Variable} GUIX_BUILD_OPTIONS" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:11000 +#: guix-git/doc/guix.texi:11314 msgid "Users can define this variable to a list of command line options that will automatically be used by @command{guix build} and other @command{guix} commands that can perform builds, as in the example below:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11003 +#: guix-git/doc/guix.texi:11317 #, no-wrap msgid "$ export GUIX_BUILD_OPTIONS=\"--no-substitutes -c 2 -L /foo/bar\"\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:11007 +#: guix-git/doc/guix.texi:11321 msgid "These options are parsed independently, and the result is appended to the parsed command-line options." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11013 +#: guix-git/doc/guix.texi:11327 #, no-wrap msgid "package variants" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11021 +#: guix-git/doc/guix.texi:11335 msgid "Another set of command-line options supported by @command{guix build} and also @command{guix package} are @dfn{package transformation options}. These are options that make it possible to define @dfn{package variants}---for instance, packages built from different source code. This is a convenient way to create customized packages on the fly without having to type in the definitions of package variants (@pxref{Defining Packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11025 +#: guix-git/doc/guix.texi:11339 msgid "Package transformation options are preserved across upgrades: @command{guix upgrade} attempts to apply transformation options initially used when creating the profile to the upgraded packages." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11030 +#: guix-git/doc/guix.texi:11344 msgid "The available options are listed below. Most commands support them and also support a @option{--help-transform} option that lists all the available options and a synopsis (these options are not shown in the @option{--help} output for brevity)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11033 +#: guix-git/doc/guix.texi:11347 #, fuzzy, no-wrap #| msgid "performance" msgid "performance, tuning code" msgstr "성능" #. type: cindex -#: guix-git/doc/guix.texi:11034 +#: guix-git/doc/guix.texi:11348 #, fuzzy, no-wrap #| msgid "inputs, for Python packages" msgid "optimization, of package code" msgstr "파이썬 꾸러미를 위한 입력" #. type: cindex -#: guix-git/doc/guix.texi:11035 +#: guix-git/doc/guix.texi:11349 #, no-wrap msgid "tuning, of package code" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11036 +#: guix-git/doc/guix.texi:11350 #, no-wrap msgid "SIMD support" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11037 +#: guix-git/doc/guix.texi:11351 #, fuzzy, no-wrap #| msgid "packages" msgid "tunable packages" msgstr "꾸러미" #. type: cindex -#: guix-git/doc/guix.texi:11038 +#: guix-git/doc/guix.texi:11352 #, fuzzy, no-wrap #| msgid "package version" msgid "package multi-versioning" msgstr "꾸러미 버전" #. type: item -#: guix-git/doc/guix.texi:11039 +#: guix-git/doc/guix.texi:11353 #, no-wrap msgid "--tune[=@var{cpu}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11043 +#: guix-git/doc/guix.texi:11357 msgid "Use versions of the packages marked as ``tunable'' optimized for @var{cpu}. When @var{cpu} is @code{native}, or when it is omitted, tune for the CPU on which the @command{guix} command is running." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11049 +#: guix-git/doc/guix.texi:11363 msgid "Valid @var{cpu} names are those recognized by the underlying compiler, by default the GNU Compiler Collection. On x86_64 processors, this includes CPU names such as @code{nehalem}, @code{haswell}, and @code{skylake} (@pxref{x86 Options, @code{-march},, gcc, Using the GNU Compiler Collection (GCC)})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11056 +#: guix-git/doc/guix.texi:11370 msgid "As new generations of CPUs come out, they augment the standard instruction set architecture (ISA) with additional instructions, in particular instructions for single-instruction/multiple-data (SIMD) parallel processing. For example, while Core2 and Skylake CPUs both implement the x86_64 ISA, only the latter supports AVX2 SIMD instructions." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11063 +#: guix-git/doc/guix.texi:11377 msgid "The primary gain one can expect from @option{--tune} is for programs that can make use of those SIMD capabilities @emph{and} that do not already have a mechanism to select the right optimized code at run time. Packages that have the @code{tunable?} property set are considered @dfn{tunable packages} by the @option{--tune} option; a package definition with the property set looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:11068 +#: guix-git/doc/guix.texi:11382 #, no-wrap msgid "" "(package\n" @@ -20215,7 +20757,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:11072 +#: guix-git/doc/guix.texi:11386 #, no-wrap msgid "" " ;; This package may benefit from SIMD extensions so\n" @@ -20224,87 +20766,87 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11077 +#: guix-git/doc/guix.texi:11391 msgid "Other packages are not considered tunable. This allows Guix to use generic binaries in the cases where tuning for a specific CPU is unlikely to provide any gain." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11083 +#: guix-git/doc/guix.texi:11397 msgid "Tuned packages are built with @code{-march=@var{CPU}}; under the hood, the @option{-march} option is passed to the actual wrapper by a compiler wrapper. Since the build machine may not be able to run code for the target CPU micro-architecture, the test suite is not run when building a tuned package." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11087 +#: guix-git/doc/guix.texi:11401 msgid "To reduce rebuilds to the minimum, tuned packages are @emph{grafted} onto packages that depend on them (@pxref{Security Updates, grafts}). Thus, using @option{--no-grafts} cancels the effect of @option{--tune}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11093 +#: guix-git/doc/guix.texi:11407 msgid "We call this technique @dfn{package multi-versioning}: several variants of tunable packages may be built, one for each CPU variant. It is the coarse-grain counterpart of @dfn{function multi-versioning} as implemented by the GNU tool chain (@pxref{Function Multiversioning,,, gcc, Using the GNU Compiler Collection (GCC)})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11094 +#: guix-git/doc/guix.texi:11408 #, no-wrap msgid "--with-source=@var{source}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11095 +#: guix-git/doc/guix.texi:11409 #, no-wrap msgid "--with-source=@var{package}=@var{source}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11096 +#: guix-git/doc/guix.texi:11410 #, no-wrap msgid "--with-source=@var{package}@@@var{version}=@var{source}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11101 +#: guix-git/doc/guix.texi:11415 msgid "Use @var{source} as the source of @var{package}, and @var{version} as its version number. @var{source} must be a file name or a URL, as for @command{guix download} (@pxref{Invoking guix download})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11107 +#: guix-git/doc/guix.texi:11421 msgid "When @var{package} is omitted, it is taken to be the package name specified on the command line that matches the base of @var{source}---e.g., if @var{source} is @code{/src/guile-2.0.10.tar.gz}, the corresponding package is @code{guile}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11110 +#: guix-git/doc/guix.texi:11424 msgid "Likewise, when @var{version} is omitted, the version string is inferred from @var{source}; in the previous example, it is @code{2.0.10}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11115 +#: guix-git/doc/guix.texi:11429 msgid "This option allows users to try out versions of packages other than the one provided by the distribution. The example below downloads @file{ed-1.7.tar.gz} from a GNU mirror and uses that as the source for the @code{ed} package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11118 +#: guix-git/doc/guix.texi:11432 #, no-wrap msgid "guix build ed --with-source=mirror://gnu/ed/ed-1.7.tar.gz\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11122 +#: guix-git/doc/guix.texi:11436 msgid "As a developer, @option{--with-source} makes it easy to test release candidates:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11125 +#: guix-git/doc/guix.texi:11439 #, no-wrap msgid "guix build guile --with-source=../guile-2.0.9.219-e1bb7.tar.xz\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11128 +#: guix-git/doc/guix.texi:11442 msgid "@dots{} or to build from a checkout in a pristine environment:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11132 +#: guix-git/doc/guix.texi:11446 #, no-wrap msgid "" "$ git clone git://git.sv.gnu.org/guix.git\n" @@ -20312,126 +20854,126 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11134 +#: guix-git/doc/guix.texi:11448 #, no-wrap msgid "--with-input=@var{package}=@var{replacement}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11139 +#: guix-git/doc/guix.texi:11453 msgid "Replace dependency on @var{package} by a dependency on @var{replacement}. @var{package} must be a package name, and @var{replacement} must be a package specification such as @code{guile} or @code{guile@@1.8}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11143 +#: guix-git/doc/guix.texi:11457 msgid "For instance, the following command builds Guix, but replaces its dependency on the current stable version of Guile with a dependency on the legacy version of Guile, @code{guile@@2.0}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11146 +#: guix-git/doc/guix.texi:11460 #, no-wrap msgid "guix build --with-input=guile=guile@@2.0 guix\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11151 +#: guix-git/doc/guix.texi:11465 msgid "This is a recursive, deep replacement. So in this example, both @code{guix} and its dependency @code{guile-json} (which also depends on @code{guile}) get rebuilt against @code{guile@@2.0}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11154 +#: guix-git/doc/guix.texi:11468 msgid "This is implemented using the @code{package-input-rewriting} Scheme procedure (@pxref{Defining Packages, @code{package-input-rewriting}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11155 +#: guix-git/doc/guix.texi:11469 #, no-wrap msgid "--with-graft=@var{package}=@var{replacement}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11161 +#: guix-git/doc/guix.texi:11475 msgid "This is similar to @option{--with-input} but with an important difference: instead of rebuilding the whole dependency chain, @var{replacement} is built and then @dfn{grafted} onto the binaries that were initially referring to @var{package}. @xref{Security Updates}, for more information on grafts." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11165 +#: guix-git/doc/guix.texi:11479 msgid "For example, the command below grafts version 3.5.4 of GnuTLS onto Wget and all its dependencies, replacing references to the version of GnuTLS they currently refer to:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11168 +#: guix-git/doc/guix.texi:11482 #, no-wrap msgid "guix build --with-graft=gnutls=gnutls@@3.5.4 wget\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11177 +#: guix-git/doc/guix.texi:11491 msgid "This has the advantage of being much faster than rebuilding everything. But there is a caveat: it works if and only if @var{package} and @var{replacement} are strictly compatible---for example, if they provide a library, the application binary interface (ABI) of those libraries must be compatible. If @var{replacement} is somehow incompatible with @var{package}, then the resulting package may be unusable. Use with care!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11178 guix-git/doc/guix.texi:37882 +#: guix-git/doc/guix.texi:11492 guix-git/doc/guix.texi:38371 #, no-wrap msgid "debugging info, rebuilding" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11179 +#: guix-git/doc/guix.texi:11493 #, no-wrap msgid "--with-debug-info=@var{package}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11184 +#: guix-git/doc/guix.texi:11498 msgid "Build @var{package} in a way that preserves its debugging info and graft it onto packages that depend on it. This is useful if @var{package} does not already provide debugging info as a @code{debug} output (@pxref{Installing Debugging Files})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11190 +#: guix-git/doc/guix.texi:11504 msgid "For example, suppose you're experiencing a crash in Inkscape and would like to see what's up in GLib, a library deep down in Inkscape's dependency graph. GLib lacks a @code{debug} output, so debugging is tough. Fortunately, you rebuild GLib with debugging info and tack it on Inkscape:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11193 guix-git/doc/guix.texi:37913 +#: guix-git/doc/guix.texi:11507 guix-git/doc/guix.texi:38402 #, no-wrap msgid "guix install inkscape --with-debug-info=glib\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11197 +#: guix-git/doc/guix.texi:11511 msgid "Only GLib needs to be recompiled so this takes a reasonable amount of time. @xref{Installing Debugging Files}, for more info." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11203 +#: guix-git/doc/guix.texi:11517 msgid "Under the hood, this option works by passing the @samp{#:strip-binaries? #f} to the build system of the package of interest (@pxref{Build Systems}). Most build systems support that option but some do not. In that case, an error is raised." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11207 +#: guix-git/doc/guix.texi:11521 msgid "Likewise, if a C/C++ package is built without @code{-g} (which is rarely the case), debugging info will remain unavailable even when @code{#:strip-binaries?} is false." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11209 +#: guix-git/doc/guix.texi:11523 #, no-wrap msgid "tool chain, changing the build tool chain of a package" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11210 +#: guix-git/doc/guix.texi:11524 #, no-wrap msgid "--with-c-toolchain=@var{package}=@var{toolchain}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11214 +#: guix-git/doc/guix.texi:11528 msgid "This option changes the compilation of @var{package} and everything that depends on it so that they get built with @var{toolchain} instead of the default GNU tool chain for C/C++." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11221 +#: guix-git/doc/guix.texi:11535 #, no-wrap msgid "" "guix build octave-cli \\\n" @@ -20440,17 +20982,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11228 +#: guix-git/doc/guix.texi:11542 msgid "The command above builds a variant of the @code{fftw} and @code{fftwf} packages using version 10 of @code{gcc-toolchain} instead of the default tool chain, and then builds a variant of the GNU@tie{}Octave command-line interface using them. GNU@tie{}Octave itself is also built with @code{gcc-toolchain@@10}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11232 +#: guix-git/doc/guix.texi:11546 msgid "This other example builds the Hardware Locality (@code{hwloc}) library and its dependents up to @code{intel-mpi-benchmarks} with the Clang C compiler:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11236 +#: guix-git/doc/guix.texi:11550 #, no-wrap msgid "" "guix build --with-c-toolchain=hwloc=clang-toolchain \\\n" @@ -20458,40 +21000,40 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11245 +#: guix-git/doc/guix.texi:11559 msgid "There can be application binary interface (ABI) incompatibilities among tool chains. This is particularly true of the C++ standard library and run-time support libraries such as that of OpenMP@. By rebuilding all dependents with the same tool chain, @option{--with-c-toolchain} minimizes the risks of incompatibility but cannot entirely eliminate them. Choose @var{package} wisely." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11247 +#: guix-git/doc/guix.texi:11561 #, no-wrap msgid "--with-git-url=@var{package}=@var{url}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11248 +#: guix-git/doc/guix.texi:11562 #, no-wrap msgid "Git, using the latest commit" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11249 +#: guix-git/doc/guix.texi:11563 #, no-wrap msgid "latest commit, building" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11253 +#: guix-git/doc/guix.texi:11567 msgid "Build @var{package} from the latest commit of the @code{master} branch of the Git repository at @var{url}. Git sub-modules of the repository are fetched, recursively." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11256 +#: guix-git/doc/guix.texi:11570 msgid "For example, the following command builds the NumPy Python library against the latest commit of the master branch of Python itself:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11260 +#: guix-git/doc/guix.texi:11574 #, no-wrap msgid "" "guix build python-numpy \\\n" @@ -20499,318 +21041,318 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11264 +#: guix-git/doc/guix.texi:11578 msgid "This option can also be combined with @option{--with-branch} or @option{--with-commit} (see below)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11265 guix-git/doc/guix.texi:28957 +#: guix-git/doc/guix.texi:11579 guix-git/doc/guix.texi:29294 #, no-wrap msgid "continuous integration" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11271 +#: guix-git/doc/guix.texi:11585 msgid "Obviously, since it uses the latest commit of the given branch, the result of such a command varies over time. Nevertheless it is a convenient way to rebuild entire software stacks against the latest commit of one or more packages. This is particularly useful in the context of continuous integration (CI)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11275 +#: guix-git/doc/guix.texi:11589 msgid "Checkouts are kept in a cache under @file{~/.cache/guix/checkouts} to speed up consecutive accesses to the same repository. You may want to clean it up once in a while to save disk space." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11276 +#: guix-git/doc/guix.texi:11590 #, no-wrap msgid "--with-branch=@var{package}=@var{branch}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11282 +#: guix-git/doc/guix.texi:11596 msgid "Build @var{package} from the latest commit of @var{branch}. If the @code{source} field of @var{package} is an origin with the @code{git-fetch} method (@pxref{origin Reference}) or a @code{git-checkout} object, the repository URL is taken from that @code{source}. Otherwise you have to use @option{--with-git-url} to specify the URL of the Git repository." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11287 +#: guix-git/doc/guix.texi:11601 msgid "For instance, the following command builds @code{guile-sqlite3} from the latest commit of its @code{master} branch, and then builds @code{guix} (which depends on it) and @code{cuirass} (which depends on @code{guix}) against this specific @code{guile-sqlite3} build:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11290 +#: guix-git/doc/guix.texi:11604 #, no-wrap msgid "guix build --with-branch=guile-sqlite3=master cuirass\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11292 +#: guix-git/doc/guix.texi:11606 #, no-wrap msgid "--with-commit=@var{package}=@var{commit}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11297 +#: guix-git/doc/guix.texi:11611 msgid "This is similar to @option{--with-branch}, except that it builds from @var{commit} rather than the tip of a branch. @var{commit} must be a valid Git commit SHA1 identifier, a tag, or a @command{git describe} style identifier such as @code{1.0-3-gabc123}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11298 +#: guix-git/doc/guix.texi:11612 #, no-wrap msgid "--with-patch=@var{package}=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11305 +#: guix-git/doc/guix.texi:11619 msgid "Add @var{file} to the list of patches applied to @var{package}, where @var{package} is a spec such as @code{python@@3.8} or @code{glibc}. @var{file} must contain a patch; it is applied with the flags specified in the @code{origin} of @var{package} (@pxref{origin Reference}), which by default includes @code{-p1} (@pxref{patch Directories,,, diffutils, Comparing and Merging Files})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11308 +#: guix-git/doc/guix.texi:11622 msgid "As an example, the command below rebuilds Coreutils with the GNU C Library (glibc) patched with the given patch:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11311 +#: guix-git/doc/guix.texi:11625 #, no-wrap msgid "guix build coreutils --with-patch=glibc=./glibc-frob.patch\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11315 +#: guix-git/doc/guix.texi:11629 msgid "In this example, glibc itself as well as everything that leads to Coreutils in the dependency graph is rebuilt." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11316 +#: guix-git/doc/guix.texi:11630 #, no-wrap msgid "upstream, latest version" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11317 +#: guix-git/doc/guix.texi:11631 #, no-wrap msgid "--with-latest=@var{package}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11322 +#: guix-git/doc/guix.texi:11636 msgid "So you like living on the bleeding edge? This option is for you! It replaces occurrences of @var{package} in the dependency graph with its latest upstream version, as reported by @command{guix refresh} (@pxref{Invoking guix refresh})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11326 +#: guix-git/doc/guix.texi:11640 msgid "It does so by determining the latest upstream release of @var{package} (if possible), downloading it, and authenticating it @emph{if} it comes with an OpenPGP signature." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11329 +#: guix-git/doc/guix.texi:11643 msgid "As an example, the command below builds Guix against the latest version of Guile-JSON:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11332 +#: guix-git/doc/guix.texi:11646 #, no-wrap msgid "guix build guix --with-latest=guile-json\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11341 +#: guix-git/doc/guix.texi:11655 msgid "There are limitations. First, in cases where the tool cannot or does not know how to authenticate source code, you are at risk of running malicious code; a warning is emitted in this case. Second, this option simply changes the source used in the existing package definitions, which is not always sufficient: there might be additional dependencies that need to be added, patches to apply, and more generally the quality assurance work that Guix developers normally do will be missing." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11346 +#: guix-git/doc/guix.texi:11660 msgid "You've been warned! In all the other cases, it's a snappy way to stay on top. We encourage you to submit patches updating the actual package definitions once you have successfully tested an upgrade (@pxref{Contributing})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11347 +#: guix-git/doc/guix.texi:11661 #, no-wrap msgid "test suite, skipping" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11348 +#: guix-git/doc/guix.texi:11662 #, no-wrap msgid "--without-tests=@var{package}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11354 +#: guix-git/doc/guix.texi:11668 msgid "Build @var{package} without running its tests. This can be useful in situations where you want to skip the lengthy test suite of a intermediate package, or if a package's test suite fails in a non-deterministic fashion. It should be used with care because running the test suite is a good way to ensure a package is working as intended." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11358 +#: guix-git/doc/guix.texi:11672 msgid "Turning off tests leads to a different store item. Consequently, when using this option, anything that depends on @var{package} must be rebuilt, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11361 +#: guix-git/doc/guix.texi:11675 #, no-wrap msgid "guix install --without-tests=python python-notebook\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11367 +#: guix-git/doc/guix.texi:11681 msgid "The command above installs @code{python-notebook} on top of @code{python} built without running its test suite. To do so, it also rebuilds everything that depends on @code{python}, including @code{python-notebook} itself." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11373 +#: guix-git/doc/guix.texi:11687 msgid "Internally, @option{--without-tests} relies on changing the @code{#:tests?} option of a package's @code{check} phase (@pxref{Build Systems}). Note that some packages use a customized @code{check} phase that does not respect a @code{#:tests? #f} setting. Therefore, @option{--without-tests} has no effect on these packages." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11380 +#: guix-git/doc/guix.texi:11694 msgid "Wondering how to achieve the same effect using Scheme code, for example in your manifest, or how to write your own package transformation? @xref{Defining Package Variants}, for an overview of the programming interfaces available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11386 +#: guix-git/doc/guix.texi:11700 msgid "The command-line options presented below are specific to @command{guix build}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11389 +#: guix-git/doc/guix.texi:11703 #, no-wrap msgid "--quiet" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11394 +#: guix-git/doc/guix.texi:11708 msgid "Build quietly, without displaying the build log; this is equivalent to @option{--verbosity=0}. Upon completion, the build log is kept in @file{/var} (or similar) and can always be retrieved using the @option{--log-file} option." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11399 +#: guix-git/doc/guix.texi:11713 msgid "Build the package, derivation, or other file-like object that the code within @var{file} evaluates to (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11402 +#: guix-git/doc/guix.texi:11716 msgid "As an example, @var{file} might contain a package definition like this (@pxref{Defining Packages}):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11411 +#: guix-git/doc/guix.texi:11725 msgid "The @var{file} may also contain a JSON representation of one or more package definitions. Running @code{guix build -f} on @file{hello.json} with the following contents would result in building the packages @code{myhello} and @code{greeter}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11416 +#: guix-git/doc/guix.texi:11730 #, no-wrap msgid "--manifest=@var{manifest}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11417 +#: guix-git/doc/guix.texi:11731 #, no-wrap msgid "-m @var{manifest}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11420 +#: guix-git/doc/guix.texi:11734 msgid "Build all packages listed in the given @var{manifest} (@pxref{profile-manifest, @option{--manifest}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11424 +#: guix-git/doc/guix.texi:11738 msgid "Build the package or derivation @var{expr} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11428 +#: guix-git/doc/guix.texi:11742 msgid "For example, @var{expr} may be @code{(@@ (gnu packages guile) guile-1.8)}, which unambiguously designates this specific variant of version 1.8 of Guile." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11432 +#: guix-git/doc/guix.texi:11746 msgid "Alternatively, @var{expr} may be a G-expression, in which case it is used as a build program passed to @code{gexp->derivation} (@pxref{G-Expressions})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11436 +#: guix-git/doc/guix.texi:11750 msgid "Lastly, @var{expr} may refer to a zero-argument monadic procedure (@pxref{The Store Monad}). The procedure must return a derivation as a monadic value, which is then passed through @code{run-with-store}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11437 +#: guix-git/doc/guix.texi:11751 #, no-wrap msgid "--source" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11438 guix-git/doc/guix.texi:11835 +#: guix-git/doc/guix.texi:11752 #, no-wrap msgid "-S" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11441 +#: guix-git/doc/guix.texi:11755 msgid "Build the source derivations of the packages, rather than the packages themselves." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11445 +#: guix-git/doc/guix.texi:11759 msgid "For instance, @code{guix build -S gcc} returns something like @file{/gnu/store/@dots{}-gcc-4.7.2.tar.bz2}, which is the GCC source tarball." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11449 +#: guix-git/doc/guix.texi:11763 msgid "The returned source tarball is the result of applying any patches and code snippets specified in the package @code{origin} (@pxref{Defining Packages})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11450 +#: guix-git/doc/guix.texi:11764 #, no-wrap msgid "source, verification" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11456 +#: guix-git/doc/guix.texi:11770 msgid "As with other derivations, the result of building a source derivation can be verified using the @option{--check} option (@pxref{build-check}). This is useful to validate that a (potentially already built or substituted, thus cached) package source matches against its declared hash." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11461 +#: guix-git/doc/guix.texi:11775 msgid "Note that @command{guix build -S} compiles the sources only of the specified packages. They do not include the sources of statically linked dependencies and by themselves are insufficient for reproducing the packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11462 +#: guix-git/doc/guix.texi:11776 #, no-wrap msgid "--sources" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11469 +#: guix-git/doc/guix.texi:11783 msgid "Fetch and return the source of @var{package-or-derivation} and all their dependencies, recursively. This is a handy way to obtain a local copy of all the source code needed to build @var{packages}, allowing you to eventually build them even without network access. It is an extension of the @option{--source} option and can accept one of the following optional argument values:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11471 guix-git/doc/guix.texi:13252 +#: guix-git/doc/guix.texi:11785 guix-git/doc/guix.texi:13609 #, no-wrap msgid "package" msgstr "꾸러미" #. type: table -#: guix-git/doc/guix.texi:11474 +#: guix-git/doc/guix.texi:11788 msgid "This value causes the @option{--sources} option to behave in the same way as the @option{--source} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11475 guix-git/doc/guix.texi:19682 +#: guix-git/doc/guix.texi:11789 guix-git/doc/guix.texi:20044 #, no-wrap msgid "all" msgstr "전체" #. type: table -#: guix-git/doc/guix.texi:11478 +#: guix-git/doc/guix.texi:11792 msgid "Build the source derivations of all packages, including any source that might be listed as @code{inputs}. This is the default value." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11484 +#: guix-git/doc/guix.texi:11798 #, no-wrap msgid "" "$ guix build --sources tzdata\n" @@ -20820,18 +21362,18 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11486 +#: guix-git/doc/guix.texi:11800 #, no-wrap msgid "transitive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11490 +#: guix-git/doc/guix.texi:11804 msgid "Build the source derivations of all packages, as well of all transitive inputs to the packages. This can be used e.g.@: to prefetch package source for later offline building." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11501 +#: guix-git/doc/guix.texi:11815 #, no-wrap msgid "" "$ guix build --sources=transitive tzdata\n" @@ -20846,146 +21388,146 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11511 +#: guix-git/doc/guix.texi:11825 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of the system type of the build host. The @command{guix build} command allows you to repeat this option several times, in which case it builds for all the specified systems; other commands ignore extraneous @option{-s} options." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11516 +#: guix-git/doc/guix.texi:11830 msgid "The @option{--system} flag is for @emph{native} compilation and must not be confused with cross-compilation. See @option{--target} below for information on cross-compilation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11523 +#: guix-git/doc/guix.texi:11837 msgid "An example use of this is on Linux-based systems, which can emulate different personalities. For instance, passing @option{--system=i686-linux} on an @code{x86_64-linux} system or @option{--system=armhf-linux} on an @code{aarch64-linux} system allows you to build packages in a complete 32-bit environment." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11528 +#: guix-git/doc/guix.texi:11842 msgid "Building for an @code{armhf-linux} system is unconditionally enabled on @code{aarch64-linux} machines, although certain aarch64 chipsets do not allow for this functionality, notably the ThunderX." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11534 +#: guix-git/doc/guix.texi:11848 msgid "Similarly, when transparent emulation with QEMU and @code{binfmt_misc} is enabled (@pxref{Virtualization Services, @code{qemu-binfmt-service-type}}), you can build for any system for which a QEMU @code{binfmt_misc} handler is installed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11538 +#: guix-git/doc/guix.texi:11852 msgid "Builds for a system other than that of the machine you are using can also be offloaded to a remote machine of the right architecture. @xref{Daemon Offload Setup}, for more information on offloading." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11544 +#: guix-git/doc/guix.texi:11858 msgid "Cross-build for @var{triplet}, which must be a valid GNU triplet, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying Target Triplets, GNU configuration triplets,, autoconf, Autoconf})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:11546 +#: guix-git/doc/guix.texi:11860 msgid "build-check" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11547 +#: guix-git/doc/guix.texi:11861 #, no-wrap msgid "determinism, checking" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11548 +#: guix-git/doc/guix.texi:11862 #, no-wrap msgid "reproducibility, checking" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11552 +#: guix-git/doc/guix.texi:11866 msgid "Rebuild @var{package-or-derivation}, which are already available in the store, and raise an error if the build results are not bit-for-bit identical." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11557 +#: guix-git/doc/guix.texi:11871 msgid "This mechanism allows you to check whether previously installed substitutes are genuine (@pxref{Substitutes}), or whether the build result of a package is deterministic. @xref{Invoking guix challenge}, for more background information and tools." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11562 +#: guix-git/doc/guix.texi:11876 #, no-wrap msgid "--repair" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11563 +#: guix-git/doc/guix.texi:11877 #, no-wrap msgid "repairing store items" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11567 +#: guix-git/doc/guix.texi:11881 msgid "Attempt to repair the specified store items, if they are corrupt, by re-downloading or rebuilding them." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11569 +#: guix-git/doc/guix.texi:11883 msgid "This operation is not atomic and thus restricted to @code{root}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11570 +#: guix-git/doc/guix.texi:11884 #, no-wrap msgid "--derivations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11574 +#: guix-git/doc/guix.texi:11888 msgid "Return the derivation paths, not the output paths, of the given packages." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11577 +#: guix-git/doc/guix.texi:11891 #, no-wrap msgid "GC roots, adding" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11578 +#: guix-git/doc/guix.texi:11892 #, no-wrap msgid "garbage collector roots, adding" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11581 guix-git/doc/guix.texi:35312 +#: guix-git/doc/guix.texi:11895 guix-git/doc/guix.texi:35756 msgid "Make @var{file} a symlink to the result, and register it as a garbage collector root." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11587 +#: guix-git/doc/guix.texi:11901 msgid "Consequently, the results of this @command{guix build} invocation are protected from garbage collection until @var{file} is removed. When that option is omitted, build results are eligible for garbage collection as soon as the build completes. @xref{Invoking guix gc}, for more on GC roots." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11588 +#: guix-git/doc/guix.texi:11902 #, no-wrap msgid "--log-file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11589 +#: guix-git/doc/guix.texi:11903 #, no-wrap msgid "build logs, access" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11593 +#: guix-git/doc/guix.texi:11907 msgid "Return the build log file names or URLs for the given @var{package-or-derivation}, or raise an error if build logs are missing." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11596 +#: guix-git/doc/guix.texi:11910 msgid "This works regardless of how packages or derivations are specified. For instance, the following invocations are equivalent:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11602 +#: guix-git/doc/guix.texi:11916 #, no-wrap msgid "" "guix build --log-file $(guix build -d guile)\n" @@ -20995,17 +21537,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11607 +#: guix-git/doc/guix.texi:11921 msgid "If a log is unavailable locally, and unless @option{--no-substitutes} is passed, the command looks for a corresponding log on one of the substitute servers (as specified with @option{--substitute-urls})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11610 +#: guix-git/doc/guix.texi:11924 msgid "So for instance, imagine you want to see the build log of GDB on MIPS, but you are actually on an @code{x86_64} machine:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11614 +#: guix-git/doc/guix.texi:11928 #, no-wrap msgid "" "$ guix build --log-file gdb -s aarch64-linux\n" @@ -21013,33 +21555,33 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11617 +#: guix-git/doc/guix.texi:11931 msgid "You can freely access a huge library of build logs!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11622 +#: guix-git/doc/guix.texi:11936 #, no-wrap msgid "build failures, debugging" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11628 +#: guix-git/doc/guix.texi:11942 msgid "When defining a new package (@pxref{Defining Packages}), you will probably find yourself spending some time debugging and tweaking the build until it succeeds. To do that, you need to operate the build commands yourself in an environment as close as possible to the one the build daemon uses." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11633 +#: guix-git/doc/guix.texi:11947 msgid "To that end, the first thing to do is to use the @option{--keep-failed} or @option{-K} option of @command{guix build}, which will keep the failed build tree in @file{/tmp} or whatever directory you specified as @env{TMPDIR} (@pxref{Common Build Options, @option{--keep-failed}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11639 +#: guix-git/doc/guix.texi:11953 msgid "From there on, you can @command{cd} to the failed build tree and source the @file{environment-variables} file, which contains all the environment variable definitions that were in place when the build failed. So let's say you're debugging a build failure in package @code{foo}; a typical session would look like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11646 +#: guix-git/doc/guix.texi:11960 #, no-wrap msgid "" "$ guix build foo -K\n" @@ -21050,22 +21592,22 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11650 +#: guix-git/doc/guix.texi:11964 msgid "Now, you can invoke commands as if you were the daemon (almost) and troubleshoot your build process." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11656 +#: guix-git/doc/guix.texi:11970 msgid "Sometimes it happens that, for example, a package's tests pass when you run them manually but they fail when the daemon runs them. This can happen because the daemon runs builds in containers where, unlike in our environment above, network access is missing, @file{/bin/sh} does not exist, etc. (@pxref{Build Environment Setup})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11659 +#: guix-git/doc/guix.texi:11973 msgid "In such cases, you may need to run inspect the build process from within a container similar to the one the build daemon creates:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11667 +#: guix-git/doc/guix.texi:11981 #, no-wrap msgid "" "$ guix build -K foo\n" @@ -21077,709 +21619,715 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11676 +#: guix-git/doc/guix.texi:11990 msgid "Here, @command{guix shell -C} creates a container and spawns a new shell in it (@pxref{Invoking guix shell}). The @command{strace gdb} part adds the @command{strace} and @command{gdb} commands to the container, which you may find handy while debugging. The @option{--no-grafts} option makes sure we get the exact same environment, with ungrafted packages (@pxref{Security Updates}, for more info on grafts)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11679 +#: guix-git/doc/guix.texi:11993 msgid "To get closer to a container like that used by the build daemon, we can remove @file{/bin/sh}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11682 +#: guix-git/doc/guix.texi:11996 #, no-wrap msgid "[env]# rm /bin/sh\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11686 +#: guix-git/doc/guix.texi:12000 msgid "(Don't worry, this is harmless: this is all happening in the throw-away container created by @command{guix shell}.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11689 +#: guix-git/doc/guix.texi:12003 msgid "The @command{strace} command is probably not in the search path, but we can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11692 +#: guix-git/doc/guix.texi:12006 #, no-wrap msgid "[env]# $GUIX_ENVIRONMENT/bin/strace -f -o log make check\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11697 +#: guix-git/doc/guix.texi:12011 msgid "In this way, not only you will have reproduced the environment variables the daemon uses, you will also be running the build process in a container similar to the one the daemon uses." msgstr "" #. type: section -#: guix-git/doc/guix.texi:11700 +#: guix-git/doc/guix.texi:12014 #, no-wrap msgid "Invoking @command{guix edit}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:11702 +#: guix-git/doc/guix.texi:12016 #, no-wrap msgid "guix edit" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11703 +#: guix-git/doc/guix.texi:12017 #, no-wrap msgid "package definition, editing" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11708 +#: guix-git/doc/guix.texi:12022 msgid "So many packages, so many source files! The @command{guix edit} command facilitates the life of users and packagers by pointing their editor at the source file containing the definition of the specified packages. For instance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11711 +#: guix-git/doc/guix.texi:12025 #, no-wrap msgid "guix edit gcc@@4.9 vim\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11717 +#: guix-git/doc/guix.texi:12031 msgid "launches the program specified in the @env{VISUAL} or in the @env{EDITOR} environment variable to view the recipe of GCC@tie{}4.9.3 and that of Vim." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11723 +#: guix-git/doc/guix.texi:12037 msgid "If you are using a Guix Git checkout (@pxref{Building from Git}), or have created your own packages on @env{GUIX_PACKAGE_PATH} (@pxref{Package Modules}), you will be able to edit the package recipes. In other cases, you will be able to examine the read-only recipes for packages currently in the store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11728 +#: guix-git/doc/guix.texi:12042 msgid "Instead of @env{GUIX_PACKAGE_PATH}, the command-line option @option{--load-path=@var{directory}} (or in short @option{-L @var{directory}}) allows you to add @var{directory} to the front of the package module search path and so make your own packages visible." msgstr "" #. type: section -#: guix-git/doc/guix.texi:11730 +#: guix-git/doc/guix.texi:12044 #, no-wrap msgid "Invoking @command{guix download}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:11732 +#: guix-git/doc/guix.texi:12046 #, no-wrap msgid "guix download" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11733 +#: guix-git/doc/guix.texi:12047 #, no-wrap msgid "downloading package sources" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11740 +#: guix-git/doc/guix.texi:12054 msgid "When writing a package definition, developers typically need to download a source tarball, compute its SHA256 hash, and write that hash in the package definition (@pxref{Defining Packages}). The @command{guix download} tool helps with this task: it downloads a file from the given URI, adds it to the store, and prints both its file name in the store and its SHA256 hash." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11747 +#: guix-git/doc/guix.texi:12061 msgid "The fact that the downloaded file is added to the store saves bandwidth: when the developer eventually tries to build the newly defined package with @command{guix build}, the source tarball will not have to be downloaded again because it is already in the store. It is also a convenient way to temporarily stash files, which may be deleted eventually (@pxref{Invoking guix gc})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11755 +#: guix-git/doc/guix.texi:12069 msgid "The @command{guix download} command supports the same URIs as used in package definitions. In particular, it supports @code{mirror://} URIs. @code{https} URIs (HTTP over TLS) are supported @emph{provided} the Guile bindings for GnuTLS are available in the user's environment; when they are not available, an error is raised. @xref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11760 +#: guix-git/doc/guix.texi:12074 msgid "@command{guix download} verifies HTTPS server certificates by loading the certificates of X.509 authorities from the directory pointed to by the @env{SSL_CERT_DIR} environment variable (@pxref{X.509 Certificates}), unless @option{--no-check-certificate} is used." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11762 guix-git/doc/guix.texi:13565 +#: guix-git/doc/guix.texi:12076 guix-git/doc/guix.texi:13922 msgid "The following options are available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11764 guix-git/doc/guix.texi:11808 +#: guix-git/doc/guix.texi:12078 guix-git/doc/guix.texi:12122 #, no-wrap msgid "--hash=@var{algorithm}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11765 guix-git/doc/guix.texi:11809 +#: guix-git/doc/guix.texi:12079 guix-git/doc/guix.texi:12123 #, no-wrap msgid "-H @var{algorithm}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11768 +#: guix-git/doc/guix.texi:12082 msgid "Compute a hash using the specified @var{algorithm}. @xref{Invoking guix hash}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11769 guix-git/doc/guix.texi:11818 +#: guix-git/doc/guix.texi:12083 guix-git/doc/guix.texi:12132 #, no-wrap msgid "--format=@var{fmt}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11770 guix-git/doc/guix.texi:11819 +#: guix-git/doc/guix.texi:12084 guix-git/doc/guix.texi:12133 #, no-wrap msgid "-f @var{fmt}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11773 +#: guix-git/doc/guix.texi:12087 msgid "Write the hash in the format specified by @var{fmt}. For more information on the valid values for @var{fmt}, @pxref{Invoking guix hash}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11774 +#: guix-git/doc/guix.texi:12088 #, no-wrap msgid "--no-check-certificate" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11776 +#: guix-git/doc/guix.texi:12090 msgid "Do not validate the X.509 certificates of HTTPS servers." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11780 +#: guix-git/doc/guix.texi:12094 msgid "When using this option, you have @emph{absolutely no guarantee} that you are communicating with the authentic server responsible for the given URL, which makes you vulnerable to ``man-in-the-middle'' attacks." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11781 +#: guix-git/doc/guix.texi:12095 #, no-wrap msgid "--output=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11782 +#: guix-git/doc/guix.texi:12096 #, no-wrap msgid "-o @var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11785 +#: guix-git/doc/guix.texi:12099 msgid "Save the downloaded file to @var{file} instead of adding it to the store." msgstr "" #. type: section -#: guix-git/doc/guix.texi:11788 +#: guix-git/doc/guix.texi:12102 #, no-wrap msgid "Invoking @command{guix hash}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:11790 +#: guix-git/doc/guix.texi:12104 #, no-wrap msgid "guix hash" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11795 +#: guix-git/doc/guix.texi:12109 msgid "The @command{guix hash} command computes the hash of a file. It is primarily a convenience tool for anyone contributing to the distribution: it computes the cryptographic hash of one or more files, which can be used in the definition of a package (@pxref{Defining Packages})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11800 +#: guix-git/doc/guix.texi:12114 #, no-wrap msgid "guix hash @var{option} @var{file} ...\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11805 +#: guix-git/doc/guix.texi:12119 msgid "When @var{file} is @code{-} (a hyphen), @command{guix hash} computes the hash of data read from standard input. @command{guix hash} has the following options:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11812 +#: guix-git/doc/guix.texi:12126 msgid "Compute a hash using the specified @var{algorithm}, @code{sha256} by default." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11817 -msgid "@var{algorithm} must the name of a cryptographic hash algorithm supported by Libgcrypt @i{via} Guile-Gcrypt---e.g., @code{sha512} or @code{sha3-256} (@pxref{Hash Functions,,, guile-gcrypt, Guile-Gcrypt Reference Manual})." +#: guix-git/doc/guix.texi:12131 +msgid "@var{algorithm} must be the name of a cryptographic hash algorithm supported by Libgcrypt @i{via} Guile-Gcrypt---e.g., @code{sha512} or @code{sha3-256} (@pxref{Hash Functions,,, guile-gcrypt, Guile-Gcrypt Reference Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11821 +#: guix-git/doc/guix.texi:12135 msgid "Write the hash in the format specified by @var{fmt}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11824 +#: guix-git/doc/guix.texi:12138 msgid "Supported formats: @code{base64}, @code{nix-base32}, @code{base32}, @code{base16} (@code{hex} and @code{hexadecimal} can be used as well)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11828 +#: guix-git/doc/guix.texi:12142 msgid "If the @option{--format} option is not specified, @command{guix hash} will output the hash in @code{nix-base32}. This representation is used in the definitions of packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11833 -msgid "This option is deprecated in favor of @option{--serializer}. It is a legacy alias for @var{type} sets to @code{nar}." +#: guix-git/doc/guix.texi:12148 +msgid "The @option{--recursive} option is deprecated in favor of @option{--serializer=nar} (see below); @option{-r} remains accepted as a convenient shorthand." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11834 +#: guix-git/doc/guix.texi:12149 #, no-wrap msgid "--serializer=@var{type}" msgstr "" +#. type: itemx +#: guix-git/doc/guix.texi:12150 +#, no-wrap +msgid "-S @var{type}" +msgstr "" + #. type: table -#: guix-git/doc/guix.texi:11837 +#: guix-git/doc/guix.texi:12152 msgid "Compute the hash on @var{file} using @var{type} serialization." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11839 +#: guix-git/doc/guix.texi:12154 msgid "@var{type} may be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11841 guix-git/doc/guix.texi:13918 -#: guix-git/doc/guix.texi:17405 guix-git/doc/guix.texi:19679 +#: guix-git/doc/guix.texi:12156 guix-git/doc/guix.texi:14275 +#: guix-git/doc/guix.texi:17767 guix-git/doc/guix.texi:20041 #, no-wrap msgid "none" msgstr "없음" #. type: table -#: guix-git/doc/guix.texi:11843 +#: guix-git/doc/guix.texi:12158 msgid "This is the default: it computes the hash of a file's contents." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11844 +#: guix-git/doc/guix.texi:12159 #, no-wrap msgid "nar" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11854 -msgid "Compute the hash of a ``normalized archive'' (or ``nar'') containing @var{file}, including its children if it is a directory. Some of the metadata of @var{file} is part of the archive; for instance, when @var{file} is a regular file, the hash is different depending on whether @var{file} is executable or not. Metadata such as time stamps has no impact on the hash (@pxref{Invoking guix archive}, for more info on the nar format)." +#: guix-git/doc/guix.texi:12169 +msgid "Compute the hash of a ``normalized archive'' (or ``nar'') containing @var{file}, including its children if it is a directory. Some of the metadata of @var{file} is part of the archive; for instance, when @var{file} is a regular file, the hash is different depending on whether @var{file} is executable or not. Metadata such as time stamps have no impact on the hash (@pxref{Invoking guix archive}, for more info on the nar format)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11855 +#: guix-git/doc/guix.texi:12170 #, no-wrap msgid "git" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11858 -msgid "Compute the has of the file or directory as a Git ``tree'', following the same method as the Git version control system." +#: guix-git/doc/guix.texi:12173 +msgid "Compute the hash of the file or directory as a Git ``tree'', following the same method as the Git version control system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11860 +#: guix-git/doc/guix.texi:12175 #, no-wrap msgid "--exclude-vcs" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11861 guix-git/doc/guix.texi:13038 +#: guix-git/doc/guix.texi:12176 guix-git/doc/guix.texi:13395 #, no-wrap msgid "-x" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11864 +#: guix-git/doc/guix.texi:12179 msgid "When combined with @option{--recursive}, exclude version control system directories (@file{.bzr}, @file{.git}, @file{.hg}, etc.)." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:11865 +#: guix-git/doc/guix.texi:12180 #, no-wrap msgid "git-fetch" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11869 +#: guix-git/doc/guix.texi:12184 msgid "As an example, here is how you would compute the hash of a Git checkout, which is useful when using the @code{git-fetch} method (@pxref{origin Reference}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11874 +#: guix-git/doc/guix.texi:12189 #, no-wrap msgid "" "$ git clone http://example.org/foo.git\n" "$ cd foo\n" -"$ guix hash -rx .\n" +"$ guix hash -x --serializer=nar .\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11878 guix-git/doc/guix.texi:11883 +#: guix-git/doc/guix.texi:12193 guix-git/doc/guix.texi:12198 #, no-wrap msgid "Invoking @command{guix import}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11880 +#: guix-git/doc/guix.texi:12195 #, no-wrap msgid "importing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11881 +#: guix-git/doc/guix.texi:12196 #, no-wrap msgid "package import" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11882 +#: guix-git/doc/guix.texi:12197 #, no-wrap msgid "package conversion" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11890 +#: guix-git/doc/guix.texi:12205 msgid "The @command{guix import} command is useful for people who would like to add a package to the distribution with as little work as possible---a legitimate demand. The command knows of a few repositories from which it can ``import'' package metadata. The result is a package definition, or a template thereof, in the format we know (@pxref{Defining Packages})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11895 +#: guix-git/doc/guix.texi:12210 #, no-wrap msgid "guix import @var{importer} @var{options}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11900 +#: guix-git/doc/guix.texi:12215 msgid "@var{importer} specifies the source from which to import package metadata, and @var{options} specifies a package identifier and other options specific to @var{importer}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11904 +#: guix-git/doc/guix.texi:12219 msgid "Some of the importers rely on the ability to run the @command{gpgv} command. For these, GnuPG must be installed and in @code{$PATH}; run @code{guix install gnupg} if needed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11906 +#: guix-git/doc/guix.texi:12221 msgid "Currently, the available ``importers'' are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11908 guix-git/doc/guix.texi:12546 +#: guix-git/doc/guix.texi:12223 guix-git/doc/guix.texi:12861 #, no-wrap msgid "gnu" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11912 +#: guix-git/doc/guix.texi:12227 msgid "Import metadata for the given GNU package. This provides a template for the latest version of that GNU package, including the hash of its source tarball, and its canonical synopsis and description." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11915 +#: guix-git/doc/guix.texi:12230 msgid "Additional information such as the package dependencies and its license needs to be figured out manually." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11918 +#: guix-git/doc/guix.texi:12233 msgid "For example, the following command returns a package definition for GNU@tie{}Hello:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11921 +#: guix-git/doc/guix.texi:12236 #, no-wrap msgid "guix import gnu hello\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11924 guix-git/doc/guix.texi:12165 -#: guix-git/doc/guix.texi:12215 guix-git/doc/guix.texi:12244 +#: guix-git/doc/guix.texi:12239 guix-git/doc/guix.texi:12480 +#: guix-git/doc/guix.texi:12530 guix-git/doc/guix.texi:12559 msgid "Specific command-line options are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11926 guix-git/doc/guix.texi:12743 +#: guix-git/doc/guix.texi:12241 guix-git/doc/guix.texi:13058 #, no-wrap msgid "--key-download=@var{policy}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11930 +#: guix-git/doc/guix.texi:12245 msgid "As for @command{guix refresh}, specify the policy to handle missing OpenPGP keys when verifying the package signature. @xref{Invoking guix refresh, @option{--key-download}}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11932 guix-git/doc/guix.texi:11933 -#: guix-git/doc/guix.texi:12570 +#: guix-git/doc/guix.texi:12247 guix-git/doc/guix.texi:12248 +#: guix-git/doc/guix.texi:12885 #, no-wrap msgid "pypi" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11940 +#: guix-git/doc/guix.texi:12255 msgid "Import metadata from the @uref{https://pypi.python.org/, Python Package Index}. Information is taken from the JSON-formatted description available at @code{pypi.python.org} and usually includes all the relevant information, including package dependencies. For maximum efficiency, it is recommended to install the @command{unzip} utility, so that the importer can unzip Python wheels and gather data from them." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11943 +#: guix-git/doc/guix.texi:12258 msgid "The command below imports metadata for the latest version of the @code{itsdangerous} Python package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11946 +#: guix-git/doc/guix.texi:12261 #, no-wrap msgid "guix import pypi itsdangerous\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11949 guix-git/doc/guix.texi:12052 -#: guix-git/doc/guix.texi:12393 +#: guix-git/doc/guix.texi:12264 guix-git/doc/guix.texi:12367 +#: guix-git/doc/guix.texi:12708 msgid "You can also ask for a specific version:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11952 +#: guix-git/doc/guix.texi:12267 #, no-wrap msgid "guix import pypi itsdangerous@@1.1.0\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11960 guix-git/doc/guix.texi:11985 -#: guix-git/doc/guix.texi:12017 guix-git/doc/guix.texi:12188 -#: guix-git/doc/guix.texi:12229 guix-git/doc/guix.texi:12280 -#: guix-git/doc/guix.texi:12305 guix-git/doc/guix.texi:12321 -#: guix-git/doc/guix.texi:12369 guix-git/doc/guix.texi:12405 +#: guix-git/doc/guix.texi:12275 guix-git/doc/guix.texi:12300 +#: guix-git/doc/guix.texi:12332 guix-git/doc/guix.texi:12503 +#: guix-git/doc/guix.texi:12544 guix-git/doc/guix.texi:12595 +#: guix-git/doc/guix.texi:12620 guix-git/doc/guix.texi:12636 +#: guix-git/doc/guix.texi:12684 guix-git/doc/guix.texi:12720 msgid "Traverse the dependency graph of the given upstream package recursively and generate package expressions for all those packages that are not yet in Guix." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11962 guix-git/doc/guix.texi:11963 -#: guix-git/doc/guix.texi:12572 +#: guix-git/doc/guix.texi:12277 guix-git/doc/guix.texi:12278 +#: guix-git/doc/guix.texi:12887 #, no-wrap msgid "gem" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11972 +#: guix-git/doc/guix.texi:12287 msgid "Import metadata from @uref{https://rubygems.org/, RubyGems}. Information is taken from the JSON-formatted description available at @code{rubygems.org} and includes most relevant information, including runtime dependencies. There are some caveats, however. The metadata doesn't distinguish between synopses and descriptions, so the same string is used for both fields. Additionally, the details of non-Ruby dependencies required to build native extensions is unavailable and left as an exercise to the packager." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11974 +#: guix-git/doc/guix.texi:12289 msgid "The command below imports metadata for the @code{rails} Ruby package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11977 +#: guix-git/doc/guix.texi:12292 #, no-wrap msgid "guix import gem rails\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11987 guix-git/doc/guix.texi:11988 +#: guix-git/doc/guix.texi:12302 guix-git/doc/guix.texi:12303 #, no-wrap msgid "minetest" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11989 +#: guix-git/doc/guix.texi:12304 #, fuzzy, no-wrap #| msgid "contents" msgid "ContentDB" msgstr "내용" #. type: table -#: guix-git/doc/guix.texi:11998 +#: guix-git/doc/guix.texi:12313 msgid "Import metadata from @uref{https://content.minetest.net, ContentDB}. Information is taken from the JSON-formatted metadata provided through @uref{https://content.minetest.net/help/api/, ContentDB's API} and includes most relevant information, including dependencies. There are some caveats, however. The license information is often incomplete. The commit hash is sometimes missing. The descriptions are in the Markdown format, but Guix uses Texinfo instead. Texture packs and subgames are unsupported." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12000 +#: guix-git/doc/guix.texi:12315 msgid "The command below imports metadata for the Mesecons mod by Jeija:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12003 +#: guix-git/doc/guix.texi:12318 #, no-wrap msgid "guix import minetest Jeija/mesecons\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12006 +#: guix-git/doc/guix.texi:12321 msgid "The author name can also be left out:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12009 +#: guix-git/doc/guix.texi:12324 #, no-wrap msgid "guix import minetest mesecons\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12019 guix-git/doc/guix.texi:12568 +#: guix-git/doc/guix.texi:12334 guix-git/doc/guix.texi:12883 #, no-wrap msgid "cpan" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12020 +#: guix-git/doc/guix.texi:12335 #, no-wrap msgid "CPAN" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12028 +#: guix-git/doc/guix.texi:12343 msgid "Import metadata from @uref{https://www.metacpan.org/, MetaCPAN}. Information is taken from the JSON-formatted metadata provided through @uref{https://fastapi.metacpan.org/, MetaCPAN's API} and includes most relevant information, such as module dependencies. License information should be checked closely. If Perl is available in the store, then the @code{corelist} utility will be used to filter core modules out of the list of dependencies." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12031 +#: guix-git/doc/guix.texi:12346 msgid "The command command below imports metadata for the Acme::Boolean Perl module:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12034 +#: guix-git/doc/guix.texi:12349 #, no-wrap msgid "guix import cpan Acme::Boolean\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12036 guix-git/doc/guix.texi:12564 +#: guix-git/doc/guix.texi:12351 guix-git/doc/guix.texi:12879 #, no-wrap msgid "cran" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12037 +#: guix-git/doc/guix.texi:12352 #, no-wrap msgid "CRAN" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12038 +#: guix-git/doc/guix.texi:12353 #, no-wrap msgid "Bioconductor" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12042 +#: guix-git/doc/guix.texi:12357 msgid "Import metadata from @uref{https://cran.r-project.org/, CRAN}, the central repository for the @uref{https://r-project.org, GNU@tie{}R statistical and graphical environment}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12044 +#: guix-git/doc/guix.texi:12359 msgid "Information is extracted from the @file{DESCRIPTION} file of the package." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12046 +#: guix-git/doc/guix.texi:12361 msgid "The command command below imports metadata for the Cairo R package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12049 +#: guix-git/doc/guix.texi:12364 #, no-wrap msgid "guix import cran Cairo\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12055 +#: guix-git/doc/guix.texi:12370 #, no-wrap msgid "guix import cran rasterVis@@0.50.3\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12060 +#: guix-git/doc/guix.texi:12375 msgid "When @option{--recursive} is added, the importer will traverse the dependency graph of the given upstream package recursively and generate package expressions for all those packages that are not yet in Guix." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12067 +#: guix-git/doc/guix.texi:12382 msgid "When @option{--style=specification} is added, the importer will generate package definitions whose inputs are package specifications instead of references to package variables. This is useful when generated package definitions are to be appended to existing user modules, as the list of used package modules need not be changed. The default is @option{--style=variable}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12072 +#: guix-git/doc/guix.texi:12387 msgid "When @option{--archive=bioconductor} is added, metadata is imported from @uref{https://www.bioconductor.org/, Bioconductor}, a repository of R packages for the analysis and comprehension of high-throughput genomic data in bioinformatics." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12075 +#: guix-git/doc/guix.texi:12390 msgid "Information is extracted from the @file{DESCRIPTION} file contained in the package archive." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12077 +#: guix-git/doc/guix.texi:12392 msgid "The command below imports metadata for the GenomicRanges R package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12080 +#: guix-git/doc/guix.texi:12395 #, no-wrap msgid "guix import cran --archive=bioconductor GenomicRanges\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12085 +#: guix-git/doc/guix.texi:12400 msgid "Finally, you can also import R packages that have not yet been published on CRAN or Bioconductor as long as they are in a git repository. Use @option{--archive=git} followed by the URL of the git repository:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12088 +#: guix-git/doc/guix.texi:12403 #, no-wrap msgid "guix import cran --archive=git https://github.com/immunogenomics/harmony\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12090 +#: guix-git/doc/guix.texi:12405 #, no-wrap msgid "texlive" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12091 +#: guix-git/doc/guix.texi:12406 #, no-wrap msgid "TeX Live" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12092 +#: guix-git/doc/guix.texi:12407 #, no-wrap msgid "CTAN" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12096 +#: guix-git/doc/guix.texi:12411 msgid "Import TeX package information from the TeX Live package database for TeX packages that are part of the @uref{https://www.tug.org/texlive/, TeX Live distribution}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12101 +#: guix-git/doc/guix.texi:12416 msgid "Information about the package is obtained from the TeX Live package database, a plain text file that is included in the @code{texlive-bin} package. The source code is downloaded from possibly multiple locations in the SVN repository of the Tex Live project." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12104 +#: guix-git/doc/guix.texi:12419 msgid "The command command below imports metadata for the @code{fontspec} TeX package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12107 +#: guix-git/doc/guix.texi:12422 #, no-wrap msgid "guix import texlive fontspec\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12110 +#: guix-git/doc/guix.texi:12425 #, no-wrap msgid "JSON, import" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12113 +#: guix-git/doc/guix.texi:12428 msgid "Import package metadata from a local JSON file. Consider the following example package definition in JSON format:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12126 +#: guix-git/doc/guix.texi:12441 #, no-wrap msgid "" "@{\n" @@ -21796,17 +22344,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12132 +#: guix-git/doc/guix.texi:12447 msgid "The field names are the same as for the @code{} record (@xref{Defining Packages}). References to other packages are provided as JSON lists of quoted package specification strings such as @code{guile} or @code{guile@@2.0}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12135 +#: guix-git/doc/guix.texi:12450 msgid "The importer also supports a more explicit source definition using the common fields for @code{} records:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12148 +#: guix-git/doc/guix.texi:12463 #, no-wrap msgid "" "@{\n" @@ -21823,382 +22371,382 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12152 +#: guix-git/doc/guix.texi:12467 msgid "The command below reads metadata from the JSON file @code{hello.json} and outputs a package expression:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12155 +#: guix-git/doc/guix.texi:12470 #, no-wrap msgid "guix import json hello.json\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12157 guix-git/doc/guix.texi:12158 -#: guix-git/doc/guix.texi:12576 +#: guix-git/doc/guix.texi:12472 guix-git/doc/guix.texi:12473 +#: guix-git/doc/guix.texi:12891 #, no-wrap msgid "hackage" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12163 +#: guix-git/doc/guix.texi:12478 msgid "Import metadata from the Haskell community's central package archive @uref{https://hackage.haskell.org/, Hackage}. Information is taken from Cabal files and includes all the relevant information, including package dependencies." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12167 +#: guix-git/doc/guix.texi:12482 #, no-wrap msgid "--stdin" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12168 +#: guix-git/doc/guix.texi:12483 #, no-wrap msgid "-s" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12170 +#: guix-git/doc/guix.texi:12485 msgid "Read a Cabal file from standard input." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12170 guix-git/doc/guix.texi:12217 +#: guix-git/doc/guix.texi:12485 guix-git/doc/guix.texi:12532 #, no-wrap msgid "--no-test-dependencies" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12173 guix-git/doc/guix.texi:12220 +#: guix-git/doc/guix.texi:12488 guix-git/doc/guix.texi:12535 msgid "Do not include dependencies required only by the test suites." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12173 +#: guix-git/doc/guix.texi:12488 #, no-wrap msgid "--cabal-environment=@var{alist}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12174 +#: guix-git/doc/guix.texi:12489 #, no-wrap msgid "-e @var{alist}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12183 +#: guix-git/doc/guix.texi:12498 msgid "@var{alist} is a Scheme alist defining the environment in which the Cabal conditionals are evaluated. The accepted keys are: @code{os}, @code{arch}, @code{impl} and a string representing the name of a flag. The value associated with a flag has to be either the symbol @code{true} or @code{false}. The value associated with other keys has to conform to the Cabal file format definition. The default value associated with the keys @code{os}, @code{arch} and @code{impl} is @samp{linux}, @samp{x86_64} and @samp{ghc}, respectively." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12193 +#: guix-git/doc/guix.texi:12508 msgid "The command below imports metadata for the latest version of the HTTP Haskell package without including test dependencies and specifying the value of the flag @samp{network-uri} as @code{false}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12196 +#: guix-git/doc/guix.texi:12511 #, no-wrap msgid "guix import hackage -t -e \"'((\\\"network-uri\\\" . false))\" HTTP\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12200 +#: guix-git/doc/guix.texi:12515 msgid "A specific package version may optionally be specified by following the package name by an at-sign and a version number as in the following example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12203 +#: guix-git/doc/guix.texi:12518 #, no-wrap msgid "guix import hackage mtl@@2.1.3.1\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12205 guix-git/doc/guix.texi:12206 -#: guix-git/doc/guix.texi:12578 +#: guix-git/doc/guix.texi:12520 guix-git/doc/guix.texi:12521 +#: guix-git/doc/guix.texi:12893 #, no-wrap msgid "stackage" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12213 +#: guix-git/doc/guix.texi:12528 msgid "The @code{stackage} importer is a wrapper around the @code{hackage} one. It takes a package name, looks up the package version included in a long-term support (LTS) @uref{https://www.stackage.org, Stackage} release and uses the @code{hackage} importer to retrieve its metadata. Note that it is up to you to select an LTS release compatible with the GHC compiler used by Guix." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12220 +#: guix-git/doc/guix.texi:12535 #, no-wrap msgid "--lts-version=@var{version}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12221 +#: guix-git/doc/guix.texi:12536 #, no-wrap msgid "-l @var{version}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12224 +#: guix-git/doc/guix.texi:12539 msgid "@var{version} is the desired LTS release version. If omitted the latest release is used." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12233 +#: guix-git/doc/guix.texi:12548 msgid "The command below imports metadata for the HTTP Haskell package included in the LTS Stackage release version 7.18:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12236 +#: guix-git/doc/guix.texi:12551 #, no-wrap msgid "guix import stackage --lts-version=7.18 HTTP\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12238 guix-git/doc/guix.texi:12239 -#: guix-git/doc/guix.texi:12562 +#: guix-git/doc/guix.texi:12553 guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12877 #, no-wrap msgid "elpa" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12242 +#: guix-git/doc/guix.texi:12557 msgid "Import metadata from an Emacs Lisp Package Archive (ELPA) package repository (@pxref{Packages,,, emacs, The GNU Emacs Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12246 +#: guix-git/doc/guix.texi:12561 #, no-wrap msgid "--archive=@var{repo}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12247 +#: guix-git/doc/guix.texi:12562 #, no-wrap msgid "-a @var{repo}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12251 +#: guix-git/doc/guix.texi:12566 msgid "@var{repo} identifies the archive repository from which to retrieve the information. Currently the supported repositories and their identifiers are:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12255 +#: guix-git/doc/guix.texi:12570 msgid "@uref{https://elpa.gnu.org/packages, GNU}, selected by the @code{gnu} identifier. This is the default." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12261 +#: guix-git/doc/guix.texi:12576 msgid "Packages from @code{elpa.gnu.org} are signed with one of the keys contained in the GnuPG keyring at @file{share/emacs/25.1/etc/package-keyring.gpg} (or similar) in the @code{emacs} package (@pxref{Package Installation, ELPA package signatures,, emacs, The GNU Emacs Manual})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12265 +#: guix-git/doc/guix.texi:12580 msgid "@uref{https://elpa.nongnu.org/nongnu/, NonGNU}, selected by the @code{nongnu} identifier." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12269 +#: guix-git/doc/guix.texi:12584 msgid "@uref{https://stable.melpa.org/packages, MELPA-Stable}, selected by the @code{melpa-stable} identifier." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12273 +#: guix-git/doc/guix.texi:12588 msgid "@uref{https://melpa.org/packages, MELPA}, selected by the @code{melpa} identifier." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12282 guix-git/doc/guix.texi:12283 -#: guix-git/doc/guix.texi:12580 +#: guix-git/doc/guix.texi:12597 guix-git/doc/guix.texi:12598 +#: guix-git/doc/guix.texi:12895 #, no-wrap msgid "crate" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12286 +#: guix-git/doc/guix.texi:12601 msgid "Import metadata from the crates.io Rust package repository @uref{https://crates.io, crates.io}, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12289 +#: guix-git/doc/guix.texi:12604 #, no-wrap msgid "guix import crate blake2-rfc\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12292 +#: guix-git/doc/guix.texi:12607 msgid "The crate importer also allows you to specify a version string:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12295 +#: guix-git/doc/guix.texi:12610 #, no-wrap msgid "guix import crate constant-time-eq@@0.1.0\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12298 guix-git/doc/guix.texi:12314 -#: guix-git/doc/guix.texi:12362 guix-git/doc/guix.texi:12399 +#: guix-git/doc/guix.texi:12613 guix-git/doc/guix.texi:12629 +#: guix-git/doc/guix.texi:12677 guix-git/doc/guix.texi:12714 msgid "Additional options include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12307 +#: guix-git/doc/guix.texi:12622 #, no-wrap msgid "opam" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12308 +#: guix-git/doc/guix.texi:12623 #, no-wrap msgid "OPAM" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12309 +#: guix-git/doc/guix.texi:12624 #, no-wrap msgid "OCaml" msgstr "OCaml" #. type: table -#: guix-git/doc/guix.texi:12312 +#: guix-git/doc/guix.texi:12627 msgid "Import metadata from the @uref{https://opam.ocaml.org/, OPAM} package repository used by the OCaml community." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12321 +#: guix-git/doc/guix.texi:12636 #, no-wrap msgid "--repo" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12325 +#: guix-git/doc/guix.texi:12640 msgid "By default, packages are searched in the official OPAM repository. This option, which can be used more than once, lets you add other repositories which will be searched for packages. It accepts as valid arguments:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12327 +#: guix-git/doc/guix.texi:12642 #, no-wrap msgid "the name of a known repository - can be one of @code{opam}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12330 +#: guix-git/doc/guix.texi:12645 msgid "@code{coq} (equivalent to @code{coq-released}), @code{coq-core-dev}, @code{coq-extra-dev} or @code{grew}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12330 +#: guix-git/doc/guix.texi:12645 #, no-wrap msgid "the URL of a repository as expected by the" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12334 +#: guix-git/doc/guix.texi:12649 msgid "@code{opam repository add} command (for instance, the URL equivalent of the above @code{opam} name would be @uref{https://opam.ocaml.org})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12334 +#: guix-git/doc/guix.texi:12649 #, no-wrap msgid "the path to a local copy of a repository (a directory containing a" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12336 +#: guix-git/doc/guix.texi:12651 msgid "@file{packages/} sub-directory)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12341 +#: guix-git/doc/guix.texi:12656 msgid "Repositories are assumed to be passed to this option by order of preference. The additional repositories will not replace the default @code{opam} repository, which is always kept as a fallback." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12346 +#: guix-git/doc/guix.texi:12661 msgid "Also, please note that versions are not compared across repositories. The first repository (from left to right) that has at least one version of a given package will prevail over any others, and the version imported will be the latest one found @emph{in this repository only}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12349 guix-git/doc/guix.texi:12350 +#: guix-git/doc/guix.texi:12664 guix-git/doc/guix.texi:12665 #, no-wrap msgid "go" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12353 +#: guix-git/doc/guix.texi:12668 msgid "Import metadata for a Go module using @uref{https://proxy.golang.org, proxy.golang.org}." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12356 +#: guix-git/doc/guix.texi:12671 #, no-wrap msgid "guix import go gopkg.in/yaml.v2\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12360 +#: guix-git/doc/guix.texi:12675 msgid "It is possible to use a package specification with a @code{@@VERSION} suffix to import a specific version." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12369 +#: guix-git/doc/guix.texi:12684 #, fuzzy, no-wrap msgid "--pin-versions" msgstr "버전" #. type: table -#: guix-git/doc/guix.texi:12377 +#: guix-git/doc/guix.texi:12692 msgid "When using this option, the importer preserves the exact versions of the Go modules dependencies instead of using their latest available versions. This can be useful when attempting to import packages that recursively depend on former versions of themselves to build. When using this mode, the symbol of the package is made by appending the version to its name, so that multiple versions of the same package can coexist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12379 guix-git/doc/guix.texi:12380 -#: guix-git/doc/guix.texi:12560 +#: guix-git/doc/guix.texi:12694 guix-git/doc/guix.texi:12695 +#: guix-git/doc/guix.texi:12875 #, no-wrap msgid "egg" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12387 +#: guix-git/doc/guix.texi:12702 msgid "Import metadata for @uref{https://wiki.call-cc.org/eggs, CHICKEN eggs}. The information is taken from @file{PACKAGE.egg} files found in the @uref{git://code.call-cc.org/eggs-5-all, eggs-5-all} Git repository. However, it does not provide all the information that we need, there is no ``description'' field, and the licenses used are not always precise (BSD is often used instead of BSD-N)." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12390 +#: guix-git/doc/guix.texi:12705 #, no-wrap msgid "guix import egg sourcehut\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12396 +#: guix-git/doc/guix.texi:12711 #, no-wrap msgid "guix import egg arrays@@1.0\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12411 +#: guix-git/doc/guix.texi:12726 msgid "The structure of the @command{guix import} code is modular. It would be useful to have more importers for other package formats, and your help is welcome here (@pxref{Contributing})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:12413 +#: guix-git/doc/guix.texi:12728 #, no-wrap msgid "Invoking @command{guix refresh}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:12415 +#: guix-git/doc/guix.texi:12730 #, no-wrap msgid "guix refresh" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12423 +#: guix-git/doc/guix.texi:12738 msgid "The primary audience of the @command{guix refresh} command is packagers. As a user, you may be interested in the @option{--with-latest} option, which can bring you package update superpowers built upon @command{guix refresh} (@pxref{Package Transformation Options, @option{--with-latest}}). By default, @command{guix refresh} reports any packages provided by the distribution that are outdated compared to the latest upstream version, like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12428 +#: guix-git/doc/guix.texi:12743 #, no-wrap msgid "" "$ guix refresh\n" @@ -22207,12 +22755,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12432 +#: guix-git/doc/guix.texi:12747 msgid "Alternatively, one can specify packages to consider, in which case a warning is emitted for packages that lack an updater:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12437 +#: guix-git/doc/guix.texi:12752 #, no-wrap msgid "" "$ guix refresh coreutils guile guile-ssh\n" @@ -22221,17 +22769,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12446 +#: guix-git/doc/guix.texi:12761 msgid "@command{guix refresh} browses the upstream repository of each package and determines the highest version number of the releases therein. The command knows how to update specific types of packages: GNU packages, ELPA packages, etc.---see the documentation for @option{--type} below. There are many packages, though, for which it lacks a method to determine whether a new upstream release is available. However, the mechanism is extensible, so feel free to get in touch with us to add a new method!" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12451 +#: guix-git/doc/guix.texi:12766 msgid "Consider the packages specified, and all the packages upon which they depend." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12459 +#: guix-git/doc/guix.texi:12774 #, no-wrap msgid "" "$ guix refresh --recursive coreutils\n" @@ -22249,12 +22797,12 @@ msgstr "" "@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:12467 +#: guix-git/doc/guix.texi:12782 msgid "Sometimes the upstream name differs from the package name used in Guix, and @command{guix refresh} needs a little help. Most updaters honor the @code{upstream-name} property in package definitions, which can be used to that effect:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12474 +#: guix-git/doc/guix.texi:12789 #, no-wrap msgid "" "(define-public network-manager\n" @@ -22270,325 +22818,325 @@ msgstr "" " (properties '((upstream-name . \"NetworkManager\")))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:12483 +#: guix-git/doc/guix.texi:12798 msgid "When passed @option{--update}, it modifies distribution source files to update the version numbers and source tarball hashes of those package recipes (@pxref{Defining Packages}). This is achieved by downloading each package's latest source tarball and its associated OpenPGP signature, authenticating the downloaded tarball against its signature using @command{gpgv}, and finally computing its hash---note that GnuPG must be installed and in @code{$PATH}; run @code{guix install gnupg} if needed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12489 +#: guix-git/doc/guix.texi:12804 msgid "When the public key used to sign the tarball is missing from the user's keyring, an attempt is made to automatically retrieve it from a public key server; when this is successful, the key is added to the user's keyring; otherwise, @command{guix refresh} reports an error." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12491 +#: guix-git/doc/guix.texi:12806 msgid "The following options are supported:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12499 guix-git/doc/guix.texi:13447 +#: guix-git/doc/guix.texi:12814 guix-git/doc/guix.texi:13804 msgid "This is useful to precisely refer to a package, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12502 +#: guix-git/doc/guix.texi:12817 #, no-wrap msgid "guix refresh -l -e '(@@@@ (gnu packages commencement) glibc-final)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12506 +#: guix-git/doc/guix.texi:12821 msgid "This command lists the dependents of the ``final'' libc (essentially all the packages)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12507 +#: guix-git/doc/guix.texi:12822 #, no-wrap msgid "--update" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12508 +#: guix-git/doc/guix.texi:12823 #, no-wrap msgid "-u" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12512 +#: guix-git/doc/guix.texi:12827 msgid "Update distribution source files (package recipes) in place. This is usually run from a checkout of the Guix source tree (@pxref{Running Guix Before It Is Installed}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12515 +#: guix-git/doc/guix.texi:12830 #, no-wrap msgid "$ ./pre-inst-env guix refresh -s non-core -u\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12518 +#: guix-git/doc/guix.texi:12833 msgid "@xref{Defining Packages}, for more information on package definitions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12519 +#: guix-git/doc/guix.texi:12834 #, no-wrap msgid "--select=[@var{subset}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12520 +#: guix-git/doc/guix.texi:12835 #, no-wrap msgid "-s @var{subset}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12523 +#: guix-git/doc/guix.texi:12838 msgid "Select all the packages in @var{subset}, one of @code{core} or @code{non-core}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12530 +#: guix-git/doc/guix.texi:12845 msgid "The @code{core} subset refers to all the packages at the core of the distribution---i.e., packages that are used to build ``everything else''. This includes GCC, libc, Binutils, Bash, etc. Usually, changing one of these packages in the distribution entails a rebuild of all the others. Thus, such updates are an inconvenience to users in terms of build time or bandwidth used to achieve the upgrade." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12534 +#: guix-git/doc/guix.texi:12849 msgid "The @code{non-core} subset refers to the remaining packages. It is typically useful in cases where an update of the core packages would be inconvenient." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12539 +#: guix-git/doc/guix.texi:12854 msgid "Select all the packages from the manifest in @var{file}. This is useful to check if any packages of the user manifest can be updated." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12540 +#: guix-git/doc/guix.texi:12855 #, no-wrap msgid "--type=@var{updater}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12541 +#: guix-git/doc/guix.texi:12856 #, no-wrap msgid "-t @var{updater}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12544 +#: guix-git/doc/guix.texi:12859 msgid "Select only packages handled by @var{updater} (may be a comma-separated list of updaters). Currently, @var{updater} may be one of:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12548 +#: guix-git/doc/guix.texi:12863 msgid "the updater for GNU packages;" msgstr "GNU 꾸러미를 위한 업데이터;" #. type: item -#: guix-git/doc/guix.texi:12548 +#: guix-git/doc/guix.texi:12863 #, no-wrap msgid "savannah" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12550 +#: guix-git/doc/guix.texi:12865 msgid "the updater for packages hosted at @uref{https://savannah.gnu.org, Savannah};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12550 +#: guix-git/doc/guix.texi:12865 #, fuzzy, no-wrap msgid "sourceforge" msgstr "소스" #. type: table -#: guix-git/doc/guix.texi:12552 +#: guix-git/doc/guix.texi:12867 msgid "the updater for packages hosted at @uref{https://sourceforge.net, SourceForge};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12552 +#: guix-git/doc/guix.texi:12867 #, no-wrap msgid "gnome" msgstr "그놈(Gnome)" #. type: table -#: guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12869 msgid "the updater for GNOME packages;" msgstr "그놈(Gnome) 꾸러미를 위한 업데이터;" #. type: item -#: guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12869 #, no-wrap msgid "kde" msgstr "kde" #. type: table -#: guix-git/doc/guix.texi:12556 +#: guix-git/doc/guix.texi:12871 msgid "the updater for KDE packages;" msgstr "KDE 꾸러미를 위한 업데이터;" #. type: item -#: guix-git/doc/guix.texi:12556 +#: guix-git/doc/guix.texi:12871 #, no-wrap msgid "xorg" msgstr "xorg" #. type: table -#: guix-git/doc/guix.texi:12558 +#: guix-git/doc/guix.texi:12873 msgid "the updater for X.org packages;" msgstr "X.org 꾸러미를 위한 업데이터;" #. type: item -#: guix-git/doc/guix.texi:12558 +#: guix-git/doc/guix.texi:12873 #, no-wrap msgid "kernel.org" msgstr "kernel.org" #. type: table -#: guix-git/doc/guix.texi:12560 +#: guix-git/doc/guix.texi:12875 msgid "the updater for packages hosted on kernel.org;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12562 +#: guix-git/doc/guix.texi:12877 msgid "the updater for @uref{https://wiki.call-cc.org/eggs/, Egg} packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12564 +#: guix-git/doc/guix.texi:12879 msgid "the updater for @uref{https://elpa.gnu.org/, ELPA} packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12566 +#: guix-git/doc/guix.texi:12881 msgid "the updater for @uref{https://cran.r-project.org/, CRAN} packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12566 +#: guix-git/doc/guix.texi:12881 #, no-wrap msgid "bioconductor" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12568 +#: guix-git/doc/guix.texi:12883 msgid "the updater for @uref{https://www.bioconductor.org/, Bioconductor} R packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12570 +#: guix-git/doc/guix.texi:12885 msgid "the updater for @uref{https://www.cpan.org/, CPAN} packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12572 +#: guix-git/doc/guix.texi:12887 msgid "the updater for @uref{https://pypi.python.org, PyPI} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12574 +#: guix-git/doc/guix.texi:12889 msgid "the updater for @uref{https://rubygems.org, RubyGems} packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12574 +#: guix-git/doc/guix.texi:12889 #, no-wrap msgid "github" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12576 +#: guix-git/doc/guix.texi:12891 msgid "the updater for @uref{https://github.com, GitHub} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12578 +#: guix-git/doc/guix.texi:12893 msgid "the updater for @uref{https://hackage.haskell.org, Hackage} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12580 +#: guix-git/doc/guix.texi:12895 msgid "the updater for @uref{https://www.stackage.org, Stackage} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12582 +#: guix-git/doc/guix.texi:12897 msgid "the updater for @uref{https://crates.io, Crates} packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12582 +#: guix-git/doc/guix.texi:12897 #, no-wrap msgid "launchpad" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12584 +#: guix-git/doc/guix.texi:12899 msgid "the updater for @uref{https://launchpad.net, Launchpad} packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12584 +#: guix-git/doc/guix.texi:12899 #, no-wrap msgid "generic-html" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12587 +#: guix-git/doc/guix.texi:12902 msgid "a generic updater that crawls the HTML page where the source tarball of the package is hosted, when applicable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12588 +#: guix-git/doc/guix.texi:12903 #, no-wrap msgid "generic-git" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12593 +#: guix-git/doc/guix.texi:12908 msgid "a generic updater for packages hosted on Git repositories. It tries to be smart about parsing Git tag names, but if it is not able to parse the tag name and compare tags correctly, users can define the following properties for a package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12595 +#: guix-git/doc/guix.texi:12910 #, no-wrap msgid "@code{release-tag-prefix}: a regular expression for matching a prefix of" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12597 guix-git/doc/guix.texi:12600 +#: guix-git/doc/guix.texi:12912 guix-git/doc/guix.texi:12915 msgid "the tag name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12598 +#: guix-git/doc/guix.texi:12913 #, no-wrap msgid "@code{release-tag-suffix}: a regular expression for matching a suffix of" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12601 +#: guix-git/doc/guix.texi:12916 #, no-wrap msgid "@code{release-tag-version-delimiter}: a string used as the delimiter in" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12603 +#: guix-git/doc/guix.texi:12918 msgid "the tag name for separating the numbers of the version." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12604 +#: guix-git/doc/guix.texi:12919 #, no-wrap msgid "@code{accept-pre-releases}: by default, the updater will ignore" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12607 +#: guix-git/doc/guix.texi:12922 msgid "pre-releases; to make it also look for pre-releases, set the this property to @code{#t}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12618 +#: guix-git/doc/guix.texi:12933 #, no-wrap msgid "" "(package\n" @@ -22601,12 +23149,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12625 +#: guix-git/doc/guix.texi:12940 msgid "For instance, the following command only checks for updates of Emacs packages hosted at @code{elpa.gnu.org} and for updates of CRAN packages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12630 +#: guix-git/doc/guix.texi:12945 #, no-wrap msgid "" "$ guix refresh --type=elpa,cran\n" @@ -22618,45 +23166,45 @@ msgstr "" "gnu/packages/emacs.scm:856:13: emacs-auctex would be upgraded from 11.88.6 to 11.88.9\n" #. type: item -#: guix-git/doc/guix.texi:12632 +#: guix-git/doc/guix.texi:12947 #, no-wrap msgid "--list-updaters" msgstr "--list-updaters" #. type: itemx -#: guix-git/doc/guix.texi:12633 +#: guix-git/doc/guix.texi:12948 #, no-wrap msgid "-L" msgstr "-L" #. type: table -#: guix-git/doc/guix.texi:12635 +#: guix-git/doc/guix.texi:12950 msgid "List available updaters and exit (see @option{--type} above)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12638 +#: guix-git/doc/guix.texi:12953 msgid "For each updater, display the fraction of packages it covers; at the end, display the fraction of packages covered by all these updaters." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12642 +#: guix-git/doc/guix.texi:12957 msgid "In addition, @command{guix refresh} can be passed one or more package names, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12645 +#: guix-git/doc/guix.texi:12960 #, no-wrap msgid "$ ./pre-inst-env guix refresh -u emacs idutils gcc@@4.8\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12652 +#: guix-git/doc/guix.texi:12967 msgid "The command above specifically updates the @code{emacs} and @code{idutils} packages. The @option{--select} option would have no effect in this case. You might also want to update definitions that correspond to the packages installed in your profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12656 +#: guix-git/doc/guix.texi:12971 #, no-wrap msgid "" "$ ./pre-inst-env guix refresh -u \\\n" @@ -22664,39 +23212,39 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12662 +#: guix-git/doc/guix.texi:12977 msgid "When considering whether to upgrade a package, it is sometimes convenient to know which packages would be affected by the upgrade and should be checked for compatibility. For this the following option may be used when passing @command{guix refresh} one or more package names:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12665 +#: guix-git/doc/guix.texi:12980 #, no-wrap msgid "--list-dependent" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12666 guix-git/doc/guix.texi:13028 +#: guix-git/doc/guix.texi:12981 guix-git/doc/guix.texi:13385 #, no-wrap msgid "-l" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12669 +#: guix-git/doc/guix.texi:12984 msgid "List top-level dependent packages that would need to be rebuilt as a result of upgrading one or more packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12673 +#: guix-git/doc/guix.texi:12988 msgid "@xref{Invoking guix graph, the @code{reverse-package} type of @command{guix graph}}, for information on how to visualize the list of dependents of a package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12679 +#: guix-git/doc/guix.texi:12994 msgid "Be aware that the @option{--list-dependent} option only @emph{approximates} the rebuilds that would be required as a result of an upgrade. More rebuilds might be required under some circumstances." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12684 +#: guix-git/doc/guix.texi:12999 #, no-wrap msgid "" "$ guix refresh --list-dependent flex\n" @@ -22705,23 +23253,23 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12688 +#: guix-git/doc/guix.texi:13003 msgid "The command above lists a set of packages that could be built to check for compatibility with an upgraded @code{flex} package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12691 +#: guix-git/doc/guix.texi:13006 #, no-wrap msgid "--list-transitive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12693 +#: guix-git/doc/guix.texi:13008 msgid "List all the packages which one or more packages depend upon." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12698 +#: guix-git/doc/guix.texi:13013 #, no-wrap msgid "" "$ guix refresh --list-transitive flex\n" @@ -22730,60 +23278,60 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12704 +#: guix-git/doc/guix.texi:13019 msgid "The command above lists a set of packages which, when changed, would cause @code{flex} to be rebuilt." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12706 +#: guix-git/doc/guix.texi:13021 msgid "The following options can be used to customize GnuPG operation:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12709 +#: guix-git/doc/guix.texi:13024 #, no-wrap msgid "--gpg=@var{command}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12712 +#: guix-git/doc/guix.texi:13027 msgid "Use @var{command} as the GnuPG 2.x command. @var{command} is searched for in @code{$PATH}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12713 +#: guix-git/doc/guix.texi:13028 #, no-wrap msgid "--keyring=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12719 +#: guix-git/doc/guix.texi:13034 msgid "Use @var{file} as the keyring for upstream keys. @var{file} must be in the @dfn{keybox format}. Keybox files usually have a name ending in @file{.kbx} and the GNU@tie{}Privacy Guard (GPG) can manipulate these files (@pxref{kbxutil, @command{kbxutil},, gnupg, Using the GNU Privacy Guard}, for information on a tool to manipulate keybox files)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12725 +#: guix-git/doc/guix.texi:13040 msgid "When this option is omitted, @command{guix refresh} uses @file{~/.config/guix/upstream/trustedkeys.kbx} as the keyring for upstream signing keys. OpenPGP signatures are checked against keys from this keyring; missing keys are downloaded to this keyring as well (see @option{--key-download} below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12728 +#: guix-git/doc/guix.texi:13043 msgid "You can export keys from your default GPG keyring into a keybox file using commands like this one:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12731 +#: guix-git/doc/guix.texi:13046 #, no-wrap msgid "gpg --export rms@@gnu.org | kbxutil --import-openpgp >> mykeyring.kbx\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12734 +#: guix-git/doc/guix.texi:13049 msgid "Likewise, you can fetch keys to a specific keybox file like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12738 +#: guix-git/doc/guix.texi:13053 #, no-wrap msgid "" "gpg --no-default-keyring --keyring mykeyring.kbx \\\n" @@ -22791,84 +23339,94 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12742 +#: guix-git/doc/guix.texi:13057 msgid "@xref{GPG Configuration Options, @option{--keyring},, gnupg, Using the GNU Privacy Guard}, for more information on GPG's @option{--keyring} option." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12746 +#: guix-git/doc/guix.texi:13061 msgid "Handle missing OpenPGP keys according to @var{policy}, which may be one of:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12748 guix-git/doc/guix.texi:12871 -#: guix-git/doc/guix.texi:22249 +#: guix-git/doc/guix.texi:13063 guix-git/doc/guix.texi:13228 +#: guix-git/doc/guix.texi:22611 #, no-wrap msgid "always" msgstr "항상" #. type: table -#: guix-git/doc/guix.texi:12751 +#: guix-git/doc/guix.texi:13066 msgid "Always download missing OpenPGP keys from the key server, and add them to the user's GnuPG keyring." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12752 guix-git/doc/guix.texi:22251 +#: guix-git/doc/guix.texi:13067 guix-git/doc/guix.texi:22613 #, no-wrap msgid "never" msgstr "하지 않기" #. type: table -#: guix-git/doc/guix.texi:12754 +#: guix-git/doc/guix.texi:13069 msgid "Never try to download missing OpenPGP keys. Instead just bail out." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12755 +#: guix-git/doc/guix.texi:13070 #, no-wrap msgid "interactive" -msgstr "" +msgstr "interactive" #. type: table -#: guix-git/doc/guix.texi:12758 +#: guix-git/doc/guix.texi:13073 msgid "When a package signed with an unknown OpenPGP key is encountered, ask the user whether to download it or not. This is the default behavior." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12760 +#: guix-git/doc/guix.texi:13075 #, no-wrap msgid "--key-server=@var{host}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12762 +#: guix-git/doc/guix.texi:13077 msgid "Use @var{host} as the OpenPGP key server when importing a public key." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12782 +#: guix-git/doc/guix.texi:13097 msgid "The @code{github} updater uses the @uref{https://developer.github.com/v3/, GitHub API} to query for new releases. When used repeatedly e.g.@: when refreshing all packages, GitHub will eventually refuse to answer any further API requests. By default 60 API requests per hour are allowed, and a full refresh on all GitHub packages in Guix requires more than this. Authentication with GitHub through the use of an API token alleviates these limits. To use an API token, set the environment variable @env{GUIX_GITHUB_TOKEN} to a token procured from @uref{https://github.com/settings/tokens} or otherwise." msgstr "" #. type: section -#: guix-git/doc/guix.texi:12785 +#: guix-git/doc/guix.texi:13100 #, fuzzy, no-wrap #| msgid "Invoking guix-daemon" msgid "Invoking @command{guix style}" msgstr "guix-데몬 호출하기" #. type: Plain text -#: guix-git/doc/guix.texi:12791 -msgid "The @command{guix style} command helps packagers style their package definitions according to the latest fashionable trends. The command currently focuses on one aspect: the style of package inputs. It may eventually be extended to handle other stylistic matters." +#: guix-git/doc/guix.texi:13105 +msgid "The @command{guix style} command helps packagers style their package definitions according to the latest fashionable trends. The command currently provides the following styling rules:" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix.texi:13110 +msgid "formatting package definitions according to the project's conventions (@pxref{Formatting Code});" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix.texi:13113 +msgid "rewriting package inputs to the ``new style'', as explained below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12796 +#: guix-git/doc/guix.texi:13119 msgid "The way package inputs are written is going through a transition (@pxref{package Reference}, for more on package inputs). Until version 1.3.0, package inputs were written using the ``old style'', where each input was given an explicit label, most of the time the package name:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12803 +#: guix-git/doc/guix.texi:13126 #, no-wrap msgid "" "(package\n" @@ -22879,12 +23437,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12807 +#: guix-git/doc/guix.texi:13130 msgid "Today, the old style is deprecated and the preferred style looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12813 +#: guix-git/doc/guix.texi:13136 #, no-wrap msgid "" "(package\n" @@ -22894,269 +23452,331 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12818 +#: guix-git/doc/guix.texi:13141 msgid "Likewise, uses of @code{alist-delete} and friends to manipulate inputs is now deprecated in favor of @code{modify-inputs} (@pxref{Defining Package Variants}, for more info on @code{modify-inputs})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12823 -msgid "In the vast majority of cases, this is a purely mechanical change on the surface syntax that does not even incur a package rebuild. Running @command{guix style} can do that for you, whether you're working on packages in Guix proper or in an external channel." +#: guix-git/doc/guix.texi:13146 +msgid "In the vast majority of cases, this is a purely mechanical change on the surface syntax that does not even incur a package rebuild. Running @command{guix style -S inputs} can do that for you, whether you're working on packages in Guix proper or in an external channel." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12828 +#: guix-git/doc/guix.texi:13151 #, no-wrap msgid "guix style [@var{options}] @var{package}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12834 -msgid "This causes @command{guix style} to analyze and rewrite the definition of @var{package}@dots{}. It does so in a conservative way: preserving comments and bailing out if it cannot make sense of the code that appears in an inputs field. The available options are listed below." +#: guix-git/doc/guix.texi:13158 +msgid "This causes @command{guix style} to analyze and rewrite the definition of @var{package}@dots{} or, when @var{package} is omitted, of @emph{all} the packages. The @option{--styling} or @option{-S} option allows you to select the style rule, the default rule being @code{format}---see below." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:13160 guix-git/doc/guix.texi:14479 +msgid "The available options are listed below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12839 +#: guix-git/doc/guix.texi:13165 msgid "Show source file locations that would be edited but do not modify them." msgstr "" +#. type: item +#: guix-git/doc/guix.texi:13166 +#, no-wrap +msgid "--styling=@var{rule}" +msgstr "" + +#. type: itemx +#: guix-git/doc/guix.texi:13167 +#, no-wrap +msgid "-S @var{rule}" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:13169 +msgid "Apply @var{rule}, one of the following styling rules:" +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:13171 +#, no-wrap +msgid "format" +msgstr "포맷" + +#. type: table +#: guix-git/doc/guix.texi:13176 +msgid "Format the given package definition(s)---this is the default styling rule. For example, a packager running Guix on a checkout (@pxref{Running Guix Before It Is Installed}) might want to reformat the definition of the Coreutils package like so:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:13179 +#, fuzzy, no-wrap +#| msgid "./pre-inst-env guix build guix\n" +msgid "./pre-inst-env guix style coreutils\n" +msgstr "./pre-inst-env guix build guix\n" + +#. type: item +#: guix-git/doc/guix.texi:13181 +#, no-wrap +msgid "inputs" +msgstr "입력" + +#. type: table +#: guix-git/doc/guix.texi:13185 +msgid "Rewrite package inputs to the ``new style'', as described above. This is how you would rewrite inputs of package @code{whatnot} in your own channel:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:13188 +#, no-wrap +msgid "guix style -L ~/my/channel -S inputs whatnot\n" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:13194 +msgid "Rewriting is done in a conservative way: preserving comments and bailing out if it cannot make sense of the code that appears in an inputs field. The @option{--input-simplification} option described below provides fine-grain control over when inputs should be simplified." +msgstr "" + #. type: table -#: guix-git/doc/guix.texi:12848 +#: guix-git/doc/guix.texi:13204 msgid "Style the package @var{expr} evaluates to." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12853 +#: guix-git/doc/guix.texi:13209 #, no-wrap msgid "guix style -e '(@@ (gnu packages gcc) gcc-5)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12856 +#: guix-git/doc/guix.texi:13212 #, fuzzy #| msgid "Updating the Guix package definition." msgid "styles the @code{gcc-5} package definition." msgstr "Guix 꾸러미 확인 최신화하기." #. type: item -#: guix-git/doc/guix.texi:12857 +#: guix-git/doc/guix.texi:13213 #, no-wrap msgid "--input-simplification=@var{policy}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12861 -msgid "Specify the package input simplification policy for cases where an input label does not match the corresponding package name. @var{policy} may be one of the following:" +#: guix-git/doc/guix.texi:13218 +msgid "When using the @code{inputs} styling rule, with @samp{-S inputs}, this option specifies the package input simplification policy for cases where an input label does not match the corresponding package name. @var{policy} may be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12863 +#: guix-git/doc/guix.texi:13220 #, no-wrap msgid "silent" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12866 +#: guix-git/doc/guix.texi:13223 msgid "Simplify inputs only when the change is ``silent'', meaning that the package does not need to be rebuilt (its derivation is unchanged)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12867 +#: guix-git/doc/guix.texi:13224 #, no-wrap msgid "safe" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12870 +#: guix-git/doc/guix.texi:13227 msgid "Simplify inputs only when that is ``safe'' to do: the package might need to be rebuilt, but the change is known to have no observable effect." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12874 +#: guix-git/doc/guix.texi:13231 msgid "Simplify inputs even when input labels do not match package names, and even if that might have an observable effect." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12878 +#: guix-git/doc/guix.texi:13235 msgid "The default is @code{silent}, meaning that input simplifications do not trigger any package rebuild." msgstr "" #. type: section -#: guix-git/doc/guix.texi:12881 +#: guix-git/doc/guix.texi:13238 #, no-wrap msgid "Invoking @command{guix lint}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:12883 +#: guix-git/doc/guix.texi:13240 #, no-wrap msgid "guix lint" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12884 +#: guix-git/doc/guix.texi:13241 #, no-wrap msgid "package, checking for errors" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12890 +#: guix-git/doc/guix.texi:13247 msgid "The @command{guix lint} command is meant to help package developers avoid common errors and use a consistent style. It runs a number of checks on a given set of packages in order to find common mistakes in their definitions. Available @dfn{checkers} include (see @option{--list-checkers} for a complete list):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12896 +#: guix-git/doc/guix.texi:13253 msgid "Validate certain typographical and stylistic rules about package descriptions and synopses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12897 +#: guix-git/doc/guix.texi:13254 #, no-wrap msgid "inputs-should-be-native" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12899 +#: guix-git/doc/guix.texi:13256 msgid "Identify inputs that should most likely be native inputs." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12902 +#: guix-git/doc/guix.texi:13259 #, no-wrap msgid "mirror-url" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12903 +#: guix-git/doc/guix.texi:13260 #, no-wrap msgid "github-url" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12904 +#: guix-git/doc/guix.texi:13261 #, no-wrap msgid "source-file-name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12911 +#: guix-git/doc/guix.texi:13268 msgid "Probe @code{home-page} and @code{source} URLs and report those that are invalid. Suggest a @code{mirror://} URL when applicable. If the @code{source} URL redirects to a GitHub URL, recommend usage of the GitHub URL@. Check that the source file name is meaningful, e.g.@: is not just a version number or ``git-checkout'', without a declared @code{file-name} (@pxref{origin Reference})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12912 +#: guix-git/doc/guix.texi:13269 #, no-wrap msgid "source-unstable-tarball" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12916 +#: guix-git/doc/guix.texi:13273 msgid "Parse the @code{source} URL to determine if a tarball from GitHub is autogenerated or if it is a release tarball. Unfortunately GitHub's autogenerated tarballs are sometimes regenerated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12920 +#: guix-git/doc/guix.texi:13277 msgid "Check that the derivation of the given packages can be successfully computed for all the supported systems (@pxref{Derivations})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12921 +#: guix-git/doc/guix.texi:13278 #, no-wrap msgid "profile-collisions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12927 +#: guix-git/doc/guix.texi:13284 msgid "Check whether installing the given packages in a profile would lead to collisions. Collisions occur when several packages with the same name but a different version or a different store file name are propagated. @xref{package Reference, @code{propagated-inputs}}, for more information on propagated inputs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12928 +#: guix-git/doc/guix.texi:13285 #, no-wrap msgid "archival" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12929 +#: guix-git/doc/guix.texi:13286 #, no-wrap msgid "Software Heritage, source code archive" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12930 +#: guix-git/doc/guix.texi:13287 #, no-wrap msgid "archival of source code, Software Heritage" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12933 +#: guix-git/doc/guix.texi:13290 msgid "Checks whether the package's source code is archived at @uref{https://www.softwareheritage.org, Software Heritage}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12941 +#: guix-git/doc/guix.texi:13298 msgid "When the source code that is not archived comes from a version-control system (VCS)---e.g., it's obtained with @code{git-fetch}, send Software Heritage a ``save'' request so that it eventually archives it. This ensures that the source will remain available in the long term, and that Guix can fall back to Software Heritage should the source code disappear from its original host. The status of recent ``save'' requests can be @uref{https://archive.softwareheritage.org/save/#requests, viewed on-line}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12946 +#: guix-git/doc/guix.texi:13303 msgid "When source code is a tarball obtained with @code{url-fetch}, simply print a message when it is not archived. As of this writing, Software Heritage does not allow requests to save arbitrary tarballs; we are working on ways to ensure that non-VCS source code is also archived." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12952 +#: guix-git/doc/guix.texi:13309 msgid "Software Heritage @uref{https://archive.softwareheritage.org/api/#rate-limiting, limits the request rate per IP address}. When the limit is reached, @command{guix lint} prints a message and the @code{archival} checker stops doing anything until that limit has been reset." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12953 +#: guix-git/doc/guix.texi:13310 #, no-wrap msgid "cve" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12954 guix-git/doc/guix.texi:37946 +#: guix-git/doc/guix.texi:13311 guix-git/doc/guix.texi:38435 #, no-wrap msgid "security vulnerabilities" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12955 +#: guix-git/doc/guix.texi:13312 #, no-wrap msgid "CVE, Common Vulnerabilities and Exposures" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12960 +#: guix-git/doc/guix.texi:13317 msgid "Report known vulnerabilities found in the Common Vulnerabilities and Exposures (CVE) databases of the current and past year @uref{https://nvd.nist.gov/vuln/data-feeds, published by the US NIST}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12962 +#: guix-git/doc/guix.texi:13319 msgid "To view information about a particular vulnerability, visit pages such as:" msgstr "" #. type: indicateurl{#1} -#: guix-git/doc/guix.texi:12966 +#: guix-git/doc/guix.texi:13323 msgid "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-YYYY-ABCD" msgstr "" #. type: indicateurl{#1} -#: guix-git/doc/guix.texi:12968 +#: guix-git/doc/guix.texi:13325 msgid "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-YYYY-ABCD" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12973 +#: guix-git/doc/guix.texi:13330 msgid "where @code{CVE-YYYY-ABCD} is the CVE identifier---e.g., @code{CVE-2015-7554}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12978 +#: guix-git/doc/guix.texi:13335 msgid "Package developers can specify in package recipes the @uref{https://nvd.nist.gov/products/cpe,Common Platform Enumeration (CPE)} name and version of the package when they differ from the name or version that Guix uses, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12986 +#: guix-git/doc/guix.texi:13343 #, no-wrap msgid "" "(package\n" @@ -23168,12 +23788,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12993 +#: guix-git/doc/guix.texi:13350 msgid "Some entries in the CVE database do not specify which version of a package they apply to, and would thus ``stick around'' forever. Package developers who found CVE alerts and verified they can be ignored can declare them as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:13003 +#: guix-git/doc/guix.texi:13360 #, no-wrap msgid "" "(package\n" @@ -23187,124 +23807,124 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13005 +#: guix-git/doc/guix.texi:13362 #, no-wrap msgid "formatting" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13008 +#: guix-git/doc/guix.texi:13365 msgid "Warn about obvious source code formatting issues: trailing white space, use of tabulations, etc." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13009 +#: guix-git/doc/guix.texi:13366 #, no-wrap msgid "input-labels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13015 +#: guix-git/doc/guix.texi:13372 msgid "Report old-style input labels that do not match the name of the corresponding package. This aims to help migrate from the ``old input style''. @xref{package Reference}, for more information on package inputs and input styles. @xref{Invoking guix style}, on how to migrate to the new style." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13021 +#: guix-git/doc/guix.texi:13378 #, no-wrap msgid "guix lint @var{options} @var{package}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13025 +#: guix-git/doc/guix.texi:13382 msgid "If no package is given on the command line, then all packages are checked. The @var{options} may be zero or more of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13027 +#: guix-git/doc/guix.texi:13384 #, no-wrap msgid "--list-checkers" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13031 +#: guix-git/doc/guix.texi:13388 msgid "List and describe all the available checkers that will be run on packages and exit." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13032 +#: guix-git/doc/guix.texi:13389 #, no-wrap msgid "--checkers" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13033 +#: guix-git/doc/guix.texi:13390 #, no-wrap msgid "-c" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13036 +#: guix-git/doc/guix.texi:13393 msgid "Only enable the checkers specified in a comma-separated list using the names returned by @option{--list-checkers}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13037 +#: guix-git/doc/guix.texi:13394 #, no-wrap msgid "--exclude" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13041 +#: guix-git/doc/guix.texi:13398 msgid "Only disable the checkers specified in a comma-separated list using the names returned by @option{--list-checkers}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13042 +#: guix-git/doc/guix.texi:13399 #, no-wrap msgid "--no-network" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13045 +#: guix-git/doc/guix.texi:13402 msgid "Only enable the checkers that do not depend on Internet access." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13057 +#: guix-git/doc/guix.texi:13414 #, no-wrap msgid "Invoking @command{guix size}" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:13059 guix-git/doc/guix.texi:35624 +#: guix-git/doc/guix.texi:13416 guix-git/doc/guix.texi:36114 #, no-wrap msgid "size" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13060 +#: guix-git/doc/guix.texi:13417 #, no-wrap msgid "package size" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13062 +#: guix-git/doc/guix.texi:13419 #, no-wrap msgid "guix size" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13069 +#: guix-git/doc/guix.texi:13426 msgid "The @command{guix size} command helps package developers profile the disk usage of packages. It is easy to overlook the impact of an additional dependency added to a package, or the impact of using a single output for a package that could easily be split (@pxref{Packages with Multiple Outputs}). Such are the typical issues that @command{guix size} can highlight." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13074 +#: guix-git/doc/guix.texi:13431 msgid "The command can be passed one or more package specifications such as @code{gcc@@4.8} or @code{guile:debug}, or a file name in the store. Consider this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13087 +#: guix-git/doc/guix.texi:13444 #, no-wrap msgid "" "$ guix size coreutils\n" @@ -23321,54 +23941,54 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13093 +#: guix-git/doc/guix.texi:13450 msgid "The store items listed here constitute the @dfn{transitive closure} of Coreutils---i.e., Coreutils and all its dependencies, recursively---as would be returned by:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13096 +#: guix-git/doc/guix.texi:13453 #, no-wrap msgid "$ guix gc -R /gnu/store/@dots{}-coreutils-8.23\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13104 +#: guix-git/doc/guix.texi:13461 msgid "Here the output shows three columns next to store items. The first column, labeled ``total'', shows the size in mebibytes (MiB) of the closure of the store item---that is, its own size plus the size of all its dependencies. The next column, labeled ``self'', shows the size of the item itself. The last column shows the ratio of the size of the item itself to the space occupied by all the items listed here." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13110 +#: guix-git/doc/guix.texi:13467 msgid "In this example, we see that the closure of Coreutils weighs in at 79@tie{}MiB, most of which is taken by libc and GCC's run-time support libraries. (That libc and GCC's libraries represent a large fraction of the closure is not a problem @i{per se} because they are always available on the system anyway.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13113 +#: guix-git/doc/guix.texi:13470 msgid "Since the command also accepts store file names, assessing the size of a build result is straightforward:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13116 +#: guix-git/doc/guix.texi:13473 #, no-wrap msgid "guix size $(guix system build config.scm)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13126 +#: guix-git/doc/guix.texi:13483 msgid "When the package(s) passed to @command{guix size} are available in the store@footnote{More precisely, @command{guix size} looks for the @emph{ungrafted} variant of the given package(s), as returned by @code{guix build @var{package} --no-grafts}. @xref{Security Updates}, for information on grafts.}, @command{guix size} queries the daemon to determine its dependencies, and measures its size in the store, similar to @command{du -ms --apparent-size} (@pxref{du invocation,,, coreutils, GNU Coreutils})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13131 +#: guix-git/doc/guix.texi:13488 msgid "When the given packages are @emph{not} in the store, @command{guix size} reports information based on the available substitutes (@pxref{Substitutes}). This makes it possible it to profile disk usage of store items that are not even on disk, only available remotely." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13133 +#: guix-git/doc/guix.texi:13490 msgid "You can also specify several package names:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13143 +#: guix-git/doc/guix.texi:13500 #, no-wrap msgid "" "$ guix size coreutils grep sed bash\n" @@ -23382,365 +24002,365 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13149 +#: guix-git/doc/guix.texi:13506 msgid "In this example we see that the combination of the four packages takes 102.3@tie{}MiB in total, which is much less than the sum of each closure since they have a lot of dependencies in common." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13155 +#: guix-git/doc/guix.texi:13512 msgid "When looking at the profile returned by @command{guix size}, you may find yourself wondering why a given package shows up in the profile at all. To understand it, you can use @command{guix graph --path -t references} to display the shortest path between the two packages (@pxref{Invoking guix graph})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13157 +#: guix-git/doc/guix.texi:13514 msgid "The available options are:" msgstr "사용 가능한 선택(옵션)은 다음과 같습니다:" #. type: table -#: guix-git/doc/guix.texi:13163 +#: guix-git/doc/guix.texi:13520 msgid "Use substitute information from @var{urls}. @xref{client-substitute-urls, the same option for @code{guix build}}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13164 +#: guix-git/doc/guix.texi:13521 #, no-wrap msgid "--sort=@var{key}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13166 +#: guix-git/doc/guix.texi:13523 msgid "Sort lines according to @var{key}, one of the following options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13168 +#: guix-git/doc/guix.texi:13525 #, no-wrap msgid "self" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13170 +#: guix-git/doc/guix.texi:13527 msgid "the size of each item (the default);" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13172 +#: guix-git/doc/guix.texi:13529 msgid "the total size of the item's closure." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13174 +#: guix-git/doc/guix.texi:13531 #, no-wrap msgid "--map-file=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13176 +#: guix-git/doc/guix.texi:13533 msgid "Write a graphical map of disk usage in PNG format to @var{file}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13178 +#: guix-git/doc/guix.texi:13535 msgid "For the example above, the map looks like this:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13181 +#: guix-git/doc/guix.texi:13538 msgid "@image{images/coreutils-size-map,5in,, map of Coreutils disk usage produced by @command{guix size}}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13186 +#: guix-git/doc/guix.texi:13543 msgid "This option requires that @uref{https://wingolog.org/software/guile-charting/, Guile-Charting} be installed and visible in Guile's module search path. When that is not the case, @command{guix size} fails as it tries to load it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13190 +#: guix-git/doc/guix.texi:13547 msgid "Consider packages for @var{system}---e.g., @code{x86_64-linux}." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13201 +#: guix-git/doc/guix.texi:13558 #, no-wrap msgid "Invoking @command{guix graph}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13203 +#: guix-git/doc/guix.texi:13560 #, no-wrap msgid "DAG" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13204 +#: guix-git/doc/guix.texi:13561 #, no-wrap msgid "guix graph" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13219 +#: guix-git/doc/guix.texi:13576 msgid "Packages and their dependencies form a @dfn{graph}, specifically a directed acyclic graph (DAG). It can quickly become difficult to have a mental model of the package DAG, so the @command{guix graph} command provides a visual representation of the DAG@. By default, @command{guix graph} emits a DAG representation in the input format of @uref{https://www.graphviz.org/, Graphviz}, so its output can be passed directly to the @command{dot} command of Graphviz. It can also emit an HTML page with embedded JavaScript code to display a ``chord diagram'' in a Web browser, using the @uref{https://d3js.org/, d3.js} library, or emit Cypher queries to construct a graph in a graph database supporting the @uref{https://www.opencypher.org/, openCypher} query language. With @option{--path}, it simply displays the shortest path between two packages. The general syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13222 +#: guix-git/doc/guix.texi:13579 #, no-wrap msgid "guix graph @var{options} @var{package}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13227 +#: guix-git/doc/guix.texi:13584 msgid "For example, the following command generates a PDF file representing the package DAG for the GNU@tie{}Core Utilities, showing its build-time dependencies:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13230 +#: guix-git/doc/guix.texi:13587 #, no-wrap msgid "guix graph coreutils | dot -Tpdf > dag.pdf\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13233 +#: guix-git/doc/guix.texi:13590 msgid "The output looks like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13235 +#: guix-git/doc/guix.texi:13592 msgid "@image{images/coreutils-graph,2in,,Dependency graph of the GNU Coreutils}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13237 +#: guix-git/doc/guix.texi:13594 msgid "Nice little graph, no?" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13240 +#: guix-git/doc/guix.texi:13597 msgid "You may find it more pleasant to navigate the graph interactively with @command{xdot} (from the @code{xdot} package):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13243 +#: guix-git/doc/guix.texi:13600 #, no-wrap msgid "guix graph coreutils | xdot -\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13250 +#: guix-git/doc/guix.texi:13607 msgid "But there is more than one graph! The one above is concise: it is the graph of package objects, omitting implicit inputs such as GCC, libc, grep, etc. It is often useful to have such a concise graph, but sometimes one may want to see more details. @command{guix graph} supports several types of graphs, allowing you to choose the level of detail:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13256 +#: guix-git/doc/guix.texi:13613 msgid "This is the default type used in the example above. It shows the DAG of package objects, excluding implicit dependencies. It is concise, but filters out many details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13257 +#: guix-git/doc/guix.texi:13614 #, no-wrap msgid "reverse-package" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13259 +#: guix-git/doc/guix.texi:13616 msgid "This shows the @emph{reverse} DAG of packages. For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13262 +#: guix-git/doc/guix.texi:13619 #, no-wrap msgid "guix graph --type=reverse-package ocaml\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13267 +#: guix-git/doc/guix.texi:13624 msgid "...@: yields the graph of packages that @emph{explicitly} depend on OCaml (if you are also interested in cases where OCaml is an implicit dependency, see @code{reverse-bag} below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13272 +#: guix-git/doc/guix.texi:13629 msgid "Note that for core packages this can yield huge graphs. If all you want is to know the number of packages that depend on a given package, use @command{guix refresh --list-dependent} (@pxref{Invoking guix refresh, @option{--list-dependent}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13273 +#: guix-git/doc/guix.texi:13630 #, no-wrap msgid "bag-emerged" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13275 +#: guix-git/doc/guix.texi:13632 msgid "This is the package DAG, @emph{including} implicit inputs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13277 +#: guix-git/doc/guix.texi:13634 msgid "For instance, the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13280 +#: guix-git/doc/guix.texi:13637 #, no-wrap msgid "guix graph --type=bag-emerged coreutils\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13283 +#: guix-git/doc/guix.texi:13640 msgid "...@: yields this bigger graph:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13285 +#: guix-git/doc/guix.texi:13642 msgid "@image{images/coreutils-bag-graph,,5in,Detailed dependency graph of the GNU Coreutils}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13288 +#: guix-git/doc/guix.texi:13645 msgid "At the bottom of the graph, we see all the implicit inputs of @var{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13292 +#: guix-git/doc/guix.texi:13649 msgid "Now, note that the dependencies of these implicit inputs---that is, the @dfn{bootstrap dependencies} (@pxref{Bootstrapping})---are not shown here, for conciseness." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13293 +#: guix-git/doc/guix.texi:13650 #, no-wrap msgid "bag" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13296 +#: guix-git/doc/guix.texi:13653 msgid "Similar to @code{bag-emerged}, but this time including all the bootstrap dependencies." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13297 +#: guix-git/doc/guix.texi:13654 #, no-wrap msgid "bag-with-origins" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13299 +#: guix-git/doc/guix.texi:13656 msgid "Similar to @code{bag}, but also showing origins and their dependencies." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13300 +#: guix-git/doc/guix.texi:13657 #, no-wrap msgid "reverse-bag" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13303 +#: guix-git/doc/guix.texi:13660 msgid "This shows the @emph{reverse} DAG of packages. Unlike @code{reverse-package}, it also takes implicit dependencies into account. For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13306 +#: guix-git/doc/guix.texi:13663 #, no-wrap msgid "guix graph -t reverse-bag dune\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13313 +#: guix-git/doc/guix.texi:13670 msgid "...@: yields the graph of all packages that depend on Dune, directly or indirectly. Since Dune is an @emph{implicit} dependency of many packages @i{via} @code{dune-build-system}, this shows a large number of packages, whereas @code{reverse-package} would show very few if any." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13319 +#: guix-git/doc/guix.texi:13676 msgid "This is the most detailed representation: It shows the DAG of derivations (@pxref{Derivations}) and plain store items. Compared to the above representation, many additional nodes are visible, including build scripts, patches, Guile modules, etc." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13322 +#: guix-git/doc/guix.texi:13679 msgid "For this type of graph, it is also possible to pass a @file{.drv} file name instead of a package name, as in:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13325 +#: guix-git/doc/guix.texi:13682 #, no-wrap msgid "guix graph -t derivation $(guix system build -d my-config.scm)\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13327 +#: guix-git/doc/guix.texi:13684 #, no-wrap msgid "module" msgstr "모듈" #. type: table -#: guix-git/doc/guix.texi:13331 +#: guix-git/doc/guix.texi:13688 msgid "This is the graph of @dfn{package modules} (@pxref{Package Modules}). For example, the following command shows the graph for the package module that defines the @code{guile} package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13334 +#: guix-git/doc/guix.texi:13691 #, no-wrap msgid "guix graph -t module guile | xdot -\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13339 +#: guix-git/doc/guix.texi:13696 msgid "All the types above correspond to @emph{build-time dependencies}. The following graph type represents the @emph{run-time dependencies}:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13344 +#: guix-git/doc/guix.texi:13701 msgid "This is the graph of @dfn{references} of a package output, as returned by @command{guix gc --references} (@pxref{Invoking guix gc})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13347 +#: guix-git/doc/guix.texi:13704 msgid "If the given package output is not available in the store, @command{guix graph} attempts to obtain dependency information from substitutes." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13351 +#: guix-git/doc/guix.texi:13708 msgid "Here you can also pass a store file name instead of a package name. For example, the command below produces the reference graph of your profile (which can be big!):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13354 +#: guix-git/doc/guix.texi:13711 #, no-wrap msgid "guix graph -t references $(readlink -f ~/.guix-profile)\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13356 +#: guix-git/doc/guix.texi:13713 #, no-wrap msgid "referrers" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13359 +#: guix-git/doc/guix.texi:13716 msgid "This is the graph of the @dfn{referrers} of a store item, as returned by @command{guix gc --referrers} (@pxref{Invoking guix gc})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13365 +#: guix-git/doc/guix.texi:13722 msgid "This relies exclusively on local information from your store. For instance, let us suppose that the current Inkscape is available in 10 profiles on your machine; @command{guix graph -t referrers inkscape} will show a graph rooted at Inkscape and with those 10 profiles linked to it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13368 +#: guix-git/doc/guix.texi:13725 msgid "It can help determine what is preventing a store item from being garbage collected." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13371 +#: guix-git/doc/guix.texi:13728 #, no-wrap msgid "shortest path, between packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13378 +#: guix-git/doc/guix.texi:13735 msgid "Often, the graph of the package you are interested in does not fit on your screen, and anyway all you want to know is @emph{why} that package actually depends on some seemingly unrelated package. The @option{--path} option instructs @command{guix graph} to display the shortest path between two packages (or derivations, or store items, etc.):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13392 +#: guix-git/doc/guix.texi:13749 #, no-wrap msgid "" "$ guix graph --path emacs libunistring\n" @@ -23758,88 +24378,88 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13400 +#: guix-git/doc/guix.texi:13757 msgid "Sometimes you still want to visualize the graph but would like to trim it so it can actually be displayed. One way to do it is via the @option{--max-depth} (or @option{-M}) option, which lets you specify the maximum depth of the graph. In the example below, we visualize only @code{libreoffice} and the nodes whose distance to @code{libreoffice} is at most 2:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13403 +#: guix-git/doc/guix.texi:13760 #, no-wrap msgid "guix graph -M 2 libreoffice | xdot -f fdp -\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13407 +#: guix-git/doc/guix.texi:13764 msgid "Mind you, that's still a big ball of spaghetti, but at least @command{dot} can render it quickly and it can be browsed somewhat." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13409 +#: guix-git/doc/guix.texi:13766 msgid "The available options are the following:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13415 +#: guix-git/doc/guix.texi:13772 msgid "Produce a graph output of @var{type}, where @var{type} must be one of the values listed above." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13416 +#: guix-git/doc/guix.texi:13773 #, no-wrap msgid "--list-types" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13418 +#: guix-git/doc/guix.texi:13775 msgid "List the supported graph types." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13419 +#: guix-git/doc/guix.texi:13776 #, no-wrap msgid "--backend=@var{backend}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13420 +#: guix-git/doc/guix.texi:13777 #, no-wrap msgid "-b @var{backend}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13422 +#: guix-git/doc/guix.texi:13779 msgid "Produce a graph using the selected @var{backend}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13423 +#: guix-git/doc/guix.texi:13780 #, no-wrap msgid "--list-backends" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13425 +#: guix-git/doc/guix.texi:13782 msgid "List the supported graph backends." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13427 +#: guix-git/doc/guix.texi:13784 msgid "Currently, the available backends are Graphviz and d3.js." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13428 +#: guix-git/doc/guix.texi:13785 #, no-wrap msgid "--path" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13433 +#: guix-git/doc/guix.texi:13790 msgid "Display the shortest path between two nodes of the type specified by @option{--type}. The example below shows the shortest path between @code{libreoffice} and @code{llvm} according to the references of @code{libreoffice}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13440 +#: guix-git/doc/guix.texi:13797 #, no-wrap msgid "" "$ guix graph --path -t references libreoffice llvm\n" @@ -23850,398 +24470,398 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13450 +#: guix-git/doc/guix.texi:13807 #, no-wrap msgid "guix graph -e '(@@@@ (gnu packages commencement) gnu-make-final)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13455 +#: guix-git/doc/guix.texi:13812 msgid "Display the graph for @var{system}---e.g., @code{i686-linux}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13458 +#: guix-git/doc/guix.texi:13815 msgid "The package dependency graph is largely architecture-independent, but there are some architecture-dependent bits that this option allows you to visualize." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13474 +#: guix-git/doc/guix.texi:13831 msgid "On top of that, @command{guix graph} supports all the usual package transformation options (@pxref{Package Transformation Options}). This makes it easy to view the effect of a graph-rewriting transformation such as @option{--with-input}. For example, the command below outputs the graph of @code{git} once @code{openssl} has been replaced by @code{libressl} everywhere in the graph:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13477 +#: guix-git/doc/guix.texi:13834 #, no-wrap msgid "guix graph git --with-input=openssl=libressl\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13480 +#: guix-git/doc/guix.texi:13837 msgid "So many possibilities, so much fun!" msgstr "" #. type: section -#: guix-git/doc/guix.texi:13482 +#: guix-git/doc/guix.texi:13839 #, no-wrap msgid "Invoking @command{guix publish}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13484 +#: guix-git/doc/guix.texi:13841 #, no-wrap msgid "guix publish" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13488 +#: guix-git/doc/guix.texi:13845 msgid "The purpose of @command{guix publish} is to enable users to easily share their store with others, who can then use it as a substitute server (@pxref{Substitutes})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13494 +#: guix-git/doc/guix.texi:13851 msgid "When @command{guix publish} runs, it spawns an HTTP server which allows anyone with network access to obtain substitutes from it. This means that any machine running Guix can also act as if it were a build farm, since the HTTP interface is compatible with Cuirass, the software behind the @code{@value{SUBSTITUTE-SERVER-1}} build farm." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13500 +#: guix-git/doc/guix.texi:13857 msgid "For security, each substitute is signed, allowing recipients to check their authenticity and integrity (@pxref{Substitutes}). Because @command{guix publish} uses the signing key of the system, which is only readable by the system administrator, it must be started as root; the @option{--user} option makes it drop root privileges early on." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13504 +#: guix-git/doc/guix.texi:13861 msgid "The signing key pair must be generated before @command{guix publish} is launched, using @command{guix archive --generate-key} (@pxref{Invoking guix archive})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13509 +#: guix-git/doc/guix.texi:13866 msgid "When the @option{--advertise} option is passed, the server advertises its availability on the local network using multicast DNS (mDNS) and DNS service discovery (DNS-SD), currently @i{via} Guile-Avahi (@pxref{Top,,, guile-avahi, Using Avahi in Guile Scheme Programs})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13514 +#: guix-git/doc/guix.texi:13871 #, no-wrap msgid "guix publish @var{options}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13518 +#: guix-git/doc/guix.texi:13875 msgid "Running @command{guix publish} without any additional arguments will spawn an HTTP server on port 8080:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13521 +#: guix-git/doc/guix.texi:13878 #, no-wrap msgid "guix publish\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13525 +#: guix-git/doc/guix.texi:13882 msgid "Once a publishing server has been authorized, the daemon may download substitutes from it. @xref{Getting Substitutes from Other Servers}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13533 +#: guix-git/doc/guix.texi:13890 msgid "By default, @command{guix publish} compresses archives on the fly as it serves them. This ``on-the-fly'' mode is convenient in that it requires no setup and is immediately available. However, when serving lots of clients, we recommend using the @option{--cache} option, which enables caching of the archives before they are sent to clients---see below for details. The @command{guix weather} command provides a handy way to check what a server provides (@pxref{Invoking guix weather})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13540 +#: guix-git/doc/guix.texi:13897 msgid "As a bonus, @command{guix publish} also serves as a content-addressed mirror for source files referenced in @code{origin} records (@pxref{origin Reference}). For instance, assuming @command{guix publish} is running on @code{example.org}, the following URL returns the raw @file{hello-2.10.tar.gz} file with the given SHA256 hash (represented in @code{nix-base32} format, @pxref{Invoking guix hash}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13543 +#: guix-git/doc/guix.texi:13900 #, no-wrap msgid "http://example.org/file/hello-2.10.tar.gz/sha256/0ssi1@dots{}ndq1i\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13547 +#: guix-git/doc/guix.texi:13904 msgid "Obviously, these URLs only work for files that are in the store; in other cases, they return 404 (``Not Found'')." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13548 +#: guix-git/doc/guix.texi:13905 #, no-wrap msgid "build logs, publication" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13550 +#: guix-git/doc/guix.texi:13907 msgid "Build logs are available from @code{/log} URLs like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13553 +#: guix-git/doc/guix.texi:13910 #, no-wrap msgid "http://example.org/log/gwspk@dots{}-guile-2.2.3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13563 +#: guix-git/doc/guix.texi:13920 msgid "When @command{guix-daemon} is configured to save compressed build logs, as is the case by default (@pxref{Invoking guix-daemon}), @code{/log} URLs return the compressed log as-is, with an appropriate @code{Content-Type} and/or @code{Content-Encoding} header. We recommend running @command{guix-daemon} with @option{--log-compression=gzip} since Web browsers can automatically decompress it, which is not the case with Bzip2 compression." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13567 +#: guix-git/doc/guix.texi:13924 #, no-wrap msgid "--port=@var{port}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13568 +#: guix-git/doc/guix.texi:13925 #, no-wrap msgid "-p @var{port}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13570 +#: guix-git/doc/guix.texi:13927 msgid "Listen for HTTP requests on @var{port}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13571 +#: guix-git/doc/guix.texi:13928 #, no-wrap msgid "--listen=@var{host}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13574 +#: guix-git/doc/guix.texi:13931 msgid "Listen on the network interface for @var{host}. The default is to accept connections from any interface." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13579 +#: guix-git/doc/guix.texi:13936 msgid "Change privileges to @var{user} as soon as possible---i.e., once the server socket is open and the signing key has been read." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13580 +#: guix-git/doc/guix.texi:13937 #, no-wrap msgid "--compression[=@var{method}[:@var{level}]]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13581 +#: guix-git/doc/guix.texi:13938 #, no-wrap msgid "-C [@var{method}[:@var{level}]]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13585 +#: guix-git/doc/guix.texi:13942 msgid "Compress data using the given @var{method} and @var{level}. @var{method} is one of @code{lzip}, @code{zstd}, and @code{gzip}; when @var{method} is omitted, @code{gzip} is used." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13589 +#: guix-git/doc/guix.texi:13946 msgid "When @var{level} is zero, disable compression. The range 1 to 9 corresponds to different compression levels: 1 is the fastest, and 9 is the best (CPU-intensive). The default is 3." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13596 +#: guix-git/doc/guix.texi:13953 msgid "Usually, @code{lzip} compresses noticeably better than @code{gzip} for a small increase in CPU usage; see @uref{https://nongnu.org/lzip/lzip_benchmark.html,benchmarks on the lzip Web page}. However, @code{lzip} achieves low decompression throughput (on the order of 50@tie{}MiB/s on modern hardware), which can be a bottleneck for someone who downloads over a fast network connection." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13600 +#: guix-git/doc/guix.texi:13957 msgid "The compression ratio of @code{zstd} is between that of @code{lzip} and that of @code{gzip}; its main advantage is a @uref{https://facebook.github.io/zstd/,high decompression speed}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13609 +#: guix-git/doc/guix.texi:13966 msgid "Unless @option{--cache} is used, compression occurs on the fly and the compressed streams are not cached. Thus, to reduce load on the machine that runs @command{guix publish}, it may be a good idea to choose a low compression level, to run @command{guix publish} behind a caching proxy, or to use @option{--cache}. Using @option{--cache} has the advantage that it allows @command{guix publish} to add @code{Content-Length} HTTP header to its responses." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13614 +#: guix-git/doc/guix.texi:13971 msgid "This option can be repeated, in which case every substitute gets compressed using all the selected methods, and all of them are advertised. This is useful when users may not support all the compression methods: they can select the one they support." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13615 +#: guix-git/doc/guix.texi:13972 #, no-wrap msgid "--cache=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13616 +#: guix-git/doc/guix.texi:13973 #, no-wrap msgid "-c @var{directory}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13619 +#: guix-git/doc/guix.texi:13976 msgid "Cache archives and meta-data (@code{.narinfo} URLs) to @var{directory} and only serve archives that are in cache." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13627 +#: guix-git/doc/guix.texi:13984 msgid "When this option is omitted, archives and meta-data are created on-the-fly. This can reduce the available bandwidth, especially when compression is enabled, since this may become CPU-bound. Another drawback of the default mode is that the length of archives is not known in advance, so @command{guix publish} does not add a @code{Content-Length} HTTP header to its responses, which in turn prevents clients from knowing the amount of data being downloaded." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13635 +#: guix-git/doc/guix.texi:13992 msgid "Conversely, when @option{--cache} is used, the first request for a store item (@i{via} a @code{.narinfo} URL) triggers a background process to @dfn{bake} the archive---computing its @code{.narinfo} and compressing the archive, if needed. Once the archive is cached in @var{directory}, subsequent requests succeed and are served directly from the cache, which guarantees that clients get the best possible bandwidth." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13642 +#: guix-git/doc/guix.texi:13999 msgid "That first @code{.narinfo} request nonetheless returns 200, provided the requested store item is ``small enough'', below the cache bypass threshold---see @option{--cache-bypass-threshold} below. That way, clients do not have to wait until the archive is baked. For larger store items, the first @code{.narinfo} request returns 404, meaning that clients have to wait until the archive is baked." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13646 +#: guix-git/doc/guix.texi:14003 msgid "The ``baking'' process is performed by worker threads. By default, one thread per CPU core is created, but this can be customized. See @option{--workers} below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13649 +#: guix-git/doc/guix.texi:14006 msgid "When @option{--ttl} is used, cached entries are automatically deleted when they have expired." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13650 +#: guix-git/doc/guix.texi:14007 #, no-wrap msgid "--workers=@var{N}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13653 +#: guix-git/doc/guix.texi:14010 msgid "When @option{--cache} is used, request the allocation of @var{N} worker threads to ``bake'' archives." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13654 +#: guix-git/doc/guix.texi:14011 #, no-wrap msgid "--ttl=@var{ttl}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13658 +#: guix-git/doc/guix.texi:14015 msgid "Produce @code{Cache-Control} HTTP headers that advertise a time-to-live (TTL) of @var{ttl}. @var{ttl} must denote a duration: @code{5d} means 5 days, @code{1m} means 1 month, and so on." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13663 +#: guix-git/doc/guix.texi:14020 msgid "This allows the user's Guix to keep substitute information in cache for @var{ttl}. However, note that @code{guix publish} does not itself guarantee that the store items it provides will indeed remain available for as long as @var{ttl}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13667 +#: guix-git/doc/guix.texi:14024 msgid "Additionally, when @option{--cache} is used, cached entries that have not been accessed for @var{ttl} and that no longer have a corresponding item in the store, may be deleted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13668 +#: guix-git/doc/guix.texi:14025 #, no-wrap msgid "--negative-ttl=@var{ttl}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13673 +#: guix-git/doc/guix.texi:14030 msgid "Similarly produce @code{Cache-Control} HTTP headers to advertise the time-to-live (TTL) of @emph{negative} lookups---missing store items, for which the HTTP 404 code is returned. By default, no negative TTL is advertised." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13677 +#: guix-git/doc/guix.texi:14034 msgid "This parameter can help adjust server load and substitute latency by instructing cooperating clients to be more or less patient when a store item is missing." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13678 +#: guix-git/doc/guix.texi:14035 #, no-wrap msgid "--cache-bypass-threshold=@var{size}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13683 +#: guix-git/doc/guix.texi:14040 msgid "When used in conjunction with @option{--cache}, store items smaller than @var{size} are immediately available, even when they are not yet in cache. @var{size} is a size in bytes, or it can be suffixed by @code{M} for megabytes and so on. The default is @code{10M}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13688 +#: guix-git/doc/guix.texi:14045 msgid "``Cache bypass'' allows you to reduce the publication delay for clients at the expense of possibly additional I/O and CPU use on the server side: depending on the client access patterns, those store items can end up being baked several times until a copy is available in cache." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13692 +#: guix-git/doc/guix.texi:14049 msgid "Increasing the threshold may be useful for sites that have few users, or to guarantee that users get substitutes even for store items that are not popular." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13693 +#: guix-git/doc/guix.texi:14050 #, no-wrap msgid "--nar-path=@var{path}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13696 +#: guix-git/doc/guix.texi:14053 msgid "Use @var{path} as the prefix for the URLs of ``nar'' files (@pxref{Invoking guix archive, normalized archives})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13700 +#: guix-git/doc/guix.texi:14057 msgid "By default, nars are served at a URL such as @code{/nar/gzip/@dots{}-coreutils-8.25}. This option allows you to change the @code{/nar} part to @var{path}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13701 +#: guix-git/doc/guix.texi:14058 #, no-wrap msgid "--public-key=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13702 +#: guix-git/doc/guix.texi:14059 #, no-wrap msgid "--private-key=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13705 guix-git/doc/guix.texi:29141 -#: guix-git/doc/guix.texi:29178 +#: guix-git/doc/guix.texi:14062 guix-git/doc/guix.texi:29478 +#: guix-git/doc/guix.texi:29515 msgid "Use the specific @var{file}s as the public/private key pair used to sign the store items being published." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13712 +#: guix-git/doc/guix.texi:14069 msgid "The files must correspond to the same key pair (the private key is used for signing and the public key is merely advertised in the signature metadata). They must contain keys in the canonical s-expression format as produced by @command{guix archive --generate-key} (@pxref{Invoking guix archive}). By default, @file{/etc/guix/signing-key.pub} and @file{/etc/guix/signing-key.sec} are used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13713 +#: guix-git/doc/guix.texi:14070 #, no-wrap msgid "--repl[=@var{port}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13714 +#: guix-git/doc/guix.texi:14071 #, no-wrap msgid "-r [@var{port}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13718 +#: guix-git/doc/guix.texi:14075 msgid "Spawn a Guile REPL server (@pxref{REPL Servers,,, guile, GNU Guile Reference Manual}) on @var{port} (37146 by default). This is used primarily for debugging a running @command{guix publish} server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13724 +#: guix-git/doc/guix.texi:14081 msgid "Enabling @command{guix publish} on Guix System is a one-liner: just instantiate a @code{guix-publish-service-type} service in the @code{services} field of the @code{operating-system} declaration (@pxref{guix-publish-service-type, @code{guix-publish-service-type}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13727 +#: guix-git/doc/guix.texi:14084 msgid "If you are instead running Guix on a ``foreign distro'', follow these instructions:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:13731 +#: guix-git/doc/guix.texi:14088 msgid "If your host distro uses the systemd init system:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13736 +#: guix-git/doc/guix.texi:14093 #, no-wrap msgid "" "# ln -s ~root/.guix-profile/lib/systemd/system/guix-publish.service \\\n" @@ -24250,7 +24870,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13744 +#: guix-git/doc/guix.texi:14101 #, no-wrap msgid "" "# ln -s ~root/.guix-profile/lib/upstart/system/guix-publish.conf /etc/init/\n" @@ -24258,56 +24878,56 @@ msgid "" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:13748 +#: guix-git/doc/guix.texi:14105 msgid "Otherwise, proceed similarly with your distro's init system." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13751 +#: guix-git/doc/guix.texi:14108 #, no-wrap msgid "Invoking @command{guix challenge}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13754 +#: guix-git/doc/guix.texi:14111 #, no-wrap msgid "verifiable builds" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13755 +#: guix-git/doc/guix.texi:14112 #, no-wrap msgid "guix challenge" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13756 +#: guix-git/doc/guix.texi:14113 #, no-wrap msgid "challenge" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13761 +#: guix-git/doc/guix.texi:14118 msgid "Do the binaries provided by this server really correspond to the source code it claims to build? Is a package build process deterministic? These are the questions the @command{guix challenge} command attempts to answer." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13769 +#: guix-git/doc/guix.texi:14126 msgid "The former is obviously an important question: Before using a substitute server (@pxref{Substitutes}), one had better @emph{verify} that it provides the right binaries, and thus @emph{challenge} it. The latter is what enables the former: If package builds are deterministic, then independent builds of the package should yield the exact same result, bit for bit; if a server provides a binary different from the one obtained locally, it may be either corrupt or malicious." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13778 +#: guix-git/doc/guix.texi:14135 msgid "We know that the hash that shows up in @file{/gnu/store} file names is the hash of all the inputs of the process that built the file or directory---compilers, libraries, build scripts, etc. (@pxref{Introduction}). Assuming deterministic build processes, one store file name should map to exactly one build output. @command{guix challenge} checks whether there is, indeed, a single mapping by comparing the build outputs of several independent builds of any given store item." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13780 +#: guix-git/doc/guix.texi:14137 msgid "The command output looks like this:" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13792 +#: guix-git/doc/guix.texi:14149 #, no-wrap msgid "" "$ guix challenge --substitute-urls=\"https://@value{SUBSTITUTE-SERVER-1} https://guix.example.org\"\n" @@ -24324,7 +24944,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13799 +#: guix-git/doc/guix.texi:14156 #, no-wrap msgid "" "/gnu/store/@dots{}-git-2.5.0 contents differ:\n" @@ -24337,7 +24957,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13806 +#: guix-git/doc/guix.texi:14163 #, no-wrap msgid "" "/gnu/store/@dots{}-pius-2.1.1 contents differ:\n" @@ -24350,7 +24970,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13808 +#: guix-git/doc/guix.texi:14165 #, no-wrap msgid "" "@dots{}\n" @@ -24358,7 +24978,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13813 +#: guix-git/doc/guix.texi:14170 #, no-wrap msgid "" "6,406 store items were analyzed:\n" @@ -24368,28 +24988,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13821 +#: guix-git/doc/guix.texi:14178 msgid "In this example, @command{guix challenge} first scans the store to determine the set of locally-built derivations---as opposed to store items that were downloaded from a substitute server---and then queries all the substitute servers. It then reports those store items for which the servers obtained a result different from the local build." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13822 +#: guix-git/doc/guix.texi:14179 #, no-wrap msgid "non-determinism, in package builds" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13833 +#: guix-git/doc/guix.texi:14190 msgid "As an example, @code{guix.example.org} always gets a different answer. Conversely, @code{@value{SUBSTITUTE-SERVER-1}} agrees with local builds, except in the case of Git. This might indicate that the build process of Git is non-deterministic, meaning that its output varies as a function of various things that Guix does not fully control, in spite of building packages in isolated environments (@pxref{Features}). Most common sources of non-determinism include the addition of timestamps in build results, the inclusion of random numbers, and directory listings sorted by inode number. See @uref{https://reproducible-builds.org/docs/}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13836 +#: guix-git/doc/guix.texi:14193 msgid "To find out what is wrong with this Git binary, the easiest approach is to run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13841 +#: guix-git/doc/guix.texi:14198 #, no-wrap msgid "" "guix challenge git \\\n" @@ -24398,17 +25018,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13845 +#: guix-git/doc/guix.texi:14202 msgid "This automatically invokes @command{diffoscope}, which displays detailed information about files that differ." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13848 +#: guix-git/doc/guix.texi:14205 msgid "Alternatively, we can do something along these lines (@pxref{Invoking guix archive}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13853 +#: guix-git/doc/guix.texi:14210 #, no-wrap msgid "" "$ wget -q -O - https://@value{SUBSTITUTE-SERVER-1}/nar/lzip/@dots{}-git-2.5.0 \\\n" @@ -24417,160 +25037,160 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13862 +#: guix-git/doc/guix.texi:14219 msgid "This command shows the difference between the files resulting from the local build, and the files resulting from the build on @code{@value{SUBSTITUTE-SERVER-1}} (@pxref{Overview, Comparing and Merging Files,, diffutils, Comparing and Merging Files}). The @command{diff} command works great for text files. When binary files differ, a better option is @uref{https://diffoscope.org/, Diffoscope}, a tool that helps visualize differences for all kinds of files." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13870 +#: guix-git/doc/guix.texi:14227 msgid "Once you have done that work, you can tell whether the differences are due to a non-deterministic build process or to a malicious server. We try hard to remove sources of non-determinism in packages to make it easier to verify substitutes, but of course, this is a process that involves not just Guix, but a large part of the free software community. In the meantime, @command{guix challenge} is one tool to help address the problem." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13874 +#: guix-git/doc/guix.texi:14231 msgid "If you are writing packages for Guix, you are encouraged to check whether @code{@value{SUBSTITUTE-SERVER-1}} and other substitute servers obtain the same build result as you did with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13877 +#: guix-git/doc/guix.texi:14234 #, no-wrap msgid "$ guix challenge @var{package}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13882 +#: guix-git/doc/guix.texi:14239 msgid "where @var{package} is a package specification such as @code{guile@@2.0} or @code{glibc:debug}." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13887 +#: guix-git/doc/guix.texi:14244 #, no-wrap msgid "guix challenge @var{options} [@var{packages}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13894 +#: guix-git/doc/guix.texi:14251 msgid "When a difference is found between the hash of a locally-built item and that of a server-provided substitute, or among substitutes provided by different servers, the command displays it as in the example above and its exit code is 2 (other non-zero exit codes denote other kinds of errors)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13896 +#: guix-git/doc/guix.texi:14253 msgid "The one option that matters is:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13902 +#: guix-git/doc/guix.texi:14259 msgid "Consider @var{urls} the whitespace-separated list of substitute source URLs to compare to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13903 +#: guix-git/doc/guix.texi:14260 #, no-wrap msgid "--diff=@var{mode}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13905 +#: guix-git/doc/guix.texi:14262 msgid "Upon mismatches, show differences according to @var{mode}, one of:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13907 +#: guix-git/doc/guix.texi:14264 #, no-wrap msgid "@code{simple} (the default)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13909 +#: guix-git/doc/guix.texi:14266 msgid "Show the list of files that differ." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:13910 +#: guix-git/doc/guix.texi:14267 #, no-wrap msgid "diffoscope" msgstr "" #. type: var{#1} -#: guix-git/doc/guix.texi:13911 +#: guix-git/doc/guix.texi:14268 #, no-wrap msgid "command" msgstr "명령" #. type: table -#: guix-git/doc/guix.texi:13914 +#: guix-git/doc/guix.texi:14271 msgid "Invoke @uref{https://diffoscope.org/, Diffoscope}, passing it two directories whose contents do not match." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13917 +#: guix-git/doc/guix.texi:14274 msgid "When @var{command} is an absolute file name, run @var{command} instead of Diffoscope." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13920 +#: guix-git/doc/guix.texi:14277 msgid "Do not show further details about the differences." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13925 +#: guix-git/doc/guix.texi:14282 msgid "Thus, unless @option{--diff=none} is passed, @command{guix challenge} downloads the store items from the given substitute servers so that it can compare them." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13926 +#: guix-git/doc/guix.texi:14283 #, no-wrap msgid "--verbose" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13927 +#: guix-git/doc/guix.texi:14284 #, no-wrap msgid "-v" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13930 +#: guix-git/doc/guix.texi:14287 msgid "Show details about matches (identical contents) in addition to information about mismatches." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13934 +#: guix-git/doc/guix.texi:14291 #, no-wrap msgid "Invoking @command{guix copy}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13936 +#: guix-git/doc/guix.texi:14293 #, no-wrap msgid "copy, of store items, over SSH" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13937 +#: guix-git/doc/guix.texi:14294 #, no-wrap msgid "SSH, copy of store items" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13938 +#: guix-git/doc/guix.texi:14295 #, no-wrap msgid "sharing store items across machines" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13939 +#: guix-git/doc/guix.texi:14296 #, no-wrap msgid "transferring store items across machines" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13946 +#: guix-git/doc/guix.texi:14303 msgid "The @command{guix copy} command copies items from the store of one machine to that of another machine over a secure shell (SSH) connection@footnote{This command is available only when Guile-SSH was found. @xref{Requirements}, for details.}. For example, the following command copies the @code{coreutils} package, the user's profile, and all their dependencies over to @var{host}, logged in as @var{user}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13950 +#: guix-git/doc/guix.texi:14307 #, no-wrap msgid "" "guix copy --to=@var{user}@@@var{host} \\\n" @@ -24578,192 +25198,192 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13954 +#: guix-git/doc/guix.texi:14311 msgid "If some of the items to be copied are already present on @var{host}, they are not actually sent." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13957 +#: guix-git/doc/guix.texi:14314 msgid "The command below retrieves @code{libreoffice} and @code{gimp} from @var{host}, assuming they are available there:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13960 +#: guix-git/doc/guix.texi:14317 #, no-wrap msgid "guix copy --from=@var{host} libreoffice gimp\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13965 +#: guix-git/doc/guix.texi:14322 msgid "The SSH connection is established using the Guile-SSH client, which is compatible with OpenSSH: it honors @file{~/.ssh/known_hosts} and @file{~/.ssh/config}, and uses the SSH agent for authentication." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13971 +#: guix-git/doc/guix.texi:14328 msgid "The key used to sign items that are sent must be accepted by the remote machine. Likewise, the key used by the remote machine to sign items you are retrieving must be in @file{/etc/guix/acl} so it is accepted by your own daemon. @xref{Invoking guix archive}, for more information about store item authentication." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13976 +#: guix-git/doc/guix.texi:14333 #, no-wrap msgid "guix copy [--to=@var{spec}|--from=@var{spec}] @var{items}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13979 +#: guix-git/doc/guix.texi:14336 msgid "You must always specify one of the following options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13981 +#: guix-git/doc/guix.texi:14338 #, no-wrap msgid "--to=@var{spec}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13982 +#: guix-git/doc/guix.texi:14339 #, no-wrap msgid "--from=@var{spec}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13986 +#: guix-git/doc/guix.texi:14343 msgid "Specify the host to send to or receive from. @var{spec} must be an SSH spec such as @code{example.org}, @code{charlie@@example.org}, or @code{charlie@@example.org:2222}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13990 +#: guix-git/doc/guix.texi:14347 msgid "The @var{items} can be either package names, such as @code{gimp}, or store items, such as @file{/gnu/store/@dots{}-idutils-4.6}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13994 +#: guix-git/doc/guix.texi:14351 msgid "When specifying the name of a package to send, it is first built if needed, unless @option{--dry-run} was specified. Common build options are supported (@pxref{Common Build Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13997 +#: guix-git/doc/guix.texi:14354 #, no-wrap msgid "Invoking @command{guix container}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13999 +#: guix-git/doc/guix.texi:14356 #, no-wrap msgid "guix container" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:14003 +#: guix-git/doc/guix.texi:14360 msgid "As of version @value{VERSION}, this tool is experimental. The interface is subject to radical change in the future." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14010 +#: guix-git/doc/guix.texi:14367 msgid "The purpose of @command{guix container} is to manipulate processes running within an isolated environment, commonly known as a ``container'', typically created by the @command{guix shell} (@pxref{Invoking guix shell}) and @command{guix system container} (@pxref{Invoking guix system}) commands." msgstr "" #. type: example -#: guix-git/doc/guix.texi:14015 +#: guix-git/doc/guix.texi:14372 #, no-wrap msgid "guix container @var{action} @var{options}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14019 +#: guix-git/doc/guix.texi:14376 msgid "@var{action} specifies the operation to perform with a container, and @var{options} specifies the context-specific arguments for the action." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14021 +#: guix-git/doc/guix.texi:14378 msgid "The following actions are available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14023 +#: guix-git/doc/guix.texi:14380 #, no-wrap msgid "exec" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14025 +#: guix-git/doc/guix.texi:14382 msgid "Execute a command within the context of a running container." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14027 +#: guix-git/doc/guix.texi:14384 msgid "The syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14030 +#: guix-git/doc/guix.texi:14387 #, no-wrap msgid "guix container exec @var{pid} @var{program} @var{arguments}@dots{}\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14036 +#: guix-git/doc/guix.texi:14393 msgid "@var{pid} specifies the process ID of the running container. @var{program} specifies an executable file name within the root file system of the container. @var{arguments} are the additional options that will be passed to @var{program}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14040 +#: guix-git/doc/guix.texi:14397 msgid "The following command launches an interactive login shell inside a Guix system container, started by @command{guix system container}, and whose process ID is 9001:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14043 +#: guix-git/doc/guix.texi:14400 #, no-wrap msgid "guix container exec 9001 /run/current-system/profile/bin/bash --login\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14047 +#: guix-git/doc/guix.texi:14404 msgid "Note that the @var{pid} cannot be the parent process of a container. It must be PID 1 of the container or one of its child processes." msgstr "" #. type: section -#: guix-git/doc/guix.texi:14051 +#: guix-git/doc/guix.texi:14408 #, no-wrap msgid "Invoking @command{guix weather}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14060 +#: guix-git/doc/guix.texi:14417 msgid "Occasionally you're grumpy because substitutes are lacking and you end up building packages by yourself (@pxref{Substitutes}). The @command{guix weather} command reports on substitute availability on the specified servers so you can have an idea of whether you'll be grumpy today. It can sometimes be useful info as a user, but it is primarily useful to people running @command{guix publish} (@pxref{Invoking guix publish})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14061 +#: guix-git/doc/guix.texi:14418 #, no-wrap msgid "statistics, for substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14062 +#: guix-git/doc/guix.texi:14419 #, no-wrap msgid "availability of substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14063 +#: guix-git/doc/guix.texi:14420 #, no-wrap msgid "substitute availability" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14064 +#: guix-git/doc/guix.texi:14421 #, no-wrap msgid "weather, substitute availability" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14066 +#: guix-git/doc/guix.texi:14423 msgid "Here's a sample run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14078 +#: guix-git/doc/guix.texi:14435 #, no-wrap msgid "" "$ guix weather --substitute-urls=https://guix.example.org\n" @@ -24780,7 +25400,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14088 +#: guix-git/doc/guix.texi:14445 #, no-wrap msgid "" " 9.8% (342 out of 3,470) of the missing items are queued\n" @@ -24795,76 +25415,71 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14090 +#: guix-git/doc/guix.texi:14447 #, no-wrap msgid "continuous integration, statistics" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14101 +#: guix-git/doc/guix.texi:14458 msgid "As you can see, it reports the fraction of all the packages for which substitutes are available on the server---regardless of whether substitutes are enabled, and regardless of whether this server's signing key is authorized. It also reports the size of the compressed archives (``nars'') provided by the server, the size the corresponding store items occupy in the store (assuming deduplication is turned off), and the server's throughput. The second part gives continuous integration (CI) statistics, if the server supports it. In addition, using the @option{--coverage} option, @command{guix weather} can list ``important'' package substitutes missing on the server (see below)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14107 +#: guix-git/doc/guix.texi:14464 msgid "To achieve that, @command{guix weather} queries over HTTP(S) meta-data (@dfn{narinfos}) for all the relevant store items. Like @command{guix challenge}, it ignores signatures on those substitutes, which is innocuous since the command only gathers statistics and cannot install those substitutes." msgstr "" #. type: example -#: guix-git/doc/guix.texi:14112 +#: guix-git/doc/guix.texi:14469 #, no-wrap msgid "guix weather @var{options}@dots{} [@var{packages}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14120 +#: guix-git/doc/guix.texi:14477 msgid "When @var{packages} is omitted, @command{guix weather} checks the availability of substitutes for @emph{all} the packages, or for those specified with @option{--manifest}; otherwise it only considers the specified packages. It is also possible to query specific system types with @option{--system}. @command{guix weather} exits with a non-zero code when the fraction of available substitutes is below 100%." msgstr "" -#. type: Plain text -#: guix-git/doc/guix.texi:14122 -msgid "The available options are listed below." -msgstr "" - #. type: table -#: guix-git/doc/guix.texi:14128 +#: guix-git/doc/guix.texi:14485 msgid "@var{urls} is the space-separated list of substitute server URLs to query. When this option is omitted, the default set of substitute servers is queried." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14134 +#: guix-git/doc/guix.texi:14491 msgid "Query substitutes for @var{system}---e.g., @code{aarch64-linux}. This option can be repeated, in which case @command{guix weather} will query substitutes for several system types." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14140 +#: guix-git/doc/guix.texi:14497 msgid "Instead of querying substitutes for all the packages, only ask for those specified in @var{file}. @var{file} must contain a @dfn{manifest}, as with the @code{-m} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14143 +#: guix-git/doc/guix.texi:14500 msgid "This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14144 +#: guix-git/doc/guix.texi:14501 #, no-wrap msgid "--coverage[=@var{count}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:14145 +#: guix-git/doc/guix.texi:14502 #, no-wrap msgid "-c [@var{count}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14151 +#: guix-git/doc/guix.texi:14508 msgid "Report on substitute coverage for packages: list packages with at least @var{count} dependents (zero by default) for which substitutes are unavailable. Dependent packages themselves are not listed: if @var{b} depends on @var{a} and @var{a} has no substitutes, only @var{a} is listed, even though @var{b} usually lacks substitutes as well. The result looks like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14165 +#: guix-git/doc/guix.texi:14522 #, no-wrap msgid "" "$ guix weather --substitute-urls=@value{SUBSTITUTE-URLS} -c 10\n" @@ -24882,39 +25497,39 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14171 +#: guix-git/doc/guix.texi:14528 msgid "What this example shows is that @code{kcoreaddons} and presumably the 58 packages that depend on it have no substitutes at @code{@value{SUBSTITUTE-SERVER-1}}; likewise for @code{qgpgme} and the 46 packages that depend on it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14175 +#: guix-git/doc/guix.texi:14532 msgid "If you are a Guix developer, or if you are taking care of this build farm, you'll probably want to have a closer look at these packages: they may simply fail to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14176 +#: guix-git/doc/guix.texi:14533 #, no-wrap msgid "--display-missing" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14178 +#: guix-git/doc/guix.texi:14535 msgid "Display the list of store items for which substitutes are missing." msgstr "" #. type: section -#: guix-git/doc/guix.texi:14181 +#: guix-git/doc/guix.texi:14538 #, no-wrap msgid "Invoking @command{guix processes}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14189 +#: guix-git/doc/guix.texi:14546 msgid "The @command{guix processes} command can be useful to developers and system administrators, especially on multi-user machines and on build farms: it lists the current sessions (connections to the daemon), as well as information about the processes involved@footnote{Remote sessions, when @command{guix-daemon} is started with @option{--listen} specifying a TCP endpoint, are @emph{not} listed.}. Here's an example of the information it returns:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14195 +#: guix-git/doc/guix.texi:14552 #, no-wrap msgid "" "$ sudo guix processes\n" @@ -24925,7 +25540,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14199 +#: guix-git/doc/guix.texi:14556 #, no-wrap msgid "" "SessionPID: 19402\n" @@ -24935,7 +25550,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14212 +#: guix-git/doc/guix.texi:14569 #, no-wrap msgid "" "SessionPID: 19444\n" @@ -24953,22 +25568,22 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14219 +#: guix-git/doc/guix.texi:14576 msgid "In this example we see that @command{guix-daemon} has three clients: @command{guix environment}, @command{guix publish}, and the Cuirass continuous integration tool; their process identifier (PID) is given by the @code{ClientPID} field. The @code{SessionPID} field gives the PID of the @command{guix-daemon} sub-process of this particular session." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14226 +#: guix-git/doc/guix.texi:14583 msgid "The @code{LockHeld} fields show which store items are currently locked by this session, which corresponds to store items being built or substituted (the @code{LockHeld} field is not displayed when @command{guix processes} is not running as root). Last, by looking at the @code{ChildPID} and @code{ChildCommand} fields, we understand that these three builds are being offloaded (@pxref{Daemon Offload Setup})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14231 +#: guix-git/doc/guix.texi:14588 msgid "The output is in Recutils format so we can use the handy @command{recsel} command to select sessions of interest (@pxref{Selection Expressions,,, recutils, GNU recutils manual}). As an example, the command shows the command line and PID of the client that triggered the build of a Perl package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14237 +#: guix-git/doc/guix.texi:14594 #, no-wrap msgid "" "$ sudo guix processes | \\\n" @@ -24978,28 +25593,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14240 +#: guix-git/doc/guix.texi:14597 msgid "Additional options are listed below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14250 +#: guix-git/doc/guix.texi:14607 msgid "The default option. It outputs a set of Session recutils records that include each @code{ChildProcess} as a field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14251 +#: guix-git/doc/guix.texi:14608 #, no-wrap msgid "normalized" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14258 +#: guix-git/doc/guix.texi:14615 msgid "Normalize the output records into record sets (@pxref{Record Sets,,, recutils, GNU recutils manual}). Normalizing into record sets allows joins across record types. The example below lists the PID of each @code{ChildProcess} and the associated PID for @code{Session} that spawned the @code{ChildProcess} where the @code{Session} was started using @command{guix build}." msgstr "" #. type: example -#: guix-git/doc/guix.texi:14268 +#: guix-git/doc/guix.texi:14625 #, no-wrap msgid "" "$ guix processes --format=normalized | \\\n" @@ -25014,7 +25629,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14271 +#: guix-git/doc/guix.texi:14628 #, no-wrap msgid "" "PID: 4554\n" @@ -25023,7 +25638,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14274 +#: guix-git/doc/guix.texi:14631 #, no-wrap msgid "" "PID: 4646\n" @@ -25031,90 +25646,90 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14281 +#: guix-git/doc/guix.texi:14638 #, no-wrap msgid "system configuration" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14287 +#: guix-git/doc/guix.texi:14644 msgid "Guix System supports a consistent whole-system configuration mechanism. By that we mean that all aspects of the global system configuration---such as the available system services, timezone and locale settings, user accounts---are declared in a single place. Such a @dfn{system configuration} can be @dfn{instantiated}---i.e., effected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14297 +#: guix-git/doc/guix.texi:14654 msgid "One of the advantages of putting all the system configuration under the control of Guix is that it supports transactional system upgrades, and makes it possible to roll back to a previous system instantiation, should something go wrong with the new one (@pxref{Features}). Another advantage is that it makes it easy to replicate the exact same configuration across different machines, or at different points in time, without having to resort to additional administration tools layered on top of the own tools of the system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14302 +#: guix-git/doc/guix.texi:14659 msgid "This section describes this mechanism. First we focus on the system administrator's viewpoint---explaining how the system is configured and instantiated. Then we show how this mechanism can be extended, for instance to support new system services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14332 +#: guix-git/doc/guix.texi:14689 msgid "The operating system is configured by providing an @code{operating-system} declaration in a file that can then be passed to the @command{guix system} command (@pxref{Invoking guix system}). A simple setup, with the default system services, the default Linux-Libre kernel, initial RAM disk, and boot loader looks like this:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14333 guix-git/doc/guix.texi:35553 +#: guix-git/doc/guix.texi:14690 guix-git/doc/guix.texi:36033 #, no-wrap msgid "operating-system" msgstr "운영 체제" #. type: include -#: guix-git/doc/guix.texi:14335 +#: guix-git/doc/guix.texi:14692 #, no-wrap msgid "os-config-bare-bones.texi" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14342 +#: guix-git/doc/guix.texi:14699 msgid "This example should be self-describing. Some of the fields defined above, such as @code{host-name} and @code{bootloader}, are mandatory. Others, such as @code{packages} and @code{services}, can be omitted, in which case they get a default value." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14347 +#: guix-git/doc/guix.texi:14704 msgid "Below we discuss the effect of some of the most important fields (@pxref{operating-system Reference}, for details about all the available fields), and how to @dfn{instantiate} the operating system using @command{guix system}." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14348 +#: guix-git/doc/guix.texi:14705 #, no-wrap msgid "Bootloader" msgstr "부트로더" #. type: cindex -#: guix-git/doc/guix.texi:14350 +#: guix-git/doc/guix.texi:14707 #, no-wrap msgid "legacy boot, on Intel machines" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14351 +#: guix-git/doc/guix.texi:14708 #, no-wrap msgid "BIOS boot, on Intel machines" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14352 +#: guix-git/doc/guix.texi:14709 #, no-wrap msgid "UEFI boot" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14353 +#: guix-git/doc/guix.texi:14710 #, no-wrap msgid "EFI boot" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14359 +#: guix-git/doc/guix.texi:14716 msgid "The @code{bootloader} field describes the method that will be used to boot your system. Machines based on Intel processors can boot in ``legacy'' BIOS mode, as in the example above. However, more recent machines rely instead on the @dfn{Unified Extensible Firmware Interface} (UEFI) to boot. In that case, the @code{bootloader} field should contain something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14364 +#: guix-git/doc/guix.texi:14721 #, no-wrap msgid "" "(bootloader-configuration\n" @@ -25123,29 +25738,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14368 +#: guix-git/doc/guix.texi:14725 msgid "@xref{Bootloader Configuration}, for more information on the available configuration options." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14369 +#: guix-git/doc/guix.texi:14726 #, no-wrap msgid "Globally-Visible Packages" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:14371 +#: guix-git/doc/guix.texi:14728 #, no-wrap msgid "%base-packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14384 +#: guix-git/doc/guix.texi:14741 msgid "The @code{packages} field lists packages that will be globally visible on the system, for all user accounts---i.e., in every user's @env{PATH} environment variable---in addition to the per-user profiles (@pxref{Invoking guix package}). The @code{%base-packages} variable provides all the tools one would expect for basic user and administrator tasks---including the GNU Core Utilities, the GNU Networking Utilities, the @command{mg} lightweight text editor, @command{find}, @command{grep}, etc. The example above adds GNU@tie{}Screen to those, taken from the @code{(gnu packages screen)} module (@pxref{Package Modules}). The @code{(list package output)} syntax can be used to add a specific output of a package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14388 +#: guix-git/doc/guix.texi:14745 #, no-wrap msgid "" "(use-modules (gnu packages))\n" @@ -25154,7 +25769,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14393 +#: guix-git/doc/guix.texi:14750 #, no-wrap msgid "" "(operating-system\n" @@ -25164,18 +25779,18 @@ msgid "" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:14395 +#: guix-git/doc/guix.texi:14752 #, no-wrap msgid "specification->package" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14404 +#: guix-git/doc/guix.texi:14761 msgid "Referring to packages by variable name, like @code{isc-bind} above, has the advantage of being unambiguous; it also allows typos and such to be diagnosed right away as ``unbound variables''. The downside is that one needs to know which module defines which package, and to augment the @code{use-package-modules} line accordingly. To avoid that, one can use the @code{specification->package} procedure of the @code{(gnu packages)} module, which returns the best package for a given name or name and version:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14407 +#: guix-git/doc/guix.texi:14764 #, no-wrap msgid "" "(use-modules (gnu packages))\n" @@ -25183,7 +25798,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14413 +#: guix-git/doc/guix.texi:14770 #, no-wrap msgid "" "(operating-system\n" @@ -25194,58 +25809,58 @@ msgid "" msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14415 +#: guix-git/doc/guix.texi:14772 #, no-wrap msgid "System Services" msgstr "시스템 서비스" #. type: cindex -#: guix-git/doc/guix.texi:14417 guix-git/doc/guix.texi:34307 -#: guix-git/doc/guix.texi:35783 +#: guix-git/doc/guix.texi:14774 guix-git/doc/guix.texi:34746 +#: guix-git/doc/guix.texi:36273 #, no-wrap msgid "services" msgstr "서비스" #. type: vindex -#: guix-git/doc/guix.texi:14418 +#: guix-git/doc/guix.texi:14775 #, no-wrap msgid "%base-services" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14428 +#: guix-git/doc/guix.texi:14785 msgid "The @code{services} field lists @dfn{system services} to be made available when the system starts (@pxref{Services}). The @code{operating-system} declaration above specifies that, in addition to the basic services, we want the OpenSSH secure shell daemon listening on port 2222 (@pxref{Networking Services, @code{openssh-service-type}}). Under the hood, @code{openssh-service-type} arranges so that @command{sshd} is started with the right command-line options, possibly with supporting configuration files generated as needed (@pxref{Defining Services})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14429 +#: guix-git/doc/guix.texi:14786 #, no-wrap msgid "customization, of services" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:14430 +#: guix-git/doc/guix.texi:14787 #, no-wrap msgid "modify-services" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14434 +#: guix-git/doc/guix.texi:14791 msgid "Occasionally, instead of using the base services as is, you will want to customize them. To do this, use @code{modify-services} (@pxref{Service Reference, @code{modify-services}}) to modify the list." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:14440 +#: guix-git/doc/guix.texi:14797 msgid "auto-login to TTY" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14440 +#: guix-git/doc/guix.texi:14797 msgid "For example, suppose you want to modify @code{guix-daemon} and Mingetty (the console log-in) in the @code{%base-services} list (@pxref{Base Services, @code{%base-services}}). To do that, you can write the following in your operating system declaration:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14457 +#: guix-git/doc/guix.texi:14814 #, no-wrap msgid "" "(define %my-services\n" @@ -25261,13 +25876,13 @@ msgid "" " (mingetty-service-type config =>\n" " (mingetty-configuration\n" " (inherit config)\n" -" ;; Automatially log in as \"guest\".\n" +" ;; Automatically log in as \"guest\".\n" " (auto-login \"guest\")))))\n" "\n" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14461 +#: guix-git/doc/guix.texi:14818 #, no-wrap msgid "" "(operating-system\n" @@ -25276,49 +25891,49 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14474 +#: guix-git/doc/guix.texi:14831 msgid "This changes the configuration---i.e., the service parameters---of the @code{guix-service-type} instance, and that of all the @code{mingetty-service-type} instances in the @code{%base-services} list (@pxref{Auto-Login to a Specific TTY, see the cookbook for how to auto-login one user to a specific TTY,, guix-cookbook, GNU Guix Cookbook})). Observe how this is accomplished: first, we arrange for the original configuration to be bound to the identifier @code{config} in the @var{body}, and then we write the @var{body} so that it evaluates to the desired configuration. In particular, notice how we use @code{inherit} to create a new configuration which has the same values as the old configuration, but with a few modifications." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14481 +#: guix-git/doc/guix.texi:14838 msgid "The configuration for a typical ``desktop'' usage, with an encrypted root partition, a swap file on the root partition, the X11 display server, GNOME and Xfce (users can choose which of these desktop environments to use at the log-in screen by pressing @kbd{F1}), network management, power management, and more, would look like this:" msgstr "" #. type: include -#: guix-git/doc/guix.texi:14483 +#: guix-git/doc/guix.texi:14840 #, no-wrap msgid "os-config-desktop.texi" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14488 +#: guix-git/doc/guix.texi:14845 msgid "A graphical system with a choice of lightweight window managers instead of full-blown desktop environments would look like this:" msgstr "" #. type: include -#: guix-git/doc/guix.texi:14490 +#: guix-git/doc/guix.texi:14847 #, no-wrap msgid "os-config-lightweight-desktop.texi" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14496 +#: guix-git/doc/guix.texi:14853 msgid "This example refers to the @file{/boot/efi} file system by its UUID, @code{1234-ABCD}. Replace this UUID with the right UUID on your system, as returned by the @command{blkid} command." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14500 +#: guix-git/doc/guix.texi:14857 msgid "@xref{Desktop Services}, for the exact list of services provided by @code{%desktop-services}. @xref{X.509 Certificates}, for background information about the @code{nss-certs} package that is used here." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14507 +#: guix-git/doc/guix.texi:14864 msgid "Again, @code{%desktop-services} is just a list of service objects. If you want to remove services from there, you can do so using the procedures for list filtering (@pxref{SRFI-1 Filtering and Partitioning,,, guile, GNU Guile Reference Manual}). For instance, the following expression returns a list that contains all the services in @code{%desktop-services} minus the Avahi service:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14512 +#: guix-git/doc/guix.texi:14869 #, no-wrap msgid "" "(remove (lambda (service)\n" @@ -25327,12 +25942,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14515 +#: guix-git/doc/guix.texi:14872 msgid "Alternatively, the @code{modify-services} macro can be used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14519 +#: guix-git/doc/guix.texi:14876 #, no-wrap msgid "" "(modify-services %desktop-services\n" @@ -25340,356 +25955,356 @@ msgid "" msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14522 +#: guix-git/doc/guix.texi:14879 #, no-wrap msgid "Instantiating the System" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14529 +#: guix-git/doc/guix.texi:14886 msgid "Assuming the @code{operating-system} declaration is stored in the @file{my-system-config.scm} file, the @command{guix system reconfigure my-system-config.scm} command instantiates that configuration, and makes it the default GRUB boot entry (@pxref{Invoking guix system})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14537 +#: guix-git/doc/guix.texi:14894 msgid "The normal way to change the system configuration is by updating this file and re-running @command{guix system reconfigure}. One should never have to touch files in @file{/etc} or to run commands that modify the system state such as @command{useradd} or @command{grub-install}. In fact, you must avoid that since that would not only void your warranty but also prevent you from rolling back to previous versions of your system, should you ever need to." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14538 +#: guix-git/doc/guix.texi:14895 #, no-wrap msgid "roll-back, of the operating system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14548 +#: guix-git/doc/guix.texi:14905 msgid "Speaking of roll-back, each time you run @command{guix system reconfigure}, a new @dfn{generation} of the system is created---without modifying or deleting previous generations. Old system generations get an entry in the bootloader boot menu, allowing you to boot them in case something went wrong with the latest generation. Reassuring, no? The @command{guix system list-generations} command lists the system generations available on disk. It is also possible to roll back the system via the commands @command{guix system roll-back} and @command{guix system switch-generation}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14554 +#: guix-git/doc/guix.texi:14911 msgid "Although the @command{guix system reconfigure} command will not modify previous generations, you must take care when the current generation is not the latest (e.g., after invoking @command{guix system roll-back}), since the operation might overwrite a later generation (@pxref{Invoking guix system})." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14555 +#: guix-git/doc/guix.texi:14912 #, no-wrap msgid "The Programming Interface" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14560 +#: guix-git/doc/guix.texi:14917 msgid "At the Scheme level, the bulk of an @code{operating-system} declaration is instantiated with the following monadic procedure (@pxref{The Store Monad}):" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14561 +#: guix-git/doc/guix.texi:14918 #, no-wrap msgid "{Monadic Procedure} operating-system-derivation os" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14564 +#: guix-git/doc/guix.texi:14921 msgid "Return a derivation that builds @var{os}, an @code{operating-system} object (@pxref{Derivations})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14568 +#: guix-git/doc/guix.texi:14925 msgid "The output of the derivation is a single directory that refers to all the packages, configuration files, and other supporting files needed to instantiate @var{os}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14573 +#: guix-git/doc/guix.texi:14930 msgid "This procedure is provided by the @code{(gnu system)} module. Along with @code{(gnu services)} (@pxref{Services}), this module contains the guts of Guix System. Make sure to visit it!" msgstr "" #. type: section -#: guix-git/doc/guix.texi:14576 +#: guix-git/doc/guix.texi:14933 #, no-wrap msgid "@code{operating-system} Reference" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14581 +#: guix-git/doc/guix.texi:14938 msgid "This section summarizes all the options available in @code{operating-system} declarations (@pxref{Using the Configuration System})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14582 +#: guix-git/doc/guix.texi:14939 #, no-wrap msgid "{Data Type} operating-system" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14586 +#: guix-git/doc/guix.texi:14943 msgid "This is the data type representing an operating system configuration. By that, we mean all the global system configuration, not per-user configuration (@pxref{Using the Configuration System})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14588 +#: guix-git/doc/guix.texi:14945 #, no-wrap msgid "@code{kernel} (default: @code{linux-libre})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14593 +#: guix-git/doc/guix.texi:14950 msgid "The package object of the operating system kernel to use@footnote{Currently only the Linux-libre kernel is fully supported. Using GNU@tie{}mach with the GNU@tie{}Hurd is experimental and only available when building a virtual machine disk image.}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14594 guix-git/doc/guix.texi:30733 +#: guix-git/doc/guix.texi:14951 guix-git/doc/guix.texi:31098 #, no-wrap msgid "hurd" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14595 +#: guix-git/doc/guix.texi:14952 #, no-wrap msgid "@code{hurd} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14600 +#: guix-git/doc/guix.texi:14957 msgid "The package object of the Hurd to be started by the kernel. When this field is set, produce a GNU/Hurd operating system. In that case, @code{kernel} must also be set to the @code{gnumach} package---the microkernel the Hurd runs on." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:14603 +#: guix-git/doc/guix.texi:14960 msgid "This feature is experimental and only supported for disk images." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14605 +#: guix-git/doc/guix.texi:14962 #, no-wrap msgid "@code{kernel-loadable-modules} (default: '())" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14608 +#: guix-git/doc/guix.texi:14965 msgid "A list of objects (usually packages) to collect loadable kernel modules from--e.g. @code{(list ddcci-driver-linux)}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14609 +#: guix-git/doc/guix.texi:14966 #, no-wrap msgid "@code{kernel-arguments} (default: @code{%default-kernel-arguments})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14612 +#: guix-git/doc/guix.texi:14969 msgid "List of strings or gexps representing additional arguments to pass on the command-line of the kernel---e.g., @code{(\"console=ttyS0\")}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14613 guix-git/doc/guix.texi:34539 -#: guix-git/doc/guix.texi:34558 +#: guix-git/doc/guix.texi:14970 guix-git/doc/guix.texi:34978 +#: guix-git/doc/guix.texi:34997 #, no-wrap msgid "bootloader" msgstr "부트로더" #. type: table -#: guix-git/doc/guix.texi:14615 +#: guix-git/doc/guix.texi:14972 msgid "The system bootloader configuration object. @xref{Bootloader Configuration}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14616 guix-git/doc/guix.texi:34732 +#: guix-git/doc/guix.texi:14973 guix-git/doc/guix.texi:35171 #, no-wrap msgid "label" msgstr "이름표" #. type: table -#: guix-git/doc/guix.texi:14619 +#: guix-git/doc/guix.texi:14976 msgid "This is the label (a string) as it appears in the bootloader's menu entry. The default label includes the kernel name and version." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14620 guix-git/doc/guix.texi:16318 -#: guix-git/doc/guix.texi:19503 guix-git/doc/guix.texi:34662 +#: guix-git/doc/guix.texi:14977 guix-git/doc/guix.texi:16675 +#: guix-git/doc/guix.texi:19865 guix-git/doc/guix.texi:35101 #, no-wrap msgid "@code{keyboard-layout} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14625 +#: guix-git/doc/guix.texi:14982 msgid "This field specifies the keyboard layout to use in the console. It can be either @code{#f}, in which case the default keyboard layout is used (usually US English), or a @code{} record. @xref{Keyboard Layout}, for more information." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14630 +#: guix-git/doc/guix.texi:14987 msgid "This keyboard layout is in effect as soon as the kernel has booted. For instance, it is the keyboard layout in effect when you type a passphrase if your root file system is on a @code{luks-device-mapping} mapped device (@pxref{Mapped Devices})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:14637 +#: guix-git/doc/guix.texi:14994 msgid "This does @emph{not} specify the keyboard layout used by the bootloader, nor that used by the graphical display server. @xref{Bootloader Configuration}, for information on how to specify the bootloader's keyboard layout. @xref{X Window}, for information on how to specify the keyboard layout used by the X Window System." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14639 +#: guix-git/doc/guix.texi:14996 #, no-wrap msgid "@code{initrd-modules} (default: @code{%base-initrd-modules})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14640 guix-git/doc/guix.texi:34344 -#: guix-git/doc/guix.texi:34467 +#: guix-git/doc/guix.texi:14997 guix-git/doc/guix.texi:34783 +#: guix-git/doc/guix.texi:34906 #, no-wrap msgid "initrd" msgstr "initrd" #. type: cindex -#: guix-git/doc/guix.texi:14641 guix-git/doc/guix.texi:34345 -#: guix-git/doc/guix.texi:34468 +#: guix-git/doc/guix.texi:14998 guix-git/doc/guix.texi:34784 +#: guix-git/doc/guix.texi:34907 #, no-wrap msgid "initial RAM disk" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14644 +#: guix-git/doc/guix.texi:15001 msgid "The list of Linux kernel modules that need to be available in the initial RAM disk. @xref{Initial RAM Disk}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14645 +#: guix-git/doc/guix.texi:15002 #, no-wrap msgid "@code{initrd} (default: @code{base-initrd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14649 +#: guix-git/doc/guix.texi:15006 msgid "A procedure that returns an initial RAM disk for the Linux kernel. This field is provided to support low-level customization and should rarely be needed for casual use. @xref{Initial RAM Disk}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14650 +#: guix-git/doc/guix.texi:15007 #, no-wrap msgid "@code{firmware} (default: @code{%base-firmware})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14651 +#: guix-git/doc/guix.texi:15008 #, no-wrap msgid "firmware" msgstr "펌웨어" #. type: table -#: guix-git/doc/guix.texi:14653 +#: guix-git/doc/guix.texi:15010 msgid "List of firmware packages loadable by the operating system kernel." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14658 +#: guix-git/doc/guix.texi:15015 msgid "The default includes firmware needed for Atheros- and Broadcom-based WiFi devices (Linux-libre modules @code{ath9k} and @code{b43-open}, respectively). @xref{Hardware Considerations}, for more info on supported hardware." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14659 guix-git/doc/guix.texi:35572 +#: guix-git/doc/guix.texi:15016 guix-git/doc/guix.texi:36052 #, no-wrap msgid "host-name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14661 +#: guix-git/doc/guix.texi:15018 msgid "The host name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14662 +#: guix-git/doc/guix.texi:15019 #, no-wrap msgid "hosts-file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14663 +#: guix-git/doc/guix.texi:15020 #, no-wrap msgid "hosts file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14668 +#: guix-git/doc/guix.texi:15025 msgid "A file-like object (@pxref{G-Expressions, file-like objects}) for use as @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). The default is a file with entries for @code{localhost} and @var{host-name}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14669 +#: guix-git/doc/guix.texi:15026 #, no-wrap msgid "@code{mapped-devices} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14671 +#: guix-git/doc/guix.texi:15028 msgid "A list of mapped devices. @xref{Mapped Devices}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14672 +#: guix-git/doc/guix.texi:15029 #, no-wrap msgid "file-systems" msgstr "파일 시스템" #. type: table -#: guix-git/doc/guix.texi:14674 +#: guix-git/doc/guix.texi:15031 msgid "A list of file systems. @xref{File Systems}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14675 +#: guix-git/doc/guix.texi:15032 #, no-wrap msgid "@code{swap-devices} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14676 +#: guix-git/doc/guix.texi:15033 #, no-wrap msgid "swap devices" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14678 +#: guix-git/doc/guix.texi:15035 msgid "A list of swap spaces. @xref{Swap Space}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15036 #, no-wrap msgid "@code{users} (default: @code{%base-user-accounts})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:14680 +#: guix-git/doc/guix.texi:15037 #, no-wrap msgid "@code{groups} (default: @code{%base-groups})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14682 +#: guix-git/doc/guix.texi:15039 msgid "List of user accounts and groups. @xref{User Accounts}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14685 +#: guix-git/doc/guix.texi:15042 msgid "If the @code{users} list lacks a user account with UID@tie{}0, a ``root'' account with UID@tie{}0 is automatically added." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14686 +#: guix-git/doc/guix.texi:15043 #, no-wrap msgid "@code{skeletons} (default: @code{(default-skeletons)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14690 +#: guix-git/doc/guix.texi:15047 msgid "A list of target file name/file-like object tuples (@pxref{G-Expressions, file-like objects}). These are the skeleton files that will be added to the home directory of newly-created user accounts." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14692 +#: guix-git/doc/guix.texi:15049 msgid "For instance, a valid value may look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14698 +#: guix-git/doc/guix.texi:15055 #, no-wrap msgid "" "`((\".bashrc\" ,(plain-file \"bashrc\" \"echo Hello\\n\"))\n" @@ -25699,29 +26314,29 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14700 +#: guix-git/doc/guix.texi:15057 #, no-wrap msgid "@code{issue} (default: @code{%default-issue})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14703 +#: guix-git/doc/guix.texi:15060 msgid "A string denoting the contents of the @file{/etc/issue} file, which is displayed when users log in on a text console." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14704 +#: guix-git/doc/guix.texi:15061 #, no-wrap msgid "@code{packages} (default: @code{%base-packages})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14708 +#: guix-git/doc/guix.texi:15065 msgid "A list of packages to be installed in the global profile, which is accessible at @file{/run/current-system/profile}. Each element is either a package variable or a package/output tuple. Here's a simple example of both:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14713 +#: guix-git/doc/guix.texi:15070 #, no-wrap msgid "" "(cons* git ; the default \"out\" output\n" @@ -25730,172 +26345,172 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14718 +#: guix-git/doc/guix.texi:15075 msgid "The default set includes core utilities and it is good practice to install non-core utilities in user profiles (@pxref{Invoking guix package})." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14719 +#: guix-git/doc/guix.texi:15076 #, no-wrap msgid "timezone" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14721 +#: guix-git/doc/guix.texi:15078 msgid "A timezone identifying string---e.g., @code{\"Europe/Paris\"}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14725 +#: guix-git/doc/guix.texi:15082 msgid "You can run the @command{tzselect} command to find out which timezone string corresponds to your region. Choosing an invalid timezone name causes @command{guix system} to fail." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14726 guix-git/doc/guix.texi:21115 +#: guix-git/doc/guix.texi:15083 guix-git/doc/guix.texi:21477 #, no-wrap msgid "@code{locale} (default: @code{\"en_US.utf8\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14729 +#: guix-git/doc/guix.texi:15086 msgid "The name of the default locale (@pxref{Locale Names,,, libc, The GNU C Library Reference Manual}). @xref{Locales}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14730 +#: guix-git/doc/guix.texi:15087 #, no-wrap msgid "@code{locale-definitions} (default: @code{%default-locale-definitions})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14733 +#: guix-git/doc/guix.texi:15090 msgid "The list of locale definitions to be compiled and that may be used at run time. @xref{Locales}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14734 +#: guix-git/doc/guix.texi:15091 #, no-wrap msgid "@code{locale-libcs} (default: @code{(list @var{glibc})})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14738 +#: guix-git/doc/guix.texi:15095 msgid "The list of GNU@tie{}libc packages whose locale data and tools are used to build the locale definitions. @xref{Locales}, for compatibility considerations that justify this option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14739 +#: guix-git/doc/guix.texi:15096 #, no-wrap msgid "@code{name-service-switch} (default: @code{%default-nss})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14743 +#: guix-git/doc/guix.texi:15100 msgid "Configuration of the libc name service switch (NSS)---a @code{} object. @xref{Name Service Switch}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14744 +#: guix-git/doc/guix.texi:15101 #, no-wrap msgid "@code{services} (default: @code{%base-services})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14746 +#: guix-git/doc/guix.texi:15103 msgid "A list of service objects denoting system services. @xref{Services}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14747 +#: guix-git/doc/guix.texi:15104 #, no-wrap msgid "essential services" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14748 +#: guix-git/doc/guix.texi:15105 #, no-wrap msgid "@code{essential-services} (default: ...)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14753 +#: guix-git/doc/guix.texi:15110 msgid "The list of ``essential services''---i.e., things like instances of @code{system-service-type} and @code{host-name-service-type} (@pxref{Service Reference}), which are derived from the operating system definition itself. As a user you should @emph{never} need to touch this field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14754 +#: guix-git/doc/guix.texi:15111 #, no-wrap msgid "@code{pam-services} (default: @code{(base-pam-services)})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14755 +#: guix-git/doc/guix.texi:15112 #, no-wrap msgid "PAM" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14756 +#: guix-git/doc/guix.texi:15113 #, no-wrap msgid "pluggable authentication modules" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14759 +#: guix-git/doc/guix.texi:15116 msgid "Linux @dfn{pluggable authentication module} (PAM) services." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14760 +#: guix-git/doc/guix.texi:15117 #, no-wrap msgid "@code{setuid-programs} (default: @code{%setuid-programs})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14763 +#: guix-git/doc/guix.texi:15120 msgid "List of @code{}. @xref{Setuid Programs}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14764 +#: guix-git/doc/guix.texi:15121 #, no-wrap msgid "@code{sudoers-file} (default: @code{%sudoers-specification})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14765 +#: guix-git/doc/guix.texi:15122 #, no-wrap msgid "sudoers file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14768 +#: guix-git/doc/guix.texi:15125 msgid "The contents of the @file{/etc/sudoers} file as a file-like object (@pxref{G-Expressions, @code{local-file} and @code{plain-file}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14773 +#: guix-git/doc/guix.texi:15130 msgid "This file specifies which users can use the @command{sudo} command, what they are allowed to do, and what privileges they may gain. The default is that only @code{root} and members of the @code{wheel} group may use @code{sudo}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14776 +#: guix-git/doc/guix.texi:15133 #, no-wrap msgid "{Scheme Syntax} this-operating-system" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14779 +#: guix-git/doc/guix.texi:15136 msgid "When used in the @emph{lexical scope} of an operating system field definition, this identifier resolves to the operating system being defined." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14782 +#: guix-git/doc/guix.texi:15139 msgid "The example below shows how to refer to the operating system being defined in the definition of the @code{label} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14785 guix-git/doc/guix.texi:18711 +#: guix-git/doc/guix.texi:15142 guix-git/doc/guix.texi:19073 #, no-wrap msgid "" "(use-modules (gnu) (guix))\n" @@ -25903,7 +26518,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14790 +#: guix-git/doc/guix.texi:15147 #, no-wrap msgid "" "(operating-system\n" @@ -25913,17 +26528,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14794 +#: guix-git/doc/guix.texi:15151 msgid "It is an error to refer to @code{this-operating-system} outside an operating system definition." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14805 +#: guix-git/doc/guix.texi:15162 msgid "The list of file systems to be mounted is specified in the @code{file-systems} field of the operating system declaration (@pxref{Using the Configuration System}). Each file system is declared using the @code{file-system} form, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14811 +#: guix-git/doc/guix.texi:15168 #, no-wrap msgid "" "(file-system\n" @@ -25933,68 +26548,68 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14815 +#: guix-git/doc/guix.texi:15172 msgid "As usual, some of the fields are mandatory---those shown in the example above---while others can be omitted. These are described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14816 +#: guix-git/doc/guix.texi:15173 #, no-wrap msgid "{Data Type} file-system" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14819 +#: guix-git/doc/guix.texi:15176 msgid "Objects of this type represent file systems to be mounted. They contain the following members:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14821 guix-git/doc/guix.texi:15201 -#: guix-git/doc/guix.texi:17317 +#: guix-git/doc/guix.texi:15178 guix-git/doc/guix.texi:15558 +#: guix-git/doc/guix.texi:17679 #, no-wrap msgid "type" msgstr "유형" #. type: table -#: guix-git/doc/guix.texi:14824 +#: guix-git/doc/guix.texi:15181 msgid "This is a string specifying the type of the file system---e.g., @code{\"ext4\"}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14825 +#: guix-git/doc/guix.texi:15182 #, no-wrap msgid "mount-point" msgstr "적재점" #. type: table -#: guix-git/doc/guix.texi:14827 +#: guix-git/doc/guix.texi:15184 msgid "This designates the place where the file system is to be mounted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14828 guix-git/doc/guix.texi:17267 +#: guix-git/doc/guix.texi:15185 guix-git/doc/guix.texi:17629 #, no-wrap msgid "device" msgstr "장치" #. type: table -#: guix-git/doc/guix.texi:14838 +#: guix-git/doc/guix.texi:15195 msgid "This names the ``source'' of the file system. It can be one of three things: a file system label, a file system UUID, or the name of a @file{/dev} node. Labels and UUIDs offer a way to refer to file systems without having to hard-code their actual device name@footnote{Note that, while it is tempting to use @file{/dev/disk/by-uuid} and similar device names to achieve the same result, this is not recommended: These special device nodes are created by the udev daemon and may be unavailable at the time the device is mounted.}." msgstr "" #. type: findex -#: guix-git/doc/guix.texi:14839 +#: guix-git/doc/guix.texi:15196 #, no-wrap msgid "file-system-label" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14844 +#: guix-git/doc/guix.texi:15201 msgid "File system labels are created using the @code{file-system-label} procedure, UUIDs are created using @code{uuid}, and @file{/dev} node are plain strings. Here's an example of a file system referred to by its label, as shown by the @command{e2label} command:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14850 +#: guix-git/doc/guix.texi:15207 #, no-wrap msgid "" "(file-system\n" @@ -26004,19 +26619,19 @@ msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14852 guix-git/doc/guix.texi:33130 -#: guix-git/doc/guix.texi:33146 +#: guix-git/doc/guix.texi:15209 guix-git/doc/guix.texi:33495 +#: guix-git/doc/guix.texi:33511 #, no-wrap msgid "uuid" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14860 +#: guix-git/doc/guix.texi:15217 msgid "UUIDs are converted from their string representation (as shown by the @command{tune2fs -l} command) using the @code{uuid} form@footnote{The @code{uuid} form expects 16-byte UUIDs as defined in @uref{https://tools.ietf.org/html/rfc4122, RFC@tie{}4122}. This is the form of UUID used by the ext2 family of file systems and others, but it is different from ``UUIDs'' found in FAT file systems, for instance.}, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14866 +#: guix-git/doc/guix.texi:15223 #, no-wrap msgid "" "(file-system\n" @@ -26026,168 +26641,168 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14874 +#: guix-git/doc/guix.texi:15231 msgid "When the source of a file system is a mapped device (@pxref{Mapped Devices}), its @code{device} field @emph{must} refer to the mapped device name---e.g., @file{\"/dev/mapper/root-partition\"}. This is required so that the system knows that mounting the file system depends on having the corresponding device mapping established." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14875 +#: guix-git/doc/guix.texi:15232 #, no-wrap msgid "@code{flags} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14885 +#: guix-git/doc/guix.texi:15242 msgid "This is a list of symbols denoting mount flags. Recognized flags include @code{read-only}, @code{bind-mount}, @code{no-dev} (disallow access to special files), @code{no-suid} (ignore setuid and setgid bits), @code{no-atime} (do not update file access times), @code{strict-atime} (update file access time), @code{lazy-time} (only update time on the in-memory version of the file inode), and @code{no-exec} (disallow program execution). @xref{Mount-Unmount-Remount,,, libc, The GNU C Library Reference Manual}, for more information on these flags." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14886 +#: guix-git/doc/guix.texi:15243 #, no-wrap msgid "@code{options} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14895 +#: guix-git/doc/guix.texi:15252 msgid "This is either @code{#f}, or a string denoting mount options passed to the file system driver. @xref{Mount-Unmount-Remount,,, libc, The GNU C Library Reference Manual}, for details and run @command{man 8 mount} for options for various file systems. Note that the @code{file-system-options->alist} and @code{alist->file-system-options} procedures from @code{(gnu system file-systems)} can be used to convert file system options given as an association list to the string representation, and vice-versa." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14896 +#: guix-git/doc/guix.texi:15253 #, no-wrap msgid "@code{mount?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14901 +#: guix-git/doc/guix.texi:15258 msgid "This value indicates whether to automatically mount the file system when the system is brought up. When set to @code{#f}, the file system gets an entry in @file{/etc/fstab} (read by the @command{mount} command) but is not automatically mounted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14902 +#: guix-git/doc/guix.texi:15259 #, no-wrap msgid "@code{needed-for-boot?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14907 +#: guix-git/doc/guix.texi:15264 msgid "This Boolean value indicates whether the file system is needed when booting. If that is true, then the file system is mounted when the initial RAM disk (initrd) is loaded. This is always the case, for instance, for the root file system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14908 +#: guix-git/doc/guix.texi:15265 #, no-wrap msgid "@code{check?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14912 +#: guix-git/doc/guix.texi:15269 msgid "This Boolean indicates whether the file system should be checked for errors before being mounted. How and when this happens can be further adjusted with the following options." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14913 +#: guix-git/doc/guix.texi:15270 #, no-wrap msgid "@code{skip-check-if-clean?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14918 +#: guix-git/doc/guix.texi:15275 msgid "When true, this Boolean indicates that a file system check triggered by @code{check?} may exit early if the file system is marked as ``clean'', meaning that it was previously correctly unmounted and should not contain errors." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14922 +#: guix-git/doc/guix.texi:15279 msgid "Setting this to false will always force a full consistency check when @code{check?} is true. This may take a very long time and is not recommended on healthy systems---in fact, it may reduce reliability!" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14926 +#: guix-git/doc/guix.texi:15283 msgid "Conversely, some primitive file systems like @code{fat} do not keep track of clean shutdowns and will perform a full scan regardless of the value of this option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14927 +#: guix-git/doc/guix.texi:15284 #, no-wrap msgid "@code{repair} (default: @code{'preen})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14930 +#: guix-git/doc/guix.texi:15287 msgid "When @code{check?} finds errors, it can (try to) repair them and continue booting. This option controls when and how to do so." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14934 +#: guix-git/doc/guix.texi:15291 msgid "If false, try not to modify the file system at all. Checking certain file systems like @code{jfs} may still write to the device to replay the journal. No repairs will be attempted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14937 +#: guix-git/doc/guix.texi:15294 msgid "If @code{#t}, try to repair any errors found and assume ``yes'' to all questions. This will fix the most errors, but may be risky." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14941 +#: guix-git/doc/guix.texi:15298 msgid "If @code{'preen}, repair only errors that are safe to fix without human interaction. What that means is left up to the developers of each file system and may be equivalent to ``none'' or ``all''." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14942 +#: guix-git/doc/guix.texi:15299 #, no-wrap msgid "@code{create-mount-point?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14944 +#: guix-git/doc/guix.texi:15301 msgid "When true, the mount point is created if it does not exist yet." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14945 +#: guix-git/doc/guix.texi:15302 #, no-wrap msgid "@code{mount-may-fail?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14950 +#: guix-git/doc/guix.texi:15307 msgid "When true, this indicates that mounting this file system can fail but that should not be considered an error. This is useful in unusual cases; an example of this is @code{efivarfs}, a file system that can only be mounted on EFI/UEFI systems." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14951 guix-git/doc/guix.texi:15347 +#: guix-git/doc/guix.texi:15308 guix-git/doc/guix.texi:15704 #, no-wrap msgid "@code{dependencies} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14955 +#: guix-git/doc/guix.texi:15312 msgid "This is a list of @code{} or @code{} objects representing file systems that must be mounted or mapped devices that must be opened before (and unmounted or closed after) this one." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14959 +#: guix-git/doc/guix.texi:15316 msgid "As an example, consider a hierarchy of mounts: @file{/sys/fs/cgroup} is a dependency of @file{/sys/fs/cgroup/cpu} and @file{/sys/fs/cgroup/memory}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14962 +#: guix-git/doc/guix.texi:15319 msgid "Another example is a file system that depends on a mapped device, for example for an encrypted partition (@pxref{Mapped Devices})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14965 +#: guix-git/doc/guix.texi:15322 #, no-wrap msgid "{Scheme Procedure} file-system-label @var{str}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14968 +#: guix-git/doc/guix.texi:15325 msgid "This procedure returns an opaque file system label from @var{str}, a string:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14972 +#: guix-git/doc/guix.texi:15329 #, no-wrap msgid "" "(file-system-label \"home\")\n" @@ -26195,104 +26810,104 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14976 +#: guix-git/doc/guix.texi:15333 msgid "File system labels are used to refer to file systems by label rather than by device name. See above for examples." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14980 +#: guix-git/doc/guix.texi:15337 msgid "The @code{(gnu system file-systems)} exports the following useful variables." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14981 +#: guix-git/doc/guix.texi:15338 #, no-wrap msgid "{Scheme Variable} %base-file-systems" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14986 +#: guix-git/doc/guix.texi:15343 msgid "These are essential file systems that are required on normal systems, such as @code{%pseudo-terminal-file-system} and @code{%immutable-store} (see below). Operating system declarations should always contain at least these." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14988 +#: guix-git/doc/guix.texi:15345 #, no-wrap msgid "{Scheme Variable} %pseudo-terminal-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14994 +#: guix-git/doc/guix.texi:15351 msgid "This is the file system to be mounted as @file{/dev/pts}. It supports @dfn{pseudo-terminals} created @i{via} @code{openpty} and similar functions (@pxref{Pseudo-Terminals,,, libc, The GNU C Library Reference Manual}). Pseudo-terminals are used by terminal emulators such as @command{xterm}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14996 +#: guix-git/doc/guix.texi:15353 #, no-wrap msgid "{Scheme Variable} %shared-memory-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15000 +#: guix-git/doc/guix.texi:15357 msgid "This file system is mounted as @file{/dev/shm} and is used to support memory sharing across processes (@pxref{Memory-mapped I/O, @code{shm_open},, libc, The GNU C Library Reference Manual})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15002 +#: guix-git/doc/guix.texi:15359 #, no-wrap msgid "{Scheme Variable} %immutable-store" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15007 +#: guix-git/doc/guix.texi:15364 msgid "This file system performs a read-only ``bind mount'' of @file{/gnu/store}, making it read-only for all the users including @code{root}. This prevents against accidental modification by software running as @code{root} or by system administrators." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15010 +#: guix-git/doc/guix.texi:15367 msgid "The daemon itself is still able to write to the store: it remounts it read-write in its own ``name space.''" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15012 +#: guix-git/doc/guix.texi:15369 #, no-wrap msgid "{Scheme Variable} %binary-format-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15016 +#: guix-git/doc/guix.texi:15373 msgid "The @code{binfmt_misc} file system, which allows handling of arbitrary executable file types to be delegated to user space. This requires the @code{binfmt.ko} kernel module to be loaded." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15018 +#: guix-git/doc/guix.texi:15375 #, no-wrap msgid "{Scheme Variable} %fuse-control-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15022 +#: guix-git/doc/guix.texi:15379 msgid "The @code{fusectl} file system, which allows unprivileged users to mount and unmount user-space FUSE file systems. This requires the @code{fuse.ko} kernel module to be loaded." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15026 +#: guix-git/doc/guix.texi:15383 msgid "The @code{(gnu system uuid)} module provides tools to deal with file system ``unique identifiers'' (UUIDs)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15027 +#: guix-git/doc/guix.texi:15384 #, no-wrap msgid "{Scheme Procedure} uuid @var{str} [@var{type}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15030 +#: guix-git/doc/guix.texi:15387 msgid "Return an opaque UUID (unique identifier) object of the given @var{type} (a symbol) by parsing @var{str} (a string):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15034 +#: guix-git/doc/guix.texi:15391 #, no-wrap msgid "" "(uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\")\n" @@ -26301,7 +26916,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15037 +#: guix-git/doc/guix.texi:15394 #, no-wrap msgid "" "(uuid \"1234-ABCD\" 'fat)\n" @@ -26309,33 +26924,33 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15041 +#: guix-git/doc/guix.texi:15398 msgid "@var{type} may be one of @code{dce}, @code{iso9660}, @code{fat}, @code{ntfs}, or one of the commonly found synonyms for these." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15044 +#: guix-git/doc/guix.texi:15401 msgid "UUIDs are another way to unambiguously refer to file systems in operating system configuration. See the examples above." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:15047 guix-git/doc/guix.texi:15048 +#: guix-git/doc/guix.texi:15404 guix-git/doc/guix.texi:15405 #, no-wrap msgid "Btrfs file system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15054 +#: guix-git/doc/guix.texi:15411 msgid "The Btrfs has special features, such as subvolumes, that merit being explained in more details. The following section attempts to cover basic as well as complex uses of a Btrfs file system with the Guix System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15057 +#: guix-git/doc/guix.texi:15414 msgid "In its simplest usage, a Btrfs file system can be described, for example, by:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15063 +#: guix-git/doc/guix.texi:15420 #, no-wrap msgid "" "(file-system\n" @@ -26345,12 +26960,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15069 +#: guix-git/doc/guix.texi:15426 msgid "The example below is more complex, as it makes use of a Btrfs subvolume, named @code{rootfs}. The parent Btrfs file system is labeled @code{my-btrfs-pool}, and is located on an encrypted device (hence the dependency on @code{mapped-devices}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15077 +#: guix-git/doc/guix.texi:15434 #, no-wrap msgid "" "(file-system\n" @@ -26362,17 +26977,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15088 +#: guix-git/doc/guix.texi:15445 msgid "Some bootloaders, for example GRUB, only mount a Btrfs partition at its top level during the early boot, and rely on their configuration to refer to the correct subvolume path within that top level. The bootloaders operating in this way typically produce their configuration on a running system where the Btrfs partitions are already mounted and where the subvolume information is readily available. As an example, @command{grub-mkconfig}, the configuration generator command shipped with GRUB, reads @file{/proc/self/mountinfo} to determine the top-level path of a subvolume." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15096 +#: guix-git/doc/guix.texi:15453 msgid "The Guix System produces a bootloader configuration using the operating system configuration as its sole input; it is therefore necessary to extract the subvolume name on which @file{/gnu/store} lives (if any) from that operating system configuration. To better illustrate, consider a subvolume named 'rootfs' which contains the root file system data. In such situation, the GRUB bootloader would only see the top level of the root Btrfs partition, e.g.:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15103 +#: guix-git/doc/guix.texi:15460 #, no-wrap msgid "" "/ (top level)\n" @@ -26383,17 +26998,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15108 +#: guix-git/doc/guix.texi:15465 msgid "Thus, the subvolume name must be prepended to the @file{/gnu/store} path of the kernel, initrd binaries and any other files referred to in the GRUB configuration that must be found during the early boot." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15111 +#: guix-git/doc/guix.texi:15468 msgid "The next example shows a nested hierarchy of subvolumes and directories:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15118 +#: guix-git/doc/guix.texi:15475 #, no-wrap msgid "" "/ (top level)\n" @@ -26404,17 +27019,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15125 +#: guix-git/doc/guix.texi:15482 msgid "This scenario would work without mounting the 'store' subvolume. Mounting 'rootfs' is sufficient, since the subvolume name matches its intended mount point in the file system hierarchy. Alternatively, the 'store' subvolume could be referred to by setting the @code{subvol} option to either @code{/rootfs/gnu/store} or @code{rootfs/gnu/store}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15127 +#: guix-git/doc/guix.texi:15484 msgid "Finally, a more contrived example of nested subvolumes:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15134 +#: guix-git/doc/guix.texi:15491 #, no-wrap msgid "" "/ (top level)\n" @@ -26425,12 +27040,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15141 +#: guix-git/doc/guix.texi:15498 msgid "Here, the 'guix-store' subvolume doesn't match its intended mount point, so it is necessary to mount it. The subvolume must be fully specified, by passing its file name to the @code{subvol} option. To illustrate, the 'guix-store' subvolume could be mounted on @file{/gnu/store} by using a file system declaration such as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15149 +#: guix-git/doc/guix.texi:15506 #, no-wrap msgid "" "(file-system\n" @@ -26442,128 +27057,128 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15154 +#: guix-git/doc/guix.texi:15511 #, no-wrap msgid "device mapping" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15155 +#: guix-git/doc/guix.texi:15512 #, no-wrap msgid "mapped devices" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15172 +#: guix-git/doc/guix.texi:15529 msgid "The Linux kernel has a notion of @dfn{device mapping}: a block device, such as a hard disk partition, can be @dfn{mapped} into another device, usually in @code{/dev/mapper/}, with additional processing over the data that flows through it@footnote{Note that the GNU@tie{}Hurd makes no difference between the concept of a ``mapped device'' and that of a file system: both boil down to @emph{translating} input/output operations made on a file to operations on its backing store. Thus, the Hurd implements mapped devices, like file systems, using the generic @dfn{translator} mechanism (@pxref{Translators,,, hurd, The GNU Hurd Reference Manual}).}. A typical example is encryption device mapping: all writes to the mapped device are encrypted, and all reads are deciphered, transparently. Guix extends this notion by considering any device or set of devices that are @dfn{transformed} in some way to create a new device; for instance, RAID devices are obtained by @dfn{assembling} several other devices, such as hard disks or partitions, into a new one that behaves as one partition." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15175 +#: guix-git/doc/guix.texi:15532 msgid "Mapped devices are declared using the @code{mapped-device} form, defined as follows; for examples, see below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15176 +#: guix-git/doc/guix.texi:15533 #, no-wrap msgid "{Data Type} mapped-device" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15179 +#: guix-git/doc/guix.texi:15536 msgid "Objects of this type represent device mappings that will be made when the system boots up." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15186 +#: guix-git/doc/guix.texi:15543 msgid "This is either a string specifying the name of the block device to be mapped, such as @code{\"/dev/sda3\"}, or a list of such strings when several devices need to be assembled for creating a new one. In case of LVM this is a string specifying name of the volume group to be mapped." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:15187 guix-git/doc/guix.texi:15342 +#: guix-git/doc/guix.texi:15544 guix-git/doc/guix.texi:15699 #, no-wrap msgid "target" msgstr "대상" #. type: table -#: guix-git/doc/guix.texi:15196 +#: guix-git/doc/guix.texi:15553 msgid "This string specifies the name of the resulting mapped device. For kernel mappers such as encrypted devices of type @code{luks-device-mapping}, specifying @code{\"my-partition\"} leads to the creation of the @code{\"/dev/mapper/my-partition\"} device. For RAID devices of type @code{raid-device-mapping}, the full device name such as @code{\"/dev/md0\"} needs to be given. LVM logical volumes of type @code{lvm-device-mapping} need to be specified as @code{\"VGNAME-LVNAME\"}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:15197 guix-git/doc/guix.texi:34634 +#: guix-git/doc/guix.texi:15554 guix-git/doc/guix.texi:35073 #, no-wrap msgid "targets" msgstr "대상" #. type: table -#: guix-git/doc/guix.texi:15200 +#: guix-git/doc/guix.texi:15557 msgid "This list of strings specifies names of the resulting mapped devices in case there are several. The format is identical to @var{target}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15204 +#: guix-git/doc/guix.texi:15561 msgid "This must be a @code{mapped-device-kind} object, which specifies how @var{source} is mapped to @var{target}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15207 +#: guix-git/doc/guix.texi:15564 #, no-wrap msgid "{Scheme Variable} luks-device-mapping" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15211 +#: guix-git/doc/guix.texi:15568 msgid "This defines LUKS block device encryption using the @command{cryptsetup} command from the package with the same name. It relies on the @code{dm-crypt} Linux kernel module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15213 +#: guix-git/doc/guix.texi:15570 #, no-wrap msgid "{Scheme Variable} raid-device-mapping" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15218 +#: guix-git/doc/guix.texi:15575 msgid "This defines a RAID device, which is assembled using the @code{mdadm} command from the package with the same name. It requires a Linux kernel module for the appropriate RAID level to be loaded, such as @code{raid456} for RAID-4, RAID-5 or RAID-6, or @code{raid10} for RAID-10." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15220 +#: guix-git/doc/guix.texi:15577 #, no-wrap msgid "LVM, logical volume manager" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15221 +#: guix-git/doc/guix.texi:15578 #, no-wrap msgid "{Scheme Variable} lvm-device-mapping" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15226 +#: guix-git/doc/guix.texi:15583 msgid "This defines one or more logical volumes for the Linux @uref{https://www.sourceware.org/lvm2/, Logical Volume Manager (LVM)}. The volume group is activated by the @command{vgchange} command from the @code{lvm2} package." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15228 +#: guix-git/doc/guix.texi:15585 #, no-wrap msgid "disk encryption" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15229 +#: guix-git/doc/guix.texi:15586 #, no-wrap msgid "LUKS" msgstr "LUKS" #. type: Plain text -#: guix-git/doc/guix.texi:15237 +#: guix-git/doc/guix.texi:15594 msgid "The following example specifies a mapping from @file{/dev/sda3} to @file{/dev/mapper/home} using LUKS---the @url{https://gitlab.com/cryptsetup/cryptsetup,Linux Unified Key Setup}, a standard mechanism for disk encryption. The @file{/dev/mapper/home} device can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15243 +#: guix-git/doc/guix.texi:15600 #, no-wrap msgid "" "(mapped-device\n" @@ -26573,23 +27188,23 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15248 +#: guix-git/doc/guix.texi:15605 msgid "Alternatively, to become independent of device numbering, one may obtain the LUKS UUID (@dfn{unique identifier}) of the source device by a command like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15251 +#: guix-git/doc/guix.texi:15608 #, no-wrap msgid "cryptsetup luksUUID /dev/sda3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15254 +#: guix-git/doc/guix.texi:15611 msgid "and use it as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15260 +#: guix-git/doc/guix.texi:15617 #, no-wrap msgid "" "(mapped-device\n" @@ -26599,23 +27214,23 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15262 +#: guix-git/doc/guix.texi:15619 #, no-wrap msgid "swap encryption" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15269 +#: guix-git/doc/guix.texi:15626 msgid "It is also desirable to encrypt swap space, since swap space may contain sensitive data. One way to accomplish that is to use a swap file in a file system on a device mapped via LUKS encryption. In this way, the swap file is encrypted because the entire device is encrypted. @xref{Swap Space}, or @xref{Preparing for Installation,,Disk Partitioning}, for an example." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15272 +#: guix-git/doc/guix.texi:15629 msgid "A RAID device formed of the partitions @file{/dev/sda1} and @file{/dev/sdb1} may be declared as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15278 +#: guix-git/doc/guix.texi:15635 #, no-wrap msgid "" "(mapped-device\n" @@ -26625,17 +27240,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15285 +#: guix-git/doc/guix.texi:15642 msgid "The @file{/dev/md0} device can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems}). Note that the RAID level need not be given; it is chosen during the initial creation and formatting of the RAID device and is determined automatically later." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15288 +#: guix-git/doc/guix.texi:15645 msgid "LVM logical volumes ``alpha'' and ``beta'' from volume group ``vg0'' can be declared as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15294 +#: guix-git/doc/guix.texi:15651 #, no-wrap msgid "" "(mapped-device\n" @@ -26645,102 +27260,102 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15299 +#: guix-git/doc/guix.texi:15656 msgid "Devices @file{/dev/mapper/vg0-alpha} and @file{/dev/mapper/vg0-beta} can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15302 +#: guix-git/doc/guix.texi:15659 #, no-wrap msgid "swap space" msgstr "스왑 공간" #. type: Plain text -#: guix-git/doc/guix.texi:15312 +#: guix-git/doc/guix.texi:15669 msgid "Swap space, as it is commonly called, is a disk area specifically designated for paging: the process in charge of memory management (the Linux kernel or Hurd's default pager) can decide that some memory pages stored in RAM which belong to a running program but are unused should be stored on disk instead. It unloads those from the RAM, freeing up precious fast memory, and writes them to the swap space. If the program tries to access that very page, the memory management process loads it back into memory for the program to use." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15318 +#: guix-git/doc/guix.texi:15675 msgid "A common misconception about swap is that it is only useful when small amounts of RAM are available to the system. However, it should be noted that kernels often use all available RAM for disk access caching to make I/O faster, and thus paging out unused portions of program memory will expand the RAM available for such caching." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15322 +#: guix-git/doc/guix.texi:15679 msgid "For a more detailed description of how memory is managed from the viewpoint of a monolithic kernel, @xref{Memory Concepts,,, libc, The GNU C Library Reference Manual}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15331 +#: guix-git/doc/guix.texi:15688 msgid "The Linux kernel has support for swap partitions and swap files: the former uses a whole disk partition for paging, whereas the second uses a file on a file system for that (the file system driver needs to support it). On a comparable setup, both have the same performance, so one should consider ease of use when deciding between them. Partitions are ``simpler'' and do not need file system support, but need to be allocated at disk formatting time (logical volumes notwithstanding), whereas files can be allocated and deallocated at any time." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15336 +#: guix-git/doc/guix.texi:15693 msgid "Note that swap space is not zeroed on shutdown, so sensitive data (such as passwords) may linger on it if it was paged out. As such, you should consider having your swap reside on an encrypted device (@pxref{Mapped Devices})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15337 +#: guix-git/doc/guix.texi:15694 #, fuzzy, no-wrap msgid "{Data Type} swap-space" msgstr "설정" #. type: deftp -#: guix-git/doc/guix.texi:15340 +#: guix-git/doc/guix.texi:15697 msgid "Objects of this type represent swap spaces. They contain the following members:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15346 +#: guix-git/doc/guix.texi:15703 msgid "The device or file to use, either a UUID, a @code{file-system-label} or a string, as in the definition of a @code{file-system} (@pxref{File Systems})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15353 +#: guix-git/doc/guix.texi:15710 msgid "A list of @code{file-system} or @code{mapped-device} objects, upon which the availability of the space depends. Note that just like for @code{file-system} objects, dependencies which are needed for boot and mounted in early userspace are not managed by the Shepherd, and so automatically filtered out for you." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15354 +#: guix-git/doc/guix.texi:15711 #, no-wrap msgid "@code{priority} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15361 +#: guix-git/doc/guix.texi:15718 msgid "Only supported by the Linux kernel. Either @code{#f} to disable swap priority, or an integer between 0 and 32767. The kernel will first use swap spaces of higher priority when paging, and use same priority spaces on a round-robin basis. The kernel will use swap spaces without a set priority after prioritized spaces, and in the order that they appeared in (not round-robin)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15362 +#: guix-git/doc/guix.texi:15719 #, no-wrap msgid "@code{discard?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15366 +#: guix-git/doc/guix.texi:15723 msgid "Only supported by the Linux kernel. When true, the kernel will notify the disk controller of discarded pages, for example with the TRIM operation on Solid State Drives." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15371 +#: guix-git/doc/guix.texi:15728 msgid "Here are some examples:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15374 +#: guix-git/doc/guix.texi:15731 #, no-wrap msgid "(swap-space (target (uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\")))\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15379 +#: guix-git/doc/guix.texi:15736 msgid "Use the swap partition with the given UUID@. You can learn the UUID of a Linux swap partition by running @command{swaplabel @var{device}}, where @var{device} is the @file{/dev} file name of that partition." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15384 +#: guix-git/doc/guix.texi:15741 #, no-wrap msgid "" "(swap-space\n" @@ -26749,12 +27364,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15390 +#: guix-git/doc/guix.texi:15747 msgid "Use the partition with label @code{swap}, which can be found after the @var{lvm-device} mapped device has been opened. Again, the @command{swaplabel} command allows you to view and change the label of a Linux swap partition." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15395 +#: guix-git/doc/guix.texi:15752 #, no-wrap msgid "" "(swap-space\n" @@ -26763,35 +27378,35 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15399 +#: guix-git/doc/guix.texi:15756 msgid "Use the file @file{/btrfs/swapfile} as swap space, which is present on the @var{btrfs-fs} filesystem." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15403 +#: guix-git/doc/guix.texi:15760 #, no-wrap msgid "users" msgstr "사용자" #. type: cindex -#: guix-git/doc/guix.texi:15404 +#: guix-git/doc/guix.texi:15761 #, no-wrap msgid "accounts" msgstr "계정" #. type: cindex -#: guix-git/doc/guix.texi:15405 +#: guix-git/doc/guix.texi:15762 #, no-wrap msgid "user accounts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15409 +#: guix-git/doc/guix.texi:15766 msgid "User accounts and groups are entirely managed through the @code{operating-system} declaration. They are specified with the @code{user-account} and @code{user-group} forms:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15419 +#: guix-git/doc/guix.texi:15776 #, no-wrap msgid "" "(user-account\n" @@ -26805,12 +27420,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15423 +#: guix-git/doc/guix.texi:15780 msgid "Here's a user account that uses a different shell and a custom home directory (the default would be @file{\"/home/bob\"}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15431 +#: guix-git/doc/guix.texi:15788 #, no-wrap msgid "" "(user-account\n" @@ -26822,171 +27437,171 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15440 +#: guix-git/doc/guix.texi:15797 msgid "When booting or upon completion of @command{guix system reconfigure}, the system ensures that only the user accounts and groups specified in the @code{operating-system} declaration exist, and with the specified properties. Thus, account or group creations or modifications made by directly invoking commands such as @command{useradd} are lost upon reconfiguration or reboot. This ensures that the system remains exactly as declared." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15441 +#: guix-git/doc/guix.texi:15798 #, no-wrap msgid "{Data Type} user-account" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15444 +#: guix-git/doc/guix.texi:15801 msgid "Objects of this type represent user accounts. The following members may be specified:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15448 +#: guix-git/doc/guix.texi:15805 msgid "The name of the user account." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:15449 guix-git/doc/guix.texi:34298 +#: guix-git/doc/guix.texi:15806 guix-git/doc/guix.texi:34737 #, no-wrap msgid "group" msgstr "그룹" #. type: cindex -#: guix-git/doc/guix.texi:15450 guix-git/doc/guix.texi:15534 +#: guix-git/doc/guix.texi:15807 guix-git/doc/guix.texi:15891 #, no-wrap msgid "groups" msgstr "그룹" #. type: table -#: guix-git/doc/guix.texi:15453 +#: guix-git/doc/guix.texi:15810 msgid "This is the name (a string) or identifier (a number) of the user group this account belongs to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15454 +#: guix-git/doc/guix.texi:15811 #, no-wrap msgid "@code{supplementary-groups} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15457 +#: guix-git/doc/guix.texi:15814 msgid "Optionally, this can be defined as a list of group names that this account belongs to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15458 +#: guix-git/doc/guix.texi:15815 #, no-wrap msgid "@code{uid} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15462 +#: guix-git/doc/guix.texi:15819 msgid "This is the user ID for this account (a number), or @code{#f}. In the latter case, a number is automatically chosen by the system when the account is created." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15463 guix-git/doc/guix.texi:18217 +#: guix-git/doc/guix.texi:15820 guix-git/doc/guix.texi:18579 #, no-wrap msgid "@code{comment} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15465 +#: guix-git/doc/guix.texi:15822 msgid "A comment about the account, such as the account owner's full name." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15470 +#: guix-git/doc/guix.texi:15827 msgid "Note that, for non-system accounts, users are free to change their real name as it appears in @file{/etc/passwd} using the @command{chfn} command. When they do, their choice prevails over the system administrator's choice; reconfiguring does @emph{not} change their name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:15471 +#: guix-git/doc/guix.texi:15828 #, no-wrap msgid "home-directory" msgstr "홈 디렉토리" #. type: table -#: guix-git/doc/guix.texi:15473 +#: guix-git/doc/guix.texi:15830 msgid "This is the name of the home directory for the account." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15474 +#: guix-git/doc/guix.texi:15831 #, no-wrap msgid "@code{create-home-directory?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15477 +#: guix-git/doc/guix.texi:15834 msgid "Indicates whether the home directory of this account should be created if it does not exist yet." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15478 +#: guix-git/doc/guix.texi:15835 #, no-wrap msgid "@code{shell} (default: Bash)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15482 +#: guix-git/doc/guix.texi:15839 msgid "This is a G-expression denoting the file name of a program to be used as the shell (@pxref{G-Expressions}). For example, you would refer to the Bash executable like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15485 +#: guix-git/doc/guix.texi:15842 #, no-wrap msgid "(file-append bash \"/bin/bash\")\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15489 +#: guix-git/doc/guix.texi:15846 msgid "... and to the Zsh executable like that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15492 +#: guix-git/doc/guix.texi:15849 #, no-wrap msgid "(file-append zsh \"/bin/zsh\")\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:15494 guix-git/doc/guix.texi:15552 +#: guix-git/doc/guix.texi:15851 guix-git/doc/guix.texi:15909 #, no-wrap msgid "@code{system?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15498 +#: guix-git/doc/guix.texi:15855 msgid "This Boolean value indicates whether the account is a ``system'' account. System accounts are sometimes treated specially; for instance, graphical login managers do not list them." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:15500 +#: guix-git/doc/guix.texi:15857 msgid "user-account-password" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15500 +#: guix-git/doc/guix.texi:15857 #, no-wrap msgid "password, for user accounts" msgstr "" #. type: item -#: guix-git/doc/guix.texi:15501 guix-git/doc/guix.texi:15556 +#: guix-git/doc/guix.texi:15858 guix-git/doc/guix.texi:15913 #, no-wrap msgid "@code{password} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15507 +#: guix-git/doc/guix.texi:15864 msgid "You would normally leave this field to @code{#f}, initialize user passwords as @code{root} with the @command{passwd} command, and then let users change it with @command{passwd}. Passwords set with @command{passwd} are of course preserved across reboot and reconfiguration." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15511 +#: guix-git/doc/guix.texi:15868 msgid "If you @emph{do} want to set an initial password for an account, then this field must contain the encrypted password, as a string. You can use the @code{crypt} procedure for this purpose:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15516 +#: guix-git/doc/guix.texi:15873 #, no-wrap msgid "" "(user-account\n" @@ -26996,7 +27611,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15519 +#: guix-git/doc/guix.texi:15876 #, no-wrap msgid "" " ;; Specify a SHA-512-hashed initial password.\n" @@ -27004,171 +27619,171 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:15525 +#: guix-git/doc/guix.texi:15882 msgid "The hash of this initial password will be available in a file in @file{/gnu/store}, readable by all the users, so this method must be used with care." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15530 +#: guix-git/doc/guix.texi:15887 msgid "@xref{Passphrase Storage,,, libc, The GNU C Library Reference Manual}, for more information on password encryption, and @ref{Encryption,,, guile, GNU Guile Reference Manual}, for information on Guile's @code{crypt} procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15536 +#: guix-git/doc/guix.texi:15893 msgid "User group declarations are even simpler:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15539 +#: guix-git/doc/guix.texi:15896 #, no-wrap msgid "(user-group (name \"students\"))\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15541 +#: guix-git/doc/guix.texi:15898 #, no-wrap msgid "{Data Type} user-group" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15543 +#: guix-git/doc/guix.texi:15900 msgid "This type is for, well, user groups. There are just a few fields:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15547 +#: guix-git/doc/guix.texi:15904 msgid "The name of the group." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15548 guix-git/doc/guix.texi:30819 +#: guix-git/doc/guix.texi:15905 guix-git/doc/guix.texi:31184 #, no-wrap msgid "@code{id} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15551 +#: guix-git/doc/guix.texi:15908 msgid "The group identifier (a number). If @code{#f}, a new number is automatically allocated when the group is created." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15555 +#: guix-git/doc/guix.texi:15912 msgid "This Boolean value indicates whether the group is a ``system'' group. System groups have low numerical IDs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15559 +#: guix-git/doc/guix.texi:15916 msgid "What, user groups can have a password? Well, apparently yes. Unless @code{#f}, this field specifies the password of the group." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15565 +#: guix-git/doc/guix.texi:15922 msgid "For convenience, a variable lists all the basic user groups one may expect:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15566 +#: guix-git/doc/guix.texi:15923 #, no-wrap msgid "{Scheme Variable} %base-groups" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15571 +#: guix-git/doc/guix.texi:15928 msgid "This is the list of basic user groups that users and/or packages expect to be present on the system. This includes groups such as ``root'', ``wheel'', and ``users'', as well as groups used to control access to specific devices such as ``audio'', ``disk'', and ``cdrom''." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15573 +#: guix-git/doc/guix.texi:15930 #, no-wrap msgid "{Scheme Variable} %base-user-accounts" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15576 +#: guix-git/doc/guix.texi:15933 msgid "This is the list of basic system accounts that programs may expect to find on a GNU/Linux system, such as the ``nobody'' account." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15579 +#: guix-git/doc/guix.texi:15936 msgid "Note that the ``root'' account is not included here. It is a special-case and is automatically added whether or not it is specified." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15585 +#: guix-git/doc/guix.texi:15942 #, no-wrap msgid "keymap" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15593 +#: guix-git/doc/guix.texi:15950 msgid "To specify what each key of your keyboard does, you need to tell the operating system what @dfn{keyboard layout} you want to use. The default, when nothing is specified, is the US English QWERTY layout for 105-key PC keyboards. However, German speakers will usually prefer the German QWERTZ layout, French speakers will want the AZERTY layout, and so on; hackers might prefer Dvorak or bépo, and they might even want to further customize the effect of some of the keys. This section explains how to get that done." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15594 +#: guix-git/doc/guix.texi:15951 #, no-wrap msgid "keyboard layout, definition" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15596 +#: guix-git/doc/guix.texi:15953 msgid "There are three components that will want to know about your keyboard layout:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15603 +#: guix-git/doc/guix.texi:15960 msgid "The @emph{bootloader} may want to know what keyboard layout you want to use (@pxref{Bootloader Configuration, @code{keyboard-layout}}). This is useful if you want, for instance, to make sure that you can type the passphrase of your encrypted root partition using the right layout." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15608 +#: guix-git/doc/guix.texi:15965 msgid "The @emph{operating system kernel}, Linux, will need that so that the console is properly configured (@pxref{operating-system Reference, @code{keyboard-layout}})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15612 +#: guix-git/doc/guix.texi:15969 msgid "The @emph{graphical display server}, usually Xorg, also has its own idea of the keyboard layout (@pxref{X Window, @code{keyboard-layout}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15616 +#: guix-git/doc/guix.texi:15973 msgid "Guix allows you to configure all three separately but, fortunately, it allows you to share the same keyboard layout for all three components." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15617 +#: guix-git/doc/guix.texi:15974 #, no-wrap msgid "XKB, keyboard layouts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15625 +#: guix-git/doc/guix.texi:15982 msgid "Keyboard layouts are represented by records created by the @code{keyboard-layout} procedure of @code{(gnu system keyboard)}. Following the X Keyboard extension (XKB), each layout has four attributes: a name (often a language code such as ``fi'' for Finnish or ``jp'' for Japanese), an optional variant name, an optional keyboard model name, and a possibly empty list of additional options. In most cases the layout name is all you care about." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15626 +#: guix-git/doc/guix.texi:15983 #, no-wrap msgid "{Scheme Procedure} keyboard-layout @var{name} [@var{variant}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15629 +#: guix-git/doc/guix.texi:15986 msgid "[#:model] [#:options '()] Return a new keyboard layout with the given @var{name} and @var{variant}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15633 +#: guix-git/doc/guix.texi:15990 msgid "@var{name} must be a string such as @code{\"fr\"}; @var{variant} must be a string such as @code{\"bepo\"} or @code{\"nodeadkeys\"}. See the @code{xkeyboard-config} package for valid options." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15636 +#: guix-git/doc/guix.texi:15993 msgid "Here are a few examples:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15641 +#: guix-git/doc/guix.texi:15998 #, no-wrap msgid "" ";; The German QWERTZ layout. Here we assume a standard\n" @@ -27178,7 +27793,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15644 +#: guix-git/doc/guix.texi:16001 #, no-wrap msgid "" ";; The bépo variant of the French layout.\n" @@ -27187,7 +27802,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15647 +#: guix-git/doc/guix.texi:16004 #, no-wrap msgid "" ";; The Catalan layout.\n" @@ -27196,7 +27811,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15650 +#: guix-git/doc/guix.texi:16007 #, no-wrap msgid "" ";; Arabic layout with \"Alt-Shift\" to switch to US layout.\n" @@ -27205,7 +27820,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15657 +#: guix-git/doc/guix.texi:16014 #, no-wrap msgid "" ";; The Latin American Spanish layout. In addition, the\n" @@ -27218,7 +27833,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15660 +#: guix-git/doc/guix.texi:16017 #, no-wrap msgid "" ";; The Russian layout for a ThinkPad keyboard.\n" @@ -27227,7 +27842,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15665 +#: guix-git/doc/guix.texi:16022 #, no-wrap msgid "" ";; The \"US international\" layout, which is the US layout plus\n" @@ -27237,29 +27852,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15669 +#: guix-git/doc/guix.texi:16026 msgid "See the @file{share/X11/xkb} directory of the @code{xkeyboard-config} package for a complete list of supported layouts, variants, and models." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15670 +#: guix-git/doc/guix.texi:16027 #, no-wrap msgid "keyboard layout, configuration" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15674 +#: guix-git/doc/guix.texi:16031 msgid "Let's say you want your system to use the Turkish keyboard layout throughout your system---bootloader, console, and Xorg. Here's what your system configuration would look like:" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:15675 +#: guix-git/doc/guix.texi:16032 #, no-wrap msgid "set-xorg-configuration" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15679 +#: guix-git/doc/guix.texi:16036 #, no-wrap msgid "" ";; Using the Turkish layout for the bootloader, the console,\n" @@ -27268,7 +27883,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15691 +#: guix-git/doc/guix.texi:16048 #, no-wrap msgid "" "(operating-system\n" @@ -27285,76 +27900,76 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15698 +#: guix-git/doc/guix.texi:16055 msgid "In the example above, for GRUB and for Xorg, we just refer to the @code{keyboard-layout} field defined above, but we could just as well refer to a different layout. The @code{set-xorg-configuration} procedure communicates the desired Xorg configuration to the graphical log-in manager, by default GDM." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15701 +#: guix-git/doc/guix.texi:16058 msgid "We've discussed how to specify the @emph{default} keyboard layout of your system when it starts, but you can also adjust it at run time:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15706 +#: guix-git/doc/guix.texi:16063 msgid "If you're using GNOME, its settings panel has a ``Region & Language'' entry where you can select one or more keyboard layouts." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15711 +#: guix-git/doc/guix.texi:16068 msgid "Under Xorg, the @command{setxkbmap} command (from the same-named package) allows you to change the current layout. For example, this is how you would change the layout to US Dvorak:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15714 +#: guix-git/doc/guix.texi:16071 #, no-wrap msgid "setxkbmap us dvorak\n" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15721 +#: guix-git/doc/guix.texi:16078 msgid "The @code{loadkeys} command changes the keyboard layout in effect in the Linux console. However, note that @code{loadkeys} does @emph{not} use the XKB keyboard layout categorization described above. The command below loads the French bépo layout:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15724 +#: guix-git/doc/guix.texi:16081 #, no-wrap msgid "loadkeys fr-bepo\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15730 +#: guix-git/doc/guix.texi:16087 #, no-wrap msgid "locale" msgstr "지역" #. type: Plain text -#: guix-git/doc/guix.texi:15737 +#: guix-git/doc/guix.texi:16094 msgid "A @dfn{locale} defines cultural conventions for a particular language and region of the world (@pxref{Locales,,, libc, The GNU C Library Reference Manual}). Each locale has a name that typically has the form @code{@var{language}_@var{territory}.@var{codeset}}---e.g., @code{fr_LU.utf8} designates the locale for the French language, with cultural conventions from Luxembourg, and using the UTF-8 encoding." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15738 +#: guix-git/doc/guix.texi:16095 #, no-wrap msgid "locale definition" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15742 +#: guix-git/doc/guix.texi:16099 msgid "Usually, you will want to specify the default locale for the machine using the @code{locale} field of the @code{operating-system} declaration (@pxref{operating-system Reference, @code{locale}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15751 +#: guix-git/doc/guix.texi:16108 msgid "The selected locale is automatically added to the @dfn{locale definitions} known to the system if needed, with its codeset inferred from its name---e.g., @code{bo_CN.utf8} will be assumed to use the @code{UTF-8} codeset. Additional locale definitions can be specified in the @code{locale-definitions} slot of @code{operating-system}---this is useful, for instance, if the codeset could not be inferred from the locale name. The default set of locale definitions includes some widely used locales, but not all the available locales, in order to save space." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15754 +#: guix-git/doc/guix.texi:16111 msgid "For instance, to add the North Frisian locale for Germany, the value of that field may be:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15759 +#: guix-git/doc/guix.texi:16116 #, no-wrap msgid "" "(cons (locale-definition\n" @@ -27363,12 +27978,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15763 +#: guix-git/doc/guix.texi:16120 msgid "Likewise, to save space, one might want @code{locale-definitions} to list only the locales that are actually used, as in:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15768 +#: guix-git/doc/guix.texi:16125 #, no-wrap msgid "" "(list (locale-definition\n" @@ -27377,114 +27992,114 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15777 +#: guix-git/doc/guix.texi:16134 msgid "The compiled locale definitions are available at @file{/run/current-system/locale/X.Y}, where @code{X.Y} is the libc version, which is the default location where the GNU@tie{}libc provided by Guix looks for locale data. This can be overridden using the @env{LOCPATH} environment variable (@pxref{locales-and-locpath, @env{LOCPATH} and locale packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15780 +#: guix-git/doc/guix.texi:16137 msgid "The @code{locale-definition} form is provided by the @code{(gnu system locale)} module. Details are given below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15781 +#: guix-git/doc/guix.texi:16138 #, no-wrap msgid "{Data Type} locale-definition" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15783 +#: guix-git/doc/guix.texi:16140 msgid "This is the data type of a locale definition." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15789 +#: guix-git/doc/guix.texi:16146 msgid "The name of the locale. @xref{Locale Names,,, libc, The GNU C Library Reference Manual}, for more information on locale names." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15793 +#: guix-git/doc/guix.texi:16150 msgid "The name of the source for that locale. This is typically the @code{@var{language}_@var{territory}} part of the locale name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15794 +#: guix-git/doc/guix.texi:16151 #, no-wrap msgid "@code{charset} (default: @code{\"UTF-8\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15798 +#: guix-git/doc/guix.texi:16155 msgid "The ``character set'' or ``code set'' for that locale, @uref{https://www.iana.org/assignments/character-sets, as defined by IANA}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15802 +#: guix-git/doc/guix.texi:16159 #, no-wrap msgid "{Scheme Variable} %default-locale-definitions" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15806 +#: guix-git/doc/guix.texi:16163 msgid "A list of commonly used UTF-8 locales, used as the default value of the @code{locale-definitions} field of @code{operating-system} declarations." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15807 +#: guix-git/doc/guix.texi:16164 #, no-wrap msgid "locale name" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15808 +#: guix-git/doc/guix.texi:16165 #, no-wrap msgid "normalized codeset in locale names" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15814 +#: guix-git/doc/guix.texi:16171 msgid "These locale definitions use the @dfn{normalized codeset} for the part that follows the dot in the name (@pxref{Using gettextized software, normalized codeset,, libc, The GNU C Library Reference Manual}). So for instance it has @code{uk_UA.utf8} but @emph{not}, say, @code{uk_UA.UTF-8}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:15816 +#: guix-git/doc/guix.texi:16173 #, no-wrap msgid "Locale Data Compatibility Considerations" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15818 +#: guix-git/doc/guix.texi:16175 #, no-wrap msgid "incompatibility, of locale data" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15825 +#: guix-git/doc/guix.texi:16182 msgid "@code{operating-system} declarations provide a @code{locale-libcs} field to specify the GNU@tie{}libc packages that are used to compile locale declarations (@pxref{operating-system Reference}). ``Why would I care?'', you may ask. Well, it turns out that the binary format of locale data is occasionally incompatible from one libc version to another." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15837 +#: guix-git/doc/guix.texi:16194 msgid "For instance, a program linked against libc version 2.21 is unable to read locale data produced with libc 2.22; worse, that program @emph{aborts} instead of simply ignoring the incompatible locale data@footnote{Versions 2.23 and later of GNU@tie{}libc will simply skip the incompatible locale data, which is already an improvement.}. Similarly, a program linked against libc 2.22 can read most, but not all, of the locale data from libc 2.21 (specifically, @env{LC_COLLATE} data is incompatible); thus calls to @code{setlocale} may fail, but programs will not abort." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15842 +#: guix-git/doc/guix.texi:16199 msgid "The ``problem'' with Guix is that users have a lot of freedom: They can choose whether and when to upgrade software in their profiles, and might be using a libc version different from the one the system administrator used to build the system-wide locale data." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15846 +#: guix-git/doc/guix.texi:16203 msgid "Fortunately, unprivileged users can also install their own locale data and define @env{GUIX_LOCPATH} accordingly (@pxref{locales-and-locpath, @env{GUIX_LOCPATH} and locale packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15853 +#: guix-git/doc/guix.texi:16210 msgid "Still, it is best if the system-wide locale data at @file{/run/current-system/locale} is built for all the libc versions actually in use on the system, so that all the programs can access it---this is especially crucial on a multi-user system. To do that, the administrator can specify several libc packages in the @code{locale-libcs} field of @code{operating-system}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15856 +#: guix-git/doc/guix.texi:16213 #, no-wrap msgid "" "(use-package-modules base)\n" @@ -27492,7 +28107,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15860 +#: guix-git/doc/guix.texi:16217 #, no-wrap msgid "" "(operating-system\n" @@ -27501,39 +28116,39 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15865 +#: guix-git/doc/guix.texi:16222 msgid "This example would lead to a system containing locale definitions for both libc 2.21 and the current version of libc in @file{/run/current-system/locale}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15870 +#: guix-git/doc/guix.texi:16227 #, no-wrap msgid "system services" msgstr "시스템 서비스" #. type: Plain text -#: guix-git/doc/guix.texi:15876 +#: guix-git/doc/guix.texi:16233 msgid "An important part of preparing an @code{operating-system} declaration is listing @dfn{system services} and their configuration (@pxref{Using the Configuration System}). System services are typically daemons launched when the system boots, or other actions needed at that time---e.g., configuring network access." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15883 +#: guix-git/doc/guix.texi:16240 msgid "Guix has a broad definition of ``service'' (@pxref{Service Composition}), but many services are managed by the GNU@tie{}Shepherd (@pxref{Shepherd Services}). On a running system, the @command{herd} command allows you to list the available services, show their status, start and stop them, or do other specific operations (@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}). For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15886 +#: guix-git/doc/guix.texi:16243 #, no-wrap msgid "# herd status\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15891 +#: guix-git/doc/guix.texi:16248 msgid "The above command, run as @code{root}, lists the currently defined services. The @command{herd doc} command shows a synopsis of the given service and its associated actions:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15895 +#: guix-git/doc/guix.texi:16252 #, no-wrap msgid "" "# herd doc nscd\n" @@ -27542,7 +28157,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15898 +#: guix-git/doc/guix.texi:16255 #, no-wrap msgid "" "# herd doc nscd action invalidate\n" @@ -27550,12 +28165,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15903 +#: guix-git/doc/guix.texi:16260 msgid "The @command{start}, @command{stop}, and @command{restart} sub-commands have the effect you would expect. For instance, the commands below stop the nscd service and restart the Xorg display server:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15910 +#: guix-git/doc/guix.texi:16267 #, no-wrap msgid "" "# herd stop nscd\n" @@ -27566,45 +28181,45 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15915 +#: guix-git/doc/guix.texi:16272 msgid "The following sections document the available services, starting with the core services, that may be used in an @code{operating-system} declaration." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:15951 guix-git/doc/guix.texi:24198 -#: guix-git/doc/guix.texi:24199 +#: guix-git/doc/guix.texi:16308 guix-git/doc/guix.texi:24560 +#: guix-git/doc/guix.texi:24561 #, no-wrap msgid "File-Sharing Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:16308 msgid "File-sharing services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15959 +#: guix-git/doc/guix.texi:16316 msgid "The @code{(gnu services base)} module provides definitions for the basic services that one expects from the system. The services exported by this module are listed below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15960 +#: guix-git/doc/guix.texi:16317 #, no-wrap msgid "{Scheme Variable} %base-services" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15966 +#: guix-git/doc/guix.texi:16323 msgid "This variable contains a list of basic services (@pxref{Service Types and Services}, for more information on service objects) one would expect from the system: a login service (mingetty) on each tty, syslogd, the libc name service cache daemon (nscd), the udev device manager, and more." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15971 +#: guix-git/doc/guix.texi:16328 msgid "This is the default value of the @code{services} field of @code{operating-system} declarations. Usually, when customizing a system, you will want to append services to @code{%base-services}, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15976 +#: guix-git/doc/guix.texi:16333 #, no-wrap msgid "" "(append (list (service avahi-service-type)\n" @@ -27613,58 +28228,58 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15979 +#: guix-git/doc/guix.texi:16336 #, no-wrap msgid "{Scheme Variable} special-files-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15982 +#: guix-git/doc/guix.texi:16339 msgid "This is the service that sets up ``special files'' such as @file{/bin/sh}; an instance of it is part of @code{%base-services}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15986 +#: guix-git/doc/guix.texi:16343 msgid "The value associated with @code{special-files-service-type} services must be a list of tuples where the first element is the ``special file'' and the second element is its target. By default it is:" msgstr "" #. type: file{#1} -#: guix-git/doc/guix.texi:15987 +#: guix-git/doc/guix.texi:16344 #, no-wrap msgid "/bin/sh" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15988 +#: guix-git/doc/guix.texi:16345 #, no-wrap msgid "@file{sh}, in @file{/bin}" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15991 +#: guix-git/doc/guix.texi:16348 #, no-wrap msgid "`((\"/bin/sh\" ,(file-append bash \"/bin/sh\")))\n" msgstr "" #. type: file{#1} -#: guix-git/doc/guix.texi:15993 +#: guix-git/doc/guix.texi:16350 #, no-wrap msgid "/usr/bin/env" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15994 +#: guix-git/doc/guix.texi:16351 #, no-wrap msgid "@file{env}, in @file{/usr/bin}" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15997 +#: guix-git/doc/guix.texi:16354 msgid "If you want to add, say, @code{/usr/bin/env} to your system, you can change it to:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16001 +#: guix-git/doc/guix.texi:16358 #, no-wrap msgid "" "`((\"/bin/sh\" ,(file-append bash \"/bin/sh\"))\n" @@ -27672,28 +28287,28 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16008 +#: guix-git/doc/guix.texi:16365 msgid "Since this is part of @code{%base-services}, you can use @code{modify-services} to customize the set of special files (@pxref{Service Reference, @code{modify-services}}). But the simple way to add a special file is @i{via} the @code{extra-special-file} procedure (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16010 +#: guix-git/doc/guix.texi:16367 #, no-wrap msgid "{Scheme Procedure} extra-special-file @var{file} @var{target}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16012 +#: guix-git/doc/guix.texi:16369 msgid "Use @var{target} as the ``special file'' @var{file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16016 +#: guix-git/doc/guix.texi:16373 msgid "For example, adding the following lines to the @code{services} field of your operating system declaration leads to a @file{/usr/bin/env} symlink:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16020 +#: guix-git/doc/guix.texi:16377 #, no-wrap msgid "" "(extra-special-file \"/usr/bin/env\"\n" @@ -27701,29 +28316,29 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16023 +#: guix-git/doc/guix.texi:16380 #, no-wrap msgid "{Scheme Procedure} host-name-service @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16025 +#: guix-git/doc/guix.texi:16382 msgid "Return a service that sets the host name to @var{name}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16027 +#: guix-git/doc/guix.texi:16384 #, no-wrap msgid "{Scheme Variable} console-font-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16032 +#: guix-git/doc/guix.texi:16389 msgid "Install the given fonts on the specified ttys (fonts are per virtual console on the kernel Linux). The value of this service is a list of tty/font pairs. The font can be the name of a font provided by the @code{kbd} package or any valid argument to @command{setfont}, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16041 +#: guix-git/doc/guix.texi:16398 #, no-wrap msgid "" "`((\"tty1\" . \"LatGrkCyr-8x16\")\n" @@ -27736,1109 +28351,1109 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16044 +#: guix-git/doc/guix.texi:16401 #, no-wrap msgid "{Scheme Procedure} login-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16048 +#: guix-git/doc/guix.texi:16405 msgid "Return a service to run login according to @var{config}, a @code{} object, which specifies the message of the day, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16050 +#: guix-git/doc/guix.texi:16407 #, no-wrap msgid "{Data Type} login-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16052 +#: guix-git/doc/guix.texi:16409 msgid "This is the data type representing the configuration of login." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16055 +#: guix-git/doc/guix.texi:16412 #, no-wrap msgid "motd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16056 +#: guix-git/doc/guix.texi:16413 #, no-wrap msgid "message of the day" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16058 +#: guix-git/doc/guix.texi:16415 msgid "A file-like object containing the ``message of the day''." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16059 guix-git/doc/guix.texi:19280 +#: guix-git/doc/guix.texi:16416 guix-git/doc/guix.texi:19642 #, no-wrap msgid "@code{allow-empty-passwords?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16062 +#: guix-git/doc/guix.texi:16419 msgid "Allow empty passwords by default so that first-time users can log in when the 'root' account has just been created." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16066 +#: guix-git/doc/guix.texi:16423 #, no-wrap msgid "{Scheme Procedure} mingetty-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16070 +#: guix-git/doc/guix.texi:16427 msgid "Return a service to run mingetty according to @var{config}, a @code{} object, which specifies the tty to run, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16072 +#: guix-git/doc/guix.texi:16429 #, no-wrap msgid "{Data Type} mingetty-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16075 +#: guix-git/doc/guix.texi:16432 msgid "This is the data type representing the configuration of Mingetty, which provides the default implementation of virtual console log-in." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16078 guix-git/doc/guix.texi:16117 -#: guix-git/doc/guix.texi:33550 +#: guix-git/doc/guix.texi:16435 guix-git/doc/guix.texi:16474 +#: guix-git/doc/guix.texi:33987 #, no-wrap msgid "tty" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16080 +#: guix-git/doc/guix.texi:16437 msgid "The name of the console this Mingetty runs on---e.g., @code{\"tty1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16081 guix-git/doc/guix.texi:16146 -#: guix-git/doc/guix.texi:16305 +#: guix-git/doc/guix.texi:16438 guix-git/doc/guix.texi:16503 +#: guix-git/doc/guix.texi:16662 #, no-wrap msgid "@code{auto-login} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16085 +#: guix-git/doc/guix.texi:16442 msgid "When true, this field must be a string denoting the user name under which the system automatically logs in. When it is @code{#f}, a user name and password must be entered to log in." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16086 +#: guix-git/doc/guix.texi:16443 #, no-wrap msgid "@code{login-program} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16090 +#: guix-git/doc/guix.texi:16447 msgid "This must be either @code{#f}, in which case the default log-in program is used (@command{login} from the Shadow tool suite), or a gexp denoting the name of the log-in program." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16091 +#: guix-git/doc/guix.texi:16448 #, no-wrap msgid "@code{login-pause?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16094 +#: guix-git/doc/guix.texi:16451 msgid "When set to @code{#t} in conjunction with @var{auto-login}, the user will have to press a key before the log-in shell is launched." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16095 +#: guix-git/doc/guix.texi:16452 #, no-wrap msgid "@code{clear-on-logout?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16097 +#: guix-git/doc/guix.texi:16454 msgid "When set to @code{#t}, the screen will be cleared after logout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16098 +#: guix-git/doc/guix.texi:16455 #, no-wrap msgid "@code{mingetty} (default: @var{mingetty})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16100 +#: guix-git/doc/guix.texi:16457 msgid "The Mingetty package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16104 +#: guix-git/doc/guix.texi:16461 #, no-wrap msgid "{Scheme Procedure} agetty-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16108 +#: guix-git/doc/guix.texi:16465 msgid "Return a service to run agetty according to @var{config}, an @code{} object, which specifies the tty to run, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16110 +#: guix-git/doc/guix.texi:16467 #, no-wrap msgid "{Data Type} agetty-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16114 +#: guix-git/doc/guix.texi:16471 msgid "This is the data type representing the configuration of agetty, which implements virtual and serial console log-in. See the @code{agetty(8)} man page for more information." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16121 +#: guix-git/doc/guix.texi:16478 msgid "The name of the console this agetty runs on, as a string---e.g., @code{\"ttyS0\"}. This argument is optional, it will default to a reasonable default serial port used by the kernel Linux." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16125 +#: guix-git/doc/guix.texi:16482 msgid "For this, if there is a value for an option @code{agetty.tty} in the kernel command line, agetty will extract the device name of the serial port from it and use that." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16129 +#: guix-git/doc/guix.texi:16486 msgid "If not and if there is a value for an option @code{console} with a tty in the Linux command line, agetty will extract the device name of the serial port from it and use that." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16133 +#: guix-git/doc/guix.texi:16490 msgid "In both cases, agetty will leave the other serial device settings (baud rate etc.)@: alone---in the hope that Linux pinned them to the correct values." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16134 guix-git/doc/guix.texi:33711 +#: guix-git/doc/guix.texi:16491 guix-git/doc/guix.texi:34148 #, no-wrap msgid "@code{baud-rate} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16137 +#: guix-git/doc/guix.texi:16494 msgid "A string containing a comma-separated list of one or more baud rates, in descending order." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16138 +#: guix-git/doc/guix.texi:16495 #, no-wrap msgid "@code{term} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16141 +#: guix-git/doc/guix.texi:16498 msgid "A string containing the value used for the @env{TERM} environment variable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16142 +#: guix-git/doc/guix.texi:16499 #, no-wrap msgid "@code{eight-bits?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16145 +#: guix-git/doc/guix.texi:16502 msgid "When @code{#t}, the tty is assumed to be 8-bit clean, and parity detection is disabled." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16149 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:16506 guix-git/doc/guix.texi:16665 msgid "When passed a login name, as a string, the specified user will be logged in automatically without prompting for their login name or password." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16150 +#: guix-git/doc/guix.texi:16507 #, no-wrap msgid "@code{no-reset?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16152 +#: guix-git/doc/guix.texi:16509 msgid "When @code{#t}, don't reset terminal cflags (control modes)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16153 +#: guix-git/doc/guix.texi:16510 #, no-wrap msgid "@code{host} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16156 +#: guix-git/doc/guix.texi:16513 msgid "This accepts a string containing the ``login_host'', which will be written into the @file{/var/run/utmpx} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16157 +#: guix-git/doc/guix.texi:16514 #, no-wrap msgid "@code{remote?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16161 +#: guix-git/doc/guix.texi:16518 msgid "When set to @code{#t} in conjunction with @var{host}, this will add an @code{-r} fakehost option to the command line of the login program specified in @var{login-program}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16162 +#: guix-git/doc/guix.texi:16519 #, no-wrap msgid "@code{flow-control?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16164 +#: guix-git/doc/guix.texi:16521 msgid "When set to @code{#t}, enable hardware (RTS/CTS) flow control." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16165 +#: guix-git/doc/guix.texi:16522 #, no-wrap msgid "@code{no-issue?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16168 +#: guix-git/doc/guix.texi:16525 msgid "When set to @code{#t}, the contents of the @file{/etc/issue} file will not be displayed before presenting the login prompt." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16169 +#: guix-git/doc/guix.texi:16526 #, no-wrap msgid "@code{init-string} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16172 +#: guix-git/doc/guix.texi:16529 msgid "This accepts a string that will be sent to the tty or modem before sending anything else. It can be used to initialize a modem." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16173 +#: guix-git/doc/guix.texi:16530 #, no-wrap msgid "@code{no-clear?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16176 +#: guix-git/doc/guix.texi:16533 msgid "When set to @code{#t}, agetty will not clear the screen before showing the login prompt." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16177 +#: guix-git/doc/guix.texi:16534 #, no-wrap msgid "@code{login-program} (default: (file-append shadow \"/bin/login\"))" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16181 +#: guix-git/doc/guix.texi:16538 msgid "This must be either a gexp denoting the name of a log-in program, or unset, in which case the default value is the @command{login} from the Shadow tool suite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16182 +#: guix-git/doc/guix.texi:16539 #, no-wrap msgid "@code{local-line} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16186 +#: guix-git/doc/guix.texi:16543 msgid "Control the CLOCAL line flag. This accepts one of three symbols as arguments, @code{'auto}, @code{'always}, or @code{'never}. If @code{#f}, the default value chosen by agetty is @code{'auto}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16187 +#: guix-git/doc/guix.texi:16544 #, no-wrap msgid "@code{extract-baud?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16190 +#: guix-git/doc/guix.texi:16547 msgid "When set to @code{#t}, instruct agetty to try to extract the baud rate from the status messages produced by certain types of modems." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16191 +#: guix-git/doc/guix.texi:16548 #, no-wrap msgid "@code{skip-login?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16195 +#: guix-git/doc/guix.texi:16552 msgid "When set to @code{#t}, do not prompt the user for a login name. This can be used with @var{login-program} field to use non-standard login systems." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16196 +#: guix-git/doc/guix.texi:16553 #, no-wrap msgid "@code{no-newline?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16199 +#: guix-git/doc/guix.texi:16556 msgid "When set to @code{#t}, do not print a newline before printing the @file{/etc/issue} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16201 +#: guix-git/doc/guix.texi:16558 #, no-wrap msgid "@code{login-options} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16206 +#: guix-git/doc/guix.texi:16563 msgid "This option accepts a string containing options that are passed to the login program. When used with the @var{login-program}, be aware that a malicious user could try to enter a login name containing embedded options that could be parsed by the login program." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16207 +#: guix-git/doc/guix.texi:16564 #, no-wrap msgid "@code{login-pause} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16211 +#: guix-git/doc/guix.texi:16568 msgid "When set to @code{#t}, wait for any key before showing the login prompt. This can be used in conjunction with @var{auto-login} to save memory by lazily spawning shells." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16212 +#: guix-git/doc/guix.texi:16569 #, no-wrap msgid "@code{chroot} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16215 +#: guix-git/doc/guix.texi:16572 msgid "Change root to the specified directory. This option accepts a directory path as a string." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16216 +#: guix-git/doc/guix.texi:16573 #, no-wrap msgid "@code{hangup?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16219 +#: guix-git/doc/guix.texi:16576 msgid "Use the Linux system call @code{vhangup} to do a virtual hangup of the specified terminal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16220 +#: guix-git/doc/guix.texi:16577 #, no-wrap msgid "@code{keep-baud?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16224 +#: guix-git/doc/guix.texi:16581 msgid "When set to @code{#t}, try to keep the existing baud rate. The baud rates from @var{baud-rate} are used when agetty receives a @key{BREAK} character." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16225 +#: guix-git/doc/guix.texi:16582 #, no-wrap msgid "@code{timeout} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16228 +#: guix-git/doc/guix.texi:16585 msgid "When set to an integer value, terminate if no user name could be read within @var{timeout} seconds." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16229 +#: guix-git/doc/guix.texi:16586 #, no-wrap msgid "@code{detect-case?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16235 +#: guix-git/doc/guix.texi:16592 msgid "When set to @code{#t}, turn on support for detecting an uppercase-only terminal. This setting will detect a login name containing only uppercase letters as indicating an uppercase-only terminal and turn on some upper-to-lower case conversions. Note that this will not support Unicode characters." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16236 +#: guix-git/doc/guix.texi:16593 #, no-wrap msgid "@code{wait-cr?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16241 +#: guix-git/doc/guix.texi:16598 msgid "When set to @code{#t}, wait for the user or modem to send a carriage-return or linefeed character before displaying @file{/etc/issue} or login prompt. This is typically used with the @var{init-string} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16242 +#: guix-git/doc/guix.texi:16599 #, no-wrap msgid "@code{no-hints?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16245 +#: guix-git/doc/guix.texi:16602 msgid "When set to @code{#t}, do not print hints about Num, Caps, and Scroll locks." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16246 +#: guix-git/doc/guix.texi:16603 #, no-wrap msgid "@code{no-hostname?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16249 +#: guix-git/doc/guix.texi:16606 msgid "By default, the hostname is printed. When this option is set to @code{#t}, no hostname will be shown at all." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16250 +#: guix-git/doc/guix.texi:16607 #, no-wrap msgid "@code{long-hostname?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16254 +#: guix-git/doc/guix.texi:16611 msgid "By default, the hostname is only printed until the first dot. When this option is set to @code{#t}, the fully qualified hostname by @code{gethostname} or @code{getaddrinfo} is shown." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16255 +#: guix-git/doc/guix.texi:16612 #, no-wrap msgid "@code{erase-characters} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16258 +#: guix-git/doc/guix.texi:16615 msgid "This option accepts a string of additional characters that should be interpreted as backspace when the user types their login name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16259 +#: guix-git/doc/guix.texi:16616 #, no-wrap msgid "@code{kill-characters} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16263 +#: guix-git/doc/guix.texi:16620 msgid "This option accepts a string that should be interpreted to mean ``ignore all previous characters'' (also called a ``kill'' character) when the user types their login name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16264 +#: guix-git/doc/guix.texi:16621 #, no-wrap msgid "@code{chdir} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16267 +#: guix-git/doc/guix.texi:16624 msgid "This option accepts, as a string, a directory path that will be changed to before login." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16268 +#: guix-git/doc/guix.texi:16625 #, no-wrap msgid "@code{delay} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16271 +#: guix-git/doc/guix.texi:16628 msgid "This options accepts, as an integer, the number of seconds to sleep before opening the tty and displaying the login prompt." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16272 +#: guix-git/doc/guix.texi:16629 #, no-wrap msgid "@code{nice} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16275 +#: guix-git/doc/guix.texi:16632 msgid "This option accepts, as an integer, the nice value with which to run the @command{login} program." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16276 guix-git/doc/guix.texi:16564 -#: guix-git/doc/guix.texi:17478 guix-git/doc/guix.texi:25181 -#: guix-git/doc/guix.texi:26658 guix-git/doc/guix.texi:29074 -#: guix-git/doc/guix.texi:29869 guix-git/doc/guix.texi:31622 -#: guix-git/doc/guix.texi:34051 +#: guix-git/doc/guix.texi:16633 guix-git/doc/guix.texi:16921 +#: guix-git/doc/guix.texi:17840 guix-git/doc/guix.texi:25543 +#: guix-git/doc/guix.texi:26995 guix-git/doc/guix.texi:29411 +#: guix-git/doc/guix.texi:30234 guix-git/doc/guix.texi:31987 +#: guix-git/doc/guix.texi:34488 #, no-wrap msgid "@code{extra-options} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16279 +#: guix-git/doc/guix.texi:16636 msgid "This option provides an ``escape hatch'' for the user to provide arbitrary command-line arguments to @command{agetty} as a list of strings." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16283 +#: guix-git/doc/guix.texi:16640 #, no-wrap msgid "{Scheme Procedure} kmscon-service-type @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16287 +#: guix-git/doc/guix.texi:16644 msgid "Return a service to run @uref{https://www.freedesktop.org/wiki/Software/kmscon,kmscon} according to @var{config}, a @code{} object, which specifies the tty to run, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16289 +#: guix-git/doc/guix.texi:16646 #, no-wrap msgid "{Data Type} kmscon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16292 +#: guix-git/doc/guix.texi:16649 msgid "This is the data type representing the configuration of Kmscon, which implements virtual console log-in." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16295 +#: guix-git/doc/guix.texi:16652 #, no-wrap msgid "virtual-terminal" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16297 +#: guix-git/doc/guix.texi:16654 msgid "The name of the console this Kmscon runs on---e.g., @code{\"tty1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16298 +#: guix-git/doc/guix.texi:16655 #, no-wrap msgid "@code{login-program} (default: @code{#~(string-append #$shadow \"/bin/login\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16301 +#: guix-git/doc/guix.texi:16658 msgid "A gexp denoting the name of the log-in program. The default log-in program is @command{login} from the Shadow tool suite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16302 +#: guix-git/doc/guix.texi:16659 #, no-wrap msgid "@code{login-arguments} (default: @code{'(\"-p\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16304 +#: guix-git/doc/guix.texi:16661 msgid "A list of arguments to pass to @command{login}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16309 +#: guix-git/doc/guix.texi:16666 #, no-wrap msgid "@code{hardware-acceleration?} (default: #f)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16311 +#: guix-git/doc/guix.texi:16668 msgid "Whether to use hardware acceleration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16312 +#: guix-git/doc/guix.texi:16669 #, no-wrap msgid "@code{font-engine} (default: @code{\"pango\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16314 +#: guix-git/doc/guix.texi:16671 msgid "Font engine used in Kmscon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16315 +#: guix-git/doc/guix.texi:16672 #, no-wrap msgid "@code{font-size} (default: @code{12})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16317 +#: guix-git/doc/guix.texi:16674 msgid "Font size used in Kmscon." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16321 +#: guix-git/doc/guix.texi:16678 msgid "If this is @code{#f}, Kmscon uses the default keyboard layout---usually US English (``qwerty'') for a 105-key PC keyboard." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16325 +#: guix-git/doc/guix.texi:16682 msgid "Otherwise this must be a @code{keyboard-layout} object specifying the keyboard layout. @xref{Keyboard Layout}, for more information on how to specify the keyboard layout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16326 +#: guix-git/doc/guix.texi:16683 #, no-wrap msgid "@code{kmscon} (default: @var{kmscon})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16328 +#: guix-git/doc/guix.texi:16685 msgid "The Kmscon package to use." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16332 +#: guix-git/doc/guix.texi:16689 #, no-wrap msgid "name service cache daemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16333 +#: guix-git/doc/guix.texi:16690 #, no-wrap msgid "nscd" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16334 +#: guix-git/doc/guix.texi:16691 #, no-wrap msgid "{Scheme Procedure} nscd-service [@var{config}] [#:glibc glibc] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16339 +#: guix-git/doc/guix.texi:16696 msgid "[#:name-services '()] Return a service that runs the libc name service cache daemon (nscd) with the given @var{config}---an @code{} object. @xref{Name Service Switch}, for an example." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16341 +#: guix-git/doc/guix.texi:16698 msgid "For convenience, the Shepherd service for nscd provides the following actions:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16343 +#: guix-git/doc/guix.texi:16700 #, no-wrap msgid "invalidate" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16344 +#: guix-git/doc/guix.texi:16701 #, no-wrap msgid "cache invalidation, nscd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16345 +#: guix-git/doc/guix.texi:16702 #, no-wrap msgid "nscd, cache invalidation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16347 +#: guix-git/doc/guix.texi:16704 msgid "This invalidate the given cache. For instance, running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16350 +#: guix-git/doc/guix.texi:16707 #, no-wrap msgid "herd invalidate nscd hosts\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16354 +#: guix-git/doc/guix.texi:16711 msgid "invalidates the host name lookup cache of nscd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16355 +#: guix-git/doc/guix.texi:16712 #, no-wrap msgid "statistics" msgstr "통계" #. type: table -#: guix-git/doc/guix.texi:16358 +#: guix-git/doc/guix.texi:16715 msgid "Running @command{herd statistics nscd} displays information about nscd usage and caches." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16362 +#: guix-git/doc/guix.texi:16719 #, no-wrap msgid "{Scheme Variable} %nscd-default-configuration" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16366 +#: guix-git/doc/guix.texi:16723 msgid "This is the default @code{} value (see below) used by @code{nscd-service}. It uses the caches defined by @code{%nscd-default-caches}; see below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16368 +#: guix-git/doc/guix.texi:16725 #, no-wrap msgid "{Data Type} nscd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16371 +#: guix-git/doc/guix.texi:16728 msgid "This is the data type representing the name service cache daemon (nscd) configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16374 +#: guix-git/doc/guix.texi:16731 #, no-wrap msgid "@code{name-services} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16377 +#: guix-git/doc/guix.texi:16734 msgid "List of packages denoting @dfn{name services} that must be visible to the nscd---e.g., @code{(list @var{nss-mdns})}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16378 +#: guix-git/doc/guix.texi:16735 #, no-wrap msgid "@code{glibc} (default: @var{glibc})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16381 +#: guix-git/doc/guix.texi:16738 msgid "Package object denoting the GNU C Library providing the @command{nscd} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16382 +#: guix-git/doc/guix.texi:16739 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/nscd.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16385 +#: guix-git/doc/guix.texi:16742 msgid "Name of the nscd log file. This is where debugging output goes when @code{debug-level} is strictly positive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16386 +#: guix-git/doc/guix.texi:16743 #, no-wrap msgid "@code{debug-level} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16389 +#: guix-git/doc/guix.texi:16746 msgid "Integer denoting the debugging levels. Higher numbers mean that more debugging output is logged." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16390 +#: guix-git/doc/guix.texi:16747 #, no-wrap msgid "@code{caches} (default: @code{%nscd-default-caches})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16393 +#: guix-git/doc/guix.texi:16750 msgid "List of @code{} objects denoting things to be cached; see below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16397 +#: guix-git/doc/guix.texi:16754 #, no-wrap msgid "{Data Type} nscd-cache" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16399 +#: guix-git/doc/guix.texi:16756 msgid "Data type representing a cache database of nscd and its parameters." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16402 guix-git/doc/guix.texi:21071 +#: guix-git/doc/guix.texi:16759 guix-git/doc/guix.texi:21433 #, no-wrap msgid "database" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16407 +#: guix-git/doc/guix.texi:16764 msgid "This is a symbol representing the name of the database to be cached. Valid values are @code{passwd}, @code{group}, @code{hosts}, and @code{services}, which designate the corresponding NSS database (@pxref{NSS Basics,,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16408 +#: guix-git/doc/guix.texi:16765 #, no-wrap msgid "positive-time-to-live" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:16409 +#: guix-git/doc/guix.texi:16766 #, no-wrap msgid "@code{negative-time-to-live} (default: @code{20})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16412 +#: guix-git/doc/guix.texi:16769 msgid "A number representing the number of seconds during which a positive or negative lookup result remains in cache." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16413 +#: guix-git/doc/guix.texi:16770 #, no-wrap msgid "@code{check-files?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16416 +#: guix-git/doc/guix.texi:16773 msgid "Whether to check for updates of the files corresponding to @var{database}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16420 +#: guix-git/doc/guix.texi:16777 msgid "For instance, when @var{database} is @code{hosts}, setting this flag instructs nscd to check for updates in @file{/etc/hosts} and to take them into account." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16421 +#: guix-git/doc/guix.texi:16778 #, no-wrap msgid "@code{persistent?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16423 +#: guix-git/doc/guix.texi:16780 msgid "Whether the cache should be stored persistently on disk." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16424 +#: guix-git/doc/guix.texi:16781 #, no-wrap msgid "@code{shared?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16426 +#: guix-git/doc/guix.texi:16783 msgid "Whether the cache should be shared among users." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16427 +#: guix-git/doc/guix.texi:16784 #, no-wrap msgid "@code{max-database-size} (default: 32@tie{}MiB)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16429 +#: guix-git/doc/guix.texi:16786 msgid "Maximum size in bytes of the database cache." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16436 +#: guix-git/doc/guix.texi:16793 #, no-wrap msgid "{Scheme Variable} %nscd-default-caches" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16439 +#: guix-git/doc/guix.texi:16796 msgid "List of @code{} objects used by default by @code{nscd-configuration} (see above)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16445 +#: guix-git/doc/guix.texi:16802 msgid "It enables persistent and aggressive caching of service and host name lookups. The latter provides better host name lookup performance, resilience in the face of unreliable name servers, and also better privacy---often the result of host name lookups is in local cache, so external name servers do not even need to be queried." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16448 +#: guix-git/doc/guix.texi:16805 msgid "syslog-configuration-type" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16448 guix-git/doc/guix.texi:16464 +#: guix-git/doc/guix.texi:16805 guix-git/doc/guix.texi:16821 #, no-wrap msgid "syslog" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16449 guix-git/doc/guix.texi:17035 +#: guix-git/doc/guix.texi:16806 guix-git/doc/guix.texi:17397 #, no-wrap msgid "logging" msgstr "로그중" #. type: deftp -#: guix-git/doc/guix.texi:16450 +#: guix-git/doc/guix.texi:16807 #, no-wrap msgid "{Data Type} syslog-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16452 +#: guix-git/doc/guix.texi:16809 msgid "This data type represents the configuration of the syslog daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16454 +#: guix-git/doc/guix.texi:16811 #, no-wrap msgid "@code{syslogd} (default: @code{#~(string-append #$inetutils \"/libexec/syslogd\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16456 +#: guix-git/doc/guix.texi:16813 msgid "The syslog daemon to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16457 +#: guix-git/doc/guix.texi:16814 #, no-wrap msgid "@code{config-file} (default: @code{%default-syslog.conf})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16459 +#: guix-git/doc/guix.texi:16816 msgid "The syslog configuration file to use." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16464 +#: guix-git/doc/guix.texi:16821 msgid "syslog-service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16465 +#: guix-git/doc/guix.texi:16822 #, no-wrap msgid "{Scheme Procedure} syslog-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16467 +#: guix-git/doc/guix.texi:16824 msgid "Return a service that runs a syslog daemon according to @var{config}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16470 +#: guix-git/doc/guix.texi:16827 msgid "@xref{syslogd invocation,,, inetutils, GNU Inetutils}, for more information on the configuration file syntax." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16472 +#: guix-git/doc/guix.texi:16829 #, no-wrap msgid "{Scheme Variable} guix-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16476 +#: guix-git/doc/guix.texi:16833 msgid "This is the type of the service that runs the build daemon, @command{guix-daemon} (@pxref{Invoking guix-daemon}). Its value must be a @code{guix-configuration} record as described below." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16479 +#: guix-git/doc/guix.texi:16836 msgid "guix-configuration-type" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16479 +#: guix-git/doc/guix.texi:16836 #, no-wrap msgid "{Data Type} guix-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16482 +#: guix-git/doc/guix.texi:16839 msgid "This data type represents the configuration of the Guix build daemon. @xref{Invoking guix-daemon}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16484 +#: guix-git/doc/guix.texi:16841 #, no-wrap msgid "@code{guix} (default: @var{guix})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16486 guix-git/doc/guix.texi:16763 +#: guix-git/doc/guix.texi:16843 guix-git/doc/guix.texi:17120 msgid "The Guix package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16487 +#: guix-git/doc/guix.texi:16844 #, no-wrap msgid "@code{build-group} (default: @code{\"guixbuild\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16489 +#: guix-git/doc/guix.texi:16846 msgid "Name of the group for build user accounts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16490 +#: guix-git/doc/guix.texi:16847 #, no-wrap msgid "@code{build-accounts} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16492 +#: guix-git/doc/guix.texi:16849 msgid "Number of build user accounts to create." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16493 +#: guix-git/doc/guix.texi:16850 #, no-wrap msgid "@code{authorize-key?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16500 +#: guix-git/doc/guix.texi:16857 msgid "Whether to authorize the substitute keys listed in @code{authorized-keys}---by default that of @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} (@pxref{Substitutes})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16506 +#: guix-git/doc/guix.texi:16863 msgid "When @code{authorize-key?} is true, @file{/etc/guix/acl} cannot be changed by invoking @command{guix archive --authorize}. You must instead adjust @code{guix-configuration} as you wish and reconfigure the system. This ensures that your operating system configuration file is self-contained." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:16513 +#: guix-git/doc/guix.texi:16870 msgid "When booting or reconfiguring to a system where @code{authorize-key?} is true, the existing @file{/etc/guix/acl} file is backed up as @file{/etc/guix/acl.bak} if it was determined to be a manually modified file. This is to facilitate migration from earlier versions, which allowed for in-place modifications to @file{/etc/guix/acl}." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:16515 +#: guix-git/doc/guix.texi:16872 #, no-wrap msgid "%default-authorized-guix-keys" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16516 +#: guix-git/doc/guix.texi:16873 #, no-wrap msgid "@code{authorized-keys} (default: @code{%default-authorized-guix-keys})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16522 +#: guix-git/doc/guix.texi:16879 msgid "The list of authorized key files for archive imports, as a list of string-valued gexps (@pxref{Invoking guix archive}). By default, it contains that of @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} (@pxref{Substitutes}). See @code{substitute-urls} below for an example on how to change it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16523 +#: guix-git/doc/guix.texi:16880 #, no-wrap msgid "@code{use-substitutes?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16525 +#: guix-git/doc/guix.texi:16882 msgid "Whether to use substitutes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16526 guix-git/doc/guix.texi:29171 +#: guix-git/doc/guix.texi:16883 guix-git/doc/guix.texi:29508 #, no-wrap msgid "@code{substitute-urls} (default: @code{%default-substitute-urls})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16528 guix-git/doc/guix.texi:29173 +#: guix-git/doc/guix.texi:16885 guix-git/doc/guix.texi:29510 msgid "The list of URLs where to look for substitutes by default." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16535 +#: guix-git/doc/guix.texi:16892 msgid "Suppose you would like to fetch substitutes from @code{guix.example.org} in addition to @code{@value{SUBSTITUTE-SERVER-1}}. You will need to do two things: (1) add @code{guix.example.org} to @code{substitute-urls}, and (2) authorize its signing key, having done appropriate checks (@pxref{Substitute Server Authorization}). The configuration below does exactly that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16544 +#: guix-git/doc/guix.texi:16901 #, no-wrap msgid "" "(guix-configuration\n" @@ -28851,150 +29466,150 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16549 +#: guix-git/doc/guix.texi:16906 msgid "This example assumes that the file @file{./guix.example.org-key.pub} contains the public key that @code{guix.example.org} uses to sign substitutes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16550 +#: guix-git/doc/guix.texi:16907 #, no-wrap msgid "@code{max-silent-time} (default: @code{0})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:16551 +#: guix-git/doc/guix.texi:16908 #, no-wrap msgid "@code{timeout} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16555 +#: guix-git/doc/guix.texi:16912 msgid "The number of seconds of silence and the number of seconds of activity, respectively, after which a build process times out. A value of zero disables the timeout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16556 +#: guix-git/doc/guix.texi:16913 #, no-wrap -msgid "@code{log-compression} (default: @code{'bzip2})" +msgid "@code{log-compression} (default: @code{'gzip})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16559 +#: guix-git/doc/guix.texi:16916 msgid "The type of compression used for build logs---one of @code{gzip}, @code{bzip2}, or @code{none}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16560 +#: guix-git/doc/guix.texi:16917 #, no-wrap msgid "@code{discover?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16566 +#: guix-git/doc/guix.texi:16923 msgid "List of extra command-line options for @command{guix-daemon}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16567 +#: guix-git/doc/guix.texi:16924 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/guix-daemon.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16570 +#: guix-git/doc/guix.texi:16927 msgid "File where @command{guix-daemon}'s standard output and standard error are written." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16571 +#: guix-git/doc/guix.texi:16928 #, no-wrap msgid "HTTP proxy, for @code{guix-daemon}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16572 +#: guix-git/doc/guix.texi:16929 #, no-wrap msgid "proxy, for @code{guix-daemon} HTTP access" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16573 +#: guix-git/doc/guix.texi:16930 #, no-wrap msgid "@code{http-proxy} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16576 +#: guix-git/doc/guix.texi:16933 msgid "The URL of the HTTP and HTTPS proxy used for downloading fixed-output derivations and substitutes." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16579 +#: guix-git/doc/guix.texi:16936 msgid "It is also possible to change the daemon's proxy at run time through the @code{set-http-proxy} action, which restarts it:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16582 +#: guix-git/doc/guix.texi:16939 #, no-wrap msgid "herd set-http-proxy guix-daemon http://localhost:8118\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16585 +#: guix-git/doc/guix.texi:16942 msgid "To clear the proxy settings, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16588 +#: guix-git/doc/guix.texi:16945 #, no-wrap msgid "herd set-http-proxy guix-daemon\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16590 +#: guix-git/doc/guix.texi:16947 #, no-wrap msgid "@code{tmpdir} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16592 +#: guix-git/doc/guix.texi:16949 msgid "A directory path where the @command{guix-daemon} will perform builds." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16596 +#: guix-git/doc/guix.texi:16953 #, no-wrap msgid "{Scheme Procedure} udev-service [#:udev @var{eudev} #:rules @code{'()}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16602 +#: guix-git/doc/guix.texi:16959 msgid "Run @var{udev}, which populates the @file{/dev} directory dynamically. udev rules can be provided as a list of files through the @var{rules} variable. The procedures @code{udev-rule}, @code{udev-rules-service} and @code{file->udev-rule} from @code{(gnu services base)} simplify the creation of such rule files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16605 +#: guix-git/doc/guix.texi:16962 msgid "The @command{herd rules udev} command, as root, returns the name of the directory containing all the active udev rules." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16607 +#: guix-git/doc/guix.texi:16964 #, no-wrap msgid "{Scheme Procedure} udev-rule [@var{file-name} @var{contents}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16610 +#: guix-git/doc/guix.texi:16967 msgid "Return a udev-rule file named @var{file-name} containing the rules defined by the @var{contents} literal." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16614 +#: guix-git/doc/guix.texi:16971 msgid "In the following example, a rule for a USB device is defined to be stored in the file @file{90-usb-thing.rules}. The rule runs a script upon detecting a USB device with a given product identifier." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16622 +#: guix-git/doc/guix.texi:16979 #, no-wrap msgid "" "(define %example-udev-rule\n" @@ -29006,23 +29621,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16625 +#: guix-git/doc/guix.texi:16982 #, no-wrap msgid "{Scheme Procedure} udev-rules-service [@var{name} @var{rules}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16632 +#: guix-git/doc/guix.texi:16989 msgid "[#:groups @var{groups}] Return a service that extends @code{udev-service-type } with @var{rules} and @code{account-service-type} with @var{groups} as system groups. This works by creating a singleton service type @code{@var{name}-udev-rules}, of which the returned service is an instance." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16635 +#: guix-git/doc/guix.texi:16992 msgid "Here we show how it can be used to extend @code{udev-service-type} with the previously defined rule @code{%example-udev-rule}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16642 +#: guix-git/doc/guix.texi:16999 #, no-wrap msgid "" "(operating-system\n" @@ -29033,23 +29648,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16645 +#: guix-git/doc/guix.texi:17002 #, no-wrap msgid "{Scheme Procedure} file->udev-rule [@var{file-name} @var{file}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16648 +#: guix-git/doc/guix.texi:17005 msgid "Return a udev file named @var{file-name} containing the rules defined within @var{file}, a file-like object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16650 +#: guix-git/doc/guix.texi:17007 msgid "The following example showcases how we can use an existing rule file." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16655 +#: guix-git/doc/guix.texi:17012 #, no-wrap msgid "" "(use-modules (guix download) ;for url-fetch\n" @@ -29059,7 +29674,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16666 +#: guix-git/doc/guix.texi:17023 #, no-wrap msgid "" "(define %android-udev-rules\n" @@ -29075,17 +29690,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16675 +#: guix-git/doc/guix.texi:17032 msgid "Additionally, Guix package definitions can be included in @var{rules} in order to extend the udev rules with the definitions found under their @file{lib/udev/rules.d} sub-directory. In lieu of the previous @var{file->udev-rule} example, we could have used the @var{android-udev-rules} package which exists in Guix in the @code{(gnu packages android)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16684 +#: guix-git/doc/guix.texi:17041 msgid "The following example shows how to use the @var{android-udev-rules} package so that the Android tool @command{adb} can detect devices without root privileges. It also details how to create the @code{adbusers} group, which is required for the proper functioning of the rules defined within the @code{android-udev-rules} package. To create such a group, we must define it both as part of the @code{supplementary-groups} of our @code{user-account} declaration, as well as in the @var{groups} of the @code{udev-rules-service} procedure." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16689 +#: guix-git/doc/guix.texi:17046 #, no-wrap msgid "" "(use-modules (gnu packages android) ;for android-udev-rules\n" @@ -29095,7 +29710,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16702 +#: guix-git/doc/guix.texi:17059 #, no-wrap msgid "" "(operating-system\n" @@ -29113,328 +29728,339 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16704 +#: guix-git/doc/guix.texi:17061 #, no-wrap msgid "{Scheme Variable} urandom-seed-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16709 +#: guix-git/doc/guix.texi:17066 msgid "Save some entropy in @code{%random-seed-file} to seed @file{/dev/urandom} when rebooting. It also tries to seed @file{/dev/urandom} from @file{/dev/hwrng} while booting, if @file{/dev/hwrng} exists and is readable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16711 +#: guix-git/doc/guix.texi:17068 #, no-wrap msgid "{Scheme Variable} %random-seed-file" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16715 +#: guix-git/doc/guix.texi:17072 msgid "This is the name of the file where some random bytes are saved by @var{urandom-seed-service} to seed @file{/dev/urandom} when rebooting. It defaults to @file{/var/lib/random-seed}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16717 +#: guix-git/doc/guix.texi:17074 #, no-wrap msgid "mouse" msgstr "마우스" #. type: cindex -#: guix-git/doc/guix.texi:16718 +#: guix-git/doc/guix.texi:17075 #, no-wrap msgid "gpm" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16719 +#: guix-git/doc/guix.texi:17076 #, no-wrap msgid "{Scheme Variable} gpm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16724 +#: guix-git/doc/guix.texi:17081 msgid "This is the type of the service that runs GPM, the @dfn{general-purpose mouse daemon}, which provides mouse support to the Linux console. GPM allows users to use the mouse in the console, notably to select, copy, and paste text." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16727 +#: guix-git/doc/guix.texi:17084 msgid "The value for services of this type must be a @code{gpm-configuration} (see below). This service is not part of @code{%base-services}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16729 +#: guix-git/doc/guix.texi:17086 #, no-wrap msgid "{Data Type} gpm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16731 +#: guix-git/doc/guix.texi:17088 msgid "Data type representing the configuration of GPM." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16733 +#: guix-git/doc/guix.texi:17090 #, no-wrap msgid "@code{options} (default: @code{%default-gpm-options})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16738 +#: guix-git/doc/guix.texi:17095 msgid "Command-line options passed to @command{gpm}. The default set of options instruct @command{gpm} to listen to mouse events on @file{/dev/input/mice}. @xref{Command Line,,, gpm, gpm manual}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16739 +#: guix-git/doc/guix.texi:17096 #, no-wrap msgid "@code{gpm} (default: @code{gpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16741 +#: guix-git/doc/guix.texi:17098 msgid "The GPM package to use." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16746 +#: guix-git/doc/guix.texi:17103 msgid "guix-publish-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16746 +#: guix-git/doc/guix.texi:17103 #, no-wrap msgid "{Scheme Variable} guix-publish-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16750 +#: guix-git/doc/guix.texi:17107 msgid "This is the service type for @command{guix publish} (@pxref{Invoking guix publish}). Its value must be a @code{guix-publish-configuration} object, as described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16754 +#: guix-git/doc/guix.texi:17111 msgid "This assumes that @file{/etc/guix} already contains a signing key pair as created by @command{guix archive --generate-key} (@pxref{Invoking guix archive}). If that is not the case, the service will fail to start." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16756 +#: guix-git/doc/guix.texi:17113 #, no-wrap msgid "{Data Type} guix-publish-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16759 +#: guix-git/doc/guix.texi:17116 msgid "Data type representing the configuration of the @code{guix publish} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16761 +#: guix-git/doc/guix.texi:17118 #, no-wrap msgid "@code{guix} (default: @code{guix})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16764 guix-git/doc/guix.texi:31477 +#: guix-git/doc/guix.texi:17121 guix-git/doc/guix.texi:31842 #, no-wrap msgid "@code{port} (default: @code{80})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16766 +#: guix-git/doc/guix.texi:17123 msgid "The TCP port to listen for connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16767 guix-git/doc/guix.texi:29054 -#: guix-git/doc/guix.texi:32858 +#: guix-git/doc/guix.texi:17124 guix-git/doc/guix.texi:29391 +#: guix-git/doc/guix.texi:33223 #, no-wrap msgid "@code{host} (default: @code{\"localhost\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16770 +#: guix-git/doc/guix.texi:17127 msgid "The host (and thus, network interface) to listen to. Use @code{\"0.0.0.0\"} to listen on all the network interfaces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16771 +#: guix-git/doc/guix.texi:17128 #, no-wrap msgid "@code{advertise?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16774 +#: guix-git/doc/guix.texi:17131 msgid "When true, advertise the service on the local network @i{via} the DNS-SD protocol, using Avahi." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16778 +#: guix-git/doc/guix.texi:17135 msgid "This allows neighboring Guix devices with discovery on (see @code{guix-configuration} above) to discover this @command{guix publish} instance and to automatically download substitutes from it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16779 +#: guix-git/doc/guix.texi:17136 #, no-wrap msgid "@code{compression} (default: @code{'((\"gzip\" 3) (\"zstd\" 3))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16783 +#: guix-git/doc/guix.texi:17140 msgid "This is a list of compression method/level tuple used when compressing substitutes. For example, to compress all substitutes with @emph{both} lzip at level 7 and gzip at level 9, write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16786 +#: guix-git/doc/guix.texi:17143 #, no-wrap msgid "'((\"lzip\" 7) (\"gzip\" 9))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16792 +#: guix-git/doc/guix.texi:17149 msgid "Level 9 achieves the best compression ratio at the expense of increased CPU usage, whereas level 1 achieves fast compression. @xref{Invoking guix publish}, for more information on the available compression methods and the tradeoffs involved." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16794 +#: guix-git/doc/guix.texi:17151 msgid "An empty list disables compression altogether." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16795 +#: guix-git/doc/guix.texi:17152 #, no-wrap msgid "@code{nar-path} (default: @code{\"nar\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16798 +#: guix-git/doc/guix.texi:17155 msgid "The URL path at which ``nars'' can be fetched. @xref{Invoking guix publish, @option{--nar-path}}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16799 +#: guix-git/doc/guix.texi:17156 #, no-wrap msgid "@code{cache} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16805 +#: guix-git/doc/guix.texi:17162 msgid "When it is @code{#f}, disable caching and instead generate archives on demand. Otherwise, this should be the name of a directory---e.g., @code{\"/var/cache/guix/publish\"}---where @command{guix publish} caches archives and meta-data ready to be sent. @xref{Invoking guix publish, @option{--cache}}, for more information on the tradeoffs involved." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16806 +#: guix-git/doc/guix.texi:17163 #, no-wrap msgid "@code{workers} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16810 +#: guix-git/doc/guix.texi:17167 msgid "When it is an integer, this is the number of worker threads used for caching; when @code{#f}, the number of processors is used. @xref{Invoking guix publish, @option{--workers}}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16811 +#: guix-git/doc/guix.texi:17168 #, no-wrap msgid "@code{cache-bypass-threshold} (default: 10 MiB)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16816 +#: guix-git/doc/guix.texi:17173 msgid "When @code{cache} is true, this is the maximum size in bytes of a store item for which @command{guix publish} may bypass its cache in case of a cache miss. @xref{Invoking guix publish, @option{--cache-bypass-threshold}}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16817 +#: guix-git/doc/guix.texi:17174 #, no-wrap msgid "@code{ttl} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16821 +#: guix-git/doc/guix.texi:17178 msgid "When it is an integer, this denotes the @dfn{time-to-live} in seconds of the published archives. @xref{Invoking guix publish, @option{--ttl}}, for more information." msgstr "" +#. type: item +#: guix-git/doc/guix.texi:17179 +#, no-wrap +msgid "@code{negative-ttl} (default: @code{#f})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:17183 +msgid "When it is an integer, this denotes the @dfn{time-to-live} in seconds for the negative lookups. @xref{Invoking guix publish, @option{--negative-ttl}}, for more information." +msgstr "" + #. type: anchor{#1} -#: guix-git/doc/guix.texi:16825 +#: guix-git/doc/guix.texi:17187 msgid "rngd-service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16825 +#: guix-git/doc/guix.texi:17187 #, no-wrap msgid "{Scheme Procedure} rngd-service [#:rng-tools @var{rng-tools}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16830 +#: guix-git/doc/guix.texi:17192 msgid "[#:device \"/dev/hwrng\"] Return a service that runs the @command{rngd} program from @var{rng-tools} to add @var{device} to the kernel's entropy pool. The service will fail if @var{device} does not exist." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16833 +#: guix-git/doc/guix.texi:17195 msgid "pam-limits-service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16833 +#: guix-git/doc/guix.texi:17195 #, no-wrap msgid "session limits" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16834 +#: guix-git/doc/guix.texi:17196 #, no-wrap msgid "ulimit" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16835 +#: guix-git/doc/guix.texi:17197 #, no-wrap msgid "priority" msgstr "우선 순위" #. type: cindex -#: guix-git/doc/guix.texi:16836 +#: guix-git/doc/guix.texi:17198 #, no-wrap msgid "realtime" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16837 +#: guix-git/doc/guix.texi:17199 #, no-wrap msgid "jackd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16838 +#: guix-git/doc/guix.texi:17200 #, no-wrap msgid "nofile" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16839 +#: guix-git/doc/guix.texi:17201 #, no-wrap msgid "open file descriptors" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16840 +#: guix-git/doc/guix.texi:17202 #, no-wrap msgid "{Scheme Procedure} pam-limits-service [#:limits @code{'()}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16847 +#: guix-git/doc/guix.texi:17209 msgid "Return a service that installs a configuration file for the @uref{http://linux-pam.org/Linux-PAM-html/sag-pam_limits.html, @code{pam_limits} module}. The procedure optionally takes a list of @code{pam-limits-entry} values, which can be used to specify @code{ulimit} limits and @code{nice} priority limits to user sessions." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16850 +#: guix-git/doc/guix.texi:17212 msgid "The following limits definition sets two hard and soft limits for all login sessions of users in the @code{realtime} group:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16856 +#: guix-git/doc/guix.texi:17218 #, no-wrap msgid "" "(pam-limits-service\n" @@ -29444,17 +30070,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16862 +#: guix-git/doc/guix.texi:17224 msgid "The first entry increases the maximum realtime priority for non-privileged processes; the second entry lifts any restriction of the maximum address space that can be locked in memory. These settings are commonly used for real-time audio systems." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16865 +#: guix-git/doc/guix.texi:17227 msgid "Another useful example is raising the maximum number of open file descriptors that can be used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16870 +#: guix-git/doc/guix.texi:17232 #, no-wrap msgid "" "(pam-limits-service\n" @@ -29463,40 +30089,40 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16878 +#: guix-git/doc/guix.texi:17240 msgid "In the above example, the asterisk means the limit should apply to any user. It is important to ensure the chosen value doesn't exceed the maximum system value visible in the @file{/proc/sys/fs/file-max} file, else the users would be prevented from login in. For more information about the Pluggable Authentication Module (PAM) limits, refer to the @samp{pam_limits} man page from the @code{linux-pam} package." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16883 guix-git/doc/guix.texi:37407 +#: guix-git/doc/guix.texi:17245 guix-git/doc/guix.texi:37897 #, no-wrap msgid "cron" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16884 guix-git/doc/guix.texi:37408 +#: guix-git/doc/guix.texi:17246 guix-git/doc/guix.texi:37898 #, no-wrap msgid "mcron" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16885 guix-git/doc/guix.texi:37409 +#: guix-git/doc/guix.texi:17247 guix-git/doc/guix.texi:37899 #, no-wrap msgid "scheduling jobs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16892 +#: guix-git/doc/guix.texi:17254 msgid "The @code{(gnu services mcron)} module provides an interface to GNU@tie{}mcron, a daemon to run jobs at scheduled times (@pxref{Top,,, mcron, GNU@tie{}mcron}). GNU@tie{}mcron is similar to the traditional Unix @command{cron} daemon; the main difference is that it is implemented in Guile Scheme, which provides a lot of flexibility when specifying the scheduling of jobs and their actions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16900 +#: guix-git/doc/guix.texi:17262 msgid "The example below defines an operating system that runs the @command{updatedb} (@pxref{Invoking updatedb,,, find, Finding Files}) and the @command{guix gc} commands (@pxref{Invoking guix gc}) daily, as well as the @command{mkid} command on behalf of an unprivileged user (@pxref{mkid invocation,,, idutils, ID Database Utilities}). It uses gexps to introduce job definitions that are passed to mcron (@pxref{G-Expressions})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16904 +#: guix-git/doc/guix.texi:17266 #, no-wrap msgid "" "(use-modules (guix) (gnu) (gnu services mcron))\n" @@ -29505,7 +30131,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16914 +#: guix-git/doc/guix.texi:17276 #, no-wrap msgid "" "(define updatedb-job\n" @@ -29521,7 +30147,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16920 +#: guix-git/doc/guix.texi:17282 #, no-wrap msgid "" "(define garbage-collector-job\n" @@ -29533,7 +30159,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16927 +#: guix-git/doc/guix.texi:17289 #, no-wrap msgid "" "(define idutils-job\n" @@ -29546,7 +30172,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16930 +#: guix-git/doc/guix.texi:17292 #, no-wrap msgid "" "(operating-system\n" @@ -29555,7 +30181,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16940 +#: guix-git/doc/guix.texi:17302 #, no-wrap msgid "" " ;; %BASE-SERVICES already includes an instance of\n" @@ -29570,24 +30196,24 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:16942 +#: guix-git/doc/guix.texi:17304 #, fuzzy, no-wrap #| msgid "Top" msgid "Tip" msgstr "Top" #. type: quotation -#: guix-git/doc/guix.texi:16948 +#: guix-git/doc/guix.texi:17310 msgid "When providing the action of a job specification as a procedure, you should provide an explicit name for the job via the optional 3rd argument as done in the @code{updatedb-job} example above. Otherwise, the job would appear as ``Lambda function'' in the output of @command{herd schedule mcron}, which is not nearly descriptive enough!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16955 +#: guix-git/doc/guix.texi:17317 msgid "For more complex jobs defined in Scheme where you need control over the top level, for instance to introduce a @code{use-modules} form, you can move your code to a separate program using the @code{program-file} procedure of the @code{(guix gexp)} module (@pxref{G-Expressions}). The example below illustrates that." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16971 +#: guix-git/doc/guix.texi:17333 #, no-wrap msgid "" "(define %battery-alert-job\n" @@ -29608,7 +30234,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16973 +#: guix-git/doc/guix.texi:17335 #, no-wrap msgid "" " (define %min-level 20)\n" @@ -29616,7 +30242,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16984 +#: guix-git/doc/guix.texi:17346 #, no-wrap msgid "" " (setenv \"LC_ALL\" \"C\") ;ensure English output\n" @@ -29632,106 +30258,106 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16989 +#: guix-git/doc/guix.texi:17351 msgid "@xref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron}, for more information on mcron job specifications. Below is the reference of the mcron service." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16992 +#: guix-git/doc/guix.texi:17354 msgid "On a running system, you can use the @code{schedule} action of the service to visualize the mcron jobs that will be executed next:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16995 +#: guix-git/doc/guix.texi:17357 #, no-wrap msgid "# herd schedule mcron\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17000 +#: guix-git/doc/guix.texi:17362 msgid "The example above lists the next five tasks that will be executed, but you can also specify the number of tasks to display:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:17003 +#: guix-git/doc/guix.texi:17365 #, no-wrap msgid "# herd schedule mcron 10\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17005 +#: guix-git/doc/guix.texi:17367 #, no-wrap msgid "{Scheme Variable} mcron-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17008 +#: guix-git/doc/guix.texi:17370 msgid "This is the type of the @code{mcron} service, whose value is an @code{mcron-configuration} object." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17013 guix-git/doc/guix.texi:37428 +#: guix-git/doc/guix.texi:17375 guix-git/doc/guix.texi:37918 msgid "This service type can be the target of a service extension that provides additional job specifications (@pxref{Service Composition}). In other words, it is possible to define services that provide additional mcron jobs to run." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17015 +#: guix-git/doc/guix.texi:17377 #, no-wrap msgid "{Data Type} mcron-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17017 guix-git/doc/guix.texi:37432 +#: guix-git/doc/guix.texi:17379 guix-git/doc/guix.texi:37922 msgid "Data type representing the configuration of mcron." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17019 guix-git/doc/guix.texi:37434 +#: guix-git/doc/guix.texi:17381 guix-git/doc/guix.texi:37924 #, no-wrap msgid "@code{mcron} (default: @var{mcron})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17021 guix-git/doc/guix.texi:37436 +#: guix-git/doc/guix.texi:17383 guix-git/doc/guix.texi:37926 msgid "The mcron package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17022 guix-git/doc/guix.texi:17091 -#: guix-git/doc/guix.texi:37437 +#: guix-git/doc/guix.texi:17384 guix-git/doc/guix.texi:17453 +#: guix-git/doc/guix.texi:37927 #, no-wrap msgid "jobs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17026 guix-git/doc/guix.texi:37441 +#: guix-git/doc/guix.texi:17388 guix-git/doc/guix.texi:37931 msgid "This is a list of gexps (@pxref{G-Expressions}), where each gexp corresponds to an mcron job specification (@pxref{Syntax, mcron job specifications,, mcron, GNU@tie{}mcron})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17033 +#: guix-git/doc/guix.texi:17395 #, no-wrap msgid "rottlog" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17034 +#: guix-git/doc/guix.texi:17396 #, no-wrap msgid "log rotation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17041 +#: guix-git/doc/guix.texi:17403 msgid "Log files such as those found in @file{/var/log} tend to grow endlessly, so it's a good idea to @dfn{rotate} them once in a while---i.e., archive their contents in separate files, possibly compressed. The @code{(gnu services admin)} module provides an interface to GNU@tie{}Rot[t]log, a log rotation tool (@pxref{Top,,, rottlog, GNU Rot[t]log Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17047 +#: guix-git/doc/guix.texi:17409 msgid "This service is part of @code{%base-services}, and thus enabled by default, with the default settings, for commonly encountered log files. The example below shows how to extend it with an additional @dfn{rotation}, should you need to do that (usually, services that produce log files already take care of that):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17051 +#: guix-git/doc/guix.texi:17413 #, no-wrap msgid "" "(use-modules (guix) (gnu))\n" @@ -29740,7 +30366,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17055 +#: guix-git/doc/guix.texi:17417 #, no-wrap msgid "" "(define my-log-files\n" @@ -29750,7 +30376,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17064 +#: guix-git/doc/guix.texi:17426 #, no-wrap msgid "" "(operating-system\n" @@ -29764,93 +30390,93 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17066 +#: guix-git/doc/guix.texi:17428 #, no-wrap msgid "{Scheme Variable} rottlog-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17069 +#: guix-git/doc/guix.texi:17431 msgid "This is the type of the Rottlog service, whose value is a @code{rottlog-configuration} object." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17072 +#: guix-git/doc/guix.texi:17434 msgid "Other services can extend this one with new @code{log-rotation} objects (see below), thereby augmenting the set of files to be rotated." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17075 +#: guix-git/doc/guix.texi:17437 msgid "This service type can define mcron jobs (@pxref{Scheduled Job Execution}) to run the rottlog service." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17077 +#: guix-git/doc/guix.texi:17439 #, no-wrap msgid "{Data Type} rottlog-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17079 +#: guix-git/doc/guix.texi:17441 msgid "Data type representing the configuration of rottlog." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17081 +#: guix-git/doc/guix.texi:17443 #, no-wrap msgid "@code{rottlog} (default: @code{rottlog})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17083 +#: guix-git/doc/guix.texi:17445 msgid "The Rottlog package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17084 +#: guix-git/doc/guix.texi:17446 #, no-wrap msgid "@code{rc-file} (default: @code{(file-append rottlog \"/etc/rc\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17087 +#: guix-git/doc/guix.texi:17449 msgid "The Rottlog configuration file to use (@pxref{Mandatory RC Variables,,, rottlog, GNU Rot[t]log Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17088 +#: guix-git/doc/guix.texi:17450 #, no-wrap msgid "@code{rotations} (default: @code{%default-rotations})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17090 +#: guix-git/doc/guix.texi:17452 msgid "A list of @code{log-rotation} objects as defined below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17094 +#: guix-git/doc/guix.texi:17456 msgid "This is a list of gexps where each gexp corresponds to an mcron job specification (@pxref{Scheduled Job Execution})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17097 +#: guix-git/doc/guix.texi:17459 #, no-wrap msgid "{Data Type} log-rotation" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17099 +#: guix-git/doc/guix.texi:17461 msgid "Data type representing the rotation of a group of log files." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17103 +#: guix-git/doc/guix.texi:17465 msgid "Taking an example from the Rottlog manual (@pxref{Period Related File Examples,,, rottlog, GNU Rot[t]log Manual}), a log rotation might be defined like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17112 +#: guix-git/doc/guix.texi:17474 #, no-wrap msgid "" "(log-rotation\n" @@ -29863,121 +30489,115 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17115 +#: guix-git/doc/guix.texi:17477 msgid "The list of fields is as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17117 +#: guix-git/doc/guix.texi:17479 #, no-wrap msgid "@code{frequency} (default: @code{'weekly})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17119 +#: guix-git/doc/guix.texi:17481 msgid "The log rotation frequency, a symbol." msgstr "" -#. type: code{#1} -#: guix-git/doc/guix.texi:17120 -#, no-wrap -msgid "files" -msgstr "파일" - #. type: table -#: guix-git/doc/guix.texi:17122 +#: guix-git/doc/guix.texi:17484 msgid "The list of files or file glob patterns to rotate." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17123 +#: guix-git/doc/guix.texi:17485 #, no-wrap msgid "@code{options} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17126 +#: guix-git/doc/guix.texi:17488 msgid "The list of rottlog options for this rotation (@pxref{Configuration parameters,,, rottlog, GNU Rot[t]lg Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17127 +#: guix-git/doc/guix.texi:17489 #, no-wrap msgid "@code{post-rotate} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17129 +#: guix-git/doc/guix.texi:17491 msgid "Either @code{#f} or a gexp to execute once the rotation has completed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17132 +#: guix-git/doc/guix.texi:17494 #, no-wrap msgid "{Scheme Variable} %default-rotations" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17135 +#: guix-git/doc/guix.texi:17497 msgid "Specifies weekly rotation of @code{%rotated-files} and of @file{/var/log/guix-daemon.log}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17137 +#: guix-git/doc/guix.texi:17499 #, no-wrap msgid "{Scheme Variable} %rotated-files" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17141 +#: guix-git/doc/guix.texi:17503 msgid "The list of syslog-controlled files to be rotated. By default it is: @code{'(\"/var/log/messages\" \"/var/log/secure\" \"/var/log/debug\" \\ \"/var/log/maillog\")}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17154 +#: guix-git/doc/guix.texi:17516 msgid "The @code{(gnu services networking)} module provides services to configure network interfaces and set up networking on your machine. Those services provide different ways for you to set up your machine: by declaring a static network configuration, by running a Dynamic Host Configuration Protocol (DHCP) client, or by running daemons such as NetworkManager and Connman that automate the whole process, automatically adapt to connectivity changes, and provide a high-level user interface." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17160 +#: guix-git/doc/guix.texi:17522 msgid "On a laptop, NetworkManager and Connman are by far the most convenient options, which is why the default desktop services include NetworkManager (@pxref{Desktop Services, @code{%desktop-services}}). For a server, or for a virtual machine or a container, static network configuration or a simple DHCP client are often more appropriate." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17163 +#: guix-git/doc/guix.texi:17525 msgid "This section describes the various network setup services available, starting with static network configuration." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17164 +#: guix-git/doc/guix.texi:17526 #, no-wrap msgid "{Scheme Variable} static-networking-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17169 +#: guix-git/doc/guix.texi:17531 msgid "This is the type for statically-configured network interfaces. Its value must be a list of @code{static-networking} records. Each of them declares a set of @dfn{addresses}, @dfn{routes}, and @dfn{links}, as show below." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17170 +#: guix-git/doc/guix.texi:17532 #, no-wrap msgid "network interface controller (NIC)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17171 +#: guix-git/doc/guix.texi:17533 #, no-wrap msgid "NIC, networking interface controller" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17174 +#: guix-git/doc/guix.texi:17536 msgid "Here is the simplest configuration, with only one network interface controller (NIC) and only IPv4 connectivity:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17188 +#: guix-git/doc/guix.texi:17550 #, no-wrap msgid "" ";; Static networking for one NIC, IPv4-only.\n" @@ -29995,29 +30615,29 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17197 +#: guix-git/doc/guix.texi:17559 msgid "The snippet above can be added to the @code{services} field of your operating system configuration (@pxref{Using the Configuration System}). It will configure your machine to have 10.0.2.15 as its IP address, with a 24-bit netmask for the local network---meaning that any 10.0.2.@var{x} address is on the local area network (LAN). Traffic to addresses outside the local network is routed @i{via} 10.0.2.2. Host names are resolved by sending domain name system (DNS) queries to 10.0.2.3." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17199 +#: guix-git/doc/guix.texi:17561 #, fuzzy, no-wrap msgid "{Data Type} static-networking" msgstr "설정" #. type: deftp -#: guix-git/doc/guix.texi:17201 +#: guix-git/doc/guix.texi:17563 #, fuzzy msgid "This is the data type representing a static network configuration." msgstr "운영체제 설정 관리." #. type: deftp -#: guix-git/doc/guix.texi:17205 +#: guix-git/doc/guix.texi:17567 msgid "As an example, here is how you would declare the configuration of a machine with a single network interface controller (NIC) available as @code{eno1}, and with one IPv4 and one IPv6 address:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17222 +#: guix-git/doc/guix.texi:17584 #, no-wrap msgid "" ";; Network configuration for one NIC, IPv4 + IPv6.\n" @@ -30038,12 +30658,12 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17228 +#: guix-git/doc/guix.texi:17590 msgid "If you are familiar with the @command{ip} command of the @uref{https://wiki.linuxfoundation.org/networking/iproute2, @code{iproute2} package} found on Linux-based systems, the declaration above is equivalent to typing:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:17234 +#: guix-git/doc/guix.texi:17596 #, no-wrap msgid "" "ip address add 10.0.2.15/24 dev eno1\n" @@ -30053,354 +30673,354 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17239 +#: guix-git/doc/guix.texi:17601 msgid "Run @command{man 8 ip} for more info. Venerable GNU/Linux users will certainly know how to do it with @command{ifconfig} and @command{route}, but we'll spare you that." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17241 +#: guix-git/doc/guix.texi:17603 msgid "The available fields of this data type are as follows:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17243 +#: guix-git/doc/guix.texi:17605 #, no-wrap msgid "addresses" msgstr "주소" #. type: itemx -#: guix-git/doc/guix.texi:17244 +#: guix-git/doc/guix.texi:17606 #, no-wrap msgid "@code{links} (default: @code{'()})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:17245 +#: guix-git/doc/guix.texi:17607 #, no-wrap msgid "@code{routes} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17248 +#: guix-git/doc/guix.texi:17610 msgid "The list of @code{network-address}, @code{network-link}, and @code{network-route} records for this network (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17249 +#: guix-git/doc/guix.texi:17611 #, no-wrap msgid "@code{name-servers} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17252 +#: guix-git/doc/guix.texi:17614 msgid "The list of IP addresses (strings) of domain name servers. These IP addresses go to @file{/etc/resolv.conf}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17253 +#: guix-git/doc/guix.texi:17615 #, no-wrap msgid "@code{provision} (default: @code{'(networking)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17256 +#: guix-git/doc/guix.texi:17618 msgid "If true, this should be a list of symbols for the Shepherd service corresponding to this network configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17257 +#: guix-git/doc/guix.texi:17619 #, no-wrap msgid "@code{requirement} (default @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17259 +#: guix-git/doc/guix.texi:17621 msgid "The list of Shepherd services depended on." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17262 +#: guix-git/doc/guix.texi:17624 #, fuzzy, no-wrap msgid "{Data Type} network-address" msgstr "설정" #. type: deftp -#: guix-git/doc/guix.texi:17265 +#: guix-git/doc/guix.texi:17627 msgid "This is the data type representing the IP address of a network interface." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17270 +#: guix-git/doc/guix.texi:17632 msgid "The name of the network interface for this address---e.g., @code{\"eno1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17271 +#: guix-git/doc/guix.texi:17633 #, no-wrap msgid "value" msgstr "값" #. type: table -#: guix-git/doc/guix.texi:17275 +#: guix-git/doc/guix.texi:17637 msgid "The actual IP address and network mask, in @uref{https://en.wikipedia.org/wiki/CIDR#CIDR_notation, @acronym{CIDR, Classless Inter-Domain Routing} notation}, as a string." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17279 +#: guix-git/doc/guix.texi:17641 msgid "For example, @code{\"10.0.2.15/24\"} denotes IPv4 address 10.0.2.15 on a 24-bit sub-network---all 10.0.2.@var{x} addresses are on the same local network." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17280 +#: guix-git/doc/guix.texi:17642 #, no-wrap msgid "ipv6?" msgstr "ipv6?" #. type: table -#: guix-git/doc/guix.texi:17283 +#: guix-git/doc/guix.texi:17645 msgid "Whether @code{value} denotes an IPv6 address. By default this is automatically determined." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17286 +#: guix-git/doc/guix.texi:17648 #, fuzzy, no-wrap msgid "{Data Type} network-route" msgstr "설정" #. type: deftp -#: guix-git/doc/guix.texi:17288 +#: guix-git/doc/guix.texi:17650 msgid "This is the data type representing a network route." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17290 +#: guix-git/doc/guix.texi:17652 #, no-wrap msgid "destination" msgstr "대상" #. type: table -#: guix-git/doc/guix.texi:17293 +#: guix-git/doc/guix.texi:17655 msgid "The route destination (a string), either an IP address or @code{\"default\"} to denote the default route." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17294 +#: guix-git/doc/guix.texi:17656 #, no-wrap msgid "@code{source} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17296 +#: guix-git/doc/guix.texi:17658 msgid "The route source." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17297 guix-git/doc/guix.texi:34761 +#: guix-git/doc/guix.texi:17659 guix-git/doc/guix.texi:35200 #, no-wrap msgid "@code{device} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17299 +#: guix-git/doc/guix.texi:17661 msgid "The device used for this route---e.g., @code{\"eno2\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17300 +#: guix-git/doc/guix.texi:17662 #, no-wrap msgid "@code{ipv6?} (default: auto)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17303 +#: guix-git/doc/guix.texi:17665 msgid "Whether this is an IPv6 route. By default this is automatically determined based on @code{destination} or @code{gateway}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17304 +#: guix-git/doc/guix.texi:17666 #, no-wrap msgid "@code{gateway} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17306 +#: guix-git/doc/guix.texi:17668 msgid "IP address (a string) through which traffic is routed." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17309 +#: guix-git/doc/guix.texi:17671 #, fuzzy, no-wrap msgid "{Data Type} network-link" msgstr "설정" #. type: deftp -#: guix-git/doc/guix.texi:17312 +#: guix-git/doc/guix.texi:17674 msgid "Data type for a network link (@pxref{Link,,, guile-netlink, Guile-Netlink Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17316 +#: guix-git/doc/guix.texi:17678 msgid "The name of the link---e.g., @code{\"v0p0\"}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17319 +#: guix-git/doc/guix.texi:17681 msgid "A symbol denoting the type of the link---e.g., @code{'veth}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17320 +#: guix-git/doc/guix.texi:17682 #, no-wrap msgid "arguments" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17322 +#: guix-git/doc/guix.texi:17684 msgid "List of arguments for this type of link." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17325 +#: guix-git/doc/guix.texi:17687 #, no-wrap msgid "loopback device" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17326 +#: guix-git/doc/guix.texi:17688 #, no-wrap msgid "{Scheme Variable} %loopback-static-networking" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17330 +#: guix-git/doc/guix.texi:17692 msgid "This is the @code{static-networking} record representing the ``loopback device'', @code{lo}, for IP addresses 127.0.0.1 and ::1, and providing the @code{loopback} Shepherd service." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17332 +#: guix-git/doc/guix.texi:17694 #, no-wrap msgid "networking, with QEMU" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17333 +#: guix-git/doc/guix.texi:17695 #, fuzzy, no-wrap #| msgid "Networking" msgid "QEMU, networking" msgstr "네트워킹" #. type: defvr -#: guix-git/doc/guix.texi:17334 +#: guix-git/doc/guix.texi:17696 #, no-wrap msgid "{Scheme Variable} %qemu-static-networking" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17338 +#: guix-git/doc/guix.texi:17700 msgid "This is the @code{static-networking} record representing network setup when using QEMU's user-mode network stack on @code{eth0} (@pxref{Using the user mode network stack,,, QEMU, QEMU Documentation})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17340 +#: guix-git/doc/guix.texi:17702 #, no-wrap msgid "DHCP, networking service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17341 +#: guix-git/doc/guix.texi:17703 #, no-wrap msgid "{Scheme Variable} dhcp-client-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17345 +#: guix-git/doc/guix.texi:17707 msgid "This is the type of services that run @var{dhcp}, a Dynamic Host Configuration Protocol (DHCP) client, on all the non-loopback network interfaces. Its value is the DHCP client package to use, @code{isc-dhcp} by default." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17347 +#: guix-git/doc/guix.texi:17709 #, no-wrap msgid "NetworkManager" msgstr "네트워크매니저" #. type: defvr -#: guix-git/doc/guix.texi:17349 +#: guix-git/doc/guix.texi:17711 #, no-wrap msgid "{Scheme Variable} network-manager-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17354 +#: guix-git/doc/guix.texi:17716 msgid "This is the service type for the @uref{https://wiki.gnome.org/Projects/NetworkManager, NetworkManager} service. The value for this service type is a @code{network-manager-configuration} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17357 guix-git/doc/guix.texi:17509 -#: guix-git/doc/guix.texi:17538 +#: guix-git/doc/guix.texi:17719 guix-git/doc/guix.texi:17871 +#: guix-git/doc/guix.texi:17900 msgid "This service is part of @code{%desktop-services} (@pxref{Desktop Services})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17359 +#: guix-git/doc/guix.texi:17721 #, no-wrap msgid "{Data Type} network-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17361 +#: guix-git/doc/guix.texi:17723 msgid "Data type representing the configuration of NetworkManager." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17363 +#: guix-git/doc/guix.texi:17725 #, no-wrap msgid "@code{network-manager} (default: @code{network-manager})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17365 +#: guix-git/doc/guix.texi:17727 msgid "The NetworkManager package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17366 +#: guix-git/doc/guix.texi:17728 #, no-wrap msgid "@code{dns} (default: @code{\"default\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17369 +#: guix-git/doc/guix.texi:17731 msgid "Processing mode for DNS, which affects how NetworkManager uses the @code{resolv.conf} configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17374 +#: guix-git/doc/guix.texi:17736 msgid "NetworkManager will update @code{resolv.conf} to reflect the nameservers provided by currently active connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17375 +#: guix-git/doc/guix.texi:17737 #, no-wrap msgid "dnsmasq" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17379 +#: guix-git/doc/guix.texi:17741 msgid "NetworkManager will run @code{dnsmasq} as a local caching nameserver, using a @dfn{conditional forwarding} configuration if you are connected to a VPN, and then update @code{resolv.conf} to point to the local nameserver." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17385 +#: guix-git/doc/guix.texi:17747 msgid "With this setting, you can share your network connection. For example when you want to share your network connection to another laptop @i{via} an Ethernet cable, you can open @command{nm-connection-editor} and configure the Wired connection's method for IPv4 and IPv6 to be ``Shared to other computers'' and reestablish the connection (or reboot)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17392 +#: guix-git/doc/guix.texi:17754 msgid "You can also set up a @dfn{host-to-guest connection} to QEMU VMs (@pxref{Installing Guix in a VM}). With a host-to-guest connection, you can e.g.@: access a Web server running on the VM (@pxref{Web Services}) from a Web browser on your host system, or connect to the VM @i{via} SSH (@pxref{Networking Services, @code{openssh-service-type}}). To set up a host-to-guest connection, run this command once:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:17399 +#: guix-git/doc/guix.texi:17761 #, no-wrap msgid "" "nmcli connection add type tun \\\n" @@ -30411,50 +31031,50 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17404 +#: guix-git/doc/guix.texi:17766 msgid "Then each time you launch your QEMU VM (@pxref{Running Guix in a VM}), pass @option{-nic tap,ifname=tap0,script=no,downscript=no} to @command{qemu-system-...}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17407 +#: guix-git/doc/guix.texi:17769 msgid "NetworkManager will not modify @code{resolv.conf}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17409 +#: guix-git/doc/guix.texi:17771 #, no-wrap msgid "@code{vpn-plugins} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17413 +#: guix-git/doc/guix.texi:17775 msgid "This is the list of available plugins for virtual private networks (VPNs). An example of this is the @code{network-manager-openvpn} package, which allows NetworkManager to manage VPNs @i{via} OpenVPN." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17417 +#: guix-git/doc/guix.texi:17779 #, no-wrap msgid "Connman" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17418 +#: guix-git/doc/guix.texi:17780 #, no-wrap msgid "{Scheme Variable} connman-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17421 +#: guix-git/doc/guix.texi:17783 msgid "This is the service type to run @url{https://01.org/connman,Connman}, a network connection manager." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17424 +#: guix-git/doc/guix.texi:17786 msgid "Its value must be an @code{connman-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17429 +#: guix-git/doc/guix.texi:17791 #, no-wrap msgid "" "(service connman-service-type\n" @@ -30463,311 +31083,311 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17432 +#: guix-git/doc/guix.texi:17794 msgid "See below for details about @code{connman-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17434 +#: guix-git/doc/guix.texi:17796 #, no-wrap msgid "{Data Type} connman-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17436 +#: guix-git/doc/guix.texi:17798 msgid "Data Type representing the configuration of connman." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17438 +#: guix-git/doc/guix.texi:17800 #, no-wrap msgid "@code{connman} (default: @var{connman})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17440 +#: guix-git/doc/guix.texi:17802 msgid "The connman package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17441 +#: guix-git/doc/guix.texi:17803 #, no-wrap msgid "@code{disable-vpn?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17443 +#: guix-git/doc/guix.texi:17805 msgid "When true, disable connman's vpn plugin." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17446 +#: guix-git/doc/guix.texi:17808 #, no-wrap msgid "WPA Supplicant" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17447 +#: guix-git/doc/guix.texi:17809 #, no-wrap msgid "{Scheme Variable} wpa-supplicant-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17451 +#: guix-git/doc/guix.texi:17813 msgid "This is the service type to run @url{https://w1.fi/wpa_supplicant/,WPA supplicant}, an authentication daemon required to authenticate against encrypted WiFi or ethernet networks." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17453 +#: guix-git/doc/guix.texi:17815 #, no-wrap msgid "{Data Type} wpa-supplicant-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17455 +#: guix-git/doc/guix.texi:17817 msgid "Data type representing the configuration of WPA Supplicant." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17457 guix-git/doc/guix.texi:32945 +#: guix-git/doc/guix.texi:17819 guix-git/doc/guix.texi:33310 msgid "It takes the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17459 +#: guix-git/doc/guix.texi:17821 #, no-wrap msgid "@code{wpa-supplicant} (default: @code{wpa-supplicant})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17461 +#: guix-git/doc/guix.texi:17823 msgid "The WPA Supplicant package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17462 +#: guix-git/doc/guix.texi:17824 #, no-wrap msgid "@code{requirement} (default: @code{'(user-processes loopback syslogd)}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17464 +#: guix-git/doc/guix.texi:17826 msgid "List of services that should be started before WPA Supplicant starts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17465 +#: guix-git/doc/guix.texi:17827 #, no-wrap msgid "@code{dbus?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17467 +#: guix-git/doc/guix.texi:17829 msgid "Whether to listen for requests on D-Bus." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17468 +#: guix-git/doc/guix.texi:17830 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/wpa_supplicant.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17470 +#: guix-git/doc/guix.texi:17832 msgid "Where to store the PID file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17471 guix-git/doc/guix.texi:31246 -#: guix-git/doc/guix.texi:31388 +#: guix-git/doc/guix.texi:17833 guix-git/doc/guix.texi:31611 +#: guix-git/doc/guix.texi:31753 #, no-wrap msgid "@code{interface} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17474 +#: guix-git/doc/guix.texi:17836 msgid "If this is set, it must specify the name of a network interface that WPA supplicant will control." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17475 guix-git/doc/guix.texi:17591 -#: guix-git/doc/guix.texi:22879 +#: guix-git/doc/guix.texi:17837 guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:23241 #, no-wrap msgid "@code{config-file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17477 +#: guix-git/doc/guix.texi:17839 msgid "Optional configuration file to use." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17480 +#: guix-git/doc/guix.texi:17842 msgid "List of additional command-line arguments to pass to the daemon." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17483 +#: guix-git/doc/guix.texi:17845 #, no-wrap msgid "wicd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17486 +#: guix-git/doc/guix.texi:17848 #, no-wrap msgid "network management" msgstr "네트워크 관리" #. type: deffn -#: guix-git/doc/guix.texi:17487 +#: guix-git/doc/guix.texi:17849 #, no-wrap msgid "{Scheme Procedure} wicd-service [#:wicd @var{wicd}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17490 +#: guix-git/doc/guix.texi:17852 msgid "Return a service that runs @url{https://launchpad.net/wicd,Wicd}, a network management daemon that aims to simplify wired and wireless networking." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17495 +#: guix-git/doc/guix.texi:17857 msgid "This service adds the @var{wicd} package to the global profile, providing several commands to interact with the daemon and configure networking: @command{wicd-client}, a graphical user interface, and the @command{wicd-cli} and @command{wicd-curses} user interfaces." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17497 +#: guix-git/doc/guix.texi:17859 #, no-wrap msgid "ModemManager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17500 +#: guix-git/doc/guix.texi:17862 msgid "Some networking devices such as modems require special care, and this is what the services below focus on." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17501 +#: guix-git/doc/guix.texi:17863 #, no-wrap msgid "{Scheme Variable} modem-manager-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17506 +#: guix-git/doc/guix.texi:17868 msgid "This is the service type for the @uref{https://wiki.gnome.org/Projects/ModemManager, ModemManager} service. The value for this service type is a @code{modem-manager-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17511 +#: guix-git/doc/guix.texi:17873 #, no-wrap msgid "{Data Type} modem-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17513 +#: guix-git/doc/guix.texi:17875 msgid "Data type representing the configuration of ModemManager." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17515 +#: guix-git/doc/guix.texi:17877 #, no-wrap msgid "@code{modem-manager} (default: @code{modem-manager})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17517 +#: guix-git/doc/guix.texi:17879 msgid "The ModemManager package to use." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17521 +#: guix-git/doc/guix.texi:17883 #, no-wrap msgid "USB_ModeSwitch" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17522 +#: guix-git/doc/guix.texi:17884 #, no-wrap msgid "Modeswitching" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17524 +#: guix-git/doc/guix.texi:17886 #, no-wrap msgid "{Scheme Variable} usb-modeswitch-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17529 +#: guix-git/doc/guix.texi:17891 msgid "This is the service type for the @uref{https://www.draisberghof.de/usb_modeswitch/, USB_ModeSwitch} service. The value for this service type is a @code{usb-modeswitch-configuration} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17535 +#: guix-git/doc/guix.texi:17897 msgid "When plugged in, some USB modems (and other USB devices) initially present themselves as a read-only storage medium and not as a modem. They need to be @dfn{modeswitched} before they are usable. The USB_ModeSwitch service type installs udev rules to automatically modeswitch these devices when they are plugged in." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17540 +#: guix-git/doc/guix.texi:17902 #, no-wrap msgid "{Data Type} usb-modeswitch-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17542 +#: guix-git/doc/guix.texi:17904 msgid "Data type representing the configuration of USB_ModeSwitch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17544 +#: guix-git/doc/guix.texi:17906 #, no-wrap msgid "@code{usb-modeswitch} (default: @code{usb-modeswitch})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17546 +#: guix-git/doc/guix.texi:17908 msgid "The USB_ModeSwitch package providing the binaries for modeswitching." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17547 +#: guix-git/doc/guix.texi:17909 #, no-wrap msgid "@code{usb-modeswitch-data} (default: @code{usb-modeswitch-data})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17550 +#: guix-git/doc/guix.texi:17912 msgid "The package providing the device data and udev rules file used by USB_ModeSwitch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17551 +#: guix-git/doc/guix.texi:17913 #, no-wrap msgid "@code{config-file} (default: @code{#~(string-append #$usb-modeswitch:dispatcher \"/etc/usb_modeswitch.conf\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17556 +#: guix-git/doc/guix.texi:17918 msgid "Which config file to use for the USB_ModeSwitch dispatcher. By default the config file shipped with USB_ModeSwitch is used which disables logging to @file{/var/log} among other default settings. If set to @code{#f}, no config file is used." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17570 +#: guix-git/doc/guix.texi:17932 msgid "The @code{(gnu services networking)} module discussed in the previous section provides services for more advanced setups: providing a DHCP service for others to use, filtering packets with iptables or nftables, running a WiFi access point with @command{hostapd}, running the @command{inetd} ``superdaemon'', and more. This section describes those." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17571 +#: guix-git/doc/guix.texi:17933 #, no-wrap msgid "{Scheme Procedure} dhcpd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17575 +#: guix-git/doc/guix.texi:17937 msgid "This type defines a service that runs a DHCP daemon. To create a service of this type, you must supply a @code{}. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17581 +#: guix-git/doc/guix.texi:17943 #, no-wrap msgid "" "(service dhcpd-service-type\n" @@ -30777,96 +31397,96 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17584 +#: guix-git/doc/guix.texi:17946 #, no-wrap msgid "{Data Type} dhcpd-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17586 +#: guix-git/doc/guix.texi:17948 #, no-wrap msgid "@code{package} (default: @code{isc-dhcp})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17591 +#: guix-git/doc/guix.texi:17953 msgid "The package that provides the DHCP daemon. This package is expected to provide the daemon at @file{sbin/dhcpd} relative to its output directory. The default package is the @uref{https://www.isc.org/products/DHCP, ISC's DHCP server}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17596 +#: guix-git/doc/guix.texi:17958 msgid "The configuration file to use. This is required. It will be passed to @code{dhcpd} via its @code{-cf} option. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). See @code{man dhcpd.conf} for details on the configuration file syntax." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17596 +#: guix-git/doc/guix.texi:17958 #, no-wrap msgid "@code{version} (default: @code{\"4\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17601 +#: guix-git/doc/guix.texi:17963 msgid "The DHCP version to use. The ISC DHCP server supports the values ``4'', ``6'', and ``4o6''. These correspond to the @code{dhcpd} program options @code{-4}, @code{-6}, and @code{-4o6}. See @code{man dhcpd} for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17601 +#: guix-git/doc/guix.texi:17963 #, no-wrap msgid "@code{run-directory} (default: @code{\"/run/dhcpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17604 +#: guix-git/doc/guix.texi:17966 msgid "The run directory to use. At service activation time, this directory will be created if it does not exist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17604 +#: guix-git/doc/guix.texi:17966 #, no-wrap msgid "@code{pid-file} (default: @code{\"/run/dhcpd/dhcpd.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17607 +#: guix-git/doc/guix.texi:17969 msgid "The PID file to use. This corresponds to the @code{-pf} option of @code{dhcpd}. See @code{man dhcpd} for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17607 +#: guix-git/doc/guix.texi:17969 #, no-wrap msgid "@code{interfaces} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17613 +#: guix-git/doc/guix.texi:17975 msgid "The names of the network interfaces on which dhcpd should listen for broadcasts. If this list is not empty, then its elements (which must be strings) will be appended to the @code{dhcpd} invocation when starting the daemon. It may not be necessary to explicitly specify any interfaces here; see @code{man dhcpd} for details." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17616 +#: guix-git/doc/guix.texi:17978 #, no-wrap msgid "hostapd service, for Wi-Fi access points" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17617 +#: guix-git/doc/guix.texi:17979 #, no-wrap msgid "Wi-Fi access points, hostapd service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17618 +#: guix-git/doc/guix.texi:17980 #, no-wrap msgid "{Scheme Variable} hostapd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17623 +#: guix-git/doc/guix.texi:17985 msgid "This is the service type to run the @uref{https://w1.fi/hostapd/, hostapd} daemon to set up WiFi (IEEE 802.11) access points and authentication servers. Its associated value must be a @code{hostapd-configuration} as shown below:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17631 +#: guix-git/doc/guix.texi:17993 #, no-wrap msgid "" ";; Use wlan1 to run the access point for \"My Network\".\n" @@ -30878,129 +31498,129 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17634 +#: guix-git/doc/guix.texi:17996 #, no-wrap msgid "{Data Type} hostapd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17637 +#: guix-git/doc/guix.texi:17999 msgid "This data type represents the configuration of the hostapd service, with the following fields:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17639 +#: guix-git/doc/guix.texi:18001 #, no-wrap msgid "@code{package} (default: @code{hostapd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17641 +#: guix-git/doc/guix.texi:18003 msgid "The hostapd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17642 +#: guix-git/doc/guix.texi:18004 #, no-wrap msgid "@code{interface} (default: @code{\"wlan0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17644 +#: guix-git/doc/guix.texi:18006 msgid "The network interface to run the WiFi access point." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17645 +#: guix-git/doc/guix.texi:18007 #, no-wrap msgid "ssid" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17648 +#: guix-git/doc/guix.texi:18010 msgid "The SSID (@dfn{service set identifier}), a string that identifies this network." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17649 +#: guix-git/doc/guix.texi:18011 #, no-wrap msgid "@code{broadcast-ssid?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17651 +#: guix-git/doc/guix.texi:18013 msgid "Whether to broadcast this SSID." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17652 +#: guix-git/doc/guix.texi:18014 #, no-wrap msgid "@code{channel} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17654 +#: guix-git/doc/guix.texi:18016 msgid "The WiFi channel to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17655 +#: guix-git/doc/guix.texi:18017 #, no-wrap msgid "@code{driver} (default: @code{\"nl80211\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17659 +#: guix-git/doc/guix.texi:18021 msgid "The driver interface type. @code{\"nl80211\"} is used with all Linux mac80211 drivers. Use @code{\"none\"} if building hostapd as a standalone RADIUS server that does # not control any wireless/wired driver." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17660 guix-git/doc/guix.texi:23728 -#: guix-git/doc/guix.texi:26807 +#: guix-git/doc/guix.texi:18022 guix-git/doc/guix.texi:24090 +#: guix-git/doc/guix.texi:27144 #, no-wrap msgid "@code{extra-settings} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17664 +#: guix-git/doc/guix.texi:18026 msgid "Extra settings to append as-is to the hostapd configuration file. See @uref{https://w1.fi/cgit/hostap/plain/hostapd/hostapd.conf} for the configuration file reference." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17667 +#: guix-git/doc/guix.texi:18029 #, no-wrap msgid "{Scheme Variable} simulated-wifi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17674 +#: guix-git/doc/guix.texi:18036 msgid "This is the type of a service to simulate WiFi networking, which can be useful in virtual machines for testing purposes. The service loads the Linux kernel @uref{https://www.kernel.org/doc/html/latest/networking/mac80211_hwsim/mac80211_hwsim.html, @code{mac80211_hwsim} module} and starts hostapd to create a pseudo WiFi network that can be seen on @code{wlan0}, by default." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17676 +#: guix-git/doc/guix.texi:18038 msgid "The service's value is a @code{hostapd-configuration} record." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17679 +#: guix-git/doc/guix.texi:18041 #, no-wrap msgid "iptables" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17680 +#: guix-git/doc/guix.texi:18042 #, no-wrap msgid "{Scheme Variable} iptables-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17686 +#: guix-git/doc/guix.texi:18048 msgid "This is the service type to set up an iptables configuration. iptables is a packet filtering framework supported by the Linux kernel. This service supports configuring iptables for both IPv4 and IPv6. A simple example configuration rejecting all incoming connections except those to the ssh port 22 is shown below." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17708 +#: guix-git/doc/guix.texi:18070 #, no-wrap msgid "" "(service iptables-service-type\n" @@ -31026,241 +31646,241 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17711 +#: guix-git/doc/guix.texi:18073 #, no-wrap msgid "{Data Type} iptables-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17713 +#: guix-git/doc/guix.texi:18075 msgid "The data type representing the configuration of iptables." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17715 +#: guix-git/doc/guix.texi:18077 #, no-wrap msgid "@code{iptables} (default: @code{iptables})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17718 +#: guix-git/doc/guix.texi:18080 msgid "The iptables package that provides @code{iptables-restore} and @code{ip6tables-restore}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17718 +#: guix-git/doc/guix.texi:18080 #, no-wrap msgid "@code{ipv4-rules} (default: @code{%iptables-accept-all-rules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17722 +#: guix-git/doc/guix.texi:18084 msgid "The iptables rules to use. It will be passed to @code{iptables-restore}. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17722 +#: guix-git/doc/guix.texi:18084 #, no-wrap msgid "@code{ipv6-rules} (default: @code{%iptables-accept-all-rules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17726 +#: guix-git/doc/guix.texi:18088 msgid "The ip6tables rules to use. It will be passed to @code{ip6tables-restore}. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17729 +#: guix-git/doc/guix.texi:18091 #, no-wrap msgid "nftables" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17730 +#: guix-git/doc/guix.texi:18092 #, no-wrap msgid "{Scheme Variable} nftables-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17738 +#: guix-git/doc/guix.texi:18100 msgid "This is the service type to set up a nftables configuration. nftables is a netfilter project that aims to replace the existing iptables, ip6tables, arptables and ebtables framework. It provides a new packet filtering framework, a new user-space utility @command{nft}, and a compatibility layer for iptables. This service comes with a default ruleset @code{%default-nftables-ruleset} that rejecting all incoming connections except those to the ssh port 22. To use it, simply write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17741 +#: guix-git/doc/guix.texi:18103 #, no-wrap msgid "(service nftables-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17744 +#: guix-git/doc/guix.texi:18106 #, no-wrap msgid "{Data Type} nftables-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17746 +#: guix-git/doc/guix.texi:18108 msgid "The data type representing the configuration of nftables." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17748 +#: guix-git/doc/guix.texi:18110 #, no-wrap msgid "@code{package} (default: @code{nftables})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17750 +#: guix-git/doc/guix.texi:18112 msgid "The nftables package that provides @command{nft}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17750 +#: guix-git/doc/guix.texi:18112 #, no-wrap msgid "@code{ruleset} (default: @code{%default-nftables-ruleset})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17753 +#: guix-git/doc/guix.texi:18115 msgid "The nftables ruleset to use. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17756 +#: guix-git/doc/guix.texi:18118 #, no-wrap msgid "NTP (Network Time Protocol), service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17757 +#: guix-git/doc/guix.texi:18119 #, no-wrap msgid "ntpd, service for the Network Time Protocol daemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17758 +#: guix-git/doc/guix.texi:18120 #, no-wrap msgid "real time clock" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17759 +#: guix-git/doc/guix.texi:18121 #, no-wrap msgid "{Scheme Variable} ntp-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17763 +#: guix-git/doc/guix.texi:18125 msgid "This is the type of the service running the @uref{https://www.ntp.org, Network Time Protocol (NTP)} daemon, @command{ntpd}. The daemon will keep the system clock synchronized with that of the specified NTP servers." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17766 +#: guix-git/doc/guix.texi:18128 msgid "The value of this service is an @code{ntpd-configuration} object, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17768 +#: guix-git/doc/guix.texi:18130 #, no-wrap msgid "{Data Type} ntp-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17770 +#: guix-git/doc/guix.texi:18132 msgid "This is the data type for the NTP service configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17772 +#: guix-git/doc/guix.texi:18134 #, no-wrap msgid "@code{servers} (default: @code{%ntp-servers})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17776 +#: guix-git/doc/guix.texi:18138 msgid "This is the list of servers (@code{} records) with which @command{ntpd} will be synchronized. See the @code{ntp-server} data type definition below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17777 +#: guix-git/doc/guix.texi:18139 #, no-wrap msgid "@code{allow-large-adjustment?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17780 +#: guix-git/doc/guix.texi:18142 msgid "This determines whether @command{ntpd} is allowed to make an initial adjustment of more than 1,000 seconds." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17781 +#: guix-git/doc/guix.texi:18143 #, no-wrap msgid "@code{ntp} (default: @code{ntp})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17783 +#: guix-git/doc/guix.texi:18145 msgid "The NTP package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17786 +#: guix-git/doc/guix.texi:18148 #, no-wrap msgid "{Scheme Variable} %ntp-servers" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17789 +#: guix-git/doc/guix.texi:18151 msgid "List of host names used as the default NTP servers. These are servers of the @uref{https://www.ntppool.org/en/, NTP Pool Project}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17791 +#: guix-git/doc/guix.texi:18153 #, no-wrap msgid "{Data Type} ntp-server" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17793 +#: guix-git/doc/guix.texi:18155 msgid "The data type representing the configuration of a NTP server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17795 +#: guix-git/doc/guix.texi:18157 #, no-wrap msgid "@code{type} (default: @code{'server})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17798 +#: guix-git/doc/guix.texi:18160 msgid "The type of the NTP server, given as a symbol. One of @code{'pool}, @code{'server}, @code{'peer}, @code{'broadcast} or @code{'manycastclient}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17799 +#: guix-git/doc/guix.texi:18161 #, no-wrap msgid "address" msgstr "주소" #. type: table -#: guix-git/doc/guix.texi:17801 +#: guix-git/doc/guix.texi:18163 msgid "The address of the server, as a string." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17802 guix-git/doc/guix.texi:33774 -#: guix-git/doc/guix.texi:33794 +#: guix-git/doc/guix.texi:18164 guix-git/doc/guix.texi:34211 +#: guix-git/doc/guix.texi:34231 #, no-wrap msgid "options" msgstr "선택" #. type: table -#: guix-git/doc/guix.texi:17807 +#: guix-git/doc/guix.texi:18169 msgid "NTPD options to use with that specific server, given as a list of option names and/or of option names and values tuples. The following example define a server to use with the options @option{iburst} and @option{prefer}, as well as @option{version} 3 and a @option{maxpoll} time of 16 seconds." msgstr "" #. type: example -#: guix-git/doc/guix.texi:17813 +#: guix-git/doc/guix.texi:18175 #, no-wrap msgid "" "(ntp-server\n" @@ -31270,24 +31890,24 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17817 +#: guix-git/doc/guix.texi:18179 #, no-wrap msgid "OpenNTPD" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17818 +#: guix-git/doc/guix.texi:18180 #, no-wrap msgid "{Scheme Procedure} openntpd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17822 +#: guix-git/doc/guix.texi:18184 msgid "Run the @command{ntpd}, the Network Time Protocol (NTP) daemon, as implemented by @uref{http://www.openntpd.org, OpenNTPD}. The daemon will keep the system clock synchronized with that of the given servers." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17831 +#: guix-git/doc/guix.texi:18193 #, no-wrap msgid "" "(service\n" @@ -31301,134 +31921,134 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17835 +#: guix-git/doc/guix.texi:18197 #, no-wrap msgid "{Scheme Variable} %openntpd-servers" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17838 +#: guix-git/doc/guix.texi:18200 msgid "This variable is a list of the server addresses defined in @code{%ntp-servers}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17840 +#: guix-git/doc/guix.texi:18202 #, no-wrap msgid "{Data Type} openntpd-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17842 +#: guix-git/doc/guix.texi:18204 #, no-wrap msgid "@code{openntpd} (default: @code{(file-append openntpd \"/sbin/ntpd\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17844 +#: guix-git/doc/guix.texi:18206 msgid "The openntpd executable to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17844 +#: guix-git/doc/guix.texi:18206 #, no-wrap msgid "@code{listen-on} (default: @code{'(\"127.0.0.1\" \"::1\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17846 +#: guix-git/doc/guix.texi:18208 msgid "A list of local IP addresses or hostnames the ntpd daemon should listen on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17846 +#: guix-git/doc/guix.texi:18208 #, no-wrap msgid "@code{query-from} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17848 +#: guix-git/doc/guix.texi:18210 msgid "A list of local IP address the ntpd daemon should use for outgoing queries." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17848 +#: guix-git/doc/guix.texi:18210 #, no-wrap msgid "@code{sensor} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17853 +#: guix-git/doc/guix.texi:18215 msgid "Specify a list of timedelta sensor devices ntpd should use. @code{ntpd} will listen to each sensor that actually exists and ignore non-existent ones. See @uref{https://man.openbsd.org/ntpd.conf, upstream documentation} for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17853 +#: guix-git/doc/guix.texi:18215 #, no-wrap msgid "@code{server} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17855 +#: guix-git/doc/guix.texi:18217 msgid "Specify a list of IP addresses or hostnames of NTP servers to synchronize to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17855 +#: guix-git/doc/guix.texi:18217 #, no-wrap msgid "@code{servers} (default: @code{%openntp-servers})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17857 +#: guix-git/doc/guix.texi:18219 msgid "Specify a list of IP addresses or hostnames of NTP pools to synchronize to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17857 +#: guix-git/doc/guix.texi:18219 #, no-wrap msgid "@code{constraint-from} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17864 +#: guix-git/doc/guix.texi:18226 msgid "@code{ntpd} can be configured to query the ‘Date’ from trusted HTTPS servers via TLS. This time information is not used for precision but acts as an authenticated constraint, thereby reducing the impact of unauthenticated NTP man-in-the-middle attacks. Specify a list of URLs, IP addresses or hostnames of HTTPS servers to provide a constraint." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17864 +#: guix-git/doc/guix.texi:18226 #, no-wrap msgid "@code{constraints-from} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17868 +#: guix-git/doc/guix.texi:18230 msgid "As with constraint from, specify a list of URLs, IP addresses or hostnames of HTTPS servers to provide a constraint. Should the hostname resolve to multiple IP addresses, @code{ntpd} will calculate a median constraint from all of them." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17871 +#: guix-git/doc/guix.texi:18233 #, no-wrap msgid "inetd" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17872 +#: guix-git/doc/guix.texi:18234 #, no-wrap msgid "{Scheme variable} inetd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17877 +#: guix-git/doc/guix.texi:18239 msgid "This service runs the @command{inetd} (@pxref{inetd invocation,,, inetutils, GNU Inetutils}) daemon. @command{inetd} listens for connections on internet sockets, and lazily starts the specified server program when a connection is made on one of these sockets." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17883 +#: guix-git/doc/guix.texi:18245 msgid "The value of this service is an @code{inetd-configuration} object. The following example configures the @command{inetd} daemon to provide the built-in @command{echo} service, as well as an smtp service which forwards smtp traffic over ssh to a server @code{smtp-server} behind a gateway @code{hostname}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17906 +#: guix-git/doc/guix.texi:18268 #, no-wrap msgid "" "(service\n" @@ -31455,464 +32075,466 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17909 +#: guix-git/doc/guix.texi:18271 msgid "See below for more details about @code{inetd-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17911 +#: guix-git/doc/guix.texi:18273 #, no-wrap msgid "{Data Type} inetd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17913 +#: guix-git/doc/guix.texi:18275 msgid "Data type representing the configuration of @command{inetd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17915 +#: guix-git/doc/guix.texi:18277 #, no-wrap msgid "@code{program} (default: @code{(file-append inetutils \"/libexec/inetd\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17917 +#: guix-git/doc/guix.texi:18279 msgid "The @command{inetd} executable to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17918 guix-git/doc/guix.texi:27655 +#: guix-git/doc/guix.texi:18280 guix-git/doc/guix.texi:27992 #, no-wrap msgid "@code{entries} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17921 +#: guix-git/doc/guix.texi:18283 msgid "A list of @command{inetd} service entries. Each entry should be created by the @code{inetd-entry} constructor." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17924 +#: guix-git/doc/guix.texi:18286 #, no-wrap msgid "{Data Type} inetd-entry" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17928 +#: guix-git/doc/guix.texi:18290 msgid "Data type representing an entry in the @command{inetd} configuration. Each entry corresponds to a socket where @command{inetd} will listen for requests." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17930 +#: guix-git/doc/guix.texi:18292 #, no-wrap msgid "@code{node} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17935 +#: guix-git/doc/guix.texi:18297 msgid "Optional string, a comma-separated list of local addresses @command{inetd} should use when listening for this service. @xref{Configuration file,,, inetutils, GNU Inetutils} for a complete description of all options." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17937 +#: guix-git/doc/guix.texi:18299 msgid "A string, the name must correspond to an entry in @code{/etc/services}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17937 +#: guix-git/doc/guix.texi:18299 #, no-wrap msgid "socket-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17940 +#: guix-git/doc/guix.texi:18302 msgid "One of @code{'stream}, @code{'dgram}, @code{'raw}, @code{'rdm} or @code{'seqpacket}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17940 +#: guix-git/doc/guix.texi:18302 #, no-wrap msgid "protocol" msgstr "통신규약" #. type: table -#: guix-git/doc/guix.texi:17942 +#: guix-git/doc/guix.texi:18304 msgid "A string, must correspond to an entry in @code{/etc/protocols}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17942 +#: guix-git/doc/guix.texi:18304 #, no-wrap msgid "@code{wait?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17945 +#: guix-git/doc/guix.texi:18307 msgid "Whether @command{inetd} should wait for the server to exit before listening to new service requests." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17950 +#: guix-git/doc/guix.texi:18312 msgid "A string containing the user (and, optionally, group) name of the user as whom the server should run. The group name can be specified in a suffix, separated by a colon or period, i.e.@: @code{\"user\"}, @code{\"user:group\"} or @code{\"user.group\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17950 +#: guix-git/doc/guix.texi:18312 #, no-wrap msgid "@code{program} (default: @code{\"internal\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:18315 msgid "The server program which will serve the requests, or @code{\"internal\"} if @command{inetd} should use a built-in service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17958 +#: guix-git/doc/guix.texi:18320 msgid "A list strings or file-like objects, which are the server program's arguments, starting with the zeroth argument, i.e.@: the name of the program itself. For @command{inetd}'s internal services, this entry must be @code{'()} or @code{'(\"internal\")}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17962 +#: guix-git/doc/guix.texi:18324 msgid "@xref{Configuration file,,, inetutils, GNU Inetutils} for a more detailed discussion of each configuration field." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17964 +#: guix-git/doc/guix.texi:18326 #, no-wrap msgid "opendht, distributed hash table network service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17965 +#: guix-git/doc/guix.texi:18327 #, no-wrap msgid "dhtproxy, for use with jami" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17966 +#: guix-git/doc/guix.texi:18328 #, no-wrap msgid "{Scheme Variable} opendht-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17971 +#: guix-git/doc/guix.texi:18333 msgid "This is the type of the service running a @uref{https://opendht.net, OpenDHT} node, @command{dhtnode}. The daemon can be used to host your own proxy service to the distributed hash table (DHT), for example to connect to with Jami, among other applications." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:17981 +#: guix-git/doc/guix.texi:18343 msgid "When using the OpenDHT proxy server, the IP addresses it ``sees'' from the clients should be addresses reachable from other peers. In practice this means that a publicly reachable address is best suited for a proxy server, outside of your private network. For example, hosting the proxy server on a IPv4 private local network and exposing it via port forwarding could work for external peers, but peers local to the proxy would have their private addresses shared with the external peers, leading to connectivity problems." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17985 +#: guix-git/doc/guix.texi:18347 msgid "The value of this service is a @code{opendht-configuration} object, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17987 +#: guix-git/doc/guix.texi:18349 #, fuzzy, no-wrap msgid "{Data Type} opendht-configuration" msgstr "설정" #. type: deftp -#: guix-git/doc/guix.texi:17989 +#: guix-git/doc/guix.texi:18351 msgid "This is the data type for the OpenDHT service configuration." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17994 +#: guix-git/doc/guix.texi:18356 msgid "Available @code{opendht-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:17995 +#: guix-git/doc/guix.texi:18357 #, no-wrap msgid "{@code{opendht-configuration} parameter} package opendht" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:17997 +#: guix-git/doc/guix.texi:18359 #, fuzzy msgid "The @code{opendht} package to use." msgstr "꾸러미와 도구." #. type: deftypevr -#: guix-git/doc/guix.texi:18000 +#: guix-git/doc/guix.texi:18362 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean peer-discovery?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18002 +#: guix-git/doc/guix.texi:18364 msgid "Whether to enable the multicast local peer discovery mechanism." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18004 guix-git/doc/guix.texi:18012 -#: guix-git/doc/guix.texi:18020 guix-git/doc/guix.texi:19712 -#: guix-git/doc/guix.texi:19788 guix-git/doc/guix.texi:19830 -#: guix-git/doc/guix.texi:19850 guix-git/doc/guix.texi:19856 -#: guix-git/doc/guix.texi:19872 guix-git/doc/guix.texi:19960 -#: guix-git/doc/guix.texi:20048 guix-git/doc/guix.texi:20361 -#: guix-git/doc/guix.texi:20374 guix-git/doc/guix.texi:21492 -#: guix-git/doc/guix.texi:22970 guix-git/doc/guix.texi:23076 -#: guix-git/doc/guix.texi:23141 guix-git/doc/guix.texi:23150 -#: guix-git/doc/guix.texi:24383 guix-git/doc/guix.texi:24427 -#: guix-git/doc/guix.texi:24444 guix-git/doc/guix.texi:24452 -#: guix-git/doc/guix.texi:24467 guix-git/doc/guix.texi:24485 -#: guix-git/doc/guix.texi:24509 guix-git/doc/guix.texi:24562 -#: guix-git/doc/guix.texi:24695 guix-git/doc/guix.texi:24729 -#: guix-git/doc/guix.texi:24765 guix-git/doc/guix.texi:24781 -#: guix-git/doc/guix.texi:24809 guix-git/doc/guix.texi:24870 -#: guix-git/doc/guix.texi:24953 guix-git/doc/guix.texi:28367 -#: guix-git/doc/guix.texi:28381 guix-git/doc/guix.texi:28403 -#: guix-git/doc/guix.texi:28522 guix-git/doc/guix.texi:28536 -#: guix-git/doc/guix.texi:28557 guix-git/doc/guix.texi:28578 -#: guix-git/doc/guix.texi:28585 guix-git/doc/guix.texi:28630 -#: guix-git/doc/guix.texi:28637 guix-git/doc/guix.texi:29426 -#: guix-git/doc/guix.texi:29440 guix-git/doc/guix.texi:29612 -#: guix-git/doc/guix.texi:29657 guix-git/doc/guix.texi:29744 -#: guix-git/doc/guix.texi:29946 guix-git/doc/guix.texi:29979 -#: guix-git/doc/guix.texi:30119 guix-git/doc/guix.texi:30130 -#: guix-git/doc/guix.texi:30381 guix-git/doc/guix.texi:31900 -#: guix-git/doc/guix.texi:31909 guix-git/doc/guix.texi:31917 -#: guix-git/doc/guix.texi:31925 guix-git/doc/guix.texi:31941 -#: guix-git/doc/guix.texi:31957 guix-git/doc/guix.texi:31965 -#: guix-git/doc/guix.texi:31973 guix-git/doc/guix.texi:31982 -#: guix-git/doc/guix.texi:31991 guix-git/doc/guix.texi:32007 -#: guix-git/doc/guix.texi:32071 guix-git/doc/guix.texi:32177 -#: guix-git/doc/guix.texi:32185 guix-git/doc/guix.texi:32193 -#: guix-git/doc/guix.texi:32218 guix-git/doc/guix.texi:32272 -#: guix-git/doc/guix.texi:32320 guix-git/doc/guix.texi:32521 -#: guix-git/doc/guix.texi:32528 +#: guix-git/doc/guix.texi:18366 guix-git/doc/guix.texi:18374 +#: guix-git/doc/guix.texi:18382 guix-git/doc/guix.texi:20074 +#: guix-git/doc/guix.texi:20150 guix-git/doc/guix.texi:20192 +#: guix-git/doc/guix.texi:20212 guix-git/doc/guix.texi:20218 +#: guix-git/doc/guix.texi:20234 guix-git/doc/guix.texi:20322 +#: guix-git/doc/guix.texi:20410 guix-git/doc/guix.texi:20723 +#: guix-git/doc/guix.texi:20736 guix-git/doc/guix.texi:21854 +#: guix-git/doc/guix.texi:23332 guix-git/doc/guix.texi:23438 +#: guix-git/doc/guix.texi:23503 guix-git/doc/guix.texi:23512 +#: guix-git/doc/guix.texi:24745 guix-git/doc/guix.texi:24789 +#: guix-git/doc/guix.texi:24806 guix-git/doc/guix.texi:24814 +#: guix-git/doc/guix.texi:24829 guix-git/doc/guix.texi:24847 +#: guix-git/doc/guix.texi:24871 guix-git/doc/guix.texi:24924 +#: guix-git/doc/guix.texi:25057 guix-git/doc/guix.texi:25091 +#: guix-git/doc/guix.texi:25127 guix-git/doc/guix.texi:25143 +#: guix-git/doc/guix.texi:25171 guix-git/doc/guix.texi:25232 +#: guix-git/doc/guix.texi:25315 guix-git/doc/guix.texi:28704 +#: guix-git/doc/guix.texi:28718 guix-git/doc/guix.texi:28740 +#: guix-git/doc/guix.texi:28859 guix-git/doc/guix.texi:28873 +#: guix-git/doc/guix.texi:28894 guix-git/doc/guix.texi:28915 +#: guix-git/doc/guix.texi:28922 guix-git/doc/guix.texi:28967 +#: guix-git/doc/guix.texi:28974 guix-git/doc/guix.texi:29763 +#: guix-git/doc/guix.texi:29777 guix-git/doc/guix.texi:29977 +#: guix-git/doc/guix.texi:30022 guix-git/doc/guix.texi:30109 +#: guix-git/doc/guix.texi:30311 guix-git/doc/guix.texi:30344 +#: guix-git/doc/guix.texi:30484 guix-git/doc/guix.texi:30495 +#: guix-git/doc/guix.texi:30746 guix-git/doc/guix.texi:32265 +#: guix-git/doc/guix.texi:32274 guix-git/doc/guix.texi:32282 +#: guix-git/doc/guix.texi:32290 guix-git/doc/guix.texi:32306 +#: guix-git/doc/guix.texi:32322 guix-git/doc/guix.texi:32330 +#: guix-git/doc/guix.texi:32338 guix-git/doc/guix.texi:32347 +#: guix-git/doc/guix.texi:32356 guix-git/doc/guix.texi:32372 +#: guix-git/doc/guix.texi:32436 guix-git/doc/guix.texi:32542 +#: guix-git/doc/guix.texi:32550 guix-git/doc/guix.texi:32558 +#: guix-git/doc/guix.texi:32583 guix-git/doc/guix.texi:32637 +#: guix-git/doc/guix.texi:32685 guix-git/doc/guix.texi:32886 +#: guix-git/doc/guix.texi:32893 msgid "Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18007 +#: guix-git/doc/guix.texi:18369 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean enable-logging?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18010 +#: guix-git/doc/guix.texi:18372 msgid "Whether to enable logging messages to syslog. It is disabled by default as it is rather verbose." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18015 +#: guix-git/doc/guix.texi:18377 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean debug?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18018 +#: guix-git/doc/guix.texi:18380 msgid "Whether to enable debug-level logging messages. This has no effect if logging is disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18023 +#: guix-git/doc/guix.texi:18385 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-string bootstrap-host" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18029 +#: guix-git/doc/guix.texi:18391 msgid "The node host name that is used to make the first connection to the network. A specific port value can be provided by appending the @code{:PORT} suffix. By default, it uses the Jami bootstrap nodes, but any host can be specified here. It's also possible to disable bootsrapping by setting this to the @code{'disabled} symbol." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18031 +#: guix-git/doc/guix.texi:18393 msgid "Defaults to @samp{\"bootstrap.jami.net:4222\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18034 +#: guix-git/doc/guix.texi:18396 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18037 +#: guix-git/doc/guix.texi:18399 msgid "The UDP port to bind to. When set to @code{'disabled}, an available port is automatically selected." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18039 +#: guix-git/doc/guix.texi:18401 msgid "Defaults to @samp{4222}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18042 +#: guix-git/doc/guix.texi:18404 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number proxy-server-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18044 +#: guix-git/doc/guix.texi:18406 msgid "Spawn a proxy server listening on the specified port." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18046 guix-git/doc/guix.texi:18053 -#: guix-git/doc/guix.texi:24391 guix-git/doc/guix.texi:24435 -#: guix-git/doc/guix.texi:24648 guix-git/doc/guix.texi:24704 -#: guix-git/doc/guix.texi:24878 guix-git/doc/guix.texi:24889 -#: guix-git/doc/guix.texi:24962 guix-git/doc/guix.texi:25687 -#: guix-git/doc/guix.texi:25730 guix-git/doc/guix.texi:25738 -#: guix-git/doc/guix.texi:25746 guix-git/doc/guix.texi:25754 -#: guix-git/doc/guix.texi:25763 guix-git/doc/guix.texi:25771 -#: guix-git/doc/guix.texi:25778 guix-git/doc/guix.texi:25786 -#: guix-git/doc/guix.texi:25794 guix-git/doc/guix.texi:25804 -#: guix-git/doc/guix.texi:25811 guix-git/doc/guix.texi:25835 -#: guix-git/doc/guix.texi:25843 guix-git/doc/guix.texi:25869 -#: guix-git/doc/guix.texi:25878 guix-git/doc/guix.texi:25887 -#: guix-git/doc/guix.texi:25896 guix-git/doc/guix.texi:25905 -#: guix-git/doc/guix.texi:25914 guix-git/doc/guix.texi:25922 -#: guix-git/doc/guix.texi:25930 guix-git/doc/guix.texi:25937 -#: guix-git/doc/guix.texi:25945 guix-git/doc/guix.texi:25952 -#: guix-git/doc/guix.texi:25960 guix-git/doc/guix.texi:25968 -#: guix-git/doc/guix.texi:25977 guix-git/doc/guix.texi:25986 -#: guix-git/doc/guix.texi:25994 guix-git/doc/guix.texi:26002 -#: guix-git/doc/guix.texi:26010 guix-git/doc/guix.texi:26021 -#: guix-git/doc/guix.texi:26031 guix-git/doc/guix.texi:26042 -#: guix-git/doc/guix.texi:26051 guix-git/doc/guix.texi:26061 -#: guix-git/doc/guix.texi:26069 guix-git/doc/guix.texi:26080 -#: guix-git/doc/guix.texi:26089 guix-git/doc/guix.texi:26099 -#: guix-git/doc/guix.texi:29339 guix-git/doc/guix.texi:29346 -#: guix-git/doc/guix.texi:29353 guix-git/doc/guix.texi:29360 -#: guix-git/doc/guix.texi:29367 guix-git/doc/guix.texi:29374 -#: guix-git/doc/guix.texi:29382 guix-git/doc/guix.texi:29390 -#: guix-git/doc/guix.texi:29397 guix-git/doc/guix.texi:29404 -#: guix-git/doc/guix.texi:29411 guix-git/doc/guix.texi:29418 -#: guix-git/doc/guix.texi:29448 guix-git/doc/guix.texi:29486 -#: guix-git/doc/guix.texi:29493 guix-git/doc/guix.texi:29502 -#: guix-git/doc/guix.texi:29524 guix-git/doc/guix.texi:29532 -#: guix-git/doc/guix.texi:29539 guix-git/doc/guix.texi:29694 -#: guix-git/doc/guix.texi:29714 guix-git/doc/guix.texi:29729 -#: guix-git/doc/guix.texi:29736 guix-git/doc/guix.texi:32473 -#: guix-git/doc/guix.texi:32481 guix-git/doc/guix.texi:32489 -#: guix-git/doc/guix.texi:32497 guix-git/doc/guix.texi:32505 -#: guix-git/doc/guix.texi:32513 +#: guix-git/doc/guix.texi:18408 guix-git/doc/guix.texi:18415 +#: guix-git/doc/guix.texi:24753 guix-git/doc/guix.texi:24797 +#: guix-git/doc/guix.texi:25010 guix-git/doc/guix.texi:25066 +#: guix-git/doc/guix.texi:25240 guix-git/doc/guix.texi:25251 +#: guix-git/doc/guix.texi:25324 guix-git/doc/guix.texi:26024 +#: guix-git/doc/guix.texi:26067 guix-git/doc/guix.texi:26075 +#: guix-git/doc/guix.texi:26083 guix-git/doc/guix.texi:26091 +#: guix-git/doc/guix.texi:26100 guix-git/doc/guix.texi:26108 +#: guix-git/doc/guix.texi:26115 guix-git/doc/guix.texi:26123 +#: guix-git/doc/guix.texi:26131 guix-git/doc/guix.texi:26141 +#: guix-git/doc/guix.texi:26148 guix-git/doc/guix.texi:26172 +#: guix-git/doc/guix.texi:26180 guix-git/doc/guix.texi:26206 +#: guix-git/doc/guix.texi:26215 guix-git/doc/guix.texi:26224 +#: guix-git/doc/guix.texi:26233 guix-git/doc/guix.texi:26242 +#: guix-git/doc/guix.texi:26251 guix-git/doc/guix.texi:26259 +#: guix-git/doc/guix.texi:26267 guix-git/doc/guix.texi:26274 +#: guix-git/doc/guix.texi:26282 guix-git/doc/guix.texi:26289 +#: guix-git/doc/guix.texi:26297 guix-git/doc/guix.texi:26305 +#: guix-git/doc/guix.texi:26314 guix-git/doc/guix.texi:26323 +#: guix-git/doc/guix.texi:26331 guix-git/doc/guix.texi:26339 +#: guix-git/doc/guix.texi:26347 guix-git/doc/guix.texi:26358 +#: guix-git/doc/guix.texi:26368 guix-git/doc/guix.texi:26379 +#: guix-git/doc/guix.texi:26388 guix-git/doc/guix.texi:26398 +#: guix-git/doc/guix.texi:26406 guix-git/doc/guix.texi:26417 +#: guix-git/doc/guix.texi:26426 guix-git/doc/guix.texi:26436 +#: guix-git/doc/guix.texi:29676 guix-git/doc/guix.texi:29683 +#: guix-git/doc/guix.texi:29690 guix-git/doc/guix.texi:29697 +#: guix-git/doc/guix.texi:29704 guix-git/doc/guix.texi:29711 +#: guix-git/doc/guix.texi:29719 guix-git/doc/guix.texi:29727 +#: guix-git/doc/guix.texi:29734 guix-git/doc/guix.texi:29741 +#: guix-git/doc/guix.texi:29748 guix-git/doc/guix.texi:29755 +#: guix-git/doc/guix.texi:29785 guix-git/doc/guix.texi:29823 +#: guix-git/doc/guix.texi:29830 guix-git/doc/guix.texi:29839 +#: guix-git/doc/guix.texi:29861 guix-git/doc/guix.texi:29869 +#: guix-git/doc/guix.texi:29876 guix-git/doc/guix.texi:29905 +#: guix-git/doc/guix.texi:29912 guix-git/doc/guix.texi:29919 +#: guix-git/doc/guix.texi:29926 guix-git/doc/guix.texi:30059 +#: guix-git/doc/guix.texi:30079 guix-git/doc/guix.texi:30094 +#: guix-git/doc/guix.texi:30101 guix-git/doc/guix.texi:32838 +#: guix-git/doc/guix.texi:32846 guix-git/doc/guix.texi:32854 +#: guix-git/doc/guix.texi:32862 guix-git/doc/guix.texi:32870 +#: guix-git/doc/guix.texi:32878 msgid "Defaults to @samp{disabled}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18049 +#: guix-git/doc/guix.texi:18411 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number proxy-server-port-tls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18051 +#: guix-git/doc/guix.texi:18413 msgid "Spawn a proxy server listening to TLS connections on the specified port." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18057 +#: guix-git/doc/guix.texi:18419 #, no-wrap msgid "Tor" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18058 +#: guix-git/doc/guix.texi:18420 #, no-wrap msgid "{Scheme Variable} tor-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18063 +#: guix-git/doc/guix.texi:18425 msgid "This is the type for a service that runs the @uref{https://torproject.org, Tor} anonymous networking daemon. The service is configured using a @code{} record. By default, the Tor daemon runs as the @code{tor} unprivileged user, which is a member of the @code{tor} group." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18066 +#: guix-git/doc/guix.texi:18428 #, no-wrap msgid "{Data Type} tor-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18068 +#: guix-git/doc/guix.texi:18430 #, no-wrap msgid "@code{tor} (default: @code{tor})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18073 +#: guix-git/doc/guix.texi:18435 msgid "The package that provides the Tor daemon. This package is expected to provide the daemon at @file{bin/tor} relative to its output directory. The default package is the @uref{https://www.torproject.org, Tor Project's} implementation." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18074 +#: guix-git/doc/guix.texi:18436 #, no-wrap msgid "@code{config-file} (default: @code{(plain-file \"empty\" \"\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18080 +#: guix-git/doc/guix.texi:18442 msgid "The configuration file to use. It will be appended to a default configuration file, and the final configuration file will be passed to @code{tor} via its @code{-f} option. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). See @code{man tor} for details on the configuration file syntax." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18081 +#: guix-git/doc/guix.texi:18443 #, no-wrap msgid "@code{hidden-services} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18087 +#: guix-git/doc/guix.texi:18449 msgid "The list of @code{} records to use. For any hidden service you include in this list, appropriate configuration to enable the hidden service will be automatically added to the default configuration file. You may conveniently create @code{} records using the @code{tor-hidden-service} procedure described below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18088 +#: guix-git/doc/guix.texi:18450 #, no-wrap msgid "@code{socks-socket-type} (default: @code{'tcp})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18095 +#: guix-git/doc/guix.texi:18457 msgid "The default socket type that Tor should use for its SOCKS socket. This must be either @code{'tcp} or @code{'unix}. If it is @code{'tcp}, then by default Tor will listen on TCP port 9050 on the loopback interface (i.e., localhost). If it is @code{'unix}, then Tor will listen on the UNIX domain socket @file{/var/run/tor/socks-sock}, which will be made writable by members of the @code{tor} group." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18100 +#: guix-git/doc/guix.texi:18462 msgid "If you want to customize the SOCKS socket in more detail, leave @code{socks-socket-type} at its default value of @code{'tcp} and use @code{config-file} to override the default by providing your own @code{SocksPort} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18101 +#: guix-git/doc/guix.texi:18463 #, no-wrap msgid "@code{control-socket?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18107 +#: guix-git/doc/guix.texi:18469 msgid "Whether or not to provide a ``control socket'' by which Tor can be controlled to, for instance, dynamically instantiate tor onion services. If @code{#t}, Tor will listen for control commands on the UNIX domain socket @file{/var/run/tor/control-sock}, which will be made writable by members of the @code{tor} group." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18111 +#: guix-git/doc/guix.texi:18473 #, no-wrap msgid "hidden service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18112 +#: guix-git/doc/guix.texi:18474 #, no-wrap msgid "{Scheme Procedure} tor-hidden-service @var{name} @var{mapping}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18115 +#: guix-git/doc/guix.texi:18477 msgid "Define a new Tor @dfn{hidden service} called @var{name} and implementing @var{mapping}. @var{mapping} is a list of port/host tuples, such as:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18119 +#: guix-git/doc/guix.texi:18481 #, no-wrap msgid "" " '((22 \"127.0.0.1:22\")\n" @@ -31920,43 +32542,43 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18123 +#: guix-git/doc/guix.texi:18485 msgid "In this example, port 22 of the hidden service is mapped to local port 22, and port 80 is mapped to local port 8080." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18127 +#: guix-git/doc/guix.texi:18489 msgid "This creates a @file{/var/lib/tor/hidden-services/@var{name}} directory, where the @file{hostname} file contains the @code{.onion} host name for the hidden service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18130 +#: guix-git/doc/guix.texi:18492 msgid "See @uref{https://www.torproject.org/docs/tor-hidden-service.html.en, the Tor project's documentation} for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18133 +#: guix-git/doc/guix.texi:18495 msgid "The @code{(gnu services rsync)} module provides the following services:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18137 +#: guix-git/doc/guix.texi:18499 msgid "You might want an rsync daemon if you have files that you want available so anyone (or just yourself) can download existing files or upload new files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18138 +#: guix-git/doc/guix.texi:18500 #, no-wrap msgid "{Scheme Variable} rsync-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18142 +#: guix-git/doc/guix.texi:18504 msgid "This is the service type for the @uref{https://rsync.samba.org, rsync} daemon, The value for this service type is a @command{rsync-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18155 +#: guix-git/doc/guix.texi:18517 #, no-wrap msgid "" ";; Export two directories over rsync. By default rsync listens on\n" @@ -31973,237 +32595,237 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18158 +#: guix-git/doc/guix.texi:18520 msgid "See below for details about @code{rsync-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18160 +#: guix-git/doc/guix.texi:18522 #, no-wrap msgid "{Data Type} rsync-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18162 +#: guix-git/doc/guix.texi:18524 msgid "Data type representing the configuration for @code{rsync-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18164 +#: guix-git/doc/guix.texi:18526 #, no-wrap msgid "@code{package} (default: @var{rsync})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18166 +#: guix-git/doc/guix.texi:18528 msgid "@code{rsync} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18167 guix-git/doc/guix.texi:31480 +#: guix-git/doc/guix.texi:18529 guix-git/doc/guix.texi:31845 #, no-wrap msgid "@code{address} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18170 +#: guix-git/doc/guix.texi:18532 msgid "IP address on which @command{rsync} listens for incoming connections. If unspecified, it defaults to listening on all available addresses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18171 +#: guix-git/doc/guix.texi:18533 #, no-wrap msgid "@code{port-number} (default: @code{873})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18175 +#: guix-git/doc/guix.texi:18537 msgid "TCP port on which @command{rsync} listens for incoming connections. If port is less than @code{1024} @command{rsync} needs to be started as the @code{root} user and group." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18176 +#: guix-git/doc/guix.texi:18538 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/rsyncd/rsyncd.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18178 +#: guix-git/doc/guix.texi:18540 msgid "Name of the file where @command{rsync} writes its PID." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18179 +#: guix-git/doc/guix.texi:18541 #, no-wrap msgid "@code{lock-file} (default: @code{\"/var/run/rsyncd/rsyncd.lock\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18181 +#: guix-git/doc/guix.texi:18543 msgid "Name of the file where @command{rsync} writes its lock file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18182 +#: guix-git/doc/guix.texi:18544 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/rsyncd.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18184 +#: guix-git/doc/guix.texi:18546 msgid "Name of the file where @command{rsync} writes its log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18185 guix-git/doc/guix.texi:35582 +#: guix-git/doc/guix.texi:18547 guix-git/doc/guix.texi:36062 #, no-wrap msgid "@code{user} (default: @code{\"root\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18187 +#: guix-git/doc/guix.texi:18549 msgid "Owner of the @code{rsync} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18188 +#: guix-git/doc/guix.texi:18550 #, no-wrap msgid "@code{group} (default: @code{\"root\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18190 +#: guix-git/doc/guix.texi:18552 msgid "Group of the @code{rsync} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18191 +#: guix-git/doc/guix.texi:18553 #, no-wrap msgid "@code{uid} (default: @code{\"rsyncd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18194 +#: guix-git/doc/guix.texi:18556 msgid "User name or user ID that file transfers to and from that module should take place as when the daemon was run as @code{root}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18195 +#: guix-git/doc/guix.texi:18557 #, no-wrap msgid "@code{gid} (default: @code{\"rsyncd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18197 guix-git/doc/guix.texi:18676 +#: guix-git/doc/guix.texi:18559 guix-git/doc/guix.texi:19038 msgid "Group name or group ID that will be used when accessing the module." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18198 guix-git/doc/guix.texi:36378 +#: guix-git/doc/guix.texi:18560 guix-git/doc/guix.texi:36868 #, no-wrap msgid "@code{modules} (default: @code{%default-modules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18201 +#: guix-git/doc/guix.texi:18563 msgid "List of ``modules''---i.e., directories exported over rsync. Each element must be a @code{rsync-module} record, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18204 +#: guix-git/doc/guix.texi:18566 #, fuzzy, no-wrap msgid "{Data Type} rsync-module" msgstr "설정" #. type: deftp -#: guix-git/doc/guix.texi:18207 +#: guix-git/doc/guix.texi:18569 msgid "This is the data type for rsync ``modules''. A module is a directory exported over the rsync protocol. The available fields are as follows:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18213 +#: guix-git/doc/guix.texi:18575 msgid "The module name. This is the name that shows up in URLs. For example, if the module is called @code{music}, the corresponding URL will be @code{rsync://host.example.org/music}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18214 +#: guix-git/doc/guix.texi:18576 #, fuzzy, no-wrap #| msgid "name" msgid "file-name" msgstr "이름" #. type: table -#: guix-git/doc/guix.texi:18216 +#: guix-git/doc/guix.texi:18578 msgid "Name of the directory being exported." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18220 +#: guix-git/doc/guix.texi:18582 msgid "Comment associated with the module. Client user interfaces may display it when they obtain the list of available modules." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18221 +#: guix-git/doc/guix.texi:18583 #, no-wrap msgid "@code{read-only?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18225 +#: guix-git/doc/guix.texi:18587 msgid "Whether or not client will be able to upload files. If this is false, the uploads will be authorized if permissions on the daemon side permit it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18226 +#: guix-git/doc/guix.texi:18588 #, no-wrap msgid "@code{chroot?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18230 +#: guix-git/doc/guix.texi:18592 msgid "When this is true, the rsync daemon changes root to the module's directory before starting file transfers with the client. This improves security, but requires rsync to run as root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18231 +#: guix-git/doc/guix.texi:18593 #, no-wrap msgid "@code{timeout} (default: @code{300})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18234 +#: guix-git/doc/guix.texi:18596 msgid "Idle time in seconds after which the daemon closes a connection with the client." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18238 +#: guix-git/doc/guix.texi:18600 msgid "The @code{(gnu services syncthing)} module provides the following services:" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18238 +#: guix-git/doc/guix.texi:18600 #, no-wrap msgid "syncthing" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18243 +#: guix-git/doc/guix.texi:18605 msgid "You might want a syncthing daemon if you have files between two or more computers and want to sync them in real time, safely protected from prying eyes." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18244 +#: guix-git/doc/guix.texi:18606 #, no-wrap msgid "{Scheme Variable} syncthing-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18248 +#: guix-git/doc/guix.texi:18610 msgid "This is the service type for the @uref{https://syncthing.net/, syncthing} daemon, The value for this service type is a @command{syncthing-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18252 +#: guix-git/doc/guix.texi:18614 #, no-wrap msgid "" "(service syncthing-service-type\n" @@ -32211,160 +32833,160 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18255 +#: guix-git/doc/guix.texi:18617 msgid "See below for details about @code{syncthing-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18256 +#: guix-git/doc/guix.texi:18618 #, no-wrap msgid "{Data Type} syncthing-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18258 +#: guix-git/doc/guix.texi:18620 msgid "Data type representing the configuration for @code{syncthing-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18260 +#: guix-git/doc/guix.texi:18622 #, no-wrap msgid "@code{syncthing} (default: @var{syncthing})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18262 +#: guix-git/doc/guix.texi:18624 msgid "@code{syncthing} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18263 +#: guix-git/doc/guix.texi:18625 #, no-wrap msgid "@code{arguments} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18265 +#: guix-git/doc/guix.texi:18627 msgid "List of command-line arguments passing to @code{syncthing} binary." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18266 +#: guix-git/doc/guix.texi:18628 #, no-wrap msgid "@code{logflags} (default: @var{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18269 +#: guix-git/doc/guix.texi:18631 msgid "Sum of logging flags, see @uref{https://docs.syncthing.net/users/syncthing.html#cmdoption-logflags, Syncthing documentation logflags}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18270 +#: guix-git/doc/guix.texi:18632 #, no-wrap msgid "@code{user} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18273 +#: guix-git/doc/guix.texi:18635 msgid "The user as which the Syncthing service is to be run. This assumes that the specified user exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18274 +#: guix-git/doc/guix.texi:18636 #, no-wrap msgid "@code{group} (default: @var{\"users\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18277 +#: guix-git/doc/guix.texi:18639 msgid "The group as which the Syncthing service is to be run. This assumes that the specified group exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18278 +#: guix-git/doc/guix.texi:18640 #, no-wrap msgid "@code{home} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18281 +#: guix-git/doc/guix.texi:18643 msgid "Common configuration and data directory. The default configuration directory is @file{$HOME} of the specified Syncthing @code{user}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18287 +#: guix-git/doc/guix.texi:18649 msgid "Furthermore, @code{(gnu services ssh)} provides the following services." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18287 guix-git/doc/guix.texi:18326 -#: guix-git/doc/guix.texi:35715 +#: guix-git/doc/guix.texi:18649 guix-git/doc/guix.texi:18688 +#: guix-git/doc/guix.texi:36205 #, no-wrap msgid "SSH" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18288 guix-git/doc/guix.texi:18327 -#: guix-git/doc/guix.texi:35716 +#: guix-git/doc/guix.texi:18650 guix-git/doc/guix.texi:18689 +#: guix-git/doc/guix.texi:36206 #, no-wrap msgid "SSH server" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18290 +#: guix-git/doc/guix.texi:18652 #, no-wrap msgid "{Scheme Procedure} lsh-service [#:host-key \"/etc/lsh/host-key\"] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18299 +#: guix-git/doc/guix.texi:18661 msgid "[#:daemonic? #t] [#:interfaces '()] [#:port-number 22] @ [#:allow-empty-passwords? #f] [#:root-login? #f] @ [#:syslog-output? #t] [#:x11-forwarding? #t] @ [#:tcp/ip-forwarding? #t] [#:password-authentication? #t] @ [#:public-key-authentication? #t] [#:initialize? #t] Run the @command{lshd} program from @var{lsh} to listen on port @var{port-number}. @var{host-key} must designate a file containing the host key, and readable only by root." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18305 +#: guix-git/doc/guix.texi:18667 msgid "When @var{daemonic?} is true, @command{lshd} will detach from the controlling terminal and log its output to syslogd, unless one sets @var{syslog-output?} to false. Obviously, it also makes lsh-service depend on existence of syslogd service. When @var{pid-file?} is true, @command{lshd} writes its PID to the file called @var{pid-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18309 +#: guix-git/doc/guix.texi:18671 msgid "When @var{initialize?} is true, automatically create the seed and host key upon service activation if they do not exist yet. This may take long and require interaction." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18314 +#: guix-git/doc/guix.texi:18676 msgid "When @var{initialize?} is false, it is up to the user to initialize the randomness generator (@pxref{lsh-make-seed,,, lsh, LSH Manual}), and to create a key pair with the private key stored in file @var{host-key} (@pxref{lshd basics,,, lsh, LSH Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18318 +#: guix-git/doc/guix.texi:18680 msgid "When @var{interfaces} is empty, lshd listens for connections on all the network interfaces; otherwise, @var{interfaces} must be a list of host names or addresses." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18322 +#: guix-git/doc/guix.texi:18684 msgid "@var{allow-empty-passwords?} specifies whether to accept log-ins with empty passwords, and @var{root-login?} specifies whether to accept log-ins as root." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18324 +#: guix-git/doc/guix.texi:18686 msgid "The other options should be self-descriptive." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18328 +#: guix-git/doc/guix.texi:18690 #, no-wrap msgid "{Scheme Variable} openssh-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18332 +#: guix-git/doc/guix.texi:18694 msgid "This is the type for the @uref{http://www.openssh.org, OpenSSH} secure shell daemon, @command{sshd}. Its value must be an @code{openssh-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18341 +#: guix-git/doc/guix.texi:18703 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -32377,17 +32999,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18344 +#: guix-git/doc/guix.texi:18706 msgid "See below for details about @code{openssh-configuration}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18347 +#: guix-git/doc/guix.texi:18709 msgid "This service can be extended with extra authorized keys, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18352 +#: guix-git/doc/guix.texi:18714 #, no-wrap msgid "" "(service-extension openssh-service-type\n" @@ -32396,203 +33018,203 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18355 +#: guix-git/doc/guix.texi:18717 #, no-wrap msgid "{Data Type} openssh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18357 +#: guix-git/doc/guix.texi:18719 msgid "This is the configuration record for OpenSSH's @command{sshd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18359 +#: guix-git/doc/guix.texi:18721 #, no-wrap msgid "@code{openssh} (default @var{openssh})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18361 +#: guix-git/doc/guix.texi:18723 msgid "The Openssh package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18362 +#: guix-git/doc/guix.texi:18724 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/sshd.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18364 +#: guix-git/doc/guix.texi:18726 msgid "Name of the file where @command{sshd} writes its PID." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18365 +#: guix-git/doc/guix.texi:18727 #, no-wrap msgid "@code{port-number} (default: @code{22})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18367 +#: guix-git/doc/guix.texi:18729 msgid "TCP port on which @command{sshd} listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18368 +#: guix-git/doc/guix.texi:18730 #, no-wrap msgid "@code{permit-root-login} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18373 +#: guix-git/doc/guix.texi:18735 msgid "This field determines whether and when to allow logins as root. If @code{#f}, root logins are disallowed; if @code{#t}, they are allowed. If it's the symbol @code{'prohibit-password}, then root logins are permitted but not with password-based authentication." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18374 guix-git/doc/guix.texi:18535 +#: guix-git/doc/guix.texi:18736 guix-git/doc/guix.texi:18897 #, no-wrap msgid "@code{allow-empty-passwords?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18377 +#: guix-git/doc/guix.texi:18739 msgid "When true, users with empty passwords may log in. When false, they may not." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18378 guix-git/doc/guix.texi:18538 +#: guix-git/doc/guix.texi:18740 guix-git/doc/guix.texi:18900 #, no-wrap msgid "@code{password-authentication?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18381 +#: guix-git/doc/guix.texi:18743 msgid "When true, users may log in with their password. When false, they have other authentication methods." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18382 +#: guix-git/doc/guix.texi:18744 #, no-wrap msgid "@code{public-key-authentication?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18385 +#: guix-git/doc/guix.texi:18747 msgid "When true, users may log in using public key authentication. When false, users have to use other authentication method." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18388 +#: guix-git/doc/guix.texi:18750 msgid "Authorized public keys are stored in @file{~/.ssh/authorized_keys}. This is used only by protocol version 2." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18389 +#: guix-git/doc/guix.texi:18751 #, no-wrap msgid "@code{x11-forwarding?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18393 +#: guix-git/doc/guix.texi:18755 msgid "When true, forwarding of X11 graphical client connections is enabled---in other words, @command{ssh} options @option{-X} and @option{-Y} will work." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18394 +#: guix-git/doc/guix.texi:18756 #, no-wrap msgid "@code{allow-agent-forwarding?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18396 +#: guix-git/doc/guix.texi:18758 msgid "Whether to allow agent forwarding." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18397 +#: guix-git/doc/guix.texi:18759 #, no-wrap msgid "@code{allow-tcp-forwarding?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18399 +#: guix-git/doc/guix.texi:18761 msgid "Whether to allow TCP forwarding." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18400 +#: guix-git/doc/guix.texi:18762 #, no-wrap msgid "@code{gateway-ports?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18402 +#: guix-git/doc/guix.texi:18764 msgid "Whether to allow gateway ports." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18403 +#: guix-git/doc/guix.texi:18765 #, no-wrap msgid "@code{challenge-response-authentication?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18406 +#: guix-git/doc/guix.texi:18768 msgid "Specifies whether challenge response authentication is allowed (e.g.@: via PAM)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18407 +#: guix-git/doc/guix.texi:18769 #, no-wrap msgid "@code{use-pam?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18413 +#: guix-git/doc/guix.texi:18775 msgid "Enables the Pluggable Authentication Module interface. If set to @code{#t}, this will enable PAM authentication using @code{challenge-response-authentication?} and @code{password-authentication?}, in addition to PAM account and session module processing for all authentication types." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18418 +#: guix-git/doc/guix.texi:18780 msgid "Because PAM challenge response authentication usually serves an equivalent role to password authentication, you should disable either @code{challenge-response-authentication?} or @code{password-authentication?}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18419 +#: guix-git/doc/guix.texi:18781 #, no-wrap msgid "@code{print-last-log?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18422 +#: guix-git/doc/guix.texi:18784 msgid "Specifies whether @command{sshd} should print the date and time of the last user login when a user logs in interactively." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18423 +#: guix-git/doc/guix.texi:18785 #, no-wrap msgid "@code{subsystems} (default: @code{'((\"sftp\" \"internal-sftp\"))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18425 +#: guix-git/doc/guix.texi:18787 msgid "Configures external subsystems (e.g.@: file transfer daemon)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18429 +#: guix-git/doc/guix.texi:18791 msgid "This is a list of two-element lists, each of which containing the subsystem name and a command (with optional arguments) to execute upon subsystem request." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18432 +#: guix-git/doc/guix.texi:18794 msgid "The command @command{internal-sftp} implements an in-process SFTP server. Alternatively, one can specify the @command{sftp-server} command:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18437 +#: guix-git/doc/guix.texi:18799 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -32602,28 +33224,28 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18439 +#: guix-git/doc/guix.texi:18801 #, no-wrap msgid "@code{accepted-environment} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18441 +#: guix-git/doc/guix.texi:18803 msgid "List of strings describing which environment variables may be exported." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18444 +#: guix-git/doc/guix.texi:18806 msgid "Each string gets on its own line. See the @code{AcceptEnv} option in @code{man sshd_config}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18449 +#: guix-git/doc/guix.texi:18811 msgid "This example allows ssh-clients to export the @env{COLORTERM} variable. It is set by terminal emulators, which support colors. You can use it in your shell's resource file to enable colors for the prompt and commands if this variable is set." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18454 +#: guix-git/doc/guix.texi:18816 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -32632,30 +33254,30 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18456 +#: guix-git/doc/guix.texi:18818 #, no-wrap msgid "@code{authorized-keys} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18457 +#: guix-git/doc/guix.texi:18819 #, no-wrap msgid "authorized keys, SSH" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18458 +#: guix-git/doc/guix.texi:18820 #, no-wrap msgid "SSH authorized keys" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18462 +#: guix-git/doc/guix.texi:18824 msgid "This is the list of authorized keys. Each element of the list is a user name followed by one or more file-like objects that represent SSH public keys. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18469 +#: guix-git/doc/guix.texi:18831 #, no-wrap msgid "" "(openssh-configuration\n" @@ -32666,45 +33288,45 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18474 +#: guix-git/doc/guix.texi:18836 msgid "registers the specified public keys for user accounts @code{rekado}, @code{chris}, and @code{root}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18477 +#: guix-git/doc/guix.texi:18839 msgid "Additional authorized keys can be specified @i{via} @code{service-extension}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18480 +#: guix-git/doc/guix.texi:18842 msgid "Note that this does @emph{not} interfere with the use of @file{~/.ssh/authorized_keys}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18481 guix-git/doc/guix.texi:18912 +#: guix-git/doc/guix.texi:18843 guix-git/doc/guix.texi:19274 #, no-wrap msgid "@code{log-level} (default: @code{'info})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18485 +#: guix-git/doc/guix.texi:18847 msgid "This is a symbol specifying the logging level: @code{quiet}, @code{fatal}, @code{error}, @code{info}, @code{verbose}, @code{debug}, etc. See the man page for @file{sshd_config} for the full list of level names." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18486 guix-git/doc/guix.texi:21328 -#: guix-git/doc/guix.texi:26469 +#: guix-git/doc/guix.texi:18848 guix-git/doc/guix.texi:21690 +#: guix-git/doc/guix.texi:26806 #, no-wrap msgid "@code{extra-content} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18491 +#: guix-git/doc/guix.texi:18853 msgid "This field can be used to append arbitrary text to the configuration file. It is especially useful for elaborate configurations that cannot be expressed otherwise. This configuration, for example, would generally disable root logins, but permit them from one specific IP address:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18497 +#: guix-git/doc/guix.texi:18859 #, no-wrap msgid "" "(openssh-configuration\n" @@ -32714,23 +33336,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18502 +#: guix-git/doc/guix.texi:18864 #, no-wrap msgid "{Scheme Procedure} dropbear-service [@var{config}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18506 +#: guix-git/doc/guix.texi:18868 msgid "Run the @uref{https://matt.ucc.asn.au/dropbear/dropbear.html,Dropbear SSH daemon} with the given @var{config}, a @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18509 +#: guix-git/doc/guix.texi:18871 msgid "For example, to specify a Dropbear service listening on port 1234, add this call to the operating system's @code{services} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18513 +#: guix-git/doc/guix.texi:18875 #, no-wrap msgid "" "(dropbear-service (dropbear-configuration\n" @@ -32738,110 +33360,110 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18516 +#: guix-git/doc/guix.texi:18878 #, no-wrap msgid "{Data Type} dropbear-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18518 +#: guix-git/doc/guix.texi:18880 msgid "This data type represents the configuration of a Dropbear SSH daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18520 +#: guix-git/doc/guix.texi:18882 #, no-wrap msgid "@code{dropbear} (default: @var{dropbear})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18522 +#: guix-git/doc/guix.texi:18884 msgid "The Dropbear package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18523 +#: guix-git/doc/guix.texi:18885 #, no-wrap msgid "@code{port-number} (default: 22)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18525 +#: guix-git/doc/guix.texi:18887 msgid "The TCP port where the daemon waits for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18526 +#: guix-git/doc/guix.texi:18888 #, no-wrap msgid "@code{syslog-output?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18528 +#: guix-git/doc/guix.texi:18890 msgid "Whether to enable syslog output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18529 +#: guix-git/doc/guix.texi:18891 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/dropbear.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18531 +#: guix-git/doc/guix.texi:18893 msgid "File name of the daemon's PID file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18532 +#: guix-git/doc/guix.texi:18894 #, no-wrap msgid "@code{root-login?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18534 +#: guix-git/doc/guix.texi:18896 msgid "Whether to allow @code{root} logins." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18537 +#: guix-git/doc/guix.texi:18899 msgid "Whether to allow empty passwords." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18540 +#: guix-git/doc/guix.texi:18902 msgid "Whether to enable password-based authentication." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18543 +#: guix-git/doc/guix.texi:18905 #, no-wrap msgid "AutoSSH" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18544 +#: guix-git/doc/guix.texi:18906 #, no-wrap msgid "{Scheme Variable} autossh-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18552 +#: guix-git/doc/guix.texi:18914 msgid "This is the type for the @uref{https://www.harding.motd.ca/autossh, AutoSSH} program that runs a copy of @command{ssh} and monitors it, restarting it as necessary should it die or stop passing traffic. AutoSSH can be run manually from the command-line by passing arguments to the binary @command{autossh} from the package @code{autossh}, but it can also be run as a Guix service. This latter use case is documented here." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18556 +#: guix-git/doc/guix.texi:18918 msgid "AutoSSH can be used to forward local traffic to a remote machine using an SSH tunnel, and it respects the @file{~/.ssh/config} of the user it is run as." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18561 +#: guix-git/doc/guix.texi:18923 msgid "For example, to specify a service running autossh as the user @code{pino} and forwarding all local connections to port @code{8081} to @code{remote:8081} using an SSH tunnel, add this call to the operating system's @code{services} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18567 +#: guix-git/doc/guix.texi:18929 #, no-wrap msgid "" "(service autossh-service-type\n" @@ -32851,139 +33473,139 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18570 +#: guix-git/doc/guix.texi:18932 #, no-wrap msgid "{Data Type} autossh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18572 +#: guix-git/doc/guix.texi:18934 msgid "This data type represents the configuration of an AutoSSH service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18575 +#: guix-git/doc/guix.texi:18937 #, no-wrap msgid "@code{user} (default @code{\"autossh\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18578 +#: guix-git/doc/guix.texi:18940 msgid "The user as which the AutoSSH service is to be run. This assumes that the specified user exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18579 +#: guix-git/doc/guix.texi:18941 #, no-wrap msgid "@code{poll} (default @code{600})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18581 +#: guix-git/doc/guix.texi:18943 msgid "Specifies the connection poll time in seconds." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18582 +#: guix-git/doc/guix.texi:18944 #, no-wrap msgid "@code{first-poll} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18588 +#: guix-git/doc/guix.texi:18950 msgid "Specifies how many seconds AutoSSH waits before the first connection test. After this first test, polling is resumed at the pace defined in @code{poll}. When set to @code{#f}, the first poll is not treated specially and will also use the connection poll specified in @code{poll}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18589 +#: guix-git/doc/guix.texi:18951 #, no-wrap msgid "@code{gate-time} (default @code{30})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18592 +#: guix-git/doc/guix.texi:18954 msgid "Specifies how many seconds an SSH connection must be active before it is considered successful." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18593 +#: guix-git/doc/guix.texi:18955 #, no-wrap msgid "@code{log-level} (default @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18596 +#: guix-git/doc/guix.texi:18958 msgid "The log level, corresponding to the levels used by syslog---so @code{0} is the most silent while @code{7} is the chattiest." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18597 +#: guix-git/doc/guix.texi:18959 #, no-wrap msgid "@code{max-start} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18600 +#: guix-git/doc/guix.texi:18962 msgid "The maximum number of times SSH may be (re)started before AutoSSH exits. When set to @code{#f}, no maximum is configured and AutoSSH may restart indefinitely." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18601 +#: guix-git/doc/guix.texi:18963 #, no-wrap msgid "@code{message} (default @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18603 +#: guix-git/doc/guix.texi:18965 msgid "The message to append to the echo message sent when testing connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18604 +#: guix-git/doc/guix.texi:18966 #, no-wrap msgid "@code{port} (default @code{\"0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18614 +#: guix-git/doc/guix.texi:18976 msgid "The ports used for monitoring the connection. When set to @code{\"0\"}, monitoring is disabled. When set to @code{\"@var{n}\"} where @var{n} is a positive integer, ports @var{n} and @var{n}+1 are used for monitoring the connection, such that port @var{n} is the base monitoring port and @code{n+1} is the echo port. When set to @code{\"@var{n}:@var{m}\"} where @var{n} and @var{m} are positive integers, the ports @var{n} and @var{m} are used for monitoring the connection, such that port @var{n} is the base monitoring port and @var{m} is the echo port." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18615 +#: guix-git/doc/guix.texi:18977 #, no-wrap msgid "@code{ssh-options} (default @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18619 +#: guix-git/doc/guix.texi:18981 msgid "The list of command-line arguments to pass to @command{ssh} when it is run. Options @option{-f} and @option{-M} are reserved for AutoSSH and may cause undefined behaviour." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18623 +#: guix-git/doc/guix.texi:18985 #, no-wrap msgid "WebSSH" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18624 +#: guix-git/doc/guix.texi:18986 #, no-wrap msgid "{Scheme Variable} webssh-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18630 +#: guix-git/doc/guix.texi:18992 msgid "This is the type for the @uref{https://webssh.huashengdun.org/, WebSSH} program that runs a web SSH client. WebSSH can be run manually from the command-line by passing arguments to the binary @command{wssh} from the package @code{webssh}, but it can also be run as a Guix service. This latter use case is documented here." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18636 +#: guix-git/doc/guix.texi:18998 msgid "For example, to specify a service running WebSSH on loopback interface on port @code{8888} with reject policy with a list of allowed to connection hosts, and NGINX as a reverse-proxy to this service listening for HTTPS connection, add this call to the operating system's @code{services} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18644 +#: guix-git/doc/guix.texi:19006 #, no-wrap msgid "" "(service webssh-service-type\n" @@ -32996,7 +33618,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18660 +#: guix-git/doc/guix.texi:19022 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -33017,128 +33639,128 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18663 +#: guix-git/doc/guix.texi:19025 #, no-wrap msgid "{Data Type} webssh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18665 +#: guix-git/doc/guix.texi:19027 msgid "Data type representing the configuration for @code{webssh-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18667 +#: guix-git/doc/guix.texi:19029 #, no-wrap msgid "@code{package} (default: @var{webssh})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18669 +#: guix-git/doc/guix.texi:19031 msgid "@code{webssh} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18670 +#: guix-git/doc/guix.texi:19032 #, no-wrap msgid "@code{user-name} (default: @var{\"webssh\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18673 +#: guix-git/doc/guix.texi:19035 msgid "User name or user ID that file transfers to and from that module should take place." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18674 +#: guix-git/doc/guix.texi:19036 #, no-wrap msgid "@code{group-name} (default: @var{\"webssh\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18677 +#: guix-git/doc/guix.texi:19039 #, no-wrap msgid "@code{address} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18679 +#: guix-git/doc/guix.texi:19041 msgid "IP address on which @command{webssh} listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18680 +#: guix-git/doc/guix.texi:19042 #, no-wrap msgid "@code{port} (default: @var{8888})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18682 +#: guix-git/doc/guix.texi:19044 msgid "TCP port on which @command{webssh} listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18683 +#: guix-git/doc/guix.texi:19045 #, no-wrap msgid "@code{policy} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18685 +#: guix-git/doc/guix.texi:19047 msgid "Connection policy. @var{reject} policy requires to specify @var{known-hosts}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18686 +#: guix-git/doc/guix.texi:19048 #, no-wrap msgid "@code{known-hosts} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18688 +#: guix-git/doc/guix.texi:19050 msgid "List of hosts which allowed for SSH connection from @command{webssh}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18689 +#: guix-git/doc/guix.texi:19051 #, no-wrap msgid "@code{log-file} (default: @file{\"/var/log/webssh.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18691 +#: guix-git/doc/guix.texi:19053 msgid "Name of the file where @command{webssh} writes its log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18692 +#: guix-git/doc/guix.texi:19054 #, no-wrap msgid "@code{log-level} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18694 +#: guix-git/doc/guix.texi:19056 msgid "Logging level." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18698 +#: guix-git/doc/guix.texi:19060 #, no-wrap msgid "{Scheme Variable} %facebook-host-aliases" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18704 +#: guix-git/doc/guix.texi:19066 msgid "This variable contains a string for use in @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). Each line contains a entry that maps a known server name of the Facebook on-line service---e.g., @code{www.facebook.com}---to the local host---@code{127.0.0.1} or its IPv6 equivalent, @code{::1}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18708 +#: guix-git/doc/guix.texi:19070 msgid "This variable is typically used in the @code{hosts-file} field of an @code{operating-system} declaration (@pxref{operating-system Reference, @file{/etc/hosts}}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18721 +#: guix-git/doc/guix.texi:19083 #, no-wrap msgid "" "(operating-system\n" @@ -33153,176 +33775,176 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18725 +#: guix-git/doc/guix.texi:19087 msgid "This mechanism can prevent programs running locally, such as Web browsers, from accessing Facebook." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18728 +#: guix-git/doc/guix.texi:19090 msgid "The @code{(gnu services avahi)} provides the following definition." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18729 +#: guix-git/doc/guix.texi:19091 #, no-wrap msgid "{Scheme Variable} avahi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18734 +#: guix-git/doc/guix.texi:19096 msgid "This is the service that runs @command{avahi-daemon}, a system-wide mDNS/DNS-SD responder that allows for service discovery and ``zero-configuration'' host name lookups (see @uref{https://avahi.org/}). Its value must be an @code{avahi-configuration} record---see below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18739 +#: guix-git/doc/guix.texi:19101 msgid "This service extends the name service cache daemon (nscd) so that it can resolve @code{.local} host names using @uref{https://0pointer.de/lennart/projects/nss-mdns/, nss-mdns}. @xref{Name Service Switch}, for information on host name resolution." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18742 +#: guix-git/doc/guix.texi:19104 msgid "Additionally, add the @var{avahi} package to the system profile so that commands such as @command{avahi-browse} are directly usable." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18744 +#: guix-git/doc/guix.texi:19106 #, no-wrap msgid "{Data Type} avahi-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18746 +#: guix-git/doc/guix.texi:19108 msgid "Data type representation the configuration for Avahi." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18749 +#: guix-git/doc/guix.texi:19111 #, no-wrap msgid "@code{host-name} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18752 +#: guix-git/doc/guix.texi:19114 msgid "If different from @code{#f}, use that as the host name to publish for this machine; otherwise, use the machine's actual host name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18753 guix-git/doc/guix.texi:29132 +#: guix-git/doc/guix.texi:19115 guix-git/doc/guix.texi:29469 #, no-wrap msgid "@code{publish?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18756 +#: guix-git/doc/guix.texi:19118 msgid "When true, allow host names and services to be published (broadcast) over the network." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18757 +#: guix-git/doc/guix.texi:19119 #, no-wrap msgid "@code{publish-workstation?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18761 +#: guix-git/doc/guix.texi:19123 msgid "When true, @command{avahi-daemon} publishes the machine's host name and IP address via mDNS on the local network. To view the host names published on your local network, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18764 +#: guix-git/doc/guix.texi:19126 #, no-wrap msgid "avahi-browse _workstation._tcp\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18766 +#: guix-git/doc/guix.texi:19128 #, no-wrap msgid "@code{wide-area?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18768 +#: guix-git/doc/guix.texi:19130 msgid "When true, DNS-SD over unicast DNS is enabled." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18769 +#: guix-git/doc/guix.texi:19131 #, no-wrap msgid "@code{ipv4?} (default: @code{#t})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:18770 +#: guix-git/doc/guix.texi:19132 #, no-wrap msgid "@code{ipv6?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18772 +#: guix-git/doc/guix.texi:19134 msgid "These fields determine whether to use IPv4/IPv6 sockets." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18773 +#: guix-git/doc/guix.texi:19135 #, no-wrap msgid "@code{domains-to-browse} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18775 +#: guix-git/doc/guix.texi:19137 msgid "This is a list of domains to browse." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18778 +#: guix-git/doc/guix.texi:19140 #, no-wrap msgid "{Scheme Variable} openvswitch-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18782 +#: guix-git/doc/guix.texi:19144 msgid "This is the type of the @uref{https://www.openvswitch.org, Open vSwitch} service, whose value should be an @code{openvswitch-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18784 +#: guix-git/doc/guix.texi:19146 #, no-wrap msgid "{Data Type} openvswitch-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18788 +#: guix-git/doc/guix.texi:19150 msgid "Data type representing the configuration of Open vSwitch, a multilayer virtual switch which is designed to enable massive network automation through programmatic extension." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18790 +#: guix-git/doc/guix.texi:19152 #, no-wrap msgid "@code{package} (default: @var{openvswitch})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18792 +#: guix-git/doc/guix.texi:19154 msgid "Package object of the Open vSwitch." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18796 +#: guix-git/doc/guix.texi:19158 #, no-wrap msgid "{Scheme Variable} pagekite-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18801 +#: guix-git/doc/guix.texi:19163 msgid "This is the service type for the @uref{https://pagekite.net, PageKite} service, a tunneling solution for making localhost servers publicly visible, even from behind restrictive firewalls or NAT without forwarded ports. The value for this service type is a @code{pagekite-configuration} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18803 +#: guix-git/doc/guix.texi:19165 msgid "Here's an example exposing the local HTTP and SSH daemons:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18810 +#: guix-git/doc/guix.texi:19172 #, no-wrap msgid "" "(service pagekite-service-type\n" @@ -33333,110 +33955,110 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18813 +#: guix-git/doc/guix.texi:19175 #, no-wrap msgid "{Data Type} pagekite-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18815 +#: guix-git/doc/guix.texi:19177 msgid "Data type representing the configuration of PageKite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18817 +#: guix-git/doc/guix.texi:19179 #, no-wrap msgid "@code{package} (default: @var{pagekite})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18819 +#: guix-git/doc/guix.texi:19181 msgid "Package object of PageKite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18820 +#: guix-git/doc/guix.texi:19182 #, no-wrap msgid "@code{kitename} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18822 +#: guix-git/doc/guix.texi:19184 msgid "PageKite name for authenticating to the frontend server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18823 +#: guix-git/doc/guix.texi:19185 #, no-wrap msgid "@code{kitesecret} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18826 +#: guix-git/doc/guix.texi:19188 msgid "Shared secret for authenticating to the frontend server. You should probably put this inside @code{extra-file} instead." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18827 +#: guix-git/doc/guix.texi:19189 #, no-wrap msgid "@code{frontend} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18830 +#: guix-git/doc/guix.texi:19192 msgid "Connect to the named PageKite frontend server instead of the @uref{https://pagekite.net,,pagekite.net} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18831 +#: guix-git/doc/guix.texi:19193 #, no-wrap msgid "@code{kites} (default: @code{'(\"http:@@kitename:localhost:80:@@kitesecret\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18834 +#: guix-git/doc/guix.texi:19196 msgid "List of service kites to use. Exposes HTTP on port 80 by default. The format is @code{proto:kitename:host:port:secret}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18835 +#: guix-git/doc/guix.texi:19197 #, no-wrap msgid "@code{extra-file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18838 +#: guix-git/doc/guix.texi:19200 msgid "Extra configuration file to read, which you are expected to create manually. Use this to add additional options and manage shared secrets out-of-band." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18842 +#: guix-git/doc/guix.texi:19204 #, no-wrap msgid "{Scheme Variable} yggdrasil-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18846 +#: guix-git/doc/guix.texi:19208 msgid "The service type for connecting to the @uref{https://yggdrasil-network.github.io/, Yggdrasil network}, an early-stage implementation of a fully end-to-end encrypted IPv6 network." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:18853 +#: guix-git/doc/guix.texi:19215 msgid "Yggdrasil provides name-independent routing with cryptographically generated addresses. Static addressing means you can keep the same address as long as you want, even if you move to a new location, or generate a new address (by generating new keys) whenever you want. @uref{https://yggdrasil-network.github.io/2018/07/28/addressing.html}" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18857 +#: guix-git/doc/guix.texi:19219 msgid "Pass it a value of @code{yggdrasil-configuration} to connect it to public peers and/or local peers." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18861 +#: guix-git/doc/guix.texi:19223 msgid "Here is an example using public peers and a static address. The static signing and encryption keys are defined in @file{/etc/yggdrasil-private.conf} (the default value for @code{config-file})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18873 +#: guix-git/doc/guix.texi:19235 #, no-wrap msgid "" ";; part of the operating-system declaration\n" @@ -33452,7 +34074,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18880 +#: guix-git/doc/guix.texi:19242 #, no-wrap msgid "" "# sample content for /etc/yggdrasil-private.conf\n" @@ -33464,7 +34086,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18883 +#: guix-git/doc/guix.texi:19245 #, no-wrap msgid "" " # Your private encryption key. DO NOT share this with anyone!\n" @@ -33473,7 +34095,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18887 +#: guix-git/doc/guix.texi:19249 #, no-wrap msgid "" " # Your public signing key. You should not ordinarily need to share\n" @@ -33483,7 +34105,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18891 +#: guix-git/doc/guix.texi:19253 #, no-wrap msgid "" " # Your private signing key. DO NOT share this with anyone!\n" @@ -33492,124 +34114,124 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18894 +#: guix-git/doc/guix.texi:19256 #, no-wrap msgid "{Data Type} yggdrasil-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18896 +#: guix-git/doc/guix.texi:19258 msgid "Data type representing the configuration of Yggdrasil." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18898 +#: guix-git/doc/guix.texi:19260 #, no-wrap msgid "@code{package} (default: @code{yggdrasil})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18900 +#: guix-git/doc/guix.texi:19262 msgid "Package object of Yggdrasil." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18901 +#: guix-git/doc/guix.texi:19263 #, no-wrap msgid "@code{json-config} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18907 +#: guix-git/doc/guix.texi:19269 msgid "Contents of @file{/etc/yggdrasil.conf}. Will be merged with @file{/etc/yggdrasil-private.conf}. Note that these settings are stored in the Guix store, which is readable to all users. @strong{Do not store your private keys in it}. See the output of @code{yggdrasil -genconf} for a quick overview of valid keys and their default values." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18908 +#: guix-git/doc/guix.texi:19270 #, no-wrap msgid "@code{autoconf?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18911 +#: guix-git/doc/guix.texi:19273 msgid "Whether to use automatic mode. Enabling it makes Yggdrasil use adynamic IP and peer with IPv6 neighbors." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18914 +#: guix-git/doc/guix.texi:19276 msgid "How much detail to include in logs. Use @code{'debug} for more detail." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18915 +#: guix-git/doc/guix.texi:19277 #, no-wrap msgid "@code{log-to} (default: @code{'stdout})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18919 +#: guix-git/doc/guix.texi:19281 msgid "Where to send logs. By default, the service logs standard output to @file{/var/log/yggdrasil.log}. The alternative is @code{'syslog}, which sends output to the running syslog service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18920 +#: guix-git/doc/guix.texi:19282 #, no-wrap msgid "@code{config-file} (default: @code{\"/etc/yggdrasil-private.conf\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18927 +#: guix-git/doc/guix.texi:19289 msgid "What HJSON file to load sensitive data from. This is where private keys should be stored, which are necessary to specify if you don't want a randomized address after each restart. Use @code{#f} to disable. Options defined in this file take precedence over @code{json-config}. Use the output of @code{yggdrasil -genconf} as a starting point. To configure a static address, delete everything except these options:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18929 +#: guix-git/doc/guix.texi:19291 #, no-wrap msgid "EncryptionPublicKey" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18930 +#: guix-git/doc/guix.texi:19292 #, no-wrap msgid "EncryptionPrivateKey" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18931 +#: guix-git/doc/guix.texi:19293 #, no-wrap msgid "SigningPublicKey" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18932 +#: guix-git/doc/guix.texi:19294 #, no-wrap msgid "SigningPrivateKey" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18937 +#: guix-git/doc/guix.texi:19299 #, no-wrap msgid "IPFS" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18938 +#: guix-git/doc/guix.texi:19300 #, no-wrap msgid "{Scheme Variable} ipfs-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18942 +#: guix-git/doc/guix.texi:19304 msgid "The service type for connecting to the @uref{https://ipfs.io,IPFS network}, a global, versioned, peer-to-peer file system. Pass it a @code{ipfs-configuration} to change the ports used for the gateway and API." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18944 +#: guix-git/doc/guix.texi:19306 msgid "Here's an example configuration, using some non-standard ports:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18950 +#: guix-git/doc/guix.texi:19312 #, no-wrap msgid "" "(service ipfs-service-type\n" @@ -33619,69 +34241,69 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18953 +#: guix-git/doc/guix.texi:19315 #, fuzzy, no-wrap msgid "{Data Type} ipfs-configuration" msgstr "설정" #. type: deftp -#: guix-git/doc/guix.texi:18955 +#: guix-git/doc/guix.texi:19317 #, fuzzy msgid "Data type representing the configuration of IPFS." msgstr "운영체제 설정 관리." #. type: item -#: guix-git/doc/guix.texi:18957 +#: guix-git/doc/guix.texi:19319 #, no-wrap msgid "@code{package} (default: @code{go-ipfs})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18959 +#: guix-git/doc/guix.texi:19321 msgid "Package object of IPFS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18960 +#: guix-git/doc/guix.texi:19322 #, no-wrap msgid "@code{gateway} (default: @code{\"/ip4/127.0.0.1/tcp/8082\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18962 +#: guix-git/doc/guix.texi:19324 msgid "Address of the gateway, in ‘multiaddress’ format." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18963 +#: guix-git/doc/guix.texi:19325 #, no-wrap msgid "@code{api} (default: @code{\"/ip4/127.0.0.1/tcp/5001\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18965 +#: guix-git/doc/guix.texi:19327 msgid "Address of the API endpoint, in ‘multiaddress’ format." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18968 +#: guix-git/doc/guix.texi:19330 #, no-wrap msgid "keepalived" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18969 +#: guix-git/doc/guix.texi:19331 #, no-wrap msgid "{Scheme Variable} keepalived-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18974 +#: guix-git/doc/guix.texi:19336 msgid "This is the type for the @uref{https://www.keepalived.org/, Keepalived} routing software, @command{keepalived}. Its value must be an @code{keepalived-configuration} record as in this example for master machine:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18979 +#: guix-git/doc/guix.texi:19341 #, no-wrap msgid "" "(service keepalived-service-type\n" @@ -33690,12 +34312,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18982 +#: guix-git/doc/guix.texi:19344 msgid "where @file{keepalived-master.conf}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18994 +#: guix-git/doc/guix.texi:19356 #, no-wrap msgid "" "vrrp_instance my-group @{\n" @@ -33711,12 +34333,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18997 +#: guix-git/doc/guix.texi:19359 msgid "and for backup machine:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19002 +#: guix-git/doc/guix.texi:19364 #, no-wrap msgid "" "(service keepalived-service-type\n" @@ -33725,12 +34347,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19005 +#: guix-git/doc/guix.texi:19367 msgid "where @file{keepalived-backup.conf}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:19017 +#: guix-git/doc/guix.texi:19379 #, no-wrap msgid "" "vrrp_instance my-group @{\n" @@ -33746,135 +34368,135 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19023 +#: guix-git/doc/guix.texi:19385 #, no-wrap msgid "unattended upgrades" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19024 +#: guix-git/doc/guix.texi:19386 #, no-wrap msgid "upgrades, unattended" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19029 +#: guix-git/doc/guix.texi:19391 msgid "Guix provides a service to perform @emph{unattended upgrades}: periodically, the system automatically reconfigures itself from the latest Guix. Guix System has several properties that make unattended upgrades safe:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19034 +#: guix-git/doc/guix.texi:19396 msgid "upgrades are transactional (either the upgrade succeeds or it fails, but you cannot end up with an ``in-between'' system state);" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19038 +#: guix-git/doc/guix.texi:19400 msgid "the upgrade log is kept---you can view it with @command{guix system list-generations}---and you can roll back to any previous generation, should the upgraded system fail to behave as intended;" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19041 +#: guix-git/doc/guix.texi:19403 msgid "channel code is authenticated so you know you can only run genuine code (@pxref{Channels});" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19044 +#: guix-git/doc/guix.texi:19406 msgid "@command{guix system reconfigure} prevents downgrades, which makes it immune to @dfn{downgrade attacks}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19049 +#: guix-git/doc/guix.texi:19411 msgid "To set up unattended upgrades, add an instance of @code{unattended-upgrade-service-type} like the one below to the list of your operating system services:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19052 +#: guix-git/doc/guix.texi:19414 #, no-wrap msgid "(service unattended-upgrade-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19059 +#: guix-git/doc/guix.texi:19421 msgid "The defaults above set up weekly upgrades: every Sunday at midnight. You do not need to provide the operating system configuration file: it uses @file{/run/current-system/configuration.scm}, which ensures it always uses your latest configuration---@pxref{provenance-service-type}, for more information about this file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19065 +#: guix-git/doc/guix.texi:19427 msgid "There are several things that can be configured, in particular the periodicity and services (daemons) to be restarted upon completion. When the upgrade is successful, the service takes care of deleting system generations older that some threshold, as per @command{guix system delete-generations}. See the reference below for details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19069 +#: guix-git/doc/guix.texi:19431 msgid "To ensure that upgrades are actually happening, you can run @command{guix system describe}. To investigate upgrade failures, visit the unattended upgrade log file (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19070 +#: guix-git/doc/guix.texi:19432 #, no-wrap msgid "{Scheme Variable} unattended-upgrade-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19074 +#: guix-git/doc/guix.texi:19436 msgid "This is the service type for unattended upgrades. It sets up an mcron job (@pxref{Scheduled Job Execution}) that runs @command{guix system reconfigure} from the latest version of the specified channels." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19077 +#: guix-git/doc/guix.texi:19439 msgid "Its value must be a @code{unattended-upgrade-configuration} record (see below)." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19079 +#: guix-git/doc/guix.texi:19441 #, no-wrap msgid "{Data Type} unattended-upgrade-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19082 +#: guix-git/doc/guix.texi:19444 msgid "This data type represents the configuration of the unattended upgrade service. The following fields are available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19084 +#: guix-git/doc/guix.texi:19446 #, no-wrap msgid "@code{schedule} (default: @code{\"30 01 * * 0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19088 +#: guix-git/doc/guix.texi:19450 msgid "This is the schedule of upgrades, expressed as a gexp containing an mcron job schedule (@pxref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19089 +#: guix-git/doc/guix.texi:19451 #, no-wrap msgid "@code{channels} (default: @code{#~%default-channels})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19093 +#: guix-git/doc/guix.texi:19455 msgid "This gexp specifies the channels to use for the upgrade (@pxref{Channels}). By default, the tip of the official @code{guix} channel is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19094 +#: guix-git/doc/guix.texi:19456 #, no-wrap msgid "@code{operating-system-file} (default: @code{\"/run/current-system/configuration.scm\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19097 +#: guix-git/doc/guix.texi:19459 msgid "This field specifies the operating system configuration file to use. The default is to reuse the config file of the current configuration." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19103 +#: guix-git/doc/guix.texi:19465 msgid "There are cases, though, where referring to @file{/run/current-system/configuration.scm} is not enough, for instance because that file refers to extra files (SSH public keys, extra configuration files, etc.) @i{via} @code{local-file} and similar constructs. For those cases, we recommend something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19109 +#: guix-git/doc/guix.texi:19471 #, no-wrap msgid "" "(unattended-upgrade-configuration\n" @@ -33884,313 +34506,313 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19116 +#: guix-git/doc/guix.texi:19478 msgid "The effect here is to import all of the current directory into the store, and to refer to @file{config.scm} within that directory. Therefore, uses of @code{local-file} within @file{config.scm} will work as expected. @xref{G-Expressions}, for information about @code{local-file} and @code{file-append}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19117 +#: guix-git/doc/guix.texi:19479 #, no-wrap msgid "@code{services-to-restart} (default: @code{'(mcron)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19120 +#: guix-git/doc/guix.texi:19482 msgid "This field specifies the Shepherd services to restart when the upgrade completes." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19127 +#: guix-git/doc/guix.texi:19489 msgid "Those services are restarted right away upon completion, as with @command{herd restart}, which ensures that the latest version is running---remember that by default @command{guix system reconfigure} only restarts services that are not currently running, which is conservative: it minimizes disruption but leaves outdated services running." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19131 +#: guix-git/doc/guix.texi:19493 msgid "Use @command{herd status} to find out candidates for restarting. @xref{Services}, for general information about services. Common services to restart would include @code{ntpd} and @code{ssh-daemon}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19134 +#: guix-git/doc/guix.texi:19496 msgid "By default, the @code{mcron} service is restarted. This ensures that the latest version of the unattended upgrade job will be used next time." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19135 +#: guix-git/doc/guix.texi:19497 #, no-wrap msgid "@code{system-expiration} (default: @code{(* 3 30 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19139 +#: guix-git/doc/guix.texi:19501 msgid "This is the expiration time in seconds for system generations. System generations older that this amount of time are deleted with @command{guix system delete-generations} when an upgrade completes." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:19144 +#: guix-git/doc/guix.texi:19506 msgid "The unattended upgrade service does not run the garbage collector. You will probably want to set up your own mcron job to run @command{guix gc} periodically." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19146 +#: guix-git/doc/guix.texi:19508 #, no-wrap msgid "@code{maximum-duration} (default: @code{3600})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19149 +#: guix-git/doc/guix.texi:19511 msgid "Maximum duration in seconds for the upgrade; past that time, the upgrade aborts." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19152 +#: guix-git/doc/guix.texi:19514 msgid "This is primarily useful to ensure the upgrade does not end up rebuilding or re-downloading ``the world''." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19153 +#: guix-git/doc/guix.texi:19515 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/unattended-upgrade.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19155 +#: guix-git/doc/guix.texi:19517 msgid "File where unattended upgrades are logged." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19161 +#: guix-git/doc/guix.texi:19523 #, no-wrap msgid "X11" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19162 +#: guix-git/doc/guix.texi:19524 #, no-wrap msgid "X Window System" msgstr "X 윈도우 시스템" #. type: cindex -#: guix-git/doc/guix.texi:19163 guix-git/doc/guix.texi:19436 +#: guix-git/doc/guix.texi:19525 guix-git/doc/guix.texi:19798 #, no-wrap msgid "login manager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19168 +#: guix-git/doc/guix.texi:19530 msgid "Support for the X Window graphical display system---specifically Xorg---is provided by the @code{(gnu services xorg)} module. Note that there is no @code{xorg-service} procedure. Instead, the X server is started by the @dfn{login manager}, by default the GNOME Display Manager (GDM)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19169 +#: guix-git/doc/guix.texi:19531 #, no-wrap msgid "GDM" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19170 +#: guix-git/doc/guix.texi:19532 #, no-wrap msgid "GNOME, login manager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19174 +#: guix-git/doc/guix.texi:19536 msgid "GDM of course allows users to log in into window managers and desktop environments other than GNOME; for those using GNOME, GDM is required for features such as automatic screen locking." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19175 +#: guix-git/doc/guix.texi:19537 #, no-wrap msgid "window manager" msgstr "윈도우 관리자" #. type: Plain text -#: guix-git/doc/guix.texi:19180 +#: guix-git/doc/guix.texi:19542 msgid "To use X11, you must install at least one @dfn{window manager}---for example the @code{windowmaker} or @code{openbox} packages---preferably by adding it to the @code{packages} field of your operating system definition (@pxref{operating-system Reference, system-wide packages})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:19186 +#: guix-git/doc/guix.texi:19548 msgid "wayland-gdm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19186 +#: guix-git/doc/guix.texi:19548 msgid "GDM also supports Wayland: it can itself use Wayland instead of X11 for its user interface, and it can also start Wayland sessions. The former is required for the latter, to enable, set @code{wayland?} to @code{#t} in @code{gdm-configuration}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19187 +#: guix-git/doc/guix.texi:19549 #, no-wrap msgid "{Scheme Variable} gdm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19192 +#: guix-git/doc/guix.texi:19554 msgid "This is the type for the @uref{https://wiki.gnome.org/Projects/GDM/, GNOME Desktop Manager} (GDM), a program that manages graphical display servers and handles graphical user logins. Its value must be a @code{gdm-configuration} (see below)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19193 +#: guix-git/doc/guix.texi:19555 #, fuzzy, no-wrap #| msgid "service type" msgid "session types" msgstr "서비스 유형" #. type: defvr -#: guix-git/doc/guix.texi:19201 +#: guix-git/doc/guix.texi:19563 msgid "GDM looks for @dfn{session types} described by the @file{.desktop} files in @file{/run/current-system/profile/share/xsessions} (for X11 sessions) and @file{/run/current-system/profile/share/wayland-sessions} (for Wayland sessions) and allows users to choose a session from the log-in screen. Packages such as @code{gnome}, @code{xfce}, @code{i3} and @code{sway} provide @file{.desktop} files; adding them to the system-wide set of packages automatically makes them available at the log-in screen." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19205 +#: guix-git/doc/guix.texi:19567 msgid "In addition, @file{~/.xsession} files are honored. When available, @file{~/.xsession} must be an executable that starts a window manager and/or other X clients." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19207 +#: guix-git/doc/guix.texi:19569 #, no-wrap msgid "{Data Type} gdm-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19209 guix-git/doc/guix.texi:19291 +#: guix-git/doc/guix.texi:19571 guix-git/doc/guix.texi:19653 #, no-wrap msgid "@code{auto-login?} (default: @code{#f})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:19210 +#: guix-git/doc/guix.texi:19572 #, no-wrap msgid "@code{default-user} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19212 +#: guix-git/doc/guix.texi:19574 msgid "When @code{auto-login?} is false, GDM presents a log-in screen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19215 +#: guix-git/doc/guix.texi:19577 msgid "When @code{auto-login?} is true, GDM logs in directly as @code{default-user}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19216 guix-git/doc/guix.texi:25077 -#: guix-git/doc/guix.texi:26786 guix-git/doc/guix.texi:31266 -#: guix-git/doc/guix.texi:31295 guix-git/doc/guix.texi:31324 -#: guix-git/doc/guix.texi:31351 guix-git/doc/guix.texi:31406 -#: guix-git/doc/guix.texi:31431 guix-git/doc/guix.texi:31458 -#: guix-git/doc/guix.texi:31484 guix-git/doc/guix.texi:31526 +#: guix-git/doc/guix.texi:19578 guix-git/doc/guix.texi:25439 +#: guix-git/doc/guix.texi:27123 guix-git/doc/guix.texi:31631 +#: guix-git/doc/guix.texi:31660 guix-git/doc/guix.texi:31689 +#: guix-git/doc/guix.texi:31716 guix-git/doc/guix.texi:31771 +#: guix-git/doc/guix.texi:31796 guix-git/doc/guix.texi:31823 +#: guix-git/doc/guix.texi:31849 guix-git/doc/guix.texi:31891 #, no-wrap msgid "@code{debug?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19218 +#: guix-git/doc/guix.texi:19580 msgid "When true, GDM writes debug messages to its log." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19219 +#: guix-git/doc/guix.texi:19581 #, no-wrap msgid "@code{gnome-shell-assets} (default: ...)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19221 +#: guix-git/doc/guix.texi:19583 msgid "List of GNOME Shell assets needed by GDM: icon theme, fonts, etc." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19222 +#: guix-git/doc/guix.texi:19584 #, no-wrap msgid "@code{xorg-configuration} (default: @code{(xorg-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19224 guix-git/doc/guix.texi:19318 -#: guix-git/doc/guix.texi:19402 +#: guix-git/doc/guix.texi:19586 guix-git/doc/guix.texi:19680 +#: guix-git/doc/guix.texi:19764 msgid "Configuration of the Xorg graphical server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19225 +#: guix-git/doc/guix.texi:19587 #, no-wrap msgid "@code{xsession} (default: @code{(xinitrc)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19227 guix-git/doc/guix.texi:19417 +#: guix-git/doc/guix.texi:19589 guix-git/doc/guix.texi:19779 msgid "Script to run before starting a X session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19228 +#: guix-git/doc/guix.texi:19590 #, no-wrap msgid "@code{dbus-daemon} (default: @code{dbus-daemon-wrapper})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19230 +#: guix-git/doc/guix.texi:19592 msgid "File name of the @code{dbus-daemon} executable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19231 +#: guix-git/doc/guix.texi:19593 #, no-wrap msgid "@code{gdm} (default: @code{gdm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19233 +#: guix-git/doc/guix.texi:19595 msgid "The GDM package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19234 +#: guix-git/doc/guix.texi:19596 #, no-wrap msgid "@code{wayland?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19236 +#: guix-git/doc/guix.texi:19598 msgid "When true, enables Wayland in GDM, necessary to use Wayland sessions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19237 +#: guix-git/doc/guix.texi:19599 #, no-wrap msgid "@code{wayland-session} (default: @code{gdm-wayland-session-wrapper})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19240 +#: guix-git/doc/guix.texi:19602 msgid "The Wayland session wrapper to use, needed to setup the environment." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19243 +#: guix-git/doc/guix.texi:19605 #, no-wrap msgid "{Scheme Variable} slim-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19245 +#: guix-git/doc/guix.texi:19607 msgid "This is the type for the SLiM graphical login manager for X11." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19249 +#: guix-git/doc/guix.texi:19611 msgid "Like GDM, SLiM looks for session types described by @file{.desktop} files and allows users to choose a session from the log-in screen using @kbd{F1}. It also honors @file{~/.xsession} files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19256 +#: guix-git/doc/guix.texi:19618 msgid "Unlike GDM, SLiM does not spawn the user session on a different VT after logging in, which means that you can only start one graphical session. If you want to be able to run multiple graphical sessions at the same time you have to add multiple SLiM services to your system services. The following example shows how to replace the default GDM service with two SLiM services on tty7 and tty8." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19261 +#: guix-git/doc/guix.texi:19623 #, no-wrap msgid "" "(use-modules (gnu services)\n" @@ -34200,7 +34822,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19272 +#: guix-git/doc/guix.texi:19634 #, no-wrap msgid "" "(operating-system\n" @@ -34216,491 +34838,491 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19276 +#: guix-git/doc/guix.texi:19638 #, no-wrap msgid "{Data Type} slim-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19278 +#: guix-git/doc/guix.texi:19640 msgid "Data type representing the configuration of @code{slim-service-type}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19282 +#: guix-git/doc/guix.texi:19644 msgid "Whether to allow logins with empty passwords." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19283 +#: guix-git/doc/guix.texi:19645 #, no-wrap msgid "@code{gnupg?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19290 +#: guix-git/doc/guix.texi:19652 msgid "If enabled, @code{pam-gnupg} will attempt to automatically unlock the user's GPG keys with the login password via @code{gpg-agent}. The keygrips of all keys to be unlocked should be written to @file{~/.pam-gnupg}, and can be queried with @code{gpg -K --with-keygrip}. Presetting passphrases must be enabled by adding @code{allow-preset-passphrase} in @file{~/.gnupg/gpg-agent.conf}." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:19292 +#: guix-git/doc/guix.texi:19654 #, no-wrap msgid "@code{default-user} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19294 +#: guix-git/doc/guix.texi:19656 msgid "When @code{auto-login?} is false, SLiM presents a log-in screen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19297 +#: guix-git/doc/guix.texi:19659 msgid "When @code{auto-login?} is true, SLiM logs in directly as @code{default-user}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19298 +#: guix-git/doc/guix.texi:19660 #, no-wrap msgid "@code{theme} (default: @code{%default-slim-theme})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:19299 +#: guix-git/doc/guix.texi:19661 #, no-wrap msgid "@code{theme-name} (default: @code{%default-slim-theme-name})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19301 +#: guix-git/doc/guix.texi:19663 msgid "The graphical theme to use and its name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19302 +#: guix-git/doc/guix.texi:19664 #, no-wrap msgid "@code{auto-login-session} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19305 +#: guix-git/doc/guix.texi:19667 msgid "If true, this must be the name of the executable to start as the default session---e.g., @code{(file-append windowmaker \"/bin/windowmaker\")}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19309 +#: guix-git/doc/guix.texi:19671 msgid "If false, a session described by one of the available @file{.desktop} files in @code{/run/current-system/profile} and @code{~/.guix-profile} will be used." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:19314 +#: guix-git/doc/guix.texi:19676 msgid "You must install at least one window manager in the system profile or in your user profile. Failing to do that, if @code{auto-login-session} is false, you will be unable to log in." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19316 guix-git/doc/guix.texi:19400 +#: guix-git/doc/guix.texi:19678 guix-git/doc/guix.texi:19762 #, no-wrap msgid "@code{xorg-configuration} (default @code{(xorg-configuration)})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19319 +#: guix-git/doc/guix.texi:19681 #, no-wrap msgid "@code{display} (default @code{\":0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19321 +#: guix-git/doc/guix.texi:19683 msgid "The display on which to start the Xorg graphical server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19322 +#: guix-git/doc/guix.texi:19684 #, no-wrap msgid "@code{vt} (default @code{\"vt7\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19324 +#: guix-git/doc/guix.texi:19686 msgid "The VT on which to start the Xorg graphical server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19325 +#: guix-git/doc/guix.texi:19687 #, no-wrap msgid "@code{xauth} (default: @code{xauth})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19327 +#: guix-git/doc/guix.texi:19689 msgid "The XAuth package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19328 +#: guix-git/doc/guix.texi:19690 #, no-wrap msgid "@code{shepherd} (default: @code{shepherd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19331 +#: guix-git/doc/guix.texi:19693 msgid "The Shepherd package used when invoking @command{halt} and @command{reboot}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19332 +#: guix-git/doc/guix.texi:19694 #, no-wrap msgid "@code{sessreg} (default: @code{sessreg})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19334 +#: guix-git/doc/guix.texi:19696 msgid "The sessreg package used in order to register the session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19335 +#: guix-git/doc/guix.texi:19697 #, no-wrap msgid "@code{slim} (default: @code{slim})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19337 +#: guix-git/doc/guix.texi:19699 msgid "The SLiM package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19340 +#: guix-git/doc/guix.texi:19702 #, no-wrap msgid "{Scheme Variable} %default-theme" msgstr "" #. type: defvrx -#: guix-git/doc/guix.texi:19341 +#: guix-git/doc/guix.texi:19703 #, no-wrap msgid "{Scheme Variable} %default-theme-name" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19343 +#: guix-git/doc/guix.texi:19705 msgid "The default SLiM theme and its name." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19346 guix-git/doc/guix.texi:19453 +#: guix-git/doc/guix.texi:19708 guix-git/doc/guix.texi:19815 #, no-wrap msgid "{Data Type} sddm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19348 +#: guix-git/doc/guix.texi:19710 msgid "This is the data type representing the SDDM service configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19350 +#: guix-git/doc/guix.texi:19712 #, no-wrap msgid "@code{display-server} (default: \"x11\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19353 +#: guix-git/doc/guix.texi:19715 msgid "Select display server to use for the greeter. Valid values are @samp{\"x11\"} or @samp{\"wayland\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19354 +#: guix-git/doc/guix.texi:19716 #, no-wrap msgid "@code{numlock} (default: \"on\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19356 +#: guix-git/doc/guix.texi:19718 msgid "Valid values are @samp{\"on\"}, @samp{\"off\"} or @samp{\"none\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19357 +#: guix-git/doc/guix.texi:19719 #, no-wrap msgid "@code{halt-command} (default @code{#~(string-apppend #$shepherd \"/sbin/halt\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19359 +#: guix-git/doc/guix.texi:19721 msgid "Command to run when halting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19360 +#: guix-git/doc/guix.texi:19722 #, no-wrap msgid "@code{reboot-command} (default @code{#~(string-append #$shepherd \"/sbin/reboot\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19362 +#: guix-git/doc/guix.texi:19724 msgid "Command to run when rebooting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19363 +#: guix-git/doc/guix.texi:19725 #, no-wrap msgid "@code{theme} (default \"maldives\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19366 +#: guix-git/doc/guix.texi:19728 msgid "Theme to use. Default themes provided by SDDM are @samp{\"elarun\"}, @samp{\"maldives\"} or @samp{\"maya\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19367 +#: guix-git/doc/guix.texi:19729 #, no-wrap msgid "@code{themes-directory} (default \"/run/current-system/profile/share/sddm/themes\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19369 +#: guix-git/doc/guix.texi:19731 msgid "Directory to look for themes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19370 +#: guix-git/doc/guix.texi:19732 #, no-wrap msgid "@code{faces-directory} (default \"/run/current-system/profile/share/sddm/faces\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19372 +#: guix-git/doc/guix.texi:19734 msgid "Directory to look for faces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19373 +#: guix-git/doc/guix.texi:19735 #, no-wrap msgid "@code{default-path} (default \"/run/current-system/profile/bin\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19375 +#: guix-git/doc/guix.texi:19737 msgid "Default PATH to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19376 +#: guix-git/doc/guix.texi:19738 #, no-wrap msgid "@code{minimum-uid} (default: 1000)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19378 +#: guix-git/doc/guix.texi:19740 msgid "Minimum UID displayed in SDDM and allowed for log-in." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19379 +#: guix-git/doc/guix.texi:19741 #, no-wrap msgid "@code{maximum-uid} (default: 2000)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19381 +#: guix-git/doc/guix.texi:19743 msgid "Maximum UID to display in SDDM." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19382 +#: guix-git/doc/guix.texi:19744 #, no-wrap msgid "@code{remember-last-user?} (default #t)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19384 +#: guix-git/doc/guix.texi:19746 msgid "Remember last user." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19385 +#: guix-git/doc/guix.texi:19747 #, no-wrap msgid "@code{remember-last-session?} (default #t)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19387 +#: guix-git/doc/guix.texi:19749 msgid "Remember last session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19388 +#: guix-git/doc/guix.texi:19750 #, no-wrap msgid "@code{hide-users} (default \"\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19390 +#: guix-git/doc/guix.texi:19752 msgid "Usernames to hide from SDDM greeter." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19391 +#: guix-git/doc/guix.texi:19753 #, no-wrap msgid "@code{hide-shells} (default @code{#~(string-append #$shadow \"/sbin/nologin\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19393 +#: guix-git/doc/guix.texi:19755 msgid "Users with shells listed will be hidden from the SDDM greeter." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19394 +#: guix-git/doc/guix.texi:19756 #, no-wrap msgid "@code{session-command} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/wayland-session\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19396 +#: guix-git/doc/guix.texi:19758 msgid "Script to run before starting a wayland session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19397 +#: guix-git/doc/guix.texi:19759 #, no-wrap msgid "@code{sessions-directory} (default \"/run/current-system/profile/share/wayland-sessions\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19399 +#: guix-git/doc/guix.texi:19761 msgid "Directory to look for desktop files starting wayland sessions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19403 +#: guix-git/doc/guix.texi:19765 #, no-wrap msgid "@code{xauth-path} (default @code{#~(string-append #$xauth \"/bin/xauth\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19405 +#: guix-git/doc/guix.texi:19767 msgid "Path to xauth." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19406 +#: guix-git/doc/guix.texi:19768 #, no-wrap msgid "@code{xephyr-path} (default @code{#~(string-append #$xorg-server \"/bin/Xephyr\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19408 +#: guix-git/doc/guix.texi:19770 msgid "Path to Xephyr." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19409 +#: guix-git/doc/guix.texi:19771 #, no-wrap msgid "@code{xdisplay-start} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/Xsetup\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19411 +#: guix-git/doc/guix.texi:19773 msgid "Script to run after starting xorg-server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19412 +#: guix-git/doc/guix.texi:19774 #, no-wrap msgid "@code{xdisplay-stop} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/Xstop\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19414 +#: guix-git/doc/guix.texi:19776 msgid "Script to run before stopping xorg-server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19415 +#: guix-git/doc/guix.texi:19777 #, no-wrap msgid "@code{xsession-command} (default: @code{xinitrc})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19418 +#: guix-git/doc/guix.texi:19780 #, no-wrap msgid "@code{xsessions-directory} (default: \"/run/current-system/profile/share/xsessions\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19420 +#: guix-git/doc/guix.texi:19782 msgid "Directory to look for desktop files starting X sessions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19421 +#: guix-git/doc/guix.texi:19783 #, no-wrap msgid "@code{minimum-vt} (default: 7)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19423 +#: guix-git/doc/guix.texi:19785 msgid "Minimum VT to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19424 +#: guix-git/doc/guix.texi:19786 #, no-wrap msgid "@code{auto-login-user} (default \"\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19426 +#: guix-git/doc/guix.texi:19788 msgid "User to use for auto-login." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19427 +#: guix-git/doc/guix.texi:19789 #, no-wrap msgid "@code{auto-login-session} (default \"\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19429 +#: guix-git/doc/guix.texi:19791 msgid "Desktop file to use for auto-login." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19430 +#: guix-git/doc/guix.texi:19792 #, no-wrap msgid "@code{relogin?} (default #f)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19432 +#: guix-git/doc/guix.texi:19794 msgid "Relogin after logout." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19437 +#: guix-git/doc/guix.texi:19799 #, no-wrap msgid "X11 login" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19438 +#: guix-git/doc/guix.texi:19800 #, no-wrap msgid "{Scheme Variable} sddm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19442 +#: guix-git/doc/guix.texi:19804 msgid "This is the type of the service to run the @uref{https://github.com/sddm/sddm,SDDM display manager}. Its value must be a @code{sddm-configuration} record (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19444 +#: guix-git/doc/guix.texi:19806 msgid "Here's an example use:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19450 +#: guix-git/doc/guix.texi:19812 #, no-wrap msgid "" "(service sddm-service-type\n" @@ -34710,265 +35332,265 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19456 +#: guix-git/doc/guix.texi:19818 msgid "This data type represents the configuration of the SDDM login manager. The available fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19458 +#: guix-git/doc/guix.texi:19820 #, no-wrap msgid "@code{sddm} (default: @code{sddm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19460 +#: guix-git/doc/guix.texi:19822 msgid "The SDDM package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19461 +#: guix-git/doc/guix.texi:19823 #, no-wrap msgid "@code{display-server} (default: @code{\"x11\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19463 +#: guix-git/doc/guix.texi:19825 msgid "This must be either @code{\"x11\"} or @code{\"wayland\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19466 +#: guix-git/doc/guix.texi:19828 #, no-wrap msgid "@code{auto-login-user} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19469 +#: guix-git/doc/guix.texi:19831 msgid "If non-empty, this is the user account under which to log in automatically." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19470 +#: guix-git/doc/guix.texi:19832 #, no-wrap msgid "@code{auto-login-session} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19473 +#: guix-git/doc/guix.texi:19835 msgid "If non-empty, this is the @file{.desktop} file name to use as the auto-login session." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19476 +#: guix-git/doc/guix.texi:19838 #, no-wrap msgid "Xorg, configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19477 +#: guix-git/doc/guix.texi:19839 #, no-wrap msgid "{Data Type} xorg-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19482 +#: guix-git/doc/guix.texi:19844 msgid "This data type represents the configuration of the Xorg graphical display server. Note that there is no Xorg service; instead, the X server is started by a ``display manager'' such as GDM, SDDM, and SLiM@. Thus, the configuration of these display managers aggregates an @code{xorg-configuration} record." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19484 +#: guix-git/doc/guix.texi:19846 #, no-wrap msgid "@code{modules} (default: @code{%default-xorg-modules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19487 +#: guix-git/doc/guix.texi:19849 msgid "This is a list of @dfn{module packages} loaded by the Xorg server---e.g., @code{xf86-video-vesa}, @code{xf86-input-keyboard}, and so on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19488 +#: guix-git/doc/guix.texi:19850 #, no-wrap msgid "@code{fonts} (default: @code{%default-xorg-fonts})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19490 +#: guix-git/doc/guix.texi:19852 msgid "This is a list of font directories to add to the server's @dfn{font path}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19491 +#: guix-git/doc/guix.texi:19853 #, no-wrap msgid "@code{drivers} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19495 +#: guix-git/doc/guix.texi:19857 msgid "This must be either the empty list, in which case Xorg chooses a graphics driver automatically, or a list of driver names that will be tried in this order---e.g., @code{(\"modesetting\" \"vesa\")}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19496 +#: guix-git/doc/guix.texi:19858 #, no-wrap msgid "@code{resolutions} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19500 +#: guix-git/doc/guix.texi:19862 msgid "When @code{resolutions} is the empty list, Xorg chooses an appropriate screen resolution. Otherwise, it must be a list of resolutions---e.g., @code{((1024 768) (640 480))}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19501 +#: guix-git/doc/guix.texi:19863 #, no-wrap msgid "keyboard layout, for Xorg" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19502 +#: guix-git/doc/guix.texi:19864 #, no-wrap msgid "keymap, for Xorg" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19506 +#: guix-git/doc/guix.texi:19868 msgid "If this is @code{#f}, Xorg uses the default keyboard layout---usually US English (``qwerty'') for a 105-key PC keyboard." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19510 +#: guix-git/doc/guix.texi:19872 msgid "Otherwise this must be a @code{keyboard-layout} object specifying the keyboard layout in use when Xorg is running. @xref{Keyboard Layout}, for more information on how to specify the keyboard layout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19511 guix-git/doc/guix.texi:21223 -#: guix-git/doc/guix.texi:34046 +#: guix-git/doc/guix.texi:19873 guix-git/doc/guix.texi:21585 +#: guix-git/doc/guix.texi:34483 #, no-wrap msgid "@code{extra-config} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19514 guix-git/doc/guix.texi:34050 +#: guix-git/doc/guix.texi:19876 guix-git/doc/guix.texi:34487 msgid "This is a list of strings or objects appended to the configuration file. It is used to pass extra text to be added verbatim to the configuration file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19515 +#: guix-git/doc/guix.texi:19877 #, no-wrap msgid "@code{server} (default: @code{xorg-server})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19517 +#: guix-git/doc/guix.texi:19879 msgid "This is the package providing the Xorg server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19518 +#: guix-git/doc/guix.texi:19880 #, no-wrap msgid "@code{server-arguments} (default: @code{%default-xorg-server-arguments})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19521 +#: guix-git/doc/guix.texi:19883 msgid "This is the list of command-line arguments to pass to the X server. The default is @code{-nolisten tcp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19524 +#: guix-git/doc/guix.texi:19886 #, no-wrap msgid "{Scheme Procedure} set-xorg-configuration @var{config} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19528 +#: guix-git/doc/guix.texi:19890 msgid "[@var{login-manager-service-type}] Tell the log-in manager (of type @var{login-manager-service-type}) to use @var{config}, an @code{} record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19532 +#: guix-git/doc/guix.texi:19894 msgid "Since the Xorg configuration is embedded in the log-in manager's configuration---e.g., @code{gdm-configuration}---this procedure provides a shorthand to set the Xorg configuration." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19534 +#: guix-git/doc/guix.texi:19896 #, no-wrap msgid "{Scheme Procedure} xorg-start-command [@var{config}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19538 +#: guix-git/doc/guix.texi:19900 msgid "Return a @code{startx} script in which the modules, fonts, etc. specified in @var{config}, are available. The result should be used in place of @code{startx}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19540 +#: guix-git/doc/guix.texi:19902 msgid "Usually the X server is started by a login manager." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19543 +#: guix-git/doc/guix.texi:19905 #, no-wrap msgid "{Scheme Procedure} screen-locker-service @var{package} [@var{program}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19547 +#: guix-git/doc/guix.texi:19909 msgid "Add @var{package}, a package for a screen locker or screen saver whose command is @var{program}, to the set of setuid programs and add a PAM entry for it. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19550 +#: guix-git/doc/guix.texi:19912 #, no-wrap msgid "(screen-locker-service xlockmore \"xlock\")\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19553 +#: guix-git/doc/guix.texi:19915 msgid "makes the good ol' XlockMore usable." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19559 +#: guix-git/doc/guix.texi:19921 #, no-wrap msgid "printer support with CUPS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19563 +#: guix-git/doc/guix.texi:19925 msgid "The @code{(gnu services cups)} module provides a Guix service definition for the CUPS printing service. To add printer support to a Guix system, add a @code{cups-service} to the operating system definition:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19564 +#: guix-git/doc/guix.texi:19926 #, no-wrap msgid "{Scheme Variable} cups-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19568 +#: guix-git/doc/guix.texi:19930 msgid "The service type for the CUPS print server. Its value should be a valid CUPS configuration (see below). To use the default settings, simply write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19570 +#: guix-git/doc/guix.texi:19932 #, no-wrap msgid "(service cups-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19580 +#: guix-git/doc/guix.texi:19942 msgid "The CUPS configuration controls the basic things about your CUPS installation: what interfaces it listens on, what to do if a print job fails, how much logging to do, and so on. To actually add a printer, you have to visit the @url{http://localhost:631} URL, or use a tool such as GNOME's printer configuration services. By default, configuring a CUPS service will generate a self-signed certificate if needed, for secure connections to the print server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19586 +#: guix-git/doc/guix.texi:19948 msgid "Suppose you want to enable the Web interface of CUPS and also add support for Epson printers @i{via} the @code{epson-inkjet-printer-escpr} package and for HP printers @i{via} the @code{hplip-minimal} package. You can do that directly, like this (you need to use the @code{(gnu packages cups)} module):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19593 +#: guix-git/doc/guix.texi:19955 #, no-wrap msgid "" "(service cups-service-type\n" @@ -34979,1584 +35601,1582 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19598 +#: guix-git/doc/guix.texi:19960 msgid "Note: If you wish to use the Qt5 based GUI which comes with the hplip package then it is suggested that you install the @code{hplip} package, either in your OS configuration file or as your user." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19605 +#: guix-git/doc/guix.texi:19967 msgid "The available configuration parameters follow. Each parameter definition is preceded by its type; for example, @samp{string-list foo} indicates that the @code{foo} parameter should be specified as a list of strings. There is also a way to specify the configuration as a string, if you have an old @code{cupsd.conf} file that you want to port over from some other system; see the end for more details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19616 +#: guix-git/doc/guix.texi:19978 msgid "Available @code{cups-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19617 +#: guix-git/doc/guix.texi:19979 #, no-wrap msgid "{@code{cups-configuration} parameter} package cups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19619 guix-git/doc/guix.texi:20387 +#: guix-git/doc/guix.texi:19981 guix-git/doc/guix.texi:20749 msgid "The CUPS package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19621 +#: guix-git/doc/guix.texi:19983 #, no-wrap msgid "{@code{cups-configuration} parameter} package-list extensions (default: @code{(list brlaser cups-filters epson-inkjet-printer-escpr foomatic-filters hplip-minimal splix)})" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19623 +#: guix-git/doc/guix.texi:19985 msgid "Drivers and other extensions to the CUPS package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19625 +#: guix-git/doc/guix.texi:19987 #, no-wrap msgid "{@code{cups-configuration} parameter} files-configuration files-configuration" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19628 +#: guix-git/doc/guix.texi:19990 msgid "Configuration of where to write logs, what directories to use for print spools, and related privileged configuration parameters." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19630 +#: guix-git/doc/guix.texi:19992 msgid "Available @code{files-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19631 +#: guix-git/doc/guix.texi:19993 #, no-wrap msgid "{@code{files-configuration} parameter} log-location access-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19639 +#: guix-git/doc/guix.texi:20001 msgid "Defines the access log filename. Specifying a blank filename disables access log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-access_log}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19641 +#: guix-git/doc/guix.texi:20003 msgid "Defaults to @samp{\"/var/log/cups/access_log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19643 +#: guix-git/doc/guix.texi:20005 #, no-wrap msgid "{@code{files-configuration} parameter} file-name cache-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19645 +#: guix-git/doc/guix.texi:20007 msgid "Where CUPS should cache data." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19647 +#: guix-git/doc/guix.texi:20009 msgid "Defaults to @samp{\"/var/cache/cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19649 +#: guix-git/doc/guix.texi:20011 #, no-wrap msgid "{@code{files-configuration} parameter} string config-file-perm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19652 +#: guix-git/doc/guix.texi:20014 msgid "Specifies the permissions for all configuration files that the scheduler writes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19658 +#: guix-git/doc/guix.texi:20020 msgid "Note that the permissions for the printers.conf file are currently masked to only allow access from the scheduler user (typically root). This is done because printer device URIs sometimes contain sensitive authentication information that should not be generally known on the system. There is no way to disable this security feature." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19660 +#: guix-git/doc/guix.texi:20022 msgid "Defaults to @samp{\"0640\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19662 +#: guix-git/doc/guix.texi:20024 #, no-wrap msgid "{@code{files-configuration} parameter} log-location error-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19670 +#: guix-git/doc/guix.texi:20032 msgid "Defines the error log filename. Specifying a blank filename disables error log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-error_log}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19672 +#: guix-git/doc/guix.texi:20034 msgid "Defaults to @samp{\"/var/log/cups/error_log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19674 +#: guix-git/doc/guix.texi:20036 #, no-wrap msgid "{@code{files-configuration} parameter} string fatal-errors" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19677 +#: guix-git/doc/guix.texi:20039 msgid "Specifies which errors are fatal, causing the scheduler to exit. The kind strings are:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19681 +#: guix-git/doc/guix.texi:20043 msgid "No errors are fatal." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19684 +#: guix-git/doc/guix.texi:20046 msgid "All of the errors below are fatal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19685 +#: guix-git/doc/guix.texi:20047 #, no-wrap msgid "browse" msgstr "검색" #. type: table -#: guix-git/doc/guix.texi:19688 +#: guix-git/doc/guix.texi:20050 msgid "Browsing initialization errors are fatal, for example failed connections to the DNS-SD daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19689 +#: guix-git/doc/guix.texi:20051 #, no-wrap msgid "config" msgstr "설정파일" #. type: table -#: guix-git/doc/guix.texi:19691 +#: guix-git/doc/guix.texi:20053 msgid "Configuration file syntax errors are fatal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19692 +#: guix-git/doc/guix.texi:20054 #, no-wrap msgid "listen" msgstr "경청하다" #. type: table -#: guix-git/doc/guix.texi:19695 +#: guix-git/doc/guix.texi:20057 msgid "Listen or Port errors are fatal, except for IPv6 failures on the loopback or @code{any} addresses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19696 +#: guix-git/doc/guix.texi:20058 #, no-wrap msgid "log" msgstr "로그" #. type: table -#: guix-git/doc/guix.texi:19698 +#: guix-git/doc/guix.texi:20060 msgid "Log file creation or write errors are fatal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19699 +#: guix-git/doc/guix.texi:20061 #, no-wrap msgid "permissions" msgstr "권한" #. type: table -#: guix-git/doc/guix.texi:19702 +#: guix-git/doc/guix.texi:20064 msgid "Bad startup file permissions are fatal, for example shared TLS certificate and key files with world-read permissions." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19705 +#: guix-git/doc/guix.texi:20067 msgid "Defaults to @samp{\"all -browse\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19707 +#: guix-git/doc/guix.texi:20069 #, no-wrap msgid "{@code{files-configuration} parameter} boolean file-device?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19710 +#: guix-git/doc/guix.texi:20072 msgid "Specifies whether the file pseudo-device can be used for new printer queues. The URI @uref{file:///dev/null} is always allowed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19714 +#: guix-git/doc/guix.texi:20076 #, no-wrap msgid "{@code{files-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19717 +#: guix-git/doc/guix.texi:20079 msgid "Specifies the group name or ID that will be used when executing external programs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19719 guix-git/doc/guix.texi:19805 +#: guix-git/doc/guix.texi:20081 guix-git/doc/guix.texi:20167 msgid "Defaults to @samp{\"lp\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19721 +#: guix-git/doc/guix.texi:20083 #, no-wrap msgid "{@code{files-configuration} parameter} string log-file-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19723 +#: guix-git/doc/guix.texi:20085 msgid "Specifies the group name or ID that will be used for log files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19725 +#: guix-git/doc/guix.texi:20087 msgid "Defaults to @samp{\"lpadmin\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19727 +#: guix-git/doc/guix.texi:20089 #, no-wrap msgid "{@code{files-configuration} parameter} string log-file-perm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19729 +#: guix-git/doc/guix.texi:20091 msgid "Specifies the permissions for all log files that the scheduler writes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19731 +#: guix-git/doc/guix.texi:20093 msgid "Defaults to @samp{\"0644\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19733 +#: guix-git/doc/guix.texi:20095 #, no-wrap msgid "{@code{files-configuration} parameter} log-location page-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19741 +#: guix-git/doc/guix.texi:20103 msgid "Defines the page log filename. Specifying a blank filename disables page log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-page_log}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19743 +#: guix-git/doc/guix.texi:20105 msgid "Defaults to @samp{\"/var/log/cups/page_log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19745 +#: guix-git/doc/guix.texi:20107 #, no-wrap msgid "{@code{files-configuration} parameter} string remote-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19748 +#: guix-git/doc/guix.texi:20110 msgid "Specifies the username that is associated with unauthenticated accesses by clients claiming to be the root user. The default is @code{remroot}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19750 +#: guix-git/doc/guix.texi:20112 msgid "Defaults to @samp{\"remroot\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19752 +#: guix-git/doc/guix.texi:20114 #, no-wrap msgid "{@code{files-configuration} parameter} file-name request-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19755 +#: guix-git/doc/guix.texi:20117 msgid "Specifies the directory that contains print jobs and other HTTP request data." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19757 +#: guix-git/doc/guix.texi:20119 msgid "Defaults to @samp{\"/var/spool/cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19759 +#: guix-git/doc/guix.texi:20121 #, no-wrap msgid "{@code{files-configuration} parameter} sandboxing sandboxing" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19764 +#: guix-git/doc/guix.texi:20126 msgid "Specifies the level of security sandboxing that is applied to print filters, backends, and other child processes of the scheduler; either @code{relaxed} or @code{strict}. This directive is currently only used/supported on macOS." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19766 +#: guix-git/doc/guix.texi:20128 msgid "Defaults to @samp{strict}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19768 +#: guix-git/doc/guix.texi:20130 #, no-wrap msgid "{@code{files-configuration} parameter} file-name server-keychain" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19773 +#: guix-git/doc/guix.texi:20135 msgid "Specifies the location of TLS certificates and private keys. CUPS will look for public and private keys in this directory: @file{.crt} files for PEM-encoded certificates and corresponding @file{.key} files for PEM-encoded private keys." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19775 +#: guix-git/doc/guix.texi:20137 msgid "Defaults to @samp{\"/etc/cups/ssl\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19777 +#: guix-git/doc/guix.texi:20139 #, no-wrap msgid "{@code{files-configuration} parameter} file-name server-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19779 +#: guix-git/doc/guix.texi:20141 msgid "Specifies the directory containing the server configuration files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19781 +#: guix-git/doc/guix.texi:20143 msgid "Defaults to @samp{\"/etc/cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19783 +#: guix-git/doc/guix.texi:20145 #, no-wrap msgid "{@code{files-configuration} parameter} boolean sync-on-close?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19786 +#: guix-git/doc/guix.texi:20148 msgid "Specifies whether the scheduler calls fsync(2) after writing configuration or state files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19790 +#: guix-git/doc/guix.texi:20152 #, no-wrap msgid "{@code{files-configuration} parameter} space-separated-string-list system-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19792 +#: guix-git/doc/guix.texi:20154 msgid "Specifies the group(s) to use for @code{@@SYSTEM} group authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19794 +#: guix-git/doc/guix.texi:20156 #, no-wrap msgid "{@code{files-configuration} parameter} file-name temp-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19796 +#: guix-git/doc/guix.texi:20158 msgid "Specifies the directory where temporary files are stored." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19798 +#: guix-git/doc/guix.texi:20160 msgid "Defaults to @samp{\"/var/spool/cups/tmp\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19800 +#: guix-git/doc/guix.texi:20162 #, no-wrap msgid "{@code{files-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19803 +#: guix-git/doc/guix.texi:20165 msgid "Specifies the user name or ID that is used when running external programs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19807 +#: guix-git/doc/guix.texi:20169 #, no-wrap msgid "{@code{files-configuration} parameter} string set-env" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19809 +#: guix-git/doc/guix.texi:20171 msgid "Set the specified environment variable to be passed to child processes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19811 +#: guix-git/doc/guix.texi:20173 msgid "Defaults to @samp{\"variable value\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19814 +#: guix-git/doc/guix.texi:20176 #, no-wrap msgid "{@code{cups-configuration} parameter} access-log-level access-log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19821 +#: guix-git/doc/guix.texi:20183 msgid "Specifies the logging level for the AccessLog file. The @code{config} level logs when printers and classes are added, deleted, or modified and when configuration files are accessed or updated. The @code{actions} level logs when print jobs are submitted, held, released, modified, or canceled, and any of the conditions for @code{config}. The @code{all} level logs all requests." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19823 +#: guix-git/doc/guix.texi:20185 msgid "Defaults to @samp{actions}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19825 +#: guix-git/doc/guix.texi:20187 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean auto-purge-jobs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19828 +#: guix-git/doc/guix.texi:20190 msgid "Specifies whether to purge job history data automatically when it is no longer required for quotas." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19832 +#: guix-git/doc/guix.texi:20194 #, no-wrap msgid "{@code{cups-configuration} parameter} comma-separated-string-list browse-dns-sd-sub-types" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19836 +#: guix-git/doc/guix.texi:20198 msgid "Specifies a list of DNS-SD sub-types to advertise for each shared printer. For example, @samp{\"_cups\" \"_print\"} will tell network clients that both CUPS sharing and IPP Everywhere are supported." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19838 +#: guix-git/doc/guix.texi:20200 msgid "Defaults to @samp{\"_cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19840 +#: guix-git/doc/guix.texi:20202 #, no-wrap msgid "{@code{cups-configuration} parameter} browse-local-protocols browse-local-protocols" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19842 +#: guix-git/doc/guix.texi:20204 msgid "Specifies which protocols to use for local printer sharing." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19844 +#: guix-git/doc/guix.texi:20206 msgid "Defaults to @samp{dnssd}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19846 +#: guix-git/doc/guix.texi:20208 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean browse-web-if?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19848 +#: guix-git/doc/guix.texi:20210 msgid "Specifies whether the CUPS web interface is advertised." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19852 +#: guix-git/doc/guix.texi:20214 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean browsing?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19854 +#: guix-git/doc/guix.texi:20216 msgid "Specifies whether shared printers are advertised." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19858 +#: guix-git/doc/guix.texi:20220 #, no-wrap msgid "{@code{cups-configuration} parameter} string classification" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19863 +#: guix-git/doc/guix.texi:20225 msgid "Specifies the security classification of the server. Any valid banner name can be used, including @samp{\"classified\"}, @samp{\"confidential\"}, @samp{\"secret\"}, @samp{\"topsecret\"}, and @samp{\"unclassified\"}, or the banner can be omitted to disable secure printing functions." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19865 guix-git/doc/guix.texi:20196 -#: guix-git/doc/guix.texi:22180 guix-git/doc/guix.texi:22192 -#: guix-git/doc/guix.texi:22220 guix-git/doc/guix.texi:22977 -#: guix-git/doc/guix.texi:22991 guix-git/doc/guix.texi:22998 -#: guix-git/doc/guix.texi:23005 guix-git/doc/guix.texi:23035 -#: guix-git/doc/guix.texi:23133 guix-git/doc/guix.texi:25252 -#: guix-git/doc/guix.texi:25278 guix-git/doc/guix.texi:25314 -#: guix-git/doc/guix.texi:25360 guix-git/doc/guix.texi:25379 -#: guix-git/doc/guix.texi:25418 guix-git/doc/guix.texi:25477 -#: guix-git/doc/guix.texi:25487 guix-git/doc/guix.texi:30085 -#: guix-git/doc/guix.texi:30093 guix-git/doc/guix.texi:30101 -#: guix-git/doc/guix.texi:30109 guix-git/doc/guix.texi:30388 -#: guix-git/doc/guix.texi:31743 guix-git/doc/guix.texi:31751 -#: guix-git/doc/guix.texi:31759 guix-git/doc/guix.texi:31867 -#: guix-git/doc/guix.texi:31892 guix-git/doc/guix.texi:32023 -#: guix-git/doc/guix.texi:32031 guix-git/doc/guix.texi:32039 -#: guix-git/doc/guix.texi:32047 guix-git/doc/guix.texi:32055 -#: guix-git/doc/guix.texi:32063 guix-git/doc/guix.texi:32086 -#: guix-git/doc/guix.texi:32094 guix-git/doc/guix.texi:32146 -#: guix-git/doc/guix.texi:32162 guix-git/doc/guix.texi:32170 -#: guix-git/doc/guix.texi:32209 guix-git/doc/guix.texi:32232 -#: guix-git/doc/guix.texi:32254 guix-git/doc/guix.texi:32261 -#: guix-git/doc/guix.texi:32296 guix-git/doc/guix.texi:32304 -#: guix-git/doc/guix.texi:32328 guix-git/doc/guix.texi:32360 -#: guix-git/doc/guix.texi:32389 guix-git/doc/guix.texi:32396 -#: guix-git/doc/guix.texi:32403 guix-git/doc/guix.texi:32411 -#: guix-git/doc/guix.texi:32425 guix-git/doc/guix.texi:32434 -#: guix-git/doc/guix.texi:32444 guix-git/doc/guix.texi:32451 -#: guix-git/doc/guix.texi:32458 guix-git/doc/guix.texi:32465 -#: guix-git/doc/guix.texi:32536 guix-git/doc/guix.texi:32543 -#: guix-git/doc/guix.texi:32550 guix-git/doc/guix.texi:32559 -#: guix-git/doc/guix.texi:32575 guix-git/doc/guix.texi:32582 -#: guix-git/doc/guix.texi:32589 guix-git/doc/guix.texi:32596 -#: guix-git/doc/guix.texi:32604 guix-git/doc/guix.texi:32612 +#: guix-git/doc/guix.texi:20227 guix-git/doc/guix.texi:20558 +#: guix-git/doc/guix.texi:22542 guix-git/doc/guix.texi:22554 +#: guix-git/doc/guix.texi:22582 guix-git/doc/guix.texi:23339 +#: guix-git/doc/guix.texi:23353 guix-git/doc/guix.texi:23360 +#: guix-git/doc/guix.texi:23367 guix-git/doc/guix.texi:23397 +#: guix-git/doc/guix.texi:23495 guix-git/doc/guix.texi:25614 +#: guix-git/doc/guix.texi:25640 guix-git/doc/guix.texi:25676 +#: guix-git/doc/guix.texi:25722 guix-git/doc/guix.texi:25741 +#: guix-git/doc/guix.texi:25780 guix-git/doc/guix.texi:30450 +#: guix-git/doc/guix.texi:30458 guix-git/doc/guix.texi:30466 +#: guix-git/doc/guix.texi:30474 guix-git/doc/guix.texi:30753 +#: guix-git/doc/guix.texi:32108 guix-git/doc/guix.texi:32116 +#: guix-git/doc/guix.texi:32124 guix-git/doc/guix.texi:32232 +#: guix-git/doc/guix.texi:32257 guix-git/doc/guix.texi:32388 +#: guix-git/doc/guix.texi:32396 guix-git/doc/guix.texi:32404 +#: guix-git/doc/guix.texi:32412 guix-git/doc/guix.texi:32420 +#: guix-git/doc/guix.texi:32428 guix-git/doc/guix.texi:32451 +#: guix-git/doc/guix.texi:32459 guix-git/doc/guix.texi:32511 +#: guix-git/doc/guix.texi:32527 guix-git/doc/guix.texi:32535 +#: guix-git/doc/guix.texi:32574 guix-git/doc/guix.texi:32597 +#: guix-git/doc/guix.texi:32619 guix-git/doc/guix.texi:32626 +#: guix-git/doc/guix.texi:32661 guix-git/doc/guix.texi:32669 +#: guix-git/doc/guix.texi:32693 guix-git/doc/guix.texi:32725 +#: guix-git/doc/guix.texi:32754 guix-git/doc/guix.texi:32761 +#: guix-git/doc/guix.texi:32768 guix-git/doc/guix.texi:32776 +#: guix-git/doc/guix.texi:32790 guix-git/doc/guix.texi:32799 +#: guix-git/doc/guix.texi:32809 guix-git/doc/guix.texi:32816 +#: guix-git/doc/guix.texi:32823 guix-git/doc/guix.texi:32830 +#: guix-git/doc/guix.texi:32901 guix-git/doc/guix.texi:32908 +#: guix-git/doc/guix.texi:32915 guix-git/doc/guix.texi:32924 +#: guix-git/doc/guix.texi:32940 guix-git/doc/guix.texi:32947 +#: guix-git/doc/guix.texi:32954 guix-git/doc/guix.texi:32961 +#: guix-git/doc/guix.texi:32969 guix-git/doc/guix.texi:32977 msgid "Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19867 +#: guix-git/doc/guix.texi:20229 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean classify-override?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19870 +#: guix-git/doc/guix.texi:20232 msgid "Specifies whether users may override the classification (cover page) of individual print jobs using the @code{job-sheets} option." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19874 +#: guix-git/doc/guix.texi:20236 #, no-wrap msgid "{@code{cups-configuration} parameter} default-auth-type default-auth-type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19876 +#: guix-git/doc/guix.texi:20238 msgid "Specifies the default type of authentication to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19878 +#: guix-git/doc/guix.texi:20240 msgid "Defaults to @samp{Basic}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19880 +#: guix-git/doc/guix.texi:20242 #, no-wrap msgid "{@code{cups-configuration} parameter} default-encryption default-encryption" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19882 +#: guix-git/doc/guix.texi:20244 msgid "Specifies whether encryption will be used for authenticated requests." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19884 +#: guix-git/doc/guix.texi:20246 msgid "Defaults to @samp{Required}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19886 +#: guix-git/doc/guix.texi:20248 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-language" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19888 +#: guix-git/doc/guix.texi:20250 msgid "Specifies the default language to use for text and web content." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19890 +#: guix-git/doc/guix.texi:20252 msgid "Defaults to @samp{\"en\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19892 +#: guix-git/doc/guix.texi:20254 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-paper-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19897 +#: guix-git/doc/guix.texi:20259 msgid "Specifies the default paper size for new print queues. @samp{\"Auto\"} uses a locale-specific default, while @samp{\"None\"} specifies there is no default paper size. Specific size names are typically @samp{\"Letter\"} or @samp{\"A4\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19899 +#: guix-git/doc/guix.texi:20261 msgid "Defaults to @samp{\"Auto\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19901 +#: guix-git/doc/guix.texi:20263 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-policy" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19903 +#: guix-git/doc/guix.texi:20265 msgid "Specifies the default access policy to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19905 +#: guix-git/doc/guix.texi:20267 msgid "Defaults to @samp{\"default\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19907 +#: guix-git/doc/guix.texi:20269 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean default-shared?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19909 +#: guix-git/doc/guix.texi:20271 msgid "Specifies whether local printers are shared by default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19911 guix-git/doc/guix.texi:19991 -#: guix-git/doc/guix.texi:20281 guix-git/doc/guix.texi:23067 -#: guix-git/doc/guix.texi:23118 guix-git/doc/guix.texi:23125 -#: guix-git/doc/guix.texi:24407 guix-git/doc/guix.texi:24595 -#: guix-git/doc/guix.texi:24712 guix-git/doc/guix.texi:24748 -#: guix-git/doc/guix.texi:24799 guix-git/doc/guix.texi:24818 -#: guix-git/doc/guix.texi:24828 guix-git/doc/guix.texi:24838 -#: guix-git/doc/guix.texi:24897 guix-git/doc/guix.texi:24919 -#: guix-git/doc/guix.texi:24944 guix-git/doc/guix.texi:24970 -#: guix-git/doc/guix.texi:24988 guix-git/doc/guix.texi:28180 -#: guix-git/doc/guix.texi:28208 guix-git/doc/guix.texi:28344 -#: guix-git/doc/guix.texi:28351 guix-git/doc/guix.texi:28359 -#: guix-git/doc/guix.texi:28396 guix-git/doc/guix.texi:28410 -#: guix-git/doc/guix.texi:28499 guix-git/doc/guix.texi:28506 -#: guix-git/doc/guix.texi:28514 guix-git/doc/guix.texi:29293 -#: guix-git/doc/guix.texi:29433 guix-git/doc/guix.texi:29619 -#: guix-git/doc/guix.texi:29626 guix-git/doc/guix.texi:29648 -#: guix-git/doc/guix.texi:29687 guix-git/doc/guix.texi:29707 -#: guix-git/doc/guix.texi:29721 guix-git/doc/guix.texi:29934 -#: guix-git/doc/guix.texi:31845 guix-git/doc/guix.texi:31933 -#: guix-git/doc/guix.texi:31949 guix-git/doc/guix.texi:31999 +#: guix-git/doc/guix.texi:20273 guix-git/doc/guix.texi:20353 +#: guix-git/doc/guix.texi:20643 guix-git/doc/guix.texi:23429 +#: guix-git/doc/guix.texi:23480 guix-git/doc/guix.texi:23487 +#: guix-git/doc/guix.texi:24769 guix-git/doc/guix.texi:24957 +#: guix-git/doc/guix.texi:25074 guix-git/doc/guix.texi:25110 +#: guix-git/doc/guix.texi:25161 guix-git/doc/guix.texi:25180 +#: guix-git/doc/guix.texi:25190 guix-git/doc/guix.texi:25200 +#: guix-git/doc/guix.texi:25259 guix-git/doc/guix.texi:25281 +#: guix-git/doc/guix.texi:25306 guix-git/doc/guix.texi:25332 +#: guix-git/doc/guix.texi:25350 guix-git/doc/guix.texi:28517 +#: guix-git/doc/guix.texi:28545 guix-git/doc/guix.texi:28681 +#: guix-git/doc/guix.texi:28688 guix-git/doc/guix.texi:28696 +#: guix-git/doc/guix.texi:28733 guix-git/doc/guix.texi:28747 +#: guix-git/doc/guix.texi:28836 guix-git/doc/guix.texi:28843 +#: guix-git/doc/guix.texi:28851 guix-git/doc/guix.texi:29630 +#: guix-git/doc/guix.texi:29770 guix-git/doc/guix.texi:29984 +#: guix-git/doc/guix.texi:29991 guix-git/doc/guix.texi:30013 +#: guix-git/doc/guix.texi:30052 guix-git/doc/guix.texi:30072 +#: guix-git/doc/guix.texi:30086 guix-git/doc/guix.texi:30299 +#: guix-git/doc/guix.texi:32210 guix-git/doc/guix.texi:32298 +#: guix-git/doc/guix.texi:32314 guix-git/doc/guix.texi:32364 msgid "Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19913 +#: guix-git/doc/guix.texi:20275 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer dirty-clean-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19917 +#: guix-git/doc/guix.texi:20279 msgid "Specifies the delay for updating of configuration and state files, in seconds. A value of 0 causes the update to happen as soon as possible, typically within a few milliseconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19919 guix-git/doc/guix.texi:19967 -#: guix-git/doc/guix.texi:19976 guix-git/doc/guix.texi:20288 -#: guix-git/doc/guix.texi:24757 guix-git/doc/guix.texi:24790 +#: guix-git/doc/guix.texi:20281 guix-git/doc/guix.texi:20329 +#: guix-git/doc/guix.texi:20338 guix-git/doc/guix.texi:20650 +#: guix-git/doc/guix.texi:25119 guix-git/doc/guix.texi:25152 msgid "Defaults to @samp{30}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19921 +#: guix-git/doc/guix.texi:20283 #, no-wrap msgid "{@code{cups-configuration} parameter} error-policy error-policy" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19927 +#: guix-git/doc/guix.texi:20289 msgid "Specifies what to do when an error occurs. Possible values are @code{abort-job}, which will discard the failed print job; @code{retry-job}, which will retry the job at a later time; @code{retry-current-job}, which retries the failed job immediately; and @code{stop-printer}, which stops the printer." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19929 +#: guix-git/doc/guix.texi:20291 msgid "Defaults to @samp{stop-printer}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19931 +#: guix-git/doc/guix.texi:20293 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer filter-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19939 +#: guix-git/doc/guix.texi:20301 msgid "Specifies the maximum cost of filters that are run concurrently, which can be used to minimize disk, memory, and CPU resource problems. A limit of 0 disables filter limiting. An average print to a non-PostScript printer needs a filter limit of about 200. A PostScript printer needs about half that (100). Setting the limit below these thresholds will effectively limit the scheduler to printing a single job at any time." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19941 guix-git/doc/guix.texi:19949 -#: guix-git/doc/guix.texi:19998 guix-git/doc/guix.texi:20114 -#: guix-git/doc/guix.texi:20128 guix-git/doc/guix.texi:20135 -#: guix-git/doc/guix.texi:21622 guix-git/doc/guix.texi:21638 -#: guix-git/doc/guix.texi:22295 guix-git/doc/guix.texi:22307 -#: guix-git/doc/guix.texi:23086 guix-git/doc/guix.texi:23095 -#: guix-git/doc/guix.texi:23103 guix-git/doc/guix.texi:23111 -#: guix-git/doc/guix.texi:29309 guix-git/doc/guix.texi:29634 -#: guix-git/doc/guix.texi:31838 guix-git/doc/guix.texi:32138 -#: guix-git/doc/guix.texi:32312 +#: guix-git/doc/guix.texi:20303 guix-git/doc/guix.texi:20311 +#: guix-git/doc/guix.texi:20360 guix-git/doc/guix.texi:20476 +#: guix-git/doc/guix.texi:20490 guix-git/doc/guix.texi:20497 +#: guix-git/doc/guix.texi:21984 guix-git/doc/guix.texi:22000 +#: guix-git/doc/guix.texi:22657 guix-git/doc/guix.texi:22669 +#: guix-git/doc/guix.texi:23448 guix-git/doc/guix.texi:23457 +#: guix-git/doc/guix.texi:23465 guix-git/doc/guix.texi:23473 +#: guix-git/doc/guix.texi:29646 guix-git/doc/guix.texi:29999 +#: guix-git/doc/guix.texi:32203 guix-git/doc/guix.texi:32503 +#: guix-git/doc/guix.texi:32677 msgid "Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19943 +#: guix-git/doc/guix.texi:20305 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer filter-nice" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19947 +#: guix-git/doc/guix.texi:20309 msgid "Specifies the scheduling priority of filters that are run to print a job. The nice value ranges from 0, the highest priority, to 19, the lowest priority." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19951 +#: guix-git/doc/guix.texi:20313 #, no-wrap msgid "{@code{cups-configuration} parameter} host-name-lookups host-name-lookups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19958 +#: guix-git/doc/guix.texi:20320 msgid "Specifies whether to do reverse lookups on connecting clients. The @code{double} setting causes @code{cupsd} to verify that the hostname resolved from the address matches one of the addresses returned for that hostname. Double lookups also prevent clients with unregistered addresses from connecting to your server. Only set this option to @code{#t} or @code{double} if absolutely required." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19962 +#: guix-git/doc/guix.texi:20324 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-kill-delay" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19965 +#: guix-git/doc/guix.texi:20327 msgid "Specifies the number of seconds to wait before killing the filters and backend associated with a canceled or held job." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19969 +#: guix-git/doc/guix.texi:20331 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-retry-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19974 +#: guix-git/doc/guix.texi:20336 msgid "Specifies the interval between retries of jobs in seconds. This is typically used for fax queues but can also be used with normal print queues whose error policy is @code{retry-job} or @code{retry-current-job}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19978 +#: guix-git/doc/guix.texi:20340 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-retry-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19983 +#: guix-git/doc/guix.texi:20345 msgid "Specifies the number of retries that are done for jobs. This is typically used for fax queues but can also be used with normal print queues whose error policy is @code{retry-job} or @code{retry-current-job}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19985 guix-git/doc/guix.texi:24721 -#: guix-git/doc/guix.texi:30186 guix-git/doc/guix.texi:30206 -#: guix-git/doc/guix.texi:30222 guix-git/doc/guix.texi:30236 -#: guix-git/doc/guix.texi:30243 guix-git/doc/guix.texi:30250 -#: guix-git/doc/guix.texi:30257 guix-git/doc/guix.texi:30417 -#: guix-git/doc/guix.texi:30433 guix-git/doc/guix.texi:30440 -#: guix-git/doc/guix.texi:30447 guix-git/doc/guix.texi:30458 -#: guix-git/doc/guix.texi:31790 guix-git/doc/guix.texi:31798 -#: guix-git/doc/guix.texi:31806 guix-git/doc/guix.texi:31830 +#: guix-git/doc/guix.texi:20347 guix-git/doc/guix.texi:25083 +#: guix-git/doc/guix.texi:30551 guix-git/doc/guix.texi:30571 +#: guix-git/doc/guix.texi:30587 guix-git/doc/guix.texi:30601 +#: guix-git/doc/guix.texi:30608 guix-git/doc/guix.texi:30615 +#: guix-git/doc/guix.texi:30622 guix-git/doc/guix.texi:30782 +#: guix-git/doc/guix.texi:30798 guix-git/doc/guix.texi:30805 +#: guix-git/doc/guix.texi:30812 guix-git/doc/guix.texi:30823 +#: guix-git/doc/guix.texi:32155 guix-git/doc/guix.texi:32163 +#: guix-git/doc/guix.texi:32171 guix-git/doc/guix.texi:32195 msgid "Defaults to @samp{5}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19987 +#: guix-git/doc/guix.texi:20349 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean keep-alive?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19989 +#: guix-git/doc/guix.texi:20351 msgid "Specifies whether to support HTTP keep-alive connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19993 +#: guix-git/doc/guix.texi:20355 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer limit-request-body" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19996 +#: guix-git/doc/guix.texi:20358 msgid "Specifies the maximum size of print files, IPP requests, and HTML form data. A limit of 0 disables the limit check." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20000 +#: guix-git/doc/guix.texi:20362 #, no-wrap msgid "{@code{cups-configuration} parameter} multiline-string-list listen" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20007 +#: guix-git/doc/guix.texi:20369 msgid "Listens on the specified interfaces for connections. Valid values are of the form @var{address}:@var{port}, where @var{address} is either an IPv6 address enclosed in brackets, an IPv4 address, or @code{*} to indicate all addresses. Values can also be file names of local UNIX domain sockets. The Listen directive is similar to the Port directive but allows you to restrict access to specific interfaces or networks." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20009 +#: guix-git/doc/guix.texi:20371 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer listen-back-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20016 +#: guix-git/doc/guix.texi:20378 msgid "Specifies the number of pending connections that will be allowed. This normally only affects very busy servers that have reached the MaxClients limit, but can also be triggered by large numbers of simultaneous connections. When the limit is reached, the operating system will refuse additional connections until the scheduler can accept the pending ones." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20018 +#: guix-git/doc/guix.texi:20380 msgid "Defaults to @samp{128}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20020 +#: guix-git/doc/guix.texi:20382 #, no-wrap msgid "{@code{cups-configuration} parameter} location-access-control-list location-access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20022 +#: guix-git/doc/guix.texi:20384 msgid "Specifies a set of additional access controls." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20024 +#: guix-git/doc/guix.texi:20386 msgid "Available @code{location-access-controls} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20025 +#: guix-git/doc/guix.texi:20387 #, no-wrap msgid "{@code{location-access-controls} parameter} file-name path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20027 +#: guix-git/doc/guix.texi:20389 msgid "Specifies the URI path to which the access control applies." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20029 +#: guix-git/doc/guix.texi:20391 #, no-wrap msgid "{@code{location-access-controls} parameter} access-control-list access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20032 +#: guix-git/doc/guix.texi:20394 msgid "Access controls for all access to this path, in the same format as the @code{access-controls} of @code{operation-access-control}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20034 guix-git/doc/guix.texi:20040 -#: guix-git/doc/guix.texi:20054 guix-git/doc/guix.texi:20061 -#: guix-git/doc/guix.texi:20203 guix-git/doc/guix.texi:20262 -#: guix-git/doc/guix.texi:20340 guix-git/doc/guix.texi:20354 -#: guix-git/doc/guix.texi:21502 guix-git/doc/guix.texi:21511 -#: guix-git/doc/guix.texi:22781 guix-git/doc/guix.texi:22984 -#: guix-git/doc/guix.texi:23012 guix-git/doc/guix.texi:23042 -#: guix-git/doc/guix.texi:23157 guix-git/doc/guix.texi:23170 -#: guix-git/doc/guix.texi:23177 guix-git/doc/guix.texi:24927 -#: guix-git/doc/guix.texi:25322 guix-git/doc/guix.texi:25426 -#: guix-git/doc/guix.texi:25853 guix-git/doc/guix.texi:25861 -#: guix-git/doc/guix.texi:26106 guix-git/doc/guix.texi:28239 -#: guix-git/doc/guix.texi:28417 guix-git/doc/guix.texi:28616 -#: guix-git/doc/guix.texi:30077 guix-git/doc/guix.texi:30137 -#: guix-git/doc/guix.texi:30145 guix-git/doc/guix.texi:31853 -#: guix-git/doc/guix.texi:31860 guix-git/doc/guix.texi:32202 -#: guix-git/doc/guix.texi:32280 guix-git/doc/guix.texi:32374 -#: guix-git/doc/guix.texi:32382 guix-git/doc/guix.texi:32418 -#: guix-git/doc/guix.texi:32568 guix-git/doc/guix.texi:32619 -#: guix-git/doc/guix.texi:32628 +#: guix-git/doc/guix.texi:20396 guix-git/doc/guix.texi:20402 +#: guix-git/doc/guix.texi:20416 guix-git/doc/guix.texi:20423 +#: guix-git/doc/guix.texi:20565 guix-git/doc/guix.texi:20624 +#: guix-git/doc/guix.texi:20702 guix-git/doc/guix.texi:20716 +#: guix-git/doc/guix.texi:21864 guix-git/doc/guix.texi:21873 +#: guix-git/doc/guix.texi:23143 guix-git/doc/guix.texi:23346 +#: guix-git/doc/guix.texi:23374 guix-git/doc/guix.texi:23404 +#: guix-git/doc/guix.texi:23519 guix-git/doc/guix.texi:23532 +#: guix-git/doc/guix.texi:23539 guix-git/doc/guix.texi:25289 +#: guix-git/doc/guix.texi:25684 guix-git/doc/guix.texi:25788 +#: guix-git/doc/guix.texi:26190 guix-git/doc/guix.texi:26198 +#: guix-git/doc/guix.texi:26443 guix-git/doc/guix.texi:28576 +#: guix-git/doc/guix.texi:28754 guix-git/doc/guix.texi:28953 +#: guix-git/doc/guix.texi:30442 guix-git/doc/guix.texi:30502 +#: guix-git/doc/guix.texi:30510 guix-git/doc/guix.texi:32218 +#: guix-git/doc/guix.texi:32225 guix-git/doc/guix.texi:32567 +#: guix-git/doc/guix.texi:32645 guix-git/doc/guix.texi:32739 +#: guix-git/doc/guix.texi:32747 guix-git/doc/guix.texi:32783 +#: guix-git/doc/guix.texi:32933 guix-git/doc/guix.texi:32984 +#: guix-git/doc/guix.texi:32993 msgid "Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20036 +#: guix-git/doc/guix.texi:20398 #, no-wrap msgid "{@code{location-access-controls} parameter} method-access-control-list method-access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20038 +#: guix-git/doc/guix.texi:20400 msgid "Access controls for method-specific access to this path." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20042 +#: guix-git/doc/guix.texi:20404 msgid "Available @code{method-access-controls} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20043 +#: guix-git/doc/guix.texi:20405 #, no-wrap msgid "{@code{method-access-controls} parameter} boolean reverse?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20046 +#: guix-git/doc/guix.texi:20408 msgid "If @code{#t}, apply access controls to all methods except the listed methods. Otherwise apply to only the listed methods." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20050 +#: guix-git/doc/guix.texi:20412 #, no-wrap msgid "{@code{method-access-controls} parameter} method-list methods" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20052 +#: guix-git/doc/guix.texi:20414 msgid "Methods to which this access control applies." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20056 +#: guix-git/doc/guix.texi:20418 #, no-wrap msgid "{@code{method-access-controls} parameter} access-control-list access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20059 +#: guix-git/doc/guix.texi:20421 msgid "Access control directives, as a list of strings. Each string should be one directive, such as @samp{\"Order allow,deny\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20065 +#: guix-git/doc/guix.texi:20427 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer log-debug-history" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20069 +#: guix-git/doc/guix.texi:20431 msgid "Specifies the number of debugging messages that are retained for logging if an error occurs in a print job. Debug messages are logged regardless of the LogLevel setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20071 guix-git/doc/guix.texi:20092 -#: guix-git/doc/guix.texi:20099 guix-git/doc/guix.texi:22541 -#: guix-git/doc/guix.texi:24459 guix-git/doc/guix.texi:24474 -#: guix-git/doc/guix.texi:28601 +#: guix-git/doc/guix.texi:20433 guix-git/doc/guix.texi:20454 +#: guix-git/doc/guix.texi:20461 guix-git/doc/guix.texi:22903 +#: guix-git/doc/guix.texi:24821 guix-git/doc/guix.texi:24836 +#: guix-git/doc/guix.texi:28938 msgid "Defaults to @samp{100}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20073 +#: guix-git/doc/guix.texi:20435 #, no-wrap msgid "{@code{cups-configuration} parameter} log-level log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20076 +#: guix-git/doc/guix.texi:20438 msgid "Specifies the level of logging for the ErrorLog file. The value @code{none} stops all logging while @code{debug2} logs everything." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20078 guix-git/doc/guix.texi:24936 +#: guix-git/doc/guix.texi:20440 guix-git/doc/guix.texi:25298 msgid "Defaults to @samp{info}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20080 +#: guix-git/doc/guix.texi:20442 #, no-wrap msgid "{@code{cups-configuration} parameter} log-time-format log-time-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20083 +#: guix-git/doc/guix.texi:20445 msgid "Specifies the format of the date and time in the log files. The value @code{standard} logs whole seconds while @code{usecs} logs microseconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20085 +#: guix-git/doc/guix.texi:20447 msgid "Defaults to @samp{standard}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20087 +#: guix-git/doc/guix.texi:20449 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20090 +#: guix-git/doc/guix.texi:20452 msgid "Specifies the maximum number of simultaneous clients that are allowed by the scheduler." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20094 +#: guix-git/doc/guix.texi:20456 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-clients-per-host" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20097 +#: guix-git/doc/guix.texi:20459 msgid "Specifies the maximum number of simultaneous clients that are allowed from a single address." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20101 +#: guix-git/doc/guix.texi:20463 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-copies" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20104 +#: guix-git/doc/guix.texi:20466 msgid "Specifies the maximum number of copies that a user can print of each job." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20106 +#: guix-git/doc/guix.texi:20468 msgid "Defaults to @samp{9999}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20108 +#: guix-git/doc/guix.texi:20470 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-hold-time" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20112 +#: guix-git/doc/guix.texi:20474 msgid "Specifies the maximum time a job may remain in the @code{indefinite} hold state before it is canceled. A value of 0 disables cancellation of held jobs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20116 +#: guix-git/doc/guix.texi:20478 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20119 +#: guix-git/doc/guix.texi:20481 msgid "Specifies the maximum number of simultaneous jobs that are allowed. Set to 0 to allow an unlimited number of jobs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20121 +#: guix-git/doc/guix.texi:20483 msgid "Defaults to @samp{500}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20123 +#: guix-git/doc/guix.texi:20485 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs-per-printer" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20126 +#: guix-git/doc/guix.texi:20488 msgid "Specifies the maximum number of simultaneous jobs that are allowed per printer. A value of 0 allows up to MaxJobs jobs per printer." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20130 +#: guix-git/doc/guix.texi:20492 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs-per-user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20133 +#: guix-git/doc/guix.texi:20495 msgid "Specifies the maximum number of simultaneous jobs that are allowed per user. A value of 0 allows up to MaxJobs jobs per user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20137 +#: guix-git/doc/guix.texi:20499 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-job-time" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20140 +#: guix-git/doc/guix.texi:20502 msgid "Specifies the maximum time a job may take to print before it is canceled, in seconds. Set to 0 to disable cancellation of ``stuck'' jobs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20142 +#: guix-git/doc/guix.texi:20504 msgid "Defaults to @samp{10800}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20144 +#: guix-git/doc/guix.texi:20506 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-log-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20147 +#: guix-git/doc/guix.texi:20509 msgid "Specifies the maximum size of the log files before they are rotated, in bytes. The value 0 disables log rotation." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20149 +#: guix-git/doc/guix.texi:20511 msgid "Defaults to @samp{1048576}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20151 +#: guix-git/doc/guix.texi:20513 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer multiple-operation-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20154 +#: guix-git/doc/guix.texi:20516 msgid "Specifies the maximum amount of time to allow between files in a multiple file print job, in seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20156 guix-git/doc/guix.texi:20367 +#: guix-git/doc/guix.texi:20518 guix-git/doc/guix.texi:20729 msgid "Defaults to @samp{900}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20158 +#: guix-git/doc/guix.texi:20520 #, no-wrap msgid "{@code{cups-configuration} parameter} string page-log-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20163 +#: guix-git/doc/guix.texi:20525 msgid "Specifies the format of PageLog lines. Sequences beginning with percent (@samp{%}) characters are replaced with the corresponding information, while all other characters are copied literally. The following percent sequences are recognized:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20165 +#: guix-git/doc/guix.texi:20527 #, no-wrap msgid "%%" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20167 +#: guix-git/doc/guix.texi:20529 msgid "insert a single percent character" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20168 +#: guix-git/doc/guix.texi:20530 #, no-wrap msgid "%@{name@}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20170 +#: guix-git/doc/guix.texi:20532 msgid "insert the value of the specified IPP attribute" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20171 +#: guix-git/doc/guix.texi:20533 #, no-wrap msgid "%C" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20173 +#: guix-git/doc/guix.texi:20535 msgid "insert the number of copies for the current page" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20174 +#: guix-git/doc/guix.texi:20536 #, no-wrap msgid "%P" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20176 +#: guix-git/doc/guix.texi:20538 msgid "insert the current page number" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20177 +#: guix-git/doc/guix.texi:20539 #, no-wrap msgid "%T" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20179 +#: guix-git/doc/guix.texi:20541 msgid "insert the current date and time in common log format" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20180 +#: guix-git/doc/guix.texi:20542 #, no-wrap msgid "%j" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20182 +#: guix-git/doc/guix.texi:20544 msgid "insert the job ID" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20183 guix-git/doc/guix.texi:22140 +#: guix-git/doc/guix.texi:20545 guix-git/doc/guix.texi:22502 #, no-wrap msgid "%p" msgstr "%p" #. type: table -#: guix-git/doc/guix.texi:20185 +#: guix-git/doc/guix.texi:20547 msgid "insert the printer name" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20186 guix-git/doc/guix.texi:22163 +#: guix-git/doc/guix.texi:20548 guix-git/doc/guix.texi:22525 #, no-wrap msgid "%u" msgstr "%u" #. type: table -#: guix-git/doc/guix.texi:20188 +#: guix-git/doc/guix.texi:20550 msgid "insert the username" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20194 +#: guix-git/doc/guix.texi:20556 msgid "A value of the empty string disables page logging. The string @code{%p %u %j %T %P %C %@{job-billing@} %@{job-originating-host-name@} %@{job-name@} %@{media@} %@{sides@}} creates a page log with the standard items." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20198 +#: guix-git/doc/guix.texi:20560 #, no-wrap msgid "{@code{cups-configuration} parameter} environment-variables environment-variables" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20201 +#: guix-git/doc/guix.texi:20563 msgid "Passes the specified environment variable(s) to child processes; a list of strings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20205 +#: guix-git/doc/guix.texi:20567 #, no-wrap msgid "{@code{cups-configuration} parameter} policy-configuration-list policies" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20207 +#: guix-git/doc/guix.texi:20569 msgid "Specifies named access control policies." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20209 +#: guix-git/doc/guix.texi:20571 msgid "Available @code{policy-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20210 +#: guix-git/doc/guix.texi:20572 #, no-wrap msgid "{@code{policy-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20212 +#: guix-git/doc/guix.texi:20574 msgid "Name of the policy." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20214 +#: guix-git/doc/guix.texi:20576 #, no-wrap msgid "{@code{policy-configuration} parameter} string job-private-access" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20224 +#: guix-git/doc/guix.texi:20586 msgid "Specifies an access list for a job's private values. @code{@@ACL} maps to the printer's requesting-user-name-allowed or requesting-user-name-denied values. @code{@@OWNER} maps to the job's owner. @code{@@SYSTEM} maps to the groups listed for the @code{system-group} field of the @code{files-configuration}, which is reified into the @code{cups-files.conf(5)} file. Other possible elements of the access list include specific user names, and @code{@@@var{group}} to indicate members of a specific group. The access list may also be simply @code{all} or @code{default}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20226 guix-git/doc/guix.texi:20248 +#: guix-git/doc/guix.texi:20588 guix-git/doc/guix.texi:20610 msgid "Defaults to @samp{\"@@OWNER @@SYSTEM\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20228 +#: guix-git/doc/guix.texi:20590 #, no-wrap msgid "{@code{policy-configuration} parameter} string job-private-values" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20231 guix-git/doc/guix.texi:20253 +#: guix-git/doc/guix.texi:20593 guix-git/doc/guix.texi:20615 msgid "Specifies the list of job values to make private, or @code{all}, @code{default}, or @code{none}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20234 +#: guix-git/doc/guix.texi:20596 msgid "Defaults to @samp{\"job-name job-originating-host-name job-originating-user-name phone\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20236 +#: guix-git/doc/guix.texi:20598 #, no-wrap msgid "{@code{policy-configuration} parameter} string subscription-private-access" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20246 +#: guix-git/doc/guix.texi:20608 msgid "Specifies an access list for a subscription's private values. @code{@@ACL} maps to the printer's requesting-user-name-allowed or requesting-user-name-denied values. @code{@@OWNER} maps to the job's owner. @code{@@SYSTEM} maps to the groups listed for the @code{system-group} field of the @code{files-configuration}, which is reified into the @code{cups-files.conf(5)} file. Other possible elements of the access list include specific user names, and @code{@@@var{group}} to indicate members of a specific group. The access list may also be simply @code{all} or @code{default}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20250 +#: guix-git/doc/guix.texi:20612 #, no-wrap msgid "{@code{policy-configuration} parameter} string subscription-private-values" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20256 +#: guix-git/doc/guix.texi:20618 msgid "Defaults to @samp{\"notify-events notify-pull-method notify-recipient-uri notify-subscriber-user-name notify-user-data\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20258 +#: guix-git/doc/guix.texi:20620 #, no-wrap msgid "{@code{policy-configuration} parameter} operation-access-control-list access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20260 +#: guix-git/doc/guix.texi:20622 msgid "Access control by IPP operation." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20265 +#: guix-git/doc/guix.texi:20627 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean-or-non-negative-integer preserve-job-files" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20270 +#: guix-git/doc/guix.texi:20632 msgid "Specifies whether job files (documents) are preserved after a job is printed. If a numeric value is specified, job files are preserved for the indicated number of seconds after printing. Otherwise a boolean value applies indefinitely." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20272 +#: guix-git/doc/guix.texi:20634 msgid "Defaults to @samp{86400}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20274 +#: guix-git/doc/guix.texi:20636 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean-or-non-negative-integer preserve-job-history" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20279 +#: guix-git/doc/guix.texi:20641 msgid "Specifies whether the job history is preserved after a job is printed. If a numeric value is specified, the job history is preserved for the indicated number of seconds after printing. If @code{#t}, the job history is preserved until the MaxJobs limit is reached." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20283 +#: guix-git/doc/guix.texi:20645 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer reload-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20286 +#: guix-git/doc/guix.texi:20648 msgid "Specifies the amount of time to wait for job completion before restarting the scheduler." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20290 +#: guix-git/doc/guix.texi:20652 #, no-wrap msgid "{@code{cups-configuration} parameter} string rip-cache" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20293 +#: guix-git/doc/guix.texi:20655 msgid "Specifies the maximum amount of memory to use when converting documents into bitmaps for a printer." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20295 +#: guix-git/doc/guix.texi:20657 msgid "Defaults to @samp{\"128m\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20297 +#: guix-git/doc/guix.texi:20659 #, no-wrap msgid "{@code{cups-configuration} parameter} string server-admin" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20299 +#: guix-git/doc/guix.texi:20661 msgid "Specifies the email address of the server administrator." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20301 +#: guix-git/doc/guix.texi:20663 msgid "Defaults to @samp{\"root@@localhost.localdomain\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20303 +#: guix-git/doc/guix.texi:20665 #, no-wrap msgid "{@code{cups-configuration} parameter} host-name-list-or-* server-alias" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20311 +#: guix-git/doc/guix.texi:20673 msgid "The ServerAlias directive is used for HTTP Host header validation when clients connect to the scheduler from external interfaces. Using the special name @code{*} can expose your system to known browser-based DNS rebinding attacks, even when accessing sites through a firewall. If the auto-discovery of alternate names does not work, we recommend listing each alternate name with a ServerAlias directive instead of using @code{*}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20313 +#: guix-git/doc/guix.texi:20675 msgid "Defaults to @samp{*}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20315 +#: guix-git/doc/guix.texi:20677 #, no-wrap msgid "{@code{cups-configuration} parameter} string server-name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20317 +#: guix-git/doc/guix.texi:20679 msgid "Specifies the fully-qualified host name of the server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20319 guix-git/doc/guix.texi:25449 -#: guix-git/doc/guix.texi:25494 +#: guix-git/doc/guix.texi:20681 msgid "Defaults to @samp{\"localhost\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20321 +#: guix-git/doc/guix.texi:20683 #, no-wrap msgid "{@code{cups-configuration} parameter} server-tokens server-tokens" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20329 +#: guix-git/doc/guix.texi:20691 msgid "Specifies what information is included in the Server header of HTTP responses. @code{None} disables the Server header. @code{ProductOnly} reports @code{CUPS}. @code{Major} reports @code{CUPS 2}. @code{Minor} reports @code{CUPS 2.0}. @code{Minimal} reports @code{CUPS 2.0.0}. @code{OS} reports @code{CUPS 2.0.0 (@var{uname})} where @var{uname} is the output of the @code{uname} command. @code{Full} reports @code{CUPS 2.0.0 (@var{uname}) IPP/2.0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20331 +#: guix-git/doc/guix.texi:20693 msgid "Defaults to @samp{Minimal}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20333 +#: guix-git/doc/guix.texi:20695 #, no-wrap msgid "{@code{cups-configuration} parameter} multiline-string-list ssl-listen" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20338 +#: guix-git/doc/guix.texi:20700 msgid "Listens on the specified interfaces for encrypted connections. Valid values are of the form @var{address}:@var{port}, where @var{address} is either an IPv6 address enclosed in brackets, an IPv4 address, or @code{*} to indicate all addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20342 +#: guix-git/doc/guix.texi:20704 #, no-wrap msgid "{@code{cups-configuration} parameter} ssl-options ssl-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20352 +#: guix-git/doc/guix.texi:20714 msgid "Sets encryption options. By default, CUPS only supports encryption using TLS v1.0 or higher using known secure cipher suites. Security is reduced when @code{Allow} options are used, and enhanced when @code{Deny} options are used. The @code{AllowRC4} option enables the 128-bit RC4 cipher suites, which are required for some older clients. The @code{AllowSSL3} option enables SSL v3.0, which is required for some older clients that do not support TLS v1.0. The @code{DenyCBC} option disables all CBC cipher suites. The @code{DenyTLS1.0} option disables TLS v1.0 support - this sets the minimum protocol version to TLS v1.1." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20356 +#: guix-git/doc/guix.texi:20718 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean strict-conformance?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20359 +#: guix-git/doc/guix.texi:20721 msgid "Specifies whether the scheduler requires clients to strictly adhere to the IPP specifications." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20363 +#: guix-git/doc/guix.texi:20725 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20365 +#: guix-git/doc/guix.texi:20727 msgid "Specifies the HTTP request timeout, in seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20370 +#: guix-git/doc/guix.texi:20732 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean web-interface?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20372 +#: guix-git/doc/guix.texi:20734 msgid "Specifies whether the web interface is enabled." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20382 +#: guix-git/doc/guix.texi:20744 msgid "At this point you're probably thinking ``oh dear, Guix manual, I like you but you can stop already with the configuration options''. Indeed. However, one more point: it could be that you have an existing @code{cupsd.conf} that you want to use. In that case, you can pass an @code{opaque-cups-configuration} as the configuration of a @code{cups-service-type}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20384 +#: guix-git/doc/guix.texi:20746 msgid "Available @code{opaque-cups-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20385 +#: guix-git/doc/guix.texi:20747 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} package cups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20389 +#: guix-git/doc/guix.texi:20751 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} string cupsd.conf" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20391 +#: guix-git/doc/guix.texi:20753 msgid "The contents of the @code{cupsd.conf}, as a string." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20393 +#: guix-git/doc/guix.texi:20755 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} string cups-files.conf" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20395 +#: guix-git/doc/guix.texi:20757 msgid "The contents of the @code{cups-files.conf} file, as a string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20400 +#: guix-git/doc/guix.texi:20762 msgid "For example, if your @code{cupsd.conf} and @code{cups-files.conf} are in strings of the same name, you could instantiate a CUPS service like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20406 +#: guix-git/doc/guix.texi:20768 #, no-wrap msgid "" "(service cups-service-type\n" @@ -36566,238 +37186,238 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20417 +#: guix-git/doc/guix.texi:20779 msgid "The @code{(gnu services desktop)} module provides services that are usually useful in the context of a ``desktop'' setup---that is, on a machine running a graphical display server, possibly with graphical user interfaces, etc. It also defines services that provide specific desktop environments like GNOME, Xfce or MATE." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20421 +#: guix-git/doc/guix.texi:20783 msgid "To simplify things, the module defines a variable containing the set of services that users typically expect on a machine with a graphical environment and networking:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20422 +#: guix-git/doc/guix.texi:20784 #, no-wrap msgid "{Scheme Variable} %desktop-services" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20425 +#: guix-git/doc/guix.texi:20787 msgid "This is a list of services that builds upon @code{%base-services} and adds or adjusts services for a typical ``desktop'' setup." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20436 +#: guix-git/doc/guix.texi:20798 msgid "In particular, it adds a graphical login manager (@pxref{X Window, @code{gdm-service-type}}), screen lockers, a network management tool (@pxref{Networking Services, @code{network-manager-service-type}}) with modem support (@pxref{Networking Services, @code{modem-manager-service-type}}), energy and color management services, the @code{elogind} login and seat manager, the Polkit privilege service, the GeoClue location service, the AccountsService daemon that allows authorized users change system passwords, an NTP client (@pxref{Networking Services}), the Avahi daemon, and has the name service switch service configured to be able to use @code{nss-mdns} (@pxref{Name Service Switch, mDNS})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20441 +#: guix-git/doc/guix.texi:20803 msgid "The @code{%desktop-services} variable can be used as the @code{services} field of an @code{operating-system} declaration (@pxref{operating-system Reference, @code{services}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20464 +#: guix-git/doc/guix.texi:20826 msgid "Additionally, the @code{gnome-desktop-service-type}, @code{xfce-desktop-service}, @code{mate-desktop-service-type}, @code{lxqt-desktop-service-type} and @code{enlightenment-desktop-service-type} procedures can add GNOME, Xfce, MATE and/or Enlightenment to a system. To ``add GNOME'' means that system-level services like the backlight adjustment helpers and the power management utilities are added to the system, extending @code{polkit} and @code{dbus} appropriately, allowing GNOME to operate with elevated privileges on a limited number of special-purpose system interfaces. Additionally, adding a service made by @code{gnome-desktop-service-type} adds the GNOME metapackage to the system profile. Likewise, adding the Xfce service not only adds the @code{xfce} metapackage to the system profile, but it also gives the Thunar file manager the ability to open a ``root-mode'' file management window, if the user authenticates using the administrator's password via the standard polkit graphical interface. To ``add MATE'' means that @code{polkit} and @code{dbus} are extended appropriately, allowing MATE to operate with elevated privileges on a limited number of special-purpose system interfaces. Additionally, adding a service of type @code{mate-desktop-service-type} adds the MATE metapackage to the system profile. ``Adding Enlightenment'' means that @code{dbus} is extended appropriately, and several of Enlightenment's binaries are set as setuid, allowing Enlightenment's screen locker and other functionality to work as expected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20474 +#: guix-git/doc/guix.texi:20836 msgid "The desktop environments in Guix use the Xorg display server by default. If you'd like to use the newer display server protocol called Wayland, you need to enable Wayland support in GDM (@pxref{wayland-gdm}). Another solution is to use the @code{sddm-service} instead of GDM as the graphical login manager. You should then select the ``GNOME (Wayland)'' session in SDDM@. Alternatively you can also try starting GNOME on Wayland manually from a TTY with the command ``XDG_SESSION_TYPE=wayland exec dbus-run-session gnome-session``. Currently only GNOME has support for Wayland." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20475 +#: guix-git/doc/guix.texi:20837 #, no-wrap msgid "{Scheme Variable} gnome-desktop-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20479 +#: guix-git/doc/guix.texi:20841 msgid "This is the type of the service that adds the @uref{https://www.gnome.org, GNOME} desktop environment. Its value is a @code{gnome-desktop-configuration} object (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20482 +#: guix-git/doc/guix.texi:20844 msgid "This service adds the @code{gnome} package to the system profile, and extends polkit with the actions from @code{gnome-settings-daemon}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20484 +#: guix-git/doc/guix.texi:20846 #, no-wrap msgid "{Data Type} gnome-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20486 +#: guix-git/doc/guix.texi:20848 msgid "Configuration record for the GNOME desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20488 +#: guix-git/doc/guix.texi:20850 #, no-wrap msgid "@code{gnome} (default: @code{gnome})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20490 +#: guix-git/doc/guix.texi:20852 msgid "The GNOME package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20493 +#: guix-git/doc/guix.texi:20855 #, no-wrap msgid "{Scheme Variable} xfce-desktop-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20497 +#: guix-git/doc/guix.texi:20859 msgid "This is the type of a service to run the @uref{Xfce, https://xfce.org/} desktop environment. Its value is an @code{xfce-desktop-configuration} object (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20502 +#: guix-git/doc/guix.texi:20864 msgid "This service adds the @code{xfce} package to the system profile, and extends polkit with the ability for @code{thunar} to manipulate the file system as root from within a user session, after the user has authenticated with the administrator's password." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20508 +#: guix-git/doc/guix.texi:20870 msgid "Note that @code{xfce4-panel} and its plugin packages should be installed in the same profile to ensure compatibility. When using this service, you should add extra plugins (@code{xfce4-whiskermenu-plugin}, @code{xfce4-weather-plugin}, etc.) to the @code{packages} field of your @code{operating-system}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20510 +#: guix-git/doc/guix.texi:20872 #, no-wrap msgid "{Data Type} xfce-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20512 +#: guix-git/doc/guix.texi:20874 msgid "Configuration record for the Xfce desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20514 +#: guix-git/doc/guix.texi:20876 #, no-wrap msgid "@code{xfce} (default: @code{xfce})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20516 +#: guix-git/doc/guix.texi:20878 msgid "The Xfce package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20519 +#: guix-git/doc/guix.texi:20881 #, no-wrap msgid "{Scheme Variable} mate-desktop-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20523 +#: guix-git/doc/guix.texi:20885 msgid "This is the type of the service that runs the @uref{https://mate-desktop.org/, MATE desktop environment}. Its value is a @code{mate-desktop-configuration} object (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20527 +#: guix-git/doc/guix.texi:20889 msgid "This service adds the @code{mate} package to the system profile, and extends polkit with the actions from @code{mate-settings-daemon}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20529 +#: guix-git/doc/guix.texi:20891 #, no-wrap msgid "{Data Type} mate-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20531 +#: guix-git/doc/guix.texi:20893 msgid "Configuration record for the MATE desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20533 +#: guix-git/doc/guix.texi:20895 #, no-wrap msgid "@code{mate} (default: @code{mate})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20535 +#: guix-git/doc/guix.texi:20897 msgid "The MATE package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20538 +#: guix-git/doc/guix.texi:20900 #, no-wrap msgid "{Scheme Variable} lxqt-desktop-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20542 +#: guix-git/doc/guix.texi:20904 msgid "This is the type of the service that runs the @uref{https://lxqt-project.org, LXQt desktop environment}. Its value is a @code{lxqt-desktop-configuration} object (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20545 +#: guix-git/doc/guix.texi:20907 msgid "This service adds the @code{lxqt} package to the system profile." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20547 +#: guix-git/doc/guix.texi:20909 #, no-wrap msgid "{Data Type} lxqt-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20549 +#: guix-git/doc/guix.texi:20911 msgid "Configuration record for the LXQt desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20551 +#: guix-git/doc/guix.texi:20913 #, no-wrap msgid "@code{lxqt} (default: @code{lxqt})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20553 +#: guix-git/doc/guix.texi:20915 msgid "The LXQT package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20556 +#: guix-git/doc/guix.texi:20918 #, no-wrap msgid "{Scheme Variable} enlightenment-desktop-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20559 +#: guix-git/doc/guix.texi:20921 msgid "Return a service that adds the @code{enlightenment} package to the system profile, and extends dbus with actions from @code{efl}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20561 +#: guix-git/doc/guix.texi:20923 #, no-wrap msgid "{Data Type} enlightenment-desktop-service-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20563 +#: guix-git/doc/guix.texi:20925 #, no-wrap msgid "@code{enlightenment} (default: @code{enlightenment})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20565 +#: guix-git/doc/guix.texi:20927 msgid "The enlightenment package to use." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20573 +#: guix-git/doc/guix.texi:20935 msgid "Because the GNOME, Xfce and MATE desktop services pull in so many packages, the default @code{%desktop-services} variable doesn't include any of them by default. To add GNOME, Xfce or MATE, just @code{cons} them onto @code{%desktop-services} in the @code{services} field of your @code{operating-system}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20584 +#: guix-git/doc/guix.texi:20946 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -36812,576 +37432,576 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20588 +#: guix-git/doc/guix.texi:20950 msgid "These desktop environments will then be available as options in the graphical login window." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20592 +#: guix-git/doc/guix.texi:20954 msgid "The actual service definitions included in @code{%desktop-services} and provided by @code{(gnu services dbus)} and @code{(gnu services desktop)} are described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20593 +#: guix-git/doc/guix.texi:20955 #, no-wrap msgid "{Scheme Procedure} dbus-service [#:dbus @var{dbus}] [#:services '()]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20596 +#: guix-git/doc/guix.texi:20958 msgid "Return a service that runs the ``system bus'', using @var{dbus}, with support for @var{services}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20600 +#: guix-git/doc/guix.texi:20962 msgid "@uref{https://dbus.freedesktop.org/, D-Bus} is an inter-process communication facility. Its system bus is used to allow system services to communicate and to be notified of system-wide events." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20605 +#: guix-git/doc/guix.texi:20967 msgid "@var{services} must be a list of packages that provide an @file{etc/dbus-1/system.d} directory containing additional D-Bus configuration and policy files. For example, to allow avahi-daemon to use the system bus, @var{services} must be equal to @code{(list avahi)}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20607 +#: guix-git/doc/guix.texi:20969 #, no-wrap msgid "{Scheme Procedure} elogind-service [#:config @var{config}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20613 +#: guix-git/doc/guix.texi:20975 msgid "Return a service that runs the @code{elogind} login and seat management daemon. @uref{https://github.com/elogind/elogind, Elogind} exposes a D-Bus interface that can be used to know which users are logged in, know what kind of sessions they have open, suspend the system, inhibit system suspend, reboot the system, and other tasks." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20617 +#: guix-git/doc/guix.texi:20979 msgid "Elogind handles most system-level power events for a computer, for example suspending the system when a lid is closed, or shutting it down when the power button is pressed." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20622 +#: guix-git/doc/guix.texi:20984 msgid "The @var{config} keyword argument specifies the configuration for elogind, and should be the result of an @code{(elogind-configuration (@var{parameter} @var{value})...)} invocation. Available parameters and their default values are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20624 +#: guix-git/doc/guix.texi:20986 #, no-wrap msgid "kill-user-processes?" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20626 guix-git/doc/guix.texi:20646 -#: guix-git/doc/guix.texi:20648 guix-git/doc/guix.texi:20650 -#: guix-git/doc/guix.texi:20662 +#: guix-git/doc/guix.texi:20988 guix-git/doc/guix.texi:21008 +#: guix-git/doc/guix.texi:21010 guix-git/doc/guix.texi:21012 +#: guix-git/doc/guix.texi:21024 msgid "#f" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20626 +#: guix-git/doc/guix.texi:20988 #, no-wrap msgid "kill-only-users" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20628 guix-git/doc/guix.texi:20668 +#: guix-git/doc/guix.texi:20990 guix-git/doc/guix.texi:21030 msgid "()" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20628 +#: guix-git/doc/guix.texi:20990 #, no-wrap msgid "kill-exclude-users" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20630 +#: guix-git/doc/guix.texi:20992 msgid "(\"root\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20630 +#: guix-git/doc/guix.texi:20992 #, no-wrap msgid "inhibit-delay-max-seconds" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20632 +#: guix-git/doc/guix.texi:20994 msgid "5" msgstr "5" #. type: item -#: guix-git/doc/guix.texi:20632 +#: guix-git/doc/guix.texi:20994 #, no-wrap msgid "handle-power-key" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20634 +#: guix-git/doc/guix.texi:20996 msgid "poweroff" msgstr "전원 끄기" #. type: item -#: guix-git/doc/guix.texi:20634 +#: guix-git/doc/guix.texi:20996 #, no-wrap msgid "handle-suspend-key" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20636 guix-git/doc/guix.texi:20640 +#: guix-git/doc/guix.texi:20998 guix-git/doc/guix.texi:21002 msgid "suspend" msgstr "절전" #. type: item -#: guix-git/doc/guix.texi:20636 +#: guix-git/doc/guix.texi:20998 #, no-wrap msgid "handle-hibernate-key" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20638 +#: guix-git/doc/guix.texi:21000 msgid "hibernate" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20638 +#: guix-git/doc/guix.texi:21000 #, no-wrap msgid "handle-lid-switch" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20640 +#: guix-git/doc/guix.texi:21002 #, no-wrap msgid "handle-lid-switch-docked" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20642 guix-git/doc/guix.texi:20644 -#: guix-git/doc/guix.texi:20656 +#: guix-git/doc/guix.texi:21004 guix-git/doc/guix.texi:21006 +#: guix-git/doc/guix.texi:21018 msgid "ignore" msgstr "무시" #. type: item -#: guix-git/doc/guix.texi:20642 +#: guix-git/doc/guix.texi:21004 #, no-wrap msgid "handle-lid-switch-external-power" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20644 +#: guix-git/doc/guix.texi:21006 #, no-wrap msgid "power-key-ignore-inhibited?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20646 +#: guix-git/doc/guix.texi:21008 #, no-wrap msgid "suspend-key-ignore-inhibited?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20648 +#: guix-git/doc/guix.texi:21010 #, no-wrap msgid "hibernate-key-ignore-inhibited?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20650 +#: guix-git/doc/guix.texi:21012 #, no-wrap msgid "lid-switch-ignore-inhibited?" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20652 guix-git/doc/guix.texi:20664 +#: guix-git/doc/guix.texi:21014 guix-git/doc/guix.texi:21026 msgid "#t" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20652 +#: guix-git/doc/guix.texi:21014 #, no-wrap msgid "holdoff-timeout-seconds" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20654 +#: guix-git/doc/guix.texi:21016 msgid "30" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20654 +#: guix-git/doc/guix.texi:21016 #, no-wrap msgid "idle-action" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20656 +#: guix-git/doc/guix.texi:21018 #, no-wrap msgid "idle-action-seconds" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20658 +#: guix-git/doc/guix.texi:21020 msgid "(* 30 60)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20658 +#: guix-git/doc/guix.texi:21020 #, no-wrap msgid "runtime-directory-size-percent" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20660 +#: guix-git/doc/guix.texi:21022 msgid "10" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20660 +#: guix-git/doc/guix.texi:21022 #, no-wrap msgid "runtime-directory-size" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20662 +#: guix-git/doc/guix.texi:21024 #, no-wrap msgid "remove-ipc?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20664 +#: guix-git/doc/guix.texi:21026 #, no-wrap msgid "suspend-state" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20666 +#: guix-git/doc/guix.texi:21028 msgid "(\"mem\" \"standby\" \"freeze\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20666 +#: guix-git/doc/guix.texi:21028 #, no-wrap msgid "suspend-mode" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20668 +#: guix-git/doc/guix.texi:21030 #, no-wrap msgid "hibernate-state" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20670 guix-git/doc/guix.texi:20674 +#: guix-git/doc/guix.texi:21032 guix-git/doc/guix.texi:21036 msgid "(\"disk\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20670 +#: guix-git/doc/guix.texi:21032 #, no-wrap msgid "hibernate-mode" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20672 +#: guix-git/doc/guix.texi:21034 msgid "(\"platform\" \"shutdown\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20672 +#: guix-git/doc/guix.texi:21034 #, no-wrap msgid "hybrid-sleep-state" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20674 +#: guix-git/doc/guix.texi:21036 #, no-wrap msgid "hybrid-sleep-mode" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20676 +#: guix-git/doc/guix.texi:21038 msgid "(\"suspend\" \"platform\" \"shutdown\")" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20679 +#: guix-git/doc/guix.texi:21041 #, no-wrap msgid "{Scheme Procedure} accountsservice-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20687 +#: guix-git/doc/guix.texi:21049 msgid "[#:accountsservice @var{accountsservice}] Return a service that runs AccountsService, a system service that can list available accounts, change their passwords, and so on. AccountsService integrates with PolicyKit to enable unprivileged users to acquire the capability to modify their system configuration. @uref{https://www.freedesktop.org/wiki/Software/AccountsService/, the accountsservice web site} for more information." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20690 +#: guix-git/doc/guix.texi:21052 msgid "The @var{accountsservice} keyword argument is the @code{accountsservice} package to expose as a service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20692 +#: guix-git/doc/guix.texi:21054 #, no-wrap msgid "{Scheme Procedure} polkit-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20701 +#: guix-git/doc/guix.texi:21063 msgid "[#:polkit @var{polkit}] Return a service that runs the @uref{https://www.freedesktop.org/wiki/Software/polkit/, Polkit privilege management service}, which allows system administrators to grant access to privileged operations in a structured way. By querying the Polkit service, a privileged system component can know when it should grant additional capabilities to ordinary users. For example, an ordinary user can be granted the capability to suspend the system if the user is logged in locally." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20703 +#: guix-git/doc/guix.texi:21065 #, no-wrap msgid "{Scheme Variable} polkit-wheel-service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20708 +#: guix-git/doc/guix.texi:21070 msgid "Service that adds the @code{wheel} group as admins to the Polkit service. This makes it so that users in the @code{wheel} group are queried for their own passwords when performing administrative actions instead of @code{root}'s, similar to the behaviour used by @code{sudo}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20710 +#: guix-git/doc/guix.texi:21072 #, no-wrap msgid "{Scheme Variable} upower-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20714 +#: guix-git/doc/guix.texi:21076 msgid "Service that runs @uref{https://upower.freedesktop.org/, @command{upowerd}}, a system-wide monitor for power consumption and battery levels, with the given configuration settings." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20717 +#: guix-git/doc/guix.texi:21079 msgid "It implements the @code{org.freedesktop.UPower} D-Bus interface, and is notably used by GNOME." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20719 +#: guix-git/doc/guix.texi:21081 #, no-wrap msgid "{Data Type} upower-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20721 +#: guix-git/doc/guix.texi:21083 msgid "Data type representation the configuration for UPower." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20724 +#: guix-git/doc/guix.texi:21086 #, no-wrap msgid "@code{upower} (default: @var{upower})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20726 +#: guix-git/doc/guix.texi:21088 msgid "Package to use for @code{upower}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20727 +#: guix-git/doc/guix.texi:21089 #, no-wrap msgid "@code{watts-up-pro?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20729 +#: guix-git/doc/guix.texi:21091 msgid "Enable the Watts Up Pro device." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20730 +#: guix-git/doc/guix.texi:21092 #, no-wrap msgid "@code{poll-batteries?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20732 +#: guix-git/doc/guix.texi:21094 msgid "Enable polling the kernel for battery level changes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20733 +#: guix-git/doc/guix.texi:21095 #, no-wrap msgid "@code{ignore-lid?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20735 +#: guix-git/doc/guix.texi:21097 msgid "Ignore the lid state, this can be useful if it's incorrect on a device." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20736 +#: guix-git/doc/guix.texi:21098 #, no-wrap msgid "@code{use-percentage-for-policy?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20739 +#: guix-git/doc/guix.texi:21101 msgid "Whether battery percentage based policy should be used. The default is to use the time left, change to @code{#t} to use the percentage." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20740 +#: guix-git/doc/guix.texi:21102 #, no-wrap msgid "@code{percentage-low} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20743 +#: guix-git/doc/guix.texi:21105 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which the battery is considered low." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20744 +#: guix-git/doc/guix.texi:21106 #, no-wrap msgid "@code{percentage-critical} (default: @code{3})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20747 +#: guix-git/doc/guix.texi:21109 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which the battery is considered critical." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20748 +#: guix-git/doc/guix.texi:21110 #, no-wrap msgid "@code{percentage-action} (default: @code{2})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20751 +#: guix-git/doc/guix.texi:21113 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which action will be taken." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20752 +#: guix-git/doc/guix.texi:21114 #, no-wrap msgid "@code{time-low} (default: @code{1200})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20755 +#: guix-git/doc/guix.texi:21117 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which the battery is considered low." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20756 +#: guix-git/doc/guix.texi:21118 #, no-wrap msgid "@code{time-critical} (default: @code{300})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20759 +#: guix-git/doc/guix.texi:21121 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which the battery is considered critical." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20760 +#: guix-git/doc/guix.texi:21122 #, no-wrap msgid "@code{time-action} (default: @code{120})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20763 +#: guix-git/doc/guix.texi:21125 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which action will be taken." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20764 +#: guix-git/doc/guix.texi:21126 #, no-wrap msgid "@code{critical-power-action} (default: @code{'hybrid-sleep})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20767 +#: guix-git/doc/guix.texi:21129 msgid "The action taken when @code{percentage-action} or @code{time-action} is reached (depending on the configuration of @code{use-percentage-for-policy?})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20769 +#: guix-git/doc/guix.texi:21131 msgid "Possible values are:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20773 +#: guix-git/doc/guix.texi:21135 msgid "'power-off" msgstr "'전원 끄기" #. type: code{#1} -#: guix-git/doc/guix.texi:20776 +#: guix-git/doc/guix.texi:21138 msgid "'hibernate" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:20779 +#: guix-git/doc/guix.texi:21141 msgid "@code{'hybrid-sleep}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20784 +#: guix-git/doc/guix.texi:21146 #, no-wrap msgid "{Scheme Procedure} udisks-service [#:udisks @var{udisks}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20794 +#: guix-git/doc/guix.texi:21156 msgid "Return a service for @uref{https://udisks.freedesktop.org/docs/latest/, UDisks}, a @dfn{disk management} daemon that provides user interfaces with notifications and ways to mount/unmount disks. Programs that talk to UDisks include the @command{udisksctl} command, part of UDisks, and GNOME Disks. Note that Udisks relies on the @command{mount} command, so it will only be able to use the file-system utilities installed in the system profile. For example if you want to be able to mount NTFS file-systems in read and write fashion, you'll need to have @code{ntfs-3g} installed system-wide." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20796 +#: guix-git/doc/guix.texi:21158 #, no-wrap msgid "{Scheme Variable} colord-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20803 +#: guix-git/doc/guix.texi:21165 msgid "This is the type of the service that runs @command{colord}, a system service with a D-Bus interface to manage the color profiles of input and output devices such as screens and scanners. It is notably used by the GNOME Color Manager graphical tool. See @uref{https://www.freedesktop.org/software/colord/, the colord web site} for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20805 +#: guix-git/doc/guix.texi:21167 #, no-wrap msgid "scanner access" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20806 +#: guix-git/doc/guix.texi:21168 #, no-wrap msgid "{Scheme Variable} sane-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20812 +#: guix-git/doc/guix.texi:21174 msgid "This service provides access to scanners @i{via} @uref{http://www.sane-project.org, SANE} by installing the necessary udev rules. It is included in @code{%desktop-services} (@pxref{Desktop Services}) and relies by default on @code{sane-backends-minimal} package (see below) for hardware support." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20814 +#: guix-git/doc/guix.texi:21176 #, no-wrap msgid "{Scheme Variable} sane-backends-minimal" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20817 +#: guix-git/doc/guix.texi:21179 msgid "The default package which the @code{sane-service-type} installs. It supports many recent scanners." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20819 +#: guix-git/doc/guix.texi:21181 #, no-wrap msgid "{Scheme Variable} sane-backends" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20826 +#: guix-git/doc/guix.texi:21188 msgid "This package includes support for all scanners that @code{sane-backends-minimal} supports, plus older Hewlett-Packard scanners supported by @code{hplip} package. In order to use this on a system which relies on @code{%desktop-services}, you may use @code{modify-services} (@pxref{Service Reference, @code{modify-services}}) as illustrated below:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20835 +#: guix-git/doc/guix.texi:21197 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -37395,7 +38015,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20840 +#: guix-git/doc/guix.texi:21202 #, no-wrap msgid "" "(define %my-desktop-services\n" @@ -37406,7 +38026,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20844 +#: guix-git/doc/guix.texi:21206 #, no-wrap msgid "" "(operating-system\n" @@ -37415,214 +38035,214 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20847 +#: guix-git/doc/guix.texi:21209 #, no-wrap msgid "{Scheme Procedure} geoclue-application name [#:allowed? #t] [#:system? #f] [#:users '()]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20856 +#: guix-git/doc/guix.texi:21218 msgid "Return a configuration allowing an application to access GeoClue location data. @var{name} is the Desktop ID of the application, without the @code{.desktop} part. If @var{allowed?} is true, the application will have access to location information by default. The boolean @var{system?} value indicates whether an application is a system component or not. Finally @var{users} is a list of UIDs of all users for which this application is allowed location info access. An empty users list means that all users are allowed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20858 +#: guix-git/doc/guix.texi:21220 #, no-wrap msgid "{Scheme Variable} %standard-geoclue-applications" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20865 +#: guix-git/doc/guix.texi:21227 msgid "The standard list of well-known GeoClue application configurations, granting authority to the GNOME date-and-time utility to ask for the current location in order to set the time zone, and allowing the IceCat and Epiphany web browsers to request location information. IceCat and Epiphany both query the user before allowing a web page to know the user's location." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20867 +#: guix-git/doc/guix.texi:21229 #, no-wrap msgid "{Scheme Procedure} geoclue-service [#:colord @var{colord}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20880 +#: guix-git/doc/guix.texi:21242 msgid "[#:whitelist '()] @ [#:wifi-geolocation-url \"https://location.services.mozilla.com/v1/geolocate?key=geoclue\"] @ [#:submit-data? #f] [#:wifi-submission-url \"https://location.services.mozilla.com/v1/submit?key=geoclue\"] @ [#:submission-nick \"geoclue\"] @ [#:applications %standard-geoclue-applications] Return a service that runs the GeoClue location service. This service provides a D-Bus interface to allow applications to request access to a user's physical location, and optionally to add information to online location databases. See @uref{https://wiki.freedesktop.org/www/Software/GeoClue/, the GeoClue web site} for more information." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20882 +#: guix-git/doc/guix.texi:21244 #, no-wrap msgid "{Scheme Procedure} bluetooth-service [#:bluez @var{bluez}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20889 +#: guix-git/doc/guix.texi:21251 msgid "[@w{#:auto-enable? #f}] Return a service that runs the @command{bluetoothd} daemon, which manages all the Bluetooth devices and provides a number of D-Bus interfaces. When AUTO-ENABLE? is true, the bluetooth controller is powered automatically at boot, which can be useful when using a bluetooth keyboard or mouse." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20891 +#: guix-git/doc/guix.texi:21253 msgid "Users need to be in the @code{lp} group to access the D-Bus service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20893 +#: guix-git/doc/guix.texi:21255 #, no-wrap msgid "{Scheme Variable} gnome-keyring-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20897 +#: guix-git/doc/guix.texi:21259 msgid "This is the type of the service that adds the @uref{https://wiki.gnome.org/Projects/GnomeKeyring, GNOME Keyring}. Its value is a @code{gnome-keyring-configuration} object (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20901 +#: guix-git/doc/guix.texi:21263 msgid "This service adds the @code{gnome-keyring} package to the system profile and extends PAM with entries using @code{pam_gnome_keyring.so}, unlocking a user's login keyring when they log in or setting its password with passwd." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20903 +#: guix-git/doc/guix.texi:21265 #, no-wrap msgid "{Data Type} gnome-keyring-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20905 +#: guix-git/doc/guix.texi:21267 msgid "Configuration record for the GNOME Keyring service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20907 +#: guix-git/doc/guix.texi:21269 #, no-wrap msgid "@code{keyring} (default: @code{gnome-keyring})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20909 +#: guix-git/doc/guix.texi:21271 msgid "The GNOME keyring package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20910 +#: guix-git/doc/guix.texi:21272 #, no-wrap msgid "pam-services" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20915 +#: guix-git/doc/guix.texi:21277 msgid "A list of @code{(@var{service} . @var{kind})} pairs denoting PAM services to extend, where @var{service} is the name of an existing service to extend and @var{kind} is one of @code{login} or @code{passwd}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20921 +#: guix-git/doc/guix.texi:21283 msgid "If @code{login} is given, it adds an optional @code{pam_gnome_keyring.so} to the auth block without arguments and to the session block with @code{auto_start}. If @code{passwd} is given, it adds an optional @code{pam_gnome_keyring.so} to the password block without arguments." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20924 +#: guix-git/doc/guix.texi:21286 msgid "By default, this field contains ``gdm-password'' with the value @code{login} and ``passwd'' is with the value @code{passwd}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20931 +#: guix-git/doc/guix.texi:21293 #, no-wrap msgid "sound support" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20932 +#: guix-git/doc/guix.texi:21294 #, no-wrap msgid "ALSA" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20933 +#: guix-git/doc/guix.texi:21295 #, no-wrap msgid "PulseAudio, sound support" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20938 +#: guix-git/doc/guix.texi:21300 msgid "The @code{(gnu services sound)} module provides a service to configure the Advanced Linux Sound Architecture (ALSA) system, which makes PulseAudio the preferred ALSA output driver." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20939 +#: guix-git/doc/guix.texi:21301 #, no-wrap msgid "{Scheme Variable} alsa-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20944 +#: guix-git/doc/guix.texi:21306 msgid "This is the type for the @uref{https://alsa-project.org/, Advanced Linux Sound Architecture} (ALSA) system, which generates the @file{/etc/asound.conf} configuration file. The value for this type is a @command{alsa-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20947 +#: guix-git/doc/guix.texi:21309 #, no-wrap msgid "(service alsa-service-type)\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20950 +#: guix-git/doc/guix.texi:21312 msgid "See below for details about @code{alsa-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20952 +#: guix-git/doc/guix.texi:21314 #, no-wrap msgid "{Data Type} alsa-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20954 +#: guix-git/doc/guix.texi:21316 msgid "Data type representing the configuration for @code{alsa-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20956 +#: guix-git/doc/guix.texi:21318 #, no-wrap msgid "@code{alsa-plugins} (default: @var{alsa-plugins})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20958 +#: guix-git/doc/guix.texi:21320 msgid "@code{alsa-plugins} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20959 +#: guix-git/doc/guix.texi:21321 #, no-wrap msgid "@code{pulseaudio?} (default: @var{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20962 +#: guix-git/doc/guix.texi:21324 msgid "Whether ALSA applications should transparently be made to use the @uref{https://www.pulseaudio.org/, PulseAudio} sound server." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20966 +#: guix-git/doc/guix.texi:21328 msgid "Using PulseAudio allows you to run several sound-producing applications at the same time and to individual control them @i{via} @command{pavucontrol}, among other things." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20967 +#: guix-git/doc/guix.texi:21329 #, no-wrap msgid "@code{extra-options} (default: @var{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20969 +#: guix-git/doc/guix.texi:21331 msgid "String to append to the @file{/etc/asound.conf} file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20975 +#: guix-git/doc/guix.texi:21337 msgid "Individual users who want to override the system configuration of ALSA can do it with the @file{~/.asoundrc} file:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:20981 +#: guix-git/doc/guix.texi:21343 #, no-wrap msgid "" "# In guix, we have to specify the absolute path for plugins.\n" @@ -37633,7 +38253,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:20990 +#: guix-git/doc/guix.texi:21352 #, no-wrap msgid "" "# Routing ALSA to jack:\n" @@ -37648,7 +38268,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:20996 +#: guix-git/doc/guix.texi:21358 #, no-wrap msgid "" " capture_ports @{\n" @@ -37660,7 +38280,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:21003 +#: guix-git/doc/guix.texi:21365 #, no-wrap msgid "" "pcm.!default @{\n" @@ -37672,104 +38292,104 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21007 +#: guix-git/doc/guix.texi:21369 msgid "See @uref{https://www.alsa-project.org/main/index.php/Asoundrc} for the details." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21008 +#: guix-git/doc/guix.texi:21370 #, no-wrap msgid "{Scheme Variable} pulseaudio-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21012 +#: guix-git/doc/guix.texi:21374 msgid "This is the type for the @uref{https://www.pulseaudio.org/, PulseAudio} sound server. It exists to allow system overrides of the default settings via @code{pulseaudio-configuration}, see below." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:21018 +#: guix-git/doc/guix.texi:21380 msgid "This service overrides per-user configuration files. If you want PulseAudio to honor configuration files in @file{~/.config/pulse} you have to unset the environment variables @env{PULSE_CONFIG} and @env{PULSE_CLIENTCONFIG} in your @file{~/.bash_profile}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:21026 +#: guix-git/doc/guix.texi:21388 msgid "This service on its own does not ensure, that the @code{pulseaudio} package exists on your machine. It merely adds configuration files for it, as detailed below. In the (admittedly unlikely) case, that you find yourself without a @code{pulseaudio} package, consider enabling it through the @code{alsa-service-type} above." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21029 +#: guix-git/doc/guix.texi:21391 #, no-wrap msgid "{Data Type} pulseaudio-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21031 +#: guix-git/doc/guix.texi:21393 msgid "Data type representing the configuration for @code{pulseaudio-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21033 +#: guix-git/doc/guix.texi:21395 #, no-wrap msgid "@code{client-conf} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21038 -msgid "List of settings to set in @file{client.conf}. Accepts a list of strings or a symbol-value pairs. A string will be inserted as-is with a newline added. A pair will be formatted as ``key = value'', again with a newline added." +#: guix-git/doc/guix.texi:21400 +msgid "List of settings to set in @file{client.conf}. Accepts a list of strings or symbol-value pairs. A string will be inserted as-is with a newline added. A pair will be formatted as ``key = value'', again with a newline added." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21039 +#: guix-git/doc/guix.texi:21401 #, no-wrap msgid "@code{daemon-conf} (default: @code{'((flat-volumes . no))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21042 +#: guix-git/doc/guix.texi:21404 msgid "List of settings to set in @file{daemon.conf}, formatted just like @var{client-conf}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21043 +#: guix-git/doc/guix.texi:21405 #, no-wrap msgid "@code{script-file} (default: @code{(file-append pulseaudio \"/etc/pulse/default.pa\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21045 +#: guix-git/doc/guix.texi:21407 msgid "Script file to use as @file{default.pa}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21046 +#: guix-git/doc/guix.texi:21408 #, no-wrap msgid "@code{system-script-file} (default: @code{(file-append pulseaudio \"/etc/pulse/system.pa\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21048 +#: guix-git/doc/guix.texi:21410 msgid "Script file to use as @file{system.pa}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21051 +#: guix-git/doc/guix.texi:21413 #, no-wrap msgid "{Scheme Variable} ladspa-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21054 +#: guix-git/doc/guix.texi:21416 msgid "This service sets the @var{LADSPA_PATH} variable, so that programs, which respect it, e.g. PulseAudio, can load LADSPA plugins." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21057 +#: guix-git/doc/guix.texi:21419 msgid "The following example will setup the service to enable modules from the @code{swh-plugins} package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21061 +#: guix-git/doc/guix.texi:21423 #, no-wrap msgid "" "(service ladspa-service-type\n" @@ -37777,34 +38397,34 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21065 +#: guix-git/doc/guix.texi:21427 msgid "See @uref{http://plugin.org.uk/ladspa-swh/docs/ladspa-swh.html} for the details." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21072 +#: guix-git/doc/guix.texi:21434 #, no-wrap msgid "SQL" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21074 +#: guix-git/doc/guix.texi:21436 msgid "The @code{(gnu services databases)} module provides the following services." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21075 +#: guix-git/doc/guix.texi:21437 #, no-wrap msgid "PostgreSQL" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21079 +#: guix-git/doc/guix.texi:21441 msgid "The following example describes a PostgreSQL service with the default configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21084 +#: guix-git/doc/guix.texi:21446 #, no-wrap msgid "" "(service postgresql-service-type\n" @@ -37813,17 +38433,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21090 +#: guix-git/doc/guix.texi:21452 msgid "If the services fails to start, it may be due to an incompatible cluster already present in @var{data-directory}. Adjust it (or, if you don't need the cluster anymore, delete @var{data-directory}), then restart the service." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21097 +#: guix-git/doc/guix.texi:21459 msgid "Peer authentication is used by default and the @code{postgres} user account has no shell, which prevents the direct execution of @code{psql} commands as this user. To use @code{psql}, you can temporarily log in as @code{postgres} using a shell, create a PostgreSQL superuser with the same name as one of the system users and then create the associated database." msgstr "" #. type: example -#: guix-git/doc/guix.texi:21102 +#: guix-git/doc/guix.texi:21464 #, no-wrap msgid "" "sudo -u postgres -s /bin/sh\n" @@ -37832,101 +38452,101 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21104 +#: guix-git/doc/guix.texi:21466 #, no-wrap msgid "{Data Type} postgresql-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21107 +#: guix-git/doc/guix.texi:21469 msgid "Data type representing the configuration for the @code{postgresql-service-type}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:21109 +#: guix-git/doc/guix.texi:21471 #, no-wrap msgid "postgresql" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21111 +#: guix-git/doc/guix.texi:21473 msgid "PostgreSQL package to use for the service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21112 +#: guix-git/doc/guix.texi:21474 #, no-wrap msgid "@code{port} (default: @code{5432})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21114 +#: guix-git/doc/guix.texi:21476 msgid "Port on which PostgreSQL should listen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21117 +#: guix-git/doc/guix.texi:21479 msgid "Locale to use as the default when creating the database cluster." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21118 +#: guix-git/doc/guix.texi:21480 #, no-wrap msgid "@code{config-file} (default: @code{(postgresql-config-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21122 +#: guix-git/doc/guix.texi:21484 msgid "The configuration file to use when running PostgreSQL@. The default behaviour uses the postgresql-config-file record with the default values for the fields." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21123 +#: guix-git/doc/guix.texi:21485 #, no-wrap msgid "@code{log-directory} (default: @code{\"/var/log/postgresql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21127 +#: guix-git/doc/guix.texi:21489 msgid "The directory where @command{pg_ctl} output will be written in a file named @code{\"pg_ctl.log\"}. This file can be useful to debug PostgreSQL configuration errors for instance." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21128 +#: guix-git/doc/guix.texi:21490 #, no-wrap msgid "@code{data-directory} (default: @code{\"/var/lib/postgresql/data\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21130 +#: guix-git/doc/guix.texi:21492 msgid "Directory in which to store the data." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21131 +#: guix-git/doc/guix.texi:21493 #, no-wrap msgid "@code{extension-packages} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21132 +#: guix-git/doc/guix.texi:21494 #, no-wrap msgid "postgresql extension-packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21137 +#: guix-git/doc/guix.texi:21499 msgid "Additional extensions are loaded from packages listed in @var{extension-packages}. Extensions are available at runtime. For instance, to create a geographic database using the @code{postgis} extension, a user can configure the postgresql-service as in this example:" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21138 +#: guix-git/doc/guix.texi:21500 #, no-wrap msgid "postgis" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21141 +#: guix-git/doc/guix.texi:21503 #, no-wrap msgid "" "(use-package-modules databases geo)\n" @@ -37934,7 +38554,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21154 +#: guix-git/doc/guix.texi:21516 #, no-wrap msgid "" "(operating-system\n" @@ -37952,12 +38572,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21158 +#: guix-git/doc/guix.texi:21520 msgid "Then the extension becomes visible and you can initialise an empty geographic database in this way:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:21165 +#: guix-git/doc/guix.texi:21527 #, no-wrap msgid "" "psql -U postgres\n" @@ -37968,23 +38588,23 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21170 +#: guix-git/doc/guix.texi:21532 msgid "There is no need to add this field for contrib extensions such as hstore or dblink as they are already loadable by postgresql. This field is only required to add extensions provided by other packages." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21174 +#: guix-git/doc/guix.texi:21536 #, no-wrap msgid "{Data Type} postgresql-config-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21180 +#: guix-git/doc/guix.texi:21542 msgid "Data type representing the PostgreSQL configuration file. As shown in the following example, this can be used to customize the configuration of PostgreSQL@. Note that you can use any G-expression or filename in place of this record, if you already have a configuration file you'd like to use for example." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21200 +#: guix-git/doc/guix.texi:21562 #, no-wrap msgid "" "(service postgresql-service-type\n" @@ -38008,77 +38628,77 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:21203 +#: guix-git/doc/guix.texi:21565 #, no-wrap msgid "@code{log-destination} (default: @code{\"syslog\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21206 +#: guix-git/doc/guix.texi:21568 msgid "The logging method to use for PostgreSQL@. Multiple values are accepted, separated by commas." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21207 +#: guix-git/doc/guix.texi:21569 #, no-wrap msgid "@code{hba-file} (default: @code{%default-postgres-hba})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21210 +#: guix-git/doc/guix.texi:21572 msgid "Filename or G-expression for the host-based authentication configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21211 +#: guix-git/doc/guix.texi:21573 #, no-wrap msgid "@code{ident-file} (default: @code{%default-postgres-ident})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21213 +#: guix-git/doc/guix.texi:21575 msgid "Filename or G-expression for the user name mapping configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21214 +#: guix-git/doc/guix.texi:21576 #, no-wrap msgid "@code{socket-directory} (default: @code{\"/var/run/postgresql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21219 +#: guix-git/doc/guix.texi:21581 msgid "Specifies the directory of the Unix-domain socket(s) on which PostgreSQL is to listen for connections from client applications. If set to @code{\"\"} PostgreSQL does not listen on any Unix-domain sockets, in which case only TCP/IP sockets can be used to connect to the server." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21222 +#: guix-git/doc/guix.texi:21584 msgid "By default, the @code{#false} value means the PostgreSQL default value will be used, which is currently @samp{/tmp}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21227 +#: guix-git/doc/guix.texi:21589 msgid "List of additional keys and values to include in the PostgreSQL config file. Each entry in the list should be a list where the first element is the key, and the remaining elements are the values." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21233 +#: guix-git/doc/guix.texi:21595 msgid "The values can be numbers, booleans or strings and will be mapped to PostgreSQL parameters types @code{Boolean}, @code{String}, @code{Numeric}, @code{Numeric with Unit} and @code{Enumerated} described @uref{https://www.postgresql.org/docs/current/config-setting.html, here}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21237 +#: guix-git/doc/guix.texi:21599 #, no-wrap msgid "{Scheme Variable} postgresql-role-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21240 +#: guix-git/doc/guix.texi:21602 msgid "This service allows to create PostgreSQL roles and databases after PostgreSQL service start. Here is an example of its use." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21248 +#: guix-git/doc/guix.texi:21610 #, no-wrap msgid "" "(service postgresql-role-service-type\n" @@ -38090,12 +38710,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21252 +#: guix-git/doc/guix.texi:21614 msgid "This service can be extended with extra roles, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21258 +#: guix-git/doc/guix.texi:21620 #, no-wrap msgid "" "(service-extension postgresql-role-service-type\n" @@ -38105,398 +38725,398 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21261 +#: guix-git/doc/guix.texi:21623 #, no-wrap msgid "{Data Type} postgresql-role" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21267 +#: guix-git/doc/guix.texi:21629 msgid "PostgreSQL manages database access permissions using the concept of roles. A role can be thought of as either a database user, or a group of database users, depending on how the role is set up. Roles can own database objects (for example, tables) and can assign privileges on those objects to other roles to control who has access to which objects." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21271 +#: guix-git/doc/guix.texi:21633 msgid "The role name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21272 +#: guix-git/doc/guix.texi:21634 #, no-wrap msgid "@code{permissions} (default: @code{'(createdb login)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21276 +#: guix-git/doc/guix.texi:21638 msgid "The role permissions list. Supported permissions are @code{bypassrls}, @code{createdb}, @code{createrole}, @code{login}, @code{replication} and @code{superuser}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21277 +#: guix-git/doc/guix.texi:21639 #, no-wrap msgid "@code{create-database?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21279 +#: guix-git/doc/guix.texi:21641 msgid "Whether to create a database with the same name as the role." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21283 +#: guix-git/doc/guix.texi:21645 #, no-wrap msgid "{Data Type} postgresql-role-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21286 +#: guix-git/doc/guix.texi:21648 msgid "Data type representing the configuration of @var{postgresql-role-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21288 +#: guix-git/doc/guix.texi:21650 #, no-wrap msgid "@code{host} (default: @code{\"/var/run/postgresql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21290 +#: guix-git/doc/guix.texi:21652 msgid "The PostgreSQL host to connect to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21291 +#: guix-git/doc/guix.texi:21653 #, no-wrap msgid "@code{log} (default: @code{\"/var/log/postgresql_roles.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21293 +#: guix-git/doc/guix.texi:21655 msgid "File name of the log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21294 +#: guix-git/doc/guix.texi:21656 #, no-wrap msgid "@code{roles} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21296 +#: guix-git/doc/guix.texi:21658 msgid "The initial PostgreSQL roles to create." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21299 +#: guix-git/doc/guix.texi:21661 #, no-wrap msgid "MariaDB/MySQL" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21301 +#: guix-git/doc/guix.texi:21663 #, no-wrap msgid "{Scheme Variable} mysql-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21305 +#: guix-git/doc/guix.texi:21667 msgid "This is the service type for a MySQL or MariaDB database server. Its value is a @code{mysql-configuration} object that specifies which package to use, as well as various settings for the @command{mysqld} daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21307 +#: guix-git/doc/guix.texi:21669 #, no-wrap msgid "{Data Type} mysql-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21309 +#: guix-git/doc/guix.texi:21671 msgid "Data type representing the configuration of @var{mysql-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21311 +#: guix-git/doc/guix.texi:21673 #, no-wrap msgid "@code{mysql} (default: @var{mariadb})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21314 +#: guix-git/doc/guix.texi:21676 msgid "Package object of the MySQL database server, can be either @var{mariadb} or @var{mysql}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21317 +#: guix-git/doc/guix.texi:21679 msgid "For MySQL, a temporary root password will be displayed at activation time. For MariaDB, the root password is empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21318 guix-git/doc/guix.texi:25138 +#: guix-git/doc/guix.texi:21680 guix-git/doc/guix.texi:25500 #, no-wrap msgid "@code{bind-address} (default: @code{\"127.0.0.1\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21321 +#: guix-git/doc/guix.texi:21683 msgid "The IP on which to listen for network connections. Use @code{\"0.0.0.0\"} to bind to all available network interfaces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21322 +#: guix-git/doc/guix.texi:21684 #, no-wrap msgid "@code{port} (default: @code{3306})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21324 +#: guix-git/doc/guix.texi:21686 msgid "TCP port on which the database server listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21325 +#: guix-git/doc/guix.texi:21687 #, no-wrap msgid "@code{socket} (default: @code{\"/run/mysqld/mysqld.sock\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21327 +#: guix-git/doc/guix.texi:21689 msgid "Socket file to use for local (non-network) connections." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21330 +#: guix-git/doc/guix.texi:21692 msgid "Additional settings for the @file{my.cnf} configuration file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21331 +#: guix-git/doc/guix.texi:21693 #, no-wrap msgid "@code{extra-environment} (default: @code{#~'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21333 +#: guix-git/doc/guix.texi:21695 msgid "List of environment variables passed to the @command{mysqld} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21334 +#: guix-git/doc/guix.texi:21696 #, no-wrap msgid "@code{auto-upgrade?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21339 +#: guix-git/doc/guix.texi:21701 msgid "Whether to automatically run @command{mysql_upgrade} after starting the service. This is necessary to upgrade the @dfn{system schema} after ``major'' updates (such as switching from MariaDB 10.4 to 10.5), but can be disabled if you would rather do that manually." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21343 +#: guix-git/doc/guix.texi:21705 #, no-wrap msgid "Memcached" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21345 +#: guix-git/doc/guix.texi:21707 #, no-wrap msgid "{Scheme Variable} memcached-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21349 +#: guix-git/doc/guix.texi:21711 msgid "This is the service type for the @uref{https://memcached.org/, Memcached} service, which provides a distributed in memory cache. The value for the service type is a @code{memcached-configuration} object." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21353 +#: guix-git/doc/guix.texi:21715 #, no-wrap msgid "(service memcached-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21355 +#: guix-git/doc/guix.texi:21717 #, no-wrap msgid "{Data Type} memcached-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21357 +#: guix-git/doc/guix.texi:21719 msgid "Data type representing the configuration of memcached." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21359 +#: guix-git/doc/guix.texi:21721 #, no-wrap msgid "@code{memcached} (default: @code{memcached})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21361 +#: guix-git/doc/guix.texi:21723 msgid "The Memcached package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21362 +#: guix-git/doc/guix.texi:21724 #, no-wrap msgid "@code{interfaces} (default: @code{'(\"0.0.0.0\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21364 +#: guix-git/doc/guix.texi:21726 msgid "Network interfaces on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21365 +#: guix-git/doc/guix.texi:21727 #, no-wrap msgid "@code{tcp-port} (default: @code{11211})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21367 +#: guix-git/doc/guix.texi:21729 msgid "Port on which to accept connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21368 +#: guix-git/doc/guix.texi:21730 #, no-wrap msgid "@code{udp-port} (default: @code{11211})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21371 +#: guix-git/doc/guix.texi:21733 msgid "Port on which to accept UDP connections on, a value of 0 will disable listening on a UDP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21372 +#: guix-git/doc/guix.texi:21734 #, no-wrap msgid "@code{additional-options} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21374 +#: guix-git/doc/guix.texi:21736 msgid "Additional command line options to pass to @code{memcached}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21377 +#: guix-git/doc/guix.texi:21739 #, no-wrap msgid "Redis" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21379 +#: guix-git/doc/guix.texi:21741 #, no-wrap msgid "{Scheme Variable} redis-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21382 +#: guix-git/doc/guix.texi:21744 msgid "This is the service type for the @uref{https://redis.io/, Redis} key/value store, whose value is a @code{redis-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21384 +#: guix-git/doc/guix.texi:21746 #, no-wrap msgid "{Data Type} redis-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21386 +#: guix-git/doc/guix.texi:21748 msgid "Data type representing the configuration of redis." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21388 +#: guix-git/doc/guix.texi:21750 #, no-wrap msgid "@code{redis} (default: @code{redis})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21390 +#: guix-git/doc/guix.texi:21752 msgid "The Redis package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21391 +#: guix-git/doc/guix.texi:21753 #, no-wrap msgid "@code{bind} (default: @code{\"127.0.0.1\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21393 +#: guix-git/doc/guix.texi:21755 msgid "Network interface on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21394 +#: guix-git/doc/guix.texi:21756 #, no-wrap msgid "@code{port} (default: @code{6379})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21397 +#: guix-git/doc/guix.texi:21759 msgid "Port on which to accept connections on, a value of 0 will disable listening on a TCP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21398 +#: guix-git/doc/guix.texi:21760 #, no-wrap msgid "@code{working-directory} (default: @code{\"/var/lib/redis\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21400 +#: guix-git/doc/guix.texi:21762 msgid "Directory in which to store the database and related files." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21406 +#: guix-git/doc/guix.texi:21768 #, no-wrap msgid "mail" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21407 +#: guix-git/doc/guix.texi:21769 #, no-wrap msgid "email" msgstr "전자우편" #. type: Plain text -#: guix-git/doc/guix.texi:21412 +#: guix-git/doc/guix.texi:21774 msgid "The @code{(gnu services mail)} module provides Guix service definitions for email services: IMAP, POP3, and LMTP servers, as well as mail transport agents (MTAs). Lots of acronyms! These services are detailed in the subsections below." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21413 +#: guix-git/doc/guix.texi:21775 #, no-wrap msgid "Dovecot Service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21415 +#: guix-git/doc/guix.texi:21777 #, no-wrap msgid "{Scheme Procedure} dovecot-service [#:config (dovecot-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21417 +#: guix-git/doc/guix.texi:21779 msgid "Return a service that runs the Dovecot IMAP/POP3/LMTP mail server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21427 +#: guix-git/doc/guix.texi:21789 msgid "By default, Dovecot does not need much configuration; the default configuration object created by @code{(dovecot-configuration)} will suffice if your mail is delivered to @code{~/Maildir}. A self-signed certificate will be generated for TLS-protected connections, though Dovecot will also listen on cleartext ports by default. There are a number of options, though, which mail administrators might need to change, and as is the case with other services, Guix allows the system administrator to specify these parameters via a uniform Scheme interface." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21430 +#: guix-git/doc/guix.texi:21792 msgid "For example, to specify that mail is located at @code{maildir~/.mail}, one would instantiate the Dovecot service like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21435 +#: guix-git/doc/guix.texi:21797 #, no-wrap msgid "" "(dovecot-service #:config\n" @@ -38505,2433 +39125,2433 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21443 +#: guix-git/doc/guix.texi:21805 msgid "The available configuration parameters follow. Each parameter definition is preceded by its type; for example, @samp{string-list foo} indicates that the @code{foo} parameter should be specified as a list of strings. There is also a way to specify the configuration as a string, if you have an old @code{dovecot.conf} file that you want to port over from some other system; see the end for more details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21453 +#: guix-git/doc/guix.texi:21815 msgid "Available @code{dovecot-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21454 +#: guix-git/doc/guix.texi:21816 #, no-wrap msgid "{@code{dovecot-configuration} parameter} package dovecot" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21456 guix-git/doc/guix.texi:22805 +#: guix-git/doc/guix.texi:21818 guix-git/doc/guix.texi:23167 msgid "The dovecot package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21458 +#: guix-git/doc/guix.texi:21820 #, no-wrap msgid "{@code{dovecot-configuration} parameter} comma-separated-string-list listen" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21464 +#: guix-git/doc/guix.texi:21826 msgid "A list of IPs or hosts where to listen for connections. @samp{*} listens on all IPv4 interfaces, @samp{::} listens on all IPv6 interfaces. If you want to specify non-default ports or anything more complex, customize the address and port fields of the @samp{inet-listener} of the specific services you are interested in." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21466 +#: guix-git/doc/guix.texi:21828 #, no-wrap msgid "{@code{dovecot-configuration} parameter} protocol-configuration-list protocols" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21469 +#: guix-git/doc/guix.texi:21831 msgid "List of protocols we want to serve. Available protocols include @samp{imap}, @samp{pop3}, and @samp{lmtp}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21471 +#: guix-git/doc/guix.texi:21833 msgid "Available @code{protocol-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21472 +#: guix-git/doc/guix.texi:21834 #, no-wrap msgid "{@code{protocol-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21474 +#: guix-git/doc/guix.texi:21836 msgid "The name of the protocol." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21476 +#: guix-git/doc/guix.texi:21838 #, no-wrap msgid "{@code{protocol-configuration} parameter} string auth-socket-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21480 +#: guix-git/doc/guix.texi:21842 msgid "UNIX socket path to the master authentication server to find users. This is used by imap (for shared users) and lda. It defaults to @samp{\"/var/run/dovecot/auth-userdb\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21482 +#: guix-git/doc/guix.texi:21844 #, no-wrap msgid "{@code{protocol-configuration} parameter} boolean imap-metadata?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21487 +#: guix-git/doc/guix.texi:21849 msgid "Whether to enable the @code{IMAP METADATA} extension as defined in @uref{https://tools.ietf.org/html/rfc5464,RFC@tie{}5464}, which provides a means for clients to set and retrieve per-mailbox, per-user metadata and annotations over IMAP." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21490 +#: guix-git/doc/guix.texi:21852 msgid "If this is @samp{#t}, you must also specify a dictionary @i{via} the @code{mail-attribute-dict} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21495 +#: guix-git/doc/guix.texi:21857 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list managesieve-notify-capabilities" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21500 +#: guix-git/doc/guix.texi:21862 msgid "Which NOTIFY capabilities to report to clients that first connect to the ManageSieve service, before authentication. These may differ from the capabilities offered to authenticated users. If this field is left empty, report what the Sieve interpreter supports by default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21504 +#: guix-git/doc/guix.texi:21866 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list managesieve-sieve-capability" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21509 +#: guix-git/doc/guix.texi:21871 msgid "Which SIEVE capabilities to report to clients that first connect to the ManageSieve service, before authentication. These may differ from the capabilities offered to authenticated users. If this field is left empty, report what the Sieve interpreter supports by default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21514 +#: guix-git/doc/guix.texi:21876 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list mail-plugins" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21516 +#: guix-git/doc/guix.texi:21878 msgid "Space separated list of plugins to load." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21518 +#: guix-git/doc/guix.texi:21880 #, no-wrap msgid "{@code{protocol-configuration} parameter} non-negative-integer mail-max-userip-connections" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21522 +#: guix-git/doc/guix.texi:21884 msgid "Maximum number of IMAP connections allowed for a user from each IP address. NOTE: The username is compared case-sensitively. Defaults to @samp{10}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21526 +#: guix-git/doc/guix.texi:21888 #, no-wrap msgid "{@code{dovecot-configuration} parameter} service-configuration-list services" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21530 +#: guix-git/doc/guix.texi:21892 msgid "List of services to enable. Available services include @samp{imap}, @samp{imap-login}, @samp{pop3}, @samp{pop3-login}, @samp{auth}, and @samp{lmtp}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21532 +#: guix-git/doc/guix.texi:21894 msgid "Available @code{service-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21533 +#: guix-git/doc/guix.texi:21895 #, no-wrap msgid "{@code{service-configuration} parameter} string kind" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21538 +#: guix-git/doc/guix.texi:21900 msgid "The service kind. Valid values include @code{director}, @code{imap-login}, @code{pop3-login}, @code{lmtp}, @code{imap}, @code{pop3}, @code{auth}, @code{auth-worker}, @code{dict}, @code{tcpwrap}, @code{quota-warning}, or anything else." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21540 +#: guix-git/doc/guix.texi:21902 #, no-wrap msgid "{@code{service-configuration} parameter} listener-configuration-list listeners" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21545 +#: guix-git/doc/guix.texi:21907 msgid "Listeners for the service. A listener is either a @code{unix-listener-configuration}, a @code{fifo-listener-configuration}, or an @code{inet-listener-configuration}. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21547 +#: guix-git/doc/guix.texi:21909 msgid "Available @code{unix-listener-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21548 +#: guix-git/doc/guix.texi:21910 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21551 guix-git/doc/guix.texi:21574 +#: guix-git/doc/guix.texi:21913 guix-git/doc/guix.texi:21936 msgid "Path to the file, relative to @code{base-dir} field. This is also used as the section name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21553 +#: guix-git/doc/guix.texi:21915 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string mode" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21556 guix-git/doc/guix.texi:21579 +#: guix-git/doc/guix.texi:21918 guix-git/doc/guix.texi:21941 msgid "The access mode for the socket. Defaults to @samp{\"0600\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21558 +#: guix-git/doc/guix.texi:21920 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21561 guix-git/doc/guix.texi:21584 +#: guix-git/doc/guix.texi:21923 guix-git/doc/guix.texi:21946 msgid "The user to own the socket. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21563 +#: guix-git/doc/guix.texi:21925 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21566 guix-git/doc/guix.texi:21589 +#: guix-git/doc/guix.texi:21928 guix-git/doc/guix.texi:21951 msgid "The group to own the socket. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21570 +#: guix-git/doc/guix.texi:21932 msgid "Available @code{fifo-listener-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21571 +#: guix-git/doc/guix.texi:21933 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21576 +#: guix-git/doc/guix.texi:21938 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string mode" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21581 +#: guix-git/doc/guix.texi:21943 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21586 +#: guix-git/doc/guix.texi:21948 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21593 +#: guix-git/doc/guix.texi:21955 msgid "Available @code{inet-listener-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21594 +#: guix-git/doc/guix.texi:21956 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} string protocol" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21596 +#: guix-git/doc/guix.texi:21958 msgid "The protocol to listen for." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21598 +#: guix-git/doc/guix.texi:21960 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} string address" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21601 +#: guix-git/doc/guix.texi:21963 msgid "The address on which to listen, or empty for all addresses. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21603 +#: guix-git/doc/guix.texi:21965 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} non-negative-integer port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21605 +#: guix-git/doc/guix.texi:21967 msgid "The port on which to listen." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21607 +#: guix-git/doc/guix.texi:21969 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} boolean ssl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21611 +#: guix-git/doc/guix.texi:21973 msgid "Whether to use SSL for this service; @samp{yes}, @samp{no}, or @samp{required}. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21615 +#: guix-git/doc/guix.texi:21977 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer client-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21620 +#: guix-git/doc/guix.texi:21982 msgid "Maximum number of simultaneous client connections per process. Once this number of connections is received, the next incoming connection will prompt Dovecot to spawn another process. If set to 0, @code{default-client-limit} is used instead." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21625 +#: guix-git/doc/guix.texi:21987 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer service-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21630 +#: guix-git/doc/guix.texi:21992 msgid "Number of connections to handle before starting a new process. Typically the only useful values are 0 (unlimited) or 1. 1 is more secure, but 0 is faster. . Defaults to @samp{1}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21633 +#: guix-git/doc/guix.texi:21995 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer process-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21636 +#: guix-git/doc/guix.texi:21998 msgid "Maximum number of processes that can exist for this service. If set to 0, @code{default-process-limit} is used instead." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21641 +#: guix-git/doc/guix.texi:22003 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer process-min-avail" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21644 +#: guix-git/doc/guix.texi:22006 msgid "Number of processes to always keep waiting for more connections. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21646 +#: guix-git/doc/guix.texi:22008 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer vsz-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21650 +#: guix-git/doc/guix.texi:22012 msgid "If you set @samp{service-count 0}, you probably need to grow this. Defaults to @samp{256000000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21654 +#: guix-git/doc/guix.texi:22016 #, no-wrap msgid "{@code{dovecot-configuration} parameter} dict-configuration dict" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21657 +#: guix-git/doc/guix.texi:22019 msgid "Dict configuration, as created by the @code{dict-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21659 +#: guix-git/doc/guix.texi:22021 msgid "Available @code{dict-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21660 +#: guix-git/doc/guix.texi:22022 #, no-wrap msgid "{@code{dict-configuration} parameter} free-form-fields entries" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21663 +#: guix-git/doc/guix.texi:22025 msgid "A list of key-value pairs that this dict should hold. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21667 +#: guix-git/doc/guix.texi:22029 #, no-wrap msgid "{@code{dovecot-configuration} parameter} passdb-configuration-list passdbs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21670 +#: guix-git/doc/guix.texi:22032 msgid "A list of passdb configurations, each one created by the @code{passdb-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21672 +#: guix-git/doc/guix.texi:22034 msgid "Available @code{passdb-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21673 +#: guix-git/doc/guix.texi:22035 #, no-wrap msgid "{@code{passdb-configuration} parameter} string driver" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21678 +#: guix-git/doc/guix.texi:22040 msgid "The driver that the passdb should use. Valid values include @samp{pam}, @samp{passwd}, @samp{shadow}, @samp{bsdauth}, and @samp{static}. Defaults to @samp{\"pam\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21680 +#: guix-git/doc/guix.texi:22042 #, no-wrap msgid "{@code{passdb-configuration} parameter} space-separated-string-list args" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21683 +#: guix-git/doc/guix.texi:22045 msgid "Space separated list of arguments to the passdb driver. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21687 +#: guix-git/doc/guix.texi:22049 #, no-wrap msgid "{@code{dovecot-configuration} parameter} userdb-configuration-list userdbs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21690 +#: guix-git/doc/guix.texi:22052 msgid "List of userdb configurations, each one created by the @code{userdb-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21692 +#: guix-git/doc/guix.texi:22054 msgid "Available @code{userdb-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21693 +#: guix-git/doc/guix.texi:22055 #, no-wrap msgid "{@code{userdb-configuration} parameter} string driver" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21697 +#: guix-git/doc/guix.texi:22059 msgid "The driver that the userdb should use. Valid values include @samp{passwd} and @samp{static}. Defaults to @samp{\"passwd\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21699 +#: guix-git/doc/guix.texi:22061 #, no-wrap msgid "{@code{userdb-configuration} parameter} space-separated-string-list args" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21702 +#: guix-git/doc/guix.texi:22064 msgid "Space separated list of arguments to the userdb driver. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21704 +#: guix-git/doc/guix.texi:22066 #, no-wrap msgid "{@code{userdb-configuration} parameter} free-form-args override-fields" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21707 +#: guix-git/doc/guix.texi:22069 msgid "Override fields from passwd. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21711 +#: guix-git/doc/guix.texi:22073 #, no-wrap msgid "{@code{dovecot-configuration} parameter} plugin-configuration plugin-configuration" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21714 +#: guix-git/doc/guix.texi:22076 msgid "Plug-in configuration, created by the @code{plugin-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21716 +#: guix-git/doc/guix.texi:22078 #, no-wrap msgid "{@code{dovecot-configuration} parameter} list-of-namespace-configuration namespaces" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21719 +#: guix-git/doc/guix.texi:22081 msgid "List of namespaces. Each item in the list is created by the @code{namespace-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21721 +#: guix-git/doc/guix.texi:22083 msgid "Available @code{namespace-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21722 +#: guix-git/doc/guix.texi:22084 #, no-wrap msgid "{@code{namespace-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21724 +#: guix-git/doc/guix.texi:22086 msgid "Name for this namespace." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21726 +#: guix-git/doc/guix.texi:22088 #, no-wrap msgid "{@code{namespace-configuration} parameter} string type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21729 +#: guix-git/doc/guix.texi:22091 msgid "Namespace type: @samp{private}, @samp{shared} or @samp{public}. Defaults to @samp{\"private\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21731 +#: guix-git/doc/guix.texi:22093 #, no-wrap msgid "{@code{namespace-configuration} parameter} string separator" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21737 +#: guix-git/doc/guix.texi:22099 msgid "Hierarchy separator to use. You should use the same separator for all namespaces or some clients get confused. @samp{/} is usually a good one. The default however depends on the underlying mail storage format. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21739 +#: guix-git/doc/guix.texi:22101 #, no-wrap msgid "{@code{namespace-configuration} parameter} string prefix" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21743 +#: guix-git/doc/guix.texi:22105 msgid "Prefix required to access this namespace. This needs to be different for all namespaces. For example @samp{Public/}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21745 +#: guix-git/doc/guix.texi:22107 #, no-wrap msgid "{@code{namespace-configuration} parameter} string location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21749 +#: guix-git/doc/guix.texi:22111 msgid "Physical location of the mailbox. This is in the same format as mail_location, which is also the default for it. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21751 +#: guix-git/doc/guix.texi:22113 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean inbox?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21755 +#: guix-git/doc/guix.texi:22117 msgid "There can be only one INBOX, and this setting defines which namespace has it. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21757 +#: guix-git/doc/guix.texi:22119 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean hidden?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21765 +#: guix-git/doc/guix.texi:22127 msgid "If namespace is hidden, it's not advertised to clients via NAMESPACE extension. You'll most likely also want to set @samp{list? #f}. This is mostly useful when converting from another server with different namespaces which you want to deprecate but still keep working. For example you can create hidden namespaces with prefixes @samp{~/mail/}, @samp{~%u/mail/} and @samp{mail/}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21767 +#: guix-git/doc/guix.texi:22129 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean list?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21773 +#: guix-git/doc/guix.texi:22135 msgid "Show the mailboxes under this namespace with the LIST command. This makes the namespace visible for clients that do not support the NAMESPACE extension. The special @code{children} value lists child mailboxes, but hides the namespace prefix. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21775 +#: guix-git/doc/guix.texi:22137 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean subscriptions?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21780 +#: guix-git/doc/guix.texi:22142 msgid "Namespace handles its own subscriptions. If set to @code{#f}, the parent namespace handles them. The empty prefix should always have this as @code{#t}). Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21782 +#: guix-git/doc/guix.texi:22144 #, no-wrap msgid "{@code{namespace-configuration} parameter} mailbox-configuration-list mailboxes" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21785 +#: guix-git/doc/guix.texi:22147 msgid "List of predefined mailboxes in this namespace. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21787 +#: guix-git/doc/guix.texi:22149 msgid "Available @code{mailbox-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21788 +#: guix-git/doc/guix.texi:22150 #, no-wrap msgid "{@code{mailbox-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21790 +#: guix-git/doc/guix.texi:22152 msgid "Name for this mailbox." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21792 +#: guix-git/doc/guix.texi:22154 #, no-wrap msgid "{@code{mailbox-configuration} parameter} string auto" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21796 +#: guix-git/doc/guix.texi:22158 msgid "@samp{create} will automatically create this mailbox. @samp{subscribe} will both create and subscribe to the mailbox. Defaults to @samp{\"no\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21798 +#: guix-git/doc/guix.texi:22160 #, no-wrap msgid "{@code{mailbox-configuration} parameter} space-separated-string-list special-use" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21803 +#: guix-git/doc/guix.texi:22165 msgid "List of IMAP @code{SPECIAL-USE} attributes as specified by RFC 6154. Valid values are @code{\\All}, @code{\\Archive}, @code{\\Drafts}, @code{\\Flagged}, @code{\\Junk}, @code{\\Sent}, and @code{\\Trash}. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21809 +#: guix-git/doc/guix.texi:22171 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name base-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21812 +#: guix-git/doc/guix.texi:22174 msgid "Base directory where to store runtime data. Defaults to @samp{\"/var/run/dovecot/\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21814 +#: guix-git/doc/guix.texi:22176 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string login-greeting" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21817 +#: guix-git/doc/guix.texi:22179 msgid "Greeting message for clients. Defaults to @samp{\"Dovecot ready.\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21819 +#: guix-git/doc/guix.texi:22181 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-trusted-networks" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21826 +#: guix-git/doc/guix.texi:22188 msgid "List of trusted network ranges. Connections from these IPs are allowed to override their IP addresses and ports (for logging and for authentication checks). @samp{disable-plaintext-auth} is also ignored for these networks. Typically you would specify your IMAP proxy servers here. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21828 +#: guix-git/doc/guix.texi:22190 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-access-sockets" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21831 +#: guix-git/doc/guix.texi:22193 msgid "List of login access check sockets (e.g.@: tcpwrap). Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21833 +#: guix-git/doc/guix.texi:22195 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean verbose-proctitle?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21839 +#: guix-git/doc/guix.texi:22201 msgid "Show more verbose process titles (in ps). Currently shows user name and IP address. Useful for seeing who is actually using the IMAP processes (e.g.@: shared mailboxes or if the same uid is used for multiple accounts). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21841 +#: guix-git/doc/guix.texi:22203 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean shutdown-clients?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21847 +#: guix-git/doc/guix.texi:22209 msgid "Should all processes be killed when Dovecot master process shuts down. Setting this to @code{#f} means that Dovecot can be upgraded without forcing existing client connections to close (although that could also be a problem if the upgrade is e.g.@: due to a security fix). Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21849 +#: guix-git/doc/guix.texi:22211 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer doveadm-worker-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21853 +#: guix-git/doc/guix.texi:22215 msgid "If non-zero, run mail commands via this many connections to doveadm server, instead of running them directly in the same process. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21855 +#: guix-git/doc/guix.texi:22217 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string doveadm-socket-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21858 +#: guix-git/doc/guix.texi:22220 msgid "UNIX socket or host:port used for connecting to doveadm server. Defaults to @samp{\"doveadm-server\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21860 +#: guix-git/doc/guix.texi:22222 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list import-environment" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21864 +#: guix-git/doc/guix.texi:22226 msgid "List of environment variables that are preserved on Dovecot startup and passed down to all of its child processes. You can also give key=value pairs to always set specific settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21866 +#: guix-git/doc/guix.texi:22228 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean disable-plaintext-auth?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21873 +#: guix-git/doc/guix.texi:22235 msgid "Disable LOGIN command and all other plaintext authentications unless SSL/TLS is used (LOGINDISABLED capability). Note that if the remote IP matches the local IP (i.e.@: you're connecting from the same computer), the connection is considered secure and plaintext authentication is allowed. See also ssl=required setting. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21875 +#: guix-git/doc/guix.texi:22237 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer auth-cache-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21880 +#: guix-git/doc/guix.texi:22242 msgid "Authentication cache size (e.g.@: @samp{#e10e6}). 0 means it's disabled. Note that bsdauth, PAM and vpopmail require @samp{cache-key} to be set for caching to be used. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21882 +#: guix-git/doc/guix.texi:22244 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-cache-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21890 +#: guix-git/doc/guix.texi:22252 msgid "Time to live for cached data. After TTL expires the cached record is no longer used, *except* if the main database lookup returns internal failure. We also try to handle password changes automatically: If user's previous authentication was successful, but this one wasn't, the cache isn't used. For now this works only with plaintext authentication. Defaults to @samp{\"1 hour\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21892 +#: guix-git/doc/guix.texi:22254 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-cache-negative-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21896 +#: guix-git/doc/guix.texi:22258 msgid "TTL for negative hits (user not found, password mismatch). 0 disables caching them completely. Defaults to @samp{\"1 hour\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21898 +#: guix-git/doc/guix.texi:22260 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list auth-realms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21904 +#: guix-git/doc/guix.texi:22266 msgid "List of realms for SASL authentication mechanisms that need them. You can leave it empty if you don't want to support multiple realms. Many clients simply use the first one listed here, so keep the default realm first. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21906 +#: guix-git/doc/guix.texi:22268 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-default-realm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21911 +#: guix-git/doc/guix.texi:22273 msgid "Default realm/domain to use if none was specified. This is used for both SASL realms and appending @@domain to username in plaintext logins. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21913 +#: guix-git/doc/guix.texi:22275 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-chars" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21920 +#: guix-git/doc/guix.texi:22282 msgid "List of allowed characters in username. If the user-given username contains a character not listed in here, the login automatically fails. This is just an extra check to make sure user can't exploit any potential quote escaping vulnerabilities with SQL/LDAP databases. If you want to allow all characters, set this value to empty. Defaults to @samp{\"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@@\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21922 +#: guix-git/doc/guix.texi:22284 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-translation" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21928 +#: guix-git/doc/guix.texi:22290 msgid "Username character translations before it's looked up from databases. The value contains series of from -> to characters. For example @samp{#@@/@@} means that @samp{#} and @samp{/} characters are translated to @samp{@@}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21930 +#: guix-git/doc/guix.texi:22292 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21937 +#: guix-git/doc/guix.texi:22299 msgid "Username formatting before it's looked up from databases. You can use the standard variables here, e.g.@: %Lu would lowercase the username, %n would drop away the domain if it was given, or @samp{%n-AT-%d} would change the @samp{@@} into @samp{-AT-}. This translation is done after @samp{auth-username-translation} changes. Defaults to @samp{\"%Lu\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21939 +#: guix-git/doc/guix.texi:22301 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-master-user-separator" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21947 +#: guix-git/doc/guix.texi:22309 msgid "If you want to allow master users to log in by specifying the master username within the normal username string (i.e.@: not using SASL mechanism's support for it), you can specify the separator character here. The format is then . UW-IMAP uses @samp{*} as the separator, so that could be a good choice. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21949 +#: guix-git/doc/guix.texi:22311 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-anonymous-username" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21953 +#: guix-git/doc/guix.texi:22315 msgid "Username to use for users logging in with ANONYMOUS SASL mechanism. Defaults to @samp{\"anonymous\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21955 +#: guix-git/doc/guix.texi:22317 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer auth-worker-max-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21960 +#: guix-git/doc/guix.texi:22322 msgid "Maximum number of dovecot-auth worker processes. They're used to execute blocking passdb and userdb queries (e.g.@: MySQL and PAM). They're automatically created and destroyed as needed. Defaults to @samp{30}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21962 +#: guix-git/doc/guix.texi:22324 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-gssapi-hostname" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21967 +#: guix-git/doc/guix.texi:22329 msgid "Host name to use in GSSAPI principal names. The default is to use the name returned by gethostname(). Use @samp{$ALL} (with quotes) to allow all keytab entries. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21969 +#: guix-git/doc/guix.texi:22331 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-krb5-keytab" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21975 +#: guix-git/doc/guix.texi:22337 msgid "Kerberos keytab to use for the GSSAPI mechanism. Will use the system default (usually @file{/etc/krb5.keytab}) if not specified. You may need to change the auth service to run as root to be able to read this file. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21977 +#: guix-git/doc/guix.texi:22339 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-use-winbind?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21982 +#: guix-git/doc/guix.texi:22344 msgid "Do NTLM and GSS-SPNEGO authentication using Samba's winbind daemon and @samp{ntlm-auth} helper. . Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21984 +#: guix-git/doc/guix.texi:22346 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name auth-winbind-helper-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21987 +#: guix-git/doc/guix.texi:22349 msgid "Path for Samba's @samp{ntlm-auth} helper binary. Defaults to @samp{\"/usr/bin/ntlm_auth\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21989 +#: guix-git/doc/guix.texi:22351 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-failure-delay" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21992 +#: guix-git/doc/guix.texi:22354 msgid "Time to delay before replying to failed authentications. Defaults to @samp{\"2 secs\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21994 +#: guix-git/doc/guix.texi:22356 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-ssl-require-client-cert?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21998 +#: guix-git/doc/guix.texi:22360 msgid "Require a valid SSL client certificate or the authentication fails. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22000 +#: guix-git/doc/guix.texi:22362 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-ssl-username-from-cert?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22005 +#: guix-git/doc/guix.texi:22367 msgid "Take the username from client's SSL certificate, using @code{X509_NAME_get_text_by_NID()} which returns the subject's DN's CommonName. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22007 +#: guix-git/doc/guix.texi:22369 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list auth-mechanisms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22013 +#: guix-git/doc/guix.texi:22375 msgid "List of wanted authentication mechanisms. Supported mechanisms are: @samp{plain}, @samp{login}, @samp{digest-md5}, @samp{cram-md5}, @samp{ntlm}, @samp{rpa}, @samp{apop}, @samp{anonymous}, @samp{gssapi}, @samp{otp}, @samp{skey}, and @samp{gss-spnego}. NOTE: See also @samp{disable-plaintext-auth} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22015 +#: guix-git/doc/guix.texi:22377 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list director-servers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22020 +#: guix-git/doc/guix.texi:22382 msgid "List of IPs or hostnames to all director servers, including ourself. Ports can be specified as ip:port. The default port is the same as what director service's @samp{inet-listener} is using. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22022 +#: guix-git/doc/guix.texi:22384 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list director-mail-servers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22026 +#: guix-git/doc/guix.texi:22388 msgid "List of IPs or hostnames to all backend mail servers. Ranges are allowed too, like 10.0.0.10-10.0.0.30. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22028 +#: guix-git/doc/guix.texi:22390 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string director-user-expire" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22032 +#: guix-git/doc/guix.texi:22394 msgid "How long to redirect users to a specific server after it no longer has any connections. Defaults to @samp{\"15 min\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22034 +#: guix-git/doc/guix.texi:22396 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string director-username-hash" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22039 +#: guix-git/doc/guix.texi:22401 msgid "How the username is translated before being hashed. Useful values include %Ln if user can log in with or without @@domain, %Ld if mailboxes are shared within domain. Defaults to @samp{\"%Lu\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22041 +#: guix-git/doc/guix.texi:22403 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string log-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22045 +#: guix-git/doc/guix.texi:22407 msgid "Log file to use for error messages. @samp{syslog} logs to syslog, @samp{/dev/stderr} logs to stderr. Defaults to @samp{\"syslog\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22047 +#: guix-git/doc/guix.texi:22409 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string info-log-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22051 +#: guix-git/doc/guix.texi:22413 msgid "Log file to use for informational messages. Defaults to @samp{log-path}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22053 +#: guix-git/doc/guix.texi:22415 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string debug-log-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22057 +#: guix-git/doc/guix.texi:22419 msgid "Log file to use for debug messages. Defaults to @samp{info-log-path}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22059 +#: guix-git/doc/guix.texi:22421 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string syslog-facility" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22064 +#: guix-git/doc/guix.texi:22426 msgid "Syslog facility to use if you're logging to syslog. Usually if you don't want to use @samp{mail}, you'll use local0..local7. Also other standard facilities are supported. Defaults to @samp{\"mail\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22066 +#: guix-git/doc/guix.texi:22428 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-verbose?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22070 +#: guix-git/doc/guix.texi:22432 msgid "Log unsuccessful authentication attempts and the reasons why they failed. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22072 +#: guix-git/doc/guix.texi:22434 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-verbose-passwords" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22079 +#: guix-git/doc/guix.texi:22441 msgid "In case of password mismatches, log the attempted password. Valid values are no, plain and sha1. sha1 can be useful for detecting brute force password attempts vs. user simply trying the same password over and over again. You can also truncate the value to n chars by appending \":n\" (e.g.@: sha1:6). Defaults to @samp{\"no\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22081 +#: guix-git/doc/guix.texi:22443 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-debug?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22085 +#: guix-git/doc/guix.texi:22447 msgid "Even more verbose logging for debugging purposes. Shows for example SQL queries. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22087 +#: guix-git/doc/guix.texi:22449 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-debug-passwords?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22092 +#: guix-git/doc/guix.texi:22454 msgid "In case of password mismatches, log the passwords and used scheme so the problem can be debugged. Enabling this also enables @samp{auth-debug}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22094 +#: guix-git/doc/guix.texi:22456 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-debug?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22098 +#: guix-git/doc/guix.texi:22460 msgid "Enable mail process debugging. This can help you figure out why Dovecot isn't finding your mails. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22100 +#: guix-git/doc/guix.texi:22462 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean verbose-ssl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22103 +#: guix-git/doc/guix.texi:22465 msgid "Show protocol level SSL errors. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22105 +#: guix-git/doc/guix.texi:22467 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string log-timestamp" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22109 +#: guix-git/doc/guix.texi:22471 msgid "Prefix for each line written to log file. % codes are in strftime(3) format. Defaults to @samp{\"\\\"%b %d %H:%M:%S \\\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22111 +#: guix-git/doc/guix.texi:22473 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-log-format-elements" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22115 +#: guix-git/doc/guix.texi:22477 msgid "List of elements we want to log. The elements which have a non-empty variable value are joined together to form a comma-separated string." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22117 +#: guix-git/doc/guix.texi:22479 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string login-log-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22121 +#: guix-git/doc/guix.texi:22483 msgid "Login log format. %s contains @samp{login-log-format-elements} string, %$ contains the data we want to log. Defaults to @samp{\"%$: %s\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22123 +#: guix-git/doc/guix.texi:22485 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-log-prefix" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22127 +#: guix-git/doc/guix.texi:22489 msgid "Log prefix for mail processes. See doc/wiki/Variables.txt for list of possible variables you can use. Defaults to @samp{\"\\\"%s(%u)<%@{pid@}><%@{session@}>: \\\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22129 +#: guix-git/doc/guix.texi:22491 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string deliver-log-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22131 +#: guix-git/doc/guix.texi:22493 msgid "Format to use for logging mail deliveries. You can use variables:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22132 +#: guix-git/doc/guix.texi:22494 #, no-wrap msgid "%$" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22134 +#: guix-git/doc/guix.texi:22496 msgid "Delivery status message (e.g.@: @samp{saved to INBOX})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22134 +#: guix-git/doc/guix.texi:22496 #, no-wrap msgid "%m" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22136 +#: guix-git/doc/guix.texi:22498 msgid "Message-ID" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22136 guix-git/doc/guix.texi:22679 +#: guix-git/doc/guix.texi:22498 guix-git/doc/guix.texi:23041 #, no-wrap msgid "%s" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22138 +#: guix-git/doc/guix.texi:22500 msgid "Subject" msgstr "제목" #. type: item -#: guix-git/doc/guix.texi:22138 +#: guix-git/doc/guix.texi:22500 #, no-wrap msgid "%f" msgstr "%f" #. type: table -#: guix-git/doc/guix.texi:22140 +#: guix-git/doc/guix.texi:22502 msgid "From address" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22142 +#: guix-git/doc/guix.texi:22504 msgid "Physical size" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22142 +#: guix-git/doc/guix.texi:22504 #, no-wrap msgid "%w" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22144 +#: guix-git/doc/guix.texi:22506 msgid "Virtual size." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22146 +#: guix-git/doc/guix.texi:22508 msgid "Defaults to @samp{\"msgid=%m: %$\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22148 +#: guix-git/doc/guix.texi:22510 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22153 +#: guix-git/doc/guix.texi:22515 msgid "Location for users' mailboxes. The default is empty, which means that Dovecot tries to find the mailboxes automatically. This won't work if the user doesn't yet have any mail, so you should explicitly tell Dovecot the full location." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22159 +#: guix-git/doc/guix.texi:22521 msgid "If you're using mbox, giving a path to the INBOX file (e.g.@: @file{/var/mail/%u}) isn't enough. You'll also need to tell Dovecot where the other mailboxes are kept. This is called the @emph{root mail directory}, and it must be the first path given in the @samp{mail-location} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22161 +#: guix-git/doc/guix.texi:22523 msgid "There are a few special variables you can use, e.g.:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22165 +#: guix-git/doc/guix.texi:22527 msgid "username" msgstr "사용자 이름" #. type: item -#: guix-git/doc/guix.texi:22165 guix-git/doc/guix.texi:22675 +#: guix-git/doc/guix.texi:22527 guix-git/doc/guix.texi:23037 #, no-wrap msgid "%n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22167 +#: guix-git/doc/guix.texi:22529 msgid "user part in user@@domain, same as %u if there's no domain" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22167 +#: guix-git/doc/guix.texi:22529 #, no-wrap msgid "%d" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22169 +#: guix-git/doc/guix.texi:22531 msgid "domain part in user@@domain, empty if there's no domain" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22169 +#: guix-git/doc/guix.texi:22531 #, no-wrap msgid "%h" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22171 +#: guix-git/doc/guix.texi:22533 msgid "home director" msgstr "홈 디렉토리" #. type: deftypevr -#: guix-git/doc/guix.texi:22174 +#: guix-git/doc/guix.texi:22536 msgid "See doc/wiki/Variables.txt for full list. Some examples:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22175 +#: guix-git/doc/guix.texi:22537 #, no-wrap msgid "maildir:~/Maildir" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22176 +#: guix-git/doc/guix.texi:22538 #, no-wrap msgid "mbox:~/mail:INBOX=/var/mail/%u" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22177 +#: guix-git/doc/guix.texi:22539 #, no-wrap msgid "mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22182 +#: guix-git/doc/guix.texi:22544 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22187 +#: guix-git/doc/guix.texi:22549 msgid "System user and group used to access mails. If you use multiple, userdb can override these by returning uid or gid fields. You can use either numbers or names. . Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22189 +#: guix-git/doc/guix.texi:22551 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22194 +#: guix-git/doc/guix.texi:22556 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-privileged-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22200 +#: guix-git/doc/guix.texi:22562 msgid "Group to enable temporarily for privileged operations. Currently this is used only with INBOX when either its initial creation or dotlocking fails. Typically this is set to @samp{\"mail\"} to give access to @file{/var/mail}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22202 +#: guix-git/doc/guix.texi:22564 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-access-groups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22210 +#: guix-git/doc/guix.texi:22572 msgid "Grant access to these supplementary groups for mail processes. Typically these are used to set up access to shared mailboxes. Note that it may be dangerous to set these if users can create symlinks (e.g.@: if @samp{mail} group is set here, @code{ln -s /var/mail ~/mail/var} could allow a user to delete others' mailboxes, or @code{ln -s /secret/shared/box ~/mail/mybox} would allow reading it). Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22212 +#: guix-git/doc/guix.texi:22574 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attribute-dict" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22215 +#: guix-git/doc/guix.texi:22577 msgid "The location of a dictionary used to store @code{IMAP METADATA} as defined by @uref{https://tools.ietf.org/html/rfc5464, RFC@tie{}5464}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22218 +#: guix-git/doc/guix.texi:22580 msgid "The IMAP METADATA commands are available only if the ``imap'' protocol configuration's @code{imap-metadata?} field is @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22223 +#: guix-git/doc/guix.texi:22585 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-full-filesystem-access?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22229 +#: guix-git/doc/guix.texi:22591 msgid "Allow full file system access to clients. There's no access checks other than what the operating system does for the active UID/GID@. It works with both maildir and mboxes, allowing you to prefix mailboxes names with e.g.@: @file{/path/} or @file{~user/}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22231 +#: guix-git/doc/guix.texi:22593 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mmap-disable?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22235 +#: guix-git/doc/guix.texi:22597 msgid "Don't use @code{mmap()} at all. This is required if you store indexes to shared file systems (NFS or clustered file system). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22237 +#: guix-git/doc/guix.texi:22599 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean dotlock-use-excl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22242 +#: guix-git/doc/guix.texi:22604 msgid "Rely on @samp{O_EXCL} to work when creating dotlock files. NFS supports @samp{O_EXCL} since version 3, so this should be safe to use nowadays by default. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22244 +#: guix-git/doc/guix.texi:22606 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-fsync" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22246 +#: guix-git/doc/guix.texi:22608 msgid "When to use fsync() or fdatasync() calls:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22247 +#: guix-git/doc/guix.texi:22609 #, no-wrap msgid "optimized" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22249 +#: guix-git/doc/guix.texi:22611 msgid "Whenever necessary to avoid losing important data" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22251 +#: guix-git/doc/guix.texi:22613 msgid "Useful with e.g.@: NFS when @code{write()}s are delayed" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22253 +#: guix-git/doc/guix.texi:22615 msgid "Never use it (best performance, but crashes can lose data)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22255 +#: guix-git/doc/guix.texi:22617 msgid "Defaults to @samp{\"optimized\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22257 +#: guix-git/doc/guix.texi:22619 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-nfs-storage?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22262 +#: guix-git/doc/guix.texi:22624 msgid "Mail storage exists in NFS@. Set this to yes to make Dovecot flush NFS caches whenever needed. If you're using only a single mail server this isn't needed. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22264 +#: guix-git/doc/guix.texi:22626 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-nfs-index?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22268 +#: guix-git/doc/guix.texi:22630 msgid "Mail index files also exist in NFS@. Setting this to yes requires @samp{mmap-disable? #t} and @samp{fsync-disable? #f}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22270 +#: guix-git/doc/guix.texi:22632 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string lock-method" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22276 +#: guix-git/doc/guix.texi:22638 msgid "Locking method for index files. Alternatives are fcntl, flock and dotlock. Dotlocking uses some tricks which may create more disk I/O than other locking methods. NFS users: flock doesn't work, remember to change @samp{mmap-disable}. Defaults to @samp{\"fcntl\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22278 +#: guix-git/doc/guix.texi:22640 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name mail-temp-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22282 +#: guix-git/doc/guix.texi:22644 msgid "Directory in which LDA/LMTP temporarily stores incoming mails >128 kB. Defaults to @samp{\"/tmp\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22284 +#: guix-git/doc/guix.texi:22646 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer first-valid-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22290 +#: guix-git/doc/guix.texi:22652 msgid "Valid UID range for users. This is mostly to make sure that users can't log in as daemons or other system users. Note that denying root logins is hardcoded to dovecot binary and can't be done even if @samp{first-valid-uid} is set to 0. Defaults to @samp{500}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22292 +#: guix-git/doc/guix.texi:22654 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer last-valid-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22297 +#: guix-git/doc/guix.texi:22659 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer first-valid-gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22302 +#: guix-git/doc/guix.texi:22664 msgid "Valid GID range for users. Users having non-valid GID as primary group ID aren't allowed to log in. If user belongs to supplementary groups with non-valid GIDs, those groups are not set. Defaults to @samp{1}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22304 +#: guix-git/doc/guix.texi:22666 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer last-valid-gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22309 +#: guix-git/doc/guix.texi:22671 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-max-keyword-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22313 +#: guix-git/doc/guix.texi:22675 msgid "Maximum allowed length for mail keyword name. It's only forced when trying to create new keywords. Defaults to @samp{50}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22315 +#: guix-git/doc/guix.texi:22677 #, no-wrap msgid "{@code{dovecot-configuration} parameter} colon-separated-file-name-list valid-chroot-dirs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22325 +#: guix-git/doc/guix.texi:22687 msgid "List of directories under which chrooting is allowed for mail processes (i.e.@: @file{/var/mail} will allow chrooting to @file{/var/mail/foo/bar} too). This setting doesn't affect @samp{login-chroot} @samp{mail-chroot} or auth chroot settings. If this setting is empty, @samp{/./} in home dirs are ignored. WARNING: Never add directories here which local users can modify, that may lead to root exploit. Usually this should be done only if you don't allow shell access for users. . Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22327 +#: guix-git/doc/guix.texi:22689 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-chroot" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22336 +#: guix-git/doc/guix.texi:22698 msgid "Default chroot directory for mail processes. This can be overridden for specific users in user database by giving @samp{/./} in user's home directory (e.g.@: @samp{/home/./user} chroots into @file{/home}). Note that usually there is no real need to do chrooting, Dovecot doesn't allow users to access files outside their mail directory anyway. If your home directories are prefixed with the chroot directory, append @samp{/.} to @samp{mail-chroot}. . Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22338 +#: guix-git/doc/guix.texi:22700 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name auth-socket-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22342 +#: guix-git/doc/guix.texi:22704 msgid "UNIX socket path to master authentication server to find users. This is used by imap (for shared users) and lda. Defaults to @samp{\"/var/run/dovecot/auth-userdb\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22344 +#: guix-git/doc/guix.texi:22706 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name mail-plugin-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22347 +#: guix-git/doc/guix.texi:22709 msgid "Directory where to look up mail plugins. Defaults to @samp{\"/usr/lib/dovecot\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22349 +#: guix-git/doc/guix.texi:22711 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mail-plugins" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22353 +#: guix-git/doc/guix.texi:22715 msgid "List of plugins to load for all services. Plugins specific to IMAP, LDA, etc.@: are added to this list in their own .conf files. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22355 +#: guix-git/doc/guix.texi:22717 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-cache-min-mail-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22360 +#: guix-git/doc/guix.texi:22722 msgid "The minimum number of mails in a mailbox before updates are done to cache file. This allows optimizing Dovecot's behavior to do less disk writes at the cost of more disk reads. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22362 +#: guix-git/doc/guix.texi:22724 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mailbox-idle-check-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22369 +#: guix-git/doc/guix.texi:22731 msgid "When IDLE command is running, mailbox is checked once in a while to see if there are any new mails or other changes. This setting defines the minimum time to wait between those checks. Dovecot can also use dnotify, inotify and kqueue to find out immediately when changes occur. Defaults to @samp{\"30 secs\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22371 +#: guix-git/doc/guix.texi:22733 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-save-crlf?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22378 +#: guix-git/doc/guix.texi:22740 msgid "Save mails with CR+LF instead of plain LF@. This makes sending those mails take less CPU, especially with sendfile() syscall with Linux and FreeBSD@. But it also creates a bit more disk I/O which may just make it slower. Also note that if other software reads the mboxes/maildirs, they may handle the extra CRs wrong and cause problems. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22380 +#: guix-git/doc/guix.texi:22742 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-stat-dirs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22388 +#: guix-git/doc/guix.texi:22750 msgid "By default LIST command returns all entries in maildir beginning with a dot. Enabling this option makes Dovecot return only entries which are directories. This is done by stat()ing each entry, so it causes more disk I/O. (For systems setting struct @samp{dirent->d_type} this check is free and it's done always regardless of this setting). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22390 +#: guix-git/doc/guix.texi:22752 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-copy-with-hardlinks?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22395 +#: guix-git/doc/guix.texi:22757 msgid "When copying a message, do it with hard links whenever possible. This makes the performance much better, and it's unlikely to have any side effects. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22397 +#: guix-git/doc/guix.texi:22759 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-very-dirty-syncs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22402 +#: guix-git/doc/guix.texi:22764 msgid "Assume Dovecot is the only MUA accessing Maildir: Scan cur/ directory only when its mtime changes unexpectedly or when we can't find the mail otherwise. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22404 +#: guix-git/doc/guix.texi:22766 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mbox-read-locks" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22407 +#: guix-git/doc/guix.texi:22769 msgid "Which locking methods to use for locking mbox. There are four available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22409 +#: guix-git/doc/guix.texi:22771 #, no-wrap msgid "dotlock" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22413 +#: guix-git/doc/guix.texi:22775 msgid "Create .lock file. This is the oldest and most NFS-safe solution. If you want to use /var/mail/ like directory, the users will need write access to that directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22413 +#: guix-git/doc/guix.texi:22775 #, no-wrap msgid "dotlock-try" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22416 +#: guix-git/doc/guix.texi:22778 msgid "Same as dotlock, but if it fails because of permissions or because there isn't enough disk space, just skip it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22416 +#: guix-git/doc/guix.texi:22778 #, no-wrap msgid "fcntl" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22418 +#: guix-git/doc/guix.texi:22780 msgid "Use this if possible. Works with NFS too if lockd is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22418 +#: guix-git/doc/guix.texi:22780 #, no-wrap msgid "flock" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22420 guix-git/doc/guix.texi:22422 +#: guix-git/doc/guix.texi:22782 guix-git/doc/guix.texi:22784 msgid "May not exist in all systems. Doesn't work with NFS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22420 +#: guix-git/doc/guix.texi:22782 #, no-wrap msgid "lockf" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22428 +#: guix-git/doc/guix.texi:22790 msgid "You can use multiple locking methods; if you do the order they're declared in is important to avoid deadlocks if other MTAs/MUAs are using multiple locking methods as well. Some operating systems don't allow using some of them simultaneously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22430 +#: guix-git/doc/guix.texi:22792 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mbox-write-locks" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22434 +#: guix-git/doc/guix.texi:22796 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mbox-lock-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22437 +#: guix-git/doc/guix.texi:22799 msgid "Maximum time to wait for lock (all of them) before aborting. Defaults to @samp{\"5 mins\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22439 +#: guix-git/doc/guix.texi:22801 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mbox-dotlock-change-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22443 +#: guix-git/doc/guix.texi:22805 msgid "If dotlock exists but the mailbox isn't modified in any way, override the lock file after this much time. Defaults to @samp{\"2 mins\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22445 +#: guix-git/doc/guix.texi:22807 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-dirty-syncs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22456 +#: guix-git/doc/guix.texi:22818 msgid "When mbox changes unexpectedly we have to fully read it to find out what changed. If the mbox is large this can take a long time. Since the change is usually just a newly appended mail, it'd be faster to simply read the new mails. If this setting is enabled, Dovecot does this but still safely fallbacks to re-reading the whole mbox file whenever something in mbox isn't how it's expected to be. The only real downside to this setting is that if some other MUA changes message flags, Dovecot doesn't notice it immediately. Note that a full sync is done with SELECT, EXAMINE, EXPUNGE and CHECK commands. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22458 +#: guix-git/doc/guix.texi:22820 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-very-dirty-syncs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22463 +#: guix-git/doc/guix.texi:22825 msgid "Like @samp{mbox-dirty-syncs}, but don't do full syncs even with SELECT, EXAMINE, EXPUNGE or CHECK commands. If this is set, @samp{mbox-dirty-syncs} is ignored. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22465 +#: guix-git/doc/guix.texi:22827 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-lazy-writes?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22471 +#: guix-git/doc/guix.texi:22833 msgid "Delay writing mbox headers until doing a full write sync (EXPUNGE and CHECK commands and when closing the mailbox). This is especially useful for POP3 where clients often delete all mails. The downside is that our changes aren't immediately visible to other MUAs. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22473 +#: guix-git/doc/guix.texi:22835 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mbox-min-index-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22478 +#: guix-git/doc/guix.texi:22840 msgid "If mbox size is smaller than this (e.g.@: 100k), don't write index files. If an index file already exists it's still read, just not updated. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22480 +#: guix-git/doc/guix.texi:22842 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mdbox-rotate-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22483 +#: guix-git/doc/guix.texi:22845 msgid "Maximum dbox file size until it's rotated. Defaults to @samp{10000000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22485 +#: guix-git/doc/guix.texi:22847 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mdbox-rotate-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22490 +#: guix-git/doc/guix.texi:22852 msgid "Maximum dbox file age until it's rotated. Typically in days. Day begins from midnight, so 1d = today, 2d = yesterday, etc. 0 = check disabled. Defaults to @samp{\"1d\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22492 +#: guix-git/doc/guix.texi:22854 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mdbox-preallocate-space?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22497 +#: guix-git/doc/guix.texi:22859 msgid "When creating new mdbox files, immediately preallocate their size to @samp{mdbox-rotate-size}. This setting currently works only in Linux with some file systems (ext4, xfs). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22499 +#: guix-git/doc/guix.texi:22861 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22503 +#: guix-git/doc/guix.texi:22865 msgid "sdbox and mdbox support saving mail attachments to external files, which also allows single instance storage for them. Other backends don't support this for now." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22505 +#: guix-git/doc/guix.texi:22867 msgid "WARNING: This feature hasn't been tested much yet. Use at your own risk." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22508 +#: guix-git/doc/guix.texi:22870 msgid "Directory root where to store mail attachments. Disabled, if empty. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22510 +#: guix-git/doc/guix.texi:22872 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-attachment-min-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22515 +#: guix-git/doc/guix.texi:22877 msgid "Attachments smaller than this aren't saved externally. It's also possible to write a plugin to disable saving specific attachments externally. Defaults to @samp{128000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22517 +#: guix-git/doc/guix.texi:22879 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-fs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22519 +#: guix-git/doc/guix.texi:22881 msgid "File system backend to use for saving attachments:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22520 +#: guix-git/doc/guix.texi:22882 #, no-wrap msgid "posix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22522 +#: guix-git/doc/guix.texi:22884 msgid "No SiS done by Dovecot (but this might help FS's own deduplication)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22522 +#: guix-git/doc/guix.texi:22884 #, no-wrap msgid "sis posix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22524 +#: guix-git/doc/guix.texi:22886 msgid "SiS with immediate byte-by-byte comparison during saving" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22524 +#: guix-git/doc/guix.texi:22886 #, no-wrap msgid "sis-queue posix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22526 +#: guix-git/doc/guix.texi:22888 msgid "SiS with delayed comparison and deduplication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22528 +#: guix-git/doc/guix.texi:22890 msgid "Defaults to @samp{\"sis posix\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22530 +#: guix-git/doc/guix.texi:22892 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-hash" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22536 +#: guix-git/doc/guix.texi:22898 msgid "Hash format to use in attachment filenames. You can add any text and variables: @code{%@{md4@}}, @code{%@{md5@}}, @code{%@{sha1@}}, @code{%@{sha256@}}, @code{%@{sha512@}}, @code{%@{size@}}. Variables can be truncated, e.g.@: @code{%@{sha256:80@}} returns only first 80 bits. Defaults to @samp{\"%@{sha1@}\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22538 +#: guix-git/doc/guix.texi:22900 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-process-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22543 +#: guix-git/doc/guix.texi:22905 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-client-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22546 guix-git/doc/guix.texi:30171 +#: guix-git/doc/guix.texi:22908 guix-git/doc/guix.texi:30536 msgid "Defaults to @samp{1000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22548 +#: guix-git/doc/guix.texi:22910 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-vsz-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22553 +#: guix-git/doc/guix.texi:22915 msgid "Default VSZ (virtual memory size) limit for service processes. This is mainly intended to catch and kill processes that leak memory before they eat up everything. Defaults to @samp{256000000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22555 +#: guix-git/doc/guix.texi:22917 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string default-login-user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22560 +#: guix-git/doc/guix.texi:22922 msgid "Login user is internally used by login processes. This is the most untrusted user in Dovecot system. It shouldn't have access to anything at all. Defaults to @samp{\"dovenull\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22562 +#: guix-git/doc/guix.texi:22924 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string default-internal-user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22567 +#: guix-git/doc/guix.texi:22929 msgid "Internal user is used by unprivileged processes. It should be separate from login user, so that login processes can't disturb other processes. Defaults to @samp{\"dovecot\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22569 +#: guix-git/doc/guix.texi:22931 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string ssl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22572 +#: guix-git/doc/guix.texi:22934 msgid "SSL/TLS support: yes, no, required. . Defaults to @samp{\"required\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22574 +#: guix-git/doc/guix.texi:22936 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string ssl-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22577 +#: guix-git/doc/guix.texi:22939 msgid "PEM encoded X.509 SSL/TLS certificate (public key). Defaults to @samp{\" was automatically rejected:%n%r\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22687 +#: guix-git/doc/guix.texi:23049 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string recipient-delimiter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22691 +#: guix-git/doc/guix.texi:23053 msgid "Delimiter character between local-part and detail in email address. Defaults to @samp{\"+\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22693 +#: guix-git/doc/guix.texi:23055 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string lda-original-recipient-header" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22699 +#: guix-git/doc/guix.texi:23061 msgid "Header where the original recipient address (SMTP's RCPT TO: address) is taken from if not available elsewhere. With dovecot-lda -a parameter overrides this. A commonly used header for this is X-Original-To. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22701 +#: guix-git/doc/guix.texi:23063 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean lda-mailbox-autocreate?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22705 +#: guix-git/doc/guix.texi:23067 msgid "Should saving a mail to a nonexistent mailbox automatically create it?. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22707 +#: guix-git/doc/guix.texi:23069 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean lda-mailbox-autosubscribe?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22711 +#: guix-git/doc/guix.texi:23073 msgid "Should automatically created mailboxes be also automatically subscribed?. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22713 +#: guix-git/doc/guix.texi:23075 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer imap-max-line-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22719 +#: guix-git/doc/guix.texi:23081 msgid "Maximum IMAP command line length. Some clients generate very long command lines with huge mailboxes, so you may need to raise this if you get \"Too long argument\" or \"IMAP command line too large\" errors often. Defaults to @samp{64000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22721 +#: guix-git/doc/guix.texi:23083 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-logout-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22723 +#: guix-git/doc/guix.texi:23085 msgid "IMAP logout format string:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22724 +#: guix-git/doc/guix.texi:23086 #, no-wrap msgid "%i" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22726 +#: guix-git/doc/guix.texi:23088 msgid "total number of bytes read from client" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22726 +#: guix-git/doc/guix.texi:23088 #, no-wrap msgid "%o" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22728 +#: guix-git/doc/guix.texi:23090 msgid "total number of bytes sent to client." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22731 +#: guix-git/doc/guix.texi:23093 msgid "See @file{doc/wiki/Variables.txt} for a list of all the variables you can use. Defaults to @samp{\"in=%i out=%o deleted=%@{deleted@} expunged=%@{expunged@} trashed=%@{trashed@} hdr_count=%@{fetch_hdr_count@} hdr_bytes=%@{fetch_hdr_bytes@} body_count=%@{fetch_body_count@} body_bytes=%@{fetch_body_bytes@}\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22733 +#: guix-git/doc/guix.texi:23095 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-capability" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22737 +#: guix-git/doc/guix.texi:23099 msgid "Override the IMAP CAPABILITY response. If the value begins with '+', add the given capabilities on top of the defaults (e.g.@: +XFOO XBAR). Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22739 +#: guix-git/doc/guix.texi:23101 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-idle-notify-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22743 +#: guix-git/doc/guix.texi:23105 msgid "How long to wait between \"OK Still here\" notifications when client is IDLEing. Defaults to @samp{\"2 mins\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22745 +#: guix-git/doc/guix.texi:23107 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-id-send" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22751 +#: guix-git/doc/guix.texi:23113 msgid "ID field names and values to send to clients. Using * as the value makes Dovecot use the default value. The following fields have default values currently: name, version, os, os-version, support-url, support-email. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22753 +#: guix-git/doc/guix.texi:23115 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-id-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22756 +#: guix-git/doc/guix.texi:23118 msgid "ID fields sent by client to log. * means everything. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22758 +#: guix-git/doc/guix.texi:23120 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list imap-client-workarounds" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22760 +#: guix-git/doc/guix.texi:23122 msgid "Workarounds for various client bugs:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22762 +#: guix-git/doc/guix.texi:23124 #, no-wrap msgid "delay-newmail" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22769 +#: guix-git/doc/guix.texi:23131 msgid "Send EXISTS/RECENT new mail notifications only when replying to NOOP and CHECK commands. Some clients ignore them otherwise, for example OSX Mail (' before setting it here, to get a feel for which cipher suites you will get. After setting this option, it is recommend that you inspect your Murmur log to ensure that Murmur is using the cipher suites that you expected it to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24159 +#: guix-git/doc/guix.texi:24521 msgid "Note: Changing this option may impact the backwards compatibility of your Murmur server, and can remove the ability for older Mumble clients to be able to connect to it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:24160 +#: guix-git/doc/guix.texi:24522 #, no-wrap msgid "@code{public-registration} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:24162 +#: guix-git/doc/guix.texi:24524 msgid "Must be a @code{} record or @code{#f}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24167 +#: guix-git/doc/guix.texi:24529 msgid "You can optionally register your server in the public server list that the @code{mumble} client shows on startup. You cannot register your server if you have set a @code{server-password}, or set @code{allow-ping} to @code{#f}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24169 +#: guix-git/doc/guix.texi:24531 msgid "It might take a few hours until it shows up in the public list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:24170 guix-git/doc/guix.texi:26407 +#: guix-git/doc/guix.texi:24532 guix-git/doc/guix.texi:26744 #, no-wrap msgid "@code{file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:24172 +#: guix-git/doc/guix.texi:24534 msgid "Optional alternative override for this configuration." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24175 +#: guix-git/doc/guix.texi:24537 #, no-wrap msgid "{Data Type} murmur-public-registration-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24177 +#: guix-git/doc/guix.texi:24539 msgid "Configuration for public registration of a murmur service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24181 +#: guix-git/doc/guix.texi:24543 msgid "This is a display name for your server. Not to be confused with the hostname." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:24182 guix-git/doc/guix.texi:33135 -#: guix-git/doc/guix.texi:34304 +#: guix-git/doc/guix.texi:24544 guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:34743 #, no-wrap msgid "password" msgstr "비밀번호" #. type: table -#: guix-git/doc/guix.texi:24185 +#: guix-git/doc/guix.texi:24547 msgid "A password to identify your registration. Subsequent updates will need the same password. Don't lose your password." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24189 +#: guix-git/doc/guix.texi:24551 msgid "This should be a @code{http://} or @code{https://} link to your web site." msgstr "" #. type: item -#: guix-git/doc/guix.texi:24190 guix-git/doc/guix.texi:27292 +#: guix-git/doc/guix.texi:24552 guix-git/doc/guix.texi:27629 #, no-wrap msgid "@code{hostname} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:24193 +#: guix-git/doc/guix.texi:24555 msgid "By default your server will be listed by its IP address. If it is set your server will be linked by this host name instead." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24203 +#: guix-git/doc/guix.texi:24565 msgid "The @code{(gnu services file-sharing)} module provides services that assist with transferring files over peer-to-peer file-sharing networks." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:24204 +#: guix-git/doc/guix.texi:24566 #, no-wrap msgid "Transmission Daemon Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24212 +#: guix-git/doc/guix.texi:24574 msgid "@uref{https://transmissionbt.com/, Transmission} is a flexible BitTorrent client that offers a variety of graphical and command-line interfaces. A @code{transmission-daemon-service-type} service provides Transmission's headless variant, @command{transmission-daemon}, as a system service, allowing users to share files via BitTorrent even when they are not logged in." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24213 +#: guix-git/doc/guix.texi:24575 #, no-wrap msgid "{Scheme Variable} transmission-daemon-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24217 +#: guix-git/doc/guix.texi:24579 msgid "The service type for the Transmission Daemon BitTorrent client. Its value must be a @code{transmission-daemon-configuration} object as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24228 +#: guix-git/doc/guix.texi:24590 #, no-wrap msgid "" "(service transmission-daemon-service-type\n" @@ -43584,7 +44204,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24233 +#: guix-git/doc/guix.texi:24595 #, no-wrap msgid "" " ;; Accept requests from this and other hosts on the\n" @@ -43595,7 +44215,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24237 +#: guix-git/doc/guix.texi:24599 #, no-wrap msgid "" " ;; Limit bandwidth use during work hours\n" @@ -43605,7 +44225,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24244 +#: guix-git/doc/guix.texi:24606 #, no-wrap msgid "" " (alt-speed-time-enabled? #t)\n" @@ -43617,49 +44237,49 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24257 +#: guix-git/doc/guix.texi:24619 msgid "Once the service is started, users can interact with the daemon through its Web interface (at @code{http://localhost:9091/}) or by using the @command{transmission-remote} command-line tool, available in the @code{transmission} package. (Emacs users may want to also consider the @code{emacs-transmission} package.) Both communicate with the daemon through its remote procedure call (RPC) interface, which by default is available to all users on the system; you may wish to change this by assigning values to the @code{rpc-authentication-required?}, @code{rpc-username} and @code{rpc-password} settings, as shown in the example above and documented further below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24265 +#: guix-git/doc/guix.texi:24627 msgid "The value for @code{rpc-password} must be a password hash of the type generated and used by Transmission clients. This can be copied verbatim from an existing @file{settings.json} file, if another Transmission client is already being used. Otherwise, the @code{transmission-password-hash} and @code{transmission-random-salt} procedures provided by this module can be used to obtain a suitable hash value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24266 +#: guix-git/doc/guix.texi:24628 #, no-wrap msgid "{Scheme Procedure} transmission-password-hash @var{password} @var{salt}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24270 +#: guix-git/doc/guix.texi:24632 msgid "Returns a string containing the result of hashing @var{password} together with @var{salt}, in the format recognized by Transmission clients for their @code{rpc-password} configuration setting." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24274 +#: guix-git/doc/guix.texi:24636 msgid "@var{salt} must be an eight-character string. The @code{transmission-random-salt} procedure can be used to generate a suitable salt value at random." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24276 +#: guix-git/doc/guix.texi:24638 #, no-wrap msgid "{Scheme Procedure} transmission-random-salt" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24280 +#: guix-git/doc/guix.texi:24642 msgid "Returns a string containing a random, eight-character salt value of the type generated and used by Transmission clients, suitable for passing to the @code{transmission-password-hash} procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24286 +#: guix-git/doc/guix.texi:24648 msgid "These procedures are accessible from within a Guile REPL started with the @command{guix repl} command (@pxref{Invoking guix repl}). This is useful for obtaining a random salt value to provide as the second parameter to `transmission-password-hash`, as in this example session:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:24292 +#: guix-git/doc/guix.texi:24654 #, no-wrap msgid "" "$ guix repl\n" @@ -43669,12 +44289,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24295 +#: guix-git/doc/guix.texi:24657 msgid "Alternatively, a complete password hash can generated in a single step:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:24300 +#: guix-git/doc/guix.texi:24662 #, no-wrap msgid "" "scheme@@(guix-user)> (transmission-password-hash \"transmission\"\n" @@ -43683,480 +44303,480 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24305 +#: guix-git/doc/guix.texi:24667 msgid "The resulting string can be used as-is for the value of @code{rpc-password}, allowing the password to be kept hidden even in the operating-system configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24314 +#: guix-git/doc/guix.texi:24676 msgid "Torrent files downloaded by the daemon are directly accessible only to users in the ``transmission'' user group, who receive read-only access to the directory specified by the @code{download-dir} configuration setting (and also the directory specified by @code{incomplete-dir}, if @code{incomplete-dir-enabled?} is @code{#t}). Downloaded files can be moved to another directory or deleted altogether using @command{transmission-remote} with its @code{--move} and @code{--remove-and-delete} options." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24321 +#: guix-git/doc/guix.texi:24683 msgid "If the @code{watch-dir-enabled?} setting is set to @code{#t}, users in the ``transmission'' group are able also to place @file{.torrent} files in the directory specified by @code{watch-dir} to have the corresponding torrents added by the daemon. (The @code{trash-original-torrent-files?} setting controls whether the daemon deletes these files after processing them.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24326 +#: guix-git/doc/guix.texi:24688 msgid "Some of the daemon's configuration settings can be changed temporarily by @command{transmission-remote} and similar tools. To undo these changes, use the service's @code{reload} action to have the daemon reload its settings from disk:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:24329 +#: guix-git/doc/guix.texi:24691 #, no-wrap msgid "# herd reload transmission-daemon\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24333 +#: guix-git/doc/guix.texi:24695 msgid "The full set of available configuration settings is defined by the @code{transmission-daemon-configuration} data type." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24334 +#: guix-git/doc/guix.texi:24696 #, no-wrap msgid "{Data Type} transmission-daemon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24338 +#: guix-git/doc/guix.texi:24700 msgid "The data type representing configuration settings for Transmission Daemon. These correspond directly to the settings recognized by Transmission clients in their @file{settings.json} file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24352 +#: guix-git/doc/guix.texi:24714 msgid "Available @code{transmission-daemon-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24353 +#: guix-git/doc/guix.texi:24715 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} package transmission" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24355 +#: guix-git/doc/guix.texi:24717 msgid "The Transmission package to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24358 +#: guix-git/doc/guix.texi:24720 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer stop-wait-period" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24364 +#: guix-git/doc/guix.texi:24726 msgid "The period, in seconds, to wait when stopping the service for @command{transmission-daemon} to exit before killing its process. This allows the daemon time to complete its housekeeping and send a final update to trackers as it shuts down. On slow hosts, or hosts with a slow network connection, this value may need to be increased." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24366 guix-git/doc/guix.texi:24738 -#: guix-git/doc/guix.texi:32101 guix-git/doc/guix.texi:32336 -#: guix-git/doc/guix.texi:32344 guix-git/doc/guix.texi:32352 +#: guix-git/doc/guix.texi:24728 guix-git/doc/guix.texi:25100 +#: guix-git/doc/guix.texi:32466 guix-git/doc/guix.texi:32701 +#: guix-git/doc/guix.texi:32709 guix-git/doc/guix.texi:32717 msgid "Defaults to @samp{10}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24369 +#: guix-git/doc/guix.texi:24731 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string download-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24371 +#: guix-git/doc/guix.texi:24733 msgid "The directory to which torrent files are downloaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24373 +#: guix-git/doc/guix.texi:24735 msgid "Defaults to @samp{\"/var/lib/transmission-daemon/downloads\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24376 +#: guix-git/doc/guix.texi:24738 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean incomplete-dir-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24381 +#: guix-git/doc/guix.texi:24743 msgid "If @code{#t}, files will be held in @code{incomplete-dir} while their torrent is being downloaded, then moved to @code{download-dir} once the torrent is complete. Otherwise, files for all torrents (including those still being downloaded) will be placed in @code{download-dir}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24386 +#: guix-git/doc/guix.texi:24748 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string incomplete-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24389 +#: guix-git/doc/guix.texi:24751 msgid "The directory in which files from incompletely downloaded torrents will be held when @code{incomplete-dir-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24394 +#: guix-git/doc/guix.texi:24756 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} umask umask" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24397 +#: guix-git/doc/guix.texi:24759 msgid "The file mode creation mask used for downloaded files. (See the @command{umask} man page for more information.)" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24399 +#: guix-git/doc/guix.texi:24761 msgid "Defaults to @samp{18}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24402 +#: guix-git/doc/guix.texi:24764 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rename-partial-files?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24405 +#: guix-git/doc/guix.texi:24767 msgid "When @code{#t}, ``.part'' is appended to the name of partially downloaded files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24410 +#: guix-git/doc/guix.texi:24772 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} preallocation-mode preallocation" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24415 +#: guix-git/doc/guix.texi:24777 msgid "The mode by which space should be preallocated for downloaded files, one of @code{none}, @code{fast} (or @code{sparse}) and @code{full}. Specifying @code{full} will minimize disk fragmentation at a cost to file-creation speed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24417 +#: guix-git/doc/guix.texi:24779 msgid "Defaults to @samp{fast}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24420 +#: guix-git/doc/guix.texi:24782 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean watch-dir-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24425 +#: guix-git/doc/guix.texi:24787 msgid "If @code{#t}, the directory specified by @code{watch-dir} will be watched for new @file{.torrent} files and the torrents they describe added automatically (and the original files removed, if @code{trash-original-torrent-files?} is @code{#t})." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24430 +#: guix-git/doc/guix.texi:24792 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string watch-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24433 +#: guix-git/doc/guix.texi:24795 msgid "The directory to be watched for @file{.torrent} files indicating new torrents to be added, when @code{watch-dir-enabled} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24438 +#: guix-git/doc/guix.texi:24800 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean trash-original-torrent-files?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24442 +#: guix-git/doc/guix.texi:24804 msgid "When @code{#t}, @file{.torrent} files will be deleted from the watch directory once their torrent has been added (see @code{watch-directory-enabled?})." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24447 +#: guix-git/doc/guix.texi:24809 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean speed-limit-down-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24450 +#: guix-git/doc/guix.texi:24812 msgid "When @code{#t}, the daemon's download speed will be limited to the rate specified by @code{speed-limit-down}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24455 +#: guix-git/doc/guix.texi:24817 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer speed-limit-down" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24457 +#: guix-git/doc/guix.texi:24819 msgid "The default global-maximum download speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24462 +#: guix-git/doc/guix.texi:24824 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean speed-limit-up-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24465 +#: guix-git/doc/guix.texi:24827 msgid "When @code{#t}, the daemon's upload speed will be limited to the rate specified by @code{speed-limit-up}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24470 +#: guix-git/doc/guix.texi:24832 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer speed-limit-up" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24472 +#: guix-git/doc/guix.texi:24834 msgid "The default global-maximum upload speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24477 +#: guix-git/doc/guix.texi:24839 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean alt-speed-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24483 +#: guix-git/doc/guix.texi:24845 msgid "When @code{#t}, the alternate speed limits @code{alt-speed-down} and @code{alt-speed-up} are used (in place of @code{speed-limit-down} and @code{speed-limit-up}, if they are enabled) to constrain the daemon's bandwidth usage. This can be scheduled to occur automatically at certain times during the week; see @code{alt-speed-time-enabled?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24488 +#: guix-git/doc/guix.texi:24850 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-down" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24490 +#: guix-git/doc/guix.texi:24852 msgid "The alternate global-maximum download speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24492 guix-git/doc/guix.texi:24499 -#: guix-git/doc/guix.texi:24671 guix-git/doc/guix.texi:32108 -#: guix-git/doc/guix.texi:32123 +#: guix-git/doc/guix.texi:24854 guix-git/doc/guix.texi:24861 +#: guix-git/doc/guix.texi:25033 guix-git/doc/guix.texi:32473 +#: guix-git/doc/guix.texi:32488 msgid "Defaults to @samp{50}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24495 +#: guix-git/doc/guix.texi:24857 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-up" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24497 +#: guix-git/doc/guix.texi:24859 msgid "The alternate global-maximum upload speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24502 +#: guix-git/doc/guix.texi:24864 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean alt-speed-time-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24507 +#: guix-git/doc/guix.texi:24869 msgid "When @code{#t}, the alternate speed limits @code{alt-speed-down} and @code{alt-speed-up} will be enabled automatically during the periods specified by @code{alt-speed-time-day}, @code{alt-speed-time-begin} and @code{alt-time-speed-end}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24512 +#: guix-git/doc/guix.texi:24874 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} day-list alt-speed-time-day" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24517 +#: guix-git/doc/guix.texi:24879 msgid "The days of the week on which the alternate-speed schedule should be used, specified either as a list of days (@code{sunday}, @code{monday}, and so on) or using one of the symbols @code{weekdays}, @code{weekends} or @code{all}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24519 +#: guix-git/doc/guix.texi:24881 msgid "Defaults to @samp{all}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24522 +#: guix-git/doc/guix.texi:24884 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-time-begin" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24525 +#: guix-git/doc/guix.texi:24887 msgid "The time of day at which to enable the alternate speed limits, expressed as a number of minutes since midnight." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24527 +#: guix-git/doc/guix.texi:24889 msgid "Defaults to @samp{540}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24530 +#: guix-git/doc/guix.texi:24892 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-time-end" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24533 +#: guix-git/doc/guix.texi:24895 msgid "The time of day at which to disable the alternate speed limits, expressed as a number of minutes since midnight." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24535 +#: guix-git/doc/guix.texi:24897 msgid "Defaults to @samp{1020}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24538 +#: guix-git/doc/guix.texi:24900 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string bind-address-ipv4" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24541 +#: guix-git/doc/guix.texi:24903 msgid "The IP address at which to listen for peer connections, or ``0.0.0.0'' to listen at all available IP addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24543 guix-git/doc/guix.texi:24846 -#: guix-git/doc/guix.texi:29969 +#: guix-git/doc/guix.texi:24905 guix-git/doc/guix.texi:25208 +#: guix-git/doc/guix.texi:30334 msgid "Defaults to @samp{\"0.0.0.0\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24546 +#: guix-git/doc/guix.texi:24908 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string bind-address-ipv6" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24549 +#: guix-git/doc/guix.texi:24911 msgid "The IPv6 address at which to listen for peer connections, or ``::'' to listen at all available IPv6 addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24551 +#: guix-git/doc/guix.texi:24913 msgid "Defaults to @samp{\"::\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24554 +#: guix-git/doc/guix.texi:24916 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean peer-port-random-on-start?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24560 +#: guix-git/doc/guix.texi:24922 msgid "If @code{#t}, when the daemon starts it will select a port at random on which to listen for peer connections, from the range specified (inclusively) by @code{peer-port-random-low} and @code{peer-port-random-high}. Otherwise, it listens on the port specified by @code{peer-port}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24565 +#: guix-git/doc/guix.texi:24927 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port-random-low" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24568 +#: guix-git/doc/guix.texi:24930 msgid "The lowest selectable port number when @code{peer-port-random-on-start?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24570 +#: guix-git/doc/guix.texi:24932 msgid "Defaults to @samp{49152}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24573 +#: guix-git/doc/guix.texi:24935 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port-random-high" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24576 +#: guix-git/doc/guix.texi:24938 msgid "The highest selectable port number when @code{peer-port-random-on-start} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24578 +#: guix-git/doc/guix.texi:24940 msgid "Defaults to @samp{65535}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24581 +#: guix-git/doc/guix.texi:24943 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24584 +#: guix-git/doc/guix.texi:24946 msgid "The port on which to listen for peer connections when @code{peer-port-random-on-start?} is @code{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24586 +#: guix-git/doc/guix.texi:24948 msgid "Defaults to @samp{51413}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24589 +#: guix-git/doc/guix.texi:24951 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean port-forwarding-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24593 +#: guix-git/doc/guix.texi:24955 msgid "If @code{#t}, the daemon will attempt to configure port-forwarding on an upstream gateway automatically using @acronym{UPnP} and @acronym{NAT-PMP}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24598 +#: guix-git/doc/guix.texi:24960 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} encryption-mode encryption" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24603 +#: guix-git/doc/guix.texi:24965 msgid "The encryption preference for peer connections, one of @code{prefer-unencrypted-connections}, @code{prefer-encrypted-connections} or @code{require-encrypted-connections}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24605 +#: guix-git/doc/guix.texi:24967 msgid "Defaults to @samp{prefer-encrypted-connections}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24608 +#: guix-git/doc/guix.texi:24970 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string peer-congestion-algorithm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24613 +#: guix-git/doc/guix.texi:24975 msgid "The TCP congestion-control algorithm to use for peer connections, specified using a string recognized by the operating system in calls to @code{setsockopt} (or set to @code{disabled}, in which case the operating-system default is used)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24622 +#: guix-git/doc/guix.texi:24984 msgid "Note that on GNU/Linux systems, the kernel must be configured to allow processes to use a congestion-control algorithm not in the default set; otherwise, it will deny these requests with ``Operation not permitted''. To see which algorithms are available on your system and which are currently permitted for use, look at the contents of the files @file{tcp_available_congestion_control} and @file{tcp_allowed_congestion_control} in the @file{/proc/sys/net/ipv4} directory." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24630 +#: guix-git/doc/guix.texi:24992 msgid "As an example, to have Transmission Daemon use @uref{http://www-ece.rice.edu/networks/TCP-LP/,the TCP Low Priority congestion-control algorithm}, you'll need to modify your kernel configuration to build in support for the algorithm, then update your operating-system configuration to allow its use by adding a @code{sysctl-service-type} service (or updating the existing one's configuration) with lines like the following:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24637 +#: guix-git/doc/guix.texi:24999 #, no-wrap msgid "" "(service sysctl-service-type\n" @@ -44167,529 +44787,529 @@ msgid "" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24640 +#: guix-git/doc/guix.texi:25002 msgid "The Transmission Daemon configuration can then be updated with" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24643 +#: guix-git/doc/guix.texi:25005 #, no-wrap msgid "(peer-congestion-algorithm \"lp\")\n" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24646 +#: guix-git/doc/guix.texi:25008 msgid "and the system reconfigured to have the changes take effect." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24651 +#: guix-git/doc/guix.texi:25013 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} tcp-type-of-service peer-socket-tos" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24655 +#: guix-git/doc/guix.texi:25017 msgid "The type of service to request in outgoing @acronym{TCP} packets, one of @code{default}, @code{low-cost}, @code{throughput}, @code{low-delay} and @code{reliability}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24657 +#: guix-git/doc/guix.texi:25019 msgid "Defaults to @samp{default}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24660 +#: guix-git/doc/guix.texi:25022 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-limit-global" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24662 +#: guix-git/doc/guix.texi:25024 msgid "The global limit on the number of connected peers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24664 +#: guix-git/doc/guix.texi:25026 msgid "Defaults to @samp{200}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24667 +#: guix-git/doc/guix.texi:25029 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-limit-per-torrent" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24669 +#: guix-git/doc/guix.texi:25031 msgid "The per-torrent limit on the number of connected peers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24674 +#: guix-git/doc/guix.texi:25036 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer upload-slots-per-torrent" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24677 +#: guix-git/doc/guix.texi:25039 msgid "The maximum number of peers to which the daemon will upload data simultaneously for each torrent." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24679 +#: guix-git/doc/guix.texi:25041 msgid "Defaults to @samp{14}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24682 +#: guix-git/doc/guix.texi:25044 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-id-ttl-hours" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24685 +#: guix-git/doc/guix.texi:25047 msgid "The maximum lifespan, in hours, of the peer ID associated with each public torrent before it is regenerated." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24687 +#: guix-git/doc/guix.texi:25049 msgid "Defaults to @samp{6}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24690 +#: guix-git/doc/guix.texi:25052 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean blocklist-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24693 +#: guix-git/doc/guix.texi:25055 msgid "When @code{#t}, the daemon will ignore peers mentioned in the blocklist it has most recently downloaded from @code{blocklist-url}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24698 +#: guix-git/doc/guix.texi:25060 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string blocklist-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24702 +#: guix-git/doc/guix.texi:25064 msgid "The URL of a peer blocklist (in @acronym{P2P}-plaintext or eMule @file{.dat} format) to be periodically downloaded and applied when @code{blocklist-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24707 +#: guix-git/doc/guix.texi:25069 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean download-queue-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24710 +#: guix-git/doc/guix.texi:25072 msgid "If @code{#t}, the daemon will be limited to downloading at most @code{download-queue-size} non-stalled torrents simultaneously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24715 +#: guix-git/doc/guix.texi:25077 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer download-queue-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24719 +#: guix-git/doc/guix.texi:25081 msgid "The size of the daemon's download queue, which limits the number of non-stalled torrents it will download at any one time when @code{download-queue-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24724 +#: guix-git/doc/guix.texi:25086 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean seed-queue-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24727 +#: guix-git/doc/guix.texi:25089 msgid "If @code{#t}, the daemon will be limited to seeding at most @code{seed-queue-size} non-stalled torrents simultaneously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24732 +#: guix-git/doc/guix.texi:25094 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer seed-queue-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24736 +#: guix-git/doc/guix.texi:25098 msgid "The size of the daemon's seed queue, which limits the number of non-stalled torrents it will seed at any one time when @code{seed-queue-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24741 +#: guix-git/doc/guix.texi:25103 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean queue-stalled-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24746 +#: guix-git/doc/guix.texi:25108 msgid "When @code{#t}, the daemon will consider torrents for which it has not shared data in the past @code{queue-stalled-minutes} minutes to be stalled and not count them against its @code{download-queue-size} and @code{seed-queue-size} limits." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24751 +#: guix-git/doc/guix.texi:25113 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer queue-stalled-minutes" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24755 +#: guix-git/doc/guix.texi:25117 msgid "The maximum period, in minutes, a torrent may be idle before it is considered to be stalled, when @code{queue-stalled-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24760 +#: guix-git/doc/guix.texi:25122 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean ratio-limit-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24763 +#: guix-git/doc/guix.texi:25125 msgid "When @code{#t}, a torrent being seeded will automatically be paused once it reaches the ratio specified by @code{ratio-limit}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24768 +#: guix-git/doc/guix.texi:25130 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-rational ratio-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24771 +#: guix-git/doc/guix.texi:25133 msgid "The ratio at which a torrent being seeded will be paused, when @code{ratio-limit-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24773 +#: guix-git/doc/guix.texi:25135 msgid "Defaults to @samp{2.0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24776 +#: guix-git/doc/guix.texi:25138 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean idle-seeding-limit-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24779 +#: guix-git/doc/guix.texi:25141 msgid "When @code{#t}, a torrent being seeded will automatically be paused once it has been idle for @code{idle-seeding-limit} minutes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24784 +#: guix-git/doc/guix.texi:25146 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer idle-seeding-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24788 +#: guix-git/doc/guix.texi:25150 msgid "The maximum period, in minutes, a torrent being seeded may be idle before it is paused, when @code{idle-seeding-limit-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24793 +#: guix-git/doc/guix.texi:25155 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean dht-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24797 +#: guix-git/doc/guix.texi:25159 msgid "Enable @uref{http://bittorrent.org/beps/bep_0005.html,the distributed hash table (@acronym{DHT}) protocol}, which supports the use of trackerless torrents." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24802 +#: guix-git/doc/guix.texi:25164 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean lpd-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24807 +#: guix-git/doc/guix.texi:25169 msgid "Enable @uref{https://en.wikipedia.org/wiki/Local_Peer_Discovery,local peer discovery} (@acronym{LPD}), which allows the discovery of peers on the local network and may reduce the amount of data sent over the public Internet." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24812 +#: guix-git/doc/guix.texi:25174 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean pex-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24816 +#: guix-git/doc/guix.texi:25178 msgid "Enable @uref{https://en.wikipedia.org/wiki/Peer_exchange,peer exchange} (@acronym{PEX}), which reduces the daemon's reliance on external trackers and may improve its performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24821 +#: guix-git/doc/guix.texi:25183 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean utp-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24826 +#: guix-git/doc/guix.texi:25188 msgid "Enable @uref{http://bittorrent.org/beps/bep_0029.html,the micro transport protocol} (@acronym{uTP}), which aims to reduce the impact of BitTorrent traffic on other users of the local network while maintaining full utilization of the available bandwidth." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24831 +#: guix-git/doc/guix.texi:25193 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24836 +#: guix-git/doc/guix.texi:25198 msgid "If @code{#t}, enable the remote procedure call (@acronym{RPC}) interface, which allows remote control of the daemon via its Web interface, the @command{transmission-remote} command-line client, and similar tools." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24841 +#: guix-git/doc/guix.texi:25203 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string rpc-bind-address" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24844 +#: guix-git/doc/guix.texi:25206 msgid "The IP address at which to listen for @acronym{RPC} connections, or ``0.0.0.0'' to listen at all available IP addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24849 +#: guix-git/doc/guix.texi:25211 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number rpc-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24851 +#: guix-git/doc/guix.texi:25213 msgid "The port on which to listen for @acronym{RPC} connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24853 +#: guix-git/doc/guix.texi:25215 msgid "Defaults to @samp{9091}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24856 +#: guix-git/doc/guix.texi:25218 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string rpc-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24858 +#: guix-git/doc/guix.texi:25220 msgid "The path prefix to use in the @acronym{RPC}-endpoint @acronym{URL}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24860 +#: guix-git/doc/guix.texi:25222 msgid "Defaults to @samp{\"/transmission/\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24863 +#: guix-git/doc/guix.texi:25225 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-authentication-required?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24868 +#: guix-git/doc/guix.texi:25230 msgid "When @code{#t}, clients must authenticate (see @code{rpc-username} and @code{rpc-password}) when using the @acronym{RPC} interface. Note this has the side effect of disabling host-name whitelisting (see @code{rpc-host-whitelist-enabled?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24873 +#: guix-git/doc/guix.texi:25235 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string rpc-username" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24876 +#: guix-git/doc/guix.texi:25238 msgid "The username required by clients to access the @acronym{RPC} interface when @code{rpc-authentication-required?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24881 +#: guix-git/doc/guix.texi:25243 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-transmission-password-hash rpc-password" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24887 +#: guix-git/doc/guix.texi:25249 msgid "The password required by clients to access the @acronym{RPC} interface when @code{rpc-authentication-required?} is @code{#t}. This must be specified using a password hash in the format recognized by Transmission clients, either copied from an existing @file{settings.json} file or generated using the @code{transmission-password-hash} procedure." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24892 +#: guix-git/doc/guix.texi:25254 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-whitelist-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24895 +#: guix-git/doc/guix.texi:25257 msgid "When @code{#t}, @acronym{RPC} requests will be accepted only when they originate from an address specified in @code{rpc-whitelist}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24900 +#: guix-git/doc/guix.texi:25262 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string-list rpc-whitelist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24904 +#: guix-git/doc/guix.texi:25266 msgid "The list of IP and IPv6 addresses from which @acronym{RPC} requests will be accepted when @code{rpc-whitelist-enabled?} is @code{#t}. Wildcards may be specified using @samp{*}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24906 +#: guix-git/doc/guix.texi:25268 msgid "Defaults to @samp{(\"127.0.0.1\" \"::1\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24909 +#: guix-git/doc/guix.texi:25271 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-host-whitelist-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24914 +#: guix-git/doc/guix.texi:25276 msgid "When @code{#t}, @acronym{RPC} requests will be accepted only when they are addressed to a host named in @code{rpc-host-whitelist}. Note that requests to ``localhost'' or ``localhost.'', or to a numeric address, are always accepted regardless of these settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24917 +#: guix-git/doc/guix.texi:25279 msgid "Note also this functionality is disabled when @code{rpc-authentication-required?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24922 +#: guix-git/doc/guix.texi:25284 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string-list rpc-host-whitelist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24925 +#: guix-git/doc/guix.texi:25287 msgid "The list of host names recognized by the @acronym{RPC} server when @code{rpc-host-whitelist-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24930 +#: guix-git/doc/guix.texi:25292 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} message-level message-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24934 +#: guix-git/doc/guix.texi:25296 msgid "The minimum severity level of messages to be logged (to @file{/var/log/transmission.log}) by the daemon, one of @code{none} (no logging), @code{error}, @code{info} and @code{debug}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24939 +#: guix-git/doc/guix.texi:25301 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean start-added-torrents?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24942 +#: guix-git/doc/guix.texi:25304 msgid "When @code{#t}, torrents are started as soon as they are added; otherwise, they are added in ``paused'' state." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24947 +#: guix-git/doc/guix.texi:25309 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean script-torrent-done-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24951 +#: guix-git/doc/guix.texi:25313 msgid "When @code{#t}, the script specified by @code{script-torrent-done-filename} will be invoked each time a torrent completes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24956 +#: guix-git/doc/guix.texi:25318 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-file-object script-torrent-done-filename" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24960 +#: guix-git/doc/guix.texi:25322 msgid "A file name or file-like object specifying a script to run each time a torrent completes, when @code{script-torrent-done-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24965 +#: guix-git/doc/guix.texi:25327 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean scrape-paused-torrents-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24968 +#: guix-git/doc/guix.texi:25330 msgid "When @code{#t}, the daemon will scrape trackers for a torrent even when the torrent is paused." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24973 +#: guix-git/doc/guix.texi:25335 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer cache-size-mb" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24977 +#: guix-git/doc/guix.texi:25339 msgid "The amount of memory, in megabytes, to allocate for the daemon's in-memory cache. A larger value may increase performance by reducing the frequency of disk I/O." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24979 +#: guix-git/doc/guix.texi:25341 msgid "Defaults to @samp{4}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24982 +#: guix-git/doc/guix.texi:25344 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean prefetch-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24986 +#: guix-git/doc/guix.texi:25348 msgid "When @code{#t}, the daemon will try to improve I/O performance by hinting to the operating system which data is likely to be read next from disk to satisfy requests from peers." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:24999 +#: guix-git/doc/guix.texi:25361 #, no-wrap msgid "Tailon Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25003 +#: guix-git/doc/guix.texi:25365 msgid "@uref{https://tailon.readthedocs.io/, Tailon} is a web application for viewing and searching log files." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25006 +#: guix-git/doc/guix.texi:25368 msgid "The following example will configure the service with default values. By default, Tailon can be accessed on port 8080 (@code{http://localhost:8080})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25009 +#: guix-git/doc/guix.texi:25371 #, no-wrap msgid "(service tailon-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25013 +#: guix-git/doc/guix.texi:25375 msgid "The following example customises more of the Tailon configuration, adding @command{sed} to the list of allowed commands." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25020 +#: guix-git/doc/guix.texi:25382 #, no-wrap msgid "" "(service tailon-service-type\n" @@ -44700,34 +45320,34 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25023 +#: guix-git/doc/guix.texi:25385 #, no-wrap msgid "{Data Type} tailon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25026 +#: guix-git/doc/guix.texi:25388 msgid "Data type representing the configuration of Tailon. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25028 +#: guix-git/doc/guix.texi:25390 #, no-wrap msgid "@code{config-file} (default: @code{(tailon-configuration-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25032 +#: guix-git/doc/guix.texi:25394 msgid "The configuration file to use for Tailon. This can be set to a @dfn{tailon-configuration-file} record value, or any gexp (@pxref{G-Expressions})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25035 +#: guix-git/doc/guix.texi:25397 msgid "For example, to instead use a local file, the @code{local-file} function can be used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25040 +#: guix-git/doc/guix.texi:25402 #, no-wrap msgid "" "(service tailon-service-type\n" @@ -44736,144 +45356,144 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25042 +#: guix-git/doc/guix.texi:25404 #, no-wrap msgid "@code{package} (default: @code{tailon})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25044 +#: guix-git/doc/guix.texi:25406 msgid "The tailon package to use." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25048 +#: guix-git/doc/guix.texi:25410 #, no-wrap msgid "{Data Type} tailon-configuration-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25051 +#: guix-git/doc/guix.texi:25413 msgid "Data type representing the configuration options for Tailon. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25053 +#: guix-git/doc/guix.texi:25415 #, no-wrap msgid "@code{files} (default: @code{(list \"/var/log\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25058 +#: guix-git/doc/guix.texi:25420 msgid "List of files to display. The list can include strings for a single file or directory, or a list, where the first item is the name of a subsection, and the remaining items are the files or directories in that subsection." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25059 +#: guix-git/doc/guix.texi:25421 #, no-wrap msgid "@code{bind} (default: @code{\"localhost:8080\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25061 +#: guix-git/doc/guix.texi:25423 msgid "Address and port to which Tailon should bind on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25062 +#: guix-git/doc/guix.texi:25424 #, no-wrap msgid "@code{relative-root} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25064 +#: guix-git/doc/guix.texi:25426 msgid "URL path to use for Tailon, set to @code{#f} to not use a path." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25065 +#: guix-git/doc/guix.texi:25427 #, no-wrap msgid "@code{allow-transfers?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25067 +#: guix-git/doc/guix.texi:25429 msgid "Allow downloading the log files in the web interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25068 +#: guix-git/doc/guix.texi:25430 #, no-wrap msgid "@code{follow-names?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25070 +#: guix-git/doc/guix.texi:25432 msgid "Allow tailing of not-yet existent files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25071 +#: guix-git/doc/guix.texi:25433 #, no-wrap msgid "@code{tail-lines} (default: @code{200})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25073 +#: guix-git/doc/guix.texi:25435 msgid "Number of lines to read initially from each file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25074 +#: guix-git/doc/guix.texi:25436 #, no-wrap msgid "@code{allowed-commands} (default: @code{(list \"tail\" \"grep\" \"awk\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25076 +#: guix-git/doc/guix.texi:25438 msgid "Commands to allow running. By default, @code{sed} is disabled." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25079 +#: guix-git/doc/guix.texi:25441 msgid "Set @code{debug?} to @code{#t} to show debug messages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25080 +#: guix-git/doc/guix.texi:25442 #, no-wrap msgid "@code{wrap-lines} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25084 +#: guix-git/doc/guix.texi:25446 msgid "Initial line wrapping state in the web interface. Set to @code{#t} to initially wrap lines (the default), or to @code{#f} to initially not wrap lines." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25085 +#: guix-git/doc/guix.texi:25447 #, no-wrap msgid "@code{http-auth} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25089 +#: guix-git/doc/guix.texi:25451 msgid "HTTP authentication type to use. Set to @code{#f} to disable authentication (the default). Supported values are @code{\"digest\"} or @code{\"basic\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25090 +#: guix-git/doc/guix.texi:25452 #, no-wrap msgid "@code{users} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25095 +#: guix-git/doc/guix.texi:25457 msgid "If HTTP authentication is enabled (see @code{http-auth}), access will be restricted to the credentials provided here. To configure users, use a list of pairs, where the first element of the pair is the username, and the 2nd element of the pair is the password." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25101 +#: guix-git/doc/guix.texi:25463 #, no-wrap msgid "" "(tailon-configuration-file\n" @@ -44883,35 +45503,35 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25107 +#: guix-git/doc/guix.texi:25469 #, no-wrap msgid "Darkstat Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25108 +#: guix-git/doc/guix.texi:25470 #, no-wrap msgid "darkstat" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25111 +#: guix-git/doc/guix.texi:25473 msgid "Darkstat is a packet sniffer that captures network traffic, calculates statistics about usage, and serves reports over HTTP." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25112 +#: guix-git/doc/guix.texi:25474 #, no-wrap msgid "{Scheme Variable} darkstat-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25117 +#: guix-git/doc/guix.texi:25479 msgid "This is the service type for the @uref{https://unix4lyfe.org/darkstat/, darkstat} service, its value must be a @code{darkstat-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25122 +#: guix-git/doc/guix.texi:25484 #, no-wrap msgid "" "(service darkstat-service-type\n" @@ -44920,715 +45540,727 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25125 +#: guix-git/doc/guix.texi:25487 #, no-wrap msgid "{Data Type} darkstat-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25127 +#: guix-git/doc/guix.texi:25489 msgid "Data type representing the configuration of @command{darkstat}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25129 +#: guix-git/doc/guix.texi:25491 #, no-wrap msgid "@code{package} (default: @code{darkstat})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25131 +#: guix-git/doc/guix.texi:25493 msgid "The darkstat package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25132 +#: guix-git/doc/guix.texi:25494 #, no-wrap msgid "interface" msgstr "연결장치" #. type: table -#: guix-git/doc/guix.texi:25134 +#: guix-git/doc/guix.texi:25496 msgid "Capture traffic on the specified network interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25135 +#: guix-git/doc/guix.texi:25497 #, no-wrap msgid "@code{port} (default: @code{\"667\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25137 +#: guix-git/doc/guix.texi:25499 msgid "Bind the web interface to the specified port." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25140 guix-git/doc/guix.texi:25175 +#: guix-git/doc/guix.texi:25502 guix-git/doc/guix.texi:25537 msgid "Bind the web interface to the specified address." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25141 +#: guix-git/doc/guix.texi:25503 #, no-wrap msgid "@code{base} (default: @code{\"/\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25144 +#: guix-git/doc/guix.texi:25506 msgid "Specify the path of the base URL@. This can be useful if @command{darkstat} is accessed via a reverse proxy." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25148 +#: guix-git/doc/guix.texi:25510 #, no-wrap msgid "Prometheus Node Exporter Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25150 +#: guix-git/doc/guix.texi:25512 #, no-wrap msgid "prometheus-node-exporter" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25155 +#: guix-git/doc/guix.texi:25517 msgid "The Prometheus ``node exporter'' makes hardware and operating system statistics provided by the Linux kernel available for the Prometheus monitoring system. This service should be deployed on all physical nodes and virtual machines, where monitoring these statistics is desirable." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25156 +#: guix-git/doc/guix.texi:25518 #, no-wrap msgid "{Scheme variable} prometheus-node-exporter-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25160 +#: guix-git/doc/guix.texi:25522 msgid "This is the service type for the @uref{https://github.com/prometheus/node_exporter/, prometheus-node-exporter} service, its value must be a @code{prometheus-node-exporter-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25163 +#: guix-git/doc/guix.texi:25525 #, no-wrap msgid "(service prometheus-node-exporter-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25166 +#: guix-git/doc/guix.texi:25528 #, no-wrap msgid "{Data Type} prometheus-node-exporter-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25168 +#: guix-git/doc/guix.texi:25530 msgid "Data type representing the configuration of @command{node_exporter}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25170 +#: guix-git/doc/guix.texi:25532 #, no-wrap msgid "@code{package} (default: @code{go-github-com-prometheus-node-exporter})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25172 +#: guix-git/doc/guix.texi:25534 msgid "The prometheus-node-exporter package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25173 +#: guix-git/doc/guix.texi:25535 #, no-wrap msgid "@code{web-listen-address} (default: @code{\":9100\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25176 +#: guix-git/doc/guix.texi:25538 #, no-wrap msgid "@code{textfile-directory} (default: @code{\"/var/lib/prometheus/node-exporter\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25180 +#: guix-git/doc/guix.texi:25542 msgid "This directory can be used to export metrics specific to this machine. Files containing metrics in the text format, with the filename ending in @code{.prom} should be placed in this directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25183 +#: guix-git/doc/guix.texi:25545 msgid "Extra options to pass to the Prometheus node exporter." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25187 +#: guix-git/doc/guix.texi:25549 #, no-wrap msgid "Zabbix server" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25188 +#: guix-git/doc/guix.texi:25550 #, no-wrap msgid "zabbix zabbix-server" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25191 +#: guix-git/doc/guix.texi:25553 msgid "Zabbix provides monitoring metrics, among others network utilization, CPU load and disk space consumption:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25193 +#: guix-git/doc/guix.texi:25555 #, no-wrap msgid "High performance, high capacity (able to monitor hundreds of thousands of devices)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25194 +#: guix-git/doc/guix.texi:25556 #, no-wrap msgid "Auto-discovery of servers and network devices and interfaces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25195 +#: guix-git/doc/guix.texi:25557 #, no-wrap msgid "Low-level discovery, allows to automatically start monitoring new items, file systems or network interfaces among others." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25196 +#: guix-git/doc/guix.texi:25558 #, no-wrap msgid "Distributed monitoring with centralized web administration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25197 +#: guix-git/doc/guix.texi:25559 #, no-wrap msgid "Native high performance agents." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25198 +#: guix-git/doc/guix.texi:25560 #, no-wrap msgid "SLA, and ITIL KPI metrics on reporting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25199 +#: guix-git/doc/guix.texi:25561 #, no-wrap msgid "High-level (business) view of monitored resources through user-defined visual console screens and dashboards." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25200 +#: guix-git/doc/guix.texi:25562 #, no-wrap msgid "Remote command execution through Zabbix proxies." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25206 +#: guix-git/doc/guix.texi:25568 msgid "Available @code{zabbix-server-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25207 +#: guix-git/doc/guix.texi:25569 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} package zabbix-server" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25209 +#: guix-git/doc/guix.texi:25571 msgid "The zabbix-server package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25212 +#: guix-git/doc/guix.texi:25574 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25214 +#: guix-git/doc/guix.texi:25576 msgid "User who will run the Zabbix server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25216 guix-git/doc/guix.texi:25223 -#: guix-git/doc/guix.texi:25237 guix-git/doc/guix.texi:25244 -#: guix-git/doc/guix.texi:25345 guix-git/doc/guix.texi:25352 -#: guix-git/doc/guix.texi:25463 guix-git/doc/guix.texi:25470 +#: guix-git/doc/guix.texi:25578 guix-git/doc/guix.texi:25585 +#: guix-git/doc/guix.texi:25599 guix-git/doc/guix.texi:25606 +#: guix-git/doc/guix.texi:25707 guix-git/doc/guix.texi:25714 msgid "Defaults to @samp{\"zabbix\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25219 +#: guix-git/doc/guix.texi:25581 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} group group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25221 +#: guix-git/doc/guix.texi:25583 msgid "Group who will run the Zabbix server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25226 +#: guix-git/doc/guix.texi:25588 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-host" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25228 guix-git/doc/guix.texi:25447 +#. type: table +#: guix-git/doc/guix.texi:25590 guix-git/doc/guix.texi:25813 msgid "Database host name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25230 +#: guix-git/doc/guix.texi:25592 msgid "Defaults to @samp{\"127.0.0.1\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25233 +#: guix-git/doc/guix.texi:25595 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-name" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25235 guix-git/doc/guix.texi:25461 +#. type: table +#: guix-git/doc/guix.texi:25597 guix-git/doc/guix.texi:25819 msgid "Database name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25240 +#: guix-git/doc/guix.texi:25602 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-user" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25242 guix-git/doc/guix.texi:25468 +#. type: table +#: guix-git/doc/guix.texi:25604 guix-git/doc/guix.texi:25822 msgid "Database user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25247 +#: guix-git/doc/guix.texi:25609 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-password" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25250 +#: guix-git/doc/guix.texi:25612 msgid "Database password. Please, use @code{include-files} with @code{DBPassword=SECRET} inside a specified file instead." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25255 +#: guix-git/doc/guix.texi:25617 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} number db-port" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25257 guix-git/doc/guix.texi:25454 +#. type: table +#: guix-git/doc/guix.texi:25619 guix-git/doc/guix.texi:25816 msgid "Database port." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25259 guix-git/doc/guix.texi:25456 +#: guix-git/doc/guix.texi:25621 msgid "Defaults to @samp{5432}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25262 +#: guix-git/doc/guix.texi:25624 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string log-type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25264 guix-git/doc/guix.texi:25365 +#: guix-git/doc/guix.texi:25626 guix-git/doc/guix.texi:25727 msgid "Specifies where log messages are written to:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25268 guix-git/doc/guix.texi:25369 +#: guix-git/doc/guix.texi:25630 guix-git/doc/guix.texi:25731 msgid "@code{system} - syslog." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25271 guix-git/doc/guix.texi:25372 +#: guix-git/doc/guix.texi:25633 guix-git/doc/guix.texi:25734 msgid "@code{file} - file specified with @code{log-file} parameter." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25274 guix-git/doc/guix.texi:25375 +#: guix-git/doc/guix.texi:25636 guix-git/doc/guix.texi:25737 msgid "@code{console} - standard output." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25281 +#: guix-git/doc/guix.texi:25643 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string log-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25283 guix-git/doc/guix.texi:25384 +#: guix-git/doc/guix.texi:25645 guix-git/doc/guix.texi:25746 msgid "Log file name for @code{log-type} @code{file} parameter." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25285 +#: guix-git/doc/guix.texi:25647 msgid "Defaults to @samp{\"/var/log/zabbix/server.log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25288 +#: guix-git/doc/guix.texi:25650 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25290 guix-git/doc/guix.texi:25391 +#: guix-git/doc/guix.texi:25652 guix-git/doc/guix.texi:25753 msgid "Name of PID file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25292 +#: guix-git/doc/guix.texi:25654 msgid "Defaults to @samp{\"/var/run/zabbix/zabbix_server.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25295 +#: guix-git/doc/guix.texi:25657 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string ssl-ca-location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25298 +#: guix-git/doc/guix.texi:25660 msgid "The location of certificate authority (CA) files for SSL server certificate verification." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25300 +#: guix-git/doc/guix.texi:25662 msgid "Defaults to @samp{\"/etc/ssl/certs/ca-certificates.crt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25303 +#: guix-git/doc/guix.texi:25665 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string ssl-cert-location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25305 +#: guix-git/doc/guix.texi:25667 msgid "Location of SSL client certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25307 +#: guix-git/doc/guix.texi:25669 msgid "Defaults to @samp{\"/etc/ssl/certs\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25310 +#: guix-git/doc/guix.texi:25672 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25312 guix-git/doc/guix.texi:25416 +#: guix-git/doc/guix.texi:25674 guix-git/doc/guix.texi:25778 msgid "Extra options will be appended to Zabbix server configuration file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25317 +#: guix-git/doc/guix.texi:25679 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} include-files include-files" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25320 guix-git/doc/guix.texi:25424 +#: guix-git/doc/guix.texi:25682 guix-git/doc/guix.texi:25786 msgid "You may include individual files or all files in a directory in the configuration file." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25327 +#: guix-git/doc/guix.texi:25689 #, no-wrap msgid "Zabbix agent" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25328 +#: guix-git/doc/guix.texi:25690 #, no-wrap msgid "zabbix zabbix-agent" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25331 +#: guix-git/doc/guix.texi:25693 msgid "Zabbix agent gathers information for Zabbix server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25335 +#: guix-git/doc/guix.texi:25697 msgid "Available @code{zabbix-agent-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25336 +#: guix-git/doc/guix.texi:25698 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} package zabbix-agent" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25338 +#: guix-git/doc/guix.texi:25700 msgid "The zabbix-agent package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25341 +#: guix-git/doc/guix.texi:25703 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25343 +#: guix-git/doc/guix.texi:25705 msgid "User who will run the Zabbix agent." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25348 +#: guix-git/doc/guix.texi:25710 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} group group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25350 +#: guix-git/doc/guix.texi:25712 msgid "Group who will run the Zabbix agent." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25355 +#: guix-git/doc/guix.texi:25717 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string hostname" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25358 +#: guix-git/doc/guix.texi:25720 msgid "Unique, case sensitive hostname which is required for active checks and must match hostname as configured on the server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25363 +#: guix-git/doc/guix.texi:25725 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string log-type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25382 +#: guix-git/doc/guix.texi:25744 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string log-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25386 +#: guix-git/doc/guix.texi:25748 msgid "Defaults to @samp{\"/var/log/zabbix/agent.log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25389 +#: guix-git/doc/guix.texi:25751 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25393 +#: guix-git/doc/guix.texi:25755 msgid "Defaults to @samp{\"/var/run/zabbix/zabbix_agent.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25396 +#: guix-git/doc/guix.texi:25758 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} list server" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25400 +#: guix-git/doc/guix.texi:25762 msgid "List of IP addresses, optionally in CIDR notation, or hostnames of Zabbix servers and Zabbix proxies. Incoming connections will be accepted only from the hosts listed here." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25402 guix-git/doc/guix.texi:25411 +#: guix-git/doc/guix.texi:25764 guix-git/doc/guix.texi:25773 msgid "Defaults to @samp{(\"127.0.0.1\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25405 +#: guix-git/doc/guix.texi:25767 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} list server-active" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25409 +#: guix-git/doc/guix.texi:25771 msgid "List of IP:port (or hostname:port) pairs of Zabbix servers and Zabbix proxies for active checks. If port is not specified, default port is used. If this parameter is not specified, active checks are disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25414 +#: guix-git/doc/guix.texi:25776 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25421 +#: guix-git/doc/guix.texi:25783 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} include-files include-files" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25431 +#: guix-git/doc/guix.texi:25793 #, no-wrap msgid "Zabbix front-end" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25432 +#: guix-git/doc/guix.texi:25794 #, no-wrap msgid "zabbix zabbix-front-end" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25435 +#: guix-git/doc/guix.texi:25797 msgid "This service provides a WEB interface to Zabbix server." msgstr "" -#. type: Plain text -#: guix-git/doc/guix.texi:25439 +#. type: deftp +#: guix-git/doc/guix.texi:25800 +#, fuzzy, no-wrap +msgid "{Data Type} zabbix-front-end-configuration" +msgstr "설정" + +#. type: deftp +#: guix-git/doc/guix.texi:25802 msgid "Available @code{zabbix-front-end-configuration} fields are:" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25440 +#. type: item +#: guix-git/doc/guix.texi:25804 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} nginx-server-configuration-list nginx" +msgid "@code{zabbix-server} (default: @code{zabbix-server}) (type: file-like)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25442 guix-git/doc/guix.texi:31735 -msgid "NGINX configuration." +#. type: table +#: guix-git/doc/guix.texi:25806 +#, fuzzy +msgid "The Zabbix server package to use." +msgstr "꾸러미와 도구." + +#. type: item +#: guix-git/doc/guix.texi:25807 +#, no-wrap +msgid "@code{fastcgi-params} (type: list)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25445 +#. type: table +#: guix-git/doc/guix.texi:25810 +msgid "List of FastCGI parameter pairs that will be included in the NGINX configuration." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:25811 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-host" +msgid "@code{db-host} (default: @code{\\\"localhost\\\"}) (type: string)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25452 +#. type: item +#: guix-git/doc/guix.texi:25814 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} number db-port" +msgid "@code{db-port} (default: @code{5432}) (type: number)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25459 +#. type: item +#: guix-git/doc/guix.texi:25817 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-name" +msgid "@code{db-name} (default: @code{\\\"zabbix\\\"}) (type: string)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25466 +#. type: item +#: guix-git/doc/guix.texi:25820 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-user" +msgid "@code{db-user} (default: @code{\\\"zabbix\\\"}) (type: string)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25473 +#. type: item +#: guix-git/doc/guix.texi:25823 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-password" +msgid "@code{db-password} (default: @code{\\\"\\\"}) (type: string)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25475 +#. type: table +#: guix-git/doc/guix.texi:25825 msgid "Database password. Please, use @code{db-secret-file} instead." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25480 +#. type: item +#: guix-git/doc/guix.texi:25826 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-secret-file" +msgid "@code{db-secret-file} (default: @code{\\\"\\\"}) (type: string)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25485 -msgid "Secret file containing the credentials for the Zabbix front-end. The value must be a local file name, not a G-expression. You are expected to create this file manually. Its contents will be copied into @file{zabbix.conf.php} as the value of @code{$DB['PASSWORD']}." +#. type: table +#: guix-git/doc/guix.texi:25830 +msgid "Secret file which will be appended to @file{zabbix.conf.php} file. This file contains credentials for use by Zabbix front-end. You are expected to create it manually." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25490 +#. type: item +#: guix-git/doc/guix.texi:25831 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string zabbix-host" +msgid "@code{zabbix-host} (default: @code{\\\"localhost\\\"}) (type: string)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25492 +#. type: table +#: guix-git/doc/guix.texi:25833 msgid "Zabbix server hostname." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25497 +#. type: item +#: guix-git/doc/guix.texi:25834 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} number zabbix-port" +msgid "@code{zabbix-port} (default: @code{10051}) (type: number)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25499 +#. type: table +#: guix-git/doc/guix.texi:25836 msgid "Zabbix server port." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25501 -msgid "Defaults to @samp{10051}." -msgstr "" - #. type: cindex -#: guix-git/doc/guix.texi:25509 +#: guix-git/doc/guix.texi:25846 #, no-wrap msgid "Kerberos" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25513 +#: guix-git/doc/guix.texi:25850 msgid "The @code{(gnu services kerberos)} module provides services relating to the authentication protocol @dfn{Kerberos}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25514 +#: guix-git/doc/guix.texi:25851 #, no-wrap msgid "Krb5 Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25521 +#: guix-git/doc/guix.texi:25858 msgid "Programs using a Kerberos client library normally expect a configuration file in @file{/etc/krb5.conf}. This service generates such a file from a definition provided in the operating system declaration. It does not cause any daemon to be started." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25525 +#: guix-git/doc/guix.texi:25862 msgid "No ``keytab'' files are provided by this service---you must explicitly create them. This service is known to work with the MIT client library, @code{mit-krb5}. Other implementations have not been tested." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25526 +#: guix-git/doc/guix.texi:25863 #, no-wrap msgid "{Scheme Variable} krb5-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25528 +#: guix-git/doc/guix.texi:25865 msgid "A service type for Kerberos 5 clients." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25532 +#: guix-git/doc/guix.texi:25869 msgid "Here is an example of its use:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25546 +#: guix-git/doc/guix.texi:25883 #, no-wrap msgid "" "(service krb5-service-type\n" @@ -45647,206 +46279,206 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25550 +#: guix-git/doc/guix.texi:25887 msgid "This example provides a Kerberos@tie{}5 client configuration which:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25551 +#: guix-git/doc/guix.texi:25888 #, no-wrap msgid "Recognizes two realms, @i{viz:} ``EXAMPLE.COM'' and ``ARGRX.EDU'', both" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25553 +#: guix-git/doc/guix.texi:25890 msgid "of which have distinct administration servers and key distribution centers;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25553 +#: guix-git/doc/guix.texi:25890 #, no-wrap msgid "Will default to the realm ``EXAMPLE.COM'' if the realm is not explicitly" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25555 +#: guix-git/doc/guix.texi:25892 msgid "specified by clients;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25555 +#: guix-git/doc/guix.texi:25892 #, no-wrap msgid "Accepts services which only support encryption types known to be weak." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25563 +#: guix-git/doc/guix.texi:25900 msgid "The @code{krb5-realm} and @code{krb5-configuration} types have many fields. Only the most commonly used ones are described here. For a full list, and more detailed explanation of each, see the MIT @uref{https://web.mit.edu/kerberos/krb5-devel/doc/admin/conf_files/krb5_conf.html,,krb5.conf} documentation." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25565 +#: guix-git/doc/guix.texi:25902 #, no-wrap msgid "{Data Type} krb5-realm" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25566 +#: guix-git/doc/guix.texi:25903 #, no-wrap msgid "realm, kerberos" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25572 +#: guix-git/doc/guix.texi:25909 msgid "This field is a string identifying the name of the realm. A common convention is to use the fully qualified DNS name of your organization, converted to upper case." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25573 +#: guix-git/doc/guix.texi:25910 #, no-wrap msgid "admin-server" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25576 +#: guix-git/doc/guix.texi:25913 msgid "This field is a string identifying the host where the administration server is running." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25577 +#: guix-git/doc/guix.texi:25914 #, no-wrap msgid "kdc" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25580 +#: guix-git/doc/guix.texi:25917 msgid "This field is a string identifying the key distribution center for the realm." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25583 +#: guix-git/doc/guix.texi:25920 #, no-wrap msgid "{Data Type} krb5-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25586 +#: guix-git/doc/guix.texi:25923 #, no-wrap msgid "@code{allow-weak-crypto?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25589 +#: guix-git/doc/guix.texi:25926 msgid "If this flag is @code{#t} then services which only offer encryption algorithms known to be weak will be accepted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25590 +#: guix-git/doc/guix.texi:25927 #, no-wrap msgid "@code{default-realm} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25597 +#: guix-git/doc/guix.texi:25934 msgid "This field should be a string identifying the default Kerberos realm for the client. You should set this field to the name of your Kerberos realm. If this value is @code{#f} then a realm must be specified with every Kerberos principal when invoking programs such as @command{kinit}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25598 +#: guix-git/doc/guix.texi:25935 #, no-wrap msgid "realms" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25603 +#: guix-git/doc/guix.texi:25940 msgid "This should be a non-empty list of @code{krb5-realm} objects, which clients may access. Normally, one of them will have a @code{name} field matching the @code{default-realm} field." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25607 +#: guix-git/doc/guix.texi:25944 #, no-wrap msgid "PAM krb5 Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25608 +#: guix-git/doc/guix.texi:25945 #, no-wrap msgid "pam-krb5" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25614 +#: guix-git/doc/guix.texi:25951 msgid "The @code{pam-krb5} service allows for login authentication and password management via Kerberos. You will need this service if you want PAM enabled applications to authenticate users using Kerberos." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25615 +#: guix-git/doc/guix.texi:25952 #, no-wrap msgid "{Scheme Variable} pam-krb5-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25617 +#: guix-git/doc/guix.texi:25954 msgid "A service type for the Kerberos 5 PAM module." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25619 +#: guix-git/doc/guix.texi:25956 #, no-wrap msgid "{Data Type} pam-krb5-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25622 +#: guix-git/doc/guix.texi:25959 msgid "Data type representing the configuration of the Kerberos 5 PAM module. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25623 +#: guix-git/doc/guix.texi:25960 #, no-wrap msgid "@code{pam-krb5} (default: @code{pam-krb5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25625 +#: guix-git/doc/guix.texi:25962 msgid "The pam-krb5 package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25626 +#: guix-git/doc/guix.texi:25963 #, no-wrap msgid "@code{minimum-uid} (default: @code{1000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25629 +#: guix-git/doc/guix.texi:25966 msgid "The smallest user ID for which Kerberos authentications should be attempted. Local accounts with lower values will silently fail to authenticate." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25635 +#: guix-git/doc/guix.texi:25972 #, no-wrap msgid "LDAP" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25636 +#: guix-git/doc/guix.texi:25973 #, no-wrap msgid "nslcd, LDAP service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25643 +#: guix-git/doc/guix.texi:25980 msgid "The @code{(gnu services authentication)} module provides the @code{nslcd-service-type}, which can be used to authenticate against an LDAP server. In addition to configuring the service itself, you may want to add @code{ldap} as a name service to the Name Service Switch. @xref{Name Service Switch} for detailed information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25647 +#: guix-git/doc/guix.texi:25984 msgid "Here is a simple operating system declaration with a default configuration of the @code{nslcd-service-type} and a Name Service Switch configuration that consults the @code{ldap} name service last:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25670 +#: guix-git/doc/guix.texi:26007 #, no-wrap msgid "" "(use-service-modules authentication)\n" @@ -45873,643 +46505,643 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25675 +#: guix-git/doc/guix.texi:26012 msgid "Available @code{nslcd-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25676 +#: guix-git/doc/guix.texi:26013 #, no-wrap msgid "{@code{nslcd-configuration} parameter} package nss-pam-ldapd" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25678 +#: guix-git/doc/guix.texi:26015 msgid "The @code{nss-pam-ldapd} package to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25681 +#: guix-git/doc/guix.texi:26018 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number threads" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25685 +#: guix-git/doc/guix.texi:26022 msgid "The number of threads to start that can handle requests and perform LDAP queries. Each thread opens a separate connection to the LDAP server. The default is to start 5 threads." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25690 +#: guix-git/doc/guix.texi:26027 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25692 +#: guix-git/doc/guix.texi:26029 msgid "This specifies the user id with which the daemon should be run." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25694 guix-git/doc/guix.texi:25701 +#: guix-git/doc/guix.texi:26031 guix-git/doc/guix.texi:26038 msgid "Defaults to @samp{\"nslcd\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25697 +#: guix-git/doc/guix.texi:26034 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25699 +#: guix-git/doc/guix.texi:26036 msgid "This specifies the group id with which the daemon should be run." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25704 +#: guix-git/doc/guix.texi:26041 #, no-wrap msgid "{@code{nslcd-configuration} parameter} log-option log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25712 +#: guix-git/doc/guix.texi:26049 msgid "This option controls the way logging is done via a list containing SCHEME and LEVEL@. The SCHEME argument may either be the symbols @samp{none} or @samp{syslog}, or an absolute file name. The LEVEL argument is optional and specifies the log level. The log level may be one of the following symbols: @samp{crit}, @samp{error}, @samp{warning}, @samp{notice}, @samp{info} or @samp{debug}. All messages with the specified log level or higher are logged." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25714 +#: guix-git/doc/guix.texi:26051 msgid "Defaults to @samp{(\"/var/log/nslcd\" info)}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25717 +#: guix-git/doc/guix.texi:26054 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list uri" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25720 +#: guix-git/doc/guix.texi:26057 msgid "The list of LDAP server URIs. Normally, only the first server will be used with the following servers as fall-back." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25722 +#: guix-git/doc/guix.texi:26059 msgid "Defaults to @samp{(\"ldap://localhost:389/\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25725 +#: guix-git/doc/guix.texi:26062 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string ldap-version" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25728 +#: guix-git/doc/guix.texi:26065 msgid "The version of the LDAP protocol to use. The default is to use the maximum version supported by the LDAP library." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25733 +#: guix-git/doc/guix.texi:26070 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string binddn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25736 +#: guix-git/doc/guix.texi:26073 msgid "Specifies the distinguished name with which to bind to the directory server for lookups. The default is to bind anonymously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25741 +#: guix-git/doc/guix.texi:26078 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string bindpw" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25744 +#: guix-git/doc/guix.texi:26081 msgid "Specifies the credentials with which to bind. This option is only applicable when used with binddn." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25749 +#: guix-git/doc/guix.texi:26086 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string rootpwmoddn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25752 +#: guix-git/doc/guix.texi:26089 msgid "Specifies the distinguished name to use when the root user tries to modify a user's password using the PAM module." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25757 +#: guix-git/doc/guix.texi:26094 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string rootpwmodpw" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25761 +#: guix-git/doc/guix.texi:26098 msgid "Specifies the credentials with which to bind if the root user tries to change a user's password. This option is only applicable when used with rootpwmoddn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25766 +#: guix-git/doc/guix.texi:26103 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-mech" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25769 +#: guix-git/doc/guix.texi:26106 msgid "Specifies the SASL mechanism to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25774 +#: guix-git/doc/guix.texi:26111 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-realm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25776 +#: guix-git/doc/guix.texi:26113 msgid "Specifies the SASL realm to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25781 +#: guix-git/doc/guix.texi:26118 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-authcid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25784 +#: guix-git/doc/guix.texi:26121 msgid "Specifies the authentication identity to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25789 +#: guix-git/doc/guix.texi:26126 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-authzid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25792 +#: guix-git/doc/guix.texi:26129 msgid "Specifies the authorization identity to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25797 +#: guix-git/doc/guix.texi:26134 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean sasl-canonicalize?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25802 +#: guix-git/doc/guix.texi:26139 msgid "Determines whether the LDAP server host name should be canonicalised. If this is enabled the LDAP library will do a reverse host name lookup. By default, it is left up to the LDAP library whether this check is performed or not." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25807 +#: guix-git/doc/guix.texi:26144 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string krb5-ccname" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25809 +#: guix-git/doc/guix.texi:26146 msgid "Set the name for the GSS-API Kerberos credentials cache." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25814 +#: guix-git/doc/guix.texi:26151 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string base" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25816 +#: guix-git/doc/guix.texi:26153 msgid "The directory search base." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25818 +#: guix-git/doc/guix.texi:26155 msgid "Defaults to @samp{\"dc=example,dc=com\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25821 +#: guix-git/doc/guix.texi:26158 #, no-wrap msgid "{@code{nslcd-configuration} parameter} scope-option scope" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25825 +#: guix-git/doc/guix.texi:26162 msgid "Specifies the search scope (subtree, onelevel, base or children). The default scope is subtree; base scope is almost never useful for name service lookups; children scope is not supported on all servers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25827 +#: guix-git/doc/guix.texi:26164 msgid "Defaults to @samp{(subtree)}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25830 +#: guix-git/doc/guix.texi:26167 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-deref-option deref" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25833 +#: guix-git/doc/guix.texi:26170 msgid "Specifies the policy for dereferencing aliases. The default policy is to never dereference aliases." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25838 +#: guix-git/doc/guix.texi:26175 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean referrals" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25841 +#: guix-git/doc/guix.texi:26178 msgid "Specifies whether automatic referral chasing should be enabled. The default behaviour is to chase referrals." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25846 +#: guix-git/doc/guix.texi:26183 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list-of-map-entries maps" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25851 +#: guix-git/doc/guix.texi:26188 msgid "This option allows for custom attributes to be looked up instead of the default RFC 2307 attributes. It is a list of maps, each consisting of the name of a map, the RFC 2307 attribute to match and the query expression for the attribute as it is available in the directory." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25856 +#: guix-git/doc/guix.texi:26193 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list-of-filter-entries filters" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25859 +#: guix-git/doc/guix.texi:26196 msgid "A list of filters consisting of the name of a map to which the filter applies and an LDAP search filter expression." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25864 +#: guix-git/doc/guix.texi:26201 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number bind-timelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25867 +#: guix-git/doc/guix.texi:26204 msgid "Specifies the time limit in seconds to use when connecting to the directory server. The default value is 10 seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25872 +#: guix-git/doc/guix.texi:26209 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number timelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25876 +#: guix-git/doc/guix.texi:26213 msgid "Specifies the time limit (in seconds) to wait for a response from the LDAP server. A value of zero, which is the default, is to wait indefinitely for searches to be completed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25881 +#: guix-git/doc/guix.texi:26218 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number idle-timelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25885 +#: guix-git/doc/guix.texi:26222 msgid "Specifies the period if inactivity (in seconds) after which the con‐ nection to the LDAP server will be closed. The default is not to time out connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25890 +#: guix-git/doc/guix.texi:26227 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number reconnect-sleeptime" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25894 +#: guix-git/doc/guix.texi:26231 msgid "Specifies the number of seconds to sleep when connecting to all LDAP servers fails. By default one second is waited between the first failure and the first retry." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25899 +#: guix-git/doc/guix.texi:26236 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number reconnect-retrytime" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25903 +#: guix-git/doc/guix.texi:26240 msgid "Specifies the time after which the LDAP server is considered to be permanently unavailable. Once this time is reached retries will be done only once per this time period. The default value is 10 seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25908 +#: guix-git/doc/guix.texi:26245 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-ssl-option ssl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25912 +#: guix-git/doc/guix.texi:26249 msgid "Specifies whether to use SSL/TLS or not (the default is not to). If 'start-tls is specified then StartTLS is used rather than raw LDAP over SSL." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25917 +#: guix-git/doc/guix.texi:26254 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-tls-reqcert-option tls-reqcert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25920 +#: guix-git/doc/guix.texi:26257 msgid "Specifies what checks to perform on a server-supplied certificate. The meaning of the values is described in the ldap.conf(5) manual page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25925 +#: guix-git/doc/guix.texi:26262 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cacertdir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25928 +#: guix-git/doc/guix.texi:26265 msgid "Specifies the directory containing X.509 certificates for peer authen‐ tication. This parameter is ignored when using GnuTLS." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25933 +#: guix-git/doc/guix.texi:26270 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cacertfile" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25935 +#: guix-git/doc/guix.texi:26272 msgid "Specifies the path to the X.509 certificate for peer authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25940 +#: guix-git/doc/guix.texi:26277 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-randfile" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25943 +#: guix-git/doc/guix.texi:26280 msgid "Specifies the path to an entropy source. This parameter is ignored when using GnuTLS." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25948 +#: guix-git/doc/guix.texi:26285 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-ciphers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25950 +#: guix-git/doc/guix.texi:26287 msgid "Specifies the ciphers to use for TLS as a string." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25955 +#: guix-git/doc/guix.texi:26292 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25958 +#: guix-git/doc/guix.texi:26295 msgid "Specifies the path to the file containing the local certificate for client TLS authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25963 +#: guix-git/doc/guix.texi:26300 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-key" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25966 +#: guix-git/doc/guix.texi:26303 msgid "Specifies the path to the file containing the private key for client TLS authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25971 +#: guix-git/doc/guix.texi:26308 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number pagesize" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25975 +#: guix-git/doc/guix.texi:26312 msgid "Set this to a number greater than 0 to request paged results from the LDAP server in accordance with RFC2696. The default (0) is to not request paged results." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25980 +#: guix-git/doc/guix.texi:26317 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-ignore-users-option nss-initgroups-ignoreusers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25984 +#: guix-git/doc/guix.texi:26321 msgid "This option prevents group membership lookups through LDAP for the specified users. Alternatively, the value 'all-local may be used. With that value nslcd builds a full list of non-LDAP users on startup." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25989 +#: guix-git/doc/guix.texi:26326 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-min-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25992 +#: guix-git/doc/guix.texi:26329 msgid "This option ensures that LDAP users with a numeric user id lower than the specified value are ignored." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25997 +#: guix-git/doc/guix.texi:26334 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-uid-offset" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26000 +#: guix-git/doc/guix.texi:26337 msgid "This option specifies an offset that is added to all LDAP numeric user ids. This can be used to avoid user id collisions with local users." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26005 +#: guix-git/doc/guix.texi:26342 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-gid-offset" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26008 +#: guix-git/doc/guix.texi:26345 msgid "This option specifies an offset that is added to all LDAP numeric group ids. This can be used to avoid user id collisions with local groups." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26013 +#: guix-git/doc/guix.texi:26350 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-nested-groups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26019 +#: guix-git/doc/guix.texi:26356 msgid "If this option is set, the member attribute of a group may point to another group. Members of nested groups are also returned in the higher level group and parent groups are returned when finding groups for a specific user. The default is not to perform extra searches for nested groups." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26024 +#: guix-git/doc/guix.texi:26361 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-getgrent-skipmembers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26029 +#: guix-git/doc/guix.texi:26366 msgid "If this option is set, the group member list is not retrieved when looking up groups. Lookups for finding which groups a user belongs to will remain functional so the user will likely still get the correct groups assigned on login." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26034 +#: guix-git/doc/guix.texi:26371 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-disable-enumeration" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26040 +#: guix-git/doc/guix.texi:26377 msgid "If this option is set, functions which cause all user/group entries to be loaded from the directory will not succeed in doing so. This can dramatically reduce LDAP server load in situations where there are a great number of users and/or groups. This option is not recommended for most configurations." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26045 +#: guix-git/doc/guix.texi:26382 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string validnames" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26049 +#: guix-git/doc/guix.texi:26386 msgid "This option can be used to specify how user and group names are verified within the system. This pattern is used to check all user and group names that are requested and returned from LDAP." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26054 +#: guix-git/doc/guix.texi:26391 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean ignorecase" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26059 +#: guix-git/doc/guix.texi:26396 msgid "This specifies whether or not to perform searches using case-insensitive matching. Enabling this could open up the system to authorization bypass vulnerabilities and introduce nscd cache poisoning vulnerabilities which allow denial of service." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26064 +#: guix-git/doc/guix.texi:26401 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean pam-authc-ppolicy" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26067 +#: guix-git/doc/guix.texi:26404 msgid "This option specifies whether password policy controls are requested and handled from the LDAP server when performing user authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26072 +#: guix-git/doc/guix.texi:26409 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-authc-search" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26078 +#: guix-git/doc/guix.texi:26415 msgid "By default nslcd performs an LDAP search with the user's credentials after BIND (authentication) to ensure that the BIND operation was successful. The default search is a simple check to see if the user's DN exists. A search filter can be specified that will be used instead. It should return at least one entry." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26083 +#: guix-git/doc/guix.texi:26420 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-authz-search" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26087 +#: guix-git/doc/guix.texi:26424 msgid "This option allows flexible fine tuning of the authorisation check that should be performed. The search filter specified is executed and if any entries match, access is granted, otherwise access is denied." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26092 +#: guix-git/doc/guix.texi:26429 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-password-prohibit-message" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26097 +#: guix-git/doc/guix.texi:26434 msgid "If this option is set password modification using pam_ldap will be denied and the specified message will be presented to the user instead. The message can be used to direct the user to an alternative means of changing their password." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26102 +#: guix-git/doc/guix.texi:26439 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list pam-services" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26104 +#: guix-git/doc/guix.texi:26441 msgid "List of pam service names for which LDAP authentication should suffice." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26115 +#: guix-git/doc/guix.texi:26452 #, no-wrap msgid "web" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26116 +#: guix-git/doc/guix.texi:26453 #, no-wrap msgid "www" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26117 +#: guix-git/doc/guix.texi:26454 #, no-wrap msgid "HTTP" msgstr "HTTP" #. type: Plain text -#: guix-git/doc/guix.texi:26120 +#: guix-git/doc/guix.texi:26457 msgid "The @code{(gnu services web)} module provides the Apache HTTP Server, the nginx web server, and also a fastcgi wrapper daemon." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26121 +#: guix-git/doc/guix.texi:26458 #, no-wrap msgid "Apache HTTP Server" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26123 +#: guix-git/doc/guix.texi:26460 #, no-wrap msgid "{Scheme Variable} httpd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26127 +#: guix-git/doc/guix.texi:26464 msgid "Service type for the @uref{https://httpd.apache.org/,Apache HTTP} server (@dfn{httpd}). The value for this service type is a @code{httpd-configuration} record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26129 guix-git/doc/guix.texi:26311 +#: guix-git/doc/guix.texi:26466 guix-git/doc/guix.texi:26648 msgid "A simple example configuration is given below." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26137 +#: guix-git/doc/guix.texi:26474 #, no-wrap msgid "" "(service httpd-service-type\n" @@ -46521,12 +47153,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26141 +#: guix-git/doc/guix.texi:26478 msgid "Other services can also extend the @code{httpd-service-type} to add to the configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26150 guix-git/doc/guix.texi:26290 +#: guix-git/doc/guix.texi:26487 guix-git/doc/guix.texi:26627 #, no-wrap msgid "" "(simple-service 'www.example.com-server httpd-service-type\n" @@ -46539,115 +47171,115 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26156 +#: guix-git/doc/guix.texi:26493 msgid "The details for the @code{httpd-configuration}, @code{httpd-module}, @code{httpd-config-file} and @code{httpd-virtualhost} record types are given below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26157 +#: guix-git/doc/guix.texi:26494 #, no-wrap msgid "{Data Type} httpd-configuration" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26159 +#: guix-git/doc/guix.texi:26496 msgid "This data type represents the configuration for the httpd service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26161 +#: guix-git/doc/guix.texi:26498 #, no-wrap msgid "@code{package} (default: @code{httpd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26163 +#: guix-git/doc/guix.texi:26500 msgid "The httpd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26164 guix-git/doc/guix.texi:26253 +#: guix-git/doc/guix.texi:26501 guix-git/doc/guix.texi:26590 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/httpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26166 +#: guix-git/doc/guix.texi:26503 msgid "The pid file used by the shepherd-service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26167 +#: guix-git/doc/guix.texi:26504 #, no-wrap msgid "@code{config} (default: @code{(httpd-config-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26172 +#: guix-git/doc/guix.texi:26509 msgid "The configuration file to use with the httpd service. The default value is a @code{httpd-config-file} record, but this can also be a different G-expression that generates a file, for example a @code{plain-file}. A file outside of the store can also be specified through a string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26176 +#: guix-git/doc/guix.texi:26513 #, no-wrap msgid "{Data Type} httpd-module" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26178 +#: guix-git/doc/guix.texi:26515 msgid "This data type represents a module for the httpd service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26182 +#: guix-git/doc/guix.texi:26519 msgid "The name of the module." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26188 +#: guix-git/doc/guix.texi:26525 msgid "The file for the module. This can be relative to the httpd package being used, the absolute location of a file, or a G-expression for a file within the store, for example @code{(file-append mod-wsgi \"/modules/mod_wsgi.so\")}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26192 +#: guix-git/doc/guix.texi:26529 #, no-wrap msgid "{Scheme Variable} %default-httpd-modules" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26194 +#: guix-git/doc/guix.texi:26531 msgid "A default list of @code{httpd-module} objects." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26196 +#: guix-git/doc/guix.texi:26533 #, no-wrap msgid "{Data Type} httpd-config-file" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26198 +#: guix-git/doc/guix.texi:26535 msgid "This data type represents a configuration file for the httpd service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26200 +#: guix-git/doc/guix.texi:26537 #, no-wrap msgid "@code{modules} (default: @code{%default-httpd-modules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26203 +#: guix-git/doc/guix.texi:26540 msgid "The modules to load. Additional modules can be added here, or loaded by additional configuration." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26206 +#: guix-git/doc/guix.texi:26543 msgid "For example, in order to handle requests for PHP files, you can use Apache’s @code{mod_proxy_fcgi} module along with @code{php-fpm-service-type}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26228 +#: guix-git/doc/guix.texi:26565 #, no-wrap msgid "" "(service httpd-service-type\n" @@ -46673,165 +47305,165 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26230 +#: guix-git/doc/guix.texi:26567 #, no-wrap msgid "@code{server-root} (default: @code{httpd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26234 +#: guix-git/doc/guix.texi:26571 msgid "The @code{ServerRoot} in the configuration file, defaults to the httpd package. Directives including @code{Include} and @code{LoadModule} are taken as relative to the server root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26235 +#: guix-git/doc/guix.texi:26572 #, no-wrap msgid "@code{server-name} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26239 +#: guix-git/doc/guix.texi:26576 msgid "The @code{ServerName} in the configuration file, used to specify the request scheme, hostname and port that the server uses to identify itself." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26243 +#: guix-git/doc/guix.texi:26580 msgid "This doesn't need to be set in the server config, and can be specified in virtual hosts. The default is @code{#f} to not specify a @code{ServerName}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26244 +#: guix-git/doc/guix.texi:26581 #, no-wrap msgid "@code{document-root} (default: @code{\"/srv/http\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26246 +#: guix-git/doc/guix.texi:26583 msgid "The @code{DocumentRoot} from which files will be served." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26247 +#: guix-git/doc/guix.texi:26584 #, no-wrap msgid "@code{listen} (default: @code{'(\"80\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26252 +#: guix-git/doc/guix.texi:26589 msgid "The list of values for the @code{Listen} directives in the config file. The value should be a list of strings, when each string can specify the port number to listen on, and optionally the IP address and protocol to use." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26257 +#: guix-git/doc/guix.texi:26594 msgid "The @code{PidFile} to use. This should match the @code{pid-file} set in the @code{httpd-configuration} so that the Shepherd service is configured correctly." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26258 +#: guix-git/doc/guix.texi:26595 #, no-wrap msgid "@code{error-log} (default: @code{\"/var/log/httpd/error_log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26260 +#: guix-git/doc/guix.texi:26597 msgid "The @code{ErrorLog} to which the server will log errors." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26261 guix-git/doc/guix.texi:26823 +#: guix-git/doc/guix.texi:26598 guix-git/doc/guix.texi:27160 #, no-wrap msgid "@code{user} (default: @code{\"httpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26263 +#: guix-git/doc/guix.texi:26600 msgid "The @code{User} which the server will answer requests as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26264 +#: guix-git/doc/guix.texi:26601 #, no-wrap msgid "@code{group} (default: @code{\"httpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26266 +#: guix-git/doc/guix.texi:26603 msgid "The @code{Group} which the server will answer requests as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26267 +#: guix-git/doc/guix.texi:26604 #, no-wrap msgid "@code{extra-config} (default: @code{(list \"TypesConfig etc/httpd/mime.types\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26270 +#: guix-git/doc/guix.texi:26607 msgid "A flat list of strings and G-expressions which will be added to the end of the configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26273 +#: guix-git/doc/guix.texi:26610 msgid "Any values which the service is extended with will be appended to this list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26277 +#: guix-git/doc/guix.texi:26614 #, no-wrap msgid "{Data Type} httpd-virtualhost" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26279 +#: guix-git/doc/guix.texi:26616 msgid "This data type represents a virtualhost configuration block for the httpd service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26281 +#: guix-git/doc/guix.texi:26618 msgid "These should be added to the extra-config for the httpd-service." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26293 +#: guix-git/doc/guix.texi:26630 #, no-wrap msgid "addresses-and-ports" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26295 +#: guix-git/doc/guix.texi:26632 msgid "The addresses and ports for the @code{VirtualHost} directive." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26296 +#: guix-git/doc/guix.texi:26633 #, no-wrap msgid "contents" msgstr "내용" #. type: table -#: guix-git/doc/guix.texi:26299 +#: guix-git/doc/guix.texi:26636 msgid "The contents of the @code{VirtualHost} directive, this should be a list of strings and G-expressions." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26304 +#: guix-git/doc/guix.texi:26641 #, no-wrap msgid "NGINX" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26306 +#: guix-git/doc/guix.texi:26643 #, no-wrap msgid "{Scheme Variable} nginx-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26309 +#: guix-git/doc/guix.texi:26646 msgid "Service type for the @uref{https://nginx.org/,NGinx} web server. The value for this service type is a @code{} record." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26319 guix-git/doc/guix.texi:26373 +#: guix-git/doc/guix.texi:26656 guix-git/doc/guix.texi:26710 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -46843,12 +47475,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26324 +#: guix-git/doc/guix.texi:26661 msgid "In addition to adding server blocks to the service configuration directly, this service can be extended by other services to add server blocks, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26330 +#: guix-git/doc/guix.texi:26667 #, no-wrap msgid "" "(simple-service 'my-extra-server nginx-service-type\n" @@ -46858,88 +47490,88 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26341 +#: guix-git/doc/guix.texi:26678 msgid "At startup, @command{nginx} has not yet read its configuration file, so it uses a default file to log error messages. If it fails to load its configuration file, that is where error messages are logged. After the configuration file is loaded, the default error log file changes as per configuration. In our case, startup error messages can be found in @file{/var/run/nginx/logs/error.log}, and after configuration in @file{/var/log/nginx/error.log}. The second location can be changed with the @var{log-directory} configuration option." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26342 +#: guix-git/doc/guix.texi:26679 #, no-wrap msgid "{Data Type} nginx-configuration" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26346 +#: guix-git/doc/guix.texi:26683 msgid "This data type represents the configuration for NGinx. Some configuration can be done through this and the other provided record types, or alternatively, a config file can be provided." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26348 +#: guix-git/doc/guix.texi:26685 #, no-wrap msgid "@code{nginx} (default: @code{nginx})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26350 +#: guix-git/doc/guix.texi:26687 msgid "The nginx package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26351 +#: guix-git/doc/guix.texi:26688 #, no-wrap msgid "@code{log-directory} (default: @code{\"/var/log/nginx\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26353 +#: guix-git/doc/guix.texi:26690 msgid "The directory to which NGinx will write log files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26354 +#: guix-git/doc/guix.texi:26691 #, no-wrap msgid "@code{run-directory} (default: @code{\"/var/run/nginx\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26357 +#: guix-git/doc/guix.texi:26694 msgid "The directory in which NGinx will create a pid file, and write temporary files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26358 +#: guix-git/doc/guix.texi:26695 #, no-wrap msgid "@code{server-blocks} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26362 +#: guix-git/doc/guix.texi:26699 msgid "A list of @dfn{server blocks} to create in the generated configuration file, the elements should be of type @code{}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26366 +#: guix-git/doc/guix.texi:26703 msgid "The following example would setup NGinx to serve @code{www.example.com} from the @code{/srv/http/www.example.com} directory, without using HTTPS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26375 +#: guix-git/doc/guix.texi:26712 #, no-wrap msgid "@code{upstream-blocks} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26379 +#: guix-git/doc/guix.texi:26716 msgid "A list of @dfn{upstream blocks} to create in the generated configuration file, the elements should be of type @code{}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26386 +#: guix-git/doc/guix.texi:26723 msgid "Configuring upstreams through the @code{upstream-blocks} can be useful when combined with @code{locations} in the @code{} records. The following example creates a server configuration with one location configuration, that will proxy requests to a upstream configuration, which will handle requests with two servers." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26405 +#: guix-git/doc/guix.texi:26742 #, no-wrap msgid "" "(service\n" @@ -46962,44 +47594,44 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26413 +#: guix-git/doc/guix.texi:26750 msgid "If a configuration @var{file} is provided, this will be used, rather than generating a configuration file from the provided @code{log-directory}, @code{run-directory}, @code{server-blocks} and @code{upstream-blocks}. For proper operation, these arguments should match what is in @var{file} to ensure that the directories are created when the service is activated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26417 +#: guix-git/doc/guix.texi:26754 msgid "This can be useful if you have an existing configuration file, or it's not possible to do what is required through the other parts of the nginx-configuration record." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26418 +#: guix-git/doc/guix.texi:26755 #, no-wrap msgid "@code{server-names-hash-bucket-size} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26421 +#: guix-git/doc/guix.texi:26758 msgid "Bucket size for the server names hash tables, defaults to @code{#f} to use the size of the processors cache line." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26422 +#: guix-git/doc/guix.texi:26759 #, no-wrap msgid "@code{server-names-hash-bucket-max-size} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26424 +#: guix-git/doc/guix.texi:26761 msgid "Maximum bucket size for the server names hash tables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26428 +#: guix-git/doc/guix.texi:26765 msgid "List of nginx dynamic modules to load. This should be a list of file names of loadable modules, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26436 +#: guix-git/doc/guix.texi:26773 #, no-wrap msgid "" "(modules\n" @@ -47011,18 +47643,18 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26438 +#: guix-git/doc/guix.texi:26775 #, no-wrap msgid "@code{lua-package-path} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26441 +#: guix-git/doc/guix.texi:26778 msgid "List of nginx lua packages to load. This should be a list of package names of loadable lua modules, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26448 +#: guix-git/doc/guix.texi:26785 #, no-wrap msgid "" "(lua-package-path (list lua-resty-core\n" @@ -47033,35 +47665,35 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26450 +#: guix-git/doc/guix.texi:26787 #, no-wrap msgid "@code{lua-package-cpath} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26453 +#: guix-git/doc/guix.texi:26790 msgid "List of nginx lua C packages to load. This should be a list of package names of loadable lua C modules, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26456 +#: guix-git/doc/guix.texi:26793 #, no-wrap msgid "(lua-package-cpath (list lua-resty-signal))\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26458 +#: guix-git/doc/guix.texi:26795 #, no-wrap msgid "@code{global-directives} (default: @code{'((events . ()))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26461 +#: guix-git/doc/guix.texi:26798 msgid "Association list of global directives for the top level of the nginx configuration. Values may themselves be association lists." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26467 +#: guix-git/doc/guix.texi:26804 #, no-wrap msgid "" "(global-directives\n" @@ -47071,312 +47703,312 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26472 +#: guix-git/doc/guix.texi:26809 msgid "Extra content for the @code{http} block. Should be string or a string valued G-expression." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26476 +#: guix-git/doc/guix.texi:26813 #, no-wrap msgid "{Data Type} nginx-server-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26479 +#: guix-git/doc/guix.texi:26816 msgid "Data type representing the configuration of an nginx server block. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26481 +#: guix-git/doc/guix.texi:26818 #, no-wrap msgid "@code{listen} (default: @code{'(\"80\" \"443 ssl\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26486 +#: guix-git/doc/guix.texi:26823 msgid "Each @code{listen} directive sets the address and port for IP, or the path for a UNIX-domain socket on which the server will accept requests. Both address and port, or only address or only port can be specified. An address may also be a hostname, for example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26489 +#: guix-git/doc/guix.texi:26826 #, no-wrap msgid "'(\"127.0.0.1:8000\" \"127.0.0.1\" \"8000\" \"*:8000\" \"localhost:8000\")\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26491 +#: guix-git/doc/guix.texi:26828 #, no-wrap msgid "@code{server-name} (default: @code{(list 'default)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26494 +#: guix-git/doc/guix.texi:26831 msgid "A list of server names this server represents. @code{'default} represents the default server for connections matching no other server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26495 +#: guix-git/doc/guix.texi:26832 #, no-wrap msgid "@code{root} (default: @code{\"/srv/http\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26497 +#: guix-git/doc/guix.texi:26834 msgid "Root of the website nginx will serve." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26498 +#: guix-git/doc/guix.texi:26835 #, no-wrap msgid "@code{locations} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26502 +#: guix-git/doc/guix.texi:26839 msgid "A list of @dfn{nginx-location-configuration} or @dfn{nginx-named-location-configuration} records to use within this server block." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26503 +#: guix-git/doc/guix.texi:26840 #, no-wrap msgid "@code{index} (default: @code{(list \"index.html\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26506 +#: guix-git/doc/guix.texi:26843 msgid "Index files to look for when clients ask for a directory. If it cannot be found, Nginx will send the list of files in the directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26507 +#: guix-git/doc/guix.texi:26844 #, no-wrap msgid "@code{try-files} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26510 +#: guix-git/doc/guix.texi:26847 msgid "A list of files whose existence is checked in the specified order. @code{nginx} will use the first file it finds to process the request." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26511 +#: guix-git/doc/guix.texi:26848 #, no-wrap msgid "@code{ssl-certificate} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26514 +#: guix-git/doc/guix.texi:26851 msgid "Where to find the certificate for secure connections. Set it to @code{#f} if you don't have a certificate or you don't want to use HTTPS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26515 +#: guix-git/doc/guix.texi:26852 #, no-wrap msgid "@code{ssl-certificate-key} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26518 +#: guix-git/doc/guix.texi:26855 msgid "Where to find the private key for secure connections. Set it to @code{#f} if you don't have a key or you don't want to use HTTPS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26519 +#: guix-git/doc/guix.texi:26856 #, no-wrap msgid "@code{server-tokens?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26521 +#: guix-git/doc/guix.texi:26858 msgid "Whether the server should add its configuration to response." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26522 +#: guix-git/doc/guix.texi:26859 #, no-wrap msgid "@code{raw-content} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26524 +#: guix-git/doc/guix.texi:26861 msgid "A list of raw lines added to the server block." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26528 +#: guix-git/doc/guix.texi:26865 #, no-wrap msgid "{Data Type} nginx-upstream-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26531 +#: guix-git/doc/guix.texi:26868 msgid "Data type representing the configuration of an nginx @code{upstream} block. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26535 +#: guix-git/doc/guix.texi:26872 msgid "Name for this group of servers." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26536 +#: guix-git/doc/guix.texi:26873 #, no-wrap msgid "servers" msgstr "서버" #. type: table -#: guix-git/doc/guix.texi:26543 +#: guix-git/doc/guix.texi:26880 msgid "Specify the addresses of the servers in the group. The address can be specified as a IP address (e.g.@: @samp{127.0.0.1}), domain name (e.g.@: @samp{backend1.example.com}) or a path to a UNIX socket using the prefix @samp{unix:}. For addresses using an IP address or domain name, the default port is 80, and a different port can be specified explicitly." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26547 +#: guix-git/doc/guix.texi:26884 #, no-wrap msgid "{Data Type} nginx-location-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26550 +#: guix-git/doc/guix.texi:26887 msgid "Data type representing the configuration of an nginx @code{location} block. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26554 +#: guix-git/doc/guix.texi:26891 msgid "URI which this location block matches." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:26556 +#: guix-git/doc/guix.texi:26893 msgid "nginx-location-configuration body" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26556 guix-git/doc/guix.texi:26577 +#: guix-git/doc/guix.texi:26893 guix-git/doc/guix.texi:26914 #, no-wrap msgid "body" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26563 +#: guix-git/doc/guix.texi:26900 msgid "Body of the location block, specified as a list of strings. This can contain many configuration directives. For example, to pass requests to a upstream server group defined using an @code{nginx-upstream-configuration} block, the following directive would be specified in the body @samp{(list \"proxy_pass http://upstream-name;\")}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26567 +#: guix-git/doc/guix.texi:26904 #, no-wrap msgid "{Data Type} nginx-named-location-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26572 +#: guix-git/doc/guix.texi:26909 msgid "Data type representing the configuration of an nginx named location block. Named location blocks are used for request redirection, and not used for regular request processing. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26576 +#: guix-git/doc/guix.texi:26913 msgid "Name to identify this location block." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26582 +#: guix-git/doc/guix.texi:26919 msgid "@xref{nginx-location-configuration body}, as the body for named location blocks can be used in a similar way to the @code{nginx-location-configuration body}. One restriction is that the body of a named location block cannot contain location blocks." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26586 +#: guix-git/doc/guix.texi:26923 #, no-wrap msgid "Varnish Cache" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26587 +#: guix-git/doc/guix.texi:26924 #, no-wrap msgid "Varnish" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26592 +#: guix-git/doc/guix.texi:26929 msgid "Varnish is a fast cache server that sits in between web applications and end users. It proxies requests from clients and caches the accessed URLs such that multiple requests for the same resource only creates one request to the back-end." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26593 +#: guix-git/doc/guix.texi:26930 #, no-wrap msgid "{Scheme Variable} varnish-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26595 +#: guix-git/doc/guix.texi:26932 msgid "Service type for the Varnish daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26597 +#: guix-git/doc/guix.texi:26934 #, no-wrap msgid "{Data Type} varnish-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26600 +#: guix-git/doc/guix.texi:26937 msgid "Data type representing the @code{varnish} service configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26602 +#: guix-git/doc/guix.texi:26939 #, no-wrap msgid "@code{package} (default: @code{varnish})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26604 +#: guix-git/doc/guix.texi:26941 msgid "The Varnish package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26605 +#: guix-git/doc/guix.texi:26942 #, no-wrap msgid "@code{name} (default: @code{\"default\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26610 +#: guix-git/doc/guix.texi:26947 msgid "A name for this Varnish instance. Varnish will create a directory in @file{/var/varnish/} with this name and keep temporary files there. If the name starts with a forward slash, it is interpreted as an absolute directory name." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26613 +#: guix-git/doc/guix.texi:26950 msgid "Pass the @code{-n} argument to other Varnish programs to connect to the named instance, e.g.@: @command{varnishncsa -n default}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26614 +#: guix-git/doc/guix.texi:26951 #, no-wrap msgid "@code{backend} (default: @code{\"localhost:8080\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26616 +#: guix-git/doc/guix.texi:26953 msgid "The backend to use. This option has no effect if @code{vcl} is set." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26617 +#: guix-git/doc/guix.texi:26954 #, no-wrap msgid "@code{vcl} (default: #f)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26622 +#: guix-git/doc/guix.texi:26959 msgid "The @dfn{VCL} (Varnish Configuration Language) program to run. If this is @code{#f}, Varnish will proxy @code{backend} using the default configuration. Otherwise this must be a file-like object with valid VCL syntax." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26626 +#: guix-git/doc/guix.texi:26963 msgid "For example, to mirror @url{https://www.gnu.org,www.gnu.org} with VCL you can do something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26632 +#: guix-git/doc/guix.texi:26969 #, no-wrap msgid "" "(define %gnu-mirror\n" @@ -47387,7 +48019,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26640 +#: guix-git/doc/guix.texi:26977 #, no-wrap msgid "" "(operating-system\n" @@ -47400,82 +48032,82 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26644 +#: guix-git/doc/guix.texi:26981 msgid "The configuration of an already running Varnish instance can be inspected and changed using the @command{varnishadm} program." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26648 +#: guix-git/doc/guix.texi:26985 msgid "Consult the @url{https://varnish-cache.org/docs/,Varnish User Guide} and @url{https://book.varnish-software.com/4.0/,Varnish Book} for comprehensive documentation on Varnish and its configuration language." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26649 +#: guix-git/doc/guix.texi:26986 #, no-wrap msgid "@code{listen} (default: @code{'(\"localhost:80\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26651 +#: guix-git/doc/guix.texi:26988 msgid "List of addresses Varnish will listen on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26652 +#: guix-git/doc/guix.texi:26989 #, no-wrap msgid "@code{storage} (default: @code{'(\"malloc,128m\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26654 +#: guix-git/doc/guix.texi:26991 msgid "List of storage backends that will be available in VCL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26655 +#: guix-git/doc/guix.texi:26992 #, no-wrap msgid "@code{parameters} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26657 +#: guix-git/doc/guix.texi:26994 msgid "List of run-time parameters in the form @code{'((\"parameter\" . \"value\"))}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26660 +#: guix-git/doc/guix.texi:26997 msgid "Additional arguments to pass to the @command{varnishd} process." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26664 guix-git/doc/guix.texi:26665 +#: guix-git/doc/guix.texi:27001 guix-git/doc/guix.texi:27002 #, no-wrap msgid "Patchwork" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26668 +#: guix-git/doc/guix.texi:27005 msgid "Patchwork is a patch tracking system. It can collect patches sent to a mailing list, and display them in a web interface." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26669 +#: guix-git/doc/guix.texi:27006 #, no-wrap msgid "{Scheme Variable} patchwork-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26671 +#: guix-git/doc/guix.texi:27008 msgid "Service type for Patchwork." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26675 +#: guix-git/doc/guix.texi:27012 msgid "The following example is an example of a minimal service for Patchwork, for the @code{patchwork.example.com} domain." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26695 +#: guix-git/doc/guix.texi:27032 #, no-wrap msgid "" "(service patchwork-service-type\n" @@ -47500,806 +48132,806 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26701 +#: guix-git/doc/guix.texi:27038 msgid "There are three records for configuring the Patchwork service. The @code{} relates to the configuration for Patchwork within the HTTPD service." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26705 +#: guix-git/doc/guix.texi:27042 msgid "The @code{settings-module} field within the @code{} record can be populated with the @code{} record, which describes a settings module that is generated within the Guix store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26709 +#: guix-git/doc/guix.texi:27046 msgid "For the @code{database-configuration} field within the @code{}, the @code{} must be used." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26710 +#: guix-git/doc/guix.texi:27047 #, no-wrap msgid "{Data Type} patchwork-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26713 +#: guix-git/doc/guix.texi:27050 msgid "Data type representing the Patchwork service configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26715 +#: guix-git/doc/guix.texi:27052 #, no-wrap msgid "@code{patchwork} (default: @code{patchwork})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26717 +#: guix-git/doc/guix.texi:27054 msgid "The Patchwork package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26718 +#: guix-git/doc/guix.texi:27055 #, no-wrap msgid "domain" msgstr "도메인" #. type: table -#: guix-git/doc/guix.texi:26721 +#: guix-git/doc/guix.texi:27058 msgid "The domain to use for Patchwork, this is used in the HTTPD service virtual host." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26722 +#: guix-git/doc/guix.texi:27059 #, no-wrap msgid "settings-module" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26728 +#: guix-git/doc/guix.texi:27065 msgid "The settings module to use for Patchwork. As a Django application, Patchwork is configured with a Python module containing the settings. This can either be an instance of the @code{} record, any other record that represents the settings in the store, or a directory outside of the store." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26729 +#: guix-git/doc/guix.texi:27066 #, no-wrap msgid "@code{static-path} (default: @code{\"/static/\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26731 +#: guix-git/doc/guix.texi:27068 msgid "The path under which the HTTPD service should serve the static files." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26732 +#: guix-git/doc/guix.texi:27069 #, no-wrap msgid "getmail-retriever-config" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26736 +#: guix-git/doc/guix.texi:27073 msgid "The getmail-retriever-configuration record value to use with Patchwork. Getmail will be configured with this value, the messages will be delivered to Patchwork." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26740 +#: guix-git/doc/guix.texi:27077 #, no-wrap msgid "{Data Type} patchwork-settings-module" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26745 +#: guix-git/doc/guix.texi:27082 msgid "Data type representing a settings module for Patchwork. Some of these settings relate directly to Patchwork, but others relate to Django, the web framework used by Patchwork, or the Django Rest Framework library. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26747 +#: guix-git/doc/guix.texi:27084 #, no-wrap msgid "@code{database-configuration} (default: @code{(patchwork-database-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26750 +#: guix-git/doc/guix.texi:27087 msgid "The database connection settings used for Patchwork. See the @code{} record type for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26751 +#: guix-git/doc/guix.texi:27088 #, no-wrap msgid "@code{secret-key-file} (default: @code{\"/etc/patchwork/django-secret-key\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26754 +#: guix-git/doc/guix.texi:27091 msgid "Patchwork, as a Django web application uses a secret key for cryptographically signing values. This file should contain a unique unpredictable value." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26757 +#: guix-git/doc/guix.texi:27094 msgid "If this file does not exist, it will be created and populated with a random value by the patchwork-setup shepherd service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26759 +#: guix-git/doc/guix.texi:27096 msgid "This setting relates to Django." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26760 +#: guix-git/doc/guix.texi:27097 #, no-wrap msgid "allowed-hosts" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26763 +#: guix-git/doc/guix.texi:27100 msgid "A list of valid hosts for this Patchwork service. This should at least include the domain specified in the @code{} record." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26765 guix-git/doc/guix.texi:26779 -#: guix-git/doc/guix.texi:26785 guix-git/doc/guix.texi:26791 +#: guix-git/doc/guix.texi:27102 guix-git/doc/guix.texi:27116 +#: guix-git/doc/guix.texi:27122 guix-git/doc/guix.texi:27128 msgid "This is a Django setting." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26766 +#: guix-git/doc/guix.texi:27103 #, no-wrap msgid "default-from-email" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26768 +#: guix-git/doc/guix.texi:27105 msgid "The email address from which Patchwork should send email by default." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26770 guix-git/doc/guix.texi:26796 -#: guix-git/doc/guix.texi:26801 guix-git/doc/guix.texi:26806 +#: guix-git/doc/guix.texi:27107 guix-git/doc/guix.texi:27133 +#: guix-git/doc/guix.texi:27138 guix-git/doc/guix.texi:27143 msgid "This is a Patchwork setting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26771 +#: guix-git/doc/guix.texi:27108 #, no-wrap msgid "@code{static-url} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26774 +#: guix-git/doc/guix.texi:27111 msgid "The URL to use when serving static assets. It can be part of a URL, or a full URL, but must end in a @code{/}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26777 +#: guix-git/doc/guix.texi:27114 msgid "If the default value is used, the @code{static-path} value from the @code{} record will be used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26780 +#: guix-git/doc/guix.texi:27117 #, no-wrap msgid "@code{admins} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26783 +#: guix-git/doc/guix.texi:27120 msgid "Email addresses to send the details of errors that occur. Each value should be a list containing two elements, the name and then the email address." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26789 +#: guix-git/doc/guix.texi:27126 msgid "Whether to run Patchwork in debug mode. If set to @code{#t}, detailed error messages will be shown." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26792 +#: guix-git/doc/guix.texi:27129 #, no-wrap msgid "@code{enable-rest-api?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26794 +#: guix-git/doc/guix.texi:27131 msgid "Whether to enable the Patchwork REST API." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26797 +#: guix-git/doc/guix.texi:27134 #, no-wrap msgid "@code{enable-xmlrpc?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26799 +#: guix-git/doc/guix.texi:27136 msgid "Whether to enable the XML RPC API." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26802 +#: guix-git/doc/guix.texi:27139 #, no-wrap msgid "@code{force-https-links?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26804 +#: guix-git/doc/guix.texi:27141 msgid "Whether to use HTTPS links on Patchwork pages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26809 +#: guix-git/doc/guix.texi:27146 msgid "Extra code to place at the end of the Patchwork settings module." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26813 +#: guix-git/doc/guix.texi:27150 #, no-wrap msgid "{Data Type} patchwork-database-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26815 +#: guix-git/doc/guix.texi:27152 msgid "Data type representing the database configuration for Patchwork." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26817 +#: guix-git/doc/guix.texi:27154 #, no-wrap msgid "@code{engine} (default: @code{\"django.db.backends.postgresql_psycopg2\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26819 +#: guix-git/doc/guix.texi:27156 msgid "The database engine to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26820 +#: guix-git/doc/guix.texi:27157 #, no-wrap msgid "@code{name} (default: @code{\"patchwork\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26822 +#: guix-git/doc/guix.texi:27159 msgid "The name of the database to use." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26825 +#: guix-git/doc/guix.texi:27162 msgid "The user to connect to the database as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26826 +#: guix-git/doc/guix.texi:27163 #, no-wrap msgid "@code{password} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26828 +#: guix-git/doc/guix.texi:27165 msgid "The password to use when connecting to the database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26829 +#: guix-git/doc/guix.texi:27166 #, no-wrap msgid "@code{host} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26831 +#: guix-git/doc/guix.texi:27168 msgid "The host to make the database connection to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26832 +#: guix-git/doc/guix.texi:27169 #, no-wrap msgid "@code{port} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26834 +#: guix-git/doc/guix.texi:27171 msgid "The port on which to connect to the database." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26838 +#: guix-git/doc/guix.texi:27175 #, no-wrap msgid "Mumi" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26840 +#: guix-git/doc/guix.texi:27177 #, no-wrap msgid "Mumi, Debbugs Web interface" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26841 +#: guix-git/doc/guix.texi:27178 #, no-wrap msgid "Debbugs, Mumi Web interface" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26846 +#: guix-git/doc/guix.texi:27183 msgid "@uref{https://git.elephly.net/gitweb.cgi?p=software/mumi.git, Mumi} is a Web interface to the Debbugs bug tracker, by default for @uref{https://bugs.gnu.org, the GNU instance}. Mumi is a Web server, but it also fetches and indexes mail retrieved from Debbugs." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26847 +#: guix-git/doc/guix.texi:27184 #, no-wrap msgid "{Scheme Variable} mumi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26849 +#: guix-git/doc/guix.texi:27186 msgid "This is the service type for Mumi." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26851 +#: guix-git/doc/guix.texi:27188 #, no-wrap msgid "{Data Type} mumi-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26854 +#: guix-git/doc/guix.texi:27191 msgid "Data type representing the Mumi service configuration. This type has the following fields:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26856 +#: guix-git/doc/guix.texi:27193 #, no-wrap msgid "@code{mumi} (default: @code{mumi})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26858 +#: guix-git/doc/guix.texi:27195 msgid "The Mumi package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26859 +#: guix-git/doc/guix.texi:27196 #, no-wrap msgid "@code{mailer?} (default: @code{#true})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26861 +#: guix-git/doc/guix.texi:27198 msgid "Whether to enable or disable the mailer component." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26862 +#: guix-git/doc/guix.texi:27199 #, no-wrap msgid "mumi-configuration-sender" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26864 +#: guix-git/doc/guix.texi:27201 msgid "The email address used as the sender for comments." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26865 +#: guix-git/doc/guix.texi:27202 #, no-wrap msgid "mumi-configuration-smtp" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26870 +#: guix-git/doc/guix.texi:27207 msgid "A URI to configure the SMTP settings for Mailutils. This could be something like @code{sendmail:///path/to/bin/msmtp} or any other URI supported by Mailutils. @xref{SMTP Mailboxes, SMTP Mailboxes,, mailutils, GNU@tie{}Mailutils}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26875 +#: guix-git/doc/guix.texi:27212 #, no-wrap msgid "FastCGI" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26876 +#: guix-git/doc/guix.texi:27213 #, no-wrap msgid "fastcgi" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26877 +#: guix-git/doc/guix.texi:27214 #, no-wrap msgid "fcgiwrap" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26884 +#: guix-git/doc/guix.texi:27221 msgid "FastCGI is an interface between the front-end and the back-end of a web service. It is a somewhat legacy facility; new web services should generally just talk HTTP between the front-end and the back-end. However there are a number of back-end services such as PHP or the optimized HTTP Git repository access that use FastCGI, so we have support for it in Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26891 +#: guix-git/doc/guix.texi:27228 msgid "To use FastCGI, you configure the front-end web server (e.g., nginx) to dispatch some subset of its requests to the fastcgi backend, which listens on a local TCP or UNIX socket. There is an intermediary @code{fcgiwrap} program that sits between the actual backend process and the web server. The front-end indicates which backend program to run, passing that information to the @code{fcgiwrap} process." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26892 +#: guix-git/doc/guix.texi:27229 #, no-wrap msgid "{Scheme Variable} fcgiwrap-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26894 +#: guix-git/doc/guix.texi:27231 msgid "A service type for the @code{fcgiwrap} FastCGI proxy." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26896 +#: guix-git/doc/guix.texi:27233 #, no-wrap msgid "{Data Type} fcgiwrap-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26899 +#: guix-git/doc/guix.texi:27236 msgid "Data type representing the configuration of the @code{fcgiwrap} service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26900 +#: guix-git/doc/guix.texi:27237 #, no-wrap msgid "@code{package} (default: @code{fcgiwrap})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26902 +#: guix-git/doc/guix.texi:27239 msgid "The fcgiwrap package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26903 +#: guix-git/doc/guix.texi:27240 #, no-wrap msgid "@code{socket} (default: @code{tcp:127.0.0.1:9000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26909 +#: guix-git/doc/guix.texi:27246 msgid "The socket on which the @code{fcgiwrap} process should listen, as a string. Valid @var{socket} values include @code{unix:@var{/path/to/unix/socket}}, @code{tcp:@var{dot.ted.qu.ad}:@var{port}} and @code{tcp6:[@var{ipv6_addr}]:port}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26910 +#: guix-git/doc/guix.texi:27247 #, no-wrap msgid "@code{user} (default: @code{fcgiwrap})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:26911 +#: guix-git/doc/guix.texi:27248 #, no-wrap msgid "@code{group} (default: @code{fcgiwrap})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26916 +#: guix-git/doc/guix.texi:27253 msgid "The user and group names, as strings, under which to run the @code{fcgiwrap} process. The @code{fastcgi} service will ensure that if the user asks for the specific user or group names @code{fcgiwrap} that the corresponding user and/or group is present on the system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26923 +#: guix-git/doc/guix.texi:27260 msgid "It is possible to configure a FastCGI-backed web service to pass HTTP authentication information from the front-end to the back-end, and to allow @code{fcgiwrap} to run the back-end process as a corresponding local user. To enable this capability on the back-end, run @code{fcgiwrap} as the @code{root} user and group. Note that this capability also has to be configured on the front-end as well." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26926 +#: guix-git/doc/guix.texi:27263 #, no-wrap msgid "php-fpm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26929 +#: guix-git/doc/guix.texi:27266 msgid "PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI implementation with some additional features useful for sites of any size." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26931 +#: guix-git/doc/guix.texi:27268 msgid "These features include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26932 +#: guix-git/doc/guix.texi:27269 #, no-wrap msgid "Adaptive process spawning" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26933 +#: guix-git/doc/guix.texi:27270 #, no-wrap msgid "Basic statistics (similar to Apache's mod_status)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26934 +#: guix-git/doc/guix.texi:27271 #, no-wrap msgid "Advanced process management with graceful stop/start" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26935 +#: guix-git/doc/guix.texi:27272 #, no-wrap msgid "Ability to start workers with different uid/gid/chroot/environment" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:26937 +#: guix-git/doc/guix.texi:27274 msgid "and different php.ini (replaces safe_mode)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26937 +#: guix-git/doc/guix.texi:27274 #, no-wrap msgid "Stdout & stderr logging" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26938 +#: guix-git/doc/guix.texi:27275 #, no-wrap msgid "Emergency restart in case of accidental opcode cache destruction" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26939 +#: guix-git/doc/guix.texi:27276 #, no-wrap msgid "Accelerated upload support" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26940 +#: guix-git/doc/guix.texi:27277 #, no-wrap msgid "Support for a \"slowlog\"" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26941 +#: guix-git/doc/guix.texi:27278 #, no-wrap msgid "Enhancements to FastCGI, such as fastcgi_finish_request() -" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:26944 +#: guix-git/doc/guix.texi:27281 msgid "a special function to finish request & flush all data while continuing to do something time-consuming (video converting, stats processing, etc.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26946 +#: guix-git/doc/guix.texi:27283 msgid "...@: and much more." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26947 +#: guix-git/doc/guix.texi:27284 #, no-wrap msgid "{Scheme Variable} php-fpm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26949 +#: guix-git/doc/guix.texi:27286 msgid "A Service type for @code{php-fpm}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26951 +#: guix-git/doc/guix.texi:27288 #, no-wrap msgid "{Data Type} php-fpm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26953 +#: guix-git/doc/guix.texi:27290 msgid "Data Type for php-fpm service configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26954 +#: guix-git/doc/guix.texi:27291 #, no-wrap msgid "@code{php} (default: @code{php})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26956 +#: guix-git/doc/guix.texi:27293 msgid "The php package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26956 +#: guix-git/doc/guix.texi:27293 #, no-wrap msgid "@code{socket} (default: @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.sock\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26958 +#: guix-git/doc/guix.texi:27295 msgid "The address on which to accept FastCGI requests. Valid syntaxes are:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26959 +#: guix-git/doc/guix.texi:27296 #, no-wrap msgid "\"ip.add.re.ss:port\"" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26961 +#: guix-git/doc/guix.texi:27298 msgid "Listen on a TCP socket to a specific address on a specific port." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26961 +#: guix-git/doc/guix.texi:27298 #, no-wrap msgid "\"port\"" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26963 +#: guix-git/doc/guix.texi:27300 msgid "Listen on a TCP socket to all addresses on a specific port." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26963 +#: guix-git/doc/guix.texi:27300 #, no-wrap msgid "\"/path/to/unix/socket\"" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26965 +#: guix-git/doc/guix.texi:27302 msgid "Listen on a unix socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26967 +#: guix-git/doc/guix.texi:27304 #, no-wrap msgid "@code{user} (default: @code{php-fpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26969 +#: guix-git/doc/guix.texi:27306 msgid "User who will own the php worker processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26969 +#: guix-git/doc/guix.texi:27306 #, no-wrap msgid "@code{group} (default: @code{php-fpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26971 +#: guix-git/doc/guix.texi:27308 msgid "Group of the worker processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26971 +#: guix-git/doc/guix.texi:27308 #, no-wrap msgid "@code{socket-user} (default: @code{php-fpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26973 +#: guix-git/doc/guix.texi:27310 msgid "User who can speak to the php-fpm socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26973 +#: guix-git/doc/guix.texi:27310 #, no-wrap msgid "@code{socket-group} (default: @code{nginx})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26975 +#: guix-git/doc/guix.texi:27312 msgid "Group that can speak to the php-fpm socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26975 +#: guix-git/doc/guix.texi:27312 #, no-wrap msgid "@code{pid-file} (default: @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.pid\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26978 +#: guix-git/doc/guix.texi:27315 msgid "The process id of the php-fpm process is written to this file once the service has started." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26978 +#: guix-git/doc/guix.texi:27315 #, no-wrap msgid "@code{log-file} (default: @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.log\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26980 +#: guix-git/doc/guix.texi:27317 msgid "Log for the php-fpm master process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26980 +#: guix-git/doc/guix.texi:27317 #, no-wrap msgid "@code{process-manager} (default: @code{(php-fpm-dynamic-process-manager-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26983 +#: guix-git/doc/guix.texi:27320 msgid "Detailed settings for the php-fpm process manager. Must be one of:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26984 +#: guix-git/doc/guix.texi:27321 #, no-wrap msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26985 +#: guix-git/doc/guix.texi:27322 #, no-wrap msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26986 +#: guix-git/doc/guix.texi:27323 #, no-wrap msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26988 +#: guix-git/doc/guix.texi:27325 #, no-wrap msgid "@code{display-errors} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26993 +#: guix-git/doc/guix.texi:27330 msgid "Determines whether php errors and warning should be sent to clients and displayed in their browsers. This is useful for local php development, but a security risk for public sites, as error messages can reveal passwords and personal data." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26993 +#: guix-git/doc/guix.texi:27330 #, no-wrap msgid "@code{timezone} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26995 +#: guix-git/doc/guix.texi:27332 msgid "Specifies @code{php_admin_value[date.timezone]} parameter." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26995 +#: guix-git/doc/guix.texi:27332 #, no-wrap msgid "@code{workers-logfile} (default @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.www.log\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26998 +#: guix-git/doc/guix.texi:27335 msgid "This file will log the @code{stderr} outputs of php worker processes. Can be set to @code{#f} to disable logging." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26998 +#: guix-git/doc/guix.texi:27335 #, no-wrap msgid "@code{file} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27001 +#: guix-git/doc/guix.texi:27338 msgid "An optional override of the whole configuration. You can use the @code{mixed-text-file} function or an absolute filepath for it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27001 +#: guix-git/doc/guix.texi:27338 #, no-wrap msgid "@code{php-ini-file} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27005 +#: guix-git/doc/guix.texi:27342 msgid "An optional override of the default php settings. It may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). You can use the @code{mixed-text-file} function or an absolute filepath for it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27009 +#: guix-git/doc/guix.texi:27346 msgid "For local development it is useful to set a higher timeout and memory limit for spawned php processes. This be accomplished with the following operating system configuration snippet:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27014 +#: guix-git/doc/guix.texi:27351 #, no-wrap msgid "" "(define %local-php-ini\n" @@ -48310,7 +48942,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27021 +#: guix-git/doc/guix.texi:27358 #, no-wrap msgid "" "(operating-system\n" @@ -48322,118 +48954,118 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27026 +#: guix-git/doc/guix.texi:27363 msgid "Consult the @url{https://www.php.net/manual/en/ini.core.php,core php.ini directives} for comprehensive documentation on the acceptable @file{php.ini} directives." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27029 +#: guix-git/doc/guix.texi:27366 #, no-wrap msgid "{Data type} php-fpm-dynamic-process-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27033 +#: guix-git/doc/guix.texi:27370 msgid "Data Type for the @code{dynamic} php-fpm process manager. With the @code{dynamic} process manager, spare worker processes are kept around based on its configured limits." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27034 guix-git/doc/guix.texi:27050 -#: guix-git/doc/guix.texi:27060 +#: guix-git/doc/guix.texi:27371 guix-git/doc/guix.texi:27387 +#: guix-git/doc/guix.texi:27397 #, no-wrap msgid "@code{max-children} (default: @code{5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27036 guix-git/doc/guix.texi:27052 -#: guix-git/doc/guix.texi:27062 +#: guix-git/doc/guix.texi:27373 guix-git/doc/guix.texi:27389 +#: guix-git/doc/guix.texi:27399 msgid "Maximum of worker processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27036 +#: guix-git/doc/guix.texi:27373 #, no-wrap msgid "@code{start-servers} (default: @code{2})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27038 +#: guix-git/doc/guix.texi:27375 msgid "How many worker processes should be started on start-up." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27038 +#: guix-git/doc/guix.texi:27375 #, no-wrap msgid "@code{min-spare-servers} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27040 +#: guix-git/doc/guix.texi:27377 msgid "How many spare worker processes should be kept around at minimum." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27040 +#: guix-git/doc/guix.texi:27377 #, no-wrap msgid "@code{max-spare-servers} (default: @code{3})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27042 +#: guix-git/doc/guix.texi:27379 msgid "How many spare worker processes should be kept around at maximum." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27045 +#: guix-git/doc/guix.texi:27382 #, no-wrap msgid "{Data type} php-fpm-static-process-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27049 +#: guix-git/doc/guix.texi:27386 msgid "Data Type for the @code{static} php-fpm process manager. With the @code{static} process manager, an unchanging number of worker processes are created." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27055 +#: guix-git/doc/guix.texi:27392 #, no-wrap msgid "{Data type} php-fpm-on-demand-process-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27059 +#: guix-git/doc/guix.texi:27396 msgid "Data Type for the @code{on-demand} php-fpm process manager. With the @code{on-demand} process manager, worker processes are only created as requests arrive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27062 +#: guix-git/doc/guix.texi:27399 #, no-wrap msgid "@code{process-idle-timeout} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27064 +#: guix-git/doc/guix.texi:27401 msgid "The time in seconds after which a process with no requests is killed." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27068 +#: guix-git/doc/guix.texi:27405 #, no-wrap msgid "{Scheme Procedure} nginx-php-location @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27074 +#: guix-git/doc/guix.texi:27411 msgid "[#:nginx-package nginx] @ [socket (string-append \"/var/run/php\" @ (version-major (package-version php)) @ \"-fpm.sock\")] A helper function to quickly add php to an @code{nginx-server-configuration}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27077 +#: guix-git/doc/guix.texi:27414 msgid "A simple services setup for nginx with php can look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27090 +#: guix-git/doc/guix.texi:27427 #, no-wrap msgid "" "(services (cons* (service dhcp-client-service-type)\n" @@ -48451,34 +49083,34 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27092 +#: guix-git/doc/guix.texi:27429 #, no-wrap msgid "cat-avatar-generator" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27096 +#: guix-git/doc/guix.texi:27433 msgid "The cat avatar generator is a simple service to demonstrate the use of php-fpm in @code{Nginx}. It is used to generate cat avatar from a seed, for instance the hash of a user's email address." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27097 +#: guix-git/doc/guix.texi:27434 #, no-wrap msgid "{Scheme Procedure} cat-avatar-generator-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27105 +#: guix-git/doc/guix.texi:27442 msgid "[#:cache-dir \"/var/cache/cat-avatar-generator\"] @ [#:package cat-avatar-generator] @ [#:configuration (nginx-server-configuration)] Returns an nginx-server-configuration that inherits @code{configuration}. It extends the nginx configuration to add a server block that serves @code{package}, a version of cat-avatar-generator. During execution, cat-avatar-generator will be able to use @code{cache-dir} as its cache directory." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27108 +#: guix-git/doc/guix.texi:27445 msgid "A simple setup for cat-avatar-generator can look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27115 +#: guix-git/doc/guix.texi:27452 #, no-wrap msgid "" "(services (cons* (cat-avatar-generator-service\n" @@ -48490,177 +49122,177 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27117 +#: guix-git/doc/guix.texi:27454 #, no-wrap msgid "Hpcguix-web" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27119 +#: guix-git/doc/guix.texi:27456 #, no-wrap msgid "hpcguix-web" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27124 +#: guix-git/doc/guix.texi:27461 msgid "The @uref{https://github.com/UMCUGenetics/hpcguix-web/, hpcguix-web} program is a customizable web interface to browse Guix packages, initially designed for users of high-performance computing (HPC) clusters." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27125 +#: guix-git/doc/guix.texi:27462 #, no-wrap msgid "{Scheme Variable} hpcguix-web-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27127 +#: guix-git/doc/guix.texi:27464 msgid "The service type for @code{hpcguix-web}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27129 +#: guix-git/doc/guix.texi:27466 #, no-wrap msgid "{Data Type} hpcguix-web-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27131 +#: guix-git/doc/guix.texi:27468 msgid "Data type for the hpcguix-web service configuration." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:27133 +#: guix-git/doc/guix.texi:27470 #, no-wrap msgid "specs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27136 +#: guix-git/doc/guix.texi:27473 msgid "A gexp (@pxref{G-Expressions}) specifying the hpcguix-web service configuration. The main items available in this spec are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27138 +#: guix-git/doc/guix.texi:27475 #, no-wrap msgid "@code{title-prefix} (default: @code{\"hpcguix | \"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27140 +#: guix-git/doc/guix.texi:27477 msgid "The page title prefix." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27141 +#: guix-git/doc/guix.texi:27478 #, no-wrap msgid "@code{guix-command} (default: @code{\"guix\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27143 +#: guix-git/doc/guix.texi:27480 msgid "The @command{guix} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27144 +#: guix-git/doc/guix.texi:27481 #, no-wrap msgid "@code{package-filter-proc} (default: @code{(const #t)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27146 +#: guix-git/doc/guix.texi:27483 msgid "A procedure specifying how to filter packages that are displayed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27147 +#: guix-git/doc/guix.texi:27484 #, no-wrap msgid "@code{package-page-extension-proc} (default: @code{(const '())})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27149 +#: guix-git/doc/guix.texi:27486 msgid "Extension package for @code{hpcguix-web}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27150 +#: guix-git/doc/guix.texi:27487 #, no-wrap msgid "@code{menu} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27152 +#: guix-git/doc/guix.texi:27489 msgid "Additional entry in page @code{menu}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27153 +#: guix-git/doc/guix.texi:27490 #, no-wrap msgid "@code{channels} (default: @code{%default-channels})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27155 +#: guix-git/doc/guix.texi:27492 msgid "List of channels from which the package list is built (@pxref{Channels})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27156 +#: guix-git/doc/guix.texi:27493 #, no-wrap msgid "@code{package-list-expiration} (default: @code{(* 12 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27159 +#: guix-git/doc/guix.texi:27496 msgid "The expiration time, in seconds, after which the package list is rebuilt from the latest instances of the given channels." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27164 +#: guix-git/doc/guix.texi:27501 msgid "See the hpcguix-web repository for a @uref{https://github.com/UMCUGenetics/hpcguix-web/blob/master/hpcweb-configuration.scm, complete example}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27165 +#: guix-git/doc/guix.texi:27502 #, no-wrap msgid "@code{package} (default: @code{hpcguix-web})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27167 +#: guix-git/doc/guix.texi:27504 msgid "The hpcguix-web package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27168 +#: guix-git/doc/guix.texi:27505 #, no-wrap msgid "@code{address} (default: @code{\"127.0.0.1\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27170 +#: guix-git/doc/guix.texi:27507 msgid "The IP address to listen to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27171 +#: guix-git/doc/guix.texi:27508 #, no-wrap msgid "@code{port} (default: @code{5000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27173 +#: guix-git/doc/guix.texi:27510 msgid "The port number to listen to." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27177 +#: guix-git/doc/guix.texi:27514 msgid "A typical hpcguix-web service declaration looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27186 +#: guix-git/doc/guix.texi:27523 #, no-wrap msgid "" "(service hpcguix-web-service-type\n" @@ -48673,39 +49305,39 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:27193 +#: guix-git/doc/guix.texi:27530 msgid "The hpcguix-web service periodically updates the package list it publishes by pulling channels from Git. To that end, it needs to access X.509 certificates so that it can authenticate Git servers when communicating over HTTPS, and it assumes that @file{/etc/ssl/certs} contains those certificates." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:27197 +#: guix-git/doc/guix.texi:27534 msgid "Thus, make sure to add @code{nss-certs} or another certificate package to the @code{packages} field of your configuration. @ref{X.509 Certificates}, for more information on X.509 certificates." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27199 guix-git/doc/guix.texi:27201 +#: guix-git/doc/guix.texi:27536 guix-git/doc/guix.texi:27538 #, no-wrap msgid "gmnisrv" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27204 +#: guix-git/doc/guix.texi:27541 msgid "The @uref{https://git.sr.ht/~sircmpwn/gmnisrv, gmnisrv} program is a simple @uref{https://gemini.circumlunar.space/, Gemini} protocol server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27205 +#: guix-git/doc/guix.texi:27542 #, no-wrap msgid "{Scheme Variable} gmnisrv-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27208 +#: guix-git/doc/guix.texi:27545 msgid "This is the type of the gmnisrv service, whose value should be a @code{gmnisrv-configuration} object, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27213 +#: guix-git/doc/guix.texi:27550 #, no-wrap msgid "" "(service gmnisrv-service-type\n" @@ -48714,68 +49346,68 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27216 +#: guix-git/doc/guix.texi:27553 #, no-wrap msgid "{Data Type} gmnisrv-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27218 +#: guix-git/doc/guix.texi:27555 msgid "Data type representing the configuration of gmnisrv." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27220 +#: guix-git/doc/guix.texi:27557 #, no-wrap msgid "@code{package} (default: @var{gmnisrv})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27222 +#: guix-git/doc/guix.texi:27559 msgid "Package object of the gmnisrv server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27223 +#: guix-git/doc/guix.texi:27560 #, no-wrap msgid "@code{config-file} (default: @code{%default-gmnisrv-config-file})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27229 +#: guix-git/doc/guix.texi:27566 msgid "File-like object of the gmnisrv configuration file to use. The default configuration listens on port 1965 and serves files from @file{/srv/gemini}. Certificates are stored in @file{/var/lib/gemini/certs}. For more information, run @command{man gmnisrv} and @command{man gmnisrv.ini}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27233 +#: guix-git/doc/guix.texi:27570 #, no-wrap msgid "Agate" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27235 +#: guix-git/doc/guix.texi:27572 #, no-wrap msgid "agate" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27240 +#: guix-git/doc/guix.texi:27577 msgid "The @uref{gemini://qwertqwefsday.eu/agate.gmi, Agate} (@uref{https://github.com/mbrubeck/agate, GitHub page over HTTPS}) program is a simple @uref{https://gemini.circumlunar.space/, Gemini} protocol server written in Rust." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27241 +#: guix-git/doc/guix.texi:27578 #, no-wrap msgid "{Scheme Variable} agate-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27244 +#: guix-git/doc/guix.texi:27581 msgid "This is the type of the agate service, whose value should be an @code{agate-service-type} object, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27251 +#: guix-git/doc/guix.texi:27588 #, no-wrap msgid "" "(service agate-service-type\n" @@ -48786,17 +49418,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27256 +#: guix-git/doc/guix.texi:27593 msgid "The example above represents the minimal tweaking necessary to get Agate up and running. Specifying the path to the certificate and key is always necessary, as the Gemini protocol requires TLS by default." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27259 +#: guix-git/doc/guix.texi:27596 msgid "To obtain a certificate and a key, you could, for example, use OpenSSL, running a command similar to the following example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:27263 +#: guix-git/doc/guix.texi:27600 #, no-wrap msgid "" "openssl req -x509 -newkey rsa:4096 -keyout key.rsa -out cert.pem \\\n" @@ -48804,220 +49436,220 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27268 +#: guix-git/doc/guix.texi:27605 msgid "Of course, you'll have to replace @i{example.com} with your own domain name, and then point the Agate configuration towards the path of the generated key and certificate." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27271 +#: guix-git/doc/guix.texi:27608 #, no-wrap msgid "{Data Type} agate-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27273 +#: guix-git/doc/guix.texi:27610 msgid "Data type representing the configuration of Agate." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27275 +#: guix-git/doc/guix.texi:27612 #, no-wrap msgid "@code{package} (default: @code{agate})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27277 +#: guix-git/doc/guix.texi:27614 msgid "The package object of the Agate server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27278 +#: guix-git/doc/guix.texi:27615 #, no-wrap msgid "@code{content} (default: @file{\"/srv/gemini\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27280 +#: guix-git/doc/guix.texi:27617 msgid "The directory from which Agate will serve files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27281 +#: guix-git/doc/guix.texi:27618 #, no-wrap msgid "@code{cert} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27284 +#: guix-git/doc/guix.texi:27621 msgid "The path to the TLS certificate PEM file to be used for encrypted connections. Must be filled in with a value from the user." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27285 guix-git/doc/guix.texi:27721 +#: guix-git/doc/guix.texi:27622 guix-git/doc/guix.texi:28058 #, no-wrap msgid "@code{key} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27288 +#: guix-git/doc/guix.texi:27625 msgid "The path to the PKCS8 private key file to be used for encrypted connections. Must be filled in with a value from the user." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27289 +#: guix-git/doc/guix.texi:27626 #, no-wrap msgid "@code{addr} (default: @code{'(\"0.0.0.0:1965\" \"[::]:1965\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27291 +#: guix-git/doc/guix.texi:27628 msgid "A list of the addresses to listen on." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27294 +#: guix-git/doc/guix.texi:27631 msgid "The domain name of this Gemini server. Optional." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27295 +#: guix-git/doc/guix.texi:27632 #, no-wrap msgid "@code{lang} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27297 +#: guix-git/doc/guix.texi:27634 msgid "RFC 4646 language code(s) for text/gemini documents. Optional." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27298 +#: guix-git/doc/guix.texi:27635 #, no-wrap msgid "@code{silent?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27300 +#: guix-git/doc/guix.texi:27637 msgid "Set to @code{#t} to disable logging output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27301 +#: guix-git/doc/guix.texi:27638 #, no-wrap msgid "@code{serve-secret?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27304 +#: guix-git/doc/guix.texi:27641 msgid "Set to @code{#t} to serve secret files (files/directories starting with a dot)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27305 +#: guix-git/doc/guix.texi:27642 #, no-wrap msgid "@code{log-ip?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27307 +#: guix-git/doc/guix.texi:27644 msgid "Whether or not to output IP addresses when logging." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27308 +#: guix-git/doc/guix.texi:27645 #, no-wrap msgid "@code{user} (default: @code{\"agate\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27310 +#: guix-git/doc/guix.texi:27647 msgid "Owner of the @code{agate} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27311 +#: guix-git/doc/guix.texi:27648 #, no-wrap msgid "@code{group} (default: @code{\"agate\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27313 +#: guix-git/doc/guix.texi:27650 msgid "Owner's group of the @code{agate} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27314 +#: guix-git/doc/guix.texi:27651 #, no-wrap msgid "@code{log-file} (default: @file{\"/var/log/agate.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27316 +#: guix-git/doc/guix.texi:27653 msgid "The file which should store the logging output of Agate." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27323 +#: guix-git/doc/guix.texi:27660 #, no-wrap msgid "Web" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27324 +#: guix-git/doc/guix.texi:27661 #, no-wrap msgid "HTTP, HTTPS" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27325 +#: guix-git/doc/guix.texi:27662 #, no-wrap msgid "Let's Encrypt" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27326 +#: guix-git/doc/guix.texi:27663 #, no-wrap msgid "TLS certificates" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27333 +#: guix-git/doc/guix.texi:27670 msgid "The @code{(gnu services certbot)} module provides a service to automatically obtain a valid TLS certificate from the Let's Encrypt certificate authority. These certificates can then be used to serve content securely over HTTPS or other TLS-based protocols, with the knowledge that the client will be able to verify the server's authenticity." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27345 +#: guix-git/doc/guix.texi:27682 msgid "@url{https://letsencrypt.org/, Let's Encrypt} provides the @code{certbot} tool to automate the certification process. This tool first securely generates a key on the server. It then makes a request to the Let's Encrypt certificate authority (CA) to sign the key. The CA checks that the request originates from the host in question by using a challenge-response protocol, requiring the server to provide its response over HTTP@. If that protocol completes successfully, the CA signs the key, resulting in a certificate. That certificate is valid for a limited period of time, and therefore to continue to provide TLS services, the server needs to periodically ask the CA to renew its signature." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27352 +#: guix-git/doc/guix.texi:27689 msgid "The certbot service automates this process: the initial key generation, the initial certification request to the Let's Encrypt service, the web server challenge/response integration, writing the certificate to disk, the automated periodic renewals, and the deployment tasks associated with the renewal (e.g.@: reloading services, copying keys with different permissions)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27358 +#: guix-git/doc/guix.texi:27695 msgid "Certbot is run twice a day, at a random minute within the hour. It won't do anything until your certificates are due for renewal or revoked, but running it regularly would give your service a chance of staying online in case a Let's Encrypt-initiated revocation happened for some reason." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27362 +#: guix-git/doc/guix.texi:27699 msgid "By using this service, you agree to the ACME Subscriber Agreement, which can be found there: @url{https://acme-v01.api.letsencrypt.org/directory}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27363 +#: guix-git/doc/guix.texi:27700 #, no-wrap msgid "{Scheme Variable} certbot-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27366 +#: guix-git/doc/guix.texi:27703 msgid "A service type for the @code{certbot} Let's Encrypt client. Its value must be a @code{certbot-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27373 +#: guix-git/doc/guix.texi:27710 #, no-wrap msgid "" "(define %nginx-deploy-hook\n" @@ -49029,7 +49661,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27384 +#: guix-git/doc/guix.texi:27721 #, no-wrap msgid "" "(service certbot-service-type\n" @@ -49045,241 +49677,241 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27387 +#: guix-git/doc/guix.texi:27724 msgid "See below for details about @code{certbot-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27389 +#: guix-git/doc/guix.texi:27726 #, no-wrap msgid "{Data Type} certbot-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27392 +#: guix-git/doc/guix.texi:27729 msgid "Data type representing the configuration of the @code{certbot} service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27394 +#: guix-git/doc/guix.texi:27731 #, no-wrap msgid "@code{package} (default: @code{certbot})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27396 +#: guix-git/doc/guix.texi:27733 msgid "The certbot package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27397 +#: guix-git/doc/guix.texi:27734 #, no-wrap msgid "@code{webroot} (default: @code{/var/www})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27400 +#: guix-git/doc/guix.texi:27737 msgid "The directory from which to serve the Let's Encrypt challenge/response files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27401 +#: guix-git/doc/guix.texi:27738 #, no-wrap msgid "@code{certificates} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27405 +#: guix-git/doc/guix.texi:27742 msgid "A list of @code{certificates-configuration}s for which to generate certificates and request signatures. Each certificate has a @code{name} and several @code{domains}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27406 +#: guix-git/doc/guix.texi:27743 #, no-wrap msgid "@code{email} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27410 +#: guix-git/doc/guix.texi:27747 msgid "Optional email address used for registration and recovery contact. Setting this is encouraged as it allows you to receive important notifications about the account and issued certificates." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27411 guix-git/doc/guix.texi:29158 +#: guix-git/doc/guix.texi:27748 guix-git/doc/guix.texi:29495 #, no-wrap msgid "@code{server} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27414 +#: guix-git/doc/guix.texi:27751 msgid "Optional URL of ACME server. Setting this overrides certbot's default, which is the Let's Encrypt server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27415 +#: guix-git/doc/guix.texi:27752 #, no-wrap msgid "@code{rsa-key-size} (default: @code{2048})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27417 +#: guix-git/doc/guix.texi:27754 msgid "Size of the RSA key." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27418 +#: guix-git/doc/guix.texi:27755 #, no-wrap msgid "@code{default-location} (default: @i{see below})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27427 +#: guix-git/doc/guix.texi:27764 msgid "The default @code{nginx-location-configuration}. Because @code{certbot} needs to be able to serve challenges and responses, it needs to be able to run a web server. It does so by extending the @code{nginx} web service with an @code{nginx-server-configuration} listening on the @var{domains} on port 80, and which has a @code{nginx-location-configuration} for the @code{/.well-known/} URI path subspace used by Let's Encrypt. @xref{Web Services}, for more on these nginx configuration data types." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27431 +#: guix-git/doc/guix.texi:27768 msgid "Requests to other URL paths will be matched by the @code{default-location}, which if present is added to all @code{nginx-server-configuration}s." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27435 +#: guix-git/doc/guix.texi:27772 msgid "By default, the @code{default-location} will issue a redirect from @code{http://@var{domain}/...} to @code{https://@var{domain}/...}, leaving you to define what to serve on your site via @code{https}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27437 +#: guix-git/doc/guix.texi:27774 msgid "Pass @code{#f} to not issue a default location." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27440 +#: guix-git/doc/guix.texi:27777 #, no-wrap msgid "{Data Type} certificate-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27443 +#: guix-git/doc/guix.texi:27780 msgid "Data type representing the configuration of a certificate. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27445 +#: guix-git/doc/guix.texi:27782 #, no-wrap msgid "@code{name} (default: @i{see below})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27449 +#: guix-git/doc/guix.texi:27786 msgid "This name is used by Certbot for housekeeping and in file paths; it doesn't affect the content of the certificate itself. To see certificate names, run @code{certbot certificates}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27451 +#: guix-git/doc/guix.texi:27788 msgid "Its default is the first provided domain." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27452 +#: guix-git/doc/guix.texi:27789 #, no-wrap msgid "@code{domains} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27455 +#: guix-git/doc/guix.texi:27792 msgid "The first domain provided will be the subject CN of the certificate, and all domains will be Subject Alternative Names on the certificate." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27456 +#: guix-git/doc/guix.texi:27793 #, no-wrap msgid "@code{challenge} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27463 +#: guix-git/doc/guix.texi:27800 msgid "The challenge type that has to be run by certbot. If @code{#f} is specified, default to the HTTP challenge. If a value is specified, defaults to the manual plugin (see @code{authentication-hook}, @code{cleanup-hook} and the documentation at @url{https://certbot.eff.org/docs/using.html#hooks}), and gives Let's Encrypt permission to log the public IP address of the requesting machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27464 +#: guix-git/doc/guix.texi:27801 #, no-wrap msgid "@code{csr} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27471 +#: guix-git/doc/guix.texi:27808 msgid "File name of Certificate Signing Request (CSR) in DER or PEM format. If @code{#f} is specified, this argument will not be passed to certbot. If a value is specified, certbot will use it to obtain a certificate, instead of using a self-generated CSR. The domain-name(s) mentioned in @code{domains}, must be consistent with the domain-name(s) mentioned in CSR file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27472 +#: guix-git/doc/guix.texi:27809 #, no-wrap msgid "@code{authentication-hook} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27478 +#: guix-git/doc/guix.texi:27815 msgid "Command to be run in a shell once for each certificate challenge to be answered. For this command, the shell variable @code{$CERTBOT_DOMAIN} will contain the domain being authenticated, @code{$CERTBOT_VALIDATION} contains the validation string and @code{$CERTBOT_TOKEN} contains the file name of the resource requested when performing an HTTP-01 challenge." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27479 +#: guix-git/doc/guix.texi:27816 #, no-wrap msgid "@code{cleanup-hook} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27485 +#: guix-git/doc/guix.texi:27822 msgid "Command to be run in a shell once for each certificate challenge that have been answered by the @code{auth-hook}. For this command, the shell variables available in the @code{auth-hook} script are still available, and additionally @code{$CERTBOT_AUTH_OUTPUT} will contain the standard output of the @code{auth-hook} script." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27486 +#: guix-git/doc/guix.texi:27823 #, no-wrap msgid "@code{deploy-hook} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27494 +#: guix-git/doc/guix.texi:27831 msgid "Command to be run in a shell once for each successfully issued certificate. For this command, the shell variable @code{$RENEWED_LINEAGE} will point to the config live subdirectory (for example, @samp{\"/etc/letsencrypt/live/example.com\"}) containing the new certificates and keys; the shell variable @code{$RENEWED_DOMAINS} will contain a space-delimited list of renewed certificate domains (for example, @samp{\"example.com www.example.com\"}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27501 +#: guix-git/doc/guix.texi:27838 msgid "For each @code{certificate-configuration}, the certificate is saved to @code{/etc/letsencrypt/live/@var{name}/fullchain.pem} and the key is saved to @code{/etc/letsencrypt/live/@var{name}/privkey.pem}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27503 +#: guix-git/doc/guix.texi:27840 #, no-wrap msgid "DNS (domain name system)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27504 +#: guix-git/doc/guix.texi:27841 #, no-wrap msgid "domain name system (DNS)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27512 +#: guix-git/doc/guix.texi:27849 msgid "The @code{(gnu services dns)} module provides services related to the @dfn{domain name system} (DNS). It provides a server service for hosting an @emph{authoritative} DNS server for multiple zones, slave or master. This service uses @uref{https://www.knot-dns.cz/, Knot DNS}. And also a caching and forwarding DNS server for the LAN, which uses @uref{http://www.thekelleys.org.uk/dnsmasq/doc.html, dnsmasq}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27513 +#: guix-git/doc/guix.texi:27850 #, no-wrap msgid "Knot Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27517 +#: guix-git/doc/guix.texi:27854 msgid "An example configuration of an authoritative server for two zones, one master and one slave, is:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27524 +#: guix-git/doc/guix.texi:27861 #, no-wrap msgid "" "(define-zone-entries example.org.zone\n" @@ -49291,7 +49923,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27531 +#: guix-git/doc/guix.texi:27868 #, no-wrap msgid "" "(define master-zone\n" @@ -49304,7 +49936,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27537 +#: guix-git/doc/guix.texi:27874 #, no-wrap msgid "" "(define slave-zone\n" @@ -49316,7 +49948,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27542 +#: guix-git/doc/guix.texi:27879 #, no-wrap msgid "" "(define plop-master\n" @@ -49327,7 +49959,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27551 +#: guix-git/doc/guix.texi:27888 #, no-wrap msgid "" "(operating-system\n" @@ -49341,857 +49973,857 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27553 +#: guix-git/doc/guix.texi:27890 #, no-wrap msgid "{Scheme Variable} knot-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27555 +#: guix-git/doc/guix.texi:27892 msgid "This is the type for the Knot DNS server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27563 +#: guix-git/doc/guix.texi:27900 msgid "Knot DNS is an authoritative DNS server, meaning that it can serve multiple zones, that is to say domain names you would buy from a registrar. This server is not a resolver, meaning that it can only resolve names for which it is authoritative. This server can be configured to serve zones as a master server or a slave server as a per-zone basis. Slave zones will get their data from masters, and will serve it as an authoritative server. From the point of view of a resolver, there is no difference between master and slave." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27565 +#: guix-git/doc/guix.texi:27902 msgid "The following data types are used to configure the Knot DNS server:" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27567 +#: guix-git/doc/guix.texi:27904 #, no-wrap msgid "{Data Type} knot-key-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27570 +#: guix-git/doc/guix.texi:27907 msgid "Data type representing a key. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27572 guix-git/doc/guix.texi:27592 -#: guix-git/doc/guix.texi:27707 guix-git/doc/guix.texi:27733 -#: guix-git/doc/guix.texi:27768 +#: guix-git/doc/guix.texi:27909 guix-git/doc/guix.texi:27929 +#: guix-git/doc/guix.texi:28044 guix-git/doc/guix.texi:28070 +#: guix-git/doc/guix.texi:28105 #, no-wrap msgid "@code{id} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27575 guix-git/doc/guix.texi:27595 +#: guix-git/doc/guix.texi:27912 guix-git/doc/guix.texi:27932 msgid "An identifier for other configuration fields to refer to this key. IDs must be unique and must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27576 +#: guix-git/doc/guix.texi:27913 #, no-wrap msgid "@code{algorithm} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27580 +#: guix-git/doc/guix.texi:27917 msgid "The algorithm to use. Choose between @code{#f}, @code{'hmac-md5}, @code{'hmac-sha1}, @code{'hmac-sha224}, @code{'hmac-sha256}, @code{'hmac-sha384} and @code{'hmac-sha512}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27581 +#: guix-git/doc/guix.texi:27918 #, no-wrap msgid "@code{secret} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27583 +#: guix-git/doc/guix.texi:27920 msgid "The secret key itself." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27587 +#: guix-git/doc/guix.texi:27924 #, no-wrap msgid "{Data Type} knot-acl-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27590 +#: guix-git/doc/guix.texi:27927 msgid "Data type representing an Access Control List (ACL) configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27596 guix-git/doc/guix.texi:27711 +#: guix-git/doc/guix.texi:27933 guix-git/doc/guix.texi:28048 #, no-wrap msgid "@code{address} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27600 +#: guix-git/doc/guix.texi:27937 msgid "An ordered list of IP addresses, network subnets, or network ranges represented with strings. The query must match one of them. Empty value means that address match is not required." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27601 +#: guix-git/doc/guix.texi:27938 #, no-wrap msgid "@code{key} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27605 +#: guix-git/doc/guix.texi:27942 msgid "An ordered list of references to keys represented with strings. The string must match a key ID defined in a @code{knot-key-configuration}. No key means that a key is not require to match that ACL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27606 +#: guix-git/doc/guix.texi:27943 #, no-wrap msgid "@code{action} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27610 +#: guix-git/doc/guix.texi:27947 msgid "An ordered list of actions that are permitted or forbidden by this ACL@. Possible values are lists of zero or more elements from @code{'transfer}, @code{'notify} and @code{'update}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27611 +#: guix-git/doc/guix.texi:27948 #, no-wrap msgid "@code{deny?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27614 +#: guix-git/doc/guix.texi:27951 msgid "When true, the ACL defines restrictions. Listed actions are forbidden. When false, listed actions are allowed." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27618 +#: guix-git/doc/guix.texi:27955 #, no-wrap msgid "{Data Type} zone-entry" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27621 +#: guix-git/doc/guix.texi:27958 msgid "Data type representing a record entry in a zone file. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27623 +#: guix-git/doc/guix.texi:27960 #, no-wrap msgid "@code{name} (default: @code{\"@@\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27629 +#: guix-git/doc/guix.texi:27966 msgid "The name of the record. @code{\"@@\"} refers to the origin of the zone. Names are relative to the origin of the zone. For example, in the @code{example.org} zone, @code{\"ns.example.org\"} actually refers to @code{ns.example.org.example.org}. Names ending with a dot are absolute, which means that @code{\"ns.example.org.\"} refers to @code{ns.example.org}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27630 +#: guix-git/doc/guix.texi:27967 #, no-wrap msgid "@code{ttl} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27632 +#: guix-git/doc/guix.texi:27969 msgid "The Time-To-Live (TTL) of this record. If not set, the default TTL is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27633 +#: guix-git/doc/guix.texi:27970 #, no-wrap msgid "@code{class} (default: @code{\"IN\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27636 +#: guix-git/doc/guix.texi:27973 msgid "The class of the record. Knot currently supports only @code{\"IN\"} and partially @code{\"CH\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27637 +#: guix-git/doc/guix.texi:27974 #, no-wrap msgid "@code{type} (default: @code{\"A\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27641 +#: guix-git/doc/guix.texi:27978 msgid "The type of the record. Common types include A (IPv4 address), AAAA (IPv6 address), NS (Name Server) and MX (Mail eXchange). Many other types are defined." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27642 +#: guix-git/doc/guix.texi:27979 #, no-wrap msgid "@code{data} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27646 +#: guix-git/doc/guix.texi:27983 msgid "The data contained in the record. For instance an IP address associated with an A record, or a domain name associated with an NS record. Remember that domain names are relative to the origin unless they end with a dot." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27650 +#: guix-git/doc/guix.texi:27987 #, no-wrap msgid "{Data Type} zone-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27653 +#: guix-git/doc/guix.texi:27990 msgid "Data type representing the content of a zone file. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27662 +#: guix-git/doc/guix.texi:27999 msgid "The list of entries. The SOA record is taken care of, so you don't need to put it in the list of entries. This list should probably contain an entry for your primary authoritative DNS server. Other than using a list of entries directly, you can use @code{define-zone-entries} to define a object containing the list of entries more easily, that you can later pass to the @code{entries} field of the @code{zone-file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27663 +#: guix-git/doc/guix.texi:28000 #, no-wrap msgid "@code{origin} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27665 +#: guix-git/doc/guix.texi:28002 msgid "The name of your zone. This parameter cannot be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27666 +#: guix-git/doc/guix.texi:28003 #, no-wrap msgid "@code{ns} (default: @code{\"ns\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27671 +#: guix-git/doc/guix.texi:28008 msgid "The domain of your primary authoritative DNS server. The name is relative to the origin, unless it ends with a dot. It is mandatory that this primary DNS server corresponds to an NS record in the zone and that it is associated to an IP address in the list of entries." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27672 +#: guix-git/doc/guix.texi:28009 #, no-wrap msgid "@code{mail} (default: @code{\"hostmaster\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27675 +#: guix-git/doc/guix.texi:28012 msgid "An email address people can contact you at, as the owner of the zone. This is translated as @code{@@}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27676 +#: guix-git/doc/guix.texi:28013 #, no-wrap msgid "@code{serial} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27680 +#: guix-git/doc/guix.texi:28017 msgid "The serial number of the zone. As this is used to keep track of changes by both slaves and resolvers, it is mandatory that it @emph{never} decreases. Always increment it when you make a change in your zone." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27681 +#: guix-git/doc/guix.texi:28018 #, no-wrap msgid "@code{refresh} (default: @code{(* 2 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27685 +#: guix-git/doc/guix.texi:28022 msgid "The frequency at which slaves will do a zone transfer. This value is a number of seconds. It can be computed by multiplications or with @code{(string->duration)}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27686 +#: guix-git/doc/guix.texi:28023 #, no-wrap msgid "@code{retry} (default: @code{(* 15 60)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27689 +#: guix-git/doc/guix.texi:28026 msgid "The period after which a slave will retry to contact its master when it fails to do so a first time." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27690 +#: guix-git/doc/guix.texi:28027 #, no-wrap msgid "@code{expiry} (default: @code{(* 14 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27694 +#: guix-git/doc/guix.texi:28031 msgid "Default TTL of records. Existing records are considered correct for at most this amount of time. After this period, resolvers will invalidate their cache and check again that it still exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27695 +#: guix-git/doc/guix.texi:28032 #, no-wrap msgid "@code{nx} (default: @code{3600})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27698 +#: guix-git/doc/guix.texi:28035 msgid "Default TTL of inexistent records. This delay is usually short because you want your new domains to reach everyone quickly." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27702 +#: guix-git/doc/guix.texi:28039 #, no-wrap msgid "{Data Type} knot-remote-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27705 +#: guix-git/doc/guix.texi:28042 msgid "Data type representing a remote configuration. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27710 +#: guix-git/doc/guix.texi:28047 msgid "An identifier for other configuration fields to refer to this remote. IDs must be unique and must not be empty." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27715 +#: guix-git/doc/guix.texi:28052 msgid "An ordered list of destination IP addresses. Addresses are tried in sequence. An optional port can be given with the @@ separator. For instance: @code{(list \"1.2.3.4\" \"2.3.4.5@@53\")}. Default port is 53." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27716 +#: guix-git/doc/guix.texi:28053 #, no-wrap msgid "@code{via} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27720 +#: guix-git/doc/guix.texi:28057 msgid "An ordered list of source IP addresses. An empty list will have Knot choose an appropriate source IP@. An optional port can be given with the @@ separator. The default is to choose at random." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27724 +#: guix-git/doc/guix.texi:28061 msgid "A reference to a key, that is a string containing the identifier of a key defined in a @code{knot-key-configuration} field." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27728 +#: guix-git/doc/guix.texi:28065 #, no-wrap msgid "{Data Type} knot-keystore-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27731 +#: guix-git/doc/guix.texi:28068 msgid "Data type representing a keystore to hold dnssec keys. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27735 +#: guix-git/doc/guix.texi:28072 msgid "The id of the keystore. It must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27736 +#: guix-git/doc/guix.texi:28073 #, no-wrap msgid "@code{backend} (default: @code{'pem})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27738 +#: guix-git/doc/guix.texi:28075 msgid "The backend to store the keys in. Can be @code{'pem} or @code{'pkcs11}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27739 +#: guix-git/doc/guix.texi:28076 #, no-wrap msgid "@code{config} (default: @code{\"/var/lib/knot/keys/keys\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27743 +#: guix-git/doc/guix.texi:28080 msgid "The configuration string of the backend. An example for the PKCS#11 is: @code{\"pkcs11:token=knot;pin-value=1234 /gnu/store/.../lib/pkcs11/libsofthsm2.so\"}. For the pem backend, the string represents a path in the file system." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27747 +#: guix-git/doc/guix.texi:28084 #, no-wrap msgid "{Data Type} knot-policy-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27751 +#: guix-git/doc/guix.texi:28088 msgid "Data type representing a dnssec policy. Knot DNS is able to automatically sign your zones. It can either generate and manage your keys automatically or use keys that you generate." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27758 +#: guix-git/doc/guix.texi:28095 msgid "Dnssec is usually implemented using two keys: a Key Signing Key (KSK) that is used to sign the second, and a Zone Signing Key (ZSK) that is used to sign the zone. In order to be trusted, the KSK needs to be present in the parent zone (usually a top-level domain). If your registrar supports dnssec, you will have to send them your KSK's hash so they can add a DS record in their zone. This is not automated and need to be done each time you change your KSK." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27764 +#: guix-git/doc/guix.texi:28101 msgid "The policy also defines the lifetime of keys. Usually, ZSK can be changed easily and use weaker cryptographic functions (they use lower parameters) in order to sign records quickly, so they are changed often. The KSK however requires manual interaction with the registrar, so they are changed less often and use stronger parameters because they sign only one record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27766 +#: guix-git/doc/guix.texi:28103 msgid "This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27770 +#: guix-git/doc/guix.texi:28107 msgid "The id of the policy. It must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27771 +#: guix-git/doc/guix.texi:28108 #, no-wrap msgid "@code{keystore} (default: @code{\"default\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27776 +#: guix-git/doc/guix.texi:28113 msgid "A reference to a keystore, that is a string containing the identifier of a keystore defined in a @code{knot-keystore-configuration} field. The @code{\"default\"} identifier means the default keystore (a kasp database that was setup by this service)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27777 +#: guix-git/doc/guix.texi:28114 #, no-wrap msgid "@code{manual?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27779 +#: guix-git/doc/guix.texi:28116 msgid "Whether the key management is manual or automatic." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27780 +#: guix-git/doc/guix.texi:28117 #, no-wrap msgid "@code{single-type-signing?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27782 +#: guix-git/doc/guix.texi:28119 msgid "When @code{#t}, use the Single-Type Signing Scheme." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27783 +#: guix-git/doc/guix.texi:28120 #, no-wrap msgid "@code{algorithm} (default: @code{\"ecdsap256sha256\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27785 +#: guix-git/doc/guix.texi:28122 msgid "An algorithm of signing keys and issued signatures." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27786 +#: guix-git/doc/guix.texi:28123 #, no-wrap msgid "@code{ksk-size} (default: @code{256})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27789 +#: guix-git/doc/guix.texi:28126 msgid "The length of the KSK@. Note that this value is correct for the default algorithm, but would be unsecure for other algorithms." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27790 +#: guix-git/doc/guix.texi:28127 #, no-wrap msgid "@code{zsk-size} (default: @code{256})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27793 +#: guix-git/doc/guix.texi:28130 msgid "The length of the ZSK@. Note that this value is correct for the default algorithm, but would be unsecure for other algorithms." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27794 +#: guix-git/doc/guix.texi:28131 #, no-wrap msgid "@code{dnskey-ttl} (default: @code{'default})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27797 +#: guix-git/doc/guix.texi:28134 msgid "The TTL value for DNSKEY records added into zone apex. The special @code{'default} value means same as the zone SOA TTL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27798 +#: guix-git/doc/guix.texi:28135 #, no-wrap msgid "@code{zsk-lifetime} (default: @code{(* 30 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27800 +#: guix-git/doc/guix.texi:28137 msgid "The period between ZSK publication and the next rollover initiation." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27801 +#: guix-git/doc/guix.texi:28138 #, no-wrap msgid "@code{propagation-delay} (default: @code{(* 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27804 +#: guix-git/doc/guix.texi:28141 msgid "An extra delay added for each key rollover step. This value should be high enough to cover propagation of data from the master server to all slaves." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27805 +#: guix-git/doc/guix.texi:28142 #, no-wrap msgid "@code{rrsig-lifetime} (default: @code{(* 14 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27807 +#: guix-git/doc/guix.texi:28144 msgid "A validity period of newly issued signatures." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27808 +#: guix-git/doc/guix.texi:28145 #, no-wrap msgid "@code{rrsig-refresh} (default: @code{(* 7 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27810 +#: guix-git/doc/guix.texi:28147 msgid "A period how long before a signature expiration the signature will be refreshed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27811 +#: guix-git/doc/guix.texi:28148 #, no-wrap msgid "@code{nsec3?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27813 +#: guix-git/doc/guix.texi:28150 msgid "When @code{#t}, NSEC3 will be used instead of NSEC." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27814 +#: guix-git/doc/guix.texi:28151 #, no-wrap msgid "@code{nsec3-iterations} (default: @code{5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27816 +#: guix-git/doc/guix.texi:28153 msgid "The number of additional times the hashing is performed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27817 +#: guix-git/doc/guix.texi:28154 #, no-wrap msgid "@code{nsec3-salt-length} (default: @code{8})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27820 +#: guix-git/doc/guix.texi:28157 msgid "The length of a salt field in octets, which is appended to the original owner name before hashing." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27821 +#: guix-git/doc/guix.texi:28158 #, no-wrap msgid "@code{nsec3-salt-lifetime} (default: @code{(* 30 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27823 +#: guix-git/doc/guix.texi:28160 msgid "The validity period of newly issued salt field." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27827 +#: guix-git/doc/guix.texi:28164 #, no-wrap msgid "{Data Type} knot-zone-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27830 +#: guix-git/doc/guix.texi:28167 msgid "Data type representing a zone served by Knot. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27832 +#: guix-git/doc/guix.texi:28169 #, no-wrap msgid "@code{domain} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27834 +#: guix-git/doc/guix.texi:28171 msgid "The domain served by this configuration. It must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27835 +#: guix-git/doc/guix.texi:28172 #, no-wrap msgid "@code{file} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27838 +#: guix-git/doc/guix.texi:28175 msgid "The file where this zone is saved. This parameter is ignored by master zones. Empty means default location that depends on the domain name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27839 +#: guix-git/doc/guix.texi:28176 #, no-wrap msgid "@code{zone} (default: @code{(zone-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27842 +#: guix-git/doc/guix.texi:28179 msgid "The content of the zone file. This parameter is ignored by slave zones. It must contain a zone-file record." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27843 +#: guix-git/doc/guix.texi:28180 #, no-wrap msgid "@code{master} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27846 +#: guix-git/doc/guix.texi:28183 msgid "A list of master remotes. When empty, this zone is a master. When set, this zone is a slave. This is a list of remotes identifiers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27847 +#: guix-git/doc/guix.texi:28184 #, no-wrap msgid "@code{ddns-master} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27850 +#: guix-git/doc/guix.texi:28187 msgid "The main master. When empty, it defaults to the first master in the list of masters." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27851 +#: guix-git/doc/guix.texi:28188 #, no-wrap msgid "@code{notify} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27853 +#: guix-git/doc/guix.texi:28190 msgid "A list of slave remote identifiers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27854 +#: guix-git/doc/guix.texi:28191 #, no-wrap msgid "@code{acl} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27856 +#: guix-git/doc/guix.texi:28193 msgid "A list of acl identifiers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27857 +#: guix-git/doc/guix.texi:28194 #, no-wrap msgid "@code{semantic-checks?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27859 +#: guix-git/doc/guix.texi:28196 msgid "When set, this adds more semantic checks to the zone." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27860 +#: guix-git/doc/guix.texi:28197 #, no-wrap msgid "@code{zonefile-sync} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27863 +#: guix-git/doc/guix.texi:28200 msgid "The delay between a modification in memory and on disk. 0 means immediate synchronization." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27864 +#: guix-git/doc/guix.texi:28201 #, no-wrap msgid "@code{zonefile-load} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27867 +#: guix-git/doc/guix.texi:28204 msgid "The way the zone file contents are applied during zone load. Possible values are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27869 +#: guix-git/doc/guix.texi:28206 #, no-wrap msgid "@code{#f} for using the default value from Knot," msgstr "" #. type: item -#: guix-git/doc/guix.texi:27870 +#: guix-git/doc/guix.texi:28207 #, no-wrap msgid "@code{'none} for not using the zone file at all," msgstr "" #. type: item -#: guix-git/doc/guix.texi:27871 +#: guix-git/doc/guix.texi:28208 #, no-wrap msgid "@code{'difference} for computing the difference between already available" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:27873 +#: guix-git/doc/guix.texi:28210 msgid "contents and zone contents and applying it to the current zone contents," msgstr "" #. type: item -#: guix-git/doc/guix.texi:27873 +#: guix-git/doc/guix.texi:28210 #, no-wrap msgid "@code{'difference-no-serial} for the same as @code{'difference}, but" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:27876 +#: guix-git/doc/guix.texi:28213 msgid "ignoring the SOA serial in the zone file, while the server takes care of it automatically." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27876 +#: guix-git/doc/guix.texi:28213 #, no-wrap msgid "@code{'whole} for loading zone contents from the zone file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27879 +#: guix-git/doc/guix.texi:28216 #, no-wrap msgid "@code{journal-content} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27884 +#: guix-git/doc/guix.texi:28221 msgid "The way the journal is used to store zone and its changes. Possible values are @code{'none} to not use it at all, @code{'changes} to store changes and @code{'all} to store contents. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27885 +#: guix-git/doc/guix.texi:28222 #, no-wrap msgid "@code{max-journal-usage} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27888 +#: guix-git/doc/guix.texi:28225 msgid "The maximum size for the journal on disk. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27889 +#: guix-git/doc/guix.texi:28226 #, no-wrap msgid "@code{max-journal-depth} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27892 +#: guix-git/doc/guix.texi:28229 msgid "The maximum size of the history. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27893 +#: guix-git/doc/guix.texi:28230 #, no-wrap msgid "@code{max-zone-size} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27897 +#: guix-git/doc/guix.texi:28234 msgid "The maximum size of the zone file. This limit is enforced for incoming transfer and updates. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27898 +#: guix-git/doc/guix.texi:28235 #, no-wrap msgid "@code{dnssec-policy} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27902 +#: guix-git/doc/guix.texi:28239 msgid "A reference to a @code{knot-policy-configuration} record, or the special name @code{\"default\"}. If the value is @code{#f}, there is no dnssec signing on this zone." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27903 +#: guix-git/doc/guix.texi:28240 #, no-wrap msgid "@code{serial-policy} (default: @code{'increment})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27905 +#: guix-git/doc/guix.texi:28242 msgid "A policy between @code{'increment} and @code{'unixtime}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27909 +#: guix-git/doc/guix.texi:28246 #, no-wrap msgid "{Data Type} knot-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27912 +#: guix-git/doc/guix.texi:28249 msgid "Data type representing the Knot configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27914 +#: guix-git/doc/guix.texi:28251 #, no-wrap msgid "@code{knot} (default: @code{knot})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27916 +#: guix-git/doc/guix.texi:28253 msgid "The Knot package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27917 +#: guix-git/doc/guix.texi:28254 #, no-wrap msgid "@code{run-directory} (default: @code{\"/var/run/knot\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27919 +#: guix-git/doc/guix.texi:28256 msgid "The run directory. This directory will be used for pid file and sockets." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27920 +#: guix-git/doc/guix.texi:28257 #, no-wrap msgid "@code{includes} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27923 +#: guix-git/doc/guix.texi:28260 msgid "A list of strings or file-like objects denoting other files that must be included at the top of the configuration file." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27924 +#: guix-git/doc/guix.texi:28261 #, no-wrap msgid "secrets, Knot service" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27930 +#: guix-git/doc/guix.texi:28267 msgid "This can be used to manage secrets out-of-band. For example, secret keys may be stored in an out-of-band file not managed by Guix, and thus not visible in @file{/gnu/store}---e.g., you could store secret key configuration in @file{/etc/knot/secrets.conf} and add this file to the @code{includes} list." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27935 +#: guix-git/doc/guix.texi:28272 msgid "One can generate a secret tsig key (for nsupdate and zone transfers with the keymgr command from the knot package. Note that the package is not automatically installed by the service. The following example shows how to generate a new tsig key:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:27939 +#: guix-git/doc/guix.texi:28276 #, no-wrap msgid "" "keymgr -t mysecret > /etc/knot/secrets.conf\n" @@ -50199,106 +50831,106 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27945 +#: guix-git/doc/guix.texi:28282 msgid "Also note that the generated key will be named @var{mysecret}, so it is the name that needs to be used in the @var{key} field of the @code{knot-acl-configuration} record and in other places that need to refer to that key." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27947 +#: guix-git/doc/guix.texi:28284 msgid "It can also be used to add configuration not supported by this interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27948 +#: guix-git/doc/guix.texi:28285 #, no-wrap msgid "@code{listen-v4} (default: @code{\"0.0.0.0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27950 guix-git/doc/guix.texi:27953 +#: guix-git/doc/guix.texi:28287 guix-git/doc/guix.texi:28290 msgid "An ip address on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27951 +#: guix-git/doc/guix.texi:28288 #, no-wrap msgid "@code{listen-v6} (default: @code{\"::\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27954 +#: guix-git/doc/guix.texi:28291 #, no-wrap msgid "@code{listen-port} (default: @code{53})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27956 +#: guix-git/doc/guix.texi:28293 msgid "A port on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27957 +#: guix-git/doc/guix.texi:28294 #, no-wrap msgid "@code{keys} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27959 +#: guix-git/doc/guix.texi:28296 msgid "The list of knot-key-configuration used by this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27960 +#: guix-git/doc/guix.texi:28297 #, no-wrap msgid "@code{acls} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27962 +#: guix-git/doc/guix.texi:28299 msgid "The list of knot-acl-configuration used by this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27963 +#: guix-git/doc/guix.texi:28300 #, no-wrap msgid "@code{remotes} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27965 +#: guix-git/doc/guix.texi:28302 msgid "The list of knot-remote-configuration used by this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27966 +#: guix-git/doc/guix.texi:28303 #, no-wrap msgid "@code{zones} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27968 +#: guix-git/doc/guix.texi:28305 msgid "The list of knot-zone-configuration used by this configuration." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27972 +#: guix-git/doc/guix.texi:28309 #, no-wrap msgid "Knot Resolver Service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27974 +#: guix-git/doc/guix.texi:28311 #, no-wrap msgid "{Scheme Variable} knot-resolver-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27977 +#: guix-git/doc/guix.texi:28314 msgid "This is the type of the knot resolver service, whose value should be an @code{knot-resolver-configuration} object as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27987 +#: guix-git/doc/guix.texi:28324 #, no-wrap msgid "" "(service knot-resolver-service-type\n" @@ -50312,73 +50944,73 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27990 +#: guix-git/doc/guix.texi:28327 msgid "For more information, refer its @url{https://knot-resolver.readthedocs.org/en/stable/daemon.html#configuration, manual}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27992 +#: guix-git/doc/guix.texi:28329 #, no-wrap msgid "{Data Type} knot-resolver-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27994 +#: guix-git/doc/guix.texi:28331 msgid "Data type representing the configuration of knot-resolver." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27996 +#: guix-git/doc/guix.texi:28333 #, no-wrap msgid "@code{package} (default: @var{knot-resolver})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27998 +#: guix-git/doc/guix.texi:28335 msgid "Package object of the knot DNS resolver." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27999 +#: guix-git/doc/guix.texi:28336 #, no-wrap msgid "@code{kresd-config-file} (default: %kresd.conf)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28002 +#: guix-git/doc/guix.texi:28339 msgid "File-like object of the kresd configuration file to use, by default it will listen on @code{127.0.0.1} and @code{::1}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28003 +#: guix-git/doc/guix.texi:28340 #, no-wrap msgid "@code{garbage-collection-interval} (default: 1000)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28005 +#: guix-git/doc/guix.texi:28342 msgid "Number of milliseconds for @code{kres-cache-gc} to periodically trim the cache." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28010 +#: guix-git/doc/guix.texi:28347 #, no-wrap msgid "Dnsmasq Service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28012 +#: guix-git/doc/guix.texi:28349 #, no-wrap msgid "{Scheme Variable} dnsmasq-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28015 +#: guix-git/doc/guix.texi:28352 msgid "This is the type of the dnsmasq service, whose value should be an @code{dnsmasq-configuration} object as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28021 +#: guix-git/doc/guix.texi:28358 #, no-wrap msgid "" "(service dnsmasq-service-type\n" @@ -50388,122 +51020,122 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28024 +#: guix-git/doc/guix.texi:28361 #, no-wrap msgid "{Data Type} dnsmasq-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28026 +#: guix-git/doc/guix.texi:28363 msgid "Data type representing the configuration of dnsmasq." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28028 +#: guix-git/doc/guix.texi:28365 #, no-wrap msgid "@code{package} (default: @var{dnsmasq})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28030 +#: guix-git/doc/guix.texi:28367 msgid "Package object of the dnsmasq server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28031 +#: guix-git/doc/guix.texi:28368 #, no-wrap msgid "@code{no-hosts?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28033 +#: guix-git/doc/guix.texi:28370 msgid "When true, don't read the hostnames in /etc/hosts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28034 +#: guix-git/doc/guix.texi:28371 #, no-wrap msgid "@code{port} (default: @code{53})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28037 +#: guix-git/doc/guix.texi:28374 msgid "The port to listen on. Setting this to zero completely disables DNS responses, leaving only DHCP and/or TFTP functions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28038 +#: guix-git/doc/guix.texi:28375 #, no-wrap msgid "@code{local-service?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28041 +#: guix-git/doc/guix.texi:28378 msgid "Accept DNS queries only from hosts whose address is on a local subnet, ie a subnet for which an interface exists on the server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28042 +#: guix-git/doc/guix.texi:28379 #, no-wrap msgid "@code{listen-addresses} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28044 +#: guix-git/doc/guix.texi:28381 msgid "Listen on the given IP addresses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28045 +#: guix-git/doc/guix.texi:28382 #, no-wrap msgid "@code{resolv-file} (default: @code{\"/etc/resolv.conf\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28047 +#: guix-git/doc/guix.texi:28384 msgid "The file to read the IP address of the upstream nameservers from." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28048 +#: guix-git/doc/guix.texi:28385 #, no-wrap msgid "@code{no-resolv?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28050 +#: guix-git/doc/guix.texi:28387 msgid "When true, don't read @var{resolv-file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28051 +#: guix-git/doc/guix.texi:28388 #, no-wrap msgid "@code{servers} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28053 +#: guix-git/doc/guix.texi:28390 msgid "Specify IP address of upstream servers directly." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28054 +#: guix-git/doc/guix.texi:28391 #, no-wrap msgid "@code{addresses} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28058 +#: guix-git/doc/guix.texi:28395 msgid "For each entry, specify an IP address to return for any host in the given domains. Queries in the domains are never forwarded and always replied to with the specified IP address." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28060 +#: guix-git/doc/guix.texi:28397 msgid "This is useful for redirecting hosts locally, for example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28069 +#: guix-git/doc/guix.texi:28406 #, no-wrap msgid "" "(service dnsmasq-service-type\n" @@ -50516,1007 +51148,1007 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28072 +#: guix-git/doc/guix.texi:28409 msgid "Note that rules in @file{/etc/hosts} take precedence over this." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28073 +#: guix-git/doc/guix.texi:28410 #, no-wrap msgid "@code{cache-size} (default: @code{150})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28076 +#: guix-git/doc/guix.texi:28413 msgid "Set the size of dnsmasq's cache. Setting the cache size to zero disables caching." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28077 +#: guix-git/doc/guix.texi:28414 #, no-wrap msgid "@code{negative-cache?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28079 +#: guix-git/doc/guix.texi:28416 msgid "When false, disable negative caching." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28080 +#: guix-git/doc/guix.texi:28417 #, no-wrap msgid "@code{tftp-enable?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28082 +#: guix-git/doc/guix.texi:28419 msgid "Whether to enable the built-in TFTP server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28083 +#: guix-git/doc/guix.texi:28420 #, no-wrap msgid "@code{tftp-no-fail?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28085 +#: guix-git/doc/guix.texi:28422 msgid "If true, does not fail dnsmasq if the TFTP server could not start up." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28086 +#: guix-git/doc/guix.texi:28423 #, no-wrap msgid "@code{tftp-single-port?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28088 +#: guix-git/doc/guix.texi:28425 msgid "Whether to use only one single port for TFTP." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28089 +#: guix-git/doc/guix.texi:28426 #, no-wrap msgid "@code{tftp-secure?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28091 +#: guix-git/doc/guix.texi:28428 msgid "If true, only files owned by the user running the dnsmasq process are accessible." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28095 +#: guix-git/doc/guix.texi:28432 msgid "If dnsmasq is being run as root, different rules apply: @code{tftp-secure?} has no effect, but only files which have the world-readable bit set are accessible." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28096 +#: guix-git/doc/guix.texi:28433 #, no-wrap msgid "@code{tftp-max} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28098 +#: guix-git/doc/guix.texi:28435 msgid "If set, sets the maximal number of concurrent connections allowed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28099 +#: guix-git/doc/guix.texi:28436 #, no-wrap msgid "@code{tftp-mtu} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28101 +#: guix-git/doc/guix.texi:28438 msgid "If set, sets the MTU for TFTP packets to that value." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28102 +#: guix-git/doc/guix.texi:28439 #, no-wrap msgid "@code{tftp-no-blocksize?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28104 +#: guix-git/doc/guix.texi:28441 msgid "If true, stops the TFTP server from negotiating the blocksize with a client." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28105 +#: guix-git/doc/guix.texi:28442 #, no-wrap msgid "@code{tftp-lowercase?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28107 +#: guix-git/doc/guix.texi:28444 msgid "Whether to convert all filenames in TFTP requests to lowercase." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28108 +#: guix-git/doc/guix.texi:28445 #, no-wrap msgid "@code{tftp-port-range} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28111 +#: guix-git/doc/guix.texi:28448 msgid "If set, fixes the dynamical ports (one per client) to the given range (@code{\",\"})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28112 +#: guix-git/doc/guix.texi:28449 #, no-wrap msgid "@code{tftp-root} (default: @code{/var/empty,lo})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28119 +#: guix-git/doc/guix.texi:28456 msgid "Look for files to transfer using TFTP relative to the given directory. When this is set, TFTP paths which include @samp{..} are rejected, to stop clients getting outside the specified root. Absolute paths (starting with @samp{/}) are allowed, but they must be within the TFTP-root. If the optional interface argument is given, the directory is only used for TFTP requests via that interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28120 +#: guix-git/doc/guix.texi:28457 #, no-wrap msgid "@code{tftp-unique-root} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28125 +#: guix-git/doc/guix.texi:28462 msgid "If set, add the IP or hardware address of the TFTP client as a path component on the end of the TFTP-root. Only valid if a TFTP root is set and the directory exists. Defaults to adding IP address (in standard dotted-quad format)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28134 +#: guix-git/doc/guix.texi:28471 msgid "For instance, if @option{--tftp-root} is @samp{/tftp} and client @samp{1.2.3.4} requests file @file{myfile} then the effective path will be @file{/tftp/1.2.3.4/myfile} if @file{/tftp/1.2.3.4} exists or @file{/tftp/myfile} otherwise. When @samp{=mac} is specified it will append the MAC address instead, using lowercase zero padded digits separated by dashes, e.g.: @samp{01-02-03-04-aa-bb}. Note that resolving MAC addresses is only possible if the client is in the local network or obtained a DHCP lease from dnsmasq." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28138 +#: guix-git/doc/guix.texi:28475 #, no-wrap msgid "ddclient Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28140 +#: guix-git/doc/guix.texi:28477 #, no-wrap msgid "ddclient" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28144 +#: guix-git/doc/guix.texi:28481 msgid "The ddclient service described below runs the ddclient daemon, which takes care of automatically updating DNS entries for service providers such as @uref{https://dyn.com/dns/, Dyn}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28147 +#: guix-git/doc/guix.texi:28484 msgid "The following example show instantiates the service with its default configuration:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28150 +#: guix-git/doc/guix.texi:28487 #, no-wrap msgid "(service ddclient-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28159 +#: guix-git/doc/guix.texi:28496 msgid "Note that ddclient needs to access credentials that are stored in a @dfn{secret file}, by default @file{/etc/ddclient/secrets} (see @code{secret-file} below). You are expected to create this file manually, in an ``out-of-band'' fashion (you @emph{could} make this file part of the service configuration, for instance by using @code{plain-file}, but it will be world-readable @i{via} @file{/gnu/store}). See the examples in the @file{share/ddclient} directory of the @code{ddclient} package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28163 +#: guix-git/doc/guix.texi:28500 msgid "Available @code{ddclient-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28164 +#: guix-git/doc/guix.texi:28501 #, no-wrap msgid "{@code{ddclient-configuration} parameter} package ddclient" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28166 +#: guix-git/doc/guix.texi:28503 msgid "The ddclient package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28169 +#: guix-git/doc/guix.texi:28506 #, no-wrap msgid "{@code{ddclient-configuration} parameter} integer daemon" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28171 +#: guix-git/doc/guix.texi:28508 msgid "The period after which ddclient will retry to check IP and domain name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28173 +#: guix-git/doc/guix.texi:28510 msgid "Defaults to @samp{300}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28176 +#: guix-git/doc/guix.texi:28513 #, no-wrap msgid "{@code{ddclient-configuration} parameter} boolean syslog" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28178 +#: guix-git/doc/guix.texi:28515 msgid "Use syslog for the output." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28183 +#: guix-git/doc/guix.texi:28520 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string mail" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28185 +#: guix-git/doc/guix.texi:28522 msgid "Mail to user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28187 guix-git/doc/guix.texi:28194 -#: guix-git/doc/guix.texi:29996 +#: guix-git/doc/guix.texi:28524 guix-git/doc/guix.texi:28531 +#: guix-git/doc/guix.texi:30361 msgid "Defaults to @samp{\"root\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28190 +#: guix-git/doc/guix.texi:28527 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string mail-failure" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28192 +#: guix-git/doc/guix.texi:28529 msgid "Mail failed update to user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28197 +#: guix-git/doc/guix.texi:28534 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string pid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28199 +#: guix-git/doc/guix.texi:28536 msgid "The ddclient PID file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28201 +#: guix-git/doc/guix.texi:28538 msgid "Defaults to @samp{\"/var/run/ddclient/ddclient.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28204 +#: guix-git/doc/guix.texi:28541 #, no-wrap msgid "{@code{ddclient-configuration} parameter} boolean ssl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28206 +#: guix-git/doc/guix.texi:28543 msgid "Enable SSL support." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28211 +#: guix-git/doc/guix.texi:28548 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28214 +#: guix-git/doc/guix.texi:28551 msgid "Specifies the user name or ID that is used when running ddclient program." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28216 guix-git/doc/guix.texi:28223 +#: guix-git/doc/guix.texi:28553 guix-git/doc/guix.texi:28560 msgid "Defaults to @samp{\"ddclient\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28219 +#: guix-git/doc/guix.texi:28556 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28221 +#: guix-git/doc/guix.texi:28558 msgid "Group of the user who will run the ddclient program." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28226 +#: guix-git/doc/guix.texi:28563 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string secret-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28230 +#: guix-git/doc/guix.texi:28567 msgid "Secret file which will be appended to @file{ddclient.conf} file. This file contains credentials for use by ddclient. You are expected to create it manually." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28232 +#: guix-git/doc/guix.texi:28569 msgid "Defaults to @samp{\"/etc/ddclient/secrets.conf\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28235 +#: guix-git/doc/guix.texi:28572 #, no-wrap msgid "{@code{ddclient-configuration} parameter} list extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28237 +#: guix-git/doc/guix.texi:28574 msgid "Extra options will be appended to @file{ddclient.conf} file." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28248 +#: guix-git/doc/guix.texi:28585 #, no-wrap msgid "VPN (virtual private network)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28249 +#: guix-git/doc/guix.texi:28586 #, no-wrap msgid "virtual private network (VPN)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28253 +#: guix-git/doc/guix.texi:28590 msgid "The @code{(gnu services vpn)} module provides services related to @dfn{virtual private networks} (VPNs)." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28254 +#: guix-git/doc/guix.texi:28591 #, no-wrap msgid "Bitmask" msgstr "Bitmask" #. type: defvr -#: guix-git/doc/guix.texi:28256 +#: guix-git/doc/guix.texi:28593 #, no-wrap msgid "{Scheme Variable} bitmask-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28261 +#: guix-git/doc/guix.texi:28598 msgid "A service type for the @uref{https://bitmask.net, Bitmask} VPN client. It makes the client available in the system and loads its polkit policy. Please note that the client expects an active polkit-agent, which is either run by your desktop-environment or should be run manually." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28263 +#: guix-git/doc/guix.texi:28600 #, no-wrap msgid "OpenVPN" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28267 +#: guix-git/doc/guix.texi:28604 msgid "It provides a @emph{client} service for your machine to connect to a VPN, and a @emph{server} service for your machine to host a VPN@." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28268 +#: guix-git/doc/guix.texi:28605 #, no-wrap msgid "{Scheme Procedure} openvpn-client-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28270 +#: guix-git/doc/guix.texi:28607 msgid "[#:config (openvpn-client-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28272 +#: guix-git/doc/guix.texi:28609 msgid "Return a service that runs @command{openvpn}, a VPN daemon, as a client." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28274 +#: guix-git/doc/guix.texi:28611 #, no-wrap msgid "{Scheme Procedure} openvpn-server-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28276 +#: guix-git/doc/guix.texi:28613 msgid "[#:config (openvpn-server-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28278 +#: guix-git/doc/guix.texi:28615 msgid "Return a service that runs @command{openvpn}, a VPN daemon, as a server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28280 +#: guix-git/doc/guix.texi:28617 msgid "Both can be run simultaneously." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28285 +#: guix-git/doc/guix.texi:28622 msgid "Available @code{openvpn-client-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28286 +#: guix-git/doc/guix.texi:28623 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} package openvpn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28288 guix-git/doc/guix.texi:28443 +#: guix-git/doc/guix.texi:28625 guix-git/doc/guix.texi:28780 msgid "The OpenVPN package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28291 +#: guix-git/doc/guix.texi:28628 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28293 guix-git/doc/guix.texi:28448 +#: guix-git/doc/guix.texi:28630 guix-git/doc/guix.texi:28785 msgid "The OpenVPN pid file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28295 guix-git/doc/guix.texi:28450 +#: guix-git/doc/guix.texi:28632 guix-git/doc/guix.texi:28787 msgid "Defaults to @samp{\"/var/run/openvpn/openvpn.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28298 +#: guix-git/doc/guix.texi:28635 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} proto proto" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28301 guix-git/doc/guix.texi:28456 +#: guix-git/doc/guix.texi:28638 guix-git/doc/guix.texi:28793 msgid "The protocol (UDP or TCP) used to open a channel between clients and servers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28303 guix-git/doc/guix.texi:28458 +#: guix-git/doc/guix.texi:28640 guix-git/doc/guix.texi:28795 msgid "Defaults to @samp{udp}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28306 +#: guix-git/doc/guix.texi:28643 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} dev dev" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28308 guix-git/doc/guix.texi:28463 +#: guix-git/doc/guix.texi:28645 guix-git/doc/guix.texi:28800 msgid "The device type used to represent the VPN connection." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28310 guix-git/doc/guix.texi:28465 +#: guix-git/doc/guix.texi:28647 guix-git/doc/guix.texi:28802 msgid "Defaults to @samp{tun}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28316 guix-git/doc/guix.texi:28471 +#: guix-git/doc/guix.texi:28653 guix-git/doc/guix.texi:28808 msgid "If you do not have some of these files (eg.@: you use a username and password), you can disable any of the following three fields by setting it to @code{'disabled}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28317 +#: guix-git/doc/guix.texi:28654 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string ca" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28319 guix-git/doc/guix.texi:28474 +#: guix-git/doc/guix.texi:28656 guix-git/doc/guix.texi:28811 msgid "The certificate authority to check connections against." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28321 guix-git/doc/guix.texi:28476 +#: guix-git/doc/guix.texi:28658 guix-git/doc/guix.texi:28813 msgid "Defaults to @samp{\"/etc/openvpn/ca.crt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28324 +#: guix-git/doc/guix.texi:28661 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28327 guix-git/doc/guix.texi:28482 +#: guix-git/doc/guix.texi:28664 guix-git/doc/guix.texi:28819 msgid "The certificate of the machine the daemon is running on. It should be signed by the authority given in @code{ca}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28329 guix-git/doc/guix.texi:28484 +#: guix-git/doc/guix.texi:28666 guix-git/doc/guix.texi:28821 msgid "Defaults to @samp{\"/etc/openvpn/client.crt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28332 +#: guix-git/doc/guix.texi:28669 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string key" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28335 guix-git/doc/guix.texi:28490 +#: guix-git/doc/guix.texi:28672 guix-git/doc/guix.texi:28827 msgid "The key of the machine the daemon is running on. It must be the key whose certificate is @code{cert}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28337 guix-git/doc/guix.texi:28492 +#: guix-git/doc/guix.texi:28674 guix-git/doc/guix.texi:28829 msgid "Defaults to @samp{\"/etc/openvpn/client.key\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28340 +#: guix-git/doc/guix.texi:28677 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean comp-lzo?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28342 guix-git/doc/guix.texi:28497 +#: guix-git/doc/guix.texi:28679 guix-git/doc/guix.texi:28834 msgid "Whether to use the lzo compression algorithm." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28347 +#: guix-git/doc/guix.texi:28684 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean persist-key?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28349 guix-git/doc/guix.texi:28504 +#: guix-git/doc/guix.texi:28686 guix-git/doc/guix.texi:28841 msgid "Don't re-read key files across SIGUSR1 or --ping-restart." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28354 +#: guix-git/doc/guix.texi:28691 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean persist-tun?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28357 guix-git/doc/guix.texi:28512 +#: guix-git/doc/guix.texi:28694 guix-git/doc/guix.texi:28849 msgid "Don't close and reopen TUN/TAP device or run up/down scripts across SIGUSR1 or --ping-restart restarts." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28362 +#: guix-git/doc/guix.texi:28699 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean fast-io?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28365 guix-git/doc/guix.texi:28520 +#: guix-git/doc/guix.texi:28702 guix-git/doc/guix.texi:28857 msgid "(Experimental) Optimize TUN/TAP/UDP I/O writes by avoiding a call to poll/epoll/select prior to the write operation." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28369 +#: guix-git/doc/guix.texi:28706 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} number verbosity" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28371 guix-git/doc/guix.texi:28526 +#: guix-git/doc/guix.texi:28708 guix-git/doc/guix.texi:28863 msgid "Verbosity level." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28373 guix-git/doc/guix.texi:28528 -#: guix-git/doc/guix.texi:30264 guix-git/doc/guix.texi:30488 +#: guix-git/doc/guix.texi:28710 guix-git/doc/guix.texi:28865 +#: guix-git/doc/guix.texi:30629 guix-git/doc/guix.texi:30853 msgid "Defaults to @samp{3}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28376 +#: guix-git/doc/guix.texi:28713 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} tls-auth-client tls-auth" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28379 guix-git/doc/guix.texi:28534 +#: guix-git/doc/guix.texi:28716 guix-git/doc/guix.texi:28871 msgid "Add an additional layer of HMAC authentication on top of the TLS control channel to protect against DoS attacks." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28384 +#: guix-git/doc/guix.texi:28721 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string auth-user-pass" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28388 +#: guix-git/doc/guix.texi:28725 msgid "Authenticate with server using username/password. The option is a file containing username/password on 2 lines. Do not use a file-like object as it would be added to the store and readable by any user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28390 +#: guix-git/doc/guix.texi:28727 msgid "Defaults to @samp{'disabled}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28392 +#: guix-git/doc/guix.texi:28729 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} key-usage verify-key-usage?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28394 +#: guix-git/doc/guix.texi:28731 msgid "Whether to check the server certificate has server usage extension." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28399 +#: guix-git/doc/guix.texi:28736 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} bind bind?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28401 +#: guix-git/doc/guix.texi:28738 msgid "Bind to a specific local port number." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28406 +#: guix-git/doc/guix.texi:28743 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} resolv-retry resolv-retry?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28408 +#: guix-git/doc/guix.texi:28745 msgid "Retry resolving server address." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28413 +#: guix-git/doc/guix.texi:28750 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} openvpn-remote-list remote" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28415 +#: guix-git/doc/guix.texi:28752 msgid "A list of remote servers to connect to." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28419 +#: guix-git/doc/guix.texi:28756 msgid "Available @code{openvpn-remote-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28420 +#: guix-git/doc/guix.texi:28757 #, no-wrap msgid "{@code{openvpn-remote-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28422 +#: guix-git/doc/guix.texi:28759 msgid "Server name." msgstr "서버 이름." #. type: deftypevr -#: guix-git/doc/guix.texi:28424 +#: guix-git/doc/guix.texi:28761 msgid "Defaults to @samp{\"my-server\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28427 +#: guix-git/doc/guix.texi:28764 #, no-wrap msgid "{@code{openvpn-remote-configuration} parameter} number port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28429 +#: guix-git/doc/guix.texi:28766 msgid "Port number the server listens to." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28431 guix-git/doc/guix.texi:28543 +#: guix-git/doc/guix.texi:28768 guix-git/doc/guix.texi:28880 msgid "Defaults to @samp{1194}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28440 +#: guix-git/doc/guix.texi:28777 msgid "Available @code{openvpn-server-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28441 +#: guix-git/doc/guix.texi:28778 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} package openvpn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28446 +#: guix-git/doc/guix.texi:28783 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28453 +#: guix-git/doc/guix.texi:28790 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} proto proto" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28461 +#: guix-git/doc/guix.texi:28798 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} dev dev" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28472 +#: guix-git/doc/guix.texi:28809 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string ca" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28479 +#: guix-git/doc/guix.texi:28816 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28487 +#: guix-git/doc/guix.texi:28824 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string key" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28495 +#: guix-git/doc/guix.texi:28832 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean comp-lzo?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28502 +#: guix-git/doc/guix.texi:28839 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean persist-key?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28509 +#: guix-git/doc/guix.texi:28846 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean persist-tun?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28517 +#: guix-git/doc/guix.texi:28854 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean fast-io?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28524 +#: guix-git/doc/guix.texi:28861 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number verbosity" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28531 +#: guix-git/doc/guix.texi:28868 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} tls-auth-server tls-auth" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28539 +#: guix-git/doc/guix.texi:28876 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28541 +#: guix-git/doc/guix.texi:28878 msgid "Specifies the port number on which the server listens." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28546 +#: guix-git/doc/guix.texi:28883 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} ip-mask server" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28548 +#: guix-git/doc/guix.texi:28885 msgid "An ip and mask specifying the subnet inside the virtual network." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28550 +#: guix-git/doc/guix.texi:28887 msgid "Defaults to @samp{\"10.8.0.0 255.255.255.0\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28553 +#: guix-git/doc/guix.texi:28890 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} cidr6 server-ipv6" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28555 +#: guix-git/doc/guix.texi:28892 msgid "A CIDR notation specifying the IPv6 subnet inside the virtual network." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28560 +#: guix-git/doc/guix.texi:28897 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string dh" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28562 +#: guix-git/doc/guix.texi:28899 msgid "The Diffie-Hellman parameters file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28564 +#: guix-git/doc/guix.texi:28901 msgid "Defaults to @samp{\"/etc/openvpn/dh2048.pem\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28567 +#: guix-git/doc/guix.texi:28904 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string ifconfig-pool-persist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28569 +#: guix-git/doc/guix.texi:28906 msgid "The file that records client IPs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28571 +#: guix-git/doc/guix.texi:28908 msgid "Defaults to @samp{\"/etc/openvpn/ipp.txt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28574 +#: guix-git/doc/guix.texi:28911 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} gateway redirect-gateway?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28576 +#: guix-git/doc/guix.texi:28913 msgid "When true, the server will act as a gateway for its clients." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28581 +#: guix-git/doc/guix.texi:28918 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean client-to-client?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28583 +#: guix-git/doc/guix.texi:28920 msgid "When true, clients are allowed to talk to each other inside the VPN." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28588 +#: guix-git/doc/guix.texi:28925 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} keepalive keepalive" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28594 +#: guix-git/doc/guix.texi:28931 msgid "Causes ping-like messages to be sent back and forth over the link so that each side knows when the other side has gone down. @code{keepalive} requires a pair. The first element is the period of the ping sending, and the second element is the timeout before considering the other side down." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28597 +#: guix-git/doc/guix.texi:28934 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28599 +#: guix-git/doc/guix.texi:28936 msgid "The maximum number of clients." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28604 +#: guix-git/doc/guix.texi:28941 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string status" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28607 +#: guix-git/doc/guix.texi:28944 msgid "The status file. This file shows a small report on current connection. It is truncated and rewritten every minute." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28609 +#: guix-git/doc/guix.texi:28946 msgid "Defaults to @samp{\"/var/run/openvpn/status\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28612 +#: guix-git/doc/guix.texi:28949 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} openvpn-ccd-list client-config-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28614 +#: guix-git/doc/guix.texi:28951 msgid "The list of configuration for some clients." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28618 +#: guix-git/doc/guix.texi:28955 msgid "Available @code{openvpn-ccd-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28619 +#: guix-git/doc/guix.texi:28956 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28621 +#: guix-git/doc/guix.texi:28958 msgid "Client name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28623 +#: guix-git/doc/guix.texi:28960 msgid "Defaults to @samp{\"client\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28626 +#: guix-git/doc/guix.texi:28963 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} ip-mask iroute" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28628 +#: guix-git/doc/guix.texi:28965 msgid "Client own network" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28633 +#: guix-git/doc/guix.texi:28970 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} ip-mask ifconfig-push" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28635 +#: guix-git/doc/guix.texi:28972 msgid "Client VPN IP." msgstr "" #. type: subheading -#: guix-git/doc/guix.texi:28644 +#: guix-git/doc/guix.texi:28981 #, no-wrap msgid "strongSwan" msgstr "strongSwan" #. type: Plain text -#: guix-git/doc/guix.texi:28648 +#: guix-git/doc/guix.texi:28985 msgid "Currently, the strongSwan service only provides legacy-style configuration with @file{ipsec.conf} and @file{ipsec.secrets} files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28649 +#: guix-git/doc/guix.texi:28986 #, no-wrap msgid "{Scheme Variable} strongswan-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28653 +#: guix-git/doc/guix.texi:28990 msgid "A service type for configuring strongSwan for IPsec @acronym{VPN, Virtual Private Networking}. Its value must be a @code{strongswan-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28659 +#: guix-git/doc/guix.texi:28996 #, no-wrap msgid "" "(service strongswan-service-type\n" @@ -51526,69 +52158,69 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28663 +#: guix-git/doc/guix.texi:29000 #, fuzzy, no-wrap msgid "{Data Type} strongswan-configuration" msgstr "설정" #. type: deftp -#: guix-git/doc/guix.texi:28665 +#: guix-git/doc/guix.texi:29002 #, fuzzy msgid "Data type representing the configuration of the StrongSwan service." msgstr "운영체제 설정 관리." #. type: code{#1} -#: guix-git/doc/guix.texi:28667 +#: guix-git/doc/guix.texi:29004 #, no-wrap msgid "strongswan" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28669 +#: guix-git/doc/guix.texi:29006 msgid "The strongSwan package to use for this service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28670 +#: guix-git/doc/guix.texi:29007 #, no-wrap msgid "@code{ipsec-conf} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28673 +#: guix-git/doc/guix.texi:29010 msgid "The file name of your @file{ipsec.conf}. If not @code{#f}, then this and @code{ipsec-secrets} must both be strings." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28674 +#: guix-git/doc/guix.texi:29011 #, no-wrap msgid "@code{ipsec-secrets} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28677 +#: guix-git/doc/guix.texi:29014 msgid "The file name of your @file{ipsec.secrets}. If not @code{#f}, then this and @code{ipsec-conf} must both be strings." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28681 +#: guix-git/doc/guix.texi:29018 #, no-wrap msgid "Wireguard" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28683 +#: guix-git/doc/guix.texi:29020 #, no-wrap msgid "{Scheme Variable} wireguard-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28686 +#: guix-git/doc/guix.texi:29023 msgid "A service type for a Wireguard tunnel interface. Its value must be a @code{wireguard-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28697 +#: guix-git/doc/guix.texi:29034 #, no-wrap msgid "" "(service wireguard-service-type\n" @@ -51603,250 +52235,250 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28701 +#: guix-git/doc/guix.texi:29038 #, no-wrap msgid "{Data Type} wireguard-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28703 +#: guix-git/doc/guix.texi:29040 msgid "Data type representing the configuration of the Wireguard service." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:28705 +#: guix-git/doc/guix.texi:29042 #, no-wrap msgid "wireguard" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28707 +#: guix-git/doc/guix.texi:29044 msgid "The wireguard package to use for this service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28708 +#: guix-git/doc/guix.texi:29045 #, no-wrap msgid "@code{interface} (default: @code{\"wg0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28710 +#: guix-git/doc/guix.texi:29047 msgid "The interface name for the VPN." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28711 +#: guix-git/doc/guix.texi:29048 #, no-wrap msgid "@code{addresses} (default: @code{'(\"10.0.0.1/32\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28713 +#: guix-git/doc/guix.texi:29050 msgid "The IP addresses to be assigned to the above interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28714 +#: guix-git/doc/guix.texi:29051 #, no-wrap msgid "@code{port} (default: @code{51820})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28716 +#: guix-git/doc/guix.texi:29053 msgid "The port on which to listen for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28717 +#: guix-git/doc/guix.texi:29054 #, no-wrap msgid "@code{dns} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28719 +#: guix-git/doc/guix.texi:29056 msgid "The DNS server(s) to announce to VPN clients via DHCP." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28720 +#: guix-git/doc/guix.texi:29057 #, no-wrap msgid "@code{private-key} (default: @code{\"/etc/wireguard/private.key\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28723 +#: guix-git/doc/guix.texi:29060 msgid "The private key file for the interface. It is automatically generated if the file does not exist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28724 +#: guix-git/doc/guix.texi:29061 #, no-wrap msgid "@code{peers} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28727 +#: guix-git/doc/guix.texi:29064 msgid "The authorized peers on this interface. This is a list of @var{wireguard-peer} records." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28731 +#: guix-git/doc/guix.texi:29068 #, no-wrap msgid "{Data Type} wireguard-peer" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28733 +#: guix-git/doc/guix.texi:29070 msgid "Data type representing a Wireguard peer attached to a given interface." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28737 +#: guix-git/doc/guix.texi:29074 msgid "The peer name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28738 +#: guix-git/doc/guix.texi:29075 #, no-wrap msgid "@code{endpoint} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28741 +#: guix-git/doc/guix.texi:29078 msgid "The optional endpoint for the peer, such as @code{\"demo.wireguard.com:51820\"}." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:28742 guix-git/doc/guix.texi:29137 -#: guix-git/doc/guix.texi:29174 guix-git/doc/guix.texi:34305 +#: guix-git/doc/guix.texi:29079 guix-git/doc/guix.texi:29474 +#: guix-git/doc/guix.texi:29511 guix-git/doc/guix.texi:34744 #, no-wrap msgid "public-key" msgstr "공개 키" #. type: table -#: guix-git/doc/guix.texi:28744 +#: guix-git/doc/guix.texi:29081 msgid "The peer public-key represented as a base64 string." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:28745 +#: guix-git/doc/guix.texi:29082 #, no-wrap msgid "allowed-ips" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28748 +#: guix-git/doc/guix.texi:29085 msgid "A list of IP addresses from which incoming traffic for this peer is allowed and to which incoming traffic for this peer is directed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28749 +#: guix-git/doc/guix.texi:29086 #, no-wrap msgid "@code{keep-alive} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28754 +#: guix-git/doc/guix.texi:29091 msgid "An optional time interval in seconds. A packet will be sent to the server endpoint once per time interval. This helps receiving incoming connections from this peer when you are behind a NAT or a firewall." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28760 +#: guix-git/doc/guix.texi:29097 #, no-wrap msgid "NFS" msgstr "NFS" #. type: Plain text -#: guix-git/doc/guix.texi:28765 +#: guix-git/doc/guix.texi:29102 msgid "The @code{(gnu services nfs)} module provides the following services, which are most commonly used in relation to mounting or exporting directory trees as @dfn{network file systems} (NFS)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28769 +#: guix-git/doc/guix.texi:29106 msgid "While it is possible to use the individual components that together make up a Network File System service, we recommended to configure an NFS server with the @code{nfs-service-type}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28770 +#: guix-git/doc/guix.texi:29107 #, no-wrap msgid "NFS Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28771 +#: guix-git/doc/guix.texi:29108 #, no-wrap msgid "NFS, server" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28776 +#: guix-git/doc/guix.texi:29113 msgid "The NFS service takes care of setting up all NFS component services, kernel configuration file systems, and installs configuration files in the locations that NFS expects." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28777 +#: guix-git/doc/guix.texi:29114 #, no-wrap msgid "{Scheme Variable} nfs-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28779 +#: guix-git/doc/guix.texi:29116 msgid "A service type for a complete NFS server." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28781 +#: guix-git/doc/guix.texi:29118 #, no-wrap msgid "{Data Type} nfs-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28784 +#: guix-git/doc/guix.texi:29121 msgid "This data type represents the configuration of the NFS service and all of its subsystems." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28786 +#: guix-git/doc/guix.texi:29123 msgid "It has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28787 guix-git/doc/guix.texi:28912 -#: guix-git/doc/guix.texi:28937 +#: guix-git/doc/guix.texi:29124 guix-git/doc/guix.texi:29249 +#: guix-git/doc/guix.texi:29274 #, no-wrap msgid "@code{nfs-utils} (default: @code{nfs-utils})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28789 +#: guix-git/doc/guix.texi:29126 msgid "The nfs-utils package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28790 +#: guix-git/doc/guix.texi:29127 #, no-wrap msgid "@code{nfs-versions} (default: @code{'(\"4.2\" \"4.1\" \"4.0\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28793 +#: guix-git/doc/guix.texi:29130 msgid "If a list of string values is provided, the @command{rpc.nfsd} daemon will be limited to supporting the given versions of the NFS protocol." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28794 +#: guix-git/doc/guix.texi:29131 #, no-wrap msgid "@code{exports} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28799 +#: guix-git/doc/guix.texi:29136 msgid "This is a list of directories the NFS server should export. Each entry is a list consisting of two elements: a directory name and a string containing all options. This is an example in which the directory @file{/export} is served to all NFS clients as a read-only share:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28805 +#: guix-git/doc/guix.texi:29142 #, no-wrap msgid "" "(nfs-configuration\n" @@ -51856,384 +52488,384 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28807 +#: guix-git/doc/guix.texi:29144 #, no-wrap msgid "@code{rpcmountd-port} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28809 +#: guix-git/doc/guix.texi:29146 msgid "The network port that the @command{rpc.mountd} daemon should use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28810 +#: guix-git/doc/guix.texi:29147 #, no-wrap msgid "@code{rpcstatd-port} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28812 +#: guix-git/doc/guix.texi:29149 msgid "The network port that the @command{rpc.statd} daemon should use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28813 guix-git/doc/guix.texi:28861 +#: guix-git/doc/guix.texi:29150 guix-git/doc/guix.texi:29198 #, no-wrap msgid "@code{rpcbind} (default: @code{rpcbind})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28815 guix-git/doc/guix.texi:28863 +#: guix-git/doc/guix.texi:29152 guix-git/doc/guix.texi:29200 msgid "The rpcbind package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28816 +#: guix-git/doc/guix.texi:29153 #, no-wrap msgid "@code{idmap-domain} (default: @code{\"localdomain\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28818 +#: guix-git/doc/guix.texi:29155 msgid "The local NFSv4 domain name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28819 +#: guix-git/doc/guix.texi:29156 #, no-wrap msgid "@code{nfsd-port} (default: @code{2049})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28821 +#: guix-git/doc/guix.texi:29158 msgid "The network port that the @command{nfsd} daemon should use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28822 +#: guix-git/doc/guix.texi:29159 #, no-wrap msgid "@code{nfsd-threads} (default: @code{8})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28824 +#: guix-git/doc/guix.texi:29161 msgid "The number of threads used by the @command{nfsd} daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28825 +#: guix-git/doc/guix.texi:29162 #, no-wrap msgid "@code{nfsd-tcp?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28827 +#: guix-git/doc/guix.texi:29164 msgid "Whether the @command{nfsd} daemon should listen on a TCP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28828 +#: guix-git/doc/guix.texi:29165 #, no-wrap msgid "@code{nfsd-udp?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28830 +#: guix-git/doc/guix.texi:29167 msgid "Whether the @command{nfsd} daemon should listen on a UDP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28831 guix-git/doc/guix.texi:28915 -#: guix-git/doc/guix.texi:28940 +#: guix-git/doc/guix.texi:29168 guix-git/doc/guix.texi:29252 +#: guix-git/doc/guix.texi:29277 #, no-wrap msgid "@code{pipefs-directory} (default: @code{\"/var/lib/nfs/rpc_pipefs\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28833 guix-git/doc/guix.texi:28917 -#: guix-git/doc/guix.texi:28942 +#: guix-git/doc/guix.texi:29170 guix-git/doc/guix.texi:29254 +#: guix-git/doc/guix.texi:29279 msgid "The directory where the pipefs file system is mounted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28834 +#: guix-git/doc/guix.texi:29171 #, no-wrap msgid "@code{debug} (default: @code{'()\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28838 +#: guix-git/doc/guix.texi:29175 msgid "A list of subsystems for which debugging output should be enabled. This is a list of symbols. Any of these symbols are valid: @code{nfsd}, @code{nfs}, @code{rpc}, @code{idmap}, @code{statd}, or @code{mountd}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28843 +#: guix-git/doc/guix.texi:29180 msgid "If you don't need a complete NFS service or prefer to build it yourself you can use the individual component services that are documented below." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28844 +#: guix-git/doc/guix.texi:29181 #, no-wrap msgid "RPC Bind Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28845 +#: guix-git/doc/guix.texi:29182 #, no-wrap msgid "rpcbind" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28851 +#: guix-git/doc/guix.texi:29188 msgid "The RPC Bind service provides a facility to map program numbers into universal addresses. Many NFS related services use this facility. Hence it is automatically started when a dependent service starts." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28852 +#: guix-git/doc/guix.texi:29189 #, no-wrap msgid "{Scheme Variable} rpcbind-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28854 +#: guix-git/doc/guix.texi:29191 msgid "A service type for the RPC portmapper daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28857 +#: guix-git/doc/guix.texi:29194 #, no-wrap msgid "{Data Type} rpcbind-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28860 +#: guix-git/doc/guix.texi:29197 msgid "Data type representing the configuration of the RPC Bind Service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28864 +#: guix-git/doc/guix.texi:29201 #, no-wrap msgid "@code{warm-start?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28868 +#: guix-git/doc/guix.texi:29205 msgid "If this parameter is @code{#t}, then the daemon will read a state file on startup thus reloading state information saved by a previous instance." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28872 +#: guix-git/doc/guix.texi:29209 #, no-wrap msgid "Pipefs Pseudo File System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28873 +#: guix-git/doc/guix.texi:29210 #, no-wrap msgid "pipefs" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28874 +#: guix-git/doc/guix.texi:29211 #, no-wrap msgid "rpc_pipefs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28878 +#: guix-git/doc/guix.texi:29215 msgid "The pipefs file system is used to transfer NFS related data between the kernel and user space programs." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28879 +#: guix-git/doc/guix.texi:29216 #, no-wrap msgid "{Scheme Variable} pipefs-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28881 +#: guix-git/doc/guix.texi:29218 msgid "A service type for the pipefs pseudo file system." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28883 +#: guix-git/doc/guix.texi:29220 #, no-wrap msgid "{Data Type} pipefs-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28886 +#: guix-git/doc/guix.texi:29223 msgid "Data type representing the configuration of the pipefs pseudo file system service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28887 +#: guix-git/doc/guix.texi:29224 #, no-wrap msgid "@code{mount-point} (default: @code{\"/var/lib/nfs/rpc_pipefs\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28889 +#: guix-git/doc/guix.texi:29226 msgid "The directory to which the file system is to be attached." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28893 +#: guix-git/doc/guix.texi:29230 #, no-wrap msgid "GSS Daemon Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28894 +#: guix-git/doc/guix.texi:29231 #, no-wrap msgid "GSSD" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28895 +#: guix-git/doc/guix.texi:29232 #, no-wrap msgid "GSS" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28896 +#: guix-git/doc/guix.texi:29233 #, no-wrap msgid "global security system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28903 +#: guix-git/doc/guix.texi:29240 msgid "The @dfn{global security system} (GSS) daemon provides strong security for RPC based protocols. Before exchanging RPC requests an RPC client must establish a security context. Typically this is done using the Kerberos command @command{kinit} or automatically at login time using PAM services (@pxref{Kerberos Services})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28904 +#: guix-git/doc/guix.texi:29241 #, no-wrap msgid "{Scheme Variable} gss-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28906 +#: guix-git/doc/guix.texi:29243 msgid "A service type for the Global Security System (GSS) daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28908 +#: guix-git/doc/guix.texi:29245 #, no-wrap msgid "{Data Type} gss-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28911 +#: guix-git/doc/guix.texi:29248 msgid "Data type representing the configuration of the GSS daemon service. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28914 +#: guix-git/doc/guix.texi:29251 msgid "The package in which the @command{rpc.gssd} command is to be found." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28922 +#: guix-git/doc/guix.texi:29259 #, no-wrap msgid "IDMAP Daemon Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28923 +#: guix-git/doc/guix.texi:29260 #, no-wrap msgid "idmapd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28924 +#: guix-git/doc/guix.texi:29261 #, no-wrap msgid "name mapper" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28928 +#: guix-git/doc/guix.texi:29265 msgid "The idmap daemon service provides mapping between user IDs and user names. Typically it is required in order to access file systems mounted via NFSv4." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28929 +#: guix-git/doc/guix.texi:29266 #, no-wrap msgid "{Scheme Variable} idmap-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28931 +#: guix-git/doc/guix.texi:29268 msgid "A service type for the Identity Mapper (IDMAP) daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28933 +#: guix-git/doc/guix.texi:29270 #, no-wrap msgid "{Data Type} idmap-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28936 +#: guix-git/doc/guix.texi:29273 msgid "Data type representing the configuration of the IDMAP daemon service. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28939 +#: guix-git/doc/guix.texi:29276 msgid "The package in which the @command{rpc.idmapd} command is to be found." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28943 +#: guix-git/doc/guix.texi:29280 #, no-wrap msgid "@code{domain} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28947 +#: guix-git/doc/guix.texi:29284 msgid "The local NFSv4 domain name. This must be a string or @code{#f}. If it is @code{#f} then the daemon will use the host's fully qualified domain name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28948 +#: guix-git/doc/guix.texi:29285 #, no-wrap msgid "@code{verbosity} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28950 +#: guix-git/doc/guix.texi:29287 msgid "The verbosity level of the daemon." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28961 +#: guix-git/doc/guix.texi:29298 msgid "@uref{https://guix.gnu.org/cuirass/, Cuirass} is a continuous integration tool for Guix. It can be used both for development and for providing substitutes to others (@pxref{Substitutes})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28963 +#: guix-git/doc/guix.texi:29300 msgid "The @code{(gnu services cuirass)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28964 +#: guix-git/doc/guix.texi:29301 #, no-wrap msgid "{Scheme Procedure} cuirass-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28967 +#: guix-git/doc/guix.texi:29304 msgid "The type of the Cuirass service. Its value must be a @code{cuirass-configuration} object, as described below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28972 +#: guix-git/doc/guix.texi:29309 msgid "To add build jobs, you have to set the @code{specifications} field of the configuration. For instance, the following example will build all the packages provided by the @code{my-channel} channel." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28983 +#: guix-git/doc/guix.texi:29320 #, no-wrap msgid "" "(define %cuirass-specs\n" @@ -52249,7 +52881,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28987 guix-git/doc/guix.texi:29001 +#: guix-git/doc/guix.texi:29324 guix-git/doc/guix.texi:29338 #, no-wrap msgid "" "(service cuirass-service-type\n" @@ -52258,12 +52890,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28991 +#: guix-git/doc/guix.texi:29328 msgid "To build the @code{linux-libre} package defined by the default Guix channel, one can use the following configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28997 +#: guix-git/doc/guix.texi:29334 #, no-wrap msgid "" "(define %cuirass-specs\n" @@ -52274,574 +52906,574 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29006 +#: guix-git/doc/guix.texi:29343 msgid "The other configuration possibilities, as well as the specification record itself are described in the Cuirass manual (@pxref{Specifications,,, cuirass, Cuirass})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29010 +#: guix-git/doc/guix.texi:29347 msgid "While information related to build jobs is located directly in the specifications, global settings for the @command{cuirass} process are accessible in other @code{cuirass-configuration} fields." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29011 +#: guix-git/doc/guix.texi:29348 #, no-wrap msgid "{Data Type} cuirass-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29013 +#: guix-git/doc/guix.texi:29350 msgid "Data type representing the configuration of Cuirass." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29015 guix-git/doc/guix.texi:29152 +#: guix-git/doc/guix.texi:29352 guix-git/doc/guix.texi:29489 #, no-wrap msgid "@code{cuirass} (default: @code{cuirass})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29017 guix-git/doc/guix.texi:29154 +#: guix-git/doc/guix.texi:29354 guix-git/doc/guix.texi:29491 msgid "The Cuirass package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29018 +#: guix-git/doc/guix.texi:29355 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29020 guix-git/doc/guix.texi:29124 -#: guix-git/doc/guix.texi:29167 +#: guix-git/doc/guix.texi:29357 guix-git/doc/guix.texi:29461 +#: guix-git/doc/guix.texi:29504 msgid "Location of the log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29021 +#: guix-git/doc/guix.texi:29358 #, no-wrap msgid "@code{web-log-file} (default: @code{\"/var/log/cuirass-web.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29023 +#: guix-git/doc/guix.texi:29360 msgid "Location of the log file used by the web interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29024 +#: guix-git/doc/guix.texi:29361 #, no-wrap msgid "@code{cache-directory} (default: @code{\"/var/cache/cuirass\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29026 +#: guix-git/doc/guix.texi:29363 msgid "Location of the repository cache." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29027 +#: guix-git/doc/guix.texi:29364 #, no-wrap msgid "@code{user} (default: @code{\"cuirass\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29029 +#: guix-git/doc/guix.texi:29366 msgid "Owner of the @code{cuirass} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29030 +#: guix-git/doc/guix.texi:29367 #, no-wrap msgid "@code{group} (default: @code{\"cuirass\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29032 +#: guix-git/doc/guix.texi:29369 msgid "Owner's group of the @code{cuirass} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29033 +#: guix-git/doc/guix.texi:29370 #, no-wrap msgid "@code{interval} (default: @code{60})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29036 +#: guix-git/doc/guix.texi:29373 msgid "Number of seconds between the poll of the repositories followed by the Cuirass jobs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29037 +#: guix-git/doc/guix.texi:29374 #, no-wrap msgid "@code{parameters} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29040 +#: guix-git/doc/guix.texi:29377 msgid "Read parameters from the given @var{parameters} file. The supported parameters are described here (@pxref{Parameters,,, cuirass, Cuirass})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29041 +#: guix-git/doc/guix.texi:29378 #, no-wrap msgid "@code{remote-server} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29044 +#: guix-git/doc/guix.texi:29381 msgid "A @code{cuirass-remote-server-configuration} record to use the build remote mechanism or @code{#f} to use the default build mechanism." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29045 +#: guix-git/doc/guix.texi:29382 #, no-wrap msgid "@code{database} (default: @code{\"dbname=cuirass host=/var/run/postgresql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29050 +#: guix-git/doc/guix.texi:29387 msgid "Use @var{database} as the database containing the jobs and the past build results. Since Cuirass uses PostgreSQL as a database engine, @var{database} must be a string such as @code{\"dbname=cuirass host=localhost\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29051 +#: guix-git/doc/guix.texi:29388 #, no-wrap msgid "@code{port} (default: @code{8081})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29053 +#: guix-git/doc/guix.texi:29390 msgid "Port number used by the HTTP server." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29057 +#: guix-git/doc/guix.texi:29394 msgid "Listen on the network interface for @var{host}. The default is to accept connections from localhost." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29058 +#: guix-git/doc/guix.texi:29395 #, no-wrap msgid "@code{specifications} (default: @code{#~'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29062 +#: guix-git/doc/guix.texi:29399 msgid "A gexp (@pxref{G-Expressions}) that evaluates to a list of specifications records. The specification record is described in the Cuirass manual (@pxref{Specifications,,, cuirass, Cuirass})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29063 +#: guix-git/doc/guix.texi:29400 #, no-wrap msgid "@code{use-substitutes?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29066 +#: guix-git/doc/guix.texi:29403 msgid "This allows using substitutes to avoid building every dependencies of a job from source." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29067 guix-git/doc/guix.texi:36336 +#: guix-git/doc/guix.texi:29404 guix-git/doc/guix.texi:36826 #, no-wrap msgid "@code{one-shot?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29069 +#: guix-git/doc/guix.texi:29406 msgid "Only evaluate specifications and build derivations once." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29070 +#: guix-git/doc/guix.texi:29407 #, no-wrap msgid "@code{fallback?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29073 +#: guix-git/doc/guix.texi:29410 msgid "When substituting a pre-built binary fails, fall back to building packages locally." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29076 +#: guix-git/doc/guix.texi:29413 msgid "Extra options to pass when running the Cuirass processes." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29080 +#: guix-git/doc/guix.texi:29417 #, no-wrap msgid "remote build" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29081 +#: guix-git/doc/guix.texi:29418 #, no-wrap msgid "Cuirass remote building" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29084 +#: guix-git/doc/guix.texi:29421 msgid "Cuirass supports two mechanisms to build derivations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29086 +#: guix-git/doc/guix.texi:29423 #, fuzzy, no-wrap msgid "Using the local Guix daemon." msgstr "구성 데몬 실행하기." #. type: itemize -#: guix-git/doc/guix.texi:29090 +#: guix-git/doc/guix.texi:29427 msgid "This is the default build mechanism. Once the build jobs are evaluated, they are sent to the local Guix daemon. Cuirass then listens to the Guix daemon output to detect the various build events." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29091 +#: guix-git/doc/guix.texi:29428 #, no-wrap msgid "Using the remote build mechanism." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:29095 +#: guix-git/doc/guix.texi:29432 msgid "The build jobs are not submitted to the local Guix daemon. Instead, a remote server dispatches build requests to the connect remote workers, according to the build priorities." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29102 +#: guix-git/doc/guix.texi:29439 msgid "To enable this build mode a @code{cuirass-remote-server-configuration} record must be passed as @code{remote-server} argument of the @code{cuirass-configuration} record. The @code{cuirass-remote-server-configuration} record is described below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29107 +#: guix-git/doc/guix.texi:29444 msgid "This build mode scales way better than the default build mode. This is the build mode that is used on the GNU Guix build farm at @url{https://ci.guix.gnu.org}. It should be preferred when using Cuirass to build large amount of packages." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29108 +#: guix-git/doc/guix.texi:29445 #, no-wrap msgid "{Data Type} cuirass-remote-server-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29110 +#: guix-git/doc/guix.texi:29447 msgid "Data type representing the configuration of the Cuirass remote-server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29112 +#: guix-git/doc/guix.texi:29449 #, no-wrap msgid "@code{backend-port} (default: @code{5555})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29115 +#: guix-git/doc/guix.texi:29452 msgid "The TCP port for communicating with @code{remote-worker} processes using ZMQ. It defaults to @code{5555}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29116 +#: guix-git/doc/guix.texi:29453 #, no-wrap msgid "@code{log-port} (default: @code{5556})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29118 +#: guix-git/doc/guix.texi:29455 msgid "The TCP port of the log server. It defaults to @code{5556}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29119 +#: guix-git/doc/guix.texi:29456 #, no-wrap msgid "@code{publish-port} (default: @code{5557})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29121 +#: guix-git/doc/guix.texi:29458 msgid "The TCP port of the publish server. It defaults to @code{5557}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29122 +#: guix-git/doc/guix.texi:29459 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass-remote-server.log\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:29125 +#: guix-git/doc/guix.texi:29462 #, no-wrap msgid "@code{cache} (default: @code{\"/var/cache/cuirass/remote\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29127 +#: guix-git/doc/guix.texi:29464 msgid "Use @var{cache} directory to cache build log files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29128 +#: guix-git/doc/guix.texi:29465 #, no-wrap msgid "@code{trigger-url} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29131 +#: guix-git/doc/guix.texi:29468 msgid "Once a substitute is successfully fetched, trigger substitute baking at @var{trigger-url}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29136 +#: guix-git/doc/guix.texi:29473 msgid "If set to false, do not start a publish server and ignore the @code{publish-port} argument. This can be useful if there is already a standalone publish server standing next to the remote server." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:29138 guix-git/doc/guix.texi:29175 +#: guix-git/doc/guix.texi:29475 guix-git/doc/guix.texi:29512 #, no-wrap msgid "private-key" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29147 +#: guix-git/doc/guix.texi:29484 msgid "At least one remote worker must also be started on any machine of the local network to actually perform the builds and report their status." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29148 +#: guix-git/doc/guix.texi:29485 #, no-wrap msgid "{Data Type} cuirass-remote-worker-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29150 +#: guix-git/doc/guix.texi:29487 msgid "Data type representing the configuration of the Cuirass remote-worker." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29155 +#: guix-git/doc/guix.texi:29492 #, no-wrap msgid "@code{workers} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29157 +#: guix-git/doc/guix.texi:29494 msgid "Start @var{workers} parallel workers." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29161 +#: guix-git/doc/guix.texi:29498 msgid "Do not use Avahi discovery and connect to the given @code{server} IP address instead." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29162 +#: guix-git/doc/guix.texi:29499 #, no-wrap msgid "@code{systems} (default: @code{(list (%current-system))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29164 +#: guix-git/doc/guix.texi:29501 msgid "Only request builds for the given @var{systems}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29165 +#: guix-git/doc/guix.texi:29502 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass-remote-worker.log\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:29168 +#: guix-git/doc/guix.texi:29505 #, no-wrap msgid "@code{publish-port} (default: @code{5558})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29170 +#: guix-git/doc/guix.texi:29507 msgid "The TCP port of the publish server. It defaults to @code{5558}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29182 +#: guix-git/doc/guix.texi:29519 #, no-wrap msgid "Laminar" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29187 +#: guix-git/doc/guix.texi:29524 msgid "@uref{https://laminar.ohwg.net/, Laminar} is a lightweight and modular Continuous Integration service. It doesn't have a configuration web UI instead uses version-controllable configuration files and scripts." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29190 +#: guix-git/doc/guix.texi:29527 msgid "Laminar encourages the use of existing tools such as bash and cron instead of reinventing them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29191 +#: guix-git/doc/guix.texi:29528 #, no-wrap msgid "{Scheme Procedure} laminar-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29194 +#: guix-git/doc/guix.texi:29531 msgid "The type of the Laminar service. Its value must be a @code{laminar-configuration} object, as described below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29198 +#: guix-git/doc/guix.texi:29535 msgid "All configuration values have defaults, a minimal configuration to get Laminar running is shown below. By default, the web interface is available on port 8080." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29201 +#: guix-git/doc/guix.texi:29538 #, no-wrap msgid "(service laminar-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29204 +#: guix-git/doc/guix.texi:29541 #, no-wrap msgid "{Data Type} laminar-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29206 +#: guix-git/doc/guix.texi:29543 #, fuzzy msgid "Data type representing the configuration of Laminar." msgstr "운영체제 설정 관리." #. type: item -#: guix-git/doc/guix.texi:29208 +#: guix-git/doc/guix.texi:29545 #, no-wrap msgid "@code{laminar} (default: @code{laminar})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29210 +#: guix-git/doc/guix.texi:29547 #, fuzzy msgid "The Laminar package to use." msgstr "꾸러미와 도구." #. type: item -#: guix-git/doc/guix.texi:29211 +#: guix-git/doc/guix.texi:29548 #, no-wrap msgid "@code{home-directory} (default: @code{\"/var/lib/laminar\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29213 +#: guix-git/doc/guix.texi:29550 msgid "The directory for job configurations and run directories." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29214 +#: guix-git/doc/guix.texi:29551 #, no-wrap msgid "@code{bind-http} (default: @code{\"*:8080\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29217 +#: guix-git/doc/guix.texi:29554 msgid "The interface/port or unix socket on which laminard should listen for incoming connections to the web frontend." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29218 +#: guix-git/doc/guix.texi:29555 #, no-wrap msgid "@code{bind-rpc} (default: @code{\"unix-abstract:laminar\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29221 +#: guix-git/doc/guix.texi:29558 msgid "The interface/port or unix socket on which laminard should listen for incoming commands such as build triggers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29222 +#: guix-git/doc/guix.texi:29559 #, no-wrap msgid "@code{title} (default: @code{\"Laminar\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29224 +#: guix-git/doc/guix.texi:29561 msgid "The page title to show in the web frontend." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29225 +#: guix-git/doc/guix.texi:29562 #, no-wrap msgid "@code{keep-rundirs} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29229 +#: guix-git/doc/guix.texi:29566 msgid "Set to an integer defining how many rundirs to keep per job. The lowest-numbered ones will be deleted. The default is 0, meaning all run dirs will be immediately deleted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29230 +#: guix-git/doc/guix.texi:29567 #, no-wrap msgid "@code{archive-url} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29233 +#: guix-git/doc/guix.texi:29570 msgid "The web frontend served by laminard will use this URL to form links to artefacts archived jobs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29234 +#: guix-git/doc/guix.texi:29571 #, no-wrap msgid "@code{base-url} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29236 +#: guix-git/doc/guix.texi:29573 msgid "Base URL to use for links to laminar itself." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29243 +#: guix-git/doc/guix.texi:29580 #, no-wrap msgid "tlp" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29244 +#: guix-git/doc/guix.texi:29581 #, no-wrap msgid "power management with TLP" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29245 +#: guix-git/doc/guix.texi:29582 #, no-wrap msgid "TLP daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29249 +#: guix-git/doc/guix.texi:29586 msgid "The @code{(gnu services pm)} module provides a Guix service definition for the Linux power management tool TLP." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29255 +#: guix-git/doc/guix.texi:29592 msgid "TLP enables various powersaving modes in userspace and kernel. Contrary to @code{upower-service}, it is not a passive, monitoring tool, as it will apply custom settings each time a new power source is detected. More information can be found at @uref{https://linrunner.de/en/tlp/tlp.html, TLP home page}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29256 +#: guix-git/doc/guix.texi:29593 #, no-wrap msgid "{Scheme Variable} tlp-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29260 +#: guix-git/doc/guix.texi:29597 msgid "The service type for the TLP tool. The default settings are optimised for battery life on most systems, but you can tweak them to your heart's content by adding a valid @code{tlp-configuration}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29265 +#: guix-git/doc/guix.texi:29602 #, no-wrap msgid "" "(service tlp-service-type\n" @@ -52851,888 +53483,932 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29273 +#: guix-git/doc/guix.texi:29610 msgid "Each parameter definition is preceded by its type; for example, @samp{boolean foo} indicates that the @code{foo} parameter should be specified as a boolean. Types starting with @code{maybe-} denote parameters that won't show up in TLP config file when their value is @code{'disabled}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29283 +#: guix-git/doc/guix.texi:29620 msgid "Available @code{tlp-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29284 +#: guix-git/doc/guix.texi:29621 #, no-wrap msgid "{@code{tlp-configuration} parameter} package tlp" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29286 +#: guix-git/doc/guix.texi:29623 msgid "The TLP package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29289 +#: guix-git/doc/guix.texi:29626 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean tlp-enable?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29291 +#: guix-git/doc/guix.texi:29628 msgid "Set to true if you wish to enable TLP." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29296 +#: guix-git/doc/guix.texi:29633 #, no-wrap msgid "{@code{tlp-configuration} parameter} string tlp-default-mode" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29299 +#: guix-git/doc/guix.texi:29636 msgid "Default mode when no power supply can be detected. Alternatives are AC and BAT." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29301 +#: guix-git/doc/guix.texi:29638 msgid "Defaults to @samp{\"AC\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29304 +#: guix-git/doc/guix.texi:29641 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer disk-idle-secs-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29307 +#: guix-git/doc/guix.texi:29644 msgid "Number of seconds Linux kernel has to wait after the disk goes idle, before syncing on AC." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29312 +#: guix-git/doc/guix.texi:29649 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer disk-idle-secs-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29314 +#: guix-git/doc/guix.texi:29651 msgid "Same as @code{disk-idle-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29316 +#: guix-git/doc/guix.texi:29653 msgid "Defaults to @samp{2}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29319 +#: guix-git/doc/guix.texi:29656 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer max-lost-work-secs-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29321 +#: guix-git/doc/guix.texi:29658 msgid "Dirty pages flushing periodicity, expressed in seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29323 guix-git/doc/guix.texi:29546 -#: guix-git/doc/guix.texi:31814 guix-git/doc/guix.texi:31822 +#: guix-git/doc/guix.texi:29660 guix-git/doc/guix.texi:29883 +#: guix-git/doc/guix.texi:32179 guix-git/doc/guix.texi:32187 msgid "Defaults to @samp{15}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29326 +#: guix-git/doc/guix.texi:29663 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer max-lost-work-secs-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29328 +#: guix-git/doc/guix.texi:29665 msgid "Same as @code{max-lost-work-secs-on-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29330 +#: guix-git/doc/guix.texi:29667 msgid "Defaults to @samp{60}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29333 +#: guix-git/doc/guix.texi:29670 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list cpu-scaling-governor-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29337 +#: guix-git/doc/guix.texi:29674 msgid "CPU frequency scaling governor on AC mode. With intel_pstate driver, alternatives are powersave and performance. With acpi-cpufreq driver, alternatives are ondemand, powersave, performance and conservative." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29342 +#: guix-git/doc/guix.texi:29679 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list cpu-scaling-governor-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29344 +#: guix-git/doc/guix.texi:29681 msgid "Same as @code{cpu-scaling-governor-on-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29349 +#: guix-git/doc/guix.texi:29686 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-min-freq-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29351 +#: guix-git/doc/guix.texi:29688 msgid "Set the min available frequency for the scaling governor on AC." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29356 +#: guix-git/doc/guix.texi:29693 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-max-freq-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29358 +#: guix-git/doc/guix.texi:29695 msgid "Set the max available frequency for the scaling governor on AC." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29363 +#: guix-git/doc/guix.texi:29700 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-min-freq-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29365 +#: guix-git/doc/guix.texi:29702 msgid "Set the min available frequency for the scaling governor on BAT." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29370 +#: guix-git/doc/guix.texi:29707 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-max-freq-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29372 +#: guix-git/doc/guix.texi:29709 msgid "Set the max available frequency for the scaling governor on BAT." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29377 +#: guix-git/doc/guix.texi:29714 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-min-perf-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29380 +#: guix-git/doc/guix.texi:29717 msgid "Limit the min P-state to control the power dissipation of the CPU, in AC mode. Values are stated as a percentage of the available performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29385 +#: guix-git/doc/guix.texi:29722 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29388 +#: guix-git/doc/guix.texi:29725 msgid "Limit the max P-state to control the power dissipation of the CPU, in AC mode. Values are stated as a percentage of the available performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29393 +#: guix-git/doc/guix.texi:29730 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-min-perf-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29395 +#: guix-git/doc/guix.texi:29732 msgid "Same as @code{cpu-min-perf-on-ac} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29400 +#: guix-git/doc/guix.texi:29737 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29402 +#: guix-git/doc/guix.texi:29739 msgid "Same as @code{cpu-max-perf-on-ac} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29407 +#: guix-git/doc/guix.texi:29744 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean cpu-boost-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29409 +#: guix-git/doc/guix.texi:29746 msgid "Enable CPU turbo boost feature on AC mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29414 +#: guix-git/doc/guix.texi:29751 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean cpu-boost-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29416 +#: guix-git/doc/guix.texi:29753 msgid "Same as @code{cpu-boost-on-ac?} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29421 +#: guix-git/doc/guix.texi:29758 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean sched-powersave-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29424 +#: guix-git/doc/guix.texi:29761 msgid "Allow Linux kernel to minimize the number of CPU cores/hyper-threads used under light load conditions." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29429 +#: guix-git/doc/guix.texi:29766 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean sched-powersave-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29431 +#: guix-git/doc/guix.texi:29768 msgid "Same as @code{sched-powersave-on-ac?} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29436 +#: guix-git/doc/guix.texi:29773 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean nmi-watchdog?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29438 +#: guix-git/doc/guix.texi:29775 msgid "Enable Linux kernel NMI watchdog." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29443 +#: guix-git/doc/guix.texi:29780 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string phc-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29446 +#: guix-git/doc/guix.texi:29783 msgid "For Linux kernels with PHC patch applied, change CPU voltages. An example value would be @samp{\"F:V F:V F:V F:V\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29451 +#: guix-git/doc/guix.texi:29788 #, no-wrap msgid "{@code{tlp-configuration} parameter} string energy-perf-policy-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29454 +#: guix-git/doc/guix.texi:29791 msgid "Set CPU performance versus energy saving policy on AC@. Alternatives are performance, normal, powersave." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29456 guix-git/doc/guix.texi:29554 -#: guix-git/doc/guix.texi:29584 +#: guix-git/doc/guix.texi:29793 guix-git/doc/guix.texi:29891 +#: guix-git/doc/guix.texi:29949 msgid "Defaults to @samp{\"performance\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29459 +#: guix-git/doc/guix.texi:29796 #, no-wrap msgid "{@code{tlp-configuration} parameter} string energy-perf-policy-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29461 +#: guix-git/doc/guix.texi:29798 msgid "Same as @code{energy-perf-policy-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29463 guix-git/doc/guix.texi:29561 +#: guix-git/doc/guix.texi:29800 guix-git/doc/guix.texi:29898 msgid "Defaults to @samp{\"powersave\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29466 +#: guix-git/doc/guix.texi:29803 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disks-devices" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29468 +#: guix-git/doc/guix.texi:29805 msgid "Hard disk devices." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29471 +#: guix-git/doc/guix.texi:29808 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disk-apm-level-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29473 +#: guix-git/doc/guix.texi:29810 msgid "Hard disk advanced power management level." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29476 +#: guix-git/doc/guix.texi:29813 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disk-apm-level-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29478 +#: guix-git/doc/guix.texi:29815 msgid "Same as @code{disk-apm-bat} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29481 +#: guix-git/doc/guix.texi:29818 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-spindown-timeout-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29484 +#: guix-git/doc/guix.texi:29821 msgid "Hard disk spin down timeout. One value has to be specified for each declared hard disk." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29489 +#: guix-git/doc/guix.texi:29826 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-spindown-timeout-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29491 +#: guix-git/doc/guix.texi:29828 msgid "Same as @code{disk-spindown-timeout-on-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29496 +#: guix-git/doc/guix.texi:29833 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-iosched" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29500 +#: guix-git/doc/guix.texi:29837 msgid "Select IO scheduler for disk devices. One value has to be specified for each declared hard disk. Example alternatives are cfq, deadline and noop." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29505 +#: guix-git/doc/guix.texi:29842 #, no-wrap msgid "{@code{tlp-configuration} parameter} string sata-linkpwr-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29508 +#: guix-git/doc/guix.texi:29845 msgid "SATA aggressive link power management (ALPM) level. Alternatives are min_power, medium_power, max_performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29510 +#: guix-git/doc/guix.texi:29847 msgid "Defaults to @samp{\"max_performance\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29513 +#: guix-git/doc/guix.texi:29850 #, no-wrap msgid "{@code{tlp-configuration} parameter} string sata-linkpwr-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29515 +#: guix-git/doc/guix.texi:29852 msgid "Same as @code{sata-linkpwr-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29517 +#: guix-git/doc/guix.texi:29854 msgid "Defaults to @samp{\"min_power\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29520 +#: guix-git/doc/guix.texi:29857 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string sata-linkpwr-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29522 +#: guix-git/doc/guix.texi:29859 msgid "Exclude specified SATA host devices for link power management." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29527 +#: guix-git/doc/guix.texi:29864 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-on-off-boolean ahci-runtime-pm-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29530 +#: guix-git/doc/guix.texi:29867 msgid "Enable Runtime Power Management for AHCI controller and disks on AC mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29535 +#: guix-git/doc/guix.texi:29872 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-on-off-boolean ahci-runtime-pm-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29537 +#: guix-git/doc/guix.texi:29874 msgid "Same as @code{ahci-runtime-pm-on-ac} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29542 +#: guix-git/doc/guix.texi:29879 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer ahci-runtime-pm-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29544 +#: guix-git/doc/guix.texi:29881 msgid "Seconds of inactivity before disk is suspended." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29549 +#: guix-git/doc/guix.texi:29886 #, no-wrap msgid "{@code{tlp-configuration} parameter} string pcie-aspm-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29552 +#: guix-git/doc/guix.texi:29889 msgid "PCI Express Active State Power Management level. Alternatives are default, performance, powersave." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29557 +#: guix-git/doc/guix.texi:29894 #, no-wrap msgid "{@code{tlp-configuration} parameter} string pcie-aspm-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29559 +#: guix-git/doc/guix.texi:29896 msgid "Same as @code{pcie-aspm-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29564 +#: guix-git/doc/guix.texi:29901 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer start-charge-thresh-bat0" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29903 +msgid "Percentage when battery 0 should begin charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29908 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer stop-charge-thresh-bat0" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29910 +msgid "Percentage when battery 0 should stop charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29915 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer start-charge-thresh-bat1" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29917 +msgid "Percentage when battery 1 should begin charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29922 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer stop-charge-thresh-bat1" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29924 +msgid "Percentage when battery 1 should stop charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29929 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-power-profile-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29567 +#: guix-git/doc/guix.texi:29932 msgid "Radeon graphics clock speed level. Alternatives are low, mid, high, auto, default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29569 +#: guix-git/doc/guix.texi:29934 msgid "Defaults to @samp{\"high\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29572 +#: guix-git/doc/guix.texi:29937 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-power-profile-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29574 +#: guix-git/doc/guix.texi:29939 msgid "Same as @code{radeon-power-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29576 +#: guix-git/doc/guix.texi:29941 msgid "Defaults to @samp{\"low\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29579 +#: guix-git/doc/guix.texi:29944 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-state-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29582 +#: guix-git/doc/guix.texi:29947 msgid "Radeon dynamic power management method (DPM). Alternatives are battery, performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29587 +#: guix-git/doc/guix.texi:29952 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-state-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29589 +#: guix-git/doc/guix.texi:29954 msgid "Same as @code{radeon-dpm-state-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29591 +#: guix-git/doc/guix.texi:29956 msgid "Defaults to @samp{\"battery\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29594 +#: guix-git/doc/guix.texi:29959 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-perf-level-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29596 +#: guix-git/doc/guix.texi:29961 msgid "Radeon DPM performance level. Alternatives are auto, low, high." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29598 guix-git/doc/guix.texi:29605 -#: guix-git/doc/guix.texi:29679 +#: guix-git/doc/guix.texi:29963 guix-git/doc/guix.texi:29970 +#: guix-git/doc/guix.texi:30044 msgid "Defaults to @samp{\"auto\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29601 +#: guix-git/doc/guix.texi:29966 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-perf-level-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29603 +#: guix-git/doc/guix.texi:29968 msgid "Same as @code{radeon-dpm-perf-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29608 +#: guix-git/doc/guix.texi:29973 #, no-wrap msgid "{@code{tlp-configuration} parameter} on-off-boolean wifi-pwr-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29610 +#: guix-git/doc/guix.texi:29975 msgid "Wifi power saving mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29615 +#: guix-git/doc/guix.texi:29980 #, no-wrap msgid "{@code{tlp-configuration} parameter} on-off-boolean wifi-pwr-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29617 +#: guix-git/doc/guix.texi:29982 msgid "Same as @code{wifi-power-ac?} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29622 +#: guix-git/doc/guix.texi:29987 #, no-wrap msgid "{@code{tlp-configuration} parameter} y-n-boolean wol-disable?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29624 +#: guix-git/doc/guix.texi:29989 msgid "Disable wake on LAN." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29629 +#: guix-git/doc/guix.texi:29994 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer sound-power-save-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29632 +#: guix-git/doc/guix.texi:29997 msgid "Timeout duration in seconds before activating audio power saving on Intel HDA and AC97 devices. A value of 0 disables power saving." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29637 +#: guix-git/doc/guix.texi:30002 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer sound-power-save-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29639 +#: guix-git/doc/guix.texi:30004 msgid "Same as @code{sound-powersave-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29644 +#: guix-git/doc/guix.texi:30009 #, no-wrap msgid "{@code{tlp-configuration} parameter} y-n-boolean sound-power-save-controller?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29646 +#: guix-git/doc/guix.texi:30011 msgid "Disable controller in powersaving mode on Intel HDA devices." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29651 +#: guix-git/doc/guix.texi:30016 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean bay-poweroff-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29655 +#: guix-git/doc/guix.texi:30020 msgid "Enable optical drive in UltraBay/MediaBay on BAT mode. Drive can be powered on again by releasing (and reinserting) the eject lever or by pressing the disc eject button on newer models." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29660 +#: guix-git/doc/guix.texi:30025 #, no-wrap msgid "{@code{tlp-configuration} parameter} string bay-device" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29662 +#: guix-git/doc/guix.texi:30027 msgid "Name of the optical drive device to power off." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29664 +#: guix-git/doc/guix.texi:30029 msgid "Defaults to @samp{\"sr0\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29667 +#: guix-git/doc/guix.texi:30032 #, no-wrap msgid "{@code{tlp-configuration} parameter} string runtime-pm-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29670 +#: guix-git/doc/guix.texi:30035 msgid "Runtime Power Management for PCI(e) bus devices. Alternatives are on and auto." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29672 +#: guix-git/doc/guix.texi:30037 msgid "Defaults to @samp{\"on\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29675 +#: guix-git/doc/guix.texi:30040 #, no-wrap msgid "{@code{tlp-configuration} parameter} string runtime-pm-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29677 +#: guix-git/doc/guix.texi:30042 msgid "Same as @code{runtime-pm-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29682 +#: guix-git/doc/guix.texi:30047 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean runtime-pm-all?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29685 +#: guix-git/doc/guix.texi:30050 msgid "Runtime Power Management for all PCI(e) bus devices, except blacklisted ones." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29690 +#: guix-git/doc/guix.texi:30055 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list runtime-pm-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29692 +#: guix-git/doc/guix.texi:30057 msgid "Exclude specified PCI(e) device addresses from Runtime Power Management." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29697 +#: guix-git/doc/guix.texi:30062 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list runtime-pm-driver-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29700 +#: guix-git/doc/guix.texi:30065 msgid "Exclude PCI(e) devices assigned to the specified drivers from Runtime Power Management." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29703 +#: guix-git/doc/guix.texi:30068 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean usb-autosuspend?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29705 +#: guix-git/doc/guix.texi:30070 msgid "Enable USB autosuspend feature." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29710 +#: guix-git/doc/guix.texi:30075 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string usb-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29712 +#: guix-git/doc/guix.texi:30077 msgid "Exclude specified devices from USB autosuspend." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29717 +#: guix-git/doc/guix.texi:30082 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean usb-blacklist-wwan?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29719 +#: guix-git/doc/guix.texi:30084 msgid "Exclude WWAN devices from USB autosuspend." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29724 +#: guix-git/doc/guix.texi:30089 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string usb-whitelist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29727 +#: guix-git/doc/guix.texi:30092 msgid "Include specified devices into USB autosuspend, even if they are already excluded by the driver or via @code{usb-blacklist-wwan?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29732 +#: guix-git/doc/guix.texi:30097 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean usb-autosuspend-disable-on-shutdown?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29734 +#: guix-git/doc/guix.texi:30099 msgid "Enable USB autosuspend before shutdown." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29739 +#: guix-git/doc/guix.texi:30104 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean restore-device-state-on-startup?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29742 +#: guix-git/doc/guix.texi:30107 msgid "Restore radio device state (bluetooth, wifi, wwan) from previous shutdown on system startup." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29747 +#: guix-git/doc/guix.texi:30112 #, no-wrap msgid "thermald" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29748 +#: guix-git/doc/guix.texi:30113 #, no-wrap msgid "CPU frequency scaling with thermald" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29749 +#: guix-git/doc/guix.texi:30114 #, no-wrap msgid "Thermald daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29753 +#: guix-git/doc/guix.texi:30118 msgid "The @code{(gnu services pm)} module provides an interface to thermald, a CPU frequency scaling service which helps prevent overheating." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29754 +#: guix-git/doc/guix.texi:30119 #, no-wrap msgid "{Scheme Variable} thermald-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29759 +#: guix-git/doc/guix.texi:30124 msgid "This is the service type for @uref{https://01.org/linux-thermal-daemon/, thermald}, the Linux Thermal Daemon, which is responsible for controlling the thermal state of processors and preventing overheating." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29761 +#: guix-git/doc/guix.texi:30126 #, no-wrap msgid "{Data Type} thermald-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29763 +#: guix-git/doc/guix.texi:30128 msgid "Data type representing the configuration of @code{thermald-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29765 +#: guix-git/doc/guix.texi:30130 #, no-wrap msgid "@code{ignore-cpuid-check?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29767 +#: guix-git/doc/guix.texi:30132 msgid "Ignore cpuid check for supported CPU models." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29768 +#: guix-git/doc/guix.texi:30133 #, no-wrap msgid "@code{thermald} (default: @var{thermald})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29770 +#: guix-git/doc/guix.texi:30135 msgid "Package object of thermald." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29779 +#: guix-git/doc/guix.texi:30144 msgid "The @code{(gnu services audio)} module provides a service to start MPD (the Music Player Daemon)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29780 +#: guix-git/doc/guix.texi:30145 #, no-wrap msgid "mpd" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29781 +#: guix-git/doc/guix.texi:30146 #, no-wrap msgid "Music Player Daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29786 +#: guix-git/doc/guix.texi:30151 msgid "The Music Player Daemon (MPD) is a service that can play music while being controlled from the local machine or over the network by a variety of clients." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29789 +#: guix-git/doc/guix.texi:30154 msgid "The following example shows how one might run @code{mpd} as user @code{\"bob\"} on port @code{6666}. It uses pulseaudio for output." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29795 +#: guix-git/doc/guix.texi:30160 #, no-wrap msgid "" "(service mpd-service-type\n" @@ -53742,215 +54418,215 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29797 +#: guix-git/doc/guix.texi:30162 #, no-wrap msgid "{Scheme Variable} mpd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29799 +#: guix-git/doc/guix.texi:30164 msgid "The service type for @command{mpd}" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29801 +#: guix-git/doc/guix.texi:30166 #, no-wrap msgid "{Data Type} mpd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29803 +#: guix-git/doc/guix.texi:30168 msgid "Data type representing the configuration of @command{mpd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29805 +#: guix-git/doc/guix.texi:30170 #, no-wrap msgid "@code{user} (default: @code{\"mpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29807 +#: guix-git/doc/guix.texi:30172 msgid "The user to run mpd as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29808 +#: guix-git/doc/guix.texi:30173 #, no-wrap msgid "@code{music-dir} (default: @code{\"~/Music\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29810 +#: guix-git/doc/guix.texi:30175 msgid "The directory to scan for music files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29811 +#: guix-git/doc/guix.texi:30176 #, no-wrap msgid "@code{playlist-dir} (default: @code{\"~/.mpd/playlists\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29813 +#: guix-git/doc/guix.texi:30178 msgid "The directory to store playlists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29814 +#: guix-git/doc/guix.texi:30179 #, no-wrap msgid "@code{db-file} (default: @code{\"~/.mpd/tag_cache\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29816 +#: guix-git/doc/guix.texi:30181 msgid "The location of the music database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29817 +#: guix-git/doc/guix.texi:30182 #, no-wrap msgid "@code{state-file} (default: @code{\"~/.mpd/state\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29819 +#: guix-git/doc/guix.texi:30184 msgid "The location of the file that stores current MPD's state." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29820 +#: guix-git/doc/guix.texi:30185 #, no-wrap msgid "@code{sticker-file} (default: @code{\"~/.mpd/sticker.sql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29822 +#: guix-git/doc/guix.texi:30187 msgid "The location of the sticker database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29823 +#: guix-git/doc/guix.texi:30188 #, no-wrap msgid "@code{port} (default: @code{\"6600\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29825 +#: guix-git/doc/guix.texi:30190 msgid "The port to run mpd on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29826 +#: guix-git/doc/guix.texi:30191 #, no-wrap msgid "@code{address} (default: @code{\"any\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29829 +#: guix-git/doc/guix.texi:30194 msgid "The address that mpd will bind to. To use a Unix domain socket, an absolute path can be specified here." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29830 +#: guix-git/doc/guix.texi:30195 #, no-wrap msgid "@code{outputs} (default: @code{\"(list (mpd-output))\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29832 +#: guix-git/doc/guix.texi:30197 msgid "The audio outputs that MPD can use. By default this is a single output using pulseaudio." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29836 +#: guix-git/doc/guix.texi:30201 #, no-wrap msgid "{Data Type} mpd-output" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29838 +#: guix-git/doc/guix.texi:30203 msgid "Data type representing an @command{mpd} audio output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29840 +#: guix-git/doc/guix.texi:30205 #, no-wrap msgid "@code{name} (default: @code{\"MPD\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29842 +#: guix-git/doc/guix.texi:30207 msgid "The name of the audio output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29843 +#: guix-git/doc/guix.texi:30208 #, no-wrap msgid "@code{type} (default: @code{\"pulse\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29845 +#: guix-git/doc/guix.texi:30210 msgid "The type of audio output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29846 +#: guix-git/doc/guix.texi:30211 #, no-wrap msgid "@code{enabled?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29851 +#: guix-git/doc/guix.texi:30216 msgid "Specifies whether this audio output is enabled when MPD is started. By default, all audio outputs are enabled. This is just the default setting when there is no state file; with a state file, the previous state is restored." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29852 +#: guix-git/doc/guix.texi:30217 #, no-wrap msgid "@code{tags?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29856 +#: guix-git/doc/guix.texi:30221 msgid "If set to @code{#f}, then MPD will not send tags to this output. This is only useful for output plugins that can receive tags, for example the @code{httpd} output plugin." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29857 +#: guix-git/doc/guix.texi:30222 #, no-wrap msgid "@code{always-on?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29861 +#: guix-git/doc/guix.texi:30226 msgid "If set to @code{#t}, then MPD attempts to keep this audio output always open. This may be useful for streaming servers, when you don’t want to disconnect all listeners even when playback is accidentally stopped." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:29862 +#: guix-git/doc/guix.texi:30227 #, no-wrap msgid "mixer-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29868 +#: guix-git/doc/guix.texi:30233 msgid "This field accepts a symbol that specifies which mixer should be used for this audio output: the @code{hardware} mixer, the @code{software} mixer, the @code{null} mixer (allows setting the volume, but with no effect; this can be used as a trick to implement an external mixer External Mixer) or no mixer (@code{none})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29872 +#: guix-git/doc/guix.texi:30237 msgid "An association list of option symbols to string values to be appended to the audio output configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29878 +#: guix-git/doc/guix.texi:30243 msgid "The following example shows a configuration of @code{mpd} that provides an HTTP audio streaming output." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29890 +#: guix-git/doc/guix.texi:30255 #, no-wrap msgid "" "(service mpd-service-type\n" @@ -53966,34 +54642,34 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29899 +#: guix-git/doc/guix.texi:30264 msgid "The @code{(gnu services virtualization)} module provides services for the libvirt and virtlog daemons, as well as other virtualization-related services." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29900 +#: guix-git/doc/guix.texi:30265 #, no-wrap msgid "Libvirt daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29905 +#: guix-git/doc/guix.texi:30270 msgid "@code{libvirtd} is the server side daemon component of the libvirt virtualization management system. This daemon runs on host servers and performs required management tasks for virtualized guests." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29906 +#: guix-git/doc/guix.texi:30271 #, no-wrap msgid "{Scheme Variable} libvirt-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29909 +#: guix-git/doc/guix.texi:30274 msgid "This is the type of the @uref{https://libvirt.org, libvirt daemon}. Its value must be a @code{libvirt-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29915 +#: guix-git/doc/guix.texi:30280 #, no-wrap msgid "" "(service libvirt-service-type\n" @@ -54003,870 +54679,870 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29920 +#: guix-git/doc/guix.texi:30285 msgid "Available @code{libvirt-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29921 +#: guix-git/doc/guix.texi:30286 #, no-wrap msgid "{@code{libvirt-configuration} parameter} package libvirt" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29923 +#: guix-git/doc/guix.texi:30288 msgid "Libvirt package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29926 +#: guix-git/doc/guix.texi:30291 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean listen-tls?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29929 +#: guix-git/doc/guix.texi:30294 msgid "Flag listening for secure TLS connections on the public TCP/IP port. You must set @code{listen} for this to have any effect." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29932 +#: guix-git/doc/guix.texi:30297 msgid "It is necessary to setup a CA and issue server certificates before using this capability." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29937 +#: guix-git/doc/guix.texi:30302 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean listen-tcp?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29940 +#: guix-git/doc/guix.texi:30305 msgid "Listen for unencrypted TCP connections on the public TCP/IP port. You must set @code{listen} for this to have any effect." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29944 +#: guix-git/doc/guix.texi:30309 msgid "Using the TCP socket requires SASL authentication by default. Only SASL mechanisms which support data encryption are allowed. This is DIGEST_MD5 and GSSAPI (Kerberos5)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29949 +#: guix-git/doc/guix.texi:30314 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tls-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29952 +#: guix-git/doc/guix.texi:30317 msgid "Port for accepting secure TLS connections. This can be a port number, or service name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29954 +#: guix-git/doc/guix.texi:30319 msgid "Defaults to @samp{\"16514\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29957 +#: guix-git/doc/guix.texi:30322 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tcp-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29960 +#: guix-git/doc/guix.texi:30325 msgid "Port for accepting insecure TCP connections. This can be a port number, or service name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29962 +#: guix-git/doc/guix.texi:30327 msgid "Defaults to @samp{\"16509\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29965 +#: guix-git/doc/guix.texi:30330 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string listen-addr" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29967 +#: guix-git/doc/guix.texi:30332 msgid "IP address or hostname used for client connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29972 +#: guix-git/doc/guix.texi:30337 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean mdns-adv?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29974 +#: guix-git/doc/guix.texi:30339 msgid "Flag toggling mDNS advertisement of the libvirt service." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29977 +#: guix-git/doc/guix.texi:30342 msgid "Alternatively can disable for all services on a host by stopping the Avahi daemon." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29982 +#: guix-git/doc/guix.texi:30347 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string mdns-name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29985 +#: guix-git/doc/guix.texi:30350 msgid "Default mDNS advertisement name. This must be unique on the immediate broadcast network." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29987 +#: guix-git/doc/guix.texi:30352 msgid "Defaults to @samp{\"Virtualization Host \"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29990 +#: guix-git/doc/guix.texi:30355 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29994 +#: guix-git/doc/guix.texi:30359 msgid "UNIX domain socket group ownership. This can be used to allow a 'trusted' set of users access to management capabilities without becoming root." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29999 +#: guix-git/doc/guix.texi:30364 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-ro-perms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30002 +#: guix-git/doc/guix.texi:30367 msgid "UNIX socket permissions for the R/O socket. This is used for monitoring VM status only." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30004 guix-git/doc/guix.texi:30022 +#: guix-git/doc/guix.texi:30369 guix-git/doc/guix.texi:30387 msgid "Defaults to @samp{\"0777\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30007 +#: guix-git/doc/guix.texi:30372 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-rw-perms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30011 +#: guix-git/doc/guix.texi:30376 msgid "UNIX socket permissions for the R/W socket. Default allows only root. If PolicyKit is enabled on the socket, the default will change to allow everyone (eg, 0777)" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30013 +#: guix-git/doc/guix.texi:30378 msgid "Defaults to @samp{\"0770\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30016 +#: guix-git/doc/guix.texi:30381 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-admin-perms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30020 +#: guix-git/doc/guix.texi:30385 msgid "UNIX socket permissions for the admin socket. Default allows only owner (root), do not change it unless you are sure to whom you are exposing the access to." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30025 +#: guix-git/doc/guix.texi:30390 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30027 +#: guix-git/doc/guix.texi:30392 msgid "The directory in which sockets will be found/created." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30029 +#: guix-git/doc/guix.texi:30394 msgid "Defaults to @samp{\"/var/run/libvirt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30032 +#: guix-git/doc/guix.texi:30397 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-unix-ro" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30035 +#: guix-git/doc/guix.texi:30400 msgid "Authentication scheme for UNIX read-only sockets. By default socket permissions allow anyone to connect" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30037 guix-git/doc/guix.texi:30046 +#: guix-git/doc/guix.texi:30402 guix-git/doc/guix.texi:30411 msgid "Defaults to @samp{\"polkit\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30040 +#: guix-git/doc/guix.texi:30405 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-unix-rw" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30044 +#: guix-git/doc/guix.texi:30409 msgid "Authentication scheme for UNIX read-write sockets. By default socket permissions only allow root. If PolicyKit support was compiled into libvirt, the default will be to use 'polkit' auth." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30049 +#: guix-git/doc/guix.texi:30414 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-tcp" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30053 +#: guix-git/doc/guix.texi:30418 msgid "Authentication scheme for TCP sockets. If you don't enable SASL, then all TCP traffic is cleartext. Don't do this outside of a dev/test scenario." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30055 +#: guix-git/doc/guix.texi:30420 msgid "Defaults to @samp{\"sasl\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30058 +#: guix-git/doc/guix.texi:30423 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-tls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30062 +#: guix-git/doc/guix.texi:30427 msgid "Authentication scheme for TLS sockets. TLS sockets already have encryption provided by the TLS layer, and limited authentication is done by certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30065 +#: guix-git/doc/guix.texi:30430 msgid "It is possible to make use of any SASL authentication mechanism as well, by using 'sasl' for this option" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30067 +#: guix-git/doc/guix.texi:30432 msgid "Defaults to @samp{\"none\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30070 +#: guix-git/doc/guix.texi:30435 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list access-drivers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30072 +#: guix-git/doc/guix.texi:30437 msgid "API access control scheme." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30075 +#: guix-git/doc/guix.texi:30440 msgid "By default an authenticated user is allowed access to all APIs. Access drivers can place restrictions on this." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30080 +#: guix-git/doc/guix.texi:30445 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string key-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30083 +#: guix-git/doc/guix.texi:30448 msgid "Server key file path. If set to an empty string, then no private key is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30088 +#: guix-git/doc/guix.texi:30453 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string cert-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30091 +#: guix-git/doc/guix.texi:30456 msgid "Server key file path. If set to an empty string, then no certificate is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30096 +#: guix-git/doc/guix.texi:30461 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string ca-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30099 +#: guix-git/doc/guix.texi:30464 msgid "Server key file path. If set to an empty string, then no CA certificate is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30104 +#: guix-git/doc/guix.texi:30469 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string crl-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30107 +#: guix-git/doc/guix.texi:30472 msgid "Certificate revocation list path. If set to an empty string, then no CRL is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30112 +#: guix-git/doc/guix.texi:30477 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean tls-no-sanity-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30114 +#: guix-git/doc/guix.texi:30479 msgid "Disable verification of our own server certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30117 +#: guix-git/doc/guix.texi:30482 msgid "When libvirtd starts it performs some sanity checks against its own certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30122 +#: guix-git/doc/guix.texi:30487 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean tls-no-verify-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30124 +#: guix-git/doc/guix.texi:30489 msgid "Disable verification of client certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30128 +#: guix-git/doc/guix.texi:30493 msgid "Client certificate verification is the primary authentication mechanism. Any client which does not present a certificate signed by the CA will be rejected." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30133 +#: guix-git/doc/guix.texi:30498 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list tls-allowed-dn-list" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30135 +#: guix-git/doc/guix.texi:30500 msgid "Whitelist of allowed x509 Distinguished Name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30140 +#: guix-git/doc/guix.texi:30505 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list sasl-allowed-usernames" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30143 +#: guix-git/doc/guix.texi:30508 msgid "Whitelist of allowed SASL usernames. The format for username depends on the SASL authentication mechanism." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30148 +#: guix-git/doc/guix.texi:30513 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tls-priority" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30152 +#: guix-git/doc/guix.texi:30517 msgid "Override the compile time default TLS priority string. The default is usually @samp{\"NORMAL\"} unless overridden at build time. Only set this is it is desired for libvirt to deviate from the global default settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30154 +#: guix-git/doc/guix.texi:30519 msgid "Defaults to @samp{\"NORMAL\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30157 +#: guix-git/doc/guix.texi:30522 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30160 guix-git/doc/guix.texi:30584 +#: guix-git/doc/guix.texi:30525 guix-git/doc/guix.texi:30949 msgid "Maximum number of concurrent client connections to allow over all sockets combined." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30162 +#: guix-git/doc/guix.texi:30527 msgid "Defaults to @samp{5000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30165 +#: guix-git/doc/guix.texi:30530 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-queued-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30169 +#: guix-git/doc/guix.texi:30534 msgid "Maximum length of queue of connections waiting to be accepted by the daemon. Note, that some protocols supporting retransmission may obey this so that a later reattempt at connection succeeds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30174 +#: guix-git/doc/guix.texi:30539 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-anonymous-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30177 +#: guix-git/doc/guix.texi:30542 msgid "Maximum length of queue of accepted but not yet authenticated clients. Set this to zero to turn this feature off" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30179 guix-git/doc/guix.texi:30197 -#: guix-git/doc/guix.texi:30213 +#: guix-git/doc/guix.texi:30544 guix-git/doc/guix.texi:30562 +#: guix-git/doc/guix.texi:30578 msgid "Defaults to @samp{20}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30182 +#: guix-git/doc/guix.texi:30547 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer min-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30184 +#: guix-git/doc/guix.texi:30549 msgid "Number of workers to start up initially." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30189 +#: guix-git/doc/guix.texi:30554 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30191 +#: guix-git/doc/guix.texi:30556 msgid "Maximum number of worker threads." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30195 +#: guix-git/doc/guix.texi:30560 msgid "If the number of active clients exceeds @code{min-workers}, then more threads are spawned, up to max_workers limit. Typically you'd want max_workers to equal maximum number of clients allowed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30200 +#: guix-git/doc/guix.texi:30565 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer prio-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30204 +#: guix-git/doc/guix.texi:30569 msgid "Number of priority workers. If all workers from above pool are stuck, some calls marked as high priority (notably domainDestroy) can be executed in this pool." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30209 +#: guix-git/doc/guix.texi:30574 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-requests" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30211 +#: guix-git/doc/guix.texi:30576 msgid "Total global limit on concurrent RPC calls." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30216 +#: guix-git/doc/guix.texi:30581 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-client-requests" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30220 +#: guix-git/doc/guix.texi:30585 msgid "Limit on concurrent requests from a single client connection. To avoid one client monopolizing the server this should be a small fraction of the global max_requests and max_workers parameter." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30225 +#: guix-git/doc/guix.texi:30590 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-min-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30227 +#: guix-git/doc/guix.texi:30592 msgid "Same as @code{min-workers} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30232 +#: guix-git/doc/guix.texi:30597 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30234 +#: guix-git/doc/guix.texi:30599 msgid "Same as @code{max-workers} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30239 +#: guix-git/doc/guix.texi:30604 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30241 +#: guix-git/doc/guix.texi:30606 msgid "Same as @code{max-clients} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30246 +#: guix-git/doc/guix.texi:30611 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-queued-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30248 +#: guix-git/doc/guix.texi:30613 msgid "Same as @code{max-queued-clients} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30253 +#: guix-git/doc/guix.texi:30618 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-client-requests" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30255 +#: guix-git/doc/guix.texi:30620 msgid "Same as @code{max-client-requests} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30260 +#: guix-git/doc/guix.texi:30625 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30262 guix-git/doc/guix.texi:30486 +#: guix-git/doc/guix.texi:30627 guix-git/doc/guix.texi:30851 msgid "Logging level. 4 errors, 3 warnings, 2 information, 1 debug." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30267 +#: guix-git/doc/guix.texi:30632 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string log-filters" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30269 guix-git/doc/guix.texi:30493 +#: guix-git/doc/guix.texi:30634 guix-git/doc/guix.texi:30858 msgid "Logging filters." msgstr "로깅 필터:" #. type: deftypevr -#: guix-git/doc/guix.texi:30272 +#: guix-git/doc/guix.texi:30637 msgid "A filter allows to select a different logging level for a given category of logs. The format for a filter is one of:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30276 guix-git/doc/guix.texi:30500 +#: guix-git/doc/guix.texi:30641 guix-git/doc/guix.texi:30865 msgid "x:name" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30279 guix-git/doc/guix.texi:30503 +#: guix-git/doc/guix.texi:30644 guix-git/doc/guix.texi:30868 msgid "x:+name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30290 +#: guix-git/doc/guix.texi:30655 msgid "where @code{name} is a string which is matched against the category given in the @code{VIR_LOG_INIT()} at the top of each libvirt source file, e.g., @samp{\"remote\"}, @samp{\"qemu\"}, or @samp{\"util.json\"} (the name in the filter can be a substring of the full category name, in order to match multiple similar categories), the optional @samp{\"+\"} prefix tells libvirt to log stack trace for each message matching name, and @code{x} is the minimal level where matching messages should be logged:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30294 guix-git/doc/guix.texi:30339 -#: guix-git/doc/guix.texi:30517 guix-git/doc/guix.texi:30562 +#: guix-git/doc/guix.texi:30659 guix-git/doc/guix.texi:30704 +#: guix-git/doc/guix.texi:30882 guix-git/doc/guix.texi:30927 msgid "1: DEBUG" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30297 guix-git/doc/guix.texi:30342 -#: guix-git/doc/guix.texi:30520 guix-git/doc/guix.texi:30565 +#: guix-git/doc/guix.texi:30662 guix-git/doc/guix.texi:30707 +#: guix-git/doc/guix.texi:30885 guix-git/doc/guix.texi:30930 msgid "2: INFO" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30300 guix-git/doc/guix.texi:30345 -#: guix-git/doc/guix.texi:30523 guix-git/doc/guix.texi:30568 +#: guix-git/doc/guix.texi:30665 guix-git/doc/guix.texi:30710 +#: guix-git/doc/guix.texi:30888 guix-git/doc/guix.texi:30933 msgid "3: WARNING" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30303 guix-git/doc/guix.texi:30348 -#: guix-git/doc/guix.texi:30526 guix-git/doc/guix.texi:30571 +#: guix-git/doc/guix.texi:30668 guix-git/doc/guix.texi:30713 +#: guix-git/doc/guix.texi:30891 guix-git/doc/guix.texi:30936 msgid "4: ERROR" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30308 guix-git/doc/guix.texi:30531 +#: guix-git/doc/guix.texi:30673 guix-git/doc/guix.texi:30896 msgid "Multiple filters can be defined in a single filters statement, they just need to be separated by spaces." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30310 guix-git/doc/guix.texi:30533 +#: guix-git/doc/guix.texi:30675 guix-git/doc/guix.texi:30898 msgid "Defaults to @samp{\"3:remote 4:event\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30313 +#: guix-git/doc/guix.texi:30678 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string log-outputs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30315 guix-git/doc/guix.texi:30538 +#: guix-git/doc/guix.texi:30680 guix-git/doc/guix.texi:30903 msgid "Logging outputs." msgstr "로깅 출력." #. type: deftypevr -#: guix-git/doc/guix.texi:30318 +#: guix-git/doc/guix.texi:30683 msgid "An output is one of the places to save logging information. The format for an output can be:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30320 guix-git/doc/guix.texi:30543 +#: guix-git/doc/guix.texi:30685 guix-git/doc/guix.texi:30908 #, no-wrap msgid "x:stderr" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30322 guix-git/doc/guix.texi:30545 +#: guix-git/doc/guix.texi:30687 guix-git/doc/guix.texi:30910 msgid "output goes to stderr" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30323 guix-git/doc/guix.texi:30546 +#: guix-git/doc/guix.texi:30688 guix-git/doc/guix.texi:30911 #, no-wrap msgid "x:syslog:name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30325 guix-git/doc/guix.texi:30548 +#: guix-git/doc/guix.texi:30690 guix-git/doc/guix.texi:30913 msgid "use syslog for the output and use the given name as the ident" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30326 guix-git/doc/guix.texi:30549 +#: guix-git/doc/guix.texi:30691 guix-git/doc/guix.texi:30914 #, no-wrap msgid "x:file:file_path" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30328 guix-git/doc/guix.texi:30551 +#: guix-git/doc/guix.texi:30693 guix-git/doc/guix.texi:30916 msgid "output to a file, with the given filepath" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30329 guix-git/doc/guix.texi:30552 +#: guix-git/doc/guix.texi:30694 guix-git/doc/guix.texi:30917 #, no-wrap msgid "x:journald" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30331 guix-git/doc/guix.texi:30554 +#: guix-git/doc/guix.texi:30696 guix-git/doc/guix.texi:30919 msgid "output to journald logging system" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30335 guix-git/doc/guix.texi:30558 +#: guix-git/doc/guix.texi:30700 guix-git/doc/guix.texi:30923 msgid "In all case the x prefix is the minimal level, acting as a filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30353 guix-git/doc/guix.texi:30576 +#: guix-git/doc/guix.texi:30718 guix-git/doc/guix.texi:30941 msgid "Multiple outputs can be defined, they just need to be separated by spaces." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30355 guix-git/doc/guix.texi:30578 +#: guix-git/doc/guix.texi:30720 guix-git/doc/guix.texi:30943 msgid "Defaults to @samp{\"3:stderr\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30358 +#: guix-git/doc/guix.texi:30723 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer audit-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30360 +#: guix-git/doc/guix.texi:30725 msgid "Allows usage of the auditing subsystem to be altered" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30364 +#: guix-git/doc/guix.texi:30729 msgid "0: disable all auditing" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30367 +#: guix-git/doc/guix.texi:30732 msgid "1: enable auditing, only if enabled on host" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30370 +#: guix-git/doc/guix.texi:30735 msgid "2: enable auditing, and exit if disabled on host." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30377 +#: guix-git/doc/guix.texi:30742 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean audit-logging" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30379 +#: guix-git/doc/guix.texi:30744 msgid "Send audit messages via libvirt logging infrastructure." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30384 +#: guix-git/doc/guix.texi:30749 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-string host-uuid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30386 +#: guix-git/doc/guix.texi:30751 msgid "Host UUID@. UUID must not have all digits be the same." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30391 +#: guix-git/doc/guix.texi:30756 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string host-uuid-source" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30393 +#: guix-git/doc/guix.texi:30758 msgid "Source to read host UUID." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30397 +#: guix-git/doc/guix.texi:30762 msgid "@code{smbios}: fetch the UUID from @code{dmidecode -s system-uuid}" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30400 +#: guix-git/doc/guix.texi:30765 msgid "@code{machine-id}: fetch the UUID from @code{/etc/machine-id}" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30405 +#: guix-git/doc/guix.texi:30770 msgid "If @code{dmidecode} does not provide a valid UUID a temporary UUID will be generated." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30407 +#: guix-git/doc/guix.texi:30772 msgid "Defaults to @samp{\"smbios\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30410 +#: guix-git/doc/guix.texi:30775 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer keepalive-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30415 +#: guix-git/doc/guix.texi:30780 msgid "A keepalive message is sent to a client after @code{keepalive_interval} seconds of inactivity to check if the client is still responding. If set to -1, libvirtd will never send keepalive requests; however clients can still send them and the daemon will send responses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30420 +#: guix-git/doc/guix.texi:30785 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer keepalive-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30424 +#: guix-git/doc/guix.texi:30789 msgid "Maximum number of keepalive messages that are allowed to be sent to the client without getting any response before the connection is considered broken." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30431 +#: guix-git/doc/guix.texi:30796 msgid "In other words, the connection is automatically closed approximately after @code{keepalive_interval * (keepalive_count + 1)} seconds since the last message received from the client. When @code{keepalive-count} is set to 0, connections will be automatically closed after @code{keepalive-interval} seconds of inactivity without sending any keepalive messages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30436 +#: guix-git/doc/guix.texi:30801 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-keepalive-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30438 guix-git/doc/guix.texi:30445 +#: guix-git/doc/guix.texi:30803 guix-git/doc/guix.texi:30810 msgid "Same as above but for admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30443 +#: guix-git/doc/guix.texi:30808 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-keepalive-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30450 +#: guix-git/doc/guix.texi:30815 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer ovs-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30452 +#: guix-git/doc/guix.texi:30817 msgid "Timeout for Open vSwitch calls." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30456 +#: guix-git/doc/guix.texi:30821 msgid "The @code{ovs-vsctl} utility is used for the configuration and its timeout option is set by default to 5 seconds to avoid potential infinite waits blocking libvirt." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30463 +#: guix-git/doc/guix.texi:30828 #, no-wrap msgid "Virtlog daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30466 +#: guix-git/doc/guix.texi:30831 msgid "The virtlogd service is a server side daemon component of libvirt that is used to manage logs from virtual machine consoles." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30472 +#: guix-git/doc/guix.texi:30837 msgid "This daemon is not used directly by libvirt client applications, rather it is called on their behalf by @code{libvirtd}. By maintaining the logs in a standalone daemon, the main @code{libvirtd} daemon can be restarted without risk of losing logs. The @code{virtlogd} daemon has the ability to re-exec() itself upon receiving @code{SIGUSR1}, to allow live upgrades without downtime." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30473 +#: guix-git/doc/guix.texi:30838 #, no-wrap msgid "{Scheme Variable} virtlog-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30476 +#: guix-git/doc/guix.texi:30841 msgid "This is the type of the virtlog daemon. Its value must be a @code{virtlog-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30481 +#: guix-git/doc/guix.texi:30846 #, no-wrap msgid "" "(service virtlog-service-type\n" @@ -54875,122 +55551,122 @@ msgid "" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30484 +#: guix-git/doc/guix.texi:30849 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30491 +#: guix-git/doc/guix.texi:30856 #, no-wrap msgid "{@code{virtlog-configuration} parameter} string log-filters" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30496 +#: guix-git/doc/guix.texi:30861 msgid "A filter allows to select a different logging level for a given category of logs The format for a filter is one of:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30513 +#: guix-git/doc/guix.texi:30878 msgid "where @code{name} is a string which is matched against the category given in the @code{VIR_LOG_INIT()} at the top of each libvirt source file, e.g., \"remote\", \"qemu\", or \"util.json\" (the name in the filter can be a substring of the full category name, in order to match multiple similar categories), the optional \"+\" prefix tells libvirt to log stack trace for each message matching name, and @code{x} is the minimal level where matching messages should be logged:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30536 +#: guix-git/doc/guix.texi:30901 #, no-wrap msgid "{@code{virtlog-configuration} parameter} string log-outputs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30541 +#: guix-git/doc/guix.texi:30906 msgid "An output is one of the places to save logging information The format for an output can be:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30581 +#: guix-git/doc/guix.texi:30946 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30586 +#: guix-git/doc/guix.texi:30951 msgid "Defaults to @samp{1024}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30589 +#: guix-git/doc/guix.texi:30954 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30591 +#: guix-git/doc/guix.texi:30956 msgid "Maximum file size before rolling over." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30593 +#: guix-git/doc/guix.texi:30958 msgid "Defaults to @samp{2MB}" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30596 +#: guix-git/doc/guix.texi:30961 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-backups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30598 +#: guix-git/doc/guix.texi:30963 msgid "Maximum number of backup files to keep." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30600 +#: guix-git/doc/guix.texi:30965 msgid "Defaults to @samp{3}" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:30604 +#: guix-git/doc/guix.texi:30969 msgid "transparent-emulation-qemu" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30604 +#: guix-git/doc/guix.texi:30969 #, no-wrap msgid "Transparent Emulation with QEMU" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30606 guix-git/doc/guix.texi:30686 +#: guix-git/doc/guix.texi:30971 guix-git/doc/guix.texi:31051 #, no-wrap msgid "emulation" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:30607 +#: guix-git/doc/guix.texi:30972 #, no-wrap msgid "binfmt_misc" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30615 +#: guix-git/doc/guix.texi:30980 msgid "@code{qemu-binfmt-service-type} provides support for transparent emulation of program binaries built for different architectures---e.g., it allows you to transparently execute an ARMv7 program on an x86_64 machine. It achieves this by combining the @uref{https://www.qemu.org, QEMU} emulator and the @code{binfmt_misc} feature of the kernel Linux. This feature only allows you to emulate GNU/Linux on a different architecture, but see below for GNU/Hurd support." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30616 +#: guix-git/doc/guix.texi:30981 #, no-wrap msgid "{Scheme Variable} qemu-binfmt-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30621 +#: guix-git/doc/guix.texi:30986 msgid "This is the type of the QEMU/binfmt service for transparent emulation. Its value must be a @code{qemu-binfmt-configuration} object, which specifies the QEMU package to use as well as the architecture we want to emulated:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30626 +#: guix-git/doc/guix.texi:30991 #, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -54999,39 +55675,39 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30632 +#: guix-git/doc/guix.texi:30997 msgid "In this example, we enable transparent emulation for the ARM and aarch64 platforms. Running @code{herd stop qemu-binfmt} turns it off, and running @code{herd start qemu-binfmt} turns it back on (@pxref{Invoking herd, the @command{herd} command,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30634 +#: guix-git/doc/guix.texi:30999 #, no-wrap msgid "{Data Type} qemu-binfmt-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30636 +#: guix-git/doc/guix.texi:31001 msgid "This is the configuration for the @code{qemu-binfmt} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30638 +#: guix-git/doc/guix.texi:31003 #, no-wrap msgid "@code{platforms} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30641 +#: guix-git/doc/guix.texi:31006 msgid "The list of emulated QEMU platforms. Each item must be a @dfn{platform object} as returned by @code{lookup-qemu-platforms} (see below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30644 +#: guix-git/doc/guix.texi:31009 msgid "For example, let's suppose you're on an x86_64 machine and you have this service:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30649 +#: guix-git/doc/guix.texi:31014 #, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -55043,79 +55719,79 @@ msgstr "" "(platforms (lookup-qemu-platforms \"arm\"))\n" #. type: table -#: guix-git/doc/guix.texi:30652 +#: guix-git/doc/guix.texi:31017 msgid "You can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30655 +#: guix-git/doc/guix.texi:31020 #, no-wrap msgid "guix build -s armhf-linux inkscape\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30662 +#: guix-git/doc/guix.texi:31027 msgid "and it will build Inkscape for ARMv7 @emph{as if it were a native build}, transparently using QEMU to emulate the ARMv7 CPU@. Pretty handy if you'd like to test a package build for an architecture you don't have access to!" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30663 +#: guix-git/doc/guix.texi:31028 #, no-wrap msgid "@code{qemu} (default: @code{qemu})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30665 guix-git/doc/guix.texi:30723 -#: guix-git/doc/guix.texi:30805 +#: guix-git/doc/guix.texi:31030 guix-git/doc/guix.texi:31088 +#: guix-git/doc/guix.texi:31170 msgid "The QEMU package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30668 +#: guix-git/doc/guix.texi:31033 #, no-wrap msgid "{Scheme Procedure} lookup-qemu-platforms @var{platforms}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30673 +#: guix-git/doc/guix.texi:31038 msgid "Return the list of QEMU platform objects corresponding to @var{platforms}@dots{}. @var{platforms} must be a list of strings corresponding to platform names, such as @code{\"arm\"}, @code{\"sparc\"}, @code{\"mips64el\"}, and so on." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30675 +#: guix-git/doc/guix.texi:31040 #, no-wrap msgid "{Scheme Procedure} qemu-platform? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30677 +#: guix-git/doc/guix.texi:31042 msgid "Return true if @var{obj} is a platform object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30679 +#: guix-git/doc/guix.texi:31044 #, no-wrap msgid "{Scheme Procedure} qemu-platform-name @var{platform}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30681 +#: guix-git/doc/guix.texi:31046 msgid "Return the name of @var{platform}---a string such as @code{\"arm\"}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30684 +#: guix-git/doc/guix.texi:31049 #, no-wrap msgid "QEMU Guest Agent" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30692 +#: guix-git/doc/guix.texi:31057 msgid "The QEMU guest agent provides control over the emulated system to the host. The @code{qemu-guest-agent} service runs the agent on Guix guests. To control the agent from the host, open a socket by invoking QEMU with the following arguments:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30699 +#: guix-git/doc/guix.texi:31064 #, no-wrap msgid "" "qemu-system-x86_64 \\\n" @@ -55126,12 +55802,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30703 +#: guix-git/doc/guix.texi:31068 msgid "This creates a socket at @file{/tmp/qga.sock} on the host. Once the guest agent is running, you can issue commands with @code{socat}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30708 +#: guix-git/doc/guix.texi:31073 #, no-wrap msgid "" "$ guix shell socat -- socat unix-connect:/tmp/qga.sock stdio\n" @@ -55140,75 +55816,75 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30712 +#: guix-git/doc/guix.texi:31077 msgid "See @url{https://wiki.qemu.org/Features/GuestAgent,QEMU guest agent documentation} for more options and commands." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30713 +#: guix-git/doc/guix.texi:31078 #, no-wrap msgid "{Scheme Variable} qemu-guest-agent-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30715 +#: guix-git/doc/guix.texi:31080 msgid "Service type for the QEMU guest agent service." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30717 +#: guix-git/doc/guix.texi:31082 #, fuzzy, no-wrap msgid "{Data Type} qemu-guest-agent-configuration" msgstr "설정" #. type: deftp -#: guix-git/doc/guix.texi:30719 +#: guix-git/doc/guix.texi:31084 #, fuzzy msgid "Configuration for the @code{qemu-guest-agent} service." msgstr "운영체제 설정 관리." #. type: item -#: guix-git/doc/guix.texi:30721 guix-git/doc/guix.texi:30803 +#: guix-git/doc/guix.texi:31086 guix-git/doc/guix.texi:31168 #, no-wrap msgid "@code{qemu} (default: @code{qemu-minimal})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30724 +#: guix-git/doc/guix.texi:31089 #, no-wrap msgid "@code{device} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30727 +#: guix-git/doc/guix.texi:31092 msgid "File name of the device or socket the agent uses to communicate with the host. If empty, QEMU uses a default file name." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30731 +#: guix-git/doc/guix.texi:31096 #, no-wrap msgid "The Hurd in a Virtual Machine" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30734 +#: guix-git/doc/guix.texi:31099 #, no-wrap msgid "the Hurd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30735 +#: guix-git/doc/guix.texi:31100 #, no-wrap msgid "childhurd" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30743 +#: guix-git/doc/guix.texi:31108 msgid "Service @code{hurd-vm} provides support for running GNU/Hurd in a virtual machine (VM), a so-called @dfn{childhurd}. This service is meant to be used on GNU/Linux and the given GNU/Hurd operating system configuration is cross-compiled. The virtual machine is a Shepherd service that can be referred to by the names @code{hurd-vm} and @code{childhurd} and be controlled with commands such as:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30747 +#: guix-git/doc/guix.texi:31112 #, no-wrap msgid "" "herd start hurd-vm\n" @@ -55216,50 +55892,50 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30751 +#: guix-git/doc/guix.texi:31116 msgid "When the service is running, you can view its console by connecting to it with a VNC client, for example with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30754 +#: guix-git/doc/guix.texi:31119 #, no-wrap msgid "guix shell tigervnc-client -- vncviewer localhost:5900\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30760 +#: guix-git/doc/guix.texi:31125 msgid "The default configuration (see @code{hurd-vm-configuration} below) spawns a secure shell (SSH) server in your GNU/Hurd system, which QEMU (the virtual machine emulator) redirects to port 10222 on the host. Thus, you can connect over SSH to the childhurd with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30763 +#: guix-git/doc/guix.texi:31128 #, no-wrap msgid "ssh root@@localhost -p 10022\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30772 +#: guix-git/doc/guix.texi:31137 msgid "The childhurd is volatile and stateless: it starts with a fresh root file system every time you restart it. By default though, all the files under @file{/etc/childhurd} on the host are copied as is to the root file system of the childhurd when it boots. This allows you to initialize ``secrets'' inside the VM: SSH host keys, authorized substitute keys, and so on---see the explanation of @code{secret-root} below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30773 +#: guix-git/doc/guix.texi:31138 #, no-wrap msgid "{Scheme Variable} hurd-vm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30779 +#: guix-git/doc/guix.texi:31144 msgid "This is the type of the Hurd in a Virtual Machine service. Its value must be a @code{hurd-vm-configuration} object, which specifies the operating system (@pxref{operating-system Reference}) and the disk size for the Hurd Virtual Machine, the QEMU package to use as well as the options for running it." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30781 +#: guix-git/doc/guix.texi:31146 msgid "For example:" msgstr "예를 들면:" #. type: lisp -#: guix-git/doc/guix.texi:30787 +#: guix-git/doc/guix.texi:31152 #, no-wrap msgid "" "(service hurd-vm-service-type\n" @@ -55269,99 +55945,99 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30791 +#: guix-git/doc/guix.texi:31156 msgid "would create a disk image big enough to build GNU@tie{}Hello, with some extra memory." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30793 +#: guix-git/doc/guix.texi:31158 #, no-wrap msgid "{Data Type} hurd-vm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30796 +#: guix-git/doc/guix.texi:31161 msgid "The data type representing the configuration for @code{hurd-vm-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30798 +#: guix-git/doc/guix.texi:31163 #, no-wrap msgid "@code{os} (default: @var{%hurd-vm-operating-system})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30802 +#: guix-git/doc/guix.texi:31167 msgid "The operating system to instantiate. This default is bare-bones with a permissive OpenSSH secure shell daemon listening on port 2222 (@pxref{Networking Services, @code{openssh-service-type}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30806 +#: guix-git/doc/guix.texi:31171 #, no-wrap msgid "@code{image} (default: @var{hurd-vm-disk-image})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30809 +#: guix-git/doc/guix.texi:31174 msgid "The procedure used to build the disk-image built from this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30810 +#: guix-git/doc/guix.texi:31175 #, no-wrap msgid "@code{disk-size} (default: @code{'guess})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30812 +#: guix-git/doc/guix.texi:31177 msgid "The size of the disk image." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30813 +#: guix-git/doc/guix.texi:31178 #, no-wrap msgid "@code{memory-size} (default: @code{512})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30815 +#: guix-git/doc/guix.texi:31180 msgid "The memory size of the Virtual Machine in mebibytes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30816 +#: guix-git/doc/guix.texi:31181 #, no-wrap msgid "@code{options} (default: @code{'(\"--snapshot\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30818 +#: guix-git/doc/guix.texi:31183 msgid "The extra options for running QEMU." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30823 +#: guix-git/doc/guix.texi:31188 msgid "If set, a non-zero positive integer used to parameterize Childhurd instances. It is appended to the service's name, e.g. @code{childhurd1}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30824 +#: guix-git/doc/guix.texi:31189 #, no-wrap msgid "@code{net-options} (default: @var{hurd-vm-net-options})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30826 +#: guix-git/doc/guix.texi:31191 msgid "The procedure used to produce the list of QEMU networking options." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30828 +#: guix-git/doc/guix.texi:31193 msgid "By default, it produces" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30836 +#: guix-git/doc/guix.texi:31201 #, no-wrap msgid "" "'(\"--device\" \"rtl8139,netdev=net0\"\n" @@ -55373,12 +56049,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30839 +#: guix-git/doc/guix.texi:31204 msgid "with forwarded ports:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30844 +#: guix-git/doc/guix.texi:31209 #, no-wrap msgid "" "@var{secrets-port}: @code{(+ 11004 (* 1000 @var{ID}))}\n" @@ -55387,28 +56063,28 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30846 +#: guix-git/doc/guix.texi:31211 #, no-wrap msgid "@code{secret-root} (default: @file{/etc/childhurd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30851 +#: guix-git/doc/guix.texi:31216 msgid "The root directory with out-of-band secrets to be installed into the childhurd once it runs. Childhurds are volatile which means that on every startup, secrets such as the SSH host keys and Guix signing key are recreated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30855 +#: guix-git/doc/guix.texi:31220 msgid "If the @file{/etc/childhurd} directory does not exist, the @code{secret-service} running in the Childhurd will be sent an empty list of secrets." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30858 +#: guix-git/doc/guix.texi:31223 msgid "By default, the service automatically populates @file{/etc/childhurd} with the following non-volatile secrets, unless they already exist:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30867 +#: guix-git/doc/guix.texi:31232 #, no-wrap msgid "" "/etc/childhurd/etc/guix/acl\n" @@ -55421,34 +56097,34 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30871 +#: guix-git/doc/guix.texi:31236 msgid "These files are automatically sent to the guest Hurd VM when it boots, including permissions." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30872 +#: guix-git/doc/guix.texi:31237 #, no-wrap msgid "childhurd, offloading" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30873 +#: guix-git/doc/guix.texi:31238 #, no-wrap msgid "Hurd, offloading" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30877 +#: guix-git/doc/guix.texi:31242 msgid "Having these files in place means that only a couple of things are missing to allow the host to offload @code{i586-gnu} builds to the childhurd:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:30882 +#: guix-git/doc/guix.texi:31247 msgid "Authorizing the childhurd's key on the host so that the host accepts build results coming from the childhurd, which can be done like so:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30886 +#: guix-git/doc/guix.texi:31251 #, no-wrap msgid "" "guix archive --authorize < \\\n" @@ -55456,22 +56132,22 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:30891 +#: guix-git/doc/guix.texi:31256 msgid "Adding the childhurd to @file{/etc/guix/machines.scm} (@pxref{Daemon Offload Setup})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30895 +#: guix-git/doc/guix.texi:31260 msgid "We're working towards making that happen automatically---get in touch with us at @email{guix-devel@@gnu.org} to discuss it!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30902 +#: guix-git/doc/guix.texi:31267 msgid "Note that by default the VM image is volatile, i.e., once stopped the contents are lost. If you want a stateful image instead, override the configuration's @code{image} and @code{options} without the @code{--snapshot} flag using something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30908 +#: guix-git/doc/guix.texi:31273 #, no-wrap msgid "" "(service hurd-vm-service-type\n" @@ -55481,34 +56157,34 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30910 +#: guix-git/doc/guix.texi:31275 #, no-wrap msgid "Ganeti" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30912 +#: guix-git/doc/guix.texi:31277 #, no-wrap msgid "ganeti" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:30919 +#: guix-git/doc/guix.texi:31284 msgid "This service is considered experimental. Configuration options may be changed in a backwards-incompatible manner, and not all features have been thorougly tested. Users of this service are encouraged to share their experience at @email{guix-devel@@gnu.org}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30929 +#: guix-git/doc/guix.texi:31294 msgid "Ganeti is a virtual machine management system. It is designed to keep virtual machines running on a cluster of servers even in the event of hardware failures, and to make maintenance and recovery tasks easy. It consists of multiple services which are described later in this section. In addition to the Ganeti service, you will need the OpenSSH service (@pxref{Networking Services, @code{openssh-service-type}}), and update the @file{/etc/hosts} file (@pxref{operating-system Reference, @code{hosts-file}}) with the cluster name and address (or use a DNS server)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30934 +#: guix-git/doc/guix.texi:31299 msgid "All nodes participating in a Ganeti cluster should have the same Ganeti and @file{/etc/hosts} configuration. Here is an example configuration for a Ganeti cluster node that supports multiple storage backends, and installs the @code{debootstrap} and @code{guix} @dfn{OS providers}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30944 +#: guix-git/doc/guix.texi:31309 #, no-wrap msgid "" "(use-package-modules virtualization)\n" @@ -55523,7 +56199,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30949 +#: guix-git/doc/guix.texi:31314 #, no-wrap msgid "" "192.168.1.200 ganeti.example.com\n" @@ -55534,7 +56210,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30970 +#: guix-git/doc/guix.texi:31335 #, no-wrap msgid "" " ;; Install QEMU so we can use KVM-based instances, and LVM, DRBD and Ceph\n" @@ -55561,7 +56237,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30975 +#: guix-git/doc/guix.texi:31340 #, no-wrap msgid "" " ;; Ganeti uses SSH to communicate between nodes.\n" @@ -55572,7 +56248,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30985 +#: guix-git/doc/guix.texi:31350 #, no-wrap msgid "" " (service ganeti-service-type\n" @@ -55587,120 +56263,120 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30993 +#: guix-git/doc/guix.texi:31358 msgid "Users are advised to read the @url{http://docs.ganeti.org/ganeti/master/html/admin.html,Ganeti administrators guide} to learn about the various cluster options and day-to-day operations. There is also a @url{https://guix.gnu.org/blog/2020/running-a-ganeti-cluster-on-guix/,blog post} describing how to configure and initialize a small cluster." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30994 +#: guix-git/doc/guix.texi:31359 #, no-wrap msgid "{Scheme Variable} ganeti-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30997 +#: guix-git/doc/guix.texi:31362 msgid "This is a service type that includes all the various services that Ganeti nodes should run." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31002 +#: guix-git/doc/guix.texi:31367 msgid "Its value is a @code{ganeti-configuration} object that defines the package to use for CLI operations, as well as configuration for the various daemons. Allowed file storage paths and available guest operating systems are also configured through this data type." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31004 +#: guix-git/doc/guix.texi:31369 #, no-wrap msgid "{Data Type} ganeti-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31006 +#: guix-git/doc/guix.texi:31371 msgid "The @code{ganeti} service takes the following configuration options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31008 guix-git/doc/guix.texi:31236 -#: guix-git/doc/guix.texi:31286 guix-git/doc/guix.texi:31316 -#: guix-git/doc/guix.texi:31343 guix-git/doc/guix.texi:31375 -#: guix-git/doc/guix.texi:31428 guix-git/doc/guix.texi:31448 -#: guix-git/doc/guix.texi:31474 guix-git/doc/guix.texi:31507 -#: guix-git/doc/guix.texi:31547 +#: guix-git/doc/guix.texi:31373 guix-git/doc/guix.texi:31601 +#: guix-git/doc/guix.texi:31651 guix-git/doc/guix.texi:31681 +#: guix-git/doc/guix.texi:31708 guix-git/doc/guix.texi:31740 +#: guix-git/doc/guix.texi:31793 guix-git/doc/guix.texi:31813 +#: guix-git/doc/guix.texi:31839 guix-git/doc/guix.texi:31872 +#: guix-git/doc/guix.texi:31912 #, no-wrap msgid "@code{ganeti} (default: @code{ganeti})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31013 +#: guix-git/doc/guix.texi:31378 msgid "The @code{ganeti} package to use. It will be installed to the system profile and make @command{gnt-cluster}, @command{gnt-instance}, etc available. Note that the value specified here does not affect the other services as each refer to a specific @code{ganeti} package (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31014 +#: guix-git/doc/guix.texi:31379 #, no-wrap msgid "@code{noded-configuration} (default: @code{(ganeti-noded-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31015 +#: guix-git/doc/guix.texi:31380 #, no-wrap msgid "@code{confd-configuration} (default: @code{(ganeti-confd-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31016 +#: guix-git/doc/guix.texi:31381 #, no-wrap msgid "@code{wconfd-configuration} (default: @code{(ganeti-wconfd-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31017 +#: guix-git/doc/guix.texi:31382 #, no-wrap msgid "@code{luxid-configuration} (default: @code{(ganeti-luxid-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31018 +#: guix-git/doc/guix.texi:31383 #, no-wrap msgid "@code{rapi-configuration} (default: @code{(ganeti-rapi-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31019 +#: guix-git/doc/guix.texi:31384 #, no-wrap msgid "@code{kvmd-configuration} (default: @code{(ganeti-kvmd-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31020 +#: guix-git/doc/guix.texi:31385 #, no-wrap msgid "@code{mond-configuration} (default: @code{(ganeti-mond-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31021 +#: guix-git/doc/guix.texi:31386 #, no-wrap msgid "@code{metad-configuration} (default: @code{(ganeti-metad-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31022 +#: guix-git/doc/guix.texi:31387 #, no-wrap msgid "@code{watcher-configuration} (default: @code{(ganeti-watcher-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31023 +#: guix-git/doc/guix.texi:31388 #, no-wrap msgid "@code{cleaner-configuration} (default: @code{(ganeti-cleaner-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31028 +#: guix-git/doc/guix.texi:31393 msgid "These options control the various daemons and cron jobs that are distributed with Ganeti. The possible values for these are described in detail below. To override a setting, you must use the configuration type for that service:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31038 +#: guix-git/doc/guix.texi:31403 #, no-wrap msgid "" "(service ganeti-service-type\n" @@ -55714,34 +56390,34 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31040 +#: guix-git/doc/guix.texi:31405 #, no-wrap msgid "@code{file-storage-paths} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31042 +#: guix-git/doc/guix.texi:31407 msgid "List of allowed directories for file storage backend." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31043 +#: guix-git/doc/guix.texi:31408 #, no-wrap msgid "@code{os} (default: @code{%default-ganeti-os})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31045 +#: guix-git/doc/guix.texi:31410 msgid "List of @code{} records." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31049 +#: guix-git/doc/guix.texi:31414 msgid "In essence @code{ganeti-service-type} is shorthand for declaring each service individually:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31060 +#: guix-git/doc/guix.texi:31425 #, no-wrap msgid "" "(service ganeti-noded-service-type)\n" @@ -55756,297 +56432,297 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31064 +#: guix-git/doc/guix.texi:31429 msgid "Plus a service extension for @code{etc-service-type} that configures the file storage backend and OS variants." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31067 +#: guix-git/doc/guix.texi:31432 #, no-wrap msgid "{Data Type} ganeti-os" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31070 +#: guix-git/doc/guix.texi:31435 msgid "This data type is suitable for passing to the @code{os} parameter of @code{ganeti-configuration}. It takes the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31076 +#: guix-git/doc/guix.texi:31441 msgid "The name for this OS provider. It is only used to specify where the configuration ends up. Setting it to ``debootstrap'' will create @file{/etc/ganeti/instance-debootstrap}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:31077 +#: guix-git/doc/guix.texi:31442 #, no-wrap msgid "extension" msgstr "확장" #. type: table -#: guix-git/doc/guix.texi:31080 +#: guix-git/doc/guix.texi:31445 msgid "The file extension for variants of this OS type. For example @file{.conf} or @file{.scm}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31081 +#: guix-git/doc/guix.texi:31446 #, no-wrap msgid "@code{variants} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31083 +#: guix-git/doc/guix.texi:31448 msgid "List of @code{ganeti-os-variant} objects for this OS." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31087 +#: guix-git/doc/guix.texi:31452 #, no-wrap msgid "{Data Type} ganeti-os-variant" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31090 +#: guix-git/doc/guix.texi:31455 msgid "This is the data type for a Ganeti OS variant. It takes the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31094 +#: guix-git/doc/guix.texi:31459 msgid "The name of this variant." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:31095 +#: guix-git/doc/guix.texi:31460 #, no-wrap msgid "configuration" msgstr "설정" #. type: table -#: guix-git/doc/guix.texi:31097 +#: guix-git/doc/guix.texi:31462 msgid "A configuration file for this variant." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31100 +#: guix-git/doc/guix.texi:31465 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-hooks" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31102 +#: guix-git/doc/guix.texi:31467 msgid "This variable contains hooks to configure networking and the GRUB bootloader." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31104 +#: guix-git/doc/guix.texi:31469 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-extra-pkgs" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31106 +#: guix-git/doc/guix.texi:31471 msgid "This variable contains a list of packages suitable for a fully-virtualized guest." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31108 +#: guix-git/doc/guix.texi:31473 #, no-wrap msgid "{Data Type} debootstrap-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31111 +#: guix-git/doc/guix.texi:31476 msgid "This data type creates configuration files suitable for the debootstrap OS provider." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31113 +#: guix-git/doc/guix.texi:31478 #, no-wrap msgid "@code{hooks} (default: @code{%default-debootstrap-hooks})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31117 +#: guix-git/doc/guix.texi:31482 msgid "When not @code{#f}, this must be a G-expression that specifies a directory with scripts that will run when the OS is installed. It can also be a list of @code{(name . file-like)} pairs. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31120 +#: guix-git/doc/guix.texi:31485 #, no-wrap msgid "`((99-hello-world . ,(plain-file \"#!/bin/sh\\necho Hello, World\")))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31125 +#: guix-git/doc/guix.texi:31490 msgid "That will create a directory with one executable named @code{99-hello-world} and run it every time this variant is installed. If set to @code{#f}, hooks in @file{/etc/ganeti/instance-debootstrap/hooks} will be used, if any." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31125 +#: guix-git/doc/guix.texi:31490 #, no-wrap msgid "@code{proxy} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31127 +#: guix-git/doc/guix.texi:31492 msgid "Optional HTTP proxy to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31127 +#: guix-git/doc/guix.texi:31492 guix-git/doc/guix.texi:33685 #, no-wrap msgid "@code{mirror} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31130 +#: guix-git/doc/guix.texi:31495 msgid "The Debian mirror. Typically something like @code{http://ftp.no.debian.org/debian}. The default varies depending on the distribution." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31130 +#: guix-git/doc/guix.texi:31495 #, no-wrap msgid "@code{arch} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31133 +#: guix-git/doc/guix.texi:31498 msgid "The dpkg architecture. Set to @code{armhf} to debootstrap an ARMv7 instance on an AArch64 host. Default is to use the current system architecture." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31133 +#: guix-git/doc/guix.texi:31498 #, no-wrap msgid "@code{suite} (default: @code{\"stable\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31136 +#: guix-git/doc/guix.texi:31501 msgid "When set, this must be a Debian distribution ``suite'' such as @code{buster} or @code{focal}. If set to @code{#f}, the default for the OS provider is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31136 +#: guix-git/doc/guix.texi:31501 #, no-wrap msgid "@code{extra-pkgs} (default: @code{%default-debootstrap-extra-pkgs})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31139 +#: guix-git/doc/guix.texi:31504 msgid "List of extra packages that will get installed by dpkg in addition to the minimal system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31139 +#: guix-git/doc/guix.texi:31504 #, no-wrap msgid "@code{components} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31142 +#: guix-git/doc/guix.texi:31507 msgid "When set, must be a list of Debian repository ``components''. For example @code{'(\"main\" \"contrib\")}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31142 +#: guix-git/doc/guix.texi:31507 #, no-wrap msgid "@code{generate-cache?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31144 +#: guix-git/doc/guix.texi:31509 msgid "Whether to automatically cache the generated debootstrap archive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31144 +#: guix-git/doc/guix.texi:31509 #, no-wrap msgid "@code{clean-cache} (default: @code{14})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31147 +#: guix-git/doc/guix.texi:31512 msgid "Discard the cache after this amount of days. Use @code{#f} to never clear the cache." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31147 +#: guix-git/doc/guix.texi:31512 #, no-wrap msgid "@code{partition-style} (default: @code{'msdos})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31150 +#: guix-git/doc/guix.texi:31515 msgid "The type of partition to create. When set, it must be one of @code{'msdos}, @code{'none} or a string." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31150 +#: guix-git/doc/guix.texi:31515 #, no-wrap msgid "@code{partition-alignment} (default: @code{2048})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31152 +#: guix-git/doc/guix.texi:31517 msgid "Alignment of the partition in sectors." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31155 +#: guix-git/doc/guix.texi:31520 #, no-wrap msgid "{Scheme Procedure} debootstrap-variant @var{name} @var{configuration}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31158 +#: guix-git/doc/guix.texi:31523 msgid "This is a helper procedure that creates a @code{ganeti-os-variant} record. It takes two parameters: a name and a @code{debootstrap-configuration} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31160 +#: guix-git/doc/guix.texi:31525 #, no-wrap msgid "{Scheme Procedure} debootstrap-os @var{variants}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31163 +#: guix-git/doc/guix.texi:31528 msgid "This is a helper procedure that creates a @code{ganeti-os} record. It takes a list of variants created with @code{debootstrap-variant}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31165 +#: guix-git/doc/guix.texi:31530 #, no-wrap msgid "{Scheme Procedure} guix-variant @var{name} @var{configuration}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31170 +#: guix-git/doc/guix.texi:31535 msgid "This is a helper procedure that creates a @code{ganeti-os-variant} record for use with the Guix OS provider. It takes a name and a G-expression that returns a ``file-like'' (@pxref{G-Expressions, file-like objects}) object containing a Guix System configuration." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31172 +#: guix-git/doc/guix.texi:31537 #, no-wrap msgid "{Scheme Procedure} guix-os @var{variants}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31175 +#: guix-git/doc/guix.texi:31540 msgid "This is a helper procedure that creates a @code{ganeti-os} record. It takes a list of variants produced by @code{guix-variant}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31177 +#: guix-git/doc/guix.texi:31542 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-variants" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31181 +#: guix-git/doc/guix.texi:31546 msgid "This is a convenience variable to make the debootstrap provider work ``out of the box'' without users having to declare variants manually. It contains a single debootstrap variant with the default configuration:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31186 +#: guix-git/doc/guix.texi:31551 #, no-wrap msgid "" "(list (debootstrap-variant\n" @@ -56055,18 +56731,18 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31189 +#: guix-git/doc/guix.texi:31554 #, no-wrap msgid "{Scheme Variable} %default-guix-variants" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31193 +#: guix-git/doc/guix.texi:31558 msgid "This is a convenience variable to make the Guix OS provider work without additional configuration. It creates a virtual machine that has an SSH server, a serial console, and authorizes the Ganeti hosts SSH keys." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31199 +#: guix-git/doc/guix.texi:31564 #, no-wrap msgid "" "(list (guix-variant\n" @@ -56076,12 +56752,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31205 +#: guix-git/doc/guix.texi:31570 msgid "Users can implement support for OS providers unbeknownst to Guix by extending the @code{ganeti-os} and @code{ganeti-os-variant} records appropriately. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31214 +#: guix-git/doc/guix.texi:31579 #, no-wrap msgid "" "(ganeti-os\n" @@ -56094,727 +56770,727 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31219 +#: guix-git/doc/guix.texi:31584 msgid "That creates @file{/etc/ganeti/instance-custom/variants/foo.conf} which points to a file in the store with contents @code{this is fine}. It also creates @file{/etc/ganeti/instance-custom/variants/variants.list} with contents @code{foo}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31222 +#: guix-git/doc/guix.texi:31587 msgid "Obviously this may not work for all OS providers out there. If you find the interface limiting, please reach out to @email{guix-devel@@gnu.org}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31225 +#: guix-git/doc/guix.texi:31590 msgid "The rest of this section documents the various services that are included by @code{ganeti-service-type}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31226 +#: guix-git/doc/guix.texi:31591 #, no-wrap msgid "{Scheme Variable} ganeti-noded-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31230 +#: guix-git/doc/guix.texi:31595 msgid "@command{ganeti-noded} is the daemon responsible for node-specific functions within the Ganeti system. The value of this service must be a @code{ganeti-noded-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31232 +#: guix-git/doc/guix.texi:31597 #, no-wrap msgid "{Data Type} ganeti-noded-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31234 +#: guix-git/doc/guix.texi:31599 msgid "This is the configuration for the @code{ganeti-noded} service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31238 guix-git/doc/guix.texi:31288 -#: guix-git/doc/guix.texi:31318 guix-git/doc/guix.texi:31345 -#: guix-git/doc/guix.texi:31377 guix-git/doc/guix.texi:31430 -#: guix-git/doc/guix.texi:31450 guix-git/doc/guix.texi:31476 -#: guix-git/doc/guix.texi:31509 +#: guix-git/doc/guix.texi:31603 guix-git/doc/guix.texi:31653 +#: guix-git/doc/guix.texi:31683 guix-git/doc/guix.texi:31710 +#: guix-git/doc/guix.texi:31742 guix-git/doc/guix.texi:31795 +#: guix-git/doc/guix.texi:31815 guix-git/doc/guix.texi:31841 +#: guix-git/doc/guix.texi:31874 msgid "The @code{ganeti} package to use for this service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31239 +#: guix-git/doc/guix.texi:31604 #, no-wrap msgid "@code{port} (default: @code{1811})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31241 +#: guix-git/doc/guix.texi:31606 msgid "The TCP port on which the node daemon listens for network requests." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31242 guix-git/doc/guix.texi:31292 -#: guix-git/doc/guix.texi:31384 guix-git/doc/guix.texi:31454 +#: guix-git/doc/guix.texi:31607 guix-git/doc/guix.texi:31657 +#: guix-git/doc/guix.texi:31749 guix-git/doc/guix.texi:31819 #, no-wrap msgid "@code{address} (default: @code{\"0.0.0.0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31245 +#: guix-git/doc/guix.texi:31610 msgid "The network address that the daemon will bind to. The default address means bind to all available addresses." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31249 +#: guix-git/doc/guix.texi:31614 msgid "When this is set, it must be a specific network interface (e.g.@: @code{eth0}) that the daemon will bind to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31250 guix-git/doc/guix.texi:31392 +#: guix-git/doc/guix.texi:31615 guix-git/doc/guix.texi:31757 #, no-wrap msgid "@code{max-clients} (default: @code{20})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31254 +#: guix-git/doc/guix.texi:31619 msgid "This sets a limit on the maximum number of simultaneous client connections that the daemon will handle. Connections above this count are accepted, but no responses will be sent until enough connections have closed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31255 guix-git/doc/guix.texi:31397 +#: guix-git/doc/guix.texi:31620 guix-git/doc/guix.texi:31762 #, no-wrap msgid "@code{ssl?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31259 +#: guix-git/doc/guix.texi:31624 msgid "Whether to use SSL/TLS to encrypt network communications. The certificate is automatically provisioned by the cluster and can be rotated with @command{gnt-cluster renew-crypto}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31260 guix-git/doc/guix.texi:31400 +#: guix-git/doc/guix.texi:31625 guix-git/doc/guix.texi:31765 #, no-wrap msgid "@code{ssl-key} (default: @file{\"/var/lib/ganeti/server.pem\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31262 guix-git/doc/guix.texi:31402 +#: guix-git/doc/guix.texi:31627 guix-git/doc/guix.texi:31767 msgid "This can be used to provide a specific encryption key for TLS communications." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31263 guix-git/doc/guix.texi:31403 +#: guix-git/doc/guix.texi:31628 guix-git/doc/guix.texi:31768 #, no-wrap msgid "@code{ssl-cert} (default: @file{\"/var/lib/ganeti/server.pem\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31265 guix-git/doc/guix.texi:31405 +#: guix-git/doc/guix.texi:31630 guix-git/doc/guix.texi:31770 msgid "This can be used to provide a specific certificate for TLS communications." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31269 guix-git/doc/guix.texi:31409 +#: guix-git/doc/guix.texi:31634 guix-git/doc/guix.texi:31774 msgid "When true, the daemon performs additional logging for debugging purposes. Note that this will leak encryption details to the log files, use with caution." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31273 +#: guix-git/doc/guix.texi:31638 #, no-wrap msgid "{Scheme Variable} ganeti-confd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31279 +#: guix-git/doc/guix.texi:31644 msgid "@command{ganeti-confd} answers queries related to the configuration of a Ganeti cluster. The purpose of this daemon is to have a highly available and fast way to query cluster configuration values. It is automatically active on all @dfn{master candidates}. The value of this service must be a @code{ganeti-confd-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31282 +#: guix-git/doc/guix.texi:31647 #, no-wrap msgid "{Data Type} ganeti-confd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31284 +#: guix-git/doc/guix.texi:31649 msgid "This is the configuration for the @code{ganeti-confd} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31289 +#: guix-git/doc/guix.texi:31654 #, no-wrap msgid "@code{port} (default: @code{1814})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31291 +#: guix-git/doc/guix.texi:31656 msgid "The UDP port on which to listen for network requests." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31294 +#: guix-git/doc/guix.texi:31659 msgid "Network address that the daemon will bind to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31297 guix-git/doc/guix.texi:31326 -#: guix-git/doc/guix.texi:31353 guix-git/doc/guix.texi:31433 -#: guix-git/doc/guix.texi:31460 guix-git/doc/guix.texi:31486 +#: guix-git/doc/guix.texi:31662 guix-git/doc/guix.texi:31691 +#: guix-git/doc/guix.texi:31718 guix-git/doc/guix.texi:31798 +#: guix-git/doc/guix.texi:31825 guix-git/doc/guix.texi:31851 msgid "When true, the daemon performs additional logging for debugging purposes." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31301 +#: guix-git/doc/guix.texi:31666 #, no-wrap msgid "{Scheme Variable} ganeti-wconfd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31307 +#: guix-git/doc/guix.texi:31672 msgid "@command{ganeti-wconfd} is the daemon that has authoritative knowledge about the cluster configuration and is the only entity that can accept changes to it. All jobs that need to modify the configuration will do so by sending appropriate requests to this daemon. It only runs on the @dfn{master node} and will automatically disable itself on other nodes." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31310 +#: guix-git/doc/guix.texi:31675 msgid "The value of this service must be a @code{ganeti-wconfd-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31312 +#: guix-git/doc/guix.texi:31677 #, no-wrap msgid "{Data Type} ganeti-wconfd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31314 +#: guix-git/doc/guix.texi:31679 msgid "This is the configuration for the @code{ganeti-wconfd} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31319 guix-git/doc/guix.texi:31346 +#: guix-git/doc/guix.texi:31684 guix-git/doc/guix.texi:31711 #, no-wrap msgid "@code{no-voting?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31323 +#: guix-git/doc/guix.texi:31688 msgid "The daemon will refuse to start if the majority of cluster nodes does not agree that it is running on the master node. Set to @code{#t} to start even if a quorum can not be reached (dangerous, use with caution)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31330 +#: guix-git/doc/guix.texi:31695 #, no-wrap msgid "{Scheme Variable} ganeti-luxid-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31335 +#: guix-git/doc/guix.texi:31700 msgid "@command{ganeti-luxid} is a daemon used to answer queries related to the configuration and the current live state of a Ganeti cluster. Additionally, it is the authoritative daemon for the Ganeti job queue. Jobs can be submitted via this daemon and it schedules and starts them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31337 +#: guix-git/doc/guix.texi:31702 msgid "It takes a @code{ganeti-luxid-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31339 +#: guix-git/doc/guix.texi:31704 #, no-wrap msgid "{Data Type} ganeti-luxid-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31341 +#: guix-git/doc/guix.texi:31706 #, fuzzy msgid "This is the configuration for the @code{ganeti-luxid} service." msgstr "운영체제 설정 관리." #. type: table -#: guix-git/doc/guix.texi:31350 +#: guix-git/doc/guix.texi:31715 msgid "The daemon will refuse to start if it cannot verify that the majority of cluster nodes believes that it is running on the master node. Set to @code{#t} to ignore such checks and start anyway (this can be dangerous)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31357 +#: guix-git/doc/guix.texi:31722 #, no-wrap msgid "{Scheme Variable} ganeti-rapi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31361 +#: guix-git/doc/guix.texi:31726 msgid "@command{ganeti-rapi} provides a remote API for Ganeti clusters. It runs on the master node and can be used to perform cluster actions programmatically via a JSON-based RPC protocol." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31367 +#: guix-git/doc/guix.texi:31732 msgid "Most query operations are allowed without authentication (unless @var{require-authentication?} is set), whereas write operations require explicit authorization via the @file{/var/lib/ganeti/rapi/users} file. See the @url{http://docs.ganeti.org/ganeti/master/html/rapi.html, Ganeti Remote API documentation} for more information." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31369 +#: guix-git/doc/guix.texi:31734 msgid "The value of this service must be a @code{ganeti-rapi-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31371 +#: guix-git/doc/guix.texi:31736 #, no-wrap msgid "{Data Type} ganeti-rapi-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31373 +#: guix-git/doc/guix.texi:31738 msgid "This is the configuration for the @code{ganeti-rapi} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31378 +#: guix-git/doc/guix.texi:31743 #, no-wrap msgid "@code{require-authentication?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31380 +#: guix-git/doc/guix.texi:31745 msgid "Whether to require authentication even for read-only operations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31381 +#: guix-git/doc/guix.texi:31746 #, no-wrap msgid "@code{port} (default: @code{5080})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31383 +#: guix-git/doc/guix.texi:31748 msgid "The TCP port on which to listen to API requests." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31387 +#: guix-git/doc/guix.texi:31752 msgid "The network address that the service will bind to. By default it listens on all configured addresses." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31391 +#: guix-git/doc/guix.texi:31756 msgid "When set, it must specify a specific network interface such as @code{eth0} that the daemon will bind to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31396 +#: guix-git/doc/guix.texi:31761 msgid "The maximum number of simultaneous client requests to handle. Further connections are allowed, but no responses are sent until enough connections have closed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31399 +#: guix-git/doc/guix.texi:31764 msgid "Whether to use SSL/TLS encryption on the RAPI port." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31413 +#: guix-git/doc/guix.texi:31778 #, no-wrap msgid "{Scheme Variable} ganeti-kvmd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31421 +#: guix-git/doc/guix.texi:31786 msgid "@command{ganeti-kvmd} is responsible for determining whether a given KVM instance was shut down by an administrator or a user. Normally Ganeti will restart an instance that was not stopped through Ganeti itself. If the cluster option @code{user_shutdown} is true, this daemon monitors the @code{QMP} socket provided by QEMU and listens for shutdown events, and marks the instance as @dfn{USER_down} instead of @dfn{ERROR_down} when it shuts down gracefully by itself." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31423 +#: guix-git/doc/guix.texi:31788 msgid "It takes a @code{ganeti-kvmd-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31425 +#: guix-git/doc/guix.texi:31790 #, no-wrap msgid "{Data Type} ganeti-kvmd-configuration" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31437 +#: guix-git/doc/guix.texi:31802 #, no-wrap msgid "{Scheme Variable} ganeti-mond-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31441 +#: guix-git/doc/guix.texi:31806 msgid "@command{ganeti-mond} is an optional daemon that provides Ganeti monitoring functionality. It is responsible for running data collectors and publish the collected information through a HTTP interface." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31443 +#: guix-git/doc/guix.texi:31808 msgid "It takes a @code{ganeti-mond-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31445 +#: guix-git/doc/guix.texi:31810 #, no-wrap msgid "{Data Type} ganeti-mond-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31451 +#: guix-git/doc/guix.texi:31816 #, no-wrap msgid "@code{port} (default: @code{1815})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31453 guix-git/doc/guix.texi:31479 +#: guix-git/doc/guix.texi:31818 guix-git/doc/guix.texi:31844 msgid "The port on which the daemon will listen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31457 +#: guix-git/doc/guix.texi:31822 msgid "The network address that the daemon will bind to. By default it binds to all available interfaces." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31464 +#: guix-git/doc/guix.texi:31829 #, no-wrap msgid "{Scheme Variable} ganeti-metad-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31467 +#: guix-git/doc/guix.texi:31832 msgid "@command{ganeti-metad} is an optional daemon that can be used to provide information about the cluster to instances or OS install scripts." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31469 +#: guix-git/doc/guix.texi:31834 msgid "It takes a @code{ganeti-metad-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31471 +#: guix-git/doc/guix.texi:31836 #, no-wrap msgid "{Data Type} ganeti-metad-configuration" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31483 +#: guix-git/doc/guix.texi:31848 msgid "If set, the daemon will bind to this address only. If left unset, the behavior depends on the cluster configuration." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31490 +#: guix-git/doc/guix.texi:31855 #, no-wrap msgid "{Scheme Variable} ganeti-watcher-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31498 +#: guix-git/doc/guix.texi:31863 msgid "@command{ganeti-watcher} is a script designed to run periodically and ensure the health of a cluster. It will automatically restart instances that have stopped without Ganeti's consent, and repairs DRBD links in case a node has rebooted. It also archives old cluster jobs and restarts Ganeti daemons that are not running. If the cluster parameter @code{ensure_node_health} is set, the watcher will also shutdown instances and DRBD devices if the node it is running on is declared offline by known master candidates." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31500 +#: guix-git/doc/guix.texi:31865 msgid "It can be paused on all nodes with @command{gnt-cluster watcher pause}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31502 +#: guix-git/doc/guix.texi:31867 msgid "The service takes a @code{ganeti-watcher-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31504 +#: guix-git/doc/guix.texi:31869 #, no-wrap msgid "{Data Type} ganeti-watcher-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31510 +#: guix-git/doc/guix.texi:31875 #, no-wrap msgid "@code{schedule} (default: @code{'(next-second-from (next-minute (range 0 60 5)))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31512 +#: guix-git/doc/guix.texi:31877 msgid "How often to run the script. The default is every five minutes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31513 +#: guix-git/doc/guix.texi:31878 #, no-wrap msgid "@code{rapi-ip} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31516 +#: guix-git/doc/guix.texi:31881 msgid "This option needs to be specified only if the RAPI daemon is configured to use a particular interface or address. By default the cluster address is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31517 +#: guix-git/doc/guix.texi:31882 #, no-wrap msgid "@code{job-age} (default: @code{(* 6 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31520 +#: guix-git/doc/guix.texi:31885 msgid "Archive cluster jobs older than this age, specified in seconds. The default is 6 hours. This keeps @command{gnt-job list} manageable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31521 +#: guix-git/doc/guix.texi:31886 #, no-wrap msgid "@code{verify-disks?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31525 +#: guix-git/doc/guix.texi:31890 msgid "If this is @code{#f}, the watcher will not try to repair broken DRBD links automatically. Administrators will need to use @command{gnt-cluster verify-disks} manually instead." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31528 +#: guix-git/doc/guix.texi:31893 msgid "When @code{#t}, the script performs additional logging for debugging purposes." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31532 +#: guix-git/doc/guix.texi:31897 #, no-wrap msgid "{Scheme Variable} ganeti-cleaner-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31540 +#: guix-git/doc/guix.texi:31905 msgid "@command{ganeti-cleaner} is a script designed to run periodically and remove old files from the cluster. This service type controls two @dfn{cron jobs}: one intended for the master node that permanently purges old cluster jobs, and one intended for every node that removes expired X509 certificates, keys, and outdated @command{ganeti-watcher} information. Like all Ganeti services, it is safe to include even on non-master nodes as it will disable itself as necessary." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31542 +#: guix-git/doc/guix.texi:31907 msgid "It takes a @code{ganeti-cleaner-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31544 +#: guix-git/doc/guix.texi:31909 #, no-wrap msgid "{Data Type} ganeti-cleaner-configuration" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31549 +#: guix-git/doc/guix.texi:31914 msgid "The @code{ganeti} package to use for the @command{gnt-cleaner} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31550 +#: guix-git/doc/guix.texi:31915 #, no-wrap msgid "@code{master-schedule} (default: @code{\"45 1 * * *\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31553 +#: guix-git/doc/guix.texi:31918 msgid "How often to run the master cleaning job. The default is once per day, at 01:45:00." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31554 +#: guix-git/doc/guix.texi:31919 #, no-wrap msgid "@code{node-schedule} (default: @code{\"45 2 * * *\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31557 +#: guix-git/doc/guix.texi:31922 msgid "How often to run the node cleaning job. The default is once per day, at 02:45:00." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31571 +#: guix-git/doc/guix.texi:31936 msgid "The @code{(gnu services version-control)} module provides a service to allow remote access to local Git repositories. There are three options: the @code{git-daemon-service}, which provides access to repositories via the @code{git://} unsecured TCP-based protocol, extending the @code{nginx} web server to proxy some requests to @code{git-http-backend}, or providing a web interface with @code{cgit-service-type}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31572 +#: guix-git/doc/guix.texi:31937 #, no-wrap msgid "{Scheme Procedure} git-daemon-service [#:config (git-daemon-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31576 +#: guix-git/doc/guix.texi:31941 msgid "Return a service that runs @command{git daemon}, a simple TCP server to expose repositories over the Git protocol for anonymous access." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31582 +#: guix-git/doc/guix.texi:31947 msgid "The optional @var{config} argument should be a @code{} object, by default it allows read-only access to exported@footnote{By creating the magic file @file{git-daemon-export-ok} in the repository directory.} repositories under @file{/srv/git}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31585 +#: guix-git/doc/guix.texi:31950 #, no-wrap msgid "{Data Type} git-daemon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31587 +#: guix-git/doc/guix.texi:31952 msgid "Data type representing the configuration for @code{git-daemon-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31589 +#: guix-git/doc/guix.texi:31954 #, no-wrap msgid "@code{package} (default: @code{git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31591 guix-git/doc/guix.texi:31651 +#: guix-git/doc/guix.texi:31956 guix-git/doc/guix.texi:32016 msgid "Package object of the Git distributed version control system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31592 guix-git/doc/guix.texi:31655 +#: guix-git/doc/guix.texi:31957 guix-git/doc/guix.texi:32020 #, no-wrap msgid "@code{export-all?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31595 +#: guix-git/doc/guix.texi:31960 msgid "Whether to allow access for all Git repositories, even if they do not have the @file{git-daemon-export-ok} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31596 +#: guix-git/doc/guix.texi:31961 #, no-wrap msgid "@code{base-path} (default: @file{/srv/git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31602 +#: guix-git/doc/guix.texi:31967 msgid "Whether to remap all the path requests as relative to the given path. If you run @command{git daemon} with @code{(base-path \"/srv/git\")} on @samp{example.com}, then if you later try to pull @indicateurl{git://example.com/hello.git}, git daemon will interpret the path as @file{/srv/git/hello.git}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31603 +#: guix-git/doc/guix.texi:31968 #, no-wrap msgid "@code{user-path} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31611 +#: guix-git/doc/guix.texi:31976 msgid "Whether to allow @code{~user} notation to be used in requests. When specified with empty string, requests to @indicateurl{git://host/~alice/foo} is taken as a request to access @code{foo} repository in the home directory of user @code{alice}. If @code{(user-path \"@var{path}\")} is specified, the same request is taken as a request to access @file{@var{path}/foo} repository in the home directory of user @code{alice}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31612 +#: guix-git/doc/guix.texi:31977 #, no-wrap msgid "@code{listen} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31615 +#: guix-git/doc/guix.texi:31980 msgid "Whether to listen on specific IP addresses or hostnames, defaults to all." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31616 +#: guix-git/doc/guix.texi:31981 #, no-wrap msgid "@code{port} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31618 +#: guix-git/doc/guix.texi:31983 msgid "Whether to listen on an alternative port, which defaults to 9418." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31619 +#: guix-git/doc/guix.texi:31984 #, no-wrap msgid "@code{whitelist} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31621 +#: guix-git/doc/guix.texi:31986 msgid "If not empty, only allow access to this list of directories." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31625 +#: guix-git/doc/guix.texi:31990 msgid "Extra options will be passed to @command{git daemon}, please run @command{man git-daemon} for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31639 +#: guix-git/doc/guix.texi:32004 msgid "The @code{git://} protocol lacks authentication. When you pull from a repository fetched via @code{git://}, you don't know whether the data you receive was modified or is even coming from the specified host, and your connection is subject to eavesdropping. It's better to use an authenticated and encrypted transport, such as @code{https}. Although Git allows you to serve repositories using unsophisticated file-based web servers, there is a faster protocol implemented by the @code{git-http-backend} program. This program is the back-end of a proper Git web service. It is designed to sit behind a FastCGI proxy. @xref{Web Services}, for more on running the necessary @code{fcgiwrap} daemon." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31642 +#: guix-git/doc/guix.texi:32007 msgid "Guix has a separate configuration data type for serving Git repositories over HTTP." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31643 +#: guix-git/doc/guix.texi:32008 #, no-wrap msgid "{Data Type} git-http-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31647 +#: guix-git/doc/guix.texi:32012 msgid "Data type representing the configuration for a future @code{git-http-service-type}; can currently be used to configure Nginx through @code{git-http-nginx-location-configuration}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31649 +#: guix-git/doc/guix.texi:32014 #, no-wrap msgid "@code{package} (default: @var{git})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31652 +#: guix-git/doc/guix.texi:32017 #, no-wrap msgid "@code{git-root} (default: @file{/srv/git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31654 +#: guix-git/doc/guix.texi:32019 msgid "Directory containing the Git repositories to expose to the world." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31658 +#: guix-git/doc/guix.texi:32023 msgid "Whether to expose access for all Git repositories in @var{git-root}, even if they do not have the @file{git-daemon-export-ok} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31659 +#: guix-git/doc/guix.texi:32024 #, no-wrap msgid "@code{uri-path} (default: @samp{/git/})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31664 +#: guix-git/doc/guix.texi:32029 msgid "Path prefix for Git access. With the default @samp{/git/} prefix, this will map @indicateurl{http://@var{server}/git/@var{repo}.git} to @file{/srv/git/@var{repo}.git}. Requests whose URI paths do not begin with this prefix are not passed on to this Git instance." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31665 +#: guix-git/doc/guix.texi:32030 #, no-wrap msgid "@code{fcgiwrap-socket} (default: @code{127.0.0.1:9000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31668 +#: guix-git/doc/guix.texi:32033 msgid "The socket on which the @code{fcgiwrap} daemon is listening. @xref{Web Services}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31675 +#: guix-git/doc/guix.texi:32040 msgid "There is no @code{git-http-service-type}, currently; instead you can create an @code{nginx-location-configuration} from a @code{git-http-configuration} and then add that location to a web server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31676 +#: guix-git/doc/guix.texi:32041 #, no-wrap msgid "{Scheme Procedure} git-http-nginx-location-configuration @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31681 +#: guix-git/doc/guix.texi:32046 msgid "[config=(git-http-configuration)] Compute an @code{nginx-location-configuration} that corresponds to the given Git http configuration. An example nginx service definition to serve the default @file{/srv/git} over HTTPS might be:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31698 +#: guix-git/doc/guix.texi:32063 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -56835,1409 +57511,1414 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31705 +#: guix-git/doc/guix.texi:32070 msgid "This example assumes that you are using Let's Encrypt to get your TLS certificate. @xref{Certificate Services}. The default @code{certbot} service will redirect all HTTP traffic on @code{git.my-host.org} to HTTPS@. You will also need to add an @code{fcgiwrap} proxy to your system services. @xref{Web Services}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:31707 +#: guix-git/doc/guix.texi:32072 #, no-wrap msgid "Cgit Service" msgstr "Cgit 서비스" #. type: cindex -#: guix-git/doc/guix.texi:31709 +#: guix-git/doc/guix.texi:32074 #, no-wrap msgid "Cgit service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:31710 +#: guix-git/doc/guix.texi:32075 #, no-wrap msgid "Git, web interface" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31713 +#: guix-git/doc/guix.texi:32078 msgid "@uref{https://git.zx2c4.com/cgit/, Cgit} is a web frontend for Git repositories written in C." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31716 +#: guix-git/doc/guix.texi:32081 msgid "The following example will configure the service with default values. By default, Cgit can be accessed on port 80 (@code{http://localhost:80})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31719 +#: guix-git/doc/guix.texi:32084 #, no-wrap msgid "(service cgit-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31723 +#: guix-git/doc/guix.texi:32088 msgid "The @code{file-object} type designates either a file-like object (@pxref{G-Expressions, file-like objects}) or a string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31727 +#: guix-git/doc/guix.texi:32092 msgid "Available @code{cgit-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31728 +#: guix-git/doc/guix.texi:32093 #, no-wrap msgid "{@code{cgit-configuration} parameter} package package" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31730 +#: guix-git/doc/guix.texi:32095 msgid "The CGIT package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31733 +#: guix-git/doc/guix.texi:32098 #, no-wrap msgid "{@code{cgit-configuration} parameter} nginx-server-configuration-list nginx" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31738 +#: guix-git/doc/guix.texi:32100 +msgid "NGINX configuration." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:32103 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object about-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31741 +#: guix-git/doc/guix.texi:32106 msgid "Specifies a command which will be invoked to format the content of about pages (both top-level and for each repository)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31746 +#: guix-git/doc/guix.texi:32111 #, no-wrap msgid "{@code{cgit-configuration} parameter} string agefile" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31749 +#: guix-git/doc/guix.texi:32114 msgid "Specifies a path, relative to each repository path, which can be used to specify the date and time of the youngest commit in the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31754 +#: guix-git/doc/guix.texi:32119 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object auth-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31757 +#: guix-git/doc/guix.texi:32122 msgid "Specifies a command that will be invoked for authenticating repository access." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31762 +#: guix-git/doc/guix.texi:32127 #, no-wrap msgid "{@code{cgit-configuration} parameter} string branch-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31765 +#: guix-git/doc/guix.texi:32130 msgid "Flag which, when set to @samp{age}, enables date ordering in the branch ref list, and when set @samp{name} enables ordering by branch name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31767 +#: guix-git/doc/guix.texi:32132 msgid "Defaults to @samp{\"name\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31770 +#: guix-git/doc/guix.texi:32135 #, no-wrap msgid "{@code{cgit-configuration} parameter} string cache-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31772 +#: guix-git/doc/guix.texi:32137 msgid "Path used to store the cgit cache entries." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31774 +#: guix-git/doc/guix.texi:32139 msgid "Defaults to @samp{\"/var/cache/cgit\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31777 +#: guix-git/doc/guix.texi:32142 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-static-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31780 +#: guix-git/doc/guix.texi:32145 msgid "Number which specifies the time-to-live, in minutes, for the cached version of repository pages accessed with a fixed SHA1." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31782 guix-git/doc/guix.texi:32225 +#: guix-git/doc/guix.texi:32147 guix-git/doc/guix.texi:32590 msgid "Defaults to @samp{-1}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31785 +#: guix-git/doc/guix.texi:32150 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-dynamic-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31788 +#: guix-git/doc/guix.texi:32153 msgid "Number which specifies the time-to-live, in minutes, for the cached version of repository pages accessed without a fixed SHA1." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31793 +#: guix-git/doc/guix.texi:32158 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-repo-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31796 +#: guix-git/doc/guix.texi:32161 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository summary page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31801 +#: guix-git/doc/guix.texi:32166 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-root-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31804 +#: guix-git/doc/guix.texi:32169 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31809 +#: guix-git/doc/guix.texi:32174 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-scanrc-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31812 +#: guix-git/doc/guix.texi:32177 msgid "Number which specifies the time-to-live, in minutes, for the result of scanning a path for Git repositories." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31817 +#: guix-git/doc/guix.texi:32182 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-about-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31820 +#: guix-git/doc/guix.texi:32185 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository about page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31825 +#: guix-git/doc/guix.texi:32190 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-snapshot-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31828 +#: guix-git/doc/guix.texi:32193 msgid "Number which specifies the time-to-live, in minutes, for the cached version of snapshots." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31833 +#: guix-git/doc/guix.texi:32198 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31836 +#: guix-git/doc/guix.texi:32201 msgid "The maximum number of entries in the cgit cache. When set to @samp{0}, caching is disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31841 +#: guix-git/doc/guix.texi:32206 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean case-sensitive-sort?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31843 +#: guix-git/doc/guix.texi:32208 msgid "Sort items in the repo list case sensitively." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31848 +#: guix-git/doc/guix.texi:32213 #, no-wrap msgid "{@code{cgit-configuration} parameter} list clone-prefix" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31851 +#: guix-git/doc/guix.texi:32216 msgid "List of common prefixes which, when combined with a repository URL, generates valid clone URLs for the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31856 +#: guix-git/doc/guix.texi:32221 #, no-wrap msgid "{@code{cgit-configuration} parameter} list clone-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31858 +#: guix-git/doc/guix.texi:32223 msgid "List of @code{clone-url} templates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31863 +#: guix-git/doc/guix.texi:32228 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object commit-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31865 +#: guix-git/doc/guix.texi:32230 msgid "Command which will be invoked to format commit messages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31870 +#: guix-git/doc/guix.texi:32235 #, no-wrap msgid "{@code{cgit-configuration} parameter} string commit-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31874 guix-git/doc/guix.texi:32432 +#: guix-git/doc/guix.texi:32239 guix-git/doc/guix.texi:32797 msgid "Flag which, when set to @samp{date}, enables strict date ordering in the commit log, and when set to @samp{topo} enables strict topological ordering." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31876 +#: guix-git/doc/guix.texi:32241 msgid "Defaults to @samp{\"git log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31879 +#: guix-git/doc/guix.texi:32244 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object css" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31881 +#: guix-git/doc/guix.texi:32246 msgid "URL which specifies the css document to include in all cgit pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31883 +#: guix-git/doc/guix.texi:32248 msgid "Defaults to @samp{\"/share/cgit/cgit.css\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31886 +#: guix-git/doc/guix.texi:32251 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object email-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31890 +#: guix-git/doc/guix.texi:32255 msgid "Specifies a command which will be invoked to format names and email address of committers, authors, and taggers, as represented in various places throughout the cgit interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31895 +#: guix-git/doc/guix.texi:32260 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean embedded?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31898 +#: guix-git/doc/guix.texi:32263 msgid "Flag which, when set to @samp{#t}, will make cgit generate a HTML fragment suitable for embedding in other HTML pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31903 +#: guix-git/doc/guix.texi:32268 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-commit-graph?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31907 +#: guix-git/doc/guix.texi:32272 msgid "Flag which, when set to @samp{#t}, will make cgit print an ASCII-art commit history graph to the left of the commit messages in the repository log page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31912 +#: guix-git/doc/guix.texi:32277 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-filter-overrides?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31915 +#: guix-git/doc/guix.texi:32280 msgid "Flag which, when set to @samp{#t}, allows all filter settings to be overridden in repository-specific cgitrc files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31920 +#: guix-git/doc/guix.texi:32285 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-follow-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31923 +#: guix-git/doc/guix.texi:32288 msgid "Flag which, when set to @samp{#t}, allows users to follow a file in the log view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31928 +#: guix-git/doc/guix.texi:32293 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-http-clone?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31931 +#: guix-git/doc/guix.texi:32296 msgid "If set to @samp{#t}, cgit will act as an dumb HTTP endpoint for Git clones." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31936 +#: guix-git/doc/guix.texi:32301 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-index-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31939 +#: guix-git/doc/guix.texi:32304 msgid "Flag which, when set to @samp{#t}, will make cgit generate extra links \"summary\", \"commit\", \"tree\" for each repo in the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31944 +#: guix-git/doc/guix.texi:32309 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-index-owner?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31947 +#: guix-git/doc/guix.texi:32312 msgid "Flag which, when set to @samp{#t}, will make cgit display the owner of each repo in the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31952 +#: guix-git/doc/guix.texi:32317 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-log-filecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31955 +#: guix-git/doc/guix.texi:32320 msgid "Flag which, when set to @samp{#t}, will make cgit print the number of modified files for each commit on the repository log page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31960 +#: guix-git/doc/guix.texi:32325 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-log-linecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31963 +#: guix-git/doc/guix.texi:32328 msgid "Flag which, when set to @samp{#t}, will make cgit print the number of added and removed lines for each commit on the repository log page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31968 +#: guix-git/doc/guix.texi:32333 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-remote-branches?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31971 guix-git/doc/guix.texi:32495 +#: guix-git/doc/guix.texi:32336 guix-git/doc/guix.texi:32860 msgid "Flag which, when set to @code{#t}, will make cgit display remote branches in the summary and refs views." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31976 +#: guix-git/doc/guix.texi:32341 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-subject-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31980 +#: guix-git/doc/guix.texi:32345 msgid "Flag which, when set to @code{1}, will make cgit use the subject of the parent commit as link text when generating links to parent commits in commit view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31985 +#: guix-git/doc/guix.texi:32350 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-html-serving?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31989 +#: guix-git/doc/guix.texi:32354 msgid "Flag which, when set to @samp{#t}, will make cgit use the subject of the parent commit as link text when generating links to parent commits in commit view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31994 +#: guix-git/doc/guix.texi:32359 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-tree-linenumbers?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31997 +#: guix-git/doc/guix.texi:32362 msgid "Flag which, when set to @samp{#t}, will make cgit generate linenumber links for plaintext blobs printed in the tree view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32002 +#: guix-git/doc/guix.texi:32367 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-git-config?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32005 +#: guix-git/doc/guix.texi:32370 msgid "Flag which, when set to @samp{#f}, will allow cgit to use Git config to set any repo specific settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32010 +#: guix-git/doc/guix.texi:32375 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object favicon" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32012 +#: guix-git/doc/guix.texi:32377 msgid "URL used as link to a shortcut icon for cgit." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32014 +#: guix-git/doc/guix.texi:32379 msgid "Defaults to @samp{\"/favicon.ico\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32017 +#: guix-git/doc/guix.texi:32382 #, no-wrap msgid "{@code{cgit-configuration} parameter} string footer" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32021 +#: guix-git/doc/guix.texi:32386 msgid "The content of the file specified with this option will be included verbatim at the bottom of all pages (i.e.@: it replaces the standard \"generated by...\"@: message)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32026 +#: guix-git/doc/guix.texi:32391 #, no-wrap msgid "{@code{cgit-configuration} parameter} string head-include" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32029 +#: guix-git/doc/guix.texi:32394 msgid "The content of the file specified with this option will be included verbatim in the HTML HEAD section on all pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32034 +#: guix-git/doc/guix.texi:32399 #, no-wrap msgid "{@code{cgit-configuration} parameter} string header" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32037 +#: guix-git/doc/guix.texi:32402 msgid "The content of the file specified with this option will be included verbatim at the top of all pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32042 +#: guix-git/doc/guix.texi:32407 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object include" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32045 +#: guix-git/doc/guix.texi:32410 msgid "Name of a configfile to include before the rest of the current config- file is parsed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32050 +#: guix-git/doc/guix.texi:32415 #, no-wrap msgid "{@code{cgit-configuration} parameter} string index-header" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32053 +#: guix-git/doc/guix.texi:32418 msgid "The content of the file specified with this option will be included verbatim above the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32058 +#: guix-git/doc/guix.texi:32423 #, no-wrap msgid "{@code{cgit-configuration} parameter} string index-info" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32061 +#: guix-git/doc/guix.texi:32426 msgid "The content of the file specified with this option will be included verbatim below the heading on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32066 +#: guix-git/doc/guix.texi:32431 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean local-time?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32069 +#: guix-git/doc/guix.texi:32434 msgid "Flag which, if set to @samp{#t}, makes cgit print commit and tag times in the servers timezone." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32074 +#: guix-git/doc/guix.texi:32439 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object logo" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32077 +#: guix-git/doc/guix.texi:32442 msgid "URL which specifies the source of an image which will be used as a logo on all cgit pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32079 +#: guix-git/doc/guix.texi:32444 msgid "Defaults to @samp{\"/share/cgit/cgit.png\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32082 +#: guix-git/doc/guix.texi:32447 #, no-wrap msgid "{@code{cgit-configuration} parameter} string logo-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32084 guix-git/doc/guix.texi:32541 +#: guix-git/doc/guix.texi:32449 guix-git/doc/guix.texi:32906 msgid "URL loaded when clicking on the cgit logo image." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32089 +#: guix-git/doc/guix.texi:32454 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object owner-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32092 +#: guix-git/doc/guix.texi:32457 msgid "Command which will be invoked to format the Owner column of the main page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32097 +#: guix-git/doc/guix.texi:32462 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-atom-items" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32099 +#: guix-git/doc/guix.texi:32464 msgid "Number of items to display in atom feeds view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32104 +#: guix-git/doc/guix.texi:32469 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-commit-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32106 +#: guix-git/doc/guix.texi:32471 msgid "Number of entries to list per page in \"log\" view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32111 +#: guix-git/doc/guix.texi:32476 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-message-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32113 +#: guix-git/doc/guix.texi:32478 msgid "Number of commit message characters to display in \"log\" view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32115 guix-git/doc/guix.texi:32131 +#: guix-git/doc/guix.texi:32480 guix-git/doc/guix.texi:32496 msgid "Defaults to @samp{80}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32118 +#: guix-git/doc/guix.texi:32483 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-repo-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32121 +#: guix-git/doc/guix.texi:32486 msgid "Specifies the number of entries to list per page on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32126 +#: guix-git/doc/guix.texi:32491 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-repodesc-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32129 +#: guix-git/doc/guix.texi:32494 msgid "Specifies the maximum number of repo description characters to display on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32134 +#: guix-git/doc/guix.texi:32499 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-blob-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32136 +#: guix-git/doc/guix.texi:32501 msgid "Specifies the maximum size of a blob to display HTML for in KBytes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32141 +#: guix-git/doc/guix.texi:32506 #, no-wrap msgid "{@code{cgit-configuration} parameter} string max-stats" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32144 +#: guix-git/doc/guix.texi:32509 msgid "Maximum statistics period. Valid values are @samp{week},@samp{month}, @samp{quarter} and @samp{year}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32149 +#: guix-git/doc/guix.texi:32514 #, no-wrap msgid "{@code{cgit-configuration} parameter} mimetype-alist mimetype" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32151 +#: guix-git/doc/guix.texi:32516 msgid "Mimetype for the specified filename extension." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32155 +#: guix-git/doc/guix.texi:32520 msgid "Defaults to @samp{((gif \"image/gif\") (html \"text/html\") (jpg \"image/jpeg\") (jpeg \"image/jpeg\") (pdf \"application/pdf\") (png \"image/png\") (svg \"image/svg+xml\"))}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32158 +#: guix-git/doc/guix.texi:32523 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object mimetype-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32160 +#: guix-git/doc/guix.texi:32525 msgid "Specifies the file to use for automatic mimetype lookup." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32165 +#: guix-git/doc/guix.texi:32530 #, no-wrap msgid "{@code{cgit-configuration} parameter} string module-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32168 +#: guix-git/doc/guix.texi:32533 msgid "Text which will be used as the formatstring for a hyperlink when a submodule is printed in a directory listing." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32173 +#: guix-git/doc/guix.texi:32538 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean nocache?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32175 +#: guix-git/doc/guix.texi:32540 msgid "If set to the value @samp{#t} caching will be disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32180 +#: guix-git/doc/guix.texi:32545 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean noplainemail?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32183 +#: guix-git/doc/guix.texi:32548 msgid "If set to @samp{#t} showing full author email addresses will be disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32188 +#: guix-git/doc/guix.texi:32553 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean noheader?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32191 +#: guix-git/doc/guix.texi:32556 msgid "Flag which, when set to @samp{#t}, will make cgit omit the standard header on all pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32196 +#: guix-git/doc/guix.texi:32561 #, no-wrap msgid "{@code{cgit-configuration} parameter} project-list project-list" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32200 +#: guix-git/doc/guix.texi:32565 msgid "A list of subdirectories inside of @code{repository-directory}, relative to it, that should loaded as Git repositories. An empty list means that all subdirectories will be loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32205 +#: guix-git/doc/guix.texi:32570 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object readme" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32207 +#: guix-git/doc/guix.texi:32572 msgid "Text which will be used as default value for @code{cgit-repo-readme}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32212 +#: guix-git/doc/guix.texi:32577 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean remove-suffix?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32216 +#: guix-git/doc/guix.texi:32581 msgid "If set to @code{#t} and @code{repository-directory} is enabled, if any repositories are found with a suffix of @code{.git}, this suffix will be removed for the URL and name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32221 +#: guix-git/doc/guix.texi:32586 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer renamelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32223 +#: guix-git/doc/guix.texi:32588 msgid "Maximum number of files to consider when detecting renames." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32228 +#: guix-git/doc/guix.texi:32593 #, no-wrap msgid "{@code{cgit-configuration} parameter} string repository-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32230 +#: guix-git/doc/guix.texi:32595 msgid "The way in which repositories in each section are sorted." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32235 +#: guix-git/doc/guix.texi:32600 #, no-wrap msgid "{@code{cgit-configuration} parameter} robots-list robots" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32237 +#: guix-git/doc/guix.texi:32602 msgid "Text used as content for the @code{robots} meta-tag." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32239 +#: guix-git/doc/guix.texi:32604 msgid "Defaults to @samp{(\"noindex\" \"nofollow\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32242 +#: guix-git/doc/guix.texi:32607 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-desc" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32244 +#: guix-git/doc/guix.texi:32609 msgid "Text printed below the heading on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32246 +#: guix-git/doc/guix.texi:32611 msgid "Defaults to @samp{\"a fast webinterface for the git dscm\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32249 +#: guix-git/doc/guix.texi:32614 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-readme" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32252 +#: guix-git/doc/guix.texi:32617 msgid "The content of the file specified with this option will be included verbatim below the ``about'' link on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32257 +#: guix-git/doc/guix.texi:32622 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-title" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32259 +#: guix-git/doc/guix.texi:32624 msgid "Text printed as heading on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32264 +#: guix-git/doc/guix.texi:32629 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean scan-hidden-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32270 +#: guix-git/doc/guix.texi:32635 msgid "If set to @samp{#t} and repository-directory is enabled, repository-directory will recurse into directories whose name starts with a period. Otherwise, repository-directory will stay away from such directories, considered as ``hidden''. Note that this does not apply to the @file{.git} directory in non-bare repos." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32275 +#: guix-git/doc/guix.texi:32640 #, no-wrap msgid "{@code{cgit-configuration} parameter} list snapshots" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32278 +#: guix-git/doc/guix.texi:32643 msgid "Text which specifies the default set of snapshot formats that cgit generates links for." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32283 +#: guix-git/doc/guix.texi:32648 #, no-wrap msgid "{@code{cgit-configuration} parameter} repository-directory repository-directory" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32286 +#: guix-git/doc/guix.texi:32651 msgid "Name of the directory to scan for repositories (represents @code{scan-path})." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32288 +#: guix-git/doc/guix.texi:32653 msgid "Defaults to @samp{\"/srv/git\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32291 +#: guix-git/doc/guix.texi:32656 #, no-wrap msgid "{@code{cgit-configuration} parameter} string section" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32294 guix-git/doc/guix.texi:32610 +#: guix-git/doc/guix.texi:32659 guix-git/doc/guix.texi:32975 msgid "The name of the current repository section - all repositories defined after this option will inherit the current section name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32299 +#: guix-git/doc/guix.texi:32664 #, no-wrap msgid "{@code{cgit-configuration} parameter} string section-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32302 +#: guix-git/doc/guix.texi:32667 msgid "Flag which, when set to @samp{1}, will sort the sections on the repository listing by name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32307 +#: guix-git/doc/guix.texi:32672 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer section-from-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32310 +#: guix-git/doc/guix.texi:32675 msgid "A number which, if defined prior to repository-directory, specifies how many path elements from each repo path to use as a default section name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32315 +#: guix-git/doc/guix.texi:32680 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean side-by-side-diffs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32318 +#: guix-git/doc/guix.texi:32683 msgid "If set to @samp{#t} shows side-by-side diffs instead of unidiffs per default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32323 +#: guix-git/doc/guix.texi:32688 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object source-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32326 +#: guix-git/doc/guix.texi:32691 msgid "Specifies a command which will be invoked to format plaintext blobs in the tree view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32331 +#: guix-git/doc/guix.texi:32696 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-branches" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32334 +#: guix-git/doc/guix.texi:32699 msgid "Specifies the number of branches to display in the repository ``summary'' view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32339 +#: guix-git/doc/guix.texi:32704 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32342 +#: guix-git/doc/guix.texi:32707 msgid "Specifies the number of log entries to display in the repository ``summary'' view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32347 +#: guix-git/doc/guix.texi:32712 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-tags" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32350 +#: guix-git/doc/guix.texi:32715 msgid "Specifies the number of tags to display in the repository ``summary'' view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32355 +#: guix-git/doc/guix.texi:32720 #, no-wrap msgid "{@code{cgit-configuration} parameter} string strict-export" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32358 +#: guix-git/doc/guix.texi:32723 msgid "Filename which, if specified, needs to be present within the repository for cgit to allow access to that repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32363 +#: guix-git/doc/guix.texi:32728 #, no-wrap msgid "{@code{cgit-configuration} parameter} string virtual-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32365 +#: guix-git/doc/guix.texi:32730 msgid "URL which, if specified, will be used as root for all cgit links." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32367 +#: guix-git/doc/guix.texi:32732 msgid "Defaults to @samp{\"/\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32370 +#: guix-git/doc/guix.texi:32735 #, no-wrap msgid "{@code{cgit-configuration} parameter} repository-cgit-configuration-list repositories" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32372 +#: guix-git/doc/guix.texi:32737 msgid "A list of @dfn{cgit-repo} records to use with config." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32376 +#: guix-git/doc/guix.texi:32741 msgid "Available @code{repository-cgit-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32377 +#: guix-git/doc/guix.texi:32742 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list snapshots" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32380 +#: guix-git/doc/guix.texi:32745 msgid "A mask of snapshot formats for this repo that cgit generates links for, restricted by the global @code{snapshots} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32385 +#: guix-git/doc/guix.texi:32750 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object source-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32387 +#: guix-git/doc/guix.texi:32752 msgid "Override the default @code{source-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32392 +#: guix-git/doc/guix.texi:32757 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32394 +#: guix-git/doc/guix.texi:32759 msgid "The relative URL used to access the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32399 +#: guix-git/doc/guix.texi:32764 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object about-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32401 +#: guix-git/doc/guix.texi:32766 msgid "Override the default @code{about-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32406 +#: guix-git/doc/guix.texi:32771 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string branch-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32409 +#: guix-git/doc/guix.texi:32774 msgid "Flag which, when set to @samp{age}, enables date ordering in the branch ref list, and when set to @samp{name} enables ordering by branch name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32414 +#: guix-git/doc/guix.texi:32779 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list clone-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32416 +#: guix-git/doc/guix.texi:32781 msgid "A list of URLs which can be used to clone repo." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32421 +#: guix-git/doc/guix.texi:32786 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object commit-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32423 +#: guix-git/doc/guix.texi:32788 msgid "Override the default @code{commit-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32428 +#: guix-git/doc/guix.texi:32793 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string commit-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32437 +#: guix-git/doc/guix.texi:32802 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string defbranch" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32442 +#: guix-git/doc/guix.texi:32807 msgid "The name of the default branch for this repository. If no such branch exists in the repository, the first branch name (when sorted) is used as default instead. By default branch pointed to by HEAD, or ``master'' if there is no suitable HEAD." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32447 +#: guix-git/doc/guix.texi:32812 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string desc" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32449 +#: guix-git/doc/guix.texi:32814 msgid "The value to show as repository description." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32454 +#: guix-git/doc/guix.texi:32819 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string homepage" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32456 +#: guix-git/doc/guix.texi:32821 msgid "The value to show as repository homepage." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32461 +#: guix-git/doc/guix.texi:32826 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object email-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32463 +#: guix-git/doc/guix.texi:32828 msgid "Override the default @code{email-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32468 +#: guix-git/doc/guix.texi:32833 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-commit-graph?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32471 +#: guix-git/doc/guix.texi:32836 msgid "A flag which can be used to disable the global setting @code{enable-commit-graph?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32476 +#: guix-git/doc/guix.texi:32841 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-log-filecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32479 +#: guix-git/doc/guix.texi:32844 msgid "A flag which can be used to disable the global setting @code{enable-log-filecount?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32484 +#: guix-git/doc/guix.texi:32849 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-log-linecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32487 +#: guix-git/doc/guix.texi:32852 msgid "A flag which can be used to disable the global setting @code{enable-log-linecount?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32492 +#: guix-git/doc/guix.texi:32857 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-remote-branches?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32500 +#: guix-git/doc/guix.texi:32865 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-subject-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32503 +#: guix-git/doc/guix.texi:32868 msgid "A flag which can be used to override the global setting @code{enable-subject-links?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32508 +#: guix-git/doc/guix.texi:32873 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-html-serving?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32511 +#: guix-git/doc/guix.texi:32876 msgid "A flag which can be used to override the global setting @code{enable-html-serving?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32516 +#: guix-git/doc/guix.texi:32881 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-boolean hide?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32519 +#: guix-git/doc/guix.texi:32884 msgid "Flag which, when set to @code{#t}, hides the repository from the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32524 +#: guix-git/doc/guix.texi:32889 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-boolean ignore?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32526 +#: guix-git/doc/guix.texi:32891 msgid "Flag which, when set to @samp{#t}, ignores the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32531 +#: guix-git/doc/guix.texi:32896 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object logo" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32534 +#: guix-git/doc/guix.texi:32899 msgid "URL which specifies the source of an image which will be used as a logo on this repo’s pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32539 +#: guix-git/doc/guix.texi:32904 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string logo-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32546 +#: guix-git/doc/guix.texi:32911 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object owner-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32548 +#: guix-git/doc/guix.texi:32913 msgid "Override the default @code{owner-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32553 +#: guix-git/doc/guix.texi:32918 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string module-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32557 +#: guix-git/doc/guix.texi:32922 msgid "Text which will be used as the formatstring for a hyperlink when a submodule is printed in a directory listing. The arguments for the formatstring are the path and SHA1 of the submodule commit." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32562 +#: guix-git/doc/guix.texi:32927 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} module-link-path module-link-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32566 +#: guix-git/doc/guix.texi:32931 msgid "Text which will be used as the formatstring for a hyperlink when a submodule with the specified subdirectory path is printed in a directory listing." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32571 +#: guix-git/doc/guix.texi:32936 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string max-stats" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32573 +#: guix-git/doc/guix.texi:32938 msgid "Override the default maximum statistics period." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32578 +#: guix-git/doc/guix.texi:32943 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32580 +#: guix-git/doc/guix.texi:32945 msgid "The value to show as repository name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32585 +#: guix-git/doc/guix.texi:32950 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string owner" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32587 +#: guix-git/doc/guix.texi:32952 msgid "A value used to identify the owner of the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32592 +#: guix-git/doc/guix.texi:32957 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32594 +#: guix-git/doc/guix.texi:32959 msgid "An absolute path to the repository directory." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32599 +#: guix-git/doc/guix.texi:32964 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string readme" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32602 +#: guix-git/doc/guix.texi:32967 msgid "A path (relative to repo) which specifies a file to include verbatim as the ``About'' page for this repo." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32607 +#: guix-git/doc/guix.texi:32972 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string section" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32615 +#: guix-git/doc/guix.texi:32980 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32617 guix-git/doc/guix.texi:32626 +#: guix-git/doc/guix.texi:32982 guix-git/doc/guix.texi:32991 msgid "Extra options will be appended to cgitrc file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32624 +#: guix-git/doc/guix.texi:32989 #, no-wrap msgid "{@code{cgit-configuration} parameter} list extra-options" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32638 +#: guix-git/doc/guix.texi:33003 msgid "However, it could be that you just want to get a @code{cgitrc} up and running. In that case, you can pass an @code{opaque-cgit-configuration} as a record to @code{cgit-service-type}. As its name indicates, an opaque configuration does not have easy reflective capabilities." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32640 +#: guix-git/doc/guix.texi:33005 msgid "Available @code{opaque-cgit-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32641 +#: guix-git/doc/guix.texi:33006 #, no-wrap msgid "{@code{opaque-cgit-configuration} parameter} package cgit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32643 +#: guix-git/doc/guix.texi:33008 msgid "The cgit package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32645 +#: guix-git/doc/guix.texi:33010 #, no-wrap msgid "{@code{opaque-cgit-configuration} parameter} string string" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32647 +#: guix-git/doc/guix.texi:33012 msgid "The contents of the @code{cgitrc}, as a string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32651 +#: guix-git/doc/guix.texi:33016 msgid "For example, if your @code{cgitrc} is just the empty string, you could instantiate a cgit service like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32656 +#: guix-git/doc/guix.texi:33021 #, no-wrap msgid "" "(service cgit-service-type\n" @@ -58246,40 +58927,40 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:32658 +#: guix-git/doc/guix.texi:33023 #, no-wrap msgid "Gitolite Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32660 +#: guix-git/doc/guix.texi:33025 #, no-wrap msgid "Gitolite service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32661 +#: guix-git/doc/guix.texi:33026 #, no-wrap msgid "Git, hosting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32664 +#: guix-git/doc/guix.texi:33029 msgid "@uref{https://gitolite.com/gitolite/, Gitolite} is a tool for hosting Git repositories on a central server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32667 +#: guix-git/doc/guix.texi:33032 msgid "Gitolite can handle multiple repositories and users, and supports flexible configuration of the permissions for the users on the repositories." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32670 +#: guix-git/doc/guix.texi:33035 msgid "The following example will configure Gitolite using the default @code{git} user, and the provided SSH public key." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32677 +#: guix-git/doc/guix.texi:33042 #, no-wrap msgid "" "(service gitolite-service-type\n" @@ -58290,222 +58971,222 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32682 +#: guix-git/doc/guix.texi:33047 msgid "Gitolite is configured through a special admin repository which you can clone, for example, if you setup Gitolite on @code{example.com}, you would run the following command to clone the admin repository." msgstr "" #. type: example -#: guix-git/doc/guix.texi:32685 +#: guix-git/doc/guix.texi:33050 #, no-wrap msgid "git clone git@@example.com:gitolite-admin\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32691 +#: guix-git/doc/guix.texi:33056 msgid "When the Gitolite service is activated, the provided @code{admin-pubkey} will be inserted in to the @file{keydir} directory in the gitolite-admin repository. If this results in a change in the repository, it will be committed using the message ``gitolite setup by GNU Guix''." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32692 +#: guix-git/doc/guix.texi:33057 #, no-wrap msgid "{Data Type} gitolite-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32694 +#: guix-git/doc/guix.texi:33059 msgid "Data type representing the configuration for @code{gitolite-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32696 +#: guix-git/doc/guix.texi:33061 #, no-wrap msgid "@code{package} (default: @var{gitolite})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32698 +#: guix-git/doc/guix.texi:33063 msgid "Gitolite package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32699 +#: guix-git/doc/guix.texi:33064 #, no-wrap msgid "@code{user} (default: @var{git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32702 +#: guix-git/doc/guix.texi:33067 msgid "User to use for Gitolite. This will be user that you use when accessing Gitolite over SSH." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32703 +#: guix-git/doc/guix.texi:33068 #, no-wrap msgid "@code{group} (default: @var{git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32705 +#: guix-git/doc/guix.texi:33070 msgid "Group to use for Gitolite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32706 +#: guix-git/doc/guix.texi:33071 #, no-wrap msgid "@code{home-directory} (default: @var{\"/var/lib/gitolite\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32708 +#: guix-git/doc/guix.texi:33073 msgid "Directory in which to store the Gitolite configuration and repositories." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32709 +#: guix-git/doc/guix.texi:33074 #, no-wrap msgid "@code{rc-file} (default: @var{(gitolite-rc-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32712 +#: guix-git/doc/guix.texi:33077 msgid "A ``file-like'' object (@pxref{G-Expressions, file-like objects}), representing the configuration for Gitolite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32713 +#: guix-git/doc/guix.texi:33078 #, no-wrap msgid "@code{admin-pubkey} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32717 +#: guix-git/doc/guix.texi:33082 msgid "A ``file-like'' object (@pxref{G-Expressions, file-like objects}) used to setup Gitolite. This will be inserted in to the @file{keydir} directory within the gitolite-admin repository." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32719 +#: guix-git/doc/guix.texi:33084 msgid "To specify the SSH key as a string, use the @code{plain-file} function." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32722 +#: guix-git/doc/guix.texi:33087 #, no-wrap msgid "(plain-file \"yourname.pub\" \"ssh-rsa AAAA... guix@@example.com\")\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32727 +#: guix-git/doc/guix.texi:33092 #, no-wrap msgid "{Data Type} gitolite-rc-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32729 +#: guix-git/doc/guix.texi:33094 msgid "Data type representing the Gitolite RC file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32731 +#: guix-git/doc/guix.texi:33096 #, no-wrap msgid "@code{umask} (default: @code{#o0077})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32734 +#: guix-git/doc/guix.texi:33099 msgid "This controls the permissions Gitolite sets on the repositories and their contents." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32738 +#: guix-git/doc/guix.texi:33103 msgid "A value like @code{#o0027} will give read access to the group used by Gitolite (by default: @code{git}). This is necessary when using Gitolite with software like cgit or gitweb." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32739 +#: guix-git/doc/guix.texi:33104 #, no-wrap msgid "@code{unsafe-pattern} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32744 +#: guix-git/doc/guix.texi:33109 msgid "An optional Perl regular expression for catching unsafe configurations in the configuration file. See @uref{https://gitolite.com/gitolite/git-config.html#compensating-for-unsafe_patt, Gitolite's documentation} for more information." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32751 +#: guix-git/doc/guix.texi:33116 msgid "When the value is not @code{#f}, it should be a string containing a Perl regular expression, such as @samp{\"[`~#\\$\\&()|;<>]\"}, which is the default value used by gitolite. It rejects any special character in configuration that might be interpreted by a shell, which is useful when sharing the administration burden with other people that do not otherwise have shell access on the server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32752 +#: guix-git/doc/guix.texi:33117 #, no-wrap msgid "@code{git-config-keys} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32755 +#: guix-git/doc/guix.texi:33120 msgid "Gitolite allows you to set git config values using the @samp{config} keyword. This setting allows control over the config keys to accept." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32756 +#: guix-git/doc/guix.texi:33121 #, no-wrap msgid "@code{roles} (default: @code{'((\"READERS\" . 1) (\"WRITERS\" . ))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32758 +#: guix-git/doc/guix.texi:33123 msgid "Set the role names allowed to be used by users running the perms command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32759 +#: guix-git/doc/guix.texi:33124 #, no-wrap msgid "@code{enable} (default: @code{'(\"help\" \"desc\" \"info\" \"perms\" \"writable\" \"ssh-authkeys\" \"git-config\" \"daemon\" \"gitweb\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32761 +#: guix-git/doc/guix.texi:33126 msgid "This setting controls the commands and features to enable within Gitolite." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:32766 +#: guix-git/doc/guix.texi:33131 #, fuzzy, no-wrap #| msgid "Cgit Service" msgid "Gitile Service" msgstr "Cgit 서비스" #. type: cindex -#: guix-git/doc/guix.texi:32768 +#: guix-git/doc/guix.texi:33133 #, fuzzy, no-wrap #| msgid "system service" msgid "Gitile service" msgstr "시스템 서비스" #. type: cindex -#: guix-git/doc/guix.texi:32769 +#: guix-git/doc/guix.texi:33134 #, no-wrap msgid "Git, forge" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32772 +#: guix-git/doc/guix.texi:33137 msgid "@uref{https://git.lepiller.eu/gitile, Gitile} is a Git forge for viewing public git repository contents from a web browser." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32778 +#: guix-git/doc/guix.texi:33143 msgid "Gitile works best in collaboration with Gitolite, and will serve the public repositories from Gitolite by default. The service should listen only on a local port, and a webserver should be configured to serve static resources. The gitile service provides an easy way to extend the Nginx service for that purpose (@pxref{NGINX})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32782 +#: guix-git/doc/guix.texi:33147 msgid "The following example will configure Gitile to serve repositories from a custom location, with some default messages for the home page and the footers." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32805 +#: guix-git/doc/guix.texi:33170 #, no-wrap msgid "" "(service gitile-service-type\n" @@ -58532,12 +59213,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32814 +#: guix-git/doc/guix.texi:33179 msgid "In addition to the configuration record, you should configure your git repositories to contain some optional information. First, your public repositories need to contain the @file{git-daemon-export-ok} magic file that allows Git to export the repository. Gitile uses the presence of this file to detect public repositories it should make accessible. To do so with Gitolite for instance, modify your @file{conf/gitolite.conf} to include this in the repositories you want to make public:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:32818 +#: guix-git/doc/guix.texi:33183 #, no-wrap msgid "" "repo foo\n" @@ -58545,12 +59226,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32824 +#: guix-git/doc/guix.texi:33189 msgid "In addition, Gitile can read the repository configuration to display more information on the repository. Gitile uses the gitweb namespace for its configuration. As an example, you can use the following in your @file{conf/gitolite.conf}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:32831 +#: guix-git/doc/guix.texi:33196 #, no-wrap msgid "" "repo foo\n" @@ -58561,12 +59242,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32837 +#: guix-git/doc/guix.texi:33202 msgid "Do not forget to commit and push these changes once you are satisfied. You may need to change your gitolite configuration to allow the previous configuration options to be set. One way to do that is to add the following service definition:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32849 +#: guix-git/doc/guix.texi:33214 #, no-wrap msgid "" "(service gitolite-service-type\n" @@ -58582,247 +59263,247 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32851 +#: guix-git/doc/guix.texi:33216 #, fuzzy, no-wrap msgid "{Data Type} gitile-configuration" msgstr "설정" #. type: deftp -#: guix-git/doc/guix.texi:32853 +#: guix-git/doc/guix.texi:33218 #, fuzzy msgid "Data type representing the configuration for @code{gitile-service-type}." msgstr "운영체제 설정 관리." #. type: item -#: guix-git/doc/guix.texi:32855 +#: guix-git/doc/guix.texi:33220 #, no-wrap msgid "@code{package} (default: @var{gitile})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32857 +#: guix-git/doc/guix.texi:33222 #, fuzzy msgid "Gitile package to use." msgstr "꾸러미와 도구." #. type: table -#: guix-git/doc/guix.texi:32860 +#: guix-git/doc/guix.texi:33225 msgid "The host on which gitile is listening." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32861 +#: guix-git/doc/guix.texi:33226 #, no-wrap msgid "@code{port} (default: @code{8080})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32863 +#: guix-git/doc/guix.texi:33228 msgid "The port on which gitile is listening." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32864 +#: guix-git/doc/guix.texi:33229 #, no-wrap msgid "@code{database} (default: @code{\"/var/lib/gitile/gitile-db.sql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32866 +#: guix-git/doc/guix.texi:33231 #, fuzzy #| msgid "The license of this manual." msgid "The location of the database." msgstr "이 설명서의 저작권." #. type: item -#: guix-git/doc/guix.texi:32867 +#: guix-git/doc/guix.texi:33232 #, no-wrap msgid "@code{repositories} (default: @code{\"/var/lib/gitolite/repositories\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32871 +#: guix-git/doc/guix.texi:33236 msgid "The location of the repositories. Note that only public repositories will be shown by Gitile. To make a repository public, add an empty @file{git-daemon-export-ok} file at the root of that repository." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:32872 +#: guix-git/doc/guix.texi:33237 #, no-wrap msgid "base-git-url" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32874 +#: guix-git/doc/guix.texi:33239 msgid "The base git url that will be used to show clone commands." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32875 +#: guix-git/doc/guix.texi:33240 #, no-wrap msgid "@code{index-title} (default: @code{\"Index\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32877 +#: guix-git/doc/guix.texi:33242 msgid "The page title for the index page that lists all the available repositories." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32878 +#: guix-git/doc/guix.texi:33243 #, no-wrap msgid "@code{intro} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32881 +#: guix-git/doc/guix.texi:33246 msgid "The intro content, as a list of sxml expressions. This is shown above the list of repositories, on the index page." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32882 +#: guix-git/doc/guix.texi:33247 #, no-wrap msgid "@code{footer} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32885 +#: guix-git/doc/guix.texi:33250 msgid "The footer content, as a list of sxml expressions. This is shown on every page served by Gitile." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:32886 +#: guix-git/doc/guix.texi:33251 #, no-wrap msgid "nginx-server-block" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32889 +#: guix-git/doc/guix.texi:33254 msgid "An nginx server block that will be extended and used as a reverse proxy by Gitile to serve its pages, and as a normal web server to serve its assets." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32893 +#: guix-git/doc/guix.texi:33258 msgid "You can use this block to add more custom URLs to your domain, such as a @code{/git/} URL for anonymous clones, or serving any other files you would like to serve." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:32900 +#: guix-git/doc/guix.texi:33265 #, no-wrap msgid "The Battle for Wesnoth Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32901 +#: guix-git/doc/guix.texi:33266 #, no-wrap msgid "wesnothd" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32905 +#: guix-git/doc/guix.texi:33270 msgid "@uref{https://wesnoth.org, The Battle for Wesnoth} is a fantasy, turn based tactical strategy game, with several single player campaigns, and multiplayer games (both networked and local)." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32906 +#: guix-git/doc/guix.texi:33271 #, no-wrap msgid "{Scheme Variable} wesnothd-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32910 +#: guix-git/doc/guix.texi:33275 msgid "Service type for the wesnothd service. Its value must be a @code{wesnothd-configuration} object. To run wesnothd in the default configuration, instantiate it as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32913 +#: guix-git/doc/guix.texi:33278 #, no-wrap msgid "(service wesnothd-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32916 +#: guix-git/doc/guix.texi:33281 #, no-wrap msgid "{Data Type} wesnothd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32918 +#: guix-git/doc/guix.texi:33283 msgid "Data type representing the configuration of @command{wesnothd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32920 +#: guix-git/doc/guix.texi:33285 #, no-wrap msgid "@code{package} (default: @code{wesnoth-server})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32922 +#: guix-git/doc/guix.texi:33287 msgid "The wesnoth server package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32923 +#: guix-git/doc/guix.texi:33288 #, no-wrap msgid "@code{port} (default: @code{15000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32925 +#: guix-git/doc/guix.texi:33290 guix-git/doc/guix.texi:33681 msgid "The port to bind the server to." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32931 +#: guix-git/doc/guix.texi:33296 #, no-wrap msgid "pam-mount" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32936 +#: guix-git/doc/guix.texi:33301 msgid "The @code{(gnu services pam-mount)} module provides a service allowing users to mount volumes when they log in. It should be able to mount any volume format supported by the system." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32937 +#: guix-git/doc/guix.texi:33302 #, no-wrap msgid "{Scheme Variable} pam-mount-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32939 +#: guix-git/doc/guix.texi:33304 msgid "Service type for PAM Mount support." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32941 +#: guix-git/doc/guix.texi:33306 #, no-wrap msgid "{Data Type} pam-mount-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32943 +#: guix-git/doc/guix.texi:33308 msgid "Data type representing the configuration of PAM Mount." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:32947 +#: guix-git/doc/guix.texi:33312 #, no-wrap msgid "rules" msgstr "규칙" #. type: table -#: guix-git/doc/guix.texi:32950 +#: guix-git/doc/guix.texi:33315 msgid "The configuration rules that will be used to generate @file{/etc/security/pam_mount.conf.xml}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32954 +#: guix-git/doc/guix.texi:33319 msgid "The configuration rules are SXML elements (@pxref{SXML,,, guile, GNU Guile Reference Manual}), and the default ones don't mount anything for anyone at login:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32969 +#: guix-git/doc/guix.texi:33334 #, no-wrap msgid "" "`((debug (@@ (enable \"0\")))\n" @@ -58841,12 +59522,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32975 +#: guix-git/doc/guix.texi:33340 msgid "Some @code{volume} elements must be added to automatically mount volumes at login. Here's an example allowing the user @code{alice} to mount her encrypted @env{HOME} directory and allowing the user @code{bob} to mount the partition where he stores his data:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33000 +#: guix-git/doc/guix.texi:33365 #, no-wrap msgid "" "(define pam-mount-rules\n" @@ -58876,7 +59557,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33004 +#: guix-git/doc/guix.texi:33369 #, no-wrap msgid "" "(service pam-mount-service-type\n" @@ -58885,770 +59566,910 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33008 +#: guix-git/doc/guix.texi:33373 msgid "The complete list of possible options can be found in the man page for @uref{http://pam-mount.sourceforge.net/pam_mount.conf.5.html, pam_mount.conf}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33015 +#: guix-git/doc/guix.texi:33380 #, no-wrap msgid "Guix Build Coordinator" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33021 +#: guix-git/doc/guix.texi:33386 msgid "The @uref{https://git.cbaines.net/guix/build-coordinator/,Guix Build Coordinator} aids in distributing derivation builds among machines running an @dfn{agent}. The build daemon is still used to build the derivations, but the Guix Build Coordinator manages allocating builds and working with the results." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33027 +#: guix-git/doc/guix.texi:33392 msgid "The Guix Build Coordinator consists of one @dfn{coordinator}, and one or more connected @dfn{agent} processes. The coordinator process handles clients submitting builds, and allocating builds to agents. The agent processes talk to a build daemon to actually perform the builds, then send the results back to the coordinator." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33031 +#: guix-git/doc/guix.texi:33396 msgid "There is a script to run the coordinator component of the Guix Build Coordinator, but the Guix service uses a custom Guile script instead, to provide better integration with G-expressions used in the configuration." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33032 +#: guix-git/doc/guix.texi:33397 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33035 +#: guix-git/doc/guix.texi:33400 msgid "Service type for the Guix Build Coordinator. Its value must be a @code{guix-build-coordinator-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33037 +#: guix-git/doc/guix.texi:33402 #, no-wrap msgid "{Data Type} guix-build-coordinator-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33039 +#: guix-git/doc/guix.texi:33404 msgid "Data type representing the configuration of the Guix Build Coordinator." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33041 guix-git/doc/guix.texi:33211 +#: guix-git/doc/guix.texi:33406 guix-git/doc/guix.texi:33576 #, no-wrap msgid "@code{package} (default: @code{guix-build-coordinator})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33043 guix-git/doc/guix.texi:33087 -#: guix-git/doc/guix.texi:33213 +#: guix-git/doc/guix.texi:33408 guix-git/doc/guix.texi:33452 +#: guix-git/doc/guix.texi:33578 msgid "The Guix Build Coordinator package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33044 +#: guix-git/doc/guix.texi:33409 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33046 guix-git/doc/guix.texi:33090 -#: guix-git/doc/guix.texi:33216 guix-git/doc/guix.texi:33262 +#: guix-git/doc/guix.texi:33411 guix-git/doc/guix.texi:33455 +#: guix-git/doc/guix.texi:33581 guix-git/doc/guix.texi:33627 +#: guix-git/doc/guix.texi:33675 msgid "The system user to run the service as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33047 +#: guix-git/doc/guix.texi:33412 #, no-wrap msgid "@code{group} (default: @code{\"guix-build-coordinator\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33049 guix-git/doc/guix.texi:33265 +#: guix-git/doc/guix.texi:33414 guix-git/doc/guix.texi:33630 +#: guix-git/doc/guix.texi:33678 msgid "The system group to run the service as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33050 +#: guix-git/doc/guix.texi:33415 #, no-wrap msgid "@code{database-uri-string} (default: @code{\"sqlite:///var/lib/guix-build-coordinator/guix_build_coordinator.db\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33052 +#: guix-git/doc/guix.texi:33417 msgid "The URI to use for the database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33053 +#: guix-git/doc/guix.texi:33418 #, no-wrap msgid "@code{agent-communication-uri} (default: @code{\"http://0.0.0.0:8745\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33055 +#: guix-git/doc/guix.texi:33420 msgid "The URI describing how to listen to requests from agent processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33056 +#: guix-git/doc/guix.texi:33421 #, no-wrap msgid "@code{client-communication-uri} (default: @code{\"http://127.0.0.1:8746\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33060 +#: guix-git/doc/guix.texi:33425 msgid "The URI describing how to listen to requests from clients. The client API allows submitting builds and currently isn't authenticated, so take care when configuring this value." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33061 +#: guix-git/doc/guix.texi:33426 #, no-wrap msgid "@code{allocation-strategy} (default: @code{#~basic-build-allocation-strategy})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33065 +#: guix-git/doc/guix.texi:33430 msgid "A G-expression for the allocation strategy to be used. This is a procedure that takes the datastore as an argument and populates the allocation plan in the database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33066 +#: guix-git/doc/guix.texi:33431 #, no-wrap msgid "@code{hooks} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33069 +#: guix-git/doc/guix.texi:33434 msgid "An association list of hooks. These provide a way to execute arbitrary code upon certain events, like a build result being processed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33070 +#: guix-git/doc/guix.texi:33435 #, no-wrap msgid "@code{guile} (default: @code{guile-3.0-latest})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33072 +#: guix-git/doc/guix.texi:33437 msgid "The Guile package with which to run the Guix Build Coordinator." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33076 +#: guix-git/doc/guix.texi:33441 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-agent-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33079 +#: guix-git/doc/guix.texi:33444 msgid "Service type for a Guix Build Coordinator agent. Its value must be a @code{guix-build-coordinator-agent-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33081 +#: guix-git/doc/guix.texi:33446 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33083 +#: guix-git/doc/guix.texi:33448 msgid "Data type representing the configuration a Guix Build Coordinator agent." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33085 +#: guix-git/doc/guix.texi:33450 #, no-wrap msgid "@code{package} (default: @code{guix-build-coordinator/agent-only})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33088 +#: guix-git/doc/guix.texi:33453 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator-agent\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33091 +#: guix-git/doc/guix.texi:33456 #, no-wrap msgid "@code{coordinator} (default: @code{\"http://localhost:8745\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33093 guix-git/doc/guix.texi:33219 +#: guix-git/doc/guix.texi:33458 guix-git/doc/guix.texi:33584 msgid "The URI to use when connecting to the coordinator." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33094 +#: guix-git/doc/guix.texi:33459 #, no-wrap msgid "authentication" msgstr "인증" #. type: table -#: guix-git/doc/guix.texi:33097 +#: guix-git/doc/guix.texi:33462 msgid "Record describing how this agent should authenticate with the coordinator. Possible record types are described below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33098 guix-git/doc/guix.texi:33220 +#: guix-git/doc/guix.texi:33463 guix-git/doc/guix.texi:33585 #, no-wrap msgid "@code{systems} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33101 +#: guix-git/doc/guix.texi:33466 msgid "The systems for which this agent should fetch builds. The agent process will use the current system it's running on as the default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33102 +#: guix-git/doc/guix.texi:33467 #, no-wrap msgid "@code{max-parallel-builds} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33104 +#: guix-git/doc/guix.texi:33469 msgid "The number of builds to perform in parallel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33105 +#: guix-git/doc/guix.texi:33470 #, no-wrap msgid "@code{max-1min-load-average} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33109 +#: guix-git/doc/guix.texi:33474 msgid "Load average value to look at when considering starting new builds, if the 1 minute load average exceeds this value, the agent will wait before starting new builds." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33113 +#: guix-git/doc/guix.texi:33478 msgid "This will be unspecified if the value is @code{#f}, and the agent will use the number of cores reported by the system as the max 1 minute load average." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33114 +#: guix-git/doc/guix.texi:33479 #, no-wrap msgid "@code{derivation-substitute-urls} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33117 +#: guix-git/doc/guix.texi:33482 msgid "URLs from which to attempt to fetch substitutes for derivations, if the derivations aren't already available." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33118 +#: guix-git/doc/guix.texi:33483 #, no-wrap msgid "@code{non-derivation-substitute-urls} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33121 +#: guix-git/doc/guix.texi:33486 msgid "URLs from which to attempt to fetch substitutes for build inputs, if the input store items aren't already available." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33125 +#: guix-git/doc/guix.texi:33490 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-password-auth" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33128 +#: guix-git/doc/guix.texi:33493 msgid "Data type representing an agent authenticating with a coordinator via a UUID and password." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33134 guix-git/doc/guix.texi:33150 +#: guix-git/doc/guix.texi:33499 guix-git/doc/guix.texi:33515 msgid "The UUID of the agent. This should be generated by the coordinator process, stored in the coordinator database, and used by the intended agent." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33137 +#: guix-git/doc/guix.texi:33502 msgid "The password to use when connecting to the coordinator." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33141 +#: guix-git/doc/guix.texi:33506 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-password-file-auth" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33144 +#: guix-git/doc/guix.texi:33509 msgid "Data type representing an agent authenticating with a coordinator via a UUID and password read from a file." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33151 +#: guix-git/doc/guix.texi:33516 #, no-wrap msgid "password-file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33154 +#: guix-git/doc/guix.texi:33519 msgid "A file containing the password to use when connecting to the coordinator." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33158 +#: guix-git/doc/guix.texi:33523 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-dynamic-auth" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33161 +#: guix-git/doc/guix.texi:33526 msgid "Data type representing an agent authenticating with a coordinator via a dynamic auth token and agent name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33163 guix-git/doc/guix.texi:33180 +#: guix-git/doc/guix.texi:33528 guix-git/doc/guix.texi:33545 #, no-wrap msgid "agent-name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33167 guix-git/doc/guix.texi:33184 +#: guix-git/doc/guix.texi:33532 guix-git/doc/guix.texi:33549 msgid "Name of an agent, this is used to match up to an existing entry in the database if there is one. When no existing entry is found, a new entry is automatically added." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33168 +#: guix-git/doc/guix.texi:33533 #, no-wrap msgid "token" msgstr "토큰" #. type: table -#: guix-git/doc/guix.texi:33171 +#: guix-git/doc/guix.texi:33536 msgid "Dynamic auth token, this is created and stored in the coordinator database, and is used by the agent to authenticate." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33175 +#: guix-git/doc/guix.texi:33540 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-dynamic-auth-with-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33178 +#: guix-git/doc/guix.texi:33543 msgid "Data type representing an agent authenticating with a coordinator via a dynamic auth token read from a file and agent name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33185 +#: guix-git/doc/guix.texi:33550 #, no-wrap msgid "token-file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33188 +#: guix-git/doc/guix.texi:33553 msgid "File containing the dynamic auth token, this is created and stored in the coordinator database, and is used by the agent to authenticate." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33198 +#: guix-git/doc/guix.texi:33563 msgid "The Guix Build Coordinator package contains a script to query an instance of the Guix Data Service for derivations to build, and then submit builds for those derivations to the coordinator. The service type below assists in running this script. This is an additional tool that may be useful when building derivations contained within an instance of the Guix Data Service." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33199 +#: guix-git/doc/guix.texi:33564 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-queue-builds-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33204 +#: guix-git/doc/guix.texi:33569 msgid "Service type for the guix-build-coordinator-queue-builds-from-guix-data-service script. Its value must be a @code{guix-build-coordinator-queue-builds-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33206 +#: guix-git/doc/guix.texi:33571 #, no-wrap msgid "{Data Type} guix-build-coordinator-queue-builds-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33209 +#: guix-git/doc/guix.texi:33574 msgid "Data type representing the options to the queue builds from guix data service script." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33214 +#: guix-git/doc/guix.texi:33579 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator-queue-builds\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33217 +#: guix-git/doc/guix.texi:33582 #, no-wrap msgid "@code{coordinator} (default: @code{\"http://localhost:8746\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33222 +#: guix-git/doc/guix.texi:33587 msgid "The systems for which to fetch derivations to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33223 +#: guix-git/doc/guix.texi:33588 #, no-wrap msgid "@code{systems-and-targets} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33226 +#: guix-git/doc/guix.texi:33591 msgid "An association list of system and target pairs for which to fetch derivations to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33227 +#: guix-git/doc/guix.texi:33592 #, no-wrap msgid "@code{guix-data-service} (default: @code{\"https://data.guix.gnu.org\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33230 +#: guix-git/doc/guix.texi:33595 msgid "The Guix Data Service instance from which to query to find out about derivations to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33231 +#: guix-git/doc/guix.texi:33596 #, no-wrap msgid "@code{processed-commits-file} (default: @code{\"/var/cache/guix-build-coordinator-queue-builds/processed-commits\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33234 +#: guix-git/doc/guix.texi:33599 msgid "A file to record which commits have been processed, to avoid needlessly processing them again if the service is restarted." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33238 +#: guix-git/doc/guix.texi:33603 #, no-wrap msgid "Guix Data Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33242 +#: guix-git/doc/guix.texi:33607 msgid "The @uref{http://data.guix.gnu.org,Guix Data Service} processes, stores and provides data about GNU Guix. This includes information about packages, derivations and lint warnings." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33245 +#: guix-git/doc/guix.texi:33610 msgid "The data is stored in a PostgreSQL database, and available through a web interface." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33246 +#: guix-git/doc/guix.texi:33611 #, no-wrap msgid "{Scheme Variable} guix-data-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33251 +#: guix-git/doc/guix.texi:33616 msgid "Service type for the Guix Data Service. Its value must be a @code{guix-data-service-configuration} object. The service optionally extends the getmail service, as the guix-commits mailing list is used to find out about changes in the Guix git repository." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33253 +#: guix-git/doc/guix.texi:33618 #, no-wrap msgid "{Data Type} guix-data-service-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33255 +#: guix-git/doc/guix.texi:33620 guix-git/doc/guix.texi:33668 msgid "Data type representing the configuration of the Guix Data Service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33257 +#: guix-git/doc/guix.texi:33622 #, no-wrap msgid "@code{package} (default: @code{guix-data-service})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33259 +#: guix-git/doc/guix.texi:33624 msgid "The Guix Data Service package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33260 +#: guix-git/doc/guix.texi:33625 #, no-wrap msgid "@code{user} (default: @code{\"guix-data-service\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33263 +#: guix-git/doc/guix.texi:33628 #, no-wrap msgid "@code{group} (default: @code{\"guix-data-service\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33266 +#: guix-git/doc/guix.texi:33631 #, no-wrap msgid "@code{port} (default: @code{8765})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33268 +#: guix-git/doc/guix.texi:33633 msgid "The port to bind the web service to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33269 +#: guix-git/doc/guix.texi:33634 guix-git/doc/guix.texi:33682 #, no-wrap msgid "@code{host} (default: @code{\"127.0.0.1\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33271 +#: guix-git/doc/guix.texi:33636 msgid "The host to bind the web service to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33272 +#: guix-git/doc/guix.texi:33637 #, no-wrap msgid "@code{getmail-idle-mailboxes} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33275 +#: guix-git/doc/guix.texi:33640 msgid "If set, this is the list of mailboxes that the getmail service will be configured to listen to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33276 +#: guix-git/doc/guix.texi:33641 #, no-wrap msgid "@code{commits-getmail-retriever-configuration} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33280 +#: guix-git/doc/guix.texi:33645 msgid "If set, this is the @code{getmail-retriever-configuration} object with which to configure getmail to fetch mail from the guix-commits mailing list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33281 +#: guix-git/doc/guix.texi:33646 #, no-wrap msgid "@code{extra-options} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33283 +#: guix-git/doc/guix.texi:33648 msgid "Extra command line options for @code{guix-data-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33284 +#: guix-git/doc/guix.texi:33649 #, no-wrap msgid "@code{extra-process-jobs-options} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33286 +#: guix-git/doc/guix.texi:33651 msgid "Extra command line options for @code{guix-data-service-process-jobs}." msgstr "" +#. type: subsubheading +#: guix-git/doc/guix.texi:33655 +#, no-wrap +msgid "Nar Herder" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:33658 +msgid "The @uref{https://git.cbaines.net/guix/nar-herder/about/,Nar Herder} is a utility for managing a collection of nars." +msgstr "" + +#. type: defvar +#: guix-git/doc/guix.texi:33659 +#, no-wrap +msgid "{Scheme Variable} nar-herder-type" +msgstr "" + +#. type: defvar +#: guix-git/doc/guix.texi:33664 +msgid "Service type for the Guix Data Service. Its value must be a @code{nar-herder-configuration} object. The service optionally extends the getmail service, as the guix-commits mailing list is used to find out about changes in the Guix git repository." +msgstr "" + +#. type: deftp +#: guix-git/doc/guix.texi:33666 +#, fuzzy, no-wrap +msgid "{Data Type} nar-herder-configuration" +msgstr "설정" + +#. type: item +#: guix-git/doc/guix.texi:33670 +#, no-wrap +msgid "@code{package} (default: @code{nar-herder})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33672 +#, fuzzy +msgid "The Nar Herder package to use." +msgstr "꾸러미와 도구." + +#. type: item +#: guix-git/doc/guix.texi:33673 +#, no-wrap +msgid "@code{user} (default: @code{\"nar-herder\"})" +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33676 +#, no-wrap +msgid "@code{group} (default: @code{\"nar-herder\"})" +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33679 +#, no-wrap +msgid "@code{port} (default: @code{8734})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33684 +msgid "The host to bind the server to." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33689 +msgid "Optional URL of the other Nar Herder instance which should be mirrored. This means that this Nar Herder instance will download it's database, and keep it up to date." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33690 +#, no-wrap +msgid "@code{database} (default: @code{\"/var/lib/nar-herder/nar_herder.db\"})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33695 +msgid "Location for the database. If this Nar Herder instance is mirroring another, the database will be downloaded if it doesn't exist. If this Nar Herder instance isn't mirroring another, an empty database will be created." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33696 +#, no-wrap +msgid "@code{database-dump} (default: @code{\"/var/lib/nar-herder/nar_herder_dump.db\"})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33700 +msgid "Location of the database dump. This is created and regularly updated by taking a copy of the database. This is the version of the database that is available to download." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33701 +#, no-wrap +msgid "@code{storage} (default: @code{#f})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33703 +msgid "Optional location in which to store nars." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33704 +#, no-wrap +msgid "@code{storage-limit} (default: @code{\"none\"})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33707 +msgid "Limit in bytes for the nars stored in the storage location. This can also be set to ``none'' so that there is no limit." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33710 +msgid "When the storage location exceeds this size, nars are removed according to the nar removal criteria." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33711 +#, no-wrap +msgid "@code{storage-nar-removal-criteria} (default: @code{'()})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33714 +msgid "Criteria used to remove nars from the storage location. These are used in conjunction with the storage limit." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33719 +msgid "When the storage location exceeds the storage limit size, nars will be checked against the nar removal criteria and if any of the criteria match, they will be removed. This will continue until the storage location is below the storage limit size." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33723 +msgid "Each criteria is specified by a string, then an equals sign, then another string. Currently, only one criteria is supported, checking if a nar is stored on another Nar Herder instance." +msgstr "" + #. type: cindex -#: guix-git/doc/guix.texi:33293 +#: guix-git/doc/guix.texi:33730 #, no-wrap msgid "oom" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33294 +#: guix-git/doc/guix.texi:33731 #, no-wrap msgid "out of memory killer" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33295 +#: guix-git/doc/guix.texi:33732 #, no-wrap msgid "earlyoom" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33296 +#: guix-git/doc/guix.texi:33733 #, no-wrap msgid "early out of memory daemon" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33297 +#: guix-git/doc/guix.texi:33734 #, no-wrap msgid "Early OOM Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33304 +#: guix-git/doc/guix.texi:33741 msgid "@uref{https://github.com/rfjakob/earlyoom,Early OOM}, also known as Earlyoom, is a minimalist out of memory (OOM) daemon that runs in user space and provides a more responsive and configurable alternative to the in-kernel OOM killer. It is useful to prevent the system from becoming unresponsive when it runs out of memory." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33305 +#: guix-git/doc/guix.texi:33742 #, no-wrap msgid "{Scheme Variable} earlyoom-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33310 +#: guix-git/doc/guix.texi:33747 msgid "The service type for running @command{earlyoom}, the Early OOM daemon. Its value must be a @code{earlyoom-configuration} object, described below. The service can be instantiated in its default configuration with:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33313 +#: guix-git/doc/guix.texi:33750 #, no-wrap msgid "(service earlyoom-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33316 +#: guix-git/doc/guix.texi:33753 #, no-wrap msgid "{Data Type} earlyoom-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33318 +#: guix-git/doc/guix.texi:33755 msgid "This is the configuration record for the @code{earlyoom-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33320 +#: guix-git/doc/guix.texi:33757 #, no-wrap msgid "@code{earlyoom} (default: @var{earlyoom})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33322 +#: guix-git/doc/guix.texi:33759 msgid "The Earlyoom package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33323 +#: guix-git/doc/guix.texi:33760 #, no-wrap msgid "@code{minimum-available-memory} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33325 +#: guix-git/doc/guix.texi:33762 msgid "The threshold for the minimum @emph{available} memory, in percentages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33326 +#: guix-git/doc/guix.texi:33763 #, no-wrap msgid "@code{minimum-free-swap} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33328 +#: guix-git/doc/guix.texi:33765 msgid "The threshold for the minimum free swap memory, in percentages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33329 +#: guix-git/doc/guix.texi:33766 #, no-wrap msgid "@code{prefer-regexp} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33332 +#: guix-git/doc/guix.texi:33769 msgid "A regular expression (as a string) to match the names of the processes that should be preferably killed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33333 +#: guix-git/doc/guix.texi:33770 #, no-wrap msgid "@code{avoid-regexp} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33336 +#: guix-git/doc/guix.texi:33773 msgid "A regular expression (as a string) to match the names of the processes that should @emph{not} be killed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33337 +#: guix-git/doc/guix.texi:33774 #, no-wrap msgid "@code{memory-report-interval} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33340 +#: guix-git/doc/guix.texi:33777 msgid "The interval in seconds at which a memory report is printed. It is disabled by default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33341 +#: guix-git/doc/guix.texi:33778 #, no-wrap msgid "@code{ignore-positive-oom-score-adj?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33344 +#: guix-git/doc/guix.texi:33781 msgid "A boolean indicating whether the positive adjustments set in @file{/proc/*/oom_score_adj} should be ignored." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33345 +#: guix-git/doc/guix.texi:33782 #, no-wrap msgid "@code{show-debug-messages?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33348 +#: guix-git/doc/guix.texi:33785 msgid "A boolean indicating whether debug messages should be printed. The logs are saved at @file{/var/log/earlyoom.log}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33349 +#: guix-git/doc/guix.texi:33786 #, no-wrap msgid "@code{send-notification-command} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33352 +#: guix-git/doc/guix.texi:33789 msgid "This can be used to provide a custom command used for sending notifications." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33355 +#: guix-git/doc/guix.texi:33792 #, no-wrap msgid "modprobe" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33356 +#: guix-git/doc/guix.texi:33793 #, no-wrap msgid "kernel module loader" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33357 +#: guix-git/doc/guix.texi:33794 #, no-wrap msgid "Kernel Module Loader Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33363 +#: guix-git/doc/guix.texi:33800 msgid "The kernel module loader service allows one to load loadable kernel modules at boot. This is especially useful for modules that don't autoload and need to be manually loaded, as is the case with @code{ddcci}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33364 +#: guix-git/doc/guix.texi:33801 #, no-wrap msgid "{Scheme Variable} kernel-module-loader-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33370 +#: guix-git/doc/guix.texi:33807 msgid "The service type for loading loadable kernel modules at boot with @command{modprobe}. Its value must be a list of strings representing module names. For example loading the drivers provided by @code{ddcci-driver-linux}, in debugging mode by passing some module parameters, can be done as follow:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33375 +#: guix-git/doc/guix.texi:33812 #, no-wrap msgid "" "(use-modules (gnu) (gnu services))\n" @@ -59658,7 +60479,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33379 +#: guix-git/doc/guix.texi:33816 #, no-wrap msgid "" "(define ddcci-config\n" @@ -59668,7 +60489,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33389 +#: guix-git/doc/guix.texi:33826 #, no-wrap msgid "" "(operating-system\n" @@ -59683,415 +60504,415 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33392 +#: guix-git/doc/guix.texi:33829 #, no-wrap msgid "rasdaemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33393 +#: guix-git/doc/guix.texi:33830 #, no-wrap msgid "Platform Reliability, Availability and Serviceability daemon" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33394 +#: guix-git/doc/guix.texi:33831 #, fuzzy, no-wrap #| msgid "System Services" msgid "Rasdaemon Service" msgstr "시스템 서비스" #. type: Plain text -#: guix-git/doc/guix.texi:33399 +#: guix-git/doc/guix.texi:33836 msgid "The Rasdaemon service provides a daemon which monitors platform @acronym{RAS, Reliability@comma{} Availability@comma{} and Serviceability} reports from Linux kernel trace events, logging them to syslogd." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33402 +#: guix-git/doc/guix.texi:33839 msgid "Reliability, Availability and Serviceability is a concept used on servers meant to measure their robustness." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33405 +#: guix-git/doc/guix.texi:33842 msgid "@strong{Relability} is the probability that a system will produce correct outputs:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33407 +#: guix-git/doc/guix.texi:33844 #, no-wrap msgid "Generally measured as Mean Time Between Failures (MTBF), and" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33408 +#: guix-git/doc/guix.texi:33845 #, no-wrap msgid "Enhanced by features that help to avoid, detect and repair hardware" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:33410 +#: guix-git/doc/guix.texi:33847 #, fuzzy #| msgid "default" msgid "faults" msgstr "기본" #. type: Plain text -#: guix-git/doc/guix.texi:33414 +#: guix-git/doc/guix.texi:33851 msgid "@strong{Availability} is the probability that a system is operational at a given time:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33416 +#: guix-git/doc/guix.texi:33853 #, no-wrap msgid "Generally measured as a percentage of downtime per a period of time, and" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33417 +#: guix-git/doc/guix.texi:33854 #, no-wrap msgid "Often uses mechanisms to detect and correct hardware faults in runtime." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33422 +#: guix-git/doc/guix.texi:33859 msgid "@strong{Serviceability} is the simplicity and speed with which a system can be repaired or maintained:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33424 +#: guix-git/doc/guix.texi:33861 #, no-wrap msgid "Generally measured on Mean Time Between Repair (MTBR)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33429 +#: guix-git/doc/guix.texi:33866 msgid "Among the monitoring measures, the most usual ones include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33431 +#: guix-git/doc/guix.texi:33868 #, no-wrap msgid "CPU – detect errors at instruction execution and at L1/L2/L3 caches;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33432 +#: guix-git/doc/guix.texi:33869 #, no-wrap msgid "Memory – add error correction logic (ECC) to detect and correct errors;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33433 +#: guix-git/doc/guix.texi:33870 #, no-wrap msgid "I/O – add CRC checksums for transferred data;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33434 +#: guix-git/doc/guix.texi:33871 #, no-wrap msgid "Storage – RAID, journal file systems, checksums, Self-Monitoring," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:33436 +#: guix-git/doc/guix.texi:33873 msgid "Analysis and Reporting Technology (SMART)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33442 +#: guix-git/doc/guix.texi:33879 msgid "By monitoring the number of occurrences of error detections, it is possible to identify if the probability of hardware errors is increasing, and, on such case, do a preventive maintenance to replace a degraded component while those errors are correctable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33446 +#: guix-git/doc/guix.texi:33883 msgid "For detailed information about the types of error events gathered and how to make sense of them, see the kernel administrator's guide at @url{https://www.kernel.org/doc/html/latest/admin-guide/ras.html}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33447 +#: guix-git/doc/guix.texi:33884 #, no-wrap msgid "{Scheme Variable} rasdaemon-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33450 +#: guix-git/doc/guix.texi:33887 msgid "Service type for the @command{rasdaemon} service. It accepts a @code{rasdaemon-configuration} object. Instantiating like" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33453 +#: guix-git/doc/guix.texi:33890 #, no-wrap msgid "(service rasdaemon-service-type)\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33457 +#: guix-git/doc/guix.texi:33894 msgid "will load with a default configuration, which monitors all events and logs to syslogd." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33459 +#: guix-git/doc/guix.texi:33896 #, fuzzy, no-wrap msgid "{Data Type} rasdaemon-configuration" msgstr "설정" #. type: deftp -#: guix-git/doc/guix.texi:33461 +#: guix-git/doc/guix.texi:33898 #, fuzzy msgid "The data type representing the configuration of @command{rasdaemon}." msgstr "운영체제 설정 관리." #. type: item -#: guix-git/doc/guix.texi:33463 +#: guix-git/doc/guix.texi:33900 #, no-wrap msgid "@code{record?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33468 +#: guix-git/doc/guix.texi:33905 msgid "A boolean indicating whether to record the events in an SQLite database. This provides a more structured access to the information contained in the log file. The database location is hard-coded to @file{/var/lib/rasdaemon/ras-mc_event.db}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33472 +#: guix-git/doc/guix.texi:33909 #, no-wrap msgid "zram" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33473 +#: guix-git/doc/guix.texi:33910 #, no-wrap msgid "compressed swap" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33474 +#: guix-git/doc/guix.texi:33911 #, no-wrap msgid "Compressed RAM-based block devices" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33475 +#: guix-git/doc/guix.texi:33912 #, no-wrap msgid "Zram Device Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33481 +#: guix-git/doc/guix.texi:33918 msgid "The Zram device service provides a compressed swap device in system memory. The Linux Kernel documentation has more information about @uref{https://www.kernel.org/doc/html/latest/admin-guide/blockdev/zram.html,zram} devices." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33482 +#: guix-git/doc/guix.texi:33919 #, no-wrap msgid "{Scheme Variable} zram-device-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33486 +#: guix-git/doc/guix.texi:33923 msgid "This service creates the zram block device, formats it as swap and enables it as a swap device. The service's value is a @code{zram-device-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33487 +#: guix-git/doc/guix.texi:33924 #, no-wrap msgid "{Data Type} zram-device-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33490 +#: guix-git/doc/guix.texi:33927 msgid "This is the data type representing the configuration for the zram-device service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33492 +#: guix-git/doc/guix.texi:33929 #, no-wrap msgid "@code{size} (default @code{\"1G\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33496 +#: guix-git/doc/guix.texi:33933 msgid "This is the amount of space you wish to provide for the zram device. It accepts a string and can be a number of bytes or use a suffix, eg.: @code{\"512M\"} or @code{1024000}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33496 +#: guix-git/doc/guix.texi:33933 #, no-wrap msgid "@code{compression-algorithm} (default @code{'lzo})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:33937 msgid "This is the compression algorithm you wish to use. It is difficult to list all the possible compression options, but common ones supported by Guix's Linux Libre Kernel include @code{'lzo}, @code{'lz4} and @code{'zstd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:33937 #, no-wrap msgid "@code{memory-limit} (default @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33507 +#: guix-git/doc/guix.texi:33944 msgid "This is the maximum amount of memory which the zram device can use. Setting it to '0' disables the limit. While it is generally expected that compression will be 2:1, it is possible that uncompressable data can be written to swap and this is a method to limit how much memory can be used. It accepts a string and can be a number of bytes or use a suffix, eg.: @code{\"2G\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33507 +#: guix-git/doc/guix.texi:33944 #, no-wrap msgid "@code{priority} (default @code{-1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33512 +#: guix-git/doc/guix.texi:33949 msgid "This is the priority of the swap device created from the zram device. @code{swapon} accepts values between -1 and 32767, with higher values indicating higher priority. Higher priority swap will generally be used first." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33520 +#: guix-git/doc/guix.texi:33957 #, no-wrap msgid "{Scheme Variable} hurd-console-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33522 +#: guix-git/doc/guix.texi:33959 msgid "This service starts the fancy @code{VGA} console client on the Hurd." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33524 +#: guix-git/doc/guix.texi:33961 msgid "The service's value is a @code{hurd-console-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33526 +#: guix-git/doc/guix.texi:33963 #, no-wrap msgid "{Data Type} hurd-console-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33529 +#: guix-git/doc/guix.texi:33966 msgid "This is the data type representing the configuration for the hurd-console-service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33531 guix-git/doc/guix.texi:33547 +#: guix-git/doc/guix.texi:33968 guix-git/doc/guix.texi:33984 #, no-wrap msgid "@code{hurd} (default: @var{hurd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33533 guix-git/doc/guix.texi:33549 +#: guix-git/doc/guix.texi:33970 guix-git/doc/guix.texi:33986 msgid "The Hurd package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33536 +#: guix-git/doc/guix.texi:33973 #, no-wrap msgid "{Scheme Variable} hurd-getty-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33538 +#: guix-git/doc/guix.texi:33975 msgid "This service starts a tty using the Hurd @code{getty} program." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33540 +#: guix-git/doc/guix.texi:33977 msgid "The service's value is a @code{hurd-getty-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33542 +#: guix-git/doc/guix.texi:33979 #, no-wrap msgid "{Data Type} hurd-getty-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33545 +#: guix-git/doc/guix.texi:33982 msgid "This is the data type representing the configuration for the hurd-getty-service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33552 +#: guix-git/doc/guix.texi:33989 msgid "The name of the console this Getty runs on---e.g., @code{\"tty1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33553 +#: guix-git/doc/guix.texi:33990 #, no-wrap msgid "@code{baud-rate} (default: @code{38400})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33555 +#: guix-git/doc/guix.texi:33992 msgid "An integer specifying the baud rate of the tty." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33562 +#: guix-git/doc/guix.texi:33999 #, no-wrap msgid "fingerprint" msgstr "지문" #. type: subsubheading -#: guix-git/doc/guix.texi:33563 +#: guix-git/doc/guix.texi:34000 #, no-wrap msgid "Fingerprint Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33567 +#: guix-git/doc/guix.texi:34004 msgid "The @code{(gnu services authentication)} module provides a DBus service to read and identify fingerprints via a fingerprint sensor." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33568 +#: guix-git/doc/guix.texi:34005 #, no-wrap msgid "{Scheme Variable} fprintd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33571 +#: guix-git/doc/guix.texi:34008 msgid "The service type for @command{fprintd}, which provides the fingerprint reading capability." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33574 +#: guix-git/doc/guix.texi:34011 #, no-wrap msgid "(service fprintd-service-type)\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33577 +#: guix-git/doc/guix.texi:34014 #, no-wrap msgid "sysctl" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33578 +#: guix-git/doc/guix.texi:34015 #, no-wrap msgid "System Control Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33582 +#: guix-git/doc/guix.texi:34019 msgid "The @code{(gnu services sysctl)} provides a service to configure kernel parameters at boot." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33583 +#: guix-git/doc/guix.texi:34020 #, no-wrap msgid "{Scheme Variable} sysctl-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33587 +#: guix-git/doc/guix.texi:34024 msgid "The service type for @command{sysctl}, which modifies kernel parameters under @file{/proc/sys/}. To enable IPv4 forwarding, it can be instantiated as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33592 +#: guix-git/doc/guix.texi:34029 #, no-wrap msgid "" "(service sysctl-service-type\n" @@ -60100,12 +60921,12 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33599 +#: guix-git/doc/guix.texi:34036 msgid "Since @code{sysctl-service-type} is used in the default lists of services, @code{%base-services} and @code{%desktop-services}, you can use @code{modify-services} to change its configuration and add the kernel parameters that you want (@pxref{Service Reference, @code{modify-services}})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33606 +#: guix-git/doc/guix.texi:34043 #, no-wrap msgid "" "(modify-services %base-services\n" @@ -60116,463 +60937,463 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33610 +#: guix-git/doc/guix.texi:34047 #, no-wrap msgid "{Data Type} sysctl-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33612 +#: guix-git/doc/guix.texi:34049 msgid "The data type representing the configuration of @command{sysctl}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33614 +#: guix-git/doc/guix.texi:34051 #, no-wrap msgid "@code{sysctl} (default: @code{(file-append procps \"/sbin/sysctl\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33616 +#: guix-git/doc/guix.texi:34053 msgid "The @command{sysctl} executable to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33617 +#: guix-git/doc/guix.texi:34054 #, no-wrap msgid "@code{settings} (default: @code{%default-sysctl-settings})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33619 +#: guix-git/doc/guix.texi:34056 msgid "An association list specifies kernel parameters and their values." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33622 +#: guix-git/doc/guix.texi:34059 #, no-wrap msgid "{Scheme Variable} %default-sysctl-settings" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33625 +#: guix-git/doc/guix.texi:34062 msgid "An association list specifying the default @command{sysctl} parameters on Guix System." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33627 +#: guix-git/doc/guix.texi:34064 #, no-wrap msgid "pcscd" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33628 +#: guix-git/doc/guix.texi:34065 #, no-wrap msgid "PC/SC Smart Card Daemon Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33635 +#: guix-git/doc/guix.texi:34072 msgid "The @code{(gnu services security-token)} module provides the following service to run @command{pcscd}, the PC/SC Smart Card Daemon. @command{pcscd} is the daemon program for pcsc-lite and the MuscleCard framework. It is a resource manager that coordinates communications with smart card readers, smart cards and cryptographic tokens that are connected to the system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33636 +#: guix-git/doc/guix.texi:34073 #, no-wrap msgid "{Scheme Variable} pcscd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33640 +#: guix-git/doc/guix.texi:34077 msgid "Service type for the @command{pcscd} service. Its value must be a @code{pcscd-configuration} object. To run pcscd in the default configuration, instantiate it as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33643 +#: guix-git/doc/guix.texi:34080 #, no-wrap msgid "(service pcscd-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33646 +#: guix-git/doc/guix.texi:34083 #, no-wrap msgid "{Data Type} pcscd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33648 +#: guix-git/doc/guix.texi:34085 msgid "The data type representing the configuration of @command{pcscd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33650 +#: guix-git/doc/guix.texi:34087 #, no-wrap msgid "@code{pcsc-lite} (default: @code{pcsc-lite})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33652 +#: guix-git/doc/guix.texi:34089 msgid "The pcsc-lite package that provides pcscd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33652 +#: guix-git/doc/guix.texi:34089 #, no-wrap msgid "@code{usb-drivers} (default: @code{(list ccid)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33655 +#: guix-git/doc/guix.texi:34092 msgid "List of packages that provide USB drivers to pcscd. Drivers are expected to be under @file{pcsc/drivers} in the store directory of the package." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33658 +#: guix-git/doc/guix.texi:34095 #, no-wrap msgid "lirc" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33659 +#: guix-git/doc/guix.texi:34096 #, no-wrap msgid "Lirc Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33662 +#: guix-git/doc/guix.texi:34099 msgid "The @code{(gnu services lirc)} module provides the following service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33663 +#: guix-git/doc/guix.texi:34100 #, no-wrap msgid "{Scheme Procedure} lirc-service [#:lirc lirc] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33668 +#: guix-git/doc/guix.texi:34105 msgid "[#:device #f] [#:driver #f] [#:config-file #f] @ [#:extra-options '()] Return a service that runs @url{http://www.lirc.org,LIRC}, a daemon that decodes infrared signals from remote controls." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33672 +#: guix-git/doc/guix.texi:34109 msgid "Optionally, @var{device}, @var{driver} and @var{config-file} (configuration file name) may be specified. See @command{lircd} manual for details." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33675 +#: guix-git/doc/guix.texi:34112 msgid "Finally, @var{extra-options} is a list of additional command-line options passed to @command{lircd}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33677 +#: guix-git/doc/guix.texi:34114 #, no-wrap msgid "spice" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33678 +#: guix-git/doc/guix.texi:34115 #, no-wrap msgid "Spice Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33681 +#: guix-git/doc/guix.texi:34118 msgid "The @code{(gnu services spice)} module provides the following service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33682 +#: guix-git/doc/guix.texi:34119 #, no-wrap msgid "{Scheme Procedure} spice-vdagent-service [#:spice-vdagent]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33686 +#: guix-git/doc/guix.texi:34123 msgid "Returns a service that runs @url{https://www.spice-space.org,VDAGENT}, a daemon that enables sharing the clipboard with a vm and setting the guest display resolution when the graphical console window resizes." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33688 +#: guix-git/doc/guix.texi:34125 #, no-wrap msgid "inputattach" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33689 +#: guix-git/doc/guix.texi:34126 #, no-wrap msgid "inputattach Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33691 +#: guix-git/doc/guix.texi:34128 #, no-wrap msgid "tablet input, for Xorg" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33692 +#: guix-git/doc/guix.texi:34129 #, no-wrap msgid "touchscreen input, for Xorg" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33696 +#: guix-git/doc/guix.texi:34133 msgid "The @uref{https://linuxwacom.github.io/, inputattach} service allows you to use input devices such as Wacom tablets, touchscreens, or joysticks with the Xorg display server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33697 +#: guix-git/doc/guix.texi:34134 #, no-wrap msgid "{Scheme Variable} inputattach-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33700 +#: guix-git/doc/guix.texi:34137 msgid "Type of a service that runs @command{inputattach} on a device and dispatches events from it." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33702 +#: guix-git/doc/guix.texi:34139 #, no-wrap msgid "{Data Type} inputattach-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33704 +#: guix-git/doc/guix.texi:34141 #, no-wrap msgid "@code{device-type} (default: @code{\"wacom\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33707 +#: guix-git/doc/guix.texi:34144 msgid "The type of device to connect to. Run @command{inputattach --help}, from the @code{inputattach} package, to see the list of supported device types." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33708 +#: guix-git/doc/guix.texi:34145 #, no-wrap msgid "@code{device} (default: @code{\"/dev/ttyS0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33710 +#: guix-git/doc/guix.texi:34147 msgid "The device file to connect to the device." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33714 +#: guix-git/doc/guix.texi:34151 msgid "Baud rate to use for the serial connection. Should be a number or @code{#f}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33715 +#: guix-git/doc/guix.texi:34152 #, no-wrap msgid "@code{log-file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33717 +#: guix-git/doc/guix.texi:34154 msgid "If true, this must be the name of a file to log messages to." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33720 +#: guix-git/doc/guix.texi:34157 #, no-wrap msgid "Dictionary Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33721 +#: guix-git/doc/guix.texi:34158 #, no-wrap msgid "dictionary" msgstr "사전" #. type: Plain text -#: guix-git/doc/guix.texi:33723 +#: guix-git/doc/guix.texi:34160 msgid "The @code{(gnu services dict)} module provides the following service:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33724 +#: guix-git/doc/guix.texi:34161 #, no-wrap msgid "{Scheme Variable} dicod-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33727 +#: guix-git/doc/guix.texi:34164 msgid "This is the type of the service that runs the @command{dicod} daemon, an implementation of DICT server (@pxref{Dicod,,, dico, GNU Dico Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33729 +#: guix-git/doc/guix.texi:34166 #, no-wrap msgid "{Scheme Procedure} dicod-service [#:config (dicod-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33732 +#: guix-git/doc/guix.texi:34169 msgid "Return a service that runs the @command{dicod} daemon, an implementation of DICT server (@pxref{Dicod,,, dico, GNU Dico Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33736 +#: guix-git/doc/guix.texi:34173 msgid "The optional @var{config} argument specifies the configuration for @command{dicod}, which should be a @code{} object, by default it serves the GNU Collaborative International Dictionary of English." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33740 +#: guix-git/doc/guix.texi:34177 msgid "You can add @command{open localhost} to your @file{~/.dico} file to make @code{localhost} the default server for @command{dico} client (@pxref{Initialization File,,, dico, GNU Dico Manual})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33742 +#: guix-git/doc/guix.texi:34179 #, no-wrap msgid "{Data Type} dicod-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33744 +#: guix-git/doc/guix.texi:34181 msgid "Data type representing the configuration of dicod." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33746 +#: guix-git/doc/guix.texi:34183 #, no-wrap msgid "@code{dico} (default: @var{dico})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33748 +#: guix-git/doc/guix.texi:34185 msgid "Package object of the GNU Dico dictionary server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33749 +#: guix-git/doc/guix.texi:34186 #, no-wrap msgid "@code{interfaces} (default: @var{'(\"localhost\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33753 +#: guix-git/doc/guix.texi:34190 msgid "This is the list of IP addresses and ports and possibly socket file names to listen to (@pxref{Server Settings, @code{listen} directive,, dico, GNU Dico Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33754 +#: guix-git/doc/guix.texi:34191 #, no-wrap msgid "@code{handlers} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33756 +#: guix-git/doc/guix.texi:34193 msgid "List of @code{} objects denoting handlers (module instances)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33757 +#: guix-git/doc/guix.texi:34194 #, no-wrap msgid "@code{databases} (default: @var{(list %dicod-database:gcide)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33759 +#: guix-git/doc/guix.texi:34196 msgid "List of @code{} objects denoting dictionaries to be served." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33762 +#: guix-git/doc/guix.texi:34199 #, no-wrap msgid "{Data Type} dicod-handler" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33764 +#: guix-git/doc/guix.texi:34201 msgid "Data type representing a dictionary handler (module instance)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33768 +#: guix-git/doc/guix.texi:34205 msgid "Name of the handler (module instance)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33769 +#: guix-git/doc/guix.texi:34206 #, no-wrap msgid "@code{module} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33773 +#: guix-git/doc/guix.texi:34210 msgid "Name of the dicod module of the handler (instance). If it is @code{#f}, the module has the same name as the handler. (@pxref{Modules,,, dico, GNU Dico Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33776 +#: guix-git/doc/guix.texi:34213 msgid "List of strings or gexps representing the arguments for the module handler" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33779 +#: guix-git/doc/guix.texi:34216 #, no-wrap msgid "{Data Type} dicod-database" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33781 +#: guix-git/doc/guix.texi:34218 msgid "Data type representing a dictionary database." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33785 +#: guix-git/doc/guix.texi:34222 msgid "Name of the database, will be used in DICT commands." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33786 +#: guix-git/doc/guix.texi:34223 #, no-wrap msgid "handler" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33789 +#: guix-git/doc/guix.texi:34226 msgid "Name of the dicod handler (module instance) used by this database (@pxref{Handlers,,, dico, GNU Dico Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33790 +#: guix-git/doc/guix.texi:34227 #, no-wrap msgid "@code{complex?} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33793 +#: guix-git/doc/guix.texi:34230 msgid "Whether the database configuration complex. The complex configuration will need a corresponding @code{} object, otherwise not." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33797 +#: guix-git/doc/guix.texi:34234 msgid "List of strings or gexps representing the arguments for the database (@pxref{Databases,,, dico, GNU Dico Manual})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33800 +#: guix-git/doc/guix.texi:34237 #, no-wrap msgid "{Scheme Variable} %dicod-database:gcide" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33803 +#: guix-git/doc/guix.texi:34240 msgid "A @code{} object serving the GNU Collaborative International Dictionary of English using the @code{gcide} package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33806 +#: guix-git/doc/guix.texi:34243 msgid "The following is an example @code{dicod-service} configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33821 +#: guix-git/doc/guix.texi:34258 #, no-wrap msgid "" "(dicod-service #:config\n" @@ -60591,139 +61412,139 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33823 +#: guix-git/doc/guix.texi:34260 #, no-wrap msgid "Docker" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33824 +#: guix-git/doc/guix.texi:34261 #, no-wrap msgid "Docker Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33827 +#: guix-git/doc/guix.texi:34264 msgid "The @code{(gnu services docker)} module provides the following services." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33828 +#: guix-git/doc/guix.texi:34265 #, no-wrap msgid "{Scheme Variable} docker-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33833 +#: guix-git/doc/guix.texi:34270 msgid "This is the type of the service that runs @url{https://www.docker.com,Docker}, a daemon that can execute application bundles (sometimes referred to as ``containers'') in isolated environments." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33836 +#: guix-git/doc/guix.texi:34273 #, no-wrap msgid "{Data Type} docker-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33838 +#: guix-git/doc/guix.texi:34275 msgid "This is the data type representing the configuration of Docker and Containerd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33841 +#: guix-git/doc/guix.texi:34278 #, no-wrap msgid "@code{docker} (default: @code{docker})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33843 +#: guix-git/doc/guix.texi:34280 msgid "The Docker daemon package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33844 +#: guix-git/doc/guix.texi:34281 #, no-wrap msgid "@code{docker-cli} (default: @code{docker-cli})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33846 +#: guix-git/doc/guix.texi:34283 msgid "The Docker client package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33847 +#: guix-git/doc/guix.texi:34284 #, no-wrap msgid "@code{containerd} (default: @var{containerd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33849 +#: guix-git/doc/guix.texi:34286 msgid "The Containerd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33850 +#: guix-git/doc/guix.texi:34287 #, no-wrap msgid "@code{proxy} (default @var{docker-libnetwork-cmd-proxy})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33852 +#: guix-git/doc/guix.texi:34289 msgid "The Docker user-land networking proxy package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33853 +#: guix-git/doc/guix.texi:34290 #, no-wrap msgid "@code{enable-proxy?} (default @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33855 +#: guix-git/doc/guix.texi:34292 msgid "Enable or disable the use of the Docker user-land networking proxy." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33856 +#: guix-git/doc/guix.texi:34293 #, no-wrap msgid "@code{debug?} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33858 +#: guix-git/doc/guix.texi:34295 msgid "Enable or disable debug output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33859 +#: guix-git/doc/guix.texi:34296 #, no-wrap msgid "@code{enable-iptables?} (default @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33861 +#: guix-git/doc/guix.texi:34298 msgid "Enable or disable the addition of iptables rules." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33862 +#: guix-git/doc/guix.texi:34299 #, no-wrap msgid "@code{environment-variables} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33864 +#: guix-git/doc/guix.texi:34301 msgid "List of environment variables to set for @command{dockerd}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33867 +#: guix-git/doc/guix.texi:34304 msgid "This must be a list of strings where each string has the form @samp{@var{key}=@var{value}} as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33871 +#: guix-git/doc/guix.texi:34308 #, no-wrap msgid "" "(list \"LANGUAGE=eo:ca:eu\"\n" @@ -60731,196 +61552,196 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33876 +#: guix-git/doc/guix.texi:34313 #, no-wrap msgid "Singularity, container service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33877 +#: guix-git/doc/guix.texi:34314 #, no-wrap msgid "{Scheme Variable} singularity-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33882 +#: guix-git/doc/guix.texi:34319 msgid "This is the type of the service that allows you to run @url{https://www.sylabs.io/singularity/, Singularity}, a Docker-style tool to create and run application bundles (aka. ``containers''). The value for this service is the Singularity package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33886 +#: guix-git/doc/guix.texi:34323 msgid "The service does not install a daemon; instead, it installs helper programs as setuid-root (@pxref{Setuid Programs}) such that unprivileged users can invoke @command{singularity run} and similar commands." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33888 +#: guix-git/doc/guix.texi:34325 #, no-wrap msgid "Audit" msgstr "감사" #. type: subsubheading -#: guix-git/doc/guix.texi:33889 +#: guix-git/doc/guix.texi:34326 #, no-wrap msgid "Auditd Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33892 +#: guix-git/doc/guix.texi:34329 msgid "The @code{(gnu services auditd)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33893 +#: guix-git/doc/guix.texi:34330 #, no-wrap msgid "{Scheme Variable} auditd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33898 +#: guix-git/doc/guix.texi:34335 msgid "This is the type of the service that runs @url{https://people.redhat.com/sgrubb/audit/,auditd}, a daemon that tracks security-relevant information on your system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33900 +#: guix-git/doc/guix.texi:34337 msgid "Examples of things that can be tracked:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33904 +#: guix-git/doc/guix.texi:34341 msgid "File accesses" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33906 +#: guix-git/doc/guix.texi:34343 msgid "System calls" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33908 +#: guix-git/doc/guix.texi:34345 msgid "Invoked commands" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33910 +#: guix-git/doc/guix.texi:34347 msgid "Failed login attempts" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33912 +#: guix-git/doc/guix.texi:34349 msgid "Firewall filtering" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33914 +#: guix-git/doc/guix.texi:34351 msgid "Network access" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33925 +#: guix-git/doc/guix.texi:34362 msgid "@command{auditctl} from the @code{audit} package can be used in order to add or remove events to be tracked (until the next reboot). In order to permanently track events, put the command line arguments of auditctl into a file called @code{audit.rules} in the configuration directory (see below). @command{aureport} from the @code{audit} package can be used in order to view a report of all recorded events. The audit daemon by default logs into the file @file{/var/log/audit.log}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33928 +#: guix-git/doc/guix.texi:34365 #, no-wrap msgid "{Data Type} auditd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33930 +#: guix-git/doc/guix.texi:34367 msgid "This is the data type representing the configuration of auditd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33933 +#: guix-git/doc/guix.texi:34370 #, no-wrap msgid "@code{audit} (default: @code{audit})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33935 +#: guix-git/doc/guix.texi:34372 msgid "The audit package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33936 +#: guix-git/doc/guix.texi:34373 #, no-wrap msgid "@code{configuration-directory} (default: @code{%default-auditd-configuration-directory})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33940 +#: guix-git/doc/guix.texi:34377 msgid "The directory containing the configuration file for the audit package, which must be named @code{auditd.conf}, and optionally some audit rules to instantiate on startup." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33944 +#: guix-git/doc/guix.texi:34381 #, no-wrap msgid "rshiny" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33945 +#: guix-git/doc/guix.texi:34382 #, no-wrap msgid "R-Shiny service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33948 +#: guix-git/doc/guix.texi:34385 msgid "The @code{(gnu services science)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33949 +#: guix-git/doc/guix.texi:34386 #, no-wrap msgid "{Scheme Variable} rshiny-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33954 +#: guix-git/doc/guix.texi:34391 msgid "This is a type of service which is used to run a webapp created with @code{r-shiny}. This service sets the @env{R_LIBS_USER} environment variable and runs the provided script to call @code{runApp}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33955 +#: guix-git/doc/guix.texi:34392 #, no-wrap msgid "{Data Type} rshiny-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33957 +#: guix-git/doc/guix.texi:34394 msgid "This is the data type representing the configuration of rshiny." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33960 +#: guix-git/doc/guix.texi:34397 #, no-wrap msgid "@code{package} (default: @code{r-shiny})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33962 +#: guix-git/doc/guix.texi:34399 msgid "The package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33963 +#: guix-git/doc/guix.texi:34400 #, no-wrap msgid "@code{binary} (defaunlt @code{\"rshiny\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33966 +#: guix-git/doc/guix.texi:34403 msgid "The name of the binary or shell script located at @code{package/bin/} to run when the service is run." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33968 +#: guix-git/doc/guix.texi:34405 msgid "The common way to create this file is as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33985 +#: guix-git/doc/guix.texi:34422 #, no-wrap msgid "" "@dots{}\n" @@ -60941,35 +61762,35 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33991 +#: guix-git/doc/guix.texi:34428 #, no-wrap msgid "Nix" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33992 +#: guix-git/doc/guix.texi:34429 #, no-wrap msgid "Nix service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33995 +#: guix-git/doc/guix.texi:34432 msgid "The @code{(gnu services nix)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33996 +#: guix-git/doc/guix.texi:34433 #, no-wrap msgid "{Scheme Variable} nix-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34001 +#: guix-git/doc/guix.texi:34438 msgid "This is the type of the service that runs build daemon of the @url{https://nixos.org/nix/, Nix} package manager. Here is an example showing how to use it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34006 +#: guix-git/doc/guix.texi:34443 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -60979,7 +61800,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34011 +#: guix-git/doc/guix.texi:34448 #, no-wrap msgid "" "(operating-system\n" @@ -60990,7 +61811,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34014 +#: guix-git/doc/guix.texi:34451 #, no-wrap msgid "" " (services (append (list (service nix-service-type))\n" @@ -60998,29 +61819,29 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34017 +#: guix-git/doc/guix.texi:34454 msgid "After @command{guix system reconfigure} configure Nix for your user:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34019 +#: guix-git/doc/guix.texi:34456 #, no-wrap msgid "Add a Nix channel and update it. See" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:34021 +#: guix-git/doc/guix.texi:34458 msgid "@url{https://nixos.org/nix/manual/, Nix Package Manager Guide}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34022 +#: guix-git/doc/guix.texi:34459 #, no-wrap msgid "Create a symlink to your profile and activate Nix profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34028 +#: guix-git/doc/guix.texi:34465 #, no-wrap msgid "" "$ ln -s \"/nix/var/nix/profiles/per-user/$USER/profile\" ~/.nix-profile\n" @@ -61028,77 +61849,77 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34032 +#: guix-git/doc/guix.texi:34469 #, no-wrap msgid "{Data Type} nix-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34034 +#: guix-git/doc/guix.texi:34471 msgid "This data type represents the configuration of the Nix daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34036 +#: guix-git/doc/guix.texi:34473 #, no-wrap msgid "@code{nix} (default: @code{nix})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34038 +#: guix-git/doc/guix.texi:34475 msgid "The Nix package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34039 +#: guix-git/doc/guix.texi:34476 #, no-wrap msgid "@code{sandbox} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34041 +#: guix-git/doc/guix.texi:34478 msgid "Specifies whether builds are sandboxed by default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34042 +#: guix-git/doc/guix.texi:34479 #, no-wrap msgid "@code{build-sandbox-items} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34045 +#: guix-git/doc/guix.texi:34482 msgid "This is a list of strings or objects appended to the @code{build-sandbox-items} field of the configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34053 +#: guix-git/doc/guix.texi:34490 msgid "Extra command line options for @code{nix-service-type}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34059 +#: guix-git/doc/guix.texi:34496 #, no-wrap msgid "setuid programs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34069 +#: guix-git/doc/guix.texi:34506 msgid "Some programs need to run with ``root'' privileges, even when they are launched by unprivileged users. A notorious example is the @command{passwd} program, which users can run to change their password, and which needs to access the @file{/etc/passwd} and @file{/etc/shadow} files---something normally restricted to root, for obvious security reasons. To address that, these executables are @dfn{setuid-root}, meaning that they always run with root privileges (@pxref{How Change Persona,,, libc, The GNU C Library Reference Manual}, for more info about the setuid mechanism)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34076 +#: guix-git/doc/guix.texi:34513 msgid "The store itself @emph{cannot} contain setuid programs: that would be a security issue since any user on the system can write derivations that populate the store (@pxref{The Store}). Thus, a different mechanism is used: instead of changing the setuid bit directly on files that are in the store, we let the system administrator @emph{declare} which programs should be setuid root." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34083 +#: guix-git/doc/guix.texi:34520 msgid "The @code{setuid-programs} field of an @code{operating-system} declaration contains a list of @code{} denoting the names of programs to have a setuid or setgid bit set (@pxref{Using the Configuration System}). For instance, the @command{mount.nfs} program, which is part of the nfs-utils package, with a setuid root can be designated like this:" msgstr "" -#. type: example -#: guix-git/doc/guix.texi:34087 +#. type: lisp +#: guix-git/doc/guix.texi:34524 #, no-wrap msgid "" "(setuid-program\n" @@ -61106,164 +61927,166 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34092 +#: guix-git/doc/guix.texi:34529 msgid "And then, to make @command{mount.nfs} setuid on your system, add the previous example to your operating system declaration by appending it to @code{%setuid-programs} like this:" msgstr "" -#. type: example -#: guix-git/doc/guix.texi:34098 +#. type: lisp +#: guix-git/doc/guix.texi:34537 #, no-wrap msgid "" -"(setuid-programs\n" -" (append (list (setuid-program\n" -" (program (file-append nfs-utils \"/sbin/mount.nfs\"))))\n" -" %setuid-programs))\n" +"(operating-system\n" +" ;; Some fields omitted...\n" +" (setuid-programs\n" +" (append (list (setuid-program\n" +" (program (file-append nfs-utils \"/sbin/mount.nfs\")))\n" +" %setuid-programs))))\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34100 +#: guix-git/doc/guix.texi:34539 #, fuzzy, no-wrap msgid "{Data Type} setuid-program" msgstr "설정" #. type: deftp -#: guix-git/doc/guix.texi:34102 +#: guix-git/doc/guix.texi:34541 msgid "This data type represents a program with a setuid or setgid bit set." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:34104 +#: guix-git/doc/guix.texi:34543 #, no-wrap msgid "program" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34106 +#: guix-git/doc/guix.texi:34545 msgid "A file-like object having its setuid and/or setgid bit set." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34107 +#: guix-git/doc/guix.texi:34546 #, no-wrap msgid "@code{setuid?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34109 +#: guix-git/doc/guix.texi:34548 #, fuzzy #| msgid "Whether to use a snippet, or a build phase." msgid "Whether to set user setuid bit." msgstr "단편적인 또는 구성 단계 사용 여부." #. type: item -#: guix-git/doc/guix.texi:34110 +#: guix-git/doc/guix.texi:34549 #, no-wrap msgid "@code{setgid?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34112 +#: guix-git/doc/guix.texi:34551 msgid "Whether to set group setgid bit." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34113 +#: guix-git/doc/guix.texi:34552 #, no-wrap msgid "@code{user} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34116 +#: guix-git/doc/guix.texi:34555 msgid "UID (integer) or user name (string) for the user owner of the program, defaults to root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34117 +#: guix-git/doc/guix.texi:34556 #, no-wrap msgid "@code{group} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34120 +#: guix-git/doc/guix.texi:34559 msgid "GID (integer) goup name (string) for the group owner of the program, defaults to root." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34126 +#: guix-git/doc/guix.texi:34565 msgid "A default set of setuid programs is defined by the @code{%setuid-programs} variable of the @code{(gnu system)} module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34127 +#: guix-git/doc/guix.texi:34566 #, no-wrap msgid "{Scheme Variable} %setuid-programs" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34130 +#: guix-git/doc/guix.texi:34569 msgid "A list of @code{} denoting common programs that are setuid-root." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34133 +#: guix-git/doc/guix.texi:34572 msgid "The list includes commands such as @command{passwd}, @command{ping}, @command{su}, and @command{sudo}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34139 +#: guix-git/doc/guix.texi:34578 msgid "Under the hood, the actual setuid programs are created in the @file{/run/setuid-programs} directory at system activation time. The files in this directory refer to the ``real'' binaries, which are in the store." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34143 +#: guix-git/doc/guix.texi:34582 #, no-wrap msgid "HTTPS, certificates" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34144 +#: guix-git/doc/guix.texi:34583 #, no-wrap msgid "X.509 certificates" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34145 +#: guix-git/doc/guix.texi:34584 #, no-wrap msgid "TLS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34152 +#: guix-git/doc/guix.texi:34591 msgid "Web servers available over HTTPS (that is, HTTP over the transport-layer security mechanism, TLS) send client programs an @dfn{X.509 certificate} that the client can then use to @emph{authenticate} the server. To do that, clients verify that the server's certificate is signed by a so-called @dfn{certificate authority} (CA). But to verify the CA's signature, clients must have first acquired the CA's certificate." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34156 +#: guix-git/doc/guix.texi:34595 msgid "Web browsers such as GNU@tie{}IceCat include their own set of CA certificates, such that they are able to verify CA signatures out-of-the-box." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34160 +#: guix-git/doc/guix.texi:34599 msgid "However, most other programs that can talk HTTPS---@command{wget}, @command{git}, @command{w3m}, etc.---need to be told where CA certificates can be found." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34167 +#: guix-git/doc/guix.texi:34606 msgid "In Guix, this is done by adding a package that provides certificates to the @code{packages} field of the @code{operating-system} declaration (@pxref{operating-system Reference}). Guix includes one such package, @code{nss-certs}, which is a set of CA certificates provided as part of Mozilla's Network Security Services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34172 +#: guix-git/doc/guix.texi:34611 msgid "Note that it is @emph{not} part of @code{%base-packages}, so you need to explicitly add it. The @file{/etc/ssl/certs} directory, which is where most applications and libraries look for certificates by default, points to the certificates installed globally." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34182 +#: guix-git/doc/guix.texi:34621 msgid "Unprivileged users, including users of Guix on a foreign distro, can also install their own certificate package in their profile. A number of environment variables need to be defined so that applications and libraries know where to find them. Namely, the OpenSSL library honors the @env{SSL_CERT_DIR} and @env{SSL_CERT_FILE} variables. Some applications add their own environment variables; for instance, the Git version control system honors the certificate bundle pointed to by the @env{GIT_SSL_CAINFO} environment variable. Thus, you would typically run something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34188 +#: guix-git/doc/guix.texi:34627 #, no-wrap msgid "" "guix install nss-certs\n" @@ -61273,12 +62096,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34193 +#: guix-git/doc/guix.texi:34632 msgid "As another example, R requires the @env{CURL_CA_BUNDLE} environment variable to point to a certificate bundle, so you would have to run something like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34197 +#: guix-git/doc/guix.texi:34636 #, no-wrap msgid "" "guix install nss-certs\n" @@ -61286,51 +62109,51 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34201 +#: guix-git/doc/guix.texi:34640 msgid "For other applications you may want to look up the required environment variable in the relevant documentation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34206 +#: guix-git/doc/guix.texi:34645 #, no-wrap msgid "name service switch" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34207 +#: guix-git/doc/guix.texi:34646 #, no-wrap msgid "NSS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34216 +#: guix-git/doc/guix.texi:34655 msgid "The @code{(gnu system nss)} module provides bindings to the configuration file of the libc @dfn{name service switch} or @dfn{NSS} (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference Manual}). In a nutshell, the NSS is a mechanism that allows libc to be extended with new ``name'' lookup methods for system databases, which includes host names, service names, user accounts, and more (@pxref{Name Service Switch, System Databases and Name Service Switch,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34223 +#: guix-git/doc/guix.texi:34662 msgid "The NSS configuration specifies, for each system database, which lookup method is to be used, and how the various methods are chained together---for instance, under which circumstances NSS should try the next method in the list. The NSS configuration is given in the @code{name-service-switch} field of @code{operating-system} declarations (@pxref{operating-system Reference, @code{name-service-switch}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34224 +#: guix-git/doc/guix.texi:34663 #, no-wrap msgid "nss-mdns" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34225 +#: guix-git/doc/guix.texi:34664 #, no-wrap msgid ".local, host name lookup" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34230 +#: guix-git/doc/guix.texi:34669 msgid "As an example, the declaration below configures the NSS to use the @uref{https://0pointer.de/lennart/projects/nss-mdns/, @code{nss-mdns} back-end}, which supports host name lookups over multicast DNS (mDNS) for host names ending in @code{.local}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34234 +#: guix-git/doc/guix.texi:34673 #, no-wrap msgid "" "(name-service-switch\n" @@ -61339,7 +62162,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34239 +#: guix-git/doc/guix.texi:34678 #, no-wrap msgid "" " ;; If the above did not succeed, try\n" @@ -61350,7 +62173,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34245 +#: guix-git/doc/guix.texi:34684 #, no-wrap msgid "" " ;; 'mdns_minimal' is authoritative for\n" @@ -61362,7 +62185,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34249 +#: guix-git/doc/guix.texi:34688 #, no-wrap msgid "" " ;; Then fall back to DNS.\n" @@ -61372,7 +62195,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34253 +#: guix-git/doc/guix.texi:34692 #, no-wrap msgid "" " ;; Finally, try with the \"full\" 'mdns'.\n" @@ -61381,151 +62204,151 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34258 +#: guix-git/doc/guix.texi:34697 msgid "Do not worry: the @code{%mdns-host-lookup-nss} variable (see below) contains this configuration, so you will not have to type it if all you want is to have @code{.local} host lookup working." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34266 +#: guix-git/doc/guix.texi:34705 msgid "Note that, in this case, in addition to setting the @code{name-service-switch} of the @code{operating-system} declaration, you also need to use @code{avahi-service-type} (@pxref{Networking Services, @code{avahi-service-type}}), or @code{%desktop-services}, which includes it (@pxref{Desktop Services}). Doing this makes @code{nss-mdns} accessible to the name service cache daemon (@pxref{Base Services, @code{nscd-service}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34269 +#: guix-git/doc/guix.texi:34708 msgid "For convenience, the following variables provide typical NSS configurations." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34270 +#: guix-git/doc/guix.texi:34709 #, no-wrap msgid "{Scheme Variable} %default-nss" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34273 +#: guix-git/doc/guix.texi:34712 msgid "This is the default name service switch configuration, a @code{name-service-switch} object." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34275 +#: guix-git/doc/guix.texi:34714 #, no-wrap msgid "{Scheme Variable} %mdns-host-lookup-nss" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34278 +#: guix-git/doc/guix.texi:34717 msgid "This is the name service switch configuration with support for host name lookup over multicast DNS (mDNS) for host names ending in @code{.local}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34288 +#: guix-git/doc/guix.texi:34727 msgid "The reference for name service switch configuration is given below. It is a direct mapping of the configuration file format of the C library , so please refer to the C library manual for more information (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference Manual}). Compared to the configuration file format of libc NSS, it has the advantage not only of adding this warm parenthetic feel that we like, but also static checks: you will know about syntax errors and typos as soon as you run @command{guix system}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34289 +#: guix-git/doc/guix.texi:34728 #, no-wrap msgid "{Data Type} name-service-switch" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34294 +#: guix-git/doc/guix.texi:34733 msgid "This is the data type representation the configuration of libc's name service switch (NSS). Each field below represents one of the supported system databases." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34296 +#: guix-git/doc/guix.texi:34735 #, no-wrap msgid "aliases" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34297 +#: guix-git/doc/guix.texi:34736 #, no-wrap msgid "ethers" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34299 +#: guix-git/doc/guix.texi:34738 #, no-wrap msgid "gshadow" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34300 +#: guix-git/doc/guix.texi:34739 #, no-wrap msgid "hosts" msgstr "호스트" #. type: itemx -#: guix-git/doc/guix.texi:34301 +#: guix-git/doc/guix.texi:34740 #, no-wrap msgid "initgroups" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34302 +#: guix-git/doc/guix.texi:34741 #, no-wrap msgid "netgroup" msgstr "넷그룹" #. type: itemx -#: guix-git/doc/guix.texi:34303 +#: guix-git/doc/guix.texi:34742 #, no-wrap msgid "networks" msgstr "네트워크" #. type: itemx -#: guix-git/doc/guix.texi:34306 +#: guix-git/doc/guix.texi:34745 #, no-wrap msgid "rpc" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34308 +#: guix-git/doc/guix.texi:34747 #, no-wrap msgid "shadow" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34311 +#: guix-git/doc/guix.texi:34750 msgid "The system databases handled by the NSS@. Each of these fields must be a list of @code{} objects (see below)." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34314 +#: guix-git/doc/guix.texi:34753 #, no-wrap msgid "{Data Type} name-service" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34318 +#: guix-git/doc/guix.texi:34757 msgid "This is the data type representing an actual name service and the associated lookup action." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34323 +#: guix-git/doc/guix.texi:34762 msgid "A string denoting the name service (@pxref{Services in the NSS configuration,,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34328 +#: guix-git/doc/guix.texi:34767 msgid "Note that name services listed here must be visible to nscd. This is achieved by passing the @code{#:name-services} argument to @code{nscd-service} the list of packages providing the needed name services (@pxref{Base Services, @code{nscd-service}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34329 +#: guix-git/doc/guix.texi:34768 #, no-wrap msgid "reaction" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34333 +#: guix-git/doc/guix.texi:34772 msgid "An action specified using the @code{lookup-specification} macro (@pxref{Actions in the NSS configuration,,, libc, The GNU C Library Reference Manual}). For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34337 +#: guix-git/doc/guix.texi:34776 #, no-wrap msgid "" "(lookup-specification (unavailable => continue)\n" @@ -61533,17 +62356,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34351 +#: guix-git/doc/guix.texi:34790 msgid "For bootstrapping purposes, the Linux-Libre kernel is passed an @dfn{initial RAM disk}, or @dfn{initrd}. An initrd contains a temporary root file system as well as an initialization script. The latter is responsible for mounting the real root file system, and for loading any kernel modules that may be needed to achieve that." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34360 +#: guix-git/doc/guix.texi:34799 msgid "The @code{initrd-modules} field of an @code{operating-system} declaration allows you to specify Linux-libre kernel modules that must be available in the initrd. In particular, this is where you would list modules needed to actually drive the hard disk where your root partition is---although the default value of @code{initrd-modules} should cover most use cases. For example, assuming you need the @code{megaraid_sas} module in addition to the default modules to be able to access your root file system, you would write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34365 +#: guix-git/doc/guix.texi:34804 #, no-wrap msgid "" "(operating-system\n" @@ -61552,28 +62375,28 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34367 +#: guix-git/doc/guix.texi:34806 #, no-wrap msgid "{Scheme Variable} %base-initrd-modules" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34369 +#: guix-git/doc/guix.texi:34808 msgid "This is the list of kernel modules included in the initrd by default." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34377 +#: guix-git/doc/guix.texi:34816 msgid "Furthermore, if you need lower-level customization, the @code{initrd} field of an @code{operating-system} declaration allows you to specify which initrd you would like to use. The @code{(gnu system linux-initrd)} module provides three ways to build an initrd: the high-level @code{base-initrd} procedure and the low-level @code{raw-initrd} and @code{expression->initrd} procedures." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34382 +#: guix-git/doc/guix.texi:34821 msgid "The @code{base-initrd} procedure is intended to cover most common uses. For example, if you want to add a bunch of kernel modules to be loaded at boot time, you can define the @code{initrd} field of the operating system declaration like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34390 +#: guix-git/doc/guix.texi:34829 #, no-wrap msgid "" "(initrd (lambda (file-systems . rest)\n" @@ -61585,447 +62408,447 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34395 +#: guix-git/doc/guix.texi:34834 msgid "The @code{base-initrd} procedure also handles common use cases that involves using the system as a QEMU guest, or as a ``live'' system with volatile root file system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34402 +#: guix-git/doc/guix.texi:34841 msgid "The @code{base-initrd} procedure is built from @code{raw-initrd} procedure. Unlike @code{base-initrd}, @code{raw-initrd} doesn't do anything high-level, such as trying to guess which kernel modules and packages should be included to the initrd. An example use of @code{raw-initrd} is when a user has a custom Linux kernel configuration and default kernel modules included by @code{base-initrd} are not available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34407 +#: guix-git/doc/guix.texi:34846 msgid "The initial RAM disk produced by @code{base-initrd} or @code{raw-initrd} honors several options passed on the Linux kernel command line (that is, arguments passed @i{via} the @code{linux} command of GRUB, or the @code{-append} option of QEMU), notably:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34409 +#: guix-git/doc/guix.texi:34848 #, no-wrap msgid "--load=@var{boot}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34412 +#: guix-git/doc/guix.texi:34851 msgid "Tell the initial RAM disk to load @var{boot}, a file containing a Scheme program, once it has mounted the root file system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34416 +#: guix-git/doc/guix.texi:34855 msgid "Guix uses this option to yield control to a boot program that runs the service activation programs and then spawns the GNU@tie{}Shepherd, the initialization system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34417 +#: guix-git/doc/guix.texi:34856 #, no-wrap msgid "--root=@var{root}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34422 +#: guix-git/doc/guix.texi:34861 msgid "Mount @var{root} as the root file system. @var{root} can be a device name like @code{/dev/sda1}, a file system label, or a file system UUID. When unspecified, the device name from the root file system of the operating system declaration is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34423 +#: guix-git/doc/guix.texi:34862 #, no-wrap msgid "fsck.mode=@var{mode}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34429 +#: guix-git/doc/guix.texi:34868 msgid "Whether to check the @var{root} file system for errors before mounting it. @var{mode} is one of @code{skip} (never check), @code{force} (always check), or @code{auto} to respect the root file-system object's 'check?' setting (@pxref{File Systems}) and run a full scan only if the file system was not cleanly shut down." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34432 +#: guix-git/doc/guix.texi:34871 msgid "@code{auto} is the default if this option is not present or if @var{mode} is not one of the above." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34433 +#: guix-git/doc/guix.texi:34872 #, no-wrap msgid "fsck.repair=@var{level}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34438 +#: guix-git/doc/guix.texi:34877 msgid "The level of repairs to perform automatically if errors are found in the @var{root} file system. @var{level} is one of @code{no} (do not write to @var{root} at all if possible), @code{yes} (repair as much as possible), or @code{preen} to repair problems considered safe to repair automatically." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34441 +#: guix-git/doc/guix.texi:34880 msgid "@code{preen} is the default if this option is not present or if @var{level} is not one of the above." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34445 +#: guix-git/doc/guix.texi:34884 msgid "Have @file{/run/booted-system} and @file{/run/current-system} point to @var{system}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34446 +#: guix-git/doc/guix.texi:34885 #, no-wrap msgid "modprobe.blacklist=@var{modules}@dots{}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34447 +#: guix-git/doc/guix.texi:34886 #, no-wrap msgid "module, black-listing" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34448 +#: guix-git/doc/guix.texi:34887 #, no-wrap msgid "black list, of kernel modules" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34453 +#: guix-git/doc/guix.texi:34892 msgid "Instruct the initial RAM disk as well as the @command{modprobe} command (from the kmod package) to refuse to load @var{modules}. @var{modules} must be a comma-separated list of module names---e.g., @code{usbkbd,9pnet}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34454 +#: guix-git/doc/guix.texi:34893 #, no-wrap msgid "--repl" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34460 +#: guix-git/doc/guix.texi:34899 msgid "Start a read-eval-print loop (REPL) from the initial RAM disk before it tries to load kernel modules and to mount the root file system. Our marketing team calls it @dfn{boot-to-Guile}. The Schemer in you will love it. @xref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}, for more information on Guile's REPL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34466 +#: guix-git/doc/guix.texi:34905 msgid "Now that you know all the features that initial RAM disks produced by @code{base-initrd} and @code{raw-initrd} provide, here is how to use it and customize it further." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34469 +#: guix-git/doc/guix.texi:34908 #, no-wrap msgid "{Scheme Procedure} raw-initrd @var{file-systems} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34483 +#: guix-git/doc/guix.texi:34922 msgid "[#:linux-modules '()] [#:mapped-devices '()] @ [#:keyboard-layout #f] @ [#:helper-packages '()] [#:qemu-networking? #f] [#:volatile-root? #f] Return a derivation that builds a raw initrd. @var{file-systems} is a list of file systems to be mounted by the initrd, possibly in addition to the root file system specified on the kernel command line via @option{--root}. @var{linux-modules} is a list of kernel modules to be loaded at boot time. @var{mapped-devices} is a list of device mappings to realize before @var{file-systems} are mounted (@pxref{Mapped Devices}). @var{helper-packages} is a list of packages to be copied in the initrd. It may include @code{e2fsck/static} or other packages needed by the initrd to check the root file system." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34489 guix-git/doc/guix.texi:34513 +#: guix-git/doc/guix.texi:34928 guix-git/doc/guix.texi:34952 msgid "When true, @var{keyboard-layout} is a @code{} record denoting the desired console keyboard layout. This is done before @var{mapped-devices} are set up and before @var{file-systems} are mounted such that, should the user need to enter a passphrase or use the REPL, this happens using the intended keyboard layout." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34493 +#: guix-git/doc/guix.texi:34932 msgid "When @var{qemu-networking?} is true, set up networking with the standard QEMU parameters. When @var{virtio?} is true, load additional modules so that the initrd can be used as a QEMU guest with para-virtualized I/O drivers." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34496 +#: guix-git/doc/guix.texi:34935 msgid "When @var{volatile-root?} is true, the root file system is writable but any changes to it are lost." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34498 +#: guix-git/doc/guix.texi:34937 #, no-wrap msgid "{Scheme Procedure} base-initrd @var{file-systems} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34507 +#: guix-git/doc/guix.texi:34946 msgid "[#:mapped-devices '()] [#:keyboard-layout #f] @ [#:qemu-networking? #f] [#:volatile-root? #f] @ [#:linux-modules '()] Return as a file-like object a generic initrd, with kernel modules taken from @var{linux}. @var{file-systems} is a list of file-systems to be mounted by the initrd, possibly in addition to the root file system specified on the kernel command line via @option{--root}. @var{mapped-devices} is a list of device mappings to realize before @var{file-systems} are mounted." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34515 +#: guix-git/doc/guix.texi:34954 msgid "@var{qemu-networking?} and @var{volatile-root?} behaves as in @code{raw-initrd}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34520 +#: guix-git/doc/guix.texi:34959 msgid "The initrd is automatically populated with all the kernel modules necessary for @var{file-systems} and for the given options. Additional kernel modules can be listed in @var{linux-modules}. They will be added to the initrd, and loaded at boot time in the order in which they appear." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34527 +#: guix-git/doc/guix.texi:34966 msgid "Needless to say, the initrds we produce and use embed a statically-linked Guile, and the initialization program is a Guile program. That gives a lot of flexibility. The @code{expression->initrd} procedure builds such an initrd, given the program to run in that initrd." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34528 +#: guix-git/doc/guix.texi:34967 #, no-wrap msgid "{Scheme Procedure} expression->initrd @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34534 +#: guix-git/doc/guix.texi:34973 msgid "[#:guile %guile-static-stripped] [#:name \"guile-initrd\"] Return as a file-like object a Linux initrd (a gzipped cpio archive) containing @var{guile} and that evaluates @var{exp}, a G-expression, upon booting. All the derivations referenced by @var{exp} are automatically copied to the initrd." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34540 +#: guix-git/doc/guix.texi:34979 #, no-wrap msgid "boot loader" msgstr "부트로더" #. type: Plain text -#: guix-git/doc/guix.texi:34547 +#: guix-git/doc/guix.texi:34986 msgid "The operating system supports multiple bootloaders. The bootloader is configured using @code{bootloader-configuration} declaration. All the fields of this structure are bootloader agnostic except for one field, @code{bootloader} that indicates the bootloader to be configured and installed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34552 +#: guix-git/doc/guix.texi:34991 msgid "Some of the bootloaders do not honor every field of @code{bootloader-configuration}. For instance, the extlinux bootloader does not support themes and thus ignores the @code{theme} field." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34553 +#: guix-git/doc/guix.texi:34992 #, no-wrap msgid "{Data Type} bootloader-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34555 +#: guix-git/doc/guix.texi:34994 msgid "The type of a bootloader configuration declaration." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34559 +#: guix-git/doc/guix.texi:34998 #, no-wrap msgid "EFI, bootloader" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34560 +#: guix-git/doc/guix.texi:34999 #, no-wrap msgid "UEFI, bootloader" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34561 +#: guix-git/doc/guix.texi:35000 #, no-wrap msgid "BIOS, bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34566 +#: guix-git/doc/guix.texi:35005 msgid "The bootloader to use, as a @code{bootloader} object. For now @code{grub-bootloader}, @code{grub-efi-bootloader}, @code{grub-efi-netboot-bootloader}, @code{extlinux-bootloader} and @code{u-boot-bootloader} are supported." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34567 +#: guix-git/doc/guix.texi:35006 #, no-wrap msgid "ARM, bootloaders" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34568 +#: guix-git/doc/guix.texi:35007 #, no-wrap msgid "AArch64, bootloaders" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34573 +#: guix-git/doc/guix.texi:35012 msgid "Available bootloaders are described in @code{(gnu bootloader @dots{})} modules. In particular, @code{(gnu bootloader u-boot)} contains definitions of bootloaders for a wide range of ARM and AArch64 systems, using the @uref{https://www.denx.de/wiki/U-Boot/, U-Boot bootloader}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34579 +#: guix-git/doc/guix.texi:35018 msgid "@code{grub-efi-bootloader} allows to boot on modern systems using the @dfn{Unified Extensible Firmware Interface} (UEFI). This is what you should use if the installation image contains a @file{/sys/firmware/efi} directory when you boot it on your system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34583 +#: guix-git/doc/guix.texi:35022 msgid "@code{grub-bootloader} allows you to boot in particular Intel-based machines in ``legacy'' BIOS mode." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:34584 +#: guix-git/doc/guix.texi:35023 #, no-wrap msgid "grub-efi-netboot-bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34588 +#: guix-git/doc/guix.texi:35027 msgid "@code{grub-efi-netboot-bootloader} allows you to boot your system over network through TFTP@. In combination with an NFS root file system this allows you to build a diskless Guix system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34594 +#: guix-git/doc/guix.texi:35033 msgid "The installation of the @code{grub-efi-netboot-bootloader} generates the content of the TFTP root directory at @code{targets} (@pxref{Bootloader Configuration, @code{targets}}), to be served by a TFTP server. You may want to mount your TFTP server directories onto the @code{targets} to move the required files to the TFTP server automatically." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34603 +#: guix-git/doc/guix.texi:35042 msgid "If you plan to use an NFS root file system as well (actually if you mount the store from an NFS share), then the TFTP server needs to serve the file @file{/boot/grub/grub.cfg} and other files from the store (like GRUBs background image, the kernel (@pxref{operating-system Reference, @code{kernel}}) and the initrd (@pxref{operating-system Reference, @code{initrd}})), too. All these files from the store will be accessed by GRUB through TFTP with their normal store path, for example as @file{tftp://tftp-server/gnu/store/…-initrd/initrd.cpio.gz}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34612 +#: guix-git/doc/guix.texi:35051 msgid "Two symlinks are created to make this possible. For each target in the @code{targets} field, the first symlink is @samp{target}@file{/efi/Guix/boot/grub/grub.cfg} pointing to @file{../../../boot/grub/grub.cfg}, where @samp{target} may be @file{/boot}. In this case the link is not leaving the served TFTP root directory, but otherwise it does. The second link is @samp{target}@file{/gnu/store} and points to @file{../gnu/store}. This link is leaving the served TFTP root directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34618 +#: guix-git/doc/guix.texi:35057 msgid "The assumption behind all this is that you have an NFS server exporting the root file system for your Guix system, and additionally a TFTP server exporting your @code{targets} directories—usually a single @file{/boot}—from that same root file system for your Guix system. In this constellation the symlinks will work." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34623 +#: guix-git/doc/guix.texi:35062 msgid "For other constellations you will have to program your own bootloader installer, which then takes care to make necessary files from the store accessible through TFTP, for example by copying them into the TFTP root directory to your @code{targets}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34628 +#: guix-git/doc/guix.texi:35067 msgid "It is important to note that symlinks pointing outside the TFTP root directory may need to be allowed in the configuration of your TFTP server. Further the store link exposes the whole store through TFTP@. Both points need to be considered carefully for security aspects." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34633 +#: guix-git/doc/guix.texi:35072 msgid "Beside the @code{grub-efi-netboot-bootloader}, the already mentioned TFTP and NFS servers, you also need a properly configured DHCP server to make the booting over netboot possible. For all this we can currently only recommend you to look for instructions about @acronym{PXE, Preboot eXecution Environment}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34637 +#: guix-git/doc/guix.texi:35076 msgid "This is a list of strings denoting the targets onto which to install the bootloader." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34647 +#: guix-git/doc/guix.texi:35086 msgid "The interpretation of targets depends on the bootloader in question. For @code{grub-bootloader}, for example, they should be device names understood by the bootloader @command{installer} command, such as @code{/dev/sda} or @code{(hd0)} (@pxref{Invoking grub-install,,, grub, GNU GRUB Manual}). For @code{grub-efi-bootloader}, they should be mount points of the EFI file system, usually @file{/boot/efi}. For @code{grub-efi-netboot-bootloader}, @code{targets} should be the mount points corresponding to TFTP root directories served by your TFTP server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34648 +#: guix-git/doc/guix.texi:35087 #, no-wrap msgid "@code{menu-entries} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34652 +#: guix-git/doc/guix.texi:35091 msgid "A possibly empty list of @code{menu-entry} objects (see below), denoting entries to appear in the bootloader menu, in addition to the current system entry and the entry pointing to previous system generations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34653 +#: guix-git/doc/guix.texi:35092 #, no-wrap msgid "@code{default-entry} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34656 +#: guix-git/doc/guix.texi:35095 msgid "The index of the default boot menu entry. Index 0 is for the entry of the current system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34657 +#: guix-git/doc/guix.texi:35096 #, no-wrap msgid "@code{timeout} (default: @code{5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34660 +#: guix-git/doc/guix.texi:35099 msgid "The number of seconds to wait for keyboard input before booting. Set to 0 to boot immediately, and to -1 to wait indefinitely." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34661 +#: guix-git/doc/guix.texi:35100 #, no-wrap msgid "keyboard layout, for the bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34665 +#: guix-git/doc/guix.texi:35104 msgid "If this is @code{#f}, the bootloader's menu (if any) uses the default keyboard layout, usually US@tie{}English (``qwerty'')." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34668 +#: guix-git/doc/guix.texi:35107 msgid "Otherwise, this must be a @code{keyboard-layout} object (@pxref{Keyboard Layout})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:34672 +#: guix-git/doc/guix.texi:35111 msgid "This option is currently ignored by bootloaders other than @code{grub} and @code{grub-efi}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34674 +#: guix-git/doc/guix.texi:35113 #, no-wrap msgid "@code{theme} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34678 +#: guix-git/doc/guix.texi:35117 msgid "The bootloader theme object describing the theme to use. If no theme is provided, some bootloaders might use a default theme, that's true for GRUB." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34679 +#: guix-git/doc/guix.texi:35118 #, no-wrap msgid "@code{terminal-outputs} (default: @code{'(gfxterm)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34686 +#: guix-git/doc/guix.texi:35125 msgid "The output terminals used for the bootloader boot menu, as a list of symbols. GRUB accepts the values: @code{console}, @code{serial}, @code{serial_@{0-3@}}, @code{gfxterm}, @code{vga_text}, @code{mda_text}, @code{morse}, and @code{pkmodem}. This field corresponds to the GRUB variable @code{GRUB_TERMINAL_OUTPUT} (@pxref{Simple configuration,,, grub,GNU GRUB manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34687 +#: guix-git/doc/guix.texi:35126 #, no-wrap msgid "@code{terminal-inputs} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34695 +#: guix-git/doc/guix.texi:35134 msgid "The input terminals used for the bootloader boot menu, as a list of symbols. For GRUB, the default is the native platform terminal as determined at run-time. GRUB accepts the values: @code{console}, @code{serial}, @code{serial_@{0-3@}}, @code{at_keyboard}, and @code{usb_keyboard}. This field corresponds to the GRUB variable @code{GRUB_TERMINAL_INPUT} (@pxref{Simple configuration,,, grub,GNU GRUB manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34696 +#: guix-git/doc/guix.texi:35135 #, no-wrap msgid "@code{serial-unit} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34700 +#: guix-git/doc/guix.texi:35139 msgid "The serial unit used by the bootloader, as an integer from 0 to 3. For GRUB, it is chosen at run-time; currently GRUB chooses 0, which corresponds to COM1 (@pxref{Serial terminal,,, grub,GNU GRUB manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34701 +#: guix-git/doc/guix.texi:35140 #, no-wrap msgid "@code{serial-speed} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34705 +#: guix-git/doc/guix.texi:35144 msgid "The speed of the serial interface, as an integer. For GRUB, the default value is chosen at run-time; currently GRUB chooses 9600@tie{}bps (@pxref{Serial terminal,,, grub,GNU GRUB manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34709 +#: guix-git/doc/guix.texi:35148 #, no-wrap msgid "dual boot" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34710 +#: guix-git/doc/guix.texi:35149 #, no-wrap msgid "boot menu" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34716 +#: guix-git/doc/guix.texi:35155 msgid "Should you want to list additional boot menu entries @i{via} the @code{menu-entries} field above, you will need to create them with the @code{menu-entry} form. For example, imagine you want to be able to boot another distro (hard to imagine!), you can define a menu entry along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34723 +#: guix-git/doc/guix.texi:35162 #, no-wrap msgid "" "(menu-entry\n" @@ -62036,132 +62859,132 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34726 +#: guix-git/doc/guix.texi:35165 msgid "Details below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34727 +#: guix-git/doc/guix.texi:35166 #, no-wrap msgid "{Data Type} menu-entry" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34729 +#: guix-git/doc/guix.texi:35168 msgid "The type of an entry in the bootloader menu." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34734 +#: guix-git/doc/guix.texi:35173 msgid "The label to show in the menu---e.g., @code{\"GNU\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34735 +#: guix-git/doc/guix.texi:35174 #, no-wrap msgid "@code{linux} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34737 +#: guix-git/doc/guix.texi:35176 msgid "The Linux kernel image to boot, for example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34740 +#: guix-git/doc/guix.texi:35179 #, no-wrap msgid "(file-append linux-libre \"/bzImage\")\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34745 +#: guix-git/doc/guix.texi:35184 msgid "For GRUB, it is also possible to specify a device explicitly in the file path using GRUB's device naming convention (@pxref{Naming convention,,, grub, GNU GRUB manual}), for example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34748 +#: guix-git/doc/guix.texi:35187 #, no-wrap msgid "\"(hd0,msdos1)/boot/vmlinuz\"\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34752 +#: guix-git/doc/guix.texi:35191 msgid "If the device is specified explicitly as above, then the @code{device} field is ignored entirely." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34753 +#: guix-git/doc/guix.texi:35192 #, no-wrap msgid "@code{linux-arguments} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34756 +#: guix-git/doc/guix.texi:35195 msgid "The list of extra Linux kernel command-line arguments---e.g., @code{(\"console=ttyS0\")}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34757 +#: guix-git/doc/guix.texi:35196 #, no-wrap msgid "@code{initrd} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34760 +#: guix-git/doc/guix.texi:35199 msgid "A G-Expression or string denoting the file name of the initial RAM disk to use (@pxref{G-Expressions})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34764 +#: guix-git/doc/guix.texi:35203 msgid "The device where the kernel and initrd are to be found---i.e., for GRUB, @dfn{root} for this menu entry (@pxref{root,,, grub, GNU GRUB manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34770 +#: guix-git/doc/guix.texi:35209 msgid "This may be a file system label (a string), a file system UUID (a bytevector, @pxref{File Systems}), or @code{#f}, in which case the bootloader will search the device containing the file specified by the @code{linux} field (@pxref{search,,, grub, GNU GRUB manual}). It must @emph{not} be an OS device name such as @file{/dev/sda1}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34771 +#: guix-git/doc/guix.texi:35210 #, no-wrap msgid "@code{multiboot-kernel} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34775 +#: guix-git/doc/guix.texi:35214 msgid "The kernel to boot in Multiboot-mode (@pxref{multiboot,,, grub, GNU GRUB manual}). When this field is set, a Multiboot menu-entry is generated. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34778 +#: guix-git/doc/guix.texi:35217 #, no-wrap msgid "(file-append mach \"/boot/gnumach\")\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34780 +#: guix-git/doc/guix.texi:35219 #, no-wrap msgid "@code{multiboot-arguments} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34782 +#: guix-git/doc/guix.texi:35221 msgid "The list of extra command-line arguments for the multiboot-kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34783 +#: guix-git/doc/guix.texi:35222 #, no-wrap msgid "@code{multiboot-modules} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34785 +#: guix-git/doc/guix.texi:35224 msgid "The list of commands for loading Multiboot modules. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34791 +#: guix-git/doc/guix.texi:35230 #, no-wrap msgid "" "(list (list (file-append hurd \"/hurd/ext2fs.static\") \"ext2fs\"\n" @@ -62171,73 +62994,73 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34796 guix-git/doc/guix.texi:34855 +#: guix-git/doc/guix.texi:35235 guix-git/doc/guix.texi:35294 #, no-wrap msgid "HDPI" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34797 guix-git/doc/guix.texi:34856 +#: guix-git/doc/guix.texi:35236 guix-git/doc/guix.texi:35295 #, no-wrap msgid "HiDPI" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34798 guix-git/doc/guix.texi:34857 +#: guix-git/doc/guix.texi:35237 guix-git/doc/guix.texi:35296 #, no-wrap msgid "resolution" msgstr "해상도" #. type: Plain text -#: guix-git/doc/guix.texi:34802 +#: guix-git/doc/guix.texi:35241 msgid "For now only GRUB has theme support. GRUB themes are created using the @code{grub-theme} form, which is not fully documented yet." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34803 +#: guix-git/doc/guix.texi:35242 #, no-wrap msgid "{Data Type} grub-theme" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34805 +#: guix-git/doc/guix.texi:35244 msgid "Data type representing the configuration of the GRUB theme." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34807 +#: guix-git/doc/guix.texi:35246 #, no-wrap msgid "@code{gfxmode} (default: @code{'(\"auto\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34810 +#: guix-git/doc/guix.texi:35249 msgid "The GRUB @code{gfxmode} to set (a list of screen resolution strings, @pxref{gfxmode,,, grub, GNU GRUB manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34813 +#: guix-git/doc/guix.texi:35252 #, no-wrap msgid "{Scheme Procedure} grub-theme" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34817 +#: guix-git/doc/guix.texi:35256 msgid "Return the default GRUB theme used by the operating system if no @code{theme} field is specified in @code{bootloader-configuration} record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34820 +#: guix-git/doc/guix.texi:35259 msgid "It comes with a fancy background image displaying the GNU and Guix logos." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34824 +#: guix-git/doc/guix.texi:35263 msgid "For example, to override the default resolution, you may use something like" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34832 +#: guix-git/doc/guix.texi:35271 #, no-wrap msgid "" "(bootloader\n" @@ -62249,40 +63072,40 @@ msgid "" msgstr "" #. type: section -#: guix-git/doc/guix.texi:34835 +#: guix-git/doc/guix.texi:35274 #, no-wrap msgid "Invoking @code{guix system}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34840 +#: guix-git/doc/guix.texi:35279 msgid "Once you have written an operating system declaration as seen in the previous section, it can be @dfn{instantiated} using the @command{guix system} command. The synopsis is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34843 +#: guix-git/doc/guix.texi:35282 #, no-wrap msgid "guix system @var{options}@dots{} @var{action} @var{file}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34849 +#: guix-git/doc/guix.texi:35288 msgid "@var{file} must be the name of a file containing an @code{operating-system} declaration. @var{action} specifies how the operating system is instantiated. Currently the following values are supported:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34851 guix-git/doc/guix.texi:37496 +#: guix-git/doc/guix.texi:35290 guix-git/doc/guix.texi:37992 #, no-wrap msgid "search" msgstr "검색" #. type: table -#: guix-git/doc/guix.texi:34854 +#: guix-git/doc/guix.texi:35293 msgid "Display available service type definitions that match the given regular expressions, sorted by relevance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34876 +#: guix-git/doc/guix.texi:35315 #, no-wrap msgid "" "$ guix system search console\n" @@ -62306,7 +63129,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34882 +#: guix-git/doc/guix.texi:35321 #, no-wrap msgid "" "name: mingetty\n" @@ -62318,7 +63141,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34889 +#: guix-git/doc/guix.texi:35328 #, no-wrap msgid "" "name: login\n" @@ -62331,72 +63154,72 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34891 guix-git/doc/guix.texi:37549 +#: guix-git/doc/guix.texi:35330 guix-git/doc/guix.texi:38028 #, no-wrap msgid "@dots{}\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34896 guix-git/doc/guix.texi:37554 +#: guix-git/doc/guix.texi:35335 msgid "As for @command{guix package --search}, the result is written in @code{recutils} format, which makes it easy to filter the output (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34897 guix-git/doc/guix.texi:37555 +#: guix-git/doc/guix.texi:35336 guix-git/doc/guix.texi:38034 #, no-wrap msgid "reconfigure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34902 +#: guix-git/doc/guix.texi:35341 msgid "Build the operating system described in @var{file}, activate it, and switch to it@footnote{This action (and the related actions @code{switch-generation} and @code{roll-back}) are usable only on systems already running Guix System.}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:34910 +#: guix-git/doc/guix.texi:35349 msgid "It is highly recommended to run @command{guix pull} once before you run @command{guix system reconfigure} for the first time (@pxref{Invoking guix pull}). Failing to do that you would see an older version of Guix once @command{reconfigure} has completed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34918 +#: guix-git/doc/guix.texi:35357 msgid "This effects all the configuration specified in @var{file}: user accounts, system services, global package list, setuid programs, etc. The command starts system services specified in @var{file} that are not currently running; if a service is currently running this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop X} or @code{herd restart X})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34924 +#: guix-git/doc/guix.texi:35363 msgid "This command creates a new generation whose number is one greater than the current generation (as reported by @command{guix system list-generations}). If that generation already exists, it will be overwritten. This behavior mirrors that of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34929 +#: guix-git/doc/guix.texi:35368 msgid "It also adds a bootloader menu entry for the new OS configuration, ---unless @option{--no-bootloader} is passed. For GRUB, it moves entries for older configurations to a submenu, allowing you to choose an older system generation at boot time should you need it." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34930 guix-git/doc/guix.texi:35261 -#: guix-git/doc/guix.texi:36223 +#: guix-git/doc/guix.texi:35369 guix-git/doc/guix.texi:35705 +#: guix-git/doc/guix.texi:36713 #, no-wrap msgid "provenance tracking, of the operating system" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34935 +#: guix-git/doc/guix.texi:35374 msgid "Upon completion, the new system is deployed under @file{/run/current-system}. This directory contains @dfn{provenance meta-data}: the list of channels in use (@pxref{Channels}) and @var{file} itself, when available. You can view it by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34938 +#: guix-git/doc/guix.texi:35377 #, no-wrap msgid "guix system describe\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34944 +#: guix-git/doc/guix.texi:35383 msgid "This information is useful should you later want to inspect how this particular generation was built. In fact, assuming @var{file} is self-contained, you can later rebuild generation @var{n} of your operating system with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34950 +#: guix-git/doc/guix.texi:35389 #, no-wrap msgid "" "guix time-machine \\\n" @@ -62406,233 +63229,238 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34956 +#: guix-git/doc/guix.texi:35395 msgid "You can think of it as some sort of built-in version control! Your system is not just a binary artifact: @emph{it carries its own source}. @xref{Service Reference, @code{provenance-service-type}}, for more information on provenance tracking." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34962 +#: guix-git/doc/guix.texi:35401 msgid "By default, @command{reconfigure} @emph{prevents you from downgrading your system}, which could (re)introduce security vulnerabilities and also cause problems with ``stateful'' services such as database management systems. You can override that behavior by passing @option{--allow-downgrades}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34963 guix-git/doc/guix.texi:37614 +#: guix-git/doc/guix.texi:35402 guix-git/doc/guix.texi:38093 #, no-wrap msgid "switch-generation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34972 +#: guix-git/doc/guix.texi:35411 msgid "Switch to an existing system generation. This action atomically switches the system profile to the specified system generation. It also rearranges the system's existing bootloader menu entries. It makes the menu entry for the specified system generation the default, and it moves the entries for the other generations to a submenu, if supported by the bootloader being used. The next time the system boots, it will use the specified system generation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34976 +#: guix-git/doc/guix.texi:35415 msgid "The bootloader itself is not being reinstalled when using this command. Thus, the installed bootloader is used with an updated configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34980 +#: guix-git/doc/guix.texi:35419 msgid "The target generation can be specified explicitly by its generation number. For example, the following invocation would switch to system generation 7:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34983 +#: guix-git/doc/guix.texi:35422 #, no-wrap msgid "guix system switch-generation 7\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34991 guix-git/doc/guix.texi:37633 +#: guix-git/doc/guix.texi:35430 guix-git/doc/guix.texi:38112 msgid "The target generation can also be specified relative to the current generation with the form @code{+N} or @code{-N}, where @code{+3} means ``3 generations ahead of the current generation,'' and @code{-1} means ``1 generation prior to the current generation.'' When specifying a negative value such as @code{-1}, you must precede it with @code{--} to prevent it from being parsed as an option. For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34994 +#: guix-git/doc/guix.texi:35433 #, no-wrap msgid "guix system switch-generation -- -1\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35002 +#: guix-git/doc/guix.texi:35441 msgid "Currently, the effect of invoking this action is @emph{only} to switch the system profile to an existing generation and rearrange the bootloader menu entries. To actually start using the target system generation, you must reboot after running this action. In the future, it will be updated to do the same things as @command{reconfigure}, like activating and deactivating services." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35004 guix-git/doc/guix.texi:37639 +#: guix-git/doc/guix.texi:35443 guix-git/doc/guix.texi:38118 msgid "This action will fail if the specified generation does not exist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35005 guix-git/doc/guix.texi:37640 +#: guix-git/doc/guix.texi:35444 guix-git/doc/guix.texi:38119 #, no-wrap msgid "roll-back" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35011 +#: guix-git/doc/guix.texi:35450 msgid "Switch to the preceding system generation. The next time the system boots, it will use the preceding system generation. This is the inverse of @command{reconfigure}, and it is exactly the same as invoking @command{switch-generation} with an argument of @code{-1}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35015 +#: guix-git/doc/guix.texi:35454 msgid "Currently, as with @command{switch-generation}, you must reboot after running this action to actually start using the preceding system generation." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35016 guix-git/doc/guix.texi:37646 +#: guix-git/doc/guix.texi:35455 guix-git/doc/guix.texi:38125 #, no-wrap msgid "delete-generations" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35017 +#: guix-git/doc/guix.texi:35456 #, no-wrap msgid "deleting system generations" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35018 guix-git/doc/guix.texi:37648 +#: guix-git/doc/guix.texi:35457 guix-git/doc/guix.texi:38127 #, no-wrap msgid "saving space" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35022 +#: guix-git/doc/guix.texi:35461 msgid "Delete system generations, making them candidates for garbage collection (@pxref{Invoking guix gc}, for information on how to run the ``garbage collector'')." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35026 +#: guix-git/doc/guix.texi:35465 msgid "This works in the same way as @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). With no arguments, all system generations but the current one are deleted:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35029 +#: guix-git/doc/guix.texi:35468 #, no-wrap msgid "guix system delete-generations\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35033 +#: guix-git/doc/guix.texi:35472 msgid "You can also select the generations you want to delete. The example below deletes all the system generations that are more than two months old:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35036 +#: guix-git/doc/guix.texi:35475 #, no-wrap msgid "guix system delete-generations 2m\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35041 +#: guix-git/doc/guix.texi:35480 msgid "Running this command automatically reinstalls the bootloader with an updated list of menu entries---e.g., the ``old generations'' sub-menu in GRUB no longer lists the generations that have been deleted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35046 +#: guix-git/doc/guix.texi:35485 msgid "Build the derivation of the operating system, which includes all the configuration files and programs needed to boot and run the system. This action does not actually install anything." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35047 +#: guix-git/doc/guix.texi:35486 #, no-wrap msgid "init" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35051 +#: guix-git/doc/guix.texi:35490 msgid "Populate the given directory with all the files necessary to run the operating system specified in @var{file}. This is useful for first-time installations of Guix System. For instance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35054 +#: guix-git/doc/guix.texi:35493 #, no-wrap msgid "guix system init my-os-config.scm /mnt\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35061 +#: guix-git/doc/guix.texi:35500 msgid "copies to @file{/mnt} all the store items required by the configuration specified in @file{my-os-config.scm}. This includes configuration files, packages, and so on. It also creates other essential files needed for the system to operate correctly---e.g., the @file{/etc}, @file{/var}, and @file{/run} directories, and the @file{/bin/sh} file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35065 +#: guix-git/doc/guix.texi:35504 msgid "This command also installs bootloader on the targets specified in @file{my-os-config}, unless the @option{--no-bootloader} option was passed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35066 +#: guix-git/doc/guix.texi:35505 #, no-wrap msgid "vm" msgstr "vm" #. type: cindex -#: guix-git/doc/guix.texi:35067 guix-git/doc/guix.texi:35634 +#: guix-git/doc/guix.texi:35506 guix-git/doc/guix.texi:36124 #, no-wrap msgid "virtual machine" msgstr "가상 장비" #. type: cindex -#: guix-git/doc/guix.texi:35068 +#: guix-git/doc/guix.texi:35507 #, no-wrap msgid "VM" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35072 +#: guix-git/doc/guix.texi:35511 msgid "guix system vm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35072 +#: guix-git/doc/guix.texi:35511 msgid "Build a virtual machine (VM) that contains the operating system declared in @var{file}, and return a script to run that VM." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35080 +#: guix-git/doc/guix.texi:35519 msgid "The @code{vm} action and others below can use KVM support in the Linux-libre kernel. Specifically, if the machine has hardware virtualization support, the corresponding KVM kernel module should be loaded, and the @file{/dev/kvm} device node must exist and be readable and writable by the user and by the build users of the daemon (@pxref{Build Environment Setup})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35085 +#: guix-git/doc/guix.texi:35524 msgid "Arguments given to the script are passed to QEMU as in the example below, which enables networking and requests 1@tie{}GiB of RAM for the emulated machine:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35088 +#: guix-git/doc/guix.texi:35527 #, no-wrap msgid "$ /gnu/store/@dots{}-run-vm.sh -m 1024 -smp 2 -nic user,model=virtio-net-pci\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35091 +#: guix-git/doc/guix.texi:35530 msgid "It's possible to combine the two steps into one:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35094 +#: guix-git/doc/guix.texi:35533 #, no-wrap msgid "$ $(guix system vm my-config.scm) -m 1024 -smp 2 -nic user,model=virtio-net-pci\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35097 +#: guix-git/doc/guix.texi:35536 msgid "The VM shares its store with the host system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35102 +#: guix-git/doc/guix.texi:35541 +msgid "By default, the root file system of the VM is mounted volatile; the @option{--persistent} option can be provided to make it persistent instead. In that case, the VM disk-image file will be copied from the store to the @env{TMPDIR} directory to make it writable." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:35546 msgid "Additional file systems can be shared between the host and the VM using the @option{--share} and @option{--expose} command-line options: the former specifies a directory to be shared with write access, while the latter provides read-only access to the shared directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35106 +#: guix-git/doc/guix.texi:35550 msgid "The example below creates a VM in which the user's home directory is accessible read-only, and where the @file{/exchange} directory is a read-write mapping of @file{$HOME/tmp} on the host:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35110 +#: guix-git/doc/guix.texi:35554 #, no-wrap msgid "" "guix system vm my-config.scm \\\n" @@ -62640,56 +63468,56 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35115 +#: guix-git/doc/guix.texi:35559 msgid "On GNU/Linux, the default is to boot directly to the kernel; this has the advantage of requiring only a very tiny root disk image since the store of the host can then be mounted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35120 +#: guix-git/doc/guix.texi:35564 msgid "The @option{--full-boot} option forces a complete boot sequence, starting with the bootloader. This requires more disk space since a root image containing at least the kernel, initrd, and bootloader data files must be created." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35123 +#: guix-git/doc/guix.texi:35567 msgid "The @option{--image-size} option can be used to specify the size of the image." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35130 +#: guix-git/doc/guix.texi:35574 msgid "The @option{--no-graphic} option will instruct @command{guix system} to spawn a headless VM that will use the invoking tty for IO. Among other things, this enables copy-pasting, and scrollback. Use the @kbd{ctrl-a} prefix to issue QEMU commands; e.g. @kbd{ctrl-a h} prints a help, @kbd{ctrl-a x} quits the VM, and @kbd{ctrl-a c} switches between the QEMU monitor and the VM." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35131 +#: guix-git/doc/guix.texi:35575 #, no-wrap msgid "System images, creation in various formats" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35132 +#: guix-git/doc/guix.texi:35576 #, no-wrap msgid "Creating system images in various formats" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35133 +#: guix-git/doc/guix.texi:35577 #, no-wrap msgid "image" msgstr "이미지" #. type: cindex -#: guix-git/doc/guix.texi:35134 +#: guix-git/doc/guix.texi:35578 #, no-wrap msgid "image, creating disk images" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35146 +#: guix-git/doc/guix.texi:35590 msgid "The @code{image} command can produce various image types. The image type can be selected using the @option{--image-type} option. It defaults to @code{efi-raw}. When its value is @code{iso9660}, the @option{--label} option can be used to specify a volume ID with @code{image}. By default, the root file system of a disk image is mounted non-volatile; the @option{--volatile} option can be provided to make it volatile instead. When using @code{image}, the bootloader installed on the generated image is taken from the provided @code{operating-system} definition. The following example demonstrates how to generate an image that uses the @code{grub-efi-bootloader} bootloader and boot it with QEMU:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35154 +#: guix-git/doc/guix.texi:35598 #, no-wrap msgid "" "image=$(guix system image --image-type=qcow2 \\\n" @@ -62701,45 +63529,45 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35160 +#: guix-git/doc/guix.texi:35604 msgid "When using the @code{efi-raw} image type, a raw disk image is produced; it can be copied as is to a USB stick, for instance. Assuming @code{/dev/sdc} is the device corresponding to a USB stick, one can copy the image to it using the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35163 +#: guix-git/doc/guix.texi:35607 #, no-wrap msgid "# dd if=$(guix system image my-os.scm) of=/dev/sdc status=progress\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35167 +#: guix-git/doc/guix.texi:35611 msgid "The @code{--list-image-types} command lists all the available image types." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35168 +#: guix-git/doc/guix.texi:35612 #, no-wrap msgid "creating virtual machine images" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35177 +#: guix-git/doc/guix.texi:35621 msgid "When using the @code{qcow2} image type, the returned image is in qcow2 format, which the QEMU emulator can efficiently use. @xref{Running Guix in a VM}, for more information on how to run the image in a virtual machine. The @code{grub-bootloader} bootloader is always used independently of what is declared in the @code{operating-system} file passed as argument. This is to make it easier to work with QEMU, which uses the SeaBIOS BIOS by default, expecting a bootloader to be installed in the Master Boot Record (MBR)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35178 +#: guix-git/doc/guix.texi:35622 #, no-wrap msgid "docker-image, creating docker images" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35184 +#: guix-git/doc/guix.texi:35628 msgid "When using the @code{docker} image type, a Docker image is produced. Guix builds the image from scratch, not from a pre-existing Docker base image. As a result, it contains @emph{exactly} what you define in the operating system configuration file. You can then load the image and launch a Docker container using commands like the following:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35189 +#: guix-git/doc/guix.texi:35633 #, no-wrap msgid "" "image_id=\"$(docker load < guix-system-docker-image.tar.gz)\"\n" @@ -62748,43 +63576,43 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35196 +#: guix-git/doc/guix.texi:35640 msgid "This command starts a new Docker container from the specified image. It will boot the Guix system in the usual manner, which means it will start any services you have defined in the operating system configuration. You can get an interactive shell running in the container using @command{docker exec}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35199 +#: guix-git/doc/guix.texi:35643 #, no-wrap msgid "docker exec -ti $container_id /run/current-system/profile/bin/bash --login\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35206 +#: guix-git/doc/guix.texi:35650 msgid "Depending on what you run in the Docker container, it may be necessary to give the container additional permissions. For example, if you intend to build software using Guix inside of the Docker container, you may need to pass the @option{--privileged} option to @code{docker create}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35210 +#: guix-git/doc/guix.texi:35654 msgid "Last, the @option{--network} option applies to @command{guix system docker-image}: it produces an image where network is supposedly shared with the host, and thus without services like nscd or NetworkManager." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35218 +#: guix-git/doc/guix.texi:35662 msgid "Return a script to run the operating system declared in @var{file} within a container. Containers are a set of lightweight isolation mechanisms provided by the kernel Linux-libre. Containers are substantially less resource-demanding than full virtual machines since the kernel, shared objects, and other resources can be shared with the host system; this also means they provide thinner isolation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35222 +#: guix-git/doc/guix.texi:35666 msgid "Currently, the script must be run as root in order to support more than a single user and group. The container shares its store with the host system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35226 +#: guix-git/doc/guix.texi:35670 msgid "As with the @code{vm} action (@pxref{guix system vm}), additional file systems to be shared between the host and container can be specified using the @option{--share} and @option{--expose} options:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35230 +#: guix-git/doc/guix.texi:35674 #, no-wrap msgid "" "guix system container my-config.scm \\\n" @@ -62792,319 +63620,329 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35234 +#: guix-git/doc/guix.texi:35678 msgid "This option requires Linux-libre 3.19 or newer." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35241 guix-git/doc/guix.texi:37710 +#: guix-git/doc/guix.texi:35685 guix-git/doc/guix.texi:38189 msgid "@var{options} can contain any of the common build options (@pxref{Common Build Options}). In addition, @var{options} can contain one of the following:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35250 +#: guix-git/doc/guix.texi:35694 msgid "Consider the operating-system @var{expr} evaluates to. This is an alternative to specifying a file which evaluates to an operating system. This is used to generate the Guix system installer @pxref{Building the Installation Image})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35255 +#: guix-git/doc/guix.texi:35699 msgid "Attempt to build for @var{system} instead of the host system type. This works as per @command{guix build} (@pxref{Invoking guix build})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35260 +#: guix-git/doc/guix.texi:35704 msgid "Return the derivation file name of the given operating system without building anything." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35269 +#: guix-git/doc/guix.texi:35713 msgid "As discussed above, @command{guix system init} and @command{guix system reconfigure} always save provenance information @i{via} a dedicated service (@pxref{Service Reference, @code{provenance-service-type}}). However, other commands don't do that by default. If you wish to, say, create a virtual machine image that contains provenance information, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35272 +#: guix-git/doc/guix.texi:35716 #, no-wrap msgid "guix system image -t qcow2 --save-provenance config.scm\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35279 +#: guix-git/doc/guix.texi:35723 msgid "That way, the resulting image will effectively ``embed its own source'' in the form of meta-data in @file{/run/current-system}. With that information, one can rebuild the image to make sure it really contains what it pretends to contain; or they could use that to derive a variant of the image." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35280 +#: guix-git/doc/guix.texi:35724 #, no-wrap msgid "--image-type=@var{type}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35283 +#: guix-git/doc/guix.texi:35727 msgid "For the @code{image} action, create an image with given @var{type}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35286 +#: guix-git/doc/guix.texi:35730 msgid "When this option is omitted, @command{guix system} uses the @code{efi-raw} image type." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35287 +#: guix-git/doc/guix.texi:35731 #, no-wrap msgid "ISO-9660 format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35288 +#: guix-git/doc/guix.texi:35732 #, no-wrap msgid "CD image format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35289 +#: guix-git/doc/guix.texi:35733 #, no-wrap msgid "DVD image format" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35292 +#: guix-git/doc/guix.texi:35736 msgid "@option{--image-type=iso9660} produces an ISO-9660 image, suitable for burning on CDs and DVDs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35293 +#: guix-git/doc/guix.texi:35737 #, no-wrap msgid "--image-size=@var{size}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35298 +#: guix-git/doc/guix.texi:35742 msgid "For the @code{image} action, create an image of the given @var{size}. @var{size} may be a number of bytes, or it may include a unit as a suffix (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35302 +#: guix-git/doc/guix.texi:35746 msgid "When this option is omitted, @command{guix system} computes an estimate of the image size as a function of the size of the system declared in @var{file}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35307 +#: guix-git/doc/guix.texi:35751 msgid "For the @code{container} action, allow containers to access the host network, that is, do not create a network namespace." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35313 +#: guix-git/doc/guix.texi:35757 #, no-wrap msgid "--skip-checks" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35315 +#: guix-git/doc/guix.texi:35759 msgid "Skip pre-installation safety checks." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35322 +#: guix-git/doc/guix.texi:35766 msgid "By default, @command{guix system init} and @command{guix system reconfigure} perform safety checks: they make sure the file systems that appear in the @code{operating-system} declaration actually exist (@pxref{File Systems}), and that any Linux kernel modules that may be needed at boot time are listed in @code{initrd-modules} (@pxref{Initial RAM Disk}). Passing this option skips these tests altogether." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35325 +#: guix-git/doc/guix.texi:35769 msgid "Instruct @command{guix system reconfigure} to allow system downgrades." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35333 +#: guix-git/doc/guix.texi:35777 msgid "By default, @command{reconfigure} prevents you from downgrading your system. It achieves that by comparing the provenance info of your system (shown by @command{guix system describe}) with that of your @command{guix} command (shown by @command{guix describe}). If the commits for @command{guix} are not descendants of those used for your system, @command{guix system reconfigure} errors out. Passing @option{--allow-downgrades} allows you to bypass these checks." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35339 +#: guix-git/doc/guix.texi:35783 #, no-wrap msgid "on-error" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35340 +#: guix-git/doc/guix.texi:35784 #, no-wrap msgid "on-error strategy" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35341 +#: guix-git/doc/guix.texi:35785 #, no-wrap msgid "error strategy" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35342 +#: guix-git/doc/guix.texi:35786 #, no-wrap msgid "--on-error=@var{strategy}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35345 +#: guix-git/doc/guix.texi:35789 msgid "Apply @var{strategy} when an error occurs when reading @var{file}. @var{strategy} may be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35347 +#: guix-git/doc/guix.texi:35791 #, no-wrap msgid "nothing-special" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35349 +#: guix-git/doc/guix.texi:35793 msgid "Report the error concisely and exit. This is the default strategy." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35350 +#: guix-git/doc/guix.texi:35794 #, no-wrap msgid "backtrace" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35352 +#: guix-git/doc/guix.texi:35796 msgid "Likewise, but also display a backtrace." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35353 +#: guix-git/doc/guix.texi:35797 #, no-wrap msgid "debug" msgstr "디버그" #. type: table -#: guix-git/doc/guix.texi:35359 +#: guix-git/doc/guix.texi:35803 msgid "Report the error and enter Guile's debugger. From there, you can run commands such as @code{,bt} to get a backtrace, @code{,locals} to display local variable values, and more generally inspect the state of the program. @xref{Debug Commands,,, guile, GNU Guile Reference Manual}, for a list of available debugging commands." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35366 +#: guix-git/doc/guix.texi:35810 msgid "Once you have built, configured, re-configured, and re-re-configured your Guix installation, you may find it useful to list the operating system generations available on disk---and that you can choose from the bootloader boot menu:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35369 guix-git/doc/guix.texi:37673 +#: guix-git/doc/guix.texi:35813 guix-git/doc/guix.texi:38152 #, no-wrap msgid "describe" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35372 -msgid "Describe the current system generation: its file name, the kernel and bootloader used, etc., as well as provenance information when available." +#: guix-git/doc/guix.texi:35816 +msgid "Describe the running system generation: its file name, the kernel and bootloader used, etc., as well as provenance information when available." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:35823 +msgid "The @emph{running} system generation---referred to by @file{/run/current-system}---is not necessarily the @emph{current} system generation---referred to by @file{/var/guix/profiles/system}: it differs when, for instance, you chose from the bootloader menu to boot an older generation." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:35827 +msgid "It can also differ from the @emph{booted} system generation---referred to by @file{/run/booted-system}---for instance because you reconfigured the system in the meantime." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35373 guix-git/doc/guix.texi:37677 +#: guix-git/doc/guix.texi:35829 guix-git/doc/guix.texi:38156 #, no-wrap msgid "list-generations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35378 +#: guix-git/doc/guix.texi:35834 msgid "List a summary of each generation of the operating system available on disk, in a human-readable way. This is similar to the @option{--list-generations} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35383 guix-git/doc/guix.texi:37687 +#: guix-git/doc/guix.texi:35839 guix-git/doc/guix.texi:38166 msgid "Optionally, one can specify a pattern, with the same syntax that is used in @command{guix package --list-generations}, to restrict the list of generations displayed. For instance, the following command displays generations that are up to 10 days old:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35386 +#: guix-git/doc/guix.texi:35842 #, no-wrap msgid "$ guix system list-generations 10d\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35393 +#: guix-git/doc/guix.texi:35849 msgid "The @command{guix system} command has even more to offer! The following sub-commands allow you to visualize how your system services relate to each other:" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35395 +#: guix-git/doc/guix.texi:35851 msgid "system-extension-graph" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35397 +#: guix-git/doc/guix.texi:35853 #, no-wrap msgid "extension-graph" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35404 +#: guix-git/doc/guix.texi:35860 msgid "Emit to standard output the @dfn{service extension graph} of the operating system defined in @var{file} (@pxref{Service Composition}, for more information on service extensions). By default the output is in Dot/Graphviz format, but you can choose a different format with @option{--graph-backend}, as with @command{guix graph} (@pxref{Invoking guix graph, @option{--backend}}):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35406 +#: guix-git/doc/guix.texi:35862 msgid "The command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35409 +#: guix-git/doc/guix.texi:35865 #, no-wrap msgid "$ guix system extension-graph @var{file} | xdot -\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35412 +#: guix-git/doc/guix.texi:35868 msgid "shows the extension relations among services." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35414 +#: guix-git/doc/guix.texi:35870 msgid "system-shepherd-graph" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35414 +#: guix-git/doc/guix.texi:35870 #, no-wrap msgid "shepherd-graph" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35419 +#: guix-git/doc/guix.texi:35875 msgid "Emit to standard output the @dfn{dependency graph} of shepherd services of the operating system defined in @var{file}. @xref{Shepherd Services}, for more information and for an example graph." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35422 +#: guix-git/doc/guix.texi:35878 msgid "Again, the default output format is Dot/Graphviz, but you can pass @option{--graph-backend} to select a different one." msgstr "" #. type: section -#: guix-git/doc/guix.texi:35426 +#: guix-git/doc/guix.texi:35882 #, no-wrap msgid "Invoking @code{guix deploy}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35434 +#: guix-git/doc/guix.texi:35890 msgid "We've already seen @code{operating-system} declarations used to manage a machine's configuration locally. Suppose you need to configure multiple machines, though---perhaps you're managing a service on the web that's comprised of several servers. @command{guix deploy} enables you to use those same @code{operating-system} declarations to manage multiple remote hosts at once as a logical ``deployment''." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35439 guix-git/doc/guix.texi:36900 +#: guix-git/doc/guix.texi:35895 guix-git/doc/guix.texi:37390 msgid "The functionality described in this section is still under development and is subject to change. Get in touch with us on @email{guix-devel@@gnu.org}!" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35443 +#: guix-git/doc/guix.texi:35899 #, no-wrap msgid "guix deploy @var{file}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35447 +#: guix-git/doc/guix.texi:35903 msgid "Such an invocation will deploy the machines that the code within @var{file} evaluates to. As an example, @var{file} might contain a definition like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35454 +#: guix-git/doc/guix.texi:35910 #, no-wrap msgid "" ";; This is a Guix deployment of a \"bare bones\" setup, with\n" @@ -63116,7 +63954,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35457 +#: guix-git/doc/guix.texi:35913 #, no-wrap msgid "" "(use-service-modules networking ssh)\n" @@ -63125,7 +63963,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35478 +#: guix-git/doc/guix.texi:35934 #, no-wrap msgid "" "(define %system\n" @@ -63152,7 +63990,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35488 +#: guix-git/doc/guix.texi:35944 #, no-wrap msgid "" "(list (machine\n" @@ -63167,33 +64005,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35501 +#: guix-git/doc/guix.texi:35957 msgid "The file should evaluate to a list of @var{machine} objects. This example, upon being deployed, will create a new generation on the remote system realizing the @code{operating-system} declaration @code{%system}. @code{environment} and @code{configuration} specify how the machine should be provisioned---that is, how the computing resources should be created and managed. The above example does not create any resources, as a @code{'managed-host} is a machine that is already running the Guix system and available over the network. This is a particularly simple case; a more complex deployment may involve, for example, starting virtual machines through a Virtual Private Server (VPS) provider. In such a case, a different @var{environment} type would be used." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35506 +#: guix-git/doc/guix.texi:35962 msgid "Do note that you first need to generate a key pair on the coordinator machine to allow the daemon to export signed archives of files from the store (@pxref{Invoking guix archive}), though this step is automatic on Guix System:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35514 +#: guix-git/doc/guix.texi:35970 msgid "Each target machine must authorize the key of the master machine so that it accepts store items it receives from the coordinator:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35517 +#: guix-git/doc/guix.texi:35973 #, no-wrap msgid "# guix archive --authorize < coordinator-public-key.txt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35528 +#: guix-git/doc/guix.texi:35984 msgid "@code{user}, in this example, specifies the name of the user account to log in as to perform the deployment. Its default value is @code{root}, but root login over SSH may be forbidden in some cases. To work around this, @command{guix deploy} can log in as an unprivileged user and employ @code{sudo} to escalate privileges. This will only work if @code{sudo} is currently installed on the remote and can be invoked non-interactively as @code{user}. That is, the line in @code{sudoers} granting @code{user} the ability to use @code{sudo} must contain the @code{NOPASSWD} tag. This can be accomplished with the following operating system configuration snippet:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35532 +#: guix-git/doc/guix.texi:35988 #, no-wrap msgid "" "(use-modules ...\n" @@ -63202,7 +64040,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35534 +#: guix-git/doc/guix.texi:35990 #, no-wrap msgid "" "(define %user \"username\")\n" @@ -63210,7 +64048,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35542 +#: guix-git/doc/guix.texi:35998 #, no-wrap msgid "" "(operating-system\n" @@ -63224,235 +64062,283 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35547 +#: guix-git/doc/guix.texi:36003 msgid "For more information regarding the format of the @file{sudoers} file, consult @command{man sudoers}." msgstr "" +#. type: Plain text +#: guix-git/doc/guix.texi:36008 +msgid "Once you've deployed a system on a set of machines, you may find it useful to run a command on all of them. The @option{--execute} or @option{-x} option lets you do that; the example below runs @command{uname -a} on all the machines listed in the deployment file:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:36011 +#, no-wrap +msgid "guix deploy @var{file} -x -- uname -a\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36015 +msgid "One thing you may often need to do after deployment is restart specific services on all the machines, which you can do like so:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:36018 +#, no-wrap +msgid "guix deploy @var{file} -x -- herd restart @var{service}\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36022 +msgid "The @command{guix deploy -x} command returns zero if and only if the command succeeded on all the machines." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36027 +msgid "Below are the data types you need to know about when writing a deployment file." +msgstr "" + #. type: deftp -#: guix-git/doc/guix.texi:35548 +#: guix-git/doc/guix.texi:36028 #, no-wrap msgid "{Data Type} machine" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35551 +#: guix-git/doc/guix.texi:36031 msgid "This is the data type representing a single machine in a heterogeneous Guix deployment." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35555 +#: guix-git/doc/guix.texi:36035 msgid "The object of the operating system configuration to deploy." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35556 +#: guix-git/doc/guix.texi:36036 #, no-wrap msgid "environment" msgstr "환경" #. type: table -#: guix-git/doc/guix.texi:35558 +#: guix-git/doc/guix.texi:36038 msgid "An @code{environment-type} describing how the machine should be provisioned." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35559 +#: guix-git/doc/guix.texi:36039 #, no-wrap msgid "@code{configuration} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35564 +#: guix-git/doc/guix.texi:36044 msgid "An object describing the configuration for the machine's @code{environment}. If the @code{environment} has a default configuration, @code{#f} may be used. If @code{#f} is used for an environment with no default configuration, however, an error will be thrown." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35567 +#: guix-git/doc/guix.texi:36047 #, no-wrap msgid "{Data Type} machine-ssh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35570 +#: guix-git/doc/guix.texi:36050 msgid "This is the data type representing the SSH client parameters for a machine with an @code{environment} of @code{managed-host-environment-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35573 +#: guix-git/doc/guix.texi:36053 #, no-wrap msgid "@code{build-locally?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35575 +#: guix-git/doc/guix.texi:36055 msgid "If false, system derivations will be built on the machine being deployed to." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35575 +#: guix-git/doc/guix.texi:36055 #, no-wrap msgid "system" msgstr "시스템" #. type: table -#: guix-git/doc/guix.texi:35578 +#: guix-git/doc/guix.texi:36058 msgid "The system type describing the architecture of the machine being deployed to---e.g., @code{\"x86_64-linux\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35578 +#: guix-git/doc/guix.texi:36058 #, no-wrap msgid "@code{authorize?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35581 +#: guix-git/doc/guix.texi:36061 msgid "If true, the coordinator's signing key will be added to the remote's ACL keyring." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35583 +#: guix-git/doc/guix.texi:36063 #, no-wrap msgid "@code{identity} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35586 +#: guix-git/doc/guix.texi:36066 msgid "If specified, the path to the SSH private key to use to authenticate with the remote host." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35587 +#: guix-git/doc/guix.texi:36067 #, no-wrap msgid "@code{host-key} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35589 +#: guix-git/doc/guix.texi:36069 msgid "This should be the SSH host key of the machine, which looks like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35592 +#: guix-git/doc/guix.texi:36072 #, no-wrap msgid "ssh-ed25519 AAAAC3Nz@dots{} root@@example.org\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35597 +#: guix-git/doc/guix.texi:36077 msgid "When @code{host-key} is @code{#f}, the server is authenticated against the @file{~/.ssh/known_hosts} file, just like the OpenSSH @command{ssh} client does." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35598 +#: guix-git/doc/guix.texi:36078 #, no-wrap msgid "@code{allow-downgrades?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35600 +#: guix-git/doc/guix.texi:36080 msgid "Whether to allow potential downgrades." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35608 +#: guix-git/doc/guix.texi:36088 msgid "Like @command{guix system reconfigure}, @command{guix deploy} compares the channel commits currently deployed on the remote host (as returned by @command{guix system describe}) to those currently in use (as returned by @command{guix describe}) to determine whether commits currently in use are descendants of those deployed. When this is not the case and @code{allow-downgrades?} is false, it raises an error. This ensures you do not accidentally downgrade remote machines." msgstr "" +#. type: item +#: guix-git/doc/guix.texi:36089 +#, no-wrap +msgid "@code{safety-checks?} (default: @code{#t})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:36095 +msgid "Whether to perform ``safety checks'' before deployment. This includes verifying that devices and file systems referred to in the operating system configuration actually exist on the target machine, and making sure that Linux modules required to access storage devices at boot time are listed in the @code{initrd-modules} field of the operating system." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:36098 +msgid "These safety checks ensure that you do not inadvertently deploy a system that would fail to boot. Be careful before turning them off!" +msgstr "" + #. type: deftp -#: guix-git/doc/guix.texi:35611 +#: guix-git/doc/guix.texi:36101 #, no-wrap msgid "{Data Type} digital-ocean-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35614 +#: guix-git/doc/guix.texi:36104 msgid "This is the data type describing the Droplet that should be created for a machine with an @code{environment} of @code{digital-ocean-environment-type}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35616 +#: guix-git/doc/guix.texi:36106 #, no-wrap msgid "ssh-key" msgstr "ssh 키" #. type: table -#: guix-git/doc/guix.texi:35619 +#: guix-git/doc/guix.texi:36109 msgid "The path to the SSH private key to use to authenticate with the remote host. In the future, this field may not exist." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35619 +#: guix-git/doc/guix.texi:36109 #, no-wrap msgid "tags" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35622 +#: guix-git/doc/guix.texi:36112 msgid "A list of string ``tags'' that uniquely identify the machine. Must be given such that no two machines in the deployment have the same set of tags." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35622 +#: guix-git/doc/guix.texi:36112 #, no-wrap msgid "region" msgstr "지역" #. type: table -#: guix-git/doc/guix.texi:35624 +#: guix-git/doc/guix.texi:36114 msgid "A Digital Ocean region slug, such as @code{\"nyc3\"}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35626 +#: guix-git/doc/guix.texi:36116 msgid "A Digital Ocean size slug, such as @code{\"s-1vcpu-1gb\"}" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35626 +#: guix-git/doc/guix.texi:36116 #, no-wrap msgid "enable-ipv6?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35628 +#: guix-git/doc/guix.texi:36118 msgid "Whether or not the droplet should be created with IPv6 networking." msgstr "" #. type: section -#: guix-git/doc/guix.texi:35632 +#: guix-git/doc/guix.texi:36122 #, no-wrap msgid "Running Guix in a Virtual Machine" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35640 +#: guix-git/doc/guix.texi:36130 msgid "To run Guix in a virtual machine (VM), one can use the pre-built Guix VM image distributed at @url{@value{BASE-URL}/guix-system-vm-image-@value{VERSION}.x86_64-linux.qcow2}. This image is a compressed image in QCOW format. You can pass it to an emulator such as @uref{https://qemu.org/, QEMU} (see below for details)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35647 +#: guix-git/doc/guix.texi:36137 msgid "This image boots the Xfce graphical environment and it contains some commonly used tools. You can install more software in the image by running @command{guix package} in a terminal (@pxref{Invoking guix package}). You can also reconfigure the system based on its initial configuration file available as @file{/run/current-system/configuration.scm} (@pxref{Using the Configuration System})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35650 +#: guix-git/doc/guix.texi:36140 msgid "Instead of using this pre-built image, one can also build their own image using @command{guix system image} (@pxref{Invoking guix system})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35651 +#: guix-git/doc/guix.texi:36141 #, no-wrap msgid "QEMU" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35658 +#: guix-git/doc/guix.texi:36148 msgid "If you built your own image, you must copy it out of the store (@pxref{The Store}) and give yourself permission to write to the copy before you can use it. When invoking QEMU, you must choose a system emulator that is suitable for your hardware platform. Here is a minimal QEMU invocation that will boot the result of @command{guix system image -t qcow2} on x86_64 hardware:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35665 +#: guix-git/doc/guix.texi:36155 #, no-wrap msgid "" "$ qemu-system-x86_64 \\\n" @@ -63463,137 +64349,137 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35668 +#: guix-git/doc/guix.texi:36158 msgid "Here is what each of these options means:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35670 +#: guix-git/doc/guix.texi:36160 #, no-wrap msgid "qemu-system-x86_64" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35673 +#: guix-git/doc/guix.texi:36163 msgid "This specifies the hardware platform to emulate. This should match the host." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35674 +#: guix-git/doc/guix.texi:36164 #, no-wrap msgid "-nic user,model=virtio-net-pci" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35682 +#: guix-git/doc/guix.texi:36172 msgid "Enable the unprivileged user-mode network stack. The guest OS can access the host but not vice versa. This is the simplest way to get the guest OS online. @code{model} specifies which network device to emulate: @code{virtio-net-pci} is a special device made for virtualized operating systems and recommended for most uses. Assuming your hardware platform is x86_64, you can get a list of available NIC models by running @command{qemu-system-x86_64 -nic model=help}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35683 +#: guix-git/doc/guix.texi:36173 #, no-wrap msgid "-enable-kvm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35687 +#: guix-git/doc/guix.texi:36177 msgid "If your system has hardware virtualization extensions, enabling the virtual machine support (KVM) of the Linux kernel will make things run faster." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35689 +#: guix-git/doc/guix.texi:36179 #, no-wrap msgid "-m 1024" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35692 +#: guix-git/doc/guix.texi:36182 msgid "RAM available to the guest OS, in mebibytes. Defaults to 128@tie{}MiB, which may be insufficient for some operations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35693 +#: guix-git/doc/guix.texi:36183 #, no-wrap msgid "-device virtio-blk,drive=myhd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35698 +#: guix-git/doc/guix.texi:36188 msgid "Create a @code{virtio-blk} drive called ``myhd''. @code{virtio-blk} is a ``paravirtualization'' mechanism for block devices that allows QEMU to achieve better performance than if it were emulating a complete disk drive. See the QEMU and KVM documentation for more info." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35699 +#: guix-git/doc/guix.texi:36189 #, no-wrap msgid "-drive if=none,file=/tmp/qemu-image,id=myhd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35702 +#: guix-git/doc/guix.texi:36192 msgid "Use our QCOW image, the @file{/tmp/qemu-image} file, as the backing store of the ``myhd'' drive." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35712 +#: guix-git/doc/guix.texi:36202 msgid "The default @command{run-vm.sh} script that is returned by an invocation of @command{guix system vm} does not add a @command{-nic user} flag by default. To get network access from within the vm add the @code{(dhcp-client-service)} to your system definition and start the VM using @command{$(guix system vm config.scm) -nic user}. An important caveat of using @command{-nic user} for networking is that @command{ping} will not work, because it uses the ICMP protocol. You'll have to use a different command to check for network connectivity, for example @command{guix download}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:35713 +#: guix-git/doc/guix.texi:36203 #, no-wrap msgid "Connecting Through SSH" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35721 +#: guix-git/doc/guix.texi:36211 msgid "To enable SSH inside a VM you need to add an SSH server like @code{openssh-service-type} to your VM (@pxref{Networking Services, @code{openssh-service-type}}). In addition you need to forward the SSH port, 22 by default, to the host. You can do this with" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35724 +#: guix-git/doc/guix.texi:36214 #, no-wrap msgid "$(guix system vm config.scm) -nic user,model=virtio-net-pci,hostfwd=tcp::10022-:22\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35727 +#: guix-git/doc/guix.texi:36217 msgid "To connect to the VM you can run" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35730 +#: guix-git/doc/guix.texi:36220 #, no-wrap msgid "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 10022 localhost\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35737 +#: guix-git/doc/guix.texi:36227 msgid "The @command{-p} tells @command{ssh} the port you want to connect to. @command{-o UserKnownHostsFile=/dev/null} prevents @command{ssh} from complaining every time you modify your @command{config.scm} file and the @command{-o StrictHostKeyChecking=no} prevents you from having to allow a connection to an unknown host every time you connect." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35743 +#: guix-git/doc/guix.texi:36233 msgid "If you find the above @samp{hostfwd} example not to be working (e.g., your SSH client hangs attempting to connect to the mapped port of your VM), make sure that your Guix System VM has networking support, such as by using the @code{dhcp-client-service-type} service type." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:35745 +#: guix-git/doc/guix.texi:36235 #, no-wrap msgid "Using @command{virt-viewer} with Spice" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35751 +#: guix-git/doc/guix.texi:36241 msgid "As an alternative to the default @command{qemu} graphical client you can use the @command{remote-viewer} from the @command{virt-viewer} package. To connect pass the @command{-spice port=5930,disable-ticketing} flag to @command{qemu}. See previous section for further information on how to do this." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35754 +#: guix-git/doc/guix.texi:36244 msgid "Spice also allows you to do some nice stuff like share your clipboard with your VM@. To enable that you'll also have to pass the following flags to @command{qemu}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35760 +#: guix-git/doc/guix.texi:36250 #, no-wrap msgid "" "-device virtio-serial-pci,id=virtio-serial0,max_ports=16,bus=pci.0,addr=0x5\n" @@ -63603,81 +64489,81 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35764 +#: guix-git/doc/guix.texi:36254 msgid "You'll also need to add the @code{(spice-vdagent-service)} to your system definition (@pxref{Miscellaneous Services, Spice service})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35771 +#: guix-git/doc/guix.texi:36261 msgid "The previous sections show the available services and how one can combine them in an @code{operating-system} declaration. But how do we define them in the first place? And what is a service anyway?" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35784 +#: guix-git/doc/guix.texi:36274 #, no-wrap msgid "daemons" msgstr "데몬" #. type: Plain text -#: guix-git/doc/guix.texi:35797 +#: guix-git/doc/guix.texi:36287 msgid "Here we define a @dfn{service} as, broadly, something that extends the functionality of the operating system. Often a service is a process---a @dfn{daemon}---started when the system boots: a secure shell server, a Web server, the Guix build daemon, etc. Sometimes a service is a daemon whose execution can be triggered by another daemon---e.g., an FTP server started by @command{inetd} or a D-Bus service activated by @command{dbus-daemon}. Occasionally, a service does not map to a daemon. For instance, the ``account'' service collects user accounts and makes sure they exist when the system runs; the ``udev'' service collects device management rules and makes them available to the eudev daemon; the @file{/etc} service populates the @file{/etc} directory of the system." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35798 +#: guix-git/doc/guix.texi:36288 #, no-wrap msgid "service extensions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35810 +#: guix-git/doc/guix.texi:36300 msgid "Guix system services are connected by @dfn{extensions}. For instance, the secure shell service @emph{extends} the Shepherd---the initialization system, running as PID@tie{}1---by giving it the command lines to start and stop the secure shell daemon (@pxref{Networking Services, @code{openssh-service-type}}); the UPower service extends the D-Bus service by passing it its @file{.service} specification, and extends the udev service by passing it device management rules (@pxref{Desktop Services, @code{upower-service}}); the Guix daemon service extends the Shepherd by passing it the command lines to start and stop the daemon, and extends the account service by passing it a list of required build user accounts (@pxref{Base Services})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35814 +#: guix-git/doc/guix.texi:36304 msgid "All in all, services and their ``extends'' relations form a directed acyclic graph (DAG). If we represent services as boxes and extensions as arrows, a typical system might provide something like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35816 +#: guix-git/doc/guix.texi:36306 msgid "@image{images/service-graph,,5in,Typical service extension graph.}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35817 +#: guix-git/doc/guix.texi:36307 #, no-wrap msgid "system service" msgstr "시스템 서비스" #. type: Plain text -#: guix-git/doc/guix.texi:35825 +#: guix-git/doc/guix.texi:36315 msgid "At the bottom, we see the @dfn{system service}, which produces the directory containing everything to run and boot the system, as returned by the @command{guix system build} command. @xref{Service Reference}, to learn about the other service types shown here. @xref{system-extension-graph, the @command{guix system extension-graph} command}, for information on how to generate this representation for a particular operating system definition." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35826 +#: guix-git/doc/guix.texi:36316 #, no-wrap msgid "service types" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35832 +#: guix-git/doc/guix.texi:36322 msgid "Technically, developers can define @dfn{service types} to express these relations. There can be any number of services of a given type on the system---for instance, a system running two instances of the GNU secure shell server (lsh) has two instances of @code{lsh-service-type}, with different parameters." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35835 +#: guix-git/doc/guix.texi:36325 msgid "The following section describes the programming interface for service types and services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35842 +#: guix-git/doc/guix.texi:36332 msgid "A @dfn{service type} is a node in the DAG described above. Let us start with a simple example, the service type for the Guix build daemon (@pxref{Invoking guix-daemon}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35852 +#: guix-git/doc/guix.texi:36342 #, no-wrap msgid "" "(define guix-service-type\n" @@ -63691,75 +64577,75 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35856 +#: guix-git/doc/guix.texi:36346 msgid "It defines three things:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35860 +#: guix-git/doc/guix.texi:36350 msgid "A name, whose sole purpose is to make inspection and debugging easier." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35865 +#: guix-git/doc/guix.texi:36355 msgid "A list of @dfn{service extensions}, where each extension designates the target service type and a procedure that, given the parameters of the service, returns a list of objects to extend the service of that type." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35868 +#: guix-git/doc/guix.texi:36358 msgid "Every service type has at least one service extension. The only exception is the @dfn{boot service type}, which is the ultimate service." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35871 +#: guix-git/doc/guix.texi:36361 msgid "Optionally, a default value for instances of this type." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35874 +#: guix-git/doc/guix.texi:36364 msgid "In this example, @code{guix-service-type} extends three services:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35876 +#: guix-git/doc/guix.texi:36366 #, no-wrap msgid "shepherd-root-service-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35881 +#: guix-git/doc/guix.texi:36371 msgid "The @code{guix-shepherd-service} procedure defines how the Shepherd service is extended. Namely, it returns a @code{} object that defines how @command{guix-daemon} is started and stopped (@pxref{Shepherd Services})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35882 +#: guix-git/doc/guix.texi:36372 #, no-wrap msgid "account-service-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35887 +#: guix-git/doc/guix.texi:36377 msgid "This extension for this service is computed by @code{guix-accounts}, which returns a list of @code{user-group} and @code{user-account} objects representing the build user accounts (@pxref{Invoking guix-daemon})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35888 +#: guix-git/doc/guix.texi:36378 #, no-wrap msgid "activation-service-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35892 +#: guix-git/doc/guix.texi:36382 msgid "Here @code{guix-activation} is a procedure that returns a gexp, which is a code snippet to run at ``activation time''---e.g., when the service is booted." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35895 +#: guix-git/doc/guix.texi:36385 msgid "A service of this type is instantiated like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35901 +#: guix-git/doc/guix.texi:36391 #, no-wrap msgid "" "(service guix-service-type\n" @@ -63769,28 +64655,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35909 +#: guix-git/doc/guix.texi:36399 msgid "The second argument to the @code{service} form is a value representing the parameters of this specific service instance. @xref{guix-configuration-type, @code{guix-configuration}}, for information about the @code{guix-configuration} data type. When the value is omitted, the default value specified by @code{guix-service-type} is used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35912 +#: guix-git/doc/guix.texi:36402 #, no-wrap msgid "(service guix-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35916 +#: guix-git/doc/guix.texi:36406 msgid "@code{guix-service-type} is quite simple because it extends other services but is not extensible itself." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35920 +#: guix-git/doc/guix.texi:36410 msgid "The service type for an @emph{extensible} service looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35927 +#: guix-git/doc/guix.texi:36417 #, no-wrap msgid "" "(define udev-service-type\n" @@ -63802,7 +64688,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35935 +#: guix-git/doc/guix.texi:36425 #, no-wrap msgid "" " (compose concatenate) ;concatenate the list of rules\n" @@ -63815,96 +64701,96 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35941 +#: guix-git/doc/guix.texi:36431 msgid "This is the service type for the @uref{https://wiki.gentoo.org/wiki/Project:Eudev, eudev device management daemon}. Compared to the previous example, in addition to an extension of @code{shepherd-root-service-type}, we see two new fields:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35943 +#: guix-git/doc/guix.texi:36433 #, no-wrap msgid "compose" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35946 +#: guix-git/doc/guix.texi:36436 msgid "This is the procedure to @dfn{compose} the list of extensions to services of this type." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35949 +#: guix-git/doc/guix.texi:36439 msgid "Services can extend the udev service by passing it lists of rules; we compose those extensions simply by concatenating them." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35950 +#: guix-git/doc/guix.texi:36440 #, no-wrap msgid "extend" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35953 +#: guix-git/doc/guix.texi:36443 msgid "This procedure defines how the value of the service is @dfn{extended} with the composition of the extensions." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35958 +#: guix-git/doc/guix.texi:36448 msgid "Udev extensions are composed into a list of rules, but the udev service value is itself a @code{} record. So here, we extend that record by appending the list of rules it contains to the list of contributed rules." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35964 +#: guix-git/doc/guix.texi:36454 msgid "This is a string giving an overview of the service type. The string can contain Texinfo markup (@pxref{Overview,,, texinfo, GNU Texinfo}). The @command{guix system search} command searches these strings and displays them (@pxref{Invoking guix system})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35969 +#: guix-git/doc/guix.texi:36459 msgid "There can be only one instance of an extensible service type such as @code{udev-service-type}. If there were more, the @code{service-extension} specifications would be ambiguous." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35972 +#: guix-git/doc/guix.texi:36462 msgid "Still here? The next section provides a reference of the programming interface for services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35980 +#: guix-git/doc/guix.texi:36470 msgid "We have seen an overview of service types (@pxref{Service Types and Services}). This section provides a reference on how to manipulate services and service types. This interface is provided by the @code{(gnu services)} module." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35981 +#: guix-git/doc/guix.texi:36471 #, no-wrap msgid "{Scheme Procedure} service @var{type} [@var{value}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35985 +#: guix-git/doc/guix.texi:36475 msgid "Return a new service of @var{type}, a @code{} object (see below). @var{value} can be any object; it represents the parameters of this particular service instance." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35989 +#: guix-git/doc/guix.texi:36479 msgid "When @var{value} is omitted, the default value specified by @var{type} is used; if @var{type} does not specify a default value, an error is raised." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35991 +#: guix-git/doc/guix.texi:36481 msgid "For instance, this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35994 +#: guix-git/doc/guix.texi:36484 #, no-wrap msgid "(service openssh-service-type)\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35998 +#: guix-git/doc/guix.texi:36488 msgid "is equivalent to this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36002 +#: guix-git/doc/guix.texi:36492 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -63912,50 +64798,50 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36006 +#: guix-git/doc/guix.texi:36496 msgid "In both cases the result is an instance of @code{openssh-service-type} with the default configuration." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36008 +#: guix-git/doc/guix.texi:36498 #, no-wrap msgid "{Scheme Procedure} service? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36010 +#: guix-git/doc/guix.texi:36500 msgid "Return true if @var{obj} is a service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36012 +#: guix-git/doc/guix.texi:36502 #, no-wrap msgid "{Scheme Procedure} service-kind @var{service}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36014 +#: guix-git/doc/guix.texi:36504 msgid "Return the type of @var{service}---i.e., a @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36016 +#: guix-git/doc/guix.texi:36506 #, no-wrap msgid "{Scheme Procedure} service-value @var{service}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36019 +#: guix-git/doc/guix.texi:36509 msgid "Return the value associated with @var{service}. It represents its parameters." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36022 +#: guix-git/doc/guix.texi:36512 msgid "Here is an example of how a service is created and manipulated:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36031 +#: guix-git/doc/guix.texi:36521 #, no-wrap msgid "" "(define s\n" @@ -63969,7 +64855,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36034 +#: guix-git/doc/guix.texi:36524 #, no-wrap msgid "" "(service? s)\n" @@ -63978,7 +64864,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36037 +#: guix-git/doc/guix.texi:36527 #, no-wrap msgid "" "(eq? (service-kind s) nginx-service-type)\n" @@ -63986,210 +64872,210 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36047 +#: guix-git/doc/guix.texi:36537 msgid "The @code{modify-services} form provides a handy way to change the parameters of some of the services of a list such as @code{%base-services} (@pxref{Base Services, @code{%base-services}}). It evaluates to a list of services. Of course, you could always use standard list combinators such as @code{map} and @code{fold} to do that (@pxref{SRFI-1, List Library,, guile, GNU Guile Reference Manual}); @code{modify-services} simply provides a more concise form for this common pattern." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36048 +#: guix-git/doc/guix.texi:36538 #, no-wrap msgid "{Scheme Syntax} modify-services @var{services} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36050 +#: guix-git/doc/guix.texi:36540 msgid "(@var{type} @var{variable} => @var{body}) @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36053 +#: guix-git/doc/guix.texi:36543 msgid "Modify the services listed in @var{services} according to the given clauses. Each clause has the form:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36056 +#: guix-git/doc/guix.texi:36546 #, no-wrap msgid "(@var{type} @var{variable} => @var{body})\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36063 +#: guix-git/doc/guix.texi:36553 msgid "where @var{type} is a service type---e.g., @code{guix-service-type}---and @var{variable} is an identifier that is bound within the @var{body} to the service parameters---e.g., a @code{guix-configuration} instance---of the original service of that @var{type}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36070 +#: guix-git/doc/guix.texi:36560 msgid "The @var{body} should evaluate to the new service parameters, which will be used to configure the new service. This new service will replace the original in the resulting list. Because a service's service parameters are created using @code{define-record-type*}, you can write a succinct @var{body} that evaluates to the new service parameters by using the @code{inherit} feature that @code{define-record-type*} provides." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36072 +#: guix-git/doc/guix.texi:36562 msgid "Clauses can also have the following form:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36075 +#: guix-git/doc/guix.texi:36565 #, no-wrap msgid "(delete @var{type})\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36079 +#: guix-git/doc/guix.texi:36569 msgid "Such a clause removes all services of the given @var{type} from @var{services}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36081 +#: guix-git/doc/guix.texi:36571 msgid "@xref{Using the Configuration System}, for example usage." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36088 +#: guix-git/doc/guix.texi:36578 msgid "Next comes the programming interface for service types. This is something you want to know when writing new service definitions, but not necessarily when simply looking for ways to customize your @code{operating-system} declaration." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36089 +#: guix-git/doc/guix.texi:36579 #, no-wrap msgid "{Data Type} service-type" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36090 +#: guix-git/doc/guix.texi:36580 #, no-wrap msgid "service type" msgstr "서비스 유형" #. type: deftp -#: guix-git/doc/guix.texi:36093 +#: guix-git/doc/guix.texi:36583 msgid "This is the representation of a @dfn{service type} (@pxref{Service Types and Services})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36097 +#: guix-git/doc/guix.texi:36587 msgid "This is a symbol, used only to simplify inspection and debugging." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:36098 +#: guix-git/doc/guix.texi:36588 #, no-wrap msgid "extensions" msgstr "확장" #. type: table -#: guix-git/doc/guix.texi:36100 +#: guix-git/doc/guix.texi:36590 msgid "A non-empty list of @code{} objects (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36101 +#: guix-git/doc/guix.texi:36591 #, no-wrap msgid "@code{compose} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36105 +#: guix-git/doc/guix.texi:36595 msgid "If this is @code{#f}, then the service type denotes services that cannot be extended---i.e., services that do not receive ``values'' from other services." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36109 +#: guix-git/doc/guix.texi:36599 msgid "Otherwise, it must be a one-argument procedure. The procedure is called by @code{fold-services} and is passed a list of values collected from extensions. It may return any single value." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36110 +#: guix-git/doc/guix.texi:36600 #, no-wrap msgid "@code{extend} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36112 +#: guix-git/doc/guix.texi:36602 msgid "If this is @code{#f}, services of this type cannot be extended." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36118 +#: guix-git/doc/guix.texi:36608 msgid "Otherwise, it must be a two-argument procedure: @code{fold-services} calls it, passing it the initial value of the service as the first argument and the result of applying @code{compose} to the extension values as the second argument. It must return a value that is a valid parameter value for the service instance." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36124 +#: guix-git/doc/guix.texi:36614 msgid "This is a string, possibly using Texinfo markup, describing in a couple of sentences what the service is about. This string allows users to find about the service through @command{guix system search} (@pxref{Invoking guix system})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36125 +#: guix-git/doc/guix.texi:36615 #, no-wrap msgid "@code{default-value} (default: @code{&no-default-value})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36128 +#: guix-git/doc/guix.texi:36618 msgid "The default value associated for instances of this service type. This allows users to use the @code{service} form without its second argument:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36131 +#: guix-git/doc/guix.texi:36621 #, no-wrap msgid "(service @var{type})\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36135 +#: guix-git/doc/guix.texi:36625 msgid "The returned service in this case has the default value specified by @var{type}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36138 +#: guix-git/doc/guix.texi:36628 msgid "@xref{Service Types and Services}, for examples." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36140 +#: guix-git/doc/guix.texi:36630 #, no-wrap msgid "{Scheme Procedure} service-extension @var{target-type} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36146 +#: guix-git/doc/guix.texi:36636 msgid "@var{compute} Return a new extension for services of type @var{target-type}. @var{compute} must be a one-argument procedure: @code{fold-services} calls it, passing it the value associated with the service that provides the extension; it must return a valid value for the target service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36148 +#: guix-git/doc/guix.texi:36638 #, no-wrap msgid "{Scheme Procedure} service-extension? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36150 +#: guix-git/doc/guix.texi:36640 msgid "Return true if @var{obj} is a service extension." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36156 +#: guix-git/doc/guix.texi:36646 msgid "Occasionally, you might want to simply extend an existing service. This involves creating a new service type and specifying the extension of interest, which can be verbose; the @code{simple-service} procedure provides a shorthand for this." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36157 +#: guix-git/doc/guix.texi:36647 #, no-wrap msgid "{Scheme Procedure} simple-service @var{name} @var{target} @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36161 +#: guix-git/doc/guix.texi:36651 msgid "Return a service that extends @var{target} with @var{value}. This works by creating a singleton service type @var{name}, of which the returned service is an instance." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36164 +#: guix-git/doc/guix.texi:36654 msgid "For example, this extends mcron (@pxref{Scheduled Job Execution}) with an additional job:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36168 +#: guix-git/doc/guix.texi:36658 #, no-wrap msgid "" "(simple-service 'my-mcron-job mcron-service-type\n" @@ -64197,185 +65083,185 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36178 +#: guix-git/doc/guix.texi:36668 msgid "At the core of the service abstraction lies the @code{fold-services} procedure, which is responsible for ``compiling'' a list of services down to a single directory that contains everything needed to boot and run the system---the directory shown by the @command{guix system build} command (@pxref{Invoking guix system}). In essence, it propagates service extensions down the service graph, updating each node parameters on the way, until it reaches the root node." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36179 +#: guix-git/doc/guix.texi:36669 #, no-wrap msgid "{Scheme Procedure} fold-services @var{services} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36183 +#: guix-git/doc/guix.texi:36673 msgid "[#:target-type @var{system-service-type}] Fold @var{services} by propagating their extensions down to the root of type @var{target-type}; return the root service adjusted accordingly." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36187 +#: guix-git/doc/guix.texi:36677 msgid "Lastly, the @code{(gnu services)} module also defines several essential service types, some of which are listed below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36188 +#: guix-git/doc/guix.texi:36678 #, no-wrap msgid "{Scheme Variable} system-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36191 +#: guix-git/doc/guix.texi:36681 msgid "This is the root of the service graph. It produces the system directory as returned by the @command{guix system build} command." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36193 +#: guix-git/doc/guix.texi:36683 #, no-wrap msgid "{Scheme Variable} boot-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36196 +#: guix-git/doc/guix.texi:36686 msgid "The type of the ``boot service'', which produces the @dfn{boot script}. The boot script is what the initial RAM disk runs when booting." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36198 +#: guix-git/doc/guix.texi:36688 #, no-wrap msgid "{Scheme Variable} etc-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36202 +#: guix-git/doc/guix.texi:36692 msgid "The type of the @file{/etc} service. This service is used to create files under @file{/etc} and can be extended by passing it name/file tuples such as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36205 +#: guix-git/doc/guix.texi:36695 #, no-wrap msgid "(list `(\"issue\" ,(plain-file \"issue\" \"Welcome!\\n\")))\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36209 +#: guix-git/doc/guix.texi:36699 msgid "In this example, the effect would be to add an @file{/etc/issue} file pointing to the given file." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36211 +#: guix-git/doc/guix.texi:36701 #, no-wrap msgid "{Scheme Variable} setuid-program-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36215 +#: guix-git/doc/guix.texi:36705 msgid "Type for the ``setuid-program service''. This service collects lists of executable file names, passed as gexps, and adds them to the set of setuid-root programs on the system (@pxref{Setuid Programs})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36217 +#: guix-git/doc/guix.texi:36707 #, no-wrap msgid "{Scheme Variable} profile-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36221 +#: guix-git/doc/guix.texi:36711 msgid "Type of the service that populates the @dfn{system profile}---i.e., the programs under @file{/run/current-system/profile}. Other services can extend it by passing it lists of packages to add to the system profile." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:36225 +#: guix-git/doc/guix.texi:36715 msgid "provenance-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36225 +#: guix-git/doc/guix.texi:36715 #, no-wrap msgid "{Scheme Variable} provenance-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36229 +#: guix-git/doc/guix.texi:36719 msgid "This is the type of the service that records @dfn{provenance meta-data} in the system itself. It creates several files under @file{/run/current-system}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36231 +#: guix-git/doc/guix.texi:36721 #, no-wrap msgid "channels.scm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36236 +#: guix-git/doc/guix.texi:36726 msgid "This is a ``channel file'' that can be passed to @command{guix pull -C} or @command{guix time-machine -C}, and which describes the channels used to build the system, if that information was available (@pxref{Channels})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36237 +#: guix-git/doc/guix.texi:36727 #, no-wrap msgid "configuration.scm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36242 +#: guix-git/doc/guix.texi:36732 msgid "This is the file that was passed as the value for this @code{provenance-service-type} service. By default, @command{guix system reconfigure} automatically passes the OS configuration file it received on the command line." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36243 +#: guix-git/doc/guix.texi:36733 #, no-wrap msgid "provenance" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36246 +#: guix-git/doc/guix.texi:36736 msgid "This contains the same information as the two other files but in a format that is more readily processable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36250 +#: guix-git/doc/guix.texi:36740 msgid "In general, these two pieces of information (channels and configuration file) are enough to reproduce the operating system ``from source''." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36251 +#: guix-git/doc/guix.texi:36741 #, no-wrap msgid "Caveats" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36258 +#: guix-git/doc/guix.texi:36748 msgid "This information is necessary to rebuild your operating system, but it is not always sufficient. In particular, @file{configuration.scm} itself is insufficient if it is not self-contained---if it refers to external Guile modules or to extra files. If you want @file{configuration.scm} to be self-contained, we recommend that modules or files it refers to be part of a channel." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36266 +#: guix-git/doc/guix.texi:36756 msgid "Besides, provenance meta-data is ``silent'' in the sense that it does not change the bits contained in your system, @emph{except for the meta-data bits themselves}. Two different OS configurations or sets of channels can lead to the same system, bit-for-bit; when @code{provenance-service-type} is used, these two systems will have different meta-data and thus different store file names, which makes comparison less trivial." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36271 +#: guix-git/doc/guix.texi:36761 msgid "This service is automatically added to your operating system configuration when you use @command{guix system reconfigure}, @command{guix system init}, or @command{guix deploy}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36273 +#: guix-git/doc/guix.texi:36763 #, no-wrap msgid "{Scheme Variable} linux-loadable-module-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36277 +#: guix-git/doc/guix.texi:36767 msgid "Type of the service that collects lists of packages containing kernel-loadable modules, and adds them to the set of kernel-loadable modules." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36280 +#: guix-git/doc/guix.texi:36770 msgid "This service type is intended to be extended by other service types, such as below:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36286 +#: guix-git/doc/guix.texi:36776 #, no-wrap msgid "" "(simple-service 'installing-module\n" @@ -64385,192 +65271,192 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36290 +#: guix-git/doc/guix.texi:36780 msgid "This does not actually load modules at bootup, only adds it to the kernel profile so that it @emph{can} be loaded by other means." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36295 guix-git/doc/guix.texi:37447 +#: guix-git/doc/guix.texi:36785 #, no-wrap msgid "shepherd services" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36296 +#: guix-git/doc/guix.texi:36786 #, no-wrap msgid "PID 1" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36297 +#: guix-git/doc/guix.texi:36787 #, no-wrap msgid "init system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36303 +#: guix-git/doc/guix.texi:36793 msgid "The @code{(gnu services shepherd)} module provides a way to define services managed by the GNU@tie{}Shepherd, which is the initialization system---the first process that is started when the system boots, also known as PID@tie{}1 (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36309 +#: guix-git/doc/guix.texi:36799 msgid "Services in the Shepherd can depend on each other. For instance, the SSH daemon may need to be started after the syslog daemon has been started, which in turn can only happen once all the file systems have been mounted. The simple operating system defined earlier (@pxref{Using the Configuration System}) results in a service graph like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36311 +#: guix-git/doc/guix.texi:36801 msgid "@image{images/shepherd-graph,,5in,Typical shepherd service graph.}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36315 +#: guix-git/doc/guix.texi:36805 msgid "You can actually generate such a graph for any operating system definition using the @command{guix system shepherd-graph} command (@pxref{system-shepherd-graph, @command{guix system shepherd-graph}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36319 +#: guix-git/doc/guix.texi:36809 msgid "The @code{%shepherd-root-service} is a service object representing PID@tie{}1, of type @code{shepherd-root-service-type}; it can be extended by passing it lists of @code{} objects." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36320 +#: guix-git/doc/guix.texi:36810 #, no-wrap msgid "{Data Type} shepherd-service" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36322 +#: guix-git/doc/guix.texi:36812 msgid "The data type representing a service managed by the Shepherd." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:36324 +#: guix-git/doc/guix.texi:36814 #, no-wrap msgid "provision" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36326 +#: guix-git/doc/guix.texi:36816 msgid "This is a list of symbols denoting what the service provides." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36331 +#: guix-git/doc/guix.texi:36821 msgid "These are the names that may be passed to @command{herd start}, @command{herd status}, and similar commands (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual}). @xref{Slots of services, the @code{provides} slot,, shepherd, The GNU Shepherd Manual}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36332 +#: guix-git/doc/guix.texi:36822 #, no-wrap msgid "@code{requirement} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36334 +#: guix-git/doc/guix.texi:36824 msgid "List of symbols denoting the Shepherd services this one depends on." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36335 +#: guix-git/doc/guix.texi:36825 #, no-wrap msgid "one-shot services, for the Shepherd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36340 +#: guix-git/doc/guix.texi:36830 msgid "Whether this service is @dfn{one-shot}. One-shot services stop immediately after their @code{start} action has completed. @xref{Slots of services,,, shepherd, The GNU Shepherd Manual}, for more info." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36341 +#: guix-git/doc/guix.texi:36831 #, no-wrap msgid "@code{respawn?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36344 +#: guix-git/doc/guix.texi:36834 msgid "Whether to restart the service when it stops, for instance when the underlying process dies." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:36345 +#: guix-git/doc/guix.texi:36835 #, no-wrap msgid "start" msgstr "시작" #. type: itemx -#: guix-git/doc/guix.texi:36346 +#: guix-git/doc/guix.texi:36836 #, no-wrap msgid "@code{stop} (default: @code{#~(const #f)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36352 +#: guix-git/doc/guix.texi:36842 msgid "The @code{start} and @code{stop} fields refer to the Shepherd's facilities to start and stop processes (@pxref{Service De- and Constructors,,, shepherd, The GNU Shepherd Manual}). They are given as G-expressions that get expanded in the Shepherd configuration file (@pxref{G-Expressions})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36353 +#: guix-git/doc/guix.texi:36843 #, no-wrap msgid "@code{actions} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36354 +#: guix-git/doc/guix.texi:36844 #, no-wrap msgid "actions, of Shepherd services" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36359 +#: guix-git/doc/guix.texi:36849 msgid "This is a list of @code{shepherd-action} objects (see below) defining @dfn{actions} supported by the service, in addition to the standard @code{start} and @code{stop} actions. Actions listed here become available as @command{herd} sub-commands:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36362 +#: guix-git/doc/guix.texi:36852 #, no-wrap msgid "herd @var{action} @var{service} [@var{arguments}@dots{}]\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36364 +#: guix-git/doc/guix.texi:36854 #, no-wrap msgid "@code{auto-start?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36367 +#: guix-git/doc/guix.texi:36857 msgid "Whether this service should be started automatically by the Shepherd. If it is @code{#f} the service has to be started manually with @code{herd start}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36370 +#: guix-git/doc/guix.texi:36860 msgid "A documentation string, as shown when running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36373 +#: guix-git/doc/guix.texi:36863 #, no-wrap msgid "herd doc @var{service-name}\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36377 +#: guix-git/doc/guix.texi:36867 msgid "where @var{service-name} is one of the symbols in @code{provision} (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36381 +#: guix-git/doc/guix.texi:36871 msgid "This is the list of modules that must be in scope when @code{start} and @code{stop} are evaluated." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36389 +#: guix-git/doc/guix.texi:36879 msgid "The example below defines a Shepherd service that spawns @command{syslogd}, the system logger from the GNU Networking Utilities (@pxref{syslogd invocation, @command{syslogd},, inetutils, GNU Inetutils}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36401 +#: guix-git/doc/guix.texi:36891 #, no-wrap msgid "" "(let ((config (plain-file \"syslogd.conf\" \"@dots{}\")))\n" @@ -64586,55 +65472,55 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36416 +#: guix-git/doc/guix.texi:36906 msgid "Key elements in this example are the @code{start} and @code{stop} fields: they are @dfn{staged} code snippets that use the @code{make-forkexec-constructor} procedure provided by the Shepherd and its dual, @code{make-kill-destructor} (@pxref{Service De- and Constructors,,, shepherd, The GNU Shepherd Manual}). The @code{start} field will have @command{shepherd} spawn @command{syslogd} with the given option; note that we pass @code{config} after @option{--rcfile}, which is a configuration file declared above (contents of this file are omitted). Likewise, the @code{stop} field tells how this service is to be stopped; in this case, it is stopped by making the @code{kill} system call on its PID@. Code staging is achieved using G-expressions: @code{#~} stages code, while @code{#$} ``escapes'' back to host code (@pxref{G-Expressions})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36417 +#: guix-git/doc/guix.texi:36907 #, no-wrap msgid "{Data Type} shepherd-action" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36420 +#: guix-git/doc/guix.texi:36910 msgid "This is the data type that defines additional actions implemented by a Shepherd service (see above)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36424 +#: guix-git/doc/guix.texi:36914 msgid "Symbol naming the action." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36427 +#: guix-git/doc/guix.texi:36917 msgid "This is a documentation string for the action. It can be viewed by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36430 +#: guix-git/doc/guix.texi:36920 #, no-wrap msgid "herd doc @var{service} action @var{action}\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36432 +#: guix-git/doc/guix.texi:36922 #, no-wrap msgid "procedure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36436 +#: guix-git/doc/guix.texi:36926 msgid "This should be a gexp that evaluates to a procedure of at least one argument, which is the ``running value'' of the service (@pxref{Slots of services,,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36440 +#: guix-git/doc/guix.texi:36930 msgid "The following example defines an action called @code{say-hello} that kindly greets the user:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36449 +#: guix-git/doc/guix.texi:36939 #, no-wrap msgid "" "(shepherd-action\n" @@ -64647,12 +65533,12 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36452 +#: guix-git/doc/guix.texi:36942 msgid "Assuming this action is added to the @code{example} service, then you can do:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36458 +#: guix-git/doc/guix.texi:36948 #, no-wrap msgid "" "# herd say-hello example\n" @@ -64662,66 +65548,66 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36463 +#: guix-git/doc/guix.texi:36953 msgid "This, as you can see, is a fairly sophisticated way to say hello. @xref{Service Convenience,,, shepherd, The GNU Shepherd Manual}, for more info on actions." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36465 +#: guix-git/doc/guix.texi:36955 #, no-wrap msgid "{Scheme Variable} shepherd-root-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36467 +#: guix-git/doc/guix.texi:36957 msgid "The service type for the Shepherd ``root service''---i.e., PID@tie{}1." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36472 +#: guix-git/doc/guix.texi:36962 msgid "This is the service type that extensions target when they want to create shepherd services (@pxref{Service Types and Services}, for an example). Each extension must pass a list of @code{}. Its value must be a @code{shepherd-configuration}, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36474 +#: guix-git/doc/guix.texi:36964 #, no-wrap msgid "{Data Type} shepherd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36476 guix-git/doc/guix.texi:37463 +#: guix-git/doc/guix.texi:36966 guix-git/doc/guix.texi:37959 msgid "This data type represents the Shepherd's configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36478 guix-git/doc/guix.texi:37465 +#: guix-git/doc/guix.texi:36968 guix-git/doc/guix.texi:37961 #, no-wrap msgid "shepherd (default: @code{shepherd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36480 guix-git/doc/guix.texi:37467 +#: guix-git/doc/guix.texi:36970 guix-git/doc/guix.texi:37963 msgid "The Shepherd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36481 guix-git/doc/guix.texi:37471 +#: guix-git/doc/guix.texi:36971 guix-git/doc/guix.texi:37967 #, no-wrap msgid "services (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36485 guix-git/doc/guix.texi:37475 +#: guix-git/doc/guix.texi:36975 guix-git/doc/guix.texi:37971 msgid "A list of @code{} to start. You should probably use the service extension mechanism instead (@pxref{Shepherd Services})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36490 +#: guix-git/doc/guix.texi:36980 msgid "The following example specifies the Shepherd package for the operating system:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36505 +#: guix-git/doc/guix.texi:36995 #, no-wrap msgid "" "(operating-system\n" @@ -64740,51 +65626,51 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36507 +#: guix-git/doc/guix.texi:36997 #, no-wrap msgid "{Scheme Variable} %shepherd-root-service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36509 +#: guix-git/doc/guix.texi:36999 msgid "This service represents PID@tie{}1." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36513 +#: guix-git/doc/guix.texi:37003 #, fuzzy, no-wrap #| msgid "home configuration" msgid "complex configurations" msgstr "홈 구성" #. type: Plain text -#: guix-git/doc/guix.texi:36518 +#: guix-git/doc/guix.texi:37008 msgid "Some programs might have rather complex configuration files or formats, and to make it easier to create Scheme bindings for these configuration files, you can use the utilities defined in the @code{(gnu services configuration)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36526 +#: guix-git/doc/guix.texi:37016 msgid "The main utility is the @code{define-configuration} macro, which you will use to define a Scheme record type (@pxref{Record Overview,,, guile, GNU Guile Reference Manual}). The Scheme record will be serialized to a configuration file by using @dfn{serializers}, which are procedures that take some kind of Scheme value and returns a G-expression (@pxref{G-Expressions}), which should, once serialized to the disk, return a string. More details are listed below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36527 +#: guix-git/doc/guix.texi:37017 #, no-wrap msgid "{Scheme Syntax} define-configuration @var{name} @var{clause1} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36531 +#: guix-git/doc/guix.texi:37021 msgid "@var{clause2} ... Create a record type named @code{@var{name}} that contains the fields found in the clauses." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36533 +#: guix-git/doc/guix.texi:37023 msgid "A clause can have one of the following forms:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36538 +#: guix-git/doc/guix.texi:37028 #, no-wrap msgid "" "(@var{field-name}\n" @@ -64794,7 +65680,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36543 +#: guix-git/doc/guix.texi:37033 #, no-wrap msgid "" "(@var{field-name}\n" @@ -64805,7 +65691,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36547 +#: guix-git/doc/guix.texi:37037 #, no-wrap msgid "" "(@var{field-name}\n" @@ -64815,7 +65701,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36552 +#: guix-git/doc/guix.texi:37042 #, no-wrap msgid "" "(@var{field-name}\n" @@ -64825,37 +65711,37 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36556 +#: guix-git/doc/guix.texi:37046 msgid "@var{field-name} is an identifier that denotes the name of the field in the generated record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36564 +#: guix-git/doc/guix.texi:37054 msgid "@var{type} is the type of the value corresponding to @var{field-name}; since Guile is untyped, a predicate procedure---@code{@var{type}?}---will be called on the value corresponding to the field to ensure that the value is of the correct type. This means that if say, @var{type} is @code{package}, then a procedure named @code{package?} will be applied on the value to make sure that it is indeed a @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36568 +#: guix-git/doc/guix.texi:37058 msgid "@var{default-value} is the default value corresponding to the field; if none is specified, the user is forced to provide a value when creating an object of the record type." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36573 +#: guix-git/doc/guix.texi:37063 msgid "@var{documentation} is a string formatted with Texinfo syntax which should provide a description of what setting this field does." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36580 +#: guix-git/doc/guix.texi:37070 msgid "@var{serializer} is the name of a procedure which takes two arguments, the first is the name of the field, and the second is the value corresponding to the field. The procedure should return a string or G-expression (@pxref{G-Expressions}) that represents the content that will be serialized to the configuration file. If none is specified, a procedure of the name @code{serialize-@var{type}} will be used." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36582 +#: guix-git/doc/guix.texi:37072 msgid "A simple serializer procedure could look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36587 +#: guix-git/doc/guix.texi:37077 #, no-wrap msgid "" "(define (serialize-boolean field-name value)\n" @@ -64864,12 +65750,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36598 +#: guix-git/doc/guix.texi:37088 msgid "In some cases multiple different configuration records might be defined in the same file, but their serializers for the same type might have to be different, because they have different configuration formats. For example, the @code{serialize-boolean} procedure for the Getmail service would have to be different for the one for the Transmission service. To make it easier to deal with this situation, one can specify a serializer prefix by using the @code{prefix} literal in the @code{define-configuration} form. This means that one doesn't have to manually specify a custom @var{serializer} for every field." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36602 +#: guix-git/doc/guix.texi:37092 #, no-wrap msgid "" "(define (foo-serialize-string field-name value)\n" @@ -64878,7 +65764,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36605 +#: guix-git/doc/guix.texi:37095 #, no-wrap msgid "" "(define (bar-serialize-string field-name value)\n" @@ -64887,7 +65773,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36611 +#: guix-git/doc/guix.texi:37101 #, no-wrap msgid "" "(define-configuration foo-configuration\n" @@ -64899,7 +65785,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36617 +#: guix-git/doc/guix.texi:37107 #, no-wrap msgid "" "(define-configuration bar-configuration\n" @@ -64910,12 +65796,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36623 +#: guix-git/doc/guix.texi:37113 msgid "However, in some cases you might not want to serialize any of the values of the record, to do this, you can use the @code{no-serialization} literal. There is also the @code{define-configuration/no-serialization} macro which is a shorthand of this." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36631 +#: guix-git/doc/guix.texi:37121 #, no-wrap msgid "" ";; Nothing will be serialized to disk.\n" @@ -64928,7 +65814,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36637 +#: guix-git/doc/guix.texi:37127 #, no-wrap msgid "" ";; The same thing as above.\n" @@ -64939,23 +65825,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36640 +#: guix-git/doc/guix.texi:37130 #, no-wrap msgid "{Scheme Syntax} define-maybe @var{type}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36645 +#: guix-git/doc/guix.texi:37135 msgid "Sometimes a field should not be serialized if the user doesn’t specify a value. To achieve this, you can use the @code{define-maybe} macro to define a ``maybe type''; if the value of a maybe type is set to the @code{disabled}, it will not be serialized." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36652 +#: guix-git/doc/guix.texi:37142 msgid "When defining a ``maybe type'', the corresponding serializer for the regular type will be used by default. For example, a field of type @code{maybe-string} will be serialized using the @code{serialize-string} procedure by default, you can of course change this by specifying a custom serializer procedure. Likewise, the type of the value would have to be a string, unless it is set to the @code{disabled} symbol." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36655 +#: guix-git/doc/guix.texi:37145 #, no-wrap msgid "" "(define-maybe string)\n" @@ -64963,7 +65849,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36658 +#: guix-git/doc/guix.texi:37148 #, no-wrap msgid "" "(define (serialize-string field-name value)\n" @@ -64972,7 +65858,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36665 +#: guix-git/doc/guix.texi:37155 #, no-wrap msgid "" "(define-configuration baz-configuration\n" @@ -64984,12 +65870,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36669 +#: guix-git/doc/guix.texi:37159 msgid "Like with @code{define-configuration}, one can set a prefix for the serializer name by using the @code{prefix} literal." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36673 +#: guix-git/doc/guix.texi:37163 #, no-wrap msgid "" "(define-maybe integer\n" @@ -64998,7 +65884,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36676 +#: guix-git/doc/guix.texi:37166 #, no-wrap msgid "" "(define (baz-serialize-interger field-name value)\n" @@ -65006,12 +65892,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36683 +#: guix-git/doc/guix.texi:37173 msgid "There is also the @code{no-serialization} literal, which when set means that no serializer will be defined for the ``maybe type'', regardless of its value is @code{disabled} or not. @code{define-maybe/no-serialization} is a shorthand for specifying the @code{no-serialization} literal." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36686 +#: guix-git/doc/guix.texi:37176 #, no-wrap msgid "" "(define-maybe/no-serialization symbol)\n" @@ -65019,7 +65905,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36691 +#: guix-git/doc/guix.texi:37181 #, no-wrap msgid "" "(define-configuration/no-serialization test-configuration\n" @@ -65029,66 +65915,66 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36694 +#: guix-git/doc/guix.texi:37184 #, no-wrap msgid "{Scheme Procedure} serialize-configuration @var{configuration} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36700 +#: guix-git/doc/guix.texi:37190 msgid "@var{fields} Return a G-expression that contains the values corresponding to the @var{fields} of @var{configuration}, a record that has been generated by @code{define-configuration}. The G-expression can then be serialized to disk by using something like @code{mixed-text-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36702 +#: guix-git/doc/guix.texi:37192 #, no-wrap msgid "{Scheme Procedure} validate-configuration @var{configuration}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36706 +#: guix-git/doc/guix.texi:37196 msgid "@var{fields} Type-check @var{fields}, a list of field names of @var{configuration}, a configuration record created by @code{define-configuration}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36708 +#: guix-git/doc/guix.texi:37198 #, no-wrap msgid "{Scheme Procedure} empty-serializer @var{field-name} @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36711 +#: guix-git/doc/guix.texi:37201 msgid "A serializer that just returns an empty string. The @code{serialize-package} procedure is an alias for this." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36716 +#: guix-git/doc/guix.texi:37206 msgid "Once you have defined a configuration record, you will most likely also want to document it so that other people know to use it. To help with that, there are two procedures, both of which are documented below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36717 +#: guix-git/doc/guix.texi:37207 #, no-wrap msgid "{Scheme Procedure} generate-documentation @var{documentation} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36724 +#: guix-git/doc/guix.texi:37214 msgid "@var{documentation-name} Generate a Texinfo fragment from the docstrings in @var{documentation}, a list of @code{(@var{label} @var{fields} @var{sub-documentation} ...)}. @var{label} should be a symbol and should be the name of the configuration record. @var{fields} should be a list of all the fields available for the configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36729 +#: guix-git/doc/guix.texi:37219 msgid "@var{sub-documentation} is a @code{(@var{field-name} @var{configuration-name})} tuple. @var{field-name} is the name of the field which takes another configuration record as its value, and @var{configuration-name} is the name of that configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36736 +#: guix-git/doc/guix.texi:37226 msgid "@var{sub-documentation} is only needed if there are nested configuration records. For example, the @code{getmail-configuration} record (@pxref{Mail Services}) accepts a @code{getmail-configuration-file} record in one of its @code{rcfile} field, therefore documentation for @code{getmail-configuration-file} is nested in @code{getmail-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36743 +#: guix-git/doc/guix.texi:37233 #, no-wrap msgid "" "(generate-documentation\n" @@ -65099,33 +65985,33 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36747 +#: guix-git/doc/guix.texi:37237 msgid "@var{documentation-name} should be a symbol and should be the name of the configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36750 +#: guix-git/doc/guix.texi:37240 #, no-wrap msgid "{Scheme Procedure} configuration->documentation" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36757 +#: guix-git/doc/guix.texi:37247 msgid "@var{configuration-symbol} Take @var{configuration-symbol}, the symbol corresponding to the name used when defining a configuration record with @code{define-configuration}, and print the Texinfo documentation of its fields. This is useful if there aren’t any nested configuration records since it only prints the documentation for the top-level fields." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36765 +#: guix-git/doc/guix.texi:37255 msgid "As of right now, there is no automated way to generate documentation for configuration records and put them in the manual. Instead, every time you make a change to the docstrings of a configuration record, you have to manually call @code{generate-documentation} or @code{configuration->documentation}, and paste the output into the @file{doc/guix.texi} file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36769 +#: guix-git/doc/guix.texi:37259 msgid "Below is an example of a record type created using @code{define-configuration} and friends." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36776 +#: guix-git/doc/guix.texi:37266 #, no-wrap msgid "" "(use-modules (gnu services)\n" @@ -65137,7 +66023,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36784 +#: guix-git/doc/guix.texi:37274 #, no-wrap msgid "" ";; Turn field names, which are Scheme symbols into strings\n" @@ -65151,7 +66037,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36787 +#: guix-git/doc/guix.texi:37277 #, no-wrap msgid "" "(define (serialize-string field-name value)\n" @@ -65160,7 +66046,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36790 +#: guix-git/doc/guix.texi:37280 #, no-wrap msgid "" "(define (serialize-integer field-name value)\n" @@ -65169,7 +66055,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36793 +#: guix-git/doc/guix.texi:37283 #, no-wrap msgid "" "(define (serialize-boolean field-name value)\n" @@ -65178,7 +66064,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36796 +#: guix-git/doc/guix.texi:37286 #, no-wrap msgid "" "(define (serialize-contact-name field-name value)\n" @@ -65187,7 +66073,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36799 +#: guix-git/doc/guix.texi:37289 #, no-wrap msgid "" "(define (list-of-contact-configurations? lst)\n" @@ -65196,7 +66082,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36804 +#: guix-git/doc/guix.texi:37294 #, no-wrap msgid "" "(define (serialize-list-of-contact-configurations field-name value)\n" @@ -65207,7 +66093,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36811 +#: guix-git/doc/guix.texi:37301 #, no-wrap msgid "" "(define (serialize-contacts-list-configuration configuration)\n" @@ -65220,7 +66106,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36814 +#: guix-git/doc/guix.texi:37304 #, no-wrap msgid "" "(define-maybe integer)\n" @@ -65229,7 +66115,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36829 +#: guix-git/doc/guix.texi:37319 #, no-wrap msgid "" "(define-configuration contact-configuration\n" @@ -65250,7 +66136,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36841 +#: guix-git/doc/guix.texi:37331 #, no-wrap msgid "" "(define-configuration contacts-list-configuration\n" @@ -65267,12 +66153,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36844 +#: guix-git/doc/guix.texi:37334 msgid "A contacts list configuration could then be created like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36860 +#: guix-git/doc/guix.texi:37350 #, no-wrap msgid "" "(define my-contacts\n" @@ -65292,12 +66178,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36864 +#: guix-git/doc/guix.texi:37354 msgid "After serializing the configuration to disk, the resulting file would look like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36869 +#: guix-git/doc/guix.texi:37359 #, no-wrap msgid "" "[owner]\n" @@ -65307,7 +66193,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36874 +#: guix-git/doc/guix.texi:37364 #, no-wrap msgid "" "[Bob]\n" @@ -65318,7 +66204,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36878 +#: guix-git/doc/guix.texi:37368 #, no-wrap msgid "" "[Charlie]\n" @@ -65327,207 +66213,207 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36883 +#: guix-git/doc/guix.texi:37373 #, no-wrap msgid "home configuration" msgstr "홈 구성" #. type: Plain text -#: guix-git/doc/guix.texi:36895 +#: guix-git/doc/guix.texi:37385 msgid "Guix supports declarative configuration of @dfn{home environments} by utilizing the configuration mechanism described in the previous chapter (@pxref{Defining Services}), but for user's dotfiles and packages. It works both on Guix System and foreign distros and allows users to declare all the packages and services that should be installed and configured for the user. Once a user has written a file containing @code{home-environment} record, such a configuration can be @dfn{instantiated} by an unprivileged user with the @command{guix home} command (@pxref{Invoking guix home})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36912 +#: guix-git/doc/guix.texi:37402 msgid "The user's home environment usually consists of three basic parts: software, configuration, and state. Software in mainstream distros are usually installed system-wide, but with GNU Guix most software packages can be installed on a per-user basis without needing root privileges, and are thus considered part of the user’s @dfn{home environment}. Packages on their own not very useful in many cases, because often they require some additional configuration, usually config files that reside in @env{XDG_CONFIG_HOME} (@file{~/.config} by default) or other directories. Everything else can be considered state, like media files, application databases, and logs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36915 +#: guix-git/doc/guix.texi:37405 msgid "Using Guix for managing home environments provides a number of advantages:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36918 +#: guix-git/doc/guix.texi:37408 #, no-wrap msgid "All software can be configured in one language (Guile Scheme)," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36921 +#: guix-git/doc/guix.texi:37411 msgid "this gives users the ability to share values between configurations of different programs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36922 +#: guix-git/doc/guix.texi:37412 #, no-wrap msgid "A well-defined home environment is self-contained and can be" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36925 +#: guix-git/doc/guix.texi:37415 msgid "created in a declarative and reproducible way---there is no need to grab external binaries or manually edit some configuration file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36926 +#: guix-git/doc/guix.texi:37416 #, no-wrap msgid "After every @command{guix home reconfigure} invocation, a new home" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36930 +#: guix-git/doc/guix.texi:37420 msgid "environment generation will be created. This means that users can rollback to a previous home environment generation so they don’t have to worry about breaking their configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36931 +#: guix-git/doc/guix.texi:37421 #, no-wrap msgid "It is possible to manage stateful data with Guix Home, this" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36936 +#: guix-git/doc/guix.texi:37426 msgid "includes the ability to automatically clone Git repositories on the initial setup of the machine, and periodically running commands like @command{rsync} to sync data with another host. This functionality is still in an experimental stage, though." msgstr "" #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:36946 -#: guix-git/doc/guix.texi:36947 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37436 +#: guix-git/doc/guix.texi:37437 #, no-wrap msgid "Declaring the Home Environment" msgstr "홈 환경을 선언" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 msgid "Customizing your Home." msgstr "" #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:37014 -#: guix-git/doc/guix.texi:37015 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37504 +#: guix-git/doc/guix.texi:37505 #, no-wrap msgid "Configuring the Shell" msgstr "쉘 구성하기" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 #, fuzzy #| msgid "Building development environments with Guix." msgid "Enabling home environment." msgstr "guix로 개발 환경 구성하기." #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:37061 -#: guix-git/doc/guix.texi:37062 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37551 +#: guix-git/doc/guix.texi:37552 #, no-wrap msgid "Home Services" msgstr "홈 서비스" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 msgid "Specifying home services." msgstr "홈 서비스 지정하기." #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 #, fuzzy #| msgid "Manage the operating system configuration." msgid "Instantiating a home configuration." msgstr "운영체제 설정 관리." #. type: Plain text -#: guix-git/doc/guix.texi:36953 +#: guix-git/doc/guix.texi:37443 msgid "The home environment is configured by providing a @code{home-environment} declaration in a file that can be passed to the @command{guix home} command (@pxref{Invoking guix home}). The easiest way to get started is by generating an initial configuration with @command{guix home import}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36956 +#: guix-git/doc/guix.texi:37446 #, no-wrap msgid "guix home import ~/src/guix-config\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36964 +#: guix-git/doc/guix.texi:37454 msgid "The @command{guix home import} command reads some of the ``dot files'' such as @file{~/.bashrc} found in your home directory and copies them to the given directory, @file{~/src/guix-config} in this case; it also reads the contents of your profile, @file{~/.guix-profile}, and, based on that, it populates @file{~/src/guix-config/home-configuration.scm} with a Home configuration that resembles your current configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36970 +#: guix-git/doc/guix.texi:37460 msgid "A simple setup can include Bash and a custom text configuration, like in the example below. Don't be afraid to declare home environment parts, which overlaps with your current dot files: before installing any configuration files, Guix Home will back up existing config files to a separate place in the home directory." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36976 +#: guix-git/doc/guix.texi:37466 msgid "It is highly recommended that you manage your shell or shells with Guix Home, because it will make sure that all the necessary scripts are sourced by the shell configuration file. Otherwise you will need to do it manually. (@pxref{Configuring the Shell})." msgstr "" #. type: findex -#: guix-git/doc/guix.texi:36978 +#: guix-git/doc/guix.texi:37468 #, fuzzy, no-wrap #| msgid "environment" msgid "home-environment" msgstr "환경" #. type: include -#: guix-git/doc/guix.texi:36980 +#: guix-git/doc/guix.texi:37470 #, no-wrap msgid "he-config-bare-bones.scm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36987 +#: guix-git/doc/guix.texi:37477 msgid "The @code{packages} field should be self-explanatory, it will install the list of packages into the user's profile. The most important field is @code{services}, it contains a list of @dfn{home services}, which are the basic building blocks of a home environment." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36995 +#: guix-git/doc/guix.texi:37485 msgid "There is no daemon (at least not necessarily) related to a home service, a home service is just an element that is used to declare part of home environment and extend other parts of it. The extension mechanism discussed in the previous chapter (@pxref{Defining Services}) should not be confused with Shepherd services (@pxref{Shepherd Services}). Using this extension mechanism and some Scheme code that glues things together gives the user the freedom to declare their own, very custom, home environments." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36998 +#: guix-git/doc/guix.texi:37488 msgid "Once you have a configuration file that suits your needs, you can reconfigure your home by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37001 +#: guix-git/doc/guix.texi:37491 #, no-wrap msgid "guix home reconfigure config.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37005 +#: guix-git/doc/guix.texi:37495 msgid "This ``builds'' your home environment and creates @file{~/.guix-home} pointing to it. Voilà!" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37012 +#: guix-git/doc/guix.texi:37502 msgid "Make sure the operating system has elogind, systemd, or a similar mechanism to create the XDG run-time directory and has the @env{XDG_RUNTIME_DIR} variable set. Failing that, the @file{on-first-login} script will not execute anything, and processes like user Shepherd and its descendants will not start." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37018 +#: guix-git/doc/guix.texi:37508 msgid "This section is safe to skip if your shell or shells are managed by Guix Home. Otherwise, read it carefully." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37025 +#: guix-git/doc/guix.texi:37515 msgid "There are a few scripts that must be evaluated by a login shell to activate the home environment. The shell startup files only read by login shells often have @code{profile} suffix. For more information about login shells see @ref{Invoking Bash,,, bash, The GNU Bash Reference Manual} and see @ref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37032 +#: guix-git/doc/guix.texi:37522 msgid "The first script that needs to be sourced is @file{setup-environment}, which sets all the necessary environment variables (including variables declared by the user) and the second one is @file{on-first-login}, which starts Shepherd for the current user and performs actions declared by other home services that extends @code{home-run-on-first-login-service-type}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37035 +#: guix-git/doc/guix.texi:37525 msgid "Guix Home will always create @file{~/.profile}, which contains the following lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37040 +#: guix-git/doc/guix.texi:37530 #, no-wrap msgid "" "HOME_ENVIRONMENT=$HOME/.guix-home\n" @@ -65536,110 +66422,110 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37050 +#: guix-git/doc/guix.texi:37540 msgid "This makes POSIX compliant login shells activate the home environment. However, in most cases this file won't be read by most modern shells, because they are run in non POSIX mode by default and have their own @file{*profile} startup files. For example Bash will prefer @file{~/.bash_profile} in case it exists and only if it doesn't will it fallback to @file{~/.profile}. Zsh (if no additional options are specified) will ignore @file{~/.profile}, even if @file{~/.zprofile} doesn't exist." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37055 +#: guix-git/doc/guix.texi:37545 msgid "To make your shell respect @file{~/.profile}, add @code{. ~/.profile} or @code{source ~/profile} to the startup file for the login shell. In case of Bash, it is @file{~/.bash_profile}, and in case of Zsh, it is @file{~/.zprofile}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37059 +#: guix-git/doc/guix.texi:37549 msgid "This step is only required if your shell is NOT managed by Guix Home. Otherwise, everything will be done automatically." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37063 +#: guix-git/doc/guix.texi:37553 #, no-wrap msgid "home services" msgstr "홈 서비스" #. type: Plain text -#: guix-git/doc/guix.texi:37072 +#: guix-git/doc/guix.texi:37562 msgid "A @dfn{home service} is not necessarily something that has a daemon and is managed by Shepherd (@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}), in most cases it doesn't. It's a simple building block of the home environment, often declaring a set of packages to be installed in the home environment profile, a set of config files to be symlinked into @env{XDG_CONFIG_HOME} (@file{~/.config} by default), and environment variables to be set by a login shell." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37080 +#: guix-git/doc/guix.texi:37570 msgid "There is a service extension mechanism (@pxref{Service Composition}) which allows home services to extend other home services and utilize capabilities they provide; for example: declare mcron jobs (@pxref{Top,,, mcron, GNU@tie{}Mcron}) by extending @ref{Mcron Home Service}; declare daemons by extending @ref{Shepherd Home Service}; add commands, which will be invoked on by the Bash by extending @ref{Shells Home Services, @code{home-bash-service-type}}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37091 -msgid "A good way to discover avaliable home services is using the @command{guix home search} command (@pxref{Invoking guix home}). After the required home services are found, include its module with the @code{use-modules} form (@pxref{use-modules,, Using Guile Modules, guile, The GNU Guile Reference Manual}), or the @code{#:use-modules} directive (@pxref{define-module,, Creating Guile Modules, guile, The GNU Guile Reference Manual}) and declare a home service using the @code{service} function, or extend a service type by declaring a new service with the @code{simple-service} procedure from @code{(gnu services)}." +#: guix-git/doc/guix.texi:37581 +msgid "A good way to discover available home services is using the @command{guix home search} command (@pxref{Invoking guix home}). After the required home services are found, include its module with the @code{use-modules} form (@pxref{use-modules,, Using Guile Modules, guile, The GNU Guile Reference Manual}), or the @code{#:use-modules} directive (@pxref{define-module,, Creating Guile Modules, guile, The GNU Guile Reference Manual}) and declare a home service using the @code{service} function, or extend a service type by declaring a new service with the @code{simple-service} procedure from @code{(gnu services)}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:37097 guix-git/doc/guix.texi:37100 -#: guix-git/doc/guix.texi:37101 +#: guix-git/doc/guix.texi:37587 guix-git/doc/guix.texi:37590 +#: guix-git/doc/guix.texi:37591 #, fuzzy, no-wrap #| msgid "Cgit Service" msgid "Essential Home Services" msgstr "Cgit 서비스" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Environment variables, packages, on-* scripts." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 #, fuzzy #| msgid "System Services" msgid "Shells: Shells Home Services" msgstr "시스템 서비스" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "POSIX shells, Bash, Zsh." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Mcron: Mcron Home Service" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Scheduled User's Job Execution." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Shepherd: Shepherd Home Service" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Managing User's Daemons." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37106 +#: guix-git/doc/guix.texi:37596 msgid "There are a few essential home services defined in @code{(gnu services)}, they are mostly for internal use and are required to build a home environment, but some of them will be useful for the end user." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37107 +#: guix-git/doc/guix.texi:37597 #, no-wrap msgid "environment variables" msgstr "환경 변수" #. type: defvr -#: guix-git/doc/guix.texi:37109 +#: guix-git/doc/guix.texi:37599 #, no-wrap msgid "{Scheme Variable} home-environment-variables-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37114 +#: guix-git/doc/guix.texi:37604 msgid "The service of this type will be instantiated by every home environment automatically by default, there is no need to define it, but someone may want to extend it with a list of pairs to set some environment variables." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37118 +#: guix-git/doc/guix.texi:37608 #, no-wrap msgid "" "(list (\"ENV_VAR1\" . \"value1\")\n" @@ -65647,12 +66533,12 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37123 +#: guix-git/doc/guix.texi:37613 msgid "The easiest way to extend a service type, without defining new service type is to use the @code{simple-service} helper from @code{(gnu services)}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37131 +#: guix-git/doc/guix.texi:37621 #, no-wrap msgid "" "(simple-service 'some-useful-env-vars-service\n" @@ -65664,12 +66550,12 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37136 +#: guix-git/doc/guix.texi:37626 msgid "If you include such a service in you home environment definition, it will add the following content to the @file{setup-environment} script (which is expected to be sourced by the login shell):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37141 +#: guix-git/doc/guix.texi:37631 #, no-wrap msgid "" "export LESSHISTFILE=$XDG_CACHE_HOME/.lesshst\n" @@ -65678,609 +66564,592 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37148 +#: guix-git/doc/guix.texi:37638 msgid "Make sure that module @code{(gnu packages shells)} is imported with @code{use-modules} or any other way, this namespace contains the definition of the @code{zsh} packages, which is used in the example above." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37161 +#: guix-git/doc/guix.texi:37651 msgid "The association list (@pxref{Association Lists, alists, Association Lists, guile, The GNU Guile Reference manual}) is a data structure containing key-value pairs, for @code{home-environment-variables-service-type} the key is always a string, the value can be a string, string-valued gexp (@pxref{G-Expressions}), file-like object (@pxref{G-Expressions, file-like object}) or boolean. For gexps, the variable will be set to the value of the gexp; for file-like objects, it will be set to the path of the file in the store (@pxref{The Store}); for @code{#t}, it will export the variable without any value; and for @code{#f}, it will omit variable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37164 +#: guix-git/doc/guix.texi:37654 #, no-wrap msgid "{Scheme Variable} home-profile-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37170 -msgid "The service of this type will be instantiated by every home environment automatically, there is no need to define it, but you may want to extend it with a list of packages if you want to install additional packages into your profile. Other services, which need to make some programs avaliable to the user will also extend this service type." +#: guix-git/doc/guix.texi:37660 +msgid "The service of this type will be instantiated by every home environment automatically, there is no need to define it, but you may want to extend it with a list of packages if you want to install additional packages into your profile. Other services, which need to make some programs available to the user will also extend this service type." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37172 +#: guix-git/doc/guix.texi:37662 msgid "The extension value is just a list of packages:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37175 +#: guix-git/doc/guix.texi:37665 #, no-wrap msgid "(list htop vim emacs)\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37185 +#: guix-git/doc/guix.texi:37675 msgid "The same approach as @code{simple-service} (@pxref{Service Reference, simple-service}) for @code{home-environment-variables-service-type} can be used here, too. Make sure that modules containing the specified packages are imported with @code{use-modules}. To find a package or information about its module use @command{guix search} (@pxref{Invoking guix package}). Alternatively, @code{specification->package} can be used to get the package record from string without importing related module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37189 +#: guix-git/doc/guix.texi:37679 msgid "There are few more essential services, but users are not expected to extend them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37190 +#: guix-git/doc/guix.texi:37680 #, no-wrap msgid "{Scheme Variable} home-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37195 +#: guix-git/doc/guix.texi:37685 msgid "The root of home services DAG, it generates a folder, which later will be symlinked to @file{~/.guix-home}, it contains configurations, profile with binaries and libraries, and some necessary scripts to glue things together." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37197 +#: guix-git/doc/guix.texi:37687 #, no-wrap msgid "{Scheme Variable} home-run-on-first-login-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37202 +#: guix-git/doc/guix.texi:37692 msgid "The service of this type generates a Guile script, which is expected to be executed by the login shell. It is only executed if the special flag file inside @env{XDG_RUNTIME_DIR} hasn't been created, this prevents redundant executions of the script if multiple login shells are spawned." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37208 +#: guix-git/doc/guix.texi:37698 msgid "It can be extended with a gexp. However, to autostart an application, users @emph{should not} use this service, in most cases it's better to extend @code{home-shepherd-service-type} with a Shepherd service (@pxref{Shepherd Services}), or extend the shell's startup file with the required command using the appropriate service type." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37210 +#: guix-git/doc/guix.texi:37700 #, no-wrap msgid "{Scheme Variable} home-activation-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37214 +#: guix-git/doc/guix.texi:37704 msgid "The service of this type generates a guile script, which runs on every @command{guix home reconfigure} invocation or any other action, which leads to the activation of the home environment." msgstr "" #. type: node -#: guix-git/doc/guix.texi:37216 +#: guix-git/doc/guix.texi:37706 #, fuzzy, no-wrap #| msgid "System Services" msgid "Shells Home Services" msgstr "시스템 서비스" #. type: subsection -#: guix-git/doc/guix.texi:37217 +#: guix-git/doc/guix.texi:37707 #, no-wrap msgid "Shells" msgstr "쉘" #. type: cindex -#: guix-git/doc/guix.texi:37219 guix-git/doc/guix.texi:37500 +#: guix-git/doc/guix.texi:37709 guix-git/doc/guix.texi:37996 #, no-wrap msgid "shell" msgstr "쉘" #. type: cindex -#: guix-git/doc/guix.texi:37220 +#: guix-git/doc/guix.texi:37710 #, no-wrap msgid "login shell" msgstr "로그인 쉘" #. type: cindex -#: guix-git/doc/guix.texi:37221 +#: guix-git/doc/guix.texi:37711 #, fuzzy, no-wrap #| msgid "interface" msgid "interactive shell" msgstr "연결장치" #. type: cindex -#: guix-git/doc/guix.texi:37222 guix-git/doc/guix.texi:37502 +#: guix-git/doc/guix.texi:37712 guix-git/doc/guix.texi:37998 #, no-wrap msgid "bash" msgstr "bash" #. type: cindex -#: guix-git/doc/guix.texi:37223 guix-git/doc/guix.texi:37503 +#: guix-git/doc/guix.texi:37713 guix-git/doc/guix.texi:37999 #, fuzzy, no-wrap #| msgid "ssh" msgid "zsh" msgstr "ssh" #. type: Plain text -#: guix-git/doc/guix.texi:37229 +#: guix-git/doc/guix.texi:37719 msgid "Shells play a quite important role in the environment initialization process, you can configure them manually as described in section @ref{Configuring the Shell}, but the recommended way is to use home services listed below. It's both easier and more reliable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37239 +#: guix-git/doc/guix.texi:37729 msgid "Each home environment instantiates @code{home-shell-profile-service-type}, which creates a @file{~/.profile} startup file for all POSIX-compatible shells. This file contains all the necessary steps to properly initialize the environment, but many modern shells like Bash or Zsh prefer their own startup files, that's why the respective home services (@code{home-bash-service-type} and @code{home-zsh-service-type}) ensure that @file{~/.profile} is sourced by @file{~/.bash_profile} and @file{~/.zprofile}, respectively." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:37240 +#: guix-git/doc/guix.texi:37730 #, fuzzy, no-wrap #| msgid "Cgit Service" msgid "Shell Profile Service" msgstr "Cgit 서비스" #. type: deftp -#: guix-git/doc/guix.texi:37242 +#: guix-git/doc/guix.texi:37732 #, fuzzy, no-wrap msgid "{Data Type} home-shell-profile-configuration" msgstr "설정" #. type: deftp -#: guix-git/doc/guix.texi:37244 +#: guix-git/doc/guix.texi:37734 msgid "Available @code{home-shell-profile-configuration} fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37246 +#: guix-git/doc/guix.texi:37736 #, no-wrap msgid "@code{profile} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37256 -msgid "@code{home-shell-profile} is instantiated automatically by @code{home-environment}, DO NOT create this service manually, it can only be extended. @code{profile} is a list of file-like objects, which will go to @file{~/.profile}. By default @file{~/.profile} contains the initialization code, which have to be evaluated by login shell to make home-environment's profile avaliable to the user, but other commands can be added to the file if it is really necessary. In most cases shell's configuration files are preferred places for user's customizations. Extend home-shell-profile service only if you really know what you do." +#: guix-git/doc/guix.texi:37746 +msgid "@code{home-shell-profile} is instantiated automatically by @code{home-environment}, DO NOT create this service manually, it can only be extended. @code{profile} is a list of file-like objects, which will go to @file{~/.profile}. By default @file{~/.profile} contains the initialization code which must be evaluated by the login shell to make home-environment's profile available to the user, but other commands can be added to the file if it is really necessary. In most cases shell's configuration files are preferred places for user's customizations. Extend home-shell-profile service only if you really know what you do." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:37261 +#: guix-git/doc/guix.texi:37751 #, fuzzy, no-wrap #| msgid "System Services" msgid "Bash Home Service" msgstr "시스템 서비스" #. type: anchor{#1} -#: guix-git/doc/guix.texi:37264 +#: guix-git/doc/guix.texi:37754 #, fuzzy #| msgid "home configuration" msgid "home-bash-configuration" msgstr "홈 구성" #. type: deftp -#: guix-git/doc/guix.texi:37264 +#: guix-git/doc/guix.texi:37754 #, fuzzy, no-wrap msgid "{Data Type} home-bash-configuration" msgstr "설정" #. type: deftp -#: guix-git/doc/guix.texi:37266 +#: guix-git/doc/guix.texi:37756 msgid "Available @code{home-bash-configuration} fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37268 +#: guix-git/doc/guix.texi:37758 #, no-wrap msgid "@code{package} (default: @code{bash}) (type: package)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37270 +#: guix-git/doc/guix.texi:37760 #, fuzzy msgid "The Bash package to use." msgstr "꾸러미와 도구." #. type: item -#: guix-git/doc/guix.texi:37271 +#: guix-git/doc/guix.texi:37761 #, no-wrap msgid "@code{guix-defaults?} (default: @code{#t}) (type: boolean)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37274 +#: guix-git/doc/guix.texi:37764 msgid "Add sane defaults like reading @file{/etc/bashrc} and coloring the output of @command{ls} to the end of the @file{.bashrc} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37275 guix-git/doc/guix.texi:37329 -#: guix-git/doc/guix.texi:37368 +#: guix-git/doc/guix.texi:37765 guix-git/doc/guix.texi:37819 +#: guix-git/doc/guix.texi:37858 #, no-wrap msgid "@code{environment-variables} (default: @code{()}) (type: alist)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37280 +#: guix-git/doc/guix.texi:37770 msgid "Association list of environment variables to set for the Bash session. The rules for the @code{home-environment-variables-service-type} apply here (@pxref{Essential Home Services}). The contents of this field will be added after the contents of the @code{bash-profile} field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37281 guix-git/doc/guix.texi:37334 +#: guix-git/doc/guix.texi:37771 guix-git/doc/guix.texi:37824 #, no-wrap msgid "@code{aliases} (default: @code{()}) (type: alist)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37286 +#: guix-git/doc/guix.texi:37776 msgid "Association list of aliases to set for the Bash session. The aliases will be defined after the contents of the @code{bashrc} field has been put in the @file{.bashrc} file. The alias will automatically be quoted, so something line this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37289 +#: guix-git/doc/guix.texi:37779 #, no-wrap msgid "'((\\\"ls\\\" . \\\"ls -alF\\\"))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37292 +#: guix-git/doc/guix.texi:37782 msgid "turns into" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37295 +#: guix-git/doc/guix.texi:37785 #, no-wrap msgid "alias ls=\\\"ls -alF\\\"\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37297 guix-git/doc/guix.texi:37338 +#: guix-git/doc/guix.texi:37787 guix-git/doc/guix.texi:37828 #, no-wrap msgid "@code{bash-profile} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37302 +#: guix-git/doc/guix.texi:37792 msgid "List of file-like objects, which will be added to @file{.bash_profile}. Used for executing user's commands at start of login shell (In most cases the shell started on tty just after login). @file{.bash_login} won't be ever read, because @file{.bash_profile} always present." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37303 guix-git/doc/guix.texi:37342 +#: guix-git/doc/guix.texi:37793 guix-git/doc/guix.texi:37832 #, no-wrap msgid "@code{bashrc} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37308 +#: guix-git/doc/guix.texi:37798 msgid "List of file-like objects, which will be added to @file{.bashrc}. Used for executing user's commands at start of interactive shell (The shell for interactive usage started by typing @code{bash} or by terminal app or any other program)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37309 guix-git/doc/guix.texi:37346 +#: guix-git/doc/guix.texi:37799 guix-git/doc/guix.texi:37836 #, no-wrap msgid "@code{bash-logout} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37314 +#: guix-git/doc/guix.texi:37804 msgid "List of file-like objects, which will be added to @file{.bash_logout}. Used for executing user's commands at the exit of login shell. It won't be read in some cases (if the shell terminates by exec'ing another process for example)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37324 +#: guix-git/doc/guix.texi:37814 msgid "You can extend the Bash service by using the @code{home-bash-extension} configuration record, whose fields most mirror that of @code{home-bash-configuration} (@pxref{home-bash-configuration}). The contents of the extensions will be added to the end of the corresponding Bash configuration files (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37325 +#: guix-git/doc/guix.texi:37815 #, fuzzy, no-wrap msgid "{Data Type} home-bash-extension" msgstr "설정" #. type: deftp -#: guix-git/doc/guix.texi:37327 +#: guix-git/doc/guix.texi:37817 msgid "Available @code{home-bash-extension} fields are:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37333 +#: guix-git/doc/guix.texi:37823 msgid "Additional environment variables to set. These will be combined with the environment variables from other extensions and the base service to form one coherent block of environment variables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37337 +#: guix-git/doc/guix.texi:37827 msgid "Additional aliases to set. These will be combined with the aliases from other extensions and the base service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37341 +#: guix-git/doc/guix.texi:37831 msgid "Additional text blocks to add to @file{.bash_profile}, which will be combined with text blocks from other extensions and the base service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37345 +#: guix-git/doc/guix.texi:37835 msgid "Additional text blocks to add to @file{.bashrc}, which will be combined with text blocks from other extensions and the base service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37349 +#: guix-git/doc/guix.texi:37839 msgid "Additional text blocks to add to @file{.bash_logout}, which will be combined with text blocks from other extensions and the base service." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:37353 +#: guix-git/doc/guix.texi:37843 #, fuzzy, no-wrap #| msgid "System Services" msgid "Zsh Home Service" msgstr "시스템 서비스" #. type: deftp -#: guix-git/doc/guix.texi:37355 +#: guix-git/doc/guix.texi:37845 #, fuzzy, no-wrap msgid "{Data Type} home-zsh-configuration" msgstr "설정" #. type: deftp -#: guix-git/doc/guix.texi:37357 +#: guix-git/doc/guix.texi:37847 msgid "Available @code{home-zsh-configuration} fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37359 +#: guix-git/doc/guix.texi:37849 #, no-wrap msgid "@code{package} (default: @code{zsh}) (type: package)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37361 +#: guix-git/doc/guix.texi:37851 #, fuzzy msgid "The Zsh package to use." msgstr "꾸러미와 도구." #. type: item -#: guix-git/doc/guix.texi:37362 +#: guix-git/doc/guix.texi:37852 #, no-wrap msgid "@code{xdg-flavor?} (default: @code{#t}) (type: boolean)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37367 +#: guix-git/doc/guix.texi:37857 msgid "Place all the configs to @file{$XDG_CONFIG_HOME/zsh}. Makes @file{~/.zshenv} to set @env{ZDOTDIR} to @file{$XDG_CONFIG_HOME/zsh}. Shell startup process will continue with @file{$XDG_CONFIG_HOME/zsh/.zshenv}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37370 +#: guix-git/doc/guix.texi:37860 msgid "Association list of environment variables to set for the Zsh session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37371 +#: guix-git/doc/guix.texi:37861 #, no-wrap msgid "@code{zshenv} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37376 +#: guix-git/doc/guix.texi:37866 msgid "List of file-like objects, which will be added to @file{.zshenv}. Used for setting user's shell environment variables. Must not contain commands assuming the presence of tty or producing output. Will be read always. Will be read before any other file in @env{ZDOTDIR}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37377 +#: guix-git/doc/guix.texi:37867 #, no-wrap msgid "@code{zprofile} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37382 +#: guix-git/doc/guix.texi:37872 msgid "List of file-like objects, which will be added to @file{.zprofile}. Used for executing user's commands at start of login shell (In most cases the shell started on tty just after login). Will be read before @file{.zlogin}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37383 +#: guix-git/doc/guix.texi:37873 #, no-wrap msgid "@code{zshrc} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37388 +#: guix-git/doc/guix.texi:37878 msgid "List of file-like objects, which will be added to @file{.zshrc}. Used for executing user's commands at start of interactive shell (The shell for interactive usage started by typing @code{zsh} or by terminal app or any other program)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37389 +#: guix-git/doc/guix.texi:37879 #, no-wrap msgid "@code{zlogin} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37393 +#: guix-git/doc/guix.texi:37883 msgid "List of file-like objects, which will be added to @file{.zlogin}. Used for executing user's commands at the end of starting process of login shell." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37394 +#: guix-git/doc/guix.texi:37884 #, no-wrap msgid "@code{zlogout} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37399 +#: guix-git/doc/guix.texi:37889 msgid "List of file-like objects, which will be added to @file{.zlogout}. Used for executing user's commands at the exit of login shell. It won't be read in some cases (if the shell terminates by exec'ing another process for example)." msgstr "" #. type: node -#: guix-git/doc/guix.texi:37404 +#: guix-git/doc/guix.texi:37894 #, fuzzy, no-wrap #| msgid "Exim Service" msgid "Mcron Home Service" msgstr "수출입 서비스" #. type: subsection -#: guix-git/doc/guix.texi:37405 +#: guix-git/doc/guix.texi:37895 #, no-wrap msgid "Scheduled User's Job Execution" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37418 +#: guix-git/doc/guix.texi:37908 msgid "The @code{(gnu home services mcron)} module provides an interface to GNU@tie{}mcron, a daemon to run jobs at scheduled times (@pxref{Top,,, mcron, GNU@tie{}mcron}). The information about system's mcron is applicable here (@pxref{Scheduled Job Execution}), the only difference for home services is that they have to be declared in a @code{home-envirnoment} record instead of an @code{operating-system} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37419 +#: guix-git/doc/guix.texi:37909 #, no-wrap msgid "{Scheme Variable} home-mcron-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37423 +#: guix-git/doc/guix.texi:37913 msgid "This is the type of the @code{mcron} home service, whose value is an @code{home-mcron-configuration} object. It allows to manage scheduled tasks." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37430 +#: guix-git/doc/guix.texi:37920 #, fuzzy, no-wrap msgid "{Data Type} home-mcron-configuration" msgstr "설정" #. type: node -#: guix-git/doc/guix.texi:37444 +#: guix-git/doc/guix.texi:37934 #, fuzzy, no-wrap #| msgid "Telephony Services" msgid "Shepherd Home Service" msgstr "전화(전화또는 voip와 같은), 서비스" #. type: subsection -#: guix-git/doc/guix.texi:37445 +#: guix-git/doc/guix.texi:37935 +#, fuzzy, no-wrap +#| msgid "Setting Up the Daemon" +msgid "Managing User Daemons" +msgstr "데몬 구성하기" + +#. type: cindex +#: guix-git/doc/guix.texi:37937 #, no-wrap -msgid "Managing User's Daemons" +msgid "shepherd services, for users" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:37944 +msgid "The @code{(gnu home services shepherd)} module supports the definitions of per-user Shepherd services (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}). You extend @code{home-shepherd-service-type} with new services; Guix Home then takes care of starting the @code{shepherd} daemon for you when you log in, which in turns starts the services you asked for." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37449 +#: guix-git/doc/guix.texi:37945 #, no-wrap msgid "{Scheme Variable} home-shepherd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37454 +#: guix-git/doc/guix.texi:37950 msgid "The service type for the userland Shepherd, which allows one to manage long-running processes or one-shot tasks. User's Shepherd is not an init process (PID 1), but almost all other information described in (@pxref{Shepherd Services}) is applicable here too." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37459 +#: guix-git/doc/guix.texi:37955 msgid "This is the service type that extensions target when they want to create shepherd services (@pxref{Service Types and Services}, for an example). Each extension must pass a list of @code{}. Its value must be a @code{home-shepherd-configuration}, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37461 +#: guix-git/doc/guix.texi:37957 #, fuzzy, no-wrap msgid "{Data Type} home-shepherd-configuration" msgstr "설정" #. type: item -#: guix-git/doc/guix.texi:37468 +#: guix-git/doc/guix.texi:37964 #, no-wrap msgid "auto-start? (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37470 +#: guix-git/doc/guix.texi:37966 msgid "Whether or not to start Shepherd on first login." msgstr "" #. type: section -#: guix-git/doc/guix.texi:37479 +#: guix-git/doc/guix.texi:37975 #, fuzzy, no-wrap #| msgid "Invoking guix-daemon" msgid "Invoking @code{guix home}" msgstr "guix-데몬 호출하기" #. type: Plain text -#: guix-git/doc/guix.texi:37484 +#: guix-git/doc/guix.texi:37980 msgid "Once you have written a home environment declaration (@pxref{Declaring the Home Environment,,,,}, it can be @dfn{instantiated} using the @command{guix home} command. The synopsis is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37487 +#: guix-git/doc/guix.texi:37983 #, no-wrap msgid "guix home @var{options}@dots{} @var{action} @var{file}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37494 +#: guix-git/doc/guix.texi:37990 msgid "@var{file} must be the name of a file containing a @code{home-environment} declaration. @var{action} specifies how the home environment is instantiated, but there are few auxiliary actions which don't instantiate it. Currently the following values are supported:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37499 +#: guix-git/doc/guix.texi:37995 msgid "Display available home service type definitions that match the given regular expressions, sorted by relevance:" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37501 +#: guix-git/doc/guix.texi:37997 #, fuzzy, no-wrap #| msgid "profile" msgid "shell-profile" msgstr "프로파일" #. type: example -#: guix-git/doc/guix.texi:37513 +#: guix-git/doc/guix.texi:38008 #, no-wrap msgid "" "$ guix home search shell\n" "name: home-shell-profile\n" -"location: gnu/home/services/shells.scm:73:2\n" +"location: gnu/home/services/shells.scm:100:2\n" "extends: home-files\n" -"description: Create `~/.profile', which is used for environment initialization\n" -"+ of POSIX compatible login shells. Can be extended with a list of strings or\n" -"+ gexps.\n" +"description: Create `~/.profile', which is used for environment initialization of POSIX compliant login shells.\n" +"+ This service type can be extended with a list of file-like objects.\n" "relevance: 6\n" "\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37519 -#, no-wrap -msgid "" -"name: home-zsh-plugin-manager\n" -"location: gnu/home/services/shellutils.scm:28:2\n" -"extends: home-zsh home-profile\n" -"description: Install plugins in profile and configure Zsh to load them.\n" -"relevance: 1\n" -"\n" -msgstr "" - -#. type: example -#: guix-git/doc/guix.texi:37526 -#, no-wrap -msgid "" -"name: home-zsh-direnv\n" -"location: gnu/home/services/shellutils.scm:69:2\n" -"extends: home-profile home-zsh\n" -"description: Enables `direnv' for `zsh'. Adds hook to `.zshrc' and installs a\n" -"+ package in the profile.\n" -"relevance: 1\n" -"\n" -msgstr "" - -#. type: example -#: guix-git/doc/guix.texi:37535 +#: guix-git/doc/guix.texi:38014 #, no-wrap msgid "" -"name: home-zsh-autosuggestions\n" -"location: gnu/home/services/shellutils.scm:43:2\n" -"extends: home-zsh-plugin-manager home-zsh\n" -"description: Enables Fish-like fast/unobtrusive autosuggestions for `zsh' and\n" -"+ sets reasonable default values for some plugin's variables to improve perfomance\n" -"+ and adjust behavior: `(history completion)' is set for strategy, manual rebind\n" -"+ and async are enabled.\n" -"relevance: 1\n" +"name: home-fish\n" +"location: gnu/home/services/shells.scm:640:2\n" +"extends: home-files home-profile\n" +"description: Install and configure Fish, the friendly interactive shell.\n" +"relevance: 3\n" "\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37541 +#: guix-git/doc/guix.texi:38020 #, no-wrap msgid "" "name: home-zsh\n" -"location: gnu/home/services/shells.scm:236:2\n" +"location: gnu/home/services/shells.scm:290:2\n" "extends: home-files home-profile\n" "description: Install and configure Zsh.\n" "relevance: 1\n" @@ -66288,61 +67157,66 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37547 +#: guix-git/doc/guix.texi:38026 #, no-wrap msgid "" "name: home-bash\n" -"location: gnu/home/services/shells.scm:388:2\n" +"location: gnu/home/services/shells.scm:508:2\n" "extends: home-files home-profile\n" -"description: Install and configure Bash.\n" +"description: Install and configure GNU Bash.\n" "relevance: 1\n" "\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37563 -msgid "Build the home environment described in @var{file}, and switch to it. Switching means that the activation script will be evaluated and (in basic scenario) symlinks to configuration files generated from @code{home-environment} declaration will be created in @file{~}. If the file with the same path already exists in home folder it will be moved to @file{~/TIMESTAMP-guix-home-legacy-configs-backup}, where TIMESTAMP is a current UNIX epoch time." +#: guix-git/doc/guix.texi:38033 +msgid "As for @command{guix search}, the result is written in @code{recutils} format, which makes it easy to filter the output (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:38042 +msgid "Build the home environment described in @var{file}, and switch to it. Switching means that the activation script will be evaluated and (in basic scenario) symlinks to configuration files generated from @code{home-environment} declaration will be created in @file{~}. If the file with the same path already exists in home folder it will be moved to @file{~/@var{timestamp}-guix-home-legacy-configs-backup}, where @var{timestamp} is a current UNIX epoch time." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37568 +#: guix-git/doc/guix.texi:38047 msgid "It is highly recommended to run @command{guix pull} once before you run @command{guix home reconfigure} for the first time (@pxref{Invoking guix pull})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37575 -msgid "This effects all the configuration specified in @var{file}. The command starts Shepherd services specified in @var{file} that are not currently running; if a service is currently running, this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop X} or @code{herd restart X})." +#: guix-git/doc/guix.texi:38054 +msgid "This effects all the configuration specified in @var{file}. The command starts Shepherd services specified in @var{file} that are not currently running; if a service is currently running, this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop @var{service}} or @code{herd restart @var{service}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37581 +#: guix-git/doc/guix.texi:38060 msgid "This command creates a new generation whose number is one greater than the current generation (as reported by @command{guix home list-generations}). If that generation already exists, it will be overwritten. This behavior mirrors that of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37582 +#: guix-git/doc/guix.texi:38061 #, no-wrap msgid "provenance tracking, of the home environment" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37587 +#: guix-git/doc/guix.texi:38066 msgid "Upon completion, the new home is deployed under @file{~/.guix-home}. This directory contains @dfn{provenance meta-data}: the list of channels in use (@pxref{Channels}) and @var{file} itself, when available. You can view the provenance information by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37590 +#: guix-git/doc/guix.texi:38069 #, no-wrap msgid "guix home describe\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37596 +#: guix-git/doc/guix.texi:38075 msgid "This information is useful should you later want to inspect how this particular generation was built. In fact, assuming @var{file} is self-contained, you can later rebuild generation @var{n} of your home environment with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37602 +#: guix-git/doc/guix.texi:38081 #, no-wrap msgid "" "guix time-machine \\\n" @@ -66353,111 +67227,111 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37609 +#: guix-git/doc/guix.texi:38088 msgid "You can think of it as some sort of built-in version control! Your home is not just a binary artifact: @emph{it carries its own source}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37615 +#: guix-git/doc/guix.texi:38094 #, fuzzy, no-wrap #| msgid "Documentation" msgid "home generations" msgstr "문서" #. type: table -#: guix-git/doc/guix.texi:37618 +#: guix-git/doc/guix.texi:38097 msgid "Switch to an existing home generation. This action atomically switches the home profile to the specified home generation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37622 +#: guix-git/doc/guix.texi:38101 msgid "The target generation can be specified explicitly by its generation number. For example, the following invocation would switch to home generation 7:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37625 +#: guix-git/doc/guix.texi:38104 #, no-wrap msgid "guix home switch-generation 7\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37636 +#: guix-git/doc/guix.texi:38115 #, no-wrap msgid "guix home switch-generation -- -1\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37645 +#: guix-git/doc/guix.texi:38124 msgid "Switch to the preceding home generation. This is the inverse of @command{reconfigure}, and it is exactly the same as invoking @command{switch-generation} with an argument of @code{-1}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37647 +#: guix-git/doc/guix.texi:38126 #, no-wrap msgid "deleting home generations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37652 +#: guix-git/doc/guix.texi:38131 msgid "Delete home generations, making them candidates for garbage collection (@pxref{Invoking guix gc}, for information on how to run the ``garbage collector'')." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37656 +#: guix-git/doc/guix.texi:38135 msgid "This works in the same way as @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). With no arguments, all home generations but the current one are deleted:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37659 +#: guix-git/doc/guix.texi:38138 #, no-wrap msgid "guix home delete-generations\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37663 +#: guix-git/doc/guix.texi:38142 msgid "You can also select the generations you want to delete. The example below deletes all the home generations that are more than two months old:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37666 +#: guix-git/doc/guix.texi:38145 #, no-wrap msgid "guix home delete-generations 2m\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37672 +#: guix-git/doc/guix.texi:38151 msgid "Build the derivation of the home environment, which includes all the configuration files and programs needed. This action does not actually install anything." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37676 +#: guix-git/doc/guix.texi:38155 msgid "Describe the current home generation: its file name, as well as provenance information when available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37682 +#: guix-git/doc/guix.texi:38161 msgid "List a summary of each generation of the home environment available on disk, in a human-readable way. This is similar to the @option{--list-generations} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:37690 +#: guix-git/doc/guix.texi:38169 #, no-wrap msgid "$ guix home list-generations 10d\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37692 +#: guix-git/doc/guix.texi:38171 #, no-wrap msgid "import" msgstr "import" #. type: table -#: guix-git/doc/guix.texi:37699 +#: guix-git/doc/guix.texi:38178 msgid "Generate a @dfn{home environment} from the packages in the default profile and configuration files found in the user's home directory. The configuration files will be copied to the specified directory, and a @file{home-configuration.scm} will be populated with the home environment. Note that not every home service that exists is supported (@pxref{Home Services})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:37703 +#: guix-git/doc/guix.texi:38182 #, no-wrap msgid "" "$ guix home import ~/guix-config\n" @@ -66465,52 +67339,62 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37718 +#: guix-git/doc/guix.texi:38197 msgid "Consider the home-environment @var{expr} evaluates to. This is an alternative to specifying a file which evaluates to a home environment." msgstr "" +#. type: table +#: guix-git/doc/guix.texi:38200 +msgid "Instruct @command{guix home reconfigure} to allow system downgrades." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:38207 +msgid "Just like @command{guix system}, @command{guix home reconfigure}, by default, prevents you from downgrading your home to older or unrelated revisions compared to the channel revisions that were used to deploy it---those shown by @command{guix home describe}. Using @option{--allow-downgrades} allows you to bypass that check, at the risk of downgrading your home---be careful!" +msgstr "" + #. type: cindex -#: guix-git/doc/guix.texi:37724 +#: guix-git/doc/guix.texi:38213 #, no-wrap msgid "documentation, searching for" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37725 +#: guix-git/doc/guix.texi:38214 #, no-wrap msgid "searching for documentation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37726 +#: guix-git/doc/guix.texi:38215 #, no-wrap msgid "Info, documentation format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37727 +#: guix-git/doc/guix.texi:38216 #, no-wrap msgid "man pages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37728 +#: guix-git/doc/guix.texi:38217 #, no-wrap msgid "manual pages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37735 +#: guix-git/doc/guix.texi:38224 msgid "In most cases packages installed with Guix come with documentation. There are two main documentation formats: ``Info'', a browsable hypertext format used for GNU software, and ``manual pages'' (or ``man pages''), the linear documentation format traditionally found on Unix. Info manuals are accessed with the @command{info} command or with Emacs, and man pages are accessed using @command{man}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37739 +#: guix-git/doc/guix.texi:38228 msgid "You can look for documentation of software installed on your system by keyword. For example, the following command searches for information about ``TLS'' in Info manuals:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37747 +#: guix-git/doc/guix.texi:38236 #, no-wrap msgid "" "$ info -k TLS\n" @@ -66522,12 +67406,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37753 +#: guix-git/doc/guix.texi:38242 msgid "The command below searches for the same keyword in man pages@footnote{The database searched by @command{man -k} is only created in profiles that contain the @code{man-db} package.}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37759 +#: guix-git/doc/guix.texi:38248 #, no-wrap msgid "" "$ man -k TLS\n" @@ -66537,97 +67421,97 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37765 +#: guix-git/doc/guix.texi:38254 msgid "These searches are purely local to your computer so you have the guarantee that documentation you find corresponds to what you have actually installed, you can access it off-line, and your privacy is respected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37768 +#: guix-git/doc/guix.texi:38257 msgid "Once you have these results, you can view the relevant documentation by running, say:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37771 +#: guix-git/doc/guix.texi:38260 #, no-wrap msgid "$ info \"(gnutls)Core TLS API\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37775 +#: guix-git/doc/guix.texi:38264 msgid "or:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37778 +#: guix-git/doc/guix.texi:38267 #, no-wrap msgid "$ man certtool\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37786 +#: guix-git/doc/guix.texi:38275 msgid "Info manuals contain sections and indices as well as hyperlinks like those found in Web pages. The @command{info} reader (@pxref{Top, Info reader,, info-stnd, Stand-alone GNU Info}) and its Emacs counterpart (@pxref{Misc Help,,, emacs, The GNU Emacs Manual}) provide intuitive key bindings to navigate manuals. @xref{Getting Started,,, info, Info: An Introduction}, for an introduction to Info navigation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37790 +#: guix-git/doc/guix.texi:38279 #, no-wrap msgid "debugging files" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37796 +#: guix-git/doc/guix.texi:38285 msgid "Program binaries, as produced by the GCC compilers for instance, are typically written in the ELF format, with a section containing @dfn{debugging information}. Debugging information is what allows the debugger, GDB, to map binary code to source code; it is required to debug a compiled program in good conditions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37800 +#: guix-git/doc/guix.texi:38289 msgid "This chapter explains how to use separate debug info when packages provide it, and how to rebuild packages with debug info when it's missing." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37816 +#: guix-git/doc/guix.texi:38305 msgid "The problem with debugging information is that is takes up a fair amount of disk space. For example, debugging information for the GNU C Library weighs in at more than 60 MiB@. Thus, as a user, keeping all the debugging info of all the installed programs is usually not an option. Yet, space savings should not come at the cost of an impediment to debugging---especially in the GNU system, which should make it easier for users to exert their computing freedom (@pxref{GNU Distribution})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37823 +#: guix-git/doc/guix.texi:38312 msgid "Thankfully, the GNU Binary Utilities (Binutils) and GDB provide a mechanism that allows users to get the best of both worlds: debugging information can be stripped from the binaries and stored in separate files. GDB is then able to load debugging information from those files, when they are available (@pxref{Separate Debug Files,,, gdb, Debugging with GDB})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37831 +#: guix-git/doc/guix.texi:38320 msgid "The GNU distribution takes advantage of this by storing debugging information in the @code{lib/debug} sub-directory of a separate package output unimaginatively called @code{debug} (@pxref{Packages with Multiple Outputs}). Users can choose to install the @code{debug} output of a package when they need it. For instance, the following command installs the debugging information for the GNU C Library and for GNU Guile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37834 +#: guix-git/doc/guix.texi:38323 #, no-wrap msgid "guix install glibc:debug guile:debug\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37840 +#: guix-git/doc/guix.texi:38329 msgid "GDB must then be told to look for debug files in the user's profile, by setting the @code{debug-file-directory} variable (consider setting it from the @file{~/.gdbinit} file, @pxref{Startup,,, gdb, Debugging with GDB}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37843 +#: guix-git/doc/guix.texi:38332 #, no-wrap msgid "(gdb) set debug-file-directory ~/.guix-profile/lib/debug\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37847 +#: guix-git/doc/guix.texi:38336 msgid "From there on, GDB will pick up debugging information from the @file{.debug} files under @file{~/.guix-profile/lib/debug}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37852 +#: guix-git/doc/guix.texi:38341 msgid "Below is an alternative GDB script which is useful when working with other profiles. It takes advantage of the optional Guile integration in GDB. This snippet is included by default on Guix System in the @file{~/.gdbinit} file." msgstr "" #. type: example -#: guix-git/doc/guix.texi:37860 +#: guix-git/doc/guix.texi:38349 #, no-wrap msgid "" "guile\n" @@ -66639,32 +67523,32 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37868 +#: guix-git/doc/guix.texi:38357 msgid "In addition, you will most likely want GDB to be able to show the source code being debugged. To do that, you will have to unpack the source code of the package of interest (obtained with @code{guix build --source}, @pxref{Invoking guix build}), and to point GDB to that source directory using the @code{directory} command (@pxref{Source Path, @code{directory},, gdb, Debugging with GDB})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37876 +#: guix-git/doc/guix.texi:38365 msgid "The @code{debug} output mechanism in Guix is implemented by the @code{gnu-build-system} (@pxref{Build Systems}). Currently, it is opt-in---debugging information is available only for the packages with definitions explicitly declaring a @code{debug} output. To check whether a package has a @code{debug} output, use @command{guix package --list-available} (@pxref{Invoking guix package})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37878 +#: guix-git/doc/guix.texi:38367 msgid "Read on for how to deal with packages lacking a @code{debug} output." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37890 +#: guix-git/doc/guix.texi:38379 msgid "As we saw above, some packages, but not all, provide debugging info in a @code{debug} output. What can you do when debugging info is missing? The @option{--with-debug-info} option provides a solution to that: it allows you to rebuild the package(s) for which debugging info is missing---and only those---and to graft those onto the application you're debugging. Thus, while it's not as fast as installing a @code{debug} output, it is relatively inexpensive." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37895 +#: guix-git/doc/guix.texi:38384 msgid "Let's illustrate that. Suppose you're experiencing a bug in Inkscape and would like to see what's going on in GLib, a library that's deep down in its dependency graph. As it turns out, GLib does not have a @code{debug} output and the backtrace GDB shows is all sadness:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37906 +#: guix-git/doc/guix.texi:38395 #, no-wrap msgid "" "(gdb) bt\n" @@ -66679,17 +67563,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37910 +#: guix-git/doc/guix.texi:38399 msgid "To address that, you install Inkscape linked against a variant GLib that contains debug info:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37916 +#: guix-git/doc/guix.texi:38405 msgid "This time, debugging will be a whole lot nicer:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37934 +#: guix-git/doc/guix.texi:38423 #, no-wrap msgid "" "$ gdb --args sh -c 'exec inkscape'\n" @@ -66711,28 +67595,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37937 +#: guix-git/doc/guix.texi:38426 msgid "Much better!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37941 +#: guix-git/doc/guix.texi:38430 msgid "Note that there can be packages for which @option{--with-debug-info} will not have the desired effect. @xref{Package Transformation Options, @option{--with-debug-info}}, for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37945 +#: guix-git/doc/guix.texi:38434 #, no-wrap msgid "security updates" msgstr "보안 최신화" #. type: Plain text -#: guix-git/doc/guix.texi:37954 +#: guix-git/doc/guix.texi:38443 msgid "Occasionally, important security vulnerabilities are discovered in software packages and must be patched. Guix developers try hard to keep track of known vulnerabilities and to apply fixes as soon as possible in the @code{master} branch of Guix (we do not yet provide a ``stable'' branch containing only security updates). The @command{guix lint} tool helps developers find out about vulnerable versions of software packages in the distribution:" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:37961 +#: guix-git/doc/guix.texi:38450 #, no-wrap msgid "" "$ guix lint -c cve\n" @@ -66743,39 +67627,39 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37964 +#: guix-git/doc/guix.texi:38453 msgid "@xref{Invoking guix lint}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37973 +#: guix-git/doc/guix.texi:38462 msgid "Guix follows a functional package management discipline (@pxref{Introduction}), which implies that, when a package is changed, @emph{every package that depends on it} must be rebuilt. This can significantly slow down the deployment of fixes in core packages such as libc or Bash, since basically the whole distribution would need to be rebuilt. Using pre-built binaries helps (@pxref{Substitutes}), but deployment may still take more time than desired." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37974 +#: guix-git/doc/guix.texi:38463 #, no-wrap msgid "grafts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37982 +#: guix-git/doc/guix.texi:38471 msgid "To address this, Guix implements @dfn{grafts}, a mechanism that allows for fast deployment of critical updates without the costs associated with a whole-distribution rebuild. The idea is to rebuild only the package that needs to be patched, and then to ``graft'' it onto packages explicitly installed by the user and that were previously referring to the original package. The cost of grafting is typically very low, and order of magnitudes lower than a full rebuild of the dependency chain." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37983 +#: guix-git/doc/guix.texi:38472 #, no-wrap msgid "replacements of packages, for grafts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37989 +#: guix-git/doc/guix.texi:38478 msgid "For instance, suppose a security update needs to be applied to Bash. Guix developers will provide a package definition for the ``fixed'' Bash, say @code{bash-fixed}, in the usual way (@pxref{Defining Packages}). Then, the original package definition is augmented with a @code{replacement} field pointing to the package containing the bug fix:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37996 +#: guix-git/doc/guix.texi:38485 #, no-wrap msgid "" "(define bash\n" @@ -66786,190 +67670,190 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38006 +#: guix-git/doc/guix.texi:38495 msgid "From there on, any package depending directly or indirectly on Bash---as reported by @command{guix gc --requisites} (@pxref{Invoking guix gc})---that is installed is automatically ``rewritten'' to refer to @code{bash-fixed} instead of @code{bash}. This grafting process takes time proportional to the size of the package, usually less than a minute for an ``average'' package on a recent machine. Grafting is recursive: when an indirect dependency requires grafting, then grafting ``propagates'' up to the package that the user is installing." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38014 +#: guix-git/doc/guix.texi:38503 msgid "Currently, the length of the name and version of the graft and that of the package it replaces (@code{bash-fixed} and @code{bash} in the example above) must be equal. This restriction mostly comes from the fact that grafting works by patching files, including binary files, directly. Other restrictions may apply: for instance, when adding a graft to a package providing a shared library, the original shared library and its replacement must have the same @code{SONAME} and be binary-compatible." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38018 +#: guix-git/doc/guix.texi:38507 msgid "The @option{--no-grafts} command-line option allows you to forcefully avoid grafting (@pxref{Common Build Options, @option{--no-grafts}}). Thus, the command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38021 +#: guix-git/doc/guix.texi:38510 #, no-wrap msgid "guix build bash --no-grafts\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38025 +#: guix-git/doc/guix.texi:38514 msgid "returns the store file name of the original Bash, whereas:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38028 +#: guix-git/doc/guix.texi:38517 #, no-wrap msgid "guix build bash\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38033 +#: guix-git/doc/guix.texi:38522 msgid "returns the store file name of the ``fixed'', replacement Bash. This allows you to distinguish between the two variants of Bash." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38036 +#: guix-git/doc/guix.texi:38525 msgid "To verify which Bash your whole profile refers to, you can run (@pxref{Invoking guix gc}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38039 +#: guix-git/doc/guix.texi:38528 #, no-wrap msgid "guix gc -R $(readlink -f ~/.guix-profile) | grep bash\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38044 +#: guix-git/doc/guix.texi:38533 msgid "@dots{} and compare the store file names that you get with those above. Likewise for a complete Guix system generation:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38047 +#: guix-git/doc/guix.texi:38536 #, no-wrap msgid "guix gc -R $(guix system build my-config.scm) | grep bash\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38051 +#: guix-git/doc/guix.texi:38540 msgid "Lastly, to check which Bash running processes are using, you can use the @command{lsof} command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38054 +#: guix-git/doc/guix.texi:38543 #, no-wrap msgid "lsof | grep /gnu/store/.*bash\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:38062 +#: guix-git/doc/guix.texi:38551 #, no-wrap msgid "bootstrapping" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38069 +#: guix-git/doc/guix.texi:38558 msgid "Bootstrapping in our context refers to how the distribution gets built ``from nothing''. Remember that the build environment of a derivation contains nothing but its declared inputs (@pxref{Introduction}). So there's an obvious chicken-and-egg problem: how does the first package get built? How does the first compiler get compiled?" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38077 +#: guix-git/doc/guix.texi:38566 msgid "It is tempting to think of this question as one that only die-hard hackers may care about. However, while the answer to that question is technical in nature, its implications are wide-ranging. How the distribution is bootstrapped defines the extent to which we, as individuals and as a collective of users and hackers, can trust the software we run. It is a central concern from the standpoint of @emph{security} and from a @emph{user freedom} viewpoint." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:38078 guix-git/doc/guix.texi:38290 +#: guix-git/doc/guix.texi:38567 guix-git/doc/guix.texi:38779 #, no-wrap msgid "bootstrap binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38088 +#: guix-git/doc/guix.texi:38577 msgid "The GNU system is primarily made of C code, with libc at its core. The GNU build system itself assumes the availability of a Bourne shell and command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and `grep'. Furthermore, build programs---programs that run @code{./configure}, @code{make}, etc.---are written in Guile Scheme (@pxref{Derivations}). Consequently, to be able to build anything at all, from scratch, Guix relies on pre-built binaries of Guile, GCC, Binutils, libc, and the other packages mentioned above---the @dfn{bootstrap binaries}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38092 +#: guix-git/doc/guix.texi:38581 msgid "These bootstrap binaries are ``taken for granted'', though we can also re-create them if needed (@pxref{Preparing to Use the Bootstrap Binaries})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:38099 +#: guix-git/doc/guix.texi:38588 #, no-wrap msgid "The Reduced Binary Seed Bootstrap" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38106 +#: guix-git/doc/guix.texi:38595 msgid "Guix---like other GNU/Linux distributions---is traditionally bootstrapped from a set of bootstrap binaries: Bourne shell, command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and `grep' and Guile, GCC, Binutils, and the GNU C Library (@pxref{Bootstrapping}). Usually, these bootstrap binaries are ``taken for granted.''" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38112 +#: guix-git/doc/guix.texi:38601 msgid "Taking the bootstrap binaries for granted means that we consider them to be a correct and trustworthy ``seed'' for building the complete system. Therein lies a problem: the combined size of these bootstrap binaries is about 250MB (@pxref{Bootstrappable Builds,,, mes, GNU Mes}). Auditing or even inspecting these is next to impossible." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38117 +#: guix-git/doc/guix.texi:38606 msgid "For @code{i686-linux} and @code{x86_64-linux}, Guix now features a ``Reduced Binary Seed'' bootstrap @footnote{We would like to say: ``Full Source Bootstrap'' and while we are working towards that goal it would be hyperbole to use that term for what we do now.}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38123 +#: guix-git/doc/guix.texi:38612 msgid "The Reduced Binary Seed bootstrap removes the most critical tools---from a trust perspective---from the bootstrap binaries: GCC, Binutils and the GNU C Library are replaced by: @code{bootstrap-mescc-tools} (a tiny assembler and linker) and @code{bootstrap-mes} (a small Scheme Interpreter and a C compiler written in Scheme and the Mes C Library, built for TinyCC and for GCC)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38128 +#: guix-git/doc/guix.texi:38617 msgid "Using these new binary seeds the ``missing'' Binutils, GCC, and the GNU C Library are built from source. From here on the more traditional bootstrap process resumes. This approach has reduced the bootstrap binaries in size to about 145MB in Guix v1.1." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38136 +#: guix-git/doc/guix.texi:38625 msgid "The next step that Guix has taken is to replace the shell and all its utilities with implementations in Guile Scheme, the @emph{Scheme-only bootstrap}. Gash (@pxref{Gash,,, gash, The Gash manual}) is a POSIX-compatible shell that replaces Bash, and it comes with Gash Utils which has minimalist replacements for Awk, the GNU Core Utilities, Grep, Gzip, Sed, and Tar. The rest of the bootstrap binary seeds that were removed are now built from source." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38146 +#: guix-git/doc/guix.texi:38635 msgid "Building the GNU System from source is currently only possible by adding some historical GNU packages as intermediate steps@footnote{Packages such as @code{gcc-2.95.3}, @code{binutils-2.14}, @code{glibc-2.2.5}, @code{gzip-1.2.4}, @code{tar-1.22}, and some others. For details, see @file{gnu/packages/commencement.scm}.}. As Gash and Gash Utils mature, and GNU packages become more bootstrappable again (e.g., new releases of GNU Sed will also ship as gzipped tarballs again, as alternative to the hard to bootstrap @code{xz}-compression), this set of added packages can hopefully be reduced again." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38150 +#: guix-git/doc/guix.texi:38639 msgid "The graph below shows the resulting dependency graph for @code{gcc-core-mesboot0}, the bootstrap compiler used for the traditional bootstrap of the rest of the Guix System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38153 +#: guix-git/doc/guix.texi:38642 msgid "@image{images/gcc-core-mesboot0-graph,6in,,Dependency graph of gcc-core-mesboot0}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38160 +#: guix-git/doc/guix.texi:38649 msgid "The only significant binary bootstrap seeds that remain@footnote{ Ignoring the 68KB @code{mescc-tools}; that will be removed later, together with @code{mes}.} are a Scheme interpreter and a Scheme compiler: GNU Mes and GNU Guile@footnote{Not shown in this graph are the static binaries for @file{bash}, @code{tar}, and @code{xz} that are used to get Guile running.}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38163 +#: guix-git/doc/guix.texi:38652 msgid "This further reduction has brought down the size of the binary seed to about 60MB for @code{i686-linux} and @code{x86_64-linux}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38168 +#: guix-git/doc/guix.texi:38657 msgid "Work is ongoing to remove all binary blobs from our free software bootstrap stack, working towards a Full Source Bootstrap. Also ongoing is work to bring these bootstraps to the @code{arm-linux} and @code{aarch64-linux} architectures and to the Hurd." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38172 +#: guix-git/doc/guix.texi:38661 msgid "If you are interested, join us on @samp{#bootstrappable} on the Freenode IRC network or discuss on @email{bug-mes@@gnu.org} or @email{gash-devel@@nongnu.org}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38179 +#: guix-git/doc/guix.texi:38668 msgid "@image{images/bootstrap-graph,6in,,Dependency graph of the early bootstrap derivations}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38184 +#: guix-git/doc/guix.texi:38673 msgid "The figure above shows the very beginning of the dependency graph of the distribution, corresponding to the package definitions of the @code{(gnu packages bootstrap)} module. A similar figure can be generated with @command{guix graph} (@pxref{Invoking guix graph}), along the lines of:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38189 +#: guix-git/doc/guix.texi:38678 #, no-wrap msgid "" "guix graph -t derivation \\\n" @@ -66978,12 +67862,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38192 +#: guix-git/doc/guix.texi:38681 msgid "or, for the further Reduced Binary Seed bootstrap" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38197 +#: guix-git/doc/guix.texi:38686 #, no-wrap msgid "" "guix graph -t derivation \\\n" @@ -66992,43 +67876,43 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38206 +#: guix-git/doc/guix.texi:38695 msgid "At this level of detail, things are slightly complex. First, Guile itself consists of an ELF executable, along with many source and compiled Scheme files that are dynamically loaded when it runs. This gets stored in the @file{guile-2.0.7.tar.xz} tarball shown in this graph. This tarball is part of Guix's ``source'' distribution, and gets inserted into the store with @code{add-to-store} (@pxref{The Store})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38215 +#: guix-git/doc/guix.texi:38704 msgid "But how do we write a derivation that unpacks this tarball and adds it to the store? To solve this problem, the @code{guile-bootstrap-2.0.drv} derivation---the first one that gets built---uses @code{bash} as its builder, which runs @code{build-bootstrap-guile.sh}, which in turn calls @code{tar} to unpack the tarball. Thus, @file{bash}, @file{tar}, @file{xz}, and @file{mkdir} are statically-linked binaries, also part of the Guix source distribution, whose sole purpose is to allow the Guile tarball to be unpacked." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38227 +#: guix-git/doc/guix.texi:38716 msgid "Once @code{guile-bootstrap-2.0.drv} is built, we have a functioning Guile that can be used to run subsequent build programs. Its first task is to download tarballs containing the other pre-built binaries---this is what the @file{.tar.xz.drv} derivations do. Guix modules such as @code{ftp-client.scm} are used for this purpose. The @code{module-import.drv} derivations import those modules in a directory in the store, using the original layout. The @code{module-import-compiled.drv} derivations compile those modules, and write them in an output directory with the right layout. This corresponds to the @code{#:modules} argument of @code{build-expression->derivation} (@pxref{Derivations})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38232 +#: guix-git/doc/guix.texi:38721 msgid "Finally, the various tarballs are unpacked by the derivations @code{gcc-bootstrap-0.drv}, @code{glibc-bootstrap-0.drv}, or @code{bootstrap-mes-0.drv} and @code{bootstrap-mescc-tools-0.drv}, at which point we have a working C tool chain." msgstr "" #. type: unnumberedsec -#: guix-git/doc/guix.texi:38233 +#: guix-git/doc/guix.texi:38722 #, no-wrap msgid "Building the Build Tools" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38242 +#: guix-git/doc/guix.texi:38731 msgid "Bootstrapping is complete when we have a full tool chain that does not depend on the pre-built bootstrap tools discussed above. This no-dependency requirement is verified by checking whether the files of the final tool chain contain references to the @file{/gnu/store} directories of the bootstrap inputs. The process that leads to this ``final'' tool chain is described by the package definitions found in the @code{(gnu packages commencement)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38249 +#: guix-git/doc/guix.texi:38738 msgid "The @command{guix graph} command allows us to ``zoom out'' compared to the graph above, by looking at the level of package objects instead of individual derivations---remember that a package may translate to several derivations, typically one derivation to download its source, one to build the Guile modules it needs, and one to actually build the package from source. The command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38254 +#: guix-git/doc/guix.texi:38743 #, no-wrap msgid "" "guix graph -t bag \\\n" @@ -67037,168 +67921,171 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38261 +#: guix-git/doc/guix.texi:38750 msgid "displays the dependency graph leading to the ``final'' C library@footnote{You may notice the @code{glibc-intermediate} label, suggesting that it is not @emph{quite} final, but as a good approximation, we will consider it final.}, depicted below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38263 +#: guix-git/doc/guix.texi:38752 msgid "@image{images/bootstrap-packages,6in,,Dependency graph of the early packages}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38269 +#: guix-git/doc/guix.texi:38758 msgid "The first tool that gets built with the bootstrap binaries is GNU@tie{}Make---noted @code{make-boot0} above---which is a prerequisite for all the following packages. From there Findutils and Diffutils get built." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38274 +#: guix-git/doc/guix.texi:38763 msgid "Then come the first-stage Binutils and GCC, built as pseudo cross tools---i.e., with @option{--target} equal to @option{--host}. They are used to build libc. Thanks to this cross-build trick, this libc is guaranteed not to hold any reference to the initial tool chain." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38280 +#: guix-git/doc/guix.texi:38769 msgid "From there the final Binutils and GCC (not shown above) are built. GCC uses @command{ld} from the final Binutils, and links programs against the just-built libc. This tool chain is used to build the other packages used by Guix and by the GNU Build System: Guile, Bash, Coreutils, etc." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38286 +#: guix-git/doc/guix.texi:38775 msgid "And voilà! At this point we have the complete set of build tools that the GNU Build System expects. These are in the @code{%final-inputs} variable of the @code{(gnu packages commencement)} module, and are implicitly used by any package that uses @code{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}})." msgstr "" #. type: unnumberedsec -#: guix-git/doc/guix.texi:38288 +#: guix-git/doc/guix.texi:38777 #, no-wrap msgid "Building the Bootstrap Binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38295 +#: guix-git/doc/guix.texi:38784 msgid "Because the final tool chain does not depend on the bootstrap binaries, those rarely need to be updated. Nevertheless, it is useful to have an automated way to produce them, should an update occur, and this is what the @code{(gnu packages make-bootstrap)} module provides." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38301 +#: guix-git/doc/guix.texi:38790 msgid "The following command builds the tarballs containing the bootstrap binaries (Binutils, GCC, glibc, for the traditional bootstrap and linux-libre-headers, bootstrap-mescc-tools, bootstrap-mes for the Reduced Binary Seed bootstrap, and Guile, and a tarball containing a mixture of Coreutils and other basic command-line tools):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38304 +#: guix-git/doc/guix.texi:38793 #, no-wrap msgid "guix build bootstrap-tarballs\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38309 +#: guix-git/doc/guix.texi:38798 msgid "The generated tarballs are those that should be referred to in the @code{(gnu packages bootstrap)} module mentioned at the beginning of this section." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38315 +#: guix-git/doc/guix.texi:38804 msgid "Still here? Then perhaps by now you've started to wonder: when do we reach a fixed point? That is an interesting question! The answer is unknown, but if you would like to investigate further (and have significant computational and storage resources to do so), then let us know." msgstr "" #. type: unnumberedsec -#: guix-git/doc/guix.texi:38316 +#: guix-git/doc/guix.texi:38805 #, no-wrap msgid "Reducing the Set of Bootstrap Binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38324 +#: guix-git/doc/guix.texi:38813 msgid "Our traditional bootstrap includes GCC, GNU Libc, Guile, etc. That's a lot of binary code! Why is that a problem? It's a problem because these big chunks of binary code are practically non-auditable, which makes it hard to establish what source code produced them. Every unauditable binary also leaves us vulnerable to compiler backdoors as described by Ken Thompson in the 1984 paper @emph{Reflections on Trusting Trust}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38330 +#: guix-git/doc/guix.texi:38819 msgid "This is mitigated by the fact that our bootstrap binaries were generated from an earlier Guix revision. Nevertheless it lacks the level of transparency that we get in the rest of the package dependency graph, where Guix always gives us a source-to-binary mapping. Thus, our goal is to reduce the set of bootstrap binaries to the bare minimum." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38336 +#: guix-git/doc/guix.texi:38825 msgid "The @uref{https://bootstrappable.org, Bootstrappable.org web site} lists on-going projects to do that. One of these is about replacing the bootstrap GCC with a sequence of assemblers, interpreters, and compilers of increasing complexity, which could be built from source starting from a simple and auditable assembler." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38345 +#: guix-git/doc/guix.texi:38834 msgid "Our first major achievement is the replacement of of GCC, the GNU C Library and Binutils by MesCC-Tools (a simple hex linker and macro assembler) and Mes (@pxref{Top, GNU Mes Reference Manual,, mes, GNU Mes}, a Scheme interpreter and C compiler in Scheme). Neither MesCC-Tools nor Mes can be fully bootstrapped yet and thus we inject them as binary seeds. We call this the Reduced Binary Seed bootstrap, as it has halved the size of our bootstrap binaries! Also, it has eliminated the C compiler binary; i686-linux and x86_64-linux Guix packages are now bootstrapped without any binary C compiler." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38348 +#: guix-git/doc/guix.texi:38837 msgid "Work is ongoing to make MesCC-Tools and Mes fully bootstrappable and we are also looking at any other bootstrap binaries. Your help is welcome!" msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:38350 +#: guix-git/doc/guix.texi:38839 #, no-wrap msgid "Porting to a New Platform" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38359 +#: guix-git/doc/guix.texi:38848 msgid "As discussed above, the GNU distribution is self-contained, and self-containment is achieved by relying on pre-built ``bootstrap binaries'' (@pxref{Bootstrapping}). These binaries are specific to an operating system kernel, CPU architecture, and application binary interface (ABI). Thus, to port the distribution to a platform that is not yet supported, one must build those bootstrap binaries, and update the @code{(gnu packages bootstrap)} module to use them on that platform." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38364 +#: guix-git/doc/guix.texi:38853 msgid "Fortunately, Guix can @emph{cross compile} those bootstrap binaries. When everything goes well, and assuming the GNU tool chain supports the target platform, this can be as simple as running a command like this one:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38367 +#: guix-git/doc/guix.texi:38856 #, no-wrap msgid "guix build --target=armv5tel-linux-gnueabi bootstrap-tarballs\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38374 +#: guix-git/doc/guix.texi:38863 msgid "For this to work, the @code{glibc-dynamic-linker} procedure in @code{(gnu packages bootstrap)} must be augmented to return the right file name for libc's dynamic linker on that platform; likewise, @code{system->linux-architecture} in @code{(gnu packages linux)} must be taught about the new platform." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38383 +#: guix-git/doc/guix.texi:38872 msgid "Once these are built, the @code{(gnu packages bootstrap)} module needs to be updated to refer to these binaries on the target platform. That is, the hashes and URLs of the bootstrap tarballs for the new platform must be added alongside those of the currently supported platforms. The bootstrap Guile tarball is treated specially: it is expected to be available locally, and @file{gnu/local.mk} has rules to download it for the supported architectures; a rule for the new platform must be added as well." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38392 +#: guix-git/doc/guix.texi:38881 msgid "In practice, there may be some complications. First, it may be that the extended GNU triplet that specifies an ABI (like the @code{eabi} suffix above) is not recognized by all the GNU tools. Typically, glibc recognizes some of these, whereas GCC uses an extra @option{--with-abi} configure flag (see @code{gcc.scm} for examples of how to handle this). Second, some of the required packages could fail to build for that platform. Lastly, the generated binaries could be broken for some reason." msgstr "" #. type: include -#: guix-git/doc/guix.texi:38394 +#: guix-git/doc/guix.texi:38883 #, no-wrap msgid "contributing.texi" msgstr "contributing.ko.texi" #. type: Plain text -#: guix-git/doc/guix.texi:38407 +#: guix-git/doc/guix.texi:38896 msgid "Guix is based on the @uref{https://nixos.org/nix/, Nix package manager}, which was designed and implemented by Eelco Dolstra, with contributions from other people (see the @file{nix/AUTHORS} file in Guix). Nix pioneered functional package management, and promoted unprecedented features, such as transactional package upgrades and rollbacks, per-user profiles, and referentially transparent build processes. Without this work, Guix would not exist." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38410 +#: guix-git/doc/guix.texi:38899 msgid "The Nix-based software distributions, Nixpkgs and NixOS, have also been an inspiration for Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38416 +#: guix-git/doc/guix.texi:38905 msgid "GNU@tie{}Guix itself is a collective work with contributions from a number of people. See the @file{AUTHORS} file in Guix for more information on these fine people. The @file{THANKS} file lists people who have helped by reporting bugs, taking care of the infrastructure, providing artwork and themes, making suggestions, and more---thank you!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:38421 +#: guix-git/doc/guix.texi:38910 #, no-wrap msgid "license, GNU Free Documentation License" msgstr "" #. type: include -#: guix-git/doc/guix.texi:38422 +#: guix-git/doc/guix.texi:38911 #, no-wrap msgid "fdl-1.3.texi" msgstr "" +#~ msgid "./etc/indent-code.el gnu/services/@var{file}.scm\n" +#~ msgstr "./etc/indent-code.el gnu/services/@var{file}.scm\n" + #~ msgid "git-send-email" #~ msgstr "깃 전송-전자우편" diff --git a/po/doc/guix-manual.pt_BR.po b/po/doc/guix-manual.pt_BR.po index 18e3022802..480ea96a00 100644 --- a/po/doc/guix-manual.pt_BR.po +++ b/po/doc/guix-manual.pt_BR.po @@ -3,20 +3,22 @@ # This file is distributed under the same license as the guix manual package. # Rafael Fontenelle , 2021. # Thiago Jung Bauermann , 2021. +# Camila Flores Granella , 2022. +# Fábio Rodrigues Ribeiro , 2022. msgid "" msgstr "" "Project-Id-Version: guix manual checkout\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2021-12-21 15:18+0000\n" -"PO-Revision-Date: 2021-05-22 01:17+0000\n" -"Last-Translator: Thiago Jung Bauermann \n" +"POT-Creation-Date: 2022-02-02 15:18+0000\n" +"PO-Revision-Date: 2022-01-25 15:16+0000\n" +"Last-Translator: Fábio Rodrigues Ribeiro \n" "Language-Team: Portuguese (Brazil) \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.6.2\n" +"X-Generator: Weblate 4.10.1\n" #. #-#-#-#-# contributing.pot (guix manual checkout) #-#-#-#-# #. type: chapter @@ -70,8 +72,8 @@ msgid "The latest and greatest." msgstr "A mais recente e melhor." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:161 -#: guix-git/doc/contributing.texi:162 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:173 +#: guix-git/doc/contributing.texi:174 #, no-wrap msgid "Running Guix Before It Is Installed" msgstr "Executando guix antes dele ser instalado" @@ -82,8 +84,8 @@ msgid "Hacker tricks." msgstr "Truques de hacker." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:235 -#: guix-git/doc/contributing.texi:236 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:265 +#: guix-git/doc/contributing.texi:266 #, no-wrap msgid "The Perfect Setup" msgstr "A configuração perfeita" @@ -94,8 +96,8 @@ msgid "The right tools." msgstr "As ferramentas certas." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:326 -#: guix-git/doc/contributing.texi:327 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:356 +#: guix-git/doc/contributing.texi:357 #, no-wrap msgid "Packaging Guidelines" msgstr "Diretrizes de empacotamento" @@ -106,8 +108,8 @@ msgid "Growing the distribution." msgstr "Crescendo a distribuição." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:890 -#: guix-git/doc/contributing.texi:891 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:920 +#: guix-git/doc/contributing.texi:921 #, no-wrap msgid "Coding Style" msgstr "Estilo de código" @@ -118,8 +120,8 @@ msgid "Hygiene of the contributor." msgstr "Limpeza do contribuidor." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:989 -#: guix-git/doc/contributing.texi:990 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1013 +#: guix-git/doc/contributing.texi:1014 #, no-wrap msgid "Submitting Patches" msgstr "Enviando patches" @@ -130,8 +132,8 @@ msgid "Share your work." msgstr "Compartilhe seu trabalho." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1270 -#: guix-git/doc/contributing.texi:1271 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1298 +#: guix-git/doc/contributing.texi:1299 #, no-wrap msgid "Tracking Bugs and Patches" msgstr "" @@ -142,8 +144,8 @@ msgid "Keeping it all organized." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1385 -#: guix-git/doc/contributing.texi:1386 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1413 +#: guix-git/doc/contributing.texi:1414 #, no-wrap msgid "Commit Access" msgstr "" @@ -154,8 +156,8 @@ msgid "Pushing to the official repository." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1611 -#: guix-git/doc/contributing.texi:1612 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1644 +#: guix-git/doc/contributing.texi:1645 #, no-wrap msgid "Updating the Guix Package" msgstr "" @@ -166,12 +168,11 @@ msgid "Updating the Guix package definition." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1652 -#: guix-git/doc/contributing.texi:1653 -#, fuzzy, no-wrap -#| msgid "Testing Guix." +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1686 +#, no-wrap msgid "Translating Guix" -msgstr "Testando o Guix." +msgstr "Traduzindo o Guix" #. type: menuentry #: guix-git/doc/contributing.texi:33 @@ -355,30 +356,31 @@ msgid "make authenticate GUIX_GIT_KEYRING=myremote/keyring\n" msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:154 guix-git/doc/contributing.texi:1463 -#: guix-git/doc/guix.texi:594 guix-git/doc/guix.texi:643 -#: guix-git/doc/guix.texi:833 guix-git/doc/guix.texi:1813 -#: guix-git/doc/guix.texi:2060 guix-git/doc/guix.texi:2244 -#: guix-git/doc/guix.texi:2465 guix-git/doc/guix.texi:2677 -#: guix-git/doc/guix.texi:3807 guix-git/doc/guix.texi:4548 -#: guix-git/doc/guix.texi:4562 guix-git/doc/guix.texi:4644 -#: guix-git/doc/guix.texi:4874 guix-git/doc/guix.texi:5615 -#: guix-git/doc/guix.texi:6082 guix-git/doc/guix.texi:6333 -#: guix-git/doc/guix.texi:6454 guix-git/doc/guix.texi:6482 -#: guix-git/doc/guix.texi:6535 guix-git/doc/guix.texi:9391 -#: guix-git/doc/guix.texi:9461 guix-git/doc/guix.texi:11198 -#: guix-git/doc/guix.texi:11238 guix-git/doc/guix.texi:11512 -#: guix-git/doc/guix.texi:11524 guix-git/doc/guix.texi:14000 -#: guix-git/doc/guix.texi:14631 guix-git/doc/guix.texi:15521 -#: guix-git/doc/guix.texi:16507 guix-git/doc/guix.texi:19140 -#: guix-git/doc/guix.texi:19310 guix-git/doc/guix.texi:27188 -#: guix-git/doc/guix.texi:30914 guix-git/doc/guix.texi:34669 -#: guix-git/doc/guix.texi:34903 guix-git/doc/guix.texi:35073 -#: guix-git/doc/guix.texi:35232 guix-git/doc/guix.texi:35334 -#: guix-git/doc/guix.texi:35435 guix-git/doc/guix.texi:35738 -#: guix-git/doc/guix.texi:36896 guix-git/doc/guix.texi:36971 -#: guix-git/doc/guix.texi:37006 guix-git/doc/guix.texi:37056 -#: guix-git/doc/guix.texi:37143 guix-git/doc/guix.texi:37564 +#: guix-git/doc/contributing.texi:154 guix-git/doc/contributing.texi:1496 +#: guix-git/doc/guix.texi:605 guix-git/doc/guix.texi:654 +#: guix-git/doc/guix.texi:844 guix-git/doc/guix.texi:1830 +#: guix-git/doc/guix.texi:2077 guix-git/doc/guix.texi:2261 +#: guix-git/doc/guix.texi:2482 guix-git/doc/guix.texi:2694 +#: guix-git/doc/guix.texi:3825 guix-git/doc/guix.texi:4566 +#: guix-git/doc/guix.texi:4580 guix-git/doc/guix.texi:4662 +#: guix-git/doc/guix.texi:4892 guix-git/doc/guix.texi:5633 +#: guix-git/doc/guix.texi:6119 guix-git/doc/guix.texi:6376 +#: guix-git/doc/guix.texi:6497 guix-git/doc/guix.texi:6525 +#: guix-git/doc/guix.texi:6578 guix-git/doc/guix.texi:9581 +#: guix-git/doc/guix.texi:9705 guix-git/doc/guix.texi:9775 +#: guix-git/doc/guix.texi:11512 guix-git/doc/guix.texi:11552 +#: guix-git/doc/guix.texi:11826 guix-git/doc/guix.texi:11838 +#: guix-git/doc/guix.texi:14357 guix-git/doc/guix.texi:14988 +#: guix-git/doc/guix.texi:15878 guix-git/doc/guix.texi:16864 +#: guix-git/doc/guix.texi:19502 guix-git/doc/guix.texi:19672 +#: guix-git/doc/guix.texi:27525 guix-git/doc/guix.texi:31279 +#: guix-git/doc/guix.texi:35108 guix-git/doc/guix.texi:35342 +#: guix-git/doc/guix.texi:35512 guix-git/doc/guix.texi:35676 +#: guix-git/doc/guix.texi:35778 guix-git/doc/guix.texi:35817 +#: guix-git/doc/guix.texi:35891 guix-git/doc/guix.texi:36228 +#: guix-git/doc/guix.texi:37386 guix-git/doc/guix.texi:37461 +#: guix-git/doc/guix.texi:37496 guix-git/doc/guix.texi:37546 +#: guix-git/doc/guix.texi:37633 guix-git/doc/guix.texi:38043 #, no-wrap msgid "Note" msgstr "Nota" @@ -389,28 +391,46 @@ msgid "You are advised to run @command{make authenticate} after every @command{g msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:168 +#: guix-git/doc/contributing.texi:162 +msgid "After updating the repository, @command{make} might fail with an error similar to the following example:" +msgstr "" + +#. type: example +#: guix-git/doc/contributing.texi:166 +#, no-wrap +msgid "" +"error: failed to load 'gnu/packages/dunst.scm':\n" +"ice-9/eval.scm:293:34: In procedure abi-check: #>: record ABI mismatch; recompilation needed\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:172 +msgid "This means that one of the record types that Guix defines (in this example, the @code{origin} record) has changed, and all of guix needs to be recompiled to take that change into account. To do so, run @command{make clean-go} followed by @command{make}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:180 msgid "In order to keep a sane working environment, you will find it useful to test the changes made in your local source tree checkout without actually installing them. So that you can distinguish between your ``end-user'' hat and your ``motley'' costume." msgstr "Para manter um ambiente de trabalho saudável, você achará útil testar as alterações feitas na árvore local de fontes sem realmente instalá-las. Para que você possa distinguir entre o seu chapéude ''usuário final'' e sua fantasia ''misturada''." #. type: Plain text -#: guix-git/doc/contributing.texi:179 +#: guix-git/doc/contributing.texi:191 msgid "To that end, all the command-line tools can be used even if you have not run @code{make install}. To do that, you first need to have an environment with all the dependencies available (@pxref{Building from Git}), and then simply prefix each command with @command{./pre-inst-env} (the @file{pre-inst-env} script lives in the top build tree of Guix; it is generated by running @command{./bootstrap} followed by @command{./configure}). As an example, here is how you would build the @code{hello} package as defined in your working tree (this assumes @command{guix-daemon} is already running on your system; it's OK if it's a different version):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:182 +#: guix-git/doc/contributing.texi:194 #, no-wrap msgid "$ ./pre-inst-env guix build hello\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:186 +#: guix-git/doc/contributing.texi:198 msgid "Similarly, an example for a Guile session using the Guix modules:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:189 +#: guix-git/doc/contributing.texi:201 #, no-wrap msgid "" "$ ./pre-inst-env guile -c '(use-modules (guix utils)) (pk (%current-system))'\n" @@ -420,30 +440,30 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/contributing.texi:191 +#: guix-git/doc/contributing.texi:203 #, no-wrap msgid ";;; (\"x86_64-linux\")\n" msgstr ";;; (\"x86_64-linux\")\n" #. type: cindex -#: guix-git/doc/contributing.texi:194 +#: guix-git/doc/contributing.texi:206 #, no-wrap msgid "REPL" msgstr "REPL" #. type: cindex -#: guix-git/doc/contributing.texi:195 +#: guix-git/doc/contributing.texi:207 #, no-wrap msgid "read-eval-print loop" msgstr "read-eval-print loop" #. type: Plain text -#: guix-git/doc/contributing.texi:198 +#: guix-git/doc/contributing.texi:210 msgid "@dots{} and for a REPL (@pxref{Using Guile Interactively,,, guile, Guile Reference Manual}):" msgstr "@dots{} e para um REPL (@pxref{Usando o Guile interativamente,,, guile, Manual de referência do Guile}):" #. type: example -#: guix-git/doc/contributing.texi:213 +#: guix-git/doc/contributing.texi:225 #, no-wrap msgid "" "$ ./pre-inst-env guile\n" @@ -475,45 +495,68 @@ msgstr "" "$1 = 361\n" #. type: Plain text -#: guix-git/doc/contributing.texi:221 +#: guix-git/doc/contributing.texi:233 msgid "If you are hacking on the daemon and its supporting code or if @command{guix-daemon} is not already running on your system, you can launch it straight from the build tree@footnote{The @option{-E} flag to @command{sudo} guarantees that @code{GUILE_LOAD_PATH} is correctly set such that @command{guix-daemon} and the tools it uses can find the Guile modules they need.}:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:224 +#: guix-git/doc/contributing.texi:236 #, no-wrap msgid "$ sudo -E ./pre-inst-env guix-daemon --build-users-group=guixbuild\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:228 +#: guix-git/doc/contributing.texi:240 msgid "The @command{pre-inst-env} script sets up all the environment variables necessary to support this, including @env{PATH} and @env{GUILE_LOAD_PATH}." msgstr "O script @command{pre-inst-env} configura todas as variáveis de ambiente necessárias para prover suporte a isso, incluindo @env{PATH} e @env{GUILE_LOAD_PATH}." #. type: Plain text -#: guix-git/doc/contributing.texi:233 +#: guix-git/doc/contributing.texi:245 msgid "Note that @command{./pre-inst-env guix pull} does @emph{not} upgrade the local source tree; it simply updates the @file{~/.config/guix/current} symlink (@pxref{Invoking guix pull}). Run @command{git pull} instead if you want to upgrade your local source tree." msgstr "Observe que @command{./pre-inst-env guix pull} @emph{não} atualiza a área de fontes local; ele simplesmente atualiza o link simbólico @file{~/.config/guix/current} (@pxref{Invocando guix pull}). Execute @command{git pull} em vez disso, se você quiser atualizar sua árvore de fontes local." #. type: Plain text -#: guix-git/doc/contributing.texi:243 +#: guix-git/doc/contributing.texi:249 +msgid "Sometimes, especially if you have recently updated your repository, running @command{./pre-inst-env} will print a message similar to the following example:" +msgstr "" + +#. type: example +#: guix-git/doc/contributing.texi:253 +#, no-wrap +msgid "" +";;; note: source file /home/user/projects/guix/guix/progress.scm\n" +";;; newer than compiled /home/user/projects/guix/guix/progress.go\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:259 +msgid "This is only a note and you can safely ignore it. You can get rid of the message by running @command{make -j4}. Until you do, Guile will run slightly slower because it will interpret the code instead of using prepared Guile object (@file{.go}) files." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:264 +msgid "You can run @command{make} automatically as you work using @command{watchexec} from the @code{watchexec} package. For example, to build again each time you update a package file, you can run @samp{watchexec -w gnu/packages make -j4}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:273 msgid "The Perfect Setup to hack on Guix is basically the perfect setup used for Guile hacking (@pxref{Using Guile in Emacs,,, guile, Guile Reference Manual}). First, you need more than an editor, you need @url{https://www.gnu.org/software/emacs, Emacs}, empowered by the wonderful @url{https://nongnu.org/geiser/, Geiser}. To set that up, run:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:246 +#: guix-git/doc/contributing.texi:276 #, fuzzy, no-wrap #| msgid "guix package -i emacs guile emacs-geiser\n" msgid "guix package -i emacs guile emacs-geiser emacs-geiser-guile\n" msgstr "guix package -i emacs guile emacs-geiser\n" #. type: Plain text -#: guix-git/doc/contributing.texi:255 +#: guix-git/doc/contributing.texi:285 msgid "Geiser allows for interactive and incremental development from within Emacs: code compilation and evaluation from within buffers, access to on-line documentation (docstrings), context-sensitive completion, @kbd{M-.} to jump to an object definition, a REPL to try out your code, and more (@pxref{Introduction,,, geiser, Geiser User Manual}). For convenient Guix development, make sure to augment Guile’s load path so that it finds source files from your checkout:" msgstr "O Geiser permite um desenvolvimento interativo e incremental de dentro do Emacs: compilação e avaliação de código de dentro dos buffers, acesso à documentação on-line (docstrings), completação sensível ao contexto, @kbd{M-.} para pular para uma definição de objeto, um REPL para tentar seu código e muito mais (@pxref{Introdução ,,, geiser, Manual de usuário do Geiser}). Para um desenvolvimento prático do Guix, certifique-se de aumentar o caminho de carregamento do Guile para que ele encontre os arquivos de origem do seu checkout:" #. type: lisp -#: guix-git/doc/contributing.texi:260 +#: guix-git/doc/contributing.texi:290 #, no-wrap msgid "" ";; @r{Assuming the Guix checkout is in ~/src/guix.}\n" @@ -525,35 +568,35 @@ msgstr "" " (add-to-list 'geiser-guile-load-path \"~/src/guix\"))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:268 +#: guix-git/doc/contributing.texi:298 msgid "To actually edit the code, Emacs already has a neat Scheme mode. But in addition to that, you must not miss @url{https://www.emacswiki.org/emacs/ParEdit, Paredit}. It provides facilities to directly operate on the syntax tree, such as raising an s-expression or wrapping it, swallowing or rejecting the following s-expression, etc." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:269 +#: guix-git/doc/contributing.texi:299 #, no-wrap msgid "code snippets" msgstr "trechos de código" #. type: cindex -#: guix-git/doc/contributing.texi:270 +#: guix-git/doc/contributing.texi:300 #, no-wrap msgid "templates" msgstr "modelos" #. type: cindex -#: guix-git/doc/contributing.texi:271 +#: guix-git/doc/contributing.texi:301 #, no-wrap msgid "reducing boilerplate" msgstr "reduzindo boilerplate" #. type: Plain text -#: guix-git/doc/contributing.texi:278 +#: guix-git/doc/contributing.texi:308 msgid "We also provide templates for common git commit messages and package definitions in the @file{etc/snippets} directory. These templates can be used with @url{https://joaotavora.github.io/yasnippet/, YASnippet} to expand short trigger strings to interactive text snippets. You may want to add the snippets directory to the @var{yas-snippet-dirs} variable in Emacs." msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:283 +#: guix-git/doc/contributing.texi:313 #, no-wrap msgid "" ";; @r{Assuming the Guix checkout is in ~/src/guix.}\n" @@ -565,40 +608,40 @@ msgstr "" " (add-to-list 'yas-snippet-dirs \"~/src/guix/etc/snippets\"))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:291 +#: guix-git/doc/contributing.texi:321 msgid "The commit message snippets depend on @url{https://magit.vc/, Magit} to display staged files. When editing a commit message type @code{add} followed by @kbd{TAB} to insert a commit message template for adding a package; type @code{update} followed by @kbd{TAB} to insert a template for updating a package; type @code{https} followed by @kbd{TAB} to insert a template for changing the home page URI of a package to HTTPS." msgstr "Os trechos de mensagens de commit dependem de @url{https://magit.vc/, Magit} para exibir arquivos \"staged\". Ao editar uma mensagem de commit, digite @code{add} seguido por @kbd{TAB} para inserir um modelo de mensagem de commit para adicionar um pacote; digite @code{update} seguido por @kbd{TAB} para inserir um modelo para atualizar um pacote; digite @code{https} seguido por @kbd{TAB} para inserir um modelo para alterar a URI da página inicial de um pacote para HTTPS." #. type: Plain text -#: guix-git/doc/contributing.texi:297 +#: guix-git/doc/contributing.texi:327 msgid "The main snippet for @code{scheme-mode} is triggered by typing @code{package...} followed by @kbd{TAB}. This snippet also inserts the trigger string @code{origin...}, which can be expanded further. The @code{origin} snippet in turn may insert other trigger strings ending on @code{...}, which also can be expanded further." msgstr "O trecho principal para @code{scheme-mode} é acionado digitando @code{package ...} seguido de @kbd{TAB}. Esse trecho também insere a string de acionamento @code{origin...}, que pode ser expandida ainda mais. O trecho @code{origin}, por sua vez, pode inserir outras strings acionadoras que terminam em @code{...}, que também podem ser expandidas." #. type: cindex -#: guix-git/doc/contributing.texi:298 +#: guix-git/doc/contributing.texi:328 #, no-wrap msgid "insert or update copyright" msgstr "" #. type: code{#1} -#: guix-git/doc/contributing.texi:299 +#: guix-git/doc/contributing.texi:329 #, no-wrap msgid "M-x guix-copyright" msgstr "" #. type: code{#1} -#: guix-git/doc/contributing.texi:300 +#: guix-git/doc/contributing.texi:330 #, no-wrap msgid "M-x copyright-update" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:304 +#: guix-git/doc/contributing.texi:334 msgid "We additionally provide insertion and automatic update of a copyright in @file{etc/copyright.el}. You may want to set your full name, mail, and load a file." msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:310 +#: guix-git/doc/contributing.texi:340 #, no-wrap msgid "" "(setq user-full-name \"Alice Doe\")\n" @@ -608,17 +651,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:313 +#: guix-git/doc/contributing.texi:343 msgid "To insert a copyright at the current line invoke @code{M-x guix-copyright}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:315 +#: guix-git/doc/contributing.texi:345 msgid "To update a copyright you need to specify a @code{copyright-names-regexp}." msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:319 +#: guix-git/doc/contributing.texi:349 #, no-wrap msgid "" "(setq copyright-names-regexp\n" @@ -626,284 +669,284 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:325 +#: guix-git/doc/contributing.texi:355 msgid "You can check if your copyright is up to date by evaluating @code{M-x copyright-update}. If you want to do it automatically after each buffer save then add @code{(add-hook 'after-save-hook 'copyright-update)} in Emacs." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:329 +#: guix-git/doc/contributing.texi:359 #, no-wrap msgid "packages, creating" msgstr "pacotes, criação" #. type: Plain text -#: guix-git/doc/contributing.texi:333 +#: guix-git/doc/contributing.texi:363 msgid "The GNU distribution is nascent and may well lack some of your favorite packages. This section describes how you can help make the distribution grow." msgstr "A distribuição do GNU é incipiente e pode muito bem não ter alguns dos seus pacotes favoritos. Esta seção descreve como você pode ajudar a fazer a distribuição crescer." #. type: Plain text -#: guix-git/doc/contributing.texi:341 +#: guix-git/doc/contributing.texi:371 msgid "Free software packages are usually distributed in the form of @dfn{source code tarballs}---typically @file{tar.gz} files that contain all the source files. Adding a package to the distribution means essentially two things: adding a @dfn{recipe} that describes how to build the package, including a list of other packages required to build it, and adding @dfn{package metadata} along with that recipe, such as a description and licensing information." msgstr "Pacotes de software livre geralmente são distribuídos na forma de @dfn{tarballs de código-fonte} -- geralmente arquivos @file{tar.gz} que contêm todos os arquivos fonte. Adicionar um pacote à distribuição significa essencialmente duas coisas: adicionar uma @dfn{receita} que descreve como criar o pacote, incluindo uma lista de outros pacotes necessários para compilá-lo e adicionar @dfn{metadados de pacote} junto com essa receita, como uma descrição e informações de licenciamento." #. type: Plain text -#: guix-git/doc/contributing.texi:350 +#: guix-git/doc/contributing.texi:380 msgid "In Guix all this information is embodied in @dfn{package definitions}. Package definitions provide a high-level view of the package. They are written using the syntax of the Scheme programming language; in fact, for each package we define a variable bound to the package definition, and export that variable from a module (@pxref{Package Modules}). However, in-depth Scheme knowledge is @emph{not} a prerequisite for creating packages. For more information on package definitions, @pxref{Defining Packages}." msgstr "No Guix, todas essas informações estão incorporadas em @dfn{configurações de pacote}. As definições de pacote fornecem uma visão de alto nível do pacote. Elas são escritas usando a sintaxe da linguagem de programação Scheme; de fato, para cada pacote, definimos uma variável vinculada à definição do pacote e exportamos essa variável de um módulo (@pxref{Módulos de pacote}). No entanto, o conhecimento profundo de Scheme @emph{não} é um pré-requisito para a criação de pacotes. Para mais informações sobre definições de pacotes, @pxref{Definindo pacotes}." #. type: Plain text -#: guix-git/doc/contributing.texi:356 +#: guix-git/doc/contributing.texi:386 msgid "Once a package definition is in place, stored in a file in the Guix source tree, it can be tested using the @command{guix build} command (@pxref{Invoking guix build}). For example, assuming the new package is called @code{gnew}, you may run this command from the Guix build tree (@pxref{Running Guix Before It Is Installed}):" msgstr "Quando uma definição de pacote está em vigor, armazenada em um arquivo na árvore de fontes do Guix, ela pode ser testada usando o comando @command{guix build} (@pxref{Invocando guix build}). Por exemplo, supondo que o novo pacote seja chamado @code{gnew}, você pode executar este comando na árvore de construção do Guix (@pxref{Executando guix antes dele ser instalado}):" #. type: example -#: guix-git/doc/contributing.texi:359 +#: guix-git/doc/contributing.texi:389 #, no-wrap msgid "./pre-inst-env guix build gnew --keep-failed\n" msgstr "./pre-inst-env guix build gnew --keep-failed\n" #. type: Plain text -#: guix-git/doc/contributing.texi:365 +#: guix-git/doc/contributing.texi:395 msgid "Using @code{--keep-failed} makes it easier to debug build failures since it provides access to the failed build tree. Another useful command-line option when debugging is @code{--log-file}, to access the build log." msgstr "O uso de @code{--keep-failed} facilita a depuração de falhas de compilação, pois fornece acesso à árvore de compilação com falha. Outra opção útil da linha de comando ao depurar é @code{--log-file}, para acessar o log de compilação." #. type: Plain text -#: guix-git/doc/contributing.texi:370 +#: guix-git/doc/contributing.texi:400 msgid "If the package is unknown to the @command{guix} command, it may be that the source file contains a syntax error, or lacks a @code{define-public} clause to export the package variable. To figure it out, you may load the module from Guile to get more information about the actual error:" msgstr "Se o pacote for desconhecido para o comando @command{guix}, pode ser que o arquivo fonte contenha um erro de sintaxe ou não tenha uma cláusula @code{define-public} para exportar a variável do pacote. Para descobrir isso, você pode carregar o módulo do Guile para obter mais informações sobre o erro real:" #. type: example -#: guix-git/doc/contributing.texi:373 +#: guix-git/doc/contributing.texi:403 #, no-wrap msgid "./pre-inst-env guile -c '(use-modules (gnu packages gnew))'\n" msgstr "./pre-inst-env guile -c '(use-modules (gnu packages gnew))'\n" #. type: Plain text -#: guix-git/doc/contributing.texi:380 +#: guix-git/doc/contributing.texi:410 msgid "Once your package builds correctly, please send us a patch (@pxref{Submitting Patches}). Well, if you need help, we will be happy to help you too. Once the patch is committed in the Guix repository, the new package automatically gets built on the supported platforms by @url{https://@value{SUBSTITUTE-SERVER-1}, our continuous integration system}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:381 +#: guix-git/doc/contributing.texi:411 #, no-wrap msgid "substituter" msgstr "substituidor" #. type: Plain text -#: guix-git/doc/contributing.texi:388 +#: guix-git/doc/contributing.texi:418 #, fuzzy #| msgid "Users can obtain the new package definition simply by running @command{guix pull} (@pxref{Invoking guix pull}). When @code{@value{SUBSTITUTE-SERVER}} is done building the package, installing the package automatically downloads binaries from there (@pxref{Substitutes}). The only place where human intervention is needed is to review and apply the patch." msgid "Users can obtain the new package definition simply by running @command{guix pull} (@pxref{Invoking guix pull}). When @code{@value{SUBSTITUTE-SERVER-1}} is done building the package, installing the package automatically downloads binaries from there (@pxref{Substitutes}). The only place where human intervention is needed is to review and apply the patch." msgstr "Os usuários podem obter a nova definição de pacote simplesmente executando @command{guix pull} (@pxref{Invocando guix pull}). Quando o @code{@value{SUBSTITUTE-SERVER}} terminar de compilar o pacote, a instalação do pacote fará o download automático dos binários a partir daí (@pxref{Substitutos}). O único lugar onde a intervenção humana é necessária é para revisar e aplicar o patch." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:404 -#: guix-git/doc/contributing.texi:405 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:434 +#: guix-git/doc/contributing.texi:435 #, no-wrap msgid "Software Freedom" msgstr "Liberdade de software" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "What may go into the distribution." msgstr "O que pode ir na distribuição." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:432 -#: guix-git/doc/contributing.texi:433 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:462 +#: guix-git/doc/contributing.texi:463 #, no-wrap msgid "Package Naming" msgstr "Nomeando um pacote" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "What's in a name?" msgstr "Que há em um nome?" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:465 -#: guix-git/doc/contributing.texi:466 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:495 +#: guix-git/doc/contributing.texi:496 #, no-wrap msgid "Version Numbers" msgstr "Números de versão" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "When the name is not enough." msgstr "Quando o nome não é suficiente." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:572 -#: guix-git/doc/contributing.texi:573 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:602 +#: guix-git/doc/contributing.texi:603 #, no-wrap msgid "Synopses and Descriptions" msgstr "Sinopses e descrições" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Helping users find the right package." msgstr "Ajudando usuários a localizar o pacote certo." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:651 -#: guix-git/doc/contributing.texi:652 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:681 +#: guix-git/doc/contributing.texi:682 #, no-wrap msgid "Snippets versus Phases" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Whether to use a snippet, or a build phase." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:666 -#: guix-git/doc/contributing.texi:667 guix-git/doc/guix.texi:1995 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:696 +#: guix-git/doc/contributing.texi:697 guix-git/doc/guix.texi:2012 #, no-wrap msgid "Emacs Packages" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Your Elisp fix." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:706 -#: guix-git/doc/contributing.texi:707 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:736 +#: guix-git/doc/contributing.texi:737 #, no-wrap msgid "Python Modules" msgstr "Módulos Python" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "A touch of British comedy." msgstr "Um toque de comédia britânica." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:782 -#: guix-git/doc/contributing.texi:783 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:812 +#: guix-git/doc/contributing.texi:813 #, no-wrap msgid "Perl Modules" msgstr "Módulos Perl" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Little pearls." msgstr "Pequenas pérolas." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:798 -#: guix-git/doc/contributing.texi:799 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:828 +#: guix-git/doc/contributing.texi:829 #, no-wrap msgid "Java Packages" msgstr "Pacotes Java" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Coffee break." msgstr "Parada para o café." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:818 -#: guix-git/doc/contributing.texi:819 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:848 +#: guix-git/doc/contributing.texi:849 #, no-wrap msgid "Rust Crates" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Beware of oxidation." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:852 -#: guix-git/doc/contributing.texi:853 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:882 +#: guix-git/doc/contributing.texi:883 #, no-wrap msgid "Fonts" msgstr "Fontes" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Fond of fonts." msgstr "Vício em fontes." #. type: cindex -#: guix-git/doc/contributing.texi:408 +#: guix-git/doc/contributing.texi:438 #, no-wrap msgid "free software" msgstr "software livre" #. type: Plain text -#: guix-git/doc/contributing.texi:416 +#: guix-git/doc/contributing.texi:446 msgid "The GNU operating system has been developed so that users can have freedom in their computing. GNU is @dfn{free software}, meaning that users have the @url{https://www.gnu.org/philosophy/free-sw.html,four essential freedoms}: to run the program, to study and change the program in source code form, to redistribute exact copies, and to distribute modified versions. Packages found in the GNU distribution provide only software that conveys these four freedoms." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:422 +#: guix-git/doc/contributing.texi:452 msgid "In addition, the GNU distribution follow the @url{https://www.gnu.org/distros/free-system-distribution-guidelines.html,free software distribution guidelines}. Among other things, these guidelines reject non-free firmware, recommendations of non-free software, and discuss ways to deal with trademarks and patents." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:430 +#: guix-git/doc/contributing.texi:460 msgid "Some otherwise free upstream package sources contain a small and optional subset that violates the above guidelines, for instance because this subset is itself non-free code. When that happens, the offending items are removed with appropriate patches or code snippets in the @code{origin} form of the package (@pxref{Defining Packages}). This way, @code{guix build --source} returns the ``freed'' source rather than the unmodified upstream source." msgstr "Algumas fontes de pacotes upstream livres de outra forma contêm um subconjunto pequeno e opcional que viola as diretrizes acima, por exemplo, porque esse subconjunto é ele próprio um código não livre. Quando isso acontece, os itens incorretos são removidos com patches ou trechos de código apropriados no formato @code{origin} do pacote (@pxref{Definindo pacotes}). Dessa forma, o @code{guix build --source} retorna a fonte ``lançada'' em vez da fonte upstream não modificada." #. type: cindex -#: guix-git/doc/contributing.texi:435 +#: guix-git/doc/contributing.texi:465 #, no-wrap msgid "package name" msgstr "nome de pacote" #. type: Plain text -#: guix-git/doc/contributing.texi:443 +#: guix-git/doc/contributing.texi:473 #, fuzzy msgid "A package actually has two names associated with it. First, there is the name of the @emph{Scheme variable}, the one following @code{define-public}. By this name, the package can be made known in the Scheme code, for instance as input to another package. Second, there is the string in the @code{name} field of a package definition. This name is used by package management commands such as @command{guix package} and @command{guix build}." msgstr "Na verdade, um pacote possui dois nomes associados: Primeiro, existe o nome da @emph{variável Scheme}, a que vem após @code{define-public}. Com esse nome, o pacote pode ser conhecido no código do esquema, por exemplo, como entrada para outro pacote. Segundo, existe a string no campo @code{name} de uma definição de pacote. Esse nome é usado por comandos de gerenciamento de pacotes como @command{guix package} e @command{guix build}." #. type: Plain text -#: guix-git/doc/contributing.texi:448 +#: guix-git/doc/contributing.texi:478 msgid "Both are usually the same and correspond to the lowercase conversion of the project name chosen upstream, with underscores replaced with hyphens. For instance, GNUnet is available as @code{gnunet}, and SDL_net as @code{sdl-net}." msgstr "Ambos são geralmente iguais e correspondem à conversão em minúscula do nome do projeto escolhido a montante, com os sublinhados substituídos por hífenes. Por exemplo, o GNUnet está disponível como @code{gnunet} e SDL_net como @code{sdl-net}." #. type: Plain text -#: guix-git/doc/contributing.texi:456 +#: guix-git/doc/contributing.texi:486 msgid "A noteworthy exception to this rule is when the project name is only a single character, or if an older maintained project with the same name already exists---regardless of whether it has already been packaged for Guix. Use common sense to make such names unambiguous and meaningful. For example, Guix's package for the shell called ``s'' upstream is @code{s-shell} and @emph{not} @code{s}. Feel free to ask your fellow hackers for inspiration." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:461 +#: guix-git/doc/contributing.texi:491 msgid "We do not add @code{lib} prefixes for library packages, unless these are already part of the official project name. But @pxref{Python Modules} and @ref{Perl Modules} for special rules concerning modules for the Python and Perl languages." msgstr "Não adicionamos prefixos @code{lib} para pacotes de bibliotecas, a menos que eles já façam parte do nome oficial do projeto. Mas @pxref{Módulos Python} e @ref{Módulos Perl} para regras especiais relativas a módulos para as linguagens Python e Perl." #. type: Plain text -#: guix-git/doc/contributing.texi:463 +#: guix-git/doc/contributing.texi:493 msgid "Font package names are handled differently, @pxref{Fonts}." msgstr "Nomes de pacote de fontes são lidados de forma diferente. @xref{Fontes}." #. type: cindex -#: guix-git/doc/contributing.texi:468 +#: guix-git/doc/contributing.texi:498 #, no-wrap msgid "package version" msgstr "versão de pacote" #. type: Plain text -#: guix-git/doc/contributing.texi:477 +#: guix-git/doc/contributing.texi:507 msgid "We usually package only the latest version of a given free software project. But sometimes, for instance for incompatible library versions, two (or more) versions of the same package are needed. These require different Scheme variable names. We use the name as defined in @ref{Package Naming} for the most recent version; previous versions use the same name, suffixed by @code{-} and the smallest prefix of the version number that may distinguish the two versions." msgstr "Geralmente, empacotamos apenas a versão mais recente de um determinado projeto de software livre. Mas, às vezes, por exemplo, para versões incompatíveis de bibliotecas, são necessárias duas (ou mais) versões do mesmo pacote. Isso requer nomes de variáveis Scheme diferentes. Usamos o nome como definido em @ref{Nomeando um pacote} para a versão mais recente; as versões anteriores usam o mesmo nome, com o sufixo @code{-} e o menor prefixo do número da versão que pode distinguir as duas versões." #. type: Plain text -#: guix-git/doc/contributing.texi:480 +#: guix-git/doc/contributing.texi:510 msgid "The name inside the package definition is the same for all versions of a package and does not contain any version number." msgstr "O nome dentro da definição do pacote é o mesmo para todas as versões de um pacote e não contém nenhum número de versão." #. type: Plain text -#: guix-git/doc/contributing.texi:482 +#: guix-git/doc/contributing.texi:512 msgid "For instance, the versions 2.24.20 and 3.9.12 of GTK+ may be packaged as follows:" msgstr "Por exemplo, as versões 2.24.20 e 3.9.12 do GTK podem ser empacotados da seguinte forma:" #. type: lisp -#: guix-git/doc/contributing.texi:494 +#: guix-git/doc/contributing.texi:524 #, no-wrap msgid "" "(define-public gtk+\n" @@ -929,12 +972,12 @@ msgstr "" " ...))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:496 +#: guix-git/doc/contributing.texi:526 msgid "If we also wanted GTK+ 3.8.2, this would be packaged as" msgstr "Se também quiséssemos GTK 3.8.2, este seria empacotado como" #. type: lisp -#: guix-git/doc/contributing.texi:502 +#: guix-git/doc/contributing.texi:532 #, no-wrap msgid "" "(define-public gtk+-3.8\n" @@ -950,23 +993,23 @@ msgstr "" " ...))\n" #. type: cindex -#: guix-git/doc/contributing.texi:506 +#: guix-git/doc/contributing.texi:536 #, no-wrap msgid "version number, for VCS snapshots" msgstr "número de versão, para snapshots de VCS" #. type: Plain text -#: guix-git/doc/contributing.texi:512 +#: guix-git/doc/contributing.texi:542 msgid "Occasionally, we package snapshots of upstream's version control system (VCS) instead of formal releases. This should remain exceptional, because it is up to upstream developers to clarify what the stable release is. Yet, it is sometimes necessary. So, what should we put in the @code{version} field?" msgstr "Ocasionalmente, empacotamos snapshots do sistema de controle de versão (VCS) do upstream em vez de lançamentos formais. Isso deve permanecer excepcional, porque cabe aos desenvolvedores upstream esclarecer qual é a versão estável. No entanto, às vezes é necessário. Então, o que devemos colocar no campo @code{version}?" #. type: Plain text -#: guix-git/doc/contributing.texi:520 +#: guix-git/doc/contributing.texi:550 msgid "Clearly, we need to make the commit identifier of the VCS snapshot visible in the version string, but we also need to make sure that the version string is monotonically increasing so that @command{guix package --upgrade} can determine which version is newer. Since commit identifiers, notably with Git, are not monotonically increasing, we add a revision number that we increase each time we upgrade to a newer snapshot. The resulting version string looks like this:" msgstr "Claramente, precisamos tornar o identificador de commit do snapshot VCS visível na string de versão, mas também precisamos garantir que a string de versão esteja aumentando monotonicamente para que o @command{pacote guix --upgrade} possa determinar qual versão é mais recente. Como os identificadores de commit, principalmente com o Git, não estão aumentando monotonicamente, adicionamos um número de revisão que aumentamos cada vez que atualizamos para um snapshot mais recente. A sequência da versão resultante é assim:" #. type: example -#: guix-git/doc/contributing.texi:529 +#: guix-git/doc/contributing.texi:559 #, no-wrap msgid "" "2.0.11-3.cabba9e\n" @@ -986,12 +1029,12 @@ msgstr "" "versão mais recente do upstream\n" #. type: Plain text -#: guix-git/doc/contributing.texi:539 +#: guix-git/doc/contributing.texi:569 msgid "It is a good idea to strip commit identifiers in the @code{version} field to, say, 7 digits. It avoids an aesthetic annoyance (assuming aesthetics have a role to play here) as well as problems related to OS limits such as the maximum shebang length (127 bytes for the Linux kernel). There are helper functions for doing this for packages using @code{git-fetch} or @code{hg-fetch} (see below). It is best to use the full commit identifiers in @code{origin}s, though, to avoid ambiguities. A typical package definition may look like this:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:556 +#: guix-git/doc/contributing.texi:586 #, no-wrap msgid "" "(define my-package\n" @@ -1025,18 +1068,18 @@ msgstr "" " )))\n" #. type: deffn -#: guix-git/doc/contributing.texi:558 +#: guix-git/doc/contributing.texi:588 #, no-wrap msgid "{Scheme Procedure} git-version @var{VERSION} @var{REVISION} @var{COMMIT}" msgstr "" #. type: deffn -#: guix-git/doc/contributing.texi:560 +#: guix-git/doc/contributing.texi:590 msgid "Return the version string for packages using @code{git-fetch}." msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:564 +#: guix-git/doc/contributing.texi:594 #, no-wrap msgid "" "(git-version \"0.2.3\" \"0\" \"93818c936ee7e2f1ba1b315578bde363a7d43d05\")\n" @@ -1044,71 +1087,71 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/contributing.texi:567 +#: guix-git/doc/contributing.texi:597 #, no-wrap msgid "{Scheme Procedure} hg-version @var{VERSION} @var{REVISION} @var{CHANGESET}" msgstr "" #. type: deffn -#: guix-git/doc/contributing.texi:570 +#: guix-git/doc/contributing.texi:600 msgid "Return the version string for packages using @code{hg-fetch}. It works in the same way as @code{git-version}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:575 +#: guix-git/doc/contributing.texi:605 #, no-wrap msgid "package description" msgstr "descrição do pacote" #. type: cindex -#: guix-git/doc/contributing.texi:576 +#: guix-git/doc/contributing.texi:606 #, no-wrap msgid "package synopsis" msgstr "sinopse do pacote" #. type: Plain text -#: guix-git/doc/contributing.texi:583 +#: guix-git/doc/contributing.texi:613 msgid "As we have seen before, each package in GNU@tie{}Guix includes a synopsis and a description (@pxref{Defining Packages}). Synopses and descriptions are important: They are what @command{guix package --search} searches, and a crucial piece of information to help users determine whether a given package suits their needs. Consequently, packagers should pay attention to what goes into them." msgstr "Como vimos anteriormente, cada pacote no GNU@tie{}Guix inclui uma sinopse e uma descrição (@pxref{Definindo pacotes}). Sinopses e descrições são importantes: são o que o @command{guix package --search} pesquisa e uma informação crucial para ajudar os usuários a determinar se um determinado pacote atende às suas necessidades. Consequentemente, os empacotadores devem prestar atenção ao que entra neles." #. type: Plain text -#: guix-git/doc/contributing.texi:591 +#: guix-git/doc/contributing.texi:621 msgid "Synopses must start with a capital letter and must not end with a period. They must not start with ``a'' or ``the'', which usually does not bring anything; for instance, prefer ``File-frobbing tool'' over ``A tool that frobs files''. The synopsis should say what the package is---e.g., ``Core GNU utilities (file, text, shell)''---or what it is used for---e.g., the synopsis for GNU@tie{}grep is ``Print lines matching a pattern''." msgstr "As sinopses devem começar com uma letra maiúscula e não devem terminar com um ponto. Elas não devem começar com ``a'' ou ``the'', que geralmente não traz nada; por exemplo, prefira ``Tool-frobbing tool'' em vez de ``A tool that frobs files''. A sinopse deve dizer o que é o pacote -- por exemplo, ``Core GNU utilities (file, text, shell)'' -- ou para que é usado -- por exemplo, a sinopse do GNU@tie{}grep é ``Print lines matching a pattern''." #. type: Plain text -#: guix-git/doc/contributing.texi:601 +#: guix-git/doc/contributing.texi:631 msgid "Keep in mind that the synopsis must be meaningful for a very wide audience. For example, ``Manipulate alignments in the SAM format'' might make sense for a seasoned bioinformatics researcher, but might be fairly unhelpful or even misleading to a non-specialized audience. It is a good idea to come up with a synopsis that gives an idea of the application domain of the package. In this example, this might give something like ``Manipulate nucleotide sequence alignments'', which hopefully gives the user a better idea of whether this is what they are looking for." msgstr "Lembre-se de que a sinopse deve ser significativa para um público muito amplo. Por exemplo, ``Manipulate alignments in the SAM format'' pode fazer sentido para um pesquisador experiente em bioinformática, mas pode ser bastante inútil ou até enganoso para um público não especializado. É uma boa ideia apresentar uma sinopse que dê uma ideia do domínio do aplicativo do pacote. Neste exemplo, isso pode fornecer algo como ``Manipulate nucleotide sequence alignments'', o que, esperançosamente, dá ao usuário uma melhor ideia de se é isso que eles estão procurando." #. type: Plain text -#: guix-git/doc/contributing.texi:609 +#: guix-git/doc/contributing.texi:639 msgid "Descriptions should take between five and ten lines. Use full sentences, and avoid using acronyms without first introducing them. Please avoid marketing phrases such as ``world-leading'', ``industrial-strength'', and ``next-generation'', and avoid superlatives like ``the most advanced''---they are not helpful to users looking for a package and may even sound suspicious. Instead, try to be factual, mentioning use cases and features." msgstr "Descrições devem levar entre cinco e dez linhas. Use sentenças completas e evite usar acrônimos sem primeiro apresentá-los. Por favor, evite frases de marketing como ``inovação mundial'', ``força industrial'' e ``próxima geração'', e evite superlativos como ``a mais avançada'' -- eles não ajudam o usuário procurando por um pacote e podem atém parece suspeito. Em vez idsso, tente se ater aos fatos, mencionando casos de uso e recursos." #. type: cindex -#: guix-git/doc/contributing.texi:610 +#: guix-git/doc/contributing.texi:640 #, no-wrap msgid "Texinfo markup, in package descriptions" msgstr "Marcação Texinfo, em descrições de pacote" #. type: Plain text -#: guix-git/doc/contributing.texi:619 +#: guix-git/doc/contributing.texi:649 msgid "Descriptions can include Texinfo markup, which is useful to introduce ornaments such as @code{@@code} or @code{@@dfn}, bullet lists, or hyperlinks (@pxref{Overview,,, texinfo, GNU Texinfo}). However you should be careful when using some characters for example @samp{@@} and curly braces which are the basic special characters in Texinfo (@pxref{Special Characters,,, texinfo, GNU Texinfo}). User interfaces such as @command{guix package --show} take care of rendering it appropriately." msgstr "Descrições podem incluir marcação Texinfo, a qual é útil para apresentar adornos como @code{@@code} ou @code{@@dfn}, listas não numeradas ou hiperlinks (@pxref{Overview,,, texinfo, GNU Texinfo}). Porém, você deve ter cuidado ao usar alguns caracteres, por exemplo @samp{@@} e chaves, que são caracteres especiais básicos no Texinfo (@pxref{Special Characters,,, texinfo, GNU Texinfo}). Interfaces de usuário, como @command{guix package --show}, cuidam de renderizá-las adequadamente." #. type: Plain text -#: guix-git/doc/contributing.texi:625 +#: guix-git/doc/contributing.texi:655 msgid "Synopses and descriptions are translated by volunteers @uref{https://translate.fedoraproject.org/projects/guix/packages, at Weblate} so that as many users as possible can read them in their native language. User interfaces search them and display them in the language specified by the current locale." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:630 +#: guix-git/doc/contributing.texi:660 msgid "To allow @command{xgettext} to extract them as translatable strings, synopses and descriptions @emph{must be literal strings}. This means that you cannot use @code{string-append} or @code{format} to construct these strings:" msgstr "Para permitir que @command{xgettext} extrai-as com strings traduzíveis, as sinopses e descrições @emph{devem ser strings literais}. Isso significa que você não pode usar @code{string-append} ou @code{format} para construir essas strings:" #. type: lisp -#: guix-git/doc/contributing.texi:636 +#: guix-git/doc/contributing.texi:666 #, no-wrap msgid "" "(package\n" @@ -1122,12 +1165,12 @@ msgstr "" " (description (string-append \"Isso \" \"*não*\" \" é traduzível.\")))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:644 +#: guix-git/doc/contributing.texi:674 msgid "Translation is a lot of work so, as a packager, please pay even more attention to your synopses and descriptions as every change may entail additional work for translators. In order to help them, it is possible to make recommendations or instructions visible to them by inserting special comments like this (@pxref{xgettext Invocation,,, gettext, GNU Gettext}):" msgstr "Tradução é muito trabalhoso, então, como empacotador, por favor, tenha ainda mais atenção às suas sinopses e descrições, pois cada alteração pode implicar em trabalho adicional para tradutores. Para ajudá-loas, é possível tornar recomendações ou instruções visíveis inserindo comentários especiais como esse (@pxref{xgettext Invocation,,, gettext, GNU Gettext}):" #. type: lisp -#: guix-git/doc/contributing.texi:649 +#: guix-git/doc/contributing.texi:679 #, no-wrap msgid "" ";; TRANSLATORS: \"X11 resize-and-rotate\" should not be translated.\n" @@ -1139,442 +1182,446 @@ msgstr "" "for the X11 resize-and-rotate (RandR) extension. @dots{}\")\n" #. type: cindex -#: guix-git/doc/contributing.texi:654 +#: guix-git/doc/contributing.texi:684 #, no-wrap msgid "snippets, when to use" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:665 +#: guix-git/doc/contributing.texi:695 msgid "The boundary between using an origin snippet versus a build phase to modify the sources of a package can be elusive. Origin snippets are typically used to remove unwanted files such as bundled libraries, nonfree sources, or to apply simple substitutions. The source derived from an origin should produce a source that can be used to build the package on any system that the upstream package supports (i.e., act as the corresponding source). In particular, origin snippets must not embed store items in the sources; such patching should rather be done using build phases. Refer to the @code{origin} record documentation for more information (@pxref{origin Reference})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:669 +#: guix-git/doc/contributing.texi:699 #, no-wrap msgid "emacs, packaging" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:670 +#: guix-git/doc/contributing.texi:700 #, no-wrap msgid "elisp, packaging" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:682 +#: guix-git/doc/contributing.texi:712 msgid "Emacs packages should preferably use the Emacs build system (@pxref{emacs-build-system}), for uniformity and the benefits provided by its build phases, such as the auto-generation of the autoloads file and the byte compilation of the sources. Because there is no standardized way to run a test suite for Emacs packages, tests are disabled by default. When a test suite is available, it should be enabled by setting the @code{#:tests?} argument to @code{#true}. By default, the command to run the test is @command{make check}, but any command can be specified via the @code{#:test-command} argument. The @code{#:test-command} argument expects a list containing a command and its arguments, to be invoked during the @code{check} phase." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:687 +#: guix-git/doc/contributing.texi:717 msgid "The Elisp dependencies of Emacs packages are typically provided as @code{propagated-inputs} when required at run time. As for other packages, build or test dependencies should be specified as @code{native-inputs}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:696 +#: guix-git/doc/contributing.texi:726 msgid "Emacs packages sometimes depend on resources directories that should be installed along the Elisp files. The @code{#:include} argument can be used for that purpose, by specifying a list of regexps to match. The best practice when using the @code{#:include} argument is to extend rather than override its default value (accessible via the @code{%default-include} variable). As an example, a yasnippet extension package typically include a @file{snippets} directory, which could be copied to the installation directory using:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:699 +#: guix-git/doc/contributing.texi:729 #, no-wrap msgid "#:include (cons \"^snippets/\" %default-include)\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:705 +#: guix-git/doc/contributing.texi:735 msgid "When encountering problems, it is wise to check for the presence of the @code{Package-Requires} extension header in the package main source file, and whether any dependencies and their versions listed therein are satisfied." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:709 +#: guix-git/doc/contributing.texi:739 #, no-wrap msgid "python" msgstr "python" #. type: Plain text -#: guix-git/doc/contributing.texi:715 +#: guix-git/doc/contributing.texi:745 msgid "We currently package Python 2 and Python 3, under the Scheme variable names @code{python-2} and @code{python} as explained in @ref{Version Numbers}. To avoid confusion and naming clashes with other programming languages, it seems desirable that the name of a package for a Python module contains the word @code{python}." msgstr "Atualmente empacotamos Python 2 e Python 3, sob os nomes de variável Scheme @code{python-2} e @code{python} conforme explicado em @ref{Números de versão}. Para evitar confusão e conflitos de nomes com outras linguagens de programação, parece desejável que o nome de um pacote para um módulo Python contenha a palavra @code{python}." #. type: Plain text -#: guix-git/doc/contributing.texi:722 +#: guix-git/doc/contributing.texi:752 msgid "Some modules are compatible with only one version of Python, others with both. If the package Foo is compiled with Python 3, we name it @code{python-foo}. If it is compiled with Python 2, we name it @code{python2-foo}. Packages should be added when they are necessary; we don't add Python 2 variants of the package unless we are going to use them." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:728 +#: guix-git/doc/contributing.texi:758 msgid "If a project already contains the word @code{python}, we drop this; for instance, the module python-dateutil is packaged under the names @code{python-dateutil} and @code{python2-dateutil}. If the project name starts with @code{py} (e.g.@: @code{pytz}), we keep it and prefix it as described above." msgstr "Se um projeto já contém a palavra @code{python}, nós a descartamos; por exemplo, o módulo python-dateutil é empacotado sob os nomes @code{python-dateutil} e @code{python2-dateutil}. Se o nome do projeto começa com @code{py} (p.ex., @code{pytz}), nós o mantemos e o prefixamos conforme descrito acima." #. type: subsubsection -#: guix-git/doc/contributing.texi:729 +#: guix-git/doc/contributing.texi:759 #, no-wrap msgid "Specifying Dependencies" msgstr "Especificando dependências" #. type: cindex -#: guix-git/doc/contributing.texi:730 +#: guix-git/doc/contributing.texi:760 #, no-wrap msgid "inputs, for Python packages" msgstr "entradas, para pacotes Python" #. type: Plain text -#: guix-git/doc/contributing.texi:735 +#: guix-git/doc/contributing.texi:765 msgid "Dependency information for Python packages is usually available in the package source tree, with varying degrees of accuracy: in the @file{setup.py} file, in @file{requirements.txt}, or in @file{tox.ini}." msgstr "Informações de dependências para pacotes Python estão geralmente disponíveis na árvore de fonte do pacote, com vários graus de precisão: no arquivo @file{setup.py}, no @file{requirements.txt} ou no @file{tox.ini}." #. type: Plain text -#: guix-git/doc/contributing.texi:741 +#: guix-git/doc/contributing.texi:771 msgid "Your mission, when writing a recipe for a Python package, is to map these dependencies to the appropriate type of ``input'' (@pxref{package Reference, inputs}). Although the @code{pypi} importer normally does a good job (@pxref{Invoking guix import}), you may want to check the following check list to determine which dependency goes where." msgstr "Sua missão, ao escrever uma receita para um pacote Python, é mapear essas dependências para o tipo apropriado de ``entrada'' (@pxref{Referência do package, inputs}). Apesar do importador do @code{pypi} normalmente fazer um bom trabalho (@pxref{Invocando guix import}), você pode se interessar em verificar a lista de verificação a seguir para determinar qual dependência vai onde." #. type: itemize -#: guix-git/doc/contributing.texi:749 +#: guix-git/doc/contributing.texi:779 msgid "We currently package Python 2 with @code{setuptools} and @code{pip} installed like Python 3.4 has per default. Thus you don't need to specify either of these as an input. @command{guix lint} will warn you if you do." msgstr "Atualmente empacotamos Python 2 com @code{setuptools} e @code{pip} instalado como Python 3.4 tem por padrão. Então, você não precisa especificar nenhum deles como entrada. @command{guix lint} vai avisar você se precisar." #. type: itemize -#: guix-git/doc/contributing.texi:755 +#: guix-git/doc/contributing.texi:785 msgid "Python dependencies required at run time go into @code{propagated-inputs}. They are typically defined with the @code{install_requires} keyword in @file{setup.py}, or in the @file{requirements.txt} file." msgstr "Dependências de Python necessárias em tempo de execução vão em @code{propagated-inputs}. Elas geralmente são definidas com a palavra-chave @code{install_requires} em @file{setup.py} ou no arquivo @file{requirements.txt}." #. type: itemize -#: guix-git/doc/contributing.texi:763 +#: guix-git/doc/contributing.texi:793 msgid "Python packages required only at build time---e.g., those listed with the @code{setup_requires} keyword in @file{setup.py}---or only for testing---e.g., those in @code{tests_require}---go into @code{native-inputs}. The rationale is that (1) they do not need to be propagated because they are not needed at run time, and (2) in a cross-compilation context, it's the ``native'' input that we'd want." msgstr "Pacotes Python necessários apenas em tempo de compilação -- p.ex., aqueles listados com a palavra-chave @code{setup_requires} em @file{setup.py} -- ou apenas para teste -- p.ex., aqueles em @code{tests_require} -- vão em @code{native-inputs}. O motivo é que (1) eles não precisam ser propagados porque não são necessários em tempo de execução e (2) em um contexto de compilação cruzada, é a entrada ``nativa'' que nós queremos." #. type: itemize -#: guix-git/doc/contributing.texi:767 +#: guix-git/doc/contributing.texi:797 msgid "Examples are the @code{pytest}, @code{mock}, and @code{nose} test frameworks. Of course if any of these packages is also required at run-time, it needs to go to @code{propagated-inputs}." msgstr "Exemplos são os frameworks de teste @code{pytest}, @code{mock} e @code{nose}. É claro, se qualquer um desses pacotes também for necessário em tempo de compilação, ele precisa ir para @code{propagated-inputs}." #. type: itemize -#: guix-git/doc/contributing.texi:772 +#: guix-git/doc/contributing.texi:802 msgid "Anything that does not fall in the previous categories goes to @code{inputs}, for example programs or C libraries required for building Python packages containing C extensions." msgstr "Qualquer coisa que não encaixar nas categorias anteriores vai para @code{inputs}. Por exemplo, programas ou bibliotecas C necessárias para compilar pacotes Python contendo extensões C." #. type: itemize -#: guix-git/doc/contributing.texi:778 +#: guix-git/doc/contributing.texi:808 msgid "If a Python package has optional dependencies (@code{extras_require}), it is up to you to decide whether to add them or not, based on their usefulness/overhead ratio (@pxref{Submitting Patches, @command{guix size}})." msgstr "Se um pacote Python tem dependências opcionais (@code{extras_require}), fica a seu critério adicioná-las ou não, com base na sua proporção de utilidade/sobrecarga (@pxref{Enviando patches, @command{guix size}})." #. type: cindex -#: guix-git/doc/contributing.texi:785 +#: guix-git/doc/contributing.texi:815 #, no-wrap msgid "perl" msgstr "perl" #. type: Plain text -#: guix-git/doc/contributing.texi:796 +#: guix-git/doc/contributing.texi:826 msgid "Perl programs standing for themselves are named as any other package, using the lowercase upstream name. For Perl packages containing a single class, we use the lowercase class name, replace all occurrences of @code{::} by dashes and prepend the prefix @code{perl-}. So the class @code{XML::Parser} becomes @code{perl-xml-parser}. Modules containing several classes keep their lowercase upstream name and are also prepended by @code{perl-}. Such modules tend to have the word @code{perl} somewhere in their name, which gets dropped in favor of the prefix. For instance, @code{libwww-perl} becomes @code{perl-libwww}." msgstr "Os programas Perl próprios são nomeados como qualquer outro pacote, usando o nome upstream em letras minúsculas. Para pacotes Perl que contêm uma única classe, usamos o nome da classe em letras minúsculas, substituímos todas as ocorrências de @code{::} por traços e precede o prefixo @code{perl-}. Portanto, a classe @code{XML::Parser} se torna @code{perl-xml-parser}. Módulos contendo várias classes mantêm seu nome upstream em minúsculas e também são precedidos por @code{perl-}. Esses módulos tendem a ter a palavra @code{perl} em algum lugar do nome, que é descartada em favor do prefixo. Por exemplo, @code{libwww-perl} se torna @code{perl-libwww}." #. type: cindex -#: guix-git/doc/contributing.texi:801 +#: guix-git/doc/contributing.texi:831 #, no-wrap msgid "java" msgstr "java" #. type: Plain text -#: guix-git/doc/contributing.texi:804 +#: guix-git/doc/contributing.texi:834 msgid "Java programs standing for themselves are named as any other package, using the lowercase upstream name." msgstr "Os programas Java próprios são nomeados como qualquer outro pacote, usando o nome do upstream em letras minúsculas." #. type: Plain text -#: guix-git/doc/contributing.texi:810 +#: guix-git/doc/contributing.texi:840 msgid "To avoid confusion and naming clashes with other programming languages, it is desirable that the name of a package for a Java package is prefixed with @code{java-}. If a project already contains the word @code{java}, we drop this; for instance, the package @code{ngsjava} is packaged under the name @code{java-ngs}." msgstr "Para evitar confusão e conflitos de nomes com outras linguagens de programação, é desejável que o nome de um pacote para um pacote Java seja prefixado com @code{java-}. Se um projeto já contém a palavra @code{java}, descartamos isso; por exemplo, o pacote @code{ngsjava} é empacotado com o nome @code{java-ngs}." #. type: Plain text -#: guix-git/doc/contributing.texi:816 +#: guix-git/doc/contributing.texi:846 msgid "For Java packages containing a single class or a small class hierarchy, we use the lowercase class name, replace all occurrences of @code{.} by dashes and prepend the prefix @code{java-}. So the class @code{apache.commons.cli} becomes package @code{java-apache-commons-cli}." msgstr "Para pacotes Java que contêm uma única classe ou uma pequena hierarquia de classes, usamos o nome da classe em letras minúsculas, substitua todas as ocorrências de @code{.} por traços e acrescente o prefixo @code{java-}. Assim, a classe @code{apache.commons.cli} se torna o pacote @code{java-apache-commons-cli}." #. type: cindex -#: guix-git/doc/contributing.texi:821 +#: guix-git/doc/contributing.texi:851 #, no-wrap msgid "rust" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:824 +#: guix-git/doc/contributing.texi:854 msgid "Rust programs standing for themselves are named as any other package, using the lowercase upstream name." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:828 +#: guix-git/doc/contributing.texi:858 msgid "To prevent namespace collisions we prefix all other Rust packages with the @code{rust-} prefix. The name should be changed to lowercase as appropriate and dashes should remain in place." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:834 +#: guix-git/doc/contributing.texi:864 msgid "In the rust ecosystem it is common for multiple incompatible versions of a package to be used at any given time, so all package definitions should have a versioned suffix. The versioned suffix is the left-most non-zero digit (and any leading zeros, of course). This follows the ``caret'' version scheme intended by Cargo. Examples@: @code{rust-clap-2}, @code{rust-rand-0.6}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:844 +#: guix-git/doc/contributing.texi:874 msgid "Because of the difficulty in reusing rust packages as pre-compiled inputs for other packages the Cargo build system (@pxref{Build Systems, @code{cargo-build-system}}) presents the @code{#:cargo-inputs} and @code{cargo-development-inputs} keywords as build system arguments. It would be helpful to think of these as similar to @code{propagated-inputs} and @code{native-inputs}. Rust @code{dependencies} and @code{build-dependencies} should go in @code{#:cargo-inputs}, and @code{dev-dependencies} should go in @code{#:cargo-development-inputs}. If a Rust package links to other libraries then the standard placement in @code{inputs} and the like should be used." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:850 +#: guix-git/doc/contributing.texi:880 msgid "Care should be taken to ensure the correct version of dependencies are used; to this end we try to refrain from skipping the tests or using @code{#:skip-build?} when possible. Of course this is not always possible, as the package may be developed for a different Operating System, depend on features from the Nightly Rust compiler, or the test suite may have atrophied since it was released." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:855 guix-git/doc/guix.texi:1930 +#: guix-git/doc/contributing.texi:885 guix-git/doc/guix.texi:1947 #, no-wrap msgid "fonts" msgstr "fontes" #. type: Plain text -#: guix-git/doc/contributing.texi:861 +#: guix-git/doc/contributing.texi:891 msgid "For fonts that are in general not installed by a user for typesetting purposes, or that are distributed as part of a larger software package, we rely on the general packaging rules for software; for instance, this applies to the fonts delivered as part of the X.Org system or fonts that are part of TeX Live." msgstr "Para fontes que geralmente não são instaladas por um usuário para fins de digitação ou que são distribuídas como parte de um pacote de software maior, contamos com as regras gerais de empacotamento de software; por exemplo, isso se aplica às fontes entregues como parte do sistema X.Org ou às fontes que fazem parte do TeX Live." #. type: Plain text -#: guix-git/doc/contributing.texi:865 +#: guix-git/doc/contributing.texi:895 msgid "To make it easier for a user to search for fonts, names for other packages containing only fonts are constructed as follows, independently of the upstream package name." msgstr "Para facilitar a busca de fontes por um usuário, os nomes de outros pacotes contendo apenas fontes são compilados da seguinte maneira, independentemente do nome do pacote upstream." #. type: Plain text -#: guix-git/doc/contributing.texi:873 +#: guix-git/doc/contributing.texi:903 msgid "The name of a package containing only one font family starts with @code{font-}; it is followed by the foundry name and a dash @code{-} if the foundry is known, and the font family name, in which spaces are replaced by dashes (and as usual, all upper case letters are transformed to lower case). For example, the Gentium font family by SIL is packaged under the name @code{font-sil-gentium}." msgstr "O nome de um pacote que contém apenas uma família de fontes começa com @code{font-}; é seguido pelo nome da fundição e um traço @code{-} se a fundição for conhecida e o nome da família da fonte, em que os espaços são substituídos por hífenes (e, como sempre, todas as letras maiúsculas são transformadas em minúsculas). Por exemplo, a família de fontes Gentium da SIL é empacotada com o nome @code{font-sil-gentium}." #. type: Plain text -#: guix-git/doc/contributing.texi:882 +#: guix-git/doc/contributing.texi:912 msgid "For a package containing several font families, the name of the collection is used in the place of the font family name. For instance, the Liberation fonts consist of three families, Liberation Sans, Liberation Serif and Liberation Mono. These could be packaged separately under the names @code{font-liberation-sans} and so on; but as they are distributed together under a common name, we prefer to package them together as @code{font-liberation}." msgstr "Para um pacote que contém várias famílias de fontes, o nome da coleção é usado no lugar do nome da família de fontes. Por exemplo, as fontes Liberation consistem em três famílias, Liberation Sans, Liberation Serif e Liberation Mono. Eles podem ser empacotados separadamente com os nomes @code{font-liberation-sans} e assim por diante; mas como eles são distribuídos juntos com um nome comum, preferimos agrupá-los como @code{font-liberation}." #. type: Plain text -#: guix-git/doc/contributing.texi:888 +#: guix-git/doc/contributing.texi:918 msgid "In the case where several formats of the same font family or font collection are packaged separately, a short form of the format, prepended by a dash, is added to the package name. We use @code{-ttf} for TrueType fonts, @code{-otf} for OpenType fonts and @code{-type1} for PostScript Type 1 fonts." msgstr "No caso de vários formatos da mesma família ou coleção de fontes serem empacotados separadamente, um formato abreviado do formato, precedido por um traço, é adicionado ao nome do pacote. Usamos @code{-ttf} para fontes TrueType, @code{-otf} para fontes OpenType e @code{-type1} para fontes PostScript Type 1." #. type: Plain text -#: guix-git/doc/contributing.texi:896 +#: guix-git/doc/contributing.texi:926 msgid "In general our code follows the GNU Coding Standards (@pxref{Top,,, standards, GNU Coding Standards}). However, they do not say much about Scheme, so here are some additional rules." msgstr "Em geral, nosso código segue os Padrões de Codificação GNU (@pxref{Top ,,, standards, GNU Coding Standards}). No entanto, eles não dizem muito sobre Scheme, então aqui estão algumas regras adicionais." #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:904 -#: guix-git/doc/contributing.texi:905 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:934 +#: guix-git/doc/contributing.texi:935 #, no-wrap msgid "Programming Paradigm" msgstr "Paradigma de programação" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "How to compose your elements." msgstr "Como compor seus elementos." #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:911 -#: guix-git/doc/contributing.texi:912 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:941 +#: guix-git/doc/contributing.texi:942 #, no-wrap msgid "Modules" msgstr "Módulos" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Where to store your code?" msgstr "Onde armazenar seu código?" #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:922 -#: guix-git/doc/contributing.texi:923 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:952 +#: guix-git/doc/contributing.texi:953 #, no-wrap msgid "Data Types and Pattern Matching" msgstr "Tipos de dados e correspondência de padrão" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Implementing data structures." msgstr "Implementação de estruturas de dados." #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:937 -#: guix-git/doc/contributing.texi:938 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:967 +#: guix-git/doc/contributing.texi:968 #, no-wrap msgid "Formatting Code" msgstr "Formatação de código" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Writing conventions." msgstr "Convenções de escrita." #. type: Plain text -#: guix-git/doc/contributing.texi:910 +#: guix-git/doc/contributing.texi:940 msgid "Scheme code in Guix is written in a purely functional style. One exception is code that involves input/output, and procedures that implement low-level concepts, such as the @code{memoize} procedure." msgstr "O código Scheme no Guix é escrito em um estilo puramente funcional. Uma exceção é o código que envolve entrada/saída e procedimentos que implementam conceitos de baixo nível, como o procedimento @code{memoize}." #. type: Plain text -#: guix-git/doc/contributing.texi:918 +#: guix-git/doc/contributing.texi:948 msgid "Guile modules that are meant to be used on the builder side must live in the @code{(guix build @dots{})} name space. They must not refer to other Guix or GNU modules. However, it is OK for a ``host-side'' module to use a build-side module." msgstr "Os módulos de Guile que devem ser usados no lado do compilador devem residir no espaço de nomes @code{(guix build @dots{})}. Eles não devem fazer referência a outros módulos Guix ou GNU. No entanto, é aceitável que um módulo no lado do ``hospedeiro'' use um módulo do lado do compilador." #. type: Plain text -#: guix-git/doc/contributing.texi:921 +#: guix-git/doc/contributing.texi:951 msgid "Modules that deal with the broader GNU system should be in the @code{(gnu @dots{})} name space rather than @code{(guix @dots{})}." msgstr "Módulos que lidam com o sistema GNU mais amplo devem estar no espaço de nome @code{(gnu @dots{})} em vez de @code{(guix @dots{})}." #. type: Plain text -#: guix-git/doc/contributing.texi:930 +#: guix-git/doc/contributing.texi:960 msgid "The tendency in classical Lisp is to use lists to represent everything, and then to browse them ``by hand'' using @code{car}, @code{cdr}, @code{cadr}, and co. There are several problems with that style, notably the fact that it is hard to read, error-prone, and a hindrance to proper type error reports." msgstr "A tendência no Lisp clássico é usar listas para representar tudo e, em seguida, pesquisá-las ``à mão'' usando @code{car}, @code{cdr}, @code{cadr} e co. Existem vários problemas com esse estilo, notadamente o fato de que é difícil de ler, propenso a erros e um obstáculo para os relatórios de erros de tipos adequados." #. type: Plain text -#: guix-git/doc/contributing.texi:936 +#: guix-git/doc/contributing.texi:966 msgid "Guix code should define appropriate data types (for instance, using @code{define-record-type*}) rather than abuse lists. In addition, it should use pattern matching, via Guile’s @code{(ice-9 match)} module, especially when matching lists (@pxref{Pattern Matching,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:940 +#: guix-git/doc/contributing.texi:970 #, no-wrap msgid "formatting code" msgstr "formatação de código" #. type: cindex -#: guix-git/doc/contributing.texi:941 +#: guix-git/doc/contributing.texi:971 #, no-wrap msgid "coding style" msgstr "estilo de codificação" #. type: Plain text -#: guix-git/doc/contributing.texi:948 +#: guix-git/doc/contributing.texi:978 msgid "When writing Scheme code, we follow common wisdom among Scheme programmers. In general, we follow the @url{https://mumble.net/~campbell/scheme/style.txt, Riastradh's Lisp Style Rules}. This document happens to describe the conventions mostly used in Guile’s code too. It is very thoughtful and well written, so please do read it." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:955 +#: guix-git/doc/contributing.texi:985 msgid "Some special forms introduced in Guix, such as the @code{substitute*} macro, have special indentation rules. These are defined in the @file{.dir-locals.el} file, which Emacs automatically uses. Also note that Emacs-Guix provides @code{guix-devel-mode} mode that indents and highlights Guix code properly (@pxref{Development,,, emacs-guix, The Emacs-Guix Reference Manual})." msgstr "Alguns formulários especiais introduzidos no Guix, como a macro @code{substitute*}, possuem regras especiais de recuo. Estes são definidos no arquivo @file{.dir-locals.el}, que o Emacs usa automaticamente. Observe também que o Emacs-Guix fornece o modo @code{guix-devel-mode} que recua e destaca o código Guix corretamente (@pxref{Development ,,, emacs-guix, O manual de referência do Emacs-Guix})." #. type: cindex -#: guix-git/doc/contributing.texi:956 +#: guix-git/doc/contributing.texi:986 #, no-wrap msgid "indentation, of code" msgstr "recuo, de código" #. type: cindex -#: guix-git/doc/contributing.texi:957 +#: guix-git/doc/contributing.texi:987 #, no-wrap msgid "formatting, of code" msgstr "formatação, de código" #. type: Plain text -#: guix-git/doc/contributing.texi:960 +#: guix-git/doc/contributing.texi:990 msgid "If you do not use Emacs, please make sure to let your editor knows these rules. To automatically indent a package definition, you can also run:" msgstr "Se você não usa o Emacs, por favor, certifique-se que o seu editor conhece estas regras. Para recuar automaticamente uma definição de pacote, você também pode executar:" #. type: example -#: guix-git/doc/contributing.texi:963 -#, no-wrap -msgid "./etc/indent-code.el gnu/packages/@var{file}.scm @var{package}\n" -msgstr "./etc/indent-code.el gnu/packages/@var{arquivo}.scm @var{pacote}\n" +#: guix-git/doc/contributing.texi:993 +#, fuzzy, no-wrap +#| msgid "./pre-inst-env guix build gnew --keep-failed\n" +msgid "./pre-inst-env guix style @var{package}\n" +msgstr "./pre-inst-env guix build gnew --keep-failed\n" #. type: Plain text -#: guix-git/doc/contributing.texi:969 -msgid "This automatically indents the definition of @var{package} in @file{gnu/packages/@var{file}.scm} by running Emacs in batch mode. To indent a whole file, omit the second argument:" -msgstr "Isso automaticamente recua a definição de @var{pacote} em @file{gnu/packages/@var{arquivo}.scm} executando o Emacs no modo em lote. Para recuar um arquivo inteiro, omita o segundo argumento:" - -#. type: example -#: guix-git/doc/contributing.texi:972 -#, no-wrap -msgid "./etc/indent-code.el gnu/services/@var{file}.scm\n" -msgstr "./etc/indent-code.el gnu/services/@var{arquivo}.scm\n" +#: guix-git/doc/contributing.texi:997 +#, fuzzy +#| msgid "@xref{Invoking guix pack}, for more info on this handy tool." +msgid "@xref{Invoking guix style}, for more information." +msgstr "@xref{Invocando guix pack}, para mais informações sobre essa ferramenta útil." #. type: cindex -#: guix-git/doc/contributing.texi:974 +#: guix-git/doc/contributing.texi:998 #, no-wrap msgid "Vim, Scheme code editing" msgstr "Vim, edição de código Scheme" #. type: Plain text -#: guix-git/doc/contributing.texi:980 +#: guix-git/doc/contributing.texi:1004 msgid "If you are editing code with Vim, we recommend that you run @code{:set autoindent} so that your code is automatically indented as you type. Additionally, @uref{https://www.vim.org/scripts/script.php?script_id=3998, @code{paredit.vim}} may help you deal with all these parentheses." msgstr "Se você estiver editando código com o Vim, recomendamos que execute @code{:set autoindent} para que seu código seja automaticamente recuado na medida em que você digita. Além disso, o @uref{https://www.vim.org/scripts/script.php?script_id=3998, @code{paredit.vim}} pode ajudá-lo a lidar com todos esses parênteses." #. type: Plain text -#: guix-git/doc/contributing.texi:984 +#: guix-git/doc/contributing.texi:1008 msgid "We require all top-level procedures to carry a docstring. This requirement can be relaxed for simple private procedures in the @code{(guix build @dots{})} name space, though." msgstr "Nós exigimos que todos os procedimentos de nível superior carreguem uma docstring. Porém, este requisito pode ser relaxado para procedimentos privados simples no espaço de nomes @code{(guix build @dots{})}." #. type: Plain text -#: guix-git/doc/contributing.texi:987 +#: guix-git/doc/contributing.texi:1011 msgid "Procedures should not have more than four positional parameters. Use keyword parameters for procedures that take more than four parameters." msgstr "Os procedimentos não devem ter mais de quatro parâmetros posicionais. Use os parâmetros de palavra-chave para procedimentos que levam mais de quatro parâmetros." #. type: Plain text -#: guix-git/doc/contributing.texi:1001 +#: guix-git/doc/contributing.texi:1025 msgid "Development is done using the Git distributed version control system. Thus, access to the repository is not strictly necessary. We welcome contributions in the form of patches as produced by @code{git format-patch} sent to the @email{guix-patches@@gnu.org} mailing list (@pxref{submitting patches,, Submitting patches to a project, git, Git User Manual}). Contributors are encouraged to take a moment to set some Git repository options (@pxref{Configuring Git}) first, which can improve the readability of patches. Seasoned Guix developers may also want to look at the section on commit access (@pxref{Commit Access})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1008 +#: guix-git/doc/contributing.texi:1032 msgid "This mailing list is backed by a Debbugs instance, which allows us to keep track of submissions (@pxref{Tracking Bugs and Patches}). Each message sent to that mailing list gets a new tracking number assigned; people can then follow up on the submission by sending email to @code{@var{NNN}@@debbugs.gnu.org}, where @var{NNN} is the tracking number (@pxref{Sending a Patch Series})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1012 +#: guix-git/doc/contributing.texi:1036 msgid "Please write commit logs in the ChangeLog format (@pxref{Change Logs,,, standards, GNU Coding Standards}); you can check the commit history for examples." msgstr "Por favor, escreva os logs de commit no formato de ChangeLog (@pxref{Change Logs ,,, standards, GNU Coding Standards}); você pode verificar o histórico de commit para exemplos." #. type: Plain text -#: guix-git/doc/contributing.texi:1015 +#: guix-git/doc/contributing.texi:1039 msgid "Before submitting a patch that adds or modifies a package definition, please run through this check list:" msgstr "Antes de enviar um patch que adicione ou modifique uma definição de pacote, execute esta lista de verificação:" #. type: code{#1} -#: guix-git/doc/contributing.texi:1017 guix-git/doc/contributing.texi:1223 +#: guix-git/doc/contributing.texi:1041 guix-git/doc/contributing.texi:1251 #, no-wrap msgid "git format-patch" msgstr "" #. type: code{#1} -#: guix-git/doc/contributing.texi:1018 +#: guix-git/doc/contributing.texi:1042 #, no-wrap msgid "git-format-patch" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1025 +#: guix-git/doc/contributing.texi:1049 msgid "When generating your patches with @code{git format-patch} or @code{git send-email}, we recommend using the option @code{--base=}, perhaps with the value @code{auto}. This option adds a note to the patch stating which commit the patch is based on. This helps reviewers understand how to apply and review your patches." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1031 +#: guix-git/doc/contributing.texi:1055 msgid "If the authors of the packaged software provide a cryptographic signature for the release tarball, make an effort to verify the authenticity of the archive. For a detached GPG signature file this would be done with the @code{gpg --verify} command." msgstr "Se os autores do software empacotado fornecerem uma assinatura criptográfica para o tarball de lançamento, faça um esforço para verificar a autenticidade do arquivo. Para um arquivo de assinatura GPG separado, isso seria feito com o comando @code{gpg --verify}." #. type: enumerate -#: guix-git/doc/contributing.texi:1035 +#: guix-git/doc/contributing.texi:1059 msgid "Take some time to provide an adequate synopsis and description for the package. @xref{Synopses and Descriptions}, for some guidelines." msgstr "Reserve algum tempo para fornecer uma sinopse e descrição adequadas para o pacote. @xref{Sinopses e descrições}, para algumas diretrizes." #. type: enumerate -#: guix-git/doc/contributing.texi:1040 +#: guix-git/doc/contributing.texi:1064 msgid "Run @code{guix lint @var{package}}, where @var{package} is the name of the new or modified package, and fix any errors it reports (@pxref{Invoking guix lint})." msgstr "Execute @code{guix lint @var{pacote}}, sendo @var{pacote} o nome do pacote novo ou modificado e corrija quaisquer erros que forem relatados (@pxref{Invocando guix lint})." #. type: enumerate -#: guix-git/doc/contributing.texi:1044 +#: guix-git/doc/contributing.texi:1068 +#, fuzzy +#| msgid "Run @code{guix lint @var{package}}, where @var{package} is the name of the new or modified package, and fix any errors it reports (@pxref{Invoking guix lint})." +msgid "Run @code{guix style @var{package}} to format the new package definition according to the project's conventions (@pxref{Invoking guix style})." +msgstr "Execute @code{guix lint @var{pacote}}, sendo @var{pacote} o nome do pacote novo ou modificado e corrija quaisquer erros que forem relatados (@pxref{Invocando guix lint})." + +#. type: enumerate +#: guix-git/doc/contributing.texi:1072 msgid "Make sure the package builds on your platform, using @code{guix build @var{package}}." msgstr "Certifique-se de que o pacote compila em sua plataforma, usando @code{guix build @var{pacote}}." #. type: enumerate -#: guix-git/doc/contributing.texi:1052 +#: guix-git/doc/contributing.texi:1080 #, fuzzy #| msgid "We recommend you also try building the package on other supported platforms. As you may not have access to actual hardware platforms, we recommend using the @code{qemu-binfmt-service-type} to emulate them. In order to enable it, add the following service to the list of services in your @code{operating-system} configuration:" msgid "We recommend you also try building the package on other supported platforms. As you may not have access to actual hardware platforms, we recommend using the @code{qemu-binfmt-service-type} to emulate them. In order to enable it, add the @code{virtualization} service module and the following service to the list of services in your @code{operating-system} configuration:" msgstr "Recomendamos que você também tente compilar o pacote em outras plataformas suportadas. Como você pode não ter acesso às plataformas de hardware reais, recomendamos o uso do @code{qemu-binfmt-service-type} para emulá-las. Para habilitar isso, adicione o seguinte serviço à lista de serviços na sua configuração @code{operating-system}:" #. type: lisp -#: guix-git/doc/contributing.texi:1057 +#: guix-git/doc/contributing.texi:1085 #, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -1583,19 +1630,19 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1060 +#: guix-git/doc/contributing.texi:1088 msgid "Then reconfigure your system." msgstr "Então, reconfigure seu sistema." #. type: enumerate -#: guix-git/doc/contributing.texi:1065 +#: guix-git/doc/contributing.texi:1093 #, fuzzy #| msgid "You can then build packages for different platforms by specifying the @code{--system} option. For example, to build the \"hello\" package for the armhf, aarch64, or mips64 architectures, you would run the following commands, respectively:" msgid "You can then build packages for different platforms by specifying the @code{--system} option. For example, to build the \"hello\" package for the armhf or aarch64 architectures, you would run the following commands, respectively:" msgstr "Você pode criar pacotes para plataformas diferentes especificando a opção @code{--system}. Por exemplo, para compilar o pacote \"hello\" para as arquiteturas armhf, aarch64 ou mips64, você executaria os seguintes comandos, respectivamente:" #. type: example -#: guix-git/doc/contributing.texi:1068 +#: guix-git/doc/contributing.texi:1096 #, no-wrap msgid "" "guix build --system=armhf-linux --rounds=2 hello\n" @@ -1603,237 +1650,237 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1071 +#: guix-git/doc/contributing.texi:1099 #, no-wrap msgid "bundling" msgstr "incorporando" #. type: enumerate -#: guix-git/doc/contributing.texi:1074 +#: guix-git/doc/contributing.texi:1102 msgid "Make sure the package does not use bundled copies of software already available as separate packages." msgstr "Verifique se o pacote não usa cópias de software já disponíveis como pacotes separados." #. type: enumerate -#: guix-git/doc/contributing.texi:1083 +#: guix-git/doc/contributing.texi:1111 msgid "Sometimes, packages include copies of the source code of their dependencies as a convenience for users. However, as a distribution, we want to make sure that such packages end up using the copy we already have in the distribution, if there is one. This improves resource usage (the dependency is built and stored only once), and allows the distribution to make transverse changes such as applying security updates for a given software package in a single place and have them affect the whole system---something that bundled copies prevent." msgstr "Às vezes, os pacotes incluem cópias do código-fonte de suas dependências como uma conveniência para os usuários. No entanto, como uma distribuição, queremos garantir que esses pacotes acabem usando a cópia que já temos na distribuição, se houver. Isso melhora o uso de recursos (a dependência é criada e armazenada apenas uma vez) e permite que a distribuição faça alterações transversais, como aplicar atualizações de segurança para um determinado pacote de software em um único local e fazê-las afetar todo o sistema -- algo que cópias incluídas impedem." #. type: enumerate -#: guix-git/doc/contributing.texi:1092 +#: guix-git/doc/contributing.texi:1120 msgid "Take a look at the profile reported by @command{guix size} (@pxref{Invoking guix size}). This will allow you to notice references to other packages unwillingly retained. It may also help determine whether to split the package (@pxref{Packages with Multiple Outputs}), and which optional dependencies should be used. In particular, avoid adding @code{texlive} as a dependency: because of its extreme size, use the @code{texlive-tiny} package or @code{texlive-union} procedure instead." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1097 +#: guix-git/doc/contributing.texi:1125 #, fuzzy #| msgid "For important changes, check that dependent package (if applicable) are not affected by the change; @code{guix refresh --list-dependent @var{package}} will help you do that (@pxref{Invoking guix refresh})." msgid "For important changes, check that dependent packages (if applicable) are not affected by the change; @code{guix refresh --list-dependent @var{package}} will help you do that (@pxref{Invoking guix refresh})." msgstr "Para alterações importantes, verifique se o pacote dependente (se aplicável) não é afetado pela alteração; @code{guix refresh --list-dependent @var{pacote}} ajudará você a fazer isso (@pxref{Invocando guix refresh})." #. type: cindex -#: guix-git/doc/contributing.texi:1099 +#: guix-git/doc/contributing.texi:1127 #, no-wrap msgid "branching strategy" msgstr "estratégia de ramificação" #. type: cindex -#: guix-git/doc/contributing.texi:1100 +#: guix-git/doc/contributing.texi:1128 #, no-wrap msgid "rebuild scheduling strategy" msgstr "estratégia de agendamento de recompilação" #. type: enumerate -#: guix-git/doc/contributing.texi:1103 +#: guix-git/doc/contributing.texi:1131 msgid "Depending on the number of dependent packages and thus the amount of rebuilding induced, commits go to different branches, along these lines:" msgstr "Dependendo do número de pacotes dependentes e, portanto, da quantidade de recompilação induzida, os commits vão para diferentes ramos, ao longo das seguintes linhas:" #. type: item -#: guix-git/doc/contributing.texi:1105 +#: guix-git/doc/contributing.texi:1133 #, no-wrap msgid "300 dependent packages or less" msgstr "300 pacotes dependentes ou menos" #. type: table -#: guix-git/doc/contributing.texi:1107 +#: guix-git/doc/contributing.texi:1135 msgid "@code{master} branch (non-disruptive changes)." msgstr "Ramo @code{master} (alterações não disruptivas)." #. type: item -#: guix-git/doc/contributing.texi:1108 +#: guix-git/doc/contributing.texi:1136 #, no-wrap msgid "between 300 and 1,800 dependent packages" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1114 +#: guix-git/doc/contributing.texi:1142 msgid "@code{staging} branch (non-disruptive changes). This branch is intended to be merged in @code{master} every 6 weeks or so. Topical changes (e.g., an update of the GNOME stack) can instead go to a specific branch (say, @code{gnome-updates}). This branch is not expected to be buildable or usable until late in its development process." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1115 +#: guix-git/doc/contributing.texi:1143 #, no-wrap msgid "more than 1,800 dependent packages" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1120 +#: guix-git/doc/contributing.texi:1148 msgid "@code{core-updates} branch (may include major and potentially disruptive changes). This branch is intended to be merged in @code{master} every 6 months or so. This branch is not expected to be buildable or usable until late in its development process." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1127 +#: guix-git/doc/contributing.texi:1155 msgid "All these branches are @uref{https://@value{SUBSTITUTE-SERVER-1}, tracked by our build farm} and merged into @code{master} once everything has been successfully built. This allows us to fix issues before they hit users, and to reduce the window during which pre-built binaries are not available." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1136 +#: guix-git/doc/contributing.texi:1164 msgid "When we decide to start building the @code{staging} or @code{core-updates} branches, they will be forked and renamed with the suffix @code{-frozen}, at which time only bug fixes may be pushed to the frozen branches. The @code{core-updates} and @code{staging} branches will remain open to accept patches for the next cycle. Please ask on the mailing list or IRC if unsure where to place a patch." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1138 +#: guix-git/doc/contributing.texi:1166 #, no-wrap msgid "determinism, of build processes" msgstr "determinismo, de processos de compilação" #. type: cindex -#: guix-git/doc/contributing.texi:1139 +#: guix-git/doc/contributing.texi:1167 #, no-wrap msgid "reproducible builds, checking" msgstr "compilações reproduzíveis, verificação" #. type: enumerate -#: guix-git/doc/contributing.texi:1143 +#: guix-git/doc/contributing.texi:1171 msgid "Check whether the package's build process is deterministic. This typically means checking whether an independent build of the package yields the exact same result that you obtained, bit for bit." msgstr "Verifique se o processo de compilação do pacote é determinístico. Isso normalmente significa verificar se uma compilação independente do pacote produz o mesmo resultado que você obteve, bit por bit." #. type: enumerate -#: guix-git/doc/contributing.texi:1146 +#: guix-git/doc/contributing.texi:1174 msgid "A simple way to do that is by building the same package several times in a row on your machine (@pxref{Invoking guix build}):" msgstr "Uma maneira simples de fazer isso é compilar o mesmo pacote várias vezes seguidas em sua máquina (@pxref{Invocando guix build}):" #. type: example -#: guix-git/doc/contributing.texi:1149 +#: guix-git/doc/contributing.texi:1177 #, no-wrap msgid "guix build --rounds=2 my-package\n" msgstr "guix build --rounds=2 meu-pacote\n" #. type: enumerate -#: guix-git/doc/contributing.texi:1153 +#: guix-git/doc/contributing.texi:1181 msgid "This is enough to catch a class of common non-determinism issues, such as timestamps or randomly-generated output in the build result." msgstr "Isso é suficiente para capturar uma classe de problemas comuns de não-determinismo, como registros de data e hora ou saída gerada aleatoriamente no resultado da compilação." #. type: enumerate -#: guix-git/doc/contributing.texi:1163 +#: guix-git/doc/contributing.texi:1191 #, fuzzy #| msgid "Another option is to use @command{guix challenge} (@pxref{Invoking guix challenge}). You may run it once the package has been committed and built by @code{@value{SUBSTITUTE-SERVER}} to check whether it obtains the same result as you did. Better yet: Find another machine that can build it and run @command{guix publish}. Since the remote build machine is likely different from yours, this can catch non-determinism issues related to the hardware---e.g., use of different instruction set extensions---or to the operating system kernel---e.g., reliance on @code{uname} or @file{/proc} files." msgid "Another option is to use @command{guix challenge} (@pxref{Invoking guix challenge}). You may run it once the package has been committed and built by @code{@value{SUBSTITUTE-SERVER-1}} to check whether it obtains the same result as you did. Better yet: Find another machine that can build it and run @command{guix publish}. Since the remote build machine is likely different from yours, this can catch non-determinism issues related to the hardware---e.g., use of different instruction set extensions---or to the operating system kernel---e.g., reliance on @code{uname} or @file{/proc} files." msgstr "Outra opção é usar @command{guix challenge} (@pxref{Invocando guix challenge}). Você pode executá-lo uma vez que o pacote se tenha sido feito o commit e compilação por @code{SUBSTITUTE-SERVER} para verificar se obtém o mesmo resultado que você fez. Melhor ainda: encontre outra máquina que possa compilá-lo e executar @command{guix publish}. Como a máquina de compilação remota provavelmente é diferente da sua, isso pode capturar problemas de não determinismo relacionados ao hardware - por exemplo, uso de extensões de conjunto de instruções diferentes – ou ao kernel do sistema operacional – por exemplo, confiança em @code{uname} ou arquivos de @file{/proc}." #. type: enumerate -#: guix-git/doc/contributing.texi:1169 +#: guix-git/doc/contributing.texi:1197 msgid "When writing documentation, please use gender-neutral wording when referring to people, such as @uref{https://en.wikipedia.org/wiki/Singular_they, singular ``they''@comma{} ``their''@comma{} ``them''}, and so forth." msgstr "Ao escrever documentação, por favor, use palavras de gênero neutras ao se referir a pessoas, como @uref{https://en.wikipedia.org/wiki/Singular_they, singular ``they''@comma{} ``their'' @comma{} ``them''}, e assim por diante." #. type: enumerate -#: guix-git/doc/contributing.texi:1173 +#: guix-git/doc/contributing.texi:1201 msgid "Verify that your patch contains only one set of related changes. Bundling unrelated changes together makes reviewing harder and slower." msgstr "Verifique se o seu patch contém apenas um conjunto de alterações relacionadas. Agrupar mudanças não relacionadas juntas torna a revisão mais difícil e lenta." #. type: enumerate -#: guix-git/doc/contributing.texi:1176 +#: guix-git/doc/contributing.texi:1204 msgid "Examples of unrelated changes include the addition of several packages, or a package update along with fixes to that package." msgstr "Exemplos de alterações não relacionadas incluem a adição de vários pacotes ou uma atualização de pacote juntamente com correções para esse pacote." #. type: enumerate -#: guix-git/doc/contributing.texi:1181 -msgid "Please follow our code formatting rules, possibly running the @command{etc/indent-code.el} script to do that automatically for you (@pxref{Formatting Code})." +#: guix-git/doc/contributing.texi:1209 +#, fuzzy +#| msgid "Please follow our code formatting rules, possibly running the @command{etc/indent-code.el} script to do that automatically for you (@pxref{Formatting Code})." +msgid "Please follow our code formatting rules, possibly running @command{guix style} script to do that automatically for you (@pxref{Formatting Code})." msgstr "Siga nossas regras de formatação de código, possivelmente executando o script @command{etc/indent-code.el} para fazer isso automaticamente para você (@pxref{Formatação de código})." #. type: enumerate -#: guix-git/doc/contributing.texi:1189 +#: guix-git/doc/contributing.texi:1217 msgid "When possible, use mirrors in the source URL (@pxref{Invoking guix download}). Use reliable URLs, not generated ones. For instance, GitHub archives are not necessarily identical from one generation to the next, so in this case it's often better to clone the repository. Don't use the @command{name} field in the URL: it is not very useful and if the name changes, the URL will probably be wrong." msgstr "Quando possível, use espelhos no URL fonte (@pxref{Invocando guix download}). Use URLs confiáveis, não os gerados. Por exemplo, os arquivos do GitHub não são necessariamente idênticos de uma geração para a seguinte, portanto, nesse caso, geralmente é melhor clonar o repositório. Não use o campo @command{name} no URL: não é muito útil e se o nome mudar, o URL provavelmente estará errado." #. type: enumerate -#: guix-git/doc/contributing.texi:1193 +#: guix-git/doc/contributing.texi:1221 msgid "Check if Guix builds (@pxref{Building from Git}) and address the warnings, especially those about use of undefined symbols." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1196 +#: guix-git/doc/contributing.texi:1224 msgid "Make sure your changes do not break Guix and simulate a @code{guix pull} with:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1198 +#: guix-git/doc/contributing.texi:1226 #, no-wrap msgid "guix pull --url=/path/to/your/checkout --profile=/tmp/guix.master\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1211 +#: guix-git/doc/contributing.texi:1239 msgid "When posting a patch to the mailing list, use @samp{[PATCH] @dots{}} as a subject, if your patch is to be applied on a branch other than @code{master}, say @code{core-updates}, specify it in the subject like @samp{[PATCH core-updates] @dots{}}. You may use your email client or the @command{git send-email} command (@pxref{Sending a Patch Series}). We prefer to get patches in plain text messages, either inline or as MIME attachments. You are advised to pay attention if your email client changes anything like line breaks or indentation which could potentially break the patches." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1216 +#: guix-git/doc/contributing.texi:1244 msgid "Expect some delay when you submit your very first patch to @email{guix-patches@@gnu.org}. You have to wait until you get an acknowledgement with the assigned tracking number. Future acknowledgements should not be delayed." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1219 +#: guix-git/doc/contributing.texi:1247 msgid "When a bug is resolved, please close the thread by sending an email to @email{@var{NNN}-done@@debbugs.gnu.org}." msgstr "Quando um erro for resolvido, feche o tópico enviando um e-mail para @email{@var{NNN}-done@@debbugs.gnu.org}." #. type: subsection -#: guix-git/doc/contributing.texi:1220 guix-git/doc/contributing.texi:1221 -#, fuzzy, no-wrap -#| msgid "Configuring the boot loader." +#: guix-git/doc/contributing.texi:1248 guix-git/doc/contributing.texi:1249 +#, no-wrap msgid "Configuring Git" -msgstr "Configurando o \"bootloader\"." +msgstr "Configurando o Git" #. type: cindex -#: guix-git/doc/contributing.texi:1222 -#, fuzzy, no-wrap -#| msgid "System Configuration" +#: guix-git/doc/contributing.texi:1250 +#, no-wrap msgid "git configuration" -msgstr "Configuração do sistema" +msgstr "Configuração do git" #. type: code{#1} -#: guix-git/doc/contributing.texi:1224 guix-git/doc/contributing.texi:1259 +#: guix-git/doc/contributing.texi:1252 guix-git/doc/contributing.texi:1287 #, no-wrap msgid "git send-email" msgstr "git send-email" #. type: Plain text -#: guix-git/doc/contributing.texi:1232 +#: guix-git/doc/contributing.texi:1260 msgid "If you have not done so already, you may wish to set a name and email that will be associated with your commits (@pxref{telling git your name, , Telling Git your name, git, Git User Manual}). If you wish to use a different name or email just for commits in this repository, you can use @command{git config --local}, or edit @file{.git/config} in the repository instead of @file{~/.gitconfig}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1238 +#: guix-git/doc/contributing.texi:1266 msgid "We provide some default settings in @file{etc/git/gitconfig} which modify how patches are generated, making them easier to read and apply. These settings can be applied by manually copying them to @file{.git/config} in your checkout, or by telling Git to include the whole file:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1241 +#: guix-git/doc/contributing.texi:1269 #, no-wrap msgid "git config --local include.path ../etc/git/gitconfig\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1245 +#: guix-git/doc/contributing.texi:1273 msgid "From then on, any changes to @file{etc/git/gitconfig} would automatically take effect." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1250 +#: guix-git/doc/contributing.texi:1278 msgid "Since the first patch in a series must be sent separately (@pxref{Sending a Patch Series}), it can also be helpful to tell @command{git format-patch} to handle the e-mail threading instead of @command{git send-email}:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1254 +#: guix-git/doc/contributing.texi:1282 #, no-wrap msgid "" "git config --local format.thread shallow\n" @@ -1841,185 +1888,185 @@ msgid "" msgstr "" #. type: anchor{#1} -#: guix-git/doc/contributing.texi:1256 guix-git/doc/contributing.texi:1258 +#: guix-git/doc/contributing.texi:1284 guix-git/doc/contributing.texi:1286 #, no-wrap msgid "Sending a Patch Series" msgstr "Enviando uma série de patches" #. type: cindex -#: guix-git/doc/contributing.texi:1258 +#: guix-git/doc/contributing.texi:1286 #, no-wrap msgid "patch series" msgstr "série de patches" #. type: Plain text -#: guix-git/doc/contributing.texi:1269 +#: guix-git/doc/contributing.texi:1297 msgid "When sending a patch series (e.g., using @code{git send-email}), please first send one message to @email{guix-patches@@gnu.org}, and then send subsequent patches to @email{@var{NNN}@@debbugs.gnu.org} to make sure they are kept together. See @uref{https://debbugs.gnu.org/Advanced.html, the Debbugs documentation} for more information. You can install @command{git send-email} with @command{guix install git:send-email}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1275 +#: guix-git/doc/contributing.texi:1303 msgid "This section describes how the Guix project tracks its bug reports and patch submissions." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1282 -#: guix-git/doc/contributing.texi:1283 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1310 +#: guix-git/doc/contributing.texi:1311 #, no-wrap msgid "The Issue Tracker" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "The official bug and patch tracker." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1296 -#: guix-git/doc/contributing.texi:1297 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1324 +#: guix-git/doc/contributing.texi:1325 #, fuzzy, no-wrap #| msgid "user interfaces" msgid "Debbugs User Interfaces" msgstr "interfaces de usuário" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "Ways to interact with Debbugs." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1336 -#: guix-git/doc/contributing.texi:1337 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1364 +#: guix-git/doc/contributing.texi:1365 #, no-wrap msgid "Debbugs Usertags" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "Tag reports with custom labels." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1285 +#: guix-git/doc/contributing.texi:1313 #, no-wrap msgid "bug reports, tracking" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1286 +#: guix-git/doc/contributing.texi:1314 #, no-wrap msgid "patch submissions, tracking" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1287 +#: guix-git/doc/contributing.texi:1315 #, no-wrap msgid "issue tracking" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1288 +#: guix-git/doc/contributing.texi:1316 #, no-wrap msgid "Debbugs, issue tracking system" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1295 +#: guix-git/doc/contributing.texi:1323 msgid "Bug reports and patch submissions are currently tracked using the Debbugs instance at @uref{https://bugs.gnu.org}. Bug reports are filed against the @code{guix} ``package'' (in Debbugs parlance), by sending email to @email{bug-guix@@gnu.org}, while patch submissions are filed against the @code{guix-patches} package by sending email to @email{guix-patches@@gnu.org} (@pxref{Submitting Patches})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1301 +#: guix-git/doc/contributing.texi:1329 msgid "A web interface (actually @emph{two} web interfaces!) are available to browse issues:" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1310 +#: guix-git/doc/contributing.texi:1338 msgid "@url{https://issues.guix.gnu.org} provides a pleasant interface@footnote{The web interface at @url{https://issues.guix.gnu.org} is powered by Mumi, a nice piece of software written in Guile, and you can help! See @url{https://git.elephly.net/gitweb.cgi?p=software/mumi.git}.} to browse bug reports and patches, and to participate in discussions;" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1312 +#: guix-git/doc/contributing.texi:1340 msgid "@url{https://bugs.gnu.org/guix} lists bug reports;" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1314 +#: guix-git/doc/contributing.texi:1342 msgid "@url{https://bugs.gnu.org/guix-patches} lists patch submissions." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1319 +#: guix-git/doc/contributing.texi:1347 msgid "To view discussions related to issue number @var{n}, go to @indicateurl{https://issues.guix.gnu.org/@var{n}} or @indicateurl{https://bugs.gnu.org/@var{n}}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1322 +#: guix-git/doc/contributing.texi:1350 msgid "If you use Emacs, you may find it more convenient to interact with issues using @file{debbugs.el}, which you can install with:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1325 +#: guix-git/doc/contributing.texi:1353 #, no-wrap msgid "guix install emacs-debbugs\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1328 +#: guix-git/doc/contributing.texi:1356 msgid "For example, to list all open issues on @code{guix-patches}, hit:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1331 +#: guix-git/doc/contributing.texi:1359 #, no-wrap msgid "@kbd{C-u} @kbd{M-x} debbugs-gnu @kbd{RET} @kbd{RET} guix-patches @kbd{RET} n y\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1335 +#: guix-git/doc/contributing.texi:1363 msgid "@xref{Top,,, debbugs-ug, Debbugs User Guide}, for more information on this nifty tool!" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1339 +#: guix-git/doc/contributing.texi:1367 #, no-wrap msgid "usertags, for debbugs" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1340 +#: guix-git/doc/contributing.texi:1368 #, no-wrap msgid "Debbugs usertags" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1346 +#: guix-git/doc/contributing.texi:1374 msgid "Debbugs provides a feature called @dfn{usertags} that allows any user to tag any bug with an arbitrary label. Bugs can be searched by usertag, so this is a handy way to organize bugs@footnote{The list of usertags is public information, and anyone can modify any user's list of usertags, so keep that in mind if you choose to use this feature.}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1352 +#: guix-git/doc/contributing.texi:1380 msgid "For example, to view all the bug reports (or patches, in the case of @code{guix-patches}) tagged with the usertag @code{powerpc64le-linux} for the user @code{guix}, open a URL like the following in a web browser: @url{https://debbugs.gnu.org/cgi-bin/pkgreport.cgi?tag=powerpc64le-linux;users=guix}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1356 +#: guix-git/doc/contributing.texi:1384 msgid "For more information on how to use usertags, please refer to the documentation for Debbugs or the documentation for whatever tool you use to interact with Debbugs." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1361 +#: guix-git/doc/contributing.texi:1389 msgid "In Guix, we are experimenting with usertags to keep track of architecture-specific issues. To facilitate collaboration, all our usertags are associated with the single user @code{guix}. The following usertags currently exist for that user:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1364 guix-git/doc/guix.texi:556 +#: guix-git/doc/contributing.texi:1392 guix-git/doc/guix.texi:557 #, fuzzy, no-wrap msgid "powerpc64le-linux" msgstr "aarch64-linux" #. type: table -#: guix-git/doc/contributing.texi:1372 +#: guix-git/doc/contributing.texi:1400 msgid "The purpose of this usertag is to make it easy to find the issues that matter most for the @code{powerpc64le-linux} system type. Please assign this usertag to bugs or patches that affect @code{powerpc64le-linux} but not other system types. In addition, you may use it to identify issues that for some reason are particularly important for the @code{powerpc64le-linux} system type, even if the issue affects other system types, too." msgstr "" @@ -2027,134 +2074,134 @@ msgstr "" #. type: item #. #-#-#-#-# guix.pot (guix manual checkout) #-#-#-#-# #. type: cindex -#: guix-git/doc/contributing.texi:1373 guix-git/doc/guix.texi:3070 -#: guix-git/doc/guix.texi:4771 +#: guix-git/doc/contributing.texi:1401 guix-git/doc/guix.texi:3087 +#: guix-git/doc/guix.texi:4789 #, no-wrap msgid "reproducibility" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1377 +#: guix-git/doc/contributing.texi:1405 msgid "For issues related to reproducibility. For example, it would be appropriate to assign this usertag to a bug report for a package that fails to build reproducibly." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1384 +#: guix-git/doc/contributing.texi:1412 msgid "If you're a committer and you want to add a usertag, just start using it with the @code{guix} user. If the usertag proves useful to you, consider updating this section of the manual so that others will know what your usertag means." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1388 +#: guix-git/doc/contributing.texi:1416 #, no-wrap msgid "commit access, for developers" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1394 -msgid "Everyone can contribute to Guix without having commit access (@pxref{Submitting Patches}). However, for frequent contributors, having write access to the repository can be convenient. Commit access should not be thought of as a ``badge of honor'' but rather as a responsibility a contributor is willing to take to help the project." +#: guix-git/doc/contributing.texi:1427 +msgid "Everyone can contribute to Guix without having commit access (@pxref{Submitting Patches}). However, for frequent contributors, having write access to the repository can be convenient. As a rule of thumb, a contributor should have accumulated fifty (50) reviewed commits to be considered as a committer and have sustained their activity in the project for at least 6 months. This ensures enough interactions with the contributor, which is essential for mentoring and assessing whether they are ready to become a committer. Commit access should not be thought of as a ``badge of honor'' but rather as a responsibility a contributor is willing to take to help the project." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1398 +#: guix-git/doc/contributing.texi:1431 msgid "The following sections explain how to get commit access, how to be ready to push commits, and the policies and community expectations for commits pushed upstream." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1399 +#: guix-git/doc/contributing.texi:1432 #, no-wrap msgid "Applying for Commit Access" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1403 +#: guix-git/doc/contributing.texi:1436 msgid "When you deem it necessary, consider applying for commit access by following these steps:" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1412 +#: guix-git/doc/contributing.texi:1445 msgid "Find three committers who would vouch for you. You can view the list of committers at @url{https://savannah.gnu.org/project/memberlist.php?group=guix}. Each of them should email a statement to @email{guix-maintainers@@gnu.org} (a private alias for the collective of maintainers), signed with their OpenPGP key." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1418 +#: guix-git/doc/contributing.texi:1451 msgid "Committers are expected to have had some interactions with you as a contributor and to be able to judge whether you are sufficiently familiar with the project's practices. It is @emph{not} a judgment on the value of your work, so a refusal should rather be interpreted as ``let's try again later''." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1425 +#: guix-git/doc/contributing.texi:1458 msgid "Send @email{guix-maintainers@@gnu.org} a message stating your intent, listing the three committers who support your application, signed with the OpenPGP key you will use to sign commits, and giving its fingerprint (see below). See @uref{https://emailselfdefense.fsf.org/en/}, for an introduction to public-key cryptography with GnuPG." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1431 +#: guix-git/doc/contributing.texi:1464 msgid "Set up GnuPG such that it never uses the SHA1 hash algorithm for digital signatures, which is known to be unsafe since 2019, for instance by adding the following line to @file{~/.gnupg/gpg.conf} (@pxref{GPG Esoteric Options,,, gnupg, The GNU Privacy Guard Manual}):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1434 +#: guix-git/doc/contributing.texi:1467 #, no-wrap msgid "digest-algo sha512\n" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1439 +#: guix-git/doc/contributing.texi:1472 msgid "Maintainers ultimately decide whether to grant you commit access, usually following your referrals' recommendation." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1441 +#: guix-git/doc/contributing.texi:1474 #, no-wrap msgid "OpenPGP, signed commits" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1446 +#: guix-git/doc/contributing.texi:1479 msgid "If and once you've been given access, please send a message to @email{guix-devel@@gnu.org} to say so, again signed with the OpenPGP key you will use to sign commits (do that before pushing your first commit). That way, everyone can notice and ensure you control that OpenPGP key." msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:1447 guix-git/doc/guix.texi:17972 +#: guix-git/doc/contributing.texi:1480 guix-git/doc/guix.texi:18334 #, no-wrap msgid "Important" -msgstr "" +msgstr "Importante" #. type: quotation -#: guix-git/doc/contributing.texi:1449 +#: guix-git/doc/contributing.texi:1482 msgid "Before you can push for the first time, maintainers must:" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1453 +#: guix-git/doc/contributing.texi:1486 msgid "add your OpenPGP key to the @code{keyring} branch;" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1456 +#: guix-git/doc/contributing.texi:1489 msgid "add your OpenPGP fingerprint to the @file{.guix-authorizations} file of the branch(es) you will commit to." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1461 +#: guix-git/doc/contributing.texi:1494 msgid "Make sure to read the rest of this section and... profit!" msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:1467 +#: guix-git/doc/contributing.texi:1500 msgid "Maintainers are happy to give commit access to people who have been contributing for some time and have a track record---don't be shy and don't underestimate your work!" msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:1471 +#: guix-git/doc/contributing.texi:1504 msgid "However, note that the project is working towards a more automated patch review and merging system, which, as a consequence, may lead us to have fewer people with commit access to the main repository. Stay tuned!" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1478 +#: guix-git/doc/contributing.texi:1511 msgid "All commits that are pushed to the central repository on Savannah must be signed with an OpenPGP key, and the public key should be uploaded to your user account on Savannah and to public key servers, such as @code{keys.openpgp.org}. To configure Git to automatically sign commits, run:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1481 +#: guix-git/doc/contributing.texi:1514 #, no-wrap msgid "" "git config commit.gpgsign true\n" @@ -2162,7 +2209,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1484 +#: guix-git/doc/contributing.texi:1517 #, no-wrap msgid "" "# Substitute the fingerprint of your public PGP key.\n" @@ -2170,350 +2217,349 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1489 +#: guix-git/doc/contributing.texi:1522 msgid "You can prevent yourself from accidentally pushing unsigned commits to Savannah by using the pre-push Git hook located at @file{etc/git/pre-push}:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1492 +#: guix-git/doc/contributing.texi:1525 #, no-wrap msgid "cp etc/git/pre-push .git/hooks/pre-push\n" msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1494 +#: guix-git/doc/contributing.texi:1527 #, no-wrap msgid "Commit Policy" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1499 +#: guix-git/doc/contributing.texi:1532 msgid "If you get commit access, please make sure to follow the policy below (discussions of the policy can take place on @email{guix-devel@@gnu.org})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1504 +#: guix-git/doc/contributing.texi:1537 msgid "Non-trivial patches should always be posted to @email{guix-patches@@gnu.org} (trivial patches include fixing typos, etc.). This mailing list fills the patch-tracking database (@pxref{Tracking Bugs and Patches})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1513 +#: guix-git/doc/contributing.texi:1546 msgid "For patches that just add a new package, and a simple one, it's OK to commit, if you're confident (which means you successfully built it in a chroot setup, and have done a reasonable copyright and license auditing). Likewise for package upgrades, except upgrades that trigger a lot of rebuilds (for example, upgrading GnuTLS or GLib). We have a mailing list for commit notifications (@email{guix-commits@@gnu.org}), so people can notice. Before pushing your changes, make sure to run @code{git pull --rebase}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1518 +#: guix-git/doc/contributing.texi:1551 msgid "When pushing a commit on behalf of somebody else, please add a @code{Signed-off-by} line at the end of the commit log message---e.g., with @command{git am --signoff}. This improves tracking of who did what." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1522 +#: guix-git/doc/contributing.texi:1555 msgid "When adding channel news entries (@pxref{Channels, Writing Channel News}), make sure they are well-formed by running the following command right before pushing:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1525 +#: guix-git/doc/contributing.texi:1558 #, no-wrap msgid "make check-channel-news\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1531 +#: guix-git/doc/contributing.texi:1564 msgid "For anything else, please post to @email{guix-patches@@gnu.org} and leave time for a review, without committing anything (@pxref{Submitting Patches}). If you didn’t receive any reply after two weeks, and if you're confident, it's OK to commit." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1534 +#: guix-git/doc/contributing.texi:1567 msgid "That last part is subject to being adjusted, allowing individuals to commit directly on non-controversial changes on parts they’re familiar with." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1535 +#: guix-git/doc/contributing.texi:1568 #, no-wrap msgid "Addressing Issues" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1546 +#: guix-git/doc/contributing.texi:1579 msgid "Peer review (@pxref{Submitting Patches}) and tools such as @command{guix lint} (@pxref{Invoking guix lint}) and the test suite (@pxref{Running the Test Suite}) should catch issues before they are pushed. Yet, commits that ``break'' functionality might occasionally go through. When that happens, there are two priorities: mitigating the impact, and understanding what happened to reduce the chance of similar incidents in the future. The responsibility for both these things primarily lies with those involved, but like everything this is a group effort." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1551 +#: guix-git/doc/contributing.texi:1584 msgid "Some issues can directly affect all users---for instance because they make @command{guix pull} fail or break core functionality, because they break major packages (at build time or run time), or because they introduce known security vulnerabilities." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1552 +#: guix-git/doc/contributing.texi:1585 #, no-wrap msgid "reverting commits" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1558 +#: guix-git/doc/contributing.texi:1591 msgid "The people involved in authoring, reviewing, and pushing such commit(s) should be at the forefront to mitigate their impact in a timely fashion: by pushing a followup commit to fix it (if possible), or by reverting it to leave time to come up with a proper fix, and by communicating with other developers about the problem." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1564 +#: guix-git/doc/contributing.texi:1597 msgid "If these persons are unavailable to address the issue in time, other committers are entitled to revert the commit(s), explaining in the commit log and on the mailing list what the problem was, with the goal of leaving time to the original committer, reviewer(s), and author(s) to propose a way forward." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1573 +#: guix-git/doc/contributing.texi:1606 msgid "Once the problem has been dealt with, it is the responsibility of those involved to make sure the situation is understood. If you are working to understand what happened, focus on gathering information and avoid assigning any blame. Do ask those involved to describe what happened, do not ask them to explain the situation---this would implicitly blame them, which is unhelpful. Accountability comes from a consensus about the problem, learning from it and improving processes so that it's less likely to reoccur." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1574 +#: guix-git/doc/contributing.texi:1607 #, fuzzy, no-wrap #| msgid "Log Rotation" msgid "Commit Revocation" msgstr "Rotação de log" #. type: Plain text -#: guix-git/doc/contributing.texi:1581 +#: guix-git/doc/contributing.texi:1614 msgid "In order to reduce the possibility of mistakes, committers will have their Savannah account removed from the Guix Savannah project and their key removed from @file{.guix-authorizations} after 12 months of inactivity; they can ask to regain commit access by emailing the maintainers, without going through the vouching process." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1591 +#: guix-git/doc/contributing.texi:1624 msgid "Maintainers@footnote{See @uref{https://guix.gnu.org/en/about} for the current list of maintainers. You can email them privately at @email{guix-maintainers@@gnu.org}.} may also revoke an individual's commit rights, as a last resort, if cooperation with the rest of the community has caused too much friction---even within the bounds of the project's code of conduct (@pxref{Contributing}). They would only do so after public or private discussion with the individual and a clear notice. Examples of behavior that hinders cooperation and could lead to such a decision include:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1593 +#: guix-git/doc/contributing.texi:1626 #, no-wrap msgid "repeated violation of the commit policy stated above;" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1594 +#: guix-git/doc/contributing.texi:1627 #, no-wrap msgid "repeated failure to take peer criticism into account;" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1595 +#: guix-git/doc/contributing.texi:1628 #, no-wrap msgid "breaching trust through a series of grave incidents." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1602 +#: guix-git/doc/contributing.texi:1635 msgid "When maintainers resort to such a decision, they notify developers on @email{guix-devel@@gnu.org}; inquiries may be sent to @email{guix-maintainers@@gnu.org}. Depending on the situation, the individual may still be welcome to contribute." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1603 +#: guix-git/doc/contributing.texi:1636 #, no-wrap msgid "Helping Out" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1610 +#: guix-git/doc/contributing.texi:1643 msgid "One last thing: the project keeps moving forward because committers not only push their own awesome changes, but also offer some of their time @emph{reviewing} and pushing other people's changes. As a committer, you're welcome to use your expertise and commit rights to help other contributors, too!" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1614 +#: guix-git/doc/contributing.texi:1647 #, no-wrap msgid "update-guix-package, updating the guix package" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1620 +#: guix-git/doc/contributing.texi:1653 msgid "It is sometimes desirable to update the @code{guix} package itself (the package defined in @code{(gnu packages package-management)}), for example to make new daemon features available for use by the @code{guix-service-type} service type. In order to simplify this task, the following command can be used:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1623 +#: guix-git/doc/contributing.texi:1656 #, no-wrap msgid "make update-guix-package\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1630 +#: guix-git/doc/contributing.texi:1663 msgid "The @code{update-guix-package} make target will use the last known @emph{commit} corresponding to @code{HEAD} in your Guix checkout, compute the hash of the Guix sources corresponding to that commit and update the @code{commit}, @code{revision} and hash of the @code{guix} package definition." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1634 +#: guix-git/doc/contributing.texi:1667 msgid "To validate that the updated @code{guix} package hashes are correct and that it can be built successfully, the following command can be run from the directory of your Guix checkout:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1637 +#: guix-git/doc/contributing.texi:1670 #, no-wrap msgid "./pre-inst-env guix build guix\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1642 +#: guix-git/doc/contributing.texi:1675 msgid "To guard against accidentally updating the @code{guix} package to a commit that others can't refer to, a check is made that the commit used has already been pushed to the Savannah-hosted Guix git repository." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1647 +#: guix-git/doc/contributing.texi:1680 msgid "This check can be disabled, @emph{at your own peril}, by setting the @code{GUIX_ALLOW_ME_TO_USE_PRIVATE_COMMIT} environment variable. When this variable is set, the updated package source is also added to the store. This is used as part of the release process of Guix." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1648 -#, fuzzy, no-wrap -#| msgid "isolation" +#: guix-git/doc/contributing.texi:1681 +#, no-wrap msgid "translation" -msgstr "isolação" +msgstr "tradução" #. type: cindex -#: guix-git/doc/contributing.texi:1649 +#: guix-git/doc/contributing.texi:1682 #, no-wrap msgid "l10n" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1650 +#: guix-git/doc/contributing.texi:1683 #, no-wrap msgid "i18n" -msgstr "" +msgstr "i18n" #. type: cindex -#: guix-git/doc/contributing.texi:1651 +#: guix-git/doc/contributing.texi:1684 #, no-wrap msgid "native language support" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1661 +#: guix-git/doc/contributing.texi:1694 msgid "Writing code and packages is not the only way to provide a meaningful contribution to Guix. Translating to a language you speak is another example of a valuable contribution you can make. This section is designed to describe the translation process. It gives you advice on how you can get involved, what can be translated, what mistakes you should avoid and what we can do to help you!" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1667 +#: guix-git/doc/contributing.texi:1700 msgid "Guix is a big project that has multiple components that can be translated. We coordinate the translation effort on a @uref{https://translate.fedoraproject.org/projects/guix/,Weblate instance} hosted by our friends at Fedora. You will need an account to submit translations." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1674 +#: guix-git/doc/contributing.texi:1707 msgid "Some of the software packaged in Guix also contain translations. We do not host a translation platform for them. If you want to translate a package provided by Guix, you should contact their developers or find the information on their website. As an example, you can find the homepage of the @code{hello} package by typing @code{guix show hello}. On the ``homepage'' line, you will see @url{https://www.gnu.org/software/hello/} as the homepage." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1679 +#: guix-git/doc/contributing.texi:1712 msgid "Many GNU and non-GNU packages can be translated on the @uref{https://translationproject.org,Translation Project}. Some projects with multiple components have their own platform. For instance, GNOME has its own platform, @uref{https://l10n.gnome.org/,Damned Lies}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1681 +#: guix-git/doc/contributing.texi:1714 msgid "Guix has five components hosted on Weblate." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1683 +#: guix-git/doc/contributing.texi:1716 #, no-wrap msgid "@code{guix} contains all the strings from the Guix software (the" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1718 msgid "guided system installer, the package manager, etc), excluding packages." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1718 #, no-wrap msgid "@code{packages} contains the synopsis (single-sentence description" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1687 +#: guix-git/doc/contributing.texi:1720 msgid "of a package) and description (longer description) of packages in Guix." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1687 +#: guix-git/doc/contributing.texi:1720 #, no-wrap msgid "@code{website} contains the official Guix website, except for" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1689 +#: guix-git/doc/contributing.texi:1722 msgid "blog posts and multimedia content." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1689 +#: guix-git/doc/contributing.texi:1722 #, no-wrap msgid "@code{documentation-manual} corresponds to this manual." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1690 +#: guix-git/doc/contributing.texi:1723 #, no-wrap msgid "@code{documentation-cookbook} is the component for the cookbook." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1693 +#: guix-git/doc/contributing.texi:1726 #, fuzzy, no-wrap #| msgid "generations" msgid "General Directions" msgstr "gerações" #. type: Plain text -#: guix-git/doc/contributing.texi:1701 +#: guix-git/doc/contributing.texi:1734 msgid "Once you get an account, you should be able to select a component from @uref{https://translate.fedoraproject.org/projects/guix/,the guix project}, and select a language. If your language does not appear in the list, go to the bottom and click on the ``Start new translation'' button. Select the language you want to translate to from the list, to start your new translation." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1706 +#: guix-git/doc/contributing.texi:1739 msgid "Like lots of other free software packages, Guix uses @uref{https://www.gnu.org/software/gettext,GNU Gettext} for its translations, with which translatable strings are extracted from the source code to so-called PO files." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1717 +#: guix-git/doc/contributing.texi:1750 msgid "Even though PO files are text files, changes should not be made with a text editor but with PO editing software. Weblate integrates PO editing functionality. Alternatively, translators can use any of various free-software tools for filling in translations, of which @uref{https://poedit.net/,Poedit} is one example, and (after logging in) @uref{https://docs.weblate.org/en/latest/user/files.html,upload} the changed file. There is also a special @uref{https://www.emacswiki.org/emacs/PoMode,PO editing mode} for users of GNU Emacs. Over time translators find out what software they are happy with and what features they need." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1722 +#: guix-git/doc/contributing.texi:1755 msgid "On Weblate, you will find various links to the editor, that will show various subsets (or all) of the strings. Have a look around and at the @uref{https://docs.weblate.org/en/latest/,documentation} to familiarize yourself with the platform." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1723 +#: guix-git/doc/contributing.texi:1756 #, no-wrap msgid "Translation Components" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1728 +#: guix-git/doc/contributing.texi:1761 msgid "In this section, we provide more detailed guidance on the translation process, as well as details on what you should or should not do. When in doubt, please contact us, we will be happy to help!" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1730 guix-git/doc/guix.texi:9420 +#: guix-git/doc/contributing.texi:1763 guix-git/doc/guix.texi:9734 #, no-wrap msgid "guix" msgstr "guix" #. type: table -#: guix-git/doc/contributing.texi:1735 +#: guix-git/doc/contributing.texi:1768 msgid "Guix is written in the Guile programming language, and some strings contain special formatting that is interpreted by Guile. These special formatting should be highlighted by Weblate. They start with @code{~} followed by one or more characters." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1744 +#: guix-git/doc/contributing.texi:1777 msgid "When printing the string, Guile replaces the special formatting symbols with actual values. For instance, the string @samp{ambiguous package specification `~a'} would be substituted to contain said package specification instead of @code{~a}. To properly translate this string, you must keep the formatting code in your translation, although you can place it where it makes sense in your language. For instance, the French translation says @samp{spécification du paquet « ~a » ambiguë} because the adjective needs to be placed in the end of the sentence." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1748 +#: guix-git/doc/contributing.texi:1781 msgid "If there are multiple formatting symbols, make sure to respect the order. Guile does not know in which order you intended the string to be read, so it will substitute the symbols in the same order as the English sentence." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1756 +#: guix-git/doc/contributing.texi:1789 msgid "As an example, you cannot translate @samp{package '~a' has been superseded by '~a'} by @samp{'~a' superseeds package '~a'}, because the meaning would be reversed. If @var{foo} is superseded by @var{bar}, the translation would read @samp{'foo' superseeds package 'bar'}. To work around this problem, it is possible to use more advanced formatting to select a given piece of data, instead of following the default English order. @xref{Formatted Output,,, guile, GNU Guile Reference Manual}, for more information on formatting in Guile." msgstr "" @@ -2521,99 +2567,99 @@ msgstr "" #. type: item #. #-#-#-#-# guix.pot (guix manual checkout) #-#-#-#-# #. type: cindex -#: guix-git/doc/contributing.texi:1757 guix-git/doc/guix.texi:2988 +#: guix-git/doc/contributing.texi:1790 guix-git/doc/guix.texi:3005 #, no-wrap msgid "packages" msgstr "pacotes" #. type: table -#: guix-git/doc/contributing.texi:1762 +#: guix-git/doc/contributing.texi:1795 msgid "Package descriptions occasionally contain Texinfo markup (@pxref{Synopses and Descriptions}). Texinfo markup looks like @samp{@@code@{rm -rf@}}, @samp{@@emph@{important@}}, etc. When translating, please leave markup as is." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1771 +#: guix-git/doc/contributing.texi:1804 msgid "The characters after ``@@'' form the name of the markup, and the text between ``@{'' and ``@}'' is its content. In general, you should not translate the content of markup like @code{@@code}, as it contains literal code that do not change with language. You can translate the content of formatting markup such as @code{@@emph}, @code{@@i}, @code{@@itemize}, @code{@@item}. However, do not translate the name of the markup, or it will not be recognized. Do not translate the word after @code{@@end}, it is the name of the markup that is closed at this position (e.g.@: @code{@@itemize ... @@end itemize})." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1772 +#: guix-git/doc/contributing.texi:1805 #, no-wrap msgid "documentation-manual and documentation-cookbook" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1776 +#: guix-git/doc/contributing.texi:1809 msgid "The first step to ensure a successful translation of the manual is to find and translate the following strings @emph{first}:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1778 +#: guix-git/doc/contributing.texi:1811 #, no-wrap msgid "@code{version.texi}: Translate this string as @code{version-xx.texi}," msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1781 +#: guix-git/doc/contributing.texi:1814 msgid "where @code{xx} is your language code (the one shown in the URL on weblate)." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1781 +#: guix-git/doc/contributing.texi:1814 #, no-wrap msgid "@code{contributing.texi}: Translate this string as" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1783 +#: guix-git/doc/contributing.texi:1816 msgid "@code{contributing.xx.texi}, where @code{xx} is the same language code." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1783 +#: guix-git/doc/contributing.texi:1816 #, no-wrap msgid "@code{Top}: Do not translate this string, it is important for Texinfo." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1786 +#: guix-git/doc/contributing.texi:1819 msgid "If you translate it, the document will be empty (missing a Top node). Please look for it, and register @code{Top} as its translation." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1791 +#: guix-git/doc/contributing.texi:1824 msgid "Translating these strings first ensure we can include your translation in the guix repository without breaking the make process or the @command{guix pull} machinery." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1798 +#: guix-git/doc/contributing.texi:1831 msgid "The manual and the cookbook both use Texinfo. As for @code{packages}, please keep Texinfo markup as is. There are more possible markup types in the manual than in the package descriptions. In general, do not translate the content of @code{@@code}, @code{@@file}, @code{@@var}, @code{@@value}, etc. You should translate the content of formatting markup such as @code{@@emph}, @code{@@i}, etc." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1806 +#: guix-git/doc/contributing.texi:1839 msgid "The manual contains sections that can be referred to by name by @code{@@ref}, @code{@@xref} and @code{@@pxref}. We have a mechanism in place so you do not have to translate their content. If you keep the English title, we will automatically replace it with your translation of that title. This ensures that Texinfo will always be able to find the node. If you decide to change the translation of the title, the references will automatically be updated and you will not have to update them all yourself." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1816 +#: guix-git/doc/contributing.texi:1849 msgid "When translating references from the cookbook to the manual, you need to replace the name of the manual and the name of the section. For instance, to translate @code{@@pxref@{Defining Packages,,, guix, GNU Guix Reference Manual@}}, you would replace @code{Defining Packages} with the title of that section in the translated manual @emph{only} if that title is translated. If the title is not translated in your language yet, do not translate it here, or the link will be broken. Replace @code{guix} with @code{guix.xx} where @code{xx} is your language code. @code{GNU Guix Reference Manual} is the text of the link. You can translate it however you wish." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1817 +#: guix-git/doc/contributing.texi:1850 #, fuzzy, no-wrap #| msgid "official website" msgid "website" -msgstr "site oficial" +msgstr "website" #. type: table -#: guix-git/doc/contributing.texi:1824 +#: guix-git/doc/contributing.texi:1857 msgid "The website pages are written using SXML, an s-expression version of HTML, the basic language of the web. We have a process to extract translatable strings from the source, and replace complex s-expressions with a more familiar XML markup, where each markup is numbered. Translators can arbitrarily change the ordering, as in the following example." msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1831 +#: guix-git/doc/contributing.texi:1864 #, no-wrap msgid "" "#. TRANSLATORS: Defining Packages is a section name\n" @@ -2624,143 +2670,144 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1834 +#: guix-git/doc/contributing.texi:1867 msgid "Note that you need to include the same markups. You cannot skip any." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1842 +#: guix-git/doc/contributing.texi:1875 msgid "In case you make a mistake, the component might fail to build properly with your language, or even make guix pull fail. To prevent that, we have a process in place to check the content of the files before pushing to our repository. We will not be able to update the translation for your language in Guix, so we will notify you (through weblate and/or by email) so you get a chance to fix the issue." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1843 +#: guix-git/doc/contributing.texi:1876 #, no-wrap msgid "Outside of Weblate" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1846 +#: guix-git/doc/contributing.texi:1879 msgid "Currently, some parts of Guix cannot be translated on Weblate, help wanted!" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1848 +#: guix-git/doc/contributing.texi:1881 #, no-wrap msgid "@command{guix pull} news can be translated in @file{news.scm}, but is not" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1854 +#: guix-git/doc/contributing.texi:1887 msgid "available from Weblate. If you want to provide a translation, you can prepare a patch as described above, or simply send us your translation with the name of the news entry you translated and your language. @xref{Writing Channel News}, for more information about channel news." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1854 +#: guix-git/doc/contributing.texi:1887 #, no-wrap msgid "Guix blog posts cannot currently be translated." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1855 +#: guix-git/doc/contributing.texi:1888 #, no-wrap msgid "The installer script (for foreign distributions) is entirely in English." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1856 +#: guix-git/doc/contributing.texi:1889 #, no-wrap msgid "Some of the libraries Guix uses cannot be translated or are translated" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1858 +#: guix-git/doc/contributing.texi:1891 msgid "outside of the Guix project. Guile itself is not internationalized." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1858 +#: guix-git/doc/contributing.texi:1891 #, no-wrap msgid "Other manuals linked from this manual or the cookbook might not be" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1860 +#: guix-git/doc/contributing.texi:1893 msgid "translated." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1862 +#: guix-git/doc/contributing.texi:1895 #, no-wrap msgid "Translation Infrastructure" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1873 +#: guix-git/doc/contributing.texi:1906 msgid "Weblate is backed by a git repository from which it discovers new strings to translate and pushes new and updated translations. Normally, it would be enough to give it commit access to our repositories. However, we decided to use a separate repository for two reasons. First, we would have to give Weblate commit access and authorize its signing key, but we do not trust it in the same way we trust guix developers, especially since we do not manage the instance ourselves. Second, if translators mess something up, it can break the generation of the website and/or guix pull for all our users, independently of their language." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1877 +#: guix-git/doc/contributing.texi:1910 msgid "For these reasons, we use a dedicated repository to host translations, and we synchronize it with our guix and artworks repositories after checking no issue was introduced in the translation." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1883 +#: guix-git/doc/contributing.texi:1916 msgid "Developers can download the latest PO files from weblate in the Guix repository by running the @command{make download-po} command. It will automatically download the latest files from weblate, reformat them to a canonical form, and check they do not contain issues. The manual needs to be built again to check for additional issues that might crash Texinfo." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1887 +#: guix-git/doc/contributing.texi:1920 msgid "Before pushing new translation files, developers should add them to the make machinery so the translations are actually available. The process differs for the various components." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1889 +#: guix-git/doc/contributing.texi:1922 #, no-wrap msgid "New po files for the @code{guix} and @code{packages} components must" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1892 +#: guix-git/doc/contributing.texi:1925 msgid "be registered by adding the new language to @file{po/guix/LINGUAS} or @file{po/packages/LINGUAS}." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1892 +#: guix-git/doc/contributing.texi:1925 #, no-wrap msgid "New po files for the @code{documentation-manual} component must be" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1898 +#: guix-git/doc/contributing.texi:1931 msgid "registered by adding the file name to @code{DOC_PO_FILES} in @file{po/doc/local.mk}, the generated @file{%D%/guix.xx.texi} manual to @code{info_TEXINFOS} in @file{doc/local.mk} and the generated @file{%D%/guix.xx.texi} and @file{%D%/contributing.xx.texi} to @code{TRANSLATED_INFO} also in @file{doc/local.mk}." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1898 +#: guix-git/doc/contributing.texi:1931 #, no-wrap msgid "New po files for the @code{documentation-cookbook} component must be" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1904 +#: guix-git/doc/contributing.texi:1937 msgid "registered by adding the file name to @code{DOC_COOKBOOK_PO_FILES} in @file{po/doc/local.mk}, the generated @file{%D%/guix-cookbook.xx.texi} manual to @code{info_TEXINFOS} in @file{doc/local.mk} and the generated @file{%D%/guix-cookbook.xx.texi} to @code{TRANSLATED_INFO} also in @file{doc/local.mk}." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1904 +#: guix-git/doc/contributing.texi:1937 #, no-wrap msgid "New po files for the @code{website} component must be added to the" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1909 +#: guix-git/doc/contributing.texi:1942 msgid "@code{guix-artwork} repository, in @file{website/po/}. @file{website/po/LINGUAS} and @file{website/po/ietf-tags.scm} must be updated accordingly (see @file{website/i18n-howto.txt} for more information on the process)." msgstr "" #. type: Plain text #: guix-git/doc/guix.texi:7 +#, fuzzy msgid "@documentencoding UTF-8" msgstr "" "@documentencoding UTF-8\n" @@ -2781,7 +2828,7 @@ msgstr "version-pt_BR.texi" #. type: copying #: guix-git/doc/guix.texi:103 -msgid "Copyright @copyright{} 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" +msgid "Copyright @copyright{} 2012-2022 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021, 2022 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021, 2022 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021, 2022 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021, 2022 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" msgstr "" #. type: copying @@ -2793,7 +2840,7 @@ msgstr "Permissão concedida para copiar, distribuir e/ou modificar este documen #: guix-git/doc/guix.texi:112 #, no-wrap msgid "System administration" -msgstr "Administração do sistema" +msgstr "Administração de Sistemas" #. type: menuentry #: guix-git/doc/guix.texi:120 @@ -2946,7 +2993,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:192 -#: guix-git/doc/guix.texi:402 guix-git/doc/guix.texi:403 +#: guix-git/doc/guix.texi:403 guix-git/doc/guix.texi:404 #, no-wrap msgid "Introduction" msgstr "Introdução" @@ -2958,7 +3005,7 @@ msgstr "Sobre o que é o Guix?" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:197 -#: guix-git/doc/guix.texi:589 guix-git/doc/guix.texi:590 +#: guix-git/doc/guix.texi:600 guix-git/doc/guix.texi:601 #, no-wrap msgid "Installation" msgstr "Instalação" @@ -2970,7 +3017,7 @@ msgstr "Instalando o Guix." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:213 -#: guix-git/doc/guix.texi:2049 guix-git/doc/guix.texi:2050 +#: guix-git/doc/guix.texi:2066 guix-git/doc/guix.texi:2067 #, no-wrap msgid "System Installation" msgstr "Instalação do sistema" @@ -2981,11 +3028,11 @@ msgid "Installing the whole operating system." msgstr "Instalando todo o sistema operacional." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:2777 -#: guix-git/doc/guix.texi:2778 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:2794 +#: guix-git/doc/guix.texi:2795 #, no-wrap msgid "Getting Started" -msgstr "" +msgstr "Primeiros passos" #. type: menuentry #: guix-git/doc/guix.texi:182 @@ -2994,7 +3041,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:230 -#: guix-git/doc/guix.texi:2985 guix-git/doc/guix.texi:2986 +#: guix-git/doc/guix.texi:3002 guix-git/doc/guix.texi:3003 #, no-wrap msgid "Package Management" msgstr "Gerenciamento de pacote" @@ -3006,7 +3053,7 @@ msgstr "Instalação de pacote, atualização, etc." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:253 -#: guix-git/doc/guix.texi:5053 guix-git/doc/guix.texi:5054 +#: guix-git/doc/guix.texi:5071 guix-git/doc/guix.texi:5072 #, no-wrap msgid "Channels" msgstr "Canais" @@ -3018,7 +3065,7 @@ msgstr "Personalizando a coleção de pacotes." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:267 -#: guix-git/doc/guix.texi:5581 guix-git/doc/guix.texi:5582 +#: guix-git/doc/guix.texi:5599 guix-git/doc/guix.texi:5600 #, no-wrap msgid "Development" msgstr "Desenvolvimento" @@ -3030,7 +3077,7 @@ msgstr "Desenvolvimento de software auxiliado pelo Guix." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:275 -#: guix-git/doc/guix.texi:6799 guix-git/doc/guix.texi:6800 +#: guix-git/doc/guix.texi:6842 guix-git/doc/guix.texi:6843 #, no-wrap msgid "Programming Interface" msgstr "Interface de programação" @@ -3041,8 +3088,8 @@ msgid "Using Guix in Scheme." msgstr "Usando o Guix no Scheme." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:294 -#: guix-git/doc/guix.texi:10774 guix-git/doc/guix.texi:10775 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:295 +#: guix-git/doc/guix.texi:11088 guix-git/doc/guix.texi:11089 #, no-wrap msgid "Utilities" msgstr "Utilitários" @@ -3053,8 +3100,8 @@ msgid "Package management commands." msgstr "Comandos de gerenciamento de pacote." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:320 -#: guix-git/doc/guix.texi:14278 guix-git/doc/guix.texi:14279 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:321 +#: guix-git/doc/guix.texi:14635 guix-git/doc/guix.texi:14636 #, no-wrap msgid "System Configuration" msgstr "Configuração do sistema" @@ -3065,8 +3112,8 @@ msgid "Configuring the operating system." msgstr "Configurando o sistema operacional." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:36881 -#: guix-git/doc/guix.texi:36882 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37371 +#: guix-git/doc/guix.texi:37372 #, fuzzy, no-wrap #| msgid "System Configuration" msgid "Home Configuration" @@ -3080,8 +3127,8 @@ msgid "Configuring the home environment." msgstr "Configurando o \"bootloader\"." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37721 -#: guix-git/doc/guix.texi:37722 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38210 +#: guix-git/doc/guix.texi:38211 #, no-wrap msgid "Documentation" msgstr "Documentação" @@ -3092,8 +3139,8 @@ msgid "Browsing software user manuals." msgstr "Navegando por manuais do usuário do software." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:389 -#: guix-git/doc/guix.texi:37787 guix-git/doc/guix.texi:37788 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:390 +#: guix-git/doc/guix.texi:38276 guix-git/doc/guix.texi:38277 #, no-wrap msgid "Installing Debugging Files" msgstr "Instalando arquivos de depuração" @@ -3104,8 +3151,8 @@ msgid "Feeding the debugger." msgstr "Alimentando o depurador." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37942 -#: guix-git/doc/guix.texi:37943 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38431 +#: guix-git/doc/guix.texi:38432 #, no-wrap msgid "Security Updates" msgstr "Atualizações de segurança" @@ -3116,8 +3163,8 @@ msgid "Deploying security fixes quickly." msgstr "Implementando correções de segurança rapidamente." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:394 -#: guix-git/doc/guix.texi:38057 guix-git/doc/guix.texi:38058 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:395 +#: guix-git/doc/guix.texi:38546 guix-git/doc/guix.texi:38547 #, no-wrap msgid "Bootstrapping" msgstr "Inicializando" @@ -3128,7 +3175,7 @@ msgid "GNU/Linux built from scratch." msgstr "GNU/Linux compilado do zero." #. type: node -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38349 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38838 #, no-wrap msgid "Porting" msgstr "Portando" @@ -3144,8 +3191,8 @@ msgid "Your help needed!" msgstr "Sua ajuda é necessária!" #. type: chapter -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38397 -#: guix-git/doc/guix.texi:38398 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38886 +#: guix-git/doc/guix.texi:38887 #, no-wrap msgid "Acknowledgments" msgstr "Agradecimentos" @@ -3156,8 +3203,8 @@ msgid "Thanks!" msgstr "Obrigado!" #. type: appendix -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38419 -#: guix-git/doc/guix.texi:38420 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38908 +#: guix-git/doc/guix.texi:38909 #, no-wrap msgid "GNU Free Documentation License" msgstr "Licença de Documentação Livre GNU" @@ -3168,8 +3215,8 @@ msgid "The license of this manual." msgstr "A licença deste manual." #. type: unnumbered -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38425 -#: guix-git/doc/guix.texi:38426 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38914 +#: guix-git/doc/guix.texi:38915 #, no-wrap msgid "Concept Index" msgstr "Índice de conceitos" @@ -3180,8 +3227,8 @@ msgid "Concepts." msgstr "Conceitos." #. type: unnumbered -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38429 -#: guix-git/doc/guix.texi:38430 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38918 +#: guix-git/doc/guix.texi:38919 #, no-wrap msgid "Programming Index" msgstr "Índice de programação" @@ -3197,2151 +3244,2176 @@ msgid "--- The Detailed Node Listing ---" msgstr "--- A listagem detalhada de nós ---" #. type: section -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 -#: guix-git/doc/guix.texi:431 guix-git/doc/guix.texi:432 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 +#: guix-git/doc/guix.texi:432 guix-git/doc/guix.texi:433 #, no-wrap msgid "Managing Software the Guix Way" msgstr "Gerenciando software do jeito do Guix" #. type: menuentry -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 msgid "What's special." msgstr "O que há de especial." #. type: section -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 -#: guix-git/doc/guix.texi:486 guix-git/doc/guix.texi:487 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 +#: guix-git/doc/guix.texi:487 guix-git/doc/guix.texi:488 #, no-wrap msgid "GNU Distribution" msgstr "Distribuição GNU" #. type: menuentry -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 msgid "The packages and tools." msgstr "Os pacotes e as ferramentas." #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:631 guix-git/doc/guix.texi:632 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:642 guix-git/doc/guix.texi:643 #, no-wrap msgid "Binary Installation" msgstr "Instalação de binários" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Getting Guix running in no time!" msgstr "Faça o Guix funcionar rapidamente!" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:871 guix-git/doc/guix.texi:872 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:882 guix-git/doc/guix.texi:883 #, no-wrap msgid "Requirements" msgstr "Requisitos" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Software needed to build and run Guix." msgstr "Software necessário para compilar e executar o Guix." #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:957 guix-git/doc/guix.texi:958 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:969 guix-git/doc/guix.texi:970 #, no-wrap msgid "Running the Test Suite" msgstr "Executando a suíte de testes" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Testing Guix." msgstr "Testando o Guix." #. type: section #: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:207 -#: guix-git/doc/guix.texi:629 guix-git/doc/guix.texi:1054 -#: guix-git/doc/guix.texi:1055 +#: guix-git/doc/guix.texi:640 guix-git/doc/guix.texi:1066 +#: guix-git/doc/guix.texi:1067 #, no-wrap msgid "Setting Up the Daemon" msgstr "Configurando o daemon" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Preparing the build daemon's environment." msgstr "Preparando o ambiente do daemon de compilação." #. type: node -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:1525 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:1542 #, no-wrap msgid "Invoking guix-daemon" msgstr "Invocando guix-daemon" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Running the build daemon." msgstr "Executando o daemon de compilação." #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:1827 guix-git/doc/guix.texi:1828 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:1844 guix-git/doc/guix.texi:1845 #, no-wrap msgid "Application Setup" msgstr "Configuração de aplicativo" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Application-specific setup." msgstr "Configuração específica de aplicativo." #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:2012 guix-git/doc/guix.texi:2013 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:2029 guix-git/doc/guix.texi:2030 #, no-wrap msgid "Upgrading Guix" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Upgrading Guix and its build daemon." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1076 guix-git/doc/guix.texi:1077 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1088 guix-git/doc/guix.texi:1089 #, no-wrap msgid "Build Environment Setup" msgstr "Configuração do ambiente de compilação" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Preparing the isolated build environment." msgstr "Preparando o ambiente de compilação isolado." #. type: node -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1195 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1212 #, no-wrap msgid "Daemon Offload Setup" msgstr "Configuração de descarregamento de daemon" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Offloading builds to remote machines." msgstr "Descarregando compilações para máquinas remotas." #. type: subsection -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1434 guix-git/doc/guix.texi:1435 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1451 guix-git/doc/guix.texi:1452 #, no-wrap msgid "SELinux Support" msgstr "Suporte a SELinux" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Using an SELinux policy for the daemon." msgstr "Usando um política SELinux para o daemon." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:1470 -#: guix-git/doc/guix.texi:2083 guix-git/doc/guix.texi:2085 -#: guix-git/doc/guix.texi:2086 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:1487 +#: guix-git/doc/guix.texi:2100 guix-git/doc/guix.texi:2102 +#: guix-git/doc/guix.texi:2103 #, no-wrap msgid "Limitations" msgstr "Limitações" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "What you can expect." msgstr "O que você pode esperar." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2111 guix-git/doc/guix.texi:2112 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2128 guix-git/doc/guix.texi:2129 #, no-wrap msgid "Hardware Considerations" msgstr "Considerações de hardware" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Supported hardware." msgstr "Hardware suportado." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2146 guix-git/doc/guix.texi:2147 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2163 guix-git/doc/guix.texi:2164 #, no-wrap msgid "USB Stick and DVD Installation" msgstr "Instalação em um pendrive e em DVD" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Preparing the installation medium." msgstr "Preparando a mídia de instalação." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2227 guix-git/doc/guix.texi:2228 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2244 guix-git/doc/guix.texi:2245 #, no-wrap msgid "Preparing for Installation" msgstr "Preparando para instalação" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Networking, partitioning, etc." msgstr "Rede, particionamento, etc." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2250 guix-git/doc/guix.texi:2251 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2267 guix-git/doc/guix.texi:2268 #, no-wrap msgid "Guided Graphical Installation" msgstr "Instalação gráfica guiada" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Easy graphical installation." msgstr "Instalação gráfica fácil." #. type: section #: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:225 -#: guix-git/doc/guix.texi:2083 guix-git/doc/guix.texi:2281 -#: guix-git/doc/guix.texi:2282 +#: guix-git/doc/guix.texi:2100 guix-git/doc/guix.texi:2298 +#: guix-git/doc/guix.texi:2299 #, no-wrap msgid "Manual Installation" msgstr "Instalação manual" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Manual installation for wizards." msgstr "Instalação manual para magos." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2660 guix-git/doc/guix.texi:2661 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2677 guix-git/doc/guix.texi:2678 #, no-wrap msgid "After System Installation" msgstr "Após a instalação do sistema" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "When installation succeeded." msgstr "Quando a instalação conclui com sucesso." #. type: node -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2694 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2711 #, no-wrap msgid "Installing Guix in a VM" msgstr "Instalando Guix em um VM" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Guix System playground." msgstr "Parque de diversões do Guix System." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2745 guix-git/doc/guix.texi:2746 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2762 guix-git/doc/guix.texi:2763 #, no-wrap msgid "Building the Installation Image" msgstr "Compilando a imagem de instalação" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "How this comes to be." msgstr "Como isso vem a ser." #. type: node -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 -#: guix-git/doc/guix.texi:2301 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 +#: guix-git/doc/guix.texi:2318 #, no-wrap msgid "Keyboard Layout and Networking and Partitioning" msgstr "Disposição de teclado e rede e particionamento" #. type: menuentry -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 msgid "Initial setup." msgstr "Configuração inicial." #. type: subsection -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 -#: guix-git/doc/guix.texi:2571 guix-git/doc/guix.texi:2572 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 +#: guix-git/doc/guix.texi:2588 guix-git/doc/guix.texi:2589 #, no-wrap msgid "Proceeding with the Installation" msgstr "Prosseguindo com a instalação" #. type: menuentry -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 msgid "Installing." msgstr "Instalando." #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:3019 guix-git/doc/guix.texi:3020 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3036 guix-git/doc/guix.texi:3037 #, no-wrap msgid "Features" msgstr "Recursos" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "How Guix will make your life brighter." msgstr "Como o Guix vai iluminar a sua vida." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:3109 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3126 #, no-wrap msgid "Invoking guix package" msgstr "Invocando guix package" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Package installation, removal, etc." msgstr "Instalação de pacote, remoção, etc." #. type: section #: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:243 -#: guix-git/doc/guix.texi:3017 guix-git/doc/guix.texi:3738 -#: guix-git/doc/guix.texi:3739 +#: guix-git/doc/guix.texi:3034 guix-git/doc/guix.texi:3756 +#: guix-git/doc/guix.texi:3757 #, no-wrap msgid "Substitutes" msgstr "Substitutos" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Downloading pre-built binaries." msgstr "Baixando binários pré-compilados." #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4074 guix-git/doc/guix.texi:4075 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4092 guix-git/doc/guix.texi:4093 #, no-wrap msgid "Packages with Multiple Outputs" msgstr "Pacotes com múltiplas saídas" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Single source package, multiple outputs." msgstr "Um único pacote de fontes, várias saídas." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4128 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4146 #, no-wrap msgid "Invoking guix gc" msgstr "Invocando guix gc" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Running the garbage collector." msgstr "Executando o coletor de lixo." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4338 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4356 #, no-wrap msgid "Invoking guix pull" msgstr "Invocando guix pull" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Fetching the latest Guix and distribution." msgstr "Obtendo o Guix mais recente e distribuição." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4585 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4603 #, no-wrap msgid "Invoking guix time-machine" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Running an older revision of Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4640 guix-git/doc/guix.texi:4641 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4658 guix-git/doc/guix.texi:4659 #, no-wrap msgid "Inferiors" msgstr "Inferiores" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Interacting with another revision of Guix." msgstr "Interagindo com outra revisão do Guix." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4768 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4786 #, no-wrap msgid "Invoking guix describe" msgstr "Invocando guix describe" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Display information about your Guix revision." msgstr "Exibe informações sobre sua revisão do Guix." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4863 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4881 #, no-wrap msgid "Invoking guix archive" msgstr "Invocando guix archive" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Exporting and importing store files." msgstr "Exportando e importando arquivos do armazém." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3764 guix-git/doc/guix.texi:3765 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3782 guix-git/doc/guix.texi:3783 #, fuzzy, no-wrap #| msgid "Official Substitute Server" msgid "Official Substitute Servers" msgstr "Servidor substituto oficial" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "One particular source of substitutes." msgstr "Uma fonte específica de substitutos." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3794 guix-git/doc/guix.texi:3795 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3812 guix-git/doc/guix.texi:3813 #, no-wrap msgid "Substitute Server Authorization" msgstr "Autorização de servidor substituto" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How to enable or disable substitutes." msgstr "Como habilitar ou desabilitar substitutos." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3864 guix-git/doc/guix.texi:3865 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3882 guix-git/doc/guix.texi:3883 #, no-wrap msgid "Getting Substitutes from Other Servers" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "Substitute diversity." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3969 guix-git/doc/guix.texi:3970 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3987 guix-git/doc/guix.texi:3988 #, no-wrap msgid "Substitute Authentication" msgstr "Autenticação de substituto" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How Guix verifies substitutes." msgstr "Como Guix verifica substitutos." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4004 guix-git/doc/guix.texi:4005 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4022 guix-git/doc/guix.texi:4023 #, no-wrap msgid "Proxy Settings" msgstr "Configurações de proxy" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How to get substitutes via proxy." msgstr "Como obter substitutos via proxy." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4016 guix-git/doc/guix.texi:4017 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4034 guix-git/doc/guix.texi:4035 #, no-wrap msgid "Substitution Failure" msgstr "Falha na substituição" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "What happens when substitution fails." msgstr "O que acontece quando a substituição falha." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4044 guix-git/doc/guix.texi:4045 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4062 guix-git/doc/guix.texi:4063 #, no-wrap msgid "On Trusting Binaries" msgstr "Confiança em binários" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How can you trust that binary blob?" msgstr "Como você pode confiar naquele blob binário?" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5086 guix-git/doc/guix.texi:5087 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5104 guix-git/doc/guix.texi:5105 #, no-wrap msgid "Specifying Additional Channels" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Extending the package collection." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5136 guix-git/doc/guix.texi:5137 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5154 guix-git/doc/guix.texi:5155 #, no-wrap msgid "Using a Custom Guix Channel" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Using a customized Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5158 guix-git/doc/guix.texi:5159 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5176 guix-git/doc/guix.texi:5177 #, no-wrap msgid "Replicating Guix" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Running the @emph{exact same} Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5199 guix-git/doc/guix.texi:5200 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5217 guix-git/doc/guix.texi:5218 #, no-wrap msgid "Channel Authentication" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How Guix verifies what it fetches." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5239 guix-git/doc/guix.texi:5240 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5257 guix-git/doc/guix.texi:5258 #, no-wrap msgid "Channels with Substitutes" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Using channels with available substitutes." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5264 guix-git/doc/guix.texi:5265 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5282 guix-git/doc/guix.texi:5283 #, no-wrap msgid "Creating a Channel" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How to write your custom channel." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5331 guix-git/doc/guix.texi:5332 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5349 guix-git/doc/guix.texi:5350 #, no-wrap msgid "Package Modules in a Sub-directory" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Specifying the channel's package modules location." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5345 guix-git/doc/guix.texi:5346 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5363 guix-git/doc/guix.texi:5364 #, no-wrap msgid "Declaring Channel Dependencies" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How to depend on other channels." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5387 guix-git/doc/guix.texi:5388 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5405 guix-git/doc/guix.texi:5406 #, no-wrap msgid "Specifying Channel Authorizations" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Defining channel authors authorizations." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5488 guix-git/doc/guix.texi:5489 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5506 guix-git/doc/guix.texi:5507 #, no-wrap msgid "Primary URL" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Distinguishing mirror to original." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5511 guix-git/doc/guix.texi:5512 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5529 guix-git/doc/guix.texi:5530 #, no-wrap msgid "Writing Channel News" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Communicating information to channel's users." msgstr "" #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:5603 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:5621 #, fuzzy, no-wrap #| msgid "Invoking guix size" msgid "Invoking guix shell" msgstr "Invocando guix size" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 #, fuzzy #| msgid "Preparing the isolated build environment." msgid "Spawning one-off software environments." msgstr "Preparando o ambiente de compilação isolado." #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:5956 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:5993 #, no-wrap msgid "Invoking guix environment" msgstr "Invocando guix environment" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Setting up development environments." msgstr "Configurando ambientes de desenvolvimento." #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6325 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6368 #, no-wrap msgid "Invoking guix pack" msgstr "Invocando guix pack" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Creating software bundles." msgstr "Criando pacotes de software." #. type: section -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6711 guix-git/doc/guix.texi:6712 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6754 guix-git/doc/guix.texi:6755 #, no-wrap msgid "The GCC toolchain" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Working with languages supported by GCC." msgstr "" #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6737 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6780 #, no-wrap msgid "Invoking guix git authenticate" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Authenticating Git repositories." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:6841 guix-git/doc/guix.texi:6842 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:6885 guix-git/doc/guix.texi:6886 #, no-wrap msgid "Package Modules" msgstr "Módulos de pacote" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Packages from the programmer's viewpoint." msgstr "Pacotes do ponto de vista do programador." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:289 -#: guix-git/doc/guix.texi:6839 guix-git/doc/guix.texi:6903 -#: guix-git/doc/guix.texi:6904 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:290 +#: guix-git/doc/guix.texi:6883 guix-git/doc/guix.texi:6947 +#: guix-git/doc/guix.texi:6948 #, no-wrap msgid "Defining Packages" msgstr "Definindo pacotes" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Defining new packages." msgstr "Definindo novos pacotes." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:7554 guix-git/doc/guix.texi:7555 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:7612 guix-git/doc/guix.texi:7613 #, no-wrap msgid "Defining Package Variants" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Customizing packages." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:7821 guix-git/doc/guix.texi:7822 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:7879 guix-git/doc/guix.texi:7880 #, no-wrap msgid "Build Systems" msgstr "Sistemas de compilação" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Specifying how packages are built." msgstr "Especificando como pacotes são compilados." #. type: subsection -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:8861 guix-git/doc/guix.texi:8862 -#: guix-git/doc/guix.texi:9292 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:8918 guix-git/doc/guix.texi:8919 +#: guix-git/doc/guix.texi:9427 #, no-wrap msgid "Build Phases" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Phases of the build process of a package." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9055 guix-git/doc/guix.texi:9056 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9116 guix-git/doc/guix.texi:9117 #, no-wrap msgid "Build Utilities" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Helpers for your package definitions and more." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9369 guix-git/doc/guix.texi:9370 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9504 guix-git/doc/guix.texi:9505 +#, fuzzy, no-wrap +#| msgid "--search-paths" +msgid "Search Paths" +msgstr "--search-paths" + +#. type: menuentry +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#, fuzzy +#| msgid "Preparing the isolated build environment." +msgid "Declaring search path environment variables." +msgstr "Declarando o Ambiente Doméstico" + +#. type: section +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9683 guix-git/doc/guix.texi:9684 #, no-wrap msgid "The Store" msgstr "O armazém" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Manipulating the package store." msgstr "Manipulação do armazém de pacotes." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9522 guix-git/doc/guix.texi:9523 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9836 guix-git/doc/guix.texi:9837 #, no-wrap msgid "Derivations" msgstr "Derivações" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Low-level interface to package derivations." msgstr "Interface de baixo nível para derivações de pacotes." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9716 guix-git/doc/guix.texi:9717 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10030 guix-git/doc/guix.texi:10031 #, no-wrap msgid "The Store Monad" msgstr "A mônada do armazém" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Purely functional interface to the store." msgstr "Interface puramente funcional para o armazém." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:10035 guix-git/doc/guix.texi:10036 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10349 guix-git/doc/guix.texi:10350 #, no-wrap msgid "G-Expressions" msgstr "Expressões-G" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Manipulating build expressions." msgstr "Manipulação de expressões de compilação." #. type: node -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:10674 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10988 #, no-wrap msgid "Invoking guix repl" msgstr "Invocando guix repl" #. type: menuentry -#: guix-git/doc/guix.texi:287 +#: guix-git/doc/guix.texi:288 msgid "Programming Guix in Guile." msgstr "" #. type: node -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 -#: guix-git/doc/guix.texi:7103 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 +#: guix-git/doc/guix.texi:7147 #, no-wrap msgid "package Reference" msgstr "Referência do package" #. type: menuentry -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 msgid "The package data type." msgstr "O tipo de dados package." #. type: node -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 -#: guix-git/doc/guix.texi:7362 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 +#: guix-git/doc/guix.texi:7420 #, no-wrap msgid "origin Reference" msgstr "Referência do origin" #. type: menuentry -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 msgid "The origin data type." msgstr "O tipo de dados origin." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:10801 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:11115 #, no-wrap msgid "Invoking guix build" msgstr "Invocando guix build" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Building packages from the command line." msgstr "Compilando pacotes a partir da linha de comando." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11699 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12013 #, no-wrap msgid "Invoking guix edit" msgstr "Invocando guix edit" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Editing package definitions." msgstr "Editando definições de pacote." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11729 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12043 #, no-wrap msgid "Invoking guix download" msgstr "Invocando guix download" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Downloading a file and printing its hash." msgstr "Baixando um arquivo e imprimindo seu hash." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11787 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12101 #, no-wrap msgid "Invoking guix hash" msgstr "Invocando guix hash" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Computing the cryptographic hash of a file." msgstr "Computando a hash criptográfica de um arquivo." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11877 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12192 #, no-wrap msgid "Invoking guix import" msgstr "Invocando guix import" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Importing package definitions." msgstr "Importando definições de pacote." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12412 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12727 #, no-wrap msgid "Invoking guix refresh" msgstr "Invocando guix refresh" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Updating package definitions." msgstr "Atualizando definições de pacotes." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12784 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13099 #, fuzzy, no-wrap #| msgid "Invoking guix system" msgid "Invoking guix style" msgstr "Invocando guix system" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 #, fuzzy #| msgid "Editing package definitions." msgid "Styling package definitions." msgstr "Editando definições de pacote." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12880 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13237 #, no-wrap msgid "Invoking guix lint" msgstr "Invocando guix lint" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Finding errors in package definitions." msgstr "Encontrando erros nas definições de pacote." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13056 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13413 #, no-wrap msgid "Invoking guix size" msgstr "Invocando guix size" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Profiling disk usage." msgstr "Perfilando uso de disco." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13200 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13557 #, no-wrap msgid "Invoking guix graph" msgstr "Invocando guix graph" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Visualizing the graph of packages." msgstr "Visualizando o grafo de pacotes." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13481 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13838 #, no-wrap msgid "Invoking guix publish" msgstr "Invocando guix publish" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Sharing substitutes." msgstr "Compartilhando substitutos." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13750 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14107 #, no-wrap msgid "Invoking guix challenge" msgstr "Invocando guix challenge" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Challenging substitute servers." msgstr "Desafiando servidores substitutos." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13933 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14290 #, no-wrap msgid "Invoking guix copy" msgstr "Invocando guix copy" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Copying to and from a remote store." msgstr "Copiando para e de um armazém remoto." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13996 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14353 #, no-wrap msgid "Invoking guix container" msgstr "Invocando guix container" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Process isolation." msgstr "Isolação de processo." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:14050 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14407 #, no-wrap msgid "Invoking guix weather" msgstr "Invocando guix weather" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Assessing substitute availability." msgstr "Acessando disponibilidade de substituto." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:14180 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14537 #, no-wrap msgid "Invoking guix processes" msgstr "Invocando guix processes" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Listing client processes." msgstr "Listando processos do cliente." #. type: section -#: guix-git/doc/guix.texi:313 guix-git/doc/guix.texi:10802 +#: guix-git/doc/guix.texi:314 guix-git/doc/guix.texi:11116 #, no-wrap msgid "Invoking @command{guix build}" msgstr "Invocando @command{guix build}" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:10855 guix-git/doc/guix.texi:10856 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11169 guix-git/doc/guix.texi:11170 #, no-wrap msgid "Common Build Options" msgstr "Opções de compilação comum" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Build options for most commands." msgstr "Opções de compilação para a maioria dos comandos." #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11010 guix-git/doc/guix.texi:11011 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11324 guix-git/doc/guix.texi:11325 #, no-wrap msgid "Package Transformation Options" msgstr "Opções de transformação de pacote" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Creating variants of packages." msgstr "Criando variantes de pacotes." #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11381 guix-git/doc/guix.texi:11382 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11695 guix-git/doc/guix.texi:11696 #, no-wrap msgid "Additional Build Options" msgstr "Opções de compilação adicional" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Options specific to 'guix build'." msgstr "Opções específicas para \"guix build\"." #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11619 guix-git/doc/guix.texi:11620 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11933 guix-git/doc/guix.texi:11934 #, no-wrap msgid "Debugging Build Failures" msgstr "Depurando falhas de compilação" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Real life packaging experience." msgstr "Experiência de empacotamento na vida real." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14324 guix-git/doc/guix.texi:14325 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:14681 guix-git/doc/guix.texi:14682 #, no-wrap msgid "Using the Configuration System" msgstr "Usando o sistema de configuração" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Customizing your GNU system." msgstr "Personalizando seu sistema GNU." #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14575 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:14932 #, no-wrap msgid "operating-system Reference" msgstr "Referência do operating-system" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Detail of operating-system declarations." msgstr "Detalhe das declarações do operating-system." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14798 guix-git/doc/guix.texi:14799 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15155 guix-git/doc/guix.texi:15156 #, no-wrap msgid "File Systems" msgstr "Sistemas de arquivos" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring file system mounts." msgstr "Configurando montagens de sistema de arquivos." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15151 guix-git/doc/guix.texi:15152 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15508 guix-git/doc/guix.texi:15509 #, no-wrap msgid "Mapped Devices" msgstr "Dispositivos mapeados" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Block device extra processing." msgstr "Processamento extra de dispositivo de bloco." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15300 guix-git/doc/guix.texi:15301 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15657 guix-git/doc/guix.texi:15658 #, no-wrap msgid "Swap Space" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Backing RAM with disk space." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15400 guix-git/doc/guix.texi:15401 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15757 guix-git/doc/guix.texi:15758 #, no-wrap msgid "User Accounts" msgstr "Contas de usuários" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Specifying user accounts." msgstr "Especificando contas de usuários." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:2308 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15581 -#: guix-git/doc/guix.texi:15582 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:2325 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:15938 +#: guix-git/doc/guix.texi:15939 #, no-wrap msgid "Keyboard Layout" msgstr "Disposição do teclado" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "How the system interprets key strokes." msgstr "Como o sistema interpreta pressionamento de teclas." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1835 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15727 -#: guix-git/doc/guix.texi:15728 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:1852 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:16084 +#: guix-git/doc/guix.texi:16085 #, no-wrap msgid "Locales" msgstr "Locales" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Language and cultural convention settings." msgstr "Configurações de idioma e de convenção cultural." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:345 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15867 -#: guix-git/doc/guix.texi:15868 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:346 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:16224 +#: guix-git/doc/guix.texi:16225 #, no-wrap msgid "Services" msgstr "Serviços" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Specifying system services." msgstr "Especificando serviços de sistema." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34056 guix-git/doc/guix.texi:34057 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34493 guix-git/doc/guix.texi:34494 #, no-wrap msgid "Setuid Programs" msgstr "Programas setuid" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Programs running with root privileges." msgstr "Programas sendo executados com privilégios de root." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1984 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:34140 -#: guix-git/doc/guix.texi:34141 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:2001 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:34579 +#: guix-git/doc/guix.texi:34580 #, no-wrap msgid "X.509 Certificates" msgstr "Certificados X.509" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Authenticating HTTPS servers." msgstr "Autenticando servidores HTTPS." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1878 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:34203 -#: guix-git/doc/guix.texi:34204 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:1895 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:34642 +#: guix-git/doc/guix.texi:34643 #, no-wrap msgid "Name Service Switch" msgstr "Name Service Switch" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring libc's name service switch." msgstr "Configurando name service switch do libc." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34341 guix-git/doc/guix.texi:34342 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34780 guix-git/doc/guix.texi:34781 #, no-wrap msgid "Initial RAM Disk" msgstr "Disco de RAM inicial" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Linux-Libre bootstrapping." msgstr "Inicialização do Linux-Libre." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34536 guix-git/doc/guix.texi:34537 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34975 guix-git/doc/guix.texi:34976 #, no-wrap msgid "Bootloader Configuration" msgstr "Configuração do carregador de inicialização" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring the boot loader." msgstr "Configurando o \"bootloader\"." #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34834 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:35273 #, no-wrap msgid "Invoking guix system" msgstr "Invocando guix system" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Instantiating a system configuration." msgstr "Inicializando uma configuração de sistema." #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:35425 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:35881 #, no-wrap msgid "Invoking guix deploy" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Deploying a system configuration to a remote host." msgstr "" #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:35631 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:36121 #, no-wrap msgid "Running Guix in a VM" msgstr "Executando Guix em uma VM" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "How to run Guix System in a virtual machine." msgstr "Como executar Guix System em uma máquina virtual." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:381 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:35765 -#: guix-git/doc/guix.texi:35766 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:382 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:36255 +#: guix-git/doc/guix.texi:36256 #, no-wrap msgid "Defining Services" msgstr "Definindo serviços" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Adding new service definitions." msgstr "Adicionando novas definições de serviço." #. type: menuentry -#: guix-git/doc/guix.texi:341 +#: guix-git/doc/guix.texi:342 #, fuzzy #| msgid "System Configuration" msgid "Home Environment Configuration" msgstr "Configuração do sistema" #. type: node -#: guix-git/doc/guix.texi:343 guix-git/doc/guix.texi:36944 -#: guix-git/doc/guix.texi:37478 +#: guix-git/doc/guix.texi:344 guix-git/doc/guix.texi:37434 +#: guix-git/doc/guix.texi:37974 #, fuzzy, no-wrap #| msgid "Invoking guix hash" msgid "Invoking guix home" msgstr "Invocando guix hash" #. type: menuentry -#: guix-git/doc/guix.texi:343 +#: guix-git/doc/guix.texi:344 #, fuzzy #| msgid "Instantiating a system configuration." msgid "Instantiating a home environment configuration." msgstr "Inicializando uma configuração de sistema." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:15953 guix-git/doc/guix.texi:15954 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:16310 guix-git/doc/guix.texi:16311 #, no-wrap msgid "Base Services" msgstr "Serviços base" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Essential system services." msgstr "Serviços essenciais do sistema." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:16880 guix-git/doc/guix.texi:16881 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17242 guix-git/doc/guix.texi:17243 #, no-wrap msgid "Scheduled Job Execution" msgstr "Execução de trabalho agendado" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The mcron service." msgstr "O serviço mcron." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17030 guix-git/doc/guix.texi:17031 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17392 guix-git/doc/guix.texi:17393 #, no-wrap msgid "Log Rotation" msgstr "Rotação de log" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The rottlog service." msgstr "O serviço rottlog." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17143 guix-git/doc/guix.texi:17144 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17505 guix-git/doc/guix.texi:17506 #, fuzzy, no-wrap #| msgid "Networking" msgid "Networking Setup" msgstr "Rede" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#, fuzzy -#| msgid "user interfaces" +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Setting up network interfaces." -msgstr "interfaces de usuário" +msgstr "Configurando interfaces de rede." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17561 guix-git/doc/guix.texi:17562 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17923 guix-git/doc/guix.texi:17924 #, no-wrap msgid "Networking Services" msgstr "Serviços de Rede" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 #, fuzzy #| msgid "Network setup, SSH daemon, etc." msgid "Firewall, SSH daemon, etc." msgstr "Configuração de rede, daemon SSH, etc." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19020 guix-git/doc/guix.texi:19021 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19382 guix-git/doc/guix.texi:19383 #, no-wrap msgid "Unattended Upgrades" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Automated system upgrades." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19158 guix-git/doc/guix.texi:19159 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19520 guix-git/doc/guix.texi:19521 #, no-wrap msgid "X Window" msgstr "X Window" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Graphical display." msgstr "Exibição gráfica." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19556 guix-git/doc/guix.texi:19557 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19918 guix-git/doc/guix.texi:19919 #, no-wrap msgid "Printing Services" msgstr "Serviços de impressão" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Local and remote printer support." msgstr "Suporte a impressora local e remota." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:20409 guix-git/doc/guix.texi:20410 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:20771 guix-git/doc/guix.texi:20772 #, no-wrap msgid "Desktop Services" msgstr "Serviços de desktop" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "D-Bus and desktop services." msgstr "Serviços de D-Bus e desktop." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:20928 guix-git/doc/guix.texi:20929 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21290 guix-git/doc/guix.texi:21291 #, no-wrap msgid "Sound Services" msgstr "Serviços de som" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "ALSA and Pulseaudio services." msgstr "Serviços ALSA e Pulseaudio." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:21068 guix-git/doc/guix.texi:21069 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21430 guix-git/doc/guix.texi:21431 #, no-wrap msgid "Database Services" msgstr "Serviços de bancos de dados" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "SQL databases, key-value stores, etc." msgstr "Banco de dados SQL, armazenamentos de valor chave, etc." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:21403 guix-git/doc/guix.texi:21404 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21765 guix-git/doc/guix.texi:21766 #, no-wrap msgid "Mail Services" msgstr "Serviços de correio" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "IMAP, POP3, SMTP, and all that." msgstr "IMAP, POP3, SMTP e tudo isso." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:23262 guix-git/doc/guix.texi:23263 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:23624 guix-git/doc/guix.texi:23625 #, no-wrap msgid "Messaging Services" msgstr "Serviços de mensageria" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Messaging services." msgstr "Serviços de mensageria." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:23765 guix-git/doc/guix.texi:23766 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:24127 guix-git/doc/guix.texi:24128 #, no-wrap msgid "Telephony Services" msgstr "Serviços de telefonia" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Telephony services." msgstr "Serviços de telefonia." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:24996 guix-git/doc/guix.texi:24997 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25358 guix-git/doc/guix.texi:25359 #, no-wrap msgid "Monitoring Services" msgstr "Serviços de monitoramento" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Monitoring services." msgstr "Serviços de monitoramento." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:25507 guix-git/doc/guix.texi:25508 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25844 guix-git/doc/guix.texi:25845 #, no-wrap msgid "Kerberos Services" msgstr "Serviços Kerberos" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Kerberos services." msgstr "Serviços Kerberos." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:25633 guix-git/doc/guix.texi:25634 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25970 guix-git/doc/guix.texi:25971 #, no-wrap msgid "LDAP Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "LDAP services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:26112 guix-git/doc/guix.texi:26113 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:26449 guix-git/doc/guix.texi:26450 #, no-wrap msgid "Web Services" msgstr "Serviços Web" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Web servers." msgstr "Servidores Web." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:27320 guix-git/doc/guix.texi:27321 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:27657 guix-git/doc/guix.texi:27658 #, no-wrap msgid "Certificate Services" msgstr "Serviços de certificado" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "TLS certificates via Let's Encrypt." msgstr "Certificados TLS via Let's Encrypt." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:27501 guix-git/doc/guix.texi:27502 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:27838 guix-git/doc/guix.texi:27839 #, no-wrap msgid "DNS Services" msgstr "Serviços DNS" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "DNS daemons." msgstr "Deamons DNS." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28246 guix-git/doc/guix.texi:28247 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:28583 guix-git/doc/guix.texi:28584 #, no-wrap msgid "VPN Services" msgstr "Serviços VPN" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "VPN daemons." msgstr "Deamons VPN." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28758 guix-git/doc/guix.texi:28759 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29095 guix-git/doc/guix.texi:29096 #, no-wrap msgid "Network File System" msgstr "Sistema de arquivos de rede" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "NFS related services." msgstr "Serviços relacionados a NFS." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28954 guix-git/doc/guix.texi:28955 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29291 guix-git/doc/guix.texi:29292 #, no-wrap msgid "Continuous Integration" msgstr "Integração contínua" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 #, fuzzy msgid "Cuirass and Laminar services." msgstr "O serviço Cuirass." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29240 guix-git/doc/guix.texi:29241 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29577 guix-git/doc/guix.texi:29578 #, no-wrap msgid "Power Management Services" msgstr "Serviços de gerenciamento de energia" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Extending battery life." msgstr "Estendendo a vida da bateria." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29774 guix-git/doc/guix.texi:29775 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:30139 guix-git/doc/guix.texi:30140 #, no-wrap msgid "Audio Services" msgstr "Serviços de áudio" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The MPD." msgstr "O MPD." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29893 guix-git/doc/guix.texi:29894 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:30258 guix-git/doc/guix.texi:30259 #, no-wrap msgid "Virtualization Services" msgstr "Serviços de virtualização" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Virtualization services." msgstr "Serviços de virtualização." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:31561 guix-git/doc/guix.texi:31562 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:31926 guix-git/doc/guix.texi:31927 #, no-wrap msgid "Version Control Services" msgstr "Serviços de controlando versão" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Providing remote access to Git repositories." msgstr "Fornecendo acesso remoto a repositórios Git." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:32897 guix-git/doc/guix.texi:32898 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33262 guix-git/doc/guix.texi:33263 #, no-wrap msgid "Game Services" msgstr "Serviços de jogos" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Game servers." msgstr "Servidores de jogos." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:32929 guix-git/doc/guix.texi:32930 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33294 guix-git/doc/guix.texi:33295 #, no-wrap msgid "PAM Mount Service" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Service to mount volumes when logging in." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33012 guix-git/doc/guix.texi:33013 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33377 guix-git/doc/guix.texi:33378 #, no-wrap msgid "Guix Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services relating specifically to Guix." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33290 guix-git/doc/guix.texi:33291 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33727 guix-git/doc/guix.texi:33728 #, no-wrap msgid "Linux Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services tied to the Linux kernel." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33517 guix-git/doc/guix.texi:33518 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33954 guix-git/doc/guix.texi:33955 #, no-wrap msgid "Hurd Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services specific for a Hurd System." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33559 guix-git/doc/guix.texi:33560 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33996 guix-git/doc/guix.texi:33997 #, no-wrap msgid "Miscellaneous Services" msgstr "Serviços diversos" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Other services." msgstr "Outros serviços." #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35780 guix-git/doc/guix.texi:35781 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36270 guix-git/doc/guix.texi:36271 #, no-wrap msgid "Service Composition" msgstr "Composição de serviço" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "The model for composing services." msgstr "O modelo para serviços de composição." #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35836 guix-git/doc/guix.texi:35837 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36326 guix-git/doc/guix.texi:36327 #, no-wrap msgid "Service Types and Services" msgstr "Tipos de Service e Serviços" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "Types and services." msgstr "Tipos e serviços." #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35973 guix-git/doc/guix.texi:35974 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36463 guix-git/doc/guix.texi:36464 #, no-wrap msgid "Service Reference" msgstr "Referência de Service" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "API reference." msgstr "Referência de API." #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:36292 guix-git/doc/guix.texi:36293 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36782 guix-git/doc/guix.texi:36783 #, no-wrap msgid "Shepherd Services" msgstr "Serviços de Shepherd" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "A particular type of service." msgstr "Um tipo em particular de serviço." #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:36511 guix-git/doc/guix.texi:36512 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:37001 guix-git/doc/guix.texi:37002 #, fuzzy, no-wrap #| msgid "System Configuration" msgid "Complex Configurations" msgstr "Configuração do sistema" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 #, fuzzy #| msgid "Instantiating a system configuration." msgid "Defining bindings for complex configurations." msgstr "Inicializando uma configuração de sistema." #. type: section -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 -#: guix-git/doc/guix.texi:37806 guix-git/doc/guix.texi:37807 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 +#: guix-git/doc/guix.texi:38295 guix-git/doc/guix.texi:38296 #, no-wrap msgid "Separate Debug Info" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 msgid "Installing 'debug' outputs." msgstr "" #. type: section -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 -#: guix-git/doc/guix.texi:37879 guix-git/doc/guix.texi:37880 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 +#: guix-git/doc/guix.texi:38368 guix-git/doc/guix.texi:38369 #, no-wrap msgid "Rebuilding Debug Info" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 msgid "Building missing debug info." msgstr "" #. type: node -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 -#: guix-git/doc/guix.texi:38098 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 +#: guix-git/doc/guix.texi:38587 #, no-wrap msgid "Reduced Binary Seed Bootstrap" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 msgid "A Bootstrap worthy of GNU." msgstr "" #. type: section -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 -#: guix-git/doc/guix.texi:38173 guix-git/doc/guix.texi:38174 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 +#: guix-git/doc/guix.texi:38662 guix-git/doc/guix.texi:38663 #, no-wrap msgid "Preparing to Use the Bootstrap Binaries" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 msgid "Building that what matters most." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:405 +#: guix-git/doc/guix.texi:406 #, no-wrap msgid "purpose" msgstr "propósito" #. type: Plain text -#: guix-git/doc/guix.texi:413 +#: guix-git/doc/guix.texi:414 msgid "GNU Guix@footnote{``Guix'' is pronounced like ``geeks'', or ``ɡiːks'' using the international phonetic alphabet (IPA).} is a package management tool for and distribution of the GNU system. Guix makes it easy for unprivileged users to install, upgrade, or remove software packages, to roll back to a previous package set, to build packages from source, and generally assists with the creation and maintenance of software environments." msgstr "GNU Guix@footnote{``Guix'' é pronunciado como ``geeks'', ou ``ɡiːks'' usando o alfabeto fonético internacional (IPA).} é uma ferramenta de gerenciamento de pacotes e distribuição do sistema GNU. O Guix facilita a instalação, a atualização ou a remoção de pacotes de software, a reversão para um conjunto de pacotes anterior, a compilação de pacotes a partir do código-fonte e geralmente ajuda na criação e manutenção de ambientes de software." #. type: cindex -#: guix-git/doc/guix.texi:414 guix-git/doc/guix.texi:489 +#: guix-git/doc/guix.texi:415 guix-git/doc/guix.texi:490 #, no-wrap msgid "Guix System" msgstr "Guix System" #. type: cindex -#: guix-git/doc/guix.texi:415 +#: guix-git/doc/guix.texi:416 #, no-wrap msgid "GuixSD, now Guix System" msgstr "GuixSD, agora Guix System" #. type: cindex -#: guix-git/doc/guix.texi:416 +#: guix-git/doc/guix.texi:417 #, no-wrap msgid "Guix System Distribution, now Guix System" msgstr "Guix System Distribution, agora Guix System" #. type: Plain text -#: guix-git/doc/guix.texi:425 +#: guix-git/doc/guix.texi:426 msgid "You can install GNU@tie{}Guix on top of an existing GNU/Linux system where it complements the available tools without interference (@pxref{Installation}), or you can use it as a standalone operating system distribution, @dfn{Guix@tie{}System}@footnote{We used to refer to Guix System as ``Guix System Distribution'' or ``GuixSD''. We now consider it makes more sense to group everything under the ``Guix'' banner since, after all, Guix System is readily available through the @command{guix system} command, even if you're using a different distro underneath!}. @xref{GNU Distribution}." msgstr "Você pode instalar o GNU@tie{}Guix sobre um sistema GNU/Linux existente, onde ele complementa as ferramentas disponíveis sem interferência (@pxref{Instalação}) ou você pode usá-lo como uma distribuição de sistema operacional independente, @dfn{Guix@tie{}System}@footnote{Costumávamos nos referir ao Guix System como ``Guix System Distribution'' ou ``GuixSD''. Agora consideramos que faz mais sentido agrupar tudo sob o banner ``Guix'', pois, afinal, o Guix System está prontamente disponível através do comando @command{guix system}, mesmo se você estiver usando uma distribuição diferente por baixo!}. @xref{Distribuição GNU}." #. type: cindex -#: guix-git/doc/guix.texi:434 +#: guix-git/doc/guix.texi:435 #, no-wrap msgid "user interfaces" msgstr "interfaces de usuário" #. type: Plain text -#: guix-git/doc/guix.texi:440 +#: guix-git/doc/guix.texi:441 msgid "Guix provides a command-line package management interface (@pxref{Package Management}), tools to help with software development (@pxref{Development}), command-line utilities for more advanced usage (@pxref{Utilities}), as well as Scheme programming interfaces (@pxref{Programming Interface})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:440 +#: guix-git/doc/guix.texi:441 #, no-wrap msgid "build daemon" msgstr "build daemon" #. type: Plain text -#: guix-git/doc/guix.texi:444 +#: guix-git/doc/guix.texi:445 msgid "Its @dfn{build daemon} is responsible for building packages on behalf of users (@pxref{Setting Up the Daemon}) and for downloading pre-built binaries from authorized sources (@pxref{Substitutes})." msgstr "O @dfn{build daemon} é responsável por compilar pacotes em nome dos usuários (@pxref{Configurando o daemon}) e por baixar binários pré-compilados de fontes autorizados (@pxref{Substitutos})." #. type: cindex -#: guix-git/doc/guix.texi:445 +#: guix-git/doc/guix.texi:446 #, no-wrap msgid "extensibility of the distribution" msgstr "extensibilidade da distribuição" #. type: cindex -#: guix-git/doc/guix.texi:446 guix-git/doc/guix.texi:6863 +#: guix-git/doc/guix.texi:447 guix-git/doc/guix.texi:6907 #, no-wrap msgid "customization, of packages" msgstr "personalização, de pacotes" #. type: Plain text -#: guix-git/doc/guix.texi:455 +#: guix-git/doc/guix.texi:456 msgid "Guix includes package definitions for many GNU and non-GNU packages, all of which @uref{https://www.gnu.org/philosophy/free-sw.html, respect the user's computing freedom}. It is @emph{extensible}: users can write their own package definitions (@pxref{Defining Packages}) and make them available as independent package modules (@pxref{Package Modules}). It is also @emph{customizable}: users can @emph{derive} specialized package definitions from existing ones, including from the command line (@pxref{Package Transformation Options})." msgstr "Guix inclui definições de pacotes para muitos pacotes GNU e não-GNU, todos os quais @uref{https://www.gnu.org/philosophy/free-sw.html, respeitam a liberdade de computação do usuário}. É @emph{extensível}: os usuários podem escrever suas próprias definições de pacotes (@pxref{Definindo pacotes}) e disponibilizá-los como módulos de pacotes independentes (@pxref{Módulos de pacote}). Também é @emph{personalizável}: os usuários podem @emph{derivar} definições de pacotes especializados das existentes, incluindo da linha de comando (@pxref{Opções de transformação de pacote})." #. type: cindex -#: guix-git/doc/guix.texi:456 +#: guix-git/doc/guix.texi:457 #, no-wrap msgid "functional package management" msgstr "gerenciamento de pacotes funcional" #. type: cindex -#: guix-git/doc/guix.texi:457 +#: guix-git/doc/guix.texi:458 #, no-wrap msgid "isolation" msgstr "isolação" #. type: Plain text -#: guix-git/doc/guix.texi:472 +#: guix-git/doc/guix.texi:473 msgid "Under the hood, Guix implements the @dfn{functional package management} discipline pioneered by Nix (@pxref{Acknowledgments}). In Guix, the package build and installation process is seen as a @emph{function}, in the mathematical sense. That function takes inputs, such as build scripts, a compiler, and libraries, and returns an installed package. As a pure function, its result depends solely on its inputs---for instance, it cannot refer to software or scripts that were not explicitly passed as inputs. A build function always produces the same result when passed a given set of inputs. It cannot alter the environment of the running system in any way; for instance, it cannot create, modify, or delete files outside of its build and installation directories. This is achieved by running build processes in isolated environments (or @dfn{containers}), where only their explicit inputs are visible." msgstr "Nos bastidores, a Guix implementa a disciplina @dfn{gerenciamento de pacotes funcional} pioneira da Nix (@pxref{Agradecimentos}). No Guix, o processo de compilação e instalação de pacotes é visto como uma @emph{função}, no sentido matemático. Essa função recebe entradas, como scripts de compilação, um compilador e bibliotecas, e retorna um pacote instalado. Como uma função pura, seu resultado depende apenas de suas entradas – por exemplo, não pode fazer referência a um software ou scripts que não foram explicitamente passados como entradas. Uma função de compilação sempre produz o mesmo resultado ao passar por um determinado conjunto de entradas. Não pode alterar o ambiente do sistema em execução de qualquer forma; por exemplo, ele não pode criar, modificar ou excluir arquivos fora de seus diretórios de compilação e instalação. Isto é conseguido através da execução de processos de compilação em ambientes isolados (ou @dfn{containers}), onde somente suas entradas explícitas são visíveis." #. type: cindex -#: guix-git/doc/guix.texi:473 guix-git/doc/guix.texi:9372 +#: guix-git/doc/guix.texi:474 guix-git/doc/guix.texi:9686 #, no-wrap msgid "store" msgstr "armazém" #. type: Plain text -#: guix-git/doc/guix.texi:480 +#: guix-git/doc/guix.texi:481 msgid "The result of package build functions is @dfn{cached} in the file system, in a special directory called @dfn{the store} (@pxref{The Store}). Each package is installed in a directory of its own in the store---by default under @file{/gnu/store}. The directory name contains a hash of all the inputs used to build that package; thus, changing an input yields a different directory name." msgstr "O resultado das funções de compilação do pacote é mantido (@dfn{cached}) no sistema de arquivos, em um diretório especial chamado @dfn{armazém} (@pxref{The Store}). Cada pacote é instalado em um diretório próprio no armazém – por padrão, em @file{/gnu/store}. O nome do diretório contém um hash de todas as entradas usadas para compilar esse pacote; Assim, a alteração uma entrada gera um nome de diretório diferente." #. type: Plain text -#: guix-git/doc/guix.texi:484 +#: guix-git/doc/guix.texi:485 msgid "This approach is the foundation for the salient features of Guix: support for transactional package upgrade and rollback, per-user installation, and garbage collection of packages (@pxref{Features})." msgstr "Essa abordagem é a fundação para os principais recursos do Guix: suporte para atualização transacional de pacotes e reversão, instalação por usuário e coleta de lixo de pacotes (@pxref{Recursos})." #. type: Plain text -#: guix-git/doc/guix.texi:499 +#: guix-git/doc/guix.texi:500 msgid "Guix comes with a distribution of the GNU system consisting entirely of free software@footnote{The term ``free'' here refers to the @url{https://www.gnu.org/philosophy/free-sw.html,freedom provided to users of that software}.}. The distribution can be installed on its own (@pxref{System Installation}), but it is also possible to install Guix as a package manager on top of an installed GNU/Linux system (@pxref{Installation}). When we need to distinguish between the two, we refer to the standalone distribution as Guix@tie{}System." msgstr "O Guix vem com uma distribuição do sistema GNU que consiste inteiramente de software livre@footnote{O termo ``free'' em ``free software`` se refere à @url{https://www.gnu.org/philosophy/free-sw.html,liberdade fornecida aos usuários desse software}. A ambiguidade no termo em inglês não ocorre na tradução para português ``livre``.}. A distribuição pode ser instalada por conta própria (@pxref{Instalação do sistema}), mas também é possível instalar o Guix como um gerenciador de pacotes em cima de um sistema GNU/Linux instalado (@pxref{Instalação}). Quando precisamos distinguir entre os dois, nos referimos à distribuição independente como Guix@tie{}System." #. type: Plain text -#: guix-git/doc/guix.texi:505 +#: guix-git/doc/guix.texi:506 msgid "The distribution provides core GNU packages such as GNU libc, GCC, and Binutils, as well as many GNU and non-GNU applications. The complete list of available packages can be browsed @url{https://www.gnu.org/software/guix/packages,on-line} or by running @command{guix package} (@pxref{Invoking guix package}):" msgstr "A distribuição fornece pacotes GNU principais, como GNU libc, GCC e Binutils, além de muitos aplicativos GNU e não GNU. A lista completa de pacotes disponíveis pode ser acessada @url{https://www.gnu.org/software/guix/packages,online} ou executando @command{guix package} (@pxref{Invocando guix package}):" #. type: example -#: guix-git/doc/guix.texi:508 +#: guix-git/doc/guix.texi:509 #, no-wrap msgid "guix package --list-available\n" msgstr "guix package --list-available\n" #. type: Plain text -#: guix-git/doc/guix.texi:514 +#: guix-git/doc/guix.texi:515 msgid "Our goal is to provide a practical 100% free software distribution of Linux-based and other variants of GNU, with a focus on the promotion and tight integration of GNU components, and an emphasis on programs and tools that help users exert that freedom." msgstr "Nosso objetivo é fornecer uma distribuição prática e 100% de software livre, baseada em Linux e outras variantes do GNU, com foco na promoção e forte integração de componentes do GNU e ênfase em programas e ferramentas que ajudam os usuários a exercer essa liberdade." #. type: Plain text -#: guix-git/doc/guix.texi:516 +#: guix-git/doc/guix.texi:517 msgid "Packages are currently available on the following platforms:" msgstr "Os pacotes estão atualmente disponíveis nas seguintes plataformas:" #. type: item -#: guix-git/doc/guix.texi:519 guix-git/doc/guix.texi:2155 +#: guix-git/doc/guix.texi:520 guix-git/doc/guix.texi:2172 #, no-wrap msgid "x86_64-linux" msgstr "x86_64-linux" #. type: table -#: guix-git/doc/guix.texi:521 +#: guix-git/doc/guix.texi:522 msgid "Intel/AMD @code{x86_64} architecture, Linux-Libre kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:522 guix-git/doc/guix.texi:2158 +#: guix-git/doc/guix.texi:523 guix-git/doc/guix.texi:2175 #, no-wrap msgid "i686-linux" msgstr "i686-linux" #. type: table -#: guix-git/doc/guix.texi:524 +#: guix-git/doc/guix.texi:525 msgid "Intel 32-bit architecture (IA32), Linux-Libre kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:525 +#: guix-git/doc/guix.texi:526 #, no-wrap msgid "armhf-linux" msgstr "armhf-linux" #. type: table -#: guix-git/doc/guix.texi:529 +#: guix-git/doc/guix.texi:530 msgid "ARMv7-A architecture with hard float, Thumb-2 and NEON, using the EABI hard-float application binary interface (ABI), and Linux-Libre kernel." msgstr "Arquitetura ARMv7-A com hard float, Thumb-2 e NEON, usando a interface binária de aplicativos EABI hard-float (ABI) e o kernel Linux-Libre." #. type: item -#: guix-git/doc/guix.texi:530 +#: guix-git/doc/guix.texi:531 #, no-wrap msgid "aarch64-linux" msgstr "aarch64-linux" #. type: table -#: guix-git/doc/guix.texi:532 +#: guix-git/doc/guix.texi:533 msgid "little-endian 64-bit ARMv8-A processors, Linux-Libre kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:533 +#: guix-git/doc/guix.texi:534 #, no-wrap msgid "i586-gnu" msgstr "" #. type: table -#: guix-git/doc/guix.texi:536 +#: guix-git/doc/guix.texi:537 msgid "@uref{https://hurd.gnu.org, GNU/Hurd} on the Intel 32-bit architecture (IA32)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:542 +#: guix-git/doc/guix.texi:543 msgid "This configuration is experimental and under development. The easiest way for you to give it a try is by setting up an instance of @code{hurd-vm-service-type} on your GNU/Linux machine (@pxref{transparent-emulation-qemu, @code{hurd-vm-service-type}}). @xref{Contributing}, on how to help!" msgstr "" #. type: item -#: guix-git/doc/guix.texi:543 +#: guix-git/doc/guix.texi:544 #, no-wrap msgid "mips64el-linux (unsupported)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:549 +#: guix-git/doc/guix.texi:550 msgid "little-endian 64-bit MIPS processors, specifically the Loongson series, n32 ABI, and Linux-Libre kernel. This configuration is no longer fully supported; in particular, there is no ongoing work to ensure that this architecture still works. Should someone decide they wish to revive this architecture then the code is still available." msgstr "" #. type: item -#: guix-git/doc/guix.texi:550 +#: guix-git/doc/guix.texi:551 #, no-wrap msgid "powerpc-linux (unsupported)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:555 +#: guix-git/doc/guix.texi:556 msgid "big-endian 32-bit PowerPC processors, specifically the PowerPC G4 with AltiVec support, and Linux-Libre kernel. This configuration is not fully supported and there is no ongoing work to ensure this architecture works." msgstr "" #. type: table -#: guix-git/doc/guix.texi:566 +#: guix-git/doc/guix.texi:567 msgid "little-endian 64-bit Power ISA processors, Linux-Libre kernel. This includes POWER9 systems such as the @uref{https://www.fsf.org/news/talos-ii-mainboard-and-talos-ii-lite-mainboard-now-fsf-certified-to-respect-your-freedom, RYF Talos II mainboard}. This platform is available as a \"technology preview\": although it is supported, substitutes are not yet available from the build farm (@pxref{Substitutes}), and some packages may fail to build (@pxref{Tracking Bugs and Patches}). That said, the Guix community is actively working on improving this support, and now is a great time to try it and get involved!" msgstr "" -#. type: Plain text +#. type: item +#: guix-git/doc/guix.texi:568 +#, fuzzy, no-wrap +#| msgid "aarch64-linux" +msgid "riscv64-linux" +msgstr "aarch64-linux" + +#. type: table #: guix-git/doc/guix.texi:576 +msgid "little-endian 64-bit RISC-V processors, specifically RV64GC, and Linux-Libre kernel. This playform is available as a \"technology preview\": although it is supported, substitutes are not yet available from the build farm (@pxref{Substitutes}), and some packages may fail to build (@pxref{Tracking Bugs and Patches}). That said, the Guix community is actively working on improving this support, and now is a great time to try it and get involved!" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:586 msgid "With Guix@tie{}System, you @emph{declare} all aspects of the operating system configuration and Guix takes care of instantiating the configuration in a transactional, reproducible, and stateless fashion (@pxref{System Configuration}). Guix System uses the Linux-libre kernel, the Shepherd initialization system (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}), the well-known GNU utilities and tool chain, as well as the graphical environment or system services of your choice." msgstr "Com o Guix@tie{}System, você @emph{declara} todos os aspectos da configuração do sistema operacional, e o Guix cuida de instanciar a configuração de maneira transacional, reproduzível e sem estado (@pxref{Configuração do sistema}). O Guix System usa o kernel Linux-libre, o sistema de inicialização Shepherd (@pxref{Introduction ,,, shepherd, The GNU Shepherd Manual}), os conhecidos utilitários do GNU e cadeia de ferramentas, bem como o ambiente gráfico ou os serviços de sistema do sua escolha." #. type: Plain text -#: guix-git/doc/guix.texi:579 +#: guix-git/doc/guix.texi:590 #, fuzzy -msgid "Guix System is available on all the above platforms except @code{mips64el-linux} and @code{powerpc64le-linux}." +msgid "Guix System is available on all the above platforms except @code{mips64el-linux}, @code{powerpc-linux}, @code{powerpc64le-linux} and @code{riscv64-linux}." msgstr "O Guix System está disponível em todas as plataformas acima, exceto @code{mips64el-linux}." #. type: Plain text -#: guix-git/doc/guix.texi:583 +#: guix-git/doc/guix.texi:594 msgid "For information on porting to other architectures or kernels, @pxref{Porting}." msgstr "Para obter informações sobre como portar para outras arquiteturas ou kernels, @pxref{Portando}." #. type: Plain text -#: guix-git/doc/guix.texi:586 +#: guix-git/doc/guix.texi:597 msgid "Building this distribution is a cooperative effort, and you are invited to join! @xref{Contributing}, for information about how you can help." msgstr "A construção desta distribuição é um esforço cooperativo e você está convidado a participar! @xref{Contribuindo}, para obter informações sobre como você pode ajudar." #. type: cindex -#: guix-git/doc/guix.texi:592 +#: guix-git/doc/guix.texi:603 #, no-wrap msgid "installing Guix" msgstr "instalando Guix" #. type: quotation -#: guix-git/doc/guix.texi:604 +#: guix-git/doc/guix.texi:615 msgid "We recommend the use of this @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, shell installer script} to install Guix on top of a running GNU/Linux system, thereafter called a @dfn{foreign distro}.@footnote{This section is concerned with the installation of the package manager, which can be done on top of a running GNU/Linux system. If, instead, you want to install the complete GNU operating system, @pxref{System Installation}.} The script automates the download, installation, and initial configuration of Guix. It should be run as the root user." msgstr "Recomendamos o uso deste @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, script de instalação do shell} para instalar o Guix sobre o sistema GNU/Linux que você esteja usando, posteriormente denominado @dfn{distro alheia}.@footnote{Esta seção trata da instalação do gerenciador de pacotes, que pode ser feita sobre um sistema GNU/Linux atualmente em uso. Se, em vez disso, você deseja instalar o sistema operacional GNU completo, @pxref{Instalação do sistema}.} O script automatiza o download, a instalação e a configuração inicial do Guix. Ele deve ser executado como usuário root." #. type: cindex -#: guix-git/doc/guix.texi:606 guix-git/doc/guix.texi:1830 +#: guix-git/doc/guix.texi:617 guix-git/doc/guix.texi:1847 #, no-wrap msgid "foreign distro" msgstr "distro alheia" #. type: cindex -#: guix-git/doc/guix.texi:607 +#: guix-git/doc/guix.texi:618 #, no-wrap msgid "directories related to foreign distro" msgstr "diretórios relacionados à distro alheia" #. type: Plain text -#: guix-git/doc/guix.texi:612 +#: guix-git/doc/guix.texi:623 msgid "When installed on a foreign distro, GNU@tie{}Guix complements the available tools without interference. Its data lives exclusively in two directories, usually @file{/gnu/store} and @file{/var/guix}; other files on your system, such as @file{/etc}, are left untouched." msgstr "Quando instalado sobre uma distro alheia. GNU@tie{}Guix complementa as ferramentas disponíveis sem interferência. Seus dados residem exclusivamente em dois diretórios, geralmente @file{/gnu/store} e @file{/var/guix}; outros arquivos no seu sistema, como @file{/etc}, são deixados intactos." #. type: Plain text -#: guix-git/doc/guix.texi:615 +#: guix-git/doc/guix.texi:626 msgid "Once installed, Guix can be updated by running @command{guix pull} (@pxref{Invoking guix pull})." msgstr "Uma vez instalado, o Guix pode ser atualizado executando @command{guix pull} (@pxref{Invocando guix pull})." #. type: Plain text -#: guix-git/doc/guix.texi:620 +#: guix-git/doc/guix.texi:631 msgid "If you prefer to perform the installation steps manually or want to tweak them, you may find the following subsections useful. They describe the software requirements of Guix, as well as how to install it manually and get ready to use it." msgstr "Se você preferir executar as etapas de instalação manualmente ou desejar ajustá-las, poderá achar úteis as seguintes subseções. Eles descrevem os requisitos de software do Guix, bem como instalá-lo manualmente e se preparar para usá-lo." #. type: cindex -#: guix-git/doc/guix.texi:634 +#: guix-git/doc/guix.texi:645 #, no-wrap msgid "installing Guix from binaries" msgstr "instalando Guix de binários" #. type: cindex -#: guix-git/doc/guix.texi:635 +#: guix-git/doc/guix.texi:646 #, no-wrap msgid "installer script" msgstr "script de instalação" #. type: Plain text -#: guix-git/doc/guix.texi:641 +#: guix-git/doc/guix.texi:652 msgid "This section describes how to install Guix on an arbitrary system from a self-contained tarball providing binaries for Guix and for all its dependencies. This is often quicker than installing from source, which is described in the next sections. The only requirement is to have GNU@tie{}tar and Xz." msgstr "Esta seção descreve como instalar o Guix em um sistema arbitrário a partir de um tarball independente que fornece binários para o Guix e para todas as suas dependências. Isso geralmente é mais rápido do que instalar do código-fonte, o que é descrito nas próximas seções. O único requisito é ter o GNU@tie{}tar e Xz." #. type: quotation -#: guix-git/doc/guix.texi:649 +#: guix-git/doc/guix.texi:660 msgid "We recommend the use of this @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, shell installer script}. The script automates the download, installation, and initial configuration steps described below. It should be run as the root user. As root, you can thus run this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:655 +#: guix-git/doc/guix.texi:666 #, no-wrap msgid "" "cd /tmp\n" @@ -5351,33 +5423,33 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:659 +#: guix-git/doc/guix.texi:670 msgid "When you're done, @pxref{Application Setup} for extra configuration you might need, and @ref{Getting Started} for your first steps!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:662 +#: guix-git/doc/guix.texi:673 msgid "Installing goes along these lines:" msgstr "A instalação segue as seguintes linhas:" #. type: cindex -#: guix-git/doc/guix.texi:665 +#: guix-git/doc/guix.texi:676 #, no-wrap msgid "downloading Guix binary" msgstr "baixando binário do Guix" #. type: enumerate -#: guix-git/doc/guix.texi:671 +#: guix-git/doc/guix.texi:682 msgid "Download the binary tarball from @indicateurl{@value{BASE-URL}/guix-binary-@value{VERSION}.x86_64-linux.tar.xz}, where @code{x86_64-linux} can be replaced with @code{i686-linux} for an @code{i686} (32-bits) machine already running the kernel Linux, and so on (@pxref{GNU Distribution})." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:675 +#: guix-git/doc/guix.texi:686 msgid "Make sure to download the associated @file{.sig} file and to verify the authenticity of the tarball against it, along these lines:" msgstr "Certifique-se de baixar o arquivo @file{.sig} associado e verificar a autenticidade do tarball, seguindo estas linhas:" #. type: example -#: guix-git/doc/guix.texi:679 +#: guix-git/doc/guix.texi:690 #, no-wrap msgid "" "$ wget @value{BASE-URL}/guix-binary-@value{VERSION}.x86_64-linux.tar.xz.sig\n" @@ -5385,12 +5457,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:683 guix-git/doc/guix.texi:2173 +#: guix-git/doc/guix.texi:694 guix-git/doc/guix.texi:2190 msgid "If that command fails because you do not have the required public key, then run this command to import it:" msgstr "Se esse comando falhar porque você não possui a chave pública requerida, execute este comando para importá-lo:" #. type: example -#: guix-git/doc/guix.texi:687 +#: guix-git/doc/guix.texi:698 #, no-wrap msgid "" "$ wget '@value{OPENPGP-SIGNING-KEY-URL}' \\\n" @@ -5398,22 +5470,22 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:691 guix-git/doc/guix.texi:2181 +#: guix-git/doc/guix.texi:702 guix-git/doc/guix.texi:2198 msgid "and rerun the @code{gpg --verify} command." msgstr "e execute novamente o comando @code{gpg --verify}." #. type: Plain text -#: guix-git/doc/guix.texi:694 guix-git/doc/guix.texi:2184 +#: guix-git/doc/guix.texi:705 guix-git/doc/guix.texi:2201 msgid "Take note that a warning like ``This key is not certified with a trusted signature!'' is normal." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:700 +#: guix-git/doc/guix.texi:711 msgid "Now, you need to become the @code{root} user. Depending on your distribution, you may have to run @code{su -} or @code{sudo -i}. As @code{root}, run:" msgstr "Agora, você precisa se tornar o usuário @code{root}. Dependendo de sua distribuição, você pode ter que executar @code{su -} ou @code{sudo -i}. Como @code{root}, execute:" #. type: example -#: guix-git/doc/guix.texi:706 +#: guix-git/doc/guix.texi:717 #, no-wrap msgid "" "# cd /tmp\n" @@ -5423,27 +5495,27 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:711 +#: guix-git/doc/guix.texi:722 msgid "This creates @file{/gnu/store} (@pxref{The Store}) and @file{/var/guix}. The latter contains a ready-to-use profile for @code{root} (see next step)." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:714 +#: guix-git/doc/guix.texi:725 msgid "Do @emph{not} unpack the tarball on a working Guix system since that would overwrite its own essential files." msgstr "@emph{Não} descompacte o tarball em um sistema Guix funcional, pois isso substituiria seus próprios arquivos essenciais." #. type: enumerate -#: guix-git/doc/guix.texi:724 +#: guix-git/doc/guix.texi:735 msgid "The @option{--warning=no-timestamp} option makes sure GNU@tie{}tar does not emit warnings about ``implausibly old time stamps'' (such warnings were triggered by GNU@tie{}tar 1.26 and older; recent versions are fine). They stem from the fact that all the files in the archive have their modification time set to 1 (which means January 1st, 1970). This is done on purpose to make sure the archive content is independent of its creation time, thus making it reproducible." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:728 +#: guix-git/doc/guix.texi:739 msgid "Make the profile available under @file{~root/.config/guix/current}, which is where @command{guix pull} will install updates (@pxref{Invoking guix pull}):" msgstr "Torne o perfil disponível sob @file{~root/.config/guix/current}, que é onde @command{guix pull} vai instalar atualizações (@pxref{Invoking guix pull}):" #. type: example -#: guix-git/doc/guix.texi:733 +#: guix-git/doc/guix.texi:744 #, no-wrap msgid "" "# mkdir -p ~root/.config/guix\n" @@ -5455,12 +5527,12 @@ msgstr "" " ~root/.config/guix/current\n" #. type: enumerate -#: guix-git/doc/guix.texi:737 +#: guix-git/doc/guix.texi:748 msgid "Source @file{etc/profile} to augment @env{PATH} and other relevant environment variables:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:741 +#: guix-git/doc/guix.texi:752 #, no-wrap msgid "" "# GUIX_PROFILE=\"`echo ~root`/.config/guix/current\" ; \\\n" @@ -5470,22 +5542,22 @@ msgstr "" " source $GUIX_PROFILE/etc/profile\n" #. type: enumerate -#: guix-git/doc/guix.texi:746 +#: guix-git/doc/guix.texi:757 msgid "Create the group and user accounts for build users as explained below (@pxref{Build Environment Setup})." msgstr "Crie o grupo e contas de usuário para compilar usuários conforme explicado abaixo (@pxref{Configuração do ambiente de compilação})." #. type: enumerate -#: guix-git/doc/guix.texi:749 +#: guix-git/doc/guix.texi:760 msgid "Run the daemon, and set it to automatically start on boot." msgstr "Execute o daemon e configure-o para iniciar automaticamente na inicialização do sistema." #. type: enumerate -#: guix-git/doc/guix.texi:752 +#: guix-git/doc/guix.texi:763 msgid "If your host distro uses the systemd init system, this can be achieved with these commands:" msgstr "Se sua distro hospedeira usa o sistema init systemd, isso pode ser obtido com estes comandos:" #. type: example -#: guix-git/doc/guix.texi:765 +#: guix-git/doc/guix.texi:776 #, no-wrap msgid "" "# cp ~root/.config/guix/current/lib/systemd/system/gnu-store.mount \\\n" @@ -5495,12 +5567,12 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:768 +#: guix-git/doc/guix.texi:779 msgid "You may also want to arrange for @command{guix gc} to run periodically:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:774 +#: guix-git/doc/guix.texi:785 #, no-wrap msgid "" "# cp ~root/.config/guix/current/lib/systemd/system/guix-gc.service \\\n" @@ -5510,17 +5582,17 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:778 +#: guix-git/doc/guix.texi:789 msgid "You may want to edit @file{guix-gc.service} to adjust the command line options to fit your needs (@pxref{Invoking guix gc})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:780 guix-git/doc/guix.texi:13740 +#: guix-git/doc/guix.texi:791 guix-git/doc/guix.texi:14097 msgid "If your host distro uses the Upstart init system:" msgstr "Se sua distro hospedeira usa o sistema init Upstart:" #. type: example -#: guix-git/doc/guix.texi:786 +#: guix-git/doc/guix.texi:797 #, no-wrap msgid "" "# initctl reload-configuration\n" @@ -5534,12 +5606,12 @@ msgstr "" "# start guix-daemon\n" #. type: enumerate -#: guix-git/doc/guix.texi:789 +#: guix-git/doc/guix.texi:800 msgid "Otherwise, you can still start the daemon manually with:" msgstr "Caso contrário, você ainda pode iniciar o daemon manualmente com:" #. type: example -#: guix-git/doc/guix.texi:793 +#: guix-git/doc/guix.texi:804 #, no-wrap msgid "" "# ~root/.config/guix/current/bin/guix-daemon \\\n" @@ -5549,12 +5621,12 @@ msgstr "" " --build-users-group=guixbuild\n" #. type: enumerate -#: guix-git/doc/guix.texi:798 +#: guix-git/doc/guix.texi:809 msgid "Make the @command{guix} command available to other users on the machine, for instance with:" msgstr "Disponibilize o comando @command{guix} para outros usuários na máquina, por exemplo, com:" #. type: example -#: guix-git/doc/guix.texi:803 +#: guix-git/doc/guix.texi:814 #, no-wrap msgid "" "# mkdir -p /usr/local/bin\n" @@ -5566,12 +5638,12 @@ msgstr "" "# ln -s /var/guix/profiles/per-user/root/current-guix/bin/guix\n" #. type: enumerate -#: guix-git/doc/guix.texi:807 +#: guix-git/doc/guix.texi:818 msgid "It is also a good idea to make the Info version of this manual available there:" msgstr "Também é uma boa ideia disponibilizar a versão Info deste manual:" #. type: example -#: guix-git/doc/guix.texi:813 +#: guix-git/doc/guix.texi:824 #, no-wrap msgid "" "# mkdir -p /usr/local/share/info\n" @@ -5585,30 +5657,27 @@ msgstr "" " do ln -s $i ; done\n" #. type: enumerate -#: guix-git/doc/guix.texi:819 +#: guix-git/doc/guix.texi:830 msgid "That way, assuming @file{/usr/local/share/info} is in the search path, running @command{info guix} will open this manual (@pxref{Other Info Directories,,, texinfo, GNU Texinfo}, for more details on changing the Info search path)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:821 guix-git/doc/guix.texi:3798 -#: guix-git/doc/guix.texi:16494 +#: guix-git/doc/guix.texi:832 guix-git/doc/guix.texi:3816 +#: guix-git/doc/guix.texi:16851 #, no-wrap msgid "substitutes, authorization thereof" msgstr "substitutos, autenticação dela" #. type: enumerate -#: guix-git/doc/guix.texi:825 +#: guix-git/doc/guix.texi:836 #, fuzzy #| msgid "To use substitutes from @code{@value{SUBSTITUTE-SERVER}} or one of its mirrors (@pxref{Substitutes}), authorize them:" msgid "To use substitutes from @code{@value{SUBSTITUTE-SERVER-1}}, @code{@value{SUBSTITUTE-SERVER-2}} or a mirror (@pxref{Substitutes}), authorize them:" msgstr "Para usar substitutos de @code{@value{SUBSTITUTE-SERVER}} ou um de seus espelhos (@pxref{Substitutos}), autorize-os:" #. type: example -#: guix-git/doc/guix.texi:831 -#, fuzzy, no-wrap -#| msgid "" -#| "# guix archive --authorize < \\\n" -#| " ~root/.config/guix/current/share/guix/@value{SUBSTITUTE-SERVER}.pub\n" +#: guix-git/doc/guix.texi:842 +#, no-wrap msgid "" "# guix archive --authorize < \\\n" " ~root/.config/guix/current/share/guix/@value{SUBSTITUTE-SERVER-1}.pub\n" @@ -5616,52 +5685,54 @@ msgid "" " ~root/.config/guix/current/share/guix/@value{SUBSTITUTE-SERVER-2}.pub\n" msgstr "" "# guix archive --authorize < \\\n" -" ~root/.config/guix/current/share/guix/@value{SUBSTITUTE-SERVER}.pub\n" +" ~root/.config/guix/current/share/guix/@value{SUBSTITUTE-SERVER-1}.pub\n" +"# guix archive --authorize < \\\n" +" ~root/.config/guix/current/share/guix/@value{SUBSTITUTE-SERVER-2}.pub\n" #. type: quotation -#: guix-git/doc/guix.texi:838 +#: guix-git/doc/guix.texi:849 msgid "If you do not enable substitutes, Guix will end up building @emph{everything} from source on your machine, making each installation and upgrade very expensive. @xref{On Trusting Binaries}, for a discussion of reasons why one might want do disable substitutes." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:843 +#: guix-git/doc/guix.texi:854 msgid "Each user may need to perform a few additional steps to make their Guix environment ready for use, @pxref{Application Setup}." msgstr "Cada usuário pode precisar executar algumas etapas adicionais para tornar seu ambiente Guix pronto para uso, @pxref{Configuração de aplicativo}." #. type: Plain text -#: guix-git/doc/guix.texi:846 +#: guix-git/doc/guix.texi:857 msgid "Voilà, the installation is complete!" msgstr "Voilà, a instalação está completa!" #. type: Plain text -#: guix-git/doc/guix.texi:849 +#: guix-git/doc/guix.texi:860 msgid "You can confirm that Guix is working by installing a sample package into the root profile:" msgstr "Você pode confirmar que o Guix está funcionando instalando um pacote de amostra no perfil raiz:" #. type: example -#: guix-git/doc/guix.texi:852 +#: guix-git/doc/guix.texi:863 #, no-wrap msgid "# guix install hello\n" msgstr "# guix install hello\n" #. type: Plain text -#: guix-git/doc/guix.texi:856 +#: guix-git/doc/guix.texi:867 msgid "The binary installation tarball can be (re)produced and verified simply by running the following command in the Guix source tree:" msgstr "O tarball da instalação binária pode ser (re)produzido e verificado simplesmente executando o seguinte comando na árvore de código-fonte do Guix:" #. type: example -#: guix-git/doc/guix.texi:859 +#: guix-git/doc/guix.texi:870 #, no-wrap msgid "make guix-binary.@var{system}.tar.xz\n" msgstr "make guix-binary.@var{system}.tar.xz\n" #. type: Plain text -#: guix-git/doc/guix.texi:863 +#: guix-git/doc/guix.texi:874 msgid "...@: which, in turn, runs:" msgstr "...@: que, por sua vez, executa:" #. type: example -#: guix-git/doc/guix.texi:867 +#: guix-git/doc/guix.texi:878 #, no-wrap msgid "" "guix pack -s @var{system} --localstatedir \\\n" @@ -5671,227 +5742,233 @@ msgstr "" " --profile-name=current-guix guix\n" #. type: Plain text -#: guix-git/doc/guix.texi:870 +#: guix-git/doc/guix.texi:881 msgid "@xref{Invoking guix pack}, for more info on this handy tool." msgstr "@xref{Invocando guix pack}, para mais informações sobre essa ferramenta útil." #. type: Plain text -#: guix-git/doc/guix.texi:878 +#: guix-git/doc/guix.texi:889 msgid "This section lists requirements when building Guix from source. The build procedure for Guix is the same as for other GNU software, and is not covered here. Please see the files @file{README} and @file{INSTALL} in the Guix source tree for additional details." msgstr "Esta seção lista os requisitos ao compilar o Guix a partir do fonte. O procedimento de compilação do Guix é o mesmo que para outros softwares GNU, e não é coberto aqui. Por favor, veja os arquivos @file{README} e @file{INSTALL} na árvore fonte do Guix para detalhes adicionais." #. type: cindex -#: guix-git/doc/guix.texi:879 +#: guix-git/doc/guix.texi:890 #, no-wrap msgid "official website" msgstr "site oficial" #. type: Plain text -#: guix-git/doc/guix.texi:882 +#: guix-git/doc/guix.texi:893 msgid "GNU Guix is available for download from its website at @url{https://www.gnu.org/software/guix/}." msgstr "O GNU Guix está disponível para download em seu site em @url{http://www.gnu.org/software/guix/}." #. type: Plain text -#: guix-git/doc/guix.texi:884 +#: guix-git/doc/guix.texi:895 msgid "GNU Guix depends on the following packages:" msgstr "GNU Guix depende dos seguintes pacotes:" #. type: item -#: guix-git/doc/guix.texi:886 +#: guix-git/doc/guix.texi:897 #, fuzzy, no-wrap #| msgid "@url{https://www.gnu.org/software/make/, GNU Make}." -msgid "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x;" -msgstr "@url{https://www.gnu.org/software/make/, GNU Make}." +msgid "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x," +msgstr "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x;" + +#. type: itemize +#: guix-git/doc/guix.texi:899 +#, fuzzy +msgid "version 3.0.3 or later;" +msgstr "0.1.0 ou posterior;" #. type: item -#: guix-git/doc/guix.texi:887 +#: guix-git/doc/guix.texi:899 #, no-wrap msgid "@url{https://notabug.org/cwebber/guile-gcrypt, Guile-Gcrypt}, version" msgstr "@url{https://notabug.org/cwebber/guile-gcrypt, Guile-Gcrypt}, versão" #. type: itemize -#: guix-git/doc/guix.texi:889 +#: guix-git/doc/guix.texi:901 msgid "0.1.0 or later;" msgstr "0.1.0 ou posterior;" #. type: itemize -#: guix-git/doc/guix.texi:893 +#: guix-git/doc/guix.texi:905 msgid "@uref{https://gnutls.org/, GnuTLS}, specifically its Guile bindings (@pxref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile});" msgstr "@uref{https://gnutls.org/, GnuTLS}, especificamente suas associações com Guile (@pxref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile});" #. type: itemize -#: guix-git/doc/guix.texi:896 +#: guix-git/doc/guix.texi:908 msgid "@uref{https://notabug.org/guile-sqlite3/guile-sqlite3, Guile-SQLite3}, version 0.1.0 or later;" msgstr "@uref{https://notabug.org/guile-sqlite3/guile-sqlite3, Guile-SQLite3}, versão 0.1.0 ou posterior;" #. type: item -#: guix-git/doc/guix.texi:896 +#: guix-git/doc/guix.texi:908 #, fuzzy, no-wrap msgid "@uref{https://notabug.org/guile-zlib/guile-zlib, Guile-zlib}," -msgstr "@uref{https://notabug.org/guile-sqlite3/guile-sqlite3, Guile-SQLite3}, versão 0.1.0 ou posterior;" +msgstr "@uref{https://notabug.org/guile-zlib/guile-zlib, Guile-zlib}," #. type: itemize -#: guix-git/doc/guix.texi:898 +#: guix-git/doc/guix.texi:910 #, fuzzy msgid "version 0.1.0 or later;" msgstr "0.1.0 ou posterior;" #. type: item -#: guix-git/doc/guix.texi:898 +#: guix-git/doc/guix.texi:910 #, no-wrap msgid "@uref{https://notabug.org/guile-lzlib/guile-lzlib, Guile-lzlib};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:899 +#: guix-git/doc/guix.texi:911 #, no-wrap msgid "@uref{https://www.nongnu.org/guile-avahi/, Guile-Avahi};" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:903 +#: guix-git/doc/guix.texi:915 #, fuzzy #| msgid "@uref{https://notabug.org/guile-sqlite3/guile-sqlite3, Guile-SQLite3}, version 0.1.0 or later;" msgid "@uref{https://gitlab.com/guile-git/guile-git, Guile-Git}, version 0.5.0 or later;" msgstr "@uref{https://notabug.org/guile-sqlite3/guile-sqlite3, Guile-SQLite3}, versão 0.1.0 ou posterior;" #. type: item -#: guix-git/doc/guix.texi:903 +#: guix-git/doc/guix.texi:915 #, no-wrap msgid "@uref{https://savannah.nongnu.org/projects/guile-json/, Guile-JSON}" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:905 +#: guix-git/doc/guix.texi:917 msgid "4.3.0 or later;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:905 +#: guix-git/doc/guix.texi:917 #, no-wrap msgid "@url{https://www.gnu.org/software/make/, GNU Make}." msgstr "@url{https://www.gnu.org/software/make/, GNU Make}." #. type: Plain text -#: guix-git/doc/guix.texi:909 +#: guix-git/doc/guix.texi:921 msgid "The following dependencies are optional:" msgstr "As seguintes dependências são opcionais:" #. type: itemize -#: guix-git/doc/guix.texi:917 +#: guix-git/doc/guix.texi:929 msgid "Support for build offloading (@pxref{Daemon Offload Setup}) and @command{guix copy} (@pxref{Invoking guix copy}) depends on @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH}, version 0.13.0 or later." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:922 +#: guix-git/doc/guix.texi:934 msgid "@uref{https://notabug.org/guile-zstd/guile-zstd, Guile-zstd}, for zstd compression and decompression in @command{guix publish} and for substitutes (@pxref{Invoking guix publish})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:926 +#: guix-git/doc/guix.texi:938 msgid "@uref{https://ngyro.com/software/guile-semver.html, Guile-Semver} for the @code{crate} importer (@pxref{Invoking guix import})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:931 +#: guix-git/doc/guix.texi:943 msgid "@uref{https://www.nongnu.org/guile-lib/doc/ref/htmlprag/, Guile-Lib} for the @code{go} importer (@pxref{Invoking guix import}) and for some of the ``updaters'' (@pxref{Invoking guix refresh})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:935 +#: guix-git/doc/guix.texi:947 msgid "When @url{http://www.bzip.org, libbz2} is available, @command{guix-daemon} can use it to compress build logs." msgstr "Quando @url{http://www.bzip.org, libbz2} está disponível, @command{guix-daemon} pode usá-lo para comprimir logs de compilação." #. type: Plain text -#: guix-git/doc/guix.texi:939 +#: guix-git/doc/guix.texi:951 msgid "Unless @option{--disable-daemon} was passed to @command{configure}, the following packages are also needed:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:941 +#: guix-git/doc/guix.texi:953 #, no-wrap msgid "@url{https://gnupg.org/, GNU libgcrypt};" msgstr "@url{https://gnupg.org/, GNU libgcrypt};" #. type: item -#: guix-git/doc/guix.texi:942 +#: guix-git/doc/guix.texi:954 #, no-wrap msgid "@url{https://sqlite.org, SQLite 3};" msgstr "@url{https://sqlite.org, SQLite 3};" #. type: item -#: guix-git/doc/guix.texi:943 +#: guix-git/doc/guix.texi:955 #, no-wrap msgid "@url{https://gcc.gnu.org, GCC's g++}, with support for the" msgstr "@url{https://gcc.gnu.org, GCC's g++}, com suporte ao" #. type: itemize -#: guix-git/doc/guix.texi:945 +#: guix-git/doc/guix.texi:957 msgid "C++11 standard." msgstr "padrão C++11." #. type: cindex -#: guix-git/doc/guix.texi:947 +#: guix-git/doc/guix.texi:959 #, no-wrap msgid "state directory" msgstr "diretório de estado" #. type: Plain text -#: guix-git/doc/guix.texi:956 +#: guix-git/doc/guix.texi:968 msgid "When configuring Guix on a system that already has a Guix installation, be sure to specify the same state directory as the existing installation using the @option{--localstatedir} option of the @command{configure} script (@pxref{Directory Variables, @code{localstatedir},, standards, GNU Coding Standards}). Usually, this @var{localstatedir} option is set to the value @file{/var}. The @command{configure} script protects against unintended misconfiguration of @var{localstatedir} so you do not inadvertently corrupt your store (@pxref{The Store})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:960 +#: guix-git/doc/guix.texi:972 #, no-wrap msgid "test suite" msgstr "suíte/conjunto de testes" #. type: Plain text -#: guix-git/doc/guix.texi:966 +#: guix-git/doc/guix.texi:978 msgid "After a successful @command{configure} and @code{make} run, it is a good idea to run the test suite. It can help catch issues with the setup or environment, or bugs in Guix itself---and really, reporting test failures is a good way to help improve the software. To run the test suite, type:" msgstr "Depois que um @command{configure} e @code{make} bem-sucedido forem executados, é uma boa ideia executar o conjunto de testes. Ele pode ajudar a detectar problemas com a configuração ou o ambiente, ou com bugs no próprio Guix – e realmente, relatar falhas de teste é uma boa maneira de ajudar a melhorar o software. Para executar o conjunto de testes, digite:" #. type: example -#: guix-git/doc/guix.texi:969 +#: guix-git/doc/guix.texi:981 #, no-wrap msgid "make check\n" msgstr "make check\n" #. type: Plain text -#: guix-git/doc/guix.texi:976 +#: guix-git/doc/guix.texi:988 msgid "Test cases can run in parallel: you can use the @code{-j} option of GNU@tie{}make to speed things up. The first run may take a few minutes on a recent machine; subsequent runs will be faster because the store that is created for test purposes will already have various things in cache." msgstr "Os casos de teste podem ser executados em paralelo: você pode usar a opção @code{-j} do GNU@tie{}make para acelerar as coisas. A primeira execução pode levar alguns minutos em uma máquina recente; as execuções subsequentes serão mais rápidas porque o armazém criado para fins de teste já terá vários itens no cache." #. type: Plain text -#: guix-git/doc/guix.texi:979 +#: guix-git/doc/guix.texi:991 msgid "It is also possible to run a subset of the tests by defining the @code{TESTS} makefile variable as in this example:" msgstr "Também é possível executar um subconjunto dos testes definindo a variável makefile @code{TESTS} como neste exemplo:" #. type: example -#: guix-git/doc/guix.texi:982 +#: guix-git/doc/guix.texi:994 #, no-wrap msgid "make check TESTS=\"tests/store.scm tests/cpio.scm\"\n" msgstr "make check TESTS=\"tests/store.scm tests/cpio.scm\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:987 +#: guix-git/doc/guix.texi:999 msgid "By default, tests results are displayed at a file level. In order to see the details of every individual test cases, it is possible to define the @code{SCM_LOG_DRIVER_FLAGS} makefile variable as in this example:" msgstr "Por padrão, os resultados dos testes são exibidos em um nível de arquivo. Para ver os detalhes de cada caso de teste individual, é possível definir a variável makefile @code{SCM_LOG_DRIVER_FLAGS} como neste exemplo:" #. type: example -#: guix-git/doc/guix.texi:990 +#: guix-git/doc/guix.texi:1002 #, no-wrap msgid "make check TESTS=\"tests/base64.scm\" SCM_LOG_DRIVER_FLAGS=\"--brief=no\"\n" msgstr "make check TESTS=\"tests/base64.scm\" SCM_LOG_DRIVER_FLAGS=\"--brief=no\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:998 +#: guix-git/doc/guix.texi:1010 msgid "The underlying SRFI 64 custom Automake test driver used for the 'check' test suite (located at @file{build-aux/test-driver.scm}) also allows selecting which test cases to run at a finer level, via its @option{--select} and @option{--exclude} options. Here's an example, to run all the test cases from the @file{tests/packages.scm} test file whose names start with ``transaction-upgrade-entry'':" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1002 +#: guix-git/doc/guix.texi:1014 #, no-wrap msgid "" "export SCM_LOG_DRIVER_FLAGS=\"--select=^transaction-upgrade-entry\"\n" @@ -5899,114 +5976,114 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1008 +#: guix-git/doc/guix.texi:1020 msgid "Those wishing to inspect the results of failed tests directly from the command line can add the @option{--errors-only=yes} option to the @code{SCM_LOG_DRIVER_FLAGS} makefile variable and set the @code{VERBOSE} Automake makefile variable, as in:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1011 +#: guix-git/doc/guix.texi:1023 #, no-wrap msgid "make check SCM_LOG_DRIVER_FLAGS=\"--brief=no --errors-only=yes\" VERBOSE=1\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1016 +#: guix-git/doc/guix.texi:1028 msgid "The @option{--show-duration=yes} option can be used to print the duration of the individual test cases, when used in combination with @option{--brief=no}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1019 +#: guix-git/doc/guix.texi:1031 #, no-wrap msgid "make check SCM_LOG_DRIVER_FLAGS=\"--brief=no --show-duration=yes\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1023 +#: guix-git/doc/guix.texi:1035 msgid "@xref{Parallel Test Harness,,,automake,GNU Automake} for more information about the Automake Parallel Test Harness." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1028 +#: guix-git/doc/guix.texi:1040 msgid "Upon failure, please email @email{bug-guix@@gnu.org} and attach the @file{test-suite.log} file. Please specify the Guix version being used as well as version numbers of the dependencies (@pxref{Requirements}) in your message." msgstr "Em caso de falha, envie um e-mail para @email{bug-guix@@gnu.org} e anexe o arquivo @file{test-suite.log}. Por favor, especifique a versão do Guix que está sendo usada, bem como os números de versão das dependências (@pxref{Requisitos}) em sua mensagem." #. type: Plain text -#: guix-git/doc/guix.texi:1032 +#: guix-git/doc/guix.texi:1044 msgid "Guix also comes with a whole-system test suite that tests complete Guix System instances. It can only run on systems where Guix is already installed, using:" msgstr "O Guix também vem com um conjunto de testes de sistema completo que testa instâncias completas do Guix System. Ele só pode ser executado em sistemas nos quais o Guix já está instalado, usando:" #. type: example -#: guix-git/doc/guix.texi:1035 +#: guix-git/doc/guix.texi:1047 #, no-wrap msgid "make check-system\n" msgstr "make check-system\n" #. type: Plain text -#: guix-git/doc/guix.texi:1039 +#: guix-git/doc/guix.texi:1051 msgid "or, again, by defining @code{TESTS} to select a subset of tests to run:" msgstr "ou, novamente, definindo @code{TESTS} para selecionar um subconjunto de testes a serem executados:" #. type: example -#: guix-git/doc/guix.texi:1042 +#: guix-git/doc/guix.texi:1054 #, no-wrap msgid "make check-system TESTS=\"basic mcron\"\n" msgstr "make check-system TESTS=\"basic mcron\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:1050 +#: guix-git/doc/guix.texi:1062 msgid "These system tests are defined in the @code{(gnu tests @dots{})} modules. They work by running the operating systems under test with lightweight instrumentation in a virtual machine (VM). They can be computationally intensive or rather cheap, depending on whether substitutes are available for their dependencies (@pxref{Substitutes}). Some of them require a lot of storage space to hold VM images." msgstr "Esses testes de sistema são definidos nos módulos @code{(gnu tests @dots{})}. Eles trabalham executando os sistemas operacionais em teste com instrumentação leve em uma máquina virtual (VM). Eles podem ser computacionalmente intensivos ou bastante baratos, dependendo se os substitutos estão disponíveis para suas dependências (@pxref{Substitutos}). Alguns deles exigem muito espaço de armazenamento para armazenar imagens de VM." #. type: Plain text -#: guix-git/doc/guix.texi:1053 +#: guix-git/doc/guix.texi:1065 msgid "Again in case of test failures, please send @email{bug-guix@@gnu.org} all the details." msgstr "Novamente, em caso de falhas nos testes, por favor envie @email{bug-guix@@gnu.org} todos os detalhes." #. type: cindex -#: guix-git/doc/guix.texi:1057 +#: guix-git/doc/guix.texi:1069 #, no-wrap msgid "daemon" msgstr "daemon" #. type: Plain text -#: guix-git/doc/guix.texi:1065 +#: guix-git/doc/guix.texi:1077 msgid "Operations such as building a package or running the garbage collector are all performed by a specialized process, the @dfn{build daemon}, on behalf of clients. Only the daemon may access the store and its associated database. Thus, any operation that manipulates the store goes through the daemon. For instance, command-line tools such as @command{guix package} and @command{guix build} communicate with the daemon (@i{via} remote procedure calls) to instruct it what to do." msgstr "Operações como compilar um pacote ou executar o coletor de lixo são todas executadas por um processo especializado, o @dfn{build daemon}, em nome dos clientes. Apenas o daemon pode acessar o armazém e seu banco de dados associado. Assim, qualquer operação que manipule o armazém passa pelo daemon. Por exemplo, ferramentas de linha de comando como @command{guix package} e @command{guix build} se comunicam com o daemon (@i{via} chamadas de procedimento remoto) para instruir o que fazer." #. type: Plain text -#: guix-git/doc/guix.texi:1069 +#: guix-git/doc/guix.texi:1081 msgid "The following sections explain how to prepare the build daemon's environment. See also @ref{Substitutes}, for information on how to allow the daemon to download pre-built binaries." msgstr "As seções a seguir explicam como preparar o ambiente do daemon de compilação. Veja também @ref{Substitutos}, para informações sobre como permitir que o daemon baixe binários pré-compilados." #. type: cindex -#: guix-git/doc/guix.texi:1079 guix-git/doc/guix.texi:1542 +#: guix-git/doc/guix.texi:1091 guix-git/doc/guix.texi:1559 #, no-wrap msgid "build environment" msgstr "ambiente de compilação" #. type: Plain text -#: guix-git/doc/guix.texi:1087 +#: guix-git/doc/guix.texi:1099 msgid "In a standard multi-user setup, Guix and its daemon---the @command{guix-daemon} program---are installed by the system administrator; @file{/gnu/store} is owned by @code{root} and @command{guix-daemon} runs as @code{root}. Unprivileged users may use Guix tools to build packages or otherwise access the store, and the daemon will do it on their behalf, ensuring that the store is kept in a consistent state, and allowing built packages to be shared among users." msgstr "Em uma configuração multiusuário padrão, o Guix e seu daemon – o programa @command{guix-daemon} – são instalados pelo administrador do sistema; @file{/gnu/store} é de propriedade de @code{root} e @command{guix-daemon} é executado como @code{root}. Usuários desprivilegiados podem usar ferramentas Guix para criar pacotes ou acessar o armazém, e o daemon fará isso em seu nome, garantindo que o armazém seja mantido em um estado consistente e permitindo que pacotes construídos sejam compartilhados entre os usuários." #. type: cindex -#: guix-git/doc/guix.texi:1088 +#: guix-git/doc/guix.texi:1100 #, no-wrap msgid "build users" msgstr "usuários de compilação" #. type: Plain text -#: guix-git/doc/guix.texi:1099 +#: guix-git/doc/guix.texi:1111 msgid "When @command{guix-daemon} runs as @code{root}, you may not want package build processes themselves to run as @code{root} too, for obvious security reasons. To avoid that, a special pool of @dfn{build users} should be created for use by build processes started by the daemon. These build users need not have a shell and a home directory: they will just be used when the daemon drops @code{root} privileges in build processes. Having several such users allows the daemon to launch distinct build processes under separate UIDs, which guarantees that they do not interfere with each other---an essential feature since builds are regarded as pure functions (@pxref{Introduction})." msgstr "Quando @command{guix-daemon} é executado como @code{root}, você pode não querer que os próprios processos de compilação de pacotes também sejam executados como @code{root}, por razões óbvias de segurança. Para evitar isso, um conjunto especial de @dfn{usuários de compilação} deve ser criado para uso pelos processos de construção iniciados pelo daemon. Esses usuários de compilação não precisam ter um shell e um diretório inicial: eles serão usados apenas quando o daemon der um privilégio @code{root} nos processos de compilação. Ter vários desses usuários permite que o daemon ative processos de compilação distintos sob UIDs separados, o que garante que eles não interfiram uns com os outros - um recurso essencial, pois as compilações são consideradas funções puras (@pxref{Introdução})." #. type: Plain text -#: guix-git/doc/guix.texi:1102 +#: guix-git/doc/guix.texi:1114 msgid "On a GNU/Linux system, a build user pool may be created like this (using Bash syntax and the @code{shadow} commands):" msgstr "Em um sistema GNU/Linux, um conjunto de usuários de construção pode ser criado assim (usando a sintaxe Bash e os comandos @code{shadow}):" #. type: example -#: guix-git/doc/guix.texi:1114 +#: guix-git/doc/guix.texi:1126 #, fuzzy, no-wrap msgid "" "# groupadd --system guixbuild\n" @@ -6028,139 +6105,144 @@ msgstr "" " done\n" #. type: Plain text -#: guix-git/doc/guix.texi:1124 +#: guix-git/doc/guix.texi:1136 msgid "The number of build users determines how many build jobs may run in parallel, as specified by the @option{--max-jobs} option (@pxref{Invoking guix-daemon, @option{--max-jobs}}). To use @command{guix system vm} and related commands, you may need to add the build users to the @code{kvm} group so they can access @file{/dev/kvm}, using @code{-G guixbuild,kvm} instead of @code{-G guixbuild} (@pxref{Invoking guix system})." msgstr "O número de usuários de compilação determina quantos trabalhos de compilação podem ser executados em paralelo, conforme especificado pela opção @option{--max-jobs} (@pxref{Invocando guix-daemon, @option{--max-jobs}}). Para usar @command{guix system vm} e comandos relacionados, você pode precisar adicionar os usuários de compilação ao grupo @code{kvm} para que eles possam acessar @file{/dev/kvm}, usando @code{-G guixbuild,kvm} em vez de @code{-G guixbuild} (@pxref{Invocando guix system})." #. type: Plain text -#: guix-git/doc/guix.texi:1133 +#: guix-git/doc/guix.texi:1145 msgid "The @code{guix-daemon} program may then be run as @code{root} with the following command@footnote{If your machine uses the systemd init system, dropping the @file{@var{prefix}/lib/systemd/system/guix-daemon.service} file in @file{/etc/systemd/system} will ensure that @command{guix-daemon} is automatically started. Similarly, if your machine uses the Upstart init system, drop the @file{@var{prefix}/lib/upstart/system/guix-daemon.conf} file in @file{/etc/init}.}:" msgstr "O programa @code{guix-daemon} pode então ser executado como @code{root} com o seguinte comando@footnote{Se sua máquina usa o sistema init systemd, colocar o arquivo @file{@var{prefixo}/lib/systemd/system/guix-daemon.service} em @file{/etc/systemd/system} irá assegurar que @command{guix-daemon} seja iniciado automaticamente. Da mesma forma, se a sua máquina usa o sistema init Upstart, coloque o arquivo @file{@var{prefixo}/lib/upstart/system/guix-daemon.conf} em @file{/etc/init}.}:" #. type: example -#: guix-git/doc/guix.texi:1136 guix-git/doc/guix.texi:1535 +#: guix-git/doc/guix.texi:1148 guix-git/doc/guix.texi:1552 #, no-wrap msgid "# guix-daemon --build-users-group=guixbuild\n" msgstr "# guix-daemon --build-users-group=guixbuild\n" #. type: cindex -#: guix-git/doc/guix.texi:1138 guix-git/doc/guix.texi:1540 +#: guix-git/doc/guix.texi:1150 guix-git/doc/guix.texi:1557 #, no-wrap msgid "chroot" msgstr "chroot" #. type: Plain text -#: guix-git/doc/guix.texi:1143 +#: guix-git/doc/guix.texi:1155 msgid "This way, the daemon starts build processes in a chroot, under one of the @code{guixbuilder} users. On GNU/Linux, by default, the chroot environment contains nothing but:" msgstr "Dessa forma, o daemon inicia os processos de compilação em um chroot, sob um dos usuários @code{guixbuilder}. No GNU/Linux, por padrão, o ambiente chroot contém nada além de:" #. type: itemize -#: guix-git/doc/guix.texi:1151 +#: guix-git/doc/guix.texi:1163 msgid "a minimal @code{/dev} directory, created mostly independently from the host @code{/dev}@footnote{``Mostly'', because while the set of files that appear in the chroot's @code{/dev} is fixed, most of these files can only be created if the host has them.};" msgstr "um diretório @code{/dev} mínimo, criado principalmente independentemente do @code{/dev} do hospedeiro@footnote{``Principalmente'' porque enquanto o conjunto de arquivos que aparece no @code{/dev} do chroot é corrigido, a maioria desses arquivos só pode ser criada se o hospedeiro os possuir.};" #. type: itemize -#: guix-git/doc/guix.texi:1155 +#: guix-git/doc/guix.texi:1167 msgid "the @code{/proc} directory; it only shows the processes of the container since a separate PID name space is used;" msgstr "o diretório @code{/proc}; mostra apenas os processos do contêiner desde que um espaço de nome PID separado é usado;" #. type: itemize -#: guix-git/doc/guix.texi:1159 +#: guix-git/doc/guix.texi:1171 msgid "@file{/etc/passwd} with an entry for the current user and an entry for user @file{nobody};" msgstr "@file{/etc/passwd} com uma entrada para o usuário atual e uma entrada para o usuário @file{nobody};" #. type: itemize -#: guix-git/doc/guix.texi:1162 +#: guix-git/doc/guix.texi:1174 msgid "@file{/etc/group} with an entry for the user's group;" msgstr "@file{/etc/group} com uma entrada para o grupo de usuários;" #. type: itemize -#: guix-git/doc/guix.texi:1166 +#: guix-git/doc/guix.texi:1178 msgid "@file{/etc/hosts} with an entry that maps @code{localhost} to @code{127.0.0.1};" msgstr "@file{/etc/hosts} com uma entrada que mapeia @code{localhost} para @code{127.0.0.1};" #. type: itemize -#: guix-git/doc/guix.texi:1169 +#: guix-git/doc/guix.texi:1181 msgid "a writable @file{/tmp} directory." msgstr "um diretório @file{/tmp} com permissão de escrita." #. type: Plain text -#: guix-git/doc/guix.texi:1178 +#: guix-git/doc/guix.texi:1187 +msgid "The chroot does not contain a @file{/home} directory, and the @env{HOME} environment variable is set to the non-existent @file{/homeless-shelter}. This helps to highlight inappropriate uses of @env{HOME} in the build scripts of packages." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:1195 msgid "You can influence the directory where the daemon stores build trees @i{via} the @env{TMPDIR} environment variable. However, the build tree within the chroot is always called @file{/tmp/guix-build-@var{name}.drv-0}, where @var{name} is the derivation name---e.g., @code{coreutils-8.24}. This way, the value of @env{TMPDIR} does not leak inside build environments, which avoids discrepancies in cases where build processes capture the name of their build tree." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:1179 guix-git/doc/guix.texi:4007 +#: guix-git/doc/guix.texi:1196 guix-git/doc/guix.texi:4025 #, no-wrap msgid "http_proxy" msgstr "http_proxy" #. type: vindex -#: guix-git/doc/guix.texi:1180 guix-git/doc/guix.texi:4008 +#: guix-git/doc/guix.texi:1197 guix-git/doc/guix.texi:4026 #, no-wrap msgid "https_proxy" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1185 +#: guix-git/doc/guix.texi:1202 msgid "The daemon also honors the @env{http_proxy} and @env{https_proxy} environment variables for HTTP and HTTPS downloads it performs, be it for fixed-output derivations (@pxref{Derivations}) or for substitutes (@pxref{Substitutes})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1193 +#: guix-git/doc/guix.texi:1210 msgid "If you are installing Guix as an unprivileged user, it is still possible to run @command{guix-daemon} provided you pass @option{--disable-chroot}. However, build processes will not be isolated from one another, and not from the rest of the system. Thus, build processes may interfere with each other, and may access programs, libraries, and other files available on the system---making it much harder to view them as @emph{pure} functions." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:1196 +#: guix-git/doc/guix.texi:1213 #, no-wrap msgid "Using the Offload Facility" msgstr "Usando o recurso de descarregamento" #. type: cindex -#: guix-git/doc/guix.texi:1198 guix-git/doc/guix.texi:1601 +#: guix-git/doc/guix.texi:1215 guix-git/doc/guix.texi:1618 #, no-wrap msgid "offloading" msgstr "descarregamento" #. type: cindex -#: guix-git/doc/guix.texi:1199 +#: guix-git/doc/guix.texi:1216 #, no-wrap msgid "build hook" msgstr "hook de compilação" #. type: Plain text -#: guix-git/doc/guix.texi:1218 +#: guix-git/doc/guix.texi:1235 msgid "When desired, the build daemon can @dfn{offload} derivation builds to other machines running Guix, using the @code{offload} @dfn{build hook}@footnote{This feature is available only when @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH} is present.}. When that feature is enabled, a list of user-specified build machines is read from @file{/etc/guix/machines.scm}; every time a build is requested, for instance via @code{guix build}, the daemon attempts to offload it to one of the machines that satisfy the constraints of the derivation, in particular its system types---e.g., @code{x86_64-linux}. A single machine can have multiple system types, either because its architecture natively supports it, via emulation (@pxref{transparent-emulation-qemu, Transparent Emulation with QEMU}), or both. Missing prerequisites for the build are copied over SSH to the target machine, which then proceeds with the build; upon success the output(s) of the build are copied back to the initial machine. The offload facility comes with a basic scheduler that attempts to select the best machine. The best machine is chosen among the available machines based on criteria such as:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1224 +#: guix-git/doc/guix.texi:1241 msgid "The availability of a build slot. A build machine can have as many build slots (connections) as the value of the @code{parallel-builds} field of its @code{build-machine} object." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1228 +#: guix-git/doc/guix.texi:1245 msgid "Its relative speed, as defined via the @code{speed} field of its @code{build-machine} object." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1233 +#: guix-git/doc/guix.texi:1250 msgid "Its load. The normalized machine load must be lower than a threshold value, configurable via the @code{overload-threshold} field of its @code{build-machine} object." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1236 +#: guix-git/doc/guix.texi:1253 msgid "Disk space availability. More than a 100 MiB must be available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1239 +#: guix-git/doc/guix.texi:1256 msgid "The @file{/etc/guix/machines.scm} file typically looks like this:" msgstr "O arquivo @file{/etc/guix/machines.scm} geralmente se parece com isso:" #. type: lisp -#: guix-git/doc/guix.texi:1247 +#: guix-git/doc/guix.texi:1264 #, no-wrap msgid "" "(list (build-machine\n" @@ -6173,7 +6255,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:1253 +#: guix-git/doc/guix.texi:1270 #, no-wrap msgid "" " (build-machine\n" @@ -6185,7 +6267,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:1257 +#: guix-git/doc/guix.texi:1274 #, no-wrap msgid "" " ;; Remember 'guix offload' is spawned by\n" @@ -6194,98 +6276,98 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1263 +#: guix-git/doc/guix.texi:1280 msgid "In the example above we specify a list of two build machines, one for the @code{x86_64} and @code{i686} architectures and one for the @code{aarch64} architecture." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1272 +#: guix-git/doc/guix.texi:1289 msgid "In fact, this file is---not surprisingly!---a Scheme file that is evaluated when the @code{offload} hook is started. Its return value must be a list of @code{build-machine} objects. While this example shows a fixed list of build machines, one could imagine, say, using DNS-SD to return a list of potential build machines discovered in the local network (@pxref{Introduction, Guile-Avahi,, guile-avahi, Using Avahi in Guile Scheme Programs}). The @code{build-machine} data type is detailed below." msgstr "De fato, esse arquivo é -- não surpreendentemente! -- um arquivo de esquema que é avaliado quando o hook @code{offload} é iniciado. Seu valor de retorno deve ser uma lista de objetos de @code{build-machine}. Embora este exemplo mostre uma lista fixa de máquinas de compilação, pode-se imaginar, digamos, usando DNS-SD para retornar uma lista de possíveis máquinas de compilação descobertas na rede local (@pxref{Introduction, Guile-Avahi ,, guile-avahi, Using Avahi in Guile Scheme Programs}). O tipo de dados de @code{build-machine} está detalhado abaixo." #. type: deftp -#: guix-git/doc/guix.texi:1273 +#: guix-git/doc/guix.texi:1290 #, no-wrap msgid "{Data Type} build-machine" msgstr "build-machine {Data Type}" #. type: deftp -#: guix-git/doc/guix.texi:1276 +#: guix-git/doc/guix.texi:1293 msgid "This data type represents build machines to which the daemon may offload builds. The important fields are:" msgstr "Esse tipo de dados representa máquinas de compilação nas quais o daemon pode descarregar compilações. Os campos importantes são:" #. type: item -#: guix-git/doc/guix.texi:1279 guix-git/doc/guix.texi:7113 -#: guix-git/doc/guix.texi:15446 guix-git/doc/guix.texi:15545 -#: guix-git/doc/guix.texi:15786 guix-git/doc/guix.texi:17314 -#: guix-git/doc/guix.texi:17935 guix-git/doc/guix.texi:18209 -#: guix-git/doc/guix.texi:21269 guix-git/doc/guix.texi:24179 -#: guix-git/doc/guix.texi:25568 guix-git/doc/guix.texi:26180 -#: guix-git/doc/guix.texi:26533 guix-git/doc/guix.texi:26574 -#: guix-git/doc/guix.texi:28735 guix-git/doc/guix.texi:31072 -#: guix-git/doc/guix.texi:31092 guix-git/doc/guix.texi:33766 -#: guix-git/doc/guix.texi:33783 guix-git/doc/guix.texi:34320 -#: guix-git/doc/guix.texi:36095 guix-git/doc/guix.texi:36422 +#: guix-git/doc/guix.texi:1296 guix-git/doc/guix.texi:7157 +#: guix-git/doc/guix.texi:15803 guix-git/doc/guix.texi:15902 +#: guix-git/doc/guix.texi:16143 guix-git/doc/guix.texi:17676 +#: guix-git/doc/guix.texi:18297 guix-git/doc/guix.texi:18571 +#: guix-git/doc/guix.texi:21631 guix-git/doc/guix.texi:24541 +#: guix-git/doc/guix.texi:25905 guix-git/doc/guix.texi:26517 +#: guix-git/doc/guix.texi:26870 guix-git/doc/guix.texi:26911 +#: guix-git/doc/guix.texi:29072 guix-git/doc/guix.texi:31437 +#: guix-git/doc/guix.texi:31457 guix-git/doc/guix.texi:34203 +#: guix-git/doc/guix.texi:34220 guix-git/doc/guix.texi:34759 +#: guix-git/doc/guix.texi:36585 guix-git/doc/guix.texi:36912 #, no-wrap msgid "name" msgstr "name" #. type: table -#: guix-git/doc/guix.texi:1281 +#: guix-git/doc/guix.texi:1298 msgid "The host name of the remote machine." msgstr "O nome de host da máquina remota." #. type: item -#: guix-git/doc/guix.texi:1282 +#: guix-git/doc/guix.texi:1299 #, no-wrap msgid "systems" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1285 +#: guix-git/doc/guix.texi:1302 msgid "The system types the remote machine supports---e.g., @code{(list \"x86_64-linux\" \"i686-linux\")}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1286 guix-git/doc/guix.texi:17945 +#: guix-git/doc/guix.texi:1303 guix-git/doc/guix.texi:18307 #, no-wrap msgid "user" msgstr "user" #. type: table -#: guix-git/doc/guix.texi:1290 +#: guix-git/doc/guix.texi:1307 msgid "The user account to use when connecting to the remote machine over SSH. Note that the SSH key pair must @emph{not} be passphrase-protected, to allow non-interactive logins." msgstr "A conta de usuário a ser usada ao conectar-se à máquina remota por SSH. Observe que o par de chaves SSH deve @emph{não} protegido por senha, para permitir logins não interativos." #. type: item -#: guix-git/doc/guix.texi:1291 +#: guix-git/doc/guix.texi:1308 #, no-wrap msgid "host-key" msgstr "host-key" #. type: table -#: guix-git/doc/guix.texi:1295 +#: guix-git/doc/guix.texi:1312 msgid "This must be the machine's SSH @dfn{public host key} in OpenSSH format. This is used to authenticate the machine when we connect to it. It is a long string that looks like this:" msgstr "Essa deve ser a SSH @dfn{chave pública do host} da máquina no formato OpenSSH. Isso é usado para autenticar a máquina quando nos conectamos a ela. É uma string longa que se parece com isso:" #. type: example -#: guix-git/doc/guix.texi:1298 +#: guix-git/doc/guix.texi:1315 #, no-wrap msgid "ssh-ed25519 AAAAC3NzaC@dots{}mde+UhL hint@@example.org\n" msgstr "ssh-ed25519 AAAAC3NzaC@dots{}mde+UhL hint@@example.org\n" #. type: table -#: guix-git/doc/guix.texi:1303 +#: guix-git/doc/guix.texi:1320 msgid "If the machine is running the OpenSSH daemon, @command{sshd}, the host key can be found in a file such as @file{/etc/ssh/ssh_host_ed25519_key.pub}." msgstr "Se a máquina estiver executando o daemon OpenSSH, @command{sshd}, a chave do host poderá ser encontrada em um arquivo como @file{/etc/ssh/ssh_host_ed25519_key.pub}." #. type: table -#: guix-git/doc/guix.texi:1308 +#: guix-git/doc/guix.texi:1325 msgid "If the machine is running the SSH daemon of GNU@tie{}lsh, @command{lshd}, the host key is in @file{/etc/lsh/host-key.pub} or a similar file. It can be converted to the OpenSSH format using @command{lsh-export-key} (@pxref{Converting keys,,, lsh, LSH Manual}):" msgstr "Se a máquina estiver executando o daemon SSH do GNU@tie{}lsh, @command{lshd}, a chave do host estará em @file{/etc/lsh/host-key.pub} ou em um arquivo semelhante. Ele pode ser convertido para o formato OpenSSH usando o @command{lsh-export-key} (@pxref{Converting keys,,, lsh, LSH Manual}):" #. type: example -#: guix-git/doc/guix.texi:1312 +#: guix-git/doc/guix.texi:1329 #, no-wrap msgid "" "$ lsh-export-key --openssh < /etc/lsh/host-key.pub\n" @@ -6293,677 +6375,677 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:1317 +#: guix-git/doc/guix.texi:1334 msgid "A number of optional fields may be specified:" msgstr "Vários campos opcionais podem ser especificados:" #. type: item -#: guix-git/doc/guix.texi:1320 guix-git/doc/guix.texi:35581 +#: guix-git/doc/guix.texi:1337 guix-git/doc/guix.texi:36061 #, no-wrap msgid "@code{port} (default: @code{22})" msgstr "@code{port} (padrão: @code{22})" #. type: table -#: guix-git/doc/guix.texi:1322 +#: guix-git/doc/guix.texi:1339 msgid "Port number of SSH server on the machine." msgstr "O número da porta para o servidor SSH na máquina." #. type: item -#: guix-git/doc/guix.texi:1323 +#: guix-git/doc/guix.texi:1340 #, no-wrap msgid "@code{private-key} (default: @file{~root/.ssh/id_rsa})" msgstr "@code{private-key} (padrão: @file{~root/.ssh/id_rsa})" #. type: table -#: guix-git/doc/guix.texi:1326 +#: guix-git/doc/guix.texi:1343 msgid "The SSH private key file to use when connecting to the machine, in OpenSSH format. This key must not be protected with a passphrase." msgstr "O arquivo de chave privada SSH a ser usado ao conectar-se à máquina, no formato OpenSSH. Esta chave não deve ser protegida com uma senha." #. type: table -#: guix-git/doc/guix.texi:1329 +#: guix-git/doc/guix.texi:1346 msgid "Note that the default value is the private key @emph{of the root account}. Make sure it exists if you use the default." msgstr "Observe que o valor padrão é a chave privada @emph{da usuário root}. Verifique se ele existe se você usar o padrão." #. type: item -#: guix-git/doc/guix.texi:1330 +#: guix-git/doc/guix.texi:1347 #, no-wrap msgid "@code{compression} (default: @code{\"zlib@@openssh.com,zlib\"})" msgstr "@code{compression} (padrão: @code{\"zlib@@openssh.com,zlib\"})" #. type: itemx -#: guix-git/doc/guix.texi:1331 +#: guix-git/doc/guix.texi:1348 #, no-wrap msgid "@code{compression-level} (default: @code{3})" msgstr "@code{compression-level} (padrão: @code{3})" #. type: table -#: guix-git/doc/guix.texi:1333 +#: guix-git/doc/guix.texi:1350 msgid "The SSH-level compression methods and compression level requested." msgstr "Os métodos de compactação no nível SSH e o nível de compactação solicitado." #. type: table -#: guix-git/doc/guix.texi:1336 +#: guix-git/doc/guix.texi:1353 msgid "Note that offloading relies on SSH compression to reduce bandwidth usage when transferring files to and from build machines." msgstr "Observe que o descarregamento depende da compactação SSH para reduzir o uso da largura de banda ao transferir arquivos de e para máquinas de compilação." #. type: item -#: guix-git/doc/guix.texi:1337 +#: guix-git/doc/guix.texi:1354 #, no-wrap msgid "@code{daemon-socket} (default: @code{\"/var/guix/daemon-socket/socket\"})" msgstr "@code{daemon-socket} (padrão: @code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:1340 +#: guix-git/doc/guix.texi:1357 msgid "File name of the Unix-domain socket @command{guix-daemon} is listening to on that machine." msgstr "O nome do arquivo do soquete do domínio Unix @command{guix-daemon} está escutando nessa máquina." #. type: item -#: guix-git/doc/guix.texi:1341 +#: guix-git/doc/guix.texi:1358 #, no-wrap msgid "@code{overload-threshold} (default: @code{0.6})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1347 +#: guix-git/doc/guix.texi:1364 msgid "The load threshold above which a potential offload machine is disregarded by the offload scheduler. The value roughly translates to the total processor usage of the build machine, ranging from 0.0 (0%) to 1.0 (100%). It can also be disabled by setting @code{overload-threshold} to @code{#f}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1348 +#: guix-git/doc/guix.texi:1365 #, no-wrap msgid "@code{parallel-builds} (default: @code{1})" msgstr "@code{parallel-builds} (padrão: @code{1})" #. type: table -#: guix-git/doc/guix.texi:1350 +#: guix-git/doc/guix.texi:1367 msgid "The number of builds that may run in parallel on the machine." msgstr "O número de compilações que podem ser executadas paralelamente na máquina." #. type: item -#: guix-git/doc/guix.texi:1351 +#: guix-git/doc/guix.texi:1368 #, no-wrap msgid "@code{speed} (default: @code{1.0})" msgstr "@code{speed} (padrão: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:1354 +#: guix-git/doc/guix.texi:1371 msgid "A ``relative speed factor''. The offload scheduler will tend to prefer machines with a higher speed factor." msgstr "Um ``fator de velocidade relativo''. O agendador de descarregamento tenderá a preferir máquinas com um fator de velocidade mais alto." #. type: item -#: guix-git/doc/guix.texi:1355 +#: guix-git/doc/guix.texi:1372 #, no-wrap msgid "@code{features} (default: @code{'()})" msgstr "@code{features} (padrão: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:1360 +#: guix-git/doc/guix.texi:1377 msgid "A list of strings denoting specific features supported by the machine. An example is @code{\"kvm\"} for machines that have the KVM Linux modules and corresponding hardware support. Derivations can request features by name, and they will be scheduled on matching build machines." msgstr "Uma lista de strgins que denotam recursos específicos suportados pela máquina. Um exemplo é @code{\"kvm\"} para máquinas que possuem os módulos KVM Linux e o suporte de hardware correspondente. As derivações podem solicitar recursos pelo nome e serão agendadas nas máquinas de compilação correspondentes." #. type: Plain text -#: guix-git/doc/guix.texi:1366 +#: guix-git/doc/guix.texi:1383 msgid "The @command{guix} command must be in the search path on the build machines. You can check whether this is the case by running:" msgstr "O comando @command{guix} deve estar no caminho de pesquisa nas máquinas de compilação. Você pode verificar se este é o caso executando:" #. type: example -#: guix-git/doc/guix.texi:1369 +#: guix-git/doc/guix.texi:1386 #, no-wrap msgid "ssh build-machine guix repl --version\n" msgstr "ssh build-machine guix repl --version\n" #. type: Plain text -#: guix-git/doc/guix.texi:1376 +#: guix-git/doc/guix.texi:1393 msgid "There is one last thing to do once @file{machines.scm} is in place. As explained above, when offloading, files are transferred back and forth between the machine stores. For this to work, you first need to generate a key pair on each machine to allow the daemon to export signed archives of files from the store (@pxref{Invoking guix archive}):" msgstr "Há uma última coisa a fazer quando o @file{machines.scm} está em vigor. Como explicado acima, ao descarregar, os arquivos são transferidos entre os armazéns das máquinas. Para que isso funcione, primeiro você precisa gerar um par de chaves em cada máquina para permitir que o daemon exporte arquivos assinados de arquivos do armazém (@pxref{Invocando guix archive}):" #. type: example -#: guix-git/doc/guix.texi:1379 guix-git/doc/guix.texi:35509 +#: guix-git/doc/guix.texi:1396 guix-git/doc/guix.texi:35965 #, no-wrap msgid "# guix archive --generate-key\n" msgstr "# guix archive --generate-key\n" #. type: Plain text -#: guix-git/doc/guix.texi:1384 +#: guix-git/doc/guix.texi:1401 msgid "Each build machine must authorize the key of the master machine so that it accepts store items it receives from the master:" msgstr "Cada máquina de construção deve autorizar a chave da máquina principal para que ela aceite itens do armazém que recebe do mestre:" #. type: example -#: guix-git/doc/guix.texi:1387 +#: guix-git/doc/guix.texi:1404 #, no-wrap msgid "# guix archive --authorize < master-public-key.txt\n" msgstr "# guix archive --authorize < master-public-key.txt\n" #. type: Plain text -#: guix-git/doc/guix.texi:1391 +#: guix-git/doc/guix.texi:1408 msgid "Likewise, the master machine must authorize the key of each build machine." msgstr "Da mesma forma, a máquina principal deve autorizar a chave de cada máquina de compilação." #. type: Plain text -#: guix-git/doc/guix.texi:1397 +#: guix-git/doc/guix.texi:1414 msgid "All the fuss with keys is here to express pairwise mutual trust relations between the master and the build machines. Concretely, when the master receives files from a build machine (and @i{vice versa}), its build daemon can make sure they are genuine, have not been tampered with, and that they are signed by an authorized key." msgstr "Todo esse barulho com as chaves está aqui para expressar relações de confiança mútua de pares entre a máquina mestre e as de compilação. Concretamente, quando o mestre recebe arquivos de uma máquina de compilação (e @i{vice-versa}), seu daemon de compilação pode garantir que eles sejam genuínos, não tenham sido violados e que sejam assinados por uma chave autorizada." #. type: cindex -#: guix-git/doc/guix.texi:1398 +#: guix-git/doc/guix.texi:1415 #, no-wrap msgid "offload test" msgstr "offload test" #. type: Plain text -#: guix-git/doc/guix.texi:1401 +#: guix-git/doc/guix.texi:1418 msgid "To test whether your setup is operational, run this command on the master node:" msgstr "Para testar se sua configuração está operacional, execute este comando no nó principal:" #. type: example -#: guix-git/doc/guix.texi:1404 +#: guix-git/doc/guix.texi:1421 #, no-wrap msgid "# guix offload test\n" msgstr "# guix offload test\n" #. type: Plain text -#: guix-git/doc/guix.texi:1410 +#: guix-git/doc/guix.texi:1427 msgid "This will attempt to connect to each of the build machines specified in @file{/etc/guix/machines.scm}, make sure Guix is available on each machine, attempt to export to the machine and import from it, and report any error in the process." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1413 +#: guix-git/doc/guix.texi:1430 msgid "If you want to test a different machine file, just specify it on the command line:" msgstr "Se você quiser testar um arquivo de máquina diferente, basta especificá-lo na linha de comando:" #. type: example -#: guix-git/doc/guix.texi:1416 +#: guix-git/doc/guix.texi:1433 #, no-wrap msgid "# guix offload test machines-qualif.scm\n" msgstr "# guix offload test machines-qualif.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:1420 +#: guix-git/doc/guix.texi:1437 msgid "Last, you can test the subset of the machines whose name matches a regular expression like this:" msgstr "Por fim, você pode testar o subconjunto das máquinas cujo nome corresponde a uma expressão regular como esta:" #. type: example -#: guix-git/doc/guix.texi:1423 +#: guix-git/doc/guix.texi:1440 #, no-wrap msgid "# guix offload test machines.scm '\\.gnu\\.org$'\n" msgstr "# guix offload test machines.scm '\\.gnu\\.org$'\n" #. type: cindex -#: guix-git/doc/guix.texi:1425 +#: guix-git/doc/guix.texi:1442 #, no-wrap msgid "offload status" msgstr "offload status" #. type: Plain text -#: guix-git/doc/guix.texi:1428 +#: guix-git/doc/guix.texi:1445 msgid "To display the current load of all build hosts, run this command on the main node:" msgstr "Para exibir o carregamento atual de todos os hosts de compilação, execute este comando no nó principal:" #. type: example -#: guix-git/doc/guix.texi:1431 +#: guix-git/doc/guix.texi:1448 #, no-wrap msgid "# guix offload status\n" msgstr "# guix offload status\n" #. type: cindex -#: guix-git/doc/guix.texi:1437 +#: guix-git/doc/guix.texi:1454 #, no-wrap msgid "SELinux, daemon policy" msgstr "SELinux, política de daemons" #. type: cindex -#: guix-git/doc/guix.texi:1438 +#: guix-git/doc/guix.texi:1455 #, no-wrap msgid "mandatory access control, SELinux" msgstr "controle de acesso obrigatório, SELinux" #. type: cindex -#: guix-git/doc/guix.texi:1439 +#: guix-git/doc/guix.texi:1456 #, no-wrap msgid "security, guix-daemon" msgstr "segurança, guix-daemon" #. type: Plain text -#: guix-git/doc/guix.texi:1445 +#: guix-git/doc/guix.texi:1462 msgid "Guix includes an SELinux policy file at @file{etc/guix-daemon.cil} that can be installed on a system where SELinux is enabled, in order to label Guix files and to specify the expected behavior of the daemon. Since Guix System does not provide an SELinux base policy, the daemon policy cannot be used on Guix System." msgstr "O Guix inclui um arquivo de políticas do SELinux em @file{etc/guix-daemon.cil} que pode ser instalado em um sistema em que o SELinux está ativado, para rotular os arquivos do Guix e especificar o comportamento esperado do daemon. Como o Guix System não fornece uma política básica do SELinux, a política do daemon não pode ser usada no Guix System." #. type: subsubsection -#: guix-git/doc/guix.texi:1446 +#: guix-git/doc/guix.texi:1463 #, no-wrap msgid "Installing the SELinux policy" msgstr "Instalando a política do SELinux" #. type: cindex -#: guix-git/doc/guix.texi:1447 +#: guix-git/doc/guix.texi:1464 #, no-wrap msgid "SELinux, policy installation" msgstr "SELinux, instalação de política" #. type: Plain text -#: guix-git/doc/guix.texi:1449 +#: guix-git/doc/guix.texi:1466 msgid "To install the policy run this command as root:" msgstr "Para instalar a política, execute esse comando como root:" #. type: example -#: guix-git/doc/guix.texi:1452 +#: guix-git/doc/guix.texi:1469 #, no-wrap msgid "semodule -i etc/guix-daemon.cil\n" msgstr "semodule -i etc/guix-daemon.cil\n" #. type: Plain text -#: guix-git/doc/guix.texi:1456 +#: guix-git/doc/guix.texi:1473 msgid "Then relabel the file system with @code{restorecon} or by a different mechanism provided by your system." msgstr "Em seguida, altere o rótulo do sistema de arquivos com @code{restorecon} ou por um mecanismo diferente fornecido pelo seu sistema." #. type: Plain text -#: guix-git/doc/guix.texi:1461 +#: guix-git/doc/guix.texi:1478 msgid "Once the policy is installed, the file system has been relabeled, and the daemon has been restarted, it should be running in the @code{guix_daemon_t} context. You can confirm this with the following command:" msgstr "Depois que a política é instalada, o sistema de arquivos foi rotulado novamente e o daemon foi reiniciado, ele deve estar em execução no contexto @code{guix_daemon_t}. Você pode confirmar isso com o seguinte comando:" #. type: example -#: guix-git/doc/guix.texi:1464 +#: guix-git/doc/guix.texi:1481 #, no-wrap msgid "ps -Zax | grep guix-daemon\n" msgstr "ps -Zax | grep guix-daemon\n" #. type: Plain text -#: guix-git/doc/guix.texi:1469 +#: guix-git/doc/guix.texi:1486 msgid "Monitor the SELinux log files as you run a command like @code{guix build hello} to convince yourself that SELinux permits all necessary operations." msgstr "Monitore os arquivos de log do SELinux enquanto executa um comando como @code{guix build hello} para se convencer de que o SELinux permite todas as operações necessárias." #. type: cindex -#: guix-git/doc/guix.texi:1471 +#: guix-git/doc/guix.texi:1488 #, no-wrap msgid "SELinux, limitations" msgstr "SELinux, limitações" #. type: Plain text -#: guix-git/doc/guix.texi:1476 +#: guix-git/doc/guix.texi:1493 msgid "This policy is not perfect. Here is a list of limitations or quirks that should be considered when deploying the provided SELinux policy for the Guix daemon." msgstr "Esta política não é perfeita. Aqui está uma lista de limitações ou peculiaridades que devem ser consideradas ao implementar a política SELinux fornecida para o daemon Guix." #. type: enumerate -#: guix-git/doc/guix.texi:1483 +#: guix-git/doc/guix.texi:1500 #, fuzzy msgid "@code{guix_daemon_socket_t} isn’t actually used. None of the socket operations involve contexts that have anything to do with @code{guix_daemon_socket_t}. It doesn’t hurt to have this unused label, but it would be preferable to define socket rules for only this label." msgstr "@code{guix_daemon_socket_t} não é realmente usado. Nenhuma das operações de soquete envolve contextos que têm algo a ver com @code{guix_daemon_socket_t}. Não faz mal ter esse rótulo não utilizado, mas seria preferível definir regras de soquete apenas para esse rótulo." #. type: enumerate -#: guix-git/doc/guix.texi:1494 +#: guix-git/doc/guix.texi:1511 msgid "@code{guix gc} cannot access arbitrary links to profiles. By design, the file label of the destination of a symlink is independent of the file label of the link itself. Although all profiles under $localstatedir are labelled, the links to these profiles inherit the label of the directory they are in. For links in the user’s home directory this will be @code{user_home_t}. But for links from the root user’s home directory, or @file{/tmp}, or the HTTP server’s working directory, etc, this won’t work. @code{guix gc} would be prevented from reading and following these links." msgstr "@code{guix gc} não pode acessar links arbitrários para perfis. Por design, o rótulo do arquivo do destino de um link simbólico é independente do rótulo do arquivo do próprio link. Embora todos os perfis em $localstatedir estejam rotulados, os links para esses perfis herdam o rótulo do diretório em que estão. Para os links no diretório inicial do usuário, será @code{user_home_t}. Mas, para links do diretório inicial do usuário raiz, ou @file{/tmp}, ou do diretório de trabalho do servidor HTTP etc., isso não funcionará. @code{guix gc} seria impedido de ler e seguir esses links." #. type: enumerate -#: guix-git/doc/guix.texi:1499 +#: guix-git/doc/guix.texi:1516 msgid "The daemon’s feature to listen for TCP connections might no longer work. This might require extra rules, because SELinux treats network sockets differently from files." msgstr "O recurso do daemon de escutar conexões TCP pode não funcionar mais. Isso pode exigir regras extras, porque o SELinux trata os soquetes de rede de maneira diferente dos arquivos." #. type: enumerate -#: guix-git/doc/guix.texi:1510 +#: guix-git/doc/guix.texi:1527 msgid "Currently all files with a name matching the regular expression @code{/gnu/store/.+-(guix-.+|profile)/bin/guix-daemon} are assigned the label @code{guix_daemon_exec_t}; this means that @emph{any} file with that name in any profile would be permitted to run in the @code{guix_daemon_t} domain. This is not ideal. An attacker could build a package that provides this executable and convince a user to install and run it, which lifts it into the @code{guix_daemon_t} domain. At that point SELinux could not prevent it from accessing files that are allowed for processes in that domain." msgstr "Atualmente, todos os arquivos com um nome correspondente à expressão regular @code{/gnu/store/.+-(guix-.+|profile)/bin/guix-daemon} recebem o rótulo @code{guix_daemon_exec_t}; isso significa que @emph{qualquer} arquivo com esse nome em qualquer perfil poderá ser executado no domínio de @code{guix_daemon_t}. Isto não é o ideal. Um invasor pode criar um pacote que forneça esse executável e convencer um usuário a instalar e executá-lo, o que o eleva ao domínio de @code{guix_daemon_t}. Nesse ponto, o SELinux não poderia impedir o acesso a arquivos permitidos para processos nesse domínio." #. type: enumerate -#: guix-git/doc/guix.texi:1515 +#: guix-git/doc/guix.texi:1532 msgid "You will need to relabel the store directory after all upgrades to @file{guix-daemon}, such as after running @code{guix pull}. Assuming the store is in @file{/gnu}, you can do this with @code{restorecon -vR /gnu}, or by other means provided by your operating system." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1523 +#: guix-git/doc/guix.texi:1540 msgid "We could generate a much more restrictive policy at installation time, so that only the @emph{exact} file name of the currently installed @code{guix-daemon} executable would be labelled with @code{guix_daemon_exec_t}, instead of using a broad regular expression. The downside is that root would have to install or upgrade the policy at installation time whenever the Guix package that provides the effectively running @code{guix-daemon} executable is upgraded." msgstr "Poderíamos gerar uma política muito mais restritiva no momento da instalação, para que apenas o nome do arquivo @emph{exato} do executável @code{guix-daemon} atualmente instalado seja rotulado com @code{guix_daemon_exec_t}, em vez de usar um amplo expressão regular. A desvantagem é que o root precisaria instalar ou atualizar a política no momento da instalação sempre que o pacote Guix que fornece o executável @code{guix-daemon} em execução efetiva for atualizado." #. type: section -#: guix-git/doc/guix.texi:1526 +#: guix-git/doc/guix.texi:1543 #, no-wrap msgid "Invoking @command{guix-daemon}" msgstr "Invocando @command{guix-daemon}" #. type: Plain text -#: guix-git/doc/guix.texi:1532 +#: guix-git/doc/guix.texi:1549 msgid "The @command{guix-daemon} program implements all the functionality to access the store. This includes launching build processes, running the garbage collector, querying the availability of a build result, etc. It is normally run as @code{root} like this:" msgstr "O programa @command{guix-daemon} implementa todas as funcionalidades para acessar o armazém. Isso inclui iniciar processos de compilação, executar o coletor de lixo, consultar a disponibilidade de um resultado da compilação etc. É normalmente executado como @code{root}, assim:" #. type: Plain text -#: guix-git/doc/guix.texi:1539 +#: guix-git/doc/guix.texi:1556 msgid "For details on how to set it up, @pxref{Setting Up the Daemon}." msgstr "Para detalhes sobre como configurá-lo, @pxref{Configurando o daemon}." #. type: cindex -#: guix-git/doc/guix.texi:1541 +#: guix-git/doc/guix.texi:1558 #, no-wrap msgid "container, build environment" msgstr "contêiner, ambiente de compilação" #. type: cindex -#: guix-git/doc/guix.texi:1543 guix-git/doc/guix.texi:3071 -#: guix-git/doc/guix.texi:3988 guix-git/doc/guix.texi:13753 +#: guix-git/doc/guix.texi:1560 guix-git/doc/guix.texi:3088 +#: guix-git/doc/guix.texi:4006 guix-git/doc/guix.texi:14110 #, no-wrap msgid "reproducible builds" msgstr "compilações reproduzíveis" #. type: Plain text -#: guix-git/doc/guix.texi:1555 +#: guix-git/doc/guix.texi:1572 msgid "By default, @command{guix-daemon} launches build processes under different UIDs, taken from the build group specified with @option{--build-users-group}. In addition, each build process is run in a chroot environment that only contains the subset of the store that the build process depends on, as specified by its derivation (@pxref{Programming Interface, derivation}), plus a set of specific system directories. By default, the latter contains @file{/dev} and @file{/dev/pts}. Furthermore, on GNU/Linux, the build environment is a @dfn{container}: in addition to having its own file system tree, it has a separate mount name space, its own PID name space, network name space, etc. This helps achieve reproducible builds (@pxref{Features})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1561 +#: guix-git/doc/guix.texi:1578 msgid "When the daemon performs a build on behalf of the user, it creates a build directory under @file{/tmp} or under the directory specified by its @env{TMPDIR} environment variable. This directory is shared with the container for the duration of the build, though within the container, the build tree is always called @file{/tmp/guix-build-@var{name}.drv-0}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1565 +#: guix-git/doc/guix.texi:1582 msgid "The build directory is automatically deleted upon completion, unless the build failed and the client specified @option{--keep-failed} (@pxref{Common Build Options, @option{--keep-failed}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1571 +#: guix-git/doc/guix.texi:1588 msgid "The daemon listens for connections and spawns one sub-process for each session started by a client (one of the @command{guix} sub-commands). The @command{guix processes} command allows you to get an overview of the activity on your system by viewing each of the active sessions and clients. @xref{Invoking guix processes}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1573 +#: guix-git/doc/guix.texi:1590 msgid "The following command-line options are supported:" msgstr "As seguintes opções de linha de comando são suportadas:" #. type: item -#: guix-git/doc/guix.texi:1575 +#: guix-git/doc/guix.texi:1592 #, no-wrap msgid "--build-users-group=@var{group}" msgstr "--build-users-group=@var{grupo}" #. type: table -#: guix-git/doc/guix.texi:1578 +#: guix-git/doc/guix.texi:1595 msgid "Take users from @var{group} to run build processes (@pxref{Setting Up the Daemon, build users})." msgstr "Obtém os usuários do @var{grupo} para executar os processos de compilação (@pxref{Configurando o daemon, usuários de compilação})." #. type: item -#: guix-git/doc/guix.texi:1579 guix-git/doc/guix.texi:10915 +#: guix-git/doc/guix.texi:1596 guix-git/doc/guix.texi:11229 #, no-wrap msgid "--no-substitutes" msgstr "--no-substitutes" #. type: cindex -#: guix-git/doc/guix.texi:1580 guix-git/doc/guix.texi:3083 -#: guix-git/doc/guix.texi:3741 +#: guix-git/doc/guix.texi:1597 guix-git/doc/guix.texi:3100 +#: guix-git/doc/guix.texi:3759 #, no-wrap msgid "substitutes" msgstr "substitutos" #. type: table -#: guix-git/doc/guix.texi:1584 guix-git/doc/guix.texi:10919 +#: guix-git/doc/guix.texi:1601 guix-git/doc/guix.texi:11233 msgid "Do not use substitutes for build products. That is, always build things locally instead of allowing downloads of pre-built binaries (@pxref{Substitutes})." msgstr "Não use substitutos para compilar produtos. Ou seja, sempre crie coisas localmente, em vez de permitir downloads de binários pré-compilados (@pxref{Substitutos})." #. type: table -#: guix-git/doc/guix.texi:1588 +#: guix-git/doc/guix.texi:1605 msgid "When the daemon runs with @option{--no-substitutes}, clients can still explicitly enable substitution @i{via} the @code{set-build-options} remote procedure call (@pxref{The Store})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:1590 +#: guix-git/doc/guix.texi:1607 msgid "daemon-substitute-urls" msgstr "daemon-substitute-urls" #. type: item -#: guix-git/doc/guix.texi:1590 guix-git/doc/guix.texi:10902 -#: guix-git/doc/guix.texi:13160 guix-git/doc/guix.texi:13899 -#: guix-git/doc/guix.texi:14124 +#: guix-git/doc/guix.texi:1607 guix-git/doc/guix.texi:11216 +#: guix-git/doc/guix.texi:13517 guix-git/doc/guix.texi:14256 +#: guix-git/doc/guix.texi:14481 #, no-wrap msgid "--substitute-urls=@var{urls}" msgstr "--substitute-urls=@var{urls}" #. type: table -#: guix-git/doc/guix.texi:1594 +#: guix-git/doc/guix.texi:1611 #, fuzzy #| msgid "Consider @var{urls} the default whitespace-separated list of substitute source URLs. When this option is omitted, @indicateurl{https://@value{SUBSTITUTE-SERVER}} is used." msgid "Consider @var{urls} the default whitespace-separated list of substitute source URLs. When this option is omitted, @indicateurl{@value{SUBSTITUTE-URLS}} is used." msgstr "Considere @var{urls} a lista padrão separada por espaços em branco de URLs de fontes substitutos. Quando essa opção é omitida, @indicateurl{https://@value{SUBSTITUTE-SERVER}} é usado." #. type: table -#: guix-git/doc/guix.texi:1597 +#: guix-git/doc/guix.texi:1614 msgid "This means that substitutes may be downloaded from @var{urls}, as long as they are signed by a trusted signature (@pxref{Substitutes})." msgstr "Isso significa que os substitutos podem ser baixados de @var{urls}, desde que assinados por uma assinatura confiável (@pxref{Substitutos})." #. type: table -#: guix-git/doc/guix.texi:1600 +#: guix-git/doc/guix.texi:1617 msgid "@xref{Getting Substitutes from Other Servers}, for more information on how to configure the daemon to get substitutes from other servers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1602 guix-git/doc/guix.texi:10938 +#: guix-git/doc/guix.texi:1619 guix-git/doc/guix.texi:11252 #, no-wrap msgid "--no-offload" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1606 guix-git/doc/guix.texi:10942 +#: guix-git/doc/guix.texi:1623 guix-git/doc/guix.texi:11256 msgid "Do not use offload builds to other machines (@pxref{Daemon Offload Setup}). That is, always build things locally instead of offloading builds to remote machines." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1607 +#: guix-git/doc/guix.texi:1624 #, no-wrap msgid "--cache-failures" msgstr "--cache-failures" #. type: table -#: guix-git/doc/guix.texi:1609 +#: guix-git/doc/guix.texi:1626 msgid "Cache build failures. By default, only successful builds are cached." msgstr "Armazena em cache as compilações que falharam. Por padrão, apenas compilações bem-sucedidas são armazenadas em cache." #. type: table -#: guix-git/doc/guix.texi:1614 +#: guix-git/doc/guix.texi:1631 msgid "When this option is used, @command{guix gc --list-failures} can be used to query the set of store items marked as failed; @command{guix gc --clear-failures} removes store items from the set of cached failures. @xref{Invoking guix gc}." msgstr "Quando essa opção é usada, o @command{guix gc --list-failures} pode ser usado para consultar o conjunto de itens do armazém marcados como com falha; O @command{guix gc --clear-failures} remove os itens do armazém do conjunto de falhas em cache. @xref{Invocando guix gc}." #. type: item -#: guix-git/doc/guix.texi:1615 guix-git/doc/guix.texi:10968 +#: guix-git/doc/guix.texi:1632 guix-git/doc/guix.texi:11282 #, no-wrap msgid "--cores=@var{n}" msgstr "--cores=@var{n}" #. type: itemx -#: guix-git/doc/guix.texi:1616 guix-git/doc/guix.texi:10969 +#: guix-git/doc/guix.texi:1633 guix-git/doc/guix.texi:11283 #, no-wrap msgid "-c @var{n}" msgstr "-c @var{n}" #. type: table -#: guix-git/doc/guix.texi:1619 +#: guix-git/doc/guix.texi:1636 msgid "Use @var{n} CPU cores to build each derivation; @code{0} means as many as available." msgstr "Usa @var{n} núcleos de CPU para compilar cada derivação; @code{0} significa todos disponíveis." #. type: table -#: guix-git/doc/guix.texi:1623 +#: guix-git/doc/guix.texi:1640 msgid "The default value is @code{0}, but it may be overridden by clients, such as the @option{--cores} option of @command{guix build} (@pxref{Invoking guix build})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1627 +#: guix-git/doc/guix.texi:1644 msgid "The effect is to define the @env{NIX_BUILD_CORES} environment variable in the build process, which can then use it to exploit internal parallelism---for instance, by running @code{make -j$NIX_BUILD_CORES}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1628 guix-git/doc/guix.texi:10973 +#: guix-git/doc/guix.texi:1645 guix-git/doc/guix.texi:11287 #, no-wrap msgid "--max-jobs=@var{n}" msgstr "--max-jobs=@var{n}" #. type: itemx -#: guix-git/doc/guix.texi:1629 guix-git/doc/guix.texi:10974 +#: guix-git/doc/guix.texi:1646 guix-git/doc/guix.texi:11288 #, no-wrap msgid "-M @var{n}" msgstr "-M @var{n}" #. type: table -#: guix-git/doc/guix.texi:1634 +#: guix-git/doc/guix.texi:1651 msgid "Allow at most @var{n} build jobs in parallel. The default value is @code{1}. Setting it to @code{0} means that no builds will be performed locally; instead, the daemon will offload builds (@pxref{Daemon Offload Setup}), or simply fail." msgstr "Permite no máximo @var{n} tarefas de compilação em paralelo. O valor padrão é @code{1}. Definir como @code{0} significa que nenhuma compilação será executada localmente; em vez disso, o daemon descarregará as compilações (@pxref{Configuração de descarregamento de daemon}) ou simplesmente falhará." #. type: item -#: guix-git/doc/guix.texi:1635 guix-git/doc/guix.texi:10943 +#: guix-git/doc/guix.texi:1652 guix-git/doc/guix.texi:11257 #, no-wrap msgid "--max-silent-time=@var{seconds}" msgstr "--max-silent-time=@var{segundos}" #. type: table -#: guix-git/doc/guix.texi:1638 guix-git/doc/guix.texi:10946 +#: guix-git/doc/guix.texi:1655 guix-git/doc/guix.texi:11260 msgid "When the build or substitution process remains silent for more than @var{seconds}, terminate it and report a build failure." msgstr "Quando o processo de compilação ou substituição permanecer em silêncio por mais de @var{segundos}, encerra-o e relata uma falha de compilação." #. type: table -#: guix-git/doc/guix.texi:1640 guix-git/doc/guix.texi:1649 +#: guix-git/doc/guix.texi:1657 guix-git/doc/guix.texi:1666 msgid "The default value is @code{0}, which disables the timeout." msgstr "O valor padrão é @code{0}, que desativa o tempo limite." #. type: table -#: guix-git/doc/guix.texi:1643 +#: guix-git/doc/guix.texi:1660 msgid "The value specified here can be overridden by clients (@pxref{Common Build Options, @option{--max-silent-time}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1644 guix-git/doc/guix.texi:10950 +#: guix-git/doc/guix.texi:1661 guix-git/doc/guix.texi:11264 #, no-wrap msgid "--timeout=@var{seconds}" msgstr "--timeout=@var{segundos}" #. type: table -#: guix-git/doc/guix.texi:1647 guix-git/doc/guix.texi:10953 +#: guix-git/doc/guix.texi:1664 guix-git/doc/guix.texi:11267 msgid "Likewise, when the build or substitution process lasts for more than @var{seconds}, terminate it and report a build failure." msgstr "Da mesma forma, quando o processo de compilação ou substituição durar mais que @var{segundos}, encerra-o e relata uma falha de compilação." #. type: table -#: guix-git/doc/guix.texi:1652 +#: guix-git/doc/guix.texi:1669 msgid "The value specified here can be overridden by clients (@pxref{Common Build Options, @option{--timeout}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1653 +#: guix-git/doc/guix.texi:1670 #, no-wrap msgid "--rounds=@var{N}" msgstr "--rounds=@var{N}" #. type: table -#: guix-git/doc/guix.texi:1658 +#: guix-git/doc/guix.texi:1675 msgid "Build each derivation @var{n} times in a row, and raise an error if consecutive build results are not bit-for-bit identical. Note that this setting can be overridden by clients such as @command{guix build} (@pxref{Invoking guix build})." msgstr "Compila cada derivação @var{n} vezes seguidas e gera um erro se os resultados consecutivos da compilação não forem idênticos bit a bit. Observe que essa configuração pode ser substituída por clientes como @command{guix build} (@pxref{Invocando guix build})." #. type: table -#: guix-git/doc/guix.texi:1662 guix-git/doc/guix.texi:10937 -#: guix-git/doc/guix.texi:11561 +#: guix-git/doc/guix.texi:1679 guix-git/doc/guix.texi:11251 +#: guix-git/doc/guix.texi:11875 msgid "When used in conjunction with @option{--keep-failed}, the differing output is kept in the store, under @file{/gnu/store/@dots{}-check}. This makes it easy to look for differences between the two results." msgstr "Quando usado em conjunto com @option{--keep-failed}, uma saída de comparação é mantida no armazém, sob @file{/gnu/store/@dots{}-check}. Isso facilita procurar por diferenças entre os dois resultados." #. type: item -#: guix-git/doc/guix.texi:1663 +#: guix-git/doc/guix.texi:1680 #, no-wrap msgid "--debug" msgstr "--debug" #. type: table -#: guix-git/doc/guix.texi:1665 +#: guix-git/doc/guix.texi:1682 msgid "Produce debugging output." msgstr "Produz uma saída de depuração." #. type: table -#: guix-git/doc/guix.texi:1669 +#: guix-git/doc/guix.texi:1686 msgid "This is useful to debug daemon start-up issues, but then it may be overridden by clients, for example the @option{--verbosity} option of @command{guix build} (@pxref{Invoking guix build})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1670 +#: guix-git/doc/guix.texi:1687 #, no-wrap msgid "--chroot-directory=@var{dir}" msgstr "--chroot-directory=@var{dir}" #. type: table -#: guix-git/doc/guix.texi:1672 +#: guix-git/doc/guix.texi:1689 msgid "Add @var{dir} to the build chroot." msgstr "adiciona @var{dir} ao chroot de compilação." #. type: table -#: guix-git/doc/guix.texi:1678 +#: guix-git/doc/guix.texi:1695 msgid "Doing this may change the result of build processes---for instance if they use optional dependencies found in @var{dir} when it is available, and not otherwise. For that reason, it is not recommended to do so. Instead, make sure that each derivation declares all the inputs that it needs." msgstr "Isso pode alterar o resultado dos processos de compilação -- por exemplo, se eles usam dependências opcionais encontradas em @var{dir} quando estão disponíveis, e não o contrário. Por esse motivo, não é recomendável fazê-lo. Em vez disso, verifique se cada derivação declara todas as entradas necessárias." #. type: item -#: guix-git/doc/guix.texi:1679 +#: guix-git/doc/guix.texi:1696 #, no-wrap msgid "--disable-chroot" msgstr "--disable-chroot" #. type: table -#: guix-git/doc/guix.texi:1681 +#: guix-git/doc/guix.texi:1698 msgid "Disable chroot builds." msgstr "Desabilita compilações em chroot." #. type: table -#: guix-git/doc/guix.texi:1686 +#: guix-git/doc/guix.texi:1703 msgid "Using this option is not recommended since, again, it would allow build processes to gain access to undeclared dependencies. It is necessary, though, when @command{guix-daemon} is running under an unprivileged user account." msgstr "O uso dessa opção não é recomendado, pois, novamente, isso permitiria que os processos de compilação obtivessem acesso a dependências não declaradas. Porém, é necessário quando o @command{guix-daemon} está sendo executado em uma conta de usuário sem privilégios." #. type: item -#: guix-git/doc/guix.texi:1687 +#: guix-git/doc/guix.texi:1704 #, no-wrap msgid "--log-compression=@var{type}" msgstr "--log-compression=@var{tipo}" #. type: table -#: guix-git/doc/guix.texi:1690 +#: guix-git/doc/guix.texi:1707 msgid "Compress build logs according to @var{type}, one of @code{gzip}, @code{bzip2}, or @code{none}." msgstr "Compacta logs de compilação de aconrdo com @var{tipo}, que pode ser um entre @code{gzip}, @code{bzip2} e @code{none}." #. type: table -#: guix-git/doc/guix.texi:1694 -msgid "Unless @option{--lose-logs} is used, all the build logs are kept in the @var{localstatedir}. To save space, the daemon automatically compresses them with Bzip2 by default." +#: guix-git/doc/guix.texi:1711 +msgid "Unless @option{--lose-logs} is used, all the build logs are kept in the @var{localstatedir}. To save space, the daemon automatically compresses them with gzip by default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1695 +#: guix-git/doc/guix.texi:1712 #, no-wrap msgid "--discover[=yes|no]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1698 guix-git/doc/guix.texi:16563 +#: guix-git/doc/guix.texi:1715 guix-git/doc/guix.texi:16920 msgid "Whether to discover substitute servers on the local network using mDNS and DNS-SD." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1701 +#: guix-git/doc/guix.texi:1718 msgid "This feature is still experimental. However, here are a few considerations." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1705 +#: guix-git/doc/guix.texi:1722 msgid "It might be faster/less expensive than fetching from remote servers;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1708 +#: guix-git/doc/guix.texi:1725 msgid "There are no security risks, only genuine substitutes will be used (@pxref{Substitute Authentication});" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1712 +#: guix-git/doc/guix.texi:1729 msgid "An attacker advertising @command{guix publish} on your LAN cannot serve you malicious binaries, but they can learn what software you’re installing;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1715 +#: guix-git/doc/guix.texi:1732 msgid "Servers may serve substitute over HTTP, unencrypted, so anyone on the LAN can see what software you’re installing." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1719 +#: guix-git/doc/guix.texi:1736 msgid "It is also possible to enable or disable substitute server discovery at run-time by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1723 +#: guix-git/doc/guix.texi:1740 #, no-wrap msgid "" "herd discover guix-daemon on\n" @@ -6971,237 +7053,237 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1725 +#: guix-git/doc/guix.texi:1742 #, no-wrap msgid "--disable-deduplication" msgstr "--disable-deduplication" #. type: cindex -#: guix-git/doc/guix.texi:1726 guix-git/doc/guix.texi:4326 +#: guix-git/doc/guix.texi:1743 guix-git/doc/guix.texi:4344 #, no-wrap msgid "deduplication" msgstr "deduplicação" #. type: table -#: guix-git/doc/guix.texi:1728 +#: guix-git/doc/guix.texi:1745 msgid "Disable automatic file ``deduplication'' in the store." msgstr "Desabilita ``deduplicação'' automática de arquivos no armazém." #. type: table -#: guix-git/doc/guix.texi:1735 +#: guix-git/doc/guix.texi:1752 msgid "By default, files added to the store are automatically ``deduplicated'': if a newly added file is identical to another one found in the store, the daemon makes the new file a hard link to the other file. This can noticeably reduce disk usage, at the expense of slightly increased input/output load at the end of a build process. This option disables this optimization." msgstr "Por padrão, os arquivos adicionados ao armazém são automaticamente ``deduplicados'': se um arquivo recém-adicionado for idêntico a outro encontrado no armazém, o daemon tornará o novo arquivo um link físico para o outro arquivo. Isso pode reduzir notavelmente o uso do disco, às custas de um leve aumento na carga de entrada/saída no final de um processo de criação. Esta opção desativa essa otimização." #. type: item -#: guix-git/doc/guix.texi:1736 +#: guix-git/doc/guix.texi:1753 #, no-wrap msgid "--gc-keep-outputs[=yes|no]" msgstr "--gc-keep-outputs[=yes|no]" #. type: table -#: guix-git/doc/guix.texi:1739 +#: guix-git/doc/guix.texi:1756 msgid "Tell whether the garbage collector (GC) must keep outputs of live derivations." msgstr "Diz se o coletor de lixo (GC) deve manter as saídas de derivações vivas." #. type: cindex -#: guix-git/doc/guix.texi:1740 guix-git/doc/guix.texi:4139 +#: guix-git/doc/guix.texi:1757 guix-git/doc/guix.texi:4157 #, no-wrap msgid "GC roots" msgstr "raízes de GC" #. type: cindex -#: guix-git/doc/guix.texi:1741 guix-git/doc/guix.texi:4140 +#: guix-git/doc/guix.texi:1758 guix-git/doc/guix.texi:4158 #, no-wrap msgid "garbage collector roots" msgstr "raízes de coletor de lixo" #. type: table -#: guix-git/doc/guix.texi:1747 +#: guix-git/doc/guix.texi:1764 msgid "When set to @code{yes}, the GC will keep the outputs of any live derivation available in the store---the @file{.drv} files. The default is @code{no}, meaning that derivation outputs are kept only if they are reachable from a GC root. @xref{Invoking guix gc}, for more on GC roots." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1748 +#: guix-git/doc/guix.texi:1765 #, no-wrap msgid "--gc-keep-derivations[=yes|no]" msgstr "--gc-keep-derivations[=yes|no]" #. type: table -#: guix-git/doc/guix.texi:1751 +#: guix-git/doc/guix.texi:1768 msgid "Tell whether the garbage collector (GC) must keep derivations corresponding to live outputs." msgstr "Diz se o coletor de lixo (GC) deve manter as derivações correspondentes às saídas vivas." #. type: table -#: guix-git/doc/guix.texi:1757 +#: guix-git/doc/guix.texi:1774 msgid "When set to @code{yes}, as is the case by default, the GC keeps derivations---i.e., @file{.drv} files---as long as at least one of their outputs is live. This allows users to keep track of the origins of items in their store. Setting it to @code{no} saves a bit of disk space." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1766 +#: guix-git/doc/guix.texi:1783 msgid "In this way, setting @option{--gc-keep-derivations} to @code{yes} causes liveness to flow from outputs to derivations, and setting @option{--gc-keep-outputs} to @code{yes} causes liveness to flow from derivations to outputs. When both are set to @code{yes}, the effect is to keep all the build prerequisites (the sources, compiler, libraries, and other build-time tools) of live objects in the store, regardless of whether these prerequisites are reachable from a GC root. This is convenient for developers since it saves rebuilds or downloads." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1767 +#: guix-git/doc/guix.texi:1784 #, no-wrap msgid "--impersonate-linux-2.6" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1770 +#: guix-git/doc/guix.texi:1787 msgid "On Linux-based systems, impersonate Linux 2.6. This means that the kernel's @command{uname} system call will report 2.6 as the release number." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1773 +#: guix-git/doc/guix.texi:1790 msgid "This might be helpful to build programs that (usually wrongfully) depend on the kernel version number." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1774 +#: guix-git/doc/guix.texi:1791 #, no-wrap msgid "--lose-logs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1777 +#: guix-git/doc/guix.texi:1794 msgid "Do not keep build logs. By default they are kept under @file{@var{localstatedir}/guix/log}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1778 guix-git/doc/guix.texi:4567 -#: guix-git/doc/guix.texi:5846 guix-git/doc/guix.texi:6229 -#: guix-git/doc/guix.texi:6629 guix-git/doc/guix.texi:11505 -#: guix-git/doc/guix.texi:13187 guix-git/doc/guix.texi:13452 -#: guix-git/doc/guix.texi:14129 guix-git/doc/guix.texi:34442 -#: guix-git/doc/guix.texi:35251 +#: guix-git/doc/guix.texi:1795 guix-git/doc/guix.texi:4585 +#: guix-git/doc/guix.texi:5859 guix-git/doc/guix.texi:6272 +#: guix-git/doc/guix.texi:6672 guix-git/doc/guix.texi:11819 +#: guix-git/doc/guix.texi:13544 guix-git/doc/guix.texi:13809 +#: guix-git/doc/guix.texi:14486 guix-git/doc/guix.texi:34881 +#: guix-git/doc/guix.texi:35695 #, no-wrap msgid "--system=@var{system}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1782 +#: guix-git/doc/guix.texi:1799 msgid "Assume @var{system} as the current system type. By default it is the architecture/kernel pair found at configure time, such as @code{x86_64-linux}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1783 guix-git/doc/guix.texi:10747 +#: guix-git/doc/guix.texi:1800 guix-git/doc/guix.texi:11061 #, no-wrap msgid "--listen=@var{endpoint}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1788 +#: guix-git/doc/guix.texi:1805 msgid "Listen for connections on @var{endpoint}. @var{endpoint} is interpreted as the file name of a Unix-domain socket if it starts with @code{/} (slash sign). Otherwise, @var{endpoint} is interpreted as a host name or host name and port to listen to. Here are a few examples:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1790 +#: guix-git/doc/guix.texi:1807 #, no-wrap msgid "--listen=/gnu/var/daemon" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1793 +#: guix-git/doc/guix.texi:1810 msgid "Listen for connections on the @file{/gnu/var/daemon} Unix-domain socket, creating it if needed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1794 +#: guix-git/doc/guix.texi:1811 #, no-wrap msgid "--listen=localhost" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1795 guix-git/doc/guix.texi:9421 +#: guix-git/doc/guix.texi:1812 guix-git/doc/guix.texi:9735 #, no-wrap msgid "daemon, remote access" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1796 guix-git/doc/guix.texi:9422 +#: guix-git/doc/guix.texi:1813 guix-git/doc/guix.texi:9736 #, no-wrap msgid "remote access to the daemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1797 guix-git/doc/guix.texi:9423 +#: guix-git/doc/guix.texi:1814 guix-git/doc/guix.texi:9737 #, no-wrap msgid "daemon, cluster setup" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1798 guix-git/doc/guix.texi:9424 +#: guix-git/doc/guix.texi:1815 guix-git/doc/guix.texi:9738 #, no-wrap msgid "clusters, daemon setup" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1801 +#: guix-git/doc/guix.texi:1818 msgid "Listen for TCP connections on the network interface corresponding to @code{localhost}, on port 44146." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1802 +#: guix-git/doc/guix.texi:1819 #, no-wrap msgid "--listen=128.0.0.42:1234" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1805 +#: guix-git/doc/guix.texi:1822 msgid "Listen for TCP connections on the network interface corresponding to @code{128.0.0.42}, on port 1234." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1812 +#: guix-git/doc/guix.texi:1829 msgid "This option can be repeated multiple times, in which case @command{guix-daemon} accepts connections on all the specified endpoints. Users can tell client commands what endpoint to connect to by setting the @env{GUIX_DAEMON_SOCKET} environment variable (@pxref{The Store, @env{GUIX_DAEMON_SOCKET}})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:1819 +#: guix-git/doc/guix.texi:1836 msgid "The daemon protocol is @emph{unauthenticated and unencrypted}. Using @option{--listen=@var{host}} is suitable on local networks, such as clusters, where only trusted nodes may connect to the build daemon. In other cases where remote access to the daemon is needed, we recommend using Unix-domain sockets along with SSH." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1824 +#: guix-git/doc/guix.texi:1841 msgid "When @option{--listen} is omitted, @command{guix-daemon} listens for connections on the Unix-domain socket located at @file{@var{localstatedir}/guix/daemon-socket/socket}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1834 +#: guix-git/doc/guix.texi:1851 msgid "When using Guix on top of GNU/Linux distribution other than Guix System---a so-called @dfn{foreign distro}---a few additional steps are needed to get everything in place. Here are some of them." msgstr "Ao usar Guix sobre uma distribuição GNU/Linux que não seja um Guix System --- uma chamada @dfn{distro alheia} --- algumas etapas adicionais são necessárias para colocar tudo no seu lugar. Aqui estão algumas delas." #. type: anchor{#1} -#: guix-git/doc/guix.texi:1838 +#: guix-git/doc/guix.texi:1855 msgid "locales-and-locpath" msgstr "locales-and-locpath" #. type: cindex -#: guix-git/doc/guix.texi:1838 +#: guix-git/doc/guix.texi:1855 #, no-wrap msgid "locales, when not on Guix System" msgstr "locales, quando não está no Guix System" #. type: vindex -#: guix-git/doc/guix.texi:1839 guix-git/doc/guix.texi:15770 +#: guix-git/doc/guix.texi:1856 guix-git/doc/guix.texi:16127 #, no-wrap msgid "LOCPATH" msgstr "LOCPATH" #. type: vindex -#: guix-git/doc/guix.texi:1840 +#: guix-git/doc/guix.texi:1857 #, no-wrap msgid "GUIX_LOCPATH" msgstr "GUIX_LOCPATH" #. type: Plain text -#: guix-git/doc/guix.texi:1845 +#: guix-git/doc/guix.texi:1862 msgid "Packages installed @i{via} Guix will not use the locale data of the host system. Instead, you must first install one of the locale packages available with Guix and then define the @env{GUIX_LOCPATH} environment variable:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1849 +#: guix-git/doc/guix.texi:1866 #, no-wrap msgid "" "$ guix install glibc-locales\n" @@ -7209,132 +7291,132 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1855 +#: guix-git/doc/guix.texi:1872 msgid "Note that the @code{glibc-locales} package contains data for all the locales supported by the GNU@tie{}libc and weighs in at around 917@tie{}MiB@. Alternatively, the @code{glibc-utf8-locales} is smaller but limited to a few UTF-8 locales." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1859 +#: guix-git/doc/guix.texi:1876 msgid "The @env{GUIX_LOCPATH} variable plays a role similar to @env{LOCPATH} (@pxref{Locale Names, @env{LOCPATH},, libc, The GNU C Library Reference Manual}). There are two important differences though:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1866 +#: guix-git/doc/guix.texi:1883 msgid "@env{GUIX_LOCPATH} is honored only by the libc in Guix, and not by the libc provided by foreign distros. Thus, using @env{GUIX_LOCPATH} allows you to make sure the programs of the foreign distro will not end up loading incompatible locale data." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1873 +#: guix-git/doc/guix.texi:1890 msgid "libc suffixes each entry of @env{GUIX_LOCPATH} with @code{/X.Y}, where @code{X.Y} is the libc version---e.g., @code{2.22}. This means that, should your Guix profile contain a mixture of programs linked against different libc version, each libc version will only try to load locale data in the right format." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1877 +#: guix-git/doc/guix.texi:1894 msgid "This is important because the locale data format used by different libc versions may be incompatible." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1880 +#: guix-git/doc/guix.texi:1897 #, no-wrap msgid "name service switch, glibc" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1881 +#: guix-git/doc/guix.texi:1898 #, no-wrap msgid "NSS (name service switch), glibc" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1882 +#: guix-git/doc/guix.texi:1899 #, no-wrap msgid "nscd (name service caching daemon)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1883 +#: guix-git/doc/guix.texi:1900 #, no-wrap msgid "name service caching daemon (nscd)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1890 +#: guix-git/doc/guix.texi:1907 msgid "When using Guix on a foreign distro, we @emph{strongly recommend} that the system run the GNU C library's @dfn{name service cache daemon}, @command{nscd}, which should be listening on the @file{/var/run/nscd/socket} socket. Failing to do that, applications installed with Guix may fail to look up host names or user accounts, or may even crash. The next paragraphs explain why." msgstr "Ao usar o Guix em uma distro alheia, nós @emph{recomendamos fortemente} que o sistema use o @dfn{daemon de cache de serviço de nomes} da biblioteca C do GNU, @command{nscd}, que deve ouvir no soquete @file{/var/run/nscd/socket}. Caso não faça isso, os aplicativos instalados com Guix podem falhar em procurar nomes de máquina e contas de usuário, ou até mesmo travar. Os próximos parágrafos explicam o porquê." #. type: file{#1} -#: guix-git/doc/guix.texi:1891 +#: guix-git/doc/guix.texi:1908 #, no-wrap msgid "nsswitch.conf" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1896 +#: guix-git/doc/guix.texi:1913 msgid "The GNU C library implements a @dfn{name service switch} (NSS), which is an extensible mechanism for ``name lookups'' in general: host name resolution, user accounts, and more (@pxref{Name Service Switch,,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1897 +#: guix-git/doc/guix.texi:1914 #, no-wrap msgid "Network information service (NIS)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1898 +#: guix-git/doc/guix.texi:1915 #, no-wrap msgid "NIS (Network information service)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1907 +#: guix-git/doc/guix.texi:1924 msgid "Being extensible, the NSS supports @dfn{plugins}, which provide new name lookup implementations: for example, the @code{nss-mdns} plugin allow resolution of @code{.local} host names, the @code{nis} plugin allows user account lookup using the Network information service (NIS), and so on. These extra ``lookup services'' are configured system-wide in @file{/etc/nsswitch.conf}, and all the programs running on the system honor those settings (@pxref{NSS Configuration File,,, libc, The GNU C Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1917 +#: guix-git/doc/guix.texi:1934 msgid "When they perform a name lookup---for instance by calling the @code{getaddrinfo} function in C---applications first try to connect to the nscd; on success, nscd performs name lookups on their behalf. If the nscd is not running, then they perform the name lookup by themselves, by loading the name lookup services into their own address space and running it. These name lookup services---the @file{libnss_*.so} files---are @code{dlopen}'d, but they may come from the host system's C library, rather than from the C library the application is linked against (the C library coming from Guix)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1922 +#: guix-git/doc/guix.texi:1939 msgid "And this is where the problem is: if your application is linked against Guix's C library (say, glibc 2.24) and tries to load NSS plugins from another C library (say, @code{libnss_mdns.so} for glibc 2.22), it will likely crash or have its name lookups fail unexpectedly." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1927 +#: guix-git/doc/guix.texi:1944 msgid "Running @command{nscd} on the system, among other advantages, eliminates this binary incompatibility problem because those @code{libnss_*.so} files are loaded in the @command{nscd} process, not in applications themselves." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:1928 +#: guix-git/doc/guix.texi:1945 #, no-wrap msgid "X11 Fonts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1938 +#: guix-git/doc/guix.texi:1955 msgid "The majority of graphical applications use Fontconfig to locate and load fonts and perform X11-client-side rendering. The @code{fontconfig} package in Guix looks for fonts in @file{$HOME/.guix-profile} by default. Thus, to allow graphical applications installed with Guix to display fonts, you have to install fonts with Guix as well. Essential font packages include @code{font-ghostscript}, @code{font-dejavu}, and @code{font-gnu-freefont}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1939 +#: guix-git/doc/guix.texi:1956 #, no-wrap msgid "fc-cache" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1940 +#: guix-git/doc/guix.texi:1957 #, no-wrap msgid "font cache" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1944 +#: guix-git/doc/guix.texi:1961 msgid "Once you have installed or removed fonts, or when you notice an application that does not find fonts, you may need to install Fontconfig and to force an update of its font cache by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1948 +#: guix-git/doc/guix.texi:1965 #, no-wrap msgid "" "guix install fontconfig\n" @@ -7342,266 +7424,266 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1956 +#: guix-git/doc/guix.texi:1973 msgid "To display text written in Chinese languages, Japanese, or Korean in graphical applications, consider installing @code{font-adobe-source-han-sans} or @code{font-wqy-zenhei}. The former has multiple outputs, one per language family (@pxref{Packages with Multiple Outputs}). For instance, the following command installs fonts for Chinese languages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1959 +#: guix-git/doc/guix.texi:1976 #, no-wrap msgid "guix install font-adobe-source-han-sans:cn\n" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1961 +#: guix-git/doc/guix.texi:1978 #, no-wrap msgid "xterm" msgstr "xterm" #. type: Plain text -#: guix-git/doc/guix.texi:1965 +#: guix-git/doc/guix.texi:1982 msgid "Older programs such as @command{xterm} do not use Fontconfig and instead rely on server-side font rendering. Such programs require to specify a full name of a font using XLFD (X Logical Font Description), like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1968 +#: guix-git/doc/guix.texi:1985 #, no-wrap msgid "-*-dejavu sans-medium-r-normal-*-*-100-*-*-*-*-*-1\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1972 +#: guix-git/doc/guix.texi:1989 msgid "To be able to use such full names for the TrueType fonts installed in your Guix profile, you need to extend the font path of the X server:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1977 +#: guix-git/doc/guix.texi:1994 #, no-wrap msgid "xset +fp $(dirname $(readlink -f ~/.guix-profile/share/fonts/truetype/fonts.dir))\n" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1979 +#: guix-git/doc/guix.texi:1996 #, no-wrap msgid "xlsfonts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1982 +#: guix-git/doc/guix.texi:1999 msgid "After that, you can run @code{xlsfonts} (from @code{xlsfonts} package) to make sure your TrueType fonts are listed there." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1986 guix-git/doc/guix.texi:34161 +#: guix-git/doc/guix.texi:2003 guix-git/doc/guix.texi:34600 #, no-wrap msgid "nss-certs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1989 +#: guix-git/doc/guix.texi:2006 msgid "The @code{nss-certs} package provides X.509 certificates, which allow programs to authenticate Web servers accessed over HTTPS." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1994 +#: guix-git/doc/guix.texi:2011 msgid "When using Guix on a foreign distro, you can install this package and define the relevant environment variables so that packages know where to look for certificates. @xref{X.509 Certificates}, for detailed information." msgstr "Ao usar uma Guix em uma distro alheia, você pode instalar esse pacote e definir as variáveis de ambiente relevantes de forma que os pacotes saibam onde procurar por certificados. @xref{Certificados X.509}, para informações detalhadas." #. type: code{#1} -#: guix-git/doc/guix.texi:1997 +#: guix-git/doc/guix.texi:2014 #, no-wrap msgid "emacs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2003 +#: guix-git/doc/guix.texi:2020 msgid "When you install Emacs packages with Guix, the Elisp files are placed under the @file{share/emacs/site-lisp/} directory of the profile in which they are installed. The Elisp libraries are made available to Emacs through the @env{EMACSLOADPATH} environment variable, which is set when installing Emacs itself." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2010 +#: guix-git/doc/guix.texi:2027 msgid "Additionally, autoload definitions are automatically evaluated at the initialization of Emacs, by the Guix-specific @code{guix-emacs-autoload-packages} procedure. If, for some reason, you want to avoid auto-loading the Emacs packages installed with Guix, you can do so by running Emacs with the @option{--no-site-file} option (@pxref{Init File,,, emacs, The GNU Emacs Manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2015 +#: guix-git/doc/guix.texi:2032 #, no-wrap msgid "Upgrading Guix, on a foreign distro" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2018 +#: guix-git/doc/guix.texi:2035 msgid "To upgrade Guix, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2021 guix-git/doc/guix.texi:2879 +#: guix-git/doc/guix.texi:2038 guix-git/doc/guix.texi:2896 #, no-wrap msgid "guix pull\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2024 +#: guix-git/doc/guix.texi:2041 msgid "@xref{Invoking guix pull}, for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2025 +#: guix-git/doc/guix.texi:2042 #, no-wrap msgid "upgrading Guix for the root user, on a foreign distro" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2026 +#: guix-git/doc/guix.texi:2043 #, no-wrap msgid "upgrading the Guix daemon, on a foreign distro" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2027 +#: guix-git/doc/guix.texi:2044 #, no-wrap msgid "@command{guix pull} for the root user, on a foreign distro" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2030 +#: guix-git/doc/guix.texi:2047 msgid "On a foreign distro, you can upgrade the build daemon by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2033 +#: guix-git/doc/guix.texi:2050 #, no-wrap msgid "sudo -i guix pull\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2038 +#: guix-git/doc/guix.texi:2055 msgid "followed by (assuming your distro uses the systemd service management tool):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2041 +#: guix-git/doc/guix.texi:2058 #, no-wrap msgid "systemctl restart guix-daemon.service\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2045 +#: guix-git/doc/guix.texi:2062 msgid "On Guix System, upgrading the daemon is achieved by reconfiguring the system (@pxref{Invoking guix system, @code{guix system reconfigure}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2052 +#: guix-git/doc/guix.texi:2069 #, no-wrap msgid "installing Guix System" msgstr "instalando o Guix System" #. type: cindex -#: guix-git/doc/guix.texi:2053 +#: guix-git/doc/guix.texi:2070 #, no-wrap msgid "Guix System, installation" msgstr "Guix System, instalação" #. type: Plain text -#: guix-git/doc/guix.texi:2058 +#: guix-git/doc/guix.texi:2075 msgid "This section explains how to install Guix System on a machine. Guix, as a package manager, can also be installed on top of a running GNU/Linux system, @pxref{Installation}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2067 +#: guix-git/doc/guix.texi:2084 msgid "You are reading this documentation with an Info reader. For details on how to use it, hit the @key{RET} key (``return'' or ``enter'') on the link that follows: @pxref{Top, Info reader,, info-stnd, Stand-alone GNU Info}. Hit @kbd{l} afterwards to come back here." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2070 +#: guix-git/doc/guix.texi:2087 msgid "Alternatively, run @command{info info} in another tty to keep the manual available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2091 +#: guix-git/doc/guix.texi:2108 msgid "We consider Guix System to be ready for a wide range of ``desktop'' and server use cases. The reliability guarantees it provides---transactional upgrades and rollbacks, reproducibility---make it a solid foundation." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2094 +#: guix-git/doc/guix.texi:2111 msgid "Nevertheless, before you proceed with the installation, be aware of the following noteworthy limitations applicable to version @value{VERSION}:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2099 +#: guix-git/doc/guix.texi:2116 msgid "More and more system services are provided (@pxref{Services}), but some may be missing." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2104 +#: guix-git/doc/guix.texi:2121 msgid "GNOME, Xfce, LXDE, and Enlightenment are available (@pxref{Desktop Services}), as well as a number of X11 window managers. However, KDE is currently missing." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2109 +#: guix-git/doc/guix.texi:2126 msgid "More than a disclaimer, this is an invitation to report issues (and success stories!), and to join us in improving it. @xref{Contributing}, for more info." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2114 +#: guix-git/doc/guix.texi:2131 #, no-wrap msgid "hardware support on Guix System" msgstr "suporte a hardware no Guix System" #. type: Plain text -#: guix-git/doc/guix.texi:2123 +#: guix-git/doc/guix.texi:2140 msgid "GNU@tie{}Guix focuses on respecting the user's computing freedom. It builds around the kernel Linux-libre, which means that only hardware for which free software drivers and firmware exist is supported. Nowadays, a wide range of off-the-shelf hardware is supported on GNU/Linux-libre---from keyboards to graphics cards to scanners and Ethernet controllers. Unfortunately, there are still areas where hardware vendors deny users control over their own computing, and such hardware is not supported on Guix System." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2124 +#: guix-git/doc/guix.texi:2141 #, no-wrap msgid "WiFi, hardware support" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2133 +#: guix-git/doc/guix.texi:2150 msgid "One of the main areas where free drivers or firmware are lacking is WiFi devices. WiFi devices known to work include those using Atheros chips (AR9271 and AR7010), which corresponds to the @code{ath9k} Linux-libre driver, and those using Broadcom/AirForce chips (BCM43xx with Wireless-Core Revision 5), which corresponds to the @code{b43-open} Linux-libre driver. Free firmware exists for both and is available out-of-the-box on Guix System, as part of @code{%base-firmware} (@pxref{operating-system Reference, @code{firmware}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2134 +#: guix-git/doc/guix.texi:2151 #, no-wrap msgid "RYF, Respects Your Freedom" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2140 +#: guix-git/doc/guix.texi:2157 msgid "The @uref{https://www.fsf.org/, Free Software Foundation} runs @uref{https://www.fsf.org/ryf, @dfn{Respects Your Freedom}} (RYF), a certification program for hardware products that respect your freedom and your privacy and ensure that you have control over your device. We encourage you to check the list of RYF-certified devices." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2144 +#: guix-git/doc/guix.texi:2161 msgid "Another useful resource is the @uref{https://www.h-node.org/, H-Node} web site. It contains a catalog of hardware devices with information about their support in GNU/Linux." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2153 +#: guix-git/doc/guix.texi:2170 msgid "An ISO-9660 installation image that can be written to a USB stick or burnt to a DVD can be downloaded from @indicateurl{@value{BASE-URL}/guix-system-install-@value{VERSION}.x86_64-linux.iso}, where you can replace @code{x86_64-linux} with one of:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2157 +#: guix-git/doc/guix.texi:2174 msgid "for a GNU/Linux system on Intel/AMD-compatible 64-bit CPUs;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2160 +#: guix-git/doc/guix.texi:2177 msgid "for a 32-bit GNU/Linux system on Intel-compatible CPUs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2165 +#: guix-git/doc/guix.texi:2182 msgid "Make sure to download the associated @file{.sig} file and to verify the authenticity of the image against it, along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2169 +#: guix-git/doc/guix.texi:2186 #, no-wrap msgid "" "$ wget @value{BASE-URL}/guix-system-install-@value{VERSION}.x86_64-linux.iso.sig\n" @@ -7609,7 +7691,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2177 +#: guix-git/doc/guix.texi:2194 #, no-wrap msgid "" "$ wget @value{OPENPGP-SIGNING-KEY-URL} \\\n" @@ -7617,23 +7699,23 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2189 +#: guix-git/doc/guix.texi:2206 msgid "This image contains the tools necessary for an installation. It is meant to be copied @emph{as is} to a large-enough USB stick or DVD." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2190 +#: guix-git/doc/guix.texi:2207 #, no-wrap msgid "Copying to a USB Stick" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2195 +#: guix-git/doc/guix.texi:2212 msgid "Insert a USB stick of 1@tie{}GiB or more into your machine, and determine its device name. Assuming that the USB stick is known as @file{/dev/sdX}, copy the image with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2199 +#: guix-git/doc/guix.texi:2216 #, no-wrap msgid "" "dd if=guix-system-install-@value{VERSION}.x86_64-linux.iso of=/dev/sdX status=progress\n" @@ -7641,238 +7723,238 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2202 +#: guix-git/doc/guix.texi:2219 msgid "Access to @file{/dev/sdX} usually requires root privileges." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2203 +#: guix-git/doc/guix.texi:2220 #, no-wrap msgid "Burning on a DVD" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2208 +#: guix-git/doc/guix.texi:2225 msgid "Insert a blank DVD into your machine, and determine its device name. Assuming that the DVD drive is known as @file{/dev/srX}, copy the image with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2211 +#: guix-git/doc/guix.texi:2228 #, no-wrap msgid "growisofs -dvd-compat -Z /dev/srX=guix-system-install-@value{VERSION}.x86_64-linux.iso\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2214 +#: guix-git/doc/guix.texi:2231 msgid "Access to @file{/dev/srX} usually requires root privileges." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2215 +#: guix-git/doc/guix.texi:2232 #, no-wrap msgid "Booting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2222 +#: guix-git/doc/guix.texi:2239 msgid "Once this is done, you should be able to reboot the system and boot from the USB stick or DVD@. The latter usually requires you to get in the BIOS or UEFI boot menu, where you can choose to boot from the USB stick. In order to boot from Libreboot, switch to the command mode by pressing the @kbd{c} key and type @command{search_grub usb}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2225 +#: guix-git/doc/guix.texi:2242 msgid "@xref{Installing Guix in a VM}, if, instead, you would like to install Guix System in a virtual machine (VM)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2235 +#: guix-git/doc/guix.texi:2252 msgid "Once you have booted, you can use the guided graphical installer, which makes it easy to get started (@pxref{Guided Graphical Installation}). Alternatively, if you are already familiar with GNU/Linux and if you want more control than what the graphical installer provides, you can choose the ``manual'' installation process (@pxref{Manual Installation})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2243 +#: guix-git/doc/guix.texi:2260 msgid "The graphical installer is available on TTY1. You can obtain root shells on TTYs 3 to 6 by hitting @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4}, etc. TTY2 shows this documentation and you can reach it with @kbd{ctrl-alt-f2}. Documentation is browsable using the Info reader commands (@pxref{Top,,, info-stnd, Stand-alone GNU Info}). The installation system runs the GPM mouse daemon, which allows you to select text with the left mouse button and to paste it with the middle button." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2248 +#: guix-git/doc/guix.texi:2265 msgid "Installation requires access to the Internet so that any missing dependencies of your system configuration can be downloaded. See the ``Networking'' section below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2255 +#: guix-git/doc/guix.texi:2272 msgid "The graphical installer is a text-based user interface. It will guide you, with dialog boxes, through the steps needed to install GNU@tie{}Guix System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2260 +#: guix-git/doc/guix.texi:2277 msgid "The first dialog boxes allow you to set up the system as you use it during the installation: you can choose the language, keyboard layout, and set up networking, which will be used during the installation. The image below shows the networking dialog." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2262 +#: guix-git/doc/guix.texi:2279 msgid "@image{images/installer-network,5in,, networking setup with the graphical installer}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2267 +#: guix-git/doc/guix.texi:2284 msgid "Later steps allow you to partition your hard disk, as shown in the image below, to choose whether or not to use encrypted file systems, to enter the host name and root password, and to create an additional account, among other things." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2269 +#: guix-git/doc/guix.texi:2286 msgid "@image{images/installer-partitions,5in,, partitioning with the graphical installer}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2272 +#: guix-git/doc/guix.texi:2289 msgid "Note that, at any time, the installer allows you to exit the current installation step and resume at a previous step, as show in the image below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2274 +#: guix-git/doc/guix.texi:2291 msgid "@image{images/installer-resume,5in,, resuming the installation process}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2279 +#: guix-git/doc/guix.texi:2296 msgid "Once you're done, the installer produces an operating system configuration and displays it (@pxref{Using the Configuration System}). At that point you can hit ``OK'' and installation will proceed. On success, you can reboot into the new system and enjoy. @xref{After System Installation}, for what's next!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2289 +#: guix-git/doc/guix.texi:2306 msgid "This section describes how you would ``manually'' install GNU@tie{}Guix System on your machine. This option requires familiarity with GNU/Linux, with the shell, and with common administration tools. If you think this is not for you, consider using the guided graphical installer (@pxref{Guided Graphical Installation})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2295 +#: guix-git/doc/guix.texi:2312 msgid "The installation system provides root shells on TTYs 3 to 6; press @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4}, and so on to reach them. It includes many common tools needed to install the system. But it is also a full-blown Guix System, which means that you can install additional packages, should you need it, using @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:2302 +#: guix-git/doc/guix.texi:2319 #, no-wrap msgid "Keyboard Layout, Networking, and Partitioning" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2307 +#: guix-git/doc/guix.texi:2324 msgid "Before you can install the system, you may want to adjust the keyboard layout, set up networking, and partition your target hard disk. This section will guide you through this." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2310 guix-git/doc/guix.texi:15584 +#: guix-git/doc/guix.texi:2327 guix-git/doc/guix.texi:15941 #, no-wrap msgid "keyboard layout" msgstr "disposição do teclado" #. type: Plain text -#: guix-git/doc/guix.texi:2314 +#: guix-git/doc/guix.texi:2331 msgid "The installation image uses the US qwerty keyboard layout. If you want to change it, you can use the @command{loadkeys} command. For example, the following command selects the Dvorak keyboard layout:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2317 +#: guix-git/doc/guix.texi:2334 #, no-wrap msgid "loadkeys dvorak\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2322 +#: guix-git/doc/guix.texi:2339 msgid "See the files under @file{/run/current-system/profile/share/keymaps} for a list of available keyboard layouts. Run @command{man loadkeys} for more information." msgstr "" #. type: subsubsection -#: guix-git/doc/guix.texi:2323 +#: guix-git/doc/guix.texi:2340 #, no-wrap msgid "Networking" msgstr "Rede" #. type: Plain text -#: guix-git/doc/guix.texi:2326 +#: guix-git/doc/guix.texi:2343 msgid "Run the following command to see what your network interfaces are called:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2329 +#: guix-git/doc/guix.texi:2346 #, no-wrap msgid "ifconfig -a\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2333 guix-git/doc/guix.texi:2355 +#: guix-git/doc/guix.texi:2350 guix-git/doc/guix.texi:2372 msgid "@dots{} or, using the GNU/Linux-specific @command{ip} command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2336 +#: guix-git/doc/guix.texi:2353 #, no-wrap msgid "ip address\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2343 +#: guix-git/doc/guix.texi:2360 msgid "Wired interfaces have a name starting with @samp{e}; for example, the interface corresponding to the first on-board Ethernet controller is called @samp{eno1}. Wireless interfaces have a name starting with @samp{w}, like @samp{w1p2s0}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:2345 +#: guix-git/doc/guix.texi:2362 #, no-wrap msgid "Wired connection" msgstr "Conexão cabeada" #. type: table -#: guix-git/doc/guix.texi:2348 +#: guix-git/doc/guix.texi:2365 msgid "To configure a wired network run the following command, substituting @var{interface} with the name of the wired interface you want to use." msgstr "" #. type: example -#: guix-git/doc/guix.texi:2351 +#: guix-git/doc/guix.texi:2368 #, no-wrap msgid "ifconfig @var{interface} up\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2358 +#: guix-git/doc/guix.texi:2375 #, no-wrap msgid "ip link set @var{interface} up\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:2360 +#: guix-git/doc/guix.texi:2377 #, no-wrap msgid "Wireless connection" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2361 guix-git/doc/guix.texi:17484 +#: guix-git/doc/guix.texi:2378 guix-git/doc/guix.texi:17846 #, no-wrap msgid "wireless" msgstr "sem fio" #. type: cindex -#: guix-git/doc/guix.texi:2362 guix-git/doc/guix.texi:17485 +#: guix-git/doc/guix.texi:2379 guix-git/doc/guix.texi:17847 #, no-wrap msgid "WiFi" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2367 +#: guix-git/doc/guix.texi:2384 msgid "To configure wireless networking, you can create a configuration file for the @command{wpa_supplicant} configuration tool (its location is not important) using one of the available text editors such as @command{nano}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2370 +#: guix-git/doc/guix.texi:2387 #, no-wrap msgid "nano wpa_supplicant.conf\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2375 +#: guix-git/doc/guix.texi:2392 msgid "As an example, the following stanza can go to this file and will work for many wireless networks, provided you give the actual SSID and passphrase for the network you are connecting to:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2382 +#: guix-git/doc/guix.texi:2399 #, no-wrap msgid "" "network=@{\n" @@ -7883,229 +7965,229 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2387 +#: guix-git/doc/guix.texi:2404 msgid "Start the wireless service and run it in the background with the following command (substitute @var{interface} with the name of the network interface you want to use):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2390 +#: guix-git/doc/guix.texi:2407 #, no-wrap msgid "wpa_supplicant -c wpa_supplicant.conf -i @var{interface} -B\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2393 +#: guix-git/doc/guix.texi:2410 msgid "Run @command{man wpa_supplicant} for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2395 +#: guix-git/doc/guix.texi:2412 #, no-wrap msgid "DHCP" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2398 +#: guix-git/doc/guix.texi:2415 msgid "At this point, you need to acquire an IP address. On a network where IP addresses are automatically assigned @i{via} DHCP, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2401 +#: guix-git/doc/guix.texi:2418 #, no-wrap msgid "dhclient -v @var{interface}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2404 +#: guix-git/doc/guix.texi:2421 msgid "Try to ping a server to see if networking is up and running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2407 +#: guix-git/doc/guix.texi:2424 #, no-wrap msgid "ping -c 3 gnu.org\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2411 +#: guix-git/doc/guix.texi:2428 msgid "Setting up network access is almost always a requirement because the image does not contain all the software and tools that may be needed." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2412 +#: guix-git/doc/guix.texi:2429 #, no-wrap msgid "proxy, during system installation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2415 +#: guix-git/doc/guix.texi:2432 msgid "If you need HTTP and HTTPS access to go through a proxy, run the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2418 +#: guix-git/doc/guix.texi:2435 #, no-wrap msgid "herd set-http-proxy guix-daemon @var{URL}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2423 +#: guix-git/doc/guix.texi:2440 msgid "where @var{URL} is the proxy URL, for example @code{http://example.org:8118}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2424 +#: guix-git/doc/guix.texi:2441 #, no-wrap msgid "installing over SSH" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2427 +#: guix-git/doc/guix.texi:2444 msgid "If you want to, you can continue the installation remotely by starting an SSH server:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2430 +#: guix-git/doc/guix.texi:2447 #, no-wrap msgid "herd start ssh-daemon\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2434 +#: guix-git/doc/guix.texi:2451 msgid "Make sure to either set a password with @command{passwd}, or configure OpenSSH public key authentication before logging in." msgstr "" #. type: subsubsection -#: guix-git/doc/guix.texi:2435 +#: guix-git/doc/guix.texi:2452 #, no-wrap msgid "Disk Partitioning" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2439 +#: guix-git/doc/guix.texi:2456 msgid "Unless this has already been done, the next step is to partition, and then format the target partition(s)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2444 +#: guix-git/doc/guix.texi:2461 msgid "The installation image includes several partitioning tools, including Parted (@pxref{Overview,,, parted, GNU Parted User Manual}), @command{fdisk}, and @command{cfdisk}. Run it and set up your disk with the partition layout you want:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2447 +#: guix-git/doc/guix.texi:2464 #, no-wrap msgid "cfdisk\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2453 +#: guix-git/doc/guix.texi:2470 msgid "If your disk uses the GUID Partition Table (GPT) format and you plan to install BIOS-based GRUB (which is the default), make sure a BIOS Boot Partition is available (@pxref{BIOS installation,,, grub, GNU GRUB manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2454 +#: guix-git/doc/guix.texi:2471 #, no-wrap msgid "EFI, installation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2455 +#: guix-git/doc/guix.texi:2472 #, no-wrap msgid "UEFI, installation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2456 +#: guix-git/doc/guix.texi:2473 #, no-wrap msgid "ESP, EFI system partition" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2460 +#: guix-git/doc/guix.texi:2477 msgid "If you instead wish to use EFI-based GRUB, a FAT32 @dfn{EFI System Partition} (ESP) is required. This partition can be mounted at @file{/boot/efi} for instance and must have the @code{esp} flag set. E.g., for @command{parted}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2463 +#: guix-git/doc/guix.texi:2480 #, no-wrap msgid "parted /dev/sda set 1 esp on\n" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:2466 guix-git/doc/guix.texi:34580 +#: guix-git/doc/guix.texi:2483 guix-git/doc/guix.texi:35019 #, no-wrap msgid "grub-bootloader" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:2467 guix-git/doc/guix.texi:34574 +#: guix-git/doc/guix.texi:2484 guix-git/doc/guix.texi:35013 #, no-wrap msgid "grub-efi-bootloader" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2474 +#: guix-git/doc/guix.texi:2491 msgid "Unsure whether to use EFI- or BIOS-based GRUB? If the directory @file{/sys/firmware/efi} exists in the installation image, then you should probably perform an EFI installation, using @code{grub-efi-bootloader}. Otherwise you should use the BIOS-based GRUB, known as @code{grub-bootloader}. @xref{Bootloader Configuration}, for more info on bootloaders." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2482 +#: guix-git/doc/guix.texi:2499 msgid "Once you are done partitioning the target hard disk drive, you have to create a file system on the relevant partition(s)@footnote{Currently Guix System only supports ext4, btrfs, JFS, F2FS, and XFS file systems. In particular, code that reads file system UUIDs and labels only works for these file system types.}. For the ESP, if you have one and assuming it is @file{/dev/sda1}, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2485 +#: guix-git/doc/guix.texi:2502 #, no-wrap msgid "mkfs.fat -F32 /dev/sda1\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2492 +#: guix-git/doc/guix.texi:2509 msgid "For the root file system, ext4 is the most widely used format. Other file systems, such as Btrfs, support compression, which is reported to nicely complement file deduplication that the daemon performs independently of the file system (@pxref{Invoking guix-daemon, deduplication})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2499 +#: guix-git/doc/guix.texi:2516 msgid "Preferably, assign file systems a label so that you can easily and reliably refer to them in @code{file-system} declarations (@pxref{File Systems}). This is typically done using the @code{-L} option of @command{mkfs.ext4} and related commands. So, assuming the target root partition lives at @file{/dev/sda2}, a file system with the label @code{my-root} can be created with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2502 +#: guix-git/doc/guix.texi:2519 #, no-wrap msgid "mkfs.ext4 -L my-root /dev/sda2\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2504 guix-git/doc/guix.texi:14475 +#: guix-git/doc/guix.texi:2521 guix-git/doc/guix.texi:14832 #, no-wrap msgid "encrypted disk" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2509 +#: guix-git/doc/guix.texi:2526 msgid "If you are instead planning to encrypt the root partition, you can use the Cryptsetup/LUKS utilities to do that (see @inlinefmtifelse{html, @uref{https://linux.die.net/man/8/cryptsetup, @code{man cryptsetup}}, @code{man cryptsetup}} for more information)." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2510 guix-git/doc/guix.texi:5280 -#: guix-git/doc/guix.texi:6489 guix-git/doc/guix.texi:14601 -#: guix-git/doc/guix.texi:21013 guix-git/doc/guix.texi:21020 +#: guix-git/doc/guix.texi:2527 guix-git/doc/guix.texi:5298 +#: guix-git/doc/guix.texi:6532 guix-git/doc/guix.texi:14958 +#: guix-git/doc/guix.texi:21375 guix-git/doc/guix.texi:21382 #, no-wrap msgid "Warning" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2517 +#: guix-git/doc/guix.texi:2534 msgid "Note that GRUB can unlock LUKS2 devices since version 2.06, but only supports the PBKDF2 key derivation function, which is not the default for @command{cryptsetup luksFormat}. You can check which key derivation function is being used by a device by running @command{cryptsetup luksDump @var{device}}, and looking for the PBKDF field of your keyslots." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2522 +#: guix-git/doc/guix.texi:2539 msgid "Assuming you want to store the root partition on @file{/dev/sda2}, the command sequence to format it as a LUKS2 partition would be along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2527 +#: guix-git/doc/guix.texi:2544 #, no-wrap msgid "" "cryptsetup luksFormat --type luks2 --pbkdf pbkdf2 /dev/sda2\n" @@ -8114,28 +8196,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2532 +#: guix-git/doc/guix.texi:2549 msgid "Once that is done, mount the target file system under @file{/mnt} with a command like (again, assuming @code{my-root} is the label of the root file system):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2535 +#: guix-git/doc/guix.texi:2552 #, no-wrap msgid "mount LABEL=my-root /mnt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2541 +#: guix-git/doc/guix.texi:2558 msgid "Also mount any other file systems you would like to use on the target system relative to this path. If you have opted for @file{/boot/efi} as an EFI mount point for example, mount it at @file{/mnt/boot/efi} now so it is found by @code{guix system init} afterwards." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2545 +#: guix-git/doc/guix.texi:2562 msgid "Finally, if you plan to use one or more swap partitions (@pxref{Swap Space}), make sure to initialize them with @command{mkswap}. Assuming you have one swap partition on @file{/dev/sda3}, you would run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2549 +#: guix-git/doc/guix.texi:2566 #, no-wrap msgid "" "mkswap /dev/sda3\n" @@ -8143,12 +8225,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2557 +#: guix-git/doc/guix.texi:2574 msgid "Alternatively, you may use a swap file. For example, assuming that in the new system you want to use the file @file{/swapfile} as a swap file, you would run@footnote{This example will work for many types of file systems (e.g., ext4). However, for copy-on-write file systems (e.g., btrfs), the required steps may be different. For details, see the manual pages for @command{mkswap} and @command{swapon}.}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2565 +#: guix-git/doc/guix.texi:2582 #, no-wrap msgid "" "# This is 10 GiB of swap space. Adjust \"count\" to change the size.\n" @@ -8160,38 +8242,38 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2570 +#: guix-git/doc/guix.texi:2587 msgid "Note that if you have encrypted the root partition and created a swap file in its file system as described above, then the encryption also protects the swap file, just like any other file in that file system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2576 +#: guix-git/doc/guix.texi:2593 msgid "With the target partitions ready and the target root mounted on @file{/mnt}, we're ready to go. First, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2579 +#: guix-git/doc/guix.texi:2596 #, no-wrap msgid "herd start cow-store /mnt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2586 +#: guix-git/doc/guix.texi:2603 msgid "This makes @file{/gnu/store} copy-on-write, such that packages added to it during the installation phase are written to the target disk on @file{/mnt} rather than kept in memory. This is necessary because the first phase of the @command{guix system init} command (see below) entails downloads or builds to @file{/gnu/store} which, initially, is an in-memory file system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2597 +#: guix-git/doc/guix.texi:2614 msgid "Next, you have to edit a file and provide the declaration of the operating system to be installed. To that end, the installation system comes with three text editors. We recommend GNU nano (@pxref{Top,,, nano, GNU nano Manual}), which supports syntax highlighting and parentheses matching; other editors include mg (an Emacs clone), and nvi (a clone of the original BSD @command{vi} editor). We strongly recommend storing that file on the target root file system, say, as @file{/mnt/etc/config.scm}. Failing to do that, you will have lost your configuration file once you have rebooted into the newly-installed system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2604 +#: guix-git/doc/guix.texi:2621 msgid "@xref{Using the Configuration System}, for an overview of the configuration file. The example configurations discussed in that section are available under @file{/etc/configuration} in the installation image. Thus, to get started with a system configuration providing a graphical display server (a ``desktop'' system), you can run something along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2609 +#: guix-git/doc/guix.texi:2626 #, no-wrap msgid "" "# mkdir /mnt/etc\n" @@ -8200,53 +8282,53 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2613 +#: guix-git/doc/guix.texi:2630 msgid "You should pay attention to what your configuration file contains, and in particular:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2625 +#: guix-git/doc/guix.texi:2642 msgid "Make sure the @code{bootloader-configuration} form refers to the targets you want to install GRUB on. It should mention @code{grub-bootloader} if you are installing GRUB in the legacy way, or @code{grub-efi-bootloader} for newer UEFI systems. For legacy systems, the @code{targets} field contain the names of the devices, like @code{(list \"/dev/sda\")}; for UEFI systems it names the paths to mounted EFI partitions, like @code{(list \"/boot/efi\")}; do make sure the paths are currently mounted and a @code{file-system} entry is specified in your configuration." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2631 +#: guix-git/doc/guix.texi:2648 msgid "Be sure that your file system labels match the value of their respective @code{device} fields in your @code{file-system} configuration, assuming your @code{file-system} configuration uses the @code{file-system-label} procedure in its @code{device} field." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2635 +#: guix-git/doc/guix.texi:2652 msgid "If there are encrypted or RAID partitions, make sure to add a @code{mapped-devices} field to describe them (@pxref{Mapped Devices})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2640 +#: guix-git/doc/guix.texi:2657 msgid "Once you are done preparing the configuration file, the new system must be initialized (remember that the target root file system is mounted under @file{/mnt}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2643 +#: guix-git/doc/guix.texi:2660 #, no-wrap msgid "guix system init /mnt/etc/config.scm /mnt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2650 +#: guix-git/doc/guix.texi:2667 msgid "This copies all the necessary files and installs GRUB on @file{/dev/sdX}, unless you pass the @option{--no-bootloader} option. For more information, @pxref{Invoking guix system}. This command may trigger downloads or builds of missing packages, which can take some time." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2658 +#: guix-git/doc/guix.texi:2675 msgid "Once that command has completed---and hopefully succeeded!---you can run @command{reboot} and boot into the new system. The @code{root} password in the new system is initially empty; other users' passwords need to be initialized by running the @command{passwd} command as @code{root}, unless your configuration specifies otherwise (@pxref{user-account-password, user account passwords}). @xref{After System Installation}, for what's next!" msgstr "Após a conclusão desse comando -- e esperamos que com sucesso! -- você pode executar o comando @command{reboot} e inicializar no novo sistema. A senha @code{root} no novo sistema está inicialmente vazia; as senhas de outros usuários precisam ser inicializadas executando o comando @command{passwd} como @code{root}, a menos que sua configuração especifique o contrário (@pxref{user-account-password, senhas de contas de usuário}). @xref{Após a instalação do sistema}, para o que vem a seguir!" #. type: Plain text -#: guix-git/doc/guix.texi:2665 +#: guix-git/doc/guix.texi:2682 msgid "Success, you've now booted into Guix System! From then on, you can update the system whenever you want by running, say:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2669 +#: guix-git/doc/guix.texi:2686 #, no-wrap msgid "" "guix pull\n" @@ -8254,93 +8336,93 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2675 +#: guix-git/doc/guix.texi:2692 msgid "This builds a new system generation with the latest packages and services (@pxref{Invoking guix system}). We recommend doing that regularly so that your system includes the latest security updates (@pxref{Security Updates})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2678 +#: guix-git/doc/guix.texi:2695 #, no-wrap msgid "sudo vs. @command{guix pull}" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2682 +#: guix-git/doc/guix.texi:2699 msgid "Note that @command{sudo guix} runs your user's @command{guix} command and @emph{not} root's, because @command{sudo} leaves @env{PATH} unchanged. To explicitly run root's @command{guix}, type @command{sudo -i guix @dots{}}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2687 +#: guix-git/doc/guix.texi:2704 msgid "The difference matters here, because @command{guix pull} updates the @command{guix} command and package definitions only for the user it is run as. This means that if you choose to use @command{guix system reconfigure} in root's login shell, you'll need to @command{guix pull} separately." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2692 +#: guix-git/doc/guix.texi:2709 msgid "Now, @pxref{Getting Started}, and join us on @code{#guix} on the Libera Chat IRC network or on @email{guix-devel@@gnu.org} to share your experience!" msgstr "" #. type: section -#: guix-git/doc/guix.texi:2695 +#: guix-git/doc/guix.texi:2712 #, no-wrap msgid "Installing Guix in a Virtual Machine" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2697 +#: guix-git/doc/guix.texi:2714 #, no-wrap msgid "virtual machine, Guix System installation" msgstr "máquina virtual, instalação do Guix System" #. type: cindex -#: guix-git/doc/guix.texi:2698 +#: guix-git/doc/guix.texi:2715 #, no-wrap msgid "virtual private server (VPS)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2699 +#: guix-git/doc/guix.texi:2716 #, no-wrap msgid "VPS (virtual private server)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2703 +#: guix-git/doc/guix.texi:2720 msgid "If you'd like to install Guix System in a virtual machine (VM) or on a virtual private server (VPS) rather than on your beloved machine, this section is for you." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2706 +#: guix-git/doc/guix.texi:2723 msgid "To boot a @uref{https://qemu.org/,QEMU} VM for installing Guix System in a disk image, follow these steps:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2711 +#: guix-git/doc/guix.texi:2728 msgid "First, retrieve and decompress the Guix system installation image as described previously (@pxref{USB Stick and DVD Installation})." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2715 +#: guix-git/doc/guix.texi:2732 msgid "Create a disk image that will hold the installed system. To make a qcow2-formatted disk image, use the @command{qemu-img} command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2718 +#: guix-git/doc/guix.texi:2735 #, no-wrap msgid "qemu-img create -f qcow2 guix-system.img 50G\n" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2722 +#: guix-git/doc/guix.texi:2739 msgid "The resulting file will be much smaller than 50 GB (typically less than 1 MB), but it will grow as the virtualized storage device is filled up." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2725 +#: guix-git/doc/guix.texi:2742 msgid "Boot the USB installation image in an VM:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2731 +#: guix-git/doc/guix.texi:2748 #, no-wrap msgid "" "qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \\\n" @@ -8350,115 +8432,115 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2735 +#: guix-git/doc/guix.texi:2752 msgid "@code{-enable-kvm} is optional, but significantly improves performance, @pxref{Running Guix in a VM}." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2739 +#: guix-git/doc/guix.texi:2756 msgid "You're now root in the VM, proceed with the installation process. @xref{Preparing for Installation}, and follow the instructions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2744 +#: guix-git/doc/guix.texi:2761 msgid "Once installation is complete, you can boot the system that's on your @file{guix-system.img} image. @xref{Running Guix in a VM}, for how to do that." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2748 +#: guix-git/doc/guix.texi:2765 #, no-wrap msgid "installation image" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2751 +#: guix-git/doc/guix.texi:2768 msgid "The installation image described above was built using the @command{guix system} command, specifically:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2754 +#: guix-git/doc/guix.texi:2771 #, no-wrap msgid "guix system image -t iso9660 gnu/system/install.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2759 +#: guix-git/doc/guix.texi:2776 msgid "Have a look at @file{gnu/system/install.scm} in the source tree, and see also @ref{Invoking guix system} for more information about the installation image." msgstr "" #. type: section -#: guix-git/doc/guix.texi:2760 +#: guix-git/doc/guix.texi:2777 #, no-wrap msgid "Building the Installation Image for ARM Boards" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2764 +#: guix-git/doc/guix.texi:2781 msgid "Many ARM boards require a specific variant of the @uref{https://www.denx.de/wiki/U-Boot/, U-Boot} bootloader." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2768 +#: guix-git/doc/guix.texi:2785 msgid "If you build a disk image and the bootloader is not available otherwise (on another boot drive etc), it's advisable to build an image that includes the bootloader, specifically:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2771 +#: guix-git/doc/guix.texi:2788 #, no-wrap msgid "guix system image --system=armhf-linux -e '((@@ (gnu system install) os-with-u-boot) (@@ (gnu system install) installation-os) \"A20-OLinuXino-Lime2\")'\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2775 +#: guix-git/doc/guix.texi:2792 msgid "@code{A20-OLinuXino-Lime2} is the name of the board. If you specify an invalid board, a list of possible boards will be printed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2785 +#: guix-git/doc/guix.texi:2802 msgid "Presumably, you've reached this section because either you have installed Guix on top of another distribution (@pxref{Installation}), or you've installed the standalone Guix System (@pxref{System Installation}). It's time for you to get started using Guix and this section aims to help you do that and give you a feel of what it's like." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2789 +#: guix-git/doc/guix.texi:2806 msgid "Guix is about installing software, so probably the first thing you'll want to do is to actually look for software. Let's say you're looking for a text editor, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2792 +#: guix-git/doc/guix.texi:2809 #, no-wrap msgid "guix search text editor\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2799 +#: guix-git/doc/guix.texi:2816 msgid "This command shows you a number of matching @dfn{packages}, each time showing the package's name, version, a description, and additional info. Once you've found out the one you want to use, let's say Emacs (ah ha!), you can go ahead and install it (run this command as a regular user, @emph{no need for root privileges}!):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2802 +#: guix-git/doc/guix.texi:2819 #, no-wrap msgid "guix install emacs\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2804 guix-git/doc/guix.texi:3116 -#: guix-git/doc/guix.texi:3168 +#: guix-git/doc/guix.texi:2821 guix-git/doc/guix.texi:3133 +#: guix-git/doc/guix.texi:3185 #, no-wrap msgid "profile" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2812 +#: guix-git/doc/guix.texi:2829 msgid "You've installed your first package, congrats! The package is now visible in your default @dfn{profile}, @file{$HOME/.guix-profile}---a profile is a directory containing installed packages. In the process, you've probably noticed that Guix downloaded pre-built binaries; or, if you explicitly chose to @emph{not} use pre-built binaries, then probably Guix is still building software (@pxref{Substitutes}, for more info)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2815 +#: guix-git/doc/guix.texi:2832 msgid "Unless you're using Guix System, the @command{guix install} command must have printed this hint:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2818 +#: guix-git/doc/guix.texi:2835 #, no-wrap msgid "" "hint: Consider setting the necessary environment variables by running:\n" @@ -8466,7 +8548,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2821 +#: guix-git/doc/guix.texi:2838 #, no-wrap msgid "" " GUIX_PROFILE=\"$HOME/.guix-profile\"\n" @@ -8475,77 +8557,77 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2823 +#: guix-git/doc/guix.texi:2840 #, no-wrap msgid "Alternately, see `guix package --search-paths -p \"$HOME/.guix-profile\"'.\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2837 +#: guix-git/doc/guix.texi:2854 msgid "Indeed, you must now tell your shell where @command{emacs} and other programs installed with Guix are to be found. Pasting the two lines above will do just that: it will add @code{$HOME/.guix-profile/bin}---which is where the installed package is---to the @code{PATH} environment variable. You can paste these two lines in your shell so they take effect right away, but more importantly you should add them to @file{~/.bash_profile} (or equivalent file if you do not use Bash) so that environment variables are set next time you spawn a shell. You only need to do this once and other search paths environment variables will be taken care of similarly---e.g., if you eventually install @code{python} and Python libraries, @env{GUIX_PYTHONPATH} will be defined." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2840 +#: guix-git/doc/guix.texi:2857 msgid "You can go on installing packages at your will. To list installed packages, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2843 +#: guix-git/doc/guix.texi:2860 #, no-wrap msgid "guix package --list-installed\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2848 +#: guix-git/doc/guix.texi:2865 msgid "To remove a package, you would unsurprisingly run @command{guix remove}. A distinguishing feature is the ability to @dfn{roll back} any operation you made---installation, removal, upgrade---by simply typing:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2851 +#: guix-git/doc/guix.texi:2868 #, no-wrap msgid "guix package --roll-back\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2856 +#: guix-git/doc/guix.texi:2873 msgid "This is because each operation is in fact a @dfn{transaction} that creates a new @dfn{generation}. These generations and the difference between them can be displayed by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2859 +#: guix-git/doc/guix.texi:2876 #, no-wrap msgid "guix package --list-generations\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2862 +#: guix-git/doc/guix.texi:2879 msgid "Now you know the basics of package management!" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2863 guix-git/doc/guix.texi:2922 +#: guix-git/doc/guix.texi:2880 guix-git/doc/guix.texi:2939 #, no-wrap msgid "Going further" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2871 +#: guix-git/doc/guix.texi:2888 msgid "@xref{Package Management}, for more about package management. You may like @dfn{declarative} package management with @command{guix package --manifest}, managing separate @dfn{profiles} with @option{--profile}, deleting old generations, collecting garbage, and other nifty features that will come in handy as you become more familiar with Guix. If you are a developer, @pxref{Development} for additional tools. And if you're curious, @pxref{Features}, to peek under the hood." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2876 +#: guix-git/doc/guix.texi:2893 msgid "Once you've installed a set of packages, you will want to periodically @emph{upgrade} them to the latest and greatest version. To do that, you will first pull the latest revision of Guix and its package collection:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2886 +#: guix-git/doc/guix.texi:2903 msgid "The end result is a new @command{guix} command, under @file{~/.config/guix/current/bin}. Unless you're on Guix System, the first time you run @command{guix pull}, be sure to follow the hint that the command prints and, similar to what we saw above, paste these two lines in your terminal and @file{.bash_profile}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2890 +#: guix-git/doc/guix.texi:2907 #, no-wrap msgid "" "GUIX_PROFILE=\"$HOME/.config/guix/current\"\n" @@ -8553,336 +8635,336 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2894 +#: guix-git/doc/guix.texi:2911 msgid "You must also instruct your shell to point to this new @command{guix}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2897 +#: guix-git/doc/guix.texi:2914 #, no-wrap msgid "hash guix\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2901 +#: guix-git/doc/guix.texi:2918 msgid "At this point, you're running a brand new Guix. You can thus go ahead and actually upgrade all the packages you previously installed:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2904 +#: guix-git/doc/guix.texi:2921 #, no-wrap msgid "guix upgrade\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2910 +#: guix-git/doc/guix.texi:2927 msgid "As you run this command, you will see that binaries are downloaded (or perhaps some packages are built), and eventually you end up with the upgraded packages. Should one of these upgraded packages not be to your liking, remember you can always roll back!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2913 +#: guix-git/doc/guix.texi:2930 msgid "You can display the exact revision of Guix you're currently using by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2916 +#: guix-git/doc/guix.texi:2933 #, no-wrap msgid "guix describe\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2921 +#: guix-git/doc/guix.texi:2938 msgid "The information it displays is @emph{all it takes to reproduce the exact same Guix}, be it at a different point in time or on a different machine." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2927 +#: guix-git/doc/guix.texi:2944 msgid "@xref{Invoking guix pull}, for more information. @xref{Channels}, on how to specify additional @dfn{channels} to pull packages from, how to replicate Guix, and more. You may also find @command{time-machine} handy (@pxref{Invoking guix time-machine})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2932 +#: guix-git/doc/guix.texi:2949 msgid "If you installed Guix System, one of the first things you'll want to do is to upgrade your system. Once you've run @command{guix pull} to get the latest Guix, you can upgrade the system like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2935 +#: guix-git/doc/guix.texi:2952 #, no-wrap msgid "sudo guix system reconfigure /etc/config.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2944 +#: guix-git/doc/guix.texi:2961 msgid "Upon completion, the system runs the latest versions of its software packages. When you eventually reboot, you'll notice a sub-menu in the bootloader that reads ``Old system generations'': it's what allows you to boot @emph{an older generation of your system}, should the latest generation be ``broken'' or otherwise unsatisfying. Just like for packages, you can always @emph{roll back} to a previous generation @emph{of the whole system}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2947 +#: guix-git/doc/guix.texi:2964 #, no-wrap msgid "sudo guix system roll-back\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2954 +#: guix-git/doc/guix.texi:2971 msgid "There are many things you'll probably want to tweak on your system: adding new user accounts, adding new system services, fiddling with the configuration of those services, etc. The system configuration is @emph{entirely} described in the @file{/etc/config.scm} file. @xref{Using the Configuration System}, to learn how to change it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2956 +#: guix-git/doc/guix.texi:2973 msgid "Now you know enough to get started!" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2957 +#: guix-git/doc/guix.texi:2974 #, no-wrap msgid "Resources" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2960 +#: guix-git/doc/guix.texi:2977 msgid "The rest of this manual provides a reference for all things Guix. Here are some additional resources you may find useful:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2965 +#: guix-git/doc/guix.texi:2982 msgid "@xref{Top,,, guix-cookbook, The GNU Guix Cookbook}, for a list of ``how-to'' style of recipes for a variety of applications." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2970 +#: guix-git/doc/guix.texi:2987 msgid "The @uref{https://guix.gnu.org/guix-refcard.pdf, GNU Guix Reference Card} lists in two pages most of the commands and options you'll ever need." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2975 +#: guix-git/doc/guix.texi:2992 msgid "The web site contains @uref{https://guix.gnu.org/en/videos/, instructional videos} covering topics such as everyday use of Guix, how to get help, and how to become a contributor." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2979 +#: guix-git/doc/guix.texi:2996 msgid "@xref{Documentation}, to learn how to access documentation on your computer." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2982 +#: guix-git/doc/guix.texi:2999 msgid "We hope you will enjoy Guix as much as the community enjoys building it!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2993 +#: guix-git/doc/guix.texi:3010 msgid "The purpose of GNU Guix is to allow users to easily install, upgrade, and remove software packages, without having to know about their build procedures or dependencies. Guix also goes beyond this obvious set of features." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3001 +#: guix-git/doc/guix.texi:3018 msgid "This chapter describes the main features of Guix, as well as the package management tools it provides. Along with the command-line interface described below (@pxref{Invoking guix package, @code{guix package}}), you may also use the Emacs-Guix interface (@pxref{Top,,, emacs-guix, The Emacs-Guix Reference Manual}), after installing @code{emacs-guix} package (run @kbd{M-x guix-help} command to start with it):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3004 +#: guix-git/doc/guix.texi:3021 #, no-wrap msgid "guix install emacs-guix\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3025 +#: guix-git/doc/guix.texi:3042 msgid "Here we assume you've already made your first steps with Guix (@pxref{Getting Started}) and would like to get an overview about what's going on under the hood." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3029 +#: guix-git/doc/guix.texi:3046 msgid "When using Guix, each package ends up in the @dfn{package store}, in its own directory---something that resembles @file{/gnu/store/xxx-package-1.2}, where @code{xxx} is a base32 string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3051 msgid "Instead of referring to these directories, users have their own @dfn{profile}, which points to the packages that they actually want to use. These profiles are stored within each user's home directory, at @code{$HOME/.guix-profile}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3042 +#: guix-git/doc/guix.texi:3059 msgid "For example, @code{alice} installs GCC 4.7.2. As a result, @file{/home/alice/.guix-profile/bin/gcc} points to @file{/gnu/store/@dots{}-gcc-4.7.2/bin/gcc}. Now, on the same machine, @code{bob} had already installed GCC 4.8.0. The profile of @code{bob} simply continues to point to @file{/gnu/store/@dots{}-gcc-4.8.0/bin/gcc}---i.e., both versions of GCC coexist on the same system without any interference." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3046 +#: guix-git/doc/guix.texi:3063 msgid "The @command{guix package} command is the central tool to manage packages (@pxref{Invoking guix package}). It operates on the per-user profiles, and can be used @emph{with normal user privileges}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3047 guix-git/doc/guix.texi:3130 +#: guix-git/doc/guix.texi:3064 guix-git/doc/guix.texi:3147 #, no-wrap msgid "transactions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3054 +#: guix-git/doc/guix.texi:3071 msgid "The command provides the obvious install, remove, and upgrade operations. Each invocation is actually a @emph{transaction}: either the specified operation succeeds, or nothing happens. Thus, if the @command{guix package} process is terminated during the transaction, or if a power outage occurs during the transaction, then the user's profile remains in its previous state, and remains usable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3062 +#: guix-git/doc/guix.texi:3079 msgid "In addition, any package transaction may be @emph{rolled back}. So, if, for example, an upgrade installs a new version of a package that turns out to have a serious bug, users may roll back to the previous instance of their profile, which was known to work well. Similarly, the global system configuration on Guix is subject to transactional upgrades and roll-back (@pxref{Using the Configuration System})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3069 +#: guix-git/doc/guix.texi:3086 msgid "All packages in the package store may be @emph{garbage-collected}. Guix can determine which packages are still referenced by user profiles, and remove those that are provably no longer referenced (@pxref{Invoking guix gc}). Users may also explicitly remove old generations of their profile so that the packages they refer to can be collected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3082 +#: guix-git/doc/guix.texi:3099 msgid "Guix takes a @dfn{purely functional} approach to package management, as described in the introduction (@pxref{Introduction}). Each @file{/gnu/store} package directory name contains a hash of all the inputs that were used to build that package---compiler, libraries, build scripts, etc. This direct correspondence allows users to make sure a given package installation matches the current state of their distribution. It also helps maximize @dfn{build reproducibility}: thanks to the isolated build environments that are used, a given build is likely to yield bit-identical files when performed on different machines (@pxref{Invoking guix-daemon, container})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3093 +#: guix-git/doc/guix.texi:3110 msgid "This foundation allows Guix to support @dfn{transparent binary/source deployment}. When a pre-built binary for a @file{/gnu/store} item is available from an external source---a @dfn{substitute}, Guix just downloads it and unpacks it; otherwise, it builds the package from source, locally (@pxref{Substitutes}). Because build results are usually bit-for-bit reproducible, users do not have to trust servers that provide substitutes: they can force a local build and @emph{challenge} providers (@pxref{Invoking guix challenge})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3099 +#: guix-git/doc/guix.texi:3116 msgid "Control over the build environment is a feature that is also useful for developers. The @command{guix shell} command allows developers of a package to quickly set up the right development environment for their package, without having to manually install the dependencies of the package into their profile (@pxref{Invoking guix shell})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3100 +#: guix-git/doc/guix.texi:3117 #, no-wrap msgid "replication, of software environments" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3101 +#: guix-git/doc/guix.texi:3118 #, no-wrap msgid "provenance tracking, of software artifacts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3108 +#: guix-git/doc/guix.texi:3125 msgid "All of Guix and its package definitions is version-controlled, and @command{guix pull} allows you to ``travel in time'' on the history of Guix itself (@pxref{Invoking guix pull}). This makes it possible to replicate a Guix instance on a different machine or at a later point in time, which in turn allows you to @emph{replicate complete software environments}, while retaining precise @dfn{provenance tracking} of the software." msgstr "" #. type: section -#: guix-git/doc/guix.texi:3110 +#: guix-git/doc/guix.texi:3127 #, no-wrap msgid "Invoking @command{guix package}" msgstr "Invocando @command{guix package}" #. type: cindex -#: guix-git/doc/guix.texi:3112 +#: guix-git/doc/guix.texi:3129 #, no-wrap msgid "installing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3113 +#: guix-git/doc/guix.texi:3130 #, no-wrap msgid "removing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3114 +#: guix-git/doc/guix.texi:3131 #, no-wrap msgid "package installation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3115 +#: guix-git/doc/guix.texi:3132 #, no-wrap msgid "package removal" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3125 +#: guix-git/doc/guix.texi:3142 msgid "The @command{guix package} command is the tool that allows users to install, upgrade, and remove packages, as well as rolling back to previous configurations. These operations work on a user @dfn{profile}---a directory of installed packages. Each user has a default profile in @file{$HOME/.guix-profile}. The command operates only on the user's own profile, and works with normal user privileges (@pxref{Features}). Its syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3128 +#: guix-git/doc/guix.texi:3145 #, no-wrap msgid "guix package @var{options}\n" msgstr "guix package @var{opções}\n" #. type: Plain text -#: guix-git/doc/guix.texi:3135 +#: guix-git/doc/guix.texi:3152 msgid "Primarily, @var{options} specifies the operations to be performed during the transaction. Upon completion, a new profile is created, but previous @dfn{generations} of the profile remain available, should the user want to roll back." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3138 +#: guix-git/doc/guix.texi:3155 msgid "For example, to remove @code{lua} and install @code{guile} and @code{guile-cairo} in a single transaction:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3141 +#: guix-git/doc/guix.texi:3158 #, no-wrap msgid "guix package -r lua -i guile guile-cairo\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3143 +#: guix-git/doc/guix.texi:3160 #, no-wrap msgid "aliases, for @command{guix package}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3145 +#: guix-git/doc/guix.texi:3162 msgid "For your convenience, we also provide the following aliases:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3149 +#: guix-git/doc/guix.texi:3166 msgid "@command{guix search} is an alias for @command{guix package -s}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3151 +#: guix-git/doc/guix.texi:3168 msgid "@command{guix install} is an alias for @command{guix package -i}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3153 +#: guix-git/doc/guix.texi:3170 msgid "@command{guix remove} is an alias for @command{guix package -r}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3155 +#: guix-git/doc/guix.texi:3172 msgid "@command{guix upgrade} is an alias for @command{guix package -u}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3157 +#: guix-git/doc/guix.texi:3174 msgid "and @command{guix show} is an alias for @command{guix package --show=}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3162 +#: guix-git/doc/guix.texi:3179 msgid "These aliases are less expressive than @command{guix package} and provide fewer options, so in some cases you'll probably want to use @command{guix package} directly." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3167 +#: guix-git/doc/guix.texi:3184 msgid "@command{guix package} also supports a @dfn{declarative approach} whereby the user specifies the exact set of packages to be available and passes it @i{via} the @option{--manifest} option (@pxref{profile-manifest, @option{--manifest}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3174 +#: guix-git/doc/guix.texi:3191 msgid "For each user, a symlink to the user's default profile is automatically created in @file{$HOME/.guix-profile}. This symlink always points to the current generation of the user's default profile. Thus, users can add @file{$HOME/.guix-profile/bin} to their @env{PATH} environment variable, and so on." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3174 guix-git/doc/guix.texi:3418 +#: guix-git/doc/guix.texi:3191 guix-git/doc/guix.texi:3435 #, no-wrap msgid "search paths" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3179 +#: guix-git/doc/guix.texi:3196 msgid "If you are not using Guix System, consider adding the following lines to your @file{~/.bash_profile} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}) so that newly-spawned shells get all the right environment variable definitions:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3183 +#: guix-git/doc/guix.texi:3200 #, no-wrap msgid "" "GUIX_PROFILE=\"$HOME/.guix-profile\" ; \\\n" @@ -8890,298 +8972,298 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3194 +#: guix-git/doc/guix.texi:3211 msgid "In a multi-user setup, user profiles are stored in a place registered as a @dfn{garbage-collector root}, which @file{$HOME/.guix-profile} points to (@pxref{Invoking guix gc}). That directory is normally @code{@var{localstatedir}/guix/profiles/per-user/@var{user}}, where @var{localstatedir} is the value passed to @code{configure} as @option{--localstatedir}, and @var{user} is the user name. The @file{per-user} directory is created when @command{guix-daemon} is started, and the @var{user} sub-directory is created by @command{guix package}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3196 +#: guix-git/doc/guix.texi:3213 msgid "The @var{options} can be among the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3199 +#: guix-git/doc/guix.texi:3216 #, no-wrap msgid "--install=@var{package} @dots{}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3200 +#: guix-git/doc/guix.texi:3217 #, no-wrap msgid "-i @var{package} @dots{}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3202 +#: guix-git/doc/guix.texi:3219 msgid "Install the specified @var{package}s." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3207 +#: guix-git/doc/guix.texi:3224 msgid "Each @var{package} may specify either a simple package name, such as @code{guile}, or a package name followed by an at-sign and version number, such as @code{guile@@1.8.8} or simply @code{guile@@1.8} (in the latter case, the newest version prefixed by @code{1.8} is selected)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3215 +#: guix-git/doc/guix.texi:3232 msgid "If no version number is specified, the newest available version will be selected. In addition, @var{package} may contain a colon, followed by the name of one of the outputs of the package, as in @code{gcc:doc} or @code{binutils@@2.22:lib} (@pxref{Packages with Multiple Outputs}). Packages with a corresponding name (and optionally version) are searched for among the GNU distribution modules (@pxref{Package Modules})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3216 +#: guix-git/doc/guix.texi:3233 #, no-wrap msgid "propagated inputs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3222 +#: guix-git/doc/guix.texi:3239 msgid "Sometimes packages have @dfn{propagated inputs}: these are dependencies that automatically get installed along with the required package (@pxref{package-propagated-inputs, @code{propagated-inputs} in @code{package} objects}, for information about propagated inputs in package definitions)." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3229 +#: guix-git/doc/guix.texi:3246 msgid "package-cmd-propagated-inputs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3229 +#: guix-git/doc/guix.texi:3246 msgid "An example is the GNU MPC library: its C header files refer to those of the GNU MPFR library, which in turn refer to those of the GMP library. Thus, when installing MPC, the MPFR and GMP libraries also get installed in the profile; removing MPC also removes MPFR and GMP---unless they had also been explicitly installed by the user." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3234 +#: guix-git/doc/guix.texi:3251 msgid "Besides, packages sometimes rely on the definition of environment variables for their search paths (see explanation of @option{--search-paths} below). Any missing or possibly incorrect environment variable definitions are reported here." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3235 +#: guix-git/doc/guix.texi:3252 #, no-wrap msgid "--install-from-expression=@var{exp}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3236 +#: guix-git/doc/guix.texi:3253 #, no-wrap msgid "-e @var{exp}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3238 +#: guix-git/doc/guix.texi:3255 msgid "Install the package @var{exp} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3243 +#: guix-git/doc/guix.texi:3260 msgid "@var{exp} must be a Scheme expression that evaluates to a @code{} object. This option is notably useful to disambiguate between same-named variants of a package, with expressions such as @code{(@@ (gnu packages base) guile-final)}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3247 +#: guix-git/doc/guix.texi:3264 msgid "Note that this option installs the first output of the specified package, which may be insufficient when needing a specific output of a multiple-output package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3248 +#: guix-git/doc/guix.texi:3265 #, no-wrap msgid "--install-from-file=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3249 guix-git/doc/guix.texi:5781 -#: guix-git/doc/guix.texi:11396 +#: guix-git/doc/guix.texi:3266 guix-git/doc/guix.texi:5799 +#: guix-git/doc/guix.texi:11710 #, no-wrap msgid "-f @var{file}" msgstr "-f @var{arquivo}" #. type: table -#: guix-git/doc/guix.texi:3251 +#: guix-git/doc/guix.texi:3268 msgid "Install the package that the code within @var{file} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3254 guix-git/doc/guix.texi:5787 -#: guix-git/doc/guix.texi:6162 +#: guix-git/doc/guix.texi:3271 guix-git/doc/guix.texi:5805 +#: guix-git/doc/guix.texi:6199 msgid "As an example, @var{file} might contain a definition like this (@pxref{Defining Packages}):" msgstr "" #. type: include -#: guix-git/doc/guix.texi:3256 guix-git/doc/guix.texi:11404 +#: guix-git/doc/guix.texi:3273 guix-git/doc/guix.texi:11718 #, no-wrap msgid "package-hello.scm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3263 +#: guix-git/doc/guix.texi:3280 msgid "Developers may find it useful to include such a @file{guix.scm} file in the root of their project source tree that can be used to test development snapshots and create reproducible development environments (@pxref{Invoking guix shell})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3268 +#: guix-git/doc/guix.texi:3285 msgid "The @var{file} may also contain a JSON representation of one or more package definitions. Running @code{guix package -f} on @file{hello.json} with the following contents would result in installing the package @code{greeter} after building @code{myhello}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3271 guix-git/doc/guix.texi:11414 +#: guix-git/doc/guix.texi:3288 guix-git/doc/guix.texi:11728 #, no-wrap msgid "@verbatiminclude package-hello.json\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3273 +#: guix-git/doc/guix.texi:3290 #, no-wrap msgid "--remove=@var{package} @dots{}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3274 +#: guix-git/doc/guix.texi:3291 #, no-wrap msgid "-r @var{package} @dots{}" msgstr "-r @var{pacote} @dots{}" #. type: table -#: guix-git/doc/guix.texi:3276 +#: guix-git/doc/guix.texi:3293 msgid "Remove the specified @var{package}s." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3281 +#: guix-git/doc/guix.texi:3298 msgid "As for @option{--install}, each @var{package} may specify a version number and/or output name in addition to the package name. For instance, @samp{-r glibc:debug} would remove the @code{debug} output of @code{glibc}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3282 +#: guix-git/doc/guix.texi:3299 #, no-wrap msgid "--upgrade[=@var{regexp} @dots{}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3283 +#: guix-git/doc/guix.texi:3300 #, no-wrap msgid "-u [@var{regexp} @dots{}]" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3284 +#: guix-git/doc/guix.texi:3301 #, no-wrap msgid "upgrading packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3288 +#: guix-git/doc/guix.texi:3305 msgid "Upgrade all the installed packages. If one or more @var{regexp}s are specified, upgrade only installed packages whose name matches a @var{regexp}. Also see the @option{--do-not-upgrade} option below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3293 +#: guix-git/doc/guix.texi:3310 msgid "Note that this upgrades package to the latest version of packages found in the distribution currently installed. To update your distribution, you should regularly run @command{guix pull} (@pxref{Invoking guix pull})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3294 +#: guix-git/doc/guix.texi:3311 #, no-wrap msgid "package transformations, upgrades" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3299 +#: guix-git/doc/guix.texi:3316 msgid "When upgrading, package transformations that were originally applied when creating the profile are automatically re-applied (@pxref{Package Transformation Options}). For example, assume you first installed Emacs from the tip of its development branch with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3302 +#: guix-git/doc/guix.texi:3319 #, no-wrap msgid "guix install emacs-next --with-branch=emacs-next=master\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3307 +#: guix-git/doc/guix.texi:3324 msgid "Next time you run @command{guix upgrade}, Guix will again pull the tip of the Emacs development branch and build @code{emacs-next} from that checkout." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3312 +#: guix-git/doc/guix.texi:3329 msgid "Note that transformation options such as @option{--with-branch} and @option{--with-source} depend on external state; it is up to you to ensure that they work as expected. You can also discard a transformations that apply to a package by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3315 +#: guix-git/doc/guix.texi:3332 #, no-wrap msgid "guix install @var{package}\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3317 +#: guix-git/doc/guix.texi:3334 #, no-wrap msgid "--do-not-upgrade[=@var{regexp} @dots{}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3322 +#: guix-git/doc/guix.texi:3339 msgid "When used together with the @option{--upgrade} option, do @emph{not} upgrade any packages whose name matches a @var{regexp}. For example, to upgrade all packages in the current profile except those containing the substring ``emacs'':" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3325 +#: guix-git/doc/guix.texi:3342 #, no-wrap msgid "$ guix package --upgrade . --do-not-upgrade emacs\n" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3327 +#: guix-git/doc/guix.texi:3344 #, no-wrap msgid "profile-manifest" msgstr "profile-manifest" #. type: item -#: guix-git/doc/guix.texi:3327 guix-git/doc/guix.texi:5799 -#: guix-git/doc/guix.texi:6167 guix-git/doc/guix.texi:6615 -#: guix-git/doc/guix.texi:12535 guix-git/doc/guix.texi:14135 +#: guix-git/doc/guix.texi:3344 guix-git/doc/guix.texi:5817 +#: guix-git/doc/guix.texi:6204 guix-git/doc/guix.texi:6658 +#: guix-git/doc/guix.texi:12850 guix-git/doc/guix.texi:14492 #, no-wrap msgid "--manifest=@var{file}" msgstr "--manifest=@var{arquivo}" #. type: itemx -#: guix-git/doc/guix.texi:3328 guix-git/doc/guix.texi:5800 -#: guix-git/doc/guix.texi:6168 guix-git/doc/guix.texi:6616 -#: guix-git/doc/guix.texi:12536 +#: guix-git/doc/guix.texi:3345 guix-git/doc/guix.texi:5818 +#: guix-git/doc/guix.texi:6205 guix-git/doc/guix.texi:6659 +#: guix-git/doc/guix.texi:12851 #, no-wrap msgid "-m @var{file}" msgstr "-m @var{arquivo}" #. type: cindex -#: guix-git/doc/guix.texi:3329 +#: guix-git/doc/guix.texi:3346 #, no-wrap msgid "profile declaration" msgstr "declaração de perfil" #. type: cindex -#: guix-git/doc/guix.texi:3330 +#: guix-git/doc/guix.texi:3347 #, no-wrap msgid "profile manifest" msgstr "manifsto de perfil" #. type: table -#: guix-git/doc/guix.texi:3334 +#: guix-git/doc/guix.texi:3351 msgid "Create a new generation of the profile from the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3340 +#: guix-git/doc/guix.texi:3357 msgid "This allows you to @emph{declare} the profile's contents rather than constructing it through a sequence of @option{--install} and similar commands. The advantage is that @var{file} can be put under version control, copied to different machines to reproduce the same profile, and so on." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3344 +#: guix-git/doc/guix.texi:3361 msgid "@var{file} must return a @dfn{manifest} object, which is roughly a list of packages:" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:3345 +#: guix-git/doc/guix.texi:3362 #, no-wrap msgid "packages->manifest" msgstr "packages->manifest" #. type: lisp -#: guix-git/doc/guix.texi:3348 +#: guix-git/doc/guix.texi:3365 #, no-wrap msgid "" "(use-package-modules guile emacs)\n" @@ -9191,7 +9273,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:3354 +#: guix-git/doc/guix.texi:3371 #, no-wrap msgid "" "(packages->manifest\n" @@ -9207,18 +9289,18 @@ msgstr "" " (list guile-2.0 \"debug\")))\n" #. type: findex -#: guix-git/doc/guix.texi:3356 +#: guix-git/doc/guix.texi:3373 #, no-wrap msgid "specifications->manifest" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3363 +#: guix-git/doc/guix.texi:3380 msgid "In this example we have to know which modules define the @code{emacs} and @code{guile-2.0} variables to provide the right @code{use-package-modules} line, which can be cumbersome. We can instead provide regular package specifications and let @code{specifications->manifest} look up the corresponding package objects, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3367 +#: guix-git/doc/guix.texi:3384 #, no-wrap msgid "" "(specifications->manifest\n" @@ -9228,151 +9310,151 @@ msgstr "" " '(\"emacs\" \"guile@@2.2\" \"guile@@2.2:debug\"))\n" #. type: findex -#: guix-git/doc/guix.texi:3369 +#: guix-git/doc/guix.texi:3386 #, fuzzy, no-wrap #| msgid "packages->manifest" msgid "package->development-manifest" msgstr "packages->manifest" #. type: table -#: guix-git/doc/guix.texi:3372 +#: guix-git/doc/guix.texi:3389 msgid "You might also want to create a manifest for all the dependencies of a package, rather than the package itself:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3375 +#: guix-git/doc/guix.texi:3392 #, no-wrap msgid "(package->development-manifest (specification->package \"emacs\"))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3379 +#: guix-git/doc/guix.texi:3396 msgid "The example above gives you all the software required to develop Emacs, similar to what @command{guix environment emacs} provides." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3382 +#: guix-git/doc/guix.texi:3399 msgid "@xref{export-manifest, @option{--export-manifest}}, to learn how to obtain a manifest file from an existing profile." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3383 guix-git/doc/guix.texi:4492 +#: guix-git/doc/guix.texi:3400 guix-git/doc/guix.texi:4510 #, no-wrap msgid "--roll-back" msgstr "--roll-back" #. type: cindex -#: guix-git/doc/guix.texi:3384 guix-git/doc/guix.texi:4493 -#: guix-git/doc/guix.texi:35006 guix-git/doc/guix.texi:37641 +#: guix-git/doc/guix.texi:3401 guix-git/doc/guix.texi:4511 +#: guix-git/doc/guix.texi:35445 guix-git/doc/guix.texi:38120 #, no-wrap msgid "rolling back" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3385 guix-git/doc/guix.texi:4494 +#: guix-git/doc/guix.texi:3402 guix-git/doc/guix.texi:4512 #, no-wrap msgid "undoing transactions" msgstr "desfazendo transações" #. type: cindex -#: guix-git/doc/guix.texi:3386 guix-git/doc/guix.texi:4495 +#: guix-git/doc/guix.texi:3403 guix-git/doc/guix.texi:4513 #, no-wrap msgid "transactions, undoing" msgstr "transações, desfazendo" #. type: table -#: guix-git/doc/guix.texi:3389 +#: guix-git/doc/guix.texi:3406 msgid "Roll back to the previous @dfn{generation} of the profile---i.e., undo the last transaction." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3392 +#: guix-git/doc/guix.texi:3409 msgid "When combined with options such as @option{--install}, roll back occurs before any other actions." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3396 +#: guix-git/doc/guix.texi:3413 msgid "When rolling back from the first generation that actually contains installed packages, the profile is made to point to the @dfn{zeroth generation}, which contains no files apart from its own metadata." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3400 +#: guix-git/doc/guix.texi:3417 msgid "After having rolled back, installing, removing, or upgrading packages overwrites previous future generations. Thus, the history of the generations in a profile is always linear." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3401 guix-git/doc/guix.texi:4499 +#: guix-git/doc/guix.texi:3418 guix-git/doc/guix.texi:4517 #, no-wrap msgid "--switch-generation=@var{pattern}" msgstr "--switch-generation=@var{padrão}" #. type: itemx -#: guix-git/doc/guix.texi:3402 guix-git/doc/guix.texi:4500 +#: guix-git/doc/guix.texi:3419 guix-git/doc/guix.texi:4518 #, no-wrap msgid "-S @var{pattern}" msgstr "-S @var{padrão}" #. type: cindex -#: guix-git/doc/guix.texi:3403 guix-git/doc/guix.texi:3635 -#: guix-git/doc/guix.texi:4501 guix-git/doc/guix.texi:34964 +#: guix-git/doc/guix.texi:3420 guix-git/doc/guix.texi:3653 +#: guix-git/doc/guix.texi:4519 guix-git/doc/guix.texi:35403 #, no-wrap msgid "generations" msgstr "gerações" #. type: table -#: guix-git/doc/guix.texi:3405 guix-git/doc/guix.texi:4503 +#: guix-git/doc/guix.texi:3422 guix-git/doc/guix.texi:4521 msgid "Switch to a particular generation defined by @var{pattern}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3411 guix-git/doc/guix.texi:4509 +#: guix-git/doc/guix.texi:3428 guix-git/doc/guix.texi:4527 msgid "@var{pattern} may be either a generation number or a number prefixed with ``+'' or ``-''. The latter means: move forward/backward by a specified number of generations. For example, if you want to return to the latest generation after @option{--roll-back}, use @option{--switch-generation=+1}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3416 +#: guix-git/doc/guix.texi:3433 msgid "The difference between @option{--roll-back} and @option{--switch-generation=-1} is that @option{--switch-generation} will not make a zeroth generation, so if a specified generation does not exist, the current generation will not be changed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3417 +#: guix-git/doc/guix.texi:3434 #, no-wrap msgid "--search-paths[=@var{kind}]" msgstr "--search-paths[=@var{tipo}]" #. type: table -#: guix-git/doc/guix.texi:3423 +#: guix-git/doc/guix.texi:3440 msgid "Report environment variable definitions, in Bash syntax, that may be needed in order to use the set of installed packages. These environment variables are used to specify @dfn{search paths} for files used by some of the installed packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3431 -msgid "For example, GCC needs the @env{CPATH} and @env{LIBRARY_PATH} environment variables to be defined so it can look for headers and libraries in the user's profile (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C library are installed in the profile, then @option{--search-paths} will suggest setting these variables to @file{@var{profile}/include} and @file{@var{profile}/lib}, respectively." +#: guix-git/doc/guix.texi:3449 +msgid "For example, GCC needs the @env{CPATH} and @env{LIBRARY_PATH} environment variables to be defined so it can look for headers and libraries in the user's profile (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C library are installed in the profile, then @option{--search-paths} will suggest setting these variables to @file{@var{profile}/include} and @file{@var{profile}/lib}, respectively (@pxref{Search Paths}, for info on search path specifications associated with packages.)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3434 +#: guix-git/doc/guix.texi:3452 msgid "The typical use case is to define these environment variables in the shell:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3437 +#: guix-git/doc/guix.texi:3455 #, no-wrap msgid "$ eval `guix package --search-paths`\n" msgstr "$ eval `guix package --search-paths`\n" #. type: table -#: guix-git/doc/guix.texi:3443 +#: guix-git/doc/guix.texi:3461 msgid "@var{kind} may be one of @code{exact}, @code{prefix}, or @code{suffix}, meaning that the returned environment variable definitions will either be exact settings, or prefixes or suffixes of the current value of these variables. When omitted, @var{kind} defaults to @code{exact}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3446 +#: guix-git/doc/guix.texi:3464 msgid "This option can also be used to compute the @emph{combined} search paths of several profiles. Consider this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3451 +#: guix-git/doc/guix.texi:3469 #, no-wrap msgid "" "$ guix package -p foo -i guile\n" @@ -9384,42 +9466,44 @@ msgstr "" "$ guix package -p foo -p bar --search-paths\n" #. type: table -#: guix-git/doc/guix.texi:3456 +#: guix-git/doc/guix.texi:3474 msgid "The last command above reports about the @env{GUILE_LOAD_PATH} variable, even though, taken individually, neither @file{foo} nor @file{bar} would lead to that recommendation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3458 +#: guix-git/doc/guix.texi:3476 #, fuzzy, no-wrap msgid "profile, choosing" msgstr "declaração de perfil" #. type: item -#: guix-git/doc/guix.texi:3459 guix-git/doc/guix.texi:4529 -#: guix-git/doc/guix.texi:4858 +#: guix-git/doc/guix.texi:3477 guix-git/doc/guix.texi:4547 +#: guix-git/doc/guix.texi:4876 guix-git/doc/guix.texi:5827 +#: guix-git/doc/guix.texi:6240 #, no-wrap msgid "--profile=@var{profile}" msgstr "--profile=@var{perfil}" #. type: itemx -#: guix-git/doc/guix.texi:3460 guix-git/doc/guix.texi:4530 -#: guix-git/doc/guix.texi:4859 +#: guix-git/doc/guix.texi:3478 guix-git/doc/guix.texi:4548 +#: guix-git/doc/guix.texi:4877 guix-git/doc/guix.texi:5828 +#: guix-git/doc/guix.texi:6241 #, no-wrap msgid "-p @var{profile}" msgstr "-p @var{perfil}" #. type: table -#: guix-git/doc/guix.texi:3462 +#: guix-git/doc/guix.texi:3480 msgid "Use @var{profile} instead of the user's default profile." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3467 +#: guix-git/doc/guix.texi:3485 msgid "@var{profile} must be the name of a file that will be created upon completion. Concretely, @var{profile} will be a mere symbolic link (``symlink'') pointing to the actual profile where packages are installed:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3473 +#: guix-git/doc/guix.texi:3491 #, no-wrap msgid "" "$ guix install hello -p ~/code/my-profile\n" @@ -9429,29 +9513,29 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3477 +#: guix-git/doc/guix.texi:3495 msgid "All it takes to get rid of the profile is to remove this symlink and its siblings that point to specific generations:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3480 +#: guix-git/doc/guix.texi:3498 #, no-wrap msgid "$ rm ~/code/my-profile ~/code/my-profile-*-link\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3482 +#: guix-git/doc/guix.texi:3500 #, no-wrap msgid "--list-profiles" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3484 +#: guix-git/doc/guix.texi:3502 msgid "List all the user's profiles:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3491 +#: guix-git/doc/guix.texi:3509 #, no-wrap msgid "" "$ guix package --list-profiles\n" @@ -9462,96 +9546,96 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3494 +#: guix-git/doc/guix.texi:3512 msgid "When running as root, list all the profiles of all the users." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3495 +#: guix-git/doc/guix.texi:3513 #, no-wrap msgid "collisions, in a profile" msgstr "colisões, em um perfil" #. type: cindex -#: guix-git/doc/guix.texi:3496 +#: guix-git/doc/guix.texi:3514 #, no-wrap msgid "colliding packages in profiles" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3497 +#: guix-git/doc/guix.texi:3515 #, no-wrap msgid "profile collisions" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3498 +#: guix-git/doc/guix.texi:3516 #, no-wrap msgid "--allow-collisions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3500 +#: guix-git/doc/guix.texi:3518 msgid "Allow colliding packages in the new profile. Use at your own risk!" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3504 +#: guix-git/doc/guix.texi:3522 msgid "By default, @command{guix package} reports as an error @dfn{collisions} in the profile. Collisions happen when two or more different versions or variants of a given package end up in the profile." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3505 guix-git/doc/guix.texi:4572 -#: guix-git/doc/guix.texi:6701 +#: guix-git/doc/guix.texi:3523 guix-git/doc/guix.texi:4590 +#: guix-git/doc/guix.texi:6744 #, no-wrap msgid "--bootstrap" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3508 +#: guix-git/doc/guix.texi:3526 msgid "Use the bootstrap Guile to build the profile. This option is only useful to distribution developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3514 +#: guix-git/doc/guix.texi:3532 msgid "In addition to these actions, @command{guix package} supports the following options to query the current state of a profile, or the availability of packages:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3517 +#: guix-git/doc/guix.texi:3535 #, no-wrap msgid "--search=@var{regexp}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3518 +#: guix-git/doc/guix.texi:3536 #, no-wrap msgid "-s @var{regexp}" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3520 +#: guix-git/doc/guix.texi:3538 msgid "guix-search" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3520 +#: guix-git/doc/guix.texi:3538 #, no-wrap msgid "searching for packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3526 +#: guix-git/doc/guix.texi:3544 msgid "List the available packages whose name, synopsis, or description matches @var{regexp} (in a case-insensitive fashion), sorted by relevance. Print all the metadata of matching packages in @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3529 +#: guix-git/doc/guix.texi:3547 msgid "This allows specific fields to be extracted using the @command{recsel} command, for instance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3535 +#: guix-git/doc/guix.texi:3553 #, no-wrap msgid "" "$ guix package -s malloc | recsel -p name,version,relevance\n" @@ -9562,7 +9646,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3539 +#: guix-git/doc/guix.texi:3557 #, no-wrap msgid "" "name: glibc\n" @@ -9572,7 +9656,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3543 +#: guix-git/doc/guix.texi:3561 #, no-wrap msgid "" "name: libgc\n" @@ -9581,12 +9665,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3547 +#: guix-git/doc/guix.texi:3565 msgid "Similarly, to show the name of all the packages available under the terms of the GNU@tie{}LGPL version 3:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3551 +#: guix-git/doc/guix.texi:3569 #, no-wrap msgid "" "$ guix package -s \"\" | recsel -p name -e 'license ~ \"LGPL 3\"'\n" @@ -9595,7 +9679,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3554 +#: guix-git/doc/guix.texi:3572 #, no-wrap msgid "" "name: gmp\n" @@ -9603,12 +9687,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3560 +#: guix-git/doc/guix.texi:3578 msgid "It is also possible to refine search results using several @code{-s} flags to @command{guix package}, or several arguments to @command{guix search}. For example, the following command returns a list of board games (this time using the @command{guix search} alias):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3565 +#: guix-git/doc/guix.texi:3583 #, no-wrap msgid "" "$ guix search '\\' game | recsel -p name\n" @@ -9617,17 +9701,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3571 +#: guix-git/doc/guix.texi:3589 msgid "If we were to omit @code{-s game}, we would also get software packages that deal with printed circuit boards; removing the angle brackets around @code{board} would further add packages that have to do with keyboards." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3575 +#: guix-git/doc/guix.texi:3593 msgid "And now for a more elaborate example. The following command searches for cryptographic libraries, filters out Haskell, Perl, Python, and Ruby libraries, and prints the name and synopsis of the matching packages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3579 +#: guix-git/doc/guix.texi:3597 #, no-wrap msgid "" "$ guix search crypto library | \\\n" @@ -9635,23 +9719,23 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3584 +#: guix-git/doc/guix.texi:3602 msgid "@xref{Selection Expressions,,, recutils, GNU recutils manual}, for more information on @dfn{selection expressions} for @code{recsel -e}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3585 +#: guix-git/doc/guix.texi:3603 #, no-wrap msgid "--show=@var{package}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3589 +#: guix-git/doc/guix.texi:3607 msgid "Show details about @var{package}, taken from the list of available packages, in @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:3594 +#: guix-git/doc/guix.texi:3612 #, no-wrap msgid "" "$ guix package --show=guile | recsel -p name,version\n" @@ -9661,7 +9745,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3597 +#: guix-git/doc/guix.texi:3615 #, fuzzy, no-wrap #| msgid "" #| "name: python\n" @@ -9671,11 +9755,12 @@ msgid "" "version: 3.0.2\n" "\n" msgstr "" -"name: python\n" -"version: 3.3.5\n" +"name: guile\n" +"version: 3.0.2\n" +"\n" #. type: example -#: guix-git/doc/guix.texi:3601 +#: guix-git/doc/guix.texi:3619 #, fuzzy, no-wrap #| msgid "" #| "name: python\n" @@ -9685,16 +9770,17 @@ msgid "" "version: 2.2.7\n" "@dots{}\n" msgstr "" -"name: python\n" -"version: 3.3.5\n" +"name: guile\n" +"version: 2.2.7\n" +"@dots{}\n" #. type: table -#: guix-git/doc/guix.texi:3605 +#: guix-git/doc/guix.texi:3623 msgid "You may also specify the full name of a package to only get details about a specific version of it (this time using the @command{guix show} alias):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3609 +#: guix-git/doc/guix.texi:3627 #, no-wrap msgid "" "$ guix show guile@@3.0.5 | recsel -p name,version\n" @@ -9703,297 +9789,297 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3611 +#: guix-git/doc/guix.texi:3629 #, no-wrap msgid "--list-installed[=@var{regexp}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3612 +#: guix-git/doc/guix.texi:3630 #, no-wrap msgid "-I [@var{regexp}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3616 +#: guix-git/doc/guix.texi:3634 msgid "List the currently installed packages in the specified profile, with the most recently installed packages shown last. When @var{regexp} is specified, list only installed packages whose name matches @var{regexp}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3622 +#: guix-git/doc/guix.texi:3640 msgid "For each installed package, print the following items, separated by tabs: the package name, its version string, the part of the package that is installed (for instance, @code{out} for the default output, @code{include} for its headers, etc.), and the path of this package in the store." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3623 +#: guix-git/doc/guix.texi:3641 #, no-wrap msgid "--list-available[=@var{regexp}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3624 +#: guix-git/doc/guix.texi:3642 #, no-wrap msgid "-A [@var{regexp}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3628 +#: guix-git/doc/guix.texi:3646 msgid "List packages currently available in the distribution for this system (@pxref{GNU Distribution}). When @var{regexp} is specified, list only available packages whose name matches @var{regexp}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3632 +#: guix-git/doc/guix.texi:3650 msgid "For each package, print the following items separated by tabs: its name, its version string, the parts of the package (@pxref{Packages with Multiple Outputs}), and the source location of its definition." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3633 guix-git/doc/guix.texi:4485 +#: guix-git/doc/guix.texi:3651 guix-git/doc/guix.texi:4503 #, no-wrap msgid "--list-generations[=@var{pattern}]" msgstr "--list-generations[=@var{padrão}]" #. type: itemx -#: guix-git/doc/guix.texi:3634 guix-git/doc/guix.texi:4486 +#: guix-git/doc/guix.texi:3652 guix-git/doc/guix.texi:4504 #, no-wrap msgid "-l [@var{pattern}]" msgstr "-l [@var{padrão}]" #. type: table -#: guix-git/doc/guix.texi:3640 +#: guix-git/doc/guix.texi:3658 msgid "Return a list of generations along with their creation dates; for each generation, show the installed packages, with the most recently installed packages shown last. Note that the zeroth generation is never shown." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3645 +#: guix-git/doc/guix.texi:3663 msgid "For each installed package, print the following items, separated by tabs: the name of a package, its version string, the part of the package that is installed (@pxref{Packages with Multiple Outputs}), and the location of this package in the store." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3648 +#: guix-git/doc/guix.texi:3666 msgid "When @var{pattern} is used, the command returns only matching generations. Valid patterns include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3650 +#: guix-git/doc/guix.texi:3668 #, no-wrap msgid "@emph{Integers and comma-separated integers}. Both patterns denote" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3653 +#: guix-git/doc/guix.texi:3671 msgid "generation numbers. For instance, @option{--list-generations=1} returns the first one." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3656 +#: guix-git/doc/guix.texi:3674 msgid "And @option{--list-generations=1,8,2} outputs three generations in the specified order. Neither spaces nor trailing commas are allowed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3657 +#: guix-git/doc/guix.texi:3675 #, no-wrap msgid "@emph{Ranges}. @option{--list-generations=2..9} prints the" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3660 +#: guix-git/doc/guix.texi:3678 msgid "specified generations and everything in between. Note that the start of a range must be smaller than its end." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3664 +#: guix-git/doc/guix.texi:3682 msgid "It is also possible to omit the endpoint. For example, @option{--list-generations=2..}, returns all generations starting from the second one." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3665 +#: guix-git/doc/guix.texi:3683 #, no-wrap msgid "@emph{Durations}. You can also get the last @emph{N}@tie{}days, weeks," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3669 +#: guix-git/doc/guix.texi:3687 msgid "or months by passing an integer along with the first letter of the duration. For example, @option{--list-generations=20d} lists generations that are up to 20 days old." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3671 guix-git/doc/guix.texi:4510 +#: guix-git/doc/guix.texi:3689 guix-git/doc/guix.texi:4528 #, no-wrap msgid "--delete-generations[=@var{pattern}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3672 guix-git/doc/guix.texi:4511 +#: guix-git/doc/guix.texi:3690 guix-git/doc/guix.texi:4529 #, no-wrap msgid "-d [@var{pattern}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3675 guix-git/doc/guix.texi:4514 +#: guix-git/doc/guix.texi:3693 guix-git/doc/guix.texi:4532 msgid "When @var{pattern} is omitted, delete all generations except the current one." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3681 guix-git/doc/guix.texi:4520 +#: guix-git/doc/guix.texi:3699 guix-git/doc/guix.texi:4538 msgid "This command accepts the same patterns as @option{--list-generations}. When @var{pattern} is specified, delete the matching generations. When @var{pattern} specifies a duration, generations @emph{older} than the specified duration match. For instance, @option{--delete-generations=1m} deletes generations that are more than one month old." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3684 +#: guix-git/doc/guix.texi:3702 msgid "If the current generation matches, it is @emph{not} deleted. Also, the zeroth generation is never deleted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3687 guix-git/doc/guix.texi:4525 +#: guix-git/doc/guix.texi:3705 guix-git/doc/guix.texi:4543 msgid "Note that deleting generations prevents rolling back to them. Consequently, this command must be used with care." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3688 +#: guix-git/doc/guix.texi:3706 #, no-wrap msgid "manifest, exporting" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3690 +#: guix-git/doc/guix.texi:3708 msgid "export-manifest" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3690 +#: guix-git/doc/guix.texi:3708 #, no-wrap msgid "--export-manifest" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3693 +#: guix-git/doc/guix.texi:3711 msgid "Write to standard output a manifest suitable for @option{--manifest} corresponding to the chosen profile(s)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3697 +#: guix-git/doc/guix.texi:3715 msgid "This option is meant to help you migrate from the ``imperative'' operating mode---running @command{guix install}, @command{guix upgrade}, etc.---to the declarative mode that @option{--manifest} offers." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3702 +#: guix-git/doc/guix.texi:3720 msgid "Be aware that the resulting manifest @emph{approximates} what your profile actually contains; for instance, depending on how your profile was created, it can refer to packages or package versions that are not exactly what you specified." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3707 +#: guix-git/doc/guix.texi:3725 msgid "Keep in mind that a manifest is purely symbolic: it only contains package names and possibly versions, and their meaning varies over time. If you wish to ``pin'' channels to the revisions that were used to build the profile(s), see @option{--export-channels} below." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3708 +#: guix-git/doc/guix.texi:3726 #, no-wrap msgid "pinning, channel revisions of a profile" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3709 +#: guix-git/doc/guix.texi:3727 #, no-wrap msgid "--export-channels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3713 +#: guix-git/doc/guix.texi:3731 msgid "Write to standard output the list of channels used by the chosen profile(s), in a format suitable for @command{guix pull --channels} or @command{guix time-machine --channels} (@pxref{Channels})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3717 +#: guix-git/doc/guix.texi:3735 msgid "Together with @option{--export-manifest}, this option provides information allowing you to replicate the current profile (@pxref{Replicating Guix})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3725 +#: guix-git/doc/guix.texi:3743 msgid "However, note that the output of this command @emph{approximates} what was actually used to build this profile. In particular, a single profile might have been built from several different revisions of the same channel. In that case, @option{--export-manifest} chooses the last one and writes the list of other revisions in a comment. If you really need to pick packages from different channel revisions, you can use inferiors in your manifest to do so (@pxref{Inferiors})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3730 +#: guix-git/doc/guix.texi:3748 msgid "Together with @option{--export-manifest}, this is a good starting point if you are willing to migrate from the ``imperative'' model to the fully declarative model consisting of a manifest file along with a channels file pinning the exact channel revision(s) you want." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3737 +#: guix-git/doc/guix.texi:3755 msgid "Finally, since @command{guix package} may actually start build processes, it supports all the common build options (@pxref{Common Build Options}). It also supports package transformation options, such as @option{--with-source}, and preserves them across upgrades (@pxref{Package Transformation Options})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3742 +#: guix-git/doc/guix.texi:3760 #, no-wrap msgid "pre-built binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3748 +#: guix-git/doc/guix.texi:3766 msgid "Guix supports transparent source/binary deployment, which means that it can either build things locally, or download pre-built items from a server, or both. We call these pre-built items @dfn{substitutes}---they are substitutes for local build results. In many cases, downloading a substitute is much faster than building things locally." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3753 +#: guix-git/doc/guix.texi:3771 msgid "Substitutes can be anything resulting from a derivation build (@pxref{Derivations}). Of course, in the common case, they are pre-built package binaries, but source tarballs, for instance, which also result from derivation builds, can be available as substitutes." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3767 +#: guix-git/doc/guix.texi:3785 #, no-wrap msgid "build farm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3778 +#: guix-git/doc/guix.texi:3796 msgid "@code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} are both front-ends to official build farms that build packages from Guix continuously for some architectures, and make them available as substitutes. These are the default source of substitutes; which can be overridden by passing the @option{--substitute-urls} option either to @command{guix-daemon} (@pxref{daemon-substitute-urls,, @code{guix-daemon --substitute-urls}}) or to client tools such as @command{guix package} (@pxref{client-substitute-urls,, client @option{--substitute-urls} option})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3784 +#: guix-git/doc/guix.texi:3802 msgid "Substitute URLs can be either HTTP or HTTPS. HTTPS is recommended because communications are encrypted; conversely, using HTTP makes all communications visible to an eavesdropper, who could use the information gathered to determine, for instance, whether your system has unpatched security vulnerabilities." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3793 +#: guix-git/doc/guix.texi:3811 msgid "Substitutes from the official build farms are enabled by default when using Guix System (@pxref{GNU Distribution}). However, they are disabled by default when using Guix on a foreign distribution, unless you have explicitly enabled them via one of the recommended installation steps (@pxref{Installation}). The following paragraphs describe how to enable or disable substitutes for the official build farm; the same procedure can also be used to enable substitutes for any other substitute server." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3797 +#: guix-git/doc/guix.texi:3815 #, no-wrap msgid "security" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3799 +#: guix-git/doc/guix.texi:3817 #, no-wrap msgid "access control list (ACL), for substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3800 +#: guix-git/doc/guix.texi:3818 #, no-wrap msgid "ACL (access control list), for substitutes" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3806 +#: guix-git/doc/guix.texi:3824 msgid "To allow Guix to download substitutes from @code{@value{SUBSTITUTE-SERVER-1}}, @code{@value{SUBSTITUTE-SERVER-2}} or a mirror, you must add the relevant public key to the access control list (ACL) of archive imports, using the @command{guix archive} command (@pxref{Invoking guix archive}). Doing so implies that you trust the substitute server to not be compromised and to serve genuine substitutes." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:3811 +#: guix-git/doc/guix.texi:3829 msgid "If you are using Guix System, you can skip this section: Guix System authorizes substitutes from @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} by default." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3819 +#: guix-git/doc/guix.texi:3837 msgid "The public keys for each of the project maintained substitute servers are installed along with Guix, in @code{@var{prefix}/share/guix/}, where @var{prefix} is the installation prefix of Guix. If you installed Guix from source, make sure you checked the GPG signature of @file{guix-@value{VERSION}.tar.gz}, which contains this public key file. Then, you can run something like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3823 +#: guix-git/doc/guix.texi:3841 #, fuzzy, no-wrap #| msgid "" #| "# guix archive --authorize < \\\n" @@ -10002,16 +10088,16 @@ msgid "" "# guix archive --authorize < @var{prefix}/share/guix/@value{SUBSTITUTE-SERVER-1}.pub\n" "# guix archive --authorize < @var{prefix}/share/guix/@value{SUBSTITUTE-SERVER-2}.pub\n" msgstr "" -"# guix archive --authorize < \\\n" -" ~root/.config/guix/current/share/guix/@value{SUBSTITUTE-SERVER}.pub\n" +"# guix archive --authorize < @var{prefix}/share/guix/@value{SUBSTITUTE-SERVER-1}.pub\n" +"# guix archive --authorize < @var{prefix}/share/guix/@value{SUBSTITUTE-SERVER-2}.pub\n" #. type: Plain text -#: guix-git/doc/guix.texi:3827 +#: guix-git/doc/guix.texi:3845 msgid "Once this is in place, the output of a command like @code{guix build} should change from something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3836 +#: guix-git/doc/guix.texi:3854 #, no-wrap msgid "" "$ guix build emacs --dry-run\n" @@ -10024,12 +10110,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3840 +#: guix-git/doc/guix.texi:3858 msgid "to something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3849 +#: guix-git/doc/guix.texi:3867 #, no-wrap msgid "" "$ guix build emacs --dry-run\n" @@ -10042,49 +10128,49 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3856 +#: guix-git/doc/guix.texi:3874 msgid "The text changed from ``The following derivations would be built'' to ``112.3 MB would be downloaded''. This indicates that substitutes from the configured substitute servers are usable and will be downloaded, when possible, for future builds." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3857 +#: guix-git/doc/guix.texi:3875 #, no-wrap msgid "substitutes, how to disable" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3863 +#: guix-git/doc/guix.texi:3881 msgid "The substitute mechanism can be disabled globally by running @code{guix-daemon} with @option{--no-substitutes} (@pxref{Invoking guix-daemon}). It can also be disabled temporarily by passing the @option{--no-substitutes} option to @command{guix package}, @command{guix build}, and other command-line tools." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3867 +#: guix-git/doc/guix.texi:3885 #, no-wrap msgid "substitute servers, adding more" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3874 +#: guix-git/doc/guix.texi:3892 msgid "Guix can look up and fetch substitutes from several servers. This is useful when you are using packages from additional channels for which the official server does not have substitutes but another server provides them. Another situation where this is useful is when you would prefer to download from your organization's substitute server, resorting to the official server only as a fallback or dismissing it altogether." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3879 +#: guix-git/doc/guix.texi:3897 msgid "You can give Guix a list of substitute server URLs and it will check them in the specified order. You also need to explicitly authorize the public keys of substitute servers to instruct Guix to accept the substitutes they sign." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3886 +#: guix-git/doc/guix.texi:3904 msgid "On Guix System, this is achieved by modifying the configuration of the @code{guix} service. Since the @code{guix} service is part of the default lists of services, @code{%base-services} and @code{%desktop-services}, you can use @code{modify-services} to change its configuration and add the URLs and substitute keys that you want (@pxref{Service Reference, @code{modify-services}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3892 +#: guix-git/doc/guix.texi:3910 msgid "As an example, suppose you want to fetch substitutes from @code{guix.example.org} and to authorize the signing key of that server, in addition to the default @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}}. The resulting operating system configuration will look something like:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3909 +#: guix-git/doc/guix.texi:3927 #, no-wrap msgid "" "(operating-system\n" @@ -10105,12 +10191,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3916 +#: guix-git/doc/guix.texi:3934 msgid "This assumes that the file @file{key.pub} contains the signing key of @code{guix.example.org}. With this change in place in your operating system configuration file (say @file{/etc/config.scm}), you can reconfigure and restart the @code{guix-daemon} service or reboot so the changes take effect:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3920 +#: guix-git/doc/guix.texi:3938 #, no-wrap msgid "" "$ sudo guix system reconfigure /etc/config.scm\n" @@ -10118,28 +10204,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3924 +#: guix-git/doc/guix.texi:3942 msgid "If you're running Guix on a ``foreign distro'', you would instead take the following steps to get substitutes from additional servers:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:3933 +#: guix-git/doc/guix.texi:3951 msgid "Edit the service configuration file for @code{guix-daemon}; when using systemd, this is normally @file{/etc/systemd/system/guix-daemon.service}. Add the @option{--substitute-urls} option on the @command{guix-daemon} command line and list the URLs of interest (@pxref{daemon-substitute-urls, @code{guix-daemon --substitute-urls}}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3936 +#: guix-git/doc/guix.texi:3954 #, no-wrap msgid "@dots{} --substitute-urls='https://guix.example.org @value{SUBSTITUTE-URLS}'\n" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:3940 +#: guix-git/doc/guix.texi:3958 msgid "Restart the daemon. For systemd, it goes like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3944 +#: guix-git/doc/guix.texi:3962 #, no-wrap msgid "" "systemctl daemon-reload\n" @@ -10147,651 +10233,651 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:3948 +#: guix-git/doc/guix.texi:3966 msgid "Authorize the key of the new server (@pxref{Invoking guix archive}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3951 +#: guix-git/doc/guix.texi:3969 #, no-wrap msgid "guix archive --authorize < key.pub\n" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:3955 +#: guix-git/doc/guix.texi:3973 msgid "Again this assumes @file{key.pub} contains the public key that @code{guix.example.org} uses to sign substitutes." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3964 +#: guix-git/doc/guix.texi:3982 msgid "Now you're all set! Substitutes will be preferably taken from @code{https://guix.example.org}, using @code{@value{SUBSTITUTE-SERVER-1}} then @code{@value{SUBSTITUTE-SERVER-2}} as fallback options. Of course you can list as many substitute servers as you like, with the caveat that substitute lookup can be slowed down if too many servers need to be contacted." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3968 +#: guix-git/doc/guix.texi:3986 msgid "Note that there are also situations where one may want to add the URL of a substitute server @emph{without} authorizing its key. @xref{Substitute Authentication}, to understand this fine point." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3972 +#: guix-git/doc/guix.texi:3990 #, no-wrap msgid "digital signatures" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3976 +#: guix-git/doc/guix.texi:3994 msgid "Guix detects and raises an error when attempting to use a substitute that has been tampered with. Likewise, it ignores substitutes that are not signed, or that are not signed by one of the keys listed in the ACL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3982 +#: guix-git/doc/guix.texi:4000 msgid "There is one exception though: if an unauthorized server provides substitutes that are @emph{bit-for-bit identical} to those provided by an authorized server, then the unauthorized server becomes eligible for downloads. For example, assume we have chosen two substitute servers with this option:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3985 +#: guix-git/doc/guix.texi:4003 #, no-wrap msgid "--substitute-urls=\"https://a.example.org https://b.example.org\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3996 +#: guix-git/doc/guix.texi:4014 msgid "If the ACL contains only the key for @samp{b.example.org}, and if @samp{a.example.org} happens to serve the @emph{exact same} substitutes, then Guix will download substitutes from @samp{a.example.org} because it comes first in the list and can be considered a mirror of @samp{b.example.org}. In practice, independent build machines usually produce the same binaries, thanks to bit-reproducible builds (see below)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4003 +#: guix-git/doc/guix.texi:4021 msgid "When using HTTPS, the server's X.509 certificate is @emph{not} validated (in other words, the server is not authenticated), contrary to what HTTPS clients such as Web browsers usually do. This is because Guix authenticates substitute information itself, as explained above, which is what we care about (whereas X.509 certificates are about authenticating bindings between domain names and public keys)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4015 +#: guix-git/doc/guix.texi:4033 msgid "Substitutes are downloaded over HTTP or HTTPS@. The @env{http_proxy} and @env{https_proxy} environment variables can be set in the environment of @command{guix-daemon} and are honored for downloads of substitutes. Note that the value of those environment variables in the environment where @command{guix build}, @command{guix package}, and other client commands are run has @emph{absolutely no effect}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4024 +#: guix-git/doc/guix.texi:4042 msgid "Even when a substitute for a derivation is available, sometimes the substitution attempt will fail. This can happen for a variety of reasons: the substitute server might be offline, the substitute may recently have been deleted, the connection might have been interrupted, etc." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4038 +#: guix-git/doc/guix.texi:4056 msgid "When substitutes are enabled and a substitute for a derivation is available, but the substitution attempt fails, Guix will attempt to build the derivation locally depending on whether or not @option{--fallback} was given (@pxref{fallback-option,, common build option @option{--fallback}}). Specifically, if @option{--fallback} was omitted, then no local build will be performed, and the derivation is considered to have failed. However, if @option{--fallback} was given, then Guix will attempt to build the derivation locally, and the success or failure of the derivation depends on the success or failure of the local build. Note that when substitutes are disabled or no substitute is available for the derivation in question, a local build will @emph{always} be performed, regardless of whether or not @option{--fallback} was given." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4043 +#: guix-git/doc/guix.texi:4061 msgid "To get an idea of how many substitutes are available right now, you can try running the @command{guix weather} command (@pxref{Invoking guix weather}). This command provides statistics on the substitutes provided by a server." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4047 +#: guix-git/doc/guix.texi:4065 #, no-wrap msgid "trust, of pre-built binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4057 +#: guix-git/doc/guix.texi:4075 msgid "Today, each individual's control over their own computing is at the mercy of institutions, corporations, and groups with enough power and determination to subvert the computing infrastructure and exploit its weaknesses. While using substitutes can be convenient, we encourage users to also build on their own, or even run their own build farm, such that the project run substitute servers are less of an interesting target. One way to help is by publishing the software you build using @command{guix publish} so that others have one more choice of server to download substitutes from (@pxref{Invoking guix publish})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4069 +#: guix-git/doc/guix.texi:4087 msgid "Guix has the foundations to maximize build reproducibility (@pxref{Features}). In most cases, independent builds of a given package or derivation should yield bit-identical results. Thus, through a diverse set of independent package builds, we can strengthen the integrity of our systems. The @command{guix challenge} command aims to help users assess substitute servers, and to assist developers in finding out about non-deterministic package builds (@pxref{Invoking guix challenge}). Similarly, the @option{--check} option of @command{guix build} allows users to check whether previously-installed substitutes are genuine by rebuilding them locally (@pxref{build-check, @command{guix build --check}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4073 +#: guix-git/doc/guix.texi:4091 msgid "In the future, we want Guix to have support to publish and retrieve binaries to/from other users, in a peer-to-peer fashion. If you would like to discuss this project, join us on @email{guix-devel@@gnu.org}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4077 +#: guix-git/doc/guix.texi:4095 #, no-wrap msgid "multiple-output packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4078 +#: guix-git/doc/guix.texi:4096 #, no-wrap msgid "package outputs" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4079 +#: guix-git/doc/guix.texi:4097 #, no-wrap msgid "outputs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4089 +#: guix-git/doc/guix.texi:4107 msgid "Often, packages defined in Guix have a single @dfn{output}---i.e., the source package leads to exactly one directory in the store. When running @command{guix install glibc}, one installs the default output of the GNU libc package; the default output is called @code{out}, but its name can be omitted as shown in this command. In this particular case, the default output of @code{glibc} contains all the C header files, shared libraries, static libraries, Info documentation, and other supporting files." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4097 +#: guix-git/doc/guix.texi:4115 msgid "Sometimes it is more appropriate to separate the various types of files produced from a single source package into separate outputs. For instance, the GLib C library (used by GTK+ and related packages) installs more than 20 MiB of reference documentation as HTML pages. To save space for users who do not need it, the documentation goes to a separate output, called @code{doc}. To install the main GLib output, which contains everything but the documentation, one would run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4100 +#: guix-git/doc/guix.texi:4118 #, no-wrap msgid "guix install glib\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4102 guix-git/doc/guix.texi:36368 -#: guix-git/doc/guix.texi:36425 +#: guix-git/doc/guix.texi:4120 guix-git/doc/guix.texi:36858 +#: guix-git/doc/guix.texi:36915 #, no-wrap msgid "documentation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4104 +#: guix-git/doc/guix.texi:4122 msgid "The command to install its documentation is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4107 +#: guix-git/doc/guix.texi:4125 #, no-wrap msgid "guix install glib:doc\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4118 +#: guix-git/doc/guix.texi:4136 msgid "Some packages install programs with different ``dependency footprints''. For instance, the WordNet package installs both command-line tools and graphical user interfaces (GUIs). The former depend solely on the C library, whereas the latter depend on Tcl/Tk and the underlying X libraries. In this case, we leave the command-line tools in the default output, whereas the GUIs are in a separate output. This allows users who do not need the GUIs to save space. The @command{guix size} command can help find out about such situations (@pxref{Invoking guix size}). @command{guix graph} can also be helpful (@pxref{Invoking guix graph})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4126 +#: guix-git/doc/guix.texi:4144 msgid "There are several such multiple-output packages in the GNU distribution. Other conventional output names include @code{lib} for libraries and possibly header files, @code{bin} for stand-alone programs, and @code{debug} for debugging information (@pxref{Installing Debugging Files}). The outputs of a packages are listed in the third column of the output of @command{guix package --list-available} (@pxref{Invoking guix package})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4129 +#: guix-git/doc/guix.texi:4147 #, no-wrap msgid "Invoking @command{guix gc}" msgstr "Invocando @command{guix gc}" #. type: cindex -#: guix-git/doc/guix.texi:4131 +#: guix-git/doc/guix.texi:4149 #, no-wrap msgid "garbage collector" msgstr "coletor de lixo" #. type: cindex -#: guix-git/doc/guix.texi:4132 +#: guix-git/doc/guix.texi:4150 #, no-wrap msgid "disk space" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4138 +#: guix-git/doc/guix.texi:4156 msgid "Packages that are installed, but not used, may be @dfn{garbage-collected}. The @command{guix gc} command allows users to explicitly run the garbage collector to reclaim space from the @file{/gnu/store} directory. It is the @emph{only} way to remove files from @file{/gnu/store}---removing files or directories manually may break it beyond repair!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4149 +#: guix-git/doc/guix.texi:4167 msgid "The garbage collector has a set of known @dfn{roots}: any file under @file{/gnu/store} reachable from a root is considered @dfn{live} and cannot be deleted; any other file is considered @dfn{dead} and may be deleted. The set of garbage collector roots (``GC roots'' for short) includes default user profiles; by default, the symlinks under @file{/var/guix/gcroots} represent these GC roots. New GC roots can be added with @command{guix build --root}, for example (@pxref{Invoking guix build}). The @command{guix gc --list-roots} command lists them." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4155 +#: guix-git/doc/guix.texi:4173 msgid "Prior to running @code{guix gc --collect-garbage} to make space, it is often useful to remove old generations from user profiles; that way, old package builds referenced by those generations can be reclaimed. This is achieved by running @code{guix package --delete-generations} (@pxref{Invoking guix package})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4159 +#: guix-git/doc/guix.texi:4177 msgid "Our recommendation is to run a garbage collection periodically, or when you are short on disk space. For instance, to guarantee that at least 5@tie{}GB are available on your disk, simply run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4162 +#: guix-git/doc/guix.texi:4180 #, no-wrap msgid "guix gc -F 5G\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4171 +#: guix-git/doc/guix.texi:4189 msgid "It is perfectly safe to run as a non-interactive periodic job (@pxref{Scheduled Job Execution}, for how to set up such a job). Running @command{guix gc} with no arguments will collect as much garbage as it can, but that is often inconvenient: you may find yourself having to rebuild or re-download software that is ``dead'' from the GC viewpoint but that is necessary to build other pieces of software---e.g., the compiler tool chain." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4177 +#: guix-git/doc/guix.texi:4195 msgid "The @command{guix gc} command has three modes of operation: it can be used to garbage-collect any dead files (the default), to delete specific files (the @option{--delete} option), to print garbage-collector information, or for more advanced queries. The garbage collection options are as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4179 +#: guix-git/doc/guix.texi:4197 #, no-wrap msgid "--collect-garbage[=@var{min}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4180 +#: guix-git/doc/guix.texi:4198 #, no-wrap msgid "-C [@var{min}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4184 +#: guix-git/doc/guix.texi:4202 msgid "Collect garbage---i.e., unreachable @file{/gnu/store} files and sub-directories. This is the default operation when no option is specified." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4189 +#: guix-git/doc/guix.texi:4207 msgid "When @var{min} is given, stop once @var{min} bytes have been collected. @var{min} may be a number of bytes, or it may include a unit as a suffix, such as @code{MiB} for mebibytes and @code{GB} for gigabytes (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4191 +#: guix-git/doc/guix.texi:4209 msgid "When @var{min} is omitted, collect all the garbage." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4192 +#: guix-git/doc/guix.texi:4210 #, no-wrap msgid "--free-space=@var{free}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4193 +#: guix-git/doc/guix.texi:4211 #, no-wrap msgid "-F @var{free}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4197 +#: guix-git/doc/guix.texi:4215 msgid "Collect garbage until @var{free} space is available under @file{/gnu/store}, if possible; @var{free} denotes storage space, such as @code{500MiB}, as described above." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4200 +#: guix-git/doc/guix.texi:4218 msgid "When @var{free} or more is already available in @file{/gnu/store}, do nothing and exit immediately." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4201 +#: guix-git/doc/guix.texi:4219 #, no-wrap msgid "--delete-generations[=@var{duration}]" msgstr "--delete-generations[=@var{duração}]" #. type: itemx -#: guix-git/doc/guix.texi:4202 +#: guix-git/doc/guix.texi:4220 #, no-wrap msgid "-d [@var{duration}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4206 +#: guix-git/doc/guix.texi:4224 msgid "Before starting the garbage collection process, delete all the generations older than @var{duration}, for all the user profiles; when run as root, this applies to all the profiles @emph{of all the users}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4210 +#: guix-git/doc/guix.texi:4228 msgid "For example, this command deletes all the generations of all your profiles that are older than 2 months (except generations that are current), and then proceeds to free space until at least 10 GiB are available:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4213 +#: guix-git/doc/guix.texi:4231 #, no-wrap msgid "guix gc -d 2m -F 10G\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4215 +#: guix-git/doc/guix.texi:4233 #, no-wrap msgid "--delete" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4216 guix-git/doc/guix.texi:5740 +#: guix-git/doc/guix.texi:4234 guix-git/doc/guix.texi:5758 #, no-wrap msgid "-D" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4220 +#: guix-git/doc/guix.texi:4238 msgid "Attempt to delete all the store files and directories specified as arguments. This fails if some of the files are not in the store, or if they are still live." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4221 +#: guix-git/doc/guix.texi:4239 #, no-wrap msgid "--list-failures" msgstr "--list-failures" #. type: table -#: guix-git/doc/guix.texi:4223 +#: guix-git/doc/guix.texi:4241 msgid "List store items corresponding to cached build failures." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4227 +#: guix-git/doc/guix.texi:4245 msgid "This prints nothing unless the daemon was started with @option{--cache-failures} (@pxref{Invoking guix-daemon, @option{--cache-failures}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4228 +#: guix-git/doc/guix.texi:4246 #, no-wrap msgid "--list-roots" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4231 +#: guix-git/doc/guix.texi:4249 msgid "List the GC roots owned by the user; when run as root, list @emph{all} the GC roots." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4232 +#: guix-git/doc/guix.texi:4250 #, no-wrap msgid "--list-busy" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4235 +#: guix-git/doc/guix.texi:4253 msgid "List store items in use by currently running processes. These store items are effectively considered GC roots: they cannot be deleted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4236 +#: guix-git/doc/guix.texi:4254 #, no-wrap msgid "--clear-failures" msgstr "--clear-failures" #. type: table -#: guix-git/doc/guix.texi:4238 +#: guix-git/doc/guix.texi:4256 msgid "Remove the specified store items from the failed-build cache." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4241 +#: guix-git/doc/guix.texi:4259 msgid "Again, this option only makes sense when the daemon is started with @option{--cache-failures}. Otherwise, it does nothing." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4242 +#: guix-git/doc/guix.texi:4260 #, no-wrap msgid "--list-dead" msgstr "--list-dead" #. type: table -#: guix-git/doc/guix.texi:4245 +#: guix-git/doc/guix.texi:4263 msgid "Show the list of dead files and directories still present in the store---i.e., files and directories no longer reachable from any root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4246 +#: guix-git/doc/guix.texi:4264 #, no-wrap msgid "--list-live" msgstr "--list-live" #. type: table -#: guix-git/doc/guix.texi:4248 +#: guix-git/doc/guix.texi:4266 msgid "Show the list of live store files and directories." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4252 +#: guix-git/doc/guix.texi:4270 msgid "In addition, the references among existing store files can be queried:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4255 +#: guix-git/doc/guix.texi:4273 #, no-wrap msgid "--references" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4256 +#: guix-git/doc/guix.texi:4274 #, no-wrap msgid "--referrers" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4257 guix-git/doc/guix.texi:13205 +#: guix-git/doc/guix.texi:4275 guix-git/doc/guix.texi:13562 #, no-wrap msgid "package dependencies" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4260 +#: guix-git/doc/guix.texi:4278 msgid "List the references (respectively, the referrers) of store files given as arguments." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4261 +#: guix-git/doc/guix.texi:4279 #, no-wrap msgid "--requisites" msgstr "--requisites" #. type: itemx -#: guix-git/doc/guix.texi:4262 guix-git/doc/guix.texi:6501 +#: guix-git/doc/guix.texi:4280 guix-git/doc/guix.texi:6544 #, no-wrap msgid "-R" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4263 guix-git/doc/guix.texi:13061 -#: guix-git/doc/guix.texi:13089 guix-git/doc/guix.texi:13170 +#: guix-git/doc/guix.texi:4281 guix-git/doc/guix.texi:13418 +#: guix-git/doc/guix.texi:13446 guix-git/doc/guix.texi:13527 #, no-wrap msgid "closure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4268 +#: guix-git/doc/guix.texi:4286 msgid "List the requisites of the store files passed as arguments. Requisites include the store files themselves, their references, and the references of these, recursively. In other words, the returned list is the @dfn{transitive closure} of the store files." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4272 +#: guix-git/doc/guix.texi:4290 msgid "@xref{Invoking guix size}, for a tool to profile the size of the closure of an element. @xref{Invoking guix graph}, for a tool to visualize the graph of references." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4273 +#: guix-git/doc/guix.texi:4291 #, no-wrap msgid "--derivers" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4274 guix-git/doc/guix.texi:6815 -#: guix-git/doc/guix.texi:12917 guix-git/doc/guix.texi:13314 +#: guix-git/doc/guix.texi:4292 guix-git/doc/guix.texi:6858 +#: guix-git/doc/guix.texi:13274 guix-git/doc/guix.texi:13671 #, no-wrap msgid "derivation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4277 +#: guix-git/doc/guix.texi:4295 msgid "Return the derivation(s) leading to the given store items (@pxref{Derivations})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4279 +#: guix-git/doc/guix.texi:4297 msgid "For example, this command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4282 +#: guix-git/doc/guix.texi:4300 #, no-wrap msgid "guix gc --derivers $(guix package -I ^emacs$ | cut -f4)\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4287 +#: guix-git/doc/guix.texi:4305 msgid "returns the @file{.drv} file(s) leading to the @code{emacs} package installed in your profile." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4291 +#: guix-git/doc/guix.texi:4309 msgid "Note that there may be zero matching @file{.drv} files, for instance because these files have been garbage-collected. There can also be more than one matching @file{.drv} due to fixed-output derivations." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4295 +#: guix-git/doc/guix.texi:4313 msgid "Lastly, the following options allow you to check the integrity of the store and to control disk usage." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4298 +#: guix-git/doc/guix.texi:4316 #, no-wrap msgid "--verify[=@var{options}]" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4299 +#: guix-git/doc/guix.texi:4317 #, no-wrap msgid "integrity, of the store" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4300 +#: guix-git/doc/guix.texi:4318 #, no-wrap msgid "integrity checking" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4302 +#: guix-git/doc/guix.texi:4320 msgid "Verify the integrity of the store." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4305 +#: guix-git/doc/guix.texi:4323 msgid "By default, make sure that all the store items marked as valid in the database of the daemon actually exist in @file{/gnu/store}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4308 +#: guix-git/doc/guix.texi:4326 msgid "When provided, @var{options} must be a comma-separated list containing one or more of @code{contents} and @code{repair}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4314 +#: guix-git/doc/guix.texi:4332 msgid "When passing @option{--verify=contents}, the daemon computes the content hash of each store item and compares it against its hash in the database. Hash mismatches are reported as data corruptions. Because it traverses @emph{all the files in the store}, this command can take a long time, especially on systems with a slow disk drive." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4315 +#: guix-git/doc/guix.texi:4333 #, no-wrap msgid "repairing the store" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4316 guix-git/doc/guix.texi:11564 +#: guix-git/doc/guix.texi:4334 guix-git/doc/guix.texi:11878 #, no-wrap msgid "corruption, recovering from" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4324 +#: guix-git/doc/guix.texi:4342 msgid "Using @option{--verify=repair} or @option{--verify=contents,repair} causes the daemon to try to repair corrupt store items by fetching substitutes for them (@pxref{Substitutes}). Because repairing is not atomic, and thus potentially dangerous, it is available only to the system administrator. A lightweight alternative, when you know exactly which items in the store are corrupt, is @command{guix build --repair} (@pxref{Invoking guix build})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4325 +#: guix-git/doc/guix.texi:4343 #, no-wrap msgid "--optimize" msgstr "--optimize" #. type: table -#: guix-git/doc/guix.texi:4329 +#: guix-git/doc/guix.texi:4347 msgid "Optimize the store by hard-linking identical files---this is @dfn{deduplication}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4335 +#: guix-git/doc/guix.texi:4353 msgid "The daemon performs deduplication after each successful build or archive import, unless it was started with @option{--disable-deduplication} (@pxref{Invoking guix-daemon, @option{--disable-deduplication}}). Thus, this option is primarily useful when the daemon was running with @option{--disable-deduplication}." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4339 +#: guix-git/doc/guix.texi:4357 #, no-wrap msgid "Invoking @command{guix pull}" msgstr "Invocando @command{guix pull}" #. type: cindex -#: guix-git/doc/guix.texi:4341 +#: guix-git/doc/guix.texi:4359 #, no-wrap msgid "upgrading Guix" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4342 +#: guix-git/doc/guix.texi:4360 #, no-wrap msgid "updating Guix" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:4343 +#: guix-git/doc/guix.texi:4361 #, no-wrap msgid "guix pull" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4344 +#: guix-git/doc/guix.texi:4362 #, no-wrap msgid "pull" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4345 +#: guix-git/doc/guix.texi:4363 #, no-wrap msgid "security, @command{guix pull}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4346 +#: guix-git/doc/guix.texi:4364 #, no-wrap msgid "authenticity, of code obtained with @command{guix pull}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4356 +#: guix-git/doc/guix.texi:4374 msgid "Packages are installed or upgraded to the latest version available in the distribution currently available on your local machine. To update that distribution, along with the Guix tools, you must run @command{guix pull}: the command downloads the latest Guix source code and package descriptions, and deploys it. Source code is downloaded from a @uref{https://git-scm.com, Git} repository, by default the official GNU@tie{}Guix repository, though this can be customized. @command{guix pull} ensures that the code it downloads is @emph{authentic} by verifying that commits are signed by Guix developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4359 +#: guix-git/doc/guix.texi:4377 msgid "Specifically, @command{guix pull} downloads code from the @dfn{channels} (@pxref{Channels}) specified by one of the followings, in this order:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4363 +#: guix-git/doc/guix.texi:4381 msgid "the @option{--channels} option;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4365 +#: guix-git/doc/guix.texi:4383 msgid "the user's @file{~/.config/guix/channels.scm} file;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4367 +#: guix-git/doc/guix.texi:4385 msgid "the system-wide @file{/etc/guix/channels.scm} file;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4370 +#: guix-git/doc/guix.texi:4388 msgid "the built-in default channels specified in the @code{%default-channels} variable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4377 +#: guix-git/doc/guix.texi:4395 msgid "On completion, @command{guix package} will use packages and package versions from this just-retrieved copy of Guix. Not only that, but all the Guix commands and Scheme modules will also be taken from that latest version. New @command{guix} sub-commands added by the update also become available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4383 +#: guix-git/doc/guix.texi:4401 msgid "Any user can update their Guix copy using @command{guix pull}, and the effect is limited to the user who ran @command{guix pull}. For instance, when user @code{root} runs @command{guix pull}, this has no effect on the version of Guix that user @code{alice} sees, and vice versa." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4389 +#: guix-git/doc/guix.texi:4407 msgid "The result of running @command{guix pull} is a @dfn{profile} available under @file{~/.config/guix/current} containing the latest Guix. Thus, make sure to add it to the beginning of your search path so that you use the latest version, and similarly for the Info manual (@pxref{Documentation}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4393 +#: guix-git/doc/guix.texi:4411 #, no-wrap msgid "" "export PATH=\"$HOME/.config/guix/current/bin:$PATH\"\n" @@ -10799,12 +10885,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4397 +#: guix-git/doc/guix.texi:4415 msgid "The @option{--list-generations} or @option{-l} option lists past generations produced by @command{guix pull}, along with details about their provenance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4405 +#: guix-git/doc/guix.texi:4423 #, no-wrap msgid "" "$ guix pull -l\n" @@ -10817,7 +10903,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4415 +#: guix-git/doc/guix.texi:4433 #, no-wrap msgid "" "Generation 2\tJun 11 2018 11:02:49\n" @@ -10833,7 +10919,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4423 +#: guix-git/doc/guix.texi:4441 #, no-wrap msgid "" "Generation 3\tJun 13 2018 23:31:07\t(current)\n" @@ -10846,17 +10932,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4427 +#: guix-git/doc/guix.texi:4445 msgid "@xref{Invoking guix describe, @command{guix describe}}, for other ways to describe the current status of Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4432 +#: guix-git/doc/guix.texi:4450 msgid "This @code{~/.config/guix/current} profile works exactly like the profiles created by @command{guix package} (@pxref{Invoking guix package}). That is, you can list generations, roll back to the previous generation---i.e., the previous Guix---and so on:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4438 +#: guix-git/doc/guix.texi:4456 #, no-wrap msgid "" "$ guix pull --roll-back\n" @@ -10866,12 +10952,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4442 +#: guix-git/doc/guix.texi:4460 msgid "You can also use @command{guix package} (@pxref{Invoking guix package}) to manage the profile by naming it explicitly:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4447 +#: guix-git/doc/guix.texi:4465 #, no-wrap msgid "" "$ guix package -p ~/.config/guix/current --roll-back\n" @@ -10881,354 +10967,355 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4451 +#: guix-git/doc/guix.texi:4469 msgid "The @command{guix pull} command is usually invoked with no arguments, but it supports the following options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4453 guix-git/doc/guix.texi:4611 +#: guix-git/doc/guix.texi:4471 guix-git/doc/guix.texi:4629 #, no-wrap msgid "--url=@var{url}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4454 guix-git/doc/guix.texi:4612 +#: guix-git/doc/guix.texi:4472 guix-git/doc/guix.texi:4630 #, no-wrap msgid "--commit=@var{commit}" msgstr "--commit=@var{commit}" #. type: itemx -#: guix-git/doc/guix.texi:4455 guix-git/doc/guix.texi:4613 +#: guix-git/doc/guix.texi:4473 guix-git/doc/guix.texi:4631 #, no-wrap msgid "--branch=@var{branch}" msgstr "--branch=@var{ramo}" #. type: table -#: guix-git/doc/guix.texi:4459 +#: guix-git/doc/guix.texi:4477 msgid "Download code for the @code{guix} channel from the specified @var{url}, at the given @var{commit} (a valid Git commit ID represented as a hexadecimal string), or @var{branch}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4460 guix-git/doc/guix.texi:5057 +#: guix-git/doc/guix.texi:4478 guix-git/doc/guix.texi:5075 #, no-wrap msgid "@file{channels.scm}, configuration file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4461 guix-git/doc/guix.texi:5058 +#: guix-git/doc/guix.texi:4479 guix-git/doc/guix.texi:5076 #, no-wrap msgid "configuration file for channels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4465 +#: guix-git/doc/guix.texi:4483 msgid "These options are provided for convenience, but you can also specify your configuration in the @file{~/.config/guix/channels.scm} file or using the @option{--channels} option (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4466 guix-git/doc/guix.texi:4618 +#: guix-git/doc/guix.texi:4484 guix-git/doc/guix.texi:4636 #, no-wrap msgid "--channels=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4467 guix-git/doc/guix.texi:4619 +#: guix-git/doc/guix.texi:4485 guix-git/doc/guix.texi:4637 #, no-wrap msgid "-C @var{file}" msgstr "-C @var{arquivo}" #. type: table -#: guix-git/doc/guix.texi:4473 +#: guix-git/doc/guix.texi:4491 msgid "Read the list of channels from @var{file} instead of @file{~/.config/guix/channels.scm} or @file{/etc/guix/channels.scm}. @var{file} must contain Scheme code that evaluates to a list of channel objects. @xref{Channels}, for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4474 +#: guix-git/doc/guix.texi:4492 #, no-wrap msgid "channel news" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4475 +#: guix-git/doc/guix.texi:4493 #, no-wrap msgid "--news" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4476 guix-git/doc/guix.texi:5864 -#: guix-git/doc/guix.texi:6247 guix-git/doc/guix.texi:35304 +#: guix-git/doc/guix.texi:4494 guix-git/doc/guix.texi:5877 +#: guix-git/doc/guix.texi:6290 guix-git/doc/guix.texi:35748 #, no-wrap msgid "-N" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4480 +#: guix-git/doc/guix.texi:4498 msgid "Display the list of packages added or upgraded since the previous generation, as well as, occasionally, news written by channel authors for their users (@pxref{Channels, Writing Channel News})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4484 +#: guix-git/doc/guix.texi:4502 msgid "The package information is the same as displayed upon @command{guix pull} completion, but without ellipses; it is also similar to the output of @command{guix pull -l} for the last generation (see below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4491 +#: guix-git/doc/guix.texi:4509 msgid "List all the generations of @file{~/.config/guix/current} or, if @var{pattern} is provided, the subset of generations that match @var{pattern}. The syntax of @var{pattern} is the same as with @code{guix package --list-generations} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4498 +#: guix-git/doc/guix.texi:4516 msgid "Roll back to the previous @dfn{generation} of @file{~/.config/guix/current}---i.e., undo the last transaction." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4522 +#: guix-git/doc/guix.texi:4540 msgid "If the current generation matches, it is @emph{not} deleted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4528 +#: guix-git/doc/guix.texi:4546 msgid "@xref{Invoking guix describe}, for a way to display information about the current generation only." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4532 +#: guix-git/doc/guix.texi:4550 msgid "Use @var{profile} instead of @file{~/.config/guix/current}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4533 guix-git/doc/guix.texi:10893 -#: guix-git/doc/guix.texi:12836 +#: guix-git/doc/guix.texi:4551 guix-git/doc/guix.texi:11207 +#: guix-git/doc/guix.texi:13162 #, no-wrap msgid "--dry-run" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4534 guix-git/doc/guix.texi:10894 -#: guix-git/doc/guix.texi:12837 guix-git/doc/guix.texi:13043 +#: guix-git/doc/guix.texi:4552 guix-git/doc/guix.texi:11208 +#: guix-git/doc/guix.texi:13163 guix-git/doc/guix.texi:13400 #, no-wrap msgid "-n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4537 +#: guix-git/doc/guix.texi:4555 msgid "Show which channel commit(s) would be used and what would be built or substituted but do not actually do it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4538 guix-git/doc/guix.texi:35323 +#: guix-git/doc/guix.texi:4556 guix-git/doc/guix.texi:35767 +#: guix-git/doc/guix.texi:38198 #, no-wrap msgid "--allow-downgrades" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4541 +#: guix-git/doc/guix.texi:4559 msgid "Allow pulling older or unrelated revisions of channels than those currently in use." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4542 +#: guix-git/doc/guix.texi:4560 #, no-wrap msgid "downgrade attacks, protection against" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4547 +#: guix-git/doc/guix.texi:4565 msgid "By default, @command{guix pull} protects against so-called ``downgrade attacks'' whereby the Git repository of a channel would be reset to an earlier or unrelated revision of itself, potentially leading you to install older, known-vulnerable versions of software packages." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4551 guix-git/doc/guix.texi:35337 +#: guix-git/doc/guix.texi:4569 guix-git/doc/guix.texi:35781 msgid "Make sure you understand its security implications before using @option{--allow-downgrades}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4553 +#: guix-git/doc/guix.texi:4571 #, no-wrap msgid "--disable-authentication" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4555 +#: guix-git/doc/guix.texi:4573 msgid "Allow pulling channel code without authenticating it." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4556 guix-git/doc/guix.texi:5203 +#: guix-git/doc/guix.texi:4574 guix-git/doc/guix.texi:5221 #, no-wrap msgid "authentication, of channel code" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4561 +#: guix-git/doc/guix.texi:4579 msgid "By default, @command{guix pull} authenticates code downloaded from channels by verifying that its commits are signed by authorized developers, and raises an error if this is not the case. This option instructs it to not perform any such verification." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4565 +#: guix-git/doc/guix.texi:4583 msgid "Make sure you understand its security implications before using @option{--disable-authentication}." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4568 guix-git/doc/guix.texi:5847 -#: guix-git/doc/guix.texi:6230 guix-git/doc/guix.texi:6630 -#: guix-git/doc/guix.texi:11506 guix-git/doc/guix.texi:13188 -#: guix-git/doc/guix.texi:13453 guix-git/doc/guix.texi:14130 -#: guix-git/doc/guix.texi:35252 +#: guix-git/doc/guix.texi:4586 guix-git/doc/guix.texi:5860 +#: guix-git/doc/guix.texi:6273 guix-git/doc/guix.texi:6673 +#: guix-git/doc/guix.texi:11820 guix-git/doc/guix.texi:13545 +#: guix-git/doc/guix.texi:13810 guix-git/doc/guix.texi:14487 +#: guix-git/doc/guix.texi:35696 #, no-wrap msgid "-s @var{system}" msgstr "-s @var{sistema}" #. type: table -#: guix-git/doc/guix.texi:4571 guix-git/doc/guix.texi:6633 +#: guix-git/doc/guix.texi:4589 guix-git/doc/guix.texi:6676 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of the system type of the build host." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4575 +#: guix-git/doc/guix.texi:4593 msgid "Use the bootstrap Guile to build the latest Guix. This option is only useful to Guix developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4581 +#: guix-git/doc/guix.texi:4599 msgid "The @dfn{channel} mechanism allows you to instruct @command{guix pull} which repository and branch to pull from, as well as @emph{additional} repositories containing package modules that should be deployed. @xref{Channels}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4584 +#: guix-git/doc/guix.texi:4602 msgid "In addition, @command{guix pull} supports all the common build options (@pxref{Common Build Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4586 +#: guix-git/doc/guix.texi:4604 #, no-wrap msgid "Invoking @command{guix time-machine}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:4588 +#: guix-git/doc/guix.texi:4606 #, no-wrap msgid "guix time-machine" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4589 guix-git/doc/guix.texi:5161 +#: guix-git/doc/guix.texi:4607 guix-git/doc/guix.texi:5179 #, no-wrap msgid "pinning, channels" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4590 guix-git/doc/guix.texi:4772 -#: guix-git/doc/guix.texi:5162 +#: guix-git/doc/guix.texi:4608 guix-git/doc/guix.texi:4790 +#: guix-git/doc/guix.texi:5180 #, no-wrap msgid "replicating Guix" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4591 guix-git/doc/guix.texi:5163 +#: guix-git/doc/guix.texi:4609 guix-git/doc/guix.texi:5181 #, no-wrap msgid "reproducibility, of Guix" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4599 +#: guix-git/doc/guix.texi:4617 msgid "The @command{guix time-machine} command provides access to other revisions of Guix, for example to install older versions of packages, or to reproduce a computation in an identical environment. The revision of Guix to be used is defined by a commit or by a channel description file created by @command{guix describe} (@pxref{Invoking guix describe})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4601 guix-git/doc/guix.texi:5623 -#: guix-git/doc/guix.texi:5974 guix-git/doc/guix.texi:6753 -#: guix-git/doc/guix.texi:10689 guix-git/doc/guix.texi:10813 -#: guix-git/doc/guix.texi:11797 guix-git/doc/guix.texi:11892 -#: guix-git/doc/guix.texi:12825 guix-git/doc/guix.texi:13018 -#: guix-git/doc/guix.texi:13511 guix-git/doc/guix.texi:13884 -#: guix-git/doc/guix.texi:13973 guix-git/doc/guix.texi:14012 -#: guix-git/doc/guix.texi:14109 +#: guix-git/doc/guix.texi:4619 guix-git/doc/guix.texi:5641 +#: guix-git/doc/guix.texi:6011 guix-git/doc/guix.texi:6796 +#: guix-git/doc/guix.texi:11003 guix-git/doc/guix.texi:11127 +#: guix-git/doc/guix.texi:12111 guix-git/doc/guix.texi:12207 +#: guix-git/doc/guix.texi:13148 guix-git/doc/guix.texi:13375 +#: guix-git/doc/guix.texi:13868 guix-git/doc/guix.texi:14241 +#: guix-git/doc/guix.texi:14330 guix-git/doc/guix.texi:14369 +#: guix-git/doc/guix.texi:14466 msgid "The general syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4604 +#: guix-git/doc/guix.texi:4622 #, no-wrap msgid "guix time-machine @var{options}@dots{} -- @var{command} @var {arg}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4609 +#: guix-git/doc/guix.texi:4627 msgid "where @var{command} and @var{arg}@dots{} are passed unmodified to the @command{guix} command of the specified revision. The @var{options} that define this revision are the same as for @command{guix pull} (@pxref{Invoking guix pull}):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4617 +#: guix-git/doc/guix.texi:4635 msgid "Use the @code{guix} channel from the specified @var{url}, at the given @var{commit} (a valid Git commit ID represented as a hexadecimal string), or @var{branch}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4623 +#: guix-git/doc/guix.texi:4641 msgid "Read the list of channels from @var{file}. @var{file} must contain Scheme code that evaluates to a list of channel objects. @xref{Channels} for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4627 +#: guix-git/doc/guix.texi:4645 msgid "As for @command{guix pull}, the absence of any options means that the latest commit on the master branch will be used. The command" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4630 +#: guix-git/doc/guix.texi:4648 #, no-wrap msgid "guix time-machine -- build hello\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4635 +#: guix-git/doc/guix.texi:4653 msgid "will thus build the package @code{hello} as defined in the master branch, which is in general a newer revision of Guix than you have installed. Time travel works in both directions!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4639 +#: guix-git/doc/guix.texi:4657 msgid "Note that @command{guix time-machine} can trigger builds of channels and their dependencies, and these are controlled by the standard build options (@pxref{Common Build Options})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4647 +#: guix-git/doc/guix.texi:4665 msgid "The functionality described here is a ``technology preview'' as of version @value{VERSION}. As such, the interface is subject to change." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4649 guix-git/doc/guix.texi:10726 +#: guix-git/doc/guix.texi:4667 guix-git/doc/guix.texi:11040 #, no-wrap msgid "inferiors" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4650 +#: guix-git/doc/guix.texi:4668 #, no-wrap msgid "composition of Guix revisions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4655 +#: guix-git/doc/guix.texi:4673 msgid "Sometimes you might need to mix packages from the revision of Guix you're currently running with packages available in a different revision of Guix. Guix @dfn{inferiors} allow you to achieve that by composing different Guix revisions in arbitrary ways." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4656 guix-git/doc/guix.texi:4721 +#: guix-git/doc/guix.texi:4674 guix-git/doc/guix.texi:4739 #, no-wrap msgid "inferior packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4662 +#: guix-git/doc/guix.texi:4680 msgid "Technically, an ``inferior'' is essentially a separate Guix process connected to your main Guix process through a REPL (@pxref{Invoking guix repl}). The @code{(guix inferior)} module allows you to create inferiors and to communicate with them. It also provides a high-level interface to browse and manipulate the packages that an inferior provides---@dfn{inferior packages}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4672 +#: guix-git/doc/guix.texi:4690 msgid "When combined with channels (@pxref{Channels}), inferiors provide a simple way to interact with a separate revision of Guix. For example, let's assume you want to install in your profile the current @code{guile} package, along with the @code{guile-json} as it existed in an older revision of Guix---perhaps because the newer @code{guile-json} has an incompatible API and you want to run your code against the old API@. To do that, you could write a manifest for use by @code{guix package --manifest} (@pxref{Invoking guix package}); in that manifest, you would create an inferior for that old Guix revision you care about, and you would look up the @code{guile-json} package in the inferior:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4676 +#: guix-git/doc/guix.texi:4694 #, no-wrap msgid "" "(use-modules (guix inferior) (guix channels)\n" @@ -11237,7 +11324,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4685 +#: guix-git/doc/guix.texi:4703 #, no-wrap msgid "" "(define channels\n" @@ -11252,7 +11339,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4689 +#: guix-git/doc/guix.texi:4707 #, no-wrap msgid "" "(define inferior\n" @@ -11262,7 +11349,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4695 +#: guix-git/doc/guix.texi:4713 #, no-wrap msgid "" ";; Now create a manifest with the current \"guile\" package\n" @@ -11273,186 +11360,186 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4700 +#: guix-git/doc/guix.texi:4718 msgid "On its first run, @command{guix package --manifest} might have to build the channel you specified before it can create the inferior; subsequent runs will be much faster because the Guix revision will be cached." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4703 +#: guix-git/doc/guix.texi:4721 msgid "The @code{(guix inferior)} module provides the following procedures to open an inferior:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4704 +#: guix-git/doc/guix.texi:4722 #, no-wrap msgid "{Scheme Procedure} inferior-for-channels @var{channels} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4709 +#: guix-git/doc/guix.texi:4727 msgid "[#:cache-directory] [#:ttl] Return an inferior for @var{channels}, a list of channels. Use the cache at @var{cache-directory}, where entries can be reclaimed after @var{ttl} seconds. This procedure opens a new connection to the build daemon." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4712 +#: guix-git/doc/guix.texi:4730 msgid "As a side effect, this procedure may build or substitute binaries for @var{channels}, which can take time." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4714 +#: guix-git/doc/guix.texi:4732 #, no-wrap msgid "{Scheme Procedure} open-inferior @var{directory} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4719 +#: guix-git/doc/guix.texi:4737 msgid "[#:command \"bin/guix\"] Open the inferior Guix in @var{directory}, running @code{@var{directory}/@var{command} repl} or equivalent. Return @code{#f} if the inferior could not be launched." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4724 +#: guix-git/doc/guix.texi:4742 msgid "The procedures listed below allow you to obtain and manipulate inferior packages." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4725 +#: guix-git/doc/guix.texi:4743 #, no-wrap msgid "{Scheme Procedure} inferior-packages @var{inferior}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4727 +#: guix-git/doc/guix.texi:4745 msgid "Return the list of packages known to @var{inferior}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4729 +#: guix-git/doc/guix.texi:4747 #, no-wrap msgid "{Scheme Procedure} lookup-inferior-packages @var{inferior} @var{name} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4734 +#: guix-git/doc/guix.texi:4752 msgid "[@var{version}] Return the sorted list of inferior packages matching @var{name} in @var{inferior}, with highest version numbers first. If @var{version} is true, return only packages with a version number prefixed by @var{version}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4736 +#: guix-git/doc/guix.texi:4754 #, no-wrap msgid "{Scheme Procedure} inferior-package? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4738 +#: guix-git/doc/guix.texi:4756 msgid "Return true if @var{obj} is an inferior package." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4740 +#: guix-git/doc/guix.texi:4758 #, no-wrap msgid "{Scheme Procedure} inferior-package-name @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4741 +#: guix-git/doc/guix.texi:4759 #, no-wrap msgid "{Scheme Procedure} inferior-package-version @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4742 +#: guix-git/doc/guix.texi:4760 #, no-wrap msgid "{Scheme Procedure} inferior-package-synopsis @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4743 +#: guix-git/doc/guix.texi:4761 #, no-wrap msgid "{Scheme Procedure} inferior-package-description @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4744 +#: guix-git/doc/guix.texi:4762 #, no-wrap msgid "{Scheme Procedure} inferior-package-home-page @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4745 +#: guix-git/doc/guix.texi:4763 #, no-wrap msgid "{Scheme Procedure} inferior-package-location @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4746 +#: guix-git/doc/guix.texi:4764 #, no-wrap msgid "{Scheme Procedure} inferior-package-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4747 +#: guix-git/doc/guix.texi:4765 #, no-wrap msgid "{Scheme Procedure} inferior-package-native-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4748 +#: guix-git/doc/guix.texi:4766 #, no-wrap msgid "{Scheme Procedure} inferior-package-propagated-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4749 +#: guix-git/doc/guix.texi:4767 #, no-wrap msgid "{Scheme Procedure} inferior-package-transitive-propagated-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4750 +#: guix-git/doc/guix.texi:4768 #, no-wrap msgid "{Scheme Procedure} inferior-package-native-search-paths @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4751 +#: guix-git/doc/guix.texi:4769 #, no-wrap msgid "{Scheme Procedure} inferior-package-transitive-native-search-paths @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4752 +#: guix-git/doc/guix.texi:4770 #, no-wrap msgid "{Scheme Procedure} inferior-package-search-paths @var{package}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4757 +#: guix-git/doc/guix.texi:4775 msgid "These procedures are the counterpart of package record accessors (@pxref{package Reference}). Most of them work by querying the inferior @var{package} comes from, so the inferior must still be live when you call these procedures." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4767 +#: guix-git/doc/guix.texi:4785 msgid "Inferior packages can be used transparently like any other package or file-like object in G-expressions (@pxref{G-Expressions}). They are also transparently handled by the @code{packages->manifest} procedure, which is commonly used in manifests (@pxref{Invoking guix package, the @option{--manifest} option of @command{guix package}}). Thus you can insert an inferior package pretty much anywhere you would insert a regular package: in manifests, in the @code{packages} field of your @code{operating-system} declaration, and so on." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4769 +#: guix-git/doc/guix.texi:4787 #, no-wrap msgid "Invoking @command{guix describe}" msgstr "Invocando @command{guix describe}" #. type: Plain text -#: guix-git/doc/guix.texi:4780 +#: guix-git/doc/guix.texi:4798 msgid "Often you may want to answer questions like: ``Which revision of Guix am I using?'' or ``Which channels am I using?'' This is useful information in many situations: if you want to @emph{replicate} an environment on a different machine or user account, if you want to report a bug or to determine what change in the channels you are using caused it, or if you want to record your system state for reproducibility purposes. The @command{guix describe} command answers these questions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4784 +#: guix-git/doc/guix.texi:4802 msgid "When run from a @command{guix pull}ed @command{guix}, @command{guix describe} displays the channel(s) that it was built from, including their repository URL and commit IDs (@pxref{Channels}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4792 +#: guix-git/doc/guix.texi:4810 #, no-wrap msgid "" "$ guix describe\n" @@ -11464,17 +11551,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4801 +#: guix-git/doc/guix.texi:4819 msgid "If you're familiar with the Git version control system, this is similar in spirit to @command{git describe}; the output is also similar to that of @command{guix pull --list-generations}, but limited to the current generation (@pxref{Invoking guix pull, the @option{--list-generations} option}). Because the Git commit ID shown above unambiguously refers to a snapshot of Guix, this information is all it takes to describe the revision of Guix you're using, and also to replicate it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4804 +#: guix-git/doc/guix.texi:4822 msgid "To make it easier to replicate Guix, @command{guix describe} can also be asked to return a list of channels instead of the human-readable description above:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4817 +#: guix-git/doc/guix.texi:4835 #, no-wrap msgid "" "$ guix describe -f channels\n" @@ -11491,190 +11578,190 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4826 +#: guix-git/doc/guix.texi:4844 msgid "You can save this to a file and feed it to @command{guix pull -C} on some other machine or at a later point in time, which will instantiate @emph{this exact Guix revision} (@pxref{Invoking guix pull, the @option{-C} option}). From there on, since you're able to deploy the same revision of Guix, you can just as well @emph{replicate a complete software environment}. We humbly think that this is @emph{awesome}, and we hope you'll like it too!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4829 +#: guix-git/doc/guix.texi:4847 msgid "The details of the options supported by @command{guix describe} are as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4831 guix-git/doc/guix.texi:6431 -#: guix-git/doc/guix.texi:14242 +#: guix-git/doc/guix.texi:4849 guix-git/doc/guix.texi:6474 +#: guix-git/doc/guix.texi:14599 #, no-wrap msgid "--format=@var{format}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4832 guix-git/doc/guix.texi:6432 -#: guix-git/doc/guix.texi:14243 +#: guix-git/doc/guix.texi:4850 guix-git/doc/guix.texi:6475 +#: guix-git/doc/guix.texi:14600 #, no-wrap msgid "-f @var{format}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4834 guix-git/doc/guix.texi:14245 +#: guix-git/doc/guix.texi:4852 guix-git/doc/guix.texi:14602 msgid "Produce output in the specified @var{format}, one of:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4836 +#: guix-git/doc/guix.texi:4854 #, no-wrap msgid "human" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4838 +#: guix-git/doc/guix.texi:4856 msgid "produce human-readable output;" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4838 guix-git/doc/guix.texi:5056 +#: guix-git/doc/guix.texi:4856 guix-git/doc/guix.texi:5074 #, no-wrap msgid "channels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4842 +#: guix-git/doc/guix.texi:4860 msgid "produce a list of channel specifications that can be passed to @command{guix pull -C} or installed as @file{~/.config/guix/channels.scm} (@pxref{Invoking guix pull});" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4842 +#: guix-git/doc/guix.texi:4860 #, no-wrap msgid "channels-sans-intro" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4848 +#: guix-git/doc/guix.texi:4866 msgid "like @code{channels}, but omit the @code{introduction} field; use it to produce a channel specification suitable for Guix version 1.1.0 or earlier---the @code{introduction} field has to do with channel authentication (@pxref{Channels, Channel Authentication}) and is not supported by these older versions;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4848 guix-git/doc/guix.texi:12109 +#: guix-git/doc/guix.texi:4866 guix-git/doc/guix.texi:12424 #, no-wrap msgid "json" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4849 +#: guix-git/doc/guix.texi:4867 #, no-wrap msgid "JSON" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4851 +#: guix-git/doc/guix.texi:4869 msgid "produce a list of channel specifications in JSON format;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4851 guix-git/doc/guix.texi:14247 +#: guix-git/doc/guix.texi:4869 guix-git/doc/guix.texi:14604 #, no-wrap msgid "recutils" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4853 +#: guix-git/doc/guix.texi:4871 msgid "produce a list of channel specifications in Recutils format." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4855 +#: guix-git/doc/guix.texi:4873 #, no-wrap msgid "--list-formats" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4857 +#: guix-git/doc/guix.texi:4875 msgid "Display available formats for @option{--format} option." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4861 +#: guix-git/doc/guix.texi:4879 msgid "Display information about @var{profile}." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4864 +#: guix-git/doc/guix.texi:4882 #, no-wrap msgid "Invoking @command{guix archive}" msgstr "Invocando @command{guix archive}" #. type: command{#1} -#: guix-git/doc/guix.texi:4866 +#: guix-git/doc/guix.texi:4884 #, no-wrap msgid "guix archive" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4867 +#: guix-git/doc/guix.texi:4885 #, no-wrap msgid "archive" msgstr "pacote" #. type: Plain text -#: guix-git/doc/guix.texi:4873 +#: guix-git/doc/guix.texi:4891 msgid "The @command{guix archive} command allows users to @dfn{export} files from the store into a single archive, and to later @dfn{import} them on a machine that runs Guix. In particular, it allows store files to be transferred from one machine to the store on another machine." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4877 +#: guix-git/doc/guix.texi:4895 msgid "If you're looking for a way to produce archives in a format suitable for tools other than Guix, @pxref{Invoking guix pack}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4879 +#: guix-git/doc/guix.texi:4897 #, no-wrap msgid "exporting store items" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4881 +#: guix-git/doc/guix.texi:4899 msgid "To export store files as an archive to standard output, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4884 +#: guix-git/doc/guix.texi:4902 #, no-wrap msgid "guix archive --export @var{options} @var{specifications}...\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4891 +#: guix-git/doc/guix.texi:4909 msgid "@var{specifications} may be either store file names or package specifications, as for @command{guix package} (@pxref{Invoking guix package}). For instance, the following command creates an archive containing the @code{gui} output of the @code{git} package and the main output of @code{emacs}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4894 +#: guix-git/doc/guix.texi:4912 #, no-wrap msgid "guix archive --export git:gui /gnu/store/...-emacs-24.3 > great.nar\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4899 +#: guix-git/doc/guix.texi:4917 msgid "If the specified packages are not built yet, @command{guix archive} automatically builds them. The build process may be controlled with the common build options (@pxref{Common Build Options})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4902 +#: guix-git/doc/guix.texi:4920 msgid "To transfer the @code{emacs} package to a machine connected over SSH, one would run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4905 +#: guix-git/doc/guix.texi:4923 #, no-wrap msgid "guix archive --export -r emacs | ssh the-machine guix archive --import\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4910 +#: guix-git/doc/guix.texi:4928 msgid "Similarly, a complete user profile may be transferred from one machine to another like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4914 +#: guix-git/doc/guix.texi:4932 #, no-wrap msgid "" "guix archive --export -r $(readlink -f ~/.guix-profile) | \\\n" @@ -11682,187 +11769,187 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4924 +#: guix-git/doc/guix.texi:4942 msgid "However, note that, in both examples, all of @code{emacs} and the profile as well as all of their dependencies are transferred (due to @option{-r}), regardless of what is already available in the store on the target machine. The @option{--missing} option can help figure out which items are missing from the target store. The @command{guix copy} command simplifies and optimizes this whole process, so this is probably what you should use in this case (@pxref{Invoking guix copy})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4925 +#: guix-git/doc/guix.texi:4943 #, no-wrap msgid "nar, archive format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4926 +#: guix-git/doc/guix.texi:4944 #, no-wrap msgid "normalized archive (nar)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4927 +#: guix-git/doc/guix.texi:4945 #, no-wrap msgid "nar bundle, archive format" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4932 +#: guix-git/doc/guix.texi:4950 msgid "Each store item is written in the @dfn{normalized archive} or @dfn{nar} format (described below), and the output of @command{guix archive --export} (and input of @command{guix archive --import}) is a @dfn{nar bundle}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4942 +#: guix-git/doc/guix.texi:4960 msgid "The nar format is comparable in spirit to `tar', but with differences that make it more appropriate for our purposes. First, rather than recording all Unix metadata for each file, the nar format only mentions the file type (regular, directory, or symbolic link); Unix permissions and owner/group are dismissed. Second, the order in which directory entries are stored always follows the order of file names according to the C locale collation order. This makes archive production fully deterministic." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4946 +#: guix-git/doc/guix.texi:4964 msgid "That nar bundle format is essentially the concatenation of zero or more nars along with metadata for each store item it contains: its file name, references, corresponding derivation, and a digital signature." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4952 +#: guix-git/doc/guix.texi:4970 msgid "When exporting, the daemon digitally signs the contents of the archive, and that digital signature is appended. When importing, the daemon verifies the signature and rejects the import in case of an invalid signature or if the signing key is not authorized." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4954 +#: guix-git/doc/guix.texi:4972 msgid "The main options are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4956 +#: guix-git/doc/guix.texi:4974 #, no-wrap msgid "--export" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4959 +#: guix-git/doc/guix.texi:4977 msgid "Export the specified store files or packages (see below). Write the resulting archive to the standard output." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4962 +#: guix-git/doc/guix.texi:4980 msgid "Dependencies are @emph{not} included in the output, unless @option{--recursive} is passed." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4963 guix-git/doc/guix.texi:11830 -#: guix-git/doc/guix.texi:11956 guix-git/doc/guix.texi:11981 -#: guix-git/doc/guix.texi:12013 guix-git/doc/guix.texi:12184 -#: guix-git/doc/guix.texi:12225 guix-git/doc/guix.texi:12276 -#: guix-git/doc/guix.texi:12301 guix-git/doc/guix.texi:12317 -#: guix-git/doc/guix.texi:12365 guix-git/doc/guix.texi:12401 +#: guix-git/doc/guix.texi:4981 guix-git/doc/guix.texi:12144 +#: guix-git/doc/guix.texi:12271 guix-git/doc/guix.texi:12296 +#: guix-git/doc/guix.texi:12328 guix-git/doc/guix.texi:12499 +#: guix-git/doc/guix.texi:12540 guix-git/doc/guix.texi:12591 +#: guix-git/doc/guix.texi:12616 guix-git/doc/guix.texi:12632 +#: guix-git/doc/guix.texi:12680 guix-git/doc/guix.texi:12716 #, no-wrap msgid "-r" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4964 guix-git/doc/guix.texi:11829 -#: guix-git/doc/guix.texi:11955 guix-git/doc/guix.texi:11980 -#: guix-git/doc/guix.texi:12012 guix-git/doc/guix.texi:12183 -#: guix-git/doc/guix.texi:12224 guix-git/doc/guix.texi:12275 -#: guix-git/doc/guix.texi:12300 guix-git/doc/guix.texi:12316 -#: guix-git/doc/guix.texi:12364 guix-git/doc/guix.texi:12400 -#: guix-git/doc/guix.texi:12449 +#: guix-git/doc/guix.texi:4982 guix-git/doc/guix.texi:12143 +#: guix-git/doc/guix.texi:12270 guix-git/doc/guix.texi:12295 +#: guix-git/doc/guix.texi:12327 guix-git/doc/guix.texi:12498 +#: guix-git/doc/guix.texi:12539 guix-git/doc/guix.texi:12590 +#: guix-git/doc/guix.texi:12615 guix-git/doc/guix.texi:12631 +#: guix-git/doc/guix.texi:12679 guix-git/doc/guix.texi:12715 +#: guix-git/doc/guix.texi:12764 #, no-wrap msgid "--recursive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4969 +#: guix-git/doc/guix.texi:4987 msgid "When combined with @option{--export}, this instructs @command{guix archive} to include dependencies of the given items in the archive. Thus, the resulting archive is self-contained: it contains the closure of the exported store items." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4970 +#: guix-git/doc/guix.texi:4988 #, no-wrap msgid "--import" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4975 +#: guix-git/doc/guix.texi:4993 msgid "Read an archive from the standard input, and import the files listed therein into the store. Abort if the archive has an invalid digital signature, or if it is signed by a public key not among the authorized keys (see @option{--authorize} below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4976 +#: guix-git/doc/guix.texi:4994 #, no-wrap msgid "--missing" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4980 +#: guix-git/doc/guix.texi:4998 msgid "Read a list of store file names from the standard input, one per line, and write on the standard output the subset of these files missing from the store." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4981 +#: guix-git/doc/guix.texi:4999 #, no-wrap msgid "--generate-key[=@var{parameters}]" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4982 +#: guix-git/doc/guix.texi:5000 #, no-wrap msgid "signing, archives" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4989 +#: guix-git/doc/guix.texi:5007 msgid "Generate a new key pair for the daemon. This is a prerequisite before archives can be exported with @option{--export}. This operation is usually instantaneous but it can take time if the system's entropy pool needs to be refilled. On Guix System, @code{guix-service-type} takes care of generating this key pair the first boot." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4999 +#: guix-git/doc/guix.texi:5017 msgid "The generated key pair is typically stored under @file{/etc/guix}, in @file{signing-key.pub} (public key) and @file{signing-key.sec} (private key, which must be kept secret). When @var{parameters} is omitted, an ECDSA key using the Ed25519 curve is generated, or, for Libgcrypt versions before 1.6.0, it is a 4096-bit RSA key. Alternatively, @var{parameters} can specify @code{genkey} parameters suitable for Libgcrypt (@pxref{General public-key related Functions, @code{gcry_pk_genkey},, gcrypt, The Libgcrypt Reference Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5000 +#: guix-git/doc/guix.texi:5018 #, no-wrap msgid "--authorize" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5001 +#: guix-git/doc/guix.texi:5019 #, no-wrap msgid "authorizing, archives" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5005 +#: guix-git/doc/guix.texi:5023 msgid "Authorize imports signed by the public key passed on standard input. The public key must be in ``s-expression advanced format''---i.e., the same format as the @file{signing-key.pub} file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5012 +#: guix-git/doc/guix.texi:5030 msgid "The list of authorized keys is kept in the human-editable file @file{/etc/guix/acl}. The file contains @url{https://people.csail.mit.edu/rivest/Sexp.txt, ``advanced-format s-expressions''} and is structured as an access-control list in the @url{https://theworld.com/~cme/spki.txt, Simple Public-Key Infrastructure (SPKI)}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5013 +#: guix-git/doc/guix.texi:5031 #, no-wrap msgid "--extract=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5014 +#: guix-git/doc/guix.texi:5032 #, no-wrap msgid "-x @var{directory}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5018 +#: guix-git/doc/guix.texi:5036 msgid "Read a single-item archive as served by substitute servers (@pxref{Substitutes}) and extract it to @var{directory}. This is a low-level operation needed in only very narrow use cases; see below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5021 +#: guix-git/doc/guix.texi:5039 msgid "For example, the following command extracts the substitute for Emacs served by @code{@value{SUBSTITUTE-SERVER-1}} to @file{/tmp/emacs}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5026 +#: guix-git/doc/guix.texi:5044 #, no-wrap msgid "" "$ wget -O - \\\n" @@ -11871,35 +11958,35 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5033 +#: guix-git/doc/guix.texi:5051 msgid "Single-item archives are different from multiple-item archives produced by @command{guix archive --export}; they contain a single store item, and they do @emph{not} embed a signature. Thus this operation does @emph{no} signature verification and its output should be considered unsafe." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5037 +#: guix-git/doc/guix.texi:5055 msgid "The primary purpose of this operation is to facilitate inspection of archive contents coming from possibly untrusted substitute servers (@pxref{Invoking guix challenge})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5038 +#: guix-git/doc/guix.texi:5056 #, no-wrap msgid "--list" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5039 guix-git/doc/guix.texi:12171 -#: guix-git/doc/guix.texi:12218 +#: guix-git/doc/guix.texi:5057 guix-git/doc/guix.texi:12486 +#: guix-git/doc/guix.texi:12533 #, no-wrap msgid "-t" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5043 +#: guix-git/doc/guix.texi:5061 msgid "Read a single-item archive as served by substitute servers (@pxref{Substitutes}) and print the list of files it contains, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5048 +#: guix-git/doc/guix.texi:5066 #, no-wrap msgid "" "$ wget -O - \\\n" @@ -11908,47 +11995,47 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5059 +#: guix-git/doc/guix.texi:5077 #, no-wrap msgid "@command{guix pull}, configuration file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5060 +#: guix-git/doc/guix.texi:5078 #, no-wrap msgid "configuration of @command{guix pull}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5071 +#: guix-git/doc/guix.texi:5089 msgid "Guix and its package collection are updated by running @command{guix pull} (@pxref{Invoking guix pull}). By default @command{guix pull} downloads and deploys Guix itself from the official GNU@tie{}Guix repository. This can be customized by defining @dfn{channels} in the @file{~/.config/guix/channels.scm} file. A channel specifies a URL and branch of a Git repository to be deployed, and @command{guix pull} can be instructed to pull from one or more channels. In other words, channels can be used to @emph{customize} and to @emph{extend} Guix, as we will see below. Guix is able to take into account security concerns and deal with authenticated updates." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5089 +#: guix-git/doc/guix.texi:5107 #, no-wrap msgid "extending the package collection (channels)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5090 +#: guix-git/doc/guix.texi:5108 #, no-wrap msgid "variant packages (channels)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5094 +#: guix-git/doc/guix.texi:5112 msgid "You can specify @emph{additional channels} to pull from. To use a channel, write @code{~/.config/guix/channels.scm} to instruct @command{guix pull} to pull from it @emph{in addition} to the default Guix channel(s):" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:5095 +#: guix-git/doc/guix.texi:5113 #, no-wrap msgid "%default-channels" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5120 #, no-wrap msgid "" ";; Add variant packages to those Guix provides.\n" @@ -11959,12 +12046,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5112 +#: guix-git/doc/guix.texi:5130 msgid "Note that the snippet above is (as always!)@: Scheme code; we use @code{cons} to add a channel the list of channels that the variable @code{%default-channels} is bound to (@pxref{Pairs, @code{cons} and lists,, guile, GNU Guile Reference Manual}). With this file in place, @command{guix pull} builds not only Guix but also the package modules from your own repository. The result in @file{~/.config/guix/current} is the union of Guix with your own package modules:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5127 +#: guix-git/doc/guix.texi:5145 #, no-wrap msgid "" "$ guix pull --list-generations\n" @@ -11983,17 +12070,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5135 +#: guix-git/doc/guix.texi:5153 msgid "The output of @command{guix pull} above shows that Generation@tie{}19 includes both Guix and packages from the @code{variant-personal-packages} channel. Among the new and upgraded packages that are listed, some like @code{variant-gimp} and @code{variant-emacs-with-cool-features} might come from @code{variant-packages}, while others come from the Guix default channel." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5144 +#: guix-git/doc/guix.texi:5162 msgid "The channel called @code{guix} specifies where Guix itself---its command-line tools as well as its package collection---should be downloaded. For instance, suppose you want to update from another copy of the Guix repository at @code{example.org}, and specifically the @code{super-hacks} branch, you can write in @code{~/.config/guix/channels.scm} this specification:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5151 +#: guix-git/doc/guix.texi:5169 #, no-wrap msgid "" ";; Tell 'guix pull' to use another repo.\n" @@ -12004,17 +12091,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5157 +#: guix-git/doc/guix.texi:5175 msgid "From there on, @command{guix pull} will fetch code from the @code{super-hacks} branch of the repository at @code{example.org}. The authentication concern is addressed below ((@pxref{Channel Authentication})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5168 +#: guix-git/doc/guix.texi:5186 msgid "The @command{guix pull --list-generations} output above shows precisely which commits were used to build this instance of Guix. We can thus replicate it, say, on another machine, by providing a channel specification in @file{~/.config/guix/channels.scm} that is ``pinned'' to these commits:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5179 +#: guix-git/doc/guix.texi:5197 #, no-wrap msgid "" ";; Deploy specific commits of my channels of interest.\n" @@ -12029,37 +12116,37 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5186 +#: guix-git/doc/guix.texi:5204 msgid "The @command{guix describe --format=channels} command can even generate this list of channels directly (@pxref{Invoking guix describe}). The resulting file can be used with the -C options of @command{guix pull} (@pxref{Invoking guix pull}) or @command{guix time-machine} (@pxref{Invoking guix time-machine})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5193 +#: guix-git/doc/guix.texi:5211 msgid "At this point the two machines run the @emph{exact same Guix}, with access to the @emph{exact same packages}. The output of @command{guix build gimp} on one machine will be exactly the same, bit for bit, as the output of the same command on the other machine. It also means both machines have access to all the source code of Guix and, transitively, to all the source code of every package it defines." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5198 +#: guix-git/doc/guix.texi:5216 msgid "This gives you super powers, allowing you to track the provenance of binary artifacts with very fine grain, and to reproduce software environments at will---some sort of ``meta reproducibility'' capabilities, if you will. @xref{Inferiors}, for another way to take advantage of these super powers." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:5203 +#: guix-git/doc/guix.texi:5221 msgid "channel-authentication" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5209 +#: guix-git/doc/guix.texi:5227 msgid "The @command{guix pull} and @command{guix time-machine} commands @dfn{authenticate} the code retrieved from channels: they make sure each commit that is fetched is signed by an authorized developer. The goal is to protect from unauthorized modifications to the channel that would lead users to run malicious code." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5214 +#: guix-git/doc/guix.texi:5232 msgid "As a user, you must provide a @dfn{channel introduction} in your channels file so that Guix knows how to authenticate its first commit. A channel specification, including its introduction, looks something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5224 +#: guix-git/doc/guix.texi:5242 #, no-wrap msgid "" "(channel\n" @@ -12073,27 +12160,27 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5230 +#: guix-git/doc/guix.texi:5248 msgid "The specification above shows the name and URL of the channel. The call to @code{make-channel-introduction} above specifies that authentication of this channel starts at commit @code{6f0d8cc@dots{}}, which is signed by the OpenPGP key with fingerprint @code{CABB A931@dots{}}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5236 +#: guix-git/doc/guix.texi:5254 msgid "For the main channel, called @code{guix}, you automatically get that information from your Guix installation. For other channels, include the channel introduction provided by the channel authors in your @file{channels.scm} file. Make sure you retrieve the channel introduction from a trusted source since that is the root of your trust." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5238 +#: guix-git/doc/guix.texi:5256 msgid "If you're curious about the authentication mechanics, read on!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5249 +#: guix-git/doc/guix.texi:5267 msgid "When running @command{guix pull}, Guix will first compile the definitions of every available package. This is an expensive operation for which substitutes (@pxref{Substitutes}) may be available. The following snippet in @file{channels.scm} will ensure that @command{guix pull} uses the latest commit with available substitutes for the package definitions: this is done by querying the continuous integration server at @url{https://ci.guix.gnu.org}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5252 +#: guix-git/doc/guix.texi:5270 #, no-wrap msgid "" "(use-modules (guix ci))\n" @@ -12101,7 +12188,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5256 +#: guix-git/doc/guix.texi:5274 #, no-wrap msgid "" "(list (channel-with-substitutes-available\n" @@ -12110,75 +12197,75 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5263 +#: guix-git/doc/guix.texi:5281 msgid "Note that this does not mean that all the packages that you will install after running @command{guix pull} will have available substitutes. It only ensures that @command{guix pull} will not try to compile package definitions. This is particularly useful when using machines with limited resources." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5267 +#: guix-git/doc/guix.texi:5285 #, no-wrap msgid "personal packages (channels)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5268 +#: guix-git/doc/guix.texi:5286 #, no-wrap msgid "channels, for personal packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5276 +#: guix-git/doc/guix.texi:5294 msgid "Let's say you have a bunch of custom package variants or personal packages that you think would make little sense to contribute to the Guix project, but would like to have these packages transparently available to you at the command line. You would first write modules containing those package definitions (@pxref{Package Modules}), maintain them in a Git repository, and then you and anyone else can use it as an additional channel to get packages from. Neat, no?" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5284 +#: guix-git/doc/guix.texi:5302 msgid "Before you, dear user, shout---``woow this is @emph{soooo coool}!''---and publish your personal channel to the world, we would like to share a few words of caution:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:5292 +#: guix-git/doc/guix.texi:5310 msgid "Before publishing a channel, please consider contributing your package definitions to Guix proper (@pxref{Contributing}). Guix as a project is open to free software of all sorts, and packages in Guix proper are readily available to all Guix users and benefit from the project's quality assurance process." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:5301 +#: guix-git/doc/guix.texi:5319 msgid "When you maintain package definitions outside Guix, we, Guix developers, consider that @emph{the compatibility burden is on you}. Remember that package modules and package definitions are just Scheme code that uses various programming interfaces (APIs). We want to remain free to change these APIs to keep improving Guix, possibly in ways that break your channel. We never change APIs gratuitously, but we will @emph{not} commit to freezing APIs either." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:5305 +#: guix-git/doc/guix.texi:5323 msgid "Corollary: if you're using an external channel and that channel breaks, please @emph{report the issue to the channel authors}, not to the Guix project." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5312 +#: guix-git/doc/guix.texi:5330 msgid "You've been warned! Having said this, we believe external channels are a practical way to exert your freedom to augment Guix' package collection and to share your improvements, which are basic tenets of @uref{https://www.gnu.org/philosophy/free-sw.html, free software}. Please email us at @email{guix-devel@@gnu.org} if you'd like to discuss this." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5324 +#: guix-git/doc/guix.texi:5342 msgid "To create a channel, create a Git repository containing your own package modules and make it available. The repository can contain anything, but a useful channel will contain Guile modules that export packages. Once you start using a channel, Guix will behave as if the root directory of that channel's Git repository has been added to the Guile load path (@pxref{Load Paths,,, guile, GNU Guile Reference Manual}). For example, if your channel contains a file at @file{my-packages/my-tools.scm} that defines a Guile module, then the module will be available under the name @code{(my-packages my-tools)}, and you will be able to use it like any other module (@pxref{Modules,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5329 +#: guix-git/doc/guix.texi:5347 msgid "As a channel author, consider bundling authentication material with your channel so that users can authenticate it. @xref{Channel Authentication}, and @ref{Specifying Channel Authorizations}, for info on how to do it." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5334 +#: guix-git/doc/guix.texi:5352 #, no-wrap msgid "subdirectory, channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5338 +#: guix-git/doc/guix.texi:5356 msgid "As a channel author, you may want to keep your channel modules in a sub-directory. If your modules are in the sub-directory @file{guix}, you must add a meta-data file @file{.guix-channel} that contains:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5343 +#: guix-git/doc/guix.texi:5361 #, no-wrap msgid "" "(channel\n" @@ -12187,29 +12274,29 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5348 +#: guix-git/doc/guix.texi:5366 #, no-wrap msgid "dependencies, channels" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5349 +#: guix-git/doc/guix.texi:5367 #, no-wrap msgid "meta-data, channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5354 +#: guix-git/doc/guix.texi:5372 msgid "Channel authors may decide to augment a package collection provided by other channels. They can declare their channel to be dependent on other channels in a meta-data file @file{.guix-channel}, which is to be placed in the root of the channel repository." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5356 +#: guix-git/doc/guix.texi:5374 msgid "The meta-data file should contain a simple S-expression like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5364 +#: guix-git/doc/guix.texi:5382 #, no-wrap msgid "" "(channel\n" @@ -12222,7 +12309,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5376 +#: guix-git/doc/guix.texi:5394 #, no-wrap msgid "" " ;; The 'introduction' bit below is optional: you would\n" @@ -12239,33 +12326,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5382 +#: guix-git/doc/guix.texi:5400 msgid "In the above example this channel is declared to depend on two other channels, which will both be fetched automatically. The modules provided by the channel will be compiled in an environment where the modules of all these declared channels are available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5386 +#: guix-git/doc/guix.texi:5404 msgid "For the sake of reliability and maintainability, you should avoid dependencies on channels that you don't control, and you should aim to keep the number of dependencies to a minimum." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5390 +#: guix-git/doc/guix.texi:5408 #, no-wrap msgid "channel authorizations" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:5404 +#: guix-git/doc/guix.texi:5422 msgid "channel-authorizations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5404 +#: guix-git/doc/guix.texi:5422 msgid "As we saw above, Guix ensures the source code it pulls from channels comes from authorized developers. As a channel author, you need to specify the list of authorized developers in the @file{.guix-authorizations} file in the channel's Git repository. The authentication rule is simple: each commit must be signed by a key listed in the @file{.guix-authorizations} file of its parent commit(s)@footnote{Git commits form a @dfn{directed acyclic graph} (DAG). Each commit can have zero or more parents; ``regular'' commits have one parent and merge commits have two parent commits. Read @uref{https://eagain.net/articles/git-for-computer-scientists/, @i{Git for Computer Scientists}} for a great overview.} The @file{.guix-authorizations} file looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5407 +#: guix-git/doc/guix.texi:5425 #, no-wrap msgid "" ";; Example '.guix-authorizations' file.\n" @@ -12273,7 +12360,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5410 +#: guix-git/doc/guix.texi:5428 #, no-wrap msgid "" "(authorizations\n" @@ -12282,7 +12369,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5417 +#: guix-git/doc/guix.texi:5435 #, no-wrap msgid "" " ((\"AD17 A21E F8AE D8F1 CC02 DBD9 F8AE D8F1 765C 61E3\"\n" @@ -12294,33 +12381,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5421 +#: guix-git/doc/guix.texi:5439 msgid "Each fingerprint is followed by optional key/value pairs, as in the example above. Currently these key/value pairs are ignored." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5426 +#: guix-git/doc/guix.texi:5444 msgid "This authentication rule creates a chicken-and-egg issue: how do we authenticate the first commit? Related to that: how do we deal with channels whose repository history contains unsigned commits and lack @file{.guix-authorizations}? And how do we fork existing channels?" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5427 +#: guix-git/doc/guix.texi:5445 #, no-wrap msgid "channel introduction" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5434 +#: guix-git/doc/guix.texi:5452 msgid "Channel introductions answer these questions by describing the first commit of a channel that should be authenticated. The first time a channel is fetched with @command{guix pull} or @command{guix time-machine}, the command looks up the introductory commit and verifies that it is signed by the specified OpenPGP key. From then on, it authenticates commits according to the rule above." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5441 +#: guix-git/doc/guix.texi:5459 msgid "Additionally, your channel must provide all the OpenPGP keys that were ever mentioned in @file{.guix-authorizations}, stored as @file{.key} files, which can be either binary or ``ASCII-armored''. By default, those @file{.key} files are searched for in the branch named @code{keyring} but you can specify a different branch name in @code{.guix-channel} like so:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5446 +#: guix-git/doc/guix.texi:5464 #, no-wrap msgid "" "(channel\n" @@ -12329,59 +12416,59 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5450 +#: guix-git/doc/guix.texi:5468 msgid "To summarize, as the author of a channel, there are three things you have to do to allow users to authenticate your code:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:5456 +#: guix-git/doc/guix.texi:5474 msgid "Export the OpenPGP keys of past and present committers with @command{gpg --export} and store them in @file{.key} files, by default in a branch named @code{keyring} (we recommend making it an @dfn{orphan branch})." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:5461 +#: guix-git/doc/guix.texi:5479 msgid "Introduce an initial @file{.guix-authorizations} in the channel's repository. Do that in a signed commit (@pxref{Commit Access}, for information on how to sign Git commits.)" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:5467 +#: guix-git/doc/guix.texi:5485 msgid "Advertise the channel introduction, for instance on your channel's web page. The channel introduction, as we saw above, is the commit/key pair---i.e., the commit that introduced @file{.guix-authorizations}, and the fingerprint of the OpenPGP used to sign it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5472 +#: guix-git/doc/guix.texi:5490 msgid "Before pushing to your public Git repository, you can run @command{guix git-authenticate} to verify that you did sign all the commits you are about to push with an authorized key:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5475 +#: guix-git/doc/guix.texi:5493 #, no-wrap msgid "guix git authenticate @var{commit} @var{signer}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5480 +#: guix-git/doc/guix.texi:5498 msgid "where @var{commit} and @var{signer} are your channel introduction. @xref{Invoking guix git authenticate}, for details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5487 +#: guix-git/doc/guix.texi:5505 msgid "Publishing a signed channel requires discipline: any mistake, such as an unsigned commit or a commit signed by an unauthorized key, will prevent users from pulling from your channel---well, that's the whole point of authentication! Pay attention to merges in particular: merge commits are considered authentic if and only if they are signed by a key present in the @file{.guix-authorizations} file of @emph{both} branches." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5491 +#: guix-git/doc/guix.texi:5509 #, no-wrap msgid "primary URL, channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5494 +#: guix-git/doc/guix.texi:5512 msgid "Channel authors can indicate the primary URL of their channel's Git repository in the @file{.guix-channel} file, like so:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5499 +#: guix-git/doc/guix.texi:5517 #, no-wrap msgid "" "(channel\n" @@ -12390,38 +12477,38 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5506 +#: guix-git/doc/guix.texi:5524 msgid "This allows @command{guix pull} to determine whether it is pulling code from a mirror of the channel; when that is the case, it warns the user that the mirror might be stale and displays the primary URL@. That way, users cannot be tricked into fetching code from a stale mirror that does not receive security updates." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5510 +#: guix-git/doc/guix.texi:5528 msgid "This feature only makes sense for authenticated repositories, such as the official @code{guix} channel, for which @command{guix pull} ensures the code it fetches is authentic." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5514 +#: guix-git/doc/guix.texi:5532 #, no-wrap msgid "news, for channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5518 +#: guix-git/doc/guix.texi:5536 msgid "Channel authors may occasionally want to communicate to their users information about important changes in the channel. You'd send them all an email, but that's not convenient." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5523 +#: guix-git/doc/guix.texi:5541 msgid "Instead, channels can provide a @dfn{news file}; when the channel users run @command{guix pull}, that news file is automatically read and @command{guix pull --news} can display the announcements that correspond to the new commits that have been pulled, if any." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5526 +#: guix-git/doc/guix.texi:5544 msgid "To do that, channel authors must first declare the name of the news file in their @file{.guix-channel} file:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5531 +#: guix-git/doc/guix.texi:5549 #, no-wrap msgid "" "(channel\n" @@ -12430,12 +12517,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5535 +#: guix-git/doc/guix.texi:5553 msgid "The news file itself, @file{etc/news.txt} in this example, must look something like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5548 +#: guix-git/doc/guix.texi:5566 #, no-wrap msgid "" "(channel-news\n" @@ -12452,166 +12539,166 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5555 +#: guix-git/doc/guix.texi:5573 msgid "While the news file is using the Scheme syntax, avoid naming it with a @file{.scm} extension or else it will get picked up when building the channel and yield an error since it is not a valid module. Alternatively, you can move the channel module to a subdirectory and store the news file in another directory." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5560 +#: guix-git/doc/guix.texi:5578 msgid "The file consists of a list of @dfn{news entries}. Each entry is associated with a commit or tag: it describes changes made in this commit, possibly in preceding commits as well. Users see entries only the first time they obtain the commit the entry refers to." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5566 +#: guix-git/doc/guix.texi:5584 msgid "The @code{title} field should be a one-line summary while @code{body} can be arbitrarily long, and both can contain Texinfo markup (@pxref{Overview,,, texinfo, GNU Texinfo}). Both the title and body are a list of language tag/message tuples, which allows @command{guix pull} to display news in the language that corresponds to the user's locale." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5572 +#: guix-git/doc/guix.texi:5590 msgid "If you want to translate news using a gettext-based workflow, you can extract translatable strings with @command{xgettext} (@pxref{xgettext Invocation,,, gettext, GNU Gettext Utilities}). For example, assuming you write news entries in English first, the command below creates a PO file containing the strings to translate:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5575 +#: guix-git/doc/guix.texi:5593 #, no-wrap msgid "xgettext -o news.po -l scheme -ken etc/news.txt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5579 +#: guix-git/doc/guix.texi:5597 msgid "To sum up, yes, you could use your channel as a blog. But beware, this is @emph{not quite} what your users might expect." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5584 +#: guix-git/doc/guix.texi:5602 #, no-wrap msgid "software development" msgstr "desenvolvimento de software" #. type: Plain text -#: guix-git/doc/guix.texi:5588 +#: guix-git/doc/guix.texi:5606 msgid "If you are a software developer, Guix provides tools that you should find helpful---independently of the language you're developing in. This is what this chapter is about." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5594 +#: guix-git/doc/guix.texi:5612 msgid "The @command{guix shell} command provides a convenient way to set up one-off software environments, be it for development purposes or to run a command without installing it in your profile. The @command{guix pack} command allows you to create @dfn{application bundles} that can be easily distributed to users who do not run Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:5604 +#: guix-git/doc/guix.texi:5622 #, fuzzy, no-wrap #| msgid "Invoking @command{guix size}" msgid "Invoking @command{guix shell}" msgstr "Invocando @command{guix size}" #. type: cindex -#: guix-git/doc/guix.texi:5606 +#: guix-git/doc/guix.texi:5624 #, no-wrap msgid "reproducible build environments" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5607 +#: guix-git/doc/guix.texi:5625 #, no-wrap msgid "development environments" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:5608 +#: guix-git/doc/guix.texi:5626 #, no-wrap msgid "guix environment" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5609 +#: guix-git/doc/guix.texi:5627 #, no-wrap msgid "environment, package build environment" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5614 +#: guix-git/doc/guix.texi:5632 msgid "The purpose of @command{guix shell} is to make it easy to create one-off software environments, without changing one's profile. It is typically used to create development environments; it is also a convenient way to run applications without ``polluting'' your profile." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5620 +#: guix-git/doc/guix.texi:5638 msgid "The @command{guix shell} command was recently introduced to supersede @command{guix environment} (@pxref{Invoking guix environment}). If you are familiar with @command{guix environment}, you will notice that it is similar but also---we hope!---more convenient." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5626 +#: guix-git/doc/guix.texi:5644 #, no-wrap msgid "guix shell [@var{options}] [@var{package}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5631 +#: guix-git/doc/guix.texi:5649 msgid "The following example creates an environment containing Python and NumPy, building or downloading any missing package, and runs the @command{python3} command in that environment:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5634 +#: guix-git/doc/guix.texi:5652 #, no-wrap msgid "guix shell python python-numpy -- python3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5639 +#: guix-git/doc/guix.texi:5657 msgid "Development environments can be created as in the example below, which spawns an interactive shell containing all the dependencies and environment variables needed to work on Inkscape:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5642 +#: guix-git/doc/guix.texi:5660 #, no-wrap msgid "guix shell --development inkscape\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5648 +#: guix-git/doc/guix.texi:5666 msgid "Exiting the shell places the user back in the original environment before @command{guix shell} was invoked. The next garbage collection (@pxref{Invoking guix gc}) may clean up packages that were installed in the environment and that are no longer used outside of it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5655 +#: guix-git/doc/guix.texi:5673 msgid "As an added convenience, when running from a directory that contains a @file{manifest.scm} or a @file{guix.scm} file (in this order), possibly in a parent directory, @command{guix shell} automatically loads the file---provided the directory is listed in @file{~/.config/guix/shell-authorized-directories}, and only for interactive use:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5658 +#: guix-git/doc/guix.texi:5676 #, fuzzy, no-wrap #| msgid "# guix install hello\n" msgid "guix shell\n" msgstr "# guix install hello\n" #. type: Plain text -#: guix-git/doc/guix.texi:5662 +#: guix-git/doc/guix.texi:5680 msgid "This provides an easy way to define, share, and enter development environments." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5673 +#: guix-git/doc/guix.texi:5691 msgid "By default, the shell session or command runs in an @emph{augmented} environment, where the new packages are added to search path environment variables such as @code{PATH}. You can, instead, choose to create an @emph{isolated} environment containing nothing but the packages you asked for. Passing the @option{--pure} option clears environment variable definitions found in the parent environment@footnote{Be sure to use the @option{--check} option the first time you use @command{guix shell} interactively to make sure the shell does not undo the effect of @option{--pure}.}; passing @option{--container} goes one step further by spawning a @dfn{container} isolated from the rest of the system:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5676 +#: guix-git/doc/guix.texi:5694 #, no-wrap msgid "guix shell --container emacs gcc-toolchain\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5684 +#: guix-git/doc/guix.texi:5702 msgid "The command above spawns an interactive shell in a container where nothing but @code{emacs}, @code{gcc-toolchain}, and their dependencies is available. The container lacks network access and shares no files other than the current working directory with the surrounding environment. This is useful to prevent access to system-wide resources such as @file{/usr/bin} on foreign distros." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5691 +#: guix-git/doc/guix.texi:5709 msgid "This @option{--container} option can also prove useful if you wish to run a security-sensitive application, such as a web browser, in an isolated environment. For example, the command below launches Ungoogled-Chromium in an isolated environment, this time sharing network access with the host and preserving its @code{DISPLAY} environment variable, but without even sharing the current directory:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5695 +#: guix-git/doc/guix.texi:5713 #, no-wrap msgid "" "guix shell --container --network --no-cwd ungoogled-chromium \\\n" @@ -12619,18 +12706,18 @@ msgid "" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:5697 guix-git/doc/guix.texi:6008 +#: guix-git/doc/guix.texi:5715 guix-git/doc/guix.texi:6045 #, no-wrap msgid "GUIX_ENVIRONMENT" msgstr "GUIX_ENVIRONMENT" #. type: Plain text -#: guix-git/doc/guix.texi:5703 +#: guix-git/doc/guix.texi:5721 msgid "@command{guix shell} defines the @env{GUIX_ENVIRONMENT} variable in the shell it spawns; its value is the file name of the profile of this environment. This allows users to, say, define a specific prompt for development environments in their @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5709 guix-git/doc/guix.texi:6020 +#: guix-git/doc/guix.texi:5727 guix-git/doc/guix.texi:6057 #, no-wrap msgid "" "if [ -n \"$GUIX_ENVIRONMENT\" ]\n" @@ -12640,215 +12727,203 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5713 guix-git/doc/guix.texi:6024 +#: guix-git/doc/guix.texi:5731 guix-git/doc/guix.texi:6061 msgid "...@: or to browse the profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5716 guix-git/doc/guix.texi:6027 +#: guix-git/doc/guix.texi:5734 guix-git/doc/guix.texi:6064 #, no-wrap msgid "$ ls \"$GUIX_ENVIRONMENT/bin\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5719 guix-git/doc/guix.texi:6103 +#: guix-git/doc/guix.texi:5737 guix-git/doc/guix.texi:6140 msgid "The available options are summarized below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5721 guix-git/doc/guix.texi:6105 -#: guix-git/doc/guix.texi:11546 +#: guix-git/doc/guix.texi:5739 guix-git/doc/guix.texi:6142 +#: guix-git/doc/guix.texi:11860 #, no-wrap msgid "--check" msgstr "--check" #. type: table -#: guix-git/doc/guix.texi:5726 +#: guix-git/doc/guix.texi:5744 msgid "Set up the environment and check whether the shell would clobber environment variables. It's a good idea to use this option the first time you run @command{guix shell} for an interactive session to make sure your setup is correct." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5730 +#: guix-git/doc/guix.texi:5748 msgid "For example, if the shell modifies the @env{PATH} environment variable, report it since you would get a different environment than what you asked for." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5738 +#: guix-git/doc/guix.texi:5756 msgid "Such problems usually indicate that the shell startup files are unexpectedly modifying those environment variables. For example, if you are using Bash, make sure that environment variables are set or modified in @file{~/.bash_profile} and @emph{not} in @file{~/.bashrc}---the former is sourced only by log-in shells. @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for details on Bash start-up files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5739 +#: guix-git/doc/guix.texi:5757 #, fuzzy, no-wrap #| msgid "Development" msgid "--development" msgstr "Desenvolvimento" #. type: table -#: guix-git/doc/guix.texi:5746 +#: guix-git/doc/guix.texi:5764 msgid "Cause @command{guix shell} to include in the environment the dependencies of the following package rather than the package itself. This can be combined with other packages. For instance, the command below starts an interactive shell containing the build-time dependencies of GNU@tie{}Guile, plus Autoconf, Automake, and Libtool:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5749 +#: guix-git/doc/guix.texi:5767 #, no-wrap msgid "guix shell -D guile autoconf automake libtool\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5751 guix-git/doc/guix.texi:6126 -#: guix-git/doc/guix.texi:6607 guix-git/doc/guix.texi:11421 -#: guix-git/doc/guix.texi:12494 guix-git/doc/guix.texi:12845 -#: guix-git/doc/guix.texi:13442 guix-git/doc/guix.texi:35243 -#: guix-git/doc/guix.texi:37713 +#: guix-git/doc/guix.texi:5769 guix-git/doc/guix.texi:6163 +#: guix-git/doc/guix.texi:6650 guix-git/doc/guix.texi:11735 +#: guix-git/doc/guix.texi:12809 guix-git/doc/guix.texi:13201 +#: guix-git/doc/guix.texi:13799 guix-git/doc/guix.texi:35687 +#: guix-git/doc/guix.texi:38192 #, no-wrap msgid "--expression=@var{expr}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5752 guix-git/doc/guix.texi:6127 -#: guix-git/doc/guix.texi:6608 guix-git/doc/guix.texi:11422 -#: guix-git/doc/guix.texi:12495 guix-git/doc/guix.texi:12846 -#: guix-git/doc/guix.texi:13443 guix-git/doc/guix.texi:35244 -#: guix-git/doc/guix.texi:37714 +#: guix-git/doc/guix.texi:5770 guix-git/doc/guix.texi:6164 +#: guix-git/doc/guix.texi:6651 guix-git/doc/guix.texi:11736 +#: guix-git/doc/guix.texi:12810 guix-git/doc/guix.texi:13202 +#: guix-git/doc/guix.texi:13800 guix-git/doc/guix.texi:35688 +#: guix-git/doc/guix.texi:38193 #, no-wrap msgid "-e @var{expr}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5755 guix-git/doc/guix.texi:6130 +#: guix-git/doc/guix.texi:5773 guix-git/doc/guix.texi:6167 msgid "Create an environment for the package or list of packages that @var{expr} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5757 guix-git/doc/guix.texi:6132 -#: guix-git/doc/guix.texi:12850 +#: guix-git/doc/guix.texi:5775 guix-git/doc/guix.texi:6169 +#: guix-git/doc/guix.texi:13206 msgid "For example, running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5760 +#: guix-git/doc/guix.texi:5778 #, no-wrap msgid "guix shell -D -e '(@@ (gnu packages maths) petsc-openmpi)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5764 guix-git/doc/guix.texi:6139 +#: guix-git/doc/guix.texi:5782 guix-git/doc/guix.texi:6176 msgid "starts a shell with the environment for this specific variant of the PETSc package." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5766 guix-git/doc/guix.texi:6141 +#: guix-git/doc/guix.texi:5784 guix-git/doc/guix.texi:6178 msgid "Running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5769 +#: guix-git/doc/guix.texi:5787 #, no-wrap msgid "guix shell -e '(@@ (gnu) %base-packages)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5772 guix-git/doc/guix.texi:6147 +#: guix-git/doc/guix.texi:5790 guix-git/doc/guix.texi:6184 msgid "starts a shell with all the base system packages available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5775 guix-git/doc/guix.texi:6150 +#: guix-git/doc/guix.texi:5793 guix-git/doc/guix.texi:6187 msgid "The above commands only use the default output of the given packages. To select other outputs, two element tuples can be specified:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5778 +#: guix-git/doc/guix.texi:5796 #, no-wrap msgid "guix shell -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5780 guix-git/doc/guix.texi:11395 +#: guix-git/doc/guix.texi:5798 guix-git/doc/guix.texi:11709 #, no-wrap msgid "--file=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5784 +#: guix-git/doc/guix.texi:5802 msgid "Create an environment containing the package or list of packages that the code within @var{file} evaluates to." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5790 guix-git/doc/guix.texi:6165 +#: guix-git/doc/guix.texi:5808 guix-git/doc/guix.texi:6202 #, no-wrap msgid "@verbatiminclude environment-gdb.scm\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5794 +#: guix-git/doc/guix.texi:5812 msgid "With the file above, you can enter a development environment for GDB by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5797 +#: guix-git/doc/guix.texi:5815 #, no-wrap msgid "guix shell -D -f gdb-devel.scm\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5804 guix-git/doc/guix.texi:6172 +#: guix-git/doc/guix.texi:5822 guix-git/doc/guix.texi:6209 msgid "Create an environment for the packages contained in the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5808 guix-git/doc/guix.texi:6176 +#: guix-git/doc/guix.texi:5826 guix-git/doc/guix.texi:6213 msgid "This is similar to the same-named option in @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) and uses the same manifest files." msgstr "" -#. type: item -#: guix-git/doc/guix.texi:5809 -#, fuzzy, no-wrap -#| msgid "build-check" -msgid "--rebuild-cache" -msgstr "build-check" - -#. type: table -#: guix-git/doc/guix.texi:5814 -msgid "When using @option{--manifest}, @option{--file}, or when invoked without arguments, @command{guix shell} caches the environment so that subsequent uses are instantaneous. The cache is invalidated anytime the file is modified." -msgstr "" - #. type: table -#: guix-git/doc/guix.texi:5819 -msgid "The @option{--rebuild-cache} forces the cached environment to be refreshed even if the file has not changed. This is useful if the @command{guix.scm} or @command{manifest.scm} has external dependencies, or if its behavior depends, say, on environment variables." +#: guix-git/doc/guix.texi:5832 guix-git/doc/guix.texi:6245 +msgid "Create an environment containing the packages installed in @var{profile}. Use @command{guix package} (@pxref{Invoking guix package}) to create and manage profiles." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5820 guix-git/doc/guix.texi:6203 +#: guix-git/doc/guix.texi:5833 guix-git/doc/guix.texi:6246 #, no-wrap msgid "--pure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5824 guix-git/doc/guix.texi:6207 +#: guix-git/doc/guix.texi:5837 guix-git/doc/guix.texi:6250 msgid "Unset existing environment variables when building the new environment, except those specified with @option{--preserve} (see below). This has the effect of creating an environment in which search paths only contain package inputs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5825 guix-git/doc/guix.texi:6208 +#: guix-git/doc/guix.texi:5838 guix-git/doc/guix.texi:6251 #, no-wrap msgid "--preserve=@var{regexp}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5826 guix-git/doc/guix.texi:6209 +#: guix-git/doc/guix.texi:5839 guix-git/doc/guix.texi:6252 #, no-wrap msgid "-E @var{regexp}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5831 guix-git/doc/guix.texi:6214 +#: guix-git/doc/guix.texi:5844 guix-git/doc/guix.texi:6257 msgid "When used alongside @option{--pure}, preserve the environment variables matching @var{regexp}---in other words, put them on a ``white list'' of environment variables that must be preserved. This option can be repeated several times." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5835 +#: guix-git/doc/guix.texi:5848 #, no-wrap msgid "" "guix shell --pure --preserve=^SLURM openmpi @dots{} \\\n" @@ -12856,116 +12931,116 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5841 guix-git/doc/guix.texi:6224 +#: guix-git/doc/guix.texi:5854 guix-git/doc/guix.texi:6267 msgid "This example runs @command{mpirun} in a context where the only environment variables defined are @env{PATH}, environment variables whose name starts with @samp{SLURM}, as well as the usual ``precious'' variables (@env{HOME}, @env{USER}, etc.)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5842 guix-git/doc/guix.texi:6225 +#: guix-git/doc/guix.texi:5855 guix-git/doc/guix.texi:6268 #, no-wrap msgid "--search-paths" msgstr "--search-paths" #. type: table -#: guix-git/doc/guix.texi:5845 guix-git/doc/guix.texi:6228 +#: guix-git/doc/guix.texi:5858 guix-git/doc/guix.texi:6271 msgid "Display the environment variable definitions that make up the environment." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5849 guix-git/doc/guix.texi:6232 +#: guix-git/doc/guix.texi:5862 guix-git/doc/guix.texi:6275 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5850 guix-git/doc/guix.texi:6233 +#: guix-git/doc/guix.texi:5863 guix-git/doc/guix.texi:6276 #, no-wrap msgid "--container" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5851 guix-git/doc/guix.texi:6234 +#: guix-git/doc/guix.texi:5864 guix-git/doc/guix.texi:6277 #, no-wrap msgid "-C" msgstr "-C" #. type: item -#: guix-git/doc/guix.texi:5852 guix-git/doc/guix.texi:6069 -#: guix-git/doc/guix.texi:6235 guix-git/doc/guix.texi:13998 -#: guix-git/doc/guix.texi:35211 +#: guix-git/doc/guix.texi:5865 guix-git/doc/guix.texi:6106 +#: guix-git/doc/guix.texi:6278 guix-git/doc/guix.texi:14355 +#: guix-git/doc/guix.texi:35655 #, no-wrap msgid "container" msgstr "recipiente" #. type: table -#: guix-git/doc/guix.texi:5858 guix-git/doc/guix.texi:6241 +#: guix-git/doc/guix.texi:5871 guix-git/doc/guix.texi:6284 msgid "Run @var{command} within an isolated container. The current working directory outside the container is mapped inside the container. Additionally, unless overridden with @option{--user}, a dummy home directory is created that matches the current user's home directory, and @file{/etc/passwd} is configured accordingly." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5862 guix-git/doc/guix.texi:6245 +#: guix-git/doc/guix.texi:5875 guix-git/doc/guix.texi:6288 msgid "The spawned process runs as the current user outside the container. Inside the container, it has the same UID and GID as the current user, unless @option{--user} is passed (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5863 guix-git/doc/guix.texi:6246 -#: guix-git/doc/guix.texi:35303 +#: guix-git/doc/guix.texi:5876 guix-git/doc/guix.texi:6289 +#: guix-git/doc/guix.texi:35747 #, no-wrap msgid "--network" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5868 guix-git/doc/guix.texi:6251 +#: guix-git/doc/guix.texi:5881 guix-git/doc/guix.texi:6294 msgid "For containers, share the network namespace with the host system. Containers created without this flag only have access to the loopback device." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5869 guix-git/doc/guix.texi:6252 +#: guix-git/doc/guix.texi:5882 guix-git/doc/guix.texi:6295 #, no-wrap msgid "--link-profile" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5870 guix-git/doc/guix.texi:6253 +#: guix-git/doc/guix.texi:5883 guix-git/doc/guix.texi:6296 #, no-wrap msgid "-P" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5878 +#: guix-git/doc/guix.texi:5891 msgid "For containers, link the environment profile to @file{~/.guix-profile} within the container and set @code{GUIX_ENVIRONMENT} to that. This is equivalent to making @file{~/.guix-profile} a symlink to the actual profile within the container. Linking will fail and abort the environment if the directory already exists, which will certainly be the case if @command{guix shell} was invoked in the user's home directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5884 guix-git/doc/guix.texi:6267 +#: guix-git/doc/guix.texi:5897 guix-git/doc/guix.texi:6310 msgid "Certain packages are configured to look in @file{~/.guix-profile} for configuration files and data;@footnote{For example, the @code{fontconfig} package inspects @file{~/.guix-profile/share/fonts} for additional fonts.} @option{--link-profile} allows these programs to behave as expected within the environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5885 guix-git/doc/guix.texi:6268 -#: guix-git/doc/guix.texi:13575 +#: guix-git/doc/guix.texi:5898 guix-git/doc/guix.texi:6311 +#: guix-git/doc/guix.texi:13932 #, no-wrap msgid "--user=@var{user}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5886 guix-git/doc/guix.texi:6269 -#: guix-git/doc/guix.texi:13576 +#: guix-git/doc/guix.texi:5899 guix-git/doc/guix.texi:6312 +#: guix-git/doc/guix.texi:13933 #, no-wrap msgid "-u @var{user}" msgstr "-u @var{usuário}" #. type: table -#: guix-git/doc/guix.texi:5893 guix-git/doc/guix.texi:6276 +#: guix-git/doc/guix.texi:5906 guix-git/doc/guix.texi:6319 msgid "For containers, use the username @var{user} in place of the current user. The generated @file{/etc/passwd} entry within the container will contain the name @var{user}, the home directory will be @file{/home/@var{user}}, and no user GECOS data will be copied. Furthermore, the UID and GID inside the container are 1000. @var{user} need not exist on the system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5898 guix-git/doc/guix.texi:6281 +#: guix-git/doc/guix.texi:5911 guix-git/doc/guix.texi:6324 msgid "Additionally, any shared or exposed path (see @option{--share} and @option{--expose} respectively) whose target is within the current user's home directory will be remapped relative to @file{/home/USER}; this includes the automatic mapping of the current working directory." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5905 +#: guix-git/doc/guix.texi:5918 #, no-wrap msgid "" "# will expose paths as /home/foo/wd, /home/foo/test, and /home/foo/target\n" @@ -12976,229 +13051,271 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5910 guix-git/doc/guix.texi:6293 +#: guix-git/doc/guix.texi:5923 guix-git/doc/guix.texi:6336 msgid "While this will limit the leaking of user identity through home paths and each of the user fields, this is only one useful component of a broader privacy/anonymity solution---not one in and of itself." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5911 guix-git/doc/guix.texi:6294 +#: guix-git/doc/guix.texi:5924 guix-git/doc/guix.texi:6337 #, no-wrap msgid "--no-cwd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5918 guix-git/doc/guix.texi:6301 +#: guix-git/doc/guix.texi:5931 guix-git/doc/guix.texi:6344 msgid "For containers, the default behavior is to share the current working directory with the isolated container and immediately change to that directory within the container. If this is undesirable, @option{--no-cwd} will cause the current working directory to @emph{not} be automatically shared and will change to the user's home directory within the container instead. See also @option{--user}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5919 guix-git/doc/guix.texi:6302 +#: guix-git/doc/guix.texi:5932 guix-git/doc/guix.texi:6345 #, no-wrap msgid "--expose=@var{source}[=@var{target}]" msgstr "--expose=@var{fonte}[=@var{alvo}]" #. type: itemx -#: guix-git/doc/guix.texi:5920 guix-git/doc/guix.texi:6303 +#: guix-git/doc/guix.texi:5933 guix-git/doc/guix.texi:6346 #, no-wrap msgid "--share=@var{source}[=@var{target}]" msgstr "--share=@var{fonte}[=@var{alvo}]" #. type: table -#: guix-git/doc/guix.texi:5926 guix-git/doc/guix.texi:6309 +#: guix-git/doc/guix.texi:5939 guix-git/doc/guix.texi:6352 msgid "For containers, @option{--expose} (resp. @option{--share}) exposes the file system @var{source} from the host system as the read-only (resp. writable) file system @var{target} within the container. If @var{target} is not specified, @var{source} is used as the target mount point in the container." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5930 guix-git/doc/guix.texi:6313 +#: guix-git/doc/guix.texi:5943 guix-git/doc/guix.texi:6356 msgid "The example below spawns a Guile REPL in a container in which the user's home directory is accessible read-only via the @file{/exchange} directory:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5933 +#: guix-git/doc/guix.texi:5946 #, no-wrap msgid "guix shell --container --expose=$HOME=/exchange guile -- guile\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5935 guix-git/doc/guix.texi:6110 -#: guix-git/doc/guix.texi:6675 guix-git/doc/guix.texi:11575 -#: guix-git/doc/guix.texi:35308 +#: guix-git/doc/guix.texi:5948 +#, fuzzy, no-wrap +#| msgid "build-check" +msgid "--rebuild-cache" +msgstr "build-check" + +#. type: cindex +#: guix-git/doc/guix.texi:5949 +#, no-wrap +msgid "caching, of profiles" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:5950 +#, fuzzy, no-wrap +#| msgid "Invoking @command{guix size}" +msgid "caching, in @command{guix shell}" +msgstr "Invocando @command{guix size}" + +#. type: table +#: guix-git/doc/guix.texi:5956 +msgid "In most cases, @command{guix shell} caches the environment so that subsequent uses are instantaneous. Least-recently used cache entries are periodically removed. The cache is also invalidated, when using @option{--file} or @option{--manifest}, anytime the corresponding file is modified." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:5962 +msgid "The @option{--rebuild-cache} forces the cached environment to be refreshed. This is useful when using @option{--file} or @option{--manifest} and the @command{guix.scm} or @command{manifest.scm} file has external dependencies, or if its behavior depends, say, on environment variables." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:5963 guix-git/doc/guix.texi:6147 +#: guix-git/doc/guix.texi:6718 guix-git/doc/guix.texi:11889 +#: guix-git/doc/guix.texi:35752 #, no-wrap msgid "--root=@var{file}" msgstr "--root=@var{arquivo}" #. type: itemx -#: guix-git/doc/guix.texi:5936 guix-git/doc/guix.texi:6111 -#: guix-git/doc/guix.texi:6676 guix-git/doc/guix.texi:11576 -#: guix-git/doc/guix.texi:35309 +#: guix-git/doc/guix.texi:5964 guix-git/doc/guix.texi:6148 +#: guix-git/doc/guix.texi:6719 guix-git/doc/guix.texi:11890 +#: guix-git/doc/guix.texi:35753 #, no-wrap msgid "-r @var{file}" msgstr "-r @var{arquivo}" #. type: cindex -#: guix-git/doc/guix.texi:5937 guix-git/doc/guix.texi:6112 +#: guix-git/doc/guix.texi:5965 guix-git/doc/guix.texi:6149 #, no-wrap msgid "persistent environment" msgstr "ambiente persistente" #. type: cindex -#: guix-git/doc/guix.texi:5938 guix-git/doc/guix.texi:6113 +#: guix-git/doc/guix.texi:5966 guix-git/doc/guix.texi:6150 #, no-wrap msgid "garbage collector root, for environments" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5941 guix-git/doc/guix.texi:6116 +#: guix-git/doc/guix.texi:5969 guix-git/doc/guix.texi:6153 msgid "Make @var{file} a symlink to the profile for this environment, and register it as a garbage collector root." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5944 guix-git/doc/guix.texi:6119 +#: guix-git/doc/guix.texi:5972 guix-git/doc/guix.texi:6156 msgid "This is useful if you want to protect your environment from garbage collection, to make it ``persistent''." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5950 -msgid "When this option is omitted, the environment is protected from garbage collection only for the duration of the @command{guix shell} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages. @xref{Invoking guix gc}, for more on GC roots." +#: guix-git/doc/guix.texi:5978 +msgid "When this option is omitted, @command{guix shell} caches profiles so that subsequent uses of the same environment are instantaneous---this is comparable to using @option{--root} except that @command{guix shell} takes care of periodically removing the least-recently used garbage collector roots." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:5985 +msgid "In some cases, @command{guix shell} does not cache profiles---e.g., if transformation options such as @option{--with-latest} are used. In those cases, the environment is protected from garbage collection only for the duration of the @command{guix shell} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages." msgstr "" +#. type: table +#: guix-git/doc/guix.texi:5987 +#, fuzzy +#| msgid "@xref{Invoking guix pack}, for more info on this handy tool." +msgid "@xref{Invoking guix gc}, for more on GC roots." +msgstr "@xref{Invocando guix pack}, para mais informações sobre essa ferramenta útil." + #. type: Plain text -#: guix-git/doc/guix.texi:5955 +#: guix-git/doc/guix.texi:5992 msgid "@command{guix shell} also supports all of the common build options that @command{guix build} supports (@pxref{Common Build Options}) as well as package transformation options (@pxref{Package Transformation Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:5957 +#: guix-git/doc/guix.texi:5994 #, no-wrap msgid "Invoking @command{guix environment}" msgstr "Invocando @command{guix environment}" #. type: Plain text -#: guix-git/doc/guix.texi:5961 +#: guix-git/doc/guix.texi:5998 msgid "The purpose of @command{guix environment} is to assist in creating development environments." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5962 +#: guix-git/doc/guix.texi:5999 #, no-wrap msgid "Deprecation warning" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5966 +#: guix-git/doc/guix.texi:6003 msgid "The @command{guix environment} command is deprecated in favor of @command{guix shell}, which performs similar functions but is more convenient to use. @xref{Invoking guix shell}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5971 +#: guix-git/doc/guix.texi:6008 msgid "Being deprecated, @command{guix environment} is slated for eventual removal, but the Guix project is committed to keeping it until May 1st, 2023. Please get in touch with us at @email{guix-devel@@gnu.org} if you would like to discuss it." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5977 +#: guix-git/doc/guix.texi:6014 #, no-wrap msgid "guix environment @var{options} @var{package}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5981 +#: guix-git/doc/guix.texi:6018 msgid "The following example spawns a new shell set up for the development of GNU@tie{}Guile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5984 +#: guix-git/doc/guix.texi:6021 #, no-wrap msgid "guix environment guile\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6001 +#: guix-git/doc/guix.texi:6038 msgid "If the needed dependencies are not built yet, @command{guix environment} automatically builds them. The environment of the new shell is an augmented version of the environment that @command{guix environment} was run in. It contains the necessary search paths for building the given package added to the existing environment variables. To create a ``pure'' environment, in which the original environment variables have been unset, use the @option{--pure} option@footnote{Users sometimes wrongfully augment environment variables such as @env{PATH} in their @file{~/.bashrc} file. As a consequence, when @command{guix environment} launches it, Bash may read @file{~/.bashrc}, thereby introducing ``impurities'' in these environment variables. It is an error to define such environment variables in @file{.bashrc}; instead, they should be defined in @file{.bash_profile}, which is sourced only by log-in shells. @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for details on Bash start-up files.}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6007 +#: guix-git/doc/guix.texi:6044 msgid "Exiting from a Guix environment is the same as exiting from the shell, and will place the user back in the old environment before @command{guix environment} was invoked. The next garbage collection (@pxref{Invoking guix gc}) will clean up packages that were installed from within the environment and are no longer used outside of it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6014 +#: guix-git/doc/guix.texi:6051 msgid "@command{guix environment} defines the @env{GUIX_ENVIRONMENT} variable in the shell it spawns; its value is the file name of the profile of this environment. This allows users to, say, define a specific prompt for development environments in their @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6033 +#: guix-git/doc/guix.texi:6070 msgid "Additionally, more than one package may be specified, in which case the union of the inputs for the given packages are used. For example, the command below spawns a shell where all of the dependencies of both Guile and Emacs are available:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6036 +#: guix-git/doc/guix.texi:6073 #, no-wrap msgid "guix environment guile emacs\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6041 +#: guix-git/doc/guix.texi:6078 msgid "Sometimes an interactive shell session is not desired. An arbitrary command may be invoked by placing the @code{--} token to separate the command from the rest of the arguments:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6044 +#: guix-git/doc/guix.texi:6081 #, no-wrap msgid "guix environment guile -- make -j4\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6050 +#: guix-git/doc/guix.texi:6087 msgid "In other situations, it is more convenient to specify the list of packages needed in the environment. For example, the following command runs @command{python} from an environment containing Python@tie{}3 and NumPy:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6053 +#: guix-git/doc/guix.texi:6090 #, no-wrap msgid "guix environment --ad-hoc python-numpy python -- python3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6064 +#: guix-git/doc/guix.texi:6101 msgid "Furthermore, one might want the dependencies of a package and also some additional packages that are not build-time or runtime dependencies, but are useful when developing nonetheless. Because of this, the @option{--ad-hoc} flag is positional. Packages appearing before @option{--ad-hoc} are interpreted as packages whose dependencies will be added to the environment. Packages appearing after are interpreted as packages that will be added to the environment directly. For example, the following command creates a Guix development environment that additionally includes Git and strace:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6067 +#: guix-git/doc/guix.texi:6104 #, no-wrap msgid "guix environment --pure guix --ad-hoc git strace\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6077 +#: guix-git/doc/guix.texi:6114 msgid "Sometimes it is desirable to isolate the environment as much as possible, for maximal purity and reproducibility. In particular, when using Guix on a host distro that is not Guix System, it is desirable to prevent access to @file{/usr/bin} and other system-wide resources from the development environment. For example, the following command spawns a Guile REPL in a ``container'' where only the store and the current working directory are mounted:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6080 +#: guix-git/doc/guix.texi:6117 #, no-wrap msgid "guix environment --ad-hoc --container guile -- guile\n" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6084 +#: guix-git/doc/guix.texi:6121 msgid "The @option{--container} option requires Linux-libre 3.19 or newer." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6086 +#: guix-git/doc/guix.texi:6123 #, no-wrap msgid "certificates" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6093 +#: guix-git/doc/guix.texi:6130 msgid "Another typical use case for containers is to run security-sensitive applications such as a web browser. To run Eolie, we must expose and share some files and directories; we include @code{nss-certs} and expose @file{/etc/ssl/certs/} for HTTPS authentication; finally we preserve the @env{DISPLAY} environment variable since containerized graphical applications won't display without it." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6100 +#: guix-git/doc/guix.texi:6137 #, no-wrap msgid "" "guix environment --preserve='^DISPLAY$' --container --network \\\n" @@ -13209,89 +13326,89 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6109 +#: guix-git/doc/guix.texi:6146 msgid "Set up the environment and check whether the shell would clobber environment variables. @xref{Invoking guix shell, @option{--check}}, for more info." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6125 +#: guix-git/doc/guix.texi:6162 msgid "When this option is omitted, the environment is protected from garbage collection only for the duration of the @command{guix environment} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages. @xref{Invoking guix gc}, for more on GC roots." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6135 +#: guix-git/doc/guix.texi:6172 #, no-wrap msgid "guix environment -e '(@@ (gnu packages maths) petsc-openmpi)'\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6144 +#: guix-git/doc/guix.texi:6181 #, no-wrap msgid "guix environment --ad-hoc -e '(@@ (gnu) %base-packages)'\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6153 +#: guix-git/doc/guix.texi:6190 #, no-wrap msgid "guix environment --ad-hoc -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6155 +#: guix-git/doc/guix.texi:6192 #, no-wrap msgid "--load=@var{file}" msgstr "--load=@var{arquivo}" #. type: itemx -#: guix-git/doc/guix.texi:6156 +#: guix-git/doc/guix.texi:6193 #, no-wrap msgid "-l @var{file}" msgstr "-l @var{arquivo}" #. type: table -#: guix-git/doc/guix.texi:6159 +#: guix-git/doc/guix.texi:6196 msgid "Create an environment for the package or list of packages that the code within @var{file} evaluates to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6177 +#: guix-git/doc/guix.texi:6214 #, no-wrap msgid "--ad-hoc" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6182 +#: guix-git/doc/guix.texi:6219 msgid "Include all specified packages in the resulting environment, as if an @i{ad hoc} package were defined with them as inputs. This option is useful for quickly creating an environment without having to write a package expression to contain the desired inputs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6184 +#: guix-git/doc/guix.texi:6221 msgid "For instance, the command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6187 +#: guix-git/doc/guix.texi:6224 #, no-wrap msgid "guix environment --ad-hoc guile guile-sdl -- guile\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6191 +#: guix-git/doc/guix.texi:6228 msgid "runs @command{guile} in an environment where Guile and Guile-SDL are available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6196 +#: guix-git/doc/guix.texi:6233 msgid "Note that this example implicitly asks for the default output of @code{guile} and @code{guile-sdl}, but it is possible to ask for a specific output---e.g., @code{glib:bin} asks for the @code{bin} output of @code{glib} (@pxref{Packages with Multiple Outputs})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6202 +#: guix-git/doc/guix.texi:6239 msgid "This option may be composed with the default behavior of @command{guix environment}. Packages appearing before @option{--ad-hoc} are interpreted as packages whose dependencies will be added to the environment, the default behavior. Packages appearing after are interpreted as packages that will be added to the environment directly." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6218 +#: guix-git/doc/guix.texi:6261 #, no-wrap msgid "" "guix environment --pure --preserve=^SLURM --ad-hoc openmpi @dots{} \\\n" @@ -13299,12 +13416,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6261 +#: guix-git/doc/guix.texi:6304 msgid "For containers, link the environment profile to @file{~/.guix-profile} within the container and set @code{GUIX_ENVIRONMENT} to that. This is equivalent to making @file{~/.guix-profile} a symlink to the actual profile within the container. Linking will fail and abort the environment if the directory already exists, which will certainly be the case if @command{guix environment} was invoked in the user's home directory." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6288 +#: guix-git/doc/guix.texi:6331 #, no-wrap msgid "" "# will expose paths as /home/foo/wd, /home/foo/test, and /home/foo/target\n" @@ -13315,68 +13432,68 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6316 +#: guix-git/doc/guix.texi:6359 #, no-wrap msgid "guix environment --container --expose=$HOME=/exchange --ad-hoc guile -- guile\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6324 +#: guix-git/doc/guix.texi:6367 msgid "@command{guix environment} also supports all of the common build options that @command{guix build} supports (@pxref{Common Build Options}) as well as package transformation options (@pxref{Package Transformation Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:6326 +#: guix-git/doc/guix.texi:6369 #, no-wrap msgid "Invoking @command{guix pack}" msgstr "Invocando @command{guix pack}" #. type: Plain text -#: guix-git/doc/guix.texi:6332 +#: guix-git/doc/guix.texi:6375 msgid "Occasionally you want to pass software to people who are not (yet!) lucky enough to be using Guix. You'd tell them to run @command{guix package -i @var{something}}, but that's not possible in this case. This is where @command{guix pack} comes in." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6337 +#: guix-git/doc/guix.texi:6380 msgid "If you are looking for ways to exchange binaries among machines that already run Guix, @pxref{Invoking guix copy}, @ref{Invoking guix publish}, and @ref{Invoking guix archive}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6339 +#: guix-git/doc/guix.texi:6382 #, no-wrap msgid "pack" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6340 +#: guix-git/doc/guix.texi:6383 #, no-wrap msgid "bundle" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6341 +#: guix-git/doc/guix.texi:6384 #, no-wrap msgid "application bundle" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6342 +#: guix-git/doc/guix.texi:6385 #, no-wrap msgid "software bundle" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6351 +#: guix-git/doc/guix.texi:6394 msgid "The @command{guix pack} command creates a shrink-wrapped @dfn{pack} or @dfn{software bundle}: it creates a tarball or some other archive containing the binaries of the software you're interested in, and all its dependencies. The resulting archive can be used on any machine that does not have Guix, and people can run the exact same binaries as those you have with Guix. The pack itself is created in a bit-reproducible fashion, so anyone can verify that it really contains the build results that you pretend to be shipping." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6354 +#: guix-git/doc/guix.texi:6397 msgid "For example, to create a bundle containing Guile, Emacs, Geiser, and all their dependencies, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6359 +#: guix-git/doc/guix.texi:6402 #, no-wrap msgid "" "$ guix pack guile emacs emacs-geiser\n" @@ -13385,62 +13502,62 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6367 +#: guix-git/doc/guix.texi:6410 msgid "The result here is a tarball containing a @file{/gnu/store} directory with all the relevant packages. The resulting tarball contains a @dfn{profile} with the three packages of interest; the profile is the same as would be created by @command{guix package -i}. It is this mechanism that is used to create Guix's own standalone binary tarball (@pxref{Binary Installation})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6372 +#: guix-git/doc/guix.texi:6415 msgid "Users of this pack would have to run @file{/gnu/store/@dots{}-profile/bin/guile} to run Guile, which you may find inconvenient. To work around it, you can create, say, a @file{/opt/gnu/bin} symlink to the profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6375 +#: guix-git/doc/guix.texi:6418 #, fuzzy, no-wrap #| msgid "guix package -i emacs guile emacs-geiser\n" msgid "guix pack -S /opt/gnu/bin=bin guile emacs emacs-geiser\n" msgstr "guix package -i emacs guile emacs-geiser\n" #. type: Plain text -#: guix-git/doc/guix.texi:6379 +#: guix-git/doc/guix.texi:6422 msgid "That way, users can happily type @file{/opt/gnu/bin/guile} and enjoy." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6380 +#: guix-git/doc/guix.texi:6423 #, no-wrap msgid "relocatable binaries, with @command{guix pack}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6388 +#: guix-git/doc/guix.texi:6431 msgid "What if the recipient of your pack does not have root privileges on their machine, and thus cannot unpack it in the root file system? In that case, you will want to use the @option{--relocatable} option (see below). This option produces @dfn{relocatable binaries}, meaning they they can be placed anywhere in the file system hierarchy: in the example above, users can unpack your tarball in their home directory and directly run @file{./opt/gnu/bin/guile}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6389 +#: guix-git/doc/guix.texi:6432 #, no-wrap msgid "Docker, build an image with guix pack" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6392 +#: guix-git/doc/guix.texi:6435 msgid "Alternatively, you can produce a pack in the Docker image format using the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6395 +#: guix-git/doc/guix.texi:6438 #, no-wrap msgid "guix pack -f docker -S /bin=bin guile guile-readline\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6400 +#: guix-git/doc/guix.texi:6443 msgid "The result is a tarball that can be passed to the @command{docker load} command, followed by @code{docker run}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6404 +#: guix-git/doc/guix.texi:6447 #, no-wrap msgid "" "docker load < @var{file}\n" @@ -13448,171 +13565,171 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6411 +#: guix-git/doc/guix.texi:6454 msgid "where @var{file} is the image returned by @var{guix pack}, and @code{guile-guile-readline} is its ``image tag''. See the @uref{https://docs.docker.com/engine/reference/commandline/load/, Docker documentation} for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6412 +#: guix-git/doc/guix.texi:6455 #, no-wrap msgid "Singularity, build an image with guix pack" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6413 +#: guix-git/doc/guix.texi:6456 #, no-wrap msgid "SquashFS, build an image with guix pack" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6416 +#: guix-git/doc/guix.texi:6459 msgid "Yet another option is to produce a SquashFS image with the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6419 +#: guix-git/doc/guix.texi:6462 #, fuzzy, no-wrap #| msgid "guix package -i emacs guile emacs-geiser\n" msgid "guix pack -f squashfs bash guile emacs emacs-geiser\n" msgstr "guix package -i emacs guile emacs-geiser\n" #. type: Plain text -#: guix-git/doc/guix.texi:6427 +#: guix-git/doc/guix.texi:6470 msgid "The result is a SquashFS file system image that can either be mounted or directly be used as a file system container image with the @uref{https://www.sylabs.io/docs/, Singularity container execution environment}, using commands like @command{singularity shell} or @command{singularity exec}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6429 +#: guix-git/doc/guix.texi:6472 msgid "Several command-line options allow you to customize your pack:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6434 +#: guix-git/doc/guix.texi:6477 msgid "Produce a pack in the given @var{format}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6436 +#: guix-git/doc/guix.texi:6479 msgid "The available formats are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6438 +#: guix-git/doc/guix.texi:6481 #, no-wrap msgid "tarball" msgstr "tarball" #. type: table -#: guix-git/doc/guix.texi:6441 +#: guix-git/doc/guix.texi:6484 msgid "This is the default format. It produces a tarball containing all the specified binaries and symlinks." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6442 +#: guix-git/doc/guix.texi:6485 #, no-wrap msgid "docker" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6448 +#: guix-git/doc/guix.texi:6491 msgid "This produces a tarball that follows the @uref{https://github.com/docker/docker/blob/master/image/spec/v1.2.md, Docker Image Specification}. The ``repository name'' as it appears in the output of the @command{docker images} command is computed from package names passed on the command line or in the manifest file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6449 +#: guix-git/doc/guix.texi:6492 #, no-wrap msgid "squashfs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6453 +#: guix-git/doc/guix.texi:6496 msgid "This produces a SquashFS image containing all the specified binaries and symlinks, as well as empty mount points for virtual file systems like procfs." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6459 +#: guix-git/doc/guix.texi:6502 msgid "Singularity @emph{requires} you to provide @file{/bin/sh} in the image. For that reason, @command{guix pack -f squashfs} always implies @code{-S /bin=bin}. Thus, your @command{guix pack} invocation must always start with something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6462 +#: guix-git/doc/guix.texi:6505 #, no-wrap msgid "guix pack -f squashfs bash @dots{}\n" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6467 +#: guix-git/doc/guix.texi:6510 msgid "If you forget the @code{bash} (or similar) package, @command{singularity run} and @command{singularity exec} will fail with an unhelpful ``no such file or directory'' message." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6469 +#: guix-git/doc/guix.texi:6512 #, fuzzy, no-wrap #| msgid "debug" msgid "deb" msgstr "depuração" #. type: table -#: guix-git/doc/guix.texi:6477 +#: guix-git/doc/guix.texi:6520 msgid "This produces a Debian archive (a package with the @samp{.deb} file extension) containing all the specified binaries and symbolic links, that can be installed on top of any dpkg-based GNU(/Linux) distribution. Advanced options can be revealed via the @option{--help-deb-format} option. They allow embedding control files for more fine-grained control, such as activating specific triggers or providing a maintainer configure script to run arbitrary setup code upon installation." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6480 +#: guix-git/doc/guix.texi:6523 #, no-wrap msgid "guix pack -f deb -C xz -S /usr/bin/hello=bin/hello hello\n" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6487 +#: guix-git/doc/guix.texi:6530 msgid "Because archives produced with @command{guix pack} contain a collection of store items and because each @command{dpkg} package must not have conflicting files, in practice that means you likely won't be able to install more than one such archive on a given system." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6495 +#: guix-git/doc/guix.texi:6538 msgid "@command{dpkg} will assume ownership of any files contained in the pack that it does @emph{not} know about. It is unwise to install Guix-produced @samp{.deb} files on a system where @file{/gnu/store} is shared by other software, such as a Guix installation or other, non-deb packs." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6499 +#: guix-git/doc/guix.texi:6542 #, no-wrap msgid "relocatable binaries" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6500 +#: guix-git/doc/guix.texi:6543 #, no-wrap msgid "--relocatable" msgstr "--relocatable" #. type: table -#: guix-git/doc/guix.texi:6504 +#: guix-git/doc/guix.texi:6547 msgid "Produce @dfn{relocatable binaries}---i.e., binaries that can be placed anywhere in the file system hierarchy and run from there." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6512 +#: guix-git/doc/guix.texi:6555 msgid "When this option is passed once, the resulting binaries require support for @dfn{user namespaces} in the kernel Linux; when passed @emph{twice}@footnote{Here's a trick to memorize it: @code{-RR}, which adds PRoot support, can be thought of as the abbreviation of ``Really Relocatable''. Neat, isn't it?}, relocatable binaries fall to back to other techniques if user namespaces are unavailable, and essentially work anywhere---see below for the implications." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6514 +#: guix-git/doc/guix.texi:6557 msgid "For example, if you create a pack containing Bash with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6517 +#: guix-git/doc/guix.texi:6560 #, no-wrap msgid "guix pack -RR -S /mybin=bin bash\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6522 +#: guix-git/doc/guix.texi:6565 msgid "...@: you can copy that pack to a machine that lacks Guix, and from your home directory as a normal user, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6526 +#: guix-git/doc/guix.texi:6569 #, no-wrap msgid "" "tar xf pack.tar.gz\n" @@ -13620,121 +13737,121 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6534 +#: guix-git/doc/guix.texi:6577 msgid "In that shell, if you type @code{ls /gnu/store}, you'll notice that @file{/gnu/store} shows up and contains all the dependencies of @code{bash}, even though the machine actually lacks @file{/gnu/store} altogether! That is probably the simplest way to deploy Guix-built software on a non-Guix machine." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6540 +#: guix-git/doc/guix.texi:6583 msgid "By default, relocatable binaries rely on the @dfn{user namespace} feature of the kernel Linux, which allows unprivileged users to mount or change root. Old versions of Linux did not support it, and some GNU/Linux distributions turn it off." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6546 +#: guix-git/doc/guix.texi:6589 msgid "To produce relocatable binaries that work even in the absence of user namespaces, pass @option{--relocatable} or @option{-R} @emph{twice}. In that case, binaries will try user namespace support and fall back to another @dfn{execution engine} if user namespaces are not supported. The following execution engines are supported:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6548 guix-git/doc/guix.texi:17371 +#: guix-git/doc/guix.texi:6591 guix-git/doc/guix.texi:17733 #, no-wrap msgid "default" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6551 +#: guix-git/doc/guix.texi:6594 msgid "Try user namespaces and fall back to PRoot if user namespaces are not supported (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6552 +#: guix-git/doc/guix.texi:6595 #, no-wrap msgid "performance" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6555 +#: guix-git/doc/guix.texi:6598 msgid "Try user namespaces and fall back to Fakechroot if user namespaces are not supported (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6556 +#: guix-git/doc/guix.texi:6599 #, no-wrap msgid "userns" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6559 +#: guix-git/doc/guix.texi:6602 msgid "Run the program through user namespaces and abort if they are not supported." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6560 +#: guix-git/doc/guix.texi:6603 #, no-wrap msgid "proot" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6567 +#: guix-git/doc/guix.texi:6610 msgid "Run through PRoot. The @uref{https://proot-me.github.io/, PRoot} program provides the necessary support for file system virtualization. It achieves that by using the @code{ptrace} system call on the running program. This approach has the advantage to work without requiring special kernel support, but it incurs run-time overhead every time a system call is made." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6568 +#: guix-git/doc/guix.texi:6611 #, no-wrap msgid "fakechroot" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6576 +#: guix-git/doc/guix.texi:6619 msgid "Run through Fakechroot. @uref{https://github.com/dex4er/fakechroot/, Fakechroot} virtualizes file system accesses by intercepting calls to C library functions such as @code{open}, @code{stat}, @code{exec}, and so on. Unlike PRoot, it incurs very little overhead. However, it does not always work: for example, some file system accesses made from within the C library are not intercepted, and file system accesses made @i{via} direct syscalls are not intercepted either, leading to erratic behavior." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:6578 +#: guix-git/doc/guix.texi:6621 #, no-wrap msgid "GUIX_EXECUTION_ENGINE" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6582 +#: guix-git/doc/guix.texi:6625 msgid "When running a wrapped program, you can explicitly request one of the execution engines listed above by setting the @env{GUIX_EXECUTION_ENGINE} environment variable accordingly." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6584 +#: guix-git/doc/guix.texi:6627 #, no-wrap msgid "entry point, for Docker images" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6585 +#: guix-git/doc/guix.texi:6628 #, no-wrap msgid "--entry-point=@var{command}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6590 +#: guix-git/doc/guix.texi:6633 msgid "Use @var{command} as the @dfn{entry point} of the resulting pack, if the pack format supports it---currently @code{docker} and @code{squashfs} (Singularity) support it. @var{command} must be relative to the profile contained in the pack." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6594 +#: guix-git/doc/guix.texi:6637 msgid "The entry point specifies the command that tools like @code{docker run} or @code{singularity run} automatically start by default. For example, you can do:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6597 +#: guix-git/doc/guix.texi:6640 #, no-wrap msgid "guix pack -f docker --entry-point=bin/guile guile\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6601 +#: guix-git/doc/guix.texi:6644 msgid "The resulting pack can easily be loaded and @code{docker run} with no extra arguments will spawn @code{bin/guile}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6605 +#: guix-git/doc/guix.texi:6648 #, no-wrap msgid "" "docker load -i pack.tar.gz\n" @@ -13742,398 +13859,398 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6610 guix-git/doc/guix.texi:12497 -#: guix-git/doc/guix.texi:13445 +#: guix-git/doc/guix.texi:6653 guix-git/doc/guix.texi:12812 +#: guix-git/doc/guix.texi:13802 msgid "Consider the package @var{expr} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6614 +#: guix-git/doc/guix.texi:6657 msgid "This has the same purpose as the same-named option in @command{guix build} (@pxref{Additional Build Options, @option{--expression} in @command{guix build}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6620 +#: guix-git/doc/guix.texi:6663 msgid "Use the packages contained in the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6628 +#: guix-git/doc/guix.texi:6671 msgid "This has a similar purpose as the same-named option in @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) and uses the same manifest files. It allows you to define a collection of packages once and use it both for creating profiles and for creating archives for use on machines that do not have Guix installed. Note that you can specify @emph{either} a manifest file @emph{or} a list of packages, but not both." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6634 guix-git/doc/guix.texi:11539 +#: guix-git/doc/guix.texi:6677 guix-git/doc/guix.texi:11853 #, no-wrap msgid "--target=@var{triplet}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6635 guix-git/doc/guix.texi:7080 -#: guix-git/doc/guix.texi:11540 +#: guix-git/doc/guix.texi:6678 guix-git/doc/guix.texi:7124 +#: guix-git/doc/guix.texi:11854 #, no-wrap msgid "cross-compilation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6639 +#: guix-git/doc/guix.texi:6682 msgid "Cross-build for @var{triplet}, which must be a valid GNU triplet, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying target triplets, GNU configuration triplets,, autoconf, Autoconf})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6640 +#: guix-git/doc/guix.texi:6683 #, no-wrap msgid "--compression=@var{tool}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6641 +#: guix-git/doc/guix.texi:6684 #, no-wrap msgid "-C @var{tool}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6645 +#: guix-git/doc/guix.texi:6688 msgid "Compress the resulting tarball using @var{tool}---one of @code{gzip}, @code{zstd}, @code{bzip2}, @code{xz}, @code{lzip}, or @code{none} for no compression." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6646 +#: guix-git/doc/guix.texi:6689 #, no-wrap msgid "--symlink=@var{spec}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6647 +#: guix-git/doc/guix.texi:6690 #, no-wrap msgid "-S @var{spec}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6650 +#: guix-git/doc/guix.texi:6693 msgid "Add the symlinks specified by @var{spec} to the pack. This option can appear several times." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6654 +#: guix-git/doc/guix.texi:6697 msgid "@var{spec} has the form @code{@var{source}=@var{target}}, where @var{source} is the symlink that will be created and @var{target} is the symlink target." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6657 +#: guix-git/doc/guix.texi:6700 msgid "For instance, @code{-S /opt/gnu/bin=bin} creates a @file{/opt/gnu/bin} symlink pointing to the @file{bin} sub-directory of the profile." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6658 guix-git/doc/guix.texi:35262 +#: guix-git/doc/guix.texi:6701 guix-git/doc/guix.texi:35706 #, no-wrap msgid "--save-provenance" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6662 +#: guix-git/doc/guix.texi:6705 msgid "Save provenance information for the packages passed on the command line. Provenance information includes the URL and commit of the channels in use (@pxref{Channels})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6668 +#: guix-git/doc/guix.texi:6711 msgid "Provenance information is saved in the @file{/gnu/store/@dots{}-profile/manifest} file in the pack, along with the usual package metadata---the name and version of each package, their propagated inputs, and so on. It is useful information to the recipient of the pack, who then knows how the pack was (supposedly) obtained." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6674 +#: guix-git/doc/guix.texi:6717 msgid "This option is not enabled by default because, like timestamps, provenance information contributes nothing to the build process. In other words, there is an infinity of channel URLs and commit IDs that can lead to the same pack. Recording such ``silent'' metadata in the output thus potentially breaks the source-to-binary bitwise reproducibility property." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6677 +#: guix-git/doc/guix.texi:6720 #, no-wrap msgid "garbage collector root, for packs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6680 +#: guix-git/doc/guix.texi:6723 msgid "Make @var{file} a symlink to the resulting pack, and register it as a garbage collector root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6681 +#: guix-git/doc/guix.texi:6724 #, no-wrap msgid "--localstatedir" msgstr "--localstatedir" #. type: itemx -#: guix-git/doc/guix.texi:6682 +#: guix-git/doc/guix.texi:6725 #, no-wrap msgid "--profile-name=@var{name}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6687 +#: guix-git/doc/guix.texi:6730 msgid "Include the ``local state directory'', @file{/var/guix}, in the resulting pack, and notably the @file{/var/guix/profiles/per-user/root/@var{name}} profile---by default @var{name} is @code{guix-profile}, which corresponds to @file{~root/.guix-profile}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6693 +#: guix-git/doc/guix.texi:6736 msgid "@file{/var/guix} contains the store database (@pxref{The Store}) as well as garbage-collector roots (@pxref{Invoking guix gc}). Providing it in the pack means that the store is ``complete'' and manageable by Guix; not providing it pack means that the store is ``dead'': items cannot be added to it or removed from it after extraction of the pack." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6696 +#: guix-git/doc/guix.texi:6739 msgid "One use case for this is the Guix self-contained binary tarball (@pxref{Binary Installation})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6697 guix-git/doc/guix.texi:35256 +#: guix-git/doc/guix.texi:6740 guix-git/doc/guix.texi:35700 #, no-wrap msgid "--derivation" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6698 guix-git/doc/guix.texi:11571 -#: guix-git/doc/guix.texi:35257 +#: guix-git/doc/guix.texi:6741 guix-git/doc/guix.texi:11885 +#: guix-git/doc/guix.texi:35701 #, no-wrap msgid "-d" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6700 +#: guix-git/doc/guix.texi:6743 msgid "Print the name of the derivation that builds the pack." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6704 +#: guix-git/doc/guix.texi:6747 msgid "Use the bootstrap binaries to build the pack. This option is only useful to Guix developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6709 +#: guix-git/doc/guix.texi:6752 msgid "In addition, @command{guix pack} supports all the common build options (@pxref{Common Build Options}) and all the package transformation options (@pxref{Package Transformation Options})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6714 +#: guix-git/doc/guix.texi:6757 #, no-wrap msgid "GCC" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6715 +#: guix-git/doc/guix.texi:6758 #, no-wrap msgid "ld-wrapper" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6716 +#: guix-git/doc/guix.texi:6759 #, no-wrap msgid "linker wrapper" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6717 +#: guix-git/doc/guix.texi:6760 #, no-wrap msgid "toolchain, for C development" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6718 +#: guix-git/doc/guix.texi:6761 #, no-wrap msgid "toolchain, for Fortran development" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6725 +#: guix-git/doc/guix.texi:6768 msgid "If you need a complete toolchain for compiling and linking C or C++ source code, use the @code{gcc-toolchain} package. This package provides a complete GCC toolchain for C/C++ development, including GCC itself, the GNU C Library (headers and binaries, plus debugging symbols in the @code{debug} output), Binutils, and a linker wrapper." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6731 +#: guix-git/doc/guix.texi:6774 msgid "The wrapper's purpose is to inspect the @code{-L} and @code{-l} switches passed to the linker, add corresponding @code{-rpath} arguments, and invoke the actual linker with this new set of arguments. You can instruct the wrapper to refuse to link against libraries not in the store by setting the @env{GUIX_LD_WRAPPER_ALLOW_IMPURITIES} environment variable to @code{no}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6735 +#: guix-git/doc/guix.texi:6778 msgid "The package @code{gfortran-toolchain} provides a complete GCC toolchain for Fortran development. For other languages, please use @samp{guix search gcc toolchain} (@pxref{guix-search,, Invoking guix package})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:6738 +#: guix-git/doc/guix.texi:6781 #, no-wrap msgid "Invoking @command{guix git authenticate}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6746 +#: guix-git/doc/guix.texi:6789 msgid "The @command{guix git authenticate} command authenticates a Git checkout following the same rule as for channels (@pxref{channel-authentication, channel authentication}). That is, starting from a given commit, it ensures that all subsequent commits are signed by an OpenPGP key whose fingerprint appears in the @file{.guix-authorizations} file of its parent commit(s)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6751 +#: guix-git/doc/guix.texi:6794 msgid "You will find this command useful if you maintain a channel. But in fact, this authentication mechanism is useful in a broader context, so you might want to use it for Git repositories that have nothing to do with Guix." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6756 +#: guix-git/doc/guix.texi:6799 #, no-wrap msgid "guix git authenticate @var{commit} @var{signer} [@var{options}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6765 +#: guix-git/doc/guix.texi:6808 msgid "By default, this command authenticates the Git checkout in the current directory; it outputs nothing and exits with exit code zero on success and non-zero on failure. @var{commit} above denotes the first commit where authentication takes place, and @var{signer} is the OpenPGP fingerprint of public key used to sign @var{commit}. Together, they form a ``channel introduction'' (@pxref{channel-authentication, channel introduction}). The options below allow you to fine-tune the process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6767 +#: guix-git/doc/guix.texi:6810 #, no-wrap msgid "--repository=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6768 +#: guix-git/doc/guix.texi:6811 #, no-wrap msgid "-r @var{directory}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6771 +#: guix-git/doc/guix.texi:6814 msgid "Open the Git repository in @var{directory} instead of the current directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6772 +#: guix-git/doc/guix.texi:6815 #, no-wrap msgid "--keyring=@var{reference}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6773 +#: guix-git/doc/guix.texi:6816 #, no-wrap msgid "-k @var{reference}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6779 +#: guix-git/doc/guix.texi:6822 msgid "Load OpenPGP keyring from @var{reference}, the reference of a branch such as @code{origin/keyring} or @code{my-keyring}. The branch must contain OpenPGP public keys in @file{.key} files, either in binary form or ``ASCII-armored''. By default the keyring is loaded from the branch named @code{keyring}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6780 +#: guix-git/doc/guix.texi:6823 #, no-wrap msgid "--stats" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6782 +#: guix-git/doc/guix.texi:6825 msgid "Display commit signing statistics upon completion." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6783 +#: guix-git/doc/guix.texi:6826 #, no-wrap msgid "--cache-key=@var{key}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6787 +#: guix-git/doc/guix.texi:6830 msgid "Previously-authenticated commits are cached in a file under @file{~/.cache/guix/authentication}. This option forces the cache to be stored in file @var{key} in that directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6788 +#: guix-git/doc/guix.texi:6831 #, no-wrap msgid "--historical-authorizations=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6795 +#: guix-git/doc/guix.texi:6838 msgid "By default, any commit whose parent commit(s) lack the @file{.guix-authorizations} file is considered inauthentic. In contrast, this option considers the authorizations in @var{file} for any commit that lacks @file{.guix-authorizations}. The format of @var{file} is the same as that of @file{.guix-authorizations} (@pxref{channel-authorizations, @file{.guix-authorizations} format})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6808 +#: guix-git/doc/guix.texi:6851 msgid "GNU Guix provides several Scheme programming interfaces (APIs) to define, build, and query packages. The first interface allows users to write high-level package definitions. These definitions refer to familiar packaging concepts, such as the name and version of a package, its build system, and its dependencies. These definitions can then be turned into concrete build actions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6814 +#: guix-git/doc/guix.texi:6857 msgid "Build actions are performed by the Guix daemon, on behalf of users. In a standard setup, the daemon has write access to the store---the @file{/gnu/store} directory---whereas users do not. The recommended setup also has the daemon perform builds in chroots, under specific build users, to minimize interference with the rest of the system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6823 +#: guix-git/doc/guix.texi:6866 msgid "Lower-level APIs are available to interact with the daemon and the store. To instruct the daemon to perform a build action, users actually provide it with a @dfn{derivation}. A derivation is a low-level representation of the build actions to be taken, and the environment in which they should occur---derivations are to package definitions what assembly is to C programs. The term ``derivation'' comes from the fact that build results @emph{derive} from them." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6826 +#: guix-git/doc/guix.texi:6869 msgid "This chapter describes all these APIs in turn, starting from high-level package definitions." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:6883 msgid "Programming Guix in Guile" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6855 +#: guix-git/doc/guix.texi:6899 msgid "From a programming viewpoint, the package definitions of the GNU distribution are provided by Guile modules in the @code{(gnu packages @dots{})} name space@footnote{Note that packages under the @code{(gnu packages @dots{})} module name space are not necessarily ``GNU packages''. This module naming scheme follows the usual Guile module naming convention: @code{gnu} means that these modules are distributed as part of the GNU system, and @code{packages} identifies modules that define packages.} (@pxref{Modules, Guile modules,, guile, GNU Guile Reference Manual}). For instance, the @code{(gnu packages emacs)} module exports a variable named @code{emacs}, which is bound to a @code{} object (@pxref{Defining Packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6862 +#: guix-git/doc/guix.texi:6906 msgid "The @code{(gnu packages @dots{})} module name space is automatically scanned for packages by the command-line tools. For instance, when running @code{guix install emacs}, all the @code{(gnu packages @dots{})} modules are scanned until one that exports a package object whose name is @code{emacs} is found. This package search facility is implemented in the @code{(gnu packages)} module." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6864 +#: guix-git/doc/guix.texi:6908 #, no-wrap msgid "package module search path" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6873 +#: guix-git/doc/guix.texi:6917 msgid "Users can store package definitions in modules with different names---e.g., @code{(my-packages emacs)}@footnote{Note that the file name and module name must match. For instance, the @code{(my-packages emacs)} module must be stored in a @file{my-packages/emacs.scm} file relative to the load path specified with @option{--load-path} or @env{GUIX_PACKAGE_PATH}. @xref{Modules and the File System,,, guile, GNU Guile Reference Manual}, for details.}. There are two ways to make these package definitions visible to the user interfaces:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:6880 +#: guix-git/doc/guix.texi:6924 msgid "By adding the directory containing your package modules to the search path with the @code{-L} flag of @command{guix package} and other commands (@pxref{Common Build Options}), or by setting the @env{GUIX_PACKAGE_PATH} environment variable described below." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:6886 +#: guix-git/doc/guix.texi:6930 msgid "By defining a @dfn{channel} and configuring @command{guix pull} so that it pulls from it. A channel is essentially a Git repository containing package modules. @xref{Channels}, for more information on how to define and use channels." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6889 +#: guix-git/doc/guix.texi:6933 msgid "@env{GUIX_PACKAGE_PATH} works similarly to other search path variables:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:6890 +#: guix-git/doc/guix.texi:6934 #, no-wrap msgid "{Environment Variable} GUIX_PACKAGE_PATH" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:6894 +#: guix-git/doc/guix.texi:6938 msgid "This is a colon-separated list of directories to search for additional package modules. Directories listed in this variable take precedence over the own modules of the distribution." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6902 +#: guix-git/doc/guix.texi:6946 msgid "The distribution is fully @dfn{bootstrapped} and @dfn{self-contained}: each package is built based solely on other packages in the distribution. The root of this dependency graph is a small set of @dfn{bootstrap binaries}, provided by the @code{(gnu packages bootstrap)} module. For more information on bootstrapping, @pxref{Bootstrapping}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6910 +#: guix-git/doc/guix.texi:6954 msgid "The high-level interface to package definitions is implemented in the @code{(guix packages)} and @code{(guix build-system)} modules. As an example, the package definition, or @dfn{recipe}, for the GNU Hello package looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:6918 +#: guix-git/doc/guix.texi:6962 #, no-wrap msgid "" "(define-module (gnu packages hello)\n" @@ -14146,7 +14263,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:6937 +#: guix-git/doc/guix.texi:6981 #, no-wrap msgid "" "(define-public hello\n" @@ -14170,327 +14287,327 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6947 +#: guix-git/doc/guix.texi:6991 msgid "Without being a Scheme expert, the reader may have guessed the meaning of the various fields here. This expression binds the variable @code{hello} to a @code{} object, which is essentially a record (@pxref{SRFI-9, Scheme records,, guile, GNU Guile Reference Manual}). This package object can be inspected using procedures found in the @code{(guix packages)} module; for instance, @code{(package-name hello)} returns---surprise!---@code{\"hello\"}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6951 +#: guix-git/doc/guix.texi:6995 msgid "With luck, you may be able to import part or all of the definition of the package you are interested in from another repository, using the @code{guix import} command (@pxref{Invoking guix import})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6957 +#: guix-git/doc/guix.texi:7001 msgid "In the example above, @code{hello} is defined in a module of its own, @code{(gnu packages hello)}. Technically, this is not strictly necessary, but it is convenient to do so: all the packages defined in modules under @code{(gnu packages @dots{})} are automatically known to the command-line tools (@pxref{Package Modules})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6959 +#: guix-git/doc/guix.texi:7003 msgid "There are a few points worth noting in the above package definition:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6966 +#: guix-git/doc/guix.texi:7010 msgid "The @code{source} field of the package is an @code{} object (@pxref{origin Reference}, for the complete reference). Here, the @code{url-fetch} method from @code{(guix download)} is used, meaning that the source is a file to be downloaded over FTP or HTTP." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6969 +#: guix-git/doc/guix.texi:7013 msgid "The @code{mirror://gnu} prefix instructs @code{url-fetch} to use one of the GNU mirrors defined in @code{(guix download)}." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6976 +#: guix-git/doc/guix.texi:7020 msgid "The @code{sha256} field specifies the expected SHA256 hash of the file being downloaded. It is mandatory, and allows Guix to check the integrity of the file. The @code{(base32 @dots{})} form introduces the base32 representation of the hash. You can obtain this information with @code{guix download} (@pxref{Invoking guix download}) and @code{guix hash} (@pxref{Invoking guix hash})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6977 +#: guix-git/doc/guix.texi:7021 #, no-wrap msgid "patches" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6981 +#: guix-git/doc/guix.texi:7025 msgid "When needed, the @code{origin} form can also have a @code{patches} field listing patches to be applied, and a @code{snippet} field giving a Scheme expression to modify the source code." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6983 +#: guix-git/doc/guix.texi:7027 #, no-wrap msgid "GNU Build System" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6989 +#: guix-git/doc/guix.texi:7033 msgid "The @code{build-system} field specifies the procedure to build the package (@pxref{Build Systems}). Here, @code{gnu-build-system} represents the familiar GNU Build System, where packages may be configured, built, and installed with the usual @code{./configure && make && make check && make install} command sequence." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6993 +#: guix-git/doc/guix.texi:7037 msgid "When you start packaging non-trivial software, you may need tools to manipulate those build phases, manipulate files, and so on. @xref{Build Utilities}, for more on this." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6999 +#: guix-git/doc/guix.texi:7043 msgid "The @code{arguments} field specifies options for the build system (@pxref{Build Systems}). Here it is interpreted by @code{gnu-build-system} as a request run @file{configure} with the @option{--enable-silent-rules} flag." msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7000 guix-git/doc/guix.texi:7003 +#: guix-git/doc/guix.texi:7044 guix-git/doc/guix.texi:7047 #, no-wrap msgid "quote" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7001 +#: guix-git/doc/guix.texi:7045 #, no-wrap msgid "quoting" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7002 +#: guix-git/doc/guix.texi:7046 #, no-wrap msgid "'" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7004 +#: guix-git/doc/guix.texi:7048 #, no-wrap msgid "backquote (quasiquote)" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7005 +#: guix-git/doc/guix.texi:7049 #, no-wrap msgid "`" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7006 +#: guix-git/doc/guix.texi:7050 #, no-wrap msgid "quasiquote" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7007 +#: guix-git/doc/guix.texi:7051 #, no-wrap msgid "comma (unquote)" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7008 +#: guix-git/doc/guix.texi:7052 #, no-wrap msgid "," msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7009 +#: guix-git/doc/guix.texi:7053 #, no-wrap msgid "unquote" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7019 +#: guix-git/doc/guix.texi:7063 msgid "What about these quote (@code{'}) characters? They are Scheme syntax to introduce a literal list; @code{'} is synonymous with @code{quote}. Sometimes you'll also see @code{`} (a backquote, synonymous with @code{quasiquote}) and @code{,} (a comma, synonymous with @code{unquote}). @xref{Expression Syntax, quoting,, guile, GNU Guile Reference Manual}, for details. Here the value of the @code{arguments} field is a list of arguments passed to the build system down the road, as with @code{apply} (@pxref{Fly Evaluation, @code{apply},, guile, GNU Guile Reference Manual})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7025 +#: guix-git/doc/guix.texi:7069 msgid "The hash-colon (@code{#:}) sequence defines a Scheme @dfn{keyword} (@pxref{Keywords,,, guile, GNU Guile Reference Manual}), and @code{#:configure-flags} is a keyword used to pass a keyword argument to the build system (@pxref{Coding With Keywords,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7031 +#: guix-git/doc/guix.texi:7075 msgid "The @code{inputs} field specifies inputs to the build process---i.e., build-time or run-time dependencies of the package. Here, we add an input, a reference to the @code{gawk} variable; @code{gawk} is itself bound to a @code{} object." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7035 +#: guix-git/doc/guix.texi:7079 msgid "Note that GCC, Coreutils, Bash, and other essential tools do not need to be specified as inputs here. Instead, @code{gnu-build-system} takes care of ensuring that they are present (@pxref{Build Systems})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7039 +#: guix-git/doc/guix.texi:7083 msgid "However, any other dependencies need to be specified in the @code{inputs} field. Any dependency not specified here will simply be unavailable to the build process, possibly leading to a build failure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7042 +#: guix-git/doc/guix.texi:7086 msgid "@xref{package Reference}, for a full description of possible fields." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7053 +#: guix-git/doc/guix.texi:7097 msgid "Once a package definition is in place, the package may actually be built using the @code{guix build} command-line tool (@pxref{Invoking guix build}), troubleshooting any build failures you encounter (@pxref{Debugging Build Failures}). You can easily jump back to the package definition using the @command{guix edit} command (@pxref{Invoking guix edit}). @xref{Packaging Guidelines}, for more information on how to test package definitions, and @ref{Invoking guix lint}, for information on how to check a definition for style conformance." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:7053 +#: guix-git/doc/guix.texi:7097 #, no-wrap msgid "GUIX_PACKAGE_PATH" msgstr "GUIX_PACKAGE_PATH" #. type: Plain text -#: guix-git/doc/guix.texi:7057 +#: guix-git/doc/guix.texi:7101 msgid "Lastly, @pxref{Channels}, for information on how to extend the distribution by adding your own package definitions in a ``channel''." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7061 +#: guix-git/doc/guix.texi:7105 msgid "Finally, updating the package definition to a new upstream version can be partly automated by the @command{guix refresh} command (@pxref{Invoking guix refresh})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7067 +#: guix-git/doc/guix.texi:7111 msgid "Behind the scenes, a derivation corresponding to the @code{} object is first computed by the @code{package-derivation} procedure. That derivation is stored in a @file{.drv} file under @file{/gnu/store}. The build actions it prescribes may then be realized by using the @code{build-derivations} procedure (@pxref{The Store})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7068 +#: guix-git/doc/guix.texi:7112 #, no-wrap msgid "{Scheme Procedure} package-derivation @var{store} @var{package} [@var{system}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7071 +#: guix-git/doc/guix.texi:7115 msgid "Return the @code{} object of @var{package} for @var{system} (@pxref{Derivations})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7077 +#: guix-git/doc/guix.texi:7121 msgid "@var{package} must be a valid @code{} object, and @var{system} must be a string denoting the target system type---e.g., @code{\"x86_64-linux\"} for an x86_64 Linux-based GNU system. @var{store} must be a connection to the daemon, which operates on the store (@pxref{The Store})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7083 +#: guix-git/doc/guix.texi:7127 msgid "Similarly, it is possible to compute a derivation that cross-builds a package for some other system:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7084 +#: guix-git/doc/guix.texi:7128 #, no-wrap msgid "{Scheme Procedure} package-cross-derivation @var{store} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7088 +#: guix-git/doc/guix.texi:7132 msgid "@var{package} @var{target} [@var{system}] Return the @code{} object of @var{package} cross-built from @var{system} to @var{target}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7092 +#: guix-git/doc/guix.texi:7136 msgid "@var{target} must be a valid GNU triplet denoting the target hardware and operating system, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying Target Triplets,,, autoconf, Autoconf})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7096 +#: guix-git/doc/guix.texi:7140 msgid "Once you have package definitions, you can easily define @emph{variants} of those packages. @xref{Defining Package Variants}, for more on that." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:7104 +#: guix-git/doc/guix.texi:7148 #, no-wrap msgid "@code{package} Reference" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7108 +#: guix-git/doc/guix.texi:7152 msgid "This section summarizes all the options available in @code{package} declarations (@pxref{Defining Packages})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7109 +#: guix-git/doc/guix.texi:7153 #, no-wrap msgid "{Data Type} package" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7111 +#: guix-git/doc/guix.texi:7155 msgid "This is the data type representing a package recipe." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7115 +#: guix-git/doc/guix.texi:7159 msgid "The name of the package, as a string." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7116 +#: guix-git/doc/guix.texi:7160 #, no-wrap msgid "version" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7119 +#: guix-git/doc/guix.texi:7163 msgid "The version of the package, as a string. @xref{Version Numbers}, for guidelines." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7120 guix-git/doc/guix.texi:12900 -#: guix-git/doc/guix.texi:15181 guix-git/doc/guix.texi:15790 +#: guix-git/doc/guix.texi:7164 guix-git/doc/guix.texi:13257 +#: guix-git/doc/guix.texi:15538 guix-git/doc/guix.texi:16147 #, no-wrap msgid "source" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7127 +#: guix-git/doc/guix.texi:7171 msgid "An object telling how the source code for the package should be acquired. Most of the time, this is an @code{origin} object, which denotes a file fetched from the Internet (@pxref{origin Reference}). It can also be any other ``file-like'' object such as a @code{local-file}, which denotes a file from the local file system (@pxref{G-Expressions, @code{local-file}})." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7128 +#: guix-git/doc/guix.texi:7172 #, no-wrap msgid "build-system" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7131 +#: guix-git/doc/guix.texi:7175 msgid "The build system that should be used to build the package (@pxref{Build Systems})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7132 guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:7176 guix-git/doc/guix.texi:18315 #, no-wrap msgid "@code{arguments} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7135 +#: guix-git/doc/guix.texi:7179 msgid "The arguments that should be passed to the build system. This is a list, typically containing sequential keyword-value pairs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7136 +#: guix-git/doc/guix.texi:7180 #, no-wrap msgid "@code{inputs} (default: @code{'()})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7137 +#: guix-git/doc/guix.texi:7181 #, no-wrap msgid "@code{native-inputs} (default: @code{'()})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7138 +#: guix-git/doc/guix.texi:7182 #, no-wrap msgid "@code{propagated-inputs} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7139 +#: guix-git/doc/guix.texi:7183 #, no-wrap msgid "inputs, of packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7146 +#: guix-git/doc/guix.texi:7190 msgid "These fields list dependencies of the package. Each element of these lists is either a package, origin, or other ``file-like object'' (@pxref{G-Expressions}); to specify the output of that file-like object that should be used, pass a two-element list where the second element is the output (@pxref{Packages with Multiple Outputs}, for more on package outputs). For example, the list below specifies three inputs:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7150 +#: guix-git/doc/guix.texi:7194 #, no-wrap msgid "" "(list libffi libunistring\n" @@ -14498,23 +14615,23 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7154 +#: guix-git/doc/guix.texi:7198 msgid "In the example above, the @code{\"out\"} output of @code{libffi} and @code{libunistring} is used." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:7155 +#: guix-git/doc/guix.texi:7199 #, no-wrap msgid "Compatibility Note" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:7162 +#: guix-git/doc/guix.texi:7206 msgid "Until version 1.3.0, input lists were a list of tuples, where each tuple has a label for the input (a string) as its first element, a package, origin, or derivation as its second element, and optionally the name of the output thereof that should be used, which defaults to @code{\"out\"}. For example, the list below is equivalent to the one above, but using the @dfn{old input style}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7168 +#: guix-git/doc/guix.texi:7212 #, no-wrap msgid "" ";; Old input style (deprecated).\n" @@ -14524,176 +14641,186 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:7174 +#: guix-git/doc/guix.texi:7218 msgid "This style is now deprecated; it is still supported but support will be removed in a future version. It should not be used for new package definitions. @xref{Invoking guix style}, on how to migrate to the new style." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7176 +#: guix-git/doc/guix.texi:7220 #, no-wrap msgid "cross compilation, package dependencies" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7182 +#: guix-git/doc/guix.texi:7226 msgid "The distinction between @code{native-inputs} and @code{inputs} is necessary when considering cross-compilation. When cross-compiling, dependencies listed in @code{inputs} are built for the @emph{target} architecture; conversely, dependencies listed in @code{native-inputs} are built for the architecture of the @emph{build} machine." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7187 +#: guix-git/doc/guix.texi:7231 msgid "@code{native-inputs} is typically used to list tools needed at build time, but not at run time, such as Autoconf, Automake, pkg-config, Gettext, or Bison. @command{guix lint} can report likely mistakes in this area (@pxref{Invoking guix lint})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:7195 +#: guix-git/doc/guix.texi:7239 msgid "package-propagated-inputs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7195 +#: guix-git/doc/guix.texi:7239 msgid "Lastly, @code{propagated-inputs} is similar to @code{inputs}, but the specified packages will be automatically installed to profiles (@pxref{Features, the role of profiles in Guix}) alongside the package they belong to (@pxref{package-cmd-propagated-inputs, @command{guix package}}, for information on how @command{guix package} deals with propagated inputs)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7199 +#: guix-git/doc/guix.texi:7243 msgid "For example this is necessary when packaging a C/C++ library that needs headers of another library to compile, or when a pkg-config file refers to another one @i{via} its @code{Requires} field." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7206 +#: guix-git/doc/guix.texi:7250 msgid "Another example where @code{propagated-inputs} is useful is for languages that lack a facility to record the run-time search path akin to the @code{RUNPATH} of ELF files; this includes Guile, Python, Perl, and more. When packaging libraries written in those languages, ensure they can find library code they depend on at run time by listing run-time dependencies in @code{propagated-inputs} rather than @code{inputs}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7207 +#: guix-git/doc/guix.texi:7251 #, no-wrap msgid "@code{outputs} (default: @code{'(\"out\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7210 +#: guix-git/doc/guix.texi:7254 msgid "The list of output names of the package. @xref{Packages with Multiple Outputs}, for typical uses of additional outputs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7211 +#: guix-git/doc/guix.texi:7255 #, no-wrap msgid "@code{native-search-paths} (default: @code{'()})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7212 +#: guix-git/doc/guix.texi:7256 #, no-wrap msgid "@code{search-paths} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7215 -msgid "A list of @code{search-path-specification} objects describing search-path environment variables honored by the package." +#: guix-git/doc/guix.texi:7260 +msgid "A list of @code{search-path-specification} objects describing search-path environment variables honored by the package. @xref{Search Paths}, for more on search path specifications." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:7266 +msgid "As for inputs, the distinction between @code{native-search-paths} and @code{search-paths} only matters when cross-compiling. In a cross-compilation context, @code{native-search-paths} applies exclusively to native inputs whereas @code{search-paths} applies only to host inputs." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:7273 +msgid "Packages such as cross-compilers care about target inputs---for instance, our (modified) GCC cross-compiler has @env{CROSS_C_INCLUDE_PATH} in @code{search-paths}, which allows it to pick @file{.h} files for the target system and @emph{not} those of native inputs. For the majority of packages though, only @code{native-search-paths} makes sense." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7216 +#: guix-git/doc/guix.texi:7274 #, no-wrap msgid "@code{replacement} (default: @code{#f})" msgstr "@code{replacement} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:7220 +#: guix-git/doc/guix.texi:7278 msgid "This must be either @code{#f} or a package object that will be used as a @dfn{replacement} for this package. @xref{Security Updates, grafts}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7221 guix-git/doc/guix.texi:12892 +#: guix-git/doc/guix.texi:7279 guix-git/doc/guix.texi:13249 #, no-wrap msgid "synopsis" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7223 +#: guix-git/doc/guix.texi:7281 msgid "A one-line description of the package." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7224 guix-git/doc/guix.texi:12893 -#: guix-git/doc/guix.texi:35959 guix-git/doc/guix.texi:36119 +#: guix-git/doc/guix.texi:7282 guix-git/doc/guix.texi:13250 +#: guix-git/doc/guix.texi:36449 guix-git/doc/guix.texi:36609 #, no-wrap msgid "description" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7226 +#: guix-git/doc/guix.texi:7284 msgid "A more elaborate description of the package." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7227 +#: guix-git/doc/guix.texi:7285 #, no-wrap msgid "license" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7228 +#: guix-git/doc/guix.texi:7286 #, no-wrap msgid "license, of packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7231 +#: guix-git/doc/guix.texi:7289 msgid "The license of the package; a value from @code{(guix licenses)}, or a list of such values." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7232 guix-git/doc/guix.texi:12901 +#: guix-git/doc/guix.texi:7290 guix-git/doc/guix.texi:13258 #, no-wrap msgid "home-page" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7234 +#: guix-git/doc/guix.texi:7292 msgid "The URL to the home-page of the package, as a string." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7235 +#: guix-git/doc/guix.texi:7293 #, no-wrap msgid "@code{supported-systems} (default: @code{%supported-systems})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7238 +#: guix-git/doc/guix.texi:7296 msgid "The list of systems supported by the package, as strings of the form @code{architecture-kernel}, for example @code{\"x86_64-linux\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7239 +#: guix-git/doc/guix.texi:7297 #, no-wrap msgid "@code{location} (default: source location of the @code{package} form)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7243 +#: guix-git/doc/guix.texi:7301 msgid "The source location of the package. It is useful to override this when inheriting from another package, in which case this field is not automatically corrected." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7246 +#: guix-git/doc/guix.texi:7304 #, no-wrap msgid "{Scheme Syntax} this-package" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7249 +#: guix-git/doc/guix.texi:7307 msgid "When used in the @emph{lexical scope} of a package field definition, this identifier resolves to the package being defined." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7252 +#: guix-git/doc/guix.texi:7310 msgid "The example below shows how to add a package as a native input of itself when cross-compiling:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7257 +#: guix-git/doc/guix.texi:7315 #, no-wrap msgid "" "(package\n" @@ -14703,7 +14830,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7263 +#: guix-git/doc/guix.texi:7321 #, no-wrap msgid "" " ;; When cross-compiled, Guile, for example, depends on\n" @@ -14714,51 +14841,51 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7266 +#: guix-git/doc/guix.texi:7324 msgid "It is an error to refer to @code{this-package} outside a package definition." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7270 +#: guix-git/doc/guix.texi:7328 msgid "The following helper procedures are provided to help deal with package inputs." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7271 +#: guix-git/doc/guix.texi:7329 #, no-wrap msgid "{Scheme Procedure} lookup-package-input @var{package} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:7272 +#: guix-git/doc/guix.texi:7330 #, no-wrap msgid "{Scheme Procedure} lookup-package-native-input @var{package} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:7273 +#: guix-git/doc/guix.texi:7331 #, no-wrap msgid "{Scheme Procedure} lookup-package-propagated-input @var{package} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:7274 +#: guix-git/doc/guix.texi:7332 #, no-wrap msgid "{Scheme Procedure} lookup-package-direct-input @var{package} @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7277 +#: guix-git/doc/guix.texi:7335 msgid "Look up @var{name} among @var{package}'s inputs (or native, propagated, or direct inputs). Return it if found, @code{#f} otherwise." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7280 +#: guix-git/doc/guix.texi:7338 msgid "@var{name} is the name of a package depended on. Here's how you might use it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7283 +#: guix-git/doc/guix.texi:7341 #, no-wrap msgid "" "(use-modules (guix packages) (gnu packages base))\n" @@ -14766,7 +14893,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7286 +#: guix-git/doc/guix.texi:7344 #, no-wrap msgid "" "(lookup-package-direct-input coreutils \"gmp\")\n" @@ -14774,47 +14901,47 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7290 +#: guix-git/doc/guix.texi:7348 msgid "In this example we obtain the @code{gmp} package that is among the direct inputs of @code{coreutils}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7292 +#: guix-git/doc/guix.texi:7350 #, fuzzy, no-wrap #| msgid "inputs, for Python packages" msgid "development inputs, of a package" msgstr "entradas, para pacotes Python" #. type: cindex -#: guix-git/doc/guix.texi:7293 +#: guix-git/doc/guix.texi:7351 #, fuzzy, no-wrap #| msgid "inputs, for Python packages" msgid "implicit inputs, of a package" msgstr "entradas, para pacotes Python" #. type: Plain text -#: guix-git/doc/guix.texi:7298 +#: guix-git/doc/guix.texi:7356 msgid "Sometimes you will want to obtain the list of inputs needed to @emph{develop} a package---all the inputs that are visible when the package is compiled. This is what the @code{package-development-inputs} procedure returns." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7299 +#: guix-git/doc/guix.texi:7357 #, no-wrap msgid "{Scheme Procedure} package-development-inputs @var{package} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7306 +#: guix-git/doc/guix.texi:7364 msgid "[@var{system}] [#:target #f] Return the list of inputs required by @var{package} for development purposes on @var{system}. When @var{target} is true, return the inputs needed to cross-compile @var{package} from @var{system} to @var{triplet}, where @var{triplet} is a triplet such as @code{\"aarch64-linux-gnu\"}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7310 +#: guix-git/doc/guix.texi:7368 msgid "Note that the result includes both explicit inputs and implicit inputs---inputs automatically added by the build system (@pxref{Build Systems}). Let us take the @code{hello} package to illustrate that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7313 +#: guix-git/doc/guix.texi:7371 #, no-wrap msgid "" "(use-modules (gnu packages base) (guix packages))\n" @@ -14822,7 +14949,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7316 +#: guix-git/doc/guix.texi:7374 #, no-wrap msgid "" "hello\n" @@ -14831,7 +14958,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7319 +#: guix-git/doc/guix.texi:7377 #, no-wrap msgid "" "(package-direct-inputs hello)\n" @@ -14840,7 +14967,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7322 +#: guix-git/doc/guix.texi:7380 #, no-wrap msgid "" "(package-development-inputs hello)\n" @@ -14848,39 +14975,39 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7331 +#: guix-git/doc/guix.texi:7389 msgid "In this example, @code{package-direct-inputs} returns the empty list, because @code{hello} has zero explicit dependencies. Conversely, @code{package-development-inputs} includes inputs implicitly added by @code{gnu-build-system} that are required to build @code{hello}: tar, gzip, GCC, libc, Bash, and more. To visualize it, @command{guix graph hello} would show you explicit inputs, whereas @command{guix graph -t bag hello} would include implicit inputs (@pxref{Invoking guix graph})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7337 +#: guix-git/doc/guix.texi:7395 msgid "Because packages are regular Scheme objects that capture a complete dependency graph and associated build procedures, it is often useful to write procedures that take a package and return a modified version thereof according to some parameters. Below are a few examples." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7338 +#: guix-git/doc/guix.texi:7396 #, no-wrap msgid "tool chain, choosing a package's tool chain" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7339 +#: guix-git/doc/guix.texi:7397 #, no-wrap msgid "{Scheme Procedure} package-with-c-toolchain @var{package} @var{toolchain}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7344 +#: guix-git/doc/guix.texi:7402 msgid "Return a variant of @var{package} that uses @var{toolchain} instead of the default GNU C/C++ toolchain. @var{toolchain} must be a list of inputs (label/package tuples) providing equivalent functionality, such as the @code{gcc-toolchain} package." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7348 +#: guix-git/doc/guix.texi:7406 msgid "The example below returns a variant of the @code{hello} package built with GCC@tie{}10.x and the rest of the GNU tool chain (Binutils and the GNU C Library) instead of the default tool chain:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7352 +#: guix-git/doc/guix.texi:7410 #, no-wrap msgid "" "(let ((toolchain (specification->package \"gcc-toolchain@@10\")))\n" @@ -14888,197 +15015,197 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7360 +#: guix-git/doc/guix.texi:7418 msgid "The build tool chain is part of the @dfn{implicit inputs} of packages---it's usually not listed as part of the various ``inputs'' fields and is instead pulled in by the build system. Consequently, this procedure works by changing the build system of @var{package} so that it pulls in @var{toolchain} instead of the defaults. @ref{Build Systems}, for more on build systems." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:7363 +#: guix-git/doc/guix.texi:7421 #, no-wrap msgid "@code{origin} Reference" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7371 +#: guix-git/doc/guix.texi:7429 msgid "This section documents @dfn{origins}. An @code{origin} declaration specifies data that must be ``produced''---downloaded, usually---and whose content hash is known in advance. Origins are primarily used to represent the source code of packages (@pxref{Defining Packages}). For that reason, the @code{origin} form allows you to declare patches to apply to the original source code as well as code snippets to modify it." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7372 +#: guix-git/doc/guix.texi:7430 #, no-wrap msgid "{Data Type} origin" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7374 +#: guix-git/doc/guix.texi:7432 msgid "This is the data type representing a source code origin." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7376 guix-git/doc/guix.texi:26552 +#: guix-git/doc/guix.texi:7434 guix-git/doc/guix.texi:26889 #, no-wrap msgid "uri" msgstr "uri" #. type: table -#: guix-git/doc/guix.texi:7381 +#: guix-git/doc/guix.texi:7439 msgid "An object containing the URI of the source. The object type depends on the @code{method} (see below). For example, when using the @var{url-fetch} method of @code{(guix download)}, the valid @code{uri} values are: a URL represented as a string, or a list thereof." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7382 +#: guix-git/doc/guix.texi:7440 #, no-wrap msgid "fixed-output derivations, for download" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7383 +#: guix-git/doc/guix.texi:7441 #, no-wrap msgid "method" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7390 +#: guix-git/doc/guix.texi:7448 msgid "A monadic procedure that handles the given URI@. The procedure must accept at least three arguments: the value of the @code{uri} field and the hash algorithm and hash value specified by the @code{hash} field. It must return a store item or a derivation in the store monad (@pxref{The Store Monad}); most methods return a fixed-output derivation (@pxref{Derivations})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7394 +#: guix-git/doc/guix.texi:7452 msgid "Commonly used methods include @code{url-fetch}, which fetches data from a URL, and @code{git-fetch}, which fetches data from a Git repository (see below)." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7395 +#: guix-git/doc/guix.texi:7453 #, no-wrap msgid "sha256" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7399 +#: guix-git/doc/guix.texi:7457 msgid "A bytevector containing the SHA-256 hash of the source. This is equivalent to providing a @code{content-hash} SHA256 object in the @code{hash} field described below." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7400 +#: guix-git/doc/guix.texi:7458 #, no-wrap msgid "hash" msgstr "hash (masc.)" #. type: table -#: guix-git/doc/guix.texi:7403 +#: guix-git/doc/guix.texi:7461 msgid "The @code{content-hash} object of the source---see below for how to use @code{content-hash}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7407 +#: guix-git/doc/guix.texi:7465 msgid "You can obtain this information using @code{guix download} (@pxref{Invoking guix download}) or @code{guix hash} (@pxref{Invoking guix hash})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7408 +#: guix-git/doc/guix.texi:7466 #, no-wrap msgid "@code{file-name} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7414 +#: guix-git/doc/guix.texi:7472 msgid "The file name under which the source code should be saved. When this is @code{#f}, a sensible default value will be used in most cases. In case the source is fetched from a URL, the file name from the URL will be used. For version control checkouts, it is recommended to provide the file name explicitly because the default is not very descriptive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7415 +#: guix-git/doc/guix.texi:7473 #, no-wrap msgid "@code{patches} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7418 +#: guix-git/doc/guix.texi:7476 msgid "A list of file names, origins, or file-like objects (@pxref{G-Expressions, file-like objects}) pointing to patches to be applied to the source." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7422 +#: guix-git/doc/guix.texi:7480 msgid "This list of patches must be unconditional. In particular, it cannot depend on the value of @code{%current-system} or @code{%current-target-system}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7423 +#: guix-git/doc/guix.texi:7481 #, no-wrap msgid "@code{snippet} (default: @code{#f})" msgstr "@code{snippet} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:7427 +#: guix-git/doc/guix.texi:7485 msgid "A G-expression (@pxref{G-Expressions}) or S-expression that will be run in the source directory. This is a convenient way to modify the source, sometimes more convenient than a patch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7428 +#: guix-git/doc/guix.texi:7486 #, no-wrap msgid "@code{patch-flags} (default: @code{'(\"-p1\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7431 +#: guix-git/doc/guix.texi:7489 msgid "A list of command-line flags that should be passed to the @code{patch} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7432 +#: guix-git/doc/guix.texi:7490 #, no-wrap msgid "@code{patch-inputs} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7436 +#: guix-git/doc/guix.texi:7494 msgid "Input packages or derivations to the patching process. When this is @code{#f}, the usual set of inputs necessary for patching are provided, such as GNU@tie{}Patch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7437 guix-git/doc/guix.texi:26425 +#: guix-git/doc/guix.texi:7495 guix-git/doc/guix.texi:26762 #, no-wrap msgid "@code{modules} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7440 +#: guix-git/doc/guix.texi:7498 msgid "A list of Guile modules that should be loaded during the patching process and while running the code in the @code{snippet} field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7441 +#: guix-git/doc/guix.texi:7499 #, no-wrap msgid "@code{patch-guile} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7444 +#: guix-git/doc/guix.texi:7502 msgid "The Guile package that should be used in the patching process. When this is @code{#f}, a sensible default is used." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7447 +#: guix-git/doc/guix.texi:7505 #, no-wrap msgid "{Data Type} content-hash @var{value} [@var{algorithm}]" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7451 +#: guix-git/doc/guix.texi:7509 msgid "Construct a content hash object for the given @var{algorithm}, and with @var{value} as its hash value. When @var{algorithm} is omitted, assume it is @code{sha256}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7454 +#: guix-git/doc/guix.texi:7512 msgid "@var{value} can be a literal string, in which case it is base32-decoded, or it can be a bytevector." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7456 +#: guix-git/doc/guix.texi:7514 msgid "The following forms are all equivalent:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7465 +#: guix-git/doc/guix.texi:7523 #, no-wrap msgid "" "(content-hash \"05zxkyz9bv3j9h0xyid1rhvh3klhsmrpkf3bcs6frvlgyr2gwilj\")\n" @@ -15091,103 +15218,103 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7470 +#: guix-git/doc/guix.texi:7528 msgid "Technically, @code{content-hash} is currently implemented as a macro. It performs sanity checks at macro-expansion time, when possible, such as ensuring that @var{value} has the right size for @var{algorithm}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7476 +#: guix-git/doc/guix.texi:7534 msgid "As we have seen above, how exactly the data an origin refers to is retrieved is determined by its @code{method} field. The @code{(guix download)} module provides the most common method, @code{url-fetch}, described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7477 +#: guix-git/doc/guix.texi:7535 #, no-wrap msgid "{Scheme Procedure} url-fetch @var{url} @var{hash-algo} @var{hash} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7485 +#: guix-git/doc/guix.texi:7543 msgid "[name] [#:executable? #f] Return a fixed-output derivation that fetches data from @var{url} (a string, or a list of strings denoting alternate URLs), which is expected to have hash @var{hash} of type @var{hash-algo} (a symbol). By default, the file name is the base name of URL; optionally, @var{name} can specify a different file name. When @var{executable?} is true, make the downloaded file executable." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7488 +#: guix-git/doc/guix.texi:7546 msgid "When one of the URL starts with @code{mirror://}, then its host part is interpreted as the name of a mirror scheme, taken from @file{%mirror-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7491 +#: guix-git/doc/guix.texi:7549 msgid "Alternatively, when URL starts with @code{file://}, return the corresponding file name in the store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7497 +#: guix-git/doc/guix.texi:7555 msgid "Likewise, the @code{(guix git-download)} module defines the @code{git-fetch} origin method, which fetches data from a Git version control repository, and the @code{git-reference} data type to describe the repository and revision to fetch." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7498 +#: guix-git/doc/guix.texi:7556 #, no-wrap msgid "{Scheme Procedure} git-fetch @var{ref} @var{hash-algo} @var{hash}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7503 +#: guix-git/doc/guix.texi:7561 msgid "Return a fixed-output derivation that fetches @var{ref}, a @code{} object. The output is expected to have recursive hash @var{hash} of type @var{hash-algo} (a symbol). Use @var{name} as the file name, or a generic name if @code{#f}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7505 +#: guix-git/doc/guix.texi:7563 #, no-wrap msgid "{Data Type} git-reference" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7508 +#: guix-git/doc/guix.texi:7566 msgid "This data type represents a Git reference for @code{git-fetch} to retrieve." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7510 guix-git/doc/guix.texi:24186 +#: guix-git/doc/guix.texi:7568 guix-git/doc/guix.texi:24548 #, no-wrap msgid "url" msgstr "url" #. type: table -#: guix-git/doc/guix.texi:7512 +#: guix-git/doc/guix.texi:7570 msgid "The URL of the Git repository to clone." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7513 +#: guix-git/doc/guix.texi:7571 #, no-wrap msgid "commit" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7518 +#: guix-git/doc/guix.texi:7576 msgid "This string denotes either the commit to fetch (a hexadecimal string), or the tag to fetch. You can also use a ``short'' commit ID or a @command{git describe} style identifier such as @code{v1.0.1-10-g58d7909c97}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7519 +#: guix-git/doc/guix.texi:7577 #, no-wrap msgid "@code{recursive?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7521 +#: guix-git/doc/guix.texi:7579 msgid "This Boolean indicates whether to recursively fetch Git sub-modules." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7525 +#: guix-git/doc/guix.texi:7583 msgid "The example below denotes the @code{v2.10} tag of the GNU@tie{}Hello repository:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7530 +#: guix-git/doc/guix.texi:7588 #, no-wrap msgid "" "(git-reference\n" @@ -15196,12 +15323,12 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7534 +#: guix-git/doc/guix.texi:7592 msgid "This is equivalent to the reference below, which explicitly names the commit:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7539 +#: guix-git/doc/guix.texi:7597 #, no-wrap msgid "" "(git-reference\n" @@ -15210,56 +15337,56 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7545 +#: guix-git/doc/guix.texi:7603 msgid "For Mercurial repositories, the module @code{(guix hg-download)} defines the @code{hg-fetch} origin method and @code{hg-reference} data type for support of the Mercurial version control system." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7546 +#: guix-git/doc/guix.texi:7604 #, no-wrap msgid "{Scheme Procedure} hg-fetch @var{ref} @var{hash-algo} @var{hash} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7552 +#: guix-git/doc/guix.texi:7610 msgid "[name] Return a fixed-output derivation that fetches @var{ref}, a @code{} object. The output is expected to have recursive hash @var{hash} of type @var{hash-algo} (a symbol). Use @var{name} as the file name, or a generic name if @code{#false}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7557 +#: guix-git/doc/guix.texi:7615 #, no-wrap msgid "customizing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7558 +#: guix-git/doc/guix.texi:7616 #, no-wrap msgid "variants, of packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7568 +#: guix-git/doc/guix.texi:7626 msgid "One of the nice things with Guix is that, given a package definition, you can easily @emph{derive} variants of that package---for a different upstream version, with different dependencies, different compilation options, and so on. Some of these custom packages can be defined straight from the command line (@pxref{Package Transformation Options}). This section describes how to define package variants in code. This can be useful in ``manifests'' (@pxref{profile-manifest, @option{--manifest}}) and in your own package collection (@pxref{Creating a Channel}), among others!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7569 +#: guix-git/doc/guix.texi:7627 #, no-wrap msgid "inherit, for package definitions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7576 +#: guix-git/doc/guix.texi:7634 msgid "As discussed earlier, packages are first-class objects in the Scheme language. The @code{(guix packages)} module provides the @code{package} construct to define new package objects (@pxref{package Reference}). The easiest way to define a package variant is using the @code{inherit} keyword together with @code{package}. This allows you to inherit from a package definition while overriding the fields you want." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7581 +#: guix-git/doc/guix.texi:7639 msgid "For example, given the @code{hello} variable, which contains a definition for the current version of GNU@tie{}Hello, here's how you would define a variant for version 2.2 (released in 2006, it's vintage!):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7584 +#: guix-git/doc/guix.texi:7642 #, no-wrap msgid "" "(use-modules (gnu packages base)) ;for 'hello'\n" @@ -15267,7 +15394,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7596 +#: guix-git/doc/guix.texi:7654 #, no-wrap msgid "" "(define hello-2.2\n" @@ -15284,17 +15411,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7605 +#: guix-git/doc/guix.texi:7663 msgid "The example above corresponds to what the @option{--with-source} package transformation option does. Essentially @code{hello-2.2} preserves all the fields of @code{hello}, except @code{version} and @code{source}, which it overrides. Note that the original @code{hello} variable is still there, in the @code{(gnu packages base)} module, unchanged. When you define a custom package like this, you are really @emph{adding} a new package definition; the original one remains available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7611 +#: guix-git/doc/guix.texi:7669 msgid "You can just as well define variants with a different set of dependencies than the original package. For example, the default @code{gdb} package depends on @code{guile}, but since that is an optional dependency, you can define a variant that removes that dependency like so:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7614 +#: guix-git/doc/guix.texi:7672 #, no-wrap msgid "" "(use-modules (gnu packages gdb)) ;for 'gdb'\n" @@ -15302,7 +15429,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7620 +#: guix-git/doc/guix.texi:7678 #, no-wrap msgid "" "(define gdb-sans-guile\n" @@ -15313,64 +15440,64 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7626 +#: guix-git/doc/guix.texi:7684 msgid "The @code{modify-inputs} form above removes the @code{\"guile\"} package from the @code{inputs} field of @code{gdb}. The @code{modify-inputs} macro is a helper that can prove useful anytime you want to remove, add, or replace package inputs." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7627 +#: guix-git/doc/guix.texi:7685 #, no-wrap msgid "{Scheme Syntax} modify-inputs @var{inputs} @var{clauses}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7631 +#: guix-git/doc/guix.texi:7689 msgid "Modify the given package inputs, as returned by @code{package-inputs} & co., according to the given clauses. Each clause must have one of the following forms:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:7633 +#: guix-git/doc/guix.texi:7691 #, fuzzy, no-wrap #| msgid "-t @var{type}" msgid "(delete @var{name}@dots{})" msgstr "-t @var{tipo}" #. type: table -#: guix-git/doc/guix.texi:7635 +#: guix-git/doc/guix.texi:7693 msgid "Delete from the inputs packages with the given @var{name}s (strings)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7636 +#: guix-git/doc/guix.texi:7694 #, fuzzy, no-wrap #| msgid "-r @var{package} @dots{}" msgid "(append @var{package}@dots{})" msgstr "-r @var{pacote} @dots{}" #. type: table -#: guix-git/doc/guix.texi:7638 +#: guix-git/doc/guix.texi:7696 msgid "Add @var{package}s to the end of the input list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7639 +#: guix-git/doc/guix.texi:7697 #, fuzzy, no-wrap #| msgid "-r @var{package} @dots{}" msgid "(prepend @var{package}@dots{})" msgstr "-r @var{pacote} @dots{}" #. type: table -#: guix-git/doc/guix.texi:7641 +#: guix-git/doc/guix.texi:7699 msgid "Add @var{package}s to the front of the input list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7645 +#: guix-git/doc/guix.texi:7703 msgid "The example below removes the GMP and ACL inputs of Coreutils and adds libcap to the back of the input list:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7650 +#: guix-git/doc/guix.texi:7708 #, no-wrap msgid "" "(modify-inputs (package-inputs coreutils)\n" @@ -15379,12 +15506,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7654 +#: guix-git/doc/guix.texi:7712 msgid "The example below replaces the @code{guile} package from the inputs of @code{guile-redis} with @code{guile-2.2}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7658 +#: guix-git/doc/guix.texi:7716 #, no-wrap msgid "" "(modify-inputs (package-inputs guile-redis)\n" @@ -15392,17 +15519,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7662 +#: guix-git/doc/guix.texi:7720 msgid "The last type of clause is @code{prepend}, to add inputs to the front of the list." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7671 +#: guix-git/doc/guix.texi:7729 msgid "In some cases, you may find it useful to write functions (``procedures'', in Scheme parlance) that return a package based on some parameters. For example, consider the @code{luasocket} library for the Lua programming language. We want to create @code{luasocket} packages for major versions of Lua. One way to do that is to define a procedure that takes a Lua package and returns a @code{luasocket} package that depends on it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7681 +#: guix-git/doc/guix.texi:7739 #, no-wrap msgid "" "(define (make-lua-socket name lua)\n" @@ -15417,7 +15544,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7684 +#: guix-git/doc/guix.texi:7742 #, no-wrap msgid "" "(define-public lua5.1-socket\n" @@ -15426,7 +15553,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7687 +#: guix-git/doc/guix.texi:7745 #, no-wrap msgid "" "(define-public lua5.2-socket\n" @@ -15434,34 +15561,34 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7695 +#: guix-git/doc/guix.texi:7753 msgid "Here we have defined packages @code{lua5.1-socket} and @code{lua5.2-socket} by calling @code{make-lua-socket} with different arguments. @xref{Procedures,,, guile, GNU Guile Reference Manual}, for more info on procedures. Having top-level public definitions for these two packages means that they can be referred to from the command line (@pxref{Package Modules})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7696 +#: guix-git/doc/guix.texi:7754 #, no-wrap msgid "package transformations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7701 +#: guix-git/doc/guix.texi:7759 msgid "These are pretty simple package variants. As a convenience, the @code{(guix transformations)} module provides a high-level interface that directly maps to the more sophisticated package transformation options (@pxref{Package Transformation Options}):" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7702 +#: guix-git/doc/guix.texi:7760 #, no-wrap msgid "{Scheme Procedure} options->transformation @var{opts}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7706 +#: guix-git/doc/guix.texi:7764 msgid "Return a procedure that, when passed an object to build (package, derivation, etc.), applies the transformations specified by @var{opts} and returns the resulting objects. @var{opts} must be a list of symbol/string pairs such as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7710 +#: guix-git/doc/guix.texi:7768 #, no-wrap msgid "" "((with-branch . \"guile-gcrypt=master\")\n" @@ -15469,17 +15596,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7714 +#: guix-git/doc/guix.texi:7772 msgid "Each symbol names a transformation and the corresponding string is an argument to that transformation." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7717 +#: guix-git/doc/guix.texi:7775 msgid "For instance, a manifest equivalent to this command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:7722 +#: guix-git/doc/guix.texi:7780 #, no-wrap msgid "" "guix build guix \\\n" @@ -15488,12 +15615,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7726 +#: guix-git/doc/guix.texi:7784 msgid "... would look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7729 +#: guix-git/doc/guix.texi:7787 #, no-wrap msgid "" "(use-modules (guix transformations))\n" @@ -15501,7 +15628,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7735 +#: guix-git/doc/guix.texi:7793 #, no-wrap msgid "" "(define transform\n" @@ -15513,7 +15640,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7738 +#: guix-git/doc/guix.texi:7796 #, no-wrap msgid "" "(packages->manifest\n" @@ -15521,50 +15648,50 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7740 +#: guix-git/doc/guix.texi:7798 #, no-wrap msgid "input rewriting" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7741 +#: guix-git/doc/guix.texi:7799 #, no-wrap msgid "dependency graph rewriting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7748 +#: guix-git/doc/guix.texi:7806 msgid "The @code{options->transformation} procedure is convenient, but it's perhaps also not as flexible as you may like. How is it implemented? The astute reader probably noticed that most package transformation options go beyond the superficial changes shown in the first examples of this section: they involve @dfn{input rewriting}, whereby the dependency graph of a package is rewritten by replacing specific inputs by others." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7752 +#: guix-git/doc/guix.texi:7810 msgid "Dependency graph rewriting, for the purposes of swapping packages in the graph, is what the @code{package-input-rewriting} procedure in @code{(guix packages)} implements." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7753 +#: guix-git/doc/guix.texi:7811 #, no-wrap msgid "{Scheme Procedure} package-input-rewriting @var{replacements} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7760 +#: guix-git/doc/guix.texi:7818 msgid "[@var{rewrite-name}] [#:deep? #t] Return a procedure that, when passed a package, replaces its direct and indirect dependencies, including implicit inputs when @var{deep?} is true, according to @var{replacements}. @var{replacements} is a list of package pairs; the first element of each pair is the package to replace, and the second one is the replacement." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7763 +#: guix-git/doc/guix.texi:7821 msgid "Optionally, @var{rewrite-name} is a one-argument procedure that takes the name of a package and returns its new name after rewrite." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7767 guix-git/doc/guix.texi:11216 +#: guix-git/doc/guix.texi:7825 guix-git/doc/guix.texi:11530 msgid "Consider this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7773 +#: guix-git/doc/guix.texi:7831 #, no-wrap msgid "" "(define libressl-instead-of-openssl\n" @@ -15575,7 +15702,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7776 +#: guix-git/doc/guix.texi:7834 #, no-wrap msgid "" "(define git-with-libressl\n" @@ -15583,33 +15710,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7784 +#: guix-git/doc/guix.texi:7842 msgid "Here we first define a rewriting procedure that replaces @var{openssl} with @var{libressl}. Then we use it to define a @dfn{variant} of the @var{git} package that uses @var{libressl} instead of @var{openssl}. This is exactly what the @option{--with-input} command-line option does (@pxref{Package Transformation Options, @option{--with-input}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7787 +#: guix-git/doc/guix.texi:7845 msgid "The following variant of @code{package-input-rewriting} can match packages to be replaced by name rather than by identity." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7788 +#: guix-git/doc/guix.texi:7846 #, no-wrap msgid "{Scheme Procedure} package-input-rewriting/spec @var{replacements} [#:deep? #t]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7795 +#: guix-git/doc/guix.texi:7853 msgid "Return a procedure that, given a package, applies the given @var{replacements} to all the package graph, including implicit inputs unless @var{deep?} is false. @var{replacements} is a list of spec/procedures pair; each spec is a package specification such as @code{\"gcc\"} or @code{\"guile@@2\"}, and each procedure takes a matching package and returns a replacement for that package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7798 +#: guix-git/doc/guix.texi:7856 msgid "The example above could be rewritten this way:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7803 +#: guix-git/doc/guix.texi:7861 #, no-wrap msgid "" "(define libressl-instead-of-openssl\n" @@ -15618,872 +15745,872 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7808 +#: guix-git/doc/guix.texi:7866 msgid "The key difference here is that, this time, packages are matched by spec and not by identity. In other words, any package in the graph that is called @code{openssl} will be replaced." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7812 +#: guix-git/doc/guix.texi:7870 msgid "A more generic procedure to rewrite a package dependency graph is @code{package-mapping}: it supports arbitrary changes to nodes in the graph." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7813 +#: guix-git/doc/guix.texi:7871 #, no-wrap msgid "{Scheme Procedure} package-mapping @var{proc} [@var{cut?}] [#:deep? #f]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7818 +#: guix-git/doc/guix.texi:7876 msgid "Return a procedure that, given a package, applies @var{proc} to all the packages depended on and returns the resulting package. The procedure stops recursion when @var{cut?} returns true for a given package. When @var{deep?} is true, @var{proc} is applied to implicit inputs as well." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7824 +#: guix-git/doc/guix.texi:7882 #, no-wrap msgid "build system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7829 +#: guix-git/doc/guix.texi:7887 msgid "Each package definition specifies a @dfn{build system} and arguments for that build system (@pxref{Defining Packages}). This @code{build-system} field represents the build procedure of the package, as well as implicit dependencies of that build procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7833 +#: guix-git/doc/guix.texi:7891 msgid "Build systems are @code{} objects. The interface to create and manipulate them is provided by the @code{(guix build-system)} module, and actual build systems are exported by specific modules." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7834 +#: guix-git/doc/guix.texi:7892 #, no-wrap msgid "bag (low-level package representation)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7844 +#: guix-git/doc/guix.texi:7902 msgid "Under the hood, build systems first compile package objects to @dfn{bags}. A @dfn{bag} is like a package, but with less ornamentation---in other words, a bag is a lower-level representation of a package, which includes all the inputs of that package, including some that were implicitly added by the build system. This intermediate representation is then compiled to a derivation (@pxref{Derivations}). The @code{package-with-c-toolchain} is an example of a way to change the implicit inputs that a package's build system pulls in (@pxref{package Reference, @code{package-with-c-toolchain}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7852 +#: guix-git/doc/guix.texi:7910 msgid "Build systems accept an optional list of @dfn{arguments}. In package definitions, these are passed @i{via} the @code{arguments} field (@pxref{Defining Packages}). They are typically keyword arguments (@pxref{Optional Arguments, keyword arguments in Guile,, guile, GNU Guile Reference Manual}). The value of these arguments is usually evaluated in the @dfn{build stratum}---i.e., by a Guile process launched by the daemon (@pxref{Derivations})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7856 +#: guix-git/doc/guix.texi:7914 msgid "The main build system is @code{gnu-build-system}, which implements the standard build procedure for GNU and many other packages. It is provided by the @code{(guix build-system gnu)} module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7857 +#: guix-git/doc/guix.texi:7915 #, no-wrap msgid "{Scheme Variable} gnu-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7861 +#: guix-git/doc/guix.texi:7919 msgid "@code{gnu-build-system} represents the GNU Build System, and variants thereof (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7862 guix-git/doc/guix.texi:8812 -#: guix-git/doc/guix.texi:9294 +#: guix-git/doc/guix.texi:7920 guix-git/doc/guix.texi:8869 +#: guix-git/doc/guix.texi:9429 #, no-wrap msgid "build phases" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7869 +#: guix-git/doc/guix.texi:7927 msgid "In a nutshell, packages using it are configured, built, and installed with the usual @code{./configure && make && make check && make install} command sequence. In practice, a few additional steps are often needed. All these steps are split up in separate @dfn{phases}. @xref{Build Phases}, for more info on build phases and ways to customize them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7876 +#: guix-git/doc/guix.texi:7934 msgid "In addition, this build system ensures that the ``standard'' environment for GNU packages is available. This includes tools such as GCC, libc, Coreutils, Bash, Make, Diffutils, grep, and sed (see the @code{(guix build-system gnu)} module for a complete list). We call these the @dfn{implicit inputs} of a package, because package definitions do not have to mention them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7880 +#: guix-git/doc/guix.texi:7938 msgid "This build system supports a number of keyword arguments, which can be passed @i{via} the @code{arguments} field of a package. Here are some of the main parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:7882 +#: guix-git/doc/guix.texi:7940 #, no-wrap msgid "#:phases" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7885 +#: guix-git/doc/guix.texi:7943 msgid "This argument specifies build-side code that evaluates to an alist of build phases. @xref{Build Phases}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7886 +#: guix-git/doc/guix.texi:7944 #, no-wrap msgid "#:configure-flags" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7889 +#: guix-git/doc/guix.texi:7947 msgid "This is a list of flags (strings) passed to the @command{configure} script. @xref{Defining Packages}, for an example." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7890 +#: guix-git/doc/guix.texi:7948 #, no-wrap msgid "#:make-flags" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7894 +#: guix-git/doc/guix.texi:7952 msgid "This list of strings contains flags passed as arguments to @command{make} invocations in the @code{build}, @code{check}, and @code{install} phases." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7895 +#: guix-git/doc/guix.texi:7953 #, no-wrap msgid "#:out-of-source?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7898 +#: guix-git/doc/guix.texi:7956 msgid "This Boolean, @code{#f} by default, indicates whether to run builds in a build directory separate from the source tree." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7903 +#: guix-git/doc/guix.texi:7961 msgid "When it is true, the @code{configure} phase creates a separate build directory, changes to that directory, and runs the @code{configure} script from there. This is useful for packages that require it, such as @code{glibc}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7904 +#: guix-git/doc/guix.texi:7962 #, no-wrap msgid "#:tests?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7907 +#: guix-git/doc/guix.texi:7965 msgid "This Boolean, @code{#t} by default, indicates whether the @code{check} phase should run the package's test suite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7908 +#: guix-git/doc/guix.texi:7966 #, no-wrap msgid "#:test-target" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7911 +#: guix-git/doc/guix.texi:7969 msgid "This string, @code{\"check\"} by default, gives the name of the makefile target used by the @code{check} phase." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7912 +#: guix-git/doc/guix.texi:7970 #, no-wrap msgid "#:parallel-build?" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7913 +#: guix-git/doc/guix.texi:7971 #, no-wrap msgid "#:parallel-tests?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7920 +#: guix-git/doc/guix.texi:7978 msgid "These Boolean values specify whether to build, respectively run the test suite, in parallel, with the @code{-j} flag of @command{make}. When they are true, @code{make} is passed @code{-j@var{n}}, where @var{n} is the number specified as the @option{--cores} option of @command{guix-daemon} or that of the @command{guix} client command (@pxref{Common Build Options, @option{--cores}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7921 +#: guix-git/doc/guix.texi:7979 #, no-wrap msgid "RUNPATH, validation" msgstr "" #. type: item -#: guix-git/doc/guix.texi:7922 +#: guix-git/doc/guix.texi:7980 #, no-wrap msgid "#:validate-runpath?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7926 +#: guix-git/doc/guix.texi:7984 msgid "This Boolean, @code{#t} by default, determines whether to ``validate'' the @code{RUNPATH} of ELF binaries (@code{.so} shared libraries as well as executables) previously installed by the @code{install} phase." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7934 +#: guix-git/doc/guix.texi:7992 msgid "This validation step consists in making sure that all the shared libraries needed by an ELF binary, which are listed as @code{DT_NEEDED} entries in its @code{PT_DYNAMIC} segment, appear in the @code{DT_RUNPATH} entry of that binary. In other words, it ensures that running or using those binaries will not result in a ``file not found'' error at run time. @xref{Options, @option{-rpath},, ld, The GNU Linker}, for more information on @code{RUNPATH}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7935 -#, fuzzy, no-wrap +#: guix-git/doc/guix.texi:7993 +#, no-wrap msgid "#:substitutable?" -msgstr "substituidor" +msgstr "#:substituível?" #. type: table -#: guix-git/doc/guix.texi:7939 +#: guix-git/doc/guix.texi:7997 msgid "This Boolean, @code{#t} by default, tells whether the package outputs should be substitutable---i.e., whether users should be able to obtain substitutes for them instead of building locally (@pxref{Substitutes})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7940 +#: guix-git/doc/guix.texi:7998 #, no-wrap msgid "#:allowed-references" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7941 +#: guix-git/doc/guix.texi:7999 #, no-wrap msgid "#:disallowed-references" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7946 +#: guix-git/doc/guix.texi:8004 msgid "When true, these arguments must be a list of dependencies that must not appear among the references of the build results. If, upon build completion, some of these references are retained, the build process fails." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7951 +#: guix-git/doc/guix.texi:8009 msgid "This is useful to ensure that a package does not erroneously keep a reference to some of it build-time inputs, in cases where doing so would, for example, unnecessarily increase its size (@pxref{Invoking guix size})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7954 +#: guix-git/doc/guix.texi:8012 msgid "Most other build systems support these keyword arguments." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7961 +#: guix-git/doc/guix.texi:8019 msgid "Other @code{} objects are defined to support other conventions and tools used by free software packages. They inherit most of @code{gnu-build-system}, and differ mainly in the set of inputs implicitly added to the build process, and in the list of phases executed. Some of these build systems are listed below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7962 +#: guix-git/doc/guix.texi:8020 #, no-wrap msgid "{Scheme Variable} ant-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7966 +#: guix-git/doc/guix.texi:8024 msgid "This variable is exported by @code{(guix build-system ant)}. It implements the build procedure for Java packages that can be built with @url{https://ant.apache.org/, Ant build tool}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7971 +#: guix-git/doc/guix.texi:8029 msgid "It adds both @code{ant} and the @dfn{Java Development Kit} (JDK) as provided by the @code{icedtea} package to the set of inputs. Different packages can be specified with the @code{#:ant} and @code{#:jdk} parameters, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7977 +#: guix-git/doc/guix.texi:8035 msgid "When the original package does not provide a suitable Ant build file, the parameter @code{#:jar-name} can be used to generate a minimal Ant build file @file{build.xml} with tasks to build the specified jar archive. In this case the parameter @code{#:source-dir} can be used to specify the source sub-directory, defaulting to ``src''." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7985 +#: guix-git/doc/guix.texi:8043 msgid "The @code{#:main-class} parameter can be used with the minimal ant buildfile to specify the main class of the resulting jar. This makes the jar file executable. The @code{#:test-include} parameter can be used to specify the list of junit tests to run. It defaults to @code{(list \"**/*Test.java\")}. The @code{#:test-exclude} can be used to disable some tests. It defaults to @code{(list \"**/Abstract*.java\")}, because abstract classes cannot be run as tests." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7989 +#: guix-git/doc/guix.texi:8047 msgid "The parameter @code{#:build-target} can be used to specify the Ant task that should be run during the @code{build} phase. By default the ``jar'' task will be run." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7992 +#: guix-git/doc/guix.texi:8050 #, no-wrap msgid "{Scheme Variable} android-ndk-build-system" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7993 +#: guix-git/doc/guix.texi:8051 #, no-wrap msgid "Android distribution" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7994 +#: guix-git/doc/guix.texi:8052 #, no-wrap msgid "Android NDK build system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7998 +#: guix-git/doc/guix.texi:8056 msgid "This variable is exported by @code{(guix build-system android-ndk)}. It implements a build procedure for Android NDK (native development kit) packages using a Guix-specific build process." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8002 +#: guix-git/doc/guix.texi:8060 msgid "The build system assumes that packages install their public interface (header) files to the subdirectory @file{include} of the @code{out} output and their libraries to the subdirectory @file{lib} the @code{out} output." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8005 +#: guix-git/doc/guix.texi:8063 msgid "It's also assumed that the union of all the dependencies of a package has no conflicting files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8008 +#: guix-git/doc/guix.texi:8066 msgid "For the time being, cross-compilation is not supported - so right now the libraries and header files are assumed to be host tools." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8011 +#: guix-git/doc/guix.texi:8069 #, no-wrap msgid "{Scheme Variable} asdf-build-system/source" msgstr "" #. type: defvrx -#: guix-git/doc/guix.texi:8012 +#: guix-git/doc/guix.texi:8070 #, no-wrap msgid "{Scheme Variable} asdf-build-system/sbcl" msgstr "" #. type: defvrx -#: guix-git/doc/guix.texi:8013 +#: guix-git/doc/guix.texi:8071 #, no-wrap msgid "{Scheme Variable} asdf-build-system/ecl" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8019 +#: guix-git/doc/guix.texi:8077 msgid "These variables, exported by @code{(guix build-system asdf)}, implement build procedures for Common Lisp packages using @url{https://common-lisp.net/project/asdf/, ``ASDF''}. ASDF is a system definition facility for Common Lisp programs and libraries." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8026 +#: guix-git/doc/guix.texi:8084 msgid "The @code{asdf-build-system/source} system installs the packages in source form, and can be loaded using any common lisp implementation, via ASDF@. The others, such as @code{asdf-build-system/sbcl}, install binary systems in the format which a particular implementation understands. These build systems can also be used to produce executable programs, or lisp images which contain a set of packages pre-loaded." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8030 +#: guix-git/doc/guix.texi:8088 msgid "The build system uses naming conventions. For binary packages, the package name should be prefixed with the lisp implementation, such as @code{sbcl-} for @code{asdf-build-system/sbcl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8034 +#: guix-git/doc/guix.texi:8092 msgid "Additionally, the corresponding source package should be labeled using the same convention as python packages (see @ref{Python Modules}), using the @code{cl-} prefix." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8042 +#: guix-git/doc/guix.texi:8100 msgid "In order to create executable programs and images, the build-side procedures @code{build-program} and @code{build-image} can be used. They should be called in a build phase after the @code{create-asdf-configuration} phase, so that the system which was just built can be used within the resulting image. @code{build-program} requires a list of Common Lisp expressions to be passed as the @code{#:entry-program} argument." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8051 +#: guix-git/doc/guix.texi:8109 msgid "By default, all the @file{.asd} files present in the sources are read to find system definitions. The @code{#:asd-files} parameter can be used to specify the list of @file{.asd} files to read. Furthermore, if the package defines a system for its tests in a separate file, it will be loaded before the tests are run if it is specified by the @code{#:test-asd-file} parameter. If it is not set, the files @code{-tests.asd}, @code{-test.asd}, @code{tests.asd}, and @code{test.asd} will be tried if they exist." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8056 +#: guix-git/doc/guix.texi:8114 msgid "If for some reason the package must be named in a different way than the naming conventions suggest, or if several systems must be compiled, the @code{#:asd-systems} parameter can be used to specify the list of system names." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8059 +#: guix-git/doc/guix.texi:8117 #, no-wrap msgid "{Scheme Variable} cargo-build-system" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8060 +#: guix-git/doc/guix.texi:8118 #, no-wrap msgid "Rust programming language" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8061 +#: guix-git/doc/guix.texi:8119 #, no-wrap msgid "Cargo (Rust build system)" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8065 +#: guix-git/doc/guix.texi:8123 msgid "This variable is exported by @code{(guix build-system cargo)}. It supports builds of packages using Cargo, the build tool of the @uref{https://www.rust-lang.org, Rust programming language}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8068 +#: guix-git/doc/guix.texi:8126 msgid "It adds @code{rustc} and @code{cargo} to the set of inputs. A different Rust package can be specified with the @code{#:rust} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8078 +#: guix-git/doc/guix.texi:8136 msgid "Regular cargo dependencies should be added to the package definition similarly to other packages; those needed only at build time to native-inputs, others to inputs. If you need to add source-only crates then you should add them to via the @code{#:cargo-inputs} parameter as a list of name and spec pairs, where the spec can be a package or a source definition. Note that the spec must evaluate to a path to a gzipped tarball which includes a @code{Cargo.toml} file at its root, or it will be ignored. Similarly, cargo dev-dependencies should be added to the package definition via the @code{#:cargo-development-inputs} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8088 +#: guix-git/doc/guix.texi:8146 msgid "In its @code{configure} phase, this build system will make any source inputs specified in the @code{#:cargo-inputs} and @code{#:cargo-development-inputs} parameters available to cargo. It will also remove an included @code{Cargo.lock} file to be recreated by @code{cargo} during the @code{build} phase. The @code{package} phase will run @code{cargo package} to create a source crate for future use. The @code{install} phase installs the binaries defined by the crate. Unless @code{install-source? #f} is defined it will also install a source crate repository of itself and unpacked sources, to ease in future hacking on rust packages." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8090 +#: guix-git/doc/guix.texi:8148 #, no-wrap msgid "{Scheme Variable} chicken-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8095 +#: guix-git/doc/guix.texi:8153 msgid "This variable is exported by @code{(guix build-system chicken)}. It builds @uref{https://call-cc.org/, CHICKEN Scheme} modules, also called ``eggs'' or ``extensions''. CHICKEN generates C source code, which then gets compiled by a C compiler, in this case GCC." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8098 +#: guix-git/doc/guix.texi:8156 msgid "This build system adds @code{chicken} to the package inputs, as well as the packages of @code{gnu-build-system}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8102 +#: guix-git/doc/guix.texi:8160 msgid "The build system can't (yet) deduce the egg's name automatically, so just like with @code{go-build-system} and its @code{#:import-path}, you should define @code{#:egg-name} in the package's @code{arguments} field." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8104 +#: guix-git/doc/guix.texi:8162 msgid "For example, if you are packaging the @code{srfi-1} egg:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8107 +#: guix-git/doc/guix.texi:8165 #, no-wrap msgid "(arguments '(#:egg-name \"srfi-1\"))\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8112 +#: guix-git/doc/guix.texi:8170 msgid "Egg dependencies must be defined in @code{propagated-inputs}, not @code{inputs} because CHICKEN doesn't embed absolute references in compiled eggs. Test dependencies should go to @code{native-inputs}, as usual." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8114 +#: guix-git/doc/guix.texi:8172 #, no-wrap msgid "{Scheme Variable} copy-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8118 +#: guix-git/doc/guix.texi:8176 msgid "This variable is exported by @code{(guix build-system copy)}. It supports builds of simple packages that don't require much compiling, mostly just moving files around." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8123 +#: guix-git/doc/guix.texi:8181 msgid "It adds much of the @code{gnu-build-system} packages to the set of inputs. Because of this, the @code{copy-build-system} does not require all the boilerplate code often needed for the @code{trivial-build-system}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8128 +#: guix-git/doc/guix.texi:8186 msgid "To further simplify the file installation process, an @code{#:install-plan} argument is exposed to let the packager specify which files go where. The install plan is a list of @code{(@var{source} @var{target} [@var{filters}])}. @var{filters} are optional." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8130 +#: guix-git/doc/guix.texi:8188 #, no-wrap msgid "When @var{source} matches a file or directory without trailing slash, install it to @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8132 +#: guix-git/doc/guix.texi:8190 #, no-wrap msgid "If @var{target} has a trailing slash, install @var{source} basename beneath @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8133 +#: guix-git/doc/guix.texi:8191 #, no-wrap msgid "Otherwise install @var{source} as @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8136 +#: guix-git/doc/guix.texi:8194 #, no-wrap msgid "When @var{source} is a directory with a trailing slash, or when @var{filters} are used," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8139 +#: guix-git/doc/guix.texi:8197 msgid "the trailing slash of @var{target} is implied with the same meaning as above." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8140 +#: guix-git/doc/guix.texi:8198 #, no-wrap msgid "Without @var{filters}, install the full @var{source} @emph{content} to @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8141 +#: guix-git/doc/guix.texi:8199 #, no-wrap msgid "With @var{filters} among @code{#:include}, @code{#:include-regexp}, @code{#:exclude}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8144 +#: guix-git/doc/guix.texi:8202 msgid "@code{#:exclude-regexp}, only select files are installed depending on the filters. Each filters is specified by a list of strings." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8145 +#: guix-git/doc/guix.texi:8203 #, no-wrap msgid "With @code{#:include}, install all the files which the path suffix matches" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8147 +#: guix-git/doc/guix.texi:8205 msgid "at least one of the elements in the given list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8147 +#: guix-git/doc/guix.texi:8205 #, no-wrap msgid "With @code{#:include-regexp}, install all the files which the" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8150 +#: guix-git/doc/guix.texi:8208 msgid "subpaths match at least one of the regular expressions in the given list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8150 +#: guix-git/doc/guix.texi:8208 #, no-wrap msgid "The @code{#:exclude} and @code{#:exclude-regexp} filters" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8155 +#: guix-git/doc/guix.texi:8213 msgid "are the complement of their inclusion counterpart. Without @code{#:include} flags, install all files but those matching the exclusion filters. If both inclusions and exclusions are specified, the exclusions are done on top of the inclusions." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8159 +#: guix-git/doc/guix.texi:8217 msgid "In all cases, the paths relative to @var{source} are preserved within @var{target}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8162 +#: guix-git/doc/guix.texi:8220 msgid "Examples:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8164 +#: guix-git/doc/guix.texi:8222 #, no-wrap msgid "@code{(\"foo/bar\" \"share/my-app/\")}: Install @file{bar} to @file{share/my-app/bar}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8165 +#: guix-git/doc/guix.texi:8223 #, no-wrap msgid "@code{(\"foo/bar\" \"share/my-app/baz\")}: Install @file{bar} to @file{share/my-app/baz}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8166 +#: guix-git/doc/guix.texi:8224 #, no-wrap msgid "@code{(\"foo/\" \"share/my-app\")}: Install the content of @file{foo} inside @file{share/my-app}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8168 +#: guix-git/doc/guix.texi:8226 msgid "e.g., install @file{foo/sub/file} to @file{share/my-app/sub/file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8168 +#: guix-git/doc/guix.texi:8226 #, no-wrap msgid "@code{(\"foo/\" \"share/my-app\" #:include (\"sub/file\"))}: Install only @file{foo/sub/file} to" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8170 +#: guix-git/doc/guix.texi:8228 msgid "@file{share/my-app/sub/file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8170 +#: guix-git/doc/guix.texi:8228 #, no-wrap msgid "@code{(\"foo/sub\" \"share/my-app\" #:include (\"file\"))}: Install @file{foo/sub/file} to" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8172 +#: guix-git/doc/guix.texi:8230 msgid "@file{share/my-app/file}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8176 +#: guix-git/doc/guix.texi:8234 #, no-wrap msgid "Clojure (programming language)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8177 +#: guix-git/doc/guix.texi:8235 #, no-wrap msgid "simple Clojure build system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8178 +#: guix-git/doc/guix.texi:8236 #, no-wrap msgid "{Scheme Variable} clojure-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8183 +#: guix-git/doc/guix.texi:8241 msgid "This variable is exported by @code{(guix build-system clojure)}. It implements a simple build procedure for @uref{https://clojure.org/, Clojure} packages using plain old @code{compile} in Clojure. Cross-compilation is not supported yet." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8187 +#: guix-git/doc/guix.texi:8245 msgid "It adds @code{clojure}, @code{icedtea} and @code{zip} to the set of inputs. Different packages can be specified with the @code{#:clojure}, @code{#:jdk} and @code{#:zip} parameters, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8193 +#: guix-git/doc/guix.texi:8251 msgid "A list of source directories, test directories and jar names can be specified with the @code{#:source-dirs}, @code{#:test-dirs} and @code{#:jar-names} parameters, respectively. Compile directory and main class can be specified with the @code{#:compile-dir} and @code{#:main-class} parameters, respectively. Other parameters are documented below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8196 +#: guix-git/doc/guix.texi:8254 msgid "This build system is an extension of @code{ant-build-system}, but with the following phases changed:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8199 guix-git/doc/guix.texi:8773 -#: guix-git/doc/guix.texi:8822 guix-git/doc/guix.texi:8891 -#: guix-git/doc/guix.texi:35042 guix-git/doc/guix.texi:37668 +#: guix-git/doc/guix.texi:8257 guix-git/doc/guix.texi:8830 +#: guix-git/doc/guix.texi:8879 guix-git/doc/guix.texi:8952 +#: guix-git/doc/guix.texi:35481 guix-git/doc/guix.texi:38147 #, no-wrap msgid "build" msgstr "build" #. type: table -#: guix-git/doc/guix.texi:8208 +#: guix-git/doc/guix.texi:8266 msgid "This phase calls @code{compile} in Clojure to compile source files and runs @command{jar} to create jars from both source files and compiled files according to the include list and exclude list specified in @code{#:aot-include} and @code{#:aot-exclude}, respectively. The exclude list has priority over the include list. These lists consist of symbols representing Clojure libraries or the special keyword @code{#:all} representing all Clojure libraries found under the source directories. The parameter @code{#:omit-source?} decides if source should be included into the jars." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8209 guix-git/doc/guix.texi:8777 -#: guix-git/doc/guix.texi:8896 +#: guix-git/doc/guix.texi:8267 guix-git/doc/guix.texi:8834 +#: guix-git/doc/guix.texi:8957 #, no-wrap msgid "check" msgstr "marcar" #. type: table -#: guix-git/doc/guix.texi:8216 +#: guix-git/doc/guix.texi:8274 msgid "This phase runs tests according to the include list and exclude list specified in @code{#:test-include} and @code{#:test-exclude}, respectively. Their meanings are analogous to that of @code{#:aot-include} and @code{#:aot-exclude}, except that the special keyword @code{#:all} now stands for all Clojure libraries found under the test directories. The parameter @code{#:tests?} decides if tests should be run." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8217 guix-git/doc/guix.texi:8783 -#: guix-git/doc/guix.texi:8826 guix-git/doc/guix.texi:8902 +#: guix-git/doc/guix.texi:8275 guix-git/doc/guix.texi:8840 +#: guix-git/doc/guix.texi:8883 guix-git/doc/guix.texi:8963 #, no-wrap msgid "install" msgstr "instalar" #. type: table -#: guix-git/doc/guix.texi:8219 +#: guix-git/doc/guix.texi:8277 msgid "This phase installs all jars built previously." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8222 +#: guix-git/doc/guix.texi:8280 msgid "Apart from the above, this build system also contains an additional phase:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8225 +#: guix-git/doc/guix.texi:8283 #, no-wrap msgid "install-doc" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8230 +#: guix-git/doc/guix.texi:8288 msgid "This phase installs all top-level files with base name matching @code{%doc-regex}. A different regex can be specified with the @code{#:doc-regex} parameter. All files (recursively) inside the documentation directories specified in @code{#:doc-dirs} are installed as well." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8233 +#: guix-git/doc/guix.texi:8291 #, no-wrap msgid "{Scheme Variable} cmake-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8237 +#: guix-git/doc/guix.texi:8295 msgid "This variable is exported by @code{(guix build-system cmake)}. It implements the build procedure for packages using the @url{https://www.cmake.org, CMake build tool}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8241 +#: guix-git/doc/guix.texi:8299 msgid "It automatically adds the @code{cmake} package to the set of inputs. Which package is used can be specified with the @code{#:cmake} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8248 +#: guix-git/doc/guix.texi:8306 msgid "The @code{#:configure-flags} parameter is taken as a list of flags passed to the @command{cmake} command. The @code{#:build-type} parameter specifies in abstract terms the flags passed to the compiler; it defaults to @code{\"RelWithDebInfo\"} (short for ``release mode with debugging information''), which roughly means that code is compiled with @code{-O2 -g}, as is the case for Autoconf-based packages by default." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8250 +#: guix-git/doc/guix.texi:8308 #, no-wrap msgid "{Scheme Variable} dune-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8257 +#: guix-git/doc/guix.texi:8315 msgid "This variable is exported by @code{(guix build-system dune)}. It supports builds of packages using @uref{https://dune.build/, Dune}, a build tool for the OCaml programming language. It is implemented as an extension of the @code{ocaml-build-system} which is described below. As such, the @code{#:ocaml} and @code{#:findlib} parameters can be passed to this build system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8261 +#: guix-git/doc/guix.texi:8319 msgid "It automatically adds the @code{dune} package to the set of inputs. Which package is used can be specified with the @code{#:dune} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8265 +#: guix-git/doc/guix.texi:8323 msgid "There is no @code{configure} phase because dune packages typically don't need to be configured. The @code{#:build-flags} parameter is taken as a list of flags passed to the @code{dune} command during the build." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8269 +#: guix-git/doc/guix.texi:8327 msgid "The @code{#:jbuild?} parameter can be passed to use the @code{jbuild} command instead of the more recent @code{dune} command while building a package. Its default value is @code{#f}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8274 +#: guix-git/doc/guix.texi:8332 msgid "The @code{#:package} parameter can be passed to specify a package name, which is useful when a package contains multiple packages and you want to build only one of them. This is equivalent to passing the @code{-p} argument to @code{dune}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8277 +#: guix-git/doc/guix.texi:8335 #, no-wrap msgid "{Scheme Variable} go-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8282 +#: guix-git/doc/guix.texi:8340 msgid "This variable is exported by @code{(guix build-system go)}. It implements a build procedure for Go packages using the standard @url{https://golang.org/cmd/go/#hdr-Compile_packages_and_dependencies, Go build mechanisms}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8293 +#: guix-git/doc/guix.texi:8351 msgid "The user is expected to provide a value for the key @code{#:import-path} and, in some cases, @code{#:unpack-path}. The @url{https://golang.org/doc/code.html#ImportPaths, import path} corresponds to the file system path expected by the package's build scripts and any referring packages, and provides a unique way to refer to a Go package. It is typically based on a combination of the package source code's remote URI and file system hierarchy structure. In some cases, you will need to unpack the package's source code to a different directory structure than the one indicated by the import path, and @code{#:unpack-path} should be used in such cases." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8298 +#: guix-git/doc/guix.texi:8356 msgid "Packages that provide Go libraries should install their source code into the built output. The key @code{#:install-source?}, which defaults to @code{#t}, controls whether or not the source code is installed. It can be set to @code{#f} for packages that only provide executable files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8305 +#: guix-git/doc/guix.texi:8363 msgid "Packages can be cross-built, and if a specific architecture or operating system is desired then the keywords @code{#:goarch} and @code{#:goos} can be used to force the package to be built for that architecture and operating system. The combinations known to Go can be found @url{\"https://golang.org/doc/install/source#environment\", in their documentation}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8307 +#: guix-git/doc/guix.texi:8365 #, no-wrap msgid "{Scheme Variable} glib-or-gtk-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8310 +#: guix-git/doc/guix.texi:8368 msgid "This variable is exported by @code{(guix build-system glib-or-gtk)}. It is intended for use with packages making use of GLib or GTK+." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8313 +#: guix-git/doc/guix.texi:8371 msgid "This build system adds the following two phases to the ones defined by @code{gnu-build-system}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8315 guix-git/doc/guix.texi:8799 +#: guix-git/doc/guix.texi:8373 guix-git/doc/guix.texi:8856 #, no-wrap msgid "glib-or-gtk-wrap" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8322 +#: guix-git/doc/guix.texi:8380 msgid "The phase @code{glib-or-gtk-wrap} ensures that programs in @file{bin/} are able to find GLib ``schemas'' and @uref{https://developer.gnome.org/gtk3/stable/gtk-running.html, GTK+ modules}. This is achieved by wrapping the programs in launch scripts that appropriately set the @env{XDG_DATA_DIRS} and @env{GTK_PATH} environment variables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8329 +#: guix-git/doc/guix.texi:8387 msgid "It is possible to exclude specific package outputs from that wrapping process by listing their names in the @code{#:glib-or-gtk-wrap-excluded-outputs} parameter. This is useful when an output is known not to contain any GLib or GTK+ binaries, and where wrapping would gratuitously add a dependency of that output on GLib and GTK+." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8330 guix-git/doc/guix.texi:8803 +#: guix-git/doc/guix.texi:8388 guix-git/doc/guix.texi:8860 #, no-wrap msgid "glib-or-gtk-compile-schemas" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8338 +#: guix-git/doc/guix.texi:8396 msgid "The phase @code{glib-or-gtk-compile-schemas} makes sure that all @uref{https://developer.gnome.org/gio/stable/glib-compile-schemas.html, GSettings schemas} of GLib are compiled. Compilation is performed by the @command{glib-compile-schemas} program. It is provided by the package @code{glib:bin} which is automatically imported by the build system. The @code{glib} package providing @command{glib-compile-schemas} can be specified with the @code{#:glib} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8341 +#: guix-git/doc/guix.texi:8399 msgid "Both phases are executed after the @code{install} phase." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8343 +#: guix-git/doc/guix.texi:8401 #, no-wrap msgid "{Scheme Variable} guile-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8350 +#: guix-git/doc/guix.texi:8408 msgid "This build system is for Guile packages that consist exclusively of Scheme code and that are so lean that they don't even have a makefile, let alone a @file{configure} script. It compiles Scheme code using @command{guild compile} (@pxref{Compilation,,, guile, GNU Guile Reference Manual}) and installs the @file{.scm} and @file{.go} files in the right place. It also installs documentation." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8353 +#: guix-git/doc/guix.texi:8411 msgid "This build system supports cross-compilation by using the @option{--target} option of @samp{guild compile}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8356 +#: guix-git/doc/guix.texi:8414 msgid "Packages built with @code{guile-build-system} must provide a Guile package in their @code{native-inputs} field." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8358 +#: guix-git/doc/guix.texi:8416 #, no-wrap msgid "{Scheme Variable} julia-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8365 +#: guix-git/doc/guix.texi:8423 msgid "This variable is exported by @code{(guix build-system julia)}. It implements the build procedure used by @uref{https://julialang.org/, julia} packages, which essentially is similar to running @samp{julia -e 'using Pkg; Pkg.add(package)'} in an environment where @env{JULIA_LOAD_PATH} contains the paths to all Julia package inputs. Tests are run by calling @code{/test/runtests.jl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8369 -msgid "The Julia package name is read from the file @file{Project.toml}. This value can be overridden by passing the argument @code{#:julia-package-name} (which must be correctly capitalized)." +#: guix-git/doc/guix.texi:8428 +msgid "The Julia package name and uuid is read from the file @file{Project.toml}. These values can be overridden by passing the argument @code{#:julia-package-name} (which must be correctly capitalized) or @code{#:julia-package-uuid}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8373 +#: guix-git/doc/guix.texi:8432 msgid "Julia packages usually manage their binary dependencies via @code{JLLWrappers.jl}, a Julia package that creates a module (named after the wrapped library followed by @code{_jll.jl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8378 +#: guix-git/doc/guix.texi:8437 msgid "To add the binary path @code{_jll.jl} packages, you need to patch the files under @file{src/wrappers/}, replacing the call to the macro @code{JLLWrappers.@@generate_wrapper_header}, adding as a second argument containing the store path the binary." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8382 +#: guix-git/doc/guix.texi:8441 msgid "As an example, in the MbedTLS Julia package, we add a build phase (@pxref{Build Phases}) to insert the absolute file name of the wrapped MbedTLS package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8394 +#: guix-git/doc/guix.texi:8453 #, no-wrap msgid "" "(add-after 'unpack 'override-binary-path\n" @@ -16499,655 +16626,667 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8402 -msgid "Some older packages that aren't using @file{Package.toml} yet, will require this file to be created, too. The function @code{julia-create-package-toml} helps creating the file. You need to pass the outputs and the source of the package, its name (the same as the @code{file-name} parameter), the package uuid, the package version, and a list of dependencies specified by their name and their uuid." +#: guix-git/doc/guix.texi:8459 +msgid "Some older packages that aren't using @file{Project.toml} yet, will require this file to be created, too. It is internally done if the arguments @code{#:julia-package-name} and @code{#:julia-package-uuid} are provided." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8404 +#: guix-git/doc/guix.texi:8461 #, no-wrap msgid "{Scheme Variable} maven-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8411 +#: guix-git/doc/guix.texi:8468 msgid "This variable is exported by @code{(guix build-system maven)}. It implements a build procedure for @uref{https://maven.apache.org, Maven} packages. Maven is a dependency and lifecycle management tool for Java. A user of Maven specifies dependencies and plugins in a @file{pom.xml} file that Maven reads. When Maven does not have one of the dependencies or plugins in its repository, it will download them and use them to build the package." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8421 +#: guix-git/doc/guix.texi:8478 msgid "The maven build system ensures that maven will not try to download any dependency by running in offline mode. Maven will fail if a dependency is missing. Before running Maven, the @file{pom.xml} (and subprojects) are modified to specify the version of dependencies and plugins that match the versions available in the guix build environment. Dependencies and plugins must be installed in the fake maven repository at @file{lib/m2}, and are symlinked into a proper repository before maven is run. Maven is instructed to use that repository for the build and installs built artifacts there. Changed files are copied to the @file{lib/m2} directory of the package output." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8424 +#: guix-git/doc/guix.texi:8481 msgid "You can specify a @file{pom.xml} file with the @code{#:pom-file} argument, or let the build system use the default @file{pom.xml} file in the sources." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8430 +#: guix-git/doc/guix.texi:8487 msgid "In case you need to specify a dependency's version manually, you can use the @code{#:local-packages} argument. It takes an association list where the key is the groupId of the package and its value is an association list where the key is the artifactId of the package and its value is the version you want to override in the @file{pom.xml}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8436 +#: guix-git/doc/guix.texi:8493 msgid "Some packages use dependencies or plugins that are not useful at runtime nor at build time in Guix. You can alter the @file{pom.xml} file to remove them using the @code{#:exclude} argument. Its value is an association list where the key is the groupId of the plugin or dependency you want to remove, and the value is a list of artifactId you want to remove." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8439 +#: guix-git/doc/guix.texi:8496 msgid "You can override the default @code{jdk} and @code{maven} packages with the corresponding argument, @code{#:jdk} and @code{#:maven}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8444 +#: guix-git/doc/guix.texi:8501 msgid "The @code{#:maven-plugins} argument is a list of maven plugins used during the build, with the same format as the @code{inputs} fields of the package declaration. Its default value is @code{(default-maven-plugins)} which is also exported." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8446 +#: guix-git/doc/guix.texi:8503 #, fuzzy, no-wrap msgid "{Scheme Variable} minetest-mod-build-system" msgstr "guix-publish-service-type" #. type: defvr -#: guix-git/doc/guix.texi:8452 +#: guix-git/doc/guix.texi:8509 msgid "This variable is exported by @code{(guix build-system minetest)}. It implements a build procedure for @uref{https://www.minetest.net, Minetest} mods, which consists of copying Lua code, images and other resources to the location Minetest searches for mods. The build system also minimises PNG images and verifies that Minetest can load the mod without errors." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8454 +#: guix-git/doc/guix.texi:8511 #, no-wrap msgid "{Scheme Variable} minify-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8457 +#: guix-git/doc/guix.texi:8514 msgid "This variable is exported by @code{(guix build-system minify)}. It implements a minification procedure for simple JavaScript packages." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8463 +#: guix-git/doc/guix.texi:8520 msgid "It adds @code{uglify-js} to the set of inputs and uses it to compress all JavaScript files in the @file{src} directory. A different minifier package can be specified with the @code{#:uglify-js} parameter, but it is expected that the package writes the minified code to the standard output." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8467 +#: guix-git/doc/guix.texi:8524 msgid "When the input JavaScript files are not all located in the @file{src} directory, the parameter @code{#:javascript-files} can be used to specify a list of file names to feed to the minifier." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8469 +#: guix-git/doc/guix.texi:8526 #, no-wrap msgid "{Scheme Variable} ocaml-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8475 +#: guix-git/doc/guix.texi:8532 msgid "This variable is exported by @code{(guix build-system ocaml)}. It implements a build procedure for @uref{https://ocaml.org, OCaml} packages, which consists of choosing the correct set of commands to run for each package. OCaml packages can expect many different commands to be run. This build system will try some of them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8485 +#: guix-git/doc/guix.texi:8542 msgid "When the package has a @file{setup.ml} file present at the top-level, it will run @code{ocaml setup.ml -configure}, @code{ocaml setup.ml -build} and @code{ocaml setup.ml -install}. The build system will assume that this file was generated by @uref{http://oasis.forge.ocamlcore.org/, OASIS} and will take care of setting the prefix and enabling tests if they are not disabled. You can pass configure and build flags with the @code{#:configure-flags} and @code{#:build-flags}. The @code{#:test-flags} key can be passed to change the set of flags used to enable tests. The @code{#:use-make?} key can be used to bypass this system in the build and install phases." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8490 +#: guix-git/doc/guix.texi:8547 msgid "When the package has a @file{configure} file, it is assumed that it is a hand-made configure script that requires a different argument format than in the @code{gnu-build-system}. You can add more flags with the @code{#:configure-flags} key." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8494 +#: guix-git/doc/guix.texi:8551 msgid "When the package has a @file{Makefile} file (or @code{#:use-make?} is @code{#t}), it will be used and more flags can be passed to the build and install phases with the @code{#:make-flags} key." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8502 +#: guix-git/doc/guix.texi:8559 msgid "Finally, some packages do not have these files and use a somewhat standard location for its build system. In that case, the build system will run @code{ocaml pkg/pkg.ml} or @code{ocaml pkg/build.ml} and take care of providing the path to the required findlib module. Additional flags can be passed via the @code{#:build-flags} key. Install is taken care of by @command{opam-installer}. In this case, the @code{opam} package must be added to the @code{native-inputs} field of the package definition." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8510 +#: guix-git/doc/guix.texi:8567 msgid "Note that most OCaml packages assume they will be installed in the same directory as OCaml, which is not what we want in guix. In particular, they will install @file{.so} files in their module's directory, which is usually fine because it is in the OCaml compiler directory. In guix though, these libraries cannot be found and we use @env{CAML_LD_LIBRARY_PATH}. This variable points to @file{lib/ocaml/site-lib/stubslibs} and this is where @file{.so} libraries should be installed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8512 +#: guix-git/doc/guix.texi:8569 #, no-wrap msgid "{Scheme Variable} python-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8517 +#: guix-git/doc/guix.texi:8574 msgid "This variable is exported by @code{(guix build-system python)}. It implements the more or less standard build procedure used by Python packages, which consists in running @code{python setup.py build} and then @code{python setup.py install --prefix=/gnu/store/@dots{}}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8522 +#: guix-git/doc/guix.texi:8579 msgid "For packages that install stand-alone Python programs under @code{bin/}, it takes care of wrapping these programs so that their @env{GUIX_PYTHONPATH} environment variable points to all the Python libraries they depend on." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8528 +#: guix-git/doc/guix.texi:8585 msgid "Which Python package is used to perform the build can be specified with the @code{#:python} parameter. This is a useful way to force a package to be built for a specific version of the Python interpreter, which might be necessary if the package is only compatible with a single interpreter version." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8533 +#: guix-git/doc/guix.texi:8590 msgid "By default guix calls @code{setup.py} under control of @code{setuptools}, much like @command{pip} does. Some packages are not compatible with setuptools (and pip), thus you can disable this by setting the @code{#:use-setuptools?} parameter to @code{#f}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8539 +#: guix-git/doc/guix.texi:8596 msgid "If a @code{\"python\"} output is available, the package is installed into it instead of the default @code{\"out\"} output. This is useful for packages that include a Python package as only a part of the software, and thus want to combine the phases of @code{python-build-system} with another build system. Python bindings are a common usecase." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8542 +#: guix-git/doc/guix.texi:8599 #, no-wrap msgid "{Scheme Variable} perl-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8554 +#: guix-git/doc/guix.texi:8611 msgid "This variable is exported by @code{(guix build-system perl)}. It implements the standard build procedure for Perl packages, which either consists in running @code{perl Build.PL --prefix=/gnu/store/@dots{}}, followed by @code{Build} and @code{Build install}; or in running @code{perl Makefile.PL PREFIX=/gnu/store/@dots{}}, followed by @code{make} and @code{make install}, depending on which of @code{Build.PL} or @code{Makefile.PL} is present in the package distribution. Preference is given to the former if both @code{Build.PL} and @code{Makefile.PL} exist in the package distribution. This preference can be reversed by specifying @code{#t} for the @code{#:make-maker?} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8558 +#: guix-git/doc/guix.texi:8615 msgid "The initial @code{perl Makefile.PL} or @code{perl Build.PL} invocation passes flags specified by the @code{#:make-maker-flags} or @code{#:module-build-flags} parameter, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8560 +#: guix-git/doc/guix.texi:8617 msgid "Which Perl package is used can be specified with @code{#:perl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8562 +#: guix-git/doc/guix.texi:8619 #, no-wrap msgid "{Scheme Variable} renpy-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8566 +#: guix-git/doc/guix.texi:8623 msgid "This variable is exported by @code{(guix build-system renpy)}. It implements the more or less standard build procedure used by Ren'py games, which consists of loading @code{#:game} once, thereby creating bytecode for it." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8569 +#: guix-git/doc/guix.texi:8626 msgid "It further creates a wrapper script in @code{bin/} and a desktop entry in @code{share/applications}, both of which can be used to launch the game." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8573 +#: guix-git/doc/guix.texi:8630 msgid "Which Ren'py package is used can be specified with @code{#:renpy}. Games can also be installed in outputs other than ``out'' by using @code{#:output}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8575 +#: guix-git/doc/guix.texi:8632 #, no-wrap msgid "{Scheme Variable} qt-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8578 +#: guix-git/doc/guix.texi:8635 msgid "This variable is exported by @code{(guix build-system qt)}. It is intended for use with applications using Qt or KDE." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8581 +#: guix-git/doc/guix.texi:8638 msgid "This build system adds the following two phases to the ones defined by @code{cmake-build-system}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8583 +#: guix-git/doc/guix.texi:8640 #, no-wrap msgid "check-setup" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8590 +#: guix-git/doc/guix.texi:8647 msgid "The phase @code{check-setup} prepares the environment for running the checks as commonly used by Qt test programs. For now this only sets some environment variables: @code{QT_QPA_PLATFORM=offscreen}, @code{DBUS_FATAL_WARNINGS=0} and @code{CTEST_OUTPUT_ON_FAILURE=1}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8593 +#: guix-git/doc/guix.texi:8650 msgid "This phase is added before the @code{check} phase. It's a separate phase to ease adjusting if necessary." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8594 +#: guix-git/doc/guix.texi:8651 #, no-wrap msgid "qt-wrap" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8600 +#: guix-git/doc/guix.texi:8657 msgid "The phase @code{qt-wrap} searches for Qt5 plugin paths, QML paths and some XDG in the inputs and output. In case some path is found, all programs in the output's @file{bin/}, @file{sbin/}, @file{libexec/} and @file{lib/libexec/} directories are wrapped in scripts defining the necessary environment variables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8606 +#: guix-git/doc/guix.texi:8663 msgid "It is possible to exclude specific package outputs from that wrapping process by listing their names in the @code{#:qt-wrap-excluded-outputs} parameter. This is useful when an output is known not to contain any Qt binaries, and where wrapping would gratuitously add a dependency of that output on Qt, KDE, or such." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8608 +#: guix-git/doc/guix.texi:8665 msgid "This phase is added after the @code{install} phase." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8611 +#: guix-git/doc/guix.texi:8668 #, no-wrap msgid "{Scheme Variable} r-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8619 +#: guix-git/doc/guix.texi:8676 msgid "This variable is exported by @code{(guix build-system r)}. It implements the build procedure used by @uref{https://r-project.org, R} packages, which essentially is little more than running @samp{R CMD INSTALL --library=/gnu/store/@dots{}} in an environment where @env{R_LIBS_SITE} contains the paths to all R package inputs. Tests are run after installation using the R function @code{tools::testInstalledPackage}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8621 +#: guix-git/doc/guix.texi:8678 #, no-wrap msgid "{Scheme Variable} rakudo-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8629 +#: guix-git/doc/guix.texi:8686 msgid "This variable is exported by @code{(guix build-system rakudo)}. It implements the build procedure used by @uref{https://rakudo.org/, Rakudo} for @uref{https://perl6.org/, Perl6} packages. It installs the package to @code{/gnu/store/@dots{}/NAME-VERSION/share/perl6} and installs the binaries, library files and the resources, as well as wrap the files under the @code{bin/} directory. Tests can be skipped by passing @code{#f} to the @code{tests?} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8637 +#: guix-git/doc/guix.texi:8694 msgid "Which rakudo package is used can be specified with @code{rakudo}. Which perl6-tap-harness package used for the tests can be specified with @code{#:prove6} or removed by passing @code{#f} to the @code{with-prove6?} parameter. Which perl6-zef package used for tests and installing can be specified with @code{#:zef} or removed by passing @code{#f} to the @code{with-zef?} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8639 +#: guix-git/doc/guix.texi:8696 #, no-wrap msgid "{Scheme Variable} texlive-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8644 +#: guix-git/doc/guix.texi:8701 msgid "This variable is exported by @code{(guix build-system texlive)}. It is used to build TeX packages in batch mode with a specified engine. The build system sets the @env{TEXINPUTS} variable to find all TeX source files in the inputs." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8653 +#: guix-git/doc/guix.texi:8710 msgid "By default it runs @code{luatex} on all files ending on @code{ins}. A different engine and format can be specified with the @code{#:tex-format} argument. Different build targets can be specified with the @code{#:build-targets} argument, which expects a list of file names. The build system adds only @code{texlive-bin} and @code{texlive-latex-base} (both from @code{(gnu packages tex}) to the inputs. Both can be overridden with the arguments @code{#:texlive-bin} and @code{#:texlive-latex-base}, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8656 +#: guix-git/doc/guix.texi:8713 msgid "The @code{#:tex-directory} parameter tells the build system where to install the built files under the texmf tree." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8658 +#: guix-git/doc/guix.texi:8715 #, no-wrap msgid "{Scheme Variable} ruby-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8662 +#: guix-git/doc/guix.texi:8719 msgid "This variable is exported by @code{(guix build-system ruby)}. It implements the RubyGems build procedure used by Ruby packages, which involves running @code{gem build} followed by @code{gem install}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8670 +#: guix-git/doc/guix.texi:8727 msgid "The @code{source} field of a package that uses this build system typically references a gem archive, since this is the format that Ruby developers use when releasing their software. The build system unpacks the gem archive, potentially patches the source, runs the test suite, repackages the gem, and installs it. Additionally, directories and tarballs may be referenced to allow building unreleased gems from Git or a traditional source release tarball." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8674 +#: guix-git/doc/guix.texi:8731 msgid "Which Ruby package is used can be specified with the @code{#:ruby} parameter. A list of additional flags to be passed to the @command{gem} command can be specified with the @code{#:gem-flags} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8676 +#: guix-git/doc/guix.texi:8733 #, no-wrap msgid "{Scheme Variable} waf-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8682 +#: guix-git/doc/guix.texi:8739 msgid "This variable is exported by @code{(guix build-system waf)}. It implements a build procedure around the @code{waf} script. The common phases---@code{configure}, @code{build}, and @code{install}---are implemented by passing their names as arguments to the @code{waf} script." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8686 +#: guix-git/doc/guix.texi:8743 msgid "The @code{waf} script is executed by the Python interpreter. Which Python package is used to run the script can be specified with the @code{#:python} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8688 +#: guix-git/doc/guix.texi:8745 #, no-wrap msgid "{Scheme Variable} scons-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8694 +#: guix-git/doc/guix.texi:8751 msgid "This variable is exported by @code{(guix build-system scons)}. It implements the build procedure used by the SCons software construction tool. This build system runs @code{scons} to build the package, @code{scons test} to run tests, and then @code{scons install} to install the package." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8701 +#: guix-git/doc/guix.texi:8758 msgid "Additional flags to be passed to @code{scons} can be specified with the @code{#:scons-flags} parameter. The default build and install targets can be overridden with @code{#:build-targets} and @code{#:install-targets} respectively. The version of Python used to run SCons can be specified by selecting the appropriate SCons package with the @code{#:scons} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8703 +#: guix-git/doc/guix.texi:8760 #, no-wrap msgid "{Scheme Variable} haskell-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8717 +#: guix-git/doc/guix.texi:8774 msgid "This variable is exported by @code{(guix build-system haskell)}. It implements the Cabal build procedure used by Haskell packages, which involves running @code{runhaskell Setup.hs configure --prefix=/gnu/store/@dots{}} and @code{runhaskell Setup.hs build}. Instead of installing the package by running @code{runhaskell Setup.hs install}, to avoid trying to register libraries in the read-only compiler store directory, the build system uses @code{runhaskell Setup.hs copy}, followed by @code{runhaskell Setup.hs register}. In addition, the build system generates the package documentation by running @code{runhaskell Setup.hs haddock}, unless @code{#:haddock? #f} is passed. Optional Haddock parameters can be passed with the help of the @code{#:haddock-flags} parameter. If the file @code{Setup.hs} is not found, the build system looks for @code{Setup.lhs} instead." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8720 +#: guix-git/doc/guix.texi:8777 msgid "Which Haskell compiler is used can be specified with the @code{#:haskell} parameter which defaults to @code{ghc}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8722 +#: guix-git/doc/guix.texi:8779 #, no-wrap msgid "{Scheme Variable} dub-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8727 +#: guix-git/doc/guix.texi:8784 msgid "This variable is exported by @code{(guix build-system dub)}. It implements the Dub build procedure used by D packages, which involves running @code{dub build} and @code{dub run}. Installation is done by copying the files manually." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8730 +#: guix-git/doc/guix.texi:8787 msgid "Which D compiler is used can be specified with the @code{#:ldc} parameter which defaults to @code{ldc}." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:8733 +#: guix-git/doc/guix.texi:8790 msgid "emacs-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8733 +#: guix-git/doc/guix.texi:8790 #, no-wrap msgid "{Scheme Variable} emacs-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8737 +#: guix-git/doc/guix.texi:8794 msgid "This variable is exported by @code{(guix build-system emacs)}. It implements an installation procedure similar to the packaging system of Emacs itself (@pxref{Packages,,, emacs, The GNU Emacs Manual})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8743 +#: guix-git/doc/guix.texi:8800 msgid "It first creates the @code{@code{package}-autoloads.el} file, then it byte compiles all Emacs Lisp files. Differently from the Emacs packaging system, the Info documentation files are moved to the standard documentation directory and the @file{dir} file is deleted. The Elisp package files are installed directly under @file{share/emacs/site-lisp}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8745 +#: guix-git/doc/guix.texi:8802 #, no-wrap msgid "{Scheme Variable} font-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8751 +#: guix-git/doc/guix.texi:8808 msgid "This variable is exported by @code{(guix build-system font)}. It implements an installation procedure for font packages where upstream provides pre-compiled TrueType, OpenType, etc.@: font files that merely need to be copied into place. It copies font files to standard locations in the output directory." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8753 +#: guix-git/doc/guix.texi:8810 #, no-wrap msgid "{Scheme Variable} meson-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8757 +#: guix-git/doc/guix.texi:8814 msgid "This variable is exported by @code{(guix build-system meson)}. It implements the build procedure for packages that use @url{https://mesonbuild.com, Meson} as their build system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8761 +#: guix-git/doc/guix.texi:8818 msgid "It adds both Meson and @uref{https://ninja-build.org/, Ninja} to the set of inputs, and they can be changed with the parameters @code{#:meson} and @code{#:ninja} if needed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8764 +#: guix-git/doc/guix.texi:8821 msgid "This build system is an extension of @code{gnu-build-system}, but with the following phases changed to some specific for Meson:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8767 guix-git/doc/guix.texi:8818 -#: guix-git/doc/guix.texi:8886 +#: guix-git/doc/guix.texi:8824 guix-git/doc/guix.texi:8875 +#: guix-git/doc/guix.texi:8947 #, no-wrap msgid "configure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8772 +#: guix-git/doc/guix.texi:8829 msgid "The phase runs @code{meson} with the flags specified in @code{#:configure-flags}. The flag @option{--buildtype} is always set to @code{debugoptimized} unless something else is specified in @code{#:build-type}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8776 +#: guix-git/doc/guix.texi:8833 msgid "The phase runs @code{ninja} to build the package in parallel by default, but this can be changed with @code{#:parallel-build?}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8782 +#: guix-git/doc/guix.texi:8839 msgid "The phase runs @samp{meson test} with a base set of options that cannot be overridden. This base set of options can be extended via the @code{#:test-options} argument, for example to select or skip a specific test suite." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8785 +#: guix-git/doc/guix.texi:8842 msgid "The phase runs @code{ninja install} and can not be changed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8788 +#: guix-git/doc/guix.texi:8845 msgid "Apart from that, the build system also adds the following phases:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8791 +#: guix-git/doc/guix.texi:8848 #, no-wrap msgid "fix-runpath" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8798 +#: guix-git/doc/guix.texi:8855 msgid "This phase ensures that all binaries can find the libraries they need. It searches for required libraries in subdirectories of the package being built, and adds those to @code{RUNPATH} where needed. It also removes references to libraries left over from the build phase by @code{meson}, such as test dependencies, that aren't actually required for the program to run." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8802 guix-git/doc/guix.texi:8806 +#: guix-git/doc/guix.texi:8859 guix-git/doc/guix.texi:8863 msgid "This phase is the phase provided by @code{glib-or-gtk-build-system}, and it is not enabled by default. It can be enabled with @code{#:glib-or-gtk?}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8809 +#: guix-git/doc/guix.texi:8866 #, no-wrap msgid "{Scheme Variable} linux-module-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8811 +#: guix-git/doc/guix.texi:8868 msgid "@code{linux-module-build-system} allows building Linux kernel modules." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8815 +#: guix-git/doc/guix.texi:8872 msgid "This build system is an extension of @code{gnu-build-system}, but with the following phases changed:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8821 +#: guix-git/doc/guix.texi:8878 msgid "This phase configures the environment so that the Linux kernel's Makefile can be used to build the external kernel module." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8825 +#: guix-git/doc/guix.texi:8882 msgid "This phase uses the Linux kernel's Makefile in order to build the external kernel module." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8829 +#: guix-git/doc/guix.texi:8886 msgid "This phase uses the Linux kernel's Makefile in order to install the external kernel module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8834 +#: guix-git/doc/guix.texi:8891 msgid "It is possible and useful to specify the Linux kernel to use for building the module (in the @code{arguments} form of a package using the @code{linux-module-build-system}, use the key @code{#:linux} to specify it)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8836 +#: guix-git/doc/guix.texi:8893 #, no-wrap msgid "{Scheme Variable} node-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8841 +#: guix-git/doc/guix.texi:8898 msgid "This variable is exported by @code{(guix build-system node)}. It implements the build procedure used by @uref{https://nodejs.org, Node.js}, which implements an approximation of the @code{npm install} command, followed by an @code{npm test} command." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8845 +#: guix-git/doc/guix.texi:8902 msgid "Which Node.js package is used to interpret the @code{npm} commands can be specified with the @code{#:node} parameter which defaults to @code{node}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8851 +#: guix-git/doc/guix.texi:8908 msgid "Lastly, for packages that do not need anything as sophisticated, a ``trivial'' build system is provided. It is trivial in the sense that it provides basically no support: it does not pull any implicit inputs, and does not have a notion of build phases." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8852 +#: guix-git/doc/guix.texi:8909 #, no-wrap msgid "{Scheme Variable} trivial-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8854 +#: guix-git/doc/guix.texi:8911 msgid "This variable is exported by @code{(guix build-system trivial)}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8859 +#: guix-git/doc/guix.texi:8916 msgid "This build system requires a @code{#:builder} argument. This argument must be a Scheme expression that builds the package output(s)---as with @code{build-expression->derivation} (@pxref{Derivations, @code{build-expression->derivation}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8864 +#: guix-git/doc/guix.texi:8921 #, no-wrap msgid "build phases, for packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8870 +#: guix-git/doc/guix.texi:8927 msgid "Almost all package build systems implement a notion @dfn{build phases}: a sequence of actions that the build system executes, when you build the package, leading to the installed byproducts in the store. A notable exception is the ``bare-bones'' @code{trivial-build-system} (@pxref{Build Systems})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8874 +#: guix-git/doc/guix.texi:8931 msgid "As discussed in the previous section, those build systems provide a standard list of phases. For @code{gnu-build-system}, the main build phases are the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8876 +#: guix-git/doc/guix.texi:8933 +#, fuzzy, no-wrap +#| msgid "--search-paths" +msgid "set-paths" +msgstr "--search-paths" + +#. type: table +#: guix-git/doc/guix.texi:8936 +msgid "Define search path environment variables for all the input packages, including @env{PATH} (@pxref{Search Paths})." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:8937 #, no-wrap msgid "unpack" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8880 +#: guix-git/doc/guix.texi:8941 msgid "Unpack the source tarball, and change the current directory to the extracted source tree. If the source is actually a directory, copy it to the build tree, and enter that directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8881 +#: guix-git/doc/guix.texi:8942 #, no-wrap msgid "patch-source-shebangs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8885 +#: guix-git/doc/guix.texi:8946 msgid "Patch shebangs encountered in source files so they refer to the right store file names. For instance, this changes @code{#!/bin/sh} to @code{#!/gnu/store/@dots{}-bash-4.3/bin/sh}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8890 +#: guix-git/doc/guix.texi:8951 msgid "Run the @file{configure} script with a number of default options, such as @option{--prefix=/gnu/store/@dots{}}, as well as the options specified by the @code{#:configure-flags} argument." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8895 +#: guix-git/doc/guix.texi:8956 msgid "Run @code{make} with the list of flags specified with @code{#:make-flags}. If the @code{#:parallel-build?} argument is true (the default), build with @code{make -j}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8901 +#: guix-git/doc/guix.texi:8962 msgid "Run @code{make check}, or some other target specified with @code{#:test-target}, unless @code{#:tests? #f} is passed. If the @code{#:parallel-tests?} argument is true (the default), run @code{make check -j}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8904 +#: guix-git/doc/guix.texi:8965 msgid "Run @code{make install} with the flags listed in @code{#:make-flags}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8905 +#: guix-git/doc/guix.texi:8966 #, no-wrap msgid "patch-shebangs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8907 +#: guix-git/doc/guix.texi:8968 msgid "Patch shebangs on the installed executable files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8908 +#: guix-git/doc/guix.texi:8969 #, no-wrap msgid "strip" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8912 +#: guix-git/doc/guix.texi:8973 msgid "Strip debugging symbols from ELF files (unless @code{#:strip-binaries?} is false), copying them to the @code{debug} output when available (@pxref{Installing Debugging Files})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8921 +#: guix-git/doc/guix.texi:8982 msgid "Other build systems have similar phases, with some variations. For example, @code{cmake-build-system} has same-named phases but its @code{configure} phases runs @code{cmake} instead of @code{./configure}. Others, such as @code{python-build-system}, have a wholly different list of standard phases. All this code runs on the @dfn{build side}: it is evaluated when you actually build the package, in a dedicated build process spawned by the build daemon (@pxref{Invoking guix-daemon})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8928 +#: guix-git/doc/guix.texi:8989 msgid "Build phases are represented as association lists or ``alists'' (@pxref{Association Lists,,, guile, GNU Guile Reference Manual}) where each key is a symbol for the name of the phase and the associated value is a procedure that accepts an arbitrary number of arguments. By convention, those procedures receive information about the build in the form of @dfn{keyword parameters}, which they can use or ignore." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:8929 +#: guix-git/doc/guix.texi:8990 #, no-wrap msgid "%standard-phases" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8935 +#: guix-git/doc/guix.texi:8996 msgid "For example, here is how @code{(guix build gnu-build-system)} defines @code{%standard-phases}, the variable holding its alist of build phases@footnote{We present a simplified view of those build phases, but do take a look at @code{(guix build gnu-build-system)} to see all the details!}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8938 +#: guix-git/doc/guix.texi:8999 #, no-wrap msgid "" ";; The build phases of 'gnu-build-system'.\n" @@ -17155,7 +17294,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8942 +#: guix-git/doc/guix.texi:9003 #, no-wrap msgid "" "(define* (unpack #:key source #:allow-other-keys)\n" @@ -17165,7 +17304,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8948 +#: guix-git/doc/guix.texi:9009 #, no-wrap msgid "" "(define* (configure #:key outputs #:allow-other-keys)\n" @@ -17177,7 +17316,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8952 +#: guix-git/doc/guix.texi:9013 #, no-wrap msgid "" "(define* (build #:allow-other-keys)\n" @@ -17187,7 +17326,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8959 +#: guix-git/doc/guix.texi:9020 #, no-wrap msgid "" "(define* (check #:key (test-target \"check\") (tests? #true)\n" @@ -17200,7 +17339,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8963 +#: guix-git/doc/guix.texi:9024 #, no-wrap msgid "" "(define* (install #:allow-other-keys)\n" @@ -17210,7 +17349,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8972 +#: guix-git/doc/guix.texi:9033 #, no-wrap msgid "" "(define %standard-phases\n" @@ -17224,38 +17363,38 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8982 +#: guix-git/doc/guix.texi:9043 msgid "This shows how @code{%standard-phases} is defined as a list of symbol/procedure pairs (@pxref{Pairs,,, guile, GNU Guile Reference Manual}). The first pair associates the @code{unpack} procedure with the @code{unpack} symbol---a name; the second pair defines the @code{configure} phase similarly, and so on. When building a package that uses @code{gnu-build-system} with its default list of phases, those phases are executed sequentially. You can see the name of each phase started and completed in the build log of packages that you build." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8988 +#: guix-git/doc/guix.texi:9049 msgid "Let's now look at the procedures themselves. Each one is defined with @code{define*}: @code{#:key} lists keyword parameters the procedure accepts, possibly with a default value, and @code{#:allow-other-keys} specifies that other keyword parameters are ignored (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9004 +#: guix-git/doc/guix.texi:9065 msgid "The @code{unpack} procedure honors the @code{source} parameter, which the build system uses to pass the file name of the source tarball (or version control checkout), and it ignores other parameters. The @code{configure} phase only cares about the @code{outputs} parameter, an alist mapping package output names to their store file name (@pxref{Packages with Multiple Outputs}). It extracts the file name of for @code{out}, the default output, and passes it to @command{./configure} as the installation prefix, meaning that @command{make install} will eventually copy all the files in that directory (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards}). @code{build} and @code{install} ignore all their arguments. @code{check} honors the @code{test-target} argument, which specifies the name of the Makefile target to run tests; it prints a message and skips tests when @code{tests?} is false." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9005 +#: guix-git/doc/guix.texi:9066 #, no-wrap msgid "build phases, customizing" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9014 +#: guix-git/doc/guix.texi:9075 msgid "The list of phases used for a particular package can be changed with the @code{#:phases} parameter of the build system. Changing the set of build phases boils down to building a new alist of phases based on the @code{%standard-phases} alist described above. This can be done with standard alist procedures such as @code{alist-delete} (@pxref{SRFI-1 Association Lists,,, guile, GNU Guile Reference Manual}); however, it is more convenient to do so with @code{modify-phases} (@pxref{Build Utilities, @code{modify-phases}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9019 +#: guix-git/doc/guix.texi:9080 msgid "Here is an example of a package definition that removes the @code{configure} phase of @code{%standard-phases} and inserts a new phase before the @code{build} phase, called @code{set-prefix-in-makefile}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9039 +#: guix-git/doc/guix.texi:9100 #, no-wrap msgid "" "(define-public example\n" @@ -17279,44 +17418,44 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9045 +#: guix-git/doc/guix.texi:9106 msgid "The new phase that is inserted is written as an anonymous procedure, introduced with @code{lambda*}; it honors the @code{outputs} parameter we have seen before. @xref{Build Utilities}, for more about the helpers used by this phase, and for more examples of @code{modify-phases}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9046 guix-git/doc/guix.texi:10046 +#: guix-git/doc/guix.texi:9107 guix-git/doc/guix.texi:10360 #, no-wrap msgid "code staging" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9047 guix-git/doc/guix.texi:10047 +#: guix-git/doc/guix.texi:9108 guix-git/doc/guix.texi:10361 #, no-wrap msgid "staging, of code" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9054 +#: guix-git/doc/guix.texi:9115 msgid "Keep in mind that build phases are code evaluated at the time the package is actually built. This explains why the whole @code{modify-phases} expression above is quoted (it comes after the @code{'} or apostrophe): it is @dfn{staged} for later execution. @xref{G-Expressions}, for an explanation of code staging and the @dfn{code strata} involved." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9064 +#: guix-git/doc/guix.texi:9125 msgid "As soon as you start writing non-trivial package definitions (@pxref{Defining Packages}) or other build actions (@pxref{G-Expressions}), you will likely start looking for helpers for ``shell-like'' actions---creating directories, copying and deleting files recursively, manipulating build phases, and so on. The @code{(guix build utils)} module provides such utility procedures." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9068 +#: guix-git/doc/guix.texi:9129 msgid "Most build systems load @code{(guix build utils)} (@pxref{Build Systems}). Thus, when writing custom build phases for your package definitions, you can usually assume those procedures are in scope." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9073 +#: guix-git/doc/guix.texi:9134 msgid "When writing G-expressions, you can import @code{(guix build utils)} on the ``build side'' using @code{with-imported-modules} and then put it in scope with the @code{use-modules} form (@pxref{Using Guile Modules,,, guile, GNU Guile Reference Manual}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9080 +#: guix-git/doc/guix.texi:9141 #, no-wrap msgid "" "(with-imported-modules '((guix build utils)) ;import it\n" @@ -17328,7 +17467,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9083 +#: guix-git/doc/guix.texi:9144 #, no-wrap msgid "" " ;; Happily use its 'mkdir-p' procedure.\n" @@ -17336,238 +17475,238 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9087 +#: guix-git/doc/guix.texi:9148 msgid "The remainder of this section is the reference for most of the utility procedures provided by @code{(guix build utils)}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9090 +#: guix-git/doc/guix.texi:9151 #, no-wrap msgid "Dealing with Store File Names" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9093 +#: guix-git/doc/guix.texi:9154 msgid "This section documents procedures that deal with store file names." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9094 +#: guix-git/doc/guix.texi:9155 #, no-wrap msgid "{Scheme Procedure} %store-directory" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9096 +#: guix-git/doc/guix.texi:9157 msgid "Return the directory name of the store." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9098 +#: guix-git/doc/guix.texi:9159 #, no-wrap msgid "{Scheme Procedure} store-file-name? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9100 +#: guix-git/doc/guix.texi:9161 msgid "Return true if @var{file} is in the store." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9102 +#: guix-git/doc/guix.texi:9163 #, no-wrap msgid "{Scheme Procedure} strip-store-file-name @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9105 +#: guix-git/doc/guix.texi:9166 msgid "Strip the @file{/gnu/store} and hash from @var{file}, a store file name. The result is typically a @code{\"@var{package}-@var{version}\"} string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9107 +#: guix-git/doc/guix.texi:9168 #, no-wrap msgid "{Scheme Procedure} package-name->name+version @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9112 +#: guix-git/doc/guix.texi:9173 msgid "Given @var{name}, a package name like @code{\"foo-0.9.1b\"}, return two values: @code{\"foo\"} and @code{\"0.9.1b\"}. When the version part is unavailable, @var{name} and @code{#f} are returned. The first hyphen followed by a digit is considered to introduce the version part." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9114 +#: guix-git/doc/guix.texi:9175 #, no-wrap msgid "File Types" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9117 +#: guix-git/doc/guix.texi:9178 msgid "The procedures below deal with files and file types." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9118 +#: guix-git/doc/guix.texi:9179 #, no-wrap msgid "{Scheme Procedure} directory-exists? @var{dir}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9120 +#: guix-git/doc/guix.texi:9181 msgid "Return @code{#t} if @var{dir} exists and is a directory." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9122 +#: guix-git/doc/guix.texi:9183 #, no-wrap msgid "{Scheme Procedure} executable-file? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9124 +#: guix-git/doc/guix.texi:9185 msgid "Return @code{#t} if @var{file} exists and is executable." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9126 +#: guix-git/doc/guix.texi:9187 #, no-wrap msgid "{Scheme Procedure} symbolic-link? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9128 +#: guix-git/doc/guix.texi:9189 msgid "Return @code{#t} if @var{file} is a symbolic link (aka. a ``symlink'')." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9130 +#: guix-git/doc/guix.texi:9191 #, no-wrap msgid "{Scheme Procedure} elf-file? @var{file}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9131 +#: guix-git/doc/guix.texi:9192 #, no-wrap msgid "{Scheme Procedure} ar-file? @var{file}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9132 +#: guix-git/doc/guix.texi:9193 #, no-wrap msgid "{Scheme Procedure} gzip-file? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9135 +#: guix-git/doc/guix.texi:9196 msgid "Return @code{#t} if @var{file} is, respectively, an ELF file, an @code{ar} archive (such as a @file{.a} static library), or a gzip file." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9137 +#: guix-git/doc/guix.texi:9198 #, no-wrap msgid "{Scheme Procedure} reset-gzip-timestamp @var{file} [#:keep-mtime? #t]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9141 +#: guix-git/doc/guix.texi:9202 msgid "If @var{file} is a gzip file, reset its embedded timestamp (as with @command{gzip --no-name}) and return true. Otherwise return @code{#f}. When @var{keep-mtime?} is true, preserve @var{file}'s modification time." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9143 +#: guix-git/doc/guix.texi:9204 #, no-wrap msgid "File Manipulation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9150 +#: guix-git/doc/guix.texi:9211 msgid "The following procedures and macros help create, modify, and delete files. They provide functionality comparable to common shell utilities such as @command{mkdir -p}, @command{cp -r}, @command{rm -r}, and @command{sed}. They complement Guile's extensive, but low-level, file system interface (@pxref{POSIX,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9151 +#: guix-git/doc/guix.texi:9212 #, no-wrap msgid "{Scheme Syntax} with-directory-excursion @var{directory} @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9153 +#: guix-git/doc/guix.texi:9214 msgid "Run @var{body} with @var{directory} as the process's current directory." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9160 +#: guix-git/doc/guix.texi:9221 msgid "Essentially, this macro changes the current directory to @var{directory} before evaluating @var{body}, using @code{chdir} (@pxref{Processes,,, guile, GNU Guile Reference Manual}). It changes back to the initial directory when the dynamic extent of @var{body} is left, be it @i{via} normal procedure return or @i{via} a non-local exit such as an exception." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9162 +#: guix-git/doc/guix.texi:9223 #, no-wrap msgid "{Scheme Procedure} mkdir-p @var{dir}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9164 +#: guix-git/doc/guix.texi:9225 msgid "Create directory @var{dir} and all its ancestors." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9166 +#: guix-git/doc/guix.texi:9227 #, no-wrap msgid "{Scheme Procedure} install-file @var{file} @var{directory}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9169 +#: guix-git/doc/guix.texi:9230 msgid "Create @var{directory} if it does not exist and copy @var{file} in there under the same name." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9171 +#: guix-git/doc/guix.texi:9232 #, no-wrap msgid "{Scheme Procedure} make-file-writable @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9173 +#: guix-git/doc/guix.texi:9234 msgid "Make @var{file} writable for its owner." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9175 +#: guix-git/doc/guix.texi:9236 #, no-wrap msgid "{Scheme Procedure} copy-recursively @var{source} @var{destination} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9184 +#: guix-git/doc/guix.texi:9245 msgid "[#:log (current-output-port)] [#:follow-symlinks? #f] @ [#:copy-file copy-file] [#:keep-mtime? #f] [#:keep-permissions? #t] Copy @var{source} directory to @var{destination}. Follow symlinks if @var{follow-symlinks?} is true; otherwise, just preserve them. Call @var{copy-file} to copy regular files. When @var{keep-mtime?} is true, keep the modification time of the files in @var{source} on those of @var{destination}. When @var{keep-permissions?} is true, preserve file permissions. Write verbose output to the @var{log} port." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9186 +#: guix-git/doc/guix.texi:9247 #, no-wrap msgid "{Scheme Procedure} delete-file-recursively @var{dir} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9191 +#: guix-git/doc/guix.texi:9252 msgid "[#:follow-mounts? #f] Delete @var{dir} recursively, like @command{rm -rf}, without following symlinks. Don't follow mount points either, unless @var{follow-mounts?} is true. Report but ignore errors." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9193 +#: guix-git/doc/guix.texi:9254 #, no-wrap msgid "{Scheme Syntax} substitute* @var{file} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9198 +#: guix-git/doc/guix.texi:9259 msgid "((@var{regexp} @var{match-var}@dots{}) @var{body}@dots{}) @dots{} Substitute @var{regexp} in @var{file} by the string returned by @var{body}. @var{body} is evaluated with each @var{match-var} bound to the corresponding positional regexp sub-expression. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9205 +#: guix-git/doc/guix.texi:9266 #, no-wrap msgid "" "(substitute* file\n" @@ -17578,71 +17717,71 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9211 +#: guix-git/doc/guix.texi:9272 msgid "Here, anytime a line of @var{file} contains @code{hello}, it is replaced by @code{good morning}. Anytime a line of @var{file} matches the second regexp, @code{all} is bound to the complete match, @code{letters} is bound to the first sub-expression, and @code{end} is bound to the last one." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9214 +#: guix-git/doc/guix.texi:9275 msgid "When one of the @var{match-var} is @code{_}, no variable is bound to the corresponding match substring." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9217 +#: guix-git/doc/guix.texi:9278 msgid "Alternatively, @var{file} may be a list of file names, in which case they are all subject to the substitutions." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9220 +#: guix-git/doc/guix.texi:9281 msgid "Be careful about using @code{$} to match the end of a line; by itself it won't match the terminating newline of a line." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9222 +#: guix-git/doc/guix.texi:9283 #, no-wrap msgid "File Search" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9224 +#: guix-git/doc/guix.texi:9285 #, no-wrap msgid "file, searching" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9226 +#: guix-git/doc/guix.texi:9287 msgid "This section documents procedures to search and filter files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9227 +#: guix-git/doc/guix.texi:9288 #, no-wrap msgid "{Scheme Procedure} file-name-predicate @var{regexp}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9230 +#: guix-git/doc/guix.texi:9291 msgid "Return a predicate that returns true when passed a file name whose base name matches @var{regexp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9232 +#: guix-git/doc/guix.texi:9293 #, no-wrap msgid "{Scheme Procedure} find-files @var{dir} [@var{pred}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9243 +#: guix-git/doc/guix.texi:9304 msgid "[#:stat lstat] [#:directories? #f] [#:fail-on-error? #f] Return the lexicographically sorted list of files under @var{dir} for which @var{pred} returns true. @var{pred} is passed two arguments: the absolute file name, and its stat buffer; the default predicate always returns true. @var{pred} can also be a regular expression, in which case it is equivalent to @code{(file-name-predicate @var{pred})}. @var{stat} is used to obtain file information; using @code{lstat} means that symlinks are not followed. If @var{directories?} is true, then directories will also be included. If @var{fail-on-error?} is true, raise an exception upon error." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9247 +#: guix-git/doc/guix.texi:9308 msgid "Here are a few examples where we assume that the current directory is the root of the Guix source tree:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9252 +#: guix-git/doc/guix.texi:9313 #, no-wrap msgid "" ";; List all the regular files in the current directory.\n" @@ -17652,7 +17791,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9256 +#: guix-git/doc/guix.texi:9317 #, no-wrap msgid "" ";; List all the .scm files under gnu/services.\n" @@ -17662,7 +17801,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9260 +#: guix-git/doc/guix.texi:9321 #, no-wrap msgid "" ";; List ar files in the current directory.\n" @@ -17671,45 +17810,45 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9262 +#: guix-git/doc/guix.texi:9323 #, no-wrap msgid "{Scheme Procedure} which @var{program}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9265 +#: guix-git/doc/guix.texi:9326 msgid "Return the complete file name for @var{program} as found in @code{$PATH}, or @code{#f} if @var{program} could not be found." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9267 +#: guix-git/doc/guix.texi:9328 #, no-wrap msgid "{Scheme Procedure} search-input-file @var{inputs} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9268 +#: guix-git/doc/guix.texi:9329 #, no-wrap msgid "{Scheme Procedure} search-input-directory @var{inputs} @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9273 +#: guix-git/doc/guix.texi:9334 msgid "Return the complete file name for @var{name} as found in @var{inputs}; @code{search-input-file} searches for a regular file and @code{search-input-directory} searches for a directory. If @var{name} could not be found, an exception is raised." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9277 +#: guix-git/doc/guix.texi:9338 msgid "Here, @var{inputs} must be an association list like @code{inputs} and @code{native-inputs} as available to build phases (@pxref{Build Phases})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9281 +#: guix-git/doc/guix.texi:9342 msgid "Here is a (simplified) example of how @code{search-input-file} is used in a build phase of the @code{wireguard-tools} package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9290 +#: guix-git/doc/guix.texi:9351 #, no-wrap msgid "" "(add-after 'install 'wrap-wg-quick\n" @@ -17721,35 +17860,215 @@ msgid "" " `(\"PATH\" \":\" prefix ,(list coreutils))))))\n" msgstr "" +#. type: subsection +#: guix-git/doc/guix.texi:9353 +#, fuzzy, no-wrap +#| msgid "Log Rotation" +msgid "Program Invocation" +msgstr "Rotação de log" + +#. type: cindex +#: guix-git/doc/guix.texi:9355 +#, no-wrap +msgid "program invocation, from Scheme" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:9356 +#, no-wrap +msgid "invoking programs, from Scheme" +msgstr "" + #. type: Plain text -#: guix-git/doc/guix.texi:9301 +#: guix-git/doc/guix.texi:9360 +msgid "You'll find handy procedures to spawn processes in this module, essentially convenient wrappers around Guile's @code{system*} (@pxref{Processes, @code{system*},, guile, GNU Guile Reference Manual})." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9361 +#, no-wrap +msgid "{Scheme Procedure} invoke @var{program} @var{args}@dots{}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9365 +msgid "Invoke @var{program} with the given @var{args}. Raise an @code{&invoke-error} exception if the exit code is non-zero; otherwise return @code{#t}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9369 +msgid "The advantage compared to @code{system*} is that you do not need to check the return value. This reduces boilerplate in shell-script-like snippets for instance in package build phases." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9371 +#, no-wrap +msgid "{Scheme Procedure} invoke-error? @var{c}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9373 +msgid "Return true if @var{c} is an @code{&invoke-error} condition." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9375 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-program @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9376 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-arguments @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9377 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-exit-status @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9378 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-term-signal @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9379 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-stop-signal @var{c}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9381 +msgid "Access specific fields of @var{c}, an @code{&invoke-error} condition." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9383 +#, no-wrap +msgid "{Scheme Procedure} report-invoke-error @var{c} [@var{port}]" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9386 +msgid "Report to @var{port} (by default the current error port) about @var{c}, an @code{&invoke-error} condition, in a human-friendly way." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9388 +msgid "Typical usage would look like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9392 +#, no-wrap +msgid "" +"(use-modules (srfi srfi-34) ;for 'guard'\n" +" (guix build utils))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9396 +#, no-wrap +msgid "" +"(guard (c ((invoke-error? c)\n" +" (report-invoke-error c)))\n" +" (invoke \"date\" \"--imaginary-option\"))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9398 +#, no-wrap +msgid "@print{} command \"date\" \"--imaginary-option\" failed with status 1\n" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9401 +#, no-wrap +msgid "{Scheme Procedure} invoke/quiet @var{program} @var{args}@dots{}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9407 +msgid "Invoke @var{program} with @var{args} and capture @var{program}'s standard output and standard error. If @var{program} succeeds, print nothing and return the unspecified value; otherwise, raise a @code{&message} error condition that includes the status code and the output of @var{program}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9409 +msgid "Here's an example:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9414 +#, no-wrap +msgid "" +"(use-modules (srfi srfi-34) ;for 'guard'\n" +" (srfi srfi-35) ;for 'message-condition?'\n" +" (guix build utils))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9419 +#, no-wrap +msgid "" +"(guard (c ((message-condition? c)\n" +" (display (condition-message c))))\n" +" (invoke/quiet \"date\") ;all is fine\n" +" (invoke/quiet \"date\" \"--imaginary-option\"))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9421 +#, no-wrap +msgid "" +"@print{} 'date --imaginary-option' exited with status 1; output follows:\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9424 +#, no-wrap +msgid "" +" date: unrecognized option '--imaginary-option'\n" +" Try 'date --help' for more information.\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9436 msgid "The @code{(guix build utils)} also contains tools to manipulate build phases as used by build systems (@pxref{Build Systems}). Build phases are represented as association lists or ``alists'' (@pxref{Association Lists,,, guile, GNU Guile Reference Manual}) where each key is a symbol naming the phase and the associated value is a procedure (@pxref{Build Phases})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9305 +#: guix-git/doc/guix.texi:9440 msgid "Guile core and the @code{(srfi srfi-1)} module both provide tools to manipulate alists. The @code{(guix build utils)} module complements those with tools written with build phases in mind." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9306 +#: guix-git/doc/guix.texi:9441 #, no-wrap msgid "build phases, modifying" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9307 +#: guix-git/doc/guix.texi:9442 #, no-wrap msgid "{Scheme Syntax} modify-phases @var{phases} @var{clause}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9310 +#: guix-git/doc/guix.texi:9445 msgid "Modify @var{phases} sequentially as per each @var{clause}, which may have one of the following forms:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9316 +#: guix-git/doc/guix.texi:9451 #, no-wrap msgid "" "(delete @var{old-phase-name})\n" @@ -17759,17 +18078,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9320 +#: guix-git/doc/guix.texi:9455 msgid "Where every @var{phase-name} above is an expression evaluating to a symbol, and @var{new-phase} an expression evaluating to a procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9331 +#: guix-git/doc/guix.texi:9466 msgid "The example below is taken from the definition of the @code{grep} package. It adds a phase to run after the @code{install} phase, called @code{fix-egrep-and-fgrep}. That phase is a procedure (@code{lambda*} is for anonymous procedures) that takes a @code{#:outputs} keyword argument and ignores extra keyword arguments (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual}, for more on @code{lambda*} and optional and keyword arguments.) The phase uses @code{substitute*} to modify the installed @file{egrep} and @file{fgrep} scripts so that they refer to @code{grep} by its absolute file name:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9345 +#: guix-git/doc/guix.texi:9480 #, no-wrap msgid "" "(modify-phases %standard-phases\n" @@ -17787,12 +18106,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9352 +#: guix-git/doc/guix.texi:9487 msgid "In the example below, phases are modified in two ways: the standard @code{configure} phase is deleted, presumably because the package does not have a @file{configure} script or anything similar, and the default @code{install} phase is replaced by one that manually copies the executable files to be installed:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9365 +#: guix-git/doc/guix.texi:9500 #, no-wrap msgid "" "(modify-phases %standard-phases\n" @@ -17809,377 +18128,609 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9373 +#: guix-git/doc/guix.texi:9507 +#, fuzzy, no-wrap +#| msgid "--search-paths" +msgid "search path" +msgstr "--search-paths" + +#. type: Plain text +#: guix-git/doc/guix.texi:9514 +msgid "Many programs and libraries look for input data in a @dfn{search path}, a list of directories: shells like Bash look for executables in the command search path, a C compiler looks for @file{.h} files in its header search path, the Python interpreter looks for @file{.py} files in its search path, the spell checker has a search path for dictionaries, and so on." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9522 +msgid "Search paths can usually be defined or overridden @i{via} environment variables (@pxref{Environment Variables,,, libc, The GNU C Library Reference Manual}). For example, the search paths mentioned above can be changed by defining the @env{PATH}, @env{C_INCLUDE_PATH}, @env{PYTHONPATH} (or @env{GUIX_PYTHONPATH}), and @env{DICPATH} environment variables---you know, all these something-PATH variables that you need to get right or things ``won't be found''." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9532 +msgid "You may have noticed from the command line that Guix ``knows'' which search path environment variables should be defined, and how. When you install packages in your default profile, the file @file{~/.guix-profile/etc/profile} is created, which you can ``source'' from the shell to set those variables. Likewise, if you ask @command{guix shell} to create an environment containing Python and NumPy, a Python library, and if you pass it the @option{--search-paths} option, it will tell you about @env{PATH} and @env{GUIX_PYTHONPATH} (@pxref{Invoking guix shell}):" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9537 +#, no-wrap +msgid "" +"$ guix shell python python-numpy --pure --search-paths\n" +"export PATH=\"/gnu/store/@dots{}-profile/bin\"\n" +"export GUIX_PYTHONPATH=\"/gnu/store/@dots{}-profile/lib/python3.9/site-packages\"\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9541 +msgid "When you omit @option{--search-paths}, it defines these environment variables right away, such that Python can readily find NumPy:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9550 +#, no-wrap +msgid "" +"$ guix shell python python-numpy -- python3\n" +"Python 3.9.6 (default, Jan 1 1970, 00:00:01)\n" +"[GCC 10.3.0] on linux\n" +"Type \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n" +">>> import numpy\n" +">>> numpy.version.version\n" +"'1.20.3'\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9555 +msgid "For this to work, the definition of the @code{python} package @emph{declares} the search path it cares about and its associated environment variable, @env{GUIX_PYTHONPATH}. It looks like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9565 +#, no-wrap +msgid "" +"(package\n" +" (name \"python\")\n" +" (version \"3.9.9\")\n" +" ;; some fields omitted...\n" +" (native-search-paths\n" +" (list (search-path-specification\n" +" (variable \"GUIX_PYTHONPATH\")\n" +" (files (list \"lib/python/3.9/site-packages\"))))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9580 +msgid "What this @code{native-search-paths} field says is that, when the @code{python} package is used, the @env{GUIX_PYTHONPATH} environment variable must be defined to include all the @file{lib/python/3.9/site-packages} sub-directories encountered in its environment. (The @code{native-} bit means that, if we are in a cross-compilation environment, only native inputs may be added to the search path; @pxref{package Reference, @code{search-paths}}.) In the NumPy example above, the profile where @code{python} appears contains exactly one such sub-directory, and @env{GUIX_PYTHONPATH} is set to that. When there are several @file{lib/python/3.9/site-packages}---this is the case in package build environments---they are all added to @env{GUIX_PYTHONPATH}, separated by colons (@code{:})." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9587 +msgid "Notice that @env{GUIX_PYTHONPATH} is specified as part of the definition of the @code{python} package, and @emph{not} as part of that of @code{python-numpy}. This is because this environment variable ``belongs'' to Python, not NumPy: Python actually reads the value of that variable and honors it." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9591 +msgid "Corollary: if you create a profile that does not contain @code{python}, @code{GUIX_PYTHONPATH} will @emph{not} be defined, even if it contains packages that provide @file{.py} files:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9595 +#, no-wrap +msgid "" +"$ guix shell python-numpy --search-paths --pure\n" +"export PATH=\"/gnu/store/@dots{}-profile/bin\"\n" +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9599 +msgid "This makes a lot of sense if we look at this profile in isolation: no software in this profile would read @env{GUIX_PYTHONPATH}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9609 +msgid "Of course, there are many variations on that theme: some packages honor more than one search path, some use separators other than colon, some accumulate several directories in their search path, and so on. A more complex example is the search path of libxml2: the value of the @env{XML_CATALOG_FILES} environment variable is space-separated, it must contain a list of @file{catalog.xml} files (not directories), which are to be found in @file{xml} sub-directories---nothing less. The search path specification looks like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9621 +#, no-wrap +msgid "" +"(package\n" +" (name \"libxml2\")\n" +" ;; some fields omitted\n" +" (native-search-paths\n" +" (list (search-path-specification\n" +" (variable \"XML_CATALOG_FILES\")\n" +" (separator \" \")\n" +" (files '(\"xml\"))\n" +" (file-pattern \"^catalog\\\\.xml$\")\n" +" (file-type 'regular)))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9624 +msgid "Worry not, search path specifications are usually not this tricky." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9628 +msgid "The @code{(guix search-paths)} module defines the data type of search path specifications and a number of helper procedures. Below is the reference of search path specifications." +msgstr "" + +#. type: deftp +#: guix-git/doc/guix.texi:9629 +#, fuzzy, no-wrap +msgid "{Data Type} search-path-specification" +msgstr "build-machine {Data Type}" + +#. type: deftp +#: guix-git/doc/guix.texi:9631 +msgid "The data type for search path specifications." +msgstr "" + +#. type: code{#1} +#: guix-git/doc/guix.texi:9633 +#, no-wrap +msgid "variable" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9635 +msgid "The name of the environment variable for this search path (a string)." +msgstr "" + +#. type: code{#1} +#: guix-git/doc/guix.texi:9636 guix-git/doc/guix.texi:17482 +#, no-wrap +msgid "files" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9639 +msgid "The list of sub-directories (strings) that should be added to the search path." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9640 +#, fuzzy, no-wrap +#| msgid "@code{port} (default: @code{\"667\"})" +msgid "@code{separator} (default: @code{\":\"})" +msgstr "@code{porta} (default: @code{\"667\"})" + +#. type: table +#: guix-git/doc/guix.texi:9642 +msgid "The string used to separate search path components." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9650 +msgid "As a special case, a @code{separator} value of @code{#f} specifies a ``single-component search path''---in other words, a search path that cannot contain more than one element. This is useful in some cases, such as the @code{SSL_CERT_DIR} variable (honored by OpenSSL, cURL, and a few other packages) or the @code{ASPELL_DICT_DIR} variable (honored by the GNU Aspell spell checker), both of which must point to a single directory." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9651 +#, fuzzy, no-wrap +#| msgid "@code{file} (default: @code{#f})" +msgid "@code{file-type} (default: @code{'directory})" +msgstr "@code{file} (default: @code{#f})" + +#. type: table +#: guix-git/doc/guix.texi:9655 +msgid "The type of file being matched---@code{'directory} or @code{'regular}, though it can be any symbol returned by @code{stat:type} (@pxref{File System, @code{stat},, guile, GNU Guile Reference Manual})." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9658 +msgid "In the libxml2 example above, we would match regular files; in the Python example, we would match directories." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9659 +#, fuzzy, no-wrap +#| msgid "@code{users} (default: @code{#f})" +msgid "@code{file-pattern} (default: @code{#f})" +msgstr "@code{users} (default: @code{#f})" + +#. type: table +#: guix-git/doc/guix.texi:9663 +msgid "This must be either @code{#f} or a regular expression specifying files to be matched @emph{within} the sub-directories specified by the @code{files} field." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9665 +msgid "Again, the libxml2 example shows a situation where this is needed." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9671 +msgid "How do you turn search path specifications on one hand and a bunch of directories on the other hand in a set of environment variable definitions? That's the job of @code{evaluate-search-paths}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9672 +#, no-wrap +msgid "{Scheme Procedure} evaluate-search-paths @var{search-paths} @" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9678 +msgid "@var{directories} [@var{getenv}] Evaluate @var{search-paths}, a list of search-path specifications, for @var{directories}, a list of directory names, and return a list of specification/value pairs. Use @var{getenv} to determine the current settings and report only settings not already effective." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9682 +msgid "The @code{(guix profiles)} provides a higher-level helper procedure, @code{load-profile}, that sets the environment variables of a profile." +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:9687 #, no-wrap msgid "store items" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9374 +#: guix-git/doc/guix.texi:9688 #, no-wrap msgid "store paths" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9385 +#: guix-git/doc/guix.texi:9699 msgid "Conceptually, the @dfn{store} is the place where derivations that have been built successfully are stored---by default, @file{/gnu/store}. Sub-directories in the store are referred to as @dfn{store items} or sometimes @dfn{store paths}. The store has an associated database that contains information such as the store paths referred to by each store path, and the list of @emph{valid} store items---results of successful builds. This database resides in @file{@var{localstatedir}/guix/db}, where @var{localstatedir} is the state directory specified @i{via} @option{--localstatedir} at configure time, usually @file{/var}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9390 +#: guix-git/doc/guix.texi:9704 msgid "The store is @emph{always} accessed by the daemon on behalf of its clients (@pxref{Invoking guix-daemon}). To manipulate the store, clients connect to the daemon over a Unix-domain socket, send requests to it, and read the result---these are remote procedure calls, or RPCs." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:9395 +#: guix-git/doc/guix.texi:9709 msgid "Users must @emph{never} modify files under @file{/gnu/store} directly. This would lead to inconsistencies and break the immutability assumptions of Guix's functional model (@pxref{Introduction})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:9399 +#: guix-git/doc/guix.texi:9713 msgid "@xref{Invoking guix gc, @command{guix gc --verify}}, for information on how to check the integrity of the store and attempt recovery from accidental modifications." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9406 +#: guix-git/doc/guix.texi:9720 msgid "The @code{(guix store)} module provides procedures to connect to the daemon, and to perform RPCs. These are described below. By default, @code{open-connection}, and thus all the @command{guix} commands, connect to the local daemon or to the URI specified by the @env{GUIX_DAEMON_SOCKET} environment variable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9407 +#: guix-git/doc/guix.texi:9721 #, no-wrap msgid "{Environment Variable} GUIX_DAEMON_SOCKET" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9412 +#: guix-git/doc/guix.texi:9726 msgid "When set, the value of this variable should be a file name or a URI designating the daemon endpoint. When it is a file name, it denotes a Unix-domain socket to connect to. In addition to file names, the supported URI schemes are:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:9414 guix-git/doc/guix.texi:26183 +#: guix-git/doc/guix.texi:9728 guix-git/doc/guix.texi:26520 #, no-wrap msgid "file" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:9415 +#: guix-git/doc/guix.texi:9729 #, no-wrap msgid "unix" msgstr "unix" #. type: table -#: guix-git/doc/guix.texi:9419 +#: guix-git/doc/guix.texi:9733 msgid "These are for Unix-domain sockets. @code{file:///var/guix/daemon-socket/socket} is equivalent to @file{/var/guix/daemon-socket/socket}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:9428 +#: guix-git/doc/guix.texi:9742 msgid "These URIs denote connections over TCP/IP, without encryption nor authentication of the remote host. The URI must specify the host name and optionally a port number (by default port 44146 is used):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9431 +#: guix-git/doc/guix.texi:9745 #, no-wrap msgid "guix://master.guix.example.org:1234\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:9436 +#: guix-git/doc/guix.texi:9750 msgid "This setup is suitable on local networks, such as clusters, where only trusted nodes may connect to the build daemon at @code{master.guix.example.org}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:9440 +#: guix-git/doc/guix.texi:9754 msgid "The @option{--listen} option of @command{guix-daemon} can be used to instruct it to listen for TCP connections (@pxref{Invoking guix-daemon, @option{--listen}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:9441 +#: guix-git/doc/guix.texi:9755 #, no-wrap msgid "ssh" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9442 +#: guix-git/doc/guix.texi:9756 #, no-wrap msgid "SSH access to build daemons" msgstr "" #. type: table -#: guix-git/doc/guix.texi:9448 +#: guix-git/doc/guix.texi:9762 msgid "These URIs allow you to connect to a remote daemon over SSH@. This feature requires Guile-SSH (@pxref{Requirements}) and a working @command{guile} binary in @env{PATH} on the destination machine. It supports public key and GSSAPI authentication. A typical URL might look like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9451 +#: guix-git/doc/guix.texi:9765 #, no-wrap msgid "ssh://charlie@@guix.example.org:22\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:9455 +#: guix-git/doc/guix.texi:9769 msgid "As for @command{guix copy}, the usual OpenSSH client configuration files are honored (@pxref{Invoking guix copy})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9458 +#: guix-git/doc/guix.texi:9772 msgid "Additional URI schemes may be supported in the future." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:9465 +#: guix-git/doc/guix.texi:9779 msgid "The ability to connect to remote build daemons is considered experimental as of @value{VERSION}. Please get in touch with us to share any problems or suggestions you may have (@pxref{Contributing})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9468 +#: guix-git/doc/guix.texi:9782 #, no-wrap msgid "{Scheme Procedure} open-connection [@var{uri}] [#:reserve-space? #t]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9473 +#: guix-git/doc/guix.texi:9787 msgid "Connect to the daemon over the Unix-domain socket at @var{uri} (a string). When @var{reserve-space?} is true, instruct it to reserve a little bit of extra space on the file system so that the garbage collector can still operate should the disk become full. Return a server object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9476 +#: guix-git/doc/guix.texi:9790 msgid "@var{file} defaults to @code{%default-socket-path}, which is the normal location given the options that were passed to @command{configure}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9478 +#: guix-git/doc/guix.texi:9792 #, no-wrap msgid "{Scheme Procedure} close-connection @var{server}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9480 +#: guix-git/doc/guix.texi:9794 msgid "Close the connection to @var{server}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9482 +#: guix-git/doc/guix.texi:9796 #, no-wrap msgid "{Scheme Variable} current-build-output-port" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9485 +#: guix-git/doc/guix.texi:9799 msgid "This variable is bound to a SRFI-39 parameter, which refers to the port where build and error logs sent by the daemon should be written." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9489 +#: guix-git/doc/guix.texi:9803 msgid "Procedures that make RPCs all take a server object as their first argument." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9490 +#: guix-git/doc/guix.texi:9804 #, no-wrap msgid "{Scheme Procedure} valid-path? @var{server} @var{path}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9491 +#: guix-git/doc/guix.texi:9805 #, no-wrap msgid "invalid store items" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9496 +#: guix-git/doc/guix.texi:9810 msgid "Return @code{#t} when @var{path} designates a valid store item and @code{#f} otherwise (an invalid item may exist on disk but still be invalid, for instance because it is the result of an aborted or failed build)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9499 +#: guix-git/doc/guix.texi:9813 msgid "A @code{&store-protocol-error} condition is raised if @var{path} is not prefixed by the store directory (@file{/gnu/store})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9501 +#: guix-git/doc/guix.texi:9815 #, no-wrap msgid "{Scheme Procedure} add-text-to-store @var{server} @var{name} @var{text} [@var{references}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9505 +#: guix-git/doc/guix.texi:9819 msgid "Add @var{text} under file @var{name} in the store, and return its store path. @var{references} is the list of store paths referred to by the resulting store path." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9507 +#: guix-git/doc/guix.texi:9821 #, no-wrap msgid "{Scheme Procedure} build-derivations @var{store} @var{derivations} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9512 +#: guix-git/doc/guix.texi:9826 msgid "[@var{mode}] Build @var{derivations}, a list of @code{} objects, @file{.drv} file names, or derivation/output pairs, using the specified @var{mode}---@code{(build-mode normal)} by default." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9518 +#: guix-git/doc/guix.texi:9832 msgid "Note that the @code{(guix monads)} module provides a monad as well as monadic versions of the above procedures, with the goal of making it more convenient to work with code that accesses the store (@pxref{The Store Monad})." msgstr "" #. type: i{#1} -#: guix-git/doc/guix.texi:9521 +#: guix-git/doc/guix.texi:9835 msgid "This section is currently incomplete." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9525 +#: guix-git/doc/guix.texi:9839 #, no-wrap msgid "derivations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9529 +#: guix-git/doc/guix.texi:9843 msgid "Low-level build actions and the environment in which they are performed are represented by @dfn{derivations}. A derivation contains the following pieces of information:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9534 +#: guix-git/doc/guix.texi:9848 msgid "The outputs of the derivation---derivations produce at least one file or directory in the store, but may produce more." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9536 +#: guix-git/doc/guix.texi:9850 #, no-wrap msgid "build-time dependencies" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9537 +#: guix-git/doc/guix.texi:9851 #, no-wrap msgid "dependencies, build-time" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9541 +#: guix-git/doc/guix.texi:9855 msgid "The inputs of the derivations---i.e., its build-time dependencies---which may be other derivations or plain files in the store (patches, build scripts, etc.)." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9544 +#: guix-git/doc/guix.texi:9858 msgid "The system type targeted by the derivation---e.g., @code{x86_64-linux}." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9548 +#: guix-git/doc/guix.texi:9862 msgid "The file name of a build script in the store, along with the arguments to be passed." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9551 +#: guix-git/doc/guix.texi:9865 msgid "A list of environment variables to be defined." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9554 +#: guix-git/doc/guix.texi:9868 #, no-wrap msgid "derivation path" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9562 +#: guix-git/doc/guix.texi:9876 msgid "Derivations allow clients of the daemon to communicate build actions to the store. They exist in two forms: as an in-memory representation, both on the client- and daemon-side, and as files in the store whose name end in @file{.drv}---these files are referred to as @dfn{derivation paths}. Derivations paths can be passed to the @code{build-derivations} procedure to perform the build actions they prescribe (@pxref{The Store})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9563 +#: guix-git/doc/guix.texi:9877 #, no-wrap msgid "fixed-output derivations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9570 +#: guix-git/doc/guix.texi:9884 msgid "Operations such as file downloads and version-control checkouts for which the expected content hash is known in advance are modeled as @dfn{fixed-output derivations}. Unlike regular derivations, the outputs of a fixed-output derivation are independent of its inputs---e.g., a source code download produces the same result regardless of the download method and tools being used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:9571 guix-git/doc/guix.texi:13341 +#: guix-git/doc/guix.texi:9885 guix-git/doc/guix.texi:13698 #, no-wrap msgid "references" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9572 +#: guix-git/doc/guix.texi:9886 #, no-wrap msgid "run-time dependencies" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9573 +#: guix-git/doc/guix.texi:9887 #, no-wrap msgid "dependencies, run-time" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9580 +#: guix-git/doc/guix.texi:9894 msgid "The outputs of derivations---i.e., the build results---have a set of @dfn{references}, as reported by the @code{references} RPC or the @command{guix gc --references} command (@pxref{Invoking guix gc}). References are the set of run-time dependencies of the build results. References are a subset of the inputs of the derivation; this subset is automatically computed by the build daemon by scanning all the files in the outputs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9585 +#: guix-git/doc/guix.texi:9899 msgid "The @code{(guix derivations)} module provides a representation of derivations as Scheme objects, along with procedures to create and otherwise manipulate derivations. The lowest-level primitive to create a derivation is the @code{derivation} procedure:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9586 +#: guix-git/doc/guix.texi:9900 #, no-wrap msgid "{Scheme Procedure} derivation @var{store} @var{name} @var{builder} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9595 +#: guix-git/doc/guix.texi:9909 msgid "@var{args} [#:outputs '(\"out\")] [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:inputs '()] [#:env-vars '()] @ [#:system (%current-system)] [#:references-graphs #f] @ [#:allowed-references #f] [#:disallowed-references #f] @ [#:leaked-env-vars #f] [#:local-build? #f] @ [#:substitutable? #t] [#:properties '()] Build a derivation with the given arguments, and return the resulting @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9602 +#: guix-git/doc/guix.texi:9916 msgid "When @var{hash} and @var{hash-algo} are given, a @dfn{fixed-output derivation} is created---i.e., one whose result is known in advance, such as a file download. If, in addition, @var{recursive?} is true, then that fixed output may be an executable file or a directory and @var{hash} must be the hash of an archive containing this output." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9607 +#: guix-git/doc/guix.texi:9921 msgid "When @var{references-graphs} is true, it must be a list of file name/store path pairs. In that case, the reference graph of each store path is exported in the build environment in the corresponding file, in a simple text format." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9612 +#: guix-git/doc/guix.texi:9926 msgid "When @var{allowed-references} is true, it must be a list of store items or outputs that the derivation's output may refer to. Likewise, @var{disallowed-references}, if true, must be a list of things the outputs may @emph{not} refer to." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9619 +#: guix-git/doc/guix.texi:9933 msgid "When @var{leaked-env-vars} is true, it must be a list of strings denoting environment variables that are allowed to ``leak'' from the daemon's environment to the build environment. This is only applicable to fixed-output derivations---i.e., when @var{hash} is true. The main use is to allow variables such as @code{http_proxy} to be passed to derivations that download files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9624 +#: guix-git/doc/guix.texi:9938 msgid "When @var{local-build?} is true, declare that the derivation is not a good candidate for offloading and should rather be built locally (@pxref{Daemon Offload Setup}). This is the case for small derivations where the costs of data transfers would outweigh the benefits." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9629 +#: guix-git/doc/guix.texi:9943 msgid "When @var{substitutable?} is false, declare that substitutes of the derivation's output should not be used (@pxref{Substitutes}). This is useful, for instance, when building packages that capture details of the host CPU instruction set." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9632 +#: guix-git/doc/guix.texi:9946 msgid "@var{properties} must be an association list describing ``properties'' of the derivation. It is kept as-is, uninterpreted, in the derivation." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9638 +#: guix-git/doc/guix.texi:9952 msgid "Here's an example with a shell script as its builder, assuming @var{store} is an open connection to the daemon, and @var{bash} points to a Bash executable in the store:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9643 +#: guix-git/doc/guix.texi:9957 #, no-wrap msgid "" "(use-modules (guix utils)\n" @@ -18189,7 +18740,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9652 +#: guix-git/doc/guix.texi:9966 #, no-wrap msgid "" "(let ((builder ; add the Bash script to the store\n" @@ -18203,48 +18754,48 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9659 +#: guix-git/doc/guix.texi:9973 msgid "As can be guessed, this primitive is cumbersome to use directly. A better approach is to write build scripts in Scheme, of course! The best course of action for that is to write the build code as a ``G-expression'', and to pass it to @code{gexp->derivation}. For more information, @pxref{G-Expressions}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9664 +#: guix-git/doc/guix.texi:9978 msgid "Once upon a time, @code{gexp->derivation} did not exist and constructing derivations with build code written in Scheme was achieved with @code{build-expression->derivation}, documented below. This procedure is now deprecated in favor of the much nicer @code{gexp->derivation}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9665 +#: guix-git/doc/guix.texi:9979 #, no-wrap msgid "{Scheme Procedure} build-expression->derivation @var{store} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9681 +#: guix-git/doc/guix.texi:9995 msgid "@var{name} @var{exp} @ [#:system (%current-system)] [#:inputs '()] @ [#:outputs '(\"out\")] [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:env-vars '()] [#:modules '()] @ [#:references-graphs #f] [#:allowed-references #f] @ [#:disallowed-references #f] @ [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f] Return a derivation that executes Scheme expression @var{exp} as a builder for derivation @var{name}. @var{inputs} must be a list of @code{(name drv-path sub-drv)} tuples; when @var{sub-drv} is omitted, @code{\"out\"} is assumed. @var{modules} is a list of names of Guile modules from the current search path to be copied in the store, compiled, and made available in the load path during the execution of @var{exp}---e.g., @code{((guix build utils) (guix build gnu-build-system))}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9689 +#: guix-git/doc/guix.texi:10003 msgid "@var{exp} is evaluated in an environment where @code{%outputs} is bound to a list of output/path pairs, and where @code{%build-inputs} is bound to a list of string/output-path pairs made from @var{inputs}. Optionally, @var{env-vars} is a list of string pairs specifying the name and value of environment variables visible to the builder. The builder terminates by passing the result of @var{exp} to @code{exit}; thus, when @var{exp} returns @code{#f}, the build is considered to have failed." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9693 +#: guix-git/doc/guix.texi:10007 msgid "@var{exp} is built using @var{guile-for-build} (a derivation). When @var{guile-for-build} is omitted or is @code{#f}, the value of the @code{%guile-for-build} fluid is used instead." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9698 +#: guix-git/doc/guix.texi:10012 msgid "See the @code{derivation} procedure for the meaning of @var{references-graphs}, @var{allowed-references}, @var{disallowed-references}, @var{local-build?}, and @var{substitutable?}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9703 +#: guix-git/doc/guix.texi:10017 msgid "Here's an example of a single-output derivation that creates a directory containing one file:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9711 +#: guix-git/doc/guix.texi:10025 #, no-wrap msgid "" "(let ((builder '(let ((out (assoc-ref %outputs \"out\")))\n" @@ -18257,51 +18808,51 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9713 +#: guix-git/doc/guix.texi:10027 #, no-wrap msgid "@result{} # @dots{}>\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9719 +#: guix-git/doc/guix.texi:10033 #, no-wrap msgid "monad" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9725 +#: guix-git/doc/guix.texi:10039 msgid "The procedures that operate on the store described in the previous sections all take an open connection to the build daemon as their first argument. Although the underlying model is functional, they either have side effects or depend on the current state of the store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9731 +#: guix-git/doc/guix.texi:10045 msgid "The former is inconvenient: the connection to the build daemon has to be carried around in all those functions, making it impossible to compose functions that do not take that parameter with functions that do. The latter can be problematic: since store operations have side effects and/or depend on external state, they have to be properly sequenced." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9732 +#: guix-git/doc/guix.texi:10046 #, no-wrap msgid "monadic values" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9733 +#: guix-git/doc/guix.texi:10047 #, no-wrap msgid "monadic functions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9743 +#: guix-git/doc/guix.texi:10057 msgid "This is where the @code{(guix monads)} module comes in. This module provides a framework for working with @dfn{monads}, and a particularly useful monad for our uses, the @dfn{store monad}. Monads are a construct that allows two things: associating ``context'' with values (in our case, the context is the store), and building sequences of computations (here computations include accesses to the store). Values in a monad---values that carry this additional context---are called @dfn{monadic values}; procedures that return such values are called @dfn{monadic procedures}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9745 +#: guix-git/doc/guix.texi:10059 msgid "Consider this ``normal'' procedure:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9754 +#: guix-git/doc/guix.texi:10068 #, no-wrap msgid "" "(define (sh-symlink store)\n" @@ -18314,12 +18865,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9758 +#: guix-git/doc/guix.texi:10072 msgid "Using @code{(guix monads)} and @code{(guix gexp)}, it may be rewritten as a monadic function:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9766 +#: guix-git/doc/guix.texi:10080 #, no-wrap msgid "" "(define (sh-symlink)\n" @@ -18331,17 +18882,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9773 +#: guix-git/doc/guix.texi:10087 msgid "There are several things to note in the second version: the @code{store} parameter is now implicit and is ``threaded'' in the calls to the @code{package->derivation} and @code{gexp->derivation} monadic procedures, and the monadic value returned by @code{package->derivation} is @dfn{bound} using @code{mlet} instead of plain @code{let}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9777 +#: guix-git/doc/guix.texi:10091 msgid "As it turns out, the call to @code{package->derivation} can even be omitted since it will take place implicitly, as we will see later (@pxref{G-Expressions}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9783 +#: guix-git/doc/guix.texi:10097 #, no-wrap msgid "" "(define (sh-symlink)\n" @@ -18351,12 +18902,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9792 +#: guix-git/doc/guix.texi:10106 msgid "Calling the monadic @code{sh-symlink} has no effect. As someone once said, ``you exit a monad like you exit a building on fire: by running''. So, to exit the monad and get the desired effect, one must use @code{run-with-store}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9796 +#: guix-git/doc/guix.texi:10110 #, no-wrap msgid "" "(run-with-store (open-connection) (sh-symlink))\n" @@ -18364,12 +18915,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9802 +#: guix-git/doc/guix.texi:10116 msgid "Note that the @code{(guix monad-repl)} module extends the Guile REPL with new ``meta-commands'' to make it easier to deal with monadic procedures: @code{run-in-store}, and @code{enter-store-monad}. The former is used to ``run'' a single monadic value through the store:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9806 +#: guix-git/doc/guix.texi:10120 #, no-wrap msgid "" "scheme@@(guile-user)> ,run-in-store (package->derivation hello)\n" @@ -18377,12 +18928,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9810 +#: guix-git/doc/guix.texi:10124 msgid "The latter enters a recursive REPL, where all the return values are automatically run through the store:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9819 +#: guix-git/doc/guix.texi:10133 #, no-wrap msgid "" "scheme@@(guile-user)> ,enter-store-monad\n" @@ -18395,50 +18946,50 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9824 +#: guix-git/doc/guix.texi:10138 msgid "Note that non-monadic values cannot be returned in the @code{store-monad} REPL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9827 +#: guix-git/doc/guix.texi:10141 msgid "The main syntactic forms to deal with monads in general are provided by the @code{(guix monads)} module and are described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9828 +#: guix-git/doc/guix.texi:10142 #, no-wrap msgid "{Scheme Syntax} with-monad @var{monad} @var{body} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9831 +#: guix-git/doc/guix.texi:10145 msgid "Evaluate any @code{>>=} or @code{return} forms in @var{body} as being in @var{monad}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9833 +#: guix-git/doc/guix.texi:10147 #, no-wrap msgid "{Scheme Syntax} return @var{val}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9835 +#: guix-git/doc/guix.texi:10149 msgid "Return a monadic value that encapsulates @var{val}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9837 +#: guix-git/doc/guix.texi:10151 #, no-wrap msgid "{Scheme Syntax} >>= @var{mval} @var{mproc} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9844 +#: guix-git/doc/guix.texi:10158 msgid "@dfn{Bind} monadic value @var{mval}, passing its ``contents'' to monadic procedures @var{mproc}@dots{}@footnote{This operation is commonly referred to as ``bind'', but that name denotes an unrelated procedure in Guile. Thus we use this somewhat cryptic symbol inherited from the Haskell language.}. There can be one @var{mproc} or several of them, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9852 +#: guix-git/doc/guix.texi:10166 #, no-wrap msgid "" "(run-with-state\n" @@ -18451,7 +19002,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9855 +#: guix-git/doc/guix.texi:10169 #, no-wrap msgid "" "@result{} 4\n" @@ -18459,99 +19010,99 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9858 +#: guix-git/doc/guix.texi:10172 #, no-wrap msgid "{Scheme Syntax} mlet @var{monad} ((@var{var} @var{mval}) ...) @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9860 +#: guix-git/doc/guix.texi:10174 msgid "@var{body} ..." msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9860 +#: guix-git/doc/guix.texi:10174 #, no-wrap msgid "{Scheme Syntax} mlet* @var{monad} ((@var{var} @var{mval}) ...) @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9872 +#: guix-git/doc/guix.texi:10186 msgid "@var{body} ... Bind the variables @var{var} to the monadic values @var{mval} in @var{body}, which is a sequence of expressions. As with the bind operator, this can be thought of as ``unpacking'' the raw, non-monadic value ``contained'' in @var{mval} and making @var{var} refer to that raw, non-monadic value within the scope of the @var{body}. The form (@var{var} -> @var{val}) binds @var{var} to the ``normal'' value @var{val}, as per @code{let}. The binding operations occur in sequence from left to right. The last expression of @var{body} must be a monadic expression, and its result will become the result of the @code{mlet} or @code{mlet*} when run in the @var{monad}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9875 +#: guix-git/doc/guix.texi:10189 msgid "@code{mlet*} is to @code{mlet} what @code{let*} is to @code{let} (@pxref{Local Bindings,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9877 +#: guix-git/doc/guix.texi:10191 #, no-wrap msgid "{Scheme System} mbegin @var{monad} @var{mexp} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9881 +#: guix-git/doc/guix.texi:10195 msgid "Bind @var{mexp} and the following monadic expressions in sequence, returning the result of the last expression. Every expression in the sequence must be a monadic expression." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9885 +#: guix-git/doc/guix.texi:10199 msgid "This is akin to @code{mlet}, except that the return values of the monadic expressions are ignored. In that sense, it is analogous to @code{begin}, but applied to monadic expressions." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9887 +#: guix-git/doc/guix.texi:10201 #, no-wrap msgid "{Scheme System} mwhen @var{condition} @var{mexp0} @var{mexp*} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9892 +#: guix-git/doc/guix.texi:10206 msgid "When @var{condition} is true, evaluate the sequence of monadic expressions @var{mexp0}..@var{mexp*} as in an @code{mbegin}. When @var{condition} is false, return @code{*unspecified*} in the current monad. Every expression in the sequence must be a monadic expression." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9894 +#: guix-git/doc/guix.texi:10208 #, no-wrap msgid "{Scheme System} munless @var{condition} @var{mexp0} @var{mexp*} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9899 +#: guix-git/doc/guix.texi:10213 msgid "When @var{condition} is false, evaluate the sequence of monadic expressions @var{mexp0}..@var{mexp*} as in an @code{mbegin}. When @var{condition} is true, return @code{*unspecified*} in the current monad. Every expression in the sequence must be a monadic expression." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9901 +#: guix-git/doc/guix.texi:10215 #, no-wrap msgid "state monad" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9905 +#: guix-git/doc/guix.texi:10219 msgid "The @code{(guix monads)} module provides the @dfn{state monad}, which allows an additional value---the state---to be @emph{threaded} through monadic procedure calls." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9906 +#: guix-git/doc/guix.texi:10220 #, no-wrap msgid "{Scheme Variable} %state-monad" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9909 +#: guix-git/doc/guix.texi:10223 msgid "The state monad. Procedures in the state monad can access and change the state that is threaded." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9913 +#: guix-git/doc/guix.texi:10227 msgid "Consider the example below. The @code{square} procedure returns a value in the state monad. It returns the square of its argument, but also increments the current state value:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9920 +#: guix-git/doc/guix.texi:10234 #, no-wrap msgid "" "(define (square x)\n" @@ -18563,7 +19114,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9924 +#: guix-git/doc/guix.texi:10238 #, no-wrap msgid "" "(run-with-state (sequence %state-monad (map square (iota 3))) 0)\n" @@ -18572,147 +19123,147 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9928 +#: guix-git/doc/guix.texi:10242 msgid "When ``run'' through @code{%state-monad}, we obtain that additional state value, which is the number of @code{square} calls." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9930 +#: guix-git/doc/guix.texi:10244 #, no-wrap msgid "{Monadic Procedure} current-state" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9932 +#: guix-git/doc/guix.texi:10246 msgid "Return the current state as a monadic value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9934 +#: guix-git/doc/guix.texi:10248 #, no-wrap msgid "{Monadic Procedure} set-current-state @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9937 +#: guix-git/doc/guix.texi:10251 msgid "Set the current state to @var{value} and return the previous state as a monadic value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9939 +#: guix-git/doc/guix.texi:10253 #, no-wrap msgid "{Monadic Procedure} state-push @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9942 +#: guix-git/doc/guix.texi:10256 msgid "Push @var{value} to the current state, which is assumed to be a list, and return the previous state as a monadic value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9944 +#: guix-git/doc/guix.texi:10258 #, no-wrap msgid "{Monadic Procedure} state-pop" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9947 +#: guix-git/doc/guix.texi:10261 msgid "Pop a value from the current state and return it as a monadic value. The state is assumed to be a list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9949 +#: guix-git/doc/guix.texi:10263 #, no-wrap msgid "{Scheme Procedure} run-with-state @var{mval} [@var{state}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9952 +#: guix-git/doc/guix.texi:10266 msgid "Run monadic value @var{mval} starting with @var{state} as the initial state. Return two values: the resulting value, and the resulting state." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9956 +#: guix-git/doc/guix.texi:10270 msgid "The main interface to the store monad, provided by the @code{(guix store)} module, is as follows." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9957 +#: guix-git/doc/guix.texi:10271 #, no-wrap msgid "{Scheme Variable} %store-monad" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9959 +#: guix-git/doc/guix.texi:10273 msgid "The store monad---an alias for @code{%state-monad}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9963 +#: guix-git/doc/guix.texi:10277 msgid "Values in the store monad encapsulate accesses to the store. When its effect is needed, a value of the store monad must be ``evaluated'' by passing it to the @code{run-with-store} procedure (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9965 +#: guix-git/doc/guix.texi:10279 #, no-wrap msgid "{Scheme Procedure} run-with-store @var{store} @var{mval} [#:guile-for-build] [#:system (%current-system)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9968 +#: guix-git/doc/guix.texi:10282 msgid "Run @var{mval}, a monadic value in the store monad, in @var{store}, an open store connection." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9970 +#: guix-git/doc/guix.texi:10284 #, no-wrap msgid "{Monadic Procedure} text-file @var{name} @var{text} [@var{references}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9974 +#: guix-git/doc/guix.texi:10288 msgid "Return as a monadic value the absolute file name in the store of the file containing @var{text}, a string. @var{references} is a list of store items that the resulting text file refers to; it defaults to the empty list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9976 +#: guix-git/doc/guix.texi:10290 #, no-wrap msgid "{Monadic Procedure} binary-file @var{name} @var{data} [@var{references}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9980 +#: guix-git/doc/guix.texi:10294 msgid "Return as a monadic value the absolute file name in the store of the file containing @var{data}, a bytevector. @var{references} is a list of store items that the resulting binary file refers to; it defaults to the empty list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9982 +#: guix-git/doc/guix.texi:10296 #, no-wrap msgid "{Monadic Procedure} interned-file @var{file} [@var{name}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9987 +#: guix-git/doc/guix.texi:10301 msgid "[#:recursive? #t] [#:select? (const #t)] Return the name of @var{file} once interned in the store. Use @var{name} as its store name, or the basename of @var{file} if @var{name} is omitted." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9991 guix-git/doc/guix.texi:10414 +#: guix-git/doc/guix.texi:10305 guix-git/doc/guix.texi:10728 msgid "When @var{recursive?} is true, the contents of @var{file} are added recursively; if @var{file} designates a flat file and @var{recursive?} is true, its contents are added, and its permission bits are kept." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9996 guix-git/doc/guix.texi:10419 +#: guix-git/doc/guix.texi:10310 guix-git/doc/guix.texi:10733 msgid "When @var{recursive?} is true, call @code{(@var{select?} @var{file} @var{stat})} for each directory entry, where @var{file} is the entry's absolute file name and @var{stat} is the result of @code{lstat}; exclude entries for which @var{select?} does not return true." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9998 +#: guix-git/doc/guix.texi:10312 msgid "The example below adds a file to the store, under two different names:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10004 +#: guix-git/doc/guix.texi:10318 #, no-wrap msgid "" "(run-with-store (open-connection)\n" @@ -18723,120 +19274,120 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10006 +#: guix-git/doc/guix.texi:10320 #, no-wrap msgid "@result{} (\"/gnu/store/rwm@dots{}-README\" \"/gnu/store/44i@dots{}-LEGU-MIN\")\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10012 +#: guix-git/doc/guix.texi:10326 msgid "The @code{(guix packages)} module exports the following package-related monadic procedures:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10013 +#: guix-git/doc/guix.texi:10327 #, no-wrap msgid "{Monadic Procedure} package-file @var{package} [@var{file}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10021 +#: guix-git/doc/guix.texi:10335 msgid "[#:system (%current-system)] [#:target #f] @ [#:output \"out\"] Return as a monadic value in the absolute file name of @var{file} within the @var{output} directory of @var{package}. When @var{file} is omitted, return the name of the @var{output} directory of @var{package}. When @var{target} is true, use it as a cross-compilation target triplet." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10025 +#: guix-git/doc/guix.texi:10339 msgid "Note that this procedure does @emph{not} build @var{package}. Thus, the result might or might not designate an existing file. We recommend not using this procedure unless you know what you are doing." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10027 +#: guix-git/doc/guix.texi:10341 #, no-wrap msgid "{Monadic Procedure} package->derivation @var{package} [@var{system}]" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:10028 +#: guix-git/doc/guix.texi:10342 #, no-wrap msgid "{Monadic Procedure} package->cross-derivation @var{package} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10032 +#: guix-git/doc/guix.texi:10346 msgid "@var{target} [@var{system}] Monadic version of @code{package-derivation} and @code{package-cross-derivation} (@pxref{Defining Packages})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10038 +#: guix-git/doc/guix.texi:10352 #, no-wrap msgid "G-expression" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10039 +#: guix-git/doc/guix.texi:10353 #, no-wrap msgid "build code quoting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10045 +#: guix-git/doc/guix.texi:10359 msgid "So we have ``derivations'', which represent a sequence of build actions to be performed to produce an item in the store (@pxref{Derivations}). These build actions are performed when asking the daemon to actually build the derivations; they are run by the daemon in a container (@pxref{Invoking guix-daemon})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10048 +#: guix-git/doc/guix.texi:10362 #, no-wrap msgid "strata of code" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10060 +#: guix-git/doc/guix.texi:10374 msgid "It should come as no surprise that we like to write these build actions in Scheme. When we do that, we end up with two @dfn{strata} of Scheme code@footnote{The term @dfn{stratum} in this context was coined by Manuel Serrano et al.@: in the context of their work on Hop. Oleg Kiselyov, who has written insightful @url{http://okmij.org/ftp/meta-programming/#meta-scheme, essays and code on this topic}, refers to this kind of code generation as @dfn{staging}.}: the ``host code''---code that defines packages, talks to the daemon, etc.---and the ``build code''---code that actually performs build actions, such as making directories, invoking @command{make}, and so on (@pxref{Build Phases})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10067 +#: guix-git/doc/guix.texi:10381 msgid "To describe a derivation and its build actions, one typically needs to embed build code inside host code. It boils down to manipulating build code as data, and the homoiconicity of Scheme---code has a direct representation as data---comes in handy for that. But we need more than the normal @code{quasiquote} mechanism in Scheme to construct build expressions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10076 +#: guix-git/doc/guix.texi:10390 msgid "The @code{(guix gexp)} module implements @dfn{G-expressions}, a form of S-expressions adapted to build expressions. G-expressions, or @dfn{gexps}, consist essentially of three syntactic forms: @code{gexp}, @code{ungexp}, and @code{ungexp-splicing} (or simply: @code{#~}, @code{#$}, and @code{#$@@}), which are comparable to @code{quasiquote}, @code{unquote}, and @code{unquote-splicing}, respectively (@pxref{Expression Syntax, @code{quasiquote},, guile, GNU Guile Reference Manual}). However, there are major differences:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:10081 +#: guix-git/doc/guix.texi:10395 msgid "Gexps are meant to be written to a file and run or manipulated by other processes." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:10086 +#: guix-git/doc/guix.texi:10400 msgid "When a high-level object such as a package or derivation is unquoted inside a gexp, the result is as if its output file name had been introduced." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:10091 +#: guix-git/doc/guix.texi:10405 msgid "Gexps carry information about the packages or derivations they refer to, and these dependencies are automatically added as inputs to the build processes that use them." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10093 guix-git/doc/guix.texi:10650 +#: guix-git/doc/guix.texi:10407 guix-git/doc/guix.texi:10964 #, no-wrap msgid "lowering, of high-level objects in gexps" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10103 +#: guix-git/doc/guix.texi:10417 msgid "This mechanism is not limited to package and derivation objects: @dfn{compilers} able to ``lower'' other high-level objects to derivations or files in the store can be defined, such that these objects can also be inserted into gexps. For example, a useful type of high-level objects that can be inserted in a gexp is ``file-like objects'', which make it easy to add files to the store and to refer to them in derivations and such (see @code{local-file} and @code{plain-file} below)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10105 +#: guix-git/doc/guix.texi:10419 msgid "To illustrate the idea, here is an example of a gexp:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10113 +#: guix-git/doc/guix.texi:10427 #, no-wrap msgid "" "(define build-exp\n" @@ -18848,34 +19399,34 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10118 +#: guix-git/doc/guix.texi:10432 msgid "This gexp can be passed to @code{gexp->derivation}; we obtain a derivation that builds a directory containing exactly one symlink to @file{/gnu/store/@dots{}-coreutils-8.22/bin/ls}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10121 +#: guix-git/doc/guix.texi:10435 #, no-wrap msgid "(gexp->derivation \"the-thing\" build-exp)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10129 +#: guix-git/doc/guix.texi:10443 msgid "As one would expect, the @code{\"/gnu/store/@dots{}-coreutils-8.22\"} string is substituted to the reference to the @var{coreutils} package in the actual build code, and @var{coreutils} is automatically made an input to the derivation. Likewise, @code{#$output} (equivalent to @code{(ungexp output)}) is replaced by a string containing the directory name of the output of the derivation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10130 +#: guix-git/doc/guix.texi:10444 #, no-wrap msgid "cross compilation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10136 +#: guix-git/doc/guix.texi:10450 msgid "In a cross-compilation context, it is useful to distinguish between references to the @emph{native} build of a package---that can run on the host---versus references to cross builds of a package. To that end, the @code{#+} plays the same role as @code{#$}, but is a reference to a native package build:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10147 +#: guix-git/doc/guix.texi:10461 #, no-wrap msgid "" "(gexp->derivation \"vi\"\n" @@ -18890,29 +19441,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10153 +#: guix-git/doc/guix.texi:10467 msgid "In the example above, the native build of @var{coreutils} is used, so that @command{ln} can actually run on the host; but then the cross-compiled build of @var{emacs} is referenced." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10154 +#: guix-git/doc/guix.texi:10468 #, no-wrap msgid "imported modules, for gexps" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:10155 +#: guix-git/doc/guix.texi:10469 #, no-wrap msgid "with-imported-modules" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10160 +#: guix-git/doc/guix.texi:10474 msgid "Another gexp feature is @dfn{imported modules}: sometimes you want to be able to use certain Guile modules from the ``host environment'' in the gexp, so those modules should be imported in the ``build environment''. The @code{with-imported-modules} form allows you to express that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10171 +#: guix-git/doc/guix.texi:10485 #, no-wrap msgid "" "(let ((build (with-imported-modules '((guix build utils))\n" @@ -18927,29 +19478,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10177 +#: guix-git/doc/guix.texi:10491 msgid "In this example, the @code{(guix build utils)} module is automatically pulled into the isolated build environment of our gexp, such that @code{(use-modules (guix build utils))} works as expected." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10178 +#: guix-git/doc/guix.texi:10492 #, no-wrap msgid "module closure" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:10179 +#: guix-git/doc/guix.texi:10493 #, no-wrap msgid "source-module-closure" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10186 +#: guix-git/doc/guix.texi:10500 msgid "Usually you want the @emph{closure} of the module to be imported---i.e., the module itself and all the modules it depends on---rather than just the module; failing to do that, attempts to use the module will fail because of missing dependent modules. The @code{source-module-closure} procedure computes the closure of a module by looking at its source file headers, which comes in handy in this case:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10189 +#: guix-git/doc/guix.texi:10503 #, no-wrap msgid "" "(use-modules (guix modules)) ;for 'source-module-closure'\n" @@ -18957,7 +19508,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10198 +#: guix-git/doc/guix.texi:10512 #, no-wrap msgid "" "(with-imported-modules (source-module-closure\n" @@ -18971,24 +19522,24 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10200 +#: guix-git/doc/guix.texi:10514 #, no-wrap msgid "extensions, for gexps" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:10201 +#: guix-git/doc/guix.texi:10515 #, no-wrap msgid "with-extensions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10206 +#: guix-git/doc/guix.texi:10520 msgid "In the same vein, sometimes you want to import not just pure-Scheme modules, but also ``extensions'' such as Guile bindings to C libraries or other ``full-blown'' packages. Say you need the @code{guile-json} package available on the build side, here's how you would do it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10209 +#: guix-git/doc/guix.texi:10523 #, no-wrap msgid "" "(use-modules (gnu packages guile)) ;for 'guile-json'\n" @@ -18996,7 +19547,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10215 +#: guix-git/doc/guix.texi:10529 #, no-wrap msgid "" "(with-extensions (list guile-json)\n" @@ -19007,184 +19558,184 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10218 +#: guix-git/doc/guix.texi:10532 msgid "The syntactic form to construct gexps is summarized below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10219 +#: guix-git/doc/guix.texi:10533 #, no-wrap msgid "{Scheme Syntax} #~@var{exp}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:10220 +#: guix-git/doc/guix.texi:10534 #, no-wrap msgid "{Scheme Syntax} (gexp @var{exp})" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10223 +#: guix-git/doc/guix.texi:10537 msgid "Return a G-expression containing @var{exp}. @var{exp} may contain one or more of the following forms:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10225 +#: guix-git/doc/guix.texi:10539 #, no-wrap msgid "#$@var{obj}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10226 +#: guix-git/doc/guix.texi:10540 #, no-wrap msgid "(ungexp @var{obj})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10231 +#: guix-git/doc/guix.texi:10545 msgid "Introduce a reference to @var{obj}. @var{obj} may have one of the supported types, for example a package or a derivation, in which case the @code{ungexp} form is replaced by its output file name---e.g., @code{\"/gnu/store/@dots{}-coreutils-8.22}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10234 +#: guix-git/doc/guix.texi:10548 msgid "If @var{obj} is a list, it is traversed and references to supported objects are substituted similarly." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10237 +#: guix-git/doc/guix.texi:10551 msgid "If @var{obj} is another gexp, its contents are inserted and its dependencies are added to those of the containing gexp." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10239 +#: guix-git/doc/guix.texi:10553 msgid "If @var{obj} is another kind of object, it is inserted as is." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10240 +#: guix-git/doc/guix.texi:10554 #, no-wrap msgid "#$@var{obj}:@var{output}" msgstr "#$@var{obj}:@var{saída}" #. type: itemx -#: guix-git/doc/guix.texi:10241 +#: guix-git/doc/guix.texi:10555 #, no-wrap msgid "(ungexp @var{obj} @var{output})" msgstr "(ungexp @var{obj} @var{saída})" #. type: table -#: guix-git/doc/guix.texi:10245 +#: guix-git/doc/guix.texi:10559 msgid "This is like the form above, but referring explicitly to the @var{output} of @var{obj}---this is useful when @var{obj} produces multiple outputs (@pxref{Packages with Multiple Outputs})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10246 +#: guix-git/doc/guix.texi:10560 #, no-wrap msgid "#+@var{obj}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10247 +#: guix-git/doc/guix.texi:10561 #, no-wrap msgid "#+@var{obj}:output" msgstr "#+@var{obj}:output" #. type: itemx -#: guix-git/doc/guix.texi:10248 +#: guix-git/doc/guix.texi:10562 #, no-wrap msgid "(ungexp-native @var{obj})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10249 +#: guix-git/doc/guix.texi:10563 #, no-wrap msgid "(ungexp-native @var{obj} @var{output})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10252 +#: guix-git/doc/guix.texi:10566 msgid "Same as @code{ungexp}, but produces a reference to the @emph{native} build of @var{obj} when used in a cross compilation context." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10253 +#: guix-git/doc/guix.texi:10567 #, no-wrap msgid "#$output[:@var{output}]" msgstr "#$output[:@var{saída}]" #. type: itemx -#: guix-git/doc/guix.texi:10254 +#: guix-git/doc/guix.texi:10568 #, no-wrap msgid "(ungexp output [@var{output}])" msgstr "(ungexp output [@var{saída}])" #. type: table -#: guix-git/doc/guix.texi:10257 +#: guix-git/doc/guix.texi:10571 msgid "Insert a reference to derivation output @var{output}, or to the main output when @var{output} is omitted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10259 +#: guix-git/doc/guix.texi:10573 msgid "This only makes sense for gexps passed to @code{gexp->derivation}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10260 +#: guix-git/doc/guix.texi:10574 #, no-wrap msgid "#$@@@var{lst}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10261 +#: guix-git/doc/guix.texi:10575 #, no-wrap msgid "(ungexp-splicing @var{lst})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10264 +#: guix-git/doc/guix.texi:10578 msgid "Like the above, but splices the contents of @var{lst} inside the containing list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10265 +#: guix-git/doc/guix.texi:10579 #, no-wrap msgid "#+@@@var{lst}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10266 +#: guix-git/doc/guix.texi:10580 #, no-wrap msgid "(ungexp-native-splicing @var{lst})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10269 +#: guix-git/doc/guix.texi:10583 msgid "Like the above, but refers to native builds of the objects listed in @var{lst}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10274 +#: guix-git/doc/guix.texi:10588 msgid "G-expressions created by @code{gexp} or @code{#~} are run-time objects of the @code{gexp?} type (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10276 +#: guix-git/doc/guix.texi:10590 #, no-wrap msgid "{Scheme Syntax} with-imported-modules @var{modules} @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10279 +#: guix-git/doc/guix.texi:10593 msgid "Mark the gexps defined in @var{body}@dots{} as requiring @var{modules} in their execution environment." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10283 +#: guix-git/doc/guix.texi:10597 msgid "Each item in @var{modules} can be the name of a module, such as @code{(guix build utils)}, or it can be a module name, followed by an arrow, followed by a file-like object:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10289 +#: guix-git/doc/guix.texi:10603 #, no-wrap msgid "" "`((guix build utils)\n" @@ -19194,80 +19745,80 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10294 +#: guix-git/doc/guix.texi:10608 msgid "In the example above, the first two modules are taken from the search path, and the last one is created from the given file-like object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10298 +#: guix-git/doc/guix.texi:10612 msgid "This form has @emph{lexical} scope: it has an effect on the gexps directly defined in @var{body}@dots{}, but not on those defined, say, in procedures called from @var{body}@dots{}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10300 +#: guix-git/doc/guix.texi:10614 #, no-wrap msgid "{Scheme Syntax} with-extensions @var{extensions} @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10305 +#: guix-git/doc/guix.texi:10619 msgid "Mark the gexps defined in @var{body}@dots{} as requiring @var{extensions} in their build and execution environment. @var{extensions} is typically a list of package objects such as those defined in the @code{(gnu packages guile)} module." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10310 +#: guix-git/doc/guix.texi:10624 msgid "Concretely, the packages listed in @var{extensions} are added to the load path while compiling imported modules in @var{body}@dots{}; they are also added to the load path of the gexp returned by @var{body}@dots{}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10312 +#: guix-git/doc/guix.texi:10626 #, no-wrap msgid "{Scheme Procedure} gexp? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10314 +#: guix-git/doc/guix.texi:10628 msgid "Return @code{#t} if @var{obj} is a G-expression." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10320 +#: guix-git/doc/guix.texi:10634 msgid "G-expressions are meant to be written to disk, either as code building some derivation, or as plain files in the store. The monadic procedures below allow you to do that (@pxref{The Store Monad}, for more information about monads)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10321 +#: guix-git/doc/guix.texi:10635 #, no-wrap msgid "{Monadic Procedure} gexp->derivation @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10339 +#: guix-git/doc/guix.texi:10653 msgid "[#:system (%current-system)] [#:target #f] [#:graft? #t] @ [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:env-vars '()] [#:modules '()] @ [#:module-path @code{%load-path}] @ [#:effective-version \"2.2\"] @ [#:references-graphs #f] [#:allowed-references #f] @ [#:disallowed-references #f] @ [#:leaked-env-vars #f] @ [#:script-name (string-append @var{name} \"-builder\")] @ [#:deprecation-warnings #f] @ [#:local-build? #f] [#:substitutable? #t] @ [#:properties '()] [#:guile-for-build #f] Return a derivation @var{name} that runs @var{exp} (a gexp) with @var{guile-for-build} (a derivation) on @var{system}; @var{exp} is stored in a file called @var{script-name}. When @var{target} is true, it is used as the cross-compilation target triplet for packages referred to by @var{exp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10347 +#: guix-git/doc/guix.texi:10661 msgid "@var{modules} is deprecated in favor of @code{with-imported-modules}. Its meaning is to make @var{modules} available in the evaluation context of @var{exp}; @var{modules} is a list of names of Guile modules searched in @var{module-path} to be copied in the store, compiled, and made available in the load path during the execution of @var{exp}---e.g., @code{((guix build utils) (guix build gnu-build-system))}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10350 +#: guix-git/doc/guix.texi:10664 msgid "@var{effective-version} determines the string to use when adding extensions of @var{exp} (see @code{with-extensions}) to the search path---e.g., @code{\"2.2\"}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10353 +#: guix-git/doc/guix.texi:10667 msgid "@var{graft?} determines whether packages referred to by @var{exp} should be grafted when applicable." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10356 +#: guix-git/doc/guix.texi:10670 msgid "When @var{references-graphs} is true, it must be a list of tuples of one of the following forms:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10363 +#: guix-git/doc/guix.texi:10677 #, no-wrap msgid "" "(@var{file-name} @var{package})\n" @@ -19278,38 +19829,38 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10369 +#: guix-git/doc/guix.texi:10683 msgid "The right-hand-side of each element of @var{references-graphs} is automatically made an input of the build process of @var{exp}. In the build environment, each @var{file-name} contains the reference graph of the corresponding item, in a simple text format." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10375 +#: guix-git/doc/guix.texi:10689 msgid "@var{allowed-references} must be either @code{#f} or a list of output names and packages. In the latter case, the list denotes store items that the result is allowed to refer to. Any reference to another store item will lead to a build error. Similarly for @var{disallowed-references}, which can list items that must not be referenced by the outputs." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10378 +#: guix-git/doc/guix.texi:10692 msgid "@var{deprecation-warnings} determines whether to show deprecation warnings while compiling modules. It can be @code{#f}, @code{#t}, or @code{'detailed}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10380 +#: guix-git/doc/guix.texi:10694 msgid "The other arguments are as for @code{derivation} (@pxref{Derivations})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10382 +#: guix-git/doc/guix.texi:10696 #, no-wrap msgid "file-like objects" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10387 +#: guix-git/doc/guix.texi:10701 msgid "The @code{local-file}, @code{plain-file}, @code{computed-file}, @code{program-file}, and @code{scheme-file} procedures below return @dfn{file-like objects}. That is, when unquoted in a G-expression, these objects lead to a file in the store. Consider this G-expression:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10391 +#: guix-git/doc/guix.texi:10705 #, no-wrap msgid "" "#~(system* #$(file-append glibc \"/sbin/nscd\") \"-f\"\n" @@ -19317,76 +19868,76 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10400 +#: guix-git/doc/guix.texi:10714 msgid "The effect here is to ``intern'' @file{/tmp/my-nscd.conf} by copying it to the store. Once expanded, for instance @i{via} @code{gexp->derivation}, the G-expression refers to that copy under @file{/gnu/store}; thus, modifying or removing the file in @file{/tmp} does not have any effect on what the G-expression does. @code{plain-file} can be used similarly; it differs in that the file content is directly passed as a string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10401 +#: guix-git/doc/guix.texi:10715 #, no-wrap msgid "{Scheme Procedure} local-file @var{file} [@var{name}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10410 +#: guix-git/doc/guix.texi:10724 msgid "[#:recursive? #f] [#:select? (const #t)] Return an object representing local file @var{file} to add to the store; this object can be used in a gexp. If @var{file} is a literal string denoting a relative file name, it is looked up relative to the source file where it appears; if @var{file} is not a literal string, it is looked up relative to the current working directory at run time. @var{file} will be added to the store under @var{name}--by default the base name of @var{file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10422 +#: guix-git/doc/guix.texi:10736 msgid "This is the declarative counterpart of the @code{interned-file} monadic procedure (@pxref{The Store Monad, @code{interned-file}})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10424 +#: guix-git/doc/guix.texi:10738 #, no-wrap msgid "{Scheme Procedure} plain-file @var{name} @var{content}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10427 +#: guix-git/doc/guix.texi:10741 msgid "Return an object representing a text file called @var{name} with the given @var{content} (a string or a bytevector) to be added to the store." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10429 +#: guix-git/doc/guix.texi:10743 msgid "This is the declarative counterpart of @code{text-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10431 +#: guix-git/doc/guix.texi:10745 #, no-wrap msgid "{Scheme Procedure} computed-file @var{name} @var{gexp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10438 +#: guix-git/doc/guix.texi:10752 msgid "[#:local-build? #t] [#:options '()] Return an object representing the store item @var{name}, a file or directory computed by @var{gexp}. When @var{local-build?} is true (the default), the derivation is built locally. @var{options} is a list of additional arguments to pass to @code{gexp->derivation}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10440 +#: guix-git/doc/guix.texi:10754 msgid "This is the declarative counterpart of @code{gexp->derivation}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10442 +#: guix-git/doc/guix.texi:10756 #, no-wrap msgid "{Monadic Procedure} gexp->script @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10448 +#: guix-git/doc/guix.texi:10762 msgid "[#:guile (default-guile)] [#:module-path %load-path] @ [#:system (%current-system)] [#:target #f] Return an executable script @var{name} that runs @var{exp} using @var{guile}, with @var{exp}'s imported modules in its search path. Look up @var{exp}'s modules in @var{module-path}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10451 +#: guix-git/doc/guix.texi:10765 msgid "The example below builds a script that simply invokes the @command{ls} command:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10454 +#: guix-git/doc/guix.texi:10768 #, no-wrap msgid "" "(use-modules (guix gexp) (gnu packages base))\n" @@ -19394,7 +19945,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10458 +#: guix-git/doc/guix.texi:10772 #, no-wrap msgid "" "(gexp->script \"list-files\"\n" @@ -19403,12 +19954,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10463 +#: guix-git/doc/guix.texi:10777 msgid "When ``running'' it through the store (@pxref{The Store Monad, @code{run-with-store}}), we obtain a derivation that produces an executable file @file{/gnu/store/@dots{}-list-files} along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10468 +#: guix-git/doc/guix.texi:10782 #, no-wrap msgid "" "#!/gnu/store/@dots{}-guile-2.0.11/bin/guile -ds\n" @@ -19417,76 +19968,76 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10471 +#: guix-git/doc/guix.texi:10785 #, no-wrap msgid "{Scheme Procedure} program-file @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10476 +#: guix-git/doc/guix.texi:10790 msgid "[#:guile #f] [#:module-path %load-path] Return an object representing the executable store item @var{name} that runs @var{gexp}. @var{guile} is the Guile package used to execute that script. Imported modules of @var{gexp} are looked up in @var{module-path}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10478 +#: guix-git/doc/guix.texi:10792 msgid "This is the declarative counterpart of @code{gexp->script}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10480 +#: guix-git/doc/guix.texi:10794 #, no-wrap msgid "{Monadic Procedure} gexp->file @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10487 +#: guix-git/doc/guix.texi:10801 msgid "[#:set-load-path? #t] [#:module-path %load-path] @ [#:splice? #f] @ [#:guile (default-guile)] Return a derivation that builds a file @var{name} containing @var{exp}. When @var{splice?} is true, @var{exp} is considered to be a list of expressions that will be spliced in the resulting file." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10492 +#: guix-git/doc/guix.texi:10806 msgid "When @var{set-load-path?} is true, emit code in the resulting file to set @code{%load-path} and @code{%load-compiled-path} to honor @var{exp}'s imported modules. Look up @var{exp}'s modules in @var{module-path}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10495 +#: guix-git/doc/guix.texi:10809 msgid "The resulting file holds references to all the dependencies of @var{exp} or a subset thereof." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10497 +#: guix-git/doc/guix.texi:10811 #, no-wrap msgid "{Scheme Procedure} scheme-file @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10501 +#: guix-git/doc/guix.texi:10815 msgid "[#:splice? #f] [#:set-load-path? #t] Return an object representing the Scheme file @var{name} that contains @var{exp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10503 +#: guix-git/doc/guix.texi:10817 msgid "This is the declarative counterpart of @code{gexp->file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10505 +#: guix-git/doc/guix.texi:10819 #, no-wrap msgid "{Monadic Procedure} text-file* @var{name} @var{text} @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10511 +#: guix-git/doc/guix.texi:10825 msgid "Return as a monadic value a derivation that builds a text file containing all of @var{text}. @var{text} may list, in addition to strings, objects of any type that can be used in a gexp: packages, derivations, local file objects, etc. The resulting store file holds references to all these." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10516 +#: guix-git/doc/guix.texi:10830 msgid "This variant should be preferred over @code{text-file} anytime the file to create will reference items from the store. This is typically the case when building a configuration file that embeds store file names, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10524 +#: guix-git/doc/guix.texi:10838 #, no-wrap msgid "" "(define (profile.sh)\n" @@ -19498,23 +20049,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10529 +#: guix-git/doc/guix.texi:10843 msgid "In this example, the resulting @file{/gnu/store/@dots{}-profile.sh} file will reference @var{coreutils}, @var{grep}, and @var{sed}, thereby preventing them from being garbage-collected during its lifetime." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10531 +#: guix-git/doc/guix.texi:10845 #, no-wrap msgid "{Scheme Procedure} mixed-text-file @var{name} @var{text} @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10535 +#: guix-git/doc/guix.texi:10849 msgid "Return an object representing store file @var{name} containing @var{text}. @var{text} is a sequence of strings and file-like objects, as in:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10539 +#: guix-git/doc/guix.texi:10853 #, no-wrap msgid "" "(mixed-text-file \"profile\"\n" @@ -19522,23 +20073,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10542 +#: guix-git/doc/guix.texi:10856 msgid "This is the declarative counterpart of @code{text-file*}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10544 +#: guix-git/doc/guix.texi:10858 #, no-wrap msgid "{Scheme Procedure} file-union @var{name} @var{files}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10549 +#: guix-git/doc/guix.texi:10863 msgid "Return a @code{} that builds a directory containing all of @var{files}. Each item in @var{files} must be a two-element list where the first element is the file name to use in the new directory, and the second element is a gexp denoting the target file. Here's an example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10556 +#: guix-git/doc/guix.texi:10870 #, no-wrap msgid "" "(file-union \"etc\"\n" @@ -19549,50 +20100,50 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10559 +#: guix-git/doc/guix.texi:10873 msgid "This yields an @code{etc} directory containing these two files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10561 +#: guix-git/doc/guix.texi:10875 #, no-wrap msgid "{Scheme Procedure} directory-union @var{name} @var{things}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10564 +#: guix-git/doc/guix.texi:10878 msgid "Return a directory that is the union of @var{things}, where @var{things} is a list of file-like objects denoting directories. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10567 +#: guix-git/doc/guix.texi:10881 #, no-wrap msgid "(directory-union \"guile+emacs\" (list guile emacs))\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10570 +#: guix-git/doc/guix.texi:10884 msgid "yields a directory that is the union of the @code{guile} and @code{emacs} packages." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10572 +#: guix-git/doc/guix.texi:10886 #, no-wrap msgid "{Scheme Procedure} file-append @var{obj} @var{suffix} @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10576 +#: guix-git/doc/guix.texi:10890 msgid "Return a file-like object that expands to the concatenation of @var{obj} and @var{suffix}, where @var{obj} is a lowerable object and each @var{suffix} is a string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10578 +#: guix-git/doc/guix.texi:10892 msgid "As an example, consider this gexp:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10583 +#: guix-git/doc/guix.texi:10897 #, no-wrap msgid "" "(gexp->script \"run-uname\"\n" @@ -19601,12 +20152,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10586 +#: guix-git/doc/guix.texi:10900 msgid "The same effect could be achieved with:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10591 +#: guix-git/doc/guix.texi:10905 #, no-wrap msgid "" "(gexp->script \"run-uname\"\n" @@ -19615,39 +20166,39 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10597 +#: guix-git/doc/guix.texi:10911 msgid "There is one difference though: in the @code{file-append} case, the resulting script contains the absolute file name as a string, whereas in the second case, the resulting script contains a @code{(string-append @dots{})} expression to construct the file name @emph{at run time}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10599 +#: guix-git/doc/guix.texi:10913 #, no-wrap msgid "{Scheme Syntax} let-system @var{system} @var{body}@dots{}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:10600 +#: guix-git/doc/guix.texi:10914 #, no-wrap msgid "{Scheme Syntax} let-system (@var{system} @var{target}) @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10603 +#: guix-git/doc/guix.texi:10917 msgid "Bind @var{system} to the currently targeted system---e.g., @code{\"x86_64-linux\"}---within @var{body}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10608 +#: guix-git/doc/guix.texi:10922 msgid "In the second case, additionally bind @var{target} to the current cross-compilation target---a GNU triplet such as @code{\"arm-linux-gnueabihf\"}---or @code{#f} if we are not cross-compiling." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10611 +#: guix-git/doc/guix.texi:10925 msgid "@code{let-system} is useful in the occasional case where the object spliced into the gexp depends on the target system, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10622 +#: guix-git/doc/guix.texi:10936 #, no-wrap msgid "" "#~(system*\n" @@ -19662,23 +20213,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10625 +#: guix-git/doc/guix.texi:10939 #, no-wrap msgid "{Scheme Syntax} with-parameters ((@var{parameter} @var{value}) @dots{}) @var{exp}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10631 +#: guix-git/doc/guix.texi:10945 msgid "This macro is similar to the @code{parameterize} form for dynamically-bound @dfn{parameters} (@pxref{Parameters,,, guile, GNU Guile Reference Manual}). The key difference is that it takes effect when the file-like object returned by @var{exp} is lowered to a derivation or store item." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10634 +#: guix-git/doc/guix.texi:10948 msgid "A typical use of @code{with-parameters} is to force the system in effect for a given object:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10638 +#: guix-git/doc/guix.texi:10952 #, no-wrap msgid "" "(with-parameters ((%current-system \"i686-linux\"))\n" @@ -19686,94 +20237,94 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10642 +#: guix-git/doc/guix.texi:10956 msgid "The example above returns an object that corresponds to the i686 build of Coreutils, regardless of the current value of @code{%current-system}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10649 +#: guix-git/doc/guix.texi:10963 msgid "Of course, in addition to gexps embedded in ``host'' code, there are also modules containing build tools. To make it clear that they are meant to be used in the build stratum, these modules are kept in the @code{(guix build @dots{})} name space." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10655 +#: guix-git/doc/guix.texi:10969 msgid "Internally, high-level objects are @dfn{lowered}, using their compiler, to either derivations or store items. For instance, lowering a package yields a derivation, and lowering a @code{plain-file} yields a store item. This is achieved using the @code{lower-object} monadic procedure." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10656 +#: guix-git/doc/guix.texi:10970 #, no-wrap msgid "{Monadic Procedure} lower-object @var{obj} [@var{system}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10662 +#: guix-git/doc/guix.texi:10976 msgid "[#:target #f] Return as a value in @code{%store-monad} the derivation or store item corresponding to @var{obj} for @var{system}, cross-compiling for @var{target} if @var{target} is true. @var{obj} must be an object that has an associated gexp compiler, such as a @code{}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10664 +#: guix-git/doc/guix.texi:10978 #, no-wrap msgid "{Procedure} gexp->approximate-sexp @var{gexp}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10672 +#: guix-git/doc/guix.texi:10986 msgid "Sometimes, it may be useful to convert a G-exp into a S-exp. For example, some linters (@pxref{Invoking guix lint}) peek into the build phases of a package to detect potential problems. This conversion can be achieved with this procedure. However, some information can be lost in the process. More specifically, lowerable objects will be silently replaced with some arbitrary object -- currently the list @code{(*approximate*)}, but this may change." msgstr "" #. type: section -#: guix-git/doc/guix.texi:10675 +#: guix-git/doc/guix.texi:10989 #, no-wrap msgid "Invoking @command{guix repl}" msgstr "Invocando @command{guix repl}" #. type: cindex -#: guix-git/doc/guix.texi:10677 +#: guix-git/doc/guix.texi:10991 #, no-wrap msgid "REPL, read-eval-print loop, script" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10687 +#: guix-git/doc/guix.texi:11001 msgid "The @command{guix repl} command makes it easier to program Guix in Guile by launching a Guile @dfn{read-eval-print loop} (REPL) for interactive programming (@pxref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}), or by running Guile scripts (@pxref{Running Guile Scripts,,, guile, GNU Guile Reference Manual}). Compared to just launching the @command{guile} command, @command{guix repl} guarantees that all the Guix modules and all its dependencies are available in the search path." msgstr "" #. type: example -#: guix-git/doc/guix.texi:10692 +#: guix-git/doc/guix.texi:11006 #, no-wrap msgid "guix repl @var{options} [@var{file} @var{args}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10696 +#: guix-git/doc/guix.texi:11010 msgid "When a @var{file} argument is provided, @var{file} is executed as a Guile scripts:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10699 +#: guix-git/doc/guix.texi:11013 #, no-wrap msgid "guix repl my-script.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10703 +#: guix-git/doc/guix.texi:11017 msgid "To pass arguments to the script, use @code{--} to prevent them from being interpreted as arguments to @command{guix repl} itself:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10706 +#: guix-git/doc/guix.texi:11020 #, no-wrap msgid "guix repl -- my-script.scm --input=foo.txt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10711 +#: guix-git/doc/guix.texi:11025 msgid "To make a script executable directly from the shell, using the guix executable that is on the user's search path, add the following two lines at the top of the script:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10715 +#: guix-git/doc/guix.texi:11029 #, no-wrap msgid "" "@code{#!/usr/bin/env -S guix repl --}\n" @@ -19781,12 +20332,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10718 +#: guix-git/doc/guix.texi:11032 msgid "Without a file name argument, a Guile REPL is started:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10724 +#: guix-git/doc/guix.texi:11038 #, no-wrap msgid "" "$ guix repl\n" @@ -19796,169 +20347,169 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10731 +#: guix-git/doc/guix.texi:11045 msgid "In addition, @command{guix repl} implements a simple machine-readable REPL protocol for use by @code{(guix inferior)}, a facility to interact with @dfn{inferiors}, separate processes running a potentially different revision of Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10733 +#: guix-git/doc/guix.texi:11047 msgid "The available options are as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10735 guix-git/doc/guix.texi:13411 +#: guix-git/doc/guix.texi:11049 guix-git/doc/guix.texi:13768 #, no-wrap msgid "--type=@var{type}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10736 guix-git/doc/guix.texi:13412 -#: guix-git/doc/guix.texi:35281 +#: guix-git/doc/guix.texi:11050 guix-git/doc/guix.texi:13769 +#: guix-git/doc/guix.texi:35725 #, no-wrap msgid "-t @var{type}" msgstr "-t @var{tipo}" #. type: table -#: guix-git/doc/guix.texi:10738 +#: guix-git/doc/guix.texi:11052 msgid "Start a REPL of the given @var{TYPE}, which can be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10740 +#: guix-git/doc/guix.texi:11054 #, no-wrap msgid "guile" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10742 +#: guix-git/doc/guix.texi:11056 msgid "This is default, and it spawns a standard full-featured Guile REPL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10742 +#: guix-git/doc/guix.texi:11056 #, no-wrap msgid "machine" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10745 +#: guix-git/doc/guix.texi:11059 msgid "Spawn a REPL that uses the machine-readable protocol. This is the protocol that the @code{(guix inferior)} module speaks." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10751 +#: guix-git/doc/guix.texi:11065 msgid "By default, @command{guix repl} reads from standard input and writes to standard output. When this option is passed, it will instead listen for connections on @var{endpoint}. Here are examples of valid options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10753 +#: guix-git/doc/guix.texi:11067 #, no-wrap msgid "--listen=tcp:37146" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10755 +#: guix-git/doc/guix.texi:11069 msgid "Accept connections on localhost on port 37146." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10756 +#: guix-git/doc/guix.texi:11070 #, no-wrap msgid "--listen=unix:/tmp/socket" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10758 +#: guix-git/doc/guix.texi:11072 msgid "Accept connections on the Unix-domain socket @file{/tmp/socket}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10760 guix-git/doc/guix.texi:10865 -#: guix-git/doc/guix.texi:12763 guix-git/doc/guix.texi:12840 -#: guix-git/doc/guix.texi:13046 guix-git/doc/guix.texi:13191 -#: guix-git/doc/guix.texi:13459 +#: guix-git/doc/guix.texi:11074 guix-git/doc/guix.texi:11179 +#: guix-git/doc/guix.texi:13078 guix-git/doc/guix.texi:13196 +#: guix-git/doc/guix.texi:13403 guix-git/doc/guix.texi:13548 +#: guix-git/doc/guix.texi:13816 #, no-wrap msgid "--load-path=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10761 guix-git/doc/guix.texi:10866 -#: guix-git/doc/guix.texi:12841 guix-git/doc/guix.texi:13047 -#: guix-git/doc/guix.texi:13192 guix-git/doc/guix.texi:13460 +#: guix-git/doc/guix.texi:11075 guix-git/doc/guix.texi:11180 +#: guix-git/doc/guix.texi:13197 guix-git/doc/guix.texi:13404 +#: guix-git/doc/guix.texi:13549 guix-git/doc/guix.texi:13817 #, no-wrap msgid "-L @var{directory}" msgstr "-L @var{diretório}" #. type: table -#: guix-git/doc/guix.texi:10764 guix-git/doc/guix.texi:10869 -#: guix-git/doc/guix.texi:12766 guix-git/doc/guix.texi:12844 -#: guix-git/doc/guix.texi:13050 guix-git/doc/guix.texi:13195 -#: guix-git/doc/guix.texi:13463 +#: guix-git/doc/guix.texi:11078 guix-git/doc/guix.texi:11183 +#: guix-git/doc/guix.texi:13081 guix-git/doc/guix.texi:13200 +#: guix-git/doc/guix.texi:13407 guix-git/doc/guix.texi:13552 +#: guix-git/doc/guix.texi:13820 msgid "Add @var{directory} to the front of the package module search path (@pxref{Package Modules})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10767 +#: guix-git/doc/guix.texi:11081 msgid "This allows users to define their own packages and make them visible to the script or REPL." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10768 guix-git/doc/guix.texi:11390 +#: guix-git/doc/guix.texi:11082 guix-git/doc/guix.texi:11704 #, no-wrap msgid "-q" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10771 +#: guix-git/doc/guix.texi:11085 msgid "Inhibit loading of the @file{~/.guile} file. By default, that configuration file is loaded when spawning a @code{guile} REPL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10781 +#: guix-git/doc/guix.texi:11095 msgid "This section describes Guix command-line utilities. Some of them are primarily targeted at developers and users who write new package definitions, while others are more generally useful. They complement the Scheme programming interface of Guix in a convenient way." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10804 +#: guix-git/doc/guix.texi:11118 #, no-wrap msgid "package building" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:10805 +#: guix-git/doc/guix.texi:11119 #, no-wrap msgid "guix build" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10811 +#: guix-git/doc/guix.texi:11125 msgid "The @command{guix build} command builds packages or derivations and their dependencies, and prints the resulting store paths. Note that it does not modify the user's profile---this is the job of the @command{guix package} command (@pxref{Invoking guix package}). Thus, it is mainly useful for distribution developers." msgstr "" #. type: example -#: guix-git/doc/guix.texi:10816 +#: guix-git/doc/guix.texi:11130 #, no-wrap msgid "guix build @var{options} @var{package-or-derivation}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10821 +#: guix-git/doc/guix.texi:11135 msgid "As an example, the following command builds the latest versions of Emacs and of Guile, displays their build logs, and finally displays the resulting directories:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10824 +#: guix-git/doc/guix.texi:11138 #, no-wrap msgid "guix build emacs guile\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10827 +#: guix-git/doc/guix.texi:11141 msgid "Similarly, the following command builds all the available packages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10831 +#: guix-git/doc/guix.texi:11145 #, no-wrap msgid "" "guix build --quiet --keep-going \\\n" @@ -19966,327 +20517,327 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10839 +#: guix-git/doc/guix.texi:11153 msgid "@var{package-or-derivation} may be either the name of a package found in the software distribution such as @code{coreutils} or @code{coreutils@@8.20}, or a derivation such as @file{/gnu/store/@dots{}-coreutils-8.19.drv}. In the former case, a package with the corresponding name (and optionally version) is searched for among the GNU distribution modules (@pxref{Package Modules})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10844 +#: guix-git/doc/guix.texi:11158 msgid "Alternatively, the @option{--expression} option may be used to specify a Scheme expression that evaluates to a package; this is useful when disambiguating among several same-named packages or package variants is needed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10847 +#: guix-git/doc/guix.texi:11161 msgid "There may be zero or more @var{options}. The available options are described in the subsections below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10862 +#: guix-git/doc/guix.texi:11176 msgid "A number of options that control the build process are common to @command{guix build} and other commands that can spawn builds, such as @command{guix package} or @command{guix archive}. These are the following:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10872 guix-git/doc/guix.texi:12769 -#: guix-git/doc/guix.texi:13053 guix-git/doc/guix.texi:13198 -#: guix-git/doc/guix.texi:13466 +#: guix-git/doc/guix.texi:11186 guix-git/doc/guix.texi:13084 +#: guix-git/doc/guix.texi:13410 guix-git/doc/guix.texi:13555 +#: guix-git/doc/guix.texi:13823 msgid "This allows users to define their own packages and make them visible to the command-line tools." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10873 +#: guix-git/doc/guix.texi:11187 #, no-wrap msgid "--keep-failed" msgstr "--keep-failed" #. type: itemx -#: guix-git/doc/guix.texi:10874 +#: guix-git/doc/guix.texi:11188 #, no-wrap msgid "-K" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10880 +#: guix-git/doc/guix.texi:11194 msgid "Keep the build tree of failed builds. Thus, if a build fails, its build tree is kept under @file{/tmp}, in a directory whose name is shown at the end of the build log. This is useful when debugging build issues. @xref{Debugging Build Failures}, for tips and tricks on how to debug build issues." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10884 +#: guix-git/doc/guix.texi:11198 msgid "This option implies @option{--no-offload}, and it has no effect when connecting to a remote daemon with a @code{guix://} URI (@pxref{The Store, the @env{GUIX_DAEMON_SOCKET} variable})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10885 +#: guix-git/doc/guix.texi:11199 #, no-wrap msgid "--keep-going" msgstr "--keep-going" #. type: itemx -#: guix-git/doc/guix.texi:10886 +#: guix-git/doc/guix.texi:11200 #, no-wrap msgid "-k" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10889 +#: guix-git/doc/guix.texi:11203 msgid "Keep going when some of the derivations fail to build; return only once all the builds have either completed or failed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10892 +#: guix-git/doc/guix.texi:11206 msgid "The default behavior is to stop as soon as one of the specified derivations has failed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10896 +#: guix-git/doc/guix.texi:11210 msgid "Do not build the derivations." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:10898 +#: guix-git/doc/guix.texi:11212 msgid "fallback-option" msgstr "fallback-option" #. type: item -#: guix-git/doc/guix.texi:10898 +#: guix-git/doc/guix.texi:11212 #, no-wrap msgid "--fallback" msgstr "--fallback" #. type: table -#: guix-git/doc/guix.texi:10901 +#: guix-git/doc/guix.texi:11215 msgid "When substituting a pre-built binary fails, fall back to building packages locally (@pxref{Substitution Failure})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:10907 +#: guix-git/doc/guix.texi:11221 msgid "client-substitute-urls" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10907 +#: guix-git/doc/guix.texi:11221 msgid "Consider @var{urls} the whitespace-separated list of substitute source URLs, overriding the default list of URLs of @command{guix-daemon} (@pxref{daemon-substitute-urls,, @command{guix-daemon} URLs})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10911 +#: guix-git/doc/guix.texi:11225 msgid "This means that substitutes may be downloaded from @var{urls}, provided they are signed by a key authorized by the system administrator (@pxref{Substitutes})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10914 +#: guix-git/doc/guix.texi:11228 msgid "When @var{urls} is the empty string, substitutes are effectively disabled." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10920 +#: guix-git/doc/guix.texi:11234 #, no-wrap msgid "--no-grafts" msgstr "--no-grafts" #. type: table -#: guix-git/doc/guix.texi:10924 +#: guix-git/doc/guix.texi:11238 msgid "Do not ``graft'' packages. In practice, this means that package updates available as grafts are not applied. @xref{Security Updates}, for more information on grafts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10925 +#: guix-git/doc/guix.texi:11239 #, no-wrap msgid "--rounds=@var{n}" msgstr "--rounds=@var{n}" #. type: table -#: guix-git/doc/guix.texi:10928 +#: guix-git/doc/guix.texi:11242 msgid "Build each derivation @var{n} times in a row, and raise an error if consecutive build results are not bit-for-bit identical." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10933 +#: guix-git/doc/guix.texi:11247 msgid "This is a useful way to detect non-deterministic builds processes. Non-deterministic build processes are a problem because they make it practically impossible for users to @emph{verify} whether third-party binaries are genuine. @xref{Invoking guix challenge}, for more." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10949 +#: guix-git/doc/guix.texi:11263 msgid "By default, the daemon's setting is honored (@pxref{Invoking guix-daemon, @option{--max-silent-time}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10956 +#: guix-git/doc/guix.texi:11270 msgid "By default, the daemon's setting is honored (@pxref{Invoking guix-daemon, @option{--timeout}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10959 +#: guix-git/doc/guix.texi:11273 #, no-wrap msgid "verbosity, of the command-line tools" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10960 +#: guix-git/doc/guix.texi:11274 #, no-wrap msgid "build logs, verbosity" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10961 +#: guix-git/doc/guix.texi:11275 #, no-wrap msgid "-v @var{level}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10962 +#: guix-git/doc/guix.texi:11276 #, no-wrap msgid "--verbosity=@var{level}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10967 +#: guix-git/doc/guix.texi:11281 msgid "Use the given verbosity @var{level}, an integer. Choosing 0 means that no output is produced, 1 is for quiet output; 2 is similar to 1 but it additionally displays download URLs; 3 shows all the build log output on standard error." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10972 +#: guix-git/doc/guix.texi:11286 msgid "Allow the use of up to @var{n} CPU cores for the build. The special value @code{0} means to use as many CPU cores as available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10978 +#: guix-git/doc/guix.texi:11292 msgid "Allow at most @var{n} build jobs in parallel. @xref{Invoking guix-daemon, @option{--max-jobs}}, for details about this option and the equivalent @command{guix-daemon} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10979 +#: guix-git/doc/guix.texi:11293 #, no-wrap msgid "--debug=@var{level}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10983 +#: guix-git/doc/guix.texi:11297 msgid "Produce debugging output coming from the build daemon. @var{level} must be an integer between 0 and 5; higher means more verbose output. Setting a level of 4 or more may be helpful when debugging setup issues with the build daemon." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10990 +#: guix-git/doc/guix.texi:11304 msgid "Behind the scenes, @command{guix build} is essentially an interface to the @code{package-derivation} procedure of the @code{(guix packages)} module, and to the @code{build-derivations} procedure of the @code{(guix derivations)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10994 +#: guix-git/doc/guix.texi:11308 msgid "In addition to options explicitly passed on the command line, @command{guix build} and other @command{guix} commands that support building honor the @env{GUIX_BUILD_OPTIONS} environment variable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:10995 +#: guix-git/doc/guix.texi:11309 #, no-wrap msgid "{Environment Variable} GUIX_BUILD_OPTIONS" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:11000 +#: guix-git/doc/guix.texi:11314 msgid "Users can define this variable to a list of command line options that will automatically be used by @command{guix build} and other @command{guix} commands that can perform builds, as in the example below:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11003 +#: guix-git/doc/guix.texi:11317 #, no-wrap msgid "$ export GUIX_BUILD_OPTIONS=\"--no-substitutes -c 2 -L /foo/bar\"\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:11007 +#: guix-git/doc/guix.texi:11321 msgid "These options are parsed independently, and the result is appended to the parsed command-line options." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11013 +#: guix-git/doc/guix.texi:11327 #, no-wrap msgid "package variants" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11021 +#: guix-git/doc/guix.texi:11335 msgid "Another set of command-line options supported by @command{guix build} and also @command{guix package} are @dfn{package transformation options}. These are options that make it possible to define @dfn{package variants}---for instance, packages built from different source code. This is a convenient way to create customized packages on the fly without having to type in the definitions of package variants (@pxref{Defining Packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11025 +#: guix-git/doc/guix.texi:11339 msgid "Package transformation options are preserved across upgrades: @command{guix upgrade} attempts to apply transformation options initially used when creating the profile to the upgraded packages." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11030 +#: guix-git/doc/guix.texi:11344 msgid "The available options are listed below. Most commands support them and also support a @option{--help-transform} option that lists all the available options and a synopsis (these options are not shown in the @option{--help} output for brevity)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11033 +#: guix-git/doc/guix.texi:11347 #, fuzzy, no-wrap #| msgid "formatting code" msgid "performance, tuning code" msgstr "formatação de código" #. type: cindex -#: guix-git/doc/guix.texi:11034 +#: guix-git/doc/guix.texi:11348 #, fuzzy, no-wrap #| msgid "customization, of packages" msgid "optimization, of package code" msgstr "personalização, de pacotes" #. type: cindex -#: guix-git/doc/guix.texi:11035 +#: guix-git/doc/guix.texi:11349 #, fuzzy, no-wrap #| msgid "formatting, of code" msgid "tuning, of package code" msgstr "formatação, de código" #. type: cindex -#: guix-git/doc/guix.texi:11036 +#: guix-git/doc/guix.texi:11350 #, no-wrap msgid "SIMD support" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11037 +#: guix-git/doc/guix.texi:11351 #, fuzzy, no-wrap #| msgid "packages" msgid "tunable packages" msgstr "pacotes" #. type: cindex -#: guix-git/doc/guix.texi:11038 +#: guix-git/doc/guix.texi:11352 #, fuzzy, no-wrap #| msgid "package version" msgid "package multi-versioning" msgstr "versão de pacote" #. type: item -#: guix-git/doc/guix.texi:11039 +#: guix-git/doc/guix.texi:11353 #, fuzzy, no-wrap #| msgid "--coverage[=@var{count}]" msgid "--tune[=@var{cpu}]" msgstr "--coverage[=@var{contagem}]" #. type: table -#: guix-git/doc/guix.texi:11043 +#: guix-git/doc/guix.texi:11357 msgid "Use versions of the packages marked as ``tunable'' optimized for @var{cpu}. When @var{cpu} is @code{native}, or when it is omitted, tune for the CPU on which the @command{guix} command is running." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11049 +#: guix-git/doc/guix.texi:11363 msgid "Valid @var{cpu} names are those recognized by the underlying compiler, by default the GNU Compiler Collection. On x86_64 processors, this includes CPU names such as @code{nehalem}, @code{haswell}, and @code{skylake} (@pxref{x86 Options, @code{-march},, gcc, Using the GNU Compiler Collection (GCC)})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11056 +#: guix-git/doc/guix.texi:11370 msgid "As new generations of CPUs come out, they augment the standard instruction set architecture (ISA) with additional instructions, in particular instructions for single-instruction/multiple-data (SIMD) parallel processing. For example, while Core2 and Skylake CPUs both implement the x86_64 ISA, only the latter supports AVX2 SIMD instructions." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11063 +#: guix-git/doc/guix.texi:11377 msgid "The primary gain one can expect from @option{--tune} is for programs that can make use of those SIMD capabilities @emph{and} that do not already have a mechanism to select the right optimized code at run time. Packages that have the @code{tunable?} property set are considered @dfn{tunable packages} by the @option{--tune} option; a package definition with the property set looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:11068 +#: guix-git/doc/guix.texi:11382 #, no-wrap msgid "" "(package\n" @@ -20296,7 +20847,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:11072 +#: guix-git/doc/guix.texi:11386 #, no-wrap msgid "" " ;; This package may benefit from SIMD extensions so\n" @@ -20305,87 +20856,87 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11077 +#: guix-git/doc/guix.texi:11391 msgid "Other packages are not considered tunable. This allows Guix to use generic binaries in the cases where tuning for a specific CPU is unlikely to provide any gain." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11083 +#: guix-git/doc/guix.texi:11397 msgid "Tuned packages are built with @code{-march=@var{CPU}}; under the hood, the @option{-march} option is passed to the actual wrapper by a compiler wrapper. Since the build machine may not be able to run code for the target CPU micro-architecture, the test suite is not run when building a tuned package." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11087 +#: guix-git/doc/guix.texi:11401 msgid "To reduce rebuilds to the minimum, tuned packages are @emph{grafted} onto packages that depend on them (@pxref{Security Updates, grafts}). Thus, using @option{--no-grafts} cancels the effect of @option{--tune}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11093 +#: guix-git/doc/guix.texi:11407 msgid "We call this technique @dfn{package multi-versioning}: several variants of tunable packages may be built, one for each CPU variant. It is the coarse-grain counterpart of @dfn{function multi-versioning} as implemented by the GNU tool chain (@pxref{Function Multiversioning,,, gcc, Using the GNU Compiler Collection (GCC)})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11094 +#: guix-git/doc/guix.texi:11408 #, no-wrap msgid "--with-source=@var{source}" msgstr "--with-source=@var{fonte}" #. type: itemx -#: guix-git/doc/guix.texi:11095 +#: guix-git/doc/guix.texi:11409 #, no-wrap msgid "--with-source=@var{package}=@var{source}" msgstr "--with-source=@var{pacote}=@var{fonte}" #. type: itemx -#: guix-git/doc/guix.texi:11096 +#: guix-git/doc/guix.texi:11410 #, no-wrap msgid "--with-source=@var{package}@@@var{version}=@var{source}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11101 +#: guix-git/doc/guix.texi:11415 msgid "Use @var{source} as the source of @var{package}, and @var{version} as its version number. @var{source} must be a file name or a URL, as for @command{guix download} (@pxref{Invoking guix download})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11107 +#: guix-git/doc/guix.texi:11421 msgid "When @var{package} is omitted, it is taken to be the package name specified on the command line that matches the base of @var{source}---e.g., if @var{source} is @code{/src/guile-2.0.10.tar.gz}, the corresponding package is @code{guile}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11110 +#: guix-git/doc/guix.texi:11424 msgid "Likewise, when @var{version} is omitted, the version string is inferred from @var{source}; in the previous example, it is @code{2.0.10}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11115 +#: guix-git/doc/guix.texi:11429 msgid "This option allows users to try out versions of packages other than the one provided by the distribution. The example below downloads @file{ed-1.7.tar.gz} from a GNU mirror and uses that as the source for the @code{ed} package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11118 +#: guix-git/doc/guix.texi:11432 #, no-wrap msgid "guix build ed --with-source=mirror://gnu/ed/ed-1.7.tar.gz\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11122 +#: guix-git/doc/guix.texi:11436 msgid "As a developer, @option{--with-source} makes it easy to test release candidates:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11125 +#: guix-git/doc/guix.texi:11439 #, no-wrap msgid "guix build guile --with-source=../guile-2.0.9.219-e1bb7.tar.xz\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11128 +#: guix-git/doc/guix.texi:11442 msgid "@dots{} or to build from a checkout in a pristine environment:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11132 +#: guix-git/doc/guix.texi:11446 #, no-wrap msgid "" "$ git clone git://git.sv.gnu.org/guix.git\n" @@ -20393,126 +20944,126 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11134 +#: guix-git/doc/guix.texi:11448 #, no-wrap msgid "--with-input=@var{package}=@var{replacement}" msgstr "--with-input=@var{pacote}=@var{substituto}" #. type: table -#: guix-git/doc/guix.texi:11139 +#: guix-git/doc/guix.texi:11453 msgid "Replace dependency on @var{package} by a dependency on @var{replacement}. @var{package} must be a package name, and @var{replacement} must be a package specification such as @code{guile} or @code{guile@@1.8}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11143 +#: guix-git/doc/guix.texi:11457 msgid "For instance, the following command builds Guix, but replaces its dependency on the current stable version of Guile with a dependency on the legacy version of Guile, @code{guile@@2.0}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11146 +#: guix-git/doc/guix.texi:11460 #, no-wrap msgid "guix build --with-input=guile=guile@@2.0 guix\n" msgstr "guix build --with-input=guile=guile@@2.0 guix\n" #. type: table -#: guix-git/doc/guix.texi:11151 +#: guix-git/doc/guix.texi:11465 msgid "This is a recursive, deep replacement. So in this example, both @code{guix} and its dependency @code{guile-json} (which also depends on @code{guile}) get rebuilt against @code{guile@@2.0}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11154 +#: guix-git/doc/guix.texi:11468 msgid "This is implemented using the @code{package-input-rewriting} Scheme procedure (@pxref{Defining Packages, @code{package-input-rewriting}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11155 +#: guix-git/doc/guix.texi:11469 #, no-wrap msgid "--with-graft=@var{package}=@var{replacement}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11161 +#: guix-git/doc/guix.texi:11475 msgid "This is similar to @option{--with-input} but with an important difference: instead of rebuilding the whole dependency chain, @var{replacement} is built and then @dfn{grafted} onto the binaries that were initially referring to @var{package}. @xref{Security Updates}, for more information on grafts." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11165 +#: guix-git/doc/guix.texi:11479 msgid "For example, the command below grafts version 3.5.4 of GnuTLS onto Wget and all its dependencies, replacing references to the version of GnuTLS they currently refer to:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11168 +#: guix-git/doc/guix.texi:11482 #, no-wrap msgid "guix build --with-graft=gnutls=gnutls@@3.5.4 wget\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11177 +#: guix-git/doc/guix.texi:11491 msgid "This has the advantage of being much faster than rebuilding everything. But there is a caveat: it works if and only if @var{package} and @var{replacement} are strictly compatible---for example, if they provide a library, the application binary interface (ABI) of those libraries must be compatible. If @var{replacement} is somehow incompatible with @var{package}, then the resulting package may be unusable. Use with care!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11178 guix-git/doc/guix.texi:37882 +#: guix-git/doc/guix.texi:11492 guix-git/doc/guix.texi:38371 #, no-wrap msgid "debugging info, rebuilding" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11179 +#: guix-git/doc/guix.texi:11493 #, no-wrap msgid "--with-debug-info=@var{package}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11184 +#: guix-git/doc/guix.texi:11498 msgid "Build @var{package} in a way that preserves its debugging info and graft it onto packages that depend on it. This is useful if @var{package} does not already provide debugging info as a @code{debug} output (@pxref{Installing Debugging Files})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11190 +#: guix-git/doc/guix.texi:11504 msgid "For example, suppose you're experiencing a crash in Inkscape and would like to see what's up in GLib, a library deep down in Inkscape's dependency graph. GLib lacks a @code{debug} output, so debugging is tough. Fortunately, you rebuild GLib with debugging info and tack it on Inkscape:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11193 guix-git/doc/guix.texi:37913 +#: guix-git/doc/guix.texi:11507 guix-git/doc/guix.texi:38402 #, no-wrap msgid "guix install inkscape --with-debug-info=glib\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11197 +#: guix-git/doc/guix.texi:11511 msgid "Only GLib needs to be recompiled so this takes a reasonable amount of time. @xref{Installing Debugging Files}, for more info." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11203 +#: guix-git/doc/guix.texi:11517 msgid "Under the hood, this option works by passing the @samp{#:strip-binaries? #f} to the build system of the package of interest (@pxref{Build Systems}). Most build systems support that option but some do not. In that case, an error is raised." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11207 +#: guix-git/doc/guix.texi:11521 msgid "Likewise, if a C/C++ package is built without @code{-g} (which is rarely the case), debugging info will remain unavailable even when @code{#:strip-binaries?} is false." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11209 +#: guix-git/doc/guix.texi:11523 #, no-wrap msgid "tool chain, changing the build tool chain of a package" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11210 +#: guix-git/doc/guix.texi:11524 #, no-wrap msgid "--with-c-toolchain=@var{package}=@var{toolchain}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11214 +#: guix-git/doc/guix.texi:11528 msgid "This option changes the compilation of @var{package} and everything that depends on it so that they get built with @var{toolchain} instead of the default GNU tool chain for C/C++." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11221 +#: guix-git/doc/guix.texi:11535 #, no-wrap msgid "" "guix build octave-cli \\\n" @@ -20521,17 +21072,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11228 +#: guix-git/doc/guix.texi:11542 msgid "The command above builds a variant of the @code{fftw} and @code{fftwf} packages using version 10 of @code{gcc-toolchain} instead of the default tool chain, and then builds a variant of the GNU@tie{}Octave command-line interface using them. GNU@tie{}Octave itself is also built with @code{gcc-toolchain@@10}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11232 +#: guix-git/doc/guix.texi:11546 msgid "This other example builds the Hardware Locality (@code{hwloc}) library and its dependents up to @code{intel-mpi-benchmarks} with the Clang C compiler:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11236 +#: guix-git/doc/guix.texi:11550 #, no-wrap msgid "" "guix build --with-c-toolchain=hwloc=clang-toolchain \\\n" @@ -20539,40 +21090,40 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11245 +#: guix-git/doc/guix.texi:11559 msgid "There can be application binary interface (ABI) incompatibilities among tool chains. This is particularly true of the C++ standard library and run-time support libraries such as that of OpenMP@. By rebuilding all dependents with the same tool chain, @option{--with-c-toolchain} minimizes the risks of incompatibility but cannot entirely eliminate them. Choose @var{package} wisely." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11247 +#: guix-git/doc/guix.texi:11561 #, no-wrap msgid "--with-git-url=@var{package}=@var{url}" msgstr "--with-git-url=@var{pacote}=@var{url}" #. type: cindex -#: guix-git/doc/guix.texi:11248 +#: guix-git/doc/guix.texi:11562 #, no-wrap msgid "Git, using the latest commit" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11249 +#: guix-git/doc/guix.texi:11563 #, no-wrap msgid "latest commit, building" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11253 +#: guix-git/doc/guix.texi:11567 msgid "Build @var{package} from the latest commit of the @code{master} branch of the Git repository at @var{url}. Git sub-modules of the repository are fetched, recursively." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11256 +#: guix-git/doc/guix.texi:11570 msgid "For example, the following command builds the NumPy Python library against the latest commit of the master branch of Python itself:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11260 +#: guix-git/doc/guix.texi:11574 #, no-wrap msgid "" "guix build python-numpy \\\n" @@ -20580,318 +21131,318 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11264 +#: guix-git/doc/guix.texi:11578 msgid "This option can also be combined with @option{--with-branch} or @option{--with-commit} (see below)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11265 guix-git/doc/guix.texi:28957 +#: guix-git/doc/guix.texi:11579 guix-git/doc/guix.texi:29294 #, no-wrap msgid "continuous integration" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11271 +#: guix-git/doc/guix.texi:11585 msgid "Obviously, since it uses the latest commit of the given branch, the result of such a command varies over time. Nevertheless it is a convenient way to rebuild entire software stacks against the latest commit of one or more packages. This is particularly useful in the context of continuous integration (CI)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11275 +#: guix-git/doc/guix.texi:11589 msgid "Checkouts are kept in a cache under @file{~/.cache/guix/checkouts} to speed up consecutive accesses to the same repository. You may want to clean it up once in a while to save disk space." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11276 +#: guix-git/doc/guix.texi:11590 #, no-wrap msgid "--with-branch=@var{package}=@var{branch}" msgstr "--with-branch=@var{pacote}=@var{ramo}" #. type: table -#: guix-git/doc/guix.texi:11282 +#: guix-git/doc/guix.texi:11596 msgid "Build @var{package} from the latest commit of @var{branch}. If the @code{source} field of @var{package} is an origin with the @code{git-fetch} method (@pxref{origin Reference}) or a @code{git-checkout} object, the repository URL is taken from that @code{source}. Otherwise you have to use @option{--with-git-url} to specify the URL of the Git repository." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11287 +#: guix-git/doc/guix.texi:11601 msgid "For instance, the following command builds @code{guile-sqlite3} from the latest commit of its @code{master} branch, and then builds @code{guix} (which depends on it) and @code{cuirass} (which depends on @code{guix}) against this specific @code{guile-sqlite3} build:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11290 +#: guix-git/doc/guix.texi:11604 #, no-wrap msgid "guix build --with-branch=guile-sqlite3=master cuirass\n" msgstr "guix build --with-branch=guile-sqlite3=master cuirass\n" #. type: item -#: guix-git/doc/guix.texi:11292 +#: guix-git/doc/guix.texi:11606 #, no-wrap msgid "--with-commit=@var{package}=@var{commit}" msgstr "--with-commit=@var{pacote}=@var{commit}" #. type: table -#: guix-git/doc/guix.texi:11297 +#: guix-git/doc/guix.texi:11611 msgid "This is similar to @option{--with-branch}, except that it builds from @var{commit} rather than the tip of a branch. @var{commit} must be a valid Git commit SHA1 identifier, a tag, or a @command{git describe} style identifier such as @code{1.0-3-gabc123}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11298 +#: guix-git/doc/guix.texi:11612 #, no-wrap msgid "--with-patch=@var{package}=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11305 +#: guix-git/doc/guix.texi:11619 msgid "Add @var{file} to the list of patches applied to @var{package}, where @var{package} is a spec such as @code{python@@3.8} or @code{glibc}. @var{file} must contain a patch; it is applied with the flags specified in the @code{origin} of @var{package} (@pxref{origin Reference}), which by default includes @code{-p1} (@pxref{patch Directories,,, diffutils, Comparing and Merging Files})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11308 +#: guix-git/doc/guix.texi:11622 msgid "As an example, the command below rebuilds Coreutils with the GNU C Library (glibc) patched with the given patch:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11311 +#: guix-git/doc/guix.texi:11625 #, no-wrap msgid "guix build coreutils --with-patch=glibc=./glibc-frob.patch\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11315 +#: guix-git/doc/guix.texi:11629 msgid "In this example, glibc itself as well as everything that leads to Coreutils in the dependency graph is rebuilt." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11316 +#: guix-git/doc/guix.texi:11630 #, no-wrap msgid "upstream, latest version" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11317 +#: guix-git/doc/guix.texi:11631 #, no-wrap msgid "--with-latest=@var{package}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11322 +#: guix-git/doc/guix.texi:11636 msgid "So you like living on the bleeding edge? This option is for you! It replaces occurrences of @var{package} in the dependency graph with its latest upstream version, as reported by @command{guix refresh} (@pxref{Invoking guix refresh})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11326 +#: guix-git/doc/guix.texi:11640 msgid "It does so by determining the latest upstream release of @var{package} (if possible), downloading it, and authenticating it @emph{if} it comes with an OpenPGP signature." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11329 +#: guix-git/doc/guix.texi:11643 msgid "As an example, the command below builds Guix against the latest version of Guile-JSON:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11332 +#: guix-git/doc/guix.texi:11646 #, no-wrap msgid "guix build guix --with-latest=guile-json\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11341 +#: guix-git/doc/guix.texi:11655 msgid "There are limitations. First, in cases where the tool cannot or does not know how to authenticate source code, you are at risk of running malicious code; a warning is emitted in this case. Second, this option simply changes the source used in the existing package definitions, which is not always sufficient: there might be additional dependencies that need to be added, patches to apply, and more generally the quality assurance work that Guix developers normally do will be missing." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11346 +#: guix-git/doc/guix.texi:11660 msgid "You've been warned! In all the other cases, it's a snappy way to stay on top. We encourage you to submit patches updating the actual package definitions once you have successfully tested an upgrade (@pxref{Contributing})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11347 +#: guix-git/doc/guix.texi:11661 #, no-wrap msgid "test suite, skipping" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11348 +#: guix-git/doc/guix.texi:11662 #, no-wrap msgid "--without-tests=@var{package}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11354 +#: guix-git/doc/guix.texi:11668 msgid "Build @var{package} without running its tests. This can be useful in situations where you want to skip the lengthy test suite of a intermediate package, or if a package's test suite fails in a non-deterministic fashion. It should be used with care because running the test suite is a good way to ensure a package is working as intended." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11358 +#: guix-git/doc/guix.texi:11672 msgid "Turning off tests leads to a different store item. Consequently, when using this option, anything that depends on @var{package} must be rebuilt, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11361 +#: guix-git/doc/guix.texi:11675 #, no-wrap msgid "guix install --without-tests=python python-notebook\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11367 +#: guix-git/doc/guix.texi:11681 msgid "The command above installs @code{python-notebook} on top of @code{python} built without running its test suite. To do so, it also rebuilds everything that depends on @code{python}, including @code{python-notebook} itself." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11373 +#: guix-git/doc/guix.texi:11687 msgid "Internally, @option{--without-tests} relies on changing the @code{#:tests?} option of a package's @code{check} phase (@pxref{Build Systems}). Note that some packages use a customized @code{check} phase that does not respect a @code{#:tests? #f} setting. Therefore, @option{--without-tests} has no effect on these packages." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11380 +#: guix-git/doc/guix.texi:11694 msgid "Wondering how to achieve the same effect using Scheme code, for example in your manifest, or how to write your own package transformation? @xref{Defining Package Variants}, for an overview of the programming interfaces available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11386 +#: guix-git/doc/guix.texi:11700 msgid "The command-line options presented below are specific to @command{guix build}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11389 +#: guix-git/doc/guix.texi:11703 #, no-wrap msgid "--quiet" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11394 +#: guix-git/doc/guix.texi:11708 msgid "Build quietly, without displaying the build log; this is equivalent to @option{--verbosity=0}. Upon completion, the build log is kept in @file{/var} (or similar) and can always be retrieved using the @option{--log-file} option." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11399 +#: guix-git/doc/guix.texi:11713 msgid "Build the package, derivation, or other file-like object that the code within @var{file} evaluates to (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11402 +#: guix-git/doc/guix.texi:11716 msgid "As an example, @var{file} might contain a package definition like this (@pxref{Defining Packages}):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11411 +#: guix-git/doc/guix.texi:11725 msgid "The @var{file} may also contain a JSON representation of one or more package definitions. Running @code{guix build -f} on @file{hello.json} with the following contents would result in building the packages @code{myhello} and @code{greeter}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11416 +#: guix-git/doc/guix.texi:11730 #, no-wrap msgid "--manifest=@var{manifest}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11417 +#: guix-git/doc/guix.texi:11731 #, no-wrap msgid "-m @var{manifest}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11420 +#: guix-git/doc/guix.texi:11734 msgid "Build all packages listed in the given @var{manifest} (@pxref{profile-manifest, @option{--manifest}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11424 +#: guix-git/doc/guix.texi:11738 msgid "Build the package or derivation @var{expr} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11428 +#: guix-git/doc/guix.texi:11742 msgid "For example, @var{expr} may be @code{(@@ (gnu packages guile) guile-1.8)}, which unambiguously designates this specific variant of version 1.8 of Guile." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11432 +#: guix-git/doc/guix.texi:11746 msgid "Alternatively, @var{expr} may be a G-expression, in which case it is used as a build program passed to @code{gexp->derivation} (@pxref{G-Expressions})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11436 +#: guix-git/doc/guix.texi:11750 msgid "Lastly, @var{expr} may refer to a zero-argument monadic procedure (@pxref{The Store Monad}). The procedure must return a derivation as a monadic value, which is then passed through @code{run-with-store}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11437 +#: guix-git/doc/guix.texi:11751 #, no-wrap msgid "--source" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11438 guix-git/doc/guix.texi:11835 +#: guix-git/doc/guix.texi:11752 #, no-wrap msgid "-S" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11441 +#: guix-git/doc/guix.texi:11755 msgid "Build the source derivations of the packages, rather than the packages themselves." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11445 +#: guix-git/doc/guix.texi:11759 msgid "For instance, @code{guix build -S gcc} returns something like @file{/gnu/store/@dots{}-gcc-4.7.2.tar.bz2}, which is the GCC source tarball." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11449 +#: guix-git/doc/guix.texi:11763 msgid "The returned source tarball is the result of applying any patches and code snippets specified in the package @code{origin} (@pxref{Defining Packages})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11450 +#: guix-git/doc/guix.texi:11764 #, no-wrap msgid "source, verification" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11456 +#: guix-git/doc/guix.texi:11770 msgid "As with other derivations, the result of building a source derivation can be verified using the @option{--check} option (@pxref{build-check}). This is useful to validate that a (potentially already built or substituted, thus cached) package source matches against its declared hash." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11461 +#: guix-git/doc/guix.texi:11775 msgid "Note that @command{guix build -S} compiles the sources only of the specified packages. They do not include the sources of statically linked dependencies and by themselves are insufficient for reproducing the packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11462 +#: guix-git/doc/guix.texi:11776 #, no-wrap msgid "--sources" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11469 +#: guix-git/doc/guix.texi:11783 msgid "Fetch and return the source of @var{package-or-derivation} and all their dependencies, recursively. This is a handy way to obtain a local copy of all the source code needed to build @var{packages}, allowing you to eventually build them even without network access. It is an extension of the @option{--source} option and can accept one of the following optional argument values:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11471 guix-git/doc/guix.texi:13252 +#: guix-git/doc/guix.texi:11785 guix-git/doc/guix.texi:13609 #, no-wrap msgid "package" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11474 +#: guix-git/doc/guix.texi:11788 msgid "This value causes the @option{--sources} option to behave in the same way as the @option{--source} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11475 guix-git/doc/guix.texi:19682 +#: guix-git/doc/guix.texi:11789 guix-git/doc/guix.texi:20044 #, no-wrap msgid "all" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11478 +#: guix-git/doc/guix.texi:11792 msgid "Build the source derivations of all packages, including any source that might be listed as @code{inputs}. This is the default value." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11484 +#: guix-git/doc/guix.texi:11798 #, no-wrap msgid "" "$ guix build --sources tzdata\n" @@ -20901,18 +21452,18 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11486 +#: guix-git/doc/guix.texi:11800 #, no-wrap msgid "transitive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11490 +#: guix-git/doc/guix.texi:11804 msgid "Build the source derivations of all packages, as well of all transitive inputs to the packages. This can be used e.g.@: to prefetch package source for later offline building." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11501 +#: guix-git/doc/guix.texi:11815 #, no-wrap msgid "" "$ guix build --sources=transitive tzdata\n" @@ -20927,146 +21478,146 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11511 +#: guix-git/doc/guix.texi:11825 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of the system type of the build host. The @command{guix build} command allows you to repeat this option several times, in which case it builds for all the specified systems; other commands ignore extraneous @option{-s} options." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11516 +#: guix-git/doc/guix.texi:11830 msgid "The @option{--system} flag is for @emph{native} compilation and must not be confused with cross-compilation. See @option{--target} below for information on cross-compilation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11523 +#: guix-git/doc/guix.texi:11837 msgid "An example use of this is on Linux-based systems, which can emulate different personalities. For instance, passing @option{--system=i686-linux} on an @code{x86_64-linux} system or @option{--system=armhf-linux} on an @code{aarch64-linux} system allows you to build packages in a complete 32-bit environment." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11528 +#: guix-git/doc/guix.texi:11842 msgid "Building for an @code{armhf-linux} system is unconditionally enabled on @code{aarch64-linux} machines, although certain aarch64 chipsets do not allow for this functionality, notably the ThunderX." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11534 +#: guix-git/doc/guix.texi:11848 msgid "Similarly, when transparent emulation with QEMU and @code{binfmt_misc} is enabled (@pxref{Virtualization Services, @code{qemu-binfmt-service-type}}), you can build for any system for which a QEMU @code{binfmt_misc} handler is installed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11538 +#: guix-git/doc/guix.texi:11852 msgid "Builds for a system other than that of the machine you are using can also be offloaded to a remote machine of the right architecture. @xref{Daemon Offload Setup}, for more information on offloading." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11544 +#: guix-git/doc/guix.texi:11858 msgid "Cross-build for @var{triplet}, which must be a valid GNU triplet, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying Target Triplets, GNU configuration triplets,, autoconf, Autoconf})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:11546 +#: guix-git/doc/guix.texi:11860 msgid "build-check" msgstr "build-check" #. type: cindex -#: guix-git/doc/guix.texi:11547 +#: guix-git/doc/guix.texi:11861 #, no-wrap msgid "determinism, checking" msgstr "determinismo, verificação" #. type: cindex -#: guix-git/doc/guix.texi:11548 +#: guix-git/doc/guix.texi:11862 #, no-wrap msgid "reproducibility, checking" msgstr "reprodutibilidade, verificação" #. type: table -#: guix-git/doc/guix.texi:11552 +#: guix-git/doc/guix.texi:11866 msgid "Rebuild @var{package-or-derivation}, which are already available in the store, and raise an error if the build results are not bit-for-bit identical." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11557 +#: guix-git/doc/guix.texi:11871 msgid "This mechanism allows you to check whether previously installed substitutes are genuine (@pxref{Substitutes}), or whether the build result of a package is deterministic. @xref{Invoking guix challenge}, for more background information and tools." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11562 +#: guix-git/doc/guix.texi:11876 #, no-wrap msgid "--repair" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11563 +#: guix-git/doc/guix.texi:11877 #, no-wrap msgid "repairing store items" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11567 +#: guix-git/doc/guix.texi:11881 msgid "Attempt to repair the specified store items, if they are corrupt, by re-downloading or rebuilding them." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11569 +#: guix-git/doc/guix.texi:11883 msgid "This operation is not atomic and thus restricted to @code{root}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11570 +#: guix-git/doc/guix.texi:11884 #, no-wrap msgid "--derivations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11574 +#: guix-git/doc/guix.texi:11888 msgid "Return the derivation paths, not the output paths, of the given packages." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11577 +#: guix-git/doc/guix.texi:11891 #, no-wrap msgid "GC roots, adding" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11578 +#: guix-git/doc/guix.texi:11892 #, no-wrap msgid "garbage collector roots, adding" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11581 guix-git/doc/guix.texi:35312 +#: guix-git/doc/guix.texi:11895 guix-git/doc/guix.texi:35756 msgid "Make @var{file} a symlink to the result, and register it as a garbage collector root." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11587 +#: guix-git/doc/guix.texi:11901 msgid "Consequently, the results of this @command{guix build} invocation are protected from garbage collection until @var{file} is removed. When that option is omitted, build results are eligible for garbage collection as soon as the build completes. @xref{Invoking guix gc}, for more on GC roots." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11588 +#: guix-git/doc/guix.texi:11902 #, no-wrap msgid "--log-file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11589 +#: guix-git/doc/guix.texi:11903 #, no-wrap msgid "build logs, access" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11593 +#: guix-git/doc/guix.texi:11907 msgid "Return the build log file names or URLs for the given @var{package-or-derivation}, or raise an error if build logs are missing." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11596 +#: guix-git/doc/guix.texi:11910 msgid "This works regardless of how packages or derivations are specified. For instance, the following invocations are equivalent:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11602 +#: guix-git/doc/guix.texi:11916 #, no-wrap msgid "" "guix build --log-file $(guix build -d guile)\n" @@ -21076,17 +21627,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11607 +#: guix-git/doc/guix.texi:11921 msgid "If a log is unavailable locally, and unless @option{--no-substitutes} is passed, the command looks for a corresponding log on one of the substitute servers (as specified with @option{--substitute-urls})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11610 +#: guix-git/doc/guix.texi:11924 msgid "So for instance, imagine you want to see the build log of GDB on MIPS, but you are actually on an @code{x86_64} machine:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11614 +#: guix-git/doc/guix.texi:11928 #, no-wrap msgid "" "$ guix build --log-file gdb -s aarch64-linux\n" @@ -21094,33 +21645,33 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11617 +#: guix-git/doc/guix.texi:11931 msgid "You can freely access a huge library of build logs!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11622 +#: guix-git/doc/guix.texi:11936 #, no-wrap msgid "build failures, debugging" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11628 +#: guix-git/doc/guix.texi:11942 msgid "When defining a new package (@pxref{Defining Packages}), you will probably find yourself spending some time debugging and tweaking the build until it succeeds. To do that, you need to operate the build commands yourself in an environment as close as possible to the one the build daemon uses." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11633 +#: guix-git/doc/guix.texi:11947 msgid "To that end, the first thing to do is to use the @option{--keep-failed} or @option{-K} option of @command{guix build}, which will keep the failed build tree in @file{/tmp} or whatever directory you specified as @env{TMPDIR} (@pxref{Common Build Options, @option{--keep-failed}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11639 +#: guix-git/doc/guix.texi:11953 msgid "From there on, you can @command{cd} to the failed build tree and source the @file{environment-variables} file, which contains all the environment variable definitions that were in place when the build failed. So let's say you're debugging a build failure in package @code{foo}; a typical session would look like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11646 +#: guix-git/doc/guix.texi:11960 #, no-wrap msgid "" "$ guix build foo -K\n" @@ -21131,22 +21682,22 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11650 +#: guix-git/doc/guix.texi:11964 msgid "Now, you can invoke commands as if you were the daemon (almost) and troubleshoot your build process." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11656 +#: guix-git/doc/guix.texi:11970 msgid "Sometimes it happens that, for example, a package's tests pass when you run them manually but they fail when the daemon runs them. This can happen because the daemon runs builds in containers where, unlike in our environment above, network access is missing, @file{/bin/sh} does not exist, etc. (@pxref{Build Environment Setup})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11659 +#: guix-git/doc/guix.texi:11973 msgid "In such cases, you may need to run inspect the build process from within a container similar to the one the build daemon creates:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11667 +#: guix-git/doc/guix.texi:11981 #, no-wrap msgid "" "$ guix build -K foo\n" @@ -21158,711 +21709,718 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11676 +#: guix-git/doc/guix.texi:11990 msgid "Here, @command{guix shell -C} creates a container and spawns a new shell in it (@pxref{Invoking guix shell}). The @command{strace gdb} part adds the @command{strace} and @command{gdb} commands to the container, which you may find handy while debugging. The @option{--no-grafts} option makes sure we get the exact same environment, with ungrafted packages (@pxref{Security Updates}, for more info on grafts)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11679 +#: guix-git/doc/guix.texi:11993 msgid "To get closer to a container like that used by the build daemon, we can remove @file{/bin/sh}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11682 +#: guix-git/doc/guix.texi:11996 #, no-wrap msgid "[env]# rm /bin/sh\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11686 +#: guix-git/doc/guix.texi:12000 msgid "(Don't worry, this is harmless: this is all happening in the throw-away container created by @command{guix shell}.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11689 +#: guix-git/doc/guix.texi:12003 msgid "The @command{strace} command is probably not in the search path, but we can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11692 +#: guix-git/doc/guix.texi:12006 #, no-wrap msgid "[env]# $GUIX_ENVIRONMENT/bin/strace -f -o log make check\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11697 +#: guix-git/doc/guix.texi:12011 msgid "In this way, not only you will have reproduced the environment variables the daemon uses, you will also be running the build process in a container similar to the one the daemon uses." msgstr "" #. type: section -#: guix-git/doc/guix.texi:11700 +#: guix-git/doc/guix.texi:12014 #, no-wrap msgid "Invoking @command{guix edit}" msgstr "Invocando @command{guix edit}" #. type: command{#1} -#: guix-git/doc/guix.texi:11702 +#: guix-git/doc/guix.texi:12016 #, no-wrap msgid "guix edit" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11703 +#: guix-git/doc/guix.texi:12017 #, no-wrap msgid "package definition, editing" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11708 +#: guix-git/doc/guix.texi:12022 msgid "So many packages, so many source files! The @command{guix edit} command facilitates the life of users and packagers by pointing their editor at the source file containing the definition of the specified packages. For instance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11711 +#: guix-git/doc/guix.texi:12025 #, no-wrap msgid "guix edit gcc@@4.9 vim\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11717 +#: guix-git/doc/guix.texi:12031 msgid "launches the program specified in the @env{VISUAL} or in the @env{EDITOR} environment variable to view the recipe of GCC@tie{}4.9.3 and that of Vim." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11723 +#: guix-git/doc/guix.texi:12037 msgid "If you are using a Guix Git checkout (@pxref{Building from Git}), or have created your own packages on @env{GUIX_PACKAGE_PATH} (@pxref{Package Modules}), you will be able to edit the package recipes. In other cases, you will be able to examine the read-only recipes for packages currently in the store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11728 +#: guix-git/doc/guix.texi:12042 msgid "Instead of @env{GUIX_PACKAGE_PATH}, the command-line option @option{--load-path=@var{directory}} (or in short @option{-L @var{directory}}) allows you to add @var{directory} to the front of the package module search path and so make your own packages visible." msgstr "" #. type: section -#: guix-git/doc/guix.texi:11730 +#: guix-git/doc/guix.texi:12044 #, no-wrap msgid "Invoking @command{guix download}" msgstr "Invocando @command{guix download}" #. type: command{#1} -#: guix-git/doc/guix.texi:11732 +#: guix-git/doc/guix.texi:12046 #, no-wrap msgid "guix download" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11733 +#: guix-git/doc/guix.texi:12047 #, no-wrap msgid "downloading package sources" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11740 +#: guix-git/doc/guix.texi:12054 msgid "When writing a package definition, developers typically need to download a source tarball, compute its SHA256 hash, and write that hash in the package definition (@pxref{Defining Packages}). The @command{guix download} tool helps with this task: it downloads a file from the given URI, adds it to the store, and prints both its file name in the store and its SHA256 hash." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11747 +#: guix-git/doc/guix.texi:12061 msgid "The fact that the downloaded file is added to the store saves bandwidth: when the developer eventually tries to build the newly defined package with @command{guix build}, the source tarball will not have to be downloaded again because it is already in the store. It is also a convenient way to temporarily stash files, which may be deleted eventually (@pxref{Invoking guix gc})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11755 +#: guix-git/doc/guix.texi:12069 msgid "The @command{guix download} command supports the same URIs as used in package definitions. In particular, it supports @code{mirror://} URIs. @code{https} URIs (HTTP over TLS) are supported @emph{provided} the Guile bindings for GnuTLS are available in the user's environment; when they are not available, an error is raised. @xref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11760 +#: guix-git/doc/guix.texi:12074 msgid "@command{guix download} verifies HTTPS server certificates by loading the certificates of X.509 authorities from the directory pointed to by the @env{SSL_CERT_DIR} environment variable (@pxref{X.509 Certificates}), unless @option{--no-check-certificate} is used." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11762 guix-git/doc/guix.texi:13565 +#: guix-git/doc/guix.texi:12076 guix-git/doc/guix.texi:13922 msgid "The following options are available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11764 guix-git/doc/guix.texi:11808 +#: guix-git/doc/guix.texi:12078 guix-git/doc/guix.texi:12122 #, no-wrap msgid "--hash=@var{algorithm}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11765 guix-git/doc/guix.texi:11809 +#: guix-git/doc/guix.texi:12079 guix-git/doc/guix.texi:12123 #, no-wrap msgid "-H @var{algorithm}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11768 +#: guix-git/doc/guix.texi:12082 msgid "Compute a hash using the specified @var{algorithm}. @xref{Invoking guix hash}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11769 guix-git/doc/guix.texi:11818 +#: guix-git/doc/guix.texi:12083 guix-git/doc/guix.texi:12132 #, no-wrap msgid "--format=@var{fmt}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11770 guix-git/doc/guix.texi:11819 +#: guix-git/doc/guix.texi:12084 guix-git/doc/guix.texi:12133 #, no-wrap msgid "-f @var{fmt}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11773 +#: guix-git/doc/guix.texi:12087 msgid "Write the hash in the format specified by @var{fmt}. For more information on the valid values for @var{fmt}, @pxref{Invoking guix hash}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11774 +#: guix-git/doc/guix.texi:12088 #, no-wrap msgid "--no-check-certificate" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11776 +#: guix-git/doc/guix.texi:12090 msgid "Do not validate the X.509 certificates of HTTPS servers." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11780 +#: guix-git/doc/guix.texi:12094 msgid "When using this option, you have @emph{absolutely no guarantee} that you are communicating with the authentic server responsible for the given URL, which makes you vulnerable to ``man-in-the-middle'' attacks." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11781 +#: guix-git/doc/guix.texi:12095 #, no-wrap msgid "--output=@var{file}" msgstr "--output=@var{arquivo}" #. type: itemx -#: guix-git/doc/guix.texi:11782 +#: guix-git/doc/guix.texi:12096 #, no-wrap msgid "-o @var{file}" msgstr "-o @var{arquivo}" #. type: table -#: guix-git/doc/guix.texi:11785 +#: guix-git/doc/guix.texi:12099 msgid "Save the downloaded file to @var{file} instead of adding it to the store." msgstr "" #. type: section -#: guix-git/doc/guix.texi:11788 +#: guix-git/doc/guix.texi:12102 #, no-wrap msgid "Invoking @command{guix hash}" msgstr "Invocando @command{guix hash}" #. type: command{#1} -#: guix-git/doc/guix.texi:11790 +#: guix-git/doc/guix.texi:12104 #, no-wrap msgid "guix hash" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11795 +#: guix-git/doc/guix.texi:12109 msgid "The @command{guix hash} command computes the hash of a file. It is primarily a convenience tool for anyone contributing to the distribution: it computes the cryptographic hash of one or more files, which can be used in the definition of a package (@pxref{Defining Packages})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11800 +#: guix-git/doc/guix.texi:12114 #, fuzzy, no-wrap #| msgid "-r @var{package} @dots{}" msgid "guix hash @var{option} @var{file} ...\n" -msgstr "-r @var{pacote} @dots{}" +msgstr "guix hash @var{option} @var{file} ...\n" #. type: Plain text -#: guix-git/doc/guix.texi:11805 +#: guix-git/doc/guix.texi:12119 msgid "When @var{file} is @code{-} (a hyphen), @command{guix hash} computes the hash of data read from standard input. @command{guix hash} has the following options:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11812 +#: guix-git/doc/guix.texi:12126 msgid "Compute a hash using the specified @var{algorithm}, @code{sha256} by default." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11817 -msgid "@var{algorithm} must the name of a cryptographic hash algorithm supported by Libgcrypt @i{via} Guile-Gcrypt---e.g., @code{sha512} or @code{sha3-256} (@pxref{Hash Functions,,, guile-gcrypt, Guile-Gcrypt Reference Manual})." +#: guix-git/doc/guix.texi:12131 +msgid "@var{algorithm} must be the name of a cryptographic hash algorithm supported by Libgcrypt @i{via} Guile-Gcrypt---e.g., @code{sha512} or @code{sha3-256} (@pxref{Hash Functions,,, guile-gcrypt, Guile-Gcrypt Reference Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11821 +#: guix-git/doc/guix.texi:12135 msgid "Write the hash in the format specified by @var{fmt}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11824 +#: guix-git/doc/guix.texi:12138 msgid "Supported formats: @code{base64}, @code{nix-base32}, @code{base32}, @code{base16} (@code{hex} and @code{hexadecimal} can be used as well)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11828 +#: guix-git/doc/guix.texi:12142 msgid "If the @option{--format} option is not specified, @command{guix hash} will output the hash in @code{nix-base32}. This representation is used in the definitions of packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11833 -msgid "This option is deprecated in favor of @option{--serializer}. It is a legacy alias for @var{type} sets to @code{nar}." +#: guix-git/doc/guix.texi:12148 +msgid "The @option{--recursive} option is deprecated in favor of @option{--serializer=nar} (see below); @option{-r} remains accepted as a convenient shorthand." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11834 +#: guix-git/doc/guix.texi:12149 #, fuzzy, no-wrap #| msgid "--profile=@var{profile}" msgid "--serializer=@var{type}" msgstr "--profile=@var{perfil}" +#. type: itemx +#: guix-git/doc/guix.texi:12150 +#, fuzzy, no-wrap +#| msgid "-t @var{type}" +msgid "-S @var{type}" +msgstr "-t @var{tipo}" + #. type: table -#: guix-git/doc/guix.texi:11837 +#: guix-git/doc/guix.texi:12152 msgid "Compute the hash on @var{file} using @var{type} serialization." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11839 +#: guix-git/doc/guix.texi:12154 msgid "@var{type} may be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11841 guix-git/doc/guix.texi:13918 -#: guix-git/doc/guix.texi:17405 guix-git/doc/guix.texi:19679 +#: guix-git/doc/guix.texi:12156 guix-git/doc/guix.texi:14275 +#: guix-git/doc/guix.texi:17767 guix-git/doc/guix.texi:20041 #, no-wrap msgid "none" msgstr "nenhuma" #. type: table -#: guix-git/doc/guix.texi:11843 +#: guix-git/doc/guix.texi:12158 msgid "This is the default: it computes the hash of a file's contents." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11844 +#: guix-git/doc/guix.texi:12159 #, no-wrap msgid "nar" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11854 -msgid "Compute the hash of a ``normalized archive'' (or ``nar'') containing @var{file}, including its children if it is a directory. Some of the metadata of @var{file} is part of the archive; for instance, when @var{file} is a regular file, the hash is different depending on whether @var{file} is executable or not. Metadata such as time stamps has no impact on the hash (@pxref{Invoking guix archive}, for more info on the nar format)." +#: guix-git/doc/guix.texi:12169 +msgid "Compute the hash of a ``normalized archive'' (or ``nar'') containing @var{file}, including its children if it is a directory. Some of the metadata of @var{file} is part of the archive; for instance, when @var{file} is a regular file, the hash is different depending on whether @var{file} is executable or not. Metadata such as time stamps have no impact on the hash (@pxref{Invoking guix archive}, for more info on the nar format)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11855 +#: guix-git/doc/guix.texi:12170 #, no-wrap msgid "git" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11858 -msgid "Compute the has of the file or directory as a Git ``tree'', following the same method as the Git version control system." +#: guix-git/doc/guix.texi:12173 +msgid "Compute the hash of the file or directory as a Git ``tree'', following the same method as the Git version control system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11860 +#: guix-git/doc/guix.texi:12175 #, no-wrap msgid "--exclude-vcs" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11861 guix-git/doc/guix.texi:13038 +#: guix-git/doc/guix.texi:12176 guix-git/doc/guix.texi:13395 #, no-wrap msgid "-x" msgstr "-x" #. type: table -#: guix-git/doc/guix.texi:11864 +#: guix-git/doc/guix.texi:12179 msgid "When combined with @option{--recursive}, exclude version control system directories (@file{.bzr}, @file{.git}, @file{.hg}, etc.)." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:11865 +#: guix-git/doc/guix.texi:12180 #, no-wrap msgid "git-fetch" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11869 +#: guix-git/doc/guix.texi:12184 msgid "As an example, here is how you would compute the hash of a Git checkout, which is useful when using the @code{git-fetch} method (@pxref{origin Reference}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11874 +#: guix-git/doc/guix.texi:12189 #, no-wrap msgid "" "$ git clone http://example.org/foo.git\n" "$ cd foo\n" -"$ guix hash -rx .\n" +"$ guix hash -x --serializer=nar .\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11878 guix-git/doc/guix.texi:11883 +#: guix-git/doc/guix.texi:12193 guix-git/doc/guix.texi:12198 #, no-wrap msgid "Invoking @command{guix import}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11880 +#: guix-git/doc/guix.texi:12195 #, no-wrap msgid "importing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11881 +#: guix-git/doc/guix.texi:12196 #, no-wrap msgid "package import" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11882 +#: guix-git/doc/guix.texi:12197 #, no-wrap msgid "package conversion" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11890 +#: guix-git/doc/guix.texi:12205 msgid "The @command{guix import} command is useful for people who would like to add a package to the distribution with as little work as possible---a legitimate demand. The command knows of a few repositories from which it can ``import'' package metadata. The result is a package definition, or a template thereof, in the format we know (@pxref{Defining Packages})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11895 +#: guix-git/doc/guix.texi:12210 #, no-wrap msgid "guix import @var{importer} @var{options}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11900 +#: guix-git/doc/guix.texi:12215 msgid "@var{importer} specifies the source from which to import package metadata, and @var{options} specifies a package identifier and other options specific to @var{importer}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11904 +#: guix-git/doc/guix.texi:12219 msgid "Some of the importers rely on the ability to run the @command{gpgv} command. For these, GnuPG must be installed and in @code{$PATH}; run @code{guix install gnupg} if needed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11906 +#: guix-git/doc/guix.texi:12221 msgid "Currently, the available ``importers'' are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11908 guix-git/doc/guix.texi:12546 +#: guix-git/doc/guix.texi:12223 guix-git/doc/guix.texi:12861 #, no-wrap msgid "gnu" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11912 +#: guix-git/doc/guix.texi:12227 msgid "Import metadata for the given GNU package. This provides a template for the latest version of that GNU package, including the hash of its source tarball, and its canonical synopsis and description." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11915 +#: guix-git/doc/guix.texi:12230 msgid "Additional information such as the package dependencies and its license needs to be figured out manually." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11918 +#: guix-git/doc/guix.texi:12233 msgid "For example, the following command returns a package definition for GNU@tie{}Hello:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11921 +#: guix-git/doc/guix.texi:12236 #, no-wrap msgid "guix import gnu hello\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11924 guix-git/doc/guix.texi:12165 -#: guix-git/doc/guix.texi:12215 guix-git/doc/guix.texi:12244 +#: guix-git/doc/guix.texi:12239 guix-git/doc/guix.texi:12480 +#: guix-git/doc/guix.texi:12530 guix-git/doc/guix.texi:12559 msgid "Specific command-line options are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11926 guix-git/doc/guix.texi:12743 +#: guix-git/doc/guix.texi:12241 guix-git/doc/guix.texi:13058 #, no-wrap msgid "--key-download=@var{policy}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11930 +#: guix-git/doc/guix.texi:12245 msgid "As for @command{guix refresh}, specify the policy to handle missing OpenPGP keys when verifying the package signature. @xref{Invoking guix refresh, @option{--key-download}}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11932 guix-git/doc/guix.texi:11933 -#: guix-git/doc/guix.texi:12570 +#: guix-git/doc/guix.texi:12247 guix-git/doc/guix.texi:12248 +#: guix-git/doc/guix.texi:12885 #, no-wrap msgid "pypi" msgstr "pypi" #. type: table -#: guix-git/doc/guix.texi:11940 +#: guix-git/doc/guix.texi:12255 msgid "Import metadata from the @uref{https://pypi.python.org/, Python Package Index}. Information is taken from the JSON-formatted description available at @code{pypi.python.org} and usually includes all the relevant information, including package dependencies. For maximum efficiency, it is recommended to install the @command{unzip} utility, so that the importer can unzip Python wheels and gather data from them." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11943 +#: guix-git/doc/guix.texi:12258 msgid "The command below imports metadata for the latest version of the @code{itsdangerous} Python package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11946 +#: guix-git/doc/guix.texi:12261 #, no-wrap msgid "guix import pypi itsdangerous\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11949 guix-git/doc/guix.texi:12052 -#: guix-git/doc/guix.texi:12393 +#: guix-git/doc/guix.texi:12264 guix-git/doc/guix.texi:12367 +#: guix-git/doc/guix.texi:12708 msgid "You can also ask for a specific version:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11952 +#: guix-git/doc/guix.texi:12267 #, no-wrap msgid "guix import pypi itsdangerous@@1.1.0\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11960 guix-git/doc/guix.texi:11985 -#: guix-git/doc/guix.texi:12017 guix-git/doc/guix.texi:12188 -#: guix-git/doc/guix.texi:12229 guix-git/doc/guix.texi:12280 -#: guix-git/doc/guix.texi:12305 guix-git/doc/guix.texi:12321 -#: guix-git/doc/guix.texi:12369 guix-git/doc/guix.texi:12405 +#: guix-git/doc/guix.texi:12275 guix-git/doc/guix.texi:12300 +#: guix-git/doc/guix.texi:12332 guix-git/doc/guix.texi:12503 +#: guix-git/doc/guix.texi:12544 guix-git/doc/guix.texi:12595 +#: guix-git/doc/guix.texi:12620 guix-git/doc/guix.texi:12636 +#: guix-git/doc/guix.texi:12684 guix-git/doc/guix.texi:12720 msgid "Traverse the dependency graph of the given upstream package recursively and generate package expressions for all those packages that are not yet in Guix." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11962 guix-git/doc/guix.texi:11963 -#: guix-git/doc/guix.texi:12572 +#: guix-git/doc/guix.texi:12277 guix-git/doc/guix.texi:12278 +#: guix-git/doc/guix.texi:12887 #, no-wrap msgid "gem" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11972 +#: guix-git/doc/guix.texi:12287 msgid "Import metadata from @uref{https://rubygems.org/, RubyGems}. Information is taken from the JSON-formatted description available at @code{rubygems.org} and includes most relevant information, including runtime dependencies. There are some caveats, however. The metadata doesn't distinguish between synopses and descriptions, so the same string is used for both fields. Additionally, the details of non-Ruby dependencies required to build native extensions is unavailable and left as an exercise to the packager." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11974 +#: guix-git/doc/guix.texi:12289 msgid "The command below imports metadata for the @code{rails} Ruby package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11977 +#: guix-git/doc/guix.texi:12292 #, no-wrap msgid "guix import gem rails\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11987 guix-git/doc/guix.texi:11988 +#: guix-git/doc/guix.texi:12302 guix-git/doc/guix.texi:12303 #, no-wrap msgid "minetest" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11989 +#: guix-git/doc/guix.texi:12304 #, fuzzy, no-wrap #| msgid "contents" msgid "ContentDB" msgstr "conteúdo" #. type: table -#: guix-git/doc/guix.texi:11998 +#: guix-git/doc/guix.texi:12313 msgid "Import metadata from @uref{https://content.minetest.net, ContentDB}. Information is taken from the JSON-formatted metadata provided through @uref{https://content.minetest.net/help/api/, ContentDB's API} and includes most relevant information, including dependencies. There are some caveats, however. The license information is often incomplete. The commit hash is sometimes missing. The descriptions are in the Markdown format, but Guix uses Texinfo instead. Texture packs and subgames are unsupported." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12000 +#: guix-git/doc/guix.texi:12315 msgid "The command below imports metadata for the Mesecons mod by Jeija:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12003 +#: guix-git/doc/guix.texi:12318 #, no-wrap msgid "guix import minetest Jeija/mesecons\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12006 +#: guix-git/doc/guix.texi:12321 msgid "The author name can also be left out:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12009 +#: guix-git/doc/guix.texi:12324 #, no-wrap msgid "guix import minetest mesecons\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12019 guix-git/doc/guix.texi:12568 +#: guix-git/doc/guix.texi:12334 guix-git/doc/guix.texi:12883 #, no-wrap msgid "cpan" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12020 +#: guix-git/doc/guix.texi:12335 #, no-wrap msgid "CPAN" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12028 +#: guix-git/doc/guix.texi:12343 msgid "Import metadata from @uref{https://www.metacpan.org/, MetaCPAN}. Information is taken from the JSON-formatted metadata provided through @uref{https://fastapi.metacpan.org/, MetaCPAN's API} and includes most relevant information, such as module dependencies. License information should be checked closely. If Perl is available in the store, then the @code{corelist} utility will be used to filter core modules out of the list of dependencies." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12031 +#: guix-git/doc/guix.texi:12346 msgid "The command command below imports metadata for the Acme::Boolean Perl module:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12034 +#: guix-git/doc/guix.texi:12349 #, no-wrap msgid "guix import cpan Acme::Boolean\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12036 guix-git/doc/guix.texi:12564 +#: guix-git/doc/guix.texi:12351 guix-git/doc/guix.texi:12879 #, no-wrap msgid "cran" msgstr "cran" #. type: cindex -#: guix-git/doc/guix.texi:12037 +#: guix-git/doc/guix.texi:12352 #, no-wrap msgid "CRAN" msgstr "CRAN" #. type: cindex -#: guix-git/doc/guix.texi:12038 +#: guix-git/doc/guix.texi:12353 #, no-wrap msgid "Bioconductor" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12042 +#: guix-git/doc/guix.texi:12357 msgid "Import metadata from @uref{https://cran.r-project.org/, CRAN}, the central repository for the @uref{https://r-project.org, GNU@tie{}R statistical and graphical environment}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12044 +#: guix-git/doc/guix.texi:12359 msgid "Information is extracted from the @file{DESCRIPTION} file of the package." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12046 +#: guix-git/doc/guix.texi:12361 msgid "The command command below imports metadata for the Cairo R package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12049 +#: guix-git/doc/guix.texi:12364 #, no-wrap msgid "guix import cran Cairo\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12055 +#: guix-git/doc/guix.texi:12370 #, no-wrap msgid "guix import cran rasterVis@@0.50.3\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12060 +#: guix-git/doc/guix.texi:12375 msgid "When @option{--recursive} is added, the importer will traverse the dependency graph of the given upstream package recursively and generate package expressions for all those packages that are not yet in Guix." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12067 +#: guix-git/doc/guix.texi:12382 msgid "When @option{--style=specification} is added, the importer will generate package definitions whose inputs are package specifications instead of references to package variables. This is useful when generated package definitions are to be appended to existing user modules, as the list of used package modules need not be changed. The default is @option{--style=variable}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12072 +#: guix-git/doc/guix.texi:12387 msgid "When @option{--archive=bioconductor} is added, metadata is imported from @uref{https://www.bioconductor.org/, Bioconductor}, a repository of R packages for the analysis and comprehension of high-throughput genomic data in bioinformatics." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12075 +#: guix-git/doc/guix.texi:12390 msgid "Information is extracted from the @file{DESCRIPTION} file contained in the package archive." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12077 +#: guix-git/doc/guix.texi:12392 msgid "The command below imports metadata for the GenomicRanges R package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12080 +#: guix-git/doc/guix.texi:12395 #, no-wrap msgid "guix import cran --archive=bioconductor GenomicRanges\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12085 +#: guix-git/doc/guix.texi:12400 msgid "Finally, you can also import R packages that have not yet been published on CRAN or Bioconductor as long as they are in a git repository. Use @option{--archive=git} followed by the URL of the git repository:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12088 +#: guix-git/doc/guix.texi:12403 #, no-wrap msgid "guix import cran --archive=git https://github.com/immunogenomics/harmony\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12090 +#: guix-git/doc/guix.texi:12405 #, no-wrap msgid "texlive" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12091 +#: guix-git/doc/guix.texi:12406 #, no-wrap msgid "TeX Live" msgstr "TeX Live" #. type: cindex -#: guix-git/doc/guix.texi:12092 +#: guix-git/doc/guix.texi:12407 #, no-wrap msgid "CTAN" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12096 +#: guix-git/doc/guix.texi:12411 msgid "Import TeX package information from the TeX Live package database for TeX packages that are part of the @uref{https://www.tug.org/texlive/, TeX Live distribution}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12101 +#: guix-git/doc/guix.texi:12416 msgid "Information about the package is obtained from the TeX Live package database, a plain text file that is included in the @code{texlive-bin} package. The source code is downloaded from possibly multiple locations in the SVN repository of the Tex Live project." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12104 +#: guix-git/doc/guix.texi:12419 msgid "The command command below imports metadata for the @code{fontspec} TeX package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12107 +#: guix-git/doc/guix.texi:12422 #, no-wrap msgid "guix import texlive fontspec\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12110 +#: guix-git/doc/guix.texi:12425 #, no-wrap msgid "JSON, import" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12113 +#: guix-git/doc/guix.texi:12428 msgid "Import package metadata from a local JSON file. Consider the following example package definition in JSON format:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12126 +#: guix-git/doc/guix.texi:12441 #, no-wrap msgid "" "@{\n" @@ -21879,17 +22437,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12132 +#: guix-git/doc/guix.texi:12447 msgid "The field names are the same as for the @code{} record (@xref{Defining Packages}). References to other packages are provided as JSON lists of quoted package specification strings such as @code{guile} or @code{guile@@2.0}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12135 +#: guix-git/doc/guix.texi:12450 msgid "The importer also supports a more explicit source definition using the common fields for @code{} records:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12148 +#: guix-git/doc/guix.texi:12463 #, no-wrap msgid "" "@{\n" @@ -21906,382 +22464,382 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12152 +#: guix-git/doc/guix.texi:12467 msgid "The command below reads metadata from the JSON file @code{hello.json} and outputs a package expression:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12155 +#: guix-git/doc/guix.texi:12470 #, no-wrap msgid "guix import json hello.json\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12157 guix-git/doc/guix.texi:12158 -#: guix-git/doc/guix.texi:12576 +#: guix-git/doc/guix.texi:12472 guix-git/doc/guix.texi:12473 +#: guix-git/doc/guix.texi:12891 #, no-wrap msgid "hackage" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12163 +#: guix-git/doc/guix.texi:12478 msgid "Import metadata from the Haskell community's central package archive @uref{https://hackage.haskell.org/, Hackage}. Information is taken from Cabal files and includes all the relevant information, including package dependencies." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12167 +#: guix-git/doc/guix.texi:12482 #, no-wrap msgid "--stdin" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12168 +#: guix-git/doc/guix.texi:12483 #, no-wrap msgid "-s" msgstr "-s" #. type: table -#: guix-git/doc/guix.texi:12170 +#: guix-git/doc/guix.texi:12485 msgid "Read a Cabal file from standard input." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12170 guix-git/doc/guix.texi:12217 +#: guix-git/doc/guix.texi:12485 guix-git/doc/guix.texi:12532 #, no-wrap msgid "--no-test-dependencies" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12173 guix-git/doc/guix.texi:12220 +#: guix-git/doc/guix.texi:12488 guix-git/doc/guix.texi:12535 msgid "Do not include dependencies required only by the test suites." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12173 +#: guix-git/doc/guix.texi:12488 #, no-wrap msgid "--cabal-environment=@var{alist}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12174 +#: guix-git/doc/guix.texi:12489 #, no-wrap msgid "-e @var{alist}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12183 +#: guix-git/doc/guix.texi:12498 msgid "@var{alist} is a Scheme alist defining the environment in which the Cabal conditionals are evaluated. The accepted keys are: @code{os}, @code{arch}, @code{impl} and a string representing the name of a flag. The value associated with a flag has to be either the symbol @code{true} or @code{false}. The value associated with other keys has to conform to the Cabal file format definition. The default value associated with the keys @code{os}, @code{arch} and @code{impl} is @samp{linux}, @samp{x86_64} and @samp{ghc}, respectively." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12193 +#: guix-git/doc/guix.texi:12508 msgid "The command below imports metadata for the latest version of the HTTP Haskell package without including test dependencies and specifying the value of the flag @samp{network-uri} as @code{false}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12196 +#: guix-git/doc/guix.texi:12511 #, no-wrap msgid "guix import hackage -t -e \"'((\\\"network-uri\\\" . false))\" HTTP\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12200 +#: guix-git/doc/guix.texi:12515 msgid "A specific package version may optionally be specified by following the package name by an at-sign and a version number as in the following example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12203 +#: guix-git/doc/guix.texi:12518 #, no-wrap msgid "guix import hackage mtl@@2.1.3.1\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12205 guix-git/doc/guix.texi:12206 -#: guix-git/doc/guix.texi:12578 +#: guix-git/doc/guix.texi:12520 guix-git/doc/guix.texi:12521 +#: guix-git/doc/guix.texi:12893 #, no-wrap msgid "stackage" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12213 +#: guix-git/doc/guix.texi:12528 msgid "The @code{stackage} importer is a wrapper around the @code{hackage} one. It takes a package name, looks up the package version included in a long-term support (LTS) @uref{https://www.stackage.org, Stackage} release and uses the @code{hackage} importer to retrieve its metadata. Note that it is up to you to select an LTS release compatible with the GHC compiler used by Guix." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12220 +#: guix-git/doc/guix.texi:12535 #, no-wrap msgid "--lts-version=@var{version}" msgstr "--lts-version=@var{versão}" #. type: itemx -#: guix-git/doc/guix.texi:12221 +#: guix-git/doc/guix.texi:12536 #, no-wrap msgid "-l @var{version}" msgstr "-l @var{versão}" #. type: table -#: guix-git/doc/guix.texi:12224 +#: guix-git/doc/guix.texi:12539 msgid "@var{version} is the desired LTS release version. If omitted the latest release is used." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12233 +#: guix-git/doc/guix.texi:12548 msgid "The command below imports metadata for the HTTP Haskell package included in the LTS Stackage release version 7.18:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12236 +#: guix-git/doc/guix.texi:12551 #, no-wrap msgid "guix import stackage --lts-version=7.18 HTTP\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12238 guix-git/doc/guix.texi:12239 -#: guix-git/doc/guix.texi:12562 +#: guix-git/doc/guix.texi:12553 guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12877 #, no-wrap msgid "elpa" msgstr "elpa" #. type: table -#: guix-git/doc/guix.texi:12242 +#: guix-git/doc/guix.texi:12557 msgid "Import metadata from an Emacs Lisp Package Archive (ELPA) package repository (@pxref{Packages,,, emacs, The GNU Emacs Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12246 +#: guix-git/doc/guix.texi:12561 #, no-wrap msgid "--archive=@var{repo}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12247 +#: guix-git/doc/guix.texi:12562 #, no-wrap msgid "-a @var{repo}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12251 +#: guix-git/doc/guix.texi:12566 msgid "@var{repo} identifies the archive repository from which to retrieve the information. Currently the supported repositories and their identifiers are:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12255 +#: guix-git/doc/guix.texi:12570 msgid "@uref{https://elpa.gnu.org/packages, GNU}, selected by the @code{gnu} identifier. This is the default." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12261 +#: guix-git/doc/guix.texi:12576 msgid "Packages from @code{elpa.gnu.org} are signed with one of the keys contained in the GnuPG keyring at @file{share/emacs/25.1/etc/package-keyring.gpg} (or similar) in the @code{emacs} package (@pxref{Package Installation, ELPA package signatures,, emacs, The GNU Emacs Manual})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12265 +#: guix-git/doc/guix.texi:12580 msgid "@uref{https://elpa.nongnu.org/nongnu/, NonGNU}, selected by the @code{nongnu} identifier." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12269 +#: guix-git/doc/guix.texi:12584 msgid "@uref{https://stable.melpa.org/packages, MELPA-Stable}, selected by the @code{melpa-stable} identifier." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12273 +#: guix-git/doc/guix.texi:12588 msgid "@uref{https://melpa.org/packages, MELPA}, selected by the @code{melpa} identifier." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12282 guix-git/doc/guix.texi:12283 -#: guix-git/doc/guix.texi:12580 +#: guix-git/doc/guix.texi:12597 guix-git/doc/guix.texi:12598 +#: guix-git/doc/guix.texi:12895 #, no-wrap msgid "crate" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12286 +#: guix-git/doc/guix.texi:12601 msgid "Import metadata from the crates.io Rust package repository @uref{https://crates.io, crates.io}, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12289 +#: guix-git/doc/guix.texi:12604 #, no-wrap msgid "guix import crate blake2-rfc\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12292 +#: guix-git/doc/guix.texi:12607 msgid "The crate importer also allows you to specify a version string:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12295 +#: guix-git/doc/guix.texi:12610 #, no-wrap msgid "guix import crate constant-time-eq@@0.1.0\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12298 guix-git/doc/guix.texi:12314 -#: guix-git/doc/guix.texi:12362 guix-git/doc/guix.texi:12399 +#: guix-git/doc/guix.texi:12613 guix-git/doc/guix.texi:12629 +#: guix-git/doc/guix.texi:12677 guix-git/doc/guix.texi:12714 msgid "Additional options include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12307 +#: guix-git/doc/guix.texi:12622 #, no-wrap msgid "opam" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12308 +#: guix-git/doc/guix.texi:12623 #, no-wrap msgid "OPAM" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12309 +#: guix-git/doc/guix.texi:12624 #, no-wrap msgid "OCaml" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12312 +#: guix-git/doc/guix.texi:12627 msgid "Import metadata from the @uref{https://opam.ocaml.org/, OPAM} package repository used by the OCaml community." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12321 +#: guix-git/doc/guix.texi:12636 #, no-wrap msgid "--repo" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12325 +#: guix-git/doc/guix.texi:12640 msgid "By default, packages are searched in the official OPAM repository. This option, which can be used more than once, lets you add other repositories which will be searched for packages. It accepts as valid arguments:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12327 +#: guix-git/doc/guix.texi:12642 #, no-wrap msgid "the name of a known repository - can be one of @code{opam}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12330 +#: guix-git/doc/guix.texi:12645 msgid "@code{coq} (equivalent to @code{coq-released}), @code{coq-core-dev}, @code{coq-extra-dev} or @code{grew}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12330 +#: guix-git/doc/guix.texi:12645 #, no-wrap msgid "the URL of a repository as expected by the" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12334 +#: guix-git/doc/guix.texi:12649 msgid "@code{opam repository add} command (for instance, the URL equivalent of the above @code{opam} name would be @uref{https://opam.ocaml.org})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12334 +#: guix-git/doc/guix.texi:12649 #, no-wrap msgid "the path to a local copy of a repository (a directory containing a" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12336 +#: guix-git/doc/guix.texi:12651 msgid "@file{packages/} sub-directory)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12341 +#: guix-git/doc/guix.texi:12656 msgid "Repositories are assumed to be passed to this option by order of preference. The additional repositories will not replace the default @code{opam} repository, which is always kept as a fallback." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12346 +#: guix-git/doc/guix.texi:12661 msgid "Also, please note that versions are not compared across repositories. The first repository (from left to right) that has at least one version of a given package will prevail over any others, and the version imported will be the latest one found @emph{in this repository only}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12349 guix-git/doc/guix.texi:12350 +#: guix-git/doc/guix.texi:12664 guix-git/doc/guix.texi:12665 #, no-wrap msgid "go" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12353 +#: guix-git/doc/guix.texi:12668 msgid "Import metadata for a Go module using @uref{https://proxy.golang.org, proxy.golang.org}." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12356 +#: guix-git/doc/guix.texi:12671 #, no-wrap msgid "guix import go gopkg.in/yaml.v2\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12360 +#: guix-git/doc/guix.texi:12675 msgid "It is possible to use a package specification with a @code{@@VERSION} suffix to import a specific version." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12369 +#: guix-git/doc/guix.texi:12684 #, fuzzy, no-wrap msgid "--pin-versions" msgstr "--verbose" #. type: table -#: guix-git/doc/guix.texi:12377 +#: guix-git/doc/guix.texi:12692 msgid "When using this option, the importer preserves the exact versions of the Go modules dependencies instead of using their latest available versions. This can be useful when attempting to import packages that recursively depend on former versions of themselves to build. When using this mode, the symbol of the package is made by appending the version to its name, so that multiple versions of the same package can coexist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12379 guix-git/doc/guix.texi:12380 -#: guix-git/doc/guix.texi:12560 +#: guix-git/doc/guix.texi:12694 guix-git/doc/guix.texi:12695 +#: guix-git/doc/guix.texi:12875 #, no-wrap msgid "egg" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12387 +#: guix-git/doc/guix.texi:12702 msgid "Import metadata for @uref{https://wiki.call-cc.org/eggs, CHICKEN eggs}. The information is taken from @file{PACKAGE.egg} files found in the @uref{git://code.call-cc.org/eggs-5-all, eggs-5-all} Git repository. However, it does not provide all the information that we need, there is no ``description'' field, and the licenses used are not always precise (BSD is often used instead of BSD-N)." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12390 +#: guix-git/doc/guix.texi:12705 #, no-wrap msgid "guix import egg sourcehut\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12396 +#: guix-git/doc/guix.texi:12711 #, no-wrap msgid "guix import egg arrays@@1.0\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12411 +#: guix-git/doc/guix.texi:12726 msgid "The structure of the @command{guix import} code is modular. It would be useful to have more importers for other package formats, and your help is welcome here (@pxref{Contributing})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:12413 +#: guix-git/doc/guix.texi:12728 #, no-wrap msgid "Invoking @command{guix refresh}" msgstr "Invocando @command{guix refresh}" #. type: command{#1} -#: guix-git/doc/guix.texi:12415 +#: guix-git/doc/guix.texi:12730 #, no-wrap msgid "guix refresh" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12423 +#: guix-git/doc/guix.texi:12738 msgid "The primary audience of the @command{guix refresh} command is packagers. As a user, you may be interested in the @option{--with-latest} option, which can bring you package update superpowers built upon @command{guix refresh} (@pxref{Package Transformation Options, @option{--with-latest}}). By default, @command{guix refresh} reports any packages provided by the distribution that are outdated compared to the latest upstream version, like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12428 +#: guix-git/doc/guix.texi:12743 #, no-wrap msgid "" "$ guix refresh\n" @@ -22290,12 +22848,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12432 +#: guix-git/doc/guix.texi:12747 msgid "Alternatively, one can specify packages to consider, in which case a warning is emitted for packages that lack an updater:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12437 +#: guix-git/doc/guix.texi:12752 #, no-wrap msgid "" "$ guix refresh coreutils guile guile-ssh\n" @@ -22304,17 +22862,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12446 +#: guix-git/doc/guix.texi:12761 msgid "@command{guix refresh} browses the upstream repository of each package and determines the highest version number of the releases therein. The command knows how to update specific types of packages: GNU packages, ELPA packages, etc.---see the documentation for @option{--type} below. There are many packages, though, for which it lacks a method to determine whether a new upstream release is available. However, the mechanism is extensible, so feel free to get in touch with us to add a new method!" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12451 +#: guix-git/doc/guix.texi:12766 msgid "Consider the packages specified, and all the packages upon which they depend." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12459 +#: guix-git/doc/guix.texi:12774 #, no-wrap msgid "" "$ guix refresh --recursive coreutils\n" @@ -22326,12 +22884,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12467 +#: guix-git/doc/guix.texi:12782 msgid "Sometimes the upstream name differs from the package name used in Guix, and @command{guix refresh} needs a little help. Most updaters honor the @code{upstream-name} property in package definitions, which can be used to that effect:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12474 +#: guix-git/doc/guix.texi:12789 #, no-wrap msgid "" "(define-public network-manager\n" @@ -22342,325 +22900,325 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12483 +#: guix-git/doc/guix.texi:12798 msgid "When passed @option{--update}, it modifies distribution source files to update the version numbers and source tarball hashes of those package recipes (@pxref{Defining Packages}). This is achieved by downloading each package's latest source tarball and its associated OpenPGP signature, authenticating the downloaded tarball against its signature using @command{gpgv}, and finally computing its hash---note that GnuPG must be installed and in @code{$PATH}; run @code{guix install gnupg} if needed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12489 +#: guix-git/doc/guix.texi:12804 msgid "When the public key used to sign the tarball is missing from the user's keyring, an attempt is made to automatically retrieve it from a public key server; when this is successful, the key is added to the user's keyring; otherwise, @command{guix refresh} reports an error." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12491 +#: guix-git/doc/guix.texi:12806 msgid "The following options are supported:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12499 guix-git/doc/guix.texi:13447 +#: guix-git/doc/guix.texi:12814 guix-git/doc/guix.texi:13804 msgid "This is useful to precisely refer to a package, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12502 +#: guix-git/doc/guix.texi:12817 #, no-wrap msgid "guix refresh -l -e '(@@@@ (gnu packages commencement) glibc-final)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12506 +#: guix-git/doc/guix.texi:12821 msgid "This command lists the dependents of the ``final'' libc (essentially all the packages)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12507 +#: guix-git/doc/guix.texi:12822 #, no-wrap msgid "--update" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12508 +#: guix-git/doc/guix.texi:12823 #, no-wrap msgid "-u" msgstr "-u" #. type: table -#: guix-git/doc/guix.texi:12512 +#: guix-git/doc/guix.texi:12827 msgid "Update distribution source files (package recipes) in place. This is usually run from a checkout of the Guix source tree (@pxref{Running Guix Before It Is Installed}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12515 +#: guix-git/doc/guix.texi:12830 #, no-wrap msgid "$ ./pre-inst-env guix refresh -s non-core -u\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12518 +#: guix-git/doc/guix.texi:12833 msgid "@xref{Defining Packages}, for more information on package definitions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12519 +#: guix-git/doc/guix.texi:12834 #, no-wrap msgid "--select=[@var{subset}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12520 +#: guix-git/doc/guix.texi:12835 #, no-wrap msgid "-s @var{subset}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12523 +#: guix-git/doc/guix.texi:12838 msgid "Select all the packages in @var{subset}, one of @code{core} or @code{non-core}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12530 +#: guix-git/doc/guix.texi:12845 msgid "The @code{core} subset refers to all the packages at the core of the distribution---i.e., packages that are used to build ``everything else''. This includes GCC, libc, Binutils, Bash, etc. Usually, changing one of these packages in the distribution entails a rebuild of all the others. Thus, such updates are an inconvenience to users in terms of build time or bandwidth used to achieve the upgrade." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12534 +#: guix-git/doc/guix.texi:12849 msgid "The @code{non-core} subset refers to the remaining packages. It is typically useful in cases where an update of the core packages would be inconvenient." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12539 +#: guix-git/doc/guix.texi:12854 msgid "Select all the packages from the manifest in @var{file}. This is useful to check if any packages of the user manifest can be updated." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12540 +#: guix-git/doc/guix.texi:12855 #, no-wrap msgid "--type=@var{updater}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12541 +#: guix-git/doc/guix.texi:12856 #, no-wrap msgid "-t @var{updater}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12544 +#: guix-git/doc/guix.texi:12859 msgid "Select only packages handled by @var{updater} (may be a comma-separated list of updaters). Currently, @var{updater} may be one of:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12548 +#: guix-git/doc/guix.texi:12863 msgid "the updater for GNU packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12548 +#: guix-git/doc/guix.texi:12863 #, no-wrap msgid "savannah" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12550 +#: guix-git/doc/guix.texi:12865 msgid "the updater for packages hosted at @uref{https://savannah.gnu.org, Savannah};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12550 +#: guix-git/doc/guix.texi:12865 #, no-wrap msgid "sourceforge" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12552 +#: guix-git/doc/guix.texi:12867 msgid "the updater for packages hosted at @uref{https://sourceforge.net, SourceForge};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12552 +#: guix-git/doc/guix.texi:12867 #, no-wrap msgid "gnome" msgstr "gnome" #. type: table -#: guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12869 msgid "the updater for GNOME packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12869 #, no-wrap msgid "kde" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12556 +#: guix-git/doc/guix.texi:12871 msgid "the updater for KDE packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12556 +#: guix-git/doc/guix.texi:12871 #, no-wrap msgid "xorg" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12558 +#: guix-git/doc/guix.texi:12873 msgid "the updater for X.org packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12558 +#: guix-git/doc/guix.texi:12873 #, no-wrap msgid "kernel.org" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12560 +#: guix-git/doc/guix.texi:12875 msgid "the updater for packages hosted on kernel.org;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12562 +#: guix-git/doc/guix.texi:12877 msgid "the updater for @uref{https://wiki.call-cc.org/eggs/, Egg} packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12564 +#: guix-git/doc/guix.texi:12879 msgid "the updater for @uref{https://elpa.gnu.org/, ELPA} packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12566 +#: guix-git/doc/guix.texi:12881 msgid "the updater for @uref{https://cran.r-project.org/, CRAN} packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12566 +#: guix-git/doc/guix.texi:12881 #, no-wrap msgid "bioconductor" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12568 +#: guix-git/doc/guix.texi:12883 msgid "the updater for @uref{https://www.bioconductor.org/, Bioconductor} R packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12570 +#: guix-git/doc/guix.texi:12885 msgid "the updater for @uref{https://www.cpan.org/, CPAN} packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12572 +#: guix-git/doc/guix.texi:12887 msgid "the updater for @uref{https://pypi.python.org, PyPI} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12574 +#: guix-git/doc/guix.texi:12889 msgid "the updater for @uref{https://rubygems.org, RubyGems} packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12574 +#: guix-git/doc/guix.texi:12889 #, no-wrap msgid "github" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12576 +#: guix-git/doc/guix.texi:12891 msgid "the updater for @uref{https://github.com, GitHub} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12578 +#: guix-git/doc/guix.texi:12893 msgid "the updater for @uref{https://hackage.haskell.org, Hackage} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12580 +#: guix-git/doc/guix.texi:12895 msgid "the updater for @uref{https://www.stackage.org, Stackage} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12582 +#: guix-git/doc/guix.texi:12897 msgid "the updater for @uref{https://crates.io, Crates} packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12582 +#: guix-git/doc/guix.texi:12897 #, no-wrap msgid "launchpad" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12584 +#: guix-git/doc/guix.texi:12899 msgid "the updater for @uref{https://launchpad.net, Launchpad} packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12584 +#: guix-git/doc/guix.texi:12899 #, no-wrap msgid "generic-html" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12587 +#: guix-git/doc/guix.texi:12902 msgid "a generic updater that crawls the HTML page where the source tarball of the package is hosted, when applicable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12588 +#: guix-git/doc/guix.texi:12903 #, no-wrap msgid "generic-git" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12593 +#: guix-git/doc/guix.texi:12908 msgid "a generic updater for packages hosted on Git repositories. It tries to be smart about parsing Git tag names, but if it is not able to parse the tag name and compare tags correctly, users can define the following properties for a package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12595 +#: guix-git/doc/guix.texi:12910 #, no-wrap msgid "@code{release-tag-prefix}: a regular expression for matching a prefix of" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12597 guix-git/doc/guix.texi:12600 +#: guix-git/doc/guix.texi:12912 guix-git/doc/guix.texi:12915 msgid "the tag name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12598 +#: guix-git/doc/guix.texi:12913 #, no-wrap msgid "@code{release-tag-suffix}: a regular expression for matching a suffix of" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12601 +#: guix-git/doc/guix.texi:12916 #, no-wrap msgid "@code{release-tag-version-delimiter}: a string used as the delimiter in" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12603 +#: guix-git/doc/guix.texi:12918 msgid "the tag name for separating the numbers of the version." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12604 +#: guix-git/doc/guix.texi:12919 #, no-wrap msgid "@code{accept-pre-releases}: by default, the updater will ignore" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12607 +#: guix-git/doc/guix.texi:12922 msgid "pre-releases; to make it also look for pre-releases, set the this property to @code{#t}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12618 +#: guix-git/doc/guix.texi:12933 #, no-wrap msgid "" "(package\n" @@ -22673,12 +23231,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12625 +#: guix-git/doc/guix.texi:12940 msgid "For instance, the following command only checks for updates of Emacs packages hosted at @code{elpa.gnu.org} and for updates of CRAN packages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12630 +#: guix-git/doc/guix.texi:12945 #, no-wrap msgid "" "$ guix refresh --type=elpa,cran\n" @@ -22687,45 +23245,45 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12632 +#: guix-git/doc/guix.texi:12947 #, no-wrap msgid "--list-updaters" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12633 +#: guix-git/doc/guix.texi:12948 #, no-wrap msgid "-L" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12635 +#: guix-git/doc/guix.texi:12950 msgid "List available updaters and exit (see @option{--type} above)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12638 +#: guix-git/doc/guix.texi:12953 msgid "For each updater, display the fraction of packages it covers; at the end, display the fraction of packages covered by all these updaters." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12642 +#: guix-git/doc/guix.texi:12957 msgid "In addition, @command{guix refresh} can be passed one or more package names, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12645 +#: guix-git/doc/guix.texi:12960 #, no-wrap msgid "$ ./pre-inst-env guix refresh -u emacs idutils gcc@@4.8\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12652 +#: guix-git/doc/guix.texi:12967 msgid "The command above specifically updates the @code{emacs} and @code{idutils} packages. The @option{--select} option would have no effect in this case. You might also want to update definitions that correspond to the packages installed in your profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12656 +#: guix-git/doc/guix.texi:12971 #, no-wrap msgid "" "$ ./pre-inst-env guix refresh -u \\\n" @@ -22733,39 +23291,39 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12662 +#: guix-git/doc/guix.texi:12977 msgid "When considering whether to upgrade a package, it is sometimes convenient to know which packages would be affected by the upgrade and should be checked for compatibility. For this the following option may be used when passing @command{guix refresh} one or more package names:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12665 +#: guix-git/doc/guix.texi:12980 #, no-wrap msgid "--list-dependent" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12666 guix-git/doc/guix.texi:13028 +#: guix-git/doc/guix.texi:12981 guix-git/doc/guix.texi:13385 #, no-wrap msgid "-l" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12669 +#: guix-git/doc/guix.texi:12984 msgid "List top-level dependent packages that would need to be rebuilt as a result of upgrading one or more packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12673 +#: guix-git/doc/guix.texi:12988 msgid "@xref{Invoking guix graph, the @code{reverse-package} type of @command{guix graph}}, for information on how to visualize the list of dependents of a package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12679 +#: guix-git/doc/guix.texi:12994 msgid "Be aware that the @option{--list-dependent} option only @emph{approximates} the rebuilds that would be required as a result of an upgrade. More rebuilds might be required under some circumstances." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12684 +#: guix-git/doc/guix.texi:12999 #, no-wrap msgid "" "$ guix refresh --list-dependent flex\n" @@ -22774,23 +23332,23 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12688 +#: guix-git/doc/guix.texi:13003 msgid "The command above lists a set of packages that could be built to check for compatibility with an upgraded @code{flex} package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12691 +#: guix-git/doc/guix.texi:13006 #, no-wrap msgid "--list-transitive" msgstr "--list-transitive" #. type: table -#: guix-git/doc/guix.texi:12693 +#: guix-git/doc/guix.texi:13008 msgid "List all the packages which one or more packages depend upon." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12698 +#: guix-git/doc/guix.texi:13013 #, no-wrap msgid "" "$ guix refresh --list-transitive flex\n" @@ -22799,60 +23357,60 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12704 +#: guix-git/doc/guix.texi:13019 msgid "The command above lists a set of packages which, when changed, would cause @code{flex} to be rebuilt." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12706 +#: guix-git/doc/guix.texi:13021 msgid "The following options can be used to customize GnuPG operation:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12709 +#: guix-git/doc/guix.texi:13024 #, no-wrap msgid "--gpg=@var{command}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12712 +#: guix-git/doc/guix.texi:13027 msgid "Use @var{command} as the GnuPG 2.x command. @var{command} is searched for in @code{$PATH}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12713 +#: guix-git/doc/guix.texi:13028 #, no-wrap msgid "--keyring=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12719 +#: guix-git/doc/guix.texi:13034 msgid "Use @var{file} as the keyring for upstream keys. @var{file} must be in the @dfn{keybox format}. Keybox files usually have a name ending in @file{.kbx} and the GNU@tie{}Privacy Guard (GPG) can manipulate these files (@pxref{kbxutil, @command{kbxutil},, gnupg, Using the GNU Privacy Guard}, for information on a tool to manipulate keybox files)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12725 +#: guix-git/doc/guix.texi:13040 msgid "When this option is omitted, @command{guix refresh} uses @file{~/.config/guix/upstream/trustedkeys.kbx} as the keyring for upstream signing keys. OpenPGP signatures are checked against keys from this keyring; missing keys are downloaded to this keyring as well (see @option{--key-download} below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12728 +#: guix-git/doc/guix.texi:13043 msgid "You can export keys from your default GPG keyring into a keybox file using commands like this one:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12731 +#: guix-git/doc/guix.texi:13046 #, no-wrap msgid "gpg --export rms@@gnu.org | kbxutil --import-openpgp >> mykeyring.kbx\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12734 +#: guix-git/doc/guix.texi:13049 msgid "Likewise, you can fetch keys to a specific keybox file like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12738 +#: guix-git/doc/guix.texi:13053 #, no-wrap msgid "" "gpg --no-default-keyring --keyring mykeyring.kbx \\\n" @@ -22860,84 +23418,94 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12742 +#: guix-git/doc/guix.texi:13057 msgid "@xref{GPG Configuration Options, @option{--keyring},, gnupg, Using the GNU Privacy Guard}, for more information on GPG's @option{--keyring} option." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12746 +#: guix-git/doc/guix.texi:13061 msgid "Handle missing OpenPGP keys according to @var{policy}, which may be one of:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12748 guix-git/doc/guix.texi:12871 -#: guix-git/doc/guix.texi:22249 +#: guix-git/doc/guix.texi:13063 guix-git/doc/guix.texi:13228 +#: guix-git/doc/guix.texi:22611 #, no-wrap msgid "always" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12751 +#: guix-git/doc/guix.texi:13066 msgid "Always download missing OpenPGP keys from the key server, and add them to the user's GnuPG keyring." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12752 guix-git/doc/guix.texi:22251 +#: guix-git/doc/guix.texi:13067 guix-git/doc/guix.texi:22613 #, no-wrap msgid "never" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12754 +#: guix-git/doc/guix.texi:13069 msgid "Never try to download missing OpenPGP keys. Instead just bail out." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12755 +#: guix-git/doc/guix.texi:13070 #, no-wrap msgid "interactive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12758 +#: guix-git/doc/guix.texi:13073 msgid "When a package signed with an unknown OpenPGP key is encountered, ask the user whether to download it or not. This is the default behavior." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12760 +#: guix-git/doc/guix.texi:13075 #, no-wrap msgid "--key-server=@var{host}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12762 +#: guix-git/doc/guix.texi:13077 msgid "Use @var{host} as the OpenPGP key server when importing a public key." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12782 +#: guix-git/doc/guix.texi:13097 msgid "The @code{github} updater uses the @uref{https://developer.github.com/v3/, GitHub API} to query for new releases. When used repeatedly e.g.@: when refreshing all packages, GitHub will eventually refuse to answer any further API requests. By default 60 API requests per hour are allowed, and a full refresh on all GitHub packages in Guix requires more than this. Authentication with GitHub through the use of an API token alleviates these limits. To use an API token, set the environment variable @env{GUIX_GITHUB_TOKEN} to a token procured from @uref{https://github.com/settings/tokens} or otherwise." msgstr "" #. type: section -#: guix-git/doc/guix.texi:12785 +#: guix-git/doc/guix.texi:13100 #, fuzzy, no-wrap #| msgid "Invoking @command{guix size}" msgid "Invoking @command{guix style}" msgstr "Invocando @command{guix size}" #. type: Plain text -#: guix-git/doc/guix.texi:12791 -msgid "The @command{guix style} command helps packagers style their package definitions according to the latest fashionable trends. The command currently focuses on one aspect: the style of package inputs. It may eventually be extended to handle other stylistic matters." +#: guix-git/doc/guix.texi:13105 +msgid "The @command{guix style} command helps packagers style their package definitions according to the latest fashionable trends. The command currently provides the following styling rules:" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix.texi:13110 +msgid "formatting package definitions according to the project's conventions (@pxref{Formatting Code});" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix.texi:13113 +msgid "rewriting package inputs to the ``new style'', as explained below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12796 +#: guix-git/doc/guix.texi:13119 msgid "The way package inputs are written is going through a transition (@pxref{package Reference}, for more on package inputs). Until version 1.3.0, package inputs were written using the ``old style'', where each input was given an explicit label, most of the time the package name:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12803 +#: guix-git/doc/guix.texi:13126 #, no-wrap msgid "" "(package\n" @@ -22948,12 +23516,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12807 +#: guix-git/doc/guix.texi:13130 msgid "Today, the old style is deprecated and the preferred style looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12813 +#: guix-git/doc/guix.texi:13136 #, no-wrap msgid "" "(package\n" @@ -22963,270 +23531,335 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12818 +#: guix-git/doc/guix.texi:13141 msgid "Likewise, uses of @code{alist-delete} and friends to manipulate inputs is now deprecated in favor of @code{modify-inputs} (@pxref{Defining Package Variants}, for more info on @code{modify-inputs})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12823 -msgid "In the vast majority of cases, this is a purely mechanical change on the surface syntax that does not even incur a package rebuild. Running @command{guix style} can do that for you, whether you're working on packages in Guix proper or in an external channel." +#: guix-git/doc/guix.texi:13146 +msgid "In the vast majority of cases, this is a purely mechanical change on the surface syntax that does not even incur a package rebuild. Running @command{guix style -S inputs} can do that for you, whether you're working on packages in Guix proper or in an external channel." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12828 -#, fuzzy, no-wrap -#| msgid "-r @var{package} @dots{}" +#: guix-git/doc/guix.texi:13151 +#, no-wrap msgid "guix style [@var{options}] @var{package}@dots{}\n" -msgstr "-r @var{pacote} @dots{}" +msgstr "guix style [@var{options}] @var{package}@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:12834 -msgid "This causes @command{guix style} to analyze and rewrite the definition of @var{package}@dots{}. It does so in a conservative way: preserving comments and bailing out if it cannot make sense of the code that appears in an inputs field. The available options are listed below." +#: guix-git/doc/guix.texi:13158 +msgid "This causes @command{guix style} to analyze and rewrite the definition of @var{package}@dots{} or, when @var{package} is omitted, of @emph{all} the packages. The @option{--styling} or @option{-S} option allows you to select the style rule, the default rule being @code{format}---see below." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:13160 guix-git/doc/guix.texi:14479 +msgid "The available options are listed below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12839 +#: guix-git/doc/guix.texi:13165 msgid "Show source file locations that would be edited but do not modify them." msgstr "" +#. type: item +#: guix-git/doc/guix.texi:13166 +#, fuzzy, no-wrap +#| msgid "--root=@var{file}" +msgid "--styling=@var{rule}" +msgstr "--root=@var{arquivo}" + +#. type: itemx +#: guix-git/doc/guix.texi:13167 +#, fuzzy, no-wrap +#| msgid "-f @var{file}" +msgid "-S @var{rule}" +msgstr "-f @var{arquivo}" + +#. type: table +#: guix-git/doc/guix.texi:13169 +#, fuzzy +#| msgid "Packages are currently available on the following platforms:" +msgid "Apply @var{rule}, one of the following styling rules:" +msgstr "Os pacotes estão atualmente disponíveis nas seguintes plataformas:" + +#. type: item +#: guix-git/doc/guix.texi:13171 +#, no-wrap +msgid "format" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:13176 +msgid "Format the given package definition(s)---this is the default styling rule. For example, a packager running Guix on a checkout (@pxref{Running Guix Before It Is Installed}) might want to reformat the definition of the Coreutils package like so:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:13179 +#, fuzzy, no-wrap +#| msgid "./pre-inst-env guix build gnew --keep-failed\n" +msgid "./pre-inst-env guix style coreutils\n" +msgstr "./pre-inst-env guix build gnew --keep-failed\n" + +#. type: item +#: guix-git/doc/guix.texi:13181 +#, no-wrap +msgid "inputs" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:13185 +msgid "Rewrite package inputs to the ``new style'', as described above. This is how you would rewrite inputs of package @code{whatnot} in your own channel:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:13188 +#, no-wrap +msgid "guix style -L ~/my/channel -S inputs whatnot\n" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:13194 +msgid "Rewriting is done in a conservative way: preserving comments and bailing out if it cannot make sense of the code that appears in an inputs field. The @option{--input-simplification} option described below provides fine-grain control over when inputs should be simplified." +msgstr "" + #. type: table -#: guix-git/doc/guix.texi:12848 +#: guix-git/doc/guix.texi:13204 msgid "Style the package @var{expr} evaluates to." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12853 +#: guix-git/doc/guix.texi:13209 #, no-wrap msgid "guix style -e '(@@ (gnu packages gcc) gcc-5)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12856 +#: guix-git/doc/guix.texi:13212 #, fuzzy #| msgid "Editing package definitions." msgid "styles the @code{gcc-5} package definition." msgstr "Editando definições de pacote." #. type: item -#: guix-git/doc/guix.texi:12857 +#: guix-git/doc/guix.texi:13213 #, no-wrap msgid "--input-simplification=@var{policy}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12861 -msgid "Specify the package input simplification policy for cases where an input label does not match the corresponding package name. @var{policy} may be one of the following:" +#: guix-git/doc/guix.texi:13218 +msgid "When using the @code{inputs} styling rule, with @samp{-S inputs}, this option specifies the package input simplification policy for cases where an input label does not match the corresponding package name. @var{policy} may be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12863 +#: guix-git/doc/guix.texi:13220 #, no-wrap msgid "silent" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12866 +#: guix-git/doc/guix.texi:13223 msgid "Simplify inputs only when the change is ``silent'', meaning that the package does not need to be rebuilt (its derivation is unchanged)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12867 +#: guix-git/doc/guix.texi:13224 #, no-wrap msgid "safe" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12870 +#: guix-git/doc/guix.texi:13227 msgid "Simplify inputs only when that is ``safe'' to do: the package might need to be rebuilt, but the change is known to have no observable effect." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12874 +#: guix-git/doc/guix.texi:13231 msgid "Simplify inputs even when input labels do not match package names, and even if that might have an observable effect." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12878 +#: guix-git/doc/guix.texi:13235 msgid "The default is @code{silent}, meaning that input simplifications do not trigger any package rebuild." msgstr "" #. type: section -#: guix-git/doc/guix.texi:12881 +#: guix-git/doc/guix.texi:13238 #, no-wrap msgid "Invoking @command{guix lint}" msgstr "Invocando @command{guix lint}" #. type: command{#1} -#: guix-git/doc/guix.texi:12883 +#: guix-git/doc/guix.texi:13240 #, no-wrap msgid "guix lint" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12884 +#: guix-git/doc/guix.texi:13241 #, no-wrap msgid "package, checking for errors" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12890 +#: guix-git/doc/guix.texi:13247 msgid "The @command{guix lint} command is meant to help package developers avoid common errors and use a consistent style. It runs a number of checks on a given set of packages in order to find common mistakes in their definitions. Available @dfn{checkers} include (see @option{--list-checkers} for a complete list):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12896 +#: guix-git/doc/guix.texi:13253 msgid "Validate certain typographical and stylistic rules about package descriptions and synopses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12897 +#: guix-git/doc/guix.texi:13254 #, no-wrap msgid "inputs-should-be-native" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12899 +#: guix-git/doc/guix.texi:13256 msgid "Identify inputs that should most likely be native inputs." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12902 +#: guix-git/doc/guix.texi:13259 #, no-wrap msgid "mirror-url" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12903 +#: guix-git/doc/guix.texi:13260 #, no-wrap msgid "github-url" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12904 +#: guix-git/doc/guix.texi:13261 #, no-wrap msgid "source-file-name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12911 +#: guix-git/doc/guix.texi:13268 msgid "Probe @code{home-page} and @code{source} URLs and report those that are invalid. Suggest a @code{mirror://} URL when applicable. If the @code{source} URL redirects to a GitHub URL, recommend usage of the GitHub URL@. Check that the source file name is meaningful, e.g.@: is not just a version number or ``git-checkout'', without a declared @code{file-name} (@pxref{origin Reference})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12912 +#: guix-git/doc/guix.texi:13269 #, no-wrap msgid "source-unstable-tarball" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12916 +#: guix-git/doc/guix.texi:13273 msgid "Parse the @code{source} URL to determine if a tarball from GitHub is autogenerated or if it is a release tarball. Unfortunately GitHub's autogenerated tarballs are sometimes regenerated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12920 +#: guix-git/doc/guix.texi:13277 msgid "Check that the derivation of the given packages can be successfully computed for all the supported systems (@pxref{Derivations})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12921 +#: guix-git/doc/guix.texi:13278 #, no-wrap msgid "profile-collisions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12927 +#: guix-git/doc/guix.texi:13284 msgid "Check whether installing the given packages in a profile would lead to collisions. Collisions occur when several packages with the same name but a different version or a different store file name are propagated. @xref{package Reference, @code{propagated-inputs}}, for more information on propagated inputs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12928 +#: guix-git/doc/guix.texi:13285 #, no-wrap msgid "archival" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12929 +#: guix-git/doc/guix.texi:13286 #, no-wrap msgid "Software Heritage, source code archive" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12930 +#: guix-git/doc/guix.texi:13287 #, no-wrap msgid "archival of source code, Software Heritage" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12933 +#: guix-git/doc/guix.texi:13290 msgid "Checks whether the package's source code is archived at @uref{https://www.softwareheritage.org, Software Heritage}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12941 +#: guix-git/doc/guix.texi:13298 msgid "When the source code that is not archived comes from a version-control system (VCS)---e.g., it's obtained with @code{git-fetch}, send Software Heritage a ``save'' request so that it eventually archives it. This ensures that the source will remain available in the long term, and that Guix can fall back to Software Heritage should the source code disappear from its original host. The status of recent ``save'' requests can be @uref{https://archive.softwareheritage.org/save/#requests, viewed on-line}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12946 +#: guix-git/doc/guix.texi:13303 msgid "When source code is a tarball obtained with @code{url-fetch}, simply print a message when it is not archived. As of this writing, Software Heritage does not allow requests to save arbitrary tarballs; we are working on ways to ensure that non-VCS source code is also archived." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12952 +#: guix-git/doc/guix.texi:13309 msgid "Software Heritage @uref{https://archive.softwareheritage.org/api/#rate-limiting, limits the request rate per IP address}. When the limit is reached, @command{guix lint} prints a message and the @code{archival} checker stops doing anything until that limit has been reset." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12953 +#: guix-git/doc/guix.texi:13310 #, no-wrap msgid "cve" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12954 guix-git/doc/guix.texi:37946 +#: guix-git/doc/guix.texi:13311 guix-git/doc/guix.texi:38435 #, no-wrap msgid "security vulnerabilities" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12955 +#: guix-git/doc/guix.texi:13312 #, no-wrap msgid "CVE, Common Vulnerabilities and Exposures" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12960 +#: guix-git/doc/guix.texi:13317 msgid "Report known vulnerabilities found in the Common Vulnerabilities and Exposures (CVE) databases of the current and past year @uref{https://nvd.nist.gov/vuln/data-feeds, published by the US NIST}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12962 +#: guix-git/doc/guix.texi:13319 msgid "To view information about a particular vulnerability, visit pages such as:" msgstr "" #. type: indicateurl{#1} -#: guix-git/doc/guix.texi:12966 +#: guix-git/doc/guix.texi:13323 msgid "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-YYYY-ABCD" msgstr "" #. type: indicateurl{#1} -#: guix-git/doc/guix.texi:12968 +#: guix-git/doc/guix.texi:13325 msgid "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-YYYY-ABCD" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12973 +#: guix-git/doc/guix.texi:13330 msgid "where @code{CVE-YYYY-ABCD} is the CVE identifier---e.g., @code{CVE-2015-7554}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12978 +#: guix-git/doc/guix.texi:13335 msgid "Package developers can specify in package recipes the @uref{https://nvd.nist.gov/products/cpe,Common Platform Enumeration (CPE)} name and version of the package when they differ from the name or version that Guix uses, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12986 +#: guix-git/doc/guix.texi:13343 #, no-wrap msgid "" "(package\n" @@ -23238,12 +23871,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12993 +#: guix-git/doc/guix.texi:13350 msgid "Some entries in the CVE database do not specify which version of a package they apply to, and would thus ``stick around'' forever. Package developers who found CVE alerts and verified they can be ignored can declare them as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:13003 +#: guix-git/doc/guix.texi:13360 #, no-wrap msgid "" "(package\n" @@ -23257,124 +23890,124 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13005 +#: guix-git/doc/guix.texi:13362 #, no-wrap msgid "formatting" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13008 +#: guix-git/doc/guix.texi:13365 msgid "Warn about obvious source code formatting issues: trailing white space, use of tabulations, etc." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13009 +#: guix-git/doc/guix.texi:13366 #, no-wrap msgid "input-labels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13015 +#: guix-git/doc/guix.texi:13372 msgid "Report old-style input labels that do not match the name of the corresponding package. This aims to help migrate from the ``old input style''. @xref{package Reference}, for more information on package inputs and input styles. @xref{Invoking guix style}, on how to migrate to the new style." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13021 +#: guix-git/doc/guix.texi:13378 #, no-wrap msgid "guix lint @var{options} @var{package}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13025 +#: guix-git/doc/guix.texi:13382 msgid "If no package is given on the command line, then all packages are checked. The @var{options} may be zero or more of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13027 +#: guix-git/doc/guix.texi:13384 #, no-wrap msgid "--list-checkers" msgstr "--list-checkers" #. type: table -#: guix-git/doc/guix.texi:13031 +#: guix-git/doc/guix.texi:13388 msgid "List and describe all the available checkers that will be run on packages and exit." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13032 +#: guix-git/doc/guix.texi:13389 #, no-wrap msgid "--checkers" msgstr "--checkers" #. type: itemx -#: guix-git/doc/guix.texi:13033 +#: guix-git/doc/guix.texi:13390 #, no-wrap msgid "-c" msgstr "-c" #. type: table -#: guix-git/doc/guix.texi:13036 +#: guix-git/doc/guix.texi:13393 msgid "Only enable the checkers specified in a comma-separated list using the names returned by @option{--list-checkers}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13037 +#: guix-git/doc/guix.texi:13394 #, no-wrap msgid "--exclude" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13041 +#: guix-git/doc/guix.texi:13398 msgid "Only disable the checkers specified in a comma-separated list using the names returned by @option{--list-checkers}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13042 +#: guix-git/doc/guix.texi:13399 #, no-wrap msgid "--no-network" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13045 +#: guix-git/doc/guix.texi:13402 msgid "Only enable the checkers that do not depend on Internet access." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13057 +#: guix-git/doc/guix.texi:13414 #, no-wrap msgid "Invoking @command{guix size}" msgstr "Invocando @command{guix size}" #. type: code{#1} -#: guix-git/doc/guix.texi:13059 guix-git/doc/guix.texi:35624 +#: guix-git/doc/guix.texi:13416 guix-git/doc/guix.texi:36114 #, no-wrap msgid "size" msgstr "tamanho" #. type: cindex -#: guix-git/doc/guix.texi:13060 +#: guix-git/doc/guix.texi:13417 #, no-wrap msgid "package size" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13062 +#: guix-git/doc/guix.texi:13419 #, no-wrap msgid "guix size" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13069 +#: guix-git/doc/guix.texi:13426 msgid "The @command{guix size} command helps package developers profile the disk usage of packages. It is easy to overlook the impact of an additional dependency added to a package, or the impact of using a single output for a package that could easily be split (@pxref{Packages with Multiple Outputs}). Such are the typical issues that @command{guix size} can highlight." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13074 +#: guix-git/doc/guix.texi:13431 msgid "The command can be passed one or more package specifications such as @code{gcc@@4.8} or @code{guile:debug}, or a file name in the store. Consider this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13087 +#: guix-git/doc/guix.texi:13444 #, no-wrap msgid "" "$ guix size coreutils\n" @@ -23391,54 +24024,54 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13093 +#: guix-git/doc/guix.texi:13450 msgid "The store items listed here constitute the @dfn{transitive closure} of Coreutils---i.e., Coreutils and all its dependencies, recursively---as would be returned by:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13096 +#: guix-git/doc/guix.texi:13453 #, no-wrap msgid "$ guix gc -R /gnu/store/@dots{}-coreutils-8.23\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13104 +#: guix-git/doc/guix.texi:13461 msgid "Here the output shows three columns next to store items. The first column, labeled ``total'', shows the size in mebibytes (MiB) of the closure of the store item---that is, its own size plus the size of all its dependencies. The next column, labeled ``self'', shows the size of the item itself. The last column shows the ratio of the size of the item itself to the space occupied by all the items listed here." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13110 +#: guix-git/doc/guix.texi:13467 msgid "In this example, we see that the closure of Coreutils weighs in at 79@tie{}MiB, most of which is taken by libc and GCC's run-time support libraries. (That libc and GCC's libraries represent a large fraction of the closure is not a problem @i{per se} because they are always available on the system anyway.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13113 +#: guix-git/doc/guix.texi:13470 msgid "Since the command also accepts store file names, assessing the size of a build result is straightforward:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13116 +#: guix-git/doc/guix.texi:13473 #, no-wrap msgid "guix size $(guix system build config.scm)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13126 +#: guix-git/doc/guix.texi:13483 msgid "When the package(s) passed to @command{guix size} are available in the store@footnote{More precisely, @command{guix size} looks for the @emph{ungrafted} variant of the given package(s), as returned by @code{guix build @var{package} --no-grafts}. @xref{Security Updates}, for information on grafts.}, @command{guix size} queries the daemon to determine its dependencies, and measures its size in the store, similar to @command{du -ms --apparent-size} (@pxref{du invocation,,, coreutils, GNU Coreutils})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13131 +#: guix-git/doc/guix.texi:13488 msgid "When the given packages are @emph{not} in the store, @command{guix size} reports information based on the available substitutes (@pxref{Substitutes}). This makes it possible it to profile disk usage of store items that are not even on disk, only available remotely." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13133 +#: guix-git/doc/guix.texi:13490 msgid "You can also specify several package names:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13143 +#: guix-git/doc/guix.texi:13500 #, no-wrap msgid "" "$ guix size coreutils grep sed bash\n" @@ -23452,365 +24085,365 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13149 +#: guix-git/doc/guix.texi:13506 msgid "In this example we see that the combination of the four packages takes 102.3@tie{}MiB in total, which is much less than the sum of each closure since they have a lot of dependencies in common." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13155 +#: guix-git/doc/guix.texi:13512 msgid "When looking at the profile returned by @command{guix size}, you may find yourself wondering why a given package shows up in the profile at all. To understand it, you can use @command{guix graph --path -t references} to display the shortest path between the two packages (@pxref{Invoking guix graph})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13157 +#: guix-git/doc/guix.texi:13514 msgid "The available options are:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13163 +#: guix-git/doc/guix.texi:13520 msgid "Use substitute information from @var{urls}. @xref{client-substitute-urls, the same option for @code{guix build}}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13164 +#: guix-git/doc/guix.texi:13521 #, no-wrap msgid "--sort=@var{key}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13166 +#: guix-git/doc/guix.texi:13523 msgid "Sort lines according to @var{key}, one of the following options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13168 +#: guix-git/doc/guix.texi:13525 #, no-wrap msgid "self" -msgstr "" +msgstr "próprio" #. type: table -#: guix-git/doc/guix.texi:13170 +#: guix-git/doc/guix.texi:13527 msgid "the size of each item (the default);" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13172 +#: guix-git/doc/guix.texi:13529 msgid "the total size of the item's closure." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13174 +#: guix-git/doc/guix.texi:13531 #, no-wrap msgid "--map-file=@var{file}" msgstr "--map-file=@var{arquivo}" #. type: table -#: guix-git/doc/guix.texi:13176 +#: guix-git/doc/guix.texi:13533 msgid "Write a graphical map of disk usage in PNG format to @var{file}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13178 +#: guix-git/doc/guix.texi:13535 msgid "For the example above, the map looks like this:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13181 +#: guix-git/doc/guix.texi:13538 msgid "@image{images/coreutils-size-map,5in,, map of Coreutils disk usage produced by @command{guix size}}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13186 +#: guix-git/doc/guix.texi:13543 msgid "This option requires that @uref{https://wingolog.org/software/guile-charting/, Guile-Charting} be installed and visible in Guile's module search path. When that is not the case, @command{guix size} fails as it tries to load it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13190 +#: guix-git/doc/guix.texi:13547 msgid "Consider packages for @var{system}---e.g., @code{x86_64-linux}." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13201 +#: guix-git/doc/guix.texi:13558 #, no-wrap msgid "Invoking @command{guix graph}" msgstr "Invocando @command{guix graph}" #. type: cindex -#: guix-git/doc/guix.texi:13203 +#: guix-git/doc/guix.texi:13560 #, no-wrap msgid "DAG" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13204 +#: guix-git/doc/guix.texi:13561 #, no-wrap msgid "guix graph" msgstr "guix graph" #. type: Plain text -#: guix-git/doc/guix.texi:13219 +#: guix-git/doc/guix.texi:13576 msgid "Packages and their dependencies form a @dfn{graph}, specifically a directed acyclic graph (DAG). It can quickly become difficult to have a mental model of the package DAG, so the @command{guix graph} command provides a visual representation of the DAG@. By default, @command{guix graph} emits a DAG representation in the input format of @uref{https://www.graphviz.org/, Graphviz}, so its output can be passed directly to the @command{dot} command of Graphviz. It can also emit an HTML page with embedded JavaScript code to display a ``chord diagram'' in a Web browser, using the @uref{https://d3js.org/, d3.js} library, or emit Cypher queries to construct a graph in a graph database supporting the @uref{https://www.opencypher.org/, openCypher} query language. With @option{--path}, it simply displays the shortest path between two packages. The general syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13222 +#: guix-git/doc/guix.texi:13579 #, no-wrap msgid "guix graph @var{options} @var{package}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13227 +#: guix-git/doc/guix.texi:13584 msgid "For example, the following command generates a PDF file representing the package DAG for the GNU@tie{}Core Utilities, showing its build-time dependencies:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13230 +#: guix-git/doc/guix.texi:13587 #, no-wrap msgid "guix graph coreutils | dot -Tpdf > dag.pdf\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13233 +#: guix-git/doc/guix.texi:13590 msgid "The output looks like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13235 +#: guix-git/doc/guix.texi:13592 msgid "@image{images/coreutils-graph,2in,,Dependency graph of the GNU Coreutils}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13237 +#: guix-git/doc/guix.texi:13594 msgid "Nice little graph, no?" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13240 +#: guix-git/doc/guix.texi:13597 msgid "You may find it more pleasant to navigate the graph interactively with @command{xdot} (from the @code{xdot} package):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13243 +#: guix-git/doc/guix.texi:13600 #, no-wrap msgid "guix graph coreutils | xdot -\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13250 +#: guix-git/doc/guix.texi:13607 msgid "But there is more than one graph! The one above is concise: it is the graph of package objects, omitting implicit inputs such as GCC, libc, grep, etc. It is often useful to have such a concise graph, but sometimes one may want to see more details. @command{guix graph} supports several types of graphs, allowing you to choose the level of detail:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13256 +#: guix-git/doc/guix.texi:13613 msgid "This is the default type used in the example above. It shows the DAG of package objects, excluding implicit dependencies. It is concise, but filters out many details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13257 +#: guix-git/doc/guix.texi:13614 #, no-wrap msgid "reverse-package" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13259 +#: guix-git/doc/guix.texi:13616 msgid "This shows the @emph{reverse} DAG of packages. For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13262 +#: guix-git/doc/guix.texi:13619 #, no-wrap msgid "guix graph --type=reverse-package ocaml\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13267 +#: guix-git/doc/guix.texi:13624 msgid "...@: yields the graph of packages that @emph{explicitly} depend on OCaml (if you are also interested in cases where OCaml is an implicit dependency, see @code{reverse-bag} below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13272 +#: guix-git/doc/guix.texi:13629 msgid "Note that for core packages this can yield huge graphs. If all you want is to know the number of packages that depend on a given package, use @command{guix refresh --list-dependent} (@pxref{Invoking guix refresh, @option{--list-dependent}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13273 +#: guix-git/doc/guix.texi:13630 #, no-wrap msgid "bag-emerged" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13275 +#: guix-git/doc/guix.texi:13632 msgid "This is the package DAG, @emph{including} implicit inputs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13277 +#: guix-git/doc/guix.texi:13634 msgid "For instance, the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13280 +#: guix-git/doc/guix.texi:13637 #, no-wrap msgid "guix graph --type=bag-emerged coreutils\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13283 +#: guix-git/doc/guix.texi:13640 msgid "...@: yields this bigger graph:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13285 +#: guix-git/doc/guix.texi:13642 msgid "@image{images/coreutils-bag-graph,,5in,Detailed dependency graph of the GNU Coreutils}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13288 +#: guix-git/doc/guix.texi:13645 msgid "At the bottom of the graph, we see all the implicit inputs of @var{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13292 +#: guix-git/doc/guix.texi:13649 msgid "Now, note that the dependencies of these implicit inputs---that is, the @dfn{bootstrap dependencies} (@pxref{Bootstrapping})---are not shown here, for conciseness." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13293 +#: guix-git/doc/guix.texi:13650 #, no-wrap msgid "bag" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13296 +#: guix-git/doc/guix.texi:13653 msgid "Similar to @code{bag-emerged}, but this time including all the bootstrap dependencies." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13297 +#: guix-git/doc/guix.texi:13654 #, no-wrap msgid "bag-with-origins" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13299 +#: guix-git/doc/guix.texi:13656 msgid "Similar to @code{bag}, but also showing origins and their dependencies." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13300 +#: guix-git/doc/guix.texi:13657 #, no-wrap msgid "reverse-bag" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13303 +#: guix-git/doc/guix.texi:13660 msgid "This shows the @emph{reverse} DAG of packages. Unlike @code{reverse-package}, it also takes implicit dependencies into account. For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13306 +#: guix-git/doc/guix.texi:13663 #, no-wrap msgid "guix graph -t reverse-bag dune\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13313 +#: guix-git/doc/guix.texi:13670 msgid "...@: yields the graph of all packages that depend on Dune, directly or indirectly. Since Dune is an @emph{implicit} dependency of many packages @i{via} @code{dune-build-system}, this shows a large number of packages, whereas @code{reverse-package} would show very few if any." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13319 +#: guix-git/doc/guix.texi:13676 msgid "This is the most detailed representation: It shows the DAG of derivations (@pxref{Derivations}) and plain store items. Compared to the above representation, many additional nodes are visible, including build scripts, patches, Guile modules, etc." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13322 +#: guix-git/doc/guix.texi:13679 msgid "For this type of graph, it is also possible to pass a @file{.drv} file name instead of a package name, as in:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13325 +#: guix-git/doc/guix.texi:13682 #, no-wrap msgid "guix graph -t derivation $(guix system build -d my-config.scm)\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13327 +#: guix-git/doc/guix.texi:13684 #, no-wrap msgid "module" msgstr "módulo" #. type: table -#: guix-git/doc/guix.texi:13331 +#: guix-git/doc/guix.texi:13688 msgid "This is the graph of @dfn{package modules} (@pxref{Package Modules}). For example, the following command shows the graph for the package module that defines the @code{guile} package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13334 +#: guix-git/doc/guix.texi:13691 #, no-wrap msgid "guix graph -t module guile | xdot -\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13339 +#: guix-git/doc/guix.texi:13696 msgid "All the types above correspond to @emph{build-time dependencies}. The following graph type represents the @emph{run-time dependencies}:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13344 +#: guix-git/doc/guix.texi:13701 msgid "This is the graph of @dfn{references} of a package output, as returned by @command{guix gc --references} (@pxref{Invoking guix gc})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13347 +#: guix-git/doc/guix.texi:13704 msgid "If the given package output is not available in the store, @command{guix graph} attempts to obtain dependency information from substitutes." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13351 +#: guix-git/doc/guix.texi:13708 msgid "Here you can also pass a store file name instead of a package name. For example, the command below produces the reference graph of your profile (which can be big!):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13354 +#: guix-git/doc/guix.texi:13711 #, no-wrap msgid "guix graph -t references $(readlink -f ~/.guix-profile)\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13356 +#: guix-git/doc/guix.texi:13713 #, no-wrap msgid "referrers" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13359 +#: guix-git/doc/guix.texi:13716 msgid "This is the graph of the @dfn{referrers} of a store item, as returned by @command{guix gc --referrers} (@pxref{Invoking guix gc})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13365 +#: guix-git/doc/guix.texi:13722 msgid "This relies exclusively on local information from your store. For instance, let us suppose that the current Inkscape is available in 10 profiles on your machine; @command{guix graph -t referrers inkscape} will show a graph rooted at Inkscape and with those 10 profiles linked to it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13368 +#: guix-git/doc/guix.texi:13725 msgid "It can help determine what is preventing a store item from being garbage collected." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13371 +#: guix-git/doc/guix.texi:13728 #, no-wrap msgid "shortest path, between packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13378 +#: guix-git/doc/guix.texi:13735 msgid "Often, the graph of the package you are interested in does not fit on your screen, and anyway all you want to know is @emph{why} that package actually depends on some seemingly unrelated package. The @option{--path} option instructs @command{guix graph} to display the shortest path between two packages (or derivations, or store items, etc.):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13392 +#: guix-git/doc/guix.texi:13749 #, no-wrap msgid "" "$ guix graph --path emacs libunistring\n" @@ -23828,88 +24461,88 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13400 +#: guix-git/doc/guix.texi:13757 msgid "Sometimes you still want to visualize the graph but would like to trim it so it can actually be displayed. One way to do it is via the @option{--max-depth} (or @option{-M}) option, which lets you specify the maximum depth of the graph. In the example below, we visualize only @code{libreoffice} and the nodes whose distance to @code{libreoffice} is at most 2:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13403 +#: guix-git/doc/guix.texi:13760 #, no-wrap msgid "guix graph -M 2 libreoffice | xdot -f fdp -\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13407 +#: guix-git/doc/guix.texi:13764 msgid "Mind you, that's still a big ball of spaghetti, but at least @command{dot} can render it quickly and it can be browsed somewhat." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13409 +#: guix-git/doc/guix.texi:13766 msgid "The available options are the following:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13415 +#: guix-git/doc/guix.texi:13772 msgid "Produce a graph output of @var{type}, where @var{type} must be one of the values listed above." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13416 +#: guix-git/doc/guix.texi:13773 #, no-wrap msgid "--list-types" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13418 +#: guix-git/doc/guix.texi:13775 msgid "List the supported graph types." msgstr "Lista os tipos de gráficos disponíveis." #. type: item -#: guix-git/doc/guix.texi:13419 +#: guix-git/doc/guix.texi:13776 #, no-wrap msgid "--backend=@var{backend}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13420 +#: guix-git/doc/guix.texi:13777 #, no-wrap msgid "-b @var{backend}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13422 +#: guix-git/doc/guix.texi:13779 msgid "Produce a graph using the selected @var{backend}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13423 +#: guix-git/doc/guix.texi:13780 #, no-wrap msgid "--list-backends" msgstr "--list-backends" #. type: table -#: guix-git/doc/guix.texi:13425 +#: guix-git/doc/guix.texi:13782 msgid "List the supported graph backends." msgstr "Lista os backends de gráficos disponíveis." #. type: table -#: guix-git/doc/guix.texi:13427 +#: guix-git/doc/guix.texi:13784 msgid "Currently, the available backends are Graphviz and d3.js." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13428 +#: guix-git/doc/guix.texi:13785 #, no-wrap msgid "--path" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13433 +#: guix-git/doc/guix.texi:13790 msgid "Display the shortest path between two nodes of the type specified by @option{--type}. The example below shows the shortest path between @code{libreoffice} and @code{llvm} according to the references of @code{libreoffice}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13440 +#: guix-git/doc/guix.texi:13797 #, no-wrap msgid "" "$ guix graph --path -t references libreoffice llvm\n" @@ -23920,399 +24553,399 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13450 +#: guix-git/doc/guix.texi:13807 #, no-wrap msgid "guix graph -e '(@@@@ (gnu packages commencement) gnu-make-final)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13455 +#: guix-git/doc/guix.texi:13812 msgid "Display the graph for @var{system}---e.g., @code{i686-linux}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13458 +#: guix-git/doc/guix.texi:13815 msgid "The package dependency graph is largely architecture-independent, but there are some architecture-dependent bits that this option allows you to visualize." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13474 +#: guix-git/doc/guix.texi:13831 msgid "On top of that, @command{guix graph} supports all the usual package transformation options (@pxref{Package Transformation Options}). This makes it easy to view the effect of a graph-rewriting transformation such as @option{--with-input}. For example, the command below outputs the graph of @code{git} once @code{openssl} has been replaced by @code{libressl} everywhere in the graph:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13477 +#: guix-git/doc/guix.texi:13834 #, no-wrap msgid "guix graph git --with-input=openssl=libressl\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13480 +#: guix-git/doc/guix.texi:13837 msgid "So many possibilities, so much fun!" msgstr "" #. type: section -#: guix-git/doc/guix.texi:13482 +#: guix-git/doc/guix.texi:13839 #, no-wrap msgid "Invoking @command{guix publish}" msgstr "Invocando @command{guix publish}" #. type: command{#1} -#: guix-git/doc/guix.texi:13484 +#: guix-git/doc/guix.texi:13841 #, no-wrap msgid "guix publish" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13488 +#: guix-git/doc/guix.texi:13845 msgid "The purpose of @command{guix publish} is to enable users to easily share their store with others, who can then use it as a substitute server (@pxref{Substitutes})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13494 +#: guix-git/doc/guix.texi:13851 msgid "When @command{guix publish} runs, it spawns an HTTP server which allows anyone with network access to obtain substitutes from it. This means that any machine running Guix can also act as if it were a build farm, since the HTTP interface is compatible with Cuirass, the software behind the @code{@value{SUBSTITUTE-SERVER-1}} build farm." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13500 +#: guix-git/doc/guix.texi:13857 msgid "For security, each substitute is signed, allowing recipients to check their authenticity and integrity (@pxref{Substitutes}). Because @command{guix publish} uses the signing key of the system, which is only readable by the system administrator, it must be started as root; the @option{--user} option makes it drop root privileges early on." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13504 +#: guix-git/doc/guix.texi:13861 msgid "The signing key pair must be generated before @command{guix publish} is launched, using @command{guix archive --generate-key} (@pxref{Invoking guix archive})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13509 +#: guix-git/doc/guix.texi:13866 msgid "When the @option{--advertise} option is passed, the server advertises its availability on the local network using multicast DNS (mDNS) and DNS service discovery (DNS-SD), currently @i{via} Guile-Avahi (@pxref{Top,,, guile-avahi, Using Avahi in Guile Scheme Programs})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13514 +#: guix-git/doc/guix.texi:13871 #, no-wrap msgid "guix publish @var{options}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13518 +#: guix-git/doc/guix.texi:13875 msgid "Running @command{guix publish} without any additional arguments will spawn an HTTP server on port 8080:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13521 +#: guix-git/doc/guix.texi:13878 #, no-wrap msgid "guix publish\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13525 +#: guix-git/doc/guix.texi:13882 msgid "Once a publishing server has been authorized, the daemon may download substitutes from it. @xref{Getting Substitutes from Other Servers}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13533 +#: guix-git/doc/guix.texi:13890 msgid "By default, @command{guix publish} compresses archives on the fly as it serves them. This ``on-the-fly'' mode is convenient in that it requires no setup and is immediately available. However, when serving lots of clients, we recommend using the @option{--cache} option, which enables caching of the archives before they are sent to clients---see below for details. The @command{guix weather} command provides a handy way to check what a server provides (@pxref{Invoking guix weather})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13540 +#: guix-git/doc/guix.texi:13897 msgid "As a bonus, @command{guix publish} also serves as a content-addressed mirror for source files referenced in @code{origin} records (@pxref{origin Reference}). For instance, assuming @command{guix publish} is running on @code{example.org}, the following URL returns the raw @file{hello-2.10.tar.gz} file with the given SHA256 hash (represented in @code{nix-base32} format, @pxref{Invoking guix hash}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13543 +#: guix-git/doc/guix.texi:13900 #, no-wrap msgid "http://example.org/file/hello-2.10.tar.gz/sha256/0ssi1@dots{}ndq1i\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13547 +#: guix-git/doc/guix.texi:13904 msgid "Obviously, these URLs only work for files that are in the store; in other cases, they return 404 (``Not Found'')." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13548 +#: guix-git/doc/guix.texi:13905 #, no-wrap msgid "build logs, publication" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13550 +#: guix-git/doc/guix.texi:13907 msgid "Build logs are available from @code{/log} URLs like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13553 +#: guix-git/doc/guix.texi:13910 #, no-wrap msgid "http://example.org/log/gwspk@dots{}-guile-2.2.3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13563 +#: guix-git/doc/guix.texi:13920 msgid "When @command{guix-daemon} is configured to save compressed build logs, as is the case by default (@pxref{Invoking guix-daemon}), @code{/log} URLs return the compressed log as-is, with an appropriate @code{Content-Type} and/or @code{Content-Encoding} header. We recommend running @command{guix-daemon} with @option{--log-compression=gzip} since Web browsers can automatically decompress it, which is not the case with Bzip2 compression." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13567 +#: guix-git/doc/guix.texi:13924 #, no-wrap msgid "--port=@var{port}" msgstr "--port=@var{porta}" #. type: itemx -#: guix-git/doc/guix.texi:13568 +#: guix-git/doc/guix.texi:13925 #, no-wrap msgid "-p @var{port}" msgstr "-p @var{porta}" #. type: table -#: guix-git/doc/guix.texi:13570 +#: guix-git/doc/guix.texi:13927 msgid "Listen for HTTP requests on @var{port}." msgstr "Ouve requisições HTTP na @var{porta}." #. type: item -#: guix-git/doc/guix.texi:13571 +#: guix-git/doc/guix.texi:13928 #, no-wrap msgid "--listen=@var{host}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13574 +#: guix-git/doc/guix.texi:13931 msgid "Listen on the network interface for @var{host}. The default is to accept connections from any interface." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13579 +#: guix-git/doc/guix.texi:13936 msgid "Change privileges to @var{user} as soon as possible---i.e., once the server socket is open and the signing key has been read." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13580 +#: guix-git/doc/guix.texi:13937 #, no-wrap msgid "--compression[=@var{method}[:@var{level}]]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13581 +#: guix-git/doc/guix.texi:13938 #, no-wrap msgid "-C [@var{method}[:@var{level}]]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13585 +#: guix-git/doc/guix.texi:13942 msgid "Compress data using the given @var{method} and @var{level}. @var{method} is one of @code{lzip}, @code{zstd}, and @code{gzip}; when @var{method} is omitted, @code{gzip} is used." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13589 +#: guix-git/doc/guix.texi:13946 msgid "When @var{level} is zero, disable compression. The range 1 to 9 corresponds to different compression levels: 1 is the fastest, and 9 is the best (CPU-intensive). The default is 3." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13596 +#: guix-git/doc/guix.texi:13953 msgid "Usually, @code{lzip} compresses noticeably better than @code{gzip} for a small increase in CPU usage; see @uref{https://nongnu.org/lzip/lzip_benchmark.html,benchmarks on the lzip Web page}. However, @code{lzip} achieves low decompression throughput (on the order of 50@tie{}MiB/s on modern hardware), which can be a bottleneck for someone who downloads over a fast network connection." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13600 +#: guix-git/doc/guix.texi:13957 msgid "The compression ratio of @code{zstd} is between that of @code{lzip} and that of @code{gzip}; its main advantage is a @uref{https://facebook.github.io/zstd/,high decompression speed}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13609 +#: guix-git/doc/guix.texi:13966 msgid "Unless @option{--cache} is used, compression occurs on the fly and the compressed streams are not cached. Thus, to reduce load on the machine that runs @command{guix publish}, it may be a good idea to choose a low compression level, to run @command{guix publish} behind a caching proxy, or to use @option{--cache}. Using @option{--cache} has the advantage that it allows @command{guix publish} to add @code{Content-Length} HTTP header to its responses." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13614 +#: guix-git/doc/guix.texi:13971 msgid "This option can be repeated, in which case every substitute gets compressed using all the selected methods, and all of them are advertised. This is useful when users may not support all the compression methods: they can select the one they support." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13615 +#: guix-git/doc/guix.texi:13972 #, no-wrap msgid "--cache=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13616 +#: guix-git/doc/guix.texi:13973 #, no-wrap msgid "-c @var{directory}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13619 +#: guix-git/doc/guix.texi:13976 msgid "Cache archives and meta-data (@code{.narinfo} URLs) to @var{directory} and only serve archives that are in cache." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13627 +#: guix-git/doc/guix.texi:13984 msgid "When this option is omitted, archives and meta-data are created on-the-fly. This can reduce the available bandwidth, especially when compression is enabled, since this may become CPU-bound. Another drawback of the default mode is that the length of archives is not known in advance, so @command{guix publish} does not add a @code{Content-Length} HTTP header to its responses, which in turn prevents clients from knowing the amount of data being downloaded." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13635 +#: guix-git/doc/guix.texi:13992 msgid "Conversely, when @option{--cache} is used, the first request for a store item (@i{via} a @code{.narinfo} URL) triggers a background process to @dfn{bake} the archive---computing its @code{.narinfo} and compressing the archive, if needed. Once the archive is cached in @var{directory}, subsequent requests succeed and are served directly from the cache, which guarantees that clients get the best possible bandwidth." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13642 +#: guix-git/doc/guix.texi:13999 msgid "That first @code{.narinfo} request nonetheless returns 200, provided the requested store item is ``small enough'', below the cache bypass threshold---see @option{--cache-bypass-threshold} below. That way, clients do not have to wait until the archive is baked. For larger store items, the first @code{.narinfo} request returns 404, meaning that clients have to wait until the archive is baked." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13646 +#: guix-git/doc/guix.texi:14003 msgid "The ``baking'' process is performed by worker threads. By default, one thread per CPU core is created, but this can be customized. See @option{--workers} below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13649 +#: guix-git/doc/guix.texi:14006 msgid "When @option{--ttl} is used, cached entries are automatically deleted when they have expired." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13650 +#: guix-git/doc/guix.texi:14007 #, no-wrap msgid "--workers=@var{N}" msgstr "--workers=@var{N}" #. type: table -#: guix-git/doc/guix.texi:13653 +#: guix-git/doc/guix.texi:14010 msgid "When @option{--cache} is used, request the allocation of @var{N} worker threads to ``bake'' archives." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13654 +#: guix-git/doc/guix.texi:14011 #, no-wrap msgid "--ttl=@var{ttl}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13658 +#: guix-git/doc/guix.texi:14015 msgid "Produce @code{Cache-Control} HTTP headers that advertise a time-to-live (TTL) of @var{ttl}. @var{ttl} must denote a duration: @code{5d} means 5 days, @code{1m} means 1 month, and so on." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13663 +#: guix-git/doc/guix.texi:14020 msgid "This allows the user's Guix to keep substitute information in cache for @var{ttl}. However, note that @code{guix publish} does not itself guarantee that the store items it provides will indeed remain available for as long as @var{ttl}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13667 +#: guix-git/doc/guix.texi:14024 msgid "Additionally, when @option{--cache} is used, cached entries that have not been accessed for @var{ttl} and that no longer have a corresponding item in the store, may be deleted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13668 +#: guix-git/doc/guix.texi:14025 #, fuzzy, no-wrap #| msgid "--manifest=@var{file}" msgid "--negative-ttl=@var{ttl}" msgstr "--manifest=@var{arquivo}" #. type: table -#: guix-git/doc/guix.texi:13673 +#: guix-git/doc/guix.texi:14030 msgid "Similarly produce @code{Cache-Control} HTTP headers to advertise the time-to-live (TTL) of @emph{negative} lookups---missing store items, for which the HTTP 404 code is returned. By default, no negative TTL is advertised." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13677 +#: guix-git/doc/guix.texi:14034 msgid "This parameter can help adjust server load and substitute latency by instructing cooperating clients to be more or less patient when a store item is missing." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13678 +#: guix-git/doc/guix.texi:14035 #, no-wrap msgid "--cache-bypass-threshold=@var{size}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13683 +#: guix-git/doc/guix.texi:14040 msgid "When used in conjunction with @option{--cache}, store items smaller than @var{size} are immediately available, even when they are not yet in cache. @var{size} is a size in bytes, or it can be suffixed by @code{M} for megabytes and so on. The default is @code{10M}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13688 +#: guix-git/doc/guix.texi:14045 msgid "``Cache bypass'' allows you to reduce the publication delay for clients at the expense of possibly additional I/O and CPU use on the server side: depending on the client access patterns, those store items can end up being baked several times until a copy is available in cache." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13692 +#: guix-git/doc/guix.texi:14049 msgid "Increasing the threshold may be useful for sites that have few users, or to guarantee that users get substitutes even for store items that are not popular." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13693 +#: guix-git/doc/guix.texi:14050 #, no-wrap msgid "--nar-path=@var{path}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13696 +#: guix-git/doc/guix.texi:14053 msgid "Use @var{path} as the prefix for the URLs of ``nar'' files (@pxref{Invoking guix archive, normalized archives})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13700 +#: guix-git/doc/guix.texi:14057 msgid "By default, nars are served at a URL such as @code{/nar/gzip/@dots{}-coreutils-8.25}. This option allows you to change the @code{/nar} part to @var{path}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13701 +#: guix-git/doc/guix.texi:14058 #, no-wrap msgid "--public-key=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13702 +#: guix-git/doc/guix.texi:14059 #, no-wrap msgid "--private-key=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13705 guix-git/doc/guix.texi:29141 -#: guix-git/doc/guix.texi:29178 +#: guix-git/doc/guix.texi:14062 guix-git/doc/guix.texi:29478 +#: guix-git/doc/guix.texi:29515 msgid "Use the specific @var{file}s as the public/private key pair used to sign the store items being published." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13712 +#: guix-git/doc/guix.texi:14069 msgid "The files must correspond to the same key pair (the private key is used for signing and the public key is merely advertised in the signature metadata). They must contain keys in the canonical s-expression format as produced by @command{guix archive --generate-key} (@pxref{Invoking guix archive}). By default, @file{/etc/guix/signing-key.pub} and @file{/etc/guix/signing-key.sec} are used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13713 +#: guix-git/doc/guix.texi:14070 #, no-wrap msgid "--repl[=@var{port}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13714 +#: guix-git/doc/guix.texi:14071 #, no-wrap msgid "-r [@var{port}]" msgstr "-r [@var{porta}]" #. type: table -#: guix-git/doc/guix.texi:13718 +#: guix-git/doc/guix.texi:14075 msgid "Spawn a Guile REPL server (@pxref{REPL Servers,,, guile, GNU Guile Reference Manual}) on @var{port} (37146 by default). This is used primarily for debugging a running @command{guix publish} server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13724 +#: guix-git/doc/guix.texi:14081 msgid "Enabling @command{guix publish} on Guix System is a one-liner: just instantiate a @code{guix-publish-service-type} service in the @code{services} field of the @code{operating-system} declaration (@pxref{guix-publish-service-type, @code{guix-publish-service-type}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13727 +#: guix-git/doc/guix.texi:14084 msgid "If you are instead running Guix on a ``foreign distro'', follow these instructions:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:13731 +#: guix-git/doc/guix.texi:14088 msgid "If your host distro uses the systemd init system:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13736 +#: guix-git/doc/guix.texi:14093 #, no-wrap msgid "" "# ln -s ~root/.guix-profile/lib/systemd/system/guix-publish.service \\\n" @@ -24321,7 +24954,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13744 +#: guix-git/doc/guix.texi:14101 #, no-wrap msgid "" "# ln -s ~root/.guix-profile/lib/upstart/system/guix-publish.conf /etc/init/\n" @@ -24329,56 +24962,56 @@ msgid "" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:13748 +#: guix-git/doc/guix.texi:14105 msgid "Otherwise, proceed similarly with your distro's init system." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13751 +#: guix-git/doc/guix.texi:14108 #, no-wrap msgid "Invoking @command{guix challenge}" msgstr "Invocando @command{guix challenge}" #. type: cindex -#: guix-git/doc/guix.texi:13754 +#: guix-git/doc/guix.texi:14111 #, no-wrap msgid "verifiable builds" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13755 +#: guix-git/doc/guix.texi:14112 #, no-wrap msgid "guix challenge" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13756 +#: guix-git/doc/guix.texi:14113 #, no-wrap msgid "challenge" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13761 +#: guix-git/doc/guix.texi:14118 msgid "Do the binaries provided by this server really correspond to the source code it claims to build? Is a package build process deterministic? These are the questions the @command{guix challenge} command attempts to answer." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13769 +#: guix-git/doc/guix.texi:14126 msgid "The former is obviously an important question: Before using a substitute server (@pxref{Substitutes}), one had better @emph{verify} that it provides the right binaries, and thus @emph{challenge} it. The latter is what enables the former: If package builds are deterministic, then independent builds of the package should yield the exact same result, bit for bit; if a server provides a binary different from the one obtained locally, it may be either corrupt or malicious." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13778 +#: guix-git/doc/guix.texi:14135 msgid "We know that the hash that shows up in @file{/gnu/store} file names is the hash of all the inputs of the process that built the file or directory---compilers, libraries, build scripts, etc. (@pxref{Introduction}). Assuming deterministic build processes, one store file name should map to exactly one build output. @command{guix challenge} checks whether there is, indeed, a single mapping by comparing the build outputs of several independent builds of any given store item." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13780 +#: guix-git/doc/guix.texi:14137 msgid "The command output looks like this:" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13792 +#: guix-git/doc/guix.texi:14149 #, no-wrap msgid "" "$ guix challenge --substitute-urls=\"https://@value{SUBSTITUTE-SERVER-1} https://guix.example.org\"\n" @@ -24395,7 +25028,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13799 +#: guix-git/doc/guix.texi:14156 #, no-wrap msgid "" "/gnu/store/@dots{}-git-2.5.0 contents differ:\n" @@ -24408,7 +25041,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13806 +#: guix-git/doc/guix.texi:14163 #, no-wrap msgid "" "/gnu/store/@dots{}-pius-2.1.1 contents differ:\n" @@ -24421,7 +25054,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13808 +#: guix-git/doc/guix.texi:14165 #, no-wrap msgid "" "@dots{}\n" @@ -24429,7 +25062,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13813 +#: guix-git/doc/guix.texi:14170 #, no-wrap msgid "" "6,406 store items were analyzed:\n" @@ -24439,28 +25072,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13821 +#: guix-git/doc/guix.texi:14178 msgid "In this example, @command{guix challenge} first scans the store to determine the set of locally-built derivations---as opposed to store items that were downloaded from a substitute server---and then queries all the substitute servers. It then reports those store items for which the servers obtained a result different from the local build." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13822 +#: guix-git/doc/guix.texi:14179 #, no-wrap msgid "non-determinism, in package builds" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13833 +#: guix-git/doc/guix.texi:14190 msgid "As an example, @code{guix.example.org} always gets a different answer. Conversely, @code{@value{SUBSTITUTE-SERVER-1}} agrees with local builds, except in the case of Git. This might indicate that the build process of Git is non-deterministic, meaning that its output varies as a function of various things that Guix does not fully control, in spite of building packages in isolated environments (@pxref{Features}). Most common sources of non-determinism include the addition of timestamps in build results, the inclusion of random numbers, and directory listings sorted by inode number. See @uref{https://reproducible-builds.org/docs/}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13836 +#: guix-git/doc/guix.texi:14193 msgid "To find out what is wrong with this Git binary, the easiest approach is to run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13841 +#: guix-git/doc/guix.texi:14198 #, no-wrap msgid "" "guix challenge git \\\n" @@ -24469,17 +25102,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13845 +#: guix-git/doc/guix.texi:14202 msgid "This automatically invokes @command{diffoscope}, which displays detailed information about files that differ." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13848 +#: guix-git/doc/guix.texi:14205 msgid "Alternatively, we can do something along these lines (@pxref{Invoking guix archive}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13853 +#: guix-git/doc/guix.texi:14210 #, no-wrap msgid "" "$ wget -q -O - https://@value{SUBSTITUTE-SERVER-1}/nar/lzip/@dots{}-git-2.5.0 \\\n" @@ -24488,160 +25121,160 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13862 +#: guix-git/doc/guix.texi:14219 msgid "This command shows the difference between the files resulting from the local build, and the files resulting from the build on @code{@value{SUBSTITUTE-SERVER-1}} (@pxref{Overview, Comparing and Merging Files,, diffutils, Comparing and Merging Files}). The @command{diff} command works great for text files. When binary files differ, a better option is @uref{https://diffoscope.org/, Diffoscope}, a tool that helps visualize differences for all kinds of files." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13870 +#: guix-git/doc/guix.texi:14227 msgid "Once you have done that work, you can tell whether the differences are due to a non-deterministic build process or to a malicious server. We try hard to remove sources of non-determinism in packages to make it easier to verify substitutes, but of course, this is a process that involves not just Guix, but a large part of the free software community. In the meantime, @command{guix challenge} is one tool to help address the problem." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13874 +#: guix-git/doc/guix.texi:14231 msgid "If you are writing packages for Guix, you are encouraged to check whether @code{@value{SUBSTITUTE-SERVER-1}} and other substitute servers obtain the same build result as you did with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13877 +#: guix-git/doc/guix.texi:14234 #, no-wrap msgid "$ guix challenge @var{package}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13882 +#: guix-git/doc/guix.texi:14239 msgid "where @var{package} is a package specification such as @code{guile@@2.0} or @code{glibc:debug}." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13887 +#: guix-git/doc/guix.texi:14244 #, no-wrap msgid "guix challenge @var{options} [@var{packages}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13894 +#: guix-git/doc/guix.texi:14251 msgid "When a difference is found between the hash of a locally-built item and that of a server-provided substitute, or among substitutes provided by different servers, the command displays it as in the example above and its exit code is 2 (other non-zero exit codes denote other kinds of errors)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13896 +#: guix-git/doc/guix.texi:14253 msgid "The one option that matters is:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13902 +#: guix-git/doc/guix.texi:14259 msgid "Consider @var{urls} the whitespace-separated list of substitute source URLs to compare to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13903 +#: guix-git/doc/guix.texi:14260 #, no-wrap msgid "--diff=@var{mode}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13905 +#: guix-git/doc/guix.texi:14262 msgid "Upon mismatches, show differences according to @var{mode}, one of:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13907 +#: guix-git/doc/guix.texi:14264 #, no-wrap msgid "@code{simple} (the default)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13909 +#: guix-git/doc/guix.texi:14266 msgid "Show the list of files that differ." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:13910 +#: guix-git/doc/guix.texi:14267 #, no-wrap msgid "diffoscope" msgstr "" #. type: var{#1} -#: guix-git/doc/guix.texi:13911 +#: guix-git/doc/guix.texi:14268 #, no-wrap msgid "command" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13914 +#: guix-git/doc/guix.texi:14271 msgid "Invoke @uref{https://diffoscope.org/, Diffoscope}, passing it two directories whose contents do not match." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13917 +#: guix-git/doc/guix.texi:14274 msgid "When @var{command} is an absolute file name, run @var{command} instead of Diffoscope." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13920 +#: guix-git/doc/guix.texi:14277 msgid "Do not show further details about the differences." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13925 +#: guix-git/doc/guix.texi:14282 msgid "Thus, unless @option{--diff=none} is passed, @command{guix challenge} downloads the store items from the given substitute servers so that it can compare them." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13926 +#: guix-git/doc/guix.texi:14283 #, no-wrap msgid "--verbose" msgstr "--verbose" #. type: itemx -#: guix-git/doc/guix.texi:13927 +#: guix-git/doc/guix.texi:14284 #, no-wrap msgid "-v" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13930 +#: guix-git/doc/guix.texi:14287 msgid "Show details about matches (identical contents) in addition to information about mismatches." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13934 +#: guix-git/doc/guix.texi:14291 #, no-wrap msgid "Invoking @command{guix copy}" msgstr "Invocando @command{guix copy}" #. type: cindex -#: guix-git/doc/guix.texi:13936 +#: guix-git/doc/guix.texi:14293 #, no-wrap msgid "copy, of store items, over SSH" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13937 +#: guix-git/doc/guix.texi:14294 #, no-wrap msgid "SSH, copy of store items" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13938 +#: guix-git/doc/guix.texi:14295 #, no-wrap msgid "sharing store items across machines" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13939 +#: guix-git/doc/guix.texi:14296 #, no-wrap msgid "transferring store items across machines" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13946 +#: guix-git/doc/guix.texi:14303 msgid "The @command{guix copy} command copies items from the store of one machine to that of another machine over a secure shell (SSH) connection@footnote{This command is available only when Guile-SSH was found. @xref{Requirements}, for details.}. For example, the following command copies the @code{coreutils} package, the user's profile, and all their dependencies over to @var{host}, logged in as @var{user}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13950 +#: guix-git/doc/guix.texi:14307 #, no-wrap msgid "" "guix copy --to=@var{user}@@@var{host} \\\n" @@ -24649,192 +25282,192 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13954 +#: guix-git/doc/guix.texi:14311 msgid "If some of the items to be copied are already present on @var{host}, they are not actually sent." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13957 +#: guix-git/doc/guix.texi:14314 msgid "The command below retrieves @code{libreoffice} and @code{gimp} from @var{host}, assuming they are available there:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13960 +#: guix-git/doc/guix.texi:14317 #, no-wrap msgid "guix copy --from=@var{host} libreoffice gimp\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13965 +#: guix-git/doc/guix.texi:14322 msgid "The SSH connection is established using the Guile-SSH client, which is compatible with OpenSSH: it honors @file{~/.ssh/known_hosts} and @file{~/.ssh/config}, and uses the SSH agent for authentication." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13971 +#: guix-git/doc/guix.texi:14328 msgid "The key used to sign items that are sent must be accepted by the remote machine. Likewise, the key used by the remote machine to sign items you are retrieving must be in @file{/etc/guix/acl} so it is accepted by your own daemon. @xref{Invoking guix archive}, for more information about store item authentication." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13976 +#: guix-git/doc/guix.texi:14333 #, no-wrap msgid "guix copy [--to=@var{spec}|--from=@var{spec}] @var{items}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13979 +#: guix-git/doc/guix.texi:14336 msgid "You must always specify one of the following options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13981 +#: guix-git/doc/guix.texi:14338 #, no-wrap msgid "--to=@var{spec}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13982 +#: guix-git/doc/guix.texi:14339 #, no-wrap msgid "--from=@var{spec}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13986 +#: guix-git/doc/guix.texi:14343 msgid "Specify the host to send to or receive from. @var{spec} must be an SSH spec such as @code{example.org}, @code{charlie@@example.org}, or @code{charlie@@example.org:2222}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13990 +#: guix-git/doc/guix.texi:14347 msgid "The @var{items} can be either package names, such as @code{gimp}, or store items, such as @file{/gnu/store/@dots{}-idutils-4.6}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13994 +#: guix-git/doc/guix.texi:14351 msgid "When specifying the name of a package to send, it is first built if needed, unless @option{--dry-run} was specified. Common build options are supported (@pxref{Common Build Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13997 +#: guix-git/doc/guix.texi:14354 #, no-wrap msgid "Invoking @command{guix container}" msgstr "Invocando @command{guix container}" #. type: command{#1} -#: guix-git/doc/guix.texi:13999 +#: guix-git/doc/guix.texi:14356 #, no-wrap msgid "guix container" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:14003 +#: guix-git/doc/guix.texi:14360 msgid "As of version @value{VERSION}, this tool is experimental. The interface is subject to radical change in the future." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14010 +#: guix-git/doc/guix.texi:14367 msgid "The purpose of @command{guix container} is to manipulate processes running within an isolated environment, commonly known as a ``container'', typically created by the @command{guix shell} (@pxref{Invoking guix shell}) and @command{guix system container} (@pxref{Invoking guix system}) commands." msgstr "" #. type: example -#: guix-git/doc/guix.texi:14015 +#: guix-git/doc/guix.texi:14372 #, no-wrap msgid "guix container @var{action} @var{options}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14019 +#: guix-git/doc/guix.texi:14376 msgid "@var{action} specifies the operation to perform with a container, and @var{options} specifies the context-specific arguments for the action." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14021 +#: guix-git/doc/guix.texi:14378 msgid "The following actions are available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14023 +#: guix-git/doc/guix.texi:14380 #, no-wrap msgid "exec" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14025 +#: guix-git/doc/guix.texi:14382 msgid "Execute a command within the context of a running container." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14027 +#: guix-git/doc/guix.texi:14384 msgid "The syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14030 +#: guix-git/doc/guix.texi:14387 #, no-wrap msgid "guix container exec @var{pid} @var{program} @var{arguments}@dots{}\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14036 +#: guix-git/doc/guix.texi:14393 msgid "@var{pid} specifies the process ID of the running container. @var{program} specifies an executable file name within the root file system of the container. @var{arguments} are the additional options that will be passed to @var{program}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14040 +#: guix-git/doc/guix.texi:14397 msgid "The following command launches an interactive login shell inside a Guix system container, started by @command{guix system container}, and whose process ID is 9001:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14043 +#: guix-git/doc/guix.texi:14400 #, no-wrap msgid "guix container exec 9001 /run/current-system/profile/bin/bash --login\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14047 +#: guix-git/doc/guix.texi:14404 msgid "Note that the @var{pid} cannot be the parent process of a container. It must be PID 1 of the container or one of its child processes." msgstr "" #. type: section -#: guix-git/doc/guix.texi:14051 +#: guix-git/doc/guix.texi:14408 #, no-wrap msgid "Invoking @command{guix weather}" msgstr "Invocando @command{guix weather}" #. type: Plain text -#: guix-git/doc/guix.texi:14060 +#: guix-git/doc/guix.texi:14417 msgid "Occasionally you're grumpy because substitutes are lacking and you end up building packages by yourself (@pxref{Substitutes}). The @command{guix weather} command reports on substitute availability on the specified servers so you can have an idea of whether you'll be grumpy today. It can sometimes be useful info as a user, but it is primarily useful to people running @command{guix publish} (@pxref{Invoking guix publish})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14061 +#: guix-git/doc/guix.texi:14418 #, no-wrap msgid "statistics, for substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14062 +#: guix-git/doc/guix.texi:14419 #, no-wrap msgid "availability of substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14063 +#: guix-git/doc/guix.texi:14420 #, no-wrap msgid "substitute availability" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14064 +#: guix-git/doc/guix.texi:14421 #, no-wrap msgid "weather, substitute availability" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14066 +#: guix-git/doc/guix.texi:14423 msgid "Here's a sample run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14078 +#: guix-git/doc/guix.texi:14435 #, no-wrap msgid "" "$ guix weather --substitute-urls=https://guix.example.org\n" @@ -24851,7 +25484,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14088 +#: guix-git/doc/guix.texi:14445 #, no-wrap msgid "" " 9.8% (342 out of 3,470) of the missing items are queued\n" @@ -24866,76 +25499,71 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14090 +#: guix-git/doc/guix.texi:14447 #, no-wrap msgid "continuous integration, statistics" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14101 +#: guix-git/doc/guix.texi:14458 msgid "As you can see, it reports the fraction of all the packages for which substitutes are available on the server---regardless of whether substitutes are enabled, and regardless of whether this server's signing key is authorized. It also reports the size of the compressed archives (``nars'') provided by the server, the size the corresponding store items occupy in the store (assuming deduplication is turned off), and the server's throughput. The second part gives continuous integration (CI) statistics, if the server supports it. In addition, using the @option{--coverage} option, @command{guix weather} can list ``important'' package substitutes missing on the server (see below)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14107 +#: guix-git/doc/guix.texi:14464 msgid "To achieve that, @command{guix weather} queries over HTTP(S) meta-data (@dfn{narinfos}) for all the relevant store items. Like @command{guix challenge}, it ignores signatures on those substitutes, which is innocuous since the command only gathers statistics and cannot install those substitutes." msgstr "" #. type: example -#: guix-git/doc/guix.texi:14112 +#: guix-git/doc/guix.texi:14469 #, no-wrap msgid "guix weather @var{options}@dots{} [@var{packages}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14120 +#: guix-git/doc/guix.texi:14477 msgid "When @var{packages} is omitted, @command{guix weather} checks the availability of substitutes for @emph{all} the packages, or for those specified with @option{--manifest}; otherwise it only considers the specified packages. It is also possible to query specific system types with @option{--system}. @command{guix weather} exits with a non-zero code when the fraction of available substitutes is below 100%." msgstr "" -#. type: Plain text -#: guix-git/doc/guix.texi:14122 -msgid "The available options are listed below." -msgstr "" - #. type: table -#: guix-git/doc/guix.texi:14128 +#: guix-git/doc/guix.texi:14485 msgid "@var{urls} is the space-separated list of substitute server URLs to query. When this option is omitted, the default set of substitute servers is queried." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14134 +#: guix-git/doc/guix.texi:14491 msgid "Query substitutes for @var{system}---e.g., @code{aarch64-linux}. This option can be repeated, in which case @command{guix weather} will query substitutes for several system types." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14140 +#: guix-git/doc/guix.texi:14497 msgid "Instead of querying substitutes for all the packages, only ask for those specified in @var{file}. @var{file} must contain a @dfn{manifest}, as with the @code{-m} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14143 +#: guix-git/doc/guix.texi:14500 msgid "This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14144 +#: guix-git/doc/guix.texi:14501 #, no-wrap msgid "--coverage[=@var{count}]" msgstr "--coverage[=@var{contagem}]" #. type: itemx -#: guix-git/doc/guix.texi:14145 +#: guix-git/doc/guix.texi:14502 #, no-wrap msgid "-c [@var{count}]" msgstr "-c [@var{contagem}]" #. type: table -#: guix-git/doc/guix.texi:14151 +#: guix-git/doc/guix.texi:14508 msgid "Report on substitute coverage for packages: list packages with at least @var{count} dependents (zero by default) for which substitutes are unavailable. Dependent packages themselves are not listed: if @var{b} depends on @var{a} and @var{a} has no substitutes, only @var{a} is listed, even though @var{b} usually lacks substitutes as well. The result looks like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14165 +#: guix-git/doc/guix.texi:14522 #, no-wrap msgid "" "$ guix weather --substitute-urls=@value{SUBSTITUTE-URLS} -c 10\n" @@ -24953,39 +25581,39 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14171 +#: guix-git/doc/guix.texi:14528 msgid "What this example shows is that @code{kcoreaddons} and presumably the 58 packages that depend on it have no substitutes at @code{@value{SUBSTITUTE-SERVER-1}}; likewise for @code{qgpgme} and the 46 packages that depend on it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14175 +#: guix-git/doc/guix.texi:14532 msgid "If you are a Guix developer, or if you are taking care of this build farm, you'll probably want to have a closer look at these packages: they may simply fail to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14176 +#: guix-git/doc/guix.texi:14533 #, no-wrap msgid "--display-missing" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14178 +#: guix-git/doc/guix.texi:14535 msgid "Display the list of store items for which substitutes are missing." msgstr "" #. type: section -#: guix-git/doc/guix.texi:14181 +#: guix-git/doc/guix.texi:14538 #, no-wrap msgid "Invoking @command{guix processes}" msgstr "Invocando @command{guix processes}" #. type: Plain text -#: guix-git/doc/guix.texi:14189 +#: guix-git/doc/guix.texi:14546 msgid "The @command{guix processes} command can be useful to developers and system administrators, especially on multi-user machines and on build farms: it lists the current sessions (connections to the daemon), as well as information about the processes involved@footnote{Remote sessions, when @command{guix-daemon} is started with @option{--listen} specifying a TCP endpoint, are @emph{not} listed.}. Here's an example of the information it returns:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14195 +#: guix-git/doc/guix.texi:14552 #, no-wrap msgid "" "$ sudo guix processes\n" @@ -24996,7 +25624,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14199 +#: guix-git/doc/guix.texi:14556 #, no-wrap msgid "" "SessionPID: 19402\n" @@ -25006,7 +25634,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14212 +#: guix-git/doc/guix.texi:14569 #, no-wrap msgid "" "SessionPID: 19444\n" @@ -25024,22 +25652,22 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14219 +#: guix-git/doc/guix.texi:14576 msgid "In this example we see that @command{guix-daemon} has three clients: @command{guix environment}, @command{guix publish}, and the Cuirass continuous integration tool; their process identifier (PID) is given by the @code{ClientPID} field. The @code{SessionPID} field gives the PID of the @command{guix-daemon} sub-process of this particular session." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14226 +#: guix-git/doc/guix.texi:14583 msgid "The @code{LockHeld} fields show which store items are currently locked by this session, which corresponds to store items being built or substituted (the @code{LockHeld} field is not displayed when @command{guix processes} is not running as root). Last, by looking at the @code{ChildPID} and @code{ChildCommand} fields, we understand that these three builds are being offloaded (@pxref{Daemon Offload Setup})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14231 +#: guix-git/doc/guix.texi:14588 msgid "The output is in Recutils format so we can use the handy @command{recsel} command to select sessions of interest (@pxref{Selection Expressions,,, recutils, GNU recutils manual}). As an example, the command shows the command line and PID of the client that triggered the build of a Perl package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14237 +#: guix-git/doc/guix.texi:14594 #, no-wrap msgid "" "$ sudo guix processes | \\\n" @@ -25049,28 +25677,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14240 +#: guix-git/doc/guix.texi:14597 msgid "Additional options are listed below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14250 +#: guix-git/doc/guix.texi:14607 msgid "The default option. It outputs a set of Session recutils records that include each @code{ChildProcess} as a field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14251 +#: guix-git/doc/guix.texi:14608 #, no-wrap msgid "normalized" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14258 +#: guix-git/doc/guix.texi:14615 msgid "Normalize the output records into record sets (@pxref{Record Sets,,, recutils, GNU recutils manual}). Normalizing into record sets allows joins across record types. The example below lists the PID of each @code{ChildProcess} and the associated PID for @code{Session} that spawned the @code{ChildProcess} where the @code{Session} was started using @command{guix build}." msgstr "" #. type: example -#: guix-git/doc/guix.texi:14268 +#: guix-git/doc/guix.texi:14625 #, no-wrap msgid "" "$ guix processes --format=normalized | \\\n" @@ -25085,7 +25713,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14271 +#: guix-git/doc/guix.texi:14628 #, no-wrap msgid "" "PID: 4554\n" @@ -25094,7 +25722,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14274 +#: guix-git/doc/guix.texi:14631 #, no-wrap msgid "" "PID: 4646\n" @@ -25102,90 +25730,90 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14281 +#: guix-git/doc/guix.texi:14638 #, no-wrap msgid "system configuration" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14287 +#: guix-git/doc/guix.texi:14644 msgid "Guix System supports a consistent whole-system configuration mechanism. By that we mean that all aspects of the global system configuration---such as the available system services, timezone and locale settings, user accounts---are declared in a single place. Such a @dfn{system configuration} can be @dfn{instantiated}---i.e., effected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14297 +#: guix-git/doc/guix.texi:14654 msgid "One of the advantages of putting all the system configuration under the control of Guix is that it supports transactional system upgrades, and makes it possible to roll back to a previous system instantiation, should something go wrong with the new one (@pxref{Features}). Another advantage is that it makes it easy to replicate the exact same configuration across different machines, or at different points in time, without having to resort to additional administration tools layered on top of the own tools of the system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14302 +#: guix-git/doc/guix.texi:14659 msgid "This section describes this mechanism. First we focus on the system administrator's viewpoint---explaining how the system is configured and instantiated. Then we show how this mechanism can be extended, for instance to support new system services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14332 +#: guix-git/doc/guix.texi:14689 msgid "The operating system is configured by providing an @code{operating-system} declaration in a file that can then be passed to the @command{guix system} command (@pxref{Invoking guix system}). A simple setup, with the default system services, the default Linux-Libre kernel, initial RAM disk, and boot loader looks like this:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14333 guix-git/doc/guix.texi:35553 +#: guix-git/doc/guix.texi:14690 guix-git/doc/guix.texi:36033 #, no-wrap msgid "operating-system" msgstr "sistema operacional" #. type: include -#: guix-git/doc/guix.texi:14335 +#: guix-git/doc/guix.texi:14692 #, no-wrap msgid "os-config-bare-bones.texi" msgstr "os-config-bare-bones.texi" #. type: Plain text -#: guix-git/doc/guix.texi:14342 +#: guix-git/doc/guix.texi:14699 msgid "This example should be self-describing. Some of the fields defined above, such as @code{host-name} and @code{bootloader}, are mandatory. Others, such as @code{packages} and @code{services}, can be omitted, in which case they get a default value." msgstr "Este exemplo deve ser autodescritivo. Alguns dos campos definidos acima, como @code{host-name} e @code{bootloader}, são obrigatórios. Outros, como @code{packages} e @code{services}, podem ser omitidos; nesse caso, eles recebem um valor padrão." #. type: Plain text -#: guix-git/doc/guix.texi:14347 +#: guix-git/doc/guix.texi:14704 msgid "Below we discuss the effect of some of the most important fields (@pxref{operating-system Reference}, for details about all the available fields), and how to @dfn{instantiate} the operating system using @command{guix system}." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14348 +#: guix-git/doc/guix.texi:14705 #, no-wrap msgid "Bootloader" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14350 +#: guix-git/doc/guix.texi:14707 #, no-wrap msgid "legacy boot, on Intel machines" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14351 +#: guix-git/doc/guix.texi:14708 #, no-wrap msgid "BIOS boot, on Intel machines" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14352 +#: guix-git/doc/guix.texi:14709 #, no-wrap msgid "UEFI boot" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14353 +#: guix-git/doc/guix.texi:14710 #, no-wrap msgid "EFI boot" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14359 +#: guix-git/doc/guix.texi:14716 msgid "The @code{bootloader} field describes the method that will be used to boot your system. Machines based on Intel processors can boot in ``legacy'' BIOS mode, as in the example above. However, more recent machines rely instead on the @dfn{Unified Extensible Firmware Interface} (UEFI) to boot. In that case, the @code{bootloader} field should contain something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14364 +#: guix-git/doc/guix.texi:14721 #, no-wrap msgid "" "(bootloader-configuration\n" @@ -25194,29 +25822,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14368 +#: guix-git/doc/guix.texi:14725 msgid "@xref{Bootloader Configuration}, for more information on the available configuration options." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14369 +#: guix-git/doc/guix.texi:14726 #, no-wrap msgid "Globally-Visible Packages" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:14371 +#: guix-git/doc/guix.texi:14728 #, no-wrap msgid "%base-packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14384 +#: guix-git/doc/guix.texi:14741 msgid "The @code{packages} field lists packages that will be globally visible on the system, for all user accounts---i.e., in every user's @env{PATH} environment variable---in addition to the per-user profiles (@pxref{Invoking guix package}). The @code{%base-packages} variable provides all the tools one would expect for basic user and administrator tasks---including the GNU Core Utilities, the GNU Networking Utilities, the @command{mg} lightweight text editor, @command{find}, @command{grep}, etc. The example above adds GNU@tie{}Screen to those, taken from the @code{(gnu packages screen)} module (@pxref{Package Modules}). The @code{(list package output)} syntax can be used to add a specific output of a package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14388 +#: guix-git/doc/guix.texi:14745 #, no-wrap msgid "" "(use-modules (gnu packages))\n" @@ -25225,7 +25853,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14393 +#: guix-git/doc/guix.texi:14750 #, no-wrap msgid "" "(operating-system\n" @@ -25235,18 +25863,18 @@ msgid "" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:14395 +#: guix-git/doc/guix.texi:14752 #, no-wrap msgid "specification->package" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14404 +#: guix-git/doc/guix.texi:14761 msgid "Referring to packages by variable name, like @code{isc-bind} above, has the advantage of being unambiguous; it also allows typos and such to be diagnosed right away as ``unbound variables''. The downside is that one needs to know which module defines which package, and to augment the @code{use-package-modules} line accordingly. To avoid that, one can use the @code{specification->package} procedure of the @code{(gnu packages)} module, which returns the best package for a given name or name and version:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14407 +#: guix-git/doc/guix.texi:14764 #, no-wrap msgid "" "(use-modules (gnu packages))\n" @@ -25254,7 +25882,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14413 +#: guix-git/doc/guix.texi:14770 #, no-wrap msgid "" "(operating-system\n" @@ -25265,58 +25893,58 @@ msgid "" msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14415 +#: guix-git/doc/guix.texi:14772 #, no-wrap msgid "System Services" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14417 guix-git/doc/guix.texi:34307 -#: guix-git/doc/guix.texi:35783 +#: guix-git/doc/guix.texi:14774 guix-git/doc/guix.texi:34746 +#: guix-git/doc/guix.texi:36273 #, no-wrap msgid "services" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:14418 +#: guix-git/doc/guix.texi:14775 #, no-wrap msgid "%base-services" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14428 +#: guix-git/doc/guix.texi:14785 msgid "The @code{services} field lists @dfn{system services} to be made available when the system starts (@pxref{Services}). The @code{operating-system} declaration above specifies that, in addition to the basic services, we want the OpenSSH secure shell daemon listening on port 2222 (@pxref{Networking Services, @code{openssh-service-type}}). Under the hood, @code{openssh-service-type} arranges so that @command{sshd} is started with the right command-line options, possibly with supporting configuration files generated as needed (@pxref{Defining Services})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14429 +#: guix-git/doc/guix.texi:14786 #, no-wrap msgid "customization, of services" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:14430 +#: guix-git/doc/guix.texi:14787 #, no-wrap msgid "modify-services" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14434 +#: guix-git/doc/guix.texi:14791 msgid "Occasionally, instead of using the base services as is, you will want to customize them. To do this, use @code{modify-services} (@pxref{Service Reference, @code{modify-services}}) to modify the list." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:14440 +#: guix-git/doc/guix.texi:14797 msgid "auto-login to TTY" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14440 +#: guix-git/doc/guix.texi:14797 msgid "For example, suppose you want to modify @code{guix-daemon} and Mingetty (the console log-in) in the @code{%base-services} list (@pxref{Base Services, @code{%base-services}}). To do that, you can write the following in your operating system declaration:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14457 +#: guix-git/doc/guix.texi:14814 #, no-wrap msgid "" "(define %my-services\n" @@ -25332,13 +25960,13 @@ msgid "" " (mingetty-service-type config =>\n" " (mingetty-configuration\n" " (inherit config)\n" -" ;; Automatially log in as \"guest\".\n" +" ;; Automatically log in as \"guest\".\n" " (auto-login \"guest\")))))\n" "\n" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14461 +#: guix-git/doc/guix.texi:14818 #, no-wrap msgid "" "(operating-system\n" @@ -25347,49 +25975,49 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14474 +#: guix-git/doc/guix.texi:14831 msgid "This changes the configuration---i.e., the service parameters---of the @code{guix-service-type} instance, and that of all the @code{mingetty-service-type} instances in the @code{%base-services} list (@pxref{Auto-Login to a Specific TTY, see the cookbook for how to auto-login one user to a specific TTY,, guix-cookbook, GNU Guix Cookbook})). Observe how this is accomplished: first, we arrange for the original configuration to be bound to the identifier @code{config} in the @var{body}, and then we write the @var{body} so that it evaluates to the desired configuration. In particular, notice how we use @code{inherit} to create a new configuration which has the same values as the old configuration, but with a few modifications." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14481 +#: guix-git/doc/guix.texi:14838 msgid "The configuration for a typical ``desktop'' usage, with an encrypted root partition, a swap file on the root partition, the X11 display server, GNOME and Xfce (users can choose which of these desktop environments to use at the log-in screen by pressing @kbd{F1}), network management, power management, and more, would look like this:" msgstr "" #. type: include -#: guix-git/doc/guix.texi:14483 +#: guix-git/doc/guix.texi:14840 #, no-wrap msgid "os-config-desktop.texi" msgstr "os-config-desktop.texi" #. type: Plain text -#: guix-git/doc/guix.texi:14488 +#: guix-git/doc/guix.texi:14845 msgid "A graphical system with a choice of lightweight window managers instead of full-blown desktop environments would look like this:" msgstr "Um sistema gráfico com uma escolha de gerenciadores de janelas leves em vez de ambientes de desktop completos teria a seguinte aparência:" #. type: include -#: guix-git/doc/guix.texi:14490 +#: guix-git/doc/guix.texi:14847 #, no-wrap msgid "os-config-lightweight-desktop.texi" msgstr "os-config-lightweight-desktop.texi" #. type: Plain text -#: guix-git/doc/guix.texi:14496 +#: guix-git/doc/guix.texi:14853 msgid "This example refers to the @file{/boot/efi} file system by its UUID, @code{1234-ABCD}. Replace this UUID with the right UUID on your system, as returned by the @command{blkid} command." msgstr "Este exemplo faz referência ao sistema de arquivos @file{/boot/efi} por seu UUID, @code{1234-ABCD}. Substitua esse UUID pelo UUID correto no seu sistema, conforme retornado pelo comando @command{blkid}." #. type: Plain text -#: guix-git/doc/guix.texi:14500 +#: guix-git/doc/guix.texi:14857 msgid "@xref{Desktop Services}, for the exact list of services provided by @code{%desktop-services}. @xref{X.509 Certificates}, for background information about the @code{nss-certs} package that is used here." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14507 +#: guix-git/doc/guix.texi:14864 msgid "Again, @code{%desktop-services} is just a list of service objects. If you want to remove services from there, you can do so using the procedures for list filtering (@pxref{SRFI-1 Filtering and Partitioning,,, guile, GNU Guile Reference Manual}). For instance, the following expression returns a list that contains all the services in @code{%desktop-services} minus the Avahi service:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14512 +#: guix-git/doc/guix.texi:14869 #, no-wrap msgid "" "(remove (lambda (service)\n" @@ -25398,12 +26026,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14515 +#: guix-git/doc/guix.texi:14872 msgid "Alternatively, the @code{modify-services} macro can be used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14519 +#: guix-git/doc/guix.texi:14876 #, no-wrap msgid "" "(modify-services %desktop-services\n" @@ -25411,356 +26039,356 @@ msgid "" msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14522 +#: guix-git/doc/guix.texi:14879 #, no-wrap msgid "Instantiating the System" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14529 +#: guix-git/doc/guix.texi:14886 msgid "Assuming the @code{operating-system} declaration is stored in the @file{my-system-config.scm} file, the @command{guix system reconfigure my-system-config.scm} command instantiates that configuration, and makes it the default GRUB boot entry (@pxref{Invoking guix system})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14537 +#: guix-git/doc/guix.texi:14894 msgid "The normal way to change the system configuration is by updating this file and re-running @command{guix system reconfigure}. One should never have to touch files in @file{/etc} or to run commands that modify the system state such as @command{useradd} or @command{grub-install}. In fact, you must avoid that since that would not only void your warranty but also prevent you from rolling back to previous versions of your system, should you ever need to." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14538 +#: guix-git/doc/guix.texi:14895 #, no-wrap msgid "roll-back, of the operating system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14548 +#: guix-git/doc/guix.texi:14905 msgid "Speaking of roll-back, each time you run @command{guix system reconfigure}, a new @dfn{generation} of the system is created---without modifying or deleting previous generations. Old system generations get an entry in the bootloader boot menu, allowing you to boot them in case something went wrong with the latest generation. Reassuring, no? The @command{guix system list-generations} command lists the system generations available on disk. It is also possible to roll back the system via the commands @command{guix system roll-back} and @command{guix system switch-generation}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14554 +#: guix-git/doc/guix.texi:14911 msgid "Although the @command{guix system reconfigure} command will not modify previous generations, you must take care when the current generation is not the latest (e.g., after invoking @command{guix system roll-back}), since the operation might overwrite a later generation (@pxref{Invoking guix system})." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14555 +#: guix-git/doc/guix.texi:14912 #, no-wrap msgid "The Programming Interface" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14560 +#: guix-git/doc/guix.texi:14917 msgid "At the Scheme level, the bulk of an @code{operating-system} declaration is instantiated with the following monadic procedure (@pxref{The Store Monad}):" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14561 +#: guix-git/doc/guix.texi:14918 #, no-wrap msgid "{Monadic Procedure} operating-system-derivation os" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14564 +#: guix-git/doc/guix.texi:14921 msgid "Return a derivation that builds @var{os}, an @code{operating-system} object (@pxref{Derivations})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14568 +#: guix-git/doc/guix.texi:14925 msgid "The output of the derivation is a single directory that refers to all the packages, configuration files, and other supporting files needed to instantiate @var{os}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14573 +#: guix-git/doc/guix.texi:14930 msgid "This procedure is provided by the @code{(gnu system)} module. Along with @code{(gnu services)} (@pxref{Services}), this module contains the guts of Guix System. Make sure to visit it!" msgstr "" #. type: section -#: guix-git/doc/guix.texi:14576 +#: guix-git/doc/guix.texi:14933 #, no-wrap msgid "@code{operating-system} Reference" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14581 +#: guix-git/doc/guix.texi:14938 msgid "This section summarizes all the options available in @code{operating-system} declarations (@pxref{Using the Configuration System})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14582 +#: guix-git/doc/guix.texi:14939 #, no-wrap msgid "{Data Type} operating-system" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14586 +#: guix-git/doc/guix.texi:14943 msgid "This is the data type representing an operating system configuration. By that, we mean all the global system configuration, not per-user configuration (@pxref{Using the Configuration System})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14588 +#: guix-git/doc/guix.texi:14945 #, no-wrap msgid "@code{kernel} (default: @code{linux-libre})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14593 +#: guix-git/doc/guix.texi:14950 msgid "The package object of the operating system kernel to use@footnote{Currently only the Linux-libre kernel is fully supported. Using GNU@tie{}mach with the GNU@tie{}Hurd is experimental and only available when building a virtual machine disk image.}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14594 guix-git/doc/guix.texi:30733 +#: guix-git/doc/guix.texi:14951 guix-git/doc/guix.texi:31098 #, no-wrap msgid "hurd" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14595 +#: guix-git/doc/guix.texi:14952 #, no-wrap msgid "@code{hurd} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14600 +#: guix-git/doc/guix.texi:14957 msgid "The package object of the Hurd to be started by the kernel. When this field is set, produce a GNU/Hurd operating system. In that case, @code{kernel} must also be set to the @code{gnumach} package---the microkernel the Hurd runs on." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:14603 +#: guix-git/doc/guix.texi:14960 msgid "This feature is experimental and only supported for disk images." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14605 +#: guix-git/doc/guix.texi:14962 #, no-wrap msgid "@code{kernel-loadable-modules} (default: '())" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14608 +#: guix-git/doc/guix.texi:14965 msgid "A list of objects (usually packages) to collect loadable kernel modules from--e.g. @code{(list ddcci-driver-linux)}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14609 +#: guix-git/doc/guix.texi:14966 #, no-wrap msgid "@code{kernel-arguments} (default: @code{%default-kernel-arguments})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14612 +#: guix-git/doc/guix.texi:14969 msgid "List of strings or gexps representing additional arguments to pass on the command-line of the kernel---e.g., @code{(\"console=ttyS0\")}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14613 guix-git/doc/guix.texi:34539 -#: guix-git/doc/guix.texi:34558 +#: guix-git/doc/guix.texi:14970 guix-git/doc/guix.texi:34978 +#: guix-git/doc/guix.texi:34997 #, no-wrap msgid "bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14615 +#: guix-git/doc/guix.texi:14972 msgid "The system bootloader configuration object. @xref{Bootloader Configuration}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14616 guix-git/doc/guix.texi:34732 +#: guix-git/doc/guix.texi:14973 guix-git/doc/guix.texi:35171 #, no-wrap msgid "label" msgstr "rótulo" #. type: table -#: guix-git/doc/guix.texi:14619 +#: guix-git/doc/guix.texi:14976 msgid "This is the label (a string) as it appears in the bootloader's menu entry. The default label includes the kernel name and version." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14620 guix-git/doc/guix.texi:16318 -#: guix-git/doc/guix.texi:19503 guix-git/doc/guix.texi:34662 +#: guix-git/doc/guix.texi:14977 guix-git/doc/guix.texi:16675 +#: guix-git/doc/guix.texi:19865 guix-git/doc/guix.texi:35101 #, no-wrap msgid "@code{keyboard-layout} (default: @code{#f})" msgstr "@code{keyboard-layout} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:14625 +#: guix-git/doc/guix.texi:14982 msgid "This field specifies the keyboard layout to use in the console. It can be either @code{#f}, in which case the default keyboard layout is used (usually US English), or a @code{} record. @xref{Keyboard Layout}, for more information." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14630 +#: guix-git/doc/guix.texi:14987 msgid "This keyboard layout is in effect as soon as the kernel has booted. For instance, it is the keyboard layout in effect when you type a passphrase if your root file system is on a @code{luks-device-mapping} mapped device (@pxref{Mapped Devices})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:14637 +#: guix-git/doc/guix.texi:14994 msgid "This does @emph{not} specify the keyboard layout used by the bootloader, nor that used by the graphical display server. @xref{Bootloader Configuration}, for information on how to specify the bootloader's keyboard layout. @xref{X Window}, for information on how to specify the keyboard layout used by the X Window System." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14639 +#: guix-git/doc/guix.texi:14996 #, no-wrap msgid "@code{initrd-modules} (default: @code{%base-initrd-modules})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14640 guix-git/doc/guix.texi:34344 -#: guix-git/doc/guix.texi:34467 +#: guix-git/doc/guix.texi:14997 guix-git/doc/guix.texi:34783 +#: guix-git/doc/guix.texi:34906 #, no-wrap msgid "initrd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14641 guix-git/doc/guix.texi:34345 -#: guix-git/doc/guix.texi:34468 +#: guix-git/doc/guix.texi:14998 guix-git/doc/guix.texi:34784 +#: guix-git/doc/guix.texi:34907 #, no-wrap msgid "initial RAM disk" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14644 +#: guix-git/doc/guix.texi:15001 msgid "The list of Linux kernel modules that need to be available in the initial RAM disk. @xref{Initial RAM Disk}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14645 +#: guix-git/doc/guix.texi:15002 #, no-wrap msgid "@code{initrd} (default: @code{base-initrd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14649 +#: guix-git/doc/guix.texi:15006 msgid "A procedure that returns an initial RAM disk for the Linux kernel. This field is provided to support low-level customization and should rarely be needed for casual use. @xref{Initial RAM Disk}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14650 +#: guix-git/doc/guix.texi:15007 #, no-wrap msgid "@code{firmware} (default: @code{%base-firmware})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14651 +#: guix-git/doc/guix.texi:15008 #, no-wrap msgid "firmware" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14653 +#: guix-git/doc/guix.texi:15010 msgid "List of firmware packages loadable by the operating system kernel." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14658 +#: guix-git/doc/guix.texi:15015 msgid "The default includes firmware needed for Atheros- and Broadcom-based WiFi devices (Linux-libre modules @code{ath9k} and @code{b43-open}, respectively). @xref{Hardware Considerations}, for more info on supported hardware." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14659 guix-git/doc/guix.texi:35572 +#: guix-git/doc/guix.texi:15016 guix-git/doc/guix.texi:36052 #, no-wrap msgid "host-name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14661 +#: guix-git/doc/guix.texi:15018 msgid "The host name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14662 +#: guix-git/doc/guix.texi:15019 #, no-wrap msgid "hosts-file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14663 +#: guix-git/doc/guix.texi:15020 #, no-wrap msgid "hosts file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14668 +#: guix-git/doc/guix.texi:15025 msgid "A file-like object (@pxref{G-Expressions, file-like objects}) for use as @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). The default is a file with entries for @code{localhost} and @var{host-name}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14669 +#: guix-git/doc/guix.texi:15026 #, no-wrap msgid "@code{mapped-devices} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14671 +#: guix-git/doc/guix.texi:15028 msgid "A list of mapped devices. @xref{Mapped Devices}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14672 +#: guix-git/doc/guix.texi:15029 #, no-wrap msgid "file-systems" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14674 +#: guix-git/doc/guix.texi:15031 msgid "A list of file systems. @xref{File Systems}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14675 +#: guix-git/doc/guix.texi:15032 #, no-wrap msgid "@code{swap-devices} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14676 +#: guix-git/doc/guix.texi:15033 #, no-wrap msgid "swap devices" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14678 +#: guix-git/doc/guix.texi:15035 msgid "A list of swap spaces. @xref{Swap Space}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15036 #, no-wrap msgid "@code{users} (default: @code{%base-user-accounts})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:14680 +#: guix-git/doc/guix.texi:15037 #, no-wrap msgid "@code{groups} (default: @code{%base-groups})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14682 +#: guix-git/doc/guix.texi:15039 msgid "List of user accounts and groups. @xref{User Accounts}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14685 +#: guix-git/doc/guix.texi:15042 msgid "If the @code{users} list lacks a user account with UID@tie{}0, a ``root'' account with UID@tie{}0 is automatically added." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14686 +#: guix-git/doc/guix.texi:15043 #, no-wrap msgid "@code{skeletons} (default: @code{(default-skeletons)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14690 +#: guix-git/doc/guix.texi:15047 msgid "A list of target file name/file-like object tuples (@pxref{G-Expressions, file-like objects}). These are the skeleton files that will be added to the home directory of newly-created user accounts." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14692 +#: guix-git/doc/guix.texi:15049 msgid "For instance, a valid value may look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14698 +#: guix-git/doc/guix.texi:15055 #, no-wrap msgid "" "`((\".bashrc\" ,(plain-file \"bashrc\" \"echo Hello\\n\"))\n" @@ -25770,29 +26398,29 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14700 +#: guix-git/doc/guix.texi:15057 #, no-wrap msgid "@code{issue} (default: @code{%default-issue})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14703 +#: guix-git/doc/guix.texi:15060 msgid "A string denoting the contents of the @file{/etc/issue} file, which is displayed when users log in on a text console." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14704 +#: guix-git/doc/guix.texi:15061 #, no-wrap msgid "@code{packages} (default: @code{%base-packages})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14708 +#: guix-git/doc/guix.texi:15065 msgid "A list of packages to be installed in the global profile, which is accessible at @file{/run/current-system/profile}. Each element is either a package variable or a package/output tuple. Here's a simple example of both:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14713 +#: guix-git/doc/guix.texi:15070 #, no-wrap msgid "" "(cons* git ; the default \"out\" output\n" @@ -25801,172 +26429,172 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14718 +#: guix-git/doc/guix.texi:15075 msgid "The default set includes core utilities and it is good practice to install non-core utilities in user profiles (@pxref{Invoking guix package})." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14719 +#: guix-git/doc/guix.texi:15076 #, no-wrap msgid "timezone" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14721 +#: guix-git/doc/guix.texi:15078 msgid "A timezone identifying string---e.g., @code{\"Europe/Paris\"}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14725 +#: guix-git/doc/guix.texi:15082 msgid "You can run the @command{tzselect} command to find out which timezone string corresponds to your region. Choosing an invalid timezone name causes @command{guix system} to fail." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14726 guix-git/doc/guix.texi:21115 +#: guix-git/doc/guix.texi:15083 guix-git/doc/guix.texi:21477 #, no-wrap msgid "@code{locale} (default: @code{\"en_US.utf8\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14729 +#: guix-git/doc/guix.texi:15086 msgid "The name of the default locale (@pxref{Locale Names,,, libc, The GNU C Library Reference Manual}). @xref{Locales}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14730 +#: guix-git/doc/guix.texi:15087 #, no-wrap msgid "@code{locale-definitions} (default: @code{%default-locale-definitions})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14733 +#: guix-git/doc/guix.texi:15090 msgid "The list of locale definitions to be compiled and that may be used at run time. @xref{Locales}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14734 +#: guix-git/doc/guix.texi:15091 #, no-wrap msgid "@code{locale-libcs} (default: @code{(list @var{glibc})})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14738 +#: guix-git/doc/guix.texi:15095 msgid "The list of GNU@tie{}libc packages whose locale data and tools are used to build the locale definitions. @xref{Locales}, for compatibility considerations that justify this option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14739 +#: guix-git/doc/guix.texi:15096 #, no-wrap msgid "@code{name-service-switch} (default: @code{%default-nss})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14743 +#: guix-git/doc/guix.texi:15100 msgid "Configuration of the libc name service switch (NSS)---a @code{} object. @xref{Name Service Switch}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14744 +#: guix-git/doc/guix.texi:15101 #, no-wrap msgid "@code{services} (default: @code{%base-services})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14746 +#: guix-git/doc/guix.texi:15103 msgid "A list of service objects denoting system services. @xref{Services}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14747 +#: guix-git/doc/guix.texi:15104 #, no-wrap msgid "essential services" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14748 +#: guix-git/doc/guix.texi:15105 #, no-wrap msgid "@code{essential-services} (default: ...)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14753 +#: guix-git/doc/guix.texi:15110 msgid "The list of ``essential services''---i.e., things like instances of @code{system-service-type} and @code{host-name-service-type} (@pxref{Service Reference}), which are derived from the operating system definition itself. As a user you should @emph{never} need to touch this field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14754 +#: guix-git/doc/guix.texi:15111 #, no-wrap msgid "@code{pam-services} (default: @code{(base-pam-services)})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14755 +#: guix-git/doc/guix.texi:15112 #, no-wrap msgid "PAM" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14756 +#: guix-git/doc/guix.texi:15113 #, no-wrap msgid "pluggable authentication modules" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14759 +#: guix-git/doc/guix.texi:15116 msgid "Linux @dfn{pluggable authentication module} (PAM) services." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14760 +#: guix-git/doc/guix.texi:15117 #, no-wrap msgid "@code{setuid-programs} (default: @code{%setuid-programs})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14763 +#: guix-git/doc/guix.texi:15120 msgid "List of @code{}. @xref{Setuid Programs}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14764 +#: guix-git/doc/guix.texi:15121 #, no-wrap msgid "@code{sudoers-file} (default: @code{%sudoers-specification})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14765 +#: guix-git/doc/guix.texi:15122 #, no-wrap msgid "sudoers file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14768 +#: guix-git/doc/guix.texi:15125 msgid "The contents of the @file{/etc/sudoers} file as a file-like object (@pxref{G-Expressions, @code{local-file} and @code{plain-file}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14773 +#: guix-git/doc/guix.texi:15130 msgid "This file specifies which users can use the @command{sudo} command, what they are allowed to do, and what privileges they may gain. The default is that only @code{root} and members of the @code{wheel} group may use @code{sudo}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14776 +#: guix-git/doc/guix.texi:15133 #, no-wrap msgid "{Scheme Syntax} this-operating-system" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14779 +#: guix-git/doc/guix.texi:15136 msgid "When used in the @emph{lexical scope} of an operating system field definition, this identifier resolves to the operating system being defined." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14782 +#: guix-git/doc/guix.texi:15139 msgid "The example below shows how to refer to the operating system being defined in the definition of the @code{label} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14785 guix-git/doc/guix.texi:18711 +#: guix-git/doc/guix.texi:15142 guix-git/doc/guix.texi:19073 #, no-wrap msgid "" "(use-modules (gnu) (guix))\n" @@ -25974,7 +26602,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14790 +#: guix-git/doc/guix.texi:15147 #, no-wrap msgid "" "(operating-system\n" @@ -25984,17 +26612,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14794 +#: guix-git/doc/guix.texi:15151 msgid "It is an error to refer to @code{this-operating-system} outside an operating system definition." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14805 +#: guix-git/doc/guix.texi:15162 msgid "The list of file systems to be mounted is specified in the @code{file-systems} field of the operating system declaration (@pxref{Using the Configuration System}). Each file system is declared using the @code{file-system} form, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14811 +#: guix-git/doc/guix.texi:15168 #, no-wrap msgid "" "(file-system\n" @@ -26004,68 +26632,68 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14815 +#: guix-git/doc/guix.texi:15172 msgid "As usual, some of the fields are mandatory---those shown in the example above---while others can be omitted. These are described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14816 +#: guix-git/doc/guix.texi:15173 #, no-wrap msgid "{Data Type} file-system" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14819 +#: guix-git/doc/guix.texi:15176 msgid "Objects of this type represent file systems to be mounted. They contain the following members:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14821 guix-git/doc/guix.texi:15201 -#: guix-git/doc/guix.texi:17317 +#: guix-git/doc/guix.texi:15178 guix-git/doc/guix.texi:15558 +#: guix-git/doc/guix.texi:17679 #, no-wrap msgid "type" msgstr "tipo" #. type: table -#: guix-git/doc/guix.texi:14824 +#: guix-git/doc/guix.texi:15181 msgid "This is a string specifying the type of the file system---e.g., @code{\"ext4\"}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14825 +#: guix-git/doc/guix.texi:15182 #, no-wrap msgid "mount-point" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14827 +#: guix-git/doc/guix.texi:15184 msgid "This designates the place where the file system is to be mounted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14828 guix-git/doc/guix.texi:17267 +#: guix-git/doc/guix.texi:15185 guix-git/doc/guix.texi:17629 #, no-wrap msgid "device" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14838 +#: guix-git/doc/guix.texi:15195 msgid "This names the ``source'' of the file system. It can be one of three things: a file system label, a file system UUID, or the name of a @file{/dev} node. Labels and UUIDs offer a way to refer to file systems without having to hard-code their actual device name@footnote{Note that, while it is tempting to use @file{/dev/disk/by-uuid} and similar device names to achieve the same result, this is not recommended: These special device nodes are created by the udev daemon and may be unavailable at the time the device is mounted.}." msgstr "" #. type: findex -#: guix-git/doc/guix.texi:14839 +#: guix-git/doc/guix.texi:15196 #, no-wrap msgid "file-system-label" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14844 +#: guix-git/doc/guix.texi:15201 msgid "File system labels are created using the @code{file-system-label} procedure, UUIDs are created using @code{uuid}, and @file{/dev} node are plain strings. Here's an example of a file system referred to by its label, as shown by the @command{e2label} command:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14850 +#: guix-git/doc/guix.texi:15207 #, no-wrap msgid "" "(file-system\n" @@ -26075,19 +26703,19 @@ msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14852 guix-git/doc/guix.texi:33130 -#: guix-git/doc/guix.texi:33146 +#: guix-git/doc/guix.texi:15209 guix-git/doc/guix.texi:33495 +#: guix-git/doc/guix.texi:33511 #, no-wrap msgid "uuid" msgstr "uuid" #. type: table -#: guix-git/doc/guix.texi:14860 +#: guix-git/doc/guix.texi:15217 msgid "UUIDs are converted from their string representation (as shown by the @command{tune2fs -l} command) using the @code{uuid} form@footnote{The @code{uuid} form expects 16-byte UUIDs as defined in @uref{https://tools.ietf.org/html/rfc4122, RFC@tie{}4122}. This is the form of UUID used by the ext2 family of file systems and others, but it is different from ``UUIDs'' found in FAT file systems, for instance.}, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14866 +#: guix-git/doc/guix.texi:15223 #, no-wrap msgid "" "(file-system\n" @@ -26097,170 +26725,170 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14874 +#: guix-git/doc/guix.texi:15231 msgid "When the source of a file system is a mapped device (@pxref{Mapped Devices}), its @code{device} field @emph{must} refer to the mapped device name---e.g., @file{\"/dev/mapper/root-partition\"}. This is required so that the system knows that mounting the file system depends on having the corresponding device mapping established." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14875 +#: guix-git/doc/guix.texi:15232 #, no-wrap msgid "@code{flags} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14885 +#: guix-git/doc/guix.texi:15242 msgid "This is a list of symbols denoting mount flags. Recognized flags include @code{read-only}, @code{bind-mount}, @code{no-dev} (disallow access to special files), @code{no-suid} (ignore setuid and setgid bits), @code{no-atime} (do not update file access times), @code{strict-atime} (update file access time), @code{lazy-time} (only update time on the in-memory version of the file inode), and @code{no-exec} (disallow program execution). @xref{Mount-Unmount-Remount,,, libc, The GNU C Library Reference Manual}, for more information on these flags." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14886 +#: guix-git/doc/guix.texi:15243 #, no-wrap msgid "@code{options} (default: @code{#f})" msgstr "@code{options} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:14895 +#: guix-git/doc/guix.texi:15252 msgid "This is either @code{#f}, or a string denoting mount options passed to the file system driver. @xref{Mount-Unmount-Remount,,, libc, The GNU C Library Reference Manual}, for details and run @command{man 8 mount} for options for various file systems. Note that the @code{file-system-options->alist} and @code{alist->file-system-options} procedures from @code{(gnu system file-systems)} can be used to convert file system options given as an association list to the string representation, and vice-versa." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14896 +#: guix-git/doc/guix.texi:15253 #, no-wrap msgid "@code{mount?} (default: @code{#t})" msgstr "@code{mount?} (default: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:14901 +#: guix-git/doc/guix.texi:15258 msgid "This value indicates whether to automatically mount the file system when the system is brought up. When set to @code{#f}, the file system gets an entry in @file{/etc/fstab} (read by the @command{mount} command) but is not automatically mounted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14902 +#: guix-git/doc/guix.texi:15259 #, no-wrap msgid "@code{needed-for-boot?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14907 +#: guix-git/doc/guix.texi:15264 msgid "This Boolean value indicates whether the file system is needed when booting. If that is true, then the file system is mounted when the initial RAM disk (initrd) is loaded. This is always the case, for instance, for the root file system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14908 +#: guix-git/doc/guix.texi:15265 #, no-wrap msgid "@code{check?} (default: @code{#t})" msgstr "@code{check?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:14912 +#: guix-git/doc/guix.texi:15269 msgid "This Boolean indicates whether the file system should be checked for errors before being mounted. How and when this happens can be further adjusted with the following options." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14913 +#: guix-git/doc/guix.texi:15270 #, fuzzy, no-wrap #| msgid "@code{check?} (default: @code{#t})" msgid "@code{skip-check-if-clean?} (default: @code{#t})" msgstr "@code{check?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:14918 +#: guix-git/doc/guix.texi:15275 msgid "When true, this Boolean indicates that a file system check triggered by @code{check?} may exit early if the file system is marked as ``clean'', meaning that it was previously correctly unmounted and should not contain errors." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14922 +#: guix-git/doc/guix.texi:15279 msgid "Setting this to false will always force a full consistency check when @code{check?} is true. This may take a very long time and is not recommended on healthy systems---in fact, it may reduce reliability!" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14926 +#: guix-git/doc/guix.texi:15283 msgid "Conversely, some primitive file systems like @code{fat} do not keep track of clean shutdowns and will perform a full scan regardless of the value of this option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14927 +#: guix-git/doc/guix.texi:15284 #, fuzzy, no-wrap #| msgid "@code{users} (default: @code{#f})" msgid "@code{repair} (default: @code{'preen})" msgstr "@code{users} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:14930 +#: guix-git/doc/guix.texi:15287 msgid "When @code{check?} finds errors, it can (try to) repair them and continue booting. This option controls when and how to do so." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14934 +#: guix-git/doc/guix.texi:15291 msgid "If false, try not to modify the file system at all. Checking certain file systems like @code{jfs} may still write to the device to replay the journal. No repairs will be attempted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14937 +#: guix-git/doc/guix.texi:15294 msgid "If @code{#t}, try to repair any errors found and assume ``yes'' to all questions. This will fix the most errors, but may be risky." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14941 +#: guix-git/doc/guix.texi:15298 msgid "If @code{'preen}, repair only errors that are safe to fix without human interaction. What that means is left up to the developers of each file system and may be equivalent to ``none'' or ``all''." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14942 +#: guix-git/doc/guix.texi:15299 #, no-wrap msgid "@code{create-mount-point?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14944 +#: guix-git/doc/guix.texi:15301 msgid "When true, the mount point is created if it does not exist yet." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14945 +#: guix-git/doc/guix.texi:15302 #, no-wrap msgid "@code{mount-may-fail?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14950 +#: guix-git/doc/guix.texi:15307 msgid "When true, this indicates that mounting this file system can fail but that should not be considered an error. This is useful in unusual cases; an example of this is @code{efivarfs}, a file system that can only be mounted on EFI/UEFI systems." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14951 guix-git/doc/guix.texi:15347 +#: guix-git/doc/guix.texi:15308 guix-git/doc/guix.texi:15704 #, no-wrap msgid "@code{dependencies} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14955 +#: guix-git/doc/guix.texi:15312 msgid "This is a list of @code{} or @code{} objects representing file systems that must be mounted or mapped devices that must be opened before (and unmounted or closed after) this one." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14959 +#: guix-git/doc/guix.texi:15316 msgid "As an example, consider a hierarchy of mounts: @file{/sys/fs/cgroup} is a dependency of @file{/sys/fs/cgroup/cpu} and @file{/sys/fs/cgroup/memory}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14962 +#: guix-git/doc/guix.texi:15319 msgid "Another example is a file system that depends on a mapped device, for example for an encrypted partition (@pxref{Mapped Devices})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14965 +#: guix-git/doc/guix.texi:15322 #, no-wrap msgid "{Scheme Procedure} file-system-label @var{str}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14968 +#: guix-git/doc/guix.texi:15325 msgid "This procedure returns an opaque file system label from @var{str}, a string:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14972 +#: guix-git/doc/guix.texi:15329 #, no-wrap msgid "" "(file-system-label \"home\")\n" @@ -26268,104 +26896,104 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14976 +#: guix-git/doc/guix.texi:15333 msgid "File system labels are used to refer to file systems by label rather than by device name. See above for examples." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14980 +#: guix-git/doc/guix.texi:15337 msgid "The @code{(gnu system file-systems)} exports the following useful variables." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14981 +#: guix-git/doc/guix.texi:15338 #, no-wrap msgid "{Scheme Variable} %base-file-systems" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14986 +#: guix-git/doc/guix.texi:15343 msgid "These are essential file systems that are required on normal systems, such as @code{%pseudo-terminal-file-system} and @code{%immutable-store} (see below). Operating system declarations should always contain at least these." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14988 +#: guix-git/doc/guix.texi:15345 #, no-wrap msgid "{Scheme Variable} %pseudo-terminal-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14994 +#: guix-git/doc/guix.texi:15351 msgid "This is the file system to be mounted as @file{/dev/pts}. It supports @dfn{pseudo-terminals} created @i{via} @code{openpty} and similar functions (@pxref{Pseudo-Terminals,,, libc, The GNU C Library Reference Manual}). Pseudo-terminals are used by terminal emulators such as @command{xterm}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14996 +#: guix-git/doc/guix.texi:15353 #, no-wrap msgid "{Scheme Variable} %shared-memory-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15000 +#: guix-git/doc/guix.texi:15357 msgid "This file system is mounted as @file{/dev/shm} and is used to support memory sharing across processes (@pxref{Memory-mapped I/O, @code{shm_open},, libc, The GNU C Library Reference Manual})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15002 +#: guix-git/doc/guix.texi:15359 #, no-wrap msgid "{Scheme Variable} %immutable-store" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15007 +#: guix-git/doc/guix.texi:15364 msgid "This file system performs a read-only ``bind mount'' of @file{/gnu/store}, making it read-only for all the users including @code{root}. This prevents against accidental modification by software running as @code{root} or by system administrators." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15010 +#: guix-git/doc/guix.texi:15367 msgid "The daemon itself is still able to write to the store: it remounts it read-write in its own ``name space.''" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15012 +#: guix-git/doc/guix.texi:15369 #, no-wrap msgid "{Scheme Variable} %binary-format-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15016 +#: guix-git/doc/guix.texi:15373 msgid "The @code{binfmt_misc} file system, which allows handling of arbitrary executable file types to be delegated to user space. This requires the @code{binfmt.ko} kernel module to be loaded." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15018 +#: guix-git/doc/guix.texi:15375 #, no-wrap msgid "{Scheme Variable} %fuse-control-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15022 +#: guix-git/doc/guix.texi:15379 msgid "The @code{fusectl} file system, which allows unprivileged users to mount and unmount user-space FUSE file systems. This requires the @code{fuse.ko} kernel module to be loaded." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15026 +#: guix-git/doc/guix.texi:15383 msgid "The @code{(gnu system uuid)} module provides tools to deal with file system ``unique identifiers'' (UUIDs)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15027 +#: guix-git/doc/guix.texi:15384 #, no-wrap msgid "{Scheme Procedure} uuid @var{str} [@var{type}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15030 +#: guix-git/doc/guix.texi:15387 msgid "Return an opaque UUID (unique identifier) object of the given @var{type} (a symbol) by parsing @var{str} (a string):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15034 +#: guix-git/doc/guix.texi:15391 #, no-wrap msgid "" "(uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\")\n" @@ -26374,7 +27002,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15037 +#: guix-git/doc/guix.texi:15394 #, no-wrap msgid "" "(uuid \"1234-ABCD\" 'fat)\n" @@ -26382,33 +27010,33 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15041 +#: guix-git/doc/guix.texi:15398 msgid "@var{type} may be one of @code{dce}, @code{iso9660}, @code{fat}, @code{ntfs}, or one of the commonly found synonyms for these." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15044 +#: guix-git/doc/guix.texi:15401 msgid "UUIDs are another way to unambiguously refer to file systems in operating system configuration. See the examples above." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:15047 guix-git/doc/guix.texi:15048 +#: guix-git/doc/guix.texi:15404 guix-git/doc/guix.texi:15405 #, no-wrap msgid "Btrfs file system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15054 +#: guix-git/doc/guix.texi:15411 msgid "The Btrfs has special features, such as subvolumes, that merit being explained in more details. The following section attempts to cover basic as well as complex uses of a Btrfs file system with the Guix System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15057 +#: guix-git/doc/guix.texi:15414 msgid "In its simplest usage, a Btrfs file system can be described, for example, by:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15063 +#: guix-git/doc/guix.texi:15420 #, no-wrap msgid "" "(file-system\n" @@ -26418,12 +27046,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15069 +#: guix-git/doc/guix.texi:15426 msgid "The example below is more complex, as it makes use of a Btrfs subvolume, named @code{rootfs}. The parent Btrfs file system is labeled @code{my-btrfs-pool}, and is located on an encrypted device (hence the dependency on @code{mapped-devices}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15077 +#: guix-git/doc/guix.texi:15434 #, no-wrap msgid "" "(file-system\n" @@ -26435,17 +27063,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15088 +#: guix-git/doc/guix.texi:15445 msgid "Some bootloaders, for example GRUB, only mount a Btrfs partition at its top level during the early boot, and rely on their configuration to refer to the correct subvolume path within that top level. The bootloaders operating in this way typically produce their configuration on a running system where the Btrfs partitions are already mounted and where the subvolume information is readily available. As an example, @command{grub-mkconfig}, the configuration generator command shipped with GRUB, reads @file{/proc/self/mountinfo} to determine the top-level path of a subvolume." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15096 +#: guix-git/doc/guix.texi:15453 msgid "The Guix System produces a bootloader configuration using the operating system configuration as its sole input; it is therefore necessary to extract the subvolume name on which @file{/gnu/store} lives (if any) from that operating system configuration. To better illustrate, consider a subvolume named 'rootfs' which contains the root file system data. In such situation, the GRUB bootloader would only see the top level of the root Btrfs partition, e.g.:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15103 +#: guix-git/doc/guix.texi:15460 #, no-wrap msgid "" "/ (top level)\n" @@ -26456,17 +27084,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15108 +#: guix-git/doc/guix.texi:15465 msgid "Thus, the subvolume name must be prepended to the @file{/gnu/store} path of the kernel, initrd binaries and any other files referred to in the GRUB configuration that must be found during the early boot." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15111 +#: guix-git/doc/guix.texi:15468 msgid "The next example shows a nested hierarchy of subvolumes and directories:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15118 +#: guix-git/doc/guix.texi:15475 #, no-wrap msgid "" "/ (top level)\n" @@ -26477,17 +27105,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15125 +#: guix-git/doc/guix.texi:15482 msgid "This scenario would work without mounting the 'store' subvolume. Mounting 'rootfs' is sufficient, since the subvolume name matches its intended mount point in the file system hierarchy. Alternatively, the 'store' subvolume could be referred to by setting the @code{subvol} option to either @code{/rootfs/gnu/store} or @code{rootfs/gnu/store}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15127 +#: guix-git/doc/guix.texi:15484 msgid "Finally, a more contrived example of nested subvolumes:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15134 +#: guix-git/doc/guix.texi:15491 #, no-wrap msgid "" "/ (top level)\n" @@ -26498,12 +27126,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15141 +#: guix-git/doc/guix.texi:15498 msgid "Here, the 'guix-store' subvolume doesn't match its intended mount point, so it is necessary to mount it. The subvolume must be fully specified, by passing its file name to the @code{subvol} option. To illustrate, the 'guix-store' subvolume could be mounted on @file{/gnu/store} by using a file system declaration such as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15149 +#: guix-git/doc/guix.texi:15506 #, no-wrap msgid "" "(file-system\n" @@ -26515,128 +27143,128 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15154 +#: guix-git/doc/guix.texi:15511 #, no-wrap msgid "device mapping" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15155 +#: guix-git/doc/guix.texi:15512 #, no-wrap msgid "mapped devices" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15172 +#: guix-git/doc/guix.texi:15529 msgid "The Linux kernel has a notion of @dfn{device mapping}: a block device, such as a hard disk partition, can be @dfn{mapped} into another device, usually in @code{/dev/mapper/}, with additional processing over the data that flows through it@footnote{Note that the GNU@tie{}Hurd makes no difference between the concept of a ``mapped device'' and that of a file system: both boil down to @emph{translating} input/output operations made on a file to operations on its backing store. Thus, the Hurd implements mapped devices, like file systems, using the generic @dfn{translator} mechanism (@pxref{Translators,,, hurd, The GNU Hurd Reference Manual}).}. A typical example is encryption device mapping: all writes to the mapped device are encrypted, and all reads are deciphered, transparently. Guix extends this notion by considering any device or set of devices that are @dfn{transformed} in some way to create a new device; for instance, RAID devices are obtained by @dfn{assembling} several other devices, such as hard disks or partitions, into a new one that behaves as one partition." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15175 +#: guix-git/doc/guix.texi:15532 msgid "Mapped devices are declared using the @code{mapped-device} form, defined as follows; for examples, see below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15176 +#: guix-git/doc/guix.texi:15533 #, no-wrap msgid "{Data Type} mapped-device" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15179 +#: guix-git/doc/guix.texi:15536 msgid "Objects of this type represent device mappings that will be made when the system boots up." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15186 +#: guix-git/doc/guix.texi:15543 msgid "This is either a string specifying the name of the block device to be mapped, such as @code{\"/dev/sda3\"}, or a list of such strings when several devices need to be assembled for creating a new one. In case of LVM this is a string specifying name of the volume group to be mapped." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:15187 guix-git/doc/guix.texi:15342 +#: guix-git/doc/guix.texi:15544 guix-git/doc/guix.texi:15699 #, no-wrap msgid "target" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15196 +#: guix-git/doc/guix.texi:15553 msgid "This string specifies the name of the resulting mapped device. For kernel mappers such as encrypted devices of type @code{luks-device-mapping}, specifying @code{\"my-partition\"} leads to the creation of the @code{\"/dev/mapper/my-partition\"} device. For RAID devices of type @code{raid-device-mapping}, the full device name such as @code{\"/dev/md0\"} needs to be given. LVM logical volumes of type @code{lvm-device-mapping} need to be specified as @code{\"VGNAME-LVNAME\"}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:15197 guix-git/doc/guix.texi:34634 +#: guix-git/doc/guix.texi:15554 guix-git/doc/guix.texi:35073 #, no-wrap msgid "targets" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15200 +#: guix-git/doc/guix.texi:15557 msgid "This list of strings specifies names of the resulting mapped devices in case there are several. The format is identical to @var{target}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15204 +#: guix-git/doc/guix.texi:15561 msgid "This must be a @code{mapped-device-kind} object, which specifies how @var{source} is mapped to @var{target}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15207 +#: guix-git/doc/guix.texi:15564 #, no-wrap msgid "{Scheme Variable} luks-device-mapping" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15211 +#: guix-git/doc/guix.texi:15568 msgid "This defines LUKS block device encryption using the @command{cryptsetup} command from the package with the same name. It relies on the @code{dm-crypt} Linux kernel module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15213 +#: guix-git/doc/guix.texi:15570 #, no-wrap msgid "{Scheme Variable} raid-device-mapping" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15218 +#: guix-git/doc/guix.texi:15575 msgid "This defines a RAID device, which is assembled using the @code{mdadm} command from the package with the same name. It requires a Linux kernel module for the appropriate RAID level to be loaded, such as @code{raid456} for RAID-4, RAID-5 or RAID-6, or @code{raid10} for RAID-10." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15220 +#: guix-git/doc/guix.texi:15577 #, no-wrap msgid "LVM, logical volume manager" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15221 +#: guix-git/doc/guix.texi:15578 #, no-wrap msgid "{Scheme Variable} lvm-device-mapping" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15226 +#: guix-git/doc/guix.texi:15583 msgid "This defines one or more logical volumes for the Linux @uref{https://www.sourceware.org/lvm2/, Logical Volume Manager (LVM)}. The volume group is activated by the @command{vgchange} command from the @code{lvm2} package." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15228 +#: guix-git/doc/guix.texi:15585 #, no-wrap msgid "disk encryption" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15229 +#: guix-git/doc/guix.texi:15586 #, no-wrap msgid "LUKS" msgstr "LUKS" #. type: Plain text -#: guix-git/doc/guix.texi:15237 +#: guix-git/doc/guix.texi:15594 msgid "The following example specifies a mapping from @file{/dev/sda3} to @file{/dev/mapper/home} using LUKS---the @url{https://gitlab.com/cryptsetup/cryptsetup,Linux Unified Key Setup}, a standard mechanism for disk encryption. The @file{/dev/mapper/home} device can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15243 +#: guix-git/doc/guix.texi:15600 #, no-wrap msgid "" "(mapped-device\n" @@ -26646,23 +27274,23 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15248 +#: guix-git/doc/guix.texi:15605 msgid "Alternatively, to become independent of device numbering, one may obtain the LUKS UUID (@dfn{unique identifier}) of the source device by a command like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15251 +#: guix-git/doc/guix.texi:15608 #, no-wrap msgid "cryptsetup luksUUID /dev/sda3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15254 +#: guix-git/doc/guix.texi:15611 msgid "and use it as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15260 +#: guix-git/doc/guix.texi:15617 #, no-wrap msgid "" "(mapped-device\n" @@ -26672,23 +27300,23 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15262 +#: guix-git/doc/guix.texi:15619 #, no-wrap msgid "swap encryption" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15269 +#: guix-git/doc/guix.texi:15626 msgid "It is also desirable to encrypt swap space, since swap space may contain sensitive data. One way to accomplish that is to use a swap file in a file system on a device mapped via LUKS encryption. In this way, the swap file is encrypted because the entire device is encrypted. @xref{Swap Space}, or @xref{Preparing for Installation,,Disk Partitioning}, for an example." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15272 +#: guix-git/doc/guix.texi:15629 msgid "A RAID device formed of the partitions @file{/dev/sda1} and @file{/dev/sdb1} may be declared as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15278 +#: guix-git/doc/guix.texi:15635 #, no-wrap msgid "" "(mapped-device\n" @@ -26698,17 +27326,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15285 +#: guix-git/doc/guix.texi:15642 msgid "The @file{/dev/md0} device can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems}). Note that the RAID level need not be given; it is chosen during the initial creation and formatting of the RAID device and is determined automatically later." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15288 +#: guix-git/doc/guix.texi:15645 msgid "LVM logical volumes ``alpha'' and ``beta'' from volume group ``vg0'' can be declared as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15294 +#: guix-git/doc/guix.texi:15651 #, no-wrap msgid "" "(mapped-device\n" @@ -26718,104 +27346,104 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15299 +#: guix-git/doc/guix.texi:15656 msgid "Devices @file{/dev/mapper/vg0-alpha} and @file{/dev/mapper/vg0-beta} can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15302 +#: guix-git/doc/guix.texi:15659 #, no-wrap msgid "swap space" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15312 +#: guix-git/doc/guix.texi:15669 msgid "Swap space, as it is commonly called, is a disk area specifically designated for paging: the process in charge of memory management (the Linux kernel or Hurd's default pager) can decide that some memory pages stored in RAM which belong to a running program but are unused should be stored on disk instead. It unloads those from the RAM, freeing up precious fast memory, and writes them to the swap space. If the program tries to access that very page, the memory management process loads it back into memory for the program to use." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15318 +#: guix-git/doc/guix.texi:15675 msgid "A common misconception about swap is that it is only useful when small amounts of RAM are available to the system. However, it should be noted that kernels often use all available RAM for disk access caching to make I/O faster, and thus paging out unused portions of program memory will expand the RAM available for such caching." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15322 +#: guix-git/doc/guix.texi:15679 msgid "For a more detailed description of how memory is managed from the viewpoint of a monolithic kernel, @xref{Memory Concepts,,, libc, The GNU C Library Reference Manual}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15331 +#: guix-git/doc/guix.texi:15688 msgid "The Linux kernel has support for swap partitions and swap files: the former uses a whole disk partition for paging, whereas the second uses a file on a file system for that (the file system driver needs to support it). On a comparable setup, both have the same performance, so one should consider ease of use when deciding between them. Partitions are ``simpler'' and do not need file system support, but need to be allocated at disk formatting time (logical volumes notwithstanding), whereas files can be allocated and deallocated at any time." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15336 +#: guix-git/doc/guix.texi:15693 msgid "Note that swap space is not zeroed on shutdown, so sensitive data (such as passwords) may linger on it if it was paged out. As such, you should consider having your swap reside on an encrypted device (@pxref{Mapped Devices})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15337 +#: guix-git/doc/guix.texi:15694 #, fuzzy, no-wrap msgid "{Data Type} swap-space" msgstr "build-machine {Data Type}" #. type: deftp -#: guix-git/doc/guix.texi:15340 +#: guix-git/doc/guix.texi:15697 msgid "Objects of this type represent swap spaces. They contain the following members:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15346 +#: guix-git/doc/guix.texi:15703 msgid "The device or file to use, either a UUID, a @code{file-system-label} or a string, as in the definition of a @code{file-system} (@pxref{File Systems})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15353 +#: guix-git/doc/guix.texi:15710 msgid "A list of @code{file-system} or @code{mapped-device} objects, upon which the availability of the space depends. Note that just like for @code{file-system} objects, dependencies which are needed for boot and mounted in early userspace are not managed by the Shepherd, and so automatically filtered out for you." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15354 +#: guix-git/doc/guix.texi:15711 #, fuzzy, no-wrap #| msgid "@code{chroot} (default: @code{#f})" msgid "@code{priority} (default: @code{#f})" msgstr "@code{chroot} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:15361 +#: guix-git/doc/guix.texi:15718 msgid "Only supported by the Linux kernel. Either @code{#f} to disable swap priority, or an integer between 0 and 32767. The kernel will first use swap spaces of higher priority when paging, and use same priority spaces on a round-robin basis. The kernel will use swap spaces without a set priority after prioritized spaces, and in the order that they appeared in (not round-robin)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15362 +#: guix-git/doc/guix.texi:15719 #, fuzzy, no-wrap #| msgid "@code{id} (default: @code{#f})" msgid "@code{discard?} (default: @code{#f})" msgstr "@code{id} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:15366 +#: guix-git/doc/guix.texi:15723 msgid "Only supported by the Linux kernel. When true, the kernel will notify the disk controller of discarded pages, for example with the TRIM operation on Solid State Drives." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15371 +#: guix-git/doc/guix.texi:15728 msgid "Here are some examples:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15374 +#: guix-git/doc/guix.texi:15731 #, no-wrap msgid "(swap-space (target (uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\")))\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15379 +#: guix-git/doc/guix.texi:15736 msgid "Use the swap partition with the given UUID@. You can learn the UUID of a Linux swap partition by running @command{swaplabel @var{device}}, where @var{device} is the @file{/dev} file name of that partition." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15384 +#: guix-git/doc/guix.texi:15741 #, no-wrap msgid "" "(swap-space\n" @@ -26824,12 +27452,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15390 +#: guix-git/doc/guix.texi:15747 msgid "Use the partition with label @code{swap}, which can be found after the @var{lvm-device} mapped device has been opened. Again, the @command{swaplabel} command allows you to view and change the label of a Linux swap partition." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15395 +#: guix-git/doc/guix.texi:15752 #, no-wrap msgid "" "(swap-space\n" @@ -26838,35 +27466,35 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15399 +#: guix-git/doc/guix.texi:15756 msgid "Use the file @file{/btrfs/swapfile} as swap space, which is present on the @var{btrfs-fs} filesystem." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15403 +#: guix-git/doc/guix.texi:15760 #, no-wrap msgid "users" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15404 +#: guix-git/doc/guix.texi:15761 #, no-wrap msgid "accounts" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15405 +#: guix-git/doc/guix.texi:15762 #, no-wrap msgid "user accounts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15409 +#: guix-git/doc/guix.texi:15766 msgid "User accounts and groups are entirely managed through the @code{operating-system} declaration. They are specified with the @code{user-account} and @code{user-group} forms:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15419 +#: guix-git/doc/guix.texi:15776 #, no-wrap msgid "" "(user-account\n" @@ -26880,12 +27508,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15423 +#: guix-git/doc/guix.texi:15780 msgid "Here's a user account that uses a different shell and a custom home directory (the default would be @file{\"/home/bob\"}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15431 +#: guix-git/doc/guix.texi:15788 #, no-wrap msgid "" "(user-account\n" @@ -26897,171 +27525,171 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15440 +#: guix-git/doc/guix.texi:15797 msgid "When booting or upon completion of @command{guix system reconfigure}, the system ensures that only the user accounts and groups specified in the @code{operating-system} declaration exist, and with the specified properties. Thus, account or group creations or modifications made by directly invoking commands such as @command{useradd} are lost upon reconfiguration or reboot. This ensures that the system remains exactly as declared." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15441 +#: guix-git/doc/guix.texi:15798 #, no-wrap msgid "{Data Type} user-account" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15444 +#: guix-git/doc/guix.texi:15801 msgid "Objects of this type represent user accounts. The following members may be specified:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15448 +#: guix-git/doc/guix.texi:15805 msgid "The name of the user account." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:15449 guix-git/doc/guix.texi:34298 +#: guix-git/doc/guix.texi:15806 guix-git/doc/guix.texi:34737 #, no-wrap msgid "group" msgstr "grupo" #. type: cindex -#: guix-git/doc/guix.texi:15450 guix-git/doc/guix.texi:15534 +#: guix-git/doc/guix.texi:15807 guix-git/doc/guix.texi:15891 #, no-wrap msgid "groups" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15453 +#: guix-git/doc/guix.texi:15810 msgid "This is the name (a string) or identifier (a number) of the user group this account belongs to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15454 +#: guix-git/doc/guix.texi:15811 #, no-wrap msgid "@code{supplementary-groups} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15457 +#: guix-git/doc/guix.texi:15814 msgid "Optionally, this can be defined as a list of group names that this account belongs to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15458 +#: guix-git/doc/guix.texi:15815 #, no-wrap msgid "@code{uid} (default: @code{#f})" msgstr "@code{uid} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:15462 +#: guix-git/doc/guix.texi:15819 msgid "This is the user ID for this account (a number), or @code{#f}. In the latter case, a number is automatically chosen by the system when the account is created." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15463 guix-git/doc/guix.texi:18217 +#: guix-git/doc/guix.texi:15820 guix-git/doc/guix.texi:18579 #, no-wrap msgid "@code{comment} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15465 +#: guix-git/doc/guix.texi:15822 msgid "A comment about the account, such as the account owner's full name." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15470 +#: guix-git/doc/guix.texi:15827 msgid "Note that, for non-system accounts, users are free to change their real name as it appears in @file{/etc/passwd} using the @command{chfn} command. When they do, their choice prevails over the system administrator's choice; reconfiguring does @emph{not} change their name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:15471 +#: guix-git/doc/guix.texi:15828 #, no-wrap msgid "home-directory" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15473 +#: guix-git/doc/guix.texi:15830 msgid "This is the name of the home directory for the account." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15474 +#: guix-git/doc/guix.texi:15831 #, no-wrap msgid "@code{create-home-directory?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15477 +#: guix-git/doc/guix.texi:15834 msgid "Indicates whether the home directory of this account should be created if it does not exist yet." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15478 +#: guix-git/doc/guix.texi:15835 #, no-wrap msgid "@code{shell} (default: Bash)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15482 +#: guix-git/doc/guix.texi:15839 msgid "This is a G-expression denoting the file name of a program to be used as the shell (@pxref{G-Expressions}). For example, you would refer to the Bash executable like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15485 +#: guix-git/doc/guix.texi:15842 #, no-wrap msgid "(file-append bash \"/bin/bash\")\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15489 +#: guix-git/doc/guix.texi:15846 msgid "... and to the Zsh executable like that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15492 +#: guix-git/doc/guix.texi:15849 #, no-wrap msgid "(file-append zsh \"/bin/zsh\")\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:15494 guix-git/doc/guix.texi:15552 +#: guix-git/doc/guix.texi:15851 guix-git/doc/guix.texi:15909 #, no-wrap msgid "@code{system?} (default: @code{#f})" msgstr "@code{system?} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:15498 +#: guix-git/doc/guix.texi:15855 msgid "This Boolean value indicates whether the account is a ``system'' account. System accounts are sometimes treated specially; for instance, graphical login managers do not list them." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:15500 +#: guix-git/doc/guix.texi:15857 msgid "user-account-password" msgstr "user-account-password" #. type: cindex -#: guix-git/doc/guix.texi:15500 +#: guix-git/doc/guix.texi:15857 #, no-wrap msgid "password, for user accounts" msgstr "" #. type: item -#: guix-git/doc/guix.texi:15501 guix-git/doc/guix.texi:15556 +#: guix-git/doc/guix.texi:15858 guix-git/doc/guix.texi:15913 #, no-wrap msgid "@code{password} (default: @code{#f})" msgstr "@code{password} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:15507 +#: guix-git/doc/guix.texi:15864 msgid "You would normally leave this field to @code{#f}, initialize user passwords as @code{root} with the @command{passwd} command, and then let users change it with @command{passwd}. Passwords set with @command{passwd} are of course preserved across reboot and reconfiguration." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15511 +#: guix-git/doc/guix.texi:15868 msgid "If you @emph{do} want to set an initial password for an account, then this field must contain the encrypted password, as a string. You can use the @code{crypt} procedure for this purpose:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15516 +#: guix-git/doc/guix.texi:15873 #, no-wrap msgid "" "(user-account\n" @@ -27071,7 +27699,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15519 +#: guix-git/doc/guix.texi:15876 #, no-wrap msgid "" " ;; Specify a SHA-512-hashed initial password.\n" @@ -27079,171 +27707,171 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:15525 +#: guix-git/doc/guix.texi:15882 msgid "The hash of this initial password will be available in a file in @file{/gnu/store}, readable by all the users, so this method must be used with care." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15530 +#: guix-git/doc/guix.texi:15887 msgid "@xref{Passphrase Storage,,, libc, The GNU C Library Reference Manual}, for more information on password encryption, and @ref{Encryption,,, guile, GNU Guile Reference Manual}, for information on Guile's @code{crypt} procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15536 +#: guix-git/doc/guix.texi:15893 msgid "User group declarations are even simpler:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15539 +#: guix-git/doc/guix.texi:15896 #, no-wrap msgid "(user-group (name \"students\"))\n" msgstr "(user-group (name \"students\"))\n" #. type: deftp -#: guix-git/doc/guix.texi:15541 +#: guix-git/doc/guix.texi:15898 #, no-wrap msgid "{Data Type} user-group" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15543 +#: guix-git/doc/guix.texi:15900 msgid "This type is for, well, user groups. There are just a few fields:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15547 +#: guix-git/doc/guix.texi:15904 msgid "The name of the group." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15548 guix-git/doc/guix.texi:30819 +#: guix-git/doc/guix.texi:15905 guix-git/doc/guix.texi:31184 #, no-wrap msgid "@code{id} (default: @code{#f})" msgstr "@code{id} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:15551 +#: guix-git/doc/guix.texi:15908 msgid "The group identifier (a number). If @code{#f}, a new number is automatically allocated when the group is created." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15555 +#: guix-git/doc/guix.texi:15912 msgid "This Boolean value indicates whether the group is a ``system'' group. System groups have low numerical IDs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15559 +#: guix-git/doc/guix.texi:15916 msgid "What, user groups can have a password? Well, apparently yes. Unless @code{#f}, this field specifies the password of the group." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15565 +#: guix-git/doc/guix.texi:15922 msgid "For convenience, a variable lists all the basic user groups one may expect:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15566 +#: guix-git/doc/guix.texi:15923 #, no-wrap msgid "{Scheme Variable} %base-groups" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15571 +#: guix-git/doc/guix.texi:15928 msgid "This is the list of basic user groups that users and/or packages expect to be present on the system. This includes groups such as ``root'', ``wheel'', and ``users'', as well as groups used to control access to specific devices such as ``audio'', ``disk'', and ``cdrom''." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15573 +#: guix-git/doc/guix.texi:15930 #, no-wrap msgid "{Scheme Variable} %base-user-accounts" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15576 +#: guix-git/doc/guix.texi:15933 msgid "This is the list of basic system accounts that programs may expect to find on a GNU/Linux system, such as the ``nobody'' account." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15579 +#: guix-git/doc/guix.texi:15936 msgid "Note that the ``root'' account is not included here. It is a special-case and is automatically added whether or not it is specified." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15585 +#: guix-git/doc/guix.texi:15942 #, no-wrap msgid "keymap" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15593 +#: guix-git/doc/guix.texi:15950 msgid "To specify what each key of your keyboard does, you need to tell the operating system what @dfn{keyboard layout} you want to use. The default, when nothing is specified, is the US English QWERTY layout for 105-key PC keyboards. However, German speakers will usually prefer the German QWERTZ layout, French speakers will want the AZERTY layout, and so on; hackers might prefer Dvorak or bépo, and they might even want to further customize the effect of some of the keys. This section explains how to get that done." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15594 +#: guix-git/doc/guix.texi:15951 #, no-wrap msgid "keyboard layout, definition" msgstr "disposição do teclado, definição" #. type: Plain text -#: guix-git/doc/guix.texi:15596 +#: guix-git/doc/guix.texi:15953 msgid "There are three components that will want to know about your keyboard layout:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15603 +#: guix-git/doc/guix.texi:15960 msgid "The @emph{bootloader} may want to know what keyboard layout you want to use (@pxref{Bootloader Configuration, @code{keyboard-layout}}). This is useful if you want, for instance, to make sure that you can type the passphrase of your encrypted root partition using the right layout." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15608 +#: guix-git/doc/guix.texi:15965 msgid "The @emph{operating system kernel}, Linux, will need that so that the console is properly configured (@pxref{operating-system Reference, @code{keyboard-layout}})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15612 +#: guix-git/doc/guix.texi:15969 msgid "The @emph{graphical display server}, usually Xorg, also has its own idea of the keyboard layout (@pxref{X Window, @code{keyboard-layout}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15616 +#: guix-git/doc/guix.texi:15973 msgid "Guix allows you to configure all three separately but, fortunately, it allows you to share the same keyboard layout for all three components." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15617 +#: guix-git/doc/guix.texi:15974 #, no-wrap msgid "XKB, keyboard layouts" msgstr "XKB, disposições do teclado" #. type: Plain text -#: guix-git/doc/guix.texi:15625 +#: guix-git/doc/guix.texi:15982 msgid "Keyboard layouts are represented by records created by the @code{keyboard-layout} procedure of @code{(gnu system keyboard)}. Following the X Keyboard extension (XKB), each layout has four attributes: a name (often a language code such as ``fi'' for Finnish or ``jp'' for Japanese), an optional variant name, an optional keyboard model name, and a possibly empty list of additional options. In most cases the layout name is all you care about." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15626 +#: guix-git/doc/guix.texi:15983 #, no-wrap msgid "{Scheme Procedure} keyboard-layout @var{name} [@var{variant}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15629 +#: guix-git/doc/guix.texi:15986 msgid "[#:model] [#:options '()] Return a new keyboard layout with the given @var{name} and @var{variant}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15633 +#: guix-git/doc/guix.texi:15990 msgid "@var{name} must be a string such as @code{\"fr\"}; @var{variant} must be a string such as @code{\"bepo\"} or @code{\"nodeadkeys\"}. See the @code{xkeyboard-config} package for valid options." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15636 +#: guix-git/doc/guix.texi:15993 msgid "Here are a few examples:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15641 +#: guix-git/doc/guix.texi:15998 #, no-wrap msgid "" ";; The German QWERTZ layout. Here we assume a standard\n" @@ -27253,7 +27881,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15644 +#: guix-git/doc/guix.texi:16001 #, no-wrap msgid "" ";; The bépo variant of the French layout.\n" @@ -27262,7 +27890,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15647 +#: guix-git/doc/guix.texi:16004 #, no-wrap msgid "" ";; The Catalan layout.\n" @@ -27271,7 +27899,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15650 +#: guix-git/doc/guix.texi:16007 #, no-wrap msgid "" ";; Arabic layout with \"Alt-Shift\" to switch to US layout.\n" @@ -27280,7 +27908,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15657 +#: guix-git/doc/guix.texi:16014 #, no-wrap msgid "" ";; The Latin American Spanish layout. In addition, the\n" @@ -27293,7 +27921,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15660 +#: guix-git/doc/guix.texi:16017 #, no-wrap msgid "" ";; The Russian layout for a ThinkPad keyboard.\n" @@ -27302,7 +27930,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15665 +#: guix-git/doc/guix.texi:16022 #, no-wrap msgid "" ";; The \"US international\" layout, which is the US layout plus\n" @@ -27312,29 +27940,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15669 +#: guix-git/doc/guix.texi:16026 msgid "See the @file{share/X11/xkb} directory of the @code{xkeyboard-config} package for a complete list of supported layouts, variants, and models." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15670 +#: guix-git/doc/guix.texi:16027 #, no-wrap msgid "keyboard layout, configuration" msgstr "disposição do teclado, configuração" #. type: Plain text -#: guix-git/doc/guix.texi:15674 +#: guix-git/doc/guix.texi:16031 msgid "Let's say you want your system to use the Turkish keyboard layout throughout your system---bootloader, console, and Xorg. Here's what your system configuration would look like:" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:15675 +#: guix-git/doc/guix.texi:16032 #, no-wrap msgid "set-xorg-configuration" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15679 +#: guix-git/doc/guix.texi:16036 #, no-wrap msgid "" ";; Using the Turkish layout for the bootloader, the console,\n" @@ -27343,7 +27971,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15691 +#: guix-git/doc/guix.texi:16048 #, no-wrap msgid "" "(operating-system\n" @@ -27360,76 +27988,76 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15698 +#: guix-git/doc/guix.texi:16055 msgid "In the example above, for GRUB and for Xorg, we just refer to the @code{keyboard-layout} field defined above, but we could just as well refer to a different layout. The @code{set-xorg-configuration} procedure communicates the desired Xorg configuration to the graphical log-in manager, by default GDM." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15701 +#: guix-git/doc/guix.texi:16058 msgid "We've discussed how to specify the @emph{default} keyboard layout of your system when it starts, but you can also adjust it at run time:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15706 +#: guix-git/doc/guix.texi:16063 msgid "If you're using GNOME, its settings panel has a ``Region & Language'' entry where you can select one or more keyboard layouts." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15711 +#: guix-git/doc/guix.texi:16068 msgid "Under Xorg, the @command{setxkbmap} command (from the same-named package) allows you to change the current layout. For example, this is how you would change the layout to US Dvorak:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15714 +#: guix-git/doc/guix.texi:16071 #, no-wrap msgid "setxkbmap us dvorak\n" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15721 +#: guix-git/doc/guix.texi:16078 msgid "The @code{loadkeys} command changes the keyboard layout in effect in the Linux console. However, note that @code{loadkeys} does @emph{not} use the XKB keyboard layout categorization described above. The command below loads the French bépo layout:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15724 +#: guix-git/doc/guix.texi:16081 #, no-wrap msgid "loadkeys fr-bepo\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15730 +#: guix-git/doc/guix.texi:16087 #, no-wrap msgid "locale" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15737 +#: guix-git/doc/guix.texi:16094 msgid "A @dfn{locale} defines cultural conventions for a particular language and region of the world (@pxref{Locales,,, libc, The GNU C Library Reference Manual}). Each locale has a name that typically has the form @code{@var{language}_@var{territory}.@var{codeset}}---e.g., @code{fr_LU.utf8} designates the locale for the French language, with cultural conventions from Luxembourg, and using the UTF-8 encoding." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15738 +#: guix-git/doc/guix.texi:16095 #, no-wrap msgid "locale definition" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15742 +#: guix-git/doc/guix.texi:16099 msgid "Usually, you will want to specify the default locale for the machine using the @code{locale} field of the @code{operating-system} declaration (@pxref{operating-system Reference, @code{locale}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15751 +#: guix-git/doc/guix.texi:16108 msgid "The selected locale is automatically added to the @dfn{locale definitions} known to the system if needed, with its codeset inferred from its name---e.g., @code{bo_CN.utf8} will be assumed to use the @code{UTF-8} codeset. Additional locale definitions can be specified in the @code{locale-definitions} slot of @code{operating-system}---this is useful, for instance, if the codeset could not be inferred from the locale name. The default set of locale definitions includes some widely used locales, but not all the available locales, in order to save space." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15754 +#: guix-git/doc/guix.texi:16111 msgid "For instance, to add the North Frisian locale for Germany, the value of that field may be:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15759 +#: guix-git/doc/guix.texi:16116 #, no-wrap msgid "" "(cons (locale-definition\n" @@ -27438,12 +28066,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15763 +#: guix-git/doc/guix.texi:16120 msgid "Likewise, to save space, one might want @code{locale-definitions} to list only the locales that are actually used, as in:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15768 +#: guix-git/doc/guix.texi:16125 #, no-wrap msgid "" "(list (locale-definition\n" @@ -27452,114 +28080,114 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15777 +#: guix-git/doc/guix.texi:16134 msgid "The compiled locale definitions are available at @file{/run/current-system/locale/X.Y}, where @code{X.Y} is the libc version, which is the default location where the GNU@tie{}libc provided by Guix looks for locale data. This can be overridden using the @env{LOCPATH} environment variable (@pxref{locales-and-locpath, @env{LOCPATH} and locale packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15780 +#: guix-git/doc/guix.texi:16137 msgid "The @code{locale-definition} form is provided by the @code{(gnu system locale)} module. Details are given below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15781 +#: guix-git/doc/guix.texi:16138 #, no-wrap msgid "{Data Type} locale-definition" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15783 +#: guix-git/doc/guix.texi:16140 msgid "This is the data type of a locale definition." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15789 +#: guix-git/doc/guix.texi:16146 msgid "The name of the locale. @xref{Locale Names,,, libc, The GNU C Library Reference Manual}, for more information on locale names." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15793 +#: guix-git/doc/guix.texi:16150 msgid "The name of the source for that locale. This is typically the @code{@var{language}_@var{territory}} part of the locale name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15794 +#: guix-git/doc/guix.texi:16151 #, no-wrap msgid "@code{charset} (default: @code{\"UTF-8\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15798 +#: guix-git/doc/guix.texi:16155 msgid "The ``character set'' or ``code set'' for that locale, @uref{https://www.iana.org/assignments/character-sets, as defined by IANA}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15802 +#: guix-git/doc/guix.texi:16159 #, no-wrap msgid "{Scheme Variable} %default-locale-definitions" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15806 +#: guix-git/doc/guix.texi:16163 msgid "A list of commonly used UTF-8 locales, used as the default value of the @code{locale-definitions} field of @code{operating-system} declarations." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15807 +#: guix-git/doc/guix.texi:16164 #, no-wrap msgid "locale name" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15808 +#: guix-git/doc/guix.texi:16165 #, no-wrap msgid "normalized codeset in locale names" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15814 +#: guix-git/doc/guix.texi:16171 msgid "These locale definitions use the @dfn{normalized codeset} for the part that follows the dot in the name (@pxref{Using gettextized software, normalized codeset,, libc, The GNU C Library Reference Manual}). So for instance it has @code{uk_UA.utf8} but @emph{not}, say, @code{uk_UA.UTF-8}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:15816 +#: guix-git/doc/guix.texi:16173 #, no-wrap msgid "Locale Data Compatibility Considerations" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15818 +#: guix-git/doc/guix.texi:16175 #, no-wrap msgid "incompatibility, of locale data" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15825 +#: guix-git/doc/guix.texi:16182 msgid "@code{operating-system} declarations provide a @code{locale-libcs} field to specify the GNU@tie{}libc packages that are used to compile locale declarations (@pxref{operating-system Reference}). ``Why would I care?'', you may ask. Well, it turns out that the binary format of locale data is occasionally incompatible from one libc version to another." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15837 +#: guix-git/doc/guix.texi:16194 msgid "For instance, a program linked against libc version 2.21 is unable to read locale data produced with libc 2.22; worse, that program @emph{aborts} instead of simply ignoring the incompatible locale data@footnote{Versions 2.23 and later of GNU@tie{}libc will simply skip the incompatible locale data, which is already an improvement.}. Similarly, a program linked against libc 2.22 can read most, but not all, of the locale data from libc 2.21 (specifically, @env{LC_COLLATE} data is incompatible); thus calls to @code{setlocale} may fail, but programs will not abort." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15842 +#: guix-git/doc/guix.texi:16199 msgid "The ``problem'' with Guix is that users have a lot of freedom: They can choose whether and when to upgrade software in their profiles, and might be using a libc version different from the one the system administrator used to build the system-wide locale data." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15846 +#: guix-git/doc/guix.texi:16203 msgid "Fortunately, unprivileged users can also install their own locale data and define @env{GUIX_LOCPATH} accordingly (@pxref{locales-and-locpath, @env{GUIX_LOCPATH} and locale packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15853 +#: guix-git/doc/guix.texi:16210 msgid "Still, it is best if the system-wide locale data at @file{/run/current-system/locale} is built for all the libc versions actually in use on the system, so that all the programs can access it---this is especially crucial on a multi-user system. To do that, the administrator can specify several libc packages in the @code{locale-libcs} field of @code{operating-system}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15856 +#: guix-git/doc/guix.texi:16213 #, no-wrap msgid "" "(use-package-modules base)\n" @@ -27567,7 +28195,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15860 +#: guix-git/doc/guix.texi:16217 #, no-wrap msgid "" "(operating-system\n" @@ -27576,39 +28204,39 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15865 +#: guix-git/doc/guix.texi:16222 msgid "This example would lead to a system containing locale definitions for both libc 2.21 and the current version of libc in @file{/run/current-system/locale}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15870 +#: guix-git/doc/guix.texi:16227 #, no-wrap msgid "system services" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15876 +#: guix-git/doc/guix.texi:16233 msgid "An important part of preparing an @code{operating-system} declaration is listing @dfn{system services} and their configuration (@pxref{Using the Configuration System}). System services are typically daemons launched when the system boots, or other actions needed at that time---e.g., configuring network access." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15883 +#: guix-git/doc/guix.texi:16240 msgid "Guix has a broad definition of ``service'' (@pxref{Service Composition}), but many services are managed by the GNU@tie{}Shepherd (@pxref{Shepherd Services}). On a running system, the @command{herd} command allows you to list the available services, show their status, start and stop them, or do other specific operations (@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}). For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15886 +#: guix-git/doc/guix.texi:16243 #, no-wrap msgid "# herd status\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15891 +#: guix-git/doc/guix.texi:16248 msgid "The above command, run as @code{root}, lists the currently defined services. The @command{herd doc} command shows a synopsis of the given service and its associated actions:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15895 +#: guix-git/doc/guix.texi:16252 #, no-wrap msgid "" "# herd doc nscd\n" @@ -27617,7 +28245,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15898 +#: guix-git/doc/guix.texi:16255 #, no-wrap msgid "" "# herd doc nscd action invalidate\n" @@ -27625,12 +28253,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15903 +#: guix-git/doc/guix.texi:16260 msgid "The @command{start}, @command{stop}, and @command{restart} sub-commands have the effect you would expect. For instance, the commands below stop the nscd service and restart the Xorg display server:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15910 +#: guix-git/doc/guix.texi:16267 #, no-wrap msgid "" "# herd stop nscd\n" @@ -27641,45 +28269,45 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15915 +#: guix-git/doc/guix.texi:16272 msgid "The following sections document the available services, starting with the core services, that may be used in an @code{operating-system} declaration." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:15951 guix-git/doc/guix.texi:24198 -#: guix-git/doc/guix.texi:24199 +#: guix-git/doc/guix.texi:16308 guix-git/doc/guix.texi:24560 +#: guix-git/doc/guix.texi:24561 #, no-wrap msgid "File-Sharing Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:16308 msgid "File-sharing services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15959 +#: guix-git/doc/guix.texi:16316 msgid "The @code{(gnu services base)} module provides definitions for the basic services that one expects from the system. The services exported by this module are listed below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15960 +#: guix-git/doc/guix.texi:16317 #, no-wrap msgid "{Scheme Variable} %base-services" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15966 +#: guix-git/doc/guix.texi:16323 msgid "This variable contains a list of basic services (@pxref{Service Types and Services}, for more information on service objects) one would expect from the system: a login service (mingetty) on each tty, syslogd, the libc name service cache daemon (nscd), the udev device manager, and more." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15971 +#: guix-git/doc/guix.texi:16328 msgid "This is the default value of the @code{services} field of @code{operating-system} declarations. Usually, when customizing a system, you will want to append services to @code{%base-services}, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15976 +#: guix-git/doc/guix.texi:16333 #, no-wrap msgid "" "(append (list (service avahi-service-type)\n" @@ -27688,58 +28316,58 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15979 +#: guix-git/doc/guix.texi:16336 #, no-wrap msgid "{Scheme Variable} special-files-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15982 +#: guix-git/doc/guix.texi:16339 msgid "This is the service that sets up ``special files'' such as @file{/bin/sh}; an instance of it is part of @code{%base-services}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15986 +#: guix-git/doc/guix.texi:16343 msgid "The value associated with @code{special-files-service-type} services must be a list of tuples where the first element is the ``special file'' and the second element is its target. By default it is:" msgstr "" #. type: file{#1} -#: guix-git/doc/guix.texi:15987 +#: guix-git/doc/guix.texi:16344 #, no-wrap msgid "/bin/sh" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15988 +#: guix-git/doc/guix.texi:16345 #, no-wrap msgid "@file{sh}, in @file{/bin}" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15991 +#: guix-git/doc/guix.texi:16348 #, no-wrap msgid "`((\"/bin/sh\" ,(file-append bash \"/bin/sh\")))\n" msgstr "" #. type: file{#1} -#: guix-git/doc/guix.texi:15993 +#: guix-git/doc/guix.texi:16350 #, no-wrap msgid "/usr/bin/env" msgstr "/usr/bin/env" #. type: cindex -#: guix-git/doc/guix.texi:15994 +#: guix-git/doc/guix.texi:16351 #, no-wrap msgid "@file{env}, in @file{/usr/bin}" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15997 +#: guix-git/doc/guix.texi:16354 msgid "If you want to add, say, @code{/usr/bin/env} to your system, you can change it to:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16001 +#: guix-git/doc/guix.texi:16358 #, no-wrap msgid "" "`((\"/bin/sh\" ,(file-append bash \"/bin/sh\"))\n" @@ -27747,28 +28375,28 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16008 +#: guix-git/doc/guix.texi:16365 msgid "Since this is part of @code{%base-services}, you can use @code{modify-services} to customize the set of special files (@pxref{Service Reference, @code{modify-services}}). But the simple way to add a special file is @i{via} the @code{extra-special-file} procedure (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16010 +#: guix-git/doc/guix.texi:16367 #, no-wrap msgid "{Scheme Procedure} extra-special-file @var{file} @var{target}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16012 +#: guix-git/doc/guix.texi:16369 msgid "Use @var{target} as the ``special file'' @var{file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16016 +#: guix-git/doc/guix.texi:16373 msgid "For example, adding the following lines to the @code{services} field of your operating system declaration leads to a @file{/usr/bin/env} symlink:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16020 +#: guix-git/doc/guix.texi:16377 #, no-wrap msgid "" "(extra-special-file \"/usr/bin/env\"\n" @@ -27776,29 +28404,29 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16023 +#: guix-git/doc/guix.texi:16380 #, no-wrap msgid "{Scheme Procedure} host-name-service @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16025 +#: guix-git/doc/guix.texi:16382 msgid "Return a service that sets the host name to @var{name}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16027 +#: guix-git/doc/guix.texi:16384 #, no-wrap msgid "{Scheme Variable} console-font-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16032 +#: guix-git/doc/guix.texi:16389 msgid "Install the given fonts on the specified ttys (fonts are per virtual console on the kernel Linux). The value of this service is a list of tty/font pairs. The font can be the name of a font provided by the @code{kbd} package or any valid argument to @command{setfont}, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16041 +#: guix-git/doc/guix.texi:16398 #, no-wrap msgid "" "`((\"tty1\" . \"LatGrkCyr-8x16\")\n" @@ -27811,1109 +28439,1109 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16044 +#: guix-git/doc/guix.texi:16401 #, no-wrap msgid "{Scheme Procedure} login-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16048 +#: guix-git/doc/guix.texi:16405 msgid "Return a service to run login according to @var{config}, a @code{} object, which specifies the message of the day, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16050 +#: guix-git/doc/guix.texi:16407 #, no-wrap msgid "{Data Type} login-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16052 +#: guix-git/doc/guix.texi:16409 msgid "This is the data type representing the configuration of login." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16055 +#: guix-git/doc/guix.texi:16412 #, no-wrap msgid "motd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16056 +#: guix-git/doc/guix.texi:16413 #, no-wrap msgid "message of the day" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16058 +#: guix-git/doc/guix.texi:16415 msgid "A file-like object containing the ``message of the day''." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16059 guix-git/doc/guix.texi:19280 +#: guix-git/doc/guix.texi:16416 guix-git/doc/guix.texi:19642 #, no-wrap msgid "@code{allow-empty-passwords?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16062 +#: guix-git/doc/guix.texi:16419 msgid "Allow empty passwords by default so that first-time users can log in when the 'root' account has just been created." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16066 +#: guix-git/doc/guix.texi:16423 #, no-wrap msgid "{Scheme Procedure} mingetty-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16070 +#: guix-git/doc/guix.texi:16427 msgid "Return a service to run mingetty according to @var{config}, a @code{} object, which specifies the tty to run, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16072 +#: guix-git/doc/guix.texi:16429 #, no-wrap msgid "{Data Type} mingetty-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16075 +#: guix-git/doc/guix.texi:16432 msgid "This is the data type representing the configuration of Mingetty, which provides the default implementation of virtual console log-in." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16078 guix-git/doc/guix.texi:16117 -#: guix-git/doc/guix.texi:33550 +#: guix-git/doc/guix.texi:16435 guix-git/doc/guix.texi:16474 +#: guix-git/doc/guix.texi:33987 #, no-wrap msgid "tty" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16080 +#: guix-git/doc/guix.texi:16437 msgid "The name of the console this Mingetty runs on---e.g., @code{\"tty1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16081 guix-git/doc/guix.texi:16146 -#: guix-git/doc/guix.texi:16305 +#: guix-git/doc/guix.texi:16438 guix-git/doc/guix.texi:16503 +#: guix-git/doc/guix.texi:16662 #, no-wrap msgid "@code{auto-login} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16085 +#: guix-git/doc/guix.texi:16442 msgid "When true, this field must be a string denoting the user name under which the system automatically logs in. When it is @code{#f}, a user name and password must be entered to log in." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16086 +#: guix-git/doc/guix.texi:16443 #, no-wrap msgid "@code{login-program} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16090 +#: guix-git/doc/guix.texi:16447 msgid "This must be either @code{#f}, in which case the default log-in program is used (@command{login} from the Shadow tool suite), or a gexp denoting the name of the log-in program." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16091 +#: guix-git/doc/guix.texi:16448 #, no-wrap msgid "@code{login-pause?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16094 +#: guix-git/doc/guix.texi:16451 msgid "When set to @code{#t} in conjunction with @var{auto-login}, the user will have to press a key before the log-in shell is launched." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16095 +#: guix-git/doc/guix.texi:16452 #, no-wrap msgid "@code{clear-on-logout?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16097 +#: guix-git/doc/guix.texi:16454 msgid "When set to @code{#t}, the screen will be cleared after logout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16098 +#: guix-git/doc/guix.texi:16455 #, no-wrap msgid "@code{mingetty} (default: @var{mingetty})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16100 +#: guix-git/doc/guix.texi:16457 msgid "The Mingetty package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16104 +#: guix-git/doc/guix.texi:16461 #, no-wrap msgid "{Scheme Procedure} agetty-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16108 +#: guix-git/doc/guix.texi:16465 msgid "Return a service to run agetty according to @var{config}, an @code{} object, which specifies the tty to run, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16110 +#: guix-git/doc/guix.texi:16467 #, no-wrap msgid "{Data Type} agetty-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16114 +#: guix-git/doc/guix.texi:16471 msgid "This is the data type representing the configuration of agetty, which implements virtual and serial console log-in. See the @code{agetty(8)} man page for more information." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16121 +#: guix-git/doc/guix.texi:16478 msgid "The name of the console this agetty runs on, as a string---e.g., @code{\"ttyS0\"}. This argument is optional, it will default to a reasonable default serial port used by the kernel Linux." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16125 +#: guix-git/doc/guix.texi:16482 msgid "For this, if there is a value for an option @code{agetty.tty} in the kernel command line, agetty will extract the device name of the serial port from it and use that." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16129 +#: guix-git/doc/guix.texi:16486 msgid "If not and if there is a value for an option @code{console} with a tty in the Linux command line, agetty will extract the device name of the serial port from it and use that." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16133 +#: guix-git/doc/guix.texi:16490 msgid "In both cases, agetty will leave the other serial device settings (baud rate etc.)@: alone---in the hope that Linux pinned them to the correct values." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16134 guix-git/doc/guix.texi:33711 +#: guix-git/doc/guix.texi:16491 guix-git/doc/guix.texi:34148 #, no-wrap msgid "@code{baud-rate} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16137 +#: guix-git/doc/guix.texi:16494 msgid "A string containing a comma-separated list of one or more baud rates, in descending order." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16138 +#: guix-git/doc/guix.texi:16495 #, no-wrap msgid "@code{term} (default: @code{#f})" msgstr "@code{term} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16141 +#: guix-git/doc/guix.texi:16498 msgid "A string containing the value used for the @env{TERM} environment variable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16142 +#: guix-git/doc/guix.texi:16499 #, no-wrap msgid "@code{eight-bits?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16145 +#: guix-git/doc/guix.texi:16502 msgid "When @code{#t}, the tty is assumed to be 8-bit clean, and parity detection is disabled." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16149 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:16506 guix-git/doc/guix.texi:16665 msgid "When passed a login name, as a string, the specified user will be logged in automatically without prompting for their login name or password." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16150 +#: guix-git/doc/guix.texi:16507 #, no-wrap msgid "@code{no-reset?} (default: @code{#f})" msgstr "@code{no-reset?} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16152 +#: guix-git/doc/guix.texi:16509 msgid "When @code{#t}, don't reset terminal cflags (control modes)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16153 +#: guix-git/doc/guix.texi:16510 #, no-wrap msgid "@code{host} (default: @code{#f})" msgstr "@code{host} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16156 +#: guix-git/doc/guix.texi:16513 msgid "This accepts a string containing the ``login_host'', which will be written into the @file{/var/run/utmpx} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16157 +#: guix-git/doc/guix.texi:16514 #, no-wrap msgid "@code{remote?} (default: @code{#f})" msgstr "@code{remote?} (padrão: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16161 +#: guix-git/doc/guix.texi:16518 msgid "When set to @code{#t} in conjunction with @var{host}, this will add an @code{-r} fakehost option to the command line of the login program specified in @var{login-program}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16162 +#: guix-git/doc/guix.texi:16519 #, no-wrap msgid "@code{flow-control?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16164 +#: guix-git/doc/guix.texi:16521 msgid "When set to @code{#t}, enable hardware (RTS/CTS) flow control." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16165 +#: guix-git/doc/guix.texi:16522 #, no-wrap msgid "@code{no-issue?} (default: @code{#f})" msgstr "@code{no-issue?} (padrão: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16168 +#: guix-git/doc/guix.texi:16525 msgid "When set to @code{#t}, the contents of the @file{/etc/issue} file will not be displayed before presenting the login prompt." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16169 +#: guix-git/doc/guix.texi:16526 #, no-wrap msgid "@code{init-string} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16172 +#: guix-git/doc/guix.texi:16529 msgid "This accepts a string that will be sent to the tty or modem before sending anything else. It can be used to initialize a modem." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16173 +#: guix-git/doc/guix.texi:16530 #, no-wrap msgid "@code{no-clear?} (default: @code{#f})" msgstr "@code{no-clear?} (padrão: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16176 +#: guix-git/doc/guix.texi:16533 msgid "When set to @code{#t}, agetty will not clear the screen before showing the login prompt." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16177 +#: guix-git/doc/guix.texi:16534 #, no-wrap msgid "@code{login-program} (default: (file-append shadow \"/bin/login\"))" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16181 +#: guix-git/doc/guix.texi:16538 msgid "This must be either a gexp denoting the name of a log-in program, or unset, in which case the default value is the @command{login} from the Shadow tool suite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16182 +#: guix-git/doc/guix.texi:16539 #, no-wrap msgid "@code{local-line} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16186 +#: guix-git/doc/guix.texi:16543 msgid "Control the CLOCAL line flag. This accepts one of three symbols as arguments, @code{'auto}, @code{'always}, or @code{'never}. If @code{#f}, the default value chosen by agetty is @code{'auto}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16187 +#: guix-git/doc/guix.texi:16544 #, no-wrap msgid "@code{extract-baud?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16190 +#: guix-git/doc/guix.texi:16547 msgid "When set to @code{#t}, instruct agetty to try to extract the baud rate from the status messages produced by certain types of modems." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16191 +#: guix-git/doc/guix.texi:16548 #, no-wrap msgid "@code{skip-login?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16195 +#: guix-git/doc/guix.texi:16552 msgid "When set to @code{#t}, do not prompt the user for a login name. This can be used with @var{login-program} field to use non-standard login systems." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16196 +#: guix-git/doc/guix.texi:16553 #, no-wrap msgid "@code{no-newline?} (default: @code{#f})" msgstr "@code{no-newline?} (padrão: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16199 +#: guix-git/doc/guix.texi:16556 msgid "When set to @code{#t}, do not print a newline before printing the @file{/etc/issue} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16201 +#: guix-git/doc/guix.texi:16558 #, no-wrap msgid "@code{login-options} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16206 +#: guix-git/doc/guix.texi:16563 msgid "This option accepts a string containing options that are passed to the login program. When used with the @var{login-program}, be aware that a malicious user could try to enter a login name containing embedded options that could be parsed by the login program." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16207 +#: guix-git/doc/guix.texi:16564 #, no-wrap msgid "@code{login-pause} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16211 +#: guix-git/doc/guix.texi:16568 msgid "When set to @code{#t}, wait for any key before showing the login prompt. This can be used in conjunction with @var{auto-login} to save memory by lazily spawning shells." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16212 +#: guix-git/doc/guix.texi:16569 #, no-wrap msgid "@code{chroot} (default: @code{#f})" msgstr "@code{chroot} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16215 +#: guix-git/doc/guix.texi:16572 msgid "Change root to the specified directory. This option accepts a directory path as a string." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16216 +#: guix-git/doc/guix.texi:16573 #, no-wrap msgid "@code{hangup?} (default: @code{#f})" msgstr "@code{hangup?} (padrão: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16219 +#: guix-git/doc/guix.texi:16576 msgid "Use the Linux system call @code{vhangup} to do a virtual hangup of the specified terminal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16220 +#: guix-git/doc/guix.texi:16577 #, no-wrap msgid "@code{keep-baud?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16224 +#: guix-git/doc/guix.texi:16581 msgid "When set to @code{#t}, try to keep the existing baud rate. The baud rates from @var{baud-rate} are used when agetty receives a @key{BREAK} character." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16225 +#: guix-git/doc/guix.texi:16582 #, no-wrap msgid "@code{timeout} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16228 +#: guix-git/doc/guix.texi:16585 msgid "When set to an integer value, terminate if no user name could be read within @var{timeout} seconds." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16229 +#: guix-git/doc/guix.texi:16586 #, no-wrap msgid "@code{detect-case?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16235 +#: guix-git/doc/guix.texi:16592 msgid "When set to @code{#t}, turn on support for detecting an uppercase-only terminal. This setting will detect a login name containing only uppercase letters as indicating an uppercase-only terminal and turn on some upper-to-lower case conversions. Note that this will not support Unicode characters." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16236 +#: guix-git/doc/guix.texi:16593 #, no-wrap msgid "@code{wait-cr?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16241 +#: guix-git/doc/guix.texi:16598 msgid "When set to @code{#t}, wait for the user or modem to send a carriage-return or linefeed character before displaying @file{/etc/issue} or login prompt. This is typically used with the @var{init-string} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16242 +#: guix-git/doc/guix.texi:16599 #, no-wrap msgid "@code{no-hints?} (default: @code{#f})" msgstr "@code{no-hints?} (padrão: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16245 +#: guix-git/doc/guix.texi:16602 msgid "When set to @code{#t}, do not print hints about Num, Caps, and Scroll locks." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16246 +#: guix-git/doc/guix.texi:16603 #, no-wrap msgid "@code{no-hostname?} (default: @code{#f})" msgstr "@code{no-hostname?} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16249 +#: guix-git/doc/guix.texi:16606 msgid "By default, the hostname is printed. When this option is set to @code{#t}, no hostname will be shown at all." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16250 +#: guix-git/doc/guix.texi:16607 #, no-wrap msgid "@code{long-hostname?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16254 +#: guix-git/doc/guix.texi:16611 msgid "By default, the hostname is only printed until the first dot. When this option is set to @code{#t}, the fully qualified hostname by @code{gethostname} or @code{getaddrinfo} is shown." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16255 +#: guix-git/doc/guix.texi:16612 #, no-wrap msgid "@code{erase-characters} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16258 +#: guix-git/doc/guix.texi:16615 msgid "This option accepts a string of additional characters that should be interpreted as backspace when the user types their login name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16259 +#: guix-git/doc/guix.texi:16616 #, no-wrap msgid "@code{kill-characters} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16263 +#: guix-git/doc/guix.texi:16620 msgid "This option accepts a string that should be interpreted to mean ``ignore all previous characters'' (also called a ``kill'' character) when the user types their login name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16264 +#: guix-git/doc/guix.texi:16621 #, no-wrap msgid "@code{chdir} (default: @code{#f})" msgstr "@code{chdir} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16267 +#: guix-git/doc/guix.texi:16624 msgid "This option accepts, as a string, a directory path that will be changed to before login." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16268 +#: guix-git/doc/guix.texi:16625 #, no-wrap msgid "@code{delay} (default: @code{#f})" msgstr "@code{delay} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16271 +#: guix-git/doc/guix.texi:16628 msgid "This options accepts, as an integer, the number of seconds to sleep before opening the tty and displaying the login prompt." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16272 +#: guix-git/doc/guix.texi:16629 #, no-wrap msgid "@code{nice} (default: @code{#f})" msgstr "@code{nice} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16275 +#: guix-git/doc/guix.texi:16632 msgid "This option accepts, as an integer, the nice value with which to run the @command{login} program." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16276 guix-git/doc/guix.texi:16564 -#: guix-git/doc/guix.texi:17478 guix-git/doc/guix.texi:25181 -#: guix-git/doc/guix.texi:26658 guix-git/doc/guix.texi:29074 -#: guix-git/doc/guix.texi:29869 guix-git/doc/guix.texi:31622 -#: guix-git/doc/guix.texi:34051 +#: guix-git/doc/guix.texi:16633 guix-git/doc/guix.texi:16921 +#: guix-git/doc/guix.texi:17840 guix-git/doc/guix.texi:25543 +#: guix-git/doc/guix.texi:26995 guix-git/doc/guix.texi:29411 +#: guix-git/doc/guix.texi:30234 guix-git/doc/guix.texi:31987 +#: guix-git/doc/guix.texi:34488 #, no-wrap msgid "@code{extra-options} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16279 +#: guix-git/doc/guix.texi:16636 msgid "This option provides an ``escape hatch'' for the user to provide arbitrary command-line arguments to @command{agetty} as a list of strings." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16283 +#: guix-git/doc/guix.texi:16640 #, no-wrap msgid "{Scheme Procedure} kmscon-service-type @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16287 +#: guix-git/doc/guix.texi:16644 msgid "Return a service to run @uref{https://www.freedesktop.org/wiki/Software/kmscon,kmscon} according to @var{config}, a @code{} object, which specifies the tty to run, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16289 +#: guix-git/doc/guix.texi:16646 #, no-wrap msgid "{Data Type} kmscon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16292 +#: guix-git/doc/guix.texi:16649 msgid "This is the data type representing the configuration of Kmscon, which implements virtual console log-in." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16295 +#: guix-git/doc/guix.texi:16652 #, no-wrap msgid "virtual-terminal" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16297 +#: guix-git/doc/guix.texi:16654 msgid "The name of the console this Kmscon runs on---e.g., @code{\"tty1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16298 +#: guix-git/doc/guix.texi:16655 #, no-wrap msgid "@code{login-program} (default: @code{#~(string-append #$shadow \"/bin/login\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16301 +#: guix-git/doc/guix.texi:16658 msgid "A gexp denoting the name of the log-in program. The default log-in program is @command{login} from the Shadow tool suite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16302 +#: guix-git/doc/guix.texi:16659 #, no-wrap msgid "@code{login-arguments} (default: @code{'(\"-p\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16304 +#: guix-git/doc/guix.texi:16661 msgid "A list of arguments to pass to @command{login}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16309 +#: guix-git/doc/guix.texi:16666 #, no-wrap msgid "@code{hardware-acceleration?} (default: #f)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16311 +#: guix-git/doc/guix.texi:16668 msgid "Whether to use hardware acceleration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16312 +#: guix-git/doc/guix.texi:16669 #, fuzzy, no-wrap msgid "@code{font-engine} (default: @code{\"pango\"})" msgstr "@code{no-newline?} (padrão: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16314 +#: guix-git/doc/guix.texi:16671 msgid "Font engine used in Kmscon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16315 +#: guix-git/doc/guix.texi:16672 #, fuzzy, no-wrap msgid "@code{font-size} (default: @code{12})" msgstr "@code{max-zone-size} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16317 +#: guix-git/doc/guix.texi:16674 msgid "Font size used in Kmscon." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16321 +#: guix-git/doc/guix.texi:16678 msgid "If this is @code{#f}, Kmscon uses the default keyboard layout---usually US English (``qwerty'') for a 105-key PC keyboard." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16325 +#: guix-git/doc/guix.texi:16682 msgid "Otherwise this must be a @code{keyboard-layout} object specifying the keyboard layout. @xref{Keyboard Layout}, for more information on how to specify the keyboard layout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16326 +#: guix-git/doc/guix.texi:16683 #, no-wrap msgid "@code{kmscon} (default: @var{kmscon})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16328 +#: guix-git/doc/guix.texi:16685 msgid "The Kmscon package to use." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16332 +#: guix-git/doc/guix.texi:16689 #, no-wrap msgid "name service cache daemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16333 +#: guix-git/doc/guix.texi:16690 #, no-wrap msgid "nscd" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16334 +#: guix-git/doc/guix.texi:16691 #, no-wrap msgid "{Scheme Procedure} nscd-service [@var{config}] [#:glibc glibc] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16339 +#: guix-git/doc/guix.texi:16696 msgid "[#:name-services '()] Return a service that runs the libc name service cache daemon (nscd) with the given @var{config}---an @code{} object. @xref{Name Service Switch}, for an example." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16341 +#: guix-git/doc/guix.texi:16698 msgid "For convenience, the Shepherd service for nscd provides the following actions:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16343 +#: guix-git/doc/guix.texi:16700 #, no-wrap msgid "invalidate" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16344 +#: guix-git/doc/guix.texi:16701 #, no-wrap msgid "cache invalidation, nscd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16345 +#: guix-git/doc/guix.texi:16702 #, no-wrap msgid "nscd, cache invalidation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16347 +#: guix-git/doc/guix.texi:16704 msgid "This invalidate the given cache. For instance, running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16350 +#: guix-git/doc/guix.texi:16707 #, no-wrap msgid "herd invalidate nscd hosts\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16354 +#: guix-git/doc/guix.texi:16711 msgid "invalidates the host name lookup cache of nscd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16355 +#: guix-git/doc/guix.texi:16712 #, no-wrap msgid "statistics" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16358 +#: guix-git/doc/guix.texi:16715 msgid "Running @command{herd statistics nscd} displays information about nscd usage and caches." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16362 +#: guix-git/doc/guix.texi:16719 #, no-wrap msgid "{Scheme Variable} %nscd-default-configuration" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16366 +#: guix-git/doc/guix.texi:16723 msgid "This is the default @code{} value (see below) used by @code{nscd-service}. It uses the caches defined by @code{%nscd-default-caches}; see below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16368 +#: guix-git/doc/guix.texi:16725 #, no-wrap msgid "{Data Type} nscd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16371 +#: guix-git/doc/guix.texi:16728 msgid "This is the data type representing the name service cache daemon (nscd) configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16374 +#: guix-git/doc/guix.texi:16731 #, no-wrap msgid "@code{name-services} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16377 +#: guix-git/doc/guix.texi:16734 msgid "List of packages denoting @dfn{name services} that must be visible to the nscd---e.g., @code{(list @var{nss-mdns})}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16378 +#: guix-git/doc/guix.texi:16735 #, no-wrap msgid "@code{glibc} (default: @var{glibc})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16381 +#: guix-git/doc/guix.texi:16738 msgid "Package object denoting the GNU C Library providing the @command{nscd} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16382 +#: guix-git/doc/guix.texi:16739 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/nscd.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16385 +#: guix-git/doc/guix.texi:16742 msgid "Name of the nscd log file. This is where debugging output goes when @code{debug-level} is strictly positive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16386 +#: guix-git/doc/guix.texi:16743 #, no-wrap msgid "@code{debug-level} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16389 +#: guix-git/doc/guix.texi:16746 msgid "Integer denoting the debugging levels. Higher numbers mean that more debugging output is logged." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16390 +#: guix-git/doc/guix.texi:16747 #, no-wrap msgid "@code{caches} (default: @code{%nscd-default-caches})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16393 +#: guix-git/doc/guix.texi:16750 msgid "List of @code{} objects denoting things to be cached; see below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16397 +#: guix-git/doc/guix.texi:16754 #, no-wrap msgid "{Data Type} nscd-cache" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16399 +#: guix-git/doc/guix.texi:16756 msgid "Data type representing a cache database of nscd and its parameters." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16402 guix-git/doc/guix.texi:21071 +#: guix-git/doc/guix.texi:16759 guix-git/doc/guix.texi:21433 #, no-wrap msgid "database" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16407 +#: guix-git/doc/guix.texi:16764 msgid "This is a symbol representing the name of the database to be cached. Valid values are @code{passwd}, @code{group}, @code{hosts}, and @code{services}, which designate the corresponding NSS database (@pxref{NSS Basics,,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16408 +#: guix-git/doc/guix.texi:16765 #, no-wrap msgid "positive-time-to-live" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:16409 +#: guix-git/doc/guix.texi:16766 #, no-wrap msgid "@code{negative-time-to-live} (default: @code{20})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16412 +#: guix-git/doc/guix.texi:16769 msgid "A number representing the number of seconds during which a positive or negative lookup result remains in cache." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16413 +#: guix-git/doc/guix.texi:16770 #, no-wrap msgid "@code{check-files?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16416 +#: guix-git/doc/guix.texi:16773 msgid "Whether to check for updates of the files corresponding to @var{database}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16420 +#: guix-git/doc/guix.texi:16777 msgid "For instance, when @var{database} is @code{hosts}, setting this flag instructs nscd to check for updates in @file{/etc/hosts} and to take them into account." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16421 +#: guix-git/doc/guix.texi:16778 #, no-wrap msgid "@code{persistent?} (default: @code{#t})" msgstr "@code{persistent?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:16423 +#: guix-git/doc/guix.texi:16780 msgid "Whether the cache should be stored persistently on disk." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16424 +#: guix-git/doc/guix.texi:16781 #, no-wrap msgid "@code{shared?} (default: @code{#t})" msgstr "@code{shared?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:16426 +#: guix-git/doc/guix.texi:16783 msgid "Whether the cache should be shared among users." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16427 +#: guix-git/doc/guix.texi:16784 #, no-wrap msgid "@code{max-database-size} (default: 32@tie{}MiB)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16429 +#: guix-git/doc/guix.texi:16786 msgid "Maximum size in bytes of the database cache." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16436 +#: guix-git/doc/guix.texi:16793 #, no-wrap msgid "{Scheme Variable} %nscd-default-caches" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16439 +#: guix-git/doc/guix.texi:16796 msgid "List of @code{} objects used by default by @code{nscd-configuration} (see above)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16445 +#: guix-git/doc/guix.texi:16802 msgid "It enables persistent and aggressive caching of service and host name lookups. The latter provides better host name lookup performance, resilience in the face of unreliable name servers, and also better privacy---often the result of host name lookups is in local cache, so external name servers do not even need to be queried." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16448 +#: guix-git/doc/guix.texi:16805 msgid "syslog-configuration-type" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16448 guix-git/doc/guix.texi:16464 +#: guix-git/doc/guix.texi:16805 guix-git/doc/guix.texi:16821 #, no-wrap msgid "syslog" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16449 guix-git/doc/guix.texi:17035 +#: guix-git/doc/guix.texi:16806 guix-git/doc/guix.texi:17397 #, no-wrap msgid "logging" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16450 +#: guix-git/doc/guix.texi:16807 #, no-wrap msgid "{Data Type} syslog-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16452 +#: guix-git/doc/guix.texi:16809 msgid "This data type represents the configuration of the syslog daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16454 +#: guix-git/doc/guix.texi:16811 #, no-wrap msgid "@code{syslogd} (default: @code{#~(string-append #$inetutils \"/libexec/syslogd\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16456 +#: guix-git/doc/guix.texi:16813 msgid "The syslog daemon to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16457 +#: guix-git/doc/guix.texi:16814 #, no-wrap msgid "@code{config-file} (default: @code{%default-syslog.conf})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16459 +#: guix-git/doc/guix.texi:16816 msgid "The syslog configuration file to use." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16464 +#: guix-git/doc/guix.texi:16821 msgid "syslog-service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16465 +#: guix-git/doc/guix.texi:16822 #, no-wrap msgid "{Scheme Procedure} syslog-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16467 +#: guix-git/doc/guix.texi:16824 msgid "Return a service that runs a syslog daemon according to @var{config}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16470 +#: guix-git/doc/guix.texi:16827 msgid "@xref{syslogd invocation,,, inetutils, GNU Inetutils}, for more information on the configuration file syntax." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16472 +#: guix-git/doc/guix.texi:16829 #, no-wrap msgid "{Scheme Variable} guix-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16476 +#: guix-git/doc/guix.texi:16833 msgid "This is the type of the service that runs the build daemon, @command{guix-daemon} (@pxref{Invoking guix-daemon}). Its value must be a @code{guix-configuration} record as described below." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16479 +#: guix-git/doc/guix.texi:16836 msgid "guix-configuration-type" msgstr "guix-configuration-type" #. type: deftp -#: guix-git/doc/guix.texi:16479 +#: guix-git/doc/guix.texi:16836 #, no-wrap msgid "{Data Type} guix-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16482 +#: guix-git/doc/guix.texi:16839 msgid "This data type represents the configuration of the Guix build daemon. @xref{Invoking guix-daemon}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16484 +#: guix-git/doc/guix.texi:16841 #, no-wrap msgid "@code{guix} (default: @var{guix})" msgstr "@code{guix} (default: @var{guix})" #. type: table -#: guix-git/doc/guix.texi:16486 guix-git/doc/guix.texi:16763 +#: guix-git/doc/guix.texi:16843 guix-git/doc/guix.texi:17120 msgid "The Guix package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16487 +#: guix-git/doc/guix.texi:16844 #, no-wrap msgid "@code{build-group} (default: @code{\"guixbuild\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16489 +#: guix-git/doc/guix.texi:16846 msgid "Name of the group for build user accounts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16490 +#: guix-git/doc/guix.texi:16847 #, no-wrap msgid "@code{build-accounts} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16492 +#: guix-git/doc/guix.texi:16849 msgid "Number of build user accounts to create." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16493 +#: guix-git/doc/guix.texi:16850 #, no-wrap msgid "@code{authorize-key?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16500 +#: guix-git/doc/guix.texi:16857 msgid "Whether to authorize the substitute keys listed in @code{authorized-keys}---by default that of @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} (@pxref{Substitutes})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16506 +#: guix-git/doc/guix.texi:16863 msgid "When @code{authorize-key?} is true, @file{/etc/guix/acl} cannot be changed by invoking @command{guix archive --authorize}. You must instead adjust @code{guix-configuration} as you wish and reconfigure the system. This ensures that your operating system configuration file is self-contained." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:16513 +#: guix-git/doc/guix.texi:16870 msgid "When booting or reconfiguring to a system where @code{authorize-key?} is true, the existing @file{/etc/guix/acl} file is backed up as @file{/etc/guix/acl.bak} if it was determined to be a manually modified file. This is to facilitate migration from earlier versions, which allowed for in-place modifications to @file{/etc/guix/acl}." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:16515 +#: guix-git/doc/guix.texi:16872 #, no-wrap msgid "%default-authorized-guix-keys" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16516 +#: guix-git/doc/guix.texi:16873 #, no-wrap msgid "@code{authorized-keys} (default: @code{%default-authorized-guix-keys})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16522 +#: guix-git/doc/guix.texi:16879 msgid "The list of authorized key files for archive imports, as a list of string-valued gexps (@pxref{Invoking guix archive}). By default, it contains that of @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} (@pxref{Substitutes}). See @code{substitute-urls} below for an example on how to change it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16523 +#: guix-git/doc/guix.texi:16880 #, no-wrap msgid "@code{use-substitutes?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16525 +#: guix-git/doc/guix.texi:16882 msgid "Whether to use substitutes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16526 guix-git/doc/guix.texi:29171 +#: guix-git/doc/guix.texi:16883 guix-git/doc/guix.texi:29508 #, no-wrap msgid "@code{substitute-urls} (default: @code{%default-substitute-urls})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16528 guix-git/doc/guix.texi:29173 +#: guix-git/doc/guix.texi:16885 guix-git/doc/guix.texi:29510 msgid "The list of URLs where to look for substitutes by default." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16535 +#: guix-git/doc/guix.texi:16892 msgid "Suppose you would like to fetch substitutes from @code{guix.example.org} in addition to @code{@value{SUBSTITUTE-SERVER-1}}. You will need to do two things: (1) add @code{guix.example.org} to @code{substitute-urls}, and (2) authorize its signing key, having done appropriate checks (@pxref{Substitute Server Authorization}). The configuration below does exactly that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16544 +#: guix-git/doc/guix.texi:16901 #, no-wrap msgid "" "(guix-configuration\n" @@ -28926,150 +29554,151 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16549 +#: guix-git/doc/guix.texi:16906 msgid "This example assumes that the file @file{./guix.example.org-key.pub} contains the public key that @code{guix.example.org} uses to sign substitutes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16550 +#: guix-git/doc/guix.texi:16907 #, no-wrap msgid "@code{max-silent-time} (default: @code{0})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:16551 +#: guix-git/doc/guix.texi:16908 #, no-wrap msgid "@code{timeout} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16555 +#: guix-git/doc/guix.texi:16912 msgid "The number of seconds of silence and the number of seconds of activity, respectively, after which a build process times out. A value of zero disables the timeout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16556 -#, no-wrap -msgid "@code{log-compression} (default: @code{'bzip2})" -msgstr "" +#: guix-git/doc/guix.texi:16913 +#, fuzzy, no-wrap +#| msgid "@code{compression-level} (default: @code{3})" +msgid "@code{log-compression} (default: @code{'gzip})" +msgstr "@code{compression-level} (padrão: @code{3})" #. type: table -#: guix-git/doc/guix.texi:16559 +#: guix-git/doc/guix.texi:16916 msgid "The type of compression used for build logs---one of @code{gzip}, @code{bzip2}, or @code{none}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16560 +#: guix-git/doc/guix.texi:16917 #, no-wrap msgid "@code{discover?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16566 +#: guix-git/doc/guix.texi:16923 msgid "List of extra command-line options for @command{guix-daemon}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16567 +#: guix-git/doc/guix.texi:16924 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/guix-daemon.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16570 +#: guix-git/doc/guix.texi:16927 msgid "File where @command{guix-daemon}'s standard output and standard error are written." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16571 +#: guix-git/doc/guix.texi:16928 #, no-wrap msgid "HTTP proxy, for @code{guix-daemon}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16572 +#: guix-git/doc/guix.texi:16929 #, no-wrap msgid "proxy, for @code{guix-daemon} HTTP access" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16573 +#: guix-git/doc/guix.texi:16930 #, no-wrap msgid "@code{http-proxy} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16576 +#: guix-git/doc/guix.texi:16933 msgid "The URL of the HTTP and HTTPS proxy used for downloading fixed-output derivations and substitutes." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16579 +#: guix-git/doc/guix.texi:16936 msgid "It is also possible to change the daemon's proxy at run time through the @code{set-http-proxy} action, which restarts it:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16582 +#: guix-git/doc/guix.texi:16939 #, no-wrap msgid "herd set-http-proxy guix-daemon http://localhost:8118\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16585 +#: guix-git/doc/guix.texi:16942 msgid "To clear the proxy settings, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16588 +#: guix-git/doc/guix.texi:16945 #, no-wrap msgid "herd set-http-proxy guix-daemon\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16590 +#: guix-git/doc/guix.texi:16947 #, no-wrap msgid "@code{tmpdir} (default: @code{#f})" msgstr "@code{tmpdir} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16592 +#: guix-git/doc/guix.texi:16949 msgid "A directory path where the @command{guix-daemon} will perform builds." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16596 +#: guix-git/doc/guix.texi:16953 #, no-wrap msgid "{Scheme Procedure} udev-service [#:udev @var{eudev} #:rules @code{'()}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16602 +#: guix-git/doc/guix.texi:16959 msgid "Run @var{udev}, which populates the @file{/dev} directory dynamically. udev rules can be provided as a list of files through the @var{rules} variable. The procedures @code{udev-rule}, @code{udev-rules-service} and @code{file->udev-rule} from @code{(gnu services base)} simplify the creation of such rule files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16605 +#: guix-git/doc/guix.texi:16962 msgid "The @command{herd rules udev} command, as root, returns the name of the directory containing all the active udev rules." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16607 +#: guix-git/doc/guix.texi:16964 #, no-wrap msgid "{Scheme Procedure} udev-rule [@var{file-name} @var{contents}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16610 +#: guix-git/doc/guix.texi:16967 msgid "Return a udev-rule file named @var{file-name} containing the rules defined by the @var{contents} literal." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16614 +#: guix-git/doc/guix.texi:16971 msgid "In the following example, a rule for a USB device is defined to be stored in the file @file{90-usb-thing.rules}. The rule runs a script upon detecting a USB device with a given product identifier." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16622 +#: guix-git/doc/guix.texi:16979 #, no-wrap msgid "" "(define %example-udev-rule\n" @@ -29081,23 +29710,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16625 +#: guix-git/doc/guix.texi:16982 #, no-wrap msgid "{Scheme Procedure} udev-rules-service [@var{name} @var{rules}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16632 +#: guix-git/doc/guix.texi:16989 msgid "[#:groups @var{groups}] Return a service that extends @code{udev-service-type } with @var{rules} and @code{account-service-type} with @var{groups} as system groups. This works by creating a singleton service type @code{@var{name}-udev-rules}, of which the returned service is an instance." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16635 +#: guix-git/doc/guix.texi:16992 msgid "Here we show how it can be used to extend @code{udev-service-type} with the previously defined rule @code{%example-udev-rule}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16642 +#: guix-git/doc/guix.texi:16999 #, no-wrap msgid "" "(operating-system\n" @@ -29108,23 +29737,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16645 +#: guix-git/doc/guix.texi:17002 #, no-wrap msgid "{Scheme Procedure} file->udev-rule [@var{file-name} @var{file}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16648 +#: guix-git/doc/guix.texi:17005 msgid "Return a udev file named @var{file-name} containing the rules defined within @var{file}, a file-like object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16650 +#: guix-git/doc/guix.texi:17007 msgid "The following example showcases how we can use an existing rule file." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16655 +#: guix-git/doc/guix.texi:17012 #, no-wrap msgid "" "(use-modules (guix download) ;for url-fetch\n" @@ -29134,7 +29763,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16666 +#: guix-git/doc/guix.texi:17023 #, no-wrap msgid "" "(define %android-udev-rules\n" @@ -29150,17 +29779,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16675 +#: guix-git/doc/guix.texi:17032 msgid "Additionally, Guix package definitions can be included in @var{rules} in order to extend the udev rules with the definitions found under their @file{lib/udev/rules.d} sub-directory. In lieu of the previous @var{file->udev-rule} example, we could have used the @var{android-udev-rules} package which exists in Guix in the @code{(gnu packages android)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16684 +#: guix-git/doc/guix.texi:17041 msgid "The following example shows how to use the @var{android-udev-rules} package so that the Android tool @command{adb} can detect devices without root privileges. It also details how to create the @code{adbusers} group, which is required for the proper functioning of the rules defined within the @code{android-udev-rules} package. To create such a group, we must define it both as part of the @code{supplementary-groups} of our @code{user-account} declaration, as well as in the @var{groups} of the @code{udev-rules-service} procedure." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16689 +#: guix-git/doc/guix.texi:17046 #, no-wrap msgid "" "(use-modules (gnu packages android) ;for android-udev-rules\n" @@ -29170,7 +29799,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16702 +#: guix-git/doc/guix.texi:17059 #, no-wrap msgid "" "(operating-system\n" @@ -29188,328 +29817,340 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16704 +#: guix-git/doc/guix.texi:17061 #, no-wrap msgid "{Scheme Variable} urandom-seed-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16709 +#: guix-git/doc/guix.texi:17066 msgid "Save some entropy in @code{%random-seed-file} to seed @file{/dev/urandom} when rebooting. It also tries to seed @file{/dev/urandom} from @file{/dev/hwrng} while booting, if @file{/dev/hwrng} exists and is readable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16711 +#: guix-git/doc/guix.texi:17068 #, no-wrap msgid "{Scheme Variable} %random-seed-file" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16715 +#: guix-git/doc/guix.texi:17072 msgid "This is the name of the file where some random bytes are saved by @var{urandom-seed-service} to seed @file{/dev/urandom} when rebooting. It defaults to @file{/var/lib/random-seed}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16717 +#: guix-git/doc/guix.texi:17074 #, no-wrap msgid "mouse" msgstr "mouse" #. type: cindex -#: guix-git/doc/guix.texi:16718 +#: guix-git/doc/guix.texi:17075 #, no-wrap msgid "gpm" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16719 +#: guix-git/doc/guix.texi:17076 #, no-wrap msgid "{Scheme Variable} gpm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16724 +#: guix-git/doc/guix.texi:17081 msgid "This is the type of the service that runs GPM, the @dfn{general-purpose mouse daemon}, which provides mouse support to the Linux console. GPM allows users to use the mouse in the console, notably to select, copy, and paste text." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16727 +#: guix-git/doc/guix.texi:17084 msgid "The value for services of this type must be a @code{gpm-configuration} (see below). This service is not part of @code{%base-services}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16729 +#: guix-git/doc/guix.texi:17086 #, no-wrap msgid "{Data Type} gpm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16731 +#: guix-git/doc/guix.texi:17088 msgid "Data type representing the configuration of GPM." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16733 +#: guix-git/doc/guix.texi:17090 #, no-wrap msgid "@code{options} (default: @code{%default-gpm-options})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16738 +#: guix-git/doc/guix.texi:17095 msgid "Command-line options passed to @command{gpm}. The default set of options instruct @command{gpm} to listen to mouse events on @file{/dev/input/mice}. @xref{Command Line,,, gpm, gpm manual}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16739 +#: guix-git/doc/guix.texi:17096 #, no-wrap msgid "@code{gpm} (default: @code{gpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16741 +#: guix-git/doc/guix.texi:17098 msgid "The GPM package to use." msgstr "O pacote GPM a ser usado." #. type: anchor{#1} -#: guix-git/doc/guix.texi:16746 +#: guix-git/doc/guix.texi:17103 msgid "guix-publish-service-type" msgstr "guix-publish-service-type" #. type: deffn -#: guix-git/doc/guix.texi:16746 +#: guix-git/doc/guix.texi:17103 #, no-wrap msgid "{Scheme Variable} guix-publish-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16750 +#: guix-git/doc/guix.texi:17107 msgid "This is the service type for @command{guix publish} (@pxref{Invoking guix publish}). Its value must be a @code{guix-publish-configuration} object, as described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16754 +#: guix-git/doc/guix.texi:17111 msgid "This assumes that @file{/etc/guix} already contains a signing key pair as created by @command{guix archive --generate-key} (@pxref{Invoking guix archive}). If that is not the case, the service will fail to start." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16756 +#: guix-git/doc/guix.texi:17113 #, no-wrap msgid "{Data Type} guix-publish-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16759 +#: guix-git/doc/guix.texi:17116 msgid "Data type representing the configuration of the @code{guix publish} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16761 +#: guix-git/doc/guix.texi:17118 #, no-wrap msgid "@code{guix} (default: @code{guix})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16764 guix-git/doc/guix.texi:31477 +#: guix-git/doc/guix.texi:17121 guix-git/doc/guix.texi:31842 #, no-wrap msgid "@code{port} (default: @code{80})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16766 +#: guix-git/doc/guix.texi:17123 msgid "The TCP port to listen for connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16767 guix-git/doc/guix.texi:29054 -#: guix-git/doc/guix.texi:32858 +#: guix-git/doc/guix.texi:17124 guix-git/doc/guix.texi:29391 +#: guix-git/doc/guix.texi:33223 #, no-wrap msgid "@code{host} (default: @code{\"localhost\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16770 +#: guix-git/doc/guix.texi:17127 msgid "The host (and thus, network interface) to listen to. Use @code{\"0.0.0.0\"} to listen on all the network interfaces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16771 +#: guix-git/doc/guix.texi:17128 #, no-wrap msgid "@code{advertise?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16774 +#: guix-git/doc/guix.texi:17131 msgid "When true, advertise the service on the local network @i{via} the DNS-SD protocol, using Avahi." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16778 +#: guix-git/doc/guix.texi:17135 msgid "This allows neighboring Guix devices with discovery on (see @code{guix-configuration} above) to discover this @command{guix publish} instance and to automatically download substitutes from it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16779 +#: guix-git/doc/guix.texi:17136 #, fuzzy, no-wrap msgid "@code{compression} (default: @code{'((\"gzip\" 3) (\"zstd\" 3))})" msgstr "@code{compression-level} (padrão: @code{3})" #. type: table -#: guix-git/doc/guix.texi:16783 +#: guix-git/doc/guix.texi:17140 msgid "This is a list of compression method/level tuple used when compressing substitutes. For example, to compress all substitutes with @emph{both} lzip at level 7 and gzip at level 9, write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16786 +#: guix-git/doc/guix.texi:17143 #, no-wrap msgid "'((\"lzip\" 7) (\"gzip\" 9))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16792 +#: guix-git/doc/guix.texi:17149 msgid "Level 9 achieves the best compression ratio at the expense of increased CPU usage, whereas level 1 achieves fast compression. @xref{Invoking guix publish}, for more information on the available compression methods and the tradeoffs involved." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16794 +#: guix-git/doc/guix.texi:17151 msgid "An empty list disables compression altogether." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16795 +#: guix-git/doc/guix.texi:17152 #, no-wrap msgid "@code{nar-path} (default: @code{\"nar\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16798 +#: guix-git/doc/guix.texi:17155 msgid "The URL path at which ``nars'' can be fetched. @xref{Invoking guix publish, @option{--nar-path}}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16799 +#: guix-git/doc/guix.texi:17156 #, no-wrap msgid "@code{cache} (default: @code{#f})" msgstr "@code{cache} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16805 +#: guix-git/doc/guix.texi:17162 msgid "When it is @code{#f}, disable caching and instead generate archives on demand. Otherwise, this should be the name of a directory---e.g., @code{\"/var/cache/guix/publish\"}---where @command{guix publish} caches archives and meta-data ready to be sent. @xref{Invoking guix publish, @option{--cache}}, for more information on the tradeoffs involved." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16806 +#: guix-git/doc/guix.texi:17163 #, no-wrap msgid "@code{workers} (default: @code{#f})" msgstr "@code{workers} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16810 +#: guix-git/doc/guix.texi:17167 msgid "When it is an integer, this is the number of worker threads used for caching; when @code{#f}, the number of processors is used. @xref{Invoking guix publish, @option{--workers}}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16811 +#: guix-git/doc/guix.texi:17168 #, no-wrap msgid "@code{cache-bypass-threshold} (default: 10 MiB)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16816 +#: guix-git/doc/guix.texi:17173 msgid "When @code{cache} is true, this is the maximum size in bytes of a store item for which @command{guix publish} may bypass its cache in case of a cache miss. @xref{Invoking guix publish, @option{--cache-bypass-threshold}}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16817 +#: guix-git/doc/guix.texi:17174 #, no-wrap msgid "@code{ttl} (default: @code{#f})" msgstr "@code{ttl} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:16821 +#: guix-git/doc/guix.texi:17178 msgid "When it is an integer, this denotes the @dfn{time-to-live} in seconds of the published archives. @xref{Invoking guix publish, @option{--ttl}}, for more information." msgstr "" +#. type: item +#: guix-git/doc/guix.texi:17179 +#, fuzzy, no-wrap +#| msgid "@code{ttl} (default: @code{#f})" +msgid "@code{negative-ttl} (default: @code{#f})" +msgstr "@code{ttl} (default: @code{#f})" + +#. type: table +#: guix-git/doc/guix.texi:17183 +msgid "When it is an integer, this denotes the @dfn{time-to-live} in seconds for the negative lookups. @xref{Invoking guix publish, @option{--negative-ttl}}, for more information." +msgstr "" + #. type: anchor{#1} -#: guix-git/doc/guix.texi:16825 +#: guix-git/doc/guix.texi:17187 msgid "rngd-service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16825 +#: guix-git/doc/guix.texi:17187 #, no-wrap msgid "{Scheme Procedure} rngd-service [#:rng-tools @var{rng-tools}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16830 +#: guix-git/doc/guix.texi:17192 msgid "[#:device \"/dev/hwrng\"] Return a service that runs the @command{rngd} program from @var{rng-tools} to add @var{device} to the kernel's entropy pool. The service will fail if @var{device} does not exist." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16833 +#: guix-git/doc/guix.texi:17195 msgid "pam-limits-service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16833 +#: guix-git/doc/guix.texi:17195 #, no-wrap msgid "session limits" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16834 +#: guix-git/doc/guix.texi:17196 #, no-wrap msgid "ulimit" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16835 +#: guix-git/doc/guix.texi:17197 #, no-wrap msgid "priority" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16836 +#: guix-git/doc/guix.texi:17198 #, no-wrap msgid "realtime" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16837 +#: guix-git/doc/guix.texi:17199 #, no-wrap msgid "jackd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16838 +#: guix-git/doc/guix.texi:17200 #, no-wrap msgid "nofile" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16839 +#: guix-git/doc/guix.texi:17201 #, no-wrap msgid "open file descriptors" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16840 +#: guix-git/doc/guix.texi:17202 #, no-wrap msgid "{Scheme Procedure} pam-limits-service [#:limits @code{'()}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16847 +#: guix-git/doc/guix.texi:17209 msgid "Return a service that installs a configuration file for the @uref{http://linux-pam.org/Linux-PAM-html/sag-pam_limits.html, @code{pam_limits} module}. The procedure optionally takes a list of @code{pam-limits-entry} values, which can be used to specify @code{ulimit} limits and @code{nice} priority limits to user sessions." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16850 +#: guix-git/doc/guix.texi:17212 msgid "The following limits definition sets two hard and soft limits for all login sessions of users in the @code{realtime} group:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16856 +#: guix-git/doc/guix.texi:17218 #, no-wrap msgid "" "(pam-limits-service\n" @@ -29519,17 +30160,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16862 +#: guix-git/doc/guix.texi:17224 msgid "The first entry increases the maximum realtime priority for non-privileged processes; the second entry lifts any restriction of the maximum address space that can be locked in memory. These settings are commonly used for real-time audio systems." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16865 +#: guix-git/doc/guix.texi:17227 msgid "Another useful example is raising the maximum number of open file descriptors that can be used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16870 +#: guix-git/doc/guix.texi:17232 #, no-wrap msgid "" "(pam-limits-service\n" @@ -29538,40 +30179,40 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16878 +#: guix-git/doc/guix.texi:17240 msgid "In the above example, the asterisk means the limit should apply to any user. It is important to ensure the chosen value doesn't exceed the maximum system value visible in the @file{/proc/sys/fs/file-max} file, else the users would be prevented from login in. For more information about the Pluggable Authentication Module (PAM) limits, refer to the @samp{pam_limits} man page from the @code{linux-pam} package." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16883 guix-git/doc/guix.texi:37407 +#: guix-git/doc/guix.texi:17245 guix-git/doc/guix.texi:37897 #, no-wrap msgid "cron" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16884 guix-git/doc/guix.texi:37408 +#: guix-git/doc/guix.texi:17246 guix-git/doc/guix.texi:37898 #, no-wrap msgid "mcron" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16885 guix-git/doc/guix.texi:37409 +#: guix-git/doc/guix.texi:17247 guix-git/doc/guix.texi:37899 #, no-wrap msgid "scheduling jobs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16892 +#: guix-git/doc/guix.texi:17254 msgid "The @code{(gnu services mcron)} module provides an interface to GNU@tie{}mcron, a daemon to run jobs at scheduled times (@pxref{Top,,, mcron, GNU@tie{}mcron}). GNU@tie{}mcron is similar to the traditional Unix @command{cron} daemon; the main difference is that it is implemented in Guile Scheme, which provides a lot of flexibility when specifying the scheduling of jobs and their actions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16900 +#: guix-git/doc/guix.texi:17262 msgid "The example below defines an operating system that runs the @command{updatedb} (@pxref{Invoking updatedb,,, find, Finding Files}) and the @command{guix gc} commands (@pxref{Invoking guix gc}) daily, as well as the @command{mkid} command on behalf of an unprivileged user (@pxref{mkid invocation,,, idutils, ID Database Utilities}). It uses gexps to introduce job definitions that are passed to mcron (@pxref{G-Expressions})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16904 +#: guix-git/doc/guix.texi:17266 #, no-wrap msgid "" "(use-modules (guix) (gnu) (gnu services mcron))\n" @@ -29580,7 +30221,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16914 +#: guix-git/doc/guix.texi:17276 #, no-wrap msgid "" "(define updatedb-job\n" @@ -29596,7 +30237,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16920 +#: guix-git/doc/guix.texi:17282 #, no-wrap msgid "" "(define garbage-collector-job\n" @@ -29608,7 +30249,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16927 +#: guix-git/doc/guix.texi:17289 #, no-wrap msgid "" "(define idutils-job\n" @@ -29621,7 +30262,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16930 +#: guix-git/doc/guix.texi:17292 #, no-wrap msgid "" "(operating-system\n" @@ -29630,7 +30271,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16940 +#: guix-git/doc/guix.texi:17302 #, no-wrap msgid "" " ;; %BASE-SERVICES already includes an instance of\n" @@ -29645,24 +30286,24 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:16942 +#: guix-git/doc/guix.texi:17304 #, fuzzy, no-wrap #| msgid "Top" msgid "Tip" msgstr "Top" #. type: quotation -#: guix-git/doc/guix.texi:16948 +#: guix-git/doc/guix.texi:17310 msgid "When providing the action of a job specification as a procedure, you should provide an explicit name for the job via the optional 3rd argument as done in the @code{updatedb-job} example above. Otherwise, the job would appear as ``Lambda function'' in the output of @command{herd schedule mcron}, which is not nearly descriptive enough!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16955 +#: guix-git/doc/guix.texi:17317 msgid "For more complex jobs defined in Scheme where you need control over the top level, for instance to introduce a @code{use-modules} form, you can move your code to a separate program using the @code{program-file} procedure of the @code{(guix gexp)} module (@pxref{G-Expressions}). The example below illustrates that." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16971 +#: guix-git/doc/guix.texi:17333 #, no-wrap msgid "" "(define %battery-alert-job\n" @@ -29683,7 +30324,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16973 +#: guix-git/doc/guix.texi:17335 #, no-wrap msgid "" " (define %min-level 20)\n" @@ -29691,7 +30332,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16984 +#: guix-git/doc/guix.texi:17346 #, no-wrap msgid "" " (setenv \"LC_ALL\" \"C\") ;ensure English output\n" @@ -29707,106 +30348,106 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16989 +#: guix-git/doc/guix.texi:17351 msgid "@xref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron}, for more information on mcron job specifications. Below is the reference of the mcron service." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16992 +#: guix-git/doc/guix.texi:17354 msgid "On a running system, you can use the @code{schedule} action of the service to visualize the mcron jobs that will be executed next:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16995 +#: guix-git/doc/guix.texi:17357 #, no-wrap msgid "# herd schedule mcron\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17000 +#: guix-git/doc/guix.texi:17362 msgid "The example above lists the next five tasks that will be executed, but you can also specify the number of tasks to display:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:17003 +#: guix-git/doc/guix.texi:17365 #, no-wrap msgid "# herd schedule mcron 10\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17005 +#: guix-git/doc/guix.texi:17367 #, no-wrap msgid "{Scheme Variable} mcron-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17008 +#: guix-git/doc/guix.texi:17370 msgid "This is the type of the @code{mcron} service, whose value is an @code{mcron-configuration} object." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17013 guix-git/doc/guix.texi:37428 +#: guix-git/doc/guix.texi:17375 guix-git/doc/guix.texi:37918 msgid "This service type can be the target of a service extension that provides additional job specifications (@pxref{Service Composition}). In other words, it is possible to define services that provide additional mcron jobs to run." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17015 +#: guix-git/doc/guix.texi:17377 #, no-wrap msgid "{Data Type} mcron-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17017 guix-git/doc/guix.texi:37432 +#: guix-git/doc/guix.texi:17379 guix-git/doc/guix.texi:37922 msgid "Data type representing the configuration of mcron." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17019 guix-git/doc/guix.texi:37434 +#: guix-git/doc/guix.texi:17381 guix-git/doc/guix.texi:37924 #, no-wrap msgid "@code{mcron} (default: @var{mcron})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17021 guix-git/doc/guix.texi:37436 +#: guix-git/doc/guix.texi:17383 guix-git/doc/guix.texi:37926 msgid "The mcron package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17022 guix-git/doc/guix.texi:17091 -#: guix-git/doc/guix.texi:37437 +#: guix-git/doc/guix.texi:17384 guix-git/doc/guix.texi:17453 +#: guix-git/doc/guix.texi:37927 #, no-wrap msgid "jobs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17026 guix-git/doc/guix.texi:37441 +#: guix-git/doc/guix.texi:17388 guix-git/doc/guix.texi:37931 msgid "This is a list of gexps (@pxref{G-Expressions}), where each gexp corresponds to an mcron job specification (@pxref{Syntax, mcron job specifications,, mcron, GNU@tie{}mcron})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17033 +#: guix-git/doc/guix.texi:17395 #, no-wrap msgid "rottlog" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17034 +#: guix-git/doc/guix.texi:17396 #, no-wrap msgid "log rotation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17041 +#: guix-git/doc/guix.texi:17403 msgid "Log files such as those found in @file{/var/log} tend to grow endlessly, so it's a good idea to @dfn{rotate} them once in a while---i.e., archive their contents in separate files, possibly compressed. The @code{(gnu services admin)} module provides an interface to GNU@tie{}Rot[t]log, a log rotation tool (@pxref{Top,,, rottlog, GNU Rot[t]log Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17047 +#: guix-git/doc/guix.texi:17409 msgid "This service is part of @code{%base-services}, and thus enabled by default, with the default settings, for commonly encountered log files. The example below shows how to extend it with an additional @dfn{rotation}, should you need to do that (usually, services that produce log files already take care of that):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17051 +#: guix-git/doc/guix.texi:17413 #, no-wrap msgid "" "(use-modules (guix) (gnu))\n" @@ -29815,7 +30456,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17055 +#: guix-git/doc/guix.texi:17417 #, no-wrap msgid "" "(define my-log-files\n" @@ -29825,7 +30466,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17064 +#: guix-git/doc/guix.texi:17426 #, no-wrap msgid "" "(operating-system\n" @@ -29839,93 +30480,93 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17066 +#: guix-git/doc/guix.texi:17428 #, no-wrap msgid "{Scheme Variable} rottlog-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17069 +#: guix-git/doc/guix.texi:17431 msgid "This is the type of the Rottlog service, whose value is a @code{rottlog-configuration} object." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17072 +#: guix-git/doc/guix.texi:17434 msgid "Other services can extend this one with new @code{log-rotation} objects (see below), thereby augmenting the set of files to be rotated." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17075 +#: guix-git/doc/guix.texi:17437 msgid "This service type can define mcron jobs (@pxref{Scheduled Job Execution}) to run the rottlog service." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17077 +#: guix-git/doc/guix.texi:17439 #, no-wrap msgid "{Data Type} rottlog-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17079 +#: guix-git/doc/guix.texi:17441 msgid "Data type representing the configuration of rottlog." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17081 +#: guix-git/doc/guix.texi:17443 #, no-wrap msgid "@code{rottlog} (default: @code{rottlog})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17083 +#: guix-git/doc/guix.texi:17445 msgid "The Rottlog package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17084 +#: guix-git/doc/guix.texi:17446 #, no-wrap msgid "@code{rc-file} (default: @code{(file-append rottlog \"/etc/rc\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17087 +#: guix-git/doc/guix.texi:17449 msgid "The Rottlog configuration file to use (@pxref{Mandatory RC Variables,,, rottlog, GNU Rot[t]log Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17088 +#: guix-git/doc/guix.texi:17450 #, no-wrap msgid "@code{rotations} (default: @code{%default-rotations})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17090 +#: guix-git/doc/guix.texi:17452 msgid "A list of @code{log-rotation} objects as defined below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17094 +#: guix-git/doc/guix.texi:17456 msgid "This is a list of gexps where each gexp corresponds to an mcron job specification (@pxref{Scheduled Job Execution})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17097 +#: guix-git/doc/guix.texi:17459 #, no-wrap msgid "{Data Type} log-rotation" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17099 +#: guix-git/doc/guix.texi:17461 msgid "Data type representing the rotation of a group of log files." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17103 +#: guix-git/doc/guix.texi:17465 msgid "Taking an example from the Rottlog manual (@pxref{Period Related File Examples,,, rottlog, GNU Rot[t]log Manual}), a log rotation might be defined like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17112 +#: guix-git/doc/guix.texi:17474 #, no-wrap msgid "" "(log-rotation\n" @@ -29938,121 +30579,115 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17115 +#: guix-git/doc/guix.texi:17477 msgid "The list of fields is as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17117 +#: guix-git/doc/guix.texi:17479 #, no-wrap msgid "@code{frequency} (default: @code{'weekly})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17119 +#: guix-git/doc/guix.texi:17481 msgid "The log rotation frequency, a symbol." msgstr "" -#. type: code{#1} -#: guix-git/doc/guix.texi:17120 -#, no-wrap -msgid "files" -msgstr "" - #. type: table -#: guix-git/doc/guix.texi:17122 +#: guix-git/doc/guix.texi:17484 msgid "The list of files or file glob patterns to rotate." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17123 +#: guix-git/doc/guix.texi:17485 #, no-wrap msgid "@code{options} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17126 +#: guix-git/doc/guix.texi:17488 msgid "The list of rottlog options for this rotation (@pxref{Configuration parameters,,, rottlog, GNU Rot[t]lg Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17127 +#: guix-git/doc/guix.texi:17489 #, no-wrap msgid "@code{post-rotate} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17129 +#: guix-git/doc/guix.texi:17491 msgid "Either @code{#f} or a gexp to execute once the rotation has completed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17132 +#: guix-git/doc/guix.texi:17494 #, no-wrap msgid "{Scheme Variable} %default-rotations" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17135 +#: guix-git/doc/guix.texi:17497 msgid "Specifies weekly rotation of @code{%rotated-files} and of @file{/var/log/guix-daemon.log}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17137 +#: guix-git/doc/guix.texi:17499 #, no-wrap msgid "{Scheme Variable} %rotated-files" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17141 +#: guix-git/doc/guix.texi:17503 msgid "The list of syslog-controlled files to be rotated. By default it is: @code{'(\"/var/log/messages\" \"/var/log/secure\" \"/var/log/debug\" \\ \"/var/log/maillog\")}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17154 +#: guix-git/doc/guix.texi:17516 msgid "The @code{(gnu services networking)} module provides services to configure network interfaces and set up networking on your machine. Those services provide different ways for you to set up your machine: by declaring a static network configuration, by running a Dynamic Host Configuration Protocol (DHCP) client, or by running daemons such as NetworkManager and Connman that automate the whole process, automatically adapt to connectivity changes, and provide a high-level user interface." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17160 +#: guix-git/doc/guix.texi:17522 msgid "On a laptop, NetworkManager and Connman are by far the most convenient options, which is why the default desktop services include NetworkManager (@pxref{Desktop Services, @code{%desktop-services}}). For a server, or for a virtual machine or a container, static network configuration or a simple DHCP client are often more appropriate." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17163 +#: guix-git/doc/guix.texi:17525 msgid "This section describes the various network setup services available, starting with static network configuration." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17164 +#: guix-git/doc/guix.texi:17526 #, no-wrap msgid "{Scheme Variable} static-networking-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17169 +#: guix-git/doc/guix.texi:17531 msgid "This is the type for statically-configured network interfaces. Its value must be a list of @code{static-networking} records. Each of them declares a set of @dfn{addresses}, @dfn{routes}, and @dfn{links}, as show below." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17170 +#: guix-git/doc/guix.texi:17532 #, no-wrap msgid "network interface controller (NIC)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17171 +#: guix-git/doc/guix.texi:17533 #, no-wrap msgid "NIC, networking interface controller" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17174 +#: guix-git/doc/guix.texi:17536 msgid "Here is the simplest configuration, with only one network interface controller (NIC) and only IPv4 connectivity:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17188 +#: guix-git/doc/guix.texi:17550 #, no-wrap msgid "" ";; Static networking for one NIC, IPv4-only.\n" @@ -30070,30 +30705,30 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17197 +#: guix-git/doc/guix.texi:17559 msgid "The snippet above can be added to the @code{services} field of your operating system configuration (@pxref{Using the Configuration System}). It will configure your machine to have 10.0.2.15 as its IP address, with a 24-bit netmask for the local network---meaning that any 10.0.2.@var{x} address is on the local area network (LAN). Traffic to addresses outside the local network is routed @i{via} 10.0.2.2. Host names are resolved by sending domain name system (DNS) queries to 10.0.2.3." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17199 +#: guix-git/doc/guix.texi:17561 #, fuzzy, no-wrap #| msgid "{Data Type} build-machine" msgid "{Data Type} static-networking" msgstr "build-machine {Data Type}" #. type: deftp -#: guix-git/doc/guix.texi:17201 +#: guix-git/doc/guix.texi:17563 #, fuzzy msgid "This is the data type representing a static network configuration." msgstr "Gerencie a configuração do sistema operacional." #. type: deftp -#: guix-git/doc/guix.texi:17205 +#: guix-git/doc/guix.texi:17567 msgid "As an example, here is how you would declare the configuration of a machine with a single network interface controller (NIC) available as @code{eno1}, and with one IPv4 and one IPv6 address:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17222 +#: guix-git/doc/guix.texi:17584 #, no-wrap msgid "" ";; Network configuration for one NIC, IPv4 + IPv6.\n" @@ -30114,12 +30749,12 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17228 +#: guix-git/doc/guix.texi:17590 msgid "If you are familiar with the @command{ip} command of the @uref{https://wiki.linuxfoundation.org/networking/iproute2, @code{iproute2} package} found on Linux-based systems, the declaration above is equivalent to typing:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:17234 +#: guix-git/doc/guix.texi:17596 #, no-wrap msgid "" "ip address add 10.0.2.15/24 dev eno1\n" @@ -30129,366 +30764,366 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17239 +#: guix-git/doc/guix.texi:17601 msgid "Run @command{man 8 ip} for more info. Venerable GNU/Linux users will certainly know how to do it with @command{ifconfig} and @command{route}, but we'll spare you that." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17241 +#: guix-git/doc/guix.texi:17603 msgid "The available fields of this data type are as follows:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17243 +#: guix-git/doc/guix.texi:17605 #, no-wrap msgid "addresses" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:17244 +#: guix-git/doc/guix.texi:17606 #, fuzzy, no-wrap #| msgid "@code{features} (default: @code{'()})" msgid "@code{links} (default: @code{'()})" msgstr "@code{features} (padrão: @code{'()})" #. type: itemx -#: guix-git/doc/guix.texi:17245 +#: guix-git/doc/guix.texi:17607 #, fuzzy, no-wrap #| msgid "@code{features} (default: @code{'()})" msgid "@code{routes} (default: @code{'()})" msgstr "@code{features} (padrão: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17248 +#: guix-git/doc/guix.texi:17610 msgid "The list of @code{network-address}, @code{network-link}, and @code{network-route} records for this network (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17249 +#: guix-git/doc/guix.texi:17611 #, fuzzy, no-wrap msgid "@code{name-servers} (default: @code{'()})" msgstr "@code{remote?} (padrão: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17252 +#: guix-git/doc/guix.texi:17614 msgid "The list of IP addresses (strings) of domain name servers. These IP addresses go to @file{/etc/resolv.conf}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17253 +#: guix-git/doc/guix.texi:17615 #, fuzzy, no-wrap #| msgid "@code{features} (default: @code{'()})" msgid "@code{provision} (default: @code{'(networking)})" msgstr "@code{features} (padrão: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17256 +#: guix-git/doc/guix.texi:17618 msgid "If true, this should be a list of symbols for the Shepherd service corresponding to this network configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17257 +#: guix-git/doc/guix.texi:17619 #, fuzzy, no-wrap #| msgid "@code{features} (default: @code{'()})" msgid "@code{requirement} (default @code{'()})" msgstr "@code{features} (padrão: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17259 +#: guix-git/doc/guix.texi:17621 msgid "The list of Shepherd services depended on." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17262 +#: guix-git/doc/guix.texi:17624 #, fuzzy, no-wrap msgid "{Data Type} network-address" msgstr "build-machine {Data Type}" #. type: deftp -#: guix-git/doc/guix.texi:17265 +#: guix-git/doc/guix.texi:17627 msgid "This is the data type representing the IP address of a network interface." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17270 +#: guix-git/doc/guix.texi:17632 msgid "The name of the network interface for this address---e.g., @code{\"eno1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17271 +#: guix-git/doc/guix.texi:17633 #, no-wrap msgid "value" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17275 +#: guix-git/doc/guix.texi:17637 msgid "The actual IP address and network mask, in @uref{https://en.wikipedia.org/wiki/CIDR#CIDR_notation, @acronym{CIDR, Classless Inter-Domain Routing} notation}, as a string." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17279 +#: guix-git/doc/guix.texi:17641 msgid "For example, @code{\"10.0.2.15/24\"} denotes IPv4 address 10.0.2.15 on a 24-bit sub-network---all 10.0.2.@var{x} addresses are on the same local network." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17280 +#: guix-git/doc/guix.texi:17642 #, no-wrap msgid "ipv6?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17283 +#: guix-git/doc/guix.texi:17645 msgid "Whether @code{value} denotes an IPv6 address. By default this is automatically determined." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17286 +#: guix-git/doc/guix.texi:17648 #, fuzzy, no-wrap #| msgid "{Data Type} build-machine" msgid "{Data Type} network-route" msgstr "build-machine {Data Type}" #. type: deftp -#: guix-git/doc/guix.texi:17288 +#: guix-git/doc/guix.texi:17650 msgid "This is the data type representing a network route." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17290 +#: guix-git/doc/guix.texi:17652 #, fuzzy, no-wrap #| msgid "deduplication" msgid "destination" msgstr "deduplicação" #. type: table -#: guix-git/doc/guix.texi:17293 +#: guix-git/doc/guix.texi:17655 msgid "The route destination (a string), either an IP address or @code{\"default\"} to denote the default route." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17294 +#: guix-git/doc/guix.texi:17656 #, fuzzy, no-wrap #| msgid "@code{chdir} (default: @code{#f})" msgid "@code{source} (default: @code{#f})" msgstr "@code{chdir} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17296 +#: guix-git/doc/guix.texi:17658 #, fuzzy #| msgid "The rottlog service." msgid "The route source." msgstr "O serviço rottlog." #. type: item -#: guix-git/doc/guix.texi:17297 guix-git/doc/guix.texi:34761 +#: guix-git/doc/guix.texi:17659 guix-git/doc/guix.texi:35200 #, no-wrap msgid "@code{device} (default: @code{#f})" msgstr "@code{device} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17299 +#: guix-git/doc/guix.texi:17661 msgid "The device used for this route---e.g., @code{\"eno2\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17300 +#: guix-git/doc/guix.texi:17662 #, fuzzy, no-wrap #| msgid "@code{ipv6?} (default: @code{#t})" msgid "@code{ipv6?} (default: auto)" msgstr "@code{ipv6?} (default: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:17303 +#: guix-git/doc/guix.texi:17665 msgid "Whether this is an IPv6 route. By default this is automatically determined based on @code{destination} or @code{gateway}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17304 +#: guix-git/doc/guix.texi:17666 #, fuzzy, no-wrap #| msgid "@code{delay} (default: @code{#f})" msgid "@code{gateway} (default: @code{#f})" msgstr "@code{delay} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17306 +#: guix-git/doc/guix.texi:17668 msgid "IP address (a string) through which traffic is routed." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17309 +#: guix-git/doc/guix.texi:17671 #, fuzzy, no-wrap #| msgid "{Data Type} build-machine" msgid "{Data Type} network-link" msgstr "build-machine {Data Type}" #. type: deftp -#: guix-git/doc/guix.texi:17312 +#: guix-git/doc/guix.texi:17674 msgid "Data type for a network link (@pxref{Link,,, guile-netlink, Guile-Netlink Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17316 +#: guix-git/doc/guix.texi:17678 msgid "The name of the link---e.g., @code{\"v0p0\"}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17319 +#: guix-git/doc/guix.texi:17681 msgid "A symbol denoting the type of the link---e.g., @code{'veth}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17320 +#: guix-git/doc/guix.texi:17682 #, no-wrap msgid "arguments" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17322 +#: guix-git/doc/guix.texi:17684 msgid "List of arguments for this type of link." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17325 +#: guix-git/doc/guix.texi:17687 #, no-wrap msgid "loopback device" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17326 +#: guix-git/doc/guix.texi:17688 #, fuzzy, no-wrap msgid "{Scheme Variable} %loopback-static-networking" msgstr "guix-publish-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17330 +#: guix-git/doc/guix.texi:17692 msgid "This is the @code{static-networking} record representing the ``loopback device'', @code{lo}, for IP addresses 127.0.0.1 and ::1, and providing the @code{loopback} Shepherd service." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17332 +#: guix-git/doc/guix.texi:17694 #, no-wrap msgid "networking, with QEMU" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17333 +#: guix-git/doc/guix.texi:17695 #, fuzzy, no-wrap #| msgid "Networking" msgid "QEMU, networking" msgstr "Rede" #. type: defvr -#: guix-git/doc/guix.texi:17334 +#: guix-git/doc/guix.texi:17696 #, fuzzy, no-wrap msgid "{Scheme Variable} %qemu-static-networking" msgstr "guix-publish-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17338 +#: guix-git/doc/guix.texi:17700 msgid "This is the @code{static-networking} record representing network setup when using QEMU's user-mode network stack on @code{eth0} (@pxref{Using the user mode network stack,,, QEMU, QEMU Documentation})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17340 +#: guix-git/doc/guix.texi:17702 #, no-wrap msgid "DHCP, networking service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17341 +#: guix-git/doc/guix.texi:17703 #, no-wrap msgid "{Scheme Variable} dhcp-client-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17345 +#: guix-git/doc/guix.texi:17707 msgid "This is the type of services that run @var{dhcp}, a Dynamic Host Configuration Protocol (DHCP) client, on all the non-loopback network interfaces. Its value is the DHCP client package to use, @code{isc-dhcp} by default." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17347 +#: guix-git/doc/guix.texi:17709 #, no-wrap msgid "NetworkManager" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17349 +#: guix-git/doc/guix.texi:17711 #, no-wrap msgid "{Scheme Variable} network-manager-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17354 +#: guix-git/doc/guix.texi:17716 msgid "This is the service type for the @uref{https://wiki.gnome.org/Projects/NetworkManager, NetworkManager} service. The value for this service type is a @code{network-manager-configuration} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17357 guix-git/doc/guix.texi:17509 -#: guix-git/doc/guix.texi:17538 +#: guix-git/doc/guix.texi:17719 guix-git/doc/guix.texi:17871 +#: guix-git/doc/guix.texi:17900 msgid "This service is part of @code{%desktop-services} (@pxref{Desktop Services})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17359 +#: guix-git/doc/guix.texi:17721 #, no-wrap msgid "{Data Type} network-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17361 +#: guix-git/doc/guix.texi:17723 msgid "Data type representing the configuration of NetworkManager." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17363 +#: guix-git/doc/guix.texi:17725 #, no-wrap msgid "@code{network-manager} (default: @code{network-manager})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17365 +#: guix-git/doc/guix.texi:17727 msgid "The NetworkManager package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17366 +#: guix-git/doc/guix.texi:17728 #, no-wrap msgid "@code{dns} (default: @code{\"default\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17369 +#: guix-git/doc/guix.texi:17731 msgid "Processing mode for DNS, which affects how NetworkManager uses the @code{resolv.conf} configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17374 +#: guix-git/doc/guix.texi:17736 msgid "NetworkManager will update @code{resolv.conf} to reflect the nameservers provided by currently active connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17375 +#: guix-git/doc/guix.texi:17737 #, no-wrap msgid "dnsmasq" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17379 +#: guix-git/doc/guix.texi:17741 msgid "NetworkManager will run @code{dnsmasq} as a local caching nameserver, using a @dfn{conditional forwarding} configuration if you are connected to a VPN, and then update @code{resolv.conf} to point to the local nameserver." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17385 +#: guix-git/doc/guix.texi:17747 msgid "With this setting, you can share your network connection. For example when you want to share your network connection to another laptop @i{via} an Ethernet cable, you can open @command{nm-connection-editor} and configure the Wired connection's method for IPv4 and IPv6 to be ``Shared to other computers'' and reestablish the connection (or reboot)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17392 +#: guix-git/doc/guix.texi:17754 msgid "You can also set up a @dfn{host-to-guest connection} to QEMU VMs (@pxref{Installing Guix in a VM}). With a host-to-guest connection, you can e.g.@: access a Web server running on the VM (@pxref{Web Services}) from a Web browser on your host system, or connect to the VM @i{via} SSH (@pxref{Networking Services, @code{openssh-service-type}}). To set up a host-to-guest connection, run this command once:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:17399 +#: guix-git/doc/guix.texi:17761 #, no-wrap msgid "" "nmcli connection add type tun \\\n" @@ -30499,50 +31134,50 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17404 +#: guix-git/doc/guix.texi:17766 msgid "Then each time you launch your QEMU VM (@pxref{Running Guix in a VM}), pass @option{-nic tap,ifname=tap0,script=no,downscript=no} to @command{qemu-system-...}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17407 +#: guix-git/doc/guix.texi:17769 msgid "NetworkManager will not modify @code{resolv.conf}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17409 +#: guix-git/doc/guix.texi:17771 #, no-wrap msgid "@code{vpn-plugins} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17413 +#: guix-git/doc/guix.texi:17775 msgid "This is the list of available plugins for virtual private networks (VPNs). An example of this is the @code{network-manager-openvpn} package, which allows NetworkManager to manage VPNs @i{via} OpenVPN." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17417 +#: guix-git/doc/guix.texi:17779 #, no-wrap msgid "Connman" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17418 +#: guix-git/doc/guix.texi:17780 #, no-wrap msgid "{Scheme Variable} connman-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17421 +#: guix-git/doc/guix.texi:17783 msgid "This is the service type to run @url{https://01.org/connman,Connman}, a network connection manager." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17424 +#: guix-git/doc/guix.texi:17786 msgid "Its value must be an @code{connman-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17429 +#: guix-git/doc/guix.texi:17791 #, no-wrap msgid "" "(service connman-service-type\n" @@ -30551,311 +31186,311 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17432 +#: guix-git/doc/guix.texi:17794 msgid "See below for details about @code{connman-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17434 +#: guix-git/doc/guix.texi:17796 #, no-wrap msgid "{Data Type} connman-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17436 +#: guix-git/doc/guix.texi:17798 msgid "Data Type representing the configuration of connman." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17438 +#: guix-git/doc/guix.texi:17800 #, no-wrap msgid "@code{connman} (default: @var{connman})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17440 +#: guix-git/doc/guix.texi:17802 msgid "The connman package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17441 +#: guix-git/doc/guix.texi:17803 #, no-wrap msgid "@code{disable-vpn?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17443 +#: guix-git/doc/guix.texi:17805 msgid "When true, disable connman's vpn plugin." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17446 +#: guix-git/doc/guix.texi:17808 #, no-wrap msgid "WPA Supplicant" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17447 +#: guix-git/doc/guix.texi:17809 #, no-wrap msgid "{Scheme Variable} wpa-supplicant-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17451 +#: guix-git/doc/guix.texi:17813 msgid "This is the service type to run @url{https://w1.fi/wpa_supplicant/,WPA supplicant}, an authentication daemon required to authenticate against encrypted WiFi or ethernet networks." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17453 +#: guix-git/doc/guix.texi:17815 #, no-wrap msgid "{Data Type} wpa-supplicant-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17455 +#: guix-git/doc/guix.texi:17817 msgid "Data type representing the configuration of WPA Supplicant." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17457 guix-git/doc/guix.texi:32945 +#: guix-git/doc/guix.texi:17819 guix-git/doc/guix.texi:33310 msgid "It takes the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17459 +#: guix-git/doc/guix.texi:17821 #, no-wrap msgid "@code{wpa-supplicant} (default: @code{wpa-supplicant})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17461 +#: guix-git/doc/guix.texi:17823 msgid "The WPA Supplicant package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17462 +#: guix-git/doc/guix.texi:17824 #, no-wrap msgid "@code{requirement} (default: @code{'(user-processes loopback syslogd)}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17464 +#: guix-git/doc/guix.texi:17826 msgid "List of services that should be started before WPA Supplicant starts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17465 +#: guix-git/doc/guix.texi:17827 #, no-wrap msgid "@code{dbus?} (default: @code{#t})" msgstr "@code{dbus?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:17467 +#: guix-git/doc/guix.texi:17829 msgid "Whether to listen for requests on D-Bus." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17468 +#: guix-git/doc/guix.texi:17830 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/wpa_supplicant.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17470 +#: guix-git/doc/guix.texi:17832 msgid "Where to store the PID file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17471 guix-git/doc/guix.texi:31246 -#: guix-git/doc/guix.texi:31388 +#: guix-git/doc/guix.texi:17833 guix-git/doc/guix.texi:31611 +#: guix-git/doc/guix.texi:31753 #, no-wrap msgid "@code{interface} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17474 +#: guix-git/doc/guix.texi:17836 msgid "If this is set, it must specify the name of a network interface that WPA supplicant will control." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17475 guix-git/doc/guix.texi:17591 -#: guix-git/doc/guix.texi:22879 +#: guix-git/doc/guix.texi:17837 guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:23241 #, no-wrap msgid "@code{config-file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17477 +#: guix-git/doc/guix.texi:17839 msgid "Optional configuration file to use." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17480 +#: guix-git/doc/guix.texi:17842 msgid "List of additional command-line arguments to pass to the daemon." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17483 +#: guix-git/doc/guix.texi:17845 #, no-wrap msgid "wicd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17486 +#: guix-git/doc/guix.texi:17848 #, no-wrap msgid "network management" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17487 +#: guix-git/doc/guix.texi:17849 #, no-wrap msgid "{Scheme Procedure} wicd-service [#:wicd @var{wicd}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17490 +#: guix-git/doc/guix.texi:17852 msgid "Return a service that runs @url{https://launchpad.net/wicd,Wicd}, a network management daemon that aims to simplify wired and wireless networking." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17495 +#: guix-git/doc/guix.texi:17857 msgid "This service adds the @var{wicd} package to the global profile, providing several commands to interact with the daemon and configure networking: @command{wicd-client}, a graphical user interface, and the @command{wicd-cli} and @command{wicd-curses} user interfaces." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17497 +#: guix-git/doc/guix.texi:17859 #, no-wrap msgid "ModemManager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17500 +#: guix-git/doc/guix.texi:17862 msgid "Some networking devices such as modems require special care, and this is what the services below focus on." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17501 +#: guix-git/doc/guix.texi:17863 #, no-wrap msgid "{Scheme Variable} modem-manager-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17506 +#: guix-git/doc/guix.texi:17868 msgid "This is the service type for the @uref{https://wiki.gnome.org/Projects/ModemManager, ModemManager} service. The value for this service type is a @code{modem-manager-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17511 +#: guix-git/doc/guix.texi:17873 #, no-wrap msgid "{Data Type} modem-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17513 +#: guix-git/doc/guix.texi:17875 msgid "Data type representing the configuration of ModemManager." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17515 +#: guix-git/doc/guix.texi:17877 #, no-wrap msgid "@code{modem-manager} (default: @code{modem-manager})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17517 +#: guix-git/doc/guix.texi:17879 msgid "The ModemManager package to use." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17521 +#: guix-git/doc/guix.texi:17883 #, no-wrap msgid "USB_ModeSwitch" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17522 +#: guix-git/doc/guix.texi:17884 #, no-wrap msgid "Modeswitching" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17524 +#: guix-git/doc/guix.texi:17886 #, no-wrap msgid "{Scheme Variable} usb-modeswitch-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17529 +#: guix-git/doc/guix.texi:17891 msgid "This is the service type for the @uref{https://www.draisberghof.de/usb_modeswitch/, USB_ModeSwitch} service. The value for this service type is a @code{usb-modeswitch-configuration} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17535 +#: guix-git/doc/guix.texi:17897 msgid "When plugged in, some USB modems (and other USB devices) initially present themselves as a read-only storage medium and not as a modem. They need to be @dfn{modeswitched} before they are usable. The USB_ModeSwitch service type installs udev rules to automatically modeswitch these devices when they are plugged in." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17540 +#: guix-git/doc/guix.texi:17902 #, no-wrap msgid "{Data Type} usb-modeswitch-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17542 +#: guix-git/doc/guix.texi:17904 msgid "Data type representing the configuration of USB_ModeSwitch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17544 +#: guix-git/doc/guix.texi:17906 #, no-wrap msgid "@code{usb-modeswitch} (default: @code{usb-modeswitch})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17546 +#: guix-git/doc/guix.texi:17908 msgid "The USB_ModeSwitch package providing the binaries for modeswitching." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17547 +#: guix-git/doc/guix.texi:17909 #, no-wrap msgid "@code{usb-modeswitch-data} (default: @code{usb-modeswitch-data})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17550 +#: guix-git/doc/guix.texi:17912 msgid "The package providing the device data and udev rules file used by USB_ModeSwitch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17551 +#: guix-git/doc/guix.texi:17913 #, no-wrap msgid "@code{config-file} (default: @code{#~(string-append #$usb-modeswitch:dispatcher \"/etc/usb_modeswitch.conf\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17556 +#: guix-git/doc/guix.texi:17918 msgid "Which config file to use for the USB_ModeSwitch dispatcher. By default the config file shipped with USB_ModeSwitch is used which disables logging to @file{/var/log} among other default settings. If set to @code{#f}, no config file is used." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17570 +#: guix-git/doc/guix.texi:17932 msgid "The @code{(gnu services networking)} module discussed in the previous section provides services for more advanced setups: providing a DHCP service for others to use, filtering packets with iptables or nftables, running a WiFi access point with @command{hostapd}, running the @command{inetd} ``superdaemon'', and more. This section describes those." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17571 +#: guix-git/doc/guix.texi:17933 #, no-wrap msgid "{Scheme Procedure} dhcpd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17575 +#: guix-git/doc/guix.texi:17937 msgid "This type defines a service that runs a DHCP daemon. To create a service of this type, you must supply a @code{}. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17581 +#: guix-git/doc/guix.texi:17943 #, no-wrap msgid "" "(service dhcpd-service-type\n" @@ -30865,96 +31500,96 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17584 +#: guix-git/doc/guix.texi:17946 #, no-wrap msgid "{Data Type} dhcpd-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17586 +#: guix-git/doc/guix.texi:17948 #, no-wrap msgid "@code{package} (default: @code{isc-dhcp})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17591 +#: guix-git/doc/guix.texi:17953 msgid "The package that provides the DHCP daemon. This package is expected to provide the daemon at @file{sbin/dhcpd} relative to its output directory. The default package is the @uref{https://www.isc.org/products/DHCP, ISC's DHCP server}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17596 +#: guix-git/doc/guix.texi:17958 msgid "The configuration file to use. This is required. It will be passed to @code{dhcpd} via its @code{-cf} option. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). See @code{man dhcpd.conf} for details on the configuration file syntax." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17596 +#: guix-git/doc/guix.texi:17958 #, no-wrap msgid "@code{version} (default: @code{\"4\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17601 +#: guix-git/doc/guix.texi:17963 msgid "The DHCP version to use. The ISC DHCP server supports the values ``4'', ``6'', and ``4o6''. These correspond to the @code{dhcpd} program options @code{-4}, @code{-6}, and @code{-4o6}. See @code{man dhcpd} for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17601 +#: guix-git/doc/guix.texi:17963 #, no-wrap msgid "@code{run-directory} (default: @code{\"/run/dhcpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17604 +#: guix-git/doc/guix.texi:17966 msgid "The run directory to use. At service activation time, this directory will be created if it does not exist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17604 +#: guix-git/doc/guix.texi:17966 #, no-wrap msgid "@code{pid-file} (default: @code{\"/run/dhcpd/dhcpd.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17607 +#: guix-git/doc/guix.texi:17969 msgid "The PID file to use. This corresponds to the @code{-pf} option of @code{dhcpd}. See @code{man dhcpd} for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17607 +#: guix-git/doc/guix.texi:17969 #, no-wrap msgid "@code{interfaces} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17613 +#: guix-git/doc/guix.texi:17975 msgid "The names of the network interfaces on which dhcpd should listen for broadcasts. If this list is not empty, then its elements (which must be strings) will be appended to the @code{dhcpd} invocation when starting the daemon. It may not be necessary to explicitly specify any interfaces here; see @code{man dhcpd} for details." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17616 +#: guix-git/doc/guix.texi:17978 #, no-wrap msgid "hostapd service, for Wi-Fi access points" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17617 +#: guix-git/doc/guix.texi:17979 #, no-wrap msgid "Wi-Fi access points, hostapd service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17618 +#: guix-git/doc/guix.texi:17980 #, no-wrap msgid "{Scheme Variable} hostapd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17623 +#: guix-git/doc/guix.texi:17985 msgid "This is the service type to run the @uref{https://w1.fi/hostapd/, hostapd} daemon to set up WiFi (IEEE 802.11) access points and authentication servers. Its associated value must be a @code{hostapd-configuration} as shown below:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17631 +#: guix-git/doc/guix.texi:17993 #, no-wrap msgid "" ";; Use wlan1 to run the access point for \"My Network\".\n" @@ -30966,129 +31601,129 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17634 +#: guix-git/doc/guix.texi:17996 #, no-wrap msgid "{Data Type} hostapd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17637 +#: guix-git/doc/guix.texi:17999 msgid "This data type represents the configuration of the hostapd service, with the following fields:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17639 +#: guix-git/doc/guix.texi:18001 #, no-wrap msgid "@code{package} (default: @code{hostapd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17641 +#: guix-git/doc/guix.texi:18003 msgid "The hostapd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17642 +#: guix-git/doc/guix.texi:18004 #, no-wrap msgid "@code{interface} (default: @code{\"wlan0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17644 +#: guix-git/doc/guix.texi:18006 msgid "The network interface to run the WiFi access point." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17645 +#: guix-git/doc/guix.texi:18007 #, no-wrap msgid "ssid" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17648 +#: guix-git/doc/guix.texi:18010 msgid "The SSID (@dfn{service set identifier}), a string that identifies this network." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17649 +#: guix-git/doc/guix.texi:18011 #, no-wrap msgid "@code{broadcast-ssid?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17651 +#: guix-git/doc/guix.texi:18013 msgid "Whether to broadcast this SSID." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17652 +#: guix-git/doc/guix.texi:18014 #, no-wrap msgid "@code{channel} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17654 +#: guix-git/doc/guix.texi:18016 msgid "The WiFi channel to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17655 +#: guix-git/doc/guix.texi:18017 #, no-wrap msgid "@code{driver} (default: @code{\"nl80211\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17659 +#: guix-git/doc/guix.texi:18021 msgid "The driver interface type. @code{\"nl80211\"} is used with all Linux mac80211 drivers. Use @code{\"none\"} if building hostapd as a standalone RADIUS server that does # not control any wireless/wired driver." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17660 guix-git/doc/guix.texi:23728 -#: guix-git/doc/guix.texi:26807 +#: guix-git/doc/guix.texi:18022 guix-git/doc/guix.texi:24090 +#: guix-git/doc/guix.texi:27144 #, no-wrap msgid "@code{extra-settings} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17664 +#: guix-git/doc/guix.texi:18026 msgid "Extra settings to append as-is to the hostapd configuration file. See @uref{https://w1.fi/cgit/hostap/plain/hostapd/hostapd.conf} for the configuration file reference." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17667 +#: guix-git/doc/guix.texi:18029 #, no-wrap msgid "{Scheme Variable} simulated-wifi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17674 +#: guix-git/doc/guix.texi:18036 msgid "This is the type of a service to simulate WiFi networking, which can be useful in virtual machines for testing purposes. The service loads the Linux kernel @uref{https://www.kernel.org/doc/html/latest/networking/mac80211_hwsim/mac80211_hwsim.html, @code{mac80211_hwsim} module} and starts hostapd to create a pseudo WiFi network that can be seen on @code{wlan0}, by default." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17676 +#: guix-git/doc/guix.texi:18038 msgid "The service's value is a @code{hostapd-configuration} record." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17679 +#: guix-git/doc/guix.texi:18041 #, no-wrap msgid "iptables" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17680 +#: guix-git/doc/guix.texi:18042 #, no-wrap msgid "{Scheme Variable} iptables-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17686 +#: guix-git/doc/guix.texi:18048 msgid "This is the service type to set up an iptables configuration. iptables is a packet filtering framework supported by the Linux kernel. This service supports configuring iptables for both IPv4 and IPv6. A simple example configuration rejecting all incoming connections except those to the ssh port 22 is shown below." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17708 +#: guix-git/doc/guix.texi:18070 #, no-wrap msgid "" "(service iptables-service-type\n" @@ -31114,241 +31749,241 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17711 +#: guix-git/doc/guix.texi:18073 #, no-wrap msgid "{Data Type} iptables-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17713 +#: guix-git/doc/guix.texi:18075 msgid "The data type representing the configuration of iptables." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17715 +#: guix-git/doc/guix.texi:18077 #, no-wrap msgid "@code{iptables} (default: @code{iptables})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17718 +#: guix-git/doc/guix.texi:18080 msgid "The iptables package that provides @code{iptables-restore} and @code{ip6tables-restore}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17718 +#: guix-git/doc/guix.texi:18080 #, no-wrap msgid "@code{ipv4-rules} (default: @code{%iptables-accept-all-rules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17722 +#: guix-git/doc/guix.texi:18084 msgid "The iptables rules to use. It will be passed to @code{iptables-restore}. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17722 +#: guix-git/doc/guix.texi:18084 #, no-wrap msgid "@code{ipv6-rules} (default: @code{%iptables-accept-all-rules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17726 +#: guix-git/doc/guix.texi:18088 msgid "The ip6tables rules to use. It will be passed to @code{ip6tables-restore}. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17729 +#: guix-git/doc/guix.texi:18091 #, no-wrap msgid "nftables" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17730 +#: guix-git/doc/guix.texi:18092 #, no-wrap msgid "{Scheme Variable} nftables-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17738 +#: guix-git/doc/guix.texi:18100 msgid "This is the service type to set up a nftables configuration. nftables is a netfilter project that aims to replace the existing iptables, ip6tables, arptables and ebtables framework. It provides a new packet filtering framework, a new user-space utility @command{nft}, and a compatibility layer for iptables. This service comes with a default ruleset @code{%default-nftables-ruleset} that rejecting all incoming connections except those to the ssh port 22. To use it, simply write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17741 +#: guix-git/doc/guix.texi:18103 #, no-wrap msgid "(service nftables-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17744 +#: guix-git/doc/guix.texi:18106 #, no-wrap msgid "{Data Type} nftables-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17746 +#: guix-git/doc/guix.texi:18108 msgid "The data type representing the configuration of nftables." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17748 +#: guix-git/doc/guix.texi:18110 #, no-wrap msgid "@code{package} (default: @code{nftables})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17750 +#: guix-git/doc/guix.texi:18112 msgid "The nftables package that provides @command{nft}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17750 +#: guix-git/doc/guix.texi:18112 #, no-wrap msgid "@code{ruleset} (default: @code{%default-nftables-ruleset})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17753 +#: guix-git/doc/guix.texi:18115 msgid "The nftables ruleset to use. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17756 +#: guix-git/doc/guix.texi:18118 #, no-wrap msgid "NTP (Network Time Protocol), service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17757 +#: guix-git/doc/guix.texi:18119 #, no-wrap msgid "ntpd, service for the Network Time Protocol daemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17758 +#: guix-git/doc/guix.texi:18120 #, no-wrap msgid "real time clock" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17759 +#: guix-git/doc/guix.texi:18121 #, no-wrap msgid "{Scheme Variable} ntp-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17763 +#: guix-git/doc/guix.texi:18125 msgid "This is the type of the service running the @uref{https://www.ntp.org, Network Time Protocol (NTP)} daemon, @command{ntpd}. The daemon will keep the system clock synchronized with that of the specified NTP servers." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17766 +#: guix-git/doc/guix.texi:18128 msgid "The value of this service is an @code{ntpd-configuration} object, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17768 +#: guix-git/doc/guix.texi:18130 #, no-wrap msgid "{Data Type} ntp-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17770 +#: guix-git/doc/guix.texi:18132 msgid "This is the data type for the NTP service configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17772 +#: guix-git/doc/guix.texi:18134 #, no-wrap msgid "@code{servers} (default: @code{%ntp-servers})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17776 +#: guix-git/doc/guix.texi:18138 msgid "This is the list of servers (@code{} records) with which @command{ntpd} will be synchronized. See the @code{ntp-server} data type definition below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17777 +#: guix-git/doc/guix.texi:18139 #, no-wrap msgid "@code{allow-large-adjustment?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17780 +#: guix-git/doc/guix.texi:18142 msgid "This determines whether @command{ntpd} is allowed to make an initial adjustment of more than 1,000 seconds." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17781 +#: guix-git/doc/guix.texi:18143 #, no-wrap msgid "@code{ntp} (default: @code{ntp})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17783 +#: guix-git/doc/guix.texi:18145 msgid "The NTP package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17786 +#: guix-git/doc/guix.texi:18148 #, no-wrap msgid "{Scheme Variable} %ntp-servers" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17789 +#: guix-git/doc/guix.texi:18151 msgid "List of host names used as the default NTP servers. These are servers of the @uref{https://www.ntppool.org/en/, NTP Pool Project}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17791 +#: guix-git/doc/guix.texi:18153 #, no-wrap msgid "{Data Type} ntp-server" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17793 +#: guix-git/doc/guix.texi:18155 msgid "The data type representing the configuration of a NTP server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17795 +#: guix-git/doc/guix.texi:18157 #, no-wrap msgid "@code{type} (default: @code{'server})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17798 +#: guix-git/doc/guix.texi:18160 msgid "The type of the NTP server, given as a symbol. One of @code{'pool}, @code{'server}, @code{'peer}, @code{'broadcast} or @code{'manycastclient}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17799 +#: guix-git/doc/guix.texi:18161 #, no-wrap msgid "address" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17801 +#: guix-git/doc/guix.texi:18163 msgid "The address of the server, as a string." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17802 guix-git/doc/guix.texi:33774 -#: guix-git/doc/guix.texi:33794 +#: guix-git/doc/guix.texi:18164 guix-git/doc/guix.texi:34211 +#: guix-git/doc/guix.texi:34231 #, no-wrap msgid "options" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17807 +#: guix-git/doc/guix.texi:18169 msgid "NTPD options to use with that specific server, given as a list of option names and/or of option names and values tuples. The following example define a server to use with the options @option{iburst} and @option{prefer}, as well as @option{version} 3 and a @option{maxpoll} time of 16 seconds." msgstr "" #. type: example -#: guix-git/doc/guix.texi:17813 +#: guix-git/doc/guix.texi:18175 #, no-wrap msgid "" "(ntp-server\n" @@ -31358,24 +31993,24 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17817 +#: guix-git/doc/guix.texi:18179 #, no-wrap msgid "OpenNTPD" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17818 +#: guix-git/doc/guix.texi:18180 #, no-wrap msgid "{Scheme Procedure} openntpd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17822 +#: guix-git/doc/guix.texi:18184 msgid "Run the @command{ntpd}, the Network Time Protocol (NTP) daemon, as implemented by @uref{http://www.openntpd.org, OpenNTPD}. The daemon will keep the system clock synchronized with that of the given servers." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17831 +#: guix-git/doc/guix.texi:18193 #, no-wrap msgid "" "(service\n" @@ -31389,134 +32024,134 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17835 +#: guix-git/doc/guix.texi:18197 #, no-wrap msgid "{Scheme Variable} %openntpd-servers" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17838 +#: guix-git/doc/guix.texi:18200 msgid "This variable is a list of the server addresses defined in @code{%ntp-servers}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17840 +#: guix-git/doc/guix.texi:18202 #, no-wrap msgid "{Data Type} openntpd-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17842 +#: guix-git/doc/guix.texi:18204 #, no-wrap msgid "@code{openntpd} (default: @code{(file-append openntpd \"/sbin/ntpd\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17844 +#: guix-git/doc/guix.texi:18206 msgid "The openntpd executable to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17844 +#: guix-git/doc/guix.texi:18206 #, no-wrap msgid "@code{listen-on} (default: @code{'(\"127.0.0.1\" \"::1\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17846 +#: guix-git/doc/guix.texi:18208 msgid "A list of local IP addresses or hostnames the ntpd daemon should listen on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17846 +#: guix-git/doc/guix.texi:18208 #, no-wrap msgid "@code{query-from} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17848 +#: guix-git/doc/guix.texi:18210 msgid "A list of local IP address the ntpd daemon should use for outgoing queries." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17848 +#: guix-git/doc/guix.texi:18210 #, no-wrap msgid "@code{sensor} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17853 +#: guix-git/doc/guix.texi:18215 msgid "Specify a list of timedelta sensor devices ntpd should use. @code{ntpd} will listen to each sensor that actually exists and ignore non-existent ones. See @uref{https://man.openbsd.org/ntpd.conf, upstream documentation} for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17853 +#: guix-git/doc/guix.texi:18215 #, no-wrap msgid "@code{server} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17855 +#: guix-git/doc/guix.texi:18217 msgid "Specify a list of IP addresses or hostnames of NTP servers to synchronize to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17855 +#: guix-git/doc/guix.texi:18217 #, no-wrap msgid "@code{servers} (default: @code{%openntp-servers})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17857 +#: guix-git/doc/guix.texi:18219 msgid "Specify a list of IP addresses or hostnames of NTP pools to synchronize to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17857 +#: guix-git/doc/guix.texi:18219 #, no-wrap msgid "@code{constraint-from} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17864 +#: guix-git/doc/guix.texi:18226 msgid "@code{ntpd} can be configured to query the ‘Date’ from trusted HTTPS servers via TLS. This time information is not used for precision but acts as an authenticated constraint, thereby reducing the impact of unauthenticated NTP man-in-the-middle attacks. Specify a list of URLs, IP addresses or hostnames of HTTPS servers to provide a constraint." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17864 +#: guix-git/doc/guix.texi:18226 #, no-wrap msgid "@code{constraints-from} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17868 +#: guix-git/doc/guix.texi:18230 msgid "As with constraint from, specify a list of URLs, IP addresses or hostnames of HTTPS servers to provide a constraint. Should the hostname resolve to multiple IP addresses, @code{ntpd} will calculate a median constraint from all of them." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17871 +#: guix-git/doc/guix.texi:18233 #, no-wrap msgid "inetd" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17872 +#: guix-git/doc/guix.texi:18234 #, no-wrap msgid "{Scheme variable} inetd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17877 +#: guix-git/doc/guix.texi:18239 msgid "This service runs the @command{inetd} (@pxref{inetd invocation,,, inetutils, GNU Inetutils}) daemon. @command{inetd} listens for connections on internet sockets, and lazily starts the specified server program when a connection is made on one of these sockets." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17883 +#: guix-git/doc/guix.texi:18245 msgid "The value of this service is an @code{inetd-configuration} object. The following example configures the @command{inetd} daemon to provide the built-in @command{echo} service, as well as an smtp service which forwards smtp traffic over ssh to a server @code{smtp-server} behind a gateway @code{hostname}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17906 +#: guix-git/doc/guix.texi:18268 #, no-wrap msgid "" "(service\n" @@ -31543,465 +32178,467 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17909 +#: guix-git/doc/guix.texi:18271 msgid "See below for more details about @code{inetd-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17911 +#: guix-git/doc/guix.texi:18273 #, no-wrap msgid "{Data Type} inetd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17913 +#: guix-git/doc/guix.texi:18275 msgid "Data type representing the configuration of @command{inetd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17915 +#: guix-git/doc/guix.texi:18277 #, no-wrap msgid "@code{program} (default: @code{(file-append inetutils \"/libexec/inetd\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17917 +#: guix-git/doc/guix.texi:18279 msgid "The @command{inetd} executable to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17918 guix-git/doc/guix.texi:27655 +#: guix-git/doc/guix.texi:18280 guix-git/doc/guix.texi:27992 #, no-wrap msgid "@code{entries} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17921 +#: guix-git/doc/guix.texi:18283 msgid "A list of @command{inetd} service entries. Each entry should be created by the @code{inetd-entry} constructor." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17924 +#: guix-git/doc/guix.texi:18286 #, no-wrap msgid "{Data Type} inetd-entry" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17928 +#: guix-git/doc/guix.texi:18290 msgid "Data type representing an entry in the @command{inetd} configuration. Each entry corresponds to a socket where @command{inetd} will listen for requests." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17930 +#: guix-git/doc/guix.texi:18292 #, no-wrap msgid "@code{node} (default: @code{#f})" msgstr "@code{node} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:17935 +#: guix-git/doc/guix.texi:18297 msgid "Optional string, a comma-separated list of local addresses @command{inetd} should use when listening for this service. @xref{Configuration file,,, inetutils, GNU Inetutils} for a complete description of all options." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17937 +#: guix-git/doc/guix.texi:18299 msgid "A string, the name must correspond to an entry in @code{/etc/services}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17937 +#: guix-git/doc/guix.texi:18299 #, no-wrap msgid "socket-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17940 +#: guix-git/doc/guix.texi:18302 msgid "One of @code{'stream}, @code{'dgram}, @code{'raw}, @code{'rdm} or @code{'seqpacket}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17940 +#: guix-git/doc/guix.texi:18302 #, no-wrap msgid "protocol" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17942 +#: guix-git/doc/guix.texi:18304 msgid "A string, must correspond to an entry in @code{/etc/protocols}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17942 +#: guix-git/doc/guix.texi:18304 #, no-wrap msgid "@code{wait?} (default: @code{#t})" msgstr "@code{wait?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:17945 +#: guix-git/doc/guix.texi:18307 msgid "Whether @command{inetd} should wait for the server to exit before listening to new service requests." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17950 +#: guix-git/doc/guix.texi:18312 msgid "A string containing the user (and, optionally, group) name of the user as whom the server should run. The group name can be specified in a suffix, separated by a colon or period, i.e.@: @code{\"user\"}, @code{\"user:group\"} or @code{\"user.group\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17950 +#: guix-git/doc/guix.texi:18312 #, no-wrap msgid "@code{program} (default: @code{\"internal\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:18315 msgid "The server program which will serve the requests, or @code{\"internal\"} if @command{inetd} should use a built-in service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17958 +#: guix-git/doc/guix.texi:18320 msgid "A list strings or file-like objects, which are the server program's arguments, starting with the zeroth argument, i.e.@: the name of the program itself. For @command{inetd}'s internal services, this entry must be @code{'()} or @code{'(\"internal\")}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17962 +#: guix-git/doc/guix.texi:18324 msgid "@xref{Configuration file,,, inetutils, GNU Inetutils} for a more detailed discussion of each configuration field." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17964 +#: guix-git/doc/guix.texi:18326 #, no-wrap msgid "opendht, distributed hash table network service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17965 +#: guix-git/doc/guix.texi:18327 #, no-wrap msgid "dhtproxy, for use with jami" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17966 +#: guix-git/doc/guix.texi:18328 #, fuzzy, no-wrap msgid "{Scheme Variable} opendht-service-type" msgstr "guix-publish-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17971 +#: guix-git/doc/guix.texi:18333 msgid "This is the type of the service running a @uref{https://opendht.net, OpenDHT} node, @command{dhtnode}. The daemon can be used to host your own proxy service to the distributed hash table (DHT), for example to connect to with Jami, among other applications." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:17981 +#: guix-git/doc/guix.texi:18343 msgid "When using the OpenDHT proxy server, the IP addresses it ``sees'' from the clients should be addresses reachable from other peers. In practice this means that a publicly reachable address is best suited for a proxy server, outside of your private network. For example, hosting the proxy server on a IPv4 private local network and exposing it via port forwarding could work for external peers, but peers local to the proxy would have their private addresses shared with the external peers, leading to connectivity problems." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17985 +#: guix-git/doc/guix.texi:18347 msgid "The value of this service is a @code{opendht-configuration} object, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17987 +#: guix-git/doc/guix.texi:18349 #, fuzzy, no-wrap msgid "{Data Type} opendht-configuration" msgstr "build-machine {Data Type}" #. type: deftp -#: guix-git/doc/guix.texi:17989 +#: guix-git/doc/guix.texi:18351 msgid "This is the data type for the OpenDHT service configuration." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17994 +#: guix-git/doc/guix.texi:18356 msgid "Available @code{opendht-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:17995 +#: guix-git/doc/guix.texi:18357 #, no-wrap msgid "{@code{opendht-configuration} parameter} package opendht" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:17997 +#: guix-git/doc/guix.texi:18359 #, fuzzy #| msgid "The GPM package to use." msgid "The @code{opendht} package to use." msgstr "O pacote GPM a ser usado." #. type: deftypevr -#: guix-git/doc/guix.texi:18000 +#: guix-git/doc/guix.texi:18362 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean peer-discovery?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18002 +#: guix-git/doc/guix.texi:18364 msgid "Whether to enable the multicast local peer discovery mechanism." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18004 guix-git/doc/guix.texi:18012 -#: guix-git/doc/guix.texi:18020 guix-git/doc/guix.texi:19712 -#: guix-git/doc/guix.texi:19788 guix-git/doc/guix.texi:19830 -#: guix-git/doc/guix.texi:19850 guix-git/doc/guix.texi:19856 -#: guix-git/doc/guix.texi:19872 guix-git/doc/guix.texi:19960 -#: guix-git/doc/guix.texi:20048 guix-git/doc/guix.texi:20361 -#: guix-git/doc/guix.texi:20374 guix-git/doc/guix.texi:21492 -#: guix-git/doc/guix.texi:22970 guix-git/doc/guix.texi:23076 -#: guix-git/doc/guix.texi:23141 guix-git/doc/guix.texi:23150 -#: guix-git/doc/guix.texi:24383 guix-git/doc/guix.texi:24427 -#: guix-git/doc/guix.texi:24444 guix-git/doc/guix.texi:24452 -#: guix-git/doc/guix.texi:24467 guix-git/doc/guix.texi:24485 -#: guix-git/doc/guix.texi:24509 guix-git/doc/guix.texi:24562 -#: guix-git/doc/guix.texi:24695 guix-git/doc/guix.texi:24729 -#: guix-git/doc/guix.texi:24765 guix-git/doc/guix.texi:24781 -#: guix-git/doc/guix.texi:24809 guix-git/doc/guix.texi:24870 -#: guix-git/doc/guix.texi:24953 guix-git/doc/guix.texi:28367 -#: guix-git/doc/guix.texi:28381 guix-git/doc/guix.texi:28403 -#: guix-git/doc/guix.texi:28522 guix-git/doc/guix.texi:28536 -#: guix-git/doc/guix.texi:28557 guix-git/doc/guix.texi:28578 -#: guix-git/doc/guix.texi:28585 guix-git/doc/guix.texi:28630 -#: guix-git/doc/guix.texi:28637 guix-git/doc/guix.texi:29426 -#: guix-git/doc/guix.texi:29440 guix-git/doc/guix.texi:29612 -#: guix-git/doc/guix.texi:29657 guix-git/doc/guix.texi:29744 -#: guix-git/doc/guix.texi:29946 guix-git/doc/guix.texi:29979 -#: guix-git/doc/guix.texi:30119 guix-git/doc/guix.texi:30130 -#: guix-git/doc/guix.texi:30381 guix-git/doc/guix.texi:31900 -#: guix-git/doc/guix.texi:31909 guix-git/doc/guix.texi:31917 -#: guix-git/doc/guix.texi:31925 guix-git/doc/guix.texi:31941 -#: guix-git/doc/guix.texi:31957 guix-git/doc/guix.texi:31965 -#: guix-git/doc/guix.texi:31973 guix-git/doc/guix.texi:31982 -#: guix-git/doc/guix.texi:31991 guix-git/doc/guix.texi:32007 -#: guix-git/doc/guix.texi:32071 guix-git/doc/guix.texi:32177 -#: guix-git/doc/guix.texi:32185 guix-git/doc/guix.texi:32193 -#: guix-git/doc/guix.texi:32218 guix-git/doc/guix.texi:32272 -#: guix-git/doc/guix.texi:32320 guix-git/doc/guix.texi:32521 -#: guix-git/doc/guix.texi:32528 +#: guix-git/doc/guix.texi:18366 guix-git/doc/guix.texi:18374 +#: guix-git/doc/guix.texi:18382 guix-git/doc/guix.texi:20074 +#: guix-git/doc/guix.texi:20150 guix-git/doc/guix.texi:20192 +#: guix-git/doc/guix.texi:20212 guix-git/doc/guix.texi:20218 +#: guix-git/doc/guix.texi:20234 guix-git/doc/guix.texi:20322 +#: guix-git/doc/guix.texi:20410 guix-git/doc/guix.texi:20723 +#: guix-git/doc/guix.texi:20736 guix-git/doc/guix.texi:21854 +#: guix-git/doc/guix.texi:23332 guix-git/doc/guix.texi:23438 +#: guix-git/doc/guix.texi:23503 guix-git/doc/guix.texi:23512 +#: guix-git/doc/guix.texi:24745 guix-git/doc/guix.texi:24789 +#: guix-git/doc/guix.texi:24806 guix-git/doc/guix.texi:24814 +#: guix-git/doc/guix.texi:24829 guix-git/doc/guix.texi:24847 +#: guix-git/doc/guix.texi:24871 guix-git/doc/guix.texi:24924 +#: guix-git/doc/guix.texi:25057 guix-git/doc/guix.texi:25091 +#: guix-git/doc/guix.texi:25127 guix-git/doc/guix.texi:25143 +#: guix-git/doc/guix.texi:25171 guix-git/doc/guix.texi:25232 +#: guix-git/doc/guix.texi:25315 guix-git/doc/guix.texi:28704 +#: guix-git/doc/guix.texi:28718 guix-git/doc/guix.texi:28740 +#: guix-git/doc/guix.texi:28859 guix-git/doc/guix.texi:28873 +#: guix-git/doc/guix.texi:28894 guix-git/doc/guix.texi:28915 +#: guix-git/doc/guix.texi:28922 guix-git/doc/guix.texi:28967 +#: guix-git/doc/guix.texi:28974 guix-git/doc/guix.texi:29763 +#: guix-git/doc/guix.texi:29777 guix-git/doc/guix.texi:29977 +#: guix-git/doc/guix.texi:30022 guix-git/doc/guix.texi:30109 +#: guix-git/doc/guix.texi:30311 guix-git/doc/guix.texi:30344 +#: guix-git/doc/guix.texi:30484 guix-git/doc/guix.texi:30495 +#: guix-git/doc/guix.texi:30746 guix-git/doc/guix.texi:32265 +#: guix-git/doc/guix.texi:32274 guix-git/doc/guix.texi:32282 +#: guix-git/doc/guix.texi:32290 guix-git/doc/guix.texi:32306 +#: guix-git/doc/guix.texi:32322 guix-git/doc/guix.texi:32330 +#: guix-git/doc/guix.texi:32338 guix-git/doc/guix.texi:32347 +#: guix-git/doc/guix.texi:32356 guix-git/doc/guix.texi:32372 +#: guix-git/doc/guix.texi:32436 guix-git/doc/guix.texi:32542 +#: guix-git/doc/guix.texi:32550 guix-git/doc/guix.texi:32558 +#: guix-git/doc/guix.texi:32583 guix-git/doc/guix.texi:32637 +#: guix-git/doc/guix.texi:32685 guix-git/doc/guix.texi:32886 +#: guix-git/doc/guix.texi:32893 msgid "Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18007 +#: guix-git/doc/guix.texi:18369 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean enable-logging?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18010 +#: guix-git/doc/guix.texi:18372 msgid "Whether to enable logging messages to syslog. It is disabled by default as it is rather verbose." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18015 +#: guix-git/doc/guix.texi:18377 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean debug?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18018 +#: guix-git/doc/guix.texi:18380 msgid "Whether to enable debug-level logging messages. This has no effect if logging is disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18023 +#: guix-git/doc/guix.texi:18385 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-string bootstrap-host" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18029 +#: guix-git/doc/guix.texi:18391 msgid "The node host name that is used to make the first connection to the network. A specific port value can be provided by appending the @code{:PORT} suffix. By default, it uses the Jami bootstrap nodes, but any host can be specified here. It's also possible to disable bootsrapping by setting this to the @code{'disabled} symbol." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18031 +#: guix-git/doc/guix.texi:18393 msgid "Defaults to @samp{\"bootstrap.jami.net:4222\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18034 +#: guix-git/doc/guix.texi:18396 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18037 +#: guix-git/doc/guix.texi:18399 msgid "The UDP port to bind to. When set to @code{'disabled}, an available port is automatically selected." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18039 +#: guix-git/doc/guix.texi:18401 msgid "Defaults to @samp{4222}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18042 +#: guix-git/doc/guix.texi:18404 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number proxy-server-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18044 +#: guix-git/doc/guix.texi:18406 msgid "Spawn a proxy server listening on the specified port." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18046 guix-git/doc/guix.texi:18053 -#: guix-git/doc/guix.texi:24391 guix-git/doc/guix.texi:24435 -#: guix-git/doc/guix.texi:24648 guix-git/doc/guix.texi:24704 -#: guix-git/doc/guix.texi:24878 guix-git/doc/guix.texi:24889 -#: guix-git/doc/guix.texi:24962 guix-git/doc/guix.texi:25687 -#: guix-git/doc/guix.texi:25730 guix-git/doc/guix.texi:25738 -#: guix-git/doc/guix.texi:25746 guix-git/doc/guix.texi:25754 -#: guix-git/doc/guix.texi:25763 guix-git/doc/guix.texi:25771 -#: guix-git/doc/guix.texi:25778 guix-git/doc/guix.texi:25786 -#: guix-git/doc/guix.texi:25794 guix-git/doc/guix.texi:25804 -#: guix-git/doc/guix.texi:25811 guix-git/doc/guix.texi:25835 -#: guix-git/doc/guix.texi:25843 guix-git/doc/guix.texi:25869 -#: guix-git/doc/guix.texi:25878 guix-git/doc/guix.texi:25887 -#: guix-git/doc/guix.texi:25896 guix-git/doc/guix.texi:25905 -#: guix-git/doc/guix.texi:25914 guix-git/doc/guix.texi:25922 -#: guix-git/doc/guix.texi:25930 guix-git/doc/guix.texi:25937 -#: guix-git/doc/guix.texi:25945 guix-git/doc/guix.texi:25952 -#: guix-git/doc/guix.texi:25960 guix-git/doc/guix.texi:25968 -#: guix-git/doc/guix.texi:25977 guix-git/doc/guix.texi:25986 -#: guix-git/doc/guix.texi:25994 guix-git/doc/guix.texi:26002 -#: guix-git/doc/guix.texi:26010 guix-git/doc/guix.texi:26021 -#: guix-git/doc/guix.texi:26031 guix-git/doc/guix.texi:26042 -#: guix-git/doc/guix.texi:26051 guix-git/doc/guix.texi:26061 -#: guix-git/doc/guix.texi:26069 guix-git/doc/guix.texi:26080 -#: guix-git/doc/guix.texi:26089 guix-git/doc/guix.texi:26099 -#: guix-git/doc/guix.texi:29339 guix-git/doc/guix.texi:29346 -#: guix-git/doc/guix.texi:29353 guix-git/doc/guix.texi:29360 -#: guix-git/doc/guix.texi:29367 guix-git/doc/guix.texi:29374 -#: guix-git/doc/guix.texi:29382 guix-git/doc/guix.texi:29390 -#: guix-git/doc/guix.texi:29397 guix-git/doc/guix.texi:29404 -#: guix-git/doc/guix.texi:29411 guix-git/doc/guix.texi:29418 -#: guix-git/doc/guix.texi:29448 guix-git/doc/guix.texi:29486 -#: guix-git/doc/guix.texi:29493 guix-git/doc/guix.texi:29502 -#: guix-git/doc/guix.texi:29524 guix-git/doc/guix.texi:29532 -#: guix-git/doc/guix.texi:29539 guix-git/doc/guix.texi:29694 -#: guix-git/doc/guix.texi:29714 guix-git/doc/guix.texi:29729 -#: guix-git/doc/guix.texi:29736 guix-git/doc/guix.texi:32473 -#: guix-git/doc/guix.texi:32481 guix-git/doc/guix.texi:32489 -#: guix-git/doc/guix.texi:32497 guix-git/doc/guix.texi:32505 -#: guix-git/doc/guix.texi:32513 +#: guix-git/doc/guix.texi:18408 guix-git/doc/guix.texi:18415 +#: guix-git/doc/guix.texi:24753 guix-git/doc/guix.texi:24797 +#: guix-git/doc/guix.texi:25010 guix-git/doc/guix.texi:25066 +#: guix-git/doc/guix.texi:25240 guix-git/doc/guix.texi:25251 +#: guix-git/doc/guix.texi:25324 guix-git/doc/guix.texi:26024 +#: guix-git/doc/guix.texi:26067 guix-git/doc/guix.texi:26075 +#: guix-git/doc/guix.texi:26083 guix-git/doc/guix.texi:26091 +#: guix-git/doc/guix.texi:26100 guix-git/doc/guix.texi:26108 +#: guix-git/doc/guix.texi:26115 guix-git/doc/guix.texi:26123 +#: guix-git/doc/guix.texi:26131 guix-git/doc/guix.texi:26141 +#: guix-git/doc/guix.texi:26148 guix-git/doc/guix.texi:26172 +#: guix-git/doc/guix.texi:26180 guix-git/doc/guix.texi:26206 +#: guix-git/doc/guix.texi:26215 guix-git/doc/guix.texi:26224 +#: guix-git/doc/guix.texi:26233 guix-git/doc/guix.texi:26242 +#: guix-git/doc/guix.texi:26251 guix-git/doc/guix.texi:26259 +#: guix-git/doc/guix.texi:26267 guix-git/doc/guix.texi:26274 +#: guix-git/doc/guix.texi:26282 guix-git/doc/guix.texi:26289 +#: guix-git/doc/guix.texi:26297 guix-git/doc/guix.texi:26305 +#: guix-git/doc/guix.texi:26314 guix-git/doc/guix.texi:26323 +#: guix-git/doc/guix.texi:26331 guix-git/doc/guix.texi:26339 +#: guix-git/doc/guix.texi:26347 guix-git/doc/guix.texi:26358 +#: guix-git/doc/guix.texi:26368 guix-git/doc/guix.texi:26379 +#: guix-git/doc/guix.texi:26388 guix-git/doc/guix.texi:26398 +#: guix-git/doc/guix.texi:26406 guix-git/doc/guix.texi:26417 +#: guix-git/doc/guix.texi:26426 guix-git/doc/guix.texi:26436 +#: guix-git/doc/guix.texi:29676 guix-git/doc/guix.texi:29683 +#: guix-git/doc/guix.texi:29690 guix-git/doc/guix.texi:29697 +#: guix-git/doc/guix.texi:29704 guix-git/doc/guix.texi:29711 +#: guix-git/doc/guix.texi:29719 guix-git/doc/guix.texi:29727 +#: guix-git/doc/guix.texi:29734 guix-git/doc/guix.texi:29741 +#: guix-git/doc/guix.texi:29748 guix-git/doc/guix.texi:29755 +#: guix-git/doc/guix.texi:29785 guix-git/doc/guix.texi:29823 +#: guix-git/doc/guix.texi:29830 guix-git/doc/guix.texi:29839 +#: guix-git/doc/guix.texi:29861 guix-git/doc/guix.texi:29869 +#: guix-git/doc/guix.texi:29876 guix-git/doc/guix.texi:29905 +#: guix-git/doc/guix.texi:29912 guix-git/doc/guix.texi:29919 +#: guix-git/doc/guix.texi:29926 guix-git/doc/guix.texi:30059 +#: guix-git/doc/guix.texi:30079 guix-git/doc/guix.texi:30094 +#: guix-git/doc/guix.texi:30101 guix-git/doc/guix.texi:32838 +#: guix-git/doc/guix.texi:32846 guix-git/doc/guix.texi:32854 +#: guix-git/doc/guix.texi:32862 guix-git/doc/guix.texi:32870 +#: guix-git/doc/guix.texi:32878 msgid "Defaults to @samp{disabled}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18049 +#: guix-git/doc/guix.texi:18411 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number proxy-server-port-tls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18051 +#: guix-git/doc/guix.texi:18413 msgid "Spawn a proxy server listening to TLS connections on the specified port." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18057 +#: guix-git/doc/guix.texi:18419 #, no-wrap msgid "Tor" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18058 +#: guix-git/doc/guix.texi:18420 #, no-wrap msgid "{Scheme Variable} tor-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18063 +#: guix-git/doc/guix.texi:18425 msgid "This is the type for a service that runs the @uref{https://torproject.org, Tor} anonymous networking daemon. The service is configured using a @code{} record. By default, the Tor daemon runs as the @code{tor} unprivileged user, which is a member of the @code{tor} group." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18066 +#: guix-git/doc/guix.texi:18428 #, no-wrap msgid "{Data Type} tor-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18068 +#: guix-git/doc/guix.texi:18430 #, no-wrap msgid "@code{tor} (default: @code{tor})" msgstr "@code{tor} (default: @code{tor})" #. type: table -#: guix-git/doc/guix.texi:18073 +#: guix-git/doc/guix.texi:18435 msgid "The package that provides the Tor daemon. This package is expected to provide the daemon at @file{bin/tor} relative to its output directory. The default package is the @uref{https://www.torproject.org, Tor Project's} implementation." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18074 +#: guix-git/doc/guix.texi:18436 #, no-wrap msgid "@code{config-file} (default: @code{(plain-file \"empty\" \"\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18080 +#: guix-git/doc/guix.texi:18442 msgid "The configuration file to use. It will be appended to a default configuration file, and the final configuration file will be passed to @code{tor} via its @code{-f} option. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). See @code{man tor} for details on the configuration file syntax." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18081 +#: guix-git/doc/guix.texi:18443 #, no-wrap msgid "@code{hidden-services} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18087 +#: guix-git/doc/guix.texi:18449 msgid "The list of @code{} records to use. For any hidden service you include in this list, appropriate configuration to enable the hidden service will be automatically added to the default configuration file. You may conveniently create @code{} records using the @code{tor-hidden-service} procedure described below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18088 +#: guix-git/doc/guix.texi:18450 #, no-wrap msgid "@code{socks-socket-type} (default: @code{'tcp})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18095 +#: guix-git/doc/guix.texi:18457 msgid "The default socket type that Tor should use for its SOCKS socket. This must be either @code{'tcp} or @code{'unix}. If it is @code{'tcp}, then by default Tor will listen on TCP port 9050 on the loopback interface (i.e., localhost). If it is @code{'unix}, then Tor will listen on the UNIX domain socket @file{/var/run/tor/socks-sock}, which will be made writable by members of the @code{tor} group." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18100 +#: guix-git/doc/guix.texi:18462 msgid "If you want to customize the SOCKS socket in more detail, leave @code{socks-socket-type} at its default value of @code{'tcp} and use @code{config-file} to override the default by providing your own @code{SocksPort} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18101 +#: guix-git/doc/guix.texi:18463 #, no-wrap msgid "@code{control-socket?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18107 +#: guix-git/doc/guix.texi:18469 msgid "Whether or not to provide a ``control socket'' by which Tor can be controlled to, for instance, dynamically instantiate tor onion services. If @code{#t}, Tor will listen for control commands on the UNIX domain socket @file{/var/run/tor/control-sock}, which will be made writable by members of the @code{tor} group." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18111 +#: guix-git/doc/guix.texi:18473 #, no-wrap msgid "hidden service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18112 +#: guix-git/doc/guix.texi:18474 #, no-wrap msgid "{Scheme Procedure} tor-hidden-service @var{name} @var{mapping}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18115 +#: guix-git/doc/guix.texi:18477 msgid "Define a new Tor @dfn{hidden service} called @var{name} and implementing @var{mapping}. @var{mapping} is a list of port/host tuples, such as:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18119 +#: guix-git/doc/guix.texi:18481 #, no-wrap msgid "" " '((22 \"127.0.0.1:22\")\n" @@ -32009,43 +32646,43 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18123 +#: guix-git/doc/guix.texi:18485 msgid "In this example, port 22 of the hidden service is mapped to local port 22, and port 80 is mapped to local port 8080." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18127 +#: guix-git/doc/guix.texi:18489 msgid "This creates a @file{/var/lib/tor/hidden-services/@var{name}} directory, where the @file{hostname} file contains the @code{.onion} host name for the hidden service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18130 +#: guix-git/doc/guix.texi:18492 msgid "See @uref{https://www.torproject.org/docs/tor-hidden-service.html.en, the Tor project's documentation} for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18133 +#: guix-git/doc/guix.texi:18495 msgid "The @code{(gnu services rsync)} module provides the following services:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18137 +#: guix-git/doc/guix.texi:18499 msgid "You might want an rsync daemon if you have files that you want available so anyone (or just yourself) can download existing files or upload new files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18138 +#: guix-git/doc/guix.texi:18500 #, no-wrap msgid "{Scheme Variable} rsync-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18142 +#: guix-git/doc/guix.texi:18504 msgid "This is the service type for the @uref{https://rsync.samba.org, rsync} daemon, The value for this service type is a @command{rsync-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18155 +#: guix-git/doc/guix.texi:18517 #, no-wrap msgid "" ";; Export two directories over rsync. By default rsync listens on\n" @@ -32062,243 +32699,243 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18158 +#: guix-git/doc/guix.texi:18520 msgid "See below for details about @code{rsync-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18160 +#: guix-git/doc/guix.texi:18522 #, no-wrap msgid "{Data Type} rsync-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18162 +#: guix-git/doc/guix.texi:18524 msgid "Data type representing the configuration for @code{rsync-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18164 +#: guix-git/doc/guix.texi:18526 #, no-wrap msgid "@code{package} (default: @var{rsync})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18166 +#: guix-git/doc/guix.texi:18528 msgid "@code{rsync} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18167 guix-git/doc/guix.texi:31480 +#: guix-git/doc/guix.texi:18529 guix-git/doc/guix.texi:31845 #, no-wrap msgid "@code{address} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18170 +#: guix-git/doc/guix.texi:18532 msgid "IP address on which @command{rsync} listens for incoming connections. If unspecified, it defaults to listening on all available addresses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18171 +#: guix-git/doc/guix.texi:18533 #, no-wrap msgid "@code{port-number} (default: @code{873})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18175 +#: guix-git/doc/guix.texi:18537 msgid "TCP port on which @command{rsync} listens for incoming connections. If port is less than @code{1024} @command{rsync} needs to be started as the @code{root} user and group." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18176 +#: guix-git/doc/guix.texi:18538 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/rsyncd/rsyncd.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18178 +#: guix-git/doc/guix.texi:18540 msgid "Name of the file where @command{rsync} writes its PID." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18179 +#: guix-git/doc/guix.texi:18541 #, no-wrap msgid "@code{lock-file} (default: @code{\"/var/run/rsyncd/rsyncd.lock\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18181 +#: guix-git/doc/guix.texi:18543 msgid "Name of the file where @command{rsync} writes its lock file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18182 +#: guix-git/doc/guix.texi:18544 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/rsyncd.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18184 +#: guix-git/doc/guix.texi:18546 msgid "Name of the file where @command{rsync} writes its log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18185 guix-git/doc/guix.texi:35582 +#: guix-git/doc/guix.texi:18547 guix-git/doc/guix.texi:36062 #, no-wrap msgid "@code{user} (default: @code{\"root\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18187 +#: guix-git/doc/guix.texi:18549 msgid "Owner of the @code{rsync} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18188 +#: guix-git/doc/guix.texi:18550 #, fuzzy, no-wrap #| msgid "@code{hangup?} (default: @code{#f})" msgid "@code{group} (default: @code{\"root\"})" msgstr "@code{hangup?} (padrão: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18190 +#: guix-git/doc/guix.texi:18552 msgid "Group of the @code{rsync} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18191 +#: guix-git/doc/guix.texi:18553 #, fuzzy, no-wrap #| msgid "@code{uid} (default: @code{#f})" msgid "@code{uid} (default: @code{\"rsyncd\"})" msgstr "@code{uid} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18194 +#: guix-git/doc/guix.texi:18556 msgid "User name or user ID that file transfers to and from that module should take place as when the daemon was run as @code{root}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18195 +#: guix-git/doc/guix.texi:18557 #, fuzzy, no-wrap #| msgid "@code{gdm} (default: @code{gdm})" msgid "@code{gid} (default: @code{\"rsyncd\"})" msgstr "@code{gdm} (default: @code{gdm})" #. type: table -#: guix-git/doc/guix.texi:18197 guix-git/doc/guix.texi:18676 +#: guix-git/doc/guix.texi:18559 guix-git/doc/guix.texi:19038 msgid "Group name or group ID that will be used when accessing the module." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18198 guix-git/doc/guix.texi:36378 +#: guix-git/doc/guix.texi:18560 guix-git/doc/guix.texi:36868 #, no-wrap msgid "@code{modules} (default: @code{%default-modules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18201 +#: guix-git/doc/guix.texi:18563 msgid "List of ``modules''---i.e., directories exported over rsync. Each element must be a @code{rsync-module} record, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18204 +#: guix-git/doc/guix.texi:18566 #, fuzzy, no-wrap #| msgid "{Data Type} build-machine" msgid "{Data Type} rsync-module" msgstr "build-machine {Data Type}" #. type: deftp -#: guix-git/doc/guix.texi:18207 +#: guix-git/doc/guix.texi:18569 msgid "This is the data type for rsync ``modules''. A module is a directory exported over the rsync protocol. The available fields are as follows:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18213 +#: guix-git/doc/guix.texi:18575 msgid "The module name. This is the name that shows up in URLs. For example, if the module is called @code{music}, the corresponding URL will be @code{rsync://host.example.org/music}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18214 +#: guix-git/doc/guix.texi:18576 #, fuzzy, no-wrap #| msgid "name" msgid "file-name" msgstr "name" #. type: table -#: guix-git/doc/guix.texi:18216 +#: guix-git/doc/guix.texi:18578 msgid "Name of the directory being exported." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18220 +#: guix-git/doc/guix.texi:18582 msgid "Comment associated with the module. Client user interfaces may display it when they obtain the list of available modules." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18221 +#: guix-git/doc/guix.texi:18583 #, fuzzy, no-wrap #| msgid "@code{respawn?} (default: @code{#t})" msgid "@code{read-only?} (default: @code{#t})" msgstr "@code{respawn?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18225 +#: guix-git/doc/guix.texi:18587 msgid "Whether or not client will be able to upload files. If this is false, the uploads will be authorized if permissions on the daemon side permit it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18226 +#: guix-git/doc/guix.texi:18588 #, fuzzy, no-wrap #| msgid "@code{chroot} (default: @code{#f})" msgid "@code{chroot?} (default: @code{#t})" msgstr "@code{chroot} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18230 +#: guix-git/doc/guix.texi:18592 msgid "When this is true, the rsync daemon changes root to the module's directory before starting file transfers with the client. This improves security, but requires rsync to run as root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18231 +#: guix-git/doc/guix.texi:18593 #, no-wrap msgid "@code{timeout} (default: @code{300})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18234 +#: guix-git/doc/guix.texi:18596 msgid "Idle time in seconds after which the daemon closes a connection with the client." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18238 +#: guix-git/doc/guix.texi:18600 msgid "The @code{(gnu services syncthing)} module provides the following services:" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18238 +#: guix-git/doc/guix.texi:18600 #, no-wrap msgid "syncthing" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18243 +#: guix-git/doc/guix.texi:18605 msgid "You might want a syncthing daemon if you have files between two or more computers and want to sync them in real time, safely protected from prying eyes." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18244 +#: guix-git/doc/guix.texi:18606 #, no-wrap msgid "{Scheme Variable} syncthing-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18248 +#: guix-git/doc/guix.texi:18610 msgid "This is the service type for the @uref{https://syncthing.net/, syncthing} daemon, The value for this service type is a @command{syncthing-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18252 +#: guix-git/doc/guix.texi:18614 #, no-wrap msgid "" "(service syncthing-service-type\n" @@ -32306,160 +32943,160 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18255 +#: guix-git/doc/guix.texi:18617 msgid "See below for details about @code{syncthing-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18256 +#: guix-git/doc/guix.texi:18618 #, no-wrap msgid "{Data Type} syncthing-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18258 +#: guix-git/doc/guix.texi:18620 msgid "Data type representing the configuration for @code{syncthing-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18260 +#: guix-git/doc/guix.texi:18622 #, no-wrap msgid "@code{syncthing} (default: @var{syncthing})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18262 +#: guix-git/doc/guix.texi:18624 msgid "@code{syncthing} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18263 +#: guix-git/doc/guix.texi:18625 #, no-wrap msgid "@code{arguments} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18265 +#: guix-git/doc/guix.texi:18627 msgid "List of command-line arguments passing to @code{syncthing} binary." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18266 +#: guix-git/doc/guix.texi:18628 #, no-wrap msgid "@code{logflags} (default: @var{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18269 +#: guix-git/doc/guix.texi:18631 msgid "Sum of logging flags, see @uref{https://docs.syncthing.net/users/syncthing.html#cmdoption-logflags, Syncthing documentation logflags}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18270 +#: guix-git/doc/guix.texi:18632 #, no-wrap msgid "@code{user} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18273 +#: guix-git/doc/guix.texi:18635 msgid "The user as which the Syncthing service is to be run. This assumes that the specified user exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18274 +#: guix-git/doc/guix.texi:18636 #, no-wrap msgid "@code{group} (default: @var{\"users\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18277 +#: guix-git/doc/guix.texi:18639 msgid "The group as which the Syncthing service is to be run. This assumes that the specified group exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18278 +#: guix-git/doc/guix.texi:18640 #, no-wrap msgid "@code{home} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18281 +#: guix-git/doc/guix.texi:18643 msgid "Common configuration and data directory. The default configuration directory is @file{$HOME} of the specified Syncthing @code{user}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18287 +#: guix-git/doc/guix.texi:18649 msgid "Furthermore, @code{(gnu services ssh)} provides the following services." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18287 guix-git/doc/guix.texi:18326 -#: guix-git/doc/guix.texi:35715 +#: guix-git/doc/guix.texi:18649 guix-git/doc/guix.texi:18688 +#: guix-git/doc/guix.texi:36205 #, no-wrap msgid "SSH" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18288 guix-git/doc/guix.texi:18327 -#: guix-git/doc/guix.texi:35716 +#: guix-git/doc/guix.texi:18650 guix-git/doc/guix.texi:18689 +#: guix-git/doc/guix.texi:36206 #, no-wrap msgid "SSH server" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18290 +#: guix-git/doc/guix.texi:18652 #, no-wrap msgid "{Scheme Procedure} lsh-service [#:host-key \"/etc/lsh/host-key\"] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18299 +#: guix-git/doc/guix.texi:18661 msgid "[#:daemonic? #t] [#:interfaces '()] [#:port-number 22] @ [#:allow-empty-passwords? #f] [#:root-login? #f] @ [#:syslog-output? #t] [#:x11-forwarding? #t] @ [#:tcp/ip-forwarding? #t] [#:password-authentication? #t] @ [#:public-key-authentication? #t] [#:initialize? #t] Run the @command{lshd} program from @var{lsh} to listen on port @var{port-number}. @var{host-key} must designate a file containing the host key, and readable only by root." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18305 +#: guix-git/doc/guix.texi:18667 msgid "When @var{daemonic?} is true, @command{lshd} will detach from the controlling terminal and log its output to syslogd, unless one sets @var{syslog-output?} to false. Obviously, it also makes lsh-service depend on existence of syslogd service. When @var{pid-file?} is true, @command{lshd} writes its PID to the file called @var{pid-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18309 +#: guix-git/doc/guix.texi:18671 msgid "When @var{initialize?} is true, automatically create the seed and host key upon service activation if they do not exist yet. This may take long and require interaction." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18314 +#: guix-git/doc/guix.texi:18676 msgid "When @var{initialize?} is false, it is up to the user to initialize the randomness generator (@pxref{lsh-make-seed,,, lsh, LSH Manual}), and to create a key pair with the private key stored in file @var{host-key} (@pxref{lshd basics,,, lsh, LSH Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18318 +#: guix-git/doc/guix.texi:18680 msgid "When @var{interfaces} is empty, lshd listens for connections on all the network interfaces; otherwise, @var{interfaces} must be a list of host names or addresses." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18322 +#: guix-git/doc/guix.texi:18684 msgid "@var{allow-empty-passwords?} specifies whether to accept log-ins with empty passwords, and @var{root-login?} specifies whether to accept log-ins as root." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18324 +#: guix-git/doc/guix.texi:18686 msgid "The other options should be self-descriptive." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18328 +#: guix-git/doc/guix.texi:18690 #, no-wrap msgid "{Scheme Variable} openssh-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18332 +#: guix-git/doc/guix.texi:18694 msgid "This is the type for the @uref{http://www.openssh.org, OpenSSH} secure shell daemon, @command{sshd}. Its value must be an @code{openssh-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18341 +#: guix-git/doc/guix.texi:18703 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -32472,17 +33109,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18344 +#: guix-git/doc/guix.texi:18706 msgid "See below for details about @code{openssh-configuration}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18347 +#: guix-git/doc/guix.texi:18709 msgid "This service can be extended with extra authorized keys, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18352 +#: guix-git/doc/guix.texi:18714 #, no-wrap msgid "" "(service-extension openssh-service-type\n" @@ -32491,203 +33128,203 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18355 +#: guix-git/doc/guix.texi:18717 #, no-wrap msgid "{Data Type} openssh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18357 +#: guix-git/doc/guix.texi:18719 msgid "This is the configuration record for OpenSSH's @command{sshd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18359 +#: guix-git/doc/guix.texi:18721 #, no-wrap msgid "@code{openssh} (default @var{openssh})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18361 +#: guix-git/doc/guix.texi:18723 msgid "The Openssh package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18362 +#: guix-git/doc/guix.texi:18724 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/sshd.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18364 +#: guix-git/doc/guix.texi:18726 msgid "Name of the file where @command{sshd} writes its PID." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18365 +#: guix-git/doc/guix.texi:18727 #, no-wrap msgid "@code{port-number} (default: @code{22})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18367 +#: guix-git/doc/guix.texi:18729 msgid "TCP port on which @command{sshd} listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18368 +#: guix-git/doc/guix.texi:18730 #, no-wrap msgid "@code{permit-root-login} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18373 +#: guix-git/doc/guix.texi:18735 msgid "This field determines whether and when to allow logins as root. If @code{#f}, root logins are disallowed; if @code{#t}, they are allowed. If it's the symbol @code{'prohibit-password}, then root logins are permitted but not with password-based authentication." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18374 guix-git/doc/guix.texi:18535 +#: guix-git/doc/guix.texi:18736 guix-git/doc/guix.texi:18897 #, no-wrap msgid "@code{allow-empty-passwords?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18377 +#: guix-git/doc/guix.texi:18739 msgid "When true, users with empty passwords may log in. When false, they may not." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18378 guix-git/doc/guix.texi:18538 +#: guix-git/doc/guix.texi:18740 guix-git/doc/guix.texi:18900 #, no-wrap msgid "@code{password-authentication?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18381 +#: guix-git/doc/guix.texi:18743 msgid "When true, users may log in with their password. When false, they have other authentication methods." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18382 +#: guix-git/doc/guix.texi:18744 #, no-wrap msgid "@code{public-key-authentication?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18385 +#: guix-git/doc/guix.texi:18747 msgid "When true, users may log in using public key authentication. When false, users have to use other authentication method." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18388 +#: guix-git/doc/guix.texi:18750 msgid "Authorized public keys are stored in @file{~/.ssh/authorized_keys}. This is used only by protocol version 2." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18389 +#: guix-git/doc/guix.texi:18751 #, no-wrap msgid "@code{x11-forwarding?} (default: @code{#f})" msgstr "@code{x11-forwarding?} (padrão: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18393 +#: guix-git/doc/guix.texi:18755 msgid "When true, forwarding of X11 graphical client connections is enabled---in other words, @command{ssh} options @option{-X} and @option{-Y} will work." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18394 +#: guix-git/doc/guix.texi:18756 #, no-wrap msgid "@code{allow-agent-forwarding?} (default: @code{#t})" msgstr "@code{allow-agent-forwarding?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18396 +#: guix-git/doc/guix.texi:18758 msgid "Whether to allow agent forwarding." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18397 +#: guix-git/doc/guix.texi:18759 #, no-wrap msgid "@code{allow-tcp-forwarding?} (default: @code{#t})" msgstr "@code{allow-tcp-forwarding?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18399 +#: guix-git/doc/guix.texi:18761 msgid "Whether to allow TCP forwarding." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18400 +#: guix-git/doc/guix.texi:18762 #, no-wrap msgid "@code{gateway-ports?} (default: @code{#f})" msgstr "@code{gateway-ports?} (padrão: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18402 +#: guix-git/doc/guix.texi:18764 msgid "Whether to allow gateway ports." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18403 +#: guix-git/doc/guix.texi:18765 #, no-wrap msgid "@code{challenge-response-authentication?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18406 +#: guix-git/doc/guix.texi:18768 msgid "Specifies whether challenge response authentication is allowed (e.g.@: via PAM)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18407 +#: guix-git/doc/guix.texi:18769 #, no-wrap msgid "@code{use-pam?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18413 +#: guix-git/doc/guix.texi:18775 msgid "Enables the Pluggable Authentication Module interface. If set to @code{#t}, this will enable PAM authentication using @code{challenge-response-authentication?} and @code{password-authentication?}, in addition to PAM account and session module processing for all authentication types." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18418 +#: guix-git/doc/guix.texi:18780 msgid "Because PAM challenge response authentication usually serves an equivalent role to password authentication, you should disable either @code{challenge-response-authentication?} or @code{password-authentication?}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18419 +#: guix-git/doc/guix.texi:18781 #, no-wrap msgid "@code{print-last-log?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18422 +#: guix-git/doc/guix.texi:18784 msgid "Specifies whether @command{sshd} should print the date and time of the last user login when a user logs in interactively." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18423 +#: guix-git/doc/guix.texi:18785 #, no-wrap msgid "@code{subsystems} (default: @code{'((\"sftp\" \"internal-sftp\"))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18425 +#: guix-git/doc/guix.texi:18787 msgid "Configures external subsystems (e.g.@: file transfer daemon)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18429 +#: guix-git/doc/guix.texi:18791 msgid "This is a list of two-element lists, each of which containing the subsystem name and a command (with optional arguments) to execute upon subsystem request." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18432 +#: guix-git/doc/guix.texi:18794 msgid "The command @command{internal-sftp} implements an in-process SFTP server. Alternatively, one can specify the @command{sftp-server} command:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18437 +#: guix-git/doc/guix.texi:18799 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -32697,28 +33334,28 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18439 +#: guix-git/doc/guix.texi:18801 #, no-wrap msgid "@code{accepted-environment} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18441 +#: guix-git/doc/guix.texi:18803 msgid "List of strings describing which environment variables may be exported." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18444 +#: guix-git/doc/guix.texi:18806 msgid "Each string gets on its own line. See the @code{AcceptEnv} option in @code{man sshd_config}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18449 +#: guix-git/doc/guix.texi:18811 msgid "This example allows ssh-clients to export the @env{COLORTERM} variable. It is set by terminal emulators, which support colors. You can use it in your shell's resource file to enable colors for the prompt and commands if this variable is set." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18454 +#: guix-git/doc/guix.texi:18816 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -32727,30 +33364,30 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18456 +#: guix-git/doc/guix.texi:18818 #, no-wrap msgid "@code{authorized-keys} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18457 +#: guix-git/doc/guix.texi:18819 #, no-wrap msgid "authorized keys, SSH" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18458 +#: guix-git/doc/guix.texi:18820 #, no-wrap msgid "SSH authorized keys" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18462 +#: guix-git/doc/guix.texi:18824 msgid "This is the list of authorized keys. Each element of the list is a user name followed by one or more file-like objects that represent SSH public keys. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18469 +#: guix-git/doc/guix.texi:18831 #, no-wrap msgid "" "(openssh-configuration\n" @@ -32761,45 +33398,45 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18474 +#: guix-git/doc/guix.texi:18836 msgid "registers the specified public keys for user accounts @code{rekado}, @code{chris}, and @code{root}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18477 +#: guix-git/doc/guix.texi:18839 msgid "Additional authorized keys can be specified @i{via} @code{service-extension}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18480 +#: guix-git/doc/guix.texi:18842 msgid "Note that this does @emph{not} interfere with the use of @file{~/.ssh/authorized_keys}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18481 guix-git/doc/guix.texi:18912 +#: guix-git/doc/guix.texi:18843 guix-git/doc/guix.texi:19274 #, no-wrap msgid "@code{log-level} (default: @code{'info})" msgstr "@code{log-level} (default: @code{'info})" #. type: table -#: guix-git/doc/guix.texi:18485 +#: guix-git/doc/guix.texi:18847 msgid "This is a symbol specifying the logging level: @code{quiet}, @code{fatal}, @code{error}, @code{info}, @code{verbose}, @code{debug}, etc. See the man page for @file{sshd_config} for the full list of level names." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18486 guix-git/doc/guix.texi:21328 -#: guix-git/doc/guix.texi:26469 +#: guix-git/doc/guix.texi:18848 guix-git/doc/guix.texi:21690 +#: guix-git/doc/guix.texi:26806 #, no-wrap msgid "@code{extra-content} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18491 +#: guix-git/doc/guix.texi:18853 msgid "This field can be used to append arbitrary text to the configuration file. It is especially useful for elaborate configurations that cannot be expressed otherwise. This configuration, for example, would generally disable root logins, but permit them from one specific IP address:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18497 +#: guix-git/doc/guix.texi:18859 #, no-wrap msgid "" "(openssh-configuration\n" @@ -32809,23 +33446,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18502 +#: guix-git/doc/guix.texi:18864 #, no-wrap msgid "{Scheme Procedure} dropbear-service [@var{config}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18506 +#: guix-git/doc/guix.texi:18868 msgid "Run the @uref{https://matt.ucc.asn.au/dropbear/dropbear.html,Dropbear SSH daemon} with the given @var{config}, a @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18509 +#: guix-git/doc/guix.texi:18871 msgid "For example, to specify a Dropbear service listening on port 1234, add this call to the operating system's @code{services} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18513 +#: guix-git/doc/guix.texi:18875 #, no-wrap msgid "" "(dropbear-service (dropbear-configuration\n" @@ -32833,110 +33470,110 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18516 +#: guix-git/doc/guix.texi:18878 #, no-wrap msgid "{Data Type} dropbear-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18518 +#: guix-git/doc/guix.texi:18880 msgid "This data type represents the configuration of a Dropbear SSH daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18520 +#: guix-git/doc/guix.texi:18882 #, no-wrap msgid "@code{dropbear} (default: @var{dropbear})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18522 +#: guix-git/doc/guix.texi:18884 msgid "The Dropbear package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18523 +#: guix-git/doc/guix.texi:18885 #, no-wrap msgid "@code{port-number} (default: 22)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18525 +#: guix-git/doc/guix.texi:18887 msgid "The TCP port where the daemon waits for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18526 +#: guix-git/doc/guix.texi:18888 #, no-wrap msgid "@code{syslog-output?} (default: @code{#t})" msgstr "@code{syslog-output?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18528 +#: guix-git/doc/guix.texi:18890 msgid "Whether to enable syslog output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18529 +#: guix-git/doc/guix.texi:18891 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/dropbear.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18531 +#: guix-git/doc/guix.texi:18893 msgid "File name of the daemon's PID file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18532 +#: guix-git/doc/guix.texi:18894 #, no-wrap msgid "@code{root-login?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18534 +#: guix-git/doc/guix.texi:18896 msgid "Whether to allow @code{root} logins." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18537 +#: guix-git/doc/guix.texi:18899 msgid "Whether to allow empty passwords." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18540 +#: guix-git/doc/guix.texi:18902 msgid "Whether to enable password-based authentication." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18543 +#: guix-git/doc/guix.texi:18905 #, no-wrap msgid "AutoSSH" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18544 +#: guix-git/doc/guix.texi:18906 #, no-wrap msgid "{Scheme Variable} autossh-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18552 +#: guix-git/doc/guix.texi:18914 msgid "This is the type for the @uref{https://www.harding.motd.ca/autossh, AutoSSH} program that runs a copy of @command{ssh} and monitors it, restarting it as necessary should it die or stop passing traffic. AutoSSH can be run manually from the command-line by passing arguments to the binary @command{autossh} from the package @code{autossh}, but it can also be run as a Guix service. This latter use case is documented here." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18556 +#: guix-git/doc/guix.texi:18918 msgid "AutoSSH can be used to forward local traffic to a remote machine using an SSH tunnel, and it respects the @file{~/.ssh/config} of the user it is run as." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18561 +#: guix-git/doc/guix.texi:18923 msgid "For example, to specify a service running autossh as the user @code{pino} and forwarding all local connections to port @code{8081} to @code{remote:8081} using an SSH tunnel, add this call to the operating system's @code{services} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18567 +#: guix-git/doc/guix.texi:18929 #, no-wrap msgid "" "(service autossh-service-type\n" @@ -32946,139 +33583,139 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18570 +#: guix-git/doc/guix.texi:18932 #, no-wrap msgid "{Data Type} autossh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18572 +#: guix-git/doc/guix.texi:18934 msgid "This data type represents the configuration of an AutoSSH service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18575 +#: guix-git/doc/guix.texi:18937 #, no-wrap msgid "@code{user} (default @code{\"autossh\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18578 +#: guix-git/doc/guix.texi:18940 msgid "The user as which the AutoSSH service is to be run. This assumes that the specified user exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18579 +#: guix-git/doc/guix.texi:18941 #, no-wrap msgid "@code{poll} (default @code{600})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18581 +#: guix-git/doc/guix.texi:18943 msgid "Specifies the connection poll time in seconds." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18582 +#: guix-git/doc/guix.texi:18944 #, no-wrap msgid "@code{first-poll} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18588 +#: guix-git/doc/guix.texi:18950 msgid "Specifies how many seconds AutoSSH waits before the first connection test. After this first test, polling is resumed at the pace defined in @code{poll}. When set to @code{#f}, the first poll is not treated specially and will also use the connection poll specified in @code{poll}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18589 +#: guix-git/doc/guix.texi:18951 #, no-wrap msgid "@code{gate-time} (default @code{30})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18592 +#: guix-git/doc/guix.texi:18954 msgid "Specifies how many seconds an SSH connection must be active before it is considered successful." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18593 +#: guix-git/doc/guix.texi:18955 #, no-wrap msgid "@code{log-level} (default @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18596 +#: guix-git/doc/guix.texi:18958 msgid "The log level, corresponding to the levels used by syslog---so @code{0} is the most silent while @code{7} is the chattiest." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18597 +#: guix-git/doc/guix.texi:18959 #, no-wrap msgid "@code{max-start} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18600 +#: guix-git/doc/guix.texi:18962 msgid "The maximum number of times SSH may be (re)started before AutoSSH exits. When set to @code{#f}, no maximum is configured and AutoSSH may restart indefinitely." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18601 +#: guix-git/doc/guix.texi:18963 #, no-wrap msgid "@code{message} (default @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18603 +#: guix-git/doc/guix.texi:18965 msgid "The message to append to the echo message sent when testing connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18604 +#: guix-git/doc/guix.texi:18966 #, no-wrap msgid "@code{port} (default @code{\"0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18614 +#: guix-git/doc/guix.texi:18976 msgid "The ports used for monitoring the connection. When set to @code{\"0\"}, monitoring is disabled. When set to @code{\"@var{n}\"} where @var{n} is a positive integer, ports @var{n} and @var{n}+1 are used for monitoring the connection, such that port @var{n} is the base monitoring port and @code{n+1} is the echo port. When set to @code{\"@var{n}:@var{m}\"} where @var{n} and @var{m} are positive integers, the ports @var{n} and @var{m} are used for monitoring the connection, such that port @var{n} is the base monitoring port and @var{m} is the echo port." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18615 +#: guix-git/doc/guix.texi:18977 #, no-wrap msgid "@code{ssh-options} (default @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18619 +#: guix-git/doc/guix.texi:18981 msgid "The list of command-line arguments to pass to @command{ssh} when it is run. Options @option{-f} and @option{-M} are reserved for AutoSSH and may cause undefined behaviour." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18623 +#: guix-git/doc/guix.texi:18985 #, no-wrap msgid "WebSSH" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18624 +#: guix-git/doc/guix.texi:18986 #, no-wrap msgid "{Scheme Variable} webssh-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18630 +#: guix-git/doc/guix.texi:18992 msgid "This is the type for the @uref{https://webssh.huashengdun.org/, WebSSH} program that runs a web SSH client. WebSSH can be run manually from the command-line by passing arguments to the binary @command{wssh} from the package @code{webssh}, but it can also be run as a Guix service. This latter use case is documented here." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18636 +#: guix-git/doc/guix.texi:18998 msgid "For example, to specify a service running WebSSH on loopback interface on port @code{8888} with reject policy with a list of allowed to connection hosts, and NGINX as a reverse-proxy to this service listening for HTTPS connection, add this call to the operating system's @code{services} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18644 +#: guix-git/doc/guix.texi:19006 #, no-wrap msgid "" "(service webssh-service-type\n" @@ -33091,7 +33728,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18660 +#: guix-git/doc/guix.texi:19022 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -33112,128 +33749,128 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18663 +#: guix-git/doc/guix.texi:19025 #, no-wrap msgid "{Data Type} webssh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18665 +#: guix-git/doc/guix.texi:19027 msgid "Data type representing the configuration for @code{webssh-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18667 +#: guix-git/doc/guix.texi:19029 #, no-wrap msgid "@code{package} (default: @var{webssh})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18669 +#: guix-git/doc/guix.texi:19031 msgid "@code{webssh} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18670 +#: guix-git/doc/guix.texi:19032 #, no-wrap msgid "@code{user-name} (default: @var{\"webssh\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18673 +#: guix-git/doc/guix.texi:19035 msgid "User name or user ID that file transfers to and from that module should take place." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18674 +#: guix-git/doc/guix.texi:19036 #, no-wrap msgid "@code{group-name} (default: @var{\"webssh\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18677 +#: guix-git/doc/guix.texi:19039 #, no-wrap msgid "@code{address} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18679 +#: guix-git/doc/guix.texi:19041 msgid "IP address on which @command{webssh} listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18680 +#: guix-git/doc/guix.texi:19042 #, no-wrap msgid "@code{port} (default: @var{8888})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18682 +#: guix-git/doc/guix.texi:19044 msgid "TCP port on which @command{webssh} listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18683 +#: guix-git/doc/guix.texi:19045 #, no-wrap msgid "@code{policy} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18685 +#: guix-git/doc/guix.texi:19047 msgid "Connection policy. @var{reject} policy requires to specify @var{known-hosts}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18686 +#: guix-git/doc/guix.texi:19048 #, no-wrap msgid "@code{known-hosts} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18688 +#: guix-git/doc/guix.texi:19050 msgid "List of hosts which allowed for SSH connection from @command{webssh}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18689 +#: guix-git/doc/guix.texi:19051 #, no-wrap msgid "@code{log-file} (default: @file{\"/var/log/webssh.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18691 +#: guix-git/doc/guix.texi:19053 msgid "Name of the file where @command{webssh} writes its log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18692 +#: guix-git/doc/guix.texi:19054 #, no-wrap msgid "@code{log-level} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18694 +#: guix-git/doc/guix.texi:19056 msgid "Logging level." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18698 +#: guix-git/doc/guix.texi:19060 #, no-wrap msgid "{Scheme Variable} %facebook-host-aliases" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18704 +#: guix-git/doc/guix.texi:19066 msgid "This variable contains a string for use in @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). Each line contains a entry that maps a known server name of the Facebook on-line service---e.g., @code{www.facebook.com}---to the local host---@code{127.0.0.1} or its IPv6 equivalent, @code{::1}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18708 +#: guix-git/doc/guix.texi:19070 msgid "This variable is typically used in the @code{hosts-file} field of an @code{operating-system} declaration (@pxref{operating-system Reference, @file{/etc/hosts}}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18721 +#: guix-git/doc/guix.texi:19083 #, no-wrap msgid "" "(operating-system\n" @@ -33248,176 +33885,176 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18725 +#: guix-git/doc/guix.texi:19087 msgid "This mechanism can prevent programs running locally, such as Web browsers, from accessing Facebook." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18728 +#: guix-git/doc/guix.texi:19090 msgid "The @code{(gnu services avahi)} provides the following definition." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18729 +#: guix-git/doc/guix.texi:19091 #, no-wrap msgid "{Scheme Variable} avahi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18734 +#: guix-git/doc/guix.texi:19096 msgid "This is the service that runs @command{avahi-daemon}, a system-wide mDNS/DNS-SD responder that allows for service discovery and ``zero-configuration'' host name lookups (see @uref{https://avahi.org/}). Its value must be an @code{avahi-configuration} record---see below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18739 +#: guix-git/doc/guix.texi:19101 msgid "This service extends the name service cache daemon (nscd) so that it can resolve @code{.local} host names using @uref{https://0pointer.de/lennart/projects/nss-mdns/, nss-mdns}. @xref{Name Service Switch}, for information on host name resolution." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18742 +#: guix-git/doc/guix.texi:19104 msgid "Additionally, add the @var{avahi} package to the system profile so that commands such as @command{avahi-browse} are directly usable." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18744 +#: guix-git/doc/guix.texi:19106 #, no-wrap msgid "{Data Type} avahi-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18746 +#: guix-git/doc/guix.texi:19108 msgid "Data type representation the configuration for Avahi." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18749 +#: guix-git/doc/guix.texi:19111 #, no-wrap msgid "@code{host-name} (default: @code{#f})" msgstr "@code{host-name} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18752 +#: guix-git/doc/guix.texi:19114 msgid "If different from @code{#f}, use that as the host name to publish for this machine; otherwise, use the machine's actual host name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18753 guix-git/doc/guix.texi:29132 +#: guix-git/doc/guix.texi:19115 guix-git/doc/guix.texi:29469 #, no-wrap msgid "@code{publish?} (default: @code{#t})" msgstr "@code{publish?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18756 +#: guix-git/doc/guix.texi:19118 msgid "When true, allow host names and services to be published (broadcast) over the network." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18757 +#: guix-git/doc/guix.texi:19119 #, no-wrap msgid "@code{publish-workstation?} (default: @code{#t})" msgstr "@code{publish-workstation?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18761 +#: guix-git/doc/guix.texi:19123 msgid "When true, @command{avahi-daemon} publishes the machine's host name and IP address via mDNS on the local network. To view the host names published on your local network, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18764 +#: guix-git/doc/guix.texi:19126 #, no-wrap msgid "avahi-browse _workstation._tcp\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18766 +#: guix-git/doc/guix.texi:19128 #, no-wrap msgid "@code{wide-area?} (default: @code{#f})" msgstr "@code{wide-area?} (padrão: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18768 +#: guix-git/doc/guix.texi:19130 msgid "When true, DNS-SD over unicast DNS is enabled." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18769 +#: guix-git/doc/guix.texi:19131 #, no-wrap msgid "@code{ipv4?} (default: @code{#t})" msgstr "@code{ipv4?} (default: @code{#t})" #. type: itemx -#: guix-git/doc/guix.texi:18770 +#: guix-git/doc/guix.texi:19132 #, no-wrap msgid "@code{ipv6?} (default: @code{#t})" msgstr "@code{ipv6?} (default: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:18772 +#: guix-git/doc/guix.texi:19134 msgid "These fields determine whether to use IPv4/IPv6 sockets." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18773 +#: guix-git/doc/guix.texi:19135 #, no-wrap msgid "@code{domains-to-browse} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18775 +#: guix-git/doc/guix.texi:19137 msgid "This is a list of domains to browse." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18778 +#: guix-git/doc/guix.texi:19140 #, no-wrap msgid "{Scheme Variable} openvswitch-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18782 +#: guix-git/doc/guix.texi:19144 msgid "This is the type of the @uref{https://www.openvswitch.org, Open vSwitch} service, whose value should be an @code{openvswitch-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18784 +#: guix-git/doc/guix.texi:19146 #, no-wrap msgid "{Data Type} openvswitch-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18788 +#: guix-git/doc/guix.texi:19150 msgid "Data type representing the configuration of Open vSwitch, a multilayer virtual switch which is designed to enable massive network automation through programmatic extension." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18790 +#: guix-git/doc/guix.texi:19152 #, no-wrap msgid "@code{package} (default: @var{openvswitch})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18792 +#: guix-git/doc/guix.texi:19154 msgid "Package object of the Open vSwitch." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18796 +#: guix-git/doc/guix.texi:19158 #, no-wrap msgid "{Scheme Variable} pagekite-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18801 +#: guix-git/doc/guix.texi:19163 msgid "This is the service type for the @uref{https://pagekite.net, PageKite} service, a tunneling solution for making localhost servers publicly visible, even from behind restrictive firewalls or NAT without forwarded ports. The value for this service type is a @code{pagekite-configuration} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18803 +#: guix-git/doc/guix.texi:19165 msgid "Here's an example exposing the local HTTP and SSH daemons:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18810 +#: guix-git/doc/guix.texi:19172 #, no-wrap msgid "" "(service pagekite-service-type\n" @@ -33428,110 +34065,110 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18813 +#: guix-git/doc/guix.texi:19175 #, no-wrap msgid "{Data Type} pagekite-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18815 +#: guix-git/doc/guix.texi:19177 msgid "Data type representing the configuration of PageKite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18817 +#: guix-git/doc/guix.texi:19179 #, no-wrap msgid "@code{package} (default: @var{pagekite})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18819 +#: guix-git/doc/guix.texi:19181 msgid "Package object of PageKite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18820 +#: guix-git/doc/guix.texi:19182 #, no-wrap msgid "@code{kitename} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18822 +#: guix-git/doc/guix.texi:19184 msgid "PageKite name for authenticating to the frontend server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18823 +#: guix-git/doc/guix.texi:19185 #, no-wrap msgid "@code{kitesecret} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18826 +#: guix-git/doc/guix.texi:19188 msgid "Shared secret for authenticating to the frontend server. You should probably put this inside @code{extra-file} instead." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18827 +#: guix-git/doc/guix.texi:19189 #, no-wrap msgid "@code{frontend} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18830 +#: guix-git/doc/guix.texi:19192 msgid "Connect to the named PageKite frontend server instead of the @uref{https://pagekite.net,,pagekite.net} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18831 +#: guix-git/doc/guix.texi:19193 #, no-wrap msgid "@code{kites} (default: @code{'(\"http:@@kitename:localhost:80:@@kitesecret\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18834 +#: guix-git/doc/guix.texi:19196 msgid "List of service kites to use. Exposes HTTP on port 80 by default. The format is @code{proto:kitename:host:port:secret}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18835 +#: guix-git/doc/guix.texi:19197 #, no-wrap msgid "@code{extra-file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18838 +#: guix-git/doc/guix.texi:19200 msgid "Extra configuration file to read, which you are expected to create manually. Use this to add additional options and manage shared secrets out-of-band." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18842 +#: guix-git/doc/guix.texi:19204 #, no-wrap msgid "{Scheme Variable} yggdrasil-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18846 +#: guix-git/doc/guix.texi:19208 msgid "The service type for connecting to the @uref{https://yggdrasil-network.github.io/, Yggdrasil network}, an early-stage implementation of a fully end-to-end encrypted IPv6 network." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:18853 +#: guix-git/doc/guix.texi:19215 msgid "Yggdrasil provides name-independent routing with cryptographically generated addresses. Static addressing means you can keep the same address as long as you want, even if you move to a new location, or generate a new address (by generating new keys) whenever you want. @uref{https://yggdrasil-network.github.io/2018/07/28/addressing.html}" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18857 +#: guix-git/doc/guix.texi:19219 msgid "Pass it a value of @code{yggdrasil-configuration} to connect it to public peers and/or local peers." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18861 +#: guix-git/doc/guix.texi:19223 msgid "Here is an example using public peers and a static address. The static signing and encryption keys are defined in @file{/etc/yggdrasil-private.conf} (the default value for @code{config-file})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18873 +#: guix-git/doc/guix.texi:19235 #, no-wrap msgid "" ";; part of the operating-system declaration\n" @@ -33547,7 +34184,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18880 +#: guix-git/doc/guix.texi:19242 #, no-wrap msgid "" "# sample content for /etc/yggdrasil-private.conf\n" @@ -33559,7 +34196,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18883 +#: guix-git/doc/guix.texi:19245 #, no-wrap msgid "" " # Your private encryption key. DO NOT share this with anyone!\n" @@ -33568,7 +34205,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18887 +#: guix-git/doc/guix.texi:19249 #, no-wrap msgid "" " # Your public signing key. You should not ordinarily need to share\n" @@ -33578,7 +34215,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18891 +#: guix-git/doc/guix.texi:19253 #, no-wrap msgid "" " # Your private signing key. DO NOT share this with anyone!\n" @@ -33587,124 +34224,124 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18894 +#: guix-git/doc/guix.texi:19256 #, no-wrap msgid "{Data Type} yggdrasil-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18896 +#: guix-git/doc/guix.texi:19258 msgid "Data type representing the configuration of Yggdrasil." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18898 +#: guix-git/doc/guix.texi:19260 #, no-wrap msgid "@code{package} (default: @code{yggdrasil})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18900 +#: guix-git/doc/guix.texi:19262 msgid "Package object of Yggdrasil." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18901 +#: guix-git/doc/guix.texi:19263 #, no-wrap msgid "@code{json-config} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18907 +#: guix-git/doc/guix.texi:19269 msgid "Contents of @file{/etc/yggdrasil.conf}. Will be merged with @file{/etc/yggdrasil-private.conf}. Note that these settings are stored in the Guix store, which is readable to all users. @strong{Do not store your private keys in it}. See the output of @code{yggdrasil -genconf} for a quick overview of valid keys and their default values." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18908 +#: guix-git/doc/guix.texi:19270 #, no-wrap msgid "@code{autoconf?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18911 +#: guix-git/doc/guix.texi:19273 msgid "Whether to use automatic mode. Enabling it makes Yggdrasil use adynamic IP and peer with IPv6 neighbors." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18914 +#: guix-git/doc/guix.texi:19276 msgid "How much detail to include in logs. Use @code{'debug} for more detail." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18915 +#: guix-git/doc/guix.texi:19277 #, no-wrap msgid "@code{log-to} (default: @code{'stdout})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18919 +#: guix-git/doc/guix.texi:19281 msgid "Where to send logs. By default, the service logs standard output to @file{/var/log/yggdrasil.log}. The alternative is @code{'syslog}, which sends output to the running syslog service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18920 +#: guix-git/doc/guix.texi:19282 #, no-wrap msgid "@code{config-file} (default: @code{\"/etc/yggdrasil-private.conf\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18927 +#: guix-git/doc/guix.texi:19289 msgid "What HJSON file to load sensitive data from. This is where private keys should be stored, which are necessary to specify if you don't want a randomized address after each restart. Use @code{#f} to disable. Options defined in this file take precedence over @code{json-config}. Use the output of @code{yggdrasil -genconf} as a starting point. To configure a static address, delete everything except these options:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18929 +#: guix-git/doc/guix.texi:19291 #, no-wrap msgid "EncryptionPublicKey" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18930 +#: guix-git/doc/guix.texi:19292 #, no-wrap msgid "EncryptionPrivateKey" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18931 +#: guix-git/doc/guix.texi:19293 #, no-wrap msgid "SigningPublicKey" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18932 +#: guix-git/doc/guix.texi:19294 #, no-wrap msgid "SigningPrivateKey" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18937 +#: guix-git/doc/guix.texi:19299 #, no-wrap msgid "IPFS" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18938 +#: guix-git/doc/guix.texi:19300 #, fuzzy, no-wrap msgid "{Scheme Variable} ipfs-service-type" msgstr "guix-publish-service-type" #. type: defvr -#: guix-git/doc/guix.texi:18942 +#: guix-git/doc/guix.texi:19304 msgid "The service type for connecting to the @uref{https://ipfs.io,IPFS network}, a global, versioned, peer-to-peer file system. Pass it a @code{ipfs-configuration} to change the ports used for the gateway and API." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18944 +#: guix-git/doc/guix.texi:19306 msgid "Here's an example configuration, using some non-standard ports:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18950 +#: guix-git/doc/guix.texi:19312 #, no-wrap msgid "" "(service ipfs-service-type\n" @@ -33714,69 +34351,69 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18953 +#: guix-git/doc/guix.texi:19315 #, fuzzy, no-wrap msgid "{Data Type} ipfs-configuration" msgstr "build-machine {Data Type}" #. type: deftp -#: guix-git/doc/guix.texi:18955 +#: guix-git/doc/guix.texi:19317 #, fuzzy msgid "Data type representing the configuration of IPFS." msgstr "Gerencie a configuração do sistema operacional." #. type: item -#: guix-git/doc/guix.texi:18957 +#: guix-git/doc/guix.texi:19319 #, fuzzy, no-wrap msgid "@code{package} (default: @code{go-ipfs})" msgstr "@code{cache} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:18959 +#: guix-git/doc/guix.texi:19321 msgid "Package object of IPFS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18960 +#: guix-git/doc/guix.texi:19322 #, fuzzy, no-wrap msgid "@code{gateway} (default: @code{\"/ip4/127.0.0.1/tcp/8082\"})" msgstr "@code{porta} (default: @code{15000})" #. type: table -#: guix-git/doc/guix.texi:18962 +#: guix-git/doc/guix.texi:19324 msgid "Address of the gateway, in ‘multiaddress’ format." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18963 +#: guix-git/doc/guix.texi:19325 #, fuzzy, no-wrap msgid "@code{api} (default: @code{\"/ip4/127.0.0.1/tcp/5001\"})" msgstr "@code{porta} (default: @code{15000})" #. type: table -#: guix-git/doc/guix.texi:18965 +#: guix-git/doc/guix.texi:19327 msgid "Address of the API endpoint, in ‘multiaddress’ format." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18968 +#: guix-git/doc/guix.texi:19330 #, no-wrap msgid "keepalived" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18969 +#: guix-git/doc/guix.texi:19331 #, no-wrap msgid "{Scheme Variable} keepalived-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18974 +#: guix-git/doc/guix.texi:19336 msgid "This is the type for the @uref{https://www.keepalived.org/, Keepalived} routing software, @command{keepalived}. Its value must be an @code{keepalived-configuration} record as in this example for master machine:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18979 +#: guix-git/doc/guix.texi:19341 #, no-wrap msgid "" "(service keepalived-service-type\n" @@ -33785,12 +34422,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18982 +#: guix-git/doc/guix.texi:19344 msgid "where @file{keepalived-master.conf}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18994 +#: guix-git/doc/guix.texi:19356 #, no-wrap msgid "" "vrrp_instance my-group @{\n" @@ -33806,12 +34443,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18997 +#: guix-git/doc/guix.texi:19359 msgid "and for backup machine:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19002 +#: guix-git/doc/guix.texi:19364 #, no-wrap msgid "" "(service keepalived-service-type\n" @@ -33820,12 +34457,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19005 +#: guix-git/doc/guix.texi:19367 msgid "where @file{keepalived-backup.conf}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:19017 +#: guix-git/doc/guix.texi:19379 #, no-wrap msgid "" "vrrp_instance my-group @{\n" @@ -33841,135 +34478,135 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19023 +#: guix-git/doc/guix.texi:19385 #, no-wrap msgid "unattended upgrades" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19024 +#: guix-git/doc/guix.texi:19386 #, no-wrap msgid "upgrades, unattended" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19029 +#: guix-git/doc/guix.texi:19391 msgid "Guix provides a service to perform @emph{unattended upgrades}: periodically, the system automatically reconfigures itself from the latest Guix. Guix System has several properties that make unattended upgrades safe:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19034 +#: guix-git/doc/guix.texi:19396 msgid "upgrades are transactional (either the upgrade succeeds or it fails, but you cannot end up with an ``in-between'' system state);" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19038 +#: guix-git/doc/guix.texi:19400 msgid "the upgrade log is kept---you can view it with @command{guix system list-generations}---and you can roll back to any previous generation, should the upgraded system fail to behave as intended;" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19041 +#: guix-git/doc/guix.texi:19403 msgid "channel code is authenticated so you know you can only run genuine code (@pxref{Channels});" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19044 +#: guix-git/doc/guix.texi:19406 msgid "@command{guix system reconfigure} prevents downgrades, which makes it immune to @dfn{downgrade attacks}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19049 +#: guix-git/doc/guix.texi:19411 msgid "To set up unattended upgrades, add an instance of @code{unattended-upgrade-service-type} like the one below to the list of your operating system services:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19052 +#: guix-git/doc/guix.texi:19414 #, no-wrap msgid "(service unattended-upgrade-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19059 +#: guix-git/doc/guix.texi:19421 msgid "The defaults above set up weekly upgrades: every Sunday at midnight. You do not need to provide the operating system configuration file: it uses @file{/run/current-system/configuration.scm}, which ensures it always uses your latest configuration---@pxref{provenance-service-type}, for more information about this file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19065 +#: guix-git/doc/guix.texi:19427 msgid "There are several things that can be configured, in particular the periodicity and services (daemons) to be restarted upon completion. When the upgrade is successful, the service takes care of deleting system generations older that some threshold, as per @command{guix system delete-generations}. See the reference below for details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19069 +#: guix-git/doc/guix.texi:19431 msgid "To ensure that upgrades are actually happening, you can run @command{guix system describe}. To investigate upgrade failures, visit the unattended upgrade log file (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19070 +#: guix-git/doc/guix.texi:19432 #, no-wrap msgid "{Scheme Variable} unattended-upgrade-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19074 +#: guix-git/doc/guix.texi:19436 msgid "This is the service type for unattended upgrades. It sets up an mcron job (@pxref{Scheduled Job Execution}) that runs @command{guix system reconfigure} from the latest version of the specified channels." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19077 +#: guix-git/doc/guix.texi:19439 msgid "Its value must be a @code{unattended-upgrade-configuration} record (see below)." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19079 +#: guix-git/doc/guix.texi:19441 #, no-wrap msgid "{Data Type} unattended-upgrade-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19082 +#: guix-git/doc/guix.texi:19444 msgid "This data type represents the configuration of the unattended upgrade service. The following fields are available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19084 +#: guix-git/doc/guix.texi:19446 #, no-wrap msgid "@code{schedule} (default: @code{\"30 01 * * 0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19088 +#: guix-git/doc/guix.texi:19450 msgid "This is the schedule of upgrades, expressed as a gexp containing an mcron job schedule (@pxref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19089 +#: guix-git/doc/guix.texi:19451 #, no-wrap msgid "@code{channels} (default: @code{#~%default-channels})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19093 +#: guix-git/doc/guix.texi:19455 msgid "This gexp specifies the channels to use for the upgrade (@pxref{Channels}). By default, the tip of the official @code{guix} channel is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19094 +#: guix-git/doc/guix.texi:19456 #, no-wrap msgid "@code{operating-system-file} (default: @code{\"/run/current-system/configuration.scm\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19097 +#: guix-git/doc/guix.texi:19459 msgid "This field specifies the operating system configuration file to use. The default is to reuse the config file of the current configuration." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19103 +#: guix-git/doc/guix.texi:19465 msgid "There are cases, though, where referring to @file{/run/current-system/configuration.scm} is not enough, for instance because that file refers to extra files (SSH public keys, extra configuration files, etc.) @i{via} @code{local-file} and similar constructs. For those cases, we recommend something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19109 +#: guix-git/doc/guix.texi:19471 #, no-wrap msgid "" "(unattended-upgrade-configuration\n" @@ -33979,313 +34616,313 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19116 +#: guix-git/doc/guix.texi:19478 msgid "The effect here is to import all of the current directory into the store, and to refer to @file{config.scm} within that directory. Therefore, uses of @code{local-file} within @file{config.scm} will work as expected. @xref{G-Expressions}, for information about @code{local-file} and @code{file-append}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19117 +#: guix-git/doc/guix.texi:19479 #, no-wrap msgid "@code{services-to-restart} (default: @code{'(mcron)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19120 +#: guix-git/doc/guix.texi:19482 msgid "This field specifies the Shepherd services to restart when the upgrade completes." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19127 +#: guix-git/doc/guix.texi:19489 msgid "Those services are restarted right away upon completion, as with @command{herd restart}, which ensures that the latest version is running---remember that by default @command{guix system reconfigure} only restarts services that are not currently running, which is conservative: it minimizes disruption but leaves outdated services running." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19131 +#: guix-git/doc/guix.texi:19493 msgid "Use @command{herd status} to find out candidates for restarting. @xref{Services}, for general information about services. Common services to restart would include @code{ntpd} and @code{ssh-daemon}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19134 +#: guix-git/doc/guix.texi:19496 msgid "By default, the @code{mcron} service is restarted. This ensures that the latest version of the unattended upgrade job will be used next time." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19135 +#: guix-git/doc/guix.texi:19497 #, no-wrap msgid "@code{system-expiration} (default: @code{(* 3 30 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19139 +#: guix-git/doc/guix.texi:19501 msgid "This is the expiration time in seconds for system generations. System generations older that this amount of time are deleted with @command{guix system delete-generations} when an upgrade completes." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:19144 +#: guix-git/doc/guix.texi:19506 msgid "The unattended upgrade service does not run the garbage collector. You will probably want to set up your own mcron job to run @command{guix gc} periodically." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19146 +#: guix-git/doc/guix.texi:19508 #, no-wrap msgid "@code{maximum-duration} (default: @code{3600})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19149 +#: guix-git/doc/guix.texi:19511 msgid "Maximum duration in seconds for the upgrade; past that time, the upgrade aborts." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19152 +#: guix-git/doc/guix.texi:19514 msgid "This is primarily useful to ensure the upgrade does not end up rebuilding or re-downloading ``the world''." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19153 +#: guix-git/doc/guix.texi:19515 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/unattended-upgrade.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19155 +#: guix-git/doc/guix.texi:19517 msgid "File where unattended upgrades are logged." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19161 +#: guix-git/doc/guix.texi:19523 #, no-wrap msgid "X11" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19162 +#: guix-git/doc/guix.texi:19524 #, no-wrap msgid "X Window System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19163 guix-git/doc/guix.texi:19436 +#: guix-git/doc/guix.texi:19525 guix-git/doc/guix.texi:19798 #, no-wrap msgid "login manager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19168 +#: guix-git/doc/guix.texi:19530 msgid "Support for the X Window graphical display system---specifically Xorg---is provided by the @code{(gnu services xorg)} module. Note that there is no @code{xorg-service} procedure. Instead, the X server is started by the @dfn{login manager}, by default the GNOME Display Manager (GDM)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19169 +#: guix-git/doc/guix.texi:19531 #, no-wrap msgid "GDM" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19170 +#: guix-git/doc/guix.texi:19532 #, no-wrap msgid "GNOME, login manager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19174 +#: guix-git/doc/guix.texi:19536 msgid "GDM of course allows users to log in into window managers and desktop environments other than GNOME; for those using GNOME, GDM is required for features such as automatic screen locking." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19175 +#: guix-git/doc/guix.texi:19537 #, no-wrap msgid "window manager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19180 +#: guix-git/doc/guix.texi:19542 msgid "To use X11, you must install at least one @dfn{window manager}---for example the @code{windowmaker} or @code{openbox} packages---preferably by adding it to the @code{packages} field of your operating system definition (@pxref{operating-system Reference, system-wide packages})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:19186 +#: guix-git/doc/guix.texi:19548 msgid "wayland-gdm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19186 +#: guix-git/doc/guix.texi:19548 msgid "GDM also supports Wayland: it can itself use Wayland instead of X11 for its user interface, and it can also start Wayland sessions. The former is required for the latter, to enable, set @code{wayland?} to @code{#t} in @code{gdm-configuration}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19187 +#: guix-git/doc/guix.texi:19549 #, no-wrap msgid "{Scheme Variable} gdm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19192 +#: guix-git/doc/guix.texi:19554 msgid "This is the type for the @uref{https://wiki.gnome.org/Projects/GDM/, GNOME Desktop Manager} (GDM), a program that manages graphical display servers and handles graphical user logins. Its value must be a @code{gdm-configuration} (see below)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19193 +#: guix-git/doc/guix.texi:19555 #, no-wrap msgid "session types" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19201 +#: guix-git/doc/guix.texi:19563 msgid "GDM looks for @dfn{session types} described by the @file{.desktop} files in @file{/run/current-system/profile/share/xsessions} (for X11 sessions) and @file{/run/current-system/profile/share/wayland-sessions} (for Wayland sessions) and allows users to choose a session from the log-in screen. Packages such as @code{gnome}, @code{xfce}, @code{i3} and @code{sway} provide @file{.desktop} files; adding them to the system-wide set of packages automatically makes them available at the log-in screen." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19205 +#: guix-git/doc/guix.texi:19567 msgid "In addition, @file{~/.xsession} files are honored. When available, @file{~/.xsession} must be an executable that starts a window manager and/or other X clients." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19207 +#: guix-git/doc/guix.texi:19569 #, no-wrap msgid "{Data Type} gdm-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19209 guix-git/doc/guix.texi:19291 +#: guix-git/doc/guix.texi:19571 guix-git/doc/guix.texi:19653 #, no-wrap msgid "@code{auto-login?} (default: @code{#f})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:19210 +#: guix-git/doc/guix.texi:19572 #, no-wrap msgid "@code{default-user} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19212 +#: guix-git/doc/guix.texi:19574 msgid "When @code{auto-login?} is false, GDM presents a log-in screen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19215 +#: guix-git/doc/guix.texi:19577 msgid "When @code{auto-login?} is true, GDM logs in directly as @code{default-user}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19216 guix-git/doc/guix.texi:25077 -#: guix-git/doc/guix.texi:26786 guix-git/doc/guix.texi:31266 -#: guix-git/doc/guix.texi:31295 guix-git/doc/guix.texi:31324 -#: guix-git/doc/guix.texi:31351 guix-git/doc/guix.texi:31406 -#: guix-git/doc/guix.texi:31431 guix-git/doc/guix.texi:31458 -#: guix-git/doc/guix.texi:31484 guix-git/doc/guix.texi:31526 +#: guix-git/doc/guix.texi:19578 guix-git/doc/guix.texi:25439 +#: guix-git/doc/guix.texi:27123 guix-git/doc/guix.texi:31631 +#: guix-git/doc/guix.texi:31660 guix-git/doc/guix.texi:31689 +#: guix-git/doc/guix.texi:31716 guix-git/doc/guix.texi:31771 +#: guix-git/doc/guix.texi:31796 guix-git/doc/guix.texi:31823 +#: guix-git/doc/guix.texi:31849 guix-git/doc/guix.texi:31891 #, no-wrap msgid "@code{debug?} (default: @code{#f})" msgstr "@code{debug?} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:19218 +#: guix-git/doc/guix.texi:19580 msgid "When true, GDM writes debug messages to its log." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19219 +#: guix-git/doc/guix.texi:19581 #, no-wrap msgid "@code{gnome-shell-assets} (default: ...)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19221 +#: guix-git/doc/guix.texi:19583 msgid "List of GNOME Shell assets needed by GDM: icon theme, fonts, etc." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19222 +#: guix-git/doc/guix.texi:19584 #, no-wrap msgid "@code{xorg-configuration} (default: @code{(xorg-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19224 guix-git/doc/guix.texi:19318 -#: guix-git/doc/guix.texi:19402 +#: guix-git/doc/guix.texi:19586 guix-git/doc/guix.texi:19680 +#: guix-git/doc/guix.texi:19764 msgid "Configuration of the Xorg graphical server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19225 +#: guix-git/doc/guix.texi:19587 #, no-wrap msgid "@code{xsession} (default: @code{(xinitrc)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19227 guix-git/doc/guix.texi:19417 +#: guix-git/doc/guix.texi:19589 guix-git/doc/guix.texi:19779 msgid "Script to run before starting a X session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19228 +#: guix-git/doc/guix.texi:19590 #, no-wrap msgid "@code{dbus-daemon} (default: @code{dbus-daemon-wrapper})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19230 +#: guix-git/doc/guix.texi:19592 msgid "File name of the @code{dbus-daemon} executable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19231 +#: guix-git/doc/guix.texi:19593 #, no-wrap msgid "@code{gdm} (default: @code{gdm})" msgstr "@code{gdm} (default: @code{gdm})" #. type: table -#: guix-git/doc/guix.texi:19233 +#: guix-git/doc/guix.texi:19595 msgid "The GDM package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19234 +#: guix-git/doc/guix.texi:19596 #, fuzzy, no-wrap #| msgid "@code{node} (default: @code{#f})" msgid "@code{wayland?} (default: @code{#f})" msgstr "@code{node} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:19236 +#: guix-git/doc/guix.texi:19598 msgid "When true, enables Wayland in GDM, necessary to use Wayland sessions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19237 +#: guix-git/doc/guix.texi:19599 #, fuzzy, no-wrap msgid "@code{wayland-session} (default: @code{gdm-wayland-session-wrapper})" msgstr "@code{tmpdir} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:19240 +#: guix-git/doc/guix.texi:19602 msgid "The Wayland session wrapper to use, needed to setup the environment." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19243 +#: guix-git/doc/guix.texi:19605 #, no-wrap msgid "{Scheme Variable} slim-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19245 +#: guix-git/doc/guix.texi:19607 msgid "This is the type for the SLiM graphical login manager for X11." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19249 +#: guix-git/doc/guix.texi:19611 msgid "Like GDM, SLiM looks for session types described by @file{.desktop} files and allows users to choose a session from the log-in screen using @kbd{F1}. It also honors @file{~/.xsession} files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19256 +#: guix-git/doc/guix.texi:19618 msgid "Unlike GDM, SLiM does not spawn the user session on a different VT after logging in, which means that you can only start one graphical session. If you want to be able to run multiple graphical sessions at the same time you have to add multiple SLiM services to your system services. The following example shows how to replace the default GDM service with two SLiM services on tty7 and tty8." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19261 +#: guix-git/doc/guix.texi:19623 #, no-wrap msgid "" "(use-modules (gnu services)\n" @@ -34295,7 +34932,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19272 +#: guix-git/doc/guix.texi:19634 #, no-wrap msgid "" "(operating-system\n" @@ -34311,492 +34948,492 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19276 +#: guix-git/doc/guix.texi:19638 #, no-wrap msgid "{Data Type} slim-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19278 +#: guix-git/doc/guix.texi:19640 msgid "Data type representing the configuration of @code{slim-service-type}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19282 +#: guix-git/doc/guix.texi:19644 msgid "Whether to allow logins with empty passwords." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19283 +#: guix-git/doc/guix.texi:19645 #, fuzzy, no-wrap #| msgid "@code{hangup?} (default: @code{#f})" msgid "@code{gnupg?} (default: @code{#f})" msgstr "@code{hangup?} (padrão: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:19290 +#: guix-git/doc/guix.texi:19652 msgid "If enabled, @code{pam-gnupg} will attempt to automatically unlock the user's GPG keys with the login password via @code{gpg-agent}. The keygrips of all keys to be unlocked should be written to @file{~/.pam-gnupg}, and can be queried with @code{gpg -K --with-keygrip}. Presetting passphrases must be enabled by adding @code{allow-preset-passphrase} in @file{~/.gnupg/gpg-agent.conf}." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:19292 +#: guix-git/doc/guix.texi:19654 #, no-wrap msgid "@code{default-user} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19294 +#: guix-git/doc/guix.texi:19656 msgid "When @code{auto-login?} is false, SLiM presents a log-in screen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19297 +#: guix-git/doc/guix.texi:19659 msgid "When @code{auto-login?} is true, SLiM logs in directly as @code{default-user}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19298 +#: guix-git/doc/guix.texi:19660 #, no-wrap msgid "@code{theme} (default: @code{%default-slim-theme})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:19299 +#: guix-git/doc/guix.texi:19661 #, no-wrap msgid "@code{theme-name} (default: @code{%default-slim-theme-name})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19301 +#: guix-git/doc/guix.texi:19663 msgid "The graphical theme to use and its name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19302 +#: guix-git/doc/guix.texi:19664 #, no-wrap msgid "@code{auto-login-session} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19305 +#: guix-git/doc/guix.texi:19667 msgid "If true, this must be the name of the executable to start as the default session---e.g., @code{(file-append windowmaker \"/bin/windowmaker\")}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19309 +#: guix-git/doc/guix.texi:19671 msgid "If false, a session described by one of the available @file{.desktop} files in @code{/run/current-system/profile} and @code{~/.guix-profile} will be used." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:19314 +#: guix-git/doc/guix.texi:19676 msgid "You must install at least one window manager in the system profile or in your user profile. Failing to do that, if @code{auto-login-session} is false, you will be unable to log in." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19316 guix-git/doc/guix.texi:19400 +#: guix-git/doc/guix.texi:19678 guix-git/doc/guix.texi:19762 #, no-wrap msgid "@code{xorg-configuration} (default @code{(xorg-configuration)})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19319 +#: guix-git/doc/guix.texi:19681 #, no-wrap msgid "@code{display} (default @code{\":0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19321 +#: guix-git/doc/guix.texi:19683 msgid "The display on which to start the Xorg graphical server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19322 +#: guix-git/doc/guix.texi:19684 #, no-wrap msgid "@code{vt} (default @code{\"vt7\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19324 +#: guix-git/doc/guix.texi:19686 msgid "The VT on which to start the Xorg graphical server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19325 +#: guix-git/doc/guix.texi:19687 #, no-wrap msgid "@code{xauth} (default: @code{xauth})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19327 +#: guix-git/doc/guix.texi:19689 msgid "The XAuth package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19328 +#: guix-git/doc/guix.texi:19690 #, no-wrap msgid "@code{shepherd} (default: @code{shepherd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19331 +#: guix-git/doc/guix.texi:19693 msgid "The Shepherd package used when invoking @command{halt} and @command{reboot}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19332 +#: guix-git/doc/guix.texi:19694 #, no-wrap msgid "@code{sessreg} (default: @code{sessreg})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19334 +#: guix-git/doc/guix.texi:19696 msgid "The sessreg package used in order to register the session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19335 +#: guix-git/doc/guix.texi:19697 #, no-wrap msgid "@code{slim} (default: @code{slim})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19337 +#: guix-git/doc/guix.texi:19699 msgid "The SLiM package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19340 +#: guix-git/doc/guix.texi:19702 #, no-wrap msgid "{Scheme Variable} %default-theme" msgstr "" #. type: defvrx -#: guix-git/doc/guix.texi:19341 +#: guix-git/doc/guix.texi:19703 #, no-wrap msgid "{Scheme Variable} %default-theme-name" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19343 +#: guix-git/doc/guix.texi:19705 msgid "The default SLiM theme and its name." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19346 guix-git/doc/guix.texi:19453 +#: guix-git/doc/guix.texi:19708 guix-git/doc/guix.texi:19815 #, no-wrap msgid "{Data Type} sddm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19348 +#: guix-git/doc/guix.texi:19710 msgid "This is the data type representing the SDDM service configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19350 +#: guix-git/doc/guix.texi:19712 #, no-wrap msgid "@code{display-server} (default: \"x11\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19353 +#: guix-git/doc/guix.texi:19715 msgid "Select display server to use for the greeter. Valid values are @samp{\"x11\"} or @samp{\"wayland\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19354 +#: guix-git/doc/guix.texi:19716 #, no-wrap msgid "@code{numlock} (default: \"on\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19356 +#: guix-git/doc/guix.texi:19718 msgid "Valid values are @samp{\"on\"}, @samp{\"off\"} or @samp{\"none\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19357 +#: guix-git/doc/guix.texi:19719 #, no-wrap msgid "@code{halt-command} (default @code{#~(string-apppend #$shepherd \"/sbin/halt\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19359 +#: guix-git/doc/guix.texi:19721 msgid "Command to run when halting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19360 +#: guix-git/doc/guix.texi:19722 #, no-wrap msgid "@code{reboot-command} (default @code{#~(string-append #$shepherd \"/sbin/reboot\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19362 +#: guix-git/doc/guix.texi:19724 msgid "Command to run when rebooting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19363 +#: guix-git/doc/guix.texi:19725 #, no-wrap msgid "@code{theme} (default \"maldives\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19366 +#: guix-git/doc/guix.texi:19728 msgid "Theme to use. Default themes provided by SDDM are @samp{\"elarun\"}, @samp{\"maldives\"} or @samp{\"maya\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19367 +#: guix-git/doc/guix.texi:19729 #, no-wrap msgid "@code{themes-directory} (default \"/run/current-system/profile/share/sddm/themes\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19369 +#: guix-git/doc/guix.texi:19731 msgid "Directory to look for themes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19370 +#: guix-git/doc/guix.texi:19732 #, no-wrap msgid "@code{faces-directory} (default \"/run/current-system/profile/share/sddm/faces\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19372 +#: guix-git/doc/guix.texi:19734 msgid "Directory to look for faces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19373 +#: guix-git/doc/guix.texi:19735 #, no-wrap msgid "@code{default-path} (default \"/run/current-system/profile/bin\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19375 +#: guix-git/doc/guix.texi:19737 msgid "Default PATH to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19376 +#: guix-git/doc/guix.texi:19738 #, no-wrap msgid "@code{minimum-uid} (default: 1000)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19378 +#: guix-git/doc/guix.texi:19740 msgid "Minimum UID displayed in SDDM and allowed for log-in." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19379 +#: guix-git/doc/guix.texi:19741 #, no-wrap msgid "@code{maximum-uid} (default: 2000)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19381 +#: guix-git/doc/guix.texi:19743 msgid "Maximum UID to display in SDDM." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19382 +#: guix-git/doc/guix.texi:19744 #, no-wrap msgid "@code{remember-last-user?} (default #t)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19384 +#: guix-git/doc/guix.texi:19746 msgid "Remember last user." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19385 +#: guix-git/doc/guix.texi:19747 #, no-wrap msgid "@code{remember-last-session?} (default #t)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19387 +#: guix-git/doc/guix.texi:19749 msgid "Remember last session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19388 +#: guix-git/doc/guix.texi:19750 #, no-wrap msgid "@code{hide-users} (default \"\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19390 +#: guix-git/doc/guix.texi:19752 msgid "Usernames to hide from SDDM greeter." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19391 +#: guix-git/doc/guix.texi:19753 #, no-wrap msgid "@code{hide-shells} (default @code{#~(string-append #$shadow \"/sbin/nologin\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19393 +#: guix-git/doc/guix.texi:19755 msgid "Users with shells listed will be hidden from the SDDM greeter." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19394 +#: guix-git/doc/guix.texi:19756 #, no-wrap msgid "@code{session-command} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/wayland-session\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19396 +#: guix-git/doc/guix.texi:19758 msgid "Script to run before starting a wayland session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19397 +#: guix-git/doc/guix.texi:19759 #, no-wrap msgid "@code{sessions-directory} (default \"/run/current-system/profile/share/wayland-sessions\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19399 +#: guix-git/doc/guix.texi:19761 msgid "Directory to look for desktop files starting wayland sessions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19403 +#: guix-git/doc/guix.texi:19765 #, no-wrap msgid "@code{xauth-path} (default @code{#~(string-append #$xauth \"/bin/xauth\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19405 +#: guix-git/doc/guix.texi:19767 msgid "Path to xauth." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19406 +#: guix-git/doc/guix.texi:19768 #, no-wrap msgid "@code{xephyr-path} (default @code{#~(string-append #$xorg-server \"/bin/Xephyr\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19408 +#: guix-git/doc/guix.texi:19770 msgid "Path to Xephyr." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19409 +#: guix-git/doc/guix.texi:19771 #, no-wrap msgid "@code{xdisplay-start} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/Xsetup\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19411 +#: guix-git/doc/guix.texi:19773 msgid "Script to run after starting xorg-server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19412 +#: guix-git/doc/guix.texi:19774 #, no-wrap msgid "@code{xdisplay-stop} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/Xstop\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19414 +#: guix-git/doc/guix.texi:19776 msgid "Script to run before stopping xorg-server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19415 +#: guix-git/doc/guix.texi:19777 #, no-wrap msgid "@code{xsession-command} (default: @code{xinitrc})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19418 +#: guix-git/doc/guix.texi:19780 #, no-wrap msgid "@code{xsessions-directory} (default: \"/run/current-system/profile/share/xsessions\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19420 +#: guix-git/doc/guix.texi:19782 msgid "Directory to look for desktop files starting X sessions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19421 +#: guix-git/doc/guix.texi:19783 #, no-wrap msgid "@code{minimum-vt} (default: 7)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19423 +#: guix-git/doc/guix.texi:19785 msgid "Minimum VT to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19424 +#: guix-git/doc/guix.texi:19786 #, no-wrap msgid "@code{auto-login-user} (default \"\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19426 +#: guix-git/doc/guix.texi:19788 msgid "User to use for auto-login." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19427 +#: guix-git/doc/guix.texi:19789 #, no-wrap msgid "@code{auto-login-session} (default \"\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19429 +#: guix-git/doc/guix.texi:19791 msgid "Desktop file to use for auto-login." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19430 +#: guix-git/doc/guix.texi:19792 #, no-wrap msgid "@code{relogin?} (default #f)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19432 +#: guix-git/doc/guix.texi:19794 msgid "Relogin after logout." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19437 +#: guix-git/doc/guix.texi:19799 #, no-wrap msgid "X11 login" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19438 +#: guix-git/doc/guix.texi:19800 #, no-wrap msgid "{Scheme Variable} sddm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19442 +#: guix-git/doc/guix.texi:19804 msgid "This is the type of the service to run the @uref{https://github.com/sddm/sddm,SDDM display manager}. Its value must be a @code{sddm-configuration} record (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19444 +#: guix-git/doc/guix.texi:19806 msgid "Here's an example use:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19450 +#: guix-git/doc/guix.texi:19812 #, no-wrap msgid "" "(service sddm-service-type\n" @@ -34806,265 +35443,265 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19456 +#: guix-git/doc/guix.texi:19818 msgid "This data type represents the configuration of the SDDM login manager. The available fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19458 +#: guix-git/doc/guix.texi:19820 #, no-wrap msgid "@code{sddm} (default: @code{sddm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19460 +#: guix-git/doc/guix.texi:19822 msgid "The SDDM package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19461 +#: guix-git/doc/guix.texi:19823 #, no-wrap msgid "@code{display-server} (default: @code{\"x11\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19463 +#: guix-git/doc/guix.texi:19825 msgid "This must be either @code{\"x11\"} or @code{\"wayland\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19466 +#: guix-git/doc/guix.texi:19828 #, no-wrap msgid "@code{auto-login-user} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19469 +#: guix-git/doc/guix.texi:19831 msgid "If non-empty, this is the user account under which to log in automatically." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19470 +#: guix-git/doc/guix.texi:19832 #, no-wrap msgid "@code{auto-login-session} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19473 +#: guix-git/doc/guix.texi:19835 msgid "If non-empty, this is the @file{.desktop} file name to use as the auto-login session." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19476 +#: guix-git/doc/guix.texi:19838 #, no-wrap msgid "Xorg, configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19477 +#: guix-git/doc/guix.texi:19839 #, no-wrap msgid "{Data Type} xorg-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19482 +#: guix-git/doc/guix.texi:19844 msgid "This data type represents the configuration of the Xorg graphical display server. Note that there is no Xorg service; instead, the X server is started by a ``display manager'' such as GDM, SDDM, and SLiM@. Thus, the configuration of these display managers aggregates an @code{xorg-configuration} record." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19484 +#: guix-git/doc/guix.texi:19846 #, no-wrap msgid "@code{modules} (default: @code{%default-xorg-modules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19487 +#: guix-git/doc/guix.texi:19849 msgid "This is a list of @dfn{module packages} loaded by the Xorg server---e.g., @code{xf86-video-vesa}, @code{xf86-input-keyboard}, and so on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19488 +#: guix-git/doc/guix.texi:19850 #, no-wrap msgid "@code{fonts} (default: @code{%default-xorg-fonts})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19490 +#: guix-git/doc/guix.texi:19852 msgid "This is a list of font directories to add to the server's @dfn{font path}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19491 +#: guix-git/doc/guix.texi:19853 #, no-wrap msgid "@code{drivers} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19495 +#: guix-git/doc/guix.texi:19857 msgid "This must be either the empty list, in which case Xorg chooses a graphics driver automatically, or a list of driver names that will be tried in this order---e.g., @code{(\"modesetting\" \"vesa\")}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19496 +#: guix-git/doc/guix.texi:19858 #, no-wrap msgid "@code{resolutions} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19500 +#: guix-git/doc/guix.texi:19862 msgid "When @code{resolutions} is the empty list, Xorg chooses an appropriate screen resolution. Otherwise, it must be a list of resolutions---e.g., @code{((1024 768) (640 480))}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19501 +#: guix-git/doc/guix.texi:19863 #, no-wrap msgid "keyboard layout, for Xorg" msgstr "disposição do teclado, para Xorg" #. type: cindex -#: guix-git/doc/guix.texi:19502 +#: guix-git/doc/guix.texi:19864 #, no-wrap msgid "keymap, for Xorg" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19506 +#: guix-git/doc/guix.texi:19868 msgid "If this is @code{#f}, Xorg uses the default keyboard layout---usually US English (``qwerty'') for a 105-key PC keyboard." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19510 +#: guix-git/doc/guix.texi:19872 msgid "Otherwise this must be a @code{keyboard-layout} object specifying the keyboard layout in use when Xorg is running. @xref{Keyboard Layout}, for more information on how to specify the keyboard layout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19511 guix-git/doc/guix.texi:21223 -#: guix-git/doc/guix.texi:34046 +#: guix-git/doc/guix.texi:19873 guix-git/doc/guix.texi:21585 +#: guix-git/doc/guix.texi:34483 #, no-wrap msgid "@code{extra-config} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19514 guix-git/doc/guix.texi:34050 +#: guix-git/doc/guix.texi:19876 guix-git/doc/guix.texi:34487 msgid "This is a list of strings or objects appended to the configuration file. It is used to pass extra text to be added verbatim to the configuration file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19515 +#: guix-git/doc/guix.texi:19877 #, no-wrap msgid "@code{server} (default: @code{xorg-server})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19517 +#: guix-git/doc/guix.texi:19879 msgid "This is the package providing the Xorg server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19518 +#: guix-git/doc/guix.texi:19880 #, no-wrap msgid "@code{server-arguments} (default: @code{%default-xorg-server-arguments})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19521 +#: guix-git/doc/guix.texi:19883 msgid "This is the list of command-line arguments to pass to the X server. The default is @code{-nolisten tcp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19524 +#: guix-git/doc/guix.texi:19886 #, no-wrap msgid "{Scheme Procedure} set-xorg-configuration @var{config} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19528 +#: guix-git/doc/guix.texi:19890 msgid "[@var{login-manager-service-type}] Tell the log-in manager (of type @var{login-manager-service-type}) to use @var{config}, an @code{} record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19532 +#: guix-git/doc/guix.texi:19894 msgid "Since the Xorg configuration is embedded in the log-in manager's configuration---e.g., @code{gdm-configuration}---this procedure provides a shorthand to set the Xorg configuration." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19534 +#: guix-git/doc/guix.texi:19896 #, no-wrap msgid "{Scheme Procedure} xorg-start-command [@var{config}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19538 +#: guix-git/doc/guix.texi:19900 msgid "Return a @code{startx} script in which the modules, fonts, etc. specified in @var{config}, are available. The result should be used in place of @code{startx}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19540 +#: guix-git/doc/guix.texi:19902 msgid "Usually the X server is started by a login manager." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19543 +#: guix-git/doc/guix.texi:19905 #, no-wrap msgid "{Scheme Procedure} screen-locker-service @var{package} [@var{program}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19547 +#: guix-git/doc/guix.texi:19909 msgid "Add @var{package}, a package for a screen locker or screen saver whose command is @var{program}, to the set of setuid programs and add a PAM entry for it. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19550 +#: guix-git/doc/guix.texi:19912 #, no-wrap msgid "(screen-locker-service xlockmore \"xlock\")\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19553 +#: guix-git/doc/guix.texi:19915 msgid "makes the good ol' XlockMore usable." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19559 +#: guix-git/doc/guix.texi:19921 #, no-wrap msgid "printer support with CUPS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19563 +#: guix-git/doc/guix.texi:19925 msgid "The @code{(gnu services cups)} module provides a Guix service definition for the CUPS printing service. To add printer support to a Guix system, add a @code{cups-service} to the operating system definition:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19564 +#: guix-git/doc/guix.texi:19926 #, no-wrap msgid "{Scheme Variable} cups-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19568 +#: guix-git/doc/guix.texi:19930 msgid "The service type for the CUPS print server. Its value should be a valid CUPS configuration (see below). To use the default settings, simply write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19570 +#: guix-git/doc/guix.texi:19932 #, no-wrap msgid "(service cups-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19580 +#: guix-git/doc/guix.texi:19942 msgid "The CUPS configuration controls the basic things about your CUPS installation: what interfaces it listens on, what to do if a print job fails, how much logging to do, and so on. To actually add a printer, you have to visit the @url{http://localhost:631} URL, or use a tool such as GNOME's printer configuration services. By default, configuring a CUPS service will generate a self-signed certificate if needed, for secure connections to the print server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19586 +#: guix-git/doc/guix.texi:19948 msgid "Suppose you want to enable the Web interface of CUPS and also add support for Epson printers @i{via} the @code{epson-inkjet-printer-escpr} package and for HP printers @i{via} the @code{hplip-minimal} package. You can do that directly, like this (you need to use the @code{(gnu packages cups)} module):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19593 +#: guix-git/doc/guix.texi:19955 #, no-wrap msgid "" "(service cups-service-type\n" @@ -35075,1584 +35712,1582 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19598 +#: guix-git/doc/guix.texi:19960 msgid "Note: If you wish to use the Qt5 based GUI which comes with the hplip package then it is suggested that you install the @code{hplip} package, either in your OS configuration file or as your user." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19605 +#: guix-git/doc/guix.texi:19967 msgid "The available configuration parameters follow. Each parameter definition is preceded by its type; for example, @samp{string-list foo} indicates that the @code{foo} parameter should be specified as a list of strings. There is also a way to specify the configuration as a string, if you have an old @code{cupsd.conf} file that you want to port over from some other system; see the end for more details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19616 +#: guix-git/doc/guix.texi:19978 msgid "Available @code{cups-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19617 +#: guix-git/doc/guix.texi:19979 #, no-wrap msgid "{@code{cups-configuration} parameter} package cups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19619 guix-git/doc/guix.texi:20387 +#: guix-git/doc/guix.texi:19981 guix-git/doc/guix.texi:20749 msgid "The CUPS package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19621 +#: guix-git/doc/guix.texi:19983 #, no-wrap msgid "{@code{cups-configuration} parameter} package-list extensions (default: @code{(list brlaser cups-filters epson-inkjet-printer-escpr foomatic-filters hplip-minimal splix)})" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19623 +#: guix-git/doc/guix.texi:19985 msgid "Drivers and other extensions to the CUPS package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19625 +#: guix-git/doc/guix.texi:19987 #, no-wrap msgid "{@code{cups-configuration} parameter} files-configuration files-configuration" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19628 +#: guix-git/doc/guix.texi:19990 msgid "Configuration of where to write logs, what directories to use for print spools, and related privileged configuration parameters." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19630 +#: guix-git/doc/guix.texi:19992 msgid "Available @code{files-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19631 +#: guix-git/doc/guix.texi:19993 #, no-wrap msgid "{@code{files-configuration} parameter} log-location access-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19639 +#: guix-git/doc/guix.texi:20001 msgid "Defines the access log filename. Specifying a blank filename disables access log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-access_log}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19641 +#: guix-git/doc/guix.texi:20003 msgid "Defaults to @samp{\"/var/log/cups/access_log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19643 +#: guix-git/doc/guix.texi:20005 #, no-wrap msgid "{@code{files-configuration} parameter} file-name cache-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19645 +#: guix-git/doc/guix.texi:20007 msgid "Where CUPS should cache data." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19647 +#: guix-git/doc/guix.texi:20009 msgid "Defaults to @samp{\"/var/cache/cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19649 +#: guix-git/doc/guix.texi:20011 #, no-wrap msgid "{@code{files-configuration} parameter} string config-file-perm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19652 +#: guix-git/doc/guix.texi:20014 msgid "Specifies the permissions for all configuration files that the scheduler writes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19658 +#: guix-git/doc/guix.texi:20020 msgid "Note that the permissions for the printers.conf file are currently masked to only allow access from the scheduler user (typically root). This is done because printer device URIs sometimes contain sensitive authentication information that should not be generally known on the system. There is no way to disable this security feature." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19660 +#: guix-git/doc/guix.texi:20022 msgid "Defaults to @samp{\"0640\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19662 +#: guix-git/doc/guix.texi:20024 #, no-wrap msgid "{@code{files-configuration} parameter} log-location error-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19670 +#: guix-git/doc/guix.texi:20032 msgid "Defines the error log filename. Specifying a blank filename disables error log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-error_log}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19672 +#: guix-git/doc/guix.texi:20034 msgid "Defaults to @samp{\"/var/log/cups/error_log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19674 +#: guix-git/doc/guix.texi:20036 #, no-wrap msgid "{@code{files-configuration} parameter} string fatal-errors" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19677 +#: guix-git/doc/guix.texi:20039 msgid "Specifies which errors are fatal, causing the scheduler to exit. The kind strings are:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19681 +#: guix-git/doc/guix.texi:20043 msgid "No errors are fatal." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19684 +#: guix-git/doc/guix.texi:20046 msgid "All of the errors below are fatal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19685 +#: guix-git/doc/guix.texi:20047 #, no-wrap msgid "browse" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19688 +#: guix-git/doc/guix.texi:20050 msgid "Browsing initialization errors are fatal, for example failed connections to the DNS-SD daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19689 +#: guix-git/doc/guix.texi:20051 #, no-wrap msgid "config" msgstr "config" #. type: table -#: guix-git/doc/guix.texi:19691 +#: guix-git/doc/guix.texi:20053 msgid "Configuration file syntax errors are fatal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19692 +#: guix-git/doc/guix.texi:20054 #, no-wrap msgid "listen" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19695 +#: guix-git/doc/guix.texi:20057 msgid "Listen or Port errors are fatal, except for IPv6 failures on the loopback or @code{any} addresses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19696 +#: guix-git/doc/guix.texi:20058 #, no-wrap msgid "log" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19698 +#: guix-git/doc/guix.texi:20060 msgid "Log file creation or write errors are fatal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19699 +#: guix-git/doc/guix.texi:20061 #, no-wrap msgid "permissions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19702 +#: guix-git/doc/guix.texi:20064 msgid "Bad startup file permissions are fatal, for example shared TLS certificate and key files with world-read permissions." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19705 +#: guix-git/doc/guix.texi:20067 msgid "Defaults to @samp{\"all -browse\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19707 +#: guix-git/doc/guix.texi:20069 #, no-wrap msgid "{@code{files-configuration} parameter} boolean file-device?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19710 +#: guix-git/doc/guix.texi:20072 msgid "Specifies whether the file pseudo-device can be used for new printer queues. The URI @uref{file:///dev/null} is always allowed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19714 +#: guix-git/doc/guix.texi:20076 #, no-wrap msgid "{@code{files-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19717 +#: guix-git/doc/guix.texi:20079 msgid "Specifies the group name or ID that will be used when executing external programs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19719 guix-git/doc/guix.texi:19805 +#: guix-git/doc/guix.texi:20081 guix-git/doc/guix.texi:20167 msgid "Defaults to @samp{\"lp\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19721 +#: guix-git/doc/guix.texi:20083 #, no-wrap msgid "{@code{files-configuration} parameter} string log-file-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19723 +#: guix-git/doc/guix.texi:20085 msgid "Specifies the group name or ID that will be used for log files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19725 +#: guix-git/doc/guix.texi:20087 msgid "Defaults to @samp{\"lpadmin\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19727 +#: guix-git/doc/guix.texi:20089 #, no-wrap msgid "{@code{files-configuration} parameter} string log-file-perm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19729 +#: guix-git/doc/guix.texi:20091 msgid "Specifies the permissions for all log files that the scheduler writes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19731 +#: guix-git/doc/guix.texi:20093 msgid "Defaults to @samp{\"0644\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19733 +#: guix-git/doc/guix.texi:20095 #, no-wrap msgid "{@code{files-configuration} parameter} log-location page-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19741 +#: guix-git/doc/guix.texi:20103 msgid "Defines the page log filename. Specifying a blank filename disables page log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-page_log}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19743 +#: guix-git/doc/guix.texi:20105 msgid "Defaults to @samp{\"/var/log/cups/page_log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19745 +#: guix-git/doc/guix.texi:20107 #, no-wrap msgid "{@code{files-configuration} parameter} string remote-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19748 +#: guix-git/doc/guix.texi:20110 msgid "Specifies the username that is associated with unauthenticated accesses by clients claiming to be the root user. The default is @code{remroot}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19750 +#: guix-git/doc/guix.texi:20112 msgid "Defaults to @samp{\"remroot\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19752 +#: guix-git/doc/guix.texi:20114 #, no-wrap msgid "{@code{files-configuration} parameter} file-name request-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19755 +#: guix-git/doc/guix.texi:20117 msgid "Specifies the directory that contains print jobs and other HTTP request data." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19757 +#: guix-git/doc/guix.texi:20119 msgid "Defaults to @samp{\"/var/spool/cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19759 +#: guix-git/doc/guix.texi:20121 #, no-wrap msgid "{@code{files-configuration} parameter} sandboxing sandboxing" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19764 +#: guix-git/doc/guix.texi:20126 msgid "Specifies the level of security sandboxing that is applied to print filters, backends, and other child processes of the scheduler; either @code{relaxed} or @code{strict}. This directive is currently only used/supported on macOS." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19766 +#: guix-git/doc/guix.texi:20128 msgid "Defaults to @samp{strict}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19768 +#: guix-git/doc/guix.texi:20130 #, no-wrap msgid "{@code{files-configuration} parameter} file-name server-keychain" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19773 +#: guix-git/doc/guix.texi:20135 msgid "Specifies the location of TLS certificates and private keys. CUPS will look for public and private keys in this directory: @file{.crt} files for PEM-encoded certificates and corresponding @file{.key} files for PEM-encoded private keys." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19775 +#: guix-git/doc/guix.texi:20137 msgid "Defaults to @samp{\"/etc/cups/ssl\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19777 +#: guix-git/doc/guix.texi:20139 #, no-wrap msgid "{@code{files-configuration} parameter} file-name server-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19779 +#: guix-git/doc/guix.texi:20141 msgid "Specifies the directory containing the server configuration files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19781 +#: guix-git/doc/guix.texi:20143 msgid "Defaults to @samp{\"/etc/cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19783 +#: guix-git/doc/guix.texi:20145 #, no-wrap msgid "{@code{files-configuration} parameter} boolean sync-on-close?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19786 +#: guix-git/doc/guix.texi:20148 msgid "Specifies whether the scheduler calls fsync(2) after writing configuration or state files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19790 +#: guix-git/doc/guix.texi:20152 #, no-wrap msgid "{@code{files-configuration} parameter} space-separated-string-list system-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19792 +#: guix-git/doc/guix.texi:20154 msgid "Specifies the group(s) to use for @code{@@SYSTEM} group authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19794 +#: guix-git/doc/guix.texi:20156 #, no-wrap msgid "{@code{files-configuration} parameter} file-name temp-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19796 +#: guix-git/doc/guix.texi:20158 msgid "Specifies the directory where temporary files are stored." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19798 +#: guix-git/doc/guix.texi:20160 msgid "Defaults to @samp{\"/var/spool/cups/tmp\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19800 +#: guix-git/doc/guix.texi:20162 #, no-wrap msgid "{@code{files-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19803 +#: guix-git/doc/guix.texi:20165 msgid "Specifies the user name or ID that is used when running external programs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19807 +#: guix-git/doc/guix.texi:20169 #, no-wrap msgid "{@code{files-configuration} parameter} string set-env" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19809 +#: guix-git/doc/guix.texi:20171 msgid "Set the specified environment variable to be passed to child processes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19811 +#: guix-git/doc/guix.texi:20173 msgid "Defaults to @samp{\"variable value\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19814 +#: guix-git/doc/guix.texi:20176 #, no-wrap msgid "{@code{cups-configuration} parameter} access-log-level access-log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19821 +#: guix-git/doc/guix.texi:20183 msgid "Specifies the logging level for the AccessLog file. The @code{config} level logs when printers and classes are added, deleted, or modified and when configuration files are accessed or updated. The @code{actions} level logs when print jobs are submitted, held, released, modified, or canceled, and any of the conditions for @code{config}. The @code{all} level logs all requests." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19823 +#: guix-git/doc/guix.texi:20185 msgid "Defaults to @samp{actions}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19825 +#: guix-git/doc/guix.texi:20187 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean auto-purge-jobs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19828 +#: guix-git/doc/guix.texi:20190 msgid "Specifies whether to purge job history data automatically when it is no longer required for quotas." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19832 +#: guix-git/doc/guix.texi:20194 #, no-wrap msgid "{@code{cups-configuration} parameter} comma-separated-string-list browse-dns-sd-sub-types" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19836 +#: guix-git/doc/guix.texi:20198 msgid "Specifies a list of DNS-SD sub-types to advertise for each shared printer. For example, @samp{\"_cups\" \"_print\"} will tell network clients that both CUPS sharing and IPP Everywhere are supported." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19838 +#: guix-git/doc/guix.texi:20200 msgid "Defaults to @samp{\"_cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19840 +#: guix-git/doc/guix.texi:20202 #, no-wrap msgid "{@code{cups-configuration} parameter} browse-local-protocols browse-local-protocols" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19842 +#: guix-git/doc/guix.texi:20204 msgid "Specifies which protocols to use for local printer sharing." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19844 +#: guix-git/doc/guix.texi:20206 msgid "Defaults to @samp{dnssd}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19846 +#: guix-git/doc/guix.texi:20208 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean browse-web-if?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19848 +#: guix-git/doc/guix.texi:20210 msgid "Specifies whether the CUPS web interface is advertised." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19852 +#: guix-git/doc/guix.texi:20214 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean browsing?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19854 +#: guix-git/doc/guix.texi:20216 msgid "Specifies whether shared printers are advertised." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19858 +#: guix-git/doc/guix.texi:20220 #, no-wrap msgid "{@code{cups-configuration} parameter} string classification" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19863 +#: guix-git/doc/guix.texi:20225 msgid "Specifies the security classification of the server. Any valid banner name can be used, including @samp{\"classified\"}, @samp{\"confidential\"}, @samp{\"secret\"}, @samp{\"topsecret\"}, and @samp{\"unclassified\"}, or the banner can be omitted to disable secure printing functions." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19865 guix-git/doc/guix.texi:20196 -#: guix-git/doc/guix.texi:22180 guix-git/doc/guix.texi:22192 -#: guix-git/doc/guix.texi:22220 guix-git/doc/guix.texi:22977 -#: guix-git/doc/guix.texi:22991 guix-git/doc/guix.texi:22998 -#: guix-git/doc/guix.texi:23005 guix-git/doc/guix.texi:23035 -#: guix-git/doc/guix.texi:23133 guix-git/doc/guix.texi:25252 -#: guix-git/doc/guix.texi:25278 guix-git/doc/guix.texi:25314 -#: guix-git/doc/guix.texi:25360 guix-git/doc/guix.texi:25379 -#: guix-git/doc/guix.texi:25418 guix-git/doc/guix.texi:25477 -#: guix-git/doc/guix.texi:25487 guix-git/doc/guix.texi:30085 -#: guix-git/doc/guix.texi:30093 guix-git/doc/guix.texi:30101 -#: guix-git/doc/guix.texi:30109 guix-git/doc/guix.texi:30388 -#: guix-git/doc/guix.texi:31743 guix-git/doc/guix.texi:31751 -#: guix-git/doc/guix.texi:31759 guix-git/doc/guix.texi:31867 -#: guix-git/doc/guix.texi:31892 guix-git/doc/guix.texi:32023 -#: guix-git/doc/guix.texi:32031 guix-git/doc/guix.texi:32039 -#: guix-git/doc/guix.texi:32047 guix-git/doc/guix.texi:32055 -#: guix-git/doc/guix.texi:32063 guix-git/doc/guix.texi:32086 -#: guix-git/doc/guix.texi:32094 guix-git/doc/guix.texi:32146 -#: guix-git/doc/guix.texi:32162 guix-git/doc/guix.texi:32170 -#: guix-git/doc/guix.texi:32209 guix-git/doc/guix.texi:32232 -#: guix-git/doc/guix.texi:32254 guix-git/doc/guix.texi:32261 -#: guix-git/doc/guix.texi:32296 guix-git/doc/guix.texi:32304 -#: guix-git/doc/guix.texi:32328 guix-git/doc/guix.texi:32360 -#: guix-git/doc/guix.texi:32389 guix-git/doc/guix.texi:32396 -#: guix-git/doc/guix.texi:32403 guix-git/doc/guix.texi:32411 -#: guix-git/doc/guix.texi:32425 guix-git/doc/guix.texi:32434 -#: guix-git/doc/guix.texi:32444 guix-git/doc/guix.texi:32451 -#: guix-git/doc/guix.texi:32458 guix-git/doc/guix.texi:32465 -#: guix-git/doc/guix.texi:32536 guix-git/doc/guix.texi:32543 -#: guix-git/doc/guix.texi:32550 guix-git/doc/guix.texi:32559 -#: guix-git/doc/guix.texi:32575 guix-git/doc/guix.texi:32582 -#: guix-git/doc/guix.texi:32589 guix-git/doc/guix.texi:32596 -#: guix-git/doc/guix.texi:32604 guix-git/doc/guix.texi:32612 +#: guix-git/doc/guix.texi:20227 guix-git/doc/guix.texi:20558 +#: guix-git/doc/guix.texi:22542 guix-git/doc/guix.texi:22554 +#: guix-git/doc/guix.texi:22582 guix-git/doc/guix.texi:23339 +#: guix-git/doc/guix.texi:23353 guix-git/doc/guix.texi:23360 +#: guix-git/doc/guix.texi:23367 guix-git/doc/guix.texi:23397 +#: guix-git/doc/guix.texi:23495 guix-git/doc/guix.texi:25614 +#: guix-git/doc/guix.texi:25640 guix-git/doc/guix.texi:25676 +#: guix-git/doc/guix.texi:25722 guix-git/doc/guix.texi:25741 +#: guix-git/doc/guix.texi:25780 guix-git/doc/guix.texi:30450 +#: guix-git/doc/guix.texi:30458 guix-git/doc/guix.texi:30466 +#: guix-git/doc/guix.texi:30474 guix-git/doc/guix.texi:30753 +#: guix-git/doc/guix.texi:32108 guix-git/doc/guix.texi:32116 +#: guix-git/doc/guix.texi:32124 guix-git/doc/guix.texi:32232 +#: guix-git/doc/guix.texi:32257 guix-git/doc/guix.texi:32388 +#: guix-git/doc/guix.texi:32396 guix-git/doc/guix.texi:32404 +#: guix-git/doc/guix.texi:32412 guix-git/doc/guix.texi:32420 +#: guix-git/doc/guix.texi:32428 guix-git/doc/guix.texi:32451 +#: guix-git/doc/guix.texi:32459 guix-git/doc/guix.texi:32511 +#: guix-git/doc/guix.texi:32527 guix-git/doc/guix.texi:32535 +#: guix-git/doc/guix.texi:32574 guix-git/doc/guix.texi:32597 +#: guix-git/doc/guix.texi:32619 guix-git/doc/guix.texi:32626 +#: guix-git/doc/guix.texi:32661 guix-git/doc/guix.texi:32669 +#: guix-git/doc/guix.texi:32693 guix-git/doc/guix.texi:32725 +#: guix-git/doc/guix.texi:32754 guix-git/doc/guix.texi:32761 +#: guix-git/doc/guix.texi:32768 guix-git/doc/guix.texi:32776 +#: guix-git/doc/guix.texi:32790 guix-git/doc/guix.texi:32799 +#: guix-git/doc/guix.texi:32809 guix-git/doc/guix.texi:32816 +#: guix-git/doc/guix.texi:32823 guix-git/doc/guix.texi:32830 +#: guix-git/doc/guix.texi:32901 guix-git/doc/guix.texi:32908 +#: guix-git/doc/guix.texi:32915 guix-git/doc/guix.texi:32924 +#: guix-git/doc/guix.texi:32940 guix-git/doc/guix.texi:32947 +#: guix-git/doc/guix.texi:32954 guix-git/doc/guix.texi:32961 +#: guix-git/doc/guix.texi:32969 guix-git/doc/guix.texi:32977 msgid "Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19867 +#: guix-git/doc/guix.texi:20229 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean classify-override?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19870 +#: guix-git/doc/guix.texi:20232 msgid "Specifies whether users may override the classification (cover page) of individual print jobs using the @code{job-sheets} option." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19874 +#: guix-git/doc/guix.texi:20236 #, no-wrap msgid "{@code{cups-configuration} parameter} default-auth-type default-auth-type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19876 +#: guix-git/doc/guix.texi:20238 msgid "Specifies the default type of authentication to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19878 +#: guix-git/doc/guix.texi:20240 msgid "Defaults to @samp{Basic}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19880 +#: guix-git/doc/guix.texi:20242 #, no-wrap msgid "{@code{cups-configuration} parameter} default-encryption default-encryption" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19882 +#: guix-git/doc/guix.texi:20244 msgid "Specifies whether encryption will be used for authenticated requests." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19884 +#: guix-git/doc/guix.texi:20246 msgid "Defaults to @samp{Required}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19886 +#: guix-git/doc/guix.texi:20248 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-language" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19888 +#: guix-git/doc/guix.texi:20250 msgid "Specifies the default language to use for text and web content." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19890 +#: guix-git/doc/guix.texi:20252 msgid "Defaults to @samp{\"en\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19892 +#: guix-git/doc/guix.texi:20254 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-paper-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19897 +#: guix-git/doc/guix.texi:20259 msgid "Specifies the default paper size for new print queues. @samp{\"Auto\"} uses a locale-specific default, while @samp{\"None\"} specifies there is no default paper size. Specific size names are typically @samp{\"Letter\"} or @samp{\"A4\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19899 +#: guix-git/doc/guix.texi:20261 msgid "Defaults to @samp{\"Auto\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19901 +#: guix-git/doc/guix.texi:20263 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-policy" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19903 +#: guix-git/doc/guix.texi:20265 msgid "Specifies the default access policy to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19905 +#: guix-git/doc/guix.texi:20267 msgid "Defaults to @samp{\"default\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19907 +#: guix-git/doc/guix.texi:20269 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean default-shared?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19909 +#: guix-git/doc/guix.texi:20271 msgid "Specifies whether local printers are shared by default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19911 guix-git/doc/guix.texi:19991 -#: guix-git/doc/guix.texi:20281 guix-git/doc/guix.texi:23067 -#: guix-git/doc/guix.texi:23118 guix-git/doc/guix.texi:23125 -#: guix-git/doc/guix.texi:24407 guix-git/doc/guix.texi:24595 -#: guix-git/doc/guix.texi:24712 guix-git/doc/guix.texi:24748 -#: guix-git/doc/guix.texi:24799 guix-git/doc/guix.texi:24818 -#: guix-git/doc/guix.texi:24828 guix-git/doc/guix.texi:24838 -#: guix-git/doc/guix.texi:24897 guix-git/doc/guix.texi:24919 -#: guix-git/doc/guix.texi:24944 guix-git/doc/guix.texi:24970 -#: guix-git/doc/guix.texi:24988 guix-git/doc/guix.texi:28180 -#: guix-git/doc/guix.texi:28208 guix-git/doc/guix.texi:28344 -#: guix-git/doc/guix.texi:28351 guix-git/doc/guix.texi:28359 -#: guix-git/doc/guix.texi:28396 guix-git/doc/guix.texi:28410 -#: guix-git/doc/guix.texi:28499 guix-git/doc/guix.texi:28506 -#: guix-git/doc/guix.texi:28514 guix-git/doc/guix.texi:29293 -#: guix-git/doc/guix.texi:29433 guix-git/doc/guix.texi:29619 -#: guix-git/doc/guix.texi:29626 guix-git/doc/guix.texi:29648 -#: guix-git/doc/guix.texi:29687 guix-git/doc/guix.texi:29707 -#: guix-git/doc/guix.texi:29721 guix-git/doc/guix.texi:29934 -#: guix-git/doc/guix.texi:31845 guix-git/doc/guix.texi:31933 -#: guix-git/doc/guix.texi:31949 guix-git/doc/guix.texi:31999 +#: guix-git/doc/guix.texi:20273 guix-git/doc/guix.texi:20353 +#: guix-git/doc/guix.texi:20643 guix-git/doc/guix.texi:23429 +#: guix-git/doc/guix.texi:23480 guix-git/doc/guix.texi:23487 +#: guix-git/doc/guix.texi:24769 guix-git/doc/guix.texi:24957 +#: guix-git/doc/guix.texi:25074 guix-git/doc/guix.texi:25110 +#: guix-git/doc/guix.texi:25161 guix-git/doc/guix.texi:25180 +#: guix-git/doc/guix.texi:25190 guix-git/doc/guix.texi:25200 +#: guix-git/doc/guix.texi:25259 guix-git/doc/guix.texi:25281 +#: guix-git/doc/guix.texi:25306 guix-git/doc/guix.texi:25332 +#: guix-git/doc/guix.texi:25350 guix-git/doc/guix.texi:28517 +#: guix-git/doc/guix.texi:28545 guix-git/doc/guix.texi:28681 +#: guix-git/doc/guix.texi:28688 guix-git/doc/guix.texi:28696 +#: guix-git/doc/guix.texi:28733 guix-git/doc/guix.texi:28747 +#: guix-git/doc/guix.texi:28836 guix-git/doc/guix.texi:28843 +#: guix-git/doc/guix.texi:28851 guix-git/doc/guix.texi:29630 +#: guix-git/doc/guix.texi:29770 guix-git/doc/guix.texi:29984 +#: guix-git/doc/guix.texi:29991 guix-git/doc/guix.texi:30013 +#: guix-git/doc/guix.texi:30052 guix-git/doc/guix.texi:30072 +#: guix-git/doc/guix.texi:30086 guix-git/doc/guix.texi:30299 +#: guix-git/doc/guix.texi:32210 guix-git/doc/guix.texi:32298 +#: guix-git/doc/guix.texi:32314 guix-git/doc/guix.texi:32364 msgid "Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19913 +#: guix-git/doc/guix.texi:20275 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer dirty-clean-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19917 +#: guix-git/doc/guix.texi:20279 msgid "Specifies the delay for updating of configuration and state files, in seconds. A value of 0 causes the update to happen as soon as possible, typically within a few milliseconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19919 guix-git/doc/guix.texi:19967 -#: guix-git/doc/guix.texi:19976 guix-git/doc/guix.texi:20288 -#: guix-git/doc/guix.texi:24757 guix-git/doc/guix.texi:24790 +#: guix-git/doc/guix.texi:20281 guix-git/doc/guix.texi:20329 +#: guix-git/doc/guix.texi:20338 guix-git/doc/guix.texi:20650 +#: guix-git/doc/guix.texi:25119 guix-git/doc/guix.texi:25152 msgid "Defaults to @samp{30}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19921 +#: guix-git/doc/guix.texi:20283 #, no-wrap msgid "{@code{cups-configuration} parameter} error-policy error-policy" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19927 +#: guix-git/doc/guix.texi:20289 msgid "Specifies what to do when an error occurs. Possible values are @code{abort-job}, which will discard the failed print job; @code{retry-job}, which will retry the job at a later time; @code{retry-current-job}, which retries the failed job immediately; and @code{stop-printer}, which stops the printer." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19929 +#: guix-git/doc/guix.texi:20291 msgid "Defaults to @samp{stop-printer}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19931 +#: guix-git/doc/guix.texi:20293 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer filter-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19939 +#: guix-git/doc/guix.texi:20301 msgid "Specifies the maximum cost of filters that are run concurrently, which can be used to minimize disk, memory, and CPU resource problems. A limit of 0 disables filter limiting. An average print to a non-PostScript printer needs a filter limit of about 200. A PostScript printer needs about half that (100). Setting the limit below these thresholds will effectively limit the scheduler to printing a single job at any time." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19941 guix-git/doc/guix.texi:19949 -#: guix-git/doc/guix.texi:19998 guix-git/doc/guix.texi:20114 -#: guix-git/doc/guix.texi:20128 guix-git/doc/guix.texi:20135 -#: guix-git/doc/guix.texi:21622 guix-git/doc/guix.texi:21638 -#: guix-git/doc/guix.texi:22295 guix-git/doc/guix.texi:22307 -#: guix-git/doc/guix.texi:23086 guix-git/doc/guix.texi:23095 -#: guix-git/doc/guix.texi:23103 guix-git/doc/guix.texi:23111 -#: guix-git/doc/guix.texi:29309 guix-git/doc/guix.texi:29634 -#: guix-git/doc/guix.texi:31838 guix-git/doc/guix.texi:32138 -#: guix-git/doc/guix.texi:32312 +#: guix-git/doc/guix.texi:20303 guix-git/doc/guix.texi:20311 +#: guix-git/doc/guix.texi:20360 guix-git/doc/guix.texi:20476 +#: guix-git/doc/guix.texi:20490 guix-git/doc/guix.texi:20497 +#: guix-git/doc/guix.texi:21984 guix-git/doc/guix.texi:22000 +#: guix-git/doc/guix.texi:22657 guix-git/doc/guix.texi:22669 +#: guix-git/doc/guix.texi:23448 guix-git/doc/guix.texi:23457 +#: guix-git/doc/guix.texi:23465 guix-git/doc/guix.texi:23473 +#: guix-git/doc/guix.texi:29646 guix-git/doc/guix.texi:29999 +#: guix-git/doc/guix.texi:32203 guix-git/doc/guix.texi:32503 +#: guix-git/doc/guix.texi:32677 msgid "Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19943 +#: guix-git/doc/guix.texi:20305 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer filter-nice" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19947 +#: guix-git/doc/guix.texi:20309 msgid "Specifies the scheduling priority of filters that are run to print a job. The nice value ranges from 0, the highest priority, to 19, the lowest priority." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19951 +#: guix-git/doc/guix.texi:20313 #, no-wrap msgid "{@code{cups-configuration} parameter} host-name-lookups host-name-lookups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19958 +#: guix-git/doc/guix.texi:20320 msgid "Specifies whether to do reverse lookups on connecting clients. The @code{double} setting causes @code{cupsd} to verify that the hostname resolved from the address matches one of the addresses returned for that hostname. Double lookups also prevent clients with unregistered addresses from connecting to your server. Only set this option to @code{#t} or @code{double} if absolutely required." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19962 +#: guix-git/doc/guix.texi:20324 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-kill-delay" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19965 +#: guix-git/doc/guix.texi:20327 msgid "Specifies the number of seconds to wait before killing the filters and backend associated with a canceled or held job." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19969 +#: guix-git/doc/guix.texi:20331 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-retry-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19974 +#: guix-git/doc/guix.texi:20336 msgid "Specifies the interval between retries of jobs in seconds. This is typically used for fax queues but can also be used with normal print queues whose error policy is @code{retry-job} or @code{retry-current-job}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19978 +#: guix-git/doc/guix.texi:20340 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-retry-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19983 +#: guix-git/doc/guix.texi:20345 msgid "Specifies the number of retries that are done for jobs. This is typically used for fax queues but can also be used with normal print queues whose error policy is @code{retry-job} or @code{retry-current-job}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19985 guix-git/doc/guix.texi:24721 -#: guix-git/doc/guix.texi:30186 guix-git/doc/guix.texi:30206 -#: guix-git/doc/guix.texi:30222 guix-git/doc/guix.texi:30236 -#: guix-git/doc/guix.texi:30243 guix-git/doc/guix.texi:30250 -#: guix-git/doc/guix.texi:30257 guix-git/doc/guix.texi:30417 -#: guix-git/doc/guix.texi:30433 guix-git/doc/guix.texi:30440 -#: guix-git/doc/guix.texi:30447 guix-git/doc/guix.texi:30458 -#: guix-git/doc/guix.texi:31790 guix-git/doc/guix.texi:31798 -#: guix-git/doc/guix.texi:31806 guix-git/doc/guix.texi:31830 +#: guix-git/doc/guix.texi:20347 guix-git/doc/guix.texi:25083 +#: guix-git/doc/guix.texi:30551 guix-git/doc/guix.texi:30571 +#: guix-git/doc/guix.texi:30587 guix-git/doc/guix.texi:30601 +#: guix-git/doc/guix.texi:30608 guix-git/doc/guix.texi:30615 +#: guix-git/doc/guix.texi:30622 guix-git/doc/guix.texi:30782 +#: guix-git/doc/guix.texi:30798 guix-git/doc/guix.texi:30805 +#: guix-git/doc/guix.texi:30812 guix-git/doc/guix.texi:30823 +#: guix-git/doc/guix.texi:32155 guix-git/doc/guix.texi:32163 +#: guix-git/doc/guix.texi:32171 guix-git/doc/guix.texi:32195 msgid "Defaults to @samp{5}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19987 +#: guix-git/doc/guix.texi:20349 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean keep-alive?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19989 +#: guix-git/doc/guix.texi:20351 msgid "Specifies whether to support HTTP keep-alive connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19993 +#: guix-git/doc/guix.texi:20355 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer limit-request-body" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19996 +#: guix-git/doc/guix.texi:20358 msgid "Specifies the maximum size of print files, IPP requests, and HTML form data. A limit of 0 disables the limit check." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20000 +#: guix-git/doc/guix.texi:20362 #, no-wrap msgid "{@code{cups-configuration} parameter} multiline-string-list listen" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20007 +#: guix-git/doc/guix.texi:20369 msgid "Listens on the specified interfaces for connections. Valid values are of the form @var{address}:@var{port}, where @var{address} is either an IPv6 address enclosed in brackets, an IPv4 address, or @code{*} to indicate all addresses. Values can also be file names of local UNIX domain sockets. The Listen directive is similar to the Port directive but allows you to restrict access to specific interfaces or networks." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20009 +#: guix-git/doc/guix.texi:20371 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer listen-back-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20016 +#: guix-git/doc/guix.texi:20378 msgid "Specifies the number of pending connections that will be allowed. This normally only affects very busy servers that have reached the MaxClients limit, but can also be triggered by large numbers of simultaneous connections. When the limit is reached, the operating system will refuse additional connections until the scheduler can accept the pending ones." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20018 +#: guix-git/doc/guix.texi:20380 msgid "Defaults to @samp{128}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20020 +#: guix-git/doc/guix.texi:20382 #, no-wrap msgid "{@code{cups-configuration} parameter} location-access-control-list location-access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20022 +#: guix-git/doc/guix.texi:20384 msgid "Specifies a set of additional access controls." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20024 +#: guix-git/doc/guix.texi:20386 msgid "Available @code{location-access-controls} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20025 +#: guix-git/doc/guix.texi:20387 #, no-wrap msgid "{@code{location-access-controls} parameter} file-name path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20027 +#: guix-git/doc/guix.texi:20389 msgid "Specifies the URI path to which the access control applies." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20029 +#: guix-git/doc/guix.texi:20391 #, no-wrap msgid "{@code{location-access-controls} parameter} access-control-list access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20032 +#: guix-git/doc/guix.texi:20394 msgid "Access controls for all access to this path, in the same format as the @code{access-controls} of @code{operation-access-control}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20034 guix-git/doc/guix.texi:20040 -#: guix-git/doc/guix.texi:20054 guix-git/doc/guix.texi:20061 -#: guix-git/doc/guix.texi:20203 guix-git/doc/guix.texi:20262 -#: guix-git/doc/guix.texi:20340 guix-git/doc/guix.texi:20354 -#: guix-git/doc/guix.texi:21502 guix-git/doc/guix.texi:21511 -#: guix-git/doc/guix.texi:22781 guix-git/doc/guix.texi:22984 -#: guix-git/doc/guix.texi:23012 guix-git/doc/guix.texi:23042 -#: guix-git/doc/guix.texi:23157 guix-git/doc/guix.texi:23170 -#: guix-git/doc/guix.texi:23177 guix-git/doc/guix.texi:24927 -#: guix-git/doc/guix.texi:25322 guix-git/doc/guix.texi:25426 -#: guix-git/doc/guix.texi:25853 guix-git/doc/guix.texi:25861 -#: guix-git/doc/guix.texi:26106 guix-git/doc/guix.texi:28239 -#: guix-git/doc/guix.texi:28417 guix-git/doc/guix.texi:28616 -#: guix-git/doc/guix.texi:30077 guix-git/doc/guix.texi:30137 -#: guix-git/doc/guix.texi:30145 guix-git/doc/guix.texi:31853 -#: guix-git/doc/guix.texi:31860 guix-git/doc/guix.texi:32202 -#: guix-git/doc/guix.texi:32280 guix-git/doc/guix.texi:32374 -#: guix-git/doc/guix.texi:32382 guix-git/doc/guix.texi:32418 -#: guix-git/doc/guix.texi:32568 guix-git/doc/guix.texi:32619 -#: guix-git/doc/guix.texi:32628 +#: guix-git/doc/guix.texi:20396 guix-git/doc/guix.texi:20402 +#: guix-git/doc/guix.texi:20416 guix-git/doc/guix.texi:20423 +#: guix-git/doc/guix.texi:20565 guix-git/doc/guix.texi:20624 +#: guix-git/doc/guix.texi:20702 guix-git/doc/guix.texi:20716 +#: guix-git/doc/guix.texi:21864 guix-git/doc/guix.texi:21873 +#: guix-git/doc/guix.texi:23143 guix-git/doc/guix.texi:23346 +#: guix-git/doc/guix.texi:23374 guix-git/doc/guix.texi:23404 +#: guix-git/doc/guix.texi:23519 guix-git/doc/guix.texi:23532 +#: guix-git/doc/guix.texi:23539 guix-git/doc/guix.texi:25289 +#: guix-git/doc/guix.texi:25684 guix-git/doc/guix.texi:25788 +#: guix-git/doc/guix.texi:26190 guix-git/doc/guix.texi:26198 +#: guix-git/doc/guix.texi:26443 guix-git/doc/guix.texi:28576 +#: guix-git/doc/guix.texi:28754 guix-git/doc/guix.texi:28953 +#: guix-git/doc/guix.texi:30442 guix-git/doc/guix.texi:30502 +#: guix-git/doc/guix.texi:30510 guix-git/doc/guix.texi:32218 +#: guix-git/doc/guix.texi:32225 guix-git/doc/guix.texi:32567 +#: guix-git/doc/guix.texi:32645 guix-git/doc/guix.texi:32739 +#: guix-git/doc/guix.texi:32747 guix-git/doc/guix.texi:32783 +#: guix-git/doc/guix.texi:32933 guix-git/doc/guix.texi:32984 +#: guix-git/doc/guix.texi:32993 msgid "Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20036 +#: guix-git/doc/guix.texi:20398 #, no-wrap msgid "{@code{location-access-controls} parameter} method-access-control-list method-access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20038 +#: guix-git/doc/guix.texi:20400 msgid "Access controls for method-specific access to this path." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20042 +#: guix-git/doc/guix.texi:20404 msgid "Available @code{method-access-controls} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20043 +#: guix-git/doc/guix.texi:20405 #, no-wrap msgid "{@code{method-access-controls} parameter} boolean reverse?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20046 +#: guix-git/doc/guix.texi:20408 msgid "If @code{#t}, apply access controls to all methods except the listed methods. Otherwise apply to only the listed methods." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20050 +#: guix-git/doc/guix.texi:20412 #, no-wrap msgid "{@code{method-access-controls} parameter} method-list methods" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20052 +#: guix-git/doc/guix.texi:20414 msgid "Methods to which this access control applies." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20056 +#: guix-git/doc/guix.texi:20418 #, no-wrap msgid "{@code{method-access-controls} parameter} access-control-list access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20059 +#: guix-git/doc/guix.texi:20421 msgid "Access control directives, as a list of strings. Each string should be one directive, such as @samp{\"Order allow,deny\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20065 +#: guix-git/doc/guix.texi:20427 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer log-debug-history" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20069 +#: guix-git/doc/guix.texi:20431 msgid "Specifies the number of debugging messages that are retained for logging if an error occurs in a print job. Debug messages are logged regardless of the LogLevel setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20071 guix-git/doc/guix.texi:20092 -#: guix-git/doc/guix.texi:20099 guix-git/doc/guix.texi:22541 -#: guix-git/doc/guix.texi:24459 guix-git/doc/guix.texi:24474 -#: guix-git/doc/guix.texi:28601 +#: guix-git/doc/guix.texi:20433 guix-git/doc/guix.texi:20454 +#: guix-git/doc/guix.texi:20461 guix-git/doc/guix.texi:22903 +#: guix-git/doc/guix.texi:24821 guix-git/doc/guix.texi:24836 +#: guix-git/doc/guix.texi:28938 msgid "Defaults to @samp{100}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20073 +#: guix-git/doc/guix.texi:20435 #, no-wrap msgid "{@code{cups-configuration} parameter} log-level log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20076 +#: guix-git/doc/guix.texi:20438 msgid "Specifies the level of logging for the ErrorLog file. The value @code{none} stops all logging while @code{debug2} logs everything." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20078 guix-git/doc/guix.texi:24936 +#: guix-git/doc/guix.texi:20440 guix-git/doc/guix.texi:25298 msgid "Defaults to @samp{info}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20080 +#: guix-git/doc/guix.texi:20442 #, no-wrap msgid "{@code{cups-configuration} parameter} log-time-format log-time-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20083 +#: guix-git/doc/guix.texi:20445 msgid "Specifies the format of the date and time in the log files. The value @code{standard} logs whole seconds while @code{usecs} logs microseconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20085 +#: guix-git/doc/guix.texi:20447 msgid "Defaults to @samp{standard}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20087 +#: guix-git/doc/guix.texi:20449 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20090 +#: guix-git/doc/guix.texi:20452 msgid "Specifies the maximum number of simultaneous clients that are allowed by the scheduler." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20094 +#: guix-git/doc/guix.texi:20456 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-clients-per-host" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20097 +#: guix-git/doc/guix.texi:20459 msgid "Specifies the maximum number of simultaneous clients that are allowed from a single address." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20101 +#: guix-git/doc/guix.texi:20463 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-copies" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20104 +#: guix-git/doc/guix.texi:20466 msgid "Specifies the maximum number of copies that a user can print of each job." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20106 +#: guix-git/doc/guix.texi:20468 msgid "Defaults to @samp{9999}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20108 +#: guix-git/doc/guix.texi:20470 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-hold-time" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20112 +#: guix-git/doc/guix.texi:20474 msgid "Specifies the maximum time a job may remain in the @code{indefinite} hold state before it is canceled. A value of 0 disables cancellation of held jobs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20116 +#: guix-git/doc/guix.texi:20478 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20119 +#: guix-git/doc/guix.texi:20481 msgid "Specifies the maximum number of simultaneous jobs that are allowed. Set to 0 to allow an unlimited number of jobs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20121 +#: guix-git/doc/guix.texi:20483 msgid "Defaults to @samp{500}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20123 +#: guix-git/doc/guix.texi:20485 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs-per-printer" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20126 +#: guix-git/doc/guix.texi:20488 msgid "Specifies the maximum number of simultaneous jobs that are allowed per printer. A value of 0 allows up to MaxJobs jobs per printer." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20130 +#: guix-git/doc/guix.texi:20492 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs-per-user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20133 +#: guix-git/doc/guix.texi:20495 msgid "Specifies the maximum number of simultaneous jobs that are allowed per user. A value of 0 allows up to MaxJobs jobs per user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20137 +#: guix-git/doc/guix.texi:20499 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-job-time" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20140 +#: guix-git/doc/guix.texi:20502 msgid "Specifies the maximum time a job may take to print before it is canceled, in seconds. Set to 0 to disable cancellation of ``stuck'' jobs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20142 +#: guix-git/doc/guix.texi:20504 msgid "Defaults to @samp{10800}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20144 +#: guix-git/doc/guix.texi:20506 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-log-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20147 +#: guix-git/doc/guix.texi:20509 msgid "Specifies the maximum size of the log files before they are rotated, in bytes. The value 0 disables log rotation." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20149 +#: guix-git/doc/guix.texi:20511 msgid "Defaults to @samp{1048576}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20151 +#: guix-git/doc/guix.texi:20513 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer multiple-operation-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20154 +#: guix-git/doc/guix.texi:20516 msgid "Specifies the maximum amount of time to allow between files in a multiple file print job, in seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20156 guix-git/doc/guix.texi:20367 +#: guix-git/doc/guix.texi:20518 guix-git/doc/guix.texi:20729 msgid "Defaults to @samp{900}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20158 +#: guix-git/doc/guix.texi:20520 #, no-wrap msgid "{@code{cups-configuration} parameter} string page-log-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20163 +#: guix-git/doc/guix.texi:20525 msgid "Specifies the format of PageLog lines. Sequences beginning with percent (@samp{%}) characters are replaced with the corresponding information, while all other characters are copied literally. The following percent sequences are recognized:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20165 +#: guix-git/doc/guix.texi:20527 #, no-wrap msgid "%%" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20167 +#: guix-git/doc/guix.texi:20529 msgid "insert a single percent character" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20168 +#: guix-git/doc/guix.texi:20530 #, no-wrap msgid "%@{name@}" msgstr "%@{name@}" #. type: table -#: guix-git/doc/guix.texi:20170 +#: guix-git/doc/guix.texi:20532 msgid "insert the value of the specified IPP attribute" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20171 +#: guix-git/doc/guix.texi:20533 #, no-wrap msgid "%C" msgstr "%C" #. type: table -#: guix-git/doc/guix.texi:20173 +#: guix-git/doc/guix.texi:20535 msgid "insert the number of copies for the current page" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20174 +#: guix-git/doc/guix.texi:20536 #, no-wrap msgid "%P" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20176 +#: guix-git/doc/guix.texi:20538 msgid "insert the current page number" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20177 +#: guix-git/doc/guix.texi:20539 #, no-wrap msgid "%T" msgstr "%T" #. type: table -#: guix-git/doc/guix.texi:20179 +#: guix-git/doc/guix.texi:20541 msgid "insert the current date and time in common log format" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20180 +#: guix-git/doc/guix.texi:20542 #, no-wrap msgid "%j" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20182 +#: guix-git/doc/guix.texi:20544 msgid "insert the job ID" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20183 guix-git/doc/guix.texi:22140 +#: guix-git/doc/guix.texi:20545 guix-git/doc/guix.texi:22502 #, no-wrap msgid "%p" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20185 +#: guix-git/doc/guix.texi:20547 msgid "insert the printer name" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20186 guix-git/doc/guix.texi:22163 +#: guix-git/doc/guix.texi:20548 guix-git/doc/guix.texi:22525 #, no-wrap msgid "%u" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20188 +#: guix-git/doc/guix.texi:20550 msgid "insert the username" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20194 +#: guix-git/doc/guix.texi:20556 msgid "A value of the empty string disables page logging. The string @code{%p %u %j %T %P %C %@{job-billing@} %@{job-originating-host-name@} %@{job-name@} %@{media@} %@{sides@}} creates a page log with the standard items." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20198 +#: guix-git/doc/guix.texi:20560 #, no-wrap msgid "{@code{cups-configuration} parameter} environment-variables environment-variables" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20201 +#: guix-git/doc/guix.texi:20563 msgid "Passes the specified environment variable(s) to child processes; a list of strings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20205 +#: guix-git/doc/guix.texi:20567 #, no-wrap msgid "{@code{cups-configuration} parameter} policy-configuration-list policies" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20207 +#: guix-git/doc/guix.texi:20569 msgid "Specifies named access control policies." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20209 +#: guix-git/doc/guix.texi:20571 msgid "Available @code{policy-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20210 +#: guix-git/doc/guix.texi:20572 #, no-wrap msgid "{@code{policy-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20212 +#: guix-git/doc/guix.texi:20574 msgid "Name of the policy." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20214 +#: guix-git/doc/guix.texi:20576 #, no-wrap msgid "{@code{policy-configuration} parameter} string job-private-access" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20224 +#: guix-git/doc/guix.texi:20586 msgid "Specifies an access list for a job's private values. @code{@@ACL} maps to the printer's requesting-user-name-allowed or requesting-user-name-denied values. @code{@@OWNER} maps to the job's owner. @code{@@SYSTEM} maps to the groups listed for the @code{system-group} field of the @code{files-configuration}, which is reified into the @code{cups-files.conf(5)} file. Other possible elements of the access list include specific user names, and @code{@@@var{group}} to indicate members of a specific group. The access list may also be simply @code{all} or @code{default}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20226 guix-git/doc/guix.texi:20248 +#: guix-git/doc/guix.texi:20588 guix-git/doc/guix.texi:20610 msgid "Defaults to @samp{\"@@OWNER @@SYSTEM\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20228 +#: guix-git/doc/guix.texi:20590 #, no-wrap msgid "{@code{policy-configuration} parameter} string job-private-values" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20231 guix-git/doc/guix.texi:20253 +#: guix-git/doc/guix.texi:20593 guix-git/doc/guix.texi:20615 msgid "Specifies the list of job values to make private, or @code{all}, @code{default}, or @code{none}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20234 +#: guix-git/doc/guix.texi:20596 msgid "Defaults to @samp{\"job-name job-originating-host-name job-originating-user-name phone\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20236 +#: guix-git/doc/guix.texi:20598 #, no-wrap msgid "{@code{policy-configuration} parameter} string subscription-private-access" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20246 +#: guix-git/doc/guix.texi:20608 msgid "Specifies an access list for a subscription's private values. @code{@@ACL} maps to the printer's requesting-user-name-allowed or requesting-user-name-denied values. @code{@@OWNER} maps to the job's owner. @code{@@SYSTEM} maps to the groups listed for the @code{system-group} field of the @code{files-configuration}, which is reified into the @code{cups-files.conf(5)} file. Other possible elements of the access list include specific user names, and @code{@@@var{group}} to indicate members of a specific group. The access list may also be simply @code{all} or @code{default}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20250 +#: guix-git/doc/guix.texi:20612 #, no-wrap msgid "{@code{policy-configuration} parameter} string subscription-private-values" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20256 +#: guix-git/doc/guix.texi:20618 msgid "Defaults to @samp{\"notify-events notify-pull-method notify-recipient-uri notify-subscriber-user-name notify-user-data\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20258 +#: guix-git/doc/guix.texi:20620 #, no-wrap msgid "{@code{policy-configuration} parameter} operation-access-control-list access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20260 +#: guix-git/doc/guix.texi:20622 msgid "Access control by IPP operation." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20265 +#: guix-git/doc/guix.texi:20627 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean-or-non-negative-integer preserve-job-files" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20270 +#: guix-git/doc/guix.texi:20632 msgid "Specifies whether job files (documents) are preserved after a job is printed. If a numeric value is specified, job files are preserved for the indicated number of seconds after printing. Otherwise a boolean value applies indefinitely." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20272 +#: guix-git/doc/guix.texi:20634 msgid "Defaults to @samp{86400}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20274 +#: guix-git/doc/guix.texi:20636 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean-or-non-negative-integer preserve-job-history" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20279 +#: guix-git/doc/guix.texi:20641 msgid "Specifies whether the job history is preserved after a job is printed. If a numeric value is specified, the job history is preserved for the indicated number of seconds after printing. If @code{#t}, the job history is preserved until the MaxJobs limit is reached." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20283 +#: guix-git/doc/guix.texi:20645 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer reload-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20286 +#: guix-git/doc/guix.texi:20648 msgid "Specifies the amount of time to wait for job completion before restarting the scheduler." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20290 +#: guix-git/doc/guix.texi:20652 #, no-wrap msgid "{@code{cups-configuration} parameter} string rip-cache" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20293 +#: guix-git/doc/guix.texi:20655 msgid "Specifies the maximum amount of memory to use when converting documents into bitmaps for a printer." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20295 +#: guix-git/doc/guix.texi:20657 msgid "Defaults to @samp{\"128m\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20297 +#: guix-git/doc/guix.texi:20659 #, no-wrap msgid "{@code{cups-configuration} parameter} string server-admin" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20299 +#: guix-git/doc/guix.texi:20661 msgid "Specifies the email address of the server administrator." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20301 +#: guix-git/doc/guix.texi:20663 msgid "Defaults to @samp{\"root@@localhost.localdomain\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20303 +#: guix-git/doc/guix.texi:20665 #, no-wrap msgid "{@code{cups-configuration} parameter} host-name-list-or-* server-alias" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20311 +#: guix-git/doc/guix.texi:20673 msgid "The ServerAlias directive is used for HTTP Host header validation when clients connect to the scheduler from external interfaces. Using the special name @code{*} can expose your system to known browser-based DNS rebinding attacks, even when accessing sites through a firewall. If the auto-discovery of alternate names does not work, we recommend listing each alternate name with a ServerAlias directive instead of using @code{*}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20313 +#: guix-git/doc/guix.texi:20675 msgid "Defaults to @samp{*}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20315 +#: guix-git/doc/guix.texi:20677 #, no-wrap msgid "{@code{cups-configuration} parameter} string server-name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20317 +#: guix-git/doc/guix.texi:20679 msgid "Specifies the fully-qualified host name of the server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20319 guix-git/doc/guix.texi:25449 -#: guix-git/doc/guix.texi:25494 +#: guix-git/doc/guix.texi:20681 msgid "Defaults to @samp{\"localhost\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20321 +#: guix-git/doc/guix.texi:20683 #, no-wrap msgid "{@code{cups-configuration} parameter} server-tokens server-tokens" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20329 +#: guix-git/doc/guix.texi:20691 msgid "Specifies what information is included in the Server header of HTTP responses. @code{None} disables the Server header. @code{ProductOnly} reports @code{CUPS}. @code{Major} reports @code{CUPS 2}. @code{Minor} reports @code{CUPS 2.0}. @code{Minimal} reports @code{CUPS 2.0.0}. @code{OS} reports @code{CUPS 2.0.0 (@var{uname})} where @var{uname} is the output of the @code{uname} command. @code{Full} reports @code{CUPS 2.0.0 (@var{uname}) IPP/2.0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20331 +#: guix-git/doc/guix.texi:20693 msgid "Defaults to @samp{Minimal}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20333 +#: guix-git/doc/guix.texi:20695 #, no-wrap msgid "{@code{cups-configuration} parameter} multiline-string-list ssl-listen" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20338 +#: guix-git/doc/guix.texi:20700 msgid "Listens on the specified interfaces for encrypted connections. Valid values are of the form @var{address}:@var{port}, where @var{address} is either an IPv6 address enclosed in brackets, an IPv4 address, or @code{*} to indicate all addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20342 +#: guix-git/doc/guix.texi:20704 #, no-wrap msgid "{@code{cups-configuration} parameter} ssl-options ssl-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20352 +#: guix-git/doc/guix.texi:20714 msgid "Sets encryption options. By default, CUPS only supports encryption using TLS v1.0 or higher using known secure cipher suites. Security is reduced when @code{Allow} options are used, and enhanced when @code{Deny} options are used. The @code{AllowRC4} option enables the 128-bit RC4 cipher suites, which are required for some older clients. The @code{AllowSSL3} option enables SSL v3.0, which is required for some older clients that do not support TLS v1.0. The @code{DenyCBC} option disables all CBC cipher suites. The @code{DenyTLS1.0} option disables TLS v1.0 support - this sets the minimum protocol version to TLS v1.1." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20356 +#: guix-git/doc/guix.texi:20718 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean strict-conformance?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20359 +#: guix-git/doc/guix.texi:20721 msgid "Specifies whether the scheduler requires clients to strictly adhere to the IPP specifications." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20363 +#: guix-git/doc/guix.texi:20725 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20365 +#: guix-git/doc/guix.texi:20727 msgid "Specifies the HTTP request timeout, in seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20370 +#: guix-git/doc/guix.texi:20732 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean web-interface?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20372 +#: guix-git/doc/guix.texi:20734 msgid "Specifies whether the web interface is enabled." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20382 +#: guix-git/doc/guix.texi:20744 msgid "At this point you're probably thinking ``oh dear, Guix manual, I like you but you can stop already with the configuration options''. Indeed. However, one more point: it could be that you have an existing @code{cupsd.conf} that you want to use. In that case, you can pass an @code{opaque-cups-configuration} as the configuration of a @code{cups-service-type}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20384 +#: guix-git/doc/guix.texi:20746 msgid "Available @code{opaque-cups-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20385 +#: guix-git/doc/guix.texi:20747 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} package cups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20389 +#: guix-git/doc/guix.texi:20751 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} string cupsd.conf" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20391 +#: guix-git/doc/guix.texi:20753 msgid "The contents of the @code{cupsd.conf}, as a string." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20393 +#: guix-git/doc/guix.texi:20755 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} string cups-files.conf" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20395 +#: guix-git/doc/guix.texi:20757 msgid "The contents of the @code{cups-files.conf} file, as a string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20400 +#: guix-git/doc/guix.texi:20762 msgid "For example, if your @code{cupsd.conf} and @code{cups-files.conf} are in strings of the same name, you could instantiate a CUPS service like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20406 +#: guix-git/doc/guix.texi:20768 #, no-wrap msgid "" "(service cups-service-type\n" @@ -36662,238 +37297,238 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20417 +#: guix-git/doc/guix.texi:20779 msgid "The @code{(gnu services desktop)} module provides services that are usually useful in the context of a ``desktop'' setup---that is, on a machine running a graphical display server, possibly with graphical user interfaces, etc. It also defines services that provide specific desktop environments like GNOME, Xfce or MATE." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20421 +#: guix-git/doc/guix.texi:20783 msgid "To simplify things, the module defines a variable containing the set of services that users typically expect on a machine with a graphical environment and networking:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20422 +#: guix-git/doc/guix.texi:20784 #, no-wrap msgid "{Scheme Variable} %desktop-services" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20425 +#: guix-git/doc/guix.texi:20787 msgid "This is a list of services that builds upon @code{%base-services} and adds or adjusts services for a typical ``desktop'' setup." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20436 +#: guix-git/doc/guix.texi:20798 msgid "In particular, it adds a graphical login manager (@pxref{X Window, @code{gdm-service-type}}), screen lockers, a network management tool (@pxref{Networking Services, @code{network-manager-service-type}}) with modem support (@pxref{Networking Services, @code{modem-manager-service-type}}), energy and color management services, the @code{elogind} login and seat manager, the Polkit privilege service, the GeoClue location service, the AccountsService daemon that allows authorized users change system passwords, an NTP client (@pxref{Networking Services}), the Avahi daemon, and has the name service switch service configured to be able to use @code{nss-mdns} (@pxref{Name Service Switch, mDNS})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20441 +#: guix-git/doc/guix.texi:20803 msgid "The @code{%desktop-services} variable can be used as the @code{services} field of an @code{operating-system} declaration (@pxref{operating-system Reference, @code{services}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20464 +#: guix-git/doc/guix.texi:20826 msgid "Additionally, the @code{gnome-desktop-service-type}, @code{xfce-desktop-service}, @code{mate-desktop-service-type}, @code{lxqt-desktop-service-type} and @code{enlightenment-desktop-service-type} procedures can add GNOME, Xfce, MATE and/or Enlightenment to a system. To ``add GNOME'' means that system-level services like the backlight adjustment helpers and the power management utilities are added to the system, extending @code{polkit} and @code{dbus} appropriately, allowing GNOME to operate with elevated privileges on a limited number of special-purpose system interfaces. Additionally, adding a service made by @code{gnome-desktop-service-type} adds the GNOME metapackage to the system profile. Likewise, adding the Xfce service not only adds the @code{xfce} metapackage to the system profile, but it also gives the Thunar file manager the ability to open a ``root-mode'' file management window, if the user authenticates using the administrator's password via the standard polkit graphical interface. To ``add MATE'' means that @code{polkit} and @code{dbus} are extended appropriately, allowing MATE to operate with elevated privileges on a limited number of special-purpose system interfaces. Additionally, adding a service of type @code{mate-desktop-service-type} adds the MATE metapackage to the system profile. ``Adding Enlightenment'' means that @code{dbus} is extended appropriately, and several of Enlightenment's binaries are set as setuid, allowing Enlightenment's screen locker and other functionality to work as expected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20474 +#: guix-git/doc/guix.texi:20836 msgid "The desktop environments in Guix use the Xorg display server by default. If you'd like to use the newer display server protocol called Wayland, you need to enable Wayland support in GDM (@pxref{wayland-gdm}). Another solution is to use the @code{sddm-service} instead of GDM as the graphical login manager. You should then select the ``GNOME (Wayland)'' session in SDDM@. Alternatively you can also try starting GNOME on Wayland manually from a TTY with the command ``XDG_SESSION_TYPE=wayland exec dbus-run-session gnome-session``. Currently only GNOME has support for Wayland." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20475 +#: guix-git/doc/guix.texi:20837 #, no-wrap msgid "{Scheme Variable} gnome-desktop-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20479 +#: guix-git/doc/guix.texi:20841 msgid "This is the type of the service that adds the @uref{https://www.gnome.org, GNOME} desktop environment. Its value is a @code{gnome-desktop-configuration} object (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20482 +#: guix-git/doc/guix.texi:20844 msgid "This service adds the @code{gnome} package to the system profile, and extends polkit with the actions from @code{gnome-settings-daemon}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20484 +#: guix-git/doc/guix.texi:20846 #, no-wrap msgid "{Data Type} gnome-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20486 +#: guix-git/doc/guix.texi:20848 msgid "Configuration record for the GNOME desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20488 +#: guix-git/doc/guix.texi:20850 #, no-wrap msgid "@code{gnome} (default: @code{gnome})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20490 +#: guix-git/doc/guix.texi:20852 msgid "The GNOME package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20493 +#: guix-git/doc/guix.texi:20855 #, no-wrap msgid "{Scheme Variable} xfce-desktop-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20497 +#: guix-git/doc/guix.texi:20859 msgid "This is the type of a service to run the @uref{Xfce, https://xfce.org/} desktop environment. Its value is an @code{xfce-desktop-configuration} object (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20502 +#: guix-git/doc/guix.texi:20864 msgid "This service adds the @code{xfce} package to the system profile, and extends polkit with the ability for @code{thunar} to manipulate the file system as root from within a user session, after the user has authenticated with the administrator's password." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20508 +#: guix-git/doc/guix.texi:20870 msgid "Note that @code{xfce4-panel} and its plugin packages should be installed in the same profile to ensure compatibility. When using this service, you should add extra plugins (@code{xfce4-whiskermenu-plugin}, @code{xfce4-weather-plugin}, etc.) to the @code{packages} field of your @code{operating-system}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20510 +#: guix-git/doc/guix.texi:20872 #, no-wrap msgid "{Data Type} xfce-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20512 +#: guix-git/doc/guix.texi:20874 msgid "Configuration record for the Xfce desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20514 +#: guix-git/doc/guix.texi:20876 #, no-wrap msgid "@code{xfce} (default: @code{xfce})" msgstr "@code{xfce} (default: @code{xfce})" #. type: table -#: guix-git/doc/guix.texi:20516 +#: guix-git/doc/guix.texi:20878 msgid "The Xfce package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20519 +#: guix-git/doc/guix.texi:20881 #, no-wrap msgid "{Scheme Variable} mate-desktop-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20523 +#: guix-git/doc/guix.texi:20885 msgid "This is the type of the service that runs the @uref{https://mate-desktop.org/, MATE desktop environment}. Its value is a @code{mate-desktop-configuration} object (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20527 +#: guix-git/doc/guix.texi:20889 msgid "This service adds the @code{mate} package to the system profile, and extends polkit with the actions from @code{mate-settings-daemon}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20529 +#: guix-git/doc/guix.texi:20891 #, no-wrap msgid "{Data Type} mate-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20531 +#: guix-git/doc/guix.texi:20893 msgid "Configuration record for the MATE desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20533 +#: guix-git/doc/guix.texi:20895 #, no-wrap msgid "@code{mate} (default: @code{mate})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20535 +#: guix-git/doc/guix.texi:20897 msgid "The MATE package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20538 +#: guix-git/doc/guix.texi:20900 #, no-wrap msgid "{Scheme Variable} lxqt-desktop-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20542 +#: guix-git/doc/guix.texi:20904 msgid "This is the type of the service that runs the @uref{https://lxqt-project.org, LXQt desktop environment}. Its value is a @code{lxqt-desktop-configuration} object (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20545 +#: guix-git/doc/guix.texi:20907 msgid "This service adds the @code{lxqt} package to the system profile." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20547 +#: guix-git/doc/guix.texi:20909 #, no-wrap msgid "{Data Type} lxqt-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20549 +#: guix-git/doc/guix.texi:20911 msgid "Configuration record for the LXQt desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20551 +#: guix-git/doc/guix.texi:20913 #, no-wrap msgid "@code{lxqt} (default: @code{lxqt})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20553 +#: guix-git/doc/guix.texi:20915 msgid "The LXQT package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20556 +#: guix-git/doc/guix.texi:20918 #, no-wrap msgid "{Scheme Variable} enlightenment-desktop-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20559 +#: guix-git/doc/guix.texi:20921 msgid "Return a service that adds the @code{enlightenment} package to the system profile, and extends dbus with actions from @code{efl}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20561 +#: guix-git/doc/guix.texi:20923 #, no-wrap msgid "{Data Type} enlightenment-desktop-service-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20563 +#: guix-git/doc/guix.texi:20925 #, no-wrap msgid "@code{enlightenment} (default: @code{enlightenment})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20565 +#: guix-git/doc/guix.texi:20927 msgid "The enlightenment package to use." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20573 +#: guix-git/doc/guix.texi:20935 msgid "Because the GNOME, Xfce and MATE desktop services pull in so many packages, the default @code{%desktop-services} variable doesn't include any of them by default. To add GNOME, Xfce or MATE, just @code{cons} them onto @code{%desktop-services} in the @code{services} field of your @code{operating-system}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20584 +#: guix-git/doc/guix.texi:20946 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -36908,576 +37543,576 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20588 +#: guix-git/doc/guix.texi:20950 msgid "These desktop environments will then be available as options in the graphical login window." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20592 +#: guix-git/doc/guix.texi:20954 msgid "The actual service definitions included in @code{%desktop-services} and provided by @code{(gnu services dbus)} and @code{(gnu services desktop)} are described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20593 +#: guix-git/doc/guix.texi:20955 #, no-wrap msgid "{Scheme Procedure} dbus-service [#:dbus @var{dbus}] [#:services '()]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20596 +#: guix-git/doc/guix.texi:20958 msgid "Return a service that runs the ``system bus'', using @var{dbus}, with support for @var{services}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20600 +#: guix-git/doc/guix.texi:20962 msgid "@uref{https://dbus.freedesktop.org/, D-Bus} is an inter-process communication facility. Its system bus is used to allow system services to communicate and to be notified of system-wide events." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20605 +#: guix-git/doc/guix.texi:20967 msgid "@var{services} must be a list of packages that provide an @file{etc/dbus-1/system.d} directory containing additional D-Bus configuration and policy files. For example, to allow avahi-daemon to use the system bus, @var{services} must be equal to @code{(list avahi)}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20607 +#: guix-git/doc/guix.texi:20969 #, no-wrap msgid "{Scheme Procedure} elogind-service [#:config @var{config}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20613 +#: guix-git/doc/guix.texi:20975 msgid "Return a service that runs the @code{elogind} login and seat management daemon. @uref{https://github.com/elogind/elogind, Elogind} exposes a D-Bus interface that can be used to know which users are logged in, know what kind of sessions they have open, suspend the system, inhibit system suspend, reboot the system, and other tasks." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20617 +#: guix-git/doc/guix.texi:20979 msgid "Elogind handles most system-level power events for a computer, for example suspending the system when a lid is closed, or shutting it down when the power button is pressed." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20622 +#: guix-git/doc/guix.texi:20984 msgid "The @var{config} keyword argument specifies the configuration for elogind, and should be the result of an @code{(elogind-configuration (@var{parameter} @var{value})...)} invocation. Available parameters and their default values are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20624 +#: guix-git/doc/guix.texi:20986 #, no-wrap msgid "kill-user-processes?" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20626 guix-git/doc/guix.texi:20646 -#: guix-git/doc/guix.texi:20648 guix-git/doc/guix.texi:20650 -#: guix-git/doc/guix.texi:20662 +#: guix-git/doc/guix.texi:20988 guix-git/doc/guix.texi:21008 +#: guix-git/doc/guix.texi:21010 guix-git/doc/guix.texi:21012 +#: guix-git/doc/guix.texi:21024 msgid "#f" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20626 +#: guix-git/doc/guix.texi:20988 #, no-wrap msgid "kill-only-users" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20628 guix-git/doc/guix.texi:20668 +#: guix-git/doc/guix.texi:20990 guix-git/doc/guix.texi:21030 msgid "()" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20628 +#: guix-git/doc/guix.texi:20990 #, no-wrap msgid "kill-exclude-users" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20630 +#: guix-git/doc/guix.texi:20992 msgid "(\"root\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20630 +#: guix-git/doc/guix.texi:20992 #, no-wrap msgid "inhibit-delay-max-seconds" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20632 +#: guix-git/doc/guix.texi:20994 msgid "5" msgstr "5" #. type: item -#: guix-git/doc/guix.texi:20632 +#: guix-git/doc/guix.texi:20994 #, no-wrap msgid "handle-power-key" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20634 +#: guix-git/doc/guix.texi:20996 msgid "poweroff" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20634 +#: guix-git/doc/guix.texi:20996 #, no-wrap msgid "handle-suspend-key" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20636 guix-git/doc/guix.texi:20640 +#: guix-git/doc/guix.texi:20998 guix-git/doc/guix.texi:21002 msgid "suspend" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20636 +#: guix-git/doc/guix.texi:20998 #, no-wrap msgid "handle-hibernate-key" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20638 +#: guix-git/doc/guix.texi:21000 msgid "hibernate" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20638 +#: guix-git/doc/guix.texi:21000 #, no-wrap msgid "handle-lid-switch" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20640 +#: guix-git/doc/guix.texi:21002 #, no-wrap msgid "handle-lid-switch-docked" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20642 guix-git/doc/guix.texi:20644 -#: guix-git/doc/guix.texi:20656 +#: guix-git/doc/guix.texi:21004 guix-git/doc/guix.texi:21006 +#: guix-git/doc/guix.texi:21018 msgid "ignore" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20642 +#: guix-git/doc/guix.texi:21004 #, no-wrap msgid "handle-lid-switch-external-power" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20644 +#: guix-git/doc/guix.texi:21006 #, no-wrap msgid "power-key-ignore-inhibited?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20646 +#: guix-git/doc/guix.texi:21008 #, no-wrap msgid "suspend-key-ignore-inhibited?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20648 +#: guix-git/doc/guix.texi:21010 #, no-wrap msgid "hibernate-key-ignore-inhibited?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20650 +#: guix-git/doc/guix.texi:21012 #, no-wrap msgid "lid-switch-ignore-inhibited?" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20652 guix-git/doc/guix.texi:20664 +#: guix-git/doc/guix.texi:21014 guix-git/doc/guix.texi:21026 msgid "#t" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20652 +#: guix-git/doc/guix.texi:21014 #, no-wrap msgid "holdoff-timeout-seconds" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20654 +#: guix-git/doc/guix.texi:21016 msgid "30" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20654 +#: guix-git/doc/guix.texi:21016 #, no-wrap msgid "idle-action" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20656 +#: guix-git/doc/guix.texi:21018 #, no-wrap msgid "idle-action-seconds" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20658 +#: guix-git/doc/guix.texi:21020 msgid "(* 30 60)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20658 +#: guix-git/doc/guix.texi:21020 #, no-wrap msgid "runtime-directory-size-percent" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20660 +#: guix-git/doc/guix.texi:21022 msgid "10" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20660 +#: guix-git/doc/guix.texi:21022 #, no-wrap msgid "runtime-directory-size" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20662 +#: guix-git/doc/guix.texi:21024 #, no-wrap msgid "remove-ipc?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20664 +#: guix-git/doc/guix.texi:21026 #, no-wrap msgid "suspend-state" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20666 +#: guix-git/doc/guix.texi:21028 msgid "(\"mem\" \"standby\" \"freeze\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20666 +#: guix-git/doc/guix.texi:21028 #, no-wrap msgid "suspend-mode" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20668 +#: guix-git/doc/guix.texi:21030 #, no-wrap msgid "hibernate-state" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20670 guix-git/doc/guix.texi:20674 +#: guix-git/doc/guix.texi:21032 guix-git/doc/guix.texi:21036 msgid "(\"disk\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20670 +#: guix-git/doc/guix.texi:21032 #, no-wrap msgid "hibernate-mode" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20672 +#: guix-git/doc/guix.texi:21034 msgid "(\"platform\" \"shutdown\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20672 +#: guix-git/doc/guix.texi:21034 #, no-wrap msgid "hybrid-sleep-state" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20674 +#: guix-git/doc/guix.texi:21036 #, no-wrap msgid "hybrid-sleep-mode" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20676 +#: guix-git/doc/guix.texi:21038 msgid "(\"suspend\" \"platform\" \"shutdown\")" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20679 +#: guix-git/doc/guix.texi:21041 #, no-wrap msgid "{Scheme Procedure} accountsservice-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20687 +#: guix-git/doc/guix.texi:21049 msgid "[#:accountsservice @var{accountsservice}] Return a service that runs AccountsService, a system service that can list available accounts, change their passwords, and so on. AccountsService integrates with PolicyKit to enable unprivileged users to acquire the capability to modify their system configuration. @uref{https://www.freedesktop.org/wiki/Software/AccountsService/, the accountsservice web site} for more information." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20690 +#: guix-git/doc/guix.texi:21052 msgid "The @var{accountsservice} keyword argument is the @code{accountsservice} package to expose as a service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20692 +#: guix-git/doc/guix.texi:21054 #, no-wrap msgid "{Scheme Procedure} polkit-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20701 +#: guix-git/doc/guix.texi:21063 msgid "[#:polkit @var{polkit}] Return a service that runs the @uref{https://www.freedesktop.org/wiki/Software/polkit/, Polkit privilege management service}, which allows system administrators to grant access to privileged operations in a structured way. By querying the Polkit service, a privileged system component can know when it should grant additional capabilities to ordinary users. For example, an ordinary user can be granted the capability to suspend the system if the user is logged in locally." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20703 +#: guix-git/doc/guix.texi:21065 #, no-wrap msgid "{Scheme Variable} polkit-wheel-service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20708 +#: guix-git/doc/guix.texi:21070 msgid "Service that adds the @code{wheel} group as admins to the Polkit service. This makes it so that users in the @code{wheel} group are queried for their own passwords when performing administrative actions instead of @code{root}'s, similar to the behaviour used by @code{sudo}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20710 +#: guix-git/doc/guix.texi:21072 #, no-wrap msgid "{Scheme Variable} upower-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20714 +#: guix-git/doc/guix.texi:21076 msgid "Service that runs @uref{https://upower.freedesktop.org/, @command{upowerd}}, a system-wide monitor for power consumption and battery levels, with the given configuration settings." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20717 +#: guix-git/doc/guix.texi:21079 msgid "It implements the @code{org.freedesktop.UPower} D-Bus interface, and is notably used by GNOME." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20719 +#: guix-git/doc/guix.texi:21081 #, no-wrap msgid "{Data Type} upower-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20721 +#: guix-git/doc/guix.texi:21083 msgid "Data type representation the configuration for UPower." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20724 +#: guix-git/doc/guix.texi:21086 #, no-wrap msgid "@code{upower} (default: @var{upower})" msgstr "@code{upower} (default: @var{upower})" #. type: table -#: guix-git/doc/guix.texi:20726 +#: guix-git/doc/guix.texi:21088 msgid "Package to use for @code{upower}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20727 +#: guix-git/doc/guix.texi:21089 #, no-wrap msgid "@code{watts-up-pro?} (default: @code{#f})" msgstr "@code{watts-up-pro?} (padrão: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:20729 +#: guix-git/doc/guix.texi:21091 msgid "Enable the Watts Up Pro device." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20730 +#: guix-git/doc/guix.texi:21092 #, no-wrap msgid "@code{poll-batteries?} (default: @code{#t})" msgstr "@code{poll-batteries?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:20732 +#: guix-git/doc/guix.texi:21094 msgid "Enable polling the kernel for battery level changes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20733 +#: guix-git/doc/guix.texi:21095 #, no-wrap msgid "@code{ignore-lid?} (default: @code{#f})" msgstr "@code{ignore-lid?} (padrão: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:20735 +#: guix-git/doc/guix.texi:21097 msgid "Ignore the lid state, this can be useful if it's incorrect on a device." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20736 +#: guix-git/doc/guix.texi:21098 #, no-wrap msgid "@code{use-percentage-for-policy?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20739 +#: guix-git/doc/guix.texi:21101 msgid "Whether battery percentage based policy should be used. The default is to use the time left, change to @code{#t} to use the percentage." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20740 +#: guix-git/doc/guix.texi:21102 #, no-wrap msgid "@code{percentage-low} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20743 +#: guix-git/doc/guix.texi:21105 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which the battery is considered low." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20744 +#: guix-git/doc/guix.texi:21106 #, no-wrap msgid "@code{percentage-critical} (default: @code{3})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20747 +#: guix-git/doc/guix.texi:21109 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which the battery is considered critical." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20748 +#: guix-git/doc/guix.texi:21110 #, no-wrap msgid "@code{percentage-action} (default: @code{2})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20751 +#: guix-git/doc/guix.texi:21113 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which action will be taken." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20752 +#: guix-git/doc/guix.texi:21114 #, no-wrap msgid "@code{time-low} (default: @code{1200})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20755 +#: guix-git/doc/guix.texi:21117 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which the battery is considered low." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20756 +#: guix-git/doc/guix.texi:21118 #, no-wrap msgid "@code{time-critical} (default: @code{300})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20759 +#: guix-git/doc/guix.texi:21121 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which the battery is considered critical." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20760 +#: guix-git/doc/guix.texi:21122 #, no-wrap msgid "@code{time-action} (default: @code{120})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20763 +#: guix-git/doc/guix.texi:21125 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which action will be taken." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20764 +#: guix-git/doc/guix.texi:21126 #, no-wrap msgid "@code{critical-power-action} (default: @code{'hybrid-sleep})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20767 +#: guix-git/doc/guix.texi:21129 msgid "The action taken when @code{percentage-action} or @code{time-action} is reached (depending on the configuration of @code{use-percentage-for-policy?})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20769 +#: guix-git/doc/guix.texi:21131 msgid "Possible values are:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20773 +#: guix-git/doc/guix.texi:21135 msgid "'power-off" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20776 +#: guix-git/doc/guix.texi:21138 msgid "'hibernate" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:20779 +#: guix-git/doc/guix.texi:21141 msgid "@code{'hybrid-sleep}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20784 +#: guix-git/doc/guix.texi:21146 #, no-wrap msgid "{Scheme Procedure} udisks-service [#:udisks @var{udisks}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20794 +#: guix-git/doc/guix.texi:21156 msgid "Return a service for @uref{https://udisks.freedesktop.org/docs/latest/, UDisks}, a @dfn{disk management} daemon that provides user interfaces with notifications and ways to mount/unmount disks. Programs that talk to UDisks include the @command{udisksctl} command, part of UDisks, and GNOME Disks. Note that Udisks relies on the @command{mount} command, so it will only be able to use the file-system utilities installed in the system profile. For example if you want to be able to mount NTFS file-systems in read and write fashion, you'll need to have @code{ntfs-3g} installed system-wide." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20796 +#: guix-git/doc/guix.texi:21158 #, no-wrap msgid "{Scheme Variable} colord-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20803 +#: guix-git/doc/guix.texi:21165 msgid "This is the type of the service that runs @command{colord}, a system service with a D-Bus interface to manage the color profiles of input and output devices such as screens and scanners. It is notably used by the GNOME Color Manager graphical tool. See @uref{https://www.freedesktop.org/software/colord/, the colord web site} for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20805 +#: guix-git/doc/guix.texi:21167 #, no-wrap msgid "scanner access" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20806 +#: guix-git/doc/guix.texi:21168 #, no-wrap msgid "{Scheme Variable} sane-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20812 +#: guix-git/doc/guix.texi:21174 msgid "This service provides access to scanners @i{via} @uref{http://www.sane-project.org, SANE} by installing the necessary udev rules. It is included in @code{%desktop-services} (@pxref{Desktop Services}) and relies by default on @code{sane-backends-minimal} package (see below) for hardware support." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20814 +#: guix-git/doc/guix.texi:21176 #, no-wrap msgid "{Scheme Variable} sane-backends-minimal" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20817 +#: guix-git/doc/guix.texi:21179 msgid "The default package which the @code{sane-service-type} installs. It supports many recent scanners." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20819 +#: guix-git/doc/guix.texi:21181 #, no-wrap msgid "{Scheme Variable} sane-backends" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20826 +#: guix-git/doc/guix.texi:21188 msgid "This package includes support for all scanners that @code{sane-backends-minimal} supports, plus older Hewlett-Packard scanners supported by @code{hplip} package. In order to use this on a system which relies on @code{%desktop-services}, you may use @code{modify-services} (@pxref{Service Reference, @code{modify-services}}) as illustrated below:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20835 +#: guix-git/doc/guix.texi:21197 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -37491,7 +38126,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20840 +#: guix-git/doc/guix.texi:21202 #, no-wrap msgid "" "(define %my-desktop-services\n" @@ -37502,7 +38137,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20844 +#: guix-git/doc/guix.texi:21206 #, no-wrap msgid "" "(operating-system\n" @@ -37511,214 +38146,214 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20847 +#: guix-git/doc/guix.texi:21209 #, no-wrap msgid "{Scheme Procedure} geoclue-application name [#:allowed? #t] [#:system? #f] [#:users '()]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20856 +#: guix-git/doc/guix.texi:21218 msgid "Return a configuration allowing an application to access GeoClue location data. @var{name} is the Desktop ID of the application, without the @code{.desktop} part. If @var{allowed?} is true, the application will have access to location information by default. The boolean @var{system?} value indicates whether an application is a system component or not. Finally @var{users} is a list of UIDs of all users for which this application is allowed location info access. An empty users list means that all users are allowed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20858 +#: guix-git/doc/guix.texi:21220 #, no-wrap msgid "{Scheme Variable} %standard-geoclue-applications" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20865 +#: guix-git/doc/guix.texi:21227 msgid "The standard list of well-known GeoClue application configurations, granting authority to the GNOME date-and-time utility to ask for the current location in order to set the time zone, and allowing the IceCat and Epiphany web browsers to request location information. IceCat and Epiphany both query the user before allowing a web page to know the user's location." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20867 +#: guix-git/doc/guix.texi:21229 #, no-wrap msgid "{Scheme Procedure} geoclue-service [#:colord @var{colord}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20880 +#: guix-git/doc/guix.texi:21242 msgid "[#:whitelist '()] @ [#:wifi-geolocation-url \"https://location.services.mozilla.com/v1/geolocate?key=geoclue\"] @ [#:submit-data? #f] [#:wifi-submission-url \"https://location.services.mozilla.com/v1/submit?key=geoclue\"] @ [#:submission-nick \"geoclue\"] @ [#:applications %standard-geoclue-applications] Return a service that runs the GeoClue location service. This service provides a D-Bus interface to allow applications to request access to a user's physical location, and optionally to add information to online location databases. See @uref{https://wiki.freedesktop.org/www/Software/GeoClue/, the GeoClue web site} for more information." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20882 +#: guix-git/doc/guix.texi:21244 #, no-wrap msgid "{Scheme Procedure} bluetooth-service [#:bluez @var{bluez}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20889 +#: guix-git/doc/guix.texi:21251 msgid "[@w{#:auto-enable? #f}] Return a service that runs the @command{bluetoothd} daemon, which manages all the Bluetooth devices and provides a number of D-Bus interfaces. When AUTO-ENABLE? is true, the bluetooth controller is powered automatically at boot, which can be useful when using a bluetooth keyboard or mouse." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20891 +#: guix-git/doc/guix.texi:21253 msgid "Users need to be in the @code{lp} group to access the D-Bus service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20893 +#: guix-git/doc/guix.texi:21255 #, no-wrap msgid "{Scheme Variable} gnome-keyring-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20897 +#: guix-git/doc/guix.texi:21259 msgid "This is the type of the service that adds the @uref{https://wiki.gnome.org/Projects/GnomeKeyring, GNOME Keyring}. Its value is a @code{gnome-keyring-configuration} object (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20901 +#: guix-git/doc/guix.texi:21263 msgid "This service adds the @code{gnome-keyring} package to the system profile and extends PAM with entries using @code{pam_gnome_keyring.so}, unlocking a user's login keyring when they log in or setting its password with passwd." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20903 +#: guix-git/doc/guix.texi:21265 #, no-wrap msgid "{Data Type} gnome-keyring-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20905 +#: guix-git/doc/guix.texi:21267 msgid "Configuration record for the GNOME Keyring service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20907 +#: guix-git/doc/guix.texi:21269 #, no-wrap msgid "@code{keyring} (default: @code{gnome-keyring})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20909 +#: guix-git/doc/guix.texi:21271 msgid "The GNOME keyring package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20910 +#: guix-git/doc/guix.texi:21272 #, no-wrap msgid "pam-services" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20915 +#: guix-git/doc/guix.texi:21277 msgid "A list of @code{(@var{service} . @var{kind})} pairs denoting PAM services to extend, where @var{service} is the name of an existing service to extend and @var{kind} is one of @code{login} or @code{passwd}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20921 +#: guix-git/doc/guix.texi:21283 msgid "If @code{login} is given, it adds an optional @code{pam_gnome_keyring.so} to the auth block without arguments and to the session block with @code{auto_start}. If @code{passwd} is given, it adds an optional @code{pam_gnome_keyring.so} to the password block without arguments." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20924 +#: guix-git/doc/guix.texi:21286 msgid "By default, this field contains ``gdm-password'' with the value @code{login} and ``passwd'' is with the value @code{passwd}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20931 +#: guix-git/doc/guix.texi:21293 #, no-wrap msgid "sound support" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20932 +#: guix-git/doc/guix.texi:21294 #, no-wrap msgid "ALSA" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20933 +#: guix-git/doc/guix.texi:21295 #, no-wrap msgid "PulseAudio, sound support" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20938 +#: guix-git/doc/guix.texi:21300 msgid "The @code{(gnu services sound)} module provides a service to configure the Advanced Linux Sound Architecture (ALSA) system, which makes PulseAudio the preferred ALSA output driver." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20939 +#: guix-git/doc/guix.texi:21301 #, no-wrap msgid "{Scheme Variable} alsa-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20944 +#: guix-git/doc/guix.texi:21306 msgid "This is the type for the @uref{https://alsa-project.org/, Advanced Linux Sound Architecture} (ALSA) system, which generates the @file{/etc/asound.conf} configuration file. The value for this type is a @command{alsa-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20947 +#: guix-git/doc/guix.texi:21309 #, no-wrap msgid "(service alsa-service-type)\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20950 +#: guix-git/doc/guix.texi:21312 msgid "See below for details about @code{alsa-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20952 +#: guix-git/doc/guix.texi:21314 #, no-wrap msgid "{Data Type} alsa-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20954 +#: guix-git/doc/guix.texi:21316 msgid "Data type representing the configuration for @code{alsa-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20956 +#: guix-git/doc/guix.texi:21318 #, no-wrap msgid "@code{alsa-plugins} (default: @var{alsa-plugins})" msgstr "@code{alsa-plugins} (default: @var{alsa-plugins})" #. type: table -#: guix-git/doc/guix.texi:20958 +#: guix-git/doc/guix.texi:21320 msgid "@code{alsa-plugins} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20959 +#: guix-git/doc/guix.texi:21321 #, no-wrap msgid "@code{pulseaudio?} (default: @var{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20962 +#: guix-git/doc/guix.texi:21324 msgid "Whether ALSA applications should transparently be made to use the @uref{https://www.pulseaudio.org/, PulseAudio} sound server." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20966 +#: guix-git/doc/guix.texi:21328 msgid "Using PulseAudio allows you to run several sound-producing applications at the same time and to individual control them @i{via} @command{pavucontrol}, among other things." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20967 +#: guix-git/doc/guix.texi:21329 #, no-wrap msgid "@code{extra-options} (default: @var{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20969 +#: guix-git/doc/guix.texi:21331 msgid "String to append to the @file{/etc/asound.conf} file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20975 +#: guix-git/doc/guix.texi:21337 msgid "Individual users who want to override the system configuration of ALSA can do it with the @file{~/.asoundrc} file:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:20981 +#: guix-git/doc/guix.texi:21343 #, no-wrap msgid "" "# In guix, we have to specify the absolute path for plugins.\n" @@ -37729,7 +38364,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:20990 +#: guix-git/doc/guix.texi:21352 #, no-wrap msgid "" "# Routing ALSA to jack:\n" @@ -37744,7 +38379,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:20996 +#: guix-git/doc/guix.texi:21358 #, no-wrap msgid "" " capture_ports @{\n" @@ -37756,7 +38391,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:21003 +#: guix-git/doc/guix.texi:21365 #, no-wrap msgid "" "pcm.!default @{\n" @@ -37768,104 +38403,104 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21007 +#: guix-git/doc/guix.texi:21369 msgid "See @uref{https://www.alsa-project.org/main/index.php/Asoundrc} for the details." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21008 +#: guix-git/doc/guix.texi:21370 #, no-wrap msgid "{Scheme Variable} pulseaudio-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21012 +#: guix-git/doc/guix.texi:21374 msgid "This is the type for the @uref{https://www.pulseaudio.org/, PulseAudio} sound server. It exists to allow system overrides of the default settings via @code{pulseaudio-configuration}, see below." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:21018 +#: guix-git/doc/guix.texi:21380 msgid "This service overrides per-user configuration files. If you want PulseAudio to honor configuration files in @file{~/.config/pulse} you have to unset the environment variables @env{PULSE_CONFIG} and @env{PULSE_CLIENTCONFIG} in your @file{~/.bash_profile}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:21026 +#: guix-git/doc/guix.texi:21388 msgid "This service on its own does not ensure, that the @code{pulseaudio} package exists on your machine. It merely adds configuration files for it, as detailed below. In the (admittedly unlikely) case, that you find yourself without a @code{pulseaudio} package, consider enabling it through the @code{alsa-service-type} above." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21029 +#: guix-git/doc/guix.texi:21391 #, no-wrap msgid "{Data Type} pulseaudio-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21031 +#: guix-git/doc/guix.texi:21393 msgid "Data type representing the configuration for @code{pulseaudio-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21033 +#: guix-git/doc/guix.texi:21395 #, no-wrap msgid "@code{client-conf} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21038 -msgid "List of settings to set in @file{client.conf}. Accepts a list of strings or a symbol-value pairs. A string will be inserted as-is with a newline added. A pair will be formatted as ``key = value'', again with a newline added." +#: guix-git/doc/guix.texi:21400 +msgid "List of settings to set in @file{client.conf}. Accepts a list of strings or symbol-value pairs. A string will be inserted as-is with a newline added. A pair will be formatted as ``key = value'', again with a newline added." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21039 +#: guix-git/doc/guix.texi:21401 #, no-wrap msgid "@code{daemon-conf} (default: @code{'((flat-volumes . no))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21042 +#: guix-git/doc/guix.texi:21404 msgid "List of settings to set in @file{daemon.conf}, formatted just like @var{client-conf}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21043 +#: guix-git/doc/guix.texi:21405 #, no-wrap msgid "@code{script-file} (default: @code{(file-append pulseaudio \"/etc/pulse/default.pa\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21045 +#: guix-git/doc/guix.texi:21407 msgid "Script file to use as @file{default.pa}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21046 +#: guix-git/doc/guix.texi:21408 #, no-wrap msgid "@code{system-script-file} (default: @code{(file-append pulseaudio \"/etc/pulse/system.pa\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21048 +#: guix-git/doc/guix.texi:21410 msgid "Script file to use as @file{system.pa}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21051 +#: guix-git/doc/guix.texi:21413 #, no-wrap msgid "{Scheme Variable} ladspa-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21054 +#: guix-git/doc/guix.texi:21416 msgid "This service sets the @var{LADSPA_PATH} variable, so that programs, which respect it, e.g. PulseAudio, can load LADSPA plugins." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21057 +#: guix-git/doc/guix.texi:21419 msgid "The following example will setup the service to enable modules from the @code{swh-plugins} package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21061 +#: guix-git/doc/guix.texi:21423 #, no-wrap msgid "" "(service ladspa-service-type\n" @@ -37873,34 +38508,34 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21065 +#: guix-git/doc/guix.texi:21427 msgid "See @uref{http://plugin.org.uk/ladspa-swh/docs/ladspa-swh.html} for the details." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21072 +#: guix-git/doc/guix.texi:21434 #, no-wrap msgid "SQL" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21074 +#: guix-git/doc/guix.texi:21436 msgid "The @code{(gnu services databases)} module provides the following services." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21075 +#: guix-git/doc/guix.texi:21437 #, no-wrap msgid "PostgreSQL" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21079 +#: guix-git/doc/guix.texi:21441 msgid "The following example describes a PostgreSQL service with the default configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21084 +#: guix-git/doc/guix.texi:21446 #, no-wrap msgid "" "(service postgresql-service-type\n" @@ -37909,17 +38544,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21090 +#: guix-git/doc/guix.texi:21452 msgid "If the services fails to start, it may be due to an incompatible cluster already present in @var{data-directory}. Adjust it (or, if you don't need the cluster anymore, delete @var{data-directory}), then restart the service." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21097 +#: guix-git/doc/guix.texi:21459 msgid "Peer authentication is used by default and the @code{postgres} user account has no shell, which prevents the direct execution of @code{psql} commands as this user. To use @code{psql}, you can temporarily log in as @code{postgres} using a shell, create a PostgreSQL superuser with the same name as one of the system users and then create the associated database." msgstr "" #. type: example -#: guix-git/doc/guix.texi:21102 +#: guix-git/doc/guix.texi:21464 #, no-wrap msgid "" "sudo -u postgres -s /bin/sh\n" @@ -37928,101 +38563,101 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21104 +#: guix-git/doc/guix.texi:21466 #, no-wrap msgid "{Data Type} postgresql-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21107 +#: guix-git/doc/guix.texi:21469 msgid "Data type representing the configuration for the @code{postgresql-service-type}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:21109 +#: guix-git/doc/guix.texi:21471 #, no-wrap msgid "postgresql" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21111 +#: guix-git/doc/guix.texi:21473 msgid "PostgreSQL package to use for the service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21112 +#: guix-git/doc/guix.texi:21474 #, no-wrap msgid "@code{port} (default: @code{5432})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21114 +#: guix-git/doc/guix.texi:21476 msgid "Port on which PostgreSQL should listen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21117 +#: guix-git/doc/guix.texi:21479 msgid "Locale to use as the default when creating the database cluster." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21118 +#: guix-git/doc/guix.texi:21480 #, no-wrap msgid "@code{config-file} (default: @code{(postgresql-config-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21122 +#: guix-git/doc/guix.texi:21484 msgid "The configuration file to use when running PostgreSQL@. The default behaviour uses the postgresql-config-file record with the default values for the fields." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21123 +#: guix-git/doc/guix.texi:21485 #, no-wrap msgid "@code{log-directory} (default: @code{\"/var/log/postgresql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21127 +#: guix-git/doc/guix.texi:21489 msgid "The directory where @command{pg_ctl} output will be written in a file named @code{\"pg_ctl.log\"}. This file can be useful to debug PostgreSQL configuration errors for instance." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21128 +#: guix-git/doc/guix.texi:21490 #, no-wrap msgid "@code{data-directory} (default: @code{\"/var/lib/postgresql/data\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21130 +#: guix-git/doc/guix.texi:21492 msgid "Directory in which to store the data." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21131 +#: guix-git/doc/guix.texi:21493 #, no-wrap msgid "@code{extension-packages} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21132 +#: guix-git/doc/guix.texi:21494 #, no-wrap msgid "postgresql extension-packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21137 +#: guix-git/doc/guix.texi:21499 msgid "Additional extensions are loaded from packages listed in @var{extension-packages}. Extensions are available at runtime. For instance, to create a geographic database using the @code{postgis} extension, a user can configure the postgresql-service as in this example:" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21138 +#: guix-git/doc/guix.texi:21500 #, no-wrap msgid "postgis" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21141 +#: guix-git/doc/guix.texi:21503 #, no-wrap msgid "" "(use-package-modules databases geo)\n" @@ -38030,7 +38665,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21154 +#: guix-git/doc/guix.texi:21516 #, no-wrap msgid "" "(operating-system\n" @@ -38048,12 +38683,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21158 +#: guix-git/doc/guix.texi:21520 msgid "Then the extension becomes visible and you can initialise an empty geographic database in this way:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:21165 +#: guix-git/doc/guix.texi:21527 #, no-wrap msgid "" "psql -U postgres\n" @@ -38064,23 +38699,23 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21170 +#: guix-git/doc/guix.texi:21532 msgid "There is no need to add this field for contrib extensions such as hstore or dblink as they are already loadable by postgresql. This field is only required to add extensions provided by other packages." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21174 +#: guix-git/doc/guix.texi:21536 #, no-wrap msgid "{Data Type} postgresql-config-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21180 +#: guix-git/doc/guix.texi:21542 msgid "Data type representing the PostgreSQL configuration file. As shown in the following example, this can be used to customize the configuration of PostgreSQL@. Note that you can use any G-expression or filename in place of this record, if you already have a configuration file you'd like to use for example." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21200 +#: guix-git/doc/guix.texi:21562 #, no-wrap msgid "" "(service postgresql-service-type\n" @@ -38104,77 +38739,77 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:21203 +#: guix-git/doc/guix.texi:21565 #, no-wrap msgid "@code{log-destination} (default: @code{\"syslog\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21206 +#: guix-git/doc/guix.texi:21568 msgid "The logging method to use for PostgreSQL@. Multiple values are accepted, separated by commas." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21207 +#: guix-git/doc/guix.texi:21569 #, no-wrap msgid "@code{hba-file} (default: @code{%default-postgres-hba})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21210 +#: guix-git/doc/guix.texi:21572 msgid "Filename or G-expression for the host-based authentication configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21211 +#: guix-git/doc/guix.texi:21573 #, no-wrap msgid "@code{ident-file} (default: @code{%default-postgres-ident})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21213 +#: guix-git/doc/guix.texi:21575 msgid "Filename or G-expression for the user name mapping configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21214 +#: guix-git/doc/guix.texi:21576 #, fuzzy, no-wrap msgid "@code{socket-directory} (default: @code{\"/var/run/postgresql\"})" msgstr "@code{chdir} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:21219 +#: guix-git/doc/guix.texi:21581 msgid "Specifies the directory of the Unix-domain socket(s) on which PostgreSQL is to listen for connections from client applications. If set to @code{\"\"} PostgreSQL does not listen on any Unix-domain sockets, in which case only TCP/IP sockets can be used to connect to the server." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21222 +#: guix-git/doc/guix.texi:21584 msgid "By default, the @code{#false} value means the PostgreSQL default value will be used, which is currently @samp{/tmp}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21227 +#: guix-git/doc/guix.texi:21589 msgid "List of additional keys and values to include in the PostgreSQL config file. Each entry in the list should be a list where the first element is the key, and the remaining elements are the values." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21233 +#: guix-git/doc/guix.texi:21595 msgid "The values can be numbers, booleans or strings and will be mapped to PostgreSQL parameters types @code{Boolean}, @code{String}, @code{Numeric}, @code{Numeric with Unit} and @code{Enumerated} described @uref{https://www.postgresql.org/docs/current/config-setting.html, here}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21237 +#: guix-git/doc/guix.texi:21599 #, no-wrap msgid "{Scheme Variable} postgresql-role-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21240 +#: guix-git/doc/guix.texi:21602 msgid "This service allows to create PostgreSQL roles and databases after PostgreSQL service start. Here is an example of its use." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21248 +#: guix-git/doc/guix.texi:21610 #, no-wrap msgid "" "(service postgresql-role-service-type\n" @@ -38186,12 +38821,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21252 +#: guix-git/doc/guix.texi:21614 msgid "This service can be extended with extra roles, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21258 +#: guix-git/doc/guix.texi:21620 #, no-wrap msgid "" "(service-extension postgresql-role-service-type\n" @@ -38201,399 +38836,399 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21261 +#: guix-git/doc/guix.texi:21623 #, no-wrap msgid "{Data Type} postgresql-role" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21267 +#: guix-git/doc/guix.texi:21629 msgid "PostgreSQL manages database access permissions using the concept of roles. A role can be thought of as either a database user, or a group of database users, depending on how the role is set up. Roles can own database objects (for example, tables) and can assign privileges on those objects to other roles to control who has access to which objects." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21271 +#: guix-git/doc/guix.texi:21633 msgid "The role name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21272 +#: guix-git/doc/guix.texi:21634 #, no-wrap msgid "@code{permissions} (default: @code{'(createdb login)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21276 +#: guix-git/doc/guix.texi:21638 msgid "The role permissions list. Supported permissions are @code{bypassrls}, @code{createdb}, @code{createrole}, @code{login}, @code{replication} and @code{superuser}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21277 +#: guix-git/doc/guix.texi:21639 #, no-wrap msgid "@code{create-database?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21279 +#: guix-git/doc/guix.texi:21641 msgid "Whether to create a database with the same name as the role." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21283 +#: guix-git/doc/guix.texi:21645 #, no-wrap msgid "{Data Type} postgresql-role-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21286 +#: guix-git/doc/guix.texi:21648 msgid "Data type representing the configuration of @var{postgresql-role-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21288 +#: guix-git/doc/guix.texi:21650 #, no-wrap msgid "@code{host} (default: @code{\"/var/run/postgresql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21290 +#: guix-git/doc/guix.texi:21652 msgid "The PostgreSQL host to connect to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21291 +#: guix-git/doc/guix.texi:21653 #, no-wrap msgid "@code{log} (default: @code{\"/var/log/postgresql_roles.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21293 +#: guix-git/doc/guix.texi:21655 msgid "File name of the log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21294 +#: guix-git/doc/guix.texi:21656 #, no-wrap msgid "@code{roles} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21296 +#: guix-git/doc/guix.texi:21658 msgid "The initial PostgreSQL roles to create." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21299 +#: guix-git/doc/guix.texi:21661 #, no-wrap msgid "MariaDB/MySQL" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21301 +#: guix-git/doc/guix.texi:21663 #, no-wrap msgid "{Scheme Variable} mysql-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21305 +#: guix-git/doc/guix.texi:21667 msgid "This is the service type for a MySQL or MariaDB database server. Its value is a @code{mysql-configuration} object that specifies which package to use, as well as various settings for the @command{mysqld} daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21307 +#: guix-git/doc/guix.texi:21669 #, no-wrap msgid "{Data Type} mysql-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21309 +#: guix-git/doc/guix.texi:21671 msgid "Data type representing the configuration of @var{mysql-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21311 +#: guix-git/doc/guix.texi:21673 #, no-wrap msgid "@code{mysql} (default: @var{mariadb})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21314 +#: guix-git/doc/guix.texi:21676 msgid "Package object of the MySQL database server, can be either @var{mariadb} or @var{mysql}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21317 +#: guix-git/doc/guix.texi:21679 msgid "For MySQL, a temporary root password will be displayed at activation time. For MariaDB, the root password is empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21318 guix-git/doc/guix.texi:25138 +#: guix-git/doc/guix.texi:21680 guix-git/doc/guix.texi:25500 #, no-wrap msgid "@code{bind-address} (default: @code{\"127.0.0.1\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21321 +#: guix-git/doc/guix.texi:21683 msgid "The IP on which to listen for network connections. Use @code{\"0.0.0.0\"} to bind to all available network interfaces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21322 +#: guix-git/doc/guix.texi:21684 #, no-wrap msgid "@code{port} (default: @code{3306})" msgstr "@code{porta} (default: @code{3306})" #. type: table -#: guix-git/doc/guix.texi:21324 +#: guix-git/doc/guix.texi:21686 msgid "TCP port on which the database server listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21325 +#: guix-git/doc/guix.texi:21687 #, no-wrap msgid "@code{socket} (default: @code{\"/run/mysqld/mysqld.sock\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21327 +#: guix-git/doc/guix.texi:21689 msgid "Socket file to use for local (non-network) connections." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21330 +#: guix-git/doc/guix.texi:21692 msgid "Additional settings for the @file{my.cnf} configuration file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21331 +#: guix-git/doc/guix.texi:21693 #, fuzzy, no-wrap #| msgid "@code{replacement} (default: @code{#f})" msgid "@code{extra-environment} (default: @code{#~'()})" msgstr "@code{replacement} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:21333 +#: guix-git/doc/guix.texi:21695 msgid "List of environment variables passed to the @command{mysqld} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21334 +#: guix-git/doc/guix.texi:21696 #, no-wrap msgid "@code{auto-upgrade?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21339 +#: guix-git/doc/guix.texi:21701 msgid "Whether to automatically run @command{mysql_upgrade} after starting the service. This is necessary to upgrade the @dfn{system schema} after ``major'' updates (such as switching from MariaDB 10.4 to 10.5), but can be disabled if you would rather do that manually." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21343 +#: guix-git/doc/guix.texi:21705 #, no-wrap msgid "Memcached" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21345 +#: guix-git/doc/guix.texi:21707 #, no-wrap msgid "{Scheme Variable} memcached-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21349 +#: guix-git/doc/guix.texi:21711 msgid "This is the service type for the @uref{https://memcached.org/, Memcached} service, which provides a distributed in memory cache. The value for the service type is a @code{memcached-configuration} object." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21353 +#: guix-git/doc/guix.texi:21715 #, no-wrap msgid "(service memcached-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21355 +#: guix-git/doc/guix.texi:21717 #, no-wrap msgid "{Data Type} memcached-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21357 +#: guix-git/doc/guix.texi:21719 msgid "Data type representing the configuration of memcached." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21359 +#: guix-git/doc/guix.texi:21721 #, no-wrap msgid "@code{memcached} (default: @code{memcached})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21361 +#: guix-git/doc/guix.texi:21723 msgid "The Memcached package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21362 +#: guix-git/doc/guix.texi:21724 #, no-wrap msgid "@code{interfaces} (default: @code{'(\"0.0.0.0\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21364 +#: guix-git/doc/guix.texi:21726 msgid "Network interfaces on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21365 +#: guix-git/doc/guix.texi:21727 #, no-wrap msgid "@code{tcp-port} (default: @code{11211})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21367 +#: guix-git/doc/guix.texi:21729 msgid "Port on which to accept connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21368 +#: guix-git/doc/guix.texi:21730 #, no-wrap msgid "@code{udp-port} (default: @code{11211})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21371 +#: guix-git/doc/guix.texi:21733 msgid "Port on which to accept UDP connections on, a value of 0 will disable listening on a UDP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21372 +#: guix-git/doc/guix.texi:21734 #, no-wrap msgid "@code{additional-options} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21374 +#: guix-git/doc/guix.texi:21736 msgid "Additional command line options to pass to @code{memcached}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21377 +#: guix-git/doc/guix.texi:21739 #, no-wrap msgid "Redis" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21379 +#: guix-git/doc/guix.texi:21741 #, no-wrap msgid "{Scheme Variable} redis-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21382 +#: guix-git/doc/guix.texi:21744 msgid "This is the service type for the @uref{https://redis.io/, Redis} key/value store, whose value is a @code{redis-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21384 +#: guix-git/doc/guix.texi:21746 #, no-wrap msgid "{Data Type} redis-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21386 +#: guix-git/doc/guix.texi:21748 msgid "Data type representing the configuration of redis." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21388 +#: guix-git/doc/guix.texi:21750 #, no-wrap msgid "@code{redis} (default: @code{redis})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21390 +#: guix-git/doc/guix.texi:21752 msgid "The Redis package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21391 +#: guix-git/doc/guix.texi:21753 #, no-wrap msgid "@code{bind} (default: @code{\"127.0.0.1\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21393 +#: guix-git/doc/guix.texi:21755 msgid "Network interface on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21394 +#: guix-git/doc/guix.texi:21756 #, no-wrap msgid "@code{port} (default: @code{6379})" msgstr "@code{porta} (default: @code{6379})" #. type: table -#: guix-git/doc/guix.texi:21397 +#: guix-git/doc/guix.texi:21759 msgid "Port on which to accept connections on, a value of 0 will disable listening on a TCP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21398 +#: guix-git/doc/guix.texi:21760 #, no-wrap msgid "@code{working-directory} (default: @code{\"/var/lib/redis\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21400 +#: guix-git/doc/guix.texi:21762 msgid "Directory in which to store the database and related files." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21406 +#: guix-git/doc/guix.texi:21768 #, no-wrap msgid "mail" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21407 +#: guix-git/doc/guix.texi:21769 #, no-wrap msgid "email" msgstr "e-mail" #. type: Plain text -#: guix-git/doc/guix.texi:21412 +#: guix-git/doc/guix.texi:21774 msgid "The @code{(gnu services mail)} module provides Guix service definitions for email services: IMAP, POP3, and LMTP servers, as well as mail transport agents (MTAs). Lots of acronyms! These services are detailed in the subsections below." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21413 +#: guix-git/doc/guix.texi:21775 #, no-wrap msgid "Dovecot Service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21415 +#: guix-git/doc/guix.texi:21777 #, no-wrap msgid "{Scheme Procedure} dovecot-service [#:config (dovecot-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21417 +#: guix-git/doc/guix.texi:21779 msgid "Return a service that runs the Dovecot IMAP/POP3/LMTP mail server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21427 +#: guix-git/doc/guix.texi:21789 msgid "By default, Dovecot does not need much configuration; the default configuration object created by @code{(dovecot-configuration)} will suffice if your mail is delivered to @code{~/Maildir}. A self-signed certificate will be generated for TLS-protected connections, though Dovecot will also listen on cleartext ports by default. There are a number of options, though, which mail administrators might need to change, and as is the case with other services, Guix allows the system administrator to specify these parameters via a uniform Scheme interface." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21430 +#: guix-git/doc/guix.texi:21792 msgid "For example, to specify that mail is located at @code{maildir~/.mail}, one would instantiate the Dovecot service like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21435 +#: guix-git/doc/guix.texi:21797 #, no-wrap msgid "" "(dovecot-service #:config\n" @@ -38602,2433 +39237,2433 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21443 +#: guix-git/doc/guix.texi:21805 msgid "The available configuration parameters follow. Each parameter definition is preceded by its type; for example, @samp{string-list foo} indicates that the @code{foo} parameter should be specified as a list of strings. There is also a way to specify the configuration as a string, if you have an old @code{dovecot.conf} file that you want to port over from some other system; see the end for more details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21453 +#: guix-git/doc/guix.texi:21815 msgid "Available @code{dovecot-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21454 +#: guix-git/doc/guix.texi:21816 #, no-wrap msgid "{@code{dovecot-configuration} parameter} package dovecot" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21456 guix-git/doc/guix.texi:22805 +#: guix-git/doc/guix.texi:21818 guix-git/doc/guix.texi:23167 msgid "The dovecot package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21458 +#: guix-git/doc/guix.texi:21820 #, no-wrap msgid "{@code{dovecot-configuration} parameter} comma-separated-string-list listen" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21464 +#: guix-git/doc/guix.texi:21826 msgid "A list of IPs or hosts where to listen for connections. @samp{*} listens on all IPv4 interfaces, @samp{::} listens on all IPv6 interfaces. If you want to specify non-default ports or anything more complex, customize the address and port fields of the @samp{inet-listener} of the specific services you are interested in." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21466 +#: guix-git/doc/guix.texi:21828 #, no-wrap msgid "{@code{dovecot-configuration} parameter} protocol-configuration-list protocols" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21469 +#: guix-git/doc/guix.texi:21831 msgid "List of protocols we want to serve. Available protocols include @samp{imap}, @samp{pop3}, and @samp{lmtp}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21471 +#: guix-git/doc/guix.texi:21833 msgid "Available @code{protocol-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21472 +#: guix-git/doc/guix.texi:21834 #, no-wrap msgid "{@code{protocol-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21474 +#: guix-git/doc/guix.texi:21836 msgid "The name of the protocol." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21476 +#: guix-git/doc/guix.texi:21838 #, no-wrap msgid "{@code{protocol-configuration} parameter} string auth-socket-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21480 +#: guix-git/doc/guix.texi:21842 msgid "UNIX socket path to the master authentication server to find users. This is used by imap (for shared users) and lda. It defaults to @samp{\"/var/run/dovecot/auth-userdb\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21482 +#: guix-git/doc/guix.texi:21844 #, no-wrap msgid "{@code{protocol-configuration} parameter} boolean imap-metadata?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21487 +#: guix-git/doc/guix.texi:21849 msgid "Whether to enable the @code{IMAP METADATA} extension as defined in @uref{https://tools.ietf.org/html/rfc5464,RFC@tie{}5464}, which provides a means for clients to set and retrieve per-mailbox, per-user metadata and annotations over IMAP." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21490 +#: guix-git/doc/guix.texi:21852 msgid "If this is @samp{#t}, you must also specify a dictionary @i{via} the @code{mail-attribute-dict} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21495 +#: guix-git/doc/guix.texi:21857 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list managesieve-notify-capabilities" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21500 +#: guix-git/doc/guix.texi:21862 msgid "Which NOTIFY capabilities to report to clients that first connect to the ManageSieve service, before authentication. These may differ from the capabilities offered to authenticated users. If this field is left empty, report what the Sieve interpreter supports by default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21504 +#: guix-git/doc/guix.texi:21866 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list managesieve-sieve-capability" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21509 +#: guix-git/doc/guix.texi:21871 msgid "Which SIEVE capabilities to report to clients that first connect to the ManageSieve service, before authentication. These may differ from the capabilities offered to authenticated users. If this field is left empty, report what the Sieve interpreter supports by default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21514 +#: guix-git/doc/guix.texi:21876 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list mail-plugins" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21516 +#: guix-git/doc/guix.texi:21878 msgid "Space separated list of plugins to load." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21518 +#: guix-git/doc/guix.texi:21880 #, no-wrap msgid "{@code{protocol-configuration} parameter} non-negative-integer mail-max-userip-connections" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21522 +#: guix-git/doc/guix.texi:21884 msgid "Maximum number of IMAP connections allowed for a user from each IP address. NOTE: The username is compared case-sensitively. Defaults to @samp{10}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21526 +#: guix-git/doc/guix.texi:21888 #, no-wrap msgid "{@code{dovecot-configuration} parameter} service-configuration-list services" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21530 +#: guix-git/doc/guix.texi:21892 msgid "List of services to enable. Available services include @samp{imap}, @samp{imap-login}, @samp{pop3}, @samp{pop3-login}, @samp{auth}, and @samp{lmtp}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21532 +#: guix-git/doc/guix.texi:21894 msgid "Available @code{service-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21533 +#: guix-git/doc/guix.texi:21895 #, no-wrap msgid "{@code{service-configuration} parameter} string kind" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21538 +#: guix-git/doc/guix.texi:21900 msgid "The service kind. Valid values include @code{director}, @code{imap-login}, @code{pop3-login}, @code{lmtp}, @code{imap}, @code{pop3}, @code{auth}, @code{auth-worker}, @code{dict}, @code{tcpwrap}, @code{quota-warning}, or anything else." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21540 +#: guix-git/doc/guix.texi:21902 #, no-wrap msgid "{@code{service-configuration} parameter} listener-configuration-list listeners" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21545 +#: guix-git/doc/guix.texi:21907 msgid "Listeners for the service. A listener is either a @code{unix-listener-configuration}, a @code{fifo-listener-configuration}, or an @code{inet-listener-configuration}. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21547 +#: guix-git/doc/guix.texi:21909 msgid "Available @code{unix-listener-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21548 +#: guix-git/doc/guix.texi:21910 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21551 guix-git/doc/guix.texi:21574 +#: guix-git/doc/guix.texi:21913 guix-git/doc/guix.texi:21936 msgid "Path to the file, relative to @code{base-dir} field. This is also used as the section name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21553 +#: guix-git/doc/guix.texi:21915 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string mode" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21556 guix-git/doc/guix.texi:21579 +#: guix-git/doc/guix.texi:21918 guix-git/doc/guix.texi:21941 msgid "The access mode for the socket. Defaults to @samp{\"0600\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21558 +#: guix-git/doc/guix.texi:21920 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21561 guix-git/doc/guix.texi:21584 +#: guix-git/doc/guix.texi:21923 guix-git/doc/guix.texi:21946 msgid "The user to own the socket. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21563 +#: guix-git/doc/guix.texi:21925 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21566 guix-git/doc/guix.texi:21589 +#: guix-git/doc/guix.texi:21928 guix-git/doc/guix.texi:21951 msgid "The group to own the socket. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21570 +#: guix-git/doc/guix.texi:21932 msgid "Available @code{fifo-listener-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21571 +#: guix-git/doc/guix.texi:21933 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21576 +#: guix-git/doc/guix.texi:21938 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string mode" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21581 +#: guix-git/doc/guix.texi:21943 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21586 +#: guix-git/doc/guix.texi:21948 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21593 +#: guix-git/doc/guix.texi:21955 msgid "Available @code{inet-listener-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21594 +#: guix-git/doc/guix.texi:21956 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} string protocol" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21596 +#: guix-git/doc/guix.texi:21958 msgid "The protocol to listen for." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21598 +#: guix-git/doc/guix.texi:21960 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} string address" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21601 +#: guix-git/doc/guix.texi:21963 msgid "The address on which to listen, or empty for all addresses. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21603 +#: guix-git/doc/guix.texi:21965 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} non-negative-integer port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21605 +#: guix-git/doc/guix.texi:21967 msgid "The port on which to listen." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21607 +#: guix-git/doc/guix.texi:21969 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} boolean ssl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21611 +#: guix-git/doc/guix.texi:21973 msgid "Whether to use SSL for this service; @samp{yes}, @samp{no}, or @samp{required}. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21615 +#: guix-git/doc/guix.texi:21977 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer client-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21620 +#: guix-git/doc/guix.texi:21982 msgid "Maximum number of simultaneous client connections per process. Once this number of connections is received, the next incoming connection will prompt Dovecot to spawn another process. If set to 0, @code{default-client-limit} is used instead." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21625 +#: guix-git/doc/guix.texi:21987 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer service-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21630 +#: guix-git/doc/guix.texi:21992 msgid "Number of connections to handle before starting a new process. Typically the only useful values are 0 (unlimited) or 1. 1 is more secure, but 0 is faster. . Defaults to @samp{1}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21633 +#: guix-git/doc/guix.texi:21995 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer process-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21636 +#: guix-git/doc/guix.texi:21998 msgid "Maximum number of processes that can exist for this service. If set to 0, @code{default-process-limit} is used instead." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21641 +#: guix-git/doc/guix.texi:22003 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer process-min-avail" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21644 +#: guix-git/doc/guix.texi:22006 msgid "Number of processes to always keep waiting for more connections. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21646 +#: guix-git/doc/guix.texi:22008 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer vsz-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21650 +#: guix-git/doc/guix.texi:22012 msgid "If you set @samp{service-count 0}, you probably need to grow this. Defaults to @samp{256000000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21654 +#: guix-git/doc/guix.texi:22016 #, no-wrap msgid "{@code{dovecot-configuration} parameter} dict-configuration dict" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21657 +#: guix-git/doc/guix.texi:22019 msgid "Dict configuration, as created by the @code{dict-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21659 +#: guix-git/doc/guix.texi:22021 msgid "Available @code{dict-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21660 +#: guix-git/doc/guix.texi:22022 #, no-wrap msgid "{@code{dict-configuration} parameter} free-form-fields entries" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21663 +#: guix-git/doc/guix.texi:22025 msgid "A list of key-value pairs that this dict should hold. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21667 +#: guix-git/doc/guix.texi:22029 #, no-wrap msgid "{@code{dovecot-configuration} parameter} passdb-configuration-list passdbs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21670 +#: guix-git/doc/guix.texi:22032 msgid "A list of passdb configurations, each one created by the @code{passdb-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21672 +#: guix-git/doc/guix.texi:22034 msgid "Available @code{passdb-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21673 +#: guix-git/doc/guix.texi:22035 #, no-wrap msgid "{@code{passdb-configuration} parameter} string driver" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21678 +#: guix-git/doc/guix.texi:22040 msgid "The driver that the passdb should use. Valid values include @samp{pam}, @samp{passwd}, @samp{shadow}, @samp{bsdauth}, and @samp{static}. Defaults to @samp{\"pam\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21680 +#: guix-git/doc/guix.texi:22042 #, no-wrap msgid "{@code{passdb-configuration} parameter} space-separated-string-list args" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21683 +#: guix-git/doc/guix.texi:22045 msgid "Space separated list of arguments to the passdb driver. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21687 +#: guix-git/doc/guix.texi:22049 #, no-wrap msgid "{@code{dovecot-configuration} parameter} userdb-configuration-list userdbs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21690 +#: guix-git/doc/guix.texi:22052 msgid "List of userdb configurations, each one created by the @code{userdb-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21692 +#: guix-git/doc/guix.texi:22054 msgid "Available @code{userdb-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21693 +#: guix-git/doc/guix.texi:22055 #, no-wrap msgid "{@code{userdb-configuration} parameter} string driver" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21697 +#: guix-git/doc/guix.texi:22059 msgid "The driver that the userdb should use. Valid values include @samp{passwd} and @samp{static}. Defaults to @samp{\"passwd\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21699 +#: guix-git/doc/guix.texi:22061 #, no-wrap msgid "{@code{userdb-configuration} parameter} space-separated-string-list args" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21702 +#: guix-git/doc/guix.texi:22064 msgid "Space separated list of arguments to the userdb driver. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21704 +#: guix-git/doc/guix.texi:22066 #, no-wrap msgid "{@code{userdb-configuration} parameter} free-form-args override-fields" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21707 +#: guix-git/doc/guix.texi:22069 msgid "Override fields from passwd. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21711 +#: guix-git/doc/guix.texi:22073 #, no-wrap msgid "{@code{dovecot-configuration} parameter} plugin-configuration plugin-configuration" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21714 +#: guix-git/doc/guix.texi:22076 msgid "Plug-in configuration, created by the @code{plugin-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21716 +#: guix-git/doc/guix.texi:22078 #, no-wrap msgid "{@code{dovecot-configuration} parameter} list-of-namespace-configuration namespaces" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21719 +#: guix-git/doc/guix.texi:22081 msgid "List of namespaces. Each item in the list is created by the @code{namespace-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21721 +#: guix-git/doc/guix.texi:22083 msgid "Available @code{namespace-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21722 +#: guix-git/doc/guix.texi:22084 #, no-wrap msgid "{@code{namespace-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21724 +#: guix-git/doc/guix.texi:22086 msgid "Name for this namespace." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21726 +#: guix-git/doc/guix.texi:22088 #, no-wrap msgid "{@code{namespace-configuration} parameter} string type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21729 +#: guix-git/doc/guix.texi:22091 msgid "Namespace type: @samp{private}, @samp{shared} or @samp{public}. Defaults to @samp{\"private\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21731 +#: guix-git/doc/guix.texi:22093 #, no-wrap msgid "{@code{namespace-configuration} parameter} string separator" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21737 +#: guix-git/doc/guix.texi:22099 msgid "Hierarchy separator to use. You should use the same separator for all namespaces or some clients get confused. @samp{/} is usually a good one. The default however depends on the underlying mail storage format. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21739 +#: guix-git/doc/guix.texi:22101 #, no-wrap msgid "{@code{namespace-configuration} parameter} string prefix" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21743 +#: guix-git/doc/guix.texi:22105 msgid "Prefix required to access this namespace. This needs to be different for all namespaces. For example @samp{Public/}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21745 +#: guix-git/doc/guix.texi:22107 #, no-wrap msgid "{@code{namespace-configuration} parameter} string location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21749 +#: guix-git/doc/guix.texi:22111 msgid "Physical location of the mailbox. This is in the same format as mail_location, which is also the default for it. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21751 +#: guix-git/doc/guix.texi:22113 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean inbox?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21755 +#: guix-git/doc/guix.texi:22117 msgid "There can be only one INBOX, and this setting defines which namespace has it. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21757 +#: guix-git/doc/guix.texi:22119 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean hidden?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21765 +#: guix-git/doc/guix.texi:22127 msgid "If namespace is hidden, it's not advertised to clients via NAMESPACE extension. You'll most likely also want to set @samp{list? #f}. This is mostly useful when converting from another server with different namespaces which you want to deprecate but still keep working. For example you can create hidden namespaces with prefixes @samp{~/mail/}, @samp{~%u/mail/} and @samp{mail/}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21767 +#: guix-git/doc/guix.texi:22129 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean list?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21773 +#: guix-git/doc/guix.texi:22135 msgid "Show the mailboxes under this namespace with the LIST command. This makes the namespace visible for clients that do not support the NAMESPACE extension. The special @code{children} value lists child mailboxes, but hides the namespace prefix. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21775 +#: guix-git/doc/guix.texi:22137 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean subscriptions?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21780 +#: guix-git/doc/guix.texi:22142 msgid "Namespace handles its own subscriptions. If set to @code{#f}, the parent namespace handles them. The empty prefix should always have this as @code{#t}). Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21782 +#: guix-git/doc/guix.texi:22144 #, no-wrap msgid "{@code{namespace-configuration} parameter} mailbox-configuration-list mailboxes" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21785 +#: guix-git/doc/guix.texi:22147 msgid "List of predefined mailboxes in this namespace. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21787 +#: guix-git/doc/guix.texi:22149 msgid "Available @code{mailbox-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21788 +#: guix-git/doc/guix.texi:22150 #, no-wrap msgid "{@code{mailbox-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21790 +#: guix-git/doc/guix.texi:22152 msgid "Name for this mailbox." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21792 +#: guix-git/doc/guix.texi:22154 #, no-wrap msgid "{@code{mailbox-configuration} parameter} string auto" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21796 +#: guix-git/doc/guix.texi:22158 msgid "@samp{create} will automatically create this mailbox. @samp{subscribe} will both create and subscribe to the mailbox. Defaults to @samp{\"no\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21798 +#: guix-git/doc/guix.texi:22160 #, no-wrap msgid "{@code{mailbox-configuration} parameter} space-separated-string-list special-use" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21803 +#: guix-git/doc/guix.texi:22165 msgid "List of IMAP @code{SPECIAL-USE} attributes as specified by RFC 6154. Valid values are @code{\\All}, @code{\\Archive}, @code{\\Drafts}, @code{\\Flagged}, @code{\\Junk}, @code{\\Sent}, and @code{\\Trash}. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21809 +#: guix-git/doc/guix.texi:22171 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name base-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21812 +#: guix-git/doc/guix.texi:22174 msgid "Base directory where to store runtime data. Defaults to @samp{\"/var/run/dovecot/\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21814 +#: guix-git/doc/guix.texi:22176 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string login-greeting" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21817 +#: guix-git/doc/guix.texi:22179 msgid "Greeting message for clients. Defaults to @samp{\"Dovecot ready.\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21819 +#: guix-git/doc/guix.texi:22181 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-trusted-networks" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21826 +#: guix-git/doc/guix.texi:22188 msgid "List of trusted network ranges. Connections from these IPs are allowed to override their IP addresses and ports (for logging and for authentication checks). @samp{disable-plaintext-auth} is also ignored for these networks. Typically you would specify your IMAP proxy servers here. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21828 +#: guix-git/doc/guix.texi:22190 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-access-sockets" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21831 +#: guix-git/doc/guix.texi:22193 msgid "List of login access check sockets (e.g.@: tcpwrap). Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21833 +#: guix-git/doc/guix.texi:22195 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean verbose-proctitle?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21839 +#: guix-git/doc/guix.texi:22201 msgid "Show more verbose process titles (in ps). Currently shows user name and IP address. Useful for seeing who is actually using the IMAP processes (e.g.@: shared mailboxes or if the same uid is used for multiple accounts). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21841 +#: guix-git/doc/guix.texi:22203 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean shutdown-clients?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21847 +#: guix-git/doc/guix.texi:22209 msgid "Should all processes be killed when Dovecot master process shuts down. Setting this to @code{#f} means that Dovecot can be upgraded without forcing existing client connections to close (although that could also be a problem if the upgrade is e.g.@: due to a security fix). Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21849 +#: guix-git/doc/guix.texi:22211 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer doveadm-worker-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21853 +#: guix-git/doc/guix.texi:22215 msgid "If non-zero, run mail commands via this many connections to doveadm server, instead of running them directly in the same process. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21855 +#: guix-git/doc/guix.texi:22217 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string doveadm-socket-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21858 +#: guix-git/doc/guix.texi:22220 msgid "UNIX socket or host:port used for connecting to doveadm server. Defaults to @samp{\"doveadm-server\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21860 +#: guix-git/doc/guix.texi:22222 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list import-environment" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21864 +#: guix-git/doc/guix.texi:22226 msgid "List of environment variables that are preserved on Dovecot startup and passed down to all of its child processes. You can also give key=value pairs to always set specific settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21866 +#: guix-git/doc/guix.texi:22228 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean disable-plaintext-auth?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21873 +#: guix-git/doc/guix.texi:22235 msgid "Disable LOGIN command and all other plaintext authentications unless SSL/TLS is used (LOGINDISABLED capability). Note that if the remote IP matches the local IP (i.e.@: you're connecting from the same computer), the connection is considered secure and plaintext authentication is allowed. See also ssl=required setting. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21875 +#: guix-git/doc/guix.texi:22237 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer auth-cache-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21880 +#: guix-git/doc/guix.texi:22242 msgid "Authentication cache size (e.g.@: @samp{#e10e6}). 0 means it's disabled. Note that bsdauth, PAM and vpopmail require @samp{cache-key} to be set for caching to be used. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21882 +#: guix-git/doc/guix.texi:22244 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-cache-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21890 +#: guix-git/doc/guix.texi:22252 msgid "Time to live for cached data. After TTL expires the cached record is no longer used, *except* if the main database lookup returns internal failure. We also try to handle password changes automatically: If user's previous authentication was successful, but this one wasn't, the cache isn't used. For now this works only with plaintext authentication. Defaults to @samp{\"1 hour\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21892 +#: guix-git/doc/guix.texi:22254 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-cache-negative-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21896 +#: guix-git/doc/guix.texi:22258 msgid "TTL for negative hits (user not found, password mismatch). 0 disables caching them completely. Defaults to @samp{\"1 hour\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21898 +#: guix-git/doc/guix.texi:22260 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list auth-realms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21904 +#: guix-git/doc/guix.texi:22266 msgid "List of realms for SASL authentication mechanisms that need them. You can leave it empty if you don't want to support multiple realms. Many clients simply use the first one listed here, so keep the default realm first. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21906 +#: guix-git/doc/guix.texi:22268 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-default-realm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21911 +#: guix-git/doc/guix.texi:22273 msgid "Default realm/domain to use if none was specified. This is used for both SASL realms and appending @@domain to username in plaintext logins. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21913 +#: guix-git/doc/guix.texi:22275 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-chars" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21920 +#: guix-git/doc/guix.texi:22282 msgid "List of allowed characters in username. If the user-given username contains a character not listed in here, the login automatically fails. This is just an extra check to make sure user can't exploit any potential quote escaping vulnerabilities with SQL/LDAP databases. If you want to allow all characters, set this value to empty. Defaults to @samp{\"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@@\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21922 +#: guix-git/doc/guix.texi:22284 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-translation" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21928 +#: guix-git/doc/guix.texi:22290 msgid "Username character translations before it's looked up from databases. The value contains series of from -> to characters. For example @samp{#@@/@@} means that @samp{#} and @samp{/} characters are translated to @samp{@@}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21930 +#: guix-git/doc/guix.texi:22292 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21937 +#: guix-git/doc/guix.texi:22299 msgid "Username formatting before it's looked up from databases. You can use the standard variables here, e.g.@: %Lu would lowercase the username, %n would drop away the domain if it was given, or @samp{%n-AT-%d} would change the @samp{@@} into @samp{-AT-}. This translation is done after @samp{auth-username-translation} changes. Defaults to @samp{\"%Lu\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21939 +#: guix-git/doc/guix.texi:22301 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-master-user-separator" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21947 +#: guix-git/doc/guix.texi:22309 msgid "If you want to allow master users to log in by specifying the master username within the normal username string (i.e.@: not using SASL mechanism's support for it), you can specify the separator character here. The format is then . UW-IMAP uses @samp{*} as the separator, so that could be a good choice. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21949 +#: guix-git/doc/guix.texi:22311 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-anonymous-username" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21953 +#: guix-git/doc/guix.texi:22315 msgid "Username to use for users logging in with ANONYMOUS SASL mechanism. Defaults to @samp{\"anonymous\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21955 +#: guix-git/doc/guix.texi:22317 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer auth-worker-max-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21960 +#: guix-git/doc/guix.texi:22322 msgid "Maximum number of dovecot-auth worker processes. They're used to execute blocking passdb and userdb queries (e.g.@: MySQL and PAM). They're automatically created and destroyed as needed. Defaults to @samp{30}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21962 +#: guix-git/doc/guix.texi:22324 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-gssapi-hostname" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21967 +#: guix-git/doc/guix.texi:22329 msgid "Host name to use in GSSAPI principal names. The default is to use the name returned by gethostname(). Use @samp{$ALL} (with quotes) to allow all keytab entries. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21969 +#: guix-git/doc/guix.texi:22331 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-krb5-keytab" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21975 +#: guix-git/doc/guix.texi:22337 msgid "Kerberos keytab to use for the GSSAPI mechanism. Will use the system default (usually @file{/etc/krb5.keytab}) if not specified. You may need to change the auth service to run as root to be able to read this file. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21977 +#: guix-git/doc/guix.texi:22339 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-use-winbind?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21982 +#: guix-git/doc/guix.texi:22344 msgid "Do NTLM and GSS-SPNEGO authentication using Samba's winbind daemon and @samp{ntlm-auth} helper. . Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21984 +#: guix-git/doc/guix.texi:22346 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name auth-winbind-helper-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21987 +#: guix-git/doc/guix.texi:22349 msgid "Path for Samba's @samp{ntlm-auth} helper binary. Defaults to @samp{\"/usr/bin/ntlm_auth\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21989 +#: guix-git/doc/guix.texi:22351 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-failure-delay" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21992 +#: guix-git/doc/guix.texi:22354 msgid "Time to delay before replying to failed authentications. Defaults to @samp{\"2 secs\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21994 +#: guix-git/doc/guix.texi:22356 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-ssl-require-client-cert?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21998 +#: guix-git/doc/guix.texi:22360 msgid "Require a valid SSL client certificate or the authentication fails. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22000 +#: guix-git/doc/guix.texi:22362 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-ssl-username-from-cert?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22005 +#: guix-git/doc/guix.texi:22367 msgid "Take the username from client's SSL certificate, using @code{X509_NAME_get_text_by_NID()} which returns the subject's DN's CommonName. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22007 +#: guix-git/doc/guix.texi:22369 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list auth-mechanisms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22013 +#: guix-git/doc/guix.texi:22375 msgid "List of wanted authentication mechanisms. Supported mechanisms are: @samp{plain}, @samp{login}, @samp{digest-md5}, @samp{cram-md5}, @samp{ntlm}, @samp{rpa}, @samp{apop}, @samp{anonymous}, @samp{gssapi}, @samp{otp}, @samp{skey}, and @samp{gss-spnego}. NOTE: See also @samp{disable-plaintext-auth} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22015 +#: guix-git/doc/guix.texi:22377 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list director-servers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22020 +#: guix-git/doc/guix.texi:22382 msgid "List of IPs or hostnames to all director servers, including ourself. Ports can be specified as ip:port. The default port is the same as what director service's @samp{inet-listener} is using. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22022 +#: guix-git/doc/guix.texi:22384 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list director-mail-servers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22026 +#: guix-git/doc/guix.texi:22388 msgid "List of IPs or hostnames to all backend mail servers. Ranges are allowed too, like 10.0.0.10-10.0.0.30. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22028 +#: guix-git/doc/guix.texi:22390 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string director-user-expire" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22032 +#: guix-git/doc/guix.texi:22394 msgid "How long to redirect users to a specific server after it no longer has any connections. Defaults to @samp{\"15 min\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22034 +#: guix-git/doc/guix.texi:22396 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string director-username-hash" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22039 +#: guix-git/doc/guix.texi:22401 msgid "How the username is translated before being hashed. Useful values include %Ln if user can log in with or without @@domain, %Ld if mailboxes are shared within domain. Defaults to @samp{\"%Lu\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22041 +#: guix-git/doc/guix.texi:22403 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string log-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22045 +#: guix-git/doc/guix.texi:22407 msgid "Log file to use for error messages. @samp{syslog} logs to syslog, @samp{/dev/stderr} logs to stderr. Defaults to @samp{\"syslog\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22047 +#: guix-git/doc/guix.texi:22409 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string info-log-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22051 +#: guix-git/doc/guix.texi:22413 msgid "Log file to use for informational messages. Defaults to @samp{log-path}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22053 +#: guix-git/doc/guix.texi:22415 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string debug-log-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22057 +#: guix-git/doc/guix.texi:22419 msgid "Log file to use for debug messages. Defaults to @samp{info-log-path}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22059 +#: guix-git/doc/guix.texi:22421 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string syslog-facility" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22064 +#: guix-git/doc/guix.texi:22426 msgid "Syslog facility to use if you're logging to syslog. Usually if you don't want to use @samp{mail}, you'll use local0..local7. Also other standard facilities are supported. Defaults to @samp{\"mail\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22066 +#: guix-git/doc/guix.texi:22428 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-verbose?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22070 +#: guix-git/doc/guix.texi:22432 msgid "Log unsuccessful authentication attempts and the reasons why they failed. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22072 +#: guix-git/doc/guix.texi:22434 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-verbose-passwords" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22079 +#: guix-git/doc/guix.texi:22441 msgid "In case of password mismatches, log the attempted password. Valid values are no, plain and sha1. sha1 can be useful for detecting brute force password attempts vs. user simply trying the same password over and over again. You can also truncate the value to n chars by appending \":n\" (e.g.@: sha1:6). Defaults to @samp{\"no\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22081 +#: guix-git/doc/guix.texi:22443 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-debug?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22085 +#: guix-git/doc/guix.texi:22447 msgid "Even more verbose logging for debugging purposes. Shows for example SQL queries. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22087 +#: guix-git/doc/guix.texi:22449 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-debug-passwords?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22092 +#: guix-git/doc/guix.texi:22454 msgid "In case of password mismatches, log the passwords and used scheme so the problem can be debugged. Enabling this also enables @samp{auth-debug}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22094 +#: guix-git/doc/guix.texi:22456 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-debug?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22098 +#: guix-git/doc/guix.texi:22460 msgid "Enable mail process debugging. This can help you figure out why Dovecot isn't finding your mails. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22100 +#: guix-git/doc/guix.texi:22462 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean verbose-ssl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22103 +#: guix-git/doc/guix.texi:22465 msgid "Show protocol level SSL errors. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22105 +#: guix-git/doc/guix.texi:22467 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string log-timestamp" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22109 +#: guix-git/doc/guix.texi:22471 msgid "Prefix for each line written to log file. % codes are in strftime(3) format. Defaults to @samp{\"\\\"%b %d %H:%M:%S \\\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22111 +#: guix-git/doc/guix.texi:22473 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-log-format-elements" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22115 +#: guix-git/doc/guix.texi:22477 msgid "List of elements we want to log. The elements which have a non-empty variable value are joined together to form a comma-separated string." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22117 +#: guix-git/doc/guix.texi:22479 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string login-log-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22121 +#: guix-git/doc/guix.texi:22483 msgid "Login log format. %s contains @samp{login-log-format-elements} string, %$ contains the data we want to log. Defaults to @samp{\"%$: %s\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22123 +#: guix-git/doc/guix.texi:22485 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-log-prefix" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22127 +#: guix-git/doc/guix.texi:22489 msgid "Log prefix for mail processes. See doc/wiki/Variables.txt for list of possible variables you can use. Defaults to @samp{\"\\\"%s(%u)<%@{pid@}><%@{session@}>: \\\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22129 +#: guix-git/doc/guix.texi:22491 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string deliver-log-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22131 +#: guix-git/doc/guix.texi:22493 msgid "Format to use for logging mail deliveries. You can use variables:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22132 +#: guix-git/doc/guix.texi:22494 #, no-wrap msgid "%$" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22134 +#: guix-git/doc/guix.texi:22496 msgid "Delivery status message (e.g.@: @samp{saved to INBOX})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22134 +#: guix-git/doc/guix.texi:22496 #, no-wrap msgid "%m" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22136 +#: guix-git/doc/guix.texi:22498 msgid "Message-ID" msgstr "Mensagem-ID" #. type: item -#: guix-git/doc/guix.texi:22136 guix-git/doc/guix.texi:22679 +#: guix-git/doc/guix.texi:22498 guix-git/doc/guix.texi:23041 #, no-wrap msgid "%s" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22138 +#: guix-git/doc/guix.texi:22500 msgid "Subject" msgstr "Assunto" #. type: item -#: guix-git/doc/guix.texi:22138 +#: guix-git/doc/guix.texi:22500 #, no-wrap msgid "%f" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22140 +#: guix-git/doc/guix.texi:22502 msgid "From address" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22142 +#: guix-git/doc/guix.texi:22504 msgid "Physical size" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22142 +#: guix-git/doc/guix.texi:22504 #, no-wrap msgid "%w" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22144 +#: guix-git/doc/guix.texi:22506 msgid "Virtual size." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22146 +#: guix-git/doc/guix.texi:22508 msgid "Defaults to @samp{\"msgid=%m: %$\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22148 +#: guix-git/doc/guix.texi:22510 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22153 +#: guix-git/doc/guix.texi:22515 msgid "Location for users' mailboxes. The default is empty, which means that Dovecot tries to find the mailboxes automatically. This won't work if the user doesn't yet have any mail, so you should explicitly tell Dovecot the full location." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22159 +#: guix-git/doc/guix.texi:22521 msgid "If you're using mbox, giving a path to the INBOX file (e.g.@: @file{/var/mail/%u}) isn't enough. You'll also need to tell Dovecot where the other mailboxes are kept. This is called the @emph{root mail directory}, and it must be the first path given in the @samp{mail-location} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22161 +#: guix-git/doc/guix.texi:22523 msgid "There are a few special variables you can use, e.g.:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22165 +#: guix-git/doc/guix.texi:22527 msgid "username" msgstr "nome de usuário" #. type: item -#: guix-git/doc/guix.texi:22165 guix-git/doc/guix.texi:22675 +#: guix-git/doc/guix.texi:22527 guix-git/doc/guix.texi:23037 #, no-wrap msgid "%n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22167 +#: guix-git/doc/guix.texi:22529 msgid "user part in user@@domain, same as %u if there's no domain" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22167 +#: guix-git/doc/guix.texi:22529 #, no-wrap msgid "%d" msgstr "%d" #. type: table -#: guix-git/doc/guix.texi:22169 +#: guix-git/doc/guix.texi:22531 msgid "domain part in user@@domain, empty if there's no domain" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22169 +#: guix-git/doc/guix.texi:22531 #, no-wrap msgid "%h" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22171 +#: guix-git/doc/guix.texi:22533 msgid "home director" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22174 +#: guix-git/doc/guix.texi:22536 msgid "See doc/wiki/Variables.txt for full list. Some examples:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22175 +#: guix-git/doc/guix.texi:22537 #, no-wrap msgid "maildir:~/Maildir" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22176 +#: guix-git/doc/guix.texi:22538 #, no-wrap msgid "mbox:~/mail:INBOX=/var/mail/%u" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22177 +#: guix-git/doc/guix.texi:22539 #, no-wrap msgid "mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22182 +#: guix-git/doc/guix.texi:22544 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22187 +#: guix-git/doc/guix.texi:22549 msgid "System user and group used to access mails. If you use multiple, userdb can override these by returning uid or gid fields. You can use either numbers or names. . Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22189 +#: guix-git/doc/guix.texi:22551 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22194 +#: guix-git/doc/guix.texi:22556 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-privileged-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22200 +#: guix-git/doc/guix.texi:22562 msgid "Group to enable temporarily for privileged operations. Currently this is used only with INBOX when either its initial creation or dotlocking fails. Typically this is set to @samp{\"mail\"} to give access to @file{/var/mail}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22202 +#: guix-git/doc/guix.texi:22564 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-access-groups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22210 +#: guix-git/doc/guix.texi:22572 msgid "Grant access to these supplementary groups for mail processes. Typically these are used to set up access to shared mailboxes. Note that it may be dangerous to set these if users can create symlinks (e.g.@: if @samp{mail} group is set here, @code{ln -s /var/mail ~/mail/var} could allow a user to delete others' mailboxes, or @code{ln -s /secret/shared/box ~/mail/mybox} would allow reading it). Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22212 +#: guix-git/doc/guix.texi:22574 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attribute-dict" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22215 +#: guix-git/doc/guix.texi:22577 msgid "The location of a dictionary used to store @code{IMAP METADATA} as defined by @uref{https://tools.ietf.org/html/rfc5464, RFC@tie{}5464}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22218 +#: guix-git/doc/guix.texi:22580 msgid "The IMAP METADATA commands are available only if the ``imap'' protocol configuration's @code{imap-metadata?} field is @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22223 +#: guix-git/doc/guix.texi:22585 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-full-filesystem-access?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22229 +#: guix-git/doc/guix.texi:22591 msgid "Allow full file system access to clients. There's no access checks other than what the operating system does for the active UID/GID@. It works with both maildir and mboxes, allowing you to prefix mailboxes names with e.g.@: @file{/path/} or @file{~user/}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22231 +#: guix-git/doc/guix.texi:22593 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mmap-disable?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22235 +#: guix-git/doc/guix.texi:22597 msgid "Don't use @code{mmap()} at all. This is required if you store indexes to shared file systems (NFS or clustered file system). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22237 +#: guix-git/doc/guix.texi:22599 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean dotlock-use-excl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22242 +#: guix-git/doc/guix.texi:22604 msgid "Rely on @samp{O_EXCL} to work when creating dotlock files. NFS supports @samp{O_EXCL} since version 3, so this should be safe to use nowadays by default. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22244 +#: guix-git/doc/guix.texi:22606 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-fsync" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22246 +#: guix-git/doc/guix.texi:22608 msgid "When to use fsync() or fdatasync() calls:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22247 +#: guix-git/doc/guix.texi:22609 #, no-wrap msgid "optimized" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22249 +#: guix-git/doc/guix.texi:22611 msgid "Whenever necessary to avoid losing important data" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22251 +#: guix-git/doc/guix.texi:22613 msgid "Useful with e.g.@: NFS when @code{write()}s are delayed" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22253 +#: guix-git/doc/guix.texi:22615 msgid "Never use it (best performance, but crashes can lose data)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22255 +#: guix-git/doc/guix.texi:22617 msgid "Defaults to @samp{\"optimized\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22257 +#: guix-git/doc/guix.texi:22619 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-nfs-storage?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22262 +#: guix-git/doc/guix.texi:22624 msgid "Mail storage exists in NFS@. Set this to yes to make Dovecot flush NFS caches whenever needed. If you're using only a single mail server this isn't needed. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22264 +#: guix-git/doc/guix.texi:22626 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-nfs-index?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22268 +#: guix-git/doc/guix.texi:22630 msgid "Mail index files also exist in NFS@. Setting this to yes requires @samp{mmap-disable? #t} and @samp{fsync-disable? #f}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22270 +#: guix-git/doc/guix.texi:22632 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string lock-method" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22276 +#: guix-git/doc/guix.texi:22638 msgid "Locking method for index files. Alternatives are fcntl, flock and dotlock. Dotlocking uses some tricks which may create more disk I/O than other locking methods. NFS users: flock doesn't work, remember to change @samp{mmap-disable}. Defaults to @samp{\"fcntl\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22278 +#: guix-git/doc/guix.texi:22640 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name mail-temp-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22282 +#: guix-git/doc/guix.texi:22644 msgid "Directory in which LDA/LMTP temporarily stores incoming mails >128 kB. Defaults to @samp{\"/tmp\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22284 +#: guix-git/doc/guix.texi:22646 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer first-valid-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22290 +#: guix-git/doc/guix.texi:22652 msgid "Valid UID range for users. This is mostly to make sure that users can't log in as daemons or other system users. Note that denying root logins is hardcoded to dovecot binary and can't be done even if @samp{first-valid-uid} is set to 0. Defaults to @samp{500}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22292 +#: guix-git/doc/guix.texi:22654 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer last-valid-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22297 +#: guix-git/doc/guix.texi:22659 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer first-valid-gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22302 +#: guix-git/doc/guix.texi:22664 msgid "Valid GID range for users. Users having non-valid GID as primary group ID aren't allowed to log in. If user belongs to supplementary groups with non-valid GIDs, those groups are not set. Defaults to @samp{1}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22304 +#: guix-git/doc/guix.texi:22666 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer last-valid-gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22309 +#: guix-git/doc/guix.texi:22671 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-max-keyword-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22313 +#: guix-git/doc/guix.texi:22675 msgid "Maximum allowed length for mail keyword name. It's only forced when trying to create new keywords. Defaults to @samp{50}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22315 +#: guix-git/doc/guix.texi:22677 #, no-wrap msgid "{@code{dovecot-configuration} parameter} colon-separated-file-name-list valid-chroot-dirs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22325 +#: guix-git/doc/guix.texi:22687 msgid "List of directories under which chrooting is allowed for mail processes (i.e.@: @file{/var/mail} will allow chrooting to @file{/var/mail/foo/bar} too). This setting doesn't affect @samp{login-chroot} @samp{mail-chroot} or auth chroot settings. If this setting is empty, @samp{/./} in home dirs are ignored. WARNING: Never add directories here which local users can modify, that may lead to root exploit. Usually this should be done only if you don't allow shell access for users. . Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22327 +#: guix-git/doc/guix.texi:22689 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-chroot" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22336 +#: guix-git/doc/guix.texi:22698 msgid "Default chroot directory for mail processes. This can be overridden for specific users in user database by giving @samp{/./} in user's home directory (e.g.@: @samp{/home/./user} chroots into @file{/home}). Note that usually there is no real need to do chrooting, Dovecot doesn't allow users to access files outside their mail directory anyway. If your home directories are prefixed with the chroot directory, append @samp{/.} to @samp{mail-chroot}. . Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22338 +#: guix-git/doc/guix.texi:22700 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name auth-socket-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22342 +#: guix-git/doc/guix.texi:22704 msgid "UNIX socket path to master authentication server to find users. This is used by imap (for shared users) and lda. Defaults to @samp{\"/var/run/dovecot/auth-userdb\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22344 +#: guix-git/doc/guix.texi:22706 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name mail-plugin-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22347 +#: guix-git/doc/guix.texi:22709 msgid "Directory where to look up mail plugins. Defaults to @samp{\"/usr/lib/dovecot\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22349 +#: guix-git/doc/guix.texi:22711 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mail-plugins" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22353 +#: guix-git/doc/guix.texi:22715 msgid "List of plugins to load for all services. Plugins specific to IMAP, LDA, etc.@: are added to this list in their own .conf files. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22355 +#: guix-git/doc/guix.texi:22717 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-cache-min-mail-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22360 +#: guix-git/doc/guix.texi:22722 msgid "The minimum number of mails in a mailbox before updates are done to cache file. This allows optimizing Dovecot's behavior to do less disk writes at the cost of more disk reads. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22362 +#: guix-git/doc/guix.texi:22724 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mailbox-idle-check-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22369 +#: guix-git/doc/guix.texi:22731 msgid "When IDLE command is running, mailbox is checked once in a while to see if there are any new mails or other changes. This setting defines the minimum time to wait between those checks. Dovecot can also use dnotify, inotify and kqueue to find out immediately when changes occur. Defaults to @samp{\"30 secs\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22371 +#: guix-git/doc/guix.texi:22733 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-save-crlf?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22378 +#: guix-git/doc/guix.texi:22740 msgid "Save mails with CR+LF instead of plain LF@. This makes sending those mails take less CPU, especially with sendfile() syscall with Linux and FreeBSD@. But it also creates a bit more disk I/O which may just make it slower. Also note that if other software reads the mboxes/maildirs, they may handle the extra CRs wrong and cause problems. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22380 +#: guix-git/doc/guix.texi:22742 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-stat-dirs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22388 +#: guix-git/doc/guix.texi:22750 msgid "By default LIST command returns all entries in maildir beginning with a dot. Enabling this option makes Dovecot return only entries which are directories. This is done by stat()ing each entry, so it causes more disk I/O. (For systems setting struct @samp{dirent->d_type} this check is free and it's done always regardless of this setting). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22390 +#: guix-git/doc/guix.texi:22752 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-copy-with-hardlinks?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22395 +#: guix-git/doc/guix.texi:22757 msgid "When copying a message, do it with hard links whenever possible. This makes the performance much better, and it's unlikely to have any side effects. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22397 +#: guix-git/doc/guix.texi:22759 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-very-dirty-syncs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22402 +#: guix-git/doc/guix.texi:22764 msgid "Assume Dovecot is the only MUA accessing Maildir: Scan cur/ directory only when its mtime changes unexpectedly or when we can't find the mail otherwise. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22404 +#: guix-git/doc/guix.texi:22766 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mbox-read-locks" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22407 +#: guix-git/doc/guix.texi:22769 msgid "Which locking methods to use for locking mbox. There are four available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22409 +#: guix-git/doc/guix.texi:22771 #, no-wrap msgid "dotlock" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22413 +#: guix-git/doc/guix.texi:22775 msgid "Create .lock file. This is the oldest and most NFS-safe solution. If you want to use /var/mail/ like directory, the users will need write access to that directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22413 +#: guix-git/doc/guix.texi:22775 #, no-wrap msgid "dotlock-try" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22416 +#: guix-git/doc/guix.texi:22778 msgid "Same as dotlock, but if it fails because of permissions or because there isn't enough disk space, just skip it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22416 +#: guix-git/doc/guix.texi:22778 #, no-wrap msgid "fcntl" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22418 +#: guix-git/doc/guix.texi:22780 msgid "Use this if possible. Works with NFS too if lockd is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22418 +#: guix-git/doc/guix.texi:22780 #, no-wrap msgid "flock" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22420 guix-git/doc/guix.texi:22422 +#: guix-git/doc/guix.texi:22782 guix-git/doc/guix.texi:22784 msgid "May not exist in all systems. Doesn't work with NFS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22420 +#: guix-git/doc/guix.texi:22782 #, no-wrap msgid "lockf" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22428 +#: guix-git/doc/guix.texi:22790 msgid "You can use multiple locking methods; if you do the order they're declared in is important to avoid deadlocks if other MTAs/MUAs are using multiple locking methods as well. Some operating systems don't allow using some of them simultaneously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22430 +#: guix-git/doc/guix.texi:22792 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mbox-write-locks" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22434 +#: guix-git/doc/guix.texi:22796 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mbox-lock-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22437 +#: guix-git/doc/guix.texi:22799 msgid "Maximum time to wait for lock (all of them) before aborting. Defaults to @samp{\"5 mins\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22439 +#: guix-git/doc/guix.texi:22801 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mbox-dotlock-change-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22443 +#: guix-git/doc/guix.texi:22805 msgid "If dotlock exists but the mailbox isn't modified in any way, override the lock file after this much time. Defaults to @samp{\"2 mins\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22445 +#: guix-git/doc/guix.texi:22807 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-dirty-syncs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22456 +#: guix-git/doc/guix.texi:22818 msgid "When mbox changes unexpectedly we have to fully read it to find out what changed. If the mbox is large this can take a long time. Since the change is usually just a newly appended mail, it'd be faster to simply read the new mails. If this setting is enabled, Dovecot does this but still safely fallbacks to re-reading the whole mbox file whenever something in mbox isn't how it's expected to be. The only real downside to this setting is that if some other MUA changes message flags, Dovecot doesn't notice it immediately. Note that a full sync is done with SELECT, EXAMINE, EXPUNGE and CHECK commands. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22458 +#: guix-git/doc/guix.texi:22820 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-very-dirty-syncs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22463 +#: guix-git/doc/guix.texi:22825 msgid "Like @samp{mbox-dirty-syncs}, but don't do full syncs even with SELECT, EXAMINE, EXPUNGE or CHECK commands. If this is set, @samp{mbox-dirty-syncs} is ignored. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22465 +#: guix-git/doc/guix.texi:22827 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-lazy-writes?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22471 +#: guix-git/doc/guix.texi:22833 msgid "Delay writing mbox headers until doing a full write sync (EXPUNGE and CHECK commands and when closing the mailbox). This is especially useful for POP3 where clients often delete all mails. The downside is that our changes aren't immediately visible to other MUAs. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22473 +#: guix-git/doc/guix.texi:22835 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mbox-min-index-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22478 +#: guix-git/doc/guix.texi:22840 msgid "If mbox size is smaller than this (e.g.@: 100k), don't write index files. If an index file already exists it's still read, just not updated. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22480 +#: guix-git/doc/guix.texi:22842 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mdbox-rotate-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22483 +#: guix-git/doc/guix.texi:22845 msgid "Maximum dbox file size until it's rotated. Defaults to @samp{10000000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22485 +#: guix-git/doc/guix.texi:22847 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mdbox-rotate-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22490 +#: guix-git/doc/guix.texi:22852 msgid "Maximum dbox file age until it's rotated. Typically in days. Day begins from midnight, so 1d = today, 2d = yesterday, etc. 0 = check disabled. Defaults to @samp{\"1d\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22492 +#: guix-git/doc/guix.texi:22854 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mdbox-preallocate-space?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22497 +#: guix-git/doc/guix.texi:22859 msgid "When creating new mdbox files, immediately preallocate their size to @samp{mdbox-rotate-size}. This setting currently works only in Linux with some file systems (ext4, xfs). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22499 +#: guix-git/doc/guix.texi:22861 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22503 +#: guix-git/doc/guix.texi:22865 msgid "sdbox and mdbox support saving mail attachments to external files, which also allows single instance storage for them. Other backends don't support this for now." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22505 +#: guix-git/doc/guix.texi:22867 msgid "WARNING: This feature hasn't been tested much yet. Use at your own risk." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22508 +#: guix-git/doc/guix.texi:22870 msgid "Directory root where to store mail attachments. Disabled, if empty. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22510 +#: guix-git/doc/guix.texi:22872 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-attachment-min-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22515 +#: guix-git/doc/guix.texi:22877 msgid "Attachments smaller than this aren't saved externally. It's also possible to write a plugin to disable saving specific attachments externally. Defaults to @samp{128000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22517 +#: guix-git/doc/guix.texi:22879 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-fs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22519 +#: guix-git/doc/guix.texi:22881 msgid "File system backend to use for saving attachments:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22520 +#: guix-git/doc/guix.texi:22882 #, no-wrap msgid "posix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22522 +#: guix-git/doc/guix.texi:22884 msgid "No SiS done by Dovecot (but this might help FS's own deduplication)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22522 +#: guix-git/doc/guix.texi:22884 #, no-wrap msgid "sis posix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22524 +#: guix-git/doc/guix.texi:22886 msgid "SiS with immediate byte-by-byte comparison during saving" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22524 +#: guix-git/doc/guix.texi:22886 #, no-wrap msgid "sis-queue posix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22526 +#: guix-git/doc/guix.texi:22888 msgid "SiS with delayed comparison and deduplication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22528 +#: guix-git/doc/guix.texi:22890 msgid "Defaults to @samp{\"sis posix\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22530 +#: guix-git/doc/guix.texi:22892 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-hash" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22536 +#: guix-git/doc/guix.texi:22898 msgid "Hash format to use in attachment filenames. You can add any text and variables: @code{%@{md4@}}, @code{%@{md5@}}, @code{%@{sha1@}}, @code{%@{sha256@}}, @code{%@{sha512@}}, @code{%@{size@}}. Variables can be truncated, e.g.@: @code{%@{sha256:80@}} returns only first 80 bits. Defaults to @samp{\"%@{sha1@}\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22538 +#: guix-git/doc/guix.texi:22900 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-process-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22543 +#: guix-git/doc/guix.texi:22905 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-client-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22546 guix-git/doc/guix.texi:30171 +#: guix-git/doc/guix.texi:22908 guix-git/doc/guix.texi:30536 msgid "Defaults to @samp{1000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22548 +#: guix-git/doc/guix.texi:22910 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-vsz-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22553 +#: guix-git/doc/guix.texi:22915 msgid "Default VSZ (virtual memory size) limit for service processes. This is mainly intended to catch and kill processes that leak memory before they eat up everything. Defaults to @samp{256000000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22555 +#: guix-git/doc/guix.texi:22917 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string default-login-user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22560 +#: guix-git/doc/guix.texi:22922 msgid "Login user is internally used by login processes. This is the most untrusted user in Dovecot system. It shouldn't have access to anything at all. Defaults to @samp{\"dovenull\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22562 +#: guix-git/doc/guix.texi:22924 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string default-internal-user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22567 +#: guix-git/doc/guix.texi:22929 msgid "Internal user is used by unprivileged processes. It should be separate from login user, so that login processes can't disturb other processes. Defaults to @samp{\"dovecot\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22569 +#: guix-git/doc/guix.texi:22931 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string ssl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22572 +#: guix-git/doc/guix.texi:22934 msgid "SSL/TLS support: yes, no, required. . Defaults to @samp{\"required\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22574 +#: guix-git/doc/guix.texi:22936 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string ssl-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22577 +#: guix-git/doc/guix.texi:22939 msgid "PEM encoded X.509 SSL/TLS certificate (public key). Defaults to @samp{\" was automatically rejected:%n%r\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22687 +#: guix-git/doc/guix.texi:23049 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string recipient-delimiter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22691 +#: guix-git/doc/guix.texi:23053 msgid "Delimiter character between local-part and detail in email address. Defaults to @samp{\"+\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22693 +#: guix-git/doc/guix.texi:23055 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string lda-original-recipient-header" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22699 +#: guix-git/doc/guix.texi:23061 msgid "Header where the original recipient address (SMTP's RCPT TO: address) is taken from if not available elsewhere. With dovecot-lda -a parameter overrides this. A commonly used header for this is X-Original-To. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22701 +#: guix-git/doc/guix.texi:23063 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean lda-mailbox-autocreate?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22705 +#: guix-git/doc/guix.texi:23067 msgid "Should saving a mail to a nonexistent mailbox automatically create it?. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22707 +#: guix-git/doc/guix.texi:23069 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean lda-mailbox-autosubscribe?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22711 +#: guix-git/doc/guix.texi:23073 msgid "Should automatically created mailboxes be also automatically subscribed?. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22713 +#: guix-git/doc/guix.texi:23075 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer imap-max-line-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22719 +#: guix-git/doc/guix.texi:23081 msgid "Maximum IMAP command line length. Some clients generate very long command lines with huge mailboxes, so you may need to raise this if you get \"Too long argument\" or \"IMAP command line too large\" errors often. Defaults to @samp{64000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22721 +#: guix-git/doc/guix.texi:23083 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-logout-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22723 +#: guix-git/doc/guix.texi:23085 msgid "IMAP logout format string:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22724 +#: guix-git/doc/guix.texi:23086 #, no-wrap msgid "%i" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22726 +#: guix-git/doc/guix.texi:23088 msgid "total number of bytes read from client" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22726 +#: guix-git/doc/guix.texi:23088 #, no-wrap msgid "%o" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22728 +#: guix-git/doc/guix.texi:23090 msgid "total number of bytes sent to client." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22731 +#: guix-git/doc/guix.texi:23093 msgid "See @file{doc/wiki/Variables.txt} for a list of all the variables you can use. Defaults to @samp{\"in=%i out=%o deleted=%@{deleted@} expunged=%@{expunged@} trashed=%@{trashed@} hdr_count=%@{fetch_hdr_count@} hdr_bytes=%@{fetch_hdr_bytes@} body_count=%@{fetch_body_count@} body_bytes=%@{fetch_body_bytes@}\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22733 +#: guix-git/doc/guix.texi:23095 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-capability" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22737 +#: guix-git/doc/guix.texi:23099 msgid "Override the IMAP CAPABILITY response. If the value begins with '+', add the given capabilities on top of the defaults (e.g.@: +XFOO XBAR). Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22739 +#: guix-git/doc/guix.texi:23101 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-idle-notify-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22743 +#: guix-git/doc/guix.texi:23105 msgid "How long to wait between \"OK Still here\" notifications when client is IDLEing. Defaults to @samp{\"2 mins\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22745 +#: guix-git/doc/guix.texi:23107 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-id-send" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22751 +#: guix-git/doc/guix.texi:23113 msgid "ID field names and values to send to clients. Using * as the value makes Dovecot use the default value. The following fields have default values currently: name, version, os, os-version, support-url, support-email. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22753 +#: guix-git/doc/guix.texi:23115 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-id-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22756 +#: guix-git/doc/guix.texi:23118 msgid "ID fields sent by client to log. * means everything. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22758 +#: guix-git/doc/guix.texi:23120 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list imap-client-workarounds" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22760 +#: guix-git/doc/guix.texi:23122 msgid "Workarounds for various client bugs:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22762 +#: guix-git/doc/guix.texi:23124 #, no-wrap msgid "delay-newmail" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22769 +#: guix-git/doc/guix.texi:23131 msgid "Send EXISTS/RECENT new mail notifications only when replying to NOOP and CHECK commands. Some clients ignore them otherwise, for example OSX Mail (' before setting it here, to get a feel for which cipher suites you will get. After setting this option, it is recommend that you inspect your Murmur log to ensure that Murmur is using the cipher suites that you expected it to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24159 +#: guix-git/doc/guix.texi:24521 msgid "Note: Changing this option may impact the backwards compatibility of your Murmur server, and can remove the ability for older Mumble clients to be able to connect to it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:24160 +#: guix-git/doc/guix.texi:24522 #, no-wrap msgid "@code{public-registration} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:24162 +#: guix-git/doc/guix.texi:24524 msgid "Must be a @code{} record or @code{#f}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24167 +#: guix-git/doc/guix.texi:24529 msgid "You can optionally register your server in the public server list that the @code{mumble} client shows on startup. You cannot register your server if you have set a @code{server-password}, or set @code{allow-ping} to @code{#f}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24169 +#: guix-git/doc/guix.texi:24531 msgid "It might take a few hours until it shows up in the public list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:24170 guix-git/doc/guix.texi:26407 +#: guix-git/doc/guix.texi:24532 guix-git/doc/guix.texi:26744 #, no-wrap msgid "@code{file} (default: @code{#f})" msgstr "@code{file} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:24172 +#: guix-git/doc/guix.texi:24534 msgid "Optional alternative override for this configuration." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24175 +#: guix-git/doc/guix.texi:24537 #, no-wrap msgid "{Data Type} murmur-public-registration-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24177 +#: guix-git/doc/guix.texi:24539 msgid "Configuration for public registration of a murmur service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24181 +#: guix-git/doc/guix.texi:24543 msgid "This is a display name for your server. Not to be confused with the hostname." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:24182 guix-git/doc/guix.texi:33135 -#: guix-git/doc/guix.texi:34304 +#: guix-git/doc/guix.texi:24544 guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:34743 #, no-wrap msgid "password" msgstr "senha" #. type: table -#: guix-git/doc/guix.texi:24185 +#: guix-git/doc/guix.texi:24547 msgid "A password to identify your registration. Subsequent updates will need the same password. Don't lose your password." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24189 +#: guix-git/doc/guix.texi:24551 msgid "This should be a @code{http://} or @code{https://} link to your web site." msgstr "" #. type: item -#: guix-git/doc/guix.texi:24190 guix-git/doc/guix.texi:27292 +#: guix-git/doc/guix.texi:24552 guix-git/doc/guix.texi:27629 #, no-wrap msgid "@code{hostname} (default: @code{#f})" msgstr "@code{hostname} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:24193 +#: guix-git/doc/guix.texi:24555 msgid "By default your server will be listed by its IP address. If it is set your server will be linked by this host name instead." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24203 +#: guix-git/doc/guix.texi:24565 msgid "The @code{(gnu services file-sharing)} module provides services that assist with transferring files over peer-to-peer file-sharing networks." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:24204 +#: guix-git/doc/guix.texi:24566 #, no-wrap msgid "Transmission Daemon Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24212 +#: guix-git/doc/guix.texi:24574 msgid "@uref{https://transmissionbt.com/, Transmission} is a flexible BitTorrent client that offers a variety of graphical and command-line interfaces. A @code{transmission-daemon-service-type} service provides Transmission's headless variant, @command{transmission-daemon}, as a system service, allowing users to share files via BitTorrent even when they are not logged in." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24213 +#: guix-git/doc/guix.texi:24575 #, no-wrap msgid "{Scheme Variable} transmission-daemon-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24217 +#: guix-git/doc/guix.texi:24579 msgid "The service type for the Transmission Daemon BitTorrent client. Its value must be a @code{transmission-daemon-configuration} object as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24228 +#: guix-git/doc/guix.texi:24590 #, no-wrap msgid "" "(service transmission-daemon-service-type\n" @@ -43688,7 +44322,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24233 +#: guix-git/doc/guix.texi:24595 #, no-wrap msgid "" " ;; Accept requests from this and other hosts on the\n" @@ -43699,7 +44333,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24237 +#: guix-git/doc/guix.texi:24599 #, no-wrap msgid "" " ;; Limit bandwidth use during work hours\n" @@ -43709,7 +44343,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24244 +#: guix-git/doc/guix.texi:24606 #, no-wrap msgid "" " (alt-speed-time-enabled? #t)\n" @@ -43721,49 +44355,49 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24257 +#: guix-git/doc/guix.texi:24619 msgid "Once the service is started, users can interact with the daemon through its Web interface (at @code{http://localhost:9091/}) or by using the @command{transmission-remote} command-line tool, available in the @code{transmission} package. (Emacs users may want to also consider the @code{emacs-transmission} package.) Both communicate with the daemon through its remote procedure call (RPC) interface, which by default is available to all users on the system; you may wish to change this by assigning values to the @code{rpc-authentication-required?}, @code{rpc-username} and @code{rpc-password} settings, as shown in the example above and documented further below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24265 +#: guix-git/doc/guix.texi:24627 msgid "The value for @code{rpc-password} must be a password hash of the type generated and used by Transmission clients. This can be copied verbatim from an existing @file{settings.json} file, if another Transmission client is already being used. Otherwise, the @code{transmission-password-hash} and @code{transmission-random-salt} procedures provided by this module can be used to obtain a suitable hash value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24266 +#: guix-git/doc/guix.texi:24628 #, no-wrap msgid "{Scheme Procedure} transmission-password-hash @var{password} @var{salt}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24270 +#: guix-git/doc/guix.texi:24632 msgid "Returns a string containing the result of hashing @var{password} together with @var{salt}, in the format recognized by Transmission clients for their @code{rpc-password} configuration setting." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24274 +#: guix-git/doc/guix.texi:24636 msgid "@var{salt} must be an eight-character string. The @code{transmission-random-salt} procedure can be used to generate a suitable salt value at random." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24276 +#: guix-git/doc/guix.texi:24638 #, no-wrap msgid "{Scheme Procedure} transmission-random-salt" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24280 +#: guix-git/doc/guix.texi:24642 msgid "Returns a string containing a random, eight-character salt value of the type generated and used by Transmission clients, suitable for passing to the @code{transmission-password-hash} procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24286 +#: guix-git/doc/guix.texi:24648 msgid "These procedures are accessible from within a Guile REPL started with the @command{guix repl} command (@pxref{Invoking guix repl}). This is useful for obtaining a random salt value to provide as the second parameter to `transmission-password-hash`, as in this example session:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:24292 +#: guix-git/doc/guix.texi:24654 #, no-wrap msgid "" "$ guix repl\n" @@ -43773,12 +44407,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24295 +#: guix-git/doc/guix.texi:24657 msgid "Alternatively, a complete password hash can generated in a single step:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:24300 +#: guix-git/doc/guix.texi:24662 #, no-wrap msgid "" "scheme@@(guix-user)> (transmission-password-hash \"transmission\"\n" @@ -43787,480 +44421,480 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24305 +#: guix-git/doc/guix.texi:24667 msgid "The resulting string can be used as-is for the value of @code{rpc-password}, allowing the password to be kept hidden even in the operating-system configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24314 +#: guix-git/doc/guix.texi:24676 msgid "Torrent files downloaded by the daemon are directly accessible only to users in the ``transmission'' user group, who receive read-only access to the directory specified by the @code{download-dir} configuration setting (and also the directory specified by @code{incomplete-dir}, if @code{incomplete-dir-enabled?} is @code{#t}). Downloaded files can be moved to another directory or deleted altogether using @command{transmission-remote} with its @code{--move} and @code{--remove-and-delete} options." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24321 +#: guix-git/doc/guix.texi:24683 msgid "If the @code{watch-dir-enabled?} setting is set to @code{#t}, users in the ``transmission'' group are able also to place @file{.torrent} files in the directory specified by @code{watch-dir} to have the corresponding torrents added by the daemon. (The @code{trash-original-torrent-files?} setting controls whether the daemon deletes these files after processing them.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24326 +#: guix-git/doc/guix.texi:24688 msgid "Some of the daemon's configuration settings can be changed temporarily by @command{transmission-remote} and similar tools. To undo these changes, use the service's @code{reload} action to have the daemon reload its settings from disk:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:24329 +#: guix-git/doc/guix.texi:24691 #, no-wrap msgid "# herd reload transmission-daemon\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24333 +#: guix-git/doc/guix.texi:24695 msgid "The full set of available configuration settings is defined by the @code{transmission-daemon-configuration} data type." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24334 +#: guix-git/doc/guix.texi:24696 #, no-wrap msgid "{Data Type} transmission-daemon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24338 +#: guix-git/doc/guix.texi:24700 msgid "The data type representing configuration settings for Transmission Daemon. These correspond directly to the settings recognized by Transmission clients in their @file{settings.json} file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24352 +#: guix-git/doc/guix.texi:24714 msgid "Available @code{transmission-daemon-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24353 +#: guix-git/doc/guix.texi:24715 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} package transmission" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24355 +#: guix-git/doc/guix.texi:24717 msgid "The Transmission package to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24358 +#: guix-git/doc/guix.texi:24720 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer stop-wait-period" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24364 +#: guix-git/doc/guix.texi:24726 msgid "The period, in seconds, to wait when stopping the service for @command{transmission-daemon} to exit before killing its process. This allows the daemon time to complete its housekeeping and send a final update to trackers as it shuts down. On slow hosts, or hosts with a slow network connection, this value may need to be increased." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24366 guix-git/doc/guix.texi:24738 -#: guix-git/doc/guix.texi:32101 guix-git/doc/guix.texi:32336 -#: guix-git/doc/guix.texi:32344 guix-git/doc/guix.texi:32352 +#: guix-git/doc/guix.texi:24728 guix-git/doc/guix.texi:25100 +#: guix-git/doc/guix.texi:32466 guix-git/doc/guix.texi:32701 +#: guix-git/doc/guix.texi:32709 guix-git/doc/guix.texi:32717 msgid "Defaults to @samp{10}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24369 +#: guix-git/doc/guix.texi:24731 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string download-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24371 +#: guix-git/doc/guix.texi:24733 msgid "The directory to which torrent files are downloaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24373 +#: guix-git/doc/guix.texi:24735 msgid "Defaults to @samp{\"/var/lib/transmission-daemon/downloads\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24376 +#: guix-git/doc/guix.texi:24738 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean incomplete-dir-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24381 +#: guix-git/doc/guix.texi:24743 msgid "If @code{#t}, files will be held in @code{incomplete-dir} while their torrent is being downloaded, then moved to @code{download-dir} once the torrent is complete. Otherwise, files for all torrents (including those still being downloaded) will be placed in @code{download-dir}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24386 +#: guix-git/doc/guix.texi:24748 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string incomplete-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24389 +#: guix-git/doc/guix.texi:24751 msgid "The directory in which files from incompletely downloaded torrents will be held when @code{incomplete-dir-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24394 +#: guix-git/doc/guix.texi:24756 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} umask umask" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24397 +#: guix-git/doc/guix.texi:24759 msgid "The file mode creation mask used for downloaded files. (See the @command{umask} man page for more information.)" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24399 +#: guix-git/doc/guix.texi:24761 msgid "Defaults to @samp{18}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24402 +#: guix-git/doc/guix.texi:24764 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rename-partial-files?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24405 +#: guix-git/doc/guix.texi:24767 msgid "When @code{#t}, ``.part'' is appended to the name of partially downloaded files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24410 +#: guix-git/doc/guix.texi:24772 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} preallocation-mode preallocation" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24415 +#: guix-git/doc/guix.texi:24777 msgid "The mode by which space should be preallocated for downloaded files, one of @code{none}, @code{fast} (or @code{sparse}) and @code{full}. Specifying @code{full} will minimize disk fragmentation at a cost to file-creation speed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24417 +#: guix-git/doc/guix.texi:24779 msgid "Defaults to @samp{fast}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24420 +#: guix-git/doc/guix.texi:24782 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean watch-dir-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24425 +#: guix-git/doc/guix.texi:24787 msgid "If @code{#t}, the directory specified by @code{watch-dir} will be watched for new @file{.torrent} files and the torrents they describe added automatically (and the original files removed, if @code{trash-original-torrent-files?} is @code{#t})." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24430 +#: guix-git/doc/guix.texi:24792 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string watch-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24433 +#: guix-git/doc/guix.texi:24795 msgid "The directory to be watched for @file{.torrent} files indicating new torrents to be added, when @code{watch-dir-enabled} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24438 +#: guix-git/doc/guix.texi:24800 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean trash-original-torrent-files?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24442 +#: guix-git/doc/guix.texi:24804 msgid "When @code{#t}, @file{.torrent} files will be deleted from the watch directory once their torrent has been added (see @code{watch-directory-enabled?})." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24447 +#: guix-git/doc/guix.texi:24809 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean speed-limit-down-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24450 +#: guix-git/doc/guix.texi:24812 msgid "When @code{#t}, the daemon's download speed will be limited to the rate specified by @code{speed-limit-down}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24455 +#: guix-git/doc/guix.texi:24817 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer speed-limit-down" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24457 +#: guix-git/doc/guix.texi:24819 msgid "The default global-maximum download speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24462 +#: guix-git/doc/guix.texi:24824 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean speed-limit-up-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24465 +#: guix-git/doc/guix.texi:24827 msgid "When @code{#t}, the daemon's upload speed will be limited to the rate specified by @code{speed-limit-up}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24470 +#: guix-git/doc/guix.texi:24832 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer speed-limit-up" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24472 +#: guix-git/doc/guix.texi:24834 msgid "The default global-maximum upload speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24477 +#: guix-git/doc/guix.texi:24839 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean alt-speed-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24483 +#: guix-git/doc/guix.texi:24845 msgid "When @code{#t}, the alternate speed limits @code{alt-speed-down} and @code{alt-speed-up} are used (in place of @code{speed-limit-down} and @code{speed-limit-up}, if they are enabled) to constrain the daemon's bandwidth usage. This can be scheduled to occur automatically at certain times during the week; see @code{alt-speed-time-enabled?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24488 +#: guix-git/doc/guix.texi:24850 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-down" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24490 +#: guix-git/doc/guix.texi:24852 msgid "The alternate global-maximum download speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24492 guix-git/doc/guix.texi:24499 -#: guix-git/doc/guix.texi:24671 guix-git/doc/guix.texi:32108 -#: guix-git/doc/guix.texi:32123 +#: guix-git/doc/guix.texi:24854 guix-git/doc/guix.texi:24861 +#: guix-git/doc/guix.texi:25033 guix-git/doc/guix.texi:32473 +#: guix-git/doc/guix.texi:32488 msgid "Defaults to @samp{50}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24495 +#: guix-git/doc/guix.texi:24857 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-up" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24497 +#: guix-git/doc/guix.texi:24859 msgid "The alternate global-maximum upload speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24502 +#: guix-git/doc/guix.texi:24864 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean alt-speed-time-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24507 +#: guix-git/doc/guix.texi:24869 msgid "When @code{#t}, the alternate speed limits @code{alt-speed-down} and @code{alt-speed-up} will be enabled automatically during the periods specified by @code{alt-speed-time-day}, @code{alt-speed-time-begin} and @code{alt-time-speed-end}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24512 +#: guix-git/doc/guix.texi:24874 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} day-list alt-speed-time-day" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24517 +#: guix-git/doc/guix.texi:24879 msgid "The days of the week on which the alternate-speed schedule should be used, specified either as a list of days (@code{sunday}, @code{monday}, and so on) or using one of the symbols @code{weekdays}, @code{weekends} or @code{all}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24519 +#: guix-git/doc/guix.texi:24881 msgid "Defaults to @samp{all}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24522 +#: guix-git/doc/guix.texi:24884 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-time-begin" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24525 +#: guix-git/doc/guix.texi:24887 msgid "The time of day at which to enable the alternate speed limits, expressed as a number of minutes since midnight." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24527 +#: guix-git/doc/guix.texi:24889 msgid "Defaults to @samp{540}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24530 +#: guix-git/doc/guix.texi:24892 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-time-end" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24533 +#: guix-git/doc/guix.texi:24895 msgid "The time of day at which to disable the alternate speed limits, expressed as a number of minutes since midnight." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24535 +#: guix-git/doc/guix.texi:24897 msgid "Defaults to @samp{1020}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24538 +#: guix-git/doc/guix.texi:24900 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string bind-address-ipv4" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24541 +#: guix-git/doc/guix.texi:24903 msgid "The IP address at which to listen for peer connections, or ``0.0.0.0'' to listen at all available IP addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24543 guix-git/doc/guix.texi:24846 -#: guix-git/doc/guix.texi:29969 +#: guix-git/doc/guix.texi:24905 guix-git/doc/guix.texi:25208 +#: guix-git/doc/guix.texi:30334 msgid "Defaults to @samp{\"0.0.0.0\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24546 +#: guix-git/doc/guix.texi:24908 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string bind-address-ipv6" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24549 +#: guix-git/doc/guix.texi:24911 msgid "The IPv6 address at which to listen for peer connections, or ``::'' to listen at all available IPv6 addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24551 +#: guix-git/doc/guix.texi:24913 msgid "Defaults to @samp{\"::\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24554 +#: guix-git/doc/guix.texi:24916 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean peer-port-random-on-start?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24560 +#: guix-git/doc/guix.texi:24922 msgid "If @code{#t}, when the daemon starts it will select a port at random on which to listen for peer connections, from the range specified (inclusively) by @code{peer-port-random-low} and @code{peer-port-random-high}. Otherwise, it listens on the port specified by @code{peer-port}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24565 +#: guix-git/doc/guix.texi:24927 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port-random-low" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24568 +#: guix-git/doc/guix.texi:24930 msgid "The lowest selectable port number when @code{peer-port-random-on-start?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24570 +#: guix-git/doc/guix.texi:24932 msgid "Defaults to @samp{49152}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24573 +#: guix-git/doc/guix.texi:24935 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port-random-high" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24576 +#: guix-git/doc/guix.texi:24938 msgid "The highest selectable port number when @code{peer-port-random-on-start} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24578 +#: guix-git/doc/guix.texi:24940 msgid "Defaults to @samp{65535}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24581 +#: guix-git/doc/guix.texi:24943 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24584 +#: guix-git/doc/guix.texi:24946 msgid "The port on which to listen for peer connections when @code{peer-port-random-on-start?} is @code{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24586 +#: guix-git/doc/guix.texi:24948 msgid "Defaults to @samp{51413}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24589 +#: guix-git/doc/guix.texi:24951 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean port-forwarding-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24593 +#: guix-git/doc/guix.texi:24955 msgid "If @code{#t}, the daemon will attempt to configure port-forwarding on an upstream gateway automatically using @acronym{UPnP} and @acronym{NAT-PMP}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24598 +#: guix-git/doc/guix.texi:24960 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} encryption-mode encryption" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24603 +#: guix-git/doc/guix.texi:24965 msgid "The encryption preference for peer connections, one of @code{prefer-unencrypted-connections}, @code{prefer-encrypted-connections} or @code{require-encrypted-connections}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24605 +#: guix-git/doc/guix.texi:24967 msgid "Defaults to @samp{prefer-encrypted-connections}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24608 +#: guix-git/doc/guix.texi:24970 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string peer-congestion-algorithm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24613 +#: guix-git/doc/guix.texi:24975 msgid "The TCP congestion-control algorithm to use for peer connections, specified using a string recognized by the operating system in calls to @code{setsockopt} (or set to @code{disabled}, in which case the operating-system default is used)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24622 +#: guix-git/doc/guix.texi:24984 msgid "Note that on GNU/Linux systems, the kernel must be configured to allow processes to use a congestion-control algorithm not in the default set; otherwise, it will deny these requests with ``Operation not permitted''. To see which algorithms are available on your system and which are currently permitted for use, look at the contents of the files @file{tcp_available_congestion_control} and @file{tcp_allowed_congestion_control} in the @file{/proc/sys/net/ipv4} directory." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24630 +#: guix-git/doc/guix.texi:24992 msgid "As an example, to have Transmission Daemon use @uref{http://www-ece.rice.edu/networks/TCP-LP/,the TCP Low Priority congestion-control algorithm}, you'll need to modify your kernel configuration to build in support for the algorithm, then update your operating-system configuration to allow its use by adding a @code{sysctl-service-type} service (or updating the existing one's configuration) with lines like the following:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24637 +#: guix-git/doc/guix.texi:24999 #, no-wrap msgid "" "(service sysctl-service-type\n" @@ -44271,529 +44905,529 @@ msgid "" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24640 +#: guix-git/doc/guix.texi:25002 msgid "The Transmission Daemon configuration can then be updated with" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24643 +#: guix-git/doc/guix.texi:25005 #, no-wrap msgid "(peer-congestion-algorithm \"lp\")\n" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24646 +#: guix-git/doc/guix.texi:25008 msgid "and the system reconfigured to have the changes take effect." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24651 +#: guix-git/doc/guix.texi:25013 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} tcp-type-of-service peer-socket-tos" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24655 +#: guix-git/doc/guix.texi:25017 msgid "The type of service to request in outgoing @acronym{TCP} packets, one of @code{default}, @code{low-cost}, @code{throughput}, @code{low-delay} and @code{reliability}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24657 +#: guix-git/doc/guix.texi:25019 msgid "Defaults to @samp{default}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24660 +#: guix-git/doc/guix.texi:25022 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-limit-global" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24662 +#: guix-git/doc/guix.texi:25024 msgid "The global limit on the number of connected peers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24664 +#: guix-git/doc/guix.texi:25026 msgid "Defaults to @samp{200}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24667 +#: guix-git/doc/guix.texi:25029 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-limit-per-torrent" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24669 +#: guix-git/doc/guix.texi:25031 msgid "The per-torrent limit on the number of connected peers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24674 +#: guix-git/doc/guix.texi:25036 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer upload-slots-per-torrent" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24677 +#: guix-git/doc/guix.texi:25039 msgid "The maximum number of peers to which the daemon will upload data simultaneously for each torrent." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24679 +#: guix-git/doc/guix.texi:25041 msgid "Defaults to @samp{14}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24682 +#: guix-git/doc/guix.texi:25044 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-id-ttl-hours" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24685 +#: guix-git/doc/guix.texi:25047 msgid "The maximum lifespan, in hours, of the peer ID associated with each public torrent before it is regenerated." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24687 +#: guix-git/doc/guix.texi:25049 msgid "Defaults to @samp{6}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24690 +#: guix-git/doc/guix.texi:25052 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean blocklist-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24693 +#: guix-git/doc/guix.texi:25055 msgid "When @code{#t}, the daemon will ignore peers mentioned in the blocklist it has most recently downloaded from @code{blocklist-url}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24698 +#: guix-git/doc/guix.texi:25060 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string blocklist-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24702 +#: guix-git/doc/guix.texi:25064 msgid "The URL of a peer blocklist (in @acronym{P2P}-plaintext or eMule @file{.dat} format) to be periodically downloaded and applied when @code{blocklist-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24707 +#: guix-git/doc/guix.texi:25069 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean download-queue-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24710 +#: guix-git/doc/guix.texi:25072 msgid "If @code{#t}, the daemon will be limited to downloading at most @code{download-queue-size} non-stalled torrents simultaneously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24715 +#: guix-git/doc/guix.texi:25077 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer download-queue-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24719 +#: guix-git/doc/guix.texi:25081 msgid "The size of the daemon's download queue, which limits the number of non-stalled torrents it will download at any one time when @code{download-queue-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24724 +#: guix-git/doc/guix.texi:25086 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean seed-queue-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24727 +#: guix-git/doc/guix.texi:25089 msgid "If @code{#t}, the daemon will be limited to seeding at most @code{seed-queue-size} non-stalled torrents simultaneously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24732 +#: guix-git/doc/guix.texi:25094 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer seed-queue-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24736 +#: guix-git/doc/guix.texi:25098 msgid "The size of the daemon's seed queue, which limits the number of non-stalled torrents it will seed at any one time when @code{seed-queue-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24741 +#: guix-git/doc/guix.texi:25103 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean queue-stalled-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24746 +#: guix-git/doc/guix.texi:25108 msgid "When @code{#t}, the daemon will consider torrents for which it has not shared data in the past @code{queue-stalled-minutes} minutes to be stalled and not count them against its @code{download-queue-size} and @code{seed-queue-size} limits." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24751 +#: guix-git/doc/guix.texi:25113 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer queue-stalled-minutes" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24755 +#: guix-git/doc/guix.texi:25117 msgid "The maximum period, in minutes, a torrent may be idle before it is considered to be stalled, when @code{queue-stalled-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24760 +#: guix-git/doc/guix.texi:25122 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean ratio-limit-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24763 +#: guix-git/doc/guix.texi:25125 msgid "When @code{#t}, a torrent being seeded will automatically be paused once it reaches the ratio specified by @code{ratio-limit}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24768 +#: guix-git/doc/guix.texi:25130 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-rational ratio-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24771 +#: guix-git/doc/guix.texi:25133 msgid "The ratio at which a torrent being seeded will be paused, when @code{ratio-limit-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24773 +#: guix-git/doc/guix.texi:25135 msgid "Defaults to @samp{2.0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24776 +#: guix-git/doc/guix.texi:25138 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean idle-seeding-limit-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24779 +#: guix-git/doc/guix.texi:25141 msgid "When @code{#t}, a torrent being seeded will automatically be paused once it has been idle for @code{idle-seeding-limit} minutes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24784 +#: guix-git/doc/guix.texi:25146 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer idle-seeding-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24788 +#: guix-git/doc/guix.texi:25150 msgid "The maximum period, in minutes, a torrent being seeded may be idle before it is paused, when @code{idle-seeding-limit-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24793 +#: guix-git/doc/guix.texi:25155 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean dht-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24797 +#: guix-git/doc/guix.texi:25159 msgid "Enable @uref{http://bittorrent.org/beps/bep_0005.html,the distributed hash table (@acronym{DHT}) protocol}, which supports the use of trackerless torrents." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24802 +#: guix-git/doc/guix.texi:25164 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean lpd-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24807 +#: guix-git/doc/guix.texi:25169 msgid "Enable @uref{https://en.wikipedia.org/wiki/Local_Peer_Discovery,local peer discovery} (@acronym{LPD}), which allows the discovery of peers on the local network and may reduce the amount of data sent over the public Internet." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24812 +#: guix-git/doc/guix.texi:25174 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean pex-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24816 +#: guix-git/doc/guix.texi:25178 msgid "Enable @uref{https://en.wikipedia.org/wiki/Peer_exchange,peer exchange} (@acronym{PEX}), which reduces the daemon's reliance on external trackers and may improve its performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24821 +#: guix-git/doc/guix.texi:25183 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean utp-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24826 +#: guix-git/doc/guix.texi:25188 msgid "Enable @uref{http://bittorrent.org/beps/bep_0029.html,the micro transport protocol} (@acronym{uTP}), which aims to reduce the impact of BitTorrent traffic on other users of the local network while maintaining full utilization of the available bandwidth." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24831 +#: guix-git/doc/guix.texi:25193 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24836 +#: guix-git/doc/guix.texi:25198 msgid "If @code{#t}, enable the remote procedure call (@acronym{RPC}) interface, which allows remote control of the daemon via its Web interface, the @command{transmission-remote} command-line client, and similar tools." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24841 +#: guix-git/doc/guix.texi:25203 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string rpc-bind-address" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24844 +#: guix-git/doc/guix.texi:25206 msgid "The IP address at which to listen for @acronym{RPC} connections, or ``0.0.0.0'' to listen at all available IP addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24849 +#: guix-git/doc/guix.texi:25211 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number rpc-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24851 +#: guix-git/doc/guix.texi:25213 msgid "The port on which to listen for @acronym{RPC} connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24853 +#: guix-git/doc/guix.texi:25215 msgid "Defaults to @samp{9091}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24856 +#: guix-git/doc/guix.texi:25218 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string rpc-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24858 +#: guix-git/doc/guix.texi:25220 msgid "The path prefix to use in the @acronym{RPC}-endpoint @acronym{URL}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24860 +#: guix-git/doc/guix.texi:25222 msgid "Defaults to @samp{\"/transmission/\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24863 +#: guix-git/doc/guix.texi:25225 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-authentication-required?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24868 +#: guix-git/doc/guix.texi:25230 msgid "When @code{#t}, clients must authenticate (see @code{rpc-username} and @code{rpc-password}) when using the @acronym{RPC} interface. Note this has the side effect of disabling host-name whitelisting (see @code{rpc-host-whitelist-enabled?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24873 +#: guix-git/doc/guix.texi:25235 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string rpc-username" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24876 +#: guix-git/doc/guix.texi:25238 msgid "The username required by clients to access the @acronym{RPC} interface when @code{rpc-authentication-required?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24881 +#: guix-git/doc/guix.texi:25243 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-transmission-password-hash rpc-password" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24887 +#: guix-git/doc/guix.texi:25249 msgid "The password required by clients to access the @acronym{RPC} interface when @code{rpc-authentication-required?} is @code{#t}. This must be specified using a password hash in the format recognized by Transmission clients, either copied from an existing @file{settings.json} file or generated using the @code{transmission-password-hash} procedure." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24892 +#: guix-git/doc/guix.texi:25254 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-whitelist-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24895 +#: guix-git/doc/guix.texi:25257 msgid "When @code{#t}, @acronym{RPC} requests will be accepted only when they originate from an address specified in @code{rpc-whitelist}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24900 +#: guix-git/doc/guix.texi:25262 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string-list rpc-whitelist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24904 +#: guix-git/doc/guix.texi:25266 msgid "The list of IP and IPv6 addresses from which @acronym{RPC} requests will be accepted when @code{rpc-whitelist-enabled?} is @code{#t}. Wildcards may be specified using @samp{*}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24906 +#: guix-git/doc/guix.texi:25268 msgid "Defaults to @samp{(\"127.0.0.1\" \"::1\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24909 +#: guix-git/doc/guix.texi:25271 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-host-whitelist-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24914 +#: guix-git/doc/guix.texi:25276 msgid "When @code{#t}, @acronym{RPC} requests will be accepted only when they are addressed to a host named in @code{rpc-host-whitelist}. Note that requests to ``localhost'' or ``localhost.'', or to a numeric address, are always accepted regardless of these settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24917 +#: guix-git/doc/guix.texi:25279 msgid "Note also this functionality is disabled when @code{rpc-authentication-required?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24922 +#: guix-git/doc/guix.texi:25284 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string-list rpc-host-whitelist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24925 +#: guix-git/doc/guix.texi:25287 msgid "The list of host names recognized by the @acronym{RPC} server when @code{rpc-host-whitelist-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24930 +#: guix-git/doc/guix.texi:25292 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} message-level message-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24934 +#: guix-git/doc/guix.texi:25296 msgid "The minimum severity level of messages to be logged (to @file{/var/log/transmission.log}) by the daemon, one of @code{none} (no logging), @code{error}, @code{info} and @code{debug}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24939 +#: guix-git/doc/guix.texi:25301 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean start-added-torrents?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24942 +#: guix-git/doc/guix.texi:25304 msgid "When @code{#t}, torrents are started as soon as they are added; otherwise, they are added in ``paused'' state." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24947 +#: guix-git/doc/guix.texi:25309 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean script-torrent-done-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24951 +#: guix-git/doc/guix.texi:25313 msgid "When @code{#t}, the script specified by @code{script-torrent-done-filename} will be invoked each time a torrent completes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24956 +#: guix-git/doc/guix.texi:25318 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-file-object script-torrent-done-filename" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24960 +#: guix-git/doc/guix.texi:25322 msgid "A file name or file-like object specifying a script to run each time a torrent completes, when @code{script-torrent-done-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24965 +#: guix-git/doc/guix.texi:25327 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean scrape-paused-torrents-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24968 +#: guix-git/doc/guix.texi:25330 msgid "When @code{#t}, the daemon will scrape trackers for a torrent even when the torrent is paused." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24973 +#: guix-git/doc/guix.texi:25335 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer cache-size-mb" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24977 +#: guix-git/doc/guix.texi:25339 msgid "The amount of memory, in megabytes, to allocate for the daemon's in-memory cache. A larger value may increase performance by reducing the frequency of disk I/O." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24979 +#: guix-git/doc/guix.texi:25341 msgid "Defaults to @samp{4}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24982 +#: guix-git/doc/guix.texi:25344 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean prefetch-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24986 +#: guix-git/doc/guix.texi:25348 msgid "When @code{#t}, the daemon will try to improve I/O performance by hinting to the operating system which data is likely to be read next from disk to satisfy requests from peers." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:24999 +#: guix-git/doc/guix.texi:25361 #, no-wrap msgid "Tailon Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25003 +#: guix-git/doc/guix.texi:25365 msgid "@uref{https://tailon.readthedocs.io/, Tailon} is a web application for viewing and searching log files." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25006 +#: guix-git/doc/guix.texi:25368 msgid "The following example will configure the service with default values. By default, Tailon can be accessed on port 8080 (@code{http://localhost:8080})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25009 +#: guix-git/doc/guix.texi:25371 #, no-wrap msgid "(service tailon-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25013 +#: guix-git/doc/guix.texi:25375 msgid "The following example customises more of the Tailon configuration, adding @command{sed} to the list of allowed commands." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25020 +#: guix-git/doc/guix.texi:25382 #, no-wrap msgid "" "(service tailon-service-type\n" @@ -44804,34 +45438,34 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25023 +#: guix-git/doc/guix.texi:25385 #, no-wrap msgid "{Data Type} tailon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25026 +#: guix-git/doc/guix.texi:25388 msgid "Data type representing the configuration of Tailon. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25028 +#: guix-git/doc/guix.texi:25390 #, no-wrap msgid "@code{config-file} (default: @code{(tailon-configuration-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25032 +#: guix-git/doc/guix.texi:25394 msgid "The configuration file to use for Tailon. This can be set to a @dfn{tailon-configuration-file} record value, or any gexp (@pxref{G-Expressions})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25035 +#: guix-git/doc/guix.texi:25397 msgid "For example, to instead use a local file, the @code{local-file} function can be used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25040 +#: guix-git/doc/guix.texi:25402 #, no-wrap msgid "" "(service tailon-service-type\n" @@ -44840,144 +45474,144 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25042 +#: guix-git/doc/guix.texi:25404 #, no-wrap msgid "@code{package} (default: @code{tailon})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25044 +#: guix-git/doc/guix.texi:25406 msgid "The tailon package to use." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25048 +#: guix-git/doc/guix.texi:25410 #, no-wrap msgid "{Data Type} tailon-configuration-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25051 +#: guix-git/doc/guix.texi:25413 msgid "Data type representing the configuration options for Tailon. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25053 +#: guix-git/doc/guix.texi:25415 #, no-wrap msgid "@code{files} (default: @code{(list \"/var/log\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25058 +#: guix-git/doc/guix.texi:25420 msgid "List of files to display. The list can include strings for a single file or directory, or a list, where the first item is the name of a subsection, and the remaining items are the files or directories in that subsection." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25059 +#: guix-git/doc/guix.texi:25421 #, no-wrap msgid "@code{bind} (default: @code{\"localhost:8080\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25061 +#: guix-git/doc/guix.texi:25423 msgid "Address and port to which Tailon should bind on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25062 +#: guix-git/doc/guix.texi:25424 #, no-wrap msgid "@code{relative-root} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25064 +#: guix-git/doc/guix.texi:25426 msgid "URL path to use for Tailon, set to @code{#f} to not use a path." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25065 +#: guix-git/doc/guix.texi:25427 #, no-wrap msgid "@code{allow-transfers?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25067 +#: guix-git/doc/guix.texi:25429 msgid "Allow downloading the log files in the web interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25068 +#: guix-git/doc/guix.texi:25430 #, no-wrap msgid "@code{follow-names?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25070 +#: guix-git/doc/guix.texi:25432 msgid "Allow tailing of not-yet existent files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25071 +#: guix-git/doc/guix.texi:25433 #, no-wrap msgid "@code{tail-lines} (default: @code{200})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25073 +#: guix-git/doc/guix.texi:25435 msgid "Number of lines to read initially from each file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25074 +#: guix-git/doc/guix.texi:25436 #, no-wrap msgid "@code{allowed-commands} (default: @code{(list \"tail\" \"grep\" \"awk\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25076 +#: guix-git/doc/guix.texi:25438 msgid "Commands to allow running. By default, @code{sed} is disabled." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25079 +#: guix-git/doc/guix.texi:25441 msgid "Set @code{debug?} to @code{#t} to show debug messages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25080 +#: guix-git/doc/guix.texi:25442 #, no-wrap msgid "@code{wrap-lines} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25084 +#: guix-git/doc/guix.texi:25446 msgid "Initial line wrapping state in the web interface. Set to @code{#t} to initially wrap lines (the default), or to @code{#f} to initially not wrap lines." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25085 +#: guix-git/doc/guix.texi:25447 #, no-wrap msgid "@code{http-auth} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25089 +#: guix-git/doc/guix.texi:25451 msgid "HTTP authentication type to use. Set to @code{#f} to disable authentication (the default). Supported values are @code{\"digest\"} or @code{\"basic\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25090 +#: guix-git/doc/guix.texi:25452 #, no-wrap msgid "@code{users} (default: @code{#f})" msgstr "@code{users} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:25095 +#: guix-git/doc/guix.texi:25457 msgid "If HTTP authentication is enabled (see @code{http-auth}), access will be restricted to the credentials provided here. To configure users, use a list of pairs, where the first element of the pair is the username, and the 2nd element of the pair is the password." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25101 +#: guix-git/doc/guix.texi:25463 #, no-wrap msgid "" "(tailon-configuration-file\n" @@ -44987,35 +45621,35 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25107 +#: guix-git/doc/guix.texi:25469 #, no-wrap msgid "Darkstat Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25108 +#: guix-git/doc/guix.texi:25470 #, no-wrap msgid "darkstat" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25111 +#: guix-git/doc/guix.texi:25473 msgid "Darkstat is a packet sniffer that captures network traffic, calculates statistics about usage, and serves reports over HTTP." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25112 +#: guix-git/doc/guix.texi:25474 #, no-wrap msgid "{Scheme Variable} darkstat-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25117 +#: guix-git/doc/guix.texi:25479 msgid "This is the service type for the @uref{https://unix4lyfe.org/darkstat/, darkstat} service, its value must be a @code{darkstat-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25122 +#: guix-git/doc/guix.texi:25484 #, no-wrap msgid "" "(service darkstat-service-type\n" @@ -45024,715 +45658,735 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25125 +#: guix-git/doc/guix.texi:25487 #, no-wrap msgid "{Data Type} darkstat-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25127 +#: guix-git/doc/guix.texi:25489 msgid "Data type representing the configuration of @command{darkstat}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25129 +#: guix-git/doc/guix.texi:25491 #, no-wrap msgid "@code{package} (default: @code{darkstat})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25131 +#: guix-git/doc/guix.texi:25493 msgid "The darkstat package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25132 +#: guix-git/doc/guix.texi:25494 #, no-wrap msgid "interface" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25134 +#: guix-git/doc/guix.texi:25496 msgid "Capture traffic on the specified network interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25135 +#: guix-git/doc/guix.texi:25497 #, no-wrap msgid "@code{port} (default: @code{\"667\"})" msgstr "@code{porta} (default: @code{\"667\"})" #. type: table -#: guix-git/doc/guix.texi:25137 +#: guix-git/doc/guix.texi:25499 msgid "Bind the web interface to the specified port." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25140 guix-git/doc/guix.texi:25175 +#: guix-git/doc/guix.texi:25502 guix-git/doc/guix.texi:25537 msgid "Bind the web interface to the specified address." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25141 +#: guix-git/doc/guix.texi:25503 #, no-wrap msgid "@code{base} (default: @code{\"/\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25144 +#: guix-git/doc/guix.texi:25506 msgid "Specify the path of the base URL@. This can be useful if @command{darkstat} is accessed via a reverse proxy." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25148 +#: guix-git/doc/guix.texi:25510 #, no-wrap msgid "Prometheus Node Exporter Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25150 +#: guix-git/doc/guix.texi:25512 #, no-wrap msgid "prometheus-node-exporter" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25155 +#: guix-git/doc/guix.texi:25517 msgid "The Prometheus ``node exporter'' makes hardware and operating system statistics provided by the Linux kernel available for the Prometheus monitoring system. This service should be deployed on all physical nodes and virtual machines, where monitoring these statistics is desirable." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25156 +#: guix-git/doc/guix.texi:25518 #, no-wrap msgid "{Scheme variable} prometheus-node-exporter-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25160 +#: guix-git/doc/guix.texi:25522 msgid "This is the service type for the @uref{https://github.com/prometheus/node_exporter/, prometheus-node-exporter} service, its value must be a @code{prometheus-node-exporter-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25163 +#: guix-git/doc/guix.texi:25525 #, no-wrap msgid "(service prometheus-node-exporter-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25166 +#: guix-git/doc/guix.texi:25528 #, no-wrap msgid "{Data Type} prometheus-node-exporter-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25168 +#: guix-git/doc/guix.texi:25530 msgid "Data type representing the configuration of @command{node_exporter}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25170 +#: guix-git/doc/guix.texi:25532 #, no-wrap msgid "@code{package} (default: @code{go-github-com-prometheus-node-exporter})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25172 +#: guix-git/doc/guix.texi:25534 msgid "The prometheus-node-exporter package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25173 +#: guix-git/doc/guix.texi:25535 #, no-wrap msgid "@code{web-listen-address} (default: @code{\":9100\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25176 +#: guix-git/doc/guix.texi:25538 #, no-wrap msgid "@code{textfile-directory} (default: @code{\"/var/lib/prometheus/node-exporter\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25180 +#: guix-git/doc/guix.texi:25542 msgid "This directory can be used to export metrics specific to this machine. Files containing metrics in the text format, with the filename ending in @code{.prom} should be placed in this directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25183 +#: guix-git/doc/guix.texi:25545 msgid "Extra options to pass to the Prometheus node exporter." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25187 +#: guix-git/doc/guix.texi:25549 #, no-wrap msgid "Zabbix server" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25188 +#: guix-git/doc/guix.texi:25550 #, no-wrap msgid "zabbix zabbix-server" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25191 +#: guix-git/doc/guix.texi:25553 msgid "Zabbix provides monitoring metrics, among others network utilization, CPU load and disk space consumption:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25193 +#: guix-git/doc/guix.texi:25555 #, no-wrap msgid "High performance, high capacity (able to monitor hundreds of thousands of devices)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25194 +#: guix-git/doc/guix.texi:25556 #, no-wrap msgid "Auto-discovery of servers and network devices and interfaces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25195 +#: guix-git/doc/guix.texi:25557 #, no-wrap msgid "Low-level discovery, allows to automatically start monitoring new items, file systems or network interfaces among others." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25196 +#: guix-git/doc/guix.texi:25558 #, no-wrap msgid "Distributed monitoring with centralized web administration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25197 +#: guix-git/doc/guix.texi:25559 #, no-wrap msgid "Native high performance agents." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25198 +#: guix-git/doc/guix.texi:25560 #, no-wrap msgid "SLA, and ITIL KPI metrics on reporting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25199 +#: guix-git/doc/guix.texi:25561 #, no-wrap msgid "High-level (business) view of monitored resources through user-defined visual console screens and dashboards." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25200 +#: guix-git/doc/guix.texi:25562 #, no-wrap msgid "Remote command execution through Zabbix proxies." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25206 +#: guix-git/doc/guix.texi:25568 msgid "Available @code{zabbix-server-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25207 +#: guix-git/doc/guix.texi:25569 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} package zabbix-server" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25209 +#: guix-git/doc/guix.texi:25571 msgid "The zabbix-server package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25212 +#: guix-git/doc/guix.texi:25574 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25214 +#: guix-git/doc/guix.texi:25576 msgid "User who will run the Zabbix server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25216 guix-git/doc/guix.texi:25223 -#: guix-git/doc/guix.texi:25237 guix-git/doc/guix.texi:25244 -#: guix-git/doc/guix.texi:25345 guix-git/doc/guix.texi:25352 -#: guix-git/doc/guix.texi:25463 guix-git/doc/guix.texi:25470 +#: guix-git/doc/guix.texi:25578 guix-git/doc/guix.texi:25585 +#: guix-git/doc/guix.texi:25599 guix-git/doc/guix.texi:25606 +#: guix-git/doc/guix.texi:25707 guix-git/doc/guix.texi:25714 msgid "Defaults to @samp{\"zabbix\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25219 +#: guix-git/doc/guix.texi:25581 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} group group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25221 +#: guix-git/doc/guix.texi:25583 msgid "Group who will run the Zabbix server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25226 +#: guix-git/doc/guix.texi:25588 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-host" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25228 guix-git/doc/guix.texi:25447 +#. type: table +#: guix-git/doc/guix.texi:25590 guix-git/doc/guix.texi:25813 msgid "Database host name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25230 +#: guix-git/doc/guix.texi:25592 msgid "Defaults to @samp{\"127.0.0.1\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25233 +#: guix-git/doc/guix.texi:25595 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-name" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25235 guix-git/doc/guix.texi:25461 +#. type: table +#: guix-git/doc/guix.texi:25597 guix-git/doc/guix.texi:25819 msgid "Database name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25240 +#: guix-git/doc/guix.texi:25602 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-user" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25242 guix-git/doc/guix.texi:25468 +#. type: table +#: guix-git/doc/guix.texi:25604 guix-git/doc/guix.texi:25822 msgid "Database user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25247 +#: guix-git/doc/guix.texi:25609 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-password" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25250 +#: guix-git/doc/guix.texi:25612 msgid "Database password. Please, use @code{include-files} with @code{DBPassword=SECRET} inside a specified file instead." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25255 +#: guix-git/doc/guix.texi:25617 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} number db-port" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25257 guix-git/doc/guix.texi:25454 +#. type: table +#: guix-git/doc/guix.texi:25619 guix-git/doc/guix.texi:25816 msgid "Database port." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25259 guix-git/doc/guix.texi:25456 +#: guix-git/doc/guix.texi:25621 msgid "Defaults to @samp{5432}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25262 +#: guix-git/doc/guix.texi:25624 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string log-type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25264 guix-git/doc/guix.texi:25365 +#: guix-git/doc/guix.texi:25626 guix-git/doc/guix.texi:25727 msgid "Specifies where log messages are written to:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25268 guix-git/doc/guix.texi:25369 +#: guix-git/doc/guix.texi:25630 guix-git/doc/guix.texi:25731 msgid "@code{system} - syslog." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25271 guix-git/doc/guix.texi:25372 +#: guix-git/doc/guix.texi:25633 guix-git/doc/guix.texi:25734 msgid "@code{file} - file specified with @code{log-file} parameter." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25274 guix-git/doc/guix.texi:25375 +#: guix-git/doc/guix.texi:25636 guix-git/doc/guix.texi:25737 msgid "@code{console} - standard output." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25281 +#: guix-git/doc/guix.texi:25643 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string log-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25283 guix-git/doc/guix.texi:25384 +#: guix-git/doc/guix.texi:25645 guix-git/doc/guix.texi:25746 msgid "Log file name for @code{log-type} @code{file} parameter." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25285 +#: guix-git/doc/guix.texi:25647 msgid "Defaults to @samp{\"/var/log/zabbix/server.log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25288 +#: guix-git/doc/guix.texi:25650 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25290 guix-git/doc/guix.texi:25391 +#: guix-git/doc/guix.texi:25652 guix-git/doc/guix.texi:25753 msgid "Name of PID file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25292 +#: guix-git/doc/guix.texi:25654 msgid "Defaults to @samp{\"/var/run/zabbix/zabbix_server.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25295 +#: guix-git/doc/guix.texi:25657 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string ssl-ca-location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25298 +#: guix-git/doc/guix.texi:25660 msgid "The location of certificate authority (CA) files for SSL server certificate verification." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25300 +#: guix-git/doc/guix.texi:25662 msgid "Defaults to @samp{\"/etc/ssl/certs/ca-certificates.crt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25303 +#: guix-git/doc/guix.texi:25665 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string ssl-cert-location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25305 +#: guix-git/doc/guix.texi:25667 msgid "Location of SSL client certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25307 +#: guix-git/doc/guix.texi:25669 msgid "Defaults to @samp{\"/etc/ssl/certs\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25310 +#: guix-git/doc/guix.texi:25672 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25312 guix-git/doc/guix.texi:25416 +#: guix-git/doc/guix.texi:25674 guix-git/doc/guix.texi:25778 msgid "Extra options will be appended to Zabbix server configuration file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25317 +#: guix-git/doc/guix.texi:25679 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} include-files include-files" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25320 guix-git/doc/guix.texi:25424 +#: guix-git/doc/guix.texi:25682 guix-git/doc/guix.texi:25786 msgid "You may include individual files or all files in a directory in the configuration file." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25327 +#: guix-git/doc/guix.texi:25689 #, no-wrap msgid "Zabbix agent" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25328 +#: guix-git/doc/guix.texi:25690 #, no-wrap msgid "zabbix zabbix-agent" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25331 +#: guix-git/doc/guix.texi:25693 msgid "Zabbix agent gathers information for Zabbix server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25335 +#: guix-git/doc/guix.texi:25697 msgid "Available @code{zabbix-agent-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25336 +#: guix-git/doc/guix.texi:25698 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} package zabbix-agent" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25338 +#: guix-git/doc/guix.texi:25700 msgid "The zabbix-agent package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25341 +#: guix-git/doc/guix.texi:25703 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25343 +#: guix-git/doc/guix.texi:25705 msgid "User who will run the Zabbix agent." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25348 +#: guix-git/doc/guix.texi:25710 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} group group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25350 +#: guix-git/doc/guix.texi:25712 msgid "Group who will run the Zabbix agent." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25355 +#: guix-git/doc/guix.texi:25717 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string hostname" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25358 +#: guix-git/doc/guix.texi:25720 msgid "Unique, case sensitive hostname which is required for active checks and must match hostname as configured on the server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25363 +#: guix-git/doc/guix.texi:25725 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string log-type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25382 +#: guix-git/doc/guix.texi:25744 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string log-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25386 +#: guix-git/doc/guix.texi:25748 msgid "Defaults to @samp{\"/var/log/zabbix/agent.log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25389 +#: guix-git/doc/guix.texi:25751 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25393 +#: guix-git/doc/guix.texi:25755 msgid "Defaults to @samp{\"/var/run/zabbix/zabbix_agent.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25396 +#: guix-git/doc/guix.texi:25758 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} list server" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25400 +#: guix-git/doc/guix.texi:25762 msgid "List of IP addresses, optionally in CIDR notation, or hostnames of Zabbix servers and Zabbix proxies. Incoming connections will be accepted only from the hosts listed here." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25402 guix-git/doc/guix.texi:25411 +#: guix-git/doc/guix.texi:25764 guix-git/doc/guix.texi:25773 msgid "Defaults to @samp{(\"127.0.0.1\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25405 +#: guix-git/doc/guix.texi:25767 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} list server-active" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25409 +#: guix-git/doc/guix.texi:25771 msgid "List of IP:port (or hostname:port) pairs of Zabbix servers and Zabbix proxies for active checks. If port is not specified, default port is used. If this parameter is not specified, active checks are disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25414 +#: guix-git/doc/guix.texi:25776 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25421 +#: guix-git/doc/guix.texi:25783 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} include-files include-files" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25431 +#: guix-git/doc/guix.texi:25793 #, no-wrap msgid "Zabbix front-end" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25432 +#: guix-git/doc/guix.texi:25794 #, no-wrap msgid "zabbix zabbix-front-end" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25435 +#: guix-git/doc/guix.texi:25797 msgid "This service provides a WEB interface to Zabbix server." msgstr "" -#. type: Plain text -#: guix-git/doc/guix.texi:25439 +#. type: deftp +#: guix-git/doc/guix.texi:25800 +#, fuzzy, no-wrap +msgid "{Data Type} zabbix-front-end-configuration" +msgstr "build-machine {Data Type}" + +#. type: deftp +#: guix-git/doc/guix.texi:25802 msgid "Available @code{zabbix-front-end-configuration} fields are:" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25440 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} nginx-server-configuration-list nginx" -msgstr "" +#. type: item +#: guix-git/doc/guix.texi:25804 +#, fuzzy, no-wrap +msgid "@code{zabbix-server} (default: @code{zabbix-server}) (type: file-like)" +msgstr "@code{remote?} (padrão: @code{#f})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25442 guix-git/doc/guix.texi:31735 -msgid "NGINX configuration." -msgstr "" +#. type: table +#: guix-git/doc/guix.texi:25806 +#, fuzzy +#| msgid "The GPM package to use." +msgid "The Zabbix server package to use." +msgstr "O pacote GPM a ser usado." -#. type: deftypevr -#: guix-git/doc/guix.texi:25445 +#. type: item +#: guix-git/doc/guix.texi:25807 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-host" +msgid "@code{fastcgi-params} (type: list)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25452 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} number db-port" +#. type: table +#: guix-git/doc/guix.texi:25810 +msgid "List of FastCGI parameter pairs that will be included in the NGINX configuration." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25459 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-name" -msgstr "" +#. type: item +#: guix-git/doc/guix.texi:25811 +#, fuzzy, no-wrap +#| msgid "@code{dbus?} (default: @code{#t})" +msgid "@code{db-host} (default: @code{\\\"localhost\\\"}) (type: string)" +msgstr "@code{dbus?} (padrão: @code{#t})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25466 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-user" -msgstr "" +#. type: item +#: guix-git/doc/guix.texi:25814 +#, fuzzy, no-wrap +#| msgid "@code{debug?} (default: @code{#f})" +msgid "@code{db-port} (default: @code{5432}) (type: number)" +msgstr "@code{debug?} (default: @code{#f})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25473 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-password" -msgstr "" +#. type: item +#: guix-git/doc/guix.texi:25817 +#, fuzzy, no-wrap +msgid "@code{db-name} (default: @code{\\\"zabbix\\\"}) (type: string)" +msgstr "@code{remote?} (padrão: @code{#f})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25475 +#. type: item +#: guix-git/doc/guix.texi:25820 +#, fuzzy, no-wrap +#| msgid "@code{dbus?} (default: @code{#t})" +msgid "@code{db-user} (default: @code{\\\"zabbix\\\"}) (type: string)" +msgstr "@code{dbus?} (padrão: @code{#t})" + +#. type: item +#: guix-git/doc/guix.texi:25823 +#, fuzzy, no-wrap +#| msgid "@code{dbus?} (default: @code{#t})" +msgid "@code{db-password} (default: @code{\\\"\\\"}) (type: string)" +msgstr "@code{dbus?} (padrão: @code{#t})" + +#. type: table +#: guix-git/doc/guix.texi:25825 msgid "Database password. Please, use @code{db-secret-file} instead." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25480 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-secret-file" -msgstr "" +#. type: item +#: guix-git/doc/guix.texi:25826 +#, fuzzy, no-wrap +#| msgid "@code{dbus?} (default: @code{#t})" +msgid "@code{db-secret-file} (default: @code{\\\"\\\"}) (type: string)" +msgstr "@code{dbus?} (padrão: @code{#t})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25485 -msgid "Secret file containing the credentials for the Zabbix front-end. The value must be a local file name, not a G-expression. You are expected to create this file manually. Its contents will be copied into @file{zabbix.conf.php} as the value of @code{$DB['PASSWORD']}." +#. type: table +#: guix-git/doc/guix.texi:25830 +msgid "Secret file which will be appended to @file{zabbix.conf.php} file. This file contains credentials for use by Zabbix front-end. You are expected to create it manually." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25490 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string zabbix-host" -msgstr "" +#. type: item +#: guix-git/doc/guix.texi:25831 +#, fuzzy, no-wrap +#| msgid "@code{replacement} (default: @code{#f})" +msgid "@code{zabbix-host} (default: @code{\\\"localhost\\\"}) (type: string)" +msgstr "@code{replacement} (default: @code{#f})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25492 +#. type: table +#: guix-git/doc/guix.texi:25833 msgid "Zabbix server hostname." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25497 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} number zabbix-port" -msgstr "" +#. type: item +#: guix-git/doc/guix.texi:25834 +#, fuzzy, no-wrap +#| msgid "@code{debug?} (default: @code{#f})" +msgid "@code{zabbix-port} (default: @code{10051}) (type: number)" +msgstr "@code{debug?} (default: @code{#f})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25499 +#. type: table +#: guix-git/doc/guix.texi:25836 msgid "Zabbix server port." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25501 -msgid "Defaults to @samp{10051}." -msgstr "" - #. type: cindex -#: guix-git/doc/guix.texi:25509 +#: guix-git/doc/guix.texi:25846 #, no-wrap msgid "Kerberos" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25513 +#: guix-git/doc/guix.texi:25850 msgid "The @code{(gnu services kerberos)} module provides services relating to the authentication protocol @dfn{Kerberos}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25514 +#: guix-git/doc/guix.texi:25851 #, no-wrap msgid "Krb5 Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25521 +#: guix-git/doc/guix.texi:25858 msgid "Programs using a Kerberos client library normally expect a configuration file in @file{/etc/krb5.conf}. This service generates such a file from a definition provided in the operating system declaration. It does not cause any daemon to be started." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25525 +#: guix-git/doc/guix.texi:25862 msgid "No ``keytab'' files are provided by this service---you must explicitly create them. This service is known to work with the MIT client library, @code{mit-krb5}. Other implementations have not been tested." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25526 +#: guix-git/doc/guix.texi:25863 #, no-wrap msgid "{Scheme Variable} krb5-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25528 +#: guix-git/doc/guix.texi:25865 msgid "A service type for Kerberos 5 clients." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25532 +#: guix-git/doc/guix.texi:25869 msgid "Here is an example of its use:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25546 +#: guix-git/doc/guix.texi:25883 #, no-wrap msgid "" "(service krb5-service-type\n" @@ -45751,206 +46405,206 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25550 +#: guix-git/doc/guix.texi:25887 msgid "This example provides a Kerberos@tie{}5 client configuration which:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25551 +#: guix-git/doc/guix.texi:25888 #, no-wrap msgid "Recognizes two realms, @i{viz:} ``EXAMPLE.COM'' and ``ARGRX.EDU'', both" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25553 +#: guix-git/doc/guix.texi:25890 msgid "of which have distinct administration servers and key distribution centers;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25553 +#: guix-git/doc/guix.texi:25890 #, no-wrap msgid "Will default to the realm ``EXAMPLE.COM'' if the realm is not explicitly" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25555 +#: guix-git/doc/guix.texi:25892 msgid "specified by clients;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25555 +#: guix-git/doc/guix.texi:25892 #, no-wrap msgid "Accepts services which only support encryption types known to be weak." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25563 +#: guix-git/doc/guix.texi:25900 msgid "The @code{krb5-realm} and @code{krb5-configuration} types have many fields. Only the most commonly used ones are described here. For a full list, and more detailed explanation of each, see the MIT @uref{https://web.mit.edu/kerberos/krb5-devel/doc/admin/conf_files/krb5_conf.html,,krb5.conf} documentation." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25565 +#: guix-git/doc/guix.texi:25902 #, no-wrap msgid "{Data Type} krb5-realm" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25566 +#: guix-git/doc/guix.texi:25903 #, no-wrap msgid "realm, kerberos" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25572 +#: guix-git/doc/guix.texi:25909 msgid "This field is a string identifying the name of the realm. A common convention is to use the fully qualified DNS name of your organization, converted to upper case." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25573 +#: guix-git/doc/guix.texi:25910 #, no-wrap msgid "admin-server" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25576 +#: guix-git/doc/guix.texi:25913 msgid "This field is a string identifying the host where the administration server is running." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25577 +#: guix-git/doc/guix.texi:25914 #, no-wrap msgid "kdc" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25580 +#: guix-git/doc/guix.texi:25917 msgid "This field is a string identifying the key distribution center for the realm." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25583 +#: guix-git/doc/guix.texi:25920 #, no-wrap msgid "{Data Type} krb5-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25586 +#: guix-git/doc/guix.texi:25923 #, no-wrap msgid "@code{allow-weak-crypto?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25589 +#: guix-git/doc/guix.texi:25926 msgid "If this flag is @code{#t} then services which only offer encryption algorithms known to be weak will be accepted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25590 +#: guix-git/doc/guix.texi:25927 #, no-wrap msgid "@code{default-realm} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25597 +#: guix-git/doc/guix.texi:25934 msgid "This field should be a string identifying the default Kerberos realm for the client. You should set this field to the name of your Kerberos realm. If this value is @code{#f} then a realm must be specified with every Kerberos principal when invoking programs such as @command{kinit}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25598 +#: guix-git/doc/guix.texi:25935 #, no-wrap msgid "realms" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25603 +#: guix-git/doc/guix.texi:25940 msgid "This should be a non-empty list of @code{krb5-realm} objects, which clients may access. Normally, one of them will have a @code{name} field matching the @code{default-realm} field." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25607 +#: guix-git/doc/guix.texi:25944 #, no-wrap msgid "PAM krb5 Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25608 +#: guix-git/doc/guix.texi:25945 #, no-wrap msgid "pam-krb5" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25614 +#: guix-git/doc/guix.texi:25951 msgid "The @code{pam-krb5} service allows for login authentication and password management via Kerberos. You will need this service if you want PAM enabled applications to authenticate users using Kerberos." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25615 +#: guix-git/doc/guix.texi:25952 #, no-wrap msgid "{Scheme Variable} pam-krb5-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25617 +#: guix-git/doc/guix.texi:25954 msgid "A service type for the Kerberos 5 PAM module." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25619 +#: guix-git/doc/guix.texi:25956 #, no-wrap msgid "{Data Type} pam-krb5-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25622 +#: guix-git/doc/guix.texi:25959 msgid "Data type representing the configuration of the Kerberos 5 PAM module. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25623 +#: guix-git/doc/guix.texi:25960 #, no-wrap msgid "@code{pam-krb5} (default: @code{pam-krb5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25625 +#: guix-git/doc/guix.texi:25962 msgid "The pam-krb5 package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25626 +#: guix-git/doc/guix.texi:25963 #, no-wrap msgid "@code{minimum-uid} (default: @code{1000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25629 +#: guix-git/doc/guix.texi:25966 msgid "The smallest user ID for which Kerberos authentications should be attempted. Local accounts with lower values will silently fail to authenticate." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25635 +#: guix-git/doc/guix.texi:25972 #, no-wrap msgid "LDAP" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25636 +#: guix-git/doc/guix.texi:25973 #, no-wrap msgid "nslcd, LDAP service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25643 +#: guix-git/doc/guix.texi:25980 msgid "The @code{(gnu services authentication)} module provides the @code{nslcd-service-type}, which can be used to authenticate against an LDAP server. In addition to configuring the service itself, you may want to add @code{ldap} as a name service to the Name Service Switch. @xref{Name Service Switch} for detailed information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25647 +#: guix-git/doc/guix.texi:25984 msgid "Here is a simple operating system declaration with a default configuration of the @code{nslcd-service-type} and a Name Service Switch configuration that consults the @code{ldap} name service last:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25670 +#: guix-git/doc/guix.texi:26007 #, no-wrap msgid "" "(use-service-modules authentication)\n" @@ -45977,643 +46631,643 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25675 +#: guix-git/doc/guix.texi:26012 msgid "Available @code{nslcd-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25676 +#: guix-git/doc/guix.texi:26013 #, no-wrap msgid "{@code{nslcd-configuration} parameter} package nss-pam-ldapd" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25678 +#: guix-git/doc/guix.texi:26015 msgid "The @code{nss-pam-ldapd} package to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25681 +#: guix-git/doc/guix.texi:26018 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number threads" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25685 +#: guix-git/doc/guix.texi:26022 msgid "The number of threads to start that can handle requests and perform LDAP queries. Each thread opens a separate connection to the LDAP server. The default is to start 5 threads." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25690 +#: guix-git/doc/guix.texi:26027 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25692 +#: guix-git/doc/guix.texi:26029 msgid "This specifies the user id with which the daemon should be run." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25694 guix-git/doc/guix.texi:25701 +#: guix-git/doc/guix.texi:26031 guix-git/doc/guix.texi:26038 msgid "Defaults to @samp{\"nslcd\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25697 +#: guix-git/doc/guix.texi:26034 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25699 +#: guix-git/doc/guix.texi:26036 msgid "This specifies the group id with which the daemon should be run." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25704 +#: guix-git/doc/guix.texi:26041 #, no-wrap msgid "{@code{nslcd-configuration} parameter} log-option log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25712 +#: guix-git/doc/guix.texi:26049 msgid "This option controls the way logging is done via a list containing SCHEME and LEVEL@. The SCHEME argument may either be the symbols @samp{none} or @samp{syslog}, or an absolute file name. The LEVEL argument is optional and specifies the log level. The log level may be one of the following symbols: @samp{crit}, @samp{error}, @samp{warning}, @samp{notice}, @samp{info} or @samp{debug}. All messages with the specified log level or higher are logged." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25714 +#: guix-git/doc/guix.texi:26051 msgid "Defaults to @samp{(\"/var/log/nslcd\" info)}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25717 +#: guix-git/doc/guix.texi:26054 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list uri" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25720 +#: guix-git/doc/guix.texi:26057 msgid "The list of LDAP server URIs. Normally, only the first server will be used with the following servers as fall-back." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25722 +#: guix-git/doc/guix.texi:26059 msgid "Defaults to @samp{(\"ldap://localhost:389/\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25725 +#: guix-git/doc/guix.texi:26062 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string ldap-version" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25728 +#: guix-git/doc/guix.texi:26065 msgid "The version of the LDAP protocol to use. The default is to use the maximum version supported by the LDAP library." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25733 +#: guix-git/doc/guix.texi:26070 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string binddn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25736 +#: guix-git/doc/guix.texi:26073 msgid "Specifies the distinguished name with which to bind to the directory server for lookups. The default is to bind anonymously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25741 +#: guix-git/doc/guix.texi:26078 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string bindpw" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25744 +#: guix-git/doc/guix.texi:26081 msgid "Specifies the credentials with which to bind. This option is only applicable when used with binddn." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25749 +#: guix-git/doc/guix.texi:26086 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string rootpwmoddn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25752 +#: guix-git/doc/guix.texi:26089 msgid "Specifies the distinguished name to use when the root user tries to modify a user's password using the PAM module." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25757 +#: guix-git/doc/guix.texi:26094 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string rootpwmodpw" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25761 +#: guix-git/doc/guix.texi:26098 msgid "Specifies the credentials with which to bind if the root user tries to change a user's password. This option is only applicable when used with rootpwmoddn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25766 +#: guix-git/doc/guix.texi:26103 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-mech" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25769 +#: guix-git/doc/guix.texi:26106 msgid "Specifies the SASL mechanism to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25774 +#: guix-git/doc/guix.texi:26111 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-realm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25776 +#: guix-git/doc/guix.texi:26113 msgid "Specifies the SASL realm to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25781 +#: guix-git/doc/guix.texi:26118 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-authcid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25784 +#: guix-git/doc/guix.texi:26121 msgid "Specifies the authentication identity to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25789 +#: guix-git/doc/guix.texi:26126 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-authzid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25792 +#: guix-git/doc/guix.texi:26129 msgid "Specifies the authorization identity to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25797 +#: guix-git/doc/guix.texi:26134 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean sasl-canonicalize?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25802 +#: guix-git/doc/guix.texi:26139 msgid "Determines whether the LDAP server host name should be canonicalised. If this is enabled the LDAP library will do a reverse host name lookup. By default, it is left up to the LDAP library whether this check is performed or not." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25807 +#: guix-git/doc/guix.texi:26144 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string krb5-ccname" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25809 +#: guix-git/doc/guix.texi:26146 msgid "Set the name for the GSS-API Kerberos credentials cache." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25814 +#: guix-git/doc/guix.texi:26151 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string base" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25816 +#: guix-git/doc/guix.texi:26153 msgid "The directory search base." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25818 +#: guix-git/doc/guix.texi:26155 msgid "Defaults to @samp{\"dc=example,dc=com\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25821 +#: guix-git/doc/guix.texi:26158 #, no-wrap msgid "{@code{nslcd-configuration} parameter} scope-option scope" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25825 +#: guix-git/doc/guix.texi:26162 msgid "Specifies the search scope (subtree, onelevel, base or children). The default scope is subtree; base scope is almost never useful for name service lookups; children scope is not supported on all servers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25827 +#: guix-git/doc/guix.texi:26164 msgid "Defaults to @samp{(subtree)}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25830 +#: guix-git/doc/guix.texi:26167 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-deref-option deref" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25833 +#: guix-git/doc/guix.texi:26170 msgid "Specifies the policy for dereferencing aliases. The default policy is to never dereference aliases." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25838 +#: guix-git/doc/guix.texi:26175 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean referrals" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25841 +#: guix-git/doc/guix.texi:26178 msgid "Specifies whether automatic referral chasing should be enabled. The default behaviour is to chase referrals." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25846 +#: guix-git/doc/guix.texi:26183 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list-of-map-entries maps" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25851 +#: guix-git/doc/guix.texi:26188 msgid "This option allows for custom attributes to be looked up instead of the default RFC 2307 attributes. It is a list of maps, each consisting of the name of a map, the RFC 2307 attribute to match and the query expression for the attribute as it is available in the directory." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25856 +#: guix-git/doc/guix.texi:26193 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list-of-filter-entries filters" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25859 +#: guix-git/doc/guix.texi:26196 msgid "A list of filters consisting of the name of a map to which the filter applies and an LDAP search filter expression." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25864 +#: guix-git/doc/guix.texi:26201 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number bind-timelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25867 +#: guix-git/doc/guix.texi:26204 msgid "Specifies the time limit in seconds to use when connecting to the directory server. The default value is 10 seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25872 +#: guix-git/doc/guix.texi:26209 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number timelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25876 +#: guix-git/doc/guix.texi:26213 msgid "Specifies the time limit (in seconds) to wait for a response from the LDAP server. A value of zero, which is the default, is to wait indefinitely for searches to be completed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25881 +#: guix-git/doc/guix.texi:26218 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number idle-timelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25885 +#: guix-git/doc/guix.texi:26222 msgid "Specifies the period if inactivity (in seconds) after which the con‐ nection to the LDAP server will be closed. The default is not to time out connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25890 +#: guix-git/doc/guix.texi:26227 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number reconnect-sleeptime" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25894 +#: guix-git/doc/guix.texi:26231 msgid "Specifies the number of seconds to sleep when connecting to all LDAP servers fails. By default one second is waited between the first failure and the first retry." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25899 +#: guix-git/doc/guix.texi:26236 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number reconnect-retrytime" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25903 +#: guix-git/doc/guix.texi:26240 msgid "Specifies the time after which the LDAP server is considered to be permanently unavailable. Once this time is reached retries will be done only once per this time period. The default value is 10 seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25908 +#: guix-git/doc/guix.texi:26245 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-ssl-option ssl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25912 +#: guix-git/doc/guix.texi:26249 msgid "Specifies whether to use SSL/TLS or not (the default is not to). If 'start-tls is specified then StartTLS is used rather than raw LDAP over SSL." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25917 +#: guix-git/doc/guix.texi:26254 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-tls-reqcert-option tls-reqcert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25920 +#: guix-git/doc/guix.texi:26257 msgid "Specifies what checks to perform on a server-supplied certificate. The meaning of the values is described in the ldap.conf(5) manual page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25925 +#: guix-git/doc/guix.texi:26262 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cacertdir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25928 +#: guix-git/doc/guix.texi:26265 msgid "Specifies the directory containing X.509 certificates for peer authen‐ tication. This parameter is ignored when using GnuTLS." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25933 +#: guix-git/doc/guix.texi:26270 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cacertfile" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25935 +#: guix-git/doc/guix.texi:26272 msgid "Specifies the path to the X.509 certificate for peer authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25940 +#: guix-git/doc/guix.texi:26277 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-randfile" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25943 +#: guix-git/doc/guix.texi:26280 msgid "Specifies the path to an entropy source. This parameter is ignored when using GnuTLS." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25948 +#: guix-git/doc/guix.texi:26285 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-ciphers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25950 +#: guix-git/doc/guix.texi:26287 msgid "Specifies the ciphers to use for TLS as a string." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25955 +#: guix-git/doc/guix.texi:26292 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25958 +#: guix-git/doc/guix.texi:26295 msgid "Specifies the path to the file containing the local certificate for client TLS authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25963 +#: guix-git/doc/guix.texi:26300 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-key" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25966 +#: guix-git/doc/guix.texi:26303 msgid "Specifies the path to the file containing the private key for client TLS authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25971 +#: guix-git/doc/guix.texi:26308 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number pagesize" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25975 +#: guix-git/doc/guix.texi:26312 msgid "Set this to a number greater than 0 to request paged results from the LDAP server in accordance with RFC2696. The default (0) is to not request paged results." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25980 +#: guix-git/doc/guix.texi:26317 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-ignore-users-option nss-initgroups-ignoreusers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25984 +#: guix-git/doc/guix.texi:26321 msgid "This option prevents group membership lookups through LDAP for the specified users. Alternatively, the value 'all-local may be used. With that value nslcd builds a full list of non-LDAP users on startup." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25989 +#: guix-git/doc/guix.texi:26326 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-min-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25992 +#: guix-git/doc/guix.texi:26329 msgid "This option ensures that LDAP users with a numeric user id lower than the specified value are ignored." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25997 +#: guix-git/doc/guix.texi:26334 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-uid-offset" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26000 +#: guix-git/doc/guix.texi:26337 msgid "This option specifies an offset that is added to all LDAP numeric user ids. This can be used to avoid user id collisions with local users." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26005 +#: guix-git/doc/guix.texi:26342 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-gid-offset" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26008 +#: guix-git/doc/guix.texi:26345 msgid "This option specifies an offset that is added to all LDAP numeric group ids. This can be used to avoid user id collisions with local groups." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26013 +#: guix-git/doc/guix.texi:26350 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-nested-groups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26019 +#: guix-git/doc/guix.texi:26356 msgid "If this option is set, the member attribute of a group may point to another group. Members of nested groups are also returned in the higher level group and parent groups are returned when finding groups for a specific user. The default is not to perform extra searches for nested groups." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26024 +#: guix-git/doc/guix.texi:26361 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-getgrent-skipmembers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26029 +#: guix-git/doc/guix.texi:26366 msgid "If this option is set, the group member list is not retrieved when looking up groups. Lookups for finding which groups a user belongs to will remain functional so the user will likely still get the correct groups assigned on login." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26034 +#: guix-git/doc/guix.texi:26371 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-disable-enumeration" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26040 +#: guix-git/doc/guix.texi:26377 msgid "If this option is set, functions which cause all user/group entries to be loaded from the directory will not succeed in doing so. This can dramatically reduce LDAP server load in situations where there are a great number of users and/or groups. This option is not recommended for most configurations." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26045 +#: guix-git/doc/guix.texi:26382 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string validnames" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26049 +#: guix-git/doc/guix.texi:26386 msgid "This option can be used to specify how user and group names are verified within the system. This pattern is used to check all user and group names that are requested and returned from LDAP." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26054 +#: guix-git/doc/guix.texi:26391 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean ignorecase" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26059 +#: guix-git/doc/guix.texi:26396 msgid "This specifies whether or not to perform searches using case-insensitive matching. Enabling this could open up the system to authorization bypass vulnerabilities and introduce nscd cache poisoning vulnerabilities which allow denial of service." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26064 +#: guix-git/doc/guix.texi:26401 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean pam-authc-ppolicy" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26067 +#: guix-git/doc/guix.texi:26404 msgid "This option specifies whether password policy controls are requested and handled from the LDAP server when performing user authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26072 +#: guix-git/doc/guix.texi:26409 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-authc-search" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26078 +#: guix-git/doc/guix.texi:26415 msgid "By default nslcd performs an LDAP search with the user's credentials after BIND (authentication) to ensure that the BIND operation was successful. The default search is a simple check to see if the user's DN exists. A search filter can be specified that will be used instead. It should return at least one entry." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26083 +#: guix-git/doc/guix.texi:26420 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-authz-search" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26087 +#: guix-git/doc/guix.texi:26424 msgid "This option allows flexible fine tuning of the authorisation check that should be performed. The search filter specified is executed and if any entries match, access is granted, otherwise access is denied." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26092 +#: guix-git/doc/guix.texi:26429 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-password-prohibit-message" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26097 +#: guix-git/doc/guix.texi:26434 msgid "If this option is set password modification using pam_ldap will be denied and the specified message will be presented to the user instead. The message can be used to direct the user to an alternative means of changing their password." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26102 +#: guix-git/doc/guix.texi:26439 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list pam-services" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26104 +#: guix-git/doc/guix.texi:26441 msgid "List of pam service names for which LDAP authentication should suffice." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26115 +#: guix-git/doc/guix.texi:26452 #, no-wrap msgid "web" msgstr "web" #. type: cindex -#: guix-git/doc/guix.texi:26116 +#: guix-git/doc/guix.texi:26453 #, no-wrap msgid "www" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26117 +#: guix-git/doc/guix.texi:26454 #, no-wrap msgid "HTTP" msgstr "HTTP" #. type: Plain text -#: guix-git/doc/guix.texi:26120 +#: guix-git/doc/guix.texi:26457 msgid "The @code{(gnu services web)} module provides the Apache HTTP Server, the nginx web server, and also a fastcgi wrapper daemon." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26121 +#: guix-git/doc/guix.texi:26458 #, no-wrap msgid "Apache HTTP Server" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26123 +#: guix-git/doc/guix.texi:26460 #, no-wrap msgid "{Scheme Variable} httpd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26127 +#: guix-git/doc/guix.texi:26464 msgid "Service type for the @uref{https://httpd.apache.org/,Apache HTTP} server (@dfn{httpd}). The value for this service type is a @code{httpd-configuration} record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26129 guix-git/doc/guix.texi:26311 +#: guix-git/doc/guix.texi:26466 guix-git/doc/guix.texi:26648 msgid "A simple example configuration is given below." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26137 +#: guix-git/doc/guix.texi:26474 #, no-wrap msgid "" "(service httpd-service-type\n" @@ -46625,12 +47279,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26141 +#: guix-git/doc/guix.texi:26478 msgid "Other services can also extend the @code{httpd-service-type} to add to the configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26150 guix-git/doc/guix.texi:26290 +#: guix-git/doc/guix.texi:26487 guix-git/doc/guix.texi:26627 #, no-wrap msgid "" "(simple-service 'www.example.com-server httpd-service-type\n" @@ -46643,115 +47297,115 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26156 +#: guix-git/doc/guix.texi:26493 msgid "The details for the @code{httpd-configuration}, @code{httpd-module}, @code{httpd-config-file} and @code{httpd-virtualhost} record types are given below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26157 +#: guix-git/doc/guix.texi:26494 #, no-wrap msgid "{Data Type} httpd-configuration" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26159 +#: guix-git/doc/guix.texi:26496 msgid "This data type represents the configuration for the httpd service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26161 +#: guix-git/doc/guix.texi:26498 #, no-wrap msgid "@code{package} (default: @code{httpd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26163 +#: guix-git/doc/guix.texi:26500 msgid "The httpd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26164 guix-git/doc/guix.texi:26253 +#: guix-git/doc/guix.texi:26501 guix-git/doc/guix.texi:26590 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/httpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26166 +#: guix-git/doc/guix.texi:26503 msgid "The pid file used by the shepherd-service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26167 +#: guix-git/doc/guix.texi:26504 #, no-wrap msgid "@code{config} (default: @code{(httpd-config-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26172 +#: guix-git/doc/guix.texi:26509 msgid "The configuration file to use with the httpd service. The default value is a @code{httpd-config-file} record, but this can also be a different G-expression that generates a file, for example a @code{plain-file}. A file outside of the store can also be specified through a string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26176 +#: guix-git/doc/guix.texi:26513 #, no-wrap msgid "{Data Type} httpd-module" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26178 +#: guix-git/doc/guix.texi:26515 msgid "This data type represents a module for the httpd service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26182 +#: guix-git/doc/guix.texi:26519 msgid "The name of the module." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26188 +#: guix-git/doc/guix.texi:26525 msgid "The file for the module. This can be relative to the httpd package being used, the absolute location of a file, or a G-expression for a file within the store, for example @code{(file-append mod-wsgi \"/modules/mod_wsgi.so\")}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26192 +#: guix-git/doc/guix.texi:26529 #, no-wrap msgid "{Scheme Variable} %default-httpd-modules" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26194 +#: guix-git/doc/guix.texi:26531 msgid "A default list of @code{httpd-module} objects." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26196 +#: guix-git/doc/guix.texi:26533 #, no-wrap msgid "{Data Type} httpd-config-file" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26198 +#: guix-git/doc/guix.texi:26535 msgid "This data type represents a configuration file for the httpd service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26200 +#: guix-git/doc/guix.texi:26537 #, no-wrap msgid "@code{modules} (default: @code{%default-httpd-modules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26203 +#: guix-git/doc/guix.texi:26540 msgid "The modules to load. Additional modules can be added here, or loaded by additional configuration." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26206 +#: guix-git/doc/guix.texi:26543 msgid "For example, in order to handle requests for PHP files, you can use Apache’s @code{mod_proxy_fcgi} module along with @code{php-fpm-service-type}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26228 +#: guix-git/doc/guix.texi:26565 #, no-wrap msgid "" "(service httpd-service-type\n" @@ -46777,165 +47431,165 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26230 +#: guix-git/doc/guix.texi:26567 #, no-wrap msgid "@code{server-root} (default: @code{httpd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26234 +#: guix-git/doc/guix.texi:26571 msgid "The @code{ServerRoot} in the configuration file, defaults to the httpd package. Directives including @code{Include} and @code{LoadModule} are taken as relative to the server root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26235 +#: guix-git/doc/guix.texi:26572 #, no-wrap msgid "@code{server-name} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26239 +#: guix-git/doc/guix.texi:26576 msgid "The @code{ServerName} in the configuration file, used to specify the request scheme, hostname and port that the server uses to identify itself." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26243 +#: guix-git/doc/guix.texi:26580 msgid "This doesn't need to be set in the server config, and can be specified in virtual hosts. The default is @code{#f} to not specify a @code{ServerName}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26244 +#: guix-git/doc/guix.texi:26581 #, no-wrap msgid "@code{document-root} (default: @code{\"/srv/http\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26246 +#: guix-git/doc/guix.texi:26583 msgid "The @code{DocumentRoot} from which files will be served." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26247 +#: guix-git/doc/guix.texi:26584 #, no-wrap msgid "@code{listen} (default: @code{'(\"80\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26252 +#: guix-git/doc/guix.texi:26589 msgid "The list of values for the @code{Listen} directives in the config file. The value should be a list of strings, when each string can specify the port number to listen on, and optionally the IP address and protocol to use." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26257 +#: guix-git/doc/guix.texi:26594 msgid "The @code{PidFile} to use. This should match the @code{pid-file} set in the @code{httpd-configuration} so that the Shepherd service is configured correctly." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26258 +#: guix-git/doc/guix.texi:26595 #, no-wrap msgid "@code{error-log} (default: @code{\"/var/log/httpd/error_log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26260 +#: guix-git/doc/guix.texi:26597 msgid "The @code{ErrorLog} to which the server will log errors." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26261 guix-git/doc/guix.texi:26823 +#: guix-git/doc/guix.texi:26598 guix-git/doc/guix.texi:27160 #, no-wrap msgid "@code{user} (default: @code{\"httpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26263 +#: guix-git/doc/guix.texi:26600 msgid "The @code{User} which the server will answer requests as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26264 +#: guix-git/doc/guix.texi:26601 #, no-wrap msgid "@code{group} (default: @code{\"httpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26266 +#: guix-git/doc/guix.texi:26603 msgid "The @code{Group} which the server will answer requests as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26267 +#: guix-git/doc/guix.texi:26604 #, no-wrap msgid "@code{extra-config} (default: @code{(list \"TypesConfig etc/httpd/mime.types\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26270 +#: guix-git/doc/guix.texi:26607 msgid "A flat list of strings and G-expressions which will be added to the end of the configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26273 +#: guix-git/doc/guix.texi:26610 msgid "Any values which the service is extended with will be appended to this list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26277 +#: guix-git/doc/guix.texi:26614 #, no-wrap msgid "{Data Type} httpd-virtualhost" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26279 +#: guix-git/doc/guix.texi:26616 msgid "This data type represents a virtualhost configuration block for the httpd service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26281 +#: guix-git/doc/guix.texi:26618 msgid "These should be added to the extra-config for the httpd-service." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26293 +#: guix-git/doc/guix.texi:26630 #, no-wrap msgid "addresses-and-ports" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26295 +#: guix-git/doc/guix.texi:26632 msgid "The addresses and ports for the @code{VirtualHost} directive." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26296 +#: guix-git/doc/guix.texi:26633 #, no-wrap msgid "contents" msgstr "conteúdo" #. type: table -#: guix-git/doc/guix.texi:26299 +#: guix-git/doc/guix.texi:26636 msgid "The contents of the @code{VirtualHost} directive, this should be a list of strings and G-expressions." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26304 +#: guix-git/doc/guix.texi:26641 #, no-wrap msgid "NGINX" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26306 +#: guix-git/doc/guix.texi:26643 #, no-wrap msgid "{Scheme Variable} nginx-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26309 +#: guix-git/doc/guix.texi:26646 msgid "Service type for the @uref{https://nginx.org/,NGinx} web server. The value for this service type is a @code{} record." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26319 guix-git/doc/guix.texi:26373 +#: guix-git/doc/guix.texi:26656 guix-git/doc/guix.texi:26710 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -46947,12 +47601,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26324 +#: guix-git/doc/guix.texi:26661 msgid "In addition to adding server blocks to the service configuration directly, this service can be extended by other services to add server blocks, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26330 +#: guix-git/doc/guix.texi:26667 #, no-wrap msgid "" "(simple-service 'my-extra-server nginx-service-type\n" @@ -46962,88 +47616,88 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26341 +#: guix-git/doc/guix.texi:26678 msgid "At startup, @command{nginx} has not yet read its configuration file, so it uses a default file to log error messages. If it fails to load its configuration file, that is where error messages are logged. After the configuration file is loaded, the default error log file changes as per configuration. In our case, startup error messages can be found in @file{/var/run/nginx/logs/error.log}, and after configuration in @file{/var/log/nginx/error.log}. The second location can be changed with the @var{log-directory} configuration option." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26342 +#: guix-git/doc/guix.texi:26679 #, no-wrap msgid "{Data Type} nginx-configuration" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26346 +#: guix-git/doc/guix.texi:26683 msgid "This data type represents the configuration for NGinx. Some configuration can be done through this and the other provided record types, or alternatively, a config file can be provided." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26348 +#: guix-git/doc/guix.texi:26685 #, no-wrap msgid "@code{nginx} (default: @code{nginx})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26350 +#: guix-git/doc/guix.texi:26687 msgid "The nginx package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26351 +#: guix-git/doc/guix.texi:26688 #, no-wrap msgid "@code{log-directory} (default: @code{\"/var/log/nginx\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26353 +#: guix-git/doc/guix.texi:26690 msgid "The directory to which NGinx will write log files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26354 +#: guix-git/doc/guix.texi:26691 #, no-wrap msgid "@code{run-directory} (default: @code{\"/var/run/nginx\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26357 +#: guix-git/doc/guix.texi:26694 msgid "The directory in which NGinx will create a pid file, and write temporary files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26358 +#: guix-git/doc/guix.texi:26695 #, no-wrap msgid "@code{server-blocks} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26362 +#: guix-git/doc/guix.texi:26699 msgid "A list of @dfn{server blocks} to create in the generated configuration file, the elements should be of type @code{}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26366 +#: guix-git/doc/guix.texi:26703 msgid "The following example would setup NGinx to serve @code{www.example.com} from the @code{/srv/http/www.example.com} directory, without using HTTPS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26375 +#: guix-git/doc/guix.texi:26712 #, no-wrap msgid "@code{upstream-blocks} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26379 +#: guix-git/doc/guix.texi:26716 msgid "A list of @dfn{upstream blocks} to create in the generated configuration file, the elements should be of type @code{}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26386 +#: guix-git/doc/guix.texi:26723 msgid "Configuring upstreams through the @code{upstream-blocks} can be useful when combined with @code{locations} in the @code{} records. The following example creates a server configuration with one location configuration, that will proxy requests to a upstream configuration, which will handle requests with two servers." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26405 +#: guix-git/doc/guix.texi:26742 #, no-wrap msgid "" "(service\n" @@ -47066,44 +47720,44 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26413 +#: guix-git/doc/guix.texi:26750 msgid "If a configuration @var{file} is provided, this will be used, rather than generating a configuration file from the provided @code{log-directory}, @code{run-directory}, @code{server-blocks} and @code{upstream-blocks}. For proper operation, these arguments should match what is in @var{file} to ensure that the directories are created when the service is activated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26417 +#: guix-git/doc/guix.texi:26754 msgid "This can be useful if you have an existing configuration file, or it's not possible to do what is required through the other parts of the nginx-configuration record." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26418 +#: guix-git/doc/guix.texi:26755 #, no-wrap msgid "@code{server-names-hash-bucket-size} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26421 +#: guix-git/doc/guix.texi:26758 msgid "Bucket size for the server names hash tables, defaults to @code{#f} to use the size of the processors cache line." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26422 +#: guix-git/doc/guix.texi:26759 #, no-wrap msgid "@code{server-names-hash-bucket-max-size} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26424 +#: guix-git/doc/guix.texi:26761 msgid "Maximum bucket size for the server names hash tables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26428 +#: guix-git/doc/guix.texi:26765 msgid "List of nginx dynamic modules to load. This should be a list of file names of loadable modules, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26436 +#: guix-git/doc/guix.texi:26773 #, no-wrap msgid "" "(modules\n" @@ -47115,18 +47769,18 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26438 +#: guix-git/doc/guix.texi:26775 #, no-wrap msgid "@code{lua-package-path} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26441 +#: guix-git/doc/guix.texi:26778 msgid "List of nginx lua packages to load. This should be a list of package names of loadable lua modules, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26448 +#: guix-git/doc/guix.texi:26785 #, no-wrap msgid "" "(lua-package-path (list lua-resty-core\n" @@ -47137,35 +47791,35 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26450 +#: guix-git/doc/guix.texi:26787 #, no-wrap msgid "@code{lua-package-cpath} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26453 +#: guix-git/doc/guix.texi:26790 msgid "List of nginx lua C packages to load. This should be a list of package names of loadable lua C modules, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26456 +#: guix-git/doc/guix.texi:26793 #, no-wrap msgid "(lua-package-cpath (list lua-resty-signal))\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26458 +#: guix-git/doc/guix.texi:26795 #, no-wrap msgid "@code{global-directives} (default: @code{'((events . ()))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26461 +#: guix-git/doc/guix.texi:26798 msgid "Association list of global directives for the top level of the nginx configuration. Values may themselves be association lists." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26467 +#: guix-git/doc/guix.texi:26804 #, no-wrap msgid "" "(global-directives\n" @@ -47175,312 +47829,312 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26472 +#: guix-git/doc/guix.texi:26809 msgid "Extra content for the @code{http} block. Should be string or a string valued G-expression." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26476 +#: guix-git/doc/guix.texi:26813 #, no-wrap msgid "{Data Type} nginx-server-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26479 +#: guix-git/doc/guix.texi:26816 msgid "Data type representing the configuration of an nginx server block. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26481 +#: guix-git/doc/guix.texi:26818 #, no-wrap msgid "@code{listen} (default: @code{'(\"80\" \"443 ssl\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26486 +#: guix-git/doc/guix.texi:26823 msgid "Each @code{listen} directive sets the address and port for IP, or the path for a UNIX-domain socket on which the server will accept requests. Both address and port, or only address or only port can be specified. An address may also be a hostname, for example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26489 +#: guix-git/doc/guix.texi:26826 #, no-wrap msgid "'(\"127.0.0.1:8000\" \"127.0.0.1\" \"8000\" \"*:8000\" \"localhost:8000\")\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26491 +#: guix-git/doc/guix.texi:26828 #, no-wrap msgid "@code{server-name} (default: @code{(list 'default)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26494 +#: guix-git/doc/guix.texi:26831 msgid "A list of server names this server represents. @code{'default} represents the default server for connections matching no other server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26495 +#: guix-git/doc/guix.texi:26832 #, no-wrap msgid "@code{root} (default: @code{\"/srv/http\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26497 +#: guix-git/doc/guix.texi:26834 msgid "Root of the website nginx will serve." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26498 +#: guix-git/doc/guix.texi:26835 #, no-wrap msgid "@code{locations} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26502 +#: guix-git/doc/guix.texi:26839 msgid "A list of @dfn{nginx-location-configuration} or @dfn{nginx-named-location-configuration} records to use within this server block." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26503 +#: guix-git/doc/guix.texi:26840 #, no-wrap msgid "@code{index} (default: @code{(list \"index.html\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26506 +#: guix-git/doc/guix.texi:26843 msgid "Index files to look for when clients ask for a directory. If it cannot be found, Nginx will send the list of files in the directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26507 +#: guix-git/doc/guix.texi:26844 #, no-wrap msgid "@code{try-files} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26510 +#: guix-git/doc/guix.texi:26847 msgid "A list of files whose existence is checked in the specified order. @code{nginx} will use the first file it finds to process the request." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26511 +#: guix-git/doc/guix.texi:26848 #, no-wrap msgid "@code{ssl-certificate} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26514 +#: guix-git/doc/guix.texi:26851 msgid "Where to find the certificate for secure connections. Set it to @code{#f} if you don't have a certificate or you don't want to use HTTPS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26515 +#: guix-git/doc/guix.texi:26852 #, no-wrap msgid "@code{ssl-certificate-key} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26518 +#: guix-git/doc/guix.texi:26855 msgid "Where to find the private key for secure connections. Set it to @code{#f} if you don't have a key or you don't want to use HTTPS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26519 +#: guix-git/doc/guix.texi:26856 #, no-wrap msgid "@code{server-tokens?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26521 +#: guix-git/doc/guix.texi:26858 msgid "Whether the server should add its configuration to response." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26522 +#: guix-git/doc/guix.texi:26859 #, no-wrap msgid "@code{raw-content} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26524 +#: guix-git/doc/guix.texi:26861 msgid "A list of raw lines added to the server block." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26528 +#: guix-git/doc/guix.texi:26865 #, no-wrap msgid "{Data Type} nginx-upstream-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26531 +#: guix-git/doc/guix.texi:26868 msgid "Data type representing the configuration of an nginx @code{upstream} block. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26535 +#: guix-git/doc/guix.texi:26872 msgid "Name for this group of servers." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26536 +#: guix-git/doc/guix.texi:26873 #, no-wrap msgid "servers" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26543 +#: guix-git/doc/guix.texi:26880 msgid "Specify the addresses of the servers in the group. The address can be specified as a IP address (e.g.@: @samp{127.0.0.1}), domain name (e.g.@: @samp{backend1.example.com}) or a path to a UNIX socket using the prefix @samp{unix:}. For addresses using an IP address or domain name, the default port is 80, and a different port can be specified explicitly." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26547 +#: guix-git/doc/guix.texi:26884 #, no-wrap msgid "{Data Type} nginx-location-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26550 +#: guix-git/doc/guix.texi:26887 msgid "Data type representing the configuration of an nginx @code{location} block. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26554 +#: guix-git/doc/guix.texi:26891 msgid "URI which this location block matches." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:26556 +#: guix-git/doc/guix.texi:26893 msgid "nginx-location-configuration body" msgstr "nginx-location-configuration body" #. type: code{#1} -#: guix-git/doc/guix.texi:26556 guix-git/doc/guix.texi:26577 +#: guix-git/doc/guix.texi:26893 guix-git/doc/guix.texi:26914 #, no-wrap msgid "body" msgstr "corpo" #. type: table -#: guix-git/doc/guix.texi:26563 +#: guix-git/doc/guix.texi:26900 msgid "Body of the location block, specified as a list of strings. This can contain many configuration directives. For example, to pass requests to a upstream server group defined using an @code{nginx-upstream-configuration} block, the following directive would be specified in the body @samp{(list \"proxy_pass http://upstream-name;\")}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26567 +#: guix-git/doc/guix.texi:26904 #, no-wrap msgid "{Data Type} nginx-named-location-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26572 +#: guix-git/doc/guix.texi:26909 msgid "Data type representing the configuration of an nginx named location block. Named location blocks are used for request redirection, and not used for regular request processing. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26576 +#: guix-git/doc/guix.texi:26913 msgid "Name to identify this location block." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26582 +#: guix-git/doc/guix.texi:26919 msgid "@xref{nginx-location-configuration body}, as the body for named location blocks can be used in a similar way to the @code{nginx-location-configuration body}. One restriction is that the body of a named location block cannot contain location blocks." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26586 +#: guix-git/doc/guix.texi:26923 #, no-wrap msgid "Varnish Cache" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26587 +#: guix-git/doc/guix.texi:26924 #, no-wrap msgid "Varnish" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26592 +#: guix-git/doc/guix.texi:26929 msgid "Varnish is a fast cache server that sits in between web applications and end users. It proxies requests from clients and caches the accessed URLs such that multiple requests for the same resource only creates one request to the back-end." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26593 +#: guix-git/doc/guix.texi:26930 #, no-wrap msgid "{Scheme Variable} varnish-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26595 +#: guix-git/doc/guix.texi:26932 msgid "Service type for the Varnish daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26597 +#: guix-git/doc/guix.texi:26934 #, no-wrap msgid "{Data Type} varnish-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26600 +#: guix-git/doc/guix.texi:26937 msgid "Data type representing the @code{varnish} service configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26602 +#: guix-git/doc/guix.texi:26939 #, no-wrap msgid "@code{package} (default: @code{varnish})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26604 +#: guix-git/doc/guix.texi:26941 msgid "The Varnish package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26605 +#: guix-git/doc/guix.texi:26942 #, no-wrap msgid "@code{name} (default: @code{\"default\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26610 +#: guix-git/doc/guix.texi:26947 msgid "A name for this Varnish instance. Varnish will create a directory in @file{/var/varnish/} with this name and keep temporary files there. If the name starts with a forward slash, it is interpreted as an absolute directory name." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26613 +#: guix-git/doc/guix.texi:26950 msgid "Pass the @code{-n} argument to other Varnish programs to connect to the named instance, e.g.@: @command{varnishncsa -n default}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26614 +#: guix-git/doc/guix.texi:26951 #, no-wrap msgid "@code{backend} (default: @code{\"localhost:8080\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26616 +#: guix-git/doc/guix.texi:26953 msgid "The backend to use. This option has no effect if @code{vcl} is set." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26617 +#: guix-git/doc/guix.texi:26954 #, no-wrap msgid "@code{vcl} (default: #f)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26622 +#: guix-git/doc/guix.texi:26959 msgid "The @dfn{VCL} (Varnish Configuration Language) program to run. If this is @code{#f}, Varnish will proxy @code{backend} using the default configuration. Otherwise this must be a file-like object with valid VCL syntax." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26626 +#: guix-git/doc/guix.texi:26963 msgid "For example, to mirror @url{https://www.gnu.org,www.gnu.org} with VCL you can do something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26632 +#: guix-git/doc/guix.texi:26969 #, no-wrap msgid "" "(define %gnu-mirror\n" @@ -47491,7 +48145,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26640 +#: guix-git/doc/guix.texi:26977 #, no-wrap msgid "" "(operating-system\n" @@ -47504,82 +48158,82 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26644 +#: guix-git/doc/guix.texi:26981 msgid "The configuration of an already running Varnish instance can be inspected and changed using the @command{varnishadm} program." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26648 +#: guix-git/doc/guix.texi:26985 msgid "Consult the @url{https://varnish-cache.org/docs/,Varnish User Guide} and @url{https://book.varnish-software.com/4.0/,Varnish Book} for comprehensive documentation on Varnish and its configuration language." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26649 +#: guix-git/doc/guix.texi:26986 #, no-wrap msgid "@code{listen} (default: @code{'(\"localhost:80\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26651 +#: guix-git/doc/guix.texi:26988 msgid "List of addresses Varnish will listen on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26652 +#: guix-git/doc/guix.texi:26989 #, no-wrap msgid "@code{storage} (default: @code{'(\"malloc,128m\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26654 +#: guix-git/doc/guix.texi:26991 msgid "List of storage backends that will be available in VCL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26655 +#: guix-git/doc/guix.texi:26992 #, no-wrap msgid "@code{parameters} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26657 +#: guix-git/doc/guix.texi:26994 msgid "List of run-time parameters in the form @code{'((\"parameter\" . \"value\"))}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26660 +#: guix-git/doc/guix.texi:26997 msgid "Additional arguments to pass to the @command{varnishd} process." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26664 guix-git/doc/guix.texi:26665 +#: guix-git/doc/guix.texi:27001 guix-git/doc/guix.texi:27002 #, no-wrap msgid "Patchwork" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26668 +#: guix-git/doc/guix.texi:27005 msgid "Patchwork is a patch tracking system. It can collect patches sent to a mailing list, and display them in a web interface." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26669 +#: guix-git/doc/guix.texi:27006 #, no-wrap msgid "{Scheme Variable} patchwork-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26671 +#: guix-git/doc/guix.texi:27008 msgid "Service type for Patchwork." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26675 +#: guix-git/doc/guix.texi:27012 msgid "The following example is an example of a minimal service for Patchwork, for the @code{patchwork.example.com} domain." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26695 +#: guix-git/doc/guix.texi:27032 #, no-wrap msgid "" "(service patchwork-service-type\n" @@ -47604,806 +48258,806 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26701 +#: guix-git/doc/guix.texi:27038 msgid "There are three records for configuring the Patchwork service. The @code{} relates to the configuration for Patchwork within the HTTPD service." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26705 +#: guix-git/doc/guix.texi:27042 msgid "The @code{settings-module} field within the @code{} record can be populated with the @code{} record, which describes a settings module that is generated within the Guix store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26709 +#: guix-git/doc/guix.texi:27046 msgid "For the @code{database-configuration} field within the @code{}, the @code{} must be used." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26710 +#: guix-git/doc/guix.texi:27047 #, no-wrap msgid "{Data Type} patchwork-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26713 +#: guix-git/doc/guix.texi:27050 msgid "Data type representing the Patchwork service configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26715 +#: guix-git/doc/guix.texi:27052 #, no-wrap msgid "@code{patchwork} (default: @code{patchwork})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26717 +#: guix-git/doc/guix.texi:27054 msgid "The Patchwork package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26718 +#: guix-git/doc/guix.texi:27055 #, no-wrap msgid "domain" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26721 +#: guix-git/doc/guix.texi:27058 msgid "The domain to use for Patchwork, this is used in the HTTPD service virtual host." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26722 +#: guix-git/doc/guix.texi:27059 #, no-wrap msgid "settings-module" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26728 +#: guix-git/doc/guix.texi:27065 msgid "The settings module to use for Patchwork. As a Django application, Patchwork is configured with a Python module containing the settings. This can either be an instance of the @code{} record, any other record that represents the settings in the store, or a directory outside of the store." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26729 +#: guix-git/doc/guix.texi:27066 #, no-wrap msgid "@code{static-path} (default: @code{\"/static/\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26731 +#: guix-git/doc/guix.texi:27068 msgid "The path under which the HTTPD service should serve the static files." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26732 +#: guix-git/doc/guix.texi:27069 #, no-wrap msgid "getmail-retriever-config" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26736 +#: guix-git/doc/guix.texi:27073 msgid "The getmail-retriever-configuration record value to use with Patchwork. Getmail will be configured with this value, the messages will be delivered to Patchwork." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26740 +#: guix-git/doc/guix.texi:27077 #, no-wrap msgid "{Data Type} patchwork-settings-module" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26745 +#: guix-git/doc/guix.texi:27082 msgid "Data type representing a settings module for Patchwork. Some of these settings relate directly to Patchwork, but others relate to Django, the web framework used by Patchwork, or the Django Rest Framework library. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26747 +#: guix-git/doc/guix.texi:27084 #, no-wrap msgid "@code{database-configuration} (default: @code{(patchwork-database-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26750 +#: guix-git/doc/guix.texi:27087 msgid "The database connection settings used for Patchwork. See the @code{} record type for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26751 +#: guix-git/doc/guix.texi:27088 #, no-wrap msgid "@code{secret-key-file} (default: @code{\"/etc/patchwork/django-secret-key\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26754 +#: guix-git/doc/guix.texi:27091 msgid "Patchwork, as a Django web application uses a secret key for cryptographically signing values. This file should contain a unique unpredictable value." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26757 +#: guix-git/doc/guix.texi:27094 msgid "If this file does not exist, it will be created and populated with a random value by the patchwork-setup shepherd service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26759 +#: guix-git/doc/guix.texi:27096 msgid "This setting relates to Django." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26760 +#: guix-git/doc/guix.texi:27097 #, no-wrap msgid "allowed-hosts" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26763 +#: guix-git/doc/guix.texi:27100 msgid "A list of valid hosts for this Patchwork service. This should at least include the domain specified in the @code{} record." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26765 guix-git/doc/guix.texi:26779 -#: guix-git/doc/guix.texi:26785 guix-git/doc/guix.texi:26791 +#: guix-git/doc/guix.texi:27102 guix-git/doc/guix.texi:27116 +#: guix-git/doc/guix.texi:27122 guix-git/doc/guix.texi:27128 msgid "This is a Django setting." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26766 +#: guix-git/doc/guix.texi:27103 #, no-wrap msgid "default-from-email" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26768 +#: guix-git/doc/guix.texi:27105 msgid "The email address from which Patchwork should send email by default." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26770 guix-git/doc/guix.texi:26796 -#: guix-git/doc/guix.texi:26801 guix-git/doc/guix.texi:26806 +#: guix-git/doc/guix.texi:27107 guix-git/doc/guix.texi:27133 +#: guix-git/doc/guix.texi:27138 guix-git/doc/guix.texi:27143 msgid "This is a Patchwork setting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26771 +#: guix-git/doc/guix.texi:27108 #, no-wrap msgid "@code{static-url} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26774 +#: guix-git/doc/guix.texi:27111 msgid "The URL to use when serving static assets. It can be part of a URL, or a full URL, but must end in a @code{/}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26777 +#: guix-git/doc/guix.texi:27114 msgid "If the default value is used, the @code{static-path} value from the @code{} record will be used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26780 +#: guix-git/doc/guix.texi:27117 #, no-wrap msgid "@code{admins} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26783 +#: guix-git/doc/guix.texi:27120 msgid "Email addresses to send the details of errors that occur. Each value should be a list containing two elements, the name and then the email address." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26789 +#: guix-git/doc/guix.texi:27126 msgid "Whether to run Patchwork in debug mode. If set to @code{#t}, detailed error messages will be shown." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26792 +#: guix-git/doc/guix.texi:27129 #, no-wrap msgid "@code{enable-rest-api?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26794 +#: guix-git/doc/guix.texi:27131 msgid "Whether to enable the Patchwork REST API." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26797 +#: guix-git/doc/guix.texi:27134 #, no-wrap msgid "@code{enable-xmlrpc?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26799 +#: guix-git/doc/guix.texi:27136 msgid "Whether to enable the XML RPC API." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26802 +#: guix-git/doc/guix.texi:27139 #, no-wrap msgid "@code{force-https-links?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26804 +#: guix-git/doc/guix.texi:27141 msgid "Whether to use HTTPS links on Patchwork pages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26809 +#: guix-git/doc/guix.texi:27146 msgid "Extra code to place at the end of the Patchwork settings module." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26813 +#: guix-git/doc/guix.texi:27150 #, no-wrap msgid "{Data Type} patchwork-database-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26815 +#: guix-git/doc/guix.texi:27152 msgid "Data type representing the database configuration for Patchwork." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26817 +#: guix-git/doc/guix.texi:27154 #, no-wrap msgid "@code{engine} (default: @code{\"django.db.backends.postgresql_psycopg2\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26819 +#: guix-git/doc/guix.texi:27156 msgid "The database engine to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26820 +#: guix-git/doc/guix.texi:27157 #, no-wrap msgid "@code{name} (default: @code{\"patchwork\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26822 +#: guix-git/doc/guix.texi:27159 msgid "The name of the database to use." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26825 +#: guix-git/doc/guix.texi:27162 msgid "The user to connect to the database as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26826 +#: guix-git/doc/guix.texi:27163 #, no-wrap msgid "@code{password} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26828 +#: guix-git/doc/guix.texi:27165 msgid "The password to use when connecting to the database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26829 +#: guix-git/doc/guix.texi:27166 #, no-wrap msgid "@code{host} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26831 +#: guix-git/doc/guix.texi:27168 msgid "The host to make the database connection to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26832 +#: guix-git/doc/guix.texi:27169 #, no-wrap msgid "@code{port} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26834 +#: guix-git/doc/guix.texi:27171 msgid "The port on which to connect to the database." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26838 +#: guix-git/doc/guix.texi:27175 #, no-wrap msgid "Mumi" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26840 +#: guix-git/doc/guix.texi:27177 #, no-wrap msgid "Mumi, Debbugs Web interface" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26841 +#: guix-git/doc/guix.texi:27178 #, no-wrap msgid "Debbugs, Mumi Web interface" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26846 +#: guix-git/doc/guix.texi:27183 msgid "@uref{https://git.elephly.net/gitweb.cgi?p=software/mumi.git, Mumi} is a Web interface to the Debbugs bug tracker, by default for @uref{https://bugs.gnu.org, the GNU instance}. Mumi is a Web server, but it also fetches and indexes mail retrieved from Debbugs." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26847 +#: guix-git/doc/guix.texi:27184 #, no-wrap msgid "{Scheme Variable} mumi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26849 +#: guix-git/doc/guix.texi:27186 msgid "This is the service type for Mumi." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26851 +#: guix-git/doc/guix.texi:27188 #, no-wrap msgid "{Data Type} mumi-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26854 +#: guix-git/doc/guix.texi:27191 msgid "Data type representing the Mumi service configuration. This type has the following fields:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26856 +#: guix-git/doc/guix.texi:27193 #, no-wrap msgid "@code{mumi} (default: @code{mumi})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26858 +#: guix-git/doc/guix.texi:27195 msgid "The Mumi package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26859 +#: guix-git/doc/guix.texi:27196 #, no-wrap msgid "@code{mailer?} (default: @code{#true})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26861 +#: guix-git/doc/guix.texi:27198 msgid "Whether to enable or disable the mailer component." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26862 +#: guix-git/doc/guix.texi:27199 #, no-wrap msgid "mumi-configuration-sender" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26864 +#: guix-git/doc/guix.texi:27201 msgid "The email address used as the sender for comments." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26865 +#: guix-git/doc/guix.texi:27202 #, no-wrap msgid "mumi-configuration-smtp" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26870 +#: guix-git/doc/guix.texi:27207 msgid "A URI to configure the SMTP settings for Mailutils. This could be something like @code{sendmail:///path/to/bin/msmtp} or any other URI supported by Mailutils. @xref{SMTP Mailboxes, SMTP Mailboxes,, mailutils, GNU@tie{}Mailutils}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26875 +#: guix-git/doc/guix.texi:27212 #, no-wrap msgid "FastCGI" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26876 +#: guix-git/doc/guix.texi:27213 #, no-wrap msgid "fastcgi" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26877 +#: guix-git/doc/guix.texi:27214 #, no-wrap msgid "fcgiwrap" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26884 +#: guix-git/doc/guix.texi:27221 msgid "FastCGI is an interface between the front-end and the back-end of a web service. It is a somewhat legacy facility; new web services should generally just talk HTTP between the front-end and the back-end. However there are a number of back-end services such as PHP or the optimized HTTP Git repository access that use FastCGI, so we have support for it in Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26891 +#: guix-git/doc/guix.texi:27228 msgid "To use FastCGI, you configure the front-end web server (e.g., nginx) to dispatch some subset of its requests to the fastcgi backend, which listens on a local TCP or UNIX socket. There is an intermediary @code{fcgiwrap} program that sits between the actual backend process and the web server. The front-end indicates which backend program to run, passing that information to the @code{fcgiwrap} process." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26892 +#: guix-git/doc/guix.texi:27229 #, no-wrap msgid "{Scheme Variable} fcgiwrap-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26894 +#: guix-git/doc/guix.texi:27231 msgid "A service type for the @code{fcgiwrap} FastCGI proxy." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26896 +#: guix-git/doc/guix.texi:27233 #, no-wrap msgid "{Data Type} fcgiwrap-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26899 +#: guix-git/doc/guix.texi:27236 msgid "Data type representing the configuration of the @code{fcgiwrap} service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26900 +#: guix-git/doc/guix.texi:27237 #, no-wrap msgid "@code{package} (default: @code{fcgiwrap})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26902 +#: guix-git/doc/guix.texi:27239 msgid "The fcgiwrap package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26903 +#: guix-git/doc/guix.texi:27240 #, no-wrap msgid "@code{socket} (default: @code{tcp:127.0.0.1:9000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26909 +#: guix-git/doc/guix.texi:27246 msgid "The socket on which the @code{fcgiwrap} process should listen, as a string. Valid @var{socket} values include @code{unix:@var{/path/to/unix/socket}}, @code{tcp:@var{dot.ted.qu.ad}:@var{port}} and @code{tcp6:[@var{ipv6_addr}]:port}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26910 +#: guix-git/doc/guix.texi:27247 #, no-wrap msgid "@code{user} (default: @code{fcgiwrap})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:26911 +#: guix-git/doc/guix.texi:27248 #, no-wrap msgid "@code{group} (default: @code{fcgiwrap})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26916 +#: guix-git/doc/guix.texi:27253 msgid "The user and group names, as strings, under which to run the @code{fcgiwrap} process. The @code{fastcgi} service will ensure that if the user asks for the specific user or group names @code{fcgiwrap} that the corresponding user and/or group is present on the system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26923 +#: guix-git/doc/guix.texi:27260 msgid "It is possible to configure a FastCGI-backed web service to pass HTTP authentication information from the front-end to the back-end, and to allow @code{fcgiwrap} to run the back-end process as a corresponding local user. To enable this capability on the back-end, run @code{fcgiwrap} as the @code{root} user and group. Note that this capability also has to be configured on the front-end as well." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26926 +#: guix-git/doc/guix.texi:27263 #, no-wrap msgid "php-fpm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26929 +#: guix-git/doc/guix.texi:27266 msgid "PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI implementation with some additional features useful for sites of any size." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26931 +#: guix-git/doc/guix.texi:27268 msgid "These features include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26932 +#: guix-git/doc/guix.texi:27269 #, no-wrap msgid "Adaptive process spawning" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26933 +#: guix-git/doc/guix.texi:27270 #, no-wrap msgid "Basic statistics (similar to Apache's mod_status)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26934 +#: guix-git/doc/guix.texi:27271 #, no-wrap msgid "Advanced process management with graceful stop/start" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26935 +#: guix-git/doc/guix.texi:27272 #, no-wrap msgid "Ability to start workers with different uid/gid/chroot/environment" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:26937 +#: guix-git/doc/guix.texi:27274 msgid "and different php.ini (replaces safe_mode)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26937 +#: guix-git/doc/guix.texi:27274 #, no-wrap msgid "Stdout & stderr logging" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26938 +#: guix-git/doc/guix.texi:27275 #, no-wrap msgid "Emergency restart in case of accidental opcode cache destruction" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26939 +#: guix-git/doc/guix.texi:27276 #, no-wrap msgid "Accelerated upload support" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26940 +#: guix-git/doc/guix.texi:27277 #, no-wrap msgid "Support for a \"slowlog\"" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26941 +#: guix-git/doc/guix.texi:27278 #, no-wrap msgid "Enhancements to FastCGI, such as fastcgi_finish_request() -" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:26944 +#: guix-git/doc/guix.texi:27281 msgid "a special function to finish request & flush all data while continuing to do something time-consuming (video converting, stats processing, etc.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26946 +#: guix-git/doc/guix.texi:27283 msgid "...@: and much more." msgstr "...@: e muito mais." #. type: defvr -#: guix-git/doc/guix.texi:26947 +#: guix-git/doc/guix.texi:27284 #, no-wrap msgid "{Scheme Variable} php-fpm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26949 +#: guix-git/doc/guix.texi:27286 msgid "A Service type for @code{php-fpm}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26951 +#: guix-git/doc/guix.texi:27288 #, no-wrap msgid "{Data Type} php-fpm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26953 +#: guix-git/doc/guix.texi:27290 msgid "Data Type for php-fpm service configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26954 +#: guix-git/doc/guix.texi:27291 #, no-wrap msgid "@code{php} (default: @code{php})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26956 +#: guix-git/doc/guix.texi:27293 msgid "The php package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26956 +#: guix-git/doc/guix.texi:27293 #, no-wrap msgid "@code{socket} (default: @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.sock\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26958 +#: guix-git/doc/guix.texi:27295 msgid "The address on which to accept FastCGI requests. Valid syntaxes are:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26959 +#: guix-git/doc/guix.texi:27296 #, no-wrap msgid "\"ip.add.re.ss:port\"" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26961 +#: guix-git/doc/guix.texi:27298 msgid "Listen on a TCP socket to a specific address on a specific port." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26961 +#: guix-git/doc/guix.texi:27298 #, no-wrap msgid "\"port\"" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26963 +#: guix-git/doc/guix.texi:27300 msgid "Listen on a TCP socket to all addresses on a specific port." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26963 +#: guix-git/doc/guix.texi:27300 #, no-wrap msgid "\"/path/to/unix/socket\"" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26965 +#: guix-git/doc/guix.texi:27302 msgid "Listen on a unix socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26967 +#: guix-git/doc/guix.texi:27304 #, no-wrap msgid "@code{user} (default: @code{php-fpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26969 +#: guix-git/doc/guix.texi:27306 msgid "User who will own the php worker processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26969 +#: guix-git/doc/guix.texi:27306 #, no-wrap msgid "@code{group} (default: @code{php-fpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26971 +#: guix-git/doc/guix.texi:27308 msgid "Group of the worker processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26971 +#: guix-git/doc/guix.texi:27308 #, no-wrap msgid "@code{socket-user} (default: @code{php-fpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26973 +#: guix-git/doc/guix.texi:27310 msgid "User who can speak to the php-fpm socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26973 +#: guix-git/doc/guix.texi:27310 #, no-wrap msgid "@code{socket-group} (default: @code{nginx})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26975 +#: guix-git/doc/guix.texi:27312 msgid "Group that can speak to the php-fpm socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26975 +#: guix-git/doc/guix.texi:27312 #, no-wrap msgid "@code{pid-file} (default: @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.pid\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26978 +#: guix-git/doc/guix.texi:27315 msgid "The process id of the php-fpm process is written to this file once the service has started." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26978 +#: guix-git/doc/guix.texi:27315 #, no-wrap msgid "@code{log-file} (default: @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.log\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26980 +#: guix-git/doc/guix.texi:27317 msgid "Log for the php-fpm master process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26980 +#: guix-git/doc/guix.texi:27317 #, no-wrap msgid "@code{process-manager} (default: @code{(php-fpm-dynamic-process-manager-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26983 +#: guix-git/doc/guix.texi:27320 msgid "Detailed settings for the php-fpm process manager. Must be one of:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26984 +#: guix-git/doc/guix.texi:27321 #, no-wrap msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26985 +#: guix-git/doc/guix.texi:27322 #, no-wrap msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26986 +#: guix-git/doc/guix.texi:27323 #, no-wrap msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26988 +#: guix-git/doc/guix.texi:27325 #, no-wrap msgid "@code{display-errors} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26993 +#: guix-git/doc/guix.texi:27330 msgid "Determines whether php errors and warning should be sent to clients and displayed in their browsers. This is useful for local php development, but a security risk for public sites, as error messages can reveal passwords and personal data." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26993 +#: guix-git/doc/guix.texi:27330 #, no-wrap msgid "@code{timezone} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26995 +#: guix-git/doc/guix.texi:27332 msgid "Specifies @code{php_admin_value[date.timezone]} parameter." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26995 +#: guix-git/doc/guix.texi:27332 #, no-wrap msgid "@code{workers-logfile} (default @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.www.log\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26998 +#: guix-git/doc/guix.texi:27335 msgid "This file will log the @code{stderr} outputs of php worker processes. Can be set to @code{#f} to disable logging." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26998 +#: guix-git/doc/guix.texi:27335 #, no-wrap msgid "@code{file} (default @code{#f})" msgstr "@code{file} (default @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27001 +#: guix-git/doc/guix.texi:27338 msgid "An optional override of the whole configuration. You can use the @code{mixed-text-file} function or an absolute filepath for it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27001 +#: guix-git/doc/guix.texi:27338 #, no-wrap msgid "@code{php-ini-file} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27005 +#: guix-git/doc/guix.texi:27342 msgid "An optional override of the default php settings. It may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). You can use the @code{mixed-text-file} function or an absolute filepath for it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27009 +#: guix-git/doc/guix.texi:27346 msgid "For local development it is useful to set a higher timeout and memory limit for spawned php processes. This be accomplished with the following operating system configuration snippet:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27014 +#: guix-git/doc/guix.texi:27351 #, no-wrap msgid "" "(define %local-php-ini\n" @@ -48414,7 +49068,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27021 +#: guix-git/doc/guix.texi:27358 #, no-wrap msgid "" "(operating-system\n" @@ -48426,118 +49080,118 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27026 +#: guix-git/doc/guix.texi:27363 msgid "Consult the @url{https://www.php.net/manual/en/ini.core.php,core php.ini directives} for comprehensive documentation on the acceptable @file{php.ini} directives." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27029 +#: guix-git/doc/guix.texi:27366 #, no-wrap msgid "{Data type} php-fpm-dynamic-process-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27033 +#: guix-git/doc/guix.texi:27370 msgid "Data Type for the @code{dynamic} php-fpm process manager. With the @code{dynamic} process manager, spare worker processes are kept around based on its configured limits." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27034 guix-git/doc/guix.texi:27050 -#: guix-git/doc/guix.texi:27060 +#: guix-git/doc/guix.texi:27371 guix-git/doc/guix.texi:27387 +#: guix-git/doc/guix.texi:27397 #, no-wrap msgid "@code{max-children} (default: @code{5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27036 guix-git/doc/guix.texi:27052 -#: guix-git/doc/guix.texi:27062 +#: guix-git/doc/guix.texi:27373 guix-git/doc/guix.texi:27389 +#: guix-git/doc/guix.texi:27399 msgid "Maximum of worker processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27036 +#: guix-git/doc/guix.texi:27373 #, no-wrap msgid "@code{start-servers} (default: @code{2})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27038 +#: guix-git/doc/guix.texi:27375 msgid "How many worker processes should be started on start-up." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27038 +#: guix-git/doc/guix.texi:27375 #, no-wrap msgid "@code{min-spare-servers} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27040 +#: guix-git/doc/guix.texi:27377 msgid "How many spare worker processes should be kept around at minimum." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27040 +#: guix-git/doc/guix.texi:27377 #, no-wrap msgid "@code{max-spare-servers} (default: @code{3})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27042 +#: guix-git/doc/guix.texi:27379 msgid "How many spare worker processes should be kept around at maximum." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27045 +#: guix-git/doc/guix.texi:27382 #, no-wrap msgid "{Data type} php-fpm-static-process-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27049 +#: guix-git/doc/guix.texi:27386 msgid "Data Type for the @code{static} php-fpm process manager. With the @code{static} process manager, an unchanging number of worker processes are created." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27055 +#: guix-git/doc/guix.texi:27392 #, no-wrap msgid "{Data type} php-fpm-on-demand-process-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27059 +#: guix-git/doc/guix.texi:27396 msgid "Data Type for the @code{on-demand} php-fpm process manager. With the @code{on-demand} process manager, worker processes are only created as requests arrive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27062 +#: guix-git/doc/guix.texi:27399 #, no-wrap msgid "@code{process-idle-timeout} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27064 +#: guix-git/doc/guix.texi:27401 msgid "The time in seconds after which a process with no requests is killed." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27068 +#: guix-git/doc/guix.texi:27405 #, no-wrap msgid "{Scheme Procedure} nginx-php-location @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27074 +#: guix-git/doc/guix.texi:27411 msgid "[#:nginx-package nginx] @ [socket (string-append \"/var/run/php\" @ (version-major (package-version php)) @ \"-fpm.sock\")] A helper function to quickly add php to an @code{nginx-server-configuration}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27077 +#: guix-git/doc/guix.texi:27414 msgid "A simple services setup for nginx with php can look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27090 +#: guix-git/doc/guix.texi:27427 #, no-wrap msgid "" "(services (cons* (service dhcp-client-service-type)\n" @@ -48555,34 +49209,34 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27092 +#: guix-git/doc/guix.texi:27429 #, no-wrap msgid "cat-avatar-generator" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27096 +#: guix-git/doc/guix.texi:27433 msgid "The cat avatar generator is a simple service to demonstrate the use of php-fpm in @code{Nginx}. It is used to generate cat avatar from a seed, for instance the hash of a user's email address." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27097 +#: guix-git/doc/guix.texi:27434 #, no-wrap msgid "{Scheme Procedure} cat-avatar-generator-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27105 +#: guix-git/doc/guix.texi:27442 msgid "[#:cache-dir \"/var/cache/cat-avatar-generator\"] @ [#:package cat-avatar-generator] @ [#:configuration (nginx-server-configuration)] Returns an nginx-server-configuration that inherits @code{configuration}. It extends the nginx configuration to add a server block that serves @code{package}, a version of cat-avatar-generator. During execution, cat-avatar-generator will be able to use @code{cache-dir} as its cache directory." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27108 +#: guix-git/doc/guix.texi:27445 msgid "A simple setup for cat-avatar-generator can look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27115 +#: guix-git/doc/guix.texi:27452 #, no-wrap msgid "" "(services (cons* (cat-avatar-generator-service\n" @@ -48594,178 +49248,178 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27117 +#: guix-git/doc/guix.texi:27454 #, no-wrap msgid "Hpcguix-web" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27119 +#: guix-git/doc/guix.texi:27456 #, no-wrap msgid "hpcguix-web" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27124 +#: guix-git/doc/guix.texi:27461 msgid "The @uref{https://github.com/UMCUGenetics/hpcguix-web/, hpcguix-web} program is a customizable web interface to browse Guix packages, initially designed for users of high-performance computing (HPC) clusters." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27125 +#: guix-git/doc/guix.texi:27462 #, no-wrap msgid "{Scheme Variable} hpcguix-web-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27127 +#: guix-git/doc/guix.texi:27464 msgid "The service type for @code{hpcguix-web}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27129 +#: guix-git/doc/guix.texi:27466 #, no-wrap msgid "{Data Type} hpcguix-web-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27131 +#: guix-git/doc/guix.texi:27468 msgid "Data type for the hpcguix-web service configuration." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:27133 +#: guix-git/doc/guix.texi:27470 #, no-wrap msgid "specs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27136 +#: guix-git/doc/guix.texi:27473 msgid "A gexp (@pxref{G-Expressions}) specifying the hpcguix-web service configuration. The main items available in this spec are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27138 +#: guix-git/doc/guix.texi:27475 #, no-wrap msgid "@code{title-prefix} (default: @code{\"hpcguix | \"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27140 +#: guix-git/doc/guix.texi:27477 msgid "The page title prefix." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27141 +#: guix-git/doc/guix.texi:27478 #, no-wrap msgid "@code{guix-command} (default: @code{\"guix\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27143 +#: guix-git/doc/guix.texi:27480 msgid "The @command{guix} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27144 +#: guix-git/doc/guix.texi:27481 #, no-wrap msgid "@code{package-filter-proc} (default: @code{(const #t)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27146 +#: guix-git/doc/guix.texi:27483 msgid "A procedure specifying how to filter packages that are displayed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27147 +#: guix-git/doc/guix.texi:27484 #, no-wrap msgid "@code{package-page-extension-proc} (default: @code{(const '())})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27149 +#: guix-git/doc/guix.texi:27486 msgid "Extension package for @code{hpcguix-web}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27150 +#: guix-git/doc/guix.texi:27487 #, no-wrap msgid "@code{menu} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27152 +#: guix-git/doc/guix.texi:27489 msgid "Additional entry in page @code{menu}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27153 +#: guix-git/doc/guix.texi:27490 #, no-wrap msgid "@code{channels} (default: @code{%default-channels})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27155 +#: guix-git/doc/guix.texi:27492 msgid "List of channels from which the package list is built (@pxref{Channels})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27156 +#: guix-git/doc/guix.texi:27493 #, no-wrap msgid "@code{package-list-expiration} (default: @code{(* 12 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27159 +#: guix-git/doc/guix.texi:27496 msgid "The expiration time, in seconds, after which the package list is rebuilt from the latest instances of the given channels." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27164 +#: guix-git/doc/guix.texi:27501 msgid "See the hpcguix-web repository for a @uref{https://github.com/UMCUGenetics/hpcguix-web/blob/master/hpcweb-configuration.scm, complete example}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27165 +#: guix-git/doc/guix.texi:27502 #, no-wrap msgid "@code{package} (default: @code{hpcguix-web})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27167 +#: guix-git/doc/guix.texi:27504 msgid "The hpcguix-web package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27168 +#: guix-git/doc/guix.texi:27505 #, fuzzy, no-wrap msgid "@code{address} (default: @code{\"127.0.0.1\"})" msgstr "@code{porta} (default: @code{15000})" #. type: table -#: guix-git/doc/guix.texi:27170 +#: guix-git/doc/guix.texi:27507 msgid "The IP address to listen to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27171 +#: guix-git/doc/guix.texi:27508 #, fuzzy, no-wrap #| msgid "@code{port} (default: @code{15000})" msgid "@code{port} (default: @code{5000})" msgstr "@code{porta} (default: @code{15000})" #. type: table -#: guix-git/doc/guix.texi:27173 +#: guix-git/doc/guix.texi:27510 msgid "The port number to listen to." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27177 +#: guix-git/doc/guix.texi:27514 msgid "A typical hpcguix-web service declaration looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27186 +#: guix-git/doc/guix.texi:27523 #, no-wrap msgid "" "(service hpcguix-web-service-type\n" @@ -48778,39 +49432,39 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:27193 +#: guix-git/doc/guix.texi:27530 msgid "The hpcguix-web service periodically updates the package list it publishes by pulling channels from Git. To that end, it needs to access X.509 certificates so that it can authenticate Git servers when communicating over HTTPS, and it assumes that @file{/etc/ssl/certs} contains those certificates." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:27197 +#: guix-git/doc/guix.texi:27534 msgid "Thus, make sure to add @code{nss-certs} or another certificate package to the @code{packages} field of your configuration. @ref{X.509 Certificates}, for more information on X.509 certificates." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27199 guix-git/doc/guix.texi:27201 +#: guix-git/doc/guix.texi:27536 guix-git/doc/guix.texi:27538 #, no-wrap msgid "gmnisrv" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27204 +#: guix-git/doc/guix.texi:27541 msgid "The @uref{https://git.sr.ht/~sircmpwn/gmnisrv, gmnisrv} program is a simple @uref{https://gemini.circumlunar.space/, Gemini} protocol server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27205 +#: guix-git/doc/guix.texi:27542 #, no-wrap msgid "{Scheme Variable} gmnisrv-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27208 +#: guix-git/doc/guix.texi:27545 msgid "This is the type of the gmnisrv service, whose value should be a @code{gmnisrv-configuration} object, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27213 +#: guix-git/doc/guix.texi:27550 #, no-wrap msgid "" "(service gmnisrv-service-type\n" @@ -48819,68 +49473,68 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27216 +#: guix-git/doc/guix.texi:27553 #, no-wrap msgid "{Data Type} gmnisrv-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27218 +#: guix-git/doc/guix.texi:27555 msgid "Data type representing the configuration of gmnisrv." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27220 +#: guix-git/doc/guix.texi:27557 #, no-wrap msgid "@code{package} (default: @var{gmnisrv})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27222 +#: guix-git/doc/guix.texi:27559 msgid "Package object of the gmnisrv server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27223 +#: guix-git/doc/guix.texi:27560 #, no-wrap msgid "@code{config-file} (default: @code{%default-gmnisrv-config-file})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27229 +#: guix-git/doc/guix.texi:27566 msgid "File-like object of the gmnisrv configuration file to use. The default configuration listens on port 1965 and serves files from @file{/srv/gemini}. Certificates are stored in @file{/var/lib/gemini/certs}. For more information, run @command{man gmnisrv} and @command{man gmnisrv.ini}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27233 +#: guix-git/doc/guix.texi:27570 #, no-wrap msgid "Agate" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27235 +#: guix-git/doc/guix.texi:27572 #, no-wrap msgid "agate" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27240 +#: guix-git/doc/guix.texi:27577 msgid "The @uref{gemini://qwertqwefsday.eu/agate.gmi, Agate} (@uref{https://github.com/mbrubeck/agate, GitHub page over HTTPS}) program is a simple @uref{https://gemini.circumlunar.space/, Gemini} protocol server written in Rust." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27241 +#: guix-git/doc/guix.texi:27578 #, no-wrap msgid "{Scheme Variable} agate-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27244 +#: guix-git/doc/guix.texi:27581 msgid "This is the type of the agate service, whose value should be an @code{agate-service-type} object, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27251 +#: guix-git/doc/guix.texi:27588 #, no-wrap msgid "" "(service agate-service-type\n" @@ -48891,17 +49545,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27256 +#: guix-git/doc/guix.texi:27593 msgid "The example above represents the minimal tweaking necessary to get Agate up and running. Specifying the path to the certificate and key is always necessary, as the Gemini protocol requires TLS by default." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27259 +#: guix-git/doc/guix.texi:27596 msgid "To obtain a certificate and a key, you could, for example, use OpenSSL, running a command similar to the following example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:27263 +#: guix-git/doc/guix.texi:27600 #, no-wrap msgid "" "openssl req -x509 -newkey rsa:4096 -keyout key.rsa -out cert.pem \\\n" @@ -48909,220 +49563,220 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27268 +#: guix-git/doc/guix.texi:27605 msgid "Of course, you'll have to replace @i{example.com} with your own domain name, and then point the Agate configuration towards the path of the generated key and certificate." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27271 +#: guix-git/doc/guix.texi:27608 #, no-wrap msgid "{Data Type} agate-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27273 +#: guix-git/doc/guix.texi:27610 msgid "Data type representing the configuration of Agate." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27275 +#: guix-git/doc/guix.texi:27612 #, no-wrap msgid "@code{package} (default: @code{agate})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27277 +#: guix-git/doc/guix.texi:27614 msgid "The package object of the Agate server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27278 +#: guix-git/doc/guix.texi:27615 #, no-wrap msgid "@code{content} (default: @file{\"/srv/gemini\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27280 +#: guix-git/doc/guix.texi:27617 msgid "The directory from which Agate will serve files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27281 +#: guix-git/doc/guix.texi:27618 #, no-wrap msgid "@code{cert} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27284 +#: guix-git/doc/guix.texi:27621 msgid "The path to the TLS certificate PEM file to be used for encrypted connections. Must be filled in with a value from the user." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27285 guix-git/doc/guix.texi:27721 +#: guix-git/doc/guix.texi:27622 guix-git/doc/guix.texi:28058 #, no-wrap msgid "@code{key} (default: @code{#f})" msgstr "@code{key} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27288 +#: guix-git/doc/guix.texi:27625 msgid "The path to the PKCS8 private key file to be used for encrypted connections. Must be filled in with a value from the user." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27289 +#: guix-git/doc/guix.texi:27626 #, no-wrap msgid "@code{addr} (default: @code{'(\"0.0.0.0:1965\" \"[::]:1965\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27291 +#: guix-git/doc/guix.texi:27628 msgid "A list of the addresses to listen on." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27294 +#: guix-git/doc/guix.texi:27631 msgid "The domain name of this Gemini server. Optional." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27295 +#: guix-git/doc/guix.texi:27632 #, no-wrap msgid "@code{lang} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27297 +#: guix-git/doc/guix.texi:27634 msgid "RFC 4646 language code(s) for text/gemini documents. Optional." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27298 +#: guix-git/doc/guix.texi:27635 #, no-wrap msgid "@code{silent?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27300 +#: guix-git/doc/guix.texi:27637 msgid "Set to @code{#t} to disable logging output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27301 +#: guix-git/doc/guix.texi:27638 #, no-wrap msgid "@code{serve-secret?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27304 +#: guix-git/doc/guix.texi:27641 msgid "Set to @code{#t} to serve secret files (files/directories starting with a dot)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27305 +#: guix-git/doc/guix.texi:27642 #, no-wrap msgid "@code{log-ip?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27307 +#: guix-git/doc/guix.texi:27644 msgid "Whether or not to output IP addresses when logging." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27308 +#: guix-git/doc/guix.texi:27645 #, no-wrap msgid "@code{user} (default: @code{\"agate\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27310 +#: guix-git/doc/guix.texi:27647 msgid "Owner of the @code{agate} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27311 +#: guix-git/doc/guix.texi:27648 #, no-wrap msgid "@code{group} (default: @code{\"agate\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27313 +#: guix-git/doc/guix.texi:27650 msgid "Owner's group of the @code{agate} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27314 +#: guix-git/doc/guix.texi:27651 #, no-wrap msgid "@code{log-file} (default: @file{\"/var/log/agate.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27316 +#: guix-git/doc/guix.texi:27653 msgid "The file which should store the logging output of Agate." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27323 +#: guix-git/doc/guix.texi:27660 #, no-wrap msgid "Web" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27324 +#: guix-git/doc/guix.texi:27661 #, no-wrap msgid "HTTP, HTTPS" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27325 +#: guix-git/doc/guix.texi:27662 #, no-wrap msgid "Let's Encrypt" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27326 +#: guix-git/doc/guix.texi:27663 #, no-wrap msgid "TLS certificates" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27333 +#: guix-git/doc/guix.texi:27670 msgid "The @code{(gnu services certbot)} module provides a service to automatically obtain a valid TLS certificate from the Let's Encrypt certificate authority. These certificates can then be used to serve content securely over HTTPS or other TLS-based protocols, with the knowledge that the client will be able to verify the server's authenticity." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27345 +#: guix-git/doc/guix.texi:27682 msgid "@url{https://letsencrypt.org/, Let's Encrypt} provides the @code{certbot} tool to automate the certification process. This tool first securely generates a key on the server. It then makes a request to the Let's Encrypt certificate authority (CA) to sign the key. The CA checks that the request originates from the host in question by using a challenge-response protocol, requiring the server to provide its response over HTTP@. If that protocol completes successfully, the CA signs the key, resulting in a certificate. That certificate is valid for a limited period of time, and therefore to continue to provide TLS services, the server needs to periodically ask the CA to renew its signature." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27352 +#: guix-git/doc/guix.texi:27689 msgid "The certbot service automates this process: the initial key generation, the initial certification request to the Let's Encrypt service, the web server challenge/response integration, writing the certificate to disk, the automated periodic renewals, and the deployment tasks associated with the renewal (e.g.@: reloading services, copying keys with different permissions)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27358 +#: guix-git/doc/guix.texi:27695 msgid "Certbot is run twice a day, at a random minute within the hour. It won't do anything until your certificates are due for renewal or revoked, but running it regularly would give your service a chance of staying online in case a Let's Encrypt-initiated revocation happened for some reason." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27362 +#: guix-git/doc/guix.texi:27699 msgid "By using this service, you agree to the ACME Subscriber Agreement, which can be found there: @url{https://acme-v01.api.letsencrypt.org/directory}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27363 +#: guix-git/doc/guix.texi:27700 #, no-wrap msgid "{Scheme Variable} certbot-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27366 +#: guix-git/doc/guix.texi:27703 msgid "A service type for the @code{certbot} Let's Encrypt client. Its value must be a @code{certbot-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27373 +#: guix-git/doc/guix.texi:27710 #, no-wrap msgid "" "(define %nginx-deploy-hook\n" @@ -49134,7 +49788,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27384 +#: guix-git/doc/guix.texi:27721 #, no-wrap msgid "" "(service certbot-service-type\n" @@ -49150,242 +49804,242 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27387 +#: guix-git/doc/guix.texi:27724 msgid "See below for details about @code{certbot-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27389 +#: guix-git/doc/guix.texi:27726 #, no-wrap msgid "{Data Type} certbot-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27392 +#: guix-git/doc/guix.texi:27729 msgid "Data type representing the configuration of the @code{certbot} service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27394 +#: guix-git/doc/guix.texi:27731 #, no-wrap msgid "@code{package} (default: @code{certbot})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27396 +#: guix-git/doc/guix.texi:27733 msgid "The certbot package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27397 +#: guix-git/doc/guix.texi:27734 #, no-wrap msgid "@code{webroot} (default: @code{/var/www})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27400 +#: guix-git/doc/guix.texi:27737 msgid "The directory from which to serve the Let's Encrypt challenge/response files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27401 +#: guix-git/doc/guix.texi:27738 #, no-wrap msgid "@code{certificates} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27405 +#: guix-git/doc/guix.texi:27742 msgid "A list of @code{certificates-configuration}s for which to generate certificates and request signatures. Each certificate has a @code{name} and several @code{domains}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27406 +#: guix-git/doc/guix.texi:27743 #, no-wrap msgid "@code{email} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27410 +#: guix-git/doc/guix.texi:27747 msgid "Optional email address used for registration and recovery contact. Setting this is encouraged as it allows you to receive important notifications about the account and issued certificates." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27411 guix-git/doc/guix.texi:29158 +#: guix-git/doc/guix.texi:27748 guix-git/doc/guix.texi:29495 #, no-wrap msgid "@code{server} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27414 +#: guix-git/doc/guix.texi:27751 msgid "Optional URL of ACME server. Setting this overrides certbot's default, which is the Let's Encrypt server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27415 +#: guix-git/doc/guix.texi:27752 #, no-wrap msgid "@code{rsa-key-size} (default: @code{2048})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27417 +#: guix-git/doc/guix.texi:27754 msgid "Size of the RSA key." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27418 +#: guix-git/doc/guix.texi:27755 #, no-wrap msgid "@code{default-location} (default: @i{see below})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27427 +#: guix-git/doc/guix.texi:27764 msgid "The default @code{nginx-location-configuration}. Because @code{certbot} needs to be able to serve challenges and responses, it needs to be able to run a web server. It does so by extending the @code{nginx} web service with an @code{nginx-server-configuration} listening on the @var{domains} on port 80, and which has a @code{nginx-location-configuration} for the @code{/.well-known/} URI path subspace used by Let's Encrypt. @xref{Web Services}, for more on these nginx configuration data types." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27431 +#: guix-git/doc/guix.texi:27768 msgid "Requests to other URL paths will be matched by the @code{default-location}, which if present is added to all @code{nginx-server-configuration}s." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27435 +#: guix-git/doc/guix.texi:27772 msgid "By default, the @code{default-location} will issue a redirect from @code{http://@var{domain}/...} to @code{https://@var{domain}/...}, leaving you to define what to serve on your site via @code{https}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27437 +#: guix-git/doc/guix.texi:27774 msgid "Pass @code{#f} to not issue a default location." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27440 +#: guix-git/doc/guix.texi:27777 #, no-wrap msgid "{Data Type} certificate-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27443 +#: guix-git/doc/guix.texi:27780 msgid "Data type representing the configuration of a certificate. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27445 +#: guix-git/doc/guix.texi:27782 #, no-wrap msgid "@code{name} (default: @i{see below})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27449 +#: guix-git/doc/guix.texi:27786 msgid "This name is used by Certbot for housekeeping and in file paths; it doesn't affect the content of the certificate itself. To see certificate names, run @code{certbot certificates}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27451 +#: guix-git/doc/guix.texi:27788 msgid "Its default is the first provided domain." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27452 +#: guix-git/doc/guix.texi:27789 #, no-wrap msgid "@code{domains} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27455 +#: guix-git/doc/guix.texi:27792 msgid "The first domain provided will be the subject CN of the certificate, and all domains will be Subject Alternative Names on the certificate." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27456 +#: guix-git/doc/guix.texi:27793 #, no-wrap msgid "@code{challenge} (default: @code{#f})" msgstr "@code{challenge} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27463 +#: guix-git/doc/guix.texi:27800 msgid "The challenge type that has to be run by certbot. If @code{#f} is specified, default to the HTTP challenge. If a value is specified, defaults to the manual plugin (see @code{authentication-hook}, @code{cleanup-hook} and the documentation at @url{https://certbot.eff.org/docs/using.html#hooks}), and gives Let's Encrypt permission to log the public IP address of the requesting machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27464 +#: guix-git/doc/guix.texi:27801 #, fuzzy, no-wrap #| msgid "@code{chdir} (default: @code{#f})" msgid "@code{csr} (default: @code{#f})" msgstr "@code{chdir} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27471 +#: guix-git/doc/guix.texi:27808 msgid "File name of Certificate Signing Request (CSR) in DER or PEM format. If @code{#f} is specified, this argument will not be passed to certbot. If a value is specified, certbot will use it to obtain a certificate, instead of using a self-generated CSR. The domain-name(s) mentioned in @code{domains}, must be consistent with the domain-name(s) mentioned in CSR file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27472 +#: guix-git/doc/guix.texi:27809 #, no-wrap msgid "@code{authentication-hook} (default: @code{#f})" msgstr "@code{authentication-hook} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27478 +#: guix-git/doc/guix.texi:27815 msgid "Command to be run in a shell once for each certificate challenge to be answered. For this command, the shell variable @code{$CERTBOT_DOMAIN} will contain the domain being authenticated, @code{$CERTBOT_VALIDATION} contains the validation string and @code{$CERTBOT_TOKEN} contains the file name of the resource requested when performing an HTTP-01 challenge." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27479 +#: guix-git/doc/guix.texi:27816 #, no-wrap msgid "@code{cleanup-hook} (default: @code{#f})" msgstr "@code{cleanup-hook} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27485 +#: guix-git/doc/guix.texi:27822 msgid "Command to be run in a shell once for each certificate challenge that have been answered by the @code{auth-hook}. For this command, the shell variables available in the @code{auth-hook} script are still available, and additionally @code{$CERTBOT_AUTH_OUTPUT} will contain the standard output of the @code{auth-hook} script." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27486 +#: guix-git/doc/guix.texi:27823 #, no-wrap msgid "@code{deploy-hook} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27494 +#: guix-git/doc/guix.texi:27831 msgid "Command to be run in a shell once for each successfully issued certificate. For this command, the shell variable @code{$RENEWED_LINEAGE} will point to the config live subdirectory (for example, @samp{\"/etc/letsencrypt/live/example.com\"}) containing the new certificates and keys; the shell variable @code{$RENEWED_DOMAINS} will contain a space-delimited list of renewed certificate domains (for example, @samp{\"example.com www.example.com\"}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27501 +#: guix-git/doc/guix.texi:27838 msgid "For each @code{certificate-configuration}, the certificate is saved to @code{/etc/letsencrypt/live/@var{name}/fullchain.pem} and the key is saved to @code{/etc/letsencrypt/live/@var{name}/privkey.pem}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27503 +#: guix-git/doc/guix.texi:27840 #, no-wrap msgid "DNS (domain name system)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27504 +#: guix-git/doc/guix.texi:27841 #, no-wrap msgid "domain name system (DNS)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27512 +#: guix-git/doc/guix.texi:27849 msgid "The @code{(gnu services dns)} module provides services related to the @dfn{domain name system} (DNS). It provides a server service for hosting an @emph{authoritative} DNS server for multiple zones, slave or master. This service uses @uref{https://www.knot-dns.cz/, Knot DNS}. And also a caching and forwarding DNS server for the LAN, which uses @uref{http://www.thekelleys.org.uk/dnsmasq/doc.html, dnsmasq}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27513 +#: guix-git/doc/guix.texi:27850 #, no-wrap msgid "Knot Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27517 +#: guix-git/doc/guix.texi:27854 msgid "An example configuration of an authoritative server for two zones, one master and one slave, is:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27524 +#: guix-git/doc/guix.texi:27861 #, no-wrap msgid "" "(define-zone-entries example.org.zone\n" @@ -49397,7 +50051,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27531 +#: guix-git/doc/guix.texi:27868 #, no-wrap msgid "" "(define master-zone\n" @@ -49410,7 +50064,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27537 +#: guix-git/doc/guix.texi:27874 #, no-wrap msgid "" "(define slave-zone\n" @@ -49422,7 +50076,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27542 +#: guix-git/doc/guix.texi:27879 #, no-wrap msgid "" "(define plop-master\n" @@ -49433,7 +50087,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27551 +#: guix-git/doc/guix.texi:27888 #, no-wrap msgid "" "(operating-system\n" @@ -49447,857 +50101,857 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27553 +#: guix-git/doc/guix.texi:27890 #, no-wrap msgid "{Scheme Variable} knot-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27555 +#: guix-git/doc/guix.texi:27892 msgid "This is the type for the Knot DNS server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27563 +#: guix-git/doc/guix.texi:27900 msgid "Knot DNS is an authoritative DNS server, meaning that it can serve multiple zones, that is to say domain names you would buy from a registrar. This server is not a resolver, meaning that it can only resolve names for which it is authoritative. This server can be configured to serve zones as a master server or a slave server as a per-zone basis. Slave zones will get their data from masters, and will serve it as an authoritative server. From the point of view of a resolver, there is no difference between master and slave." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27565 +#: guix-git/doc/guix.texi:27902 msgid "The following data types are used to configure the Knot DNS server:" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27567 +#: guix-git/doc/guix.texi:27904 #, no-wrap msgid "{Data Type} knot-key-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27570 +#: guix-git/doc/guix.texi:27907 msgid "Data type representing a key. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27572 guix-git/doc/guix.texi:27592 -#: guix-git/doc/guix.texi:27707 guix-git/doc/guix.texi:27733 -#: guix-git/doc/guix.texi:27768 +#: guix-git/doc/guix.texi:27909 guix-git/doc/guix.texi:27929 +#: guix-git/doc/guix.texi:28044 guix-git/doc/guix.texi:28070 +#: guix-git/doc/guix.texi:28105 #, no-wrap msgid "@code{id} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27575 guix-git/doc/guix.texi:27595 +#: guix-git/doc/guix.texi:27912 guix-git/doc/guix.texi:27932 msgid "An identifier for other configuration fields to refer to this key. IDs must be unique and must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27576 +#: guix-git/doc/guix.texi:27913 #, no-wrap msgid "@code{algorithm} (default: @code{#f})" msgstr "@code{algorithm} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27580 +#: guix-git/doc/guix.texi:27917 msgid "The algorithm to use. Choose between @code{#f}, @code{'hmac-md5}, @code{'hmac-sha1}, @code{'hmac-sha224}, @code{'hmac-sha256}, @code{'hmac-sha384} and @code{'hmac-sha512}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27581 +#: guix-git/doc/guix.texi:27918 #, no-wrap msgid "@code{secret} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27583 +#: guix-git/doc/guix.texi:27920 msgid "The secret key itself." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27587 +#: guix-git/doc/guix.texi:27924 #, no-wrap msgid "{Data Type} knot-acl-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27590 +#: guix-git/doc/guix.texi:27927 msgid "Data type representing an Access Control List (ACL) configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27596 guix-git/doc/guix.texi:27711 +#: guix-git/doc/guix.texi:27933 guix-git/doc/guix.texi:28048 #, no-wrap msgid "@code{address} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27600 +#: guix-git/doc/guix.texi:27937 msgid "An ordered list of IP addresses, network subnets, or network ranges represented with strings. The query must match one of them. Empty value means that address match is not required." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27601 +#: guix-git/doc/guix.texi:27938 #, no-wrap msgid "@code{key} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27605 +#: guix-git/doc/guix.texi:27942 msgid "An ordered list of references to keys represented with strings. The string must match a key ID defined in a @code{knot-key-configuration}. No key means that a key is not require to match that ACL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27606 +#: guix-git/doc/guix.texi:27943 #, no-wrap msgid "@code{action} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27610 +#: guix-git/doc/guix.texi:27947 msgid "An ordered list of actions that are permitted or forbidden by this ACL@. Possible values are lists of zero or more elements from @code{'transfer}, @code{'notify} and @code{'update}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27611 +#: guix-git/doc/guix.texi:27948 #, no-wrap msgid "@code{deny?} (default: @code{#f})" msgstr "@code{deny?} (padrão: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27614 +#: guix-git/doc/guix.texi:27951 msgid "When true, the ACL defines restrictions. Listed actions are forbidden. When false, listed actions are allowed." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27618 +#: guix-git/doc/guix.texi:27955 #, no-wrap msgid "{Data Type} zone-entry" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27621 +#: guix-git/doc/guix.texi:27958 msgid "Data type representing a record entry in a zone file. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27623 +#: guix-git/doc/guix.texi:27960 #, no-wrap msgid "@code{name} (default: @code{\"@@\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27629 +#: guix-git/doc/guix.texi:27966 msgid "The name of the record. @code{\"@@\"} refers to the origin of the zone. Names are relative to the origin of the zone. For example, in the @code{example.org} zone, @code{\"ns.example.org\"} actually refers to @code{ns.example.org.example.org}. Names ending with a dot are absolute, which means that @code{\"ns.example.org.\"} refers to @code{ns.example.org}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27630 +#: guix-git/doc/guix.texi:27967 #, no-wrap msgid "@code{ttl} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27632 +#: guix-git/doc/guix.texi:27969 msgid "The Time-To-Live (TTL) of this record. If not set, the default TTL is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27633 +#: guix-git/doc/guix.texi:27970 #, no-wrap msgid "@code{class} (default: @code{\"IN\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27636 +#: guix-git/doc/guix.texi:27973 msgid "The class of the record. Knot currently supports only @code{\"IN\"} and partially @code{\"CH\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27637 +#: guix-git/doc/guix.texi:27974 #, no-wrap msgid "@code{type} (default: @code{\"A\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27641 +#: guix-git/doc/guix.texi:27978 msgid "The type of the record. Common types include A (IPv4 address), AAAA (IPv6 address), NS (Name Server) and MX (Mail eXchange). Many other types are defined." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27642 +#: guix-git/doc/guix.texi:27979 #, no-wrap msgid "@code{data} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27646 +#: guix-git/doc/guix.texi:27983 msgid "The data contained in the record. For instance an IP address associated with an A record, or a domain name associated with an NS record. Remember that domain names are relative to the origin unless they end with a dot." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27650 +#: guix-git/doc/guix.texi:27987 #, no-wrap msgid "{Data Type} zone-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27653 +#: guix-git/doc/guix.texi:27990 msgid "Data type representing the content of a zone file. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27662 +#: guix-git/doc/guix.texi:27999 msgid "The list of entries. The SOA record is taken care of, so you don't need to put it in the list of entries. This list should probably contain an entry for your primary authoritative DNS server. Other than using a list of entries directly, you can use @code{define-zone-entries} to define a object containing the list of entries more easily, that you can later pass to the @code{entries} field of the @code{zone-file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27663 +#: guix-git/doc/guix.texi:28000 #, no-wrap msgid "@code{origin} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27665 +#: guix-git/doc/guix.texi:28002 msgid "The name of your zone. This parameter cannot be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27666 +#: guix-git/doc/guix.texi:28003 #, no-wrap msgid "@code{ns} (default: @code{\"ns\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27671 +#: guix-git/doc/guix.texi:28008 msgid "The domain of your primary authoritative DNS server. The name is relative to the origin, unless it ends with a dot. It is mandatory that this primary DNS server corresponds to an NS record in the zone and that it is associated to an IP address in the list of entries." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27672 +#: guix-git/doc/guix.texi:28009 #, no-wrap msgid "@code{mail} (default: @code{\"hostmaster\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27675 +#: guix-git/doc/guix.texi:28012 msgid "An email address people can contact you at, as the owner of the zone. This is translated as @code{@@}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27676 +#: guix-git/doc/guix.texi:28013 #, no-wrap msgid "@code{serial} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27680 +#: guix-git/doc/guix.texi:28017 msgid "The serial number of the zone. As this is used to keep track of changes by both slaves and resolvers, it is mandatory that it @emph{never} decreases. Always increment it when you make a change in your zone." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27681 +#: guix-git/doc/guix.texi:28018 #, no-wrap msgid "@code{refresh} (default: @code{(* 2 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27685 +#: guix-git/doc/guix.texi:28022 msgid "The frequency at which slaves will do a zone transfer. This value is a number of seconds. It can be computed by multiplications or with @code{(string->duration)}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27686 +#: guix-git/doc/guix.texi:28023 #, no-wrap msgid "@code{retry} (default: @code{(* 15 60)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27689 +#: guix-git/doc/guix.texi:28026 msgid "The period after which a slave will retry to contact its master when it fails to do so a first time." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27690 +#: guix-git/doc/guix.texi:28027 #, no-wrap msgid "@code{expiry} (default: @code{(* 14 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27694 +#: guix-git/doc/guix.texi:28031 msgid "Default TTL of records. Existing records are considered correct for at most this amount of time. After this period, resolvers will invalidate their cache and check again that it still exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27695 +#: guix-git/doc/guix.texi:28032 #, no-wrap msgid "@code{nx} (default: @code{3600})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27698 +#: guix-git/doc/guix.texi:28035 msgid "Default TTL of inexistent records. This delay is usually short because you want your new domains to reach everyone quickly." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27702 +#: guix-git/doc/guix.texi:28039 #, no-wrap msgid "{Data Type} knot-remote-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27705 +#: guix-git/doc/guix.texi:28042 msgid "Data type representing a remote configuration. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27710 +#: guix-git/doc/guix.texi:28047 msgid "An identifier for other configuration fields to refer to this remote. IDs must be unique and must not be empty." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27715 +#: guix-git/doc/guix.texi:28052 msgid "An ordered list of destination IP addresses. Addresses are tried in sequence. An optional port can be given with the @@ separator. For instance: @code{(list \"1.2.3.4\" \"2.3.4.5@@53\")}. Default port is 53." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27716 +#: guix-git/doc/guix.texi:28053 #, no-wrap msgid "@code{via} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27720 +#: guix-git/doc/guix.texi:28057 msgid "An ordered list of source IP addresses. An empty list will have Knot choose an appropriate source IP@. An optional port can be given with the @@ separator. The default is to choose at random." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27724 +#: guix-git/doc/guix.texi:28061 msgid "A reference to a key, that is a string containing the identifier of a key defined in a @code{knot-key-configuration} field." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27728 +#: guix-git/doc/guix.texi:28065 #, no-wrap msgid "{Data Type} knot-keystore-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27731 +#: guix-git/doc/guix.texi:28068 msgid "Data type representing a keystore to hold dnssec keys. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27735 +#: guix-git/doc/guix.texi:28072 msgid "The id of the keystore. It must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27736 +#: guix-git/doc/guix.texi:28073 #, no-wrap msgid "@code{backend} (default: @code{'pem})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27738 +#: guix-git/doc/guix.texi:28075 msgid "The backend to store the keys in. Can be @code{'pem} or @code{'pkcs11}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27739 +#: guix-git/doc/guix.texi:28076 #, no-wrap msgid "@code{config} (default: @code{\"/var/lib/knot/keys/keys\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27743 +#: guix-git/doc/guix.texi:28080 msgid "The configuration string of the backend. An example for the PKCS#11 is: @code{\"pkcs11:token=knot;pin-value=1234 /gnu/store/.../lib/pkcs11/libsofthsm2.so\"}. For the pem backend, the string represents a path in the file system." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27747 +#: guix-git/doc/guix.texi:28084 #, no-wrap msgid "{Data Type} knot-policy-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27751 +#: guix-git/doc/guix.texi:28088 msgid "Data type representing a dnssec policy. Knot DNS is able to automatically sign your zones. It can either generate and manage your keys automatically or use keys that you generate." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27758 +#: guix-git/doc/guix.texi:28095 msgid "Dnssec is usually implemented using two keys: a Key Signing Key (KSK) that is used to sign the second, and a Zone Signing Key (ZSK) that is used to sign the zone. In order to be trusted, the KSK needs to be present in the parent zone (usually a top-level domain). If your registrar supports dnssec, you will have to send them your KSK's hash so they can add a DS record in their zone. This is not automated and need to be done each time you change your KSK." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27764 +#: guix-git/doc/guix.texi:28101 msgid "The policy also defines the lifetime of keys. Usually, ZSK can be changed easily and use weaker cryptographic functions (they use lower parameters) in order to sign records quickly, so they are changed often. The KSK however requires manual interaction with the registrar, so they are changed less often and use stronger parameters because they sign only one record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27766 +#: guix-git/doc/guix.texi:28103 msgid "This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27770 +#: guix-git/doc/guix.texi:28107 msgid "The id of the policy. It must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27771 +#: guix-git/doc/guix.texi:28108 #, no-wrap msgid "@code{keystore} (default: @code{\"default\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27776 +#: guix-git/doc/guix.texi:28113 msgid "A reference to a keystore, that is a string containing the identifier of a keystore defined in a @code{knot-keystore-configuration} field. The @code{\"default\"} identifier means the default keystore (a kasp database that was setup by this service)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27777 +#: guix-git/doc/guix.texi:28114 #, no-wrap msgid "@code{manual?} (default: @code{#f})" msgstr "@code{manual?} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27779 +#: guix-git/doc/guix.texi:28116 msgid "Whether the key management is manual or automatic." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27780 +#: guix-git/doc/guix.texi:28117 #, no-wrap msgid "@code{single-type-signing?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27782 +#: guix-git/doc/guix.texi:28119 msgid "When @code{#t}, use the Single-Type Signing Scheme." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27783 +#: guix-git/doc/guix.texi:28120 #, no-wrap msgid "@code{algorithm} (default: @code{\"ecdsap256sha256\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27785 +#: guix-git/doc/guix.texi:28122 msgid "An algorithm of signing keys and issued signatures." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27786 +#: guix-git/doc/guix.texi:28123 #, no-wrap msgid "@code{ksk-size} (default: @code{256})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27789 +#: guix-git/doc/guix.texi:28126 msgid "The length of the KSK@. Note that this value is correct for the default algorithm, but would be unsecure for other algorithms." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27790 +#: guix-git/doc/guix.texi:28127 #, no-wrap msgid "@code{zsk-size} (default: @code{256})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27793 +#: guix-git/doc/guix.texi:28130 msgid "The length of the ZSK@. Note that this value is correct for the default algorithm, but would be unsecure for other algorithms." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27794 +#: guix-git/doc/guix.texi:28131 #, no-wrap msgid "@code{dnskey-ttl} (default: @code{'default})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27797 +#: guix-git/doc/guix.texi:28134 msgid "The TTL value for DNSKEY records added into zone apex. The special @code{'default} value means same as the zone SOA TTL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27798 +#: guix-git/doc/guix.texi:28135 #, no-wrap msgid "@code{zsk-lifetime} (default: @code{(* 30 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27800 +#: guix-git/doc/guix.texi:28137 msgid "The period between ZSK publication and the next rollover initiation." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27801 +#: guix-git/doc/guix.texi:28138 #, no-wrap msgid "@code{propagation-delay} (default: @code{(* 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27804 +#: guix-git/doc/guix.texi:28141 msgid "An extra delay added for each key rollover step. This value should be high enough to cover propagation of data from the master server to all slaves." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27805 +#: guix-git/doc/guix.texi:28142 #, no-wrap msgid "@code{rrsig-lifetime} (default: @code{(* 14 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27807 +#: guix-git/doc/guix.texi:28144 msgid "A validity period of newly issued signatures." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27808 +#: guix-git/doc/guix.texi:28145 #, no-wrap msgid "@code{rrsig-refresh} (default: @code{(* 7 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27810 +#: guix-git/doc/guix.texi:28147 msgid "A period how long before a signature expiration the signature will be refreshed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27811 +#: guix-git/doc/guix.texi:28148 #, no-wrap msgid "@code{nsec3?} (default: @code{#f})" msgstr "@code{nsec3?} (padrão: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27813 +#: guix-git/doc/guix.texi:28150 msgid "When @code{#t}, NSEC3 will be used instead of NSEC." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27814 +#: guix-git/doc/guix.texi:28151 #, no-wrap msgid "@code{nsec3-iterations} (default: @code{5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27816 +#: guix-git/doc/guix.texi:28153 msgid "The number of additional times the hashing is performed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27817 +#: guix-git/doc/guix.texi:28154 #, no-wrap msgid "@code{nsec3-salt-length} (default: @code{8})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27820 +#: guix-git/doc/guix.texi:28157 msgid "The length of a salt field in octets, which is appended to the original owner name before hashing." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27821 +#: guix-git/doc/guix.texi:28158 #, no-wrap msgid "@code{nsec3-salt-lifetime} (default: @code{(* 30 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27823 +#: guix-git/doc/guix.texi:28160 msgid "The validity period of newly issued salt field." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27827 +#: guix-git/doc/guix.texi:28164 #, no-wrap msgid "{Data Type} knot-zone-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27830 +#: guix-git/doc/guix.texi:28167 msgid "Data type representing a zone served by Knot. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27832 +#: guix-git/doc/guix.texi:28169 #, no-wrap msgid "@code{domain} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27834 +#: guix-git/doc/guix.texi:28171 msgid "The domain served by this configuration. It must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27835 +#: guix-git/doc/guix.texi:28172 #, no-wrap msgid "@code{file} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27838 +#: guix-git/doc/guix.texi:28175 msgid "The file where this zone is saved. This parameter is ignored by master zones. Empty means default location that depends on the domain name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27839 +#: guix-git/doc/guix.texi:28176 #, no-wrap msgid "@code{zone} (default: @code{(zone-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27842 +#: guix-git/doc/guix.texi:28179 msgid "The content of the zone file. This parameter is ignored by slave zones. It must contain a zone-file record." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27843 +#: guix-git/doc/guix.texi:28180 #, no-wrap msgid "@code{master} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27846 +#: guix-git/doc/guix.texi:28183 msgid "A list of master remotes. When empty, this zone is a master. When set, this zone is a slave. This is a list of remotes identifiers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27847 +#: guix-git/doc/guix.texi:28184 #, no-wrap msgid "@code{ddns-master} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27850 +#: guix-git/doc/guix.texi:28187 msgid "The main master. When empty, it defaults to the first master in the list of masters." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27851 +#: guix-git/doc/guix.texi:28188 #, no-wrap msgid "@code{notify} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27853 +#: guix-git/doc/guix.texi:28190 msgid "A list of slave remote identifiers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27854 +#: guix-git/doc/guix.texi:28191 #, no-wrap msgid "@code{acl} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27856 +#: guix-git/doc/guix.texi:28193 msgid "A list of acl identifiers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27857 +#: guix-git/doc/guix.texi:28194 #, no-wrap msgid "@code{semantic-checks?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27859 +#: guix-git/doc/guix.texi:28196 msgid "When set, this adds more semantic checks to the zone." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27860 +#: guix-git/doc/guix.texi:28197 #, no-wrap msgid "@code{zonefile-sync} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27863 +#: guix-git/doc/guix.texi:28200 msgid "The delay between a modification in memory and on disk. 0 means immediate synchronization." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27864 +#: guix-git/doc/guix.texi:28201 #, no-wrap msgid "@code{zonefile-load} (default: @code{#f})" msgstr "@code{zonefile-load} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27867 +#: guix-git/doc/guix.texi:28204 msgid "The way the zone file contents are applied during zone load. Possible values are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27869 +#: guix-git/doc/guix.texi:28206 #, no-wrap msgid "@code{#f} for using the default value from Knot," msgstr "" #. type: item -#: guix-git/doc/guix.texi:27870 +#: guix-git/doc/guix.texi:28207 #, no-wrap msgid "@code{'none} for not using the zone file at all," msgstr "" #. type: item -#: guix-git/doc/guix.texi:27871 +#: guix-git/doc/guix.texi:28208 #, no-wrap msgid "@code{'difference} for computing the difference between already available" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:27873 +#: guix-git/doc/guix.texi:28210 msgid "contents and zone contents and applying it to the current zone contents," msgstr "" #. type: item -#: guix-git/doc/guix.texi:27873 +#: guix-git/doc/guix.texi:28210 #, no-wrap msgid "@code{'difference-no-serial} for the same as @code{'difference}, but" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:27876 +#: guix-git/doc/guix.texi:28213 msgid "ignoring the SOA serial in the zone file, while the server takes care of it automatically." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27876 +#: guix-git/doc/guix.texi:28213 #, no-wrap msgid "@code{'whole} for loading zone contents from the zone file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27879 +#: guix-git/doc/guix.texi:28216 #, no-wrap msgid "@code{journal-content} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27884 +#: guix-git/doc/guix.texi:28221 msgid "The way the journal is used to store zone and its changes. Possible values are @code{'none} to not use it at all, @code{'changes} to store changes and @code{'all} to store contents. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27885 +#: guix-git/doc/guix.texi:28222 #, no-wrap msgid "@code{max-journal-usage} (default: @code{#f})" msgstr "@code{max-journal-usage} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27888 +#: guix-git/doc/guix.texi:28225 msgid "The maximum size for the journal on disk. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27889 +#: guix-git/doc/guix.texi:28226 #, no-wrap msgid "@code{max-journal-depth} (default: @code{#f})" msgstr "@code{max-journal-depth} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27892 +#: guix-git/doc/guix.texi:28229 msgid "The maximum size of the history. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27893 +#: guix-git/doc/guix.texi:28230 #, no-wrap msgid "@code{max-zone-size} (default: @code{#f})" msgstr "@code{max-zone-size} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27897 +#: guix-git/doc/guix.texi:28234 msgid "The maximum size of the zone file. This limit is enforced for incoming transfer and updates. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27898 +#: guix-git/doc/guix.texi:28235 #, no-wrap msgid "@code{dnssec-policy} (default: @code{#f})" msgstr "@code{dnssec-policy} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27902 +#: guix-git/doc/guix.texi:28239 msgid "A reference to a @code{knot-policy-configuration} record, or the special name @code{\"default\"}. If the value is @code{#f}, there is no dnssec signing on this zone." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27903 +#: guix-git/doc/guix.texi:28240 #, no-wrap msgid "@code{serial-policy} (default: @code{'increment})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27905 +#: guix-git/doc/guix.texi:28242 msgid "A policy between @code{'increment} and @code{'unixtime}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27909 +#: guix-git/doc/guix.texi:28246 #, no-wrap msgid "{Data Type} knot-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27912 +#: guix-git/doc/guix.texi:28249 msgid "Data type representing the Knot configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27914 +#: guix-git/doc/guix.texi:28251 #, no-wrap msgid "@code{knot} (default: @code{knot})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27916 +#: guix-git/doc/guix.texi:28253 msgid "The Knot package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27917 +#: guix-git/doc/guix.texi:28254 #, no-wrap msgid "@code{run-directory} (default: @code{\"/var/run/knot\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27919 +#: guix-git/doc/guix.texi:28256 msgid "The run directory. This directory will be used for pid file and sockets." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27920 +#: guix-git/doc/guix.texi:28257 #, no-wrap msgid "@code{includes} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27923 +#: guix-git/doc/guix.texi:28260 msgid "A list of strings or file-like objects denoting other files that must be included at the top of the configuration file." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27924 +#: guix-git/doc/guix.texi:28261 #, no-wrap msgid "secrets, Knot service" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27930 +#: guix-git/doc/guix.texi:28267 msgid "This can be used to manage secrets out-of-band. For example, secret keys may be stored in an out-of-band file not managed by Guix, and thus not visible in @file{/gnu/store}---e.g., you could store secret key configuration in @file{/etc/knot/secrets.conf} and add this file to the @code{includes} list." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27935 +#: guix-git/doc/guix.texi:28272 msgid "One can generate a secret tsig key (for nsupdate and zone transfers with the keymgr command from the knot package. Note that the package is not automatically installed by the service. The following example shows how to generate a new tsig key:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:27939 +#: guix-git/doc/guix.texi:28276 #, no-wrap msgid "" "keymgr -t mysecret > /etc/knot/secrets.conf\n" @@ -50305,106 +50959,106 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27945 +#: guix-git/doc/guix.texi:28282 msgid "Also note that the generated key will be named @var{mysecret}, so it is the name that needs to be used in the @var{key} field of the @code{knot-acl-configuration} record and in other places that need to refer to that key." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27947 +#: guix-git/doc/guix.texi:28284 msgid "It can also be used to add configuration not supported by this interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27948 +#: guix-git/doc/guix.texi:28285 #, no-wrap msgid "@code{listen-v4} (default: @code{\"0.0.0.0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27950 guix-git/doc/guix.texi:27953 +#: guix-git/doc/guix.texi:28287 guix-git/doc/guix.texi:28290 msgid "An ip address on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27951 +#: guix-git/doc/guix.texi:28288 #, no-wrap msgid "@code{listen-v6} (default: @code{\"::\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27954 +#: guix-git/doc/guix.texi:28291 #, no-wrap msgid "@code{listen-port} (default: @code{53})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27956 +#: guix-git/doc/guix.texi:28293 msgid "A port on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27957 +#: guix-git/doc/guix.texi:28294 #, no-wrap msgid "@code{keys} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27959 +#: guix-git/doc/guix.texi:28296 msgid "The list of knot-key-configuration used by this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27960 +#: guix-git/doc/guix.texi:28297 #, no-wrap msgid "@code{acls} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27962 +#: guix-git/doc/guix.texi:28299 msgid "The list of knot-acl-configuration used by this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27963 +#: guix-git/doc/guix.texi:28300 #, no-wrap msgid "@code{remotes} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27965 +#: guix-git/doc/guix.texi:28302 msgid "The list of knot-remote-configuration used by this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27966 +#: guix-git/doc/guix.texi:28303 #, no-wrap msgid "@code{zones} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27968 +#: guix-git/doc/guix.texi:28305 msgid "The list of knot-zone-configuration used by this configuration." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27972 +#: guix-git/doc/guix.texi:28309 #, no-wrap msgid "Knot Resolver Service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27974 +#: guix-git/doc/guix.texi:28311 #, no-wrap msgid "{Scheme Variable} knot-resolver-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27977 +#: guix-git/doc/guix.texi:28314 msgid "This is the type of the knot resolver service, whose value should be an @code{knot-resolver-configuration} object as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27987 +#: guix-git/doc/guix.texi:28324 #, no-wrap msgid "" "(service knot-resolver-service-type\n" @@ -50418,73 +51072,73 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27990 +#: guix-git/doc/guix.texi:28327 msgid "For more information, refer its @url{https://knot-resolver.readthedocs.org/en/stable/daemon.html#configuration, manual}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27992 +#: guix-git/doc/guix.texi:28329 #, no-wrap msgid "{Data Type} knot-resolver-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27994 +#: guix-git/doc/guix.texi:28331 msgid "Data type representing the configuration of knot-resolver." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27996 +#: guix-git/doc/guix.texi:28333 #, no-wrap msgid "@code{package} (default: @var{knot-resolver})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27998 +#: guix-git/doc/guix.texi:28335 msgid "Package object of the knot DNS resolver." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27999 +#: guix-git/doc/guix.texi:28336 #, no-wrap msgid "@code{kresd-config-file} (default: %kresd.conf)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28002 +#: guix-git/doc/guix.texi:28339 msgid "File-like object of the kresd configuration file to use, by default it will listen on @code{127.0.0.1} and @code{::1}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28003 +#: guix-git/doc/guix.texi:28340 #, no-wrap msgid "@code{garbage-collection-interval} (default: 1000)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28005 +#: guix-git/doc/guix.texi:28342 msgid "Number of milliseconds for @code{kres-cache-gc} to periodically trim the cache." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28010 +#: guix-git/doc/guix.texi:28347 #, no-wrap msgid "Dnsmasq Service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28012 +#: guix-git/doc/guix.texi:28349 #, no-wrap msgid "{Scheme Variable} dnsmasq-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28015 +#: guix-git/doc/guix.texi:28352 msgid "This is the type of the dnsmasq service, whose value should be an @code{dnsmasq-configuration} object as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28021 +#: guix-git/doc/guix.texi:28358 #, no-wrap msgid "" "(service dnsmasq-service-type\n" @@ -50494,122 +51148,122 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28024 +#: guix-git/doc/guix.texi:28361 #, no-wrap msgid "{Data Type} dnsmasq-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28026 +#: guix-git/doc/guix.texi:28363 msgid "Data type representing the configuration of dnsmasq." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28028 +#: guix-git/doc/guix.texi:28365 #, no-wrap msgid "@code{package} (default: @var{dnsmasq})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28030 +#: guix-git/doc/guix.texi:28367 msgid "Package object of the dnsmasq server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28031 +#: guix-git/doc/guix.texi:28368 #, no-wrap msgid "@code{no-hosts?} (default: @code{#f})" msgstr "@code{no-hosts?} (padrão: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28033 +#: guix-git/doc/guix.texi:28370 msgid "When true, don't read the hostnames in /etc/hosts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28034 +#: guix-git/doc/guix.texi:28371 #, no-wrap msgid "@code{port} (default: @code{53})" msgstr "@code{porta} (default: @code{53})" #. type: table -#: guix-git/doc/guix.texi:28037 +#: guix-git/doc/guix.texi:28374 msgid "The port to listen on. Setting this to zero completely disables DNS responses, leaving only DHCP and/or TFTP functions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28038 +#: guix-git/doc/guix.texi:28375 #, no-wrap msgid "@code{local-service?} (default: @code{#t})" msgstr "@code{local-service?} (default: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:28041 +#: guix-git/doc/guix.texi:28378 msgid "Accept DNS queries only from hosts whose address is on a local subnet, ie a subnet for which an interface exists on the server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28042 +#: guix-git/doc/guix.texi:28379 #, no-wrap msgid "@code{listen-addresses} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28044 +#: guix-git/doc/guix.texi:28381 msgid "Listen on the given IP addresses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28045 +#: guix-git/doc/guix.texi:28382 #, no-wrap msgid "@code{resolv-file} (default: @code{\"/etc/resolv.conf\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28047 +#: guix-git/doc/guix.texi:28384 msgid "The file to read the IP address of the upstream nameservers from." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28048 +#: guix-git/doc/guix.texi:28385 #, no-wrap msgid "@code{no-resolv?} (default: @code{#f})" msgstr "@code{no-resolv?} (padrão: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28050 +#: guix-git/doc/guix.texi:28387 msgid "When true, don't read @var{resolv-file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28051 +#: guix-git/doc/guix.texi:28388 #, no-wrap msgid "@code{servers} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28053 +#: guix-git/doc/guix.texi:28390 msgid "Specify IP address of upstream servers directly." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28054 +#: guix-git/doc/guix.texi:28391 #, no-wrap msgid "@code{addresses} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28058 +#: guix-git/doc/guix.texi:28395 msgid "For each entry, specify an IP address to return for any host in the given domains. Queries in the domains are never forwarded and always replied to with the specified IP address." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28060 +#: guix-git/doc/guix.texi:28397 msgid "This is useful for redirecting hosts locally, for example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28069 +#: guix-git/doc/guix.texi:28406 #, no-wrap msgid "" "(service dnsmasq-service-type\n" @@ -50622,1007 +51276,1007 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28072 +#: guix-git/doc/guix.texi:28409 msgid "Note that rules in @file{/etc/hosts} take precedence over this." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28073 +#: guix-git/doc/guix.texi:28410 #, no-wrap msgid "@code{cache-size} (default: @code{150})" msgstr "@code{cache-size} (default: @code{150})" #. type: table -#: guix-git/doc/guix.texi:28076 +#: guix-git/doc/guix.texi:28413 msgid "Set the size of dnsmasq's cache. Setting the cache size to zero disables caching." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28077 +#: guix-git/doc/guix.texi:28414 #, no-wrap msgid "@code{negative-cache?} (default: @code{#t})" msgstr "@code{negative-cache?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:28079 +#: guix-git/doc/guix.texi:28416 msgid "When false, disable negative caching." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28080 +#: guix-git/doc/guix.texi:28417 #, no-wrap msgid "@code{tftp-enable?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28082 +#: guix-git/doc/guix.texi:28419 msgid "Whether to enable the built-in TFTP server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28083 +#: guix-git/doc/guix.texi:28420 #, no-wrap msgid "@code{tftp-no-fail?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28085 +#: guix-git/doc/guix.texi:28422 msgid "If true, does not fail dnsmasq if the TFTP server could not start up." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28086 +#: guix-git/doc/guix.texi:28423 #, no-wrap msgid "@code{tftp-single-port?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28088 +#: guix-git/doc/guix.texi:28425 msgid "Whether to use only one single port for TFTP." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28089 +#: guix-git/doc/guix.texi:28426 #, no-wrap msgid "@code{tftp-secure?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28091 +#: guix-git/doc/guix.texi:28428 msgid "If true, only files owned by the user running the dnsmasq process are accessible." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28095 +#: guix-git/doc/guix.texi:28432 msgid "If dnsmasq is being run as root, different rules apply: @code{tftp-secure?} has no effect, but only files which have the world-readable bit set are accessible." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28096 +#: guix-git/doc/guix.texi:28433 #, no-wrap msgid "@code{tftp-max} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28098 +#: guix-git/doc/guix.texi:28435 msgid "If set, sets the maximal number of concurrent connections allowed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28099 +#: guix-git/doc/guix.texi:28436 #, no-wrap msgid "@code{tftp-mtu} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28101 +#: guix-git/doc/guix.texi:28438 msgid "If set, sets the MTU for TFTP packets to that value." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28102 +#: guix-git/doc/guix.texi:28439 #, no-wrap msgid "@code{tftp-no-blocksize?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28104 +#: guix-git/doc/guix.texi:28441 msgid "If true, stops the TFTP server from negotiating the blocksize with a client." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28105 +#: guix-git/doc/guix.texi:28442 #, no-wrap msgid "@code{tftp-lowercase?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28107 +#: guix-git/doc/guix.texi:28444 msgid "Whether to convert all filenames in TFTP requests to lowercase." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28108 +#: guix-git/doc/guix.texi:28445 #, no-wrap msgid "@code{tftp-port-range} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28111 +#: guix-git/doc/guix.texi:28448 msgid "If set, fixes the dynamical ports (one per client) to the given range (@code{\",\"})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28112 +#: guix-git/doc/guix.texi:28449 #, no-wrap msgid "@code{tftp-root} (default: @code{/var/empty,lo})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28119 +#: guix-git/doc/guix.texi:28456 msgid "Look for files to transfer using TFTP relative to the given directory. When this is set, TFTP paths which include @samp{..} are rejected, to stop clients getting outside the specified root. Absolute paths (starting with @samp{/}) are allowed, but they must be within the TFTP-root. If the optional interface argument is given, the directory is only used for TFTP requests via that interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28120 +#: guix-git/doc/guix.texi:28457 #, no-wrap msgid "@code{tftp-unique-root} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28125 +#: guix-git/doc/guix.texi:28462 msgid "If set, add the IP or hardware address of the TFTP client as a path component on the end of the TFTP-root. Only valid if a TFTP root is set and the directory exists. Defaults to adding IP address (in standard dotted-quad format)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28134 +#: guix-git/doc/guix.texi:28471 msgid "For instance, if @option{--tftp-root} is @samp{/tftp} and client @samp{1.2.3.4} requests file @file{myfile} then the effective path will be @file{/tftp/1.2.3.4/myfile} if @file{/tftp/1.2.3.4} exists or @file{/tftp/myfile} otherwise. When @samp{=mac} is specified it will append the MAC address instead, using lowercase zero padded digits separated by dashes, e.g.: @samp{01-02-03-04-aa-bb}. Note that resolving MAC addresses is only possible if the client is in the local network or obtained a DHCP lease from dnsmasq." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28138 +#: guix-git/doc/guix.texi:28475 #, no-wrap msgid "ddclient Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28140 +#: guix-git/doc/guix.texi:28477 #, no-wrap msgid "ddclient" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28144 +#: guix-git/doc/guix.texi:28481 msgid "The ddclient service described below runs the ddclient daemon, which takes care of automatically updating DNS entries for service providers such as @uref{https://dyn.com/dns/, Dyn}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28147 +#: guix-git/doc/guix.texi:28484 msgid "The following example show instantiates the service with its default configuration:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28150 +#: guix-git/doc/guix.texi:28487 #, no-wrap msgid "(service ddclient-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28159 +#: guix-git/doc/guix.texi:28496 msgid "Note that ddclient needs to access credentials that are stored in a @dfn{secret file}, by default @file{/etc/ddclient/secrets} (see @code{secret-file} below). You are expected to create this file manually, in an ``out-of-band'' fashion (you @emph{could} make this file part of the service configuration, for instance by using @code{plain-file}, but it will be world-readable @i{via} @file{/gnu/store}). See the examples in the @file{share/ddclient} directory of the @code{ddclient} package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28163 +#: guix-git/doc/guix.texi:28500 msgid "Available @code{ddclient-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28164 +#: guix-git/doc/guix.texi:28501 #, no-wrap msgid "{@code{ddclient-configuration} parameter} package ddclient" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28166 +#: guix-git/doc/guix.texi:28503 msgid "The ddclient package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28169 +#: guix-git/doc/guix.texi:28506 #, no-wrap msgid "{@code{ddclient-configuration} parameter} integer daemon" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28171 +#: guix-git/doc/guix.texi:28508 msgid "The period after which ddclient will retry to check IP and domain name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28173 +#: guix-git/doc/guix.texi:28510 msgid "Defaults to @samp{300}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28176 +#: guix-git/doc/guix.texi:28513 #, no-wrap msgid "{@code{ddclient-configuration} parameter} boolean syslog" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28178 +#: guix-git/doc/guix.texi:28515 msgid "Use syslog for the output." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28183 +#: guix-git/doc/guix.texi:28520 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string mail" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28185 +#: guix-git/doc/guix.texi:28522 msgid "Mail to user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28187 guix-git/doc/guix.texi:28194 -#: guix-git/doc/guix.texi:29996 +#: guix-git/doc/guix.texi:28524 guix-git/doc/guix.texi:28531 +#: guix-git/doc/guix.texi:30361 msgid "Defaults to @samp{\"root\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28190 +#: guix-git/doc/guix.texi:28527 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string mail-failure" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28192 +#: guix-git/doc/guix.texi:28529 msgid "Mail failed update to user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28197 +#: guix-git/doc/guix.texi:28534 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string pid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28199 +#: guix-git/doc/guix.texi:28536 msgid "The ddclient PID file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28201 +#: guix-git/doc/guix.texi:28538 msgid "Defaults to @samp{\"/var/run/ddclient/ddclient.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28204 +#: guix-git/doc/guix.texi:28541 #, no-wrap msgid "{@code{ddclient-configuration} parameter} boolean ssl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28206 +#: guix-git/doc/guix.texi:28543 msgid "Enable SSL support." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28211 +#: guix-git/doc/guix.texi:28548 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28214 +#: guix-git/doc/guix.texi:28551 msgid "Specifies the user name or ID that is used when running ddclient program." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28216 guix-git/doc/guix.texi:28223 +#: guix-git/doc/guix.texi:28553 guix-git/doc/guix.texi:28560 msgid "Defaults to @samp{\"ddclient\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28219 +#: guix-git/doc/guix.texi:28556 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28221 +#: guix-git/doc/guix.texi:28558 msgid "Group of the user who will run the ddclient program." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28226 +#: guix-git/doc/guix.texi:28563 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string secret-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28230 +#: guix-git/doc/guix.texi:28567 msgid "Secret file which will be appended to @file{ddclient.conf} file. This file contains credentials for use by ddclient. You are expected to create it manually." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28232 +#: guix-git/doc/guix.texi:28569 msgid "Defaults to @samp{\"/etc/ddclient/secrets.conf\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28235 +#: guix-git/doc/guix.texi:28572 #, no-wrap msgid "{@code{ddclient-configuration} parameter} list extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28237 +#: guix-git/doc/guix.texi:28574 msgid "Extra options will be appended to @file{ddclient.conf} file." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28248 +#: guix-git/doc/guix.texi:28585 #, no-wrap msgid "VPN (virtual private network)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28249 +#: guix-git/doc/guix.texi:28586 #, no-wrap msgid "virtual private network (VPN)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28253 +#: guix-git/doc/guix.texi:28590 msgid "The @code{(gnu services vpn)} module provides services related to @dfn{virtual private networks} (VPNs)." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28254 +#: guix-git/doc/guix.texi:28591 #, no-wrap msgid "Bitmask" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28256 +#: guix-git/doc/guix.texi:28593 #, fuzzy, no-wrap msgid "{Scheme Variable} bitmask-service-type" msgstr "guix-publish-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28261 +#: guix-git/doc/guix.texi:28598 msgid "A service type for the @uref{https://bitmask.net, Bitmask} VPN client. It makes the client available in the system and loads its polkit policy. Please note that the client expects an active polkit-agent, which is either run by your desktop-environment or should be run manually." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28263 +#: guix-git/doc/guix.texi:28600 #, no-wrap msgid "OpenVPN" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28267 +#: guix-git/doc/guix.texi:28604 msgid "It provides a @emph{client} service for your machine to connect to a VPN, and a @emph{server} service for your machine to host a VPN@." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28268 +#: guix-git/doc/guix.texi:28605 #, no-wrap msgid "{Scheme Procedure} openvpn-client-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28270 +#: guix-git/doc/guix.texi:28607 msgid "[#:config (openvpn-client-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28272 +#: guix-git/doc/guix.texi:28609 msgid "Return a service that runs @command{openvpn}, a VPN daemon, as a client." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28274 +#: guix-git/doc/guix.texi:28611 #, no-wrap msgid "{Scheme Procedure} openvpn-server-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28276 +#: guix-git/doc/guix.texi:28613 msgid "[#:config (openvpn-server-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28278 +#: guix-git/doc/guix.texi:28615 msgid "Return a service that runs @command{openvpn}, a VPN daemon, as a server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28280 +#: guix-git/doc/guix.texi:28617 msgid "Both can be run simultaneously." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28285 +#: guix-git/doc/guix.texi:28622 msgid "Available @code{openvpn-client-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28286 +#: guix-git/doc/guix.texi:28623 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} package openvpn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28288 guix-git/doc/guix.texi:28443 +#: guix-git/doc/guix.texi:28625 guix-git/doc/guix.texi:28780 msgid "The OpenVPN package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28291 +#: guix-git/doc/guix.texi:28628 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28293 guix-git/doc/guix.texi:28448 +#: guix-git/doc/guix.texi:28630 guix-git/doc/guix.texi:28785 msgid "The OpenVPN pid file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28295 guix-git/doc/guix.texi:28450 +#: guix-git/doc/guix.texi:28632 guix-git/doc/guix.texi:28787 msgid "Defaults to @samp{\"/var/run/openvpn/openvpn.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28298 +#: guix-git/doc/guix.texi:28635 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} proto proto" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28301 guix-git/doc/guix.texi:28456 +#: guix-git/doc/guix.texi:28638 guix-git/doc/guix.texi:28793 msgid "The protocol (UDP or TCP) used to open a channel between clients and servers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28303 guix-git/doc/guix.texi:28458 +#: guix-git/doc/guix.texi:28640 guix-git/doc/guix.texi:28795 msgid "Defaults to @samp{udp}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28306 +#: guix-git/doc/guix.texi:28643 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} dev dev" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28308 guix-git/doc/guix.texi:28463 +#: guix-git/doc/guix.texi:28645 guix-git/doc/guix.texi:28800 msgid "The device type used to represent the VPN connection." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28310 guix-git/doc/guix.texi:28465 +#: guix-git/doc/guix.texi:28647 guix-git/doc/guix.texi:28802 msgid "Defaults to @samp{tun}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28316 guix-git/doc/guix.texi:28471 +#: guix-git/doc/guix.texi:28653 guix-git/doc/guix.texi:28808 msgid "If you do not have some of these files (eg.@: you use a username and password), you can disable any of the following three fields by setting it to @code{'disabled}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28317 +#: guix-git/doc/guix.texi:28654 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string ca" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28319 guix-git/doc/guix.texi:28474 +#: guix-git/doc/guix.texi:28656 guix-git/doc/guix.texi:28811 msgid "The certificate authority to check connections against." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28321 guix-git/doc/guix.texi:28476 +#: guix-git/doc/guix.texi:28658 guix-git/doc/guix.texi:28813 msgid "Defaults to @samp{\"/etc/openvpn/ca.crt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28324 +#: guix-git/doc/guix.texi:28661 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28327 guix-git/doc/guix.texi:28482 +#: guix-git/doc/guix.texi:28664 guix-git/doc/guix.texi:28819 msgid "The certificate of the machine the daemon is running on. It should be signed by the authority given in @code{ca}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28329 guix-git/doc/guix.texi:28484 +#: guix-git/doc/guix.texi:28666 guix-git/doc/guix.texi:28821 msgid "Defaults to @samp{\"/etc/openvpn/client.crt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28332 +#: guix-git/doc/guix.texi:28669 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string key" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28335 guix-git/doc/guix.texi:28490 +#: guix-git/doc/guix.texi:28672 guix-git/doc/guix.texi:28827 msgid "The key of the machine the daemon is running on. It must be the key whose certificate is @code{cert}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28337 guix-git/doc/guix.texi:28492 +#: guix-git/doc/guix.texi:28674 guix-git/doc/guix.texi:28829 msgid "Defaults to @samp{\"/etc/openvpn/client.key\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28340 +#: guix-git/doc/guix.texi:28677 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean comp-lzo?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28342 guix-git/doc/guix.texi:28497 +#: guix-git/doc/guix.texi:28679 guix-git/doc/guix.texi:28834 msgid "Whether to use the lzo compression algorithm." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28347 +#: guix-git/doc/guix.texi:28684 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean persist-key?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28349 guix-git/doc/guix.texi:28504 +#: guix-git/doc/guix.texi:28686 guix-git/doc/guix.texi:28841 msgid "Don't re-read key files across SIGUSR1 or --ping-restart." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28354 +#: guix-git/doc/guix.texi:28691 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean persist-tun?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28357 guix-git/doc/guix.texi:28512 +#: guix-git/doc/guix.texi:28694 guix-git/doc/guix.texi:28849 msgid "Don't close and reopen TUN/TAP device or run up/down scripts across SIGUSR1 or --ping-restart restarts." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28362 +#: guix-git/doc/guix.texi:28699 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean fast-io?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28365 guix-git/doc/guix.texi:28520 +#: guix-git/doc/guix.texi:28702 guix-git/doc/guix.texi:28857 msgid "(Experimental) Optimize TUN/TAP/UDP I/O writes by avoiding a call to poll/epoll/select prior to the write operation." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28369 +#: guix-git/doc/guix.texi:28706 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} number verbosity" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28371 guix-git/doc/guix.texi:28526 +#: guix-git/doc/guix.texi:28708 guix-git/doc/guix.texi:28863 msgid "Verbosity level." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28373 guix-git/doc/guix.texi:28528 -#: guix-git/doc/guix.texi:30264 guix-git/doc/guix.texi:30488 +#: guix-git/doc/guix.texi:28710 guix-git/doc/guix.texi:28865 +#: guix-git/doc/guix.texi:30629 guix-git/doc/guix.texi:30853 msgid "Defaults to @samp{3}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28376 +#: guix-git/doc/guix.texi:28713 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} tls-auth-client tls-auth" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28379 guix-git/doc/guix.texi:28534 +#: guix-git/doc/guix.texi:28716 guix-git/doc/guix.texi:28871 msgid "Add an additional layer of HMAC authentication on top of the TLS control channel to protect against DoS attacks." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28384 +#: guix-git/doc/guix.texi:28721 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string auth-user-pass" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28388 +#: guix-git/doc/guix.texi:28725 msgid "Authenticate with server using username/password. The option is a file containing username/password on 2 lines. Do not use a file-like object as it would be added to the store and readable by any user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28390 +#: guix-git/doc/guix.texi:28727 msgid "Defaults to @samp{'disabled}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28392 +#: guix-git/doc/guix.texi:28729 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} key-usage verify-key-usage?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28394 +#: guix-git/doc/guix.texi:28731 msgid "Whether to check the server certificate has server usage extension." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28399 +#: guix-git/doc/guix.texi:28736 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} bind bind?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28401 +#: guix-git/doc/guix.texi:28738 msgid "Bind to a specific local port number." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28406 +#: guix-git/doc/guix.texi:28743 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} resolv-retry resolv-retry?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28408 +#: guix-git/doc/guix.texi:28745 msgid "Retry resolving server address." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28413 +#: guix-git/doc/guix.texi:28750 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} openvpn-remote-list remote" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28415 +#: guix-git/doc/guix.texi:28752 msgid "A list of remote servers to connect to." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28419 +#: guix-git/doc/guix.texi:28756 msgid "Available @code{openvpn-remote-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28420 +#: guix-git/doc/guix.texi:28757 #, no-wrap msgid "{@code{openvpn-remote-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28422 +#: guix-git/doc/guix.texi:28759 msgid "Server name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28424 +#: guix-git/doc/guix.texi:28761 msgid "Defaults to @samp{\"my-server\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28427 +#: guix-git/doc/guix.texi:28764 #, no-wrap msgid "{@code{openvpn-remote-configuration} parameter} number port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28429 +#: guix-git/doc/guix.texi:28766 msgid "Port number the server listens to." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28431 guix-git/doc/guix.texi:28543 +#: guix-git/doc/guix.texi:28768 guix-git/doc/guix.texi:28880 msgid "Defaults to @samp{1194}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28440 +#: guix-git/doc/guix.texi:28777 msgid "Available @code{openvpn-server-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28441 +#: guix-git/doc/guix.texi:28778 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} package openvpn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28446 +#: guix-git/doc/guix.texi:28783 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28453 +#: guix-git/doc/guix.texi:28790 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} proto proto" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28461 +#: guix-git/doc/guix.texi:28798 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} dev dev" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28472 +#: guix-git/doc/guix.texi:28809 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string ca" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28479 +#: guix-git/doc/guix.texi:28816 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28487 +#: guix-git/doc/guix.texi:28824 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string key" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28495 +#: guix-git/doc/guix.texi:28832 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean comp-lzo?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28502 +#: guix-git/doc/guix.texi:28839 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean persist-key?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28509 +#: guix-git/doc/guix.texi:28846 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean persist-tun?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28517 +#: guix-git/doc/guix.texi:28854 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean fast-io?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28524 +#: guix-git/doc/guix.texi:28861 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number verbosity" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28531 +#: guix-git/doc/guix.texi:28868 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} tls-auth-server tls-auth" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28539 +#: guix-git/doc/guix.texi:28876 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28541 +#: guix-git/doc/guix.texi:28878 msgid "Specifies the port number on which the server listens." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28546 +#: guix-git/doc/guix.texi:28883 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} ip-mask server" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28548 +#: guix-git/doc/guix.texi:28885 msgid "An ip and mask specifying the subnet inside the virtual network." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28550 +#: guix-git/doc/guix.texi:28887 msgid "Defaults to @samp{\"10.8.0.0 255.255.255.0\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28553 +#: guix-git/doc/guix.texi:28890 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} cidr6 server-ipv6" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28555 +#: guix-git/doc/guix.texi:28892 msgid "A CIDR notation specifying the IPv6 subnet inside the virtual network." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28560 +#: guix-git/doc/guix.texi:28897 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string dh" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28562 +#: guix-git/doc/guix.texi:28899 msgid "The Diffie-Hellman parameters file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28564 +#: guix-git/doc/guix.texi:28901 msgid "Defaults to @samp{\"/etc/openvpn/dh2048.pem\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28567 +#: guix-git/doc/guix.texi:28904 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string ifconfig-pool-persist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28569 +#: guix-git/doc/guix.texi:28906 msgid "The file that records client IPs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28571 +#: guix-git/doc/guix.texi:28908 msgid "Defaults to @samp{\"/etc/openvpn/ipp.txt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28574 +#: guix-git/doc/guix.texi:28911 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} gateway redirect-gateway?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28576 +#: guix-git/doc/guix.texi:28913 msgid "When true, the server will act as a gateway for its clients." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28581 +#: guix-git/doc/guix.texi:28918 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean client-to-client?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28583 +#: guix-git/doc/guix.texi:28920 msgid "When true, clients are allowed to talk to each other inside the VPN." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28588 +#: guix-git/doc/guix.texi:28925 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} keepalive keepalive" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28594 +#: guix-git/doc/guix.texi:28931 msgid "Causes ping-like messages to be sent back and forth over the link so that each side knows when the other side has gone down. @code{keepalive} requires a pair. The first element is the period of the ping sending, and the second element is the timeout before considering the other side down." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28597 +#: guix-git/doc/guix.texi:28934 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28599 +#: guix-git/doc/guix.texi:28936 msgid "The maximum number of clients." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28604 +#: guix-git/doc/guix.texi:28941 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string status" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28607 +#: guix-git/doc/guix.texi:28944 msgid "The status file. This file shows a small report on current connection. It is truncated and rewritten every minute." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28609 +#: guix-git/doc/guix.texi:28946 msgid "Defaults to @samp{\"/var/run/openvpn/status\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28612 +#: guix-git/doc/guix.texi:28949 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} openvpn-ccd-list client-config-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28614 +#: guix-git/doc/guix.texi:28951 msgid "The list of configuration for some clients." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28618 +#: guix-git/doc/guix.texi:28955 msgid "Available @code{openvpn-ccd-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28619 +#: guix-git/doc/guix.texi:28956 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28621 +#: guix-git/doc/guix.texi:28958 msgid "Client name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28623 +#: guix-git/doc/guix.texi:28960 msgid "Defaults to @samp{\"client\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28626 +#: guix-git/doc/guix.texi:28963 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} ip-mask iroute" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28628 +#: guix-git/doc/guix.texi:28965 msgid "Client own network" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28633 +#: guix-git/doc/guix.texi:28970 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} ip-mask ifconfig-push" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28635 +#: guix-git/doc/guix.texi:28972 msgid "Client VPN IP." msgstr "" #. type: subheading -#: guix-git/doc/guix.texi:28644 +#: guix-git/doc/guix.texi:28981 #, no-wrap msgid "strongSwan" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28648 +#: guix-git/doc/guix.texi:28985 msgid "Currently, the strongSwan service only provides legacy-style configuration with @file{ipsec.conf} and @file{ipsec.secrets} files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28649 +#: guix-git/doc/guix.texi:28986 #, fuzzy, no-wrap msgid "{Scheme Variable} strongswan-service-type" msgstr "guix-publish-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28653 +#: guix-git/doc/guix.texi:28990 msgid "A service type for configuring strongSwan for IPsec @acronym{VPN, Virtual Private Networking}. Its value must be a @code{strongswan-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28659 +#: guix-git/doc/guix.texi:28996 #, no-wrap msgid "" "(service strongswan-service-type\n" @@ -51632,71 +52286,71 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28663 +#: guix-git/doc/guix.texi:29000 #, fuzzy, no-wrap msgid "{Data Type} strongswan-configuration" msgstr "build-machine {Data Type}" #. type: deftp -#: guix-git/doc/guix.texi:28665 +#: guix-git/doc/guix.texi:29002 #, fuzzy msgid "Data type representing the configuration of the StrongSwan service." msgstr "Gerencie a configuração do sistema operacional." #. type: code{#1} -#: guix-git/doc/guix.texi:28667 +#: guix-git/doc/guix.texi:29004 #, no-wrap msgid "strongswan" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28669 +#: guix-git/doc/guix.texi:29006 msgid "The strongSwan package to use for this service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28670 +#: guix-git/doc/guix.texi:29007 #, fuzzy, no-wrap #| msgid "@code{nsec3?} (default: @code{#f})" msgid "@code{ipsec-conf} (default: @code{#f})" msgstr "@code{nsec3?} (padrão: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28673 +#: guix-git/doc/guix.texi:29010 msgid "The file name of your @file{ipsec.conf}. If not @code{#f}, then this and @code{ipsec-secrets} must both be strings." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28674 +#: guix-git/doc/guix.texi:29011 #, fuzzy, no-wrap #| msgid "@code{users} (default: @code{#f})" msgid "@code{ipsec-secrets} (default @code{#f})" msgstr "@code{users} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28677 +#: guix-git/doc/guix.texi:29014 msgid "The file name of your @file{ipsec.secrets}. If not @code{#f}, then this and @code{ipsec-conf} must both be strings." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28681 +#: guix-git/doc/guix.texi:29018 #, no-wrap msgid "Wireguard" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28683 +#: guix-git/doc/guix.texi:29020 #, no-wrap msgid "{Scheme Variable} wireguard-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28686 +#: guix-git/doc/guix.texi:29023 msgid "A service type for a Wireguard tunnel interface. Its value must be a @code{wireguard-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28697 +#: guix-git/doc/guix.texi:29034 #, no-wrap msgid "" "(service wireguard-service-type\n" @@ -51711,253 +52365,253 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28701 +#: guix-git/doc/guix.texi:29038 #, no-wrap msgid "{Data Type} wireguard-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28703 +#: guix-git/doc/guix.texi:29040 msgid "Data type representing the configuration of the Wireguard service." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:28705 +#: guix-git/doc/guix.texi:29042 #, no-wrap msgid "wireguard" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28707 +#: guix-git/doc/guix.texi:29044 msgid "The wireguard package to use for this service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28708 +#: guix-git/doc/guix.texi:29045 #, no-wrap msgid "@code{interface} (default: @code{\"wg0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28710 +#: guix-git/doc/guix.texi:29047 msgid "The interface name for the VPN." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28711 +#: guix-git/doc/guix.texi:29048 #, no-wrap msgid "@code{addresses} (default: @code{'(\"10.0.0.1/32\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28713 +#: guix-git/doc/guix.texi:29050 msgid "The IP addresses to be assigned to the above interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28714 +#: guix-git/doc/guix.texi:29051 #, fuzzy, no-wrap #| msgid "@code{port} (default: @code{8081})" msgid "@code{port} (default: @code{51820})" msgstr "@code{porta} (default: @code{8081})" #. type: table -#: guix-git/doc/guix.texi:28716 +#: guix-git/doc/guix.texi:29053 msgid "The port on which to listen for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28717 +#: guix-git/doc/guix.texi:29054 #, fuzzy, no-wrap #| msgid "@code{id} (default: @code{#f})" msgid "@code{dns} (default: @code{#f})" msgstr "@code{id} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28719 +#: guix-git/doc/guix.texi:29056 msgid "The DNS server(s) to announce to VPN clients via DHCP." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28720 +#: guix-git/doc/guix.texi:29057 #, no-wrap msgid "@code{private-key} (default: @code{\"/etc/wireguard/private.key\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28723 +#: guix-git/doc/guix.texi:29060 msgid "The private key file for the interface. It is automatically generated if the file does not exist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28724 +#: guix-git/doc/guix.texi:29061 #, no-wrap msgid "@code{peers} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28727 +#: guix-git/doc/guix.texi:29064 msgid "The authorized peers on this interface. This is a list of @var{wireguard-peer} records." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28731 +#: guix-git/doc/guix.texi:29068 #, no-wrap msgid "{Data Type} wireguard-peer" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28733 +#: guix-git/doc/guix.texi:29070 msgid "Data type representing a Wireguard peer attached to a given interface." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28737 +#: guix-git/doc/guix.texi:29074 msgid "The peer name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28738 +#: guix-git/doc/guix.texi:29075 #, no-wrap msgid "@code{endpoint} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28741 +#: guix-git/doc/guix.texi:29078 msgid "The optional endpoint for the peer, such as @code{\"demo.wireguard.com:51820\"}." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:28742 guix-git/doc/guix.texi:29137 -#: guix-git/doc/guix.texi:29174 guix-git/doc/guix.texi:34305 +#: guix-git/doc/guix.texi:29079 guix-git/doc/guix.texi:29474 +#: guix-git/doc/guix.texi:29511 guix-git/doc/guix.texi:34744 #, no-wrap msgid "public-key" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28744 +#: guix-git/doc/guix.texi:29081 msgid "The peer public-key represented as a base64 string." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:28745 +#: guix-git/doc/guix.texi:29082 #, no-wrap msgid "allowed-ips" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28748 +#: guix-git/doc/guix.texi:29085 msgid "A list of IP addresses from which incoming traffic for this peer is allowed and to which incoming traffic for this peer is directed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28749 +#: guix-git/doc/guix.texi:29086 #, fuzzy, no-wrap #| msgid "@code{key} (default: @code{#f})" msgid "@code{keep-alive} (default: @code{#f})" msgstr "@code{key} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28754 +#: guix-git/doc/guix.texi:29091 msgid "An optional time interval in seconds. A packet will be sent to the server endpoint once per time interval. This helps receiving incoming connections from this peer when you are behind a NAT or a firewall." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28760 +#: guix-git/doc/guix.texi:29097 #, no-wrap msgid "NFS" msgstr "NFS" #. type: Plain text -#: guix-git/doc/guix.texi:28765 +#: guix-git/doc/guix.texi:29102 msgid "The @code{(gnu services nfs)} module provides the following services, which are most commonly used in relation to mounting or exporting directory trees as @dfn{network file systems} (NFS)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28769 +#: guix-git/doc/guix.texi:29106 msgid "While it is possible to use the individual components that together make up a Network File System service, we recommended to configure an NFS server with the @code{nfs-service-type}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28770 +#: guix-git/doc/guix.texi:29107 #, no-wrap msgid "NFS Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28771 +#: guix-git/doc/guix.texi:29108 #, no-wrap msgid "NFS, server" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28776 +#: guix-git/doc/guix.texi:29113 msgid "The NFS service takes care of setting up all NFS component services, kernel configuration file systems, and installs configuration files in the locations that NFS expects." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28777 +#: guix-git/doc/guix.texi:29114 #, no-wrap msgid "{Scheme Variable} nfs-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28779 +#: guix-git/doc/guix.texi:29116 msgid "A service type for a complete NFS server." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28781 +#: guix-git/doc/guix.texi:29118 #, no-wrap msgid "{Data Type} nfs-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28784 +#: guix-git/doc/guix.texi:29121 msgid "This data type represents the configuration of the NFS service and all of its subsystems." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28786 +#: guix-git/doc/guix.texi:29123 msgid "It has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28787 guix-git/doc/guix.texi:28912 -#: guix-git/doc/guix.texi:28937 +#: guix-git/doc/guix.texi:29124 guix-git/doc/guix.texi:29249 +#: guix-git/doc/guix.texi:29274 #, no-wrap msgid "@code{nfs-utils} (default: @code{nfs-utils})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28789 +#: guix-git/doc/guix.texi:29126 msgid "The nfs-utils package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28790 +#: guix-git/doc/guix.texi:29127 #, no-wrap msgid "@code{nfs-versions} (default: @code{'(\"4.2\" \"4.1\" \"4.0\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28793 +#: guix-git/doc/guix.texi:29130 msgid "If a list of string values is provided, the @command{rpc.nfsd} daemon will be limited to supporting the given versions of the NFS protocol." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28794 +#: guix-git/doc/guix.texi:29131 #, no-wrap msgid "@code{exports} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28799 +#: guix-git/doc/guix.texi:29136 msgid "This is a list of directories the NFS server should export. Each entry is a list consisting of two elements: a directory name and a string containing all options. This is an example in which the directory @file{/export} is served to all NFS clients as a read-only share:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28805 +#: guix-git/doc/guix.texi:29142 #, no-wrap msgid "" "(nfs-configuration\n" @@ -51967,384 +52621,384 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28807 +#: guix-git/doc/guix.texi:29144 #, no-wrap msgid "@code{rpcmountd-port} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28809 +#: guix-git/doc/guix.texi:29146 msgid "The network port that the @command{rpc.mountd} daemon should use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28810 +#: guix-git/doc/guix.texi:29147 #, no-wrap msgid "@code{rpcstatd-port} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28812 +#: guix-git/doc/guix.texi:29149 msgid "The network port that the @command{rpc.statd} daemon should use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28813 guix-git/doc/guix.texi:28861 +#: guix-git/doc/guix.texi:29150 guix-git/doc/guix.texi:29198 #, no-wrap msgid "@code{rpcbind} (default: @code{rpcbind})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28815 guix-git/doc/guix.texi:28863 +#: guix-git/doc/guix.texi:29152 guix-git/doc/guix.texi:29200 msgid "The rpcbind package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28816 +#: guix-git/doc/guix.texi:29153 #, no-wrap msgid "@code{idmap-domain} (default: @code{\"localdomain\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28818 +#: guix-git/doc/guix.texi:29155 msgid "The local NFSv4 domain name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28819 +#: guix-git/doc/guix.texi:29156 #, no-wrap msgid "@code{nfsd-port} (default: @code{2049})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28821 +#: guix-git/doc/guix.texi:29158 msgid "The network port that the @command{nfsd} daemon should use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28822 +#: guix-git/doc/guix.texi:29159 #, no-wrap msgid "@code{nfsd-threads} (default: @code{8})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28824 +#: guix-git/doc/guix.texi:29161 msgid "The number of threads used by the @command{nfsd} daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28825 +#: guix-git/doc/guix.texi:29162 #, no-wrap msgid "@code{nfsd-tcp?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28827 +#: guix-git/doc/guix.texi:29164 msgid "Whether the @command{nfsd} daemon should listen on a TCP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28828 +#: guix-git/doc/guix.texi:29165 #, no-wrap msgid "@code{nfsd-udp?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28830 +#: guix-git/doc/guix.texi:29167 msgid "Whether the @command{nfsd} daemon should listen on a UDP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28831 guix-git/doc/guix.texi:28915 -#: guix-git/doc/guix.texi:28940 +#: guix-git/doc/guix.texi:29168 guix-git/doc/guix.texi:29252 +#: guix-git/doc/guix.texi:29277 #, no-wrap msgid "@code{pipefs-directory} (default: @code{\"/var/lib/nfs/rpc_pipefs\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28833 guix-git/doc/guix.texi:28917 -#: guix-git/doc/guix.texi:28942 +#: guix-git/doc/guix.texi:29170 guix-git/doc/guix.texi:29254 +#: guix-git/doc/guix.texi:29279 msgid "The directory where the pipefs file system is mounted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28834 +#: guix-git/doc/guix.texi:29171 #, no-wrap msgid "@code{debug} (default: @code{'()\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28838 +#: guix-git/doc/guix.texi:29175 msgid "A list of subsystems for which debugging output should be enabled. This is a list of symbols. Any of these symbols are valid: @code{nfsd}, @code{nfs}, @code{rpc}, @code{idmap}, @code{statd}, or @code{mountd}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28843 +#: guix-git/doc/guix.texi:29180 msgid "If you don't need a complete NFS service or prefer to build it yourself you can use the individual component services that are documented below." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28844 +#: guix-git/doc/guix.texi:29181 #, no-wrap msgid "RPC Bind Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28845 +#: guix-git/doc/guix.texi:29182 #, no-wrap msgid "rpcbind" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28851 +#: guix-git/doc/guix.texi:29188 msgid "The RPC Bind service provides a facility to map program numbers into universal addresses. Many NFS related services use this facility. Hence it is automatically started when a dependent service starts." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28852 +#: guix-git/doc/guix.texi:29189 #, no-wrap msgid "{Scheme Variable} rpcbind-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28854 +#: guix-git/doc/guix.texi:29191 msgid "A service type for the RPC portmapper daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28857 +#: guix-git/doc/guix.texi:29194 #, no-wrap msgid "{Data Type} rpcbind-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28860 +#: guix-git/doc/guix.texi:29197 msgid "Data type representing the configuration of the RPC Bind Service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28864 +#: guix-git/doc/guix.texi:29201 #, no-wrap msgid "@code{warm-start?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28868 +#: guix-git/doc/guix.texi:29205 msgid "If this parameter is @code{#t}, then the daemon will read a state file on startup thus reloading state information saved by a previous instance." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28872 +#: guix-git/doc/guix.texi:29209 #, no-wrap msgid "Pipefs Pseudo File System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28873 +#: guix-git/doc/guix.texi:29210 #, no-wrap msgid "pipefs" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28874 +#: guix-git/doc/guix.texi:29211 #, no-wrap msgid "rpc_pipefs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28878 +#: guix-git/doc/guix.texi:29215 msgid "The pipefs file system is used to transfer NFS related data between the kernel and user space programs." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28879 +#: guix-git/doc/guix.texi:29216 #, no-wrap msgid "{Scheme Variable} pipefs-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28881 +#: guix-git/doc/guix.texi:29218 msgid "A service type for the pipefs pseudo file system." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28883 +#: guix-git/doc/guix.texi:29220 #, no-wrap msgid "{Data Type} pipefs-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28886 +#: guix-git/doc/guix.texi:29223 msgid "Data type representing the configuration of the pipefs pseudo file system service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28887 +#: guix-git/doc/guix.texi:29224 #, no-wrap msgid "@code{mount-point} (default: @code{\"/var/lib/nfs/rpc_pipefs\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28889 +#: guix-git/doc/guix.texi:29226 msgid "The directory to which the file system is to be attached." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28893 +#: guix-git/doc/guix.texi:29230 #, no-wrap msgid "GSS Daemon Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28894 +#: guix-git/doc/guix.texi:29231 #, no-wrap msgid "GSSD" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28895 +#: guix-git/doc/guix.texi:29232 #, no-wrap msgid "GSS" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28896 +#: guix-git/doc/guix.texi:29233 #, no-wrap msgid "global security system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28903 +#: guix-git/doc/guix.texi:29240 msgid "The @dfn{global security system} (GSS) daemon provides strong security for RPC based protocols. Before exchanging RPC requests an RPC client must establish a security context. Typically this is done using the Kerberos command @command{kinit} or automatically at login time using PAM services (@pxref{Kerberos Services})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28904 +#: guix-git/doc/guix.texi:29241 #, no-wrap msgid "{Scheme Variable} gss-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28906 +#: guix-git/doc/guix.texi:29243 msgid "A service type for the Global Security System (GSS) daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28908 +#: guix-git/doc/guix.texi:29245 #, no-wrap msgid "{Data Type} gss-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28911 +#: guix-git/doc/guix.texi:29248 msgid "Data type representing the configuration of the GSS daemon service. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28914 +#: guix-git/doc/guix.texi:29251 msgid "The package in which the @command{rpc.gssd} command is to be found." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28922 +#: guix-git/doc/guix.texi:29259 #, no-wrap msgid "IDMAP Daemon Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28923 +#: guix-git/doc/guix.texi:29260 #, no-wrap msgid "idmapd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28924 +#: guix-git/doc/guix.texi:29261 #, no-wrap msgid "name mapper" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28928 +#: guix-git/doc/guix.texi:29265 msgid "The idmap daemon service provides mapping between user IDs and user names. Typically it is required in order to access file systems mounted via NFSv4." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28929 +#: guix-git/doc/guix.texi:29266 #, no-wrap msgid "{Scheme Variable} idmap-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28931 +#: guix-git/doc/guix.texi:29268 msgid "A service type for the Identity Mapper (IDMAP) daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28933 +#: guix-git/doc/guix.texi:29270 #, no-wrap msgid "{Data Type} idmap-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28936 +#: guix-git/doc/guix.texi:29273 msgid "Data type representing the configuration of the IDMAP daemon service. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28939 +#: guix-git/doc/guix.texi:29276 msgid "The package in which the @command{rpc.idmapd} command is to be found." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28943 +#: guix-git/doc/guix.texi:29280 #, no-wrap msgid "@code{domain} (default: @code{#f})" msgstr "@code{domain} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:28947 +#: guix-git/doc/guix.texi:29284 msgid "The local NFSv4 domain name. This must be a string or @code{#f}. If it is @code{#f} then the daemon will use the host's fully qualified domain name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28948 +#: guix-git/doc/guix.texi:29285 #, no-wrap msgid "@code{verbosity} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28950 +#: guix-git/doc/guix.texi:29287 msgid "The verbosity level of the daemon." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28961 +#: guix-git/doc/guix.texi:29298 msgid "@uref{https://guix.gnu.org/cuirass/, Cuirass} is a continuous integration tool for Guix. It can be used both for development and for providing substitutes to others (@pxref{Substitutes})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28963 +#: guix-git/doc/guix.texi:29300 msgid "The @code{(gnu services cuirass)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28964 +#: guix-git/doc/guix.texi:29301 #, no-wrap msgid "{Scheme Procedure} cuirass-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28967 +#: guix-git/doc/guix.texi:29304 msgid "The type of the Cuirass service. Its value must be a @code{cuirass-configuration} object, as described below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28972 +#: guix-git/doc/guix.texi:29309 msgid "To add build jobs, you have to set the @code{specifications} field of the configuration. For instance, the following example will build all the packages provided by the @code{my-channel} channel." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28983 +#: guix-git/doc/guix.texi:29320 #, no-wrap msgid "" "(define %cuirass-specs\n" @@ -52360,7 +53014,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28987 guix-git/doc/guix.texi:29001 +#: guix-git/doc/guix.texi:29324 guix-git/doc/guix.texi:29338 #, no-wrap msgid "" "(service cuirass-service-type\n" @@ -52369,12 +53023,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28991 +#: guix-git/doc/guix.texi:29328 msgid "To build the @code{linux-libre} package defined by the default Guix channel, one can use the following configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28997 +#: guix-git/doc/guix.texi:29334 #, no-wrap msgid "" "(define %cuirass-specs\n" @@ -52385,574 +53039,574 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29006 +#: guix-git/doc/guix.texi:29343 msgid "The other configuration possibilities, as well as the specification record itself are described in the Cuirass manual (@pxref{Specifications,,, cuirass, Cuirass})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29010 +#: guix-git/doc/guix.texi:29347 msgid "While information related to build jobs is located directly in the specifications, global settings for the @command{cuirass} process are accessible in other @code{cuirass-configuration} fields." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29011 +#: guix-git/doc/guix.texi:29348 #, no-wrap msgid "{Data Type} cuirass-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29013 +#: guix-git/doc/guix.texi:29350 msgid "Data type representing the configuration of Cuirass." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29015 guix-git/doc/guix.texi:29152 +#: guix-git/doc/guix.texi:29352 guix-git/doc/guix.texi:29489 #, no-wrap msgid "@code{cuirass} (default: @code{cuirass})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29017 guix-git/doc/guix.texi:29154 +#: guix-git/doc/guix.texi:29354 guix-git/doc/guix.texi:29491 msgid "The Cuirass package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29018 +#: guix-git/doc/guix.texi:29355 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29020 guix-git/doc/guix.texi:29124 -#: guix-git/doc/guix.texi:29167 +#: guix-git/doc/guix.texi:29357 guix-git/doc/guix.texi:29461 +#: guix-git/doc/guix.texi:29504 msgid "Location of the log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29021 +#: guix-git/doc/guix.texi:29358 #, no-wrap msgid "@code{web-log-file} (default: @code{\"/var/log/cuirass-web.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29023 +#: guix-git/doc/guix.texi:29360 msgid "Location of the log file used by the web interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29024 +#: guix-git/doc/guix.texi:29361 #, no-wrap msgid "@code{cache-directory} (default: @code{\"/var/cache/cuirass\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29026 +#: guix-git/doc/guix.texi:29363 msgid "Location of the repository cache." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29027 +#: guix-git/doc/guix.texi:29364 #, no-wrap msgid "@code{user} (default: @code{\"cuirass\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29029 +#: guix-git/doc/guix.texi:29366 msgid "Owner of the @code{cuirass} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29030 +#: guix-git/doc/guix.texi:29367 #, no-wrap msgid "@code{group} (default: @code{\"cuirass\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29032 +#: guix-git/doc/guix.texi:29369 msgid "Owner's group of the @code{cuirass} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29033 +#: guix-git/doc/guix.texi:29370 #, no-wrap msgid "@code{interval} (default: @code{60})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29036 +#: guix-git/doc/guix.texi:29373 msgid "Number of seconds between the poll of the repositories followed by the Cuirass jobs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29037 +#: guix-git/doc/guix.texi:29374 #, fuzzy, no-wrap msgid "@code{parameters} (default: @code{#f})" msgstr "@code{term} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29040 +#: guix-git/doc/guix.texi:29377 msgid "Read parameters from the given @var{parameters} file. The supported parameters are described here (@pxref{Parameters,,, cuirass, Cuirass})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29041 +#: guix-git/doc/guix.texi:29378 #, fuzzy, no-wrap msgid "@code{remote-server} (default: @code{#f})" msgstr "@code{remote?} (padrão: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29044 +#: guix-git/doc/guix.texi:29381 msgid "A @code{cuirass-remote-server-configuration} record to use the build remote mechanism or @code{#f} to use the default build mechanism." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29045 +#: guix-git/doc/guix.texi:29382 #, no-wrap msgid "@code{database} (default: @code{\"dbname=cuirass host=/var/run/postgresql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29050 +#: guix-git/doc/guix.texi:29387 msgid "Use @var{database} as the database containing the jobs and the past build results. Since Cuirass uses PostgreSQL as a database engine, @var{database} must be a string such as @code{\"dbname=cuirass host=localhost\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29051 +#: guix-git/doc/guix.texi:29388 #, no-wrap msgid "@code{port} (default: @code{8081})" msgstr "@code{porta} (default: @code{8081})" #. type: table -#: guix-git/doc/guix.texi:29053 +#: guix-git/doc/guix.texi:29390 msgid "Port number used by the HTTP server." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29057 +#: guix-git/doc/guix.texi:29394 msgid "Listen on the network interface for @var{host}. The default is to accept connections from localhost." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29058 +#: guix-git/doc/guix.texi:29395 #, no-wrap msgid "@code{specifications} (default: @code{#~'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29062 +#: guix-git/doc/guix.texi:29399 msgid "A gexp (@pxref{G-Expressions}) that evaluates to a list of specifications records. The specification record is described in the Cuirass manual (@pxref{Specifications,,, cuirass, Cuirass})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29063 +#: guix-git/doc/guix.texi:29400 #, no-wrap msgid "@code{use-substitutes?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29066 +#: guix-git/doc/guix.texi:29403 msgid "This allows using substitutes to avoid building every dependencies of a job from source." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29067 guix-git/doc/guix.texi:36336 +#: guix-git/doc/guix.texi:29404 guix-git/doc/guix.texi:36826 #, no-wrap msgid "@code{one-shot?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29069 +#: guix-git/doc/guix.texi:29406 msgid "Only evaluate specifications and build derivations once." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29070 +#: guix-git/doc/guix.texi:29407 #, no-wrap msgid "@code{fallback?} (default: @code{#f})" msgstr "@code{fallback?} (padrão: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29073 +#: guix-git/doc/guix.texi:29410 msgid "When substituting a pre-built binary fails, fall back to building packages locally." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29076 +#: guix-git/doc/guix.texi:29413 msgid "Extra options to pass when running the Cuirass processes." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29080 +#: guix-git/doc/guix.texi:29417 #, fuzzy, no-wrap msgid "remote build" msgstr "compilações reproduzíveis" #. type: subsubheading -#: guix-git/doc/guix.texi:29081 +#: guix-git/doc/guix.texi:29418 #, no-wrap msgid "Cuirass remote building" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29084 +#: guix-git/doc/guix.texi:29421 msgid "Cuirass supports two mechanisms to build derivations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29086 +#: guix-git/doc/guix.texi:29423 #, fuzzy, no-wrap msgid "Using the local Guix daemon." msgstr "Executando o daemon de compilação." #. type: itemize -#: guix-git/doc/guix.texi:29090 +#: guix-git/doc/guix.texi:29427 msgid "This is the default build mechanism. Once the build jobs are evaluated, they are sent to the local Guix daemon. Cuirass then listens to the Guix daemon output to detect the various build events." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29091 +#: guix-git/doc/guix.texi:29428 #, fuzzy, no-wrap msgid "Using the remote build mechanism." msgstr "Preparando o ambiente de compilação isolado." #. type: itemize -#: guix-git/doc/guix.texi:29095 +#: guix-git/doc/guix.texi:29432 msgid "The build jobs are not submitted to the local Guix daemon. Instead, a remote server dispatches build requests to the connect remote workers, according to the build priorities." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29102 +#: guix-git/doc/guix.texi:29439 msgid "To enable this build mode a @code{cuirass-remote-server-configuration} record must be passed as @code{remote-server} argument of the @code{cuirass-configuration} record. The @code{cuirass-remote-server-configuration} record is described below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29107 +#: guix-git/doc/guix.texi:29444 msgid "This build mode scales way better than the default build mode. This is the build mode that is used on the GNU Guix build farm at @url{https://ci.guix.gnu.org}. It should be preferred when using Cuirass to build large amount of packages." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29108 +#: guix-git/doc/guix.texi:29445 #, no-wrap msgid "{Data Type} cuirass-remote-server-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29110 +#: guix-git/doc/guix.texi:29447 msgid "Data type representing the configuration of the Cuirass remote-server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29112 +#: guix-git/doc/guix.texi:29449 #, fuzzy, no-wrap msgid "@code{backend-port} (default: @code{5555})" msgstr "@code{porta} (default: @code{53})" #. type: table -#: guix-git/doc/guix.texi:29115 +#: guix-git/doc/guix.texi:29452 msgid "The TCP port for communicating with @code{remote-worker} processes using ZMQ. It defaults to @code{5555}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29116 +#: guix-git/doc/guix.texi:29453 #, fuzzy, no-wrap msgid "@code{log-port} (default: @code{5556})" msgstr "@code{porta} (default: @code{53})" #. type: table -#: guix-git/doc/guix.texi:29118 +#: guix-git/doc/guix.texi:29455 msgid "The TCP port of the log server. It defaults to @code{5556}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29119 +#: guix-git/doc/guix.texi:29456 #, fuzzy, no-wrap msgid "@code{publish-port} (default: @code{5557})" msgstr "@code{publish?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:29121 +#: guix-git/doc/guix.texi:29458 msgid "The TCP port of the publish server. It defaults to @code{5557}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29122 +#: guix-git/doc/guix.texi:29459 #, fuzzy, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass-remote-server.log\"})" msgstr "@code{daemon-socket} (padrão: @code{\"/var/guix/daemon-socket/socket\"})" #. type: item -#: guix-git/doc/guix.texi:29125 +#: guix-git/doc/guix.texi:29462 #, fuzzy, no-wrap msgid "@code{cache} (default: @code{\"/var/cache/cuirass/remote\"})" msgstr "@code{daemon-socket} (padrão: @code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:29127 +#: guix-git/doc/guix.texi:29464 msgid "Use @var{cache} directory to cache build log files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29128 +#: guix-git/doc/guix.texi:29465 #, fuzzy, no-wrap msgid "@code{trigger-url} (default: @code{#f})" msgstr "@code{term} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29131 +#: guix-git/doc/guix.texi:29468 msgid "Once a substitute is successfully fetched, trigger substitute baking at @var{trigger-url}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29136 +#: guix-git/doc/guix.texi:29473 msgid "If set to false, do not start a publish server and ignore the @code{publish-port} argument. This can be useful if there is already a standalone publish server standing next to the remote server." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:29138 guix-git/doc/guix.texi:29175 +#: guix-git/doc/guix.texi:29475 guix-git/doc/guix.texi:29512 #, no-wrap msgid "private-key" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29147 +#: guix-git/doc/guix.texi:29484 msgid "At least one remote worker must also be started on any machine of the local network to actually perform the builds and report their status." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29148 +#: guix-git/doc/guix.texi:29485 #, no-wrap msgid "{Data Type} cuirass-remote-worker-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29150 +#: guix-git/doc/guix.texi:29487 msgid "Data type representing the configuration of the Cuirass remote-worker." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29155 +#: guix-git/doc/guix.texi:29492 #, fuzzy, no-wrap msgid "@code{workers} (default: @code{1})" msgstr "@code{workers} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29157 +#: guix-git/doc/guix.texi:29494 msgid "Start @var{workers} parallel workers." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29161 +#: guix-git/doc/guix.texi:29498 msgid "Do not use Avahi discovery and connect to the given @code{server} IP address instead." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29162 +#: guix-git/doc/guix.texi:29499 #, no-wrap msgid "@code{systems} (default: @code{(list (%current-system))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29164 +#: guix-git/doc/guix.texi:29501 msgid "Only request builds for the given @var{systems}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29165 +#: guix-git/doc/guix.texi:29502 #, fuzzy, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass-remote-worker.log\"})" msgstr "@code{daemon-socket} (padrão: @code{\"/var/guix/daemon-socket/socket\"})" #. type: item -#: guix-git/doc/guix.texi:29168 +#: guix-git/doc/guix.texi:29505 #, fuzzy, no-wrap msgid "@code{publish-port} (default: @code{5558})" msgstr "@code{publish?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:29170 +#: guix-git/doc/guix.texi:29507 msgid "The TCP port of the publish server. It defaults to @code{5558}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29182 +#: guix-git/doc/guix.texi:29519 #, no-wrap msgid "Laminar" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29187 +#: guix-git/doc/guix.texi:29524 msgid "@uref{https://laminar.ohwg.net/, Laminar} is a lightweight and modular Continuous Integration service. It doesn't have a configuration web UI instead uses version-controllable configuration files and scripts." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29190 +#: guix-git/doc/guix.texi:29527 msgid "Laminar encourages the use of existing tools such as bash and cron instead of reinventing them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29191 +#: guix-git/doc/guix.texi:29528 #, no-wrap msgid "{Scheme Procedure} laminar-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29194 +#: guix-git/doc/guix.texi:29531 msgid "The type of the Laminar service. Its value must be a @code{laminar-configuration} object, as described below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29198 +#: guix-git/doc/guix.texi:29535 msgid "All configuration values have defaults, a minimal configuration to get Laminar running is shown below. By default, the web interface is available on port 8080." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29201 +#: guix-git/doc/guix.texi:29538 #, no-wrap msgid "(service laminar-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29204 +#: guix-git/doc/guix.texi:29541 #, fuzzy, no-wrap msgid "{Data Type} laminar-configuration" msgstr "build-machine {Data Type}" #. type: deftp -#: guix-git/doc/guix.texi:29206 +#: guix-git/doc/guix.texi:29543 #, fuzzy msgid "Data type representing the configuration of Laminar." msgstr "Gerencie a configuração do sistema operacional." #. type: item -#: guix-git/doc/guix.texi:29208 +#: guix-git/doc/guix.texi:29545 #, fuzzy, no-wrap msgid "@code{laminar} (default: @code{laminar})" msgstr "@code{tmpdir} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29210 +#: guix-git/doc/guix.texi:29547 #, fuzzy msgid "The Laminar package to use." msgstr "O pacote GPM a ser usado." #. type: item -#: guix-git/doc/guix.texi:29211 +#: guix-git/doc/guix.texi:29548 #, fuzzy, no-wrap msgid "@code{home-directory} (default: @code{\"/var/lib/laminar\"})" msgstr "@code{daemon-socket} (padrão: @code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:29213 +#: guix-git/doc/guix.texi:29550 msgid "The directory for job configurations and run directories." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29214 +#: guix-git/doc/guix.texi:29551 #, fuzzy, no-wrap msgid "@code{bind-http} (default: @code{\"*:8080\"})" msgstr "@code{porta} (default: @code{\"6600\"})" #. type: table -#: guix-git/doc/guix.texi:29217 +#: guix-git/doc/guix.texi:29554 msgid "The interface/port or unix socket on which laminard should listen for incoming connections to the web frontend." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29218 +#: guix-git/doc/guix.texi:29555 #, fuzzy, no-wrap msgid "@code{bind-rpc} (default: @code{\"unix-abstract:laminar\"})" msgstr "@code{tor} (default: @code{tor})" #. type: table -#: guix-git/doc/guix.texi:29221 +#: guix-git/doc/guix.texi:29558 msgid "The interface/port or unix socket on which laminard should listen for incoming commands such as build triggers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29222 +#: guix-git/doc/guix.texi:29559 #, fuzzy, no-wrap msgid "@code{title} (default: @code{\"Laminar\"})" msgstr "@code{ttl} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29224 +#: guix-git/doc/guix.texi:29561 msgid "The page title to show in the web frontend." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29225 +#: guix-git/doc/guix.texi:29562 #, fuzzy, no-wrap msgid "@code{keep-rundirs} (default: @code{0})" msgstr "@code{workers} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29229 +#: guix-git/doc/guix.texi:29566 msgid "Set to an integer defining how many rundirs to keep per job. The lowest-numbered ones will be deleted. The default is 0, meaning all run dirs will be immediately deleted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29230 +#: guix-git/doc/guix.texi:29567 #, fuzzy, no-wrap msgid "@code{archive-url} (default: @code{#f})" msgstr "@code{term} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29233 +#: guix-git/doc/guix.texi:29570 msgid "The web frontend served by laminard will use this URL to form links to artefacts archived jobs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29234 +#: guix-git/doc/guix.texi:29571 #, fuzzy, no-wrap msgid "@code{base-url} (default: @code{#f})" msgstr "@code{users} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:29236 +#: guix-git/doc/guix.texi:29573 msgid "Base URL to use for links to laminar itself." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29243 +#: guix-git/doc/guix.texi:29580 #, no-wrap msgid "tlp" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29244 +#: guix-git/doc/guix.texi:29581 #, no-wrap msgid "power management with TLP" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29245 +#: guix-git/doc/guix.texi:29582 #, no-wrap msgid "TLP daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29249 +#: guix-git/doc/guix.texi:29586 msgid "The @code{(gnu services pm)} module provides a Guix service definition for the Linux power management tool TLP." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29255 +#: guix-git/doc/guix.texi:29592 msgid "TLP enables various powersaving modes in userspace and kernel. Contrary to @code{upower-service}, it is not a passive, monitoring tool, as it will apply custom settings each time a new power source is detected. More information can be found at @uref{https://linrunner.de/en/tlp/tlp.html, TLP home page}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29256 +#: guix-git/doc/guix.texi:29593 #, no-wrap msgid "{Scheme Variable} tlp-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29260 +#: guix-git/doc/guix.texi:29597 msgid "The service type for the TLP tool. The default settings are optimised for battery life on most systems, but you can tweak them to your heart's content by adding a valid @code{tlp-configuration}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29265 +#: guix-git/doc/guix.texi:29602 #, no-wrap msgid "" "(service tlp-service-type\n" @@ -52962,888 +53616,932 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29273 +#: guix-git/doc/guix.texi:29610 msgid "Each parameter definition is preceded by its type; for example, @samp{boolean foo} indicates that the @code{foo} parameter should be specified as a boolean. Types starting with @code{maybe-} denote parameters that won't show up in TLP config file when their value is @code{'disabled}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29283 +#: guix-git/doc/guix.texi:29620 msgid "Available @code{tlp-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29284 +#: guix-git/doc/guix.texi:29621 #, no-wrap msgid "{@code{tlp-configuration} parameter} package tlp" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29286 +#: guix-git/doc/guix.texi:29623 msgid "The TLP package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29289 +#: guix-git/doc/guix.texi:29626 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean tlp-enable?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29291 +#: guix-git/doc/guix.texi:29628 msgid "Set to true if you wish to enable TLP." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29296 +#: guix-git/doc/guix.texi:29633 #, no-wrap msgid "{@code{tlp-configuration} parameter} string tlp-default-mode" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29299 +#: guix-git/doc/guix.texi:29636 msgid "Default mode when no power supply can be detected. Alternatives are AC and BAT." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29301 +#: guix-git/doc/guix.texi:29638 msgid "Defaults to @samp{\"AC\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29304 +#: guix-git/doc/guix.texi:29641 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer disk-idle-secs-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29307 +#: guix-git/doc/guix.texi:29644 msgid "Number of seconds Linux kernel has to wait after the disk goes idle, before syncing on AC." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29312 +#: guix-git/doc/guix.texi:29649 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer disk-idle-secs-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29314 +#: guix-git/doc/guix.texi:29651 msgid "Same as @code{disk-idle-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29316 +#: guix-git/doc/guix.texi:29653 msgid "Defaults to @samp{2}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29319 +#: guix-git/doc/guix.texi:29656 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer max-lost-work-secs-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29321 +#: guix-git/doc/guix.texi:29658 msgid "Dirty pages flushing periodicity, expressed in seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29323 guix-git/doc/guix.texi:29546 -#: guix-git/doc/guix.texi:31814 guix-git/doc/guix.texi:31822 +#: guix-git/doc/guix.texi:29660 guix-git/doc/guix.texi:29883 +#: guix-git/doc/guix.texi:32179 guix-git/doc/guix.texi:32187 msgid "Defaults to @samp{15}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29326 +#: guix-git/doc/guix.texi:29663 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer max-lost-work-secs-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29328 +#: guix-git/doc/guix.texi:29665 msgid "Same as @code{max-lost-work-secs-on-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29330 +#: guix-git/doc/guix.texi:29667 msgid "Defaults to @samp{60}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29333 +#: guix-git/doc/guix.texi:29670 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list cpu-scaling-governor-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29337 +#: guix-git/doc/guix.texi:29674 msgid "CPU frequency scaling governor on AC mode. With intel_pstate driver, alternatives are powersave and performance. With acpi-cpufreq driver, alternatives are ondemand, powersave, performance and conservative." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29342 +#: guix-git/doc/guix.texi:29679 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list cpu-scaling-governor-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29344 +#: guix-git/doc/guix.texi:29681 msgid "Same as @code{cpu-scaling-governor-on-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29349 +#: guix-git/doc/guix.texi:29686 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-min-freq-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29351 +#: guix-git/doc/guix.texi:29688 msgid "Set the min available frequency for the scaling governor on AC." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29356 +#: guix-git/doc/guix.texi:29693 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-max-freq-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29358 +#: guix-git/doc/guix.texi:29695 msgid "Set the max available frequency for the scaling governor on AC." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29363 +#: guix-git/doc/guix.texi:29700 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-min-freq-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29365 +#: guix-git/doc/guix.texi:29702 msgid "Set the min available frequency for the scaling governor on BAT." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29370 +#: guix-git/doc/guix.texi:29707 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-max-freq-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29372 +#: guix-git/doc/guix.texi:29709 msgid "Set the max available frequency for the scaling governor on BAT." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29377 +#: guix-git/doc/guix.texi:29714 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-min-perf-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29380 +#: guix-git/doc/guix.texi:29717 msgid "Limit the min P-state to control the power dissipation of the CPU, in AC mode. Values are stated as a percentage of the available performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29385 +#: guix-git/doc/guix.texi:29722 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29388 +#: guix-git/doc/guix.texi:29725 msgid "Limit the max P-state to control the power dissipation of the CPU, in AC mode. Values are stated as a percentage of the available performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29393 +#: guix-git/doc/guix.texi:29730 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-min-perf-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29395 +#: guix-git/doc/guix.texi:29732 msgid "Same as @code{cpu-min-perf-on-ac} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29400 +#: guix-git/doc/guix.texi:29737 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29402 +#: guix-git/doc/guix.texi:29739 msgid "Same as @code{cpu-max-perf-on-ac} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29407 +#: guix-git/doc/guix.texi:29744 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean cpu-boost-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29409 +#: guix-git/doc/guix.texi:29746 msgid "Enable CPU turbo boost feature on AC mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29414 +#: guix-git/doc/guix.texi:29751 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean cpu-boost-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29416 +#: guix-git/doc/guix.texi:29753 msgid "Same as @code{cpu-boost-on-ac?} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29421 +#: guix-git/doc/guix.texi:29758 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean sched-powersave-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29424 +#: guix-git/doc/guix.texi:29761 msgid "Allow Linux kernel to minimize the number of CPU cores/hyper-threads used under light load conditions." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29429 +#: guix-git/doc/guix.texi:29766 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean sched-powersave-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29431 +#: guix-git/doc/guix.texi:29768 msgid "Same as @code{sched-powersave-on-ac?} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29436 +#: guix-git/doc/guix.texi:29773 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean nmi-watchdog?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29438 +#: guix-git/doc/guix.texi:29775 msgid "Enable Linux kernel NMI watchdog." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29443 +#: guix-git/doc/guix.texi:29780 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string phc-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29446 +#: guix-git/doc/guix.texi:29783 msgid "For Linux kernels with PHC patch applied, change CPU voltages. An example value would be @samp{\"F:V F:V F:V F:V\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29451 +#: guix-git/doc/guix.texi:29788 #, no-wrap msgid "{@code{tlp-configuration} parameter} string energy-perf-policy-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29454 +#: guix-git/doc/guix.texi:29791 msgid "Set CPU performance versus energy saving policy on AC@. Alternatives are performance, normal, powersave." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29456 guix-git/doc/guix.texi:29554 -#: guix-git/doc/guix.texi:29584 +#: guix-git/doc/guix.texi:29793 guix-git/doc/guix.texi:29891 +#: guix-git/doc/guix.texi:29949 msgid "Defaults to @samp{\"performance\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29459 +#: guix-git/doc/guix.texi:29796 #, no-wrap msgid "{@code{tlp-configuration} parameter} string energy-perf-policy-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29461 +#: guix-git/doc/guix.texi:29798 msgid "Same as @code{energy-perf-policy-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29463 guix-git/doc/guix.texi:29561 +#: guix-git/doc/guix.texi:29800 guix-git/doc/guix.texi:29898 msgid "Defaults to @samp{\"powersave\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29466 +#: guix-git/doc/guix.texi:29803 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disks-devices" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29468 +#: guix-git/doc/guix.texi:29805 msgid "Hard disk devices." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29471 +#: guix-git/doc/guix.texi:29808 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disk-apm-level-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29473 +#: guix-git/doc/guix.texi:29810 msgid "Hard disk advanced power management level." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29476 +#: guix-git/doc/guix.texi:29813 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disk-apm-level-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29478 +#: guix-git/doc/guix.texi:29815 msgid "Same as @code{disk-apm-bat} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29481 +#: guix-git/doc/guix.texi:29818 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-spindown-timeout-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29484 +#: guix-git/doc/guix.texi:29821 msgid "Hard disk spin down timeout. One value has to be specified for each declared hard disk." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29489 +#: guix-git/doc/guix.texi:29826 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-spindown-timeout-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29491 +#: guix-git/doc/guix.texi:29828 msgid "Same as @code{disk-spindown-timeout-on-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29496 +#: guix-git/doc/guix.texi:29833 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-iosched" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29500 +#: guix-git/doc/guix.texi:29837 msgid "Select IO scheduler for disk devices. One value has to be specified for each declared hard disk. Example alternatives are cfq, deadline and noop." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29505 +#: guix-git/doc/guix.texi:29842 #, no-wrap msgid "{@code{tlp-configuration} parameter} string sata-linkpwr-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29508 +#: guix-git/doc/guix.texi:29845 msgid "SATA aggressive link power management (ALPM) level. Alternatives are min_power, medium_power, max_performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29510 +#: guix-git/doc/guix.texi:29847 msgid "Defaults to @samp{\"max_performance\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29513 +#: guix-git/doc/guix.texi:29850 #, no-wrap msgid "{@code{tlp-configuration} parameter} string sata-linkpwr-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29515 +#: guix-git/doc/guix.texi:29852 msgid "Same as @code{sata-linkpwr-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29517 +#: guix-git/doc/guix.texi:29854 msgid "Defaults to @samp{\"min_power\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29520 +#: guix-git/doc/guix.texi:29857 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string sata-linkpwr-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29522 +#: guix-git/doc/guix.texi:29859 msgid "Exclude specified SATA host devices for link power management." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29527 +#: guix-git/doc/guix.texi:29864 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-on-off-boolean ahci-runtime-pm-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29530 +#: guix-git/doc/guix.texi:29867 msgid "Enable Runtime Power Management for AHCI controller and disks on AC mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29535 +#: guix-git/doc/guix.texi:29872 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-on-off-boolean ahci-runtime-pm-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29537 +#: guix-git/doc/guix.texi:29874 msgid "Same as @code{ahci-runtime-pm-on-ac} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29542 +#: guix-git/doc/guix.texi:29879 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer ahci-runtime-pm-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29544 +#: guix-git/doc/guix.texi:29881 msgid "Seconds of inactivity before disk is suspended." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29549 +#: guix-git/doc/guix.texi:29886 #, no-wrap msgid "{@code{tlp-configuration} parameter} string pcie-aspm-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29552 +#: guix-git/doc/guix.texi:29889 msgid "PCI Express Active State Power Management level. Alternatives are default, performance, powersave." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29557 +#: guix-git/doc/guix.texi:29894 #, no-wrap msgid "{@code{tlp-configuration} parameter} string pcie-aspm-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29559 +#: guix-git/doc/guix.texi:29896 msgid "Same as @code{pcie-aspm-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29564 +#: guix-git/doc/guix.texi:29901 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer start-charge-thresh-bat0" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29903 +msgid "Percentage when battery 0 should begin charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29908 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer stop-charge-thresh-bat0" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29910 +msgid "Percentage when battery 0 should stop charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29915 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer start-charge-thresh-bat1" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29917 +msgid "Percentage when battery 1 should begin charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29922 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer stop-charge-thresh-bat1" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29924 +msgid "Percentage when battery 1 should stop charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29929 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-power-profile-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29567 +#: guix-git/doc/guix.texi:29932 msgid "Radeon graphics clock speed level. Alternatives are low, mid, high, auto, default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29569 +#: guix-git/doc/guix.texi:29934 msgid "Defaults to @samp{\"high\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29572 +#: guix-git/doc/guix.texi:29937 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-power-profile-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29574 +#: guix-git/doc/guix.texi:29939 msgid "Same as @code{radeon-power-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29576 +#: guix-git/doc/guix.texi:29941 msgid "Defaults to @samp{\"low\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29579 +#: guix-git/doc/guix.texi:29944 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-state-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29582 +#: guix-git/doc/guix.texi:29947 msgid "Radeon dynamic power management method (DPM). Alternatives are battery, performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29587 +#: guix-git/doc/guix.texi:29952 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-state-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29589 +#: guix-git/doc/guix.texi:29954 msgid "Same as @code{radeon-dpm-state-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29591 +#: guix-git/doc/guix.texi:29956 msgid "Defaults to @samp{\"battery\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29594 +#: guix-git/doc/guix.texi:29959 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-perf-level-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29596 +#: guix-git/doc/guix.texi:29961 msgid "Radeon DPM performance level. Alternatives are auto, low, high." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29598 guix-git/doc/guix.texi:29605 -#: guix-git/doc/guix.texi:29679 +#: guix-git/doc/guix.texi:29963 guix-git/doc/guix.texi:29970 +#: guix-git/doc/guix.texi:30044 msgid "Defaults to @samp{\"auto\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29601 +#: guix-git/doc/guix.texi:29966 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-perf-level-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29603 +#: guix-git/doc/guix.texi:29968 msgid "Same as @code{radeon-dpm-perf-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29608 +#: guix-git/doc/guix.texi:29973 #, no-wrap msgid "{@code{tlp-configuration} parameter} on-off-boolean wifi-pwr-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29610 +#: guix-git/doc/guix.texi:29975 msgid "Wifi power saving mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29615 +#: guix-git/doc/guix.texi:29980 #, no-wrap msgid "{@code{tlp-configuration} parameter} on-off-boolean wifi-pwr-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29617 +#: guix-git/doc/guix.texi:29982 msgid "Same as @code{wifi-power-ac?} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29622 +#: guix-git/doc/guix.texi:29987 #, no-wrap msgid "{@code{tlp-configuration} parameter} y-n-boolean wol-disable?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29624 +#: guix-git/doc/guix.texi:29989 msgid "Disable wake on LAN." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29629 +#: guix-git/doc/guix.texi:29994 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer sound-power-save-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29632 +#: guix-git/doc/guix.texi:29997 msgid "Timeout duration in seconds before activating audio power saving on Intel HDA and AC97 devices. A value of 0 disables power saving." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29637 +#: guix-git/doc/guix.texi:30002 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer sound-power-save-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29639 +#: guix-git/doc/guix.texi:30004 msgid "Same as @code{sound-powersave-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29644 +#: guix-git/doc/guix.texi:30009 #, no-wrap msgid "{@code{tlp-configuration} parameter} y-n-boolean sound-power-save-controller?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29646 +#: guix-git/doc/guix.texi:30011 msgid "Disable controller in powersaving mode on Intel HDA devices." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29651 +#: guix-git/doc/guix.texi:30016 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean bay-poweroff-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29655 +#: guix-git/doc/guix.texi:30020 msgid "Enable optical drive in UltraBay/MediaBay on BAT mode. Drive can be powered on again by releasing (and reinserting) the eject lever or by pressing the disc eject button on newer models." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29660 +#: guix-git/doc/guix.texi:30025 #, no-wrap msgid "{@code{tlp-configuration} parameter} string bay-device" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29662 +#: guix-git/doc/guix.texi:30027 msgid "Name of the optical drive device to power off." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29664 +#: guix-git/doc/guix.texi:30029 msgid "Defaults to @samp{\"sr0\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29667 +#: guix-git/doc/guix.texi:30032 #, no-wrap msgid "{@code{tlp-configuration} parameter} string runtime-pm-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29670 +#: guix-git/doc/guix.texi:30035 msgid "Runtime Power Management for PCI(e) bus devices. Alternatives are on and auto." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29672 +#: guix-git/doc/guix.texi:30037 msgid "Defaults to @samp{\"on\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29675 +#: guix-git/doc/guix.texi:30040 #, no-wrap msgid "{@code{tlp-configuration} parameter} string runtime-pm-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29677 +#: guix-git/doc/guix.texi:30042 msgid "Same as @code{runtime-pm-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29682 +#: guix-git/doc/guix.texi:30047 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean runtime-pm-all?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29685 +#: guix-git/doc/guix.texi:30050 msgid "Runtime Power Management for all PCI(e) bus devices, except blacklisted ones." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29690 +#: guix-git/doc/guix.texi:30055 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list runtime-pm-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29692 +#: guix-git/doc/guix.texi:30057 msgid "Exclude specified PCI(e) device addresses from Runtime Power Management." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29697 +#: guix-git/doc/guix.texi:30062 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list runtime-pm-driver-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29700 +#: guix-git/doc/guix.texi:30065 msgid "Exclude PCI(e) devices assigned to the specified drivers from Runtime Power Management." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29703 +#: guix-git/doc/guix.texi:30068 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean usb-autosuspend?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29705 +#: guix-git/doc/guix.texi:30070 msgid "Enable USB autosuspend feature." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29710 +#: guix-git/doc/guix.texi:30075 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string usb-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29712 +#: guix-git/doc/guix.texi:30077 msgid "Exclude specified devices from USB autosuspend." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29717 +#: guix-git/doc/guix.texi:30082 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean usb-blacklist-wwan?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29719 +#: guix-git/doc/guix.texi:30084 msgid "Exclude WWAN devices from USB autosuspend." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29724 +#: guix-git/doc/guix.texi:30089 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string usb-whitelist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29727 +#: guix-git/doc/guix.texi:30092 msgid "Include specified devices into USB autosuspend, even if they are already excluded by the driver or via @code{usb-blacklist-wwan?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29732 +#: guix-git/doc/guix.texi:30097 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean usb-autosuspend-disable-on-shutdown?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29734 +#: guix-git/doc/guix.texi:30099 msgid "Enable USB autosuspend before shutdown." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29739 +#: guix-git/doc/guix.texi:30104 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean restore-device-state-on-startup?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29742 +#: guix-git/doc/guix.texi:30107 msgid "Restore radio device state (bluetooth, wifi, wwan) from previous shutdown on system startup." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29747 +#: guix-git/doc/guix.texi:30112 #, no-wrap msgid "thermald" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29748 +#: guix-git/doc/guix.texi:30113 #, no-wrap msgid "CPU frequency scaling with thermald" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29749 +#: guix-git/doc/guix.texi:30114 #, no-wrap msgid "Thermald daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29753 +#: guix-git/doc/guix.texi:30118 msgid "The @code{(gnu services pm)} module provides an interface to thermald, a CPU frequency scaling service which helps prevent overheating." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29754 +#: guix-git/doc/guix.texi:30119 #, no-wrap msgid "{Scheme Variable} thermald-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29759 +#: guix-git/doc/guix.texi:30124 msgid "This is the service type for @uref{https://01.org/linux-thermal-daemon/, thermald}, the Linux Thermal Daemon, which is responsible for controlling the thermal state of processors and preventing overheating." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29761 +#: guix-git/doc/guix.texi:30126 #, no-wrap msgid "{Data Type} thermald-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29763 +#: guix-git/doc/guix.texi:30128 msgid "Data type representing the configuration of @code{thermald-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29765 +#: guix-git/doc/guix.texi:30130 #, no-wrap msgid "@code{ignore-cpuid-check?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29767 +#: guix-git/doc/guix.texi:30132 msgid "Ignore cpuid check for supported CPU models." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29768 +#: guix-git/doc/guix.texi:30133 #, no-wrap msgid "@code{thermald} (default: @var{thermald})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29770 +#: guix-git/doc/guix.texi:30135 msgid "Package object of thermald." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29779 +#: guix-git/doc/guix.texi:30144 msgid "The @code{(gnu services audio)} module provides a service to start MPD (the Music Player Daemon)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29780 +#: guix-git/doc/guix.texi:30145 #, no-wrap msgid "mpd" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29781 +#: guix-git/doc/guix.texi:30146 #, no-wrap msgid "Music Player Daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29786 +#: guix-git/doc/guix.texi:30151 msgid "The Music Player Daemon (MPD) is a service that can play music while being controlled from the local machine or over the network by a variety of clients." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29789 +#: guix-git/doc/guix.texi:30154 msgid "The following example shows how one might run @code{mpd} as user @code{\"bob\"} on port @code{6666}. It uses pulseaudio for output." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29795 +#: guix-git/doc/guix.texi:30160 #, no-wrap msgid "" "(service mpd-service-type\n" @@ -53853,215 +54551,215 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29797 +#: guix-git/doc/guix.texi:30162 #, no-wrap msgid "{Scheme Variable} mpd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29799 +#: guix-git/doc/guix.texi:30164 msgid "The service type for @command{mpd}" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29801 +#: guix-git/doc/guix.texi:30166 #, no-wrap msgid "{Data Type} mpd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29803 +#: guix-git/doc/guix.texi:30168 msgid "Data type representing the configuration of @command{mpd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29805 +#: guix-git/doc/guix.texi:30170 #, no-wrap msgid "@code{user} (default: @code{\"mpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29807 +#: guix-git/doc/guix.texi:30172 msgid "The user to run mpd as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29808 +#: guix-git/doc/guix.texi:30173 #, no-wrap msgid "@code{music-dir} (default: @code{\"~/Music\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29810 +#: guix-git/doc/guix.texi:30175 msgid "The directory to scan for music files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29811 +#: guix-git/doc/guix.texi:30176 #, no-wrap msgid "@code{playlist-dir} (default: @code{\"~/.mpd/playlists\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29813 +#: guix-git/doc/guix.texi:30178 msgid "The directory to store playlists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29814 +#: guix-git/doc/guix.texi:30179 #, no-wrap msgid "@code{db-file} (default: @code{\"~/.mpd/tag_cache\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29816 +#: guix-git/doc/guix.texi:30181 msgid "The location of the music database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29817 +#: guix-git/doc/guix.texi:30182 #, no-wrap msgid "@code{state-file} (default: @code{\"~/.mpd/state\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29819 +#: guix-git/doc/guix.texi:30184 msgid "The location of the file that stores current MPD's state." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29820 +#: guix-git/doc/guix.texi:30185 #, no-wrap msgid "@code{sticker-file} (default: @code{\"~/.mpd/sticker.sql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29822 +#: guix-git/doc/guix.texi:30187 msgid "The location of the sticker database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29823 +#: guix-git/doc/guix.texi:30188 #, no-wrap msgid "@code{port} (default: @code{\"6600\"})" msgstr "@code{porta} (default: @code{\"6600\"})" #. type: table -#: guix-git/doc/guix.texi:29825 +#: guix-git/doc/guix.texi:30190 msgid "The port to run mpd on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29826 +#: guix-git/doc/guix.texi:30191 #, no-wrap msgid "@code{address} (default: @code{\"any\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29829 +#: guix-git/doc/guix.texi:30194 msgid "The address that mpd will bind to. To use a Unix domain socket, an absolute path can be specified here." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29830 +#: guix-git/doc/guix.texi:30195 #, no-wrap msgid "@code{outputs} (default: @code{\"(list (mpd-output))\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29832 +#: guix-git/doc/guix.texi:30197 msgid "The audio outputs that MPD can use. By default this is a single output using pulseaudio." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29836 +#: guix-git/doc/guix.texi:30201 #, no-wrap msgid "{Data Type} mpd-output" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29838 +#: guix-git/doc/guix.texi:30203 msgid "Data type representing an @command{mpd} audio output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29840 +#: guix-git/doc/guix.texi:30205 #, no-wrap msgid "@code{name} (default: @code{\"MPD\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29842 +#: guix-git/doc/guix.texi:30207 msgid "The name of the audio output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29843 +#: guix-git/doc/guix.texi:30208 #, no-wrap msgid "@code{type} (default: @code{\"pulse\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29845 +#: guix-git/doc/guix.texi:30210 msgid "The type of audio output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29846 +#: guix-git/doc/guix.texi:30211 #, no-wrap msgid "@code{enabled?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29851 +#: guix-git/doc/guix.texi:30216 msgid "Specifies whether this audio output is enabled when MPD is started. By default, all audio outputs are enabled. This is just the default setting when there is no state file; with a state file, the previous state is restored." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29852 +#: guix-git/doc/guix.texi:30217 #, no-wrap msgid "@code{tags?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29856 +#: guix-git/doc/guix.texi:30221 msgid "If set to @code{#f}, then MPD will not send tags to this output. This is only useful for output plugins that can receive tags, for example the @code{httpd} output plugin." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29857 +#: guix-git/doc/guix.texi:30222 #, no-wrap msgid "@code{always-on?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29861 +#: guix-git/doc/guix.texi:30226 msgid "If set to @code{#t}, then MPD attempts to keep this audio output always open. This may be useful for streaming servers, when you don’t want to disconnect all listeners even when playback is accidentally stopped." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:29862 +#: guix-git/doc/guix.texi:30227 #, no-wrap msgid "mixer-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29868 +#: guix-git/doc/guix.texi:30233 msgid "This field accepts a symbol that specifies which mixer should be used for this audio output: the @code{hardware} mixer, the @code{software} mixer, the @code{null} mixer (allows setting the volume, but with no effect; this can be used as a trick to implement an external mixer External Mixer) or no mixer (@code{none})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29872 +#: guix-git/doc/guix.texi:30237 msgid "An association list of option symbols to string values to be appended to the audio output configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29878 +#: guix-git/doc/guix.texi:30243 msgid "The following example shows a configuration of @code{mpd} that provides an HTTP audio streaming output." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29890 +#: guix-git/doc/guix.texi:30255 #, no-wrap msgid "" "(service mpd-service-type\n" @@ -54077,34 +54775,34 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29899 +#: guix-git/doc/guix.texi:30264 msgid "The @code{(gnu services virtualization)} module provides services for the libvirt and virtlog daemons, as well as other virtualization-related services." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29900 +#: guix-git/doc/guix.texi:30265 #, no-wrap msgid "Libvirt daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29905 +#: guix-git/doc/guix.texi:30270 msgid "@code{libvirtd} is the server side daemon component of the libvirt virtualization management system. This daemon runs on host servers and performs required management tasks for virtualized guests." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29906 +#: guix-git/doc/guix.texi:30271 #, no-wrap msgid "{Scheme Variable} libvirt-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29909 +#: guix-git/doc/guix.texi:30274 msgid "This is the type of the @uref{https://libvirt.org, libvirt daemon}. Its value must be a @code{libvirt-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29915 +#: guix-git/doc/guix.texi:30280 #, no-wrap msgid "" "(service libvirt-service-type\n" @@ -54114,870 +54812,870 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29920 +#: guix-git/doc/guix.texi:30285 msgid "Available @code{libvirt-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29921 +#: guix-git/doc/guix.texi:30286 #, no-wrap msgid "{@code{libvirt-configuration} parameter} package libvirt" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29923 +#: guix-git/doc/guix.texi:30288 msgid "Libvirt package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29926 +#: guix-git/doc/guix.texi:30291 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean listen-tls?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29929 +#: guix-git/doc/guix.texi:30294 msgid "Flag listening for secure TLS connections on the public TCP/IP port. You must set @code{listen} for this to have any effect." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29932 +#: guix-git/doc/guix.texi:30297 msgid "It is necessary to setup a CA and issue server certificates before using this capability." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29937 +#: guix-git/doc/guix.texi:30302 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean listen-tcp?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29940 +#: guix-git/doc/guix.texi:30305 msgid "Listen for unencrypted TCP connections on the public TCP/IP port. You must set @code{listen} for this to have any effect." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29944 +#: guix-git/doc/guix.texi:30309 msgid "Using the TCP socket requires SASL authentication by default. Only SASL mechanisms which support data encryption are allowed. This is DIGEST_MD5 and GSSAPI (Kerberos5)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29949 +#: guix-git/doc/guix.texi:30314 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tls-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29952 +#: guix-git/doc/guix.texi:30317 msgid "Port for accepting secure TLS connections. This can be a port number, or service name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29954 +#: guix-git/doc/guix.texi:30319 msgid "Defaults to @samp{\"16514\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29957 +#: guix-git/doc/guix.texi:30322 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tcp-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29960 +#: guix-git/doc/guix.texi:30325 msgid "Port for accepting insecure TCP connections. This can be a port number, or service name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29962 +#: guix-git/doc/guix.texi:30327 msgid "Defaults to @samp{\"16509\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29965 +#: guix-git/doc/guix.texi:30330 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string listen-addr" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29967 +#: guix-git/doc/guix.texi:30332 msgid "IP address or hostname used for client connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29972 +#: guix-git/doc/guix.texi:30337 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean mdns-adv?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29974 +#: guix-git/doc/guix.texi:30339 msgid "Flag toggling mDNS advertisement of the libvirt service." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29977 +#: guix-git/doc/guix.texi:30342 msgid "Alternatively can disable for all services on a host by stopping the Avahi daemon." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29982 +#: guix-git/doc/guix.texi:30347 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string mdns-name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29985 +#: guix-git/doc/guix.texi:30350 msgid "Default mDNS advertisement name. This must be unique on the immediate broadcast network." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29987 +#: guix-git/doc/guix.texi:30352 msgid "Defaults to @samp{\"Virtualization Host \"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29990 +#: guix-git/doc/guix.texi:30355 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29994 +#: guix-git/doc/guix.texi:30359 msgid "UNIX domain socket group ownership. This can be used to allow a 'trusted' set of users access to management capabilities without becoming root." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29999 +#: guix-git/doc/guix.texi:30364 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-ro-perms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30002 +#: guix-git/doc/guix.texi:30367 msgid "UNIX socket permissions for the R/O socket. This is used for monitoring VM status only." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30004 guix-git/doc/guix.texi:30022 +#: guix-git/doc/guix.texi:30369 guix-git/doc/guix.texi:30387 msgid "Defaults to @samp{\"0777\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30007 +#: guix-git/doc/guix.texi:30372 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-rw-perms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30011 +#: guix-git/doc/guix.texi:30376 msgid "UNIX socket permissions for the R/W socket. Default allows only root. If PolicyKit is enabled on the socket, the default will change to allow everyone (eg, 0777)" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30013 +#: guix-git/doc/guix.texi:30378 msgid "Defaults to @samp{\"0770\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30016 +#: guix-git/doc/guix.texi:30381 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-admin-perms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30020 +#: guix-git/doc/guix.texi:30385 msgid "UNIX socket permissions for the admin socket. Default allows only owner (root), do not change it unless you are sure to whom you are exposing the access to." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30025 +#: guix-git/doc/guix.texi:30390 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30027 +#: guix-git/doc/guix.texi:30392 msgid "The directory in which sockets will be found/created." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30029 +#: guix-git/doc/guix.texi:30394 msgid "Defaults to @samp{\"/var/run/libvirt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30032 +#: guix-git/doc/guix.texi:30397 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-unix-ro" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30035 +#: guix-git/doc/guix.texi:30400 msgid "Authentication scheme for UNIX read-only sockets. By default socket permissions allow anyone to connect" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30037 guix-git/doc/guix.texi:30046 +#: guix-git/doc/guix.texi:30402 guix-git/doc/guix.texi:30411 msgid "Defaults to @samp{\"polkit\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30040 +#: guix-git/doc/guix.texi:30405 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-unix-rw" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30044 +#: guix-git/doc/guix.texi:30409 msgid "Authentication scheme for UNIX read-write sockets. By default socket permissions only allow root. If PolicyKit support was compiled into libvirt, the default will be to use 'polkit' auth." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30049 +#: guix-git/doc/guix.texi:30414 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-tcp" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30053 +#: guix-git/doc/guix.texi:30418 msgid "Authentication scheme for TCP sockets. If you don't enable SASL, then all TCP traffic is cleartext. Don't do this outside of a dev/test scenario." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30055 +#: guix-git/doc/guix.texi:30420 msgid "Defaults to @samp{\"sasl\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30058 +#: guix-git/doc/guix.texi:30423 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-tls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30062 +#: guix-git/doc/guix.texi:30427 msgid "Authentication scheme for TLS sockets. TLS sockets already have encryption provided by the TLS layer, and limited authentication is done by certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30065 +#: guix-git/doc/guix.texi:30430 msgid "It is possible to make use of any SASL authentication mechanism as well, by using 'sasl' for this option" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30067 +#: guix-git/doc/guix.texi:30432 msgid "Defaults to @samp{\"none\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30070 +#: guix-git/doc/guix.texi:30435 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list access-drivers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30072 +#: guix-git/doc/guix.texi:30437 msgid "API access control scheme." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30075 +#: guix-git/doc/guix.texi:30440 msgid "By default an authenticated user is allowed access to all APIs. Access drivers can place restrictions on this." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30080 +#: guix-git/doc/guix.texi:30445 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string key-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30083 +#: guix-git/doc/guix.texi:30448 msgid "Server key file path. If set to an empty string, then no private key is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30088 +#: guix-git/doc/guix.texi:30453 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string cert-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30091 +#: guix-git/doc/guix.texi:30456 msgid "Server key file path. If set to an empty string, then no certificate is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30096 +#: guix-git/doc/guix.texi:30461 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string ca-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30099 +#: guix-git/doc/guix.texi:30464 msgid "Server key file path. If set to an empty string, then no CA certificate is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30104 +#: guix-git/doc/guix.texi:30469 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string crl-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30107 +#: guix-git/doc/guix.texi:30472 msgid "Certificate revocation list path. If set to an empty string, then no CRL is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30112 +#: guix-git/doc/guix.texi:30477 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean tls-no-sanity-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30114 +#: guix-git/doc/guix.texi:30479 msgid "Disable verification of our own server certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30117 +#: guix-git/doc/guix.texi:30482 msgid "When libvirtd starts it performs some sanity checks against its own certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30122 +#: guix-git/doc/guix.texi:30487 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean tls-no-verify-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30124 +#: guix-git/doc/guix.texi:30489 msgid "Disable verification of client certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30128 +#: guix-git/doc/guix.texi:30493 msgid "Client certificate verification is the primary authentication mechanism. Any client which does not present a certificate signed by the CA will be rejected." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30133 +#: guix-git/doc/guix.texi:30498 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list tls-allowed-dn-list" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30135 +#: guix-git/doc/guix.texi:30500 msgid "Whitelist of allowed x509 Distinguished Name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30140 +#: guix-git/doc/guix.texi:30505 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list sasl-allowed-usernames" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30143 +#: guix-git/doc/guix.texi:30508 msgid "Whitelist of allowed SASL usernames. The format for username depends on the SASL authentication mechanism." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30148 +#: guix-git/doc/guix.texi:30513 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tls-priority" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30152 +#: guix-git/doc/guix.texi:30517 msgid "Override the compile time default TLS priority string. The default is usually @samp{\"NORMAL\"} unless overridden at build time. Only set this is it is desired for libvirt to deviate from the global default settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30154 +#: guix-git/doc/guix.texi:30519 msgid "Defaults to @samp{\"NORMAL\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30157 +#: guix-git/doc/guix.texi:30522 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30160 guix-git/doc/guix.texi:30584 +#: guix-git/doc/guix.texi:30525 guix-git/doc/guix.texi:30949 msgid "Maximum number of concurrent client connections to allow over all sockets combined." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30162 +#: guix-git/doc/guix.texi:30527 msgid "Defaults to @samp{5000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30165 +#: guix-git/doc/guix.texi:30530 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-queued-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30169 +#: guix-git/doc/guix.texi:30534 msgid "Maximum length of queue of connections waiting to be accepted by the daemon. Note, that some protocols supporting retransmission may obey this so that a later reattempt at connection succeeds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30174 +#: guix-git/doc/guix.texi:30539 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-anonymous-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30177 +#: guix-git/doc/guix.texi:30542 msgid "Maximum length of queue of accepted but not yet authenticated clients. Set this to zero to turn this feature off" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30179 guix-git/doc/guix.texi:30197 -#: guix-git/doc/guix.texi:30213 +#: guix-git/doc/guix.texi:30544 guix-git/doc/guix.texi:30562 +#: guix-git/doc/guix.texi:30578 msgid "Defaults to @samp{20}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30182 +#: guix-git/doc/guix.texi:30547 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer min-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30184 +#: guix-git/doc/guix.texi:30549 msgid "Number of workers to start up initially." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30189 +#: guix-git/doc/guix.texi:30554 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30191 +#: guix-git/doc/guix.texi:30556 msgid "Maximum number of worker threads." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30195 +#: guix-git/doc/guix.texi:30560 msgid "If the number of active clients exceeds @code{min-workers}, then more threads are spawned, up to max_workers limit. Typically you'd want max_workers to equal maximum number of clients allowed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30200 +#: guix-git/doc/guix.texi:30565 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer prio-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30204 +#: guix-git/doc/guix.texi:30569 msgid "Number of priority workers. If all workers from above pool are stuck, some calls marked as high priority (notably domainDestroy) can be executed in this pool." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30209 +#: guix-git/doc/guix.texi:30574 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-requests" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30211 +#: guix-git/doc/guix.texi:30576 msgid "Total global limit on concurrent RPC calls." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30216 +#: guix-git/doc/guix.texi:30581 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-client-requests" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30220 +#: guix-git/doc/guix.texi:30585 msgid "Limit on concurrent requests from a single client connection. To avoid one client monopolizing the server this should be a small fraction of the global max_requests and max_workers parameter." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30225 +#: guix-git/doc/guix.texi:30590 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-min-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30227 +#: guix-git/doc/guix.texi:30592 msgid "Same as @code{min-workers} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30232 +#: guix-git/doc/guix.texi:30597 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30234 +#: guix-git/doc/guix.texi:30599 msgid "Same as @code{max-workers} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30239 +#: guix-git/doc/guix.texi:30604 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30241 +#: guix-git/doc/guix.texi:30606 msgid "Same as @code{max-clients} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30246 +#: guix-git/doc/guix.texi:30611 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-queued-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30248 +#: guix-git/doc/guix.texi:30613 msgid "Same as @code{max-queued-clients} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30253 +#: guix-git/doc/guix.texi:30618 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-client-requests" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30255 +#: guix-git/doc/guix.texi:30620 msgid "Same as @code{max-client-requests} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30260 +#: guix-git/doc/guix.texi:30625 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30262 guix-git/doc/guix.texi:30486 +#: guix-git/doc/guix.texi:30627 guix-git/doc/guix.texi:30851 msgid "Logging level. 4 errors, 3 warnings, 2 information, 1 debug." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30267 +#: guix-git/doc/guix.texi:30632 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string log-filters" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30269 guix-git/doc/guix.texi:30493 +#: guix-git/doc/guix.texi:30634 guix-git/doc/guix.texi:30858 msgid "Logging filters." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30272 +#: guix-git/doc/guix.texi:30637 msgid "A filter allows to select a different logging level for a given category of logs. The format for a filter is one of:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30276 guix-git/doc/guix.texi:30500 +#: guix-git/doc/guix.texi:30641 guix-git/doc/guix.texi:30865 msgid "x:name" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30279 guix-git/doc/guix.texi:30503 +#: guix-git/doc/guix.texi:30644 guix-git/doc/guix.texi:30868 msgid "x:+name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30290 +#: guix-git/doc/guix.texi:30655 msgid "where @code{name} is a string which is matched against the category given in the @code{VIR_LOG_INIT()} at the top of each libvirt source file, e.g., @samp{\"remote\"}, @samp{\"qemu\"}, or @samp{\"util.json\"} (the name in the filter can be a substring of the full category name, in order to match multiple similar categories), the optional @samp{\"+\"} prefix tells libvirt to log stack trace for each message matching name, and @code{x} is the minimal level where matching messages should be logged:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30294 guix-git/doc/guix.texi:30339 -#: guix-git/doc/guix.texi:30517 guix-git/doc/guix.texi:30562 +#: guix-git/doc/guix.texi:30659 guix-git/doc/guix.texi:30704 +#: guix-git/doc/guix.texi:30882 guix-git/doc/guix.texi:30927 msgid "1: DEBUG" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30297 guix-git/doc/guix.texi:30342 -#: guix-git/doc/guix.texi:30520 guix-git/doc/guix.texi:30565 +#: guix-git/doc/guix.texi:30662 guix-git/doc/guix.texi:30707 +#: guix-git/doc/guix.texi:30885 guix-git/doc/guix.texi:30930 msgid "2: INFO" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30300 guix-git/doc/guix.texi:30345 -#: guix-git/doc/guix.texi:30523 guix-git/doc/guix.texi:30568 +#: guix-git/doc/guix.texi:30665 guix-git/doc/guix.texi:30710 +#: guix-git/doc/guix.texi:30888 guix-git/doc/guix.texi:30933 msgid "3: WARNING" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30303 guix-git/doc/guix.texi:30348 -#: guix-git/doc/guix.texi:30526 guix-git/doc/guix.texi:30571 +#: guix-git/doc/guix.texi:30668 guix-git/doc/guix.texi:30713 +#: guix-git/doc/guix.texi:30891 guix-git/doc/guix.texi:30936 msgid "4: ERROR" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30308 guix-git/doc/guix.texi:30531 +#: guix-git/doc/guix.texi:30673 guix-git/doc/guix.texi:30896 msgid "Multiple filters can be defined in a single filters statement, they just need to be separated by spaces." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30310 guix-git/doc/guix.texi:30533 +#: guix-git/doc/guix.texi:30675 guix-git/doc/guix.texi:30898 msgid "Defaults to @samp{\"3:remote 4:event\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30313 +#: guix-git/doc/guix.texi:30678 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string log-outputs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30315 guix-git/doc/guix.texi:30538 +#: guix-git/doc/guix.texi:30680 guix-git/doc/guix.texi:30903 msgid "Logging outputs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30318 +#: guix-git/doc/guix.texi:30683 msgid "An output is one of the places to save logging information. The format for an output can be:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30320 guix-git/doc/guix.texi:30543 +#: guix-git/doc/guix.texi:30685 guix-git/doc/guix.texi:30908 #, no-wrap msgid "x:stderr" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30322 guix-git/doc/guix.texi:30545 +#: guix-git/doc/guix.texi:30687 guix-git/doc/guix.texi:30910 msgid "output goes to stderr" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30323 guix-git/doc/guix.texi:30546 +#: guix-git/doc/guix.texi:30688 guix-git/doc/guix.texi:30911 #, no-wrap msgid "x:syslog:name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30325 guix-git/doc/guix.texi:30548 +#: guix-git/doc/guix.texi:30690 guix-git/doc/guix.texi:30913 msgid "use syslog for the output and use the given name as the ident" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30326 guix-git/doc/guix.texi:30549 +#: guix-git/doc/guix.texi:30691 guix-git/doc/guix.texi:30914 #, no-wrap msgid "x:file:file_path" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30328 guix-git/doc/guix.texi:30551 +#: guix-git/doc/guix.texi:30693 guix-git/doc/guix.texi:30916 msgid "output to a file, with the given filepath" msgstr "saída para um arquivo, com o caminho de arquivo dado" #. type: item -#: guix-git/doc/guix.texi:30329 guix-git/doc/guix.texi:30552 +#: guix-git/doc/guix.texi:30694 guix-git/doc/guix.texi:30917 #, no-wrap msgid "x:journald" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30331 guix-git/doc/guix.texi:30554 +#: guix-git/doc/guix.texi:30696 guix-git/doc/guix.texi:30919 msgid "output to journald logging system" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30335 guix-git/doc/guix.texi:30558 +#: guix-git/doc/guix.texi:30700 guix-git/doc/guix.texi:30923 msgid "In all case the x prefix is the minimal level, acting as a filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30353 guix-git/doc/guix.texi:30576 +#: guix-git/doc/guix.texi:30718 guix-git/doc/guix.texi:30941 msgid "Multiple outputs can be defined, they just need to be separated by spaces." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30355 guix-git/doc/guix.texi:30578 +#: guix-git/doc/guix.texi:30720 guix-git/doc/guix.texi:30943 msgid "Defaults to @samp{\"3:stderr\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30358 +#: guix-git/doc/guix.texi:30723 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer audit-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30360 +#: guix-git/doc/guix.texi:30725 msgid "Allows usage of the auditing subsystem to be altered" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30364 +#: guix-git/doc/guix.texi:30729 msgid "0: disable all auditing" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30367 +#: guix-git/doc/guix.texi:30732 msgid "1: enable auditing, only if enabled on host" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30370 +#: guix-git/doc/guix.texi:30735 msgid "2: enable auditing, and exit if disabled on host." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30377 +#: guix-git/doc/guix.texi:30742 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean audit-logging" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30379 +#: guix-git/doc/guix.texi:30744 msgid "Send audit messages via libvirt logging infrastructure." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30384 +#: guix-git/doc/guix.texi:30749 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-string host-uuid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30386 +#: guix-git/doc/guix.texi:30751 msgid "Host UUID@. UUID must not have all digits be the same." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30391 +#: guix-git/doc/guix.texi:30756 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string host-uuid-source" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30393 +#: guix-git/doc/guix.texi:30758 msgid "Source to read host UUID." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30397 +#: guix-git/doc/guix.texi:30762 msgid "@code{smbios}: fetch the UUID from @code{dmidecode -s system-uuid}" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30400 +#: guix-git/doc/guix.texi:30765 msgid "@code{machine-id}: fetch the UUID from @code{/etc/machine-id}" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30405 +#: guix-git/doc/guix.texi:30770 msgid "If @code{dmidecode} does not provide a valid UUID a temporary UUID will be generated." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30407 +#: guix-git/doc/guix.texi:30772 msgid "Defaults to @samp{\"smbios\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30410 +#: guix-git/doc/guix.texi:30775 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer keepalive-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30415 +#: guix-git/doc/guix.texi:30780 msgid "A keepalive message is sent to a client after @code{keepalive_interval} seconds of inactivity to check if the client is still responding. If set to -1, libvirtd will never send keepalive requests; however clients can still send them and the daemon will send responses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30420 +#: guix-git/doc/guix.texi:30785 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer keepalive-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30424 +#: guix-git/doc/guix.texi:30789 msgid "Maximum number of keepalive messages that are allowed to be sent to the client without getting any response before the connection is considered broken." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30431 +#: guix-git/doc/guix.texi:30796 msgid "In other words, the connection is automatically closed approximately after @code{keepalive_interval * (keepalive_count + 1)} seconds since the last message received from the client. When @code{keepalive-count} is set to 0, connections will be automatically closed after @code{keepalive-interval} seconds of inactivity without sending any keepalive messages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30436 +#: guix-git/doc/guix.texi:30801 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-keepalive-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30438 guix-git/doc/guix.texi:30445 +#: guix-git/doc/guix.texi:30803 guix-git/doc/guix.texi:30810 msgid "Same as above but for admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30443 +#: guix-git/doc/guix.texi:30808 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-keepalive-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30450 +#: guix-git/doc/guix.texi:30815 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer ovs-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30452 +#: guix-git/doc/guix.texi:30817 msgid "Timeout for Open vSwitch calls." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30456 +#: guix-git/doc/guix.texi:30821 msgid "The @code{ovs-vsctl} utility is used for the configuration and its timeout option is set by default to 5 seconds to avoid potential infinite waits blocking libvirt." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30463 +#: guix-git/doc/guix.texi:30828 #, no-wrap msgid "Virtlog daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30466 +#: guix-git/doc/guix.texi:30831 msgid "The virtlogd service is a server side daemon component of libvirt that is used to manage logs from virtual machine consoles." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30472 +#: guix-git/doc/guix.texi:30837 msgid "This daemon is not used directly by libvirt client applications, rather it is called on their behalf by @code{libvirtd}. By maintaining the logs in a standalone daemon, the main @code{libvirtd} daemon can be restarted without risk of losing logs. The @code{virtlogd} daemon has the ability to re-exec() itself upon receiving @code{SIGUSR1}, to allow live upgrades without downtime." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30473 +#: guix-git/doc/guix.texi:30838 #, no-wrap msgid "{Scheme Variable} virtlog-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30476 +#: guix-git/doc/guix.texi:30841 msgid "This is the type of the virtlog daemon. Its value must be a @code{virtlog-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30481 +#: guix-git/doc/guix.texi:30846 #, no-wrap msgid "" "(service virtlog-service-type\n" @@ -54986,122 +55684,122 @@ msgid "" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30484 +#: guix-git/doc/guix.texi:30849 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30491 +#: guix-git/doc/guix.texi:30856 #, no-wrap msgid "{@code{virtlog-configuration} parameter} string log-filters" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30496 +#: guix-git/doc/guix.texi:30861 msgid "A filter allows to select a different logging level for a given category of logs The format for a filter is one of:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30513 +#: guix-git/doc/guix.texi:30878 msgid "where @code{name} is a string which is matched against the category given in the @code{VIR_LOG_INIT()} at the top of each libvirt source file, e.g., \"remote\", \"qemu\", or \"util.json\" (the name in the filter can be a substring of the full category name, in order to match multiple similar categories), the optional \"+\" prefix tells libvirt to log stack trace for each message matching name, and @code{x} is the minimal level where matching messages should be logged:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30536 +#: guix-git/doc/guix.texi:30901 #, no-wrap msgid "{@code{virtlog-configuration} parameter} string log-outputs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30541 +#: guix-git/doc/guix.texi:30906 msgid "An output is one of the places to save logging information The format for an output can be:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30581 +#: guix-git/doc/guix.texi:30946 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30586 +#: guix-git/doc/guix.texi:30951 msgid "Defaults to @samp{1024}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30589 +#: guix-git/doc/guix.texi:30954 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30591 +#: guix-git/doc/guix.texi:30956 msgid "Maximum file size before rolling over." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30593 +#: guix-git/doc/guix.texi:30958 msgid "Defaults to @samp{2MB}" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30596 +#: guix-git/doc/guix.texi:30961 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-backups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30598 +#: guix-git/doc/guix.texi:30963 msgid "Maximum number of backup files to keep." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30600 +#: guix-git/doc/guix.texi:30965 msgid "Defaults to @samp{3}" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:30604 +#: guix-git/doc/guix.texi:30969 msgid "transparent-emulation-qemu" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30604 +#: guix-git/doc/guix.texi:30969 #, no-wrap msgid "Transparent Emulation with QEMU" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30606 guix-git/doc/guix.texi:30686 +#: guix-git/doc/guix.texi:30971 guix-git/doc/guix.texi:31051 #, no-wrap msgid "emulation" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:30607 +#: guix-git/doc/guix.texi:30972 #, no-wrap msgid "binfmt_misc" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30615 +#: guix-git/doc/guix.texi:30980 msgid "@code{qemu-binfmt-service-type} provides support for transparent emulation of program binaries built for different architectures---e.g., it allows you to transparently execute an ARMv7 program on an x86_64 machine. It achieves this by combining the @uref{https://www.qemu.org, QEMU} emulator and the @code{binfmt_misc} feature of the kernel Linux. This feature only allows you to emulate GNU/Linux on a different architecture, but see below for GNU/Hurd support." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30616 +#: guix-git/doc/guix.texi:30981 #, no-wrap msgid "{Scheme Variable} qemu-binfmt-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30621 +#: guix-git/doc/guix.texi:30986 msgid "This is the type of the QEMU/binfmt service for transparent emulation. Its value must be a @code{qemu-binfmt-configuration} object, which specifies the QEMU package to use as well as the architecture we want to emulated:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30626 +#: guix-git/doc/guix.texi:30991 #, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -55110,39 +55808,39 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30632 +#: guix-git/doc/guix.texi:30997 msgid "In this example, we enable transparent emulation for the ARM and aarch64 platforms. Running @code{herd stop qemu-binfmt} turns it off, and running @code{herd start qemu-binfmt} turns it back on (@pxref{Invoking herd, the @command{herd} command,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30634 +#: guix-git/doc/guix.texi:30999 #, no-wrap msgid "{Data Type} qemu-binfmt-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30636 +#: guix-git/doc/guix.texi:31001 msgid "This is the configuration for the @code{qemu-binfmt} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30638 +#: guix-git/doc/guix.texi:31003 #, no-wrap msgid "@code{platforms} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30641 +#: guix-git/doc/guix.texi:31006 msgid "The list of emulated QEMU platforms. Each item must be a @dfn{platform object} as returned by @code{lookup-qemu-platforms} (see below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30644 +#: guix-git/doc/guix.texi:31009 msgid "For example, let's suppose you're on an x86_64 machine and you have this service:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30649 +#: guix-git/doc/guix.texi:31014 #, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -55151,79 +55849,79 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30652 +#: guix-git/doc/guix.texi:31017 msgid "You can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30655 +#: guix-git/doc/guix.texi:31020 #, no-wrap msgid "guix build -s armhf-linux inkscape\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30662 +#: guix-git/doc/guix.texi:31027 msgid "and it will build Inkscape for ARMv7 @emph{as if it were a native build}, transparently using QEMU to emulate the ARMv7 CPU@. Pretty handy if you'd like to test a package build for an architecture you don't have access to!" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30663 +#: guix-git/doc/guix.texi:31028 #, no-wrap msgid "@code{qemu} (default: @code{qemu})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30665 guix-git/doc/guix.texi:30723 -#: guix-git/doc/guix.texi:30805 +#: guix-git/doc/guix.texi:31030 guix-git/doc/guix.texi:31088 +#: guix-git/doc/guix.texi:31170 msgid "The QEMU package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30668 +#: guix-git/doc/guix.texi:31033 #, no-wrap msgid "{Scheme Procedure} lookup-qemu-platforms @var{platforms}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30673 +#: guix-git/doc/guix.texi:31038 msgid "Return the list of QEMU platform objects corresponding to @var{platforms}@dots{}. @var{platforms} must be a list of strings corresponding to platform names, such as @code{\"arm\"}, @code{\"sparc\"}, @code{\"mips64el\"}, and so on." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30675 +#: guix-git/doc/guix.texi:31040 #, no-wrap msgid "{Scheme Procedure} qemu-platform? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30677 +#: guix-git/doc/guix.texi:31042 msgid "Return true if @var{obj} is a platform object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30679 +#: guix-git/doc/guix.texi:31044 #, no-wrap msgid "{Scheme Procedure} qemu-platform-name @var{platform}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30681 +#: guix-git/doc/guix.texi:31046 msgid "Return the name of @var{platform}---a string such as @code{\"arm\"}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30684 +#: guix-git/doc/guix.texi:31049 #, no-wrap msgid "QEMU Guest Agent" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30692 +#: guix-git/doc/guix.texi:31057 msgid "The QEMU guest agent provides control over the emulated system to the host. The @code{qemu-guest-agent} service runs the agent on Guix guests. To control the agent from the host, open a socket by invoking QEMU with the following arguments:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30699 +#: guix-git/doc/guix.texi:31064 #, no-wrap msgid "" "qemu-system-x86_64 \\\n" @@ -55234,12 +55932,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30703 +#: guix-git/doc/guix.texi:31068 msgid "This creates a socket at @file{/tmp/qga.sock} on the host. Once the guest agent is running, you can issue commands with @code{socat}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30708 +#: guix-git/doc/guix.texi:31073 #, no-wrap msgid "" "$ guix shell socat -- socat unix-connect:/tmp/qga.sock stdio\n" @@ -55248,78 +55946,76 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30712 +#: guix-git/doc/guix.texi:31077 msgid "See @url{https://wiki.qemu.org/Features/GuestAgent,QEMU guest agent documentation} for more options and commands." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30713 +#: guix-git/doc/guix.texi:31078 #, fuzzy, no-wrap msgid "{Scheme Variable} qemu-guest-agent-service-type" msgstr "guix-publish-service-type" #. type: defvr -#: guix-git/doc/guix.texi:30715 -#, fuzzy -#| msgid "Service Types and Services" +#: guix-git/doc/guix.texi:31080 msgid "Service type for the QEMU guest agent service." -msgstr "Tipos de Service e Serviços" +msgstr "Tipo de serviço para o serviço de agente convidado QEMU." #. type: deftp -#: guix-git/doc/guix.texi:30717 +#: guix-git/doc/guix.texi:31082 #, fuzzy, no-wrap msgid "{Data Type} qemu-guest-agent-configuration" msgstr "build-machine {Data Type}" #. type: deftp -#: guix-git/doc/guix.texi:30719 +#: guix-git/doc/guix.texi:31084 #, fuzzy msgid "Configuration for the @code{qemu-guest-agent} service." msgstr "Gerencie a configuração do sistema operacional." #. type: item -#: guix-git/doc/guix.texi:30721 guix-git/doc/guix.texi:30803 +#: guix-git/doc/guix.texi:31086 guix-git/doc/guix.texi:31168 #, no-wrap msgid "@code{qemu} (default: @code{qemu-minimal})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30724 +#: guix-git/doc/guix.texi:31089 #, fuzzy, no-wrap #| msgid "@code{device} (default: @code{#f})" msgid "@code{device} (default: @code{\"\"})" msgstr "@code{device} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:30727 +#: guix-git/doc/guix.texi:31092 msgid "File name of the device or socket the agent uses to communicate with the host. If empty, QEMU uses a default file name." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30731 +#: guix-git/doc/guix.texi:31096 #, no-wrap msgid "The Hurd in a Virtual Machine" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30734 +#: guix-git/doc/guix.texi:31099 #, no-wrap msgid "the Hurd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30735 +#: guix-git/doc/guix.texi:31100 #, no-wrap msgid "childhurd" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30743 +#: guix-git/doc/guix.texi:31108 msgid "Service @code{hurd-vm} provides support for running GNU/Hurd in a virtual machine (VM), a so-called @dfn{childhurd}. This service is meant to be used on GNU/Linux and the given GNU/Hurd operating system configuration is cross-compiled. The virtual machine is a Shepherd service that can be referred to by the names @code{hurd-vm} and @code{childhurd} and be controlled with commands such as:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30747 +#: guix-git/doc/guix.texi:31112 #, no-wrap msgid "" "herd start hurd-vm\n" @@ -55327,50 +56023,50 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30751 +#: guix-git/doc/guix.texi:31116 msgid "When the service is running, you can view its console by connecting to it with a VNC client, for example with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30754 +#: guix-git/doc/guix.texi:31119 #, no-wrap msgid "guix shell tigervnc-client -- vncviewer localhost:5900\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30760 +#: guix-git/doc/guix.texi:31125 msgid "The default configuration (see @code{hurd-vm-configuration} below) spawns a secure shell (SSH) server in your GNU/Hurd system, which QEMU (the virtual machine emulator) redirects to port 10222 on the host. Thus, you can connect over SSH to the childhurd with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30763 +#: guix-git/doc/guix.texi:31128 #, no-wrap msgid "ssh root@@localhost -p 10022\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30772 +#: guix-git/doc/guix.texi:31137 msgid "The childhurd is volatile and stateless: it starts with a fresh root file system every time you restart it. By default though, all the files under @file{/etc/childhurd} on the host are copied as is to the root file system of the childhurd when it boots. This allows you to initialize ``secrets'' inside the VM: SSH host keys, authorized substitute keys, and so on---see the explanation of @code{secret-root} below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30773 +#: guix-git/doc/guix.texi:31138 #, no-wrap msgid "{Scheme Variable} hurd-vm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30779 +#: guix-git/doc/guix.texi:31144 msgid "This is the type of the Hurd in a Virtual Machine service. Its value must be a @code{hurd-vm-configuration} object, which specifies the operating system (@pxref{operating-system Reference}) and the disk size for the Hurd Virtual Machine, the QEMU package to use as well as the options for running it." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30781 +#: guix-git/doc/guix.texi:31146 msgid "For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30787 +#: guix-git/doc/guix.texi:31152 #, no-wrap msgid "" "(service hurd-vm-service-type\n" @@ -55380,99 +56076,99 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30791 +#: guix-git/doc/guix.texi:31156 msgid "would create a disk image big enough to build GNU@tie{}Hello, with some extra memory." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30793 +#: guix-git/doc/guix.texi:31158 #, no-wrap msgid "{Data Type} hurd-vm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30796 +#: guix-git/doc/guix.texi:31161 msgid "The data type representing the configuration for @code{hurd-vm-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30798 +#: guix-git/doc/guix.texi:31163 #, no-wrap msgid "@code{os} (default: @var{%hurd-vm-operating-system})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30802 +#: guix-git/doc/guix.texi:31167 msgid "The operating system to instantiate. This default is bare-bones with a permissive OpenSSH secure shell daemon listening on port 2222 (@pxref{Networking Services, @code{openssh-service-type}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30806 +#: guix-git/doc/guix.texi:31171 #, no-wrap msgid "@code{image} (default: @var{hurd-vm-disk-image})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30809 +#: guix-git/doc/guix.texi:31174 msgid "The procedure used to build the disk-image built from this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30810 +#: guix-git/doc/guix.texi:31175 #, no-wrap msgid "@code{disk-size} (default: @code{'guess})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30812 +#: guix-git/doc/guix.texi:31177 msgid "The size of the disk image." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30813 +#: guix-git/doc/guix.texi:31178 #, no-wrap msgid "@code{memory-size} (default: @code{512})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30815 +#: guix-git/doc/guix.texi:31180 msgid "The memory size of the Virtual Machine in mebibytes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30816 +#: guix-git/doc/guix.texi:31181 #, no-wrap msgid "@code{options} (default: @code{'(\"--snapshot\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30818 +#: guix-git/doc/guix.texi:31183 msgid "The extra options for running QEMU." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30823 +#: guix-git/doc/guix.texi:31188 msgid "If set, a non-zero positive integer used to parameterize Childhurd instances. It is appended to the service's name, e.g. @code{childhurd1}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30824 +#: guix-git/doc/guix.texi:31189 #, no-wrap msgid "@code{net-options} (default: @var{hurd-vm-net-options})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30826 +#: guix-git/doc/guix.texi:31191 msgid "The procedure used to produce the list of QEMU networking options." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30828 +#: guix-git/doc/guix.texi:31193 msgid "By default, it produces" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30836 +#: guix-git/doc/guix.texi:31201 #, no-wrap msgid "" "'(\"--device\" \"rtl8139,netdev=net0\"\n" @@ -55484,12 +56180,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30839 +#: guix-git/doc/guix.texi:31204 msgid "with forwarded ports:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30844 +#: guix-git/doc/guix.texi:31209 #, no-wrap msgid "" "@var{secrets-port}: @code{(+ 11004 (* 1000 @var{ID}))}\n" @@ -55498,28 +56194,28 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30846 +#: guix-git/doc/guix.texi:31211 #, no-wrap msgid "@code{secret-root} (default: @file{/etc/childhurd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30851 +#: guix-git/doc/guix.texi:31216 msgid "The root directory with out-of-band secrets to be installed into the childhurd once it runs. Childhurds are volatile which means that on every startup, secrets such as the SSH host keys and Guix signing key are recreated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30855 +#: guix-git/doc/guix.texi:31220 msgid "If the @file{/etc/childhurd} directory does not exist, the @code{secret-service} running in the Childhurd will be sent an empty list of secrets." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30858 +#: guix-git/doc/guix.texi:31223 msgid "By default, the service automatically populates @file{/etc/childhurd} with the following non-volatile secrets, unless they already exist:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30867 +#: guix-git/doc/guix.texi:31232 #, no-wrap msgid "" "/etc/childhurd/etc/guix/acl\n" @@ -55532,34 +56228,34 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30871 +#: guix-git/doc/guix.texi:31236 msgid "These files are automatically sent to the guest Hurd VM when it boots, including permissions." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30872 +#: guix-git/doc/guix.texi:31237 #, no-wrap msgid "childhurd, offloading" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30873 +#: guix-git/doc/guix.texi:31238 #, no-wrap msgid "Hurd, offloading" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30877 +#: guix-git/doc/guix.texi:31242 msgid "Having these files in place means that only a couple of things are missing to allow the host to offload @code{i586-gnu} builds to the childhurd:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:30882 +#: guix-git/doc/guix.texi:31247 msgid "Authorizing the childhurd's key on the host so that the host accepts build results coming from the childhurd, which can be done like so:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30886 +#: guix-git/doc/guix.texi:31251 #, no-wrap msgid "" "guix archive --authorize < \\\n" @@ -55567,22 +56263,22 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:30891 +#: guix-git/doc/guix.texi:31256 msgid "Adding the childhurd to @file{/etc/guix/machines.scm} (@pxref{Daemon Offload Setup})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30895 +#: guix-git/doc/guix.texi:31260 msgid "We're working towards making that happen automatically---get in touch with us at @email{guix-devel@@gnu.org} to discuss it!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30902 +#: guix-git/doc/guix.texi:31267 msgid "Note that by default the VM image is volatile, i.e., once stopped the contents are lost. If you want a stateful image instead, override the configuration's @code{image} and @code{options} without the @code{--snapshot} flag using something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30908 +#: guix-git/doc/guix.texi:31273 #, no-wrap msgid "" "(service hurd-vm-service-type\n" @@ -55592,34 +56288,34 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30910 +#: guix-git/doc/guix.texi:31275 #, no-wrap msgid "Ganeti" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30912 +#: guix-git/doc/guix.texi:31277 #, no-wrap msgid "ganeti" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:30919 +#: guix-git/doc/guix.texi:31284 msgid "This service is considered experimental. Configuration options may be changed in a backwards-incompatible manner, and not all features have been thorougly tested. Users of this service are encouraged to share their experience at @email{guix-devel@@gnu.org}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30929 +#: guix-git/doc/guix.texi:31294 msgid "Ganeti is a virtual machine management system. It is designed to keep virtual machines running on a cluster of servers even in the event of hardware failures, and to make maintenance and recovery tasks easy. It consists of multiple services which are described later in this section. In addition to the Ganeti service, you will need the OpenSSH service (@pxref{Networking Services, @code{openssh-service-type}}), and update the @file{/etc/hosts} file (@pxref{operating-system Reference, @code{hosts-file}}) with the cluster name and address (or use a DNS server)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30934 +#: guix-git/doc/guix.texi:31299 msgid "All nodes participating in a Ganeti cluster should have the same Ganeti and @file{/etc/hosts} configuration. Here is an example configuration for a Ganeti cluster node that supports multiple storage backends, and installs the @code{debootstrap} and @code{guix} @dfn{OS providers}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30944 +#: guix-git/doc/guix.texi:31309 #, no-wrap msgid "" "(use-package-modules virtualization)\n" @@ -55634,7 +56330,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30949 +#: guix-git/doc/guix.texi:31314 #, no-wrap msgid "" "192.168.1.200 ganeti.example.com\n" @@ -55645,7 +56341,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30970 +#: guix-git/doc/guix.texi:31335 #, no-wrap msgid "" " ;; Install QEMU so we can use KVM-based instances, and LVM, DRBD and Ceph\n" @@ -55672,7 +56368,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30975 +#: guix-git/doc/guix.texi:31340 #, no-wrap msgid "" " ;; Ganeti uses SSH to communicate between nodes.\n" @@ -55683,7 +56379,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30985 +#: guix-git/doc/guix.texi:31350 #, no-wrap msgid "" " (service ganeti-service-type\n" @@ -55698,120 +56394,120 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30993 +#: guix-git/doc/guix.texi:31358 msgid "Users are advised to read the @url{http://docs.ganeti.org/ganeti/master/html/admin.html,Ganeti administrators guide} to learn about the various cluster options and day-to-day operations. There is also a @url{https://guix.gnu.org/blog/2020/running-a-ganeti-cluster-on-guix/,blog post} describing how to configure and initialize a small cluster." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30994 +#: guix-git/doc/guix.texi:31359 #, no-wrap msgid "{Scheme Variable} ganeti-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30997 +#: guix-git/doc/guix.texi:31362 msgid "This is a service type that includes all the various services that Ganeti nodes should run." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31002 +#: guix-git/doc/guix.texi:31367 msgid "Its value is a @code{ganeti-configuration} object that defines the package to use for CLI operations, as well as configuration for the various daemons. Allowed file storage paths and available guest operating systems are also configured through this data type." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31004 +#: guix-git/doc/guix.texi:31369 #, no-wrap msgid "{Data Type} ganeti-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31006 +#: guix-git/doc/guix.texi:31371 msgid "The @code{ganeti} service takes the following configuration options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31008 guix-git/doc/guix.texi:31236 -#: guix-git/doc/guix.texi:31286 guix-git/doc/guix.texi:31316 -#: guix-git/doc/guix.texi:31343 guix-git/doc/guix.texi:31375 -#: guix-git/doc/guix.texi:31428 guix-git/doc/guix.texi:31448 -#: guix-git/doc/guix.texi:31474 guix-git/doc/guix.texi:31507 -#: guix-git/doc/guix.texi:31547 +#: guix-git/doc/guix.texi:31373 guix-git/doc/guix.texi:31601 +#: guix-git/doc/guix.texi:31651 guix-git/doc/guix.texi:31681 +#: guix-git/doc/guix.texi:31708 guix-git/doc/guix.texi:31740 +#: guix-git/doc/guix.texi:31793 guix-git/doc/guix.texi:31813 +#: guix-git/doc/guix.texi:31839 guix-git/doc/guix.texi:31872 +#: guix-git/doc/guix.texi:31912 #, no-wrap msgid "@code{ganeti} (default: @code{ganeti})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31013 +#: guix-git/doc/guix.texi:31378 msgid "The @code{ganeti} package to use. It will be installed to the system profile and make @command{gnt-cluster}, @command{gnt-instance}, etc available. Note that the value specified here does not affect the other services as each refer to a specific @code{ganeti} package (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31014 +#: guix-git/doc/guix.texi:31379 #, no-wrap msgid "@code{noded-configuration} (default: @code{(ganeti-noded-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31015 +#: guix-git/doc/guix.texi:31380 #, no-wrap msgid "@code{confd-configuration} (default: @code{(ganeti-confd-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31016 +#: guix-git/doc/guix.texi:31381 #, no-wrap msgid "@code{wconfd-configuration} (default: @code{(ganeti-wconfd-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31017 +#: guix-git/doc/guix.texi:31382 #, no-wrap msgid "@code{luxid-configuration} (default: @code{(ganeti-luxid-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31018 +#: guix-git/doc/guix.texi:31383 #, no-wrap msgid "@code{rapi-configuration} (default: @code{(ganeti-rapi-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31019 +#: guix-git/doc/guix.texi:31384 #, no-wrap msgid "@code{kvmd-configuration} (default: @code{(ganeti-kvmd-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31020 +#: guix-git/doc/guix.texi:31385 #, no-wrap msgid "@code{mond-configuration} (default: @code{(ganeti-mond-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31021 +#: guix-git/doc/guix.texi:31386 #, no-wrap msgid "@code{metad-configuration} (default: @code{(ganeti-metad-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31022 +#: guix-git/doc/guix.texi:31387 #, no-wrap msgid "@code{watcher-configuration} (default: @code{(ganeti-watcher-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31023 +#: guix-git/doc/guix.texi:31388 #, no-wrap msgid "@code{cleaner-configuration} (default: @code{(ganeti-cleaner-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31028 +#: guix-git/doc/guix.texi:31393 msgid "These options control the various daemons and cron jobs that are distributed with Ganeti. The possible values for these are described in detail below. To override a setting, you must use the configuration type for that service:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31038 +#: guix-git/doc/guix.texi:31403 #, no-wrap msgid "" "(service ganeti-service-type\n" @@ -55825,34 +56521,34 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31040 +#: guix-git/doc/guix.texi:31405 #, no-wrap msgid "@code{file-storage-paths} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31042 +#: guix-git/doc/guix.texi:31407 msgid "List of allowed directories for file storage backend." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31043 +#: guix-git/doc/guix.texi:31408 #, no-wrap msgid "@code{os} (default: @code{%default-ganeti-os})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31045 +#: guix-git/doc/guix.texi:31410 msgid "List of @code{} records." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31049 +#: guix-git/doc/guix.texi:31414 msgid "In essence @code{ganeti-service-type} is shorthand for declaring each service individually:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31060 +#: guix-git/doc/guix.texi:31425 #, no-wrap msgid "" "(service ganeti-noded-service-type)\n" @@ -55867,297 +56563,297 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31064 +#: guix-git/doc/guix.texi:31429 msgid "Plus a service extension for @code{etc-service-type} that configures the file storage backend and OS variants." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31067 +#: guix-git/doc/guix.texi:31432 #, no-wrap msgid "{Data Type} ganeti-os" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31070 +#: guix-git/doc/guix.texi:31435 msgid "This data type is suitable for passing to the @code{os} parameter of @code{ganeti-configuration}. It takes the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31076 +#: guix-git/doc/guix.texi:31441 msgid "The name for this OS provider. It is only used to specify where the configuration ends up. Setting it to ``debootstrap'' will create @file{/etc/ganeti/instance-debootstrap}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:31077 +#: guix-git/doc/guix.texi:31442 #, no-wrap msgid "extension" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31080 +#: guix-git/doc/guix.texi:31445 msgid "The file extension for variants of this OS type. For example @file{.conf} or @file{.scm}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31081 +#: guix-git/doc/guix.texi:31446 #, no-wrap msgid "@code{variants} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31083 +#: guix-git/doc/guix.texi:31448 msgid "List of @code{ganeti-os-variant} objects for this OS." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31087 +#: guix-git/doc/guix.texi:31452 #, no-wrap msgid "{Data Type} ganeti-os-variant" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31090 +#: guix-git/doc/guix.texi:31455 msgid "This is the data type for a Ganeti OS variant. It takes the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31094 +#: guix-git/doc/guix.texi:31459 msgid "The name of this variant." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:31095 +#: guix-git/doc/guix.texi:31460 #, no-wrap msgid "configuration" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31097 +#: guix-git/doc/guix.texi:31462 msgid "A configuration file for this variant." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31100 +#: guix-git/doc/guix.texi:31465 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-hooks" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31102 +#: guix-git/doc/guix.texi:31467 msgid "This variable contains hooks to configure networking and the GRUB bootloader." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31104 +#: guix-git/doc/guix.texi:31469 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-extra-pkgs" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31106 +#: guix-git/doc/guix.texi:31471 msgid "This variable contains a list of packages suitable for a fully-virtualized guest." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31108 +#: guix-git/doc/guix.texi:31473 #, no-wrap msgid "{Data Type} debootstrap-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31111 +#: guix-git/doc/guix.texi:31476 msgid "This data type creates configuration files suitable for the debootstrap OS provider." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31113 +#: guix-git/doc/guix.texi:31478 #, no-wrap msgid "@code{hooks} (default: @code{%default-debootstrap-hooks})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31117 +#: guix-git/doc/guix.texi:31482 msgid "When not @code{#f}, this must be a G-expression that specifies a directory with scripts that will run when the OS is installed. It can also be a list of @code{(name . file-like)} pairs. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31120 +#: guix-git/doc/guix.texi:31485 #, no-wrap msgid "`((99-hello-world . ,(plain-file \"#!/bin/sh\\necho Hello, World\")))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31125 +#: guix-git/doc/guix.texi:31490 msgid "That will create a directory with one executable named @code{99-hello-world} and run it every time this variant is installed. If set to @code{#f}, hooks in @file{/etc/ganeti/instance-debootstrap/hooks} will be used, if any." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31125 +#: guix-git/doc/guix.texi:31490 #, no-wrap msgid "@code{proxy} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31127 +#: guix-git/doc/guix.texi:31492 msgid "Optional HTTP proxy to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31127 +#: guix-git/doc/guix.texi:31492 guix-git/doc/guix.texi:33685 #, no-wrap msgid "@code{mirror} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31130 +#: guix-git/doc/guix.texi:31495 msgid "The Debian mirror. Typically something like @code{http://ftp.no.debian.org/debian}. The default varies depending on the distribution." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31130 +#: guix-git/doc/guix.texi:31495 #, no-wrap msgid "@code{arch} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31133 +#: guix-git/doc/guix.texi:31498 msgid "The dpkg architecture. Set to @code{armhf} to debootstrap an ARMv7 instance on an AArch64 host. Default is to use the current system architecture." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31133 +#: guix-git/doc/guix.texi:31498 #, no-wrap msgid "@code{suite} (default: @code{\"stable\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31136 +#: guix-git/doc/guix.texi:31501 msgid "When set, this must be a Debian distribution ``suite'' such as @code{buster} or @code{focal}. If set to @code{#f}, the default for the OS provider is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31136 +#: guix-git/doc/guix.texi:31501 #, no-wrap msgid "@code{extra-pkgs} (default: @code{%default-debootstrap-extra-pkgs})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31139 +#: guix-git/doc/guix.texi:31504 msgid "List of extra packages that will get installed by dpkg in addition to the minimal system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31139 +#: guix-git/doc/guix.texi:31504 #, no-wrap msgid "@code{components} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31142 +#: guix-git/doc/guix.texi:31507 msgid "When set, must be a list of Debian repository ``components''. For example @code{'(\"main\" \"contrib\")}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31142 +#: guix-git/doc/guix.texi:31507 #, no-wrap msgid "@code{generate-cache?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31144 +#: guix-git/doc/guix.texi:31509 msgid "Whether to automatically cache the generated debootstrap archive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31144 +#: guix-git/doc/guix.texi:31509 #, no-wrap msgid "@code{clean-cache} (default: @code{14})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31147 +#: guix-git/doc/guix.texi:31512 msgid "Discard the cache after this amount of days. Use @code{#f} to never clear the cache." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31147 +#: guix-git/doc/guix.texi:31512 #, no-wrap msgid "@code{partition-style} (default: @code{'msdos})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31150 +#: guix-git/doc/guix.texi:31515 msgid "The type of partition to create. When set, it must be one of @code{'msdos}, @code{'none} or a string." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31150 +#: guix-git/doc/guix.texi:31515 #, no-wrap msgid "@code{partition-alignment} (default: @code{2048})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31152 +#: guix-git/doc/guix.texi:31517 msgid "Alignment of the partition in sectors." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31155 +#: guix-git/doc/guix.texi:31520 #, no-wrap msgid "{Scheme Procedure} debootstrap-variant @var{name} @var{configuration}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31158 +#: guix-git/doc/guix.texi:31523 msgid "This is a helper procedure that creates a @code{ganeti-os-variant} record. It takes two parameters: a name and a @code{debootstrap-configuration} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31160 +#: guix-git/doc/guix.texi:31525 #, no-wrap msgid "{Scheme Procedure} debootstrap-os @var{variants}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31163 +#: guix-git/doc/guix.texi:31528 msgid "This is a helper procedure that creates a @code{ganeti-os} record. It takes a list of variants created with @code{debootstrap-variant}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31165 +#: guix-git/doc/guix.texi:31530 #, no-wrap msgid "{Scheme Procedure} guix-variant @var{name} @var{configuration}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31170 +#: guix-git/doc/guix.texi:31535 msgid "This is a helper procedure that creates a @code{ganeti-os-variant} record for use with the Guix OS provider. It takes a name and a G-expression that returns a ``file-like'' (@pxref{G-Expressions, file-like objects}) object containing a Guix System configuration." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31172 +#: guix-git/doc/guix.texi:31537 #, no-wrap msgid "{Scheme Procedure} guix-os @var{variants}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31175 +#: guix-git/doc/guix.texi:31540 msgid "This is a helper procedure that creates a @code{ganeti-os} record. It takes a list of variants produced by @code{guix-variant}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31177 +#: guix-git/doc/guix.texi:31542 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-variants" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31181 +#: guix-git/doc/guix.texi:31546 msgid "This is a convenience variable to make the debootstrap provider work ``out of the box'' without users having to declare variants manually. It contains a single debootstrap variant with the default configuration:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31186 +#: guix-git/doc/guix.texi:31551 #, no-wrap msgid "" "(list (debootstrap-variant\n" @@ -56166,18 +56862,18 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31189 +#: guix-git/doc/guix.texi:31554 #, no-wrap msgid "{Scheme Variable} %default-guix-variants" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31193 +#: guix-git/doc/guix.texi:31558 msgid "This is a convenience variable to make the Guix OS provider work without additional configuration. It creates a virtual machine that has an SSH server, a serial console, and authorizes the Ganeti hosts SSH keys." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31199 +#: guix-git/doc/guix.texi:31564 #, no-wrap msgid "" "(list (guix-variant\n" @@ -56187,12 +56883,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31205 +#: guix-git/doc/guix.texi:31570 msgid "Users can implement support for OS providers unbeknownst to Guix by extending the @code{ganeti-os} and @code{ganeti-os-variant} records appropriately. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31214 +#: guix-git/doc/guix.texi:31579 #, no-wrap msgid "" "(ganeti-os\n" @@ -56205,727 +56901,727 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31219 +#: guix-git/doc/guix.texi:31584 msgid "That creates @file{/etc/ganeti/instance-custom/variants/foo.conf} which points to a file in the store with contents @code{this is fine}. It also creates @file{/etc/ganeti/instance-custom/variants/variants.list} with contents @code{foo}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31222 +#: guix-git/doc/guix.texi:31587 msgid "Obviously this may not work for all OS providers out there. If you find the interface limiting, please reach out to @email{guix-devel@@gnu.org}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31225 +#: guix-git/doc/guix.texi:31590 msgid "The rest of this section documents the various services that are included by @code{ganeti-service-type}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31226 +#: guix-git/doc/guix.texi:31591 #, no-wrap msgid "{Scheme Variable} ganeti-noded-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31230 +#: guix-git/doc/guix.texi:31595 msgid "@command{ganeti-noded} is the daemon responsible for node-specific functions within the Ganeti system. The value of this service must be a @code{ganeti-noded-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31232 +#: guix-git/doc/guix.texi:31597 #, no-wrap msgid "{Data Type} ganeti-noded-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31234 +#: guix-git/doc/guix.texi:31599 msgid "This is the configuration for the @code{ganeti-noded} service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31238 guix-git/doc/guix.texi:31288 -#: guix-git/doc/guix.texi:31318 guix-git/doc/guix.texi:31345 -#: guix-git/doc/guix.texi:31377 guix-git/doc/guix.texi:31430 -#: guix-git/doc/guix.texi:31450 guix-git/doc/guix.texi:31476 -#: guix-git/doc/guix.texi:31509 +#: guix-git/doc/guix.texi:31603 guix-git/doc/guix.texi:31653 +#: guix-git/doc/guix.texi:31683 guix-git/doc/guix.texi:31710 +#: guix-git/doc/guix.texi:31742 guix-git/doc/guix.texi:31795 +#: guix-git/doc/guix.texi:31815 guix-git/doc/guix.texi:31841 +#: guix-git/doc/guix.texi:31874 msgid "The @code{ganeti} package to use for this service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31239 +#: guix-git/doc/guix.texi:31604 #, no-wrap msgid "@code{port} (default: @code{1811})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31241 +#: guix-git/doc/guix.texi:31606 msgid "The TCP port on which the node daemon listens for network requests." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31242 guix-git/doc/guix.texi:31292 -#: guix-git/doc/guix.texi:31384 guix-git/doc/guix.texi:31454 +#: guix-git/doc/guix.texi:31607 guix-git/doc/guix.texi:31657 +#: guix-git/doc/guix.texi:31749 guix-git/doc/guix.texi:31819 #, no-wrap msgid "@code{address} (default: @code{\"0.0.0.0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31245 +#: guix-git/doc/guix.texi:31610 msgid "The network address that the daemon will bind to. The default address means bind to all available addresses." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31249 +#: guix-git/doc/guix.texi:31614 msgid "When this is set, it must be a specific network interface (e.g.@: @code{eth0}) that the daemon will bind to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31250 guix-git/doc/guix.texi:31392 +#: guix-git/doc/guix.texi:31615 guix-git/doc/guix.texi:31757 #, no-wrap msgid "@code{max-clients} (default: @code{20})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31254 +#: guix-git/doc/guix.texi:31619 msgid "This sets a limit on the maximum number of simultaneous client connections that the daemon will handle. Connections above this count are accepted, but no responses will be sent until enough connections have closed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31255 guix-git/doc/guix.texi:31397 +#: guix-git/doc/guix.texi:31620 guix-git/doc/guix.texi:31762 #, no-wrap msgid "@code{ssl?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31259 +#: guix-git/doc/guix.texi:31624 msgid "Whether to use SSL/TLS to encrypt network communications. The certificate is automatically provisioned by the cluster and can be rotated with @command{gnt-cluster renew-crypto}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31260 guix-git/doc/guix.texi:31400 +#: guix-git/doc/guix.texi:31625 guix-git/doc/guix.texi:31765 #, no-wrap msgid "@code{ssl-key} (default: @file{\"/var/lib/ganeti/server.pem\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31262 guix-git/doc/guix.texi:31402 +#: guix-git/doc/guix.texi:31627 guix-git/doc/guix.texi:31767 msgid "This can be used to provide a specific encryption key for TLS communications." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31263 guix-git/doc/guix.texi:31403 +#: guix-git/doc/guix.texi:31628 guix-git/doc/guix.texi:31768 #, no-wrap msgid "@code{ssl-cert} (default: @file{\"/var/lib/ganeti/server.pem\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31265 guix-git/doc/guix.texi:31405 +#: guix-git/doc/guix.texi:31630 guix-git/doc/guix.texi:31770 msgid "This can be used to provide a specific certificate for TLS communications." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31269 guix-git/doc/guix.texi:31409 +#: guix-git/doc/guix.texi:31634 guix-git/doc/guix.texi:31774 msgid "When true, the daemon performs additional logging for debugging purposes. Note that this will leak encryption details to the log files, use with caution." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31273 +#: guix-git/doc/guix.texi:31638 #, no-wrap msgid "{Scheme Variable} ganeti-confd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31279 +#: guix-git/doc/guix.texi:31644 msgid "@command{ganeti-confd} answers queries related to the configuration of a Ganeti cluster. The purpose of this daemon is to have a highly available and fast way to query cluster configuration values. It is automatically active on all @dfn{master candidates}. The value of this service must be a @code{ganeti-confd-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31282 +#: guix-git/doc/guix.texi:31647 #, no-wrap msgid "{Data Type} ganeti-confd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31284 +#: guix-git/doc/guix.texi:31649 msgid "This is the configuration for the @code{ganeti-confd} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31289 +#: guix-git/doc/guix.texi:31654 #, no-wrap msgid "@code{port} (default: @code{1814})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31291 +#: guix-git/doc/guix.texi:31656 msgid "The UDP port on which to listen for network requests." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31294 +#: guix-git/doc/guix.texi:31659 msgid "Network address that the daemon will bind to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31297 guix-git/doc/guix.texi:31326 -#: guix-git/doc/guix.texi:31353 guix-git/doc/guix.texi:31433 -#: guix-git/doc/guix.texi:31460 guix-git/doc/guix.texi:31486 +#: guix-git/doc/guix.texi:31662 guix-git/doc/guix.texi:31691 +#: guix-git/doc/guix.texi:31718 guix-git/doc/guix.texi:31798 +#: guix-git/doc/guix.texi:31825 guix-git/doc/guix.texi:31851 msgid "When true, the daemon performs additional logging for debugging purposes." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31301 +#: guix-git/doc/guix.texi:31666 #, no-wrap msgid "{Scheme Variable} ganeti-wconfd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31307 +#: guix-git/doc/guix.texi:31672 msgid "@command{ganeti-wconfd} is the daemon that has authoritative knowledge about the cluster configuration and is the only entity that can accept changes to it. All jobs that need to modify the configuration will do so by sending appropriate requests to this daemon. It only runs on the @dfn{master node} and will automatically disable itself on other nodes." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31310 +#: guix-git/doc/guix.texi:31675 msgid "The value of this service must be a @code{ganeti-wconfd-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31312 +#: guix-git/doc/guix.texi:31677 #, no-wrap msgid "{Data Type} ganeti-wconfd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31314 +#: guix-git/doc/guix.texi:31679 msgid "This is the configuration for the @code{ganeti-wconfd} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31319 guix-git/doc/guix.texi:31346 +#: guix-git/doc/guix.texi:31684 guix-git/doc/guix.texi:31711 #, no-wrap msgid "@code{no-voting?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31323 +#: guix-git/doc/guix.texi:31688 msgid "The daemon will refuse to start if the majority of cluster nodes does not agree that it is running on the master node. Set to @code{#t} to start even if a quorum can not be reached (dangerous, use with caution)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31330 +#: guix-git/doc/guix.texi:31695 #, no-wrap msgid "{Scheme Variable} ganeti-luxid-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31335 +#: guix-git/doc/guix.texi:31700 msgid "@command{ganeti-luxid} is a daemon used to answer queries related to the configuration and the current live state of a Ganeti cluster. Additionally, it is the authoritative daemon for the Ganeti job queue. Jobs can be submitted via this daemon and it schedules and starts them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31337 +#: guix-git/doc/guix.texi:31702 msgid "It takes a @code{ganeti-luxid-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31339 +#: guix-git/doc/guix.texi:31704 #, no-wrap msgid "{Data Type} ganeti-luxid-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31341 +#: guix-git/doc/guix.texi:31706 #, fuzzy msgid "This is the configuration for the @code{ganeti-luxid} service." msgstr "Gerencie a configuração do sistema operacional." #. type: table -#: guix-git/doc/guix.texi:31350 +#: guix-git/doc/guix.texi:31715 msgid "The daemon will refuse to start if it cannot verify that the majority of cluster nodes believes that it is running on the master node. Set to @code{#t} to ignore such checks and start anyway (this can be dangerous)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31357 +#: guix-git/doc/guix.texi:31722 #, no-wrap msgid "{Scheme Variable} ganeti-rapi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31361 +#: guix-git/doc/guix.texi:31726 msgid "@command{ganeti-rapi} provides a remote API for Ganeti clusters. It runs on the master node and can be used to perform cluster actions programmatically via a JSON-based RPC protocol." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31367 +#: guix-git/doc/guix.texi:31732 msgid "Most query operations are allowed without authentication (unless @var{require-authentication?} is set), whereas write operations require explicit authorization via the @file{/var/lib/ganeti/rapi/users} file. See the @url{http://docs.ganeti.org/ganeti/master/html/rapi.html, Ganeti Remote API documentation} for more information." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31369 +#: guix-git/doc/guix.texi:31734 msgid "The value of this service must be a @code{ganeti-rapi-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31371 +#: guix-git/doc/guix.texi:31736 #, no-wrap msgid "{Data Type} ganeti-rapi-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31373 +#: guix-git/doc/guix.texi:31738 msgid "This is the configuration for the @code{ganeti-rapi} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31378 +#: guix-git/doc/guix.texi:31743 #, no-wrap msgid "@code{require-authentication?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31380 +#: guix-git/doc/guix.texi:31745 msgid "Whether to require authentication even for read-only operations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31381 +#: guix-git/doc/guix.texi:31746 #, no-wrap msgid "@code{port} (default: @code{5080})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31383 +#: guix-git/doc/guix.texi:31748 msgid "The TCP port on which to listen to API requests." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31387 +#: guix-git/doc/guix.texi:31752 msgid "The network address that the service will bind to. By default it listens on all configured addresses." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31391 +#: guix-git/doc/guix.texi:31756 msgid "When set, it must specify a specific network interface such as @code{eth0} that the daemon will bind to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31396 +#: guix-git/doc/guix.texi:31761 msgid "The maximum number of simultaneous client requests to handle. Further connections are allowed, but no responses are sent until enough connections have closed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31399 +#: guix-git/doc/guix.texi:31764 msgid "Whether to use SSL/TLS encryption on the RAPI port." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31413 +#: guix-git/doc/guix.texi:31778 #, no-wrap msgid "{Scheme Variable} ganeti-kvmd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31421 +#: guix-git/doc/guix.texi:31786 msgid "@command{ganeti-kvmd} is responsible for determining whether a given KVM instance was shut down by an administrator or a user. Normally Ganeti will restart an instance that was not stopped through Ganeti itself. If the cluster option @code{user_shutdown} is true, this daemon monitors the @code{QMP} socket provided by QEMU and listens for shutdown events, and marks the instance as @dfn{USER_down} instead of @dfn{ERROR_down} when it shuts down gracefully by itself." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31423 +#: guix-git/doc/guix.texi:31788 msgid "It takes a @code{ganeti-kvmd-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31425 +#: guix-git/doc/guix.texi:31790 #, no-wrap msgid "{Data Type} ganeti-kvmd-configuration" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31437 +#: guix-git/doc/guix.texi:31802 #, no-wrap msgid "{Scheme Variable} ganeti-mond-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31441 +#: guix-git/doc/guix.texi:31806 msgid "@command{ganeti-mond} is an optional daemon that provides Ganeti monitoring functionality. It is responsible for running data collectors and publish the collected information through a HTTP interface." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31443 +#: guix-git/doc/guix.texi:31808 msgid "It takes a @code{ganeti-mond-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31445 +#: guix-git/doc/guix.texi:31810 #, no-wrap msgid "{Data Type} ganeti-mond-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31451 +#: guix-git/doc/guix.texi:31816 #, no-wrap msgid "@code{port} (default: @code{1815})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31453 guix-git/doc/guix.texi:31479 +#: guix-git/doc/guix.texi:31818 guix-git/doc/guix.texi:31844 msgid "The port on which the daemon will listen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31457 +#: guix-git/doc/guix.texi:31822 msgid "The network address that the daemon will bind to. By default it binds to all available interfaces." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31464 +#: guix-git/doc/guix.texi:31829 #, no-wrap msgid "{Scheme Variable} ganeti-metad-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31467 +#: guix-git/doc/guix.texi:31832 msgid "@command{ganeti-metad} is an optional daemon that can be used to provide information about the cluster to instances or OS install scripts." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31469 +#: guix-git/doc/guix.texi:31834 msgid "It takes a @code{ganeti-metad-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31471 +#: guix-git/doc/guix.texi:31836 #, no-wrap msgid "{Data Type} ganeti-metad-configuration" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31483 +#: guix-git/doc/guix.texi:31848 msgid "If set, the daemon will bind to this address only. If left unset, the behavior depends on the cluster configuration." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31490 +#: guix-git/doc/guix.texi:31855 #, no-wrap msgid "{Scheme Variable} ganeti-watcher-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31498 +#: guix-git/doc/guix.texi:31863 msgid "@command{ganeti-watcher} is a script designed to run periodically and ensure the health of a cluster. It will automatically restart instances that have stopped without Ganeti's consent, and repairs DRBD links in case a node has rebooted. It also archives old cluster jobs and restarts Ganeti daemons that are not running. If the cluster parameter @code{ensure_node_health} is set, the watcher will also shutdown instances and DRBD devices if the node it is running on is declared offline by known master candidates." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31500 +#: guix-git/doc/guix.texi:31865 msgid "It can be paused on all nodes with @command{gnt-cluster watcher pause}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31502 +#: guix-git/doc/guix.texi:31867 msgid "The service takes a @code{ganeti-watcher-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31504 +#: guix-git/doc/guix.texi:31869 #, no-wrap msgid "{Data Type} ganeti-watcher-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31510 +#: guix-git/doc/guix.texi:31875 #, no-wrap msgid "@code{schedule} (default: @code{'(next-second-from (next-minute (range 0 60 5)))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31512 +#: guix-git/doc/guix.texi:31877 msgid "How often to run the script. The default is every five minutes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31513 +#: guix-git/doc/guix.texi:31878 #, no-wrap msgid "@code{rapi-ip} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31516 +#: guix-git/doc/guix.texi:31881 msgid "This option needs to be specified only if the RAPI daemon is configured to use a particular interface or address. By default the cluster address is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31517 +#: guix-git/doc/guix.texi:31882 #, no-wrap msgid "@code{job-age} (default: @code{(* 6 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31520 +#: guix-git/doc/guix.texi:31885 msgid "Archive cluster jobs older than this age, specified in seconds. The default is 6 hours. This keeps @command{gnt-job list} manageable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31521 +#: guix-git/doc/guix.texi:31886 #, no-wrap msgid "@code{verify-disks?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31525 +#: guix-git/doc/guix.texi:31890 msgid "If this is @code{#f}, the watcher will not try to repair broken DRBD links automatically. Administrators will need to use @command{gnt-cluster verify-disks} manually instead." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31528 +#: guix-git/doc/guix.texi:31893 msgid "When @code{#t}, the script performs additional logging for debugging purposes." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31532 +#: guix-git/doc/guix.texi:31897 #, no-wrap msgid "{Scheme Variable} ganeti-cleaner-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31540 +#: guix-git/doc/guix.texi:31905 msgid "@command{ganeti-cleaner} is a script designed to run periodically and remove old files from the cluster. This service type controls two @dfn{cron jobs}: one intended for the master node that permanently purges old cluster jobs, and one intended for every node that removes expired X509 certificates, keys, and outdated @command{ganeti-watcher} information. Like all Ganeti services, it is safe to include even on non-master nodes as it will disable itself as necessary." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31542 +#: guix-git/doc/guix.texi:31907 msgid "It takes a @code{ganeti-cleaner-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31544 +#: guix-git/doc/guix.texi:31909 #, no-wrap msgid "{Data Type} ganeti-cleaner-configuration" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31549 +#: guix-git/doc/guix.texi:31914 msgid "The @code{ganeti} package to use for the @command{gnt-cleaner} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31550 +#: guix-git/doc/guix.texi:31915 #, no-wrap msgid "@code{master-schedule} (default: @code{\"45 1 * * *\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31553 +#: guix-git/doc/guix.texi:31918 msgid "How often to run the master cleaning job. The default is once per day, at 01:45:00." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31554 +#: guix-git/doc/guix.texi:31919 #, no-wrap msgid "@code{node-schedule} (default: @code{\"45 2 * * *\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31557 +#: guix-git/doc/guix.texi:31922 msgid "How often to run the node cleaning job. The default is once per day, at 02:45:00." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31571 +#: guix-git/doc/guix.texi:31936 msgid "The @code{(gnu services version-control)} module provides a service to allow remote access to local Git repositories. There are three options: the @code{git-daemon-service}, which provides access to repositories via the @code{git://} unsecured TCP-based protocol, extending the @code{nginx} web server to proxy some requests to @code{git-http-backend}, or providing a web interface with @code{cgit-service-type}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31572 +#: guix-git/doc/guix.texi:31937 #, no-wrap msgid "{Scheme Procedure} git-daemon-service [#:config (git-daemon-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31576 +#: guix-git/doc/guix.texi:31941 msgid "Return a service that runs @command{git daemon}, a simple TCP server to expose repositories over the Git protocol for anonymous access." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31582 +#: guix-git/doc/guix.texi:31947 msgid "The optional @var{config} argument should be a @code{} object, by default it allows read-only access to exported@footnote{By creating the magic file @file{git-daemon-export-ok} in the repository directory.} repositories under @file{/srv/git}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31585 +#: guix-git/doc/guix.texi:31950 #, no-wrap msgid "{Data Type} git-daemon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31587 +#: guix-git/doc/guix.texi:31952 msgid "Data type representing the configuration for @code{git-daemon-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31589 +#: guix-git/doc/guix.texi:31954 #, no-wrap msgid "@code{package} (default: @code{git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31591 guix-git/doc/guix.texi:31651 +#: guix-git/doc/guix.texi:31956 guix-git/doc/guix.texi:32016 msgid "Package object of the Git distributed version control system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31592 guix-git/doc/guix.texi:31655 +#: guix-git/doc/guix.texi:31957 guix-git/doc/guix.texi:32020 #, no-wrap msgid "@code{export-all?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31595 +#: guix-git/doc/guix.texi:31960 msgid "Whether to allow access for all Git repositories, even if they do not have the @file{git-daemon-export-ok} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31596 +#: guix-git/doc/guix.texi:31961 #, no-wrap msgid "@code{base-path} (default: @file{/srv/git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31602 +#: guix-git/doc/guix.texi:31967 msgid "Whether to remap all the path requests as relative to the given path. If you run @command{git daemon} with @code{(base-path \"/srv/git\")} on @samp{example.com}, then if you later try to pull @indicateurl{git://example.com/hello.git}, git daemon will interpret the path as @file{/srv/git/hello.git}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31603 +#: guix-git/doc/guix.texi:31968 #, no-wrap msgid "@code{user-path} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31611 +#: guix-git/doc/guix.texi:31976 msgid "Whether to allow @code{~user} notation to be used in requests. When specified with empty string, requests to @indicateurl{git://host/~alice/foo} is taken as a request to access @code{foo} repository in the home directory of user @code{alice}. If @code{(user-path \"@var{path}\")} is specified, the same request is taken as a request to access @file{@var{path}/foo} repository in the home directory of user @code{alice}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31612 +#: guix-git/doc/guix.texi:31977 #, no-wrap msgid "@code{listen} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31615 +#: guix-git/doc/guix.texi:31980 msgid "Whether to listen on specific IP addresses or hostnames, defaults to all." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31616 +#: guix-git/doc/guix.texi:31981 #, no-wrap msgid "@code{port} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31618 +#: guix-git/doc/guix.texi:31983 msgid "Whether to listen on an alternative port, which defaults to 9418." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31619 +#: guix-git/doc/guix.texi:31984 #, no-wrap msgid "@code{whitelist} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31621 +#: guix-git/doc/guix.texi:31986 msgid "If not empty, only allow access to this list of directories." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31625 +#: guix-git/doc/guix.texi:31990 msgid "Extra options will be passed to @command{git daemon}, please run @command{man git-daemon} for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31639 +#: guix-git/doc/guix.texi:32004 msgid "The @code{git://} protocol lacks authentication. When you pull from a repository fetched via @code{git://}, you don't know whether the data you receive was modified or is even coming from the specified host, and your connection is subject to eavesdropping. It's better to use an authenticated and encrypted transport, such as @code{https}. Although Git allows you to serve repositories using unsophisticated file-based web servers, there is a faster protocol implemented by the @code{git-http-backend} program. This program is the back-end of a proper Git web service. It is designed to sit behind a FastCGI proxy. @xref{Web Services}, for more on running the necessary @code{fcgiwrap} daemon." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31642 +#: guix-git/doc/guix.texi:32007 msgid "Guix has a separate configuration data type for serving Git repositories over HTTP." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31643 +#: guix-git/doc/guix.texi:32008 #, no-wrap msgid "{Data Type} git-http-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31647 +#: guix-git/doc/guix.texi:32012 msgid "Data type representing the configuration for a future @code{git-http-service-type}; can currently be used to configure Nginx through @code{git-http-nginx-location-configuration}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31649 +#: guix-git/doc/guix.texi:32014 #, no-wrap msgid "@code{package} (default: @var{git})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31652 +#: guix-git/doc/guix.texi:32017 #, no-wrap msgid "@code{git-root} (default: @file{/srv/git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31654 +#: guix-git/doc/guix.texi:32019 msgid "Directory containing the Git repositories to expose to the world." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31658 +#: guix-git/doc/guix.texi:32023 msgid "Whether to expose access for all Git repositories in @var{git-root}, even if they do not have the @file{git-daemon-export-ok} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31659 +#: guix-git/doc/guix.texi:32024 #, no-wrap msgid "@code{uri-path} (default: @samp{/git/})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31664 +#: guix-git/doc/guix.texi:32029 msgid "Path prefix for Git access. With the default @samp{/git/} prefix, this will map @indicateurl{http://@var{server}/git/@var{repo}.git} to @file{/srv/git/@var{repo}.git}. Requests whose URI paths do not begin with this prefix are not passed on to this Git instance." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31665 +#: guix-git/doc/guix.texi:32030 #, no-wrap msgid "@code{fcgiwrap-socket} (default: @code{127.0.0.1:9000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31668 +#: guix-git/doc/guix.texi:32033 msgid "The socket on which the @code{fcgiwrap} daemon is listening. @xref{Web Services}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31675 +#: guix-git/doc/guix.texi:32040 msgid "There is no @code{git-http-service-type}, currently; instead you can create an @code{nginx-location-configuration} from a @code{git-http-configuration} and then add that location to a web server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31676 +#: guix-git/doc/guix.texi:32041 #, no-wrap msgid "{Scheme Procedure} git-http-nginx-location-configuration @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31681 +#: guix-git/doc/guix.texi:32046 msgid "[config=(git-http-configuration)] Compute an @code{nginx-location-configuration} that corresponds to the given Git http configuration. An example nginx service definition to serve the default @file{/srv/git} over HTTPS might be:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31698 +#: guix-git/doc/guix.texi:32063 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -56946,1409 +57642,1414 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31705 +#: guix-git/doc/guix.texi:32070 msgid "This example assumes that you are using Let's Encrypt to get your TLS certificate. @xref{Certificate Services}. The default @code{certbot} service will redirect all HTTP traffic on @code{git.my-host.org} to HTTPS@. You will also need to add an @code{fcgiwrap} proxy to your system services. @xref{Web Services}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:31707 +#: guix-git/doc/guix.texi:32072 #, no-wrap msgid "Cgit Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:31709 +#: guix-git/doc/guix.texi:32074 #, no-wrap msgid "Cgit service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:31710 +#: guix-git/doc/guix.texi:32075 #, no-wrap msgid "Git, web interface" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31713 +#: guix-git/doc/guix.texi:32078 msgid "@uref{https://git.zx2c4.com/cgit/, Cgit} is a web frontend for Git repositories written in C." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31716 +#: guix-git/doc/guix.texi:32081 msgid "The following example will configure the service with default values. By default, Cgit can be accessed on port 80 (@code{http://localhost:80})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31719 +#: guix-git/doc/guix.texi:32084 #, no-wrap msgid "(service cgit-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31723 +#: guix-git/doc/guix.texi:32088 msgid "The @code{file-object} type designates either a file-like object (@pxref{G-Expressions, file-like objects}) or a string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31727 +#: guix-git/doc/guix.texi:32092 msgid "Available @code{cgit-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31728 +#: guix-git/doc/guix.texi:32093 #, no-wrap msgid "{@code{cgit-configuration} parameter} package package" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31730 +#: guix-git/doc/guix.texi:32095 msgid "The CGIT package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31733 +#: guix-git/doc/guix.texi:32098 #, no-wrap msgid "{@code{cgit-configuration} parameter} nginx-server-configuration-list nginx" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31738 +#: guix-git/doc/guix.texi:32100 +msgid "NGINX configuration." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:32103 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object about-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31741 +#: guix-git/doc/guix.texi:32106 msgid "Specifies a command which will be invoked to format the content of about pages (both top-level and for each repository)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31746 +#: guix-git/doc/guix.texi:32111 #, no-wrap msgid "{@code{cgit-configuration} parameter} string agefile" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31749 +#: guix-git/doc/guix.texi:32114 msgid "Specifies a path, relative to each repository path, which can be used to specify the date and time of the youngest commit in the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31754 +#: guix-git/doc/guix.texi:32119 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object auth-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31757 +#: guix-git/doc/guix.texi:32122 msgid "Specifies a command that will be invoked for authenticating repository access." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31762 +#: guix-git/doc/guix.texi:32127 #, no-wrap msgid "{@code{cgit-configuration} parameter} string branch-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31765 +#: guix-git/doc/guix.texi:32130 msgid "Flag which, when set to @samp{age}, enables date ordering in the branch ref list, and when set @samp{name} enables ordering by branch name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31767 +#: guix-git/doc/guix.texi:32132 msgid "Defaults to @samp{\"name\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31770 +#: guix-git/doc/guix.texi:32135 #, no-wrap msgid "{@code{cgit-configuration} parameter} string cache-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31772 +#: guix-git/doc/guix.texi:32137 msgid "Path used to store the cgit cache entries." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31774 +#: guix-git/doc/guix.texi:32139 msgid "Defaults to @samp{\"/var/cache/cgit\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31777 +#: guix-git/doc/guix.texi:32142 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-static-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31780 +#: guix-git/doc/guix.texi:32145 msgid "Number which specifies the time-to-live, in minutes, for the cached version of repository pages accessed with a fixed SHA1." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31782 guix-git/doc/guix.texi:32225 +#: guix-git/doc/guix.texi:32147 guix-git/doc/guix.texi:32590 msgid "Defaults to @samp{-1}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31785 +#: guix-git/doc/guix.texi:32150 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-dynamic-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31788 +#: guix-git/doc/guix.texi:32153 msgid "Number which specifies the time-to-live, in minutes, for the cached version of repository pages accessed without a fixed SHA1." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31793 +#: guix-git/doc/guix.texi:32158 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-repo-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31796 +#: guix-git/doc/guix.texi:32161 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository summary page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31801 +#: guix-git/doc/guix.texi:32166 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-root-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31804 +#: guix-git/doc/guix.texi:32169 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31809 +#: guix-git/doc/guix.texi:32174 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-scanrc-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31812 +#: guix-git/doc/guix.texi:32177 msgid "Number which specifies the time-to-live, in minutes, for the result of scanning a path for Git repositories." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31817 +#: guix-git/doc/guix.texi:32182 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-about-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31820 +#: guix-git/doc/guix.texi:32185 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository about page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31825 +#: guix-git/doc/guix.texi:32190 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-snapshot-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31828 +#: guix-git/doc/guix.texi:32193 msgid "Number which specifies the time-to-live, in minutes, for the cached version of snapshots." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31833 +#: guix-git/doc/guix.texi:32198 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31836 +#: guix-git/doc/guix.texi:32201 msgid "The maximum number of entries in the cgit cache. When set to @samp{0}, caching is disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31841 +#: guix-git/doc/guix.texi:32206 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean case-sensitive-sort?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31843 +#: guix-git/doc/guix.texi:32208 msgid "Sort items in the repo list case sensitively." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31848 +#: guix-git/doc/guix.texi:32213 #, no-wrap msgid "{@code{cgit-configuration} parameter} list clone-prefix" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31851 +#: guix-git/doc/guix.texi:32216 msgid "List of common prefixes which, when combined with a repository URL, generates valid clone URLs for the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31856 +#: guix-git/doc/guix.texi:32221 #, no-wrap msgid "{@code{cgit-configuration} parameter} list clone-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31858 +#: guix-git/doc/guix.texi:32223 msgid "List of @code{clone-url} templates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31863 +#: guix-git/doc/guix.texi:32228 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object commit-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31865 +#: guix-git/doc/guix.texi:32230 msgid "Command which will be invoked to format commit messages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31870 +#: guix-git/doc/guix.texi:32235 #, no-wrap msgid "{@code{cgit-configuration} parameter} string commit-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31874 guix-git/doc/guix.texi:32432 +#: guix-git/doc/guix.texi:32239 guix-git/doc/guix.texi:32797 msgid "Flag which, when set to @samp{date}, enables strict date ordering in the commit log, and when set to @samp{topo} enables strict topological ordering." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31876 +#: guix-git/doc/guix.texi:32241 msgid "Defaults to @samp{\"git log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31879 +#: guix-git/doc/guix.texi:32244 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object css" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31881 +#: guix-git/doc/guix.texi:32246 msgid "URL which specifies the css document to include in all cgit pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31883 +#: guix-git/doc/guix.texi:32248 msgid "Defaults to @samp{\"/share/cgit/cgit.css\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31886 +#: guix-git/doc/guix.texi:32251 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object email-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31890 +#: guix-git/doc/guix.texi:32255 msgid "Specifies a command which will be invoked to format names and email address of committers, authors, and taggers, as represented in various places throughout the cgit interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31895 +#: guix-git/doc/guix.texi:32260 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean embedded?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31898 +#: guix-git/doc/guix.texi:32263 msgid "Flag which, when set to @samp{#t}, will make cgit generate a HTML fragment suitable for embedding in other HTML pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31903 +#: guix-git/doc/guix.texi:32268 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-commit-graph?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31907 +#: guix-git/doc/guix.texi:32272 msgid "Flag which, when set to @samp{#t}, will make cgit print an ASCII-art commit history graph to the left of the commit messages in the repository log page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31912 +#: guix-git/doc/guix.texi:32277 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-filter-overrides?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31915 +#: guix-git/doc/guix.texi:32280 msgid "Flag which, when set to @samp{#t}, allows all filter settings to be overridden in repository-specific cgitrc files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31920 +#: guix-git/doc/guix.texi:32285 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-follow-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31923 +#: guix-git/doc/guix.texi:32288 msgid "Flag which, when set to @samp{#t}, allows users to follow a file in the log view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31928 +#: guix-git/doc/guix.texi:32293 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-http-clone?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31931 +#: guix-git/doc/guix.texi:32296 msgid "If set to @samp{#t}, cgit will act as an dumb HTTP endpoint for Git clones." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31936 +#: guix-git/doc/guix.texi:32301 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-index-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31939 +#: guix-git/doc/guix.texi:32304 msgid "Flag which, when set to @samp{#t}, will make cgit generate extra links \"summary\", \"commit\", \"tree\" for each repo in the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31944 +#: guix-git/doc/guix.texi:32309 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-index-owner?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31947 +#: guix-git/doc/guix.texi:32312 msgid "Flag which, when set to @samp{#t}, will make cgit display the owner of each repo in the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31952 +#: guix-git/doc/guix.texi:32317 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-log-filecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31955 +#: guix-git/doc/guix.texi:32320 msgid "Flag which, when set to @samp{#t}, will make cgit print the number of modified files for each commit on the repository log page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31960 +#: guix-git/doc/guix.texi:32325 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-log-linecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31963 +#: guix-git/doc/guix.texi:32328 msgid "Flag which, when set to @samp{#t}, will make cgit print the number of added and removed lines for each commit on the repository log page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31968 +#: guix-git/doc/guix.texi:32333 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-remote-branches?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31971 guix-git/doc/guix.texi:32495 +#: guix-git/doc/guix.texi:32336 guix-git/doc/guix.texi:32860 msgid "Flag which, when set to @code{#t}, will make cgit display remote branches in the summary and refs views." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31976 +#: guix-git/doc/guix.texi:32341 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-subject-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31980 +#: guix-git/doc/guix.texi:32345 msgid "Flag which, when set to @code{1}, will make cgit use the subject of the parent commit as link text when generating links to parent commits in commit view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31985 +#: guix-git/doc/guix.texi:32350 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-html-serving?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31989 +#: guix-git/doc/guix.texi:32354 msgid "Flag which, when set to @samp{#t}, will make cgit use the subject of the parent commit as link text when generating links to parent commits in commit view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31994 +#: guix-git/doc/guix.texi:32359 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-tree-linenumbers?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31997 +#: guix-git/doc/guix.texi:32362 msgid "Flag which, when set to @samp{#t}, will make cgit generate linenumber links for plaintext blobs printed in the tree view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32002 +#: guix-git/doc/guix.texi:32367 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-git-config?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32005 +#: guix-git/doc/guix.texi:32370 msgid "Flag which, when set to @samp{#f}, will allow cgit to use Git config to set any repo specific settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32010 +#: guix-git/doc/guix.texi:32375 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object favicon" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32012 +#: guix-git/doc/guix.texi:32377 msgid "URL used as link to a shortcut icon for cgit." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32014 +#: guix-git/doc/guix.texi:32379 msgid "Defaults to @samp{\"/favicon.ico\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32017 +#: guix-git/doc/guix.texi:32382 #, no-wrap msgid "{@code{cgit-configuration} parameter} string footer" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32021 +#: guix-git/doc/guix.texi:32386 msgid "The content of the file specified with this option will be included verbatim at the bottom of all pages (i.e.@: it replaces the standard \"generated by...\"@: message)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32026 +#: guix-git/doc/guix.texi:32391 #, no-wrap msgid "{@code{cgit-configuration} parameter} string head-include" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32029 +#: guix-git/doc/guix.texi:32394 msgid "The content of the file specified with this option will be included verbatim in the HTML HEAD section on all pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32034 +#: guix-git/doc/guix.texi:32399 #, no-wrap msgid "{@code{cgit-configuration} parameter} string header" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32037 +#: guix-git/doc/guix.texi:32402 msgid "The content of the file specified with this option will be included verbatim at the top of all pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32042 +#: guix-git/doc/guix.texi:32407 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object include" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32045 +#: guix-git/doc/guix.texi:32410 msgid "Name of a configfile to include before the rest of the current config- file is parsed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32050 +#: guix-git/doc/guix.texi:32415 #, no-wrap msgid "{@code{cgit-configuration} parameter} string index-header" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32053 +#: guix-git/doc/guix.texi:32418 msgid "The content of the file specified with this option will be included verbatim above the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32058 +#: guix-git/doc/guix.texi:32423 #, no-wrap msgid "{@code{cgit-configuration} parameter} string index-info" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32061 +#: guix-git/doc/guix.texi:32426 msgid "The content of the file specified with this option will be included verbatim below the heading on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32066 +#: guix-git/doc/guix.texi:32431 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean local-time?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32069 +#: guix-git/doc/guix.texi:32434 msgid "Flag which, if set to @samp{#t}, makes cgit print commit and tag times in the servers timezone." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32074 +#: guix-git/doc/guix.texi:32439 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object logo" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32077 +#: guix-git/doc/guix.texi:32442 msgid "URL which specifies the source of an image which will be used as a logo on all cgit pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32079 +#: guix-git/doc/guix.texi:32444 msgid "Defaults to @samp{\"/share/cgit/cgit.png\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32082 +#: guix-git/doc/guix.texi:32447 #, no-wrap msgid "{@code{cgit-configuration} parameter} string logo-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32084 guix-git/doc/guix.texi:32541 +#: guix-git/doc/guix.texi:32449 guix-git/doc/guix.texi:32906 msgid "URL loaded when clicking on the cgit logo image." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32089 +#: guix-git/doc/guix.texi:32454 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object owner-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32092 +#: guix-git/doc/guix.texi:32457 msgid "Command which will be invoked to format the Owner column of the main page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32097 +#: guix-git/doc/guix.texi:32462 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-atom-items" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32099 +#: guix-git/doc/guix.texi:32464 msgid "Number of items to display in atom feeds view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32104 +#: guix-git/doc/guix.texi:32469 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-commit-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32106 +#: guix-git/doc/guix.texi:32471 msgid "Number of entries to list per page in \"log\" view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32111 +#: guix-git/doc/guix.texi:32476 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-message-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32113 +#: guix-git/doc/guix.texi:32478 msgid "Number of commit message characters to display in \"log\" view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32115 guix-git/doc/guix.texi:32131 +#: guix-git/doc/guix.texi:32480 guix-git/doc/guix.texi:32496 msgid "Defaults to @samp{80}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32118 +#: guix-git/doc/guix.texi:32483 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-repo-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32121 +#: guix-git/doc/guix.texi:32486 msgid "Specifies the number of entries to list per page on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32126 +#: guix-git/doc/guix.texi:32491 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-repodesc-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32129 +#: guix-git/doc/guix.texi:32494 msgid "Specifies the maximum number of repo description characters to display on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32134 +#: guix-git/doc/guix.texi:32499 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-blob-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32136 +#: guix-git/doc/guix.texi:32501 msgid "Specifies the maximum size of a blob to display HTML for in KBytes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32141 +#: guix-git/doc/guix.texi:32506 #, no-wrap msgid "{@code{cgit-configuration} parameter} string max-stats" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32144 +#: guix-git/doc/guix.texi:32509 msgid "Maximum statistics period. Valid values are @samp{week},@samp{month}, @samp{quarter} and @samp{year}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32149 +#: guix-git/doc/guix.texi:32514 #, no-wrap msgid "{@code{cgit-configuration} parameter} mimetype-alist mimetype" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32151 +#: guix-git/doc/guix.texi:32516 msgid "Mimetype for the specified filename extension." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32155 +#: guix-git/doc/guix.texi:32520 msgid "Defaults to @samp{((gif \"image/gif\") (html \"text/html\") (jpg \"image/jpeg\") (jpeg \"image/jpeg\") (pdf \"application/pdf\") (png \"image/png\") (svg \"image/svg+xml\"))}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32158 +#: guix-git/doc/guix.texi:32523 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object mimetype-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32160 +#: guix-git/doc/guix.texi:32525 msgid "Specifies the file to use for automatic mimetype lookup." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32165 +#: guix-git/doc/guix.texi:32530 #, no-wrap msgid "{@code{cgit-configuration} parameter} string module-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32168 +#: guix-git/doc/guix.texi:32533 msgid "Text which will be used as the formatstring for a hyperlink when a submodule is printed in a directory listing." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32173 +#: guix-git/doc/guix.texi:32538 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean nocache?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32175 +#: guix-git/doc/guix.texi:32540 msgid "If set to the value @samp{#t} caching will be disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32180 +#: guix-git/doc/guix.texi:32545 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean noplainemail?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32183 +#: guix-git/doc/guix.texi:32548 msgid "If set to @samp{#t} showing full author email addresses will be disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32188 +#: guix-git/doc/guix.texi:32553 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean noheader?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32191 +#: guix-git/doc/guix.texi:32556 msgid "Flag which, when set to @samp{#t}, will make cgit omit the standard header on all pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32196 +#: guix-git/doc/guix.texi:32561 #, no-wrap msgid "{@code{cgit-configuration} parameter} project-list project-list" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32200 +#: guix-git/doc/guix.texi:32565 msgid "A list of subdirectories inside of @code{repository-directory}, relative to it, that should loaded as Git repositories. An empty list means that all subdirectories will be loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32205 +#: guix-git/doc/guix.texi:32570 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object readme" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32207 +#: guix-git/doc/guix.texi:32572 msgid "Text which will be used as default value for @code{cgit-repo-readme}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32212 +#: guix-git/doc/guix.texi:32577 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean remove-suffix?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32216 +#: guix-git/doc/guix.texi:32581 msgid "If set to @code{#t} and @code{repository-directory} is enabled, if any repositories are found with a suffix of @code{.git}, this suffix will be removed for the URL and name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32221 +#: guix-git/doc/guix.texi:32586 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer renamelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32223 +#: guix-git/doc/guix.texi:32588 msgid "Maximum number of files to consider when detecting renames." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32228 +#: guix-git/doc/guix.texi:32593 #, no-wrap msgid "{@code{cgit-configuration} parameter} string repository-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32230 +#: guix-git/doc/guix.texi:32595 msgid "The way in which repositories in each section are sorted." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32235 +#: guix-git/doc/guix.texi:32600 #, no-wrap msgid "{@code{cgit-configuration} parameter} robots-list robots" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32237 +#: guix-git/doc/guix.texi:32602 msgid "Text used as content for the @code{robots} meta-tag." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32239 +#: guix-git/doc/guix.texi:32604 msgid "Defaults to @samp{(\"noindex\" \"nofollow\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32242 +#: guix-git/doc/guix.texi:32607 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-desc" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32244 +#: guix-git/doc/guix.texi:32609 msgid "Text printed below the heading on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32246 +#: guix-git/doc/guix.texi:32611 msgid "Defaults to @samp{\"a fast webinterface for the git dscm\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32249 +#: guix-git/doc/guix.texi:32614 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-readme" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32252 +#: guix-git/doc/guix.texi:32617 msgid "The content of the file specified with this option will be included verbatim below the ``about'' link on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32257 +#: guix-git/doc/guix.texi:32622 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-title" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32259 +#: guix-git/doc/guix.texi:32624 msgid "Text printed as heading on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32264 +#: guix-git/doc/guix.texi:32629 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean scan-hidden-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32270 +#: guix-git/doc/guix.texi:32635 msgid "If set to @samp{#t} and repository-directory is enabled, repository-directory will recurse into directories whose name starts with a period. Otherwise, repository-directory will stay away from such directories, considered as ``hidden''. Note that this does not apply to the @file{.git} directory in non-bare repos." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32275 +#: guix-git/doc/guix.texi:32640 #, no-wrap msgid "{@code{cgit-configuration} parameter} list snapshots" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32278 +#: guix-git/doc/guix.texi:32643 msgid "Text which specifies the default set of snapshot formats that cgit generates links for." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32283 +#: guix-git/doc/guix.texi:32648 #, no-wrap msgid "{@code{cgit-configuration} parameter} repository-directory repository-directory" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32286 +#: guix-git/doc/guix.texi:32651 msgid "Name of the directory to scan for repositories (represents @code{scan-path})." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32288 +#: guix-git/doc/guix.texi:32653 msgid "Defaults to @samp{\"/srv/git\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32291 +#: guix-git/doc/guix.texi:32656 #, no-wrap msgid "{@code{cgit-configuration} parameter} string section" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32294 guix-git/doc/guix.texi:32610 +#: guix-git/doc/guix.texi:32659 guix-git/doc/guix.texi:32975 msgid "The name of the current repository section - all repositories defined after this option will inherit the current section name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32299 +#: guix-git/doc/guix.texi:32664 #, no-wrap msgid "{@code{cgit-configuration} parameter} string section-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32302 +#: guix-git/doc/guix.texi:32667 msgid "Flag which, when set to @samp{1}, will sort the sections on the repository listing by name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32307 +#: guix-git/doc/guix.texi:32672 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer section-from-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32310 +#: guix-git/doc/guix.texi:32675 msgid "A number which, if defined prior to repository-directory, specifies how many path elements from each repo path to use as a default section name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32315 +#: guix-git/doc/guix.texi:32680 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean side-by-side-diffs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32318 +#: guix-git/doc/guix.texi:32683 msgid "If set to @samp{#t} shows side-by-side diffs instead of unidiffs per default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32323 +#: guix-git/doc/guix.texi:32688 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object source-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32326 +#: guix-git/doc/guix.texi:32691 msgid "Specifies a command which will be invoked to format plaintext blobs in the tree view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32331 +#: guix-git/doc/guix.texi:32696 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-branches" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32334 +#: guix-git/doc/guix.texi:32699 msgid "Specifies the number of branches to display in the repository ``summary'' view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32339 +#: guix-git/doc/guix.texi:32704 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32342 +#: guix-git/doc/guix.texi:32707 msgid "Specifies the number of log entries to display in the repository ``summary'' view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32347 +#: guix-git/doc/guix.texi:32712 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-tags" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32350 +#: guix-git/doc/guix.texi:32715 msgid "Specifies the number of tags to display in the repository ``summary'' view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32355 +#: guix-git/doc/guix.texi:32720 #, no-wrap msgid "{@code{cgit-configuration} parameter} string strict-export" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32358 +#: guix-git/doc/guix.texi:32723 msgid "Filename which, if specified, needs to be present within the repository for cgit to allow access to that repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32363 +#: guix-git/doc/guix.texi:32728 #, no-wrap msgid "{@code{cgit-configuration} parameter} string virtual-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32365 +#: guix-git/doc/guix.texi:32730 msgid "URL which, if specified, will be used as root for all cgit links." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32367 +#: guix-git/doc/guix.texi:32732 msgid "Defaults to @samp{\"/\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32370 +#: guix-git/doc/guix.texi:32735 #, no-wrap msgid "{@code{cgit-configuration} parameter} repository-cgit-configuration-list repositories" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32372 +#: guix-git/doc/guix.texi:32737 msgid "A list of @dfn{cgit-repo} records to use with config." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32376 +#: guix-git/doc/guix.texi:32741 msgid "Available @code{repository-cgit-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32377 +#: guix-git/doc/guix.texi:32742 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list snapshots" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32380 +#: guix-git/doc/guix.texi:32745 msgid "A mask of snapshot formats for this repo that cgit generates links for, restricted by the global @code{snapshots} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32385 +#: guix-git/doc/guix.texi:32750 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object source-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32387 +#: guix-git/doc/guix.texi:32752 msgid "Override the default @code{source-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32392 +#: guix-git/doc/guix.texi:32757 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32394 +#: guix-git/doc/guix.texi:32759 msgid "The relative URL used to access the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32399 +#: guix-git/doc/guix.texi:32764 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object about-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32401 +#: guix-git/doc/guix.texi:32766 msgid "Override the default @code{about-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32406 +#: guix-git/doc/guix.texi:32771 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string branch-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32409 +#: guix-git/doc/guix.texi:32774 msgid "Flag which, when set to @samp{age}, enables date ordering in the branch ref list, and when set to @samp{name} enables ordering by branch name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32414 +#: guix-git/doc/guix.texi:32779 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list clone-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32416 +#: guix-git/doc/guix.texi:32781 msgid "A list of URLs which can be used to clone repo." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32421 +#: guix-git/doc/guix.texi:32786 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object commit-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32423 +#: guix-git/doc/guix.texi:32788 msgid "Override the default @code{commit-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32428 +#: guix-git/doc/guix.texi:32793 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string commit-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32437 +#: guix-git/doc/guix.texi:32802 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string defbranch" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32442 +#: guix-git/doc/guix.texi:32807 msgid "The name of the default branch for this repository. If no such branch exists in the repository, the first branch name (when sorted) is used as default instead. By default branch pointed to by HEAD, or ``master'' if there is no suitable HEAD." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32447 +#: guix-git/doc/guix.texi:32812 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string desc" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32449 +#: guix-git/doc/guix.texi:32814 msgid "The value to show as repository description." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32454 +#: guix-git/doc/guix.texi:32819 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string homepage" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32456 +#: guix-git/doc/guix.texi:32821 msgid "The value to show as repository homepage." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32461 +#: guix-git/doc/guix.texi:32826 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object email-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32463 +#: guix-git/doc/guix.texi:32828 msgid "Override the default @code{email-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32468 +#: guix-git/doc/guix.texi:32833 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-commit-graph?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32471 +#: guix-git/doc/guix.texi:32836 msgid "A flag which can be used to disable the global setting @code{enable-commit-graph?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32476 +#: guix-git/doc/guix.texi:32841 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-log-filecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32479 +#: guix-git/doc/guix.texi:32844 msgid "A flag which can be used to disable the global setting @code{enable-log-filecount?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32484 +#: guix-git/doc/guix.texi:32849 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-log-linecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32487 +#: guix-git/doc/guix.texi:32852 msgid "A flag which can be used to disable the global setting @code{enable-log-linecount?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32492 +#: guix-git/doc/guix.texi:32857 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-remote-branches?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32500 +#: guix-git/doc/guix.texi:32865 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-subject-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32503 +#: guix-git/doc/guix.texi:32868 msgid "A flag which can be used to override the global setting @code{enable-subject-links?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32508 +#: guix-git/doc/guix.texi:32873 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-html-serving?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32511 +#: guix-git/doc/guix.texi:32876 msgid "A flag which can be used to override the global setting @code{enable-html-serving?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32516 +#: guix-git/doc/guix.texi:32881 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-boolean hide?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32519 +#: guix-git/doc/guix.texi:32884 msgid "Flag which, when set to @code{#t}, hides the repository from the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32524 +#: guix-git/doc/guix.texi:32889 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-boolean ignore?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32526 +#: guix-git/doc/guix.texi:32891 msgid "Flag which, when set to @samp{#t}, ignores the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32531 +#: guix-git/doc/guix.texi:32896 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object logo" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32534 +#: guix-git/doc/guix.texi:32899 msgid "URL which specifies the source of an image which will be used as a logo on this repo’s pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32539 +#: guix-git/doc/guix.texi:32904 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string logo-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32546 +#: guix-git/doc/guix.texi:32911 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object owner-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32548 +#: guix-git/doc/guix.texi:32913 msgid "Override the default @code{owner-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32553 +#: guix-git/doc/guix.texi:32918 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string module-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32557 +#: guix-git/doc/guix.texi:32922 msgid "Text which will be used as the formatstring for a hyperlink when a submodule is printed in a directory listing. The arguments for the formatstring are the path and SHA1 of the submodule commit." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32562 +#: guix-git/doc/guix.texi:32927 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} module-link-path module-link-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32566 +#: guix-git/doc/guix.texi:32931 msgid "Text which will be used as the formatstring for a hyperlink when a submodule with the specified subdirectory path is printed in a directory listing." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32571 +#: guix-git/doc/guix.texi:32936 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string max-stats" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32573 +#: guix-git/doc/guix.texi:32938 msgid "Override the default maximum statistics period." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32578 +#: guix-git/doc/guix.texi:32943 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32580 +#: guix-git/doc/guix.texi:32945 msgid "The value to show as repository name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32585 +#: guix-git/doc/guix.texi:32950 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string owner" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32587 +#: guix-git/doc/guix.texi:32952 msgid "A value used to identify the owner of the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32592 +#: guix-git/doc/guix.texi:32957 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32594 +#: guix-git/doc/guix.texi:32959 msgid "An absolute path to the repository directory." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32599 +#: guix-git/doc/guix.texi:32964 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string readme" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32602 +#: guix-git/doc/guix.texi:32967 msgid "A path (relative to repo) which specifies a file to include verbatim as the ``About'' page for this repo." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32607 +#: guix-git/doc/guix.texi:32972 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string section" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32615 +#: guix-git/doc/guix.texi:32980 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32617 guix-git/doc/guix.texi:32626 +#: guix-git/doc/guix.texi:32982 guix-git/doc/guix.texi:32991 msgid "Extra options will be appended to cgitrc file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32624 +#: guix-git/doc/guix.texi:32989 #, no-wrap msgid "{@code{cgit-configuration} parameter} list extra-options" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32638 +#: guix-git/doc/guix.texi:33003 msgid "However, it could be that you just want to get a @code{cgitrc} up and running. In that case, you can pass an @code{opaque-cgit-configuration} as a record to @code{cgit-service-type}. As its name indicates, an opaque configuration does not have easy reflective capabilities." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32640 +#: guix-git/doc/guix.texi:33005 msgid "Available @code{opaque-cgit-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32641 +#: guix-git/doc/guix.texi:33006 #, no-wrap msgid "{@code{opaque-cgit-configuration} parameter} package cgit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32643 +#: guix-git/doc/guix.texi:33008 msgid "The cgit package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32645 +#: guix-git/doc/guix.texi:33010 #, no-wrap msgid "{@code{opaque-cgit-configuration} parameter} string string" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32647 +#: guix-git/doc/guix.texi:33012 msgid "The contents of the @code{cgitrc}, as a string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32651 +#: guix-git/doc/guix.texi:33016 msgid "For example, if your @code{cgitrc} is just the empty string, you could instantiate a cgit service like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32656 +#: guix-git/doc/guix.texi:33021 #, no-wrap msgid "" "(service cgit-service-type\n" @@ -58357,40 +59058,40 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:32658 +#: guix-git/doc/guix.texi:33023 #, no-wrap msgid "Gitolite Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32660 +#: guix-git/doc/guix.texi:33025 #, no-wrap msgid "Gitolite service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32661 +#: guix-git/doc/guix.texi:33026 #, no-wrap msgid "Git, hosting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32664 +#: guix-git/doc/guix.texi:33029 msgid "@uref{https://gitolite.com/gitolite/, Gitolite} is a tool for hosting Git repositories on a central server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32667 +#: guix-git/doc/guix.texi:33032 msgid "Gitolite can handle multiple repositories and users, and supports flexible configuration of the permissions for the users on the repositories." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32670 +#: guix-git/doc/guix.texi:33035 msgid "The following example will configure Gitolite using the default @code{git} user, and the provided SSH public key." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32677 +#: guix-git/doc/guix.texi:33042 #, no-wrap msgid "" "(service gitolite-service-type\n" @@ -58401,223 +59102,222 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32682 +#: guix-git/doc/guix.texi:33047 msgid "Gitolite is configured through a special admin repository which you can clone, for example, if you setup Gitolite on @code{example.com}, you would run the following command to clone the admin repository." msgstr "" #. type: example -#: guix-git/doc/guix.texi:32685 +#: guix-git/doc/guix.texi:33050 #, no-wrap msgid "git clone git@@example.com:gitolite-admin\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32691 +#: guix-git/doc/guix.texi:33056 msgid "When the Gitolite service is activated, the provided @code{admin-pubkey} will be inserted in to the @file{keydir} directory in the gitolite-admin repository. If this results in a change in the repository, it will be committed using the message ``gitolite setup by GNU Guix''." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32692 +#: guix-git/doc/guix.texi:33057 #, no-wrap msgid "{Data Type} gitolite-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32694 +#: guix-git/doc/guix.texi:33059 msgid "Data type representing the configuration for @code{gitolite-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32696 +#: guix-git/doc/guix.texi:33061 #, no-wrap msgid "@code{package} (default: @var{gitolite})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32698 +#: guix-git/doc/guix.texi:33063 msgid "Gitolite package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32699 +#: guix-git/doc/guix.texi:33064 #, no-wrap msgid "@code{user} (default: @var{git})" msgstr "@code{user} (default: @var{git})" #. type: table -#: guix-git/doc/guix.texi:32702 +#: guix-git/doc/guix.texi:33067 msgid "User to use for Gitolite. This will be user that you use when accessing Gitolite over SSH." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32703 +#: guix-git/doc/guix.texi:33068 #, no-wrap msgid "@code{group} (default: @var{git})" msgstr "@code{group} (default: @var{git})" #. type: table -#: guix-git/doc/guix.texi:32705 +#: guix-git/doc/guix.texi:33070 msgid "Group to use for Gitolite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32706 +#: guix-git/doc/guix.texi:33071 #, no-wrap msgid "@code{home-directory} (default: @var{\"/var/lib/gitolite\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32708 +#: guix-git/doc/guix.texi:33073 msgid "Directory in which to store the Gitolite configuration and repositories." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32709 +#: guix-git/doc/guix.texi:33074 #, no-wrap msgid "@code{rc-file} (default: @var{(gitolite-rc-file)})" msgstr "@code{rc-file} (padrão: @var{(gitolite-rc-file)})" #. type: table -#: guix-git/doc/guix.texi:32712 +#: guix-git/doc/guix.texi:33077 msgid "A ``file-like'' object (@pxref{G-Expressions, file-like objects}), representing the configuration for Gitolite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32713 +#: guix-git/doc/guix.texi:33078 #, no-wrap msgid "@code{admin-pubkey} (default: @var{#f})" msgstr "@code{admin-pubkey} (default: @var{#f})" #. type: table -#: guix-git/doc/guix.texi:32717 +#: guix-git/doc/guix.texi:33082 msgid "A ``file-like'' object (@pxref{G-Expressions, file-like objects}) used to setup Gitolite. This will be inserted in to the @file{keydir} directory within the gitolite-admin repository." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32719 +#: guix-git/doc/guix.texi:33084 msgid "To specify the SSH key as a string, use the @code{plain-file} function." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32722 +#: guix-git/doc/guix.texi:33087 #, no-wrap msgid "(plain-file \"yourname.pub\" \"ssh-rsa AAAA... guix@@example.com\")\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32727 +#: guix-git/doc/guix.texi:33092 #, no-wrap msgid "{Data Type} gitolite-rc-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32729 +#: guix-git/doc/guix.texi:33094 msgid "Data type representing the Gitolite RC file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32731 +#: guix-git/doc/guix.texi:33096 #, no-wrap msgid "@code{umask} (default: @code{#o0077})" msgstr "@code{umask} (default: @code{#o0077})" #. type: table -#: guix-git/doc/guix.texi:32734 +#: guix-git/doc/guix.texi:33099 msgid "This controls the permissions Gitolite sets on the repositories and their contents." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32738 +#: guix-git/doc/guix.texi:33103 msgid "A value like @code{#o0027} will give read access to the group used by Gitolite (by default: @code{git}). This is necessary when using Gitolite with software like cgit or gitweb." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32739 +#: guix-git/doc/guix.texi:33104 #, fuzzy, no-wrap #| msgid "@code{users} (default: @code{#f})" msgid "@code{unsafe-pattern} (default: @code{#f})" msgstr "@code{users} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:32744 +#: guix-git/doc/guix.texi:33109 msgid "An optional Perl regular expression for catching unsafe configurations in the configuration file. See @uref{https://gitolite.com/gitolite/git-config.html#compensating-for-unsafe_patt, Gitolite's documentation} for more information." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32751 +#: guix-git/doc/guix.texi:33116 msgid "When the value is not @code{#f}, it should be a string containing a Perl regular expression, such as @samp{\"[`~#\\$\\&()|;<>]\"}, which is the default value used by gitolite. It rejects any special character in configuration that might be interpreted by a shell, which is useful when sharing the administration burden with other people that do not otherwise have shell access on the server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32752 +#: guix-git/doc/guix.texi:33117 #, no-wrap msgid "@code{git-config-keys} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32755 +#: guix-git/doc/guix.texi:33120 msgid "Gitolite allows you to set git config values using the @samp{config} keyword. This setting allows control over the config keys to accept." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32756 +#: guix-git/doc/guix.texi:33121 #, no-wrap msgid "@code{roles} (default: @code{'((\"READERS\" . 1) (\"WRITERS\" . ))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32758 +#: guix-git/doc/guix.texi:33123 msgid "Set the role names allowed to be used by users running the perms command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32759 +#: guix-git/doc/guix.texi:33124 #, no-wrap msgid "@code{enable} (default: @code{'(\"help\" \"desc\" \"info\" \"perms\" \"writable\" \"ssh-authkeys\" \"git-config\" \"daemon\" \"gitweb\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32761 +#: guix-git/doc/guix.texi:33126 msgid "This setting controls the commands and features to enable within Gitolite." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:32766 +#: guix-git/doc/guix.texi:33131 #, fuzzy, no-wrap #| msgid "Game Services" msgid "Gitile Service" msgstr "Serviços de jogos" #. type: cindex -#: guix-git/doc/guix.texi:32768 -#, fuzzy, no-wrap -#| msgid "Other services." +#: guix-git/doc/guix.texi:33133 +#, no-wrap msgid "Gitile service" -msgstr "Outros serviços." +msgstr "Serviço Gitile" #. type: cindex -#: guix-git/doc/guix.texi:32769 +#: guix-git/doc/guix.texi:33134 #, no-wrap msgid "Git, forge" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32772 +#: guix-git/doc/guix.texi:33137 msgid "@uref{https://git.lepiller.eu/gitile, Gitile} is a Git forge for viewing public git repository contents from a web browser." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32778 +#: guix-git/doc/guix.texi:33143 msgid "Gitile works best in collaboration with Gitolite, and will serve the public repositories from Gitolite by default. The service should listen only on a local port, and a webserver should be configured to serve static resources. The gitile service provides an easy way to extend the Nginx service for that purpose (@pxref{NGINX})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32782 +#: guix-git/doc/guix.texi:33147 msgid "The following example will configure Gitile to serve repositories from a custom location, with some default messages for the home page and the footers." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32805 +#: guix-git/doc/guix.texi:33170 #, no-wrap msgid "" "(service gitile-service-type\n" @@ -58644,12 +59344,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32814 +#: guix-git/doc/guix.texi:33179 msgid "In addition to the configuration record, you should configure your git repositories to contain some optional information. First, your public repositories need to contain the @file{git-daemon-export-ok} magic file that allows Git to export the repository. Gitile uses the presence of this file to detect public repositories it should make accessible. To do so with Gitolite for instance, modify your @file{conf/gitolite.conf} to include this in the repositories you want to make public:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:32818 +#: guix-git/doc/guix.texi:33183 #, no-wrap msgid "" "repo foo\n" @@ -58657,12 +59357,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32824 +#: guix-git/doc/guix.texi:33189 msgid "In addition, Gitile can read the repository configuration to display more information on the repository. Gitile uses the gitweb namespace for its configuration. As an example, you can use the following in your @file{conf/gitolite.conf}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:32831 +#: guix-git/doc/guix.texi:33196 #, no-wrap msgid "" "repo foo\n" @@ -58673,12 +59373,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32837 +#: guix-git/doc/guix.texi:33202 msgid "Do not forget to commit and push these changes once you are satisfied. You may need to change your gitolite configuration to allow the previous configuration options to be set. One way to do that is to add the following service definition:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32849 +#: guix-git/doc/guix.texi:33214 #, no-wrap msgid "" "(service gitolite-service-type\n" @@ -58694,252 +59394,252 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32851 +#: guix-git/doc/guix.texi:33216 #, fuzzy, no-wrap msgid "{Data Type} gitile-configuration" msgstr "build-machine {Data Type}" #. type: deftp -#: guix-git/doc/guix.texi:32853 +#: guix-git/doc/guix.texi:33218 #, fuzzy msgid "Data type representing the configuration for @code{gitile-service-type}." msgstr "Gerencie a configuração do sistema operacional." #. type: item -#: guix-git/doc/guix.texi:32855 +#: guix-git/doc/guix.texi:33220 #, fuzzy, no-wrap #| msgid "@code{user} (default: @var{git})" msgid "@code{package} (default: @var{gitile})" msgstr "@code{user} (default: @var{git})" #. type: table -#: guix-git/doc/guix.texi:32857 +#: guix-git/doc/guix.texi:33222 #, fuzzy #| msgid "The GPM package to use." msgid "Gitile package to use." msgstr "O pacote GPM a ser usado." #. type: table -#: guix-git/doc/guix.texi:32860 +#: guix-git/doc/guix.texi:33225 msgid "The host on which gitile is listening." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32861 +#: guix-git/doc/guix.texi:33226 #, fuzzy, no-wrap #| msgid "@code{port} (default: @code{8081})" msgid "@code{port} (default: @code{8080})" msgstr "@code{porta} (default: @code{8081})" #. type: table -#: guix-git/doc/guix.texi:32863 +#: guix-git/doc/guix.texi:33228 msgid "The port on which gitile is listening." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32864 +#: guix-git/doc/guix.texi:33229 #, fuzzy, no-wrap msgid "@code{database} (default: @code{\"/var/lib/gitile/gitile-db.sql\"})" msgstr "@code{daemon-socket} (padrão: @code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:32866 +#: guix-git/doc/guix.texi:33231 #, fuzzy #| msgid "The license of this manual." msgid "The location of the database." msgstr "A licença deste manual." #. type: item -#: guix-git/doc/guix.texi:32867 +#: guix-git/doc/guix.texi:33232 #, fuzzy, no-wrap msgid "@code{repositories} (default: @code{\"/var/lib/gitolite/repositories\"})" msgstr "@code{daemon-socket} (padrão: @code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:32871 +#: guix-git/doc/guix.texi:33236 msgid "The location of the repositories. Note that only public repositories will be shown by Gitile. To make a repository public, add an empty @file{git-daemon-export-ok} file at the root of that repository." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:32872 +#: guix-git/doc/guix.texi:33237 #, no-wrap msgid "base-git-url" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32874 +#: guix-git/doc/guix.texi:33239 msgid "The base git url that will be used to show clone commands." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32875 +#: guix-git/doc/guix.texi:33240 #, fuzzy, no-wrap msgid "@code{index-title} (default: @code{\"Index\"})" msgstr "@code{ttl} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:32877 +#: guix-git/doc/guix.texi:33242 msgid "The page title for the index page that lists all the available repositories." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32878 +#: guix-git/doc/guix.texi:33243 #, fuzzy, no-wrap #| msgid "@code{features} (default: @code{'()})" msgid "@code{intro} (default: @code{'()})" msgstr "@code{features} (padrão: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:32881 +#: guix-git/doc/guix.texi:33246 msgid "The intro content, as a list of sxml expressions. This is shown above the list of repositories, on the index page." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32882 +#: guix-git/doc/guix.texi:33247 #, fuzzy, no-wrap #| msgid "@code{features} (default: @code{'()})" msgid "@code{footer} (default: @code{'()})" msgstr "@code{features} (padrão: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:32885 +#: guix-git/doc/guix.texi:33250 msgid "The footer content, as a list of sxml expressions. This is shown on every page served by Gitile." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:32886 +#: guix-git/doc/guix.texi:33251 #, no-wrap msgid "nginx-server-block" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32889 +#: guix-git/doc/guix.texi:33254 msgid "An nginx server block that will be extended and used as a reverse proxy by Gitile to serve its pages, and as a normal web server to serve its assets." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32893 +#: guix-git/doc/guix.texi:33258 msgid "You can use this block to add more custom URLs to your domain, such as a @code{/git/} URL for anonymous clones, or serving any other files you would like to serve." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:32900 +#: guix-git/doc/guix.texi:33265 #, no-wrap msgid "The Battle for Wesnoth Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32901 +#: guix-git/doc/guix.texi:33266 #, no-wrap msgid "wesnothd" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32905 +#: guix-git/doc/guix.texi:33270 msgid "@uref{https://wesnoth.org, The Battle for Wesnoth} is a fantasy, turn based tactical strategy game, with several single player campaigns, and multiplayer games (both networked and local)." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32906 +#: guix-git/doc/guix.texi:33271 #, no-wrap msgid "{Scheme Variable} wesnothd-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32910 +#: guix-git/doc/guix.texi:33275 msgid "Service type for the wesnothd service. Its value must be a @code{wesnothd-configuration} object. To run wesnothd in the default configuration, instantiate it as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32913 +#: guix-git/doc/guix.texi:33278 #, no-wrap msgid "(service wesnothd-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32916 +#: guix-git/doc/guix.texi:33281 #, no-wrap msgid "{Data Type} wesnothd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32918 +#: guix-git/doc/guix.texi:33283 msgid "Data type representing the configuration of @command{wesnothd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32920 +#: guix-git/doc/guix.texi:33285 #, no-wrap msgid "@code{package} (default: @code{wesnoth-server})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32922 +#: guix-git/doc/guix.texi:33287 msgid "The wesnoth server package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32923 +#: guix-git/doc/guix.texi:33288 #, no-wrap msgid "@code{port} (default: @code{15000})" msgstr "@code{porta} (default: @code{15000})" #. type: table -#: guix-git/doc/guix.texi:32925 +#: guix-git/doc/guix.texi:33290 guix-git/doc/guix.texi:33681 msgid "The port to bind the server to." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32931 +#: guix-git/doc/guix.texi:33296 #, no-wrap msgid "pam-mount" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32936 +#: guix-git/doc/guix.texi:33301 msgid "The @code{(gnu services pam-mount)} module provides a service allowing users to mount volumes when they log in. It should be able to mount any volume format supported by the system." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32937 +#: guix-git/doc/guix.texi:33302 #, no-wrap msgid "{Scheme Variable} pam-mount-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32939 +#: guix-git/doc/guix.texi:33304 msgid "Service type for PAM Mount support." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32941 +#: guix-git/doc/guix.texi:33306 #, no-wrap msgid "{Data Type} pam-mount-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32943 +#: guix-git/doc/guix.texi:33308 msgid "Data type representing the configuration of PAM Mount." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:32947 +#: guix-git/doc/guix.texi:33312 #, no-wrap msgid "rules" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32950 +#: guix-git/doc/guix.texi:33315 msgid "The configuration rules that will be used to generate @file{/etc/security/pam_mount.conf.xml}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32954 +#: guix-git/doc/guix.texi:33319 msgid "The configuration rules are SXML elements (@pxref{SXML,,, guile, GNU Guile Reference Manual}), and the default ones don't mount anything for anyone at login:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32969 +#: guix-git/doc/guix.texi:33334 #, no-wrap msgid "" "`((debug (@@ (enable \"0\")))\n" @@ -58958,12 +59658,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32975 +#: guix-git/doc/guix.texi:33340 msgid "Some @code{volume} elements must be added to automatically mount volumes at login. Here's an example allowing the user @code{alice} to mount her encrypted @env{HOME} directory and allowing the user @code{bob} to mount the partition where he stores his data:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33000 +#: guix-git/doc/guix.texi:33365 #, no-wrap msgid "" "(define pam-mount-rules\n" @@ -58993,7 +59693,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33004 +#: guix-git/doc/guix.texi:33369 #, no-wrap msgid "" "(service pam-mount-service-type\n" @@ -59002,772 +59702,918 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33008 +#: guix-git/doc/guix.texi:33373 msgid "The complete list of possible options can be found in the man page for @uref{http://pam-mount.sourceforge.net/pam_mount.conf.5.html, pam_mount.conf}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33015 +#: guix-git/doc/guix.texi:33380 #, no-wrap msgid "Guix Build Coordinator" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33021 +#: guix-git/doc/guix.texi:33386 msgid "The @uref{https://git.cbaines.net/guix/build-coordinator/,Guix Build Coordinator} aids in distributing derivation builds among machines running an @dfn{agent}. The build daemon is still used to build the derivations, but the Guix Build Coordinator manages allocating builds and working with the results." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33027 +#: guix-git/doc/guix.texi:33392 msgid "The Guix Build Coordinator consists of one @dfn{coordinator}, and one or more connected @dfn{agent} processes. The coordinator process handles clients submitting builds, and allocating builds to agents. The agent processes talk to a build daemon to actually perform the builds, then send the results back to the coordinator." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33031 +#: guix-git/doc/guix.texi:33396 msgid "There is a script to run the coordinator component of the Guix Build Coordinator, but the Guix service uses a custom Guile script instead, to provide better integration with G-expressions used in the configuration." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33032 +#: guix-git/doc/guix.texi:33397 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33035 +#: guix-git/doc/guix.texi:33400 msgid "Service type for the Guix Build Coordinator. Its value must be a @code{guix-build-coordinator-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33037 +#: guix-git/doc/guix.texi:33402 #, no-wrap msgid "{Data Type} guix-build-coordinator-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33039 +#: guix-git/doc/guix.texi:33404 msgid "Data type representing the configuration of the Guix Build Coordinator." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33041 guix-git/doc/guix.texi:33211 +#: guix-git/doc/guix.texi:33406 guix-git/doc/guix.texi:33576 #, no-wrap msgid "@code{package} (default: @code{guix-build-coordinator})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33043 guix-git/doc/guix.texi:33087 -#: guix-git/doc/guix.texi:33213 +#: guix-git/doc/guix.texi:33408 guix-git/doc/guix.texi:33452 +#: guix-git/doc/guix.texi:33578 msgid "The Guix Build Coordinator package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33044 +#: guix-git/doc/guix.texi:33409 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33046 guix-git/doc/guix.texi:33090 -#: guix-git/doc/guix.texi:33216 guix-git/doc/guix.texi:33262 +#: guix-git/doc/guix.texi:33411 guix-git/doc/guix.texi:33455 +#: guix-git/doc/guix.texi:33581 guix-git/doc/guix.texi:33627 +#: guix-git/doc/guix.texi:33675 msgid "The system user to run the service as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33047 +#: guix-git/doc/guix.texi:33412 #, no-wrap msgid "@code{group} (default: @code{\"guix-build-coordinator\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33049 guix-git/doc/guix.texi:33265 +#: guix-git/doc/guix.texi:33414 guix-git/doc/guix.texi:33630 +#: guix-git/doc/guix.texi:33678 msgid "The system group to run the service as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33050 +#: guix-git/doc/guix.texi:33415 #, no-wrap msgid "@code{database-uri-string} (default: @code{\"sqlite:///var/lib/guix-build-coordinator/guix_build_coordinator.db\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33052 +#: guix-git/doc/guix.texi:33417 msgid "The URI to use for the database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33053 +#: guix-git/doc/guix.texi:33418 #, no-wrap msgid "@code{agent-communication-uri} (default: @code{\"http://0.0.0.0:8745\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33055 +#: guix-git/doc/guix.texi:33420 msgid "The URI describing how to listen to requests from agent processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33056 +#: guix-git/doc/guix.texi:33421 #, no-wrap msgid "@code{client-communication-uri} (default: @code{\"http://127.0.0.1:8746\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33060 +#: guix-git/doc/guix.texi:33425 msgid "The URI describing how to listen to requests from clients. The client API allows submitting builds and currently isn't authenticated, so take care when configuring this value." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33061 +#: guix-git/doc/guix.texi:33426 #, no-wrap msgid "@code{allocation-strategy} (default: @code{#~basic-build-allocation-strategy})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33065 +#: guix-git/doc/guix.texi:33430 msgid "A G-expression for the allocation strategy to be used. This is a procedure that takes the datastore as an argument and populates the allocation plan in the database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33066 +#: guix-git/doc/guix.texi:33431 #, no-wrap msgid "@code{hooks} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33069 +#: guix-git/doc/guix.texi:33434 msgid "An association list of hooks. These provide a way to execute arbitrary code upon certain events, like a build result being processed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33070 +#: guix-git/doc/guix.texi:33435 #, no-wrap msgid "@code{guile} (default: @code{guile-3.0-latest})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33072 +#: guix-git/doc/guix.texi:33437 msgid "The Guile package with which to run the Guix Build Coordinator." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33076 +#: guix-git/doc/guix.texi:33441 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-agent-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33079 +#: guix-git/doc/guix.texi:33444 msgid "Service type for a Guix Build Coordinator agent. Its value must be a @code{guix-build-coordinator-agent-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33081 +#: guix-git/doc/guix.texi:33446 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33083 +#: guix-git/doc/guix.texi:33448 msgid "Data type representing the configuration a Guix Build Coordinator agent." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33085 +#: guix-git/doc/guix.texi:33450 #, fuzzy, no-wrap msgid "@code{package} (default: @code{guix-build-coordinator/agent-only})" msgstr "@code{cache} (default: @code{#f})" #. type: item -#: guix-git/doc/guix.texi:33088 +#: guix-git/doc/guix.texi:33453 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator-agent\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33091 +#: guix-git/doc/guix.texi:33456 #, no-wrap msgid "@code{coordinator} (default: @code{\"http://localhost:8745\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33093 guix-git/doc/guix.texi:33219 +#: guix-git/doc/guix.texi:33458 guix-git/doc/guix.texi:33584 msgid "The URI to use when connecting to the coordinator." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33094 +#: guix-git/doc/guix.texi:33459 #, no-wrap msgid "authentication" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33097 +#: guix-git/doc/guix.texi:33462 msgid "Record describing how this agent should authenticate with the coordinator. Possible record types are described below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33098 guix-git/doc/guix.texi:33220 +#: guix-git/doc/guix.texi:33463 guix-git/doc/guix.texi:33585 #, no-wrap msgid "@code{systems} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33101 +#: guix-git/doc/guix.texi:33466 msgid "The systems for which this agent should fetch builds. The agent process will use the current system it's running on as the default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33102 +#: guix-git/doc/guix.texi:33467 #, no-wrap msgid "@code{max-parallel-builds} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33104 +#: guix-git/doc/guix.texi:33469 msgid "The number of builds to perform in parallel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33105 +#: guix-git/doc/guix.texi:33470 #, fuzzy, no-wrap #| msgid "@code{max-journal-usage} (default: @code{#f})" msgid "@code{max-1min-load-average} (default: @code{#f})" msgstr "@code{max-journal-usage} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33109 +#: guix-git/doc/guix.texi:33474 msgid "Load average value to look at when considering starting new builds, if the 1 minute load average exceeds this value, the agent will wait before starting new builds." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33113 +#: guix-git/doc/guix.texi:33478 msgid "This will be unspecified if the value is @code{#f}, and the agent will use the number of cores reported by the system as the max 1 minute load average." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33114 +#: guix-git/doc/guix.texi:33479 #, no-wrap msgid "@code{derivation-substitute-urls} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33117 +#: guix-git/doc/guix.texi:33482 msgid "URLs from which to attempt to fetch substitutes for derivations, if the derivations aren't already available." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33118 +#: guix-git/doc/guix.texi:33483 #, no-wrap msgid "@code{non-derivation-substitute-urls} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33121 +#: guix-git/doc/guix.texi:33486 msgid "URLs from which to attempt to fetch substitutes for build inputs, if the input store items aren't already available." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33125 +#: guix-git/doc/guix.texi:33490 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-password-auth" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33128 +#: guix-git/doc/guix.texi:33493 msgid "Data type representing an agent authenticating with a coordinator via a UUID and password." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33134 guix-git/doc/guix.texi:33150 +#: guix-git/doc/guix.texi:33499 guix-git/doc/guix.texi:33515 msgid "The UUID of the agent. This should be generated by the coordinator process, stored in the coordinator database, and used by the intended agent." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33137 +#: guix-git/doc/guix.texi:33502 msgid "The password to use when connecting to the coordinator." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33141 +#: guix-git/doc/guix.texi:33506 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-password-file-auth" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33144 +#: guix-git/doc/guix.texi:33509 msgid "Data type representing an agent authenticating with a coordinator via a UUID and password read from a file." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33151 +#: guix-git/doc/guix.texi:33516 #, no-wrap msgid "password-file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33154 +#: guix-git/doc/guix.texi:33519 msgid "A file containing the password to use when connecting to the coordinator." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33158 +#: guix-git/doc/guix.texi:33523 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-dynamic-auth" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33161 +#: guix-git/doc/guix.texi:33526 msgid "Data type representing an agent authenticating with a coordinator via a dynamic auth token and agent name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33163 guix-git/doc/guix.texi:33180 +#: guix-git/doc/guix.texi:33528 guix-git/doc/guix.texi:33545 #, no-wrap msgid "agent-name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33167 guix-git/doc/guix.texi:33184 +#: guix-git/doc/guix.texi:33532 guix-git/doc/guix.texi:33549 msgid "Name of an agent, this is used to match up to an existing entry in the database if there is one. When no existing entry is found, a new entry is automatically added." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33168 +#: guix-git/doc/guix.texi:33533 #, no-wrap msgid "token" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33171 +#: guix-git/doc/guix.texi:33536 msgid "Dynamic auth token, this is created and stored in the coordinator database, and is used by the agent to authenticate." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33175 +#: guix-git/doc/guix.texi:33540 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-dynamic-auth-with-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33178 +#: guix-git/doc/guix.texi:33543 msgid "Data type representing an agent authenticating with a coordinator via a dynamic auth token read from a file and agent name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33185 +#: guix-git/doc/guix.texi:33550 #, no-wrap msgid "token-file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33188 +#: guix-git/doc/guix.texi:33553 msgid "File containing the dynamic auth token, this is created and stored in the coordinator database, and is used by the agent to authenticate." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33198 +#: guix-git/doc/guix.texi:33563 msgid "The Guix Build Coordinator package contains a script to query an instance of the Guix Data Service for derivations to build, and then submit builds for those derivations to the coordinator. The service type below assists in running this script. This is an additional tool that may be useful when building derivations contained within an instance of the Guix Data Service." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33199 +#: guix-git/doc/guix.texi:33564 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-queue-builds-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33204 +#: guix-git/doc/guix.texi:33569 msgid "Service type for the guix-build-coordinator-queue-builds-from-guix-data-service script. Its value must be a @code{guix-build-coordinator-queue-builds-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33206 +#: guix-git/doc/guix.texi:33571 #, no-wrap msgid "{Data Type} guix-build-coordinator-queue-builds-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33209 +#: guix-git/doc/guix.texi:33574 msgid "Data type representing the options to the queue builds from guix data service script." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33214 +#: guix-git/doc/guix.texi:33579 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator-queue-builds\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33217 +#: guix-git/doc/guix.texi:33582 #, fuzzy, no-wrap #| msgid "@code{tor} (default: @code{tor})" msgid "@code{coordinator} (default: @code{\"http://localhost:8746\"})" msgstr "@code{tor} (default: @code{tor})" #. type: table -#: guix-git/doc/guix.texi:33222 +#: guix-git/doc/guix.texi:33587 msgid "The systems for which to fetch derivations to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33223 +#: guix-git/doc/guix.texi:33588 #, no-wrap msgid "@code{systems-and-targets} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33226 +#: guix-git/doc/guix.texi:33591 msgid "An association list of system and target pairs for which to fetch derivations to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33227 +#: guix-git/doc/guix.texi:33592 #, no-wrap msgid "@code{guix-data-service} (default: @code{\"https://data.guix.gnu.org\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33230 +#: guix-git/doc/guix.texi:33595 msgid "The Guix Data Service instance from which to query to find out about derivations to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33231 +#: guix-git/doc/guix.texi:33596 #, no-wrap msgid "@code{processed-commits-file} (default: @code{\"/var/cache/guix-build-coordinator-queue-builds/processed-commits\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33234 +#: guix-git/doc/guix.texi:33599 msgid "A file to record which commits have been processed, to avoid needlessly processing them again if the service is restarted." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33238 +#: guix-git/doc/guix.texi:33603 #, no-wrap msgid "Guix Data Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33242 +#: guix-git/doc/guix.texi:33607 msgid "The @uref{http://data.guix.gnu.org,Guix Data Service} processes, stores and provides data about GNU Guix. This includes information about packages, derivations and lint warnings." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33245 +#: guix-git/doc/guix.texi:33610 msgid "The data is stored in a PostgreSQL database, and available through a web interface." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33246 +#: guix-git/doc/guix.texi:33611 #, no-wrap msgid "{Scheme Variable} guix-data-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33251 +#: guix-git/doc/guix.texi:33616 msgid "Service type for the Guix Data Service. Its value must be a @code{guix-data-service-configuration} object. The service optionally extends the getmail service, as the guix-commits mailing list is used to find out about changes in the Guix git repository." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33253 +#: guix-git/doc/guix.texi:33618 #, no-wrap msgid "{Data Type} guix-data-service-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33255 +#: guix-git/doc/guix.texi:33620 guix-git/doc/guix.texi:33668 msgid "Data type representing the configuration of the Guix Data Service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33257 +#: guix-git/doc/guix.texi:33622 #, no-wrap msgid "@code{package} (default: @code{guix-data-service})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33259 +#: guix-git/doc/guix.texi:33624 msgid "The Guix Data Service package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33260 +#: guix-git/doc/guix.texi:33625 #, no-wrap msgid "@code{user} (default: @code{\"guix-data-service\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33263 +#: guix-git/doc/guix.texi:33628 #, no-wrap msgid "@code{group} (default: @code{\"guix-data-service\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33266 +#: guix-git/doc/guix.texi:33631 #, no-wrap msgid "@code{port} (default: @code{8765})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33268 +#: guix-git/doc/guix.texi:33633 msgid "The port to bind the web service to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33269 +#: guix-git/doc/guix.texi:33634 guix-git/doc/guix.texi:33682 #, no-wrap msgid "@code{host} (default: @code{\"127.0.0.1\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33271 +#: guix-git/doc/guix.texi:33636 msgid "The host to bind the web service to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33272 +#: guix-git/doc/guix.texi:33637 #, no-wrap msgid "@code{getmail-idle-mailboxes} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33275 +#: guix-git/doc/guix.texi:33640 msgid "If set, this is the list of mailboxes that the getmail service will be configured to listen to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33276 +#: guix-git/doc/guix.texi:33641 #, no-wrap msgid "@code{commits-getmail-retriever-configuration} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33280 +#: guix-git/doc/guix.texi:33645 msgid "If set, this is the @code{getmail-retriever-configuration} object with which to configure getmail to fetch mail from the guix-commits mailing list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33281 +#: guix-git/doc/guix.texi:33646 #, no-wrap msgid "@code{extra-options} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33283 +#: guix-git/doc/guix.texi:33648 msgid "Extra command line options for @code{guix-data-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33284 +#: guix-git/doc/guix.texi:33649 #, no-wrap msgid "@code{extra-process-jobs-options} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33286 +#: guix-git/doc/guix.texi:33651 msgid "Extra command line options for @code{guix-data-service-process-jobs}." msgstr "" +#. type: subsubheading +#: guix-git/doc/guix.texi:33655 +#, no-wrap +msgid "Nar Herder" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:33658 +msgid "The @uref{https://git.cbaines.net/guix/nar-herder/about/,Nar Herder} is a utility for managing a collection of nars." +msgstr "" + +#. type: defvar +#: guix-git/doc/guix.texi:33659 +#, fuzzy, no-wrap +msgid "{Scheme Variable} nar-herder-type" +msgstr "guix-publish-service-type" + +#. type: defvar +#: guix-git/doc/guix.texi:33664 +msgid "Service type for the Guix Data Service. Its value must be a @code{nar-herder-configuration} object. The service optionally extends the getmail service, as the guix-commits mailing list is used to find out about changes in the Guix git repository." +msgstr "" + +#. type: deftp +#: guix-git/doc/guix.texi:33666 +#, fuzzy, no-wrap +msgid "{Data Type} nar-herder-configuration" +msgstr "build-machine {Data Type}" + +#. type: item +#: guix-git/doc/guix.texi:33670 +#, fuzzy, no-wrap +msgid "@code{package} (default: @code{nar-herder})" +msgstr "@code{cache} (default: @code{#f})" + +#. type: table +#: guix-git/doc/guix.texi:33672 +#, fuzzy +msgid "The Nar Herder package to use." +msgstr "O pacote GPM a ser usado." + +#. type: item +#: guix-git/doc/guix.texi:33673 +#, fuzzy, no-wrap +#| msgid "@code{users} (default: @code{#f})" +msgid "@code{user} (default: @code{\"nar-herder\"})" +msgstr "@code{users} (default: @code{#f})" + +#. type: item +#: guix-git/doc/guix.texi:33676 +#, fuzzy, no-wrap +#| msgid "@code{hangup?} (default: @code{#f})" +msgid "@code{group} (default: @code{\"nar-herder\"})" +msgstr "@code{hangup?} (padrão: @code{#f})" + +#. type: item +#: guix-git/doc/guix.texi:33679 +#, fuzzy, no-wrap +#| msgid "@code{port} (default: @code{53})" +msgid "@code{port} (default: @code{8734})" +msgstr "@code{porta} (default: @code{53})" + +#. type: table +#: guix-git/doc/guix.texi:33684 +msgid "The host to bind the server to." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33689 +msgid "Optional URL of the other Nar Herder instance which should be mirrored. This means that this Nar Herder instance will download it's database, and keep it up to date." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33690 +#, fuzzy, no-wrap +msgid "@code{database} (default: @code{\"/var/lib/nar-herder/nar_herder.db\"})" +msgstr "@code{daemon-socket} (padrão: @code{\"/var/guix/daemon-socket/socket\"})" + +#. type: table +#: guix-git/doc/guix.texi:33695 +msgid "Location for the database. If this Nar Herder instance is mirroring another, the database will be downloaded if it doesn't exist. If this Nar Herder instance isn't mirroring another, an empty database will be created." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33696 +#, fuzzy, no-wrap +msgid "@code{database-dump} (default: @code{\"/var/lib/nar-herder/nar_herder_dump.db\"})" +msgstr "@code{daemon-socket} (padrão: @code{\"/var/guix/daemon-socket/socket\"})" + +#. type: table +#: guix-git/doc/guix.texi:33700 +msgid "Location of the database dump. This is created and regularly updated by taking a copy of the database. This is the version of the database that is available to download." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33701 +#, fuzzy, no-wrap +#| msgid "@code{chdir} (default: @code{#f})" +msgid "@code{storage} (default: @code{#f})" +msgstr "@code{chdir} (default: @code{#f})" + +#. type: table +#: guix-git/doc/guix.texi:33703 +msgid "Optional location in which to store nars." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33704 +#, fuzzy, no-wrap +#| msgid "@code{tor} (default: @code{tor})" +msgid "@code{storage-limit} (default: @code{\"none\"})" +msgstr "@code{tor} (default: @code{tor})" + +#. type: table +#: guix-git/doc/guix.texi:33707 +msgid "Limit in bytes for the nars stored in the storage location. This can also be set to ``none'' so that there is no limit." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33710 +msgid "When the storage location exceeds this size, nars are removed according to the nar removal criteria." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33711 +#, fuzzy, no-wrap +#| msgid "@code{features} (default: @code{'()})" +msgid "@code{storage-nar-removal-criteria} (default: @code{'()})" +msgstr "@code{features} (padrão: @code{'()})" + +#. type: table +#: guix-git/doc/guix.texi:33714 +msgid "Criteria used to remove nars from the storage location. These are used in conjunction with the storage limit." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33719 +msgid "When the storage location exceeds the storage limit size, nars will be checked against the nar removal criteria and if any of the criteria match, they will be removed. This will continue until the storage location is below the storage limit size." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33723 +msgid "Each criteria is specified by a string, then an equals sign, then another string. Currently, only one criteria is supported, checking if a nar is stored on another Nar Herder instance." +msgstr "" + #. type: cindex -#: guix-git/doc/guix.texi:33293 +#: guix-git/doc/guix.texi:33730 #, no-wrap msgid "oom" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33294 +#: guix-git/doc/guix.texi:33731 #, no-wrap msgid "out of memory killer" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33295 +#: guix-git/doc/guix.texi:33732 #, no-wrap msgid "earlyoom" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33296 +#: guix-git/doc/guix.texi:33733 #, no-wrap msgid "early out of memory daemon" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33297 +#: guix-git/doc/guix.texi:33734 #, no-wrap msgid "Early OOM Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33304 +#: guix-git/doc/guix.texi:33741 msgid "@uref{https://github.com/rfjakob/earlyoom,Early OOM}, also known as Earlyoom, is a minimalist out of memory (OOM) daemon that runs in user space and provides a more responsive and configurable alternative to the in-kernel OOM killer. It is useful to prevent the system from becoming unresponsive when it runs out of memory." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33305 +#: guix-git/doc/guix.texi:33742 #, no-wrap msgid "{Scheme Variable} earlyoom-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33310 +#: guix-git/doc/guix.texi:33747 msgid "The service type for running @command{earlyoom}, the Early OOM daemon. Its value must be a @code{earlyoom-configuration} object, described below. The service can be instantiated in its default configuration with:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33313 +#: guix-git/doc/guix.texi:33750 #, no-wrap msgid "(service earlyoom-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33316 +#: guix-git/doc/guix.texi:33753 #, no-wrap msgid "{Data Type} earlyoom-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33318 +#: guix-git/doc/guix.texi:33755 msgid "This is the configuration record for the @code{earlyoom-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33320 +#: guix-git/doc/guix.texi:33757 #, no-wrap msgid "@code{earlyoom} (default: @var{earlyoom})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33322 +#: guix-git/doc/guix.texi:33759 msgid "The Earlyoom package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33323 +#: guix-git/doc/guix.texi:33760 #, no-wrap msgid "@code{minimum-available-memory} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33325 +#: guix-git/doc/guix.texi:33762 msgid "The threshold for the minimum @emph{available} memory, in percentages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33326 +#: guix-git/doc/guix.texi:33763 #, no-wrap msgid "@code{minimum-free-swap} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33328 +#: guix-git/doc/guix.texi:33765 msgid "The threshold for the minimum free swap memory, in percentages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33329 +#: guix-git/doc/guix.texi:33766 #, no-wrap msgid "@code{prefer-regexp} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33332 +#: guix-git/doc/guix.texi:33769 msgid "A regular expression (as a string) to match the names of the processes that should be preferably killed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33333 +#: guix-git/doc/guix.texi:33770 #, no-wrap msgid "@code{avoid-regexp} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33336 +#: guix-git/doc/guix.texi:33773 msgid "A regular expression (as a string) to match the names of the processes that should @emph{not} be killed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33337 +#: guix-git/doc/guix.texi:33774 #, no-wrap msgid "@code{memory-report-interval} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33340 +#: guix-git/doc/guix.texi:33777 msgid "The interval in seconds at which a memory report is printed. It is disabled by default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33341 +#: guix-git/doc/guix.texi:33778 #, no-wrap msgid "@code{ignore-positive-oom-score-adj?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33344 +#: guix-git/doc/guix.texi:33781 msgid "A boolean indicating whether the positive adjustments set in @file{/proc/*/oom_score_adj} should be ignored." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33345 +#: guix-git/doc/guix.texi:33782 #, no-wrap msgid "@code{show-debug-messages?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33348 +#: guix-git/doc/guix.texi:33785 msgid "A boolean indicating whether debug messages should be printed. The logs are saved at @file{/var/log/earlyoom.log}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33349 +#: guix-git/doc/guix.texi:33786 #, no-wrap msgid "@code{send-notification-command} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33352 +#: guix-git/doc/guix.texi:33789 msgid "This can be used to provide a custom command used for sending notifications." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33355 +#: guix-git/doc/guix.texi:33792 #, no-wrap msgid "modprobe" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33356 +#: guix-git/doc/guix.texi:33793 #, no-wrap msgid "kernel module loader" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33357 +#: guix-git/doc/guix.texi:33794 #, no-wrap msgid "Kernel Module Loader Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33363 +#: guix-git/doc/guix.texi:33800 msgid "The kernel module loader service allows one to load loadable kernel modules at boot. This is especially useful for modules that don't autoload and need to be manually loaded, as is the case with @code{ddcci}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33364 +#: guix-git/doc/guix.texi:33801 #, no-wrap msgid "{Scheme Variable} kernel-module-loader-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33370 +#: guix-git/doc/guix.texi:33807 msgid "The service type for loading loadable kernel modules at boot with @command{modprobe}. Its value must be a list of strings representing module names. For example loading the drivers provided by @code{ddcci-driver-linux}, in debugging mode by passing some module parameters, can be done as follow:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33375 +#: guix-git/doc/guix.texi:33812 #, no-wrap msgid "" "(use-modules (gnu) (gnu services))\n" @@ -59777,7 +60623,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33379 +#: guix-git/doc/guix.texi:33816 #, no-wrap msgid "" "(define ddcci-config\n" @@ -59787,7 +60633,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33389 +#: guix-git/doc/guix.texi:33826 #, no-wrap msgid "" "(operating-system\n" @@ -59802,415 +60648,415 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33392 +#: guix-git/doc/guix.texi:33829 #, fuzzy, no-wrap #| msgid "daemon" msgid "rasdaemon" msgstr "daemon" #. type: cindex -#: guix-git/doc/guix.texi:33393 +#: guix-git/doc/guix.texi:33830 #, no-wrap msgid "Platform Reliability, Availability and Serviceability daemon" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33394 +#: guix-git/doc/guix.texi:33831 #, fuzzy, no-wrap #| msgid "Base Services" msgid "Rasdaemon Service" msgstr "Serviços base" #. type: Plain text -#: guix-git/doc/guix.texi:33399 +#: guix-git/doc/guix.texi:33836 msgid "The Rasdaemon service provides a daemon which monitors platform @acronym{RAS, Reliability@comma{} Availability@comma{} and Serviceability} reports from Linux kernel trace events, logging them to syslogd." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33402 +#: guix-git/doc/guix.texi:33839 msgid "Reliability, Availability and Serviceability is a concept used on servers meant to measure their robustness." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33405 +#: guix-git/doc/guix.texi:33842 msgid "@strong{Relability} is the probability that a system will produce correct outputs:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33407 +#: guix-git/doc/guix.texi:33844 #, no-wrap msgid "Generally measured as Mean Time Between Failures (MTBF), and" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33408 +#: guix-git/doc/guix.texi:33845 #, no-wrap msgid "Enhanced by features that help to avoid, detect and repair hardware" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:33410 +#: guix-git/doc/guix.texi:33847 msgid "faults" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33414 +#: guix-git/doc/guix.texi:33851 msgid "@strong{Availability} is the probability that a system is operational at a given time:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33416 +#: guix-git/doc/guix.texi:33853 #, no-wrap msgid "Generally measured as a percentage of downtime per a period of time, and" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33417 +#: guix-git/doc/guix.texi:33854 #, no-wrap msgid "Often uses mechanisms to detect and correct hardware faults in runtime." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33422 +#: guix-git/doc/guix.texi:33859 msgid "@strong{Serviceability} is the simplicity and speed with which a system can be repaired or maintained:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33424 +#: guix-git/doc/guix.texi:33861 #, no-wrap msgid "Generally measured on Mean Time Between Repair (MTBR)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33429 +#: guix-git/doc/guix.texi:33866 msgid "Among the monitoring measures, the most usual ones include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33431 +#: guix-git/doc/guix.texi:33868 #, no-wrap msgid "CPU – detect errors at instruction execution and at L1/L2/L3 caches;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33432 +#: guix-git/doc/guix.texi:33869 #, no-wrap msgid "Memory – add error correction logic (ECC) to detect and correct errors;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33433 +#: guix-git/doc/guix.texi:33870 #, no-wrap msgid "I/O – add CRC checksums for transferred data;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33434 +#: guix-git/doc/guix.texi:33871 #, no-wrap msgid "Storage – RAID, journal file systems, checksums, Self-Monitoring," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:33436 +#: guix-git/doc/guix.texi:33873 msgid "Analysis and Reporting Technology (SMART)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33442 +#: guix-git/doc/guix.texi:33879 msgid "By monitoring the number of occurrences of error detections, it is possible to identify if the probability of hardware errors is increasing, and, on such case, do a preventive maintenance to replace a degraded component while those errors are correctable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33446 +#: guix-git/doc/guix.texi:33883 msgid "For detailed information about the types of error events gathered and how to make sense of them, see the kernel administrator's guide at @url{https://www.kernel.org/doc/html/latest/admin-guide/ras.html}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33447 +#: guix-git/doc/guix.texi:33884 #, fuzzy, no-wrap msgid "{Scheme Variable} rasdaemon-service-type" msgstr "guix-publish-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33450 +#: guix-git/doc/guix.texi:33887 msgid "Service type for the @command{rasdaemon} service. It accepts a @code{rasdaemon-configuration} object. Instantiating like" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33453 +#: guix-git/doc/guix.texi:33890 #, no-wrap msgid "(service rasdaemon-service-type)\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33457 +#: guix-git/doc/guix.texi:33894 msgid "will load with a default configuration, which monitors all events and logs to syslogd." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33459 +#: guix-git/doc/guix.texi:33896 #, fuzzy, no-wrap msgid "{Data Type} rasdaemon-configuration" msgstr "build-machine {Data Type}" #. type: deftp -#: guix-git/doc/guix.texi:33461 +#: guix-git/doc/guix.texi:33898 #, fuzzy msgid "The data type representing the configuration of @command{rasdaemon}." msgstr "Gerencie a configuração do sistema operacional." #. type: item -#: guix-git/doc/guix.texi:33463 +#: guix-git/doc/guix.texi:33900 #, fuzzy, no-wrap #| msgid "@code{remote?} (default: @code{#f})" msgid "@code{record?} (default: @code{#f})" msgstr "@code{remote?} (padrão: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33468 +#: guix-git/doc/guix.texi:33905 msgid "A boolean indicating whether to record the events in an SQLite database. This provides a more structured access to the information contained in the log file. The database location is hard-coded to @file{/var/lib/rasdaemon/ras-mc_event.db}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33472 +#: guix-git/doc/guix.texi:33909 #, no-wrap msgid "zram" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33473 +#: guix-git/doc/guix.texi:33910 #, no-wrap msgid "compressed swap" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33474 +#: guix-git/doc/guix.texi:33911 #, no-wrap msgid "Compressed RAM-based block devices" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33475 +#: guix-git/doc/guix.texi:33912 #, no-wrap msgid "Zram Device Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33481 +#: guix-git/doc/guix.texi:33918 msgid "The Zram device service provides a compressed swap device in system memory. The Linux Kernel documentation has more information about @uref{https://www.kernel.org/doc/html/latest/admin-guide/blockdev/zram.html,zram} devices." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33482 +#: guix-git/doc/guix.texi:33919 #, no-wrap msgid "{Scheme Variable} zram-device-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33486 +#: guix-git/doc/guix.texi:33923 msgid "This service creates the zram block device, formats it as swap and enables it as a swap device. The service's value is a @code{zram-device-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33487 +#: guix-git/doc/guix.texi:33924 #, no-wrap msgid "{Data Type} zram-device-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33490 +#: guix-git/doc/guix.texi:33927 msgid "This is the data type representing the configuration for the zram-device service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33492 +#: guix-git/doc/guix.texi:33929 #, no-wrap msgid "@code{size} (default @code{\"1G\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33496 +#: guix-git/doc/guix.texi:33933 msgid "This is the amount of space you wish to provide for the zram device. It accepts a string and can be a number of bytes or use a suffix, eg.: @code{\"512M\"} or @code{1024000}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33496 +#: guix-git/doc/guix.texi:33933 #, no-wrap msgid "@code{compression-algorithm} (default @code{'lzo})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:33937 msgid "This is the compression algorithm you wish to use. It is difficult to list all the possible compression options, but common ones supported by Guix's Linux Libre Kernel include @code{'lzo}, @code{'lz4} and @code{'zstd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:33937 #, no-wrap msgid "@code{memory-limit} (default @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33507 +#: guix-git/doc/guix.texi:33944 msgid "This is the maximum amount of memory which the zram device can use. Setting it to '0' disables the limit. While it is generally expected that compression will be 2:1, it is possible that uncompressable data can be written to swap and this is a method to limit how much memory can be used. It accepts a string and can be a number of bytes or use a suffix, eg.: @code{\"2G\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33507 +#: guix-git/doc/guix.texi:33944 #, no-wrap msgid "@code{priority} (default @code{-1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33512 +#: guix-git/doc/guix.texi:33949 msgid "This is the priority of the swap device created from the zram device. @code{swapon} accepts values between -1 and 32767, with higher values indicating higher priority. Higher priority swap will generally be used first." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33520 +#: guix-git/doc/guix.texi:33957 #, no-wrap msgid "{Scheme Variable} hurd-console-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33522 +#: guix-git/doc/guix.texi:33959 msgid "This service starts the fancy @code{VGA} console client on the Hurd." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33524 +#: guix-git/doc/guix.texi:33961 msgid "The service's value is a @code{hurd-console-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33526 +#: guix-git/doc/guix.texi:33963 #, no-wrap msgid "{Data Type} hurd-console-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33529 +#: guix-git/doc/guix.texi:33966 msgid "This is the data type representing the configuration for the hurd-console-service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33531 guix-git/doc/guix.texi:33547 +#: guix-git/doc/guix.texi:33968 guix-git/doc/guix.texi:33984 #, no-wrap msgid "@code{hurd} (default: @var{hurd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33533 guix-git/doc/guix.texi:33549 +#: guix-git/doc/guix.texi:33970 guix-git/doc/guix.texi:33986 msgid "The Hurd package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33536 +#: guix-git/doc/guix.texi:33973 #, no-wrap msgid "{Scheme Variable} hurd-getty-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33538 +#: guix-git/doc/guix.texi:33975 msgid "This service starts a tty using the Hurd @code{getty} program." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33540 +#: guix-git/doc/guix.texi:33977 msgid "The service's value is a @code{hurd-getty-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33542 +#: guix-git/doc/guix.texi:33979 #, no-wrap msgid "{Data Type} hurd-getty-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33545 +#: guix-git/doc/guix.texi:33982 msgid "This is the data type representing the configuration for the hurd-getty-service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33552 +#: guix-git/doc/guix.texi:33989 msgid "The name of the console this Getty runs on---e.g., @code{\"tty1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33553 +#: guix-git/doc/guix.texi:33990 #, no-wrap msgid "@code{baud-rate} (default: @code{38400})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33555 +#: guix-git/doc/guix.texi:33992 msgid "An integer specifying the baud rate of the tty." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33562 +#: guix-git/doc/guix.texi:33999 #, no-wrap msgid "fingerprint" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33563 +#: guix-git/doc/guix.texi:34000 #, no-wrap msgid "Fingerprint Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33567 +#: guix-git/doc/guix.texi:34004 msgid "The @code{(gnu services authentication)} module provides a DBus service to read and identify fingerprints via a fingerprint sensor." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33568 +#: guix-git/doc/guix.texi:34005 #, no-wrap msgid "{Scheme Variable} fprintd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33571 +#: guix-git/doc/guix.texi:34008 msgid "The service type for @command{fprintd}, which provides the fingerprint reading capability." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33574 +#: guix-git/doc/guix.texi:34011 #, no-wrap msgid "(service fprintd-service-type)\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33577 +#: guix-git/doc/guix.texi:34014 #, no-wrap msgid "sysctl" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33578 +#: guix-git/doc/guix.texi:34015 #, no-wrap msgid "System Control Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33582 +#: guix-git/doc/guix.texi:34019 msgid "The @code{(gnu services sysctl)} provides a service to configure kernel parameters at boot." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33583 +#: guix-git/doc/guix.texi:34020 #, no-wrap msgid "{Scheme Variable} sysctl-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33587 +#: guix-git/doc/guix.texi:34024 msgid "The service type for @command{sysctl}, which modifies kernel parameters under @file{/proc/sys/}. To enable IPv4 forwarding, it can be instantiated as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33592 +#: guix-git/doc/guix.texi:34029 #, no-wrap msgid "" "(service sysctl-service-type\n" @@ -60219,12 +61065,12 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33599 +#: guix-git/doc/guix.texi:34036 msgid "Since @code{sysctl-service-type} is used in the default lists of services, @code{%base-services} and @code{%desktop-services}, you can use @code{modify-services} to change its configuration and add the kernel parameters that you want (@pxref{Service Reference, @code{modify-services}})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33606 +#: guix-git/doc/guix.texi:34043 #, no-wrap msgid "" "(modify-services %base-services\n" @@ -60235,463 +61081,463 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33610 +#: guix-git/doc/guix.texi:34047 #, no-wrap msgid "{Data Type} sysctl-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33612 +#: guix-git/doc/guix.texi:34049 msgid "The data type representing the configuration of @command{sysctl}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33614 +#: guix-git/doc/guix.texi:34051 #, no-wrap msgid "@code{sysctl} (default: @code{(file-append procps \"/sbin/sysctl\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33616 +#: guix-git/doc/guix.texi:34053 msgid "The @command{sysctl} executable to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33617 +#: guix-git/doc/guix.texi:34054 #, fuzzy, no-wrap msgid "@code{settings} (default: @code{%default-sysctl-settings})" msgstr "@code{options} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33619 +#: guix-git/doc/guix.texi:34056 msgid "An association list specifies kernel parameters and their values." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33622 +#: guix-git/doc/guix.texi:34059 #, no-wrap msgid "{Scheme Variable} %default-sysctl-settings" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33625 +#: guix-git/doc/guix.texi:34062 msgid "An association list specifying the default @command{sysctl} parameters on Guix System." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33627 +#: guix-git/doc/guix.texi:34064 #, no-wrap msgid "pcscd" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33628 +#: guix-git/doc/guix.texi:34065 #, no-wrap msgid "PC/SC Smart Card Daemon Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33635 +#: guix-git/doc/guix.texi:34072 msgid "The @code{(gnu services security-token)} module provides the following service to run @command{pcscd}, the PC/SC Smart Card Daemon. @command{pcscd} is the daemon program for pcsc-lite and the MuscleCard framework. It is a resource manager that coordinates communications with smart card readers, smart cards and cryptographic tokens that are connected to the system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33636 +#: guix-git/doc/guix.texi:34073 #, no-wrap msgid "{Scheme Variable} pcscd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33640 +#: guix-git/doc/guix.texi:34077 msgid "Service type for the @command{pcscd} service. Its value must be a @code{pcscd-configuration} object. To run pcscd in the default configuration, instantiate it as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33643 +#: guix-git/doc/guix.texi:34080 #, no-wrap msgid "(service pcscd-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33646 +#: guix-git/doc/guix.texi:34083 #, no-wrap msgid "{Data Type} pcscd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33648 +#: guix-git/doc/guix.texi:34085 msgid "The data type representing the configuration of @command{pcscd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33650 +#: guix-git/doc/guix.texi:34087 #, no-wrap msgid "@code{pcsc-lite} (default: @code{pcsc-lite})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33652 +#: guix-git/doc/guix.texi:34089 msgid "The pcsc-lite package that provides pcscd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33652 +#: guix-git/doc/guix.texi:34089 #, no-wrap msgid "@code{usb-drivers} (default: @code{(list ccid)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33655 +#: guix-git/doc/guix.texi:34092 msgid "List of packages that provide USB drivers to pcscd. Drivers are expected to be under @file{pcsc/drivers} in the store directory of the package." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33658 +#: guix-git/doc/guix.texi:34095 #, no-wrap msgid "lirc" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33659 +#: guix-git/doc/guix.texi:34096 #, no-wrap msgid "Lirc Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33662 +#: guix-git/doc/guix.texi:34099 msgid "The @code{(gnu services lirc)} module provides the following service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33663 +#: guix-git/doc/guix.texi:34100 #, no-wrap msgid "{Scheme Procedure} lirc-service [#:lirc lirc] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33668 +#: guix-git/doc/guix.texi:34105 msgid "[#:device #f] [#:driver #f] [#:config-file #f] @ [#:extra-options '()] Return a service that runs @url{http://www.lirc.org,LIRC}, a daemon that decodes infrared signals from remote controls." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33672 +#: guix-git/doc/guix.texi:34109 msgid "Optionally, @var{device}, @var{driver} and @var{config-file} (configuration file name) may be specified. See @command{lircd} manual for details." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33675 +#: guix-git/doc/guix.texi:34112 msgid "Finally, @var{extra-options} is a list of additional command-line options passed to @command{lircd}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33677 +#: guix-git/doc/guix.texi:34114 #, no-wrap msgid "spice" msgstr "spice" #. type: subsubheading -#: guix-git/doc/guix.texi:33678 +#: guix-git/doc/guix.texi:34115 #, no-wrap msgid "Spice Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33681 +#: guix-git/doc/guix.texi:34118 msgid "The @code{(gnu services spice)} module provides the following service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33682 +#: guix-git/doc/guix.texi:34119 #, no-wrap msgid "{Scheme Procedure} spice-vdagent-service [#:spice-vdagent]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33686 +#: guix-git/doc/guix.texi:34123 msgid "Returns a service that runs @url{https://www.spice-space.org,VDAGENT}, a daemon that enables sharing the clipboard with a vm and setting the guest display resolution when the graphical console window resizes." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33688 +#: guix-git/doc/guix.texi:34125 #, no-wrap msgid "inputattach" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33689 +#: guix-git/doc/guix.texi:34126 #, no-wrap msgid "inputattach Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33691 +#: guix-git/doc/guix.texi:34128 #, no-wrap msgid "tablet input, for Xorg" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33692 +#: guix-git/doc/guix.texi:34129 #, no-wrap msgid "touchscreen input, for Xorg" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33696 +#: guix-git/doc/guix.texi:34133 msgid "The @uref{https://linuxwacom.github.io/, inputattach} service allows you to use input devices such as Wacom tablets, touchscreens, or joysticks with the Xorg display server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33697 +#: guix-git/doc/guix.texi:34134 #, no-wrap msgid "{Scheme Variable} inputattach-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33700 +#: guix-git/doc/guix.texi:34137 msgid "Type of a service that runs @command{inputattach} on a device and dispatches events from it." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33702 +#: guix-git/doc/guix.texi:34139 #, no-wrap msgid "{Data Type} inputattach-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33704 +#: guix-git/doc/guix.texi:34141 #, no-wrap msgid "@code{device-type} (default: @code{\"wacom\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33707 +#: guix-git/doc/guix.texi:34144 msgid "The type of device to connect to. Run @command{inputattach --help}, from the @code{inputattach} package, to see the list of supported device types." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33708 +#: guix-git/doc/guix.texi:34145 #, no-wrap msgid "@code{device} (default: @code{\"/dev/ttyS0\"})" msgstr "@code{device} (padrão: @code{\"/dev/ttyS0\"})" #. type: table -#: guix-git/doc/guix.texi:33710 +#: guix-git/doc/guix.texi:34147 msgid "The device file to connect to the device." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33714 +#: guix-git/doc/guix.texi:34151 msgid "Baud rate to use for the serial connection. Should be a number or @code{#f}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33715 +#: guix-git/doc/guix.texi:34152 #, no-wrap msgid "@code{log-file} (default: @code{#f})" msgstr "@code{log-file} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33717 +#: guix-git/doc/guix.texi:34154 msgid "If true, this must be the name of a file to log messages to." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33720 +#: guix-git/doc/guix.texi:34157 #, no-wrap msgid "Dictionary Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33721 +#: guix-git/doc/guix.texi:34158 #, no-wrap msgid "dictionary" msgstr "dicionário" #. type: Plain text -#: guix-git/doc/guix.texi:33723 +#: guix-git/doc/guix.texi:34160 msgid "The @code{(gnu services dict)} module provides the following service:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33724 +#: guix-git/doc/guix.texi:34161 #, no-wrap msgid "{Scheme Variable} dicod-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33727 +#: guix-git/doc/guix.texi:34164 msgid "This is the type of the service that runs the @command{dicod} daemon, an implementation of DICT server (@pxref{Dicod,,, dico, GNU Dico Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33729 +#: guix-git/doc/guix.texi:34166 #, no-wrap msgid "{Scheme Procedure} dicod-service [#:config (dicod-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33732 +#: guix-git/doc/guix.texi:34169 msgid "Return a service that runs the @command{dicod} daemon, an implementation of DICT server (@pxref{Dicod,,, dico, GNU Dico Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33736 +#: guix-git/doc/guix.texi:34173 msgid "The optional @var{config} argument specifies the configuration for @command{dicod}, which should be a @code{} object, by default it serves the GNU Collaborative International Dictionary of English." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33740 +#: guix-git/doc/guix.texi:34177 msgid "You can add @command{open localhost} to your @file{~/.dico} file to make @code{localhost} the default server for @command{dico} client (@pxref{Initialization File,,, dico, GNU Dico Manual})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33742 +#: guix-git/doc/guix.texi:34179 #, no-wrap msgid "{Data Type} dicod-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33744 +#: guix-git/doc/guix.texi:34181 msgid "Data type representing the configuration of dicod." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33746 +#: guix-git/doc/guix.texi:34183 #, no-wrap msgid "@code{dico} (default: @var{dico})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33748 +#: guix-git/doc/guix.texi:34185 msgid "Package object of the GNU Dico dictionary server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33749 +#: guix-git/doc/guix.texi:34186 #, no-wrap msgid "@code{interfaces} (default: @var{'(\"localhost\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33753 +#: guix-git/doc/guix.texi:34190 msgid "This is the list of IP addresses and ports and possibly socket file names to listen to (@pxref{Server Settings, @code{listen} directive,, dico, GNU Dico Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33754 +#: guix-git/doc/guix.texi:34191 #, no-wrap msgid "@code{handlers} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33756 +#: guix-git/doc/guix.texi:34193 msgid "List of @code{} objects denoting handlers (module instances)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33757 +#: guix-git/doc/guix.texi:34194 #, no-wrap msgid "@code{databases} (default: @var{(list %dicod-database:gcide)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33759 +#: guix-git/doc/guix.texi:34196 msgid "List of @code{} objects denoting dictionaries to be served." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33762 +#: guix-git/doc/guix.texi:34199 #, no-wrap msgid "{Data Type} dicod-handler" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33764 +#: guix-git/doc/guix.texi:34201 msgid "Data type representing a dictionary handler (module instance)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33768 +#: guix-git/doc/guix.texi:34205 msgid "Name of the handler (module instance)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33769 +#: guix-git/doc/guix.texi:34206 #, no-wrap msgid "@code{module} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33773 +#: guix-git/doc/guix.texi:34210 msgid "Name of the dicod module of the handler (instance). If it is @code{#f}, the module has the same name as the handler. (@pxref{Modules,,, dico, GNU Dico Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33776 +#: guix-git/doc/guix.texi:34213 msgid "List of strings or gexps representing the arguments for the module handler" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33779 +#: guix-git/doc/guix.texi:34216 #, no-wrap msgid "{Data Type} dicod-database" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33781 +#: guix-git/doc/guix.texi:34218 msgid "Data type representing a dictionary database." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33785 +#: guix-git/doc/guix.texi:34222 msgid "Name of the database, will be used in DICT commands." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33786 +#: guix-git/doc/guix.texi:34223 #, no-wrap msgid "handler" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33789 +#: guix-git/doc/guix.texi:34226 msgid "Name of the dicod handler (module instance) used by this database (@pxref{Handlers,,, dico, GNU Dico Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33790 +#: guix-git/doc/guix.texi:34227 #, no-wrap msgid "@code{complex?} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33793 +#: guix-git/doc/guix.texi:34230 msgid "Whether the database configuration complex. The complex configuration will need a corresponding @code{} object, otherwise not." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33797 +#: guix-git/doc/guix.texi:34234 msgid "List of strings or gexps representing the arguments for the database (@pxref{Databases,,, dico, GNU Dico Manual})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33800 +#: guix-git/doc/guix.texi:34237 #, no-wrap msgid "{Scheme Variable} %dicod-database:gcide" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33803 +#: guix-git/doc/guix.texi:34240 msgid "A @code{} object serving the GNU Collaborative International Dictionary of English using the @code{gcide} package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33806 +#: guix-git/doc/guix.texi:34243 msgid "The following is an example @code{dicod-service} configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33821 +#: guix-git/doc/guix.texi:34258 #, no-wrap msgid "" "(dicod-service #:config\n" @@ -60710,142 +61556,142 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33823 +#: guix-git/doc/guix.texi:34260 #, no-wrap msgid "Docker" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33824 +#: guix-git/doc/guix.texi:34261 #, no-wrap msgid "Docker Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33827 +#: guix-git/doc/guix.texi:34264 msgid "The @code{(gnu services docker)} module provides the following services." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33828 +#: guix-git/doc/guix.texi:34265 #, no-wrap msgid "{Scheme Variable} docker-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33833 +#: guix-git/doc/guix.texi:34270 msgid "This is the type of the service that runs @url{https://www.docker.com,Docker}, a daemon that can execute application bundles (sometimes referred to as ``containers'') in isolated environments." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33836 +#: guix-git/doc/guix.texi:34273 #, no-wrap msgid "{Data Type} docker-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33838 +#: guix-git/doc/guix.texi:34275 msgid "This is the data type representing the configuration of Docker and Containerd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33841 +#: guix-git/doc/guix.texi:34278 #, fuzzy, no-wrap #| msgid "@code{tor} (default: @code{tor})" msgid "@code{docker} (default: @code{docker})" msgstr "@code{tor} (default: @code{tor})" #. type: table -#: guix-git/doc/guix.texi:33843 +#: guix-git/doc/guix.texi:34280 msgid "The Docker daemon package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33844 +#: guix-git/doc/guix.texi:34281 #, fuzzy, no-wrap #| msgid "@code{tor} (default: @code{tor})" msgid "@code{docker-cli} (default: @code{docker-cli})" msgstr "@code{tor} (default: @code{tor})" #. type: table -#: guix-git/doc/guix.texi:33846 +#: guix-git/doc/guix.texi:34283 msgid "The Docker client package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33847 +#: guix-git/doc/guix.texi:34284 #, no-wrap msgid "@code{containerd} (default: @var{containerd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33849 +#: guix-git/doc/guix.texi:34286 msgid "The Containerd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33850 +#: guix-git/doc/guix.texi:34287 #, no-wrap msgid "@code{proxy} (default @var{docker-libnetwork-cmd-proxy})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33852 +#: guix-git/doc/guix.texi:34289 msgid "The Docker user-land networking proxy package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33853 +#: guix-git/doc/guix.texi:34290 #, no-wrap msgid "@code{enable-proxy?} (default @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33855 +#: guix-git/doc/guix.texi:34292 msgid "Enable or disable the use of the Docker user-land networking proxy." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33856 +#: guix-git/doc/guix.texi:34293 #, no-wrap msgid "@code{debug?} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33858 +#: guix-git/doc/guix.texi:34295 msgid "Enable or disable debug output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33859 +#: guix-git/doc/guix.texi:34296 #, no-wrap msgid "@code{enable-iptables?} (default @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33861 +#: guix-git/doc/guix.texi:34298 msgid "Enable or disable the addition of iptables rules." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33862 +#: guix-git/doc/guix.texi:34299 #, fuzzy, no-wrap #| msgid "@code{replacement} (default: @code{#f})" msgid "@code{environment-variables} (default: @code{()})" msgstr "@code{replacement} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:33864 +#: guix-git/doc/guix.texi:34301 msgid "List of environment variables to set for @command{dockerd}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33867 +#: guix-git/doc/guix.texi:34304 msgid "This must be a list of strings where each string has the form @samp{@var{key}=@var{value}} as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33871 +#: guix-git/doc/guix.texi:34308 #, no-wrap msgid "" "(list \"LANGUAGE=eo:ca:eu\"\n" @@ -60853,196 +61699,196 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33876 +#: guix-git/doc/guix.texi:34313 #, no-wrap msgid "Singularity, container service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33877 +#: guix-git/doc/guix.texi:34314 #, no-wrap msgid "{Scheme Variable} singularity-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33882 +#: guix-git/doc/guix.texi:34319 msgid "This is the type of the service that allows you to run @url{https://www.sylabs.io/singularity/, Singularity}, a Docker-style tool to create and run application bundles (aka. ``containers''). The value for this service is the Singularity package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33886 +#: guix-git/doc/guix.texi:34323 msgid "The service does not install a daemon; instead, it installs helper programs as setuid-root (@pxref{Setuid Programs}) such that unprivileged users can invoke @command{singularity run} and similar commands." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33888 +#: guix-git/doc/guix.texi:34325 #, no-wrap msgid "Audit" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33889 +#: guix-git/doc/guix.texi:34326 #, no-wrap msgid "Auditd Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33892 +#: guix-git/doc/guix.texi:34329 msgid "The @code{(gnu services auditd)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33893 +#: guix-git/doc/guix.texi:34330 #, no-wrap msgid "{Scheme Variable} auditd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33898 +#: guix-git/doc/guix.texi:34335 msgid "This is the type of the service that runs @url{https://people.redhat.com/sgrubb/audit/,auditd}, a daemon that tracks security-relevant information on your system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33900 +#: guix-git/doc/guix.texi:34337 msgid "Examples of things that can be tracked:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33904 +#: guix-git/doc/guix.texi:34341 msgid "File accesses" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33906 +#: guix-git/doc/guix.texi:34343 msgid "System calls" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33908 +#: guix-git/doc/guix.texi:34345 msgid "Invoked commands" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33910 +#: guix-git/doc/guix.texi:34347 msgid "Failed login attempts" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33912 +#: guix-git/doc/guix.texi:34349 msgid "Firewall filtering" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33914 +#: guix-git/doc/guix.texi:34351 msgid "Network access" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33925 +#: guix-git/doc/guix.texi:34362 msgid "@command{auditctl} from the @code{audit} package can be used in order to add or remove events to be tracked (until the next reboot). In order to permanently track events, put the command line arguments of auditctl into a file called @code{audit.rules} in the configuration directory (see below). @command{aureport} from the @code{audit} package can be used in order to view a report of all recorded events. The audit daemon by default logs into the file @file{/var/log/audit.log}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33928 +#: guix-git/doc/guix.texi:34365 #, no-wrap msgid "{Data Type} auditd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33930 +#: guix-git/doc/guix.texi:34367 msgid "This is the data type representing the configuration of auditd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33933 +#: guix-git/doc/guix.texi:34370 #, no-wrap msgid "@code{audit} (default: @code{audit})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33935 +#: guix-git/doc/guix.texi:34372 msgid "The audit package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33936 +#: guix-git/doc/guix.texi:34373 #, no-wrap msgid "@code{configuration-directory} (default: @code{%default-auditd-configuration-directory})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33940 +#: guix-git/doc/guix.texi:34377 msgid "The directory containing the configuration file for the audit package, which must be named @code{auditd.conf}, and optionally some audit rules to instantiate on startup." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33944 +#: guix-git/doc/guix.texi:34381 #, no-wrap msgid "rshiny" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33945 +#: guix-git/doc/guix.texi:34382 #, no-wrap msgid "R-Shiny service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33948 +#: guix-git/doc/guix.texi:34385 msgid "The @code{(gnu services science)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33949 +#: guix-git/doc/guix.texi:34386 #, no-wrap msgid "{Scheme Variable} rshiny-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33954 +#: guix-git/doc/guix.texi:34391 msgid "This is a type of service which is used to run a webapp created with @code{r-shiny}. This service sets the @env{R_LIBS_USER} environment variable and runs the provided script to call @code{runApp}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33955 +#: guix-git/doc/guix.texi:34392 #, no-wrap msgid "{Data Type} rshiny-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33957 +#: guix-git/doc/guix.texi:34394 msgid "This is the data type representing the configuration of rshiny." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33960 +#: guix-git/doc/guix.texi:34397 #, no-wrap msgid "@code{package} (default: @code{r-shiny})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33962 +#: guix-git/doc/guix.texi:34399 msgid "The package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33963 +#: guix-git/doc/guix.texi:34400 #, no-wrap msgid "@code{binary} (defaunlt @code{\"rshiny\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33966 +#: guix-git/doc/guix.texi:34403 msgid "The name of the binary or shell script located at @code{package/bin/} to run when the service is run." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33968 +#: guix-git/doc/guix.texi:34405 msgid "The common way to create this file is as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33985 +#: guix-git/doc/guix.texi:34422 #, no-wrap msgid "" "@dots{}\n" @@ -61063,35 +61909,35 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33991 +#: guix-git/doc/guix.texi:34428 #, no-wrap msgid "Nix" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33992 +#: guix-git/doc/guix.texi:34429 #, no-wrap msgid "Nix service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33995 +#: guix-git/doc/guix.texi:34432 msgid "The @code{(gnu services nix)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33996 +#: guix-git/doc/guix.texi:34433 #, no-wrap msgid "{Scheme Variable} nix-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34001 +#: guix-git/doc/guix.texi:34438 msgid "This is the type of the service that runs build daemon of the @url{https://nixos.org/nix/, Nix} package manager. Here is an example showing how to use it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34006 +#: guix-git/doc/guix.texi:34443 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -61101,7 +61947,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34011 +#: guix-git/doc/guix.texi:34448 #, no-wrap msgid "" "(operating-system\n" @@ -61112,7 +61958,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34014 +#: guix-git/doc/guix.texi:34451 #, no-wrap msgid "" " (services (append (list (service nix-service-type))\n" @@ -61120,29 +61966,29 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34017 +#: guix-git/doc/guix.texi:34454 msgid "After @command{guix system reconfigure} configure Nix for your user:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34019 +#: guix-git/doc/guix.texi:34456 #, no-wrap msgid "Add a Nix channel and update it. See" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:34021 +#: guix-git/doc/guix.texi:34458 msgid "@url{https://nixos.org/nix/manual/, Nix Package Manager Guide}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34022 +#: guix-git/doc/guix.texi:34459 #, no-wrap msgid "Create a symlink to your profile and activate Nix profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34028 +#: guix-git/doc/guix.texi:34465 #, no-wrap msgid "" "$ ln -s \"/nix/var/nix/profiles/per-user/$USER/profile\" ~/.nix-profile\n" @@ -61150,77 +61996,77 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34032 +#: guix-git/doc/guix.texi:34469 #, no-wrap msgid "{Data Type} nix-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34034 +#: guix-git/doc/guix.texi:34471 msgid "This data type represents the configuration of the Nix daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34036 +#: guix-git/doc/guix.texi:34473 #, no-wrap msgid "@code{nix} (default: @code{nix})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34038 +#: guix-git/doc/guix.texi:34475 msgid "The Nix package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34039 +#: guix-git/doc/guix.texi:34476 #, no-wrap msgid "@code{sandbox} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34041 +#: guix-git/doc/guix.texi:34478 msgid "Specifies whether builds are sandboxed by default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34042 +#: guix-git/doc/guix.texi:34479 #, no-wrap msgid "@code{build-sandbox-items} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34045 +#: guix-git/doc/guix.texi:34482 msgid "This is a list of strings or objects appended to the @code{build-sandbox-items} field of the configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34053 +#: guix-git/doc/guix.texi:34490 msgid "Extra command line options for @code{nix-service-type}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34059 +#: guix-git/doc/guix.texi:34496 #, no-wrap msgid "setuid programs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34069 +#: guix-git/doc/guix.texi:34506 msgid "Some programs need to run with ``root'' privileges, even when they are launched by unprivileged users. A notorious example is the @command{passwd} program, which users can run to change their password, and which needs to access the @file{/etc/passwd} and @file{/etc/shadow} files---something normally restricted to root, for obvious security reasons. To address that, these executables are @dfn{setuid-root}, meaning that they always run with root privileges (@pxref{How Change Persona,,, libc, The GNU C Library Reference Manual}, for more info about the setuid mechanism)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34076 +#: guix-git/doc/guix.texi:34513 msgid "The store itself @emph{cannot} contain setuid programs: that would be a security issue since any user on the system can write derivations that populate the store (@pxref{The Store}). Thus, a different mechanism is used: instead of changing the setuid bit directly on files that are in the store, we let the system administrator @emph{declare} which programs should be setuid root." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34083 +#: guix-git/doc/guix.texi:34520 msgid "The @code{setuid-programs} field of an @code{operating-system} declaration contains a list of @code{} denoting the names of programs to have a setuid or setgid bit set (@pxref{Using the Configuration System}). For instance, the @command{mount.nfs} program, which is part of the nfs-utils package, with a setuid root can be designated like this:" msgstr "" -#. type: example -#: guix-git/doc/guix.texi:34087 +#. type: lisp +#: guix-git/doc/guix.texi:34524 #, no-wrap msgid "" "(setuid-program\n" @@ -61228,167 +62074,169 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34092 +#: guix-git/doc/guix.texi:34529 msgid "And then, to make @command{mount.nfs} setuid on your system, add the previous example to your operating system declaration by appending it to @code{%setuid-programs} like this:" msgstr "" -#. type: example -#: guix-git/doc/guix.texi:34098 +#. type: lisp +#: guix-git/doc/guix.texi:34537 #, no-wrap msgid "" -"(setuid-programs\n" -" (append (list (setuid-program\n" -" (program (file-append nfs-utils \"/sbin/mount.nfs\"))))\n" -" %setuid-programs))\n" +"(operating-system\n" +" ;; Some fields omitted...\n" +" (setuid-programs\n" +" (append (list (setuid-program\n" +" (program (file-append nfs-utils \"/sbin/mount.nfs\")))\n" +" %setuid-programs))))\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34100 +#: guix-git/doc/guix.texi:34539 #, fuzzy, no-wrap #| msgid "{Data Type} build-machine" msgid "{Data Type} setuid-program" msgstr "build-machine {Data Type}" #. type: deftp -#: guix-git/doc/guix.texi:34102 +#: guix-git/doc/guix.texi:34541 msgid "This data type represents a program with a setuid or setgid bit set." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:34104 +#: guix-git/doc/guix.texi:34543 #, no-wrap msgid "program" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34106 +#: guix-git/doc/guix.texi:34545 msgid "A file-like object having its setuid and/or setgid bit set." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34107 +#: guix-git/doc/guix.texi:34546 #, fuzzy, no-wrap #| msgid "@code{shared?} (default: @code{#t})" msgid "@code{setuid?} (default: @code{#t})" msgstr "@code{shared?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:34109 +#: guix-git/doc/guix.texi:34548 msgid "Whether to set user setuid bit." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34110 +#: guix-git/doc/guix.texi:34549 #, fuzzy, no-wrap #| msgid "@code{id} (default: @code{#f})" msgid "@code{setgid?} (default: @code{#f})" msgstr "@code{id} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:34112 +#: guix-git/doc/guix.texi:34551 msgid "Whether to set group setgid bit." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34113 +#: guix-git/doc/guix.texi:34552 #, fuzzy, no-wrap #| msgid "@code{users} (default: @code{#f})" msgid "@code{user} (default: @code{0})" msgstr "@code{users} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:34116 +#: guix-git/doc/guix.texi:34555 msgid "UID (integer) or user name (string) for the user owner of the program, defaults to root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34117 +#: guix-git/doc/guix.texi:34556 #, fuzzy, no-wrap #| msgid "@code{hangup?} (default: @code{#f})" msgid "@code{group} (default: @code{0})" msgstr "@code{hangup?} (padrão: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:34120 +#: guix-git/doc/guix.texi:34559 msgid "GID (integer) goup name (string) for the group owner of the program, defaults to root." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34126 +#: guix-git/doc/guix.texi:34565 msgid "A default set of setuid programs is defined by the @code{%setuid-programs} variable of the @code{(gnu system)} module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34127 +#: guix-git/doc/guix.texi:34566 #, no-wrap msgid "{Scheme Variable} %setuid-programs" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34130 +#: guix-git/doc/guix.texi:34569 msgid "A list of @code{} denoting common programs that are setuid-root." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34133 +#: guix-git/doc/guix.texi:34572 msgid "The list includes commands such as @command{passwd}, @command{ping}, @command{su}, and @command{sudo}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34139 +#: guix-git/doc/guix.texi:34578 msgid "Under the hood, the actual setuid programs are created in the @file{/run/setuid-programs} directory at system activation time. The files in this directory refer to the ``real'' binaries, which are in the store." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34143 +#: guix-git/doc/guix.texi:34582 #, no-wrap msgid "HTTPS, certificates" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34144 +#: guix-git/doc/guix.texi:34583 #, no-wrap msgid "X.509 certificates" msgstr "Certificados X.509" #. type: cindex -#: guix-git/doc/guix.texi:34145 +#: guix-git/doc/guix.texi:34584 #, no-wrap msgid "TLS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34152 +#: guix-git/doc/guix.texi:34591 msgid "Web servers available over HTTPS (that is, HTTP over the transport-layer security mechanism, TLS) send client programs an @dfn{X.509 certificate} that the client can then use to @emph{authenticate} the server. To do that, clients verify that the server's certificate is signed by a so-called @dfn{certificate authority} (CA). But to verify the CA's signature, clients must have first acquired the CA's certificate." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34156 +#: guix-git/doc/guix.texi:34595 msgid "Web browsers such as GNU@tie{}IceCat include their own set of CA certificates, such that they are able to verify CA signatures out-of-the-box." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34160 +#: guix-git/doc/guix.texi:34599 msgid "However, most other programs that can talk HTTPS---@command{wget}, @command{git}, @command{w3m}, etc.---need to be told where CA certificates can be found." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34167 +#: guix-git/doc/guix.texi:34606 msgid "In Guix, this is done by adding a package that provides certificates to the @code{packages} field of the @code{operating-system} declaration (@pxref{operating-system Reference}). Guix includes one such package, @code{nss-certs}, which is a set of CA certificates provided as part of Mozilla's Network Security Services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34172 +#: guix-git/doc/guix.texi:34611 msgid "Note that it is @emph{not} part of @code{%base-packages}, so you need to explicitly add it. The @file{/etc/ssl/certs} directory, which is where most applications and libraries look for certificates by default, points to the certificates installed globally." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34182 +#: guix-git/doc/guix.texi:34621 msgid "Unprivileged users, including users of Guix on a foreign distro, can also install their own certificate package in their profile. A number of environment variables need to be defined so that applications and libraries know where to find them. Namely, the OpenSSL library honors the @env{SSL_CERT_DIR} and @env{SSL_CERT_FILE} variables. Some applications add their own environment variables; for instance, the Git version control system honors the certificate bundle pointed to by the @env{GIT_SSL_CAINFO} environment variable. Thus, you would typically run something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34188 +#: guix-git/doc/guix.texi:34627 #, no-wrap msgid "" "guix install nss-certs\n" @@ -61398,12 +62246,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34193 +#: guix-git/doc/guix.texi:34632 msgid "As another example, R requires the @env{CURL_CA_BUNDLE} environment variable to point to a certificate bundle, so you would have to run something like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34197 +#: guix-git/doc/guix.texi:34636 #, no-wrap msgid "" "guix install nss-certs\n" @@ -61411,51 +62259,51 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34201 +#: guix-git/doc/guix.texi:34640 msgid "For other applications you may want to look up the required environment variable in the relevant documentation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34206 +#: guix-git/doc/guix.texi:34645 #, no-wrap msgid "name service switch" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34207 +#: guix-git/doc/guix.texi:34646 #, no-wrap msgid "NSS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34216 +#: guix-git/doc/guix.texi:34655 msgid "The @code{(gnu system nss)} module provides bindings to the configuration file of the libc @dfn{name service switch} or @dfn{NSS} (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference Manual}). In a nutshell, the NSS is a mechanism that allows libc to be extended with new ``name'' lookup methods for system databases, which includes host names, service names, user accounts, and more (@pxref{Name Service Switch, System Databases and Name Service Switch,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34223 +#: guix-git/doc/guix.texi:34662 msgid "The NSS configuration specifies, for each system database, which lookup method is to be used, and how the various methods are chained together---for instance, under which circumstances NSS should try the next method in the list. The NSS configuration is given in the @code{name-service-switch} field of @code{operating-system} declarations (@pxref{operating-system Reference, @code{name-service-switch}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34224 +#: guix-git/doc/guix.texi:34663 #, no-wrap msgid "nss-mdns" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34225 +#: guix-git/doc/guix.texi:34664 #, no-wrap msgid ".local, host name lookup" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34230 +#: guix-git/doc/guix.texi:34669 msgid "As an example, the declaration below configures the NSS to use the @uref{https://0pointer.de/lennart/projects/nss-mdns/, @code{nss-mdns} back-end}, which supports host name lookups over multicast DNS (mDNS) for host names ending in @code{.local}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34234 +#: guix-git/doc/guix.texi:34673 #, no-wrap msgid "" "(name-service-switch\n" @@ -61464,7 +62312,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34239 +#: guix-git/doc/guix.texi:34678 #, no-wrap msgid "" " ;; If the above did not succeed, try\n" @@ -61475,7 +62323,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34245 +#: guix-git/doc/guix.texi:34684 #, no-wrap msgid "" " ;; 'mdns_minimal' is authoritative for\n" @@ -61487,7 +62335,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34249 +#: guix-git/doc/guix.texi:34688 #, no-wrap msgid "" " ;; Then fall back to DNS.\n" @@ -61497,7 +62345,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34253 +#: guix-git/doc/guix.texi:34692 #, no-wrap msgid "" " ;; Finally, try with the \"full\" 'mdns'.\n" @@ -61506,151 +62354,151 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34258 +#: guix-git/doc/guix.texi:34697 msgid "Do not worry: the @code{%mdns-host-lookup-nss} variable (see below) contains this configuration, so you will not have to type it if all you want is to have @code{.local} host lookup working." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34266 +#: guix-git/doc/guix.texi:34705 msgid "Note that, in this case, in addition to setting the @code{name-service-switch} of the @code{operating-system} declaration, you also need to use @code{avahi-service-type} (@pxref{Networking Services, @code{avahi-service-type}}), or @code{%desktop-services}, which includes it (@pxref{Desktop Services}). Doing this makes @code{nss-mdns} accessible to the name service cache daemon (@pxref{Base Services, @code{nscd-service}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34269 +#: guix-git/doc/guix.texi:34708 msgid "For convenience, the following variables provide typical NSS configurations." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34270 +#: guix-git/doc/guix.texi:34709 #, no-wrap msgid "{Scheme Variable} %default-nss" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34273 +#: guix-git/doc/guix.texi:34712 msgid "This is the default name service switch configuration, a @code{name-service-switch} object." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34275 +#: guix-git/doc/guix.texi:34714 #, no-wrap msgid "{Scheme Variable} %mdns-host-lookup-nss" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34278 +#: guix-git/doc/guix.texi:34717 msgid "This is the name service switch configuration with support for host name lookup over multicast DNS (mDNS) for host names ending in @code{.local}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34288 +#: guix-git/doc/guix.texi:34727 msgid "The reference for name service switch configuration is given below. It is a direct mapping of the configuration file format of the C library , so please refer to the C library manual for more information (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference Manual}). Compared to the configuration file format of libc NSS, it has the advantage not only of adding this warm parenthetic feel that we like, but also static checks: you will know about syntax errors and typos as soon as you run @command{guix system}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34289 +#: guix-git/doc/guix.texi:34728 #, no-wrap msgid "{Data Type} name-service-switch" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34294 +#: guix-git/doc/guix.texi:34733 msgid "This is the data type representation the configuration of libc's name service switch (NSS). Each field below represents one of the supported system databases." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34296 +#: guix-git/doc/guix.texi:34735 #, no-wrap msgid "aliases" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34297 +#: guix-git/doc/guix.texi:34736 #, no-wrap msgid "ethers" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34299 +#: guix-git/doc/guix.texi:34738 #, no-wrap msgid "gshadow" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34300 +#: guix-git/doc/guix.texi:34739 #, no-wrap msgid "hosts" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34301 +#: guix-git/doc/guix.texi:34740 #, no-wrap msgid "initgroups" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34302 +#: guix-git/doc/guix.texi:34741 #, no-wrap msgid "netgroup" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34303 +#: guix-git/doc/guix.texi:34742 #, no-wrap msgid "networks" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34306 +#: guix-git/doc/guix.texi:34745 #, no-wrap msgid "rpc" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34308 +#: guix-git/doc/guix.texi:34747 #, no-wrap msgid "shadow" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34311 +#: guix-git/doc/guix.texi:34750 msgid "The system databases handled by the NSS@. Each of these fields must be a list of @code{} objects (see below)." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34314 +#: guix-git/doc/guix.texi:34753 #, no-wrap msgid "{Data Type} name-service" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34318 +#: guix-git/doc/guix.texi:34757 msgid "This is the data type representing an actual name service and the associated lookup action." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34323 +#: guix-git/doc/guix.texi:34762 msgid "A string denoting the name service (@pxref{Services in the NSS configuration,,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34328 +#: guix-git/doc/guix.texi:34767 msgid "Note that name services listed here must be visible to nscd. This is achieved by passing the @code{#:name-services} argument to @code{nscd-service} the list of packages providing the needed name services (@pxref{Base Services, @code{nscd-service}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34329 +#: guix-git/doc/guix.texi:34768 #, no-wrap msgid "reaction" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34333 +#: guix-git/doc/guix.texi:34772 msgid "An action specified using the @code{lookup-specification} macro (@pxref{Actions in the NSS configuration,,, libc, The GNU C Library Reference Manual}). For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34337 +#: guix-git/doc/guix.texi:34776 #, no-wrap msgid "" "(lookup-specification (unavailable => continue)\n" @@ -61658,17 +62506,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34351 +#: guix-git/doc/guix.texi:34790 msgid "For bootstrapping purposes, the Linux-Libre kernel is passed an @dfn{initial RAM disk}, or @dfn{initrd}. An initrd contains a temporary root file system as well as an initialization script. The latter is responsible for mounting the real root file system, and for loading any kernel modules that may be needed to achieve that." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34360 +#: guix-git/doc/guix.texi:34799 msgid "The @code{initrd-modules} field of an @code{operating-system} declaration allows you to specify Linux-libre kernel modules that must be available in the initrd. In particular, this is where you would list modules needed to actually drive the hard disk where your root partition is---although the default value of @code{initrd-modules} should cover most use cases. For example, assuming you need the @code{megaraid_sas} module in addition to the default modules to be able to access your root file system, you would write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34365 +#: guix-git/doc/guix.texi:34804 #, no-wrap msgid "" "(operating-system\n" @@ -61677,28 +62525,28 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34367 +#: guix-git/doc/guix.texi:34806 #, no-wrap msgid "{Scheme Variable} %base-initrd-modules" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34369 +#: guix-git/doc/guix.texi:34808 msgid "This is the list of kernel modules included in the initrd by default." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34377 +#: guix-git/doc/guix.texi:34816 msgid "Furthermore, if you need lower-level customization, the @code{initrd} field of an @code{operating-system} declaration allows you to specify which initrd you would like to use. The @code{(gnu system linux-initrd)} module provides three ways to build an initrd: the high-level @code{base-initrd} procedure and the low-level @code{raw-initrd} and @code{expression->initrd} procedures." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34382 +#: guix-git/doc/guix.texi:34821 msgid "The @code{base-initrd} procedure is intended to cover most common uses. For example, if you want to add a bunch of kernel modules to be loaded at boot time, you can define the @code{initrd} field of the operating system declaration like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34390 +#: guix-git/doc/guix.texi:34829 #, no-wrap msgid "" "(initrd (lambda (file-systems . rest)\n" @@ -61710,447 +62558,447 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34395 +#: guix-git/doc/guix.texi:34834 msgid "The @code{base-initrd} procedure also handles common use cases that involves using the system as a QEMU guest, or as a ``live'' system with volatile root file system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34402 +#: guix-git/doc/guix.texi:34841 msgid "The @code{base-initrd} procedure is built from @code{raw-initrd} procedure. Unlike @code{base-initrd}, @code{raw-initrd} doesn't do anything high-level, such as trying to guess which kernel modules and packages should be included to the initrd. An example use of @code{raw-initrd} is when a user has a custom Linux kernel configuration and default kernel modules included by @code{base-initrd} are not available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34407 +#: guix-git/doc/guix.texi:34846 msgid "The initial RAM disk produced by @code{base-initrd} or @code{raw-initrd} honors several options passed on the Linux kernel command line (that is, arguments passed @i{via} the @code{linux} command of GRUB, or the @code{-append} option of QEMU), notably:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34409 +#: guix-git/doc/guix.texi:34848 #, no-wrap msgid "--load=@var{boot}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34412 +#: guix-git/doc/guix.texi:34851 msgid "Tell the initial RAM disk to load @var{boot}, a file containing a Scheme program, once it has mounted the root file system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34416 +#: guix-git/doc/guix.texi:34855 msgid "Guix uses this option to yield control to a boot program that runs the service activation programs and then spawns the GNU@tie{}Shepherd, the initialization system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34417 +#: guix-git/doc/guix.texi:34856 #, no-wrap msgid "--root=@var{root}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34422 +#: guix-git/doc/guix.texi:34861 msgid "Mount @var{root} as the root file system. @var{root} can be a device name like @code{/dev/sda1}, a file system label, or a file system UUID. When unspecified, the device name from the root file system of the operating system declaration is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34423 +#: guix-git/doc/guix.texi:34862 #, no-wrap msgid "fsck.mode=@var{mode}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34429 +#: guix-git/doc/guix.texi:34868 msgid "Whether to check the @var{root} file system for errors before mounting it. @var{mode} is one of @code{skip} (never check), @code{force} (always check), or @code{auto} to respect the root file-system object's 'check?' setting (@pxref{File Systems}) and run a full scan only if the file system was not cleanly shut down." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34432 +#: guix-git/doc/guix.texi:34871 msgid "@code{auto} is the default if this option is not present or if @var{mode} is not one of the above." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34433 +#: guix-git/doc/guix.texi:34872 #, no-wrap msgid "fsck.repair=@var{level}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34438 +#: guix-git/doc/guix.texi:34877 msgid "The level of repairs to perform automatically if errors are found in the @var{root} file system. @var{level} is one of @code{no} (do not write to @var{root} at all if possible), @code{yes} (repair as much as possible), or @code{preen} to repair problems considered safe to repair automatically." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34441 +#: guix-git/doc/guix.texi:34880 msgid "@code{preen} is the default if this option is not present or if @var{level} is not one of the above." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34445 +#: guix-git/doc/guix.texi:34884 msgid "Have @file{/run/booted-system} and @file{/run/current-system} point to @var{system}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34446 +#: guix-git/doc/guix.texi:34885 #, no-wrap msgid "modprobe.blacklist=@var{modules}@dots{}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34447 +#: guix-git/doc/guix.texi:34886 #, no-wrap msgid "module, black-listing" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34448 +#: guix-git/doc/guix.texi:34887 #, no-wrap msgid "black list, of kernel modules" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34453 +#: guix-git/doc/guix.texi:34892 msgid "Instruct the initial RAM disk as well as the @command{modprobe} command (from the kmod package) to refuse to load @var{modules}. @var{modules} must be a comma-separated list of module names---e.g., @code{usbkbd,9pnet}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34454 +#: guix-git/doc/guix.texi:34893 #, no-wrap msgid "--repl" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34460 +#: guix-git/doc/guix.texi:34899 msgid "Start a read-eval-print loop (REPL) from the initial RAM disk before it tries to load kernel modules and to mount the root file system. Our marketing team calls it @dfn{boot-to-Guile}. The Schemer in you will love it. @xref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}, for more information on Guile's REPL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34466 +#: guix-git/doc/guix.texi:34905 msgid "Now that you know all the features that initial RAM disks produced by @code{base-initrd} and @code{raw-initrd} provide, here is how to use it and customize it further." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34469 +#: guix-git/doc/guix.texi:34908 #, no-wrap msgid "{Scheme Procedure} raw-initrd @var{file-systems} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34483 +#: guix-git/doc/guix.texi:34922 msgid "[#:linux-modules '()] [#:mapped-devices '()] @ [#:keyboard-layout #f] @ [#:helper-packages '()] [#:qemu-networking? #f] [#:volatile-root? #f] Return a derivation that builds a raw initrd. @var{file-systems} is a list of file systems to be mounted by the initrd, possibly in addition to the root file system specified on the kernel command line via @option{--root}. @var{linux-modules} is a list of kernel modules to be loaded at boot time. @var{mapped-devices} is a list of device mappings to realize before @var{file-systems} are mounted (@pxref{Mapped Devices}). @var{helper-packages} is a list of packages to be copied in the initrd. It may include @code{e2fsck/static} or other packages needed by the initrd to check the root file system." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34489 guix-git/doc/guix.texi:34513 +#: guix-git/doc/guix.texi:34928 guix-git/doc/guix.texi:34952 msgid "When true, @var{keyboard-layout} is a @code{} record denoting the desired console keyboard layout. This is done before @var{mapped-devices} are set up and before @var{file-systems} are mounted such that, should the user need to enter a passphrase or use the REPL, this happens using the intended keyboard layout." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34493 +#: guix-git/doc/guix.texi:34932 msgid "When @var{qemu-networking?} is true, set up networking with the standard QEMU parameters. When @var{virtio?} is true, load additional modules so that the initrd can be used as a QEMU guest with para-virtualized I/O drivers." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34496 +#: guix-git/doc/guix.texi:34935 msgid "When @var{volatile-root?} is true, the root file system is writable but any changes to it are lost." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34498 +#: guix-git/doc/guix.texi:34937 #, no-wrap msgid "{Scheme Procedure} base-initrd @var{file-systems} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34507 +#: guix-git/doc/guix.texi:34946 msgid "[#:mapped-devices '()] [#:keyboard-layout #f] @ [#:qemu-networking? #f] [#:volatile-root? #f] @ [#:linux-modules '()] Return as a file-like object a generic initrd, with kernel modules taken from @var{linux}. @var{file-systems} is a list of file-systems to be mounted by the initrd, possibly in addition to the root file system specified on the kernel command line via @option{--root}. @var{mapped-devices} is a list of device mappings to realize before @var{file-systems} are mounted." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34515 +#: guix-git/doc/guix.texi:34954 msgid "@var{qemu-networking?} and @var{volatile-root?} behaves as in @code{raw-initrd}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34520 +#: guix-git/doc/guix.texi:34959 msgid "The initrd is automatically populated with all the kernel modules necessary for @var{file-systems} and for the given options. Additional kernel modules can be listed in @var{linux-modules}. They will be added to the initrd, and loaded at boot time in the order in which they appear." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34527 +#: guix-git/doc/guix.texi:34966 msgid "Needless to say, the initrds we produce and use embed a statically-linked Guile, and the initialization program is a Guile program. That gives a lot of flexibility. The @code{expression->initrd} procedure builds such an initrd, given the program to run in that initrd." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34528 +#: guix-git/doc/guix.texi:34967 #, no-wrap msgid "{Scheme Procedure} expression->initrd @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34534 +#: guix-git/doc/guix.texi:34973 msgid "[#:guile %guile-static-stripped] [#:name \"guile-initrd\"] Return as a file-like object a Linux initrd (a gzipped cpio archive) containing @var{guile} and that evaluates @var{exp}, a G-expression, upon booting. All the derivations referenced by @var{exp} are automatically copied to the initrd." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34540 +#: guix-git/doc/guix.texi:34979 #, no-wrap msgid "boot loader" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34547 +#: guix-git/doc/guix.texi:34986 msgid "The operating system supports multiple bootloaders. The bootloader is configured using @code{bootloader-configuration} declaration. All the fields of this structure are bootloader agnostic except for one field, @code{bootloader} that indicates the bootloader to be configured and installed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34552 +#: guix-git/doc/guix.texi:34991 msgid "Some of the bootloaders do not honor every field of @code{bootloader-configuration}. For instance, the extlinux bootloader does not support themes and thus ignores the @code{theme} field." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34553 +#: guix-git/doc/guix.texi:34992 #, no-wrap msgid "{Data Type} bootloader-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34555 +#: guix-git/doc/guix.texi:34994 msgid "The type of a bootloader configuration declaration." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34559 +#: guix-git/doc/guix.texi:34998 #, no-wrap msgid "EFI, bootloader" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34560 +#: guix-git/doc/guix.texi:34999 #, no-wrap msgid "UEFI, bootloader" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34561 +#: guix-git/doc/guix.texi:35000 #, no-wrap msgid "BIOS, bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34566 +#: guix-git/doc/guix.texi:35005 msgid "The bootloader to use, as a @code{bootloader} object. For now @code{grub-bootloader}, @code{grub-efi-bootloader}, @code{grub-efi-netboot-bootloader}, @code{extlinux-bootloader} and @code{u-boot-bootloader} are supported." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34567 +#: guix-git/doc/guix.texi:35006 #, no-wrap msgid "ARM, bootloaders" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34568 +#: guix-git/doc/guix.texi:35007 #, no-wrap msgid "AArch64, bootloaders" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34573 +#: guix-git/doc/guix.texi:35012 msgid "Available bootloaders are described in @code{(gnu bootloader @dots{})} modules. In particular, @code{(gnu bootloader u-boot)} contains definitions of bootloaders for a wide range of ARM and AArch64 systems, using the @uref{https://www.denx.de/wiki/U-Boot/, U-Boot bootloader}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34579 +#: guix-git/doc/guix.texi:35018 msgid "@code{grub-efi-bootloader} allows to boot on modern systems using the @dfn{Unified Extensible Firmware Interface} (UEFI). This is what you should use if the installation image contains a @file{/sys/firmware/efi} directory when you boot it on your system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34583 +#: guix-git/doc/guix.texi:35022 msgid "@code{grub-bootloader} allows you to boot in particular Intel-based machines in ``legacy'' BIOS mode." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:34584 +#: guix-git/doc/guix.texi:35023 #, no-wrap msgid "grub-efi-netboot-bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34588 +#: guix-git/doc/guix.texi:35027 msgid "@code{grub-efi-netboot-bootloader} allows you to boot your system over network through TFTP@. In combination with an NFS root file system this allows you to build a diskless Guix system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34594 +#: guix-git/doc/guix.texi:35033 msgid "The installation of the @code{grub-efi-netboot-bootloader} generates the content of the TFTP root directory at @code{targets} (@pxref{Bootloader Configuration, @code{targets}}), to be served by a TFTP server. You may want to mount your TFTP server directories onto the @code{targets} to move the required files to the TFTP server automatically." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34603 +#: guix-git/doc/guix.texi:35042 msgid "If you plan to use an NFS root file system as well (actually if you mount the store from an NFS share), then the TFTP server needs to serve the file @file{/boot/grub/grub.cfg} and other files from the store (like GRUBs background image, the kernel (@pxref{operating-system Reference, @code{kernel}}) and the initrd (@pxref{operating-system Reference, @code{initrd}})), too. All these files from the store will be accessed by GRUB through TFTP with their normal store path, for example as @file{tftp://tftp-server/gnu/store/…-initrd/initrd.cpio.gz}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34612 +#: guix-git/doc/guix.texi:35051 msgid "Two symlinks are created to make this possible. For each target in the @code{targets} field, the first symlink is @samp{target}@file{/efi/Guix/boot/grub/grub.cfg} pointing to @file{../../../boot/grub/grub.cfg}, where @samp{target} may be @file{/boot}. In this case the link is not leaving the served TFTP root directory, but otherwise it does. The second link is @samp{target}@file{/gnu/store} and points to @file{../gnu/store}. This link is leaving the served TFTP root directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34618 +#: guix-git/doc/guix.texi:35057 msgid "The assumption behind all this is that you have an NFS server exporting the root file system for your Guix system, and additionally a TFTP server exporting your @code{targets} directories—usually a single @file{/boot}—from that same root file system for your Guix system. In this constellation the symlinks will work." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34623 +#: guix-git/doc/guix.texi:35062 msgid "For other constellations you will have to program your own bootloader installer, which then takes care to make necessary files from the store accessible through TFTP, for example by copying them into the TFTP root directory to your @code{targets}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34628 +#: guix-git/doc/guix.texi:35067 msgid "It is important to note that symlinks pointing outside the TFTP root directory may need to be allowed in the configuration of your TFTP server. Further the store link exposes the whole store through TFTP@. Both points need to be considered carefully for security aspects." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34633 +#: guix-git/doc/guix.texi:35072 msgid "Beside the @code{grub-efi-netboot-bootloader}, the already mentioned TFTP and NFS servers, you also need a properly configured DHCP server to make the booting over netboot possible. For all this we can currently only recommend you to look for instructions about @acronym{PXE, Preboot eXecution Environment}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34637 +#: guix-git/doc/guix.texi:35076 msgid "This is a list of strings denoting the targets onto which to install the bootloader." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34647 +#: guix-git/doc/guix.texi:35086 msgid "The interpretation of targets depends on the bootloader in question. For @code{grub-bootloader}, for example, they should be device names understood by the bootloader @command{installer} command, such as @code{/dev/sda} or @code{(hd0)} (@pxref{Invoking grub-install,,, grub, GNU GRUB Manual}). For @code{grub-efi-bootloader}, they should be mount points of the EFI file system, usually @file{/boot/efi}. For @code{grub-efi-netboot-bootloader}, @code{targets} should be the mount points corresponding to TFTP root directories served by your TFTP server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34648 +#: guix-git/doc/guix.texi:35087 #, no-wrap msgid "@code{menu-entries} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34652 +#: guix-git/doc/guix.texi:35091 msgid "A possibly empty list of @code{menu-entry} objects (see below), denoting entries to appear in the bootloader menu, in addition to the current system entry and the entry pointing to previous system generations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34653 +#: guix-git/doc/guix.texi:35092 #, no-wrap msgid "@code{default-entry} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34656 +#: guix-git/doc/guix.texi:35095 msgid "The index of the default boot menu entry. Index 0 is for the entry of the current system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34657 +#: guix-git/doc/guix.texi:35096 #, no-wrap msgid "@code{timeout} (default: @code{5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34660 +#: guix-git/doc/guix.texi:35099 msgid "The number of seconds to wait for keyboard input before booting. Set to 0 to boot immediately, and to -1 to wait indefinitely." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34661 +#: guix-git/doc/guix.texi:35100 #, no-wrap msgid "keyboard layout, for the bootloader" msgstr "disposição do teclado, para o gerenciador de boot" #. type: table -#: guix-git/doc/guix.texi:34665 +#: guix-git/doc/guix.texi:35104 msgid "If this is @code{#f}, the bootloader's menu (if any) uses the default keyboard layout, usually US@tie{}English (``qwerty'')." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34668 +#: guix-git/doc/guix.texi:35107 msgid "Otherwise, this must be a @code{keyboard-layout} object (@pxref{Keyboard Layout})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:34672 +#: guix-git/doc/guix.texi:35111 msgid "This option is currently ignored by bootloaders other than @code{grub} and @code{grub-efi}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34674 +#: guix-git/doc/guix.texi:35113 #, no-wrap msgid "@code{theme} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34678 +#: guix-git/doc/guix.texi:35117 msgid "The bootloader theme object describing the theme to use. If no theme is provided, some bootloaders might use a default theme, that's true for GRUB." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34679 +#: guix-git/doc/guix.texi:35118 #, no-wrap msgid "@code{terminal-outputs} (default: @code{'(gfxterm)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34686 +#: guix-git/doc/guix.texi:35125 msgid "The output terminals used for the bootloader boot menu, as a list of symbols. GRUB accepts the values: @code{console}, @code{serial}, @code{serial_@{0-3@}}, @code{gfxterm}, @code{vga_text}, @code{mda_text}, @code{morse}, and @code{pkmodem}. This field corresponds to the GRUB variable @code{GRUB_TERMINAL_OUTPUT} (@pxref{Simple configuration,,, grub,GNU GRUB manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34687 +#: guix-git/doc/guix.texi:35126 #, no-wrap msgid "@code{terminal-inputs} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34695 +#: guix-git/doc/guix.texi:35134 msgid "The input terminals used for the bootloader boot menu, as a list of symbols. For GRUB, the default is the native platform terminal as determined at run-time. GRUB accepts the values: @code{console}, @code{serial}, @code{serial_@{0-3@}}, @code{at_keyboard}, and @code{usb_keyboard}. This field corresponds to the GRUB variable @code{GRUB_TERMINAL_INPUT} (@pxref{Simple configuration,,, grub,GNU GRUB manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34696 +#: guix-git/doc/guix.texi:35135 #, no-wrap msgid "@code{serial-unit} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34700 +#: guix-git/doc/guix.texi:35139 msgid "The serial unit used by the bootloader, as an integer from 0 to 3. For GRUB, it is chosen at run-time; currently GRUB chooses 0, which corresponds to COM1 (@pxref{Serial terminal,,, grub,GNU GRUB manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34701 +#: guix-git/doc/guix.texi:35140 #, no-wrap msgid "@code{serial-speed} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34705 +#: guix-git/doc/guix.texi:35144 msgid "The speed of the serial interface, as an integer. For GRUB, the default value is chosen at run-time; currently GRUB chooses 9600@tie{}bps (@pxref{Serial terminal,,, grub,GNU GRUB manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34709 +#: guix-git/doc/guix.texi:35148 #, no-wrap msgid "dual boot" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34710 +#: guix-git/doc/guix.texi:35149 #, no-wrap msgid "boot menu" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34716 +#: guix-git/doc/guix.texi:35155 msgid "Should you want to list additional boot menu entries @i{via} the @code{menu-entries} field above, you will need to create them with the @code{menu-entry} form. For example, imagine you want to be able to boot another distro (hard to imagine!), you can define a menu entry along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34723 +#: guix-git/doc/guix.texi:35162 #, no-wrap msgid "" "(menu-entry\n" @@ -62161,132 +63009,132 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34726 +#: guix-git/doc/guix.texi:35165 msgid "Details below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34727 +#: guix-git/doc/guix.texi:35166 #, no-wrap msgid "{Data Type} menu-entry" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34729 +#: guix-git/doc/guix.texi:35168 msgid "The type of an entry in the bootloader menu." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34734 +#: guix-git/doc/guix.texi:35173 msgid "The label to show in the menu---e.g., @code{\"GNU\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34735 +#: guix-git/doc/guix.texi:35174 #, no-wrap msgid "@code{linux} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34737 +#: guix-git/doc/guix.texi:35176 msgid "The Linux kernel image to boot, for example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34740 +#: guix-git/doc/guix.texi:35179 #, no-wrap msgid "(file-append linux-libre \"/bzImage\")\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34745 +#: guix-git/doc/guix.texi:35184 msgid "For GRUB, it is also possible to specify a device explicitly in the file path using GRUB's device naming convention (@pxref{Naming convention,,, grub, GNU GRUB manual}), for example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34748 +#: guix-git/doc/guix.texi:35187 #, no-wrap msgid "\"(hd0,msdos1)/boot/vmlinuz\"\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34752 +#: guix-git/doc/guix.texi:35191 msgid "If the device is specified explicitly as above, then the @code{device} field is ignored entirely." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34753 +#: guix-git/doc/guix.texi:35192 #, no-wrap msgid "@code{linux-arguments} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34756 +#: guix-git/doc/guix.texi:35195 msgid "The list of extra Linux kernel command-line arguments---e.g., @code{(\"console=ttyS0\")}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34757 +#: guix-git/doc/guix.texi:35196 #, no-wrap msgid "@code{initrd} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34760 +#: guix-git/doc/guix.texi:35199 msgid "A G-Expression or string denoting the file name of the initial RAM disk to use (@pxref{G-Expressions})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34764 +#: guix-git/doc/guix.texi:35203 msgid "The device where the kernel and initrd are to be found---i.e., for GRUB, @dfn{root} for this menu entry (@pxref{root,,, grub, GNU GRUB manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34770 +#: guix-git/doc/guix.texi:35209 msgid "This may be a file system label (a string), a file system UUID (a bytevector, @pxref{File Systems}), or @code{#f}, in which case the bootloader will search the device containing the file specified by the @code{linux} field (@pxref{search,,, grub, GNU GRUB manual}). It must @emph{not} be an OS device name such as @file{/dev/sda1}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34771 +#: guix-git/doc/guix.texi:35210 #, no-wrap msgid "@code{multiboot-kernel} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34775 +#: guix-git/doc/guix.texi:35214 msgid "The kernel to boot in Multiboot-mode (@pxref{multiboot,,, grub, GNU GRUB manual}). When this field is set, a Multiboot menu-entry is generated. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34778 +#: guix-git/doc/guix.texi:35217 #, no-wrap msgid "(file-append mach \"/boot/gnumach\")\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34780 +#: guix-git/doc/guix.texi:35219 #, no-wrap msgid "@code{multiboot-arguments} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34782 +#: guix-git/doc/guix.texi:35221 msgid "The list of extra command-line arguments for the multiboot-kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34783 +#: guix-git/doc/guix.texi:35222 #, no-wrap msgid "@code{multiboot-modules} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34785 +#: guix-git/doc/guix.texi:35224 msgid "The list of commands for loading Multiboot modules. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34791 +#: guix-git/doc/guix.texi:35230 #, no-wrap msgid "" "(list (list (file-append hurd \"/hurd/ext2fs.static\") \"ext2fs\"\n" @@ -62296,73 +63144,73 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34796 guix-git/doc/guix.texi:34855 +#: guix-git/doc/guix.texi:35235 guix-git/doc/guix.texi:35294 #, no-wrap msgid "HDPI" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34797 guix-git/doc/guix.texi:34856 +#: guix-git/doc/guix.texi:35236 guix-git/doc/guix.texi:35295 #, no-wrap msgid "HiDPI" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34798 guix-git/doc/guix.texi:34857 +#: guix-git/doc/guix.texi:35237 guix-git/doc/guix.texi:35296 #, no-wrap msgid "resolution" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34802 +#: guix-git/doc/guix.texi:35241 msgid "For now only GRUB has theme support. GRUB themes are created using the @code{grub-theme} form, which is not fully documented yet." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34803 +#: guix-git/doc/guix.texi:35242 #, no-wrap msgid "{Data Type} grub-theme" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34805 +#: guix-git/doc/guix.texi:35244 msgid "Data type representing the configuration of the GRUB theme." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34807 +#: guix-git/doc/guix.texi:35246 #, no-wrap msgid "@code{gfxmode} (default: @code{'(\"auto\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34810 +#: guix-git/doc/guix.texi:35249 msgid "The GRUB @code{gfxmode} to set (a list of screen resolution strings, @pxref{gfxmode,,, grub, GNU GRUB manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34813 +#: guix-git/doc/guix.texi:35252 #, no-wrap msgid "{Scheme Procedure} grub-theme" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34817 +#: guix-git/doc/guix.texi:35256 msgid "Return the default GRUB theme used by the operating system if no @code{theme} field is specified in @code{bootloader-configuration} record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34820 +#: guix-git/doc/guix.texi:35259 msgid "It comes with a fancy background image displaying the GNU and Guix logos." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34824 +#: guix-git/doc/guix.texi:35263 msgid "For example, to override the default resolution, you may use something like" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34832 +#: guix-git/doc/guix.texi:35271 #, no-wrap msgid "" "(bootloader\n" @@ -62374,40 +63222,40 @@ msgid "" msgstr "" #. type: section -#: guix-git/doc/guix.texi:34835 +#: guix-git/doc/guix.texi:35274 #, no-wrap msgid "Invoking @code{guix system}" msgstr "Invocando @code{guix system}" #. type: Plain text -#: guix-git/doc/guix.texi:34840 +#: guix-git/doc/guix.texi:35279 msgid "Once you have written an operating system declaration as seen in the previous section, it can be @dfn{instantiated} using the @command{guix system} command. The synopsis is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34843 +#: guix-git/doc/guix.texi:35282 #, no-wrap msgid "guix system @var{options}@dots{} @var{action} @var{file}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34849 +#: guix-git/doc/guix.texi:35288 msgid "@var{file} must be the name of a file containing an @code{operating-system} declaration. @var{action} specifies how the operating system is instantiated. Currently the following values are supported:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34851 guix-git/doc/guix.texi:37496 +#: guix-git/doc/guix.texi:35290 guix-git/doc/guix.texi:37992 #, no-wrap msgid "search" msgstr "pesquisa" #. type: table -#: guix-git/doc/guix.texi:34854 +#: guix-git/doc/guix.texi:35293 msgid "Display available service type definitions that match the given regular expressions, sorted by relevance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34876 +#: guix-git/doc/guix.texi:35315 #, no-wrap msgid "" "$ guix system search console\n" @@ -62431,7 +63279,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34882 +#: guix-git/doc/guix.texi:35321 #, no-wrap msgid "" "name: mingetty\n" @@ -62443,7 +63291,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34889 +#: guix-git/doc/guix.texi:35328 #, no-wrap msgid "" "name: login\n" @@ -62456,72 +63304,72 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34891 guix-git/doc/guix.texi:37549 +#: guix-git/doc/guix.texi:35330 guix-git/doc/guix.texi:38028 #, no-wrap msgid "@dots{}\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34896 guix-git/doc/guix.texi:37554 +#: guix-git/doc/guix.texi:35335 msgid "As for @command{guix package --search}, the result is written in @code{recutils} format, which makes it easy to filter the output (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34897 guix-git/doc/guix.texi:37555 +#: guix-git/doc/guix.texi:35336 guix-git/doc/guix.texi:38034 #, no-wrap msgid "reconfigure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34902 +#: guix-git/doc/guix.texi:35341 msgid "Build the operating system described in @var{file}, activate it, and switch to it@footnote{This action (and the related actions @code{switch-generation} and @code{roll-back}) are usable only on systems already running Guix System.}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:34910 +#: guix-git/doc/guix.texi:35349 msgid "It is highly recommended to run @command{guix pull} once before you run @command{guix system reconfigure} for the first time (@pxref{Invoking guix pull}). Failing to do that you would see an older version of Guix once @command{reconfigure} has completed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34918 +#: guix-git/doc/guix.texi:35357 msgid "This effects all the configuration specified in @var{file}: user accounts, system services, global package list, setuid programs, etc. The command starts system services specified in @var{file} that are not currently running; if a service is currently running this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop X} or @code{herd restart X})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34924 +#: guix-git/doc/guix.texi:35363 msgid "This command creates a new generation whose number is one greater than the current generation (as reported by @command{guix system list-generations}). If that generation already exists, it will be overwritten. This behavior mirrors that of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34929 +#: guix-git/doc/guix.texi:35368 msgid "It also adds a bootloader menu entry for the new OS configuration, ---unless @option{--no-bootloader} is passed. For GRUB, it moves entries for older configurations to a submenu, allowing you to choose an older system generation at boot time should you need it." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34930 guix-git/doc/guix.texi:35261 -#: guix-git/doc/guix.texi:36223 +#: guix-git/doc/guix.texi:35369 guix-git/doc/guix.texi:35705 +#: guix-git/doc/guix.texi:36713 #, no-wrap msgid "provenance tracking, of the operating system" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34935 +#: guix-git/doc/guix.texi:35374 msgid "Upon completion, the new system is deployed under @file{/run/current-system}. This directory contains @dfn{provenance meta-data}: the list of channels in use (@pxref{Channels}) and @var{file} itself, when available. You can view it by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34938 +#: guix-git/doc/guix.texi:35377 #, no-wrap msgid "guix system describe\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34944 +#: guix-git/doc/guix.texi:35383 msgid "This information is useful should you later want to inspect how this particular generation was built. In fact, assuming @var{file} is self-contained, you can later rebuild generation @var{n} of your operating system with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34950 +#: guix-git/doc/guix.texi:35389 #, no-wrap msgid "" "guix time-machine \\\n" @@ -62531,233 +63379,238 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34956 +#: guix-git/doc/guix.texi:35395 msgid "You can think of it as some sort of built-in version control! Your system is not just a binary artifact: @emph{it carries its own source}. @xref{Service Reference, @code{provenance-service-type}}, for more information on provenance tracking." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34962 +#: guix-git/doc/guix.texi:35401 msgid "By default, @command{reconfigure} @emph{prevents you from downgrading your system}, which could (re)introduce security vulnerabilities and also cause problems with ``stateful'' services such as database management systems. You can override that behavior by passing @option{--allow-downgrades}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34963 guix-git/doc/guix.texi:37614 +#: guix-git/doc/guix.texi:35402 guix-git/doc/guix.texi:38093 #, no-wrap msgid "switch-generation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34972 +#: guix-git/doc/guix.texi:35411 msgid "Switch to an existing system generation. This action atomically switches the system profile to the specified system generation. It also rearranges the system's existing bootloader menu entries. It makes the menu entry for the specified system generation the default, and it moves the entries for the other generations to a submenu, if supported by the bootloader being used. The next time the system boots, it will use the specified system generation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34976 +#: guix-git/doc/guix.texi:35415 msgid "The bootloader itself is not being reinstalled when using this command. Thus, the installed bootloader is used with an updated configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34980 +#: guix-git/doc/guix.texi:35419 msgid "The target generation can be specified explicitly by its generation number. For example, the following invocation would switch to system generation 7:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34983 +#: guix-git/doc/guix.texi:35422 #, no-wrap msgid "guix system switch-generation 7\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34991 guix-git/doc/guix.texi:37633 +#: guix-git/doc/guix.texi:35430 guix-git/doc/guix.texi:38112 msgid "The target generation can also be specified relative to the current generation with the form @code{+N} or @code{-N}, where @code{+3} means ``3 generations ahead of the current generation,'' and @code{-1} means ``1 generation prior to the current generation.'' When specifying a negative value such as @code{-1}, you must precede it with @code{--} to prevent it from being parsed as an option. For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34994 +#: guix-git/doc/guix.texi:35433 #, no-wrap msgid "guix system switch-generation -- -1\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35002 +#: guix-git/doc/guix.texi:35441 msgid "Currently, the effect of invoking this action is @emph{only} to switch the system profile to an existing generation and rearrange the bootloader menu entries. To actually start using the target system generation, you must reboot after running this action. In the future, it will be updated to do the same things as @command{reconfigure}, like activating and deactivating services." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35004 guix-git/doc/guix.texi:37639 +#: guix-git/doc/guix.texi:35443 guix-git/doc/guix.texi:38118 msgid "This action will fail if the specified generation does not exist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35005 guix-git/doc/guix.texi:37640 +#: guix-git/doc/guix.texi:35444 guix-git/doc/guix.texi:38119 #, no-wrap msgid "roll-back" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35011 +#: guix-git/doc/guix.texi:35450 msgid "Switch to the preceding system generation. The next time the system boots, it will use the preceding system generation. This is the inverse of @command{reconfigure}, and it is exactly the same as invoking @command{switch-generation} with an argument of @code{-1}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35015 +#: guix-git/doc/guix.texi:35454 msgid "Currently, as with @command{switch-generation}, you must reboot after running this action to actually start using the preceding system generation." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35016 guix-git/doc/guix.texi:37646 +#: guix-git/doc/guix.texi:35455 guix-git/doc/guix.texi:38125 #, no-wrap msgid "delete-generations" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35017 +#: guix-git/doc/guix.texi:35456 #, no-wrap msgid "deleting system generations" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35018 guix-git/doc/guix.texi:37648 +#: guix-git/doc/guix.texi:35457 guix-git/doc/guix.texi:38127 #, no-wrap msgid "saving space" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35022 +#: guix-git/doc/guix.texi:35461 msgid "Delete system generations, making them candidates for garbage collection (@pxref{Invoking guix gc}, for information on how to run the ``garbage collector'')." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35026 +#: guix-git/doc/guix.texi:35465 msgid "This works in the same way as @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). With no arguments, all system generations but the current one are deleted:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35029 +#: guix-git/doc/guix.texi:35468 #, no-wrap msgid "guix system delete-generations\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35033 +#: guix-git/doc/guix.texi:35472 msgid "You can also select the generations you want to delete. The example below deletes all the system generations that are more than two months old:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35036 +#: guix-git/doc/guix.texi:35475 #, no-wrap msgid "guix system delete-generations 2m\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35041 +#: guix-git/doc/guix.texi:35480 msgid "Running this command automatically reinstalls the bootloader with an updated list of menu entries---e.g., the ``old generations'' sub-menu in GRUB no longer lists the generations that have been deleted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35046 +#: guix-git/doc/guix.texi:35485 msgid "Build the derivation of the operating system, which includes all the configuration files and programs needed to boot and run the system. This action does not actually install anything." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35047 +#: guix-git/doc/guix.texi:35486 #, no-wrap msgid "init" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35051 +#: guix-git/doc/guix.texi:35490 msgid "Populate the given directory with all the files necessary to run the operating system specified in @var{file}. This is useful for first-time installations of Guix System. For instance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35054 +#: guix-git/doc/guix.texi:35493 #, no-wrap msgid "guix system init my-os-config.scm /mnt\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35061 +#: guix-git/doc/guix.texi:35500 msgid "copies to @file{/mnt} all the store items required by the configuration specified in @file{my-os-config.scm}. This includes configuration files, packages, and so on. It also creates other essential files needed for the system to operate correctly---e.g., the @file{/etc}, @file{/var}, and @file{/run} directories, and the @file{/bin/sh} file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35065 +#: guix-git/doc/guix.texi:35504 msgid "This command also installs bootloader on the targets specified in @file{my-os-config}, unless the @option{--no-bootloader} option was passed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35066 +#: guix-git/doc/guix.texi:35505 #, no-wrap msgid "vm" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35067 guix-git/doc/guix.texi:35634 +#: guix-git/doc/guix.texi:35506 guix-git/doc/guix.texi:36124 #, no-wrap msgid "virtual machine" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35068 +#: guix-git/doc/guix.texi:35507 #, no-wrap msgid "VM" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35072 +#: guix-git/doc/guix.texi:35511 msgid "guix system vm" msgstr "guix system vm" #. type: table -#: guix-git/doc/guix.texi:35072 +#: guix-git/doc/guix.texi:35511 msgid "Build a virtual machine (VM) that contains the operating system declared in @var{file}, and return a script to run that VM." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35080 +#: guix-git/doc/guix.texi:35519 msgid "The @code{vm} action and others below can use KVM support in the Linux-libre kernel. Specifically, if the machine has hardware virtualization support, the corresponding KVM kernel module should be loaded, and the @file{/dev/kvm} device node must exist and be readable and writable by the user and by the build users of the daemon (@pxref{Build Environment Setup})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35085 +#: guix-git/doc/guix.texi:35524 msgid "Arguments given to the script are passed to QEMU as in the example below, which enables networking and requests 1@tie{}GiB of RAM for the emulated machine:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35088 +#: guix-git/doc/guix.texi:35527 #, no-wrap msgid "$ /gnu/store/@dots{}-run-vm.sh -m 1024 -smp 2 -nic user,model=virtio-net-pci\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35091 +#: guix-git/doc/guix.texi:35530 msgid "It's possible to combine the two steps into one:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35094 +#: guix-git/doc/guix.texi:35533 #, no-wrap msgid "$ $(guix system vm my-config.scm) -m 1024 -smp 2 -nic user,model=virtio-net-pci\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35097 +#: guix-git/doc/guix.texi:35536 msgid "The VM shares its store with the host system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35102 +#: guix-git/doc/guix.texi:35541 +msgid "By default, the root file system of the VM is mounted volatile; the @option{--persistent} option can be provided to make it persistent instead. In that case, the VM disk-image file will be copied from the store to the @env{TMPDIR} directory to make it writable." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:35546 msgid "Additional file systems can be shared between the host and the VM using the @option{--share} and @option{--expose} command-line options: the former specifies a directory to be shared with write access, while the latter provides read-only access to the shared directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35106 +#: guix-git/doc/guix.texi:35550 msgid "The example below creates a VM in which the user's home directory is accessible read-only, and where the @file{/exchange} directory is a read-write mapping of @file{$HOME/tmp} on the host:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35110 +#: guix-git/doc/guix.texi:35554 #, no-wrap msgid "" "guix system vm my-config.scm \\\n" @@ -62765,56 +63618,56 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35115 +#: guix-git/doc/guix.texi:35559 msgid "On GNU/Linux, the default is to boot directly to the kernel; this has the advantage of requiring only a very tiny root disk image since the store of the host can then be mounted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35120 +#: guix-git/doc/guix.texi:35564 msgid "The @option{--full-boot} option forces a complete boot sequence, starting with the bootloader. This requires more disk space since a root image containing at least the kernel, initrd, and bootloader data files must be created." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35123 +#: guix-git/doc/guix.texi:35567 msgid "The @option{--image-size} option can be used to specify the size of the image." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35130 +#: guix-git/doc/guix.texi:35574 msgid "The @option{--no-graphic} option will instruct @command{guix system} to spawn a headless VM that will use the invoking tty for IO. Among other things, this enables copy-pasting, and scrollback. Use the @kbd{ctrl-a} prefix to issue QEMU commands; e.g. @kbd{ctrl-a h} prints a help, @kbd{ctrl-a x} quits the VM, and @kbd{ctrl-a c} switches between the QEMU monitor and the VM." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35131 +#: guix-git/doc/guix.texi:35575 #, no-wrap msgid "System images, creation in various formats" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35132 +#: guix-git/doc/guix.texi:35576 #, no-wrap msgid "Creating system images in various formats" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35133 +#: guix-git/doc/guix.texi:35577 #, no-wrap msgid "image" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35134 +#: guix-git/doc/guix.texi:35578 #, no-wrap msgid "image, creating disk images" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35146 +#: guix-git/doc/guix.texi:35590 msgid "The @code{image} command can produce various image types. The image type can be selected using the @option{--image-type} option. It defaults to @code{efi-raw}. When its value is @code{iso9660}, the @option{--label} option can be used to specify a volume ID with @code{image}. By default, the root file system of a disk image is mounted non-volatile; the @option{--volatile} option can be provided to make it volatile instead. When using @code{image}, the bootloader installed on the generated image is taken from the provided @code{operating-system} definition. The following example demonstrates how to generate an image that uses the @code{grub-efi-bootloader} bootloader and boot it with QEMU:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35154 +#: guix-git/doc/guix.texi:35598 #, no-wrap msgid "" "image=$(guix system image --image-type=qcow2 \\\n" @@ -62826,45 +63679,45 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35160 +#: guix-git/doc/guix.texi:35604 msgid "When using the @code{efi-raw} image type, a raw disk image is produced; it can be copied as is to a USB stick, for instance. Assuming @code{/dev/sdc} is the device corresponding to a USB stick, one can copy the image to it using the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35163 +#: guix-git/doc/guix.texi:35607 #, no-wrap msgid "# dd if=$(guix system image my-os.scm) of=/dev/sdc status=progress\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35167 +#: guix-git/doc/guix.texi:35611 msgid "The @code{--list-image-types} command lists all the available image types." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35168 +#: guix-git/doc/guix.texi:35612 #, no-wrap msgid "creating virtual machine images" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35177 +#: guix-git/doc/guix.texi:35621 msgid "When using the @code{qcow2} image type, the returned image is in qcow2 format, which the QEMU emulator can efficiently use. @xref{Running Guix in a VM}, for more information on how to run the image in a virtual machine. The @code{grub-bootloader} bootloader is always used independently of what is declared in the @code{operating-system} file passed as argument. This is to make it easier to work with QEMU, which uses the SeaBIOS BIOS by default, expecting a bootloader to be installed in the Master Boot Record (MBR)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35178 +#: guix-git/doc/guix.texi:35622 #, no-wrap msgid "docker-image, creating docker images" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35184 +#: guix-git/doc/guix.texi:35628 msgid "When using the @code{docker} image type, a Docker image is produced. Guix builds the image from scratch, not from a pre-existing Docker base image. As a result, it contains @emph{exactly} what you define in the operating system configuration file. You can then load the image and launch a Docker container using commands like the following:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35189 +#: guix-git/doc/guix.texi:35633 #, no-wrap msgid "" "image_id=\"$(docker load < guix-system-docker-image.tar.gz)\"\n" @@ -62873,43 +63726,43 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35196 +#: guix-git/doc/guix.texi:35640 msgid "This command starts a new Docker container from the specified image. It will boot the Guix system in the usual manner, which means it will start any services you have defined in the operating system configuration. You can get an interactive shell running in the container using @command{docker exec}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35199 +#: guix-git/doc/guix.texi:35643 #, no-wrap msgid "docker exec -ti $container_id /run/current-system/profile/bin/bash --login\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35206 +#: guix-git/doc/guix.texi:35650 msgid "Depending on what you run in the Docker container, it may be necessary to give the container additional permissions. For example, if you intend to build software using Guix inside of the Docker container, you may need to pass the @option{--privileged} option to @code{docker create}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35210 +#: guix-git/doc/guix.texi:35654 msgid "Last, the @option{--network} option applies to @command{guix system docker-image}: it produces an image where network is supposedly shared with the host, and thus without services like nscd or NetworkManager." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35218 +#: guix-git/doc/guix.texi:35662 msgid "Return a script to run the operating system declared in @var{file} within a container. Containers are a set of lightweight isolation mechanisms provided by the kernel Linux-libre. Containers are substantially less resource-demanding than full virtual machines since the kernel, shared objects, and other resources can be shared with the host system; this also means they provide thinner isolation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35222 +#: guix-git/doc/guix.texi:35666 msgid "Currently, the script must be run as root in order to support more than a single user and group. The container shares its store with the host system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35226 +#: guix-git/doc/guix.texi:35670 msgid "As with the @code{vm} action (@pxref{guix system vm}), additional file systems to be shared between the host and container can be specified using the @option{--share} and @option{--expose} options:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35230 +#: guix-git/doc/guix.texi:35674 #, no-wrap msgid "" "guix system container my-config.scm \\\n" @@ -62917,319 +63770,329 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35234 +#: guix-git/doc/guix.texi:35678 msgid "This option requires Linux-libre 3.19 or newer." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35241 guix-git/doc/guix.texi:37710 +#: guix-git/doc/guix.texi:35685 guix-git/doc/guix.texi:38189 msgid "@var{options} can contain any of the common build options (@pxref{Common Build Options}). In addition, @var{options} can contain one of the following:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35250 +#: guix-git/doc/guix.texi:35694 msgid "Consider the operating-system @var{expr} evaluates to. This is an alternative to specifying a file which evaluates to an operating system. This is used to generate the Guix system installer @pxref{Building the Installation Image})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35255 +#: guix-git/doc/guix.texi:35699 msgid "Attempt to build for @var{system} instead of the host system type. This works as per @command{guix build} (@pxref{Invoking guix build})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35260 +#: guix-git/doc/guix.texi:35704 msgid "Return the derivation file name of the given operating system without building anything." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35269 +#: guix-git/doc/guix.texi:35713 msgid "As discussed above, @command{guix system init} and @command{guix system reconfigure} always save provenance information @i{via} a dedicated service (@pxref{Service Reference, @code{provenance-service-type}}). However, other commands don't do that by default. If you wish to, say, create a virtual machine image that contains provenance information, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35272 +#: guix-git/doc/guix.texi:35716 #, no-wrap msgid "guix system image -t qcow2 --save-provenance config.scm\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35279 +#: guix-git/doc/guix.texi:35723 msgid "That way, the resulting image will effectively ``embed its own source'' in the form of meta-data in @file{/run/current-system}. With that information, one can rebuild the image to make sure it really contains what it pretends to contain; or they could use that to derive a variant of the image." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35280 +#: guix-git/doc/guix.texi:35724 #, no-wrap msgid "--image-type=@var{type}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35283 +#: guix-git/doc/guix.texi:35727 msgid "For the @code{image} action, create an image with given @var{type}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35286 +#: guix-git/doc/guix.texi:35730 msgid "When this option is omitted, @command{guix system} uses the @code{efi-raw} image type." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35287 +#: guix-git/doc/guix.texi:35731 #, no-wrap msgid "ISO-9660 format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35288 +#: guix-git/doc/guix.texi:35732 #, no-wrap msgid "CD image format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35289 +#: guix-git/doc/guix.texi:35733 #, no-wrap msgid "DVD image format" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35292 +#: guix-git/doc/guix.texi:35736 msgid "@option{--image-type=iso9660} produces an ISO-9660 image, suitable for burning on CDs and DVDs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35293 +#: guix-git/doc/guix.texi:35737 #, no-wrap msgid "--image-size=@var{size}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35298 +#: guix-git/doc/guix.texi:35742 msgid "For the @code{image} action, create an image of the given @var{size}. @var{size} may be a number of bytes, or it may include a unit as a suffix (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35302 +#: guix-git/doc/guix.texi:35746 msgid "When this option is omitted, @command{guix system} computes an estimate of the image size as a function of the size of the system declared in @var{file}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35307 +#: guix-git/doc/guix.texi:35751 msgid "For the @code{container} action, allow containers to access the host network, that is, do not create a network namespace." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35313 +#: guix-git/doc/guix.texi:35757 #, no-wrap msgid "--skip-checks" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35315 +#: guix-git/doc/guix.texi:35759 msgid "Skip pre-installation safety checks." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35322 +#: guix-git/doc/guix.texi:35766 msgid "By default, @command{guix system init} and @command{guix system reconfigure} perform safety checks: they make sure the file systems that appear in the @code{operating-system} declaration actually exist (@pxref{File Systems}), and that any Linux kernel modules that may be needed at boot time are listed in @code{initrd-modules} (@pxref{Initial RAM Disk}). Passing this option skips these tests altogether." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35325 +#: guix-git/doc/guix.texi:35769 msgid "Instruct @command{guix system reconfigure} to allow system downgrades." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35333 +#: guix-git/doc/guix.texi:35777 msgid "By default, @command{reconfigure} prevents you from downgrading your system. It achieves that by comparing the provenance info of your system (shown by @command{guix system describe}) with that of your @command{guix} command (shown by @command{guix describe}). If the commits for @command{guix} are not descendants of those used for your system, @command{guix system reconfigure} errors out. Passing @option{--allow-downgrades} allows you to bypass these checks." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35339 +#: guix-git/doc/guix.texi:35783 #, no-wrap msgid "on-error" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35340 +#: guix-git/doc/guix.texi:35784 #, no-wrap msgid "on-error strategy" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35341 +#: guix-git/doc/guix.texi:35785 #, no-wrap msgid "error strategy" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35342 +#: guix-git/doc/guix.texi:35786 #, no-wrap msgid "--on-error=@var{strategy}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35345 +#: guix-git/doc/guix.texi:35789 msgid "Apply @var{strategy} when an error occurs when reading @var{file}. @var{strategy} may be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35347 +#: guix-git/doc/guix.texi:35791 #, no-wrap msgid "nothing-special" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35349 +#: guix-git/doc/guix.texi:35793 msgid "Report the error concisely and exit. This is the default strategy." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35350 +#: guix-git/doc/guix.texi:35794 #, no-wrap msgid "backtrace" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35352 +#: guix-git/doc/guix.texi:35796 msgid "Likewise, but also display a backtrace." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35353 +#: guix-git/doc/guix.texi:35797 #, no-wrap msgid "debug" msgstr "depuração" #. type: table -#: guix-git/doc/guix.texi:35359 +#: guix-git/doc/guix.texi:35803 msgid "Report the error and enter Guile's debugger. From there, you can run commands such as @code{,bt} to get a backtrace, @code{,locals} to display local variable values, and more generally inspect the state of the program. @xref{Debug Commands,,, guile, GNU Guile Reference Manual}, for a list of available debugging commands." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35366 +#: guix-git/doc/guix.texi:35810 msgid "Once you have built, configured, re-configured, and re-re-configured your Guix installation, you may find it useful to list the operating system generations available on disk---and that you can choose from the bootloader boot menu:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35369 guix-git/doc/guix.texi:37673 +#: guix-git/doc/guix.texi:35813 guix-git/doc/guix.texi:38152 #, no-wrap msgid "describe" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35372 -msgid "Describe the current system generation: its file name, the kernel and bootloader used, etc., as well as provenance information when available." +#: guix-git/doc/guix.texi:35816 +msgid "Describe the running system generation: its file name, the kernel and bootloader used, etc., as well as provenance information when available." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:35823 +msgid "The @emph{running} system generation---referred to by @file{/run/current-system}---is not necessarily the @emph{current} system generation---referred to by @file{/var/guix/profiles/system}: it differs when, for instance, you chose from the bootloader menu to boot an older generation." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:35827 +msgid "It can also differ from the @emph{booted} system generation---referred to by @file{/run/booted-system}---for instance because you reconfigured the system in the meantime." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35373 guix-git/doc/guix.texi:37677 +#: guix-git/doc/guix.texi:35829 guix-git/doc/guix.texi:38156 #, no-wrap msgid "list-generations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35378 +#: guix-git/doc/guix.texi:35834 msgid "List a summary of each generation of the operating system available on disk, in a human-readable way. This is similar to the @option{--list-generations} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35383 guix-git/doc/guix.texi:37687 +#: guix-git/doc/guix.texi:35839 guix-git/doc/guix.texi:38166 msgid "Optionally, one can specify a pattern, with the same syntax that is used in @command{guix package --list-generations}, to restrict the list of generations displayed. For instance, the following command displays generations that are up to 10 days old:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35386 +#: guix-git/doc/guix.texi:35842 #, no-wrap msgid "$ guix system list-generations 10d\n" msgstr "$ guix system list-generations 10d\n" #. type: Plain text -#: guix-git/doc/guix.texi:35393 +#: guix-git/doc/guix.texi:35849 msgid "The @command{guix system} command has even more to offer! The following sub-commands allow you to visualize how your system services relate to each other:" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35395 +#: guix-git/doc/guix.texi:35851 msgid "system-extension-graph" msgstr "system-extension-graph" #. type: item -#: guix-git/doc/guix.texi:35397 +#: guix-git/doc/guix.texi:35853 #, no-wrap msgid "extension-graph" msgstr "extension-graph" #. type: table -#: guix-git/doc/guix.texi:35404 +#: guix-git/doc/guix.texi:35860 msgid "Emit to standard output the @dfn{service extension graph} of the operating system defined in @var{file} (@pxref{Service Composition}, for more information on service extensions). By default the output is in Dot/Graphviz format, but you can choose a different format with @option{--graph-backend}, as with @command{guix graph} (@pxref{Invoking guix graph, @option{--backend}}):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35406 +#: guix-git/doc/guix.texi:35862 msgid "The command:" msgstr "O comando:" #. type: example -#: guix-git/doc/guix.texi:35409 +#: guix-git/doc/guix.texi:35865 #, no-wrap msgid "$ guix system extension-graph @var{file} | xdot -\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35412 +#: guix-git/doc/guix.texi:35868 msgid "shows the extension relations among services." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35414 +#: guix-git/doc/guix.texi:35870 msgid "system-shepherd-graph" msgstr "system-shepherd-graph" #. type: item -#: guix-git/doc/guix.texi:35414 +#: guix-git/doc/guix.texi:35870 #, no-wrap msgid "shepherd-graph" msgstr "shepherd-graph" #. type: table -#: guix-git/doc/guix.texi:35419 +#: guix-git/doc/guix.texi:35875 msgid "Emit to standard output the @dfn{dependency graph} of shepherd services of the operating system defined in @var{file}. @xref{Shepherd Services}, for more information and for an example graph." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35422 +#: guix-git/doc/guix.texi:35878 msgid "Again, the default output format is Dot/Graphviz, but you can pass @option{--graph-backend} to select a different one." msgstr "" #. type: section -#: guix-git/doc/guix.texi:35426 +#: guix-git/doc/guix.texi:35882 #, no-wrap msgid "Invoking @code{guix deploy}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35434 +#: guix-git/doc/guix.texi:35890 msgid "We've already seen @code{operating-system} declarations used to manage a machine's configuration locally. Suppose you need to configure multiple machines, though---perhaps you're managing a service on the web that's comprised of several servers. @command{guix deploy} enables you to use those same @code{operating-system} declarations to manage multiple remote hosts at once as a logical ``deployment''." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35439 guix-git/doc/guix.texi:36900 +#: guix-git/doc/guix.texi:35895 guix-git/doc/guix.texi:37390 msgid "The functionality described in this section is still under development and is subject to change. Get in touch with us on @email{guix-devel@@gnu.org}!" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35443 +#: guix-git/doc/guix.texi:35899 #, no-wrap msgid "guix deploy @var{file}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35447 +#: guix-git/doc/guix.texi:35903 msgid "Such an invocation will deploy the machines that the code within @var{file} evaluates to. As an example, @var{file} might contain a definition like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35454 +#: guix-git/doc/guix.texi:35910 #, no-wrap msgid "" ";; This is a Guix deployment of a \"bare bones\" setup, with\n" @@ -63241,7 +64104,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35457 +#: guix-git/doc/guix.texi:35913 #, no-wrap msgid "" "(use-service-modules networking ssh)\n" @@ -63250,7 +64113,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35478 +#: guix-git/doc/guix.texi:35934 #, no-wrap msgid "" "(define %system\n" @@ -63277,7 +64140,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35488 +#: guix-git/doc/guix.texi:35944 #, no-wrap msgid "" "(list (machine\n" @@ -63292,33 +64155,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35501 +#: guix-git/doc/guix.texi:35957 msgid "The file should evaluate to a list of @var{machine} objects. This example, upon being deployed, will create a new generation on the remote system realizing the @code{operating-system} declaration @code{%system}. @code{environment} and @code{configuration} specify how the machine should be provisioned---that is, how the computing resources should be created and managed. The above example does not create any resources, as a @code{'managed-host} is a machine that is already running the Guix system and available over the network. This is a particularly simple case; a more complex deployment may involve, for example, starting virtual machines through a Virtual Private Server (VPS) provider. In such a case, a different @var{environment} type would be used." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35506 +#: guix-git/doc/guix.texi:35962 msgid "Do note that you first need to generate a key pair on the coordinator machine to allow the daemon to export signed archives of files from the store (@pxref{Invoking guix archive}), though this step is automatic on Guix System:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35514 +#: guix-git/doc/guix.texi:35970 msgid "Each target machine must authorize the key of the master machine so that it accepts store items it receives from the coordinator:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35517 +#: guix-git/doc/guix.texi:35973 #, no-wrap msgid "# guix archive --authorize < coordinator-public-key.txt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35528 +#: guix-git/doc/guix.texi:35984 msgid "@code{user}, in this example, specifies the name of the user account to log in as to perform the deployment. Its default value is @code{root}, but root login over SSH may be forbidden in some cases. To work around this, @command{guix deploy} can log in as an unprivileged user and employ @code{sudo} to escalate privileges. This will only work if @code{sudo} is currently installed on the remote and can be invoked non-interactively as @code{user}. That is, the line in @code{sudoers} granting @code{user} the ability to use @code{sudo} must contain the @code{NOPASSWD} tag. This can be accomplished with the following operating system configuration snippet:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35532 +#: guix-git/doc/guix.texi:35988 #, no-wrap msgid "" "(use-modules ...\n" @@ -63327,7 +64190,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35534 +#: guix-git/doc/guix.texi:35990 #, no-wrap msgid "" "(define %user \"username\")\n" @@ -63335,7 +64198,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35542 +#: guix-git/doc/guix.texi:35998 #, no-wrap msgid "" "(operating-system\n" @@ -63349,235 +64212,284 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35547 +#: guix-git/doc/guix.texi:36003 msgid "For more information regarding the format of the @file{sudoers} file, consult @command{man sudoers}." msgstr "" +#. type: Plain text +#: guix-git/doc/guix.texi:36008 +msgid "Once you've deployed a system on a set of machines, you may find it useful to run a command on all of them. The @option{--execute} or @option{-x} option lets you do that; the example below runs @command{uname -a} on all the machines listed in the deployment file:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:36011 +#, no-wrap +msgid "guix deploy @var{file} -x -- uname -a\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36015 +msgid "One thing you may often need to do after deployment is restart specific services on all the machines, which you can do like so:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:36018 +#, no-wrap +msgid "guix deploy @var{file} -x -- herd restart @var{service}\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36022 +msgid "The @command{guix deploy -x} command returns zero if and only if the command succeeded on all the machines." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36027 +msgid "Below are the data types you need to know about when writing a deployment file." +msgstr "" + #. type: deftp -#: guix-git/doc/guix.texi:35548 +#: guix-git/doc/guix.texi:36028 #, no-wrap msgid "{Data Type} machine" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35551 +#: guix-git/doc/guix.texi:36031 msgid "This is the data type representing a single machine in a heterogeneous Guix deployment." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35555 +#: guix-git/doc/guix.texi:36035 msgid "The object of the operating system configuration to deploy." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35556 +#: guix-git/doc/guix.texi:36036 #, no-wrap msgid "environment" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35558 +#: guix-git/doc/guix.texi:36038 msgid "An @code{environment-type} describing how the machine should be provisioned." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35559 +#: guix-git/doc/guix.texi:36039 #, no-wrap msgid "@code{configuration} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35564 +#: guix-git/doc/guix.texi:36044 msgid "An object describing the configuration for the machine's @code{environment}. If the @code{environment} has a default configuration, @code{#f} may be used. If @code{#f} is used for an environment with no default configuration, however, an error will be thrown." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35567 +#: guix-git/doc/guix.texi:36047 #, no-wrap msgid "{Data Type} machine-ssh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35570 +#: guix-git/doc/guix.texi:36050 msgid "This is the data type representing the SSH client parameters for a machine with an @code{environment} of @code{managed-host-environment-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35573 +#: guix-git/doc/guix.texi:36053 #, no-wrap msgid "@code{build-locally?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35575 +#: guix-git/doc/guix.texi:36055 msgid "If false, system derivations will be built on the machine being deployed to." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35575 +#: guix-git/doc/guix.texi:36055 #, no-wrap msgid "system" msgstr "system" #. type: table -#: guix-git/doc/guix.texi:35578 +#: guix-git/doc/guix.texi:36058 msgid "The system type describing the architecture of the machine being deployed to---e.g., @code{\"x86_64-linux\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35578 +#: guix-git/doc/guix.texi:36058 #, no-wrap msgid "@code{authorize?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35581 +#: guix-git/doc/guix.texi:36061 msgid "If true, the coordinator's signing key will be added to the remote's ACL keyring." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35583 +#: guix-git/doc/guix.texi:36063 #, no-wrap msgid "@code{identity} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35586 +#: guix-git/doc/guix.texi:36066 msgid "If specified, the path to the SSH private key to use to authenticate with the remote host." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35587 +#: guix-git/doc/guix.texi:36067 #, no-wrap msgid "@code{host-key} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35589 +#: guix-git/doc/guix.texi:36069 msgid "This should be the SSH host key of the machine, which looks like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35592 +#: guix-git/doc/guix.texi:36072 #, no-wrap msgid "ssh-ed25519 AAAAC3Nz@dots{} root@@example.org\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35597 +#: guix-git/doc/guix.texi:36077 msgid "When @code{host-key} is @code{#f}, the server is authenticated against the @file{~/.ssh/known_hosts} file, just like the OpenSSH @command{ssh} client does." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35598 +#: guix-git/doc/guix.texi:36078 #, no-wrap msgid "@code{allow-downgrades?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35600 +#: guix-git/doc/guix.texi:36080 msgid "Whether to allow potential downgrades." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35608 +#: guix-git/doc/guix.texi:36088 msgid "Like @command{guix system reconfigure}, @command{guix deploy} compares the channel commits currently deployed on the remote host (as returned by @command{guix system describe}) to those currently in use (as returned by @command{guix describe}) to determine whether commits currently in use are descendants of those deployed. When this is not the case and @code{allow-downgrades?} is false, it raises an error. This ensures you do not accidentally downgrade remote machines." msgstr "" +#. type: item +#: guix-git/doc/guix.texi:36089 +#, fuzzy, no-wrap +#| msgid "@code{check?} (default: @code{#t})" +msgid "@code{safety-checks?} (default: @code{#t})" +msgstr "@code{check?} (padrão: @code{#t})" + +#. type: table +#: guix-git/doc/guix.texi:36095 +msgid "Whether to perform ``safety checks'' before deployment. This includes verifying that devices and file systems referred to in the operating system configuration actually exist on the target machine, and making sure that Linux modules required to access storage devices at boot time are listed in the @code{initrd-modules} field of the operating system." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:36098 +msgid "These safety checks ensure that you do not inadvertently deploy a system that would fail to boot. Be careful before turning them off!" +msgstr "" + #. type: deftp -#: guix-git/doc/guix.texi:35611 +#: guix-git/doc/guix.texi:36101 #, no-wrap msgid "{Data Type} digital-ocean-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35614 +#: guix-git/doc/guix.texi:36104 msgid "This is the data type describing the Droplet that should be created for a machine with an @code{environment} of @code{digital-ocean-environment-type}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35616 +#: guix-git/doc/guix.texi:36106 #, no-wrap msgid "ssh-key" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35619 +#: guix-git/doc/guix.texi:36109 msgid "The path to the SSH private key to use to authenticate with the remote host. In the future, this field may not exist." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35619 +#: guix-git/doc/guix.texi:36109 #, no-wrap msgid "tags" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35622 +#: guix-git/doc/guix.texi:36112 msgid "A list of string ``tags'' that uniquely identify the machine. Must be given such that no two machines in the deployment have the same set of tags." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35622 +#: guix-git/doc/guix.texi:36112 #, no-wrap msgid "region" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35624 +#: guix-git/doc/guix.texi:36114 msgid "A Digital Ocean region slug, such as @code{\"nyc3\"}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35626 +#: guix-git/doc/guix.texi:36116 msgid "A Digital Ocean size slug, such as @code{\"s-1vcpu-1gb\"}" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35626 +#: guix-git/doc/guix.texi:36116 #, no-wrap msgid "enable-ipv6?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35628 +#: guix-git/doc/guix.texi:36118 msgid "Whether or not the droplet should be created with IPv6 networking." msgstr "" #. type: section -#: guix-git/doc/guix.texi:35632 +#: guix-git/doc/guix.texi:36122 #, no-wrap msgid "Running Guix in a Virtual Machine" msgstr "Usando o Guix em uma Máquina Virtual" #. type: Plain text -#: guix-git/doc/guix.texi:35640 +#: guix-git/doc/guix.texi:36130 msgid "To run Guix in a virtual machine (VM), one can use the pre-built Guix VM image distributed at @url{@value{BASE-URL}/guix-system-vm-image-@value{VERSION}.x86_64-linux.qcow2}. This image is a compressed image in QCOW format. You can pass it to an emulator such as @uref{https://qemu.org/, QEMU} (see below for details)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35647 +#: guix-git/doc/guix.texi:36137 msgid "This image boots the Xfce graphical environment and it contains some commonly used tools. You can install more software in the image by running @command{guix package} in a terminal (@pxref{Invoking guix package}). You can also reconfigure the system based on its initial configuration file available as @file{/run/current-system/configuration.scm} (@pxref{Using the Configuration System})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35650 +#: guix-git/doc/guix.texi:36140 msgid "Instead of using this pre-built image, one can also build their own image using @command{guix system image} (@pxref{Invoking guix system})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35651 +#: guix-git/doc/guix.texi:36141 #, no-wrap msgid "QEMU" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35658 +#: guix-git/doc/guix.texi:36148 msgid "If you built your own image, you must copy it out of the store (@pxref{The Store}) and give yourself permission to write to the copy before you can use it. When invoking QEMU, you must choose a system emulator that is suitable for your hardware platform. Here is a minimal QEMU invocation that will boot the result of @command{guix system image -t qcow2} on x86_64 hardware:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35665 +#: guix-git/doc/guix.texi:36155 #, no-wrap msgid "" "$ qemu-system-x86_64 \\\n" @@ -63588,137 +64500,137 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35668 +#: guix-git/doc/guix.texi:36158 msgid "Here is what each of these options means:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35670 +#: guix-git/doc/guix.texi:36160 #, no-wrap msgid "qemu-system-x86_64" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35673 +#: guix-git/doc/guix.texi:36163 msgid "This specifies the hardware platform to emulate. This should match the host." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35674 +#: guix-git/doc/guix.texi:36164 #, no-wrap msgid "-nic user,model=virtio-net-pci" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35682 +#: guix-git/doc/guix.texi:36172 msgid "Enable the unprivileged user-mode network stack. The guest OS can access the host but not vice versa. This is the simplest way to get the guest OS online. @code{model} specifies which network device to emulate: @code{virtio-net-pci} is a special device made for virtualized operating systems and recommended for most uses. Assuming your hardware platform is x86_64, you can get a list of available NIC models by running @command{qemu-system-x86_64 -nic model=help}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35683 +#: guix-git/doc/guix.texi:36173 #, no-wrap msgid "-enable-kvm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35687 +#: guix-git/doc/guix.texi:36177 msgid "If your system has hardware virtualization extensions, enabling the virtual machine support (KVM) of the Linux kernel will make things run faster." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35689 +#: guix-git/doc/guix.texi:36179 #, no-wrap msgid "-m 1024" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35692 +#: guix-git/doc/guix.texi:36182 msgid "RAM available to the guest OS, in mebibytes. Defaults to 128@tie{}MiB, which may be insufficient for some operations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35693 +#: guix-git/doc/guix.texi:36183 #, no-wrap msgid "-device virtio-blk,drive=myhd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35698 +#: guix-git/doc/guix.texi:36188 msgid "Create a @code{virtio-blk} drive called ``myhd''. @code{virtio-blk} is a ``paravirtualization'' mechanism for block devices that allows QEMU to achieve better performance than if it were emulating a complete disk drive. See the QEMU and KVM documentation for more info." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35699 +#: guix-git/doc/guix.texi:36189 #, no-wrap msgid "-drive if=none,file=/tmp/qemu-image,id=myhd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35702 +#: guix-git/doc/guix.texi:36192 msgid "Use our QCOW image, the @file{/tmp/qemu-image} file, as the backing store of the ``myhd'' drive." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35712 +#: guix-git/doc/guix.texi:36202 msgid "The default @command{run-vm.sh} script that is returned by an invocation of @command{guix system vm} does not add a @command{-nic user} flag by default. To get network access from within the vm add the @code{(dhcp-client-service)} to your system definition and start the VM using @command{$(guix system vm config.scm) -nic user}. An important caveat of using @command{-nic user} for networking is that @command{ping} will not work, because it uses the ICMP protocol. You'll have to use a different command to check for network connectivity, for example @command{guix download}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:35713 +#: guix-git/doc/guix.texi:36203 #, no-wrap msgid "Connecting Through SSH" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35721 +#: guix-git/doc/guix.texi:36211 msgid "To enable SSH inside a VM you need to add an SSH server like @code{openssh-service-type} to your VM (@pxref{Networking Services, @code{openssh-service-type}}). In addition you need to forward the SSH port, 22 by default, to the host. You can do this with" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35724 +#: guix-git/doc/guix.texi:36214 #, no-wrap msgid "$(guix system vm config.scm) -nic user,model=virtio-net-pci,hostfwd=tcp::10022-:22\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35727 +#: guix-git/doc/guix.texi:36217 msgid "To connect to the VM you can run" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35730 +#: guix-git/doc/guix.texi:36220 #, no-wrap msgid "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 10022 localhost\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35737 +#: guix-git/doc/guix.texi:36227 msgid "The @command{-p} tells @command{ssh} the port you want to connect to. @command{-o UserKnownHostsFile=/dev/null} prevents @command{ssh} from complaining every time you modify your @command{config.scm} file and the @command{-o StrictHostKeyChecking=no} prevents you from having to allow a connection to an unknown host every time you connect." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35743 +#: guix-git/doc/guix.texi:36233 msgid "If you find the above @samp{hostfwd} example not to be working (e.g., your SSH client hangs attempting to connect to the mapped port of your VM), make sure that your Guix System VM has networking support, such as by using the @code{dhcp-client-service-type} service type." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:35745 +#: guix-git/doc/guix.texi:36235 #, no-wrap msgid "Using @command{virt-viewer} with Spice" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35751 +#: guix-git/doc/guix.texi:36241 msgid "As an alternative to the default @command{qemu} graphical client you can use the @command{remote-viewer} from the @command{virt-viewer} package. To connect pass the @command{-spice port=5930,disable-ticketing} flag to @command{qemu}. See previous section for further information on how to do this." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35754 +#: guix-git/doc/guix.texi:36244 msgid "Spice also allows you to do some nice stuff like share your clipboard with your VM@. To enable that you'll also have to pass the following flags to @command{qemu}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35760 +#: guix-git/doc/guix.texi:36250 #, no-wrap msgid "" "-device virtio-serial-pci,id=virtio-serial0,max_ports=16,bus=pci.0,addr=0x5\n" @@ -63728,81 +64640,81 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35764 +#: guix-git/doc/guix.texi:36254 msgid "You'll also need to add the @code{(spice-vdagent-service)} to your system definition (@pxref{Miscellaneous Services, Spice service})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35771 +#: guix-git/doc/guix.texi:36261 msgid "The previous sections show the available services and how one can combine them in an @code{operating-system} declaration. But how do we define them in the first place? And what is a service anyway?" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35784 +#: guix-git/doc/guix.texi:36274 #, no-wrap msgid "daemons" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35797 +#: guix-git/doc/guix.texi:36287 msgid "Here we define a @dfn{service} as, broadly, something that extends the functionality of the operating system. Often a service is a process---a @dfn{daemon}---started when the system boots: a secure shell server, a Web server, the Guix build daemon, etc. Sometimes a service is a daemon whose execution can be triggered by another daemon---e.g., an FTP server started by @command{inetd} or a D-Bus service activated by @command{dbus-daemon}. Occasionally, a service does not map to a daemon. For instance, the ``account'' service collects user accounts and makes sure they exist when the system runs; the ``udev'' service collects device management rules and makes them available to the eudev daemon; the @file{/etc} service populates the @file{/etc} directory of the system." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35798 +#: guix-git/doc/guix.texi:36288 #, no-wrap msgid "service extensions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35810 +#: guix-git/doc/guix.texi:36300 msgid "Guix system services are connected by @dfn{extensions}. For instance, the secure shell service @emph{extends} the Shepherd---the initialization system, running as PID@tie{}1---by giving it the command lines to start and stop the secure shell daemon (@pxref{Networking Services, @code{openssh-service-type}}); the UPower service extends the D-Bus service by passing it its @file{.service} specification, and extends the udev service by passing it device management rules (@pxref{Desktop Services, @code{upower-service}}); the Guix daemon service extends the Shepherd by passing it the command lines to start and stop the daemon, and extends the account service by passing it a list of required build user accounts (@pxref{Base Services})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35814 +#: guix-git/doc/guix.texi:36304 msgid "All in all, services and their ``extends'' relations form a directed acyclic graph (DAG). If we represent services as boxes and extensions as arrows, a typical system might provide something like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35816 +#: guix-git/doc/guix.texi:36306 msgid "@image{images/service-graph,,5in,Typical service extension graph.}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35817 +#: guix-git/doc/guix.texi:36307 #, no-wrap msgid "system service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35825 +#: guix-git/doc/guix.texi:36315 msgid "At the bottom, we see the @dfn{system service}, which produces the directory containing everything to run and boot the system, as returned by the @command{guix system build} command. @xref{Service Reference}, to learn about the other service types shown here. @xref{system-extension-graph, the @command{guix system extension-graph} command}, for information on how to generate this representation for a particular operating system definition." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35826 +#: guix-git/doc/guix.texi:36316 #, no-wrap msgid "service types" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35832 +#: guix-git/doc/guix.texi:36322 msgid "Technically, developers can define @dfn{service types} to express these relations. There can be any number of services of a given type on the system---for instance, a system running two instances of the GNU secure shell server (lsh) has two instances of @code{lsh-service-type}, with different parameters." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35835 +#: guix-git/doc/guix.texi:36325 msgid "The following section describes the programming interface for service types and services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35842 +#: guix-git/doc/guix.texi:36332 msgid "A @dfn{service type} is a node in the DAG described above. Let us start with a simple example, the service type for the Guix build daemon (@pxref{Invoking guix-daemon}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35852 +#: guix-git/doc/guix.texi:36342 #, no-wrap msgid "" "(define guix-service-type\n" @@ -63816,75 +64728,75 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35856 +#: guix-git/doc/guix.texi:36346 msgid "It defines three things:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35860 +#: guix-git/doc/guix.texi:36350 msgid "A name, whose sole purpose is to make inspection and debugging easier." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35865 +#: guix-git/doc/guix.texi:36355 msgid "A list of @dfn{service extensions}, where each extension designates the target service type and a procedure that, given the parameters of the service, returns a list of objects to extend the service of that type." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35868 +#: guix-git/doc/guix.texi:36358 msgid "Every service type has at least one service extension. The only exception is the @dfn{boot service type}, which is the ultimate service." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35871 +#: guix-git/doc/guix.texi:36361 msgid "Optionally, a default value for instances of this type." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35874 +#: guix-git/doc/guix.texi:36364 msgid "In this example, @code{guix-service-type} extends three services:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35876 +#: guix-git/doc/guix.texi:36366 #, no-wrap msgid "shepherd-root-service-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35881 +#: guix-git/doc/guix.texi:36371 msgid "The @code{guix-shepherd-service} procedure defines how the Shepherd service is extended. Namely, it returns a @code{} object that defines how @command{guix-daemon} is started and stopped (@pxref{Shepherd Services})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35882 +#: guix-git/doc/guix.texi:36372 #, no-wrap msgid "account-service-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35887 +#: guix-git/doc/guix.texi:36377 msgid "This extension for this service is computed by @code{guix-accounts}, which returns a list of @code{user-group} and @code{user-account} objects representing the build user accounts (@pxref{Invoking guix-daemon})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35888 +#: guix-git/doc/guix.texi:36378 #, no-wrap msgid "activation-service-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35892 +#: guix-git/doc/guix.texi:36382 msgid "Here @code{guix-activation} is a procedure that returns a gexp, which is a code snippet to run at ``activation time''---e.g., when the service is booted." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35895 +#: guix-git/doc/guix.texi:36385 msgid "A service of this type is instantiated like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35901 +#: guix-git/doc/guix.texi:36391 #, no-wrap msgid "" "(service guix-service-type\n" @@ -63894,28 +64806,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35909 +#: guix-git/doc/guix.texi:36399 msgid "The second argument to the @code{service} form is a value representing the parameters of this specific service instance. @xref{guix-configuration-type, @code{guix-configuration}}, for information about the @code{guix-configuration} data type. When the value is omitted, the default value specified by @code{guix-service-type} is used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35912 +#: guix-git/doc/guix.texi:36402 #, no-wrap msgid "(service guix-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35916 +#: guix-git/doc/guix.texi:36406 msgid "@code{guix-service-type} is quite simple because it extends other services but is not extensible itself." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35920 +#: guix-git/doc/guix.texi:36410 msgid "The service type for an @emph{extensible} service looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35927 +#: guix-git/doc/guix.texi:36417 #, no-wrap msgid "" "(define udev-service-type\n" @@ -63927,7 +64839,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35935 +#: guix-git/doc/guix.texi:36425 #, no-wrap msgid "" " (compose concatenate) ;concatenate the list of rules\n" @@ -63940,96 +64852,96 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35941 +#: guix-git/doc/guix.texi:36431 msgid "This is the service type for the @uref{https://wiki.gentoo.org/wiki/Project:Eudev, eudev device management daemon}. Compared to the previous example, in addition to an extension of @code{shepherd-root-service-type}, we see two new fields:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35943 +#: guix-git/doc/guix.texi:36433 #, no-wrap msgid "compose" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35946 +#: guix-git/doc/guix.texi:36436 msgid "This is the procedure to @dfn{compose} the list of extensions to services of this type." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35949 +#: guix-git/doc/guix.texi:36439 msgid "Services can extend the udev service by passing it lists of rules; we compose those extensions simply by concatenating them." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35950 +#: guix-git/doc/guix.texi:36440 #, no-wrap msgid "extend" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35953 +#: guix-git/doc/guix.texi:36443 msgid "This procedure defines how the value of the service is @dfn{extended} with the composition of the extensions." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35958 +#: guix-git/doc/guix.texi:36448 msgid "Udev extensions are composed into a list of rules, but the udev service value is itself a @code{} record. So here, we extend that record by appending the list of rules it contains to the list of contributed rules." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35964 +#: guix-git/doc/guix.texi:36454 msgid "This is a string giving an overview of the service type. The string can contain Texinfo markup (@pxref{Overview,,, texinfo, GNU Texinfo}). The @command{guix system search} command searches these strings and displays them (@pxref{Invoking guix system})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35969 +#: guix-git/doc/guix.texi:36459 msgid "There can be only one instance of an extensible service type such as @code{udev-service-type}. If there were more, the @code{service-extension} specifications would be ambiguous." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35972 +#: guix-git/doc/guix.texi:36462 msgid "Still here? The next section provides a reference of the programming interface for services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35980 +#: guix-git/doc/guix.texi:36470 msgid "We have seen an overview of service types (@pxref{Service Types and Services}). This section provides a reference on how to manipulate services and service types. This interface is provided by the @code{(gnu services)} module." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35981 +#: guix-git/doc/guix.texi:36471 #, no-wrap msgid "{Scheme Procedure} service @var{type} [@var{value}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35985 +#: guix-git/doc/guix.texi:36475 msgid "Return a new service of @var{type}, a @code{} object (see below). @var{value} can be any object; it represents the parameters of this particular service instance." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35989 +#: guix-git/doc/guix.texi:36479 msgid "When @var{value} is omitted, the default value specified by @var{type} is used; if @var{type} does not specify a default value, an error is raised." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35991 +#: guix-git/doc/guix.texi:36481 msgid "For instance, this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35994 +#: guix-git/doc/guix.texi:36484 #, no-wrap msgid "(service openssh-service-type)\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35998 +#: guix-git/doc/guix.texi:36488 msgid "is equivalent to this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36002 +#: guix-git/doc/guix.texi:36492 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -64037,50 +64949,50 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36006 +#: guix-git/doc/guix.texi:36496 msgid "In both cases the result is an instance of @code{openssh-service-type} with the default configuration." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36008 +#: guix-git/doc/guix.texi:36498 #, no-wrap msgid "{Scheme Procedure} service? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36010 +#: guix-git/doc/guix.texi:36500 msgid "Return true if @var{obj} is a service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36012 +#: guix-git/doc/guix.texi:36502 #, no-wrap msgid "{Scheme Procedure} service-kind @var{service}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36014 +#: guix-git/doc/guix.texi:36504 msgid "Return the type of @var{service}---i.e., a @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36016 +#: guix-git/doc/guix.texi:36506 #, no-wrap msgid "{Scheme Procedure} service-value @var{service}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36019 +#: guix-git/doc/guix.texi:36509 msgid "Return the value associated with @var{service}. It represents its parameters." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36022 +#: guix-git/doc/guix.texi:36512 msgid "Here is an example of how a service is created and manipulated:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36031 +#: guix-git/doc/guix.texi:36521 #, no-wrap msgid "" "(define s\n" @@ -64094,7 +65006,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36034 +#: guix-git/doc/guix.texi:36524 #, no-wrap msgid "" "(service? s)\n" @@ -64103,7 +65015,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36037 +#: guix-git/doc/guix.texi:36527 #, no-wrap msgid "" "(eq? (service-kind s) nginx-service-type)\n" @@ -64111,213 +65023,213 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36047 +#: guix-git/doc/guix.texi:36537 msgid "The @code{modify-services} form provides a handy way to change the parameters of some of the services of a list such as @code{%base-services} (@pxref{Base Services, @code{%base-services}}). It evaluates to a list of services. Of course, you could always use standard list combinators such as @code{map} and @code{fold} to do that (@pxref{SRFI-1, List Library,, guile, GNU Guile Reference Manual}); @code{modify-services} simply provides a more concise form for this common pattern." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36048 +#: guix-git/doc/guix.texi:36538 #, no-wrap msgid "{Scheme Syntax} modify-services @var{services} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36050 +#: guix-git/doc/guix.texi:36540 msgid "(@var{type} @var{variable} => @var{body}) @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36053 +#: guix-git/doc/guix.texi:36543 msgid "Modify the services listed in @var{services} according to the given clauses. Each clause has the form:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36056 +#: guix-git/doc/guix.texi:36546 #, no-wrap msgid "(@var{type} @var{variable} => @var{body})\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36063 +#: guix-git/doc/guix.texi:36553 msgid "where @var{type} is a service type---e.g., @code{guix-service-type}---and @var{variable} is an identifier that is bound within the @var{body} to the service parameters---e.g., a @code{guix-configuration} instance---of the original service of that @var{type}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36070 +#: guix-git/doc/guix.texi:36560 msgid "The @var{body} should evaluate to the new service parameters, which will be used to configure the new service. This new service will replace the original in the resulting list. Because a service's service parameters are created using @code{define-record-type*}, you can write a succinct @var{body} that evaluates to the new service parameters by using the @code{inherit} feature that @code{define-record-type*} provides." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36072 +#: guix-git/doc/guix.texi:36562 #, fuzzy #| msgid "Packages are currently available on the following platforms:" msgid "Clauses can also have the following form:" msgstr "Os pacotes estão atualmente disponíveis nas seguintes plataformas:" #. type: lisp -#: guix-git/doc/guix.texi:36075 +#: guix-git/doc/guix.texi:36565 #, fuzzy, no-wrap #| msgid "-t @var{type}" msgid "(delete @var{type})\n" -msgstr "-t @var{tipo}" +msgstr "(delete @var{type})\n" #. type: deffn -#: guix-git/doc/guix.texi:36079 +#: guix-git/doc/guix.texi:36569 msgid "Such a clause removes all services of the given @var{type} from @var{services}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36081 +#: guix-git/doc/guix.texi:36571 msgid "@xref{Using the Configuration System}, for example usage." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36088 +#: guix-git/doc/guix.texi:36578 msgid "Next comes the programming interface for service types. This is something you want to know when writing new service definitions, but not necessarily when simply looking for ways to customize your @code{operating-system} declaration." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36089 +#: guix-git/doc/guix.texi:36579 #, no-wrap msgid "{Data Type} service-type" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36090 +#: guix-git/doc/guix.texi:36580 #, no-wrap msgid "service type" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36093 +#: guix-git/doc/guix.texi:36583 msgid "This is the representation of a @dfn{service type} (@pxref{Service Types and Services})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36097 +#: guix-git/doc/guix.texi:36587 msgid "This is a symbol, used only to simplify inspection and debugging." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:36098 +#: guix-git/doc/guix.texi:36588 #, no-wrap msgid "extensions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36100 +#: guix-git/doc/guix.texi:36590 msgid "A non-empty list of @code{} objects (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36101 +#: guix-git/doc/guix.texi:36591 #, no-wrap msgid "@code{compose} (default: @code{#f})" msgstr "@code{compose} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:36105 +#: guix-git/doc/guix.texi:36595 msgid "If this is @code{#f}, then the service type denotes services that cannot be extended---i.e., services that do not receive ``values'' from other services." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36109 +#: guix-git/doc/guix.texi:36599 msgid "Otherwise, it must be a one-argument procedure. The procedure is called by @code{fold-services} and is passed a list of values collected from extensions. It may return any single value." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36110 +#: guix-git/doc/guix.texi:36600 #, no-wrap msgid "@code{extend} (default: @code{#f})" msgstr "@code{extend} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:36112 +#: guix-git/doc/guix.texi:36602 msgid "If this is @code{#f}, services of this type cannot be extended." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36118 +#: guix-git/doc/guix.texi:36608 msgid "Otherwise, it must be a two-argument procedure: @code{fold-services} calls it, passing it the initial value of the service as the first argument and the result of applying @code{compose} to the extension values as the second argument. It must return a value that is a valid parameter value for the service instance." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36124 +#: guix-git/doc/guix.texi:36614 msgid "This is a string, possibly using Texinfo markup, describing in a couple of sentences what the service is about. This string allows users to find about the service through @command{guix system search} (@pxref{Invoking guix system})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36125 +#: guix-git/doc/guix.texi:36615 #, no-wrap msgid "@code{default-value} (default: @code{&no-default-value})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36128 +#: guix-git/doc/guix.texi:36618 msgid "The default value associated for instances of this service type. This allows users to use the @code{service} form without its second argument:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36131 +#: guix-git/doc/guix.texi:36621 #, no-wrap msgid "(service @var{type})\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36135 +#: guix-git/doc/guix.texi:36625 msgid "The returned service in this case has the default value specified by @var{type}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36138 +#: guix-git/doc/guix.texi:36628 msgid "@xref{Service Types and Services}, for examples." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36140 +#: guix-git/doc/guix.texi:36630 #, no-wrap msgid "{Scheme Procedure} service-extension @var{target-type} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36146 +#: guix-git/doc/guix.texi:36636 msgid "@var{compute} Return a new extension for services of type @var{target-type}. @var{compute} must be a one-argument procedure: @code{fold-services} calls it, passing it the value associated with the service that provides the extension; it must return a valid value for the target service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36148 +#: guix-git/doc/guix.texi:36638 #, no-wrap msgid "{Scheme Procedure} service-extension? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36150 +#: guix-git/doc/guix.texi:36640 msgid "Return true if @var{obj} is a service extension." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36156 +#: guix-git/doc/guix.texi:36646 msgid "Occasionally, you might want to simply extend an existing service. This involves creating a new service type and specifying the extension of interest, which can be verbose; the @code{simple-service} procedure provides a shorthand for this." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36157 +#: guix-git/doc/guix.texi:36647 #, no-wrap msgid "{Scheme Procedure} simple-service @var{name} @var{target} @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36161 +#: guix-git/doc/guix.texi:36651 msgid "Return a service that extends @var{target} with @var{value}. This works by creating a singleton service type @var{name}, of which the returned service is an instance." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36164 +#: guix-git/doc/guix.texi:36654 msgid "For example, this extends mcron (@pxref{Scheduled Job Execution}) with an additional job:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36168 +#: guix-git/doc/guix.texi:36658 #, no-wrap msgid "" "(simple-service 'my-mcron-job mcron-service-type\n" @@ -64325,185 +65237,185 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36178 +#: guix-git/doc/guix.texi:36668 msgid "At the core of the service abstraction lies the @code{fold-services} procedure, which is responsible for ``compiling'' a list of services down to a single directory that contains everything needed to boot and run the system---the directory shown by the @command{guix system build} command (@pxref{Invoking guix system}). In essence, it propagates service extensions down the service graph, updating each node parameters on the way, until it reaches the root node." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36179 +#: guix-git/doc/guix.texi:36669 #, no-wrap msgid "{Scheme Procedure} fold-services @var{services} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36183 +#: guix-git/doc/guix.texi:36673 msgid "[#:target-type @var{system-service-type}] Fold @var{services} by propagating their extensions down to the root of type @var{target-type}; return the root service adjusted accordingly." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36187 +#: guix-git/doc/guix.texi:36677 msgid "Lastly, the @code{(gnu services)} module also defines several essential service types, some of which are listed below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36188 +#: guix-git/doc/guix.texi:36678 #, no-wrap msgid "{Scheme Variable} system-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36191 +#: guix-git/doc/guix.texi:36681 msgid "This is the root of the service graph. It produces the system directory as returned by the @command{guix system build} command." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36193 +#: guix-git/doc/guix.texi:36683 #, no-wrap msgid "{Scheme Variable} boot-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36196 +#: guix-git/doc/guix.texi:36686 msgid "The type of the ``boot service'', which produces the @dfn{boot script}. The boot script is what the initial RAM disk runs when booting." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36198 +#: guix-git/doc/guix.texi:36688 #, no-wrap msgid "{Scheme Variable} etc-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36202 +#: guix-git/doc/guix.texi:36692 msgid "The type of the @file{/etc} service. This service is used to create files under @file{/etc} and can be extended by passing it name/file tuples such as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36205 +#: guix-git/doc/guix.texi:36695 #, no-wrap msgid "(list `(\"issue\" ,(plain-file \"issue\" \"Welcome!\\n\")))\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36209 +#: guix-git/doc/guix.texi:36699 msgid "In this example, the effect would be to add an @file{/etc/issue} file pointing to the given file." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36211 +#: guix-git/doc/guix.texi:36701 #, no-wrap msgid "{Scheme Variable} setuid-program-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36215 +#: guix-git/doc/guix.texi:36705 msgid "Type for the ``setuid-program service''. This service collects lists of executable file names, passed as gexps, and adds them to the set of setuid-root programs on the system (@pxref{Setuid Programs})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36217 +#: guix-git/doc/guix.texi:36707 #, no-wrap msgid "{Scheme Variable} profile-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36221 +#: guix-git/doc/guix.texi:36711 msgid "Type of the service that populates the @dfn{system profile}---i.e., the programs under @file{/run/current-system/profile}. Other services can extend it by passing it lists of packages to add to the system profile." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:36225 +#: guix-git/doc/guix.texi:36715 msgid "provenance-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36225 +#: guix-git/doc/guix.texi:36715 #, no-wrap msgid "{Scheme Variable} provenance-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36229 +#: guix-git/doc/guix.texi:36719 msgid "This is the type of the service that records @dfn{provenance meta-data} in the system itself. It creates several files under @file{/run/current-system}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36231 +#: guix-git/doc/guix.texi:36721 #, no-wrap msgid "channels.scm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36236 +#: guix-git/doc/guix.texi:36726 msgid "This is a ``channel file'' that can be passed to @command{guix pull -C} or @command{guix time-machine -C}, and which describes the channels used to build the system, if that information was available (@pxref{Channels})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36237 +#: guix-git/doc/guix.texi:36727 #, no-wrap msgid "configuration.scm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36242 +#: guix-git/doc/guix.texi:36732 msgid "This is the file that was passed as the value for this @code{provenance-service-type} service. By default, @command{guix system reconfigure} automatically passes the OS configuration file it received on the command line." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36243 +#: guix-git/doc/guix.texi:36733 #, no-wrap msgid "provenance" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36246 +#: guix-git/doc/guix.texi:36736 msgid "This contains the same information as the two other files but in a format that is more readily processable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36250 +#: guix-git/doc/guix.texi:36740 msgid "In general, these two pieces of information (channels and configuration file) are enough to reproduce the operating system ``from source''." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36251 +#: guix-git/doc/guix.texi:36741 #, no-wrap msgid "Caveats" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36258 +#: guix-git/doc/guix.texi:36748 msgid "This information is necessary to rebuild your operating system, but it is not always sufficient. In particular, @file{configuration.scm} itself is insufficient if it is not self-contained---if it refers to external Guile modules or to extra files. If you want @file{configuration.scm} to be self-contained, we recommend that modules or files it refers to be part of a channel." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36266 +#: guix-git/doc/guix.texi:36756 msgid "Besides, provenance meta-data is ``silent'' in the sense that it does not change the bits contained in your system, @emph{except for the meta-data bits themselves}. Two different OS configurations or sets of channels can lead to the same system, bit-for-bit; when @code{provenance-service-type} is used, these two systems will have different meta-data and thus different store file names, which makes comparison less trivial." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36271 +#: guix-git/doc/guix.texi:36761 msgid "This service is automatically added to your operating system configuration when you use @command{guix system reconfigure}, @command{guix system init}, or @command{guix deploy}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36273 +#: guix-git/doc/guix.texi:36763 #, fuzzy, no-wrap msgid "{Scheme Variable} linux-loadable-module-service-type" msgstr "guix-publish-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36277 +#: guix-git/doc/guix.texi:36767 msgid "Type of the service that collects lists of packages containing kernel-loadable modules, and adds them to the set of kernel-loadable modules." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36280 +#: guix-git/doc/guix.texi:36770 msgid "This service type is intended to be extended by other service types, such as below:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36286 +#: guix-git/doc/guix.texi:36776 #, no-wrap msgid "" "(simple-service 'installing-module\n" @@ -64513,192 +65425,192 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36290 +#: guix-git/doc/guix.texi:36780 msgid "This does not actually load modules at bootup, only adds it to the kernel profile so that it @emph{can} be loaded by other means." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36295 guix-git/doc/guix.texi:37447 +#: guix-git/doc/guix.texi:36785 #, no-wrap msgid "shepherd services" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36296 +#: guix-git/doc/guix.texi:36786 #, no-wrap msgid "PID 1" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36297 +#: guix-git/doc/guix.texi:36787 #, no-wrap msgid "init system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36303 +#: guix-git/doc/guix.texi:36793 msgid "The @code{(gnu services shepherd)} module provides a way to define services managed by the GNU@tie{}Shepherd, which is the initialization system---the first process that is started when the system boots, also known as PID@tie{}1 (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36309 +#: guix-git/doc/guix.texi:36799 msgid "Services in the Shepherd can depend on each other. For instance, the SSH daemon may need to be started after the syslog daemon has been started, which in turn can only happen once all the file systems have been mounted. The simple operating system defined earlier (@pxref{Using the Configuration System}) results in a service graph like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36311 +#: guix-git/doc/guix.texi:36801 msgid "@image{images/shepherd-graph,,5in,Typical shepherd service graph.}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36315 +#: guix-git/doc/guix.texi:36805 msgid "You can actually generate such a graph for any operating system definition using the @command{guix system shepherd-graph} command (@pxref{system-shepherd-graph, @command{guix system shepherd-graph}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36319 +#: guix-git/doc/guix.texi:36809 msgid "The @code{%shepherd-root-service} is a service object representing PID@tie{}1, of type @code{shepherd-root-service-type}; it can be extended by passing it lists of @code{} objects." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36320 +#: guix-git/doc/guix.texi:36810 #, no-wrap msgid "{Data Type} shepherd-service" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36322 +#: guix-git/doc/guix.texi:36812 msgid "The data type representing a service managed by the Shepherd." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:36324 +#: guix-git/doc/guix.texi:36814 #, no-wrap msgid "provision" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36326 +#: guix-git/doc/guix.texi:36816 msgid "This is a list of symbols denoting what the service provides." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36331 +#: guix-git/doc/guix.texi:36821 msgid "These are the names that may be passed to @command{herd start}, @command{herd status}, and similar commands (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual}). @xref{Slots of services, the @code{provides} slot,, shepherd, The GNU Shepherd Manual}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36332 +#: guix-git/doc/guix.texi:36822 #, no-wrap msgid "@code{requirement} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36334 +#: guix-git/doc/guix.texi:36824 msgid "List of symbols denoting the Shepherd services this one depends on." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36335 +#: guix-git/doc/guix.texi:36825 #, no-wrap msgid "one-shot services, for the Shepherd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36340 +#: guix-git/doc/guix.texi:36830 msgid "Whether this service is @dfn{one-shot}. One-shot services stop immediately after their @code{start} action has completed. @xref{Slots of services,,, shepherd, The GNU Shepherd Manual}, for more info." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36341 +#: guix-git/doc/guix.texi:36831 #, no-wrap msgid "@code{respawn?} (default: @code{#t})" msgstr "@code{respawn?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:36344 +#: guix-git/doc/guix.texi:36834 msgid "Whether to restart the service when it stops, for instance when the underlying process dies." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:36345 +#: guix-git/doc/guix.texi:36835 #, no-wrap msgid "start" msgstr "iniciar" #. type: itemx -#: guix-git/doc/guix.texi:36346 +#: guix-git/doc/guix.texi:36836 #, no-wrap msgid "@code{stop} (default: @code{#~(const #f)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36352 +#: guix-git/doc/guix.texi:36842 msgid "The @code{start} and @code{stop} fields refer to the Shepherd's facilities to start and stop processes (@pxref{Service De- and Constructors,,, shepherd, The GNU Shepherd Manual}). They are given as G-expressions that get expanded in the Shepherd configuration file (@pxref{G-Expressions})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36353 +#: guix-git/doc/guix.texi:36843 #, no-wrap msgid "@code{actions} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36354 +#: guix-git/doc/guix.texi:36844 #, no-wrap msgid "actions, of Shepherd services" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36359 +#: guix-git/doc/guix.texi:36849 msgid "This is a list of @code{shepherd-action} objects (see below) defining @dfn{actions} supported by the service, in addition to the standard @code{start} and @code{stop} actions. Actions listed here become available as @command{herd} sub-commands:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36362 +#: guix-git/doc/guix.texi:36852 #, no-wrap msgid "herd @var{action} @var{service} [@var{arguments}@dots{}]\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36364 +#: guix-git/doc/guix.texi:36854 #, no-wrap msgid "@code{auto-start?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36367 +#: guix-git/doc/guix.texi:36857 msgid "Whether this service should be started automatically by the Shepherd. If it is @code{#f} the service has to be started manually with @code{herd start}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36370 +#: guix-git/doc/guix.texi:36860 msgid "A documentation string, as shown when running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36373 +#: guix-git/doc/guix.texi:36863 #, no-wrap msgid "herd doc @var{service-name}\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36377 +#: guix-git/doc/guix.texi:36867 msgid "where @var{service-name} is one of the symbols in @code{provision} (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36381 +#: guix-git/doc/guix.texi:36871 msgid "This is the list of modules that must be in scope when @code{start} and @code{stop} are evaluated." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36389 +#: guix-git/doc/guix.texi:36879 msgid "The example below defines a Shepherd service that spawns @command{syslogd}, the system logger from the GNU Networking Utilities (@pxref{syslogd invocation, @command{syslogd},, inetutils, GNU Inetutils}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36401 +#: guix-git/doc/guix.texi:36891 #, no-wrap msgid "" "(let ((config (plain-file \"syslogd.conf\" \"@dots{}\")))\n" @@ -64714,55 +65626,55 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36416 +#: guix-git/doc/guix.texi:36906 msgid "Key elements in this example are the @code{start} and @code{stop} fields: they are @dfn{staged} code snippets that use the @code{make-forkexec-constructor} procedure provided by the Shepherd and its dual, @code{make-kill-destructor} (@pxref{Service De- and Constructors,,, shepherd, The GNU Shepherd Manual}). The @code{start} field will have @command{shepherd} spawn @command{syslogd} with the given option; note that we pass @code{config} after @option{--rcfile}, which is a configuration file declared above (contents of this file are omitted). Likewise, the @code{stop} field tells how this service is to be stopped; in this case, it is stopped by making the @code{kill} system call on its PID@. Code staging is achieved using G-expressions: @code{#~} stages code, while @code{#$} ``escapes'' back to host code (@pxref{G-Expressions})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36417 +#: guix-git/doc/guix.texi:36907 #, no-wrap msgid "{Data Type} shepherd-action" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36420 +#: guix-git/doc/guix.texi:36910 msgid "This is the data type that defines additional actions implemented by a Shepherd service (see above)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36424 +#: guix-git/doc/guix.texi:36914 msgid "Symbol naming the action." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36427 +#: guix-git/doc/guix.texi:36917 msgid "This is a documentation string for the action. It can be viewed by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36430 +#: guix-git/doc/guix.texi:36920 #, no-wrap msgid "herd doc @var{service} action @var{action}\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36432 +#: guix-git/doc/guix.texi:36922 #, no-wrap msgid "procedure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36436 +#: guix-git/doc/guix.texi:36926 msgid "This should be a gexp that evaluates to a procedure of at least one argument, which is the ``running value'' of the service (@pxref{Slots of services,,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36440 +#: guix-git/doc/guix.texi:36930 msgid "The following example defines an action called @code{say-hello} that kindly greets the user:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36449 +#: guix-git/doc/guix.texi:36939 #, no-wrap msgid "" "(shepherd-action\n" @@ -64775,12 +65687,12 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36452 +#: guix-git/doc/guix.texi:36942 msgid "Assuming this action is added to the @code{example} service, then you can do:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36458 +#: guix-git/doc/guix.texi:36948 #, no-wrap msgid "" "# herd say-hello example\n" @@ -64790,66 +65702,66 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36463 +#: guix-git/doc/guix.texi:36953 msgid "This, as you can see, is a fairly sophisticated way to say hello. @xref{Service Convenience,,, shepherd, The GNU Shepherd Manual}, for more info on actions." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36465 +#: guix-git/doc/guix.texi:36955 #, no-wrap msgid "{Scheme Variable} shepherd-root-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36467 +#: guix-git/doc/guix.texi:36957 msgid "The service type for the Shepherd ``root service''---i.e., PID@tie{}1." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36472 +#: guix-git/doc/guix.texi:36962 msgid "This is the service type that extensions target when they want to create shepherd services (@pxref{Service Types and Services}, for an example). Each extension must pass a list of @code{}. Its value must be a @code{shepherd-configuration}, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36474 +#: guix-git/doc/guix.texi:36964 #, no-wrap msgid "{Data Type} shepherd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36476 guix-git/doc/guix.texi:37463 +#: guix-git/doc/guix.texi:36966 guix-git/doc/guix.texi:37959 msgid "This data type represents the Shepherd's configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36478 guix-git/doc/guix.texi:37465 +#: guix-git/doc/guix.texi:36968 guix-git/doc/guix.texi:37961 #, no-wrap msgid "shepherd (default: @code{shepherd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36480 guix-git/doc/guix.texi:37467 +#: guix-git/doc/guix.texi:36970 guix-git/doc/guix.texi:37963 msgid "The Shepherd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36481 guix-git/doc/guix.texi:37471 +#: guix-git/doc/guix.texi:36971 guix-git/doc/guix.texi:37967 #, no-wrap msgid "services (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36485 guix-git/doc/guix.texi:37475 +#: guix-git/doc/guix.texi:36975 guix-git/doc/guix.texi:37971 msgid "A list of @code{} to start. You should probably use the service extension mechanism instead (@pxref{Shepherd Services})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36490 +#: guix-git/doc/guix.texi:36980 msgid "The following example specifies the Shepherd package for the operating system:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36505 +#: guix-git/doc/guix.texi:36995 #, no-wrap msgid "" "(operating-system\n" @@ -64868,53 +65780,53 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36507 +#: guix-git/doc/guix.texi:36997 #, no-wrap msgid "{Scheme Variable} %shepherd-root-service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36509 +#: guix-git/doc/guix.texi:36999 msgid "This service represents PID@tie{}1." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36513 +#: guix-git/doc/guix.texi:37003 #, fuzzy, no-wrap #| msgid "System Configuration" msgid "complex configurations" msgstr "Configuração do sistema" #. type: Plain text -#: guix-git/doc/guix.texi:36518 +#: guix-git/doc/guix.texi:37008 msgid "Some programs might have rather complex configuration files or formats, and to make it easier to create Scheme bindings for these configuration files, you can use the utilities defined in the @code{(gnu services configuration)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36526 +#: guix-git/doc/guix.texi:37016 msgid "The main utility is the @code{define-configuration} macro, which you will use to define a Scheme record type (@pxref{Record Overview,,, guile, GNU Guile Reference Manual}). The Scheme record will be serialized to a configuration file by using @dfn{serializers}, which are procedures that take some kind of Scheme value and returns a G-expression (@pxref{G-Expressions}), which should, once serialized to the disk, return a string. More details are listed below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36527 +#: guix-git/doc/guix.texi:37017 #, no-wrap msgid "{Scheme Syntax} define-configuration @var{name} @var{clause1} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36531 +#: guix-git/doc/guix.texi:37021 msgid "@var{clause2} ... Create a record type named @code{@var{name}} that contains the fields found in the clauses." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36533 +#: guix-git/doc/guix.texi:37023 #, fuzzy #| msgid "Packages are currently available on the following platforms:" msgid "A clause can have one of the following forms:" msgstr "Os pacotes estão atualmente disponíveis nas seguintes plataformas:" #. type: example -#: guix-git/doc/guix.texi:36538 +#: guix-git/doc/guix.texi:37028 #, no-wrap msgid "" "(@var{field-name}\n" @@ -64924,7 +65836,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36543 +#: guix-git/doc/guix.texi:37033 #, no-wrap msgid "" "(@var{field-name}\n" @@ -64935,7 +65847,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36547 +#: guix-git/doc/guix.texi:37037 #, no-wrap msgid "" "(@var{field-name}\n" @@ -64945,7 +65857,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36552 +#: guix-git/doc/guix.texi:37042 #, no-wrap msgid "" "(@var{field-name}\n" @@ -64955,37 +65867,37 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36556 +#: guix-git/doc/guix.texi:37046 msgid "@var{field-name} is an identifier that denotes the name of the field in the generated record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36564 +#: guix-git/doc/guix.texi:37054 msgid "@var{type} is the type of the value corresponding to @var{field-name}; since Guile is untyped, a predicate procedure---@code{@var{type}?}---will be called on the value corresponding to the field to ensure that the value is of the correct type. This means that if say, @var{type} is @code{package}, then a procedure named @code{package?} will be applied on the value to make sure that it is indeed a @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36568 +#: guix-git/doc/guix.texi:37058 msgid "@var{default-value} is the default value corresponding to the field; if none is specified, the user is forced to provide a value when creating an object of the record type." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36573 +#: guix-git/doc/guix.texi:37063 msgid "@var{documentation} is a string formatted with Texinfo syntax which should provide a description of what setting this field does." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36580 +#: guix-git/doc/guix.texi:37070 msgid "@var{serializer} is the name of a procedure which takes two arguments, the first is the name of the field, and the second is the value corresponding to the field. The procedure should return a string or G-expression (@pxref{G-Expressions}) that represents the content that will be serialized to the configuration file. If none is specified, a procedure of the name @code{serialize-@var{type}} will be used." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36582 +#: guix-git/doc/guix.texi:37072 msgid "A simple serializer procedure could look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36587 +#: guix-git/doc/guix.texi:37077 #, no-wrap msgid "" "(define (serialize-boolean field-name value)\n" @@ -64994,12 +65906,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36598 +#: guix-git/doc/guix.texi:37088 msgid "In some cases multiple different configuration records might be defined in the same file, but their serializers for the same type might have to be different, because they have different configuration formats. For example, the @code{serialize-boolean} procedure for the Getmail service would have to be different for the one for the Transmission service. To make it easier to deal with this situation, one can specify a serializer prefix by using the @code{prefix} literal in the @code{define-configuration} form. This means that one doesn't have to manually specify a custom @var{serializer} for every field." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36602 +#: guix-git/doc/guix.texi:37092 #, no-wrap msgid "" "(define (foo-serialize-string field-name value)\n" @@ -65008,7 +65920,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36605 +#: guix-git/doc/guix.texi:37095 #, no-wrap msgid "" "(define (bar-serialize-string field-name value)\n" @@ -65017,7 +65929,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36611 +#: guix-git/doc/guix.texi:37101 #, no-wrap msgid "" "(define-configuration foo-configuration\n" @@ -65029,7 +65941,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36617 +#: guix-git/doc/guix.texi:37107 #, no-wrap msgid "" "(define-configuration bar-configuration\n" @@ -65040,12 +65952,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36623 +#: guix-git/doc/guix.texi:37113 msgid "However, in some cases you might not want to serialize any of the values of the record, to do this, you can use the @code{no-serialization} literal. There is also the @code{define-configuration/no-serialization} macro which is a shorthand of this." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36631 +#: guix-git/doc/guix.texi:37121 #, no-wrap msgid "" ";; Nothing will be serialized to disk.\n" @@ -65058,7 +65970,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36637 +#: guix-git/doc/guix.texi:37127 #, no-wrap msgid "" ";; The same thing as above.\n" @@ -65069,23 +65981,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36640 +#: guix-git/doc/guix.texi:37130 #, no-wrap msgid "{Scheme Syntax} define-maybe @var{type}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36645 +#: guix-git/doc/guix.texi:37135 msgid "Sometimes a field should not be serialized if the user doesn’t specify a value. To achieve this, you can use the @code{define-maybe} macro to define a ``maybe type''; if the value of a maybe type is set to the @code{disabled}, it will not be serialized." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36652 +#: guix-git/doc/guix.texi:37142 msgid "When defining a ``maybe type'', the corresponding serializer for the regular type will be used by default. For example, a field of type @code{maybe-string} will be serialized using the @code{serialize-string} procedure by default, you can of course change this by specifying a custom serializer procedure. Likewise, the type of the value would have to be a string, unless it is set to the @code{disabled} symbol." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36655 +#: guix-git/doc/guix.texi:37145 #, no-wrap msgid "" "(define-maybe string)\n" @@ -65093,7 +66005,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36658 +#: guix-git/doc/guix.texi:37148 #, no-wrap msgid "" "(define (serialize-string field-name value)\n" @@ -65102,7 +66014,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36665 +#: guix-git/doc/guix.texi:37155 #, no-wrap msgid "" "(define-configuration baz-configuration\n" @@ -65114,12 +66026,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36669 +#: guix-git/doc/guix.texi:37159 msgid "Like with @code{define-configuration}, one can set a prefix for the serializer name by using the @code{prefix} literal." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36673 +#: guix-git/doc/guix.texi:37163 #, no-wrap msgid "" "(define-maybe integer\n" @@ -65128,7 +66040,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36676 +#: guix-git/doc/guix.texi:37166 #, no-wrap msgid "" "(define (baz-serialize-interger field-name value)\n" @@ -65136,12 +66048,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36683 +#: guix-git/doc/guix.texi:37173 msgid "There is also the @code{no-serialization} literal, which when set means that no serializer will be defined for the ``maybe type'', regardless of its value is @code{disabled} or not. @code{define-maybe/no-serialization} is a shorthand for specifying the @code{no-serialization} literal." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36686 +#: guix-git/doc/guix.texi:37176 #, no-wrap msgid "" "(define-maybe/no-serialization symbol)\n" @@ -65149,7 +66061,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36691 +#: guix-git/doc/guix.texi:37181 #, no-wrap msgid "" "(define-configuration/no-serialization test-configuration\n" @@ -65159,66 +66071,66 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36694 +#: guix-git/doc/guix.texi:37184 #, no-wrap msgid "{Scheme Procedure} serialize-configuration @var{configuration} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36700 +#: guix-git/doc/guix.texi:37190 msgid "@var{fields} Return a G-expression that contains the values corresponding to the @var{fields} of @var{configuration}, a record that has been generated by @code{define-configuration}. The G-expression can then be serialized to disk by using something like @code{mixed-text-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36702 +#: guix-git/doc/guix.texi:37192 #, no-wrap msgid "{Scheme Procedure} validate-configuration @var{configuration}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36706 +#: guix-git/doc/guix.texi:37196 msgid "@var{fields} Type-check @var{fields}, a list of field names of @var{configuration}, a configuration record created by @code{define-configuration}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36708 +#: guix-git/doc/guix.texi:37198 #, no-wrap msgid "{Scheme Procedure} empty-serializer @var{field-name} @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36711 +#: guix-git/doc/guix.texi:37201 msgid "A serializer that just returns an empty string. The @code{serialize-package} procedure is an alias for this." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36716 +#: guix-git/doc/guix.texi:37206 msgid "Once you have defined a configuration record, you will most likely also want to document it so that other people know to use it. To help with that, there are two procedures, both of which are documented below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36717 +#: guix-git/doc/guix.texi:37207 #, no-wrap msgid "{Scheme Procedure} generate-documentation @var{documentation} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36724 +#: guix-git/doc/guix.texi:37214 msgid "@var{documentation-name} Generate a Texinfo fragment from the docstrings in @var{documentation}, a list of @code{(@var{label} @var{fields} @var{sub-documentation} ...)}. @var{label} should be a symbol and should be the name of the configuration record. @var{fields} should be a list of all the fields available for the configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36729 +#: guix-git/doc/guix.texi:37219 msgid "@var{sub-documentation} is a @code{(@var{field-name} @var{configuration-name})} tuple. @var{field-name} is the name of the field which takes another configuration record as its value, and @var{configuration-name} is the name of that configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36736 +#: guix-git/doc/guix.texi:37226 msgid "@var{sub-documentation} is only needed if there are nested configuration records. For example, the @code{getmail-configuration} record (@pxref{Mail Services}) accepts a @code{getmail-configuration-file} record in one of its @code{rcfile} field, therefore documentation for @code{getmail-configuration-file} is nested in @code{getmail-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36743 +#: guix-git/doc/guix.texi:37233 #, no-wrap msgid "" "(generate-documentation\n" @@ -65229,33 +66141,33 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36747 +#: guix-git/doc/guix.texi:37237 msgid "@var{documentation-name} should be a symbol and should be the name of the configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36750 +#: guix-git/doc/guix.texi:37240 #, no-wrap msgid "{Scheme Procedure} configuration->documentation" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36757 +#: guix-git/doc/guix.texi:37247 msgid "@var{configuration-symbol} Take @var{configuration-symbol}, the symbol corresponding to the name used when defining a configuration record with @code{define-configuration}, and print the Texinfo documentation of its fields. This is useful if there aren’t any nested configuration records since it only prints the documentation for the top-level fields." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36765 +#: guix-git/doc/guix.texi:37255 msgid "As of right now, there is no automated way to generate documentation for configuration records and put them in the manual. Instead, every time you make a change to the docstrings of a configuration record, you have to manually call @code{generate-documentation} or @code{configuration->documentation}, and paste the output into the @file{doc/guix.texi} file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36769 +#: guix-git/doc/guix.texi:37259 msgid "Below is an example of a record type created using @code{define-configuration} and friends." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36776 +#: guix-git/doc/guix.texi:37266 #, no-wrap msgid "" "(use-modules (gnu services)\n" @@ -65267,7 +66179,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36784 +#: guix-git/doc/guix.texi:37274 #, no-wrap msgid "" ";; Turn field names, which are Scheme symbols into strings\n" @@ -65281,7 +66193,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36787 +#: guix-git/doc/guix.texi:37277 #, no-wrap msgid "" "(define (serialize-string field-name value)\n" @@ -65290,7 +66202,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36790 +#: guix-git/doc/guix.texi:37280 #, no-wrap msgid "" "(define (serialize-integer field-name value)\n" @@ -65299,7 +66211,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36793 +#: guix-git/doc/guix.texi:37283 #, no-wrap msgid "" "(define (serialize-boolean field-name value)\n" @@ -65308,7 +66220,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36796 +#: guix-git/doc/guix.texi:37286 #, no-wrap msgid "" "(define (serialize-contact-name field-name value)\n" @@ -65317,7 +66229,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36799 +#: guix-git/doc/guix.texi:37289 #, no-wrap msgid "" "(define (list-of-contact-configurations? lst)\n" @@ -65326,7 +66238,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36804 +#: guix-git/doc/guix.texi:37294 #, no-wrap msgid "" "(define (serialize-list-of-contact-configurations field-name value)\n" @@ -65337,7 +66249,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36811 +#: guix-git/doc/guix.texi:37301 #, no-wrap msgid "" "(define (serialize-contacts-list-configuration configuration)\n" @@ -65350,7 +66262,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36814 +#: guix-git/doc/guix.texi:37304 #, no-wrap msgid "" "(define-maybe integer)\n" @@ -65359,7 +66271,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36829 +#: guix-git/doc/guix.texi:37319 #, no-wrap msgid "" "(define-configuration contact-configuration\n" @@ -65380,7 +66292,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36841 +#: guix-git/doc/guix.texi:37331 #, no-wrap msgid "" "(define-configuration contacts-list-configuration\n" @@ -65397,12 +66309,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36844 +#: guix-git/doc/guix.texi:37334 msgid "A contacts list configuration could then be created like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36860 +#: guix-git/doc/guix.texi:37350 #, no-wrap msgid "" "(define my-contacts\n" @@ -65422,12 +66334,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36864 +#: guix-git/doc/guix.texi:37354 msgid "After serializing the configuration to disk, the resulting file would look like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36869 +#: guix-git/doc/guix.texi:37359 #, no-wrap msgid "" "[owner]\n" @@ -65437,7 +66349,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36874 +#: guix-git/doc/guix.texi:37364 #, no-wrap msgid "" "[Bob]\n" @@ -65448,7 +66360,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36878 +#: guix-git/doc/guix.texi:37368 #, no-wrap msgid "" "[Charlie]\n" @@ -65457,216 +66369,215 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36883 +#: guix-git/doc/guix.texi:37373 #, fuzzy, no-wrap #| msgid "System Configuration" msgid "home configuration" msgstr "Configuração do sistema" #. type: Plain text -#: guix-git/doc/guix.texi:36895 +#: guix-git/doc/guix.texi:37385 msgid "Guix supports declarative configuration of @dfn{home environments} by utilizing the configuration mechanism described in the previous chapter (@pxref{Defining Services}), but for user's dotfiles and packages. It works both on Guix System and foreign distros and allows users to declare all the packages and services that should be installed and configured for the user. Once a user has written a file containing @code{home-environment} record, such a configuration can be @dfn{instantiated} by an unprivileged user with the @command{guix home} command (@pxref{Invoking guix home})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36912 +#: guix-git/doc/guix.texi:37402 msgid "The user's home environment usually consists of three basic parts: software, configuration, and state. Software in mainstream distros are usually installed system-wide, but with GNU Guix most software packages can be installed on a per-user basis without needing root privileges, and are thus considered part of the user’s @dfn{home environment}. Packages on their own not very useful in many cases, because often they require some additional configuration, usually config files that reside in @env{XDG_CONFIG_HOME} (@file{~/.config} by default) or other directories. Everything else can be considered state, like media files, application databases, and logs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36915 +#: guix-git/doc/guix.texi:37405 msgid "Using Guix for managing home environments provides a number of advantages:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36918 +#: guix-git/doc/guix.texi:37408 #, no-wrap msgid "All software can be configured in one language (Guile Scheme)," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36921 +#: guix-git/doc/guix.texi:37411 msgid "this gives users the ability to share values between configurations of different programs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36922 +#: guix-git/doc/guix.texi:37412 #, no-wrap msgid "A well-defined home environment is self-contained and can be" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36925 +#: guix-git/doc/guix.texi:37415 msgid "created in a declarative and reproducible way---there is no need to grab external binaries or manually edit some configuration file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36926 +#: guix-git/doc/guix.texi:37416 #, no-wrap msgid "After every @command{guix home reconfigure} invocation, a new home" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36930 +#: guix-git/doc/guix.texi:37420 msgid "environment generation will be created. This means that users can rollback to a previous home environment generation so they don’t have to worry about breaking their configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36931 +#: guix-git/doc/guix.texi:37421 #, no-wrap msgid "It is possible to manage stateful data with Guix Home, this" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36936 +#: guix-git/doc/guix.texi:37426 msgid "includes the ability to automatically clone Git repositories on the initial setup of the machine, and periodically running commands like @command{rsync} to sync data with another host. This functionality is still in an experimental stage, though." msgstr "" #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:36946 -#: guix-git/doc/guix.texi:36947 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37436 +#: guix-git/doc/guix.texi:37437 #, fuzzy, no-wrap #| msgid "Preparing the isolated build environment." msgid "Declaring the Home Environment" -msgstr "Preparando o ambiente de compilação isolado." +msgstr "Declarando o Ambiente Doméstico" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 #, fuzzy #| msgid "Customizing your GNU system." msgid "Customizing your Home." msgstr "Personalizando seu sistema GNU." #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:37014 -#: guix-git/doc/guix.texi:37015 -#, fuzzy, no-wrap -#| msgid "Configuring the boot loader." +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37504 +#: guix-git/doc/guix.texi:37505 +#, no-wrap msgid "Configuring the Shell" -msgstr "Configurando o \"bootloader\"." +msgstr "Configurando o \"Shell\"" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 #, fuzzy #| msgid "Invoking guix environment" msgid "Enabling home environment." -msgstr "Invocando guix environment" +msgstr "Habilitando o ambiente doméstico." #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:37061 -#: guix-git/doc/guix.texi:37062 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37551 +#: guix-git/doc/guix.texi:37552 #, fuzzy, no-wrap #| msgid "Game Services" msgid "Home Services" msgstr "Serviços de jogos" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 #, fuzzy #| msgid "Specifying system services." msgid "Specifying home services." msgstr "Especificando serviços de sistema." #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 #, fuzzy #| msgid "Instantiating a system configuration." msgid "Instantiating a home configuration." msgstr "Inicializando uma configuração de sistema." #. type: Plain text -#: guix-git/doc/guix.texi:36953 +#: guix-git/doc/guix.texi:37443 msgid "The home environment is configured by providing a @code{home-environment} declaration in a file that can be passed to the @command{guix home} command (@pxref{Invoking guix home}). The easiest way to get started is by generating an initial configuration with @command{guix home import}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36956 +#: guix-git/doc/guix.texi:37446 #, no-wrap msgid "guix home import ~/src/guix-config\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36964 +#: guix-git/doc/guix.texi:37454 msgid "The @command{guix home import} command reads some of the ``dot files'' such as @file{~/.bashrc} found in your home directory and copies them to the given directory, @file{~/src/guix-config} in this case; it also reads the contents of your profile, @file{~/.guix-profile}, and, based on that, it populates @file{~/src/guix-config/home-configuration.scm} with a Home configuration that resembles your current configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36970 +#: guix-git/doc/guix.texi:37460 msgid "A simple setup can include Bash and a custom text configuration, like in the example below. Don't be afraid to declare home environment parts, which overlaps with your current dot files: before installing any configuration files, Guix Home will back up existing config files to a separate place in the home directory." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36976 +#: guix-git/doc/guix.texi:37466 msgid "It is highly recommended that you manage your shell or shells with Guix Home, because it will make sure that all the necessary scripts are sourced by the shell configuration file. Otherwise you will need to do it manually. (@pxref{Configuring the Shell})." msgstr "" #. type: findex -#: guix-git/doc/guix.texi:36978 +#: guix-git/doc/guix.texi:37468 #, fuzzy, no-wrap #| msgid "build environment" msgid "home-environment" msgstr "ambiente de compilação" #. type: include -#: guix-git/doc/guix.texi:36980 +#: guix-git/doc/guix.texi:37470 #, fuzzy, no-wrap #| msgid "os-config-bare-bones.texi" msgid "he-config-bare-bones.scm" msgstr "os-config-bare-bones.texi" #. type: Plain text -#: guix-git/doc/guix.texi:36987 +#: guix-git/doc/guix.texi:37477 msgid "The @code{packages} field should be self-explanatory, it will install the list of packages into the user's profile. The most important field is @code{services}, it contains a list of @dfn{home services}, which are the basic building blocks of a home environment." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36995 +#: guix-git/doc/guix.texi:37485 msgid "There is no daemon (at least not necessarily) related to a home service, a home service is just an element that is used to declare part of home environment and extend other parts of it. The extension mechanism discussed in the previous chapter (@pxref{Defining Services}) should not be confused with Shepherd services (@pxref{Shepherd Services}). Using this extension mechanism and some Scheme code that glues things together gives the user the freedom to declare their own, very custom, home environments." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36998 +#: guix-git/doc/guix.texi:37488 msgid "Once you have a configuration file that suits your needs, you can reconfigure your home by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37001 +#: guix-git/doc/guix.texi:37491 #, no-wrap msgid "guix home reconfigure config.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37005 +#: guix-git/doc/guix.texi:37495 msgid "This ``builds'' your home environment and creates @file{~/.guix-home} pointing to it. Voilà!" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37012 +#: guix-git/doc/guix.texi:37502 msgid "Make sure the operating system has elogind, systemd, or a similar mechanism to create the XDG run-time directory and has the @env{XDG_RUNTIME_DIR} variable set. Failing that, the @file{on-first-login} script will not execute anything, and processes like user Shepherd and its descendants will not start." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37018 +#: guix-git/doc/guix.texi:37508 msgid "This section is safe to skip if your shell or shells are managed by Guix Home. Otherwise, read it carefully." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37025 +#: guix-git/doc/guix.texi:37515 msgid "There are a few scripts that must be evaluated by a login shell to activate the home environment. The shell startup files only read by login shells often have @code{profile} suffix. For more information about login shells see @ref{Invoking Bash,,, bash, The GNU Bash Reference Manual} and see @ref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37032 +#: guix-git/doc/guix.texi:37522 msgid "The first script that needs to be sourced is @file{setup-environment}, which sets all the necessary environment variables (including variables declared by the user) and the second one is @file{on-first-login}, which starts Shepherd for the current user and performs actions declared by other home services that extends @code{home-run-on-first-login-service-type}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37035 +#: guix-git/doc/guix.texi:37525 msgid "Guix Home will always create @file{~/.profile}, which contains the following lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37040 +#: guix-git/doc/guix.texi:37530 #, no-wrap msgid "" "HOME_ENVIRONMENT=$HOME/.guix-home\n" @@ -65675,119 +66586,116 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37050 +#: guix-git/doc/guix.texi:37540 msgid "This makes POSIX compliant login shells activate the home environment. However, in most cases this file won't be read by most modern shells, because they are run in non POSIX mode by default and have their own @file{*profile} startup files. For example Bash will prefer @file{~/.bash_profile} in case it exists and only if it doesn't will it fallback to @file{~/.profile}. Zsh (if no additional options are specified) will ignore @file{~/.profile}, even if @file{~/.zprofile} doesn't exist." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37055 +#: guix-git/doc/guix.texi:37545 msgid "To make your shell respect @file{~/.profile}, add @code{. ~/.profile} or @code{source ~/profile} to the startup file for the login shell. In case of Bash, it is @file{~/.bash_profile}, and in case of Zsh, it is @file{~/.zprofile}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37059 +#: guix-git/doc/guix.texi:37549 msgid "This step is only required if your shell is NOT managed by Guix Home. Otherwise, everything will be done automatically." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37063 +#: guix-git/doc/guix.texi:37553 #, fuzzy, no-wrap #| msgid "Other services." msgid "home services" -msgstr "Outros serviços." +msgstr "Serviços domésticos" #. type: Plain text -#: guix-git/doc/guix.texi:37072 +#: guix-git/doc/guix.texi:37562 msgid "A @dfn{home service} is not necessarily something that has a daemon and is managed by Shepherd (@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}), in most cases it doesn't. It's a simple building block of the home environment, often declaring a set of packages to be installed in the home environment profile, a set of config files to be symlinked into @env{XDG_CONFIG_HOME} (@file{~/.config} by default), and environment variables to be set by a login shell." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37080 +#: guix-git/doc/guix.texi:37570 msgid "There is a service extension mechanism (@pxref{Service Composition}) which allows home services to extend other home services and utilize capabilities they provide; for example: declare mcron jobs (@pxref{Top,,, mcron, GNU@tie{}Mcron}) by extending @ref{Mcron Home Service}; declare daemons by extending @ref{Shepherd Home Service}; add commands, which will be invoked on by the Bash by extending @ref{Shells Home Services, @code{home-bash-service-type}}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37091 -msgid "A good way to discover avaliable home services is using the @command{guix home search} command (@pxref{Invoking guix home}). After the required home services are found, include its module with the @code{use-modules} form (@pxref{use-modules,, Using Guile Modules, guile, The GNU Guile Reference Manual}), or the @code{#:use-modules} directive (@pxref{define-module,, Creating Guile Modules, guile, The GNU Guile Reference Manual}) and declare a home service using the @code{service} function, or extend a service type by declaring a new service with the @code{simple-service} procedure from @code{(gnu services)}." +#: guix-git/doc/guix.texi:37581 +msgid "A good way to discover available home services is using the @command{guix home search} command (@pxref{Invoking guix home}). After the required home services are found, include its module with the @code{use-modules} form (@pxref{use-modules,, Using Guile Modules, guile, The GNU Guile Reference Manual}), or the @code{#:use-modules} directive (@pxref{define-module,, Creating Guile Modules, guile, The GNU Guile Reference Manual}) and declare a home service using the @code{service} function, or extend a service type by declaring a new service with the @code{simple-service} procedure from @code{(gnu services)}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:37097 guix-git/doc/guix.texi:37100 -#: guix-git/doc/guix.texi:37101 -#, fuzzy, no-wrap -#| msgid "Essential system services." +#: guix-git/doc/guix.texi:37587 guix-git/doc/guix.texi:37590 +#: guix-git/doc/guix.texi:37591 +#, no-wrap msgid "Essential Home Services" -msgstr "Serviços essenciais do sistema." +msgstr "Serviços essenciais domésticos" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Environment variables, packages, on-* scripts." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 #, fuzzy #| msgid "Shepherd Services" msgid "Shells: Shells Home Services" msgstr "Serviços de Shepherd" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "POSIX shells, Bash, Zsh." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 #, fuzzy #| msgid "Version Control Services" msgid "Mcron: Mcron Home Service" msgstr "Serviços de controlando versão" #. type: menuentry -#: guix-git/doc/guix.texi:37097 -#, fuzzy -#| msgid "Scheduled Job Execution" +#: guix-git/doc/guix.texi:37587 msgid "Scheduled User's Job Execution." -msgstr "Execução de trabalho agendado" +msgstr "Execução de trabalho do Usuário agendado." #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 #, fuzzy #| msgid "Shepherd Services" msgid "Shepherd: Shepherd Home Service" msgstr "Serviços de Shepherd" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 #, fuzzy #| msgid "Messaging services." msgid "Managing User's Daemons." msgstr "Serviços de mensageria." #. type: Plain text -#: guix-git/doc/guix.texi:37106 +#: guix-git/doc/guix.texi:37596 msgid "There are a few essential home services defined in @code{(gnu services)}, they are mostly for internal use and are required to build a home environment, but some of them will be useful for the end user." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37107 +#: guix-git/doc/guix.texi:37597 #, no-wrap msgid "environment variables" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37109 +#: guix-git/doc/guix.texi:37599 #, fuzzy, no-wrap msgid "{Scheme Variable} home-environment-variables-service-type" msgstr "guix-publish-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37114 +#: guix-git/doc/guix.texi:37604 msgid "The service of this type will be instantiated by every home environment automatically by default, there is no need to define it, but someone may want to extend it with a list of pairs to set some environment variables." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37118 +#: guix-git/doc/guix.texi:37608 #, no-wrap msgid "" "(list (\"ENV_VAR1\" . \"value1\")\n" @@ -65795,12 +66703,12 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37123 +#: guix-git/doc/guix.texi:37613 msgid "The easiest way to extend a service type, without defining new service type is to use the @code{simple-service} helper from @code{(gnu services)}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37131 +#: guix-git/doc/guix.texi:37621 #, no-wrap msgid "" "(simple-service 'some-useful-env-vars-service\n" @@ -65812,12 +66720,12 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37136 +#: guix-git/doc/guix.texi:37626 msgid "If you include such a service in you home environment definition, it will add the following content to the @file{setup-environment} script (which is expected to be sourced by the login shell):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37141 +#: guix-git/doc/guix.texi:37631 #, no-wrap msgid "" "export LESSHISTFILE=$XDG_CACHE_HOME/.lesshst\n" @@ -65826,625 +66734,609 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37148 +#: guix-git/doc/guix.texi:37638 msgid "Make sure that module @code{(gnu packages shells)} is imported with @code{use-modules} or any other way, this namespace contains the definition of the @code{zsh} packages, which is used in the example above." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37161 +#: guix-git/doc/guix.texi:37651 msgid "The association list (@pxref{Association Lists, alists, Association Lists, guile, The GNU Guile Reference manual}) is a data structure containing key-value pairs, for @code{home-environment-variables-service-type} the key is always a string, the value can be a string, string-valued gexp (@pxref{G-Expressions}), file-like object (@pxref{G-Expressions, file-like object}) or boolean. For gexps, the variable will be set to the value of the gexp; for file-like objects, it will be set to the path of the file in the store (@pxref{The Store}); for @code{#t}, it will export the variable without any value; and for @code{#f}, it will omit variable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37164 +#: guix-git/doc/guix.texi:37654 #, fuzzy, no-wrap msgid "{Scheme Variable} home-profile-service-type" msgstr "guix-publish-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37170 -msgid "The service of this type will be instantiated by every home environment automatically, there is no need to define it, but you may want to extend it with a list of packages if you want to install additional packages into your profile. Other services, which need to make some programs avaliable to the user will also extend this service type." +#: guix-git/doc/guix.texi:37660 +msgid "The service of this type will be instantiated by every home environment automatically, there is no need to define it, but you may want to extend it with a list of packages if you want to install additional packages into your profile. Other services, which need to make some programs available to the user will also extend this service type." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37172 +#: guix-git/doc/guix.texi:37662 msgid "The extension value is just a list of packages:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37175 +#: guix-git/doc/guix.texi:37665 #, no-wrap msgid "(list htop vim emacs)\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37185 +#: guix-git/doc/guix.texi:37675 msgid "The same approach as @code{simple-service} (@pxref{Service Reference, simple-service}) for @code{home-environment-variables-service-type} can be used here, too. Make sure that modules containing the specified packages are imported with @code{use-modules}. To find a package or information about its module use @command{guix search} (@pxref{Invoking guix package}). Alternatively, @code{specification->package} can be used to get the package record from string without importing related module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37189 +#: guix-git/doc/guix.texi:37679 msgid "There are few more essential services, but users are not expected to extend them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37190 +#: guix-git/doc/guix.texi:37680 #, fuzzy, no-wrap msgid "{Scheme Variable} home-service-type" msgstr "guix-publish-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37195 +#: guix-git/doc/guix.texi:37685 msgid "The root of home services DAG, it generates a folder, which later will be symlinked to @file{~/.guix-home}, it contains configurations, profile with binaries and libraries, and some necessary scripts to glue things together." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37197 +#: guix-git/doc/guix.texi:37687 #, fuzzy, no-wrap msgid "{Scheme Variable} home-run-on-first-login-service-type" msgstr "guix-publish-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37202 +#: guix-git/doc/guix.texi:37692 msgid "The service of this type generates a Guile script, which is expected to be executed by the login shell. It is only executed if the special flag file inside @env{XDG_RUNTIME_DIR} hasn't been created, this prevents redundant executions of the script if multiple login shells are spawned." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37208 +#: guix-git/doc/guix.texi:37698 msgid "It can be extended with a gexp. However, to autostart an application, users @emph{should not} use this service, in most cases it's better to extend @code{home-shepherd-service-type} with a Shepherd service (@pxref{Shepherd Services}), or extend the shell's startup file with the required command using the appropriate service type." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37210 +#: guix-git/doc/guix.texi:37700 #, fuzzy, no-wrap msgid "{Scheme Variable} home-activation-service-type" msgstr "guix-publish-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37214 +#: guix-git/doc/guix.texi:37704 msgid "The service of this type generates a guile script, which runs on every @command{guix home reconfigure} invocation or any other action, which leads to the activation of the home environment." msgstr "" #. type: node -#: guix-git/doc/guix.texi:37216 +#: guix-git/doc/guix.texi:37706 #, fuzzy, no-wrap #| msgid "Shepherd Services" msgid "Shells Home Services" msgstr "Serviços de Shepherd" #. type: subsection -#: guix-git/doc/guix.texi:37217 +#: guix-git/doc/guix.texi:37707 #, no-wrap msgid "Shells" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37219 guix-git/doc/guix.texi:37500 +#: guix-git/doc/guix.texi:37709 guix-git/doc/guix.texi:37996 #, no-wrap msgid "shell" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37220 +#: guix-git/doc/guix.texi:37710 #, no-wrap msgid "login shell" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37221 +#: guix-git/doc/guix.texi:37711 #, no-wrap msgid "interactive shell" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37222 guix-git/doc/guix.texi:37502 +#: guix-git/doc/guix.texi:37712 guix-git/doc/guix.texi:37998 #, no-wrap msgid "bash" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37223 guix-git/doc/guix.texi:37503 +#: guix-git/doc/guix.texi:37713 guix-git/doc/guix.texi:37999 #, no-wrap msgid "zsh" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37229 +#: guix-git/doc/guix.texi:37719 msgid "Shells play a quite important role in the environment initialization process, you can configure them manually as described in section @ref{Configuring the Shell}, but the recommended way is to use home services listed below. It's both easier and more reliable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37239 +#: guix-git/doc/guix.texi:37729 msgid "Each home environment instantiates @code{home-shell-profile-service-type}, which creates a @file{~/.profile} startup file for all POSIX-compatible shells. This file contains all the necessary steps to properly initialize the environment, but many modern shells like Bash or Zsh prefer their own startup files, that's why the respective home services (@code{home-bash-service-type} and @code{home-zsh-service-type}) ensure that @file{~/.profile} is sourced by @file{~/.bash_profile} and @file{~/.zprofile}, respectively." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:37240 +#: guix-git/doc/guix.texi:37730 #, fuzzy, no-wrap #| msgid "Certificate Services" msgid "Shell Profile Service" msgstr "Serviços de certificado" #. type: deftp -#: guix-git/doc/guix.texi:37242 +#: guix-git/doc/guix.texi:37732 #, fuzzy, no-wrap msgid "{Data Type} home-shell-profile-configuration" msgstr "build-machine {Data Type}" #. type: deftp -#: guix-git/doc/guix.texi:37244 +#: guix-git/doc/guix.texi:37734 msgid "Available @code{home-shell-profile-configuration} fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37246 +#: guix-git/doc/guix.texi:37736 #, fuzzy, no-wrap #| msgid "@code{debug?} (default: @code{#f})" msgid "@code{profile} (default: @code{()}) (type: text-config)" msgstr "@code{debug?} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:37256 -msgid "@code{home-shell-profile} is instantiated automatically by @code{home-environment}, DO NOT create this service manually, it can only be extended. @code{profile} is a list of file-like objects, which will go to @file{~/.profile}. By default @file{~/.profile} contains the initialization code, which have to be evaluated by login shell to make home-environment's profile avaliable to the user, but other commands can be added to the file if it is really necessary. In most cases shell's configuration files are preferred places for user's customizations. Extend home-shell-profile service only if you really know what you do." +#: guix-git/doc/guix.texi:37746 +msgid "@code{home-shell-profile} is instantiated automatically by @code{home-environment}, DO NOT create this service manually, it can only be extended. @code{profile} is a list of file-like objects, which will go to @file{~/.profile}. By default @file{~/.profile} contains the initialization code which must be evaluated by the login shell to make home-environment's profile available to the user, but other commands can be added to the file if it is really necessary. In most cases shell's configuration files are preferred places for user's customizations. Extend home-shell-profile service only if you really know what you do." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:37261 +#: guix-git/doc/guix.texi:37751 #, fuzzy, no-wrap #| msgid "Base Services" msgid "Bash Home Service" msgstr "Serviços base" #. type: anchor{#1} -#: guix-git/doc/guix.texi:37264 +#: guix-git/doc/guix.texi:37754 #, fuzzy #| msgid "System Configuration" msgid "home-bash-configuration" msgstr "Configuração do sistema" #. type: deftp -#: guix-git/doc/guix.texi:37264 +#: guix-git/doc/guix.texi:37754 #, fuzzy, no-wrap msgid "{Data Type} home-bash-configuration" msgstr "build-machine {Data Type}" #. type: deftp -#: guix-git/doc/guix.texi:37266 +#: guix-git/doc/guix.texi:37756 msgid "Available @code{home-bash-configuration} fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37268 +#: guix-git/doc/guix.texi:37758 #, fuzzy, no-wrap #| msgid "@code{dbus?} (default: @code{#t})" msgid "@code{package} (default: @code{bash}) (type: package)" msgstr "@code{dbus?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:37270 +#: guix-git/doc/guix.texi:37760 #, fuzzy #| msgid "The GPM package to use." msgid "The Bash package to use." msgstr "O pacote GPM a ser usado." #. type: item -#: guix-git/doc/guix.texi:37271 +#: guix-git/doc/guix.texi:37761 #, fuzzy, no-wrap #| msgid "@code{debug?} (default: @code{#f})" msgid "@code{guix-defaults?} (default: @code{#t}) (type: boolean)" msgstr "@code{debug?} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:37274 +#: guix-git/doc/guix.texi:37764 msgid "Add sane defaults like reading @file{/etc/bashrc} and coloring the output of @command{ls} to the end of the @file{.bashrc} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37275 guix-git/doc/guix.texi:37329 -#: guix-git/doc/guix.texi:37368 +#: guix-git/doc/guix.texi:37765 guix-git/doc/guix.texi:37819 +#: guix-git/doc/guix.texi:37858 #, fuzzy, no-wrap #| msgid "@code{replacement} (default: @code{#f})" msgid "@code{environment-variables} (default: @code{()}) (type: alist)" msgstr "@code{replacement} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:37280 +#: guix-git/doc/guix.texi:37770 msgid "Association list of environment variables to set for the Bash session. The rules for the @code{home-environment-variables-service-type} apply here (@pxref{Essential Home Services}). The contents of this field will be added after the contents of the @code{bash-profile} field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37281 guix-git/doc/guix.texi:37334 +#: guix-git/doc/guix.texi:37771 guix-git/doc/guix.texi:37824 #, fuzzy, no-wrap #| msgid "@code{replacement} (default: @code{#f})" msgid "@code{aliases} (default: @code{()}) (type: alist)" msgstr "@code{replacement} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:37286 +#: guix-git/doc/guix.texi:37776 msgid "Association list of aliases to set for the Bash session. The aliases will be defined after the contents of the @code{bashrc} field has been put in the @file{.bashrc} file. The alias will automatically be quoted, so something line this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37289 +#: guix-git/doc/guix.texi:37779 #, no-wrap msgid "'((\\\"ls\\\" . \\\"ls -alF\\\"))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37292 +#: guix-git/doc/guix.texi:37782 msgid "turns into" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37295 +#: guix-git/doc/guix.texi:37785 #, no-wrap msgid "alias ls=\\\"ls -alF\\\"\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37297 guix-git/doc/guix.texi:37338 +#: guix-git/doc/guix.texi:37787 guix-git/doc/guix.texi:37828 #, fuzzy, no-wrap #| msgid "@code{dbus?} (default: @code{#t})" msgid "@code{bash-profile} (default: @code{()}) (type: text-config)" msgstr "@code{dbus?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:37302 +#: guix-git/doc/guix.texi:37792 msgid "List of file-like objects, which will be added to @file{.bash_profile}. Used for executing user's commands at start of login shell (In most cases the shell started on tty just after login). @file{.bash_login} won't be ever read, because @file{.bash_profile} always present." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37303 guix-git/doc/guix.texi:37342 +#: guix-git/doc/guix.texi:37793 guix-git/doc/guix.texi:37832 #, fuzzy, no-wrap #| msgid "@code{dbus?} (default: @code{#t})" msgid "@code{bashrc} (default: @code{()}) (type: text-config)" msgstr "@code{dbus?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:37308 +#: guix-git/doc/guix.texi:37798 msgid "List of file-like objects, which will be added to @file{.bashrc}. Used for executing user's commands at start of interactive shell (The shell for interactive usage started by typing @code{bash} or by terminal app or any other program)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37309 guix-git/doc/guix.texi:37346 +#: guix-git/doc/guix.texi:37799 guix-git/doc/guix.texi:37836 #, fuzzy, no-wrap #| msgid "@code{dbus?} (default: @code{#t})" msgid "@code{bash-logout} (default: @code{()}) (type: text-config)" msgstr "@code{dbus?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:37314 +#: guix-git/doc/guix.texi:37804 msgid "List of file-like objects, which will be added to @file{.bash_logout}. Used for executing user's commands at the exit of login shell. It won't be read in some cases (if the shell terminates by exec'ing another process for example)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37324 +#: guix-git/doc/guix.texi:37814 msgid "You can extend the Bash service by using the @code{home-bash-extension} configuration record, whose fields most mirror that of @code{home-bash-configuration} (@pxref{home-bash-configuration}). The contents of the extensions will be added to the end of the corresponding Bash configuration files (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37325 +#: guix-git/doc/guix.texi:37815 #, fuzzy, no-wrap msgid "{Data Type} home-bash-extension" msgstr "build-machine {Data Type}" #. type: deftp -#: guix-git/doc/guix.texi:37327 +#: guix-git/doc/guix.texi:37817 msgid "Available @code{home-bash-extension} fields are:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37333 +#: guix-git/doc/guix.texi:37823 msgid "Additional environment variables to set. These will be combined with the environment variables from other extensions and the base service to form one coherent block of environment variables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37337 +#: guix-git/doc/guix.texi:37827 msgid "Additional aliases to set. These will be combined with the aliases from other extensions and the base service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37341 +#: guix-git/doc/guix.texi:37831 msgid "Additional text blocks to add to @file{.bash_profile}, which will be combined with text blocks from other extensions and the base service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37345 +#: guix-git/doc/guix.texi:37835 msgid "Additional text blocks to add to @file{.bashrc}, which will be combined with text blocks from other extensions and the base service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37349 +#: guix-git/doc/guix.texi:37839 msgid "Additional text blocks to add to @file{.bash_logout}, which will be combined with text blocks from other extensions and the base service." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:37353 +#: guix-git/doc/guix.texi:37843 #, fuzzy, no-wrap #| msgid "Game Services" msgid "Zsh Home Service" msgstr "Serviços de jogos" #. type: deftp -#: guix-git/doc/guix.texi:37355 +#: guix-git/doc/guix.texi:37845 #, fuzzy, no-wrap msgid "{Data Type} home-zsh-configuration" msgstr "build-machine {Data Type}" #. type: deftp -#: guix-git/doc/guix.texi:37357 +#: guix-git/doc/guix.texi:37847 msgid "Available @code{home-zsh-configuration} fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37359 +#: guix-git/doc/guix.texi:37849 #, fuzzy, no-wrap #| msgid "@code{dbus?} (default: @code{#t})" msgid "@code{package} (default: @code{zsh}) (type: package)" msgstr "@code{dbus?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:37361 +#: guix-git/doc/guix.texi:37851 #, fuzzy #| msgid "The GPM package to use." msgid "The Zsh package to use." msgstr "O pacote GPM a ser usado." #. type: item -#: guix-git/doc/guix.texi:37362 +#: guix-git/doc/guix.texi:37852 #, fuzzy, no-wrap #| msgid "@code{debug?} (default: @code{#f})" msgid "@code{xdg-flavor?} (default: @code{#t}) (type: boolean)" msgstr "@code{debug?} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:37367 +#: guix-git/doc/guix.texi:37857 msgid "Place all the configs to @file{$XDG_CONFIG_HOME/zsh}. Makes @file{~/.zshenv} to set @env{ZDOTDIR} to @file{$XDG_CONFIG_HOME/zsh}. Shell startup process will continue with @file{$XDG_CONFIG_HOME/zsh/.zshenv}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37370 +#: guix-git/doc/guix.texi:37860 msgid "Association list of environment variables to set for the Zsh session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37371 +#: guix-git/doc/guix.texi:37861 #, fuzzy, no-wrap #| msgid "@code{dbus?} (default: @code{#t})" msgid "@code{zshenv} (default: @code{()}) (type: text-config)" msgstr "@code{dbus?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:37376 +#: guix-git/doc/guix.texi:37866 msgid "List of file-like objects, which will be added to @file{.zshenv}. Used for setting user's shell environment variables. Must not contain commands assuming the presence of tty or producing output. Will be read always. Will be read before any other file in @env{ZDOTDIR}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37377 +#: guix-git/doc/guix.texi:37867 #, fuzzy, no-wrap #| msgid "@code{debug?} (default: @code{#f})" msgid "@code{zprofile} (default: @code{()}) (type: text-config)" msgstr "@code{debug?} (default: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:37382 +#: guix-git/doc/guix.texi:37872 msgid "List of file-like objects, which will be added to @file{.zprofile}. Used for executing user's commands at start of login shell (In most cases the shell started on tty just after login). Will be read before @file{.zlogin}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37383 +#: guix-git/doc/guix.texi:37873 #, fuzzy, no-wrap #| msgid "@code{dbus?} (default: @code{#t})" msgid "@code{zshrc} (default: @code{()}) (type: text-config)" msgstr "@code{dbus?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:37388 +#: guix-git/doc/guix.texi:37878 msgid "List of file-like objects, which will be added to @file{.zshrc}. Used for executing user's commands at start of interactive shell (The shell for interactive usage started by typing @code{zsh} or by terminal app or any other program)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37389 +#: guix-git/doc/guix.texi:37879 #, fuzzy, no-wrap #| msgid "@code{wait?} (default: @code{#t})" msgid "@code{zlogin} (default: @code{()}) (type: text-config)" msgstr "@code{wait?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:37393 +#: guix-git/doc/guix.texi:37883 msgid "List of file-like objects, which will be added to @file{.zlogin}. Used for executing user's commands at the end of starting process of login shell." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37394 +#: guix-git/doc/guix.texi:37884 #, fuzzy, no-wrap #| msgid "@code{dbus?} (default: @code{#t})" msgid "@code{zlogout} (default: @code{()}) (type: text-config)" msgstr "@code{dbus?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:37399 +#: guix-git/doc/guix.texi:37889 msgid "List of file-like objects, which will be added to @file{.zlogout}. Used for executing user's commands at the exit of login shell. It won't be read in some cases (if the shell terminates by exec'ing another process for example)." msgstr "" #. type: node -#: guix-git/doc/guix.texi:37404 +#: guix-git/doc/guix.texi:37894 #, fuzzy, no-wrap #| msgid "Monitoring Services" msgid "Mcron Home Service" msgstr "Serviços de monitoramento" #. type: subsection -#: guix-git/doc/guix.texi:37405 +#: guix-git/doc/guix.texi:37895 #, fuzzy, no-wrap #| msgid "Scheduled Job Execution" msgid "Scheduled User's Job Execution" msgstr "Execução de trabalho agendado" #. type: Plain text -#: guix-git/doc/guix.texi:37418 +#: guix-git/doc/guix.texi:37908 msgid "The @code{(gnu home services mcron)} module provides an interface to GNU@tie{}mcron, a daemon to run jobs at scheduled times (@pxref{Top,,, mcron, GNU@tie{}mcron}). The information about system's mcron is applicable here (@pxref{Scheduled Job Execution}), the only difference for home services is that they have to be declared in a @code{home-envirnoment} record instead of an @code{operating-system} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37419 +#: guix-git/doc/guix.texi:37909 #, fuzzy, no-wrap msgid "{Scheme Variable} home-mcron-service-type" msgstr "guix-publish-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37423 +#: guix-git/doc/guix.texi:37913 msgid "This is the type of the @code{mcron} home service, whose value is an @code{home-mcron-configuration} object. It allows to manage scheduled tasks." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37430 +#: guix-git/doc/guix.texi:37920 #, fuzzy, no-wrap msgid "{Data Type} home-mcron-configuration" msgstr "build-machine {Data Type}" #. type: node -#: guix-git/doc/guix.texi:37444 +#: guix-git/doc/guix.texi:37934 #, fuzzy, no-wrap #| msgid "Shepherd Services" msgid "Shepherd Home Service" msgstr "Serviços de Shepherd" #. type: subsection -#: guix-git/doc/guix.texi:37445 -#, no-wrap -msgid "Managing User's Daemons" +#: guix-git/doc/guix.texi:37935 +#, fuzzy, no-wrap +#| msgid "Messaging services." +msgid "Managing User Daemons" +msgstr "Serviços de mensageria." + +#. type: cindex +#: guix-git/doc/guix.texi:37937 +#, fuzzy, no-wrap +#| msgid "Shepherd Services" +msgid "shepherd services, for users" +msgstr "Serviços de Shepherd" + +#. type: Plain text +#: guix-git/doc/guix.texi:37944 +msgid "The @code{(gnu home services shepherd)} module supports the definitions of per-user Shepherd services (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}). You extend @code{home-shepherd-service-type} with new services; Guix Home then takes care of starting the @code{shepherd} daemon for you when you log in, which in turns starts the services you asked for." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37449 +#: guix-git/doc/guix.texi:37945 #, fuzzy, no-wrap msgid "{Scheme Variable} home-shepherd-service-type" msgstr "guix-publish-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37454 +#: guix-git/doc/guix.texi:37950 msgid "The service type for the userland Shepherd, which allows one to manage long-running processes or one-shot tasks. User's Shepherd is not an init process (PID 1), but almost all other information described in (@pxref{Shepherd Services}) is applicable here too." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37459 +#: guix-git/doc/guix.texi:37955 msgid "This is the service type that extensions target when they want to create shepherd services (@pxref{Service Types and Services}, for an example). Each extension must pass a list of @code{}. Its value must be a @code{home-shepherd-configuration}, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37461 +#: guix-git/doc/guix.texi:37957 #, fuzzy, no-wrap msgid "{Data Type} home-shepherd-configuration" msgstr "build-machine {Data Type}" #. type: item -#: guix-git/doc/guix.texi:37468 +#: guix-git/doc/guix.texi:37964 #, fuzzy, no-wrap #| msgid "@code{shared?} (default: @code{#t})" msgid "auto-start? (default: @code{#t})" msgstr "@code{shared?} (padrão: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:37470 +#: guix-git/doc/guix.texi:37966 msgid "Whether or not to start Shepherd on first login." msgstr "" #. type: section -#: guix-git/doc/guix.texi:37479 +#: guix-git/doc/guix.texi:37975 #, fuzzy, no-wrap #| msgid "Invoking @code{guix system}" msgid "Invoking @code{guix home}" msgstr "Invocando @code{guix system}" #. type: Plain text -#: guix-git/doc/guix.texi:37484 +#: guix-git/doc/guix.texi:37980 msgid "Once you have written a home environment declaration (@pxref{Declaring the Home Environment,,,,}, it can be @dfn{instantiated} using the @command{guix home} command. The synopsis is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37487 +#: guix-git/doc/guix.texi:37983 #, no-wrap msgid "guix home @var{options}@dots{} @var{action} @var{file}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37494 +#: guix-git/doc/guix.texi:37990 msgid "@var{file} must be the name of a file containing a @code{home-environment} declaration. @var{action} specifies how the home environment is instantiated, but there are few auxiliary actions which don't instantiate it. Currently the following values are supported:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37499 +#: guix-git/doc/guix.texi:37995 msgid "Display available home service type definitions that match the given regular expressions, sorted by relevance:" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37501 +#: guix-git/doc/guix.texi:37997 #, no-wrap msgid "shell-profile" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37513 +#: guix-git/doc/guix.texi:38008 #, no-wrap msgid "" "$ guix home search shell\n" "name: home-shell-profile\n" -"location: gnu/home/services/shells.scm:73:2\n" +"location: gnu/home/services/shells.scm:100:2\n" "extends: home-files\n" -"description: Create `~/.profile', which is used for environment initialization\n" -"+ of POSIX compatible login shells. Can be extended with a list of strings or\n" -"+ gexps.\n" +"description: Create `~/.profile', which is used for environment initialization of POSIX compliant login shells.\n" +"+ This service type can be extended with a list of file-like objects.\n" "relevance: 6\n" "\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37519 -#, no-wrap -msgid "" -"name: home-zsh-plugin-manager\n" -"location: gnu/home/services/shellutils.scm:28:2\n" -"extends: home-zsh home-profile\n" -"description: Install plugins in profile and configure Zsh to load them.\n" -"relevance: 1\n" -"\n" -msgstr "" - -#. type: example -#: guix-git/doc/guix.texi:37526 -#, no-wrap -msgid "" -"name: home-zsh-direnv\n" -"location: gnu/home/services/shellutils.scm:69:2\n" -"extends: home-profile home-zsh\n" -"description: Enables `direnv' for `zsh'. Adds hook to `.zshrc' and installs a\n" -"+ package in the profile.\n" -"relevance: 1\n" -"\n" -msgstr "" - -#. type: example -#: guix-git/doc/guix.texi:37535 +#: guix-git/doc/guix.texi:38014 #, no-wrap msgid "" -"name: home-zsh-autosuggestions\n" -"location: gnu/home/services/shellutils.scm:43:2\n" -"extends: home-zsh-plugin-manager home-zsh\n" -"description: Enables Fish-like fast/unobtrusive autosuggestions for `zsh' and\n" -"+ sets reasonable default values for some plugin's variables to improve perfomance\n" -"+ and adjust behavior: `(history completion)' is set for strategy, manual rebind\n" -"+ and async are enabled.\n" -"relevance: 1\n" +"name: home-fish\n" +"location: gnu/home/services/shells.scm:640:2\n" +"extends: home-files home-profile\n" +"description: Install and configure Fish, the friendly interactive shell.\n" +"relevance: 3\n" "\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37541 +#: guix-git/doc/guix.texi:38020 #, no-wrap msgid "" "name: home-zsh\n" -"location: gnu/home/services/shells.scm:236:2\n" +"location: gnu/home/services/shells.scm:290:2\n" "extends: home-files home-profile\n" "description: Install and configure Zsh.\n" "relevance: 1\n" @@ -66452,63 +67344,67 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37547 +#: guix-git/doc/guix.texi:38026 #, no-wrap msgid "" "name: home-bash\n" -"location: gnu/home/services/shells.scm:388:2\n" +"location: gnu/home/services/shells.scm:508:2\n" "extends: home-files home-profile\n" -"description: Install and configure Bash.\n" +"description: Install and configure GNU Bash.\n" "relevance: 1\n" "\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37563 -msgid "Build the home environment described in @var{file}, and switch to it. Switching means that the activation script will be evaluated and (in basic scenario) symlinks to configuration files generated from @code{home-environment} declaration will be created in @file{~}. If the file with the same path already exists in home folder it will be moved to @file{~/TIMESTAMP-guix-home-legacy-configs-backup}, where TIMESTAMP is a current UNIX epoch time." +#: guix-git/doc/guix.texi:38033 +msgid "As for @command{guix search}, the result is written in @code{recutils} format, which makes it easy to filter the output (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:38042 +msgid "Build the home environment described in @var{file}, and switch to it. Switching means that the activation script will be evaluated and (in basic scenario) symlinks to configuration files generated from @code{home-environment} declaration will be created in @file{~}. If the file with the same path already exists in home folder it will be moved to @file{~/@var{timestamp}-guix-home-legacy-configs-backup}, where @var{timestamp} is a current UNIX epoch time." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37568 +#: guix-git/doc/guix.texi:38047 msgid "It is highly recommended to run @command{guix pull} once before you run @command{guix home reconfigure} for the first time (@pxref{Invoking guix pull})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37575 -msgid "This effects all the configuration specified in @var{file}. The command starts Shepherd services specified in @var{file} that are not currently running; if a service is currently running, this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop X} or @code{herd restart X})." +#: guix-git/doc/guix.texi:38054 +msgid "This effects all the configuration specified in @var{file}. The command starts Shepherd services specified in @var{file} that are not currently running; if a service is currently running, this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop @var{service}} or @code{herd restart @var{service}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37581 +#: guix-git/doc/guix.texi:38060 msgid "This command creates a new generation whose number is one greater than the current generation (as reported by @command{guix home list-generations}). If that generation already exists, it will be overwritten. This behavior mirrors that of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37582 -#, fuzzy, no-wrap -#| msgid "Preparing the isolated build environment." +#: guix-git/doc/guix.texi:38061 +#, no-wrap msgid "provenance tracking, of the home environment" -msgstr "Preparando o ambiente de compilação isolado." +msgstr "rastreamento de proveniência, do ambiente doméstico" #. type: table -#: guix-git/doc/guix.texi:37587 +#: guix-git/doc/guix.texi:38066 msgid "Upon completion, the new home is deployed under @file{~/.guix-home}. This directory contains @dfn{provenance meta-data}: the list of channels in use (@pxref{Channels}) and @var{file} itself, when available. You can view the provenance information by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37590 +#: guix-git/doc/guix.texi:38069 #, fuzzy, no-wrap #| msgid "Invoking guix describe" msgid "guix home describe\n" -msgstr "Invocando guix describe" +msgstr "guix home describe\n" #. type: table -#: guix-git/doc/guix.texi:37596 +#: guix-git/doc/guix.texi:38075 msgid "This information is useful should you later want to inspect how this particular generation was built. In fact, assuming @var{file} is self-contained, you can later rebuild generation @var{n} of your home environment with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37602 +#: guix-git/doc/guix.texi:38081 #, no-wrap msgid "" "guix time-machine \\\n" @@ -66519,117 +67415,117 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37609 +#: guix-git/doc/guix.texi:38088 msgid "You can think of it as some sort of built-in version control! Your home is not just a binary artifact: @emph{it carries its own source}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37615 +#: guix-git/doc/guix.texi:38094 #, fuzzy, no-wrap #| msgid "generations" msgid "home generations" msgstr "gerações" #. type: table -#: guix-git/doc/guix.texi:37618 +#: guix-git/doc/guix.texi:38097 msgid "Switch to an existing home generation. This action atomically switches the home profile to the specified home generation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37622 +#: guix-git/doc/guix.texi:38101 msgid "The target generation can be specified explicitly by its generation number. For example, the following invocation would switch to home generation 7:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37625 +#: guix-git/doc/guix.texi:38104 #, fuzzy, no-wrap #| msgid "$ guix system list-generations 10d\n" msgid "guix home switch-generation 7\n" msgstr "$ guix system list-generations 10d\n" #. type: example -#: guix-git/doc/guix.texi:37636 +#: guix-git/doc/guix.texi:38115 #, fuzzy, no-wrap #| msgid "$ guix system list-generations 10d\n" msgid "guix home switch-generation -- -1\n" msgstr "$ guix system list-generations 10d\n" #. type: table -#: guix-git/doc/guix.texi:37645 +#: guix-git/doc/guix.texi:38124 msgid "Switch to the preceding home generation. This is the inverse of @command{reconfigure}, and it is exactly the same as invoking @command{switch-generation} with an argument of @code{-1}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37647 +#: guix-git/doc/guix.texi:38126 #, fuzzy, no-wrap #| msgid "generations" msgid "deleting home generations" msgstr "gerações" #. type: table -#: guix-git/doc/guix.texi:37652 +#: guix-git/doc/guix.texi:38131 msgid "Delete home generations, making them candidates for garbage collection (@pxref{Invoking guix gc}, for information on how to run the ``garbage collector'')." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37656 +#: guix-git/doc/guix.texi:38135 msgid "This works in the same way as @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). With no arguments, all home generations but the current one are deleted:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37659 +#: guix-git/doc/guix.texi:38138 #, fuzzy, no-wrap #| msgid "$ guix system list-generations 10d\n" msgid "guix home delete-generations\n" msgstr "$ guix system list-generations 10d\n" #. type: table -#: guix-git/doc/guix.texi:37663 +#: guix-git/doc/guix.texi:38142 msgid "You can also select the generations you want to delete. The example below deletes all the home generations that are more than two months old:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37666 +#: guix-git/doc/guix.texi:38145 #, fuzzy, no-wrap #| msgid "$ guix system list-generations 10d\n" msgid "guix home delete-generations 2m\n" msgstr "$ guix system list-generations 10d\n" #. type: table -#: guix-git/doc/guix.texi:37672 +#: guix-git/doc/guix.texi:38151 msgid "Build the derivation of the home environment, which includes all the configuration files and programs needed. This action does not actually install anything." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37676 +#: guix-git/doc/guix.texi:38155 msgid "Describe the current home generation: its file name, as well as provenance information when available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37682 +#: guix-git/doc/guix.texi:38161 msgid "List a summary of each generation of the home environment available on disk, in a human-readable way. This is similar to the @option{--list-generations} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:37690 +#: guix-git/doc/guix.texi:38169 #, fuzzy, no-wrap #| msgid "$ guix system list-generations 10d\n" msgid "$ guix home list-generations 10d\n" msgstr "$ guix system list-generations 10d\n" #. type: item -#: guix-git/doc/guix.texi:37692 +#: guix-git/doc/guix.texi:38171 #, no-wrap msgid "import" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37699 +#: guix-git/doc/guix.texi:38178 msgid "Generate a @dfn{home environment} from the packages in the default profile and configuration files found in the user's home directory. The configuration files will be copied to the specified directory, and a @file{home-configuration.scm} will be populated with the home environment. Note that not every home service that exists is supported (@pxref{Home Services})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:37703 +#: guix-git/doc/guix.texi:38182 #, no-wrap msgid "" "$ guix home import ~/guix-config\n" @@ -66637,52 +67533,62 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37718 +#: guix-git/doc/guix.texi:38197 msgid "Consider the home-environment @var{expr} evaluates to. This is an alternative to specifying a file which evaluates to a home environment." msgstr "" +#. type: table +#: guix-git/doc/guix.texi:38200 +msgid "Instruct @command{guix home reconfigure} to allow system downgrades." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:38207 +msgid "Just like @command{guix system}, @command{guix home reconfigure}, by default, prevents you from downgrading your home to older or unrelated revisions compared to the channel revisions that were used to deploy it---those shown by @command{guix home describe}. Using @option{--allow-downgrades} allows you to bypass that check, at the risk of downgrading your home---be careful!" +msgstr "" + #. type: cindex -#: guix-git/doc/guix.texi:37724 +#: guix-git/doc/guix.texi:38213 #, no-wrap msgid "documentation, searching for" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37725 +#: guix-git/doc/guix.texi:38214 #, no-wrap msgid "searching for documentation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37726 +#: guix-git/doc/guix.texi:38215 #, no-wrap msgid "Info, documentation format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37727 +#: guix-git/doc/guix.texi:38216 #, no-wrap msgid "man pages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37728 +#: guix-git/doc/guix.texi:38217 #, no-wrap msgid "manual pages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37735 +#: guix-git/doc/guix.texi:38224 msgid "In most cases packages installed with Guix come with documentation. There are two main documentation formats: ``Info'', a browsable hypertext format used for GNU software, and ``manual pages'' (or ``man pages''), the linear documentation format traditionally found on Unix. Info manuals are accessed with the @command{info} command or with Emacs, and man pages are accessed using @command{man}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37739 +#: guix-git/doc/guix.texi:38228 msgid "You can look for documentation of software installed on your system by keyword. For example, the following command searches for information about ``TLS'' in Info manuals:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37747 +#: guix-git/doc/guix.texi:38236 #, no-wrap msgid "" "$ info -k TLS\n" @@ -66694,12 +67600,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37753 +#: guix-git/doc/guix.texi:38242 msgid "The command below searches for the same keyword in man pages@footnote{The database searched by @command{man -k} is only created in profiles that contain the @code{man-db} package.}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37759 +#: guix-git/doc/guix.texi:38248 #, no-wrap msgid "" "$ man -k TLS\n" @@ -66713,97 +67619,97 @@ msgstr "" "@dots {}\n" #. type: Plain text -#: guix-git/doc/guix.texi:37765 +#: guix-git/doc/guix.texi:38254 msgid "These searches are purely local to your computer so you have the guarantee that documentation you find corresponds to what you have actually installed, you can access it off-line, and your privacy is respected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37768 +#: guix-git/doc/guix.texi:38257 msgid "Once you have these results, you can view the relevant documentation by running, say:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37771 +#: guix-git/doc/guix.texi:38260 #, no-wrap msgid "$ info \"(gnutls)Core TLS API\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37775 +#: guix-git/doc/guix.texi:38264 msgid "or:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37778 +#: guix-git/doc/guix.texi:38267 #, no-wrap msgid "$ man certtool\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37786 +#: guix-git/doc/guix.texi:38275 msgid "Info manuals contain sections and indices as well as hyperlinks like those found in Web pages. The @command{info} reader (@pxref{Top, Info reader,, info-stnd, Stand-alone GNU Info}) and its Emacs counterpart (@pxref{Misc Help,,, emacs, The GNU Emacs Manual}) provide intuitive key bindings to navigate manuals. @xref{Getting Started,,, info, Info: An Introduction}, for an introduction to Info navigation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37790 +#: guix-git/doc/guix.texi:38279 #, no-wrap msgid "debugging files" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37796 +#: guix-git/doc/guix.texi:38285 msgid "Program binaries, as produced by the GCC compilers for instance, are typically written in the ELF format, with a section containing @dfn{debugging information}. Debugging information is what allows the debugger, GDB, to map binary code to source code; it is required to debug a compiled program in good conditions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37800 +#: guix-git/doc/guix.texi:38289 msgid "This chapter explains how to use separate debug info when packages provide it, and how to rebuild packages with debug info when it's missing." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37816 +#: guix-git/doc/guix.texi:38305 msgid "The problem with debugging information is that is takes up a fair amount of disk space. For example, debugging information for the GNU C Library weighs in at more than 60 MiB@. Thus, as a user, keeping all the debugging info of all the installed programs is usually not an option. Yet, space savings should not come at the cost of an impediment to debugging---especially in the GNU system, which should make it easier for users to exert their computing freedom (@pxref{GNU Distribution})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37823 +#: guix-git/doc/guix.texi:38312 msgid "Thankfully, the GNU Binary Utilities (Binutils) and GDB provide a mechanism that allows users to get the best of both worlds: debugging information can be stripped from the binaries and stored in separate files. GDB is then able to load debugging information from those files, when they are available (@pxref{Separate Debug Files,,, gdb, Debugging with GDB})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37831 +#: guix-git/doc/guix.texi:38320 msgid "The GNU distribution takes advantage of this by storing debugging information in the @code{lib/debug} sub-directory of a separate package output unimaginatively called @code{debug} (@pxref{Packages with Multiple Outputs}). Users can choose to install the @code{debug} output of a package when they need it. For instance, the following command installs the debugging information for the GNU C Library and for GNU Guile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37834 +#: guix-git/doc/guix.texi:38323 #, no-wrap msgid "guix install glibc:debug guile:debug\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37840 +#: guix-git/doc/guix.texi:38329 msgid "GDB must then be told to look for debug files in the user's profile, by setting the @code{debug-file-directory} variable (consider setting it from the @file{~/.gdbinit} file, @pxref{Startup,,, gdb, Debugging with GDB}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37843 +#: guix-git/doc/guix.texi:38332 #, no-wrap msgid "(gdb) set debug-file-directory ~/.guix-profile/lib/debug\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37847 +#: guix-git/doc/guix.texi:38336 msgid "From there on, GDB will pick up debugging information from the @file{.debug} files under @file{~/.guix-profile/lib/debug}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37852 +#: guix-git/doc/guix.texi:38341 msgid "Below is an alternative GDB script which is useful when working with other profiles. It takes advantage of the optional Guile integration in GDB. This snippet is included by default on Guix System in the @file{~/.gdbinit} file." msgstr "" #. type: example -#: guix-git/doc/guix.texi:37860 +#: guix-git/doc/guix.texi:38349 #, no-wrap msgid "" "guile\n" @@ -66815,32 +67721,32 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37868 +#: guix-git/doc/guix.texi:38357 msgid "In addition, you will most likely want GDB to be able to show the source code being debugged. To do that, you will have to unpack the source code of the package of interest (obtained with @code{guix build --source}, @pxref{Invoking guix build}), and to point GDB to that source directory using the @code{directory} command (@pxref{Source Path, @code{directory},, gdb, Debugging with GDB})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37876 +#: guix-git/doc/guix.texi:38365 msgid "The @code{debug} output mechanism in Guix is implemented by the @code{gnu-build-system} (@pxref{Build Systems}). Currently, it is opt-in---debugging information is available only for the packages with definitions explicitly declaring a @code{debug} output. To check whether a package has a @code{debug} output, use @command{guix package --list-available} (@pxref{Invoking guix package})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37878 +#: guix-git/doc/guix.texi:38367 msgid "Read on for how to deal with packages lacking a @code{debug} output." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37890 +#: guix-git/doc/guix.texi:38379 msgid "As we saw above, some packages, but not all, provide debugging info in a @code{debug} output. What can you do when debugging info is missing? The @option{--with-debug-info} option provides a solution to that: it allows you to rebuild the package(s) for which debugging info is missing---and only those---and to graft those onto the application you're debugging. Thus, while it's not as fast as installing a @code{debug} output, it is relatively inexpensive." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37895 +#: guix-git/doc/guix.texi:38384 msgid "Let's illustrate that. Suppose you're experiencing a bug in Inkscape and would like to see what's going on in GLib, a library that's deep down in its dependency graph. As it turns out, GLib does not have a @code{debug} output and the backtrace GDB shows is all sadness:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37906 +#: guix-git/doc/guix.texi:38395 #, no-wrap msgid "" "(gdb) bt\n" @@ -66855,17 +67761,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37910 +#: guix-git/doc/guix.texi:38399 msgid "To address that, you install Inkscape linked against a variant GLib that contains debug info:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37916 +#: guix-git/doc/guix.texi:38405 msgid "This time, debugging will be a whole lot nicer:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37934 +#: guix-git/doc/guix.texi:38423 #, no-wrap msgid "" "$ gdb --args sh -c 'exec inkscape'\n" @@ -66887,28 +67793,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37937 +#: guix-git/doc/guix.texi:38426 msgid "Much better!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37941 +#: guix-git/doc/guix.texi:38430 msgid "Note that there can be packages for which @option{--with-debug-info} will not have the desired effect. @xref{Package Transformation Options, @option{--with-debug-info}}, for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37945 +#: guix-git/doc/guix.texi:38434 #, no-wrap msgid "security updates" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37954 +#: guix-git/doc/guix.texi:38443 msgid "Occasionally, important security vulnerabilities are discovered in software packages and must be patched. Guix developers try hard to keep track of known vulnerabilities and to apply fixes as soon as possible in the @code{master} branch of Guix (we do not yet provide a ``stable'' branch containing only security updates). The @command{guix lint} tool helps developers find out about vulnerable versions of software packages in the distribution:" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:37961 +#: guix-git/doc/guix.texi:38450 #, no-wrap msgid "" "$ guix lint -c cve\n" @@ -66919,39 +67825,39 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37964 +#: guix-git/doc/guix.texi:38453 msgid "@xref{Invoking guix lint}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37973 +#: guix-git/doc/guix.texi:38462 msgid "Guix follows a functional package management discipline (@pxref{Introduction}), which implies that, when a package is changed, @emph{every package that depends on it} must be rebuilt. This can significantly slow down the deployment of fixes in core packages such as libc or Bash, since basically the whole distribution would need to be rebuilt. Using pre-built binaries helps (@pxref{Substitutes}), but deployment may still take more time than desired." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37974 +#: guix-git/doc/guix.texi:38463 #, no-wrap msgid "grafts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37982 +#: guix-git/doc/guix.texi:38471 msgid "To address this, Guix implements @dfn{grafts}, a mechanism that allows for fast deployment of critical updates without the costs associated with a whole-distribution rebuild. The idea is to rebuild only the package that needs to be patched, and then to ``graft'' it onto packages explicitly installed by the user and that were previously referring to the original package. The cost of grafting is typically very low, and order of magnitudes lower than a full rebuild of the dependency chain." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37983 +#: guix-git/doc/guix.texi:38472 #, no-wrap msgid "replacements of packages, for grafts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37989 +#: guix-git/doc/guix.texi:38478 msgid "For instance, suppose a security update needs to be applied to Bash. Guix developers will provide a package definition for the ``fixed'' Bash, say @code{bash-fixed}, in the usual way (@pxref{Defining Packages}). Then, the original package definition is augmented with a @code{replacement} field pointing to the package containing the bug fix:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37996 +#: guix-git/doc/guix.texi:38485 #, no-wrap msgid "" "(define bash\n" @@ -66962,190 +67868,190 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38006 +#: guix-git/doc/guix.texi:38495 msgid "From there on, any package depending directly or indirectly on Bash---as reported by @command{guix gc --requisites} (@pxref{Invoking guix gc})---that is installed is automatically ``rewritten'' to refer to @code{bash-fixed} instead of @code{bash}. This grafting process takes time proportional to the size of the package, usually less than a minute for an ``average'' package on a recent machine. Grafting is recursive: when an indirect dependency requires grafting, then grafting ``propagates'' up to the package that the user is installing." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38014 +#: guix-git/doc/guix.texi:38503 msgid "Currently, the length of the name and version of the graft and that of the package it replaces (@code{bash-fixed} and @code{bash} in the example above) must be equal. This restriction mostly comes from the fact that grafting works by patching files, including binary files, directly. Other restrictions may apply: for instance, when adding a graft to a package providing a shared library, the original shared library and its replacement must have the same @code{SONAME} and be binary-compatible." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38018 +#: guix-git/doc/guix.texi:38507 msgid "The @option{--no-grafts} command-line option allows you to forcefully avoid grafting (@pxref{Common Build Options, @option{--no-grafts}}). Thus, the command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38021 +#: guix-git/doc/guix.texi:38510 #, no-wrap msgid "guix build bash --no-grafts\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38025 +#: guix-git/doc/guix.texi:38514 msgid "returns the store file name of the original Bash, whereas:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38028 +#: guix-git/doc/guix.texi:38517 #, no-wrap msgid "guix build bash\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38033 +#: guix-git/doc/guix.texi:38522 msgid "returns the store file name of the ``fixed'', replacement Bash. This allows you to distinguish between the two variants of Bash." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38036 +#: guix-git/doc/guix.texi:38525 msgid "To verify which Bash your whole profile refers to, you can run (@pxref{Invoking guix gc}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38039 +#: guix-git/doc/guix.texi:38528 #, no-wrap msgid "guix gc -R $(readlink -f ~/.guix-profile) | grep bash\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38044 +#: guix-git/doc/guix.texi:38533 msgid "@dots{} and compare the store file names that you get with those above. Likewise for a complete Guix system generation:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38047 +#: guix-git/doc/guix.texi:38536 #, no-wrap msgid "guix gc -R $(guix system build my-config.scm) | grep bash\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38051 +#: guix-git/doc/guix.texi:38540 msgid "Lastly, to check which Bash running processes are using, you can use the @command{lsof} command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38054 +#: guix-git/doc/guix.texi:38543 #, no-wrap msgid "lsof | grep /gnu/store/.*bash\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:38062 +#: guix-git/doc/guix.texi:38551 #, no-wrap msgid "bootstrapping" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38069 +#: guix-git/doc/guix.texi:38558 msgid "Bootstrapping in our context refers to how the distribution gets built ``from nothing''. Remember that the build environment of a derivation contains nothing but its declared inputs (@pxref{Introduction}). So there's an obvious chicken-and-egg problem: how does the first package get built? How does the first compiler get compiled?" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38077 +#: guix-git/doc/guix.texi:38566 msgid "It is tempting to think of this question as one that only die-hard hackers may care about. However, while the answer to that question is technical in nature, its implications are wide-ranging. How the distribution is bootstrapped defines the extent to which we, as individuals and as a collective of users and hackers, can trust the software we run. It is a central concern from the standpoint of @emph{security} and from a @emph{user freedom} viewpoint." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:38078 guix-git/doc/guix.texi:38290 +#: guix-git/doc/guix.texi:38567 guix-git/doc/guix.texi:38779 #, no-wrap msgid "bootstrap binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38088 +#: guix-git/doc/guix.texi:38577 msgid "The GNU system is primarily made of C code, with libc at its core. The GNU build system itself assumes the availability of a Bourne shell and command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and `grep'. Furthermore, build programs---programs that run @code{./configure}, @code{make}, etc.---are written in Guile Scheme (@pxref{Derivations}). Consequently, to be able to build anything at all, from scratch, Guix relies on pre-built binaries of Guile, GCC, Binutils, libc, and the other packages mentioned above---the @dfn{bootstrap binaries}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38092 +#: guix-git/doc/guix.texi:38581 msgid "These bootstrap binaries are ``taken for granted'', though we can also re-create them if needed (@pxref{Preparing to Use the Bootstrap Binaries})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:38099 +#: guix-git/doc/guix.texi:38588 #, no-wrap msgid "The Reduced Binary Seed Bootstrap" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38106 +#: guix-git/doc/guix.texi:38595 msgid "Guix---like other GNU/Linux distributions---is traditionally bootstrapped from a set of bootstrap binaries: Bourne shell, command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and `grep' and Guile, GCC, Binutils, and the GNU C Library (@pxref{Bootstrapping}). Usually, these bootstrap binaries are ``taken for granted.''" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38112 +#: guix-git/doc/guix.texi:38601 msgid "Taking the bootstrap binaries for granted means that we consider them to be a correct and trustworthy ``seed'' for building the complete system. Therein lies a problem: the combined size of these bootstrap binaries is about 250MB (@pxref{Bootstrappable Builds,,, mes, GNU Mes}). Auditing or even inspecting these is next to impossible." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38117 +#: guix-git/doc/guix.texi:38606 msgid "For @code{i686-linux} and @code{x86_64-linux}, Guix now features a ``Reduced Binary Seed'' bootstrap @footnote{We would like to say: ``Full Source Bootstrap'' and while we are working towards that goal it would be hyperbole to use that term for what we do now.}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38123 +#: guix-git/doc/guix.texi:38612 msgid "The Reduced Binary Seed bootstrap removes the most critical tools---from a trust perspective---from the bootstrap binaries: GCC, Binutils and the GNU C Library are replaced by: @code{bootstrap-mescc-tools} (a tiny assembler and linker) and @code{bootstrap-mes} (a small Scheme Interpreter and a C compiler written in Scheme and the Mes C Library, built for TinyCC and for GCC)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38128 +#: guix-git/doc/guix.texi:38617 msgid "Using these new binary seeds the ``missing'' Binutils, GCC, and the GNU C Library are built from source. From here on the more traditional bootstrap process resumes. This approach has reduced the bootstrap binaries in size to about 145MB in Guix v1.1." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38136 +#: guix-git/doc/guix.texi:38625 msgid "The next step that Guix has taken is to replace the shell and all its utilities with implementations in Guile Scheme, the @emph{Scheme-only bootstrap}. Gash (@pxref{Gash,,, gash, The Gash manual}) is a POSIX-compatible shell that replaces Bash, and it comes with Gash Utils which has minimalist replacements for Awk, the GNU Core Utilities, Grep, Gzip, Sed, and Tar. The rest of the bootstrap binary seeds that were removed are now built from source." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38146 +#: guix-git/doc/guix.texi:38635 msgid "Building the GNU System from source is currently only possible by adding some historical GNU packages as intermediate steps@footnote{Packages such as @code{gcc-2.95.3}, @code{binutils-2.14}, @code{glibc-2.2.5}, @code{gzip-1.2.4}, @code{tar-1.22}, and some others. For details, see @file{gnu/packages/commencement.scm}.}. As Gash and Gash Utils mature, and GNU packages become more bootstrappable again (e.g., new releases of GNU Sed will also ship as gzipped tarballs again, as alternative to the hard to bootstrap @code{xz}-compression), this set of added packages can hopefully be reduced again." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38150 +#: guix-git/doc/guix.texi:38639 msgid "The graph below shows the resulting dependency graph for @code{gcc-core-mesboot0}, the bootstrap compiler used for the traditional bootstrap of the rest of the Guix System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38153 +#: guix-git/doc/guix.texi:38642 msgid "@image{images/gcc-core-mesboot0-graph,6in,,Dependency graph of gcc-core-mesboot0}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38160 +#: guix-git/doc/guix.texi:38649 msgid "The only significant binary bootstrap seeds that remain@footnote{ Ignoring the 68KB @code{mescc-tools}; that will be removed later, together with @code{mes}.} are a Scheme interpreter and a Scheme compiler: GNU Mes and GNU Guile@footnote{Not shown in this graph are the static binaries for @file{bash}, @code{tar}, and @code{xz} that are used to get Guile running.}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38163 +#: guix-git/doc/guix.texi:38652 msgid "This further reduction has brought down the size of the binary seed to about 60MB for @code{i686-linux} and @code{x86_64-linux}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38168 +#: guix-git/doc/guix.texi:38657 msgid "Work is ongoing to remove all binary blobs from our free software bootstrap stack, working towards a Full Source Bootstrap. Also ongoing is work to bring these bootstraps to the @code{arm-linux} and @code{aarch64-linux} architectures and to the Hurd." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38172 +#: guix-git/doc/guix.texi:38661 msgid "If you are interested, join us on @samp{#bootstrappable} on the Freenode IRC network or discuss on @email{bug-mes@@gnu.org} or @email{gash-devel@@nongnu.org}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38179 +#: guix-git/doc/guix.texi:38668 msgid "@image{images/bootstrap-graph,6in,,Dependency graph of the early bootstrap derivations}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38184 +#: guix-git/doc/guix.texi:38673 msgid "The figure above shows the very beginning of the dependency graph of the distribution, corresponding to the package definitions of the @code{(gnu packages bootstrap)} module. A similar figure can be generated with @command{guix graph} (@pxref{Invoking guix graph}), along the lines of:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38189 +#: guix-git/doc/guix.texi:38678 #, no-wrap msgid "" "guix graph -t derivation \\\n" @@ -67154,12 +68060,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38192 +#: guix-git/doc/guix.texi:38681 msgid "or, for the further Reduced Binary Seed bootstrap" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38197 +#: guix-git/doc/guix.texi:38686 #, no-wrap msgid "" "guix graph -t derivation \\\n" @@ -67168,43 +68074,43 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38206 +#: guix-git/doc/guix.texi:38695 msgid "At this level of detail, things are slightly complex. First, Guile itself consists of an ELF executable, along with many source and compiled Scheme files that are dynamically loaded when it runs. This gets stored in the @file{guile-2.0.7.tar.xz} tarball shown in this graph. This tarball is part of Guix's ``source'' distribution, and gets inserted into the store with @code{add-to-store} (@pxref{The Store})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38215 +#: guix-git/doc/guix.texi:38704 msgid "But how do we write a derivation that unpacks this tarball and adds it to the store? To solve this problem, the @code{guile-bootstrap-2.0.drv} derivation---the first one that gets built---uses @code{bash} as its builder, which runs @code{build-bootstrap-guile.sh}, which in turn calls @code{tar} to unpack the tarball. Thus, @file{bash}, @file{tar}, @file{xz}, and @file{mkdir} are statically-linked binaries, also part of the Guix source distribution, whose sole purpose is to allow the Guile tarball to be unpacked." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38227 +#: guix-git/doc/guix.texi:38716 msgid "Once @code{guile-bootstrap-2.0.drv} is built, we have a functioning Guile that can be used to run subsequent build programs. Its first task is to download tarballs containing the other pre-built binaries---this is what the @file{.tar.xz.drv} derivations do. Guix modules such as @code{ftp-client.scm} are used for this purpose. The @code{module-import.drv} derivations import those modules in a directory in the store, using the original layout. The @code{module-import-compiled.drv} derivations compile those modules, and write them in an output directory with the right layout. This corresponds to the @code{#:modules} argument of @code{build-expression->derivation} (@pxref{Derivations})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38232 +#: guix-git/doc/guix.texi:38721 msgid "Finally, the various tarballs are unpacked by the derivations @code{gcc-bootstrap-0.drv}, @code{glibc-bootstrap-0.drv}, or @code{bootstrap-mes-0.drv} and @code{bootstrap-mescc-tools-0.drv}, at which point we have a working C tool chain." msgstr "" #. type: unnumberedsec -#: guix-git/doc/guix.texi:38233 +#: guix-git/doc/guix.texi:38722 #, no-wrap msgid "Building the Build Tools" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38242 +#: guix-git/doc/guix.texi:38731 msgid "Bootstrapping is complete when we have a full tool chain that does not depend on the pre-built bootstrap tools discussed above. This no-dependency requirement is verified by checking whether the files of the final tool chain contain references to the @file{/gnu/store} directories of the bootstrap inputs. The process that leads to this ``final'' tool chain is described by the package definitions found in the @code{(gnu packages commencement)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38249 +#: guix-git/doc/guix.texi:38738 msgid "The @command{guix graph} command allows us to ``zoom out'' compared to the graph above, by looking at the level of package objects instead of individual derivations---remember that a package may translate to several derivations, typically one derivation to download its source, one to build the Guile modules it needs, and one to actually build the package from source. The command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38254 +#: guix-git/doc/guix.texi:38743 #, no-wrap msgid "" "guix graph -t bag \\\n" @@ -67213,168 +68119,177 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38261 +#: guix-git/doc/guix.texi:38750 msgid "displays the dependency graph leading to the ``final'' C library@footnote{You may notice the @code{glibc-intermediate} label, suggesting that it is not @emph{quite} final, but as a good approximation, we will consider it final.}, depicted below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38263 +#: guix-git/doc/guix.texi:38752 msgid "@image{images/bootstrap-packages,6in,,Dependency graph of the early packages}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38269 +#: guix-git/doc/guix.texi:38758 msgid "The first tool that gets built with the bootstrap binaries is GNU@tie{}Make---noted @code{make-boot0} above---which is a prerequisite for all the following packages. From there Findutils and Diffutils get built." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38274 +#: guix-git/doc/guix.texi:38763 msgid "Then come the first-stage Binutils and GCC, built as pseudo cross tools---i.e., with @option{--target} equal to @option{--host}. They are used to build libc. Thanks to this cross-build trick, this libc is guaranteed not to hold any reference to the initial tool chain." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38280 +#: guix-git/doc/guix.texi:38769 msgid "From there the final Binutils and GCC (not shown above) are built. GCC uses @command{ld} from the final Binutils, and links programs against the just-built libc. This tool chain is used to build the other packages used by Guix and by the GNU Build System: Guile, Bash, Coreutils, etc." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38286 +#: guix-git/doc/guix.texi:38775 msgid "And voilà! At this point we have the complete set of build tools that the GNU Build System expects. These are in the @code{%final-inputs} variable of the @code{(gnu packages commencement)} module, and are implicitly used by any package that uses @code{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}})." msgstr "" #. type: unnumberedsec -#: guix-git/doc/guix.texi:38288 +#: guix-git/doc/guix.texi:38777 #, no-wrap msgid "Building the Bootstrap Binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38295 +#: guix-git/doc/guix.texi:38784 msgid "Because the final tool chain does not depend on the bootstrap binaries, those rarely need to be updated. Nevertheless, it is useful to have an automated way to produce them, should an update occur, and this is what the @code{(gnu packages make-bootstrap)} module provides." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38301 +#: guix-git/doc/guix.texi:38790 msgid "The following command builds the tarballs containing the bootstrap binaries (Binutils, GCC, glibc, for the traditional bootstrap and linux-libre-headers, bootstrap-mescc-tools, bootstrap-mes for the Reduced Binary Seed bootstrap, and Guile, and a tarball containing a mixture of Coreutils and other basic command-line tools):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38304 +#: guix-git/doc/guix.texi:38793 #, no-wrap msgid "guix build bootstrap-tarballs\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38309 +#: guix-git/doc/guix.texi:38798 msgid "The generated tarballs are those that should be referred to in the @code{(gnu packages bootstrap)} module mentioned at the beginning of this section." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38315 +#: guix-git/doc/guix.texi:38804 msgid "Still here? Then perhaps by now you've started to wonder: when do we reach a fixed point? That is an interesting question! The answer is unknown, but if you would like to investigate further (and have significant computational and storage resources to do so), then let us know." msgstr "" #. type: unnumberedsec -#: guix-git/doc/guix.texi:38316 +#: guix-git/doc/guix.texi:38805 #, no-wrap msgid "Reducing the Set of Bootstrap Binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38324 +#: guix-git/doc/guix.texi:38813 msgid "Our traditional bootstrap includes GCC, GNU Libc, Guile, etc. That's a lot of binary code! Why is that a problem? It's a problem because these big chunks of binary code are practically non-auditable, which makes it hard to establish what source code produced them. Every unauditable binary also leaves us vulnerable to compiler backdoors as described by Ken Thompson in the 1984 paper @emph{Reflections on Trusting Trust}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38330 +#: guix-git/doc/guix.texi:38819 msgid "This is mitigated by the fact that our bootstrap binaries were generated from an earlier Guix revision. Nevertheless it lacks the level of transparency that we get in the rest of the package dependency graph, where Guix always gives us a source-to-binary mapping. Thus, our goal is to reduce the set of bootstrap binaries to the bare minimum." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38336 +#: guix-git/doc/guix.texi:38825 msgid "The @uref{https://bootstrappable.org, Bootstrappable.org web site} lists on-going projects to do that. One of these is about replacing the bootstrap GCC with a sequence of assemblers, interpreters, and compilers of increasing complexity, which could be built from source starting from a simple and auditable assembler." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38345 +#: guix-git/doc/guix.texi:38834 msgid "Our first major achievement is the replacement of of GCC, the GNU C Library and Binutils by MesCC-Tools (a simple hex linker and macro assembler) and Mes (@pxref{Top, GNU Mes Reference Manual,, mes, GNU Mes}, a Scheme interpreter and C compiler in Scheme). Neither MesCC-Tools nor Mes can be fully bootstrapped yet and thus we inject them as binary seeds. We call this the Reduced Binary Seed bootstrap, as it has halved the size of our bootstrap binaries! Also, it has eliminated the C compiler binary; i686-linux and x86_64-linux Guix packages are now bootstrapped without any binary C compiler." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38348 +#: guix-git/doc/guix.texi:38837 msgid "Work is ongoing to make MesCC-Tools and Mes fully bootstrappable and we are also looking at any other bootstrap binaries. Your help is welcome!" msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:38350 +#: guix-git/doc/guix.texi:38839 #, no-wrap msgid "Porting to a New Platform" msgstr "Portando para uma nova plataforma" #. type: Plain text -#: guix-git/doc/guix.texi:38359 +#: guix-git/doc/guix.texi:38848 msgid "As discussed above, the GNU distribution is self-contained, and self-containment is achieved by relying on pre-built ``bootstrap binaries'' (@pxref{Bootstrapping}). These binaries are specific to an operating system kernel, CPU architecture, and application binary interface (ABI). Thus, to port the distribution to a platform that is not yet supported, one must build those bootstrap binaries, and update the @code{(gnu packages bootstrap)} module to use them on that platform." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38364 +#: guix-git/doc/guix.texi:38853 msgid "Fortunately, Guix can @emph{cross compile} those bootstrap binaries. When everything goes well, and assuming the GNU tool chain supports the target platform, this can be as simple as running a command like this one:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38367 +#: guix-git/doc/guix.texi:38856 #, no-wrap msgid "guix build --target=armv5tel-linux-gnueabi bootstrap-tarballs\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38374 +#: guix-git/doc/guix.texi:38863 msgid "For this to work, the @code{glibc-dynamic-linker} procedure in @code{(gnu packages bootstrap)} must be augmented to return the right file name for libc's dynamic linker on that platform; likewise, @code{system->linux-architecture} in @code{(gnu packages linux)} must be taught about the new platform." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38383 +#: guix-git/doc/guix.texi:38872 msgid "Once these are built, the @code{(gnu packages bootstrap)} module needs to be updated to refer to these binaries on the target platform. That is, the hashes and URLs of the bootstrap tarballs for the new platform must be added alongside those of the currently supported platforms. The bootstrap Guile tarball is treated specially: it is expected to be available locally, and @file{gnu/local.mk} has rules to download it for the supported architectures; a rule for the new platform must be added as well." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38392 +#: guix-git/doc/guix.texi:38881 msgid "In practice, there may be some complications. First, it may be that the extended GNU triplet that specifies an ABI (like the @code{eabi} suffix above) is not recognized by all the GNU tools. Typically, glibc recognizes some of these, whereas GCC uses an extra @option{--with-abi} configure flag (see @code{gcc.scm} for examples of how to handle this). Second, some of the required packages could fail to build for that platform. Lastly, the generated binaries could be broken for some reason." msgstr "" #. type: include -#: guix-git/doc/guix.texi:38394 +#: guix-git/doc/guix.texi:38883 #, no-wrap msgid "contributing.texi" msgstr "contributing.pt_BR.texi" #. type: Plain text -#: guix-git/doc/guix.texi:38407 +#: guix-git/doc/guix.texi:38896 msgid "Guix is based on the @uref{https://nixos.org/nix/, Nix package manager}, which was designed and implemented by Eelco Dolstra, with contributions from other people (see the @file{nix/AUTHORS} file in Guix). Nix pioneered functional package management, and promoted unprecedented features, such as transactional package upgrades and rollbacks, per-user profiles, and referentially transparent build processes. Without this work, Guix would not exist." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38410 +#: guix-git/doc/guix.texi:38899 msgid "The Nix-based software distributions, Nixpkgs and NixOS, have also been an inspiration for Guix." msgstr "As distribuições de software baseadas em Nix, Nixpkgs e NixOS, também foram uma inspiração para o Guix." #. type: Plain text -#: guix-git/doc/guix.texi:38416 +#: guix-git/doc/guix.texi:38905 msgid "GNU@tie{}Guix itself is a collective work with contributions from a number of people. See the @file{AUTHORS} file in Guix for more information on these fine people. The @file{THANKS} file lists people who have helped by reporting bugs, taking care of the infrastructure, providing artwork and themes, making suggestions, and more---thank you!" msgstr "O GNU@tie{}Guix em si é um trabalho coletivo com contribuições de várias pessoas. Veja o arquivo @file{AUTHORS} no Guix para obter mais informações sobre essas pessoas legais. O arquivo @file{THANKS} lista as pessoas que ajudaram a relatar erros, cuidar da infraestrutura, fornecer ilustrações e temas, fazer sugestões e muito mais -- obrigado!" #. type: cindex -#: guix-git/doc/guix.texi:38421 +#: guix-git/doc/guix.texi:38910 #, no-wrap msgid "license, GNU Free Documentation License" msgstr "licença, Licença de Documentação Livre GNU" #. type: include -#: guix-git/doc/guix.texi:38422 +#: guix-git/doc/guix.texi:38911 #, no-wrap msgid "fdl-1.3.texi" msgstr "fdl-1.3.texi" +#~ msgid "./etc/indent-code.el gnu/packages/@var{file}.scm @var{package}\n" +#~ msgstr "./etc/indent-code.el gnu/packages/@var{arquivo}.scm @var{pacote}\n" + +#~ msgid "This automatically indents the definition of @var{package} in @file{gnu/packages/@var{file}.scm} by running Emacs in batch mode. To indent a whole file, omit the second argument:" +#~ msgstr "Isso automaticamente recua a definição de @var{pacote} em @file{gnu/packages/@var{arquivo}.scm} executando o Emacs no modo em lote. Para recuar um arquivo inteiro, omita o segundo argumento:" + +#~ msgid "./etc/indent-code.el gnu/services/@var{file}.scm\n" +#~ msgstr "./etc/indent-code.el gnu/services/@var{arquivo}.scm\n" + #~ msgid "git-send-email" #~ msgstr "git-send-email" diff --git a/po/doc/guix-manual.ru.po b/po/doc/guix-manual.ru.po index a811201784..3422f11e74 100644 --- a/po/doc/guix-manual.ru.po +++ b/po/doc/guix-manual.ru.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: guix-manual 1.2.0-pre2\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2021-12-21 15:18+0000\n" +"POT-Creation-Date: 2022-02-02 15:18+0000\n" "PO-Revision-Date: 2021-12-11 23:16+0000\n" "Last-Translator: Nikolay Korotkiy \n" "Language-Team: Russian \n" @@ -77,8 +77,8 @@ msgid "The latest and greatest." msgstr "Новейший и величайший." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:161 -#: guix-git/doc/contributing.texi:162 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:173 +#: guix-git/doc/contributing.texi:174 #, no-wrap msgid "Running Guix Before It Is Installed" msgstr "Запуск Guix перед его установкой" @@ -89,8 +89,8 @@ msgid "Hacker tricks." msgstr "Хакерские трюки." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:235 -#: guix-git/doc/contributing.texi:236 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:265 +#: guix-git/doc/contributing.texi:266 #, no-wrap msgid "The Perfect Setup" msgstr "Совершенная установка" @@ -101,8 +101,8 @@ msgid "The right tools." msgstr "Правильные инструменты." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:326 -#: guix-git/doc/contributing.texi:327 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:356 +#: guix-git/doc/contributing.texi:357 #, no-wrap msgid "Packaging Guidelines" msgstr "Принципы опакечивания" @@ -113,8 +113,8 @@ msgid "Growing the distribution." msgstr "Разрастание дистрибутива." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:890 -#: guix-git/doc/contributing.texi:891 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:920 +#: guix-git/doc/contributing.texi:921 #, no-wrap msgid "Coding Style" msgstr "Стиль кодирования" @@ -125,8 +125,8 @@ msgid "Hygiene of the contributor." msgstr "Гигиена участника." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:989 -#: guix-git/doc/contributing.texi:990 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1013 +#: guix-git/doc/contributing.texi:1014 #, no-wrap msgid "Submitting Patches" msgstr "Отправка исправлений" @@ -137,8 +137,8 @@ msgid "Share your work." msgstr "Поделитесь своей работой." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1270 -#: guix-git/doc/contributing.texi:1271 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1298 +#: guix-git/doc/contributing.texi:1299 #, no-wrap msgid "Tracking Bugs and Patches" msgstr "Отслеживание ошибок и патчей" @@ -149,8 +149,8 @@ msgid "Keeping it all organized." msgstr "" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1385 -#: guix-git/doc/contributing.texi:1386 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1413 +#: guix-git/doc/contributing.texi:1414 #, no-wrap msgid "Commit Access" msgstr "Доступ к коммитам" @@ -161,8 +161,8 @@ msgid "Pushing to the official repository." msgstr "Внесение изменений в официальный репозиторий." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1611 -#: guix-git/doc/contributing.texi:1612 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1644 +#: guix-git/doc/contributing.texi:1645 #, no-wrap msgid "Updating the Guix Package" msgstr "Обновление пакета Guix" @@ -173,8 +173,8 @@ msgid "Updating the Guix package definition." msgstr "Обновление описания пакета guix." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1652 -#: guix-git/doc/contributing.texi:1653 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1686 #, no-wrap msgid "Translating Guix" msgstr "Тестирование Guix." @@ -363,30 +363,31 @@ msgid "make authenticate GUIX_GIT_KEYRING=myremote/keyring\n" msgstr "make authenticate GUIX_GIT_KEYRING=myremote/keyring\n" #. type: quotation -#: guix-git/doc/contributing.texi:154 guix-git/doc/contributing.texi:1463 -#: guix-git/doc/guix.texi:594 guix-git/doc/guix.texi:643 -#: guix-git/doc/guix.texi:833 guix-git/doc/guix.texi:1813 -#: guix-git/doc/guix.texi:2060 guix-git/doc/guix.texi:2244 -#: guix-git/doc/guix.texi:2465 guix-git/doc/guix.texi:2677 -#: guix-git/doc/guix.texi:3807 guix-git/doc/guix.texi:4548 -#: guix-git/doc/guix.texi:4562 guix-git/doc/guix.texi:4644 -#: guix-git/doc/guix.texi:4874 guix-git/doc/guix.texi:5615 -#: guix-git/doc/guix.texi:6082 guix-git/doc/guix.texi:6333 -#: guix-git/doc/guix.texi:6454 guix-git/doc/guix.texi:6482 -#: guix-git/doc/guix.texi:6535 guix-git/doc/guix.texi:9391 -#: guix-git/doc/guix.texi:9461 guix-git/doc/guix.texi:11198 -#: guix-git/doc/guix.texi:11238 guix-git/doc/guix.texi:11512 -#: guix-git/doc/guix.texi:11524 guix-git/doc/guix.texi:14000 -#: guix-git/doc/guix.texi:14631 guix-git/doc/guix.texi:15521 -#: guix-git/doc/guix.texi:16507 guix-git/doc/guix.texi:19140 -#: guix-git/doc/guix.texi:19310 guix-git/doc/guix.texi:27188 -#: guix-git/doc/guix.texi:30914 guix-git/doc/guix.texi:34669 -#: guix-git/doc/guix.texi:34903 guix-git/doc/guix.texi:35073 -#: guix-git/doc/guix.texi:35232 guix-git/doc/guix.texi:35334 -#: guix-git/doc/guix.texi:35435 guix-git/doc/guix.texi:35738 -#: guix-git/doc/guix.texi:36896 guix-git/doc/guix.texi:36971 -#: guix-git/doc/guix.texi:37006 guix-git/doc/guix.texi:37056 -#: guix-git/doc/guix.texi:37143 guix-git/doc/guix.texi:37564 +#: guix-git/doc/contributing.texi:154 guix-git/doc/contributing.texi:1496 +#: guix-git/doc/guix.texi:605 guix-git/doc/guix.texi:654 +#: guix-git/doc/guix.texi:844 guix-git/doc/guix.texi:1830 +#: guix-git/doc/guix.texi:2077 guix-git/doc/guix.texi:2261 +#: guix-git/doc/guix.texi:2482 guix-git/doc/guix.texi:2694 +#: guix-git/doc/guix.texi:3825 guix-git/doc/guix.texi:4566 +#: guix-git/doc/guix.texi:4580 guix-git/doc/guix.texi:4662 +#: guix-git/doc/guix.texi:4892 guix-git/doc/guix.texi:5633 +#: guix-git/doc/guix.texi:6119 guix-git/doc/guix.texi:6376 +#: guix-git/doc/guix.texi:6497 guix-git/doc/guix.texi:6525 +#: guix-git/doc/guix.texi:6578 guix-git/doc/guix.texi:9581 +#: guix-git/doc/guix.texi:9705 guix-git/doc/guix.texi:9775 +#: guix-git/doc/guix.texi:11512 guix-git/doc/guix.texi:11552 +#: guix-git/doc/guix.texi:11826 guix-git/doc/guix.texi:11838 +#: guix-git/doc/guix.texi:14357 guix-git/doc/guix.texi:14988 +#: guix-git/doc/guix.texi:15878 guix-git/doc/guix.texi:16864 +#: guix-git/doc/guix.texi:19502 guix-git/doc/guix.texi:19672 +#: guix-git/doc/guix.texi:27525 guix-git/doc/guix.texi:31279 +#: guix-git/doc/guix.texi:35108 guix-git/doc/guix.texi:35342 +#: guix-git/doc/guix.texi:35512 guix-git/doc/guix.texi:35676 +#: guix-git/doc/guix.texi:35778 guix-git/doc/guix.texi:35817 +#: guix-git/doc/guix.texi:35891 guix-git/doc/guix.texi:36228 +#: guix-git/doc/guix.texi:37386 guix-git/doc/guix.texi:37461 +#: guix-git/doc/guix.texi:37496 guix-git/doc/guix.texi:37546 +#: guix-git/doc/guix.texi:37633 guix-git/doc/guix.texi:38043 #, no-wrap msgid "Note" msgstr "Примечание" @@ -397,28 +398,46 @@ msgid "You are advised to run @command{make authenticate} after every @command{g msgstr "Рекомендуется запускать @command{make authenticate} после каждого вызова @command{git pull}. Это гарантирует, что вы продолжаете получать актуальные изменения в репозитории." #. type: Plain text -#: guix-git/doc/contributing.texi:168 +#: guix-git/doc/contributing.texi:162 +msgid "After updating the repository, @command{make} might fail with an error similar to the following example:" +msgstr "" + +#. type: example +#: guix-git/doc/contributing.texi:166 +#, no-wrap +msgid "" +"error: failed to load 'gnu/packages/dunst.scm':\n" +"ice-9/eval.scm:293:34: In procedure abi-check: #>: record ABI mismatch; recompilation needed\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:172 +msgid "This means that one of the record types that Guix defines (in this example, the @code{origin} record) has changed, and all of guix needs to be recompiled to take that change into account. To do so, run @command{make clean-go} followed by @command{make}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:180 msgid "In order to keep a sane working environment, you will find it useful to test the changes made in your local source tree checkout without actually installing them. So that you can distinguish between your ``end-user'' hat and your ``motley'' costume." msgstr "Чтобы держать в порядке рабочее окружение, удобно тестировать изменения, сделанные в вашем локальном дереве исходников, без их установки. Так вы сможете отличить 'наряд' вашего конечного пользователя от 'пёстрого костюма'." #. type: Plain text -#: guix-git/doc/contributing.texi:179 +#: guix-git/doc/contributing.texi:191 msgid "To that end, all the command-line tools can be used even if you have not run @code{make install}. To do that, you first need to have an environment with all the dependencies available (@pxref{Building from Git}), and then simply prefix each command with @command{./pre-inst-env} (the @file{pre-inst-env} script lives in the top build tree of Guix; it is generated by running @command{./bootstrap} followed by @command{./configure}). As an example, here is how you would build the @code{hello} package as defined in your working tree (this assumes @command{guix-daemon} is already running on your system; it's OK if it's a different version):" msgstr "С этой целью можно использовать все инструменты командной строки, даже если вы не запускали @code{make install}. Для этого вам сначала нужно создать окружение со всеми доступными зависимостями (@pxref{Building from Git}), и затем просто начните каждую команду с @command{./pre-inst-env} (скрипт @file{pre-inst-env} находится на верху дерева сборки Guix; он генерируется запуском @command{./bootstrap}, за которым следует @command{./configure}). В качестве примера, вот как вы собрали бы пакет @code{hello} (подразумевается, что @command{guix-daemon} уже запущена на вашей системе; ничего страшного, если это другая версия):" #. type: example -#: guix-git/doc/contributing.texi:182 +#: guix-git/doc/contributing.texi:194 #, no-wrap msgid "$ ./pre-inst-env guix build hello\n" msgstr "$ ./pre-inst-env guix build hello\n" #. type: Plain text -#: guix-git/doc/contributing.texi:186 +#: guix-git/doc/contributing.texi:198 msgid "Similarly, an example for a Guile session using the Guix modules:" msgstr "Аналогично, пример для Guile сессии с использованием модулей Guix:" #. type: example -#: guix-git/doc/contributing.texi:189 +#: guix-git/doc/contributing.texi:201 #, no-wrap msgid "" "$ ./pre-inst-env guile -c '(use-modules (guix utils)) (pk (%current-system))'\n" @@ -428,30 +447,30 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/contributing.texi:191 +#: guix-git/doc/contributing.texi:203 #, no-wrap msgid ";;; (\"x86_64-linux\")\n" msgstr ";;; (\"x86_64-linux\")\n" #. type: cindex -#: guix-git/doc/contributing.texi:194 +#: guix-git/doc/contributing.texi:206 #, no-wrap msgid "REPL" msgstr "REPL" #. type: cindex -#: guix-git/doc/contributing.texi:195 +#: guix-git/doc/contributing.texi:207 #, no-wrap msgid "read-eval-print loop" msgstr "цикл чтение-вычисление-вывод" #. type: Plain text -#: guix-git/doc/contributing.texi:198 +#: guix-git/doc/contributing.texi:210 msgid "@dots{} and for a REPL (@pxref{Using Guile Interactively,,, guile, Guile Reference Manual}):" msgstr "@dots{} и для REPL (@pxref{Using Guile Interactively,,, guile, Guile Reference Manual}):" #. type: example -#: guix-git/doc/contributing.texi:213 +#: guix-git/doc/contributing.texi:225 #, no-wrap msgid "" "$ ./pre-inst-env guile\n" @@ -483,44 +502,67 @@ msgstr "" "$1 = 361\n" #. type: Plain text -#: guix-git/doc/contributing.texi:221 +#: guix-git/doc/contributing.texi:233 msgid "If you are hacking on the daemon and its supporting code or if @command{guix-daemon} is not already running on your system, you can launch it straight from the build tree@footnote{The @option{-E} flag to @command{sudo} guarantees that @code{GUILE_LOAD_PATH} is correctly set such that @command{guix-daemon} and the tools it uses can find the Guile modules they need.}:" msgstr "Если вы изучаете демона и его исзодники, или если @command{guix-daemon} еще не запущена в вашей системе, вы можете запустить его прямо из дерева сборки@footnote{Флаг @option{-E} команды @command{sudo} гарантирует, что @code{GUILE_LOAD_PATH} настроен правильно, так что @command{guix-daemon} и инструменты, которые он использует, могут найти необходимые им модули Guile.}:" #. type: example -#: guix-git/doc/contributing.texi:224 +#: guix-git/doc/contributing.texi:236 #, no-wrap msgid "$ sudo -E ./pre-inst-env guix-daemon --build-users-group=guixbuild\n" msgstr "$ sudo -E ./pre-inst-env guix-daemon --build-users-group=guixbuild\n" #. type: Plain text -#: guix-git/doc/contributing.texi:228 +#: guix-git/doc/contributing.texi:240 msgid "The @command{pre-inst-env} script sets up all the environment variables necessary to support this, including @env{PATH} and @env{GUILE_LOAD_PATH}." msgstr "Скрипт @command{pre-inst-env} устанавливает все переменные окружения, которые необходимы для этой задачи, включая @env{PATH} и @env{GUILE_LOAD_PATH}." #. type: Plain text -#: guix-git/doc/contributing.texi:233 +#: guix-git/doc/contributing.texi:245 msgid "Note that @command{./pre-inst-env guix pull} does @emph{not} upgrade the local source tree; it simply updates the @file{~/.config/guix/current} symlink (@pxref{Invoking guix pull}). Run @command{git pull} instead if you want to upgrade your local source tree." msgstr "Заметим, что @command{./pre-inst-env guix pull} @emph{не} обновляет локальное дерево исходников. Эта команда только обновляет символическую ссылку @file{~/.config/guix/current} (@pxref{Invoking guix pull}). Выполните @command{git pull}, если вы хотите обновить локальное дерево исходников." #. type: Plain text -#: guix-git/doc/contributing.texi:243 +#: guix-git/doc/contributing.texi:249 +msgid "Sometimes, especially if you have recently updated your repository, running @command{./pre-inst-env} will print a message similar to the following example:" +msgstr "" + +#. type: example +#: guix-git/doc/contributing.texi:253 +#, no-wrap +msgid "" +";;; note: source file /home/user/projects/guix/guix/progress.scm\n" +";;; newer than compiled /home/user/projects/guix/guix/progress.go\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:259 +msgid "This is only a note and you can safely ignore it. You can get rid of the message by running @command{make -j4}. Until you do, Guile will run slightly slower because it will interpret the code instead of using prepared Guile object (@file{.go}) files." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:264 +msgid "You can run @command{make} automatically as you work using @command{watchexec} from the @code{watchexec} package. For example, to build again each time you update a package file, you can run @samp{watchexec -w gnu/packages make -j4}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:273 msgid "The Perfect Setup to hack on Guix is basically the perfect setup used for Guile hacking (@pxref{Using Guile in Emacs,,, guile, Guile Reference Manual}). First, you need more than an editor, you need @url{https://www.gnu.org/software/emacs, Emacs}, empowered by the wonderful @url{https://nongnu.org/geiser/, Geiser}. To set that up, run:" msgstr "Совершенная установка для программирования Guix --- это лучший способ разработки Guix (@pxref{Using Guile in Emacs,,, guile, Guile Reference Manual}). Во-первых, здесь нужен мощный текстовый редактор, нужен @url{https://www.gnu.org/software/emacs, Emacs}, дополненный замечательным @url{https://nongnu.org/geiser/, Geiser}. Чтобы установить это, введите:" #. type: example -#: guix-git/doc/contributing.texi:246 +#: guix-git/doc/contributing.texi:276 #, no-wrap msgid "guix package -i emacs guile emacs-geiser emacs-geiser-guile\n" msgstr "guix package -i emacs guile emacs-geiser\n" #. type: Plain text -#: guix-git/doc/contributing.texi:255 +#: guix-git/doc/contributing.texi:285 msgid "Geiser allows for interactive and incremental development from within Emacs: code compilation and evaluation from within buffers, access to on-line documentation (docstrings), context-sensitive completion, @kbd{M-.} to jump to an object definition, a REPL to try out your code, and more (@pxref{Introduction,,, geiser, Geiser User Manual}). For convenient Guix development, make sure to augment Guile’s load path so that it finds source files from your checkout:" msgstr "Geiser добавляет возможности интерактивной пошаговой разработки внутри Emacs: компиляция и запуск кода в буферах, доступ к онлайн-документации (docstrings), контекстные дополнения, @kbd{M-.} для перемещения к определениям объектов, REPL для тестирования кода и многое другое (@pxref{Introduction,,, geiser, Geiser User Manual}). Для удобной разработки Guix обязательно настройте Guile для загрузки файлов из вашей инстанции:" #. type: lisp -#: guix-git/doc/contributing.texi:260 +#: guix-git/doc/contributing.texi:290 #, no-wrap msgid "" ";; @r{Assuming the Guix checkout is in ~/src/guix.}\n" @@ -532,35 +574,35 @@ msgstr "" " (add-to-list 'geiser-guile-load-path \"~/src/guix\"))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:268 +#: guix-git/doc/contributing.texi:298 msgid "To actually edit the code, Emacs already has a neat Scheme mode. But in addition to that, you must not miss @url{https://www.emacswiki.org/emacs/ParEdit, Paredit}. It provides facilities to directly operate on the syntax tree, such as raising an s-expression or wrapping it, swallowing or rejecting the following s-expression, etc." msgstr "Вообще, для редактирования кода, в Emacs уже есть Scheme mode. Но также обратите внимание на @url{https://www.emacswiki.org/emacs/ParEdit, Paredit}. Данный пакет предоставляет средства для непосредственной работы с синтаксическим деревом, такие как объявление s-выражений, их упаковка, отклонение следующего s-выражения и т.д." #. type: cindex -#: guix-git/doc/contributing.texi:269 +#: guix-git/doc/contributing.texi:299 #, no-wrap msgid "code snippets" msgstr "сниппеты кода" #. type: cindex -#: guix-git/doc/contributing.texi:270 +#: guix-git/doc/contributing.texi:300 #, no-wrap msgid "templates" msgstr "шаблоны" #. type: cindex -#: guix-git/doc/contributing.texi:271 +#: guix-git/doc/contributing.texi:301 #, no-wrap msgid "reducing boilerplate" msgstr "сокращение шаблонов" #. type: Plain text -#: guix-git/doc/contributing.texi:278 +#: guix-git/doc/contributing.texi:308 msgid "We also provide templates for common git commit messages and package definitions in the @file{etc/snippets} directory. These templates can be used with @url{https://joaotavora.github.io/yasnippet/, YASnippet} to expand short trigger strings to interactive text snippets. You may want to add the snippets directory to the @var{yas-snippet-dirs} variable in Emacs." msgstr "Мы также предоставляем шаблоны для стандартных git-коммитов в каталоге @file{etc/snippets}. Эти шаблоны могут быть использованы вместе с @url{https://joaotavora.github.io/yasnippet/, YASnippet} для расширения коротких триггерных строк до интеракивных текстовых фрагментов. Вы можете добавить каталог сниппетов в переменную @var{yas-snippet-dirs} в Emacs." #. type: lisp -#: guix-git/doc/contributing.texi:283 +#: guix-git/doc/contributing.texi:313 #, no-wrap msgid "" ";; @r{Assuming the Guix checkout is in ~/src/guix.}\n" @@ -572,40 +614,40 @@ msgstr "" " (add-to-list 'yas-snippet-dirs \"~/src/guix/etc/snippets\"))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:291 +#: guix-git/doc/contributing.texi:321 msgid "The commit message snippets depend on @url{https://magit.vc/, Magit} to display staged files. When editing a commit message type @code{add} followed by @kbd{TAB} to insert a commit message template for adding a package; type @code{update} followed by @kbd{TAB} to insert a template for updating a package; type @code{https} followed by @kbd{TAB} to insert a template for changing the home page URI of a package to HTTPS." msgstr "Тексты сообщений коммитов зависят от отображения затронутых файлов @url{https://magit.vc/, Magit}. Во время редактирования сообщения коммита типа @code{add} нажмите @kbd{TAB} после его ввода, чтобы вставить шаблон сообщения коммита добавления пакета; редактируя тип @code{update}, нажмите @kbd{TAB}, чтобы вставить шаблон обновления пакета; тип @code{https} - кнопка @kbd{TAB} вставит шаблон изменения адреса домашней страницы пакета на HTTPS." #. type: Plain text -#: guix-git/doc/contributing.texi:297 +#: guix-git/doc/contributing.texi:327 msgid "The main snippet for @code{scheme-mode} is triggered by typing @code{package...} followed by @kbd{TAB}. This snippet also inserts the trigger string @code{origin...}, which can be expanded further. The @code{origin} snippet in turn may insert other trigger strings ending on @code{...}, which also can be expanded further." msgstr "Основной код для @code{scheme-mode} вызывается при вводе @code{package...} и кнопки @kbd{TAB}. Этот код также вставляет строку триггера @code{origin...}, который может быть расширен в дальнейшем. Код @code{origin...}, в свою очередь, может вставить строки других триггеров, завершающихся @code{...}, который также может быть расширен в дальнейшем." #. type: cindex -#: guix-git/doc/contributing.texi:298 +#: guix-git/doc/contributing.texi:328 #, no-wrap msgid "insert or update copyright" msgstr "внести или обновить авторские права" #. type: code{#1} -#: guix-git/doc/contributing.texi:299 +#: guix-git/doc/contributing.texi:329 #, no-wrap msgid "M-x guix-copyright" msgstr "M-x guix-copyright" #. type: code{#1} -#: guix-git/doc/contributing.texi:300 +#: guix-git/doc/contributing.texi:330 #, no-wrap msgid "M-x copyright-update" msgstr "M-x copyright-update" #. type: Plain text -#: guix-git/doc/contributing.texi:304 +#: guix-git/doc/contributing.texi:334 msgid "We additionally provide insertion and automatic update of a copyright in @file{etc/copyright.el}. You may want to set your full name, mail, and load a file." msgstr "Мы дополнительно обеспечиваем автоматическое обновление информации об авторских правах в @file{etc/copyright.el}. Вы можете указать свое полное имя, почту и загрузить файл." #. type: lisp -#: guix-git/doc/contributing.texi:310 +#: guix-git/doc/contributing.texi:340 #, no-wrap msgid "" "(setq user-full-name \"Alice Doe\")\n" @@ -619,17 +661,17 @@ msgstr "" "(load-file \"~/src/guix/etc/copyright.el\")\n" #. type: Plain text -#: guix-git/doc/contributing.texi:313 +#: guix-git/doc/contributing.texi:343 msgid "To insert a copyright at the current line invoke @code{M-x guix-copyright}." msgstr "Чтобы ввести авторское право в текущей строке, вызовите @code{M-x guix-copyright}." #. type: Plain text -#: guix-git/doc/contributing.texi:315 +#: guix-git/doc/contributing.texi:345 msgid "To update a copyright you need to specify a @code{copyright-names-regexp}." msgstr "Для обновления авторских прав необходимо указать @code{copyright-names-regexp}." #. type: lisp -#: guix-git/doc/contributing.texi:319 +#: guix-git/doc/contributing.texi:349 #, no-wrap msgid "" "(setq copyright-names-regexp\n" @@ -639,281 +681,281 @@ msgstr "" " (format \"%s <%s>\" user-full-name user-mail-address))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:325 +#: guix-git/doc/contributing.texi:355 msgid "You can check if your copyright is up to date by evaluating @code{M-x copyright-update}. If you want to do it automatically after each buffer save then add @code{(add-hook 'after-save-hook 'copyright-update)} in Emacs." msgstr "Вы можете проверить актуальность своих авторских прав, вызвав @code{M-x copyright-update}. Если вы хотите делать это автоматически после каждого сохранения в буфер, то добавьте @code{(add-hook 'after-save-hook 'copyright-update)} в Emacs." #. type: cindex -#: guix-git/doc/contributing.texi:329 +#: guix-git/doc/contributing.texi:359 #, no-wrap msgid "packages, creating" msgstr "создание, пакетов" #. type: Plain text -#: guix-git/doc/contributing.texi:333 +#: guix-git/doc/contributing.texi:363 msgid "The GNU distribution is nascent and may well lack some of your favorite packages. This section describes how you can help make the distribution grow." msgstr "Дистрибутив GNU - в процессе возникновения и может не содержать ваши любимые пакеты. Этот раздел описывает как можно помочь с развитием дистрибутива." #. type: Plain text -#: guix-git/doc/contributing.texi:341 +#: guix-git/doc/contributing.texi:371 msgid "Free software packages are usually distributed in the form of @dfn{source code tarballs}---typically @file{tar.gz} files that contain all the source files. Adding a package to the distribution means essentially two things: adding a @dfn{recipe} that describes how to build the package, including a list of other packages required to build it, and adding @dfn{package metadata} along with that recipe, such as a description and licensing information." msgstr "Пакеты свободного программного обеспечения обычно распространяются в виде @dfn{архивов исходного кода} (файлы @file{tar.gz}), которые содержат все исходные файлы. Добавить пакет в дистрибутив означает, по существу, две вещи: добавление @dfn{рецепта}, в котором обозначено, как собирать пакет, включая список других пакетов, необходимых для сборки данного, а также добавление @dfn{метаданных пакета} вместе с рецептом, как например, описание информации о лицензировании." #. type: Plain text -#: guix-git/doc/contributing.texi:350 +#: guix-git/doc/contributing.texi:380 msgid "In Guix all this information is embodied in @dfn{package definitions}. Package definitions provide a high-level view of the package. They are written using the syntax of the Scheme programming language; in fact, for each package we define a variable bound to the package definition, and export that variable from a module (@pxref{Package Modules}). However, in-depth Scheme knowledge is @emph{not} a prerequisite for creating packages. For more information on package definitions, @pxref{Defining Packages}." msgstr "В Guix вся эта информация включена в @dfn{определения пакетов}. Определения пакетов представляют собой высокоуровневый обзор пакета. Они написаны с использованием синтаксиса языка программирования Scheme. Для каждого пакета задаётся набор переменных, которые составляют определение пакета, и затем это определение пакета экспортируется из модуля (@pxref{Package Modules}). Однако основательные знания Scheme @emph{not} не обязательны для создания пакетов. Для информации об определении пакетов см. @pxref{Defining Packages}." #. type: Plain text -#: guix-git/doc/contributing.texi:356 +#: guix-git/doc/contributing.texi:386 msgid "Once a package definition is in place, stored in a file in the Guix source tree, it can be tested using the @command{guix build} command (@pxref{Invoking guix build}). For example, assuming the new package is called @code{gnew}, you may run this command from the Guix build tree (@pxref{Running Guix Before It Is Installed}):" msgstr "Когда определение пакета создано, сохранено в файле в дереве исходников Guix, оно может быть протестировано командой @command{guix build} (@pxref{Invoking guix build}). Например, допустим, новый пакет называется @code{gnew}, тогда можно запустить эту команду из дерева сборки Guix (@pxref{Running Guix Before It Is Installed}):" #. type: example -#: guix-git/doc/contributing.texi:359 +#: guix-git/doc/contributing.texi:389 #, no-wrap msgid "./pre-inst-env guix build gnew --keep-failed\n" msgstr "./pre-inst-env guix build gnew --keep-failed\n" #. type: Plain text -#: guix-git/doc/contributing.texi:365 +#: guix-git/doc/contributing.texi:395 msgid "Using @code{--keep-failed} makes it easier to debug build failures since it provides access to the failed build tree. Another useful command-line option when debugging is @code{--log-file}, to access the build log." msgstr "Использование @code{--keep-failed} помогает при отладке ошибок сборки, так как эта опция предоставляет доступ к дереву неудачных сборок. Другая полезная опция командной строки при отладке - @code{--log-file}, которая даёт доступ к логу сборки." #. type: Plain text -#: guix-git/doc/contributing.texi:370 +#: guix-git/doc/contributing.texi:400 msgid "If the package is unknown to the @command{guix} command, it may be that the source file contains a syntax error, or lacks a @code{define-public} clause to export the package variable. To figure it out, you may load the module from Guile to get more information about the actual error:" msgstr "Если пакет не известен команде @command{guix}, это может означать, что файл исходника содержит синтаксическую ошибку или не имеет предложения @code{define-public}, которое экспортирует переменную пакета. Чтобы разобраться, можно загрузить модуль из Guile и получить больше информации о текущей ошибке:" #. type: example -#: guix-git/doc/contributing.texi:373 +#: guix-git/doc/contributing.texi:403 #, no-wrap msgid "./pre-inst-env guile -c '(use-modules (gnu packages gnew))'\n" msgstr "./pre-inst-env guile -c '(use-modules (gnu packages gnew))'\n" #. type: Plain text -#: guix-git/doc/contributing.texi:380 +#: guix-git/doc/contributing.texi:410 msgid "Once your package builds correctly, please send us a patch (@pxref{Submitting Patches}). Well, if you need help, we will be happy to help you too. Once the patch is committed in the Guix repository, the new package automatically gets built on the supported platforms by @url{https://@value{SUBSTITUTE-SERVER-1}, our continuous integration system}." msgstr "Если ваш пакет собирается без ошибок, пришлите нам свой патч (@pxref{Submitting Patches}). Если вам нужна помощь, мы будем рады помочь вам со своей стороны. После фиксации патча в репозитории Guix новый пакет будет автоматически собран для всех поддерживаемых платформ нашей @url{https://@value{SUBSTITUTE-SERVER-1} CI-системой}." #. type: cindex -#: guix-git/doc/contributing.texi:381 +#: guix-git/doc/contributing.texi:411 #, no-wrap msgid "substituter" msgstr "заменяющий" #. type: Plain text -#: guix-git/doc/contributing.texi:388 +#: guix-git/doc/contributing.texi:418 msgid "Users can obtain the new package definition simply by running @command{guix pull} (@pxref{Invoking guix pull}). When @code{@value{SUBSTITUTE-SERVER-1}} is done building the package, installing the package automatically downloads binaries from there (@pxref{Substitutes}). The only place where human intervention is needed is to review and apply the patch." msgstr "Пользователи могут получать новые доступные определения пакетов простым запуском @command{guix pull} (@pxref{Invoking guix pull}). Если @code{@value{SUBSTITUTE-SERVER-1}} выполнил сборку пакета, установка пакета выполнит автоматическое скачивание бинарных файлов оттуда (@pxref{Substitutes}). Единственное место, где нужна активность человека, - обзор и применение патча." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:404 -#: guix-git/doc/contributing.texi:405 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:434 +#: guix-git/doc/contributing.texi:435 #, no-wrap msgid "Software Freedom" msgstr "Свобода программного обеспечения" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "What may go into the distribution." msgstr "Что может быть принято в дистрибутив." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:432 -#: guix-git/doc/contributing.texi:433 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:462 +#: guix-git/doc/contributing.texi:463 #, no-wrap msgid "Package Naming" msgstr "Как называть пакеты" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "What's in a name?" msgstr "Что может быть в имени?" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:465 -#: guix-git/doc/contributing.texi:466 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:495 +#: guix-git/doc/contributing.texi:496 #, no-wrap msgid "Version Numbers" msgstr "Номера версий" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "When the name is not enough." msgstr "Когда имени не достаточно." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:572 -#: guix-git/doc/contributing.texi:573 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:602 +#: guix-git/doc/contributing.texi:603 #, no-wrap msgid "Synopses and Descriptions" msgstr "Краткие обзоры и описания" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Helping users find the right package." msgstr "Помощь пользователю в поиске нужного пакета." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:651 -#: guix-git/doc/contributing.texi:652 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:681 +#: guix-git/doc/contributing.texi:682 #, no-wrap msgid "Snippets versus Phases" msgstr "Сниппеты против Фаз" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Whether to use a snippet, or a build phase." msgstr "Где использовать сниппет, а где фазу сборки." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:666 -#: guix-git/doc/contributing.texi:667 guix-git/doc/guix.texi:1995 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:696 +#: guix-git/doc/contributing.texi:697 guix-git/doc/guix.texi:2012 #, no-wrap msgid "Emacs Packages" msgstr "Пакеты Emacs" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Your Elisp fix." msgstr "Ваш Elisp фикс." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:706 -#: guix-git/doc/contributing.texi:707 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:736 +#: guix-git/doc/contributing.texi:737 #, no-wrap msgid "Python Modules" msgstr "Модули Python" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "A touch of British comedy." msgstr "Английский юмор." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:782 -#: guix-git/doc/contributing.texi:783 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:812 +#: guix-git/doc/contributing.texi:813 #, no-wrap msgid "Perl Modules" msgstr "Модули Perl" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Little pearls." msgstr "Жемчужинки." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:798 -#: guix-git/doc/contributing.texi:799 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:828 +#: guix-git/doc/contributing.texi:829 #, no-wrap msgid "Java Packages" msgstr "Пакеты Java" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Coffee break." msgstr "Кофе-брейк." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:818 -#: guix-git/doc/contributing.texi:819 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:848 +#: guix-git/doc/contributing.texi:849 #, no-wrap msgid "Rust Crates" msgstr "Rust Crates пакеты" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Beware of oxidation." msgstr "Остерегайтесь окисления." #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:852 -#: guix-git/doc/contributing.texi:853 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:882 +#: guix-git/doc/contributing.texi:883 #, no-wrap msgid "Fonts" msgstr "Шрифты" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Fond of fonts." msgstr "Любителям шрифтов." #. type: cindex -#: guix-git/doc/contributing.texi:408 +#: guix-git/doc/contributing.texi:438 #, no-wrap msgid "free software" msgstr "свободное программное обеспечение" #. type: Plain text -#: guix-git/doc/contributing.texi:416 +#: guix-git/doc/contributing.texi:446 msgid "The GNU operating system has been developed so that users can have freedom in their computing. GNU is @dfn{free software}, meaning that users have the @url{https://www.gnu.org/philosophy/free-sw.html,four essential freedoms}: to run the program, to study and change the program in source code form, to redistribute exact copies, and to distribute modified versions. Packages found in the GNU distribution provide only software that conveys these four freedoms." msgstr "Операционная система GNU разработана, чтобы пользователи имели свободу при работе за компьютером. GNU --- это @dfn{свободное программное обеспечение}, то есть пользователи могут иметь @url{http://www.gnu.org/philosophy/free-sw.html,четыре важнейшие свободы}: запускать программу, изучать и изменять исходный код программы, распространять самостоятельно точные копии и распространять изменённые версии. Пакеты, включенные в дистрибутив GNU, поставляют только программное обеспечение, которое даёт эти четыре свободы." #. type: Plain text -#: guix-git/doc/contributing.texi:422 +#: guix-git/doc/contributing.texi:452 msgid "In addition, the GNU distribution follow the @url{https://www.gnu.org/distros/free-system-distribution-guidelines.html,free software distribution guidelines}. Among other things, these guidelines reject non-free firmware, recommendations of non-free software, and discuss ways to deal with trademarks and patents." msgstr "Также дистрибутив GNU следует @url{http://www.gnu.org/distros/free-system-distribution-guidelines.html,рекомендациям для свободных дистрибутивов}. Эти рекомендации, среди прочих указаний, также отклоняют несвободные встроенные программы, рекомендации несвободного программного обеспечения и содержат доводы о том, как взаимодействовать с торговыми марками и патентами." #. type: Plain text -#: guix-git/doc/contributing.texi:430 +#: guix-git/doc/contributing.texi:460 msgid "Some otherwise free upstream package sources contain a small and optional subset that violates the above guidelines, for instance because this subset is itself non-free code. When that happens, the offending items are removed with appropriate patches or code snippets in the @code{origin} form of the package (@pxref{Defining Packages}). This way, @code{guix build --source} returns the ``freed'' source rather than the unmodified upstream source." msgstr "Но тем не менее, некоторые источники пакетов в оригинале содержат небольшие необязательные компоненты, которые нарушают указанные рекомендации, например, это может быть несвободный код. Если это происходит, такие компоненты удаляются применением соответствующих патчей или сниппетов в @code{исходный} код пакета @pxref{Defining Packages}). Так @code{guix build --source} возвращает \"восстановленный свободный\" исходный код вместо изначального исходника." #. type: cindex -#: guix-git/doc/contributing.texi:435 +#: guix-git/doc/contributing.texi:465 #, no-wrap msgid "package name" msgstr "имя пакета" #. type: Plain text -#: guix-git/doc/contributing.texi:443 +#: guix-git/doc/contributing.texi:473 msgid "A package actually has two names associated with it. First, there is the name of the @emph{Scheme variable}, the one following @code{define-public}. By this name, the package can be made known in the Scheme code, for instance as input to another package. Second, there is the string in the @code{name} field of a package definition. This name is used by package management commands such as @command{guix package} and @command{guix build}." msgstr "Пакет, в действительности, имеет два имени, ассоциированных с ним: первое --- это имя @emph{переменной Scheme}, которая указана в @code{define-public}. Это имя делает пакет доступным в коде Scheme, например, может использоваться как входные данные другого пакета. Второе --- это строка в поле @code{name} в определении пакета. Это имя используется командами управления пакетами, например, @command{guix package} и @command{guix build}." #. type: Plain text -#: guix-git/doc/contributing.texi:448 +#: guix-git/doc/contributing.texi:478 msgid "Both are usually the same and correspond to the lowercase conversion of the project name chosen upstream, with underscores replaced with hyphens. For instance, GNUnet is available as @code{gnunet}, and SDL_net as @code{sdl-net}." msgstr "Оба обычно представляют собой строки в нижнем регистре, содержащие имя оригинального проекта с дефисами вместо символов нижнего подчёркивания. Например, GNUnet доступен как @code{gnunet}, а SDL_net --- как @code{sdl-net}." #. type: Plain text -#: guix-git/doc/contributing.texi:456 +#: guix-git/doc/contributing.texi:486 msgid "A noteworthy exception to this rule is when the project name is only a single character, or if an older maintained project with the same name already exists---regardless of whether it has already been packaged for Guix. Use common sense to make such names unambiguous and meaningful. For example, Guix's package for the shell called ``s'' upstream is @code{s-shell} and @emph{not} @code{s}. Feel free to ask your fellow hackers for inspiration." msgstr "Заслуживающим внимания исключением из этого правила является случай, когда имя проекта состоит только из одного символа, или если уже существует более старый поддерживаемый проект с таким же именем---независимо от того, был ли он уже упакован для Guix. Пользуйтесь здравым смыслом, чтобы сделать такие имена однозначными и значимыми. Например, пакет Guix для оболочки (shell) под названием ``s ''---это @code{s-shell} и @emph{нет} @code{s}. Не стесняйтесь обращаться к своим коллегам-хакерам за вдохновением." #. type: Plain text -#: guix-git/doc/contributing.texi:461 +#: guix-git/doc/contributing.texi:491 msgid "We do not add @code{lib} prefixes for library packages, unless these are already part of the official project name. But @pxref{Python Modules} and @ref{Perl Modules} for special rules concerning modules for the Python and Perl languages." msgstr "Мы не добавляем приставку @code{lib} для пакетов библиотек, несмотря на то, что это уже часть официального имени пакета. Но для @pxref{Python Modules} и @ref{Perl Modules} есть исключения, касающиеся модулей для языков Python и Perl." #. type: Plain text -#: guix-git/doc/contributing.texi:463 +#: guix-git/doc/contributing.texi:493 msgid "Font package names are handled differently, @pxref{Fonts}." msgstr "При именовании пакетов шрифтов имена меняются, @pxref{Fonts}." #. type: cindex -#: guix-git/doc/contributing.texi:468 +#: guix-git/doc/contributing.texi:498 #, no-wrap msgid "package version" msgstr "версия пакета" #. type: Plain text -#: guix-git/doc/contributing.texi:477 +#: guix-git/doc/contributing.texi:507 msgid "We usually package only the latest version of a given free software project. But sometimes, for instance for incompatible library versions, two (or more) versions of the same package are needed. These require different Scheme variable names. We use the name as defined in @ref{Package Naming} for the most recent version; previous versions use the same name, suffixed by @code{-} and the smallest prefix of the version number that may distinguish the two versions." msgstr "Обычно мы опакечиваем только последнюю версию некоторого программного обеспечения. Но иногда, например, при наличии несовместимых версий библиотек, нужны две (или более) версии одного пакета. Это требует разных имён переменных Scheme. Мы используем имя, определённое в @ref{Package Naming}, для самой последней версии; предыдущие версии используют такое же имя с добавлением @code{-} и номера версии, что позволяет отличить две версии." #. type: Plain text -#: guix-git/doc/contributing.texi:480 +#: guix-git/doc/contributing.texi:510 msgid "The name inside the package definition is the same for all versions of a package and does not contain any version number." msgstr "Имя внутри описания пакета остаётся одно для всех версий пакета и не содержит номера версии." #. type: Plain text -#: guix-git/doc/contributing.texi:482 +#: guix-git/doc/contributing.texi:512 msgid "For instance, the versions 2.24.20 and 3.9.12 of GTK+ may be packaged as follows:" msgstr "Например, версии GTK+ 2.24.20 и 3.9.12 могут опакечиваться так:" #. type: lisp -#: guix-git/doc/contributing.texi:494 +#: guix-git/doc/contributing.texi:524 #, no-wrap msgid "" "(define-public gtk+\n" @@ -939,12 +981,12 @@ msgstr "" " ...))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:496 +#: guix-git/doc/contributing.texi:526 msgid "If we also wanted GTK+ 3.8.2, this would be packaged as" msgstr "Если нам также нужен GTK+ 3.8.2, он будет размещён в пакете" #. type: lisp -#: guix-git/doc/contributing.texi:502 +#: guix-git/doc/contributing.texi:532 #, no-wrap msgid "" "(define-public gtk+-3.8\n" @@ -960,23 +1002,23 @@ msgstr "" " ...))\n" #. type: cindex -#: guix-git/doc/contributing.texi:506 +#: guix-git/doc/contributing.texi:536 #, no-wrap msgid "version number, for VCS snapshots" msgstr "номер версии, для снимков СКВ" #. type: Plain text -#: guix-git/doc/contributing.texi:512 +#: guix-git/doc/contributing.texi:542 msgid "Occasionally, we package snapshots of upstream's version control system (VCS) instead of formal releases. This should remain exceptional, because it is up to upstream developers to clarify what the stable release is. Yet, it is sometimes necessary. So, what should we put in the @code{version} field?" msgstr "Порой мы опакечиваем снепшоты исходников из системы контроля версий (СКВ) вместо официальных релизов. Это остаётся исключением, потому что только разработчики оригинальных программ решают, что является стабильным релизом. Иногда это имеет значение. Что же мы должны писать в поле @code{версия}?" #. type: Plain text -#: guix-git/doc/contributing.texi:520 +#: guix-git/doc/contributing.texi:550 msgid "Clearly, we need to make the commit identifier of the VCS snapshot visible in the version string, but we also need to make sure that the version string is monotonically increasing so that @command{guix package --upgrade} can determine which version is newer. Since commit identifiers, notably with Git, are not monotonically increasing, we add a revision number that we increase each time we upgrade to a newer snapshot. The resulting version string looks like this:" msgstr "Ясно, что нужно сделать отображение идентификатора коммита снепшота СКВ внутри строки версии, но мы также должны убедиться, что строка \"версия\" монотонно увеличивается, так чтобы @command{guix package --upgrade} могла определить, какая версия новее. Так как идентификаторы коммитов, что точно, Git, не увеличиваются, мы добавляем номер ревизии, которую мы увеличиваем каждый раз, когда мы обновляем до нового снепшота. Результирующая строка версии выглядит так:" #. type: example -#: guix-git/doc/contributing.texi:529 +#: guix-git/doc/contributing.texi:559 #, no-wrap msgid "" "2.0.11-3.cabba9e\n" @@ -996,13 +1038,13 @@ msgstr "" "последняя версия оригинала\n" #. type: Plain text -#: guix-git/doc/contributing.texi:539 +#: guix-git/doc/contributing.texi:569 #, fuzzy msgid "It is a good idea to strip commit identifiers in the @code{version} field to, say, 7 digits. It avoids an aesthetic annoyance (assuming aesthetics have a role to play here) as well as problems related to OS limits such as the maximum shebang length (127 bytes for the Linux kernel). There are helper functions for doing this for packages using @code{git-fetch} or @code{hg-fetch} (see below). It is best to use the full commit identifiers in @code{origin}s, though, to avoid ambiguities. A typical package definition may look like this:" msgstr "Хорошая идея обрезать идентификаторы коммитов в поле @code{version}, скажем, до 7 цифр. Это позволяет избежать эстетического раздражения (эстетика здесь имеет значение), а также проблем с ограничениями ОС, как например, максимальная длина (127 байт для ядра Linux). Лучшее - это использовать полный идентификатор коммита в поле источник --- @code{origin} --- что позволяет избегать повторов. Стандартное описание пакета может выглядеть так:" #. type: lisp -#: guix-git/doc/contributing.texi:556 +#: guix-git/doc/contributing.texi:586 #, no-wrap msgid "" "(define my-package\n" @@ -1036,20 +1078,20 @@ msgstr "" " )))\n" #. type: deffn -#: guix-git/doc/contributing.texi:558 +#: guix-git/doc/contributing.texi:588 #, fuzzy, no-wrap msgid "{Scheme Procedure} git-version @var{VERSION} @var{REVISION} @var{COMMIT}" msgstr "{Scheme Procedure} mixed-text-file @var{name} @var{text} @dots{}" #. type: deffn -#: guix-git/doc/contributing.texi:560 +#: guix-git/doc/contributing.texi:590 #, fuzzy #| msgid "Return the list of packages known to @var{inferior}." msgid "Return the version string for packages using @code{git-fetch}." msgstr "Возвращает список пакетов, относящихся к ранней версии @var{inferior}." #. type: lisp -#: guix-git/doc/contributing.texi:564 +#: guix-git/doc/contributing.texi:594 #, no-wrap msgid "" "(git-version \"0.2.3\" \"0\" \"93818c936ee7e2f1ba1b315578bde363a7d43d05\")\n" @@ -1059,71 +1101,71 @@ msgstr "" "@result{} \"0.2.3-0.93818c9\"\n" #. type: deffn -#: guix-git/doc/contributing.texi:567 +#: guix-git/doc/contributing.texi:597 #, fuzzy, no-wrap msgid "{Scheme Procedure} hg-version @var{VERSION} @var{REVISION} @var{CHANGESET}" msgstr "{Scheme Procedure} mixed-text-file @var{name} @var{text} @dots{}" #. type: deffn -#: guix-git/doc/contributing.texi:570 +#: guix-git/doc/contributing.texi:600 msgid "Return the version string for packages using @code{hg-fetch}. It works in the same way as @code{git-version}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:575 +#: guix-git/doc/contributing.texi:605 #, no-wrap msgid "package description" msgstr "описание пакета" #. type: cindex -#: guix-git/doc/contributing.texi:576 +#: guix-git/doc/contributing.texi:606 #, no-wrap msgid "package synopsis" msgstr "краткий обзор пакета" #. type: Plain text -#: guix-git/doc/contributing.texi:583 +#: guix-git/doc/contributing.texi:613 msgid "As we have seen before, each package in GNU@tie{}Guix includes a synopsis and a description (@pxref{Defining Packages}). Synopses and descriptions are important: They are what @command{guix package --search} searches, and a crucial piece of information to help users determine whether a given package suits their needs. Consequently, packagers should pay attention to what goes into them." msgstr "Как мы видели ранее, каждый пакет в GNU@tie{}Guix включает краткое описание и полное описание (@pxref{Defining Packages}). Краткие описания и полные описания важны: по ним производится поиск @command{guix package --search}, и это важная информация, которая помогает пользователям определить, насколько пакет соответствует их потребностям. Следовательно, пакеты должны отвечать требованиям, предъявляемым к ним." #. type: Plain text -#: guix-git/doc/contributing.texi:591 +#: guix-git/doc/contributing.texi:621 msgid "Synopses must start with a capital letter and must not end with a period. They must not start with ``a'' or ``the'', which usually does not bring anything; for instance, prefer ``File-frobbing tool'' over ``A tool that frobs files''. The synopsis should say what the package is---e.g., ``Core GNU utilities (file, text, shell)''---or what it is used for---e.g., the synopsis for GNU@tie{}grep is ``Print lines matching a pattern''." msgstr "Краткие описания должны начинаться с прописной буквы и не должны заканчиваться точкой. Они не должны начинаться с артикля (англ. \"a\" или \"the\"), что обычно ничего не значит; например, лучше начать \"File-frobbing tool\" вместо \"A tool that frobs files\". Краткое описание должно сообщать о том, что представляет собой пакет, то есть: \"Основные утилиты GNU (файлы, текст, оболочка)\", - или для чего он используется, то есть краткое описание для GNU@tie{}grep таково: \"Печать строк, содержащих паттерн\"." #. type: Plain text -#: guix-git/doc/contributing.texi:601 +#: guix-git/doc/contributing.texi:631 msgid "Keep in mind that the synopsis must be meaningful for a very wide audience. For example, ``Manipulate alignments in the SAM format'' might make sense for a seasoned bioinformatics researcher, but might be fairly unhelpful or even misleading to a non-specialized audience. It is a good idea to come up with a synopsis that gives an idea of the application domain of the package. In this example, this might give something like ``Manipulate nucleotide sequence alignments'', which hopefully gives the user a better idea of whether this is what they are looking for." msgstr "Помните, что краткое описание должно быть понятным для очень широкой аудитории. Например, \"Манипулирование выравниванием в формате SAM\" может быть понятно продвинутым исследователям в области биоинформатики, но совершенно бесполезно или может ввести в заблужение не специалистов. Хорошая идея --- включать в краткое описание идею группы приложений, к которой относится пакет. В данном примере можно предложить такой вариант: \"Манипулирование выравниванием нуклеотидных последовательностей\", что, в целом, даёт пользователю лучшее представление о том, на что они смотрят." #. type: Plain text -#: guix-git/doc/contributing.texi:609 +#: guix-git/doc/contributing.texi:639 msgid "Descriptions should take between five and ten lines. Use full sentences, and avoid using acronyms without first introducing them. Please avoid marketing phrases such as ``world-leading'', ``industrial-strength'', and ``next-generation'', and avoid superlatives like ``the most advanced''---they are not helpful to users looking for a package and may even sound suspicious. Instead, try to be factual, mentioning use cases and features." msgstr "Описания должны занимать от 5 до 10 строк. Используйте полные предложения, использование аббревиатур возможно при их первичной расшифровке. Пожалуйста, не пишите маркетинговые фразы типа \"мировой лидер\", \"промышленный\", \"следующего поколения\", также избегайте признаки превосходства, как \"самый продвинутый\" --- это не помогает пользователям отыскать пакет, и возможно, звучит сомнительно. Вместо этого рассказывайте о фактах, упоминая особенности и применение." #. type: cindex -#: guix-git/doc/contributing.texi:610 +#: guix-git/doc/contributing.texi:640 #, no-wrap msgid "Texinfo markup, in package descriptions" msgstr "Разметка Texinfo, в описаниях пакетов" #. type: Plain text -#: guix-git/doc/contributing.texi:619 +#: guix-git/doc/contributing.texi:649 msgid "Descriptions can include Texinfo markup, which is useful to introduce ornaments such as @code{@@code} or @code{@@dfn}, bullet lists, or hyperlinks (@pxref{Overview,,, texinfo, GNU Texinfo}). However you should be careful when using some characters for example @samp{@@} and curly braces which are the basic special characters in Texinfo (@pxref{Special Characters,,, texinfo, GNU Texinfo}). User interfaces such as @command{guix package --show} take care of rendering it appropriately." msgstr "Описания могут содержать разметку Texinfo, которая полезна при введении использовании подсветки как @code{@@code} или @code{@@dfn}, списков или гиперссылок (@pxref{Overview,,, texinfo, GNU Texinfo}). Однако будьте внимательны при пользовании символов @samp{@@} и фигурных скобок, которые вляются основными спецсимволами в Texinfo (@pxref{Special Characters,,, texinfo, GNU Texinfo}). Пользовательский интерфейс, например, @command{guix package --show}, учитывает и выводит текст с разметкой." #. type: Plain text -#: guix-git/doc/contributing.texi:625 +#: guix-git/doc/contributing.texi:655 msgid "Synopses and descriptions are translated by volunteers @uref{https://translate.fedoraproject.org/projects/guix/packages, at Weblate} so that as many users as possible can read them in their native language. User interfaces search them and display them in the language specified by the current locale." msgstr "Синопсисы и описания перевелены волонтерами @uref{https://translate.fedoraproject.org/projects/guix/packages, at Weblate} чтобы как можно больше пользователей могли читать их на своем родном языке. Пользовательские интерфейсы ищут их и отображают на языке, заданном текущей локалью." #. type: Plain text -#: guix-git/doc/contributing.texi:630 +#: guix-git/doc/contributing.texi:660 msgid "To allow @command{xgettext} to extract them as translatable strings, synopses and descriptions @emph{must be literal strings}. This means that you cannot use @code{string-append} or @code{format} to construct these strings:" msgstr "Чтобы дать возможность @command{xgettext} извлекать их как текст для перевода, краткие и полные описания @emph{должны быть буквенными строками}. Это означает, что нельзя пользоваться @code{string-append} или @code{format} при составлении этих строк:" #. type: lisp -#: guix-git/doc/contributing.texi:636 +#: guix-git/doc/contributing.texi:666 #, no-wrap msgid "" "(package\n" @@ -1137,12 +1179,12 @@ msgstr "" " (description (string-append \"Эта строка \" \"*не поддерживает*\" \" перевод.\")))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:644 +#: guix-git/doc/contributing.texi:674 msgid "Translation is a lot of work so, as a packager, please pay even more attention to your synopses and descriptions as every change may entail additional work for translators. In order to help them, it is possible to make recommendations or instructions visible to them by inserting special comments like this (@pxref{xgettext Invocation,,, gettext, GNU Gettext}):" msgstr "Перевод --- трудоёмкая работа. Как автор пакета, пожалуйста, уделите внимание краткому и полному описаниям, потому что каждое изменение влечет дополнительную работу для переводчиков. Чтобы помочь им, можно сделать рекомендации или инструкции, вставив специальные комментарии, как этот (@pxref{xgettext Invocation,,, gettext, GNU Gettext}):" #. type: lisp -#: guix-git/doc/contributing.texi:649 +#: guix-git/doc/contributing.texi:679 #, no-wrap msgid "" ";; TRANSLATORS: \"X11 resize-and-rotate\" should not be translated.\n" @@ -1154,445 +1196,449 @@ msgstr "" "for the X11 resize-and-rotate (RandR) extension. @dots{}\")\n" #. type: cindex -#: guix-git/doc/contributing.texi:654 +#: guix-git/doc/contributing.texi:684 #, no-wrap msgid "snippets, when to use" msgstr "сниппеты, где использовать" #. type: Plain text -#: guix-git/doc/contributing.texi:665 +#: guix-git/doc/contributing.texi:695 msgid "The boundary between using an origin snippet versus a build phase to modify the sources of a package can be elusive. Origin snippets are typically used to remove unwanted files such as bundled libraries, nonfree sources, or to apply simple substitutions. The source derived from an origin should produce a source that can be used to build the package on any system that the upstream package supports (i.e., act as the corresponding source). In particular, origin snippets must not embed store items in the sources; such patching should rather be done using build phases. Refer to the @code{origin} record documentation for more information (@pxref{origin Reference})." msgstr "Граница между использованием сниппета и фазы сборки для изменения исходных кодов пакета может быть неуловимой. Обычно сниппеты используются для удаления нежелательных файлов, таких как связанные библиотеки, несвободные исходники, или для простых замен. Исходник, производный от оригинального исходника, должен создавать исходник, который можно использовать для сборки пакета в любой системе, поддерживаемой апстримом пакета. (т.е. действовать как соответствующий исходник). В частности, сниппеты не должны встраивать элементы хранилища в источники; такое исправление лучше производить на этапах сборки. Обратитель к @code{origin} документации за дополнительной информацией (@pxref{origin Reference})." #. type: cindex -#: guix-git/doc/contributing.texi:669 +#: guix-git/doc/contributing.texi:699 #, no-wrap msgid "emacs, packaging" msgstr "Пакеты Emacs" #. type: cindex -#: guix-git/doc/contributing.texi:670 +#: guix-git/doc/contributing.texi:700 #, no-wrap msgid "elisp, packaging" msgstr "лицензии пакетов" #. type: Plain text -#: guix-git/doc/contributing.texi:682 +#: guix-git/doc/contributing.texi:712 msgid "Emacs packages should preferably use the Emacs build system (@pxref{emacs-build-system}), for uniformity and the benefits provided by its build phases, such as the auto-generation of the autoloads file and the byte compilation of the sources. Because there is no standardized way to run a test suite for Emacs packages, tests are disabled by default. When a test suite is available, it should be enabled by setting the @code{#:tests?} argument to @code{#true}. By default, the command to run the test is @command{make check}, but any command can be specified via the @code{#:test-command} argument. The @code{#:test-command} argument expects a list containing a command and its arguments, to be invoked during the @code{check} phase." msgstr "Emacs пакеты должны предпочтительно использовать систему сборки Emacs (@pxref{emacs-build-system}), для единообразия и преимуществ, предоставляемых этапами сборки, таких как автоматическое создание файла автозагрузки и байтовая компиляция исходников. Поскольку не существует стандартизированного способа запуска набора тестов для пакетов Emacs, тесты по умолчанию отключены. Когда доступен набор тестов, его следует включить, дав аргументу @code{#:tests?} значение @code{#true}. По умолчанию команда для запуска теста---@command{make check}, но может быть использована любая команда , указанная в аргументе @code{#:test-command}. Аргумент @code{#:test-command} ожидает, что список, содержащий команду и ее аргументы, будет вызван во время @code{check} фазы." #. type: Plain text -#: guix-git/doc/contributing.texi:687 +#: guix-git/doc/contributing.texi:717 msgid "The Elisp dependencies of Emacs packages are typically provided as @code{propagated-inputs} when required at run time. As for other packages, build or test dependencies should be specified as @code{native-inputs}." msgstr "Elisp зависимости пакетов Emacs обычно предоставляются как @code{propagated-inputs}, если они необходимы во время работы программы. Что касается других пакетов, зависимости сборки или тестирования должны быть указаны как @code{native-inputs}." #. type: Plain text -#: guix-git/doc/contributing.texi:696 +#: guix-git/doc/contributing.texi:726 msgid "Emacs packages sometimes depend on resources directories that should be installed along the Elisp files. The @code{#:include} argument can be used for that purpose, by specifying a list of regexps to match. The best practice when using the @code{#:include} argument is to extend rather than override its default value (accessible via the @code{%default-include} variable). As an example, a yasnippet extension package typically include a @file{snippets} directory, which could be copied to the installation directory using:" msgstr "Пакеты Emacs иногда зависят от каталогов с ресурсами, которые должны быть установлены вместе с файлами Elisp. Аргумент @code{#:include} можно использовать для этой цели, указав список совпадающих регулярных выражений. Лучшая практика при использовании аргумента @code{#:include} заключается в расширении, а не изменении его значения по умолчанию (доступный через переменную @code{%default-include} variable). Например, пакет расширения yasnippet обычно включает каталог @file{snippets}, который можно скопировать в каталог установки, используя:" #. type: lisp -#: guix-git/doc/contributing.texi:699 +#: guix-git/doc/contributing.texi:729 #, fuzzy, no-wrap #| msgid "#:include (cons \"^snippets/\" %default-include))\n" msgid "#:include (cons \"^snippets/\" %default-include)\n" msgstr "#:include (cons \"^snippets/\" %default-include))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:705 +#: guix-git/doc/contributing.texi:735 msgid "When encountering problems, it is wise to check for the presence of the @code{Package-Requires} extension header in the package main source file, and whether any dependencies and their versions listed therein are satisfied." msgstr "При возникновении проблем целесообразно проверить наличие заголовка расширения @code{Package-Requires} в основном исходном файле пакета, а также соответствие перечисленным в нем зависимостям и их версиям." #. type: cindex -#: guix-git/doc/contributing.texi:709 +#: guix-git/doc/contributing.texi:739 #, no-wrap msgid "python" msgstr "python" #. type: Plain text -#: guix-git/doc/contributing.texi:715 +#: guix-git/doc/contributing.texi:745 msgid "We currently package Python 2 and Python 3, under the Scheme variable names @code{python-2} and @code{python} as explained in @ref{Version Numbers}. To avoid confusion and naming clashes with other programming languages, it seems desirable that the name of a package for a Python module contains the word @code{python}." msgstr "В настоящее время мы поставляем пакеты Python 2 и Python 3 через переменную Scheme под именами @code{python-2} и @code{python} в соответствии с @ref{Version Numbers}. Чтобы предотвратить путанницу и конфликты имён других языков программирования, модули Python содержат слово @code{python}." #. type: Plain text -#: guix-git/doc/contributing.texi:722 +#: guix-git/doc/contributing.texi:752 msgid "Some modules are compatible with only one version of Python, others with both. If the package Foo is compiled with Python 3, we name it @code{python-foo}. If it is compiled with Python 2, we name it @code{python2-foo}. Packages should be added when they are necessary; we don't add Python 2 variants of the package unless we are going to use them." msgstr "Некоторые модули совместимы только с одной версией Python, другие - с обоими. Если пакет Foo работает только с Python 3, мы называем его @code{python-foo}. Если он работает только с Python 2, мы называем его @code{python2-foo}. Если он совместим с обеими версиями, мы создаём два пакета с соответствующими именами." #. type: Plain text -#: guix-git/doc/contributing.texi:728 +#: guix-git/doc/contributing.texi:758 msgid "If a project already contains the word @code{python}, we drop this; for instance, the module python-dateutil is packaged under the names @code{python-dateutil} and @code{python2-dateutil}. If the project name starts with @code{py} (e.g.@: @code{pytz}), we keep it and prefix it as described above." msgstr "Если проект уже содержит слово @code{python}, мы отбрасываем его; например, модуль python-dateutil опакечен под именем @code{python-dateutil} и @code{python2-dateutil}. Если имя проекта начинается с @code{py} (т.е.@: @code{pytz}), мы оставляем такое имя и добавляем префикс, как это описано выше." #. type: subsubsection -#: guix-git/doc/contributing.texi:729 +#: guix-git/doc/contributing.texi:759 #, no-wrap msgid "Specifying Dependencies" msgstr "Перечисление зависимостей" #. type: cindex -#: guix-git/doc/contributing.texi:730 +#: guix-git/doc/contributing.texi:760 #, no-wrap msgid "inputs, for Python packages" msgstr "входные данные, для пакетов Python" #. type: Plain text -#: guix-git/doc/contributing.texi:735 +#: guix-git/doc/contributing.texi:765 msgid "Dependency information for Python packages is usually available in the package source tree, with varying degrees of accuracy: in the @file{setup.py} file, in @file{requirements.txt}, or in @file{tox.ini}." msgstr "Информация о зависимостях для пакетов Python обычно доступна в дереве исходников пакета с различной степенью точности --- в файле @file{setup.py}, в @file{requirements.txt} или в @file{tox.ini}." #. type: Plain text -#: guix-git/doc/contributing.texi:741 +#: guix-git/doc/contributing.texi:771 msgid "Your mission, when writing a recipe for a Python package, is to map these dependencies to the appropriate type of ``input'' (@pxref{package Reference, inputs}). Although the @code{pypi} importer normally does a good job (@pxref{Invoking guix import}), you may want to check the following check list to determine which dependency goes where." msgstr "Ваша миссия при написании рецепта сборки пакета Python --- отобразить эти зависимости в должном типе \"input\" (@pxref{package Reference, inputs}). Хотя импортёр @code{pypi} обычно отрабатывает хорошо (@pxref{Invoking guix import}), возможно, вы желаете просмотреть приведённый чек-лист, чтобы узнать о зависимостях." #. type: itemize -#: guix-git/doc/contributing.texi:749 +#: guix-git/doc/contributing.texi:779 msgid "We currently package Python 2 with @code{setuptools} and @code{pip} installed like Python 3.4 has per default. Thus you don't need to specify either of these as an input. @command{guix lint} will warn you if you do." msgstr "В настоящее время мы поставляем пакет Python 2 с @code{setuptools} и @code{pip}, установленные как Python 3.4 по умолчанию. Так что не нужно обозначать их как входные данные (input). @command{guix lint} сообщит об ошибке, если это происходит." #. type: itemize -#: guix-git/doc/contributing.texi:755 +#: guix-git/doc/contributing.texi:785 msgid "Python dependencies required at run time go into @code{propagated-inputs}. They are typically defined with the @code{install_requires} keyword in @file{setup.py}, or in the @file{requirements.txt} file." msgstr "Зависимости Python, необходимые во время работы, идут в @code{propagated-inputs}. Они обычно определены с ключевым словом @code{install_requires} в @file{setup.py} или в файле @file{requirements.txt}." #. type: itemize -#: guix-git/doc/contributing.texi:763 +#: guix-git/doc/contributing.texi:793 msgid "Python packages required only at build time---e.g., those listed with the @code{setup_requires} keyword in @file{setup.py}---or only for testing---e.g., those in @code{tests_require}---go into @code{native-inputs}. The rationale is that (1) they do not need to be propagated because they are not needed at run time, and (2) in a cross-compilation context, it's the ``native'' input that we'd want." msgstr "Пакеты Python, необходимые только во время сборки, то есть обозначенные в списке с ключевым словом @code{setup_requires} в @file{setup.py}, или только для тестов, то есть со словом @code{tests_require}, указываются в @code{native-inputs}. Основная причина в том, что, первое, они не должны распространяться, потому что они не нужны для запуска и работы, и второе, в контексте кросс-компиляции это \"нативные\" входные данные, которые нам требуются." #. type: itemize -#: guix-git/doc/contributing.texi:767 +#: guix-git/doc/contributing.texi:797 msgid "Examples are the @code{pytest}, @code{mock}, and @code{nose} test frameworks. Of course if any of these packages is also required at run-time, it needs to go to @code{propagated-inputs}." msgstr "Примерами являются фреймворки тестирования @code{pytest}, @code{mock} и @code{nose}. Конечно, если какой-либо из этих пакетов также необходим во время запуска и работы, его следует указывать в @code{propagated-inputs}." #. type: itemize -#: guix-git/doc/contributing.texi:772 +#: guix-git/doc/contributing.texi:802 msgid "Anything that does not fall in the previous categories goes to @code{inputs}, for example programs or C libraries required for building Python packages containing C extensions." msgstr "Всё, что не попало в предыдущие категории, указывается в @code{inputs}, например, программы или библиотеки C, необходимые для сборки пакетов Python, которые используют расширения C." #. type: itemize -#: guix-git/doc/contributing.texi:778 +#: guix-git/doc/contributing.texi:808 msgid "If a Python package has optional dependencies (@code{extras_require}), it is up to you to decide whether to add them or not, based on their usefulness/overhead ratio (@pxref{Submitting Patches, @command{guix size}})." msgstr "Если у пакета Python есть необязательные зависимости (@code{extras_require}), самостоятельно решите, нужно ли их добавлять в зависимости от их полезности или избыточности (@pxref{Submitting Patches, @command{guix size}})." #. type: cindex -#: guix-git/doc/contributing.texi:785 +#: guix-git/doc/contributing.texi:815 #, no-wrap msgid "perl" msgstr "perl" #. type: Plain text -#: guix-git/doc/contributing.texi:796 +#: guix-git/doc/contributing.texi:826 msgid "Perl programs standing for themselves are named as any other package, using the lowercase upstream name. For Perl packages containing a single class, we use the lowercase class name, replace all occurrences of @code{::} by dashes and prepend the prefix @code{perl-}. So the class @code{XML::Parser} becomes @code{perl-xml-parser}. Modules containing several classes keep their lowercase upstream name and are also prepended by @code{perl-}. Such modules tend to have the word @code{perl} somewhere in their name, which gets dropped in favor of the prefix. For instance, @code{libwww-perl} becomes @code{perl-libwww}." msgstr "Программы Perl именуются как и любой другой пакет, используя исходное имя в нижнем регистре. Для пакетов Perl, содержащих отдельный класс мы используем имя класса в нижнем регистре, заменяем все вхождения @code{::} на дефисы и добавляем приставку @code{perl-}. Так класс @code{XML::Parser} становится @code{perl-xml-parser}. Модули, содержащие несколько классов, сохраняют свои изначальные имена в нижнем регистре и также имеют префикс @code{perl-}. Подобные модули имеют тенденцию писать слово @code{perl} где-либо в их имени, так что это слово удаляется, так как префикс содержит это слово. Например, @code{libwww-perl} становится @code{perl-libwww}." #. type: cindex -#: guix-git/doc/contributing.texi:801 +#: guix-git/doc/contributing.texi:831 #, no-wrap msgid "java" msgstr "java" #. type: Plain text -#: guix-git/doc/contributing.texi:804 +#: guix-git/doc/contributing.texi:834 msgid "Java programs standing for themselves are named as any other package, using the lowercase upstream name." msgstr "Программы Java именуются как любой другой пакет, используя исходное им в нижнем регистре." #. type: Plain text -#: guix-git/doc/contributing.texi:810 +#: guix-git/doc/contributing.texi:840 msgid "To avoid confusion and naming clashes with other programming languages, it is desirable that the name of a package for a Java package is prefixed with @code{java-}. If a project already contains the word @code{java}, we drop this; for instance, the package @code{ngsjava} is packaged under the name @code{java-ngs}." msgstr "Чтобы избежать путанницы и конфликтов имён с другими языками программирования, желательно именовать пакет, поставляющий программу Java, с префиксом @code{java-}. Если проект уже содержит слово @code{java}, мы обрезаем его. Например, пакет @code{ngsjava} опакечивается под именем @code{java-ngs}." #. type: Plain text -#: guix-git/doc/contributing.texi:816 +#: guix-git/doc/contributing.texi:846 msgid "For Java packages containing a single class or a small class hierarchy, we use the lowercase class name, replace all occurrences of @code{.} by dashes and prepend the prefix @code{java-}. So the class @code{apache.commons.cli} becomes package @code{java-apache-commons-cli}." msgstr "Для пакетов Java, содержащих отдельный класс или небольшую ирархию, мы используем имя в нижнем регистре, заменяя все вхождения @code{.} на дефисы, и указываем префикс @code{java-}. Так класс @code{apache.commons.cli} становится пакетом @code{java-apache-commons-cli}." #. type: cindex -#: guix-git/doc/contributing.texi:821 +#: guix-git/doc/contributing.texi:851 #, no-wrap msgid "rust" msgstr "rust" #. type: Plain text -#: guix-git/doc/contributing.texi:824 +#: guix-git/doc/contributing.texi:854 msgid "Rust programs standing for themselves are named as any other package, using the lowercase upstream name." msgstr "Программы Java именуются как любой другой пакет, используя исходное им в нижнем регистре." #. type: Plain text -#: guix-git/doc/contributing.texi:828 +#: guix-git/doc/contributing.texi:858 msgid "To prevent namespace collisions we prefix all other Rust packages with the @code{rust-} prefix. The name should be changed to lowercase as appropriate and dashes should remain in place." msgstr "Чтобы предотвратить конфликты пространства имен, мы используем префикс @code{rust-} для всех остальных пакетов Rust. Имя должно быть изменено на строчные буквы, если необходимо, и тире должны остаться на месте." #. type: Plain text -#: guix-git/doc/contributing.texi:834 +#: guix-git/doc/contributing.texi:864 msgid "In the rust ecosystem it is common for multiple incompatible versions of a package to be used at any given time, so all package definitions should have a versioned suffix. The versioned suffix is the left-most non-zero digit (and any leading zeros, of course). This follows the ``caret'' version scheme intended by Cargo. Examples@: @code{rust-clap-2}, @code{rust-rand-0.6}." msgstr "В экосистеме rust использование нескольких несовместимых версий пакета в любой момент времени является нормой, поэтому у всех пакетов должен быть версионный суффикс. Если пакет прошел версию 1.0.0, тогда достаточно только основного номера версии (например, @:@code{rust-clap-2}), в противном случае суффикс версии должен содержать как основную, так и вспомогательную версию (например, @:@code{rust-rand-0,6})." #. type: Plain text -#: guix-git/doc/contributing.texi:844 +#: guix-git/doc/contributing.texi:874 msgid "Because of the difficulty in reusing rust packages as pre-compiled inputs for other packages the Cargo build system (@pxref{Build Systems, @code{cargo-build-system}}) presents the @code{#:cargo-inputs} and @code{cargo-development-inputs} keywords as build system arguments. It would be helpful to think of these as similar to @code{propagated-inputs} and @code{native-inputs}. Rust @code{dependencies} and @code{build-dependencies} should go in @code{#:cargo-inputs}, and @code{dev-dependencies} should go in @code{#:cargo-development-inputs}. If a Rust package links to other libraries then the standard placement in @code{inputs} and the like should be used." msgstr "Из-за сложности повторного использования rust пакетов в качестве предварительно скомпилированных входных данных для других пакетов система сборки Cargo (@pxref{Build Systems, @code{cargo-build-system}}) представляет @code{#:cargo-input} и ключевые слова @code{cargo-development-input} в качестве аргументов для системы сборки. Было бы полезно думать о них как о @code{propagated-inputs} и @code{native-inputs}. Rust @code{dependencies} и @code{build-dependencies} должны идти в @code{#:cargo-input}, а @code{dev-dependencies} должен идти в @code{#:cargo-development-input}. Если пакет Rust ссылается на другие библиотеки, то следует использовать стандартное размещение в @code{input} и т.п." #. type: Plain text -#: guix-git/doc/contributing.texi:850 +#: guix-git/doc/contributing.texi:880 msgid "Care should be taken to ensure the correct version of dependencies are used; to this end we try to refrain from skipping the tests or using @code{#:skip-build?} when possible. Of course this is not always possible, as the package may be developed for a different Operating System, depend on features from the Nightly Rust compiler, or the test suite may have atrophied since it was released." msgstr "Следует позаботиться о том, чтобы была использована корректная версия зависимостей; с этой целью мы стараемся не пропускать тесты или использовать @code{#:skip-build?}, когда это возможно. Конечно, это не всегда возможно, так как пакет может быть разработан для другой операционной системы, зависить от новых функций компилятора Rust для разработчиков (Nightly), или тесты могли устареть с момента выпуска." #. type: cindex -#: guix-git/doc/contributing.texi:855 guix-git/doc/guix.texi:1930 +#: guix-git/doc/contributing.texi:885 guix-git/doc/guix.texi:1947 #, no-wrap msgid "fonts" msgstr "шрифты" #. type: Plain text -#: guix-git/doc/contributing.texi:861 +#: guix-git/doc/contributing.texi:891 msgid "For fonts that are in general not installed by a user for typesetting purposes, or that are distributed as part of a larger software package, we rely on the general packaging rules for software; for instance, this applies to the fonts delivered as part of the X.Org system or fonts that are part of TeX Live." msgstr "Для шрифтов, которые не установлены пользователем, исходя из настроек печати, или рааспространяемые как часть большого пакета программного обеспечения, мы применяем обычные правила опакечивания программного обеспечения. Например, это относится к шрифтам, поставляемым как часть системы X.Org, или шрифтов TeX Live." #. type: Plain text -#: guix-git/doc/contributing.texi:865 +#: guix-git/doc/contributing.texi:895 msgid "To make it easier for a user to search for fonts, names for other packages containing only fonts are constructed as follows, independently of the upstream package name." msgstr "Чтобы облегчить пользовательский поиск шрифтов, имена пакетов, содержащих только шрифты, создаются следующим образом, независимо от изначального имени пакета." #. type: Plain text -#: guix-git/doc/contributing.texi:873 +#: guix-git/doc/contributing.texi:903 msgid "The name of a package containing only one font family starts with @code{font-}; it is followed by the foundry name and a dash @code{-} if the foundry is known, and the font family name, in which spaces are replaced by dashes (and as usual, all upper case letters are transformed to lower case). For example, the Gentium font family by SIL is packaged under the name @code{font-sil-gentium}." msgstr "Имя пакета, содержащего только одно семейство шрифтов, начинается с @code{font-}; далее идёт литейное имя и дефис @code{-}, если литейное имя известно, а затем - имя семейства шрифтов, в котором пробелы заменяются дефисами (и обычно все буквы в верхнем регистре заменяются на нижний регистр). Например, семейство шрифтов Gentium от SIL опакечивается под именем @code{font-sil-gentium}." #. type: Plain text -#: guix-git/doc/contributing.texi:882 +#: guix-git/doc/contributing.texi:912 msgid "For a package containing several font families, the name of the collection is used in the place of the font family name. For instance, the Liberation fonts consist of three families, Liberation Sans, Liberation Serif and Liberation Mono. These could be packaged separately under the names @code{font-liberation-sans} and so on; but as they are distributed together under a common name, we prefer to package them together as @code{font-liberation}." msgstr "Пакет с несколькими семействами шрифтов имеет в названии имя коллекции вместо имени семейства. Например, шрифты Liberation состоят из трёх семейств: Liberation Sans, Liberation Serfif и Liberation Mono. Они могли бы опакечиваться отдельно под именами @code{font-liberation-sans} и так далее, но так как они распространяются вместе под общим именем, мы предпочитаем опакечивать их вместе как @code{font-liberation}." #. type: Plain text -#: guix-git/doc/contributing.texi:888 +#: guix-git/doc/contributing.texi:918 msgid "In the case where several formats of the same font family or font collection are packaged separately, a short form of the format, prepended by a dash, is added to the package name. We use @code{-ttf} for TrueType fonts, @code{-otf} for OpenType fonts and @code{-type1} for PostScript Type 1 fonts." msgstr "В случае, когда несколько форматов одного семейства щрифтов или коллекции шрифтов опакечена отдельно, в имени присутствует небольшая отметка о формате с предваряющим дефисом. Мы используем @code{-ttf} для шрифтов TrueType, @code{-otf} - для шрифтов OpenType - и @code{-type1} - для шрифтов PostScript Type 1." #. type: Plain text -#: guix-git/doc/contributing.texi:896 +#: guix-git/doc/contributing.texi:926 msgid "In general our code follows the GNU Coding Standards (@pxref{Top,,, standards, GNU Coding Standards}). However, they do not say much about Scheme, so here are some additional rules." msgstr "В основном наш код следует стандартам кодирования GNU (@pxref{Top,,, standards, GNU Coding Standards}). Но они не имеют исчерпывающих указаний для Scheme, так что есть дополнительные правила." #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:904 -#: guix-git/doc/contributing.texi:905 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:934 +#: guix-git/doc/contributing.texi:935 #, no-wrap msgid "Programming Paradigm" msgstr "Парадигма программирования" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "How to compose your elements." msgstr "Как компоновать элементы." #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:911 -#: guix-git/doc/contributing.texi:912 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:941 +#: guix-git/doc/contributing.texi:942 #, no-wrap msgid "Modules" msgstr "Модули" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Where to store your code?" msgstr "Где разместить код?" #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:922 -#: guix-git/doc/contributing.texi:923 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:952 +#: guix-git/doc/contributing.texi:953 #, no-wrap msgid "Data Types and Pattern Matching" msgstr "Типы данных и поиск образцов" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Implementing data structures." msgstr "Использование структур данных." #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:937 -#: guix-git/doc/contributing.texi:938 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:967 +#: guix-git/doc/contributing.texi:968 #, no-wrap msgid "Formatting Code" msgstr "Форматирование кода" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Writing conventions." msgstr "Написание соглашений." #. type: Plain text -#: guix-git/doc/contributing.texi:910 +#: guix-git/doc/contributing.texi:940 msgid "Scheme code in Guix is written in a purely functional style. One exception is code that involves input/output, and procedures that implement low-level concepts, such as the @code{memoize} procedure." msgstr "Код Scheme в Guix написан в чисто функциональном стиле. Одно исключение - это код, который вызывает ввод/вывод и процедуры, которые реализуют низкоровневые операции, как например, процедура @code{memoize}." #. type: Plain text -#: guix-git/doc/contributing.texi:918 +#: guix-git/doc/contributing.texi:948 msgid "Guile modules that are meant to be used on the builder side must live in the @code{(guix build @dots{})} name space. They must not refer to other Guix or GNU modules. However, it is OK for a ``host-side'' module to use a build-side module." msgstr "Модули Guile, которые вызываются для сборки, должны жить в пространстве имён @code{(guix build @dots{})}. Они не должны ссылаться на другие модули Guix или GNU. Однако это нормально, если модуль типа \"host-side\" использует модуль типа build-side." #. type: Plain text -#: guix-git/doc/contributing.texi:921 +#: guix-git/doc/contributing.texi:951 msgid "Modules that deal with the broader GNU system should be in the @code{(gnu @dots{})} name space rather than @code{(guix @dots{})}." msgstr "Модули, которые работают во всей системе GNU, должны быть в пространстве имён @code{(gnu @dots{})}, но не @code{(guix @dots{})}." #. type: Plain text -#: guix-git/doc/contributing.texi:930 +#: guix-git/doc/contributing.texi:960 msgid "The tendency in classical Lisp is to use lists to represent everything, and then to browse them ``by hand'' using @code{car}, @code{cdr}, @code{cadr}, and co. There are several problems with that style, notably the fact that it is hard to read, error-prone, and a hindrance to proper type error reports." msgstr "Правило классического Lisp - использование списков для представления всего и просмотр списков \"вручную\", используя @code{car}, @code{cdr}, @code{cadr} и тому подобное. Возникают некоторые проблемы этого стиля, например, это тяжело читается, провоцирует ошибки, и создаёт отчёты об ошибках без должной детализации." #. type: Plain text -#: guix-git/doc/contributing.texi:936 +#: guix-git/doc/contributing.texi:966 msgid "Guix code should define appropriate data types (for instance, using @code{define-record-type*}) rather than abuse lists. In addition, it should use pattern matching, via Guile’s @code{(ice-9 match)} module, especially when matching lists (@pxref{Pattern Matching,,, guile, GNU Guile Reference Manual})." msgstr "Код Guix должен определить соответствующие типы данных (то есть пользуясь, например, @code{define-record-type*}) вместо насущных списков. А также он должен использовать поиск по образцам с помощью модуля Guile @code{(ice-9 match)}, особенно для поиска списков." #. type: cindex -#: guix-git/doc/contributing.texi:940 +#: guix-git/doc/contributing.texi:970 #, no-wrap msgid "formatting code" msgstr "форматирование кода" #. type: cindex -#: guix-git/doc/contributing.texi:941 +#: guix-git/doc/contributing.texi:971 #, no-wrap msgid "coding style" msgstr "стиль кодирования" #. type: Plain text -#: guix-git/doc/contributing.texi:948 +#: guix-git/doc/contributing.texi:978 msgid "When writing Scheme code, we follow common wisdom among Scheme programmers. In general, we follow the @url{https://mumble.net/~campbell/scheme/style.txt, Riastradh's Lisp Style Rules}. This document happens to describe the conventions mostly used in Guile’s code too. It is very thoughtful and well written, so please do read it." msgstr "При написании кода Scheme мы пользуемся мудростью программистов Scheme. В основном мы следуем @url{http://mumble.net/~campbell/scheme/style.txt, Riastradh's Lisp Style Rules}. Этот документ, к счастью, содержит большинство соглашений, которые применимы также для кода Guile. Это очень вдумчиая работа, пожалуйста, прочтите её." #. type: Plain text -#: guix-git/doc/contributing.texi:955 +#: guix-git/doc/contributing.texi:985 msgid "Some special forms introduced in Guix, such as the @code{substitute*} macro, have special indentation rules. These are defined in the @file{.dir-locals.el} file, which Emacs automatically uses. Also note that Emacs-Guix provides @code{guix-devel-mode} mode that indents and highlights Guix code properly (@pxref{Development,,, emacs-guix, The Emacs-Guix Reference Manual})." msgstr "Некоторые специальные формы, вводимые в Guix, как например, макрос @code{substitute*}, имеют специальные правила отступов. Они определены в файле @file{.dir-locals.el}, которые использует Emacs автоматически. Также отметим, что Emacs-Guix предоставляет режим @code{guix-devel-mode}, который вставляет отступы и подсвечивает код Guix должным образом (@pxref{Development,,, emacs-guix, The Emacs-Guix Reference Manual})." #. type: cindex -#: guix-git/doc/contributing.texi:956 +#: guix-git/doc/contributing.texi:986 #, no-wrap msgid "indentation, of code" msgstr "отступы, в коде" #. type: cindex -#: guix-git/doc/contributing.texi:957 +#: guix-git/doc/contributing.texi:987 #, no-wrap msgid "formatting, of code" msgstr "форматировние, кода" #. type: Plain text -#: guix-git/doc/contributing.texi:960 +#: guix-git/doc/contributing.texi:990 msgid "If you do not use Emacs, please make sure to let your editor knows these rules. To automatically indent a package definition, you can also run:" msgstr "Если вы не пользуетесь Emacs, пожалуйста убедитесь, что ваш редактор знает эти правила. Для автоматической расстановки отступов можно запустить:" #. type: example -#: guix-git/doc/contributing.texi:963 -#, no-wrap -msgid "./etc/indent-code.el gnu/packages/@var{file}.scm @var{package}\n" -msgstr "./etc/indent-code.el gnu/packages/@var{file}.scm @var{package}\n" +#: guix-git/doc/contributing.texi:993 +#, fuzzy, no-wrap +#| msgid "guix install @var{package}\n" +msgid "./pre-inst-env guix style @var{package}\n" +msgstr "guix install @var{package}\n" #. type: Plain text -#: guix-git/doc/contributing.texi:969 -msgid "This automatically indents the definition of @var{package} in @file{gnu/packages/@var{file}.scm} by running Emacs in batch mode. To indent a whole file, omit the second argument:" -msgstr "Это автоматически расставит отступы в определении @var{package} в файле @file{gnu/packages/@var{file}.scm}, запустив Emacs в фоновом режиме. Чтобы расставить отступы во всём файле, приведите слеующий аргумент:" - -#. type: example -#: guix-git/doc/contributing.texi:972 -#, no-wrap -msgid "./etc/indent-code.el gnu/services/@var{file}.scm\n" -msgstr "./etc/indent-code.el gnu/services/@var{file}.scm\n" +#: guix-git/doc/contributing.texi:997 +#, fuzzy +#| msgid "@xref{Invoking guix pull}, for more information." +msgid "@xref{Invoking guix style}, for more information." +msgstr "@xref{Invoking guix pull} для дополнительной информации." #. type: cindex -#: guix-git/doc/contributing.texi:974 +#: guix-git/doc/contributing.texi:998 #, no-wrap msgid "Vim, Scheme code editing" msgstr "Vim, редактирование кода Scheme" #. type: Plain text -#: guix-git/doc/contributing.texi:980 +#: guix-git/doc/contributing.texi:1004 msgid "If you are editing code with Vim, we recommend that you run @code{:set autoindent} so that your code is automatically indented as you type. Additionally, @uref{https://www.vim.org/scripts/script.php?script_id=3998, @code{paredit.vim}} may help you deal with all these parentheses." msgstr "Если вы редактируете код в Vim, мы рекомендуем запустить @code{:set autoindent}, так отступы будут автоматически вставляться в ваш код, пока вы печатаете. В дополнение вам может помочь для работы со всеми этими скобками @uref{https://www.vim.org/scripts/script.php?script_id=3998, @code{paredit.vim}}." #. type: Plain text -#: guix-git/doc/contributing.texi:984 +#: guix-git/doc/contributing.texi:1008 msgid "We require all top-level procedures to carry a docstring. This requirement can be relaxed for simple private procedures in the @code{(guix build @dots{})} name space, though." msgstr "Мы требуем, чтобы все высокоуровневые процедуры содержали строки документации. Хотя это требование может не учитываться для простых приватных процедур в пространстве имён @code{(guix build @dots{})}." #. type: Plain text -#: guix-git/doc/contributing.texi:987 +#: guix-git/doc/contributing.texi:1011 msgid "Procedures should not have more than four positional parameters. Use keyword parameters for procedures that take more than four parameters." msgstr "Процедуры должны иметь не более четырёх параметров. Передавайте параметры по ключевым словам в процедурах, которые принимают более четырёх параметров." #. type: Plain text -#: guix-git/doc/contributing.texi:1001 +#: guix-git/doc/contributing.texi:1025 #, fuzzy #| msgid "Development is done using the Git distributed version control system. Thus, access to the repository is not strictly necessary. We welcome contributions in the form of patches as produced by @code{git format-patch} sent to the @email{guix-patches@@gnu.org} mailing list. Seasoned Guix developers may also want to look at the section on commit access (@pxref{Commit Access})." msgid "Development is done using the Git distributed version control system. Thus, access to the repository is not strictly necessary. We welcome contributions in the form of patches as produced by @code{git format-patch} sent to the @email{guix-patches@@gnu.org} mailing list (@pxref{submitting patches,, Submitting patches to a project, git, Git User Manual}). Contributors are encouraged to take a moment to set some Git repository options (@pxref{Configuring Git}) first, which can improve the readability of patches. Seasoned Guix developers may also want to look at the section on commit access (@pxref{Commit Access})." msgstr "Разработка завершается использованием поставляемой системы контроля версиями Git. Доступ к репозиторию не обязателен. Мы приветствуем вклады в разработку в виде патчей, которые производит @code{git format-patch}, отправленных в рассылку @email{guix-patches@@gnu.org}." #. type: Plain text -#: guix-git/doc/contributing.texi:1008 +#: guix-git/doc/contributing.texi:1032 msgid "This mailing list is backed by a Debbugs instance, which allows us to keep track of submissions (@pxref{Tracking Bugs and Patches}). Each message sent to that mailing list gets a new tracking number assigned; people can then follow up on the submission by sending email to @code{@var{NNN}@@debbugs.gnu.org}, where @var{NNN} is the tracking number (@pxref{Sending a Patch Series})." msgstr "Для данной рассылки создаются резервные копии с помощью Debbugs, что позволяет нам отслеживать присылаемые патчи (@pxref{Tracking Bugs and Patches}). Каждому сообщению, отправленному в эту рассылку, присваивается новый номер трекинга. Затем пользователи могут общаться относительно конкретного патча, отправляя электронные письма на адрес @code{@var{NNN}@@debbugs.gnu.org}, где @var{NNN} — это номер трекинга (@pxref{Sending a Patch Series})." #. type: Plain text -#: guix-git/doc/contributing.texi:1012 +#: guix-git/doc/contributing.texi:1036 msgid "Please write commit logs in the ChangeLog format (@pxref{Change Logs,,, standards, GNU Coding Standards}); you can check the commit history for examples." msgstr "Пожалуйста, пишите логи коммита в формате ChangeLog (@pxref{Change Logs,,, standards, GNU Coding Standards}); можно просмотреть историю коммитов, например." #. type: Plain text -#: guix-git/doc/contributing.texi:1015 +#: guix-git/doc/contributing.texi:1039 msgid "Before submitting a patch that adds or modifies a package definition, please run through this check list:" msgstr "Перед отправкой патча, который добавляет или изменяет описание пакета, пожалуйста, выполните следующие проверки:" #. type: code{#1} -#: guix-git/doc/contributing.texi:1017 guix-git/doc/contributing.texi:1223 +#: guix-git/doc/contributing.texi:1041 guix-git/doc/contributing.texi:1251 #, no-wrap msgid "git format-patch" msgstr "git format-patch" #. type: code{#1} -#: guix-git/doc/contributing.texi:1018 +#: guix-git/doc/contributing.texi:1042 #, no-wrap msgid "git-format-patch" msgstr "git-format-patch" #. type: enumerate -#: guix-git/doc/contributing.texi:1025 +#: guix-git/doc/contributing.texi:1049 msgid "When generating your patches with @code{git format-patch} or @code{git send-email}, we recommend using the option @code{--base=}, perhaps with the value @code{auto}. This option adds a note to the patch stating which commit the patch is based on. This helps reviewers understand how to apply and review your patches." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1031 +#: guix-git/doc/contributing.texi:1055 msgid "If the authors of the packaged software provide a cryptographic signature for the release tarball, make an effort to verify the authenticity of the archive. For a detached GPG signature file this would be done with the @code{gpg --verify} command." msgstr "Если авторы пакета программного обеспечения преоставляют криптографическую подпись для архива релиза, выполните проверку аутентичности архива. Для отдельного файла GPG-подписи это можно сделать командой @code{gpg --verify}." #. type: enumerate -#: guix-git/doc/contributing.texi:1035 +#: guix-git/doc/contributing.texi:1059 msgid "Take some time to provide an adequate synopsis and description for the package. @xref{Synopses and Descriptions}, for some guidelines." msgstr "Потратьте немного времени, чтобы предоставить адекватное краткое описание и полное описание пакета. Смотрите @xref{Synopses and Descriptions} для подробностей." #. type: enumerate -#: guix-git/doc/contributing.texi:1040 +#: guix-git/doc/contributing.texi:1064 msgid "Run @code{guix lint @var{package}}, where @var{package} is the name of the new or modified package, and fix any errors it reports (@pxref{Invoking guix lint})." msgstr "Запустите @code{guix lint @var{package}}, где @var{package} - это имя нового изменённого пакета, и устраните любые ошибки из отчёта (@pxref{Invoking guix lint})." #. type: enumerate -#: guix-git/doc/contributing.texi:1044 +#: guix-git/doc/contributing.texi:1068 +#, fuzzy +#| msgid "Run @code{guix lint @var{package}}, where @var{package} is the name of the new or modified package, and fix any errors it reports (@pxref{Invoking guix lint})." +msgid "Run @code{guix style @var{package}} to format the new package definition according to the project's conventions (@pxref{Invoking guix style})." +msgstr "Запустите @code{guix lint @var{package}}, где @var{package} - это имя нового изменённого пакета, и устраните любые ошибки из отчёта (@pxref{Invoking guix lint})." + +#. type: enumerate +#: guix-git/doc/contributing.texi:1072 msgid "Make sure the package builds on your platform, using @code{guix build @var{package}}." msgstr "Убедитесь, что пакет собирается на вашей платформе, используя @code{guix build @var{package}}." #. type: enumerate -#: guix-git/doc/contributing.texi:1052 +#: guix-git/doc/contributing.texi:1080 #, fuzzy #| msgid "We recommend you also try building the package on other supported platforms. As you may not have access to actual hardware platforms, we recommend using the @code{qemu-binfmt-service-type} to emulate them. In order to enable it, add the following service to the list of services in your @code{operating-system} configuration:" msgid "We recommend you also try building the package on other supported platforms. As you may not have access to actual hardware platforms, we recommend using the @code{qemu-binfmt-service-type} to emulate them. In order to enable it, add the @code{virtualization} service module and the following service to the list of services in your @code{operating-system} configuration:" msgstr "Мы рекомендуем вам также попробовать собрать пакет под другими поддерживаемыми платформами. Возможно, вы не имеете доступа к современным аппаратным платформам, тогда мы рекомендуем использовать @code{qemu-binfmt-service-type}, чтобы эмулировать их. Чтобы обеспечить это, добавьте следующий сервис в конфигурацию @code{operating-system}:" #. type: lisp -#: guix-git/doc/contributing.texi:1057 +#: guix-git/doc/contributing.texi:1085 #, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -1604,17 +1650,17 @@ msgstr "" " (platforms (lookup-qemu-platforms \"arm\" \"aarch64\"))))\n" #. type: enumerate -#: guix-git/doc/contributing.texi:1060 +#: guix-git/doc/contributing.texi:1088 msgid "Then reconfigure your system." msgstr "И тогда запустите переконфигурирование системы." #. type: enumerate -#: guix-git/doc/contributing.texi:1065 +#: guix-git/doc/contributing.texi:1093 msgid "You can then build packages for different platforms by specifying the @code{--system} option. For example, to build the \"hello\" package for the armhf or aarch64 architectures, you would run the following commands, respectively:" msgstr "Также можно собирать пакеты под различные платформы, обозначив опцию @code{--system}. Например, чтобы собрать пакет \"hello\" для архитектур armhf, aarch64, или mips64 вы должны выполнить соответственно следующее:" #. type: example -#: guix-git/doc/contributing.texi:1068 +#: guix-git/doc/contributing.texi:1096 #, no-wrap msgid "" "guix build --system=armhf-linux --rounds=2 hello\n" @@ -1624,235 +1670,237 @@ msgstr "" "\"guix build --system=aarch64-linux --rounds=2 hello\n" #. type: cindex -#: guix-git/doc/contributing.texi:1071 +#: guix-git/doc/contributing.texi:1099 #, no-wrap msgid "bundling" msgstr "сборка" #. type: enumerate -#: guix-git/doc/contributing.texi:1074 +#: guix-git/doc/contributing.texi:1102 msgid "Make sure the package does not use bundled copies of software already available as separate packages." msgstr "Убедитесь, что пакет не использует связанные копии программ, которые уже доступны как отдельные пакеты." #. type: enumerate -#: guix-git/doc/contributing.texi:1083 +#: guix-git/doc/contributing.texi:1111 msgid "Sometimes, packages include copies of the source code of their dependencies as a convenience for users. However, as a distribution, we want to make sure that such packages end up using the copy we already have in the distribution, if there is one. This improves resource usage (the dependency is built and stored only once), and allows the distribution to make transverse changes such as applying security updates for a given software package in a single place and have them affect the whole system---something that bundled copies prevent." msgstr "Иногда пакеты включают копии исходных кодов своих зависимостей, исходя из удобства для пользователей. Однако как дистрибутив, мы должны убедиться, что подобные пакеты ставятся, используя копию, которую мы уже имеем в дистрибутиве, если таковая имеется. Это улучшает использование ресурсов (зависимость собирается и сохраняется один раз) и позволяет дистрибутиву производить поперечные изменения, как например, применение обновлений безопасности для поставляемого пакета программного обеспечения в одном месте, и эти изменения будут иметь силу во всей системе, устраняя проблему лишних копий." #. type: enumerate -#: guix-git/doc/contributing.texi:1092 +#: guix-git/doc/contributing.texi:1120 msgid "Take a look at the profile reported by @command{guix size} (@pxref{Invoking guix size}). This will allow you to notice references to other packages unwillingly retained. It may also help determine whether to split the package (@pxref{Packages with Multiple Outputs}), and which optional dependencies should be used. In particular, avoid adding @code{texlive} as a dependency: because of its extreme size, use the @code{texlive-tiny} package or @code{texlive-union} procedure instead." msgstr "Просмотрите отчеты @command{guix size} (@pxref{Invoking guix size}). Это позволит найти связь с другими пакетами, сохранившуюся без необходимости. Это также позволяет решить, как разделить пакет (@pxref{Packages with Multiple Outputs}) и какие должны использоваться опциональные зависимости. В частности, это способ избежать использование большого @code{texlive} как зависимости и использовать @code{texlive-tiny} или @code{texlive-union} вместо него." #. type: enumerate -#: guix-git/doc/contributing.texi:1097 +#: guix-git/doc/contributing.texi:1125 #, fuzzy #| msgid "For important changes, check that dependent package (if applicable) are not affected by the change; @code{guix refresh --list-dependent @var{package}} will help you do that (@pxref{Invoking guix refresh})." msgid "For important changes, check that dependent packages (if applicable) are not affected by the change; @code{guix refresh --list-dependent @var{package}} will help you do that (@pxref{Invoking guix refresh})." msgstr "Для важных изменений проверьте, что зависимости пакета (если они есть) не затронуты изменениями. @code{guix refresh --list-dependent @var{package}} поможет вам сделать это (@pxref{Invoking guix refresh})." #. type: cindex -#: guix-git/doc/contributing.texi:1099 +#: guix-git/doc/contributing.texi:1127 #, no-wrap msgid "branching strategy" msgstr "стратегия бренчей" #. type: cindex -#: guix-git/doc/contributing.texi:1100 +#: guix-git/doc/contributing.texi:1128 #, no-wrap msgid "rebuild scheduling strategy" msgstr "стратегия планирования пересборки" #. type: enumerate -#: guix-git/doc/contributing.texi:1103 +#: guix-git/doc/contributing.texi:1131 msgid "Depending on the number of dependent packages and thus the amount of rebuilding induced, commits go to different branches, along these lines:" msgstr "В зависимости от числа пакетов зависимостей и, как следствие, числа вызываемых пересборок, коммиты отправляются в разные бренчи следующим образом:" #. type: item -#: guix-git/doc/contributing.texi:1105 +#: guix-git/doc/contributing.texi:1133 #, no-wrap msgid "300 dependent packages or less" msgstr "300 пакетов зависимостей или менее" #. type: table -#: guix-git/doc/contributing.texi:1107 +#: guix-git/doc/contributing.texi:1135 msgid "@code{master} branch (non-disruptive changes)." msgstr "бренч @code{master} (не разрушающие изменения)." #. type: item -#: guix-git/doc/contributing.texi:1108 +#: guix-git/doc/contributing.texi:1136 #, no-wrap msgid "between 300 and 1,800 dependent packages" msgstr "от 300 до 1200 пакетов зависимостей" #. type: table -#: guix-git/doc/contributing.texi:1114 +#: guix-git/doc/contributing.texi:1142 msgid "@code{staging} branch (non-disruptive changes). This branch is intended to be merged in @code{master} every 6 weeks or so. Topical changes (e.g., an update of the GNOME stack) can instead go to a specific branch (say, @code{gnome-updates}). This branch is not expected to be buildable or usable until late in its development process." msgstr "бренч @code{staging} (не разрушающие изменения). Этот бренч предназначен для включения в @code{master} каждые 3 недели (примерно). Тематические изменения (т.е. обновление стека GNOME) могут отправляться в специальный бренч, скажем, @code{gnome-updates}." #. type: item -#: guix-git/doc/contributing.texi:1115 +#: guix-git/doc/contributing.texi:1143 #, no-wrap msgid "more than 1,800 dependent packages" msgstr "более 1200 пакетов зависимостей" #. type: table -#: guix-git/doc/contributing.texi:1120 +#: guix-git/doc/contributing.texi:1148 msgid "@code{core-updates} branch (may include major and potentially disruptive changes). This branch is intended to be merged in @code{master} every 6 months or so. This branch is not expected to be buildable or usable until late in its development process." msgstr "бренч @code{core-updates} (может включать главные и потенциально разрушительные изменения). Этот бренч предназначен для включения в @code{master} каждые 2,5 месяца примерно." #. type: enumerate -#: guix-git/doc/contributing.texi:1127 +#: guix-git/doc/contributing.texi:1155 #, fuzzy msgid "All these branches are @uref{https://@value{SUBSTITUTE-SERVER-1}, tracked by our build farm} and merged into @code{master} once everything has been successfully built. This allows us to fix issues before they hit users, and to reduce the window during which pre-built binaries are not available." msgstr "Все эти бренчи @uref{https://hydra.gnu.org/project/gnu, размещаются на ферме сборки} и включаются в @code{master} после первой удачной сборки. Это позволяет нам исправлять проблемы перед тем, как они дойдут до пользователей, и сократить окно, в течение которого собранные бинарники не доступны." #. type: enumerate -#: guix-git/doc/contributing.texi:1136 +#: guix-git/doc/contributing.texi:1164 msgid "When we decide to start building the @code{staging} or @code{core-updates} branches, they will be forked and renamed with the suffix @code{-frozen}, at which time only bug fixes may be pushed to the frozen branches. The @code{core-updates} and @code{staging} branches will remain open to accept patches for the next cycle. Please ask on the mailing list or IRC if unsure where to place a patch." msgstr "Когда мы решим начать сборку веток @code{staging} или @code{core-updates}, они будут форкнуты (forked) и переименованы с суффиксом @code{-frozen}, после чего замороженные ветки будут получать только исправления ошибок. Ветки @code{core-updates} и @code{staging} остануться открыты для патчей в следующем цикле. Если вы не знаете, где разместить патч, спросите в списке рассылки или в IRC." #. type: cindex -#: guix-git/doc/contributing.texi:1138 +#: guix-git/doc/contributing.texi:1166 #, no-wrap msgid "determinism, of build processes" msgstr "детерминизм, процесса сборки" #. type: cindex -#: guix-git/doc/contributing.texi:1139 +#: guix-git/doc/contributing.texi:1167 #, no-wrap msgid "reproducible builds, checking" msgstr "воспроизводимые сорки, проверка" #. type: enumerate -#: guix-git/doc/contributing.texi:1143 +#: guix-git/doc/contributing.texi:1171 msgid "Check whether the package's build process is deterministic. This typically means checking whether an independent build of the package yields the exact same result that you obtained, bit for bit." msgstr "Проверьте, является ли процесс сборки пакета детеминистическим. Это обычно означает необходимость проверки того, что независимая сборка пакета производит точно такой же результат, которым вы располагаете, бит к биту." #. type: enumerate -#: guix-git/doc/contributing.texi:1146 +#: guix-git/doc/contributing.texi:1174 msgid "A simple way to do that is by building the same package several times in a row on your machine (@pxref{Invoking guix build}):" msgstr "Простой способ выполнить это - собрать такой же пакет несколько раз подряд на вашей машине (@pxref{Invoking guix build}):" #. type: example -#: guix-git/doc/contributing.texi:1149 +#: guix-git/doc/contributing.texi:1177 #, no-wrap msgid "guix build --rounds=2 my-package\n" msgstr "guix build --rounds=2 my-package\n" #. type: enumerate -#: guix-git/doc/contributing.texi:1153 +#: guix-git/doc/contributing.texi:1181 msgid "This is enough to catch a class of common non-determinism issues, such as timestamps or randomly-generated output in the build result." msgstr "Этого достаточно, чтобы отловить привычный набор проблем, нарушающих детерминизм, как например, отпечаток времени или случайно генерируемый выход на результате сборке." #. type: enumerate -#: guix-git/doc/contributing.texi:1163 +#: guix-git/doc/contributing.texi:1191 msgid "Another option is to use @command{guix challenge} (@pxref{Invoking guix challenge}). You may run it once the package has been committed and built by @code{@value{SUBSTITUTE-SERVER-1}} to check whether it obtains the same result as you did. Better yet: Find another machine that can build it and run @command{guix publish}. Since the remote build machine is likely different from yours, this can catch non-determinism issues related to the hardware---e.g., use of different instruction set extensions---or to the operating system kernel---e.g., reliance on @code{uname} or @file{/proc} files." msgstr "Другой способ --- использовать @command{guix challenge} (@pxref{Invoking guix challenge}). Можно запустить это один раз, когда коммит пакета был отправлен, и собрать с помощью @code{@value{SUBSTITUTE-SERVER-1}}, чтобы проверить, что это даёт результат такой же, как у вас. Ещё лучше найти другую машину, на которой можно собрать это и выполнить @command{guix publish}. Так как другая удалённая машина дл сборки отличается от вашей, это может выявить проблемы, нарушающие детерминизм, связанные с аппаратным обеспечением, то есть вызванные использованием различных расширений ассемблера или другого ядра операционной системы, то есть касательно файлов @code{uname} или @file{/proc}." #. type: enumerate -#: guix-git/doc/contributing.texi:1169 +#: guix-git/doc/contributing.texi:1197 msgid "When writing documentation, please use gender-neutral wording when referring to people, such as @uref{https://en.wikipedia.org/wiki/Singular_they, singular ``they''@comma{} ``their''@comma{} ``them''}, and so forth." msgstr "При написании документации, пожалуйста, используйте нейтральную по гендеру лексику, когда речь идёт о людях, как например, тут @uref{https://en.wikipedia.org/wiki/Singular_they, singular \"they\"@comma{} \"their\"@comma{} \"them\"} и т.д." #. type: enumerate -#: guix-git/doc/contributing.texi:1173 +#: guix-git/doc/contributing.texi:1201 msgid "Verify that your patch contains only one set of related changes. Bundling unrelated changes together makes reviewing harder and slower." msgstr "Проверьте, что ваш патч содержит изменения, связанные только с одной темой. Связывая вместе изменения, касающиеся различных тем, делает обзор сложным и медленным." #. type: enumerate -#: guix-git/doc/contributing.texi:1176 +#: guix-git/doc/contributing.texi:1204 msgid "Examples of unrelated changes include the addition of several packages, or a package update along with fixes to that package." msgstr "Примеры несвязанных изменений включают, в том числе, добавление некоторых пакетов или обновление пакета вместе с исправлениями в этом пакете." #. type: enumerate -#: guix-git/doc/contributing.texi:1181 -msgid "Please follow our code formatting rules, possibly running the @command{etc/indent-code.el} script to do that automatically for you (@pxref{Formatting Code})." +#: guix-git/doc/contributing.texi:1209 +#, fuzzy +#| msgid "Please follow our code formatting rules, possibly running the @command{etc/indent-code.el} script to do that automatically for you (@pxref{Formatting Code})." +msgid "Please follow our code formatting rules, possibly running @command{guix style} script to do that automatically for you (@pxref{Formatting Code})." msgstr "Пожалуйста, следуйте нашим правилам форматирования кода, по возможности запуская скрипт @command{etc/indent-code.el}, который сделает это автоматически (@pxref{Formatting Code})." #. type: enumerate -#: guix-git/doc/contributing.texi:1189 +#: guix-git/doc/contributing.texi:1217 msgid "When possible, use mirrors in the source URL (@pxref{Invoking guix download}). Use reliable URLs, not generated ones. For instance, GitHub archives are not necessarily identical from one generation to the next, so in this case it's often better to clone the repository. Don't use the @command{name} field in the URL: it is not very useful and if the name changes, the URL will probably be wrong." msgstr "Если это возможно, используйте зеркала при указании URL исходников (@pxref{Invoking guix download}). Используйте надёжные URL'ы, а не сгенерированные. Например, архивы GitHub не являются идентичными между поколениями, так что в этом случае часто лучше клонировать репозиторий. Не используйте поле @command{name} в URL, это не очень удобно: если имя изменится, тогда URL будет неправильным." #. type: enumerate -#: guix-git/doc/contributing.texi:1193 +#: guix-git/doc/contributing.texi:1221 msgid "Check if Guix builds (@pxref{Building from Git}) and address the warnings, especially those about use of undefined symbols." msgstr "Проверьте, собирается ли Guix (@pxref{Building from Git}), и устраните предупреждения, особенно те, которые касаются использования неопределенных символов." #. type: enumerate -#: guix-git/doc/contributing.texi:1196 +#: guix-git/doc/contributing.texi:1224 msgid "Make sure your changes do not break Guix and simulate a @code{guix pull} with:" msgstr "Убедитесь, что ваши изменения не ломают Guix и имитируйте @code{guix pull} вместе с:" #. type: example -#: guix-git/doc/contributing.texi:1198 +#: guix-git/doc/contributing.texi:1226 #, no-wrap msgid "guix pull --url=/path/to/your/checkout --profile=/tmp/guix.master\n" msgstr "guix pull --url=/path/to/your/checkout --profile=/tmp/guix.master\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1211 +#: guix-git/doc/contributing.texi:1239 msgid "When posting a patch to the mailing list, use @samp{[PATCH] @dots{}} as a subject, if your patch is to be applied on a branch other than @code{master}, say @code{core-updates}, specify it in the subject like @samp{[PATCH core-updates] @dots{}}. You may use your email client or the @command{git send-email} command (@pxref{Sending a Patch Series}). We prefer to get patches in plain text messages, either inline or as MIME attachments. You are advised to pay attention if your email client changes anything like line breaks or indentation which could potentially break the patches." msgstr "Когда отправляете патч в рассылку, используйте @samp{[PATCH] @dots{}} в теме письма. Можно пользоваться почтовым клиентом или командой @command{git send-email} (@pxref{Sending a Patch Series}). Мы предпочитаем получать патчи в виде простых текстовых сообщений внутри текста или отдельным вложением MIME. Рекомендуется уделять внимание вопросу, не изменяет ли почтовый клиент что-либо как символы новой строки или отступы, так как это потенциально может нарушить код патча." #. type: Plain text -#: guix-git/doc/contributing.texi:1216 +#: guix-git/doc/contributing.texi:1244 msgid "Expect some delay when you submit your very first patch to @email{guix-patches@@gnu.org}. You have to wait until you get an acknowledgement with the assigned tracking number. Future acknowledgements should not be delayed." msgstr "Когда отправите свой самый первый патч на @email{guix-patches@@gnu.org}, ожидайте некоторой задержки. Вам нужно подождать, пока вы не получите подтверждение с присвоенным номером отслеживания. Дальнейшие подтверждения не следует откладывать." #. type: Plain text -#: guix-git/doc/contributing.texi:1219 +#: guix-git/doc/contributing.texi:1247 msgid "When a bug is resolved, please close the thread by sending an email to @email{@var{NNN}-done@@debbugs.gnu.org}." msgstr "Когда баг исправлен, пожалуйста, закройте тему, отправив сообщение на @email{@var{NNN}-done@@debbugs.gnu.org}." #. type: subsection -#: guix-git/doc/contributing.texi:1220 guix-git/doc/contributing.texi:1221 +#: guix-git/doc/contributing.texi:1248 guix-git/doc/contributing.texi:1249 #, no-wrap msgid "Configuring Git" msgstr "Конфигурирование Git" #. type: cindex -#: guix-git/doc/contributing.texi:1222 +#: guix-git/doc/contributing.texi:1250 #, fuzzy, no-wrap #| msgid "configuration" msgid "git configuration" msgstr "Конфигурирование системы" #. type: code{#1} -#: guix-git/doc/contributing.texi:1224 guix-git/doc/contributing.texi:1259 +#: guix-git/doc/contributing.texi:1252 guix-git/doc/contributing.texi:1287 #, no-wrap msgid "git send-email" msgstr "git send-email" #. type: Plain text -#: guix-git/doc/contributing.texi:1232 +#: guix-git/doc/contributing.texi:1260 msgid "If you have not done so already, you may wish to set a name and email that will be associated with your commits (@pxref{telling git your name, , Telling Git your name, git, Git User Manual}). If you wish to use a different name or email just for commits in this repository, you can use @command{git config --local}, or edit @file{.git/config} in the repository instead of @file{~/.gitconfig}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1238 +#: guix-git/doc/contributing.texi:1266 msgid "We provide some default settings in @file{etc/git/gitconfig} which modify how patches are generated, making them easier to read and apply. These settings can be applied by manually copying them to @file{.git/config} in your checkout, or by telling Git to include the whole file:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1241 +#: guix-git/doc/contributing.texi:1269 #, no-wrap msgid "git config --local include.path ../etc/git/gitconfig\n" msgstr "git config --local include.path ../etc/git/gitconfig\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1245 +#: guix-git/doc/contributing.texi:1273 msgid "From then on, any changes to @file{etc/git/gitconfig} would automatically take effect." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1250 +#: guix-git/doc/contributing.texi:1278 msgid "Since the first patch in a series must be sent separately (@pxref{Sending a Patch Series}), it can also be helpful to tell @command{git format-patch} to handle the e-mail threading instead of @command{git send-email}:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1254 +#: guix-git/doc/contributing.texi:1282 #, no-wrap msgid "" "git config --local format.thread shallow\n" @@ -1862,187 +1910,187 @@ msgstr "" "git config --local sendemail.thread no\n" #. type: anchor{#1} -#: guix-git/doc/contributing.texi:1256 guix-git/doc/contributing.texi:1258 +#: guix-git/doc/contributing.texi:1284 guix-git/doc/contributing.texi:1286 #, no-wrap msgid "Sending a Patch Series" msgstr "Отправка пакета исправлений" #. type: cindex -#: guix-git/doc/contributing.texi:1258 +#: guix-git/doc/contributing.texi:1286 #, no-wrap msgid "patch series" msgstr "группы патчей" #. type: Plain text -#: guix-git/doc/contributing.texi:1269 +#: guix-git/doc/contributing.texi:1297 msgid "When sending a patch series (e.g., using @code{git send-email}), please first send one message to @email{guix-patches@@gnu.org}, and then send subsequent patches to @email{@var{NNN}@@debbugs.gnu.org} to make sure they are kept together. See @uref{https://debbugs.gnu.org/Advanced.html, the Debbugs documentation} for more information. You can install @command{git send-email} with @command{guix install git:send-email}." msgstr "При отправке набора патчей (например, используя @code{git send-email}), отправьте сначала одно сообщение в рассылку @email{guix-patches@@gnu.org}, а затем отправьте последующие патчи по адресу @email{@var{NNN}@@debbugs.gnu.org}, чтобы они были объединены. Подробные сведения см. в разделе @uref{https://debbugs.gnu.org/Advanced.html, Документация по Debbugs}. Команду @command{git send-email} можно установить с помощью @command{guix install git:send-email}." #. type: Plain text -#: guix-git/doc/contributing.texi:1275 +#: guix-git/doc/contributing.texi:1303 msgid "This section describes how the Guix project tracks its bug reports and patch submissions." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1282 -#: guix-git/doc/contributing.texi:1283 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1310 +#: guix-git/doc/contributing.texi:1311 #, no-wrap msgid "The Issue Tracker" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "The official bug and patch tracker." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1296 -#: guix-git/doc/contributing.texi:1297 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1324 +#: guix-git/doc/contributing.texi:1325 #, fuzzy, no-wrap #| msgid "user interfaces" msgid "Debbugs User Interfaces" msgstr "пользовательские интерфейсы" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "Ways to interact with Debbugs." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1336 -#: guix-git/doc/contributing.texi:1337 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1364 +#: guix-git/doc/contributing.texi:1365 #, fuzzy, no-wrap #| msgid "Debbugs, issue tracking system" msgid "Debbugs Usertags" msgstr "Debbugs, система отслеживания ошибок" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "Tag reports with custom labels." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1285 +#: guix-git/doc/contributing.texi:1313 #, no-wrap msgid "bug reports, tracking" msgstr "сообщения об ошибке, отслеживание" #. type: cindex -#: guix-git/doc/contributing.texi:1286 +#: guix-git/doc/contributing.texi:1314 #, no-wrap msgid "patch submissions, tracking" msgstr "отправка патча, отслеживание" #. type: cindex -#: guix-git/doc/contributing.texi:1287 +#: guix-git/doc/contributing.texi:1315 #, no-wrap msgid "issue tracking" msgstr "отслеживание заявок об ошибках" #. type: cindex -#: guix-git/doc/contributing.texi:1288 +#: guix-git/doc/contributing.texi:1316 #, no-wrap msgid "Debbugs, issue tracking system" msgstr "Debbugs, система отслеживания ошибок" #. type: Plain text -#: guix-git/doc/contributing.texi:1295 +#: guix-git/doc/contributing.texi:1323 msgid "Bug reports and patch submissions are currently tracked using the Debbugs instance at @uref{https://bugs.gnu.org}. Bug reports are filed against the @code{guix} ``package'' (in Debbugs parlance), by sending email to @email{bug-guix@@gnu.org}, while patch submissions are filed against the @code{guix-patches} package by sending email to @email{guix-patches@@gnu.org} (@pxref{Submitting Patches})." msgstr "Отчёты об ошибках и предложенные исправления сейчас отслеживаются с помощью Debbugs на веб-сайте @uref{https://bugs.gnu.org}. Отчёты об ошибках, относящиеся к пакету @code{guix} (на языке Debbugs), отправляйте по адресу @email{bug-guix@@gnu.org}, а предлагаемые исправления для пакета @code{guix-patches} — по адресу @email{guix-patches@@gnu.org} (@pxref{Submitting Patches})." #. type: Plain text -#: guix-git/doc/contributing.texi:1301 +#: guix-git/doc/contributing.texi:1329 msgid "A web interface (actually @emph{two} web interfaces!) are available to browse issues:" msgstr "Для просмотра вопросов доступен веб-интерфейс (на самом деле даже @emph{два} веб-интерфейса):" #. type: itemize -#: guix-git/doc/contributing.texi:1310 +#: guix-git/doc/contributing.texi:1338 msgid "@url{https://issues.guix.gnu.org} provides a pleasant interface@footnote{The web interface at @url{https://issues.guix.gnu.org} is powered by Mumi, a nice piece of software written in Guile, and you can help! See @url{https://git.elephly.net/gitweb.cgi?p=software/mumi.git}.} to browse bug reports and patches, and to participate in discussions;" msgstr "@url{https://issues.guix.gnu.org} предоставляет приятный интерфейс@footnote{Веб-интерфейс по адресу @url{https://issues.guix.gnu.org} работает на Mumi, прятном примере програмного обеспечения, написанного на Guile, и вы можете помочь! См.@url{https://git.elephly.net/gitweb.cgi?p=software/mumi.git}.} чтобы просматривать отчеты об ошибках и исправлениях, а также участвовать в обсуждениях;" #. type: itemize -#: guix-git/doc/contributing.texi:1312 +#: guix-git/doc/contributing.texi:1340 msgid "@url{https://bugs.gnu.org/guix} lists bug reports;" msgstr "@url{https://gnupg.org/, GNU libgcrypt} списки отчётов об ошибках;" #. type: itemize -#: guix-git/doc/contributing.texi:1314 +#: guix-git/doc/contributing.texi:1342 msgid "@url{https://bugs.gnu.org/guix-patches} lists patch submissions." msgstr "@url{https://bugs.gnu.org/guix-patches} списки патчей на рассмотрении." #. type: Plain text -#: guix-git/doc/contributing.texi:1319 +#: guix-git/doc/contributing.texi:1347 msgid "To view discussions related to issue number @var{n}, go to @indicateurl{https://issues.guix.gnu.org/@var{n}} or @indicateurl{https://bugs.gnu.org/@var{n}}." msgstr "Чтобы просмотреть обсуждения, связанные с номером проблемы @var{n}, перейдите на @indicateurl{https://issues.guix.gnu.org/@var{n}} или @indicateurl{https://bugs.gnu.org/@var{n}}." #. type: Plain text -#: guix-git/doc/contributing.texi:1322 +#: guix-git/doc/contributing.texi:1350 msgid "If you use Emacs, you may find it more convenient to interact with issues using @file{debbugs.el}, which you can install with:" msgstr "Если вы используете Emacs, вам может быть удобнее взаимодействовать с проблемами при помощи @file{debbugs.el}, который вы можете установить с помощью:" #. type: example -#: guix-git/doc/contributing.texi:1325 +#: guix-git/doc/contributing.texi:1353 #, no-wrap msgid "guix install emacs-debbugs\n" msgstr "guix install emacs-debbugs\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1328 +#: guix-git/doc/contributing.texi:1356 msgid "For example, to list all open issues on @code{guix-patches}, hit:" msgstr "Например, чтбы уввидеть все открытые заявки на @code{guix-patches}, введите:" #. type: example -#: guix-git/doc/contributing.texi:1331 +#: guix-git/doc/contributing.texi:1359 #, no-wrap msgid "@kbd{C-u} @kbd{M-x} debbugs-gnu @kbd{RET} @kbd{RET} guix-patches @kbd{RET} n y\n" msgstr "@kbd{C-u} @kbd{M-x} debbugs-gnu @kbd{RET} @kbd{RET} guix-patches @kbd{RET} n y\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1335 +#: guix-git/doc/contributing.texi:1363 msgid "@xref{Top,,, debbugs-ug, Debbugs User Guide}, for more information on this nifty tool!" msgstr "@xref{Top,,, debbugs-ug, Debbugs User Guide} для подробной информации об этом полезном инструменте!" #. type: cindex -#: guix-git/doc/contributing.texi:1339 +#: guix-git/doc/contributing.texi:1367 #, no-wrap msgid "usertags, for debbugs" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1340 +#: guix-git/doc/contributing.texi:1368 #, fuzzy, no-wrap #| msgid "Debbugs, issue tracking system" msgid "Debbugs usertags" msgstr "Debbugs, система отслеживания ошибок" #. type: Plain text -#: guix-git/doc/contributing.texi:1346 +#: guix-git/doc/contributing.texi:1374 msgid "Debbugs provides a feature called @dfn{usertags} that allows any user to tag any bug with an arbitrary label. Bugs can be searched by usertag, so this is a handy way to organize bugs@footnote{The list of usertags is public information, and anyone can modify any user's list of usertags, so keep that in mind if you choose to use this feature.}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1352 +#: guix-git/doc/contributing.texi:1380 msgid "For example, to view all the bug reports (or patches, in the case of @code{guix-patches}) tagged with the usertag @code{powerpc64le-linux} for the user @code{guix}, open a URL like the following in a web browser: @url{https://debbugs.gnu.org/cgi-bin/pkgreport.cgi?tag=powerpc64le-linux;users=guix}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1356 +#: guix-git/doc/contributing.texi:1384 msgid "For more information on how to use usertags, please refer to the documentation for Debbugs or the documentation for whatever tool you use to interact with Debbugs." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1361 +#: guix-git/doc/contributing.texi:1389 msgid "In Guix, we are experimenting with usertags to keep track of architecture-specific issues. To facilitate collaboration, all our usertags are associated with the single user @code{guix}. The following usertags currently exist for that user:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1364 guix-git/doc/guix.texi:556 +#: guix-git/doc/contributing.texi:1392 guix-git/doc/guix.texi:557 #, no-wrap msgid "powerpc64le-linux" msgstr "aarch64-linux" #. type: table -#: guix-git/doc/contributing.texi:1372 +#: guix-git/doc/contributing.texi:1400 msgid "The purpose of this usertag is to make it easy to find the issues that matter most for the @code{powerpc64le-linux} system type. Please assign this usertag to bugs or patches that affect @code{powerpc64le-linux} but not other system types. In addition, you may use it to identify issues that for some reason are particularly important for the @code{powerpc64le-linux} system type, even if the issue affects other system types, too." msgstr "" @@ -2050,137 +2098,137 @@ msgstr "" #. type: item #. #-#-#-#-# guix.pot (guix manual checkout) #-#-#-#-# #. type: cindex -#: guix-git/doc/contributing.texi:1373 guix-git/doc/guix.texi:3070 -#: guix-git/doc/guix.texi:4771 +#: guix-git/doc/contributing.texi:1401 guix-git/doc/guix.texi:3087 +#: guix-git/doc/guix.texi:4789 #, no-wrap msgid "reproducibility" msgstr "воспроизводимость" #. type: table -#: guix-git/doc/contributing.texi:1377 +#: guix-git/doc/contributing.texi:1405 msgid "For issues related to reproducibility. For example, it would be appropriate to assign this usertag to a bug report for a package that fails to build reproducibly." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1384 +#: guix-git/doc/contributing.texi:1412 msgid "If you're a committer and you want to add a usertag, just start using it with the @code{guix} user. If the usertag proves useful to you, consider updating this section of the manual so that others will know what your usertag means." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1388 +#: guix-git/doc/contributing.texi:1416 #, no-wrap msgid "commit access, for developers" msgstr "доступ для отправки коммитов, для разработчиков" #. type: Plain text -#: guix-git/doc/contributing.texi:1394 -msgid "Everyone can contribute to Guix without having commit access (@pxref{Submitting Patches}). However, for frequent contributors, having write access to the repository can be convenient. Commit access should not be thought of as a ``badge of honor'' but rather as a responsibility a contributor is willing to take to help the project." +#: guix-git/doc/contributing.texi:1427 +msgid "Everyone can contribute to Guix without having commit access (@pxref{Submitting Patches}). However, for frequent contributors, having write access to the repository can be convenient. As a rule of thumb, a contributor should have accumulated fifty (50) reviewed commits to be considered as a committer and have sustained their activity in the project for at least 6 months. This ensures enough interactions with the contributor, which is essential for mentoring and assessing whether they are ready to become a committer. Commit access should not be thought of as a ``badge of honor'' but rather as a responsibility a contributor is willing to take to help the project." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1398 +#: guix-git/doc/contributing.texi:1431 msgid "The following sections explain how to get commit access, how to be ready to push commits, and the policies and community expectations for commits pushed upstream." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1399 +#: guix-git/doc/contributing.texi:1432 #, fuzzy, no-wrap #| msgid "Commit Access" msgid "Applying for Commit Access" msgstr "Доступ к коммитам" #. type: Plain text -#: guix-git/doc/contributing.texi:1403 +#: guix-git/doc/contributing.texi:1436 #, fuzzy #| msgid "For frequent contributors, having write access to the repository is convenient. When you deem it necessary, consider applying for commit access by following these steps:" msgid "When you deem it necessary, consider applying for commit access by following these steps:" msgstr "Для постоянных участников удобно иметь доступ для записи в хранилище. Когда вы сочтете это необходимым, рассмотрите возможность подачи заявки на коммит, выполнив следующие действия:" #. type: enumerate -#: guix-git/doc/contributing.texi:1412 +#: guix-git/doc/contributing.texi:1445 msgid "Find three committers who would vouch for you. You can view the list of committers at @url{https://savannah.gnu.org/project/memberlist.php?group=guix}. Each of them should email a statement to @email{guix-maintainers@@gnu.org} (a private alias for the collective of maintainers), signed with their OpenPGP key." msgstr "Найдите трех коммиттеров, которые поручаются за вас. Вы можете просмотреть список коммиттеров по адресу @url{https://savannah.gnu.org/project/memberlist.php?group=guix}. Каждый из них должен отправить заявление по электронной почте на адрес @email{guix-maintainers@@gnu.org} (личный псевдоним коллектива сопровождающих), подписанный ключом OpenPGP." #. type: enumerate -#: guix-git/doc/contributing.texi:1418 +#: guix-git/doc/contributing.texi:1451 msgid "Committers are expected to have had some interactions with you as a contributor and to be able to judge whether you are sufficiently familiar with the project's practices. It is @emph{not} a judgment on the value of your work, so a refusal should rather be interpreted as ``let's try again later''." msgstr "Ожидается, что коммиттеры взаимодействовали с вами как c участником и могли судить, достаточно ли вы знакомы с проектом. Это @emph{не} суждение о ценности вашей работы, поэтому отказ следует скорее интерпретировать как «давайте попробуем позже»." #. type: enumerate -#: guix-git/doc/contributing.texi:1425 +#: guix-git/doc/contributing.texi:1458 msgid "Send @email{guix-maintainers@@gnu.org} a message stating your intent, listing the three committers who support your application, signed with the OpenPGP key you will use to sign commits, and giving its fingerprint (see below). See @uref{https://emailselfdefense.fsf.org/en/}, for an introduction to public-key cryptography with GnuPG." msgstr "Отправьте @email{guix-keepers@@gnu.org} сообщение с указанием ваших намерений, перечисляя трех коммиттеров, поддерживающих вашу заявку, подписанных ключом OpenPGP, который вы будете использовать для подписания коммитов, и указав свой отпечаток (смотри ниже). Ознакомся с @uref{https://emailselfdefense.fsf.org/ru/}, чтобы познакомиться с криптографией с открытым ключом с помощью GnuPG." #. type: enumerate -#: guix-git/doc/contributing.texi:1431 +#: guix-git/doc/contributing.texi:1464 msgid "Set up GnuPG such that it never uses the SHA1 hash algorithm for digital signatures, which is known to be unsafe since 2019, for instance by adding the following line to @file{~/.gnupg/gpg.conf} (@pxref{GPG Esoteric Options,,, gnupg, The GNU Privacy Guard Manual}):" msgstr "Настройте GnuPG так, чтобы он никогда не использовал хэш-алгоритм SHA1 для цифровых подписей, который, как известно, небезопасен с 2019 года. Например, добавив следующую строку в @file{~/.gnupg/gpg.conf} (@pxref{GPG Esoteric Options,,, gnupg, The GNU Privacy Guard Manual}):" #. type: example -#: guix-git/doc/contributing.texi:1434 +#: guix-git/doc/contributing.texi:1467 #, no-wrap msgid "digest-algo sha512\n" msgstr "digest-algo sha512\n" #. type: enumerate -#: guix-git/doc/contributing.texi:1439 +#: guix-git/doc/contributing.texi:1472 msgid "Maintainers ultimately decide whether to grant you commit access, usually following your referrals' recommendation." msgstr "Маинтайнеры решают, предоставлять ли вам доступ к коммитам, обычно следуя рекомендациям ваших рефералов." #. type: cindex -#: guix-git/doc/contributing.texi:1441 +#: guix-git/doc/contributing.texi:1474 #, no-wrap msgid "OpenPGP, signed commits" msgstr "Коммиты, подписанные OpenPGP" #. type: enumerate -#: guix-git/doc/contributing.texi:1446 +#: guix-git/doc/contributing.texi:1479 msgid "If and once you've been given access, please send a message to @email{guix-devel@@gnu.org} to say so, again signed with the OpenPGP key you will use to sign commits (do that before pushing your first commit). That way, everyone can notice and ensure you control that OpenPGP key." msgstr "Получив доступ, пожалуйста, отправьте сообщение на адрес @email{guix-devel@@gnu.org}, чтобы снова подписать его ключом OpenPGP, который вы будете использовать для подписания коммитов (сделайте это перед отправкой первого коммита). Таким образом, каждый может заметить и убедиться, что это ваш ключ OpenPGP." #. type: quotation -#: guix-git/doc/contributing.texi:1447 guix-git/doc/guix.texi:17972 +#: guix-git/doc/contributing.texi:1480 guix-git/doc/guix.texi:18334 #, no-wrap msgid "Important" msgstr "Важно" #. type: quotation -#: guix-git/doc/contributing.texi:1449 +#: guix-git/doc/contributing.texi:1482 msgid "Before you can push for the first time, maintainers must:" msgstr "Перед тем, как вы отправите изменения впервые, сопровождающие должны:" #. type: enumerate -#: guix-git/doc/contributing.texi:1453 +#: guix-git/doc/contributing.texi:1486 msgid "add your OpenPGP key to the @code{keyring} branch;" msgstr "добавить ваш OpenPGP ключ в @code{keyring} ветку;" #. type: enumerate -#: guix-git/doc/contributing.texi:1456 +#: guix-git/doc/contributing.texi:1489 msgid "add your OpenPGP fingerprint to the @file{.guix-authorizations} file of the branch(es) you will commit to." msgstr "добавьте отпечаток вашего OpenPGP ключа в @file{.guix-authorizations} файл ветки (-ок), которые вы подпишите (commit)." #. type: enumerate -#: guix-git/doc/contributing.texi:1461 +#: guix-git/doc/contributing.texi:1494 msgid "Make sure to read the rest of this section and... profit!" msgstr "Обязательно прочтите остальную часть этого раздела!" #. type: quotation -#: guix-git/doc/contributing.texi:1467 +#: guix-git/doc/contributing.texi:1500 msgid "Maintainers are happy to give commit access to people who have been contributing for some time and have a track record---don't be shy and don't underestimate your work!" msgstr "Маинтейнеры с радостью предоставят доступ к коммитам людям, которые внесли свой вклад в течение некоторого времени и имеют послужной список - не стесняйтесь и не недооценивайте свою работу!" #. type: quotation -#: guix-git/doc/contributing.texi:1471 +#: guix-git/doc/contributing.texi:1504 msgid "However, note that the project is working towards a more automated patch review and merging system, which, as a consequence, may lead us to have fewer people with commit access to the main repository. Stay tuned!" msgstr "Тем не менее, обратите внимание, что проект работает над созданием более автоматизированной системы проверки и объединения исправлений, что, как следствие, может привести к тому, что у нас будет меньше людей, имеющих доступ к главному репозиторию. Будьте на связи!" #. type: Plain text -#: guix-git/doc/contributing.texi:1478 +#: guix-git/doc/contributing.texi:1511 msgid "All commits that are pushed to the central repository on Savannah must be signed with an OpenPGP key, and the public key should be uploaded to your user account on Savannah and to public key servers, such as @code{keys.openpgp.org}. To configure Git to automatically sign commits, run:" msgstr "Все коммиты, которые передаются в центральный репозиторий в Саванне, должны быть подписаны ключом OpenPGP, а открытый ключ должен быть загружен в вашу учетную запись пользователя на Саванне и на серверы открытых ключей, такие как @code{keys.openpgp.org}. Чтобы настроить Git для автоматической подписи коммитов, запустите:" #. type: example -#: guix-git/doc/contributing.texi:1481 +#: guix-git/doc/contributing.texi:1514 #, no-wrap msgid "" "git config commit.gpgsign true\n" @@ -2190,7 +2238,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/contributing.texi:1484 +#: guix-git/doc/contributing.texi:1517 #, fuzzy, no-wrap #| msgid "" #| "git config commit.gpgsign true\n" @@ -2203,357 +2251,357 @@ msgstr "" "git config user.signingkey CABBA6EA1DC0FF33\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1489 +#: guix-git/doc/contributing.texi:1522 #, fuzzy #| msgid "You can prevent yourself from accidentally pushing unsigned commits to Savannah by using the pre-push Git hook called located at @file{etc/git/pre-push}:" msgid "You can prevent yourself from accidentally pushing unsigned commits to Savannah by using the pre-push Git hook located at @file{etc/git/pre-push}:" msgstr "Вы можете предотвратить случайную отправку неподписанных коммитов в Саванну с помощью pre-push Git hook, расположенной в @file{etc/git/pre-push}:" #. type: example -#: guix-git/doc/contributing.texi:1492 +#: guix-git/doc/contributing.texi:1525 #, no-wrap msgid "cp etc/git/pre-push .git/hooks/pre-push\n" msgstr "cp etc/git/pre-push .git/hooks/pre-push\n" #. type: subsection -#: guix-git/doc/contributing.texi:1494 +#: guix-git/doc/contributing.texi:1527 #, fuzzy, no-wrap #| msgid "Commit Access" msgid "Commit Policy" msgstr "Доступ к коммитам" #. type: Plain text -#: guix-git/doc/contributing.texi:1499 +#: guix-git/doc/contributing.texi:1532 msgid "If you get commit access, please make sure to follow the policy below (discussions of the policy can take place on @email{guix-devel@@gnu.org})." msgstr "Если вы получили доступ к коммиту, пожалуйста, следуйте приведенной ниже политике (обсуждение политики может проходить по адресу @email{guix-devel@@gnu.org})." #. type: Plain text -#: guix-git/doc/contributing.texi:1504 +#: guix-git/doc/contributing.texi:1537 msgid "Non-trivial patches should always be posted to @email{guix-patches@@gnu.org} (trivial patches include fixing typos, etc.). This mailing list fills the patch-tracking database (@pxref{Tracking Bugs and Patches})." msgstr "Нетривиальные патчи всегда должны публиковаться на @email{guix-patches@@gnu.org} (тривиальные патчи включают исправление опечаток и т.д.). Этот список рассылки заполняет базу данных отслеживания патчей (@pxref{Tracking Bugs and Patches})." #. type: Plain text -#: guix-git/doc/contributing.texi:1513 +#: guix-git/doc/contributing.texi:1546 msgid "For patches that just add a new package, and a simple one, it's OK to commit, if you're confident (which means you successfully built it in a chroot setup, and have done a reasonable copyright and license auditing). Likewise for package upgrades, except upgrades that trigger a lot of rebuilds (for example, upgrading GnuTLS or GLib). We have a mailing list for commit notifications (@email{guix-commits@@gnu.org}), so people can notice. Before pushing your changes, make sure to run @code{git pull --rebase}." msgstr "Для патчей, которые просто добавляют новый пакет или внсит небольшие изменения считается нормальным отправить коммит, если вы уверены (что означает, что вы успешно встроили его в настройку chroot и провели разумный аудит авторских прав и лицензий). Аналогично для обновлений пакетов, за исключением обновлений, которые вызывают много перестроений (например, обновление GnuTLS или GLib). У нас есть список рассылки для уведомлений о коммитах (@email{guix-commits@@gnu.org}), так что люди могут это заметить. Перед отправкой изменений обязательно запустите @code{git pull --rebase}." #. type: Plain text -#: guix-git/doc/contributing.texi:1518 +#: guix-git/doc/contributing.texi:1551 msgid "When pushing a commit on behalf of somebody else, please add a @code{Signed-off-by} line at the end of the commit log message---e.g., with @command{git am --signoff}. This improves tracking of who did what." msgstr "Когда вы отправляете коммит от имени кого-то другого, добавьте строку @code{Signed-off-by} в конце сообщения коммит лога---например, с @command{git am --signoff}. Это улучшает отслеживание того, кто что сделал." #. type: Plain text -#: guix-git/doc/contributing.texi:1522 +#: guix-git/doc/contributing.texi:1555 msgid "When adding channel news entries (@pxref{Channels, Writing Channel News}), make sure they are well-formed by running the following command right before pushing:" msgstr "При добавлении новостей канала (@pxref{Channels, Writing Channel News}), убедитесь, что они правильно сформированы, выполнив следующую команду прямо перед нажатием:" #. type: example -#: guix-git/doc/contributing.texi:1525 +#: guix-git/doc/contributing.texi:1558 #, no-wrap msgid "make check-channel-news\n" msgstr "make check-channel-news\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1531 +#: guix-git/doc/contributing.texi:1564 msgid "For anything else, please post to @email{guix-patches@@gnu.org} and leave time for a review, without committing anything (@pxref{Submitting Patches}). If you didn’t receive any reply after two weeks, and if you're confident, it's OK to commit." msgstr "Для чего-либо еще, пожалуйста, отправьте сообщение на @email{guix-patches@@gnu.org} и оставьте время для обзора, ничего не коммитя (@pxref{Submitting Patches}). Если вы не получили никакого ответа через две недели, и если вы уверены, что все в порядке, будь нормальным совершить коммит." #. type: Plain text -#: guix-git/doc/contributing.texi:1534 +#: guix-git/doc/contributing.texi:1567 msgid "That last part is subject to being adjusted, allowing individuals to commit directly on non-controversial changes on parts they’re familiar with." msgstr "Эта последняя часть подлежит корректировке, что позволяет отдельным лицам вносить непосредственные изменения в не противоречивые изменения в тех частях, с которыми они знакомы." #. type: subsection -#: guix-git/doc/contributing.texi:1535 +#: guix-git/doc/contributing.texi:1568 #, no-wrap msgid "Addressing Issues" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1546 +#: guix-git/doc/contributing.texi:1579 msgid "Peer review (@pxref{Submitting Patches}) and tools such as @command{guix lint} (@pxref{Invoking guix lint}) and the test suite (@pxref{Running the Test Suite}) should catch issues before they are pushed. Yet, commits that ``break'' functionality might occasionally go through. When that happens, there are two priorities: mitigating the impact, and understanding what happened to reduce the chance of similar incidents in the future. The responsibility for both these things primarily lies with those involved, but like everything this is a group effort." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1551 +#: guix-git/doc/contributing.texi:1584 msgid "Some issues can directly affect all users---for instance because they make @command{guix pull} fail or break core functionality, because they break major packages (at build time or run time), or because they introduce known security vulnerabilities." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1552 +#: guix-git/doc/contributing.texi:1585 #, no-wrap msgid "reverting commits" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1558 +#: guix-git/doc/contributing.texi:1591 msgid "The people involved in authoring, reviewing, and pushing such commit(s) should be at the forefront to mitigate their impact in a timely fashion: by pushing a followup commit to fix it (if possible), or by reverting it to leave time to come up with a proper fix, and by communicating with other developers about the problem." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1564 +#: guix-git/doc/contributing.texi:1597 msgid "If these persons are unavailable to address the issue in time, other committers are entitled to revert the commit(s), explaining in the commit log and on the mailing list what the problem was, with the goal of leaving time to the original committer, reviewer(s), and author(s) to propose a way forward." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1573 +#: guix-git/doc/contributing.texi:1606 msgid "Once the problem has been dealt with, it is the responsibility of those involved to make sure the situation is understood. If you are working to understand what happened, focus on gathering information and avoid assigning any blame. Do ask those involved to describe what happened, do not ask them to explain the situation---this would implicitly blame them, which is unhelpful. Accountability comes from a consensus about the problem, learning from it and improving processes so that it's less likely to reoccur." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1574 +#: guix-git/doc/contributing.texi:1607 #, fuzzy, no-wrap #| msgid "Log Rotation" msgid "Commit Revocation" msgstr "Ротация логов" #. type: Plain text -#: guix-git/doc/contributing.texi:1581 +#: guix-git/doc/contributing.texi:1614 msgid "In order to reduce the possibility of mistakes, committers will have their Savannah account removed from the Guix Savannah project and their key removed from @file{.guix-authorizations} after 12 months of inactivity; they can ask to regain commit access by emailing the maintainers, without going through the vouching process." msgstr "Чтобы уменьшить вероятность ошибок, учетные записи контрибьюторов будут удалены из проекта Guix на Savannah, а их ключи - из @file{.guix-authorizations} после 12 месяцев бездействия; они могут попросить восстановить доступ к отправке коммитов, отправив электронное письмо мэйнтейнеров, не проходя через процесс подтверждения." #. type: Plain text -#: guix-git/doc/contributing.texi:1591 +#: guix-git/doc/contributing.texi:1624 msgid "Maintainers@footnote{See @uref{https://guix.gnu.org/en/about} for the current list of maintainers. You can email them privately at @email{guix-maintainers@@gnu.org}.} may also revoke an individual's commit rights, as a last resort, if cooperation with the rest of the community has caused too much friction---even within the bounds of the project's code of conduct (@pxref{Contributing}). They would only do so after public or private discussion with the individual and a clear notice. Examples of behavior that hinders cooperation and could lead to such a decision include:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1593 +#: guix-git/doc/contributing.texi:1626 #, no-wrap msgid "repeated violation of the commit policy stated above;" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1594 +#: guix-git/doc/contributing.texi:1627 #, no-wrap msgid "repeated failure to take peer criticism into account;" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1595 +#: guix-git/doc/contributing.texi:1628 #, no-wrap msgid "breaching trust through a series of grave incidents." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1602 +#: guix-git/doc/contributing.texi:1635 msgid "When maintainers resort to such a decision, they notify developers on @email{guix-devel@@gnu.org}; inquiries may be sent to @email{guix-maintainers@@gnu.org}. Depending on the situation, the individual may still be welcome to contribute." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1603 +#: guix-git/doc/contributing.texi:1636 #, no-wrap msgid "Helping Out" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1610 +#: guix-git/doc/contributing.texi:1643 msgid "One last thing: the project keeps moving forward because committers not only push their own awesome changes, but also offer some of their time @emph{reviewing} and pushing other people's changes. As a committer, you're welcome to use your expertise and commit rights to help other contributors, too!" msgstr "И последнее: проект продолжает двигаться вперед, потому что коммиттеры не только вносят свои собственные потрясающие изменения, но также уделяют свое время на @emph{reviewing} и продвижение изменений других людей. Как коммиттер, вы можете использовать свой опыт и передавать права, чтобы помочь и другим участникам!" #. type: cindex -#: guix-git/doc/contributing.texi:1614 +#: guix-git/doc/contributing.texi:1647 #, no-wrap msgid "update-guix-package, updating the guix package" msgstr "guix package: (guix)Запуск guix package" #. type: Plain text -#: guix-git/doc/contributing.texi:1620 +#: guix-git/doc/contributing.texi:1653 msgid "It is sometimes desirable to update the @code{guix} package itself (the package defined in @code{(gnu packages package-management)}), for example to make new daemon features available for use by the @code{guix-service-type} service type. In order to simplify this task, the following command can be used:" msgstr "Иногда желательно обновить сам пакет @code{guix} (пакет определен в @code{(gnu packages package-management)}), например, чтобы сделать новые функции демона доступными для использования сервисом @code{guix-service-type}. Чтобы упростить эту задачу, можно использовать следующую команду:" #. type: example -#: guix-git/doc/contributing.texi:1623 +#: guix-git/doc/contributing.texi:1656 #, no-wrap msgid "make update-guix-package\n" msgstr "make authenticate\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1630 +#: guix-git/doc/contributing.texi:1663 msgid "The @code{update-guix-package} make target will use the last known @emph{commit} corresponding to @code{HEAD} in your Guix checkout, compute the hash of the Guix sources corresponding to that commit and update the @code{commit}, @code{revision} and hash of the @code{guix} package definition." msgstr "@code{update-guix-package} make target воспользуется последним известным коммитом, согласно @code{HEAD} вашего Guix checkout, вычислить хэш источников Guix, соответствующих этому коммиту и обновите @code{commit}, @code{revision} и хэш @code{guix}." #. type: Plain text -#: guix-git/doc/contributing.texi:1634 +#: guix-git/doc/contributing.texi:1667 msgid "To validate that the updated @code{guix} package hashes are correct and that it can be built successfully, the following command can be run from the directory of your Guix checkout:" msgstr "Чтобы убедиться, что обновленные хеш-суммы пакета @code{guix} верны и что он может быть успешно собран, следующая команда может быть запущена из каталога Guix (from the directory of your Guix checkout):" #. type: example -#: guix-git/doc/contributing.texi:1637 +#: guix-git/doc/contributing.texi:1670 #, no-wrap msgid "./pre-inst-env guix build guix\n" msgstr "./pre-inst-env guix build gnew --keep-failed\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1642 +#: guix-git/doc/contributing.texi:1675 msgid "To guard against accidentally updating the @code{guix} package to a commit that others can't refer to, a check is made that the commit used has already been pushed to the Savannah-hosted Guix git repository." msgstr "Чтобы предотвратить случайное обновление пакета @code{guix} к коммиту, на которую другие не могут ссылаться, выполняется проверка того, что использованный коммит уже был отправлен в репозиторий Guix, размещенный в Savannah." #. type: Plain text -#: guix-git/doc/contributing.texi:1647 +#: guix-git/doc/contributing.texi:1680 msgid "This check can be disabled, @emph{at your own peril}, by setting the @code{GUIX_ALLOW_ME_TO_USE_PRIVATE_COMMIT} environment variable. When this variable is set, the updated package source is also added to the store. This is used as part of the release process of Guix." msgstr "Эту проверку можно отключить @emph{на свой страх и риск}, установив переменну окружения @code{GUIX_ALLOW_ME_TO_USE_PRIVATE_COMMIT}. Когда эта переменная установлена, обновленный исходник пакета также добавляется в хранилище. Это часть процесса выпуска Guix." #. type: cindex -#: guix-git/doc/contributing.texi:1648 +#: guix-git/doc/contributing.texi:1681 #, no-wrap msgid "translation" msgstr "транзакции" #. type: cindex -#: guix-git/doc/contributing.texi:1649 +#: guix-git/doc/contributing.texi:1682 #, no-wrap msgid "l10n" msgstr "l10n" #. type: cindex -#: guix-git/doc/contributing.texi:1650 +#: guix-git/doc/contributing.texi:1683 #, no-wrap msgid "i18n" msgstr "i18n" #. type: cindex -#: guix-git/doc/contributing.texi:1651 +#: guix-git/doc/contributing.texi:1684 #, no-wrap msgid "native language support" msgstr "Работа с языками, поддерживаемыми gcc." #. type: Plain text -#: guix-git/doc/contributing.texi:1661 +#: guix-git/doc/contributing.texi:1694 msgid "Writing code and packages is not the only way to provide a meaningful contribution to Guix. Translating to a language you speak is another example of a valuable contribution you can make. This section is designed to describe the translation process. It gives you advice on how you can get involved, what can be translated, what mistakes you should avoid and what we can do to help you!" msgstr "Написание кода и пакетов - не единственный способ внести значимый вклад в Guix. Перевод на язык, на котором вы говорите---еще один пример вашего ценного вклада. Этот раздел предназначен для описания процесса перевода. Здесь представлены советы о том, как вы можете принять участие, что можно перевести, каких ошибок следует избегать и что мы можем сделать, чтобы вам помочь!" #. type: Plain text -#: guix-git/doc/contributing.texi:1667 +#: guix-git/doc/contributing.texi:1700 msgid "Guix is a big project that has multiple components that can be translated. We coordinate the translation effort on a @uref{https://translate.fedoraproject.org/projects/guix/,Weblate instance} hosted by our friends at Fedora. You will need an account to submit translations." msgstr "Guix - это большой проект, состоящий из нескольких компонентов, которые можно перевести. Мы координируем работу по переводу на @uref{https://translate.fedoraproject.org/projects/guix/,Weblate instance}, размещенном нашими друзьями в Fedora. Для отправки переводов вам потребуется учетная запись." #. type: Plain text -#: guix-git/doc/contributing.texi:1674 +#: guix-git/doc/contributing.texi:1707 msgid "Some of the software packaged in Guix also contain translations. We do not host a translation platform for them. If you want to translate a package provided by Guix, you should contact their developers or find the information on their website. As an example, you can find the homepage of the @code{hello} package by typing @code{guix show hello}. On the ``homepage'' line, you will see @url{https://www.gnu.org/software/hello/} as the homepage." msgstr "Некоторое программное обеспечение, упакованное в Guix, также содержит переводы. Мы не хостим для них платформу для перевода. Если вы хотите перевести пакет, предоставленный Guix, вам следует связаться с их разработчиками или найти информацию на их веб-сайтах. Например, вы можете найти домашнюю страницу пакета @code{hello}, набрав @code{guix show hello}. В строке ``домашняя страница'' вы увидите @url{https://www.gnu.org/software/hello/} в качестве домашней страницы." #. type: Plain text -#: guix-git/doc/contributing.texi:1679 +#: guix-git/doc/contributing.texi:1712 msgid "Many GNU and non-GNU packages can be translated on the @uref{https://translationproject.org,Translation Project}. Some projects with multiple components have their own platform. For instance, GNOME has its own platform, @uref{https://l10n.gnome.org/,Damned Lies}." msgstr "Многие пакеты GNU и не-GNU можно перевести на @uref{https: //translationproject.org,Translation Project}. Некоторые проекты с несколькими компонентами имеют собственную платформу. Например, GNOME имеет собственную платформу @uref{https://l10n.gnome.org/,Damned Lies}." #. type: Plain text -#: guix-git/doc/contributing.texi:1681 +#: guix-git/doc/contributing.texi:1714 msgid "Guix has five components hosted on Weblate." msgstr "Guix состоит из пяти компонентов, размещенных на Weblate." #. type: item -#: guix-git/doc/contributing.texi:1683 +#: guix-git/doc/contributing.texi:1716 #, no-wrap msgid "@code{guix} contains all the strings from the Guix software (the" msgstr "@code{guix} содержит все строки из программного обеспечения Guix (" #. type: itemize -#: guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1718 msgid "guided system installer, the package manager, etc), excluding packages." msgstr "установщик системы, менеджер пакетов и т.д.), за исключением пакетов." #. type: item -#: guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1718 #, no-wrap msgid "@code{packages} contains the synopsis (single-sentence description" msgstr "@code{packages} содержит синопсис (описание пакета из одного предложения" #. type: itemize -#: guix-git/doc/contributing.texi:1687 +#: guix-git/doc/contributing.texi:1720 msgid "of a package) and description (longer description) of packages in Guix." msgstr ") и (более подробное) описание пакетов в Guix." #. type: item -#: guix-git/doc/contributing.texi:1687 +#: guix-git/doc/contributing.texi:1720 #, no-wrap msgid "@code{website} contains the official Guix website, except for" msgstr "@code{website} содержит официальный сайт Guix, за исключением" #. type: itemize -#: guix-git/doc/contributing.texi:1689 +#: guix-git/doc/contributing.texi:1722 msgid "blog posts and multimedia content." msgstr "сообщения в блогах и мультимедийный контент." #. type: item -#: guix-git/doc/contributing.texi:1689 +#: guix-git/doc/contributing.texi:1722 #, no-wrap msgid "@code{documentation-manual} corresponds to this manual." msgstr "@code{documentation-manual} соответствует этому руководству." #. type: item -#: guix-git/doc/contributing.texi:1690 +#: guix-git/doc/contributing.texi:1723 #, no-wrap msgid "@code{documentation-cookbook} is the component for the cookbook." msgstr "@code{documentation-cookbook} - компонент для поваренной книги." #. type: subsubheading -#: guix-git/doc/contributing.texi:1693 +#: guix-git/doc/contributing.texi:1726 #, no-wrap msgid "General Directions" msgstr "поколения" #. type: Plain text -#: guix-git/doc/contributing.texi:1701 +#: guix-git/doc/contributing.texi:1734 msgid "Once you get an account, you should be able to select a component from @uref{https://translate.fedoraproject.org/projects/guix/,the guix project}, and select a language. If your language does not appear in the list, go to the bottom and click on the ``Start new translation'' button. Select the language you want to translate to from the list, to start your new translation." msgstr "После создания учетной записи вы сможете выбрать компонент из @uref{https://translate.fedoraproject.org/projects/guix/,the guix project} и выбрать язык. Если вашего языка нет в списке, пройдите вниз и нажмите кнопку ``Начать новый перевод''. Выберите из списка язык, на который вы хотите перевести, чтобы начать новый перевод." #. type: Plain text -#: guix-git/doc/contributing.texi:1706 +#: guix-git/doc/contributing.texi:1739 msgid "Like lots of other free software packages, Guix uses @uref{https://www.gnu.org/software/gettext,GNU Gettext} for its translations, with which translatable strings are extracted from the source code to so-called PO files." msgstr "Как и многие другие бесплатные программные пакеты, Guix использует @uref{https://www.gnu.org/software/gettext,GNU Gettext} для своих переводов, с помощью которых переводимые строки извлекаются из исходного кода в так называемые PO-файлы." #. type: Plain text -#: guix-git/doc/contributing.texi:1717 +#: guix-git/doc/contributing.texi:1750 msgid "Even though PO files are text files, changes should not be made with a text editor but with PO editing software. Weblate integrates PO editing functionality. Alternatively, translators can use any of various free-software tools for filling in translations, of which @uref{https://poedit.net/,Poedit} is one example, and (after logging in) @uref{https://docs.weblate.org/en/latest/user/files.html,upload} the changed file. There is also a special @uref{https://www.emacswiki.org/emacs/PoMode,PO editing mode} for users of GNU Emacs. Over time translators find out what software they are happy with and what features they need." msgstr "Несмотря на то, что файлы PO являются текстовыми файлами, изменения следует вносить не с помощью текстового редактора, а с помощью программного обеспечения для редактирования PO. Weblate интегрирует функции редактирования PO. В качестве альтернативы переводчики могут использовать любой из различных бесплатных программных инструментов для заполнения переводов, одним из примеров которых является @uref{https://poedit.net/,Poedit} и (после входа в систему) @uref{https://docs.weblate.org/en/latest/user/files.html, загрузить} измененный файл. Существует также специальный @uref {https://www.emacswiki.org/emacs/PoMode,PO режим редактирования} для пользователей GNU Emacs. Со временем переводчики узнают, какое программное обеспечение им нравится и какие функции им нужны." #. type: Plain text -#: guix-git/doc/contributing.texi:1722 +#: guix-git/doc/contributing.texi:1755 msgid "On Weblate, you will find various links to the editor, that will show various subsets (or all) of the strings. Have a look around and at the @uref{https://docs.weblate.org/en/latest/,documentation} to familiarize yourself with the platform." msgstr "На Weblate вы найдете различные ссылки на редактор, который покажет различные подмножества (или все) строк (-и). Посмотрите вокруг и на @uref{https://docs.weblate.org/en/latest/,documentation}, чтобы ознакомиться с платформой." #. type: subsubheading -#: guix-git/doc/contributing.texi:1723 +#: guix-git/doc/contributing.texi:1756 #, no-wrap msgid "Translation Components" msgstr "Компоненты перевода" #. type: Plain text -#: guix-git/doc/contributing.texi:1728 +#: guix-git/doc/contributing.texi:1761 msgid "In this section, we provide more detailed guidance on the translation process, as well as details on what you should or should not do. When in doubt, please contact us, we will be happy to help!" msgstr "В этом разделе мы даем более подробные инструкции по процессу перевода, а также подробности о том, что вам следует или не следует делать. В случае сомнений свяжитесь с нами, мы будем рады помочь!" #. type: item -#: guix-git/doc/contributing.texi:1730 guix-git/doc/guix.texi:9420 +#: guix-git/doc/contributing.texi:1763 guix-git/doc/guix.texi:9734 #, no-wrap msgid "guix" msgstr "guix" #. type: table -#: guix-git/doc/contributing.texi:1735 +#: guix-git/doc/contributing.texi:1768 #, fuzzy #| msgid "Guix is written in the Guile programming language, and some strings contain special formating that is interpreted by Guile. These special formating should be highlighted by Weblate. They start with @code{~} followed by one or more characters." msgid "Guix is written in the Guile programming language, and some strings contain special formatting that is interpreted by Guile. These special formatting should be highlighted by Weblate. They start with @code{~} followed by one or more characters." msgstr "Guix написан на языке программирования Guile, и некоторые строки содержат специальный формат, который интерпретируется Guile. Weblate должен выделить эти особенности форматирования. Они начинаются с @code{~}, за которым следует один или несколько символов." #. type: table -#: guix-git/doc/contributing.texi:1744 +#: guix-git/doc/contributing.texi:1777 #, fuzzy #| msgid "When printing the string, Guile replaces the special formating symbols with actual values. For instance, the string @samp{ambiguous package specification `~a'} would be substituted to contain said package specification instead of @code{~a}. To properly translate this string, you must keep the formating code in your translation, although you can place it where it makes sense in your language. For instance, the French translation says @samp{spécification du paquet « ~a » ambiguë} because the adjective needs to be placed in the end of the sentence." msgid "When printing the string, Guile replaces the special formatting symbols with actual values. For instance, the string @samp{ambiguous package specification `~a'} would be substituted to contain said package specification instead of @code{~a}. To properly translate this string, you must keep the formatting code in your translation, although you can place it where it makes sense in your language. For instance, the French translation says @samp{spécification du paquet « ~a » ambiguë} because the adjective needs to be placed in the end of the sentence." msgstr "При печати строки Guile заменяет специальные символы форматирования фактическими значениями. Например, строка @samp{ambiguous package specification `~a'} будет заменена на указанную спецификацию пакета вместо @code{~a}. Чтобы правильно перевести эту строку, вы должны сохранить код форматирования в своем переводе, хотя вы можете разместить его там, где это имеет смысл на вашем языке. Например, во французском переводе написано @samp{spécification du paquet « ~a » ambiguë}, потому что прилагательное нужно поставить в конец предложения." #. type: table -#: guix-git/doc/contributing.texi:1748 +#: guix-git/doc/contributing.texi:1781 #, fuzzy #| msgid "If there are multiple formating symbols, make sure to respect the order. Guile does not know in which order you intended the string to be read, so it will substitute the symbols in the same order as the English sentence." msgid "If there are multiple formatting symbols, make sure to respect the order. Guile does not know in which order you intended the string to be read, so it will substitute the symbols in the same order as the English sentence." msgstr "Если имеется несколько символов форматирования, обязательно соблюдайте порядок. Guile не знает, в каком порядке вы хотели прочитать строку, поэтому заменит символы в том же порядке, что и английское предложение." #. type: table -#: guix-git/doc/contributing.texi:1756 +#: guix-git/doc/contributing.texi:1789 #, fuzzy #| msgid "As an example, you cannot translate @samp{package '~a' has been superseded by '~a'} by @samp{'~a' superseeds package '~a'}, because the meaning would be reversed. If @var{foo} is superseded by @var{bar}, the translation would read @samp{'foo' superseeds package 'bar'}. To work around this problem, it is possible to use more advanced formating to select a given piece of data, instead of following the default English order. @xref{Formatted Output,,, guile, GNU Guile Reference Manual}, for more information on formating in Guile." msgid "As an example, you cannot translate @samp{package '~a' has been superseded by '~a'} by @samp{'~a' superseeds package '~a'}, because the meaning would be reversed. If @var{foo} is superseded by @var{bar}, the translation would read @samp{'foo' superseeds package 'bar'}. To work around this problem, it is possible to use more advanced formatting to select a given piece of data, instead of following the default English order. @xref{Formatted Output,,, guile, GNU Guile Reference Manual}, for more information on formatting in Guile." @@ -2563,104 +2611,104 @@ msgstr "Например, вы не можете перевести @samp{packag #. type: item #. #-#-#-#-# guix.pot (guix manual checkout) #-#-#-#-# #. type: cindex -#: guix-git/doc/contributing.texi:1757 guix-git/doc/guix.texi:2988 +#: guix-git/doc/contributing.texi:1790 guix-git/doc/guix.texi:3005 #, no-wrap msgid "packages" msgstr "пакеты" #. type: table -#: guix-git/doc/contributing.texi:1762 +#: guix-git/doc/contributing.texi:1795 msgid "Package descriptions occasionally contain Texinfo markup (@pxref{Synopses and Descriptions}). Texinfo markup looks like @samp{@@code@{rm -rf@}}, @samp{@@emph@{important@}}, etc. When translating, please leave markup as is." msgstr "Описания пакетов иногда содержат разметку Texinfo (@pxref{Synopses and Descriptions}). Разметка Texinfo выглядит как @samp{@@code@{rm -rf@}}, @samp{@@emph@{important@}} и т.д. При переводе оставляйте разметку как есть." #. type: table -#: guix-git/doc/contributing.texi:1771 +#: guix-git/doc/contributing.texi:1804 #, fuzzy #| msgid "The characters after ``@@'' form the name of the markup, and the text between ``@{'' and ``@}'' is its content. In general, you should not translate the content of markup like @code{@@code}, as it contains literal code that do not change with language. You can translate the content of formating markup such as @code{@@emph}, @code{@@i}, @code{@@itemize}, @code{@@item}. However, do not translate the name of the markup, or it will not be recognized. Do not translate the word after @code{@@end}, it is the name of the markup that is closed at this position (e.g.@: @code{@@itemize ... @@end itemize})." msgid "The characters after ``@@'' form the name of the markup, and the text between ``@{'' and ``@}'' is its content. In general, you should not translate the content of markup like @code{@@code}, as it contains literal code that do not change with language. You can translate the content of formatting markup such as @code{@@emph}, @code{@@i}, @code{@@itemize}, @code{@@item}. However, do not translate the name of the markup, or it will not be recognized. Do not translate the word after @code{@@end}, it is the name of the markup that is closed at this position (e.g.@: @code{@@itemize ... @@end itemize})." msgstr "Символы после ``@@'' образуют имя разметки, а текст между ``@{'' и ``@}''---это ее содержимое. В общем, вам не следует переводить содержимое, например, разметки @code{@@code}, поскольку оно содержит код, который не меняется в зависимости от языка. Вы можете переводить содержание форматирующей разметки, например @code{@@emph}, @code{@@i}, @code{@@itemize}, @code{@@item}. Однако не переводите название разметки, иначе оно не будет распознано. Не переводите слово после @code{@@end}, это имя разметки, которая закрывается в этой позиции (например, @: @code{@@itemize ... @@end itemize})." #. type: item -#: guix-git/doc/contributing.texi:1772 +#: guix-git/doc/contributing.texi:1805 #, no-wrap msgid "documentation-manual and documentation-cookbook" msgstr "documentation-manual and documentation-cookbook" #. type: table -#: guix-git/doc/contributing.texi:1776 +#: guix-git/doc/contributing.texi:1809 msgid "The first step to ensure a successful translation of the manual is to find and translate the following strings @emph{first}:" msgstr "Первый шаг к успешному переводу руководства---найти и перевести следующие строки @emph{первыми}:" #. type: item -#: guix-git/doc/contributing.texi:1778 +#: guix-git/doc/contributing.texi:1811 #, no-wrap msgid "@code{version.texi}: Translate this string as @code{version-xx.texi}," msgstr "@code{version.texi}: переведите эту строку как @code{version-xx.texi}," #. type: itemize -#: guix-git/doc/contributing.texi:1781 +#: guix-git/doc/contributing.texi:1814 msgid "where @code{xx} is your language code (the one shown in the URL on weblate)." msgstr "где @code{xx}---код вашего языка (тот, который показан в URL-адресе на weblate)." #. type: item -#: guix-git/doc/contributing.texi:1781 +#: guix-git/doc/contributing.texi:1814 #, no-wrap msgid "@code{contributing.texi}: Translate this string as" msgstr "@code{contributing.texi}: переведите эту строку как" #. type: itemize -#: guix-git/doc/contributing.texi:1783 +#: guix-git/doc/contributing.texi:1816 msgid "@code{contributing.xx.texi}, where @code{xx} is the same language code." msgstr "@code{contributing.xx.texi}, где @code {xx} - код того же языка." #. type: item -#: guix-git/doc/contributing.texi:1783 +#: guix-git/doc/contributing.texi:1816 #, no-wrap msgid "@code{Top}: Do not translate this string, it is important for Texinfo." msgstr "@code{Top}: Не переводите эту строку, это важно для Texinfo." #. type: itemize -#: guix-git/doc/contributing.texi:1786 +#: guix-git/doc/contributing.texi:1819 msgid "If you translate it, the document will be empty (missing a Top node). Please look for it, and register @code{Top} as its translation." msgstr "Если вы переведете его, документ будет пустым (missing a Top node). Найдите его и зарегистрируйте @code{Top} в качестве его перевода." #. type: table -#: guix-git/doc/contributing.texi:1791 +#: guix-git/doc/contributing.texi:1824 msgid "Translating these strings first ensure we can include your translation in the guix repository without breaking the make process or the @command{guix pull} machinery." msgstr "Перевод этих строк гарантирует, что мы сможем включить ваш перевод в репозиторий guix, не нарушая процесс make или механизм @command{guix pull}." #. type: table -#: guix-git/doc/contributing.texi:1798 +#: guix-git/doc/contributing.texi:1831 #, fuzzy #| msgid "The manual and the cookbook both use Texinfo. As for @code{packages}, please keep Texinfo markup as is. There are more possible markup types in the manual than in the package descriptions. In general, do not translate the content of @code{@@code}, @code{@@file}, @code{@@var}, @code{@@value}, etc. You should translate the content of formating markup such as @code{@@emph}, @code{@@i}, etc." msgid "The manual and the cookbook both use Texinfo. As for @code{packages}, please keep Texinfo markup as is. There are more possible markup types in the manual than in the package descriptions. In general, do not translate the content of @code{@@code}, @code{@@file}, @code{@@var}, @code{@@value}, etc. You should translate the content of formatting markup such as @code{@@emph}, @code{@@i}, etc." msgstr "И в руководстве, и в cookbook используется Texinfo. Что касается @code{packages}, пожалуйста, оставьте разметку Texinfo как есть. В руководстве больше возможных типов разметки, чем в описаниях пакетов. Как правило, не переводите содержимое @code{@@code}, @code{@@file}, @code{@@var}, @code{@@value} и т.д. Вы должны переводить содержимое разметок форматирования, например @code{@@emph}, @code{@@i} и т.д." #. type: table -#: guix-git/doc/contributing.texi:1806 +#: guix-git/doc/contributing.texi:1839 #, fuzzy #| msgid "The manual contains sections that can be refered to by name by @code{@@ref}, @code{@@xref} and @code{@@pxref}. We have a mechanism in place so you do not have to translate their content. If you keep the English title, we will automatically replace it with your translation of that title. This ensures that Texinfo will always be able to find the node. If you decide to change the translation of the title, the references will automatically be updated and you will not have to update them all yourself." msgid "The manual contains sections that can be referred to by name by @code{@@ref}, @code{@@xref} and @code{@@pxref}. We have a mechanism in place so you do not have to translate their content. If you keep the English title, we will automatically replace it with your translation of that title. This ensures that Texinfo will always be able to find the node. If you decide to change the translation of the title, the references will automatically be updated and you will not have to update them all yourself." msgstr "В руководстве есть разделы, на которые можно ссылаться по имени с помощью @code{@@ref}, @code{@@xref} и @code{@@pxref}. У нас есть механизм, позволяющий не переводить их содержание. Если вы сохраните заголовок на английском языке, мы автоматически заменим его вашим переводом этого заголовка. Это гарантирует, что Texinfo всегда сможет найти узел. Если вы решите изменить перевод заголовка, ссылки будут обновлены автоматически, и вам не придется обновлять их все самостоятельно." #. type: table -#: guix-git/doc/contributing.texi:1816 +#: guix-git/doc/contributing.texi:1849 msgid "When translating references from the cookbook to the manual, you need to replace the name of the manual and the name of the section. For instance, to translate @code{@@pxref@{Defining Packages,,, guix, GNU Guix Reference Manual@}}, you would replace @code{Defining Packages} with the title of that section in the translated manual @emph{only} if that title is translated. If the title is not translated in your language yet, do not translate it here, or the link will be broken. Replace @code{guix} with @code{guix.xx} where @code{xx} is your language code. @code{GNU Guix Reference Manual} is the text of the link. You can translate it however you wish." msgstr "При переводе ссылок из cookbook в мануал нужно заменить название мануала и название раздела. Например, чтобы перевести @code{@@pxref@{Defining Packages,,, guix, GNU Guix Reference Manual@}}, вы должны заменить@code{Defining Packages} заголовком этого раздела в переведенном руководстве @emph{только} если это название переведено. Если название еще не переведено на ваш язык, не переводите его здесь, иначе ссылка будет неработающей. Замените @code{guix} на @code{guix.xx}, где @code{xx} - код вашего языка. @code{GNU Guix Reference Manual}---это текст ссылки. Вы можете перевести его как хотите." #. type: item -#: guix-git/doc/contributing.texi:1817 +#: guix-git/doc/contributing.texi:1850 #, no-wrap msgid "website" msgstr "официальный веб-сайт" #. type: table -#: guix-git/doc/contributing.texi:1824 +#: guix-git/doc/contributing.texi:1857 msgid "The website pages are written using SXML, an s-expression version of HTML, the basic language of the web. We have a process to extract translatable strings from the source, and replace complex s-expressions with a more familiar XML markup, where each markup is numbered. Translators can arbitrarily change the ordering, as in the following example." msgstr "Страницы веб-сайта написаны с использованием SXML, версии HTML (основного языка Интернета) с s-выражениями. У нас есть процесс извлечения переводимых строк из источника и замены сложных s-выражений на более знакомую разметку XML, где каждая разметка пронумерована. Переводчики могут произвольно изменять порядок, как в следующем примере." #. type: example -#: guix-git/doc/contributing.texi:1831 +#: guix-git/doc/contributing.texi:1864 #, no-wrap msgid "" "#. TRANSLATORS: Defining Packages is a section name\n" @@ -2676,138 +2724,138 @@ msgstr "" "msgstr \"Pakete werden als reine <2>Guile-Module <1>definiert<1.1>de<1.2>Pakete-definieren.html.\"\n" #. type: table -#: guix-git/doc/contributing.texi:1834 +#: guix-git/doc/contributing.texi:1867 msgid "Note that you need to include the same markups. You cannot skip any." msgstr "Обратите внимание, что вам нужно включить такие же разметки. Вы не можете ничего пропустить." #. type: Plain text -#: guix-git/doc/contributing.texi:1842 +#: guix-git/doc/contributing.texi:1875 msgid "In case you make a mistake, the component might fail to build properly with your language, or even make guix pull fail. To prevent that, we have a process in place to check the content of the files before pushing to our repository. We will not be able to update the translation for your language in Guix, so we will notify you (through weblate and/or by email) so you get a chance to fix the issue." msgstr "Если вы допустили ошибку, компонент может не работать должным образом с вашим языком или даже привести к сбою guix pull. Чтобы предотвратить это, у нас есть процесс проверки содержимого файлов перед отправкой в наш репозиторий. Если, мы не сможем обновить перевод для вашего языка в Guix, мы уведомим вас (через веб-сайт и/или по электронной почте), чтобы решить проблему." #. type: subsubheading -#: guix-git/doc/contributing.texi:1843 +#: guix-git/doc/contributing.texi:1876 #, no-wrap msgid "Outside of Weblate" msgstr "Вне Weblate" #. type: Plain text -#: guix-git/doc/contributing.texi:1846 +#: guix-git/doc/contributing.texi:1879 msgid "Currently, some parts of Guix cannot be translated on Weblate, help wanted!" msgstr "В настоящее время некоторые части Guix не могут быть переведены на Weblate---требуется помощь!" #. type: item -#: guix-git/doc/contributing.texi:1848 +#: guix-git/doc/contributing.texi:1881 #, no-wrap msgid "@command{guix pull} news can be translated in @file{news.scm}, but is not" msgstr "@command{guix pull} новости можно перевести в @file{news.scm}, но не" #. type: itemize -#: guix-git/doc/contributing.texi:1854 +#: guix-git/doc/contributing.texi:1887 msgid "available from Weblate. If you want to provide a translation, you can prepare a patch as described above, or simply send us your translation with the name of the news entry you translated and your language. @xref{Writing Channel News}, for more information about channel news." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1854 +#: guix-git/doc/contributing.texi:1887 #, no-wrap msgid "Guix blog posts cannot currently be translated." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1855 +#: guix-git/doc/contributing.texi:1888 #, no-wrap msgid "The installer script (for foreign distributions) is entirely in English." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1856 +#: guix-git/doc/contributing.texi:1889 #, no-wrap msgid "Some of the libraries Guix uses cannot be translated or are translated" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1858 +#: guix-git/doc/contributing.texi:1891 msgid "outside of the Guix project. Guile itself is not internationalized." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1858 +#: guix-git/doc/contributing.texi:1891 #, no-wrap msgid "Other manuals linked from this manual or the cookbook might not be" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1860 +#: guix-git/doc/contributing.texi:1893 msgid "translated." msgstr "транзакции" #. type: subsubheading -#: guix-git/doc/contributing.texi:1862 +#: guix-git/doc/contributing.texi:1895 #, no-wrap msgid "Translation Infrastructure" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1873 +#: guix-git/doc/contributing.texi:1906 msgid "Weblate is backed by a git repository from which it discovers new strings to translate and pushes new and updated translations. Normally, it would be enough to give it commit access to our repositories. However, we decided to use a separate repository for two reasons. First, we would have to give Weblate commit access and authorize its signing key, but we do not trust it in the same way we trust guix developers, especially since we do not manage the instance ourselves. Second, if translators mess something up, it can break the generation of the website and/or guix pull for all our users, independently of their language." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1877 +#: guix-git/doc/contributing.texi:1910 msgid "For these reasons, we use a dedicated repository to host translations, and we synchronize it with our guix and artworks repositories after checking no issue was introduced in the translation." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1883 +#: guix-git/doc/contributing.texi:1916 msgid "Developers can download the latest PO files from weblate in the Guix repository by running the @command{make download-po} command. It will automatically download the latest files from weblate, reformat them to a canonical form, and check they do not contain issues. The manual needs to be built again to check for additional issues that might crash Texinfo." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1887 +#: guix-git/doc/contributing.texi:1920 msgid "Before pushing new translation files, developers should add them to the make machinery so the translations are actually available. The process differs for the various components." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1889 +#: guix-git/doc/contributing.texi:1922 #, no-wrap msgid "New po files for the @code{guix} and @code{packages} components must" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1892 +#: guix-git/doc/contributing.texi:1925 msgid "be registered by adding the new language to @file{po/guix/LINGUAS} or @file{po/packages/LINGUAS}." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1892 +#: guix-git/doc/contributing.texi:1925 #, no-wrap msgid "New po files for the @code{documentation-manual} component must be" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1898 +#: guix-git/doc/contributing.texi:1931 msgid "registered by adding the file name to @code{DOC_PO_FILES} in @file{po/doc/local.mk}, the generated @file{%D%/guix.xx.texi} manual to @code{info_TEXINFOS} in @file{doc/local.mk} and the generated @file{%D%/guix.xx.texi} and @file{%D%/contributing.xx.texi} to @code{TRANSLATED_INFO} also in @file{doc/local.mk}." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1898 +#: guix-git/doc/contributing.texi:1931 #, no-wrap msgid "New po files for the @code{documentation-cookbook} component must be" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1904 +#: guix-git/doc/contributing.texi:1937 msgid "registered by adding the file name to @code{DOC_COOKBOOK_PO_FILES} in @file{po/doc/local.mk}, the generated @file{%D%/guix-cookbook.xx.texi} manual to @code{info_TEXINFOS} in @file{doc/local.mk} and the generated @file{%D%/guix-cookbook.xx.texi} to @code{TRANSLATED_INFO} also in @file{doc/local.mk}." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1904 +#: guix-git/doc/contributing.texi:1937 #, no-wrap msgid "New po files for the @code{website} component must be added to the" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1909 +#: guix-git/doc/contributing.texi:1942 msgid "@code{guix-artwork} repository, in @file{website/po/}. @file{website/po/LINGUAS} and @file{website/po/ietf-tags.scm} must be updated accordingly (see @file{website/i18n-howto.txt} for more information on the process)." msgstr "" @@ -2831,7 +2879,7 @@ msgstr "version-ru.texi" #. type: copying #: guix-git/doc/guix.texi:103 #, fuzzy -msgid "Copyright @copyright{} 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" +msgid "Copyright @copyright{} 2012-2022 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021, 2022 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021, 2022 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021, 2022 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021, 2022 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" msgstr "Copyright @copyright{} 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017 Christopher Allan Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020 Maxim Cournoyer@* Copyright @copyright{} 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Leo Prikler@* Copyright @copyright{} 2019, 2020 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@*" #. type: copying @@ -2994,7 +3042,7 @@ msgstr "Это руководство доступно также на (упро #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:192 -#: guix-git/doc/guix.texi:402 guix-git/doc/guix.texi:403 +#: guix-git/doc/guix.texi:403 guix-git/doc/guix.texi:404 #, no-wrap msgid "Introduction" msgstr "Введение" @@ -3006,7 +3054,7 @@ msgstr "Что такое Guix?" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:197 -#: guix-git/doc/guix.texi:589 guix-git/doc/guix.texi:590 +#: guix-git/doc/guix.texi:600 guix-git/doc/guix.texi:601 #, no-wrap msgid "Installation" msgstr "Установка" @@ -3018,7 +3066,7 @@ msgstr "Установка Guix." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:213 -#: guix-git/doc/guix.texi:2049 guix-git/doc/guix.texi:2050 +#: guix-git/doc/guix.texi:2066 guix-git/doc/guix.texi:2067 #, no-wrap msgid "System Installation" msgstr "Установка системы" @@ -3029,8 +3077,8 @@ msgid "Installing the whole operating system." msgstr "Полная установка операционной системы." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:2777 -#: guix-git/doc/guix.texi:2778 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:2794 +#: guix-git/doc/guix.texi:2795 #, no-wrap msgid "Getting Started" msgstr "Начиная" @@ -3042,7 +3090,7 @@ msgstr "Прервые шаги." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:230 -#: guix-git/doc/guix.texi:2985 guix-git/doc/guix.texi:2986 +#: guix-git/doc/guix.texi:3002 guix-git/doc/guix.texi:3003 #, no-wrap msgid "Package Management" msgstr "Управление пакетами" @@ -3054,7 +3102,7 @@ msgstr "Установка пакетов, обновление и т.д." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:253 -#: guix-git/doc/guix.texi:5053 guix-git/doc/guix.texi:5054 +#: guix-git/doc/guix.texi:5071 guix-git/doc/guix.texi:5072 #, no-wrap msgid "Channels" msgstr "Каналы" @@ -3066,7 +3114,7 @@ msgstr "Настройка коллекции пакетов." #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:267 -#: guix-git/doc/guix.texi:5581 guix-git/doc/guix.texi:5582 +#: guix-git/doc/guix.texi:5599 guix-git/doc/guix.texi:5600 #, no-wrap msgid "Development" msgstr "Разработка" @@ -3078,7 +3126,7 @@ msgstr "Разработка программного обеспечения п #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:275 -#: guix-git/doc/guix.texi:6799 guix-git/doc/guix.texi:6800 +#: guix-git/doc/guix.texi:6842 guix-git/doc/guix.texi:6843 #, no-wrap msgid "Programming Interface" msgstr "Программный интерфейс" @@ -3089,8 +3137,8 @@ msgid "Using Guix in Scheme." msgstr "Использование Guix в Scheme." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:294 -#: guix-git/doc/guix.texi:10774 guix-git/doc/guix.texi:10775 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:295 +#: guix-git/doc/guix.texi:11088 guix-git/doc/guix.texi:11089 #, no-wrap msgid "Utilities" msgstr "Утилиты" @@ -3101,8 +3149,8 @@ msgid "Package management commands." msgstr "Команды управления пакетами." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:320 -#: guix-git/doc/guix.texi:14278 guix-git/doc/guix.texi:14279 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:321 +#: guix-git/doc/guix.texi:14635 guix-git/doc/guix.texi:14636 #, no-wrap msgid "System Configuration" msgstr "Конфигурирование системы" @@ -3113,8 +3161,8 @@ msgid "Configuring the operating system." msgstr "Конфигурирование операционной системы." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:36881 -#: guix-git/doc/guix.texi:36882 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37371 +#: guix-git/doc/guix.texi:37372 #, fuzzy, no-wrap #| msgid "System Configuration" msgid "Home Configuration" @@ -3128,8 +3176,8 @@ msgid "Configuring the home environment." msgstr "Конфигурирование загрузчика диска." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37721 -#: guix-git/doc/guix.texi:37722 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38210 +#: guix-git/doc/guix.texi:38211 #, no-wrap msgid "Documentation" msgstr "Документация" @@ -3140,8 +3188,8 @@ msgid "Browsing software user manuals." msgstr "Программы обзора пользовательских мануалов." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:389 -#: guix-git/doc/guix.texi:37787 guix-git/doc/guix.texi:37788 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:390 +#: guix-git/doc/guix.texi:38276 guix-git/doc/guix.texi:38277 #, no-wrap msgid "Installing Debugging Files" msgstr "Установка файлов отладки" @@ -3152,8 +3200,8 @@ msgid "Feeding the debugger." msgstr "Запуск отладчика." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37942 -#: guix-git/doc/guix.texi:37943 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38431 +#: guix-git/doc/guix.texi:38432 #, no-wrap msgid "Security Updates" msgstr "Обновления безопасности" @@ -3164,8 +3212,8 @@ msgid "Deploying security fixes quickly." msgstr "Быстрое применение исправлений безопасности." #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:394 -#: guix-git/doc/guix.texi:38057 guix-git/doc/guix.texi:38058 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:395 +#: guix-git/doc/guix.texi:38546 guix-git/doc/guix.texi:38547 #, no-wrap msgid "Bootstrapping" msgstr "Начальная загрузка" @@ -3176,7 +3224,7 @@ msgid "GNU/Linux built from scratch." msgstr "Сборка GNU/Linux с нуля." #. type: node -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38349 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38838 #, no-wrap msgid "Porting" msgstr "Портирование" @@ -3192,8 +3240,8 @@ msgid "Your help needed!" msgstr "Нужна ваша помощь!" #. type: chapter -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38397 -#: guix-git/doc/guix.texi:38398 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38886 +#: guix-git/doc/guix.texi:38887 #, no-wrap msgid "Acknowledgments" msgstr "Благодарности" @@ -3204,8 +3252,8 @@ msgid "Thanks!" msgstr "Спасибо!" #. type: appendix -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38419 -#: guix-git/doc/guix.texi:38420 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38908 +#: guix-git/doc/guix.texi:38909 #, no-wrap msgid "GNU Free Documentation License" msgstr "Лицензия свободной документации GNU" @@ -3216,8 +3264,8 @@ msgid "The license of this manual." msgstr "Лицензия этого руководства." #. type: unnumbered -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38425 -#: guix-git/doc/guix.texi:38426 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38914 +#: guix-git/doc/guix.texi:38915 #, no-wrap msgid "Concept Index" msgstr "Термины и указатели" @@ -3228,8 +3276,8 @@ msgid "Concepts." msgstr "Понятия." #. type: unnumbered -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38429 -#: guix-git/doc/guix.texi:38430 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38918 +#: guix-git/doc/guix.texi:38919 #, no-wrap msgid "Programming Index" msgstr "Программный индекс" @@ -3245,2151 +3293,2182 @@ msgid "--- The Detailed Node Listing ---" msgstr "--- Детальный список записей ---" #. type: section -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 -#: guix-git/doc/guix.texi:431 guix-git/doc/guix.texi:432 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 +#: guix-git/doc/guix.texi:432 guix-git/doc/guix.texi:433 #, no-wrap msgid "Managing Software the Guix Way" msgstr "Управление программным обеспечением Guix Way" #. type: menuentry -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 msgid "What's special." msgstr "Что особенного." #. type: section -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 -#: guix-git/doc/guix.texi:486 guix-git/doc/guix.texi:487 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 +#: guix-git/doc/guix.texi:487 guix-git/doc/guix.texi:488 #, no-wrap msgid "GNU Distribution" msgstr "Дистрибутив GNU" #. type: menuentry -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 msgid "The packages and tools." msgstr "Пакеты и утилиты." #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:631 guix-git/doc/guix.texi:632 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:642 guix-git/doc/guix.texi:643 #, no-wrap msgid "Binary Installation" msgstr "Бинарная установка" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Getting Guix running in no time!" msgstr "Запустить Guix в кратчайшие сроки!" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:871 guix-git/doc/guix.texi:872 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:882 guix-git/doc/guix.texi:883 #, no-wrap msgid "Requirements" msgstr "Требования" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Software needed to build and run Guix." msgstr "Программное обеспечение, необходимое для запуска Guix." #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:957 guix-git/doc/guix.texi:958 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:969 guix-git/doc/guix.texi:970 #, no-wrap msgid "Running the Test Suite" msgstr "Запуск набора тестов" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Testing Guix." msgstr "Тестирование Guix." #. type: section #: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:207 -#: guix-git/doc/guix.texi:629 guix-git/doc/guix.texi:1054 -#: guix-git/doc/guix.texi:1055 +#: guix-git/doc/guix.texi:640 guix-git/doc/guix.texi:1066 +#: guix-git/doc/guix.texi:1067 #, no-wrap msgid "Setting Up the Daemon" msgstr "Настройка демона" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Preparing the build daemon's environment." msgstr "Подготовка окружения демона сборки." #. type: node -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:1525 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:1542 #, no-wrap msgid "Invoking guix-daemon" msgstr "Вызов guix-daemon" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Running the build daemon." msgstr "Запуск демона сборки." #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:1827 guix-git/doc/guix.texi:1828 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:1844 guix-git/doc/guix.texi:1845 #, no-wrap msgid "Application Setup" msgstr "Установка приложения" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Application-specific setup." msgstr "Установка в качестве приожения." #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:2012 guix-git/doc/guix.texi:2013 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:2029 guix-git/doc/guix.texi:2030 #, no-wrap msgid "Upgrading Guix" msgstr "Обновление Guix" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Upgrading Guix and its build daemon." msgstr "Обновление Guix и этого службы сборки." #. type: subsection -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1076 guix-git/doc/guix.texi:1077 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1088 guix-git/doc/guix.texi:1089 #, no-wrap msgid "Build Environment Setup" msgstr "Установка окружения сборки" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Preparing the isolated build environment." msgstr "Подготовка отдельного окружения сборки." #. type: node -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1195 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1212 #, no-wrap msgid "Daemon Offload Setup" msgstr "Установка демона разгрузки" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Offloading builds to remote machines." msgstr "Разгрузка сборок по удалённым машинам." #. type: subsection -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1434 guix-git/doc/guix.texi:1435 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1451 guix-git/doc/guix.texi:1452 #, no-wrap msgid "SELinux Support" msgstr "Поддержка SELinux" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Using an SELinux policy for the daemon." msgstr "Использование политики SELinux для демона." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:1470 -#: guix-git/doc/guix.texi:2083 guix-git/doc/guix.texi:2085 -#: guix-git/doc/guix.texi:2086 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:1487 +#: guix-git/doc/guix.texi:2100 guix-git/doc/guix.texi:2102 +#: guix-git/doc/guix.texi:2103 #, no-wrap msgid "Limitations" msgstr "Ограничения" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "What you can expect." msgstr "Что нужно учитывать." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2111 guix-git/doc/guix.texi:2112 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2128 guix-git/doc/guix.texi:2129 #, no-wrap msgid "Hardware Considerations" msgstr "По поводу железа" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Supported hardware." msgstr "Поддерживаемое аппаратное обеспечение." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2146 guix-git/doc/guix.texi:2147 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2163 guix-git/doc/guix.texi:2164 #, no-wrap msgid "USB Stick and DVD Installation" msgstr "Установочная флеш и DVD" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Preparing the installation medium." msgstr "Подготовка установочного носителя." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2227 guix-git/doc/guix.texi:2228 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2244 guix-git/doc/guix.texi:2245 #, no-wrap msgid "Preparing for Installation" msgstr "Подготовка к установке" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Networking, partitioning, etc." msgstr "Сеть, разметка диска и т.д." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2250 guix-git/doc/guix.texi:2251 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2267 guix-git/doc/guix.texi:2268 #, no-wrap msgid "Guided Graphical Installation" msgstr "Графическая установка в GUI" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Easy graphical installation." msgstr "Простая графическая установка." #. type: section #: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:225 -#: guix-git/doc/guix.texi:2083 guix-git/doc/guix.texi:2281 -#: guix-git/doc/guix.texi:2282 +#: guix-git/doc/guix.texi:2100 guix-git/doc/guix.texi:2298 +#: guix-git/doc/guix.texi:2299 #, no-wrap msgid "Manual Installation" msgstr "Ручная установка" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Manual installation for wizards." msgstr "Ручная установка для магов." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2660 guix-git/doc/guix.texi:2661 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2677 guix-git/doc/guix.texi:2678 #, no-wrap msgid "After System Installation" msgstr "После установки системы" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "When installation succeeded." msgstr "Когда установка завершилась успешно." #. type: node -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2694 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2711 #, no-wrap msgid "Installing Guix in a VM" msgstr "Установка Guix на виртуальную машину" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Guix System playground." msgstr "Площадка системы Guix." #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2745 guix-git/doc/guix.texi:2746 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2762 guix-git/doc/guix.texi:2763 #, no-wrap msgid "Building the Installation Image" msgstr "Сборка установочного образа" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "How this comes to be." msgstr "Как это происходит." #. type: node -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 -#: guix-git/doc/guix.texi:2301 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 +#: guix-git/doc/guix.texi:2318 #, no-wrap msgid "Keyboard Layout and Networking and Partitioning" msgstr "Раскладка клавиатуры и работа с сетью и разбиение диска" #. type: menuentry -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 msgid "Initial setup." msgstr "Начальная установка." #. type: subsection -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 -#: guix-git/doc/guix.texi:2571 guix-git/doc/guix.texi:2572 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 +#: guix-git/doc/guix.texi:2588 guix-git/doc/guix.texi:2589 #, no-wrap msgid "Proceeding with the Installation" msgstr "В продолжении установки" #. type: menuentry -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 msgid "Installing." msgstr "Установка." #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:3019 guix-git/doc/guix.texi:3020 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3036 guix-git/doc/guix.texi:3037 #, no-wrap msgid "Features" msgstr "Особенности" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "How Guix will make your life brighter." msgstr "Как Guix делает жизнь ярче." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:3109 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3126 #, no-wrap msgid "Invoking guix package" msgstr "Вызов guix package" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Package installation, removal, etc." msgstr "Установка пакетов, удаление и т.д." #. type: section #: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:243 -#: guix-git/doc/guix.texi:3017 guix-git/doc/guix.texi:3738 -#: guix-git/doc/guix.texi:3739 +#: guix-git/doc/guix.texi:3034 guix-git/doc/guix.texi:3756 +#: guix-git/doc/guix.texi:3757 #, no-wrap msgid "Substitutes" msgstr "Подстановки" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Downloading pre-built binaries." msgstr "Скачивание собранных бинарников." #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4074 guix-git/doc/guix.texi:4075 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4092 guix-git/doc/guix.texi:4093 #, no-wrap msgid "Packages with Multiple Outputs" msgstr "Пакеты со множественным выходом" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Single source package, multiple outputs." msgstr "Один исходный пакет, различные выходы." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4128 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4146 #, no-wrap msgid "Invoking guix gc" msgstr "Вызов guix gc" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Running the garbage collector." msgstr "Запуск сборщика мусора." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4338 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4356 #, no-wrap msgid "Invoking guix pull" msgstr "Запуск guix pull" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Fetching the latest Guix and distribution." msgstr "Закачка последнего Guix и дистрибуции." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4585 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4603 #, no-wrap msgid "Invoking guix time-machine" msgstr "Вызов guix time-machine" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Running an older revision of Guix." msgstr "Запуск более старых ревизий Guix." #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4640 guix-git/doc/guix.texi:4641 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4658 guix-git/doc/guix.texi:4659 #, no-wrap msgid "Inferiors" msgstr "Младшие версии" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Interacting with another revision of Guix." msgstr "Взаимодействие с другими ревизиями Guix." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4768 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4786 #, no-wrap msgid "Invoking guix describe" msgstr "Вызов guix describe" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Display information about your Guix revision." msgstr "Отобразить информацию о ревизии Guix." #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4863 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4881 #, no-wrap msgid "Invoking guix archive" msgstr "Вызов guix archive" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Exporting and importing store files." msgstr "Экспорт и импорт файлов склада." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3764 guix-git/doc/guix.texi:3765 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3782 guix-git/doc/guix.texi:3783 #, fuzzy, no-wrap #| msgid "Official Substitute Server" msgid "Official Substitute Servers" msgstr "Официальный сервер подстановок" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "One particular source of substitutes." msgstr "Отдельный источник подстановок." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3794 guix-git/doc/guix.texi:3795 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3812 guix-git/doc/guix.texi:3813 #, no-wrap msgid "Substitute Server Authorization" msgstr "Авторизация сервера подстановок" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How to enable or disable substitutes." msgstr "Как включить или отключить подстановки." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3864 guix-git/doc/guix.texi:3865 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3882 guix-git/doc/guix.texi:3883 #, no-wrap msgid "Getting Substitutes from Other Servers" msgstr "Получение заменителей с других серверов" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "Substitute diversity." msgstr "Разнообразие заменителей." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3969 guix-git/doc/guix.texi:3970 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3987 guix-git/doc/guix.texi:3988 #, no-wrap msgid "Substitute Authentication" msgstr "Аутентификация подстановок" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How Guix verifies substitutes." msgstr "Как Guix проверяет подстановки." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4004 guix-git/doc/guix.texi:4005 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4022 guix-git/doc/guix.texi:4023 #, no-wrap msgid "Proxy Settings" msgstr "Настройки proxy" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How to get substitutes via proxy." msgstr "Как получить подстановки через proxy." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4016 guix-git/doc/guix.texi:4017 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4034 guix-git/doc/guix.texi:4035 #, no-wrap msgid "Substitution Failure" msgstr "Ошибки при подстановке" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "What happens when substitution fails." msgstr "Что происходит, когда подстановка завершается ошибкой." #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4044 guix-git/doc/guix.texi:4045 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4062 guix-git/doc/guix.texi:4063 #, no-wrap msgid "On Trusting Binaries" msgstr "Касательно проверенных бинарников" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How can you trust that binary blob?" msgstr "Как можно доверять определённому бинарному блоку?" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5086 guix-git/doc/guix.texi:5087 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5104 guix-git/doc/guix.texi:5105 #, no-wrap msgid "Specifying Additional Channels" msgstr "Указание дополнительных каналов" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Extending the package collection." msgstr "Расширение коллекции пакетов." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5136 guix-git/doc/guix.texi:5137 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5154 guix-git/doc/guix.texi:5155 #, no-wrap msgid "Using a Custom Guix Channel" msgstr "Использование отдельного канала Guix" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Using a customized Guix." msgstr "Использование кастомизированного Guix." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5158 guix-git/doc/guix.texi:5159 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5176 guix-git/doc/guix.texi:5177 #, no-wrap msgid "Replicating Guix" msgstr "Копирование Guix" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Running the @emph{exact same} Guix." msgstr "Запуск @emph{exact same} Guix." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5199 guix-git/doc/guix.texi:5200 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5217 guix-git/doc/guix.texi:5218 #, no-wrap msgid "Channel Authentication" msgstr "Аутентификация канала" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How Guix verifies what it fetches." msgstr "Как Guix проверяет то, что получает." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5239 guix-git/doc/guix.texi:5240 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5257 guix-git/doc/guix.texi:5258 #, no-wrap msgid "Channels with Substitutes" msgstr "Каналы с заменителями" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Using channels with available substitutes." msgstr "Использование каналов с доступными заменителями." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5264 guix-git/doc/guix.texi:5265 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5282 guix-git/doc/guix.texi:5283 #, no-wrap msgid "Creating a Channel" msgstr "Создание канала" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How to write your custom channel." msgstr "Как написать собственный канал." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5331 guix-git/doc/guix.texi:5332 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5349 guix-git/doc/guix.texi:5350 #, no-wrap msgid "Package Modules in a Sub-directory" msgstr "Пакетные модули в поддиректории" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Specifying the channel's package modules location." msgstr "Задание расположения пакетных модулей канала." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5345 guix-git/doc/guix.texi:5346 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5363 guix-git/doc/guix.texi:5364 #, no-wrap msgid "Declaring Channel Dependencies" msgstr "Объявление зависимостей канала" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How to depend on other channels." msgstr "Как зависеть от других каналов." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5387 guix-git/doc/guix.texi:5388 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5405 guix-git/doc/guix.texi:5406 #, no-wrap msgid "Specifying Channel Authorizations" msgstr "Указание авторизаций канала" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Defining channel authors authorizations." msgstr "Авторизация авторов канала." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5488 guix-git/doc/guix.texi:5489 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5506 guix-git/doc/guix.texi:5507 #, no-wrap msgid "Primary URL" msgstr "Основной URL" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Distinguishing mirror to original." msgstr "Отличие зеркала от оригинала." #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5511 guix-git/doc/guix.texi:5512 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5529 guix-git/doc/guix.texi:5530 #, no-wrap msgid "Writing Channel News" msgstr "Написание новостей канала" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Communicating information to channel's users." msgstr "Передача информации пользователям канала." #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:5603 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:5621 #, no-wrap msgid "Invoking guix shell" msgstr "Запуск guix shell" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 #, fuzzy #| msgid "replication, of software environments" msgid "Spawning one-off software environments." msgstr "повторение, окружения программного обеспечения" #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:5956 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:5993 #, no-wrap msgid "Invoking guix environment" msgstr "Запуск guix environment" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Setting up development environments." msgstr "Настройка окружения сборки." #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6325 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6368 #, no-wrap msgid "Invoking guix pack" msgstr "Запуск guix pack" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Creating software bundles." msgstr "Создание наборов программ." #. type: section -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6711 guix-git/doc/guix.texi:6712 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6754 guix-git/doc/guix.texi:6755 #, no-wrap msgid "The GCC toolchain" msgstr "Тулчейн GCC" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Working with languages supported by GCC." msgstr "Работа с языками, поддерживаемыми gcc." #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6737 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6780 #, no-wrap msgid "Invoking guix git authenticate" msgstr "Запуск guix git authenticate" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Authenticating Git repositories." msgstr "Аутентификация Git репозиториев." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:6841 guix-git/doc/guix.texi:6842 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:6885 guix-git/doc/guix.texi:6886 #, no-wrap msgid "Package Modules" msgstr "Пакетные модули" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Packages from the programmer's viewpoint." msgstr "Пакеты с точки зрения программиста." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:289 -#: guix-git/doc/guix.texi:6839 guix-git/doc/guix.texi:6903 -#: guix-git/doc/guix.texi:6904 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:290 +#: guix-git/doc/guix.texi:6883 guix-git/doc/guix.texi:6947 +#: guix-git/doc/guix.texi:6948 #, no-wrap msgid "Defining Packages" msgstr "Описание пакетов" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Defining new packages." msgstr "Описание новых пакетов." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:7554 guix-git/doc/guix.texi:7555 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:7612 guix-git/doc/guix.texi:7613 #, fuzzy, no-wrap msgid "Defining Package Variants" msgstr "Описание пакетов" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Customizing packages." msgstr "Кастомизация пакетов." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:7821 guix-git/doc/guix.texi:7822 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:7879 guix-git/doc/guix.texi:7880 #, no-wrap msgid "Build Systems" msgstr "Системы сборки" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Specifying how packages are built." msgstr "Задание параметров сборки пакетов." #. type: subsection -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:8861 guix-git/doc/guix.texi:8862 -#: guix-git/doc/guix.texi:9292 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:8918 guix-git/doc/guix.texi:8919 +#: guix-git/doc/guix.texi:9427 #, no-wrap msgid "Build Phases" msgstr "Фазы сборки" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Phases of the build process of a package." msgstr "Фазы процесса сборки пакета." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9055 guix-git/doc/guix.texi:9056 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9116 guix-git/doc/guix.texi:9117 #, fuzzy, no-wrap msgid "Build Utilities" msgstr "Утилиты" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Helpers for your package definitions and more." msgstr "Импорт описаниий пакетов." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9369 guix-git/doc/guix.texi:9370 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9504 guix-git/doc/guix.texi:9505 +#, fuzzy, no-wrap +#| msgid "search paths" +msgid "Search Paths" +msgstr "пути поиска" + +#. type: menuentry +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#, fuzzy +#| msgid "Preparing the isolated build environment." +msgid "Declaring search path environment variables." +msgstr "Подготовка отдельного окружения сборки." + +#. type: section +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9683 guix-git/doc/guix.texi:9684 #, no-wrap msgid "The Store" msgstr "Хранилище" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Manipulating the package store." msgstr "Работа с хранилищем пакетов." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9522 guix-git/doc/guix.texi:9523 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9836 guix-git/doc/guix.texi:9837 #, no-wrap msgid "Derivations" msgstr "Деривации" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Low-level interface to package derivations." msgstr "Низкоуровневый интерфейс дериваций пакетов." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9716 guix-git/doc/guix.texi:9717 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10030 guix-git/doc/guix.texi:10031 #, no-wrap msgid "The Store Monad" msgstr "Устройство склада" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Purely functional interface to the store." msgstr "Чисто функциональный интерфейс доступа к складу." #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:10035 guix-git/doc/guix.texi:10036 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10349 guix-git/doc/guix.texi:10350 #, no-wrap msgid "G-Expressions" msgstr "G-Expressions" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Manipulating build expressions." msgstr "Управление механизмом сборки." #. type: node -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:10674 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10988 #, no-wrap msgid "Invoking guix repl" msgstr "Запуск guix repl" #. type: menuentry -#: guix-git/doc/guix.texi:287 +#: guix-git/doc/guix.texi:288 msgid "Programming Guix in Guile." msgstr "Программирование Guix в Guile." #. type: node -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 -#: guix-git/doc/guix.texi:7103 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 +#: guix-git/doc/guix.texi:7147 #, no-wrap msgid "package Reference" msgstr "ссылка на пакет" #. type: menuentry -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 msgid "The package data type." msgstr "Тип данных package." #. type: node -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 -#: guix-git/doc/guix.texi:7362 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 +#: guix-git/doc/guix.texi:7420 #, no-wrap msgid "origin Reference" msgstr "Интерфейс origin" #. type: menuentry -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 msgid "The origin data type." msgstr "Тип данных origin." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:10801 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:11115 #, no-wrap msgid "Invoking guix build" msgstr "Запуск guix build" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Building packages from the command line." msgstr "Сборка пакетов в командной строке." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11699 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12013 #, no-wrap msgid "Invoking guix edit" msgstr "Запуск guix edit" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Editing package definitions." msgstr "Редактирование описания пакета." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11729 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12043 #, no-wrap msgid "Invoking guix download" msgstr "Запуск guix download" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Downloading a file and printing its hash." msgstr "Загрузка файла и вывод его хэша." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11787 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12101 #, no-wrap msgid "Invoking guix hash" msgstr "Запуск guix hash" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Computing the cryptographic hash of a file." msgstr "Вычисление криптографического хеша файла." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11877 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12192 #, no-wrap msgid "Invoking guix import" msgstr "Запуск guix import" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Importing package definitions." msgstr "Импорт описаниий пакетов." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12412 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12727 #, no-wrap msgid "Invoking guix refresh" msgstr "Запуск guix refresh" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Updating package definitions." msgstr "Обновление описаний пакетов." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12784 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13099 #, fuzzy, no-wrap #| msgid "Invoking guix system" msgid "Invoking guix style" msgstr "Вызов guix system" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 #, fuzzy #| msgid "Editing package definitions." msgid "Styling package definitions." msgstr "Редактирование описания пакета." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12880 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13237 #, no-wrap msgid "Invoking guix lint" msgstr "Запуск guix lint" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Finding errors in package definitions." msgstr "Поиск ошибок в описаниях пакетов." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13056 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13413 #, no-wrap msgid "Invoking guix size" msgstr "Запуск guix size" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Profiling disk usage." msgstr "Обзор использования диска." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13200 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13557 #, no-wrap msgid "Invoking guix graph" msgstr "Запуск guix graph" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Visualizing the graph of packages." msgstr "Визуализация графа пакета." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13481 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13838 #, no-wrap msgid "Invoking guix publish" msgstr "Запуск guix publish" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Sharing substitutes." msgstr "Совместное использование подстановок." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13750 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14107 #, no-wrap msgid "Invoking guix challenge" msgstr "Запуск guix challenge" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Challenging substitute servers." msgstr "Соперничающие серверы подстановок." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13933 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14290 #, no-wrap msgid "Invoking guix copy" msgstr "Запуск guix copy" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Copying to and from a remote store." msgstr "Копирование из и в удалённый склад." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13996 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14353 #, no-wrap msgid "Invoking guix container" msgstr "Запуск guix container" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Process isolation." msgstr "Изоляция процесса." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:14050 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14407 #, no-wrap msgid "Invoking guix weather" msgstr "Запуск guix weather" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Assessing substitute availability." msgstr "Оценка доступности подстановок." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:14180 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14537 #, no-wrap msgid "Invoking guix processes" msgstr "Запуск guix processes" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Listing client processes." msgstr "Чтение клиентских процессов." #. type: section -#: guix-git/doc/guix.texi:313 guix-git/doc/guix.texi:10802 +#: guix-git/doc/guix.texi:314 guix-git/doc/guix.texi:11116 #, no-wrap msgid "Invoking @command{guix build}" msgstr "Запуск @command{guix build}" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:10855 guix-git/doc/guix.texi:10856 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11169 guix-git/doc/guix.texi:11170 #, no-wrap msgid "Common Build Options" msgstr "Стандартные параметры сборки" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Build options for most commands." msgstr "Параметры сборки для большинства команд." #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11010 guix-git/doc/guix.texi:11011 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11324 guix-git/doc/guix.texi:11325 #, no-wrap msgid "Package Transformation Options" msgstr "Параметры преобразования пакета" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Creating variants of packages." msgstr "Создание вариантов пакетов." #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11381 guix-git/doc/guix.texi:11382 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11695 guix-git/doc/guix.texi:11696 #, no-wrap msgid "Additional Build Options" msgstr "Дополнительные параметры сборки" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Options specific to 'guix build'." msgstr "Особые параметры для 'guix build'." #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11619 guix-git/doc/guix.texi:11620 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11933 guix-git/doc/guix.texi:11934 #, no-wrap msgid "Debugging Build Failures" msgstr "Отладка ошибок сборки" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Real life packaging experience." msgstr "Жизненный опыт в сборке пакетов." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14324 guix-git/doc/guix.texi:14325 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:14681 guix-git/doc/guix.texi:14682 #, no-wrap msgid "Using the Configuration System" msgstr "Использование системы конфигурации" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Customizing your GNU system." msgstr "Настройка вашей системы GNU." #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14575 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:14932 #, no-wrap msgid "operating-system Reference" msgstr "Интерфейс operating-system" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Detail of operating-system declarations." msgstr "Подробные сведения об объявлениях opertaing-system." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14798 guix-git/doc/guix.texi:14799 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15155 guix-git/doc/guix.texi:15156 #, no-wrap msgid "File Systems" msgstr "Файловые системы" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring file system mounts." msgstr "Настройка точек подключения файловой системы." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15151 guix-git/doc/guix.texi:15152 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15508 guix-git/doc/guix.texi:15509 #, no-wrap msgid "Mapped Devices" msgstr "Размеченные устройства" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Block device extra processing." msgstr "Дополнительные проверки блочных устройств." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15300 guix-git/doc/guix.texi:15301 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15657 guix-git/doc/guix.texi:15658 #, fuzzy, no-wrap #| msgid "swap space" msgid "Swap Space" msgstr "место на диске" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Backing RAM with disk space." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15400 guix-git/doc/guix.texi:15401 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15757 guix-git/doc/guix.texi:15758 #, no-wrap msgid "User Accounts" msgstr "Учётные записи пользователей" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Specifying user accounts." msgstr "Задание пользовательских учётных записей." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:2308 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15581 -#: guix-git/doc/guix.texi:15582 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:2325 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:15938 +#: guix-git/doc/guix.texi:15939 #, no-wrap msgid "Keyboard Layout" msgstr "Раскладка клавиатуры" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "How the system interprets key strokes." msgstr "Интерпретация нажатия клавиш системой." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1835 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15727 -#: guix-git/doc/guix.texi:15728 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:1852 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:16084 +#: guix-git/doc/guix.texi:16085 #, no-wrap msgid "Locales" msgstr "Региональные настройки" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Language and cultural convention settings." msgstr "Настройка языка и культурных особенностей." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:345 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15867 -#: guix-git/doc/guix.texi:15868 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:346 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:16224 +#: guix-git/doc/guix.texi:16225 #, no-wrap msgid "Services" msgstr "Сервисы" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Specifying system services." msgstr "Настройка системных служб." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34056 guix-git/doc/guix.texi:34057 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34493 guix-git/doc/guix.texi:34494 #, no-wrap msgid "Setuid Programs" msgstr "Программы setuid" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Programs running with root privileges." msgstr "Программы, выполняемые с правами root." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1984 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:34140 -#: guix-git/doc/guix.texi:34141 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:2001 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:34579 +#: guix-git/doc/guix.texi:34580 #, no-wrap msgid "X.509 Certificates" msgstr "Сертификаты X.509" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Authenticating HTTPS servers." msgstr "Аутентификация серверов HTTPS." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1878 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:34203 -#: guix-git/doc/guix.texi:34204 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:1895 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:34642 +#: guix-git/doc/guix.texi:34643 #, no-wrap msgid "Name Service Switch" msgstr "Служба выбора имён" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring libc's name service switch." msgstr "Настройка службы имён libc." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34341 guix-git/doc/guix.texi:34342 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34780 guix-git/doc/guix.texi:34781 #, no-wrap msgid "Initial RAM Disk" msgstr "Начальный RAM-диск" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Linux-Libre bootstrapping." msgstr "Начальная загрузка Linux-Libre." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34536 guix-git/doc/guix.texi:34537 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34975 guix-git/doc/guix.texi:34976 #, no-wrap msgid "Bootloader Configuration" msgstr "Настройка загрузчика" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring the boot loader." msgstr "Конфигурирование загрузчика диска." #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34834 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:35273 #, no-wrap msgid "Invoking guix system" msgstr "Вызов guix system" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Instantiating a system configuration." msgstr "Проверка конфигурации операционной системы." #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:35425 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:35881 #, no-wrap msgid "Invoking guix deploy" msgstr "Запуск guix deploy" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Deploying a system configuration to a remote host." msgstr "Развёртывание конфигурации системы на удалённой машине." #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:35631 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:36121 #, no-wrap msgid "Running Guix in a VM" msgstr "Запуск Guix на виртуальной машине" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "How to run Guix System in a virtual machine." msgstr "Как запускать систему Guix на виртуальной машине." #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:381 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:35765 -#: guix-git/doc/guix.texi:35766 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:382 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:36255 +#: guix-git/doc/guix.texi:36256 #, no-wrap msgid "Defining Services" msgstr "Создание служб" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Adding new service definitions." msgstr "Добавление новых определений служб." #. type: menuentry -#: guix-git/doc/guix.texi:341 +#: guix-git/doc/guix.texi:342 #, fuzzy #| msgid "System Configuration" msgid "Home Environment Configuration" msgstr "Конфигурирование системы" #. type: node -#: guix-git/doc/guix.texi:343 guix-git/doc/guix.texi:36944 -#: guix-git/doc/guix.texi:37478 +#: guix-git/doc/guix.texi:344 guix-git/doc/guix.texi:37434 +#: guix-git/doc/guix.texi:37974 #, no-wrap msgid "Invoking guix home" msgstr "Запуск guix home" #. type: menuentry -#: guix-git/doc/guix.texi:343 +#: guix-git/doc/guix.texi:344 #, fuzzy #| msgid "Instantiating a system configuration." msgid "Instantiating a home environment configuration." msgstr "Проверка конфигурации операционной системы." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:15953 guix-git/doc/guix.texi:15954 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:16310 guix-git/doc/guix.texi:16311 #, no-wrap msgid "Base Services" msgstr "Базовые службы" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Essential system services." msgstr "Ключевые службы системы." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:16880 guix-git/doc/guix.texi:16881 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17242 guix-git/doc/guix.texi:17243 #, no-wrap msgid "Scheduled Job Execution" msgstr "Запланированное исполнения задач" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The mcron service." msgstr "Служба mcron." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17030 guix-git/doc/guix.texi:17031 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17392 guix-git/doc/guix.texi:17393 #, no-wrap msgid "Log Rotation" msgstr "Ротация логов" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The rottlog service." msgstr "Сервис rottlog." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17143 guix-git/doc/guix.texi:17144 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17505 guix-git/doc/guix.texi:17506 #, fuzzy, no-wrap #| msgid "Networking" msgid "Networking Setup" msgstr "Сеть" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 #, fuzzy #| msgid "user interfaces" msgid "Setting up network interfaces." msgstr "пользовательские интерфейсы" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17561 guix-git/doc/guix.texi:17562 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17923 guix-git/doc/guix.texi:17924 #, no-wrap msgid "Networking Services" msgstr "Сервисы сети" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 #, fuzzy #| msgid "Network setup, SSH daemon, etc." msgid "Firewall, SSH daemon, etc." msgstr "Установка сети, демон SSH и т.д." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19020 guix-git/doc/guix.texi:19021 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19382 guix-git/doc/guix.texi:19383 #, no-wrap msgid "Unattended Upgrades" msgstr "Автоматические обновления" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Automated system upgrades." msgstr "Автоматические обновления системы." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19158 guix-git/doc/guix.texi:19159 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19520 guix-git/doc/guix.texi:19521 #, no-wrap msgid "X Window" msgstr "Оконная система X" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Graphical display." msgstr "Графический дисплей." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19556 guix-git/doc/guix.texi:19557 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19918 guix-git/doc/guix.texi:19919 #, no-wrap msgid "Printing Services" msgstr "Сервисы печати" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Local and remote printer support." msgstr "Поддержка локальных и удалённых принтеров." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:20409 guix-git/doc/guix.texi:20410 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:20771 guix-git/doc/guix.texi:20772 #, no-wrap msgid "Desktop Services" msgstr "Сервисы рабочего стола" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "D-Bus and desktop services." msgstr "D-Bus и сервисы рабочего стола." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:20928 guix-git/doc/guix.texi:20929 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21290 guix-git/doc/guix.texi:21291 #, no-wrap msgid "Sound Services" msgstr "Звуковые сервисы" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "ALSA and Pulseaudio services." msgstr "Сервисы ALSA и Pulseaudio." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:21068 guix-git/doc/guix.texi:21069 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21430 guix-git/doc/guix.texi:21431 #, no-wrap msgid "Database Services" msgstr "Сервисы баз данных" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "SQL databases, key-value stores, etc." msgstr "Базы данных SQL, базы ключ-значение и т. д." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:21403 guix-git/doc/guix.texi:21404 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21765 guix-git/doc/guix.texi:21766 #, no-wrap msgid "Mail Services" msgstr "Почтовые сервисы" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "IMAP, POP3, SMTP, and all that." msgstr "IMAP, POP3, SMTP и прочее." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:23262 guix-git/doc/guix.texi:23263 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:23624 guix-git/doc/guix.texi:23625 #, no-wrap msgid "Messaging Services" msgstr "Сервисы сообщений" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Messaging services." msgstr "Сервисы сообщений." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:23765 guix-git/doc/guix.texi:23766 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:24127 guix-git/doc/guix.texi:24128 #, no-wrap msgid "Telephony Services" msgstr "Сервисы телефонии" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Telephony services." msgstr "Сервисы телефонии." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:24996 guix-git/doc/guix.texi:24997 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25358 guix-git/doc/guix.texi:25359 #, no-wrap msgid "Monitoring Services" msgstr "Сервисы мониторинга" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Monitoring services." msgstr "Сервисы мониторинга." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:25507 guix-git/doc/guix.texi:25508 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25844 guix-git/doc/guix.texi:25845 #, no-wrap msgid "Kerberos Services" msgstr "Сервисы Kerberos" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Kerberos services." msgstr "Сервисы Kerberos." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:25633 guix-git/doc/guix.texi:25634 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25970 guix-git/doc/guix.texi:25971 #, no-wrap msgid "LDAP Services" msgstr "LDAP Сервисы" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "LDAP services." msgstr "LDAP сервисы." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:26112 guix-git/doc/guix.texi:26113 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:26449 guix-git/doc/guix.texi:26450 #, no-wrap msgid "Web Services" msgstr "Веб-сервисы" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Web servers." msgstr "Веб-серверы." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:27320 guix-git/doc/guix.texi:27321 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:27657 guix-git/doc/guix.texi:27658 #, no-wrap msgid "Certificate Services" msgstr "Сервисы сертификатов" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "TLS certificates via Let's Encrypt." msgstr "Сертификаты TLS через Let's Encrypt." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:27501 guix-git/doc/guix.texi:27502 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:27838 guix-git/doc/guix.texi:27839 #, no-wrap msgid "DNS Services" msgstr "Сервисы DNS" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "DNS daemons." msgstr "DNS-демоны." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28246 guix-git/doc/guix.texi:28247 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:28583 guix-git/doc/guix.texi:28584 #, no-wrap msgid "VPN Services" msgstr "VPN-сервисы" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "VPN daemons." msgstr "VPN-демоны." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28758 guix-git/doc/guix.texi:28759 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29095 guix-git/doc/guix.texi:29096 #, no-wrap msgid "Network File System" msgstr "Сетевые файловые системы" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "NFS related services." msgstr "Сервисы, работающие с сетевыми файловыми системами." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28954 guix-git/doc/guix.texi:28955 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29291 guix-git/doc/guix.texi:29292 #, no-wrap msgid "Continuous Integration" msgstr "Длительная интеграция" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Cuirass and Laminar services." msgstr "Сервис Cuirass." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29240 guix-git/doc/guix.texi:29241 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29577 guix-git/doc/guix.texi:29578 #, no-wrap msgid "Power Management Services" msgstr "Сервисы управления питанием" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Extending battery life." msgstr "Продление жизни батареи." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29774 guix-git/doc/guix.texi:29775 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:30139 guix-git/doc/guix.texi:30140 #, no-wrap msgid "Audio Services" msgstr "Сервисы аудио" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The MPD." msgstr "MPD." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29893 guix-git/doc/guix.texi:29894 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:30258 guix-git/doc/guix.texi:30259 #, no-wrap msgid "Virtualization Services" msgstr "Сервисы виртуализации" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Virtualization services." msgstr "Сервисы виртуализации." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:31561 guix-git/doc/guix.texi:31562 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:31926 guix-git/doc/guix.texi:31927 #, no-wrap msgid "Version Control Services" msgstr "Сервисы упраления версиями" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Providing remote access to Git repositories." msgstr "Доступ к удалённым репозиториям Git." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:32897 guix-git/doc/guix.texi:32898 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33262 guix-git/doc/guix.texi:33263 #, no-wrap msgid "Game Services" msgstr "Игровые службы" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Game servers." msgstr "Игровые службы." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:32929 guix-git/doc/guix.texi:32930 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33294 guix-git/doc/guix.texi:33295 #, no-wrap msgid "PAM Mount Service" msgstr "Службы подключения PAM" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Service to mount volumes when logging in." msgstr "Служба подключения томов при входе в систему." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33012 guix-git/doc/guix.texi:33013 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33377 guix-git/doc/guix.texi:33378 #, no-wrap msgid "Guix Services" msgstr "Сервисы Guix" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services relating specifically to Guix." msgstr "Сервисы, касающиеся конкретно Guix." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33290 guix-git/doc/guix.texi:33291 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33727 guix-git/doc/guix.texi:33728 #, no-wrap msgid "Linux Services" msgstr "Службы Linux" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services tied to the Linux kernel." msgstr "Службы, привязанные к ядру Linux." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33517 guix-git/doc/guix.texi:33518 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33954 guix-git/doc/guix.texi:33955 #, no-wrap msgid "Hurd Services" msgstr "Сервисы Hurd" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services specific for a Hurd System." msgstr "Сервисы, касающиеся Hurd System." #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33559 guix-git/doc/guix.texi:33560 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33996 guix-git/doc/guix.texi:33997 #, no-wrap msgid "Miscellaneous Services" msgstr "Разнообразные службы" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Other services." msgstr "Другие службы." #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35780 guix-git/doc/guix.texi:35781 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36270 guix-git/doc/guix.texi:36271 #, no-wrap msgid "Service Composition" msgstr "Структура сервисов" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "The model for composing services." msgstr "Модель построения сервисов." #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35836 guix-git/doc/guix.texi:35837 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36326 guix-git/doc/guix.texi:36327 #, no-wrap msgid "Service Types and Services" msgstr "Типы сервисов и сервисы" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "Types and services." msgstr "Типы и сервисы." #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35973 guix-git/doc/guix.texi:35974 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36463 guix-git/doc/guix.texi:36464 #, no-wrap msgid "Service Reference" msgstr "Интерфейс сервиса" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "API reference." msgstr "Доступ через API." #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:36292 guix-git/doc/guix.texi:36293 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36782 guix-git/doc/guix.texi:36783 #, no-wrap msgid "Shepherd Services" msgstr "Сервисы Shepherd" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "A particular type of service." msgstr "Особенный тип сервисов." #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:36511 guix-git/doc/guix.texi:36512 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:37001 guix-git/doc/guix.texi:37002 #, fuzzy, no-wrap #| msgid "System Configuration" msgid "Complex Configurations" msgstr "Конфигурирование системы" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 #, fuzzy #| msgid "Instantiating a system configuration." msgid "Defining bindings for complex configurations." msgstr "Проверка конфигурации операционной системы." #. type: section -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 -#: guix-git/doc/guix.texi:37806 guix-git/doc/guix.texi:37807 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 +#: guix-git/doc/guix.texi:38295 guix-git/doc/guix.texi:38296 #, no-wrap msgid "Separate Debug Info" msgstr "Отдельная информация об отладке" #. type: menuentry -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 msgid "Installing 'debug' outputs." msgstr "Установка выводов отладочной информации." #. type: section -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 -#: guix-git/doc/guix.texi:37879 guix-git/doc/guix.texi:37880 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 +#: guix-git/doc/guix.texi:38368 guix-git/doc/guix.texi:38369 #, no-wrap msgid "Rebuilding Debug Info" msgstr "Сборка с отладочной информацией" #. type: menuentry -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 msgid "Building missing debug info." msgstr "Сборка отсутствующей отладочной информации." #. type: node -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 -#: guix-git/doc/guix.texi:38098 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 +#: guix-git/doc/guix.texi:38587 #, no-wrap msgid "Reduced Binary Seed Bootstrap" msgstr "Уменьшение Binary Seed Bootstrap" #. type: menuentry -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 msgid "A Bootstrap worthy of GNU." msgstr "Первичная загрузка, достойная GNU." #. type: section -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 -#: guix-git/doc/guix.texi:38173 guix-git/doc/guix.texi:38174 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 +#: guix-git/doc/guix.texi:38662 guix-git/doc/guix.texi:38663 #, no-wrap msgid "Preparing to Use the Bootstrap Binaries" msgstr "Подготовка к использованию двоичных файлов первоначальной загрузки" #. type: menuentry -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 msgid "Building that what matters most." msgstr "Сборка самого главного." #. type: cindex -#: guix-git/doc/guix.texi:405 +#: guix-git/doc/guix.texi:406 #, no-wrap msgid "purpose" msgstr "цель" #. type: Plain text -#: guix-git/doc/guix.texi:413 +#: guix-git/doc/guix.texi:414 msgid "GNU Guix@footnote{``Guix'' is pronounced like ``geeks'', or ``ɡiːks'' using the international phonetic alphabet (IPA).} is a package management tool for and distribution of the GNU system. Guix makes it easy for unprivileged users to install, upgrade, or remove software packages, to roll back to a previous package set, to build packages from source, and generally assists with the creation and maintenance of software environments." msgstr "GNU Guix@footnote{\"Guix\" произносится \"гикс\".} --- это утилита для управления пакетами и дистрибутив системы GNU. Guix позволяет непривилегированным пользователям устанавливать, обновлять и удалять программные пакеты, откатываться до предыдущих наборов пакетов, собирать пакеты из исходников и обеспечивает создание и поддержку программного окружения в целом." #. type: cindex -#: guix-git/doc/guix.texi:414 guix-git/doc/guix.texi:489 +#: guix-git/doc/guix.texi:415 guix-git/doc/guix.texi:490 #, no-wrap msgid "Guix System" msgstr "Система Guix" #. type: cindex -#: guix-git/doc/guix.texi:415 +#: guix-git/doc/guix.texi:416 #, no-wrap msgid "GuixSD, now Guix System" msgstr "GuixSD, теперь система Guix" #. type: cindex -#: guix-git/doc/guix.texi:416 +#: guix-git/doc/guix.texi:417 #, no-wrap msgid "Guix System Distribution, now Guix System" msgstr "Guix System Distribution, теперь система Guix" #. type: Plain text -#: guix-git/doc/guix.texi:425 +#: guix-git/doc/guix.texi:426 msgid "You can install GNU@tie{}Guix on top of an existing GNU/Linux system where it complements the available tools without interference (@pxref{Installation}), or you can use it as a standalone operating system distribution, @dfn{Guix@tie{}System}@footnote{We used to refer to Guix System as ``Guix System Distribution'' or ``GuixSD''. We now consider it makes more sense to group everything under the ``Guix'' banner since, after all, Guix System is readily available through the @command{guix system} command, even if you're using a different distro underneath!}. @xref{GNU Distribution}." msgstr "Вы можете установить GNU@tie{}Guix поверх существующей системы GNU/Linux, и она дополнит функции системы новой утилитой, не внося помехи (@pxref{Installation}). Или можно использовать отдельную операционную систему --- @dfn{Guix@tie{}System}@footnote{Мы называли систему Guix ``Guix System Distribution'' или ``GuixSD''. Теперь мы считаем, удобнее объединить всё под названием ``Guix'', так что теперь командой @command{guix system} устанавливается система Guix, даже если вы используете другой дистирбутив для её запуска}. @xref{GNU Distribution}." #. type: cindex -#: guix-git/doc/guix.texi:434 +#: guix-git/doc/guix.texi:435 #, no-wrap msgid "user interfaces" msgstr "пользовательские интерфейсы" #. type: Plain text -#: guix-git/doc/guix.texi:440 +#: guix-git/doc/guix.texi:441 msgid "Guix provides a command-line package management interface (@pxref{Package Management}), tools to help with software development (@pxref{Development}), command-line utilities for more advanced usage (@pxref{Utilities}), as well as Scheme programming interfaces (@pxref{Programming Interface})." msgstr "Guix предоставляет интерфейс командной строки для управления пакетами (@pxref{Package Management}), инструменты, которые помогают в разработке программного обеспечения (@pxref{Development}), более сложные утилиты командной строки (@pxref{Utilities}), а также программный интерфейс Scheme (@pxref{Programming Interface})." #. type: cindex -#: guix-git/doc/guix.texi:440 +#: guix-git/doc/guix.texi:441 #, no-wrap msgid "build daemon" msgstr "демон сборки" #. type: Plain text -#: guix-git/doc/guix.texi:444 +#: guix-git/doc/guix.texi:445 msgid "Its @dfn{build daemon} is responsible for building packages on behalf of users (@pxref{Setting Up the Daemon}) and for downloading pre-built binaries from authorized sources (@pxref{Substitutes})." msgstr "Его @dfn{демон сборки} отвечает за сборку пакетов по запросам пользователей (@pxref{Setting Up the Daemon}) и за скачивание компилированных бинарников из авторизованных ресурсов (@pxref{Substitutes})." #. type: cindex -#: guix-git/doc/guix.texi:445 +#: guix-git/doc/guix.texi:446 #, no-wrap msgid "extensibility of the distribution" msgstr "расширяемость дистрибутива" #. type: cindex -#: guix-git/doc/guix.texi:446 guix-git/doc/guix.texi:6863 +#: guix-git/doc/guix.texi:447 guix-git/doc/guix.texi:6907 #, no-wrap msgid "customization, of packages" msgstr "настройка, пакетов" #. type: Plain text -#: guix-git/doc/guix.texi:455 +#: guix-git/doc/guix.texi:456 msgid "Guix includes package definitions for many GNU and non-GNU packages, all of which @uref{https://www.gnu.org/philosophy/free-sw.html, respect the user's computing freedom}. It is @emph{extensible}: users can write their own package definitions (@pxref{Defining Packages}) and make them available as independent package modules (@pxref{Package Modules}). It is also @emph{customizable}: users can @emph{derive} specialized package definitions from existing ones, including from the command line (@pxref{Package Transformation Options})." msgstr "Guix включает определения пакетов для множества проектов GNU и не-GNU, каждый из которых @uref{https://www.gnu.org/philosophy/free-sw.html, уважает свободу пользователя в работе за компьютером}. Он @emph{расширяемый}: пользователи могут писать свои собственные определения пакетов (@pxref{Defining Packages}) и делать их доступными как независимые пакетные модули (@pxref{Package Modules}). Он также @emph{настраиваемый}: пользователи могут @emph{получать} специальные определения пакетов из существующих, в том числе через командную строку (@pxref{Package Transformation Options})." #. type: cindex -#: guix-git/doc/guix.texi:456 +#: guix-git/doc/guix.texi:457 #, no-wrap msgid "functional package management" msgstr "функциональное управление пакетами" #. type: cindex -#: guix-git/doc/guix.texi:457 +#: guix-git/doc/guix.texi:458 #, no-wrap msgid "isolation" msgstr "изоляция" #. type: Plain text -#: guix-git/doc/guix.texi:472 +#: guix-git/doc/guix.texi:473 msgid "Under the hood, Guix implements the @dfn{functional package management} discipline pioneered by Nix (@pxref{Acknowledgments}). In Guix, the package build and installation process is seen as a @emph{function}, in the mathematical sense. That function takes inputs, such as build scripts, a compiler, and libraries, and returns an installed package. As a pure function, its result depends solely on its inputs---for instance, it cannot refer to software or scripts that were not explicitly passed as inputs. A build function always produces the same result when passed a given set of inputs. It cannot alter the environment of the running system in any way; for instance, it cannot create, modify, or delete files outside of its build and installation directories. This is achieved by running build processes in isolated environments (or @dfn{containers}), where only their explicit inputs are visible." msgstr "Под капотом Guix работает как @dfn{функциональный пакетный менеджер} --- принцип, впервые введённый Nix (@pxref{Acknowledgments}). В Guix процесс сборки и установки пакета рассматривается как @emph{функция} в математическом смысле. Эта функция принимает входные данные, как например, скрипты сборки, компилятор, её результат зависит только от входных данных, и он не может зависеть от программ или скриптов, которые не подаются на вход явным образом. Функция сборки всегда производит один результат, когда получает один и тот же набор входных данных. Она не может как-либо изменять окружение запущенной системы; например, она не может создавать, изменять или удалять файлы за пределами её директорий сборки и установки. Это достигается так: процесс сборки запускается в изолированном окружении (или @dfn{контейнере}), в котором видны только входные данные, заданные явно." #. type: cindex -#: guix-git/doc/guix.texi:473 guix-git/doc/guix.texi:9372 +#: guix-git/doc/guix.texi:474 guix-git/doc/guix.texi:9686 #, no-wrap msgid "store" msgstr "склад" #. type: Plain text -#: guix-git/doc/guix.texi:480 +#: guix-git/doc/guix.texi:481 msgid "The result of package build functions is @dfn{cached} in the file system, in a special directory called @dfn{the store} (@pxref{The Store}). Each package is installed in a directory of its own in the store---by default under @file{/gnu/store}. The directory name contains a hash of all the inputs used to build that package; thus, changing an input yields a different directory name." msgstr "Результат работы функций сборки пакетов кешируется в файловой системе в специальной директории, называемой @dfn{склад} (@pxref{The Store}).Каждый пакет устанавливается в собственную директорию склада, по умолчанию --- под @file{/gnu/store}. Имя директории содержит хеш всех входных данных, используемых для сборки этого пакета, так что изменение входных данных порождает различные имена директорий." #. type: Plain text -#: guix-git/doc/guix.texi:484 +#: guix-git/doc/guix.texi:485 msgid "This approach is the foundation for the salient features of Guix: support for transactional package upgrade and rollback, per-user installation, and garbage collection of packages (@pxref{Features})." msgstr "Этот подход является принципиальным, на нём основаны ключевые особенностей Guix: поддержка транзакционного обновления пакета и откаты, установка для отдельного пользователя, сборка мусора от пакетов (@pxref{Features})." #. type: Plain text -#: guix-git/doc/guix.texi:499 +#: guix-git/doc/guix.texi:500 msgid "Guix comes with a distribution of the GNU system consisting entirely of free software@footnote{The term ``free'' here refers to the @url{https://www.gnu.org/philosophy/free-sw.html,freedom provided to users of that software}.}. The distribution can be installed on its own (@pxref{System Installation}), but it is also possible to install Guix as a package manager on top of an installed GNU/Linux system (@pxref{Installation}). When we need to distinguish between the two, we refer to the standalone distribution as Guix@tie{}System." msgstr "Guix поставляется с дистрибутивом системы GNU, полностью состоящим из свободного программного обеспечения @footnote{Термин ``свободного'' здесь относится к @url{https://www.gnu.org/philosophy/free-sw.ru.html,свобода, предоставляемая пользователям этого программного обеспечения}.}. Дистрибутив можно установить отдельно (@pxref{System Installation}), но также можно установить Guix в качестве пакетного менеджера поверх установленной системы GNU/Linux (@pxref{Installation}). Когда нам нужно провести различие между ними, мы называем самодостаточный дистрибутив Guix@tie{}System." #. type: Plain text -#: guix-git/doc/guix.texi:505 +#: guix-git/doc/guix.texi:506 msgid "The distribution provides core GNU packages such as GNU libc, GCC, and Binutils, as well as many GNU and non-GNU applications. The complete list of available packages can be browsed @url{https://www.gnu.org/software/guix/packages,on-line} or by running @command{guix package} (@pxref{Invoking guix package}):" msgstr "Дистрибутив предоставляет основные пакеты GNU, такие как GNU libc, GCC и Binutils, а также многие приложения GNU и не-GNU. Полный список доступных пакетов можно просмотреть по @url{https://www.gnu.org/software/guix/packages,онлайн} или запустив @command{guix package} (@pxref{Invoking guix package}):" #. type: example -#: guix-git/doc/guix.texi:508 +#: guix-git/doc/guix.texi:509 #, no-wrap msgid "guix package --list-available\n" msgstr "guix package --list-available\n" #. type: Plain text -#: guix-git/doc/guix.texi:514 +#: guix-git/doc/guix.texi:515 msgid "Our goal is to provide a practical 100% free software distribution of Linux-based and other variants of GNU, with a focus on the promotion and tight integration of GNU components, and an emphasis on programs and tools that help users exert that freedom." msgstr "Наша цель --- предоставить состоящий на 100% из свободного программного обеспечения рабочий дистрибуив Linux или другие варианты GNU. Мы ориентируемся на продвижении и полноценной интеграции компонентов GNU и поддержке программ и утилит, которые помогают пользователям реализовать их свободы." #. type: Plain text -#: guix-git/doc/guix.texi:516 +#: guix-git/doc/guix.texi:517 msgid "Packages are currently available on the following platforms:" msgstr "Пакеты в данные момент доступны для следующих платформ:" #. type: item -#: guix-git/doc/guix.texi:519 guix-git/doc/guix.texi:2155 +#: guix-git/doc/guix.texi:520 guix-git/doc/guix.texi:2172 #, no-wrap msgid "x86_64-linux" msgstr "x86_64-linux" #. type: table -#: guix-git/doc/guix.texi:521 +#: guix-git/doc/guix.texi:522 msgid "Intel/AMD @code{x86_64} architecture, Linux-Libre kernel." msgstr "архитектура Intel/AMD @code{x86_64} с ядром Linux-Libre." #. type: item -#: guix-git/doc/guix.texi:522 guix-git/doc/guix.texi:2158 +#: guix-git/doc/guix.texi:523 guix-git/doc/guix.texi:2175 #, no-wrap msgid "i686-linux" msgstr "i686-linux" #. type: table -#: guix-git/doc/guix.texi:524 +#: guix-git/doc/guix.texi:525 msgid "Intel 32-bit architecture (IA32), Linux-Libre kernel." msgstr "архитектура Intel 32-bit (IA32) с ядром Linux-Libre." #. type: item -#: guix-git/doc/guix.texi:525 +#: guix-git/doc/guix.texi:526 #, no-wrap msgid "armhf-linux" msgstr "armhf-linux" #. type: table -#: guix-git/doc/guix.texi:529 +#: guix-git/doc/guix.texi:530 msgid "ARMv7-A architecture with hard float, Thumb-2 and NEON, using the EABI hard-float application binary interface (ABI), and Linux-Libre kernel." msgstr "Архитектура ARMv7-A с hard float, Thumb-2 и NEON, используя двочиный интерфейс приложений EABI hard-float (ABI), с ядром Linux-Libre." #. type: item -#: guix-git/doc/guix.texi:530 +#: guix-git/doc/guix.texi:531 #, no-wrap msgid "aarch64-linux" msgstr "aarch64-linux" #. type: table -#: guix-git/doc/guix.texi:532 +#: guix-git/doc/guix.texi:533 msgid "little-endian 64-bit ARMv8-A processors, Linux-Libre kernel." msgstr "процессоры little-endian 64-bit ARMv8-A с ядром Linux-Libre." #. type: item -#: guix-git/doc/guix.texi:533 +#: guix-git/doc/guix.texi:534 #, no-wrap msgid "i586-gnu" msgstr "i586-gnu" #. type: table -#: guix-git/doc/guix.texi:536 +#: guix-git/doc/guix.texi:537 msgid "@uref{https://hurd.gnu.org, GNU/Hurd} on the Intel 32-bit architecture (IA32)." msgstr "@uref{https://hurd.gnu.org, GNU/Hurd} на 32 битной архитектуре Intel (IA32)." #. type: table -#: guix-git/doc/guix.texi:542 +#: guix-git/doc/guix.texi:543 msgid "This configuration is experimental and under development. The easiest way for you to give it a try is by setting up an instance of @code{hurd-vm-service-type} on your GNU/Linux machine (@pxref{transparent-emulation-qemu, @code{hurd-vm-service-type}}). @xref{Contributing}, on how to help!" msgstr "Эта конфигурация является экспериментальной и находится в разработке. Самый простой способ попробовать - настроить экземпляр @code{hurd-vm-service-type} на вашем GNU/Linux компьютере (@pxref{transparent-emulation-qemu, @code{hurd-vm-service-type}}). @xref{Contributing}, о том, как помочь!" #. type: item -#: guix-git/doc/guix.texi:543 +#: guix-git/doc/guix.texi:544 #, fuzzy, no-wrap #| msgid "mips64el-linux (deprecated)" msgid "mips64el-linux (unsupported)" msgstr "mips64el-linux (устарело)" #. type: table -#: guix-git/doc/guix.texi:549 +#: guix-git/doc/guix.texi:550 msgid "little-endian 64-bit MIPS processors, specifically the Loongson series, n32 ABI, and Linux-Libre kernel. This configuration is no longer fully supported; in particular, there is no ongoing work to ensure that this architecture still works. Should someone decide they wish to revive this architecture then the code is still available." msgstr "64-разрядные little-endian процессоры MIPS порядком байтов, в частности серии Loongson, n32 ABI и ядро Linux-Libre. Эта конфигурация больше не поддерживается полностью; в частности, фермы сборки проекта больше не предоставляют замены этой архитектуре." #. type: item -#: guix-git/doc/guix.texi:550 +#: guix-git/doc/guix.texi:551 #, no-wrap msgid "powerpc-linux (unsupported)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:555 +#: guix-git/doc/guix.texi:556 #, fuzzy #| msgid "little-endian 64-bit MIPS processors, specifically the Loongson series, n32 ABI, and Linux-Libre kernel. This configuration is no longer fully supported; in particular, there is no ongoing work to ensure that this architecture still works. Should someone decide they wish to revive this architecture then the code is still available." msgid "big-endian 32-bit PowerPC processors, specifically the PowerPC G4 with AltiVec support, and Linux-Libre kernel. This configuration is not fully supported and there is no ongoing work to ensure this architecture works." msgstr "64-разрядные little-endian процессоры MIPS порядком байтов, в частности серии Loongson, n32 ABI и ядро Linux-Libre. Эта конфигурация больше не поддерживается полностью; в частности, фермы сборки проекта больше не предоставляют замены этой архитектуре." #. type: table -#: guix-git/doc/guix.texi:566 +#: guix-git/doc/guix.texi:567 msgid "little-endian 64-bit Power ISA processors, Linux-Libre kernel. This includes POWER9 systems such as the @uref{https://www.fsf.org/news/talos-ii-mainboard-and-talos-ii-lite-mainboard-now-fsf-certified-to-respect-your-freedom, RYF Talos II mainboard}. This platform is available as a \"technology preview\": although it is supported, substitutes are not yet available from the build farm (@pxref{Substitutes}), and some packages may fail to build (@pxref{Tracking Bugs and Patches}). That said, the Guix community is actively working on improving this support, and now is a great time to try it and get involved!" msgstr "64-битные процессоры Power ISA с прямым порядком байтов, ядро Linux-Libre. Сюда входят системы POWER9, такие как@uref{https://www.fsf.org/news/talos-ii-mainboard-and-talos-ii-lite-mainboard-now-fsf-certified-to-respect-your-freedom, RYF Talos II mainboard}. Эта платформа доступна как «предварительная версия»: хотя она и поддерживается, заменители еще не доступны (@pxref{Substitutes}), а некоторые пакеты могут не собираться (@pxref{Tracking Bugs and Patches}) . Тем не менее, сообщество Guix активно работает над улучшением этой поддержки, и сейчас отличное время, чтобы попробовать и принять участие!" -#. type: Plain text +#. type: item +#: guix-git/doc/guix.texi:568 +#, fuzzy, no-wrap +#| msgid "aarch64-linux" +msgid "riscv64-linux" +msgstr "aarch64-linux" + +#. type: table #: guix-git/doc/guix.texi:576 +#, fuzzy +#| msgid "little-endian 64-bit Power ISA processors, Linux-Libre kernel. This includes POWER9 systems such as the @uref{https://www.fsf.org/news/talos-ii-mainboard-and-talos-ii-lite-mainboard-now-fsf-certified-to-respect-your-freedom, RYF Talos II mainboard}. This platform is available as a \"technology preview\": although it is supported, substitutes are not yet available from the build farm (@pxref{Substitutes}), and some packages may fail to build (@pxref{Tracking Bugs and Patches}). That said, the Guix community is actively working on improving this support, and now is a great time to try it and get involved!" +msgid "little-endian 64-bit RISC-V processors, specifically RV64GC, and Linux-Libre kernel. This playform is available as a \"technology preview\": although it is supported, substitutes are not yet available from the build farm (@pxref{Substitutes}), and some packages may fail to build (@pxref{Tracking Bugs and Patches}). That said, the Guix community is actively working on improving this support, and now is a great time to try it and get involved!" +msgstr "64-битные процессоры Power ISA с прямым порядком байтов, ядро Linux-Libre. Сюда входят системы POWER9, такие как@uref{https://www.fsf.org/news/talos-ii-mainboard-and-talos-ii-lite-mainboard-now-fsf-certified-to-respect-your-freedom, RYF Talos II mainboard}. Эта платформа доступна как «предварительная версия»: хотя она и поддерживается, заменители еще не доступны (@pxref{Substitutes}), а некоторые пакеты могут не собираться (@pxref{Tracking Bugs and Patches}) . Тем не менее, сообщество Guix активно работает над улучшением этой поддержки, и сейчас отличное время, чтобы попробовать и принять участие!" + +#. type: Plain text +#: guix-git/doc/guix.texi:586 msgid "With Guix@tie{}System, you @emph{declare} all aspects of the operating system configuration and Guix takes care of instantiating the configuration in a transactional, reproducible, and stateless fashion (@pxref{System Configuration}). Guix System uses the Linux-libre kernel, the Shepherd initialization system (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}), the well-known GNU utilities and tool chain, as well as the graphical environment or system services of your choice." msgstr "Пользуясь системой@tie{}Guix, вы @emph{объявляете} все аспекты конфигурации системы, и Guix выполняет установку инстранции ОС транзакционным, повторяемым способом, не имеющей состояния (stateless) (@pxref{System Configuration}). Система Guix использует ядро Linux-libre, систему инициализации Shepherd (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}), хорошо известные утилиты и тулчейны GNU, а также графическое окружение на выбор." #. type: Plain text -#: guix-git/doc/guix.texi:579 -msgid "Guix System is available on all the above platforms except @code{mips64el-linux} and @code{powerpc64le-linux}." +#: guix-git/doc/guix.texi:590 +#, fuzzy +#| msgid "Guix System is available on all the above platforms except @code{mips64el-linux} and @code{powerpc64le-linux}." +msgid "Guix System is available on all the above platforms except @code{mips64el-linux}, @code{powerpc-linux}, @code{powerpc64le-linux} and @code{riscv64-linux}." msgstr "Система Guix доступна для платформ, приведённых выше, кроме @code{mips64el-linux}." #. type: Plain text -#: guix-git/doc/guix.texi:583 +#: guix-git/doc/guix.texi:594 msgid "For information on porting to other architectures or kernels, @pxref{Porting}." msgstr "Информация о портировании на другие архитектуры и ядра доступна в @pxref{Porting}." #. type: Plain text -#: guix-git/doc/guix.texi:586 +#: guix-git/doc/guix.texi:597 msgid "Building this distribution is a cooperative effort, and you are invited to join! @xref{Contributing}, for information about how you can help." msgstr "Дистрибутив созаётся совместными усилиями, приглашаем вас! См. @xref{Contributing}, чтобы узнать о том, как вы можете помочь." #. type: cindex -#: guix-git/doc/guix.texi:592 +#: guix-git/doc/guix.texi:603 #, no-wrap msgid "installing Guix" msgstr "Установка Guix" #. type: quotation -#: guix-git/doc/guix.texi:604 +#: guix-git/doc/guix.texi:615 msgid "We recommend the use of this @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, shell installer script} to install Guix on top of a running GNU/Linux system, thereafter called a @dfn{foreign distro}.@footnote{This section is concerned with the installation of the package manager, which can be done on top of a running GNU/Linux system. If, instead, you want to install the complete GNU operating system, @pxref{System Installation}.} The script automates the download, installation, and initial configuration of Guix. It should be run as the root user." msgstr "Мы рекомендуем использовать этот @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, скрипт установки} для установки Guix на существующую систему GNU/Linux, называемый далее @dfn{чужой дистрибутив}.@footnote{Этот раздел описывает установку пакетного менеджера поверх существующей системы GNU/Linux. Если вместо этого вы хотите установить отдельную операционную систему GNU, смотрите @pxref{System Installation}.} Скрипт автоматизирует скачивание, установку и начальную конфигурацию Guix. Он должен запускаться от пользователя root." #. type: cindex -#: guix-git/doc/guix.texi:606 guix-git/doc/guix.texi:1830 +#: guix-git/doc/guix.texi:617 guix-git/doc/guix.texi:1847 #, no-wrap msgid "foreign distro" msgstr "чужой дистрибутив" #. type: cindex -#: guix-git/doc/guix.texi:607 +#: guix-git/doc/guix.texi:618 #, no-wrap msgid "directories related to foreign distro" msgstr "директории относящиеся к чужому дистрибутиву" #. type: Plain text -#: guix-git/doc/guix.texi:612 +#: guix-git/doc/guix.texi:623 msgid "When installed on a foreign distro, GNU@tie{}Guix complements the available tools without interference. Its data lives exclusively in two directories, usually @file{/gnu/store} and @file{/var/guix}; other files on your system, such as @file{/etc}, are left untouched." msgstr "При установке на чужой дистрибутив GNU@tie{}Guix дополняет доступные утилиты без внесения помех. Его данные живут только в двух директориях --- обычно @file{/gnu/store} и @file{/var/guix}; другие файлы вашей системы, как @file{/etc}, остаются нетронутыми." #. type: Plain text -#: guix-git/doc/guix.texi:615 +#: guix-git/doc/guix.texi:626 msgid "Once installed, Guix can be updated by running @command{guix pull} (@pxref{Invoking guix pull})." msgstr "Установленный Guix можно обновлять командой @command{guix pull} (@pxref{Invoking guix pull})." #. type: Plain text -#: guix-git/doc/guix.texi:620 +#: guix-git/doc/guix.texi:631 msgid "If you prefer to perform the installation steps manually or want to tweak them, you may find the following subsections useful. They describe the software requirements of Guix, as well as how to install it manually and get ready to use it." msgstr "Если вы предпочитаете выполнять шаги установки вручную или хотита подправить их, следующие параграфы будут полезны. В них описаны требования Guix к программному обеспечению, а также процесс ручной установки до запуска в работу." #. type: cindex -#: guix-git/doc/guix.texi:634 +#: guix-git/doc/guix.texi:645 #, no-wrap msgid "installing Guix from binaries" msgstr "установка Guix из бинарных файлов" #. type: cindex -#: guix-git/doc/guix.texi:635 +#: guix-git/doc/guix.texi:646 #, no-wrap msgid "installer script" msgstr "скрипт установки" #. type: Plain text -#: guix-git/doc/guix.texi:641 +#: guix-git/doc/guix.texi:652 msgid "This section describes how to install Guix on an arbitrary system from a self-contained tarball providing binaries for Guix and for all its dependencies. This is often quicker than installing from source, which is described in the next sections. The only requirement is to have GNU@tie{}tar and Xz." msgstr "Этот раздел описывает, как установить Guix на обычную систему из отдельного архива, который содержит бинарники Guix и все его зависимости. Это обычно быстрее установки из исходных кодов, которая описана в следующем разделе. Единственное требование - иметь GNU@tie{}tar и Xz." #. type: quotation -#: guix-git/doc/guix.texi:649 +#: guix-git/doc/guix.texi:660 msgid "We recommend the use of this @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, shell installer script}. The script automates the download, installation, and initial configuration steps described below. It should be run as the root user. As root, you can thus run this:" msgstr "Мы рекомендуем использовать этот @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, установочный скрипт}. Скрипт автоматизирует скачивание, установку и начальные шаги конфигурации, описанные ниже. Он должен запускаться от пользователя root. Как root вы можете запустить это:" #. type: example -#: guix-git/doc/guix.texi:655 +#: guix-git/doc/guix.texi:666 #, no-wrap msgid "" "cd /tmp\n" @@ -5403,33 +5482,33 @@ msgstr "" "./guix-install.sh\n" #. type: quotation -#: guix-git/doc/guix.texi:659 +#: guix-git/doc/guix.texi:670 msgid "When you're done, @pxref{Application Setup} for extra configuration you might need, and @ref{Getting Started} for your first steps!" msgstr "Когда закончите, вам может понадобиться @pxref{Application Setup} для дополнительной настройки и @ref{Getting Started}!" #. type: Plain text -#: guix-git/doc/guix.texi:662 +#: guix-git/doc/guix.texi:673 msgid "Installing goes along these lines:" msgstr "Установка производится следующими образом:" #. type: cindex -#: guix-git/doc/guix.texi:665 +#: guix-git/doc/guix.texi:676 #, no-wrap msgid "downloading Guix binary" msgstr "скачивание бинарника Guix" #. type: enumerate -#: guix-git/doc/guix.texi:671 +#: guix-git/doc/guix.texi:682 msgid "Download the binary tarball from @indicateurl{@value{BASE-URL}/guix-binary-@value{VERSION}.x86_64-linux.tar.xz}, where @code{x86_64-linux} can be replaced with @code{i686-linux} for an @code{i686} (32-bits) machine already running the kernel Linux, and so on (@pxref{GNU Distribution})." msgstr "Скачайте архив с бинарником из @indicateurl{@value{BASE-URL}/guix-binary-@value{VERSION}.@var{system}.tar.xz}, где @var{system} --- это @code{x86_64-linux} для машины @code{x86_64}, на которой уже запущено ядро Linux, и так далее." #. type: enumerate -#: guix-git/doc/guix.texi:675 +#: guix-git/doc/guix.texi:686 msgid "Make sure to download the associated @file{.sig} file and to verify the authenticity of the tarball against it, along these lines:" msgstr "Убедитесь в аутентичности архива, скачав файл @file{.sig} и запустив:" #. type: example -#: guix-git/doc/guix.texi:679 +#: guix-git/doc/guix.texi:690 #, no-wrap msgid "" "$ wget @value{BASE-URL}/guix-binary-@value{VERSION}.x86_64-linux.tar.xz.sig\n" @@ -5439,12 +5518,12 @@ msgstr "" "$ gpg --verify guix-binary-@value{VERSION}.x86_64-linux.tar.xz.sig\n" #. type: Plain text -#: guix-git/doc/guix.texi:683 guix-git/doc/guix.texi:2173 +#: guix-git/doc/guix.texi:694 guix-git/doc/guix.texi:2190 msgid "If that command fails because you do not have the required public key, then run this command to import it:" msgstr "Если это завершается ошибкой, значит у вас нет необходимого публичного ключа, тогда запустите команду для импорта ключа:" #. type: example -#: guix-git/doc/guix.texi:687 +#: guix-git/doc/guix.texi:698 #, no-wrap msgid "" "$ wget '@value{OPENPGP-SIGNING-KEY-URL}' \\\n" @@ -5454,22 +5533,22 @@ msgstr "" " -qO - | gpg --import -\n" #. type: Plain text -#: guix-git/doc/guix.texi:691 guix-git/doc/guix.texi:2181 +#: guix-git/doc/guix.texi:702 guix-git/doc/guix.texi:2198 msgid "and rerun the @code{gpg --verify} command." msgstr "и запустите команду @code{gpg --verify}." #. type: Plain text -#: guix-git/doc/guix.texi:694 guix-git/doc/guix.texi:2184 +#: guix-git/doc/guix.texi:705 guix-git/doc/guix.texi:2201 msgid "Take note that a warning like ``This key is not certified with a trusted signature!'' is normal." msgstr "Обратите внимание, что предупреждение по типу «Этот ключ не сертифицирован с доверенной подписью!» является нормальным." #. type: enumerate -#: guix-git/doc/guix.texi:700 +#: guix-git/doc/guix.texi:711 msgid "Now, you need to become the @code{root} user. Depending on your distribution, you may have to run @code{su -} or @code{sudo -i}. As @code{root}, run:" msgstr "Теперь вам необходимы привилегии пользователя @code{root}. В зависимости от вашего дистрибутива, можно запустить @code{su -} или @code{sudo -i}. Под @code{root} запустите:" #. type: example -#: guix-git/doc/guix.texi:706 +#: guix-git/doc/guix.texi:717 #, no-wrap msgid "" "# cd /tmp\n" @@ -5483,27 +5562,27 @@ msgstr "" "# mv var/guix /var/ && mv gnu /\n" #. type: enumerate -#: guix-git/doc/guix.texi:711 +#: guix-git/doc/guix.texi:722 msgid "This creates @file{/gnu/store} (@pxref{The Store}) and @file{/var/guix}. The latter contains a ready-to-use profile for @code{root} (see next step)." msgstr "Это создаёт @file{/gnu/store} (@pxref{The Store}) и @file{/var/guix}. Последнее содержит готовый к использованию профиль для @code{root} (подробнее в следующем шаге)." #. type: enumerate -#: guix-git/doc/guix.texi:714 +#: guix-git/doc/guix.texi:725 msgid "Do @emph{not} unpack the tarball on a working Guix system since that would overwrite its own essential files." msgstr "@emph{Не} распаковывайте архив в работающую систему Guix, так как это перезапишет её основные файлы." #. type: enumerate -#: guix-git/doc/guix.texi:724 +#: guix-git/doc/guix.texi:735 msgid "The @option{--warning=no-timestamp} option makes sure GNU@tie{}tar does not emit warnings about ``implausibly old time stamps'' (such warnings were triggered by GNU@tie{}tar 1.26 and older; recent versions are fine). They stem from the fact that all the files in the archive have their modification time set to 1 (which means January 1st, 1970). This is done on purpose to make sure the archive content is independent of its creation time, thus making it reproducible." msgstr "Опция @code{--warning=no-timestamp} необходима, чтобы удостовериться, что GNU@tie{}tar не вызывает ошибок об \"устаревшей дате\", подобные ошибки появлялись в GNU@tie{}tar 1.26 и старше, в последних версиях всё в порядке). Они возникают из-за того, что архив имеет нулевую дату модификации (что соответствует 1 января 1970). Это сделано с той целью, чтобы удостовериться, что содержимое архива не засисит от даты его создания, что делает его воспроизводимым (повторяемым)." #. type: enumerate -#: guix-git/doc/guix.texi:728 +#: guix-git/doc/guix.texi:739 msgid "Make the profile available under @file{~root/.config/guix/current}, which is where @command{guix pull} will install updates (@pxref{Invoking guix pull}):" msgstr "Сделайте профиль доступным по пути @file{~root/.config/guix/current}, куда @command{guix pull} будет устанавливать обновления (@pxref{Invoking guix pull}):" #. type: example -#: guix-git/doc/guix.texi:733 +#: guix-git/doc/guix.texi:744 #, no-wrap msgid "" "# mkdir -p ~root/.config/guix\n" @@ -5515,12 +5594,12 @@ msgstr "" " ~root/.config/guix/current\n" #. type: enumerate -#: guix-git/doc/guix.texi:737 +#: guix-git/doc/guix.texi:748 msgid "Source @file{etc/profile} to augment @env{PATH} and other relevant environment variables:" msgstr "Добавьте @file{etc/profile} в @code{PATH} и другие уместные переменные окружения:" #. type: example -#: guix-git/doc/guix.texi:741 +#: guix-git/doc/guix.texi:752 #, no-wrap msgid "" "# GUIX_PROFILE=\"`echo ~root`/.config/guix/current\" ; \\\n" @@ -5530,22 +5609,22 @@ msgstr "" " source $GUIX_PROFILE/etc/profile\n" #. type: enumerate -#: guix-git/doc/guix.texi:746 +#: guix-git/doc/guix.texi:757 msgid "Create the group and user accounts for build users as explained below (@pxref{Build Environment Setup})." msgstr "Создайте группу и пользовательские учётные записи, как это обозначено в (@pxref{Build Environment Setup})." #. type: enumerate -#: guix-git/doc/guix.texi:749 +#: guix-git/doc/guix.texi:760 msgid "Run the daemon, and set it to automatically start on boot." msgstr "Запустите демон и сделайте добавьте его в автоззагрузку после старта." #. type: enumerate -#: guix-git/doc/guix.texi:752 +#: guix-git/doc/guix.texi:763 msgid "If your host distro uses the systemd init system, this can be achieved with these commands:" msgstr "Если ваш дистрибутив использует систему инициализации systemd, этого можно добиться следующими командами:" #. type: example -#: guix-git/doc/guix.texi:765 +#: guix-git/doc/guix.texi:776 #, no-wrap msgid "" "# cp ~root/.config/guix/current/lib/systemd/system/gnu-store.mount \\\n" @@ -5559,12 +5638,12 @@ msgstr "" "# systemctl enable --now gnu-store.mount guix-daemon\n" #. type: enumerate -#: guix-git/doc/guix.texi:768 +#: guix-git/doc/guix.texi:779 msgid "You may also want to arrange for @command{guix gc} to run periodically:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:774 +#: guix-git/doc/guix.texi:785 #, no-wrap msgid "" "# cp ~root/.config/guix/current/lib/systemd/system/guix-gc.service \\\n" @@ -5578,17 +5657,17 @@ msgstr "" "# systemctl enable --now guix-gc.timer\n" #. type: enumerate -#: guix-git/doc/guix.texi:778 +#: guix-git/doc/guix.texi:789 msgid "You may want to edit @file{guix-gc.service} to adjust the command line options to fit your needs (@pxref{Invoking guix gc})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:780 guix-git/doc/guix.texi:13740 +#: guix-git/doc/guix.texi:791 guix-git/doc/guix.texi:14097 msgid "If your host distro uses the Upstart init system:" msgstr "Если ваш дистрибутив использует систему инициализации Upstart:" #. type: example -#: guix-git/doc/guix.texi:786 +#: guix-git/doc/guix.texi:797 #, no-wrap msgid "" "# initctl reload-configuration\n" @@ -5602,12 +5681,12 @@ msgstr "" "# start guix-daemon\n" #. type: enumerate -#: guix-git/doc/guix.texi:789 +#: guix-git/doc/guix.texi:800 msgid "Otherwise, you can still start the daemon manually with:" msgstr "Или можно запускать демон вручную так:" #. type: example -#: guix-git/doc/guix.texi:793 +#: guix-git/doc/guix.texi:804 #, no-wrap msgid "" "# ~root/.config/guix/current/bin/guix-daemon \\\n" @@ -5617,12 +5696,12 @@ msgstr "" " --build-users-group=guixbuild\n" #. type: enumerate -#: guix-git/doc/guix.texi:798 +#: guix-git/doc/guix.texi:809 msgid "Make the @command{guix} command available to other users on the machine, for instance with:" msgstr "Сделайте команду @command{guix} доступной для других пользователей машины, например, так:" #. type: example -#: guix-git/doc/guix.texi:803 +#: guix-git/doc/guix.texi:814 #, no-wrap msgid "" "# mkdir -p /usr/local/bin\n" @@ -5634,12 +5713,12 @@ msgstr "" "# ln -s /var/guix/profiles/per-user/root/current-guix/bin/guix\n" #. type: enumerate -#: guix-git/doc/guix.texi:807 +#: guix-git/doc/guix.texi:818 msgid "It is also a good idea to make the Info version of this manual available there:" msgstr "Хорошо также предоставить доступ к Info-версии руководства так:" #. type: example -#: guix-git/doc/guix.texi:813 +#: guix-git/doc/guix.texi:824 #, no-wrap msgid "" "# mkdir -p /usr/local/share/info\n" @@ -5653,26 +5732,26 @@ msgstr "" " do ln -s $i ; done\n" #. type: enumerate -#: guix-git/doc/guix.texi:819 +#: guix-git/doc/guix.texi:830 msgid "That way, assuming @file{/usr/local/share/info} is in the search path, running @command{info guix} will open this manual (@pxref{Other Info Directories,,, texinfo, GNU Texinfo}, for more details on changing the Info search path)." msgstr "Таким образом, если предположить, что @file{/usr/local/share/info} находится в пути поиска, запуск @command{info guix} откроет это руководство (см., @pxref{Other Info Directories,,, texinfo, GNU Texinfo})." #. type: cindex -#: guix-git/doc/guix.texi:821 guix-git/doc/guix.texi:3798 -#: guix-git/doc/guix.texi:16494 +#: guix-git/doc/guix.texi:832 guix-git/doc/guix.texi:3816 +#: guix-git/doc/guix.texi:16851 #, no-wrap msgid "substitutes, authorization thereof" msgstr "авторизация, подстановок" #. type: enumerate -#: guix-git/doc/guix.texi:825 +#: guix-git/doc/guix.texi:836 #, fuzzy #| msgid "To use substitutes from @code{@value{SUBSTITUTE-SERVER}} or one of its mirrors (@pxref{Substitutes}), authorize them:" msgid "To use substitutes from @code{@value{SUBSTITUTE-SERVER-1}}, @code{@value{SUBSTITUTE-SERVER-2}} or a mirror (@pxref{Substitutes}), authorize them:" msgstr "Чтобы использовать подстановки из @code{@value{SUBSTITUTE-SERVER}} или из одного из зеркал (@pxref{Substitutes}), авторизуйте их:" #. type: example -#: guix-git/doc/guix.texi:831 +#: guix-git/doc/guix.texi:842 #, no-wrap msgid "" "# guix archive --authorize < \\\n" @@ -5686,49 +5765,49 @@ msgstr "" " ~root/.config/guix/current/share/guix/@value{SUBSTITUTE-SERVER-2}.pub\n" #. type: quotation -#: guix-git/doc/guix.texi:838 +#: guix-git/doc/guix.texi:849 msgid "If you do not enable substitutes, Guix will end up building @emph{everything} from source on your machine, making each installation and upgrade very expensive. @xref{On Trusting Binaries}, for a discussion of reasons why one might want do disable substitutes." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:843 +#: guix-git/doc/guix.texi:854 msgid "Each user may need to perform a few additional steps to make their Guix environment ready for use, @pxref{Application Setup}." msgstr "Каждый пользователь, возможно, должен выполнить дополнительные шаги, чтобы сделать их окружение Guix готовым к использованию @pxref{Application Setup}." #. type: Plain text -#: guix-git/doc/guix.texi:846 +#: guix-git/doc/guix.texi:857 msgid "Voilà, the installation is complete!" msgstr "Вуаля! Установка завершена!" #. type: Plain text -#: guix-git/doc/guix.texi:849 +#: guix-git/doc/guix.texi:860 msgid "You can confirm that Guix is working by installing a sample package into the root profile:" msgstr "Вы можете проверить, что Guix работает, установив тестовый пакет для профиля root:" #. type: example -#: guix-git/doc/guix.texi:852 +#: guix-git/doc/guix.texi:863 #, no-wrap msgid "# guix install hello\n" msgstr "# guix install hello\n" #. type: Plain text -#: guix-git/doc/guix.texi:856 +#: guix-git/doc/guix.texi:867 msgid "The binary installation tarball can be (re)produced and verified simply by running the following command in the Guix source tree:" msgstr "Архив для бинарной установки может быть воспроизведён (повторён) и проверен простым запуском следующей команды в дереве исходников Guix:" #. type: example -#: guix-git/doc/guix.texi:859 +#: guix-git/doc/guix.texi:870 #, no-wrap msgid "make guix-binary.@var{system}.tar.xz\n" msgstr "make guix-binary.@var{system}.tar.xz\n" #. type: Plain text -#: guix-git/doc/guix.texi:863 +#: guix-git/doc/guix.texi:874 msgid "...@: which, in turn, runs:" msgstr "..., что в свою очередь, выполнит:" #. type: example -#: guix-git/doc/guix.texi:867 +#: guix-git/doc/guix.texi:878 #, no-wrap msgid "" "guix pack -s @var{system} --localstatedir \\\n" @@ -5738,224 +5817,232 @@ msgstr "" " --profile-name=current-guix guix\n" #. type: Plain text -#: guix-git/doc/guix.texi:870 +#: guix-git/doc/guix.texi:881 msgid "@xref{Invoking guix pack}, for more info on this handy tool." msgstr "@xref{Invoking guix pack} для подробной информации об этом полезном инструменте." #. type: Plain text -#: guix-git/doc/guix.texi:878 +#: guix-git/doc/guix.texi:889 msgid "This section lists requirements when building Guix from source. The build procedure for Guix is the same as for other GNU software, and is not covered here. Please see the files @file{README} and @file{INSTALL} in the Guix source tree for additional details." msgstr "Этот раздел содержит требования для сборки Guix из исходников. Пожалуйста, смотрите файлы @file{README} и @file{INSTALL} в дереве исходников Guix для подробной информации." #. type: cindex -#: guix-git/doc/guix.texi:879 +#: guix-git/doc/guix.texi:890 #, no-wrap msgid "official website" msgstr "официальный веб-сайт" #. type: Plain text -#: guix-git/doc/guix.texi:882 +#: guix-git/doc/guix.texi:893 msgid "GNU Guix is available for download from its website at @url{https://www.gnu.org/software/guix/}." msgstr "GNU Guix доступен для скачивания на сайте @url{https://www.gnu.org/software/guix/}." #. type: Plain text -#: guix-git/doc/guix.texi:884 +#: guix-git/doc/guix.texi:895 msgid "GNU Guix depends on the following packages:" msgstr "GNU Guix зависит от следующих пакетов:" #. type: item -#: guix-git/doc/guix.texi:886 -#, no-wrap -msgid "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x;" +#: guix-git/doc/guix.texi:897 +#, fuzzy, no-wrap +#| msgid "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x;" +msgid "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x," msgstr "@url{https://gnu.org/software/guile/, GNU Guile} версии 3.0.x;" +#. type: itemize +#: guix-git/doc/guix.texi:899 +#, fuzzy +#| msgid "version 0.1.0 or later;" +msgid "version 3.0.3 or later;" +msgstr "0.1.0 или более поздней;" + #. type: item -#: guix-git/doc/guix.texi:887 +#: guix-git/doc/guix.texi:899 #, no-wrap msgid "@url{https://notabug.org/cwebber/guile-gcrypt, Guile-Gcrypt}, version" msgstr "@url{https://notabug.org/cwebber/guile-gcrypt, Guile-Gcrypt} версии" #. type: itemize -#: guix-git/doc/guix.texi:889 +#: guix-git/doc/guix.texi:901 msgid "0.1.0 or later;" msgstr "0.1.0 или более поздней;" #. type: itemize -#: guix-git/doc/guix.texi:893 +#: guix-git/doc/guix.texi:905 msgid "@uref{https://gnutls.org/, GnuTLS}, specifically its Guile bindings (@pxref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile});" msgstr "@uref{https://gnutls.org/, GnuTLS} применимо к привязкам Guile (@pxref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile});" #. type: itemize -#: guix-git/doc/guix.texi:896 +#: guix-git/doc/guix.texi:908 msgid "@uref{https://notabug.org/guile-sqlite3/guile-sqlite3, Guile-SQLite3}, version 0.1.0 or later;" msgstr "@uref{https://notabug.org/guile-sqlite3/guile-sqlite3, Guile-SQLite3} версии 0.1.0 или новее;" #. type: item -#: guix-git/doc/guix.texi:896 +#: guix-git/doc/guix.texi:908 #, no-wrap msgid "@uref{https://notabug.org/guile-zlib/guile-zlib, Guile-zlib}," msgstr "@uref{https://notabug.org/guile-zlib/guile-zlib, Guile-zlib}," #. type: itemize -#: guix-git/doc/guix.texi:898 +#: guix-git/doc/guix.texi:910 msgid "version 0.1.0 or later;" msgstr "0.1.0 или более поздней;" #. type: item -#: guix-git/doc/guix.texi:898 +#: guix-git/doc/guix.texi:910 #, no-wrap msgid "@uref{https://notabug.org/guile-lzlib/guile-lzlib, Guile-lzlib};" msgstr "@uref{https://notabug.org/guile-lzlib/guile-lzlib, Guile-lzlib};" #. type: item -#: guix-git/doc/guix.texi:899 +#: guix-git/doc/guix.texi:911 #, no-wrap msgid "@uref{https://www.nongnu.org/guile-avahi/, Guile-Avahi};" msgstr "@uref{https://www.nongnu.org/guile-avahi/, Guile-Avahi};" #. type: itemize -#: guix-git/doc/guix.texi:903 +#: guix-git/doc/guix.texi:915 #, fuzzy msgid "@uref{https://gitlab.com/guile-git/guile-git, Guile-Git}, version 0.5.0 or later;" msgstr "@uref{https://gitlab.com/guile-git/guile-git, Guile-Git} от августа 2017 или более поздней;" #. type: item -#: guix-git/doc/guix.texi:903 +#: guix-git/doc/guix.texi:915 #, no-wrap msgid "@uref{https://savannah.nongnu.org/projects/guile-json/, Guile-JSON}" msgstr "@uref{https://savannah.nongnu.org/projects/guile-json/, Guile-JSON}" #. type: itemize -#: guix-git/doc/guix.texi:905 +#: guix-git/doc/guix.texi:917 msgid "4.3.0 or later;" msgstr "4.3.0 или более поздней;" #. type: item -#: guix-git/doc/guix.texi:905 +#: guix-git/doc/guix.texi:917 #, no-wrap msgid "@url{https://www.gnu.org/software/make/, GNU Make}." msgstr "@url{https://www.gnu.org/software/make/, GNU Make}." #. type: Plain text -#: guix-git/doc/guix.texi:909 +#: guix-git/doc/guix.texi:921 msgid "The following dependencies are optional:" msgstr "Следующие зависимости необязательны:" #. type: itemize -#: guix-git/doc/guix.texi:917 +#: guix-git/doc/guix.texi:929 msgid "Support for build offloading (@pxref{Daemon Offload Setup}) and @command{guix copy} (@pxref{Invoking guix copy}) depends on @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH}, version 0.13.0 or later." msgstr "Поддержка разгрузки сборки (@pxref{Daemon Offload Setup}) и @command{guix copy} (@pxref{Invoking guix copy}) зависят от @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH} версии 0.10.2 или новее." #. type: itemize -#: guix-git/doc/guix.texi:922 +#: guix-git/doc/guix.texi:934 msgid "@uref{https://notabug.org/guile-zstd/guile-zstd, Guile-zstd}, for zstd compression and decompression in @command{guix publish} and for substitutes (@pxref{Invoking guix publish})." msgstr "@uref{https://notabug.org/guile-zstd/guile-zstd, Guile-zstd}, для zstd сжатия и распаковки в @command{guix publish} и для заменителей (@pxref{Invoking guix publish})." #. type: itemize -#: guix-git/doc/guix.texi:926 +#: guix-git/doc/guix.texi:938 msgid "@uref{https://ngyro.com/software/guile-semver.html, Guile-Semver} for the @code{crate} importer (@pxref{Invoking guix import})." msgstr "@uref{https://ngyro.com/software/guile-semver.html, Guile-Semver} для @code{crate} импортера (@pxref{Invoking guix import})." #. type: itemize -#: guix-git/doc/guix.texi:931 +#: guix-git/doc/guix.texi:943 msgid "@uref{https://www.nongnu.org/guile-lib/doc/ref/htmlprag/, Guile-Lib} for the @code{go} importer (@pxref{Invoking guix import}) and for some of the ``updaters'' (@pxref{Invoking guix refresh})." msgstr "@uref{https://ngyro.com/software/guile-semver.html, Guile-Semver} для @code{crate} импортера (@pxref{Invoking guix import})." #. type: itemize -#: guix-git/doc/guix.texi:935 +#: guix-git/doc/guix.texi:947 msgid "When @url{http://www.bzip.org, libbz2} is available, @command{guix-daemon} can use it to compress build logs." msgstr "Если доступна @url{http://www.bzip.org, libbz2}, @command{guix-daemon} может использовать её для сжатия логов сборки." #. type: Plain text -#: guix-git/doc/guix.texi:939 +#: guix-git/doc/guix.texi:951 msgid "Unless @option{--disable-daemon} was passed to @command{configure}, the following packages are also needed:" msgstr "Если строка @code{--disable-daemon} не использовалась в @command{configure}, тогда необходимы также следующие пакеты:" #. type: item -#: guix-git/doc/guix.texi:941 +#: guix-git/doc/guix.texi:953 #, no-wrap msgid "@url{https://gnupg.org/, GNU libgcrypt};" msgstr "@url{https://gnupg.org/, GNU libgcrypt};" #. type: item -#: guix-git/doc/guix.texi:942 +#: guix-git/doc/guix.texi:954 #, no-wrap msgid "@url{https://sqlite.org, SQLite 3};" msgstr "@url{https://sqlite.org, SQLite 3};" #. type: item -#: guix-git/doc/guix.texi:943 +#: guix-git/doc/guix.texi:955 #, no-wrap msgid "@url{https://gcc.gnu.org, GCC's g++}, with support for the" msgstr "@url{https://gcc.gnu.org, GCC's g++} с поддержкой" #. type: itemize -#: guix-git/doc/guix.texi:945 +#: guix-git/doc/guix.texi:957 msgid "C++11 standard." msgstr "стандарта C++11." #. type: cindex -#: guix-git/doc/guix.texi:947 +#: guix-git/doc/guix.texi:959 #, no-wrap msgid "state directory" msgstr "главный каталог" #. type: Plain text -#: guix-git/doc/guix.texi:956 +#: guix-git/doc/guix.texi:968 msgid "When configuring Guix on a system that already has a Guix installation, be sure to specify the same state directory as the existing installation using the @option{--localstatedir} option of the @command{configure} script (@pxref{Directory Variables, @code{localstatedir},, standards, GNU Coding Standards}). Usually, this @var{localstatedir} option is set to the value @file{/var}. The @command{configure} script protects against unintended misconfiguration of @var{localstatedir} so you do not inadvertently corrupt your store (@pxref{The Store})." msgstr "Если Guix развёртывается в системе, где уже был установлен Guix, необходимо указать главный каталог предыдущей инсталляции, используя параметр @code{--localstatedir} в скрипте @command{configure} (@pxref{Directory Variables, @code{localstatedir},, standards, GNU Coding Standards}). Скрипт @command{configure} защищает от ошибок в конфигурации @var{localstatedir}, предотвращая непреднамеренное повреждение хранилища (@pxref{The Store})." #. type: cindex -#: guix-git/doc/guix.texi:960 +#: guix-git/doc/guix.texi:972 #, no-wrap msgid "test suite" msgstr "набор тестов" #. type: Plain text -#: guix-git/doc/guix.texi:966 +#: guix-git/doc/guix.texi:978 msgid "After a successful @command{configure} and @code{make} run, it is a good idea to run the test suite. It can help catch issues with the setup or environment, or bugs in Guix itself---and really, reporting test failures is a good way to help improve the software. To run the test suite, type:" msgstr "После успешного завершения @command{configure} и @code{make} хорошо бы выполнить набор тестов. Это поможет выявить проблемы установки или в окружении, как и баги самого Guix (на самом деле, отчёты об ошибках тестов помогают улучшить ПО). Чтобы запустить тесты, напечатайте:" #. type: example -#: guix-git/doc/guix.texi:969 +#: guix-git/doc/guix.texi:981 #, no-wrap msgid "make check\n" msgstr "make check\n" #. type: Plain text -#: guix-git/doc/guix.texi:976 +#: guix-git/doc/guix.texi:988 msgid "Test cases can run in parallel: you can use the @code{-j} option of GNU@tie{}make to speed things up. The first run may take a few minutes on a recent machine; subsequent runs will be faster because the store that is created for test purposes will already have various things in cache." msgstr "Тесты можно выполнять параллельно при включении опции @code{-j} в GNU@tie{}make, так быстрее. Первый запуск может длиться несколько минут на топовой машине, последующие запуски будут быстрее, так как склад, который создаётся для тестов, уже закеширует различные вещи." #. type: Plain text -#: guix-git/doc/guix.texi:979 +#: guix-git/doc/guix.texi:991 msgid "It is also possible to run a subset of the tests by defining the @code{TESTS} makefile variable as in this example:" msgstr "Также можно запустить отдельные наборы тестов, используя переменную @code{TESTS}, как в примере:" #. type: example -#: guix-git/doc/guix.texi:982 +#: guix-git/doc/guix.texi:994 #, no-wrap msgid "make check TESTS=\"tests/store.scm tests/cpio.scm\"\n" msgstr "make check TESTS=\"tests/store.scm tests/cpio.scm\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:987 +#: guix-git/doc/guix.texi:999 msgid "By default, tests results are displayed at a file level. In order to see the details of every individual test cases, it is possible to define the @code{SCM_LOG_DRIVER_FLAGS} makefile variable as in this example:" msgstr "По умолчанию результаты тестов выводятся в файл. Чтобы просмотреть результаты каждого отдельного теста, нужно задать переменную makifile @code{SCM_LOG_DRIVER_FLAGS}, как в примере:" #. type: example -#: guix-git/doc/guix.texi:990 +#: guix-git/doc/guix.texi:1002 #, no-wrap msgid "make check TESTS=\"tests/base64.scm\" SCM_LOG_DRIVER_FLAGS=\"--brief=no\"\n" msgstr "make check TESTS=\"tests/base64.scm\" SCM_LOG_DRIVER_FLAGS=\"--brief=no\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:998 +#: guix-git/doc/guix.texi:1010 msgid "The underlying SRFI 64 custom Automake test driver used for the 'check' test suite (located at @file{build-aux/test-driver.scm}) also allows selecting which test cases to run at a finer level, via its @option{--select} and @option{--exclude} options. Here's an example, to run all the test cases from the @file{tests/packages.scm} test file whose names start with ``transaction-upgrade-entry'':" msgstr "Лежащий в основе кастомный SRFI 64 Automake тестовый драйвер, используемый для 'проверки' набора тестов (расположенный в @file{build-aux/test-driver.scm}) также позволяет выбрать, какие тестовые случаи запускать на более высоком уровне, при помощи опций @option{--select} и @option{--exclude}. Вот пример для запуска всех тестовых случаев из файла @file{tests/packages.scm}, чьи имена начинаются с ``transaction-upgrade-entry'':" #. type: example -#: guix-git/doc/guix.texi:1002 +#: guix-git/doc/guix.texi:1014 #, no-wrap msgid "" "export SCM_LOG_DRIVER_FLAGS=\"--select=^transaction-upgrade-entry\"\n" @@ -5965,114 +6052,114 @@ msgstr "" "make check TESTS=\"tests/packages.scm\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:1008 +#: guix-git/doc/guix.texi:1020 msgid "Those wishing to inspect the results of failed tests directly from the command line can add the @option{--errors-only=yes} option to the @code{SCM_LOG_DRIVER_FLAGS} makefile variable and set the @code{VERBOSE} Automake makefile variable, as in:" msgstr "Желающие проверить результаты неудачных тестов прямо из командной строки могут добавить @option{--errors-only=yes} к makefile переменной@code{SCM_LOG_DRIVER_FLAGS} и задать Automake makefile переменную @code{VERBOSE}, как в:" #. type: example -#: guix-git/doc/guix.texi:1011 +#: guix-git/doc/guix.texi:1023 #, no-wrap msgid "make check SCM_LOG_DRIVER_FLAGS=\"--brief=no --errors-only=yes\" VERBOSE=1\n" msgstr "make check TESTS=\"tests/base64.scm\" SCM_LOG_DRIVER_FLAGS=\"--brief=no\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:1016 +#: guix-git/doc/guix.texi:1028 msgid "The @option{--show-duration=yes} option can be used to print the duration of the individual test cases, when used in combination with @option{--brief=no}:" msgstr "Опция @option{--show-duration=yes} может быть использована чтобы отобразить продолжительность отдельных тестовых случаев, когда использована вместе с @option{--brief=no}:" #. type: example -#: guix-git/doc/guix.texi:1019 +#: guix-git/doc/guix.texi:1031 #, no-wrap msgid "make check SCM_LOG_DRIVER_FLAGS=\"--brief=no --show-duration=yes\"\n" msgstr "make check TESTS=\"tests/base64.scm\" SCM_LOG_DRIVER_FLAGS=\"--brief=no\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:1023 +#: guix-git/doc/guix.texi:1035 msgid "@xref{Parallel Test Harness,,,automake,GNU Automake} for more information about the Automake Parallel Test Harness." msgstr "@xref{Parallel Test Harness,,,automake,GNU Automake} для получения дополнительной информации о Automake Parallel Test Harness." #. type: Plain text -#: guix-git/doc/guix.texi:1028 +#: guix-git/doc/guix.texi:1040 msgid "Upon failure, please email @email{bug-guix@@gnu.org} and attach the @file{test-suite.log} file. Please specify the Guix version being used as well as version numbers of the dependencies (@pxref{Requirements}) in your message." msgstr "В случае ошибки, пожалуйста, отправьте сообщение на @email{bug-guix@@gnu.org} и присоедините файл @file{test-suite.log}. Пожалуйста, обозначьте в сообщении используемую версию Guix, а также номера версий зависимостей (@pxref{Requirements})." #. type: Plain text -#: guix-git/doc/guix.texi:1032 +#: guix-git/doc/guix.texi:1044 msgid "Guix also comes with a whole-system test suite that tests complete Guix System instances. It can only run on systems where Guix is already installed, using:" msgstr "Guix также идёт с набором тестов для всей системы, который проверяет нстранцию системы Guix. Их можно запустить только в системах, где Guix уже установлен, так:" #. type: example -#: guix-git/doc/guix.texi:1035 +#: guix-git/doc/guix.texi:1047 #, no-wrap msgid "make check-system\n" msgstr "make check-system\n" #. type: Plain text -#: guix-git/doc/guix.texi:1039 +#: guix-git/doc/guix.texi:1051 msgid "or, again, by defining @code{TESTS} to select a subset of tests to run:" msgstr "или, опять же, задав @code{TESTS}, чтобы выбрать список тестов для запуска:" #. type: example -#: guix-git/doc/guix.texi:1042 +#: guix-git/doc/guix.texi:1054 #, no-wrap msgid "make check-system TESTS=\"basic mcron\"\n" msgstr "make check-system TESTS=\"basic mcron\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:1050 +#: guix-git/doc/guix.texi:1062 msgid "These system tests are defined in the @code{(gnu tests @dots{})} modules. They work by running the operating systems under test with lightweight instrumentation in a virtual machine (VM). They can be computationally intensive or rather cheap, depending on whether substitutes are available for their dependencies (@pxref{Substitutes}). Some of them require a lot of storage space to hold VM images." msgstr "Тесты системы определены в модулях @code{(gnu tests @dots{})}. При работе они запускают операционную систему под легковесным инструментарием в виртуальной машине. Они могут выполнять тяжёлые вычисления или довольно простые в зависимости от наличия подстановок их зависимостей (@pxref{Substitutes}). Некоторые из них требуют много места для работы с образами виртуальной машины." #. type: Plain text -#: guix-git/doc/guix.texi:1053 +#: guix-git/doc/guix.texi:1065 msgid "Again in case of test failures, please send @email{bug-guix@@gnu.org} all the details." msgstr "Конечно, в случае неудачных тестов, пожалуйста, направьте детали на @email{bug-guix@@gnu.org}." #. type: cindex -#: guix-git/doc/guix.texi:1057 +#: guix-git/doc/guix.texi:1069 #, no-wrap msgid "daemon" msgstr "демон" #. type: Plain text -#: guix-git/doc/guix.texi:1065 +#: guix-git/doc/guix.texi:1077 msgid "Operations such as building a package or running the garbage collector are all performed by a specialized process, the @dfn{build daemon}, on behalf of clients. Only the daemon may access the store and its associated database. Thus, any operation that manipulates the store goes through the daemon. For instance, command-line tools such as @command{guix package} and @command{guix build} communicate with the daemon (@i{via} remote procedure calls) to instruct it what to do." msgstr "Такие операции, как сборка пакета или запуск сборщика мусора, выполняются запуском специальных процесса --- @dfn{демона сборки} --- по запросам клиентов. Только демон имеет доступ к складу и его базе данных. Так что операции управления складом выполняются с помощью демона. Например, инструменты командной строки, как @command{guix package} и @command{guix build}, обычно взаимодействуют с демоном @i{через} удалённый вызов процедур (RPC) и сообщают, что необходимо сделать." #. type: Plain text -#: guix-git/doc/guix.texi:1069 +#: guix-git/doc/guix.texi:1081 msgid "The following sections explain how to prepare the build daemon's environment. See also @ref{Substitutes}, for information on how to allow the daemon to download pre-built binaries." msgstr "Следующие разделы поясняют как настроить окружение демона сборки. Смотрите также @ref{Substitutes} для подробной инсорации о том, как разрешить демону скачивать собранные бинарники." #. type: cindex -#: guix-git/doc/guix.texi:1079 guix-git/doc/guix.texi:1542 +#: guix-git/doc/guix.texi:1091 guix-git/doc/guix.texi:1559 #, no-wrap msgid "build environment" msgstr "окружение сборки" #. type: Plain text -#: guix-git/doc/guix.texi:1087 +#: guix-git/doc/guix.texi:1099 msgid "In a standard multi-user setup, Guix and its daemon---the @command{guix-daemon} program---are installed by the system administrator; @file{/gnu/store} is owned by @code{root} and @command{guix-daemon} runs as @code{root}. Unprivileged users may use Guix tools to build packages or otherwise access the store, and the daemon will do it on their behalf, ensuring that the store is kept in a consistent state, and allowing built packages to be shared among users." msgstr "В случае стандартной многопользовательской установки Guix и его демон (программа @command{guix-daemon}) установливаются системным администратором; @file{/gnu/store} принадлежит @code{root}, и @command{guix-daemon} запущен от @code{root}. Непривилегированные пользователи могут пользоваться инструментами Guix, чтобы собирать пакеты или получить доступ к складу с какой-либо целью, и демон выполнит это по их запросу, убедившись, что склад находится в должном состоянии, и разрешив сборку пакетов и разделение их между пользователями." #. type: cindex -#: guix-git/doc/guix.texi:1088 +#: guix-git/doc/guix.texi:1100 #, no-wrap msgid "build users" msgstr "пользователи сборки" #. type: Plain text -#: guix-git/doc/guix.texi:1099 +#: guix-git/doc/guix.texi:1111 msgid "When @command{guix-daemon} runs as @code{root}, you may not want package build processes themselves to run as @code{root} too, for obvious security reasons. To avoid that, a special pool of @dfn{build users} should be created for use by build processes started by the daemon. These build users need not have a shell and a home directory: they will just be used when the daemon drops @code{root} privileges in build processes. Having several such users allows the daemon to launch distinct build processes under separate UIDs, which guarantees that they do not interfere with each other---an essential feature since builds are regarded as pure functions (@pxref{Introduction})." msgstr "Когда @command{guix-daemon} запущен от @code{root}, возможно, из соображений безопасности вы не примете того, что процессы сборки пакетов тоже выполняются от @code{root}. Чтобы избежать этого, необходимо создать специальных @dfn{пользователей для сборки}. Ими будет пользоваться процесс сборки, запускаемый демоном. Эти пользователи сборки не должны иметь оболочки и домашней директории --- они просто будут использоваться, когда демон сбрасывает привилегии @code{root} в процессе сборки. Наличие нескольких таких пользователей позволит демону запускать отдельные процессы сборки под отдельными UID, что гарантирует, что они не будут помехой друг другу --- важная особенность, учитывая, что сборка рассматривается как чистая функция (@pxref{Introduction})." #. type: Plain text -#: guix-git/doc/guix.texi:1102 +#: guix-git/doc/guix.texi:1114 msgid "On a GNU/Linux system, a build user pool may be created like this (using Bash syntax and the @code{shadow} commands):" msgstr "В системе GNU/Linux набор пользователей для сборки может быть создан так (используя синтаксис команды Bash @code{shadow}):" #. type: example -#: guix-git/doc/guix.texi:1114 +#: guix-git/doc/guix.texi:1126 #, no-wrap msgid "" "# groupadd --system guixbuild\n" @@ -6094,139 +6181,144 @@ msgstr "" " done\n" #. type: Plain text -#: guix-git/doc/guix.texi:1124 +#: guix-git/doc/guix.texi:1136 msgid "The number of build users determines how many build jobs may run in parallel, as specified by the @option{--max-jobs} option (@pxref{Invoking guix-daemon, @option{--max-jobs}}). To use @command{guix system vm} and related commands, you may need to add the build users to the @code{kvm} group so they can access @file{/dev/kvm}, using @code{-G guixbuild,kvm} instead of @code{-G guixbuild} (@pxref{Invoking guix system})." msgstr "Число пользователей для сборки определяет, сколько задач сборки может быть запущено параллельно. Это задаётся опцией @option{--max-jobs} (@pxref{Invoking guix-daemon, @option{--max-jobs}}). Чтобы использовать @command{guix system vm} и подобные, вам потребуется добавить пользователей для сборки в группу @code{kvm}, так чтобы они имели доступ к @file{/dev/kvm}, используя @code{-G guixbuild,kvm} вместо @code{-G guixbuild} (@pxref{Invoking guix system})." #. type: Plain text -#: guix-git/doc/guix.texi:1133 +#: guix-git/doc/guix.texi:1145 msgid "The @code{guix-daemon} program may then be run as @code{root} with the following command@footnote{If your machine uses the systemd init system, dropping the @file{@var{prefix}/lib/systemd/system/guix-daemon.service} file in @file{/etc/systemd/system} will ensure that @command{guix-daemon} is automatically started. Similarly, if your machine uses the Upstart init system, drop the @file{@var{prefix}/lib/upstart/system/guix-daemon.conf} file in @file{/etc/init}.}:" msgstr "Программа @code{guix-daemon} тогда может запускаться от @code{root} следующим образом@footnote{Если ваша машина использует систему инициализации systemd, сбрасывание файла @file{@var{prefix}/lib/systemd/system/guix-daemon.service} в @file{/etc/systemd/system} должно гарантировать, что @command{guix-daemon} запущен автоматически. Также, если ваша машина использует систему инициализации Upstart, нужно сбрасить файл @file{@var{prefix}/lib/upstart/system/guix-daemon.conf} в @file{/etc/init}.}:" #. type: example -#: guix-git/doc/guix.texi:1136 guix-git/doc/guix.texi:1535 +#: guix-git/doc/guix.texi:1148 guix-git/doc/guix.texi:1552 #, no-wrap msgid "# guix-daemon --build-users-group=guixbuild\n" msgstr "# guix-daemon --build-users-group=guixbuild\n" #. type: cindex -#: guix-git/doc/guix.texi:1138 guix-git/doc/guix.texi:1540 +#: guix-git/doc/guix.texi:1150 guix-git/doc/guix.texi:1557 #, no-wrap msgid "chroot" msgstr "chroot" #. type: Plain text -#: guix-git/doc/guix.texi:1143 +#: guix-git/doc/guix.texi:1155 msgid "This way, the daemon starts build processes in a chroot, under one of the @code{guixbuilder} users. On GNU/Linux, by default, the chroot environment contains nothing but:" msgstr "Так демон стартует процессы сборки в chroot под одним из пользователей группы @code{guixbuilder}. В GNU/Linux по умолчанию окружение chroot содержит только следующее:" #. type: itemize -#: guix-git/doc/guix.texi:1151 +#: guix-git/doc/guix.texi:1163 msgid "a minimal @code{/dev} directory, created mostly independently from the host @code{/dev}@footnote{``Mostly'', because while the set of files that appear in the chroot's @code{/dev} is fixed, most of these files can only be created if the host has them.};" msgstr "минимальный состав директории @code{/dev}, созданной максимально независимо от исходной @code{/dev}@footnote{\"Максимально\", потому что файлы, доступные в chroot под @code{/dev}, могут быть созданы только, если машина их имеет};" #. type: itemize -#: guix-git/doc/guix.texi:1155 +#: guix-git/doc/guix.texi:1167 msgid "the @code{/proc} directory; it only shows the processes of the container since a separate PID name space is used;" msgstr "директория @code{/proc}; она показывает только процессы контейнера, так как используется отдельное пространство имён процессов PID;" #. type: itemize -#: guix-git/doc/guix.texi:1159 +#: guix-git/doc/guix.texi:1171 msgid "@file{/etc/passwd} with an entry for the current user and an entry for user @file{nobody};" msgstr "@file{/etc/passwd} с записью о текущем пользователе и пользователе @file{nobody};" #. type: itemize -#: guix-git/doc/guix.texi:1162 +#: guix-git/doc/guix.texi:1174 msgid "@file{/etc/group} with an entry for the user's group;" msgstr "@file{/etc/group} с записью о группе пользователя;" #. type: itemize -#: guix-git/doc/guix.texi:1166 +#: guix-git/doc/guix.texi:1178 msgid "@file{/etc/hosts} with an entry that maps @code{localhost} to @code{127.0.0.1};" msgstr "@file{/etc/hosts} с записью, которая адресует @code{localhost} на @code{127.0.0.1};" #. type: itemize -#: guix-git/doc/guix.texi:1169 +#: guix-git/doc/guix.texi:1181 msgid "a writable @file{/tmp} directory." msgstr "директория @file{/tmp}, доступная для записи." #. type: Plain text -#: guix-git/doc/guix.texi:1178 +#: guix-git/doc/guix.texi:1187 +msgid "The chroot does not contain a @file{/home} directory, and the @env{HOME} environment variable is set to the non-existent @file{/homeless-shelter}. This helps to highlight inappropriate uses of @env{HOME} in the build scripts of packages." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:1195 msgid "You can influence the directory where the daemon stores build trees @i{via} the @env{TMPDIR} environment variable. However, the build tree within the chroot is always called @file{/tmp/guix-build-@var{name}.drv-0}, where @var{name} is the derivation name---e.g., @code{coreutils-8.24}. This way, the value of @env{TMPDIR} does not leak inside build environments, which avoids discrepancies in cases where build processes capture the name of their build tree." msgstr "Можно указать директорию, в которую демон сохраняет деревья сборки @i{через} переменную окружения @code{TMPDIR}. Однако дерево сборки внутри chroot всегда называется @file{/tmp/guix-build-@var{name}.drv-0}, где @var{name} - это имя деривации, то есть, например, @code{coreutils-8.24}. Так значение @code{TMPDIR} не проникает внутрь окружения сборки, что предотвращает расхождения и случаях, когда процессы сборки имеют иные имена их деревьев сборки." #. type: vindex -#: guix-git/doc/guix.texi:1179 guix-git/doc/guix.texi:4007 +#: guix-git/doc/guix.texi:1196 guix-git/doc/guix.texi:4025 #, no-wrap msgid "http_proxy" msgstr "http_proxy" #. type: vindex -#: guix-git/doc/guix.texi:1180 guix-git/doc/guix.texi:4008 +#: guix-git/doc/guix.texi:1197 guix-git/doc/guix.texi:4026 #, no-wrap msgid "https_proxy" msgstr "https_proxy" #. type: Plain text -#: guix-git/doc/guix.texi:1185 +#: guix-git/doc/guix.texi:1202 msgid "The daemon also honors the @env{http_proxy} and @env{https_proxy} environment variables for HTTP and HTTPS downloads it performs, be it for fixed-output derivations (@pxref{Derivations}) or for substitutes (@pxref{Substitutes})." msgstr "Демон также уважаем переменную окружения @code{http_proxy}, когда выполняет скачивание по HTTP как для дериваций с фиксированным результатом (@pxref{Derivations}), так и для подстановок (@pxref{Substitutes})." #. type: Plain text -#: guix-git/doc/guix.texi:1193 +#: guix-git/doc/guix.texi:1210 msgid "If you are installing Guix as an unprivileged user, it is still possible to run @command{guix-daemon} provided you pass @option{--disable-chroot}. However, build processes will not be isolated from one another, and not from the rest of the system. Thus, build processes may interfere with each other, and may access programs, libraries, and other files available on the system---making it much harder to view them as @emph{pure} functions." msgstr "Если вы устанавливаете Guix как непривилегированный пользователь, всё ещё возможно запустить @command{guix-daemon} с указанием @code{--disable-chroot}. Однако процессы сборки не будут изолированы один от другого, а также от остальной системы. Так процессы сборки смогут внести помехи в работу друг друга, смогут получить доступ к программам, библиотекам и другим файлам, доступным в системе, что конечно, делает затруднительным рассмотрение сборки как @emph{чистой} функции." #. type: subsection -#: guix-git/doc/guix.texi:1196 +#: guix-git/doc/guix.texi:1213 #, no-wrap msgid "Using the Offload Facility" msgstr "Использование функционала разгрузки" #. type: cindex -#: guix-git/doc/guix.texi:1198 guix-git/doc/guix.texi:1601 +#: guix-git/doc/guix.texi:1215 guix-git/doc/guix.texi:1618 #, no-wrap msgid "offloading" msgstr "разгрузка" #. type: cindex -#: guix-git/doc/guix.texi:1199 +#: guix-git/doc/guix.texi:1216 #, no-wrap msgid "build hook" msgstr "хук сборки" #. type: Plain text -#: guix-git/doc/guix.texi:1218 +#: guix-git/doc/guix.texi:1235 msgid "When desired, the build daemon can @dfn{offload} derivation builds to other machines running Guix, using the @code{offload} @dfn{build hook}@footnote{This feature is available only when @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH} is present.}. When that feature is enabled, a list of user-specified build machines is read from @file{/etc/guix/machines.scm}; every time a build is requested, for instance via @code{guix build}, the daemon attempts to offload it to one of the machines that satisfy the constraints of the derivation, in particular its system types---e.g., @code{x86_64-linux}. A single machine can have multiple system types, either because its architecture natively supports it, via emulation (@pxref{transparent-emulation-qemu, Transparent Emulation with QEMU}), or both. Missing prerequisites for the build are copied over SSH to the target machine, which then proceeds with the build; upon success the output(s) of the build are copied back to the initial machine. The offload facility comes with a basic scheduler that attempts to select the best machine. The best machine is chosen among the available machines based on criteria such as:" msgstr "При желании демон сборки может @dfn{offload} производные сборки на других машинах, на которых запущен Guix, используя @code{offload} @dfn{build hook}@footnote{Эта функция доступна только когда установлен @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH.}}. Когда данная функция включена, список указанных пользователем машин для сборки считывается из @file{/etc/guix/machines.scm}; каждый раз, когда запрашивается сборка, например через @code{guix build}, демон пытается выгрузить ее на одну из машин, удовлетворяющих ограничениям производной сборки, в частности, ее системным типам---например, @code{x86_64-linux}. На одной машине можеь быть несколько типов систем, либо потому, что архитектура изначально поддерживает ее, либо через эмуляцию (@pxref{transparent-emulation-qemu, Transparent Emulation with QEMU}). Отсутствующие необходимые условия для сборки копируются по SSH на целевой компьютер, который затем продолжает сборку; в случает успеха выходные данные копируются на исходную машину. Средство разгрузки поставляется с базовым планировщиком, который пытается выбрать лучшую машину. Лучшая машина выбирается среди доступных машин на основании такиз критериев как:" #. type: enumerate -#: guix-git/doc/guix.texi:1224 +#: guix-git/doc/guix.texi:1241 msgid "The availability of a build slot. A build machine can have as many build slots (connections) as the value of the @code{parallel-builds} field of its @code{build-machine} object." msgstr "Наличие слота для сборки. Машина для сборки может иметь столько слотов для сборки (соединений), сколько указано в значении @code{parallel-builds} определения объекта @code{build-machine}." #. type: enumerate -#: guix-git/doc/guix.texi:1228 +#: guix-git/doc/guix.texi:1245 msgid "Its relative speed, as defined via the @code{speed} field of its @code{build-machine} object." msgstr "Ее относительная скорость, указанная через значение @code{speed} определения объекта @code{build-machine}." #. type: enumerate -#: guix-git/doc/guix.texi:1233 +#: guix-git/doc/guix.texi:1250 msgid "Its load. The normalized machine load must be lower than a threshold value, configurable via the @code{overload-threshold} field of its @code{build-machine} object." msgstr "Ее нагрузка. Нормализованная нагрузка на машину должна быть ниже порогового значения, которое можно настроить с помощью поля @code{overload-threshold} объекта @code{build-machine}." #. type: enumerate -#: guix-git/doc/guix.texi:1236 +#: guix-git/doc/guix.texi:1253 msgid "Disk space availability. More than a 100 MiB must be available." msgstr "Доступность дискового пространства. Должно быть доступно более 100 МБ." #. type: Plain text -#: guix-git/doc/guix.texi:1239 +#: guix-git/doc/guix.texi:1256 msgid "The @file{/etc/guix/machines.scm} file typically looks like this:" msgstr "Файл @file{/etc/guix/machines.scm} обычно выглядит так:" #. type: lisp -#: guix-git/doc/guix.texi:1247 +#: guix-git/doc/guix.texi:1264 #, no-wrap msgid "" "(list (build-machine\n" @@ -6246,7 +6338,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:1253 +#: guix-git/doc/guix.texi:1270 #, fuzzy, no-wrap #| msgid "" #| "(list (build-machine\n" @@ -6273,7 +6365,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:1257 +#: guix-git/doc/guix.texi:1274 #, no-wrap msgid "" " ;; Remember 'guix offload' is spawned by\n" @@ -6282,98 +6374,98 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1263 +#: guix-git/doc/guix.texi:1280 msgid "In the example above we specify a list of two build machines, one for the @code{x86_64} and @code{i686} architectures and one for the @code{aarch64} architecture." msgstr "В примере выше мы обозначили список, состоящий из двух машин: одна --- для архитектуры @code{x86_64}, а другая --- для архитектуры @code{mips64el}." #. type: Plain text -#: guix-git/doc/guix.texi:1272 +#: guix-git/doc/guix.texi:1289 msgid "In fact, this file is---not surprisingly!---a Scheme file that is evaluated when the @code{offload} hook is started. Its return value must be a list of @code{build-machine} objects. While this example shows a fixed list of build machines, one could imagine, say, using DNS-SD to return a list of potential build machines discovered in the local network (@pxref{Introduction, Guile-Avahi,, guile-avahi, Using Avahi in Guile Scheme Programs}). The @code{build-machine} data type is detailed below." msgstr "По факту, этот файл, что не удивительно, является файлом Scheme, и он имеет значение, когда запускается @code{хук разгрузки}. Он возвращает объекты класса @code{build-machine}. Приведённый пример показывает фиксированный список машин для сборки, но можно представить, скажем, используя DNS-SD, он может возвращать список потенциальных машин, обнаруженных в локальной сети (@pxref{Introduction, Guile-Avahi,, guile-avahi, Using Avahi in Guile Scheme Programs}). Тип данных @code{build-machine} описан ниже." #. type: deftp -#: guix-git/doc/guix.texi:1273 +#: guix-git/doc/guix.texi:1290 #, no-wrap msgid "{Data Type} build-machine" msgstr "{Тип данных} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:1276 +#: guix-git/doc/guix.texi:1293 msgid "This data type represents build machines to which the daemon may offload builds. The important fields are:" msgstr "Этот тип данных представляет машины для сборки, на которые демон может разгружать сборки. Важные поля:" #. type: item -#: guix-git/doc/guix.texi:1279 guix-git/doc/guix.texi:7113 -#: guix-git/doc/guix.texi:15446 guix-git/doc/guix.texi:15545 -#: guix-git/doc/guix.texi:15786 guix-git/doc/guix.texi:17314 -#: guix-git/doc/guix.texi:17935 guix-git/doc/guix.texi:18209 -#: guix-git/doc/guix.texi:21269 guix-git/doc/guix.texi:24179 -#: guix-git/doc/guix.texi:25568 guix-git/doc/guix.texi:26180 -#: guix-git/doc/guix.texi:26533 guix-git/doc/guix.texi:26574 -#: guix-git/doc/guix.texi:28735 guix-git/doc/guix.texi:31072 -#: guix-git/doc/guix.texi:31092 guix-git/doc/guix.texi:33766 -#: guix-git/doc/guix.texi:33783 guix-git/doc/guix.texi:34320 -#: guix-git/doc/guix.texi:36095 guix-git/doc/guix.texi:36422 +#: guix-git/doc/guix.texi:1296 guix-git/doc/guix.texi:7157 +#: guix-git/doc/guix.texi:15803 guix-git/doc/guix.texi:15902 +#: guix-git/doc/guix.texi:16143 guix-git/doc/guix.texi:17676 +#: guix-git/doc/guix.texi:18297 guix-git/doc/guix.texi:18571 +#: guix-git/doc/guix.texi:21631 guix-git/doc/guix.texi:24541 +#: guix-git/doc/guix.texi:25905 guix-git/doc/guix.texi:26517 +#: guix-git/doc/guix.texi:26870 guix-git/doc/guix.texi:26911 +#: guix-git/doc/guix.texi:29072 guix-git/doc/guix.texi:31437 +#: guix-git/doc/guix.texi:31457 guix-git/doc/guix.texi:34203 +#: guix-git/doc/guix.texi:34220 guix-git/doc/guix.texi:34759 +#: guix-git/doc/guix.texi:36585 guix-git/doc/guix.texi:36912 #, no-wrap msgid "name" msgstr "name" #. type: table -#: guix-git/doc/guix.texi:1281 +#: guix-git/doc/guix.texi:1298 msgid "The host name of the remote machine." msgstr "Имя хоста удалённой машины." #. type: item -#: guix-git/doc/guix.texi:1282 +#: guix-git/doc/guix.texi:1299 #, no-wrap msgid "systems" msgstr "systems" #. type: table -#: guix-git/doc/guix.texi:1285 +#: guix-git/doc/guix.texi:1302 msgid "The system types the remote machine supports---e.g., @code{(list \"x86_64-linux\" \"i686-linux\")}." msgstr "Тип системы удалённой машины, то есть @code{x86_64-linux}." #. type: code{#1} -#: guix-git/doc/guix.texi:1286 guix-git/doc/guix.texi:17945 +#: guix-git/doc/guix.texi:1303 guix-git/doc/guix.texi:18307 #, no-wrap msgid "user" msgstr "user" #. type: table -#: guix-git/doc/guix.texi:1290 +#: guix-git/doc/guix.texi:1307 msgid "The user account to use when connecting to the remote machine over SSH. Note that the SSH key pair must @emph{not} be passphrase-protected, to allow non-interactive logins." msgstr "Аккаунт пользователя, используемый для соединения с удалённой машиной через SSH. Отметим, что ключ-пара SSH @emph{не} должна быть защищена парольной фразой, чтобы разрешить не интерактивные авторизации." #. type: item -#: guix-git/doc/guix.texi:1291 +#: guix-git/doc/guix.texi:1308 #, no-wrap msgid "host-key" msgstr "host-key" #. type: table -#: guix-git/doc/guix.texi:1295 +#: guix-git/doc/guix.texi:1312 msgid "This must be the machine's SSH @dfn{public host key} in OpenSSH format. This is used to authenticate the machine when we connect to it. It is a long string that looks like this:" msgstr "Это @dfn{публичный ключ хоста} в формает OpenSSH. Он используется при аутентификации машины, когда мы подсоединяемс к ней. Это длинная строка, которая выглядит примерно так:" #. type: example -#: guix-git/doc/guix.texi:1298 +#: guix-git/doc/guix.texi:1315 #, no-wrap msgid "ssh-ed25519 AAAAC3NzaC@dots{}mde+UhL hint@@example.org\n" msgstr "ssh-ed25519 AAAAC3NzaC@dots{}mde+UhL hint@@example.org\n" #. type: table -#: guix-git/doc/guix.texi:1303 +#: guix-git/doc/guix.texi:1320 msgid "If the machine is running the OpenSSH daemon, @command{sshd}, the host key can be found in a file such as @file{/etc/ssh/ssh_host_ed25519_key.pub}." msgstr "Если на машине запущен демон OpenSSH @command{sshd}, ключ хоста может быть найден в файле под директорией /etc/ssh, например, @file{/etc/ssh/ssh_host_ed25519_key.pub}." #. type: table -#: guix-git/doc/guix.texi:1308 +#: guix-git/doc/guix.texi:1325 msgid "If the machine is running the SSH daemon of GNU@tie{}lsh, @command{lshd}, the host key is in @file{/etc/lsh/host-key.pub} or a similar file. It can be converted to the OpenSSH format using @command{lsh-export-key} (@pxref{Converting keys,,, lsh, LSH Manual}):" msgstr "Если на машине запущен демон SSH GNU@tie{}lsh, @command{lshd}, тогда ключ хоста расположен в @file{/etc/lsh/host-key.pub} или подобном файле. Его можно конвертировать в формат OpenSSH, используя @command{lsh-export-key} (@pxref{Converting keys,,, lsh, LSH Manual}):" #. type: example -#: guix-git/doc/guix.texi:1312 +#: guix-git/doc/guix.texi:1329 #, no-wrap msgid "" "$ lsh-export-key --openssh < /etc/lsh/host-key.pub\n" @@ -6383,674 +6475,676 @@ msgstr "" "ssh-rsa AAAAB3NzaC1yc2EAAAAEOp8FoQAAAQEAs1eB46LV@dots{}\n" #. type: deftp -#: guix-git/doc/guix.texi:1317 +#: guix-git/doc/guix.texi:1334 msgid "A number of optional fields may be specified:" msgstr "Список необязательных полей:" #. type: item -#: guix-git/doc/guix.texi:1320 guix-git/doc/guix.texi:35581 +#: guix-git/doc/guix.texi:1337 guix-git/doc/guix.texi:36061 #, no-wrap msgid "@code{port} (default: @code{22})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:1322 +#: guix-git/doc/guix.texi:1339 msgid "Port number of SSH server on the machine." msgstr "Номер порта сервера SSH на машине." #. type: item -#: guix-git/doc/guix.texi:1323 +#: guix-git/doc/guix.texi:1340 #, no-wrap msgid "@code{private-key} (default: @file{~root/.ssh/id_rsa})" msgstr "@code{private-key} (default: @file{~root/.ssh/id_rsa})" #. type: table -#: guix-git/doc/guix.texi:1326 +#: guix-git/doc/guix.texi:1343 msgid "The SSH private key file to use when connecting to the machine, in OpenSSH format. This key must not be protected with a passphrase." msgstr "Файл приватного ключа в формате OpenSSH, используемого в соединении с машиной. Этот ключ не должен быть защищён парольной фразой." #. type: table -#: guix-git/doc/guix.texi:1329 +#: guix-git/doc/guix.texi:1346 msgid "Note that the default value is the private key @emph{of the root account}. Make sure it exists if you use the default." msgstr "Отметим, что значение по умолчанию --- приватный ключ @emph{аккаунта root}. Убедитесь, что он существует, если вы используете настройки по умолчанию." #. type: item -#: guix-git/doc/guix.texi:1330 +#: guix-git/doc/guix.texi:1347 #, no-wrap msgid "@code{compression} (default: @code{\"zlib@@openssh.com,zlib\"})" msgstr "@code{compression} (default: @code{\"zlib@@openssh.com,zlib\"})" #. type: itemx -#: guix-git/doc/guix.texi:1331 +#: guix-git/doc/guix.texi:1348 #, no-wrap msgid "@code{compression-level} (default: @code{3})" msgstr "@code{compression-level} (default: @code{3})" #. type: table -#: guix-git/doc/guix.texi:1333 +#: guix-git/doc/guix.texi:1350 msgid "The SSH-level compression methods and compression level requested." msgstr "Методы компрессии уровня SSH и уровень компрессии." #. type: table -#: guix-git/doc/guix.texi:1336 +#: guix-git/doc/guix.texi:1353 msgid "Note that offloading relies on SSH compression to reduce bandwidth usage when transferring files to and from build machines." msgstr "Отметим, что разгрузка зависит от компрессии SSH, что уменьшает использование траффика при передаче файлов на и с машин для сборки." #. type: item -#: guix-git/doc/guix.texi:1337 +#: guix-git/doc/guix.texi:1354 #, no-wrap msgid "@code{daemon-socket} (default: @code{\"/var/guix/daemon-socket/socket\"})" msgstr "@code{daemon-socket} (default: @code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:1340 +#: guix-git/doc/guix.texi:1357 msgid "File name of the Unix-domain socket @command{guix-daemon} is listening to on that machine." msgstr "Имя файла сокета Unix-домена, который слушает @command{guix-daemon} на удалённой машине." #. type: item -#: guix-git/doc/guix.texi:1341 +#: guix-git/doc/guix.texi:1358 #, no-wrap msgid "@code{overload-threshold} (default: @code{0.6})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:1347 +#: guix-git/doc/guix.texi:1364 msgid "The load threshold above which a potential offload machine is disregarded by the offload scheduler. The value roughly translates to the total processor usage of the build machine, ranging from 0.0 (0%) to 1.0 (100%). It can also be disabled by setting @code{overload-threshold} to @code{#f}." msgstr "Порог нагрузки, выше которого потенциальная offload машина не учитывается offload планировщиком. Это значение примерно соответствует общему использованию процессора машиной сборки в диапазоне от 0,0 (0%) до 1,0 (100%). Это также можно отключить, установив @code{overload-threshold} в @code{#f}." #. type: item -#: guix-git/doc/guix.texi:1348 +#: guix-git/doc/guix.texi:1365 #, no-wrap msgid "@code{parallel-builds} (default: @code{1})" msgstr "@code{parallel-builds} (default: @code{1})" #. type: table -#: guix-git/doc/guix.texi:1350 +#: guix-git/doc/guix.texi:1367 msgid "The number of builds that may run in parallel on the machine." msgstr "Число сборок, которые могут быть запущены на машине." #. type: item -#: guix-git/doc/guix.texi:1351 +#: guix-git/doc/guix.texi:1368 #, no-wrap msgid "@code{speed} (default: @code{1.0})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:1354 +#: guix-git/doc/guix.texi:1371 msgid "A ``relative speed factor''. The offload scheduler will tend to prefer machines with a higher speed factor." msgstr "Показатель скорости. Планировщик разгрузки предпримет попытку выбрать машину с наибольшим показателем скорости." #. type: item -#: guix-git/doc/guix.texi:1355 +#: guix-git/doc/guix.texi:1372 #, no-wrap msgid "@code{features} (default: @code{'()})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:1360 +#: guix-git/doc/guix.texi:1377 msgid "A list of strings denoting specific features supported by the machine. An example is @code{\"kvm\"} for machines that have the KVM Linux modules and corresponding hardware support. Derivations can request features by name, and they will be scheduled on matching build machines." msgstr "Набор строк, описывающий специфические функции, которые поддерживаются на машине. Например, @code{\"kvm\"} для машин, которые имеют модули Linux KVM и соответствующую поддерку аппаратного обеспечения. Деривации могут запрашивать функции по имени, и тогда они будут запранированы на соответствующих машинах для сборки." #. type: Plain text -#: guix-git/doc/guix.texi:1366 +#: guix-git/doc/guix.texi:1383 msgid "The @command{guix} command must be in the search path on the build machines. You can check whether this is the case by running:" msgstr "Команда @command{guix} должна быть в путях для поиска на машинах лоя сборки. Можно проверить это, выполнив:" #. type: example -#: guix-git/doc/guix.texi:1369 +#: guix-git/doc/guix.texi:1386 #, no-wrap msgid "ssh build-machine guix repl --version\n" msgstr "ssh build-machine guix repl --version\n" #. type: Plain text -#: guix-git/doc/guix.texi:1376 +#: guix-git/doc/guix.texi:1393 msgid "There is one last thing to do once @file{machines.scm} is in place. As explained above, when offloading, files are transferred back and forth between the machine stores. For this to work, you first need to generate a key pair on each machine to allow the daemon to export signed archives of files from the store (@pxref{Invoking guix archive}):" msgstr "Есть ещё одна вещь, которую нужно выполнить после размещения @file{machines.scm}. Выше описано, что при разгрузке файлы передаются вперёд и назад между складами на машинах. Для этого необходимо сгенерировать ключ-пару на кадой машине, чтобы позволить демону экспортировать подписанные архивы файлов из склада (@pxref{Invoking guix archive}):" #. type: example -#: guix-git/doc/guix.texi:1379 guix-git/doc/guix.texi:35509 +#: guix-git/doc/guix.texi:1396 guix-git/doc/guix.texi:35965 #, no-wrap msgid "# guix archive --generate-key\n" msgstr "# guix archive --generate-key\n" #. type: Plain text -#: guix-git/doc/guix.texi:1384 +#: guix-git/doc/guix.texi:1401 msgid "Each build machine must authorize the key of the master machine so that it accepts store items it receives from the master:" msgstr "Каждая машина для сорки должна авторизовать ключ машины-инициатора, чтобы принимать элементы из склада, которые присылает инициатор:" #. type: example -#: guix-git/doc/guix.texi:1387 +#: guix-git/doc/guix.texi:1404 #, no-wrap msgid "# guix archive --authorize < master-public-key.txt\n" msgstr "# guix archive --authorize < master-public-key.txt\n" #. type: Plain text -#: guix-git/doc/guix.texi:1391 +#: guix-git/doc/guix.texi:1408 msgid "Likewise, the master machine must authorize the key of each build machine." msgstr "Точно так же машина-инициатор должна авторизовать ключ каждой машины для сборки." #. type: Plain text -#: guix-git/doc/guix.texi:1397 +#: guix-git/doc/guix.texi:1414 msgid "All the fuss with keys is here to express pairwise mutual trust relations between the master and the build machines. Concretely, when the master receives files from a build machine (and @i{vice versa}), its build daemon can make sure they are genuine, have not been tampered with, and that they are signed by an authorized key." msgstr "Всё движение с ключами, описанное здесь, создаёт надёжную двустороннюю свзь между инициатором и машинами для сборки. А именно, когда машина-инициатор принимает файлы из машины для сборки (или @i{наборот}), её демон может удостоверить их подлинность и невмешательство других, а также то, что они подписаны авторизованным ключом." #. type: cindex -#: guix-git/doc/guix.texi:1398 +#: guix-git/doc/guix.texi:1415 #, no-wrap msgid "offload test" msgstr "тест разгрузки" #. type: Plain text -#: guix-git/doc/guix.texi:1401 +#: guix-git/doc/guix.texi:1418 msgid "To test whether your setup is operational, run this command on the master node:" msgstr "Чтобы проверить работоспособность настроек, запустите следующую команду на инициирующем узле:" #. type: example -#: guix-git/doc/guix.texi:1404 +#: guix-git/doc/guix.texi:1421 #, no-wrap msgid "# guix offload test\n" msgstr "# guix offload test\n" #. type: Plain text -#: guix-git/doc/guix.texi:1410 +#: guix-git/doc/guix.texi:1427 msgid "This will attempt to connect to each of the build machines specified in @file{/etc/guix/machines.scm}, make sure Guix is available on each machine, attempt to export to the machine and import from it, and report any error in the process." msgstr "Это выполнит попытку соединиться с каждой из машин для сборки, обозначенных в @file{/etc/guix/machines.scm}, проверит наличие модулей Guile и Guix на каждой машине, а также сделает попытку экспортировать и импортировать, а затем выведет отчёт об этом процессе." #. type: Plain text -#: guix-git/doc/guix.texi:1413 +#: guix-git/doc/guix.texi:1430 msgid "If you want to test a different machine file, just specify it on the command line:" msgstr "Если нужно тестировать другой файл с описанием машин, просто приведите его в командной строке:" #. type: example -#: guix-git/doc/guix.texi:1416 +#: guix-git/doc/guix.texi:1433 #, no-wrap msgid "# guix offload test machines-qualif.scm\n" msgstr "# guix offload test machines-qualif.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:1420 +#: guix-git/doc/guix.texi:1437 msgid "Last, you can test the subset of the machines whose name matches a regular expression like this:" msgstr "И последнее, можно тестировать набор машин, чьи имена соответствуют регулярному выражению, например:" #. type: example -#: guix-git/doc/guix.texi:1423 +#: guix-git/doc/guix.texi:1440 #, no-wrap msgid "# guix offload test machines.scm '\\.gnu\\.org$'\n" msgstr "# guix offload test machines.scm '\\.gnu\\.org$'\n" #. type: cindex -#: guix-git/doc/guix.texi:1425 +#: guix-git/doc/guix.texi:1442 #, no-wrap msgid "offload status" msgstr "статус разгрузки" #. type: Plain text -#: guix-git/doc/guix.texi:1428 +#: guix-git/doc/guix.texi:1445 msgid "To display the current load of all build hosts, run this command on the main node:" msgstr "Чтобы отобразить текущую загрузку всех машин для сборки, запустите команду на инициирущем узле:" #. type: example -#: guix-git/doc/guix.texi:1431 +#: guix-git/doc/guix.texi:1448 #, no-wrap msgid "# guix offload status\n" msgstr "# guix offload status\n" #. type: cindex -#: guix-git/doc/guix.texi:1437 +#: guix-git/doc/guix.texi:1454 #, no-wrap msgid "SELinux, daemon policy" msgstr "SELinux, политика демона" #. type: cindex -#: guix-git/doc/guix.texi:1438 +#: guix-git/doc/guix.texi:1455 #, no-wrap msgid "mandatory access control, SELinux" msgstr "мандатный контроль доступа, SELinux" #. type: cindex -#: guix-git/doc/guix.texi:1439 +#: guix-git/doc/guix.texi:1456 #, no-wrap msgid "security, guix-daemon" msgstr "безопасность, guix-daemon" #. type: Plain text -#: guix-git/doc/guix.texi:1445 +#: guix-git/doc/guix.texi:1462 msgid "Guix includes an SELinux policy file at @file{etc/guix-daemon.cil} that can be installed on a system where SELinux is enabled, in order to label Guix files and to specify the expected behavior of the daemon. Since Guix System does not provide an SELinux base policy, the daemon policy cannot be used on Guix System." msgstr "Guix включает файл политик SELinnux @file{etc/guix-daemon.cil}, который может устанавливаться в систему, в которой включен SELinux, тогда файлы Guix будут помечены и настроены для соответствующего поведения демона. Так как система Guix не предоставляет политику SELinux, политика демона не может использоваться в системе Guix." #. type: subsubsection -#: guix-git/doc/guix.texi:1446 +#: guix-git/doc/guix.texi:1463 #, no-wrap msgid "Installing the SELinux policy" msgstr "Установка политики SELinux" #. type: cindex -#: guix-git/doc/guix.texi:1447 +#: guix-git/doc/guix.texi:1464 #, no-wrap msgid "SELinux, policy installation" msgstr "SELinux, установка политики" #. type: Plain text -#: guix-git/doc/guix.texi:1449 +#: guix-git/doc/guix.texi:1466 msgid "To install the policy run this command as root:" msgstr "Чтобы установить политику, запустите следующую команду от root:" #. type: example -#: guix-git/doc/guix.texi:1452 +#: guix-git/doc/guix.texi:1469 #, no-wrap msgid "semodule -i etc/guix-daemon.cil\n" msgstr "semodule -i etc/guix-daemon.cil\n" #. type: Plain text -#: guix-git/doc/guix.texi:1456 +#: guix-git/doc/guix.texi:1473 msgid "Then relabel the file system with @code{restorecon} or by a different mechanism provided by your system." msgstr "Затем измените метку файловой системы с @code{restorecon} или другим механизмом, поставляемым вашей системой." #. type: Plain text -#: guix-git/doc/guix.texi:1461 +#: guix-git/doc/guix.texi:1478 msgid "Once the policy is installed, the file system has been relabeled, and the daemon has been restarted, it should be running in the @code{guix_daemon_t} context. You can confirm this with the following command:" msgstr "Когда политика установлена, изменена метка файловой системы и демон перезапущен, она должна работать в контексте @code{guix_daemon_t}. Можно проверить это следующей командой:" #. type: example -#: guix-git/doc/guix.texi:1464 +#: guix-git/doc/guix.texi:1481 #, no-wrap msgid "ps -Zax | grep guix-daemon\n" msgstr "ps -Zax | grep guix-daemon\n" #. type: Plain text -#: guix-git/doc/guix.texi:1469 +#: guix-git/doc/guix.texi:1486 msgid "Monitor the SELinux log files as you run a command like @code{guix build hello} to convince yourself that SELinux permits all necessary operations." msgstr "Наблюдайте файлы логов SELinux во время работы команды @code{guix build hello}, чтобы удостовериться, что SELinux позволяет выполнение необходимых операций." #. type: cindex -#: guix-git/doc/guix.texi:1471 +#: guix-git/doc/guix.texi:1488 #, no-wrap msgid "SELinux, limitations" msgstr "SELinux, ограничения" #. type: Plain text -#: guix-git/doc/guix.texi:1476 +#: guix-git/doc/guix.texi:1493 msgid "This policy is not perfect. Here is a list of limitations or quirks that should be considered when deploying the provided SELinux policy for the Guix daemon." msgstr "Эта политика не совершенна. Тут есть ряд ограничений или причуд, который нужно учитывать при разворачивании политики SELinux для демона Guix." #. type: enumerate -#: guix-git/doc/guix.texi:1483 +#: guix-git/doc/guix.texi:1500 msgid "@code{guix_daemon_socket_t} isn’t actually used. None of the socket operations involve contexts that have anything to do with @code{guix_daemon_socket_t}. It doesn’t hurt to have this unused label, but it would be preferable to define socket rules for only this label." msgstr "@code{guix_daemon_socket_t} на самом деле не используется. Никакие операции с сокетом не выполняются. Ничего плохого в том, чтобы иметь эту неиспользуемую метку, но желательно определить правила сокета для этой метки." #. type: enumerate -#: guix-git/doc/guix.texi:1494 +#: guix-git/doc/guix.texi:1511 msgid "@code{guix gc} cannot access arbitrary links to profiles. By design, the file label of the destination of a symlink is independent of the file label of the link itself. Although all profiles under $localstatedir are labelled, the links to these profiles inherit the label of the directory they are in. For links in the user’s home directory this will be @code{user_home_t}. But for links from the root user’s home directory, or @file{/tmp}, or the HTTP server’s working directory, etc, this won’t work. @code{guix gc} would be prevented from reading and following these links." msgstr "@code{guix gc} не может получить доступ к обычным ссылкам профилей. По задумке метка файла назначения символической ссылки не зависит от метки файла самой ссылки. Хотя все профили под $localstatedir помечены, ссылки на эти профили не наследуют метку директории, в которой они находятся. Для ссылок на домашние директории пользователей это будет @code{user_home_t}. Но для ссылок из домашней директории root, а также @file{/tmp} или рабочей директории HTTP-сервера и т.п., это не работает. @code{guix gc} не будет допускаться к чтению и следованию по этим ссылкам." #. type: enumerate -#: guix-git/doc/guix.texi:1499 +#: guix-git/doc/guix.texi:1516 msgid "The daemon’s feature to listen for TCP connections might no longer work. This might require extra rules, because SELinux treats network sockets differently from files." msgstr "Функция демона прослушивать соединения TCP может более не работать. Это может потребовать дополнительных правил, потому что SELinux относится к сетевым сокетам иначе, чем к файлам." #. type: enumerate -#: guix-git/doc/guix.texi:1510 +#: guix-git/doc/guix.texi:1527 msgid "Currently all files with a name matching the regular expression @code{/gnu/store/.+-(guix-.+|profile)/bin/guix-daemon} are assigned the label @code{guix_daemon_exec_t}; this means that @emph{any} file with that name in any profile would be permitted to run in the @code{guix_daemon_t} domain. This is not ideal. An attacker could build a package that provides this executable and convince a user to install and run it, which lifts it into the @code{guix_daemon_t} domain. At that point SELinux could not prevent it from accessing files that are allowed for processes in that domain." msgstr "В настоящее время всем файлам с именами, соответствующими регулярному выражению @code{/gnu/store/.+-(guix-.+|profile)/bin/guix-daemon}, присвоена метка @code{guix_daemon_exec_t}; это означает, что @emph{любому} файлу с таким именем в любом профиле разрешён запуск в домене @code{guix_daemon_t}. Это не идеально. Атакующий может собрать пакет, который содержит исполняемый файл и убеить пользователя установить и запустить его, и таким образом он получит доступ к домену @code{guix_daemon_t}. В этой связи SELinux мог бы не давать ему доступ к файлам, которые разрешены для процессов в этом домене." #. type: enumerate -#: guix-git/doc/guix.texi:1515 +#: guix-git/doc/guix.texi:1532 msgid "You will need to relabel the store directory after all upgrades to @file{guix-daemon}, such as after running @code{guix pull}. Assuming the store is in @file{/gnu}, you can do this with @code{restorecon -vR /gnu}, or by other means provided by your operating system." msgstr "Вам нужно будет изменить метку (label) каталога хранилища после всех обновлений до @file{guix-daemon}, например, после запуска @code{guix pull}. Предполагая, что хранилище в @file{/gnu}, вы можете это сделать с @code{restorecon -vR /gnu}, или другими способами, предусмотренными вашей операционной системой." #. type: enumerate -#: guix-git/doc/guix.texi:1523 +#: guix-git/doc/guix.texi:1540 msgid "We could generate a much more restrictive policy at installation time, so that only the @emph{exact} file name of the currently installed @code{guix-daemon} executable would be labelled with @code{guix_daemon_exec_t}, instead of using a broad regular expression. The downside is that root would have to install or upgrade the policy at installation time whenever the Guix package that provides the effectively running @code{guix-daemon} executable is upgraded." msgstr "Мы можем создать политику с большими ограничениями во время установки, так чтобы только @emph{точное} имя исполняемого файла установленного в данный момент @code{guix-daemon} было помечено меткой @code{guix_daemon_exec_t} вместо того, чтобы использовать регулярное выражение, выбирающее большой ряд файлов. Проблемой в данном случае будет то, что root потребуется устанавливать или обновлять политику во время любой установки в случае, если обновлён исполняемый файл @code{guix-daemon}." #. type: section -#: guix-git/doc/guix.texi:1526 +#: guix-git/doc/guix.texi:1543 #, no-wrap msgid "Invoking @command{guix-daemon}" msgstr "Вызов @command{guix-daemon}" #. type: Plain text -#: guix-git/doc/guix.texi:1532 +#: guix-git/doc/guix.texi:1549 msgid "The @command{guix-daemon} program implements all the functionality to access the store. This includes launching build processes, running the garbage collector, querying the availability of a build result, etc. It is normally run as @code{root} like this:" msgstr "Программа @command{guix-daemon} реализует весь функционал доступа к складу. Это включает запуск процессов сборки, запуск сборщика мусора, проверка доступности результата сборки и т.д. Он должен быть запущен от @code{root} так:" #. type: Plain text -#: guix-git/doc/guix.texi:1539 +#: guix-git/doc/guix.texi:1556 msgid "For details on how to set it up, @pxref{Setting Up the Daemon}." msgstr "Для подробностей о том, как настроить его, смотрите @pxref{Setting Up the Daemon}." #. type: cindex -#: guix-git/doc/guix.texi:1541 +#: guix-git/doc/guix.texi:1558 #, no-wrap msgid "container, build environment" msgstr "контейнер, окружение сборки" #. type: cindex -#: guix-git/doc/guix.texi:1543 guix-git/doc/guix.texi:3071 -#: guix-git/doc/guix.texi:3988 guix-git/doc/guix.texi:13753 +#: guix-git/doc/guix.texi:1560 guix-git/doc/guix.texi:3088 +#: guix-git/doc/guix.texi:4006 guix-git/doc/guix.texi:14110 #, no-wrap msgid "reproducible builds" msgstr "воспроизводимые сборки" #. type: Plain text -#: guix-git/doc/guix.texi:1555 +#: guix-git/doc/guix.texi:1572 msgid "By default, @command{guix-daemon} launches build processes under different UIDs, taken from the build group specified with @option{--build-users-group}. In addition, each build process is run in a chroot environment that only contains the subset of the store that the build process depends on, as specified by its derivation (@pxref{Programming Interface, derivation}), plus a set of specific system directories. By default, the latter contains @file{/dev} and @file{/dev/pts}. Furthermore, on GNU/Linux, the build environment is a @dfn{container}: in addition to having its own file system tree, it has a separate mount name space, its own PID name space, network name space, etc. This helps achieve reproducible builds (@pxref{Features})." msgstr "По умолчанию @command{guix-daemon} запускает процессы сборки под различными UID, от пользователей из группы, обозначенной в @code{--build-users-group}. В дополнение каждый процесс сборки запускается в окружении chroot, которое содержит только набор элементов склада, от которых зависит процесс сборки, как это обозначено в деривации (@pxref{Programming Interface, derivation}), а также набор специфичных системных директорий. По умолчанию последнее включает @file{/dev} и @file{/dev/pts}. Более того, под GNU/Linux окружение сборки --- это @dfn{контейнер}: в дополнение к тому, что он имеет собственное дерево файловой системы, он также имеет отдельное пространство имён монтирования, своё собственное пространство имён процессов PID, пространство сетевых имён и т.д. Это позволяет получить воспроизводимые сборки (@pxref{Features})." #. type: Plain text -#: guix-git/doc/guix.texi:1561 +#: guix-git/doc/guix.texi:1578 msgid "When the daemon performs a build on behalf of the user, it creates a build directory under @file{/tmp} or under the directory specified by its @env{TMPDIR} environment variable. This directory is shared with the container for the duration of the build, though within the container, the build tree is always called @file{/tmp/guix-build-@var{name}.drv-0}." msgstr "Когда демон выполняет сборку по запросу пользователя, он создаёт директорию под @file{/tmp} или под директорией, заданной его переменной окружения @code{TMPDIR}. Эта директория разделяется с контейнером на время сборки, хотя внутри контейнера дерево сборки всегда называется @file{/tmp/guix-build-@var{name}.drv-0}." #. type: Plain text -#: guix-git/doc/guix.texi:1565 +#: guix-git/doc/guix.texi:1582 msgid "The build directory is automatically deleted upon completion, unless the build failed and the client specified @option{--keep-failed} (@pxref{Common Build Options, @option{--keep-failed}})." msgstr "Директория сборки автоматически удаляется по завершении, если конечно, сборка не завершилась с ошибкой, и клиент не обозначил @option{--keep-failed} (@pxref{Invoking guix build, @option{--keep-failed}})." #. type: Plain text -#: guix-git/doc/guix.texi:1571 +#: guix-git/doc/guix.texi:1588 msgid "The daemon listens for connections and spawns one sub-process for each session started by a client (one of the @command{guix} sub-commands). The @command{guix processes} command allows you to get an overview of the activity on your system by viewing each of the active sessions and clients. @xref{Invoking guix processes}, for more information." msgstr "Демон слушает соединения и порождает один под-процесс для каждой сессии, запускаемой клиентом (одну из подкоманд @command{guix}). Команда @command{guix processes} позволяет мониторить активность вашей системы, предоставляя обзор каждой активной сессии и клиентов. Смотрите @xref{Invoking guix processes} для подробной информации." #. type: Plain text -#: guix-git/doc/guix.texi:1573 +#: guix-git/doc/guix.texi:1590 msgid "The following command-line options are supported:" msgstr "Поддерживаются следующие опции командной строки:" #. type: item -#: guix-git/doc/guix.texi:1575 +#: guix-git/doc/guix.texi:1592 #, no-wrap msgid "--build-users-group=@var{group}" msgstr "--build-users-group=@var{group}" #. type: table -#: guix-git/doc/guix.texi:1578 +#: guix-git/doc/guix.texi:1595 msgid "Take users from @var{group} to run build processes (@pxref{Setting Up the Daemon, build users})." msgstr "Использовать пользователей из группы @var{group} для запуска процессов сборки (@pxref{Setting Up the Daemon, build users})." #. type: item -#: guix-git/doc/guix.texi:1579 guix-git/doc/guix.texi:10915 +#: guix-git/doc/guix.texi:1596 guix-git/doc/guix.texi:11229 #, no-wrap msgid "--no-substitutes" msgstr "--no-substitutes" #. type: cindex -#: guix-git/doc/guix.texi:1580 guix-git/doc/guix.texi:3083 -#: guix-git/doc/guix.texi:3741 +#: guix-git/doc/guix.texi:1597 guix-git/doc/guix.texi:3100 +#: guix-git/doc/guix.texi:3759 #, no-wrap msgid "substitutes" msgstr "подстановки" #. type: table -#: guix-git/doc/guix.texi:1584 guix-git/doc/guix.texi:10919 +#: guix-git/doc/guix.texi:1601 guix-git/doc/guix.texi:11233 msgid "Do not use substitutes for build products. That is, always build things locally instead of allowing downloads of pre-built binaries (@pxref{Substitutes})." msgstr "Не использовать подстановки для сборок. Это означает --- собирать элементы локально вместо того, чтобы скачивать собранные бинарники (@pxref{Substitutes})." #. type: table -#: guix-git/doc/guix.texi:1588 +#: guix-git/doc/guix.texi:1605 msgid "When the daemon runs with @option{--no-substitutes}, clients can still explicitly enable substitution @i{via} the @code{set-build-options} remote procedure call (@pxref{The Store})." msgstr "Когда демон работает с @code{--no-substitutes}, клиенты всё ещё могут явно включить подстановку @i{с помощью} удалённого вызова процедур @code{set-build-options} (@pxref{The Store})." #. type: anchor{#1} -#: guix-git/doc/guix.texi:1590 +#: guix-git/doc/guix.texi:1607 msgid "daemon-substitute-urls" msgstr "daemon-substitute-urls" #. type: item -#: guix-git/doc/guix.texi:1590 guix-git/doc/guix.texi:10902 -#: guix-git/doc/guix.texi:13160 guix-git/doc/guix.texi:13899 -#: guix-git/doc/guix.texi:14124 +#: guix-git/doc/guix.texi:1607 guix-git/doc/guix.texi:11216 +#: guix-git/doc/guix.texi:13517 guix-git/doc/guix.texi:14256 +#: guix-git/doc/guix.texi:14481 #, no-wrap msgid "--substitute-urls=@var{urls}" msgstr "--substitute-urls=@var{urls}" #. type: table -#: guix-git/doc/guix.texi:1594 +#: guix-git/doc/guix.texi:1611 msgid "Consider @var{urls} the default whitespace-separated list of substitute source URLs. When this option is omitted, @indicateurl{@value{SUBSTITUTE-URLS}} is used." msgstr "Использовать адреса @var{urls}, разделённые пробелом по умолчанию, как список источников подстановок. Когда эта опция пропущена, используется @indicateurl{@value{SUBSTITUTE-URLS}}." #. type: table -#: guix-git/doc/guix.texi:1597 +#: guix-git/doc/guix.texi:1614 msgid "This means that substitutes may be downloaded from @var{urls}, as long as they are signed by a trusted signature (@pxref{Substitutes})." msgstr "Это означает, что подстановки могут скачиваться из адресов @var{urls}, если конечно они подписаны доверенной подписью (@pxref{Substitutes})." #. type: table -#: guix-git/doc/guix.texi:1600 +#: guix-git/doc/guix.texi:1617 msgid "@xref{Getting Substitutes from Other Servers}, for more information on how to configure the daemon to get substitutes from other servers." msgstr "@xref{Getting Substitutes from Other Servers}, для получения дополнительной информации о том, как настроить демон для получения заменителей с других серверов." #. type: item -#: guix-git/doc/guix.texi:1602 guix-git/doc/guix.texi:10938 +#: guix-git/doc/guix.texi:1619 guix-git/doc/guix.texi:11252 #, no-wrap msgid "--no-offload" msgstr "--no-offload" #. type: table -#: guix-git/doc/guix.texi:1606 guix-git/doc/guix.texi:10942 +#: guix-git/doc/guix.texi:1623 guix-git/doc/guix.texi:11256 msgid "Do not use offload builds to other machines (@pxref{Daemon Offload Setup}). That is, always build things locally instead of offloading builds to remote machines." msgstr "Не использовать подстановки для сборок. Это означает --- собирать элементы локально вместо того, чтобы скачивать собранные бинарники (@pxref{Substitutes})." #. type: item -#: guix-git/doc/guix.texi:1607 +#: guix-git/doc/guix.texi:1624 #, no-wrap msgid "--cache-failures" msgstr "--cache-failures" #. type: table -#: guix-git/doc/guix.texi:1609 +#: guix-git/doc/guix.texi:1626 msgid "Cache build failures. By default, only successful builds are cached." msgstr "Кешировать ошибки сборки. По умолчанию кешируются только успешные сборки." #. type: table -#: guix-git/doc/guix.texi:1614 +#: guix-git/doc/guix.texi:1631 msgid "When this option is used, @command{guix gc --list-failures} can be used to query the set of store items marked as failed; @command{guix gc --clear-failures} removes store items from the set of cached failures. @xref{Invoking guix gc}." msgstr "При установке этой опции можно использовать @command{guix gc --list-failures}, чтобы просматривать элементы склада, помеченные как ошибочные; @command{guix gc --clear-failures} удаляет элементы склада из кеша ошибок. @xref{Invoking guix gc}." #. type: item -#: guix-git/doc/guix.texi:1615 guix-git/doc/guix.texi:10968 +#: guix-git/doc/guix.texi:1632 guix-git/doc/guix.texi:11282 #, no-wrap msgid "--cores=@var{n}" msgstr "--cores=@var{n}" #. type: itemx -#: guix-git/doc/guix.texi:1616 guix-git/doc/guix.texi:10969 +#: guix-git/doc/guix.texi:1633 guix-git/doc/guix.texi:11283 #, no-wrap msgid "-c @var{n}" msgstr "-c @var{n}" #. type: table -#: guix-git/doc/guix.texi:1619 +#: guix-git/doc/guix.texi:1636 msgid "Use @var{n} CPU cores to build each derivation; @code{0} means as many as available." msgstr "Использовать @var{n} ядер процессора для сборки каждой деривации; @code{0} означает использовать все доступные." #. type: table -#: guix-git/doc/guix.texi:1623 +#: guix-git/doc/guix.texi:1640 msgid "The default value is @code{0}, but it may be overridden by clients, such as the @option{--cores} option of @command{guix build} (@pxref{Invoking guix build})." msgstr "Значение по умолчанию - @code{0}, но оно может быть изменено клиентами, в частности, опцией @code{--cores} команды @command{guix build} (@pxref{Invoking guix build})." #. type: table -#: guix-git/doc/guix.texi:1627 +#: guix-git/doc/guix.texi:1644 msgid "The effect is to define the @env{NIX_BUILD_CORES} environment variable in the build process, which can then use it to exploit internal parallelism---for instance, by running @code{make -j$NIX_BUILD_CORES}." msgstr "В результате устанавливается переменная окружения @code{NIX_BUILD_CORES} для процесса сборки, который затем может использовать её для применения внутреннего параллелизма, например, для запуска @code{make -j$NIX_BUILD_CORES}." #. type: item -#: guix-git/doc/guix.texi:1628 guix-git/doc/guix.texi:10973 +#: guix-git/doc/guix.texi:1645 guix-git/doc/guix.texi:11287 #, no-wrap msgid "--max-jobs=@var{n}" msgstr "--max-jobs=@var{n}" #. type: itemx -#: guix-git/doc/guix.texi:1629 guix-git/doc/guix.texi:10974 +#: guix-git/doc/guix.texi:1646 guix-git/doc/guix.texi:11288 #, no-wrap msgid "-M @var{n}" msgstr "-M @var{n}" #. type: table -#: guix-git/doc/guix.texi:1634 +#: guix-git/doc/guix.texi:1651 msgid "Allow at most @var{n} build jobs in parallel. The default value is @code{1}. Setting it to @code{0} means that no builds will be performed locally; instead, the daemon will offload builds (@pxref{Daemon Offload Setup}), or simply fail." msgstr "Разрешить максимум @var{n} параллельных задач сборки. Значение по умолчанию - @code{1}. Установка в @code{0} означает, чтоб сборки не будут выполняться локально, вместо этого, демон будет разгружать сборки (@pxref{Daemon Offload Setup}) или просто отчитается об ошибке." #. type: item -#: guix-git/doc/guix.texi:1635 guix-git/doc/guix.texi:10943 +#: guix-git/doc/guix.texi:1652 guix-git/doc/guix.texi:11257 #, no-wrap msgid "--max-silent-time=@var{seconds}" msgstr "--max-silent-time=@var{seconds}" #. type: table -#: guix-git/doc/guix.texi:1638 guix-git/doc/guix.texi:10946 +#: guix-git/doc/guix.texi:1655 guix-git/doc/guix.texi:11260 msgid "When the build or substitution process remains silent for more than @var{seconds}, terminate it and report a build failure." msgstr "Когда процесс сборки или подстановки молчит более @var{seconds} секунд, завершить его и отчитаться об ошибке сборки." #. type: table -#: guix-git/doc/guix.texi:1640 guix-git/doc/guix.texi:1649 +#: guix-git/doc/guix.texi:1657 guix-git/doc/guix.texi:1666 msgid "The default value is @code{0}, which disables the timeout." msgstr "Значение по умолчанию - @code{0}, что значит отключить таймаут." #. type: table -#: guix-git/doc/guix.texi:1643 +#: guix-git/doc/guix.texi:1660 msgid "The value specified here can be overridden by clients (@pxref{Common Build Options, @option{--max-silent-time}})." msgstr "Значение, заданное здесь, может быть переопределено клиентами (@pxref{Common Build Options, @code{--max-silent-time}})." #. type: item -#: guix-git/doc/guix.texi:1644 guix-git/doc/guix.texi:10950 +#: guix-git/doc/guix.texi:1661 guix-git/doc/guix.texi:11264 #, no-wrap msgid "--timeout=@var{seconds}" msgstr "--timeout=@var{seconds}" #. type: table -#: guix-git/doc/guix.texi:1647 guix-git/doc/guix.texi:10953 +#: guix-git/doc/guix.texi:1664 guix-git/doc/guix.texi:11267 msgid "Likewise, when the build or substitution process lasts for more than @var{seconds}, terminate it and report a build failure." msgstr "Точно так же, когда процесс сборки или подстановки длится более @var{seconds}, завершить его и отчитаться об ошибке сборки." #. type: table -#: guix-git/doc/guix.texi:1652 +#: guix-git/doc/guix.texi:1669 msgid "The value specified here can be overridden by clients (@pxref{Common Build Options, @option{--timeout}})." msgstr "Значение, заданное здесь, может быть переопределено клиентами (@pxref{Common Build Options, @code{--timeout}})." #. type: item -#: guix-git/doc/guix.texi:1653 +#: guix-git/doc/guix.texi:1670 #, no-wrap msgid "--rounds=@var{N}" msgstr "--rounds=@var{N}" #. type: table -#: guix-git/doc/guix.texi:1658 +#: guix-git/doc/guix.texi:1675 msgid "Build each derivation @var{n} times in a row, and raise an error if consecutive build results are not bit-for-bit identical. Note that this setting can be overridden by clients such as @command{guix build} (@pxref{Invoking guix build})." msgstr "Собирать каждую деривацию @var{n} раз подряд и вызывать ошибку, если результаты последовательных сборок не идентичны бит-к-биту. Отметим, что эта настройка может быть переопределена клиентами в команде, например, @command{guix build} (@pxref{Invoking guix build})." #. type: table -#: guix-git/doc/guix.texi:1662 guix-git/doc/guix.texi:10937 -#: guix-git/doc/guix.texi:11561 +#: guix-git/doc/guix.texi:1679 guix-git/doc/guix.texi:11251 +#: guix-git/doc/guix.texi:11875 msgid "When used in conjunction with @option{--keep-failed}, the differing output is kept in the store, under @file{/gnu/store/@dots{}-check}. This makes it easy to look for differences between the two results." msgstr "При использовании вместе с @option{--keep-failed} различные результаты сохраняются на складе под @file{/gnu/store/@dots{}-check}. Это делает возможным просмотр различий между двумя результатами." #. type: item -#: guix-git/doc/guix.texi:1663 +#: guix-git/doc/guix.texi:1680 #, no-wrap msgid "--debug" msgstr "--debug" #. type: table -#: guix-git/doc/guix.texi:1665 +#: guix-git/doc/guix.texi:1682 msgid "Produce debugging output." msgstr "Выводить отладочную информацию." #. type: table -#: guix-git/doc/guix.texi:1669 +#: guix-git/doc/guix.texi:1686 msgid "This is useful to debug daemon start-up issues, but then it may be overridden by clients, for example the @option{--verbosity} option of @command{guix build} (@pxref{Invoking guix build})." msgstr "Это полезно для отладки проблем запуска демона, но затем это может быть переопределено клиентами, например, опцией @option{--verbosity} команды @command{guix build} (@pxref{Invoking guix build})." #. type: item -#: guix-git/doc/guix.texi:1670 +#: guix-git/doc/guix.texi:1687 #, no-wrap msgid "--chroot-directory=@var{dir}" msgstr "--chroot-directory=@var{dir}" #. type: table -#: guix-git/doc/guix.texi:1672 +#: guix-git/doc/guix.texi:1689 msgid "Add @var{dir} to the build chroot." msgstr "Добавить директорию @var{dir} в chroot сборки." #. type: table -#: guix-git/doc/guix.texi:1678 +#: guix-git/doc/guix.texi:1695 msgid "Doing this may change the result of build processes---for instance if they use optional dependencies found in @var{dir} when it is available, and not otherwise. For that reason, it is not recommended to do so. Instead, make sure that each derivation declares all the inputs that it needs." msgstr "Это может изменить результаты процессов сборки, например, если они используют необязательные (опциональные) зависимости, найденные в @var{dir}, если они доступны, но только так, а не иначе. Поэтому не рекомендуется делать так. Вместо этого, убедитесь, что каждая деривация объявляет все необходимые входные данные." #. type: item -#: guix-git/doc/guix.texi:1679 +#: guix-git/doc/guix.texi:1696 #, no-wrap msgid "--disable-chroot" msgstr "--disable-chroot" #. type: table -#: guix-git/doc/guix.texi:1681 +#: guix-git/doc/guix.texi:1698 msgid "Disable chroot builds." msgstr "Отключить chroot для сборки." #. type: table -#: guix-git/doc/guix.texi:1686 +#: guix-git/doc/guix.texi:1703 msgid "Using this option is not recommended since, again, it would allow build processes to gain access to undeclared dependencies. It is necessary, though, when @command{guix-daemon} is running under an unprivileged user account." msgstr "Использование этой опции не рекомендуется, так как опять же это позволит процессам сборки получить доступ к не объявленным зависимостям. Это важно, даже если @command{guix-daemon} запущен под аккаунтом непривилегированного пользователя." #. type: item -#: guix-git/doc/guix.texi:1687 +#: guix-git/doc/guix.texi:1704 #, no-wrap msgid "--log-compression=@var{type}" msgstr "--log-compression=@var{type}" #. type: table -#: guix-git/doc/guix.texi:1690 +#: guix-git/doc/guix.texi:1707 msgid "Compress build logs according to @var{type}, one of @code{gzip}, @code{bzip2}, or @code{none}." msgstr "Архивировать логи сборки методом @var{type}. Это один из: @code{gzip}, @code{bzip2} или @code{none}." #. type: table -#: guix-git/doc/guix.texi:1694 -msgid "Unless @option{--lose-logs} is used, all the build logs are kept in the @var{localstatedir}. To save space, the daemon automatically compresses them with Bzip2 by default." +#: guix-git/doc/guix.texi:1711 +#, fuzzy +#| msgid "Unless @option{--lose-logs} is used, all the build logs are kept in the @var{localstatedir}. To save space, the daemon automatically compresses them with Bzip2 by default." +msgid "Unless @option{--lose-logs} is used, all the build logs are kept in the @var{localstatedir}. To save space, the daemon automatically compresses them with gzip by default." msgstr "Если не используется @code{--lose-logs}, все логи сборки сохраняются в @var{localstatedir}. Для экономии места демон автоматически сжимает их с помощью bzip2 по умолчанию." #. type: item -#: guix-git/doc/guix.texi:1695 +#: guix-git/doc/guix.texi:1712 #, no-wrap msgid "--discover[=yes|no]" msgstr "--discover[=yes|no]" #. type: table -#: guix-git/doc/guix.texi:1698 guix-git/doc/guix.texi:16563 +#: guix-git/doc/guix.texi:1715 guix-git/doc/guix.texi:16920 msgid "Whether to discover substitute servers on the local network using mDNS and DNS-SD." msgstr "Следует ли обнаруживать сервера с заменителями в локальной сети с помощью mDNS and DNS-SD." #. type: table -#: guix-git/doc/guix.texi:1701 +#: guix-git/doc/guix.texi:1718 msgid "This feature is still experimental. However, here are a few considerations." msgstr "Эта функция все еще экспериментальная. Однако есть несколько соображений." #. type: enumerate -#: guix-git/doc/guix.texi:1705 +#: guix-git/doc/guix.texi:1722 msgid "It might be faster/less expensive than fetching from remote servers;" msgstr "Это может быть быстрее/дешевле, чем загрузка (fetching) с удаленных серверов;" #. type: enumerate -#: guix-git/doc/guix.texi:1708 +#: guix-git/doc/guix.texi:1725 msgid "There are no security risks, only genuine substitutes will be used (@pxref{Substitute Authentication});" msgstr "Никаких угроз безопасности, будут использоваться только подлинные заменители (@pxref{Substitute Authentication});" #. type: enumerate -#: guix-git/doc/guix.texi:1712 +#: guix-git/doc/guix.texi:1729 msgid "An attacker advertising @command{guix publish} on your LAN cannot serve you malicious binaries, but they can learn what software you’re installing;" msgstr "Объявление злоумышленника @command{guix publish} в вашей локальной сети не могут предоставить вам вредоносные двоичные файлы, но они могут узнать, какое программное обеспечение вы устанавливаете;" #. type: enumerate -#: guix-git/doc/guix.texi:1715 +#: guix-git/doc/guix.texi:1732 msgid "Servers may serve substitute over HTTP, unencrypted, so anyone on the LAN can see what software you’re installing." msgstr "Серверы могут предоставить заменители через HTTP в незашифрованном виде, поэтому любой в локальной сети может видеть, какое программное обеспечение вы устанавливаете." #. type: table -#: guix-git/doc/guix.texi:1719 +#: guix-git/doc/guix.texi:1736 msgid "It is also possible to enable or disable substitute server discovery at run-time by running:" msgstr "Также можно включить или отключить обнаружение сервера с заменителями во время выполнения, запустив:" #. type: example -#: guix-git/doc/guix.texi:1723 +#: guix-git/doc/guix.texi:1740 #, no-wrap msgid "" "herd discover guix-daemon on\n" @@ -7060,237 +7154,237 @@ msgstr "" "herd discover guix-daemon off\n" #. type: item -#: guix-git/doc/guix.texi:1725 +#: guix-git/doc/guix.texi:1742 #, no-wrap msgid "--disable-deduplication" msgstr "--disable-deduplication" #. type: cindex -#: guix-git/doc/guix.texi:1726 guix-git/doc/guix.texi:4326 +#: guix-git/doc/guix.texi:1743 guix-git/doc/guix.texi:4344 #, no-wrap msgid "deduplication" msgstr "дедупликация" #. type: table -#: guix-git/doc/guix.texi:1728 +#: guix-git/doc/guix.texi:1745 msgid "Disable automatic file ``deduplication'' in the store." msgstr "Отключить автоматическую \"дедупликацию\" файлов на складе." #. type: table -#: guix-git/doc/guix.texi:1735 +#: guix-git/doc/guix.texi:1752 msgid "By default, files added to the store are automatically ``deduplicated'': if a newly added file is identical to another one found in the store, the daemon makes the new file a hard link to the other file. This can noticeably reduce disk usage, at the expense of slightly increased input/output load at the end of a build process. This option disables this optimization." msgstr "По умолчанию файлы, добавленные на склад, автоматически \"дедуплицируются\": если вновь добавленный файл идентичен другому, найденному на складе, демон делает новый файл жесткой ссылкой на другой файл. Это существенно сокращает использование места на диске за счёт небольшого увеличения запросов ввода/вывода в конце процесса сборки. Эта опция отключает такую оптимизацию." #. type: item -#: guix-git/doc/guix.texi:1736 +#: guix-git/doc/guix.texi:1753 #, no-wrap msgid "--gc-keep-outputs[=yes|no]" msgstr "--gc-keep-outputs[=yes|no]" #. type: table -#: guix-git/doc/guix.texi:1739 +#: guix-git/doc/guix.texi:1756 msgid "Tell whether the garbage collector (GC) must keep outputs of live derivations." msgstr "Сообщить, должен ли сборщик мусора (GC) сохранять выходные данные живой деривации." #. type: cindex -#: guix-git/doc/guix.texi:1740 guix-git/doc/guix.texi:4139 +#: guix-git/doc/guix.texi:1757 guix-git/doc/guix.texi:4157 #, no-wrap msgid "GC roots" msgstr "Корни сборщика мусора" #. type: cindex -#: guix-git/doc/guix.texi:1741 guix-git/doc/guix.texi:4140 +#: guix-git/doc/guix.texi:1758 guix-git/doc/guix.texi:4158 #, no-wrap msgid "garbage collector roots" msgstr "корни сборщика мусора" #. type: table -#: guix-git/doc/guix.texi:1747 +#: guix-git/doc/guix.texi:1764 msgid "When set to @code{yes}, the GC will keep the outputs of any live derivation available in the store---the @file{.drv} files. The default is @code{no}, meaning that derivation outputs are kept only if they are reachable from a GC root. @xref{Invoking guix gc}, for more on GC roots." msgstr "При установке в \"yes\" (да), сборщик мусора (GC) будет сохранять результаты любой живой деривации, доступной на складе, --- файлы @code{.drv}. Значение по умолчанию - \"no\" (нет) - означает, что результаты дериваций хранятся только, если они доступны из корней сборщика мусора (GC roots). Смотрите @xref{Invoking guix gc} для информации о корнях сборщика мусора." #. type: item -#: guix-git/doc/guix.texi:1748 +#: guix-git/doc/guix.texi:1765 #, no-wrap msgid "--gc-keep-derivations[=yes|no]" msgstr "--gc-keep-derivations[=yes|no]" #. type: table -#: guix-git/doc/guix.texi:1751 +#: guix-git/doc/guix.texi:1768 msgid "Tell whether the garbage collector (GC) must keep derivations corresponding to live outputs." msgstr "Сообщить, должен ли сборщик мусора (GC) сохранять деривации, соответствующие живым результатам." #. type: table -#: guix-git/doc/guix.texi:1757 +#: guix-git/doc/guix.texi:1774 msgid "When set to @code{yes}, as is the case by default, the GC keeps derivations---i.e., @file{.drv} files---as long as at least one of their outputs is live. This allows users to keep track of the origins of items in their store. Setting it to @code{no} saves a bit of disk space." msgstr "При указании \"yes\" (да), что является значением по умолчанию, сборщик мусора сохраняет деривации, то есть файлы @code{.drv}, до тех пор, пока любой из их выходов остаётся живым. Это позволяет пользователям отслеживать исходники элементов на складе. Установка в \"no\" (нет) немного экономит место на диске." #. type: table -#: guix-git/doc/guix.texi:1766 +#: guix-git/doc/guix.texi:1783 msgid "In this way, setting @option{--gc-keep-derivations} to @code{yes} causes liveness to flow from outputs to derivations, and setting @option{--gc-keep-outputs} to @code{yes} causes liveness to flow from derivations to outputs. When both are set to @code{yes}, the effect is to keep all the build prerequisites (the sources, compiler, libraries, and other build-time tools) of live objects in the store, regardless of whether these prerequisites are reachable from a GC root. This is convenient for developers since it saves rebuilds or downloads." msgstr "Таким образом, установка @code{--gc-keep-derivations} в \"yes\" (да) даётт возможность пройти от результатов до дериваций, а установка @code{--gc-keep-outputs} в \"yes\" (да), делает возможным пройти от дериваций до результатов. Если оба установлены в \"yes\", тогда это сохранит всё используемое для сборки (исходники, компилятор, библиотеки и другие инструменты сборки) живых объектов на складе, без учёта, доступны эти инструменты сборки из корней сборщика мусора или нет. Это удобно для разработчиков, так как это сокращает пересборки или скачивания." #. type: item -#: guix-git/doc/guix.texi:1767 +#: guix-git/doc/guix.texi:1784 #, no-wrap msgid "--impersonate-linux-2.6" msgstr "--impersonate-linux-2.6" #. type: table -#: guix-git/doc/guix.texi:1770 +#: guix-git/doc/guix.texi:1787 msgid "On Linux-based systems, impersonate Linux 2.6. This means that the kernel's @command{uname} system call will report 2.6 as the release number." msgstr "На системах, основанных на Linux, выдавать себя за Linux 2.6. Это означает, что системный вызов ядра @code{uname} будет выдавать 2.6 номером релиза." #. type: table -#: guix-git/doc/guix.texi:1773 +#: guix-git/doc/guix.texi:1790 msgid "This might be helpful to build programs that (usually wrongfully) depend on the kernel version number." msgstr "Это полезно для сборки программ, которые (обычно по ошибке) зависят от версии ядра." #. type: item -#: guix-git/doc/guix.texi:1774 +#: guix-git/doc/guix.texi:1791 #, no-wrap msgid "--lose-logs" msgstr "--lose-logs" #. type: table -#: guix-git/doc/guix.texi:1777 +#: guix-git/doc/guix.texi:1794 msgid "Do not keep build logs. By default they are kept under @file{@var{localstatedir}/guix/log}." msgstr "Не сохранять логи сборки. По умолчанию они сохраняются под @code{@var{localstatedir}/guix/log}." #. type: item -#: guix-git/doc/guix.texi:1778 guix-git/doc/guix.texi:4567 -#: guix-git/doc/guix.texi:5846 guix-git/doc/guix.texi:6229 -#: guix-git/doc/guix.texi:6629 guix-git/doc/guix.texi:11505 -#: guix-git/doc/guix.texi:13187 guix-git/doc/guix.texi:13452 -#: guix-git/doc/guix.texi:14129 guix-git/doc/guix.texi:34442 -#: guix-git/doc/guix.texi:35251 +#: guix-git/doc/guix.texi:1795 guix-git/doc/guix.texi:4585 +#: guix-git/doc/guix.texi:5859 guix-git/doc/guix.texi:6272 +#: guix-git/doc/guix.texi:6672 guix-git/doc/guix.texi:11819 +#: guix-git/doc/guix.texi:13544 guix-git/doc/guix.texi:13809 +#: guix-git/doc/guix.texi:14486 guix-git/doc/guix.texi:34881 +#: guix-git/doc/guix.texi:35695 #, no-wrap msgid "--system=@var{system}" msgstr "--system=@var{system}" #. type: table -#: guix-git/doc/guix.texi:1782 +#: guix-git/doc/guix.texi:1799 msgid "Assume @var{system} as the current system type. By default it is the architecture/kernel pair found at configure time, such as @code{x86_64-linux}." msgstr "Считать @var{system} текущим типом системы. По умолчанию это пара архитектура/ядро, обнаруженная во время конфигурации, например, @code{x86_64-linux}." #. type: item -#: guix-git/doc/guix.texi:1783 guix-git/doc/guix.texi:10747 +#: guix-git/doc/guix.texi:1800 guix-git/doc/guix.texi:11061 #, no-wrap msgid "--listen=@var{endpoint}" msgstr "--listen=@var{endpoint}" #. type: table -#: guix-git/doc/guix.texi:1788 +#: guix-git/doc/guix.texi:1805 msgid "Listen for connections on @var{endpoint}. @var{endpoint} is interpreted as the file name of a Unix-domain socket if it starts with @code{/} (slash sign). Otherwise, @var{endpoint} is interpreted as a host name or host name and port to listen to. Here are a few examples:" msgstr "Слушать соединения с @var{endpoint}. @var{endpoint} интерпретируется как имя файла сокета Unix-домена, если начинается с @code{/} (знак слеша). В противном случае @var{endpoint} интерпретируется как имя хоста или им хоста и порт для прослушивания. Вот несколько примеров:" #. type: item -#: guix-git/doc/guix.texi:1790 +#: guix-git/doc/guix.texi:1807 #, no-wrap msgid "--listen=/gnu/var/daemon" msgstr "--listen=/gnu/var/daemon" #. type: table -#: guix-git/doc/guix.texi:1793 +#: guix-git/doc/guix.texi:1810 msgid "Listen for connections on the @file{/gnu/var/daemon} Unix-domain socket, creating it if needed." msgstr "Слушать соединения с сокетом Unix-домена @file{/gnu/var/daemon}, который создаётся при необходимости." #. type: item -#: guix-git/doc/guix.texi:1794 +#: guix-git/doc/guix.texi:1811 #, no-wrap msgid "--listen=localhost" msgstr "--listen=localhost" #. type: cindex -#: guix-git/doc/guix.texi:1795 guix-git/doc/guix.texi:9421 +#: guix-git/doc/guix.texi:1812 guix-git/doc/guix.texi:9735 #, no-wrap msgid "daemon, remote access" msgstr "демон, удалённый доступ" #. type: cindex -#: guix-git/doc/guix.texi:1796 guix-git/doc/guix.texi:9422 +#: guix-git/doc/guix.texi:1813 guix-git/doc/guix.texi:9736 #, no-wrap msgid "remote access to the daemon" msgstr "удалённый доступ к демону" #. type: cindex -#: guix-git/doc/guix.texi:1797 guix-git/doc/guix.texi:9423 +#: guix-git/doc/guix.texi:1814 guix-git/doc/guix.texi:9737 #, no-wrap msgid "daemon, cluster setup" msgstr "демон, установка кластера" #. type: cindex -#: guix-git/doc/guix.texi:1798 guix-git/doc/guix.texi:9424 +#: guix-git/doc/guix.texi:1815 guix-git/doc/guix.texi:9738 #, no-wrap msgid "clusters, daemon setup" msgstr "кластеры, установка демона" #. type: table -#: guix-git/doc/guix.texi:1801 +#: guix-git/doc/guix.texi:1818 msgid "Listen for TCP connections on the network interface corresponding to @code{localhost}, on port 44146." msgstr "Слушать соединения TCP сетевого интерфейса, относящиеся к @code{localhost}, на порту 44146." #. type: item -#: guix-git/doc/guix.texi:1802 +#: guix-git/doc/guix.texi:1819 #, no-wrap msgid "--listen=128.0.0.42:1234" msgstr "--listen=128.0.0.42:1234" #. type: table -#: guix-git/doc/guix.texi:1805 +#: guix-git/doc/guix.texi:1822 msgid "Listen for TCP connections on the network interface corresponding to @code{128.0.0.42}, on port 1234." msgstr "Слушать соединения TCP сетевого интерфейса, относящиеся к @code{128.0.0.42}, на порту 1234." #. type: table -#: guix-git/doc/guix.texi:1812 +#: guix-git/doc/guix.texi:1829 msgid "This option can be repeated multiple times, in which case @command{guix-daemon} accepts connections on all the specified endpoints. Users can tell client commands what endpoint to connect to by setting the @env{GUIX_DAEMON_SOCKET} environment variable (@pxref{The Store, @env{GUIX_DAEMON_SOCKET}})." msgstr "Эта опция может повторяться много раз, в таком случае @command{guix-daemon} принимает соединения на всех обозначенных точках. Пользователи могут через клиентские команды сообщать, через какие точки соединяться, для этого нужно устанавливать переменную окружения @code{GUIX_DAEMON_SOCKET} (@pxref{The Store, @code{GUIX_DAEMON_SOCKET}})." #. type: quotation -#: guix-git/doc/guix.texi:1819 +#: guix-git/doc/guix.texi:1836 msgid "The daemon protocol is @emph{unauthenticated and unencrypted}. Using @option{--listen=@var{host}} is suitable on local networks, such as clusters, where only trusted nodes may connect to the build daemon. In other cases where remote access to the daemon is needed, we recommend using Unix-domain sockets along with SSH." msgstr "Протокол демона @emph{неаутентичный и нешифрованный}. Использование @code{--listen=@var{host}} подходит локальным сетям, как например, кластерам, где только доверенные узлы могут соединяться с демоном сборки. В других случаях, когда необходим удалённый доступ к демону рекомендуется использовать сокеты Unix-домена вместе с SSH." #. type: table -#: guix-git/doc/guix.texi:1824 +#: guix-git/doc/guix.texi:1841 msgid "When @option{--listen} is omitted, @command{guix-daemon} listens for connections on the Unix-domain socket located at @file{@var{localstatedir}/guix/daemon-socket/socket}." msgstr "Когда @code{--listen} пропущена, @command{guix-daemon} слушает соединения с сокетом Unix-домена, расположенным в @file{@var{localstatedir}/guix/daemon-socket/socket}." #. type: Plain text -#: guix-git/doc/guix.texi:1834 +#: guix-git/doc/guix.texi:1851 msgid "When using Guix on top of GNU/Linux distribution other than Guix System---a so-called @dfn{foreign distro}---a few additional steps are needed to get everything in place. Here are some of them." msgstr "При использовании дистрибутива GNU/Linux, отличного от системы, называемого также @dfn{чужой дистрибутив}, необходимо несколько дополнительных шагов, чтобы всё работало. Вот некоторые из них." #. type: anchor{#1} -#: guix-git/doc/guix.texi:1838 +#: guix-git/doc/guix.texi:1855 msgid "locales-and-locpath" msgstr "locales-and-locpath" #. type: cindex -#: guix-git/doc/guix.texi:1838 +#: guix-git/doc/guix.texi:1855 #, no-wrap msgid "locales, when not on Guix System" msgstr "локали, если не на системе Guix" #. type: vindex -#: guix-git/doc/guix.texi:1839 guix-git/doc/guix.texi:15770 +#: guix-git/doc/guix.texi:1856 guix-git/doc/guix.texi:16127 #, no-wrap msgid "LOCPATH" msgstr "LOCPATH" #. type: vindex -#: guix-git/doc/guix.texi:1840 +#: guix-git/doc/guix.texi:1857 #, no-wrap msgid "GUIX_LOCPATH" msgstr "GUIX_LOCPATH" #. type: Plain text -#: guix-git/doc/guix.texi:1845 +#: guix-git/doc/guix.texi:1862 msgid "Packages installed @i{via} Guix will not use the locale data of the host system. Instead, you must first install one of the locale packages available with Guix and then define the @env{GUIX_LOCPATH} environment variable:" msgstr "Пакеты, установленные @i{с помощью} Guix, не будут использовать данные локали хост-системы. Вместо этого вы должны вначале установить один из пакетов локали, доступных в Guix, а затем определить переменную окружения @code{GUIX_LOCPATH}:" #. type: example -#: guix-git/doc/guix.texi:1849 +#: guix-git/doc/guix.texi:1866 #, no-wrap msgid "" "$ guix install glibc-locales\n" @@ -7300,134 +7394,134 @@ msgstr "" "$ export GUIX_LOCPATH=$HOME/.guix-profile/lib/locale\n" #. type: Plain text -#: guix-git/doc/guix.texi:1855 +#: guix-git/doc/guix.texi:1872 msgid "Note that the @code{glibc-locales} package contains data for all the locales supported by the GNU@tie{}libc and weighs in at around 917@tie{}MiB@. Alternatively, the @code{glibc-utf8-locales} is smaller but limited to a few UTF-8 locales." msgstr "Отметим, что пакет @code{glibc-locales} содержит данные для всех локалей, поддерживаемых GNU@tie{}libc, и весит околоа 110@tie{}Миб. В альтернативу @code{glibc-utf8-locales} меньше, но ограничен несколькими локалями UTF-8." #. type: Plain text -#: guix-git/doc/guix.texi:1859 +#: guix-git/doc/guix.texi:1876 msgid "The @env{GUIX_LOCPATH} variable plays a role similar to @env{LOCPATH} (@pxref{Locale Names, @env{LOCPATH},, libc, The GNU C Library Reference Manual}). There are two important differences though:" msgstr "Переменная @env{GUIX_LOCPATH} играет ту же роль, что и @env{LOCPATH} (@pxref{Locale Names, @env{LOCPATH},, libc, The GNU C Library Reference Manual}). Но есть два существенных различия:" #. type: enumerate -#: guix-git/doc/guix.texi:1866 +#: guix-git/doc/guix.texi:1883 msgid "@env{GUIX_LOCPATH} is honored only by the libc in Guix, and not by the libc provided by foreign distros. Thus, using @env{GUIX_LOCPATH} allows you to make sure the programs of the foreign distro will not end up loading incompatible locale data." msgstr "@code{GUIX_LOCPATH} учитывается только libc в Guix, но не учитывается libc, предоставляемым чужим дистрибутивом. Так что использование @code{GUIX_LOCPATH} позволяет вам убедиться, что программы чужого дистрибутива не будут производить загрузку несовместимых данных локали." #. type: enumerate -#: guix-git/doc/guix.texi:1873 +#: guix-git/doc/guix.texi:1890 msgid "libc suffixes each entry of @env{GUIX_LOCPATH} with @code{/X.Y}, where @code{X.Y} is the libc version---e.g., @code{2.22}. This means that, should your Guix profile contain a mixture of programs linked against different libc version, each libc version will only try to load locale data in the right format." msgstr "libc добавляет суффиксы @code{/X.Y} к каждому компоненту @code{GUIX_LOCPATH}, где @code{X.Y} - это версия libc, например, @code{2.22}. Это значит, что если ваш профиль Guix будет содержать смесь программ, связанных с дугой версией libc, каждая версия libc будет пытаться загружать только данные локали в правильном формате." #. type: Plain text -#: guix-git/doc/guix.texi:1877 +#: guix-git/doc/guix.texi:1894 msgid "This is important because the locale data format used by different libc versions may be incompatible." msgstr "Это важно, потому что использование данных локали другой версией libc может быть неприемлемо." #. type: cindex -#: guix-git/doc/guix.texi:1880 +#: guix-git/doc/guix.texi:1897 #, no-wrap msgid "name service switch, glibc" msgstr "выбор имён сервисов, glibc" #. type: cindex -#: guix-git/doc/guix.texi:1881 +#: guix-git/doc/guix.texi:1898 #, no-wrap msgid "NSS (name service switch), glibc" msgstr "NSS (выбор имён сервисов), glibc" #. type: cindex -#: guix-git/doc/guix.texi:1882 +#: guix-git/doc/guix.texi:1899 #, no-wrap msgid "nscd (name service caching daemon)" msgstr "nscd (демон кеша имён сервисов)" #. type: cindex -#: guix-git/doc/guix.texi:1883 +#: guix-git/doc/guix.texi:1900 #, no-wrap msgid "name service caching daemon (nscd)" msgstr "демон кеша имён сервисов (nscd)" #. type: Plain text -#: guix-git/doc/guix.texi:1890 +#: guix-git/doc/guix.texi:1907 msgid "When using Guix on a foreign distro, we @emph{strongly recommend} that the system run the GNU C library's @dfn{name service cache daemon}, @command{nscd}, which should be listening on the @file{/var/run/nscd/socket} socket. Failing to do that, applications installed with Guix may fail to look up host names or user accounts, or may even crash. The next paragraphs explain why." msgstr "При использовании Guix на чужом дистрибутиве мы @emph{настойчиво рекомендуем}, чтобы система запускала @dfn{демон кеша имён сервисов} библиотеки GNU C, @command{nscd}, который должен слушать сокет @file{/var/run/nscd/socket}. Если это не сделано, приложения, установленные Guix, могут некорректно адресовать имена хостов или аккаунты пользователей и даже падать. Ниже объясняется почему." #. type: file{#1} -#: guix-git/doc/guix.texi:1891 +#: guix-git/doc/guix.texi:1908 #, no-wrap msgid "nsswitch.conf" msgstr "nsswitch.conf" #. type: Plain text -#: guix-git/doc/guix.texi:1896 +#: guix-git/doc/guix.texi:1913 msgid "The GNU C library implements a @dfn{name service switch} (NSS), which is an extensible mechanism for ``name lookups'' in general: host name resolution, user accounts, and more (@pxref{Name Service Switch,,, libc, The GNU C Library Reference Manual})." msgstr "Библиотека GNU C реализует @dfn{выбор имён сервисов} (NSS), который представляет собой расширяемый механизм для резолвинга имён в целом: резолвинг имён хостов, аккаунтов пользователей и другое (@pxref{Name Service Switch,,, libc, The GNU C Library Reference Manual})." #. type: cindex -#: guix-git/doc/guix.texi:1897 +#: guix-git/doc/guix.texi:1914 #, no-wrap msgid "Network information service (NIS)" msgstr "Сервис сетевой информации (NIS)" #. type: cindex -#: guix-git/doc/guix.texi:1898 +#: guix-git/doc/guix.texi:1915 #, no-wrap msgid "NIS (Network information service)" msgstr "NIS (сервис сетевой информации)" #. type: Plain text -#: guix-git/doc/guix.texi:1907 +#: guix-git/doc/guix.texi:1924 msgid "Being extensible, the NSS supports @dfn{plugins}, which provide new name lookup implementations: for example, the @code{nss-mdns} plugin allow resolution of @code{.local} host names, the @code{nis} plugin allows user account lookup using the Network information service (NIS), and so on. These extra ``lookup services'' are configured system-wide in @file{/etc/nsswitch.conf}, and all the programs running on the system honor those settings (@pxref{NSS Configuration File,,, libc, The GNU C Reference Manual})." msgstr "Будучи расширяемым, NSS поддерживает @dfn{плагины}, которые предоставляют реализации разрешения новых имён: плагин @code{nss-mdns} резолвит имена хостов @code{.local}, плагин @code{nis} адресует пользовательские аккаунты, используя сервис сетевой информации (NIS) и т.д. Эти дополнительные сервисы адресации настраиваются для всей системы в @file{/etc/nsswitch.conf}, и все запущенные в системе программы учитывают эти настройки (@pxref{NSS Configuration File,,, libc, The GNU C Reference Manual})." #. type: Plain text -#: guix-git/doc/guix.texi:1917 +#: guix-git/doc/guix.texi:1934 msgid "When they perform a name lookup---for instance by calling the @code{getaddrinfo} function in C---applications first try to connect to the nscd; on success, nscd performs name lookups on their behalf. If the nscd is not running, then they perform the name lookup by themselves, by loading the name lookup services into their own address space and running it. These name lookup services---the @file{libnss_*.so} files---are @code{dlopen}'d, but they may come from the host system's C library, rather than from the C library the application is linked against (the C library coming from Guix)." msgstr "Когда выполняется разрешение имён, например, вызовом функции C @code{getaddrinfo}, приложения вначале делают попытку соединиться с nscd; в случае успеха nscd выполняет разрешение имён по их запросу. Если nscd не запущен, тогда они выполняют разрешение имён самостоятельно, загружая сервисы разрешения имён в их собственные адресные пространства и запуская их. Эти сервисы разрешения имён --- файлы @file{libnss_*.so} --- запускаются @code{dlopen}, но они могут поставляться системной библиотекой C, а не библиотекой C, с которой залинковано приложение (библиотека C из Guix)." #. type: Plain text -#: guix-git/doc/guix.texi:1922 +#: guix-git/doc/guix.texi:1939 msgid "And this is where the problem is: if your application is linked against Guix's C library (say, glibc 2.24) and tries to load NSS plugins from another C library (say, @code{libnss_mdns.so} for glibc 2.22), it will likely crash or have its name lookups fail unexpectedly." msgstr "Вот где кроется проблема --- если ваше приложение залинковано с библиотекой C Guix (скажем, glibc 2.24) и пытается загрузить плагины NSS из другой библиотеки C (скажем, @code{libnss_mdns.so} для glibc 2.22), это вероятно вызовет падение или резолвинг имени завершится с ошибкой." #. type: Plain text -#: guix-git/doc/guix.texi:1927 +#: guix-git/doc/guix.texi:1944 msgid "Running @command{nscd} on the system, among other advantages, eliminates this binary incompatibility problem because those @code{libnss_*.so} files are loaded in the @command{nscd} process, not in applications themselves." msgstr "Запуск @command{nscd} в системе, помимо преимуществ, также исключает эту проблему несовместимости программ, потому что файлы @code{libnss_*.so} загружены в процессе @command{nscd}, а не в самом приложении." #. type: subsection -#: guix-git/doc/guix.texi:1928 +#: guix-git/doc/guix.texi:1945 #, no-wrap msgid "X11 Fonts" msgstr "Шрифты X11" #. type: Plain text -#: guix-git/doc/guix.texi:1938 +#: guix-git/doc/guix.texi:1955 #, fuzzy #| msgid "The majority of graphical applications use Fontconfig to locate and load fonts and perform X11-client-side rendering. The @code{fontconfig} package in Guix looks for fonts in @file{$HOME/.guix-profile} by default. Thus, to allow graphical applications installed with Guix to display fonts, you have to install fonts with Guix as well. Essential font packages include @code{gs-fonts}, @code{font-dejavu}, and @code{font-gnu-freefont}." msgid "The majority of graphical applications use Fontconfig to locate and load fonts and perform X11-client-side rendering. The @code{fontconfig} package in Guix looks for fonts in @file{$HOME/.guix-profile} by default. Thus, to allow graphical applications installed with Guix to display fonts, you have to install fonts with Guix as well. Essential font packages include @code{font-ghostscript}, @code{font-dejavu}, and @code{font-gnu-freefont}." msgstr "Большинство графических приложений использует Fontconfig для обнаружения и загрузки шрифтов, а также рендеринга X11 на клиенте. Пакет Guix @code{fontconfig} отвечает за шрифты в @file{$HOME/.guix-profile} по умолчанию. Так что, чтобы графические приложения, установленные с помощью Guix, отображали шрифты, необходимо установить шрифты также с помощью Guix. Основные пакеты шрифтов: @code{gs-fonts}, @code{font-dejavu} и @code{font-gnu-freefont-ttf}." #. type: code{#1} -#: guix-git/doc/guix.texi:1939 +#: guix-git/doc/guix.texi:1956 #, no-wrap msgid "fc-cache" msgstr "fc-cache" #. type: cindex -#: guix-git/doc/guix.texi:1940 +#: guix-git/doc/guix.texi:1957 #, no-wrap msgid "font cache" msgstr "кеш шрифтов" #. type: Plain text -#: guix-git/doc/guix.texi:1944 +#: guix-git/doc/guix.texi:1961 msgid "Once you have installed or removed fonts, or when you notice an application that does not find fonts, you may need to install Fontconfig and to force an update of its font cache by running:" msgstr "После того, как вы установили или удалили шрифты, или когда вы заметили приложение, которое не находит шрифты, вам может потребоваться установить Fontconfig и принудительно обновить кэш шрифтов, выполнив:" #. type: example -#: guix-git/doc/guix.texi:1948 +#: guix-git/doc/guix.texi:1965 #, no-wrap msgid "" "guix install fontconfig\n" @@ -7437,266 +7531,266 @@ msgstr "" "fc-cache -rv\n" #. type: Plain text -#: guix-git/doc/guix.texi:1956 +#: guix-git/doc/guix.texi:1973 msgid "To display text written in Chinese languages, Japanese, or Korean in graphical applications, consider installing @code{font-adobe-source-han-sans} or @code{font-wqy-zenhei}. The former has multiple outputs, one per language family (@pxref{Packages with Multiple Outputs}). For instance, the following command installs fonts for Chinese languages:" msgstr "Для отображения в графических приложениях текста на китайском, японском, корейском нужно установить @code{font-adobe-source-han-sans} или @code{font-wqy-zenhei}. Первый имеет множественный выход, один для языковой семьи (@pxref{Packages with Multiple Outputs}). Например, следующая команда устанавливает шрифты для китайских языков:" #. type: example -#: guix-git/doc/guix.texi:1959 +#: guix-git/doc/guix.texi:1976 #, no-wrap msgid "guix install font-adobe-source-han-sans:cn\n" msgstr "guix install font-adobe-source-han-sans:cn\n" #. type: code{#1} -#: guix-git/doc/guix.texi:1961 +#: guix-git/doc/guix.texi:1978 #, no-wrap msgid "xterm" msgstr "xterm" #. type: Plain text -#: guix-git/doc/guix.texi:1965 +#: guix-git/doc/guix.texi:1982 msgid "Older programs such as @command{xterm} do not use Fontconfig and instead rely on server-side font rendering. Such programs require to specify a full name of a font using XLFD (X Logical Font Description), like this:" msgstr "Старые программы, например, @command{xterm}, не используют Fontconfig, а вместо этого вызывают рендеринг шрифтов на стороне сервера. Таким программам необходимо указывать полное имя шрифта, используя XLFD (X Logical Font Description), примерно так:" #. type: example -#: guix-git/doc/guix.texi:1968 +#: guix-git/doc/guix.texi:1985 #, no-wrap msgid "-*-dejavu sans-medium-r-normal-*-*-100-*-*-*-*-*-1\n" msgstr "-*-dejavu sans-medium-r-normal-*-*-100-*-*-*-*-*-1\n" #. type: Plain text -#: guix-git/doc/guix.texi:1972 +#: guix-git/doc/guix.texi:1989 msgid "To be able to use such full names for the TrueType fonts installed in your Guix profile, you need to extend the font path of the X server:" msgstr "Чтобы иметь возможность использовать такие полные имена для шрифтов TrueType, установленных в вашем профиле Guix, вам нужно расширить пути шрифтов X-сервера:" #. type: example -#: guix-git/doc/guix.texi:1977 +#: guix-git/doc/guix.texi:1994 #, no-wrap msgid "xset +fp $(dirname $(readlink -f ~/.guix-profile/share/fonts/truetype/fonts.dir))\n" msgstr "xset +fp $(dirname $(readlink -f ~/.guix-profile/share/fonts/truetype/fonts.dir))\n" #. type: code{#1} -#: guix-git/doc/guix.texi:1979 +#: guix-git/doc/guix.texi:1996 #, no-wrap msgid "xlsfonts" msgstr "xlsfonts" #. type: Plain text -#: guix-git/doc/guix.texi:1982 +#: guix-git/doc/guix.texi:1999 msgid "After that, you can run @code{xlsfonts} (from @code{xlsfonts} package) to make sure your TrueType fonts are listed there." msgstr "После этого можно запустить @code{xlsfonts} (из пакета @code{xlsfonts}), чтобы убедиться, что ваши шрифты TrueType находятся там." #. type: code{#1} -#: guix-git/doc/guix.texi:1986 guix-git/doc/guix.texi:34161 +#: guix-git/doc/guix.texi:2003 guix-git/doc/guix.texi:34600 #, no-wrap msgid "nss-certs" msgstr "nss-certs" #. type: Plain text -#: guix-git/doc/guix.texi:1989 +#: guix-git/doc/guix.texi:2006 msgid "The @code{nss-certs} package provides X.509 certificates, which allow programs to authenticate Web servers accessed over HTTPS." msgstr "Пакет @code{nss-certs} предоставялет сертификаты X.509, которые позволяют программам аутентифицировать веб-серверы и работать через HTTPS." #. type: Plain text -#: guix-git/doc/guix.texi:1994 +#: guix-git/doc/guix.texi:2011 msgid "When using Guix on a foreign distro, you can install this package and define the relevant environment variables so that packages know where to look for certificates. @xref{X.509 Certificates}, for detailed information." msgstr "При использовании Guix на чужом дистрибутиве можно установить этот пакет и определить соответствующие переменные окружения, чтобы пакеты знали, где искать сертификаты. Смотрите @xref{X.509 Certificates} для подробной информации." #. type: code{#1} -#: guix-git/doc/guix.texi:1997 +#: guix-git/doc/guix.texi:2014 #, no-wrap msgid "emacs" msgstr "emacs" #. type: Plain text -#: guix-git/doc/guix.texi:2003 +#: guix-git/doc/guix.texi:2020 msgid "When you install Emacs packages with Guix, the Elisp files are placed under the @file{share/emacs/site-lisp/} directory of the profile in which they are installed. The Elisp libraries are made available to Emacs through the @env{EMACSLOADPATH} environment variable, which is set when installing Emacs itself." msgstr "Когда вы устанавливаете пакеты Emacs с Guix, файлы пакетов помещаются в каталог @file{share/emacs/site-lisp/} того профиля, в котором они установлены. Библиотеки Elisp доступны для Emacs через переменную среды @code{EMACSLOADPATH}, которая устанавливается при установке самого Emacs." #. type: Plain text -#: guix-git/doc/guix.texi:2010 +#: guix-git/doc/guix.texi:2027 msgid "Additionally, autoload definitions are automatically evaluated at the initialization of Emacs, by the Guix-specific @code{guix-emacs-autoload-packages} procedure. If, for some reason, you want to avoid auto-loading the Emacs packages installed with Guix, you can do so by running Emacs with the @option{--no-site-file} option (@pxref{Init File,,, emacs, The GNU Emacs Manual})." msgstr "По умолчанию Emacs (установленный Guix) \"знает\", куда размещаются эти пакеты, так что вам не нужно выполнять конфигурацию. Если по каким-либо причинам вы хотите отменить автозагрузку пакетов Emacs, установленных с помощью Guix, вы можете это сделать, запустив Emacs с опцией @code{--no-site-file} (@pxref{Init File,,, emacs, The GNU Emacs Manual})." #. type: cindex -#: guix-git/doc/guix.texi:2015 +#: guix-git/doc/guix.texi:2032 #, no-wrap msgid "Upgrading Guix, on a foreign distro" msgstr "Обновление Guix на ином дистрибутиве" #. type: Plain text -#: guix-git/doc/guix.texi:2018 +#: guix-git/doc/guix.texi:2035 msgid "To upgrade Guix, run:" msgstr "Чтобы обновить Guix, запустите:" #. type: example -#: guix-git/doc/guix.texi:2021 guix-git/doc/guix.texi:2879 +#: guix-git/doc/guix.texi:2038 guix-git/doc/guix.texi:2896 #, no-wrap msgid "guix pull\n" msgstr "guix pull\n" #. type: Plain text -#: guix-git/doc/guix.texi:2024 +#: guix-git/doc/guix.texi:2041 msgid "@xref{Invoking guix pull}, for more information." msgstr "@xref{Invoking guix pull} для дополнительной информации." #. type: cindex -#: guix-git/doc/guix.texi:2025 +#: guix-git/doc/guix.texi:2042 #, no-wrap msgid "upgrading Guix for the root user, on a foreign distro" msgstr "обновление Guix для пользователя root на ином дистрибутиве" #. type: cindex -#: guix-git/doc/guix.texi:2026 +#: guix-git/doc/guix.texi:2043 #, no-wrap msgid "upgrading the Guix daemon, on a foreign distro" msgstr "обновление Guix демона на ином дистрибутиве" #. type: cindex -#: guix-git/doc/guix.texi:2027 +#: guix-git/doc/guix.texi:2044 #, no-wrap msgid "@command{guix pull} for the root user, on a foreign distro" msgstr "@command{guix pull} для пользователя root, на ином дистрибутиве" #. type: Plain text -#: guix-git/doc/guix.texi:2030 +#: guix-git/doc/guix.texi:2047 msgid "On a foreign distro, you can upgrade the build daemon by running:" msgstr "В ином дистрибутиве вы можете обновить демон сборки, запустив:" #. type: example -#: guix-git/doc/guix.texi:2033 +#: guix-git/doc/guix.texi:2050 #, no-wrap msgid "sudo -i guix pull\n" msgstr "sudo -i guix pull\n" #. type: Plain text -#: guix-git/doc/guix.texi:2038 +#: guix-git/doc/guix.texi:2055 msgid "followed by (assuming your distro uses the systemd service management tool):" msgstr "затем (при условии, что ваш дистрибутив использует инструмент управления сервисами systemd):" #. type: example -#: guix-git/doc/guix.texi:2041 +#: guix-git/doc/guix.texi:2058 #, no-wrap msgid "systemctl restart guix-daemon.service\n" msgstr "systemctl restart guix-daemon.service\n" #. type: Plain text -#: guix-git/doc/guix.texi:2045 +#: guix-git/doc/guix.texi:2062 msgid "On Guix System, upgrading the daemon is achieved by reconfiguring the system (@pxref{Invoking guix system, @code{guix system reconfigure}})." msgstr "В системе Guix обновление демона достигается путем перенастройки системы (@pxref{Invoking guix system, @code{guix system reconfigure}})." #. type: cindex -#: guix-git/doc/guix.texi:2052 +#: guix-git/doc/guix.texi:2069 #, no-wrap msgid "installing Guix System" msgstr "установка системы Guix" #. type: cindex -#: guix-git/doc/guix.texi:2053 +#: guix-git/doc/guix.texi:2070 #, no-wrap msgid "Guix System, installation" msgstr "Система Guix, установка" #. type: Plain text -#: guix-git/doc/guix.texi:2058 +#: guix-git/doc/guix.texi:2075 msgid "This section explains how to install Guix System on a machine. Guix, as a package manager, can also be installed on top of a running GNU/Linux system, @pxref{Installation}." msgstr "Этот раздел объясняет, как установить систему Guix на компьютер. Guix, как пакетный менеджер, можно также установить на уже установленную систему GNU/Linux (@pxref{Installation})." #. type: quotation -#: guix-git/doc/guix.texi:2067 +#: guix-git/doc/guix.texi:2084 msgid "You are reading this documentation with an Info reader. For details on how to use it, hit the @key{RET} key (``return'' or ``enter'') on the link that follows: @pxref{Top, Info reader,, info-stnd, Stand-alone GNU Info}. Hit @kbd{l} afterwards to come back here." msgstr "Вы читаете этот документ с помощью info-просмотрщика. Чтобы узнать, как им пользоваться, нажмите кнопку @key{Ввод} (enter) по ссылке: @pxref{Top, Info reader,, info-stnd, Stand-alone GNU Info}. Нажмите @kbd{1} после этого, чтобы вернуться." #. type: quotation -#: guix-git/doc/guix.texi:2070 +#: guix-git/doc/guix.texi:2087 msgid "Alternatively, run @command{info info} in another tty to keep the manual available." msgstr "Или запустите @command{info info} в другом tty, чтобы оставить руководство доступным." #. type: Plain text -#: guix-git/doc/guix.texi:2091 +#: guix-git/doc/guix.texi:2108 msgid "We consider Guix System to be ready for a wide range of ``desktop'' and server use cases. The reliability guarantees it provides---transactional upgrades and rollbacks, reproducibility---make it a solid foundation." msgstr "Мы полагаем, система Guix будет широко применяться для офисных и серверных решений. Гарантия надёжности основана на транзакционных обновлениях, откатах и воспроизводимости. Это наше прочное основание." #. type: Plain text -#: guix-git/doc/guix.texi:2094 +#: guix-git/doc/guix.texi:2111 msgid "Nevertheless, before you proceed with the installation, be aware of the following noteworthy limitations applicable to version @value{VERSION}:" msgstr "Тем не менее, перед началом установки, ознакомьтесь с важной информацией об ограничениях версии @value{VERSION}:" #. type: itemize -#: guix-git/doc/guix.texi:2099 +#: guix-git/doc/guix.texi:2116 msgid "More and more system services are provided (@pxref{Services}), but some may be missing." msgstr "Мы постоянно добавляем новые сервисы (@pxref{Services}), но некоторые могут отсутствовать." #. type: itemize -#: guix-git/doc/guix.texi:2104 +#: guix-git/doc/guix.texi:2121 msgid "GNOME, Xfce, LXDE, and Enlightenment are available (@pxref{Desktop Services}), as well as a number of X11 window managers. However, KDE is currently missing." msgstr "Доступные GNOME, Xfce, LXDE и Enlightenment (@pxref{Desktop Services}), а также ряд оконных менеджеров X11. Однако, KDE в настоящее время отсутствует." #. type: Plain text -#: guix-git/doc/guix.texi:2109 +#: guix-git/doc/guix.texi:2126 msgid "More than a disclaimer, this is an invitation to report issues (and success stories!), and to join us in improving it. @xref{Contributing}, for more info." msgstr "Мы настойчиво призываем вас присылать отчёты о проблемах (или историиуспеха!). Присоединяйтесь к нам, если вы хотите улучшить Guix. Смотрите @xref{Contributing}, чтобы узнать больше." #. type: cindex -#: guix-git/doc/guix.texi:2114 +#: guix-git/doc/guix.texi:2131 #, no-wrap msgid "hardware support on Guix System" msgstr "поддержка аппаратного обеспечения в системе Guix" #. type: Plain text -#: guix-git/doc/guix.texi:2123 +#: guix-git/doc/guix.texi:2140 msgid "GNU@tie{}Guix focuses on respecting the user's computing freedom. It builds around the kernel Linux-libre, which means that only hardware for which free software drivers and firmware exist is supported. Nowadays, a wide range of off-the-shelf hardware is supported on GNU/Linux-libre---from keyboards to graphics cards to scanners and Ethernet controllers. Unfortunately, there are still areas where hardware vendors deny users control over their own computing, and such hardware is not supported on Guix System." msgstr "GNU@tie{}Guix особенно заботится об уважении свободы пользователя при работе за компьютером. Она построена на ядре Linux-libre, что означает, что поддерживается только аппаратное обеспечение, которое имеет свободные драйверы и прошивки. Сегодня широкий список наличествующей аппаратуры поддерживается GNU/Linux-libre --- от клавиатур и графических карт до сканеров и контроллеров Ethernet. К сожалению, всё ещё остаётся ряд производителей железа, которые запрещают пользователям управлять их устройствами, и такое аппаратное обеспечение не поддерживается системой Guix." #. type: cindex -#: guix-git/doc/guix.texi:2124 +#: guix-git/doc/guix.texi:2141 #, no-wrap msgid "WiFi, hardware support" msgstr "WiFi, поддержка аппаратного обеспечения" #. type: Plain text -#: guix-git/doc/guix.texi:2133 +#: guix-git/doc/guix.texi:2150 msgid "One of the main areas where free drivers or firmware are lacking is WiFi devices. WiFi devices known to work include those using Atheros chips (AR9271 and AR7010), which corresponds to the @code{ath9k} Linux-libre driver, and those using Broadcom/AirForce chips (BCM43xx with Wireless-Core Revision 5), which corresponds to the @code{b43-open} Linux-libre driver. Free firmware exists for both and is available out-of-the-box on Guix System, as part of @code{%base-firmware} (@pxref{operating-system Reference, @code{firmware}})." msgstr "Основной областью, в которой отсутствуют свободные драйверы и прошивки, являются устройства Wi-Fi. Работают устройства Wi-Fi, которые используют платы Atheros (AR9271 и AR7010) и взаимодействуют с драйвером Linux-libre @code{ath9k}, также использующие платы Broadcom/AirForce (BCM43xx with Wireless-Core Revision 5), которые работают с драйвером Linux-libre @code{b43-open}. Свободная прошивка существует для обоих и доступна в системе Guix из коробки как часть @var{%base-firmware} (@pxref{operating-system Reference, @code{firmware}})." #. type: cindex -#: guix-git/doc/guix.texi:2134 +#: guix-git/doc/guix.texi:2151 #, no-wrap msgid "RYF, Respects Your Freedom" msgstr "уважение вашей свободы (RYF)" #. type: Plain text -#: guix-git/doc/guix.texi:2140 +#: guix-git/doc/guix.texi:2157 msgid "The @uref{https://www.fsf.org/, Free Software Foundation} runs @uref{https://www.fsf.org/ryf, @dfn{Respects Your Freedom}} (RYF), a certification program for hardware products that respect your freedom and your privacy and ensure that you have control over your device. We encourage you to check the list of RYF-certified devices." msgstr "@uref{https://www.fsf.org/, Фонд свободного программного обспечения FSF} ведёт @uref{https://www.fsf.org/ryf, @dfn{Уважение вашей свободы}} (RYF) --- программу сертификации аппаратного обеспечения, которое уважает вашу свободу и вашу безопасность и утверждает, что вы имеете контроль над вашими устройствами. Мы побуждаем вас проверить список устройств, сертифицированных RYF." #. type: Plain text -#: guix-git/doc/guix.texi:2144 +#: guix-git/doc/guix.texi:2161 msgid "Another useful resource is the @uref{https://www.h-node.org/, H-Node} web site. It contains a catalog of hardware devices with information about their support in GNU/Linux." msgstr "Другой полезный ресурс --- сайт @uref{https://www.h-node.org/, H-Node}. Он содержит каталог устройств с информацией об их поддержке в GNU/Linux." #. type: Plain text -#: guix-git/doc/guix.texi:2153 +#: guix-git/doc/guix.texi:2170 msgid "An ISO-9660 installation image that can be written to a USB stick or burnt to a DVD can be downloaded from @indicateurl{@value{BASE-URL}/guix-system-install-@value{VERSION}.x86_64-linux.iso}, where you can replace @code{x86_64-linux} with one of:" msgstr "Установочный образ ISO-9660 может быть записан на USB-флеш или DVD, скачать его можно по адресу: @indicateurl{https://alpha.gnu.org/gnu/guix/guix-system-install-@value{VERSION}.@var{system}.iso}, где @var{system} одна из следующих:" #. type: table -#: guix-git/doc/guix.texi:2157 +#: guix-git/doc/guix.texi:2174 msgid "for a GNU/Linux system on Intel/AMD-compatible 64-bit CPUs;" msgstr "для системы GNU/Linux на 64-битных Intel/AMD-совместимых процессорах;" #. type: table -#: guix-git/doc/guix.texi:2160 +#: guix-git/doc/guix.texi:2177 msgid "for a 32-bit GNU/Linux system on Intel-compatible CPUs." msgstr "для системы GNU/Linux на 32-битных Intel-совместимых процессорах." #. type: Plain text -#: guix-git/doc/guix.texi:2165 +#: guix-git/doc/guix.texi:2182 msgid "Make sure to download the associated @file{.sig} file and to verify the authenticity of the image against it, along these lines:" msgstr "Обязательно скачайте связанный файл подписи @file{.sig} и проверьте аутентичность образа так:" #. type: example -#: guix-git/doc/guix.texi:2169 +#: guix-git/doc/guix.texi:2186 #, no-wrap msgid "" "$ wget @value{BASE-URL}/guix-system-install-@value{VERSION}.x86_64-linux.iso.sig\n" @@ -7706,7 +7800,7 @@ msgstr "" "$ gpg --verify guix-system-install-@value{VERSION}.x86_64-linux.iso.sig\n" #. type: example -#: guix-git/doc/guix.texi:2177 +#: guix-git/doc/guix.texi:2194 #, no-wrap msgid "" "$ wget @value{OPENPGP-SIGNING-KEY-URL} \\\n" @@ -7716,23 +7810,23 @@ msgstr "" " -qO - | gpg --import -\n" #. type: Plain text -#: guix-git/doc/guix.texi:2189 +#: guix-git/doc/guix.texi:2206 msgid "This image contains the tools necessary for an installation. It is meant to be copied @emph{as is} to a large-enough USB stick or DVD." msgstr "Этот образ содержит инструменты, необходимые для установки. Он должен копироваться @emph{как есть} на большую USB-флеш или DVD." #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2190 +#: guix-git/doc/guix.texi:2207 #, no-wrap msgid "Copying to a USB Stick" msgstr "Запись на USB-флеш" #. type: Plain text -#: guix-git/doc/guix.texi:2195 +#: guix-git/doc/guix.texi:2212 msgid "Insert a USB stick of 1@tie{}GiB or more into your machine, and determine its device name. Assuming that the USB stick is known as @file{/dev/sdX}, copy the image with:" msgstr "Вставьте в компьютер USB-флеш объёмом 1@tie{}Гб или более и определите его имя. Учитывая имя (обычно соответствующее @file{/dev/sdX}) скопируйте образ на него:" #. type: example -#: guix-git/doc/guix.texi:2199 +#: guix-git/doc/guix.texi:2216 #, no-wrap msgid "" "dd if=guix-system-install-@value{VERSION}.x86_64-linux.iso of=/dev/sdX status=progress\n" @@ -7742,238 +7836,238 @@ msgstr "" "sync\n" #. type: Plain text -#: guix-git/doc/guix.texi:2202 +#: guix-git/doc/guix.texi:2219 msgid "Access to @file{/dev/sdX} usually requires root privileges." msgstr "Доступ к @file{/dev/sdX} обычно требует привилегий root." #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2203 +#: guix-git/doc/guix.texi:2220 #, no-wrap msgid "Burning on a DVD" msgstr "Запись на DVD" #. type: Plain text -#: guix-git/doc/guix.texi:2208 +#: guix-git/doc/guix.texi:2225 msgid "Insert a blank DVD into your machine, and determine its device name. Assuming that the DVD drive is known as @file{/dev/srX}, copy the image with:" msgstr "Вставьте чистый DVD в компьютер и определите имя устройства. Обычно DVD определяется как @file{/dev/srX}, скопируйте образ так:" #. type: example -#: guix-git/doc/guix.texi:2211 +#: guix-git/doc/guix.texi:2228 #, no-wrap msgid "growisofs -dvd-compat -Z /dev/srX=guix-system-install-@value{VERSION}.x86_64-linux.iso\n" msgstr "growisofs -dvd-compat -Z /dev/srX=guix-system-install-@value{VERSION}.x86_64-linux.iso\n" #. type: Plain text -#: guix-git/doc/guix.texi:2214 +#: guix-git/doc/guix.texi:2231 msgid "Access to @file{/dev/srX} usually requires root privileges." msgstr "Доступ к @file{/dev/srX} обычно требует привилегий root." #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2215 +#: guix-git/doc/guix.texi:2232 #, no-wrap msgid "Booting" msgstr "Загрузка" #. type: Plain text -#: guix-git/doc/guix.texi:2222 +#: guix-git/doc/guix.texi:2239 msgid "Once this is done, you should be able to reboot the system and boot from the USB stick or DVD@. The latter usually requires you to get in the BIOS or UEFI boot menu, where you can choose to boot from the USB stick. In order to boot from Libreboot, switch to the command mode by pressing the @kbd{c} key and type @command{search_grub usb}." msgstr "Когда это сделано, вы должны перезагрузить систему и загрузиться с USB-флеш или DVD. Последнее обычно требует доступа к меню BIOS или UEFI, где можно выбрать загрузку с USB-флеш." #. type: Plain text -#: guix-git/doc/guix.texi:2225 +#: guix-git/doc/guix.texi:2242 msgid "@xref{Installing Guix in a VM}, if, instead, you would like to install Guix System in a virtual machine (VM)." msgstr "Смотрите @xref{Installing Guix in a VM}, если вы хотите установить систему Guix на виртуальную машину (VM)." #. type: Plain text -#: guix-git/doc/guix.texi:2235 +#: guix-git/doc/guix.texi:2252 msgid "Once you have booted, you can use the guided graphical installer, which makes it easy to get started (@pxref{Guided Graphical Installation}). Alternatively, if you are already familiar with GNU/Linux and if you want more control than what the graphical installer provides, you can choose the ``manual'' installation process (@pxref{Manual Installation})." msgstr "Когда вы загрузитесь, вы можете использовать графическую установку, которая намного проще для начала (@pxref{Guided Graphical Installation}). Или если вы уже знакомы с GNU/Linux или вы хотите больший контроль, чем это предоставляет графическая установка, вы можете выбрать ручной процесс установки (@pxref{Manual Installation})." #. type: Plain text -#: guix-git/doc/guix.texi:2243 +#: guix-git/doc/guix.texi:2260 msgid "The graphical installer is available on TTY1. You can obtain root shells on TTYs 3 to 6 by hitting @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4}, etc. TTY2 shows this documentation and you can reach it with @kbd{ctrl-alt-f2}. Documentation is browsable using the Info reader commands (@pxref{Top,,, info-stnd, Stand-alone GNU Info}). The installation system runs the GPM mouse daemon, which allows you to select text with the left mouse button and to paste it with the middle button." msgstr "Графическа установка доступна в TTY1. Вы можете запустить оболочку root в TTY 3-6, нажимая @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4} и т.д. TTY2 отображает эту документацию, открыть его можно клавишами @kbd{ctrl-alt-f2}. Листать документацию можно командами просмотрщика Info (@pxref{Top,,, info-stnd, Stand-alone GNU Info}). Установка системы запускает демона мыши GPM, который позволяет вам выделять текст лековй кнопкой мыши и вставлять средней кнопкой." #. type: quotation -#: guix-git/doc/guix.texi:2248 +#: guix-git/doc/guix.texi:2265 msgid "Installation requires access to the Internet so that any missing dependencies of your system configuration can be downloaded. See the ``Networking'' section below." msgstr "Установка требует доступа к Интернету, чтобы скачивать любые отсутствующие зависимости в вашей конфигурации системы. Смотрите раздел \"Сеть\" ниже." #. type: Plain text -#: guix-git/doc/guix.texi:2255 +#: guix-git/doc/guix.texi:2272 msgid "The graphical installer is a text-based user interface. It will guide you, with dialog boxes, through the steps needed to install GNU@tie{}Guix System." msgstr "Графический установщик представляет собой текстовый интерфейс. Он взаимодействует через диалоговые блоки, проходя шаги установки системы GNU@tie{}Guix." #. type: Plain text -#: guix-git/doc/guix.texi:2260 +#: guix-git/doc/guix.texi:2277 msgid "The first dialog boxes allow you to set up the system as you use it during the installation: you can choose the language, keyboard layout, and set up networking, which will be used during the installation. The image below shows the networking dialog." msgstr "Первый диалоговый блок позволяет вам установить систему в таком виде, как во время установки. Вы можете выбрать язык, раскладку клавиатуры, задать настройки сети для установки. На картинке ниже --- диалог настройки сети." #. type: Plain text -#: guix-git/doc/guix.texi:2262 +#: guix-git/doc/guix.texi:2279 msgid "@image{images/installer-network,5in,, networking setup with the graphical installer}" msgstr "@image{images/installer-network,5in,, networking setup with the graphical installer}" #. type: Plain text -#: guix-git/doc/guix.texi:2267 +#: guix-git/doc/guix.texi:2284 msgid "Later steps allow you to partition your hard disk, as shown in the image below, to choose whether or not to use encrypted file systems, to enter the host name and root password, and to create an additional account, among other things." msgstr "Следующие шаги позволят вам разметить диск, как это показано на картинке ниже. Также можно выбрать шифрование вайловой системы (или без шифрования), ввести имя хоста и пароль root, создать дополнительную учётную запись и другие действия." #. type: Plain text -#: guix-git/doc/guix.texi:2269 +#: guix-git/doc/guix.texi:2286 msgid "@image{images/installer-partitions,5in,, partitioning with the graphical installer}" msgstr "@image{images/installer-partitions,5in,, partitioning with the graphical installer}" #. type: Plain text -#: guix-git/doc/guix.texi:2272 +#: guix-git/doc/guix.texi:2289 msgid "Note that, at any time, the installer allows you to exit the current installation step and resume at a previous step, as show in the image below." msgstr "Отметим, что в любое время установщик позволяет вам отменить текущий шаг и вернуться к предыдущему шагу установки, как это показано на картинке ниже." #. type: Plain text -#: guix-git/doc/guix.texi:2274 +#: guix-git/doc/guix.texi:2291 msgid "@image{images/installer-resume,5in,, resuming the installation process}" msgstr "@image{images/installer-resume,5in,, resuming the installation process}" #. type: Plain text -#: guix-git/doc/guix.texi:2279 +#: guix-git/doc/guix.texi:2296 msgid "Once you're done, the installer produces an operating system configuration and displays it (@pxref{Using the Configuration System}). At that point you can hit ``OK'' and installation will proceed. On success, you can reboot into the new system and enjoy. @xref{After System Installation}, for what's next!" msgstr "Когда настройки выполнены, установщик сгенерирует конфигурацию операционной системы и отобразит её (@pxref{Using the Configuration System}). На этом этапе нажатие ``OK'' запустит установку. После успешнго завершения нужно перезагрузиться и использовать новую систему. Смотрите @xref{After System Installation}, чтобы узнать ещё больше!" #. type: Plain text -#: guix-git/doc/guix.texi:2289 +#: guix-git/doc/guix.texi:2306 msgid "This section describes how you would ``manually'' install GNU@tie{}Guix System on your machine. This option requires familiarity with GNU/Linux, with the shell, and with common administration tools. If you think this is not for you, consider using the guided graphical installer (@pxref{Guided Graphical Installation})." msgstr "Этот раздел описывает, как можно вручную установить систему GNU@tie{}Guix на вашу машину. Это потребует знаний GNU/Linux, оболочки и инструментов администрирования. Если вы считаете, это не для вас, используйте вариант графической установки (@pxref{Guided Graphical Installation})." #. type: Plain text -#: guix-git/doc/guix.texi:2295 +#: guix-git/doc/guix.texi:2312 msgid "The installation system provides root shells on TTYs 3 to 6; press @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4}, and so on to reach them. It includes many common tools needed to install the system. But it is also a full-blown Guix System, which means that you can install additional packages, should you need it, using @command{guix package} (@pxref{Invoking guix package})." msgstr "Во время установки доступна оболочка root в TTY от 3 до 6. Нажмите @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4} и т.д., чтобы переключиться на них. Они имеют много стандартных инструментов для установки системы. Но это также работающая система Guix, а это значит, что вы можете установить дополнительные пакеты, которые потребуются, используя @command{guix package} (@pxref{Invoking guix package})." #. type: subsection -#: guix-git/doc/guix.texi:2302 +#: guix-git/doc/guix.texi:2319 #, no-wrap msgid "Keyboard Layout, Networking, and Partitioning" msgstr "Раскладка клавиатуры, Сеть, Разметка диска" #. type: Plain text -#: guix-git/doc/guix.texi:2307 +#: guix-git/doc/guix.texi:2324 msgid "Before you can install the system, you may want to adjust the keyboard layout, set up networking, and partition your target hard disk. This section will guide you through this." msgstr "Перед установкой системы вам может понадобиться смена раскладки клавиатуры, а также настройка сети и разметка целевого жёсткого диска. В этом разделе приведены соответствующие инструкции." #. type: cindex -#: guix-git/doc/guix.texi:2310 guix-git/doc/guix.texi:15584 +#: guix-git/doc/guix.texi:2327 guix-git/doc/guix.texi:15941 #, no-wrap msgid "keyboard layout" msgstr "раскладка клавиатуры" #. type: Plain text -#: guix-git/doc/guix.texi:2314 +#: guix-git/doc/guix.texi:2331 msgid "The installation image uses the US qwerty keyboard layout. If you want to change it, you can use the @command{loadkeys} command. For example, the following command selects the Dvorak keyboard layout:" msgstr "Установочный образ использует раскладку клавиатуры US qwerty. Если нужно поменять её, можно пользоваться командой @command{loadkeys}. Например, следующая команда выбирает раскладку клавиатуры Dvorak:" #. type: example -#: guix-git/doc/guix.texi:2317 +#: guix-git/doc/guix.texi:2334 #, no-wrap msgid "loadkeys dvorak\n" msgstr "loadkeys dvorak\n" #. type: Plain text -#: guix-git/doc/guix.texi:2322 +#: guix-git/doc/guix.texi:2339 msgid "See the files under @file{/run/current-system/profile/share/keymaps} for a list of available keyboard layouts. Run @command{man loadkeys} for more information." msgstr "Смотрите файлы в @file{/run/current-system/profile/share/keymaps}, чтобы найти список доступных раскладок. Запустите @command{man loadkeys}, чтобы узнать больше." #. type: subsubsection -#: guix-git/doc/guix.texi:2323 +#: guix-git/doc/guix.texi:2340 #, no-wrap msgid "Networking" msgstr "Сеть" #. type: Plain text -#: guix-git/doc/guix.texi:2326 +#: guix-git/doc/guix.texi:2343 msgid "Run the following command to see what your network interfaces are called:" msgstr "Запустите следующую команду, чтобы узнать имена сетевых интерфейсов:" #. type: example -#: guix-git/doc/guix.texi:2329 +#: guix-git/doc/guix.texi:2346 #, no-wrap msgid "ifconfig -a\n" msgstr "ifconfig -a\n" #. type: table -#: guix-git/doc/guix.texi:2333 guix-git/doc/guix.texi:2355 +#: guix-git/doc/guix.texi:2350 guix-git/doc/guix.texi:2372 msgid "@dots{} or, using the GNU/Linux-specific @command{ip} command:" msgstr "@dots{} или используйте специальную команду GNU/Linux @command{ip}:" #. type: example -#: guix-git/doc/guix.texi:2336 +#: guix-git/doc/guix.texi:2353 #, no-wrap msgid "ip address\n" msgstr "ip address\n" #. type: Plain text -#: guix-git/doc/guix.texi:2343 +#: guix-git/doc/guix.texi:2360 msgid "Wired interfaces have a name starting with @samp{e}; for example, the interface corresponding to the first on-board Ethernet controller is called @samp{eno1}. Wireless interfaces have a name starting with @samp{w}, like @samp{w1p2s0}." msgstr "Проводные интерфейсы называются на букву @samp{e}; например, интерфейс, соответствующий первому контроллеру Ethernet на материнской плате, называется @samp{eno1}. Беспроводные интерфейсы имеют имена, начинающиеся с @samp{w}, как @samp{w1p2s0}." #. type: item -#: guix-git/doc/guix.texi:2345 +#: guix-git/doc/guix.texi:2362 #, no-wrap msgid "Wired connection" msgstr "Проводное соединение" #. type: table -#: guix-git/doc/guix.texi:2348 +#: guix-git/doc/guix.texi:2365 msgid "To configure a wired network run the following command, substituting @var{interface} with the name of the wired interface you want to use." msgstr "Чтобы настроить проводную сеть, запустите следующую команду, заменив @var{interface} именем проводного интерфейса, который вы хотите использовать." #. type: example -#: guix-git/doc/guix.texi:2351 +#: guix-git/doc/guix.texi:2368 #, no-wrap msgid "ifconfig @var{interface} up\n" msgstr "ifconfig @var{interface} up\n" #. type: example -#: guix-git/doc/guix.texi:2358 +#: guix-git/doc/guix.texi:2375 #, no-wrap msgid "ip link set @var{interface} up\n" msgstr "ifconfig @var{interface} up\n" #. type: item -#: guix-git/doc/guix.texi:2360 +#: guix-git/doc/guix.texi:2377 #, no-wrap msgid "Wireless connection" msgstr "Беспроводное соединение" #. type: cindex -#: guix-git/doc/guix.texi:2361 guix-git/doc/guix.texi:17484 +#: guix-git/doc/guix.texi:2378 guix-git/doc/guix.texi:17846 #, no-wrap msgid "wireless" msgstr "беспроводной" #. type: cindex -#: guix-git/doc/guix.texi:2362 guix-git/doc/guix.texi:17485 +#: guix-git/doc/guix.texi:2379 guix-git/doc/guix.texi:17847 #, no-wrap msgid "WiFi" msgstr "WiFi" #. type: table -#: guix-git/doc/guix.texi:2367 +#: guix-git/doc/guix.texi:2384 msgid "To configure wireless networking, you can create a configuration file for the @command{wpa_supplicant} configuration tool (its location is not important) using one of the available text editors such as @command{nano}:" msgstr "Чтобы настроить беспроводную сеть, можно создать конфигурционный файл для @command{wpa_supplicant} (расположение файла неважно). Можно пользоваться любым доступным текстовым редактором, например, @command{nano}:" #. type: example -#: guix-git/doc/guix.texi:2370 +#: guix-git/doc/guix.texi:2387 #, no-wrap msgid "nano wpa_supplicant.conf\n" msgstr "nano wpa_supplicant.conf\n" #. type: table -#: guix-git/doc/guix.texi:2375 +#: guix-git/doc/guix.texi:2392 msgid "As an example, the following stanza can go to this file and will work for many wireless networks, provided you give the actual SSID and passphrase for the network you are connecting to:" msgstr "Следующий пример настроек подойдёт для большинства беспроводных сетей. Нужно предоставить фактический SSID и парольную фразу для сети, к которой вы подключаетесь:" #. type: example -#: guix-git/doc/guix.texi:2382 +#: guix-git/doc/guix.texi:2399 #, no-wrap msgid "" "network=@{\n" @@ -7989,231 +8083,231 @@ msgstr "" "@}\n" #. type: table -#: guix-git/doc/guix.texi:2387 +#: guix-git/doc/guix.texi:2404 msgid "Start the wireless service and run it in the background with the following command (substitute @var{interface} with the name of the network interface you want to use):" msgstr "Запустите сервис беспроводной сети в фоновом режиме следующей командой (замените @var{interface} именем сетевого интерфейса, который вы используете):" #. type: example -#: guix-git/doc/guix.texi:2390 +#: guix-git/doc/guix.texi:2407 #, no-wrap msgid "wpa_supplicant -c wpa_supplicant.conf -i @var{interface} -B\n" msgstr "wpa_supplicant -c wpa_supplicant.conf -i @var{interface} -B\n" #. type: table -#: guix-git/doc/guix.texi:2393 +#: guix-git/doc/guix.texi:2410 msgid "Run @command{man wpa_supplicant} for more information." msgstr "Запустите @command{man wpa_supplicant}, чтобы узнать больше." #. type: cindex -#: guix-git/doc/guix.texi:2395 +#: guix-git/doc/guix.texi:2412 #, no-wrap msgid "DHCP" msgstr "DHCP" #. type: Plain text -#: guix-git/doc/guix.texi:2398 +#: guix-git/doc/guix.texi:2415 msgid "At this point, you need to acquire an IP address. On a network where IP addresses are automatically assigned @i{via} DHCP, you can run:" msgstr "Теперь нужно получить IP-адрес. В случае сети, где IP-адреса автоматически распределяются @i{с помощью} DHCP, можно запустить:" #. type: example -#: guix-git/doc/guix.texi:2401 +#: guix-git/doc/guix.texi:2418 #, no-wrap msgid "dhclient -v @var{interface}\n" msgstr "dhclient -v @var{interface}\n" #. type: Plain text -#: guix-git/doc/guix.texi:2404 +#: guix-git/doc/guix.texi:2421 msgid "Try to ping a server to see if networking is up and running:" msgstr "Попробуйте пинговать сервер, чтобы узнать, работает ли сеть:" #. type: example -#: guix-git/doc/guix.texi:2407 +#: guix-git/doc/guix.texi:2424 #, no-wrap msgid "ping -c 3 gnu.org\n" msgstr "ping -c 3 gnu.org\n" #. type: Plain text -#: guix-git/doc/guix.texi:2411 +#: guix-git/doc/guix.texi:2428 msgid "Setting up network access is almost always a requirement because the image does not contain all the software and tools that may be needed." msgstr "Настройка доступа к сети необходима почти всегда, потому что ораз может не иметь программное обеспечение и инструменты, которые могут понадобиться." #. type: cindex -#: guix-git/doc/guix.texi:2412 +#: guix-git/doc/guix.texi:2429 #, no-wrap msgid "proxy, during system installation" msgstr "Система Guix, установка" #. type: Plain text -#: guix-git/doc/guix.texi:2415 +#: guix-git/doc/guix.texi:2432 msgid "If you need HTTP and HTTPS access to go through a proxy, run the following command:" msgstr "Если вам нужено настроить доступ HTTP и HTTPS прокси, выполните следующую команду:" #. type: example -#: guix-git/doc/guix.texi:2418 +#: guix-git/doc/guix.texi:2435 #, no-wrap msgid "herd set-http-proxy guix-daemon @var{URL}\n" msgstr "herd set-http-proxy guix-daemon @var{URL}\n" #. type: Plain text -#: guix-git/doc/guix.texi:2423 +#: guix-git/doc/guix.texi:2440 msgid "where @var{URL} is the proxy URL, for example @code{http://example.org:8118}." msgstr "где @var{URL} адрес прокси, например @code{http://example.org:8118}." #. type: cindex -#: guix-git/doc/guix.texi:2424 +#: guix-git/doc/guix.texi:2441 #, no-wrap msgid "installing over SSH" msgstr "установка через SSH" #. type: Plain text -#: guix-git/doc/guix.texi:2427 +#: guix-git/doc/guix.texi:2444 msgid "If you want to, you can continue the installation remotely by starting an SSH server:" msgstr "Если желаете, вы можете продолжить установку удалённо, запустив SSH-сервер:" #. type: example -#: guix-git/doc/guix.texi:2430 +#: guix-git/doc/guix.texi:2447 #, no-wrap msgid "herd start ssh-daemon\n" msgstr "herd start ssh-daemon\n" #. type: Plain text -#: guix-git/doc/guix.texi:2434 +#: guix-git/doc/guix.texi:2451 msgid "Make sure to either set a password with @command{passwd}, or configure OpenSSH public key authentication before logging in." msgstr "Не забудьте задать пароль командой @command{passwd} или настроить публичный ключ OpenSSH для аутентификации, чтобы иметь возможность подключиться." #. type: subsubsection -#: guix-git/doc/guix.texi:2435 +#: guix-git/doc/guix.texi:2452 #, no-wrap msgid "Disk Partitioning" msgstr "Разметка диска" #. type: Plain text -#: guix-git/doc/guix.texi:2439 +#: guix-git/doc/guix.texi:2456 msgid "Unless this has already been done, the next step is to partition, and then format the target partition(s)." msgstr "Если это ещё не сделано, тогда нужно разделить диск, а затем отформатировать целевой(-ые) раздел(ы)." #. type: Plain text -#: guix-git/doc/guix.texi:2444 +#: guix-git/doc/guix.texi:2461 msgid "The installation image includes several partitioning tools, including Parted (@pxref{Overview,,, parted, GNU Parted User Manual}), @command{fdisk}, and @command{cfdisk}. Run it and set up your disk with the partition layout you want:" msgstr "Установочный образ содержит несколько инструментов для разметки, включая Parted (@pxref{Overview,,, parted, GNU Parted User Manual}), @command{fdisk} и @command{cfdisk}. Запустите и настройте ваш диск, используя план разметки, который нужен:" #. type: example -#: guix-git/doc/guix.texi:2447 +#: guix-git/doc/guix.texi:2464 #, no-wrap msgid "cfdisk\n" msgstr "cfdisk\n" #. type: Plain text -#: guix-git/doc/guix.texi:2453 +#: guix-git/doc/guix.texi:2470 msgid "If your disk uses the GUID Partition Table (GPT) format and you plan to install BIOS-based GRUB (which is the default), make sure a BIOS Boot Partition is available (@pxref{BIOS installation,,, grub, GNU GRUB manual})." msgstr "Если ваш диск использует формат GUID Partition Table (GPT), и вы планируете использовать GRUB, работающий с BIOS (что по умолчанию), убедитесь, что раздел BIOS Boot Partition доступен (@pxref{BIOS installation,,, grub, GNU GRUB manual})." #. type: cindex -#: guix-git/doc/guix.texi:2454 +#: guix-git/doc/guix.texi:2471 #, no-wrap msgid "EFI, installation" msgstr "EFI, установка" #. type: cindex -#: guix-git/doc/guix.texi:2455 +#: guix-git/doc/guix.texi:2472 #, no-wrap msgid "UEFI, installation" msgstr "UEFI, установка" #. type: cindex -#: guix-git/doc/guix.texi:2456 +#: guix-git/doc/guix.texi:2473 #, no-wrap msgid "ESP, EFI system partition" msgstr "ESP, EFI разметка системы" #. type: Plain text -#: guix-git/doc/guix.texi:2460 +#: guix-git/doc/guix.texi:2477 msgid "If you instead wish to use EFI-based GRUB, a FAT32 @dfn{EFI System Partition} (ESP) is required. This partition can be mounted at @file{/boot/efi} for instance and must have the @code{esp} flag set. E.g., for @command{parted}:" msgstr "Если вместо этого вы хотите использовать GRUB, работающий с EFI, тогда необходима @dfn{разметка система EFI} FAT32 (ESP). Такая разметка может, например, монтироваться в @file{/boot/efi} и должна иметь флаг @code{esp}. То есть в случае @command{parted}:" #. type: example -#: guix-git/doc/guix.texi:2463 +#: guix-git/doc/guix.texi:2480 #, no-wrap msgid "parted /dev/sda set 1 esp on\n" msgstr "parted /dev/sda set 1 esp on\n" #. type: vindex -#: guix-git/doc/guix.texi:2466 guix-git/doc/guix.texi:34580 +#: guix-git/doc/guix.texi:2483 guix-git/doc/guix.texi:35019 #, no-wrap msgid "grub-bootloader" msgstr "grub-bootloader" #. type: vindex -#: guix-git/doc/guix.texi:2467 guix-git/doc/guix.texi:34574 +#: guix-git/doc/guix.texi:2484 guix-git/doc/guix.texi:35013 #, no-wrap msgid "grub-efi-bootloader" msgstr "grub-efi-bootloader" #. type: quotation -#: guix-git/doc/guix.texi:2474 +#: guix-git/doc/guix.texi:2491 msgid "Unsure whether to use EFI- or BIOS-based GRUB? If the directory @file{/sys/firmware/efi} exists in the installation image, then you should probably perform an EFI installation, using @code{grub-efi-bootloader}. Otherwise you should use the BIOS-based GRUB, known as @code{grub-bootloader}. @xref{Bootloader Configuration}, for more info on bootloaders." msgstr "Не уверенны, что выбрать: GRUB, взаимодействующий с EFI или BIOS? Если существует директория @file{/sys/firmware/efi} в установочом образе, тогда вам следует использовать установку EFI и @code{grub-efi-bootloader}. В противном случае нужно использовать GRUB, работающий с BIOS, называемый @code{grub-bootloader}. Смотрите @xref{Bootloader Configuration} для большей информации о загрузчиках." #. type: Plain text -#: guix-git/doc/guix.texi:2482 +#: guix-git/doc/guix.texi:2499 msgid "Once you are done partitioning the target hard disk drive, you have to create a file system on the relevant partition(s)@footnote{Currently Guix System only supports ext4, btrfs, JFS, F2FS, and XFS file systems. In particular, code that reads file system UUIDs and labels only works for these file system types.}. For the ESP, if you have one and assuming it is @file{/dev/sda1}, run:" msgstr "Когда разметка целевого диска выполнена, нужно создать файловую систему на соответствующем(-их) разделе(-ах)@footnote{В данный момент система Guix поддерживает только файловые системы ext4, btrfs, JFS, F2FS и XFS. По факту, код, читающий UUID и метки файлвых систем, работает только для этих типов файловых систем.}. В случае ESP, если у вас раздел @file{/dev/sda1}, выполните:" #. type: example -#: guix-git/doc/guix.texi:2485 +#: guix-git/doc/guix.texi:2502 #, no-wrap msgid "mkfs.fat -F32 /dev/sda1\n" msgstr "mkfs.fat -F32 /dev/sda1\n" #. type: Plain text -#: guix-git/doc/guix.texi:2492 +#: guix-git/doc/guix.texi:2509 msgid "For the root file system, ext4 is the most widely used format. Other file systems, such as Btrfs, support compression, which is reported to nicely complement file deduplication that the daemon performs independently of the file system (@pxref{Invoking guix-daemon, deduplication})." msgstr "Для корневой файловой системы наиболее широко используется формат ext4. Другие файловые системы, такие как Btrfs, поддерживают сжатие, которое, как известно, прекрасно дополняет дедупликацию файлов, которую демон выполняет независимо от файловой системы (@pxref{Invoking guix-daemon, deduplication})." #. type: Plain text -#: guix-git/doc/guix.texi:2499 +#: guix-git/doc/guix.texi:2516 msgid "Preferably, assign file systems a label so that you can easily and reliably refer to them in @code{file-system} declarations (@pxref{File Systems}). This is typically done using the @code{-L} option of @command{mkfs.ext4} and related commands. So, assuming the target root partition lives at @file{/dev/sda2}, a file system with the label @code{my-root} can be created with:" msgstr "Желательно добавить метки файловых систем, чтобы вы могли ссылаться на них по именам в объявлениях @code{file-system} (@pxref{File Systems}). Обычно это можно сделать опцией @code{-L} в @command{mkfs.ext4}, например. Допустим, раздел root располагается в @file{/dev/sda2}, можно добавить метку @code{my-root} следующим образом:" #. type: example -#: guix-git/doc/guix.texi:2502 +#: guix-git/doc/guix.texi:2519 #, no-wrap msgid "mkfs.ext4 -L my-root /dev/sda2\n" msgstr "mkfs.ext4 -L my-root /dev/sda2\n" #. type: cindex -#: guix-git/doc/guix.texi:2504 guix-git/doc/guix.texi:14475 +#: guix-git/doc/guix.texi:2521 guix-git/doc/guix.texi:14832 #, no-wrap msgid "encrypted disk" msgstr "шифрованный диск" #. type: Plain text -#: guix-git/doc/guix.texi:2509 +#: guix-git/doc/guix.texi:2526 #, fuzzy #| msgid "If you are instead planning to encrypt the root partition, you can use the Cryptsetup/LUKS utilities to do that (see @inlinefmtifelse{html, @uref{https://linux.die.net/man/8/cryptsetup, @code{man cryptsetup}}, @code{man cryptsetup}} for more information). Assuming you want to store the root partition on @file{/dev/sda2}, the command sequence would be along these lines:" msgid "If you are instead planning to encrypt the root partition, you can use the Cryptsetup/LUKS utilities to do that (see @inlinefmtifelse{html, @uref{https://linux.die.net/man/8/cryptsetup, @code{man cryptsetup}}, @code{man cryptsetup}} for more information)." msgstr "Если же вы планируете шифровать раздел root, можно воспользоваться утилитами Cryptsetup/LUKS (смотрите @inlinefmtifelse{html, @uref{https://linux.die.net/man/8/cryptsetup, @code{man cryptsetup}}, @code{man cryptsetup}} for more information.) Допустим, если раздел root размещается в @file{/dev/sda2}, необходимо выполнить следующие команды:" #. type: quotation -#: guix-git/doc/guix.texi:2510 guix-git/doc/guix.texi:5280 -#: guix-git/doc/guix.texi:6489 guix-git/doc/guix.texi:14601 -#: guix-git/doc/guix.texi:21013 guix-git/doc/guix.texi:21020 +#: guix-git/doc/guix.texi:2527 guix-git/doc/guix.texi:5298 +#: guix-git/doc/guix.texi:6532 guix-git/doc/guix.texi:14958 +#: guix-git/doc/guix.texi:21375 guix-git/doc/guix.texi:21382 #, no-wrap msgid "Warning" msgstr "Внимание" #. type: quotation -#: guix-git/doc/guix.texi:2517 +#: guix-git/doc/guix.texi:2534 msgid "Note that GRUB can unlock LUKS2 devices since version 2.06, but only supports the PBKDF2 key derivation function, which is not the default for @command{cryptsetup luksFormat}. You can check which key derivation function is being used by a device by running @command{cryptsetup luksDump @var{device}}, and looking for the PBKDF field of your keyslots." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2522 +#: guix-git/doc/guix.texi:2539 msgid "Assuming you want to store the root partition on @file{/dev/sda2}, the command sequence to format it as a LUKS2 partition would be along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2527 +#: guix-git/doc/guix.texi:2544 #, no-wrap msgid "" "cryptsetup luksFormat --type luks2 --pbkdf pbkdf2 /dev/sda2\n" @@ -8225,30 +8319,30 @@ msgstr "" "mkfs.ext4 -L my-root /dev/mapper/my-partition\n" #. type: Plain text -#: guix-git/doc/guix.texi:2532 +#: guix-git/doc/guix.texi:2549 msgid "Once that is done, mount the target file system under @file{/mnt} with a command like (again, assuming @code{my-root} is the label of the root file system):" msgstr "Когда это сделано, монтируйте целевую файловую систему под @file{/mnt} следующей командой (опять же полагая, что метка раздела root --- @code{my-root}):" #. type: example -#: guix-git/doc/guix.texi:2535 +#: guix-git/doc/guix.texi:2552 #, no-wrap msgid "mount LABEL=my-root /mnt\n" msgstr "mount LABEL=my-root /mnt\n" #. type: Plain text -#: guix-git/doc/guix.texi:2541 +#: guix-git/doc/guix.texi:2558 msgid "Also mount any other file systems you would like to use on the target system relative to this path. If you have opted for @file{/boot/efi} as an EFI mount point for example, mount it at @file{/mnt/boot/efi} now so it is found by @code{guix system init} afterwards." msgstr "Также монтируйте любые другие файловые системы внутрь целевой файловой системы. Если например, выбрана точка монтирования EFI @file{/boot/efi}, монтируйте её в @file{/mnt/boot/efi}, так, чтобы она обнаруживалась после запуска @code{guix system init}." #. type: Plain text -#: guix-git/doc/guix.texi:2545 +#: guix-git/doc/guix.texi:2562 #, fuzzy #| msgid "Finally, if you plan to use one or more swap partitions (@pxref{Memory Concepts, swap space,, libc, The GNU C Library Reference Manual}), make sure to initialize them with @command{mkswap}. Assuming you have one swap partition on @file{/dev/sda3}, you would run:" msgid "Finally, if you plan to use one or more swap partitions (@pxref{Swap Space}), make sure to initialize them with @command{mkswap}. Assuming you have one swap partition on @file{/dev/sda3}, you would run:" msgstr "Наконец, если вы планируете использовать один или более разделов swap (@pxref{Memory Concepts, swap space,, libc, The GNU C Library Reference Manual}), обязательно инициируйте их командой @command{mkswap}. Допустим, если ваш раздел swap размещён в @file{/dev/sda3}, нужно выполнить:" #. type: example -#: guix-git/doc/guix.texi:2549 +#: guix-git/doc/guix.texi:2566 #, no-wrap msgid "" "mkswap /dev/sda3\n" @@ -8258,12 +8352,12 @@ msgstr "" "swapon /dev/sda3\n" #. type: Plain text -#: guix-git/doc/guix.texi:2557 +#: guix-git/doc/guix.texi:2574 msgid "Alternatively, you may use a swap file. For example, assuming that in the new system you want to use the file @file{/swapfile} as a swap file, you would run@footnote{This example will work for many types of file systems (e.g., ext4). However, for copy-on-write file systems (e.g., btrfs), the required steps may be different. For details, see the manual pages for @command{mkswap} and @command{swapon}.}:" msgstr "Возможно, вместо этого вы используете swap-файл. Например, предположим, вы хотите использовать в новой системе swap-файл в @file{/swapfile}, тогда нужно выполнить@footnote{Этот пример работает для многих типов файловых систем, например, ext4. Однако для файловых систем, использующих механизм копирование при записи (copy-on-write), например, btrfs, необходимы другие шаги. Подробнее смотрите в мануалах для @command{mkswap} и @command{swapon}.}:" #. type: example -#: guix-git/doc/guix.texi:2565 +#: guix-git/doc/guix.texi:2582 #, no-wrap msgid "" "# This is 10 GiB of swap space. Adjust \"count\" to change the size.\n" @@ -8281,40 +8375,40 @@ msgstr "" "swapon /mnt/swapfile\n" #. type: Plain text -#: guix-git/doc/guix.texi:2570 +#: guix-git/doc/guix.texi:2587 msgid "Note that if you have encrypted the root partition and created a swap file in its file system as described above, then the encryption also protects the swap file, just like any other file in that file system." msgstr "Заметим, что если вы шифруете раздел root и создаёте swap-файл в его файловой системе, как это описано выше, шифрование также будет защищать swap-файл, как и любой другой файл в этой файловой системе." #. type: Plain text -#: guix-git/doc/guix.texi:2576 +#: guix-git/doc/guix.texi:2593 msgid "With the target partitions ready and the target root mounted on @file{/mnt}, we're ready to go. First, run:" msgstr "Когда целевые разделы готовы и раздел root монтирован под @file{/mnt}, всё готово для старта. Сначала запустите:" #. type: example -#: guix-git/doc/guix.texi:2579 +#: guix-git/doc/guix.texi:2596 #, no-wrap msgid "herd start cow-store /mnt\n" msgstr "herd start cow-store /mnt\n" #. type: Plain text -#: guix-git/doc/guix.texi:2586 +#: guix-git/doc/guix.texi:2603 msgid "This makes @file{/gnu/store} copy-on-write, such that packages added to it during the installation phase are written to the target disk on @file{/mnt} rather than kept in memory. This is necessary because the first phase of the @command{guix system init} command (see below) entails downloads or builds to @file{/gnu/store} which, initially, is an in-memory file system." msgstr "Это сделает @file{/gnu/store} копируемым при записи (copy-on-write), что заставит систему записывать пакеты, добавляемые в систему на этапе установки, на целевой диск под @file{/mnt}, а не держать их в памяти. Это важно, потому что по команде @command{guix system init} (смотрите ниже) будут скачиваться или собираться пакеты в @file{/gnu/store}, которая изначально находится в файловой системе, загрузженной в память." #. type: Plain text -#: guix-git/doc/guix.texi:2597 +#: guix-git/doc/guix.texi:2614 #, fuzzy #| msgid "Next, you have to edit a file and provide the declaration of the operating system to be installed. To that end, the installation system comes with three text editors. We recommend GNU nano (@pxref{Top,,, nano, GNU nano Manual}), which supports syntax highlighting and parentheses matching; other editors include GNU Zile (an Emacs clone), and nvi (a clone of the original BSD @command{vi} editor). We strongly recommend storing that file on the target root file system, say, as @file{/mnt/etc/config.scm}. Failing to do that, you will have lost your configuration file once you have rebooted into the newly-installed system." msgid "Next, you have to edit a file and provide the declaration of the operating system to be installed. To that end, the installation system comes with three text editors. We recommend GNU nano (@pxref{Top,,, nano, GNU nano Manual}), which supports syntax highlighting and parentheses matching; other editors include mg (an Emacs clone), and nvi (a clone of the original BSD @command{vi} editor). We strongly recommend storing that file on the target root file system, say, as @file{/mnt/etc/config.scm}. Failing to do that, you will have lost your configuration file once you have rebooted into the newly-installed system." msgstr "Далее нужно редактировать файл объявления операционной системы, которым будет пользоваться установщик. Для этого при установке системы можно использовать три текстовых редактора. Мы ркомендуем GNU nano (@pxref{Top,,, nano, GNU nano Manual}) --- он поддерживает подсветку синтаксиса и работу со скобками. Другие редакторы: GNU Zile (клон Emacs), nvi (клон исходного редактора BSD @command{vi}). Мы настойчиво рекомендуем сохранять файл конфигураций в целевой файловой системе root, например, как @file{/mnt/etc/config.scm}. Иначе есть возможность потерять конфигурационный файл, когда вы загрузитесь в новую установенную систему." #. type: Plain text -#: guix-git/doc/guix.texi:2604 +#: guix-git/doc/guix.texi:2621 msgid "@xref{Using the Configuration System}, for an overview of the configuration file. The example configurations discussed in that section are available under @file{/etc/configuration} in the installation image. Thus, to get started with a system configuration providing a graphical display server (a ``desktop'' system), you can run something along these lines:" msgstr "Смотрите @xref{Using the Configuration System} для подробностей о конфигурационном файле. Конфигурационный файл для примера доступен под @file{/etc/configuration} установочного образа. Например, чтобы получить систему с графическим сервером (т.е. десктопную систему), можно это сделать примерно так:" #. type: example -#: guix-git/doc/guix.texi:2609 +#: guix-git/doc/guix.texi:2626 #, no-wrap msgid "" "# mkdir /mnt/etc\n" @@ -8326,55 +8420,55 @@ msgstr "" "# nano /mnt/etc/config.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:2613 +#: guix-git/doc/guix.texi:2630 msgid "You should pay attention to what your configuration file contains, and in particular:" msgstr "Нужно уделить внимание содержимому конфигурационного файла, в частности:" #. type: itemize -#: guix-git/doc/guix.texi:2625 +#: guix-git/doc/guix.texi:2642 #, fuzzy #| msgid "Make sure the @code{bootloader-configuration} form refers to the target you want to install GRUB on. It should mention @code{grub-bootloader} if you are installing GRUB in the legacy way, or @code{grub-efi-bootloader} for newer UEFI systems. For legacy systems, the @code{target} field names a device, like @code{/dev/sda}; for UEFI systems it names a path to a mounted EFI partition, like @code{/boot/efi}; do make sure the path is currently mounted and a @code{file-system} entry is specified in your configuration." msgid "Make sure the @code{bootloader-configuration} form refers to the targets you want to install GRUB on. It should mention @code{grub-bootloader} if you are installing GRUB in the legacy way, or @code{grub-efi-bootloader} for newer UEFI systems. For legacy systems, the @code{targets} field contain the names of the devices, like @code{(list \"/dev/sda\")}; for UEFI systems it names the paths to mounted EFI partitions, like @code{(list \"/boot/efi\")}; do make sure the paths are currently mounted and a @code{file-system} entry is specified in your configuration." msgstr "Убедитесь, что @code{bootloader-configuration} указывает на тот раздел, в который вы хотите установить GRUB. Он должен содержать @code{grub-bootloader}, если вы используете legacy-GRUB, или @code{grub-efi-bootloader} для новых систем UEFI. Для систем legacy поле @code{target} содержит имя устройства, например, @code{/dev/sda}; для систем UEFI он указывает имя раздела EFI, например, @code{/boot/efi}. Так что обязательно проверьте, чтобы нужный путь был монтирован, и запись @code{file-system} содержала нужную уонфигурацию." #. type: itemize -#: guix-git/doc/guix.texi:2631 +#: guix-git/doc/guix.texi:2648 msgid "Be sure that your file system labels match the value of their respective @code{device} fields in your @code{file-system} configuration, assuming your @code{file-system} configuration uses the @code{file-system-label} procedure in its @code{device} field." msgstr "Убедитесь, чтобы в полях @code{device} были указаны метки ваших файловых систем внутри конфигурации @code{file-system}, если конечно, конфигурация @code{file-system} использует процедуру @code{file-system-label} в поле @code{device}." #. type: itemize -#: guix-git/doc/guix.texi:2635 +#: guix-git/doc/guix.texi:2652 msgid "If there are encrypted or RAID partitions, make sure to add a @code{mapped-devices} field to describe them (@pxref{Mapped Devices})." msgstr "При наличии шифрованных разделов RAID, обязательно добавьте поле @code{mapped-devices}, чтобы описать их (@pxref{Mapped Devices})." #. type: Plain text -#: guix-git/doc/guix.texi:2640 +#: guix-git/doc/guix.texi:2657 msgid "Once you are done preparing the configuration file, the new system must be initialized (remember that the target root file system is mounted under @file{/mnt}):" msgstr "Когда вы подготовили конфигурационный файл, нужно инициализировать новую систему (помните, что целевой раздел root монтирован под @file{/mnt}):" #. type: example -#: guix-git/doc/guix.texi:2643 +#: guix-git/doc/guix.texi:2660 #, no-wrap msgid "guix system init /mnt/etc/config.scm /mnt\n" msgstr "guix system init /mnt/etc/config.scm /mnt\n" #. type: Plain text -#: guix-git/doc/guix.texi:2650 +#: guix-git/doc/guix.texi:2667 msgid "This copies all the necessary files and installs GRUB on @file{/dev/sdX}, unless you pass the @option{--no-bootloader} option. For more information, @pxref{Invoking guix system}. This command may trigger downloads or builds of missing packages, which can take some time." msgstr "Это копирует все нужные файлы и устанавливает GRUB в @file{/dev/sdX}, если конечно, вы не задали опцию @option{--no-bootloader}. Подробнее - @pxref{Invoking guix system}. Эта команда может вызывать скачивание или сборку отсутствующих пакетов, что может занять время." #. type: Plain text -#: guix-git/doc/guix.texi:2658 +#: guix-git/doc/guix.texi:2675 msgid "Once that command has completed---and hopefully succeeded!---you can run @command{reboot} and boot into the new system. The @code{root} password in the new system is initially empty; other users' passwords need to be initialized by running the @command{passwd} command as @code{root}, unless your configuration specifies otherwise (@pxref{user-account-password, user account passwords}). @xref{After System Installation}, for what's next!" msgstr "Когда эта команда завершена, надеемся, успешно, можно запустить @command{reboot} и загрузиться в новую систему. Пароль @code{root} в новой системе изначально пустой; пароли других пользователей должны быть заданы командой @command{passwd} от @code{root}, если конечно, ваша конфиурация не содержит указания (@pxref{user-account-password, user account passwords}). Смотрите @xref{After System Installation}, чтобы узнать, что дальше!" #. type: Plain text -#: guix-git/doc/guix.texi:2665 +#: guix-git/doc/guix.texi:2682 msgid "Success, you've now booted into Guix System! From then on, you can update the system whenever you want by running, say:" msgstr "Замечательно! Теперь вы загрузились в систему Guix! Теперь можно обновить систему, когда у вас будет на это время, запустив, например:" #. type: example -#: guix-git/doc/guix.texi:2669 +#: guix-git/doc/guix.texi:2686 #, no-wrap msgid "" "guix pull\n" @@ -8384,93 +8478,93 @@ msgstr "" "sudo guix system reconfigure /etc/config.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:2675 +#: guix-git/doc/guix.texi:2692 msgid "This builds a new system generation with the latest packages and services (@pxref{Invoking guix system}). We recommend doing that regularly so that your system includes the latest security updates (@pxref{Security Updates})." msgstr "Это соберёт поколение (generation) системы с последними пакетами и сервисами (@pxref{Invoking guix system}). Мы рекомендуем делать это регулярно, чтобы ваша система содержала обновления безопасности (@pxref{Security Updates})." #. type: cindex -#: guix-git/doc/guix.texi:2678 +#: guix-git/doc/guix.texi:2695 #, no-wrap msgid "sudo vs. @command{guix pull}" msgstr "sudo vs. @command{guix pull}" #. type: quotation -#: guix-git/doc/guix.texi:2682 +#: guix-git/doc/guix.texi:2699 msgid "Note that @command{sudo guix} runs your user's @command{guix} command and @emph{not} root's, because @command{sudo} leaves @env{PATH} unchanged. To explicitly run root's @command{guix}, type @command{sudo -i guix @dots{}}." msgstr "Отметим, что @command{sudo guix} запускает команду @command{guix} от вашего пользователя, но @emph{не} от root, потому что @command{sudo} не меняет @code{PATH}. Чтобы вместо этого запустить @command{guix} от root, напечатайте @command{sudo -i guix @dots{}}." #. type: quotation -#: guix-git/doc/guix.texi:2687 +#: guix-git/doc/guix.texi:2704 msgid "The difference matters here, because @command{guix pull} updates the @command{guix} command and package definitions only for the user it is run as. This means that if you choose to use @command{guix system reconfigure} in root's login shell, you'll need to @command{guix pull} separately." msgstr "Разница важна, потому что @command{guix pull} обновляет команду @command{guix} и определения пакетов только для пользователя, от имени которого она запускается. Это означает, что если вы решите использовать @command{guix system reconfigure} от имени root, вам нужно будет запустить @command{guix pull} отдельно." #. type: Plain text -#: guix-git/doc/guix.texi:2692 +#: guix-git/doc/guix.texi:2709 msgid "Now, @pxref{Getting Started}, and join us on @code{#guix} on the Libera Chat IRC network or on @email{guix-devel@@gnu.org} to share your experience!" msgstr "Присоединяйтесь к нашему IRC-каналу @code{#guix} в сети Freenode или пишите на @email{guix-devel@@gnu.org}, чтобы поделиться опытом!" #. type: section -#: guix-git/doc/guix.texi:2695 +#: guix-git/doc/guix.texi:2712 #, no-wrap msgid "Installing Guix in a Virtual Machine" msgstr "Установка Guix на виртуальную машину (VM)" #. type: cindex -#: guix-git/doc/guix.texi:2697 +#: guix-git/doc/guix.texi:2714 #, no-wrap msgid "virtual machine, Guix System installation" msgstr "виртуальная машина, установка системы Guix" #. type: cindex -#: guix-git/doc/guix.texi:2698 +#: guix-git/doc/guix.texi:2715 #, no-wrap msgid "virtual private server (VPS)" msgstr "виртуальный приватный сервер (VPS)" #. type: cindex -#: guix-git/doc/guix.texi:2699 +#: guix-git/doc/guix.texi:2716 #, no-wrap msgid "VPS (virtual private server)" msgstr "VPS (virtual private server)" #. type: Plain text -#: guix-git/doc/guix.texi:2703 +#: guix-git/doc/guix.texi:2720 msgid "If you'd like to install Guix System in a virtual machine (VM) or on a virtual private server (VPS) rather than on your beloved machine, this section is for you." msgstr "Если вы хотите установить систему Guix на виртуальную машину (VM) или на виртуальный приватный сервер (VPS) вместо вашей любимой машины, этот раздел для вас." #. type: Plain text -#: guix-git/doc/guix.texi:2706 +#: guix-git/doc/guix.texi:2723 msgid "To boot a @uref{https://qemu.org/,QEMU} VM for installing Guix System in a disk image, follow these steps:" msgstr "Чтобы загрузить Guix в @uref{http://qemu.org/,QEMU} VM и установить образ, выполните шаги:" #. type: enumerate -#: guix-git/doc/guix.texi:2711 +#: guix-git/doc/guix.texi:2728 msgid "First, retrieve and decompress the Guix system installation image as described previously (@pxref{USB Stick and DVD Installation})." msgstr "Во-первых, найдите и распакуйте установочный образ системы Guix, как описано ранее (@pxref{USB Stick and DVD Installation})." #. type: enumerate -#: guix-git/doc/guix.texi:2715 +#: guix-git/doc/guix.texi:2732 msgid "Create a disk image that will hold the installed system. To make a qcow2-formatted disk image, use the @command{qemu-img} command:" msgstr "Создайте образ диска, который будет содержать установленную систему. Чтобы создать образ диска qcow2, используйте команду @command{qemu-img}:" #. type: example -#: guix-git/doc/guix.texi:2718 +#: guix-git/doc/guix.texi:2735 #, no-wrap msgid "qemu-img create -f qcow2 guix-system.img 50G\n" msgstr "qemu-img create -f qcow2 guixsd.img 50G\n" #. type: enumerate -#: guix-git/doc/guix.texi:2722 +#: guix-git/doc/guix.texi:2739 msgid "The resulting file will be much smaller than 50 GB (typically less than 1 MB), but it will grow as the virtualized storage device is filled up." msgstr "Результирующий файл будет намного меньше 50Гб (обычно менее 1Мб), но он будет увеличиваться с заполнение виртуального устройства." #. type: enumerate -#: guix-git/doc/guix.texi:2725 +#: guix-git/doc/guix.texi:2742 msgid "Boot the USB installation image in an VM:" msgstr "Загрузите установочный образ USB в VM:" #. type: example -#: guix-git/doc/guix.texi:2731 +#: guix-git/doc/guix.texi:2748 #, no-wrap msgid "" "qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \\\n" @@ -8484,115 +8578,115 @@ msgstr "" " -drive media=cdrom,file=guix-system-install-@value{VERSION}.@var{system}.iso\n" #. type: enumerate -#: guix-git/doc/guix.texi:2735 +#: guix-git/doc/guix.texi:2752 msgid "@code{-enable-kvm} is optional, but significantly improves performance, @pxref{Running Guix in a VM}." msgstr "@code{-enable-kvm} опционален, но значительно улучшает производительность, @pxref{Running Guix in a VM}." #. type: enumerate -#: guix-git/doc/guix.texi:2739 +#: guix-git/doc/guix.texi:2756 msgid "You're now root in the VM, proceed with the installation process. @xref{Preparing for Installation}, and follow the instructions." msgstr "Теперь вы в корне VM, проделайте процесс установки @xref{Preparing for Installation} и последующие инструкции." #. type: Plain text -#: guix-git/doc/guix.texi:2744 +#: guix-git/doc/guix.texi:2761 msgid "Once installation is complete, you can boot the system that's on your @file{guix-system.img} image. @xref{Running Guix in a VM}, for how to do that." msgstr "Когда установка завершена, можно загрузиться в систему, которая расположена в образе @file{guixsd.img}. Смотрите @xref{Running Guix in a VM}, чтобы узнать, как это сделать." #. type: cindex -#: guix-git/doc/guix.texi:2748 +#: guix-git/doc/guix.texi:2765 #, no-wrap msgid "installation image" msgstr "установочный образ" #. type: Plain text -#: guix-git/doc/guix.texi:2751 +#: guix-git/doc/guix.texi:2768 msgid "The installation image described above was built using the @command{guix system} command, specifically:" msgstr "Установочный образ, описанный выше, собран командой @command{guix system}, а именно:" #. type: example -#: guix-git/doc/guix.texi:2754 +#: guix-git/doc/guix.texi:2771 #, no-wrap msgid "guix system image -t iso9660 gnu/system/install.scm\n" msgstr "guix system disk-image -t iso9660 gnu/system/install.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:2759 +#: guix-git/doc/guix.texi:2776 msgid "Have a look at @file{gnu/system/install.scm} in the source tree, and see also @ref{Invoking guix system} for more information about the installation image." msgstr "Нужно просмотреть @file{gnu/system/install.scm} в дереве исходников, а также @ref{Invoking guix system}, чтобы получить больше информации об установочном образе." #. type: section -#: guix-git/doc/guix.texi:2760 +#: guix-git/doc/guix.texi:2777 #, no-wrap msgid "Building the Installation Image for ARM Boards" msgstr "Сбрка и установка образа для плат ARM" #. type: Plain text -#: guix-git/doc/guix.texi:2764 +#: guix-git/doc/guix.texi:2781 msgid "Many ARM boards require a specific variant of the @uref{https://www.denx.de/wiki/U-Boot/, U-Boot} bootloader." msgstr "Многие платы ARM требуют специфический вариант загрузчика @uref{https://www.denx.de/wiki/U-Boot/, U-Boot}." #. type: Plain text -#: guix-git/doc/guix.texi:2768 +#: guix-git/doc/guix.texi:2785 msgid "If you build a disk image and the bootloader is not available otherwise (on another boot drive etc), it's advisable to build an image that includes the bootloader, specifically:" msgstr "Если вы собираете образ диска, а загрузчик не доступен (на другом устройстве загрузке и т.п.), советуем собрать образ, который включает загрузчик, то есть так:" #. type: example -#: guix-git/doc/guix.texi:2771 +#: guix-git/doc/guix.texi:2788 #, no-wrap msgid "guix system image --system=armhf-linux -e '((@@ (gnu system install) os-with-u-boot) (@@ (gnu system install) installation-os) \"A20-OLinuXino-Lime2\")'\n" msgstr "guix system disk-image --system=armhf-linux -e '((@@ (gnu system install) os-with-u-boot) (@@ (gnu system install) installation-os) \"A20-OLinuXino-Lime2\")'\n" #. type: Plain text -#: guix-git/doc/guix.texi:2775 +#: guix-git/doc/guix.texi:2792 msgid "@code{A20-OLinuXino-Lime2} is the name of the board. If you specify an invalid board, a list of possible boards will be printed." msgstr "@code{A20-OLinuXino-Lime2} --- это имя материнской платы. Если вы обозначите недействительную плату, будет выведен список возможных плат." #. type: Plain text -#: guix-git/doc/guix.texi:2785 +#: guix-git/doc/guix.texi:2802 msgid "Presumably, you've reached this section because either you have installed Guix on top of another distribution (@pxref{Installation}), or you've installed the standalone Guix System (@pxref{System Installation}). It's time for you to get started using Guix and this section aims to help you do that and give you a feel of what it's like." msgstr "Предположительно, вы попали в этот раздел, потому что либо вы установили Guix поверх другого дистрибутива (@pxref{Installation}), либо вы установили отдельную операционную систему Guix (@pxref{System Installation}). Пора вам начать использовать Guix, и этот раздел призван помочь вам в этом." #. type: Plain text -#: guix-git/doc/guix.texi:2789 +#: guix-git/doc/guix.texi:2806 msgid "Guix is about installing software, so probably the first thing you'll want to do is to actually look for software. Let's say you're looking for a text editor, you can run:" msgstr "Guix занимается установкой программного обеспечения, поэтому, вероятно, первое, что вам нужно сделать, это поискать программное обеспечение. Допустим, вы ищете текстовый редактор, вы можете запустить:" #. type: example -#: guix-git/doc/guix.texi:2792 +#: guix-git/doc/guix.texi:2809 #, no-wrap msgid "guix search text editor\n" msgstr "guix search text editor\n" #. type: Plain text -#: guix-git/doc/guix.texi:2799 +#: guix-git/doc/guix.texi:2816 msgid "This command shows you a number of matching @dfn{packages}, each time showing the package's name, version, a description, and additional info. Once you've found out the one you want to use, let's say Emacs (ah ha!), you can go ahead and install it (run this command as a regular user, @emph{no need for root privileges}!):" msgstr "Эта команда показывает количество подходящих @dfn{пакетов}, каждый раз показывая имя пакета, версию, описание и дополнительную информацию. Как только вы определились с тем, какой пакет хотите использовать, скажем, Emacs (ха!), вы можете установить его следующей командой (запустите эту команду как обычный пользователь, root привилегии не нужны!):" #. type: example -#: guix-git/doc/guix.texi:2802 +#: guix-git/doc/guix.texi:2819 #, no-wrap msgid "guix install emacs\n" msgstr "guix install emacs\n" #. type: cindex -#: guix-git/doc/guix.texi:2804 guix-git/doc/guix.texi:3116 -#: guix-git/doc/guix.texi:3168 +#: guix-git/doc/guix.texi:2821 guix-git/doc/guix.texi:3133 +#: guix-git/doc/guix.texi:3185 #, no-wrap msgid "profile" msgstr "профиль" #. type: Plain text -#: guix-git/doc/guix.texi:2812 +#: guix-git/doc/guix.texi:2829 msgid "You've installed your first package, congrats! The package is now visible in your default @dfn{profile}, @file{$HOME/.guix-profile}---a profile is a directory containing installed packages. In the process, you've probably noticed that Guix downloaded pre-built binaries; or, if you explicitly chose to @emph{not} use pre-built binaries, then probably Guix is still building software (@pxref{Substitutes}, for more info)." msgstr "Вы установили свой первый пакет, поздравляю! В процессе вы, вероятно, заметили, что Guix загружает заранее собранные двоичные файлы; или, если вы явно решили не использовать предварительно созданные двоичные файлы, то, вероятно, Guix все еще собирает программное обеспечение (@pxref{Substitutes}, для дополнительной информации)." #. type: Plain text -#: guix-git/doc/guix.texi:2815 +#: guix-git/doc/guix.texi:2832 msgid "Unless you're using Guix System, the @command{guix install} command must have printed this hint:" msgstr "Пока вы используете Guix System, @command{guix install} команда должна выводить данную подсказку:" #. type: example -#: guix-git/doc/guix.texi:2818 +#: guix-git/doc/guix.texi:2835 #, no-wrap msgid "" "hint: Consider setting the necessary environment variables by running:\n" @@ -8602,7 +8696,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:2821 +#: guix-git/doc/guix.texi:2838 #, no-wrap msgid "" " GUIX_PROFILE=\"$HOME/.guix-profile\"\n" @@ -8614,79 +8708,79 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:2823 +#: guix-git/doc/guix.texi:2840 #, no-wrap msgid "Alternately, see `guix package --search-paths -p \"$HOME/.guix-profile\"'.\n" msgstr "Или смотрите `guix package --search-paths -p \"$HOME/.guix-profile\"'.\n" #. type: Plain text -#: guix-git/doc/guix.texi:2837 +#: guix-git/doc/guix.texi:2854 #, fuzzy #| msgid "Indeed, you must now tell your shell where @command{emacs} and other programs installed with Guix are to be found. Pasting the two lines above will do just that: it will add @code{$HOME/.guix-profile/bin}---which is where the installed package is---to the @code{PATH} environment variable. You can paste these two lines in your shell so they take effect right away, but more importantly you should add them to @file{~/.bash_profile} (or equivalent file if you do not use Bash) so that environment variables are set next time you spawn a shell. You only need to do this once and other search paths environment variables will be taken care of similarly---e.g., if you eventually install @code{python} and Python libraries, @code{PYTHONPATH} will be defined." msgid "Indeed, you must now tell your shell where @command{emacs} and other programs installed with Guix are to be found. Pasting the two lines above will do just that: it will add @code{$HOME/.guix-profile/bin}---which is where the installed package is---to the @code{PATH} environment variable. You can paste these two lines in your shell so they take effect right away, but more importantly you should add them to @file{~/.bash_profile} (or equivalent file if you do not use Bash) so that environment variables are set next time you spawn a shell. You only need to do this once and other search paths environment variables will be taken care of similarly---e.g., if you eventually install @code{python} and Python libraries, @env{GUIX_PYTHONPATH} will be defined." msgstr "Действительно, теперь вы должны указать своей оболочке, где находятся @code{emacs} и другие программы, установленные вместе с Guix. Вставка двух строк добавит @code{$HOME/.guix-profile/bin} (там где находится установленный пакет) в переменную окружения @code{PATH}. Вы можете вставить эти две строки в свою оболочку, чтобы они сразу вступили в силу, но, что более важно, вы должны добавить их в @file{~/.bash_profile} (или аналогичный файл, если вы не используете Bash), чтобы переменные среды устанавливались в следующий раз, когда вы создаете оболочку. Вам нужно сделать это только один раз, и другие переменные среды путей поиска будут обработаны аналогичным образом. Например, если вы установите @code{python} или библиотеки Python, @code{PYTHONPATH} будет определена." #. type: Plain text -#: guix-git/doc/guix.texi:2840 +#: guix-git/doc/guix.texi:2857 msgid "You can go on installing packages at your will. To list installed packages, run:" msgstr "Вы можете продолжать установку пакетов по своему желанию. Чтобы вывести список установленных пакетов, запустите:" #. type: example -#: guix-git/doc/guix.texi:2843 +#: guix-git/doc/guix.texi:2860 #, no-wrap msgid "guix package --list-installed\n" msgstr "guix package --list-installed\n" #. type: Plain text -#: guix-git/doc/guix.texi:2848 +#: guix-git/doc/guix.texi:2865 msgid "To remove a package, you would unsurprisingly run @command{guix remove}. A distinguishing feature is the ability to @dfn{roll back} any operation you made---installation, removal, upgrade---by simply typing:" msgstr "Для удаления пакета вы можете выполнить команду @command{guix remove}. Отличительная черта - возможность @dfn{откатить} любую операцию, которую вы сделали (установка, удаление, обновление):" #. type: example -#: guix-git/doc/guix.texi:2851 +#: guix-git/doc/guix.texi:2868 #, no-wrap msgid "guix package --roll-back\n" msgstr "guix package --roll-back\n" #. type: Plain text -#: guix-git/doc/guix.texi:2856 +#: guix-git/doc/guix.texi:2873 msgid "This is because each operation is in fact a @dfn{transaction} that creates a new @dfn{generation}. These generations and the difference between them can be displayed by running:" msgstr "Каждая операция фактически является транзакцией, которая создает новое поколение. Эти поколения и разницу между ними можно отобразить, запустив:" #. type: example -#: guix-git/doc/guix.texi:2859 +#: guix-git/doc/guix.texi:2876 #, no-wrap msgid "guix package --list-generations\n" msgstr "guix package --list-generations\n" #. type: Plain text -#: guix-git/doc/guix.texi:2862 +#: guix-git/doc/guix.texi:2879 msgid "Now you know the basics of package management!" msgstr "Теперь вы знаете основы управления пакетами!" #. type: quotation -#: guix-git/doc/guix.texi:2863 guix-git/doc/guix.texi:2922 +#: guix-git/doc/guix.texi:2880 guix-git/doc/guix.texi:2939 #, no-wrap msgid "Going further" msgstr "Больше информации" #. type: quotation -#: guix-git/doc/guix.texi:2871 +#: guix-git/doc/guix.texi:2888 msgid "@xref{Package Management}, for more about package management. You may like @dfn{declarative} package management with @command{guix package --manifest}, managing separate @dfn{profiles} with @option{--profile}, deleting old generations, collecting garbage, and other nifty features that will come in handy as you become more familiar with Guix. If you are a developer, @pxref{Development} for additional tools. And if you're curious, @pxref{Features}, to peek under the hood." msgstr "@xref{Package Management}, для получения дополнительной информации об управлении пакетами. Вам может понравиться @dfn{декларативное} управление пакетами с помощью @command{guix package --manifest}, управление отдельными @dfn{профилями} с помощью @option{--profile}, удаление старых поколений, сбор мусора и другие полезные функции, которые помогут пригодится по мере того, как вы ближе познакомитесь с Guix. Если вы разработчик, @pxref{Development} для получения дополнительных инструментов. И если вам интересно, @pxref{Features}, чтобы заглянуть под капот." #. type: Plain text -#: guix-git/doc/guix.texi:2876 +#: guix-git/doc/guix.texi:2893 msgid "Once you've installed a set of packages, you will want to periodically @emph{upgrade} them to the latest and greatest version. To do that, you will first pull the latest revision of Guix and its package collection:" msgstr "После того, как вы установили набор пакетов, вам нужно будет периодически @emph{обновлять} их до последней и самой лучшей версии. Для этого вы сначала загрузите последнюю версию Guix и его коллекцию пакетов:" #. type: Plain text -#: guix-git/doc/guix.texi:2886 +#: guix-git/doc/guix.texi:2903 msgid "The end result is a new @command{guix} command, under @file{~/.config/guix/current/bin}. Unless you're on Guix System, the first time you run @command{guix pull}, be sure to follow the hint that the command prints and, similar to what we saw above, paste these two lines in your terminal and @file{.bash_profile}:" msgstr "Конечным результатом является новая команда @command{guix} в @file{~/.config/guix/current/bin}. Если вы не используете Guix System, при первом запуске @command{guix pull} обязательно следуйте подсказке, которую выводит команда, и, подобно тому, что мы видели выше, вставьте эти две строки в свой терминал и @file{.bash_profile}:" #. type: example -#: guix-git/doc/guix.texi:2890 +#: guix-git/doc/guix.texi:2907 #, no-wrap msgid "" "GUIX_PROFILE=\"$HOME/.config/guix/current\"\n" @@ -8696,338 +8790,338 @@ msgstr "" ". \"$GUIX_PROFILE/etc/profile\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:2894 +#: guix-git/doc/guix.texi:2911 msgid "You must also instruct your shell to point to this new @command{guix}:" msgstr "Вы также должны указать своей оболочке, чтобы она указывала на новую команду @command{guix}:" #. type: example -#: guix-git/doc/guix.texi:2897 +#: guix-git/doc/guix.texi:2914 #, no-wrap msgid "hash guix\n" msgstr "hash guix\n" #. type: Plain text -#: guix-git/doc/guix.texi:2901 +#: guix-git/doc/guix.texi:2918 msgid "At this point, you're running a brand new Guix. You can thus go ahead and actually upgrade all the packages you previously installed:" msgstr "На данный момент вы используете новый Guix. Вы можете обновить все ранее установленные пакеты:" #. type: example -#: guix-git/doc/guix.texi:2904 +#: guix-git/doc/guix.texi:2921 #, no-wrap msgid "guix upgrade\n" msgstr "guix upgrade\n" #. type: Plain text -#: guix-git/doc/guix.texi:2910 +#: guix-git/doc/guix.texi:2927 msgid "As you run this command, you will see that binaries are downloaded (or perhaps some packages are built), and eventually you end up with the upgraded packages. Should one of these upgraded packages not be to your liking, remember you can always roll back!" msgstr "Когда вы запустите эту команду, вы увидите, что загружены двоичные файлы (или, возможно, собраны некоторые пакеты), и в конечном итоге вы получите обновленные пакеты. Если один из этих обновленных пакетов вам не понравится, помните, что вы всегда можете выполнить откат!" #. type: Plain text -#: guix-git/doc/guix.texi:2913 +#: guix-git/doc/guix.texi:2930 msgid "You can display the exact revision of Guix you're currently using by running:" msgstr "Вы можете отобразить точную версию Guix, которую сейчас используете, запустив:" #. type: example -#: guix-git/doc/guix.texi:2916 +#: guix-git/doc/guix.texi:2933 #, no-wrap msgid "guix describe\n" msgstr "guix describe\n" #. type: Plain text -#: guix-git/doc/guix.texi:2921 +#: guix-git/doc/guix.texi:2938 msgid "The information it displays is @emph{all it takes to reproduce the exact same Guix}, be it at a different point in time or on a different machine." msgstr "Отображаемая информация - это @emph{все, что нужно для воспроизведения того же самого Guix}, будь то в другой момент времени или на другой машине." #. type: quotation -#: guix-git/doc/guix.texi:2927 +#: guix-git/doc/guix.texi:2944 msgid "@xref{Invoking guix pull}, for more information. @xref{Channels}, on how to specify additional @dfn{channels} to pull packages from, how to replicate Guix, and more. You may also find @command{time-machine} handy (@pxref{Invoking guix time-machine})." msgstr "@xref{Invoking guix pull}, для дополнительной информации. @xref{Channels}, как указать дополнительные @dfn{каналы} для получения пакетов, как реплицировать Guix и т. д. Также команда @command{time-machine} может оказаться полезной (@pxref{Invoking guix time-machine})." #. type: Plain text -#: guix-git/doc/guix.texi:2932 +#: guix-git/doc/guix.texi:2949 msgid "If you installed Guix System, one of the first things you'll want to do is to upgrade your system. Once you've run @command{guix pull} to get the latest Guix, you can upgrade the system like this:" msgstr "Если вы установили Guix System, первое, что вам нужно сделать, это обновить вашу систему. После того, как вы запустите команду @command{guix pull}, чтобы получить последнюю версию Guix, вы можете обновить систему следующим образом:" #. type: example -#: guix-git/doc/guix.texi:2935 +#: guix-git/doc/guix.texi:2952 #, no-wrap msgid "sudo guix system reconfigure /etc/config.scm\n" msgstr "sudo guix system reconfigure /etc/config.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:2944 +#: guix-git/doc/guix.texi:2961 msgid "Upon completion, the system runs the latest versions of its software packages. When you eventually reboot, you'll notice a sub-menu in the bootloader that reads ``Old system generations'': it's what allows you to boot @emph{an older generation of your system}, should the latest generation be ``broken'' or otherwise unsatisfying. Just like for packages, you can always @emph{roll back} to a previous generation @emph{of the whole system}:" msgstr "По завершении в системе будут запущены последние версии пакетов. Когда вы перезагрузите машину, вы заметите подменю в загрузчике ``Old system generations'': это то, что позволяет вам загружать @emph{старшее поколение вашей системы}, если последнее поколение ``сломано'' или не соответствует вашим ожиданиям. Как и в случае с пакетами, вы всегда можете @emph{откатиться} на предыдущее поколение @emph{всей системы}:" #. type: example -#: guix-git/doc/guix.texi:2947 +#: guix-git/doc/guix.texi:2964 #, no-wrap msgid "sudo guix system roll-back\n" msgstr "sudo guix system roll-back\n" #. type: Plain text -#: guix-git/doc/guix.texi:2954 +#: guix-git/doc/guix.texi:2971 msgid "There are many things you'll probably want to tweak on your system: adding new user accounts, adding new system services, fiddling with the configuration of those services, etc. The system configuration is @emph{entirely} described in the @file{/etc/config.scm} file. @xref{Using the Configuration System}, to learn how to change it." msgstr "Есть много вещей, которые вы, вероятно, захотите настроить в своей системе: добавление новых учетных записей пользователей, добавление новых системных служб, изменение конфигурации этих служб и т.д. Конфигурация системы @emph{полностью} определена в файле @file{/etc/config.scm}. @xref{Using the Configuration System}, узнать о настройке системы." #. type: Plain text -#: guix-git/doc/guix.texi:2956 +#: guix-git/doc/guix.texi:2973 msgid "Now you know enough to get started!" msgstr "Теперь вы знаете достаточно, чтобы начать!" #. type: quotation -#: guix-git/doc/guix.texi:2957 +#: guix-git/doc/guix.texi:2974 #, no-wrap msgid "Resources" msgstr "Ресурсы" #. type: quotation -#: guix-git/doc/guix.texi:2960 +#: guix-git/doc/guix.texi:2977 msgid "The rest of this manual provides a reference for all things Guix. Here are some additional resources you may find useful:" msgstr "Остальная часть этого руководства представляет собой справочник по всему, что связано с Guix. Вот несколько дополнительных ресурсов, которые могут вам пригодиться:" #. type: itemize -#: guix-git/doc/guix.texi:2965 +#: guix-git/doc/guix.texi:2982 msgid "@xref{Top,,, guix-cookbook, The GNU Guix Cookbook}, for a list of ``how-to'' style of recipes for a variety of applications." msgstr "@xref{Top,,, guix-cookbook, The GNU Guix Cookbook}, статьи с готовыми решениями для различных ситуаций в стиле ``how-to''." #. type: itemize -#: guix-git/doc/guix.texi:2970 +#: guix-git/doc/guix.texi:2987 msgid "The @uref{https://guix.gnu.org/guix-refcard.pdf, GNU Guix Reference Card} lists in two pages most of the commands and options you'll ever need." msgstr "@uref{https://guix.gnu.org/guix-refcard.pdf, GNU Guix Reference Card} шпаргалка с большинством команд и опций, которые вам когда-либо понадобятся." #. type: itemize -#: guix-git/doc/guix.texi:2975 +#: guix-git/doc/guix.texi:2992 msgid "The web site contains @uref{https://guix.gnu.org/en/videos/, instructional videos} covering topics such as everyday use of Guix, how to get help, and how to become a contributor." msgstr "Веб-сайт содержит @uref{https://guix.gnu.org/en/videos/, обучающие видеоролики} по таким темам, как повседневное использование Guix, как получить помощь и как стать участником сообщества." #. type: itemize -#: guix-git/doc/guix.texi:2979 +#: guix-git/doc/guix.texi:2996 msgid "@xref{Documentation}, to learn how to access documentation on your computer." msgstr "@xref{Documentation}, чтобы узнать, как получить доступ к документации на вашем компьютере." #. type: quotation -#: guix-git/doc/guix.texi:2982 +#: guix-git/doc/guix.texi:2999 msgid "We hope you will enjoy Guix as much as the community enjoys building it!" msgstr "Мы надеемся, что вам понравится Guix так же, как и сообществу нравится его создавать!" #. type: Plain text -#: guix-git/doc/guix.texi:2993 +#: guix-git/doc/guix.texi:3010 msgid "The purpose of GNU Guix is to allow users to easily install, upgrade, and remove software packages, without having to know about their build procedures or dependencies. Guix also goes beyond this obvious set of features." msgstr "Целью GNU Guix является предоставление пользователям возможности легко устанавливать, обновлять и удалять пакеты программного обеспечения, без необходимости изучения процедур их сборки и без необходимости разрешения зависимостей. Также Guix имеет следующие обязательные особенности." #. type: Plain text -#: guix-git/doc/guix.texi:3001 +#: guix-git/doc/guix.texi:3018 msgid "This chapter describes the main features of Guix, as well as the package management tools it provides. Along with the command-line interface described below (@pxref{Invoking guix package, @code{guix package}}), you may also use the Emacs-Guix interface (@pxref{Top,,, emacs-guix, The Emacs-Guix Reference Manual}), after installing @code{emacs-guix} package (run @kbd{M-x guix-help} command to start with it):" msgstr "Этот раздел описывает основные особенности Guix и предоставляемые им инструменты управления пакетами. Кроме интерфейса командной строки, который описан ниже (@pxref{Invoking guix package, @code{guix package}}), можно также использовать интерфейс Emacs-Guix (@pxref{Top,,, emacs-guix, The Emacs-Guix Reference Manual}), если установить пакет @code{emacs-guix} (выполните команду @kbd{M-x guix-help}, чтобы начать работу с ним):" #. type: example -#: guix-git/doc/guix.texi:3004 +#: guix-git/doc/guix.texi:3021 #, no-wrap msgid "guix install emacs-guix\n" msgstr "guix install emacs-guix\n" #. type: Plain text -#: guix-git/doc/guix.texi:3025 +#: guix-git/doc/guix.texi:3042 msgid "Here we assume you've already made your first steps with Guix (@pxref{Getting Started}) and would like to get an overview about what's going on under the hood." msgstr "Здесь мы предполагаем, что вы уже сделали свои первые шаги с Guix (@pxref{Getting Started}) и хотели бы получить обзор того, что происходит под капотом." #. type: Plain text -#: guix-git/doc/guix.texi:3029 +#: guix-git/doc/guix.texi:3046 msgid "When using Guix, each package ends up in the @dfn{package store}, in its own directory---something that resembles @file{/gnu/store/xxx-package-1.2}, where @code{xxx} is a base32 string." msgstr "При использовании Guix каждый пакет после установки размещается в @dfn{package store}, в собственной директории, например, @file{/gnu/store/xxx-package-1.2}, где @code{xxx} - это строка base32." #. type: Plain text -#: guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3051 msgid "Instead of referring to these directories, users have their own @dfn{profile}, which points to the packages that they actually want to use. These profiles are stored within each user's home directory, at @code{$HOME/.guix-profile}." msgstr "Вместо того, чтобы ссылаться на эти директории, пользователям нужно обращаться к их @dfn{профилям}, профиль указывает на пакеты, которые они хотят использовать. Эти профили хранятся в домашней директории каждого пользователя в @code{$HOME/.guix-profile}." #. type: Plain text -#: guix-git/doc/guix.texi:3042 +#: guix-git/doc/guix.texi:3059 msgid "For example, @code{alice} installs GCC 4.7.2. As a result, @file{/home/alice/.guix-profile/bin/gcc} points to @file{/gnu/store/@dots{}-gcc-4.7.2/bin/gcc}. Now, on the same machine, @code{bob} had already installed GCC 4.8.0. The profile of @code{bob} simply continues to point to @file{/gnu/store/@dots{}-gcc-4.8.0/bin/gcc}---i.e., both versions of GCC coexist on the same system without any interference." msgstr "Например, @code{alice} устанавливает GCC 4.7.2. В результате @file{/home/alice/.guix-profile/bin/gcc} указывает на @file{/gnu/store/@dots{}-gcc-4.7.2/bin/gcc}. Допустим, на той же машине @code{bob} установил GCC 4.8.0. Профиль пользователя @code{bob} просто указывает на @file{/gnu/store/@dots{}-gcc-4.8.0/bin/gcc}. То есть обе версии GCC присутствуют в одной системе без помех." #. type: Plain text -#: guix-git/doc/guix.texi:3046 +#: guix-git/doc/guix.texi:3063 msgid "The @command{guix package} command is the central tool to manage packages (@pxref{Invoking guix package}). It operates on the per-user profiles, and can be used @emph{with normal user privileges}." msgstr "Команда @command{guix package} --- главный инструмент для управления пакетами (@pxref{Invoking guix package}). Она работает с профилями пользователей, которые имеют @emph{права обычных пользователей}." #. type: cindex -#: guix-git/doc/guix.texi:3047 guix-git/doc/guix.texi:3130 +#: guix-git/doc/guix.texi:3064 guix-git/doc/guix.texi:3147 #, no-wrap msgid "transactions" msgstr "транзакции" #. type: Plain text -#: guix-git/doc/guix.texi:3054 +#: guix-git/doc/guix.texi:3071 msgid "The command provides the obvious install, remove, and upgrade operations. Each invocation is actually a @emph{transaction}: either the specified operation succeeds, or nothing happens. Thus, if the @command{guix package} process is terminated during the transaction, or if a power outage occurs during the transaction, then the user's profile remains in its previous state, and remains usable." msgstr "Команда предоставляет обязательные операции установки, удаления и обновления. Каждый вызов представляет собой @emph{транзакцию}, независимо от того, выполнены успешно заданные операции, или ничего не произошло. Так, если процесс @command{guix package} завершился во время транзакции, или произошёл сбой питания во время транзакции, тогда профиль пользователя остаётся в исходном состоянии, готовом к использованию." #. type: Plain text -#: guix-git/doc/guix.texi:3062 +#: guix-git/doc/guix.texi:3079 msgid "In addition, any package transaction may be @emph{rolled back}. So, if, for example, an upgrade installs a new version of a package that turns out to have a serious bug, users may roll back to the previous instance of their profile, which was known to work well. Similarly, the global system configuration on Guix is subject to transactional upgrades and roll-back (@pxref{Using the Configuration System})." msgstr "В дополнение, каждую транзакцию, которая работает с пакетами, можно @emph{откатить}. Так если, например, обновление устанавливает новую версию пакета, которая имеет серьёзный баг, пользователи могут откатиться до предыдущей инстанции своего профиля, который работал нормально. Точно так же, глобальные настройки системы Guix являются объектом транзакционных обновлений и откатов (@pxref{Using the Configuration System})." #. type: Plain text -#: guix-git/doc/guix.texi:3069 +#: guix-git/doc/guix.texi:3086 msgid "All packages in the package store may be @emph{garbage-collected}. Guix can determine which packages are still referenced by user profiles, and remove those that are provably no longer referenced (@pxref{Invoking guix gc}). Users may also explicitly remove old generations of their profile so that the packages they refer to can be collected." msgstr "Все пакеты на складе могут быть @emph{собраны как мусор}. Guix может определить, какие пакеты всё ещё используются профилями пользователей, и удалить те, которые однозначно больше не используются (@pxref{Invoking guix gc}). Также пользователи могут явно удалить старые поколения (generations) их профилей, поэтому пакеты, на которые ссылались старые профили, могут быть удалены." #. type: Plain text -#: guix-git/doc/guix.texi:3082 +#: guix-git/doc/guix.texi:3099 msgid "Guix takes a @dfn{purely functional} approach to package management, as described in the introduction (@pxref{Introduction}). Each @file{/gnu/store} package directory name contains a hash of all the inputs that were used to build that package---compiler, libraries, build scripts, etc. This direct correspondence allows users to make sure a given package installation matches the current state of their distribution. It also helps maximize @dfn{build reproducibility}: thanks to the isolated build environments that are used, a given build is likely to yield bit-identical files when performed on different machines (@pxref{Invoking guix-daemon, container})." msgstr "Guix реализует @dfn{чисто функциональный} подход к управлению пакетами, как описано во введении (@pxref{Introduction}). В @file{/gnu/store} имя директории каждого пакета содержит хеш всех входных данных, которые использовались при сборке пакета: компилятор, библиотеки, скрипты сборки и т.д. Это прямое соответствие позволяет пользователям убедиться, что данная установка пакета соответствует текущему состоянию дистрибутива. Также это помогает улучшить @dfn{воспроизводимость сборки}: благодаря изолированному окружению сборки, которая используется при установке пакета, результат сборки содержит точно такие же файлы на разных машинах (@pxref{Invoking guix-daemon, container})." #. type: Plain text -#: guix-git/doc/guix.texi:3093 +#: guix-git/doc/guix.texi:3110 msgid "This foundation allows Guix to support @dfn{transparent binary/source deployment}. When a pre-built binary for a @file{/gnu/store} item is available from an external source---a @dfn{substitute}, Guix just downloads it and unpacks it; otherwise, it builds the package from source, locally (@pxref{Substitutes}). Because build results are usually bit-for-bit reproducible, users do not have to trust servers that provide substitutes: they can force a local build and @emph{challenge} providers (@pxref{Invoking guix challenge})." msgstr "Эта концепция позволяет Guix поддерживать @dfn{прозрачное внедрение бинарников/исходников}. Когда доступен элемент @file{/gnu/store}, собранный заранее на внешнем источнике, то есть готова @dfn{подстановка}, Guix просто скачивает и распаковывает его. В противном случае он собирает пакет из исходников на локальной машине (@pxref{Substitutes}). Так как результаты сборки обычно воспроизводимы бит-к-биту, пользователи не должны доверять серверам, которые поставляют подстановки --- они могут целенаправленно запросить локальную сборку и @emph{не пользоваться} серверами подстановки (@pxref{Invoking guix challenge})." #. type: Plain text -#: guix-git/doc/guix.texi:3099 +#: guix-git/doc/guix.texi:3116 #, fuzzy #| msgid "Control over the build environment is a feature that is also useful for developers. The @command{guix environment} command allows developers of a package to quickly set up the right development environment for their package, without having to manually install the dependencies of the package into their profile (@pxref{Invoking guix environment})." msgid "Control over the build environment is a feature that is also useful for developers. The @command{guix shell} command allows developers of a package to quickly set up the right development environment for their package, without having to manually install the dependencies of the package into their profile (@pxref{Invoking guix shell})." msgstr "Управление окружением сборки --- функция, которая полезна для разработчиков. Команда @command{guix environment} позволяет разработчикам пакетов быстро установить требуемое окружение разработки без необходимости устанавливать в свой профиль зависимости пакета вручную (@pxref{Invoking guix environment})." #. type: cindex -#: guix-git/doc/guix.texi:3100 +#: guix-git/doc/guix.texi:3117 #, no-wrap msgid "replication, of software environments" msgstr "повторение, окружения программного обеспечения" #. type: cindex -#: guix-git/doc/guix.texi:3101 +#: guix-git/doc/guix.texi:3118 #, no-wrap msgid "provenance tracking, of software artifacts" msgstr "трекинг источника, артефакты программного обеспечения" #. type: Plain text -#: guix-git/doc/guix.texi:3108 +#: guix-git/doc/guix.texi:3125 msgid "All of Guix and its package definitions is version-controlled, and @command{guix pull} allows you to ``travel in time'' on the history of Guix itself (@pxref{Invoking guix pull}). This makes it possible to replicate a Guix instance on a different machine or at a later point in time, which in turn allows you to @emph{replicate complete software environments}, while retaining precise @dfn{provenance tracking} of the software." msgstr "Guix и его определения пакетов подчняются контролю версиями, и @command{guix pull} позволяет \"путешествовать во времени\" по истории Guix (@pxref{Invoking guix pull}). Это позволяет повторять инстанцию Guix на разных машинах или по прошествию времени, что в свою очередь позволяет вам @emph{повторять полностью программное окружение} из достпуных @dfn{трекеров источников} программного обеспечения." #. type: section -#: guix-git/doc/guix.texi:3110 +#: guix-git/doc/guix.texi:3127 #, no-wrap msgid "Invoking @command{guix package}" msgstr "Вызов @command{guix package}" #. type: cindex -#: guix-git/doc/guix.texi:3112 +#: guix-git/doc/guix.texi:3129 #, no-wrap msgid "installing packages" msgstr "установка пакетов" #. type: cindex -#: guix-git/doc/guix.texi:3113 +#: guix-git/doc/guix.texi:3130 #, no-wrap msgid "removing packages" msgstr "удаление пакетов" #. type: cindex -#: guix-git/doc/guix.texi:3114 +#: guix-git/doc/guix.texi:3131 #, no-wrap msgid "package installation" msgstr "установка пакета" #. type: cindex -#: guix-git/doc/guix.texi:3115 +#: guix-git/doc/guix.texi:3132 #, no-wrap msgid "package removal" msgstr "удаление пакета" #. type: Plain text -#: guix-git/doc/guix.texi:3125 +#: guix-git/doc/guix.texi:3142 msgid "The @command{guix package} command is the tool that allows users to install, upgrade, and remove packages, as well as rolling back to previous configurations. These operations work on a user @dfn{profile}---a directory of installed packages. Each user has a default profile in @file{$HOME/.guix-profile}. The command operates only on the user's own profile, and works with normal user privileges (@pxref{Features}). Its syntax is:" msgstr "Команда @command{guix package} --- инструмент, который позволяет пользователям устанавливать, обновлять и удалять пакеты, а также откатываться до предыдущих конфигураций (@pxref{Features}). Его синтаксис:" #. type: example -#: guix-git/doc/guix.texi:3128 +#: guix-git/doc/guix.texi:3145 #, no-wrap msgid "guix package @var{options}\n" msgstr "guix package @var{options}\n" #. type: Plain text -#: guix-git/doc/guix.texi:3135 +#: guix-git/doc/guix.texi:3152 msgid "Primarily, @var{options} specifies the operations to be performed during the transaction. Upon completion, a new profile is created, but previous @dfn{generations} of the profile remain available, should the user want to roll back." msgstr "В первую очередь, @var{options} (опции) задают операции, которые нужно выполнить в транзакции. По завершении создаётся новый профиль, а предыдущие @dfn{поколения} (generations) профиля остаются доступными, если пользователь решит откатиться." #. type: Plain text -#: guix-git/doc/guix.texi:3138 +#: guix-git/doc/guix.texi:3155 msgid "For example, to remove @code{lua} and install @code{guile} and @code{guile-cairo} in a single transaction:" msgstr "Например, чтобы удалить @code{lua} и устанвоить @code{guile} и @code{guile-cairo} в одной транзакции, напечатайте:" #. type: example -#: guix-git/doc/guix.texi:3141 +#: guix-git/doc/guix.texi:3158 #, no-wrap msgid "guix package -r lua -i guile guile-cairo\n" msgstr "guix package -r lua -i guile guile-cairo\n" #. type: cindex -#: guix-git/doc/guix.texi:3143 +#: guix-git/doc/guix.texi:3160 #, no-wrap msgid "aliases, for @command{guix package}" msgstr "синонимы, для @command{guix package}" #. type: Plain text -#: guix-git/doc/guix.texi:3145 +#: guix-git/doc/guix.texi:3162 msgid "For your convenience, we also provide the following aliases:" msgstr "Для вашего удобства мы также предоставляем следующие синонимы:" #. type: itemize -#: guix-git/doc/guix.texi:3149 +#: guix-git/doc/guix.texi:3166 msgid "@command{guix search} is an alias for @command{guix package -s}," msgstr "@command{guix search} - синоним @command{guix package -s}," #. type: itemize -#: guix-git/doc/guix.texi:3151 +#: guix-git/doc/guix.texi:3168 msgid "@command{guix install} is an alias for @command{guix package -i}," msgstr "@command{guix install} - синоним @command{guix package -i}," #. type: itemize -#: guix-git/doc/guix.texi:3153 +#: guix-git/doc/guix.texi:3170 msgid "@command{guix remove} is an alias for @command{guix package -r}," msgstr "@command{guix remove} - синоним @command{guix package -r}," #. type: itemize -#: guix-git/doc/guix.texi:3155 +#: guix-git/doc/guix.texi:3172 msgid "@command{guix upgrade} is an alias for @command{guix package -u}," msgstr "@command{guix upgrade} — это синоним @command{guix package -u}," #. type: itemize -#: guix-git/doc/guix.texi:3157 +#: guix-git/doc/guix.texi:3174 msgid "and @command{guix show} is an alias for @command{guix package --show=}." msgstr "и @command{guix show} псевдоним (alias) для @command{guix package --show=}." #. type: Plain text -#: guix-git/doc/guix.texi:3162 +#: guix-git/doc/guix.texi:3179 msgid "These aliases are less expressive than @command{guix package} and provide fewer options, so in some cases you'll probably want to use @command{guix package} directly." msgstr "Эти синонимы не такие мощные, как @command{guix package}, и предоставляют меньше опций, так что в некоторых случаях вам скорее нужно пользоваться непосредственно @command{guix package}." #. type: Plain text -#: guix-git/doc/guix.texi:3167 +#: guix-git/doc/guix.texi:3184 msgid "@command{guix package} also supports a @dfn{declarative approach} whereby the user specifies the exact set of packages to be available and passes it @i{via} the @option{--manifest} option (@pxref{profile-manifest, @option{--manifest}})." msgstr "@command{guix package} также поддерживает @dfn{декларативный подход}, с помощью которого пользователь зааёт точный набор пакетов, которые должны быть доступны, и передаёт его @i{в опции} @option{--manifest} (@pxref{profile-manifest, @option{--manifest}})." #. type: Plain text -#: guix-git/doc/guix.texi:3174 +#: guix-git/doc/guix.texi:3191 msgid "For each user, a symlink to the user's default profile is automatically created in @file{$HOME/.guix-profile}. This symlink always points to the current generation of the user's default profile. Thus, users can add @file{$HOME/.guix-profile/bin} to their @env{PATH} environment variable, and so on." msgstr "Для каждого пользователя автоматически создаётся символическая ссылка на профиль по умолчанию, она располагается в файле @file{$HOME/.guix-profile}. Эта ссылка всегда указывает на текущее поколение пользовательского профиля по умолчанию. Так пользователи могут добавить @file{$HOME/.guix-profile/bin} в свою переменную окружения @code{PATH} и прочее." #. type: cindex -#: guix-git/doc/guix.texi:3174 guix-git/doc/guix.texi:3418 +#: guix-git/doc/guix.texi:3191 guix-git/doc/guix.texi:3435 #, no-wrap msgid "search paths" msgstr "пути поиска" #. type: Plain text -#: guix-git/doc/guix.texi:3179 +#: guix-git/doc/guix.texi:3196 msgid "If you are not using Guix System, consider adding the following lines to your @file{~/.bash_profile} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}) so that newly-spawned shells get all the right environment variable definitions:" msgstr "Если вы не используете систему Guix, предполагается добавление следующих строк в ваш @file{~/.bash_profile} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}), чтобы порождаемые оболочки получили все необходимые определения переменных окружения:" #. type: example -#: guix-git/doc/guix.texi:3183 +#: guix-git/doc/guix.texi:3200 #, no-wrap msgid "" "GUIX_PROFILE=\"$HOME/.guix-profile\" ; \\\n" @@ -9037,300 +9131,300 @@ msgstr "" "source \"$GUIX_PROFILE/etc/profile\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:3194 +#: guix-git/doc/guix.texi:3211 msgid "In a multi-user setup, user profiles are stored in a place registered as a @dfn{garbage-collector root}, which @file{$HOME/.guix-profile} points to (@pxref{Invoking guix gc}). That directory is normally @code{@var{localstatedir}/guix/profiles/per-user/@var{user}}, where @var{localstatedir} is the value passed to @code{configure} as @option{--localstatedir}, and @var{user} is the user name. The @file{per-user} directory is created when @command{guix-daemon} is started, and the @var{user} sub-directory is created by @command{guix package}." msgstr "В случае многопользовательской установки, профили пользователей сохраняются в месте, которое зарегстрировано как @dfn{garbage-collector root}, которое указывет на @file{$HOME/.guix-profile} (@pxref{Invoking guix gc}). Эта директория обычно ссылается на @code{@var{localstatedir}/guix/profiles/per-user/@var{user}}, где @var{localstatedir} --- значение, переданное скрипту @code{configure} опцией @code{--localstatedir}, а @var{user} --- имя пользователя. Директория @file{per-user} создаёся, когда запускается @command{guix-daemon}, а поддиректория @var{user} создаётся @command{guix package}." #. type: Plain text -#: guix-git/doc/guix.texi:3196 +#: guix-git/doc/guix.texi:3213 msgid "The @var{options} can be among the following:" msgstr "Опции @var{options} могут быть следующими:" #. type: item -#: guix-git/doc/guix.texi:3199 +#: guix-git/doc/guix.texi:3216 #, no-wrap msgid "--install=@var{package} @dots{}" msgstr "--install=@var{package} @dots{}" #. type: itemx -#: guix-git/doc/guix.texi:3200 +#: guix-git/doc/guix.texi:3217 #, no-wrap msgid "-i @var{package} @dots{}" msgstr "-i @var{package} @dots{}" #. type: table -#: guix-git/doc/guix.texi:3202 +#: guix-git/doc/guix.texi:3219 msgid "Install the specified @var{package}s." msgstr "Установить заданный пакет." #. type: table -#: guix-git/doc/guix.texi:3207 +#: guix-git/doc/guix.texi:3224 msgid "Each @var{package} may specify either a simple package name, such as @code{guile}, or a package name followed by an at-sign and version number, such as @code{guile@@1.8.8} or simply @code{guile@@1.8} (in the latter case, the newest version prefixed by @code{1.8} is selected)." msgstr "Каждый @var{package} может задавать простое имя пакета, как например, @code{guile}, или имя пакета с указанием номера версии, например, @code{guile@@1.8.8} или просто @code{guile@@1.8} (в последнем случае выбирается самая новая версия с префиксом @code{1.8})." #. type: table -#: guix-git/doc/guix.texi:3215 +#: guix-git/doc/guix.texi:3232 msgid "If no version number is specified, the newest available version will be selected. In addition, @var{package} may contain a colon, followed by the name of one of the outputs of the package, as in @code{gcc:doc} or @code{binutils@@2.22:lib} (@pxref{Packages with Multiple Outputs}). Packages with a corresponding name (and optionally version) are searched for among the GNU distribution modules (@pxref{Package Modules})." msgstr "Если не задан номер версии, тогда будет выбрана самая новая доступная версия. Добавм, что @var{package} может содержать двоеточие и одно имя выходных данных пакета, как @code{gcc:doc} или @code{binutils@@2.22:lib} (@pxref{Packages with Multiple Outputs}). Пакеты с соответствующим именем (и опционально, версией) будут отыскиваться в модулях дистрибутива GNU (@pxref{Package Modules})." #. type: cindex -#: guix-git/doc/guix.texi:3216 +#: guix-git/doc/guix.texi:3233 #, no-wrap msgid "propagated inputs" msgstr "распространяемые входные данные" #. type: table -#: guix-git/doc/guix.texi:3222 +#: guix-git/doc/guix.texi:3239 msgid "Sometimes packages have @dfn{propagated inputs}: these are dependencies that automatically get installed along with the required package (@pxref{package-propagated-inputs, @code{propagated-inputs} in @code{package} objects}, for information about propagated inputs in package definitions)." msgstr "Иногда пакеты имеют @dfn{распространённые входные данные} (propagated inputs) --- это зависимости, которые устанавливаются автоматически вместе с требуемыми пакетами (см. @pxref{package-propagated-inputs, @code{propagated-inputs} in @code{package} objects} для подробной информации о распространяемых входных днных в определениях пакетов)." #. type: anchor{#1} -#: guix-git/doc/guix.texi:3229 +#: guix-git/doc/guix.texi:3246 msgid "package-cmd-propagated-inputs" msgstr "package-cmd-propagated-inputs" #. type: table -#: guix-git/doc/guix.texi:3229 +#: guix-git/doc/guix.texi:3246 msgid "An example is the GNU MPC library: its C header files refer to those of the GNU MPFR library, which in turn refer to those of the GMP library. Thus, when installing MPC, the MPFR and GMP libraries also get installed in the profile; removing MPC also removes MPFR and GMP---unless they had also been explicitly installed by the user." msgstr "Примером является библиотека GNU MPC: его файлы заголовков C ссылаются на файлы библиотеки GNU MPFR, которые в свою очередь, ссылаются на библиотеку GMP. Так при установке MPC, также в профиль будут устанволены библиотеки MPFR и GMP; удаление MPC также удалит MPFR и GMP, если конечно, они не были явно установлены пользователем." #. type: table -#: guix-git/doc/guix.texi:3234 +#: guix-git/doc/guix.texi:3251 msgid "Besides, packages sometimes rely on the definition of environment variables for their search paths (see explanation of @option{--search-paths} below). Any missing or possibly incorrect environment variable definitions are reported here." msgstr "Кроме того, пакеты иногда зависят от переменных окружения --- от их путей поиска (смотрите разъяснение @code{--search-paths} ниже). Любая отсутствующая или, возможно, некорректная переменная окружения вызывает сообщение отчета." #. type: item -#: guix-git/doc/guix.texi:3235 +#: guix-git/doc/guix.texi:3252 #, no-wrap msgid "--install-from-expression=@var{exp}" msgstr "--install-from-expression=@var{exp}" #. type: itemx -#: guix-git/doc/guix.texi:3236 +#: guix-git/doc/guix.texi:3253 #, no-wrap msgid "-e @var{exp}" msgstr "-e @var{exp}" #. type: table -#: guix-git/doc/guix.texi:3238 +#: guix-git/doc/guix.texi:3255 msgid "Install the package @var{exp} evaluates to." msgstr "Устанавить пакет, соответствующий @var{exp}." #. type: table -#: guix-git/doc/guix.texi:3243 +#: guix-git/doc/guix.texi:3260 msgid "@var{exp} must be a Scheme expression that evaluates to a @code{} object. This option is notably useful to disambiguate between same-named variants of a package, with expressions such as @code{(@@ (gnu packages base) guile-final)}." msgstr "@var{exp} должно быть выражением Scheme, которое определяет объект @code{}. Эта опция полезна, чтобы указать однозначно пакет, который имеет схожие варианты имён, например, выражением @code{(@@ (gnu packages base) guile-final)}." #. type: table -#: guix-git/doc/guix.texi:3247 +#: guix-git/doc/guix.texi:3264 msgid "Note that this option installs the first output of the specified package, which may be insufficient when needing a specific output of a multiple-output package." msgstr "Отметим, что эта опция устанавливает первое содержимое пакета, чего может быть недостаточно, если нужен специфичный выход пакета со множественным выходом." #. type: item -#: guix-git/doc/guix.texi:3248 +#: guix-git/doc/guix.texi:3265 #, no-wrap msgid "--install-from-file=@var{file}" msgstr "--install-from-file=@var{file}" #. type: itemx -#: guix-git/doc/guix.texi:3249 guix-git/doc/guix.texi:5781 -#: guix-git/doc/guix.texi:11396 +#: guix-git/doc/guix.texi:3266 guix-git/doc/guix.texi:5799 +#: guix-git/doc/guix.texi:11710 #, no-wrap msgid "-f @var{file}" msgstr "-f @var{file}" #. type: table -#: guix-git/doc/guix.texi:3251 +#: guix-git/doc/guix.texi:3268 msgid "Install the package that the code within @var{file} evaluates to." msgstr "Устанавить пакет, который определён в файле." #. type: table -#: guix-git/doc/guix.texi:3254 guix-git/doc/guix.texi:5787 -#: guix-git/doc/guix.texi:6162 +#: guix-git/doc/guix.texi:3271 guix-git/doc/guix.texi:5805 +#: guix-git/doc/guix.texi:6199 msgid "As an example, @var{file} might contain a definition like this (@pxref{Defining Packages}):" msgstr "Например, @var{file} может содержать определение (@pxref{Defining Packages}):" #. type: include -#: guix-git/doc/guix.texi:3256 guix-git/doc/guix.texi:11404 +#: guix-git/doc/guix.texi:3273 guix-git/doc/guix.texi:11718 #, no-wrap msgid "package-hello.scm" msgstr "package-hello.scm" #. type: table -#: guix-git/doc/guix.texi:3263 +#: guix-git/doc/guix.texi:3280 #, fuzzy #| msgid "Developers may find it useful to include such a @file{guix.scm} file in the root of their project source tree that can be used to test development snapshots and create reproducible development environments (@pxref{Invoking guix environment})." msgid "Developers may find it useful to include such a @file{guix.scm} file in the root of their project source tree that can be used to test development snapshots and create reproducible development environments (@pxref{Invoking guix shell})." msgstr "Пользователи могут найти полезным включить подобный файл @file{guix.scm} в корень дерева своего проекта исходного кода, и он будет использоваться для тестирования разработки снепшотов и для создания воспроизводимого окружения разработки (@pxref{Invoking guix environment})." #. type: table -#: guix-git/doc/guix.texi:3268 +#: guix-git/doc/guix.texi:3285 msgid "The @var{file} may also contain a JSON representation of one or more package definitions. Running @code{guix package -f} on @file{hello.json} with the following contents would result in installing the package @code{greeter} after building @code{myhello}:" msgstr "@var{file} может также содержать JSON-представление одного или нескольких определений пакетов. Запуск @code{guix package -f} на файле @file{hello.json} со следующим содержимым, установит пакет @code{greeter} после сборки @code{myhello}:" #. type: example -#: guix-git/doc/guix.texi:3271 guix-git/doc/guix.texi:11414 +#: guix-git/doc/guix.texi:3288 guix-git/doc/guix.texi:11728 #, no-wrap msgid "@verbatiminclude package-hello.json\n" msgstr "@verbatiminclude environment-gdb.scm\n" #. type: item -#: guix-git/doc/guix.texi:3273 +#: guix-git/doc/guix.texi:3290 #, no-wrap msgid "--remove=@var{package} @dots{}" msgstr "--remove=@var{package} @dots{}" #. type: itemx -#: guix-git/doc/guix.texi:3274 +#: guix-git/doc/guix.texi:3291 #, no-wrap msgid "-r @var{package} @dots{}" msgstr "-r @var{package} @dots{}" #. type: table -#: guix-git/doc/guix.texi:3276 +#: guix-git/doc/guix.texi:3293 msgid "Remove the specified @var{package}s." msgstr "Удалить обозначенный пакет." #. type: table -#: guix-git/doc/guix.texi:3281 +#: guix-git/doc/guix.texi:3298 msgid "As for @option{--install}, each @var{package} may specify a version number and/or output name in addition to the package name. For instance, @samp{-r glibc:debug} would remove the @code{debug} output of @code{glibc}." msgstr "Касаемо @code{--install}, каждый пакет @var{package} может задавать номер версии и имя содержимого в добавлении к имени пакета. Например, @code{-r glibc:debug} удалит содержимое @code{debug} из @code{glibc}." #. type: item -#: guix-git/doc/guix.texi:3282 +#: guix-git/doc/guix.texi:3299 #, no-wrap msgid "--upgrade[=@var{regexp} @dots{}]" msgstr "--upgrade[=@var{regexp} @dots{}]" #. type: itemx -#: guix-git/doc/guix.texi:3283 +#: guix-git/doc/guix.texi:3300 #, no-wrap msgid "-u [@var{regexp} @dots{}]" msgstr "-u [@var{regexp} @dots{}]" #. type: cindex -#: guix-git/doc/guix.texi:3284 +#: guix-git/doc/guix.texi:3301 #, no-wrap msgid "upgrading packages" msgstr "обновление пакетов" #. type: table -#: guix-git/doc/guix.texi:3288 +#: guix-git/doc/guix.texi:3305 msgid "Upgrade all the installed packages. If one or more @var{regexp}s are specified, upgrade only installed packages whose name matches a @var{regexp}. Also see the @option{--do-not-upgrade} option below." msgstr "Обновить все устанволенные пакеты. Если задано одно или более значений @var{regexp}, обновление затронет только пакеты, которые соответствуют @var{regexp}. Также смотрите опцию @code{--do-not-upgrade} ниже." #. type: table -#: guix-git/doc/guix.texi:3293 +#: guix-git/doc/guix.texi:3310 msgid "Note that this upgrades package to the latest version of packages found in the distribution currently installed. To update your distribution, you should regularly run @command{guix pull} (@pxref{Invoking guix pull})." msgstr "Отметим, что это обновляет пакеты, которые установлены в системе, до последних версий, имеющихся в дистрибутиве. Чтобы обновить дистрибутив, нужно регулярно запускать @command{guix pull} (@pxref{Invoking guix pull})." #. type: cindex -#: guix-git/doc/guix.texi:3294 +#: guix-git/doc/guix.texi:3311 #, no-wrap msgid "package transformations, upgrades" msgstr "Параметры преобразования пакета" #. type: table -#: guix-git/doc/guix.texi:3299 +#: guix-git/doc/guix.texi:3316 msgid "When upgrading, package transformations that were originally applied when creating the profile are automatically re-applied (@pxref{Package Transformation Options}). For example, assume you first installed Emacs from the tip of its development branch with:" msgstr "При обновлении автоматически применяются преобразования пакета, которые были первоначально применены при создании профиля (@pxref{Package Transformation Options}). Например, предположим, что вы сначала установили Emacs из ветки разработки с помощью:" #. type: example -#: guix-git/doc/guix.texi:3302 +#: guix-git/doc/guix.texi:3319 #, no-wrap msgid "guix install emacs-next --with-branch=emacs-next=master\n" msgstr "guix install emacs-next --with-branch=emacs-next=master\n" #. type: table -#: guix-git/doc/guix.texi:3307 +#: guix-git/doc/guix.texi:3324 msgid "Next time you run @command{guix upgrade}, Guix will again pull the tip of the Emacs development branch and build @code{emacs-next} from that checkout." msgstr "В следующий раз, когда вы запустите @command{guix upgrade}, Guix снова посмотрит на ветку разработки Emacs и соберет новый @code{emacs-next}." #. type: table -#: guix-git/doc/guix.texi:3312 +#: guix-git/doc/guix.texi:3329 msgid "Note that transformation options such as @option{--with-branch} and @option{--with-source} depend on external state; it is up to you to ensure that they work as expected. You can also discard a transformations that apply to a package by running:" msgstr "Обратите внимание, что параметры преобразования, такие как @option{--with-branch} и @option{--with-source}, зависят от внешнего состояния; вам решать, чтобы они работали должным образом. Вы также можете отменить преобразования, которые применяются к пакету, запустив:" #. type: example -#: guix-git/doc/guix.texi:3315 +#: guix-git/doc/guix.texi:3332 #, no-wrap msgid "guix install @var{package}\n" msgstr "guix install @var{package}\n" #. type: item -#: guix-git/doc/guix.texi:3317 +#: guix-git/doc/guix.texi:3334 #, no-wrap msgid "--do-not-upgrade[=@var{regexp} @dots{}]" msgstr "--do-not-upgrade[=@var{regexp} @dots{}]" #. type: table -#: guix-git/doc/guix.texi:3322 +#: guix-git/doc/guix.texi:3339 msgid "When used together with the @option{--upgrade} option, do @emph{not} upgrade any packages whose name matches a @var{regexp}. For example, to upgrade all packages in the current profile except those containing the substring ``emacs'':" msgstr "При совместном использовании с опцией @code{--upgrade} @emph{не} обновляет ни один пакет, чьё имя соответствует @var{regexp}. Например, обновить все пакеты в текущем профиле , кроме тех, которые содержат подстроку \"emacs\":" #. type: example -#: guix-git/doc/guix.texi:3325 +#: guix-git/doc/guix.texi:3342 #, no-wrap msgid "$ guix package --upgrade . --do-not-upgrade emacs\n" msgstr "$ guix package --upgrade . --do-not-upgrade emacs\n" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3327 +#: guix-git/doc/guix.texi:3344 #, no-wrap msgid "profile-manifest" msgstr "profile-manifest" #. type: item -#: guix-git/doc/guix.texi:3327 guix-git/doc/guix.texi:5799 -#: guix-git/doc/guix.texi:6167 guix-git/doc/guix.texi:6615 -#: guix-git/doc/guix.texi:12535 guix-git/doc/guix.texi:14135 +#: guix-git/doc/guix.texi:3344 guix-git/doc/guix.texi:5817 +#: guix-git/doc/guix.texi:6204 guix-git/doc/guix.texi:6658 +#: guix-git/doc/guix.texi:12850 guix-git/doc/guix.texi:14492 #, no-wrap msgid "--manifest=@var{file}" msgstr "--manifest=@var{file}" #. type: itemx -#: guix-git/doc/guix.texi:3328 guix-git/doc/guix.texi:5800 -#: guix-git/doc/guix.texi:6168 guix-git/doc/guix.texi:6616 -#: guix-git/doc/guix.texi:12536 +#: guix-git/doc/guix.texi:3345 guix-git/doc/guix.texi:5818 +#: guix-git/doc/guix.texi:6205 guix-git/doc/guix.texi:6659 +#: guix-git/doc/guix.texi:12851 #, no-wrap msgid "-m @var{file}" msgstr "-m @var{file}" #. type: cindex -#: guix-git/doc/guix.texi:3329 +#: guix-git/doc/guix.texi:3346 #, no-wrap msgid "profile declaration" msgstr "описание профиля" #. type: cindex -#: guix-git/doc/guix.texi:3330 +#: guix-git/doc/guix.texi:3347 #, no-wrap msgid "profile manifest" msgstr "манифест профиля" #. type: table -#: guix-git/doc/guix.texi:3334 +#: guix-git/doc/guix.texi:3351 msgid "Create a new generation of the profile from the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "Создаёт новую версию профиля из объекта манифеста, возвращаемого кодом Scheme в @var{file}. Этот параметр можно указывать несколько раз. В результате манифесты будут объединены в один." #. type: table -#: guix-git/doc/guix.texi:3340 +#: guix-git/doc/guix.texi:3357 msgid "This allows you to @emph{declare} the profile's contents rather than constructing it through a sequence of @option{--install} and similar commands. The advantage is that @var{file} can be put under version control, copied to different machines to reproduce the same profile, and so on." msgstr "Это позволяет вам @emph{описать} содержимое профиля вместо того, чтобы собирать его последовательностью команд @code{--install} и других. Преимущество в том, что @var{file} может подчиняться контролю версиями, копироваться на другие машины, чтобы повторить такой же профиль и т.д." #. type: table -#: guix-git/doc/guix.texi:3344 +#: guix-git/doc/guix.texi:3361 msgid "@var{file} must return a @dfn{manifest} object, which is roughly a list of packages:" msgstr "@var{file} должен возвращать объект @dfn{manifest}, который, грубо говоря, является списком пакетов:" #. type: findex -#: guix-git/doc/guix.texi:3345 +#: guix-git/doc/guix.texi:3362 #, no-wrap msgid "packages->manifest" msgstr "packages->manifest" #. type: lisp -#: guix-git/doc/guix.texi:3348 +#: guix-git/doc/guix.texi:3365 #, no-wrap msgid "" "(use-package-modules guile emacs)\n" @@ -9340,7 +9434,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:3354 +#: guix-git/doc/guix.texi:3371 #, no-wrap msgid "" "(packages->manifest\n" @@ -9356,18 +9450,18 @@ msgstr "" " (list guile-2.0 \"debug\")))\n" #. type: findex -#: guix-git/doc/guix.texi:3356 +#: guix-git/doc/guix.texi:3373 #, no-wrap msgid "specifications->manifest" msgstr "specifications->manifest" #. type: table -#: guix-git/doc/guix.texi:3363 +#: guix-git/doc/guix.texi:3380 msgid "In this example we have to know which modules define the @code{emacs} and @code{guile-2.0} variables to provide the right @code{use-package-modules} line, which can be cumbersome. We can instead provide regular package specifications and let @code{specifications->manifest} look up the corresponding package objects, like this:" msgstr "В этом примере мыдолжны знать, какие модули содержат определения переменных @code{emacs} и @code{guile-2.0}, чтобы написать правильную строку @code{use-package-modules}, что может быть затруднительно. Вместо этого мы можем обозначить обычные спецификации пакетов и сделать, чтобы @code{specifications->manifest} искал соответствующие объекты пакетов так:" #. type: lisp -#: guix-git/doc/guix.texi:3367 +#: guix-git/doc/guix.texi:3384 #, no-wrap msgid "" "(specifications->manifest\n" @@ -9377,153 +9471,155 @@ msgstr "" " '(\"emacs\" \"guile@@2.2\" \"guile@@2.2:debug\"))\n" #. type: findex -#: guix-git/doc/guix.texi:3369 +#: guix-git/doc/guix.texi:3386 #, fuzzy, no-wrap #| msgid "packages->manifest" msgid "package->development-manifest" msgstr "packages->manifest" #. type: table -#: guix-git/doc/guix.texi:3372 +#: guix-git/doc/guix.texi:3389 #, fuzzy #| msgid "It's also assumed that the union of all the dependencies of a package has no conflicting files." msgid "You might also want to create a manifest for all the dependencies of a package, rather than the package itself:" msgstr "Также предполагается, что объединение всех зависимостей пакета не имеет конфликтующих файлов." #. type: lisp -#: guix-git/doc/guix.texi:3375 +#: guix-git/doc/guix.texi:3392 #, no-wrap msgid "(package->development-manifest (specification->package \"emacs\"))\n" msgstr "(package->development-manifest (specification->package \"emacs\"))\n" #. type: table -#: guix-git/doc/guix.texi:3379 +#: guix-git/doc/guix.texi:3396 msgid "The example above gives you all the software required to develop Emacs, similar to what @command{guix environment emacs} provides." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3382 +#: guix-git/doc/guix.texi:3399 msgid "@xref{export-manifest, @option{--export-manifest}}, to learn how to obtain a manifest file from an existing profile." msgstr "@xref{export-manifest, @option{--export-manifest}}, чтобы узнать, как получить файл манифеста из существующего профиля." #. type: item -#: guix-git/doc/guix.texi:3383 guix-git/doc/guix.texi:4492 +#: guix-git/doc/guix.texi:3400 guix-git/doc/guix.texi:4510 #, no-wrap msgid "--roll-back" msgstr "--roll-back" #. type: cindex -#: guix-git/doc/guix.texi:3384 guix-git/doc/guix.texi:4493 -#: guix-git/doc/guix.texi:35006 guix-git/doc/guix.texi:37641 +#: guix-git/doc/guix.texi:3401 guix-git/doc/guix.texi:4511 +#: guix-git/doc/guix.texi:35445 guix-git/doc/guix.texi:38120 #, no-wrap msgid "rolling back" msgstr "откат" #. type: cindex -#: guix-git/doc/guix.texi:3385 guix-git/doc/guix.texi:4494 +#: guix-git/doc/guix.texi:3402 guix-git/doc/guix.texi:4512 #, no-wrap msgid "undoing transactions" msgstr "отменение транзакций" #. type: cindex -#: guix-git/doc/guix.texi:3386 guix-git/doc/guix.texi:4495 +#: guix-git/doc/guix.texi:3403 guix-git/doc/guix.texi:4513 #, no-wrap msgid "transactions, undoing" msgstr "транзакции, отмена" #. type: table -#: guix-git/doc/guix.texi:3389 +#: guix-git/doc/guix.texi:3406 msgid "Roll back to the previous @dfn{generation} of the profile---i.e., undo the last transaction." msgstr "Откатиться до предыдущего @dfn{поколения} профиля, то есть отменить последнюю транзакцию." #. type: table -#: guix-git/doc/guix.texi:3392 +#: guix-git/doc/guix.texi:3409 msgid "When combined with options such as @option{--install}, roll back occurs before any other actions." msgstr "При сочетании с опциеями как @code{--install}, откат выполняется до всех прочих действий." #. type: table -#: guix-git/doc/guix.texi:3396 +#: guix-git/doc/guix.texi:3413 msgid "When rolling back from the first generation that actually contains installed packages, the profile is made to point to the @dfn{zeroth generation}, which contains no files apart from its own metadata." msgstr "При откате от первого поколения, которое по факту содержит установленные пакеты, профиль будет указывать на @dfn{нулевое поколение}, которое не содержит файлы, кроме собственных метаданных." #. type: table -#: guix-git/doc/guix.texi:3400 +#: guix-git/doc/guix.texi:3417 msgid "After having rolled back, installing, removing, or upgrading packages overwrites previous future generations. Thus, the history of the generations in a profile is always linear." msgstr "После выполнения отката, установка, удаление или обновление пакетов по факту заменяет прежние будущие поколения. То есть история поколений в профиле всегда линейная." #. type: item -#: guix-git/doc/guix.texi:3401 guix-git/doc/guix.texi:4499 +#: guix-git/doc/guix.texi:3418 guix-git/doc/guix.texi:4517 #, no-wrap msgid "--switch-generation=@var{pattern}" msgstr "--switch-generation=@var{pattern}" #. type: itemx -#: guix-git/doc/guix.texi:3402 guix-git/doc/guix.texi:4500 +#: guix-git/doc/guix.texi:3419 guix-git/doc/guix.texi:4518 #, no-wrap msgid "-S @var{pattern}" msgstr "-S @var{pattern}" #. type: cindex -#: guix-git/doc/guix.texi:3403 guix-git/doc/guix.texi:3635 -#: guix-git/doc/guix.texi:4501 guix-git/doc/guix.texi:34964 +#: guix-git/doc/guix.texi:3420 guix-git/doc/guix.texi:3653 +#: guix-git/doc/guix.texi:4519 guix-git/doc/guix.texi:35403 #, no-wrap msgid "generations" msgstr "поколения" #. type: table -#: guix-git/doc/guix.texi:3405 guix-git/doc/guix.texi:4503 +#: guix-git/doc/guix.texi:3422 guix-git/doc/guix.texi:4521 msgid "Switch to a particular generation defined by @var{pattern}." msgstr "Переключиться на определённое поколение, опрделённое @var{pattern}." #. type: table -#: guix-git/doc/guix.texi:3411 guix-git/doc/guix.texi:4509 +#: guix-git/doc/guix.texi:3428 guix-git/doc/guix.texi:4527 msgid "@var{pattern} may be either a generation number or a number prefixed with ``+'' or ``-''. The latter means: move forward/backward by a specified number of generations. For example, if you want to return to the latest generation after @option{--roll-back}, use @option{--switch-generation=+1}." msgstr "@var{pattern} может быть либо номером поколения или числом с префиксом \"+\" или \"-\". Последнее означает сменить вперёд/назад на обозначенное число поколений. Например, если вы хотите вернуться к последнему поколению после @code{--roll-back}, используйте @code{--switch-generation=+1}." #. type: table -#: guix-git/doc/guix.texi:3416 +#: guix-git/doc/guix.texi:3433 msgid "The difference between @option{--roll-back} and @option{--switch-generation=-1} is that @option{--switch-generation} will not make a zeroth generation, so if a specified generation does not exist, the current generation will not be changed." msgstr "Разница между @code{--roll-back} и @code{--switch-generation=-1} заключается в том, что @code{--switch-generation} не создаёт нулевое поколение, так что если заданное поколение не существует, текущее поколение не будет изменено." #. type: item -#: guix-git/doc/guix.texi:3417 +#: guix-git/doc/guix.texi:3434 #, no-wrap msgid "--search-paths[=@var{kind}]" msgstr "--search-paths[=@var{kind}]" #. type: table -#: guix-git/doc/guix.texi:3423 +#: guix-git/doc/guix.texi:3440 msgid "Report environment variable definitions, in Bash syntax, that may be needed in order to use the set of installed packages. These environment variables are used to specify @dfn{search paths} for files used by some of the installed packages." msgstr "Вывести отчёт об определениях переменных окружения в синтаксисе Bash. Это может понадобиться для использования набора установленных пакетов. Эти переменные окружения используются некоторыми установленными пакетами для поиска файлов." #. type: table -#: guix-git/doc/guix.texi:3431 -msgid "For example, GCC needs the @env{CPATH} and @env{LIBRARY_PATH} environment variables to be defined so it can look for headers and libraries in the user's profile (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C library are installed in the profile, then @option{--search-paths} will suggest setting these variables to @file{@var{profile}/include} and @file{@var{profile}/lib}, respectively." +#: guix-git/doc/guix.texi:3449 +#, fuzzy +#| msgid "For example, GCC needs the @env{CPATH} and @env{LIBRARY_PATH} environment variables to be defined so it can look for headers and libraries in the user's profile (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C library are installed in the profile, then @option{--search-paths} will suggest setting these variables to @file{@var{profile}/include} and @file{@var{profile}/lib}, respectively." +msgid "For example, GCC needs the @env{CPATH} and @env{LIBRARY_PATH} environment variables to be defined so it can look for headers and libraries in the user's profile (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C library are installed in the profile, then @option{--search-paths} will suggest setting these variables to @file{@var{profile}/include} and @file{@var{profile}/lib}, respectively (@pxref{Search Paths}, for info on search path specifications associated with packages.)" msgstr "Например, для GCC должны быть определены переменные окружения @code{CPATH} и @code{LIBRARY_PATH}, чтобы он мог искать заголовки и библиотеки в профиле пользователя (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). Если GCC и, скажем, библиотека C установлены в профиле, тогда @code{--search-paths} предложит установить эти переменные в @code{@var{profile}/include} и @code{@var{profile}/lib} соответственно." #. type: table -#: guix-git/doc/guix.texi:3434 +#: guix-git/doc/guix.texi:3452 msgid "The typical use case is to define these environment variables in the shell:" msgstr "Обычный способ определить эти переменные окружения в оболочке:" #. type: example -#: guix-git/doc/guix.texi:3437 +#: guix-git/doc/guix.texi:3455 #, no-wrap msgid "$ eval `guix package --search-paths`\n" msgstr "$ eval `guix package --search-paths`\n" #. type: table -#: guix-git/doc/guix.texi:3443 +#: guix-git/doc/guix.texi:3461 msgid "@var{kind} may be one of @code{exact}, @code{prefix}, or @code{suffix}, meaning that the returned environment variable definitions will either be exact settings, or prefixes or suffixes of the current value of these variables. When omitted, @var{kind} defaults to @code{exact}." msgstr "Вид @var{kind} может быть либо точный адрес @code{exact}, либо префикс @code{prefix}, либо суффикс @code{suffix}, то есть возвращаемые переменные окружения могут быть либо точными, либо префиксами и суффиксами текущего значения этих переменных. При пропуске вид @var{kind} по умолчанию выбирается точный @code{exact}." #. type: table -#: guix-git/doc/guix.texi:3446 +#: guix-git/doc/guix.texi:3464 msgid "This option can also be used to compute the @emph{combined} search paths of several profiles. Consider this example:" msgstr "Эта опция также может использоваться для вычисления @emph{комбинированных} путей поиска нескольких профилей. Рассмотрим пример:" #. type: example -#: guix-git/doc/guix.texi:3451 +#: guix-git/doc/guix.texi:3469 #, no-wrap msgid "" "$ guix package -p foo -i guile\n" @@ -9535,42 +9631,44 @@ msgstr "" "$ guix package -p foo -p bar --search-paths\n" #. type: table -#: guix-git/doc/guix.texi:3456 +#: guix-git/doc/guix.texi:3474 msgid "The last command above reports about the @env{GUILE_LOAD_PATH} variable, even though, taken individually, neither @file{foo} nor @file{bar} would lead to that recommendation." msgstr "Последняя команда выше составляет отчёт о переменной @code{GUILE_LOAD_PATH}, даже если по отдельности ни @file{foo}, ни @file{bar} не предшествуют рекомендациям." #. type: cindex -#: guix-git/doc/guix.texi:3458 +#: guix-git/doc/guix.texi:3476 #, no-wrap msgid "profile, choosing" msgstr "противоречеия профиля" #. type: item -#: guix-git/doc/guix.texi:3459 guix-git/doc/guix.texi:4529 -#: guix-git/doc/guix.texi:4858 +#: guix-git/doc/guix.texi:3477 guix-git/doc/guix.texi:4547 +#: guix-git/doc/guix.texi:4876 guix-git/doc/guix.texi:5827 +#: guix-git/doc/guix.texi:6240 #, no-wrap msgid "--profile=@var{profile}" msgstr "--profile=@var{profile}" #. type: itemx -#: guix-git/doc/guix.texi:3460 guix-git/doc/guix.texi:4530 -#: guix-git/doc/guix.texi:4859 +#: guix-git/doc/guix.texi:3478 guix-git/doc/guix.texi:4548 +#: guix-git/doc/guix.texi:4877 guix-git/doc/guix.texi:5828 +#: guix-git/doc/guix.texi:6241 #, no-wrap msgid "-p @var{profile}" msgstr "-p @var{profile}" #. type: table -#: guix-git/doc/guix.texi:3462 +#: guix-git/doc/guix.texi:3480 msgid "Use @var{profile} instead of the user's default profile." msgstr "Использовать @var{profile} вместо пользовательского профиля по умолчанию." #. type: table -#: guix-git/doc/guix.texi:3467 +#: guix-git/doc/guix.texi:3485 msgid "@var{profile} must be the name of a file that will be created upon completion. Concretely, @var{profile} will be a mere symbolic link (``symlink'') pointing to the actual profile where packages are installed:" msgstr "@var{profile} должен быть именем файла, который будет создан по завершении. Конкретно @var{profile} будет простой символической ссылкой (``символическая ссылка''), указывающей на текущий профиль, в котором установлены пакеты:" #. type: example -#: guix-git/doc/guix.texi:3473 +#: guix-git/doc/guix.texi:3491 #, no-wrap msgid "" "$ guix install hello -p ~/code/my-profile\n" @@ -9584,29 +9682,29 @@ msgstr "" "Hello, world!\n" #. type: table -#: guix-git/doc/guix.texi:3477 +#: guix-git/doc/guix.texi:3495 msgid "All it takes to get rid of the profile is to remove this symlink and its siblings that point to specific generations:" msgstr "Чтобы избавиться от профиля, нужно удалить символическую ссылку и привязанные к ней элементы, которые указывают на конкретные поколения:" #. type: example -#: guix-git/doc/guix.texi:3480 +#: guix-git/doc/guix.texi:3498 #, no-wrap msgid "$ rm ~/code/my-profile ~/code/my-profile-*-link\n" msgstr "$ rm ~/code/my-profile ~/code/my-profile-*-link\n" #. type: item -#: guix-git/doc/guix.texi:3482 +#: guix-git/doc/guix.texi:3500 #, no-wrap msgid "--list-profiles" msgstr "--list-profiles" #. type: table -#: guix-git/doc/guix.texi:3484 +#: guix-git/doc/guix.texi:3502 msgid "List all the user's profiles:" msgstr "Перечислить все профили пользователя:" #. type: example -#: guix-git/doc/guix.texi:3491 +#: guix-git/doc/guix.texi:3509 #, no-wrap msgid "" "$ guix package --list-profiles\n" @@ -9622,96 +9720,96 @@ msgstr "" "/home/charlie/tmp/test\n" #. type: table -#: guix-git/doc/guix.texi:3494 +#: guix-git/doc/guix.texi:3512 msgid "When running as root, list all the profiles of all the users." msgstr "При запуске от имени root будут перечислены все профили всех пользователей." #. type: cindex -#: guix-git/doc/guix.texi:3495 +#: guix-git/doc/guix.texi:3513 #, no-wrap msgid "collisions, in a profile" msgstr "противоречия, в профиле" #. type: cindex -#: guix-git/doc/guix.texi:3496 +#: guix-git/doc/guix.texi:3514 #, no-wrap msgid "colliding packages in profiles" msgstr "соперничающие пакеты в профиле" #. type: cindex -#: guix-git/doc/guix.texi:3497 +#: guix-git/doc/guix.texi:3515 #, no-wrap msgid "profile collisions" msgstr "противоречеия профиля" #. type: item -#: guix-git/doc/guix.texi:3498 +#: guix-git/doc/guix.texi:3516 #, no-wrap msgid "--allow-collisions" msgstr "--allow-collisions" #. type: table -#: guix-git/doc/guix.texi:3500 +#: guix-git/doc/guix.texi:3518 msgid "Allow colliding packages in the new profile. Use at your own risk!" msgstr "Разрешить соперничающие пакеты в новом профиле. Используйте на свой собственный страх и риск!" #. type: table -#: guix-git/doc/guix.texi:3504 +#: guix-git/doc/guix.texi:3522 msgid "By default, @command{guix package} reports as an error @dfn{collisions} in the profile. Collisions happen when two or more different versions or variants of a given package end up in the profile." msgstr "По умолчанию @command{guix package} делает отчёт о противоречиях @dfn{collisions} в профиле. Противоречия происходят, когда дви или более разных версии или варианта данного пакета присутсвуют в профиле." #. type: item -#: guix-git/doc/guix.texi:3505 guix-git/doc/guix.texi:4572 -#: guix-git/doc/guix.texi:6701 +#: guix-git/doc/guix.texi:3523 guix-git/doc/guix.texi:4590 +#: guix-git/doc/guix.texi:6744 #, no-wrap msgid "--bootstrap" msgstr "--bootstrap" #. type: table -#: guix-git/doc/guix.texi:3508 +#: guix-git/doc/guix.texi:3526 msgid "Use the bootstrap Guile to build the profile. This option is only useful to distribution developers." msgstr "Использовать бутстрап Guile для сборки профиля. Эта опция полезна только разработчикам дистрибутива." #. type: Plain text -#: guix-git/doc/guix.texi:3514 +#: guix-git/doc/guix.texi:3532 msgid "In addition to these actions, @command{guix package} supports the following options to query the current state of a profile, or the availability of packages:" msgstr "В дополнение к этим действиям @command{guix package} поддерживает следующие опции при обращении к текущему состоянию профиля или для проверки доступности пакетов:" #. type: item -#: guix-git/doc/guix.texi:3517 +#: guix-git/doc/guix.texi:3535 #, no-wrap msgid "--search=@var{regexp}" msgstr "--search=@var{regexp}" #. type: itemx -#: guix-git/doc/guix.texi:3518 +#: guix-git/doc/guix.texi:3536 #, no-wrap msgid "-s @var{regexp}" msgstr "-s @var{regexp}" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3520 +#: guix-git/doc/guix.texi:3538 msgid "guix-search" msgstr "guix-search" #. type: cindex -#: guix-git/doc/guix.texi:3520 +#: guix-git/doc/guix.texi:3538 #, no-wrap msgid "searching for packages" msgstr "поиск пакетов" #. type: table -#: guix-git/doc/guix.texi:3526 +#: guix-git/doc/guix.texi:3544 msgid "List the available packages whose name, synopsis, or description matches @var{regexp} (in a case-insensitive fashion), sorted by relevance. Print all the metadata of matching packages in @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "Вывести список пакетов, чьи имена или описания содержат выражение @var{regexp} с учётом регистра, упорядоченные по соответствию. Печать всех метаданных соответствующих пакетов в формате @code{recutils} (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." #. type: table -#: guix-git/doc/guix.texi:3529 +#: guix-git/doc/guix.texi:3547 msgid "This allows specific fields to be extracted using the @command{recsel} command, for instance:" msgstr "Это позволяет извлекать заданые поля, используя команду @command{recsel}, например:" #. type: example -#: guix-git/doc/guix.texi:3535 +#: guix-git/doc/guix.texi:3553 #, no-wrap msgid "" "$ guix package -s malloc | recsel -p name,version,relevance\n" @@ -9727,7 +9825,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:3539 +#: guix-git/doc/guix.texi:3557 #, no-wrap msgid "" "name: glibc\n" @@ -9741,7 +9839,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:3543 +#: guix-git/doc/guix.texi:3561 #, no-wrap msgid "" "name: libgc\n" @@ -9753,12 +9851,12 @@ msgstr "" "relevance: 1\n" #. type: table -#: guix-git/doc/guix.texi:3547 +#: guix-git/doc/guix.texi:3565 msgid "Similarly, to show the name of all the packages available under the terms of the GNU@tie{}LGPL version 3:" msgstr "Также для отображения имён всех доступных пакетов под лицензией GNU@tie{}LGPL версии 3:" #. type: example -#: guix-git/doc/guix.texi:3551 +#: guix-git/doc/guix.texi:3569 #, no-wrap msgid "" "$ guix package -s \"\" | recsel -p name -e 'license ~ \"LGPL 3\"'\n" @@ -9770,7 +9868,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:3554 +#: guix-git/doc/guix.texi:3572 #, no-wrap msgid "" "name: gmp\n" @@ -9780,12 +9878,12 @@ msgstr "" "@dots{}\n" #. type: table -#: guix-git/doc/guix.texi:3560 +#: guix-git/doc/guix.texi:3578 msgid "It is also possible to refine search results using several @code{-s} flags to @command{guix package}, or several arguments to @command{guix search}. For example, the following command returns a list of board games (this time using the @command{guix search} alias):" msgstr "Также можно уточнить поиск, используя несколько флагов @code{-s} в команде @command{guix package} или несколько аргументов в @command{guix search}. Например, следующая команда возвращает список настольных игр (используя синоним @command{guix search} на этот раз):" #. type: example -#: guix-git/doc/guix.texi:3565 +#: guix-git/doc/guix.texi:3583 #, no-wrap msgid "" "$ guix search '\\' game | recsel -p name\n" @@ -9797,17 +9895,17 @@ msgstr "" "@dots{}\n" #. type: table -#: guix-git/doc/guix.texi:3571 +#: guix-git/doc/guix.texi:3589 msgid "If we were to omit @code{-s game}, we would also get software packages that deal with printed circuit boards; removing the angle brackets around @code{board} would further add packages that have to do with keyboards." msgstr "При пропуске @code{-s game} мы получим пакеты программного обеспечения, которые работают с печатными платами (boards); удалив угловые скобки рядом с @code{board}, получим пакеты, которые также работают с клавиатурами (keyboards)." #. type: table -#: guix-git/doc/guix.texi:3575 +#: guix-git/doc/guix.texi:3593 msgid "And now for a more elaborate example. The following command searches for cryptographic libraries, filters out Haskell, Perl, Python, and Ruby libraries, and prints the name and synopsis of the matching packages:" msgstr "А теперь более запутанный пример. Следующая команда ищет библиотеки криптографии, фильтрует библиотеки Haskel, Perl, Python и Ruby и печатает имена и краткие описания найденных пакетов:" #. type: example -#: guix-git/doc/guix.texi:3579 +#: guix-git/doc/guix.texi:3597 #, no-wrap msgid "" "$ guix search crypto library | \\\n" @@ -9817,23 +9915,23 @@ msgstr "" " recsel -e '! (name ~ \"^(ghc|perl|python|ruby)\")' -p name,synopsis\n" #. type: table -#: guix-git/doc/guix.texi:3584 +#: guix-git/doc/guix.texi:3602 msgid "@xref{Selection Expressions,,, recutils, GNU recutils manual}, for more information on @dfn{selection expressions} for @code{recsel -e}." msgstr "См. @xref{Selection Expressions,,, recutils, GNU recutils manual} для подробной информации о регуларяных выражениях @dfn{selection expressions} для @code{recsel -e}." #. type: item -#: guix-git/doc/guix.texi:3585 +#: guix-git/doc/guix.texi:3603 #, no-wrap msgid "--show=@var{package}" msgstr "--show=@var{package}" #. type: table -#: guix-git/doc/guix.texi:3589 +#: guix-git/doc/guix.texi:3607 msgid "Show details about @var{package}, taken from the list of available packages, in @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "Показать детали пакета @var{package} из списка доступных пакетов в формате @code{recutils} (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." #. type: example -#: guix-git/doc/guix.texi:3594 +#: guix-git/doc/guix.texi:3612 #, fuzzy, no-wrap #| msgid "" #| "$ guix package --show=python | recsel -p name,version\n" @@ -9852,7 +9950,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:3597 +#: guix-git/doc/guix.texi:3615 #, fuzzy, no-wrap #| msgid "" #| "name: python\n" @@ -9866,7 +9964,7 @@ msgstr "" "version: 3.3.5\n" #. type: example -#: guix-git/doc/guix.texi:3601 +#: guix-git/doc/guix.texi:3619 #, fuzzy, no-wrap #| msgid "" #| "name: glibc\n" @@ -9884,12 +9982,12 @@ msgstr "" "\n" #. type: table -#: guix-git/doc/guix.texi:3605 +#: guix-git/doc/guix.texi:3623 msgid "You may also specify the full name of a package to only get details about a specific version of it (this time using the @command{guix show} alias):" msgstr "Можно также указать полное имя пакета, чтобы только получить детали его определённой версии (в этот раз, используя @command{guix show} псевдоним):" #. type: example -#: guix-git/doc/guix.texi:3609 +#: guix-git/doc/guix.texi:3627 #, fuzzy, no-wrap #| msgid "" #| "$ guix show python@@3.4 | recsel -p name,version\n" @@ -9905,307 +10003,307 @@ msgstr "" "\"version: 3.4.3\"\n" #. type: item -#: guix-git/doc/guix.texi:3611 +#: guix-git/doc/guix.texi:3629 #, no-wrap msgid "--list-installed[=@var{regexp}]" msgstr "--list-installed[=@var{regexp}]" #. type: itemx -#: guix-git/doc/guix.texi:3612 +#: guix-git/doc/guix.texi:3630 #, no-wrap msgid "-I [@var{regexp}]" msgstr "-I [@var{regexp}]" #. type: table -#: guix-git/doc/guix.texi:3616 +#: guix-git/doc/guix.texi:3634 msgid "List the currently installed packages in the specified profile, with the most recently installed packages shown last. When @var{regexp} is specified, list only installed packages whose name matches @var{regexp}." msgstr "Вывести текущий список установленных пакетов в заданном профиле, отобразив самый последний установленный пакет последним. Если задано @var{regexp}, будут выведены только пакеты, чьи имена содержат @var{regexp}." #. type: table -#: guix-git/doc/guix.texi:3622 +#: guix-git/doc/guix.texi:3640 msgid "For each installed package, print the following items, separated by tabs: the package name, its version string, the part of the package that is installed (for instance, @code{out} for the default output, @code{include} for its headers, etc.), and the path of this package in the store." msgstr "Для каждого установленного пакета выводит следующие элементы, разделенные табуляцией (tab): имя пакета, строка версии, частью какого пакета является установленный пакет (например, @code{out} вывода по умолчанию включает @code{include} его заголовки т.д.), а также путь этого пакета на складе." #. type: item -#: guix-git/doc/guix.texi:3623 +#: guix-git/doc/guix.texi:3641 #, no-wrap msgid "--list-available[=@var{regexp}]" msgstr "--list-available[=@var{regexp}]" #. type: itemx -#: guix-git/doc/guix.texi:3624 +#: guix-git/doc/guix.texi:3642 #, no-wrap msgid "-A [@var{regexp}]" msgstr "-A [@var{regexp}]" #. type: table -#: guix-git/doc/guix.texi:3628 +#: guix-git/doc/guix.texi:3646 msgid "List packages currently available in the distribution for this system (@pxref{GNU Distribution}). When @var{regexp} is specified, list only available packages whose name matches @var{regexp}." msgstr "Вывести список пакетов, доступных на текущий момент в дистрибутиве данной системы (@pxref{GNU Distribution}). Если задано @var{regexp}, выводит только установленные пакеты, чьё имя содержит @var{regexp}." #. type: table -#: guix-git/doc/guix.texi:3632 +#: guix-git/doc/guix.texi:3650 msgid "For each package, print the following items separated by tabs: its name, its version string, the parts of the package (@pxref{Packages with Multiple Outputs}), and the source location of its definition." msgstr "Для каждого пакета выводит следующие элементы, разделённые табуляцией: его имя, строка версии, часть пакета (@pxref{Packages with Multiple Outputs}), а также расположение его определения в исходниках." #. type: item -#: guix-git/doc/guix.texi:3633 guix-git/doc/guix.texi:4485 +#: guix-git/doc/guix.texi:3651 guix-git/doc/guix.texi:4503 #, no-wrap msgid "--list-generations[=@var{pattern}]" msgstr "--list-generations[=@var{pattern}]" #. type: itemx -#: guix-git/doc/guix.texi:3634 guix-git/doc/guix.texi:4486 +#: guix-git/doc/guix.texi:3652 guix-git/doc/guix.texi:4504 #, no-wrap msgid "-l [@var{pattern}]" msgstr "-l [@var{pattern}]" #. type: table -#: guix-git/doc/guix.texi:3640 +#: guix-git/doc/guix.texi:3658 msgid "Return a list of generations along with their creation dates; for each generation, show the installed packages, with the most recently installed packages shown last. Note that the zeroth generation is never shown." msgstr "Вывести список поколений (generations) с датами их создания; для каждого поколения отобразить установленные пакеты, самый последний установленный пакет отобразать последним. Отметим, что нулевое поколение никогда не показывается." #. type: table -#: guix-git/doc/guix.texi:3645 +#: guix-git/doc/guix.texi:3663 msgid "For each installed package, print the following items, separated by tabs: the name of a package, its version string, the part of the package that is installed (@pxref{Packages with Multiple Outputs}), and the location of this package in the store." msgstr "Для каждого установленного пакета отображает следующие элементы, разделённые табуляцией: имя пакета, строка версии, частью какого пакета является установленный пакет (@pxref{Packages with Multiple Outputs}), а также расположение пакета на складе." #. type: table -#: guix-git/doc/guix.texi:3648 +#: guix-git/doc/guix.texi:3666 msgid "When @var{pattern} is used, the command returns only matching generations. Valid patterns include:" msgstr "Если используется @var{pattern}, команда выводит только соответствующие поколения. Правильные паттерны содержат:" #. type: item -#: guix-git/doc/guix.texi:3650 +#: guix-git/doc/guix.texi:3668 #, no-wrap msgid "@emph{Integers and comma-separated integers}. Both patterns denote" msgstr "@emph{Числа и числа, разделённые запятыми}. Оба паттерна обозначают" #. type: itemize -#: guix-git/doc/guix.texi:3653 +#: guix-git/doc/guix.texi:3671 msgid "generation numbers. For instance, @option{--list-generations=1} returns the first one." msgstr "номера поколений. Например, @option{--list-generations=1} возвращает первое." #. type: itemize -#: guix-git/doc/guix.texi:3656 +#: guix-git/doc/guix.texi:3674 msgid "And @option{--list-generations=1,8,2} outputs three generations in the specified order. Neither spaces nor trailing commas are allowed." msgstr "Опция @code{--list-generations=1,8,2} выводит три поколения в заданном пордке. Пробелы и запятые на конце запрещены." #. type: item -#: guix-git/doc/guix.texi:3657 +#: guix-git/doc/guix.texi:3675 #, no-wrap msgid "@emph{Ranges}. @option{--list-generations=2..9} prints the" msgstr "@emph{Ranges}. @option{--list-generations=2..9} выводит" #. type: itemize -#: guix-git/doc/guix.texi:3660 +#: guix-git/doc/guix.texi:3678 msgid "specified generations and everything in between. Note that the start of a range must be smaller than its end." msgstr "заданные поколения и все между ними. Отметим, что начало диапазона должно быть меньше его конца." #. type: itemize -#: guix-git/doc/guix.texi:3664 +#: guix-git/doc/guix.texi:3682 msgid "It is also possible to omit the endpoint. For example, @option{--list-generations=2..}, returns all generations starting from the second one." msgstr "Также можно пропустить конечную точку. Например, @code{--list-generations=2..} возвращает все поколения, начиная со второго." #. type: item -#: guix-git/doc/guix.texi:3665 +#: guix-git/doc/guix.texi:3683 #, no-wrap msgid "@emph{Durations}. You can also get the last @emph{N}@tie{}days, weeks," msgstr "@emph{Сроки}. Также можно задать последние @emph{N}@tie{}дней, недель" #. type: itemize -#: guix-git/doc/guix.texi:3669 +#: guix-git/doc/guix.texi:3687 msgid "or months by passing an integer along with the first letter of the duration. For example, @option{--list-generations=20d} lists generations that are up to 20 days old." msgstr "или месяцев, указав число и первую букву срока (d,w,m). Например, @code{--list-generations=20d} отобразит список поколений старше 20 дней." #. type: item -#: guix-git/doc/guix.texi:3671 guix-git/doc/guix.texi:4510 +#: guix-git/doc/guix.texi:3689 guix-git/doc/guix.texi:4528 #, no-wrap msgid "--delete-generations[=@var{pattern}]" msgstr "--delete-generations[=@var{pattern}]" #. type: itemx -#: guix-git/doc/guix.texi:3672 guix-git/doc/guix.texi:4511 +#: guix-git/doc/guix.texi:3690 guix-git/doc/guix.texi:4529 #, no-wrap msgid "-d [@var{pattern}]" msgstr "-d [@var{pattern}]" #. type: table -#: guix-git/doc/guix.texi:3675 guix-git/doc/guix.texi:4514 +#: guix-git/doc/guix.texi:3693 guix-git/doc/guix.texi:4532 msgid "When @var{pattern} is omitted, delete all generations except the current one." msgstr "Если @var{pattern} пропущен, удалит все поголения, кроме текущего." #. type: table -#: guix-git/doc/guix.texi:3681 guix-git/doc/guix.texi:4520 +#: guix-git/doc/guix.texi:3699 guix-git/doc/guix.texi:4538 msgid "This command accepts the same patterns as @option{--list-generations}. When @var{pattern} is specified, delete the matching generations. When @var{pattern} specifies a duration, generations @emph{older} than the specified duration match. For instance, @option{--delete-generations=1m} deletes generations that are more than one month old." msgstr "Эта команда принимает такие же паттерны, как @option{--list-generations}. Если @var{pattern} задан, удалит соответствующие поколения. Если паттерн @var{pattern} задаёт срок, выбираются поколения @emph{старше} срока. Например, @code{--delete-generations=1m} удалит поколения, которые старше одного месяца." #. type: table -#: guix-git/doc/guix.texi:3684 +#: guix-git/doc/guix.texi:3702 msgid "If the current generation matches, it is @emph{not} deleted. Also, the zeroth generation is never deleted." msgstr "Если текущее поколение попадает под условия паттерна, оно не будет удалено. А также нулевое поокление никогда не удаляется." #. type: table -#: guix-git/doc/guix.texi:3687 guix-git/doc/guix.texi:4525 +#: guix-git/doc/guix.texi:3705 guix-git/doc/guix.texi:4543 msgid "Note that deleting generations prevents rolling back to them. Consequently, this command must be used with care." msgstr "Отметим, что удаление поколений делает невозможным откат к ним. Следовательно эта команда должна использоваться внимательно." #. type: cindex -#: guix-git/doc/guix.texi:3688 +#: guix-git/doc/guix.texi:3706 #, no-wrap msgid "manifest, exporting" msgstr "манифест, экспорт" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3690 +#: guix-git/doc/guix.texi:3708 msgid "export-manifest" msgstr "export-manifest" #. type: item -#: guix-git/doc/guix.texi:3690 +#: guix-git/doc/guix.texi:3708 #, no-wrap msgid "--export-manifest" msgstr "--export-manifest" #. type: table -#: guix-git/doc/guix.texi:3693 +#: guix-git/doc/guix.texi:3711 msgid "Write to standard output a manifest suitable for @option{--manifest} corresponding to the chosen profile(s)." msgstr "Напишите в стандартный вывод манифест, подходящий для @option{--manifest}, соответствующий выбранному профилю (-ам)." #. type: table -#: guix-git/doc/guix.texi:3697 +#: guix-git/doc/guix.texi:3715 msgid "This option is meant to help you migrate from the ``imperative'' operating mode---running @command{guix install}, @command{guix upgrade}, etc.---to the declarative mode that @option{--manifest} offers." msgstr "Эта опция предназначена для того, чтобы помочь вам перейти из ``императивного'' режима работы---запустив @command{guix install}, @command{guix upgrade} и т.д.---в декларативный режим, который предлагает @option{--manifest}." #. type: table -#: guix-git/doc/guix.texi:3702 +#: guix-git/doc/guix.texi:3720 msgid "Be aware that the resulting manifest @emph{approximates} what your profile actually contains; for instance, depending on how your profile was created, it can refer to packages or package versions that are not exactly what you specified." msgstr "Имейте в виду, что полученный манифест @emph{приблизительно} соответствует тому, что на самом деле содержится в вашем профиле; например, в зависимости от того, как был создан ваш профиль, он может относиться к пакетам или версиям пакетов, которые не совсем то, что вы указали." #. type: table -#: guix-git/doc/guix.texi:3707 +#: guix-git/doc/guix.texi:3725 msgid "Keep in mind that a manifest is purely symbolic: it only contains package names and possibly versions, and their meaning varies over time. If you wish to ``pin'' channels to the revisions that were used to build the profile(s), see @option{--export-channels} below." msgstr "Имейте в виду, что манифест является чисто символическим: он содержит только имена пакетов и, возможно, версии, и их значение со временем меняется. Если вы хотите ``привязать'' каналы к ревизиям, которые использовались для создания профиля (ов), см. @option{--export-channels} ниже." #. type: cindex -#: guix-git/doc/guix.texi:3708 +#: guix-git/doc/guix.texi:3726 #, no-wrap msgid "pinning, channel revisions of a profile" msgstr "закрепление, канальные ревизии профиля" #. type: item -#: guix-git/doc/guix.texi:3709 +#: guix-git/doc/guix.texi:3727 #, no-wrap msgid "--export-channels" msgstr "%default-channels" #. type: table -#: guix-git/doc/guix.texi:3713 +#: guix-git/doc/guix.texi:3731 msgid "Write to standard output the list of channels used by the chosen profile(s), in a format suitable for @command{guix pull --channels} or @command{guix time-machine --channels} (@pxref{Channels})." msgstr "Вывести на стандартный вывод список каналов, используемых выбранным профилем (-ями), в формате, подходящем для @command{guix pull --channels} или @command{guix time-machine --channels} (@pxref{Channels})." #. type: table -#: guix-git/doc/guix.texi:3717 +#: guix-git/doc/guix.texi:3735 msgid "Together with @option{--export-manifest}, this option provides information allowing you to replicate the current profile (@pxref{Replicating Guix})." msgstr "Вместе с @option{--export-manifest} этот параметр предоставляет информацию, позволяющую копировать текущий профиль (@pxref{Replicating Guix})." #. type: table -#: guix-git/doc/guix.texi:3725 +#: guix-git/doc/guix.texi:3743 msgid "However, note that the output of this command @emph{approximates} what was actually used to build this profile. In particular, a single profile might have been built from several different revisions of the same channel. In that case, @option{--export-manifest} chooses the last one and writes the list of other revisions in a comment. If you really need to pick packages from different channel revisions, you can use inferiors in your manifest to do so (@pxref{Inferiors})." msgstr "Однако обратите внимание, что выходные данные этой команды @emph{приблизительно} используются для создания этого профиля. В частности, один профиль мог быть построен из нескольких различных версий одного и того же канала. В этом случае @option{--export-manifest} выбирает последнюю версию и записывает список других ревизий в комментарий. Если вам действительно нужно выбрать пакеты из разных ревизий канала, вы можете использовать подчиненные элементы в своем манифесте для этого (@pxref{Inferiors})." #. type: table -#: guix-git/doc/guix.texi:3730 +#: guix-git/doc/guix.texi:3748 msgid "Together with @option{--export-manifest}, this is a good starting point if you are willing to migrate from the ``imperative'' model to the fully declarative model consisting of a manifest file along with a channels file pinning the exact channel revision(s) you want." msgstr "Если вы хотите перейти от ``императивной'' модели к полностью декларативной модели, состоящей из файла манифеста и файла каналов, закрепляющего точную желаемые версии каналов, то @option{--export-manifest} хорошая отправная точка." #. type: Plain text -#: guix-git/doc/guix.texi:3737 +#: guix-git/doc/guix.texi:3755 msgid "Finally, since @command{guix package} may actually start build processes, it supports all the common build options (@pxref{Common Build Options}). It also supports package transformation options, such as @option{--with-source}, and preserves them across upgrades (@pxref{Package Transformation Options})." msgstr "Наконец, так как @command{guix package} может запускать процессы сборки, она поддерживает все привычные опции сборки (@pxref{Common Build Options}). Она также поддерживает опции трансформации пакетов, как @option{--with-source} (@pxref{Package Transformation Options}). Однако, отметим, что трансформации пакетов теряются после обновлений; чтобы сохранить трансформации при обновлениях, нужно определить собственный вариант пакета в модуле Guile и добавить его в @code{GUIX_PACKAGE_PATH} (@pxref{Defining Packages})." #. type: cindex -#: guix-git/doc/guix.texi:3742 +#: guix-git/doc/guix.texi:3760 #, no-wrap msgid "pre-built binaries" msgstr "собранные бинарники" #. type: Plain text -#: guix-git/doc/guix.texi:3748 +#: guix-git/doc/guix.texi:3766 msgid "Guix supports transparent source/binary deployment, which means that it can either build things locally, or download pre-built items from a server, or both. We call these pre-built items @dfn{substitutes}---they are substitutes for local build results. In many cases, downloading a substitute is much faster than building things locally." msgstr "Guix поддерживает прозрачную развёртку исходников/бинарников, это означает возможность сборки пакетов локально или скачивания собранных элементов с сервера, или и то и другое. Мы называем собранные элементы @dfn{подстановками} (substitutes) --- это подстановки результатов локальных сборок. Часто скасивание подстановки намного быстрее, чем сборка пакетов локально." #. type: Plain text -#: guix-git/doc/guix.texi:3753 +#: guix-git/doc/guix.texi:3771 msgid "Substitutes can be anything resulting from a derivation build (@pxref{Derivations}). Of course, in the common case, they are pre-built package binaries, but source tarballs, for instance, which also result from derivation builds, can be available as substitutes." msgstr "В качестве подстановок может выступать какой угодно результат сборки деривации (@pxref{Derivations}). Конечно, обычно это собранные пакеты, но также архивы исходников, например, представляя собой результаты сборок дериваций, могут быть доступны в качестве подстановок." #. type: cindex -#: guix-git/doc/guix.texi:3767 +#: guix-git/doc/guix.texi:3785 #, no-wrap msgid "build farm" msgstr "ферма сборки" #. type: Plain text -#: guix-git/doc/guix.texi:3778 +#: guix-git/doc/guix.texi:3796 #, fuzzy #| msgid "The @code{@value{SUBSTITUTE-SERVER}} server is a front-end to an official build farm that builds packages from Guix continuously for some architectures, and makes them available as substitutes. This is the default source of substitutes; it can be overridden by passing the @option{--substitute-urls} option either to @command{guix-daemon} (@pxref{daemon-substitute-urls,, @code{guix-daemon --substitute-urls}}) or to client tools such as @command{guix package} (@pxref{client-substitute-urls,, client @option{--substitute-urls} option})." msgid "@code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} are both front-ends to official build farms that build packages from Guix continuously for some architectures, and make them available as substitutes. These are the default source of substitutes; which can be overridden by passing the @option{--substitute-urls} option either to @command{guix-daemon} (@pxref{daemon-substitute-urls,, @code{guix-daemon --substitute-urls}}) or to client tools such as @command{guix package} (@pxref{client-substitute-urls,, client @option{--substitute-urls} option})." msgstr "Сервер @code{@value{SUBSTITUTE-SERVER}} представляет собой интерфейс официальной фермы сборки, которая последовательно собирает пакеты Guix для некоторых архитектур и делает их доступными в качестве подстановок. Это источник подстановок по умолчанию; он может быть изменён при указании опции @option{--substitute-urls} как для @command{guix-daemon} (@pxref{daemon-substitute-urls,, @code{guix-daemon --substitute-urls}}) так и для клиентских инструментов, как @command{guix package} (@pxref{client-substitute-urls,, client @option{--substitute-urls} option})." #. type: Plain text -#: guix-git/doc/guix.texi:3784 +#: guix-git/doc/guix.texi:3802 msgid "Substitute URLs can be either HTTP or HTTPS. HTTPS is recommended because communications are encrypted; conversely, using HTTP makes all communications visible to an eavesdropper, who could use the information gathered to determine, for instance, whether your system has unpatched security vulnerabilities." msgstr "URL подстановок могут быть либо HTTP, либо HTTPS. Рекомендуется HTTPS, так как такая связь шифруется; и наоборот, использование HTTP делает связь видимой для подслушивающих, и они могут использовать собранную информацию, чтобы определить, например, что ваша система не имеет патчей, покрывающих уязвимости безопасности." #. type: Plain text -#: guix-git/doc/guix.texi:3793 +#: guix-git/doc/guix.texi:3811 #, fuzzy #| msgid "Substitutes from the official build farm are enabled by default when using Guix System (@pxref{GNU Distribution}). However, they are disabled by default when using Guix on a foreign distribution, unless you have explicitly enabled them via one of the recommended installation steps (@pxref{Installation}). The following paragraphs describe how to enable or disable substitutes for the official build farm; the same procedure can also be used to enable substitutes for any other substitute server." msgid "Substitutes from the official build farms are enabled by default when using Guix System (@pxref{GNU Distribution}). However, they are disabled by default when using Guix on a foreign distribution, unless you have explicitly enabled them via one of the recommended installation steps (@pxref{Installation}). The following paragraphs describe how to enable or disable substitutes for the official build farm; the same procedure can also be used to enable substitutes for any other substitute server." msgstr "Подстановки из официальной фермы сборки доступны по умолчанию при использовании системы Guix (@pxref{GNU Distribution}). Однако они отключены по умолчанию при использовании Guix на чужом дистрибутиве, если конечно вы явно не включили их на одном из рекомендуемых шагов установки (@pxref{Installation}). Ниже объясняется, как включить или отключить подстановки с официальной фермы сборки; такая же процедура может также использоваться для включения подстановок с любого другого сервера подстановок." #. type: cindex -#: guix-git/doc/guix.texi:3797 +#: guix-git/doc/guix.texi:3815 #, no-wrap msgid "security" msgstr "безопасность" #. type: cindex -#: guix-git/doc/guix.texi:3799 +#: guix-git/doc/guix.texi:3817 #, no-wrap msgid "access control list (ACL), for substitutes" msgstr "список контроля доступом (ACL), для подстановок" #. type: cindex -#: guix-git/doc/guix.texi:3800 +#: guix-git/doc/guix.texi:3818 #, no-wrap msgid "ACL (access control list), for substitutes" msgstr "ACL (список контроля доступом), для подстановок" #. type: Plain text -#: guix-git/doc/guix.texi:3806 +#: guix-git/doc/guix.texi:3824 #, fuzzy #| msgid "To allow Guix to download substitutes from @code{@value{SUBSTITUTE-SERVER}} or a mirror thereof, you must add its public key to the access control list (ACL) of archive imports, using the @command{guix archive} command (@pxref{Invoking guix archive}). Doing so implies that you trust @code{@value{SUBSTITUTE-SERVER}} to not be compromised and to serve genuine substitutes." msgid "To allow Guix to download substitutes from @code{@value{SUBSTITUTE-SERVER-1}}, @code{@value{SUBSTITUTE-SERVER-2}} or a mirror, you must add the relevant public key to the access control list (ACL) of archive imports, using the @command{guix archive} command (@pxref{Invoking guix archive}). Doing so implies that you trust the substitute server to not be compromised and to serve genuine substitutes." msgstr "Чтобы разрешить Guix скачивать подстановки из @code{@value{SUBSTITUTE-SERVER}} или зеркала, вы должны добавить его публичный ключ в список контроля доступа (ACL) импорта архивов, используя команду @command{guix archive} (@pxref{Invoking guix archive}). Это действие означает, что вы доверяете @code{@value{SUBSTITUTE-SERVER}}, что он не скомпрометирован и может давать подлинные подстановки." #. type: quotation -#: guix-git/doc/guix.texi:3811 +#: guix-git/doc/guix.texi:3829 #, fuzzy #| msgid "If you are using Guix System, you can skip this section: Guix System authorizes substitutes from @code{@value{SUBSTITUTE-SERVER}} by default." msgid "If you are using Guix System, you can skip this section: Guix System authorizes substitutes from @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} by default." msgstr "Если вы используете Guix System, вы можете пропустить этот раздел: Guix System разрешает замену из @code{@value{SUBSTITUTE-SERVER}} по умолчанию." #. type: Plain text -#: guix-git/doc/guix.texi:3819 +#: guix-git/doc/guix.texi:3837 #, fuzzy #| msgid "The public key for @code{@value{SUBSTITUTE-SERVER}} is installed along with Guix, in @code{@var{prefix}/share/guix/@value{SUBSTITUTE-SERVER}.pub}, where @var{prefix} is the installation prefix of Guix. If you installed Guix from source, make sure you checked the GPG signature of @file{guix-@value{VERSION}.tar.gz}, which contains this public key file. Then, you can run something like this:" msgid "The public keys for each of the project maintained substitute servers are installed along with Guix, in @code{@var{prefix}/share/guix/}, where @var{prefix} is the installation prefix of Guix. If you installed Guix from source, make sure you checked the GPG signature of @file{guix-@value{VERSION}.tar.gz}, which contains this public key file. Then, you can run something like this:" msgstr "Публичный ключ для @code{@value{SUBSTITUTE-SERVER}} устанавливается вместе с Guix в @code{@var{prefix}/share/guix/@value{SUBSTITUTE-SERVER}.pub}, где @var{prefix} --- префикс установки Guix. Если вы установили Guix из исходников, проверьте подпись GPG @file{guix-@value{VERSION}.tar.gz}, где содержится файл публичного ключа. Затем можно выполнить примерно следующее:" #. type: example -#: guix-git/doc/guix.texi:3823 +#: guix-git/doc/guix.texi:3841 #, no-wrap msgid "" "# guix archive --authorize < @var{prefix}/share/guix/@value{SUBSTITUTE-SERVER-1}.pub\n" @@ -10215,12 +10313,12 @@ msgstr "" "# guix archive --authorize < @var{prefix}/share/guix/@value{SUBSTITUTE-SERVER-2}.pub\n" #. type: Plain text -#: guix-git/doc/guix.texi:3827 +#: guix-git/doc/guix.texi:3845 msgid "Once this is in place, the output of a command like @code{guix build} should change from something like:" msgstr "Когда это сделано, вывод команды @code{guix build} должен измениться с примерно такого:" #. type: example -#: guix-git/doc/guix.texi:3836 +#: guix-git/doc/guix.texi:3854 #, no-wrap msgid "" "$ guix build emacs --dry-run\n" @@ -10240,12 +10338,12 @@ msgstr "" "@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:3840 +#: guix-git/doc/guix.texi:3858 msgid "to something like:" msgstr "на примерно следующий:" #. type: example -#: guix-git/doc/guix.texi:3849 +#: guix-git/doc/guix.texi:3867 #, no-wrap msgid "" "$ guix build emacs --dry-run\n" @@ -10265,50 +10363,50 @@ msgstr "" "@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:3856 +#: guix-git/doc/guix.texi:3874 #, fuzzy msgid "The text changed from ``The following derivations would be built'' to ``112.3 MB would be downloaded''. This indicates that substitutes from the configured substitute servers are usable and will be downloaded, when possible, for future builds." msgstr "Это показывает, что подстановки из @code{@value{SUBSTITUTE-SERVER}} готовы к использованию и будут скачиваться, если это возможно, в будущих сборках." #. type: cindex -#: guix-git/doc/guix.texi:3857 +#: guix-git/doc/guix.texi:3875 #, no-wrap msgid "substitutes, how to disable" msgstr "подстановки, как отключить" #. type: Plain text -#: guix-git/doc/guix.texi:3863 +#: guix-git/doc/guix.texi:3881 msgid "The substitute mechanism can be disabled globally by running @code{guix-daemon} with @option{--no-substitutes} (@pxref{Invoking guix-daemon}). It can also be disabled temporarily by passing the @option{--no-substitutes} option to @command{guix package}, @command{guix build}, and other command-line tools." msgstr "Механизм подстановок может быть отключен глобально путём запуска @code{guix-daemon} с @code{--no-substitutes} (@pxref{Invoking guix-daemon}). Также он может отключиться временно путём указания опции @code{--no-substitutes} в @command{guix package}, @command{guix build} и других инструментах командной строки." #. type: cindex -#: guix-git/doc/guix.texi:3867 +#: guix-git/doc/guix.texi:3885 #, no-wrap msgid "substitute servers, adding more" msgstr "Авторизация сервера подстановок" #. type: Plain text -#: guix-git/doc/guix.texi:3874 +#: guix-git/doc/guix.texi:3892 msgid "Guix can look up and fetch substitutes from several servers. This is useful when you are using packages from additional channels for which the official server does not have substitutes but another server provides them. Another situation where this is useful is when you would prefer to download from your organization's substitute server, resorting to the official server only as a fallback or dismissing it altogether." msgstr "Guix может искать и получать заменители с нескольких серверов. Это полезно, когда вы используете пакеты из дополнительных каналов, для которых официальный сервер не имеет заменителей, но их предоставляет другой сервер. Еще одна ситуация, когда это полезно, если вы предпочитаете выполнять загрузку с замещающего сервера вашей организации, прибегая к официальному серверу только в качестве запасного варианта или полностью отклоняя его." #. type: Plain text -#: guix-git/doc/guix.texi:3879 +#: guix-git/doc/guix.texi:3897 msgid "You can give Guix a list of substitute server URLs and it will check them in the specified order. You also need to explicitly authorize the public keys of substitute servers to instruct Guix to accept the substitutes they sign." msgstr "Вы можете дать Guix список URL-адресов серверов с заменителями, и он проверит их в указанном порядке. Вам также необходимо явно авторизовать открытые ключи серверов с заменителями, чтобы Guix принял заменители, которые они подписывают." #. type: Plain text -#: guix-git/doc/guix.texi:3886 +#: guix-git/doc/guix.texi:3904 msgid "On Guix System, this is achieved by modifying the configuration of the @code{guix} service. Since the @code{guix} service is part of the default lists of services, @code{%base-services} and @code{%desktop-services}, you can use @code{modify-services} to change its configuration and add the URLs and substitute keys that you want (@pxref{Service Reference, @code{modify-services}})." msgstr "В системе Guix это достигается путем изменения конфигурации службы @code{guix}. Поскольку служба @code{guix} является частью списков служб по умолчанию, @code{%base-services} и @code{%desktop-services}, вы можете использовать @code{modify-services} для изменения ее конфигурации и добавьте нужные URL-адреса и заменить ключи (@pxref{Service Reference, @code{modify-services}})." #. type: Plain text -#: guix-git/doc/guix.texi:3892 +#: guix-git/doc/guix.texi:3910 msgid "As an example, suppose you want to fetch substitutes from @code{guix.example.org} and to authorize the signing key of that server, in addition to the default @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}}. The resulting operating system configuration will look something like:" msgstr "В качестве примера предположим, что вы хотите получить заменители из @code{guix.example.org} и авторизовать ключ этого сервера в дополнение к @code{@value{SUBSTITUTE-SERVER-1}} и @code{@value{SUBSTITUTE-SERVER-2}}. Полученная конфигурация операционной системы будет выглядеть примерно так:" #. type: lisp -#: guix-git/doc/guix.texi:3909 +#: guix-git/doc/guix.texi:3927 #, no-wrap msgid "" "(operating-system\n" @@ -10344,12 +10442,12 @@ msgstr "" " %default-authorized-guix-keys)))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:3916 +#: guix-git/doc/guix.texi:3934 msgid "This assumes that the file @file{key.pub} contains the signing key of @code{guix.example.org}. With this change in place in your operating system configuration file (say @file{/etc/config.scm}), you can reconfigure and restart the @code{guix-daemon} service or reboot so the changes take effect:" msgstr "Предполагается, что файл @file{key.pub} содержит ключ подписи @code{guix.example.org}. После внесения этого изменения в файл конфигурации вашей операционной системы (например, @file{/etc/config.scm}) вы можете перенастроить и перезапустить службу @code{guix-daemon} или перезагрузиться, чтобы изменения вступили в силу:" #. type: example -#: guix-git/doc/guix.texi:3920 +#: guix-git/doc/guix.texi:3938 #, no-wrap msgid "" "$ sudo guix system reconfigure /etc/config.scm\n" @@ -10359,28 +10457,28 @@ msgstr "" "$ sudo herd restart guix-daemon\n" #. type: Plain text -#: guix-git/doc/guix.texi:3924 +#: guix-git/doc/guix.texi:3942 msgid "If you're running Guix on a ``foreign distro'', you would instead take the following steps to get substitutes from additional servers:" msgstr "Если вы используете Guix в качестве пакетного менеджера на другом дистрибутиве, вместо вышеописанного вы должны предпринять следующие шаги, чтобы получить заменители с дополнительных серверов:" #. type: enumerate -#: guix-git/doc/guix.texi:3933 +#: guix-git/doc/guix.texi:3951 msgid "Edit the service configuration file for @code{guix-daemon}; when using systemd, this is normally @file{/etc/systemd/system/guix-daemon.service}. Add the @option{--substitute-urls} option on the @command{guix-daemon} command line and list the URLs of interest (@pxref{daemon-substitute-urls, @code{guix-daemon --substitute-urls}}):" msgstr "Отредактируйте файл конфигурации службы для @code{guix-daemon}; когда исользуете systemd, это обычно @file{/etc/systemd/system/guix-daemon.service}. Добавьте параметр @option{--substitute-urls} команды @command {guix-daemon} при вызове в командной строке и перечислите интересующие URL-адреса (@pxref{daemon-substitute-urls, @code{guix-daemon --substitute-urls}}):" #. type: example -#: guix-git/doc/guix.texi:3936 +#: guix-git/doc/guix.texi:3954 #, no-wrap msgid "@dots{} --substitute-urls='https://guix.example.org @value{SUBSTITUTE-URLS}'\n" msgstr "@dots{} --substitute-urls='https://guix.example.org @value{SUBSTITUTE-URLS}'\n" #. type: enumerate -#: guix-git/doc/guix.texi:3940 +#: guix-git/doc/guix.texi:3958 msgid "Restart the daemon. For systemd, it goes like this:" msgstr "Перезапустите демон. Пример для systemd:" #. type: example -#: guix-git/doc/guix.texi:3944 +#: guix-git/doc/guix.texi:3962 #, no-wrap msgid "" "systemctl daemon-reload\n" @@ -10390,655 +10488,655 @@ msgstr "" "systemctl restart guix-daemon.service\n" #. type: enumerate -#: guix-git/doc/guix.texi:3948 +#: guix-git/doc/guix.texi:3966 msgid "Authorize the key of the new server (@pxref{Invoking guix archive}):" msgstr "Авторизуйте ключ нового сервера (@pxref{Invoking guix archive}):" #. type: example -#: guix-git/doc/guix.texi:3951 +#: guix-git/doc/guix.texi:3969 #, no-wrap msgid "guix archive --authorize < key.pub\n" msgstr "# guix archive --authorize < master-public-key.txt\n" #. type: enumerate -#: guix-git/doc/guix.texi:3955 +#: guix-git/doc/guix.texi:3973 msgid "Again this assumes @file{key.pub} contains the public key that @code{guix.example.org} uses to sign substitutes." msgstr "Опять же, это предполагает @file{key.pub}, содержащий открытый ключ, который @code{guix.example.org} использует для подписи замененителей." #. type: Plain text -#: guix-git/doc/guix.texi:3964 +#: guix-git/doc/guix.texi:3982 #, fuzzy #| msgid "Now you're all set! Substitutes will be preferably taken from @code{https://guix.example.org}, using @code{@value{SUBSTITUTE-SERVER}} as a fallback. Of course you can list as many substitute servers as you like, with the caveat that substitute lookup can be slowed down if too many servers need to be contacted." msgid "Now you're all set! Substitutes will be preferably taken from @code{https://guix.example.org}, using @code{@value{SUBSTITUTE-SERVER-1}} then @code{@value{SUBSTITUTE-SERVER-2}} as fallback options. Of course you can list as many substitute servers as you like, with the caveat that substitute lookup can be slowed down if too many servers need to be contacted." msgstr "Теперь все готово! Замены предпочтительно брать из @code{https://guix.example.org}, используя @code{@value{SUBSTITUTE-SERVER}} в качестве альтернативы. Конечно, вы можете указать столько серверов-заменителей, сколько захотите, но с оговоркой, что поиск замены может быть замедлен, если потребуется связаться со слишком большим количеством серверов." #. type: Plain text -#: guix-git/doc/guix.texi:3968 +#: guix-git/doc/guix.texi:3986 msgid "Note that there are also situations where one may want to add the URL of a substitute server @emph{without} authorizing its key. @xref{Substitute Authentication}, to understand this fine point." msgstr "Обратите внимание, что бывают также ситуации, когда можно добавить URL-адрес замещающего сервера @emph{без} авторизации его ключа. @xref{Substitute Authentication}, чтобы понять этот тонкий момент." #. type: cindex -#: guix-git/doc/guix.texi:3972 +#: guix-git/doc/guix.texi:3990 #, no-wrap msgid "digital signatures" msgstr "цифровые подписи" #. type: Plain text -#: guix-git/doc/guix.texi:3976 +#: guix-git/doc/guix.texi:3994 msgid "Guix detects and raises an error when attempting to use a substitute that has been tampered with. Likewise, it ignores substitutes that are not signed, or that are not signed by one of the keys listed in the ACL." msgstr "Guix определяет и вызывает ошибку, если происходит попытка использовать поддельную подстановку. А также он игнорирует подстановки, которые не подписаны, или те, которые не подписаны ни одним ключом из списка ACL." #. type: Plain text -#: guix-git/doc/guix.texi:3982 +#: guix-git/doc/guix.texi:4000 msgid "There is one exception though: if an unauthorized server provides substitutes that are @emph{bit-for-bit identical} to those provided by an authorized server, then the unauthorized server becomes eligible for downloads. For example, assume we have chosen two substitute servers with this option:" msgstr "Но всё же есть одно исключение: если не авторизованный сервер предоставляет подстановки, которые являются @emph{идентичными бит-к-биту} с теми, которые предоставляет авторизованный сервер, тогда неавторизованный сервер становится приемлемым для скачивания. Например, положим, мы выбрали два сервера подстановок такой опцией:" #. type: example -#: guix-git/doc/guix.texi:3985 +#: guix-git/doc/guix.texi:4003 #, no-wrap msgid "--substitute-urls=\"https://a.example.org https://b.example.org\"\n" msgstr "--substitute-urls=\"https://a.example.org https://b.example.org\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:3996 +#: guix-git/doc/guix.texi:4014 msgid "If the ACL contains only the key for @samp{b.example.org}, and if @samp{a.example.org} happens to serve the @emph{exact same} substitutes, then Guix will download substitutes from @samp{a.example.org} because it comes first in the list and can be considered a mirror of @samp{b.example.org}. In practice, independent build machines usually produce the same binaries, thanks to bit-reproducible builds (see below)." msgstr "Если ACL содержит только ключ для @code{b.example.org}, и если вдруг @code{a.example.org} предоставляет @emph{идентичные} подстановки, тогда Guix будет скачивать подстановки из @code{a.example.org}, потому что он идёт первым в списке и может рассматриваться как зеркало @code{b.example.org}. На практике независимые машины сборки обычно производят одинаковые бинарники благодаря воспроизводимым сборкам (смотрите ниже)." #. type: Plain text -#: guix-git/doc/guix.texi:4003 +#: guix-git/doc/guix.texi:4021 msgid "When using HTTPS, the server's X.509 certificate is @emph{not} validated (in other words, the server is not authenticated), contrary to what HTTPS clients such as Web browsers usually do. This is because Guix authenticates substitute information itself, as explained above, which is what we care about (whereas X.509 certificates are about authenticating bindings between domain names and public keys)." msgstr "При использовании HTTPS, сертификат X.509 сервера @emph{не} проверяется (другими словами, сервер не проходит аутентификацию), супротив тому, что HTTPS-клиенты, как веб-браузеры, обычно делают это. Это потому, что Guix аутентифицирует саму информацию подстановки, как это описано выше, что собственно и представляет для нас интерес (в то время, как сертификаты X.509 относятся к аутентификации связок между доменными именами и публичными ключами)." #. type: Plain text -#: guix-git/doc/guix.texi:4015 +#: guix-git/doc/guix.texi:4033 msgid "Substitutes are downloaded over HTTP or HTTPS@. The @env{http_proxy} and @env{https_proxy} environment variables can be set in the environment of @command{guix-daemon} and are honored for downloads of substitutes. Note that the value of those environment variables in the environment where @command{guix build}, @command{guix package}, and other client commands are run has @emph{absolutely no effect}." msgstr "Подстановки скачиваются через HTTP или HTTPS. Можно установить переменную окружения @code{http_proxy} в окружении @command{guix-daemon}, чтобы она учитывалась при скачивании. Отметим, что значение @code{http_proxy} в окружении, в котором запускаются @command{guix build}, @command{guix package} и другие клиентские команды @emph{совершенно не даёт эффекта}." #. type: Plain text -#: guix-git/doc/guix.texi:4024 +#: guix-git/doc/guix.texi:4042 msgid "Even when a substitute for a derivation is available, sometimes the substitution attempt will fail. This can happen for a variety of reasons: the substitute server might be offline, the substitute may recently have been deleted, the connection might have been interrupted, etc." msgstr "Даже когда подстановка для деривации доступна, иногда попытка подстановки завершается неудачно. Это может происходить по разным причинам: сервер подстановок может быть отключен, подстановка могла быть недавно удалена, связь может прерываться и т.д." #. type: Plain text -#: guix-git/doc/guix.texi:4038 +#: guix-git/doc/guix.texi:4056 msgid "When substitutes are enabled and a substitute for a derivation is available, but the substitution attempt fails, Guix will attempt to build the derivation locally depending on whether or not @option{--fallback} was given (@pxref{fallback-option,, common build option @option{--fallback}}). Specifically, if @option{--fallback} was omitted, then no local build will be performed, and the derivation is considered to have failed. However, if @option{--fallback} was given, then Guix will attempt to build the derivation locally, and the success or failure of the derivation depends on the success or failure of the local build. Note that when substitutes are disabled or no substitute is available for the derivation in question, a local build will @emph{always} be performed, regardless of whether or not @option{--fallback} was given." msgstr "Когда подстановки включены, и подстановка для деривации доступна, но попытка подстановки завершается с ошибкой, Guix будет пытаться собрать деривацию локально в зависимости от того, задана или нет опция @code{--fallback} (@pxref{fallback-option,, common build option @code{--fallback}}). То есть, если @code{--fallback} пропущена, тогда локальная сборка не будет выполняться, а деривация будет рассматриваться как неудачная. Однако, если @code{--fallback} задана, тогда Guix попытается собрать деривацию локально, и успех или неудача деривации будет зависеть от успешной или неудачной процедуры локальной сборки. Отметим, что когда подстановки отключены или нет доступных подстановок для деривации, локальная сборка @emph{всегда} будет исполняться, вне зависимости от установки опции @code{--fallback}." #. type: Plain text -#: guix-git/doc/guix.texi:4043 +#: guix-git/doc/guix.texi:4061 msgid "To get an idea of how many substitutes are available right now, you can try running the @command{guix weather} command (@pxref{Invoking guix weather}). This command provides statistics on the substitutes provided by a server." msgstr "Чтобы узнать,. сколько подстановок доступны в данный момент, можно попробовать запустить команду @command{guix weather} (@pxref{Invoking guix weather}). Эта команда предоставляет статистику подстановок, предоставляемых сервером." #. type: cindex -#: guix-git/doc/guix.texi:4047 +#: guix-git/doc/guix.texi:4065 #, no-wrap msgid "trust, of pre-built binaries" msgstr "доверие, собранным бинарникам" #. type: Plain text -#: guix-git/doc/guix.texi:4057 +#: guix-git/doc/guix.texi:4075 #, fuzzy #| msgid "Today, each individual's control over their own computing is at the mercy of institutions, corporations, and groups with enough power and determination to subvert the computing infrastructure and exploit its weaknesses. While using @code{@value{SUBSTITUTE-SERVER}} substitutes can be convenient, we encourage users to also build on their own, or even run their own build farm, such that @code{@value{SUBSTITUTE-SERVER}} is less of an interesting target. One way to help is by publishing the software you build using @command{guix publish} so that others have one more choice of server to download substitutes from (@pxref{Invoking guix publish})." msgid "Today, each individual's control over their own computing is at the mercy of institutions, corporations, and groups with enough power and determination to subvert the computing infrastructure and exploit its weaknesses. While using substitutes can be convenient, we encourage users to also build on their own, or even run their own build farm, such that the project run substitute servers are less of an interesting target. One way to help is by publishing the software you build using @command{guix publish} so that others have one more choice of server to download substitutes from (@pxref{Invoking guix publish})." msgstr "Сегодня индивидуальный контроль над работой за компьютером находится в заложниках у корпораций, организаций и групп, которые имеют достаточно силы и решимости разрушить инфраструктуру компьютерных сетей и внедрить уязвимости. Использование подстановок @code{@value{SUBSTITUTE-SERVER}} может быть удобным, мы также стимулируем пользователей собирать их у себя или даже устанавливать собственные фермы сборки, чтобы уменьшить зависимость от @code{@value{SUBSTITUTE-SERVER}}. Одним из способов помочь является публикация программного обеспечения, которое вы собираете, используя @command{guix publish}, тогда другие получат дополнительный сервер на выбор, чтобы скачивать подстановки (@pxref{Invoking guix publish})." #. type: Plain text -#: guix-git/doc/guix.texi:4069 +#: guix-git/doc/guix.texi:4087 msgid "Guix has the foundations to maximize build reproducibility (@pxref{Features}). In most cases, independent builds of a given package or derivation should yield bit-identical results. Thus, through a diverse set of independent package builds, we can strengthen the integrity of our systems. The @command{guix challenge} command aims to help users assess substitute servers, and to assist developers in finding out about non-deterministic package builds (@pxref{Invoking guix challenge}). Similarly, the @option{--check} option of @command{guix build} allows users to check whether previously-installed substitutes are genuine by rebuilding them locally (@pxref{build-check, @command{guix build --check}})." msgstr "Guix определяет цель максимизировать воспроизводимость сборок (@pxref{Features}). В большинстве случаев независимые сборки заданного пакета или деривации должны давать результаты, идентичные до бита. То есть, благодаря ряду независимых сборок пакета мы можем улучшить чистоту наших систем. Команда @command{guix challenge} должна помочь пользователям оценить серверы подстановок, а разработчикам - помочь выявить недетерминистические сборки пакетов (@pxref{Invoking guix challenge}). Подобным образом опция @option{--check} команды @command{guix build} даёт возможность пользователям проверить, яляются ли установленные ранее подстановки подлинными, выполнив их локальную сборку (@pxref{build-check, @command{guix build --check}})." #. type: Plain text -#: guix-git/doc/guix.texi:4073 +#: guix-git/doc/guix.texi:4091 msgid "In the future, we want Guix to have support to publish and retrieve binaries to/from other users, in a peer-to-peer fashion. If you would like to discuss this project, join us on @email{guix-devel@@gnu.org}." msgstr "Мы хотим, чтобы Guix в будущем поддерживал публикации и запросы бинарников от/для пользователей в формате равноправного обмена (peer-to-peer). Если вы желаете обсудить этот проект, присоединяйтесь к нам @email{guix-devel@@gnu.org}." #. type: cindex -#: guix-git/doc/guix.texi:4077 +#: guix-git/doc/guix.texi:4095 #, no-wrap msgid "multiple-output packages" msgstr "пакеты со множественным результатом" #. type: cindex -#: guix-git/doc/guix.texi:4078 +#: guix-git/doc/guix.texi:4096 #, no-wrap msgid "package outputs" msgstr "результаты пакета" #. type: cindex -#: guix-git/doc/guix.texi:4079 +#: guix-git/doc/guix.texi:4097 #, no-wrap msgid "outputs" msgstr "результаты" #. type: Plain text -#: guix-git/doc/guix.texi:4089 +#: guix-git/doc/guix.texi:4107 msgid "Often, packages defined in Guix have a single @dfn{output}---i.e., the source package leads to exactly one directory in the store. When running @command{guix install glibc}, one installs the default output of the GNU libc package; the default output is called @code{out}, but its name can be omitted as shown in this command. In this particular case, the default output of @code{glibc} contains all the C header files, shared libraries, static libraries, Info documentation, and other supporting files." msgstr "Часто пакеты, определённые в Guix, имеют один @dfn{выход}, это значит, что исходный пакет даёт только одну директорию на складе. При запуске @command{guix package -i glibc} это устанавливает результат по умолчанию; результат по умолчанию называется @code{выходом}, но его имя может пропускаться, как показано в этой команде. В этом частном случае результат по умолчанию для @code{glibc} содержит все файлы заголовков C, разделяемые библиотеки, статические библиотеки, документацию Info и другие поставляемые файлы." #. type: Plain text -#: guix-git/doc/guix.texi:4097 +#: guix-git/doc/guix.texi:4115 msgid "Sometimes it is more appropriate to separate the various types of files produced from a single source package into separate outputs. For instance, the GLib C library (used by GTK+ and related packages) installs more than 20 MiB of reference documentation as HTML pages. To save space for users who do not need it, the documentation goes to a separate output, called @code{doc}. To install the main GLib output, which contains everything but the documentation, one would run:" msgstr "Часто более приемлемым будет разделить различные типы файлов, поставляемых одним исходным пакетом, на отдельные выходы (результаты). Например, библиотека GLib C, используемая GTK+ и связанными с ним пакетами, устанавливает более 20Мб связанной документации в виде страниц HTML. Чтобы экономить место, пользователи, которым это не нужно, документацию можно выделить в отдельный выход, называемый @code{doc}. Чтобы установить основной выход GLib, который содерит всё, кроме документации, можно запустить:" #. type: example -#: guix-git/doc/guix.texi:4100 +#: guix-git/doc/guix.texi:4118 #, no-wrap msgid "guix install glib\n" msgstr "guix install glib\n" #. type: item -#: guix-git/doc/guix.texi:4102 guix-git/doc/guix.texi:36368 -#: guix-git/doc/guix.texi:36425 +#: guix-git/doc/guix.texi:4120 guix-git/doc/guix.texi:36858 +#: guix-git/doc/guix.texi:36915 #, no-wrap msgid "documentation" msgstr "документация" #. type: Plain text -#: guix-git/doc/guix.texi:4104 +#: guix-git/doc/guix.texi:4122 msgid "The command to install its documentation is:" msgstr "Команда для установки её документации:" #. type: example -#: guix-git/doc/guix.texi:4107 +#: guix-git/doc/guix.texi:4125 #, no-wrap msgid "guix install glib:doc\n" msgstr "guix install glib:doc\n" #. type: Plain text -#: guix-git/doc/guix.texi:4118 +#: guix-git/doc/guix.texi:4136 msgid "Some packages install programs with different ``dependency footprints''. For instance, the WordNet package installs both command-line tools and graphical user interfaces (GUIs). The former depend solely on the C library, whereas the latter depend on Tcl/Tk and the underlying X libraries. In this case, we leave the command-line tools in the default output, whereas the GUIs are in a separate output. This allows users who do not need the GUIs to save space. The @command{guix size} command can help find out about such situations (@pxref{Invoking guix size}). @command{guix graph} can also be helpful (@pxref{Invoking guix graph})." msgstr "Некоторые пакеты устанавливают программы с различными ``отпечатками зависимостей''. Например, пакет WordNet устанавливает и инструменты командной строки, и графический интерфейс (GUI). Первое зависит только от библиотеки C, а последнее зависит от Tcl/Tk и библиотек X. В таком случае мы оставляем инструменты командной строки в качестве результата по умолчанию, в то время как GUI поставляется как отдельный выход. Это экономит место для пользователей, которым не нужен GUI. Команда @command{guix size} может помочь выявить такие ситуации (@pxref{Invoking guix size}). @command{guix graph} также полезна (@pxref{Invoking guix graph})." #. type: Plain text -#: guix-git/doc/guix.texi:4126 +#: guix-git/doc/guix.texi:4144 msgid "There are several such multiple-output packages in the GNU distribution. Other conventional output names include @code{lib} for libraries and possibly header files, @code{bin} for stand-alone programs, and @code{debug} for debugging information (@pxref{Installing Debugging Files}). The outputs of a packages are listed in the third column of the output of @command{guix package --list-available} (@pxref{Invoking guix package})." msgstr "Есть несколько таких пакетов со множественным выходом в дистрибутиве GNU. Другие традиционные имена выходов включают @code{lib} - для библиотек и иногда файлов заголовков, @code{bin} - для самих программ, @code{debug} - для отладочной информации (@pxref{Installing Debugging Files}). Выходы пакетов представлены в третьей колонке вывода @command{guix package --list-available} (@pxref{Invoking guix package})." #. type: section -#: guix-git/doc/guix.texi:4129 +#: guix-git/doc/guix.texi:4147 #, no-wrap msgid "Invoking @command{guix gc}" msgstr "Вызов @command{guix gc}" #. type: cindex -#: guix-git/doc/guix.texi:4131 +#: guix-git/doc/guix.texi:4149 #, no-wrap msgid "garbage collector" msgstr "сборщик мусора" #. type: cindex -#: guix-git/doc/guix.texi:4132 +#: guix-git/doc/guix.texi:4150 #, no-wrap msgid "disk space" msgstr "место на диске" #. type: Plain text -#: guix-git/doc/guix.texi:4138 +#: guix-git/doc/guix.texi:4156 msgid "Packages that are installed, but not used, may be @dfn{garbage-collected}. The @command{guix gc} command allows users to explicitly run the garbage collector to reclaim space from the @file{/gnu/store} directory. It is the @emph{only} way to remove files from @file{/gnu/store}---removing files or directories manually may break it beyond repair!" msgstr "Пакеты, которые установлены, но не используются, могут быть очищены как мусор (@dfn{garbage-collected}). Команда @command{guix gc} позволяет пользователям непосредственно запустить сборщик мусора и восстановить место в директории @file{/gnu/store}. Это @emph{единственный} способ удалить файлы из @file{/gnu/store} --- удаление файлов вручную может поломать её безвозвратно!" #. type: Plain text -#: guix-git/doc/guix.texi:4149 +#: guix-git/doc/guix.texi:4167 msgid "The garbage collector has a set of known @dfn{roots}: any file under @file{/gnu/store} reachable from a root is considered @dfn{live} and cannot be deleted; any other file is considered @dfn{dead} and may be deleted. The set of garbage collector roots (``GC roots'' for short) includes default user profiles; by default, the symlinks under @file{/var/guix/gcroots} represent these GC roots. New GC roots can be added with @command{guix build --root}, for example (@pxref{Invoking guix build}). The @command{guix gc --list-roots} command lists them." msgstr "Сборщик мусора имеет набор известных корней (@dfn{roots}): любой файл в @file{/gnu/store}, доступный из корня, рассматривается как живой (@dfn{live}) и не может быть удалён; любой другой файл рассматривается как мёртвый (@dfn{dead}) и может быть удалён. Набор корней сборщика мусора (сокращённо \"GC roots\") содержит профили пользователей по умолчанию; по умолчанию символические ссылки в @file{/var/guix/gcroots} представляют эти корни сборщика мусора. Новые корни могут добавляться, например, командой @command{guix build --root} (@pxref{Invoking guix build}). Команда @command{guix gc --list-roots} отображает их." #. type: Plain text -#: guix-git/doc/guix.texi:4155 +#: guix-git/doc/guix.texi:4173 msgid "Prior to running @code{guix gc --collect-garbage} to make space, it is often useful to remove old generations from user profiles; that way, old package builds referenced by those generations can be reclaimed. This is achieved by running @code{guix package --delete-generations} (@pxref{Invoking guix package})." msgstr "Перед запуском @code{guix gc --collect-garbage} для освобождения места часто бывает полезно удалить старые поколения из пользовательских профилей; так старые пакеты, относящиеся к этим поколениям, будут удалены. Это можно сделать, запустив @code{guix package --delete-generations} (@pxref{Invoking guix package})." #. type: Plain text -#: guix-git/doc/guix.texi:4159 +#: guix-git/doc/guix.texi:4177 msgid "Our recommendation is to run a garbage collection periodically, or when you are short on disk space. For instance, to guarantee that at least 5@tie{}GB are available on your disk, simply run:" msgstr "Мы рекомендуем запускать сборщик мусора периодически, или когда вы хотите освободить место на диске. Например, чтобы гарантировать, что по меньшей мере 5@tie{}Гб будет доступно на вашем диске, просто запустите:" #. type: example -#: guix-git/doc/guix.texi:4162 +#: guix-git/doc/guix.texi:4180 #, no-wrap msgid "guix gc -F 5G\n" msgstr "guix gc -F 5G\n" #. type: Plain text -#: guix-git/doc/guix.texi:4171 +#: guix-git/doc/guix.texi:4189 msgid "It is perfectly safe to run as a non-interactive periodic job (@pxref{Scheduled Job Execution}, for how to set up such a job). Running @command{guix gc} with no arguments will collect as much garbage as it can, but that is often inconvenient: you may find yourself having to rebuild or re-download software that is ``dead'' from the GC viewpoint but that is necessary to build other pieces of software---e.g., the compiler tool chain." msgstr "Хорошо бы запускать это как неинтерактивную периодическую задачу (@pxref{Scheduled Job Execution}, чтобы узнать, как добавить такую задачу). Запуск @command{guix gc} без аргументов соберёт столько мусора, сколько возможно, но это часто не удобно: можно обнаружить, что придётся заново собирать или скачивать программы, \"убитые\" сборщиком мусора, хотя они необходимы для сборки другого софта, например, это касается инструментов компилятора." #. type: Plain text -#: guix-git/doc/guix.texi:4177 +#: guix-git/doc/guix.texi:4195 msgid "The @command{guix gc} command has three modes of operation: it can be used to garbage-collect any dead files (the default), to delete specific files (the @option{--delete} option), to print garbage-collector information, or for more advanced queries. The garbage collection options are as follows:" msgstr "Команда @command{guix gc} предоставляет три способа взаимодействия: может использоваться для сборки мусора (garbage-collect) любых мёртвых файлов (по умолчанию), для удаления конкретных файлов (опция @code{--delete}), для вывода информации сборщика мусора, а также для более изощрённых запросов. Опции сборщика мусора:" #. type: item -#: guix-git/doc/guix.texi:4179 +#: guix-git/doc/guix.texi:4197 #, no-wrap msgid "--collect-garbage[=@var{min}]" msgstr "--collect-garbage[=@var{min}]" #. type: itemx -#: guix-git/doc/guix.texi:4180 +#: guix-git/doc/guix.texi:4198 #, no-wrap msgid "-C [@var{min}]" msgstr "-C [@var{min}]" #. type: table -#: guix-git/doc/guix.texi:4184 +#: guix-git/doc/guix.texi:4202 msgid "Collect garbage---i.e., unreachable @file{/gnu/store} files and sub-directories. This is the default operation when no option is specified." msgstr "Собрать мусор, то есть недоступные файлы в @file{/gnu/store} и поддиректориях. Это операция по умолчанию, если не заданы опции." #. type: table -#: guix-git/doc/guix.texi:4189 +#: guix-git/doc/guix.texi:4207 msgid "When @var{min} is given, stop once @var{min} bytes have been collected. @var{min} may be a number of bytes, or it may include a unit as a suffix, such as @code{MiB} for mebibytes and @code{GB} for gigabytes (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." msgstr "Если задана @var{min}, остановиться, когда @var{min} байт собрано. @var{min} может быть числом байт или может содержать единицу измерения в суффиксе, как например, @code{MiB} для мебибайт и @code{GB} гигабайт (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." #. type: table -#: guix-git/doc/guix.texi:4191 +#: guix-git/doc/guix.texi:4209 msgid "When @var{min} is omitted, collect all the garbage." msgstr "Если @var{min} пропущено, собрать весь мусор." #. type: item -#: guix-git/doc/guix.texi:4192 +#: guix-git/doc/guix.texi:4210 #, no-wrap msgid "--free-space=@var{free}" msgstr "--free-space=@var{free}" #. type: itemx -#: guix-git/doc/guix.texi:4193 +#: guix-git/doc/guix.texi:4211 #, no-wrap msgid "-F @var{free}" msgstr "-F @var{free}" #. type: table -#: guix-git/doc/guix.texi:4197 +#: guix-git/doc/guix.texi:4215 msgid "Collect garbage until @var{free} space is available under @file{/gnu/store}, if possible; @var{free} denotes storage space, such as @code{500MiB}, as described above." msgstr "Собирать мусор, пока не станет доступно @var{free} места в @file{/gnu/store}, если возможно; @var{free} описывает дисковое пространство, как @code{500MiB}, как это описанов выше." #. type: table -#: guix-git/doc/guix.texi:4200 +#: guix-git/doc/guix.texi:4218 msgid "When @var{free} or more is already available in @file{/gnu/store}, do nothing and exit immediately." msgstr "Когда @var{free} или более места стало свободно в @file{/gnu/store}, ничего не делать и немедленно выйти." #. type: item -#: guix-git/doc/guix.texi:4201 +#: guix-git/doc/guix.texi:4219 #, no-wrap msgid "--delete-generations[=@var{duration}]" msgstr "--delete-generations[=@var{duration}]" #. type: itemx -#: guix-git/doc/guix.texi:4202 +#: guix-git/doc/guix.texi:4220 #, no-wrap msgid "-d [@var{duration}]" msgstr "-d [@var{duration}]" #. type: table -#: guix-git/doc/guix.texi:4206 +#: guix-git/doc/guix.texi:4224 msgid "Before starting the garbage collection process, delete all the generations older than @var{duration}, for all the user profiles; when run as root, this applies to all the profiles @emph{of all the users}." msgstr "Перед запуском сборщика мусора удалить все поколения, старше @var{duration}, для всех пользовательских профилей; если запускать от root, это применяется для всех профилей @emph{всех пользователей}." #. type: table -#: guix-git/doc/guix.texi:4210 +#: guix-git/doc/guix.texi:4228 msgid "For example, this command deletes all the generations of all your profiles that are older than 2 months (except generations that are current), and then proceeds to free space until at least 10 GiB are available:" msgstr "Например, следующая команда удаляет все поколения всех ваших профилей, которые старше 2 месцев (кроме текущего поколения), а затем запускается процесс освобождения мместа, пока по меньшей мере 10 GiB не станет доступно:" #. type: example -#: guix-git/doc/guix.texi:4213 +#: guix-git/doc/guix.texi:4231 #, no-wrap msgid "guix gc -d 2m -F 10G\n" msgstr "guix gc -d 2m -F 10G\n" #. type: item -#: guix-git/doc/guix.texi:4215 +#: guix-git/doc/guix.texi:4233 #, no-wrap msgid "--delete" msgstr "--delete" #. type: itemx -#: guix-git/doc/guix.texi:4216 guix-git/doc/guix.texi:5740 +#: guix-git/doc/guix.texi:4234 guix-git/doc/guix.texi:5758 #, no-wrap msgid "-D" msgstr "-D" #. type: table -#: guix-git/doc/guix.texi:4220 +#: guix-git/doc/guix.texi:4238 msgid "Attempt to delete all the store files and directories specified as arguments. This fails if some of the files are not in the store, or if they are still live." msgstr "Попытаться удалить все файлы и директории склада, приведённые в аргументах. Это завершается с ошибкой, если какие-либо файлы не присутствуют на складе, или если они ещё живы (live)." #. type: item -#: guix-git/doc/guix.texi:4221 +#: guix-git/doc/guix.texi:4239 #, no-wrap msgid "--list-failures" msgstr "--list-failures" #. type: table -#: guix-git/doc/guix.texi:4223 +#: guix-git/doc/guix.texi:4241 msgid "List store items corresponding to cached build failures." msgstr "Вывести список элементов склада, которые относятся к кешированным неудачным сборкам." #. type: table -#: guix-git/doc/guix.texi:4227 +#: guix-git/doc/guix.texi:4245 msgid "This prints nothing unless the daemon was started with @option{--cache-failures} (@pxref{Invoking guix-daemon, @option{--cache-failures}})." msgstr "Это ничего не выводит, если демон не был запущен с опцией @option{--cache-failures} (@pxref{Invoking guix-daemon, @option{--cache-failures}})." #. type: item -#: guix-git/doc/guix.texi:4228 +#: guix-git/doc/guix.texi:4246 #, no-wrap msgid "--list-roots" msgstr "--list-roots" #. type: table -#: guix-git/doc/guix.texi:4231 +#: guix-git/doc/guix.texi:4249 msgid "List the GC roots owned by the user; when run as root, list @emph{all} the GC roots." msgstr "Вывести список корней сборщика мусора (GC roots), которыми владеет пользователь; при запуске от root, выводит список @emph{всех} корней сборщика мусора." #. type: item -#: guix-git/doc/guix.texi:4232 +#: guix-git/doc/guix.texi:4250 #, no-wrap msgid "--list-busy" msgstr "--list-busy" #. type: table -#: guix-git/doc/guix.texi:4235 +#: guix-git/doc/guix.texi:4253 msgid "List store items in use by currently running processes. These store items are effectively considered GC roots: they cannot be deleted." msgstr "Составляет список элементов хранилица, исользуемых запущенными в данное время процессами. Эти элементы считаются корнями GC: они не могут быть удалены." #. type: item -#: guix-git/doc/guix.texi:4236 +#: guix-git/doc/guix.texi:4254 #, no-wrap msgid "--clear-failures" msgstr "--clear-failures" #. type: table -#: guix-git/doc/guix.texi:4238 +#: guix-git/doc/guix.texi:4256 msgid "Remove the specified store items from the failed-build cache." msgstr "Удалить заданные элементы склада из кеша неудачных сборок." #. type: table -#: guix-git/doc/guix.texi:4241 +#: guix-git/doc/guix.texi:4259 msgid "Again, this option only makes sense when the daemon is started with @option{--cache-failures}. Otherwise, it does nothing." msgstr "Опять же эта опция имеет смысл, если демон запущен с @option{--cache-failures}. В противном случае это не имеет эффекта." #. type: item -#: guix-git/doc/guix.texi:4242 +#: guix-git/doc/guix.texi:4260 #, no-wrap msgid "--list-dead" msgstr "--list-dead" #. type: table -#: guix-git/doc/guix.texi:4245 +#: guix-git/doc/guix.texi:4263 msgid "Show the list of dead files and directories still present in the store---i.e., files and directories no longer reachable from any root." msgstr "Вывести список мёртвых файлов и директорий, которые по-прежнему присутствуют на складе, то есть файлы и директории, не доступные более из любого корня." #. type: item -#: guix-git/doc/guix.texi:4246 +#: guix-git/doc/guix.texi:4264 #, no-wrap msgid "--list-live" msgstr "--list-live" #. type: table -#: guix-git/doc/guix.texi:4248 +#: guix-git/doc/guix.texi:4266 msgid "Show the list of live store files and directories." msgstr "Вывести список живых файлов и директорий склада." #. type: Plain text -#: guix-git/doc/guix.texi:4252 +#: guix-git/doc/guix.texi:4270 msgid "In addition, the references among existing store files can be queried:" msgstr "В дополнение можно запросить связи между существующими файлами на складе:" #. type: item -#: guix-git/doc/guix.texi:4255 +#: guix-git/doc/guix.texi:4273 #, no-wrap msgid "--references" msgstr "--references" #. type: itemx -#: guix-git/doc/guix.texi:4256 +#: guix-git/doc/guix.texi:4274 #, no-wrap msgid "--referrers" msgstr "--referrers" #. type: cindex -#: guix-git/doc/guix.texi:4257 guix-git/doc/guix.texi:13205 +#: guix-git/doc/guix.texi:4275 guix-git/doc/guix.texi:13562 #, no-wrap msgid "package dependencies" msgstr "зависимости пакетов" #. type: table -#: guix-git/doc/guix.texi:4260 +#: guix-git/doc/guix.texi:4278 msgid "List the references (respectively, the referrers) of store files given as arguments." msgstr "Вывести список связанных (обязательно, ссылающихся) файлов на складе с указанными аргументами." #. type: item -#: guix-git/doc/guix.texi:4261 +#: guix-git/doc/guix.texi:4279 #, no-wrap msgid "--requisites" msgstr "--requisites" #. type: itemx -#: guix-git/doc/guix.texi:4262 guix-git/doc/guix.texi:6501 +#: guix-git/doc/guix.texi:4280 guix-git/doc/guix.texi:6544 #, no-wrap msgid "-R" msgstr "-R" #. type: item -#: guix-git/doc/guix.texi:4263 guix-git/doc/guix.texi:13061 -#: guix-git/doc/guix.texi:13089 guix-git/doc/guix.texi:13170 +#: guix-git/doc/guix.texi:4281 guix-git/doc/guix.texi:13418 +#: guix-git/doc/guix.texi:13446 guix-git/doc/guix.texi:13527 #, no-wrap msgid "closure" msgstr "конвейер" #. type: table -#: guix-git/doc/guix.texi:4268 +#: guix-git/doc/guix.texi:4286 msgid "List the requisites of the store files passed as arguments. Requisites include the store files themselves, their references, and the references of these, recursively. In other words, the returned list is the @dfn{transitive closure} of the store files." msgstr "Вывести всё необходимое для файлов на складе, указанных в аргументах. Всё необходимое включает сами файлы на складе, их связи и связи их связей рекурсивно. Другими словами, выводимый список --- это @dfn{непосредственный конвейер} файлов на складе." #. type: table -#: guix-git/doc/guix.texi:4272 +#: guix-git/doc/guix.texi:4290 msgid "@xref{Invoking guix size}, for a tool to profile the size of the closure of an element. @xref{Invoking guix graph}, for a tool to visualize the graph of references." msgstr "См. @xref{Invoking guix size} для информации об инструменте профилирования конвейера для элемента. См. @xref{Invoking guix graph} для информации об инструменте визуализации графа связей." #. type: item -#: guix-git/doc/guix.texi:4273 +#: guix-git/doc/guix.texi:4291 #, no-wrap msgid "--derivers" msgstr "--derivers" #. type: item -#: guix-git/doc/guix.texi:4274 guix-git/doc/guix.texi:6815 -#: guix-git/doc/guix.texi:12917 guix-git/doc/guix.texi:13314 +#: guix-git/doc/guix.texi:4292 guix-git/doc/guix.texi:6858 +#: guix-git/doc/guix.texi:13274 guix-git/doc/guix.texi:13671 #, no-wrap msgid "derivation" msgstr "деривация" #. type: table -#: guix-git/doc/guix.texi:4277 +#: guix-git/doc/guix.texi:4295 msgid "Return the derivation(s) leading to the given store items (@pxref{Derivations})." msgstr "Вернуть деривацию(-ии), производящие данные элементы склада (@pxref{Derivations})." #. type: table -#: guix-git/doc/guix.texi:4279 +#: guix-git/doc/guix.texi:4297 msgid "For example, this command:" msgstr "Например, эта команда:" #. type: example -#: guix-git/doc/guix.texi:4282 +#: guix-git/doc/guix.texi:4300 #, no-wrap msgid "guix gc --derivers $(guix package -I ^emacs$ | cut -f4)\n" msgstr "guix gc --derivers `guix package -I ^emacs$ | cut -f4`\n" #. type: table -#: guix-git/doc/guix.texi:4287 +#: guix-git/doc/guix.texi:4305 msgid "returns the @file{.drv} file(s) leading to the @code{emacs} package installed in your profile." msgstr "возвращает файл(ы) @file{.drv}, которые произвели пакет @code{emacs}, установленный в вашем профиле." #. type: table -#: guix-git/doc/guix.texi:4291 +#: guix-git/doc/guix.texi:4309 msgid "Note that there may be zero matching @file{.drv} files, for instance because these files have been garbage-collected. There can also be more than one matching @file{.drv} due to fixed-output derivations." msgstr "Отметим, что может быть не найдено ни одного файла @file{.drv}, например, потому что эти файлы были удалены сборщиком мусора. Также может быть более одного файла @file{.drv} из-за дериваций с фиксированным выходом." #. type: Plain text -#: guix-git/doc/guix.texi:4295 +#: guix-git/doc/guix.texi:4313 msgid "Lastly, the following options allow you to check the integrity of the store and to control disk usage." msgstr "Наконец, следующие опции позволяют проверить целостность склада и контролировать использование диска." #. type: item -#: guix-git/doc/guix.texi:4298 +#: guix-git/doc/guix.texi:4316 #, no-wrap msgid "--verify[=@var{options}]" msgstr "--verify[=@var{options}]" #. type: cindex -#: guix-git/doc/guix.texi:4299 +#: guix-git/doc/guix.texi:4317 #, no-wrap msgid "integrity, of the store" msgstr "целостность, склада" #. type: cindex -#: guix-git/doc/guix.texi:4300 +#: guix-git/doc/guix.texi:4318 #, no-wrap msgid "integrity checking" msgstr "проверка целостности" #. type: table -#: guix-git/doc/guix.texi:4302 +#: guix-git/doc/guix.texi:4320 msgid "Verify the integrity of the store." msgstr "Проверить целостность склада." #. type: table -#: guix-git/doc/guix.texi:4305 +#: guix-git/doc/guix.texi:4323 msgid "By default, make sure that all the store items marked as valid in the database of the daemon actually exist in @file{/gnu/store}." msgstr "По умолчанию убедиться, что все элементы склада, которые в базе данных демона помечены как действующие, на самом деле присутствуют в @file{/gnu/store}." #. type: table -#: guix-git/doc/guix.texi:4308 +#: guix-git/doc/guix.texi:4326 msgid "When provided, @var{options} must be a comma-separated list containing one or more of @code{contents} and @code{repair}." msgstr "Опции @var{options}, если они указаны, должны представлять собой список, разделённый запятыми, содержащий одно или более значений @code{contents} и @code{repair}." #. type: table -#: guix-git/doc/guix.texi:4314 +#: guix-git/doc/guix.texi:4332 msgid "When passing @option{--verify=contents}, the daemon computes the content hash of each store item and compares it against its hash in the database. Hash mismatches are reported as data corruptions. Because it traverses @emph{all the files in the store}, this command can take a long time, especially on systems with a slow disk drive." msgstr "Если задано @option{--verify=contents}, демон вычисляет хеш содержимого каждого элемента склада и сравнивает с его хешем в базе данных. Несовпадения хеша отображаются в отчёте как повреждение данных. Так как она проходит @emph{все файлы склада}, эта команда может занять много времени, особенно в системах с медленным диском." #. type: cindex -#: guix-git/doc/guix.texi:4315 +#: guix-git/doc/guix.texi:4333 #, no-wrap msgid "repairing the store" msgstr "восстановление склада" #. type: cindex -#: guix-git/doc/guix.texi:4316 guix-git/doc/guix.texi:11564 +#: guix-git/doc/guix.texi:4334 guix-git/doc/guix.texi:11878 #, no-wrap msgid "corruption, recovering from" msgstr "разрушение, его восстановление" #. type: table -#: guix-git/doc/guix.texi:4324 +#: guix-git/doc/guix.texi:4342 msgid "Using @option{--verify=repair} or @option{--verify=contents,repair} causes the daemon to try to repair corrupt store items by fetching substitutes for them (@pxref{Substitutes}). Because repairing is not atomic, and thus potentially dangerous, it is available only to the system administrator. A lightweight alternative, when you know exactly which items in the store are corrupt, is @command{guix build --repair} (@pxref{Invoking guix build})." msgstr "Использование @option{--verify=repair} или @option{--verify=contents,repair} указывает демону предпринять попытку восстановить разрушенные элементы склада, выбирая подстановки для них (@pxref{Substitutes}). Так как восстановление не атомарное, и поэтому потенциально опасно, оно доступно только системному администратору. Малозатратная альтернатива в случае, если вы знаете точно, какие элементы склада испорчены, --- это @command{guix build --repair} (@pxref{Invoking guix build})." #. type: item -#: guix-git/doc/guix.texi:4325 +#: guix-git/doc/guix.texi:4343 #, no-wrap msgid "--optimize" msgstr "--optimize" #. type: table -#: guix-git/doc/guix.texi:4329 +#: guix-git/doc/guix.texi:4347 msgid "Optimize the store by hard-linking identical files---this is @dfn{deduplication}." msgstr "Оптимизировать склад с помощью жёстких ссылок на идентичные файлы --- это @dfn{дедупликация}." #. type: table -#: guix-git/doc/guix.texi:4335 +#: guix-git/doc/guix.texi:4353 msgid "The daemon performs deduplication after each successful build or archive import, unless it was started with @option{--disable-deduplication} (@pxref{Invoking guix-daemon, @option{--disable-deduplication}}). Thus, this option is primarily useful when the daemon was running with @option{--disable-deduplication}." msgstr "Демон выполняет дедупликацию после каждой успешной сборки или импорта архива, если конечно оно не было запущено с @code{--disable-deduplication} (@pxref{Invoking guix-daemon, @code{--disable-deduplication}}). Так что эта опция особенно важна, если демон запущено с @code{--disable-deduplication}." #. type: section -#: guix-git/doc/guix.texi:4339 +#: guix-git/doc/guix.texi:4357 #, no-wrap msgid "Invoking @command{guix pull}" msgstr "Вызов @command{guix pull}" #. type: cindex -#: guix-git/doc/guix.texi:4341 +#: guix-git/doc/guix.texi:4359 #, no-wrap msgid "upgrading Guix" msgstr "обновление версии Guix" #. type: cindex -#: guix-git/doc/guix.texi:4342 +#: guix-git/doc/guix.texi:4360 #, no-wrap msgid "updating Guix" msgstr "обновление Guix" #. type: command{#1} -#: guix-git/doc/guix.texi:4343 +#: guix-git/doc/guix.texi:4361 #, no-wrap msgid "guix pull" msgstr "guix pull" #. type: cindex -#: guix-git/doc/guix.texi:4344 +#: guix-git/doc/guix.texi:4362 #, no-wrap msgid "pull" msgstr "получение" #. type: cindex -#: guix-git/doc/guix.texi:4345 +#: guix-git/doc/guix.texi:4363 #, no-wrap msgid "security, @command{guix pull}" msgstr "sudo vs. @command{guix pull}" #. type: cindex -#: guix-git/doc/guix.texi:4346 +#: guix-git/doc/guix.texi:4364 #, no-wrap msgid "authenticity, of code obtained with @command{guix pull}" msgstr "перемещаемые бинарники, с @command{guix pack}" #. type: Plain text -#: guix-git/doc/guix.texi:4356 +#: guix-git/doc/guix.texi:4374 msgid "Packages are installed or upgraded to the latest version available in the distribution currently available on your local machine. To update that distribution, along with the Guix tools, you must run @command{guix pull}: the command downloads the latest Guix source code and package descriptions, and deploys it. Source code is downloaded from a @uref{https://git-scm.com, Git} repository, by default the official GNU@tie{}Guix repository, though this can be customized. @command{guix pull} ensures that the code it downloads is @emph{authentic} by verifying that commits are signed by Guix developers." msgstr "Пакеты, которые были установлены или обновлены до последней версии, доступные в дистрибутиве, доступны и на вашей локальной машине. Для обновления этого дистрибутива инструментами Guix нужно запустить @command{guix pull}: команда скачивает последние исходные коды Guix, описания пакетов и разворачивает их. Исходный код скачивается из репозитория @uref{https://git-scm.com, Git}, репозитория GNU@tie{}Guix по умолчанию, хотя это можно поменять." #. type: Plain text -#: guix-git/doc/guix.texi:4359 +#: guix-git/doc/guix.texi:4377 msgid "Specifically, @command{guix pull} downloads code from the @dfn{channels} (@pxref{Channels}) specified by one of the followings, in this order:" msgstr "В частности, @command{guix pull} загружает код из @dfn{channel} (@pxref{Channels}), указанного одним из следующих способов, в следующем порядке:" #. type: enumerate -#: guix-git/doc/guix.texi:4363 +#: guix-git/doc/guix.texi:4381 msgid "the @option{--channels} option;" msgstr "опция @option{--channels};" #. type: enumerate -#: guix-git/doc/guix.texi:4365 +#: guix-git/doc/guix.texi:4383 msgid "the user's @file{~/.config/guix/channels.scm} file;" msgstr "пользовательский файл @file{~/.config/guix/channels.scm};" #. type: enumerate -#: guix-git/doc/guix.texi:4367 +#: guix-git/doc/guix.texi:4385 msgid "the system-wide @file{/etc/guix/channels.scm} file;" msgstr "общесистемный файл @file{/etc/guix/channels.scm} file;" #. type: enumerate -#: guix-git/doc/guix.texi:4370 +#: guix-git/doc/guix.texi:4388 msgid "the built-in default channels specified in the @code{%default-channels} variable." msgstr "встроенные по умолчанию каналы определены в переменной @code{%default-channels}." #. type: Plain text -#: guix-git/doc/guix.texi:4377 +#: guix-git/doc/guix.texi:4395 msgid "On completion, @command{guix package} will use packages and package versions from this just-retrieved copy of Guix. Not only that, but all the Guix commands and Scheme modules will also be taken from that latest version. New @command{guix} sub-commands added by the update also become available." msgstr "После выполнения этой команды @command{guix package} будет использовать пакеты и те их версии, которые имеются в только что полученной копии Guix. Эта последняя версия будет источником также всех команд Guix, модулей Scheme. Из этого обновления станет доступен набор команд @command{guix}." #. type: Plain text -#: guix-git/doc/guix.texi:4383 +#: guix-git/doc/guix.texi:4401 msgid "Any user can update their Guix copy using @command{guix pull}, and the effect is limited to the user who ran @command{guix pull}. For instance, when user @code{root} runs @command{guix pull}, this has no effect on the version of Guix that user @code{alice} sees, and vice versa." msgstr "Любой пользователь может обновить свою копию Guix, используя @command{guix pull}, эффект коснётся только пользователя, который запустил @command{guix pull}. Например, если пользователь @code{root} запускает @command{guix pull}, это не имеет эффекта на версию Guix, которую видит @code{alice} sees, и наоборот." #. type: Plain text -#: guix-git/doc/guix.texi:4389 +#: guix-git/doc/guix.texi:4407 msgid "The result of running @command{guix pull} is a @dfn{profile} available under @file{~/.config/guix/current} containing the latest Guix. Thus, make sure to add it to the beginning of your search path so that you use the latest version, and similarly for the Info manual (@pxref{Documentation}):" msgstr "Результат запуска @command{guix pull} --- это профиль @dfn{profile}, доступный в @file{~/.config/guix/current}, содержащий последний Guix. Так что обязательно добавьте этот адрес первым в пути поиска, чтобы использовать последнюю версию, а также для руководства Info (@pxref{Documentation}):" #. type: example -#: guix-git/doc/guix.texi:4393 +#: guix-git/doc/guix.texi:4411 #, no-wrap msgid "" "export PATH=\"$HOME/.config/guix/current/bin:$PATH\"\n" @@ -11048,12 +11146,12 @@ msgstr "" "export INFOPATH=\"$HOME/.config/guix/current/share/info:$INFOPATH\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:4397 +#: guix-git/doc/guix.texi:4415 msgid "The @option{--list-generations} or @option{-l} option lists past generations produced by @command{guix pull}, along with details about their provenance:" msgstr "Опция @code{--list-generations} или @code{-l} выводит список последних поколений, поставленных @command{guix pull}, вместе с деталями об их происхождении:" #. type: example -#: guix-git/doc/guix.texi:4405 +#: guix-git/doc/guix.texi:4423 #, no-wrap msgid "" "$ guix pull -l\n" @@ -11073,7 +11171,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:4415 +#: guix-git/doc/guix.texi:4433 #, no-wrap msgid "" "Generation 2\tJun 11 2018 11:02:49\n" @@ -11099,7 +11197,7 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:4423 +#: guix-git/doc/guix.texi:4441 #, no-wrap msgid "" "Generation 3\tJun 13 2018 23:31:07\t(current)\n" @@ -11119,17 +11217,17 @@ msgstr "" " 69 packages upgraded: borg@@1.1.6, cheese@@3.28.0, @dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:4427 +#: guix-git/doc/guix.texi:4445 msgid "@xref{Invoking guix describe, @command{guix describe}}, for other ways to describe the current status of Guix." msgstr "Смотрите @xref{Invoking guix describe, @command{guix describe}}, для информации о других способах получить информацию о текущем статусе Guix." #. type: Plain text -#: guix-git/doc/guix.texi:4432 +#: guix-git/doc/guix.texi:4450 msgid "This @code{~/.config/guix/current} profile works exactly like the profiles created by @command{guix package} (@pxref{Invoking guix package}). That is, you can list generations, roll back to the previous generation---i.e., the previous Guix---and so on:" msgstr "Этот профиль @code{~/.config/guix/current} работает, как любой другой профиль, созданный @command{guix package} (@pxref{Invoking guix package}). Так что можно вывести список поколений, откатиться до предыдущего поколения, то есть до предыдущего Guix, и так далее:" #. type: example -#: guix-git/doc/guix.texi:4438 +#: guix-git/doc/guix.texi:4456 #, no-wrap msgid "" "$ guix pull --roll-back\n" @@ -11143,12 +11241,12 @@ msgstr "" "deleting /var/guix/profiles/per-user/charlie/current-guix-1-link\n" #. type: Plain text -#: guix-git/doc/guix.texi:4442 +#: guix-git/doc/guix.texi:4460 msgid "You can also use @command{guix package} (@pxref{Invoking guix package}) to manage the profile by naming it explicitly:" msgstr "Вы также можете использовать @command{guix package} (@pxref{Invoking guix package}), чтобы управлять профилем, называя его явно:" #. type: example -#: guix-git/doc/guix.texi:4447 +#: guix-git/doc/guix.texi:4465 #, no-wrap msgid "" "$ guix package -p ~/.config/guix/current --roll-back\n" @@ -11162,354 +11260,355 @@ msgstr "" "deleting /var/guix/profiles/per-user/charlie/current-guix-1-link\n" #. type: Plain text -#: guix-git/doc/guix.texi:4451 +#: guix-git/doc/guix.texi:4469 msgid "The @command{guix pull} command is usually invoked with no arguments, but it supports the following options:" msgstr "Команда @command{guix pull} обычно вызывается без аргументов, но поддерживает следующие опции:" #. type: item -#: guix-git/doc/guix.texi:4453 guix-git/doc/guix.texi:4611 +#: guix-git/doc/guix.texi:4471 guix-git/doc/guix.texi:4629 #, no-wrap msgid "--url=@var{url}" msgstr "--url=@var{url}" #. type: itemx -#: guix-git/doc/guix.texi:4454 guix-git/doc/guix.texi:4612 +#: guix-git/doc/guix.texi:4472 guix-git/doc/guix.texi:4630 #, no-wrap msgid "--commit=@var{commit}" msgstr "--commit=@var{commit}" #. type: itemx -#: guix-git/doc/guix.texi:4455 guix-git/doc/guix.texi:4613 +#: guix-git/doc/guix.texi:4473 guix-git/doc/guix.texi:4631 #, no-wrap msgid "--branch=@var{branch}" msgstr "--branch=@var{branch}" #. type: table -#: guix-git/doc/guix.texi:4459 +#: guix-git/doc/guix.texi:4477 msgid "Download code for the @code{guix} channel from the specified @var{url}, at the given @var{commit} (a valid Git commit ID represented as a hexadecimal string), or @var{branch}." msgstr "Скачать код канала @code{guix} из указанного @var{url}, относящийся к обозначенному коммиту @var{commit} (корректный ID коммита Git, представленный в виде шестнадцатеричной строки), или ветке @var{branch}." #. type: cindex -#: guix-git/doc/guix.texi:4460 guix-git/doc/guix.texi:5057 +#: guix-git/doc/guix.texi:4478 guix-git/doc/guix.texi:5075 #, no-wrap msgid "@file{channels.scm}, configuration file" msgstr "@file{channels.scm}, configuration file" #. type: cindex -#: guix-git/doc/guix.texi:4461 guix-git/doc/guix.texi:5058 +#: guix-git/doc/guix.texi:4479 guix-git/doc/guix.texi:5076 #, no-wrap msgid "configuration file for channels" msgstr "конфигурационный файл для каналов" #. type: table -#: guix-git/doc/guix.texi:4465 +#: guix-git/doc/guix.texi:4483 msgid "These options are provided for convenience, but you can also specify your configuration in the @file{~/.config/guix/channels.scm} file or using the @option{--channels} option (see below)." msgstr "Эти опции внедрены для удобства, но также можно задать конфигурационный файл @file{~/.config/guix/channels.scm} или использовать опцию @option{--channels} (смотрите ниже)." #. type: item -#: guix-git/doc/guix.texi:4466 guix-git/doc/guix.texi:4618 +#: guix-git/doc/guix.texi:4484 guix-git/doc/guix.texi:4636 #, no-wrap msgid "--channels=@var{file}" msgstr "--channels=@var{file}" #. type: itemx -#: guix-git/doc/guix.texi:4467 guix-git/doc/guix.texi:4619 +#: guix-git/doc/guix.texi:4485 guix-git/doc/guix.texi:4637 #, no-wrap msgid "-C @var{file}" msgstr "-C @var{file}" #. type: table -#: guix-git/doc/guix.texi:4473 +#: guix-git/doc/guix.texi:4491 msgid "Read the list of channels from @var{file} instead of @file{~/.config/guix/channels.scm} or @file{/etc/guix/channels.scm}. @var{file} must contain Scheme code that evaluates to a list of channel objects. @xref{Channels}, for more information." msgstr "Считать список каналов из файла @var{file} вместо @file{~/.config/guix/channels.scm}. @var{file} должен содержать код Scheme, который определяет список объектов \"канал\". См. @xref{Channels} для подробной информации." #. type: cindex -#: guix-git/doc/guix.texi:4474 +#: guix-git/doc/guix.texi:4492 #, no-wrap msgid "channel news" msgstr "каналы" #. type: item -#: guix-git/doc/guix.texi:4475 +#: guix-git/doc/guix.texi:4493 #, no-wrap msgid "--news" msgstr "--news" #. type: itemx -#: guix-git/doc/guix.texi:4476 guix-git/doc/guix.texi:5864 -#: guix-git/doc/guix.texi:6247 guix-git/doc/guix.texi:35304 +#: guix-git/doc/guix.texi:4494 guix-git/doc/guix.texi:5877 +#: guix-git/doc/guix.texi:6290 guix-git/doc/guix.texi:35748 #, no-wrap msgid "-N" msgstr "-N" #. type: table -#: guix-git/doc/guix.texi:4480 +#: guix-git/doc/guix.texi:4498 msgid "Display the list of packages added or upgraded since the previous generation, as well as, occasionally, news written by channel authors for their users (@pxref{Channels, Writing Channel News})." msgstr "Отображение списка пакетов, добавленных или обновленных со времени предыдущего поколения, а также, иногда, новостей, написанных авторами каналов для своих пользователей (@pxref{Channels, Writing Channel News})." #. type: table -#: guix-git/doc/guix.texi:4484 +#: guix-git/doc/guix.texi:4502 msgid "The package information is the same as displayed upon @command{guix pull} completion, but without ellipses; it is also similar to the output of @command{guix pull -l} for the last generation (see below)." msgstr "Это та же информация, которая отображается по завершении @command{guix pull}, но без эллипсов. Это также совпадает с выводом @command{guix pull -l} для последнего поколения (смотрите ниже)." #. type: table -#: guix-git/doc/guix.texi:4491 +#: guix-git/doc/guix.texi:4509 msgid "List all the generations of @file{~/.config/guix/current} or, if @var{pattern} is provided, the subset of generations that match @var{pattern}. The syntax of @var{pattern} is the same as with @code{guix package --list-generations} (@pxref{Invoking guix package})." msgstr "Вывести список всех поколений @file{~/.config/guix/current} или, если предоставлен паттерн @var{pattern}, подмножество поколений, которые соответствуют @var{pattern}. Синтаксис @var{pattern} --- такой же, как у @code{guix package --list-generations} (@pxref{Invoking guix package})." #. type: table -#: guix-git/doc/guix.texi:4498 +#: guix-git/doc/guix.texi:4516 msgid "Roll back to the previous @dfn{generation} of @file{~/.config/guix/current}---i.e., undo the last transaction." msgstr "Откатиться до предыдущего @dfn{поколения} профиля, то есть отменить последнюю транзакцию." #. type: table -#: guix-git/doc/guix.texi:4522 +#: guix-git/doc/guix.texi:4540 msgid "If the current generation matches, it is @emph{not} deleted." msgstr "Если текущее поколение попадает под условия паттерна, оно не будет удалено. А также нулевое поокление никогда не удаляется." #. type: table -#: guix-git/doc/guix.texi:4528 +#: guix-git/doc/guix.texi:4546 msgid "@xref{Invoking guix describe}, for a way to display information about the current generation only." msgstr "См. @xref{Invoking guix describe}, чтобы узнать, как вывести информацию только о текущем поколении." #. type: table -#: guix-git/doc/guix.texi:4532 +#: guix-git/doc/guix.texi:4550 msgid "Use @var{profile} instead of @file{~/.config/guix/current}." msgstr "Использовать профиль @var{profile} вместо @file{~/.config/guix/current}." #. type: item -#: guix-git/doc/guix.texi:4533 guix-git/doc/guix.texi:10893 -#: guix-git/doc/guix.texi:12836 +#: guix-git/doc/guix.texi:4551 guix-git/doc/guix.texi:11207 +#: guix-git/doc/guix.texi:13162 #, no-wrap msgid "--dry-run" msgstr "--dry-run" #. type: itemx -#: guix-git/doc/guix.texi:4534 guix-git/doc/guix.texi:10894 -#: guix-git/doc/guix.texi:12837 guix-git/doc/guix.texi:13043 +#: guix-git/doc/guix.texi:4552 guix-git/doc/guix.texi:11208 +#: guix-git/doc/guix.texi:13163 guix-git/doc/guix.texi:13400 #, no-wrap msgid "-n" msgstr "-n" #. type: table -#: guix-git/doc/guix.texi:4537 +#: guix-git/doc/guix.texi:4555 msgid "Show which channel commit(s) would be used and what would be built or substituted but do not actually do it." msgstr "Показать, какие коммиты будут использоваться, и что будет собрано или скачано в виде подстановок, но не выполнять эту работу." #. type: item -#: guix-git/doc/guix.texi:4538 guix-git/doc/guix.texi:35323 +#: guix-git/doc/guix.texi:4556 guix-git/doc/guix.texi:35767 +#: guix-git/doc/guix.texi:38198 #, no-wrap msgid "--allow-downgrades" msgstr "--allow-downgrades" #. type: table -#: guix-git/doc/guix.texi:4541 +#: guix-git/doc/guix.texi:4559 msgid "Allow pulling older or unrelated revisions of channels than those currently in use." msgstr "Разрешить загружать более старые или несвязанные версии каналов, чем те, которые используются в настоящее время." #. type: cindex -#: guix-git/doc/guix.texi:4542 +#: guix-git/doc/guix.texi:4560 #, no-wrap msgid "downgrade attacks, protection against" msgstr "атаки на понижение версии, защита от" #. type: table -#: guix-git/doc/guix.texi:4547 +#: guix-git/doc/guix.texi:4565 msgid "By default, @command{guix pull} protects against so-called ``downgrade attacks'' whereby the Git repository of a channel would be reset to an earlier or unrelated revision of itself, potentially leading you to install older, known-vulnerable versions of software packages." msgstr "По умолчанию @command{guix pull} защищает от так называемых ``атак на более раннюю версию'', когда репозиторий Git данного канала будет сброшен до более ранней или несвязанной версии, что может привести к установке более старых, известных уязвимых версий пакетов." #. type: quotation -#: guix-git/doc/guix.texi:4551 guix-git/doc/guix.texi:35337 +#: guix-git/doc/guix.texi:4569 guix-git/doc/guix.texi:35781 msgid "Make sure you understand its security implications before using @option{--allow-downgrades}." msgstr "Прежде чем использовать @option{--allow-downgrades}, убедитесь, что вы понимаете его последствия для безопасности." #. type: item -#: guix-git/doc/guix.texi:4553 +#: guix-git/doc/guix.texi:4571 #, no-wrap msgid "--disable-authentication" msgstr "--disable-authentication" #. type: table -#: guix-git/doc/guix.texi:4555 +#: guix-git/doc/guix.texi:4573 msgid "Allow pulling channel code without authenticating it." msgstr "Разрешить загрузку канала без его аутентификации." #. type: cindex -#: guix-git/doc/guix.texi:4556 guix-git/doc/guix.texi:5203 +#: guix-git/doc/guix.texi:4574 guix-git/doc/guix.texi:5221 #, no-wrap msgid "authentication, of channel code" msgstr "аутентификация для проверки Guix" #. type: table -#: guix-git/doc/guix.texi:4561 +#: guix-git/doc/guix.texi:4579 msgid "By default, @command{guix pull} authenticates code downloaded from channels by verifying that its commits are signed by authorized developers, and raises an error if this is not the case. This option instructs it to not perform any such verification." msgstr "По умолчанию @command{guix pull} аутентифицирует код, загруженный из каналов, проверяя, что его коммиты подписаны авторизованными разработчиками, и выдает ошибку, если это не так. Эта опция дает указание не выполнять такую проверку." #. type: quotation -#: guix-git/doc/guix.texi:4565 +#: guix-git/doc/guix.texi:4583 msgid "Make sure you understand its security implications before using @option{--disable-authentication}." msgstr "Прежде чем использовать @option{--disable-authentication}, убедитесь, что вы понимаете его последствия для безопасности." #. type: itemx -#: guix-git/doc/guix.texi:4568 guix-git/doc/guix.texi:5847 -#: guix-git/doc/guix.texi:6230 guix-git/doc/guix.texi:6630 -#: guix-git/doc/guix.texi:11506 guix-git/doc/guix.texi:13188 -#: guix-git/doc/guix.texi:13453 guix-git/doc/guix.texi:14130 -#: guix-git/doc/guix.texi:35252 +#: guix-git/doc/guix.texi:4586 guix-git/doc/guix.texi:5860 +#: guix-git/doc/guix.texi:6273 guix-git/doc/guix.texi:6673 +#: guix-git/doc/guix.texi:11820 guix-git/doc/guix.texi:13545 +#: guix-git/doc/guix.texi:13810 guix-git/doc/guix.texi:14487 +#: guix-git/doc/guix.texi:35696 #, no-wrap msgid "-s @var{system}" msgstr "-s @var{system}" #. type: table -#: guix-git/doc/guix.texi:4571 guix-git/doc/guix.texi:6633 +#: guix-git/doc/guix.texi:4589 guix-git/doc/guix.texi:6676 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of the system type of the build host." msgstr "Предпринять попытку собрать систему @var{system}, т.е. @code{i686-linux}, вместо типа системы хоста сборки." #. type: table -#: guix-git/doc/guix.texi:4575 +#: guix-git/doc/guix.texi:4593 msgid "Use the bootstrap Guile to build the latest Guix. This option is only useful to Guix developers." msgstr "Использовать бутстрап Guile для сорки последнего Guix. Эта опция полезна только для разработчиков." #. type: Plain text -#: guix-git/doc/guix.texi:4581 +#: guix-git/doc/guix.texi:4599 msgid "The @dfn{channel} mechanism allows you to instruct @command{guix pull} which repository and branch to pull from, as well as @emph{additional} repositories containing package modules that should be deployed. @xref{Channels}, for more information." msgstr "Механизм каналов @dfn{channel} позволяет указать @command{guix pull}, из какого репозитория или ветки скачивать, а также какие @emph{дополнительные} репозитории должны использоваться для развёртки. См. @xref{Channels} для подробной информации." #. type: Plain text -#: guix-git/doc/guix.texi:4584 +#: guix-git/doc/guix.texi:4602 msgid "In addition, @command{guix pull} supports all the common build options (@pxref{Common Build Options})." msgstr "В добавок @command{guix pull} поддерживает все стандартные опции сборки (@pxref{Common Build Options})." #. type: section -#: guix-git/doc/guix.texi:4586 +#: guix-git/doc/guix.texi:4604 #, no-wrap msgid "Invoking @command{guix time-machine}" msgstr "Запуск @command{guix time-machine}" #. type: command{#1} -#: guix-git/doc/guix.texi:4588 +#: guix-git/doc/guix.texi:4606 #, no-wrap msgid "guix time-machine" msgstr "guix time-machine" #. type: cindex -#: guix-git/doc/guix.texi:4589 guix-git/doc/guix.texi:5161 +#: guix-git/doc/guix.texi:4607 guix-git/doc/guix.texi:5179 #, no-wrap msgid "pinning, channels" msgstr "связывание, каналы" #. type: cindex -#: guix-git/doc/guix.texi:4590 guix-git/doc/guix.texi:4772 -#: guix-git/doc/guix.texi:5162 +#: guix-git/doc/guix.texi:4608 guix-git/doc/guix.texi:4790 +#: guix-git/doc/guix.texi:5180 #, no-wrap msgid "replicating Guix" msgstr "копирование Guix" #. type: cindex -#: guix-git/doc/guix.texi:4591 guix-git/doc/guix.texi:5163 +#: guix-git/doc/guix.texi:4609 guix-git/doc/guix.texi:5181 #, no-wrap msgid "reproducibility, of Guix" msgstr "воспроизводимость, Guix" #. type: Plain text -#: guix-git/doc/guix.texi:4599 +#: guix-git/doc/guix.texi:4617 msgid "The @command{guix time-machine} command provides access to other revisions of Guix, for example to install older versions of packages, or to reproduce a computation in an identical environment. The revision of Guix to be used is defined by a commit or by a channel description file created by @command{guix describe} (@pxref{Invoking guix describe})." msgstr "Команда @command{guix time-machine} предоставляет доступ к другим версиям Guix, например, для установки более старых версий пакетов или для воспроизведения вычислений в идентичной среде. Версия используемого Guix определяется коммитом или файлом описания канала, созданным @command{guix describe} (@pxref{Invoking guix describe})." #. type: Plain text -#: guix-git/doc/guix.texi:4601 guix-git/doc/guix.texi:5623 -#: guix-git/doc/guix.texi:5974 guix-git/doc/guix.texi:6753 -#: guix-git/doc/guix.texi:10689 guix-git/doc/guix.texi:10813 -#: guix-git/doc/guix.texi:11797 guix-git/doc/guix.texi:11892 -#: guix-git/doc/guix.texi:12825 guix-git/doc/guix.texi:13018 -#: guix-git/doc/guix.texi:13511 guix-git/doc/guix.texi:13884 -#: guix-git/doc/guix.texi:13973 guix-git/doc/guix.texi:14012 -#: guix-git/doc/guix.texi:14109 +#: guix-git/doc/guix.texi:4619 guix-git/doc/guix.texi:5641 +#: guix-git/doc/guix.texi:6011 guix-git/doc/guix.texi:6796 +#: guix-git/doc/guix.texi:11003 guix-git/doc/guix.texi:11127 +#: guix-git/doc/guix.texi:12111 guix-git/doc/guix.texi:12207 +#: guix-git/doc/guix.texi:13148 guix-git/doc/guix.texi:13375 +#: guix-git/doc/guix.texi:13868 guix-git/doc/guix.texi:14241 +#: guix-git/doc/guix.texi:14330 guix-git/doc/guix.texi:14369 +#: guix-git/doc/guix.texi:14466 msgid "The general syntax is:" msgstr "Основной синтаксис:" #. type: example -#: guix-git/doc/guix.texi:4604 +#: guix-git/doc/guix.texi:4622 #, no-wrap msgid "guix time-machine @var{options}@dots{} -- @var{command} @var {arg}@dots{}\n" msgstr "guix time-machine @var{options}@dots{} -- @var{command} @var{arg}@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:4609 +#: guix-git/doc/guix.texi:4627 msgid "where @var{command} and @var{arg}@dots{} are passed unmodified to the @command{guix} command of the specified revision. The @var{options} that define this revision are the same as for @command{guix pull} (@pxref{Invoking guix pull}):" msgstr "где @var{command} и @var{arg}@dots{} передаются без изменений в команду @command{guix} указанной ревизии. @var{options}, которые определяют эту ревизию, такие же, как и для @command{guix pull} (@pxref{Invoking guix pull}):" #. type: table -#: guix-git/doc/guix.texi:4617 +#: guix-git/doc/guix.texi:4635 msgid "Use the @code{guix} channel from the specified @var{url}, at the given @var{commit} (a valid Git commit ID represented as a hexadecimal string), or @var{branch}." msgstr "Скачать код канала @code{guix} из указанного @var{url}, относящийся к обозначенному коммиту @var{commit} (корректный ID коммита Git, представленный в виде шестнадцатеричной строки), или ветке @var{branch}." #. type: table -#: guix-git/doc/guix.texi:4623 +#: guix-git/doc/guix.texi:4641 msgid "Read the list of channels from @var{file}. @var{file} must contain Scheme code that evaluates to a list of channel objects. @xref{Channels} for more information." msgstr "Считать список каналов из файла @var{file} вместо @file{~/.config/guix/channels.scm}. @var{file} должен содержать код Scheme, который определяет список объектов \"канал\". См. @xref{Channels} для подробной информации." #. type: Plain text -#: guix-git/doc/guix.texi:4627 +#: guix-git/doc/guix.texi:4645 msgid "As for @command{guix pull}, the absence of any options means that the latest commit on the master branch will be used. The command" msgstr "Что касается @command{guix pull}, то отсутствие каких-либо опций означает, что будет использоваться последний коммит в основной ветке. Команда" #. type: example -#: guix-git/doc/guix.texi:4630 +#: guix-git/doc/guix.texi:4648 #, no-wrap msgid "guix time-machine -- build hello\n" msgstr "guix time-machine -- build hello\n" #. type: Plain text -#: guix-git/doc/guix.texi:4635 +#: guix-git/doc/guix.texi:4653 msgid "will thus build the package @code{hello} as defined in the master branch, which is in general a newer revision of Guix than you have installed. Time travel works in both directions!" msgstr "таким образом, мы соберем пакет @code{hello}, как определено в основной ветке, которая, как правило, является более новой версией Guix, чем вы установили. Путешествие во времени работает в обоих направлениях!" #. type: Plain text -#: guix-git/doc/guix.texi:4639 +#: guix-git/doc/guix.texi:4657 msgid "Note that @command{guix time-machine} can trigger builds of channels and their dependencies, and these are controlled by the standard build options (@pxref{Common Build Options})." msgstr "Если указанные пакеты ещё не собраны, @command{guix archive} автоматически соберёт их. Процесс сборки может контролироваться обычными опциями сборки (@pxref{Common Build Options})." #. type: quotation -#: guix-git/doc/guix.texi:4647 +#: guix-git/doc/guix.texi:4665 msgid "The functionality described here is a ``technology preview'' as of version @value{VERSION}. As such, the interface is subject to change." msgstr "Функциональность, описанная здесь, --- это обзор технологии версии @value{VERSION}. Интерфейс может меняться." #. type: cindex -#: guix-git/doc/guix.texi:4649 guix-git/doc/guix.texi:10726 +#: guix-git/doc/guix.texi:4667 guix-git/doc/guix.texi:11040 #, no-wrap msgid "inferiors" msgstr "ранние версии" #. type: cindex -#: guix-git/doc/guix.texi:4650 +#: guix-git/doc/guix.texi:4668 #, no-wrap msgid "composition of Guix revisions" msgstr "составление ревизий Guix" #. type: Plain text -#: guix-git/doc/guix.texi:4655 +#: guix-git/doc/guix.texi:4673 msgid "Sometimes you might need to mix packages from the revision of Guix you're currently running with packages available in a different revision of Guix. Guix @dfn{inferiors} allow you to achieve that by composing different Guix revisions in arbitrary ways." msgstr "Иногда вам может понадобиться перемешивать пакеты из ревизии Guix, которая работает в настоящий момент, с пакетами, доступными в другой ревизии Guix. Основания Guix @dfn{inferiors} позволяют вам получить это, составляя различные ревизии Guix произвольным образом." #. type: cindex -#: guix-git/doc/guix.texi:4656 guix-git/doc/guix.texi:4721 +#: guix-git/doc/guix.texi:4674 guix-git/doc/guix.texi:4739 #, no-wrap msgid "inferior packages" msgstr "пакеты ранних версий" #. type: Plain text -#: guix-git/doc/guix.texi:4662 +#: guix-git/doc/guix.texi:4680 msgid "Technically, an ``inferior'' is essentially a separate Guix process connected to your main Guix process through a REPL (@pxref{Invoking guix repl}). The @code{(guix inferior)} module allows you to create inferiors and to communicate with them. It also provides a high-level interface to browse and manipulate the packages that an inferior provides---@dfn{inferior packages}." msgstr "Технически работа с ранними версиями --- это в целом отдельный процесс Guix, связанный с главным процессом Guix через REPL (@pxref{Invoking guix repl}). Модуль @code{(guix inferior)} позволяет запускать ранние версии и взаимодействовать с ними. Он также предоставляет высокоуровневый интерфейс для обзора и управления пакетами, которые поставляет ранняя версия --- @dfn{ранние версии пакетов}." #. type: Plain text -#: guix-git/doc/guix.texi:4672 +#: guix-git/doc/guix.texi:4690 msgid "When combined with channels (@pxref{Channels}), inferiors provide a simple way to interact with a separate revision of Guix. For example, let's assume you want to install in your profile the current @code{guile} package, along with the @code{guile-json} as it existed in an older revision of Guix---perhaps because the newer @code{guile-json} has an incompatible API and you want to run your code against the old API@. To do that, you could write a manifest for use by @code{guix package --manifest} (@pxref{Invoking guix package}); in that manifest, you would create an inferior for that old Guix revision you care about, and you would look up the @code{guile-json} package in the inferior:" msgstr "При сочетании с каналами (@pxref{Channels}) ранние версии преоставляют простой способ взаимодействовать с отдельными ревизиями Guix. Например, предположим, вы хотите установить в ваш профиль текущий пакет @code{guile} вместе с тем @code{guile-json}, который был определён в предыдущей ревизии Guix (может быть, потому что новый @code{guile-json} имеет несовместимый API, и вы хотите запустить ваш код со старым API). Чтобы это сделать, можно написать манифест для использования с @code{guix package --manifest} (@pxref{Invoking guix package}). В этом манифесте вы создадите описание ранней версии той предыдущей ревизии Guix, которая вас интересует, в которой вы ищете пакет @code{guile-json} ранней версии:" #. type: lisp -#: guix-git/doc/guix.texi:4676 +#: guix-git/doc/guix.texi:4694 #, no-wrap msgid "" "(use-modules (guix inferior) (guix channels)\n" @@ -11521,7 +11620,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:4685 +#: guix-git/doc/guix.texi:4703 #, no-wrap msgid "" "(define channels\n" @@ -11545,7 +11644,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:4689 +#: guix-git/doc/guix.texi:4707 #, no-wrap msgid "" "(define inferior\n" @@ -11559,7 +11658,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:4695 +#: guix-git/doc/guix.texi:4713 #, no-wrap msgid "" ";; Now create a manifest with the current \"guile\" package\n" @@ -11575,186 +11674,186 @@ msgstr "" " (specification->package \"guile\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:4700 +#: guix-git/doc/guix.texi:4718 msgid "On its first run, @command{guix package --manifest} might have to build the channel you specified before it can create the inferior; subsequent runs will be much faster because the Guix revision will be cached." msgstr "Далее запуск @command{guix package --manifest} может вызвать сборку канала, который вы обозначили ранее, и в результате это задействует раннюю версию. Последовательные запуски будут быстрее, потому что ревизия Guix будет кеширована." #. type: Plain text -#: guix-git/doc/guix.texi:4703 +#: guix-git/doc/guix.texi:4721 msgid "The @code{(guix inferior)} module provides the following procedures to open an inferior:" msgstr "Модуль @code{(guix inferior)} предоставляет следующие процедуры для работы с ранними версиями:" #. type: deffn -#: guix-git/doc/guix.texi:4704 +#: guix-git/doc/guix.texi:4722 #, no-wrap msgid "{Scheme Procedure} inferior-for-channels @var{channels} @" msgstr "{Процедура Scheme} inferior-for-channels @var{channels} @" #. type: deffn -#: guix-git/doc/guix.texi:4709 +#: guix-git/doc/guix.texi:4727 msgid "[#:cache-directory] [#:ttl] Return an inferior for @var{channels}, a list of channels. Use the cache at @var{cache-directory}, where entries can be reclaimed after @var{ttl} seconds. This procedure opens a new connection to the build daemon." msgstr "[#:cache-directory] [#:ttl] Возвращает раннюю версию для списка каналов @var{channels}. Использует кеш в @var{cache-directory}, где компоненты могут восстанавливаться через @var{ttl} секунд. Эта процедура открывает новое соединение с демоном сборки." #. type: deffn -#: guix-git/doc/guix.texi:4712 +#: guix-git/doc/guix.texi:4730 msgid "As a side effect, this procedure may build or substitute binaries for @var{channels}, which can take time." msgstr "Как побочный эффект, эта процедура может собирать или скачивать подстановки бинарников для @var{channels}, что может занять время." #. type: deffn -#: guix-git/doc/guix.texi:4714 +#: guix-git/doc/guix.texi:4732 #, no-wrap msgid "{Scheme Procedure} open-inferior @var{directory} @" msgstr "{Процедура Scheme} open-inferior @var{directory} @" #. type: deffn -#: guix-git/doc/guix.texi:4719 +#: guix-git/doc/guix.texi:4737 msgid "[#:command \"bin/guix\"] Open the inferior Guix in @var{directory}, running @code{@var{directory}/@var{command} repl} or equivalent. Return @code{#f} if the inferior could not be launched." msgstr "[#:command \"bin/guix\"] Открывает раннюю версию Guix в @var{directory}, запустив repl @code{@var{directory}/@var{command}} или эквивалент. Возвращает @code{#f}, если ранняя версия не может быть запущена." #. type: Plain text -#: guix-git/doc/guix.texi:4724 +#: guix-git/doc/guix.texi:4742 msgid "The procedures listed below allow you to obtain and manipulate inferior packages." msgstr "Процедуры, приведённые ниже, обеспечивают работу и управление ранними версиями пакетов." #. type: deffn -#: guix-git/doc/guix.texi:4725 +#: guix-git/doc/guix.texi:4743 #, no-wrap msgid "{Scheme Procedure} inferior-packages @var{inferior}" msgstr "{Процедура Scheme} inferior-packages @var{inferior}" #. type: deffn -#: guix-git/doc/guix.texi:4727 +#: guix-git/doc/guix.texi:4745 msgid "Return the list of packages known to @var{inferior}." msgstr "Возвращает список пакетов, относящихся к ранней версии @var{inferior}." #. type: deffn -#: guix-git/doc/guix.texi:4729 +#: guix-git/doc/guix.texi:4747 #, no-wrap msgid "{Scheme Procedure} lookup-inferior-packages @var{inferior} @var{name} @" msgstr "{Процедура Scheme} lookup-inferior-packages @var{inferior} @var{name} @" #. type: deffn -#: guix-git/doc/guix.texi:4734 +#: guix-git/doc/guix.texi:4752 msgid "[@var{version}] Return the sorted list of inferior packages matching @var{name} in @var{inferior}, with highest version numbers first. If @var{version} is true, return only packages with a version number prefixed by @var{version}." msgstr "[@var{version}] Возвращает сортированный список пакетов ранней версии @var{inferior}, содержащих имя @var{name}, поздняя версия - вначале. Если версия @var{version} задана, возвращает только пакеты с номером версии, начинающейся с @var{version}." #. type: deffn -#: guix-git/doc/guix.texi:4736 +#: guix-git/doc/guix.texi:4754 #, no-wrap msgid "{Scheme Procedure} inferior-package? @var{obj}" msgstr "{Процедура Scheme} inferior-package? @var{obj}" #. type: deffn -#: guix-git/doc/guix.texi:4738 +#: guix-git/doc/guix.texi:4756 msgid "Return true if @var{obj} is an inferior package." msgstr "Возвращает true, если объект @var{obj} --- это пакет ранней версии." #. type: deffn -#: guix-git/doc/guix.texi:4740 +#: guix-git/doc/guix.texi:4758 #, no-wrap msgid "{Scheme Procedure} inferior-package-name @var{package}" msgstr "{Процедура Scheme} inferior-package-name @var{package}" #. type: deffnx -#: guix-git/doc/guix.texi:4741 +#: guix-git/doc/guix.texi:4759 #, no-wrap msgid "{Scheme Procedure} inferior-package-version @var{package}" msgstr "{Процедура Scheme} inferior-package-version @var{package}" #. type: deffnx -#: guix-git/doc/guix.texi:4742 +#: guix-git/doc/guix.texi:4760 #, no-wrap msgid "{Scheme Procedure} inferior-package-synopsis @var{package}" msgstr "{Процедура Scheme} inferior-package-synopsis @var{package}" #. type: deffnx -#: guix-git/doc/guix.texi:4743 +#: guix-git/doc/guix.texi:4761 #, no-wrap msgid "{Scheme Procedure} inferior-package-description @var{package}" msgstr "{Процедура Scheme} inferior-package-description @var{package}" #. type: deffnx -#: guix-git/doc/guix.texi:4744 +#: guix-git/doc/guix.texi:4762 #, no-wrap msgid "{Scheme Procedure} inferior-package-home-page @var{package}" msgstr "{Процедура Scheme} inferior-package-home-page @var{package}" #. type: deffnx -#: guix-git/doc/guix.texi:4745 +#: guix-git/doc/guix.texi:4763 #, no-wrap msgid "{Scheme Procedure} inferior-package-location @var{package}" msgstr "{Процедура Scheme} inferior-package-location @var{package}" #. type: deffnx -#: guix-git/doc/guix.texi:4746 +#: guix-git/doc/guix.texi:4764 #, no-wrap msgid "{Scheme Procedure} inferior-package-inputs @var{package}" msgstr "{Процедура Scheme} inferior-package-inputs @var{package}" #. type: deffnx -#: guix-git/doc/guix.texi:4747 +#: guix-git/doc/guix.texi:4765 #, no-wrap msgid "{Scheme Procedure} inferior-package-native-inputs @var{package}" msgstr "{Процедура Scheme} inferior-package-native-inputs @var{package}" #. type: deffnx -#: guix-git/doc/guix.texi:4748 +#: guix-git/doc/guix.texi:4766 #, no-wrap msgid "{Scheme Procedure} inferior-package-propagated-inputs @var{package}" msgstr "{Процедура Scheme} inferior-package-propagated-inputs @var{package}" #. type: deffnx -#: guix-git/doc/guix.texi:4749 +#: guix-git/doc/guix.texi:4767 #, no-wrap msgid "{Scheme Procedure} inferior-package-transitive-propagated-inputs @var{package}" msgstr "{Процедура Scheme} inferior-package-transitive-propagated-inputs @var{package}" #. type: deffnx -#: guix-git/doc/guix.texi:4750 +#: guix-git/doc/guix.texi:4768 #, no-wrap msgid "{Scheme Procedure} inferior-package-native-search-paths @var{package}" msgstr "{Процедура Scheme} inferior-package-native-search-paths @var{package}" #. type: deffnx -#: guix-git/doc/guix.texi:4751 +#: guix-git/doc/guix.texi:4769 #, no-wrap msgid "{Scheme Procedure} inferior-package-transitive-native-search-paths @var{package}" msgstr "{Процедура Scheme} inferior-package-transitive-native-search-paths @var{package}" #. type: deffnx -#: guix-git/doc/guix.texi:4752 +#: guix-git/doc/guix.texi:4770 #, no-wrap msgid "{Scheme Procedure} inferior-package-search-paths @var{package}" msgstr "{Процедура Scheme} inferior-package-search-paths @var{package}" #. type: deffn -#: guix-git/doc/guix.texi:4757 +#: guix-git/doc/guix.texi:4775 msgid "These procedures are the counterpart of package record accessors (@pxref{package Reference}). Most of them work by querying the inferior @var{package} comes from, so the inferior must still be live when you call these procedures." msgstr "Эти процедуры являются двойниками метода доступа к записям пакетов (@pxref{package Reference}). Большинство из них работают с запросами для ранней версии, из которой происходит @var{package}, так что ранняя версия должна оставаться живой, когда вы вызываете эти процедуры." #. type: Plain text -#: guix-git/doc/guix.texi:4767 +#: guix-git/doc/guix.texi:4785 msgid "Inferior packages can be used transparently like any other package or file-like object in G-expressions (@pxref{G-Expressions}). They are also transparently handled by the @code{packages->manifest} procedure, which is commonly used in manifests (@pxref{Invoking guix package, the @option{--manifest} option of @command{guix package}}). Thus you can insert an inferior package pretty much anywhere you would insert a regular package: in manifests, in the @code{packages} field of your @code{operating-system} declaration, and so on." msgstr "Пакеты ранних версий могут использоваться прозрачно, как любой другой пакет или объект типа файл в выражении G-expressions (@pxref{G-Expressions}). Они также прозрачно используются в процедуре @code{packages->manifest}, которая обычно используется в манифестах (@pxref{Invoking guix package, the @option{--manifest} option of @command{guix package}}). Так можно вставлять пакет ранней версии в принципе куда угодно, как если вставлять обычный пакет: в манифесты, в поле @code{packages} вашего объявления @code{operating-system} и т.д." #. type: section -#: guix-git/doc/guix.texi:4769 +#: guix-git/doc/guix.texi:4787 #, no-wrap msgid "Invoking @command{guix describe}" msgstr "Вызов @command{guix describe}" #. type: Plain text -#: guix-git/doc/guix.texi:4780 +#: guix-git/doc/guix.texi:4798 msgid "Often you may want to answer questions like: ``Which revision of Guix am I using?'' or ``Which channels am I using?'' This is useful information in many situations: if you want to @emph{replicate} an environment on a different machine or user account, if you want to report a bug or to determine what change in the channels you are using caused it, or if you want to record your system state for reproducibility purposes. The @command{guix describe} command answers these questions." msgstr "Часто может возникать вопрос: \"Какую ревизию Guix я использую?\" - Или: \"Какие каналы я использую?\" Это полезна информация во многих ситуациях: если вы хотите @emph{повторить} окружение на другой машине или в другом пользовательском аккаунте, если вы хотите составить отчёт об ошибке, чтобы определить, какие изменения в канале, который вы используете, вызвали ошибку, или если вы хотите записать состояние вашей системы в целях воспроизводимости. Команда @command{guix describe} отвечает на эти вопросы." #. type: Plain text -#: guix-git/doc/guix.texi:4784 +#: guix-git/doc/guix.texi:4802 msgid "When run from a @command{guix pull}ed @command{guix}, @command{guix describe} displays the channel(s) that it was built from, including their repository URL and commit IDs (@pxref{Channels}):" msgstr "В случае запуска после @command{guix pull} команда @command{guix describe} отображает канал(ы), из которых производилась сборка, включая URL и репозиториев и ID коммитов (@pxref{Channels}):" #. type: example -#: guix-git/doc/guix.texi:4792 +#: guix-git/doc/guix.texi:4810 #, no-wrap msgid "" "$ guix describe\n" @@ -11772,17 +11871,17 @@ msgstr "" " commit: e0fa68c7718fffd33d81af415279d6ddb518f727\n" #. type: Plain text -#: guix-git/doc/guix.texi:4801 +#: guix-git/doc/guix.texi:4819 msgid "If you're familiar with the Git version control system, this is similar in spirit to @command{git describe}; the output is also similar to that of @command{guix pull --list-generations}, but limited to the current generation (@pxref{Invoking guix pull, the @option{--list-generations} option}). Because the Git commit ID shown above unambiguously refers to a snapshot of Guix, this information is all it takes to describe the revision of Guix you're using, and also to replicate it." msgstr "Если вы знакомы с системой контроля версиями Git, эта команда по сути похожа на @command{git describe}; выход тот же, что в @command{guix pull --list-generations}, но ограничен текущим поколением (@pxref{Invoking guix pull, the @option{--list-generations} option}). Так как ID коммита Git выше ссылается однозначно на снимок Guix, эта информация --- всё, что нужно для описания используемой ревизии Guix и повторения её." #. type: Plain text -#: guix-git/doc/guix.texi:4804 +#: guix-git/doc/guix.texi:4822 msgid "To make it easier to replicate Guix, @command{guix describe} can also be asked to return a list of channels instead of the human-readable description above:" msgstr "Чтобы проще повторить Guix, @command{guix describe} также может вызываться для вывода списка каналов вместо читаемого описания выше:" #. type: example -#: guix-git/doc/guix.texi:4817 +#: guix-git/doc/guix.texi:4835 #, no-wrap msgid "" "$ guix describe -f channels\n" @@ -11810,190 +11909,190 @@ msgstr "" " \"BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA\")))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:4826 +#: guix-git/doc/guix.texi:4844 msgid "You can save this to a file and feed it to @command{guix pull -C} on some other machine or at a later point in time, which will instantiate @emph{this exact Guix revision} (@pxref{Invoking guix pull, the @option{-C} option}). From there on, since you're able to deploy the same revision of Guix, you can just as well @emph{replicate a complete software environment}. We humbly think that this is @emph{awesome}, and we hope you'll like it too!" msgstr "Можно сохранить это в файл и подать на вход @command{guix pull -C} на любой другой машине или через время, чтобы инициализировать @emph{эту конкретную ревизию Guix} (@pxref{Invoking guix pull, the @option{-C} option}). Теперь, когда можно развернуть подобную ревизию Guix, вы можете также @emph{полностью повторить программное окружение}. Мы скромно полагаем, это @emph{чудесно}. Надеемся, вам это тоже понравится!" #. type: Plain text -#: guix-git/doc/guix.texi:4829 +#: guix-git/doc/guix.texi:4847 msgid "The details of the options supported by @command{guix describe} are as follows:" msgstr "Подробнее об опциях, поддерживаемых @command{guix describe}:" #. type: item -#: guix-git/doc/guix.texi:4831 guix-git/doc/guix.texi:6431 -#: guix-git/doc/guix.texi:14242 +#: guix-git/doc/guix.texi:4849 guix-git/doc/guix.texi:6474 +#: guix-git/doc/guix.texi:14599 #, no-wrap msgid "--format=@var{format}" msgstr "--format=@var{format}" #. type: itemx -#: guix-git/doc/guix.texi:4832 guix-git/doc/guix.texi:6432 -#: guix-git/doc/guix.texi:14243 +#: guix-git/doc/guix.texi:4850 guix-git/doc/guix.texi:6475 +#: guix-git/doc/guix.texi:14600 #, no-wrap msgid "-f @var{format}" msgstr "-f @var{format}" #. type: table -#: guix-git/doc/guix.texi:4834 guix-git/doc/guix.texi:14245 +#: guix-git/doc/guix.texi:4852 guix-git/doc/guix.texi:14602 msgid "Produce output in the specified @var{format}, one of:" msgstr "Произвести вывод в указанном формате @var{format}, одном из:" #. type: item -#: guix-git/doc/guix.texi:4836 +#: guix-git/doc/guix.texi:4854 #, no-wrap msgid "human" msgstr "human" #. type: table -#: guix-git/doc/guix.texi:4838 +#: guix-git/doc/guix.texi:4856 msgid "produce human-readable output;" msgstr "произвести вывод для чтения человеком;" #. type: cindex -#: guix-git/doc/guix.texi:4838 guix-git/doc/guix.texi:5056 +#: guix-git/doc/guix.texi:4856 guix-git/doc/guix.texi:5074 #, no-wrap msgid "channels" msgstr "каналы" #. type: table -#: guix-git/doc/guix.texi:4842 +#: guix-git/doc/guix.texi:4860 msgid "produce a list of channel specifications that can be passed to @command{guix pull -C} or installed as @file{~/.config/guix/channels.scm} (@pxref{Invoking guix pull});" msgstr "произвести список спецификаций каналов, который может использоваться в @command{guix pull -C} или вставлен в файл @file{~/.config/guix/channels.scm} (@pxref{Invoking guix pull});" #. type: item -#: guix-git/doc/guix.texi:4842 +#: guix-git/doc/guix.texi:4860 #, no-wrap msgid "channels-sans-intro" msgstr "channels-sans-intro" #. type: table -#: guix-git/doc/guix.texi:4848 +#: guix-git/doc/guix.texi:4866 msgid "like @code{channels}, but omit the @code{introduction} field; use it to produce a channel specification suitable for Guix version 1.1.0 or earlier---the @code{introduction} field has to do with channel authentication (@pxref{Channels, Channel Authentication}) and is not supported by these older versions;" msgstr "как @code{channels}, но без поля @code{Introduction}; используйте его для создания спецификации канала, подходящей для Guix версии 1.1.0 или более ранней. Поле @code{Introduction} связано с аутентификацией канала (@pxref{Channels, Channel Authentication}) и не поддерживается этими более ранними версиями;" #. type: item -#: guix-git/doc/guix.texi:4848 guix-git/doc/guix.texi:12109 +#: guix-git/doc/guix.texi:4866 guix-git/doc/guix.texi:12424 #, no-wrap msgid "json" msgstr "json" #. type: cindex -#: guix-git/doc/guix.texi:4849 +#: guix-git/doc/guix.texi:4867 #, no-wrap msgid "JSON" msgstr "JSON" #. type: table -#: guix-git/doc/guix.texi:4851 +#: guix-git/doc/guix.texi:4869 msgid "produce a list of channel specifications in JSON format;" msgstr "произвести список спецификаций каналов в формате JSON;" #. type: item -#: guix-git/doc/guix.texi:4851 guix-git/doc/guix.texi:14247 +#: guix-git/doc/guix.texi:4869 guix-git/doc/guix.texi:14604 #, no-wrap msgid "recutils" msgstr "recutils" #. type: table -#: guix-git/doc/guix.texi:4853 +#: guix-git/doc/guix.texi:4871 msgid "produce a list of channel specifications in Recutils format." msgstr "произвести список спецификаций каналов в формате Recutils." #. type: item -#: guix-git/doc/guix.texi:4855 +#: guix-git/doc/guix.texi:4873 #, no-wrap msgid "--list-formats" msgstr "--list-roots" #. type: table -#: guix-git/doc/guix.texi:4857 +#: guix-git/doc/guix.texi:4875 msgid "Display available formats for @option{--format} option." msgstr "Вывести доступные форматы для @option{--format} опции." #. type: table -#: guix-git/doc/guix.texi:4861 +#: guix-git/doc/guix.texi:4879 msgid "Display information about @var{profile}." msgstr "Вывести информацию о профиле @var{profile}." #. type: section -#: guix-git/doc/guix.texi:4864 +#: guix-git/doc/guix.texi:4882 #, no-wrap msgid "Invoking @command{guix archive}" msgstr "Вызов @command{guix archive}" #. type: command{#1} -#: guix-git/doc/guix.texi:4866 +#: guix-git/doc/guix.texi:4884 #, no-wrap msgid "guix archive" msgstr "guix archive" #. type: cindex -#: guix-git/doc/guix.texi:4867 +#: guix-git/doc/guix.texi:4885 #, no-wrap msgid "archive" msgstr "архив" #. type: Plain text -#: guix-git/doc/guix.texi:4873 +#: guix-git/doc/guix.texi:4891 msgid "The @command{guix archive} command allows users to @dfn{export} files from the store into a single archive, and to later @dfn{import} them on a machine that runs Guix. In particular, it allows store files to be transferred from one machine to the store on another machine." msgstr "Команда @command{guix archive} даёт возможность пользователям @dfn{экспортировать} файлы со склада в простой архив и затем @dfn{импортировать} их на машину с работающим Guix. В частности, это позволяет передавать файлы склада одной машины на склад другой машины." #. type: quotation -#: guix-git/doc/guix.texi:4877 +#: guix-git/doc/guix.texi:4895 msgid "If you're looking for a way to produce archives in a format suitable for tools other than Guix, @pxref{Invoking guix pack}." msgstr "Если вы ищете способ производить архивы в формате, который подходит для инструментов, отличных от Guix, смотрите @pxref{Invoking guix pack}." #. type: cindex -#: guix-git/doc/guix.texi:4879 +#: guix-git/doc/guix.texi:4897 #, no-wrap msgid "exporting store items" msgstr "экспорт элементов склада" #. type: Plain text -#: guix-git/doc/guix.texi:4881 +#: guix-git/doc/guix.texi:4899 msgid "To export store files as an archive to standard output, run:" msgstr "Чтобы экспортировать файлы склада в архив в стандартный вывод, выполните:" #. type: example -#: guix-git/doc/guix.texi:4884 +#: guix-git/doc/guix.texi:4902 #, no-wrap msgid "guix archive --export @var{options} @var{specifications}...\n" msgstr "guix archive --export @var{options} @var{specifications}...\n" #. type: Plain text -#: guix-git/doc/guix.texi:4891 +#: guix-git/doc/guix.texi:4909 msgid "@var{specifications} may be either store file names or package specifications, as for @command{guix package} (@pxref{Invoking guix package}). For instance, the following command creates an archive containing the @code{gui} output of the @code{git} package and the main output of @code{emacs}:" msgstr "Спецификации @var{specifications} могут быть либо именами файлов или пакетами, как для команде @command{guix package} (@pxref{Invoking guix package}). Например, следующая команда создаёт архив, содержащий выход @code{gui} пакета @code{git} и главный выход @code{emacs}:" #. type: example -#: guix-git/doc/guix.texi:4894 +#: guix-git/doc/guix.texi:4912 #, no-wrap msgid "guix archive --export git:gui /gnu/store/...-emacs-24.3 > great.nar\n" msgstr "guix archive --export git:gui /gnu/store/...-emacs-24.3 > great.nar\n" #. type: Plain text -#: guix-git/doc/guix.texi:4899 +#: guix-git/doc/guix.texi:4917 msgid "If the specified packages are not built yet, @command{guix archive} automatically builds them. The build process may be controlled with the common build options (@pxref{Common Build Options})." msgstr "Если указанные пакеты ещё не собраны, @command{guix archive} автоматически соберёт их. Процесс сборки может контролироваться обычными опциями сборки (@pxref{Common Build Options})." #. type: Plain text -#: guix-git/doc/guix.texi:4902 +#: guix-git/doc/guix.texi:4920 msgid "To transfer the @code{emacs} package to a machine connected over SSH, one would run:" msgstr "Чтобы передать пакет @code{emacs} на машину, соединённую по SSH, нужно следующее:" #. type: example -#: guix-git/doc/guix.texi:4905 +#: guix-git/doc/guix.texi:4923 #, no-wrap msgid "guix archive --export -r emacs | ssh the-machine guix archive --import\n" msgstr "guix archive --export -r emacs | ssh the-machine guix archive --import\n" #. type: Plain text -#: guix-git/doc/guix.texi:4910 +#: guix-git/doc/guix.texi:4928 msgid "Similarly, a complete user profile may be transferred from one machine to another like this:" msgstr "Точно также для передачи всего профиля пользователя из одной машины на другую, выполните:" #. type: example -#: guix-git/doc/guix.texi:4914 +#: guix-git/doc/guix.texi:4932 #, no-wrap msgid "" "guix archive --export -r $(readlink -f ~/.guix-profile) | \\\n" @@ -12003,187 +12102,187 @@ msgstr "" " ssh the-machine guix archive --import\n" #. type: Plain text -#: guix-git/doc/guix.texi:4924 +#: guix-git/doc/guix.texi:4942 msgid "However, note that, in both examples, all of @code{emacs} and the profile as well as all of their dependencies are transferred (due to @option{-r}), regardless of what is already available in the store on the target machine. The @option{--missing} option can help figure out which items are missing from the target store. The @command{guix copy} command simplifies and optimizes this whole process, so this is probably what you should use in this case (@pxref{Invoking guix copy})." msgstr "Однако заметим, что в обоих примерах, передаются весь @code{emacs} и профиль вместе с их зависимости (ввиду @code{-r}), не учитывая, что доступно на складе целевой машины. Опция @code{--missing} помогает определить отсутствующие элементы на целевом складе. Команда @command{guix copy} упрощает и оптимизирует весь этот процесс, так что в данном случае она решает проблему (@pxref{Invoking guix copy})." #. type: cindex -#: guix-git/doc/guix.texi:4925 +#: guix-git/doc/guix.texi:4943 #, no-wrap msgid "nar, archive format" msgstr "nar, формат архива" #. type: cindex -#: guix-git/doc/guix.texi:4926 +#: guix-git/doc/guix.texi:4944 #, no-wrap msgid "normalized archive (nar)" msgstr "нормализованный архив (nar)" #. type: cindex -#: guix-git/doc/guix.texi:4927 +#: guix-git/doc/guix.texi:4945 #, no-wrap msgid "nar bundle, archive format" msgstr "nar, формат архива" #. type: Plain text -#: guix-git/doc/guix.texi:4932 +#: guix-git/doc/guix.texi:4950 msgid "Each store item is written in the @dfn{normalized archive} or @dfn{nar} format (described below), and the output of @command{guix archive --export} (and input of @command{guix archive --import}) is a @dfn{nar bundle}." msgstr "Каждый элемент храниища написан в @dfn{normalized archive} или @dfn{nar} формате (описано ниже), и вывод @command{guix archive --export} (и ввод @command{guix archive --import}) есть @dfn{nar bundle}." #. type: Plain text -#: guix-git/doc/guix.texi:4942 +#: guix-git/doc/guix.texi:4960 msgid "The nar format is comparable in spirit to `tar', but with differences that make it more appropriate for our purposes. First, rather than recording all Unix metadata for each file, the nar format only mentions the file type (regular, directory, or symbolic link); Unix permissions and owner/group are dismissed. Second, the order in which directory entries are stored always follows the order of file names according to the C locale collation order. This makes archive production fully deterministic." msgstr "Формат nar по духу сравним с tar, но с отличиями, которые делают его более подходящим для наших целей. Во-первых, вместо записи всех метаданных Unix для каждого файла, в формате nar упоминается только тип файла (обычный, каталог или символическая ссылка); Разрешения Unix и владелец/группа отклонены. Во-вторых, порядок, в котором хранятся записи каталога, всегда следует порядку имен файлов в соответствии с порядком сопоставления @code{C} локали. Это делает создание архивов полностью детерминированным." #. type: Plain text -#: guix-git/doc/guix.texi:4946 +#: guix-git/doc/guix.texi:4964 msgid "That nar bundle format is essentially the concatenation of zero or more nars along with metadata for each store item it contains: its file name, references, corresponding derivation, and a digital signature." msgstr "Формат пакета nar - это, по сути, конкатенация нуля или более nars вместе с метаданными для каждого элемента store, который содержит: имя файла, ссылки, соответствующую derivation и цифровую подпись." #. type: Plain text -#: guix-git/doc/guix.texi:4952 +#: guix-git/doc/guix.texi:4970 msgid "When exporting, the daemon digitally signs the contents of the archive, and that digital signature is appended. When importing, the daemon verifies the signature and rejects the import in case of an invalid signature or if the signing key is not authorized." msgstr "При экспортировании демон подписывает цифровой подписью содержимое архива, и эта цифровая подпись прикрепляется. При импорте демон проверяет подпись и отменяет импорт в случае недействительной подписи, или если ключ подписи не авторизован." #. type: Plain text -#: guix-git/doc/guix.texi:4954 +#: guix-git/doc/guix.texi:4972 msgid "The main options are:" msgstr "Основные опции:" #. type: item -#: guix-git/doc/guix.texi:4956 +#: guix-git/doc/guix.texi:4974 #, no-wrap msgid "--export" msgstr "--export" #. type: table -#: guix-git/doc/guix.texi:4959 +#: guix-git/doc/guix.texi:4977 msgid "Export the specified store files or packages (see below). Write the resulting archive to the standard output." msgstr "Экспортировать указанные файлы хранилища или пакеты (смотрите ниже). Писать результирующий архив в стандартный вывод." #. type: table -#: guix-git/doc/guix.texi:4962 +#: guix-git/doc/guix.texi:4980 msgid "Dependencies are @emph{not} included in the output, unless @option{--recursive} is passed." msgstr "Зависимости @emph{не} включаются в выход, если не задана опция @option{--recursive}." #. type: itemx -#: guix-git/doc/guix.texi:4963 guix-git/doc/guix.texi:11830 -#: guix-git/doc/guix.texi:11956 guix-git/doc/guix.texi:11981 -#: guix-git/doc/guix.texi:12013 guix-git/doc/guix.texi:12184 -#: guix-git/doc/guix.texi:12225 guix-git/doc/guix.texi:12276 -#: guix-git/doc/guix.texi:12301 guix-git/doc/guix.texi:12317 -#: guix-git/doc/guix.texi:12365 guix-git/doc/guix.texi:12401 +#: guix-git/doc/guix.texi:4981 guix-git/doc/guix.texi:12144 +#: guix-git/doc/guix.texi:12271 guix-git/doc/guix.texi:12296 +#: guix-git/doc/guix.texi:12328 guix-git/doc/guix.texi:12499 +#: guix-git/doc/guix.texi:12540 guix-git/doc/guix.texi:12591 +#: guix-git/doc/guix.texi:12616 guix-git/doc/guix.texi:12632 +#: guix-git/doc/guix.texi:12680 guix-git/doc/guix.texi:12716 #, no-wrap msgid "-r" msgstr "-r" #. type: item -#: guix-git/doc/guix.texi:4964 guix-git/doc/guix.texi:11829 -#: guix-git/doc/guix.texi:11955 guix-git/doc/guix.texi:11980 -#: guix-git/doc/guix.texi:12012 guix-git/doc/guix.texi:12183 -#: guix-git/doc/guix.texi:12224 guix-git/doc/guix.texi:12275 -#: guix-git/doc/guix.texi:12300 guix-git/doc/guix.texi:12316 -#: guix-git/doc/guix.texi:12364 guix-git/doc/guix.texi:12400 -#: guix-git/doc/guix.texi:12449 +#: guix-git/doc/guix.texi:4982 guix-git/doc/guix.texi:12143 +#: guix-git/doc/guix.texi:12270 guix-git/doc/guix.texi:12295 +#: guix-git/doc/guix.texi:12327 guix-git/doc/guix.texi:12498 +#: guix-git/doc/guix.texi:12539 guix-git/doc/guix.texi:12590 +#: guix-git/doc/guix.texi:12615 guix-git/doc/guix.texi:12631 +#: guix-git/doc/guix.texi:12679 guix-git/doc/guix.texi:12715 +#: guix-git/doc/guix.texi:12764 #, no-wrap msgid "--recursive" msgstr "--recursive" #. type: table -#: guix-git/doc/guix.texi:4969 +#: guix-git/doc/guix.texi:4987 msgid "When combined with @option{--export}, this instructs @command{guix archive} to include dependencies of the given items in the archive. Thus, the resulting archive is self-contained: it contains the closure of the exported store items." msgstr "При сочетании с @code{--export} это указывает @command{guix archive} включать в архив зависимости обозначенных элементов. Так результирующий архив будет \"сам в себе\": содержит полный конвейер экспортированных элементов склада." #. type: item -#: guix-git/doc/guix.texi:4970 +#: guix-git/doc/guix.texi:4988 #, no-wrap msgid "--import" msgstr "--import" #. type: table -#: guix-git/doc/guix.texi:4975 +#: guix-git/doc/guix.texi:4993 msgid "Read an archive from the standard input, and import the files listed therein into the store. Abort if the archive has an invalid digital signature, or if it is signed by a public key not among the authorized keys (see @option{--authorize} below)." msgstr "Читать архив из стандартного ввода и импортировать файлы, поставляемые им, на склад. Отклонить, если архив имеет недействительную цифровую подпись, или если он подписан публичным ключом, который не находится в списке авторизованных ключей (смотрите @code{--authorize} ниже)." #. type: item -#: guix-git/doc/guix.texi:4976 +#: guix-git/doc/guix.texi:4994 #, no-wrap msgid "--missing" msgstr "--missing" #. type: table -#: guix-git/doc/guix.texi:4980 +#: guix-git/doc/guix.texi:4998 msgid "Read a list of store file names from the standard input, one per line, and write on the standard output the subset of these files missing from the store." msgstr "Читать список имён файлов склада из стандартного ввода, одна линия - один файл, и писать в стандартный вывод подмножество этих файлов, отсутствующих на складе." #. type: item -#: guix-git/doc/guix.texi:4981 +#: guix-git/doc/guix.texi:4999 #, no-wrap msgid "--generate-key[=@var{parameters}]" msgstr "--generate-key[=@var{parameters}]" #. type: cindex -#: guix-git/doc/guix.texi:4982 +#: guix-git/doc/guix.texi:5000 #, no-wrap msgid "signing, archives" msgstr "подпись, архивов" #. type: table -#: guix-git/doc/guix.texi:4989 +#: guix-git/doc/guix.texi:5007 msgid "Generate a new key pair for the daemon. This is a prerequisite before archives can be exported with @option{--export}. This operation is usually instantaneous but it can take time if the system's entropy pool needs to be refilled. On Guix System, @code{guix-service-type} takes care of generating this key pair the first boot." msgstr "Генерировать новую ключ-пару для демона. Это необходимо получить перед тем, как экспортировать архивы опцией @code{--export}. Отметим, что эта операция обычно занимает время, так как необходимо собрать много энтропии для ключ-пары." #. type: table -#: guix-git/doc/guix.texi:4999 +#: guix-git/doc/guix.texi:5017 msgid "The generated key pair is typically stored under @file{/etc/guix}, in @file{signing-key.pub} (public key) and @file{signing-key.sec} (private key, which must be kept secret). When @var{parameters} is omitted, an ECDSA key using the Ed25519 curve is generated, or, for Libgcrypt versions before 1.6.0, it is a 4096-bit RSA key. Alternatively, @var{parameters} can specify @code{genkey} parameters suitable for Libgcrypt (@pxref{General public-key related Functions, @code{gcry_pk_genkey},, gcrypt, The Libgcrypt Reference Manual})." msgstr "Сгенерированная ключ-пара обычно сохраняется под @file{/etc/guix}, в файлы @file{signing-key.pub} (публичный ключ) и @file{signing-key.sec} (прватный ключ, который должен оставаться в секрете). Если параметры @var{parameters} пропущены, генерируется ключ ECDSA, используя кривую Ed25519, или для Libgcrypt версии ранее 1.6.0 --- это 4096-битный ключ RSA. Альтернативно в параметрах @var{parameters} можно указать @code{genkey}, соответствующие Libgcrypt (@pxref{General public-key related Functions, @code{gcry_pk_genkey},, gcrypt, The Libgcrypt Reference Manual})." #. type: item -#: guix-git/doc/guix.texi:5000 +#: guix-git/doc/guix.texi:5018 #, no-wrap msgid "--authorize" msgstr "--authorize" #. type: cindex -#: guix-git/doc/guix.texi:5001 +#: guix-git/doc/guix.texi:5019 #, no-wrap msgid "authorizing, archives" msgstr "авторизация, архивов" #. type: table -#: guix-git/doc/guix.texi:5005 +#: guix-git/doc/guix.texi:5023 msgid "Authorize imports signed by the public key passed on standard input. The public key must be in ``s-expression advanced format''---i.e., the same format as the @file{signing-key.pub} file." msgstr "Авторизовать импорт, подписанный публичным ключом, поступивший на стандартный ввод. Публичный ключ должен быть в формате s-expression, то есть в таком же формате, как файл @file{signing-key.pub}." #. type: table -#: guix-git/doc/guix.texi:5012 +#: guix-git/doc/guix.texi:5030 msgid "The list of authorized keys is kept in the human-editable file @file{/etc/guix/acl}. The file contains @url{https://people.csail.mit.edu/rivest/Sexp.txt, ``advanced-format s-expressions''} and is structured as an access-control list in the @url{https://theworld.com/~cme/spki.txt, Simple Public-Key Infrastructure (SPKI)}." msgstr "Список авторизованных ключей хранится в файле @file{/etc/guix/acl}, доступном для редактирования человеком. Файл содержит @url{http://people.csail.mit.edu/rivest/Sexp.txt, s-expression расширенного формата}, и он структурирован в виде списка контроля доступа в @url{http://theworld.com/~cme/spki.txt, Simple Public-Key Infrastructure (SPKI)}." #. type: item -#: guix-git/doc/guix.texi:5013 +#: guix-git/doc/guix.texi:5031 #, no-wrap msgid "--extract=@var{directory}" msgstr "--extract=@var{directory}" #. type: itemx -#: guix-git/doc/guix.texi:5014 +#: guix-git/doc/guix.texi:5032 #, no-wrap msgid "-x @var{directory}" msgstr "-x @var{directory}" #. type: table -#: guix-git/doc/guix.texi:5018 +#: guix-git/doc/guix.texi:5036 msgid "Read a single-item archive as served by substitute servers (@pxref{Substitutes}) and extract it to @var{directory}. This is a low-level operation needed in only very narrow use cases; see below." msgstr "Читать архив, представляющий один элемент, в качестве поставленного серверами подстановки (@pxref{Substitutes}) и извлечь его в директорию @var{directory}. Это низкоуровневая операция, необходимая только в очень редких случаях, смотрите ниже." #. type: table -#: guix-git/doc/guix.texi:5021 +#: guix-git/doc/guix.texi:5039 msgid "For example, the following command extracts the substitute for Emacs served by @code{@value{SUBSTITUTE-SERVER-1}} to @file{/tmp/emacs}:" msgstr "Например, следующая команда распаковывает подстановку Emacs, поставленную @code{@value{SUBSTITUTE-SERVER-1}} в @file{/tmp/emacs}:" #. type: example -#: guix-git/doc/guix.texi:5026 +#: guix-git/doc/guix.texi:5044 #, no-wrap msgid "" "$ wget -O - \\\n" @@ -12195,35 +12294,35 @@ msgstr "" " | gunzip | guix archive -x /tmp/emacs\n" #. type: table -#: guix-git/doc/guix.texi:5033 +#: guix-git/doc/guix.texi:5051 msgid "Single-item archives are different from multiple-item archives produced by @command{guix archive --export}; they contain a single store item, and they do @emph{not} embed a signature. Thus this operation does @emph{no} signature verification and its output should be considered unsafe." msgstr "Архивы, представляющие один элемент, отличаются от архивов, содержащих множество элементов, производимых @command{guix archive --export}. Они содержат один элемент склада, но они @emph{не} включают подпись. Так что эта операция @emph{не} использует верификацию, и его выход должен рассматриваться как небезопасный." #. type: table -#: guix-git/doc/guix.texi:5037 +#: guix-git/doc/guix.texi:5055 msgid "The primary purpose of this operation is to facilitate inspection of archive contents coming from possibly untrusted substitute servers (@pxref{Invoking guix challenge})." msgstr "Основная цель этой операции --- упростить просмотр содержимого архива, происходящего, возможно, из недоверенных серверов подстановок." #. type: item -#: guix-git/doc/guix.texi:5038 +#: guix-git/doc/guix.texi:5056 #, no-wrap msgid "--list" msgstr "--list" #. type: itemx -#: guix-git/doc/guix.texi:5039 guix-git/doc/guix.texi:12171 -#: guix-git/doc/guix.texi:12218 +#: guix-git/doc/guix.texi:5057 guix-git/doc/guix.texi:12486 +#: guix-git/doc/guix.texi:12533 #, no-wrap msgid "-t" msgstr "-t" #. type: table -#: guix-git/doc/guix.texi:5043 +#: guix-git/doc/guix.texi:5061 msgid "Read a single-item archive as served by substitute servers (@pxref{Substitutes}) and print the list of files it contains, as in this example:" msgstr "Читать архив, представляющий один элемент, в качестве поставленного серверами подстановки (@pxref{Substitutes}) и распечатайте список файлов, которые он содержит, как в этом примере:" #. type: example -#: guix-git/doc/guix.texi:5048 +#: guix-git/doc/guix.texi:5066 #, no-wrap msgid "" "$ wget -O - \\\n" @@ -12235,47 +12334,47 @@ msgstr "" " | lzip -d | guix archive -t\n" #. type: cindex -#: guix-git/doc/guix.texi:5059 +#: guix-git/doc/guix.texi:5077 #, no-wrap msgid "@command{guix pull}, configuration file" msgstr "@command{guix pull}, конфигурационный файл" #. type: cindex -#: guix-git/doc/guix.texi:5060 +#: guix-git/doc/guix.texi:5078 #, no-wrap msgid "configuration of @command{guix pull}" msgstr "конфигурация @command{guix pull}" #. type: Plain text -#: guix-git/doc/guix.texi:5071 +#: guix-git/doc/guix.texi:5089 msgid "Guix and its package collection are updated by running @command{guix pull} (@pxref{Invoking guix pull}). By default @command{guix pull} downloads and deploys Guix itself from the official GNU@tie{}Guix repository. This can be customized by defining @dfn{channels} in the @file{~/.config/guix/channels.scm} file. A channel specifies a URL and branch of a Git repository to be deployed, and @command{guix pull} can be instructed to pull from one or more channels. In other words, channels can be used to @emph{customize} and to @emph{extend} Guix, as we will see below. Guix is able to take into account security concerns and deal with authenticated updates." msgstr "Guix и его коллекция пакетов можно обновить запуском @command{guix pull} (@pxref{Invoking guix pull}). По умолчанию @command{guix pull} скачивает и разворачивает Guix из официального репозитория GNU@tie{}Guix. Это может быть изменено определением каналов @dfn{channels} в файле @file{~/.config/guix/channels.scm}. Канал обозначает URL или ветку репозитория Git для разворачивания. Также @command{guix pull} может быть настроена для скачивания из одного или более каналов. Другими словами, каналы могут использоваться для @emph{настройки} и для @emph{расширения} Guix, как это будет показано ниже." #. type: cindex -#: guix-git/doc/guix.texi:5089 +#: guix-git/doc/guix.texi:5107 #, no-wrap msgid "extending the package collection (channels)" msgstr "расширение коллекции пакетов (каналов)" #. type: cindex -#: guix-git/doc/guix.texi:5090 +#: guix-git/doc/guix.texi:5108 #, no-wrap msgid "variant packages (channels)" msgstr "собственные пакеты (каналы)" #. type: Plain text -#: guix-git/doc/guix.texi:5094 +#: guix-git/doc/guix.texi:5112 msgid "You can specify @emph{additional channels} to pull from. To use a channel, write @code{~/.config/guix/channels.scm} to instruct @command{guix pull} to pull from it @emph{in addition} to the default Guix channel(s):" msgstr "Чтобы использовать канал, напишите @code{~/.config/guix/channels.scm}, чтобы обозначить @command{guix pull} скачивать оттуда @emph{в дополнение} к каналу(-ам) Guix по умолчанию:" #. type: vindex -#: guix-git/doc/guix.texi:5095 +#: guix-git/doc/guix.texi:5113 #, no-wrap msgid "%default-channels" msgstr "%default-channels" #. type: lisp -#: guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5120 #, no-wrap msgid "" ";; Add variant packages to those Guix provides.\n" @@ -12291,12 +12390,12 @@ msgstr "" " %default-channels)\n" #. type: Plain text -#: guix-git/doc/guix.texi:5112 +#: guix-git/doc/guix.texi:5130 msgid "Note that the snippet above is (as always!)@: Scheme code; we use @code{cons} to add a channel the list of channels that the variable @code{%default-channels} is bound to (@pxref{Pairs, @code{cons} and lists,, guile, GNU Guile Reference Manual}). With this file in place, @command{guix pull} builds not only Guix but also the package modules from your own repository. The result in @file{~/.config/guix/current} is the union of Guix with your own package modules:" msgstr "Заметим, что сниппет выше (всегда!)@: код Scheme; мы используем @code{cons} для добавления канала в список каналов, то есть в переменную @code{%default-channels} (@pxref{Pairs, @code{cons} and lists,, guile, GNU Guile Reference Manual}). Если этот файл написан, @command{guix pull} производит сборку не только Guix, но и пакетных модулей из вашего репозитория. В результате в @file{~/.config/guix/current} содержится объединение Guix и ваших собственных пакетных модулей:" #. type: example -#: guix-git/doc/guix.texi:5127 +#: guix-git/doc/guix.texi:5145 #, no-wrap msgid "" "$ guix pull --list-generations\n" @@ -12328,17 +12427,17 @@ msgstr "" " 4 packages upgraded: emacs-racket-mode@@0.0.2-2.1b78827, @dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:5135 +#: guix-git/doc/guix.texi:5153 msgid "The output of @command{guix pull} above shows that Generation@tie{}19 includes both Guix and packages from the @code{variant-personal-packages} channel. Among the new and upgraded packages that are listed, some like @code{variant-gimp} and @code{variant-emacs-with-cool-features} might come from @code{variant-packages}, while others come from the Guix default channel." msgstr "Результат @command{guix pull} выше показывает, что поколение Generation@tie{}19 включает как репозиторий Guix, так и пакеты из канала @code{my-personal-packages}. Вместе с новыми и обновлёнными пакетами, которые присутствуют в списке, что-нибудь типа @code{my-gimp} и @code{my-emacs-with-cool-features} может прийти из @code{my-personal-packages}, когда остальные идут из канала Guix по умолчанию." #. type: Plain text -#: guix-git/doc/guix.texi:5144 +#: guix-git/doc/guix.texi:5162 msgid "The channel called @code{guix} specifies where Guix itself---its command-line tools as well as its package collection---should be downloaded. For instance, suppose you want to update from another copy of the Guix repository at @code{example.org}, and specifically the @code{super-hacks} branch, you can write in @code{~/.config/guix/channels.scm} this specification:" msgstr "Канал, названный @code{guix}, обозначает, откуда должен скачиваться сам Guix (его инструменты командной строки и коллекция пакетов). Например, предположим вы хотите обновиться из вашей собственной копии репозитория Guix на @code{example.org}, а именно из ветки @code{super-hacks}, тогда можно написать в @code{~/.config/guix/channels.scm} следующую спецификацию:" #. type: lisp -#: guix-git/doc/guix.texi:5151 +#: guix-git/doc/guix.texi:5169 #, no-wrap msgid "" ";; Tell 'guix pull' to use another repo.\n" @@ -12354,17 +12453,17 @@ msgstr "" " (branch \"super-hacks\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5157 +#: guix-git/doc/guix.texi:5175 msgid "From there on, @command{guix pull} will fetch code from the @code{super-hacks} branch of the repository at @code{example.org}. The authentication concern is addressed below ((@pxref{Channel Authentication})." msgstr "При такой настройке @command{guix pull} будет скачивать код из ветки @code{super-hacks} репозитория в @code{example.org}." #. type: Plain text -#: guix-git/doc/guix.texi:5168 +#: guix-git/doc/guix.texi:5186 msgid "The @command{guix pull --list-generations} output above shows precisely which commits were used to build this instance of Guix. We can thus replicate it, say, on another machine, by providing a channel specification in @file{~/.config/guix/channels.scm} that is ``pinned'' to these commits:" msgstr "Результат @command{guix pull --list-generations} выше показывает точно, какие коммиты были использованы для сборки данной инстанции Guix. Так что мы можем повторить её, скажем, на другой машине, предоставив объявление канала в @file{~/.config/guix/channels.scm}, которое завязано на этих коммитах:" #. type: lisp -#: guix-git/doc/guix.texi:5179 +#: guix-git/doc/guix.texi:5197 #, no-wrap msgid "" ";; Deploy specific commits of my channels of interest.\n" @@ -12388,37 +12487,37 @@ msgstr "" " (branch \"dd3df5e2c8818760a8fc0bd699e55d3b69fef2bb\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5186 +#: guix-git/doc/guix.texi:5204 msgid "The @command{guix describe --format=channels} command can even generate this list of channels directly (@pxref{Invoking guix describe}). The resulting file can be used with the -C options of @command{guix pull} (@pxref{Invoking guix pull}) or @command{guix time-machine} (@pxref{Invoking guix time-machine})." msgstr "Команда @command{guix describe --format=channels} даже может непосредственно воспроизвести этот список каналов (@pxref{Invoking guix describe})." #. type: Plain text -#: guix-git/doc/guix.texi:5193 +#: guix-git/doc/guix.texi:5211 msgid "At this point the two machines run the @emph{exact same Guix}, with access to the @emph{exact same packages}. The output of @command{guix build gimp} on one machine will be exactly the same, bit for bit, as the output of the same command on the other machine. It also means both machines have access to all the source code of Guix and, transitively, to all the source code of every package it defines." msgstr "И тогда две машины будут работать с @emph{полностью одинаковым Guix}, имея доступ к @emph{абсолютно одинаковым пакетам}. Результат @command{guix build gimp} на одной машине будет совершенно таким же, бит к биту, как результат этой команды на другой машине. Это также означает, что обе машины имеют доступ ко всем исходным кодам Guix, следовательно, ко всем исходным кодам каждого пакета, определённого в Guix." #. type: Plain text -#: guix-git/doc/guix.texi:5198 +#: guix-git/doc/guix.texi:5216 msgid "This gives you super powers, allowing you to track the provenance of binary artifacts with very fine grain, and to reproduce software environments at will---some sort of ``meta reproducibility'' capabilities, if you will. @xref{Inferiors}, for another way to take advantage of these super powers." msgstr "Это даёт вам супервозможности, позволяя вам отслеживать и управлять происхождением артефактов бинарников с точной детализацией, также повторять программные окружения --- это воспроизводимость высокого уровня. Смотрите @xref{Inferiors}, чтобы узнать другие преимущества таких супервозможностей." #. type: anchor{#1} -#: guix-git/doc/guix.texi:5203 +#: guix-git/doc/guix.texi:5221 msgid "channel-authentication" msgstr "channel-authentication" #. type: Plain text -#: guix-git/doc/guix.texi:5209 +#: guix-git/doc/guix.texi:5227 msgid "The @command{guix pull} and @command{guix time-machine} commands @dfn{authenticate} the code retrieved from channels: they make sure each commit that is fetched is signed by an authorized developer. The goal is to protect from unauthorized modifications to the channel that would lead users to run malicious code." msgstr "@command{guix pull} и @command{guix time-machine} @dfn{аутентифицируют} код, полученный из каналов: они гарантируют, что каждый полученный коммит подписан авторизованным разработчиком. Цель состоит в том, чтобы защитить канал от несанкционированных изменений, которые могут привести к запуску вредоносного кода пользователями." #. type: Plain text -#: guix-git/doc/guix.texi:5214 +#: guix-git/doc/guix.texi:5232 msgid "As a user, you must provide a @dfn{channel introduction} in your channels file so that Guix knows how to authenticate its first commit. A channel specification, including its introduction, looks something along these lines:" msgstr "Как пользователь, вы должны предоставить @dfn{channel introduction} в вашем файле канала, чтобы Guix знал как авторизовать свой первый коммит. Спецификация канала, включая введения, выглядит как-то так:" #. type: lisp -#: guix-git/doc/guix.texi:5224 +#: guix-git/doc/guix.texi:5242 #, no-wrap msgid "" "(channel\n" @@ -12440,27 +12539,27 @@ msgstr "" " \"CABB A931 C0FF EEC6 900D 0CFB 090B 1199 3D9A EBB5\"))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5230 +#: guix-git/doc/guix.texi:5248 msgid "The specification above shows the name and URL of the channel. The call to @code{make-channel-introduction} above specifies that authentication of this channel starts at commit @code{6f0d8cc@dots{}}, which is signed by the OpenPGP key with fingerprint @code{CABB A931@dots{}}." msgstr "В приведенной выше спецификации указано имя и URL-адрес канала. Вызов @code{make-channel-introduction} выше указывает, что аутентификация этого канала начинается с коммита @code{6f0d8cc@dots{}}, который подписывается ключом OpenPGP с отпечатком @code{CABB A931@dots{}}." #. type: Plain text -#: guix-git/doc/guix.texi:5236 +#: guix-git/doc/guix.texi:5254 msgid "For the main channel, called @code{guix}, you automatically get that information from your Guix installation. For other channels, include the channel introduction provided by the channel authors in your @file{channels.scm} file. Make sure you retrieve the channel introduction from a trusted source since that is the root of your trust." msgstr "Для основного канала, называемого @code{guix}, вы автоматически получаете эту информацию из вашей установки Guix. Для других каналов, укажите introduction для канала, предоставленное авторами канала, в ваш файл @file{channels.scm}. Убедитесь, что вы получили introduction канала из надежного источника, так как это основа вашего доверия." #. type: Plain text -#: guix-git/doc/guix.texi:5238 +#: guix-git/doc/guix.texi:5256 msgid "If you're curious about the authentication mechanics, read on!" msgstr "Если вам любопытены механизмы авторизации, читайте дальше!" #. type: Plain text -#: guix-git/doc/guix.texi:5249 +#: guix-git/doc/guix.texi:5267 msgid "When running @command{guix pull}, Guix will first compile the definitions of every available package. This is an expensive operation for which substitutes (@pxref{Substitutes}) may be available. The following snippet in @file{channels.scm} will ensure that @command{guix pull} uses the latest commit with available substitutes for the package definitions: this is done by querying the continuous integration server at @url{https://ci.guix.gnu.org}." msgstr "При запуске @command{guix pull} Guix сначала скомпилирует определения каждого доступного пакета. Это тяжелая операция, для которой могут быть доступны заменители (@pxref{Substitutes}). Следующий фрагмент в @file{channels.scm} гарантирует, что @command{guix pull} использует последний коммит с доступными заменами для определений пакетов: это делается путем запроса к серверу непрерывной интеграции по адресу @url {https://ci.guix.gnu.org}." #. type: lisp -#: guix-git/doc/guix.texi:5252 +#: guix-git/doc/guix.texi:5270 #, no-wrap msgid "" "(use-modules (guix ci))\n" @@ -12470,7 +12569,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:5256 +#: guix-git/doc/guix.texi:5274 #, no-wrap msgid "" "(list (channel-with-substitutes-available\n" @@ -12482,75 +12581,75 @@ msgstr "" " \"https://ci.guix.gnu.org\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5263 +#: guix-git/doc/guix.texi:5281 msgid "Note that this does not mean that all the packages that you will install after running @command{guix pull} will have available substitutes. It only ensures that @command{guix pull} will not try to compile package definitions. This is particularly useful when using machines with limited resources." msgstr "Учтите, что это не означает, что все пакеты, которые вы установите после запуска @command{guix pull}, будут иметь доступные заменители. Это только гарантирует, что @command{guix pull} не будет пытаться скомпилировать определения пакетов. Это особенно полезно при использовании машин с ограниченными ресурсами." #. type: cindex -#: guix-git/doc/guix.texi:5267 +#: guix-git/doc/guix.texi:5285 #, no-wrap msgid "personal packages (channels)" msgstr "собственные пакеты (каналы)" #. type: cindex -#: guix-git/doc/guix.texi:5268 +#: guix-git/doc/guix.texi:5286 #, no-wrap msgid "channels, for personal packages" msgstr "каналы, для собственных пакетов" #. type: Plain text -#: guix-git/doc/guix.texi:5276 +#: guix-git/doc/guix.texi:5294 msgid "Let's say you have a bunch of custom package variants or personal packages that you think would make little sense to contribute to the Guix project, but would like to have these packages transparently available to you at the command line. You would first write modules containing those package definitions (@pxref{Package Modules}), maintain them in a Git repository, and then you and anyone else can use it as an additional channel to get packages from. Neat, no?" msgstr "Можно также задать @emph{дополнительные каналы} для выборки оттуда. Ну, например, у вас ряд собственных вариантов пакетов или собственные пакеты, которые вы считаете не особо важным для отправки в проект Guix, но хотите, чтобы эти пакеты были доступны вам в командной строке прозрачно, без дополнительных действий. Вначале можно написать модули, содержащие определения этих пакетов (@pxref{Package Modules}), затем разместить их в репозитории Git, и тогда вы или кто-либо ещё сможете использовать их в качестве дополнтельного канала для получения пакетов. Красиво, да?" #. type: quotation -#: guix-git/doc/guix.texi:5284 +#: guix-git/doc/guix.texi:5302 msgid "Before you, dear user, shout---``woow this is @emph{soooo coool}!''---and publish your personal channel to the world, we would like to share a few words of caution:" msgstr "Прежде чем вы крикнете @emph{Ух-ты, это круто!} и опубликуете собственный канал, необходимо учесть некоторые предостережения:" #. type: itemize -#: guix-git/doc/guix.texi:5292 +#: guix-git/doc/guix.texi:5310 msgid "Before publishing a channel, please consider contributing your package definitions to Guix proper (@pxref{Contributing}). Guix as a project is open to free software of all sorts, and packages in Guix proper are readily available to all Guix users and benefit from the project's quality assurance process." msgstr "Перед публикацией канала, пожалуйста, рассмотрите возможность поделиться вашими определениями пакетов со сборником Guix (@pxref{Contributing}). Guix, как проект, открыт свободному программному обеспечению любого назначения, и пакеты в сборнике Guix готовы и доступны для использования всеми пользователями Guix и прошли проверку качества." #. type: itemize -#: guix-git/doc/guix.texi:5301 +#: guix-git/doc/guix.texi:5319 msgid "When you maintain package definitions outside Guix, we, Guix developers, consider that @emph{the compatibility burden is on you}. Remember that package modules and package definitions are just Scheme code that uses various programming interfaces (APIs). We want to remain free to change these APIs to keep improving Guix, possibly in ways that break your channel. We never change APIs gratuitously, but we will @emph{not} commit to freezing APIs either." msgstr "Когда вы выгружаете определение пакета вне Guix, мы, разработчики Guix, полагаем, что вопрос @emph{совместимости ложится на вас}. Учтите, что пакетные модули и определения пакетов --- это код Scheme, который используют различные программные интерфейсы (API). Мы хотим оставить возможность для себя изменять эти API, чтобы продолжить улучшать Guix. И это может привести к поломке вашего канала. Мы никогда не меняем API необоснованно, но всё же мы @emph{не} будем обновлять устаревшие, замороженные API." #. type: itemize -#: guix-git/doc/guix.texi:5305 +#: guix-git/doc/guix.texi:5323 msgid "Corollary: if you're using an external channel and that channel breaks, please @emph{report the issue to the channel authors}, not to the Guix project." msgstr "Вывод: если вы используете внешний канал, и этот канал ломается, пожалуйста, @emph{заявите об этой проблеме авторам каналв}, но не в проект Guix." #. type: quotation -#: guix-git/doc/guix.texi:5312 +#: guix-git/doc/guix.texi:5330 msgid "You've been warned! Having said this, we believe external channels are a practical way to exert your freedom to augment Guix' package collection and to share your improvements, which are basic tenets of @uref{https://www.gnu.org/philosophy/free-sw.html, free software}. Please email us at @email{guix-devel@@gnu.org} if you'd like to discuss this." msgstr "Вы предупреждены! Обозначив это, мы верим, что внешние каналы --- это способ для вас проявлять свою свободу и вместе с тем расширять коллекцию пакетов Guix и делиться улучшениями, что является основными догматами @uref{https://www.gnu.org/philosophy/free-sw.ru.html, свободного программного обеспечения}. Пожалуйста, свяжитесь с нами по e-mail @email{guix-devel@@gnu.org}, если вы хотите обсудить это." #. type: Plain text -#: guix-git/doc/guix.texi:5324 +#: guix-git/doc/guix.texi:5342 msgid "To create a channel, create a Git repository containing your own package modules and make it available. The repository can contain anything, but a useful channel will contain Guile modules that export packages. Once you start using a channel, Guix will behave as if the root directory of that channel's Git repository has been added to the Guile load path (@pxref{Load Paths,,, guile, GNU Guile Reference Manual}). For example, if your channel contains a file at @file{my-packages/my-tools.scm} that defines a Guile module, then the module will be available under the name @code{(my-packages my-tools)}, and you will be able to use it like any other module (@pxref{Modules,,, guile, GNU Guile Reference Manual})." msgstr "Чтобы создать канал, создайте репозиторий Git, содержащий ваши собственные пакетные модули, и сделайте его доступным. Репозиторий может содержать что-либо, но полезный канал будет содержать модули Guile, экспортирующие пакеты. Когда вы начали использовать канал, Guix будет работать, как будто корневая директория репозитория Git этого канала добавлена в путь загрузки Guile (@pxref{Load Paths,,, guile, GNU Guile Reference Manual}). Например, если ваш канал содержит файл @file{my-packages/my-tools.scm}, который определяет модуль Guile, тогда модуль будет доступен под именем @code{(my-packages my-tools)}, и вы сможете использовать его, как любой другой модуль (@pxref{Modules,,, guile, GNU Guile Reference Manual})." #. type: Plain text -#: guix-git/doc/guix.texi:5329 +#: guix-git/doc/guix.texi:5347 msgid "As a channel author, consider bundling authentication material with your channel so that users can authenticate it. @xref{Channel Authentication}, and @ref{Specifying Channel Authorizations}, for info on how to do it." msgstr "Как автор канала, рассмотрите возможность объединения материалов для аутентификации с вашим каналом, чтобы пользователи могли его аутентифицировать. @xref{Channel Authentication} и @ref{Specifying Channel Authorizations} для получения информации о том, как это сделать." #. type: cindex -#: guix-git/doc/guix.texi:5334 +#: guix-git/doc/guix.texi:5352 #, no-wrap msgid "subdirectory, channels" msgstr "подкаталог, каналы" #. type: Plain text -#: guix-git/doc/guix.texi:5338 +#: guix-git/doc/guix.texi:5356 msgid "As a channel author, you may want to keep your channel modules in a sub-directory. If your modules are in the sub-directory @file{guix}, you must add a meta-data file @file{.guix-channel} that contains:" msgstr "Как автор канала, вы можете хранить модули канала в подкаталоге. Если ваши модули находятся в подкаталоге @file{guix}, вы должны добавить файл метаданных @file{.guix-channel}, который содержит:" #. type: lisp -#: guix-git/doc/guix.texi:5343 +#: guix-git/doc/guix.texi:5361 #, no-wrap msgid "" "(channel\n" @@ -12562,29 +12661,29 @@ msgstr "" " (directory \"guix\"))\n" #. type: cindex -#: guix-git/doc/guix.texi:5348 +#: guix-git/doc/guix.texi:5366 #, no-wrap msgid "dependencies, channels" msgstr "зависимости, каналы" #. type: cindex -#: guix-git/doc/guix.texi:5349 +#: guix-git/doc/guix.texi:5367 #, no-wrap msgid "meta-data, channels" msgstr "метаданные, каналы" #. type: Plain text -#: guix-git/doc/guix.texi:5354 +#: guix-git/doc/guix.texi:5372 msgid "Channel authors may decide to augment a package collection provided by other channels. They can declare their channel to be dependent on other channels in a meta-data file @file{.guix-channel}, which is to be placed in the root of the channel repository." msgstr "Авторы канала могут решить расширить коллекцию пакетов пакетами, которые поставляются другими каналами. Они могут объявить, что их канал зависит от других каналов, в файле метаданных @file{.guix-channel}, который нужно разместить в корне репозитория канала." #. type: Plain text -#: guix-git/doc/guix.texi:5356 +#: guix-git/doc/guix.texi:5374 msgid "The meta-data file should contain a simple S-expression like this:" msgstr "Файл метаданных должен содержать простое выражение S-expression как это:" #. type: lisp -#: guix-git/doc/guix.texi:5364 +#: guix-git/doc/guix.texi:5382 #, no-wrap msgid "" "(channel\n" @@ -12604,7 +12703,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:5376 +#: guix-git/doc/guix.texi:5394 #, no-wrap msgid "" " ;; The 'introduction' bit below is optional: you would\n" @@ -12632,33 +12731,33 @@ msgstr "" " (branch \"testing\"))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5382 +#: guix-git/doc/guix.texi:5400 msgid "In the above example this channel is declared to depend on two other channels, which will both be fetched automatically. The modules provided by the channel will be compiled in an environment where the modules of all these declared channels are available." msgstr "В примере выше объявлен канал, который зависит от двух других каналов, из которых оба будут скачаны автоматически. Модули, предоставляемые каналом, будут скомпилированы в окружении, в котором доступны модули всех этих каналов." #. type: Plain text -#: guix-git/doc/guix.texi:5386 +#: guix-git/doc/guix.texi:5404 msgid "For the sake of reliability and maintainability, you should avoid dependencies on channels that you don't control, and you should aim to keep the number of dependencies to a minimum." msgstr "В целях воспроизводимости и сопровождения вы должны избегать зависимостей от каналов, которые вы не контролируете, и вы должны стремиться минимизировать число зависимостей." #. type: cindex -#: guix-git/doc/guix.texi:5390 +#: guix-git/doc/guix.texi:5408 #, no-wrap msgid "channel authorizations" msgstr "авторизации канала" #. type: anchor{#1} -#: guix-git/doc/guix.texi:5404 +#: guix-git/doc/guix.texi:5422 msgid "channel-authorizations" msgstr "channel-authorizations" #. type: Plain text -#: guix-git/doc/guix.texi:5404 +#: guix-git/doc/guix.texi:5422 msgid "As we saw above, Guix ensures the source code it pulls from channels comes from authorized developers. As a channel author, you need to specify the list of authorized developers in the @file{.guix-authorizations} file in the channel's Git repository. The authentication rule is simple: each commit must be signed by a key listed in the @file{.guix-authorizations} file of its parent commit(s)@footnote{Git commits form a @dfn{directed acyclic graph} (DAG). Each commit can have zero or more parents; ``regular'' commits have one parent and merge commits have two parent commits. Read @uref{https://eagain.net/articles/git-for-computer-scientists/, @i{Git for Computer Scientists}} for a great overview.} The @file{.guix-authorizations} file looks like this:" msgstr "Как мы видели выше, Guix гарантирует, что исходный код, который он получает из каналов, поступает от авторизованных разработчиков. Как автор канала, вам необходимо указать список авторизованных разработчиков в файле @file{.guix-authorizations} в репозитории Git канала. Правило аутентификации простое: каждый коммит должен быть подписан ключом, указанным в файле @file{.guix-authorizations} его родительского коммита(ов) @footnote{Git коммитит из @dfn{directed acyclic graph}(DAG). У каждого коммита может быть ноль или более родителей; ``обычные'' коммиты имеют одного родителя, а ``merge'' коммиты имеют два родительских коммита. Прочтите @uref{https://eagain.net/articles/git-for-computer-scientists/, @i{Git for Computer Scientists}}, чтобы получить больше информации.} файл @file{.guix-authorizations} выглядит так:" #. type: lisp -#: guix-git/doc/guix.texi:5407 +#: guix-git/doc/guix.texi:5425 #, no-wrap msgid "" ";; Example '.guix-authorizations' file.\n" @@ -12668,7 +12767,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:5410 +#: guix-git/doc/guix.texi:5428 #, no-wrap msgid "" "(authorizations\n" @@ -12680,7 +12779,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:5417 +#: guix-git/doc/guix.texi:5435 #, no-wrap msgid "" " ((\"AD17 A21E F8AE D8F1 CC02 DBD9 F8AE D8F1 765C 61E3\"\n" @@ -12698,33 +12797,33 @@ msgstr "" " (name \"charlie\"))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5421 +#: guix-git/doc/guix.texi:5439 msgid "Each fingerprint is followed by optional key/value pairs, as in the example above. Currently these key/value pairs are ignored." msgstr "За каждым отпечатком следуют необязательные пары ключ/значение, как в примере выше. В настоящее время эти пары ключ/значение игнорируются." #. type: Plain text -#: guix-git/doc/guix.texi:5426 +#: guix-git/doc/guix.texi:5444 msgid "This authentication rule creates a chicken-and-egg issue: how do we authenticate the first commit? Related to that: how do we deal with channels whose repository history contains unsigned commits and lack @file{.guix-authorizations}? And how do we fork existing channels?" msgstr "Это правило аутентификации создает проблему с курицей и яйцом: как мы аутентифицируем первый коммит? В связи с этим: как нам поступать с каналами, история репозитория которых содержит неподписанные коммиты и не имеет @file{.guix-authorizations}? И как нам разветвлять существующие каналы?" #. type: cindex -#: guix-git/doc/guix.texi:5427 +#: guix-git/doc/guix.texi:5445 #, no-wrap msgid "channel introduction" msgstr "введение канала" #. type: Plain text -#: guix-git/doc/guix.texi:5434 +#: guix-git/doc/guix.texi:5452 msgid "Channel introductions answer these questions by describing the first commit of a channel that should be authenticated. The first time a channel is fetched with @command{guix pull} or @command{guix time-machine}, the command looks up the introductory commit and verifies that it is signed by the specified OpenPGP key. From then on, it authenticates commits according to the rule above." msgstr "Channel introductory отвечает на данные вопросы, описывая первый коммит канала, который должен быть аутентифицирован. При первом вызове канала с помощью @command{guix pull} или @command{guix time-machine} команда ищет introductory коммит и проверяет, что он подписан указанным ключом OpenPGP. С этого момента он аутентифицирует коммиты в соответствии с приведенным выше правилом." #. type: Plain text -#: guix-git/doc/guix.texi:5441 +#: guix-git/doc/guix.texi:5459 msgid "Additionally, your channel must provide all the OpenPGP keys that were ever mentioned in @file{.guix-authorizations}, stored as @file{.key} files, which can be either binary or ``ASCII-armored''. By default, those @file{.key} files are searched for in the branch named @code{keyring} but you can specify a different branch name in @code{.guix-channel} like so:" msgstr "Кроме того, ваш канал должен предоставлять все ключи OpenPGP, которые когда-либо упоминались в @file{.guix-authorizations}, хранящиеся как файлы @file{.key}, которые могут быть либо двоичными, либо ``ASCII-armored''. По умолчанию эти файлы @file{.key} ищутся в ветке с именем @code{keyring}, но вы можете указать другое имя ветки в @code{.guix-channel} следующим образом:" #. type: lisp -#: guix-git/doc/guix.texi:5446 +#: guix-git/doc/guix.texi:5464 #, no-wrap msgid "" "(channel\n" @@ -12736,59 +12835,59 @@ msgstr "" " (keyring-reference \"my-keyring-branch\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5450 +#: guix-git/doc/guix.texi:5468 msgid "To summarize, as the author of a channel, there are three things you have to do to allow users to authenticate your code:" msgstr "Подытоживая, как автор канала, вы должны сделать три вещи, чтобы позволить другим пользователям авторизовать ваш код:" #. type: enumerate -#: guix-git/doc/guix.texi:5456 +#: guix-git/doc/guix.texi:5474 msgid "Export the OpenPGP keys of past and present committers with @command{gpg --export} and store them in @file{.key} files, by default in a branch named @code{keyring} (we recommend making it an @dfn{orphan branch})." msgstr "Экспортируйте ключи OpenPGP прошлых и нынешних коммиттеров с помощью @command{gpg --export} и сохраните их в файлах @file{.key}, по умолчанию в ветке с именем @code{keyring} (мы рекомендуем сделать это в @dfn{orphan branch})." #. type: enumerate -#: guix-git/doc/guix.texi:5461 +#: guix-git/doc/guix.texi:5479 msgid "Introduce an initial @file{.guix-authorizations} in the channel's repository. Do that in a signed commit (@pxref{Commit Access}, for information on how to sign Git commits.)" msgstr "Добавьте @file{.guix-authorizations} в репозиторий канала. Сделайте это в подписанном коммите (@pxref{Commit Access}, чтобы узнать, как подписывать коммиты Git)" #. type: enumerate -#: guix-git/doc/guix.texi:5467 +#: guix-git/doc/guix.texi:5485 msgid "Advertise the channel introduction, for instance on your channel's web page. The channel introduction, as we saw above, is the commit/key pair---i.e., the commit that introduced @file{.guix-authorizations}, and the fingerprint of the OpenPGP used to sign it." msgstr "Рекламируйте channel introduction, например, на веб-странице вашего канала. Channel introduction, как мы видели выше, - это пара коммит/ключ, то есть коммит, который представляет @file{.guix-authorizations}, и отпечаток OpenPGP, использованный для его подписи." #. type: Plain text -#: guix-git/doc/guix.texi:5472 +#: guix-git/doc/guix.texi:5490 msgid "Before pushing to your public Git repository, you can run @command{guix git-authenticate} to verify that you did sign all the commits you are about to push with an authorized key:" msgstr "Перед отправкой в ваш общедоступный репозиторий Git вы можете запустить @command{guix git-authenticate}, чтобы убедиться, что вы подписали все коммиты, которые собираетесь отправить, авторизованным ключом:" #. type: example -#: guix-git/doc/guix.texi:5475 +#: guix-git/doc/guix.texi:5493 #, no-wrap msgid "guix git authenticate @var{commit} @var{signer}\n" msgstr "guix git authenticate @var{commit} @var{signer}\n" #. type: Plain text -#: guix-git/doc/guix.texi:5480 +#: guix-git/doc/guix.texi:5498 msgid "where @var{commit} and @var{signer} are your channel introduction. @xref{Invoking guix git authenticate}, for details." msgstr "где @var{commit} и @var{signer} являются вашим channel introduction. @xref{Invoking guix git authenticate}, подробнее." #. type: Plain text -#: guix-git/doc/guix.texi:5487 +#: guix-git/doc/guix.texi:5505 msgid "Publishing a signed channel requires discipline: any mistake, such as an unsigned commit or a commit signed by an unauthorized key, will prevent users from pulling from your channel---well, that's the whole point of authentication! Pay attention to merges in particular: merge commits are considered authentic if and only if they are signed by a key present in the @file{.guix-authorizations} file of @emph{both} branches." msgstr "Публикация подписанного канала требует дисциплины: любая ошибка, такая как неподписанная фиксация или фиксация, подписанная неавторизованным ключом, не позволит пользователям pull'ить с вашего канала - в этом весь смысл аутентификации! Обратите внимание на merge, в частности: merge коммиты считаются аутентичными, если и только если они подписаны ключом, присутствующим в файле @file{.guix-authorizations} @emph{обоих} веток." #. type: cindex -#: guix-git/doc/guix.texi:5491 +#: guix-git/doc/guix.texi:5509 #, no-wrap msgid "primary URL, channels" msgstr "основной URL, каналы" #. type: Plain text -#: guix-git/doc/guix.texi:5494 +#: guix-git/doc/guix.texi:5512 msgid "Channel authors can indicate the primary URL of their channel's Git repository in the @file{.guix-channel} file, like so:" msgstr "Авторы каналов могут указать основной URL-адрес репозитория Git своего канала в файле @file{.guix-channel}, например:" #. type: lisp -#: guix-git/doc/guix.texi:5499 +#: guix-git/doc/guix.texi:5517 #, no-wrap msgid "" "(channel\n" @@ -12800,38 +12899,38 @@ msgstr "" " (url \"https://example.org/guix.git\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5506 +#: guix-git/doc/guix.texi:5524 msgid "This allows @command{guix pull} to determine whether it is pulling code from a mirror of the channel; when that is the case, it warns the user that the mirror might be stale and displays the primary URL@. That way, users cannot be tricked into fetching code from a stale mirror that does not receive security updates." msgstr "Это позволяет @command{guix pull} определять, pull'ит ли он код из зеркала канала; в этом случае он предупреждает пользователя о том, что зеркало может быть устаревшим, и отображает основной URL-адрес. Таким образом, пользователей нельзя обмануть, заставив их получить код с устаревшего зеркала, которое не получает обновлений безопасности." #. type: Plain text -#: guix-git/doc/guix.texi:5510 +#: guix-git/doc/guix.texi:5528 msgid "This feature only makes sense for authenticated repositories, such as the official @code{guix} channel, for which @command{guix pull} ensures the code it fetches is authentic." msgstr "Эта функция имеет смысл только для аутентифицированных репозиториев, таких как официальный канал @code{guix}, для которого @command{guix pull} гарантирует, что полученный код аутентичен." #. type: cindex -#: guix-git/doc/guix.texi:5514 +#: guix-git/doc/guix.texi:5532 #, no-wrap msgid "news, for channels" msgstr "новости, для каналов" #. type: Plain text -#: guix-git/doc/guix.texi:5518 +#: guix-git/doc/guix.texi:5536 msgid "Channel authors may occasionally want to communicate to their users information about important changes in the channel. You'd send them all an email, but that's not convenient." msgstr "Авторы канала могут захотеть сообщить своим пользователям информацию о важных изменениях в канале. Вы можете отправить им письмо по электронной почте, но это не удобно." #. type: Plain text -#: guix-git/doc/guix.texi:5523 +#: guix-git/doc/guix.texi:5541 msgid "Instead, channels can provide a @dfn{news file}; when the channel users run @command{guix pull}, that news file is automatically read and @command{guix pull --news} can display the announcements that correspond to the new commits that have been pulled, if any." msgstr "Вместо этого каналы могут предоставлять @dfn{файл новостей}; когда пользователи канала запускают @command{guix pull}, этот файл новостей автоматически читается, и @command{guix pull --news} может отображать объявления, которые соответствуют новым зафиксированным коммитам, если таковые имеются." #. type: Plain text -#: guix-git/doc/guix.texi:5526 +#: guix-git/doc/guix.texi:5544 msgid "To do that, channel authors must first declare the name of the news file in their @file{.guix-channel} file:" msgstr "Для этого авторы каналов должны сначала объявить имя файла новостей в своем файле @file{.guix-channel}:" #. type: lisp -#: guix-git/doc/guix.texi:5531 +#: guix-git/doc/guix.texi:5549 #, no-wrap msgid "" "(channel\n" @@ -12843,12 +12942,12 @@ msgstr "" " (news-file \"etc/news.txt\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5535 +#: guix-git/doc/guix.texi:5553 msgid "The news file itself, @file{etc/news.txt} in this example, must look something like this:" msgstr "Сам файл новостей, @file{etc/news.txt} в этом примере, должен выглядеть примерно так:" #. type: lisp -#: guix-git/doc/guix.texi:5548 +#: guix-git/doc/guix.texi:5566 #, no-wrap msgid "" "(channel-news\n" @@ -12876,168 +12975,168 @@ msgstr "" " (body (en \"Don't miss the @@code@{hello@} package!\"))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:5555 +#: guix-git/doc/guix.texi:5573 msgid "While the news file is using the Scheme syntax, avoid naming it with a @file{.scm} extension or else it will get picked up when building the channel and yield an error since it is not a valid module. Alternatively, you can move the channel module to a subdirectory and store the news file in another directory." msgstr "В то время как файл новостей использует синтаксис Scheme, избегайте называть его расширением @file{.scm}, иначе он будет выбран при построении канала и выдаст ошибку, поскольку это недопустимый модуль. Кроме того, вы можете переместить модуль канала в подкаталог и сохранить файл новостей в другом каталоге." #. type: Plain text -#: guix-git/doc/guix.texi:5560 +#: guix-git/doc/guix.texi:5578 msgid "The file consists of a list of @dfn{news entries}. Each entry is associated with a commit or tag: it describes changes made in this commit, possibly in preceding commits as well. Users see entries only the first time they obtain the commit the entry refers to." msgstr "Файл состоит из списка @dfn{news entries}. Каждая запись связана с коммитом или тегом: она описывает изменения, сделанные в этом коммите, возможно, также и в предыдущих коммитах. Пользователи видят записи только при первом получении коммита, на который ссылается запись." #. type: Plain text -#: guix-git/doc/guix.texi:5566 +#: guix-git/doc/guix.texi:5584 msgid "The @code{title} field should be a one-line summary while @code{body} can be arbitrarily long, and both can contain Texinfo markup (@pxref{Overview,,, texinfo, GNU Texinfo}). Both the title and body are a list of language tag/message tuples, which allows @command{guix pull} to display news in the language that corresponds to the user's locale." msgstr "Поле @code{title} должно быть однострочным, а @code{body} может быть произвольно длинным, и оба могут содержать Texinfo разметку (@pxref{Overview,,, texinfo, GNU Texinfo}). И заголовок, и тело являются списком языковых тегов/кортежей сообщений, что позволяет комманде @command{guix pull} отображать новости на языке, соответствующем языку пользователя." #. type: Plain text -#: guix-git/doc/guix.texi:5572 +#: guix-git/doc/guix.texi:5590 msgid "If you want to translate news using a gettext-based workflow, you can extract translatable strings with @command{xgettext} (@pxref{xgettext Invocation,,, gettext, GNU Gettext Utilities}). For example, assuming you write news entries in English first, the command below creates a PO file containing the strings to translate:" msgstr "Если вы хотите перевести новости, используя рабочий процесс на основе gettext, вы можете извлечь переводимые строки с помощью @command{xgettext} (@pxref{xgettext Invocation,,, gettext, GNU Gettext Utilities}). Например, если вы сначала пишете новости на английском языке, команда ниже создает PO-файл, содержащий строки для перевода:" #. type: example -#: guix-git/doc/guix.texi:5575 +#: guix-git/doc/guix.texi:5593 #, no-wrap msgid "xgettext -o news.po -l scheme -ken etc/news.txt\n" msgstr "xgettext -o news.po -l scheme -ken etc/news.txt\n" #. type: Plain text -#: guix-git/doc/guix.texi:5579 +#: guix-git/doc/guix.texi:5597 msgid "To sum up, yes, you could use your channel as a blog. But beware, this is @emph{not quite} what your users might expect." msgstr "Подводя итог, да, вы можете использовать свой канал в качестве блога. Но будьте осторожны, это @emph{не совсем} то, что могут ожидать ваши пользователи." #. type: cindex -#: guix-git/doc/guix.texi:5584 +#: guix-git/doc/guix.texi:5602 #, no-wrap msgid "software development" msgstr "разработка программного обеспечения" #. type: Plain text -#: guix-git/doc/guix.texi:5588 +#: guix-git/doc/guix.texi:5606 msgid "If you are a software developer, Guix provides tools that you should find helpful---independently of the language you're developing in. This is what this chapter is about." msgstr "Если вы являетесь разработчиком программного обеспечения, Guix предоставляет инструменты, которые вы можете найти полезными, независимо от языка разработки. Об этом данный раздел." #. type: Plain text -#: guix-git/doc/guix.texi:5594 +#: guix-git/doc/guix.texi:5612 #, fuzzy #| msgid "The @command{guix environment} command provides a convenient way to set up @dfn{development environments} containing all the dependencies and tools necessary to work on the software package of your choice. The @command{guix pack} command allows you to create @dfn{application bundles} that can be easily distributed to users who do not run Guix." msgid "The @command{guix shell} command provides a convenient way to set up one-off software environments, be it for development purposes or to run a command without installing it in your profile. The @command{guix pack} command allows you to create @dfn{application bundles} that can be easily distributed to users who do not run Guix." msgstr "Команда @command{guix environment} предоставляет удобный способ установить @dfn{окружение разработки} на ваш выбор, содержащее все зависимости и инструменты, необходимые для работы с пакетом программы. Команда @command{guix pack} позволяет создавать @dfn{наборы приложений}, которые могут легко распространяться для пользователей, которые не используют Guix." #. type: section -#: guix-git/doc/guix.texi:5604 +#: guix-git/doc/guix.texi:5622 #, no-wrap msgid "Invoking @command{guix shell}" msgstr "Вызов @command{guix shell}" #. type: cindex -#: guix-git/doc/guix.texi:5606 +#: guix-git/doc/guix.texi:5624 #, no-wrap msgid "reproducible build environments" msgstr "воспроизводимые окружения сборки" #. type: cindex -#: guix-git/doc/guix.texi:5607 +#: guix-git/doc/guix.texi:5625 #, no-wrap msgid "development environments" msgstr "окружения разработки" #. type: command{#1} -#: guix-git/doc/guix.texi:5608 +#: guix-git/doc/guix.texi:5626 #, no-wrap msgid "guix environment" msgstr "guix environment" #. type: cindex -#: guix-git/doc/guix.texi:5609 +#: guix-git/doc/guix.texi:5627 #, no-wrap msgid "environment, package build environment" msgstr "окружение сборки пакета" #. type: Plain text -#: guix-git/doc/guix.texi:5614 +#: guix-git/doc/guix.texi:5632 msgid "The purpose of @command{guix shell} is to make it easy to create one-off software environments, without changing one's profile. It is typically used to create development environments; it is also a convenient way to run applications without ``polluting'' your profile." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5620 +#: guix-git/doc/guix.texi:5638 msgid "The @command{guix shell} command was recently introduced to supersede @command{guix environment} (@pxref{Invoking guix environment}). If you are familiar with @command{guix environment}, you will notice that it is similar but also---we hope!---more convenient." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5626 +#: guix-git/doc/guix.texi:5644 #, no-wrap msgid "guix shell [@var{options}] [@var{package}@dots{}]\n" msgstr "guix shell [@var{options}] [@var{package}@dots{}]\n" #. type: Plain text -#: guix-git/doc/guix.texi:5631 +#: guix-git/doc/guix.texi:5649 msgid "The following example creates an environment containing Python and NumPy, building or downloading any missing package, and runs the @command{python3} command in that environment:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5634 +#: guix-git/doc/guix.texi:5652 #, no-wrap msgid "guix shell python python-numpy -- python3\n" msgstr "guix shell python python-numpy -- python3\n" #. type: Plain text -#: guix-git/doc/guix.texi:5639 +#: guix-git/doc/guix.texi:5657 msgid "Development environments can be created as in the example below, which spawns an interactive shell containing all the dependencies and environment variables needed to work on Inkscape:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5642 +#: guix-git/doc/guix.texi:5660 #, no-wrap msgid "guix shell --development inkscape\n" msgstr "guix shell --development inkscape\n" #. type: Plain text -#: guix-git/doc/guix.texi:5648 +#: guix-git/doc/guix.texi:5666 #, fuzzy #| msgid "Exiting from a Guix environment is the same as exiting from the shell, and will place the user back in the old environment before @command{guix environment} was invoked. The next garbage collection (@pxref{Invoking guix gc}) will clean up packages that were installed from within the environment and are no longer used outside of it." msgid "Exiting the shell places the user back in the original environment before @command{guix shell} was invoked. The next garbage collection (@pxref{Invoking guix gc}) may clean up packages that were installed in the environment and that are no longer used outside of it." msgstr "Выход из окружения Guix аналогичен выходу из оболочки и возвращает пользователя в старое окружение до вызова @command{guix environment}. Следующая сборка мусора (@pxref{Invoking guix gc}) очистит пакеты, которые были установлены в окружении и больше не используются за ее пределами." #. type: Plain text -#: guix-git/doc/guix.texi:5655 +#: guix-git/doc/guix.texi:5673 msgid "As an added convenience, when running from a directory that contains a @file{manifest.scm} or a @file{guix.scm} file (in this order), possibly in a parent directory, @command{guix shell} automatically loads the file---provided the directory is listed in @file{~/.config/guix/shell-authorized-directories}, and only for interactive use:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5658 +#: guix-git/doc/guix.texi:5676 #, no-wrap msgid "guix shell\n" msgstr "guix shell\n" #. type: Plain text -#: guix-git/doc/guix.texi:5662 +#: guix-git/doc/guix.texi:5680 msgid "This provides an easy way to define, share, and enter development environments." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5673 +#: guix-git/doc/guix.texi:5691 msgid "By default, the shell session or command runs in an @emph{augmented} environment, where the new packages are added to search path environment variables such as @code{PATH}. You can, instead, choose to create an @emph{isolated} environment containing nothing but the packages you asked for. Passing the @option{--pure} option clears environment variable definitions found in the parent environment@footnote{Be sure to use the @option{--check} option the first time you use @command{guix shell} interactively to make sure the shell does not undo the effect of @option{--pure}.}; passing @option{--container} goes one step further by spawning a @dfn{container} isolated from the rest of the system:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5676 +#: guix-git/doc/guix.texi:5694 #, no-wrap msgid "guix shell --container emacs gcc-toolchain\n" msgstr "guix shell --container emacs gcc-toolchain\n" #. type: Plain text -#: guix-git/doc/guix.texi:5684 +#: guix-git/doc/guix.texi:5702 msgid "The command above spawns an interactive shell in a container where nothing but @code{emacs}, @code{gcc-toolchain}, and their dependencies is available. The container lacks network access and shares no files other than the current working directory with the surrounding environment. This is useful to prevent access to system-wide resources such as @file{/usr/bin} on foreign distros." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5691 +#: guix-git/doc/guix.texi:5709 msgid "This @option{--container} option can also prove useful if you wish to run a security-sensitive application, such as a web browser, in an isolated environment. For example, the command below launches Ungoogled-Chromium in an isolated environment, this time sharing network access with the host and preserving its @code{DISPLAY} environment variable, but without even sharing the current directory:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5695 +#: guix-git/doc/guix.texi:5713 #, no-wrap msgid "" "guix shell --container --network --no-cwd ungoogled-chromium \\\n" @@ -13047,18 +13146,18 @@ msgstr "" " --preserve='^DISPLAY$' -- chromium\n" #. type: vindex -#: guix-git/doc/guix.texi:5697 guix-git/doc/guix.texi:6008 +#: guix-git/doc/guix.texi:5715 guix-git/doc/guix.texi:6045 #, no-wrap msgid "GUIX_ENVIRONMENT" msgstr "GUIX_ENVIRONMENT" #. type: Plain text -#: guix-git/doc/guix.texi:5703 +#: guix-git/doc/guix.texi:5721 msgid "@command{guix shell} defines the @env{GUIX_ENVIRONMENT} variable in the shell it spawns; its value is the file name of the profile of this environment. This allows users to, say, define a specific prompt for development environments in their @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):" msgstr "@command{guix shell} определяет переменную @code{GUIX_ENVIRONMENT} в оболочке, которую создаёт; её значением является имя файла профиля этого окружения. Это позволяет пользователям, скажем, определить специфичные значения окружений разработки в @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):" #. type: example -#: guix-git/doc/guix.texi:5709 guix-git/doc/guix.texi:6020 +#: guix-git/doc/guix.texi:5727 guix-git/doc/guix.texi:6057 #, no-wrap msgid "" "if [ -n \"$GUIX_ENVIRONMENT\" ]\n" @@ -13072,216 +13171,207 @@ msgstr "" "fi\n" #. type: Plain text -#: guix-git/doc/guix.texi:5713 guix-git/doc/guix.texi:6024 +#: guix-git/doc/guix.texi:5731 guix-git/doc/guix.texi:6061 msgid "...@: or to browse the profile:" msgstr "...@: или просмотеть профиль:" #. type: example -#: guix-git/doc/guix.texi:5716 guix-git/doc/guix.texi:6027 +#: guix-git/doc/guix.texi:5734 guix-git/doc/guix.texi:6064 #, no-wrap msgid "$ ls \"$GUIX_ENVIRONMENT/bin\"\n" msgstr "$ ls \"$GUIX_ENVIRONMENT/bin\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:5719 guix-git/doc/guix.texi:6103 +#: guix-git/doc/guix.texi:5737 guix-git/doc/guix.texi:6140 msgid "The available options are summarized below." msgstr "Доступные опции резюмированы ниже." #. type: item -#: guix-git/doc/guix.texi:5721 guix-git/doc/guix.texi:6105 -#: guix-git/doc/guix.texi:11546 +#: guix-git/doc/guix.texi:5739 guix-git/doc/guix.texi:6142 +#: guix-git/doc/guix.texi:11860 #, no-wrap msgid "--check" msgstr "--check" #. type: table -#: guix-git/doc/guix.texi:5726 +#: guix-git/doc/guix.texi:5744 msgid "Set up the environment and check whether the shell would clobber environment variables. It's a good idea to use this option the first time you run @command{guix shell} for an interactive session to make sure your setup is correct." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5730 +#: guix-git/doc/guix.texi:5748 msgid "For example, if the shell modifies the @env{PATH} environment variable, report it since you would get a different environment than what you asked for." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5738 +#: guix-git/doc/guix.texi:5756 msgid "Such problems usually indicate that the shell startup files are unexpectedly modifying those environment variables. For example, if you are using Bash, make sure that environment variables are set or modified in @file{~/.bash_profile} and @emph{not} in @file{~/.bashrc}---the former is sourced only by log-in shells. @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for details on Bash start-up files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5739 +#: guix-git/doc/guix.texi:5757 #, fuzzy, no-wrap #| msgid "Development" msgid "--development" msgstr "Разработка" #. type: table -#: guix-git/doc/guix.texi:5746 +#: guix-git/doc/guix.texi:5764 msgid "Cause @command{guix shell} to include in the environment the dependencies of the following package rather than the package itself. This can be combined with other packages. For instance, the command below starts an interactive shell containing the build-time dependencies of GNU@tie{}Guile, plus Autoconf, Automake, and Libtool:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5749 +#: guix-git/doc/guix.texi:5767 #, no-wrap msgid "guix shell -D guile autoconf automake libtool\n" msgstr "guix shell -D guile autoconf automake libtool\n" #. type: item -#: guix-git/doc/guix.texi:5751 guix-git/doc/guix.texi:6126 -#: guix-git/doc/guix.texi:6607 guix-git/doc/guix.texi:11421 -#: guix-git/doc/guix.texi:12494 guix-git/doc/guix.texi:12845 -#: guix-git/doc/guix.texi:13442 guix-git/doc/guix.texi:35243 -#: guix-git/doc/guix.texi:37713 +#: guix-git/doc/guix.texi:5769 guix-git/doc/guix.texi:6163 +#: guix-git/doc/guix.texi:6650 guix-git/doc/guix.texi:11735 +#: guix-git/doc/guix.texi:12809 guix-git/doc/guix.texi:13201 +#: guix-git/doc/guix.texi:13799 guix-git/doc/guix.texi:35687 +#: guix-git/doc/guix.texi:38192 #, no-wrap msgid "--expression=@var{expr}" msgstr "--expression=@var{expr}" #. type: itemx -#: guix-git/doc/guix.texi:5752 guix-git/doc/guix.texi:6127 -#: guix-git/doc/guix.texi:6608 guix-git/doc/guix.texi:11422 -#: guix-git/doc/guix.texi:12495 guix-git/doc/guix.texi:12846 -#: guix-git/doc/guix.texi:13443 guix-git/doc/guix.texi:35244 -#: guix-git/doc/guix.texi:37714 +#: guix-git/doc/guix.texi:5770 guix-git/doc/guix.texi:6164 +#: guix-git/doc/guix.texi:6651 guix-git/doc/guix.texi:11736 +#: guix-git/doc/guix.texi:12810 guix-git/doc/guix.texi:13202 +#: guix-git/doc/guix.texi:13800 guix-git/doc/guix.texi:35688 +#: guix-git/doc/guix.texi:38193 #, no-wrap msgid "-e @var{expr}" msgstr "-e @var{expr}" #. type: table -#: guix-git/doc/guix.texi:5755 guix-git/doc/guix.texi:6130 +#: guix-git/doc/guix.texi:5773 guix-git/doc/guix.texi:6167 msgid "Create an environment for the package or list of packages that @var{expr} evaluates to." msgstr "Создать окружение для пакета или списка пакетов, которые соответствуют выражению @var{expr}." #. type: table -#: guix-git/doc/guix.texi:5757 guix-git/doc/guix.texi:6132 -#: guix-git/doc/guix.texi:12850 +#: guix-git/doc/guix.texi:5775 guix-git/doc/guix.texi:6169 +#: guix-git/doc/guix.texi:13206 msgid "For example, running:" msgstr "Например, запуск:" #. type: example -#: guix-git/doc/guix.texi:5760 +#: guix-git/doc/guix.texi:5778 #, no-wrap msgid "guix shell -D -e '(@@ (gnu packages maths) petsc-openmpi)'\n" msgstr "guix shell -D -e '(@@ (gnu packages maths) petsc-openmpi)'\n" #. type: table -#: guix-git/doc/guix.texi:5764 guix-git/doc/guix.texi:6139 +#: guix-git/doc/guix.texi:5782 guix-git/doc/guix.texi:6176 msgid "starts a shell with the environment for this specific variant of the PETSc package." msgstr "запускает оболочку с окружением для этого специфического варианта пакета PETSc." #. type: table -#: guix-git/doc/guix.texi:5766 guix-git/doc/guix.texi:6141 +#: guix-git/doc/guix.texi:5784 guix-git/doc/guix.texi:6178 msgid "Running:" msgstr "Запуск:" #. type: example -#: guix-git/doc/guix.texi:5769 +#: guix-git/doc/guix.texi:5787 #, no-wrap msgid "guix shell -e '(@@ (gnu) %base-packages)'\n" msgstr "guix shell -e '(@@ (gnu) %base-packages)'\n" #. type: table -#: guix-git/doc/guix.texi:5772 guix-git/doc/guix.texi:6147 +#: guix-git/doc/guix.texi:5790 guix-git/doc/guix.texi:6184 msgid "starts a shell with all the base system packages available." msgstr "стартует оболочку со всеми доступными базовыми пакетами." #. type: table -#: guix-git/doc/guix.texi:5775 guix-git/doc/guix.texi:6150 +#: guix-git/doc/guix.texi:5793 guix-git/doc/guix.texi:6187 msgid "The above commands only use the default output of the given packages. To select other outputs, two element tuples can be specified:" msgstr "Команды выше используют только выход по умолчанию обозначенных пакетов. Чтобы выбрать другие выходы, можно указать два элемента кортежей:" #. type: example -#: guix-git/doc/guix.texi:5778 +#: guix-git/doc/guix.texi:5796 #, no-wrap msgid "guix shell -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" msgstr "guix shell -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" #. type: item -#: guix-git/doc/guix.texi:5780 guix-git/doc/guix.texi:11395 +#: guix-git/doc/guix.texi:5798 guix-git/doc/guix.texi:11709 #, no-wrap msgid "--file=@var{file}" msgstr "--file=@var{file}" #. type: table -#: guix-git/doc/guix.texi:5784 +#: guix-git/doc/guix.texi:5802 #, fuzzy #| msgid "Create an environment for the package or list of packages that the code within @var{file} evaluates to." msgid "Create an environment containing the package or list of packages that the code within @var{file} evaluates to." msgstr "Создать окружение для пакета или списка пакетов, код которых задан в файле @var{file}." #. type: lisp -#: guix-git/doc/guix.texi:5790 guix-git/doc/guix.texi:6165 +#: guix-git/doc/guix.texi:5808 guix-git/doc/guix.texi:6202 #, no-wrap msgid "@verbatiminclude environment-gdb.scm\n" msgstr "@verbatiminclude environment-gdb.scm\n" #. type: table -#: guix-git/doc/guix.texi:5794 +#: guix-git/doc/guix.texi:5812 msgid "With the file above, you can enter a development environment for GDB by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5797 +#: guix-git/doc/guix.texi:5815 #, no-wrap msgid "guix shell -D -f gdb-devel.scm\n" msgstr "guix shell -D -f gdb-devel.scm\n" #. type: table -#: guix-git/doc/guix.texi:5804 guix-git/doc/guix.texi:6172 +#: guix-git/doc/guix.texi:5822 guix-git/doc/guix.texi:6209 msgid "Create an environment for the packages contained in the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "Создать окружение для пакетов, содержащихся в объекте манифеста, возвращаемого кодом Scheme в файле @var{file}." #. type: table -#: guix-git/doc/guix.texi:5808 guix-git/doc/guix.texi:6176 +#: guix-git/doc/guix.texi:5826 guix-git/doc/guix.texi:6213 msgid "This is similar to the same-named option in @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) and uses the same manifest files." msgstr "Это то же, что опция с таким же именем в @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) и использует такие же файлы манифестов." -#. type: item -#: guix-git/doc/guix.texi:5809 -#, no-wrap -msgid "--rebuild-cache" -msgstr "--rebuild-cache" - -#. type: table -#: guix-git/doc/guix.texi:5814 -msgid "When using @option{--manifest}, @option{--file}, or when invoked without arguments, @command{guix shell} caches the environment so that subsequent uses are instantaneous. The cache is invalidated anytime the file is modified." -msgstr "" - #. type: table -#: guix-git/doc/guix.texi:5819 -msgid "The @option{--rebuild-cache} forces the cached environment to be refreshed even if the file has not changed. This is useful if the @command{guix.scm} or @command{manifest.scm} has external dependencies, or if its behavior depends, say, on environment variables." -msgstr "" +#: guix-git/doc/guix.texi:5832 guix-git/doc/guix.texi:6245 +#, fuzzy +#| msgid "You can also use @command{guix package} (@pxref{Invoking guix package}) to manage the profile by naming it explicitly:" +msgid "Create an environment containing the packages installed in @var{profile}. Use @command{guix package} (@pxref{Invoking guix package}) to create and manage profiles." +msgstr "Вы также можете использовать @command{guix package} (@pxref{Invoking guix package}), чтобы управлять профилем, называя его явно:" #. type: item -#: guix-git/doc/guix.texi:5820 guix-git/doc/guix.texi:6203 +#: guix-git/doc/guix.texi:5833 guix-git/doc/guix.texi:6246 #, no-wrap msgid "--pure" msgstr "--pure" #. type: table -#: guix-git/doc/guix.texi:5824 guix-git/doc/guix.texi:6207 +#: guix-git/doc/guix.texi:5837 guix-git/doc/guix.texi:6250 msgid "Unset existing environment variables when building the new environment, except those specified with @option{--preserve} (see below). This has the effect of creating an environment in which search paths only contain package inputs." msgstr "Сброс существующих переменных окружения при сборке нового окружения, кроме обозначенных в опции @option{--preserve} (смотрите ниже). Эффект этой опции --- создание окружения, в котором пути поиска содержат только входные данные пакета." #. type: item -#: guix-git/doc/guix.texi:5825 guix-git/doc/guix.texi:6208 +#: guix-git/doc/guix.texi:5838 guix-git/doc/guix.texi:6251 #, no-wrap msgid "--preserve=@var{regexp}" msgstr "--preserve=@var{regexp}" #. type: itemx -#: guix-git/doc/guix.texi:5826 guix-git/doc/guix.texi:6209 +#: guix-git/doc/guix.texi:5839 guix-git/doc/guix.texi:6252 #, no-wrap msgid "-E @var{regexp}" msgstr "-E @var{regexp}" #. type: table -#: guix-git/doc/guix.texi:5831 guix-git/doc/guix.texi:6214 +#: guix-git/doc/guix.texi:5844 guix-git/doc/guix.texi:6257 msgid "When used alongside @option{--pure}, preserve the environment variables matching @var{regexp}---in other words, put them on a ``white list'' of environment variables that must be preserved. This option can be repeated several times." msgstr "При использовании вместе с @option{--pure}, оставить содержимое переменных окружения, соответствующих выражению @var{regexp} --- другими словами, включить их в \"белый список\" переменных окружения, которые не должны обнуляться. Эту опцию можно повторять несколько раз." #. type: example -#: guix-git/doc/guix.texi:5835 +#: guix-git/doc/guix.texi:5848 #, no-wrap msgid "" "guix shell --pure --preserve=^SLURM openmpi @dots{} \\\n" @@ -13291,116 +13381,116 @@ msgstr "" " -- mpirun @dots{}\n" #. type: table -#: guix-git/doc/guix.texi:5841 guix-git/doc/guix.texi:6224 +#: guix-git/doc/guix.texi:5854 guix-git/doc/guix.texi:6267 msgid "This example runs @command{mpirun} in a context where the only environment variables defined are @env{PATH}, environment variables whose name starts with @samp{SLURM}, as well as the usual ``precious'' variables (@env{HOME}, @env{USER}, etc.)." msgstr "Этот пример запускает @command{mpirun} в контексте, в котором определены только следующие переменные окружения: @env{PATH}, переменные окружения, чьи имена начинаются с @samp{SLURM}, а также обычные \"дорогие\" переменные (@env{HOME}, @env{USER}, и т.д.)." #. type: item -#: guix-git/doc/guix.texi:5842 guix-git/doc/guix.texi:6225 +#: guix-git/doc/guix.texi:5855 guix-git/doc/guix.texi:6268 #, no-wrap msgid "--search-paths" msgstr "--search-paths" #. type: table -#: guix-git/doc/guix.texi:5845 guix-git/doc/guix.texi:6228 +#: guix-git/doc/guix.texi:5858 guix-git/doc/guix.texi:6271 msgid "Display the environment variable definitions that make up the environment." msgstr "Отобразить определения переменных окружения, которые составляют окружение." #. type: table -#: guix-git/doc/guix.texi:5849 guix-git/doc/guix.texi:6232 +#: guix-git/doc/guix.texi:5862 guix-git/doc/guix.texi:6275 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}." msgstr "Попытаться собрать систему @var{system}, то есть @code{i686-linux}." #. type: item -#: guix-git/doc/guix.texi:5850 guix-git/doc/guix.texi:6233 +#: guix-git/doc/guix.texi:5863 guix-git/doc/guix.texi:6276 #, no-wrap msgid "--container" msgstr "--container" #. type: itemx -#: guix-git/doc/guix.texi:5851 guix-git/doc/guix.texi:6234 +#: guix-git/doc/guix.texi:5864 guix-git/doc/guix.texi:6277 #, no-wrap msgid "-C" msgstr "-C" #. type: item -#: guix-git/doc/guix.texi:5852 guix-git/doc/guix.texi:6069 -#: guix-git/doc/guix.texi:6235 guix-git/doc/guix.texi:13998 -#: guix-git/doc/guix.texi:35211 +#: guix-git/doc/guix.texi:5865 guix-git/doc/guix.texi:6106 +#: guix-git/doc/guix.texi:6278 guix-git/doc/guix.texi:14355 +#: guix-git/doc/guix.texi:35655 #, no-wrap msgid "container" msgstr "контейнер" #. type: table -#: guix-git/doc/guix.texi:5858 guix-git/doc/guix.texi:6241 +#: guix-git/doc/guix.texi:5871 guix-git/doc/guix.texi:6284 msgid "Run @var{command} within an isolated container. The current working directory outside the container is mapped inside the container. Additionally, unless overridden with @option{--user}, a dummy home directory is created that matches the current user's home directory, and @file{/etc/passwd} is configured accordingly." msgstr "Запустить @var{command} в изолированном контейнере. Текущая рабочая директория за пределами контейнера отображается внутри контейнера. В дополнение, если это не переопределено опцией @code{--user}, тогда настраивается фиктивная домашняя директория, которая совпадает с домашней директорией текущего пользователя, а также соответствующий файл @file{/etc/passwd}." #. type: table -#: guix-git/doc/guix.texi:5862 guix-git/doc/guix.texi:6245 +#: guix-git/doc/guix.texi:5875 guix-git/doc/guix.texi:6288 msgid "The spawned process runs as the current user outside the container. Inside the container, it has the same UID and GID as the current user, unless @option{--user} is passed (see below)." msgstr "Порождаемый процесс снаружи предстаёт как запущенный от текущего пользователя. Внутри контейнера он имеет такие же UID и GID, что и текущий пользователь, если не обозначена @option{--user} (смотрите ниже)." #. type: item -#: guix-git/doc/guix.texi:5863 guix-git/doc/guix.texi:6246 -#: guix-git/doc/guix.texi:35303 +#: guix-git/doc/guix.texi:5876 guix-git/doc/guix.texi:6289 +#: guix-git/doc/guix.texi:35747 #, no-wrap msgid "--network" msgstr "--network" #. type: table -#: guix-git/doc/guix.texi:5868 guix-git/doc/guix.texi:6251 +#: guix-git/doc/guix.texi:5881 guix-git/doc/guix.texi:6294 msgid "For containers, share the network namespace with the host system. Containers created without this flag only have access to the loopback device." msgstr "Разделять пространство сетевых имён контейнера с хостящей системой. Контейнеры, созданные без этого флага, могут только иметь доступ к петлевому устройству." #. type: item -#: guix-git/doc/guix.texi:5869 guix-git/doc/guix.texi:6252 +#: guix-git/doc/guix.texi:5882 guix-git/doc/guix.texi:6295 #, no-wrap msgid "--link-profile" msgstr "--link-profile" #. type: itemx -#: guix-git/doc/guix.texi:5870 guix-git/doc/guix.texi:6253 +#: guix-git/doc/guix.texi:5883 guix-git/doc/guix.texi:6296 #, no-wrap msgid "-P" msgstr "-P" #. type: table -#: guix-git/doc/guix.texi:5878 +#: guix-git/doc/guix.texi:5891 msgid "For containers, link the environment profile to @file{~/.guix-profile} within the container and set @code{GUIX_ENVIRONMENT} to that. This is equivalent to making @file{~/.guix-profile} a symlink to the actual profile within the container. Linking will fail and abort the environment if the directory already exists, which will certainly be the case if @command{guix shell} was invoked in the user's home directory." msgstr "Связать профиль окружения контейнера с @file{~/.guix-profile} внутри контейнера. Это эквивалент запуска команды @command{ln -s $GUIX_ENVIRONMENT ~/.guix-profile} внутри контейнера. Связывание завершится ошибкой и отменит создание окружения, если директория уже существует, что, конечно, будет происходить, если @command{guix shell} вызвана в домашней директории пользователя." #. type: table -#: guix-git/doc/guix.texi:5884 guix-git/doc/guix.texi:6267 +#: guix-git/doc/guix.texi:5897 guix-git/doc/guix.texi:6310 msgid "Certain packages are configured to look in @file{~/.guix-profile} for configuration files and data;@footnote{For example, the @code{fontconfig} package inspects @file{~/.guix-profile/share/fonts} for additional fonts.} @option{--link-profile} allows these programs to behave as expected within the environment." msgstr "Определённые пакеты сконфигурированы, чтобы смотреть конфигурационные файлы и данные в @code{~/.guix-profile};@footnote{Например, пакет @code{fontconfig} просматривает @file{~/.guix-profile/share/fonts} для дополнительных шрифтов.} @code{--link-profile} позволяет этим программам вести себя ожидаемо внутри окружения." #. type: item -#: guix-git/doc/guix.texi:5885 guix-git/doc/guix.texi:6268 -#: guix-git/doc/guix.texi:13575 +#: guix-git/doc/guix.texi:5898 guix-git/doc/guix.texi:6311 +#: guix-git/doc/guix.texi:13932 #, no-wrap msgid "--user=@var{user}" msgstr "--user=@var{user}" #. type: itemx -#: guix-git/doc/guix.texi:5886 guix-git/doc/guix.texi:6269 -#: guix-git/doc/guix.texi:13576 +#: guix-git/doc/guix.texi:5899 guix-git/doc/guix.texi:6312 +#: guix-git/doc/guix.texi:13933 #, no-wrap msgid "-u @var{user}" msgstr "-u @var{user}" #. type: table -#: guix-git/doc/guix.texi:5893 guix-git/doc/guix.texi:6276 +#: guix-git/doc/guix.texi:5906 guix-git/doc/guix.texi:6319 msgid "For containers, use the username @var{user} in place of the current user. The generated @file{/etc/passwd} entry within the container will contain the name @var{user}, the home directory will be @file{/home/@var{user}}, and no user GECOS data will be copied. Furthermore, the UID and GID inside the container are 1000. @var{user} need not exist on the system." msgstr "Использовать в контейнере имя пользователя @var{user} вместо текущего пользователя. Созданная внутри контейнера запись @file{/etc/passwd} будет содержать имя @var{user}, домашняя директория будет @file{/home/@var{user}}, но не будут копированы пользовательские данные GECOS. Более того, внутри контейнера UID и GID будут 1000. @var{user} не обязательно должен существовать в системе." #. type: table -#: guix-git/doc/guix.texi:5898 guix-git/doc/guix.texi:6281 +#: guix-git/doc/guix.texi:5911 guix-git/doc/guix.texi:6324 msgid "Additionally, any shared or exposed path (see @option{--share} and @option{--expose} respectively) whose target is within the current user's home directory will be remapped relative to @file{/home/USER}; this includes the automatic mapping of the current working directory." msgstr "В дополнение, любой разделяемый или расширяемый путь (смотрите @code{--share} и @code{--expose} соответственно), чьи цели находятся в домашней директории пользователя, будут отображены соответственно в @file{/home/USER}; это включает автоматическое отображение текущей рабочей директории." #. type: example -#: guix-git/doc/guix.texi:5905 +#: guix-git/doc/guix.texi:5918 #, no-wrap msgid "" "# will expose paths as /home/foo/wd, /home/foo/test, and /home/foo/target\n" @@ -13416,232 +13506,276 @@ msgstr "" " --expose=/tmp/target=$HOME/target\n" #. type: table -#: guix-git/doc/guix.texi:5910 guix-git/doc/guix.texi:6293 +#: guix-git/doc/guix.texi:5923 guix-git/doc/guix.texi:6336 msgid "While this will limit the leaking of user identity through home paths and each of the user fields, this is only one useful component of a broader privacy/anonymity solution---not one in and of itself." msgstr "Это ограничит утечку данных идентификации пользователя через домашние пути и каждое из полей пользователя. Это один единственный компонент расширенного решения приватности/анонимности --- ничто не войдёт, ничто не выйдет." #. type: item -#: guix-git/doc/guix.texi:5911 guix-git/doc/guix.texi:6294 +#: guix-git/doc/guix.texi:5924 guix-git/doc/guix.texi:6337 #, no-wrap msgid "--no-cwd" msgstr "--no-cwd" #. type: table -#: guix-git/doc/guix.texi:5918 guix-git/doc/guix.texi:6301 +#: guix-git/doc/guix.texi:5931 guix-git/doc/guix.texi:6344 msgid "For containers, the default behavior is to share the current working directory with the isolated container and immediately change to that directory within the container. If this is undesirable, @option{--no-cwd} will cause the current working directory to @emph{not} be automatically shared and will change to the user's home directory within the container instead. See also @option{--user}." msgstr "Для контейнеров стандартным поведением является разделение текущего рабочего каталога с изолированным контейнером и немедленное переключение на этот каталог в контейнере. Если это нежелательно, @code{--no-cwd} приведет к автоматическому доступу к текущему рабочему каталогу @emph{not}, который изменится на домашний каталог пользователя в контейнере. Смотрите также @code{--user}." #. type: item -#: guix-git/doc/guix.texi:5919 guix-git/doc/guix.texi:6302 +#: guix-git/doc/guix.texi:5932 guix-git/doc/guix.texi:6345 #, no-wrap msgid "--expose=@var{source}[=@var{target}]" msgstr "--expose=@var{source}[=@var{target}]" #. type: itemx -#: guix-git/doc/guix.texi:5920 guix-git/doc/guix.texi:6303 +#: guix-git/doc/guix.texi:5933 guix-git/doc/guix.texi:6346 #, no-wrap msgid "--share=@var{source}[=@var{target}]" msgstr "--share=@var{source}[=@var{target}]" #. type: table -#: guix-git/doc/guix.texi:5926 guix-git/doc/guix.texi:6309 +#: guix-git/doc/guix.texi:5939 guix-git/doc/guix.texi:6352 msgid "For containers, @option{--expose} (resp. @option{--share}) exposes the file system @var{source} from the host system as the read-only (resp. writable) file system @var{target} within the container. If @var{target} is not specified, @var{source} is used as the target mount point in the container." msgstr "Расширить файловую систему контейнера источником @var{source} из хостящей системы в качестве файловой системы только для чтения с целью @var{target} внутри контейнера. Если цель @var{target} не задана, источник @var{source} используется как целевая точка монтирования в контейнере." #. type: table -#: guix-git/doc/guix.texi:5930 guix-git/doc/guix.texi:6313 +#: guix-git/doc/guix.texi:5943 guix-git/doc/guix.texi:6356 msgid "The example below spawns a Guile REPL in a container in which the user's home directory is accessible read-only via the @file{/exchange} directory:" msgstr "Пример ниже порождает Guile REPL в контейнере, в котором домашняя директория пользователя доступна только для чтения через директорию @file{/exchange}:" #. type: example -#: guix-git/doc/guix.texi:5933 +#: guix-git/doc/guix.texi:5946 #, no-wrap msgid "guix shell --container --expose=$HOME=/exchange guile -- guile\n" msgstr "guix shell --container --expose=$HOME=/exchange guile -- guile\n" #. type: item -#: guix-git/doc/guix.texi:5935 guix-git/doc/guix.texi:6110 -#: guix-git/doc/guix.texi:6675 guix-git/doc/guix.texi:11575 -#: guix-git/doc/guix.texi:35308 +#: guix-git/doc/guix.texi:5948 +#, no-wrap +msgid "--rebuild-cache" +msgstr "--rebuild-cache" + +#. type: cindex +#: guix-git/doc/guix.texi:5949 +#, fuzzy, no-wrap +#| msgid "staging, of code" +msgid "caching, of profiles" +msgstr "форматировние, кода" + +#. type: cindex +#: guix-git/doc/guix.texi:5950 +#, fuzzy, no-wrap +#| msgid "Invoking @command{guix shell}" +msgid "caching, in @command{guix shell}" +msgstr "Вызов @command{guix shell}" + +#. type: table +#: guix-git/doc/guix.texi:5956 +msgid "In most cases, @command{guix shell} caches the environment so that subsequent uses are instantaneous. Least-recently used cache entries are periodically removed. The cache is also invalidated, when using @option{--file} or @option{--manifest}, anytime the corresponding file is modified." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:5962 +msgid "The @option{--rebuild-cache} forces the cached environment to be refreshed. This is useful when using @option{--file} or @option{--manifest} and the @command{guix.scm} or @command{manifest.scm} file has external dependencies, or if its behavior depends, say, on environment variables." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:5963 guix-git/doc/guix.texi:6147 +#: guix-git/doc/guix.texi:6718 guix-git/doc/guix.texi:11889 +#: guix-git/doc/guix.texi:35752 #, no-wrap msgid "--root=@var{file}" msgstr "--root=@var{file}" #. type: itemx -#: guix-git/doc/guix.texi:5936 guix-git/doc/guix.texi:6111 -#: guix-git/doc/guix.texi:6676 guix-git/doc/guix.texi:11576 -#: guix-git/doc/guix.texi:35309 +#: guix-git/doc/guix.texi:5964 guix-git/doc/guix.texi:6148 +#: guix-git/doc/guix.texi:6719 guix-git/doc/guix.texi:11890 +#: guix-git/doc/guix.texi:35753 #, no-wrap msgid "-r @var{file}" msgstr "-r @var{file}" #. type: cindex -#: guix-git/doc/guix.texi:5937 guix-git/doc/guix.texi:6112 +#: guix-git/doc/guix.texi:5965 guix-git/doc/guix.texi:6149 #, no-wrap msgid "persistent environment" msgstr "постоянное окружение" #. type: cindex -#: guix-git/doc/guix.texi:5938 guix-git/doc/guix.texi:6113 +#: guix-git/doc/guix.texi:5966 guix-git/doc/guix.texi:6150 #, no-wrap msgid "garbage collector root, for environments" msgstr "корень сборщика мусора, для окружений" #. type: table -#: guix-git/doc/guix.texi:5941 guix-git/doc/guix.texi:6116 +#: guix-git/doc/guix.texi:5969 guix-git/doc/guix.texi:6153 msgid "Make @var{file} a symlink to the profile for this environment, and register it as a garbage collector root." msgstr "Создать символическую ссылку @var{file} на профиль этого окружения и зарегистрировать её как корень сборщика мусора." #. type: table -#: guix-git/doc/guix.texi:5944 guix-git/doc/guix.texi:6119 +#: guix-git/doc/guix.texi:5972 guix-git/doc/guix.texi:6156 msgid "This is useful if you want to protect your environment from garbage collection, to make it ``persistent''." msgstr "Это полезно, если вы хотите защитить своё окружение от сборщика мусора, сделать его \"постоянным\"." #. type: table -#: guix-git/doc/guix.texi:5950 -msgid "When this option is omitted, the environment is protected from garbage collection only for the duration of the @command{guix shell} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages. @xref{Invoking guix gc}, for more on GC roots." +#: guix-git/doc/guix.texi:5978 +msgid "When this option is omitted, @command{guix shell} caches profiles so that subsequent uses of the same environment are instantaneous---this is comparable to using @option{--root} except that @command{guix shell} takes care of periodically removing the least-recently used garbage collector roots." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:5985 +#, fuzzy +#| msgid "When this option is omitted, the environment is protected from garbage collection only for the duration of the @command{guix shell} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages. @xref{Invoking guix gc}, for more on GC roots." +msgid "In some cases, @command{guix shell} does not cache profiles---e.g., if transformation options such as @option{--with-latest} are used. In those cases, the environment is protected from garbage collection only for the duration of the @command{guix shell} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages." msgstr "Если эта опция пропущена, окружеие защищено от сборщика мусора только на время сессии @command{guix shell}. Это означает, что в следующий раз, когда вы создадите такое же окружение, вам потребуется пересобирать и скачивать пакеты заново. @xref{Invoking guix gc}, for more on GC roots." +#. type: table +#: guix-git/doc/guix.texi:5987 +#, fuzzy +#| msgid "@xref{Invoking guix pull}, for more information." +msgid "@xref{Invoking guix gc}, for more on GC roots." +msgstr "@xref{Invoking guix pull} для дополнительной информации." + #. type: Plain text -#: guix-git/doc/guix.texi:5955 +#: guix-git/doc/guix.texi:5992 msgid "@command{guix shell} also supports all of the common build options that @command{guix build} supports (@pxref{Common Build Options}) as well as package transformation options (@pxref{Package Transformation Options})." msgstr "@command{guix shell} также поддерживает все обычные опции сборки, которые поддерживает команда @command{guix build} (@pxref{Common Build Options}), а также опции трансформации пакета (@pxref{Package Transformation Options})." #. type: section -#: guix-git/doc/guix.texi:5957 +#: guix-git/doc/guix.texi:5994 #, no-wrap msgid "Invoking @command{guix environment}" msgstr "Вызов @command{guix environment}" #. type: Plain text -#: guix-git/doc/guix.texi:5961 +#: guix-git/doc/guix.texi:5998 msgid "The purpose of @command{guix environment} is to assist in creating development environments." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5962 +#: guix-git/doc/guix.texi:5999 #, no-wrap msgid "Deprecation warning" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5966 +#: guix-git/doc/guix.texi:6003 msgid "The @command{guix environment} command is deprecated in favor of @command{guix shell}, which performs similar functions but is more convenient to use. @xref{Invoking guix shell}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5971 +#: guix-git/doc/guix.texi:6008 msgid "Being deprecated, @command{guix environment} is slated for eventual removal, but the Guix project is committed to keeping it until May 1st, 2023. Please get in touch with us at @email{guix-devel@@gnu.org} if you would like to discuss it." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5977 +#: guix-git/doc/guix.texi:6014 #, no-wrap msgid "guix environment @var{options} @var{package}@dots{}\n" msgstr "guix environment @var{options} @var{package}@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:5981 +#: guix-git/doc/guix.texi:6018 msgid "The following example spawns a new shell set up for the development of GNU@tie{}Guile:" msgstr "Следующий пример порождает новую оболочку, установленную для разработки GNU@tie{}Guile:" #. type: example -#: guix-git/doc/guix.texi:5984 +#: guix-git/doc/guix.texi:6021 #, no-wrap msgid "guix environment guile\n" msgstr "guix environment guile\n" #. type: Plain text -#: guix-git/doc/guix.texi:6001 +#: guix-git/doc/guix.texi:6038 msgid "If the needed dependencies are not built yet, @command{guix environment} automatically builds them. The environment of the new shell is an augmented version of the environment that @command{guix environment} was run in. It contains the necessary search paths for building the given package added to the existing environment variables. To create a ``pure'' environment, in which the original environment variables have been unset, use the @option{--pure} option@footnote{Users sometimes wrongfully augment environment variables such as @env{PATH} in their @file{~/.bashrc} file. As a consequence, when @command{guix environment} launches it, Bash may read @file{~/.bashrc}, thereby introducing ``impurities'' in these environment variables. It is an error to define such environment variables in @file{.bashrc}; instead, they should be defined in @file{.bash_profile}, which is sourced only by log-in shells. @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for details on Bash start-up files.}." msgstr "Если необходимые зависимости еще не собраны, @command{guix environment} автоматически построит их. Среда новой оболочки - это расширенная версия среды, в которой была запущена @command{guix environment}. Она содержит необходимые пути поиска для сборки данного пакета, добавленные к существующим переменным среды. Чтобы создать ``чистую'' среду, в которой исходные переменные среды не были установлены, используйте параметр @option{--pure} @footnote{Пользователи иногда ошибочно изменяют переменные среды, такие как @env{PATH}, в своем @file{~/.bashrc} файле. Как следствие, когда @command{guix environment} запускает его, Bash может читать @file{~/.bashrc}, тем самым вводя ``примеси'' в эти переменные среды. Ошибочно определять такие переменные среды в @file{.bashrc}; вместо этого они должны быть определены в @file{.bash_profile}, источником которого являются только оболочки входа в систему. @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, для получения подробной информации о файлах запуска Bash.}." #. type: Plain text -#: guix-git/doc/guix.texi:6007 +#: guix-git/doc/guix.texi:6044 msgid "Exiting from a Guix environment is the same as exiting from the shell, and will place the user back in the old environment before @command{guix environment} was invoked. The next garbage collection (@pxref{Invoking guix gc}) will clean up packages that were installed from within the environment and are no longer used outside of it." msgstr "Выход из окружения Guix аналогичен выходу из оболочки и возвращает пользователя в старое окружение до вызова @command{guix environment}. Следующая сборка мусора (@pxref{Invoking guix gc}) очистит пакеты, которые были установлены в окружении и больше не используются за ее пределами." #. type: Plain text -#: guix-git/doc/guix.texi:6014 +#: guix-git/doc/guix.texi:6051 msgid "@command{guix environment} defines the @env{GUIX_ENVIRONMENT} variable in the shell it spawns; its value is the file name of the profile of this environment. This allows users to, say, define a specific prompt for development environments in their @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):" msgstr "@command{guix environment} определяет переменную @code{GUIX_ENVIRONMENT} в оболочке, которую создаёт; её значением является имя файла профиля этого окружения. Это позволяет пользователям, скажем, определить специфичные значения окружений разработки в @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):" #. type: Plain text -#: guix-git/doc/guix.texi:6033 +#: guix-git/doc/guix.texi:6070 msgid "Additionally, more than one package may be specified, in which case the union of the inputs for the given packages are used. For example, the command below spawns a shell where all of the dependencies of both Guile and Emacs are available:" msgstr "Дополним, что может быть указано более одного пакета, в таком случае используется объединённые входные данные для указанных пакетов. Например, команда ниже порождает оболочку, в котором доступны все зависимости, как Guile, так и Emacs:" #. type: example -#: guix-git/doc/guix.texi:6036 +#: guix-git/doc/guix.texi:6073 #, no-wrap msgid "guix environment guile emacs\n" msgstr "guix environment guile emacs\n" #. type: Plain text -#: guix-git/doc/guix.texi:6041 +#: guix-git/doc/guix.texi:6078 msgid "Sometimes an interactive shell session is not desired. An arbitrary command may be invoked by placing the @code{--} token to separate the command from the rest of the arguments:" msgstr "Иногда интерактивная сессия оболочки не нужна. Можно вызвать произвольную команду при указании токена @code{--}, который отделяет команду от остальных аргументов:" #. type: example -#: guix-git/doc/guix.texi:6044 +#: guix-git/doc/guix.texi:6081 #, no-wrap msgid "guix environment guile -- make -j4\n" msgstr "guix environment guile -- make -j4\n" #. type: Plain text -#: guix-git/doc/guix.texi:6050 +#: guix-git/doc/guix.texi:6087 #, fuzzy #| msgid "In other situations, it is more convenient to specify the list of packages needed in the environment. For example, the following command runs @command{python} from an environment containing Python@tie{}2.7 and NumPy:" msgid "In other situations, it is more convenient to specify the list of packages needed in the environment. For example, the following command runs @command{python} from an environment containing Python@tie{}3 and NumPy:" msgstr "В других ситуациях удобнее указать список паетов, необходимых для окружения. Например, следующая команда запускает @command{python} из окружения, содержащего Python@tie{}2.7 и NumPy:" #. type: example -#: guix-git/doc/guix.texi:6053 +#: guix-git/doc/guix.texi:6090 #, fuzzy, no-wrap #| msgid "guix environment --ad-hoc python2-numpy python-2.7 -- python\n" msgid "guix environment --ad-hoc python-numpy python -- python3\n" msgstr "guix environment --ad-hoc python2-numpy python-2.7 -- python\n" #. type: Plain text -#: guix-git/doc/guix.texi:6064 +#: guix-git/doc/guix.texi:6101 msgid "Furthermore, one might want the dependencies of a package and also some additional packages that are not build-time or runtime dependencies, but are useful when developing nonetheless. Because of this, the @option{--ad-hoc} flag is positional. Packages appearing before @option{--ad-hoc} are interpreted as packages whose dependencies will be added to the environment. Packages appearing after are interpreted as packages that will be added to the environment directly. For example, the following command creates a Guix development environment that additionally includes Git and strace:" msgstr "Более того, возможно, вам потребуются зависимости пакета, а также некоторые дополнительные пакеты, которые не являются зависимостями процесса сборки или процесса исполнения (работы), но важны при разработке. Для этого и указан флаш @code{--ad-hoc}. Пакеты, обозначенные до @code{--ad-hoc} интерпретируются как пакеты, чьи зависимости будут добавлены в окружение. Пакеты, которые обозначены после @code{--ad-hoc}, интерпретируются как пакеты, которые будут добавлены в окружение непосредственно. Например, следующая команда создаёт окружение разработки Guix, которая в дополнение включает Git и strace:" #. type: example -#: guix-git/doc/guix.texi:6067 +#: guix-git/doc/guix.texi:6104 #, no-wrap msgid "guix environment --pure guix --ad-hoc git strace\n" msgstr "guix environment guix --ad-hoc git strace\n" #. type: Plain text -#: guix-git/doc/guix.texi:6077 +#: guix-git/doc/guix.texi:6114 msgid "Sometimes it is desirable to isolate the environment as much as possible, for maximal purity and reproducibility. In particular, when using Guix on a host distro that is not Guix System, it is desirable to prevent access to @file{/usr/bin} and other system-wide resources from the development environment. For example, the following command spawns a Guile REPL in a ``container'' where only the store and the current working directory are mounted:" msgstr "Иногда возникает необходимость изолировать окружение настолько, насколькоо возможно, для максимальной чистоты и воспроизводимости. В частности, при использовании Guix на дистрибутиве, отличном от системы Guix, желательно предотвращать доступ из окружения разработки к @file{/usr/bin} и другим ресурсам системы. Например, следующая команда порождает Guile REPL в \"контейнере\", в котором монтированы только склад и текущая рабочая директория:" #. type: example -#: guix-git/doc/guix.texi:6080 +#: guix-git/doc/guix.texi:6117 #, no-wrap msgid "guix environment --ad-hoc --container guile -- guile\n" msgstr "guix environment --ad-hoc --container guile -- guile\n" #. type: quotation -#: guix-git/doc/guix.texi:6084 +#: guix-git/doc/guix.texi:6121 msgid "The @option{--container} option requires Linux-libre 3.19 or newer." msgstr "Опция @code{--container} требует Linux-libre 3.19 или новее." #. type: cindex -#: guix-git/doc/guix.texi:6086 +#: guix-git/doc/guix.texi:6123 #, no-wrap msgid "certificates" msgstr "Сертификаты X.509" #. type: Plain text -#: guix-git/doc/guix.texi:6093 +#: guix-git/doc/guix.texi:6130 msgid "Another typical use case for containers is to run security-sensitive applications such as a web browser. To run Eolie, we must expose and share some files and directories; we include @code{nss-certs} and expose @file{/etc/ssl/certs/} for HTTPS authentication; finally we preserve the @env{DISPLAY} environment variable since containerized graphical applications won't display without it." msgstr "Другой типичный вариант использования контейнеров - запуск приложений, чувствительных к безопасности, таких как веб-браузер. Чтобы запустить Eolie, мы должны предоставить доступ к некоторым файлам и каталогам; мы используем @code{nss-certs} и предоставляем @file{/etc /ssl /certs/} для аутентификации HTTPS; наконец, мы сохраняем переменную среды @env{DISPLAY}, поскольку контейнерные графические приложения не будут отображаться без нее." #. type: example -#: guix-git/doc/guix.texi:6100 +#: guix-git/doc/guix.texi:6137 #, no-wrap msgid "" "guix environment --preserve='^DISPLAY$' --container --network \\\n" @@ -13657,89 +13791,89 @@ msgstr "" " --ad-hoc eolie nss-certs dbus -- eolie\n" #. type: table -#: guix-git/doc/guix.texi:6109 +#: guix-git/doc/guix.texi:6146 msgid "Set up the environment and check whether the shell would clobber environment variables. @xref{Invoking guix shell, @option{--check}}, for more info." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6125 +#: guix-git/doc/guix.texi:6162 msgid "When this option is omitted, the environment is protected from garbage collection only for the duration of the @command{guix environment} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages. @xref{Invoking guix gc}, for more on GC roots." msgstr "Если эта опция пропущена, окружеие защищено от сборщика мусора только на время сессии @command{guix environment}. Это означает, что в следующий раз, когда вы создадите такое же окружение, вам потребуется пересобирать и скачивать пакеты заново. @xref{Invoking guix gc}, for more on GC roots." #. type: example -#: guix-git/doc/guix.texi:6135 +#: guix-git/doc/guix.texi:6172 #, no-wrap msgid "guix environment -e '(@@ (gnu packages maths) petsc-openmpi)'\n" msgstr "guix environment -e '(@@ (gnu packages maths) petsc-openmpi)'\n" #. type: example -#: guix-git/doc/guix.texi:6144 +#: guix-git/doc/guix.texi:6181 #, no-wrap msgid "guix environment --ad-hoc -e '(@@ (gnu) %base-packages)'\n" msgstr "guix environment --ad-hoc -e '(@@ (gnu) %base-packages)'\n" #. type: example -#: guix-git/doc/guix.texi:6153 +#: guix-git/doc/guix.texi:6190 #, no-wrap msgid "guix environment --ad-hoc -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" msgstr "guix environment --ad-hoc -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" #. type: item -#: guix-git/doc/guix.texi:6155 +#: guix-git/doc/guix.texi:6192 #, no-wrap msgid "--load=@var{file}" msgstr "--load=@var{file}" #. type: itemx -#: guix-git/doc/guix.texi:6156 +#: guix-git/doc/guix.texi:6193 #, no-wrap msgid "-l @var{file}" msgstr "-l @var{file}" #. type: table -#: guix-git/doc/guix.texi:6159 +#: guix-git/doc/guix.texi:6196 msgid "Create an environment for the package or list of packages that the code within @var{file} evaluates to." msgstr "Создать окружение для пакета или списка пакетов, код которых задан в файле @var{file}." #. type: item -#: guix-git/doc/guix.texi:6177 +#: guix-git/doc/guix.texi:6214 #, no-wrap msgid "--ad-hoc" msgstr "--ad-hoc" #. type: table -#: guix-git/doc/guix.texi:6182 +#: guix-git/doc/guix.texi:6219 msgid "Include all specified packages in the resulting environment, as if an @i{ad hoc} package were defined with them as inputs. This option is useful for quickly creating an environment without having to write a package expression to contain the desired inputs." msgstr "Включить все указанные пакеты в результирующее окружение, если бы целевой (лат. @i{ad hoc}) пакет имел бы их как входные данные. Эта опция полезна для быстрого создания окружения без необходимости писать выражение типа пакет, содержащее желаемые входные данные." #. type: table -#: guix-git/doc/guix.texi:6184 +#: guix-git/doc/guix.texi:6221 msgid "For instance, the command:" msgstr "Например, команда:" #. type: example -#: guix-git/doc/guix.texi:6187 +#: guix-git/doc/guix.texi:6224 #, no-wrap msgid "guix environment --ad-hoc guile guile-sdl -- guile\n" msgstr "guix environment --ad-hoc guile guile-sdl -- guile\n" #. type: table -#: guix-git/doc/guix.texi:6191 +#: guix-git/doc/guix.texi:6228 msgid "runs @command{guile} in an environment where Guile and Guile-SDL are available." msgstr "запускает @command{guile} в окружении, в котором доступны Guile и Guile-SDL." #. type: table -#: guix-git/doc/guix.texi:6196 +#: guix-git/doc/guix.texi:6233 msgid "Note that this example implicitly asks for the default output of @code{guile} and @code{guile-sdl}, but it is possible to ask for a specific output---e.g., @code{glib:bin} asks for the @code{bin} output of @code{glib} (@pxref{Packages with Multiple Outputs})." msgstr "Отметим, что этот пример явно запрашивает выходы @code{guile} и @code{guile-sdl} по умолчанию, но возможно запросить специфичный выход, то есть @code{glib:bin} запрашивает выход @code{bin} из @code{glib} (@pxref{Packages with Multiple Outputs})." #. type: table -#: guix-git/doc/guix.texi:6202 +#: guix-git/doc/guix.texi:6239 msgid "This option may be composed with the default behavior of @command{guix environment}. Packages appearing before @option{--ad-hoc} are interpreted as packages whose dependencies will be added to the environment, the default behavior. Packages appearing after are interpreted as packages that will be added to the environment directly." msgstr "Эта опция может сочетаться с поведением по умолчанию @command{guix environment}. Пакеты, которые появляются до @code{--ad-hoc} интерпретируются как пакеты, чьи зависимости будут добавлены в окружение (поведение по умолчанию). Пакеты, которые появляются после этой опции, интерпретируются как пакеты, которые будут добавлены в окружение непосредственно." #. type: example -#: guix-git/doc/guix.texi:6218 +#: guix-git/doc/guix.texi:6261 #, no-wrap msgid "" "guix environment --pure --preserve=^SLURM --ad-hoc openmpi @dots{} \\\n" @@ -13749,12 +13883,12 @@ msgstr "" " -- mpirun @dots{}\n" #. type: table -#: guix-git/doc/guix.texi:6261 +#: guix-git/doc/guix.texi:6304 msgid "For containers, link the environment profile to @file{~/.guix-profile} within the container and set @code{GUIX_ENVIRONMENT} to that. This is equivalent to making @file{~/.guix-profile} a symlink to the actual profile within the container. Linking will fail and abort the environment if the directory already exists, which will certainly be the case if @command{guix environment} was invoked in the user's home directory." msgstr "Связать профиль окружения контейнера с @file{~/.guix-profile} внутри контейнера. Это эквивалент запуска команды @command{ln -s $GUIX_ENVIRONMENT ~/.guix-profile} внутри контейнера. Связывание завершится ошибкой и отменит создание окружения, если директория уже существует, что, конечно, будет происходить, если @command{guix environment} вызвана в домашней директории пользователя." #. type: example -#: guix-git/doc/guix.texi:6288 +#: guix-git/doc/guix.texi:6331 #, no-wrap msgid "" "# will expose paths as /home/foo/wd, /home/foo/test, and /home/foo/target\n" @@ -13770,68 +13904,68 @@ msgstr "" " --expose=/tmp/target=$HOME/target\n" #. type: example -#: guix-git/doc/guix.texi:6316 +#: guix-git/doc/guix.texi:6359 #, no-wrap msgid "guix environment --container --expose=$HOME=/exchange --ad-hoc guile -- guile\n" msgstr "guix environment --container --expose=$HOME=/exchange --ad-hoc guile -- guile\n" #. type: Plain text -#: guix-git/doc/guix.texi:6324 +#: guix-git/doc/guix.texi:6367 msgid "@command{guix environment} also supports all of the common build options that @command{guix build} supports (@pxref{Common Build Options}) as well as package transformation options (@pxref{Package Transformation Options})." msgstr "@command{guix environment} также поддерживает все обычные опции сборки, которые поддерживает команда @command{guix build} (@pxref{Common Build Options}), а также опции трансформации пакета (@pxref{Package Transformation Options})." #. type: section -#: guix-git/doc/guix.texi:6326 +#: guix-git/doc/guix.texi:6369 #, no-wrap msgid "Invoking @command{guix pack}" msgstr "Вызов @command{guix pack}" #. type: Plain text -#: guix-git/doc/guix.texi:6332 +#: guix-git/doc/guix.texi:6375 msgid "Occasionally you want to pass software to people who are not (yet!) lucky enough to be using Guix. You'd tell them to run @command{guix package -i @var{something}}, but that's not possible in this case. This is where @command{guix pack} comes in." msgstr "Иногда бывает необходимо передать программу людям, которые (ещё!) не являются счастливыми обладателями Guix. Вы могли бы им рекомендовать заустить @command{guix package -i @var{something}}, но в данном случае это не подхлдит. Тогда @command{guix pack} решает вопрос." #. type: quotation -#: guix-git/doc/guix.texi:6337 +#: guix-git/doc/guix.texi:6380 msgid "If you are looking for ways to exchange binaries among machines that already run Guix, @pxref{Invoking guix copy}, @ref{Invoking guix publish}, and @ref{Invoking guix archive}." msgstr "Если вы ищете способ обмена бинарниками между машинами, работающими с Guix, @pxref{Invoking guix copy}, @ref{Invoking guix publish} и @ref{Invoking guix archive}." #. type: cindex -#: guix-git/doc/guix.texi:6339 +#: guix-git/doc/guix.texi:6382 #, no-wrap msgid "pack" msgstr "упаковка" #. type: cindex -#: guix-git/doc/guix.texi:6340 +#: guix-git/doc/guix.texi:6383 #, no-wrap msgid "bundle" msgstr "набор" #. type: cindex -#: guix-git/doc/guix.texi:6341 +#: guix-git/doc/guix.texi:6384 #, no-wrap msgid "application bundle" msgstr "набор приложений" #. type: cindex -#: guix-git/doc/guix.texi:6342 +#: guix-git/doc/guix.texi:6385 #, no-wrap msgid "software bundle" msgstr "набор приложений" #. type: Plain text -#: guix-git/doc/guix.texi:6351 +#: guix-git/doc/guix.texi:6394 msgid "The @command{guix pack} command creates a shrink-wrapped @dfn{pack} or @dfn{software bundle}: it creates a tarball or some other archive containing the binaries of the software you're interested in, and all its dependencies. The resulting archive can be used on any machine that does not have Guix, and people can run the exact same binaries as those you have with Guix. The pack itself is created in a bit-reproducible fashion, so anyone can verify that it really contains the build results that you pretend to be shipping." msgstr "Команда @command{guix pack} создаёт обёрнутый @dfn{набор} или @dfn{программный набор}: она создаёт архив tarball или другой архив, содержащий исполняемые файлы программного обеспечения, которое вас интересует, а также все его зависимости. Результирующий архив может использоваться на любой машине, которая не имеет Guix, а люди могут запустить совершенно такие же бинарники, как у вас в Guix. Набор создаётся со свойством воспроизводимости до бита, так что любой может проверить, что он действительно содержит результаты сборок, которые вы поставляете." #. type: Plain text -#: guix-git/doc/guix.texi:6354 +#: guix-git/doc/guix.texi:6397 msgid "For example, to create a bundle containing Guile, Emacs, Geiser, and all their dependencies, you can run:" msgstr "Например, чтобы создать набор, содержащий Guile, Emacs, Geiser и все их зависимости, можно запустить:" #. type: example -#: guix-git/doc/guix.texi:6359 +#: guix-git/doc/guix.texi:6402 #, no-wrap msgid "" "$ guix pack guile emacs emacs-geiser\n" @@ -13843,61 +13977,61 @@ msgstr "" "/gnu/store/@dots{}-pack.tar.gz\n" #. type: Plain text -#: guix-git/doc/guix.texi:6367 +#: guix-git/doc/guix.texi:6410 msgid "The result here is a tarball containing a @file{/gnu/store} directory with all the relevant packages. The resulting tarball contains a @dfn{profile} with the three packages of interest; the profile is the same as would be created by @command{guix package -i}. It is this mechanism that is used to create Guix's own standalone binary tarball (@pxref{Binary Installation})." msgstr "Результатом будет архив tarball, содержащий директорию @file{/gnu/store} со всеми соответствующими пакетами. Результирующий архив содержат @dfn{профиль} с тремя запрошенными пакетами; профиль представляет то же самое, что можно создать командой @command{guix package -i}. Это механизм, который используется, собственно, для создания автономного (standalone) бинарного архива Guix (@pxref{Binary Installation})." #. type: Plain text -#: guix-git/doc/guix.texi:6372 +#: guix-git/doc/guix.texi:6415 msgid "Users of this pack would have to run @file{/gnu/store/@dots{}-profile/bin/guile} to run Guile, which you may find inconvenient. To work around it, you can create, say, a @file{/opt/gnu/bin} symlink to the profile:" msgstr "Пользователи этого пакета должны запускать @file{/gnu/store/@dots{}-profile/bin/guile} для запуска Guile, что может быть не удобно. Чтобы исправить это, можно создать, например, символическую ссылку @file{/opt/gnu/bin} на профиль:" #. type: example -#: guix-git/doc/guix.texi:6375 +#: guix-git/doc/guix.texi:6418 #, no-wrap msgid "guix pack -S /opt/gnu/bin=bin guile emacs emacs-geiser\n" msgstr "guix pack -S /opt/gnu/bin=bin guile emacs geiser\n" #. type: Plain text -#: guix-git/doc/guix.texi:6379 +#: guix-git/doc/guix.texi:6422 msgid "That way, users can happily type @file{/opt/gnu/bin/guile} and enjoy." msgstr "Так пользователи смогут благополучно напечатать @file{/opt/gnu/bin/guile}, и всё хорошо." #. type: cindex -#: guix-git/doc/guix.texi:6380 +#: guix-git/doc/guix.texi:6423 #, no-wrap msgid "relocatable binaries, with @command{guix pack}" msgstr "перемещаемые бинарники, с @command{guix pack}" #. type: Plain text -#: guix-git/doc/guix.texi:6388 +#: guix-git/doc/guix.texi:6431 msgid "What if the recipient of your pack does not have root privileges on their machine, and thus cannot unpack it in the root file system? In that case, you will want to use the @option{--relocatable} option (see below). This option produces @dfn{relocatable binaries}, meaning they they can be placed anywhere in the file system hierarchy: in the example above, users can unpack your tarball in their home directory and directly run @file{./opt/gnu/bin/guile}." msgstr "Что если получатель вашего пакета не имеет привилегий root на своей машине, и поэтому не может распаковать его в корне файловой системы? В таком случае вам стоит использовать опцию @code{--relocatable} (смотрите ниже). Эта опция производит @dfn{перемещаемые бинарники}, в том плане, что они могут размещаться где угодно в иерархии файловой системы: в примере выше пользователи могут распаковать ваш архив в свои домашние директории и напрямую запустить @file{./opt/gnu/bin/guile}." #. type: cindex -#: guix-git/doc/guix.texi:6389 +#: guix-git/doc/guix.texi:6432 #, no-wrap msgid "Docker, build an image with guix pack" msgstr "Docker, сборка образа с помощью guix pack" #. type: Plain text -#: guix-git/doc/guix.texi:6392 +#: guix-git/doc/guix.texi:6435 msgid "Alternatively, you can produce a pack in the Docker image format using the following command:" msgstr "В качестве альтернативы можно производить пакет в формате образа Docker, используя следующую команду:" #. type: example -#: guix-git/doc/guix.texi:6395 +#: guix-git/doc/guix.texi:6438 #, no-wrap msgid "guix pack -f docker -S /bin=bin guile guile-readline\n" msgstr "guix pack -f docker guile emacs geiser\n" #. type: Plain text -#: guix-git/doc/guix.texi:6400 +#: guix-git/doc/guix.texi:6443 msgid "The result is a tarball that can be passed to the @command{docker load} command, followed by @code{docker run}:" msgstr "Результатом будет архив, который можно передать команде @command{docker load}, followed by @code{docker run}:" #. type: example -#: guix-git/doc/guix.texi:6404 +#: guix-git/doc/guix.texi:6447 #, no-wrap msgid "" "docker load < @var{file}\n" @@ -13907,169 +14041,169 @@ msgstr "" "docker run -ti guile-guile-readline /bin/guile\n" #. type: Plain text -#: guix-git/doc/guix.texi:6411 +#: guix-git/doc/guix.texi:6454 msgid "where @var{file} is the image returned by @var{guix pack}, and @code{guile-guile-readline} is its ``image tag''. See the @uref{https://docs.docker.com/engine/reference/commandline/load/, Docker documentation} for more information." msgstr "Результатом будет архив, который можно передать команде @command{docker load}. Смотрите @uref{https://docs.docker.com/engine/reference/commandline/load/, документацию Docker} для подробной информации." #. type: cindex -#: guix-git/doc/guix.texi:6412 +#: guix-git/doc/guix.texi:6455 #, no-wrap msgid "Singularity, build an image with guix pack" msgstr "Singularity, сборка образа с помощью guix pack" #. type: cindex -#: guix-git/doc/guix.texi:6413 +#: guix-git/doc/guix.texi:6456 #, no-wrap msgid "SquashFS, build an image with guix pack" msgstr "SquashFS, сборка образа с помощью guix pack" #. type: Plain text -#: guix-git/doc/guix.texi:6416 +#: guix-git/doc/guix.texi:6459 msgid "Yet another option is to produce a SquashFS image with the following command:" msgstr "Ещё одна опция производит образ SquashFS следующей командой:" #. type: example -#: guix-git/doc/guix.texi:6419 +#: guix-git/doc/guix.texi:6462 #, no-wrap msgid "guix pack -f squashfs bash guile emacs emacs-geiser\n" msgstr "guix pack -f squashfs guile emacs geiser\n" #. type: Plain text -#: guix-git/doc/guix.texi:6427 +#: guix-git/doc/guix.texi:6470 msgid "The result is a SquashFS file system image that can either be mounted or directly be used as a file system container image with the @uref{https://www.sylabs.io/docs/, Singularity container execution environment}, using commands like @command{singularity shell} or @command{singularity exec}." msgstr "Результатом будет образ файловой системы SquashFS, который может непосредственно монтироваться как образ, содержащий контейнер файловой системы, с помощью @uref{https://www.sylabs.io/docs/, контейнерного окружения Singularity}, используя команды типа @command{singularity shell} или @command{singularity exec}." #. type: Plain text -#: guix-git/doc/guix.texi:6429 +#: guix-git/doc/guix.texi:6472 msgid "Several command-line options allow you to customize your pack:" msgstr "Несколько опций командной строки позволяют вам переделывать ваш пакет:" #. type: table -#: guix-git/doc/guix.texi:6434 +#: guix-git/doc/guix.texi:6477 msgid "Produce a pack in the given @var{format}." msgstr "Произвести пакет в указанном формате @var{format}." #. type: table -#: guix-git/doc/guix.texi:6436 +#: guix-git/doc/guix.texi:6479 msgid "The available formats are:" msgstr "Возможные форматы:" #. type: item -#: guix-git/doc/guix.texi:6438 +#: guix-git/doc/guix.texi:6481 #, no-wrap msgid "tarball" msgstr "tarball" #. type: table -#: guix-git/doc/guix.texi:6441 +#: guix-git/doc/guix.texi:6484 msgid "This is the default format. It produces a tarball containing all the specified binaries and symlinks." msgstr "Это формат по умолчанию. Он производит архив tarball, содержащий все заданные бинарники и символические ссылки." #. type: item -#: guix-git/doc/guix.texi:6442 +#: guix-git/doc/guix.texi:6485 #, no-wrap msgid "docker" msgstr "docker" #. type: table -#: guix-git/doc/guix.texi:6448 +#: guix-git/doc/guix.texi:6491 msgid "This produces a tarball that follows the @uref{https://github.com/docker/docker/blob/master/image/spec/v1.2.md, Docker Image Specification}. The ``repository name'' as it appears in the output of the @command{docker images} command is computed from package names passed on the command line or in the manifest file." msgstr "Это производит архив, соответствующий @uref{https://github.com/docker/docker/blob/master/image/spec/v1.2.md, спецификации образа Docker}." #. type: item -#: guix-git/doc/guix.texi:6449 +#: guix-git/doc/guix.texi:6492 #, no-wrap msgid "squashfs" msgstr "squashfs" #. type: table -#: guix-git/doc/guix.texi:6453 +#: guix-git/doc/guix.texi:6496 msgid "This produces a SquashFS image containing all the specified binaries and symlinks, as well as empty mount points for virtual file systems like procfs." msgstr "Это создает образ SquashFS, содержащий все указанные двоичные файлы и символические ссылки, а также пустые точки монтирования для виртуальных файловых систем, таких как procfs." #. type: quotation -#: guix-git/doc/guix.texi:6459 +#: guix-git/doc/guix.texi:6502 msgid "Singularity @emph{requires} you to provide @file{/bin/sh} in the image. For that reason, @command{guix pack -f squashfs} always implies @code{-S /bin=bin}. Thus, your @command{guix pack} invocation must always start with something like:" msgstr "Singularity @emph{требует}, чтобы вы указали @file{/bin /sh} в образе. По этой причине @command{guix pack -f squashfs} всегда подразумевает @code{-S /bin=bin}. Таким образом, вызов @command{guix pack} всегда должен начинаться с чего-то вроде:" #. type: example -#: guix-git/doc/guix.texi:6462 +#: guix-git/doc/guix.texi:6505 #, no-wrap msgid "guix pack -f squashfs bash @dots{}\n" msgstr "guix pack -f squashfs guile emacs geiser\n" #. type: quotation -#: guix-git/doc/guix.texi:6467 +#: guix-git/doc/guix.texi:6510 msgid "If you forget the @code{bash} (or similar) package, @command{singularity run} and @command{singularity exec} will fail with an unhelpful ``no such file or directory'' message." msgstr "Если вы забудете пакет @code{bash} (или аналогичный), @command{singularity run} и @command{singularity exec} выдаст бесполезное сообщение ``нет такого файла или каталога''." #. type: item -#: guix-git/doc/guix.texi:6469 +#: guix-git/doc/guix.texi:6512 #, no-wrap msgid "deb" msgstr "deb" #. type: table -#: guix-git/doc/guix.texi:6477 +#: guix-git/doc/guix.texi:6520 msgid "This produces a Debian archive (a package with the @samp{.deb} file extension) containing all the specified binaries and symbolic links, that can be installed on top of any dpkg-based GNU(/Linux) distribution. Advanced options can be revealed via the @option{--help-deb-format} option. They allow embedding control files for more fine-grained control, such as activating specific triggers or providing a maintainer configure script to run arbitrary setup code upon installation." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6480 +#: guix-git/doc/guix.texi:6523 #, no-wrap msgid "guix pack -f deb -C xz -S /usr/bin/hello=bin/hello hello\n" msgstr "guix pack -f deb -C xz -S /usr/bin/hello=bin/hello hello\n" #. type: quotation -#: guix-git/doc/guix.texi:6487 +#: guix-git/doc/guix.texi:6530 msgid "Because archives produced with @command{guix pack} contain a collection of store items and because each @command{dpkg} package must not have conflicting files, in practice that means you likely won't be able to install more than one such archive on a given system." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6495 +#: guix-git/doc/guix.texi:6538 msgid "@command{dpkg} will assume ownership of any files contained in the pack that it does @emph{not} know about. It is unwise to install Guix-produced @samp{.deb} files on a system where @file{/gnu/store} is shared by other software, such as a Guix installation or other, non-deb packs." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6499 +#: guix-git/doc/guix.texi:6542 #, no-wrap msgid "relocatable binaries" msgstr "перемещаемые двоичные файлы" #. type: item -#: guix-git/doc/guix.texi:6500 +#: guix-git/doc/guix.texi:6543 #, no-wrap msgid "--relocatable" msgstr "--relocatable" #. type: table -#: guix-git/doc/guix.texi:6504 +#: guix-git/doc/guix.texi:6547 msgid "Produce @dfn{relocatable binaries}---i.e., binaries that can be placed anywhere in the file system hierarchy and run from there." msgstr "Создавать @dfn{relocatable binaries} --- то есть двоичные файлы, которые можно разместить в любом месте иерархии файловой системы и запускать оттуда." #. type: table -#: guix-git/doc/guix.texi:6512 +#: guix-git/doc/guix.texi:6555 msgid "When this option is passed once, the resulting binaries require support for @dfn{user namespaces} in the kernel Linux; when passed @emph{twice}@footnote{Here's a trick to memorize it: @code{-RR}, which adds PRoot support, can be thought of as the abbreviation of ``Really Relocatable''. Neat, isn't it?}, relocatable binaries fall to back to other techniques if user namespaces are unavailable, and essentially work anywhere---see below for the implications." msgstr "Когда эта опция передается один раз, конечные двоичные файлы требуют поддержки @dfn{user namespaces} в ядре Linux; при передаче @emph{дважды}@footnote{Вот трюк, чтобы запомнить его: @code{-RR}, который добавляет поддержку PRoot, можно рассматривать как сокращение от ``Really Relocatable''. Удобно, не правда ли?}, Relocatable двоичные файлы возвращаются к другим методам, если пользовательские пространства имен недоступны, и по существу работают где угодно - см. ниже что под этим подразумевается." #. type: table -#: guix-git/doc/guix.texi:6514 +#: guix-git/doc/guix.texi:6557 msgid "For example, if you create a pack containing Bash with:" msgstr "Например, если вы создаете пакет, содержащий Bash, с помощью:" #. type: example -#: guix-git/doc/guix.texi:6517 +#: guix-git/doc/guix.texi:6560 #, no-wrap msgid "guix pack -RR -S /mybin=bin bash\n" msgstr "guix pack -RR -S /mybin=bin bash\n" #. type: table -#: guix-git/doc/guix.texi:6522 +#: guix-git/doc/guix.texi:6565 msgid "...@: you can copy that pack to a machine that lacks Guix, and from your home directory as a normal user, run:" msgstr "...@: вы можете скопировать этот пакет на машину, на которой отсутствует Guix, и из своего домашнего каталога как обычный пользователь запустите:" #. type: example -#: guix-git/doc/guix.texi:6526 +#: guix-git/doc/guix.texi:6569 #, no-wrap msgid "" "tar xf pack.tar.gz\n" @@ -14079,121 +14213,121 @@ msgstr "" "./mybin/sh\n" #. type: table -#: guix-git/doc/guix.texi:6534 +#: guix-git/doc/guix.texi:6577 msgid "In that shell, if you type @code{ls /gnu/store}, you'll notice that @file{/gnu/store} shows up and contains all the dependencies of @code{bash}, even though the machine actually lacks @file{/gnu/store} altogether! That is probably the simplest way to deploy Guix-built software on a non-Guix machine." msgstr "В этой оболочке, если вы наберете @code{ls /gnu/store}, вы заметите, что отобразятся @file{/gnu/store} и содержатся все зависимости @code{bash}, даже если на машине нет @file{/gnu/store}! Это, вероятно, самый простой способ установить программное обеспечение, созданное с помощью Guix, на машине, отличной от Guix." #. type: quotation -#: guix-git/doc/guix.texi:6540 +#: guix-git/doc/guix.texi:6583 msgid "By default, relocatable binaries rely on the @dfn{user namespace} feature of the kernel Linux, which allows unprivileged users to mount or change root. Old versions of Linux did not support it, and some GNU/Linux distributions turn it off." msgstr "По умолчанию relocatable двоичные файлы полагаются на функцию @dfn{user namespace} ядра Linux, которая позволяет непривилегированным пользователям монтировать или изменять root. Старые версии Linux не поддерживали его, а некоторые дистрибутивы GNU/Linux его отключили." #. type: quotation -#: guix-git/doc/guix.texi:6546 +#: guix-git/doc/guix.texi:6589 msgid "To produce relocatable binaries that work even in the absence of user namespaces, pass @option{--relocatable} or @option{-R} @emph{twice}. In that case, binaries will try user namespace support and fall back to another @dfn{execution engine} if user namespaces are not supported. The following execution engines are supported:" msgstr "Чтобы создать relocatable двоичные файлы, которые работают даже при отсутствии пользовательских пространств имен, передайте @option{--relocatable} или @option{-R} @emph{дважды}. В этом случае двоичные файлы будут пытаться использовать пространство имен пользователей и возвращаться к другому @dfn{механизму выполнения}, если пространства имен пользователей не поддерживаются. Поддерживаются следующие механизмы выполнения:" #. type: item -#: guix-git/doc/guix.texi:6548 guix-git/doc/guix.texi:17371 +#: guix-git/doc/guix.texi:6591 guix-git/doc/guix.texi:17733 #, no-wrap msgid "default" msgstr "по умолчанию" #. type: table -#: guix-git/doc/guix.texi:6551 +#: guix-git/doc/guix.texi:6594 msgid "Try user namespaces and fall back to PRoot if user namespaces are not supported (see below)." msgstr "Попробовать использовать пространства имен пользователей и вернуться к PRoot, если пространства имен пользователей не поддерживаются (см. ниже)." #. type: item -#: guix-git/doc/guix.texi:6552 +#: guix-git/doc/guix.texi:6595 #, no-wrap msgid "performance" msgstr "форматирование кода" #. type: table -#: guix-git/doc/guix.texi:6555 +#: guix-git/doc/guix.texi:6598 msgid "Try user namespaces and fall back to Fakechroot if user namespaces are not supported (see below)." msgstr "Попробовать использовать пространства имен пользователей и вернуться к Fakechroot, если пространства имен пользователей не поддерживаются (см. ниже)." #. type: item -#: guix-git/doc/guix.texi:6556 +#: guix-git/doc/guix.texi:6599 #, no-wrap msgid "userns" msgstr "user" #. type: table -#: guix-git/doc/guix.texi:6559 +#: guix-git/doc/guix.texi:6602 msgid "Run the program through user namespaces and abort if they are not supported." msgstr "Запустить программу через пользовательские пространства имен и прервать, если они не поддерживаются." #. type: item -#: guix-git/doc/guix.texi:6560 +#: guix-git/doc/guix.texi:6603 #, no-wrap msgid "proot" msgstr "chroot" #. type: table -#: guix-git/doc/guix.texi:6567 +#: guix-git/doc/guix.texi:6610 msgid "Run through PRoot. The @uref{https://proot-me.github.io/, PRoot} program provides the necessary support for file system virtualization. It achieves that by using the @code{ptrace} system call on the running program. This approach has the advantage to work without requiring special kernel support, but it incurs run-time overhead every time a system call is made." msgstr "Запустить PRoot. Программа @uref{https://proot-me.github.io/, PRoot} обеспечивает необходимую поддержку виртуализации файловой системы. Это достигается с помощью системного вызова @code{ptrace} в запущенной программе. Преимущество этого подхода заключается в том, что это не требует специальной поддержки ядра, но это требует дополнительных затрат времени выполнения каждый раз, когда выполняется системный вызов." #. type: item -#: guix-git/doc/guix.texi:6568 +#: guix-git/doc/guix.texi:6611 #, no-wrap msgid "fakechroot" msgstr "chroot" #. type: table -#: guix-git/doc/guix.texi:6576 +#: guix-git/doc/guix.texi:6619 msgid "Run through Fakechroot. @uref{https://github.com/dex4er/fakechroot/, Fakechroot} virtualizes file system accesses by intercepting calls to C library functions such as @code{open}, @code{stat}, @code{exec}, and so on. Unlike PRoot, it incurs very little overhead. However, it does not always work: for example, some file system accesses made from within the C library are not intercepted, and file system accesses made @i{via} direct syscalls are not intercepted either, leading to erratic behavior." msgstr "Запустить Fakechroot. @uref{https://github.com/dex4er/fakechroot/, Fakechroot} виртуализирует доступ к файловой системе путем перехвата вызовов функций библиотеки C, таких как @code{open}, @code{stat}, @code{exec} и т.п. В отличие от PRoot, накладных расходов очень мало. Однако это не всегда работает: например, некоторые обращения к файловой системе, сделанные из библиотеки C, не перехватываются, а обращения к файловой системе, сделанные @i{через} прямые системные вызовы, также не перехватываются, что приводит к нестабильному поведению." #. type: vindex -#: guix-git/doc/guix.texi:6578 +#: guix-git/doc/guix.texi:6621 #, no-wrap msgid "GUIX_EXECUTION_ENGINE" msgstr "GUIX_EXECUTION_ENGINE" #. type: quotation -#: guix-git/doc/guix.texi:6582 +#: guix-git/doc/guix.texi:6625 msgid "When running a wrapped program, you can explicitly request one of the execution engines listed above by setting the @env{GUIX_EXECUTION_ENGINE} environment variable accordingly." msgstr "При запуске обернутой программы вы можете явно запросить один из механизмов выполнения, перечисленных выше, установив соответствующую переменную среды @env{GUIX_EXECUTION_ENGINE}." #. type: cindex -#: guix-git/doc/guix.texi:6584 +#: guix-git/doc/guix.texi:6627 #, no-wrap msgid "entry point, for Docker images" msgstr "точка входа, для Docker образов" #. type: item -#: guix-git/doc/guix.texi:6585 +#: guix-git/doc/guix.texi:6628 #, no-wrap msgid "--entry-point=@var{command}" msgstr "--commit=@var{commit}" #. type: table -#: guix-git/doc/guix.texi:6590 +#: guix-git/doc/guix.texi:6633 msgid "Use @var{command} as the @dfn{entry point} of the resulting pack, if the pack format supports it---currently @code{docker} and @code{squashfs} (Singularity) support it. @var{command} must be relative to the profile contained in the pack." msgstr "Используйте @var{command} в качестве @dfn{точки входа} конечного пакета, если формат пакета поддерживает это --- в настоящее время @code{docker} и @code{squashfs} (Singularity) поддерживают это. @var{command} должна относиться к профилю, содержащемуся в пакете." #. type: table -#: guix-git/doc/guix.texi:6594 +#: guix-git/doc/guix.texi:6637 msgid "The entry point specifies the command that tools like @code{docker run} or @code{singularity run} automatically start by default. For example, you can do:" msgstr "Точка входа указывает команду, которую по умолчанию автоматически запускают такие инструменты, как @code{docker run} или @code{singularity run}. Например, вы можете сделать:" #. type: example -#: guix-git/doc/guix.texi:6597 +#: guix-git/doc/guix.texi:6640 #, no-wrap msgid "guix pack -f docker --entry-point=bin/guile guile\n" msgstr "guix pack -f docker guile emacs geiser\n" #. type: table -#: guix-git/doc/guix.texi:6601 +#: guix-git/doc/guix.texi:6644 msgid "The resulting pack can easily be loaded and @code{docker run} with no extra arguments will spawn @code{bin/guile}:" msgstr "Полученный пакет может быть легко импортирован, и запущен через @code{docker run} без дополнительных аргументов, пораждая @code{bin/guile}:" #. type: example -#: guix-git/doc/guix.texi:6605 +#: guix-git/doc/guix.texi:6648 #, no-wrap msgid "" "docker load -i pack.tar.gz\n" @@ -14203,398 +14337,398 @@ msgstr "" "docker run @var{image-id}\n" #. type: table -#: guix-git/doc/guix.texi:6610 guix-git/doc/guix.texi:12497 -#: guix-git/doc/guix.texi:13445 +#: guix-git/doc/guix.texi:6653 guix-git/doc/guix.texi:12812 +#: guix-git/doc/guix.texi:13802 msgid "Consider the package @var{expr} evaluates to." msgstr "Процедура, при выполнении которой возвращается пакет." #. type: table -#: guix-git/doc/guix.texi:6614 +#: guix-git/doc/guix.texi:6657 msgid "This has the same purpose as the same-named option in @command{guix build} (@pxref{Additional Build Options, @option{--expression} in @command{guix build}})." msgstr "Это то же, что опция с таким же именем в @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) и использует такие же файлы манифестов." #. type: table -#: guix-git/doc/guix.texi:6620 +#: guix-git/doc/guix.texi:6663 msgid "Use the packages contained in the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "Использовать пакеты, содержащиеся в объекте манифеста, возвращенном кодом Scheme в @var{file}. Эта опция может быть указана несколько раз, и в этом случае манифесты объединяются." #. type: table -#: guix-git/doc/guix.texi:6628 +#: guix-git/doc/guix.texi:6671 msgid "This has a similar purpose as the same-named option in @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) and uses the same manifest files. It allows you to define a collection of packages once and use it both for creating profiles and for creating archives for use on machines that do not have Guix installed. Note that you can specify @emph{either} a manifest file @emph{or} a list of packages, but not both." msgstr "Она служит для того же, что и одноименная опция в @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) и использует те же файлы манифеста. Она позволяет вам один раз определить набор пакетов и использовать его как для создания профилей, так и для создания архивов для использования на машинах, на которых не установлен Guix. Обратите внимание, что вы можете указать @emph{либо} файл манифеста @emph{либо} список пакетов, но не то и другое вместе." #. type: item -#: guix-git/doc/guix.texi:6634 guix-git/doc/guix.texi:11539 +#: guix-git/doc/guix.texi:6677 guix-git/doc/guix.texi:11853 #, no-wrap msgid "--target=@var{triplet}" msgstr "--target=@var{triplet}" #. type: cindex -#: guix-git/doc/guix.texi:6635 guix-git/doc/guix.texi:7080 -#: guix-git/doc/guix.texi:11540 +#: guix-git/doc/guix.texi:6678 guix-git/doc/guix.texi:7124 +#: guix-git/doc/guix.texi:11854 #, no-wrap msgid "cross-compilation" msgstr "кросс-компиляция" #. type: table -#: guix-git/doc/guix.texi:6639 +#: guix-git/doc/guix.texi:6682 msgid "Cross-build for @var{triplet}, which must be a valid GNU triplet, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying target triplets, GNU configuration triplets,, autoconf, Autoconf})." msgstr "Cross-сборка для @var{triplet}, который должен быть допустимым GNU triplet, например @code{\\ \"aarch64-linux-gnu\\\"} (@pxref{Specifying target triplets, GNU configuration triplets,, autoconf, Autoconf})." #. type: item -#: guix-git/doc/guix.texi:6640 +#: guix-git/doc/guix.texi:6683 #, no-wrap msgid "--compression=@var{tool}" msgstr "--compression=@var{tool}" #. type: itemx -#: guix-git/doc/guix.texi:6641 +#: guix-git/doc/guix.texi:6684 #, no-wrap msgid "-C @var{tool}" msgstr "-C @var{tool}" #. type: table -#: guix-git/doc/guix.texi:6645 +#: guix-git/doc/guix.texi:6688 msgid "Compress the resulting tarball using @var{tool}---one of @code{gzip}, @code{zstd}, @code{bzip2}, @code{xz}, @code{lzip}, or @code{none} for no compression." msgstr "Архивировать логи сборки методом @var{type}. Это один из: @code{gzip}, @code{bzip2} или @code{none}." #. type: item -#: guix-git/doc/guix.texi:6646 +#: guix-git/doc/guix.texi:6689 #, no-wrap msgid "--symlink=@var{spec}" msgstr "--symlink=@var{spec}" #. type: itemx -#: guix-git/doc/guix.texi:6647 +#: guix-git/doc/guix.texi:6690 #, no-wrap msgid "-S @var{spec}" msgstr "-S @var{spec}" #. type: table -#: guix-git/doc/guix.texi:6650 +#: guix-git/doc/guix.texi:6693 msgid "Add the symlinks specified by @var{spec} to the pack. This option can appear several times." msgstr "Добавить в пакет символические ссылки, указанные в @var{spec}. Эта опция может быть указана несколько раз." #. type: table -#: guix-git/doc/guix.texi:6654 +#: guix-git/doc/guix.texi:6697 msgid "@var{spec} has the form @code{@var{source}=@var{target}}, where @var{source} is the symlink that will be created and @var{target} is the symlink target." msgstr "@var{spec} имеет вид @code{@var{source}=@var{target}}, где @var{source} - это символическая ссылка, которая будет создана, а @var{target} - это цель символьной ссылки." #. type: table -#: guix-git/doc/guix.texi:6657 +#: guix-git/doc/guix.texi:6700 msgid "For instance, @code{-S /opt/gnu/bin=bin} creates a @file{/opt/gnu/bin} symlink pointing to the @file{bin} sub-directory of the profile." msgstr "Например, @code{-S /opt/gnu/bin=bin} создает символическую ссылку @file{/opt/gnu/bin}, указывающую на подкаталог @file{bin} профиля." #. type: item -#: guix-git/doc/guix.texi:6658 guix-git/doc/guix.texi:35262 +#: guix-git/doc/guix.texi:6701 guix-git/doc/guix.texi:35706 #, no-wrap msgid "--save-provenance" msgstr "--save-provenance" #. type: table -#: guix-git/doc/guix.texi:6662 +#: guix-git/doc/guix.texi:6705 msgid "Save provenance information for the packages passed on the command line. Provenance information includes the URL and commit of the channels in use (@pxref{Channels})." msgstr "Сохранить информацию о происхождении пакетов, переданных в командной строке. Информация о происхождении включает в себя URL и фиксацию используемых каналов (@pxref{Channels})." #. type: table -#: guix-git/doc/guix.texi:6668 +#: guix-git/doc/guix.texi:6711 msgid "Provenance information is saved in the @file{/gnu/store/@dots{}-profile/manifest} file in the pack, along with the usual package metadata---the name and version of each package, their propagated inputs, and so on. It is useful information to the recipient of the pack, who then knows how the pack was (supposedly) obtained." msgstr "Информация о происхождении сохраняется в файле @file{/gnu/store/@dots{}-profile/manifest} в пакете вместе с обычными метаданными пакета - названием и версией каждого пакета, их propagated inputs и т.п. Это полезная информация для получателя pack, который исходя из нее знает, как (предположительно) был собран pack." #. type: table -#: guix-git/doc/guix.texi:6674 +#: guix-git/doc/guix.texi:6717 msgid "This option is not enabled by default because, like timestamps, provenance information contributes nothing to the build process. In other words, there is an infinity of channel URLs and commit IDs that can lead to the same pack. Recording such ``silent'' metadata in the output thus potentially breaks the source-to-binary bitwise reproducibility property." msgstr "Этот параметр не включен по умолчанию, поскольку, как и временные метки, информация о происхождении не влияет на процесс сборки. Другими словами, существует бесконечное количество URL-адресов каналов и ID коммитов, которые могут привести к одному и тому же pack. Таким образом, запись таких ``тихих'' метаданных в output потенциально нарушает свойство побитовой воспроизводимости." #. type: cindex -#: guix-git/doc/guix.texi:6677 +#: guix-git/doc/guix.texi:6720 #, no-wrap msgid "garbage collector root, for packs" msgstr "корни сборщика мусора" #. type: table -#: guix-git/doc/guix.texi:6680 +#: guix-git/doc/guix.texi:6723 msgid "Make @var{file} a symlink to the resulting pack, and register it as a garbage collector root." msgstr "Создать символическую ссылку @var{file} на профиль этого окружения и зарегистрировать её как корень сборщика мусора." #. type: item -#: guix-git/doc/guix.texi:6681 +#: guix-git/doc/guix.texi:6724 #, no-wrap msgid "--localstatedir" msgstr "--localstatedir" #. type: itemx -#: guix-git/doc/guix.texi:6682 +#: guix-git/doc/guix.texi:6725 #, no-wrap msgid "--profile-name=@var{name}" msgstr "--profile-name=@var{name}" #. type: table -#: guix-git/doc/guix.texi:6687 +#: guix-git/doc/guix.texi:6730 msgid "Include the ``local state directory'', @file{/var/guix}, in the resulting pack, and notably the @file{/var/guix/profiles/per-user/root/@var{name}} profile---by default @var{name} is @code{guix-profile}, which corresponds to @file{~root/.guix-profile}." msgstr "Включите в конечный пакет ``локальный каталог состояния'', @file{/var/guix} и, в частности, профиль @file{/var/guix/profiles/per-user/root/@var{name}} --- по умолчанию @var{name} - это @code{guix-profile}, что соответствует @file{~root/.guix-profile}." #. type: table -#: guix-git/doc/guix.texi:6693 +#: guix-git/doc/guix.texi:6736 msgid "@file{/var/guix} contains the store database (@pxref{The Store}) as well as garbage-collector roots (@pxref{Invoking guix gc}). Providing it in the pack means that the store is ``complete'' and manageable by Guix; not providing it pack means that the store is ``dead'': items cannot be added to it or removed from it after extraction of the pack." msgstr "@file{/var/guix} содержит базу данных store (@pxref{The Store}), а также корни сборщика мусора (@pxref{Invoking guix gc}). Предоставление ее в pack означает, что store является ``полным'' и управляемым Guix; отсутствие в pack означает, что store ``мертв'': пакеты нельзя добавить в него или удалить из него после извлечения pack." #. type: table -#: guix-git/doc/guix.texi:6696 +#: guix-git/doc/guix.texi:6739 msgid "One use case for this is the Guix self-contained binary tarball (@pxref{Binary Installation})." msgstr "Одним из вариантов использования является включающий себя двоичный архив Guix (@pxref{Binary Installation})." #. type: item -#: guix-git/doc/guix.texi:6697 guix-git/doc/guix.texi:35256 +#: guix-git/doc/guix.texi:6740 guix-git/doc/guix.texi:35700 #, no-wrap msgid "--derivation" msgstr "--derivation" #. type: itemx -#: guix-git/doc/guix.texi:6698 guix-git/doc/guix.texi:11571 -#: guix-git/doc/guix.texi:35257 +#: guix-git/doc/guix.texi:6741 guix-git/doc/guix.texi:11885 +#: guix-git/doc/guix.texi:35701 #, no-wrap msgid "-d" msgstr "-d" #. type: table -#: guix-git/doc/guix.texi:6700 +#: guix-git/doc/guix.texi:6743 msgid "Print the name of the derivation that builds the pack." msgstr "Выведите имя derivation, которая создает pack." #. type: table -#: guix-git/doc/guix.texi:6704 +#: guix-git/doc/guix.texi:6747 msgid "Use the bootstrap binaries to build the pack. This option is only useful to Guix developers." msgstr "Использовать bootstrap бинарники для сборки пакета. Эта опция полезна только разработчикам Guix." #. type: Plain text -#: guix-git/doc/guix.texi:6709 +#: guix-git/doc/guix.texi:6752 msgid "In addition, @command{guix pack} supports all the common build options (@pxref{Common Build Options}) and all the package transformation options (@pxref{Package Transformation Options})." msgstr "Кроме того, @command{guix pack} поддерживает все стандартные параметры сборки (@pxref{Common Build Options}) и все параметры преобразования пакетов (@pxref{Package Transformation Options})." #. type: cindex -#: guix-git/doc/guix.texi:6714 +#: guix-git/doc/guix.texi:6757 #, no-wrap msgid "GCC" msgstr "GCC" #. type: cindex -#: guix-git/doc/guix.texi:6715 +#: guix-git/doc/guix.texi:6758 #, no-wrap msgid "ld-wrapper" msgstr "ld-wrapper" #. type: cindex -#: guix-git/doc/guix.texi:6716 +#: guix-git/doc/guix.texi:6759 #, no-wrap msgid "linker wrapper" msgstr "ld-wrapper" #. type: cindex -#: guix-git/doc/guix.texi:6717 +#: guix-git/doc/guix.texi:6760 #, no-wrap msgid "toolchain, for C development" msgstr "Разработка программного обеспечения" #. type: cindex -#: guix-git/doc/guix.texi:6718 +#: guix-git/doc/guix.texi:6761 #, no-wrap msgid "toolchain, for Fortran development" msgstr "инструменты, для разработки на Fortran" #. type: Plain text -#: guix-git/doc/guix.texi:6725 +#: guix-git/doc/guix.texi:6768 msgid "If you need a complete toolchain for compiling and linking C or C++ source code, use the @code{gcc-toolchain} package. This package provides a complete GCC toolchain for C/C++ development, including GCC itself, the GNU C Library (headers and binaries, plus debugging symbols in the @code{debug} output), Binutils, and a linker wrapper." msgstr "Guix предлагает индивидуальные пакеты компиляторов, как например, @code{gcc}. Но если вам необходим полный набор инструментов (тулчейн) для компиляции и линковки исходного кода, тогда то, что вам действительно нужно, --- это пакет @code{gcc-toolchain}. Этот пакет предоставляет полный тулчейн GCC для разработки C/C++, включая сам GCC, библиотеку GNU C (заголовки и бинарники, а также отладочные символы в выходе @code{debug}), Binutils и набор линковщика." #. type: Plain text -#: guix-git/doc/guix.texi:6731 +#: guix-git/doc/guix.texi:6774 msgid "The wrapper's purpose is to inspect the @code{-L} and @code{-l} switches passed to the linker, add corresponding @code{-rpath} arguments, and invoke the actual linker with this new set of arguments. You can instruct the wrapper to refuse to link against libraries not in the store by setting the @env{GUIX_LD_WRAPPER_ALLOW_IMPURITIES} environment variable to @code{no}." msgstr "Цель оболочки --- проверять опции @code{-L} и @code{-l}, направленные линковщику, и соответствующие аргументы @code{-rpath}, и вызывать соответствующий линковщик с этим новым набором аргументов. Вы можете указать оболочке отклонять линковку с библиотеками, находящимися не на складе, установив переменную окружения @code{GUIX_LD_WRAPPER_ALLOW_IMPURITIES} в значение @code{no}." #. type: Plain text -#: guix-git/doc/guix.texi:6735 +#: guix-git/doc/guix.texi:6778 msgid "The package @code{gfortran-toolchain} provides a complete GCC toolchain for Fortran development. For other languages, please use @samp{guix search gcc toolchain} (@pxref{guix-search,, Invoking guix package})." msgstr "Пакет @code{gfortran-toolchain} предоставляет полный набор инструментов GCC для разработки Fortran. Для других языков используйте @samp{guix search gcc toolchain} (@pxref{guix-search,, Invoking guix package})." #. type: section -#: guix-git/doc/guix.texi:6738 +#: guix-git/doc/guix.texi:6781 #, no-wrap msgid "Invoking @command{guix git authenticate}" msgstr "Вызов @command{guix package}" #. type: Plain text -#: guix-git/doc/guix.texi:6746 +#: guix-git/doc/guix.texi:6789 msgid "The @command{guix git authenticate} command authenticates a Git checkout following the same rule as for channels (@pxref{channel-authentication, channel authentication}). That is, starting from a given commit, it ensures that all subsequent commits are signed by an OpenPGP key whose fingerprint appears in the @file{.guix-authorizations} file of its parent commit(s)." msgstr "Команда @command{guix git Authenticate} аутентифицирует проверку Git по тому же правилу, что и для каналов (@pxref{channel-authentication, channel authentication}). То есть, начиная с данного коммита, он гарантирует, что все последующие коммиты подписаны ключом OpenPGP, отпечаток которого указан в файле @file{.guix-authorizations} его родительского коммита(ов)." #. type: Plain text -#: guix-git/doc/guix.texi:6751 +#: guix-git/doc/guix.texi:6794 msgid "You will find this command useful if you maintain a channel. But in fact, this authentication mechanism is useful in a broader context, so you might want to use it for Git repositories that have nothing to do with Guix." msgstr "Вы найдете эту команду полезной, если будете поддерживать канал. Но на самом деле этот механизм аутентификации полезен в более широком контексте, поэтому вы можете использовать его для репозиториев Git, которые не имеют ничего общего с Guix." #. type: example -#: guix-git/doc/guix.texi:6756 +#: guix-git/doc/guix.texi:6799 #, no-wrap msgid "guix git authenticate @var{commit} @var{signer} [@var{options}@dots{}]\n" msgstr "guix environment @var{options} @var{package}@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:6765 +#: guix-git/doc/guix.texi:6808 msgid "By default, this command authenticates the Git checkout in the current directory; it outputs nothing and exits with exit code zero on success and non-zero on failure. @var{commit} above denotes the first commit where authentication takes place, and @var{signer} is the OpenPGP fingerprint of public key used to sign @var{commit}. Together, they form a ``channel introduction'' (@pxref{channel-authentication, channel introduction}). The options below allow you to fine-tune the process." msgstr "По умолчанию эта команда аутентифицирует проверку Git в текущем каталоге; она ничего не выводит и завершает работу с нулевым кодом в случае успеха и ненулевым в случае неудачи. @var{commit} выше обозначает первый коммит, в котором происходит аутентификация, а @var{signer} - это отпечаток открытого ключа OpenPGP, используемый для подписи @var{commit}. Вместе они образуют ``channel introduction'' (@pxref{channel-authentication, channel introduction}). Указанные ниже параметры позволяют вам точно настроить процесс." #. type: item -#: guix-git/doc/guix.texi:6767 +#: guix-git/doc/guix.texi:6810 #, no-wrap msgid "--repository=@var{directory}" msgstr "--extract=@var{directory}" #. type: itemx -#: guix-git/doc/guix.texi:6768 +#: guix-git/doc/guix.texi:6811 #, no-wrap msgid "-r @var{directory}" msgstr "-x @var{directory}" #. type: table -#: guix-git/doc/guix.texi:6771 +#: guix-git/doc/guix.texi:6814 msgid "Open the Git repository in @var{directory} instead of the current directory." msgstr "Открыть репозиторий Git в @var{directory} вместо текущего каталога." #. type: item -#: guix-git/doc/guix.texi:6772 +#: guix-git/doc/guix.texi:6815 #, no-wrap msgid "--keyring=@var{reference}" msgstr "--expression=@var{expr}" #. type: itemx -#: guix-git/doc/guix.texi:6773 +#: guix-git/doc/guix.texi:6816 #, no-wrap msgid "-k @var{reference}" msgstr "-F @var{free}" #. type: table -#: guix-git/doc/guix.texi:6779 +#: guix-git/doc/guix.texi:6822 msgid "Load OpenPGP keyring from @var{reference}, the reference of a branch such as @code{origin/keyring} or @code{my-keyring}. The branch must contain OpenPGP public keys in @file{.key} files, either in binary form or ``ASCII-armored''. By default the keyring is loaded from the branch named @code{keyring}." msgstr "Загрузить связку ключей OpenPGP из @var{reference}, ссылки на branch, например @code{origin/keyring} или @code{my-keyring}. branch должна содержать открытые ключи OpenPGP в файлах @file{.key} либо в двоичной форме, либо в ``ASCII-armored'' виде. По умолчанию связка ключей загружается из branch с именем @code{keyring}." #. type: item -#: guix-git/doc/guix.texi:6780 +#: guix-git/doc/guix.texi:6823 #, no-wrap msgid "--stats" msgstr "--stats" #. type: table -#: guix-git/doc/guix.texi:6782 +#: guix-git/doc/guix.texi:6825 msgid "Display commit signing statistics upon completion." msgstr "Отобразить статистику подписания commit'ов по завершению." #. type: item -#: guix-git/doc/guix.texi:6783 +#: guix-git/doc/guix.texi:6826 #, no-wrap msgid "--cache-key=@var{key}" msgstr "--search=@var{regexp}" #. type: table -#: guix-git/doc/guix.texi:6787 +#: guix-git/doc/guix.texi:6830 msgid "Previously-authenticated commits are cached in a file under @file{~/.cache/guix/authentication}. This option forces the cache to be stored in file @var{key} in that directory." msgstr "Ранее аутентифицированные коммиты кэшируются в файле под @file{~/.cache/guix/authentication}. Эта опция заставляет хранить кеш в файле @var{key} в этом каталоге." #. type: item -#: guix-git/doc/guix.texi:6788 +#: guix-git/doc/guix.texi:6831 #, no-wrap msgid "--historical-authorizations=@var{file}" msgstr "--install-from-file=@var{file}" #. type: table -#: guix-git/doc/guix.texi:6795 +#: guix-git/doc/guix.texi:6838 msgid "By default, any commit whose parent commit(s) lack the @file{.guix-authorizations} file is considered inauthentic. In contrast, this option considers the authorizations in @var{file} for any commit that lacks @file{.guix-authorizations}. The format of @var{file} is the same as that of @file{.guix-authorizations} (@pxref{channel-authorizations, @file{.guix-authorizations} format})." msgstr "По умолчанию любой коммит, родительский коммит которого не содержит файла @file{.guix-authorizations}, считается недостоверным. Напротив, эта опция учитывает авторизацию в @var{file} для любого коммита, в котором отсутствует @file{.guix-authorizations}. Формат @var{file} такой же, как у @file{.guix-authorizations} (@pxref{channel-authorizations, @file{.guix-authorizations} format})." #. type: Plain text -#: guix-git/doc/guix.texi:6808 +#: guix-git/doc/guix.texi:6851 msgid "GNU Guix provides several Scheme programming interfaces (APIs) to define, build, and query packages. The first interface allows users to write high-level package definitions. These definitions refer to familiar packaging concepts, such as the name and version of a package, its build system, and its dependencies. These definitions can then be turned into concrete build actions." msgstr "GNU Guix предоставляет несколько Scheme программных интерфейсов (API) для определения, сборки и запроса пакетов. Первый интерфейс позволяет пользователям писать высокоуровневые определения пакетов. Эти определения относятся к знакомым концепциям упаковки, таким как имя и версия пакета, его система сборки и зависимости. Затем эти определения можно превратить в конкретные действия по сборке." #. type: Plain text -#: guix-git/doc/guix.texi:6814 +#: guix-git/doc/guix.texi:6857 msgid "Build actions are performed by the Guix daemon, on behalf of users. In a standard setup, the daemon has write access to the store---the @file{/gnu/store} directory---whereas users do not. The recommended setup also has the daemon perform builds in chroots, under specific build users, to minimize interference with the rest of the system." msgstr "Действия по сборке выполняются демоном Guix от имени пользователей. В стандартной настройке демон имеет доступ на запись в хранилище---каталог @file{/gnu/store}---, в то время как пользователи не имеют. Рекомендуемая установка также предусматривает, что демон выполняет сборки в chroot, под определенными пользователями сборки, чтобы минимизировать влияние на остальную систему." #. type: Plain text -#: guix-git/doc/guix.texi:6823 +#: guix-git/doc/guix.texi:6866 msgid "Lower-level APIs are available to interact with the daemon and the store. To instruct the daemon to perform a build action, users actually provide it with a @dfn{derivation}. A derivation is a low-level representation of the build actions to be taken, and the environment in which they should occur---derivations are to package definitions what assembly is to C programs. The term ``derivation'' comes from the fact that build results @emph{derive} from them." msgstr "Доступны API нижнего уровня для взаимодействия с демоном и хранилищем. Чтобы дать демону команду выполнить действие сборки, пользователи фактически предоставляют ему @dfn{derivation}. Derivation - это низкоуровневое представление действий сборки, которые должны быть предприняты, и среды, в которой они должны происходить - derivation'ы относятся к определениям пакетов, как сборка для программ на C. Термин ``derivation'' происходит от того факта, что результаты сборки @emph{производные} от них." #. type: Plain text -#: guix-git/doc/guix.texi:6826 +#: guix-git/doc/guix.texi:6869 msgid "This chapter describes all these APIs in turn, starting from high-level package definitions." msgstr "В этой главе описываются все эти API по очереди, начиная с определений пакетов высокого уровня." #. type: menuentry -#: guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:6883 msgid "Programming Guix in Guile" msgstr "Программирование Guix в Guile" #. type: Plain text -#: guix-git/doc/guix.texi:6855 +#: guix-git/doc/guix.texi:6899 msgid "From a programming viewpoint, the package definitions of the GNU distribution are provided by Guile modules in the @code{(gnu packages @dots{})} name space@footnote{Note that packages under the @code{(gnu packages @dots{})} module name space are not necessarily ``GNU packages''. This module naming scheme follows the usual Guile module naming convention: @code{gnu} means that these modules are distributed as part of the GNU system, and @code{packages} identifies modules that define packages.} (@pxref{Modules, Guile modules,, guile, GNU Guile Reference Manual}). For instance, the @code{(gnu packages emacs)} module exports a variable named @code{emacs}, which is bound to a @code{} object (@pxref{Defining Packages})." msgstr "С точки зрения программирования, определения пакетов дистрибутива GNU предоставляются модулями Guile в пространстве имен @code{(gnu packages @dots{})} @footnote{Обратите внимание, что пакеты в @code{(gnu packages @dots{})} пространстве имен модуля не обязательно являются ``пакетами GNU''. Эта схема именования модулей соответствует обычному соглашению об именах модулей Guile: @code{gnu} означает, что эти модули распространяются как часть системы GNU, а @code{packages} идентифицирует модули, которые определяют пакеты.} (@pxref{Modules, Guile modules,, guile, GNU Guile Reference Manual})). Например, модуль @code{(gnu packages emacs)} экспортирует переменную с именем @code{emacs}, которая привязана к @code{} объекту (@pxref{Defining Packages})." #. type: Plain text -#: guix-git/doc/guix.texi:6862 +#: guix-git/doc/guix.texi:6906 msgid "The @code{(gnu packages @dots{})} module name space is automatically scanned for packages by the command-line tools. For instance, when running @code{guix install emacs}, all the @code{(gnu packages @dots{})} modules are scanned until one that exports a package object whose name is @code{emacs} is found. This package search facility is implemented in the @code{(gnu packages)} module." msgstr "Пространство имен модуля @code{(gnu packages @dots{})} автоматически сканируется на наличие пакетов с помощью инструментов командной строки. Например, при запуске @code{guix install emacs} все модули @code{(gnu packages @dots{})} сканируются до тех пор, пока не будет найден тот, который экспортирует объект пакета с именем @code{emacs}. Это средство поиска пакетов реализовано в модуле @code{(gnu packages)}." #. type: cindex -#: guix-git/doc/guix.texi:6864 +#: guix-git/doc/guix.texi:6908 #, no-wrap msgid "package module search path" msgstr "путь для поиска пакетных модулей" #. type: Plain text -#: guix-git/doc/guix.texi:6873 +#: guix-git/doc/guix.texi:6917 msgid "Users can store package definitions in modules with different names---e.g., @code{(my-packages emacs)}@footnote{Note that the file name and module name must match. For instance, the @code{(my-packages emacs)} module must be stored in a @file{my-packages/emacs.scm} file relative to the load path specified with @option{--load-path} or @env{GUIX_PACKAGE_PATH}. @xref{Modules and the File System,,, guile, GNU Guile Reference Manual}, for details.}. There are two ways to make these package definitions visible to the user interfaces:" msgstr "Пользователи могут хранить определения пакетов в модулях с разными именами - например, @code{(my-packages emacs)} @footnote{Обратите внимание, что имя файла и имя модуля должны совпадать. Например, модуль @code{(my-packages emacs)} должен храниться в файле @file{my-packages/emacs.scm} относительно пути загрузки, указанного с помощью @option{--load-path} или @env{GUIX_PACKAGE_PATH}. @xref{Modules and the File System,,, guile, GNU Guile Reference Manual}, для подробностей.}. Есть два способа сделать эти определения пакетов видимыми для пользовательских интерфейсов:" #. type: enumerate -#: guix-git/doc/guix.texi:6880 +#: guix-git/doc/guix.texi:6924 msgid "By adding the directory containing your package modules to the search path with the @code{-L} flag of @command{guix package} and other commands (@pxref{Common Build Options}), or by setting the @env{GUIX_PACKAGE_PATH} environment variable described below." msgstr "Добавить каталог, содержащий модули вашего пакета, в пути поиска с помощью флага @code{-L} команды @command{guix package} и другие команды (@pxref{Common Build Options}) или указать переменную окружения @env{GUIX_PACKAGE_PATH}, описанную ниже." #. type: enumerate -#: guix-git/doc/guix.texi:6886 +#: guix-git/doc/guix.texi:6930 msgid "By defining a @dfn{channel} and configuring @command{guix pull} so that it pulls from it. A channel is essentially a Git repository containing package modules. @xref{Channels}, for more information on how to define and use channels." msgstr "Определить @dfn{канал} и настроить @command{guix pull} так, чтобы он учитывал его. Канал - это, по сути, репозиторий Git, содержащий модули пакетов. @xref{Channels}, чтобы узнать больше о том, как определять и использовать каналы." #. type: Plain text -#: guix-git/doc/guix.texi:6889 +#: guix-git/doc/guix.texi:6933 msgid "@env{GUIX_PACKAGE_PATH} works similarly to other search path variables:" msgstr "@env{GUIX_PACKAGE_PATH} работает аналогично другим переменным пути поиска:" #. type: defvr -#: guix-git/doc/guix.texi:6890 +#: guix-git/doc/guix.texi:6934 #, no-wrap msgid "{Environment Variable} GUIX_PACKAGE_PATH" msgstr "{Environment Variable} GUIX_PACKAGE_PATH" #. type: defvr -#: guix-git/doc/guix.texi:6894 +#: guix-git/doc/guix.texi:6938 msgid "This is a colon-separated list of directories to search for additional package modules. Directories listed in this variable take precedence over the own modules of the distribution." msgstr "Это список каталогов, разделенных двоеточиями, для поиска дополнительных модулей пакета. Каталоги, перечисленные в этой переменной, имеют приоритет над собственными модулями дистрибутива." #. type: Plain text -#: guix-git/doc/guix.texi:6902 +#: guix-git/doc/guix.texi:6946 msgid "The distribution is fully @dfn{bootstrapped} and @dfn{self-contained}: each package is built based solely on other packages in the distribution. The root of this dependency graph is a small set of @dfn{bootstrap binaries}, provided by the @code{(gnu packages bootstrap)} module. For more information on bootstrapping, @pxref{Bootstrapping}." msgstr "Дистрибутив полностью @dfn{bootstrapped} и @dfn{самодостаточный}: каждый пакет построен исключительно на основе других пакетов в дистрибутиве. Корнем этого графа зависимостей является небольшой набор @dfn{bootstrap бинарный файлы}, предоставляемых модулем @code{(gnu packages bootstrap)}. Для получения дополнительной информации о начальной загрузке @pxref{Bootstrapping}." #. type: Plain text -#: guix-git/doc/guix.texi:6910 +#: guix-git/doc/guix.texi:6954 msgid "The high-level interface to package definitions is implemented in the @code{(guix packages)} and @code{(guix build-system)} modules. As an example, the package definition, or @dfn{recipe}, for the GNU Hello package looks like this:" msgstr "Интерфейс высокого уровня к определениям пакетов реализован в модулях @code{(guix packages)} и @code{(guix build-system)}. Например, определение пакета или @dfn{рецепта} для пакета GNU Hello выглядит так:" #. type: lisp -#: guix-git/doc/guix.texi:6918 +#: guix-git/doc/guix.texi:6962 #, no-wrap msgid "" "(define-module (gnu packages hello)\n" @@ -14614,7 +14748,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:6937 +#: guix-git/doc/guix.texi:6981 #, fuzzy, no-wrap #| msgid "" #| "(define-public hello\n" @@ -14675,335 +14809,335 @@ msgstr "" " (license gpl3+)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:6947 +#: guix-git/doc/guix.texi:6991 msgid "Without being a Scheme expert, the reader may have guessed the meaning of the various fields here. This expression binds the variable @code{hello} to a @code{} object, which is essentially a record (@pxref{SRFI-9, Scheme records,, guile, GNU Guile Reference Manual}). This package object can be inspected using procedures found in the @code{(guix packages)} module; for instance, @code{(package-name hello)} returns---surprise!---@code{\"hello\"}." msgstr "Не будучи Scheme экспертом, вы можете догадаться о значении различных полей. Это выражение связывает переменную @code{hello} с объектом @code{}, который по сути является record (@pxref{SRFI-9, Scheme records,, guile, GNU Guile Reference Manual}). Этот объект пакета можно проверить с помощью процедур из модуля @code{(guix packages)}; например, @code{(package-name hello)} возвращает---сюрприз!---@code{\"hello\"}." #. type: Plain text -#: guix-git/doc/guix.texi:6951 +#: guix-git/doc/guix.texi:6995 msgid "With luck, you may be able to import part or all of the definition of the package you are interested in from another repository, using the @code{guix import} command (@pxref{Invoking guix import})." msgstr "Если повезет, вы сможете импортировать часть или все определение интересующего вас пакета из другого репозитория с помощью команды @code{guix import} (@pxref{Invoking guix import})." #. type: Plain text -#: guix-git/doc/guix.texi:6957 +#: guix-git/doc/guix.texi:7001 msgid "In the example above, @code{hello} is defined in a module of its own, @code{(gnu packages hello)}. Technically, this is not strictly necessary, but it is convenient to do so: all the packages defined in modules under @code{(gnu packages @dots{})} are automatically known to the command-line tools (@pxref{Package Modules})." msgstr "В приведенном выше примере @code{hello} определен в собственном модуле @code{(gnu packages hello)}. Технически в этом нет строгой необходимости, но это удобно: все пакеты, определенные в модулях под @code{(gnu packages @dots{})}, автоматически становятся известны инструментам командной строки (@pxref{Package Modules})." #. type: Plain text -#: guix-git/doc/guix.texi:6959 +#: guix-git/doc/guix.texi:7003 msgid "There are a few points worth noting in the above package definition:" msgstr "В приведенном выше определении пакета стоит отметить несколько моментов:" #. type: itemize -#: guix-git/doc/guix.texi:6966 +#: guix-git/doc/guix.texi:7010 msgid "The @code{source} field of the package is an @code{} object (@pxref{origin Reference}, for the complete reference). Here, the @code{url-fetch} method from @code{(guix download)} is used, meaning that the source is a file to be downloaded over FTP or HTTP." msgstr "Поле @code{source} пакета представляет собой объект @code{} (@pxref{origin Reference}, for the complete reference). Здесь используется метод @code{url-fetch} из @code{(guix download)}, что означает, что источником является файл, который нужно загрузить через FTP или HTTP." #. type: itemize -#: guix-git/doc/guix.texi:6969 +#: guix-git/doc/guix.texi:7013 msgid "The @code{mirror://gnu} prefix instructs @code{url-fetch} to use one of the GNU mirrors defined in @code{(guix download)}." msgstr "Префикс @code{mirror://gnu} указывает @code{url-fetch} использовать одно из зеркал GNU, определенных в @code{(guix download)}." #. type: itemize -#: guix-git/doc/guix.texi:6976 +#: guix-git/doc/guix.texi:7020 msgid "The @code{sha256} field specifies the expected SHA256 hash of the file being downloaded. It is mandatory, and allows Guix to check the integrity of the file. The @code{(base32 @dots{})} form introduces the base32 representation of the hash. You can obtain this information with @code{guix download} (@pxref{Invoking guix download}) and @code{guix hash} (@pxref{Invoking guix hash})." msgstr "Поле @code{sha256} указывает ожидаемый хэш SHA256 загружаемого файла. Это обязательно и позволяет Guix проверять целостность файла. Форма @code{(base32 @dots{})} указывает представление хеша в формате base32. Вы можете получить эту информацию с помощью @code{guix download} (@pxref{Invoking guix download}) @code{guix hash} (@pxref{Invoking guix hash})." #. type: cindex -#: guix-git/doc/guix.texi:6977 +#: guix-git/doc/guix.texi:7021 #, no-wrap msgid "patches" msgstr "патчи" #. type: itemize -#: guix-git/doc/guix.texi:6981 +#: guix-git/doc/guix.texi:7025 msgid "When needed, the @code{origin} form can also have a @code{patches} field listing patches to be applied, and a @code{snippet} field giving a Scheme expression to modify the source code." msgstr "При необходимости форма @code{origin} может также иметь поле @code{patches} со списком исправлений, которые необходимо применить, и поле @code{snippet}, содержащее Scheme выражение для изменения исходного кода." #. type: cindex -#: guix-git/doc/guix.texi:6983 +#: guix-git/doc/guix.texi:7027 #, no-wrap msgid "GNU Build System" msgstr "Система сборки GNU" #. type: itemize -#: guix-git/doc/guix.texi:6989 +#: guix-git/doc/guix.texi:7033 msgid "The @code{build-system} field specifies the procedure to build the package (@pxref{Build Systems}). Here, @code{gnu-build-system} represents the familiar GNU Build System, where packages may be configured, built, and installed with the usual @code{./configure && make && make check && make install} command sequence." msgstr "Поле @code{build-system} указывает процедуру сборки пакета (@pxref{Build Systems}). Здесь @code{gnu-build-system} представляет знакомую систему сборки GNU, в которой пакеты могут быть настроены, собраны и установлены с помощью обычной последовательности команд @code{./configure && make && make check && make install}." #. type: itemize -#: guix-git/doc/guix.texi:6993 +#: guix-git/doc/guix.texi:7037 msgid "When you start packaging non-trivial software, you may need tools to manipulate those build phases, manipulate files, and so on. @xref{Build Utilities}, for more on this." msgstr "Когда вы начинаете упаковывать нетривиальное программное обеспечение, вам могут потребоваться инструменты для управления этими этапами сборки, управления файлами и т.д. @xref{Build Utilities}, чтобы узнать об этом подробнее." #. type: itemize -#: guix-git/doc/guix.texi:6999 +#: guix-git/doc/guix.texi:7043 msgid "The @code{arguments} field specifies options for the build system (@pxref{Build Systems}). Here it is interpreted by @code{gnu-build-system} as a request run @file{configure} with the @option{--enable-silent-rules} flag." msgstr "Поле @code{arguments} определяет параметры для системы сборки (@pxref{Build Systems}). В примере это интерпретируется @code{gnu-build-system} как запуск запроса @file{configure} с флагом @option{--enable-silent-rules}." #. type: findex -#: guix-git/doc/guix.texi:7000 guix-git/doc/guix.texi:7003 +#: guix-git/doc/guix.texi:7044 guix-git/doc/guix.texi:7047 #, no-wrap msgid "quote" msgstr "цитата" #. type: cindex -#: guix-git/doc/guix.texi:7001 +#: guix-git/doc/guix.texi:7045 #, no-wrap msgid "quoting" msgstr "цитирование" #. type: findex -#: guix-git/doc/guix.texi:7002 +#: guix-git/doc/guix.texi:7046 #, no-wrap msgid "'" msgstr "'" #. type: cindex -#: guix-git/doc/guix.texi:7004 +#: guix-git/doc/guix.texi:7048 #, no-wrap msgid "backquote (quasiquote)" msgstr "обратная цитата (квазицитата)" #. type: findex -#: guix-git/doc/guix.texi:7005 +#: guix-git/doc/guix.texi:7049 #, no-wrap msgid "`" msgstr "`" #. type: findex -#: guix-git/doc/guix.texi:7006 +#: guix-git/doc/guix.texi:7050 #, no-wrap msgid "quasiquote" msgstr "quasiquote" #. type: cindex -#: guix-git/doc/guix.texi:7007 +#: guix-git/doc/guix.texi:7051 #, no-wrap msgid "comma (unquote)" msgstr "запятая (не цитирование)" #. type: findex -#: guix-git/doc/guix.texi:7008 +#: guix-git/doc/guix.texi:7052 #, no-wrap msgid "," msgstr "," #. type: findex -#: guix-git/doc/guix.texi:7009 +#: guix-git/doc/guix.texi:7053 #, no-wrap msgid "unquote" msgstr "unquote" #. type: itemize -#: guix-git/doc/guix.texi:7019 +#: guix-git/doc/guix.texi:7063 #, fuzzy #| msgid "What about these quote (@code{'}) characters? They are Scheme syntax to introduce a literal list; @code{'} is synonymous with @code{quote}. @xref{Expression Syntax, quoting,, guile, GNU Guile Reference Manual}, for details. Here the value of the @code{arguments} field is a list of arguments passed to the build system down the road, as with @code{apply} (@pxref{Fly Evaluation, @code{apply},, guile, GNU Guile Reference Manual})." msgid "What about these quote (@code{'}) characters? They are Scheme syntax to introduce a literal list; @code{'} is synonymous with @code{quote}. Sometimes you'll also see @code{`} (a backquote, synonymous with @code{quasiquote}) and @code{,} (a comma, synonymous with @code{unquote}). @xref{Expression Syntax, quoting,, guile, GNU Guile Reference Manual}, for details. Here the value of the @code{arguments} field is a list of arguments passed to the build system down the road, as with @code{apply} (@pxref{Fly Evaluation, @code{apply},, guile, GNU Guile Reference Manual})." msgstr "А как насчет этих символов кавычек (@code{'})? Это синтаксис Scheme для представления literal списка; @code{'} является синонимом @code{цитата}. @xref{Expression Syntax, quoting,, guile, GNU Guile Reference Manual}, для подробностей. Здесь значение поля @code{arguments} представляет собой список аргументов, переданных системе сборки в будущем, как и в случае с @code{apply} (@pxref{Fly Evaluation, @code{apply},, guile, GNU Guile Reference Manual})." #. type: itemize -#: guix-git/doc/guix.texi:7025 +#: guix-git/doc/guix.texi:7069 msgid "The hash-colon (@code{#:}) sequence defines a Scheme @dfn{keyword} (@pxref{Keywords,,, guile, GNU Guile Reference Manual}), and @code{#:configure-flags} is a keyword used to pass a keyword argument to the build system (@pxref{Coding With Keywords,,, guile, GNU Guile Reference Manual})." msgstr "Последовательность хэш-двоеточие (@code{#:}) определяет Scheme @dfn{ключевое слово} (@pxref{Keywords,,, guile, GNU Guile Reference Manual}), а @code{#:configure-flags} - это ключевое слово, используемое для передачи аргумента ключевого слова системе сборки (@pxref{Coding With Keywords,,, guile, GNU Guile Reference Manual})." #. type: itemize -#: guix-git/doc/guix.texi:7031 +#: guix-git/doc/guix.texi:7075 #, fuzzy #| msgid "The @code{inputs} field specifies inputs to the build process---i.e., build-time or run-time dependencies of the package. Here, we define an input called @code{\"gawk\"} whose value is that of the @code{gawk} variable; @code{gawk} is itself bound to a @code{} object." msgid "The @code{inputs} field specifies inputs to the build process---i.e., build-time or run-time dependencies of the package. Here, we add an input, a reference to the @code{gawk} variable; @code{gawk} is itself bound to a @code{} object." msgstr "Поле @code{inputs} указывает входные данные для процесса сборки, т.е. зависимости пакета во время сборки или выполнения. Здесь мы определяем input с именем @code{\"gawk\"}, значение которого совпадает со значением переменной @code{gawk}; @code{gawk} сам связан с объектом @code{}." #. type: itemize -#: guix-git/doc/guix.texi:7035 +#: guix-git/doc/guix.texi:7079 msgid "Note that GCC, Coreutils, Bash, and other essential tools do not need to be specified as inputs here. Instead, @code{gnu-build-system} takes care of ensuring that they are present (@pxref{Build Systems})." msgstr "Обратите внимание, что GCC, Coreutils, Bash и другие важные инструменты не нужно указывать здесь в качестве inputs. Вместо этого @code{gnu-build-system} позаботится об их наличии (@pxref{Build Systems})." #. type: itemize -#: guix-git/doc/guix.texi:7039 +#: guix-git/doc/guix.texi:7083 msgid "However, any other dependencies need to be specified in the @code{inputs} field. Any dependency not specified here will simply be unavailable to the build process, possibly leading to a build failure." msgstr "Однако любые другие зависимости необходимо указать в поле @code{inputs}. Любая не указанная здесь зависимость будет просто недоступна для процесса сборки, что может привести к сбою сборки." #. type: Plain text -#: guix-git/doc/guix.texi:7042 +#: guix-git/doc/guix.texi:7086 msgid "@xref{package Reference}, for a full description of possible fields." msgstr "@xref{package Reference}, для полного описания возможных полей." #. type: Plain text -#: guix-git/doc/guix.texi:7053 +#: guix-git/doc/guix.texi:7097 msgid "Once a package definition is in place, the package may actually be built using the @code{guix build} command-line tool (@pxref{Invoking guix build}), troubleshooting any build failures you encounter (@pxref{Debugging Build Failures}). You can easily jump back to the package definition using the @command{guix edit} command (@pxref{Invoking guix edit}). @xref{Packaging Guidelines}, for more information on how to test package definitions, and @ref{Invoking guix lint}, for information on how to check a definition for style conformance." msgstr "После того, как определение пакета введено, пакет может быть фактически собран с помощью инструмента командной строки @code{guix build} (@pxref{Invoking guix build}), устраняя любые возникающие ошибки сборки (@pxref{Debugging Build Failures}). Вы можете легко вернуться к определению пакета с помощью команды @command{guix edit} (@pxref{Invoking guix edit}). @xref{Packaging Guidelines} для получения дополнительной информации о том, как тестировать определения пакетов, и @ref{Invoking guix lint} для получения информации о том, как проверить определение на соответствие стилю." #. type: vindex -#: guix-git/doc/guix.texi:7053 +#: guix-git/doc/guix.texi:7097 #, no-wrap msgid "GUIX_PACKAGE_PATH" msgstr "GUIX_PACKAGE_PATH" #. type: Plain text -#: guix-git/doc/guix.texi:7057 +#: guix-git/doc/guix.texi:7101 msgid "Lastly, @pxref{Channels}, for information on how to extend the distribution by adding your own package definitions in a ``channel''." msgstr "Наконец, @pxref{Channels}, чтобы узнать, как расширить дистрибутив, добавив собственные определения пакетов в ``канал''." #. type: Plain text -#: guix-git/doc/guix.texi:7061 +#: guix-git/doc/guix.texi:7105 msgid "Finally, updating the package definition to a new upstream version can be partly automated by the @command{guix refresh} command (@pxref{Invoking guix refresh})." msgstr "Наконец, обновление определения пакета до новой исходной версии можно частично автоматизировать с помощью команды @command{guix refresh} (@pxref{Invoking guix refresh})." #. type: Plain text -#: guix-git/doc/guix.texi:7067 +#: guix-git/doc/guix.texi:7111 msgid "Behind the scenes, a derivation corresponding to the @code{} object is first computed by the @code{package-derivation} procedure. That derivation is stored in a @file{.drv} file under @file{/gnu/store}. The build actions it prescribes may then be realized by using the @code{build-derivations} procedure (@pxref{The Store})." msgstr "За кулисами derivation, соответствующая объекту @code{}, сначала вычисляется с помощью процедуры @code{package-diveration}. Этот вывод хранится в файле @file{.drv} в каталоге @file{/gnu/store}. Действия сборки, которые он предписывает, затем могут быть реализованы с помощью процедуры @code{build-derivations} (@pxref{The Store})." #. type: deffn -#: guix-git/doc/guix.texi:7068 +#: guix-git/doc/guix.texi:7112 #, no-wrap msgid "{Scheme Procedure} package-derivation @var{store} @var{package} [@var{system}]" msgstr "{Процедура Scheme} package-derivation @var{store} @var{package} [@var{system}]" #. type: deffn -#: guix-git/doc/guix.texi:7071 +#: guix-git/doc/guix.texi:7115 msgid "Return the @code{} object of @var{package} for @var{system} (@pxref{Derivations})." msgstr "Возвращает the @code{} объект @var{package} для @var{system} (@pxref{Derivations})." #. type: deffn -#: guix-git/doc/guix.texi:7077 +#: guix-git/doc/guix.texi:7121 msgid "@var{package} must be a valid @code{} object, and @var{system} must be a string denoting the target system type---e.g., @code{\"x86_64-linux\"} for an x86_64 Linux-based GNU system. @var{store} must be a connection to the daemon, which operates on the store (@pxref{The Store})." msgstr "@var{package} должен быть допустимым объектом @code{}, а @var{system} должен быть строкой, обозначающей тип системы---например, @code{\"x86_64-linux\"} для системы GNU на базе x86_64 Linux. @var{store} должен быть подключен к демону, который работает с хранилищем (@pxref{The Store})." #. type: Plain text -#: guix-git/doc/guix.texi:7083 +#: guix-git/doc/guix.texi:7127 msgid "Similarly, it is possible to compute a derivation that cross-builds a package for some other system:" msgstr "Точно так же можно вычислить derivation, которая cross собирает пакет для некоторой другой системы:" #. type: deffn -#: guix-git/doc/guix.texi:7084 +#: guix-git/doc/guix.texi:7128 #, no-wrap msgid "{Scheme Procedure} package-cross-derivation @var{store} @" msgstr "{Процедура Scheme} package-cross-derivation @var{store} @" #. type: deffn -#: guix-git/doc/guix.texi:7088 +#: guix-git/doc/guix.texi:7132 msgid "@var{package} @var{target} [@var{system}] Return the @code{} object of @var{package} cross-built from @var{system} to @var{target}." msgstr "@var{package} @var{target} [@var{system}] Возвращает @code{} объект @var{package} cross-собранный из @var{system} в @var{target}." #. type: deffn -#: guix-git/doc/guix.texi:7092 +#: guix-git/doc/guix.texi:7136 msgid "@var{target} must be a valid GNU triplet denoting the target hardware and operating system, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying Target Triplets,,, autoconf, Autoconf})." msgstr "@var{target} должен быть допустимым GNU triplet'ом, обозначающим желамое оборудование и операционную систему, например @code{\"aarch64-linux-gnu\"} (@pxref{Specifying Target Triplets,,, autoconf, Autoconf})." #. type: Plain text -#: guix-git/doc/guix.texi:7096 +#: guix-git/doc/guix.texi:7140 msgid "Once you have package definitions, you can easily define @emph{variants} of those packages. @xref{Defining Package Variants}, for more on that." msgstr "Когда у вас есть определения пакетов, вы можете легко определить @emph{варианты} этих пакетов. См. @xref{Defining Package Variants}, чтобы узнать об этом подробнее." #. type: subsection -#: guix-git/doc/guix.texi:7104 +#: guix-git/doc/guix.texi:7148 #, no-wrap msgid "@code{package} Reference" msgstr "@code{package} Ссылка" #. type: Plain text -#: guix-git/doc/guix.texi:7108 +#: guix-git/doc/guix.texi:7152 msgid "This section summarizes all the options available in @code{package} declarations (@pxref{Defining Packages})." msgstr "В этом разделе перечислены все параметры, доступные в объявлениях @code{package} (@pxref{Defining Packages})." #. type: deftp -#: guix-git/doc/guix.texi:7109 +#: guix-git/doc/guix.texi:7153 #, no-wrap msgid "{Data Type} package" msgstr "{Тип данных} package" #. type: deftp -#: guix-git/doc/guix.texi:7111 +#: guix-git/doc/guix.texi:7155 msgid "This is the data type representing a package recipe." msgstr "Это тип данных, представляющий рецепт пакета." #. type: table -#: guix-git/doc/guix.texi:7115 +#: guix-git/doc/guix.texi:7159 msgid "The name of the package, as a string." msgstr "Название пакета в виде строки." #. type: code{#1} -#: guix-git/doc/guix.texi:7116 +#: guix-git/doc/guix.texi:7160 #, no-wrap msgid "version" msgstr "версия" #. type: table -#: guix-git/doc/guix.texi:7119 +#: guix-git/doc/guix.texi:7163 #, fuzzy #| msgid "The version of the package, as a string." msgid "The version of the package, as a string. @xref{Version Numbers}, for guidelines." msgstr "Версия пакета, в виде строки." #. type: code{#1} -#: guix-git/doc/guix.texi:7120 guix-git/doc/guix.texi:12900 -#: guix-git/doc/guix.texi:15181 guix-git/doc/guix.texi:15790 +#: guix-git/doc/guix.texi:7164 guix-git/doc/guix.texi:13257 +#: guix-git/doc/guix.texi:15538 guix-git/doc/guix.texi:16147 #, no-wrap msgid "source" msgstr "источник" #. type: table -#: guix-git/doc/guix.texi:7127 +#: guix-git/doc/guix.texi:7171 msgid "An object telling how the source code for the package should be acquired. Most of the time, this is an @code{origin} object, which denotes a file fetched from the Internet (@pxref{origin Reference}). It can also be any other ``file-like'' object such as a @code{local-file}, which denotes a file from the local file system (@pxref{G-Expressions, @code{local-file}})." msgstr "Объект, указывающий, как должен быть получен исходный код пакета. В большинстве случаев это объект @code{origin}, который обозначает файл, полученный из Интернета (@pxref{origin Reference}). Это также может быть любой другой объект, подобный файлу, например @code{local-file}, который представляет собой файл из локальной файловой системы (@pxref{G-Expressions, @code{local-file}})." #. type: code{#1} -#: guix-git/doc/guix.texi:7128 +#: guix-git/doc/guix.texi:7172 #, no-wrap msgid "build-system" msgstr "система сборки" #. type: table -#: guix-git/doc/guix.texi:7131 +#: guix-git/doc/guix.texi:7175 msgid "The build system that should be used to build the package (@pxref{Build Systems})." msgstr "Система сборки, которую следует использовать для сборки пакета (@pxref{Build Systems})." #. type: item -#: guix-git/doc/guix.texi:7132 guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:7176 guix-git/doc/guix.texi:18315 #, no-wrap msgid "@code{arguments} (default: @code{'()})" msgstr "@code{arguments} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:7135 +#: guix-git/doc/guix.texi:7179 msgid "The arguments that should be passed to the build system. This is a list, typically containing sequential keyword-value pairs." msgstr "Аргументы, которые следует передать системе сборки. Это список, обычно содержащий последовательные пары ключевого слова и значения." #. type: item -#: guix-git/doc/guix.texi:7136 +#: guix-git/doc/guix.texi:7180 #, no-wrap msgid "@code{inputs} (default: @code{'()})" msgstr "@code{inputs} (default: @code{'()})" #. type: itemx -#: guix-git/doc/guix.texi:7137 +#: guix-git/doc/guix.texi:7181 #, no-wrap msgid "@code{native-inputs} (default: @code{'()})" msgstr "@code{native-inputs} (default: @code{'()})" #. type: itemx -#: guix-git/doc/guix.texi:7138 +#: guix-git/doc/guix.texi:7182 #, no-wrap msgid "@code{propagated-inputs} (default: @code{'()})" msgstr "@code{propagated-inputs} (default: @code{'()})" #. type: cindex -#: guix-git/doc/guix.texi:7139 +#: guix-git/doc/guix.texi:7183 #, no-wrap msgid "inputs, of packages" msgstr "входные данные пакетов" #. type: table -#: guix-git/doc/guix.texi:7146 +#: guix-git/doc/guix.texi:7190 #, fuzzy #| msgid "These fields list dependencies of the package. Each one is a list of tuples, where each tuple has a label for the input (a string) as its first element, a package, origin, or derivation as its second element, and optionally the name of the output thereof that should be used, which defaults to @code{\"out\"} (@pxref{Packages with Multiple Outputs}, for more on package outputs). For example, the list below specifies three inputs:" msgid "These fields list dependencies of the package. Each element of these lists is either a package, origin, or other ``file-like object'' (@pxref{G-Expressions}); to specify the output of that file-like object that should be used, pass a two-element list where the second element is the output (@pxref{Packages with Multiple Outputs}, for more on package outputs). For example, the list below specifies three inputs:" msgstr "В этих полях перечислены зависимости пакета. Каждый из них представляет собой список кортежей, где каждый кортеж имеет метку для ввода (строку) в качестве своего первого элемента, пакет, источник или derivation в качестве второго элемента и, необязательно, имя его вывода, которое следует использовать, которое по умолчанию является @code{\"out\"} (@pxref{Packages with Multiple Outputs}, for more on package outputs). Например, в списке ниже указаны три входа:" #. type: lisp -#: guix-git/doc/guix.texi:7150 +#: guix-git/doc/guix.texi:7194 #, fuzzy, no-wrap #| msgid "" #| "`((\"libffi\" ,libffi)\n" @@ -15018,25 +15152,25 @@ msgstr "" " (\"glib:bin\" ,glib \"bin\")) ;the \"bin\" output of Glib\n" #. type: table -#: guix-git/doc/guix.texi:7154 +#: guix-git/doc/guix.texi:7198 msgid "In the example above, the @code{\"out\"} output of @code{libffi} and @code{libunistring} is used." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:7155 +#: guix-git/doc/guix.texi:7199 #, no-wrap msgid "Compatibility Note" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:7162 +#: guix-git/doc/guix.texi:7206 #, fuzzy #| msgid "These fields list dependencies of the package. Each one is a list of tuples, where each tuple has a label for the input (a string) as its first element, a package, origin, or derivation as its second element, and optionally the name of the output thereof that should be used, which defaults to @code{\"out\"} (@pxref{Packages with Multiple Outputs}, for more on package outputs). For example, the list below specifies three inputs:" msgid "Until version 1.3.0, input lists were a list of tuples, where each tuple has a label for the input (a string) as its first element, a package, origin, or derivation as its second element, and optionally the name of the output thereof that should be used, which defaults to @code{\"out\"}. For example, the list below is equivalent to the one above, but using the @dfn{old input style}:" msgstr "В этих полях перечислены зависимости пакета. Каждый из них представляет собой список кортежей, где каждый кортеж имеет метку для ввода (строку) в качестве своего первого элемента, пакет, источник или derivation в качестве второго элемента и, необязательно, имя его вывода, которое следует использовать, которое по умолчанию является @code{\"out\"} (@pxref{Packages with Multiple Outputs}, for more on package outputs). Например, в списке ниже указаны три входа:" #. type: lisp -#: guix-git/doc/guix.texi:7168 +#: guix-git/doc/guix.texi:7212 #, fuzzy, no-wrap #| msgid "" #| "`((\"libffi\" ,libffi)\n" @@ -15053,176 +15187,188 @@ msgstr "" " (\"glib:bin\" ,glib \"bin\")) ;the \"bin\" output of Glib\n" #. type: quotation -#: guix-git/doc/guix.texi:7174 +#: guix-git/doc/guix.texi:7218 msgid "This style is now deprecated; it is still supported but support will be removed in a future version. It should not be used for new package definitions. @xref{Invoking guix style}, on how to migrate to the new style." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7176 +#: guix-git/doc/guix.texi:7220 #, no-wrap msgid "cross compilation, package dependencies" msgstr "кросс-компиляция, зависимости пакетов" #. type: table -#: guix-git/doc/guix.texi:7182 +#: guix-git/doc/guix.texi:7226 msgid "The distinction between @code{native-inputs} and @code{inputs} is necessary when considering cross-compilation. When cross-compiling, dependencies listed in @code{inputs} are built for the @emph{target} architecture; conversely, dependencies listed in @code{native-inputs} are built for the architecture of the @emph{build} machine." msgstr "Различие между @code{native-inputs} и @code{inputs} необходимо при рассмотрении кросс-компиляции. При кросс-компиляции зависимости, перечисленные в @code{input}, создаются для архитектуры @emph{target}; и наоборот, зависимости, перечисленные в @code{native-inputs}, созданы для архитектуры машины, выполняющей @emph{сборку}." #. type: table -#: guix-git/doc/guix.texi:7187 +#: guix-git/doc/guix.texi:7231 msgid "@code{native-inputs} is typically used to list tools needed at build time, but not at run time, such as Autoconf, Automake, pkg-config, Gettext, or Bison. @command{guix lint} can report likely mistakes in this area (@pxref{Invoking guix lint})." msgstr "@code{native-inputs} обычно используется для перечисления инструментов, необходимых во время сборки, но не во время выполнения, таких как Autoconf, Automake, pkg-config, Gettext или Bison. @command{guix lint} может сообщить о вероятных ошибках в этой области (@pxref{Invoking guix lint})." #. type: anchor{#1} -#: guix-git/doc/guix.texi:7195 +#: guix-git/doc/guix.texi:7239 msgid "package-propagated-inputs" msgstr "package-propagated-inputs" #. type: table -#: guix-git/doc/guix.texi:7195 +#: guix-git/doc/guix.texi:7239 msgid "Lastly, @code{propagated-inputs} is similar to @code{inputs}, but the specified packages will be automatically installed to profiles (@pxref{Features, the role of profiles in Guix}) alongside the package they belong to (@pxref{package-cmd-propagated-inputs, @command{guix package}}, for information on how @command{guix package} deals with propagated inputs)." msgstr "Наконец, @code{propagated-inputs} похоже на @code{inputs}, но указанные пакеты будут автоматически установлены в профили (@pxref{Features, the role of profiles in Guix}) вместе с пакетом, которому они принадлежат (@pxref{package-cmd-propagated-inputs, @command{guix package}}, for information on how @command{guix package} deals with propagated inputs)." #. type: table -#: guix-git/doc/guix.texi:7199 +#: guix-git/doc/guix.texi:7243 msgid "For example this is necessary when packaging a C/C++ library that needs headers of another library to compile, or when a pkg-config file refers to another one @i{via} its @code{Requires} field." msgstr "Например, это необходимо при упаковке библиотеки C/C++, которой для компиляции требуются заголовки другой библиотеки, или когда файл pkg-config ссылается на другое поле @i{через} его @code{Requires}." #. type: table -#: guix-git/doc/guix.texi:7206 +#: guix-git/doc/guix.texi:7250 msgid "Another example where @code{propagated-inputs} is useful is for languages that lack a facility to record the run-time search path akin to the @code{RUNPATH} of ELF files; this includes Guile, Python, Perl, and more. When packaging libraries written in those languages, ensure they can find library code they depend on at run time by listing run-time dependencies in @code{propagated-inputs} rather than @code{inputs}." msgstr "Другой пример использования @code{propagated-inputs} - это языки, в которых отсутствует возможность записывать путь поиска во время выполнения, аналогичный @code{RUNPATH} файлов ELF; сюда входят Guile, Python, Perl и другие. При упаковке библиотек, написанных на этих языках, убедитесь, что они могут найти код библиотеки, от которого они зависят, во время выполнения, указав зависимости времени выполнения в @code{propagated-inputs}, а не в @code{inputs}." #. type: item -#: guix-git/doc/guix.texi:7207 +#: guix-git/doc/guix.texi:7251 #, no-wrap msgid "@code{outputs} (default: @code{'(\"out\")})" msgstr "@code{outputs} (default: @code{'(\"out\")})" #. type: table -#: guix-git/doc/guix.texi:7210 +#: guix-git/doc/guix.texi:7254 msgid "The list of output names of the package. @xref{Packages with Multiple Outputs}, for typical uses of additional outputs." msgstr "Список выходных имен пакета. @xref{Packages with Multiple Outputs}, для типичного использования дополнительных выходов." #. type: item -#: guix-git/doc/guix.texi:7211 +#: guix-git/doc/guix.texi:7255 #, no-wrap msgid "@code{native-search-paths} (default: @code{'()})" msgstr "@code{native-search-paths} (default: @code{'()})" #. type: itemx -#: guix-git/doc/guix.texi:7212 +#: guix-git/doc/guix.texi:7256 #, no-wrap msgid "@code{search-paths} (default: @code{'()})" msgstr "@code{search-paths} (по умолчанию: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:7215 -msgid "A list of @code{search-path-specification} objects describing search-path environment variables honored by the package." +#: guix-git/doc/guix.texi:7260 +#, fuzzy +#| msgid "A list of @code{search-path-specification} objects describing search-path environment variables honored by the package." +msgid "A list of @code{search-path-specification} objects describing search-path environment variables honored by the package. @xref{Search Paths}, for more on search path specifications." msgstr "Список объектов @code{search-path-specification}, описывающих переменные среды пути поиска, учитываемые пакетом." +#. type: table +#: guix-git/doc/guix.texi:7266 +msgid "As for inputs, the distinction between @code{native-search-paths} and @code{search-paths} only matters when cross-compiling. In a cross-compilation context, @code{native-search-paths} applies exclusively to native inputs whereas @code{search-paths} applies only to host inputs." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:7273 +msgid "Packages such as cross-compilers care about target inputs---for instance, our (modified) GCC cross-compiler has @env{CROSS_C_INCLUDE_PATH} in @code{search-paths}, which allows it to pick @file{.h} files for the target system and @emph{not} those of native inputs. For the majority of packages though, only @code{native-search-paths} makes sense." +msgstr "" + #. type: item -#: guix-git/doc/guix.texi:7216 +#: guix-git/doc/guix.texi:7274 #, no-wrap msgid "@code{replacement} (default: @code{#f})" msgstr "@code{replacement} (по умолчанию: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:7220 +#: guix-git/doc/guix.texi:7278 msgid "This must be either @code{#f} or a package object that will be used as a @dfn{replacement} for this package. @xref{Security Updates, grafts}, for details." msgstr "Это должен быть либо @code{#f}, либо объект пакета, который будет использоваться как @dfn{замена} для этого пакета. @xref{Security Updates, grafts}, чтобы узнать подробности." #. type: item -#: guix-git/doc/guix.texi:7221 guix-git/doc/guix.texi:12892 +#: guix-git/doc/guix.texi:7279 guix-git/doc/guix.texi:13249 #, no-wrap msgid "synopsis" msgstr "синопсис" #. type: table -#: guix-git/doc/guix.texi:7223 +#: guix-git/doc/guix.texi:7281 msgid "A one-line description of the package." msgstr "Описание пакета в одну строку." #. type: code{#1} -#: guix-git/doc/guix.texi:7224 guix-git/doc/guix.texi:12893 -#: guix-git/doc/guix.texi:35959 guix-git/doc/guix.texi:36119 +#: guix-git/doc/guix.texi:7282 guix-git/doc/guix.texi:13250 +#: guix-git/doc/guix.texi:36449 guix-git/doc/guix.texi:36609 #, no-wrap msgid "description" msgstr "описание" #. type: table -#: guix-git/doc/guix.texi:7226 +#: guix-git/doc/guix.texi:7284 msgid "A more elaborate description of the package." msgstr "Более подробное описание пакета." #. type: code{#1} -#: guix-git/doc/guix.texi:7227 +#: guix-git/doc/guix.texi:7285 #, no-wrap msgid "license" msgstr "лицензия" #. type: cindex -#: guix-git/doc/guix.texi:7228 +#: guix-git/doc/guix.texi:7286 #, no-wrap msgid "license, of packages" msgstr "лицензии пакетов" #. type: table -#: guix-git/doc/guix.texi:7231 +#: guix-git/doc/guix.texi:7289 msgid "The license of the package; a value from @code{(guix licenses)}, or a list of such values." msgstr "Лицензия пакета; значение из @code{(guix licenses)} или список таких значений." #. type: itemx -#: guix-git/doc/guix.texi:7232 guix-git/doc/guix.texi:12901 +#: guix-git/doc/guix.texi:7290 guix-git/doc/guix.texi:13258 #, no-wrap msgid "home-page" msgstr "главная страница" #. type: table -#: guix-git/doc/guix.texi:7234 +#: guix-git/doc/guix.texi:7292 msgid "The URL to the home-page of the package, as a string." msgstr "URL-адрес домашней страницы пакета в виде строки." #. type: item -#: guix-git/doc/guix.texi:7235 +#: guix-git/doc/guix.texi:7293 #, no-wrap msgid "@code{supported-systems} (default: @code{%supported-systems})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:7238 +#: guix-git/doc/guix.texi:7296 msgid "The list of systems supported by the package, as strings of the form @code{architecture-kernel}, for example @code{\"x86_64-linux\"}." msgstr "Список систем, поддерживаемых пакетом, в виде строк вида @code{architecture-kernel}, например @code{\"x86_64-linux\"}." #. type: item -#: guix-git/doc/guix.texi:7239 +#: guix-git/doc/guix.texi:7297 #, no-wrap msgid "@code{location} (default: source location of the @code{package} form)" msgstr "@code{location} (по умолчанию: исходное местоположение формы @code{package})" #. type: table -#: guix-git/doc/guix.texi:7243 +#: guix-git/doc/guix.texi:7301 msgid "The source location of the package. It is useful to override this when inheriting from another package, in which case this field is not automatically corrected." msgstr "Исходное расположение пакета. Это полезно переопределить при наследовании от другого пакета, и в этом случае это поле не корректируется автоматически." #. type: deffn -#: guix-git/doc/guix.texi:7246 +#: guix-git/doc/guix.texi:7304 #, no-wrap msgid "{Scheme Syntax} this-package" msgstr "{Scheme Syntax} this-package" #. type: deffn -#: guix-git/doc/guix.texi:7249 +#: guix-git/doc/guix.texi:7307 msgid "When used in the @emph{lexical scope} of a package field definition, this identifier resolves to the package being defined." msgstr "При использовании в @emph{lexical scope} определения поля пакета этот идентификатор преобразуется в определяемый пакет." #. type: deffn -#: guix-git/doc/guix.texi:7252 +#: guix-git/doc/guix.texi:7310 msgid "The example below shows how to add a package as a native input of itself when cross-compiling:" msgstr "В приведенном ниже примере показано, как добавить пакет в качестве собственного ввода при кросс-компиляции:" #. type: lisp -#: guix-git/doc/guix.texi:7257 +#: guix-git/doc/guix.texi:7315 #, no-wrap msgid "" "(package\n" @@ -15236,7 +15382,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7263 +#: guix-git/doc/guix.texi:7321 #, fuzzy, no-wrap #| msgid "" #| " ;; When cross-compiled, Guile, for example, depends on\n" @@ -15258,55 +15404,55 @@ msgstr "" " '())))\n" #. type: deffn -#: guix-git/doc/guix.texi:7266 +#: guix-git/doc/guix.texi:7324 msgid "It is an error to refer to @code{this-package} outside a package definition." msgstr "Ссылка на @code{this-package} вне определения пакета является ошибкой." #. type: Plain text -#: guix-git/doc/guix.texi:7270 +#: guix-git/doc/guix.texi:7328 msgid "The following helper procedures are provided to help deal with package inputs." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7271 +#: guix-git/doc/guix.texi:7329 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} inferior-package-inputs @var{package}" msgid "{Scheme Procedure} lookup-package-input @var{package} @var{name}" msgstr "{Процедура Scheme} inferior-package-inputs @var{package}" #. type: deffnx -#: guix-git/doc/guix.texi:7272 +#: guix-git/doc/guix.texi:7330 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} inferior-package-native-inputs @var{package}" msgid "{Scheme Procedure} lookup-package-native-input @var{package} @var{name}" msgstr "{Процедура Scheme} inferior-package-native-inputs @var{package}" #. type: deffnx -#: guix-git/doc/guix.texi:7273 +#: guix-git/doc/guix.texi:7331 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} inferior-package-propagated-inputs @var{package}" msgid "{Scheme Procedure} lookup-package-propagated-input @var{package} @var{name}" msgstr "{Процедура Scheme} inferior-package-propagated-inputs @var{package}" #. type: deffnx -#: guix-git/doc/guix.texi:7274 +#: guix-git/doc/guix.texi:7332 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} inferior-package-native-inputs @var{package}" msgid "{Scheme Procedure} lookup-package-direct-input @var{package} @var{name}" msgstr "{Процедура Scheme} inferior-package-native-inputs @var{package}" #. type: deffn -#: guix-git/doc/guix.texi:7277 +#: guix-git/doc/guix.texi:7335 msgid "Look up @var{name} among @var{package}'s inputs (or native, propagated, or direct inputs). Return it if found, @code{#f} otherwise." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7280 +#: guix-git/doc/guix.texi:7338 msgid "@var{name} is the name of a package depended on. Here's how you might use it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7283 +#: guix-git/doc/guix.texi:7341 #, fuzzy, no-wrap #| msgid "" #| "(use-modules (gnu packages base) (guix packages))\n" @@ -15319,7 +15465,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7286 +#: guix-git/doc/guix.texi:7344 #, no-wrap msgid "" "(lookup-package-direct-input coreutils \"gmp\")\n" @@ -15327,48 +15473,48 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7290 +#: guix-git/doc/guix.texi:7348 msgid "In this example we obtain the @code{gmp} package that is among the direct inputs of @code{coreutils}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7292 +#: guix-git/doc/guix.texi:7350 #, fuzzy, no-wrap #| msgid "inputs, of packages" msgid "development inputs, of a package" msgstr "входные данные пакетов" #. type: cindex -#: guix-git/doc/guix.texi:7293 +#: guix-git/doc/guix.texi:7351 #, fuzzy, no-wrap #| msgid "inputs, of packages" msgid "implicit inputs, of a package" msgstr "входные данные пакетов" #. type: Plain text -#: guix-git/doc/guix.texi:7298 +#: guix-git/doc/guix.texi:7356 msgid "Sometimes you will want to obtain the list of inputs needed to @emph{develop} a package---all the inputs that are visible when the package is compiled. This is what the @code{package-development-inputs} procedure returns." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7299 +#: guix-git/doc/guix.texi:7357 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} inferior-package-native-inputs @var{package}" msgid "{Scheme Procedure} package-development-inputs @var{package} @" msgstr "{Процедура Scheme} inferior-package-native-inputs @var{package}" #. type: deffn -#: guix-git/doc/guix.texi:7306 +#: guix-git/doc/guix.texi:7364 msgid "[@var{system}] [#:target #f] Return the list of inputs required by @var{package} for development purposes on @var{system}. When @var{target} is true, return the inputs needed to cross-compile @var{package} from @var{system} to @var{triplet}, where @var{triplet} is a triplet such as @code{\"aarch64-linux-gnu\"}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7310 +#: guix-git/doc/guix.texi:7368 msgid "Note that the result includes both explicit inputs and implicit inputs---inputs automatically added by the build system (@pxref{Build Systems}). Let us take the @code{hello} package to illustrate that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7313 +#: guix-git/doc/guix.texi:7371 #, no-wrap msgid "" "(use-modules (gnu packages base) (guix packages))\n" @@ -15378,7 +15524,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7316 +#: guix-git/doc/guix.texi:7374 #, no-wrap msgid "" "hello\n" @@ -15390,7 +15536,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7319 +#: guix-git/doc/guix.texi:7377 #, no-wrap msgid "" "(package-direct-inputs hello)\n" @@ -15402,7 +15548,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7322 +#: guix-git/doc/guix.texi:7380 #, no-wrap msgid "" "(package-development-inputs hello)\n" @@ -15412,39 +15558,39 @@ msgstr "" "@result{} ((\"source\" @dots{}) (\"tar\" #) @dots{})\n" #. type: deffn -#: guix-git/doc/guix.texi:7331 +#: guix-git/doc/guix.texi:7389 msgid "In this example, @code{package-direct-inputs} returns the empty list, because @code{hello} has zero explicit dependencies. Conversely, @code{package-development-inputs} includes inputs implicitly added by @code{gnu-build-system} that are required to build @code{hello}: tar, gzip, GCC, libc, Bash, and more. To visualize it, @command{guix graph hello} would show you explicit inputs, whereas @command{guix graph -t bag hello} would include implicit inputs (@pxref{Invoking guix graph})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7337 +#: guix-git/doc/guix.texi:7395 msgid "Because packages are regular Scheme objects that capture a complete dependency graph and associated build procedures, it is often useful to write procedures that take a package and return a modified version thereof according to some parameters. Below are a few examples." msgstr "Поскольку пакеты являются обычными Scheme объектами, которые захватывают полный граф зависимостей и связанные процедуры сборки, часто бывает полезно написать процедуры, которые принимают пакет и возвращают его измененную версию в соответствии с некоторыми параметрами. Ниже приведены несколько примеров." #. type: cindex -#: guix-git/doc/guix.texi:7338 +#: guix-git/doc/guix.texi:7396 #, no-wrap msgid "tool chain, choosing a package's tool chain" msgstr "tool chain, выбор инструментов пакета" #. type: deffn -#: guix-git/doc/guix.texi:7339 +#: guix-git/doc/guix.texi:7397 #, no-wrap msgid "{Scheme Procedure} package-with-c-toolchain @var{package} @var{toolchain}" msgstr "{Процедура Scheme} inferior-package-location @var{package}" #. type: deffn -#: guix-git/doc/guix.texi:7344 +#: guix-git/doc/guix.texi:7402 msgid "Return a variant of @var{package} that uses @var{toolchain} instead of the default GNU C/C++ toolchain. @var{toolchain} must be a list of inputs (label/package tuples) providing equivalent functionality, such as the @code{gcc-toolchain} package." msgstr "Вернуть вариант @var{package}, в котором используется @var{toolchain} вместо стандартного набора инструментов GNU C/C++. @var{toolchain} должен быть списком входов (кортежи меток/пакетов), обеспечивающих эквивалентную функциональность, например, пакет @code{gcc-toolchain}." #. type: deffn -#: guix-git/doc/guix.texi:7348 +#: guix-git/doc/guix.texi:7406 msgid "The example below returns a variant of the @code{hello} package built with GCC@tie{}10.x and the rest of the GNU tool chain (Binutils and the GNU C Library) instead of the default tool chain:" msgstr "Пример ниже возвращает вариант пакета @code{hello}, созданный с помощью GCC@tie{}10.x и остальной части GNU утилит (Binutils и библиотеки GNU C) вместо цепочки инструментов по умолчанию:" #. type: lisp -#: guix-git/doc/guix.texi:7352 +#: guix-git/doc/guix.texi:7410 #, no-wrap msgid "" "(let ((toolchain (specification->package \"gcc-toolchain@@10\")))\n" @@ -15454,197 +15600,197 @@ msgstr "" " (package-with-c-toolchain hello `((\"toolchain\" ,toolchain))))\n" #. type: deffn -#: guix-git/doc/guix.texi:7360 +#: guix-git/doc/guix.texi:7418 msgid "The build tool chain is part of the @dfn{implicit inputs} of packages---it's usually not listed as part of the various ``inputs'' fields and is instead pulled in by the build system. Consequently, this procedure works by changing the build system of @var{package} so that it pulls in @var{toolchain} instead of the defaults. @ref{Build Systems}, for more on build systems." msgstr "Инструменты сборки являются частью @dfn{неявных входных данных} пакетов - обычно они не указываются как часть различных полей ``входных данных'', а вместо этого извлекается системой сборки. Следовательно, эта процедура работает путем изменения системы сборки @var{package}, так что она использует @var{toolchain} вместо значений по умолчанию. @ref{Build Systems}, чтобы узнать больше о системах сборки." #. type: subsection -#: guix-git/doc/guix.texi:7363 +#: guix-git/doc/guix.texi:7421 #, no-wrap msgid "@code{origin} Reference" msgstr "@code{origin} Справка" #. type: Plain text -#: guix-git/doc/guix.texi:7371 +#: guix-git/doc/guix.texi:7429 msgid "This section documents @dfn{origins}. An @code{origin} declaration specifies data that must be ``produced''---downloaded, usually---and whose content hash is known in advance. Origins are primarily used to represent the source code of packages (@pxref{Defining Packages}). For that reason, the @code{origin} form allows you to declare patches to apply to the original source code as well as code snippets to modify it." msgstr "Этот раздел документирует @dfn{origins}. Объявление @code{origin} определяет данные, которые должны быть ``произведены''---обычно загружены---и чей хэш содержимого известен заранее. Origins в основном используются для представления исходного кода пакетов (@pxref{Defining Packages}). По этой причине форма @code{origin} позволяет вам объявлять исправления для применения к исходному коду, а также фрагменты кода для его изменения." #. type: deftp -#: guix-git/doc/guix.texi:7372 +#: guix-git/doc/guix.texi:7430 #, no-wrap msgid "{Data Type} origin" msgstr "{Тип данных} origin" #. type: deftp -#: guix-git/doc/guix.texi:7374 +#: guix-git/doc/guix.texi:7432 msgid "This is the data type representing a source code origin." msgstr "Это тип данных, представляющий источник исходного кода." #. type: code{#1} -#: guix-git/doc/guix.texi:7376 guix-git/doc/guix.texi:26552 +#: guix-git/doc/guix.texi:7434 guix-git/doc/guix.texi:26889 #, no-wrap msgid "uri" msgstr "uri" #. type: table -#: guix-git/doc/guix.texi:7381 +#: guix-git/doc/guix.texi:7439 msgid "An object containing the URI of the source. The object type depends on the @code{method} (see below). For example, when using the @var{url-fetch} method of @code{(guix download)}, the valid @code{uri} values are: a URL represented as a string, or a list thereof." msgstr "Объект, содержащий URI источника. Тип объекта зависит от @code{method} (см. ниже). Например, при использовании метода @var{url-fetch} для @code{(guix download)} допустимые значения @code{uri}: URL, представленный в виде строки, или их список." #. type: cindex -#: guix-git/doc/guix.texi:7382 +#: guix-git/doc/guix.texi:7440 #, no-wrap msgid "fixed-output derivations, for download" msgstr "derivation'ы с фиксированным выводом, для загрузки" #. type: code{#1} -#: guix-git/doc/guix.texi:7383 +#: guix-git/doc/guix.texi:7441 #, no-wrap msgid "method" msgstr "метод" #. type: table -#: guix-git/doc/guix.texi:7390 +#: guix-git/doc/guix.texi:7448 msgid "A monadic procedure that handles the given URI@. The procedure must accept at least three arguments: the value of the @code{uri} field and the hash algorithm and hash value specified by the @code{hash} field. It must return a store item or a derivation in the store monad (@pxref{The Store Monad}); most methods return a fixed-output derivation (@pxref{Derivations})." msgstr "Монадическая процедура, обрабатывающая данный URI. Процедура должна принимать по крайней мере три аргумента: значение поля @code{uri}, а также алгоритм хеширования и значение хеш-функции, указанные в поле @code{hash}. Она должна возвращать элемент store или derivation в store монаде (@pxref{The Store Monad}); большинство методов возвращают derivation с фиксированным выводом (@pxref{Derivations})." #. type: table -#: guix-git/doc/guix.texi:7394 +#: guix-git/doc/guix.texi:7452 msgid "Commonly used methods include @code{url-fetch}, which fetches data from a URL, and @code{git-fetch}, which fetches data from a Git repository (see below)." msgstr "Обычно используемые методы включают @code{url-fetch}, который извлекает данные из URL-адреса, и @code{git-fetch}, который извлекает данные из репозитория Git (см. ниже)." #. type: code{#1} -#: guix-git/doc/guix.texi:7395 +#: guix-git/doc/guix.texi:7453 #, no-wrap msgid "sha256" msgstr "sha256" #. type: table -#: guix-git/doc/guix.texi:7399 +#: guix-git/doc/guix.texi:7457 msgid "A bytevector containing the SHA-256 hash of the source. This is equivalent to providing a @code{content-hash} SHA256 object in the @code{hash} field described below." msgstr "Байт-вектор, содержащий хэш SHA-256 источника. Это эквивалент предоставлению объекта SHA256 @code{content-hash} в поле @code{hash}, описанном ниже." #. type: code{#1} -#: guix-git/doc/guix.texi:7400 +#: guix-git/doc/guix.texi:7458 #, no-wrap msgid "hash" msgstr "hash" #. type: table -#: guix-git/doc/guix.texi:7403 +#: guix-git/doc/guix.texi:7461 msgid "The @code{content-hash} object of the source---see below for how to use @code{content-hash}." msgstr "Объект @code{content-hash} источника---см. ниже, как использовать @code{content-hash}." #. type: table -#: guix-git/doc/guix.texi:7407 +#: guix-git/doc/guix.texi:7465 msgid "You can obtain this information using @code{guix download} (@pxref{Invoking guix download}) or @code{guix hash} (@pxref{Invoking guix hash})." msgstr "Вы можете получить эту информацию, используя @code{guix download} (@pxref{Invoking guix download}) или @code{guix hash} (@pxref{Invoking guix hash})." #. type: item -#: guix-git/doc/guix.texi:7408 +#: guix-git/doc/guix.texi:7466 #, no-wrap msgid "@code{file-name} (default: @code{#f})" msgstr "@code{file-name} (по умолчанию: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:7414 +#: guix-git/doc/guix.texi:7472 msgid "The file name under which the source code should be saved. When this is @code{#f}, a sensible default value will be used in most cases. In case the source is fetched from a URL, the file name from the URL will be used. For version control checkouts, it is recommended to provide the file name explicitly because the default is not very descriptive." msgstr "Имя файла, под которым должен быть сохранен исходный код. Когда это @code{#f}, в большинстве случаев будет использоваться разумное значение по умолчанию. В случае, если источник извлекается из URL-адреса, будет использоваться имя файла из URL-адреса. Для проверок контроля версий рекомендуется явно указывать имя файла, поскольку значение по умолчанию не очень информативно." #. type: item -#: guix-git/doc/guix.texi:7415 +#: guix-git/doc/guix.texi:7473 #, no-wrap msgid "@code{patches} (default: @code{'()})" msgstr "@code{patches} (по умолчанию: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:7418 +#: guix-git/doc/guix.texi:7476 msgid "A list of file names, origins, or file-like objects (@pxref{G-Expressions, file-like objects}) pointing to patches to be applied to the source." msgstr "Список имен файлов, источников или объектов подобных файлами (@pxref{G-Expressions, file-like objects}), указывающих на исправления, которые будут применены к источнику." #. type: table -#: guix-git/doc/guix.texi:7422 +#: guix-git/doc/guix.texi:7480 msgid "This list of patches must be unconditional. In particular, it cannot depend on the value of @code{%current-system} or @code{%current-target-system}." msgstr "Данный список исправлений должен быть безвариативным. В частности, он не может зависеть от значения @code{%current-system} или @code{%current-target-system}." #. type: item -#: guix-git/doc/guix.texi:7423 +#: guix-git/doc/guix.texi:7481 #, no-wrap msgid "@code{snippet} (default: @code{#f})" msgstr "@code{snippet} (по умолчанию: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:7427 +#: guix-git/doc/guix.texi:7485 msgid "A G-expression (@pxref{G-Expressions}) or S-expression that will be run in the source directory. This is a convenient way to modify the source, sometimes more convenient than a patch." msgstr "G-выражение (@pxref{G-Expressions}) или S-выражение, которое будет выполнено в исходном каталоге. Это удобный способ изменить исходный код, иногда более удобный, чем патч." #. type: item -#: guix-git/doc/guix.texi:7428 +#: guix-git/doc/guix.texi:7486 #, no-wrap msgid "@code{patch-flags} (default: @code{'(\"-p1\")})" msgstr "@code{patch-flags} (по умолчанию: @code{'(\"-p1\")})" #. type: table -#: guix-git/doc/guix.texi:7431 +#: guix-git/doc/guix.texi:7489 msgid "A list of command-line flags that should be passed to the @code{patch} command." msgstr "Список флагов командной строки, которые следует передать команде @code{patch}." #. type: item -#: guix-git/doc/guix.texi:7432 +#: guix-git/doc/guix.texi:7490 #, no-wrap msgid "@code{patch-inputs} (default: @code{#f})" msgstr "@code{patch-inputs} (по умолчанию: @code{#f})\"" #. type: table -#: guix-git/doc/guix.texi:7436 +#: guix-git/doc/guix.texi:7494 msgid "Input packages or derivations to the patching process. When this is @code{#f}, the usual set of inputs necessary for patching are provided, such as GNU@tie{}Patch." msgstr "Входные пакеты или derivation'ы для процесса исправления. Когда это @code{#f}, предоставляется обычный набор входных данных, необходимых для исправления, например GNU@tie{}Patch." #. type: item -#: guix-git/doc/guix.texi:7437 guix-git/doc/guix.texi:26425 +#: guix-git/doc/guix.texi:7495 guix-git/doc/guix.texi:26762 #, no-wrap msgid "@code{modules} (default: @code{'()})" msgstr "@code{modules} (по умолчанию: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:7440 +#: guix-git/doc/guix.texi:7498 msgid "A list of Guile modules that should be loaded during the patching process and while running the code in the @code{snippet} field." msgstr "Список модулей Guile, которые должны быть загружены в процессе установки исправлений и при выполнении кода, в поле @code{snippet}." #. type: item -#: guix-git/doc/guix.texi:7441 +#: guix-git/doc/guix.texi:7499 #, no-wrap msgid "@code{patch-guile} (default: @code{#f})" msgstr "@code{patch-guile} (по умолчанию: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:7444 +#: guix-git/doc/guix.texi:7502 msgid "The Guile package that should be used in the patching process. When this is @code{#f}, a sensible default is used." msgstr "Пакет Guile, который следует использовать в процессе установки исправлений. Когда это @code{#f}, используется разумное значение по умолчанию." #. type: deftp -#: guix-git/doc/guix.texi:7447 +#: guix-git/doc/guix.texi:7505 #, no-wrap msgid "{Data Type} content-hash @var{value} [@var{algorithm}]" msgstr "{Тип данных} content-hash @var{value} [@var{algorithm}]" #. type: deftp -#: guix-git/doc/guix.texi:7451 +#: guix-git/doc/guix.texi:7509 msgid "Construct a content hash object for the given @var{algorithm}, and with @var{value} as its hash value. When @var{algorithm} is omitted, assume it is @code{sha256}." msgstr "Создать объект хэша содержимого для заданного @var{algorithm} и с @var{value} в качестве его хеш-значения. Если @var{algorithm} опущен, предполагается, что это @code{sha256}." #. type: deftp -#: guix-git/doc/guix.texi:7454 +#: guix-git/doc/guix.texi:7512 msgid "@var{value} can be a literal string, in which case it is base32-decoded, or it can be a bytevector." msgstr "@var{value} может быть буквальной строкой, и в этом случае она декодируется с помощью base32, или может быть байтовым вектором." #. type: deftp -#: guix-git/doc/guix.texi:7456 +#: guix-git/doc/guix.texi:7514 msgid "The following forms are all equivalent:" msgstr "Следующие зависимости необязательны:" #. type: lisp -#: guix-git/doc/guix.texi:7465 +#: guix-git/doc/guix.texi:7523 #, no-wrap msgid "" "(content-hash \"05zxkyz9bv3j9h0xyid1rhvh3klhsmrpkf3bcs6frvlgyr2gwilj\")\n" @@ -15664,105 +15810,105 @@ msgstr "" " sha256)\n" #. type: deftp -#: guix-git/doc/guix.texi:7470 +#: guix-git/doc/guix.texi:7528 msgid "Technically, @code{content-hash} is currently implemented as a macro. It performs sanity checks at macro-expansion time, when possible, such as ensuring that @var{value} has the right size for @var{algorithm}." msgstr "Технически @code{content-hash} в настоящее время реализован как макрос. Он выполняет проверки работоспособности во время раскрытия макроса, когда это возможно, например, гарантирует, что @var{value} имеет правильный размер для @var{algorithm}." #. type: Plain text -#: guix-git/doc/guix.texi:7476 +#: guix-git/doc/guix.texi:7534 msgid "As we have seen above, how exactly the data an origin refers to is retrieved is determined by its @code{method} field. The @code{(guix download)} module provides the most common method, @code{url-fetch}, described below." msgstr "Как мы видели выше, то, как именно извлекаются данные, на которые ссылается источник, определяется его полем @code{method}. Модуль @code{(guix download)} предоставляет наиболее распространенный метод @code{url-fetch}, описанный ниже." #. type: deffn -#: guix-git/doc/guix.texi:7477 +#: guix-git/doc/guix.texi:7535 #, no-wrap msgid "{Scheme Procedure} url-fetch @var{url} @var{hash-algo} @var{hash} @" msgstr "{Scheme Procedure} lookup-inferior-packages @var{inferior} @var{name} @" #. type: deffn -#: guix-git/doc/guix.texi:7485 +#: guix-git/doc/guix.texi:7543 msgid "[name] [#:executable? #f] Return a fixed-output derivation that fetches data from @var{url} (a string, or a list of strings denoting alternate URLs), which is expected to have hash @var{hash} of type @var{hash-algo} (a symbol). By default, the file name is the base name of URL; optionally, @var{name} can specify a different file name. When @var{executable?} is true, make the downloaded file executable." msgstr "[name] [#:executable? #f] Возвращает derivation с фиксированным выводом, которая извлекает данные из @var{url} (строка или список строк, обозначающих альтернативные URL-адреса), который, как ожидается, будет иметь хэш @var{hash} типа @var{hash-algo} (символ). По умолчанию имя файла - это базовое имя URL-адреса; при желании @var{name} может указывать другое имя файла. Если @var{executable?} истинно, загруженный файл будет исполняемым." #. type: deffn -#: guix-git/doc/guix.texi:7488 +#: guix-git/doc/guix.texi:7546 msgid "When one of the URL starts with @code{mirror://}, then its host part is interpreted as the name of a mirror scheme, taken from @file{%mirror-file}." msgstr "Когда один из URL-адресов начинается с @code{mirror://}, тогда его хост-часть интерпретируется как имя схемы зеркала, взятой из @file{%mirror-file}." #. type: deffn -#: guix-git/doc/guix.texi:7491 +#: guix-git/doc/guix.texi:7549 msgid "Alternatively, when URL starts with @code{file://}, return the corresponding file name in the store." msgstr "В качестве альтернативного варианта, если URL-адрес начинается с @code{file://}, вернуть соответствующее имя файла в store." #. type: Plain text -#: guix-git/doc/guix.texi:7497 +#: guix-git/doc/guix.texi:7555 msgid "Likewise, the @code{(guix git-download)} module defines the @code{git-fetch} origin method, which fetches data from a Git version control repository, and the @code{git-reference} data type to describe the repository and revision to fetch." msgstr "Аналогичным образом, модуль @code{(guix git-download)} определяет метод источника @code{git-download}, который извлекает данные из репозитория управления версиями Git, и тип данных @code{git-reference} для описания репозиторий и ревизия для загрузки." #. type: deffn -#: guix-git/doc/guix.texi:7498 +#: guix-git/doc/guix.texi:7556 #, no-wrap msgid "{Scheme Procedure} git-fetch @var{ref} @var{hash-algo} @var{hash}" msgstr "{Scheme Procedure} mixed-text-file @var{name} @var{text} @dots{}" #. type: deffn -#: guix-git/doc/guix.texi:7503 +#: guix-git/doc/guix.texi:7561 msgid "Return a fixed-output derivation that fetches @var{ref}, a @code{} object. The output is expected to have recursive hash @var{hash} of type @var{hash-algo} (a symbol). Use @var{name} as the file name, or a generic name if @code{#f}." msgstr "Вернуть derivation с фиксированным выводом, которая выбирает объект @var{ref}, @code{}. Ожидается, что на выходе будет рекурсивный хеш @var{hash} типа @var{hash-algo} (символ). Использовать @var{name} в качестве имени файла или общее имя, если @code{#f}." #. type: deftp -#: guix-git/doc/guix.texi:7505 +#: guix-git/doc/guix.texi:7563 #, no-wrap msgid "{Data Type} git-reference" msgstr "{Тип данных} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:7508 +#: guix-git/doc/guix.texi:7566 msgid "This data type represents a Git reference for @code{git-fetch} to retrieve." msgstr "Управление конфигурацией операционной системы." #. type: code{#1} -#: guix-git/doc/guix.texi:7510 guix-git/doc/guix.texi:24186 +#: guix-git/doc/guix.texi:7568 guix-git/doc/guix.texi:24548 #, no-wrap msgid "url" msgstr "url" #. type: table -#: guix-git/doc/guix.texi:7512 +#: guix-git/doc/guix.texi:7570 msgid "The URL of the Git repository to clone." msgstr "URL-адрес репозитория Git для клонирования." #. type: code{#1} -#: guix-git/doc/guix.texi:7513 +#: guix-git/doc/guix.texi:7571 #, no-wrap msgid "commit" msgstr "commit" #. type: table -#: guix-git/doc/guix.texi:7518 +#: guix-git/doc/guix.texi:7576 #, fuzzy #| msgid "This string denotes either the commit to fetch (a hexadecimal string, either the full SHA1 commit or a ``short'' commit string; the latter is not recommended) or the tag to fetch." msgid "This string denotes either the commit to fetch (a hexadecimal string), or the tag to fetch. You can also use a ``short'' commit ID or a @command{git describe} style identifier such as @code{v1.0.1-10-g58d7909c97}." msgstr "Эта строка обозначает либо коммит для загрузки (шестнадцатеричная строка, либо полный SHA1 коммит, либо ``short'' коммит строка; последнее не рекомендуется), либо тег." #. type: item -#: guix-git/doc/guix.texi:7519 +#: guix-git/doc/guix.texi:7577 #, no-wrap msgid "@code{recursive?} (default: @code{#f})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:7521 +#: guix-git/doc/guix.texi:7579 msgid "This Boolean indicates whether to recursively fetch Git sub-modules." msgstr "Это логическое значение (boolean) указывает, нужно ли рекурсивно получать подмодули Git." #. type: deftp -#: guix-git/doc/guix.texi:7525 +#: guix-git/doc/guix.texi:7583 msgid "The example below denotes the @code{v2.10} tag of the GNU@tie{}Hello repository:" msgstr "Пример ниже обозначает тег @code{v2.10} репозитория GNU@tie{}Hello:" #. type: lisp -#: guix-git/doc/guix.texi:7530 +#: guix-git/doc/guix.texi:7588 #, no-wrap msgid "" "(git-reference\n" @@ -15774,12 +15920,12 @@ msgstr "" " (commit \"v2.10\"))\n" #. type: deftp -#: guix-git/doc/guix.texi:7534 +#: guix-git/doc/guix.texi:7592 msgid "This is equivalent to the reference below, which explicitly names the commit:" msgstr "Это эквивалентно приведенной ниже ссылке, которая явно называет коммит:" #. type: lisp -#: guix-git/doc/guix.texi:7539 +#: guix-git/doc/guix.texi:7597 #, no-wrap msgid "" "(git-reference\n" @@ -15791,56 +15937,56 @@ msgstr "" " (commit \"dc7dc56a00e48fe6f231a58f6537139fe2908fb9\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:7545 +#: guix-git/doc/guix.texi:7603 msgid "For Mercurial repositories, the module @code{(guix hg-download)} defines the @code{hg-fetch} origin method and @code{hg-reference} data type for support of the Mercurial version control system." msgstr "Для репозиториев Mercurial, модуль @code{(guix hg-download)} определяет метод @code{hg-fetch} и тип данных @code{hg-reference} для поддержки системы контроля версий Mercurial." #. type: deffn -#: guix-git/doc/guix.texi:7546 +#: guix-git/doc/guix.texi:7604 #, no-wrap msgid "{Scheme Procedure} hg-fetch @var{ref} @var{hash-algo} @var{hash} @" msgstr "{Scheme Procedure} mixed-text-file @var{name} @var{text} @dots{}" #. type: deffn -#: guix-git/doc/guix.texi:7552 +#: guix-git/doc/guix.texi:7610 msgid "[name] Return a fixed-output derivation that fetches @var{ref}, a @code{} object. The output is expected to have recursive hash @var{hash} of type @var{hash-algo} (a symbol). Use @var{name} as the file name, or a generic name if @code{#false}." msgstr "Вернуть derivation с фиксированным выводом, которая выбирает объект @var{ref}, @code{}. Ожидается, что на выходе будет рекурсивный хеш @var{hash} типа @var{hash-algo} (символ). Использовать @var{name} в качестве имени файла или общее имя, если @code{#f}." #. type: cindex -#: guix-git/doc/guix.texi:7557 +#: guix-git/doc/guix.texi:7615 #, no-wrap msgid "customizing packages" msgstr "настройка, пакетов" #. type: cindex -#: guix-git/doc/guix.texi:7558 +#: guix-git/doc/guix.texi:7616 #, no-wrap msgid "variants, of packages" msgstr "вариантов пакетов" #. type: Plain text -#: guix-git/doc/guix.texi:7568 +#: guix-git/doc/guix.texi:7626 msgid "One of the nice things with Guix is that, given a package definition, you can easily @emph{derive} variants of that package---for a different upstream version, with different dependencies, different compilation options, and so on. Some of these custom packages can be defined straight from the command line (@pxref{Package Transformation Options}). This section describes how to define package variants in code. This can be useful in ``manifests'' (@pxref{profile-manifest, @option{--manifest}}) and in your own package collection (@pxref{Creating a Channel}), among others!" msgstr "Одна из приятных вещей в Guix заключается в том, что, учитывая определение пакета, вы можете легко @emph{наследовать} варианты этого пакета---для другой версии, с разными зависимостями, разными параметрами компиляции и так далее. Некоторые из этих пользовательских пакетов можно определить прямо из командной строки (@pxref{Package Transformation Options}). В этом разделе описывается, как определять варианты пакета в коде. Это также может быть полезно в ``манифестах'' (@pxref{profile-manifest, @option{--manifest}}) и в вашей собственной коллекции пакетов (@pxref{Creating a Channel})!" #. type: cindex -#: guix-git/doc/guix.texi:7569 +#: guix-git/doc/guix.texi:7627 #, no-wrap msgid "inherit, for package definitions" msgstr "наследование для описаниях пакетов" #. type: Plain text -#: guix-git/doc/guix.texi:7576 +#: guix-git/doc/guix.texi:7634 msgid "As discussed earlier, packages are first-class objects in the Scheme language. The @code{(guix packages)} module provides the @code{package} construct to define new package objects (@pxref{package Reference}). The easiest way to define a package variant is using the @code{inherit} keyword together with @code{package}. This allows you to inherit from a package definition while overriding the fields you want." msgstr "Как обсуждалось ранее, пакеты---это объекты первого класса на языке Scheme. Модуль @code{(guix packages)} предоставляет конструкцию @code{package} для определения новых объектов пакета (@pxref{package Reference}). Самый простой способ определить вариант пакета---использовать ключевое слово @code{inherit} вместе с @code{package}. Это позволяет вам наследовать от определения пакета, переопределяя нужные поля." #. type: Plain text -#: guix-git/doc/guix.texi:7581 +#: guix-git/doc/guix.texi:7639 msgid "For example, given the @code{hello} variable, which contains a definition for the current version of GNU@tie{}Hello, here's how you would define a variant for version 2.2 (released in 2006, it's vintage!):" msgstr "Например, учитывая переменную @code{hello}, которая содержит определение для текущей версии GNU@tie{}Hello, вот как вы могли бы определить вариант для версии 2.2 (выпущенной в 2006 году, это винтаж!):" #. type: lisp -#: guix-git/doc/guix.texi:7584 +#: guix-git/doc/guix.texi:7642 #, no-wrap msgid "" "(use-modules (gnu packages base)) ;for 'hello'\n" @@ -15850,7 +15996,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7596 +#: guix-git/doc/guix.texi:7654 #, no-wrap msgid "" "(define hello-2.2\n" @@ -15878,17 +16024,17 @@ msgstr "" " \"0lappv4slgb5spyqbh6yl5r013zv72yqg2pcl30mginf3wdqd8k9\"))))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:7605 +#: guix-git/doc/guix.texi:7663 msgid "The example above corresponds to what the @option{--with-source} package transformation option does. Essentially @code{hello-2.2} preserves all the fields of @code{hello}, except @code{version} and @code{source}, which it overrides. Note that the original @code{hello} variable is still there, in the @code{(gnu packages base)} module, unchanged. When you define a custom package like this, you are really @emph{adding} a new package definition; the original one remains available." msgstr "Приведенный выше пример соответствует тому, что делает опция преобразования пакета @option{--with-source}. По сути, @code{hello-2.2} сохраняет все поля @code{hello}, кроме @code{version} и @code{source}, которые переопределяется. Обратите внимание, что исходная переменная @code{hello} все еще присутствует в модуле @code{(gnu packages base)} без изменений. Когда вы определяете собственный пакет таким образом, вы на самом деле @emph{добавляете} новое определение пакета; оригинал остается доступным." #. type: Plain text -#: guix-git/doc/guix.texi:7611 +#: guix-git/doc/guix.texi:7669 msgid "You can just as well define variants with a different set of dependencies than the original package. For example, the default @code{gdb} package depends on @code{guile}, but since that is an optional dependency, you can define a variant that removes that dependency like so:" msgstr "Вы также можете определить варианты с другим набором зависимостей, чем исходный пакет. Например, пакет @code{gdb} по умолчанию зависит от @code{guile}, но поскольку это необязательная зависимость, вы можете определить вариант, который удаляет эту зависимость следующим образом:" #. type: lisp -#: guix-git/doc/guix.texi:7614 +#: guix-git/doc/guix.texi:7672 #, fuzzy, no-wrap #| msgid "" #| "(use-modules (gnu packages base)) ;for 'hello'\n" @@ -15901,7 +16047,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7620 +#: guix-git/doc/guix.texi:7678 #, fuzzy, no-wrap #| msgid "" #| "(define gdb-sans-guile\n" @@ -15923,65 +16069,65 @@ msgstr "" " (package-inputs gdb)))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:7626 +#: guix-git/doc/guix.texi:7684 msgid "The @code{modify-inputs} form above removes the @code{\"guile\"} package from the @code{inputs} field of @code{gdb}. The @code{modify-inputs} macro is a helper that can prove useful anytime you want to remove, add, or replace package inputs." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7627 +#: guix-git/doc/guix.texi:7685 #, fuzzy, no-wrap #| msgid "{Scheme Syntax} modify-phases @var{phases} @var{clause}@dots{}" msgid "{Scheme Syntax} modify-inputs @var{inputs} @var{clauses}" msgstr "{Scheme Syntax} let-system @var{system} @var{body}@dots{}" #. type: deffn -#: guix-git/doc/guix.texi:7631 +#: guix-git/doc/guix.texi:7689 msgid "Modify the given package inputs, as returned by @code{package-inputs} & co., according to the given clauses. Each clause must have one of the following forms:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:7633 +#: guix-git/doc/guix.texi:7691 #, fuzzy, no-wrap #| msgid "(service @var{type})\n" msgid "(delete @var{name}@dots{})" msgstr "(service @var{type})\n" #. type: table -#: guix-git/doc/guix.texi:7635 +#: guix-git/doc/guix.texi:7693 msgid "Delete from the inputs packages with the given @var{name}s (strings)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7636 +#: guix-git/doc/guix.texi:7694 #, fuzzy, no-wrap #| msgid "-i @var{package} @dots{}" msgid "(append @var{package}@dots{})" msgstr "-i @var{package} @dots{}" #. type: table -#: guix-git/doc/guix.texi:7638 +#: guix-git/doc/guix.texi:7696 msgid "Add @var{package}s to the end of the input list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7639 +#: guix-git/doc/guix.texi:7697 #, fuzzy, no-wrap #| msgid "-r @var{package} @dots{}" msgid "(prepend @var{package}@dots{})" msgstr "-r @var{package} @dots{}" #. type: table -#: guix-git/doc/guix.texi:7641 +#: guix-git/doc/guix.texi:7699 msgid "Add @var{package}s to the front of the input list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7645 +#: guix-git/doc/guix.texi:7703 msgid "The example below removes the GMP and ACL inputs of Coreutils and adds libcap to the back of the input list:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7650 +#: guix-git/doc/guix.texi:7708 #, no-wrap msgid "" "(modify-inputs (package-inputs coreutils)\n" @@ -15990,12 +16136,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7654 +#: guix-git/doc/guix.texi:7712 msgid "The example below replaces the @code{guile} package from the inputs of @code{guile-redis} with @code{guile-2.2}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7658 +#: guix-git/doc/guix.texi:7716 #, no-wrap msgid "" "(modify-inputs (package-inputs guile-redis)\n" @@ -16003,17 +16149,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7662 +#: guix-git/doc/guix.texi:7720 msgid "The last type of clause is @code{prepend}, to add inputs to the front of the list." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7671 +#: guix-git/doc/guix.texi:7729 msgid "In some cases, you may find it useful to write functions (``procedures'', in Scheme parlance) that return a package based on some parameters. For example, consider the @code{luasocket} library for the Lua programming language. We want to create @code{luasocket} packages for major versions of Lua. One way to do that is to define a procedure that takes a Lua package and returns a @code{luasocket} package that depends on it:" msgstr "В некоторых случаях вам может быть полезно написать функции (``процедуры'' Scheme), которые возвращают пакет на основе некоторых параметров. Например, рассмотрим библиотеку @code{luasocket} для языка программирования Lua. Мы хотим создать пакеты @code{luasocket} для основных версий Lua. Один из способов сделать это---определить процедуру, которая принимает пакет Lua и возвращает зависящий от него пакет @code{luasocket}:" #. type: lisp -#: guix-git/doc/guix.texi:7681 +#: guix-git/doc/guix.texi:7739 #, fuzzy, no-wrap #| msgid "" #| "(define (make-lua-socket name lua)\n" @@ -16049,7 +16195,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7684 +#: guix-git/doc/guix.texi:7742 #, no-wrap msgid "" "(define-public lua5.1-socket\n" @@ -16061,7 +16207,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7687 +#: guix-git/doc/guix.texi:7745 #, no-wrap msgid "" "(define-public lua5.2-socket\n" @@ -16071,34 +16217,34 @@ msgstr "" " (make-lua-socket \"lua5.2-socket\" lua-5.2))\n" #. type: Plain text -#: guix-git/doc/guix.texi:7695 +#: guix-git/doc/guix.texi:7753 msgid "Here we have defined packages @code{lua5.1-socket} and @code{lua5.2-socket} by calling @code{make-lua-socket} with different arguments. @xref{Procedures,,, guile, GNU Guile Reference Manual}, for more info on procedures. Having top-level public definitions for these two packages means that they can be referred to from the command line (@pxref{Package Modules})." msgstr "Здесь мы определили пакеты @code{lua5.1-socket} и @code{lua5.2-socket}, вызвав @code{make-lua-socket} с разными аргументами. См. @xref{Procedures,,, guile, GNU Guile Reference Manual}, для получения дополнительной информации о процедурах. Наличие общедоступных определений верхнего уровня для этих двух пакетов означает, что на них можно ссылаться из командной строки (@pxref{Package Modules})." #. type: cindex -#: guix-git/doc/guix.texi:7696 +#: guix-git/doc/guix.texi:7754 #, no-wrap msgid "package transformations" msgstr "пакетные преобразования" #. type: Plain text -#: guix-git/doc/guix.texi:7701 +#: guix-git/doc/guix.texi:7759 msgid "These are pretty simple package variants. As a convenience, the @code{(guix transformations)} module provides a high-level interface that directly maps to the more sophisticated package transformation options (@pxref{Package Transformation Options}):" msgstr "Это довольно простые варианты пакета. Для удобства модуль @code{(guix transformations)} предоставляет высокоуровневый интерфейс, который напрямую сопоставляется с более сложными параметрами преобразования пакетов (@pxref{Package Transformation Options}):" #. type: deffn -#: guix-git/doc/guix.texi:7702 +#: guix-git/doc/guix.texi:7760 #, no-wrap msgid "{Scheme Procedure} options->transformation @var{opts}" msgstr "{Процедура Scheme} open-inferior @var{directory} @" #. type: deffn -#: guix-git/doc/guix.texi:7706 +#: guix-git/doc/guix.texi:7764 msgid "Return a procedure that, when passed an object to build (package, derivation, etc.), applies the transformations specified by @var{opts} and returns the resulting objects. @var{opts} must be a list of symbol/string pairs such as:" msgstr "Возвращает процедуру, которая при передаче объекта для сборки (пакета, производной и т. д.), применяет преобразования, указанные в @var{opts}, и возвращает результирующие объекты. @var{opts} должен быть списком пар символ/строка, например:" #. type: lisp -#: guix-git/doc/guix.texi:7710 +#: guix-git/doc/guix.texi:7768 #, no-wrap msgid "" "((with-branch . \"guile-gcrypt=master\")\n" @@ -16108,17 +16254,17 @@ msgstr "" "(without-tests . \"libgcrypt\"))\n" #. type: deffn -#: guix-git/doc/guix.texi:7714 +#: guix-git/doc/guix.texi:7772 msgid "Each symbol names a transformation and the corresponding string is an argument to that transformation." msgstr "Каждый символ именует преобразование, а соответствующая строка (string) является аргументом этого преобразования." #. type: Plain text -#: guix-git/doc/guix.texi:7717 +#: guix-git/doc/guix.texi:7775 msgid "For instance, a manifest equivalent to this command:" msgstr "Например, команда:" #. type: example -#: guix-git/doc/guix.texi:7722 +#: guix-git/doc/guix.texi:7780 #, no-wrap msgid "" "guix build guix \\\n" @@ -16130,12 +16276,12 @@ msgstr "" " --with-debug-info=zlib\n" #. type: Plain text -#: guix-git/doc/guix.texi:7726 +#: guix-git/doc/guix.texi:7784 msgid "... would look like this:" msgstr "Вывод должен быть таким:" #. type: lisp -#: guix-git/doc/guix.texi:7729 +#: guix-git/doc/guix.texi:7787 #, no-wrap msgid "" "(use-modules (guix transformations))\n" @@ -16145,7 +16291,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7735 +#: guix-git/doc/guix.texi:7793 #, no-wrap msgid "" "(define transform\n" @@ -16163,7 +16309,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7738 +#: guix-git/doc/guix.texi:7796 #, no-wrap msgid "" "(packages->manifest\n" @@ -16173,50 +16319,50 @@ msgstr "" "(list (transform (specification->package \"guix\"))))\n" #. type: cindex -#: guix-git/doc/guix.texi:7740 +#: guix-git/doc/guix.texi:7798 #, no-wrap msgid "input rewriting" msgstr "перезапись input" #. type: cindex -#: guix-git/doc/guix.texi:7741 +#: guix-git/doc/guix.texi:7799 #, no-wrap msgid "dependency graph rewriting" msgstr "перезапись дерева зависимостей" #. type: Plain text -#: guix-git/doc/guix.texi:7748 +#: guix-git/doc/guix.texi:7806 msgid "The @code{options->transformation} procedure is convenient, but it's perhaps also not as flexible as you may like. How is it implemented? The astute reader probably noticed that most package transformation options go beyond the superficial changes shown in the first examples of this section: they involve @dfn{input rewriting}, whereby the dependency graph of a package is rewritten by replacing specific inputs by others." msgstr "Процедура @code{options-> transformation} удобна, но, возможно, не так гибка, как вам хотелось бы. Как это реализовано? Проницательный читатель, вероятно, заметил, что большинство вариантов преобразования пакетов выходят за рамки поверхностных изменений, показанных в первых примерах этого раздела: они включают @dfn{перезапись входных данных}, в результате чего граф зависимостей пакета переписывается путем замены определенных входных данных другими." #. type: Plain text -#: guix-git/doc/guix.texi:7752 +#: guix-git/doc/guix.texi:7810 msgid "Dependency graph rewriting, for the purposes of swapping packages in the graph, is what the @code{package-input-rewriting} procedure in @code{(guix packages)} implements." msgstr "Перезапись графа зависимостей для замены пакетов в графе реализуется процедурой @code{package-input-rewriting} в @code{(guix packages)}." #. type: deffn -#: guix-git/doc/guix.texi:7753 +#: guix-git/doc/guix.texi:7811 #, no-wrap msgid "{Scheme Procedure} package-input-rewriting @var{replacements} @" msgstr "{Процедура Scheme} package-input-rewriting @var{replacements} @" #. type: deffn -#: guix-git/doc/guix.texi:7760 +#: guix-git/doc/guix.texi:7818 msgid "[@var{rewrite-name}] [#:deep? #t] Return a procedure that, when passed a package, replaces its direct and indirect dependencies, including implicit inputs when @var{deep?} is true, according to @var{replacements}. @var{replacements} is a list of package pairs; the first element of each pair is the package to replace, and the second one is the replacement." msgstr "[@var{rewrite-name}] [#:deep? #t] Возвращает процедуру, которая при передаче пакета заменяет его прямые и косвенные зависимости, включая неявные входы, когда @var{deep?} истинна, согласно @var{replacements}. @var{replacements} - это список пар пакетов; первый элемент каждой пары - это заменяемый пакет, а второй - заменяющий." #. type: deffn -#: guix-git/doc/guix.texi:7763 +#: guix-git/doc/guix.texi:7821 msgid "Optionally, @var{rewrite-name} is a one-argument procedure that takes the name of a package and returns its new name after rewrite." msgstr "При необходимости, @var{rewrite-name} - это процедура с одним аргументом, которая принимает имя пакета и возвращает его новое имя после перезаписи." #. type: table -#: guix-git/doc/guix.texi:7767 guix-git/doc/guix.texi:11216 +#: guix-git/doc/guix.texi:7825 guix-git/doc/guix.texi:11530 msgid "Consider this example:" msgstr "Рассмотрим пример:" #. type: lisp -#: guix-git/doc/guix.texi:7773 +#: guix-git/doc/guix.texi:7831 #, no-wrap msgid "" "(define libressl-instead-of-openssl\n" @@ -16232,7 +16378,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:7776 +#: guix-git/doc/guix.texi:7834 #, no-wrap msgid "" "(define git-with-libressl\n" @@ -16242,33 +16388,33 @@ msgstr "" " (libressl-instead-of-openssl git))\n" #. type: Plain text -#: guix-git/doc/guix.texi:7784 +#: guix-git/doc/guix.texi:7842 msgid "Here we first define a rewriting procedure that replaces @var{openssl} with @var{libressl}. Then we use it to define a @dfn{variant} of the @var{git} package that uses @var{libressl} instead of @var{openssl}. This is exactly what the @option{--with-input} command-line option does (@pxref{Package Transformation Options, @option{--with-input}})." msgstr "Здесь мы сначала определяем процедуру перезаписи, которая заменяет @var{openssl} на @var{libressl}. Затем мы используем это, чтобы определить @dfn{вариант} пакета @var{git}, который использует @var{libressl} вместо @var{openssl}. Это именно то, что делает параметр командной строки @option{--with-input} (@pxref{Package Transformation Options, @option{--with-input}})." #. type: Plain text -#: guix-git/doc/guix.texi:7787 +#: guix-git/doc/guix.texi:7845 msgid "The following variant of @code{package-input-rewriting} can match packages to be replaced by name rather than by identity." msgstr "Следующий вариант @code{package-input-rewriting} может сопоставлять пакеты, подлежащие замене, по имени, а не по идентификатору." #. type: deffn -#: guix-git/doc/guix.texi:7788 +#: guix-git/doc/guix.texi:7846 #, no-wrap msgid "{Scheme Procedure} package-input-rewriting/spec @var{replacements} [#:deep? #t]" msgstr "{Процедура Scheme} inferior-package-inputs @var{package}" #. type: deffn -#: guix-git/doc/guix.texi:7795 +#: guix-git/doc/guix.texi:7853 msgid "Return a procedure that, given a package, applies the given @var{replacements} to all the package graph, including implicit inputs unless @var{deep?} is false. @var{replacements} is a list of spec/procedures pair; each spec is a package specification such as @code{\"gcc\"} or @code{\"guile@@2\"}, and each procedure takes a matching package and returns a replacement for that package." msgstr "Возвращает процедуру, которая для данного пакета применяет заданные @var{replacements} ко всему графу пакета, включая неявные входные данные, если @var{deep?} не ложно. @var{replacements} - это список пары спецификация/процедуры; каждая спецификация - это спецификация пакета, такая как @code{\"gcc\"} или @code{\"guile@@2\"}, и каждая процедура берет соответствующий пакет и возвращает замену для этого пакета." #. type: Plain text -#: guix-git/doc/guix.texi:7798 +#: guix-git/doc/guix.texi:7856 msgid "The example above could be rewritten this way:" msgstr "Приведенный выше пример можно переписать так:" #. type: lisp -#: guix-git/doc/guix.texi:7803 +#: guix-git/doc/guix.texi:7861 #, no-wrap msgid "" "(define libressl-instead-of-openssl\n" @@ -16280,872 +16426,872 @@ msgstr "" " (package-input-rewriting/spec `((\"openssl\" . ,(const libressl)))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:7808 +#: guix-git/doc/guix.texi:7866 msgid "The key difference here is that, this time, packages are matched by spec and not by identity. In other words, any package in the graph that is called @code{openssl} will be replaced." msgstr "Ключевое отличие здесь в том, что на этот раз пакеты сопоставляются по спецификации, а не по идентичности. Другими словами, любой пакет в графе, который называется @code{openssl}, будет заменен." #. type: Plain text -#: guix-git/doc/guix.texi:7812 +#: guix-git/doc/guix.texi:7870 msgid "A more generic procedure to rewrite a package dependency graph is @code{package-mapping}: it supports arbitrary changes to nodes in the graph." msgstr "Более общая процедура для перезаписи графа зависимостей пакетов - это @code{package-mapping}: она поддерживает произвольные изменения узлов в графе." #. type: deffn -#: guix-git/doc/guix.texi:7813 +#: guix-git/doc/guix.texi:7871 #, no-wrap msgid "{Scheme Procedure} package-mapping @var{proc} [@var{cut?}] [#:deep? #f]" msgstr "{Процедура Scheme} inferior-package-location @var{package}" #. type: deffn -#: guix-git/doc/guix.texi:7818 +#: guix-git/doc/guix.texi:7876 msgid "Return a procedure that, given a package, applies @var{proc} to all the packages depended on and returns the resulting package. The procedure stops recursion when @var{cut?} returns true for a given package. When @var{deep?} is true, @var{proc} is applied to implicit inputs as well." msgstr "Вернуть процедуру, которая для данного пакета применяет @var{proc} ко всем зависимым пакетам и возвращает полученный пакет. Процедура останавливает рекурсию, когда @var{cut?} возвращает истину для данного пакета. Когда @var{deep?} истинно, @var{proc} также применяется к неявным входным данным." #. type: cindex -#: guix-git/doc/guix.texi:7824 +#: guix-git/doc/guix.texi:7882 #, no-wrap msgid "build system" msgstr "система сборки" #. type: Plain text -#: guix-git/doc/guix.texi:7829 +#: guix-git/doc/guix.texi:7887 msgid "Each package definition specifies a @dfn{build system} and arguments for that build system (@pxref{Defining Packages}). This @code{build-system} field represents the build procedure of the package, as well as implicit dependencies of that build procedure." msgstr "В каждом определении пакета указывается @dfn{система сборки} и аргументы для этой системы сборки (@pxref{Defining Packages}). Это поле @code{build-system} представляет процедуру сборки пакета, а также неявные зависимости этой процедуры сборки." #. type: Plain text -#: guix-git/doc/guix.texi:7833 +#: guix-git/doc/guix.texi:7891 msgid "Build systems are @code{} objects. The interface to create and manipulate them is provided by the @code{(guix build-system)} module, and actual build systems are exported by specific modules." msgstr "Системы сборки - это объекты @code{}. Интерфейс для их создания и управления ими предоставляется модулем @code{(guix build-system)}, а фактические системы сборки экспортируются определенными модулями." #. type: cindex -#: guix-git/doc/guix.texi:7834 +#: guix-git/doc/guix.texi:7892 #, no-wrap msgid "bag (low-level package representation)" msgstr "мешок (низкоуровневое представление пакета)" #. type: Plain text -#: guix-git/doc/guix.texi:7844 +#: guix-git/doc/guix.texi:7902 msgid "Under the hood, build systems first compile package objects to @dfn{bags}. A @dfn{bag} is like a package, but with less ornamentation---in other words, a bag is a lower-level representation of a package, which includes all the inputs of that package, including some that were implicitly added by the build system. This intermediate representation is then compiled to a derivation (@pxref{Derivations}). The @code{package-with-c-toolchain} is an example of a way to change the implicit inputs that a package's build system pulls in (@pxref{package Reference, @code{package-with-c-toolchain}})." msgstr "Под капотом системы сборки сначала компилируют объекты пакета в @dfn{bag}. @dfn{bag} похож на пакет, но с меньшим количеством украшений---другими словами, bag - это представление пакета нижнего уровня, которое включает в себя все входные данные этого пакета, включая те, которые были неявно добавлены система сборки. Это промежуточное представление затем компилируется в derivation (@pxref{Derivations}). @code{package-with-c-toolchain} - это пример способа изменить неявные входные данные, которые использует система сборки пакета (@pxref{package Reference, @code{package-with-c-toolchain}})." #. type: Plain text -#: guix-git/doc/guix.texi:7852 +#: guix-git/doc/guix.texi:7910 msgid "Build systems accept an optional list of @dfn{arguments}. In package definitions, these are passed @i{via} the @code{arguments} field (@pxref{Defining Packages}). They are typically keyword arguments (@pxref{Optional Arguments, keyword arguments in Guile,, guile, GNU Guile Reference Manual}). The value of these arguments is usually evaluated in the @dfn{build stratum}---i.e., by a Guile process launched by the daemon (@pxref{Derivations})." msgstr "Системы сборки принимают необязательный список из @dfn{arguments}. В определениях пакетов они передаются @i{через} поле @code{arguments} (@pxref{Defining Packages}). Обычно это аргументы ключевого слова (@pxref{Optional Arguments, keyword arguments in Guile,, guile, GNU Guile Reference Manual}). Значение этих аргументов обычно оценивается в @dfn{build stratum}---то есть процессом Guile, запущенным демоном (@pxref{Derivations})." #. type: Plain text -#: guix-git/doc/guix.texi:7856 +#: guix-git/doc/guix.texi:7914 msgid "The main build system is @code{gnu-build-system}, which implements the standard build procedure for GNU and many other packages. It is provided by the @code{(guix build-system gnu)} module." msgstr "Основная система сборки - это @code{gnu-build-system}, которая реализует стандартную процедуру сборки для GNU и многих других пакетов. Она предоставляется модулем @code{(guix build-system gnu)}." #. type: defvr -#: guix-git/doc/guix.texi:7857 +#: guix-git/doc/guix.texi:7915 #, no-wrap msgid "{Scheme Variable} gnu-build-system" msgstr "{Scheme Variable} gnu-build-system" #. type: defvr -#: guix-git/doc/guix.texi:7861 +#: guix-git/doc/guix.texi:7919 msgid "@code{gnu-build-system} represents the GNU Build System, and variants thereof (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards})." msgstr "@code{gnu-build-system} представляет систему сборки GNU и ее варианты (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards})." #. type: cindex -#: guix-git/doc/guix.texi:7862 guix-git/doc/guix.texi:8812 -#: guix-git/doc/guix.texi:9294 +#: guix-git/doc/guix.texi:7920 guix-git/doc/guix.texi:8869 +#: guix-git/doc/guix.texi:9429 #, no-wrap msgid "build phases" msgstr "build phases" #. type: defvr -#: guix-git/doc/guix.texi:7869 +#: guix-git/doc/guix.texi:7927 msgid "In a nutshell, packages using it are configured, built, and installed with the usual @code{./configure && make && make check && make install} command sequence. In practice, a few additional steps are often needed. All these steps are split up in separate @dfn{phases}. @xref{Build Phases}, for more info on build phases and ways to customize them." msgstr "Вкратце, пакеты, использующие его, настраиваются, собираются и устанавливаются с помощью обычной последовательности команд @code{./ configure && make && make check && make install}. На практике часто требуется несколько дополнительных шагов. Все эти шаги разбиты на отдельные @dfn{фазы}. @xref{Build Phases}, чтобы узнать больше о фазах сборки и способах их настройки." #. type: defvr -#: guix-git/doc/guix.texi:7876 +#: guix-git/doc/guix.texi:7934 msgid "In addition, this build system ensures that the ``standard'' environment for GNU packages is available. This includes tools such as GCC, libc, Coreutils, Bash, Make, Diffutils, grep, and sed (see the @code{(guix build-system gnu)} module for a complete list). We call these the @dfn{implicit inputs} of a package, because package definitions do not have to mention them." msgstr "Кроме того, эта система сборки гарантирует, что доступна ``стандартная'' среда для пакетов GNU. Сюда входят такие инструменты, как GCC, libc, Coreutils, Bash, Make, Diffutils, grep и sed (полный список см. в модуле @code{(guix build-system gnu)}). Мы называем их @dfn{неявными входами} пакета, потому что в определениях пакетов они не упоминаются." #. type: defvr -#: guix-git/doc/guix.texi:7880 +#: guix-git/doc/guix.texi:7938 msgid "This build system supports a number of keyword arguments, which can be passed @i{via} the @code{arguments} field of a package. Here are some of the main parameters:" msgstr "Эта система сборки поддерживает ряд ключевых аргументов, которые можно передать @i{через} поле @code{arguments} пакета. Вот некоторые из основных параметров:" #. type: item -#: guix-git/doc/guix.texi:7882 +#: guix-git/doc/guix.texi:7940 #, no-wrap msgid "#:phases" msgstr "build phases" #. type: table -#: guix-git/doc/guix.texi:7885 +#: guix-git/doc/guix.texi:7943 msgid "This argument specifies build-side code that evaluates to an alist of build phases. @xref{Build Phases}, for more information." msgstr "Считать список каналов из файла @var{file} вместо @file{~/.config/guix/channels.scm}. @var{file} должен содержать код Scheme, который определяет список объектов \"канал\". См. @xref{Channels} для подробной информации." #. type: item -#: guix-git/doc/guix.texi:7886 +#: guix-git/doc/guix.texi:7944 #, no-wrap msgid "#:configure-flags" msgstr "Конфигурирование системы" #. type: table -#: guix-git/doc/guix.texi:7889 +#: guix-git/doc/guix.texi:7947 msgid "This is a list of flags (strings) passed to the @command{configure} script. @xref{Defining Packages}, for an example." msgstr "Это список флагов (строк), переданных в сценарий (script) @command{configure}. См. @xref{Defining Packages}." #. type: item -#: guix-git/doc/guix.texi:7890 +#: guix-git/doc/guix.texi:7948 #, no-wrap msgid "#:make-flags" msgstr "#:make-flags" #. type: table -#: guix-git/doc/guix.texi:7894 +#: guix-git/doc/guix.texi:7952 msgid "This list of strings contains flags passed as arguments to @command{make} invocations in the @code{build}, @code{check}, and @code{install} phases." msgstr "Этот список строк содержит флаги, передаваемые в качестве аргументов для вызовов @command{make} на этапах @code{build}, @code{check} и @code{install}." #. type: item -#: guix-git/doc/guix.texi:7895 +#: guix-git/doc/guix.texi:7953 #, no-wrap msgid "#:out-of-source?" msgstr "#:out-of-source?" #. type: table -#: guix-git/doc/guix.texi:7898 +#: guix-git/doc/guix.texi:7956 msgid "This Boolean, @code{#f} by default, indicates whether to run builds in a build directory separate from the source tree." msgstr "Это логическое значение, @code{#f} по умолчанию, указывает, следует ли запускать сборки в каталоге сборки отдельно от исходников." #. type: table -#: guix-git/doc/guix.texi:7903 +#: guix-git/doc/guix.texi:7961 msgid "When it is true, the @code{configure} phase creates a separate build directory, changes to that directory, and runs the @code{configure} script from there. This is useful for packages that require it, such as @code{glibc}." msgstr "Когда это значение истинно, на этапе @code{configure} создается отдельный каталог сборки, происходит переход в этот каталог и оттуда запускается сценарий @code{configure}. Это полезно для пакетов, которым это необходимо, таких как @code{glibc}." #. type: item -#: guix-git/doc/guix.texi:7904 +#: guix-git/doc/guix.texi:7962 #, no-wrap msgid "#:tests?" msgstr "#:tests?" #. type: table -#: guix-git/doc/guix.texi:7907 +#: guix-git/doc/guix.texi:7965 msgid "This Boolean, @code{#t} by default, indicates whether the @code{check} phase should run the package's test suite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7908 +#: guix-git/doc/guix.texi:7966 #, no-wrap msgid "#:test-target" msgstr "#:test-target" #. type: table -#: guix-git/doc/guix.texi:7911 +#: guix-git/doc/guix.texi:7969 msgid "This string, @code{\"check\"} by default, gives the name of the makefile target used by the @code{check} phase." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7912 +#: guix-git/doc/guix.texi:7970 #, no-wrap msgid "#:parallel-build?" msgstr "#:parallel-build?" #. type: itemx -#: guix-git/doc/guix.texi:7913 +#: guix-git/doc/guix.texi:7971 #, no-wrap msgid "#:parallel-tests?" msgstr "#:parallel-tests?" #. type: table -#: guix-git/doc/guix.texi:7920 +#: guix-git/doc/guix.texi:7978 msgid "These Boolean values specify whether to build, respectively run the test suite, in parallel, with the @code{-j} flag of @command{make}. When they are true, @code{make} is passed @code{-j@var{n}}, where @var{n} is the number specified as the @option{--cores} option of @command{guix-daemon} or that of the @command{guix} client command (@pxref{Common Build Options, @option{--cores}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7921 +#: guix-git/doc/guix.texi:7979 #, no-wrap msgid "RUNPATH, validation" msgstr "" #. type: item -#: guix-git/doc/guix.texi:7922 +#: guix-git/doc/guix.texi:7980 #, no-wrap msgid "#:validate-runpath?" msgstr "#:validate-runpath?" #. type: table -#: guix-git/doc/guix.texi:7926 +#: guix-git/doc/guix.texi:7984 msgid "This Boolean, @code{#t} by default, determines whether to ``validate'' the @code{RUNPATH} of ELF binaries (@code{.so} shared libraries as well as executables) previously installed by the @code{install} phase." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7934 +#: guix-git/doc/guix.texi:7992 msgid "This validation step consists in making sure that all the shared libraries needed by an ELF binary, which are listed as @code{DT_NEEDED} entries in its @code{PT_DYNAMIC} segment, appear in the @code{DT_RUNPATH} entry of that binary. In other words, it ensures that running or using those binaries will not result in a ``file not found'' error at run time. @xref{Options, @option{-rpath},, ld, The GNU Linker}, for more information on @code{RUNPATH}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7935 +#: guix-git/doc/guix.texi:7993 #, no-wrap msgid "#:substitutable?" msgstr "#:substitutable?" #. type: table -#: guix-git/doc/guix.texi:7939 +#: guix-git/doc/guix.texi:7997 msgid "This Boolean, @code{#t} by default, tells whether the package outputs should be substitutable---i.e., whether users should be able to obtain substitutes for them instead of building locally (@pxref{Substitutes})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7940 +#: guix-git/doc/guix.texi:7998 #, no-wrap msgid "#:allowed-references" msgstr "--references" #. type: itemx -#: guix-git/doc/guix.texi:7941 +#: guix-git/doc/guix.texi:7999 #, no-wrap msgid "#:disallowed-references" msgstr "--references" #. type: table -#: guix-git/doc/guix.texi:7946 +#: guix-git/doc/guix.texi:8004 msgid "When true, these arguments must be a list of dependencies that must not appear among the references of the build results. If, upon build completion, some of these references are retained, the build process fails." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7951 +#: guix-git/doc/guix.texi:8009 msgid "This is useful to ensure that a package does not erroneously keep a reference to some of it build-time inputs, in cases where doing so would, for example, unnecessarily increase its size (@pxref{Invoking guix size})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7954 +#: guix-git/doc/guix.texi:8012 msgid "Most other build systems support these keyword arguments." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7961 +#: guix-git/doc/guix.texi:8019 msgid "Other @code{} objects are defined to support other conventions and tools used by free software packages. They inherit most of @code{gnu-build-system}, and differ mainly in the set of inputs implicitly added to the build process, and in the list of phases executed. Some of these build systems are listed below." msgstr "Другие объекты @code{} определены для поддержки других соглашений и инструментов, используемых пакетами свободного программного обеспечения. Они наследуют большую часть @code{gnu-build-system} и различаются в основном набором входных данных, неявно добавляемых в процесс сборки, и списком выполняемых фаз. Некоторые из этих систем сборки перечислены ниже." #. type: defvr -#: guix-git/doc/guix.texi:7962 +#: guix-git/doc/guix.texi:8020 #, no-wrap msgid "{Scheme Variable} ant-build-system" msgstr "{Scheme Variable} ant-build-system" #. type: defvr -#: guix-git/doc/guix.texi:7966 +#: guix-git/doc/guix.texi:8024 msgid "This variable is exported by @code{(guix build-system ant)}. It implements the build procedure for Java packages that can be built with @url{https://ant.apache.org/, Ant build tool}." msgstr "Эта переменная экспортируется @code{(guix build-system ant)}. Она реализует процедуру сборки пакетов Java, которые можно собрать с помощью @url{https://ant.apache.org/, Ant build tool}." #. type: defvr -#: guix-git/doc/guix.texi:7971 +#: guix-git/doc/guix.texi:8029 msgid "It adds both @code{ant} and the @dfn{Java Development Kit} (JDK) as provided by the @code{icedtea} package to the set of inputs. Different packages can be specified with the @code{#:ant} and @code{#:jdk} parameters, respectively." msgstr "Она добавляет к набору входных данных как @code{ant}, так и @dfn{Java Development Kit} (JDK), предоставленные пакетом @code{icedtea}. Различные пакеты можно указать с помощью параметров @code{#:ant} и @code{#:jdk} соответственно." #. type: defvr -#: guix-git/doc/guix.texi:7977 +#: guix-git/doc/guix.texi:8035 msgid "When the original package does not provide a suitable Ant build file, the parameter @code{#:jar-name} can be used to generate a minimal Ant build file @file{build.xml} with tasks to build the specified jar archive. In this case the parameter @code{#:source-dir} can be used to specify the source sub-directory, defaulting to ``src''." msgstr "Когда исходный пакет не предоставляет подходящий файл сборки Ant, параметр @code{#:jar-name} можно использовать для создания минимального файла сборки Ant @file{build.xml} с задачами для создания указанного архива jar. В этом случае параметр @code{#:source-dir} можно использовать для указания подкаталога источника, по умолчанию - src." #. type: defvr -#: guix-git/doc/guix.texi:7985 +#: guix-git/doc/guix.texi:8043 msgid "The @code{#:main-class} parameter can be used with the minimal ant buildfile to specify the main class of the resulting jar. This makes the jar file executable. The @code{#:test-include} parameter can be used to specify the list of junit tests to run. It defaults to @code{(list \"**/*Test.java\")}. The @code{#:test-exclude} can be used to disable some tests. It defaults to @code{(list \"**/Abstract*.java\")}, because abstract classes cannot be run as tests." msgstr "Параметр @code{#:main-class} можно использовать с минимальным файлом сборки ant для указания основного класса результирующего jar-файла. Это делает файл jar исполняемым. Параметр @code{#:test-include} можно использовать для указания списка запускаемых тестов junit. По умолчанию это @code{(list \"**/*Test.java\")}. @code{#:test-exclude} можно использовать для отключения некоторых тестов. По умолчанию это @code{(list \"**/Abstract*.java\")}, потому что абстрактные классы не могут быть запущены как тесты." #. type: defvr -#: guix-git/doc/guix.texi:7989 +#: guix-git/doc/guix.texi:8047 msgid "The parameter @code{#:build-target} can be used to specify the Ant task that should be run during the @code{build} phase. By default the ``jar'' task will be run." msgstr "Параметр @code{#:build-target} можно использовать для указания задачи Ant, которая должна выполняться на этапе @code{build}. По умолчанию будет запущена задача jar." #. type: defvr -#: guix-git/doc/guix.texi:7992 +#: guix-git/doc/guix.texi:8050 #, no-wrap msgid "{Scheme Variable} android-ndk-build-system" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7993 +#: guix-git/doc/guix.texi:8051 #, no-wrap msgid "Android distribution" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7994 +#: guix-git/doc/guix.texi:8052 #, no-wrap msgid "Android NDK build system" msgstr "система сборки Android NDK" #. type: defvr -#: guix-git/doc/guix.texi:7998 +#: guix-git/doc/guix.texi:8056 msgid "This variable is exported by @code{(guix build-system android-ndk)}. It implements a build procedure for Android NDK (native development kit) packages using a Guix-specific build process." msgstr "Эта переменная экспортируется @code{(guix build-system android-ndk)}. Она реализует процедуру сборки пакетов Android NDK (собственный комплект разработки) с использованием процесса сборки, специфичного для Guix." #. type: defvr -#: guix-git/doc/guix.texi:8002 +#: guix-git/doc/guix.texi:8060 msgid "The build system assumes that packages install their public interface (header) files to the subdirectory @file{include} of the @code{out} output and their libraries to the subdirectory @file{lib} the @code{out} output." msgstr "Система сборки предполагает, что пакеты устанавливают свои файлы общедоступного интерфейса (заголовки) в подкаталог @file{include} вывода @code{out}, а их библиотеки - в подкаталог @file{lib} вывода @code{out}." #. type: defvr -#: guix-git/doc/guix.texi:8005 +#: guix-git/doc/guix.texi:8063 msgid "It's also assumed that the union of all the dependencies of a package has no conflicting files." msgstr "Также предполагается, что объединение всех зависимостей пакета не имеет конфликтующих файлов." #. type: defvr -#: guix-git/doc/guix.texi:8008 +#: guix-git/doc/guix.texi:8066 msgid "For the time being, cross-compilation is not supported - so right now the libraries and header files are assumed to be host tools." msgstr "В настоящее время кросс-компиляция не поддерживается, поэтому сейчас предполагается, что библиотеки и файлы заголовков являются хост-инструментами." #. type: defvr -#: guix-git/doc/guix.texi:8011 +#: guix-git/doc/guix.texi:8069 #, no-wrap msgid "{Scheme Variable} asdf-build-system/source" msgstr "" #. type: defvrx -#: guix-git/doc/guix.texi:8012 +#: guix-git/doc/guix.texi:8070 #, no-wrap msgid "{Scheme Variable} asdf-build-system/sbcl" msgstr "" #. type: defvrx -#: guix-git/doc/guix.texi:8013 +#: guix-git/doc/guix.texi:8071 #, no-wrap msgid "{Scheme Variable} asdf-build-system/ecl" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8019 +#: guix-git/doc/guix.texi:8077 msgid "These variables, exported by @code{(guix build-system asdf)}, implement build procedures for Common Lisp packages using @url{https://common-lisp.net/project/asdf/, ``ASDF''}. ASDF is a system definition facility for Common Lisp programs and libraries." msgstr "Эти переменные, экспортированные @code{(guix build-system asdf)}, реализуют процедуры сборки для пакетов Common Lisp с использованием @url{https://common-lisp.net/project/asdf/, ``ASDF''}. ASDF - это средство определения системы для программ и библиотек Common Lisp." #. type: defvr -#: guix-git/doc/guix.texi:8026 +#: guix-git/doc/guix.texi:8084 msgid "The @code{asdf-build-system/source} system installs the packages in source form, and can be loaded using any common lisp implementation, via ASDF@. The others, such as @code{asdf-build-system/sbcl}, install binary systems in the format which a particular implementation understands. These build systems can also be used to produce executable programs, or lisp images which contain a set of packages pre-loaded." msgstr "Система @code{asdf-build-system/source} устанавливает пакеты в исходной форме и может быть загружена с использованием любой распространенной реализации Lisp через ASDF. Другие, такие как @code{asdf-build-system/sbcl}, устанавливают двоичные системы в формате, понятном конкретной реализации. Эти системы сборки также могут использоваться для создания исполняемых программ или образов lisp, которые содержат набор предварительно загруженных пакетов." #. type: defvr -#: guix-git/doc/guix.texi:8030 +#: guix-git/doc/guix.texi:8088 msgid "The build system uses naming conventions. For binary packages, the package name should be prefixed with the lisp implementation, such as @code{sbcl-} for @code{asdf-build-system/sbcl}." msgstr "В системе сборки используются соглашения об именах. Для бинарных пакетов перед именем пакета должен стоять префикс реализации lisp, например @code{sbcl-} для @code{asdf-build-system/sbcl}." #. type: defvr -#: guix-git/doc/guix.texi:8034 +#: guix-git/doc/guix.texi:8092 msgid "Additionally, the corresponding source package should be labeled using the same convention as python packages (see @ref{Python Modules}), using the @code{cl-} prefix." msgstr "Кроме того, соответствующий исходный пакет должен быть помечен с использованием того же соглашения, что и пакеты python (см. @ref{Python Modules}), с использованием префикса @code{cl-}." #. type: defvr -#: guix-git/doc/guix.texi:8042 +#: guix-git/doc/guix.texi:8100 msgid "In order to create executable programs and images, the build-side procedures @code{build-program} and @code{build-image} can be used. They should be called in a build phase after the @code{create-asdf-configuration} phase, so that the system which was just built can be used within the resulting image. @code{build-program} requires a list of Common Lisp expressions to be passed as the @code{#:entry-program} argument." msgstr "Для создания исполняемых программ и образов можно использовать процедуры сборки @code{build-program} и @code{build-image}. Их следует вызывать в фазе сборки после фазы @code{create-symlinks}, чтобы только что созданную систему можно было использовать в полученном образе. @code{build-program} требует, чтобы список выражений Common Lisp был передан в качестве аргумента @code{#:entry-program}." #. type: defvr -#: guix-git/doc/guix.texi:8051 +#: guix-git/doc/guix.texi:8109 msgid "By default, all the @file{.asd} files present in the sources are read to find system definitions. The @code{#:asd-files} parameter can be used to specify the list of @file{.asd} files to read. Furthermore, if the package defines a system for its tests in a separate file, it will be loaded before the tests are run if it is specified by the @code{#:test-asd-file} parameter. If it is not set, the files @code{-tests.asd}, @code{-test.asd}, @code{tests.asd}, and @code{test.asd} will be tried if they exist." msgstr "Если система не определена в собственном файле @file{.asd} с тем же именем, тогда следует использовать параметр @code{#:asd-file}, чтобы указать, в каком файле определена система. Кроме того, если пакет определяет систему для своих тестов в отдельном файле, он будет загружен перед запуском тестов, если он указан параметром @code{#:test-asd-file}. Если он не установлен, будут попробованы файлы @code{-tests.asd}, @code{-test.asd}, @code{tests.asd} и @code{test.asd}, если они есть." #. type: defvr -#: guix-git/doc/guix.texi:8056 +#: guix-git/doc/guix.texi:8114 msgid "If for some reason the package must be named in a different way than the naming conventions suggest, or if several systems must be compiled, the @code{#:asd-systems} parameter can be used to specify the list of system names." msgstr "Если по какой-то причине пакет должен быть назван иначе, чем это предлагается в соглашениях об именах, можно использовать параметр @code{#:asd-system-name} для указания имени системы." #. type: defvr -#: guix-git/doc/guix.texi:8059 +#: guix-git/doc/guix.texi:8117 #, no-wrap msgid "{Scheme Variable} cargo-build-system" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8060 +#: guix-git/doc/guix.texi:8118 #, no-wrap msgid "Rust programming language" msgstr "Язык программирования Rust" #. type: cindex -#: guix-git/doc/guix.texi:8061 +#: guix-git/doc/guix.texi:8119 #, no-wrap msgid "Cargo (Rust build system)" msgstr "Cargo (система сборки Rust)" #. type: defvr -#: guix-git/doc/guix.texi:8065 +#: guix-git/doc/guix.texi:8123 msgid "This variable is exported by @code{(guix build-system cargo)}. It supports builds of packages using Cargo, the build tool of the @uref{https://www.rust-lang.org, Rust programming language}." msgstr "Эта переменная экспортируется @code{(guix build-system cargo)}. Она поддерживает сборку пакетов с использованием Cargo, инструмента сборки @uref{https://www.rust-lang.org, языка программирования Rust}." #. type: defvr -#: guix-git/doc/guix.texi:8068 +#: guix-git/doc/guix.texi:8126 msgid "It adds @code{rustc} and @code{cargo} to the set of inputs. A different Rust package can be specified with the @code{#:rust} parameter." msgstr "Она добавляет @code{rustc} и @code{cargo} к набору входных данных. Другой пакет Rust можно указать с помощью параметра @code{#:rust}." #. type: defvr -#: guix-git/doc/guix.texi:8078 +#: guix-git/doc/guix.texi:8136 msgid "Regular cargo dependencies should be added to the package definition similarly to other packages; those needed only at build time to native-inputs, others to inputs. If you need to add source-only crates then you should add them to via the @code{#:cargo-inputs} parameter as a list of name and spec pairs, where the spec can be a package or a source definition. Note that the spec must evaluate to a path to a gzipped tarball which includes a @code{Cargo.toml} file at its root, or it will be ignored. Similarly, cargo dev-dependencies should be added to the package definition via the @code{#:cargo-development-inputs} parameter." msgstr "Обычные cargo зависимости должны быть добавлены к определению пакета через параметр @code{#:cargo-inputs} в виде списка пар имени и спецификации, где спецификацией может быть определение пакета или источника. Обратите внимание, что в спецификации должен быть указан путь к сжатому архиву, который содержит файл @code{Cargo.toml} в своем корне, иначе он будет проигнорирован. Точно так же dev-зависимости cargo должны быть добавлены в определение пакета с помощью параметра @code{#:cargo-development-inputs}." #. type: defvr -#: guix-git/doc/guix.texi:8088 +#: guix-git/doc/guix.texi:8146 msgid "In its @code{configure} phase, this build system will make any source inputs specified in the @code{#:cargo-inputs} and @code{#:cargo-development-inputs} parameters available to cargo. It will also remove an included @code{Cargo.lock} file to be recreated by @code{cargo} during the @code{build} phase. The @code{package} phase will run @code{cargo package} to create a source crate for future use. The @code{install} phase installs the binaries defined by the crate. Unless @code{install-source? #f} is defined it will also install a source crate repository of itself and unpacked sources, to ease in future hacking on rust packages." msgstr "На этапе @code{configure} эта система сборки собирет любые исходные данные, указанные в параметрах @code{#:cargo-inputs} и @code{#:cargo-development-inputs}, доступными для cargo. Она также удалит файл @code{Cargo.lock}, который будет воссоздан @code{cargo} на этапе @code{build}. На этапе @code{install} устанавливаются двоичные файлы, определенные crate." #. type: defvr -#: guix-git/doc/guix.texi:8090 +#: guix-git/doc/guix.texi:8148 #, no-wrap msgid "{Scheme Variable} chicken-build-system" msgstr "{Scheme переменная} cmake-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8095 +#: guix-git/doc/guix.texi:8153 msgid "This variable is exported by @code{(guix build-system chicken)}. It builds @uref{https://call-cc.org/, CHICKEN Scheme} modules, also called ``eggs'' or ``extensions''. CHICKEN generates C source code, which then gets compiled by a C compiler, in this case GCC." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8098 +#: guix-git/doc/guix.texi:8156 msgid "This build system adds @code{chicken} to the package inputs, as well as the packages of @code{gnu-build-system}." msgstr "Эта система сборки добавляет @code{chicken} к входным данным (inputs) пакета, а также к пакетам @code{gnu-build-system}." #. type: defvr -#: guix-git/doc/guix.texi:8102 +#: guix-git/doc/guix.texi:8160 msgid "The build system can't (yet) deduce the egg's name automatically, so just like with @code{go-build-system} and its @code{#:import-path}, you should define @code{#:egg-name} in the package's @code{arguments} field." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8104 +#: guix-git/doc/guix.texi:8162 msgid "For example, if you are packaging the @code{srfi-1} egg:" msgstr "Например, если вы создаете пакет, содержащий Bash, с помощью:" #. type: lisp -#: guix-git/doc/guix.texi:8107 +#: guix-git/doc/guix.texi:8165 #, no-wrap msgid "(arguments '(#:egg-name \"srfi-1\"))\n" msgstr "(arguments '(#:egg-name \"srfi-1\"))\n" #. type: defvr -#: guix-git/doc/guix.texi:8112 +#: guix-git/doc/guix.texi:8170 msgid "Egg dependencies must be defined in @code{propagated-inputs}, not @code{inputs} because CHICKEN doesn't embed absolute references in compiled eggs. Test dependencies should go to @code{native-inputs}, as usual." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8114 +#: guix-git/doc/guix.texi:8172 #, no-wrap msgid "{Scheme Variable} copy-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8118 +#: guix-git/doc/guix.texi:8176 msgid "This variable is exported by @code{(guix build-system copy)}. It supports builds of simple packages that don't require much compiling, mostly just moving files around." msgstr "Эта переменная экспортируется в @code{(guix build-system copy)}. Она поддерживает сборку простых пакетов, которые не требуют большой компиляции, в основном просто перемещения файлов." #. type: defvr -#: guix-git/doc/guix.texi:8123 +#: guix-git/doc/guix.texi:8181 msgid "It adds much of the @code{gnu-build-system} packages to the set of inputs. Because of this, the @code{copy-build-system} does not require all the boilerplate code often needed for the @code{trivial-build-system}." msgstr "Она добавляет большую часть пакетов @code{gnu-build-system} в набор входных данных. По этой причине @code{copy-build-system} не требуется весь шаблонный код, часто необходимый для @code{trivial-build-system}." #. type: defvr -#: guix-git/doc/guix.texi:8128 +#: guix-git/doc/guix.texi:8186 msgid "To further simplify the file installation process, an @code{#:install-plan} argument is exposed to let the packager specify which files go where. The install plan is a list of @code{(@var{source} @var{target} [@var{filters}])}. @var{filters} are optional." msgstr "Чтобы еще больше упростить процесс установки файла, предоставляется аргумент @code{#:install-plan}, позволяющий упаковщику указывать, какие файлы куда установить. План установки представляет собой список @code{(@var{source} @var{target} [@var{filters}])}. @var{filters} необязательны." #. type: item -#: guix-git/doc/guix.texi:8130 +#: guix-git/doc/guix.texi:8188 #, no-wrap msgid "When @var{source} matches a file or directory without trailing slash, install it to @var{target}." msgstr "Когда @var{source} соответствует файл или каталог без косой черты, установить его в @var{target}." #. type: item -#: guix-git/doc/guix.texi:8132 +#: guix-git/doc/guix.texi:8190 #, no-wrap msgid "If @var{target} has a trailing slash, install @var{source} basename beneath @var{target}." msgstr "Если @var{target} имеет косую черту в конце, установить @var{source} basename ниже @var{target}." #. type: item -#: guix-git/doc/guix.texi:8133 +#: guix-git/doc/guix.texi:8191 #, no-wrap msgid "Otherwise install @var{source} as @var{target}." msgstr "В противном случае установите @var{source} как @var{target}." #. type: item -#: guix-git/doc/guix.texi:8136 +#: guix-git/doc/guix.texi:8194 #, no-wrap msgid "When @var{source} is a directory with a trailing slash, or when @var{filters} are used," msgstr "Когда @var{source} - это каталог с косой чертой в конце или когда используются @var{filters}," #. type: itemize -#: guix-git/doc/guix.texi:8139 +#: guix-git/doc/guix.texi:8197 msgid "the trailing slash of @var{target} is implied with the same meaning as above." msgstr "завершающая косая черта @var{target} подразумевается с тем же значением, что и выше." #. type: item -#: guix-git/doc/guix.texi:8140 +#: guix-git/doc/guix.texi:8198 #, no-wrap msgid "Without @var{filters}, install the full @var{source} @emph{content} to @var{target}." msgstr "Без @var{filter} установить @emph{содержимое} @var{source} в @var{target}." #. type: item -#: guix-git/doc/guix.texi:8141 +#: guix-git/doc/guix.texi:8199 #, no-wrap msgid "With @var{filters} among @code{#:include}, @code{#:include-regexp}, @code{#:exclude}," msgstr "С @var{filters} среди @code{#:include}, @code{#:include-regexp}, @code{#:exclude}," #. type: itemize -#: guix-git/doc/guix.texi:8144 +#: guix-git/doc/guix.texi:8202 msgid "@code{#:exclude-regexp}, only select files are installed depending on the filters. Each filters is specified by a list of strings." msgstr "@code{#:exclude-regexp}, установить только избранные файлы в зависимости от фильтров. Каждый фильтр определяется списком строк." #. type: item -#: guix-git/doc/guix.texi:8145 +#: guix-git/doc/guix.texi:8203 #, no-wrap msgid "With @code{#:include}, install all the files which the path suffix matches" msgstr "С помощью @code{#:include} установите все файлы, суффикс пути которых соответствует" #. type: itemize -#: guix-git/doc/guix.texi:8147 +#: guix-git/doc/guix.texi:8205 msgid "at least one of the elements in the given list." msgstr "хотя бы одному из элементов в данном списке." #. type: item -#: guix-git/doc/guix.texi:8147 +#: guix-git/doc/guix.texi:8205 #, no-wrap msgid "With @code{#:include-regexp}, install all the files which the" msgstr "С помощью @code{#:include-regex} установить все файлы," #. type: itemize -#: guix-git/doc/guix.texi:8150 +#: guix-git/doc/guix.texi:8208 msgid "subpaths match at least one of the regular expressions in the given list." msgstr "подкаталоги которых соответствуют хотя бы одному из регулярных выражений в данном списке." #. type: item -#: guix-git/doc/guix.texi:8150 +#: guix-git/doc/guix.texi:8208 #, no-wrap msgid "The @code{#:exclude} and @code{#:exclude-regexp} filters" msgstr "Фильтры @code{#:exclude} и @code{#:exclude-regexp}" #. type: itemize -#: guix-git/doc/guix.texi:8155 +#: guix-git/doc/guix.texi:8213 msgid "are the complement of their inclusion counterpart. Without @code{#:include} flags, install all files but those matching the exclusion filters. If both inclusions and exclusions are specified, the exclusions are done on top of the inclusions." msgstr "являются дополнением к своим аналогам включения. Без флагов @code{#:include} установить все файлы, кроме тех, которые соответствуют фильтрам исключения. Если указаны и включения, и исключения, то исключения выполняются поверх включений." #. type: itemize -#: guix-git/doc/guix.texi:8159 +#: guix-git/doc/guix.texi:8217 msgid "In all cases, the paths relative to @var{source} are preserved within @var{target}." msgstr "В любом случае пути, относительные к @var{source}, сохраняются в @var{target}." #. type: defvr -#: guix-git/doc/guix.texi:8162 +#: guix-git/doc/guix.texi:8220 msgid "Examples:" msgstr "Примеры:" #. type: item -#: guix-git/doc/guix.texi:8164 +#: guix-git/doc/guix.texi:8222 #, no-wrap msgid "@code{(\"foo/bar\" \"share/my-app/\")}: Install @file{bar} to @file{share/my-app/bar}." msgstr "@code{(\"foo/bar\" \"share/my-app/\")}: Установить @file{bar} в @file{share/my-app/bar}." #. type: item -#: guix-git/doc/guix.texi:8165 +#: guix-git/doc/guix.texi:8223 #, no-wrap msgid "@code{(\"foo/bar\" \"share/my-app/baz\")}: Install @file{bar} to @file{share/my-app/baz}." msgstr "@code{(\"foo/bar\" \"share/my-app/baz\")}: Установить @file{bar} в @file{share/my-app/baz}." #. type: item -#: guix-git/doc/guix.texi:8166 +#: guix-git/doc/guix.texi:8224 #, no-wrap msgid "@code{(\"foo/\" \"share/my-app\")}: Install the content of @file{foo} inside @file{share/my-app}," msgstr "@code{(\"foo/\" \"share/my-app\")}: Установить содержимое @file{foo} в @file{share/my-app}," #. type: itemize -#: guix-git/doc/guix.texi:8168 +#: guix-git/doc/guix.texi:8226 msgid "e.g., install @file{foo/sub/file} to @file{share/my-app/sub/file}." msgstr "например, установить @file{foo/sub/file} в @file{share/my-app/sub/file}." #. type: item -#: guix-git/doc/guix.texi:8168 +#: guix-git/doc/guix.texi:8226 #, no-wrap msgid "@code{(\"foo/\" \"share/my-app\" #:include (\"sub/file\"))}: Install only @file{foo/sub/file} to" msgstr "@code{(\"foo/\" \"share/my-app\" #:include (\"sub/file\"))}: Установить только @file{foo/sub/file} в" #. type: itemize -#: guix-git/doc/guix.texi:8170 +#: guix-git/doc/guix.texi:8228 msgid "@file{share/my-app/sub/file}." msgstr "@file{share/my-app/sub/file}." #. type: item -#: guix-git/doc/guix.texi:8170 +#: guix-git/doc/guix.texi:8228 #, no-wrap msgid "@code{(\"foo/sub\" \"share/my-app\" #:include (\"file\"))}: Install @file{foo/sub/file} to" msgstr "@code{(\"foo/sub\" \"share/my-app\" #:include (\"file\"))}: Установить @file{foo/sub/file} в" #. type: itemize -#: guix-git/doc/guix.texi:8172 +#: guix-git/doc/guix.texi:8230 msgid "@file{share/my-app/file}." msgstr "@file{share/my-app/file}." #. type: cindex -#: guix-git/doc/guix.texi:8176 +#: guix-git/doc/guix.texi:8234 #, no-wrap msgid "Clojure (programming language)" msgstr "Clojure (язык программирования)" #. type: cindex -#: guix-git/doc/guix.texi:8177 +#: guix-git/doc/guix.texi:8235 #, no-wrap msgid "simple Clojure build system" msgstr "простая система сборки Clojure" #. type: defvr -#: guix-git/doc/guix.texi:8178 +#: guix-git/doc/guix.texi:8236 #, no-wrap msgid "{Scheme Variable} clojure-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8183 +#: guix-git/doc/guix.texi:8241 msgid "This variable is exported by @code{(guix build-system clojure)}. It implements a simple build procedure for @uref{https://clojure.org/, Clojure} packages using plain old @code{compile} in Clojure. Cross-compilation is not supported yet." msgstr "Эта переменная экспортируется @code{(guix build-system clojure)}. Она реализует простую процедуру сборки пакетов @uref{https://clojure.org/, Clojure} с использованием простого старого @code{compile} в Clojure. Кросс-компиляция пока не поддерживается." #. type: defvr -#: guix-git/doc/guix.texi:8187 +#: guix-git/doc/guix.texi:8245 msgid "It adds @code{clojure}, @code{icedtea} and @code{zip} to the set of inputs. Different packages can be specified with the @code{#:clojure}, @code{#:jdk} and @code{#:zip} parameters, respectively." msgstr "Она добавляет @code{clojure}, @code{icedtea} и @code{zip} к набору входных данных. Различные пакеты можно указать с помощью параметров @code{#:clojure}, @code{#:jdk} и @code{#:zip} соответственно." #. type: defvr -#: guix-git/doc/guix.texi:8193 +#: guix-git/doc/guix.texi:8251 msgid "A list of source directories, test directories and jar names can be specified with the @code{#:source-dirs}, @code{#:test-dirs} and @code{#:jar-names} parameters, respectively. Compile directory and main class can be specified with the @code{#:compile-dir} and @code{#:main-class} parameters, respectively. Other parameters are documented below." msgstr "Список исходных каталогов, тестовых каталогов и имен jar-файлов можно указать с помощью параметров @code{#:source-dirs}, @code{#:test-dirs} и @code{#:jar-names} соответственно. Каталог компиляции и основной класс можно указать с помощью параметров @code{#:compile-dir} и @code{#:main-class} соответственно. Остальные параметры описаны ниже." #. type: defvr -#: guix-git/doc/guix.texi:8196 +#: guix-git/doc/guix.texi:8254 msgid "This build system is an extension of @code{ant-build-system}, but with the following phases changed:" msgstr "Эта система сборки является расширением @code{ant-build-system}, но со следующими изменениями:" #. type: item -#: guix-git/doc/guix.texi:8199 guix-git/doc/guix.texi:8773 -#: guix-git/doc/guix.texi:8822 guix-git/doc/guix.texi:8891 -#: guix-git/doc/guix.texi:35042 guix-git/doc/guix.texi:37668 +#: guix-git/doc/guix.texi:8257 guix-git/doc/guix.texi:8830 +#: guix-git/doc/guix.texi:8879 guix-git/doc/guix.texi:8952 +#: guix-git/doc/guix.texi:35481 guix-git/doc/guix.texi:38147 #, no-wrap msgid "build" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8208 +#: guix-git/doc/guix.texi:8266 msgid "This phase calls @code{compile} in Clojure to compile source files and runs @command{jar} to create jars from both source files and compiled files according to the include list and exclude list specified in @code{#:aot-include} and @code{#:aot-exclude}, respectively. The exclude list has priority over the include list. These lists consist of symbols representing Clojure libraries or the special keyword @code{#:all} representing all Clojure libraries found under the source directories. The parameter @code{#:omit-source?} decides if source should be included into the jars." msgstr "На этом этапе вызывается @code{compile} в Clojure для компиляции исходных файлов и запускается @command{jar} для создания jar-файлов как из исходных файлов, так и из скомпилированных файлов в соответствии со списком включения и списком исключений, указанным в @code{#:aot-include} и @code{#:aot-exclude} соответственно. Список исключений имеет приоритет над списком включения. Эти списки состоят из символов, представляющих библиотеки Clojure, или специального ключевого слова @code{#:all}, представляющего все библиотеки Clojure, находящиеся в исходных каталогах. Параметр @code{#:omit-source?} определяет, следует ли включать исходники в jar-файлы." #. type: item -#: guix-git/doc/guix.texi:8209 guix-git/doc/guix.texi:8777 -#: guix-git/doc/guix.texi:8896 +#: guix-git/doc/guix.texi:8267 guix-git/doc/guix.texi:8834 +#: guix-git/doc/guix.texi:8957 #, no-wrap msgid "check" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8216 +#: guix-git/doc/guix.texi:8274 msgid "This phase runs tests according to the include list and exclude list specified in @code{#:test-include} and @code{#:test-exclude}, respectively. Their meanings are analogous to that of @code{#:aot-include} and @code{#:aot-exclude}, except that the special keyword @code{#:all} now stands for all Clojure libraries found under the test directories. The parameter @code{#:tests?} decides if tests should be run." msgstr "На этом этапе выполняются тесты в соответствии со списком включения и списком исключений, указанными в @code{#:test-include} и @code{#:test-exclude} соответственно. Их значения аналогичны значениям @code{#:aot-include} и @code{#:aot-exclude}, за исключением того, что специальное ключевое слово @code{#:all} теперь обозначает все библиотеки Clojure, находящиеся в каталогах test. Параметр @code{#:tests?} определяет, нужно ли запускать тесты." #. type: item -#: guix-git/doc/guix.texi:8217 guix-git/doc/guix.texi:8783 -#: guix-git/doc/guix.texi:8826 guix-git/doc/guix.texi:8902 +#: guix-git/doc/guix.texi:8275 guix-git/doc/guix.texi:8840 +#: guix-git/doc/guix.texi:8883 guix-git/doc/guix.texi:8963 #, no-wrap msgid "install" msgstr "установка" #. type: table -#: guix-git/doc/guix.texi:8219 +#: guix-git/doc/guix.texi:8277 msgid "This phase installs all jars built previously." msgstr "На этом этапе устанавливаются все созданные ранее jars." #. type: defvr -#: guix-git/doc/guix.texi:8222 +#: guix-git/doc/guix.texi:8280 msgid "Apart from the above, this build system also contains an additional phase:" msgstr "Помимо вышесказанного, эта система сборки также содержит дополнительную фазу:" #. type: item -#: guix-git/doc/guix.texi:8225 +#: guix-git/doc/guix.texi:8283 #, no-wrap msgid "install-doc" msgstr "install-doc" #. type: table -#: guix-git/doc/guix.texi:8230 +#: guix-git/doc/guix.texi:8288 msgid "This phase installs all top-level files with base name matching @code{%doc-regex}. A different regex can be specified with the @code{#:doc-regex} parameter. All files (recursively) inside the documentation directories specified in @code{#:doc-dirs} are installed as well." msgstr "На этом этапе устанавливаются все файлы верхнего уровня с базовым именем, совпадающим с @code{%doc-regex}. Другое регулярное выражение можно указать с помощью параметра @code{#:doc-regex}. Все файлы (рекурсивно) в каталогах документации, указанные в @code{#:doc-dirs}, также устанавливаются." #. type: defvr -#: guix-git/doc/guix.texi:8233 +#: guix-git/doc/guix.texi:8291 #, no-wrap msgid "{Scheme Variable} cmake-build-system" msgstr "{Scheme переменная} cmake-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8237 +#: guix-git/doc/guix.texi:8295 msgid "This variable is exported by @code{(guix build-system cmake)}. It implements the build procedure for packages using the @url{https://www.cmake.org, CMake build tool}." msgstr "Эта переменная экспортируется @code{(guix build-system cmake)}. Она реализует процедуру сборки пакетов с использованием @url{https://www.cmake.org, инструмента сборки CMake}." #. type: defvr -#: guix-git/doc/guix.texi:8241 +#: guix-git/doc/guix.texi:8299 msgid "It automatically adds the @code{cmake} package to the set of inputs. Which package is used can be specified with the @code{#:cmake} parameter." msgstr "Она автоматически добавляет пакет @code{cmake} в набор входных данных. Какой пакет используется, можно указать с помощью параметра @code{#:cmake}." #. type: defvr -#: guix-git/doc/guix.texi:8248 +#: guix-git/doc/guix.texi:8306 msgid "The @code{#:configure-flags} parameter is taken as a list of flags passed to the @command{cmake} command. The @code{#:build-type} parameter specifies in abstract terms the flags passed to the compiler; it defaults to @code{\"RelWithDebInfo\"} (short for ``release mode with debugging information''), which roughly means that code is compiled with @code{-O2 -g}, as is the case for Autoconf-based packages by default." msgstr "Параметр @code{#:configure-flags} используется как список флагов, переданных команде @command{cmake}. Параметр @code{#:build-type} абстрактно определяет флаги, передаваемые компилятору; по умолчанию используется @code{\"RelWithDebInfo\"} (сокращение от ``release mode с отладочной информацией''), что примерно означает, что код компилируется с помощью @code{-O2 -g}, как в случае пакетов на основе Autoconf по умолчанию." #. type: defvr -#: guix-git/doc/guix.texi:8250 +#: guix-git/doc/guix.texi:8308 #, no-wrap msgid "{Scheme Variable} dune-build-system" msgstr "{Scheme переменная} dune-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8257 +#: guix-git/doc/guix.texi:8315 msgid "This variable is exported by @code{(guix build-system dune)}. It supports builds of packages using @uref{https://dune.build/, Dune}, a build tool for the OCaml programming language. It is implemented as an extension of the @code{ocaml-build-system} which is described below. As such, the @code{#:ocaml} and @code{#:findlib} parameters can be passed to this build system." msgstr "Эта переменная экспортируется в @code{(guix build-system dune)}. Она поддерживает сборку пакетов с использованием @uref{https://dune.build/, Dune}, инструмента сборки для языка программирования OCaml. Она реализована как расширение @code{ocaml-build-system}, описанную ниже. Таким образом, в эту систему сборки можно передать параметры @code{#:ocaml} и @code{#:findlib}." #. type: defvr -#: guix-git/doc/guix.texi:8261 +#: guix-git/doc/guix.texi:8319 msgid "It automatically adds the @code{dune} package to the set of inputs. Which package is used can be specified with the @code{#:dune} parameter." msgstr "Она автоматически добавляет пакет @code{dune} в набор входных данных. Какой пакет используется, можно указать с помощью параметра @code{#:dune}." #. type: defvr -#: guix-git/doc/guix.texi:8265 +#: guix-git/doc/guix.texi:8323 msgid "There is no @code{configure} phase because dune packages typically don't need to be configured. The @code{#:build-flags} parameter is taken as a list of flags passed to the @code{dune} command during the build." msgstr "Фаза @code{configure} отсутствует, потому что dune пакеты обычно не нужно настраивать. Параметр @code{#:build-flags} используется как список флагов, переданных команде @code{dune} во время сборки." #. type: defvr -#: guix-git/doc/guix.texi:8269 +#: guix-git/doc/guix.texi:8327 msgid "The @code{#:jbuild?} parameter can be passed to use the @code{jbuild} command instead of the more recent @code{dune} command while building a package. Its default value is @code{#f}." msgstr "Параметр @code{#:jbuild?} можно передать для использования команды @code{jbuild} вместо более новой команды @code{dune} при сборке пакета. Его значение по умолчанию - @code{#f}." #. type: defvr -#: guix-git/doc/guix.texi:8274 +#: guix-git/doc/guix.texi:8332 msgid "The @code{#:package} parameter can be passed to specify a package name, which is useful when a package contains multiple packages and you want to build only one of them. This is equivalent to passing the @code{-p} argument to @code{dune}." msgstr "Параметр @code{#:package} может быть передан для указания имени пакета, что полезно, когда пакет содержит несколько пакетов, и вы хотите создать только один из них. Это эквивалентно передаче аргумента @code{-p} в @code{dune}." #. type: defvr -#: guix-git/doc/guix.texi:8277 +#: guix-git/doc/guix.texi:8335 #, no-wrap msgid "{Scheme Variable} go-build-system" msgstr "{Scheme переменная} go-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8282 +#: guix-git/doc/guix.texi:8340 msgid "This variable is exported by @code{(guix build-system go)}. It implements a build procedure for Go packages using the standard @url{https://golang.org/cmd/go/#hdr-Compile_packages_and_dependencies, Go build mechanisms}." msgstr "Эта переменная экспортируется @code{(guix build-system go)}. Онf реализует процедуру сборки пакетов Go с использованием стандартного @url{https://golang.org/cmd/go/#hdr-Compile_packages_and_dependencies, механизмов сборки Go}." #. type: defvr -#: guix-git/doc/guix.texi:8293 +#: guix-git/doc/guix.texi:8351 msgid "The user is expected to provide a value for the key @code{#:import-path} and, in some cases, @code{#:unpack-path}. The @url{https://golang.org/doc/code.html#ImportPaths, import path} corresponds to the file system path expected by the package's build scripts and any referring packages, and provides a unique way to refer to a Go package. It is typically based on a combination of the package source code's remote URI and file system hierarchy structure. In some cases, you will need to unpack the package's source code to a different directory structure than the one indicated by the import path, and @code{#:unpack-path} should be used in such cases." msgstr "Ожидается, что пользователь предоставит значение для ключа @code{#:import-path} и, в некоторых случаях, @code{#:unpack-path}. @url{https://golang.org/doc/code.html#ImportPaths, import path} соответствует пути к файловой системе, ожидаемому сценариями сборки пакета и любыми ссылочными пакетами, и обеспечивает уникальный способ ссылки на Go пакет. Обычно он основан на комбинации удаленного URI исходного кода пакета и иерархической структуры файловой системы. В некоторых случаях вам нужно будет распаковать исходный код пакета в другую структуру каталогов, отличную от той, которая указана в пути импорта, и в таких случаях следует использовать @code{#:unpack-path}." #. type: defvr -#: guix-git/doc/guix.texi:8298 +#: guix-git/doc/guix.texi:8356 msgid "Packages that provide Go libraries should install their source code into the built output. The key @code{#:install-source?}, which defaults to @code{#t}, controls whether or not the source code is installed. It can be set to @code{#f} for packages that only provide executable files." msgstr "Пакеты, которые предоставляют библиотеки Go, должны устанавливать свой исходный код во встроенные выходные данные. Ключ @code{#:install-source?}, который по умолчанию равен @code{#t}, определяет, установливается ли исходный код. Для пакетов, которые предоставляют только исполняемые файлы, может быть установлено значение @code{#f}." #. type: defvr -#: guix-git/doc/guix.texi:8305 +#: guix-git/doc/guix.texi:8363 msgid "Packages can be cross-built, and if a specific architecture or operating system is desired then the keywords @code{#:goarch} and @code{#:goos} can be used to force the package to be built for that architecture and operating system. The combinations known to Go can be found @url{\"https://golang.org/doc/install/source#environment\", in their documentation}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8307 +#: guix-git/doc/guix.texi:8365 #, no-wrap msgid "{Scheme Variable} glib-or-gtk-build-system" msgstr "{Scheme переменная} glib-or-gtk-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8310 +#: guix-git/doc/guix.texi:8368 msgid "This variable is exported by @code{(guix build-system glib-or-gtk)}. It is intended for use with packages making use of GLib or GTK+." msgstr "Эта переменная экспортируется в @code{(guix build-system glib-or-gtk)}. Она предназначена для использования с пакетами, использующими GLib или GTK+." #. type: defvr -#: guix-git/doc/guix.texi:8313 +#: guix-git/doc/guix.texi:8371 msgid "This build system adds the following two phases to the ones defined by @code{gnu-build-system}:" msgstr "Эта система сборки добавляет следующие две фазы к тем, которые определены в @code{gnu-build-system}:" #. type: item -#: guix-git/doc/guix.texi:8315 guix-git/doc/guix.texi:8799 +#: guix-git/doc/guix.texi:8373 guix-git/doc/guix.texi:8856 #, no-wrap msgid "glib-or-gtk-wrap" msgstr "glib-or-gtk-wrap" #. type: table -#: guix-git/doc/guix.texi:8322 +#: guix-git/doc/guix.texi:8380 msgid "The phase @code{glib-or-gtk-wrap} ensures that programs in @file{bin/} are able to find GLib ``schemas'' and @uref{https://developer.gnome.org/gtk3/stable/gtk-running.html, GTK+ modules}. This is achieved by wrapping the programs in launch scripts that appropriately set the @env{XDG_DATA_DIRS} and @env{GTK_PATH} environment variables." msgstr "Фаза @code{glib-or-gtk-wrap} гарантирует, что программы в @file{bin/} смогут найти GLib ``schemas'' и @uref{https://developer.gnome.org/gtk3/stable /gtk-running.html, модули GTK+}. Это достигается путем включения программ в сценарии запуска, которые соответствующим образом устанавливают переменные среды @env{XDG_DATA_DIRS} и @env{GTK_PATH}." #. type: table -#: guix-git/doc/guix.texi:8329 +#: guix-git/doc/guix.texi:8387 msgid "It is possible to exclude specific package outputs from that wrapping process by listing their names in the @code{#:glib-or-gtk-wrap-excluded-outputs} parameter. This is useful when an output is known not to contain any GLib or GTK+ binaries, and where wrapping would gratuitously add a dependency of that output on GLib and GTK+." msgstr "Можно исключить определенные выходные данные пакета из этого процесса упаковки, указав их имена в параметре @code{#:glib-or-gtk-wrap-excluded-output}. Это полезно, когда известно, что выходной файл не содержит двоичных файлов GLib или GTK+, и где wrapping может произвольно добавить зависимость этого вывода от GLib и GTK+." #. type: item -#: guix-git/doc/guix.texi:8330 guix-git/doc/guix.texi:8803 +#: guix-git/doc/guix.texi:8388 guix-git/doc/guix.texi:8860 #, no-wrap msgid "glib-or-gtk-compile-schemas" msgstr "glib-or-gtk-compile-schemas" #. type: table -#: guix-git/doc/guix.texi:8338 +#: guix-git/doc/guix.texi:8396 msgid "The phase @code{glib-or-gtk-compile-schemas} makes sure that all @uref{https://developer.gnome.org/gio/stable/glib-compile-schemas.html, GSettings schemas} of GLib are compiled. Compilation is performed by the @command{glib-compile-schemas} program. It is provided by the package @code{glib:bin} which is automatically imported by the build system. The @code{glib} package providing @command{glib-compile-schemas} can be specified with the @code{#:glib} parameter." msgstr "Фаза @code{glib-or-gtk-compile-schemas} гарантирует, что все @uref{https://developer.gnome.org/gio/stable/glib-compile-schemas.html, GSettings schemas} в GLib скомпилированы. Компиляция выполняется программой @command{glib-compile-schemas}. Она предоставляется пакетом @code{glib:bin}, который автоматически импортируется системой сборки. Пакет @code{glib}, предоставляющий @command{glib-compile-schemas}, можно указать с помощью параметра @code{#:glib}." #. type: defvr -#: guix-git/doc/guix.texi:8341 +#: guix-git/doc/guix.texi:8399 msgid "Both phases are executed after the @code{install} phase." msgstr "Обе фазы выполняются после фазы @code{install}." #. type: defvr -#: guix-git/doc/guix.texi:8343 +#: guix-git/doc/guix.texi:8401 #, no-wrap msgid "{Scheme Variable} guile-build-system" msgstr "{Scheme переменная} guile-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8350 +#: guix-git/doc/guix.texi:8408 msgid "This build system is for Guile packages that consist exclusively of Scheme code and that are so lean that they don't even have a makefile, let alone a @file{configure} script. It compiles Scheme code using @command{guild compile} (@pxref{Compilation,,, guile, GNU Guile Reference Manual}) and installs the @file{.scm} and @file{.go} files in the right place. It also installs documentation." msgstr "Эта система сборки предназначена для пакетов Guile, которые состоят исключительно из кода Scheme и настолько скудны, что у них даже нет make-файла, не говоря уже о сценарии @file{configure}. Она компилирует Scheme код с помощью @command{guild compile} (@pxref{Compilation,,, guile, GNU Guile Reference Manual}) и устанавливает файлы @file{.scm} и @file{.go} в нужное место. Она также устанавливает документацию." #. type: defvr -#: guix-git/doc/guix.texi:8353 +#: guix-git/doc/guix.texi:8411 msgid "This build system supports cross-compilation by using the @option{--target} option of @samp{guild compile}." msgstr "Эта система сборки поддерживает кросс-компиляцию с использованием параметра @option{--target} в @samp{guild compile}." #. type: defvr -#: guix-git/doc/guix.texi:8356 +#: guix-git/doc/guix.texi:8414 msgid "Packages built with @code{guile-build-system} must provide a Guile package in their @code{native-inputs} field." msgstr "Пакеты, созданные с помощью @code{guile-build-system}, должны содержать пакет Guile в поле @code{native-inputs}." #. type: defvr -#: guix-git/doc/guix.texi:8358 +#: guix-git/doc/guix.texi:8416 #, no-wrap msgid "{Scheme Variable} julia-build-system" msgstr "{Scheme переменная} julia-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8365 +#: guix-git/doc/guix.texi:8423 msgid "This variable is exported by @code{(guix build-system julia)}. It implements the build procedure used by @uref{https://julialang.org/, julia} packages, which essentially is similar to running @samp{julia -e 'using Pkg; Pkg.add(package)'} in an environment where @env{JULIA_LOAD_PATH} contains the paths to all Julia package inputs. Tests are run by calling @code{/test/runtests.jl}." msgstr "Эта переменная экспортируется в @code{(guix build-system julia)}. Она реализует процедуру сборки, используемую пакетами @uref{https://julialang.org/, julia}, которая по сути аналогична запуску @samp{julia -e 'используя Pkg; Pkg.add(package)'} в среде, где @env{JULIA_LOAD_PATH} содержит пути ко всем входным данным пакета Julia. Тесты запускаются с @code{Pkg.test}." #. type: defvr -#: guix-git/doc/guix.texi:8369 -msgid "The Julia package name is read from the file @file{Project.toml}. This value can be overridden by passing the argument @code{#:julia-package-name} (which must be correctly capitalized)." +#: guix-git/doc/guix.texi:8428 +msgid "The Julia package name and uuid is read from the file @file{Project.toml}. These values can be overridden by passing the argument @code{#:julia-package-name} (which must be correctly capitalized) or @code{#:julia-package-uuid}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8373 +#: guix-git/doc/guix.texi:8432 msgid "Julia packages usually manage their binary dependencies via @code{JLLWrappers.jl}, a Julia package that creates a module (named after the wrapped library followed by @code{_jll.jl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8378 +#: guix-git/doc/guix.texi:8437 msgid "To add the binary path @code{_jll.jl} packages, you need to patch the files under @file{src/wrappers/}, replacing the call to the macro @code{JLLWrappers.@@generate_wrapper_header}, adding as a second argument containing the store path the binary." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8382 +#: guix-git/doc/guix.texi:8441 msgid "As an example, in the MbedTLS Julia package, we add a build phase (@pxref{Build Phases}) to insert the absolute file name of the wrapped MbedTLS package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8394 +#: guix-git/doc/guix.texi:8453 #, no-wrap msgid "" "(add-after 'unpack 'override-binary-path\n" @@ -17161,664 +17307,675 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8402 -#, fuzzy -msgid "Some older packages that aren't using @file{Package.toml} yet, will require this file to be created, too. The function @code{julia-create-package-toml} helps creating the file. You need to pass the outputs and the source of the package, its name (the same as the @code{file-name} parameter), the package uuid, the package version, and a list of dependencies specified by their name and their uuid." -msgstr "Некоторые старые пакеты, которые еще не используют @file{Package.toml}, также потребуют создания этого файла. Функция @code{julia-create-package-toml} помогает создать файл. Вам необходимо передать выходные данные и источник пакета, его имя (такое же, как параметр @code{file-name}), uuid пакета, версию пакета и список зависимостей, указанных по их имени и их uuid." +#: guix-git/doc/guix.texi:8459 +msgid "Some older packages that aren't using @file{Project.toml} yet, will require this file to be created, too. It is internally done if the arguments @code{#:julia-package-name} and @code{#:julia-package-uuid} are provided." +msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8404 +#: guix-git/doc/guix.texi:8461 #, no-wrap msgid "{Scheme Variable} maven-build-system" msgstr "{Scheme Variable} ant-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8411 +#: guix-git/doc/guix.texi:8468 msgid "This variable is exported by @code{(guix build-system maven)}. It implements a build procedure for @uref{https://maven.apache.org, Maven} packages. Maven is a dependency and lifecycle management tool for Java. A user of Maven specifies dependencies and plugins in a @file{pom.xml} file that Maven reads. When Maven does not have one of the dependencies or plugins in its repository, it will download them and use them to build the package." msgstr "Эта переменная экспортируется в @code{(guix build-system maven)}. Она реализует процедуру сборки пакетов @uref{https://maven.apache.org, Maven}. Maven - это инструмент для управления зависимостями и жизненным циклом Java. Пользователь Maven указывает зависимости и плагины в файле @file{pom.xml}, который читает Maven. Когда Maven не имеет одной из зависимостей или плагинов в своем репозитории, он загружает их и использует для сборки пакета." #. type: defvr -#: guix-git/doc/guix.texi:8421 +#: guix-git/doc/guix.texi:8478 msgid "The maven build system ensures that maven will not try to download any dependency by running in offline mode. Maven will fail if a dependency is missing. Before running Maven, the @file{pom.xml} (and subprojects) are modified to specify the version of dependencies and plugins that match the versions available in the guix build environment. Dependencies and plugins must be installed in the fake maven repository at @file{lib/m2}, and are symlinked into a proper repository before maven is run. Maven is instructed to use that repository for the build and installs built artifacts there. Changed files are copied to the @file{lib/m2} directory of the package output." msgstr "Система сборки maven гарантирует, что maven не будет пытаться загрузить какие-либо зависимости, работая в offline режиме. Maven завершится ошибкой, если зависимость отсутствует. Перед запуском Maven @file{pom.xml} (и подпроекты) модифицируются, чтобы указать версию зависимостей и плагинов, которые соответствуют версиям, доступным в среде сборки guix. Зависимости и плагины должны быть установлены в поддельном репозитории maven по адресу @file{lib/m2} и перед запуском maven привязаны к соответствующему репозиторию. Maven получает указание использовать этот репозиторий для сборки и устанавливает туда созданные артефакты. Измененные файлы копируются в каталог @file{lib/m2} выходных данных пакета." #. type: defvr -#: guix-git/doc/guix.texi:8424 +#: guix-git/doc/guix.texi:8481 msgid "You can specify a @file{pom.xml} file with the @code{#:pom-file} argument, or let the build system use the default @file{pom.xml} file in the sources." msgstr "Вы можете указать файл @file{pom.xml} с аргументом @code{#:pom-file} или позволить системе сборки использовать файл @file{pom.xml} по умолчанию в источниках." #. type: defvr -#: guix-git/doc/guix.texi:8430 +#: guix-git/doc/guix.texi:8487 msgid "In case you need to specify a dependency's version manually, you can use the @code{#:local-packages} argument. It takes an association list where the key is the groupId of the package and its value is an association list where the key is the artifactId of the package and its value is the version you want to override in the @file{pom.xml}." msgstr "Если вам нужно указать версию зависимости вручную, вы можете использовать аргумент @code{#:local-packages}. Он принимает список ассоциаций, где ключ - это groupId пакета, а его значение - это список ассоциаций, где ключ - это artifactId пакета, а его значение - это версия, которую вы хотите переопределить в @file{pom.xml}." #. type: defvr -#: guix-git/doc/guix.texi:8436 +#: guix-git/doc/guix.texi:8493 msgid "Some packages use dependencies or plugins that are not useful at runtime nor at build time in Guix. You can alter the @file{pom.xml} file to remove them using the @code{#:exclude} argument. Its value is an association list where the key is the groupId of the plugin or dependency you want to remove, and the value is a list of artifactId you want to remove." msgstr "Некоторые пакеты используют зависимости или плагины, которые не используются ни во время выполнения, ни во время сборки в Guix. Вы можете изменить файл @file{pom.xml}, чтобы удалить их, используя аргумент @code{#:exclude}. Его значение - это список ассоциаций, где ключ - это groupId плагина или зависимости, которые вы хотите удалить, а значение - это список artifactId, которые вы хотите удалить." #. type: defvr -#: guix-git/doc/guix.texi:8439 +#: guix-git/doc/guix.texi:8496 msgid "You can override the default @code{jdk} and @code{maven} packages with the corresponding argument, @code{#:jdk} and @code{#:maven}." msgstr "Вы можете переопределить пакеты по умолчанию @code{jdk} и @code{maven} с помощью соответствующего аргумента, @code{#:jdk} и @code{#:maven}." #. type: defvr -#: guix-git/doc/guix.texi:8444 +#: guix-git/doc/guix.texi:8501 msgid "The @code{#:maven-plugins} argument is a list of maven plugins used during the build, with the same format as the @code{inputs} fields of the package declaration. Its default value is @code{(default-maven-plugins)} which is also exported." msgstr "Аргумент @code{#:maven-plugins} - это список подключаемых модулей maven, используемых во время сборки, в том же формате, что и поля @code{inputs} в объявлении пакета. Его значение по умолчанию - @code{(default-maven-plugins)}, которое также экспортируется." #. type: defvr -#: guix-git/doc/guix.texi:8446 +#: guix-git/doc/guix.texi:8503 #, no-wrap msgid "{Scheme Variable} minetest-mod-build-system" msgstr "{Scheme переменная} minetest-mod-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8452 +#: guix-git/doc/guix.texi:8509 #, fuzzy #| msgid "This variable is exported by @code{(guix build-system ocaml)}. It implements a build procedure for @uref{https://ocaml.org, OCaml} packages, which consists of choosing the correct set of commands to run for each package. OCaml packages can expect many different commands to be run. This build system will try some of them." msgid "This variable is exported by @code{(guix build-system minetest)}. It implements a build procedure for @uref{https://www.minetest.net, Minetest} mods, which consists of copying Lua code, images and other resources to the location Minetest searches for mods. The build system also minimises PNG images and verifies that Minetest can load the mod without errors." msgstr "Эта переменная экспортируется в @code{(guix build-system ocaml)}. Она реализует процедуру сборки пакетов @uref{https://ocaml.org, OCaml}, которая заключается в выборе правильного набора команд для запуска для каждого пакета. Пакеты OCaml могут ожидать выполнения множества различных команд. Эта система сборки попробует некоторые из них." #. type: defvr -#: guix-git/doc/guix.texi:8454 +#: guix-git/doc/guix.texi:8511 #, no-wrap msgid "{Scheme Variable} minify-build-system" msgstr "{Scheme переменная} minify-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8457 +#: guix-git/doc/guix.texi:8514 msgid "This variable is exported by @code{(guix build-system minify)}. It implements a minification procedure for simple JavaScript packages." msgstr "Эта переменная экспортируется в @code{(guix build-system minify)}. Она реализует процедуру минификации для простых пакетов JavaScript." #. type: defvr -#: guix-git/doc/guix.texi:8463 +#: guix-git/doc/guix.texi:8520 msgid "It adds @code{uglify-js} to the set of inputs and uses it to compress all JavaScript files in the @file{src} directory. A different minifier package can be specified with the @code{#:uglify-js} parameter, but it is expected that the package writes the minified code to the standard output." msgstr "Он добавляет @code{uglify-js} к набору входных данных и использует его для сжатия всех файлов JavaScript в каталоге @file{src}. Другой minifier пакет можно указать с помощью параметра @code{#:uglify-js}, но ожидается, что этот пакет запишет минимизированный код в стандартный вывод." #. type: defvr -#: guix-git/doc/guix.texi:8467 +#: guix-git/doc/guix.texi:8524 msgid "When the input JavaScript files are not all located in the @file{src} directory, the parameter @code{#:javascript-files} can be used to specify a list of file names to feed to the minifier." msgstr "Когда не все входные файлы JavaScript находятся в каталоге @file{src}, можно использовать параметр @code{#:javascript-files}, чтобы указать список имен файлов для передачи в minifier." #. type: defvr -#: guix-git/doc/guix.texi:8469 +#: guix-git/doc/guix.texi:8526 #, no-wrap msgid "{Scheme Variable} ocaml-build-system" msgstr "{Scheme переменная} ocaml-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8475 +#: guix-git/doc/guix.texi:8532 msgid "This variable is exported by @code{(guix build-system ocaml)}. It implements a build procedure for @uref{https://ocaml.org, OCaml} packages, which consists of choosing the correct set of commands to run for each package. OCaml packages can expect many different commands to be run. This build system will try some of them." msgstr "Эта переменная экспортируется в @code{(guix build-system ocaml)}. Она реализует процедуру сборки пакетов @uref{https://ocaml.org, OCaml}, которая заключается в выборе правильного набора команд для запуска для каждого пакета. Пакеты OCaml могут ожидать выполнения множества различных команд. Эта система сборки попробует некоторые из них." #. type: defvr -#: guix-git/doc/guix.texi:8485 +#: guix-git/doc/guix.texi:8542 msgid "When the package has a @file{setup.ml} file present at the top-level, it will run @code{ocaml setup.ml -configure}, @code{ocaml setup.ml -build} and @code{ocaml setup.ml -install}. The build system will assume that this file was generated by @uref{http://oasis.forge.ocamlcore.org/, OASIS} and will take care of setting the prefix and enabling tests if they are not disabled. You can pass configure and build flags with the @code{#:configure-flags} and @code{#:build-flags}. The @code{#:test-flags} key can be passed to change the set of flags used to enable tests. The @code{#:use-make?} key can be used to bypass this system in the build and install phases." msgstr "Если в пакете есть файл @file{setup.ml} на верхнем уровне, он будет запускать @code{ocaml setup.ml -configure}, @code{ocaml setup.ml -build} и @code{ocaml setup.ml -install}. Система сборки предполагает, что этот файл был сгенерирован @uref{http://oasis.forge.ocamlcore.org/, OASIS}, и позаботится об установке префикса и включении тестов, если они не отключены. Вы можете передать флаги конфигурации и сборки с помощью @code{#:configure-flags} и @code{#:build-flags}. Ключ @code{#:test-flags} может быть передан для изменения набора флагов, используемых для включения тестов. Ключ @code{#:use-make?} можно использовать для обхода этой системы на этапах сборки и установки." #. type: defvr -#: guix-git/doc/guix.texi:8490 +#: guix-git/doc/guix.texi:8547 msgid "When the package has a @file{configure} file, it is assumed that it is a hand-made configure script that requires a different argument format than in the @code{gnu-build-system}. You can add more flags with the @code{#:configure-flags} key." msgstr "Когда в пакете есть файл @file{configure}, предполагается, что это созданный вручную скрипт настройки, для которого требуется другой формат аргументов, чем в @code{gnu-build-system}. Вы можете добавить дополнительные флаги с помощью клавиши @code{#:configure-flags}." #. type: defvr -#: guix-git/doc/guix.texi:8494 +#: guix-git/doc/guix.texi:8551 msgid "When the package has a @file{Makefile} file (or @code{#:use-make?} is @code{#t}), it will be used and more flags can be passed to the build and install phases with the @code{#:make-flags} key." msgstr "Когда в пакете есть файл @file{Makefile} (или @code{#:use-make?} - это @code{#t}), он будет использоваться, и дополнительные флаги могут быть переданы на этапы сборки и установки с @code{#:make-flags} ключом." #. type: defvr -#: guix-git/doc/guix.texi:8502 +#: guix-git/doc/guix.texi:8559 msgid "Finally, some packages do not have these files and use a somewhat standard location for its build system. In that case, the build system will run @code{ocaml pkg/pkg.ml} or @code{ocaml pkg/build.ml} and take care of providing the path to the required findlib module. Additional flags can be passed via the @code{#:build-flags} key. Install is taken care of by @command{opam-installer}. In this case, the @code{opam} package must be added to the @code{native-inputs} field of the package definition." msgstr "Наконец, некоторые пакеты не имеют этих файлов и используют стандартное расположение для своей системы сборки. В этом случае система сборки запустит @code{ocaml pkg/pkg.ml} или @code{ocaml pkg/build.ml} и позаботится о предоставлении пути к необходимому модулю findlib. Дополнительные флаги можно передать с помощью ключа @code{#:build-flags}. Об установке позаботится @command{opam-installer}. В этом случае пакет @code{opam} необходимо добавить в поле @code{native-inputs} в определении пакета." #. type: defvr -#: guix-git/doc/guix.texi:8510 +#: guix-git/doc/guix.texi:8567 msgid "Note that most OCaml packages assume they will be installed in the same directory as OCaml, which is not what we want in guix. In particular, they will install @file{.so} files in their module's directory, which is usually fine because it is in the OCaml compiler directory. In guix though, these libraries cannot be found and we use @env{CAML_LD_LIBRARY_PATH}. This variable points to @file{lib/ocaml/site-lib/stubslibs} and this is where @file{.so} libraries should be installed." msgstr "Обратите внимание, что большинство пакетов OCaml предполагают, что они будут установлены в том же каталоге, что и OCaml, что не является тем, что мы хотим в guix. В частности, они устанавливают файлы @file{.so} в каталог своего модуля, что обычно нормально, потому что он находится в каталоге компилятора OCaml. Однако в guix эти библиотеки нельзя найти, и мы используем @env{CAML_LD_LIBRARY_PATH}. Эта переменная указывает на @file{lib/ocaml/site-lib/stubslibs}, и именно здесь должны быть установлены библиотеки @file{.so}." #. type: defvr -#: guix-git/doc/guix.texi:8512 +#: guix-git/doc/guix.texi:8569 #, no-wrap msgid "{Scheme Variable} python-build-system" msgstr "{Scheme переменная} python-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8517 +#: guix-git/doc/guix.texi:8574 msgid "This variable is exported by @code{(guix build-system python)}. It implements the more or less standard build procedure used by Python packages, which consists in running @code{python setup.py build} and then @code{python setup.py install --prefix=/gnu/store/@dots{}}." msgstr "Эта переменная экспортируется в @code{(guix build-system python)}. Она реализует более или менее стандартную процедуру сборки, используемую пакетами Python, которая заключается в запуске @code{python setup.py build}, а затем @code{python setup.py install --prefix=/gnu/store/@dots{}}." #. type: defvr -#: guix-git/doc/guix.texi:8522 +#: guix-git/doc/guix.texi:8579 #, fuzzy #| msgid "For packages that install stand-alone Python programs under @code{bin/}, it takes care of wrapping these programs so that their @env{PYTHONPATH} environment variable points to all the Python libraries they depend on." msgid "For packages that install stand-alone Python programs under @code{bin/}, it takes care of wrapping these programs so that their @env{GUIX_PYTHONPATH} environment variable points to all the Python libraries they depend on." msgstr "Для пакетов, которые устанавливают само-достаточные программы Python в @code{bin/}, она заботится об обертке этих программ, чтобы их переменная среды @env{PYTHONPATH} указывала на все библиотеки Python, от которых они зависят." #. type: defvr -#: guix-git/doc/guix.texi:8528 +#: guix-git/doc/guix.texi:8585 msgid "Which Python package is used to perform the build can be specified with the @code{#:python} parameter. This is a useful way to force a package to be built for a specific version of the Python interpreter, which might be necessary if the package is only compatible with a single interpreter version." msgstr "Какой пакет Python используется для сборки, можно указать с помощью параметра @code{#:python}. Это полезный способ принудительно создать пакет для определенной версии интерпретатора Python, что может потребоваться, если пакет совместим только с одной версией интерпретатора." #. type: defvr -#: guix-git/doc/guix.texi:8533 +#: guix-git/doc/guix.texi:8590 msgid "By default guix calls @code{setup.py} under control of @code{setuptools}, much like @command{pip} does. Some packages are not compatible with setuptools (and pip), thus you can disable this by setting the @code{#:use-setuptools?} parameter to @code{#f}." msgstr "По умолчанию guix вызывает @code{setup.py} под управлением @code{setuptools}, как и @command{pip}. Некоторые пакеты несовместимы с setuptools (и pip), поэтому вы можете отключить это, установив для параметра @code{#:use-setuptools?} значение @code{#f}." #. type: defvr -#: guix-git/doc/guix.texi:8539 +#: guix-git/doc/guix.texi:8596 msgid "If a @code{\"python\"} output is available, the package is installed into it instead of the default @code{\"out\"} output. This is useful for packages that include a Python package as only a part of the software, and thus want to combine the phases of @code{python-build-system} with another build system. Python bindings are a common usecase." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8542 +#: guix-git/doc/guix.texi:8599 #, no-wrap msgid "{Scheme Variable} perl-build-system" msgstr "{Scheme Variable} perl-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8554 +#: guix-git/doc/guix.texi:8611 msgid "This variable is exported by @code{(guix build-system perl)}. It implements the standard build procedure for Perl packages, which either consists in running @code{perl Build.PL --prefix=/gnu/store/@dots{}}, followed by @code{Build} and @code{Build install}; or in running @code{perl Makefile.PL PREFIX=/gnu/store/@dots{}}, followed by @code{make} and @code{make install}, depending on which of @code{Build.PL} or @code{Makefile.PL} is present in the package distribution. Preference is given to the former if both @code{Build.PL} and @code{Makefile.PL} exist in the package distribution. This preference can be reversed by specifying @code{#t} for the @code{#:make-maker?} parameter." msgstr "Эта переменная экспортируется в @code{(guix build-system perl)}. Она реализует стандартную процедуру сборки для пакетов Perl, которая заключается либо в запуске @code{perl Build.PL --prefix=/gnu/store/@dots{}}, за которым следуют @code{Build} и @code{Build install}; или при запуске @code{perl Makefile.PL PREFIX=/gnu/store/@dots{}}, за которым следуют @code{make} и @code{make install}, в зависимости от того, какой из @code{Build.PL} или @code{Makefile.PL} присутствует в дистрибутиве пакета. Предпочтение отдается первому, если в дистрибутиве пакета есть и @code{Build.PL}, и @code{Makefile.PL}. Это предпочтение можно отменить, указав @code{#t} для параметра @code{#:make-maker?}." #. type: defvr -#: guix-git/doc/guix.texi:8558 +#: guix-git/doc/guix.texi:8615 msgid "The initial @code{perl Makefile.PL} or @code{perl Build.PL} invocation passes flags specified by the @code{#:make-maker-flags} or @code{#:module-build-flags} parameter, respectively." msgstr "Первоначальный вызов @code{perl Makefile.PL} или @code{perl Build.PL} передает флаги, указанные в параметре @code{#:make-maker-flags} или @code{#:module-build-flags}, соответственно." #. type: defvr -#: guix-git/doc/guix.texi:8560 +#: guix-git/doc/guix.texi:8617 msgid "Which Perl package is used can be specified with @code{#:perl}." msgstr "Какой пакет Perl используется, можно указать с помощью @code{#:perl}." #. type: defvr -#: guix-git/doc/guix.texi:8562 +#: guix-git/doc/guix.texi:8619 #, no-wrap msgid "{Scheme Variable} renpy-build-system" msgstr "{Scheme Variable} r-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8566 +#: guix-git/doc/guix.texi:8623 msgid "This variable is exported by @code{(guix build-system renpy)}. It implements the more or less standard build procedure used by Ren'py games, which consists of loading @code{#:game} once, thereby creating bytecode for it." msgstr "Эта переменная экспортируется в @code{(guix build-system python)}. Она реализует более или менее стандартную процедуру сборки, используемую пакетами Python, которая заключается в запуске @code{python setup.py build}, а затем @code{python setup.py install --prefix=/gnu/store/@dots{}}." #. type: defvr -#: guix-git/doc/guix.texi:8569 +#: guix-git/doc/guix.texi:8626 msgid "It further creates a wrapper script in @code{bin/} and a desktop entry in @code{share/applications}, both of which can be used to launch the game." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8573 +#: guix-git/doc/guix.texi:8630 msgid "Which Ren'py package is used can be specified with @code{#:renpy}. Games can also be installed in outputs other than ``out'' by using @code{#:output}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8575 +#: guix-git/doc/guix.texi:8632 #, no-wrap msgid "{Scheme Variable} qt-build-system" msgstr "{Scheme переменная} qt-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8578 +#: guix-git/doc/guix.texi:8635 msgid "This variable is exported by @code{(guix build-system qt)}. It is intended for use with applications using Qt or KDE." msgstr "Эта переменная экспортируется в @code{(guix build-system qt)}. Она предназначена для использования с приложениями, использующими Qt или KDE." #. type: defvr -#: guix-git/doc/guix.texi:8581 +#: guix-git/doc/guix.texi:8638 msgid "This build system adds the following two phases to the ones defined by @code{cmake-build-system}:" msgstr "Эта система сборки добавляет следующие две фазы к тем, которые определены в @code{cmake-build-system}:" #. type: item -#: guix-git/doc/guix.texi:8583 +#: guix-git/doc/guix.texi:8640 #, no-wrap msgid "check-setup" msgstr "check-setup" #. type: table -#: guix-git/doc/guix.texi:8590 +#: guix-git/doc/guix.texi:8647 msgid "The phase @code{check-setup} prepares the environment for running the checks as commonly used by Qt test programs. For now this only sets some environment variables: @code{QT_QPA_PLATFORM=offscreen}, @code{DBUS_FATAL_WARNINGS=0} and @code{CTEST_OUTPUT_ON_FAILURE=1}." msgstr "Фаза @code{check-setup} подготавливает среду к запуску проверок, которые обычно используются тестовыми программами Qt. Пока это устанавливает только некоторые переменные среды: @code{QT_QPA_PLATFORM=offscreen}, @code{DBUS_FATAL_WARNINGS=0} и @code{CTEST_OUTPUT_ON_FAILURE=1}." #. type: table -#: guix-git/doc/guix.texi:8593 +#: guix-git/doc/guix.texi:8650 msgid "This phase is added before the @code{check} phase. It's a separate phase to ease adjusting if necessary." msgstr "Этот этап добавляется перед этапом @code{check}. Это отдельный этап для облегчения настройки." #. type: item -#: guix-git/doc/guix.texi:8594 +#: guix-git/doc/guix.texi:8651 #, no-wrap msgid "qt-wrap" msgstr "qt-wrap" #. type: table -#: guix-git/doc/guix.texi:8600 +#: guix-git/doc/guix.texi:8657 msgid "The phase @code{qt-wrap} searches for Qt5 plugin paths, QML paths and some XDG in the inputs and output. In case some path is found, all programs in the output's @file{bin/}, @file{sbin/}, @file{libexec/} and @file{lib/libexec/} directories are wrapped in scripts defining the necessary environment variables." msgstr "Фаза @code{qt-wrap} ищет пути к плагинам Qt5, пути QML и некоторый XDG во входных и выходных данных. Если путь найден, все программы в выходных каталогах @file{bin/}, @file{sbin/}, @file{libexec/} и @file{lib/libexec/} заключены в сценарии, определяющие необходимые environment переменные." #. type: table -#: guix-git/doc/guix.texi:8606 +#: guix-git/doc/guix.texi:8663 msgid "It is possible to exclude specific package outputs from that wrapping process by listing their names in the @code{#:qt-wrap-excluded-outputs} parameter. This is useful when an output is known not to contain any Qt binaries, and where wrapping would gratuitously add a dependency of that output on Qt, KDE, or such." msgstr "Можно исключить определенные выходные данные пакета из этого процесса упаковки, указав их имена в параметре @code{#:qt-wrap-excluded-output}. Это полезно, когда известно, что вывод не содержит никаких двоичных файлов Qt, и когда обертка может произвольно добавить зависимость этого вывода от Qt, KDE и т.п." #. type: table -#: guix-git/doc/guix.texi:8608 +#: guix-git/doc/guix.texi:8665 msgid "This phase is added after the @code{install} phase." msgstr "Эта фаза добавляется после фазы @code{install}." #. type: defvr -#: guix-git/doc/guix.texi:8611 +#: guix-git/doc/guix.texi:8668 #, no-wrap msgid "{Scheme Variable} r-build-system" msgstr "{Scheme Variable} r-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8619 +#: guix-git/doc/guix.texi:8676 msgid "This variable is exported by @code{(guix build-system r)}. It implements the build procedure used by @uref{https://r-project.org, R} packages, which essentially is little more than running @samp{R CMD INSTALL --library=/gnu/store/@dots{}} in an environment where @env{R_LIBS_SITE} contains the paths to all R package inputs. Tests are run after installation using the R function @code{tools::testInstalledPackage}." msgstr "Эта переменная экспортируется в @code{(guix build-system r)}. Она реализует процедуру сборки, используемую пакетами @uref{https://r-project.org, R}, которая, по сути, немного больше, чем запуск @samp{R CMD INSTALL --library=/gnu/store/@dots{}} в среде, где @env{R_LIBS_SITE} содержит пути ко всем входам пакета R. Тесты запускаются после установки с использованием R-функции @code{tools::testInstalledPackage}." #. type: defvr -#: guix-git/doc/guix.texi:8621 +#: guix-git/doc/guix.texi:8678 #, no-wrap msgid "{Scheme Variable} rakudo-build-system" msgstr "{Scheme переменная} rakudo-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8629 +#: guix-git/doc/guix.texi:8686 msgid "This variable is exported by @code{(guix build-system rakudo)}. It implements the build procedure used by @uref{https://rakudo.org/, Rakudo} for @uref{https://perl6.org/, Perl6} packages. It installs the package to @code{/gnu/store/@dots{}/NAME-VERSION/share/perl6} and installs the binaries, library files and the resources, as well as wrap the files under the @code{bin/} directory. Tests can be skipped by passing @code{#f} to the @code{tests?} parameter." msgstr "Эта переменная экспортируется @code{(guix build-system rakudo)}. Которая реализует систем сборки, используемую @uref{https://rakudo.org/, Rakudo} для @uref{https://perl6.org/, Perl6} пакетов. Она устанавливает: пакет в @code{/gnu/store/@dots{}/NAME-VERSION/share/perl6}; двоичные файлы, библиотеки и ресурсы; помещает файлы в @code{bin/}. Тесты можно пропустить, передав @code{#f} параметру @code{tests?}." #. type: defvr -#: guix-git/doc/guix.texi:8637 +#: guix-git/doc/guix.texi:8694 msgid "Which rakudo package is used can be specified with @code{rakudo}. Which perl6-tap-harness package used for the tests can be specified with @code{#:prove6} or removed by passing @code{#f} to the @code{with-prove6?} parameter. Which perl6-zef package used for tests and installing can be specified with @code{#:zef} or removed by passing @code{#f} to the @code{with-zef?} parameter." msgstr "Какой пакет rakudo используется, можно указать с помощью @code{rakudo}. Какой пакет perl6-tap-harness, используемый для тестов, можно указать с помощью @code{#:verify6} или удалить, передав @code{#f} в параметр @code{with-verify6?}. Какой пакет perl6-zef, используемый для тестирования и установки, можно указать с помощью @code{#:zef} или удалить, передав @code{#f} в параметр @code{with-zef?}." #. type: defvr -#: guix-git/doc/guix.texi:8639 +#: guix-git/doc/guix.texi:8696 #, no-wrap msgid "{Scheme Variable} texlive-build-system" msgstr "{Scheme переменная} texlive-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8644 +#: guix-git/doc/guix.texi:8701 msgid "This variable is exported by @code{(guix build-system texlive)}. It is used to build TeX packages in batch mode with a specified engine. The build system sets the @env{TEXINPUTS} variable to find all TeX source files in the inputs." msgstr "Эта переменная экспортируется в @code{(guix build-system texlive)}. Она используется для сборки пакетов TeX в batch режиме с указанным движком. Система сборки устанавливает переменную @env{TEXINPUTS} для поиска всех исходных файлов TeX во входных данных." #. type: defvr -#: guix-git/doc/guix.texi:8653 +#: guix-git/doc/guix.texi:8710 msgid "By default it runs @code{luatex} on all files ending on @code{ins}. A different engine and format can be specified with the @code{#:tex-format} argument. Different build targets can be specified with the @code{#:build-targets} argument, which expects a list of file names. The build system adds only @code{texlive-bin} and @code{texlive-latex-base} (both from @code{(gnu packages tex}) to the inputs. Both can be overridden with the arguments @code{#:texlive-bin} and @code{#:texlive-latex-base}, respectively." msgstr "По умолчанию она запускает @code{luatex} для всех файлов, заканчивающихся на @code{ins}. Другой механизм и формат можно указать с помощью аргумента @code{#:tex-format}. Различные цели сборки могут быть указаны с помощью аргумента @code{#:build-target}, который ожидает список имен файлов. Система сборки добавляет к входам только @code{texlive-bin} и @code{texlive-latex-base} (оба из @code{(gnu packages tex}). Оба могут быть переопределены с помощью аргументов @code{#:texlive-bin} и @code{#:texlive-latex-base} соответственно." #. type: defvr -#: guix-git/doc/guix.texi:8656 +#: guix-git/doc/guix.texi:8713 msgid "The @code{#:tex-directory} parameter tells the build system where to install the built files under the texmf tree." msgstr "Параметр @code{#:tex-directory} сообщает системе сборки, где установить созданные файлы в дереве texmf." #. type: defvr -#: guix-git/doc/guix.texi:8658 +#: guix-git/doc/guix.texi:8715 #, no-wrap msgid "{Scheme Variable} ruby-build-system" msgstr "{Scheme переменная} ruby-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8662 +#: guix-git/doc/guix.texi:8719 msgid "This variable is exported by @code{(guix build-system ruby)}. It implements the RubyGems build procedure used by Ruby packages, which involves running @code{gem build} followed by @code{gem install}." msgstr "Эта переменная экспортируется в @code{(guix build-system ruby)}. Она реализует процедуру сборки RubyGems, используемую пакетами Ruby, которая включает запуск @code{gem build}, за которым следует @code{gem install}." #. type: defvr -#: guix-git/doc/guix.texi:8670 +#: guix-git/doc/guix.texi:8727 msgid "The @code{source} field of a package that uses this build system typically references a gem archive, since this is the format that Ruby developers use when releasing their software. The build system unpacks the gem archive, potentially patches the source, runs the test suite, repackages the gem, and installs it. Additionally, directories and tarballs may be referenced to allow building unreleased gems from Git or a traditional source release tarball." msgstr "Поле @code{source} пакета, использующего эту систему сборки, обычно ссылается на gem архив, поскольку это формат, который разработчики Ruby используют при выпуске своего программного обеспечения. Система сборки распаковывает gem архив, потенциально исправляет исходный код, запускает набор тестов, переупаковывает gem и устанавливает его. Кроме того, на каталоги и архивы можно ссылаться, чтобы можно было создавать unreleased gem'ы из Git или традиционного архива с исходным кодом." #. type: defvr -#: guix-git/doc/guix.texi:8674 +#: guix-git/doc/guix.texi:8731 msgid "Which Ruby package is used can be specified with the @code{#:ruby} parameter. A list of additional flags to be passed to the @command{gem} command can be specified with the @code{#:gem-flags} parameter." msgstr "Какой пакет Ruby используется, можно указать с помощью параметра @code{#:ruby}. Список дополнительных флагов, передаваемых команде @command{gem}, можно указать с помощью параметра @code{#:gem-flags}." #. type: defvr -#: guix-git/doc/guix.texi:8676 +#: guix-git/doc/guix.texi:8733 #, no-wrap msgid "{Scheme Variable} waf-build-system" msgstr "{Scheme переменная} waf-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8682 +#: guix-git/doc/guix.texi:8739 msgid "This variable is exported by @code{(guix build-system waf)}. It implements a build procedure around the @code{waf} script. The common phases---@code{configure}, @code{build}, and @code{install}---are implemented by passing their names as arguments to the @code{waf} script." msgstr "Эта переменная экспортируется в @code{(guix build-system waf)}. Она реализует процедуру сборки вокруг сценария @code{waf}. Общие этапы---@code{configure}, @code{build} и @code{install}---реализуются путем передачи их имен в качестве аргументов сценарию @code{waf}." #. type: defvr -#: guix-git/doc/guix.texi:8686 +#: guix-git/doc/guix.texi:8743 msgid "The @code{waf} script is executed by the Python interpreter. Which Python package is used to run the script can be specified with the @code{#:python} parameter." msgstr "Скрипт @code{waf} выполняется интерпретатором Python. Какой пакет Python используется для запуска сценария, можно указать с помощью параметра @code{#:python}." #. type: defvr -#: guix-git/doc/guix.texi:8688 +#: guix-git/doc/guix.texi:8745 #, no-wrap msgid "{Scheme Variable} scons-build-system" msgstr "{Scheme переменная} scons-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8694 +#: guix-git/doc/guix.texi:8751 msgid "This variable is exported by @code{(guix build-system scons)}. It implements the build procedure used by the SCons software construction tool. This build system runs @code{scons} to build the package, @code{scons test} to run tests, and then @code{scons install} to install the package." msgstr "Эта переменная экспортируется в @code{(guix build-system scons)}. Она реализует процедуру сборки, используемую инструментом сборки программного обеспечения SCons. Эта система сборки запускает @code{scons} для сборки пакета, @code{scons test} для запуска тестов и затем @code{scons install} для установки пакета." #. type: defvr -#: guix-git/doc/guix.texi:8701 +#: guix-git/doc/guix.texi:8758 msgid "Additional flags to be passed to @code{scons} can be specified with the @code{#:scons-flags} parameter. The default build and install targets can be overridden with @code{#:build-targets} and @code{#:install-targets} respectively. The version of Python used to run SCons can be specified by selecting the appropriate SCons package with the @code{#:scons} parameter." msgstr "Дополнительные флаги, передаваемые в @code{scons}, можно указать с помощью параметра @code{#:scons-flags}. Цели сборки и установки по умолчанию могут быть переопределены с помощью @code{#:build-target} и @code{#:install-target} соответственно. Версия Python, используемая для запуска SCons, может быть указана путем выбора соответствующего пакета SCons с параметром @code{#:scons}." #. type: defvr -#: guix-git/doc/guix.texi:8703 +#: guix-git/doc/guix.texi:8760 #, no-wrap msgid "{Scheme Variable} haskell-build-system" msgstr "{Scheme переменная} haskell-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8717 +#: guix-git/doc/guix.texi:8774 msgid "This variable is exported by @code{(guix build-system haskell)}. It implements the Cabal build procedure used by Haskell packages, which involves running @code{runhaskell Setup.hs configure --prefix=/gnu/store/@dots{}} and @code{runhaskell Setup.hs build}. Instead of installing the package by running @code{runhaskell Setup.hs install}, to avoid trying to register libraries in the read-only compiler store directory, the build system uses @code{runhaskell Setup.hs copy}, followed by @code{runhaskell Setup.hs register}. In addition, the build system generates the package documentation by running @code{runhaskell Setup.hs haddock}, unless @code{#:haddock? #f} is passed. Optional Haddock parameters can be passed with the help of the @code{#:haddock-flags} parameter. If the file @code{Setup.hs} is not found, the build system looks for @code{Setup.lhs} instead." msgstr "Эта переменная экспортируется в @code{(guix build-system haskell)}. Она реализует процедуру сборки Cabal, используемую пакетами Haskell, которая включает запуск @code{runhaskell Setup.hs configure --prefix=/gnu/store/@dots{}} и @code{runhaskell Setup.hs build}. Вместо установки пакета путем запуска @code{runhaskell Setup.hs install}, чтобы избежать попыток регистрации библиотек в каталоге хранилища компилятора только для чтения, система сборки использует @code{runhaskell Setup.hs copy}, за которым следует @code{runhaskell Setup.hs register}. Кроме того, система сборки генерирует документацию по пакету, запуская @code{runhaskell Setup.hs haddock}, если только @code{#:haddock? #f} пройден. Дополнительные параметры можно передать с помощью параметра @code{#:haddock-flags}. Если файл @code{Setup.hs} не найден, система сборки вместо этого ищет @code{Setup.lhs}." #. type: defvr -#: guix-git/doc/guix.texi:8720 +#: guix-git/doc/guix.texi:8777 msgid "Which Haskell compiler is used can be specified with the @code{#:haskell} parameter which defaults to @code{ghc}." msgstr "Какой компилятор Haskell используется, можно указать с помощью параметра @code{#:haskell}, который по умолчанию равен @code{ghc}." #. type: defvr -#: guix-git/doc/guix.texi:8722 +#: guix-git/doc/guix.texi:8779 #, no-wrap msgid "{Scheme Variable} dub-build-system" msgstr "{Scheme переменная} dub-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8727 +#: guix-git/doc/guix.texi:8784 msgid "This variable is exported by @code{(guix build-system dub)}. It implements the Dub build procedure used by D packages, which involves running @code{dub build} and @code{dub run}. Installation is done by copying the files manually." msgstr "Эта переменная экспортируется в @code{(guix build-system dub)}. Она реализует процедуру сборки Dub, используемую пакетами D, которая включает запуск @code{dub build} и @code{dub run}. Установка осуществляется путем копирования файлов вручную." #. type: defvr -#: guix-git/doc/guix.texi:8730 +#: guix-git/doc/guix.texi:8787 msgid "Which D compiler is used can be specified with the @code{#:ldc} parameter which defaults to @code{ldc}." msgstr "Какой компилятор D используется, можно указать с помощью параметра @code{#:ldc}, который по умолчанию равен @code{ldc}." #. type: anchor{#1} -#: guix-git/doc/guix.texi:8733 +#: guix-git/doc/guix.texi:8790 msgid "emacs-build-system" msgstr "emacs-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8733 +#: guix-git/doc/guix.texi:8790 #, no-wrap msgid "{Scheme Variable} emacs-build-system" msgstr "{Scheme переменная} emacs-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8737 +#: guix-git/doc/guix.texi:8794 msgid "This variable is exported by @code{(guix build-system emacs)}. It implements an installation procedure similar to the packaging system of Emacs itself (@pxref{Packages,,, emacs, The GNU Emacs Manual})." msgstr "Эта переменная экспортируется в @code{(guix build-system emacs)}. Она реализует процедуру установки, аналогичную системе упаковки самого Emacs (@pxref{Packages,,, emacs, The GNU Emacs Manual})." #. type: defvr -#: guix-git/doc/guix.texi:8743 +#: guix-git/doc/guix.texi:8800 msgid "It first creates the @code{@code{package}-autoloads.el} file, then it byte compiles all Emacs Lisp files. Differently from the Emacs packaging system, the Info documentation files are moved to the standard documentation directory and the @file{dir} file is deleted. The Elisp package files are installed directly under @file{share/emacs/site-lisp}." msgstr "Сначала она создает файл @code{@code{package}-autoloads.el}, а затем байт-компилирует все файлы Emacs Lisp. В отличие от системы упаковки Emacs, файлы документации Info перемещаются в стандартный каталог документации, а файл @file{dir} удаляется. Файлы пакета Elisp устанавливаются непосредственно в @file{share/emacs/site-lisp}." #. type: defvr -#: guix-git/doc/guix.texi:8745 +#: guix-git/doc/guix.texi:8802 #, no-wrap msgid "{Scheme Variable} font-build-system" msgstr "{Scheme переменная} font-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8751 +#: guix-git/doc/guix.texi:8808 msgid "This variable is exported by @code{(guix build-system font)}. It implements an installation procedure for font packages where upstream provides pre-compiled TrueType, OpenType, etc.@: font files that merely need to be copied into place. It copies font files to standard locations in the output directory." msgstr "Эта переменная экспортируется в @code{(guix build-system font)}. Она реализует процедуру установки для пакетов шрифтов, в которой upstream предоставляет предварительно скомпилированные файлы TrueType, OpenType и т.д.@: файлы шрифтов, которые необходимо просто скопировать на место. Она копирует файлы шрифтов в стандартные места выходного каталога." #. type: defvr -#: guix-git/doc/guix.texi:8753 +#: guix-git/doc/guix.texi:8810 #, no-wrap msgid "{Scheme Variable} meson-build-system" msgstr "{Scheme переменная} meson-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8757 +#: guix-git/doc/guix.texi:8814 msgid "This variable is exported by @code{(guix build-system meson)}. It implements the build procedure for packages that use @url{https://mesonbuild.com, Meson} as their build system." msgstr "Эта переменная экспортируется в @code{(guix build-system meson)}. Она реализует процедуру сборки для пакетов, которые используют @url{https://mesonbuild.com, Meson} в качестве своей системы сборки." #. type: defvr -#: guix-git/doc/guix.texi:8761 +#: guix-git/doc/guix.texi:8818 #, fuzzy #| msgid "It adds both Meson and @uref{https://ninja-build.org/, Ninja} to the set of inputs, and they can be changed with the parameters @code{#:meson} and @code{#:ninja} if needed. The default Meson is @code{meson-for-build}, which is special because it doesn't clear the @code{RUNPATH} of binaries and libraries when they are installed." msgid "It adds both Meson and @uref{https://ninja-build.org/, Ninja} to the set of inputs, and they can be changed with the parameters @code{#:meson} and @code{#:ninja} if needed." msgstr "Она добавляет к набору входов как Meson, так и @uref{https://ninja-build.org/, Ninja}, и их можно изменить с помощью параметров @code{#:meson} и @code{#:ninja}. если нужно. По умолчанию Meson - это @code{meson-for-build}, что является особенным, потому что он не очищает @code{RUNPATH} от двоичных файлов и библиотек при их установке." #. type: defvr -#: guix-git/doc/guix.texi:8764 +#: guix-git/doc/guix.texi:8821 msgid "This build system is an extension of @code{gnu-build-system}, but with the following phases changed to some specific for Meson:" msgstr "Эта система сборки является расширением @code{gnu-build-system}, но со следующими фазами, измененными на некоторые специфичные для Meson:" #. type: item -#: guix-git/doc/guix.texi:8767 guix-git/doc/guix.texi:8818 -#: guix-git/doc/guix.texi:8886 +#: guix-git/doc/guix.texi:8824 guix-git/doc/guix.texi:8875 +#: guix-git/doc/guix.texi:8947 #, no-wrap msgid "configure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8772 +#: guix-git/doc/guix.texi:8829 msgid "The phase runs @code{meson} with the flags specified in @code{#:configure-flags}. The flag @option{--buildtype} is always set to @code{debugoptimized} unless something else is specified in @code{#:build-type}." msgstr "На этапе выполняется @code{meson} с флагами, указанными в @code{#:configure-flags}. Флаг @option{--buildtype} всегда установлен на @code{debugoptimized}, если что-то еще не указано в @code{#:build-type}." #. type: table -#: guix-git/doc/guix.texi:8776 +#: guix-git/doc/guix.texi:8833 msgid "The phase runs @code{ninja} to build the package in parallel by default, but this can be changed with @code{#:parallel-build?}." msgstr "На этапе выполняется @code{ninja} для параллельной сборки пакета по умолчанию, но это можно изменить с помощью @code{#:parallel-build?}." #. type: table -#: guix-git/doc/guix.texi:8782 +#: guix-git/doc/guix.texi:8839 msgid "The phase runs @samp{meson test} with a base set of options that cannot be overridden. This base set of options can be extended via the @code{#:test-options} argument, for example to select or skip a specific test suite." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8785 +#: guix-git/doc/guix.texi:8842 msgid "The phase runs @code{ninja install} and can not be changed." msgstr "Фаза выполняется @code{ninja install} и не может быть изменен." #. type: defvr -#: guix-git/doc/guix.texi:8788 +#: guix-git/doc/guix.texi:8845 msgid "Apart from that, the build system also adds the following phases:" msgstr "Помимо этого, система сборки также добавляет следующие фазы:" #. type: item -#: guix-git/doc/guix.texi:8791 +#: guix-git/doc/guix.texi:8848 #, no-wrap msgid "fix-runpath" msgstr "fix-runpath" #. type: table -#: guix-git/doc/guix.texi:8798 +#: guix-git/doc/guix.texi:8855 #, fuzzy #| msgid "This phase ensures that all binaries can find the libraries they need. It searches for required libraries in subdirectories of the package being built, and adds those to @code{RUNPATH} where needed. It also removes references to libraries left over from the build phase by @code{meson-for-build}, such as test dependencies, that aren't actually required for the program to run." msgid "This phase ensures that all binaries can find the libraries they need. It searches for required libraries in subdirectories of the package being built, and adds those to @code{RUNPATH} where needed. It also removes references to libraries left over from the build phase by @code{meson}, such as test dependencies, that aren't actually required for the program to run." msgstr "Эта фаза гарантирует, что все двоичные файлы могут найти нужные библиотеки. Она ищет необходимые библиотеки в подкаталогах собираемого пакета и, при необходимости, добавляет их в @code{RUNPATH}. Она также удаляет ссылки на библиотеки, оставшиеся от фазы сборки @code{meson-for-build}, такие как тестовые зависимости, которые на самом деле не требуются для запуска программы." #. type: table -#: guix-git/doc/guix.texi:8802 guix-git/doc/guix.texi:8806 +#: guix-git/doc/guix.texi:8859 guix-git/doc/guix.texi:8863 msgid "This phase is the phase provided by @code{glib-or-gtk-build-system}, and it is not enabled by default. It can be enabled with @code{#:glib-or-gtk?}." msgstr "Эта фаза предоставляется @code{glib-or-gtk-build-system} и по умолчанию не включена. Ее можно включить с помощью @code{#:glib-or-gtk?}." #. type: defvr -#: guix-git/doc/guix.texi:8809 +#: guix-git/doc/guix.texi:8866 #, no-wrap msgid "{Scheme Variable} linux-module-build-system" msgstr "{Scheme переменная} linux-module-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8811 +#: guix-git/doc/guix.texi:8868 msgid "@code{linux-module-build-system} allows building Linux kernel modules." msgstr "@code{linux-module-build-system} позволяет создавать модули ядра Linux." #. type: defvr -#: guix-git/doc/guix.texi:8815 +#: guix-git/doc/guix.texi:8872 msgid "This build system is an extension of @code{gnu-build-system}, but with the following phases changed:" msgstr "Эта система сборки является расширением @code{gnu-build-system}, но со следующими изменениями:" #. type: table -#: guix-git/doc/guix.texi:8821 +#: guix-git/doc/guix.texi:8878 msgid "This phase configures the environment so that the Linux kernel's Makefile can be used to build the external kernel module." msgstr "На этой фазе среда настраивается таким образом, чтобы Makefile ядра Linux можно было использовать для сборки внешнего модуля ядра." #. type: table -#: guix-git/doc/guix.texi:8825 +#: guix-git/doc/guix.texi:8882 msgid "This phase uses the Linux kernel's Makefile in order to build the external kernel module." msgstr "На этой фазе используется Makefile ядра Linux для сборки внешнего модуля ядра." #. type: table -#: guix-git/doc/guix.texi:8829 +#: guix-git/doc/guix.texi:8886 msgid "This phase uses the Linux kernel's Makefile in order to install the external kernel module." msgstr "На этой фазе используется Makefile ядра Linux для установки внешнего модуля ядра." #. type: defvr -#: guix-git/doc/guix.texi:8834 +#: guix-git/doc/guix.texi:8891 msgid "It is possible and useful to specify the Linux kernel to use for building the module (in the @code{arguments} form of a package using the @code{linux-module-build-system}, use the key @code{#:linux} to specify it)." msgstr "Возможно и полезно указать ядро Linux, которое будет использоваться для сборки модуля (в форме @code{arguments} пакета с использованием @code{linux-module-build-system} используйте ключ @code{#:linux}, чтобы указать это)." #. type: defvr -#: guix-git/doc/guix.texi:8836 +#: guix-git/doc/guix.texi:8893 #, no-wrap msgid "{Scheme Variable} node-build-system" msgstr "{Scheme переменная} node-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8841 +#: guix-git/doc/guix.texi:8898 msgid "This variable is exported by @code{(guix build-system node)}. It implements the build procedure used by @uref{https://nodejs.org, Node.js}, which implements an approximation of the @code{npm install} command, followed by an @code{npm test} command." msgstr "Эта переменная экспортируется в @code{(guix build-system node)}. Она реализует процедуру сборки, используемую @uref{https://nodejs.org, Node.js}, которая реализует аппроксимацию команды @code{npm install}, за которой следует команда @code{npm test}." #. type: defvr -#: guix-git/doc/guix.texi:8845 +#: guix-git/doc/guix.texi:8902 msgid "Which Node.js package is used to interpret the @code{npm} commands can be specified with the @code{#:node} parameter which defaults to @code{node}." msgstr "Какой пакет Node.js используется для интерпретации команд @code{npm}, можно указать с помощью параметра @code{#:node}, который по умолчанию равен @code{node}." #. type: Plain text -#: guix-git/doc/guix.texi:8851 +#: guix-git/doc/guix.texi:8908 msgid "Lastly, for packages that do not need anything as sophisticated, a ``trivial'' build system is provided. It is trivial in the sense that it provides basically no support: it does not pull any implicit inputs, and does not have a notion of build phases." msgstr "Наконец, для пакетов, которым не нужно ничего столь же сложного, предоставляется ``trivial'' система сборки. Она тривиальна в том смысле, что она практически не оказывает поддержки при сборке: она не извлекает никаких неявных входных данных и не имеет понятия о этапах сборки." #. type: defvr -#: guix-git/doc/guix.texi:8852 +#: guix-git/doc/guix.texi:8909 #, no-wrap msgid "{Scheme Variable} trivial-build-system" msgstr "{Scheme переменная} trivial-build-system" #. type: defvr -#: guix-git/doc/guix.texi:8854 +#: guix-git/doc/guix.texi:8911 msgid "This variable is exported by @code{(guix build-system trivial)}." msgstr "Эта переменная экспортируется @code{(guix build-system trivial)}." #. type: defvr -#: guix-git/doc/guix.texi:8859 +#: guix-git/doc/guix.texi:8916 msgid "This build system requires a @code{#:builder} argument. This argument must be a Scheme expression that builds the package output(s)---as with @code{build-expression->derivation} (@pxref{Derivations, @code{build-expression->derivation}})." msgstr "Эта система сборки требует аргумента @code{#:builder}. Этот аргумент должен быть Scheme выражением, которое строит выходные данные пакета---как с @code{build-expression->derivation} (@pxref{Derivations, @code{build-expression->derivation}})." #. type: cindex -#: guix-git/doc/guix.texi:8864 +#: guix-git/doc/guix.texi:8921 #, no-wrap msgid "build phases, for packages" msgstr "входные данные, для пакетов Python" #. type: Plain text -#: guix-git/doc/guix.texi:8870 +#: guix-git/doc/guix.texi:8927 msgid "Almost all package build systems implement a notion @dfn{build phases}: a sequence of actions that the build system executes, when you build the package, leading to the installed byproducts in the store. A notable exception is the ``bare-bones'' @code{trivial-build-system} (@pxref{Build Systems})." msgstr "Почти все системы сборки пакетов реализуют понятие @dfn{фазы сборки}: последовательность действий, которые система сборки выполняет при сборке пакета, что приводит к установке побочных продуктов в store. Заметным исключением является ``bare-bones'' @code{trivial-build-system} (@pxref{Build Systems})." #. type: Plain text -#: guix-git/doc/guix.texi:8874 +#: guix-git/doc/guix.texi:8931 msgid "As discussed in the previous section, those build systems provide a standard list of phases. For @code{gnu-build-system}, the main build phases are the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8876 +#: guix-git/doc/guix.texi:8933 +#, fuzzy, no-wrap +#| msgid "--search-paths" +msgid "set-paths" +msgstr "--search-paths" + +#. type: table +#: guix-git/doc/guix.texi:8936 +msgid "Define search path environment variables for all the input packages, including @env{PATH} (@pxref{Search Paths})." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:8937 #, no-wrap msgid "unpack" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8880 +#: guix-git/doc/guix.texi:8941 msgid "Unpack the source tarball, and change the current directory to the extracted source tree. If the source is actually a directory, copy it to the build tree, and enter that directory." msgstr "Распаковать архив исходных текстов и измените текущий каталог на извлеченное дерево исходных текстов. Если источник на самом деле является каталогом, скопировать его в дерево сборки и войдите в этот каталог." #. type: item -#: guix-git/doc/guix.texi:8881 +#: guix-git/doc/guix.texi:8942 #, no-wrap msgid "patch-source-shebangs" msgstr "patch-source-shebangs" #. type: table -#: guix-git/doc/guix.texi:8885 +#: guix-git/doc/guix.texi:8946 msgid "Patch shebangs encountered in source files so they refer to the right store file names. For instance, this changes @code{#!/bin/sh} to @code{#!/gnu/store/@dots{}-bash-4.3/bin/sh}." msgstr "Изменить shebang, встречающиеся в исходных файлах, чтобы они ссылались на правильные имена файлов хранилища. Например, это изменяет @code{#!/bin/sh} на @code{#!/gnu/store/@dots{}-bash-4.3/bin/sh}." #. type: table -#: guix-git/doc/guix.texi:8890 +#: guix-git/doc/guix.texi:8951 msgid "Run the @file{configure} script with a number of default options, such as @option{--prefix=/gnu/store/@dots{}}, as well as the options specified by the @code{#:configure-flags} argument." msgstr "Запустить сценарий @file{configure} с несколькими параметрами по умолчанию, такими как @option{--prefix=/gnu/store/@dots{}}, а также параметрами, указанными в @code{#:configure-flags} аргументе." #. type: table -#: guix-git/doc/guix.texi:8895 +#: guix-git/doc/guix.texi:8956 msgid "Run @code{make} with the list of flags specified with @code{#:make-flags}. If the @code{#:parallel-build?} argument is true (the default), build with @code{make -j}." msgstr "Запустить @code{make} со списком флагов, указанным с помощью @code{#:make-flags}. Если аргумент @code{#:parallel-build?} истинен (по умолчанию), выполнить сборку с @code{make -j}." #. type: table -#: guix-git/doc/guix.texi:8901 +#: guix-git/doc/guix.texi:8962 msgid "Run @code{make check}, or some other target specified with @code{#:test-target}, unless @code{#:tests? #f} is passed. If the @code{#:parallel-tests?} argument is true (the default), run @code{make check -j}." msgstr "Запустить @code{make check} или другой target, указанный с помощью @code{#:test-target}, если только @code{#:tests? #f} пройден. Если аргумент @code{#:parallel-tests?} истинен (по умолчанию), запустить @code{make check -j}." #. type: table -#: guix-git/doc/guix.texi:8904 +#: guix-git/doc/guix.texi:8965 msgid "Run @code{make install} with the flags listed in @code{#:make-flags}." msgstr "Запустить @code{make install} с флагами, перечисленными в @code{#:make-flags}." #. type: item -#: guix-git/doc/guix.texi:8905 +#: guix-git/doc/guix.texi:8966 #, no-wrap msgid "patch-shebangs" msgstr "patch-shebangs" #. type: table -#: guix-git/doc/guix.texi:8907 +#: guix-git/doc/guix.texi:8968 msgid "Patch shebangs on the installed executable files." msgstr "Изменить shebangs на установленные исполняемые файлы." #. type: item -#: guix-git/doc/guix.texi:8908 +#: guix-git/doc/guix.texi:8969 #, no-wrap msgid "strip" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8912 +#: guix-git/doc/guix.texi:8973 msgid "Strip debugging symbols from ELF files (unless @code{#:strip-binaries?} is false), copying them to the @code{debug} output when available (@pxref{Installing Debugging Files})." msgstr "Удалить символы отладки из файлов ELF (если @code{#:strip-binaries?} не является ложным), скопировав их в выходные данные @code{debug}, если они доступны (@pxref{Installing Debugging Files})." #. type: Plain text -#: guix-git/doc/guix.texi:8921 +#: guix-git/doc/guix.texi:8982 msgid "Other build systems have similar phases, with some variations. For example, @code{cmake-build-system} has same-named phases but its @code{configure} phases runs @code{cmake} instead of @code{./configure}. Others, such as @code{python-build-system}, have a wholly different list of standard phases. All this code runs on the @dfn{build side}: it is evaluated when you actually build the package, in a dedicated build process spawned by the build daemon (@pxref{Invoking guix-daemon})." msgstr "Как обсуждалось в предыдущем разделе, эти системы сборки предоставляют стандартный список фаз. Для @code{gnu-build-system} стандартные фазы включают фазу @code{unpack} для распаковки архива исходного кода, фазу @command{configure} для запуска @code{./configure}, @code{build} фаза для запуска @command{make} и (среди прочего) фазу @code{install} для запуска @command{make install}; @pxref{Build Systems}, чтобы получить более подробное представление об этих фазах. Точно так же @code{cmake-build-system} наследует эти фазы, но его фаза @code{configure} запускает @command{cmake} вместо @command{./configure}. Другие системы сборки, такие как @code{python-build-system}, имеют совершенно другой список стандартных фаз. Весь этот код выполняется на @dfn{build side}: он выполняется, когда вы фактически собираете пакет, в отдельном процессе сборки, порожденном демоном сборки (@pxref{Invoking guix-daemon})." #. type: Plain text -#: guix-git/doc/guix.texi:8928 +#: guix-git/doc/guix.texi:8989 msgid "Build phases are represented as association lists or ``alists'' (@pxref{Association Lists,,, guile, GNU Guile Reference Manual}) where each key is a symbol for the name of the phase and the associated value is a procedure that accepts an arbitrary number of arguments. By convention, those procedures receive information about the build in the form of @dfn{keyword parameters}, which they can use or ignore." msgstr "Этапы сборки представлены в виде ассоциативных списков или ``alists'' (@pxref{Association Lists,,, guile, GNU Guile Reference Manual}), где каждый ключ является символом имени фазы, а соответствующее значение - процедурой, которая принимает произвольное количество аргументов. По соглашению эти процедуры получают информацию о сборке в виде @dfn{ключевых параметров}, которые они могут использовать или игнорировать." #. type: vindex -#: guix-git/doc/guix.texi:8929 +#: guix-git/doc/guix.texi:8990 #, no-wrap msgid "%standard-phases" msgstr "%standard-phases" #. type: Plain text -#: guix-git/doc/guix.texi:8935 +#: guix-git/doc/guix.texi:8996 msgid "For example, here is how @code{(guix build gnu-build-system)} defines @code{%standard-phases}, the variable holding its alist of build phases@footnote{We present a simplified view of those build phases, but do take a look at @code{(guix build gnu-build-system)} to see all the details!}:" msgstr "Например, вот как @code{(guix build gnu-build-system)} определяет @code{%standard-phase}, переменную, содержащую список фаз сборки @footnote{Мы представляем упрощенное представление этих фаз сборки, но обязательно взгляните на @code{(guix build gnu-build-system)}, чтобы увидеть все подробности!}:" #. type: lisp -#: guix-git/doc/guix.texi:8938 +#: guix-git/doc/guix.texi:8999 #, no-wrap msgid "" ";; The build phases of 'gnu-build-system'.\n" @@ -17826,7 +17983,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8942 +#: guix-git/doc/guix.texi:9003 #, no-wrap msgid "" "(define* (unpack #:key source #:allow-other-keys)\n" @@ -17836,7 +17993,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8948 +#: guix-git/doc/guix.texi:9009 #, no-wrap msgid "" "(define* (configure #:key outputs #:allow-other-keys)\n" @@ -17848,7 +18005,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8952 +#: guix-git/doc/guix.texi:9013 #, no-wrap msgid "" "(define* (build #:allow-other-keys)\n" @@ -17858,7 +18015,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8959 +#: guix-git/doc/guix.texi:9020 #, no-wrap msgid "" "(define* (check #:key (test-target \"check\") (tests? #true)\n" @@ -17871,7 +18028,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8963 +#: guix-git/doc/guix.texi:9024 #, no-wrap msgid "" "(define* (install #:allow-other-keys)\n" @@ -17881,7 +18038,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8972 +#: guix-git/doc/guix.texi:9033 #, no-wrap msgid "" "(define %standard-phases\n" @@ -17895,38 +18052,38 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8982 +#: guix-git/doc/guix.texi:9043 msgid "This shows how @code{%standard-phases} is defined as a list of symbol/procedure pairs (@pxref{Pairs,,, guile, GNU Guile Reference Manual}). The first pair associates the @code{unpack} procedure with the @code{unpack} symbol---a name; the second pair defines the @code{configure} phase similarly, and so on. When building a package that uses @code{gnu-build-system} with its default list of phases, those phases are executed sequentially. You can see the name of each phase started and completed in the build log of packages that you build." msgstr "Это показывает, как @code{%standard-phase} определяется как список пар символ/процедура (@pxref{Pairs,,, guile, GNU Guile Reference Manual}). Первая пара связывает процедуру @code{unpack} с символом @code{unpack}---именем; вторая пара аналогичным образом определяет фазу @code{configure} и так далее. При сборке пакета, который использует @code{gnu-build-system} со списком фаз по умолчанию, эти фазы выполняются последовательно. Вы можете увидеть название каждой фазы, запущенной и завершенной, в журнале сборки пакетов, которые вы собираете." #. type: Plain text -#: guix-git/doc/guix.texi:8988 +#: guix-git/doc/guix.texi:9049 msgid "Let's now look at the procedures themselves. Each one is defined with @code{define*}: @code{#:key} lists keyword parameters the procedure accepts, possibly with a default value, and @code{#:allow-other-keys} specifies that other keyword parameters are ignored (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual})." msgstr "Теперь посмотрим на сами процедуры. Каждая из них определяется с помощью @code{define*}: @code{#:key} перечисляет параметры ключевого слова, которые принимает процедура, возможно, со значением по умолчанию, а @code{#:allow-other-keys} указывает, что другие параметры ключевого слова являются игнорируется (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual})." #. type: Plain text -#: guix-git/doc/guix.texi:9004 +#: guix-git/doc/guix.texi:9065 msgid "The @code{unpack} procedure honors the @code{source} parameter, which the build system uses to pass the file name of the source tarball (or version control checkout), and it ignores other parameters. The @code{configure} phase only cares about the @code{outputs} parameter, an alist mapping package output names to their store file name (@pxref{Packages with Multiple Outputs}). It extracts the file name of for @code{out}, the default output, and passes it to @command{./configure} as the installation prefix, meaning that @command{make install} will eventually copy all the files in that directory (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards}). @code{build} and @code{install} ignore all their arguments. @code{check} honors the @code{test-target} argument, which specifies the name of the Makefile target to run tests; it prints a message and skips tests when @code{tests?} is false." msgstr "Процедура @code{unpack} учитывает параметр @code{source}, который система сборки использует для передачи имени файла исходного архива (или checkout контроля версий), и игнорирует другие параметры. Фаза @code{configure} касается только параметра @code{output}, списка имен выходных пакетов, отображающих имена файлов хранилища (@pxref{Packages with Multiple Outputs}). Она извлекает имя файла для @code{out}, вывода по умолчанию, и передает его @command{./configure} в качестве префикса установки, что означает, что @command{make install} в конечном итоге скопирует все файлы в этом каталоге (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards}). @code{build} и @code{install} игнорируют все свои аргументы. @code{check} учитывает аргумент @code{test-target}, который указывает имя цели Makefile для запуска тестов; она печатает сообщение и пропускает тесты, если @code{tests?} ложно." #. type: cindex -#: guix-git/doc/guix.texi:9005 +#: guix-git/doc/guix.texi:9066 #, no-wrap msgid "build phases, customizing" msgstr "build phases, customizing" #. type: Plain text -#: guix-git/doc/guix.texi:9014 +#: guix-git/doc/guix.texi:9075 msgid "The list of phases used for a particular package can be changed with the @code{#:phases} parameter of the build system. Changing the set of build phases boils down to building a new alist of phases based on the @code{%standard-phases} alist described above. This can be done with standard alist procedures such as @code{alist-delete} (@pxref{SRFI-1 Association Lists,,, guile, GNU Guile Reference Manual}); however, it is more convenient to do so with @code{modify-phases} (@pxref{Build Utilities, @code{modify-phases}})." msgstr "Список фаз, используемых для конкретного пакета, можно изменить с помощью параметра @code{#:phase} системы сборки. Изменение набора фаз сборки сводится к созданию нового списка фаз на основе списка @code{%standard-phase}, описанного выше. Это можно сделать с помощью стандартных процедур списков, таких как @code{alist-delete} (@pxref{SRFI-1 Association Lists,,, guile, GNU Guile Reference Manual}); однако это удобнее делать с помощью @code{modify-phase} (@pxref{Build Utilities, @code{modify-phases}})." #. type: Plain text -#: guix-git/doc/guix.texi:9019 +#: guix-git/doc/guix.texi:9080 msgid "Here is an example of a package definition that removes the @code{configure} phase of @code{%standard-phases} and inserts a new phase before the @code{build} phase, called @code{set-prefix-in-makefile}:" msgstr "Вот пример определения пакета, который удаляет фазу @code{configure} из @code{%standard-phase} и вставляет новую фазу перед фазой @code{build}, которая называется @code{set-prefix-in- makefile}:" #. type: lisp -#: guix-git/doc/guix.texi:9039 +#: guix-git/doc/guix.texi:9100 #, no-wrap msgid "" "(define-public example\n" @@ -17950,44 +18107,44 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9045 +#: guix-git/doc/guix.texi:9106 msgid "The new phase that is inserted is written as an anonymous procedure, introduced with @code{lambda*}; it honors the @code{outputs} parameter we have seen before. @xref{Build Utilities}, for more about the helpers used by this phase, and for more examples of @code{modify-phases}." msgstr "Новая вставляемая фаза записывается как анонимная процедура, представленная с помощью @code{lambda*}; она учитывает параметр @code{output}, который мы видели ранее. @xref{Build Utilities}, чтобы узнать больше о помощниках, используемых в этой фазе, и получить больше примеров @code{modify-phase}." #. type: cindex -#: guix-git/doc/guix.texi:9046 guix-git/doc/guix.texi:10046 +#: guix-git/doc/guix.texi:9107 guix-git/doc/guix.texi:10360 #, no-wrap msgid "code staging" msgstr "staging кода" #. type: cindex -#: guix-git/doc/guix.texi:9047 guix-git/doc/guix.texi:10047 +#: guix-git/doc/guix.texi:9108 guix-git/doc/guix.texi:10361 #, no-wrap msgid "staging, of code" msgstr "форматировние, кода" #. type: Plain text -#: guix-git/doc/guix.texi:9054 +#: guix-git/doc/guix.texi:9115 msgid "Keep in mind that build phases are code evaluated at the time the package is actually built. This explains why the whole @code{modify-phases} expression above is quoted (it comes after the @code{'} or apostrophe): it is @dfn{staged} for later execution. @xref{G-Expressions}, for an explanation of code staging and the @dfn{code strata} involved." msgstr "Имейте в виду, что фазы сборки - это код, выполняемый во время фактической сборки пакета. Это объясняет, почему приведенное выше выражение @code{modify-phase} целиком (оно идет после @code{'} или апострофа): это @dfn{staged} для последующего выполнения. @xref{G-Expressions} для объяснения staging кода и задействованных @dfn{code strata}." #. type: Plain text -#: guix-git/doc/guix.texi:9064 +#: guix-git/doc/guix.texi:9125 msgid "As soon as you start writing non-trivial package definitions (@pxref{Defining Packages}) or other build actions (@pxref{G-Expressions}), you will likely start looking for helpers for ``shell-like'' actions---creating directories, copying and deleting files recursively, manipulating build phases, and so on. The @code{(guix build utils)} module provides such utility procedures." msgstr "Как только вы начнете писать нетривиальные определения пакетов (@pxref{Defining Packages}) или другие действия сборки (@pxref{G-Expressions}), вы, скорее всего, начнете искать помощников для действий, подобных оболочке---создание каталогов, рекурсивное копирование и удаление файлов, управление этапами сборки и т.д. Модуль @code{(guix build utils)} предоставляет такие служебные процедуры." #. type: Plain text -#: guix-git/doc/guix.texi:9068 +#: guix-git/doc/guix.texi:9129 msgid "Most build systems load @code{(guix build utils)} (@pxref{Build Systems}). Thus, when writing custom build phases for your package definitions, you can usually assume those procedures are in scope." msgstr "Большинство систем сборки загружают @code{(guix build utils)} (@pxref{Build Systems}). Таким образом, при написании настраиваемых фаз сборки для определений пакетов вы обычно можете предположить, что эти процедуры входят в область действия." #. type: Plain text -#: guix-git/doc/guix.texi:9073 +#: guix-git/doc/guix.texi:9134 msgid "When writing G-expressions, you can import @code{(guix build utils)} on the ``build side'' using @code{with-imported-modules} and then put it in scope with the @code{use-modules} form (@pxref{Using Guile Modules,,, guile, GNU Guile Reference Manual}):" msgstr "При написании G-выражений вы можете импортировать @code{(guix build utils)} на ``стороне сборки'', используя @code{with-import-modules}, а затем поместить его в область видимости с помощью формы @code{use-modules} (@pxref{Using Guile Modules,,, guile, GNU Guile Reference Manual}):" #. type: lisp -#: guix-git/doc/guix.texi:9080 +#: guix-git/doc/guix.texi:9141 #, no-wrap msgid "" "(with-imported-modules '((guix build utils)) ;import it\n" @@ -17999,7 +18156,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9083 +#: guix-git/doc/guix.texi:9144 #, no-wrap msgid "" " ;; Happily use its 'mkdir-p' procedure.\n" @@ -18007,240 +18164,240 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9087 +#: guix-git/doc/guix.texi:9148 msgid "The remainder of this section is the reference for most of the utility procedures provided by @code{(guix build utils)}." msgstr "Оставшаяся часть этого раздела является справочником по большинству служебных процедур, предоставляемых @code{(guix build utils)}." #. type: subsection -#: guix-git/doc/guix.texi:9090 +#: guix-git/doc/guix.texi:9151 #, no-wrap msgid "Dealing with Store File Names" msgstr "Работа с именами файлов в store" #. type: Plain text -#: guix-git/doc/guix.texi:9093 +#: guix-git/doc/guix.texi:9154 msgid "This section documents procedures that deal with store file names." msgstr "В этом разделе описаны процедуры, относящиеся к именам файлов в store." #. type: deffn -#: guix-git/doc/guix.texi:9094 +#: guix-git/doc/guix.texi:9155 #, no-wrap msgid "{Scheme Procedure} %store-directory" msgstr "{Процедура Scheme} sane-service-type" #. type: deffn -#: guix-git/doc/guix.texi:9096 +#: guix-git/doc/guix.texi:9157 msgid "Return the directory name of the store." msgstr "Проверить целостность склада." #. type: deffn -#: guix-git/doc/guix.texi:9098 +#: guix-git/doc/guix.texi:9159 #, no-wrap msgid "{Scheme Procedure} store-file-name? @var{file}" msgstr "{Scheme Procedure} file-union @var{name} @var{files}" #. type: deffn -#: guix-git/doc/guix.texi:9100 +#: guix-git/doc/guix.texi:9161 msgid "Return true if @var{file} is in the store." msgstr "Возвращает true, если объект @var{obj} --- это пакет ранней версии." #. type: deffn -#: guix-git/doc/guix.texi:9102 +#: guix-git/doc/guix.texi:9163 #, no-wrap msgid "{Scheme Procedure} strip-store-file-name @var{file}" msgstr "{Scheme Procedure} file-union @var{name} @var{files}" #. type: deffn -#: guix-git/doc/guix.texi:9105 +#: guix-git/doc/guix.texi:9166 msgid "Strip the @file{/gnu/store} and hash from @var{file}, a store file name. The result is typically a @code{\"@var{package}-@var{version}\"} string." msgstr "Удалиnm @file{/gnu/store} и хэш из @var{file}, имени файла в store. Результатом обычно является строка @code{\"@var{package}-@var{version}\"}." #. type: deffn -#: guix-git/doc/guix.texi:9107 +#: guix-git/doc/guix.texi:9168 #, no-wrap msgid "{Scheme Procedure} package-name->name+version @var{name}" msgstr "{Процедура Scheme} inferior-package-version @var{package}" #. type: deffn -#: guix-git/doc/guix.texi:9112 +#: guix-git/doc/guix.texi:9173 msgid "Given @var{name}, a package name like @code{\"foo-0.9.1b\"}, return two values: @code{\"foo\"} and @code{\"0.9.1b\"}. When the version part is unavailable, @var{name} and @code{#f} are returned. The first hyphen followed by a digit is considered to introduce the version part." msgstr "Учитывая @var{name}, имя пакета, такое как @code{\"foo-0.9.1b\"}, возвращает два значения: @code{\"foo\"} и @code{\"0.9.1b\"}. Если часть версии недоступна, возвращаются @var{name} и @code{#f}. Считается, что первый дефис, за которым следует цифра, обозначает часть версии." #. type: subsection -#: guix-git/doc/guix.texi:9114 +#: guix-git/doc/guix.texi:9175 #, no-wrap msgid "File Types" msgstr "Файловые системы" #. type: Plain text -#: guix-git/doc/guix.texi:9117 +#: guix-git/doc/guix.texi:9178 msgid "The procedures below deal with files and file types." msgstr "Процедуры, приведённые ниже, обеспечивают работу и управление ранними версиями пакетов." #. type: deffn -#: guix-git/doc/guix.texi:9118 +#: guix-git/doc/guix.texi:9179 #, no-wrap msgid "{Scheme Procedure} directory-exists? @var{dir}" msgstr "{Scheme Procedure} directory-union @var{name} @var{things}" #. type: deffn -#: guix-git/doc/guix.texi:9120 +#: guix-git/doc/guix.texi:9181 msgid "Return @code{#t} if @var{dir} exists and is a directory." msgstr "Вернуть @code{#t}, если @var{dir} существует и является каталогом." #. type: deffn -#: guix-git/doc/guix.texi:9122 +#: guix-git/doc/guix.texi:9183 #, no-wrap msgid "{Scheme Procedure} executable-file? @var{file}" msgstr "{Scheme Procedure} file-union @var{name} @var{files}" #. type: deffn -#: guix-git/doc/guix.texi:9124 +#: guix-git/doc/guix.texi:9185 msgid "Return @code{#t} if @var{file} exists and is executable." msgstr "Вернуть @code{#t}, если @var{file} существует и исполняемый файл." #. type: deffn -#: guix-git/doc/guix.texi:9126 +#: guix-git/doc/guix.texi:9187 #, no-wrap msgid "{Scheme Procedure} symbolic-link? @var{file}" msgstr "{Scheme Procedure} file-union @var{name} @var{files}" #. type: deffn -#: guix-git/doc/guix.texi:9128 +#: guix-git/doc/guix.texi:9189 msgid "Return @code{#t} if @var{file} is a symbolic link (aka. a ``symlink'')." msgstr "Вернуть @code{#t}, если @var{file} является символической ссылкой (также известной как ``символическая ссылка'')." #. type: deffn -#: guix-git/doc/guix.texi:9130 +#: guix-git/doc/guix.texi:9191 #, no-wrap msgid "{Scheme Procedure} elf-file? @var{file}" msgstr "{Scheme Procedure} file-union @var{name} @var{files}" #. type: deffnx -#: guix-git/doc/guix.texi:9131 +#: guix-git/doc/guix.texi:9192 #, no-wrap msgid "{Scheme Procedure} ar-file? @var{file}" msgstr "{Scheme Procedure} file-union @var{name} @var{files}" #. type: deffnx -#: guix-git/doc/guix.texi:9132 +#: guix-git/doc/guix.texi:9193 #, no-wrap msgid "{Scheme Procedure} gzip-file? @var{file}" msgstr "{Scheme Procedure} file-union @var{name} @var{files}" #. type: deffn -#: guix-git/doc/guix.texi:9135 +#: guix-git/doc/guix.texi:9196 msgid "Return @code{#t} if @var{file} is, respectively, an ELF file, an @code{ar} archive (such as a @file{.a} static library), or a gzip file." msgstr "Вернуть @code{#t}, если @var{file} является, соответственно, файлом ELF, архивом @code{ar} (например, статической библиотекой @file{.a}) или файлом gzip." #. type: deffn -#: guix-git/doc/guix.texi:9137 +#: guix-git/doc/guix.texi:9198 #, no-wrap msgid "{Scheme Procedure} reset-gzip-timestamp @var{file} [#:keep-mtime? #t]" msgstr "{Процедура Scheme} inferior-package-inputs @var{package}" #. type: deffn -#: guix-git/doc/guix.texi:9141 +#: guix-git/doc/guix.texi:9202 msgid "If @var{file} is a gzip file, reset its embedded timestamp (as with @command{gzip --no-name}) and return true. Otherwise return @code{#f}. When @var{keep-mtime?} is true, preserve @var{file}'s modification time." msgstr "Если @var{file} является файлом gzip, сбросить его timestamp (как в случае @command{gzip --no-name}) и вернуть истину. В противном случае вернуть @code{#f}. Когда @var{keep-mtime?} истинна, сохранить время модификации @var{file}." #. type: subsection -#: guix-git/doc/guix.texi:9143 +#: guix-git/doc/guix.texi:9204 #, no-wrap msgid "File Manipulation" msgstr "Управление файлами" #. type: Plain text -#: guix-git/doc/guix.texi:9150 +#: guix-git/doc/guix.texi:9211 msgid "The following procedures and macros help create, modify, and delete files. They provide functionality comparable to common shell utilities such as @command{mkdir -p}, @command{cp -r}, @command{rm -r}, and @command{sed}. They complement Guile's extensive, but low-level, file system interface (@pxref{POSIX,,, guile, GNU Guile Reference Manual})." msgstr "Следующие процедуры и макросы помогают создавать, изменять и удалять файлы. Они обеспечивают функциональность, сопоставимую с такими обычными утилитами оболочки, как @command{mkdir -p}, @command{cp -r}, @command{rm -r} и @command{sed}. Они дополняют обширный, но низкоуровневый интерфейс файловой системы Guile (@pxref{POSIX,,, guile, GNU Guile Reference Manual})." #. type: deffn -#: guix-git/doc/guix.texi:9151 +#: guix-git/doc/guix.texi:9212 #, no-wrap msgid "{Scheme Syntax} with-directory-excursion @var{directory} @var{body}@dots{}" msgstr "{Scheme Syntax} let-system @var{system} @var{body}@dots{}" #. type: deffn -#: guix-git/doc/guix.texi:9153 +#: guix-git/doc/guix.texi:9214 msgid "Run @var{body} with @var{directory} as the process's current directory." msgstr "Запустить @var{body} с @var{directory} в качестве текущего каталога процесса." #. type: deffn -#: guix-git/doc/guix.texi:9160 +#: guix-git/doc/guix.texi:9221 msgid "Essentially, this macro changes the current directory to @var{directory} before evaluating @var{body}, using @code{chdir} (@pxref{Processes,,, guile, GNU Guile Reference Manual}). It changes back to the initial directory when the dynamic extent of @var{body} is left, be it @i{via} normal procedure return or @i{via} a non-local exit such as an exception." msgstr "По сути, этот макрос изменяет текущий каталог на @var{directory} перед вычислением @var{body}, используя @code{chdir} (@pxref{Processes,,, guile, GNU Guile Reference Manual}). Она возвращается в исходный каталог, когда остается динамический extent @var{body}, будь то @i{через} возврат нормальной процедуры или @i{через} нелокальный выход, такой как исключение." #. type: deffn -#: guix-git/doc/guix.texi:9162 +#: guix-git/doc/guix.texi:9223 #, no-wrap msgid "{Scheme Procedure} mkdir-p @var{dir}" msgstr "{Процедура Scheme} inferior-packages @var{inferior}" #. type: deffn -#: guix-git/doc/guix.texi:9164 +#: guix-git/doc/guix.texi:9225 msgid "Create directory @var{dir} and all its ancestors." msgstr "Создать каталог @var{dir} и всех его предков." #. type: deffn -#: guix-git/doc/guix.texi:9166 +#: guix-git/doc/guix.texi:9227 #, no-wrap msgid "{Scheme Procedure} install-file @var{file} @var{directory}" msgstr "{Процедура Scheme} open-inferior @var{directory} @" #. type: deffn -#: guix-git/doc/guix.texi:9169 +#: guix-git/doc/guix.texi:9230 msgid "Create @var{directory} if it does not exist and copy @var{file} in there under the same name." msgstr "Создать @var{каталог}, если он не существует, и скопировать туда @var{file} под тем же именем." #. type: deffn -#: guix-git/doc/guix.texi:9171 +#: guix-git/doc/guix.texi:9232 #, no-wrap msgid "{Scheme Procedure} make-file-writable @var{file}" msgstr "{Scheme Procedure} file-union @var{name} @var{files}" #. type: deffn -#: guix-git/doc/guix.texi:9173 +#: guix-git/doc/guix.texi:9234 msgid "Make @var{file} writable for its owner." msgstr "Сделать @var{file} доступным для записи его владельцу." #. type: deffn -#: guix-git/doc/guix.texi:9175 +#: guix-git/doc/guix.texi:9236 #, no-wrap msgid "{Scheme Procedure} copy-recursively @var{source} @var{destination} @" msgstr "{Scheme Procedure} lookup-inferior-packages @var{inferior} @var{name} @" #. type: deffn -#: guix-git/doc/guix.texi:9184 +#: guix-git/doc/guix.texi:9245 #, fuzzy #| msgid "[#:log (current-output-port)] [#:follow-symlinks? #f] [#:keep-mtime? #f] Copy @var{source} directory to @var{destination}. Follow symlinks if @var{follow-symlinks?} is true; otherwise, just preserve them. When @var{keep-mtime?} is true, keep the modification time of the files in @var{source} on those of @var{destination}. Write verbose output to the @var{log} port." msgid "[#:log (current-output-port)] [#:follow-symlinks? #f] @ [#:copy-file copy-file] [#:keep-mtime? #f] [#:keep-permissions? #t] Copy @var{source} directory to @var{destination}. Follow symlinks if @var{follow-symlinks?} is true; otherwise, just preserve them. Call @var{copy-file} to copy regular files. When @var{keep-mtime?} is true, keep the modification time of the files in @var{source} on those of @var{destination}. When @var{keep-permissions?} is true, preserve file permissions. Write verbose output to the @var{log} port." msgstr "[#:log (current-output-port)] [#:follow-symlinks? #f] [#:keep-mtime? #f] Скопировать каталог @var{source} в @var{destination}. Следовать символическим ссылкам, если @var{follow-symlinks?} истинна; в противном случае просто сохранить их. Когда @var{keep-mtime?} истинна, оставить время изменения файлов в @var{source} таким же, как у @var{destination}. Записывать подробный вывод в порт @var{log}." #. type: deffn -#: guix-git/doc/guix.texi:9186 +#: guix-git/doc/guix.texi:9247 #, no-wrap msgid "{Scheme Procedure} delete-file-recursively @var{dir} @" msgstr "{Процедура Scheme} open-inferior @var{directory} @" #. type: deffn -#: guix-git/doc/guix.texi:9191 +#: guix-git/doc/guix.texi:9252 msgid "[#:follow-mounts? #f] Delete @var{dir} recursively, like @command{rm -rf}, without following symlinks. Don't follow mount points either, unless @var{follow-mounts?} is true. Report but ignore errors." msgstr "[#:follow-mounts? #f] @var{dir} рекурсивно, как @command{rm -rf}, без использования символических ссылок. Также не следовать точкам монтирования, если @var{follow-mounts?} не истинна. Сообщать об ошибках, но игнорировать их." #. type: deffn -#: guix-git/doc/guix.texi:9193 +#: guix-git/doc/guix.texi:9254 #, no-wrap msgid "{Scheme Syntax} substitute* @var{file} @" msgstr "{Scheme Syntax} let-system @var{system} @var{body}@dots{}" #. type: deffn -#: guix-git/doc/guix.texi:9198 +#: guix-git/doc/guix.texi:9259 msgid "((@var{regexp} @var{match-var}@dots{}) @var{body}@dots{}) @dots{} Substitute @var{regexp} in @var{file} by the string returned by @var{body}. @var{body} is evaluated with each @var{match-var} bound to the corresponding positional regexp sub-expression. For example:" msgstr "((@var{regexp} @var{match-var}@dots{}) @var{body}@dots{}) @dots{} Заменить @var{regexp} в @var{file} строкой, возвращаемой @var{body}. @var{body} вычисляется с каждой привязкой @var{match-var} к соответствующему подвыражению позиционного регулярного выражения. Например:" #. type: lisp -#: guix-git/doc/guix.texi:9205 +#: guix-git/doc/guix.texi:9266 #, no-wrap msgid "" "(substitute* file\n" @@ -18251,71 +18408,71 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9211 +#: guix-git/doc/guix.texi:9272 msgid "Here, anytime a line of @var{file} contains @code{hello}, it is replaced by @code{good morning}. Anytime a line of @var{file} matches the second regexp, @code{all} is bound to the complete match, @code{letters} is bound to the first sub-expression, and @code{end} is bound to the last one." msgstr "Здесь, когда строка @var{file} содержит @code{hello}, она заменяется на @code{good morning}. Каждый раз, когда строка @var{file} соответствует второму регулярному выражению, @code{all} привязывается к полному совпадению, @code{letters} привязано к первому подвыражению, а @code{end} привязано к последнему." #. type: deffn -#: guix-git/doc/guix.texi:9214 +#: guix-git/doc/guix.texi:9275 msgid "When one of the @var{match-var} is @code{_}, no variable is bound to the corresponding match substring." msgstr "Когда одно из @var{match-var} - @code{_}, никакая переменная не связана с соответствующей подстрокой соответствия." #. type: deffn -#: guix-git/doc/guix.texi:9217 +#: guix-git/doc/guix.texi:9278 msgid "Alternatively, @var{file} may be a list of file names, in which case they are all subject to the substitutions." msgstr "В качестве альтернативы @var{file} может быть списком имен файлов, и в этом случае все они могут быть заменены." #. type: deffn -#: guix-git/doc/guix.texi:9220 +#: guix-git/doc/guix.texi:9281 msgid "Be careful about using @code{$} to match the end of a line; by itself it won't match the terminating newline of a line." msgstr "В качестве альтернативы @var{file} может быть списком имен файлов, и в этом случае все они могут быть заменены." #. type: subsection -#: guix-git/doc/guix.texi:9222 +#: guix-git/doc/guix.texi:9283 #, no-wrap msgid "File Search" msgstr "Файловые системы" #. type: cindex -#: guix-git/doc/guix.texi:9224 +#: guix-git/doc/guix.texi:9285 #, no-wrap msgid "file, searching" msgstr "файл, поиск" #. type: Plain text -#: guix-git/doc/guix.texi:9226 +#: guix-git/doc/guix.texi:9287 msgid "This section documents procedures to search and filter files." msgstr "В этом разделе описаны процедуры поиска и фильтрации файлов." #. type: deffn -#: guix-git/doc/guix.texi:9227 +#: guix-git/doc/guix.texi:9288 #, no-wrap msgid "{Scheme Procedure} file-name-predicate @var{regexp}" msgstr "{Процедура Scheme} inferior-package? @var{obj}" #. type: deffn -#: guix-git/doc/guix.texi:9230 +#: guix-git/doc/guix.texi:9291 msgid "Return a predicate that returns true when passed a file name whose base name matches @var{regexp}." msgstr "Вернуть предикат, который возвращает истину при передаче имени файла, базовое имя которого совпадает с @var{regexp}." #. type: deffn -#: guix-git/doc/guix.texi:9232 +#: guix-git/doc/guix.texi:9293 #, no-wrap msgid "{Scheme Procedure} find-files @var{dir} [@var{pred}] @" msgstr "{Процедура Scheme} lookup-inferior-packages @var{inferior} @var{name} @" #. type: deffn -#: guix-git/doc/guix.texi:9243 +#: guix-git/doc/guix.texi:9304 msgid "[#:stat lstat] [#:directories? #f] [#:fail-on-error? #f] Return the lexicographically sorted list of files under @var{dir} for which @var{pred} returns true. @var{pred} is passed two arguments: the absolute file name, and its stat buffer; the default predicate always returns true. @var{pred} can also be a regular expression, in which case it is equivalent to @code{(file-name-predicate @var{pred})}. @var{stat} is used to obtain file information; using @code{lstat} means that symlinks are not followed. If @var{directories?} is true, then directories will also be included. If @var{fail-on-error?} is true, raise an exception upon error." msgstr "[#:stat lstat] [#:directories? #f] [#:fail-on-error? #f] Возвращает лексикографически отсортированный список файлов в @var{dir}, для которых @var{pred} возвращает истину. @var{pred} передается два аргумента: абсолютное имя файла и его буфер статистики; предикат по умолчанию всегда возвращает истину. @var{pred} также может быть регулярным выражением, в этом случае оно эквивалентно @code{(file-name-predicate @var{pred})}. @var{stat} используется для получения информации о файле; использование @code{lstat} означает, что символические ссылки не соблюдаются. Если @var{directories?} истина, то каталоги также будут включены. Если @var{fail-on-error?} истина, генерировать исключение при ошибке." #. type: Plain text -#: guix-git/doc/guix.texi:9247 +#: guix-git/doc/guix.texi:9308 msgid "Here are a few examples where we assume that the current directory is the root of the Guix source tree:" msgstr "Вот несколько примеров, в которых мы предполагаем, что текущий каталог является корнем дерева исходников Guix:" #. type: lisp -#: guix-git/doc/guix.texi:9252 +#: guix-git/doc/guix.texi:9313 #, no-wrap msgid "" ";; List all the regular files in the current directory.\n" @@ -18325,7 +18482,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9256 +#: guix-git/doc/guix.texi:9317 #, no-wrap msgid "" ";; List all the .scm files under gnu/services.\n" @@ -18335,7 +18492,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9260 +#: guix-git/doc/guix.texi:9321 #, no-wrap msgid "" ";; List ar files in the current directory.\n" @@ -18344,47 +18501,47 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9262 +#: guix-git/doc/guix.texi:9323 #, no-wrap msgid "{Scheme Procedure} which @var{program}" msgstr "{Процедура Scheme} inferior-packages @var{inferior}" #. type: deffn -#: guix-git/doc/guix.texi:9265 +#: guix-git/doc/guix.texi:9326 msgid "Return the complete file name for @var{program} as found in @code{$PATH}, or @code{#f} if @var{program} could not be found." msgstr "Вернуть полное имя файла для @var{program}, как в @code{$PATH}, или @code{#f}, если @var{program} не найдена." #. type: deffn -#: guix-git/doc/guix.texi:9267 +#: guix-git/doc/guix.texi:9328 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} scheme-file @var{name} @var{exp} @" msgid "{Scheme Procedure} search-input-file @var{inputs} @var{name}" msgstr "{Scheme Procedure} scheme-file @var{name} @var{exp} @" #. type: deffnx -#: guix-git/doc/guix.texi:9268 +#: guix-git/doc/guix.texi:9329 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} directory-union @var{name} @var{things}" msgid "{Scheme Procedure} search-input-directory @var{inputs} @var{name}" msgstr "{Scheme Procedure} directory-union @var{name} @var{things}" #. type: deffn -#: guix-git/doc/guix.texi:9273 +#: guix-git/doc/guix.texi:9334 msgid "Return the complete file name for @var{name} as found in @var{inputs}; @code{search-input-file} searches for a regular file and @code{search-input-directory} searches for a directory. If @var{name} could not be found, an exception is raised." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9277 +#: guix-git/doc/guix.texi:9338 msgid "Here, @var{inputs} must be an association list like @code{inputs} and @code{native-inputs} as available to build phases (@pxref{Build Phases})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9281 +#: guix-git/doc/guix.texi:9342 msgid "Here is a (simplified) example of how @code{search-input-file} is used in a build phase of the @code{wireguard-tools} package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9290 +#: guix-git/doc/guix.texi:9351 #, no-wrap msgid "" "(add-after 'install 'wrap-wg-quick\n" @@ -18396,35 +18553,248 @@ msgid "" " `(\"PATH\" \":\" prefix ,(list coreutils))))))\n" msgstr "" +#. type: subsection +#: guix-git/doc/guix.texi:9353 +#, fuzzy, no-wrap +#| msgid "Log Rotation" +msgid "Program Invocation" +msgstr "Ротация логов" + +#. type: cindex +#: guix-git/doc/guix.texi:9355 +#, no-wrap +msgid "program invocation, from Scheme" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:9356 +#, no-wrap +msgid "invoking programs, from Scheme" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9360 +msgid "You'll find handy procedures to spawn processes in this module, essentially convenient wrappers around Guile's @code{system*} (@pxref{Processes, @code{system*},, guile, GNU Guile Reference Manual})." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9361 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} guix-os @var{variants}@dots{}" +msgid "{Scheme Procedure} invoke @var{program} @var{args}@dots{}" +msgstr "{Процедура Scheme} lookup-inferior-packages @var{inferior} @var{name} @" + +#. type: deffn +#: guix-git/doc/guix.texi:9365 +msgid "Invoke @var{program} with the given @var{args}. Raise an @code{&invoke-error} exception if the exit code is non-zero; otherwise return @code{#t}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9369 +msgid "The advantage compared to @code{system*} is that you do not need to check the return value. This reduces boilerplate in shell-script-like snippets for instance in package build phases." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9371 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} inferior-package? @var{obj}" +msgid "{Scheme Procedure} invoke-error? @var{c}" +msgstr "{Процедура Scheme} inferior-package? @var{obj}" + +#. type: deffn +#: guix-git/doc/guix.texi:9373 +#, fuzzy +#| msgid "Return true if @var{obj} is an inferior package." +msgid "Return true if @var{c} is an @code{&invoke-error} condition." +msgstr "Возвращает true, если объект @var{obj} --- это пакет ранней версии." + +#. type: deffn +#: guix-git/doc/guix.texi:9375 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} inferior-package? @var{obj}" +msgid "{Scheme Procedure} invoke-error-program @var{c}" +msgstr "{Процедура Scheme} inferior-package? @var{obj}" + +#. type: deffnx +#: guix-git/doc/guix.texi:9376 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} inferior-package-inputs @var{package}" +msgid "{Scheme Procedure} invoke-error-arguments @var{c}" +msgstr "{Процедура Scheme} inferior-package-inputs @var{package}" + +#. type: deffnx +#: guix-git/doc/guix.texi:9377 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} directory-exists? @var{dir}" +msgid "{Scheme Procedure} invoke-error-exit-status @var{c}" +msgstr "{Scheme Procedure} directory-union @var{name} @var{things}" + +#. type: deffnx +#: guix-git/doc/guix.texi:9378 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} inferior-package-name @var{package}" +msgid "{Scheme Procedure} invoke-error-term-signal @var{c}" +msgstr "{Процедура Scheme} inferior-package-name @var{package}" + +#. type: deffnx +#: guix-git/doc/guix.texi:9379 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} inferior-package-name @var{package}" +msgid "{Scheme Procedure} invoke-error-stop-signal @var{c}" +msgstr "{Процедура Scheme} inferior-package-name @var{package}" + +#. type: deffn +#: guix-git/doc/guix.texi:9381 +msgid "Access specific fields of @var{c}, an @code{&invoke-error} condition." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9383 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} find-files @var{dir} [@var{pred}] @" +msgid "{Scheme Procedure} report-invoke-error @var{c} [@var{port}]" +msgstr "{Процедура Scheme} lookup-inferior-packages @var{inferior} @var{name} @" + +#. type: deffn +#: guix-git/doc/guix.texi:9386 +msgid "Report to @var{port} (by default the current error port) about @var{c}, an @code{&invoke-error} condition, in a human-friendly way." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9388 +#, fuzzy +#| msgid "... would look like this:" +msgid "Typical usage would look like this:" +msgstr "Вывод должен быть таким:" + +#. type: lisp +#: guix-git/doc/guix.texi:9392 +#, fuzzy, no-wrap +#| msgid "" +#| "(use-modules (guix utils)\n" +#| " (guix store)\n" +#| " (guix derivations))\n" +#| "\n" +msgid "" +"(use-modules (srfi srfi-34) ;for 'guard'\n" +" (guix build utils))\n" +"\n" +msgstr "" +"(use-modules (guix utils)\n" +" (guix store)\n" +" (guix derivations))\n" +"\n" + +#. type: lisp +#: guix-git/doc/guix.texi:9396 +#, no-wrap +msgid "" +"(guard (c ((invoke-error? c)\n" +" (report-invoke-error c)))\n" +" (invoke \"date\" \"--imaginary-option\"))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9398 +#, no-wrap +msgid "@print{} command \"date\" \"--imaginary-option\" failed with status 1\n" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9401 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} file-append @var{obj} @var{suffix} @dots{}" +msgid "{Scheme Procedure} invoke/quiet @var{program} @var{args}@dots{}" +msgstr "{Scheme Procedure} file-append @var{obj} @var{suffix} @dots{}" + +#. type: deffn +#: guix-git/doc/guix.texi:9407 +msgid "Invoke @var{program} with @var{args} and capture @var{program}'s standard output and standard error. If @var{program} succeeds, print nothing and return the unspecified value; otherwise, raise a @code{&message} error condition that includes the status code and the output of @var{program}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9409 +#, fuzzy +#| msgid "Consider this example:" +msgid "Here's an example:" +msgstr "Рассмотрим пример:" + +#. type: lisp +#: guix-git/doc/guix.texi:9414 +#, fuzzy, no-wrap +#| msgid "" +#| "(use-modules (guix utils)\n" +#| " (guix store)\n" +#| " (guix derivations))\n" +#| "\n" +msgid "" +"(use-modules (srfi srfi-34) ;for 'guard'\n" +" (srfi srfi-35) ;for 'message-condition?'\n" +" (guix build utils))\n" +"\n" +msgstr "" +"(use-modules (guix utils)\n" +" (guix store)\n" +" (guix derivations))\n" +"\n" + +#. type: lisp +#: guix-git/doc/guix.texi:9419 +#, no-wrap +msgid "" +"(guard (c ((message-condition? c)\n" +" (display (condition-message c))))\n" +" (invoke/quiet \"date\") ;all is fine\n" +" (invoke/quiet \"date\" \"--imaginary-option\"))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9421 +#, no-wrap +msgid "" +"@print{} 'date --imaginary-option' exited with status 1; output follows:\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9424 +#, no-wrap +msgid "" +" date: unrecognized option '--imaginary-option'\n" +" Try 'date --help' for more information.\n" +msgstr "" + #. type: Plain text -#: guix-git/doc/guix.texi:9301 +#: guix-git/doc/guix.texi:9436 msgid "The @code{(guix build utils)} also contains tools to manipulate build phases as used by build systems (@pxref{Build Systems}). Build phases are represented as association lists or ``alists'' (@pxref{Association Lists,,, guile, GNU Guile Reference Manual}) where each key is a symbol naming the phase and the associated value is a procedure (@pxref{Build Phases})." msgstr "@code{(guix build utils)} также содержит инструменты для управления фазами сборки, которые используются системами сборки (@pxref{Build Systems}). Фазы сборки представлены в виде ассоциативных списков или ``alists'' (@pxref{Association Lists,,, guile, GNU Guile Reference Manual}), где каждый ключ представляет собой символ, обозначающий фазу, а связанное значение представляет собой процедуру (@pxref{Build Phases})." #. type: Plain text -#: guix-git/doc/guix.texi:9305 +#: guix-git/doc/guix.texi:9440 msgid "Guile core and the @code{(srfi srfi-1)} module both provide tools to manipulate alists. The @code{(guix build utils)} module complements those with tools written with build phases in mind." msgstr "Ядро Guile и модуль @code{(srfi srfi-1)} предоставляют инструменты для управления списками. Модуль @code{(guix build utils)} дополняет их инструментами, написанными с учетом фаз сборки." #. type: cindex -#: guix-git/doc/guix.texi:9306 +#: guix-git/doc/guix.texi:9441 #, no-wrap msgid "build phases, modifying" msgstr "build phases, modifying" #. type: deffn -#: guix-git/doc/guix.texi:9307 +#: guix-git/doc/guix.texi:9442 #, no-wrap msgid "{Scheme Syntax} modify-phases @var{phases} @var{clause}@dots{}" msgstr "{Scheme Syntax} let-system @var{system} @var{body}@dots{}" #. type: deffn -#: guix-git/doc/guix.texi:9310 +#: guix-git/doc/guix.texi:9445 msgid "Modify @var{phases} sequentially as per each @var{clause}, which may have one of the following forms:" msgstr "Изменить @var{phases} последовательно в соответствии с каждым @var{clause}, которое может иметь одну из следующих форм:" #. type: lisp -#: guix-git/doc/guix.texi:9316 +#: guix-git/doc/guix.texi:9451 #, no-wrap msgid "" "(delete @var{old-phase-name})\n" @@ -18438,17 +18808,17 @@ msgstr "" "(add-after @var{old-phase-name} @var{new-phase-name} @var{new-phase})\n" #. type: deffn -#: guix-git/doc/guix.texi:9320 +#: guix-git/doc/guix.texi:9455 msgid "Where every @var{phase-name} above is an expression evaluating to a symbol, and @var{new-phase} an expression evaluating to a procedure." msgstr "Где каждая @var{phase-name} выше - это выражение, преобразующееся в символ, а @var{new-phase} - выражение, преобразующееся в процедуру." #. type: Plain text -#: guix-git/doc/guix.texi:9331 +#: guix-git/doc/guix.texi:9466 msgid "The example below is taken from the definition of the @code{grep} package. It adds a phase to run after the @code{install} phase, called @code{fix-egrep-and-fgrep}. That phase is a procedure (@code{lambda*} is for anonymous procedures) that takes a @code{#:outputs} keyword argument and ignores extra keyword arguments (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual}, for more on @code{lambda*} and optional and keyword arguments.) The phase uses @code{substitute*} to modify the installed @file{egrep} and @file{fgrep} scripts so that they refer to @code{grep} by its absolute file name:" msgstr "Пример ниже взят из определения пакета @code{grep}. Он добавляет фазу для запуска после фазы @code{install}, которая называется @code{fix-egrep-and-fgrep}. Эта фаза представляет собой процедуру (@code{lambda*} обозначает анонимную процедуру), которая принимает аргумент ключевого слова @code{#:output} и игнорирует дополнительные аргументы ключевого слова (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual}, for more on @code{lambda*} and optional and keyword arguments.) В фазе используется @code{substitute*} для изменения установленных сценариев @file{egrep} и @file{fgrep}, чтобы они ссылались на @code{grep} по абсолютному имени файла:" #. type: lisp -#: guix-git/doc/guix.texi:9345 +#: guix-git/doc/guix.texi:9480 #, no-wrap msgid "" "(modify-phases %standard-phases\n" @@ -18466,12 +18836,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9352 +#: guix-git/doc/guix.texi:9487 msgid "In the example below, phases are modified in two ways: the standard @code{configure} phase is deleted, presumably because the package does not have a @file{configure} script or anything similar, and the default @code{install} phase is replaced by one that manually copies the executable files to be installed:" msgstr "В приведенном ниже примере фазы изменяются двумя способами: стандартная фаза @code{configure} удаляется, предположительно потому, что в пакете нет сценария @file{configure} или чего-то подобного, и фаза @code{install} по умолчанию заменяется файлом, который вручную копирует устанавливаемые исполняемые файлы:" #. type: lisp -#: guix-git/doc/guix.texi:9365 +#: guix-git/doc/guix.texi:9500 #, no-wrap msgid "" "(modify-phases %standard-phases\n" @@ -18488,377 +18858,615 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9373 +#: guix-git/doc/guix.texi:9507 +#, fuzzy, no-wrap +#| msgid "search paths" +msgid "search path" +msgstr "пути поиска" + +#. type: Plain text +#: guix-git/doc/guix.texi:9514 +msgid "Many programs and libraries look for input data in a @dfn{search path}, a list of directories: shells like Bash look for executables in the command search path, a C compiler looks for @file{.h} files in its header search path, the Python interpreter looks for @file{.py} files in its search path, the spell checker has a search path for dictionaries, and so on." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9522 +msgid "Search paths can usually be defined or overridden @i{via} environment variables (@pxref{Environment Variables,,, libc, The GNU C Library Reference Manual}). For example, the search paths mentioned above can be changed by defining the @env{PATH}, @env{C_INCLUDE_PATH}, @env{PYTHONPATH} (or @env{GUIX_PYTHONPATH}), and @env{DICPATH} environment variables---you know, all these something-PATH variables that you need to get right or things ``won't be found''." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9532 +msgid "You may have noticed from the command line that Guix ``knows'' which search path environment variables should be defined, and how. When you install packages in your default profile, the file @file{~/.guix-profile/etc/profile} is created, which you can ``source'' from the shell to set those variables. Likewise, if you ask @command{guix shell} to create an environment containing Python and NumPy, a Python library, and if you pass it the @option{--search-paths} option, it will tell you about @env{PATH} and @env{GUIX_PYTHONPATH} (@pxref{Invoking guix shell}):" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9537 +#, no-wrap +msgid "" +"$ guix shell python python-numpy --pure --search-paths\n" +"export PATH=\"/gnu/store/@dots{}-profile/bin\"\n" +"export GUIX_PYTHONPATH=\"/gnu/store/@dots{}-profile/lib/python3.9/site-packages\"\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9541 +msgid "When you omit @option{--search-paths}, it defines these environment variables right away, such that Python can readily find NumPy:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9550 +#, no-wrap +msgid "" +"$ guix shell python python-numpy -- python3\n" +"Python 3.9.6 (default, Jan 1 1970, 00:00:01)\n" +"[GCC 10.3.0] on linux\n" +"Type \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n" +">>> import numpy\n" +">>> numpy.version.version\n" +"'1.20.3'\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9555 +msgid "For this to work, the definition of the @code{python} package @emph{declares} the search path it cares about and its associated environment variable, @env{GUIX_PYTHONPATH}. It looks like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9565 +#, no-wrap +msgid "" +"(package\n" +" (name \"python\")\n" +" (version \"3.9.9\")\n" +" ;; some fields omitted...\n" +" (native-search-paths\n" +" (list (search-path-specification\n" +" (variable \"GUIX_PYTHONPATH\")\n" +" (files (list \"lib/python/3.9/site-packages\"))))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9580 +msgid "What this @code{native-search-paths} field says is that, when the @code{python} package is used, the @env{GUIX_PYTHONPATH} environment variable must be defined to include all the @file{lib/python/3.9/site-packages} sub-directories encountered in its environment. (The @code{native-} bit means that, if we are in a cross-compilation environment, only native inputs may be added to the search path; @pxref{package Reference, @code{search-paths}}.) In the NumPy example above, the profile where @code{python} appears contains exactly one such sub-directory, and @env{GUIX_PYTHONPATH} is set to that. When there are several @file{lib/python/3.9/site-packages}---this is the case in package build environments---they are all added to @env{GUIX_PYTHONPATH}, separated by colons (@code{:})." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9587 +msgid "Notice that @env{GUIX_PYTHONPATH} is specified as part of the definition of the @code{python} package, and @emph{not} as part of that of @code{python-numpy}. This is because this environment variable ``belongs'' to Python, not NumPy: Python actually reads the value of that variable and honors it." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9591 +msgid "Corollary: if you create a profile that does not contain @code{python}, @code{GUIX_PYTHONPATH} will @emph{not} be defined, even if it contains packages that provide @file{.py} files:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9595 +#, no-wrap +msgid "" +"$ guix shell python-numpy --search-paths --pure\n" +"export PATH=\"/gnu/store/@dots{}-profile/bin\"\n" +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9599 +msgid "This makes a lot of sense if we look at this profile in isolation: no software in this profile would read @env{GUIX_PYTHONPATH}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9609 +msgid "Of course, there are many variations on that theme: some packages honor more than one search path, some use separators other than colon, some accumulate several directories in their search path, and so on. A more complex example is the search path of libxml2: the value of the @env{XML_CATALOG_FILES} environment variable is space-separated, it must contain a list of @file{catalog.xml} files (not directories), which are to be found in @file{xml} sub-directories---nothing less. The search path specification looks like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9621 +#, no-wrap +msgid "" +"(package\n" +" (name \"libxml2\")\n" +" ;; some fields omitted\n" +" (native-search-paths\n" +" (list (search-path-specification\n" +" (variable \"XML_CATALOG_FILES\")\n" +" (separator \" \")\n" +" (files '(\"xml\"))\n" +" (file-pattern \"^catalog\\\\.xml$\")\n" +" (file-type 'regular)))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9624 +msgid "Worry not, search path specifications are usually not this tricky." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9628 +msgid "The @code{(guix search-paths)} module defines the data type of search path specifications and a number of helper procedures. Below is the reference of search path specifications." +msgstr "" + +#. type: deftp +#: guix-git/doc/guix.texi:9629 +#, fuzzy, no-wrap +#| msgid "{Data Type} agate-configuration" +msgid "{Data Type} search-path-specification" +msgstr "{Data Type} pagekite-configuration" + +#. type: deftp +#: guix-git/doc/guix.texi:9631 +#, fuzzy +#| msgid "This is the data type for the OpenDHT service configuration." +msgid "The data type for search path specifications." +msgstr "Управление конфигурацией операционной системы." + +#. type: code{#1} +#: guix-git/doc/guix.texi:9633 +#, no-wrap +msgid "variable" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9635 +msgid "The name of the environment variable for this search path (a string)." +msgstr "" + +#. type: code{#1} +#: guix-git/doc/guix.texi:9636 guix-git/doc/guix.texi:17482 +#, no-wrap +msgid "files" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9639 +#, fuzzy +#| msgid "A list of command-line flags that should be passed to the @code{patch} command." +msgid "The list of sub-directories (strings) that should be added to the search path." +msgstr "Список флагов командной строки, которые следует передать команде @code{patch}." + +#. type: item +#: guix-git/doc/guix.texi:9640 +#, fuzzy, no-wrap +#| msgid "@code{port} (default: @code{\"\"})" +msgid "@code{separator} (default: @code{\":\"})" +msgstr "@code{port} (default: @code{22})" + +#. type: table +#: guix-git/doc/guix.texi:9642 +msgid "The string used to separate search path components." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9650 +msgid "As a special case, a @code{separator} value of @code{#f} specifies a ``single-component search path''---in other words, a search path that cannot contain more than one element. This is useful in some cases, such as the @code{SSL_CERT_DIR} variable (honored by OpenSSL, cURL, and a few other packages) or the @code{ASPELL_DICT_DIR} variable (honored by the GNU Aspell spell checker), both of which must point to a single directory." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9651 +#, fuzzy, no-wrap +#| msgid "@code{type} (default: @code{'server})" +msgid "@code{file-type} (default: @code{'directory})" +msgstr "@code{port} (default: @code{22})" + +#. type: table +#: guix-git/doc/guix.texi:9655 +msgid "The type of file being matched---@code{'directory} or @code{'regular}, though it can be any symbol returned by @code{stat:type} (@pxref{File System, @code{stat},, guile, GNU Guile Reference Manual})." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9658 +msgid "In the libxml2 example above, we would match regular files; in the Python example, we would match directories." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9659 +#, fuzzy, no-wrap +#| msgid "@code{user-path} (default: @code{#f})" +msgid "@code{file-pattern} (default: @code{#f})" +msgstr "@code{features} (default: @code{'()})" + +#. type: table +#: guix-git/doc/guix.texi:9663 +msgid "This must be either @code{#f} or a regular expression specifying files to be matched @emph{within} the sub-directories specified by the @code{files} field." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9665 +msgid "Again, the libxml2 example shows a situation where this is needed." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9671 +msgid "How do you turn search path specifications on one hand and a bunch of directories on the other hand in a set of environment variable definitions? That's the job of @code{evaluate-search-paths}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9672 +#, fuzzy, no-wrap +#| msgid "{Scheme Procedure} inferior-package-search-paths @var{package}" +msgid "{Scheme Procedure} evaluate-search-paths @var{search-paths} @" +msgstr "{Процедура Scheme} inferior-package-search-paths @var{package}" + +#. type: deffn +#: guix-git/doc/guix.texi:9678 +msgid "@var{directories} [@var{getenv}] Evaluate @var{search-paths}, a list of search-path specifications, for @var{directories}, a list of directory names, and return a list of specification/value pairs. Use @var{getenv} to determine the current settings and report only settings not already effective." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9682 +msgid "The @code{(guix profiles)} provides a higher-level helper procedure, @code{load-profile}, that sets the environment variables of a profile." +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:9687 #, no-wrap msgid "store items" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9374 +#: guix-git/doc/guix.texi:9688 #, no-wrap msgid "store paths" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9385 +#: guix-git/doc/guix.texi:9699 msgid "Conceptually, the @dfn{store} is the place where derivations that have been built successfully are stored---by default, @file{/gnu/store}. Sub-directories in the store are referred to as @dfn{store items} or sometimes @dfn{store paths}. The store has an associated database that contains information such as the store paths referred to by each store path, and the list of @emph{valid} store items---results of successful builds. This database resides in @file{@var{localstatedir}/guix/db}, where @var{localstatedir} is the state directory specified @i{via} @option{--localstatedir} at configure time, usually @file{/var}." msgstr "Концептуально @dfn{store} - это место, где хранятся успешно построенные derivation'ы - по умолчанию @file{/gnu/store}. Подкаталоги в store называются @dfn{store items} или иногда @dfn{store paths}. У store есть связанная база данных, которая содержит такую информацию, как store paths, на которые ссылается каждый store path, и список @emph{валидных} store item'ов---результаты успешных сборок. Эта база данных находится в @file{@var{localstatedir}/guix/db}, где @var{localstatedir} - это каталог состояний, указанный @i{через} @option{--localstatedir} во время configure, обычно @file{/var}." #. type: Plain text -#: guix-git/doc/guix.texi:9390 +#: guix-git/doc/guix.texi:9704 msgid "The store is @emph{always} accessed by the daemon on behalf of its clients (@pxref{Invoking guix-daemon}). To manipulate the store, clients connect to the daemon over a Unix-domain socket, send requests to it, and read the result---these are remote procedure calls, or RPCs." msgstr "Демон @emph{всегда} обращается к store от имени своих клиентов (@pxref{Invoking guix-daemon}). Чтобы управлять store, клиенты подключаются к демону через сокет домена Unix, отправляют ему запросы и читают результат - это вызовы удаленных процедур или RPC." #. type: quotation -#: guix-git/doc/guix.texi:9395 +#: guix-git/doc/guix.texi:9709 msgid "Users must @emph{never} modify files under @file{/gnu/store} directly. This would lead to inconsistencies and break the immutability assumptions of Guix's functional model (@pxref{Introduction})." msgstr "Пользователи должны @emph{никогда} напрямую изменять файлы в @file{/gnu/store}. Это приведет к несоответствиям и нарушит предположения о неизменности функциональной модели Guix (@pxref{Introduction})." #. type: quotation -#: guix-git/doc/guix.texi:9399 +#: guix-git/doc/guix.texi:9713 msgid "@xref{Invoking guix gc, @command{guix gc --verify}}, for information on how to check the integrity of the store and attempt recovery from accidental modifications." msgstr "@xref{Invoking guix gc, @command{guix gc --verify}}, для получения информации о том, как проверить целостность store и попытаться восстановить его после случайных изменений." #. type: Plain text -#: guix-git/doc/guix.texi:9406 +#: guix-git/doc/guix.texi:9720 msgid "The @code{(guix store)} module provides procedures to connect to the daemon, and to perform RPCs. These are described below. By default, @code{open-connection}, and thus all the @command{guix} commands, connect to the local daemon or to the URI specified by the @env{GUIX_DAEMON_SOCKET} environment variable." msgstr "Модуль @code{(guix store)} предоставляет процедуры для подключения к демону и выполнения RPC. Они описаны ниже. По умолчанию @code{open-connection} и, следовательно, все команды @command{guix} подключаются к локальному демону или к URI, указанному в переменной среды @env{GUIX_DAEMON_SOCKET}." #. type: defvr -#: guix-git/doc/guix.texi:9407 +#: guix-git/doc/guix.texi:9721 #, no-wrap msgid "{Environment Variable} GUIX_DAEMON_SOCKET" msgstr "{Environment Variable} GUIX_DAEMON_SOCKET" #. type: defvr -#: guix-git/doc/guix.texi:9412 +#: guix-git/doc/guix.texi:9726 msgid "When set, the value of this variable should be a file name or a URI designating the daemon endpoint. When it is a file name, it denotes a Unix-domain socket to connect to. In addition to file names, the supported URI schemes are:" msgstr "Если установлено, значение этой переменной должно быть именем файла или URI, обозначающим конечную точку демона. Когда это имя файла, оно обозначает сокет домена Unix, к которому нужно подключиться. Помимо имен файлов, поддерживаются следующие схемы URI:" #. type: code{#1} -#: guix-git/doc/guix.texi:9414 guix-git/doc/guix.texi:26183 +#: guix-git/doc/guix.texi:9728 guix-git/doc/guix.texi:26520 #, no-wrap msgid "file" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:9415 +#: guix-git/doc/guix.texi:9729 #, no-wrap msgid "unix" msgstr "unix" #. type: table -#: guix-git/doc/guix.texi:9419 +#: guix-git/doc/guix.texi:9733 msgid "These are for Unix-domain sockets. @code{file:///var/guix/daemon-socket/socket} is equivalent to @file{/var/guix/daemon-socket/socket}." msgstr "Это для сокетов домена Unix. @code{file:///var/guix/daemon-socket/socket} эквивалентен @file{/var/guix/daemon-socket/socket}." #. type: table -#: guix-git/doc/guix.texi:9428 +#: guix-git/doc/guix.texi:9742 msgid "These URIs denote connections over TCP/IP, without encryption nor authentication of the remote host. The URI must specify the host name and optionally a port number (by default port 44146 is used):" msgstr "Эти URI обозначают соединения через TCP/IP без шифрования и аутентификации удаленного хоста. В URI необходимо указать имя хоста и, возможно, номер порта (по умолчанию используется порт 44146):" #. type: example -#: guix-git/doc/guix.texi:9431 +#: guix-git/doc/guix.texi:9745 #, no-wrap msgid "guix://master.guix.example.org:1234\n" msgstr "guix://master.guix.example.org:1234\n" #. type: table -#: guix-git/doc/guix.texi:9436 +#: guix-git/doc/guix.texi:9750 msgid "This setup is suitable on local networks, such as clusters, where only trusted nodes may connect to the build daemon at @code{master.guix.example.org}." msgstr "Эта настройка подходит для локальных сетей, таких как кластеры, где только доверенные узлы могут подключаться к демону сборки по адресу @code{master.guix.example.org}." #. type: table -#: guix-git/doc/guix.texi:9440 +#: guix-git/doc/guix.texi:9754 msgid "The @option{--listen} option of @command{guix-daemon} can be used to instruct it to listen for TCP connections (@pxref{Invoking guix-daemon, @option{--listen}})." msgstr "Параметр @option{--listen} команды @command{guix-daemon} можно использовать для указания ему прослушивать TCP-соединения (@pxref{Invoking guix-daemon, @option{--listen}})." #. type: item -#: guix-git/doc/guix.texi:9441 +#: guix-git/doc/guix.texi:9755 #, no-wrap msgid "ssh" msgstr "ssh" #. type: cindex -#: guix-git/doc/guix.texi:9442 +#: guix-git/doc/guix.texi:9756 #, no-wrap msgid "SSH access to build daemons" msgstr "доступ к демонам сборки по ssh" #. type: table -#: guix-git/doc/guix.texi:9448 +#: guix-git/doc/guix.texi:9762 msgid "These URIs allow you to connect to a remote daemon over SSH@. This feature requires Guile-SSH (@pxref{Requirements}) and a working @command{guile} binary in @env{PATH} on the destination machine. It supports public key and GSSAPI authentication. A typical URL might look like this:" msgstr "Эти URI позволяют подключаться к удаленному демону через SSH. Для этой функции требуется Guile-SSH (@pxref{Requirements}) и рабочий @command{guile} binary файл в @env{PATH} на конечном компьютере. Он поддерживает открытый ключ и аутентификацию GSSAPI. Типичный URL-адрес может выглядеть так:" #. type: example -#: guix-git/doc/guix.texi:9451 +#: guix-git/doc/guix.texi:9765 #, no-wrap msgid "ssh://charlie@@guix.example.org:22\n" msgstr "ssh://charlie@@guix.example.org:22\n" #. type: table -#: guix-git/doc/guix.texi:9455 +#: guix-git/doc/guix.texi:9769 msgid "As for @command{guix copy}, the usual OpenSSH client configuration files are honored (@pxref{Invoking guix copy})." msgstr "Что касается @command{guix copy}, учитываются обычные файлы конфигурации клиента OpenSSH (@pxref{Invoking guix copy})." #. type: defvr -#: guix-git/doc/guix.texi:9458 +#: guix-git/doc/guix.texi:9772 msgid "Additional URI schemes may be supported in the future." msgstr "В будущем могут поддерживаться дополнительные схемы URI." #. type: quotation -#: guix-git/doc/guix.texi:9465 +#: guix-git/doc/guix.texi:9779 msgid "The ability to connect to remote build daemons is considered experimental as of @value{VERSION}. Please get in touch with us to share any problems or suggestions you may have (@pxref{Contributing})." msgstr "Возможность подключения к демонам удаленной сборки считается экспериментальной с @value{VERSION}. Пожалуйста, свяжитесь с нами, чтобы поделиться любыми проблемами или предложениями, которые могут у вас возникнуть (@pxref{Contributing})." #. type: deffn -#: guix-git/doc/guix.texi:9468 +#: guix-git/doc/guix.texi:9782 #, no-wrap msgid "{Scheme Procedure} open-connection [@var{uri}] [#:reserve-space? #t]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9473 +#: guix-git/doc/guix.texi:9787 msgid "Connect to the daemon over the Unix-domain socket at @var{uri} (a string). When @var{reserve-space?} is true, instruct it to reserve a little bit of extra space on the file system so that the garbage collector can still operate should the disk become full. Return a server object." msgstr "Подключится к демону через сокет домена Unix по адресу @var{uri} (строка). Когда @var{reserve-space?} истинна, указать ему, чтобы он зарезервировал немного дополнительного места в файловой системе, чтобы сборщик мусора мог работать, если диск заполнится. Вернуть объект сервера." #. type: deffn -#: guix-git/doc/guix.texi:9476 +#: guix-git/doc/guix.texi:9790 msgid "@var{file} defaults to @code{%default-socket-path}, which is the normal location given the options that were passed to @command{configure}." msgstr "@var{file} по умолчанию - @code{%default-socket-path}, что является обычным расположением с учетом параметров, переданных в @command{configure}." #. type: deffn -#: guix-git/doc/guix.texi:9478 +#: guix-git/doc/guix.texi:9792 #, no-wrap msgid "{Scheme Procedure} close-connection @var{server}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9480 +#: guix-git/doc/guix.texi:9794 msgid "Close the connection to @var{server}." msgstr "Закрыть соединение с @var{server}." #. type: defvr -#: guix-git/doc/guix.texi:9482 +#: guix-git/doc/guix.texi:9796 #, no-wrap msgid "{Scheme Variable} current-build-output-port" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9485 +#: guix-git/doc/guix.texi:9799 msgid "This variable is bound to a SRFI-39 parameter, which refers to the port where build and error logs sent by the daemon should be written." msgstr "Эта переменная привязана к параметру SRFI-39, который относится к порту, на который должны быть записаны журналы сборки и ошибок, отправляемые демоном." #. type: Plain text -#: guix-git/doc/guix.texi:9489 +#: guix-git/doc/guix.texi:9803 msgid "Procedures that make RPCs all take a server object as their first argument." msgstr "Процедуры, которые заставляют все RPC принимать объект сервера в качестве своего первого аргумента." #. type: deffn -#: guix-git/doc/guix.texi:9490 +#: guix-git/doc/guix.texi:9804 #, no-wrap msgid "{Scheme Procedure} valid-path? @var{server} @var{path}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9491 +#: guix-git/doc/guix.texi:9805 #, no-wrap msgid "invalid store items" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9496 +#: guix-git/doc/guix.texi:9810 msgid "Return @code{#t} when @var{path} designates a valid store item and @code{#f} otherwise (an invalid item may exist on disk but still be invalid, for instance because it is the result of an aborted or failed build)." msgstr "Возвращать @code{#t}, когда @var{path} обозначает допустимый элемент хранилища, и @code{#f} в противном случае (недопустимый элемент может существовать на диске, но по-прежнему быть недопустимым, например, потому что он является результатом прерывания или неудачной сборки)." #. type: deffn -#: guix-git/doc/guix.texi:9499 +#: guix-git/doc/guix.texi:9813 msgid "A @code{&store-protocol-error} condition is raised if @var{path} is not prefixed by the store directory (@file{/gnu/store})." msgstr "Условие @code{&store-protocol-error} возникает, если @var{path} не имеет префикса в каталоге store (@file{/gnu/store})." #. type: deffn -#: guix-git/doc/guix.texi:9501 +#: guix-git/doc/guix.texi:9815 #, no-wrap msgid "{Scheme Procedure} add-text-to-store @var{server} @var{name} @var{text} [@var{references}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9505 +#: guix-git/doc/guix.texi:9819 msgid "Add @var{text} under file @var{name} in the store, and return its store path. @var{references} is the list of store paths referred to by the resulting store path." msgstr "Добавить @var{text} в файл @var{name} в store и вернуть его store path. @var{references} - это список store path'ы, на которые ссылается конечный store path." #. type: deffn -#: guix-git/doc/guix.texi:9507 +#: guix-git/doc/guix.texi:9821 #, no-wrap msgid "{Scheme Procedure} build-derivations @var{store} @var{derivations} @" msgstr "{Scheme Procedure} lookup-inferior-packages @var{inferior} @var{name} @" #. type: deffn -#: guix-git/doc/guix.texi:9512 +#: guix-git/doc/guix.texi:9826 msgid "[@var{mode}] Build @var{derivations}, a list of @code{} objects, @file{.drv} file names, or derivation/output pairs, using the specified @var{mode}---@code{(build-mode normal)} by default." msgstr "[@var{mode}] Собрать @var{derivations}, список объектов @code{}, имен файлов @file{.drv} или пар derivation/output, используя указанный @var{mode}---@code{(build-mode normal)} по умолчанию." #. type: Plain text -#: guix-git/doc/guix.texi:9518 +#: guix-git/doc/guix.texi:9832 msgid "Note that the @code{(guix monads)} module provides a monad as well as monadic versions of the above procedures, with the goal of making it more convenient to work with code that accesses the store (@pxref{The Store Monad})." msgstr "Обратите внимание, что модуль @code{(guix monads)} предоставляет как монаду, так и монадические версии вышеупомянутых процедур с целью сделать более удобной работу с кодом, который обращается к store (@pxref{The Store Monad})." #. type: i{#1} -#: guix-git/doc/guix.texi:9521 +#: guix-git/doc/guix.texi:9835 msgid "This section is currently incomplete." msgstr "Этот раздел в настоящее время не завершен." #. type: cindex -#: guix-git/doc/guix.texi:9525 +#: guix-git/doc/guix.texi:9839 #, no-wrap msgid "derivations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9529 +#: guix-git/doc/guix.texi:9843 msgid "Low-level build actions and the environment in which they are performed are represented by @dfn{derivations}. A derivation contains the following pieces of information:" msgstr "Действия низкоуровневой сборки и среда, в которой они выполняются, представлены через @dfn{derivations}. Derivation содержит следующую информацию:" #. type: itemize -#: guix-git/doc/guix.texi:9534 +#: guix-git/doc/guix.texi:9848 msgid "The outputs of the derivation---derivations produce at least one file or directory in the store, but may produce more." msgstr "The outputs of the derivation---derivations создают по крайней мере один файл или каталог в store, но могут создавать и больше." #. type: cindex -#: guix-git/doc/guix.texi:9536 +#: guix-git/doc/guix.texi:9850 #, no-wrap msgid "build-time dependencies" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9537 +#: guix-git/doc/guix.texi:9851 #, no-wrap msgid "dependencies, build-time" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9541 +#: guix-git/doc/guix.texi:9855 msgid "The inputs of the derivations---i.e., its build-time dependencies---which may be other derivations or plain files in the store (patches, build scripts, etc.)." msgstr "Входные данные производных---то есть его build-time зависимости - которые могут быть другими derivation'ами или простыми файлами в store (патчи, скрипты сборки и т.д.)." #. type: itemize -#: guix-git/doc/guix.texi:9544 +#: guix-git/doc/guix.texi:9858 msgid "The system type targeted by the derivation---e.g., @code{x86_64-linux}." msgstr "Тип системы, на который нацелена derivation - например, @code{x86_64-linux}." #. type: itemize -#: guix-git/doc/guix.texi:9548 +#: guix-git/doc/guix.texi:9862 msgid "The file name of a build script in the store, along with the arguments to be passed." msgstr "Имя файла скрипта сборки в store вместе с передаваемыми аргументами." #. type: itemize -#: guix-git/doc/guix.texi:9551 +#: guix-git/doc/guix.texi:9865 msgid "A list of environment variables to be defined." msgstr "Список переменных среды, которые необходимо определить." #. type: cindex -#: guix-git/doc/guix.texi:9554 +#: guix-git/doc/guix.texi:9868 #, no-wrap msgid "derivation path" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9562 +#: guix-git/doc/guix.texi:9876 msgid "Derivations allow clients of the daemon to communicate build actions to the store. They exist in two forms: as an in-memory representation, both on the client- and daemon-side, and as files in the store whose name end in @file{.drv}---these files are referred to as @dfn{derivation paths}. Derivations paths can be passed to the @code{build-derivations} procedure to perform the build actions they prescribe (@pxref{The Store})." msgstr "Derivation'ы позволяют клиентам демона передавать действия сборки в store. Они существуют в двух формах: как представление в памяти, как на стороне клиента, так и на стороне демона, и в виде файлов в хранилище, имена которых заканчиваются на @file{.drv} - эти файлы называются @dfn{derivation paths}. Derivation paths могут быть переданы в процедуру @code{build-derivations} для выполнения действий сборки, которые они предписывают (@pxref{The Store})." #. type: cindex -#: guix-git/doc/guix.texi:9563 +#: guix-git/doc/guix.texi:9877 #, no-wrap msgid "fixed-output derivations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9570 +#: guix-git/doc/guix.texi:9884 msgid "Operations such as file downloads and version-control checkouts for which the expected content hash is known in advance are modeled as @dfn{fixed-output derivations}. Unlike regular derivations, the outputs of a fixed-output derivation are independent of its inputs---e.g., a source code download produces the same result regardless of the download method and tools being used." msgstr "Такие операции, как загрузка файлов и проверка версий, для которых заранее известен ожидаемый хэш содержимого, моделируются как @dfn{fixed-output derivations}. В отличие от обычных дериваций, выходные данные деривации с фиксированным выходом не зависят от его входных данных - например, загрузка исходного кода дает тот же результат независимо от метода загрузки и используемых инструментов." #. type: item -#: guix-git/doc/guix.texi:9571 guix-git/doc/guix.texi:13341 +#: guix-git/doc/guix.texi:9885 guix-git/doc/guix.texi:13698 #, no-wrap msgid "references" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9572 +#: guix-git/doc/guix.texi:9886 #, no-wrap msgid "run-time dependencies" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9573 +#: guix-git/doc/guix.texi:9887 #, no-wrap msgid "dependencies, run-time" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9580 +#: guix-git/doc/guix.texi:9894 msgid "The outputs of derivations---i.e., the build results---have a set of @dfn{references}, as reported by the @code{references} RPC or the @command{guix gc --references} command (@pxref{Invoking guix gc}). References are the set of run-time dependencies of the build results. References are a subset of the inputs of the derivation; this subset is automatically computed by the build daemon by scanning all the files in the outputs." msgstr "Outputs of derivations---то есть результаты сборки---имеют множество @dfn{references}, в соответствии с указаниями RPC @code{references} или команды @command{guix gc --references} (@pxref{Invoking guix gc}). References - это набор run-time зависимостей результатов сборки. References - это подмножество входных данных derivation; это подмножество автоматически вычисляется демоном сборки путем сканирования всех файлов в выходных данных." #. type: Plain text -#: guix-git/doc/guix.texi:9585 +#: guix-git/doc/guix.texi:9899 msgid "The @code{(guix derivations)} module provides a representation of derivations as Scheme objects, along with procedures to create and otherwise manipulate derivations. The lowest-level primitive to create a derivation is the @code{derivation} procedure:" msgstr "Модуль @code{(guix diverations)} предоставляет представление derivation'ов в виде Scheme объектов, а также процедуры для создания derivation'ов и других манипуляций с ними. Самым низкоуровневым примитивом для создания derivation'а является процедура @code{derivation}:" #. type: deffn -#: guix-git/doc/guix.texi:9586 +#: guix-git/doc/guix.texi:9900 #, no-wrap msgid "{Scheme Procedure} derivation @var{store} @var{name} @var{builder} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9595 +#: guix-git/doc/guix.texi:9909 msgid "@var{args} [#:outputs '(\"out\")] [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:inputs '()] [#:env-vars '()] @ [#:system (%current-system)] [#:references-graphs #f] @ [#:allowed-references #f] [#:disallowed-references #f] @ [#:leaked-env-vars #f] [#:local-build? #f] @ [#:substitutable? #t] [#:properties '()] Build a derivation with the given arguments, and return the resulting @code{} object." msgstr "@var{args} [#:outputs '(\\\"out\\\")] [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:inputs '()] [#:env-vars '()] @ [#:system (%current-system)] [#:references-graphs #f] @ [#:allowed-references #f] [#:disallowed-references #f] @ [#:leaked-env-vars #f] [#:local-build? #f] @ [#:substitutable? #t] [#:properties '()] Собрать производную с заданными аргументами и вернуть полученный объект @code{}." #. type: deffn -#: guix-git/doc/guix.texi:9602 +#: guix-git/doc/guix.texi:9916 msgid "When @var{hash} and @var{hash-algo} are given, a @dfn{fixed-output derivation} is created---i.e., one whose result is known in advance, such as a file download. If, in addition, @var{recursive?} is true, then that fixed output may be an executable file or a directory and @var{hash} must be the hash of an archive containing this output." msgstr "Когда заданы @var{hash} и @var{hash-algo}, создается @dfn{fixed-output derivation} - то есть результат, который известен заранее, например, загрузка файла. Кроме того, если @var{recursive?} истинна, то этот фиксированный вывод может быть исполняемым файлом или каталогом, а @var{hash} должен быть хешем архива, содержащего этот вывод." #. type: deffn -#: guix-git/doc/guix.texi:9607 +#: guix-git/doc/guix.texi:9921 msgid "When @var{references-graphs} is true, it must be a list of file name/store path pairs. In that case, the reference graph of each store path is exported in the build environment in the corresponding file, in a simple text format." msgstr "Когда @var{links-graphs} истинна, данная переменная должна быть списком из пар имя файла и путь к store. В этом случае граф ссылок каждого store path экспортируется в среду сборки в соответствующий файл в простом текстовом формате." #. type: deffn -#: guix-git/doc/guix.texi:9612 +#: guix-git/doc/guix.texi:9926 msgid "When @var{allowed-references} is true, it must be a list of store items or outputs that the derivation's output may refer to. Likewise, @var{disallowed-references}, if true, must be a list of things the outputs may @emph{not} refer to." msgstr "Когда @var{allowed-links} истинна, данная переменная должна быть списком store item'ов или выходных данных, на которые может ссылаться выход derivation'а. Аналогично, @var{disallowed-links}, если она истинна, данная переменная должна быть списком сущностей, на которые @emph{не} могут ссылаться выходные данные." #. type: deffn -#: guix-git/doc/guix.texi:9619 +#: guix-git/doc/guix.texi:9933 msgid "When @var{leaked-env-vars} is true, it must be a list of strings denoting environment variables that are allowed to ``leak'' from the daemon's environment to the build environment. This is only applicable to fixed-output derivations---i.e., when @var{hash} is true. The main use is to allow variables such as @code{http_proxy} to be passed to derivations that download files." msgstr "Когда @var{leaked-env-vars} истинна, данная переменная должна быть списком строк, обозначающих переменные среды, которым разрешено ``просачиваться'' из среды демона в среду сборки. Это применимо только к fixed-output derivation'ам, т.е. когда @var{hash} истинна. Основное использование - разрешить передачу таких переменных, как @code{http_proxy}, derivation'ам, которые загружают файлы." #. type: deffn -#: guix-git/doc/guix.texi:9624 +#: guix-git/doc/guix.texi:9938 msgid "When @var{local-build?} is true, declare that the derivation is not a good candidate for offloading and should rather be built locally (@pxref{Daemon Offload Setup}). This is the case for small derivations where the costs of data transfers would outweigh the benefits." msgstr "Когда @var{local-build?} истинна, объявить, что производная не является хорошим кандидатом для offload и должна быть собрана локально (@pxref{Daemon Offload Setup}). Это справедливо для небольших derivation'ов, когда затраты на передачу данных перевешивают выгоды." #. type: deffn -#: guix-git/doc/guix.texi:9629 +#: guix-git/doc/guix.texi:9943 msgid "When @var{substitutable?} is false, declare that substitutes of the derivation's output should not be used (@pxref{Substitutes}). This is useful, for instance, when building packages that capture details of the host CPU instruction set." msgstr "Когда @var{substitutable?} ложно, объявить, что substitutes derivation'ов не должны использоваться (@pxref{Substitutes}). Это полезно, например, при создании пакетов, которые фиксируют подробности набора команд центрального процессора." #. type: deffn -#: guix-git/doc/guix.texi:9632 +#: guix-git/doc/guix.texi:9946 msgid "@var{properties} must be an association list describing ``properties'' of the derivation. It is kept as-is, uninterpreted, in the derivation." msgstr "@var{properties} должна быть списком ассоциаций, описывающих ``свойства'' derivation'а. При выводе они сохраняются как есть, без интерпретации." #. type: Plain text -#: guix-git/doc/guix.texi:9638 +#: guix-git/doc/guix.texi:9952 msgid "Here's an example with a shell script as its builder, assuming @var{store} is an open connection to the daemon, and @var{bash} points to a Bash executable in the store:" msgstr "Вот пример со shell скриптом в качестве его builder'а, предполагая, что @var{store} является открытым соединением с демоном, а @var{bash} указывает на исполняемый файл Bash в store:" #. type: lisp -#: guix-git/doc/guix.texi:9643 +#: guix-git/doc/guix.texi:9957 #, no-wrap msgid "" "(use-modules (guix utils)\n" @@ -18872,7 +19480,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:9652 +#: guix-git/doc/guix.texi:9966 #, no-wrap msgid "" "(let ((builder ; add the Bash script to the store\n" @@ -18894,48 +19502,48 @@ msgstr "" "@result{} # /gnu/store/@dots{}-foo>\n" #. type: Plain text -#: guix-git/doc/guix.texi:9659 +#: guix-git/doc/guix.texi:9973 msgid "As can be guessed, this primitive is cumbersome to use directly. A better approach is to write build scripts in Scheme, of course! The best course of action for that is to write the build code as a ``G-expression'', and to pass it to @code{gexp->derivation}. For more information, @pxref{G-Expressions}." msgstr "Как можно догадаться, этот примитив неудобно использовать напрямую. Конечно, лучший подход - писать скрипты сборки на Scheme! Лучше всего для этого написать код сборки как ``G-выражение'' и передать его в @code{gexp->derivation}. Для получения дополнительной информации, @pxref{G-Expressions}." #. type: Plain text -#: guix-git/doc/guix.texi:9664 +#: guix-git/doc/guix.texi:9978 msgid "Once upon a time, @code{gexp->derivation} did not exist and constructing derivations with build code written in Scheme was achieved with @code{build-expression->derivation}, documented below. This procedure is now deprecated in favor of the much nicer @code{gexp->derivation}." msgstr "Когда-то давно @code{gexp->derivation} не существовала, и построение derivation'ов с помощью кода сборки, написанного на Scheme, достигалось с помощью @code{build-expression->derivation}, описанной ниже. Эта процедура теперь устарела и заменена более приятным @code{gexp->derivation}." #. type: deffn -#: guix-git/doc/guix.texi:9665 +#: guix-git/doc/guix.texi:9979 #, no-wrap msgid "{Scheme Procedure} build-expression->derivation @var{store} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9681 +#: guix-git/doc/guix.texi:9995 msgid "@var{name} @var{exp} @ [#:system (%current-system)] [#:inputs '()] @ [#:outputs '(\"out\")] [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:env-vars '()] [#:modules '()] @ [#:references-graphs #f] [#:allowed-references #f] @ [#:disallowed-references #f] @ [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f] Return a derivation that executes Scheme expression @var{exp} as a builder for derivation @var{name}. @var{inputs} must be a list of @code{(name drv-path sub-drv)} tuples; when @var{sub-drv} is omitted, @code{\"out\"} is assumed. @var{modules} is a list of names of Guile modules from the current search path to be copied in the store, compiled, and made available in the load path during the execution of @var{exp}---e.g., @code{((guix build utils) (guix build gnu-build-system))}." msgstr "@var{name} @var{exp} @ [#:system (%current-system)] [#:inputs '()] @ [#:outputs '(\\\"out\\\")] [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:env-vars '()] [#:modules '()] @ [#:references-graphs #f] [#:allowed-references #f] @ [#:disallowed-references #f] @ [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f] Возвращает derivation, которая исполняет Scheme выражение @var{exp} как builder для derivation'а @var{name}. @var{inputs} должна быть списком кортежей @code{(name drv-path sub-drv)}; когда @var{sub-drv} опущена, предполагается @code{\"out\"}. @var{modules} - это список имен модулей Guile из текущего пути поиска, которые будут скопированы в store, скомпилированы и станут доступными в пути загрузки во время выполнения @var{exp}---например, @code{((guix build utils) (guix build gnu-build-system))}." #. type: deffn -#: guix-git/doc/guix.texi:9689 +#: guix-git/doc/guix.texi:10003 msgid "@var{exp} is evaluated in an environment where @code{%outputs} is bound to a list of output/path pairs, and where @code{%build-inputs} is bound to a list of string/output-path pairs made from @var{inputs}. Optionally, @var{env-vars} is a list of string pairs specifying the name and value of environment variables visible to the builder. The builder terminates by passing the result of @var{exp} to @code{exit}; thus, when @var{exp} returns @code{#f}, the build is considered to have failed." msgstr "@var{exp} выполняется в среде, где @code{%output} привязан к списку пар output/path, а где @code{%build-inputs} привязан к списку пар строка/output-path сделаными из @var{input}. Необязательно, @var{env-vars} - это список пар строк, определяющих имя и значение переменных среды, видимых builder'у. Builder завершает работу, передавая результат @var{exp} в @code{exit}; таким образом, когда @var{exp} возвращает @code{#f}, сборка считается неудачной." #. type: deffn -#: guix-git/doc/guix.texi:9693 +#: guix-git/doc/guix.texi:10007 msgid "@var{exp} is built using @var{guile-for-build} (a derivation). When @var{guile-for-build} is omitted or is @code{#f}, the value of the @code{%guile-for-build} fluid is used instead." msgstr "@var{exp} собирается с использованием @var{guile-for-build} (derivation). Когда @var{guile-for-build} опущена или равна @code{#f}, вместо этого используется значение fluid'а @code{%guile-for-build}." #. type: deffn -#: guix-git/doc/guix.texi:9698 +#: guix-git/doc/guix.texi:10012 msgid "See the @code{derivation} procedure for the meaning of @var{references-graphs}, @var{allowed-references}, @var{disallowed-references}, @var{local-build?}, and @var{substitutable?}." msgstr "См. в процедуре @code{derivation} значение @var{references-graphs}, @var{allowed-references}, @var{disallowed-references}, @var{local-build?} и @var{substitutable?}." #. type: Plain text -#: guix-git/doc/guix.texi:9703 +#: guix-git/doc/guix.texi:10017 msgid "Here's an example of a single-output derivation that creates a directory containing one file:" msgstr "Вот пример single-output derivation'а, которая создает каталог, содержащий один файл:" #. type: lisp -#: guix-git/doc/guix.texi:9711 +#: guix-git/doc/guix.texi:10025 #, no-wrap msgid "" "(let ((builder '(let ((out (assoc-ref %outputs \"out\")))\n" @@ -18955,51 +19563,51 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:9713 +#: guix-git/doc/guix.texi:10027 #, no-wrap msgid "@result{} # @dots{}>\n" msgstr "@result{} # @dots{}>\n" #. type: cindex -#: guix-git/doc/guix.texi:9719 +#: guix-git/doc/guix.texi:10033 #, no-wrap msgid "monad" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9725 +#: guix-git/doc/guix.texi:10039 msgid "The procedures that operate on the store described in the previous sections all take an open connection to the build daemon as their first argument. Although the underlying model is functional, they either have side effects or depend on the current state of the store." msgstr "Все процедуры, которые работают с store, описанные в предыдущих разделах, принимают открытое соединение с демоном сборки в качестве первого аргумента. Хотя основная модель является функциональной, они либо имеют побочные эффекты, либо зависят от текущего состояния store." #. type: Plain text -#: guix-git/doc/guix.texi:9731 +#: guix-git/doc/guix.texi:10045 msgid "The former is inconvenient: the connection to the build daemon has to be carried around in all those functions, making it impossible to compose functions that do not take that parameter with functions that do. The latter can be problematic: since store operations have side effects and/or depend on external state, they have to be properly sequenced." msgstr "Первое неудобно: соединение с демоном сборки должно поддерживаться во всех этих функциях, что делает невозможным составление функций, которые не принимают этот параметр, с функциями, которые его принимают. Последнее может быть проблематичным: поскольку операции store имеют побочные эффекты и/или зависят от внешнего состояния, они должны быть правильно упорядочены." #. type: cindex -#: guix-git/doc/guix.texi:9732 +#: guix-git/doc/guix.texi:10046 #, no-wrap msgid "monadic values" msgstr "монадические значения" #. type: cindex -#: guix-git/doc/guix.texi:9733 +#: guix-git/doc/guix.texi:10047 #, no-wrap msgid "monadic functions" msgstr "монадические функции" #. type: Plain text -#: guix-git/doc/guix.texi:9743 +#: guix-git/doc/guix.texi:10057 msgid "This is where the @code{(guix monads)} module comes in. This module provides a framework for working with @dfn{monads}, and a particularly useful monad for our uses, the @dfn{store monad}. Monads are a construct that allows two things: associating ``context'' with values (in our case, the context is the store), and building sequences of computations (here computations include accesses to the store). Values in a monad---values that carry this additional context---are called @dfn{monadic values}; procedures that return such values are called @dfn{monadic procedures}." msgstr "Здесь на помощь приходит модуль @code{(guix monads)}. Этот модуль предоставляет основу для работы с @dfn{monads} и особенно полезную монаду для наших целей - @dfn{store monad}. Монады - это конструкции, которая позволяют две вещи: связывать ``контекст'' со значениями (в нашем случае контекст - это store) и строить последовательности вычислений (здесь вычисления включают доступ к store). Значения в монаде---значения, которые несут этот дополнительный контекст---называются @dfn{монадическими значениями}; процедуры, возвращающие такие значения, называются @dfn{монадическими процедурами}." #. type: Plain text -#: guix-git/doc/guix.texi:9745 +#: guix-git/doc/guix.texi:10059 msgid "Consider this ``normal'' procedure:" msgstr "Рассмотрим эту ``нормальную'' процедуру:" #. type: lisp -#: guix-git/doc/guix.texi:9754 +#: guix-git/doc/guix.texi:10068 #, no-wrap msgid "" "(define (sh-symlink store)\n" @@ -19019,12 +19627,12 @@ msgstr "" " `(symlink ,sh %output))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:9758 +#: guix-git/doc/guix.texi:10072 msgid "Using @code{(guix monads)} and @code{(guix gexp)}, it may be rewritten as a monadic function:" msgstr "Используя @code{(guix monads)} и @code{(guix gexp)}, ее можно переписать как монадическую функцию:" #. type: lisp -#: guix-git/doc/guix.texi:9766 +#: guix-git/doc/guix.texi:10080 #, no-wrap msgid "" "(define (sh-symlink)\n" @@ -19042,17 +19650,17 @@ msgstr "" " #$output))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:9773 +#: guix-git/doc/guix.texi:10087 msgid "There are several things to note in the second version: the @code{store} parameter is now implicit and is ``threaded'' in the calls to the @code{package->derivation} and @code{gexp->derivation} monadic procedures, and the monadic value returned by @code{package->derivation} is @dfn{bound} using @code{mlet} instead of plain @code{let}." msgstr "Во второй версии следует отметить несколько моментов: параметр @code{store} теперь является неявным и является ``threaded'' в вызовах @code{package->derivation} и @code{gexp->derivation} монадические процедуры, а монадическим значением, возвращаемым @code{package->derivation}, является @dfn{bound} с использованием @code{mlet} вместо простого @code{let}." #. type: Plain text -#: guix-git/doc/guix.texi:9777 +#: guix-git/doc/guix.texi:10091 msgid "As it turns out, the call to @code{package->derivation} can even be omitted since it will take place implicitly, as we will see later (@pxref{G-Expressions}):" msgstr "Оказывается, вызов @code{package->derivation} можно даже опустить, поскольку она будет выполняться неявно, как мы увидим позже (@pxref{G-Expressions}):" #. type: lisp -#: guix-git/doc/guix.texi:9783 +#: guix-git/doc/guix.texi:10097 #, no-wrap msgid "" "(define (sh-symlink)\n" @@ -19066,12 +19674,12 @@ msgstr "" " #$output)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:9792 +#: guix-git/doc/guix.texi:10106 msgid "Calling the monadic @code{sh-symlink} has no effect. As someone once said, ``you exit a monad like you exit a building on fire: by running''. So, to exit the monad and get the desired effect, one must use @code{run-with-store}:" msgstr "Вызов монадического @code{sh-symlink} ни на что не влияет. Как кто-то однажды сказал: ``Вы выходите из монады, как вы выходите из горящего здания: by running''. Итак, чтобы выйти из монады и получить желаемый эффект, нужно использовать @code{run-with-store}:" #. type: lisp -#: guix-git/doc/guix.texi:9796 +#: guix-git/doc/guix.texi:10110 #, no-wrap msgid "" "(run-with-store (open-connection) (sh-symlink))\n" @@ -19081,12 +19689,12 @@ msgstr "" "@result{} /gnu/store/...-sh-symlink\n" #. type: Plain text -#: guix-git/doc/guix.texi:9802 +#: guix-git/doc/guix.texi:10116 msgid "Note that the @code{(guix monad-repl)} module extends the Guile REPL with new ``meta-commands'' to make it easier to deal with monadic procedures: @code{run-in-store}, and @code{enter-store-monad}. The former is used to ``run'' a single monadic value through the store:" msgstr "Обратите внимание, что модуль @code{(guix monad-repl)} расширяет Guile REPL новыми ``метакомандами'', чтобы упростить работу с монадическими процедурами: @code{run-in-store} и @code{Enter-store-monad}. Первая используется для ``run'' одного монадического значения через store:" #. type: example -#: guix-git/doc/guix.texi:9806 +#: guix-git/doc/guix.texi:10120 #, no-wrap msgid "" "scheme@@(guile-user)> ,run-in-store (package->derivation hello)\n" @@ -19096,12 +19704,12 @@ msgstr "" "$1 = # @dots{}>\n" #. type: Plain text -#: guix-git/doc/guix.texi:9810 +#: guix-git/doc/guix.texi:10124 msgid "The latter enters a recursive REPL, where all the return values are automatically run through the store:" msgstr "Последний входит в рекурсивный REPL, где все возвращаемые значения автоматически проходят через хранилище:" #. type: example -#: guix-git/doc/guix.texi:9819 +#: guix-git/doc/guix.texi:10133 #, no-wrap msgid "" "scheme@@(guile-user)> ,enter-store-monad\n" @@ -19121,50 +19729,50 @@ msgstr "" "scheme@@(guile-user)>\n" #. type: Plain text -#: guix-git/doc/guix.texi:9824 +#: guix-git/doc/guix.texi:10138 msgid "Note that non-monadic values cannot be returned in the @code{store-monad} REPL." msgstr "Обратите внимание, что немонадические значения не могут быть возвращены в REPL @code{store-monad}." #. type: Plain text -#: guix-git/doc/guix.texi:9827 +#: guix-git/doc/guix.texi:10141 msgid "The main syntactic forms to deal with monads in general are provided by the @code{(guix monads)} module and are described below." msgstr "Основные синтаксические формы для работы с монадами в целом предоставляются модулем @code{(guix monads)} и описаны ниже." #. type: deffn -#: guix-git/doc/guix.texi:9828 +#: guix-git/doc/guix.texi:10142 #, no-wrap msgid "{Scheme Syntax} with-monad @var{monad} @var{body} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9831 +#: guix-git/doc/guix.texi:10145 msgid "Evaluate any @code{>>=} or @code{return} forms in @var{body} as being in @var{monad}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9833 +#: guix-git/doc/guix.texi:10147 #, no-wrap msgid "{Scheme Syntax} return @var{val}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9835 +#: guix-git/doc/guix.texi:10149 msgid "Return a monadic value that encapsulates @var{val}." msgstr "Возвращает монадическое значение, инкапсулирующее @var{val}." #. type: deffn -#: guix-git/doc/guix.texi:9837 +#: guix-git/doc/guix.texi:10151 #, no-wrap msgid "{Scheme Syntax} >>= @var{mval} @var{mproc} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9844 +#: guix-git/doc/guix.texi:10158 msgid "@dfn{Bind} monadic value @var{mval}, passing its ``contents'' to monadic procedures @var{mproc}@dots{}@footnote{This operation is commonly referred to as ``bind'', but that name denotes an unrelated procedure in Guile. Thus we use this somewhat cryptic symbol inherited from the Haskell language.}. There can be one @var{mproc} or several of them, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9852 +#: guix-git/doc/guix.texi:10166 #, no-wrap msgid "" "(run-with-state\n" @@ -19184,7 +19792,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:9855 +#: guix-git/doc/guix.texi:10169 #, no-wrap msgid "" "@result{} 4\n" @@ -19194,99 +19802,99 @@ msgstr "" "@result{} some-state\n" #. type: deffn -#: guix-git/doc/guix.texi:9858 +#: guix-git/doc/guix.texi:10172 #, no-wrap msgid "{Scheme Syntax} mlet @var{monad} ((@var{var} @var{mval}) ...) @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9860 +#: guix-git/doc/guix.texi:10174 msgid "@var{body} ..." msgstr "@var{body} ..." #. type: deffnx -#: guix-git/doc/guix.texi:9860 +#: guix-git/doc/guix.texi:10174 #, no-wrap msgid "{Scheme Syntax} mlet* @var{monad} ((@var{var} @var{mval}) ...) @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9872 +#: guix-git/doc/guix.texi:10186 msgid "@var{body} ... Bind the variables @var{var} to the monadic values @var{mval} in @var{body}, which is a sequence of expressions. As with the bind operator, this can be thought of as ``unpacking'' the raw, non-monadic value ``contained'' in @var{mval} and making @var{var} refer to that raw, non-monadic value within the scope of the @var{body}. The form (@var{var} -> @var{val}) binds @var{var} to the ``normal'' value @var{val}, as per @code{let}. The binding operations occur in sequence from left to right. The last expression of @var{body} must be a monadic expression, and its result will become the result of the @code{mlet} or @code{mlet*} when run in the @var{monad}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9875 +#: guix-git/doc/guix.texi:10189 msgid "@code{mlet*} is to @code{mlet} what @code{let*} is to @code{let} (@pxref{Local Bindings,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9877 +#: guix-git/doc/guix.texi:10191 #, no-wrap msgid "{Scheme System} mbegin @var{monad} @var{mexp} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9881 +#: guix-git/doc/guix.texi:10195 msgid "Bind @var{mexp} and the following monadic expressions in sequence, returning the result of the last expression. Every expression in the sequence must be a monadic expression." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9885 +#: guix-git/doc/guix.texi:10199 msgid "This is akin to @code{mlet}, except that the return values of the monadic expressions are ignored. In that sense, it is analogous to @code{begin}, but applied to monadic expressions." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9887 +#: guix-git/doc/guix.texi:10201 #, no-wrap msgid "{Scheme System} mwhen @var{condition} @var{mexp0} @var{mexp*} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9892 +#: guix-git/doc/guix.texi:10206 msgid "When @var{condition} is true, evaluate the sequence of monadic expressions @var{mexp0}..@var{mexp*} as in an @code{mbegin}. When @var{condition} is false, return @code{*unspecified*} in the current monad. Every expression in the sequence must be a monadic expression." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9894 +#: guix-git/doc/guix.texi:10208 #, no-wrap msgid "{Scheme System} munless @var{condition} @var{mexp0} @var{mexp*} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9899 +#: guix-git/doc/guix.texi:10213 msgid "When @var{condition} is false, evaluate the sequence of monadic expressions @var{mexp0}..@var{mexp*} as in an @code{mbegin}. When @var{condition} is true, return @code{*unspecified*} in the current monad. Every expression in the sequence must be a monadic expression." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9901 +#: guix-git/doc/guix.texi:10215 #, no-wrap msgid "state monad" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9905 +#: guix-git/doc/guix.texi:10219 msgid "The @code{(guix monads)} module provides the @dfn{state monad}, which allows an additional value---the state---to be @emph{threaded} through monadic procedure calls." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9906 +#: guix-git/doc/guix.texi:10220 #, no-wrap msgid "{Scheme Variable} %state-monad" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9909 +#: guix-git/doc/guix.texi:10223 msgid "The state monad. Procedures in the state monad can access and change the state that is threaded." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9913 +#: guix-git/doc/guix.texi:10227 msgid "Consider the example below. The @code{square} procedure returns a value in the state monad. It returns the square of its argument, but also increments the current state value:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9920 +#: guix-git/doc/guix.texi:10234 #, no-wrap msgid "" "(define (square x)\n" @@ -19304,7 +19912,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:9924 +#: guix-git/doc/guix.texi:10238 #, no-wrap msgid "" "(run-with-state (sequence %state-monad (map square (iota 3))) 0)\n" @@ -19316,147 +19924,147 @@ msgstr "" "@result{} 3\n" #. type: defvr -#: guix-git/doc/guix.texi:9928 +#: guix-git/doc/guix.texi:10242 msgid "When ``run'' through @code{%state-monad}, we obtain that additional state value, which is the number of @code{square} calls." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9930 +#: guix-git/doc/guix.texi:10244 #, no-wrap msgid "{Monadic Procedure} current-state" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9932 +#: guix-git/doc/guix.texi:10246 msgid "Return the current state as a monadic value." msgstr "Вернуть текущее состояние в виде монадического значения." #. type: deffn -#: guix-git/doc/guix.texi:9934 +#: guix-git/doc/guix.texi:10248 #, no-wrap msgid "{Monadic Procedure} set-current-state @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9937 +#: guix-git/doc/guix.texi:10251 msgid "Set the current state to @var{value} and return the previous state as a monadic value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9939 +#: guix-git/doc/guix.texi:10253 #, no-wrap msgid "{Monadic Procedure} state-push @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9942 +#: guix-git/doc/guix.texi:10256 msgid "Push @var{value} to the current state, which is assumed to be a list, and return the previous state as a monadic value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9944 +#: guix-git/doc/guix.texi:10258 #, no-wrap msgid "{Monadic Procedure} state-pop" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9947 +#: guix-git/doc/guix.texi:10261 msgid "Pop a value from the current state and return it as a monadic value. The state is assumed to be a list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9949 +#: guix-git/doc/guix.texi:10263 #, no-wrap msgid "{Scheme Procedure} run-with-state @var{mval} [@var{state}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9952 +#: guix-git/doc/guix.texi:10266 msgid "Run monadic value @var{mval} starting with @var{state} as the initial state. Return two values: the resulting value, and the resulting state." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9956 +#: guix-git/doc/guix.texi:10270 msgid "The main interface to the store monad, provided by the @code{(guix store)} module, is as follows." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9957 +#: guix-git/doc/guix.texi:10271 #, no-wrap msgid "{Scheme Variable} %store-monad" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9959 +#: guix-git/doc/guix.texi:10273 msgid "The store monad---an alias for @code{%state-monad}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9963 +#: guix-git/doc/guix.texi:10277 msgid "Values in the store monad encapsulate accesses to the store. When its effect is needed, a value of the store monad must be ``evaluated'' by passing it to the @code{run-with-store} procedure (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9965 +#: guix-git/doc/guix.texi:10279 #, no-wrap msgid "{Scheme Procedure} run-with-store @var{store} @var{mval} [#:guile-for-build] [#:system (%current-system)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9968 +#: guix-git/doc/guix.texi:10282 msgid "Run @var{mval}, a monadic value in the store monad, in @var{store}, an open store connection." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9970 +#: guix-git/doc/guix.texi:10284 #, no-wrap msgid "{Monadic Procedure} text-file @var{name} @var{text} [@var{references}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9974 +#: guix-git/doc/guix.texi:10288 msgid "Return as a monadic value the absolute file name in the store of the file containing @var{text}, a string. @var{references} is a list of store items that the resulting text file refers to; it defaults to the empty list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9976 +#: guix-git/doc/guix.texi:10290 #, no-wrap msgid "{Monadic Procedure} binary-file @var{name} @var{data} [@var{references}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9980 +#: guix-git/doc/guix.texi:10294 msgid "Return as a monadic value the absolute file name in the store of the file containing @var{data}, a bytevector. @var{references} is a list of store items that the resulting binary file refers to; it defaults to the empty list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9982 +#: guix-git/doc/guix.texi:10296 #, no-wrap msgid "{Monadic Procedure} interned-file @var{file} [@var{name}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9987 +#: guix-git/doc/guix.texi:10301 msgid "[#:recursive? #t] [#:select? (const #t)] Return the name of @var{file} once interned in the store. Use @var{name} as its store name, or the basename of @var{file} if @var{name} is omitted." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9991 guix-git/doc/guix.texi:10414 +#: guix-git/doc/guix.texi:10305 guix-git/doc/guix.texi:10728 msgid "When @var{recursive?} is true, the contents of @var{file} are added recursively; if @var{file} designates a flat file and @var{recursive?} is true, its contents are added, and its permission bits are kept." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9996 guix-git/doc/guix.texi:10419 +#: guix-git/doc/guix.texi:10310 guix-git/doc/guix.texi:10733 msgid "When @var{recursive?} is true, call @code{(@var{select?} @var{file} @var{stat})} for each directory entry, where @var{file} is the entry's absolute file name and @var{stat} is the result of @code{lstat}; exclude entries for which @var{select?} does not return true." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9998 +#: guix-git/doc/guix.texi:10312 msgid "The example below adds a file to the store, under two different names:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10004 +#: guix-git/doc/guix.texi:10318 #, no-wrap msgid "" "(run-with-store (open-connection)\n" @@ -19472,120 +20080,120 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:10006 +#: guix-git/doc/guix.texi:10320 #, no-wrap msgid "@result{} (\"/gnu/store/rwm@dots{}-README\" \"/gnu/store/44i@dots{}-LEGU-MIN\")\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10012 +#: guix-git/doc/guix.texi:10326 msgid "The @code{(guix packages)} module exports the following package-related monadic procedures:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10013 +#: guix-git/doc/guix.texi:10327 #, no-wrap msgid "{Monadic Procedure} package-file @var{package} [@var{file}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10021 +#: guix-git/doc/guix.texi:10335 msgid "[#:system (%current-system)] [#:target #f] @ [#:output \"out\"] Return as a monadic value in the absolute file name of @var{file} within the @var{output} directory of @var{package}. When @var{file} is omitted, return the name of the @var{output} directory of @var{package}. When @var{target} is true, use it as a cross-compilation target triplet." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10025 +#: guix-git/doc/guix.texi:10339 msgid "Note that this procedure does @emph{not} build @var{package}. Thus, the result might or might not designate an existing file. We recommend not using this procedure unless you know what you are doing." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10027 +#: guix-git/doc/guix.texi:10341 #, no-wrap msgid "{Monadic Procedure} package->derivation @var{package} [@var{system}]" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:10028 +#: guix-git/doc/guix.texi:10342 #, no-wrap msgid "{Monadic Procedure} package->cross-derivation @var{package} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10032 +#: guix-git/doc/guix.texi:10346 msgid "@var{target} [@var{system}] Monadic version of @code{package-derivation} and @code{package-cross-derivation} (@pxref{Defining Packages})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10038 +#: guix-git/doc/guix.texi:10352 #, no-wrap msgid "G-expression" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10039 +#: guix-git/doc/guix.texi:10353 #, no-wrap msgid "build code quoting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10045 +#: guix-git/doc/guix.texi:10359 msgid "So we have ``derivations'', which represent a sequence of build actions to be performed to produce an item in the store (@pxref{Derivations}). These build actions are performed when asking the daemon to actually build the derivations; they are run by the daemon in a container (@pxref{Invoking guix-daemon})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10048 +#: guix-git/doc/guix.texi:10362 #, no-wrap msgid "strata of code" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10060 +#: guix-git/doc/guix.texi:10374 msgid "It should come as no surprise that we like to write these build actions in Scheme. When we do that, we end up with two @dfn{strata} of Scheme code@footnote{The term @dfn{stratum} in this context was coined by Manuel Serrano et al.@: in the context of their work on Hop. Oleg Kiselyov, who has written insightful @url{http://okmij.org/ftp/meta-programming/#meta-scheme, essays and code on this topic}, refers to this kind of code generation as @dfn{staging}.}: the ``host code''---code that defines packages, talks to the daemon, etc.---and the ``build code''---code that actually performs build actions, such as making directories, invoking @command{make}, and so on (@pxref{Build Phases})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10067 +#: guix-git/doc/guix.texi:10381 msgid "To describe a derivation and its build actions, one typically needs to embed build code inside host code. It boils down to manipulating build code as data, and the homoiconicity of Scheme---code has a direct representation as data---comes in handy for that. But we need more than the normal @code{quasiquote} mechanism in Scheme to construct build expressions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10076 +#: guix-git/doc/guix.texi:10390 msgid "The @code{(guix gexp)} module implements @dfn{G-expressions}, a form of S-expressions adapted to build expressions. G-expressions, or @dfn{gexps}, consist essentially of three syntactic forms: @code{gexp}, @code{ungexp}, and @code{ungexp-splicing} (or simply: @code{#~}, @code{#$}, and @code{#$@@}), which are comparable to @code{quasiquote}, @code{unquote}, and @code{unquote-splicing}, respectively (@pxref{Expression Syntax, @code{quasiquote},, guile, GNU Guile Reference Manual}). However, there are major differences:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:10081 +#: guix-git/doc/guix.texi:10395 msgid "Gexps are meant to be written to a file and run or manipulated by other processes." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:10086 +#: guix-git/doc/guix.texi:10400 msgid "When a high-level object such as a package or derivation is unquoted inside a gexp, the result is as if its output file name had been introduced." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:10091 +#: guix-git/doc/guix.texi:10405 msgid "Gexps carry information about the packages or derivations they refer to, and these dependencies are automatically added as inputs to the build processes that use them." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10093 guix-git/doc/guix.texi:10650 +#: guix-git/doc/guix.texi:10407 guix-git/doc/guix.texi:10964 #, no-wrap msgid "lowering, of high-level objects in gexps" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10103 +#: guix-git/doc/guix.texi:10417 msgid "This mechanism is not limited to package and derivation objects: @dfn{compilers} able to ``lower'' other high-level objects to derivations or files in the store can be defined, such that these objects can also be inserted into gexps. For example, a useful type of high-level objects that can be inserted in a gexp is ``file-like objects'', which make it easy to add files to the store and to refer to them in derivations and such (see @code{local-file} and @code{plain-file} below)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10105 +#: guix-git/doc/guix.texi:10419 msgid "To illustrate the idea, here is an example of a gexp:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10113 +#: guix-git/doc/guix.texi:10427 #, no-wrap msgid "" "(define build-exp\n" @@ -19603,34 +20211,34 @@ msgstr "" " \"list-files\")))\n" #. type: Plain text -#: guix-git/doc/guix.texi:10118 +#: guix-git/doc/guix.texi:10432 msgid "This gexp can be passed to @code{gexp->derivation}; we obtain a derivation that builds a directory containing exactly one symlink to @file{/gnu/store/@dots{}-coreutils-8.22/bin/ls}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10121 +#: guix-git/doc/guix.texi:10435 #, no-wrap msgid "(gexp->derivation \"the-thing\" build-exp)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10129 +#: guix-git/doc/guix.texi:10443 msgid "As one would expect, the @code{\"/gnu/store/@dots{}-coreutils-8.22\"} string is substituted to the reference to the @var{coreutils} package in the actual build code, and @var{coreutils} is automatically made an input to the derivation. Likewise, @code{#$output} (equivalent to @code{(ungexp output)}) is replaced by a string containing the directory name of the output of the derivation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10130 +#: guix-git/doc/guix.texi:10444 #, no-wrap msgid "cross compilation" msgstr "кросс-компиляция" #. type: Plain text -#: guix-git/doc/guix.texi:10136 +#: guix-git/doc/guix.texi:10450 msgid "In a cross-compilation context, it is useful to distinguish between references to the @emph{native} build of a package---that can run on the host---versus references to cross builds of a package. To that end, the @code{#+} plays the same role as @code{#$}, but is a reference to a native package build:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10147 +#: guix-git/doc/guix.texi:10461 #, no-wrap msgid "" "(gexp->derivation \"vi\"\n" @@ -19654,29 +20262,29 @@ msgstr "" " #:target \"aarch64-linux-gnu\")\n" #. type: Plain text -#: guix-git/doc/guix.texi:10153 +#: guix-git/doc/guix.texi:10467 msgid "In the example above, the native build of @var{coreutils} is used, so that @command{ln} can actually run on the host; but then the cross-compiled build of @var{emacs} is referenced." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10154 +#: guix-git/doc/guix.texi:10468 #, no-wrap msgid "imported modules, for gexps" msgstr "импортированные модули, для gexps" #. type: findex -#: guix-git/doc/guix.texi:10155 +#: guix-git/doc/guix.texi:10469 #, no-wrap msgid "with-imported-modules" msgstr "with-imported-modules" #. type: Plain text -#: guix-git/doc/guix.texi:10160 +#: guix-git/doc/guix.texi:10474 msgid "Another gexp feature is @dfn{imported modules}: sometimes you want to be able to use certain Guile modules from the ``host environment'' in the gexp, so those modules should be imported in the ``build environment''. The @code{with-imported-modules} form allows you to express that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10171 +#: guix-git/doc/guix.texi:10485 #, no-wrap msgid "" "(let ((build (with-imported-modules '((guix build utils))\n" @@ -19700,29 +20308,29 @@ msgstr "" " #t)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:10177 +#: guix-git/doc/guix.texi:10491 msgid "In this example, the @code{(guix build utils)} module is automatically pulled into the isolated build environment of our gexp, such that @code{(use-modules (guix build utils))} works as expected." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10178 +#: guix-git/doc/guix.texi:10492 #, no-wrap msgid "module closure" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:10179 +#: guix-git/doc/guix.texi:10493 #, no-wrap msgid "source-module-closure" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10186 +#: guix-git/doc/guix.texi:10500 msgid "Usually you want the @emph{closure} of the module to be imported---i.e., the module itself and all the modules it depends on---rather than just the module; failing to do that, attempts to use the module will fail because of missing dependent modules. The @code{source-module-closure} procedure computes the closure of a module by looking at its source file headers, which comes in handy in this case:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10189 +#: guix-git/doc/guix.texi:10503 #, no-wrap msgid "" "(use-modules (guix modules)) ;for 'source-module-closure'\n" @@ -19732,7 +20340,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:10198 +#: guix-git/doc/guix.texi:10512 #, fuzzy, no-wrap #| msgid "" #| "(with-imported-modules (source-module-closure\n" @@ -19763,24 +20371,24 @@ msgstr "" " @dots{})))\n" #. type: cindex -#: guix-git/doc/guix.texi:10200 +#: guix-git/doc/guix.texi:10514 #, no-wrap msgid "extensions, for gexps" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:10201 +#: guix-git/doc/guix.texi:10515 #, no-wrap msgid "with-extensions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10206 +#: guix-git/doc/guix.texi:10520 msgid "In the same vein, sometimes you want to import not just pure-Scheme modules, but also ``extensions'' such as Guile bindings to C libraries or other ``full-blown'' packages. Say you need the @code{guile-json} package available on the build side, here's how you would do it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10209 +#: guix-git/doc/guix.texi:10523 #, no-wrap msgid "" "(use-modules (gnu packages guile)) ;for 'guile-json'\n" @@ -19790,7 +20398,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:10215 +#: guix-git/doc/guix.texi:10529 #, no-wrap msgid "" "(with-extensions (list guile-json)\n" @@ -19806,184 +20414,184 @@ msgstr "" " @dots{})))\n" #. type: Plain text -#: guix-git/doc/guix.texi:10218 +#: guix-git/doc/guix.texi:10532 msgid "The syntactic form to construct gexps is summarized below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10219 +#: guix-git/doc/guix.texi:10533 #, no-wrap msgid "{Scheme Syntax} #~@var{exp}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:10220 +#: guix-git/doc/guix.texi:10534 #, no-wrap msgid "{Scheme Syntax} (gexp @var{exp})" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10223 +#: guix-git/doc/guix.texi:10537 msgid "Return a G-expression containing @var{exp}. @var{exp} may contain one or more of the following forms:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10225 +#: guix-git/doc/guix.texi:10539 #, no-wrap msgid "#$@var{obj}" msgstr "#$@var{obj}" #. type: itemx -#: guix-git/doc/guix.texi:10226 +#: guix-git/doc/guix.texi:10540 #, no-wrap msgid "(ungexp @var{obj})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10231 +#: guix-git/doc/guix.texi:10545 msgid "Introduce a reference to @var{obj}. @var{obj} may have one of the supported types, for example a package or a derivation, in which case the @code{ungexp} form is replaced by its output file name---e.g., @code{\"/gnu/store/@dots{}-coreutils-8.22}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10234 +#: guix-git/doc/guix.texi:10548 msgid "If @var{obj} is a list, it is traversed and references to supported objects are substituted similarly." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10237 +#: guix-git/doc/guix.texi:10551 msgid "If @var{obj} is another gexp, its contents are inserted and its dependencies are added to those of the containing gexp." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10239 +#: guix-git/doc/guix.texi:10553 msgid "If @var{obj} is another kind of object, it is inserted as is." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10240 +#: guix-git/doc/guix.texi:10554 #, no-wrap msgid "#$@var{obj}:@var{output}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10241 +#: guix-git/doc/guix.texi:10555 #, no-wrap msgid "(ungexp @var{obj} @var{output})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10245 +#: guix-git/doc/guix.texi:10559 msgid "This is like the form above, but referring explicitly to the @var{output} of @var{obj}---this is useful when @var{obj} produces multiple outputs (@pxref{Packages with Multiple Outputs})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10246 +#: guix-git/doc/guix.texi:10560 #, no-wrap msgid "#+@var{obj}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10247 +#: guix-git/doc/guix.texi:10561 #, no-wrap msgid "#+@var{obj}:output" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10248 +#: guix-git/doc/guix.texi:10562 #, no-wrap msgid "(ungexp-native @var{obj})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10249 +#: guix-git/doc/guix.texi:10563 #, no-wrap msgid "(ungexp-native @var{obj} @var{output})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10252 +#: guix-git/doc/guix.texi:10566 msgid "Same as @code{ungexp}, but produces a reference to the @emph{native} build of @var{obj} when used in a cross compilation context." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10253 +#: guix-git/doc/guix.texi:10567 #, no-wrap msgid "#$output[:@var{output}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10254 +#: guix-git/doc/guix.texi:10568 #, no-wrap msgid "(ungexp output [@var{output}])" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10257 +#: guix-git/doc/guix.texi:10571 msgid "Insert a reference to derivation output @var{output}, or to the main output when @var{output} is omitted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10259 +#: guix-git/doc/guix.texi:10573 msgid "This only makes sense for gexps passed to @code{gexp->derivation}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10260 +#: guix-git/doc/guix.texi:10574 #, no-wrap msgid "#$@@@var{lst}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10261 +#: guix-git/doc/guix.texi:10575 #, no-wrap msgid "(ungexp-splicing @var{lst})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10264 +#: guix-git/doc/guix.texi:10578 msgid "Like the above, but splices the contents of @var{lst} inside the containing list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10265 +#: guix-git/doc/guix.texi:10579 #, no-wrap msgid "#+@@@var{lst}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10266 +#: guix-git/doc/guix.texi:10580 #, no-wrap msgid "(ungexp-native-splicing @var{lst})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10269 +#: guix-git/doc/guix.texi:10583 msgid "Like the above, but refers to native builds of the objects listed in @var{lst}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10274 +#: guix-git/doc/guix.texi:10588 msgid "G-expressions created by @code{gexp} or @code{#~} are run-time objects of the @code{gexp?} type (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10276 +#: guix-git/doc/guix.texi:10590 #, no-wrap msgid "{Scheme Syntax} with-imported-modules @var{modules} @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10279 +#: guix-git/doc/guix.texi:10593 msgid "Mark the gexps defined in @var{body}@dots{} as requiring @var{modules} in their execution environment." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10283 +#: guix-git/doc/guix.texi:10597 msgid "Each item in @var{modules} can be the name of a module, such as @code{(guix build utils)}, or it can be a module name, followed by an arrow, followed by a file-like object:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10289 +#: guix-git/doc/guix.texi:10603 #, no-wrap msgid "" "`((guix build utils)\n" @@ -19997,80 +20605,80 @@ msgstr "" " #~(define-module @dots{}))))\n" #. type: deffn -#: guix-git/doc/guix.texi:10294 +#: guix-git/doc/guix.texi:10608 msgid "In the example above, the first two modules are taken from the search path, and the last one is created from the given file-like object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10298 +#: guix-git/doc/guix.texi:10612 msgid "This form has @emph{lexical} scope: it has an effect on the gexps directly defined in @var{body}@dots{}, but not on those defined, say, in procedures called from @var{body}@dots{}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10300 +#: guix-git/doc/guix.texi:10614 #, no-wrap msgid "{Scheme Syntax} with-extensions @var{extensions} @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10305 +#: guix-git/doc/guix.texi:10619 msgid "Mark the gexps defined in @var{body}@dots{} as requiring @var{extensions} in their build and execution environment. @var{extensions} is typically a list of package objects such as those defined in the @code{(gnu packages guile)} module." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10310 +#: guix-git/doc/guix.texi:10624 msgid "Concretely, the packages listed in @var{extensions} are added to the load path while compiling imported modules in @var{body}@dots{}; they are also added to the load path of the gexp returned by @var{body}@dots{}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10312 +#: guix-git/doc/guix.texi:10626 #, no-wrap msgid "{Scheme Procedure} gexp? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10314 +#: guix-git/doc/guix.texi:10628 msgid "Return @code{#t} if @var{obj} is a G-expression." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10320 +#: guix-git/doc/guix.texi:10634 msgid "G-expressions are meant to be written to disk, either as code building some derivation, or as plain files in the store. The monadic procedures below allow you to do that (@pxref{The Store Monad}, for more information about monads)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10321 +#: guix-git/doc/guix.texi:10635 #, no-wrap msgid "{Monadic Procedure} gexp->derivation @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10339 +#: guix-git/doc/guix.texi:10653 msgid "[#:system (%current-system)] [#:target #f] [#:graft? #t] @ [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:env-vars '()] [#:modules '()] @ [#:module-path @code{%load-path}] @ [#:effective-version \"2.2\"] @ [#:references-graphs #f] [#:allowed-references #f] @ [#:disallowed-references #f] @ [#:leaked-env-vars #f] @ [#:script-name (string-append @var{name} \"-builder\")] @ [#:deprecation-warnings #f] @ [#:local-build? #f] [#:substitutable? #t] @ [#:properties '()] [#:guile-for-build #f] Return a derivation @var{name} that runs @var{exp} (a gexp) with @var{guile-for-build} (a derivation) on @var{system}; @var{exp} is stored in a file called @var{script-name}. When @var{target} is true, it is used as the cross-compilation target triplet for packages referred to by @var{exp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10347 +#: guix-git/doc/guix.texi:10661 msgid "@var{modules} is deprecated in favor of @code{with-imported-modules}. Its meaning is to make @var{modules} available in the evaluation context of @var{exp}; @var{modules} is a list of names of Guile modules searched in @var{module-path} to be copied in the store, compiled, and made available in the load path during the execution of @var{exp}---e.g., @code{((guix build utils) (guix build gnu-build-system))}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10350 +#: guix-git/doc/guix.texi:10664 msgid "@var{effective-version} determines the string to use when adding extensions of @var{exp} (see @code{with-extensions}) to the search path---e.g., @code{\"2.2\"}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10353 +#: guix-git/doc/guix.texi:10667 msgid "@var{graft?} determines whether packages referred to by @var{exp} should be grafted when applicable." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10356 +#: guix-git/doc/guix.texi:10670 msgid "When @var{references-graphs} is true, it must be a list of tuples of one of the following forms:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10363 +#: guix-git/doc/guix.texi:10677 #, no-wrap msgid "" "(@var{file-name} @var{package})\n" @@ -20086,38 +20694,38 @@ msgstr "" "(@var{file-name} @var{store-item})\n" #. type: deffn -#: guix-git/doc/guix.texi:10369 +#: guix-git/doc/guix.texi:10683 msgid "The right-hand-side of each element of @var{references-graphs} is automatically made an input of the build process of @var{exp}. In the build environment, each @var{file-name} contains the reference graph of the corresponding item, in a simple text format." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10375 +#: guix-git/doc/guix.texi:10689 msgid "@var{allowed-references} must be either @code{#f} or a list of output names and packages. In the latter case, the list denotes store items that the result is allowed to refer to. Any reference to another store item will lead to a build error. Similarly for @var{disallowed-references}, which can list items that must not be referenced by the outputs." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10378 +#: guix-git/doc/guix.texi:10692 msgid "@var{deprecation-warnings} determines whether to show deprecation warnings while compiling modules. It can be @code{#f}, @code{#t}, or @code{'detailed}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10380 +#: guix-git/doc/guix.texi:10694 msgid "The other arguments are as for @code{derivation} (@pxref{Derivations})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10382 +#: guix-git/doc/guix.texi:10696 #, no-wrap msgid "file-like objects" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10387 +#: guix-git/doc/guix.texi:10701 msgid "The @code{local-file}, @code{plain-file}, @code{computed-file}, @code{program-file}, and @code{scheme-file} procedures below return @dfn{file-like objects}. That is, when unquoted in a G-expression, these objects lead to a file in the store. Consider this G-expression:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10391 +#: guix-git/doc/guix.texi:10705 #, no-wrap msgid "" "#~(system* #$(file-append glibc \"/sbin/nscd\") \"-f\"\n" @@ -20125,76 +20733,76 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10400 +#: guix-git/doc/guix.texi:10714 msgid "The effect here is to ``intern'' @file{/tmp/my-nscd.conf} by copying it to the store. Once expanded, for instance @i{via} @code{gexp->derivation}, the G-expression refers to that copy under @file{/gnu/store}; thus, modifying or removing the file in @file{/tmp} does not have any effect on what the G-expression does. @code{plain-file} can be used similarly; it differs in that the file content is directly passed as a string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10401 +#: guix-git/doc/guix.texi:10715 #, no-wrap msgid "{Scheme Procedure} local-file @var{file} [@var{name}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10410 +#: guix-git/doc/guix.texi:10724 msgid "[#:recursive? #f] [#:select? (const #t)] Return an object representing local file @var{file} to add to the store; this object can be used in a gexp. If @var{file} is a literal string denoting a relative file name, it is looked up relative to the source file where it appears; if @var{file} is not a literal string, it is looked up relative to the current working directory at run time. @var{file} will be added to the store under @var{name}--by default the base name of @var{file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10422 +#: guix-git/doc/guix.texi:10736 msgid "This is the declarative counterpart of the @code{interned-file} monadic procedure (@pxref{The Store Monad, @code{interned-file}})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10424 +#: guix-git/doc/guix.texi:10738 #, no-wrap msgid "{Scheme Procedure} plain-file @var{name} @var{content}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10427 +#: guix-git/doc/guix.texi:10741 msgid "Return an object representing a text file called @var{name} with the given @var{content} (a string or a bytevector) to be added to the store." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10429 +#: guix-git/doc/guix.texi:10743 msgid "This is the declarative counterpart of @code{text-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10431 +#: guix-git/doc/guix.texi:10745 #, no-wrap msgid "{Scheme Procedure} computed-file @var{name} @var{gexp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10438 +#: guix-git/doc/guix.texi:10752 msgid "[#:local-build? #t] [#:options '()] Return an object representing the store item @var{name}, a file or directory computed by @var{gexp}. When @var{local-build?} is true (the default), the derivation is built locally. @var{options} is a list of additional arguments to pass to @code{gexp->derivation}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10440 +#: guix-git/doc/guix.texi:10754 msgid "This is the declarative counterpart of @code{gexp->derivation}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10442 +#: guix-git/doc/guix.texi:10756 #, no-wrap msgid "{Monadic Procedure} gexp->script @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10448 +#: guix-git/doc/guix.texi:10762 msgid "[#:guile (default-guile)] [#:module-path %load-path] @ [#:system (%current-system)] [#:target #f] Return an executable script @var{name} that runs @var{exp} using @var{guile}, with @var{exp}'s imported modules in its search path. Look up @var{exp}'s modules in @var{module-path}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10451 +#: guix-git/doc/guix.texi:10765 msgid "The example below builds a script that simply invokes the @command{ls} command:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10454 +#: guix-git/doc/guix.texi:10768 #, no-wrap msgid "" "(use-modules (guix gexp) (gnu packages base))\n" @@ -20202,7 +20810,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10458 +#: guix-git/doc/guix.texi:10772 #, no-wrap msgid "" "(gexp->script \"list-files\"\n" @@ -20211,12 +20819,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10463 +#: guix-git/doc/guix.texi:10777 msgid "When ``running'' it through the store (@pxref{The Store Monad, @code{run-with-store}}), we obtain a derivation that produces an executable file @file{/gnu/store/@dots{}-list-files} along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10468 +#: guix-git/doc/guix.texi:10782 #, no-wrap msgid "" "#!/gnu/store/@dots{}-guile-2.0.11/bin/guile -ds\n" @@ -20225,76 +20833,76 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10471 +#: guix-git/doc/guix.texi:10785 #, no-wrap msgid "{Scheme Procedure} program-file @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10476 +#: guix-git/doc/guix.texi:10790 msgid "[#:guile #f] [#:module-path %load-path] Return an object representing the executable store item @var{name} that runs @var{gexp}. @var{guile} is the Guile package used to execute that script. Imported modules of @var{gexp} are looked up in @var{module-path}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10478 +#: guix-git/doc/guix.texi:10792 msgid "This is the declarative counterpart of @code{gexp->script}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10480 +#: guix-git/doc/guix.texi:10794 #, no-wrap msgid "{Monadic Procedure} gexp->file @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10487 +#: guix-git/doc/guix.texi:10801 msgid "[#:set-load-path? #t] [#:module-path %load-path] @ [#:splice? #f] @ [#:guile (default-guile)] Return a derivation that builds a file @var{name} containing @var{exp}. When @var{splice?} is true, @var{exp} is considered to be a list of expressions that will be spliced in the resulting file." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10492 +#: guix-git/doc/guix.texi:10806 msgid "When @var{set-load-path?} is true, emit code in the resulting file to set @code{%load-path} and @code{%load-compiled-path} to honor @var{exp}'s imported modules. Look up @var{exp}'s modules in @var{module-path}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10495 +#: guix-git/doc/guix.texi:10809 msgid "The resulting file holds references to all the dependencies of @var{exp} or a subset thereof." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10497 +#: guix-git/doc/guix.texi:10811 #, no-wrap msgid "{Scheme Procedure} scheme-file @var{name} @var{exp} @" msgstr "{Scheme Procedure} scheme-file @var{name} @var{exp} @" #. type: deffn -#: guix-git/doc/guix.texi:10501 +#: guix-git/doc/guix.texi:10815 msgid "[#:splice? #f] [#:set-load-path? #t] Return an object representing the Scheme file @var{name} that contains @var{exp}." msgstr "[#:splice? #f] [#:set-load-path? #t] Возвращает объект, представляющий Scheme файл file @var{name} содержащий @var{exp}." #. type: deffn -#: guix-git/doc/guix.texi:10503 +#: guix-git/doc/guix.texi:10817 msgid "This is the declarative counterpart of @code{gexp->file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10505 +#: guix-git/doc/guix.texi:10819 #, no-wrap msgid "{Monadic Procedure} text-file* @var{name} @var{text} @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10511 +#: guix-git/doc/guix.texi:10825 msgid "Return as a monadic value a derivation that builds a text file containing all of @var{text}. @var{text} may list, in addition to strings, objects of any type that can be used in a gexp: packages, derivations, local file objects, etc. The resulting store file holds references to all these." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10516 +#: guix-git/doc/guix.texi:10830 msgid "This variant should be preferred over @code{text-file} anytime the file to create will reference items from the store. This is typically the case when building a configuration file that embeds store file names, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10524 +#: guix-git/doc/guix.texi:10838 #, no-wrap msgid "" "(define (profile.sh)\n" @@ -20312,23 +20920,23 @@ msgstr "" " grep \"/bin:\" sed \"/bin\\n\"))\n" #. type: deffn -#: guix-git/doc/guix.texi:10529 +#: guix-git/doc/guix.texi:10843 msgid "In this example, the resulting @file{/gnu/store/@dots{}-profile.sh} file will reference @var{coreutils}, @var{grep}, and @var{sed}, thereby preventing them from being garbage-collected during its lifetime." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10531 +#: guix-git/doc/guix.texi:10845 #, no-wrap msgid "{Scheme Procedure} mixed-text-file @var{name} @var{text} @dots{}" msgstr "{Scheme Procedure} mixed-text-file @var{name} @var{text} @dots{}" #. type: deffn -#: guix-git/doc/guix.texi:10535 +#: guix-git/doc/guix.texi:10849 msgid "Return an object representing store file @var{name} containing @var{text}. @var{text} is a sequence of strings and file-like objects, as in:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10539 +#: guix-git/doc/guix.texi:10853 #, no-wrap msgid "" "(mixed-text-file \"profile\"\n" @@ -20338,23 +20946,23 @@ msgstr "" " \"export PATH=\" coreutils \"/bin:\" grep \"/bin\")\n" #. type: deffn -#: guix-git/doc/guix.texi:10542 +#: guix-git/doc/guix.texi:10856 msgid "This is the declarative counterpart of @code{text-file*}." msgstr "Это декларативный аналог @code{text-file*}." #. type: deffn -#: guix-git/doc/guix.texi:10544 +#: guix-git/doc/guix.texi:10858 #, no-wrap msgid "{Scheme Procedure} file-union @var{name} @var{files}" msgstr "{Scheme Procedure} file-union @var{name} @var{files}" #. type: deffn -#: guix-git/doc/guix.texi:10549 +#: guix-git/doc/guix.texi:10863 msgid "Return a @code{} that builds a directory containing all of @var{files}. Each item in @var{files} must be a two-element list where the first element is the file name to use in the new directory, and the second element is a gexp denoting the target file. Here's an example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10556 +#: guix-git/doc/guix.texi:10870 #, no-wrap msgid "" "(file-union \"etc\"\n" @@ -20370,50 +20978,50 @@ msgstr "" " \"alias ls='ls --color=auto'\"))))\n" #. type: deffn -#: guix-git/doc/guix.texi:10559 +#: guix-git/doc/guix.texi:10873 msgid "This yields an @code{etc} directory containing these two files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10561 +#: guix-git/doc/guix.texi:10875 #, no-wrap msgid "{Scheme Procedure} directory-union @var{name} @var{things}" msgstr "{Scheme Procedure} directory-union @var{name} @var{things}" #. type: deffn -#: guix-git/doc/guix.texi:10564 +#: guix-git/doc/guix.texi:10878 msgid "Return a directory that is the union of @var{things}, where @var{things} is a list of file-like objects denoting directories. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10567 +#: guix-git/doc/guix.texi:10881 #, no-wrap msgid "(directory-union \"guile+emacs\" (list guile emacs))\n" msgstr "(directory-union \"guile+emacs\" (list guile emacs))\n" #. type: deffn -#: guix-git/doc/guix.texi:10570 +#: guix-git/doc/guix.texi:10884 msgid "yields a directory that is the union of the @code{guile} and @code{emacs} packages." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10572 +#: guix-git/doc/guix.texi:10886 #, no-wrap msgid "{Scheme Procedure} file-append @var{obj} @var{suffix} @dots{}" msgstr "{Scheme Procedure} file-append @var{obj} @var{suffix} @dots{}" #. type: deffn -#: guix-git/doc/guix.texi:10576 +#: guix-git/doc/guix.texi:10890 msgid "Return a file-like object that expands to the concatenation of @var{obj} and @var{suffix}, where @var{obj} is a lowerable object and each @var{suffix} is a string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10578 +#: guix-git/doc/guix.texi:10892 msgid "As an example, consider this gexp:" msgstr "В качестве примера рассмотрим этот gexp:" #. type: lisp -#: guix-git/doc/guix.texi:10583 +#: guix-git/doc/guix.texi:10897 #, no-wrap msgid "" "(gexp->script \"run-uname\"\n" @@ -20425,12 +21033,12 @@ msgstr "" " \"/bin/uname\")))\n" #. type: deffn -#: guix-git/doc/guix.texi:10586 +#: guix-git/doc/guix.texi:10900 msgid "The same effect could be achieved with:" msgstr "Такого же эффекта можно добиться с помощью:" #. type: lisp -#: guix-git/doc/guix.texi:10591 +#: guix-git/doc/guix.texi:10905 #, no-wrap msgid "" "(gexp->script \"run-uname\"\n" @@ -20442,39 +21050,39 @@ msgstr "" " \"/bin/uname\")))\n" #. type: deffn -#: guix-git/doc/guix.texi:10597 +#: guix-git/doc/guix.texi:10911 msgid "There is one difference though: in the @code{file-append} case, the resulting script contains the absolute file name as a string, whereas in the second case, the resulting script contains a @code{(string-append @dots{})} expression to construct the file name @emph{at run time}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10599 +#: guix-git/doc/guix.texi:10913 #, no-wrap msgid "{Scheme Syntax} let-system @var{system} @var{body}@dots{}" msgstr "{Scheme Syntax} let-system @var{system} @var{body}@dots{}" #. type: deffnx -#: guix-git/doc/guix.texi:10600 +#: guix-git/doc/guix.texi:10914 #, no-wrap msgid "{Scheme Syntax} let-system (@var{system} @var{target}) @var{body}@dots{}" msgstr "{Scheme Syntax} let-system (@var{system} @var{target}) @var{body}@dots{}" #. type: deffn -#: guix-git/doc/guix.texi:10603 +#: guix-git/doc/guix.texi:10917 msgid "Bind @var{system} to the currently targeted system---e.g., @code{\"x86_64-linux\"}---within @var{body}." msgstr "Привязать @var{system} к текущей целевой системе---например, @code{\\\"x86_64-linux\\\"}---в @var{body}." #. type: deffn -#: guix-git/doc/guix.texi:10608 +#: guix-git/doc/guix.texi:10922 msgid "In the second case, additionally bind @var{target} to the current cross-compilation target---a GNU triplet such as @code{\"arm-linux-gnueabihf\"}---or @code{#f} if we are not cross-compiling." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10611 +#: guix-git/doc/guix.texi:10925 msgid "@code{let-system} is useful in the occasional case where the object spliced into the gexp depends on the target system, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10622 +#: guix-git/doc/guix.texi:10936 #, no-wrap msgid "" "#~(system*\n" @@ -20498,23 +21106,23 @@ msgstr "" " \"-net\" \"user\" #$image)\n" #. type: deffn -#: guix-git/doc/guix.texi:10625 +#: guix-git/doc/guix.texi:10939 #, no-wrap msgid "{Scheme Syntax} with-parameters ((@var{parameter} @var{value}) @dots{}) @var{exp}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10631 +#: guix-git/doc/guix.texi:10945 msgid "This macro is similar to the @code{parameterize} form for dynamically-bound @dfn{parameters} (@pxref{Parameters,,, guile, GNU Guile Reference Manual}). The key difference is that it takes effect when the file-like object returned by @var{exp} is lowered to a derivation or store item." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10634 +#: guix-git/doc/guix.texi:10948 msgid "A typical use of @code{with-parameters} is to force the system in effect for a given object:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10638 +#: guix-git/doc/guix.texi:10952 #, no-wrap msgid "" "(with-parameters ((%current-system \"i686-linux\"))\n" @@ -20524,95 +21132,95 @@ msgstr "" " coreutils)\n" #. type: deffn -#: guix-git/doc/guix.texi:10642 +#: guix-git/doc/guix.texi:10956 msgid "The example above returns an object that corresponds to the i686 build of Coreutils, regardless of the current value of @code{%current-system}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10649 +#: guix-git/doc/guix.texi:10963 msgid "Of course, in addition to gexps embedded in ``host'' code, there are also modules containing build tools. To make it clear that they are meant to be used in the build stratum, these modules are kept in the @code{(guix build @dots{})} name space." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10655 +#: guix-git/doc/guix.texi:10969 msgid "Internally, high-level objects are @dfn{lowered}, using their compiler, to either derivations or store items. For instance, lowering a package yields a derivation, and lowering a @code{plain-file} yields a store item. This is achieved using the @code{lower-object} monadic procedure." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10656 +#: guix-git/doc/guix.texi:10970 #, no-wrap msgid "{Monadic Procedure} lower-object @var{obj} [@var{system}] @" msgstr "{Monadic Procedure} lower-object @var{obj} [@var{system}] @" #. type: deffn -#: guix-git/doc/guix.texi:10662 +#: guix-git/doc/guix.texi:10976 msgid "[#:target #f] Return as a value in @code{%store-monad} the derivation or store item corresponding to @var{obj} for @var{system}, cross-compiling for @var{target} if @var{target} is true. @var{obj} must be an object that has an associated gexp compiler, such as a @code{}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10664 +#: guix-git/doc/guix.texi:10978 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} file-name-predicate @var{regexp}" msgid "{Procedure} gexp->approximate-sexp @var{gexp}" msgstr "{Процедура Scheme} inferior-package? @var{obj}" #. type: deffn -#: guix-git/doc/guix.texi:10672 +#: guix-git/doc/guix.texi:10986 msgid "Sometimes, it may be useful to convert a G-exp into a S-exp. For example, some linters (@pxref{Invoking guix lint}) peek into the build phases of a package to detect potential problems. This conversion can be achieved with this procedure. However, some information can be lost in the process. More specifically, lowerable objects will be silently replaced with some arbitrary object -- currently the list @code{(*approximate*)}, but this may change." msgstr "" #. type: section -#: guix-git/doc/guix.texi:10675 +#: guix-git/doc/guix.texi:10989 #, no-wrap msgid "Invoking @command{guix repl}" msgstr "Вызов @command{guix repl}" #. type: cindex -#: guix-git/doc/guix.texi:10677 +#: guix-git/doc/guix.texi:10991 #, no-wrap msgid "REPL, read-eval-print loop, script" msgstr "цикл чтение-вычисление-вывод" #. type: Plain text -#: guix-git/doc/guix.texi:10687 +#: guix-git/doc/guix.texi:11001 msgid "The @command{guix repl} command makes it easier to program Guix in Guile by launching a Guile @dfn{read-eval-print loop} (REPL) for interactive programming (@pxref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}), or by running Guile scripts (@pxref{Running Guile Scripts,,, guile, GNU Guile Reference Manual}). Compared to just launching the @command{guile} command, @command{guix repl} guarantees that all the Guix modules and all its dependencies are available in the search path." msgstr "" #. type: example -#: guix-git/doc/guix.texi:10692 +#: guix-git/doc/guix.texi:11006 #, no-wrap msgid "guix repl @var{options} [@var{file} @var{args}]\n" msgstr "guix repl @var{options} [@var{file} @var{args}]\n" #. type: Plain text -#: guix-git/doc/guix.texi:10696 +#: guix-git/doc/guix.texi:11010 msgid "When a @var{file} argument is provided, @var{file} is executed as a Guile scripts:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10699 +#: guix-git/doc/guix.texi:11013 #, no-wrap msgid "guix repl my-script.scm\n" msgstr "guix repl my-script.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:10703 +#: guix-git/doc/guix.texi:11017 msgid "To pass arguments to the script, use @code{--} to prevent them from being interpreted as arguments to @command{guix repl} itself:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10706 +#: guix-git/doc/guix.texi:11020 #, no-wrap msgid "guix repl -- my-script.scm --input=foo.txt\n" msgstr "guix repl -- my-script.scm --input=foo.txt\n" #. type: Plain text -#: guix-git/doc/guix.texi:10711 +#: guix-git/doc/guix.texi:11025 msgid "To make a script executable directly from the shell, using the guix executable that is on the user's search path, add the following two lines at the top of the script:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10715 +#: guix-git/doc/guix.texi:11029 #, no-wrap msgid "" "@code{#!/usr/bin/env -S guix repl --}\n" @@ -20622,12 +21230,12 @@ msgstr "" "@code{!#}\n" #. type: Plain text -#: guix-git/doc/guix.texi:10718 +#: guix-git/doc/guix.texi:11032 msgid "Without a file name argument, a Guile REPL is started:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10724 +#: guix-git/doc/guix.texi:11038 #, no-wrap msgid "" "$ guix repl\n" @@ -20641,169 +21249,169 @@ msgstr "" "$1 = #\n" #. type: Plain text -#: guix-git/doc/guix.texi:10731 +#: guix-git/doc/guix.texi:11045 msgid "In addition, @command{guix repl} implements a simple machine-readable REPL protocol for use by @code{(guix inferior)}, a facility to interact with @dfn{inferiors}, separate processes running a potentially different revision of Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10733 +#: guix-git/doc/guix.texi:11047 msgid "The available options are as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10735 guix-git/doc/guix.texi:13411 +#: guix-git/doc/guix.texi:11049 guix-git/doc/guix.texi:13768 #, no-wrap msgid "--type=@var{type}" msgstr "--type=@var{type}" #. type: itemx -#: guix-git/doc/guix.texi:10736 guix-git/doc/guix.texi:13412 -#: guix-git/doc/guix.texi:35281 +#: guix-git/doc/guix.texi:11050 guix-git/doc/guix.texi:13769 +#: guix-git/doc/guix.texi:35725 #, no-wrap msgid "-t @var{type}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10738 +#: guix-git/doc/guix.texi:11052 msgid "Start a REPL of the given @var{TYPE}, which can be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10740 +#: guix-git/doc/guix.texi:11054 #, no-wrap msgid "guile" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10742 +#: guix-git/doc/guix.texi:11056 msgid "This is default, and it spawns a standard full-featured Guile REPL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10742 +#: guix-git/doc/guix.texi:11056 #, no-wrap msgid "machine" msgstr "компьютер" #. type: table -#: guix-git/doc/guix.texi:10745 +#: guix-git/doc/guix.texi:11059 msgid "Spawn a REPL that uses the machine-readable protocol. This is the protocol that the @code{(guix inferior)} module speaks." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10751 +#: guix-git/doc/guix.texi:11065 msgid "By default, @command{guix repl} reads from standard input and writes to standard output. When this option is passed, it will instead listen for connections on @var{endpoint}. Here are examples of valid options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10753 +#: guix-git/doc/guix.texi:11067 #, no-wrap msgid "--listen=tcp:37146" msgstr "--listen=tcp:37146" #. type: table -#: guix-git/doc/guix.texi:10755 +#: guix-git/doc/guix.texi:11069 msgid "Accept connections on localhost on port 37146." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10756 +#: guix-git/doc/guix.texi:11070 #, no-wrap msgid "--listen=unix:/tmp/socket" msgstr "--listen=unix:/tmp/socket" #. type: table -#: guix-git/doc/guix.texi:10758 +#: guix-git/doc/guix.texi:11072 msgid "Accept connections on the Unix-domain socket @file{/tmp/socket}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10760 guix-git/doc/guix.texi:10865 -#: guix-git/doc/guix.texi:12763 guix-git/doc/guix.texi:12840 -#: guix-git/doc/guix.texi:13046 guix-git/doc/guix.texi:13191 -#: guix-git/doc/guix.texi:13459 +#: guix-git/doc/guix.texi:11074 guix-git/doc/guix.texi:11179 +#: guix-git/doc/guix.texi:13078 guix-git/doc/guix.texi:13196 +#: guix-git/doc/guix.texi:13403 guix-git/doc/guix.texi:13548 +#: guix-git/doc/guix.texi:13816 #, no-wrap msgid "--load-path=@var{directory}" msgstr "--load-path=@var{directory}" #. type: itemx -#: guix-git/doc/guix.texi:10761 guix-git/doc/guix.texi:10866 -#: guix-git/doc/guix.texi:12841 guix-git/doc/guix.texi:13047 -#: guix-git/doc/guix.texi:13192 guix-git/doc/guix.texi:13460 +#: guix-git/doc/guix.texi:11075 guix-git/doc/guix.texi:11180 +#: guix-git/doc/guix.texi:13197 guix-git/doc/guix.texi:13404 +#: guix-git/doc/guix.texi:13549 guix-git/doc/guix.texi:13817 #, no-wrap msgid "-L @var{directory}" msgstr "-L @var{directory}" #. type: table -#: guix-git/doc/guix.texi:10764 guix-git/doc/guix.texi:10869 -#: guix-git/doc/guix.texi:12766 guix-git/doc/guix.texi:12844 -#: guix-git/doc/guix.texi:13050 guix-git/doc/guix.texi:13195 -#: guix-git/doc/guix.texi:13463 +#: guix-git/doc/guix.texi:11078 guix-git/doc/guix.texi:11183 +#: guix-git/doc/guix.texi:13081 guix-git/doc/guix.texi:13200 +#: guix-git/doc/guix.texi:13407 guix-git/doc/guix.texi:13552 +#: guix-git/doc/guix.texi:13820 msgid "Add @var{directory} to the front of the package module search path (@pxref{Package Modules})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10767 +#: guix-git/doc/guix.texi:11081 msgid "This allows users to define their own packages and make them visible to the script or REPL." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10768 guix-git/doc/guix.texi:11390 +#: guix-git/doc/guix.texi:11082 guix-git/doc/guix.texi:11704 #, no-wrap msgid "-q" msgstr "-q" #. type: table -#: guix-git/doc/guix.texi:10771 +#: guix-git/doc/guix.texi:11085 msgid "Inhibit loading of the @file{~/.guile} file. By default, that configuration file is loaded when spawning a @code{guile} REPL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10781 +#: guix-git/doc/guix.texi:11095 msgid "This section describes Guix command-line utilities. Some of them are primarily targeted at developers and users who write new package definitions, while others are more generally useful. They complement the Scheme programming interface of Guix in a convenient way." msgstr "В этом разделе описаны утилиты командной строки Guix. Некоторые из них в первую очередь нацелены на разработчиков и пользователей, которые пишут новые определения пакетов, в то время как другие полезны в целом. Они удобно дополняют программный интерфейс Scheme в Guix." #. type: cindex -#: guix-git/doc/guix.texi:10804 +#: guix-git/doc/guix.texi:11118 #, no-wrap msgid "package building" msgstr "сборка пакета" #. type: command{#1} -#: guix-git/doc/guix.texi:10805 +#: guix-git/doc/guix.texi:11119 #, no-wrap msgid "guix build" msgstr "guix build" #. type: Plain text -#: guix-git/doc/guix.texi:10811 +#: guix-git/doc/guix.texi:11125 msgid "The @command{guix build} command builds packages or derivations and their dependencies, and prints the resulting store paths. Note that it does not modify the user's profile---this is the job of the @command{guix package} command (@pxref{Invoking guix package}). Thus, it is mainly useful for distribution developers." msgstr "Команда @command{guix build} собирает пакеты или производные и их зависимости и выводит полученные пути в хранилище (store paths). Обратите внимание, что она не изменяет профиль пользователя---это задача команды @command{guix package} (@pxref{Invoking guix package}). Таким образом, это в основном полезно для разработчиков дистрибутива." #. type: example -#: guix-git/doc/guix.texi:10816 +#: guix-git/doc/guix.texi:11130 #, no-wrap msgid "guix build @var{options} @var{package-or-derivation}@dots{}\n" msgstr "guix build @var{options} @var{package-or-derivation}@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:10821 +#: guix-git/doc/guix.texi:11135 msgid "As an example, the following command builds the latest versions of Emacs and of Guile, displays their build logs, and finally displays the resulting directories:" msgstr "В качестве примера следующая команда собирает последние версии Emacs и Guile, отображает их логи и, наконец, отображает полученные директории:" #. type: example -#: guix-git/doc/guix.texi:10824 +#: guix-git/doc/guix.texi:11138 #, no-wrap msgid "guix build emacs guile\n" msgstr "guix build emacs guile\n" #. type: Plain text -#: guix-git/doc/guix.texi:10827 +#: guix-git/doc/guix.texi:11141 msgid "Similarly, the following command builds all the available packages:" msgstr "Аналогичным образом следующая команда собирает все доступные пакеты:" #. type: example -#: guix-git/doc/guix.texi:10831 +#: guix-git/doc/guix.texi:11145 #, fuzzy, no-wrap #| msgid "" #| "guix build --quiet --keep-going \\\n" @@ -20816,327 +21424,327 @@ msgstr "" " `guix package -A | cut -f1,2 --output-delimiter=@@`\n" #. type: Plain text -#: guix-git/doc/guix.texi:10839 +#: guix-git/doc/guix.texi:11153 msgid "@var{package-or-derivation} may be either the name of a package found in the software distribution such as @code{coreutils} or @code{coreutils@@8.20}, or a derivation such as @file{/gnu/store/@dots{}-coreutils-8.19.drv}. In the former case, a package with the corresponding name (and optionally version) is searched for among the GNU distribution modules (@pxref{Package Modules})." msgstr "@var{package-or-derivation} может быть именем пакета, найденного в дистрибутиве программного обеспечения, например @code{coreutils} или @code{coreutils@@8.20}, или производным, например @file{/gnu/store/@dots{}-coreutils-8.19.drv}. В первом случае пакет с соответствующим именем (и, возможно, версией) ищется среди модулей дистрибутива GNU (@pxref{Package Modules})." #. type: Plain text -#: guix-git/doc/guix.texi:10844 +#: guix-git/doc/guix.texi:11158 msgid "Alternatively, the @option{--expression} option may be used to specify a Scheme expression that evaluates to a package; this is useful when disambiguating among several same-named packages or package variants is needed." msgstr "В качестве альтернативы можно использовать параметр @option{--expression}, чтобы указать выражение на языке Scheme, оценивающее пакет; это полезно, когда требуется устранение неоднозначности между несколькими пакетами с одинаковыми именами или вариантами пакетов." #. type: Plain text -#: guix-git/doc/guix.texi:10847 +#: guix-git/doc/guix.texi:11161 msgid "There may be zero or more @var{options}. The available options are described in the subsections below." msgstr "Может быть ноль или больше @var{options}. Доступные параметры описаны в подразделах ниже." #. type: Plain text -#: guix-git/doc/guix.texi:10862 +#: guix-git/doc/guix.texi:11176 msgid "A number of options that control the build process are common to @command{guix build} and other commands that can spawn builds, such as @command{guix package} or @command{guix archive}. These are the following:" msgstr "Ряд параметров, управляющих процессом сборки, является общим для @command{guix build} и других команд, которые могут порождать сборки, например @command{guix package} или @command{guix archive}. Это следующие:" #. type: table -#: guix-git/doc/guix.texi:10872 guix-git/doc/guix.texi:12769 -#: guix-git/doc/guix.texi:13053 guix-git/doc/guix.texi:13198 -#: guix-git/doc/guix.texi:13466 +#: guix-git/doc/guix.texi:11186 guix-git/doc/guix.texi:13084 +#: guix-git/doc/guix.texi:13410 guix-git/doc/guix.texi:13555 +#: guix-git/doc/guix.texi:13823 msgid "This allows users to define their own packages and make them visible to the command-line tools." msgstr "Это позволяет пользователям определять свои собственные пакеты и делать их видимыми для инструментов командной строки." #. type: item -#: guix-git/doc/guix.texi:10873 +#: guix-git/doc/guix.texi:11187 #, no-wrap msgid "--keep-failed" msgstr "--keep-failed" #. type: itemx -#: guix-git/doc/guix.texi:10874 +#: guix-git/doc/guix.texi:11188 #, no-wrap msgid "-K" msgstr "-K" #. type: table -#: guix-git/doc/guix.texi:10880 +#: guix-git/doc/guix.texi:11194 msgid "Keep the build tree of failed builds. Thus, if a build fails, its build tree is kept under @file{/tmp}, in a directory whose name is shown at the end of the build log. This is useful when debugging build issues. @xref{Debugging Build Failures}, for tips and tricks on how to debug build issues." msgstr "Сохраните дерево сборки неудачных попыток сборки. Таким образом, в случае сбоя сборки ее дерево сборки сохраняется в @file{/tmp}, в каталоге, имя которого отображается в конце журнала сборки. Это полезно при отладке проблем сборки. @xref{Debugging Build Failures}, советы и рекомендации по отладке проблем сборки." #. type: table -#: guix-git/doc/guix.texi:10884 +#: guix-git/doc/guix.texi:11198 msgid "This option implies @option{--no-offload}, and it has no effect when connecting to a remote daemon with a @code{guix://} URI (@pxref{The Store, the @env{GUIX_DAEMON_SOCKET} variable})." msgstr "Этот параметр предполагает @option{--no-offload} и не действует при подключении к удалённому демону с URI @code{guix://} (@pxref{The Store, the @env{GUIX_DAEMON_SOCKET}}." #. type: item -#: guix-git/doc/guix.texi:10885 +#: guix-git/doc/guix.texi:11199 #, no-wrap msgid "--keep-going" msgstr "--keep-going" #. type: itemx -#: guix-git/doc/guix.texi:10886 +#: guix-git/doc/guix.texi:11200 #, no-wrap msgid "-k" msgstr "-k" #. type: table -#: guix-git/doc/guix.texi:10889 +#: guix-git/doc/guix.texi:11203 msgid "Keep going when some of the derivations fail to build; return only once all the builds have either completed or failed." msgstr "Продолжайте, когда некоторые из производных не удается построить; возвращайтесь только после того, как все сборки будут завершены или не пройдены." #. type: table -#: guix-git/doc/guix.texi:10892 +#: guix-git/doc/guix.texi:11206 msgid "The default behavior is to stop as soon as one of the specified derivations has failed." msgstr "Поведение по умолчанию---остановка, как только одна из указанных производных не удалась." #. type: table -#: guix-git/doc/guix.texi:10896 +#: guix-git/doc/guix.texi:11210 msgid "Do not build the derivations." msgstr "Не собирайте производные." #. type: anchor{#1} -#: guix-git/doc/guix.texi:10898 +#: guix-git/doc/guix.texi:11212 msgid "fallback-option" msgstr "fallback-option" #. type: item -#: guix-git/doc/guix.texi:10898 +#: guix-git/doc/guix.texi:11212 #, no-wrap msgid "--fallback" msgstr "--fallback" #. type: table -#: guix-git/doc/guix.texi:10901 +#: guix-git/doc/guix.texi:11215 msgid "When substituting a pre-built binary fails, fall back to building packages locally (@pxref{Substitution Failure})." msgstr "Если замена предварительно созданного двоичного файла не удалась, процесс возвращается к сборке пакетов локально (@pxref{Substitution Failure})." #. type: anchor{#1} -#: guix-git/doc/guix.texi:10907 +#: guix-git/doc/guix.texi:11221 msgid "client-substitute-urls" msgstr "client-substitute-urls" #. type: table -#: guix-git/doc/guix.texi:10907 +#: guix-git/doc/guix.texi:11221 msgid "Consider @var{urls} the whitespace-separated list of substitute source URLs, overriding the default list of URLs of @command{guix-daemon} (@pxref{daemon-substitute-urls,, @command{guix-daemon} URLs})." msgstr "Рассмотрим @var{urls} разделенный пробелами список URL-адресов источников замещений, заменяющий список URL-адресов по умолчанию @command{guix-daemon} (@pxref{daemon-substitute-urls,, @command{guix-daemon} URLs})." #. type: table -#: guix-git/doc/guix.texi:10911 +#: guix-git/doc/guix.texi:11225 msgid "This means that substitutes may be downloaded from @var{urls}, provided they are signed by a key authorized by the system administrator (@pxref{Substitutes})." msgstr "Это означает, что заменители могут быть загружены с @var{urls}, при условии, что они подписаны ключом, авторизованным системным администратором (@pxref{Substitutes})." #. type: table -#: guix-git/doc/guix.texi:10914 +#: guix-git/doc/guix.texi:11228 msgid "When @var{urls} is the empty string, substitutes are effectively disabled." msgstr "Когда @var{urls} является пустой строкой---замены фактически отключены." #. type: item -#: guix-git/doc/guix.texi:10920 +#: guix-git/doc/guix.texi:11234 #, no-wrap msgid "--no-grafts" msgstr "--no-grafts" #. type: table -#: guix-git/doc/guix.texi:10924 +#: guix-git/doc/guix.texi:11238 msgid "Do not ``graft'' packages. In practice, this means that package updates available as grafts are not applied. @xref{Security Updates}, for more information on grafts." msgstr "Не ``прививайте'' (graft) пакеты. На практике это означает, что обновления пакетов, доступные в виде прививок, не применяются. Ознакомьтесь с @xref{Security Updates}, чтобы узнать больше о прививках (grafts)." #. type: item -#: guix-git/doc/guix.texi:10925 +#: guix-git/doc/guix.texi:11239 #, no-wrap msgid "--rounds=@var{n}" msgstr "--rounds=@var{n}" #. type: table -#: guix-git/doc/guix.texi:10928 +#: guix-git/doc/guix.texi:11242 msgid "Build each derivation @var{n} times in a row, and raise an error if consecutive build results are not bit-for-bit identical." msgstr "Соберите каждое производное @var{n} раз подряд и вызовите появление ошибки, если последовательные результаты построения не будут побитно идентичны." #. type: table -#: guix-git/doc/guix.texi:10933 +#: guix-git/doc/guix.texi:11247 msgid "This is a useful way to detect non-deterministic builds processes. Non-deterministic build processes are a problem because they make it practically impossible for users to @emph{verify} whether third-party binaries are genuine. @xref{Invoking guix challenge}, for more." msgstr "Это полезный способ обнаружения недетерминированных процессов сборки. Недетерминированные процессы сборки представляют собой проблему, потому что они делают практически невозможным для пользователей @emph{verify} подлинность сторонних двоичных файлов. Обратитесь к @xref{Invoking guix challenge}, чтобы узнать больше." #. type: table -#: guix-git/doc/guix.texi:10949 +#: guix-git/doc/guix.texi:11263 msgid "By default, the daemon's setting is honored (@pxref{Invoking guix-daemon, @option{--max-silent-time}})." msgstr "По умолчанию настройки демона соблюдаются (@pxref{Invoking guix-daemon, @option{--max-silent-time}})." #. type: table -#: guix-git/doc/guix.texi:10956 +#: guix-git/doc/guix.texi:11270 msgid "By default, the daemon's setting is honored (@pxref{Invoking guix-daemon, @option{--timeout}})." msgstr "Это ничего не выводит, если демон не был запущен с опцией @option{--cache-failures} (@pxref{Invoking guix-daemon, @option{--cache-failures}})." #. type: cindex -#: guix-git/doc/guix.texi:10959 +#: guix-git/doc/guix.texi:11273 #, no-wrap msgid "verbosity, of the command-line tools" msgstr "многословие инструментов командной строки" #. type: cindex -#: guix-git/doc/guix.texi:10960 +#: guix-git/doc/guix.texi:11274 #, no-wrap msgid "build logs, verbosity" msgstr "журналы сборки, многословие" #. type: item -#: guix-git/doc/guix.texi:10961 +#: guix-git/doc/guix.texi:11275 #, no-wrap msgid "-v @var{level}" msgstr "-v @var{level}" #. type: itemx -#: guix-git/doc/guix.texi:10962 +#: guix-git/doc/guix.texi:11276 #, no-wrap msgid "--verbosity=@var{level}" msgstr "--verbosity=@var{level}" #. type: table -#: guix-git/doc/guix.texi:10967 +#: guix-git/doc/guix.texi:11281 msgid "Use the given verbosity @var{level}, an integer. Choosing 0 means that no output is produced, 1 is for quiet output; 2 is similar to 1 but it additionally displays download URLs; 3 shows all the build log output on standard error." msgstr "Используйте заданную степень многословия @var{level} (целое число). Выбор 0 означает, что вывод не производится, 1 - для тихого вывода, а 2 показывает весь вывод журнала сборки при стандартной ошибке." #. type: table -#: guix-git/doc/guix.texi:10972 +#: guix-git/doc/guix.texi:11286 msgid "Allow the use of up to @var{n} CPU cores for the build. The special value @code{0} means to use as many CPU cores as available." msgstr "Разрешить использование до @var{n} ядер ЦП для сборки. Специальное значение @code{0} означает использование максимально доступного количества ядер ЦП." #. type: table -#: guix-git/doc/guix.texi:10978 +#: guix-git/doc/guix.texi:11292 msgid "Allow at most @var{n} build jobs in parallel. @xref{Invoking guix-daemon, @option{--max-jobs}}, for details about this option and the equivalent @command{guix-daemon} option." msgstr "Разрешить не более @var{n} сборок параллельно. Обратитесь к @xref{Invoking guix-daemon, @option{--max-jobs}} для получения подробной информации об этой опции и аналогичной опции @command{guix-daemon}." #. type: item -#: guix-git/doc/guix.texi:10979 +#: guix-git/doc/guix.texi:11293 #, no-wrap msgid "--debug=@var{level}" msgstr "--debug=@var{level}" #. type: table -#: guix-git/doc/guix.texi:10983 +#: guix-git/doc/guix.texi:11297 msgid "Produce debugging output coming from the build daemon. @var{level} must be an integer between 0 and 5; higher means more verbose output. Setting a level of 4 or more may be helpful when debugging setup issues with the build daemon." msgstr "Создавать отладочные данные, поступающие от демона сборки. @var{level} должен быть целым числом от 0 до 5; чем выше, тем подробнее вывод. Уровнь 4 или выше может быть полезен при отладке проблемы с установкой демона сборки." #. type: Plain text -#: guix-git/doc/guix.texi:10990 +#: guix-git/doc/guix.texi:11304 msgid "Behind the scenes, @command{guix build} is essentially an interface to the @code{package-derivation} procedure of the @code{(guix packages)} module, and to the @code{build-derivations} procedure of the @code{(guix derivations)} module." msgstr "За кулисами @command{guix build}, по сути, является интерфейсом к процедуре @code{package-diveration} модуля @code{(guix packages)} и к процедуре @code{build-diverations} модуля @code{(guix derivations)} модуль." #. type: Plain text -#: guix-git/doc/guix.texi:10994 +#: guix-git/doc/guix.texi:11308 msgid "In addition to options explicitly passed on the command line, @command{guix build} and other @command{guix} commands that support building honor the @env{GUIX_BUILD_OPTIONS} environment variable." msgstr "Помимо параметров, явно переданных в командной строке, @command{guix build} и другие команды @command{guix}, поддерживающие сборку, учитывают переменную среды @env{GUIX_BUILD_OPTIONS}." #. type: defvr -#: guix-git/doc/guix.texi:10995 +#: guix-git/doc/guix.texi:11309 #, no-wrap msgid "{Environment Variable} GUIX_BUILD_OPTIONS" msgstr "{Environment Variable} GUIX_BUILD_OPTIONS" #. type: defvr -#: guix-git/doc/guix.texi:11000 +#: guix-git/doc/guix.texi:11314 msgid "Users can define this variable to a list of command line options that will automatically be used by @command{guix build} and other @command{guix} commands that can perform builds, as in the example below:" msgstr "Пользователи могут определить эту переменную для списка параметров командной строки, которые будут автоматически использоваться @command{guix build} и другими командами @command{guix}, которые могут выполнять сборки, как в примере ниже:" #. type: example -#: guix-git/doc/guix.texi:11003 +#: guix-git/doc/guix.texi:11317 #, no-wrap msgid "$ export GUIX_BUILD_OPTIONS=\"--no-substitutes -c 2 -L /foo/bar\"\n" msgstr "$ export GUIX_BUILD_OPTIONS=\"--no-substitutes -c 2 -L /foo/bar\"\n" #. type: defvr -#: guix-git/doc/guix.texi:11007 +#: guix-git/doc/guix.texi:11321 msgid "These options are parsed independently, and the result is appended to the parsed command-line options." msgstr "Эти параметры анализируются независимо, а результат добавляется к проанализированным параметрам командной строки." #. type: cindex -#: guix-git/doc/guix.texi:11013 +#: guix-git/doc/guix.texi:11327 #, no-wrap msgid "package variants" msgstr "варианты пакета" #. type: Plain text -#: guix-git/doc/guix.texi:11021 +#: guix-git/doc/guix.texi:11335 msgid "Another set of command-line options supported by @command{guix build} and also @command{guix package} are @dfn{package transformation options}. These are options that make it possible to define @dfn{package variants}---for instance, packages built from different source code. This is a convenient way to create customized packages on the fly without having to type in the definitions of package variants (@pxref{Defining Packages})." msgstr "Другой набор параметров командной строки, поддерживаемых @command{guix build} и @command{guix package} это @dfn{package transformation options}. Это параметры, которые позволяют определять @dfn{package variants}---например, пакеты, созданные из другого исходного кода. Это удобный способ создавать индивидуальные пакеты на лету без необходимости вводить определения вариантов пакета (@pxref{Defining Packages})." #. type: Plain text -#: guix-git/doc/guix.texi:11025 +#: guix-git/doc/guix.texi:11339 msgid "Package transformation options are preserved across upgrades: @command{guix upgrade} attempts to apply transformation options initially used when creating the profile to the upgraded packages." msgstr "Параметры преобразования пакета сохраняются при обновлении: @command{guix upgrade} пытается применить параметры преобразования, которые изначально использовались при создании профиля, к обновленным пакетам." #. type: Plain text -#: guix-git/doc/guix.texi:11030 +#: guix-git/doc/guix.texi:11344 msgid "The available options are listed below. Most commands support them and also support a @option{--help-transform} option that lists all the available options and a synopsis (these options are not shown in the @option{--help} output for brevity)." msgstr "Доступные варианты перечислены ниже. Большинство команд поддерживают их, а также поддерживают параметр @option{--help-transform}, в котором перечислены все доступные параметры и их крткое описание (эти параметры не показаны в выводе @option{--help} для краткости)." #. type: cindex -#: guix-git/doc/guix.texi:11033 +#: guix-git/doc/guix.texi:11347 #, fuzzy, no-wrap #| msgid "formatting code" msgid "performance, tuning code" msgstr "форматирование кода" #. type: cindex -#: guix-git/doc/guix.texi:11034 +#: guix-git/doc/guix.texi:11348 #, fuzzy, no-wrap #| msgid "customization, of packages" msgid "optimization, of package code" msgstr "настройка, пакетов" #. type: cindex -#: guix-git/doc/guix.texi:11035 +#: guix-git/doc/guix.texi:11349 #, fuzzy, no-wrap #| msgid "inputs, of packages" msgid "tuning, of package code" msgstr "входные данные пакетов" #. type: cindex -#: guix-git/doc/guix.texi:11036 +#: guix-git/doc/guix.texi:11350 #, no-wrap msgid "SIMD support" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11037 +#: guix-git/doc/guix.texi:11351 #, fuzzy, no-wrap #| msgid "installing packages" msgid "tunable packages" msgstr "установка пакетов" #. type: cindex -#: guix-git/doc/guix.texi:11038 +#: guix-git/doc/guix.texi:11352 #, fuzzy, no-wrap #| msgid "package version" msgid "package multi-versioning" msgstr "версия пакета" #. type: item -#: guix-git/doc/guix.texi:11039 +#: guix-git/doc/guix.texi:11353 #, fuzzy, no-wrap #| msgid "--user=@var{user}" msgid "--tune[=@var{cpu}]" msgstr "--user=@var{user}" #. type: table -#: guix-git/doc/guix.texi:11043 +#: guix-git/doc/guix.texi:11357 msgid "Use versions of the packages marked as ``tunable'' optimized for @var{cpu}. When @var{cpu} is @code{native}, or when it is omitted, tune for the CPU on which the @command{guix} command is running." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11049 +#: guix-git/doc/guix.texi:11363 msgid "Valid @var{cpu} names are those recognized by the underlying compiler, by default the GNU Compiler Collection. On x86_64 processors, this includes CPU names such as @code{nehalem}, @code{haswell}, and @code{skylake} (@pxref{x86 Options, @code{-march},, gcc, Using the GNU Compiler Collection (GCC)})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11056 +#: guix-git/doc/guix.texi:11370 msgid "As new generations of CPUs come out, they augment the standard instruction set architecture (ISA) with additional instructions, in particular instructions for single-instruction/multiple-data (SIMD) parallel processing. For example, while Core2 and Skylake CPUs both implement the x86_64 ISA, only the latter supports AVX2 SIMD instructions." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11063 +#: guix-git/doc/guix.texi:11377 msgid "The primary gain one can expect from @option{--tune} is for programs that can make use of those SIMD capabilities @emph{and} that do not already have a mechanism to select the right optimized code at run time. Packages that have the @code{tunable?} property set are considered @dfn{tunable packages} by the @option{--tune} option; a package definition with the property set looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:11068 +#: guix-git/doc/guix.texi:11382 #, fuzzy, no-wrap #| msgid "" #| "(package\n" @@ -21155,7 +21763,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:11072 +#: guix-git/doc/guix.texi:11386 #, no-wrap msgid "" " ;; This package may benefit from SIMD extensions so\n" @@ -21164,87 +21772,87 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11077 +#: guix-git/doc/guix.texi:11391 msgid "Other packages are not considered tunable. This allows Guix to use generic binaries in the cases where tuning for a specific CPU is unlikely to provide any gain." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11083 +#: guix-git/doc/guix.texi:11397 msgid "Tuned packages are built with @code{-march=@var{CPU}}; under the hood, the @option{-march} option is passed to the actual wrapper by a compiler wrapper. Since the build machine may not be able to run code for the target CPU micro-architecture, the test suite is not run when building a tuned package." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11087 +#: guix-git/doc/guix.texi:11401 msgid "To reduce rebuilds to the minimum, tuned packages are @emph{grafted} onto packages that depend on them (@pxref{Security Updates, grafts}). Thus, using @option{--no-grafts} cancels the effect of @option{--tune}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11093 +#: guix-git/doc/guix.texi:11407 msgid "We call this technique @dfn{package multi-versioning}: several variants of tunable packages may be built, one for each CPU variant. It is the coarse-grain counterpart of @dfn{function multi-versioning} as implemented by the GNU tool chain (@pxref{Function Multiversioning,,, gcc, Using the GNU Compiler Collection (GCC)})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11094 +#: guix-git/doc/guix.texi:11408 #, no-wrap msgid "--with-source=@var{source}" msgstr "--with-source=@var{source}" #. type: itemx -#: guix-git/doc/guix.texi:11095 +#: guix-git/doc/guix.texi:11409 #, no-wrap msgid "--with-source=@var{package}=@var{source}" msgstr "--with-source=@var{package}=@var{source}" #. type: itemx -#: guix-git/doc/guix.texi:11096 +#: guix-git/doc/guix.texi:11410 #, no-wrap msgid "--with-source=@var{package}@@@var{version}=@var{source}" msgstr "--with-source=@var{package}@@@var{version}=@var{source}" #. type: table -#: guix-git/doc/guix.texi:11101 +#: guix-git/doc/guix.texi:11415 msgid "Use @var{source} as the source of @var{package}, and @var{version} as its version number. @var{source} must be a file name or a URL, as for @command{guix download} (@pxref{Invoking guix download})." msgstr "Используйте @var{source} в качестве источника @var{package} и @var{version} в качестве номера версии. @var{source} должен быть именем файла или URL-адресом, как для @command{guix download} (@pxref{Invoking guix download})." #. type: table -#: guix-git/doc/guix.texi:11107 +#: guix-git/doc/guix.texi:11421 msgid "When @var{package} is omitted, it is taken to be the package name specified on the command line that matches the base of @var{source}---e.g., if @var{source} is @code{/src/guile-2.0.10.tar.gz}, the corresponding package is @code{guile}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11110 +#: guix-git/doc/guix.texi:11424 msgid "Likewise, when @var{version} is omitted, the version string is inferred from @var{source}; in the previous example, it is @code{2.0.10}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11115 +#: guix-git/doc/guix.texi:11429 msgid "This option allows users to try out versions of packages other than the one provided by the distribution. The example below downloads @file{ed-1.7.tar.gz} from a GNU mirror and uses that as the source for the @code{ed} package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11118 +#: guix-git/doc/guix.texi:11432 #, no-wrap msgid "guix build ed --with-source=mirror://gnu/ed/ed-1.7.tar.gz\n" msgstr "guix build ed --with-source=mirror://gnu/ed/ed-1.7.tar.gz\n" #. type: table -#: guix-git/doc/guix.texi:11122 +#: guix-git/doc/guix.texi:11436 msgid "As a developer, @option{--with-source} makes it easy to test release candidates:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11125 +#: guix-git/doc/guix.texi:11439 #, no-wrap msgid "guix build guile --with-source=../guile-2.0.9.219-e1bb7.tar.xz\n" msgstr "guix build guile --with-source=../guile-2.0.9.219-e1bb7.tar.xz\n" #. type: table -#: guix-git/doc/guix.texi:11128 +#: guix-git/doc/guix.texi:11442 msgid "@dots{} or to build from a checkout in a pristine environment:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11132 +#: guix-git/doc/guix.texi:11446 #, no-wrap msgid "" "$ git clone git://git.sv.gnu.org/guix.git\n" @@ -21254,126 +21862,126 @@ msgstr "" "$ guix build guix --with-source=guix@@1.0=./guix\n" #. type: item -#: guix-git/doc/guix.texi:11134 +#: guix-git/doc/guix.texi:11448 #, no-wrap msgid "--with-input=@var{package}=@var{replacement}" msgstr "--with-input=@var{package}=@var{replacement}" #. type: table -#: guix-git/doc/guix.texi:11139 +#: guix-git/doc/guix.texi:11453 msgid "Replace dependency on @var{package} by a dependency on @var{replacement}. @var{package} must be a package name, and @var{replacement} must be a package specification such as @code{guile} or @code{guile@@1.8}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11143 +#: guix-git/doc/guix.texi:11457 msgid "For instance, the following command builds Guix, but replaces its dependency on the current stable version of Guile with a dependency on the legacy version of Guile, @code{guile@@2.0}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11146 +#: guix-git/doc/guix.texi:11460 #, no-wrap msgid "guix build --with-input=guile=guile@@2.0 guix\n" msgstr "guix build --with-input=guile=guile@@2.0 guix\n" #. type: table -#: guix-git/doc/guix.texi:11151 +#: guix-git/doc/guix.texi:11465 msgid "This is a recursive, deep replacement. So in this example, both @code{guix} and its dependency @code{guile-json} (which also depends on @code{guile}) get rebuilt against @code{guile@@2.0}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11154 +#: guix-git/doc/guix.texi:11468 msgid "This is implemented using the @code{package-input-rewriting} Scheme procedure (@pxref{Defining Packages, @code{package-input-rewriting}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11155 +#: guix-git/doc/guix.texi:11469 #, no-wrap msgid "--with-graft=@var{package}=@var{replacement}" msgstr "--with-graft=@var{package}=@var{replacement}" #. type: table -#: guix-git/doc/guix.texi:11161 +#: guix-git/doc/guix.texi:11475 msgid "This is similar to @option{--with-input} but with an important difference: instead of rebuilding the whole dependency chain, @var{replacement} is built and then @dfn{grafted} onto the binaries that were initially referring to @var{package}. @xref{Security Updates}, for more information on grafts." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11165 +#: guix-git/doc/guix.texi:11479 msgid "For example, the command below grafts version 3.5.4 of GnuTLS onto Wget and all its dependencies, replacing references to the version of GnuTLS they currently refer to:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11168 +#: guix-git/doc/guix.texi:11482 #, no-wrap msgid "guix build --with-graft=gnutls=gnutls@@3.5.4 wget\n" msgstr "guix build --with-graft=gnutls=gnutls@@3.5.4 wget\n" #. type: table -#: guix-git/doc/guix.texi:11177 +#: guix-git/doc/guix.texi:11491 msgid "This has the advantage of being much faster than rebuilding everything. But there is a caveat: it works if and only if @var{package} and @var{replacement} are strictly compatible---for example, if they provide a library, the application binary interface (ABI) of those libraries must be compatible. If @var{replacement} is somehow incompatible with @var{package}, then the resulting package may be unusable. Use with care!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11178 guix-git/doc/guix.texi:37882 +#: guix-git/doc/guix.texi:11492 guix-git/doc/guix.texi:38371 #, no-wrap msgid "debugging info, rebuilding" msgstr "отладка файлов" #. type: item -#: guix-git/doc/guix.texi:11179 +#: guix-git/doc/guix.texi:11493 #, no-wrap msgid "--with-debug-info=@var{package}" msgstr "--without-tests=@var{package}" #. type: table -#: guix-git/doc/guix.texi:11184 +#: guix-git/doc/guix.texi:11498 msgid "Build @var{package} in a way that preserves its debugging info and graft it onto packages that depend on it. This is useful if @var{package} does not already provide debugging info as a @code{debug} output (@pxref{Installing Debugging Files})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11190 +#: guix-git/doc/guix.texi:11504 msgid "For example, suppose you're experiencing a crash in Inkscape and would like to see what's up in GLib, a library deep down in Inkscape's dependency graph. GLib lacks a @code{debug} output, so debugging is tough. Fortunately, you rebuild GLib with debugging info and tack it on Inkscape:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11193 guix-git/doc/guix.texi:37913 +#: guix-git/doc/guix.texi:11507 guix-git/doc/guix.texi:38402 #, no-wrap msgid "guix install inkscape --with-debug-info=glib\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11197 +#: guix-git/doc/guix.texi:11511 msgid "Only GLib needs to be recompiled so this takes a reasonable amount of time. @xref{Installing Debugging Files}, for more info." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11203 +#: guix-git/doc/guix.texi:11517 msgid "Under the hood, this option works by passing the @samp{#:strip-binaries? #f} to the build system of the package of interest (@pxref{Build Systems}). Most build systems support that option but some do not. In that case, an error is raised." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11207 +#: guix-git/doc/guix.texi:11521 msgid "Likewise, if a C/C++ package is built without @code{-g} (which is rarely the case), debugging info will remain unavailable even when @code{#:strip-binaries?} is false." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11209 +#: guix-git/doc/guix.texi:11523 #, no-wrap msgid "tool chain, changing the build tool chain of a package" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11210 +#: guix-git/doc/guix.texi:11524 #, no-wrap msgid "--with-c-toolchain=@var{package}=@var{toolchain}" msgstr "--with-commit=@var{package}=@var{commit}" #. type: table -#: guix-git/doc/guix.texi:11214 +#: guix-git/doc/guix.texi:11528 msgid "This option changes the compilation of @var{package} and everything that depends on it so that they get built with @var{toolchain} instead of the default GNU tool chain for C/C++." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11221 +#: guix-git/doc/guix.texi:11535 #, no-wrap msgid "" "guix build octave-cli \\\n" @@ -21382,17 +21990,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11228 +#: guix-git/doc/guix.texi:11542 msgid "The command above builds a variant of the @code{fftw} and @code{fftwf} packages using version 10 of @code{gcc-toolchain} instead of the default tool chain, and then builds a variant of the GNU@tie{}Octave command-line interface using them. GNU@tie{}Octave itself is also built with @code{gcc-toolchain@@10}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11232 +#: guix-git/doc/guix.texi:11546 msgid "This other example builds the Hardware Locality (@code{hwloc}) library and its dependents up to @code{intel-mpi-benchmarks} with the Clang C compiler:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11236 +#: guix-git/doc/guix.texi:11550 #, no-wrap msgid "" "guix build --with-c-toolchain=hwloc=clang-toolchain \\\n" @@ -21400,40 +22008,40 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11245 +#: guix-git/doc/guix.texi:11559 msgid "There can be application binary interface (ABI) incompatibilities among tool chains. This is particularly true of the C++ standard library and run-time support libraries such as that of OpenMP@. By rebuilding all dependents with the same tool chain, @option{--with-c-toolchain} minimizes the risks of incompatibility but cannot entirely eliminate them. Choose @var{package} wisely." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11247 +#: guix-git/doc/guix.texi:11561 #, no-wrap msgid "--with-git-url=@var{package}=@var{url}" msgstr "--with-git-url=@var{package}=@var{url}" #. type: cindex -#: guix-git/doc/guix.texi:11248 +#: guix-git/doc/guix.texi:11562 #, no-wrap msgid "Git, using the latest commit" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11249 +#: guix-git/doc/guix.texi:11563 #, no-wrap msgid "latest commit, building" msgstr "последний коммит, сборка" #. type: table -#: guix-git/doc/guix.texi:11253 +#: guix-git/doc/guix.texi:11567 msgid "Build @var{package} from the latest commit of the @code{master} branch of the Git repository at @var{url}. Git sub-modules of the repository are fetched, recursively." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11256 +#: guix-git/doc/guix.texi:11570 msgid "For example, the following command builds the NumPy Python library against the latest commit of the master branch of Python itself:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11260 +#: guix-git/doc/guix.texi:11574 #, no-wrap msgid "" "guix build python-numpy \\\n" @@ -21443,318 +22051,318 @@ msgstr "" " --with-git-url=python=https://github.com/python/cpython\n" #. type: table -#: guix-git/doc/guix.texi:11264 +#: guix-git/doc/guix.texi:11578 msgid "This option can also be combined with @option{--with-branch} or @option{--with-commit} (see below)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11265 guix-git/doc/guix.texi:28957 +#: guix-git/doc/guix.texi:11579 guix-git/doc/guix.texi:29294 #, no-wrap msgid "continuous integration" msgstr "непрерывная интеграция" #. type: table -#: guix-git/doc/guix.texi:11271 +#: guix-git/doc/guix.texi:11585 msgid "Obviously, since it uses the latest commit of the given branch, the result of such a command varies over time. Nevertheless it is a convenient way to rebuild entire software stacks against the latest commit of one or more packages. This is particularly useful in the context of continuous integration (CI)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11275 +#: guix-git/doc/guix.texi:11589 msgid "Checkouts are kept in a cache under @file{~/.cache/guix/checkouts} to speed up consecutive accesses to the same repository. You may want to clean it up once in a while to save disk space." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11276 +#: guix-git/doc/guix.texi:11590 #, no-wrap msgid "--with-branch=@var{package}=@var{branch}" msgstr "--with-branch=@var{package}=@var{branch}" #. type: table -#: guix-git/doc/guix.texi:11282 +#: guix-git/doc/guix.texi:11596 msgid "Build @var{package} from the latest commit of @var{branch}. If the @code{source} field of @var{package} is an origin with the @code{git-fetch} method (@pxref{origin Reference}) or a @code{git-checkout} object, the repository URL is taken from that @code{source}. Otherwise you have to use @option{--with-git-url} to specify the URL of the Git repository." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11287 +#: guix-git/doc/guix.texi:11601 msgid "For instance, the following command builds @code{guile-sqlite3} from the latest commit of its @code{master} branch, and then builds @code{guix} (which depends on it) and @code{cuirass} (which depends on @code{guix}) against this specific @code{guile-sqlite3} build:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11290 +#: guix-git/doc/guix.texi:11604 #, no-wrap msgid "guix build --with-branch=guile-sqlite3=master cuirass\n" msgstr "guix build --with-branch=guile-sqlite3=master cuirass\n" #. type: item -#: guix-git/doc/guix.texi:11292 +#: guix-git/doc/guix.texi:11606 #, no-wrap msgid "--with-commit=@var{package}=@var{commit}" msgstr "--with-commit=@var{package}=@var{commit}" #. type: table -#: guix-git/doc/guix.texi:11297 +#: guix-git/doc/guix.texi:11611 msgid "This is similar to @option{--with-branch}, except that it builds from @var{commit} rather than the tip of a branch. @var{commit} must be a valid Git commit SHA1 identifier, a tag, or a @command{git describe} style identifier such as @code{1.0-3-gabc123}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11298 +#: guix-git/doc/guix.texi:11612 #, no-wrap msgid "--with-patch=@var{package}=@var{file}" msgstr "--with-branch=@var{package}=@var{branch}" #. type: table -#: guix-git/doc/guix.texi:11305 +#: guix-git/doc/guix.texi:11619 msgid "Add @var{file} to the list of patches applied to @var{package}, where @var{package} is a spec such as @code{python@@3.8} or @code{glibc}. @var{file} must contain a patch; it is applied with the flags specified in the @code{origin} of @var{package} (@pxref{origin Reference}), which by default includes @code{-p1} (@pxref{patch Directories,,, diffutils, Comparing and Merging Files})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11308 +#: guix-git/doc/guix.texi:11622 msgid "As an example, the command below rebuilds Coreutils with the GNU C Library (glibc) patched with the given patch:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11311 +#: guix-git/doc/guix.texi:11625 #, no-wrap msgid "guix build coreutils --with-patch=glibc=./glibc-frob.patch\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11315 +#: guix-git/doc/guix.texi:11629 msgid "In this example, glibc itself as well as everything that leads to Coreutils in the dependency graph is rebuilt." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11316 +#: guix-git/doc/guix.texi:11630 #, no-wrap msgid "upstream, latest version" msgstr "версия пакета" #. type: item -#: guix-git/doc/guix.texi:11317 +#: guix-git/doc/guix.texi:11631 #, no-wrap msgid "--with-latest=@var{package}" msgstr "--without-tests=@var{package}" #. type: table -#: guix-git/doc/guix.texi:11322 +#: guix-git/doc/guix.texi:11636 msgid "So you like living on the bleeding edge? This option is for you! It replaces occurrences of @var{package} in the dependency graph with its latest upstream version, as reported by @command{guix refresh} (@pxref{Invoking guix refresh})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11326 +#: guix-git/doc/guix.texi:11640 msgid "It does so by determining the latest upstream release of @var{package} (if possible), downloading it, and authenticating it @emph{if} it comes with an OpenPGP signature." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11329 +#: guix-git/doc/guix.texi:11643 msgid "As an example, the command below builds Guix against the latest version of Guile-JSON:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11332 +#: guix-git/doc/guix.texi:11646 #, no-wrap msgid "guix build guix --with-latest=guile-json\n" msgstr "guix build --with-input=guile=guile@@2.0 guix\n" #. type: table -#: guix-git/doc/guix.texi:11341 +#: guix-git/doc/guix.texi:11655 msgid "There are limitations. First, in cases where the tool cannot or does not know how to authenticate source code, you are at risk of running malicious code; a warning is emitted in this case. Second, this option simply changes the source used in the existing package definitions, which is not always sufficient: there might be additional dependencies that need to be added, patches to apply, and more generally the quality assurance work that Guix developers normally do will be missing." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11346 +#: guix-git/doc/guix.texi:11660 msgid "You've been warned! In all the other cases, it's a snappy way to stay on top. We encourage you to submit patches updating the actual package definitions once you have successfully tested an upgrade (@pxref{Contributing})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11347 +#: guix-git/doc/guix.texi:11661 #, no-wrap msgid "test suite, skipping" msgstr "набор тестов" #. type: item -#: guix-git/doc/guix.texi:11348 +#: guix-git/doc/guix.texi:11662 #, no-wrap msgid "--without-tests=@var{package}" msgstr "--without-tests=@var{package}" #. type: table -#: guix-git/doc/guix.texi:11354 +#: guix-git/doc/guix.texi:11668 msgid "Build @var{package} without running its tests. This can be useful in situations where you want to skip the lengthy test suite of a intermediate package, or if a package's test suite fails in a non-deterministic fashion. It should be used with care because running the test suite is a good way to ensure a package is working as intended." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11358 +#: guix-git/doc/guix.texi:11672 msgid "Turning off tests leads to a different store item. Consequently, when using this option, anything that depends on @var{package} must be rebuilt, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11361 +#: guix-git/doc/guix.texi:11675 #, no-wrap msgid "guix install --without-tests=python python-notebook\n" msgstr "guix install --without-tests=python python-notebook\n" #. type: table -#: guix-git/doc/guix.texi:11367 +#: guix-git/doc/guix.texi:11681 msgid "The command above installs @code{python-notebook} on top of @code{python} built without running its test suite. To do so, it also rebuilds everything that depends on @code{python}, including @code{python-notebook} itself." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11373 +#: guix-git/doc/guix.texi:11687 msgid "Internally, @option{--without-tests} relies on changing the @code{#:tests?} option of a package's @code{check} phase (@pxref{Build Systems}). Note that some packages use a customized @code{check} phase that does not respect a @code{#:tests? #f} setting. Therefore, @option{--without-tests} has no effect on these packages." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11380 +#: guix-git/doc/guix.texi:11694 msgid "Wondering how to achieve the same effect using Scheme code, for example in your manifest, or how to write your own package transformation? @xref{Defining Package Variants}, for an overview of the programming interfaces available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11386 +#: guix-git/doc/guix.texi:11700 msgid "The command-line options presented below are specific to @command{guix build}." msgstr "Параметры командной строки, представленные ниже, относятся к @command{guix build}." #. type: item -#: guix-git/doc/guix.texi:11389 +#: guix-git/doc/guix.texi:11703 #, no-wrap msgid "--quiet" msgstr "--quiet" #. type: table -#: guix-git/doc/guix.texi:11394 +#: guix-git/doc/guix.texi:11708 msgid "Build quietly, without displaying the build log; this is equivalent to @option{--verbosity=0}. Upon completion, the build log is kept in @file{/var} (or similar) and can always be retrieved using the @option{--log-file} option." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11399 +#: guix-git/doc/guix.texi:11713 msgid "Build the package, derivation, or other file-like object that the code within @var{file} evaluates to (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11402 +#: guix-git/doc/guix.texi:11716 msgid "As an example, @var{file} might contain a package definition like this (@pxref{Defining Packages}):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11411 +#: guix-git/doc/guix.texi:11725 msgid "The @var{file} may also contain a JSON representation of one or more package definitions. Running @code{guix build -f} on @file{hello.json} with the following contents would result in building the packages @code{myhello} and @code{greeter}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11416 +#: guix-git/doc/guix.texi:11730 #, no-wrap msgid "--manifest=@var{manifest}" msgstr "--manifest=@var{file}" #. type: itemx -#: guix-git/doc/guix.texi:11417 +#: guix-git/doc/guix.texi:11731 #, no-wrap msgid "-m @var{manifest}" msgstr "-m @var{file}" #. type: table -#: guix-git/doc/guix.texi:11420 +#: guix-git/doc/guix.texi:11734 msgid "Build all packages listed in the given @var{manifest} (@pxref{profile-manifest, @option{--manifest}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11424 +#: guix-git/doc/guix.texi:11738 msgid "Build the package or derivation @var{expr} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11428 +#: guix-git/doc/guix.texi:11742 msgid "For example, @var{expr} may be @code{(@@ (gnu packages guile) guile-1.8)}, which unambiguously designates this specific variant of version 1.8 of Guile." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11432 +#: guix-git/doc/guix.texi:11746 msgid "Alternatively, @var{expr} may be a G-expression, in which case it is used as a build program passed to @code{gexp->derivation} (@pxref{G-Expressions})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11436 +#: guix-git/doc/guix.texi:11750 msgid "Lastly, @var{expr} may refer to a zero-argument monadic procedure (@pxref{The Store Monad}). The procedure must return a derivation as a monadic value, which is then passed through @code{run-with-store}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11437 +#: guix-git/doc/guix.texi:11751 #, no-wrap msgid "--source" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11438 guix-git/doc/guix.texi:11835 +#: guix-git/doc/guix.texi:11752 #, no-wrap msgid "-S" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11441 +#: guix-git/doc/guix.texi:11755 msgid "Build the source derivations of the packages, rather than the packages themselves." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11445 +#: guix-git/doc/guix.texi:11759 msgid "For instance, @code{guix build -S gcc} returns something like @file{/gnu/store/@dots{}-gcc-4.7.2.tar.bz2}, which is the GCC source tarball." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11449 +#: guix-git/doc/guix.texi:11763 msgid "The returned source tarball is the result of applying any patches and code snippets specified in the package @code{origin} (@pxref{Defining Packages})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11450 +#: guix-git/doc/guix.texi:11764 #, no-wrap msgid "source, verification" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11456 +#: guix-git/doc/guix.texi:11770 msgid "As with other derivations, the result of building a source derivation can be verified using the @option{--check} option (@pxref{build-check}). This is useful to validate that a (potentially already built or substituted, thus cached) package source matches against its declared hash." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11461 +#: guix-git/doc/guix.texi:11775 msgid "Note that @command{guix build -S} compiles the sources only of the specified packages. They do not include the sources of statically linked dependencies and by themselves are insufficient for reproducing the packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11462 +#: guix-git/doc/guix.texi:11776 #, no-wrap msgid "--sources" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11469 +#: guix-git/doc/guix.texi:11783 msgid "Fetch and return the source of @var{package-or-derivation} and all their dependencies, recursively. This is a handy way to obtain a local copy of all the source code needed to build @var{packages}, allowing you to eventually build them even without network access. It is an extension of the @option{--source} option and can accept one of the following optional argument values:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11471 guix-git/doc/guix.texi:13252 +#: guix-git/doc/guix.texi:11785 guix-git/doc/guix.texi:13609 #, no-wrap msgid "package" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11474 +#: guix-git/doc/guix.texi:11788 msgid "This value causes the @option{--sources} option to behave in the same way as the @option{--source} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11475 guix-git/doc/guix.texi:19682 +#: guix-git/doc/guix.texi:11789 guix-git/doc/guix.texi:20044 #, no-wrap msgid "all" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11478 +#: guix-git/doc/guix.texi:11792 msgid "Build the source derivations of all packages, including any source that might be listed as @code{inputs}. This is the default value." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11484 +#: guix-git/doc/guix.texi:11798 #, no-wrap msgid "" "$ guix build --sources tzdata\n" @@ -21764,18 +22372,18 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11486 +#: guix-git/doc/guix.texi:11800 #, no-wrap msgid "transitive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11490 +#: guix-git/doc/guix.texi:11804 msgid "Build the source derivations of all packages, as well of all transitive inputs to the packages. This can be used e.g.@: to prefetch package source for later offline building." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11501 +#: guix-git/doc/guix.texi:11815 #, no-wrap msgid "" "$ guix build --sources=transitive tzdata\n" @@ -21790,146 +22398,146 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11511 +#: guix-git/doc/guix.texi:11825 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of the system type of the build host. The @command{guix build} command allows you to repeat this option several times, in which case it builds for all the specified systems; other commands ignore extraneous @option{-s} options." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11516 +#: guix-git/doc/guix.texi:11830 msgid "The @option{--system} flag is for @emph{native} compilation and must not be confused with cross-compilation. See @option{--target} below for information on cross-compilation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11523 +#: guix-git/doc/guix.texi:11837 msgid "An example use of this is on Linux-based systems, which can emulate different personalities. For instance, passing @option{--system=i686-linux} on an @code{x86_64-linux} system or @option{--system=armhf-linux} on an @code{aarch64-linux} system allows you to build packages in a complete 32-bit environment." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11528 +#: guix-git/doc/guix.texi:11842 msgid "Building for an @code{armhf-linux} system is unconditionally enabled on @code{aarch64-linux} machines, although certain aarch64 chipsets do not allow for this functionality, notably the ThunderX." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11534 +#: guix-git/doc/guix.texi:11848 msgid "Similarly, when transparent emulation with QEMU and @code{binfmt_misc} is enabled (@pxref{Virtualization Services, @code{qemu-binfmt-service-type}}), you can build for any system for which a QEMU @code{binfmt_misc} handler is installed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11538 +#: guix-git/doc/guix.texi:11852 msgid "Builds for a system other than that of the machine you are using can also be offloaded to a remote machine of the right architecture. @xref{Daemon Offload Setup}, for more information on offloading." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11544 +#: guix-git/doc/guix.texi:11858 msgid "Cross-build for @var{triplet}, which must be a valid GNU triplet, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying Target Triplets, GNU configuration triplets,, autoconf, Autoconf})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:11546 +#: guix-git/doc/guix.texi:11860 msgid "build-check" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11547 +#: guix-git/doc/guix.texi:11861 #, no-wrap msgid "determinism, checking" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11548 +#: guix-git/doc/guix.texi:11862 #, no-wrap msgid "reproducibility, checking" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11552 +#: guix-git/doc/guix.texi:11866 msgid "Rebuild @var{package-or-derivation}, which are already available in the store, and raise an error if the build results are not bit-for-bit identical." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11557 +#: guix-git/doc/guix.texi:11871 msgid "This mechanism allows you to check whether previously installed substitutes are genuine (@pxref{Substitutes}), or whether the build result of a package is deterministic. @xref{Invoking guix challenge}, for more background information and tools." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11562 +#: guix-git/doc/guix.texi:11876 #, no-wrap msgid "--repair" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11563 +#: guix-git/doc/guix.texi:11877 #, no-wrap msgid "repairing store items" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11567 +#: guix-git/doc/guix.texi:11881 msgid "Attempt to repair the specified store items, if they are corrupt, by re-downloading or rebuilding them." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11569 +#: guix-git/doc/guix.texi:11883 msgid "This operation is not atomic and thus restricted to @code{root}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11570 +#: guix-git/doc/guix.texi:11884 #, no-wrap msgid "--derivations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11574 +#: guix-git/doc/guix.texi:11888 msgid "Return the derivation paths, not the output paths, of the given packages." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11577 +#: guix-git/doc/guix.texi:11891 #, no-wrap msgid "GC roots, adding" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11578 +#: guix-git/doc/guix.texi:11892 #, no-wrap msgid "garbage collector roots, adding" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11581 guix-git/doc/guix.texi:35312 +#: guix-git/doc/guix.texi:11895 guix-git/doc/guix.texi:35756 msgid "Make @var{file} a symlink to the result, and register it as a garbage collector root." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11587 +#: guix-git/doc/guix.texi:11901 msgid "Consequently, the results of this @command{guix build} invocation are protected from garbage collection until @var{file} is removed. When that option is omitted, build results are eligible for garbage collection as soon as the build completes. @xref{Invoking guix gc}, for more on GC roots." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11588 +#: guix-git/doc/guix.texi:11902 #, no-wrap msgid "--log-file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11589 +#: guix-git/doc/guix.texi:11903 #, no-wrap msgid "build logs, access" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11593 +#: guix-git/doc/guix.texi:11907 msgid "Return the build log file names or URLs for the given @var{package-or-derivation}, or raise an error if build logs are missing." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11596 +#: guix-git/doc/guix.texi:11910 msgid "This works regardless of how packages or derivations are specified. For instance, the following invocations are equivalent:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11602 +#: guix-git/doc/guix.texi:11916 #, no-wrap msgid "" "guix build --log-file $(guix build -d guile)\n" @@ -21939,17 +22547,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11607 +#: guix-git/doc/guix.texi:11921 msgid "If a log is unavailable locally, and unless @option{--no-substitutes} is passed, the command looks for a corresponding log on one of the substitute servers (as specified with @option{--substitute-urls})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11610 +#: guix-git/doc/guix.texi:11924 msgid "So for instance, imagine you want to see the build log of GDB on MIPS, but you are actually on an @code{x86_64} machine:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11614 +#: guix-git/doc/guix.texi:11928 #, no-wrap msgid "" "$ guix build --log-file gdb -s aarch64-linux\n" @@ -21957,33 +22565,33 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11617 +#: guix-git/doc/guix.texi:11931 msgid "You can freely access a huge library of build logs!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11622 +#: guix-git/doc/guix.texi:11936 #, no-wrap msgid "build failures, debugging" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11628 +#: guix-git/doc/guix.texi:11942 msgid "When defining a new package (@pxref{Defining Packages}), you will probably find yourself spending some time debugging and tweaking the build until it succeeds. To do that, you need to operate the build commands yourself in an environment as close as possible to the one the build daemon uses." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11633 +#: guix-git/doc/guix.texi:11947 msgid "To that end, the first thing to do is to use the @option{--keep-failed} or @option{-K} option of @command{guix build}, which will keep the failed build tree in @file{/tmp} or whatever directory you specified as @env{TMPDIR} (@pxref{Common Build Options, @option{--keep-failed}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11639 +#: guix-git/doc/guix.texi:11953 msgid "From there on, you can @command{cd} to the failed build tree and source the @file{environment-variables} file, which contains all the environment variable definitions that were in place when the build failed. So let's say you're debugging a build failure in package @code{foo}; a typical session would look like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11646 +#: guix-git/doc/guix.texi:11960 #, no-wrap msgid "" "$ guix build foo -K\n" @@ -21994,22 +22602,22 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11650 +#: guix-git/doc/guix.texi:11964 msgid "Now, you can invoke commands as if you were the daemon (almost) and troubleshoot your build process." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11656 +#: guix-git/doc/guix.texi:11970 msgid "Sometimes it happens that, for example, a package's tests pass when you run them manually but they fail when the daemon runs them. This can happen because the daemon runs builds in containers where, unlike in our environment above, network access is missing, @file{/bin/sh} does not exist, etc. (@pxref{Build Environment Setup})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11659 +#: guix-git/doc/guix.texi:11973 msgid "In such cases, you may need to run inspect the build process from within a container similar to the one the build daemon creates:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11667 +#: guix-git/doc/guix.texi:11981 #, no-wrap msgid "" "$ guix build -K foo\n" @@ -22021,715 +22629,722 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11676 +#: guix-git/doc/guix.texi:11990 msgid "Here, @command{guix shell -C} creates a container and spawns a new shell in it (@pxref{Invoking guix shell}). The @command{strace gdb} part adds the @command{strace} and @command{gdb} commands to the container, which you may find handy while debugging. The @option{--no-grafts} option makes sure we get the exact same environment, with ungrafted packages (@pxref{Security Updates}, for more info on grafts)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11679 +#: guix-git/doc/guix.texi:11993 msgid "To get closer to a container like that used by the build daemon, we can remove @file{/bin/sh}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11682 +#: guix-git/doc/guix.texi:11996 #, no-wrap msgid "[env]# rm /bin/sh\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11686 +#: guix-git/doc/guix.texi:12000 msgid "(Don't worry, this is harmless: this is all happening in the throw-away container created by @command{guix shell}.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11689 +#: guix-git/doc/guix.texi:12003 msgid "The @command{strace} command is probably not in the search path, but we can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11692 +#: guix-git/doc/guix.texi:12006 #, no-wrap msgid "[env]# $GUIX_ENVIRONMENT/bin/strace -f -o log make check\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11697 +#: guix-git/doc/guix.texi:12011 msgid "In this way, not only you will have reproduced the environment variables the daemon uses, you will also be running the build process in a container similar to the one the daemon uses." msgstr "" #. type: section -#: guix-git/doc/guix.texi:11700 +#: guix-git/doc/guix.texi:12014 #, no-wrap msgid "Invoking @command{guix edit}" msgstr "Вызов @command{guix edit}" #. type: command{#1} -#: guix-git/doc/guix.texi:11702 +#: guix-git/doc/guix.texi:12016 #, no-wrap msgid "guix edit" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11703 +#: guix-git/doc/guix.texi:12017 #, no-wrap msgid "package definition, editing" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11708 +#: guix-git/doc/guix.texi:12022 msgid "So many packages, so many source files! The @command{guix edit} command facilitates the life of users and packagers by pointing their editor at the source file containing the definition of the specified packages. For instance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11711 +#: guix-git/doc/guix.texi:12025 #, no-wrap msgid "guix edit gcc@@4.9 vim\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11717 +#: guix-git/doc/guix.texi:12031 msgid "launches the program specified in the @env{VISUAL} or in the @env{EDITOR} environment variable to view the recipe of GCC@tie{}4.9.3 and that of Vim." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11723 +#: guix-git/doc/guix.texi:12037 msgid "If you are using a Guix Git checkout (@pxref{Building from Git}), or have created your own packages on @env{GUIX_PACKAGE_PATH} (@pxref{Package Modules}), you will be able to edit the package recipes. In other cases, you will be able to examine the read-only recipes for packages currently in the store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11728 +#: guix-git/doc/guix.texi:12042 msgid "Instead of @env{GUIX_PACKAGE_PATH}, the command-line option @option{--load-path=@var{directory}} (or in short @option{-L @var{directory}}) allows you to add @var{directory} to the front of the package module search path and so make your own packages visible." msgstr "" #. type: section -#: guix-git/doc/guix.texi:11730 +#: guix-git/doc/guix.texi:12044 #, no-wrap msgid "Invoking @command{guix download}" msgstr "Вызов @command{guix download}" #. type: command{#1} -#: guix-git/doc/guix.texi:11732 +#: guix-git/doc/guix.texi:12046 #, no-wrap msgid "guix download" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11733 +#: guix-git/doc/guix.texi:12047 #, no-wrap msgid "downloading package sources" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11740 +#: guix-git/doc/guix.texi:12054 msgid "When writing a package definition, developers typically need to download a source tarball, compute its SHA256 hash, and write that hash in the package definition (@pxref{Defining Packages}). The @command{guix download} tool helps with this task: it downloads a file from the given URI, adds it to the store, and prints both its file name in the store and its SHA256 hash." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11747 +#: guix-git/doc/guix.texi:12061 msgid "The fact that the downloaded file is added to the store saves bandwidth: when the developer eventually tries to build the newly defined package with @command{guix build}, the source tarball will not have to be downloaded again because it is already in the store. It is also a convenient way to temporarily stash files, which may be deleted eventually (@pxref{Invoking guix gc})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11755 +#: guix-git/doc/guix.texi:12069 msgid "The @command{guix download} command supports the same URIs as used in package definitions. In particular, it supports @code{mirror://} URIs. @code{https} URIs (HTTP over TLS) are supported @emph{provided} the Guile bindings for GnuTLS are available in the user's environment; when they are not available, an error is raised. @xref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11760 +#: guix-git/doc/guix.texi:12074 msgid "@command{guix download} verifies HTTPS server certificates by loading the certificates of X.509 authorities from the directory pointed to by the @env{SSL_CERT_DIR} environment variable (@pxref{X.509 Certificates}), unless @option{--no-check-certificate} is used." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11762 guix-git/doc/guix.texi:13565 +#: guix-git/doc/guix.texi:12076 guix-git/doc/guix.texi:13922 msgid "The following options are available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11764 guix-git/doc/guix.texi:11808 +#: guix-git/doc/guix.texi:12078 guix-git/doc/guix.texi:12122 #, no-wrap msgid "--hash=@var{algorithm}" msgstr "--show=@var{package}" #. type: itemx -#: guix-git/doc/guix.texi:11765 guix-git/doc/guix.texi:11809 +#: guix-git/doc/guix.texi:12079 guix-git/doc/guix.texi:12123 #, no-wrap msgid "-H @var{algorithm}" msgstr "-f @var{format}" #. type: table -#: guix-git/doc/guix.texi:11768 +#: guix-git/doc/guix.texi:12082 msgid "Compute a hash using the specified @var{algorithm}. @xref{Invoking guix hash}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11769 guix-git/doc/guix.texi:11818 +#: guix-git/doc/guix.texi:12083 guix-git/doc/guix.texi:12132 #, no-wrap msgid "--format=@var{fmt}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11770 guix-git/doc/guix.texi:11819 +#: guix-git/doc/guix.texi:12084 guix-git/doc/guix.texi:12133 #, no-wrap msgid "-f @var{fmt}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11773 +#: guix-git/doc/guix.texi:12087 msgid "Write the hash in the format specified by @var{fmt}. For more information on the valid values for @var{fmt}, @pxref{Invoking guix hash}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11774 +#: guix-git/doc/guix.texi:12088 #, no-wrap msgid "--no-check-certificate" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11776 +#: guix-git/doc/guix.texi:12090 msgid "Do not validate the X.509 certificates of HTTPS servers." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11780 +#: guix-git/doc/guix.texi:12094 msgid "When using this option, you have @emph{absolutely no guarantee} that you are communicating with the authentic server responsible for the given URL, which makes you vulnerable to ``man-in-the-middle'' attacks." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11781 +#: guix-git/doc/guix.texi:12095 #, no-wrap msgid "--output=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11782 +#: guix-git/doc/guix.texi:12096 #, no-wrap msgid "-o @var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11785 +#: guix-git/doc/guix.texi:12099 msgid "Save the downloaded file to @var{file} instead of adding it to the store." msgstr "" #. type: section -#: guix-git/doc/guix.texi:11788 +#: guix-git/doc/guix.texi:12102 #, no-wrap msgid "Invoking @command{guix hash}" msgstr "Вызов @command{guix hash}" #. type: command{#1} -#: guix-git/doc/guix.texi:11790 +#: guix-git/doc/guix.texi:12104 #, no-wrap msgid "guix hash" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11795 +#: guix-git/doc/guix.texi:12109 msgid "The @command{guix hash} command computes the hash of a file. It is primarily a convenience tool for anyone contributing to the distribution: it computes the cryptographic hash of one or more files, which can be used in the definition of a package (@pxref{Defining Packages})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11800 +#: guix-git/doc/guix.texi:12114 #, fuzzy, no-wrap #| msgid "guix repl @var{options} [@var{file} @var{args}]\n" msgid "guix hash @var{option} @var{file} ...\n" msgstr "guix repl @var{options} [@var{file} @var{args}]\n" #. type: Plain text -#: guix-git/doc/guix.texi:11805 +#: guix-git/doc/guix.texi:12119 msgid "When @var{file} is @code{-} (a hyphen), @command{guix hash} computes the hash of data read from standard input. @command{guix hash} has the following options:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11812 +#: guix-git/doc/guix.texi:12126 msgid "Compute a hash using the specified @var{algorithm}, @code{sha256} by default." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11817 -msgid "@var{algorithm} must the name of a cryptographic hash algorithm supported by Libgcrypt @i{via} Guile-Gcrypt---e.g., @code{sha512} or @code{sha3-256} (@pxref{Hash Functions,,, guile-gcrypt, Guile-Gcrypt Reference Manual})." +#: guix-git/doc/guix.texi:12131 +msgid "@var{algorithm} must be the name of a cryptographic hash algorithm supported by Libgcrypt @i{via} Guile-Gcrypt---e.g., @code{sha512} or @code{sha3-256} (@pxref{Hash Functions,,, guile-gcrypt, Guile-Gcrypt Reference Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11821 +#: guix-git/doc/guix.texi:12135 msgid "Write the hash in the format specified by @var{fmt}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11824 +#: guix-git/doc/guix.texi:12138 msgid "Supported formats: @code{base64}, @code{nix-base32}, @code{base32}, @code{base16} (@code{hex} and @code{hexadecimal} can be used as well)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11828 +#: guix-git/doc/guix.texi:12142 msgid "If the @option{--format} option is not specified, @command{guix hash} will output the hash in @code{nix-base32}. This representation is used in the definitions of packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11833 -msgid "This option is deprecated in favor of @option{--serializer}. It is a legacy alias for @var{type} sets to @code{nar}." +#: guix-git/doc/guix.texi:12148 +msgid "The @option{--recursive} option is deprecated in favor of @option{--serializer=nar} (see below); @option{-r} remains accepted as a convenient shorthand." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11834 +#: guix-git/doc/guix.texi:12149 #, fuzzy, no-wrap #| msgid "--type=@var{type}" msgid "--serializer=@var{type}" msgstr "--type=@var{type}" +#. type: itemx +#: guix-git/doc/guix.texi:12150 +#, fuzzy, no-wrap +#| msgid "-S @var{spec}" +msgid "-S @var{type}" +msgstr "-S @var{spec}" + #. type: table -#: guix-git/doc/guix.texi:11837 +#: guix-git/doc/guix.texi:12152 msgid "Compute the hash on @var{file} using @var{type} serialization." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11839 +#: guix-git/doc/guix.texi:12154 #, fuzzy #| msgid "The @var{options} can be among the following:" msgid "@var{type} may be one of the following:" msgstr "Опции @var{options} могут быть следующими:" #. type: item -#: guix-git/doc/guix.texi:11841 guix-git/doc/guix.texi:13918 -#: guix-git/doc/guix.texi:17405 guix-git/doc/guix.texi:19679 +#: guix-git/doc/guix.texi:12156 guix-git/doc/guix.texi:14275 +#: guix-git/doc/guix.texi:17767 guix-git/doc/guix.texi:20041 #, no-wrap msgid "none" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11843 +#: guix-git/doc/guix.texi:12158 msgid "This is the default: it computes the hash of a file's contents." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11844 +#: guix-git/doc/guix.texi:12159 #, no-wrap msgid "nar" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11854 -msgid "Compute the hash of a ``normalized archive'' (or ``nar'') containing @var{file}, including its children if it is a directory. Some of the metadata of @var{file} is part of the archive; for instance, when @var{file} is a regular file, the hash is different depending on whether @var{file} is executable or not. Metadata such as time stamps has no impact on the hash (@pxref{Invoking guix archive}, for more info on the nar format)." +#: guix-git/doc/guix.texi:12169 +msgid "Compute the hash of a ``normalized archive'' (or ``nar'') containing @var{file}, including its children if it is a directory. Some of the metadata of @var{file} is part of the archive; for instance, when @var{file} is a regular file, the hash is different depending on whether @var{file} is executable or not. Metadata such as time stamps have no impact on the hash (@pxref{Invoking guix archive}, for more info on the nar format)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11855 +#: guix-git/doc/guix.texi:12170 #, fuzzy, no-wrap #| msgid "github" msgid "git" msgstr "github" #. type: table -#: guix-git/doc/guix.texi:11858 -msgid "Compute the has of the file or directory as a Git ``tree'', following the same method as the Git version control system." +#: guix-git/doc/guix.texi:12173 +msgid "Compute the hash of the file or directory as a Git ``tree'', following the same method as the Git version control system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11860 +#: guix-git/doc/guix.texi:12175 #, no-wrap msgid "--exclude-vcs" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11861 guix-git/doc/guix.texi:13038 +#: guix-git/doc/guix.texi:12176 guix-git/doc/guix.texi:13395 #, no-wrap msgid "-x" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11864 +#: guix-git/doc/guix.texi:12179 msgid "When combined with @option{--recursive}, exclude version control system directories (@file{.bzr}, @file{.git}, @file{.hg}, etc.)." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:11865 +#: guix-git/doc/guix.texi:12180 #, no-wrap msgid "git-fetch" msgstr "git-fetch" #. type: table -#: guix-git/doc/guix.texi:11869 +#: guix-git/doc/guix.texi:12184 msgid "As an example, here is how you would compute the hash of a Git checkout, which is useful when using the @code{git-fetch} method (@pxref{origin Reference}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11874 +#: guix-git/doc/guix.texi:12189 #, no-wrap msgid "" "$ git clone http://example.org/foo.git\n" "$ cd foo\n" -"$ guix hash -rx .\n" +"$ guix hash -x --serializer=nar .\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11878 guix-git/doc/guix.texi:11883 +#: guix-git/doc/guix.texi:12193 guix-git/doc/guix.texi:12198 #, no-wrap msgid "Invoking @command{guix import}" msgstr "Вызов @command{guix import}" #. type: cindex -#: guix-git/doc/guix.texi:11880 +#: guix-git/doc/guix.texi:12195 #, no-wrap msgid "importing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11881 +#: guix-git/doc/guix.texi:12196 #, no-wrap msgid "package import" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11882 +#: guix-git/doc/guix.texi:12197 #, no-wrap msgid "package conversion" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11890 +#: guix-git/doc/guix.texi:12205 msgid "The @command{guix import} command is useful for people who would like to add a package to the distribution with as little work as possible---a legitimate demand. The command knows of a few repositories from which it can ``import'' package metadata. The result is a package definition, or a template thereof, in the format we know (@pxref{Defining Packages})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11895 +#: guix-git/doc/guix.texi:12210 #, no-wrap msgid "guix import @var{importer} @var{options}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11900 +#: guix-git/doc/guix.texi:12215 msgid "@var{importer} specifies the source from which to import package metadata, and @var{options} specifies a package identifier and other options specific to @var{importer}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11904 +#: guix-git/doc/guix.texi:12219 msgid "Some of the importers rely on the ability to run the @command{gpgv} command. For these, GnuPG must be installed and in @code{$PATH}; run @code{guix install gnupg} if needed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11906 +#: guix-git/doc/guix.texi:12221 msgid "Currently, the available ``importers'' are:" msgstr "Возможные форматы:" #. type: item -#: guix-git/doc/guix.texi:11908 guix-git/doc/guix.texi:12546 +#: guix-git/doc/guix.texi:12223 guix-git/doc/guix.texi:12861 #, no-wrap msgid "gnu" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11912 +#: guix-git/doc/guix.texi:12227 msgid "Import metadata for the given GNU package. This provides a template for the latest version of that GNU package, including the hash of its source tarball, and its canonical synopsis and description." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11915 +#: guix-git/doc/guix.texi:12230 msgid "Additional information such as the package dependencies and its license needs to be figured out manually." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11918 +#: guix-git/doc/guix.texi:12233 msgid "For example, the following command returns a package definition for GNU@tie{}Hello:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11921 +#: guix-git/doc/guix.texi:12236 #, no-wrap msgid "guix import gnu hello\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11924 guix-git/doc/guix.texi:12165 -#: guix-git/doc/guix.texi:12215 guix-git/doc/guix.texi:12244 +#: guix-git/doc/guix.texi:12239 guix-git/doc/guix.texi:12480 +#: guix-git/doc/guix.texi:12530 guix-git/doc/guix.texi:12559 msgid "Specific command-line options are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11926 guix-git/doc/guix.texi:12743 +#: guix-git/doc/guix.texi:12241 guix-git/doc/guix.texi:13058 #, no-wrap msgid "--key-download=@var{policy}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11930 +#: guix-git/doc/guix.texi:12245 msgid "As for @command{guix refresh}, specify the policy to handle missing OpenPGP keys when verifying the package signature. @xref{Invoking guix refresh, @option{--key-download}}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11932 guix-git/doc/guix.texi:11933 -#: guix-git/doc/guix.texi:12570 +#: guix-git/doc/guix.texi:12247 guix-git/doc/guix.texi:12248 +#: guix-git/doc/guix.texi:12885 #, no-wrap msgid "pypi" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11940 +#: guix-git/doc/guix.texi:12255 msgid "Import metadata from the @uref{https://pypi.python.org/, Python Package Index}. Information is taken from the JSON-formatted description available at @code{pypi.python.org} and usually includes all the relevant information, including package dependencies. For maximum efficiency, it is recommended to install the @command{unzip} utility, so that the importer can unzip Python wheels and gather data from them." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11943 +#: guix-git/doc/guix.texi:12258 msgid "The command below imports metadata for the latest version of the @code{itsdangerous} Python package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11946 +#: guix-git/doc/guix.texi:12261 #, no-wrap msgid "guix import pypi itsdangerous\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11949 guix-git/doc/guix.texi:12052 -#: guix-git/doc/guix.texi:12393 +#: guix-git/doc/guix.texi:12264 guix-git/doc/guix.texi:12367 +#: guix-git/doc/guix.texi:12708 msgid "You can also ask for a specific version:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11952 +#: guix-git/doc/guix.texi:12267 #, fuzzy, no-wrap #| msgid "guix import hackage mtl@@2.1.3.1\n" msgid "guix import pypi itsdangerous@@1.1.0\n" msgstr "guix import hackage mtl@@2.1.3.1\n" #. type: table -#: guix-git/doc/guix.texi:11960 guix-git/doc/guix.texi:11985 -#: guix-git/doc/guix.texi:12017 guix-git/doc/guix.texi:12188 -#: guix-git/doc/guix.texi:12229 guix-git/doc/guix.texi:12280 -#: guix-git/doc/guix.texi:12305 guix-git/doc/guix.texi:12321 -#: guix-git/doc/guix.texi:12369 guix-git/doc/guix.texi:12405 +#: guix-git/doc/guix.texi:12275 guix-git/doc/guix.texi:12300 +#: guix-git/doc/guix.texi:12332 guix-git/doc/guix.texi:12503 +#: guix-git/doc/guix.texi:12544 guix-git/doc/guix.texi:12595 +#: guix-git/doc/guix.texi:12620 guix-git/doc/guix.texi:12636 +#: guix-git/doc/guix.texi:12684 guix-git/doc/guix.texi:12720 msgid "Traverse the dependency graph of the given upstream package recursively and generate package expressions for all those packages that are not yet in Guix." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11962 guix-git/doc/guix.texi:11963 -#: guix-git/doc/guix.texi:12572 +#: guix-git/doc/guix.texi:12277 guix-git/doc/guix.texi:12278 +#: guix-git/doc/guix.texi:12887 #, no-wrap msgid "gem" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11972 +#: guix-git/doc/guix.texi:12287 msgid "Import metadata from @uref{https://rubygems.org/, RubyGems}. Information is taken from the JSON-formatted description available at @code{rubygems.org} and includes most relevant information, including runtime dependencies. There are some caveats, however. The metadata doesn't distinguish between synopses and descriptions, so the same string is used for both fields. Additionally, the details of non-Ruby dependencies required to build native extensions is unavailable and left as an exercise to the packager." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11974 +#: guix-git/doc/guix.texi:12289 msgid "The command below imports metadata for the @code{rails} Ruby package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11977 +#: guix-git/doc/guix.texi:12292 #, no-wrap msgid "guix import gem rails\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11987 guix-git/doc/guix.texi:11988 +#: guix-git/doc/guix.texi:12302 guix-git/doc/guix.texi:12303 #, no-wrap msgid "minetest" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11989 +#: guix-git/doc/guix.texi:12304 #, no-wrap msgid "ContentDB" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11998 +#: guix-git/doc/guix.texi:12313 msgid "Import metadata from @uref{https://content.minetest.net, ContentDB}. Information is taken from the JSON-formatted metadata provided through @uref{https://content.minetest.net/help/api/, ContentDB's API} and includes most relevant information, including dependencies. There are some caveats, however. The license information is often incomplete. The commit hash is sometimes missing. The descriptions are in the Markdown format, but Guix uses Texinfo instead. Texture packs and subgames are unsupported." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12000 +#: guix-git/doc/guix.texi:12315 msgid "The command below imports metadata for the Mesecons mod by Jeija:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12003 +#: guix-git/doc/guix.texi:12318 #, no-wrap msgid "guix import minetest Jeija/mesecons\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12006 +#: guix-git/doc/guix.texi:12321 msgid "The author name can also be left out:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12009 +#: guix-git/doc/guix.texi:12324 #, no-wrap msgid "guix import minetest mesecons\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12019 guix-git/doc/guix.texi:12568 +#: guix-git/doc/guix.texi:12334 guix-git/doc/guix.texi:12883 #, no-wrap msgid "cpan" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12020 +#: guix-git/doc/guix.texi:12335 #, no-wrap msgid "CPAN" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12028 +#: guix-git/doc/guix.texi:12343 msgid "Import metadata from @uref{https://www.metacpan.org/, MetaCPAN}. Information is taken from the JSON-formatted metadata provided through @uref{https://fastapi.metacpan.org/, MetaCPAN's API} and includes most relevant information, such as module dependencies. License information should be checked closely. If Perl is available in the store, then the @code{corelist} utility will be used to filter core modules out of the list of dependencies." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12031 +#: guix-git/doc/guix.texi:12346 msgid "The command command below imports metadata for the Acme::Boolean Perl module:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12034 +#: guix-git/doc/guix.texi:12349 #, no-wrap msgid "guix import cpan Acme::Boolean\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12036 guix-git/doc/guix.texi:12564 +#: guix-git/doc/guix.texi:12351 guix-git/doc/guix.texi:12879 #, no-wrap msgid "cran" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12037 +#: guix-git/doc/guix.texi:12352 #, no-wrap msgid "CRAN" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12038 +#: guix-git/doc/guix.texi:12353 #, no-wrap msgid "Bioconductor" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12042 +#: guix-git/doc/guix.texi:12357 msgid "Import metadata from @uref{https://cran.r-project.org/, CRAN}, the central repository for the @uref{https://r-project.org, GNU@tie{}R statistical and graphical environment}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12044 +#: guix-git/doc/guix.texi:12359 msgid "Information is extracted from the @file{DESCRIPTION} file of the package." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12046 +#: guix-git/doc/guix.texi:12361 msgid "The command command below imports metadata for the Cairo R package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12049 +#: guix-git/doc/guix.texi:12364 #, no-wrap msgid "guix import cran Cairo\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12055 +#: guix-git/doc/guix.texi:12370 #, fuzzy, no-wrap #| msgid "guix import hackage mtl@@2.1.3.1\n" msgid "guix import cran rasterVis@@0.50.3\n" msgstr "guix import hackage mtl@@2.1.3.1\n" #. type: table -#: guix-git/doc/guix.texi:12060 +#: guix-git/doc/guix.texi:12375 msgid "When @option{--recursive} is added, the importer will traverse the dependency graph of the given upstream package recursively and generate package expressions for all those packages that are not yet in Guix." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12067 +#: guix-git/doc/guix.texi:12382 msgid "When @option{--style=specification} is added, the importer will generate package definitions whose inputs are package specifications instead of references to package variables. This is useful when generated package definitions are to be appended to existing user modules, as the list of used package modules need not be changed. The default is @option{--style=variable}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12072 +#: guix-git/doc/guix.texi:12387 msgid "When @option{--archive=bioconductor} is added, metadata is imported from @uref{https://www.bioconductor.org/, Bioconductor}, a repository of R packages for the analysis and comprehension of high-throughput genomic data in bioinformatics." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12075 +#: guix-git/doc/guix.texi:12390 msgid "Information is extracted from the @file{DESCRIPTION} file contained in the package archive." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12077 +#: guix-git/doc/guix.texi:12392 msgid "The command below imports metadata for the GenomicRanges R package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12080 +#: guix-git/doc/guix.texi:12395 #, no-wrap msgid "guix import cran --archive=bioconductor GenomicRanges\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12085 +#: guix-git/doc/guix.texi:12400 msgid "Finally, you can also import R packages that have not yet been published on CRAN or Bioconductor as long as they are in a git repository. Use @option{--archive=git} followed by the URL of the git repository:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12088 +#: guix-git/doc/guix.texi:12403 #, no-wrap msgid "guix import cran --archive=git https://github.com/immunogenomics/harmony\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12090 +#: guix-git/doc/guix.texi:12405 #, no-wrap msgid "texlive" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12091 +#: guix-git/doc/guix.texi:12406 #, no-wrap msgid "TeX Live" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12092 +#: guix-git/doc/guix.texi:12407 #, no-wrap msgid "CTAN" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12096 +#: guix-git/doc/guix.texi:12411 msgid "Import TeX package information from the TeX Live package database for TeX packages that are part of the @uref{https://www.tug.org/texlive/, TeX Live distribution}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12101 +#: guix-git/doc/guix.texi:12416 msgid "Information about the package is obtained from the TeX Live package database, a plain text file that is included in the @code{texlive-bin} package. The source code is downloaded from possibly multiple locations in the SVN repository of the Tex Live project." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12104 +#: guix-git/doc/guix.texi:12419 msgid "The command command below imports metadata for the @code{fontspec} TeX package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12107 +#: guix-git/doc/guix.texi:12422 #, no-wrap msgid "guix import texlive fontspec\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12110 +#: guix-git/doc/guix.texi:12425 #, no-wrap msgid "JSON, import" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12113 +#: guix-git/doc/guix.texi:12428 msgid "Import package metadata from a local JSON file. Consider the following example package definition in JSON format:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12126 +#: guix-git/doc/guix.texi:12441 #, no-wrap msgid "" "@{\n" @@ -22746,17 +23361,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12132 +#: guix-git/doc/guix.texi:12447 msgid "The field names are the same as for the @code{} record (@xref{Defining Packages}). References to other packages are provided as JSON lists of quoted package specification strings such as @code{guile} or @code{guile@@2.0}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12135 +#: guix-git/doc/guix.texi:12450 msgid "The importer also supports a more explicit source definition using the common fields for @code{} records:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12148 +#: guix-git/doc/guix.texi:12463 #, no-wrap msgid "" "@{\n" @@ -22773,386 +23388,386 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12152 +#: guix-git/doc/guix.texi:12467 msgid "The command below reads metadata from the JSON file @code{hello.json} and outputs a package expression:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12155 +#: guix-git/doc/guix.texi:12470 #, no-wrap msgid "guix import json hello.json\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12157 guix-git/doc/guix.texi:12158 -#: guix-git/doc/guix.texi:12576 +#: guix-git/doc/guix.texi:12472 guix-git/doc/guix.texi:12473 +#: guix-git/doc/guix.texi:12891 #, no-wrap msgid "hackage" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12163 +#: guix-git/doc/guix.texi:12478 msgid "Import metadata from the Haskell community's central package archive @uref{https://hackage.haskell.org/, Hackage}. Information is taken from Cabal files and includes all the relevant information, including package dependencies." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12167 +#: guix-git/doc/guix.texi:12482 #, no-wrap msgid "--stdin" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12168 +#: guix-git/doc/guix.texi:12483 #, no-wrap msgid "-s" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12170 +#: guix-git/doc/guix.texi:12485 msgid "Read a Cabal file from standard input." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12170 guix-git/doc/guix.texi:12217 +#: guix-git/doc/guix.texi:12485 guix-git/doc/guix.texi:12532 #, no-wrap msgid "--no-test-dependencies" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12173 guix-git/doc/guix.texi:12220 +#: guix-git/doc/guix.texi:12488 guix-git/doc/guix.texi:12535 msgid "Do not include dependencies required only by the test suites." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12173 +#: guix-git/doc/guix.texi:12488 #, no-wrap msgid "--cabal-environment=@var{alist}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12174 +#: guix-git/doc/guix.texi:12489 #, no-wrap msgid "-e @var{alist}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12183 +#: guix-git/doc/guix.texi:12498 msgid "@var{alist} is a Scheme alist defining the environment in which the Cabal conditionals are evaluated. The accepted keys are: @code{os}, @code{arch}, @code{impl} and a string representing the name of a flag. The value associated with a flag has to be either the symbol @code{true} or @code{false}. The value associated with other keys has to conform to the Cabal file format definition. The default value associated with the keys @code{os}, @code{arch} and @code{impl} is @samp{linux}, @samp{x86_64} and @samp{ghc}, respectively." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12193 +#: guix-git/doc/guix.texi:12508 msgid "The command below imports metadata for the latest version of the HTTP Haskell package without including test dependencies and specifying the value of the flag @samp{network-uri} as @code{false}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12196 +#: guix-git/doc/guix.texi:12511 #, no-wrap msgid "guix import hackage -t -e \"'((\\\"network-uri\\\" . false))\" HTTP\n" msgstr "guix import hackage -t -e \"'((\\\"network-uri\\\" . false))\" HTTP\n" #. type: table -#: guix-git/doc/guix.texi:12200 +#: guix-git/doc/guix.texi:12515 msgid "A specific package version may optionally be specified by following the package name by an at-sign and a version number as in the following example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12203 +#: guix-git/doc/guix.texi:12518 #, no-wrap msgid "guix import hackage mtl@@2.1.3.1\n" msgstr "guix import hackage mtl@@2.1.3.1\n" #. type: item -#: guix-git/doc/guix.texi:12205 guix-git/doc/guix.texi:12206 -#: guix-git/doc/guix.texi:12578 +#: guix-git/doc/guix.texi:12520 guix-git/doc/guix.texi:12521 +#: guix-git/doc/guix.texi:12893 #, no-wrap msgid "stackage" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12213 +#: guix-git/doc/guix.texi:12528 msgid "The @code{stackage} importer is a wrapper around the @code{hackage} one. It takes a package name, looks up the package version included in a long-term support (LTS) @uref{https://www.stackage.org, Stackage} release and uses the @code{hackage} importer to retrieve its metadata. Note that it is up to you to select an LTS release compatible with the GHC compiler used by Guix." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12220 +#: guix-git/doc/guix.texi:12535 #, no-wrap msgid "--lts-version=@var{version}" msgstr "--lts-version=@var{version}" #. type: itemx -#: guix-git/doc/guix.texi:12221 +#: guix-git/doc/guix.texi:12536 #, no-wrap msgid "-l @var{version}" msgstr "-l @var{version}" #. type: table -#: guix-git/doc/guix.texi:12224 +#: guix-git/doc/guix.texi:12539 msgid "@var{version} is the desired LTS release version. If omitted the latest release is used." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12233 +#: guix-git/doc/guix.texi:12548 msgid "The command below imports metadata for the HTTP Haskell package included in the LTS Stackage release version 7.18:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12236 +#: guix-git/doc/guix.texi:12551 #, no-wrap msgid "guix import stackage --lts-version=7.18 HTTP\n" msgstr "guix import stackage --lts-version=7.18 HTTP\n" #. type: item -#: guix-git/doc/guix.texi:12238 guix-git/doc/guix.texi:12239 -#: guix-git/doc/guix.texi:12562 +#: guix-git/doc/guix.texi:12553 guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12877 #, no-wrap msgid "elpa" msgstr "elpa" #. type: table -#: guix-git/doc/guix.texi:12242 +#: guix-git/doc/guix.texi:12557 msgid "Import metadata from an Emacs Lisp Package Archive (ELPA) package repository (@pxref{Packages,,, emacs, The GNU Emacs Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12246 +#: guix-git/doc/guix.texi:12561 #, no-wrap msgid "--archive=@var{repo}" msgstr "--archive=@var{repo}" #. type: itemx -#: guix-git/doc/guix.texi:12247 +#: guix-git/doc/guix.texi:12562 #, no-wrap msgid "-a @var{repo}" msgstr "-a @var{repo}" #. type: table -#: guix-git/doc/guix.texi:12251 +#: guix-git/doc/guix.texi:12566 msgid "@var{repo} identifies the archive repository from which to retrieve the information. Currently the supported repositories and their identifiers are:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12255 +#: guix-git/doc/guix.texi:12570 msgid "@uref{https://elpa.gnu.org/packages, GNU}, selected by the @code{gnu} identifier. This is the default." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12261 +#: guix-git/doc/guix.texi:12576 msgid "Packages from @code{elpa.gnu.org} are signed with one of the keys contained in the GnuPG keyring at @file{share/emacs/25.1/etc/package-keyring.gpg} (or similar) in the @code{emacs} package (@pxref{Package Installation, ELPA package signatures,, emacs, The GNU Emacs Manual})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12265 +#: guix-git/doc/guix.texi:12580 msgid "@uref{https://elpa.nongnu.org/nongnu/, NonGNU}, selected by the @code{nongnu} identifier." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12269 +#: guix-git/doc/guix.texi:12584 msgid "@uref{https://stable.melpa.org/packages, MELPA-Stable}, selected by the @code{melpa-stable} identifier." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12273 +#: guix-git/doc/guix.texi:12588 msgid "@uref{https://melpa.org/packages, MELPA}, selected by the @code{melpa} identifier." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12282 guix-git/doc/guix.texi:12283 -#: guix-git/doc/guix.texi:12580 +#: guix-git/doc/guix.texi:12597 guix-git/doc/guix.texi:12598 +#: guix-git/doc/guix.texi:12895 #, no-wrap msgid "crate" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12286 +#: guix-git/doc/guix.texi:12601 msgid "Import metadata from the crates.io Rust package repository @uref{https://crates.io, crates.io}, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12289 +#: guix-git/doc/guix.texi:12604 #, no-wrap msgid "guix import crate blake2-rfc\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12292 +#: guix-git/doc/guix.texi:12607 msgid "The crate importer also allows you to specify a version string:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12295 +#: guix-git/doc/guix.texi:12610 #, no-wrap msgid "guix import crate constant-time-eq@@0.1.0\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12298 guix-git/doc/guix.texi:12314 -#: guix-git/doc/guix.texi:12362 guix-git/doc/guix.texi:12399 +#: guix-git/doc/guix.texi:12613 guix-git/doc/guix.texi:12629 +#: guix-git/doc/guix.texi:12677 guix-git/doc/guix.texi:12714 msgid "Additional options include:" msgstr "Дополительные опции включаю:" #. type: item -#: guix-git/doc/guix.texi:12307 +#: guix-git/doc/guix.texi:12622 #, no-wrap msgid "opam" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12308 +#: guix-git/doc/guix.texi:12623 #, no-wrap msgid "OPAM" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12309 +#: guix-git/doc/guix.texi:12624 #, no-wrap msgid "OCaml" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12312 +#: guix-git/doc/guix.texi:12627 msgid "Import metadata from the @uref{https://opam.ocaml.org/, OPAM} package repository used by the OCaml community." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12321 +#: guix-git/doc/guix.texi:12636 #, no-wrap msgid "--repo" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12325 +#: guix-git/doc/guix.texi:12640 msgid "By default, packages are searched in the official OPAM repository. This option, which can be used more than once, lets you add other repositories which will be searched for packages. It accepts as valid arguments:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12327 +#: guix-git/doc/guix.texi:12642 #, no-wrap msgid "the name of a known repository - can be one of @code{opam}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12330 +#: guix-git/doc/guix.texi:12645 msgid "@code{coq} (equivalent to @code{coq-released}), @code{coq-core-dev}, @code{coq-extra-dev} or @code{grew}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12330 +#: guix-git/doc/guix.texi:12645 #, fuzzy, no-wrap #| msgid "The URL of the Git repository to clone." msgid "the URL of a repository as expected by the" msgstr "URL-адрес репозитория Git для клонирования." #. type: itemize -#: guix-git/doc/guix.texi:12334 +#: guix-git/doc/guix.texi:12649 msgid "@code{opam repository add} command (for instance, the URL equivalent of the above @code{opam} name would be @uref{https://opam.ocaml.org})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12334 +#: guix-git/doc/guix.texi:12649 #, no-wrap msgid "the path to a local copy of a repository (a directory containing a" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12336 +#: guix-git/doc/guix.texi:12651 #, fuzzy #| msgid "Package Modules in a Sub-directory" msgid "@file{packages/} sub-directory)." msgstr "Пакетные модули в поддиректории" #. type: table -#: guix-git/doc/guix.texi:12341 +#: guix-git/doc/guix.texi:12656 msgid "Repositories are assumed to be passed to this option by order of preference. The additional repositories will not replace the default @code{opam} repository, which is always kept as a fallback." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12346 +#: guix-git/doc/guix.texi:12661 msgid "Also, please note that versions are not compared across repositories. The first repository (from left to right) that has at least one version of a given package will prevail over any others, and the version imported will be the latest one found @emph{in this repository only}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12349 guix-git/doc/guix.texi:12350 +#: guix-git/doc/guix.texi:12664 guix-git/doc/guix.texi:12665 #, no-wrap msgid "go" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12353 +#: guix-git/doc/guix.texi:12668 msgid "Import metadata for a Go module using @uref{https://proxy.golang.org, proxy.golang.org}." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12356 +#: guix-git/doc/guix.texi:12671 #, no-wrap msgid "guix import go gopkg.in/yaml.v2\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12360 +#: guix-git/doc/guix.texi:12675 msgid "It is possible to use a package specification with a @code{@@VERSION} suffix to import a specific version." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12369 +#: guix-git/doc/guix.texi:12684 #, no-wrap msgid "--pin-versions" msgstr "версия" #. type: table -#: guix-git/doc/guix.texi:12377 +#: guix-git/doc/guix.texi:12692 msgid "When using this option, the importer preserves the exact versions of the Go modules dependencies instead of using their latest available versions. This can be useful when attempting to import packages that recursively depend on former versions of themselves to build. When using this mode, the symbol of the package is made by appending the version to its name, so that multiple versions of the same package can coexist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12379 guix-git/doc/guix.texi:12380 -#: guix-git/doc/guix.texi:12560 +#: guix-git/doc/guix.texi:12694 guix-git/doc/guix.texi:12695 +#: guix-git/doc/guix.texi:12875 #, no-wrap msgid "egg" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12387 +#: guix-git/doc/guix.texi:12702 msgid "Import metadata for @uref{https://wiki.call-cc.org/eggs, CHICKEN eggs}. The information is taken from @file{PACKAGE.egg} files found in the @uref{git://code.call-cc.org/eggs-5-all, eggs-5-all} Git repository. However, it does not provide all the information that we need, there is no ``description'' field, and the licenses used are not always precise (BSD is often used instead of BSD-N)." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12390 +#: guix-git/doc/guix.texi:12705 #, no-wrap msgid "guix import egg sourcehut\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12396 +#: guix-git/doc/guix.texi:12711 #, fuzzy, no-wrap #| msgid "guix import hackage mtl@@2.1.3.1\n" msgid "guix import egg arrays@@1.0\n" msgstr "guix import hackage mtl@@2.1.3.1\n" #. type: Plain text -#: guix-git/doc/guix.texi:12411 +#: guix-git/doc/guix.texi:12726 msgid "The structure of the @command{guix import} code is modular. It would be useful to have more importers for other package formats, and your help is welcome here (@pxref{Contributing})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:12413 +#: guix-git/doc/guix.texi:12728 #, no-wrap msgid "Invoking @command{guix refresh}" msgstr "Вызов @command{guix refresh}" #. type: command{#1} -#: guix-git/doc/guix.texi:12415 +#: guix-git/doc/guix.texi:12730 #, no-wrap msgid "guix refresh" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12423 +#: guix-git/doc/guix.texi:12738 msgid "The primary audience of the @command{guix refresh} command is packagers. As a user, you may be interested in the @option{--with-latest} option, which can bring you package update superpowers built upon @command{guix refresh} (@pxref{Package Transformation Options, @option{--with-latest}}). By default, @command{guix refresh} reports any packages provided by the distribution that are outdated compared to the latest upstream version, like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12428 +#: guix-git/doc/guix.texi:12743 #, no-wrap msgid "" "$ guix refresh\n" @@ -23164,12 +23779,12 @@ msgstr "" "gnu/packages/glib.scm:77:12: glib would be upgraded from 2.34.3 to 2.37.0\n" #. type: Plain text -#: guix-git/doc/guix.texi:12432 +#: guix-git/doc/guix.texi:12747 msgid "Alternatively, one can specify packages to consider, in which case a warning is emitted for packages that lack an updater:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12437 +#: guix-git/doc/guix.texi:12752 #, no-wrap msgid "" "$ guix refresh coreutils guile guile-ssh\n" @@ -23181,17 +23796,17 @@ msgstr "" "gnu/packages/guile.scm:136:12: guile would be upgraded from 2.0.12 to 2.0.13\n" #. type: Plain text -#: guix-git/doc/guix.texi:12446 +#: guix-git/doc/guix.texi:12761 msgid "@command{guix refresh} browses the upstream repository of each package and determines the highest version number of the releases therein. The command knows how to update specific types of packages: GNU packages, ELPA packages, etc.---see the documentation for @option{--type} below. There are many packages, though, for which it lacks a method to determine whether a new upstream release is available. However, the mechanism is extensible, so feel free to get in touch with us to add a new method!" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12451 +#: guix-git/doc/guix.texi:12766 msgid "Consider the packages specified, and all the packages upon which they depend." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12459 +#: guix-git/doc/guix.texi:12774 #, no-wrap msgid "" "$ guix refresh --recursive coreutils\n" @@ -23209,12 +23824,12 @@ msgstr "" "@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:12467 +#: guix-git/doc/guix.texi:12782 msgid "Sometimes the upstream name differs from the package name used in Guix, and @command{guix refresh} needs a little help. Most updaters honor the @code{upstream-name} property in package definitions, which can be used to that effect:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12474 +#: guix-git/doc/guix.texi:12789 #, no-wrap msgid "" "(define-public network-manager\n" @@ -23230,329 +23845,329 @@ msgstr "" " (properties '((upstream-name . \"NetworkManager\")))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:12483 +#: guix-git/doc/guix.texi:12798 msgid "When passed @option{--update}, it modifies distribution source files to update the version numbers and source tarball hashes of those package recipes (@pxref{Defining Packages}). This is achieved by downloading each package's latest source tarball and its associated OpenPGP signature, authenticating the downloaded tarball against its signature using @command{gpgv}, and finally computing its hash---note that GnuPG must be installed and in @code{$PATH}; run @code{guix install gnupg} if needed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12489 +#: guix-git/doc/guix.texi:12804 msgid "When the public key used to sign the tarball is missing from the user's keyring, an attempt is made to automatically retrieve it from a public key server; when this is successful, the key is added to the user's keyring; otherwise, @command{guix refresh} reports an error." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12491 +#: guix-git/doc/guix.texi:12806 msgid "The following options are supported:" msgstr "Поддерживаются следующие варианты:" #. type: table -#: guix-git/doc/guix.texi:12499 guix-git/doc/guix.texi:13447 +#: guix-git/doc/guix.texi:12814 guix-git/doc/guix.texi:13804 msgid "This is useful to precisely refer to a package, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12502 +#: guix-git/doc/guix.texi:12817 #, no-wrap msgid "guix refresh -l -e '(@@@@ (gnu packages commencement) glibc-final)'\n" msgstr "guix refresh -l -e '(@@@@ (gnu packages commencement) glibc-final)'\n" #. type: table -#: guix-git/doc/guix.texi:12506 +#: guix-git/doc/guix.texi:12821 msgid "This command lists the dependents of the ``final'' libc (essentially all the packages)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12507 +#: guix-git/doc/guix.texi:12822 #, no-wrap msgid "--update" msgstr "--update" #. type: itemx -#: guix-git/doc/guix.texi:12508 +#: guix-git/doc/guix.texi:12823 #, no-wrap msgid "-u" msgstr "-u" #. type: table -#: guix-git/doc/guix.texi:12512 +#: guix-git/doc/guix.texi:12827 msgid "Update distribution source files (package recipes) in place. This is usually run from a checkout of the Guix source tree (@pxref{Running Guix Before It Is Installed}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12515 +#: guix-git/doc/guix.texi:12830 #, no-wrap msgid "$ ./pre-inst-env guix refresh -s non-core -u\n" msgstr "$ ./pre-inst-env guix refresh -s non-core -u\n" #. type: table -#: guix-git/doc/guix.texi:12518 +#: guix-git/doc/guix.texi:12833 msgid "@xref{Defining Packages}, for more information on package definitions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12519 +#: guix-git/doc/guix.texi:12834 #, no-wrap msgid "--select=[@var{subset}]" msgstr "--select=[@var{subset}]" #. type: itemx -#: guix-git/doc/guix.texi:12520 +#: guix-git/doc/guix.texi:12835 #, no-wrap msgid "-s @var{subset}" msgstr "-s @var{subset}" #. type: table -#: guix-git/doc/guix.texi:12523 +#: guix-git/doc/guix.texi:12838 msgid "Select all the packages in @var{subset}, one of @code{core} or @code{non-core}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12530 +#: guix-git/doc/guix.texi:12845 msgid "The @code{core} subset refers to all the packages at the core of the distribution---i.e., packages that are used to build ``everything else''. This includes GCC, libc, Binutils, Bash, etc. Usually, changing one of these packages in the distribution entails a rebuild of all the others. Thus, such updates are an inconvenience to users in terms of build time or bandwidth used to achieve the upgrade." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12534 +#: guix-git/doc/guix.texi:12849 msgid "The @code{non-core} subset refers to the remaining packages. It is typically useful in cases where an update of the core packages would be inconvenient." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12539 +#: guix-git/doc/guix.texi:12854 msgid "Select all the packages from the manifest in @var{file}. This is useful to check if any packages of the user manifest can be updated." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12540 +#: guix-git/doc/guix.texi:12855 #, no-wrap msgid "--type=@var{updater}" msgstr "--type=@var{updater}" #. type: itemx -#: guix-git/doc/guix.texi:12541 +#: guix-git/doc/guix.texi:12856 #, no-wrap msgid "-t @var{updater}" msgstr "-t @var{updater}" #. type: table -#: guix-git/doc/guix.texi:12544 +#: guix-git/doc/guix.texi:12859 msgid "Select only packages handled by @var{updater} (may be a comma-separated list of updaters). Currently, @var{updater} may be one of:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12548 +#: guix-git/doc/guix.texi:12863 msgid "the updater for GNU packages;" msgstr "средство обновления пакетов GNU;" #. type: item -#: guix-git/doc/guix.texi:12548 +#: guix-git/doc/guix.texi:12863 #, no-wrap msgid "savannah" msgstr "savannah" #. type: table -#: guix-git/doc/guix.texi:12550 +#: guix-git/doc/guix.texi:12865 msgid "the updater for packages hosted at @uref{https://savannah.gnu.org, Savannah};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12550 +#: guix-git/doc/guix.texi:12865 #, no-wrap msgid "sourceforge" msgstr "источник" #. type: table -#: guix-git/doc/guix.texi:12552 +#: guix-git/doc/guix.texi:12867 msgid "the updater for packages hosted at @uref{https://sourceforge.net, SourceForge};" msgstr "средство обновления пакетов, размещенных на kernel.org;" #. type: item -#: guix-git/doc/guix.texi:12552 +#: guix-git/doc/guix.texi:12867 #, no-wrap msgid "gnome" msgstr "gnome" #. type: table -#: guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12869 msgid "the updater for GNOME packages;" msgstr "средство обновления пакетов GNOME;" #. type: item -#: guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12869 #, no-wrap msgid "kde" msgstr "kde" #. type: table -#: guix-git/doc/guix.texi:12556 +#: guix-git/doc/guix.texi:12871 msgid "the updater for KDE packages;" msgstr "средство обновления пакетов KDE;" #. type: item -#: guix-git/doc/guix.texi:12556 +#: guix-git/doc/guix.texi:12871 #, no-wrap msgid "xorg" msgstr "xorg" #. type: table -#: guix-git/doc/guix.texi:12558 +#: guix-git/doc/guix.texi:12873 msgid "the updater for X.org packages;" msgstr "средство обновления пакетов X.org;" #. type: item -#: guix-git/doc/guix.texi:12558 +#: guix-git/doc/guix.texi:12873 #, no-wrap msgid "kernel.org" msgstr "kernel.org" #. type: table -#: guix-git/doc/guix.texi:12560 +#: guix-git/doc/guix.texi:12875 msgid "the updater for packages hosted on kernel.org;" msgstr "средство обновления пакетов, размещенных на kernel.org;" #. type: table -#: guix-git/doc/guix.texi:12562 +#: guix-git/doc/guix.texi:12877 #, fuzzy #| msgid "the updater for @uref{https://github.com, GitHub} packages." msgid "the updater for @uref{https://wiki.call-cc.org/eggs/, Egg} packages;" msgstr "средство обновления пакетов @uref{https://github.com, GitHub}." #. type: table -#: guix-git/doc/guix.texi:12564 +#: guix-git/doc/guix.texi:12879 msgid "the updater for @uref{https://elpa.gnu.org/, ELPA} packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12566 +#: guix-git/doc/guix.texi:12881 msgid "the updater for @uref{https://cran.r-project.org/, CRAN} packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12566 +#: guix-git/doc/guix.texi:12881 #, no-wrap msgid "bioconductor" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12568 +#: guix-git/doc/guix.texi:12883 msgid "the updater for @uref{https://www.bioconductor.org/, Bioconductor} R packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12570 +#: guix-git/doc/guix.texi:12885 msgid "the updater for @uref{https://www.cpan.org/, CPAN} packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12572 +#: guix-git/doc/guix.texi:12887 msgid "the updater for @uref{https://pypi.python.org, PyPI} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12574 +#: guix-git/doc/guix.texi:12889 msgid "the updater for @uref{https://rubygems.org, RubyGems} packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12574 +#: guix-git/doc/guix.texi:12889 #, no-wrap msgid "github" msgstr "github" #. type: table -#: guix-git/doc/guix.texi:12576 +#: guix-git/doc/guix.texi:12891 msgid "the updater for @uref{https://github.com, GitHub} packages." msgstr "средство обновления пакетов @uref{https://github.com, GitHub}." #. type: table -#: guix-git/doc/guix.texi:12578 +#: guix-git/doc/guix.texi:12893 msgid "the updater for @uref{https://hackage.haskell.org, Hackage} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12580 +#: guix-git/doc/guix.texi:12895 msgid "the updater for @uref{https://www.stackage.org, Stackage} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12582 +#: guix-git/doc/guix.texi:12897 msgid "the updater for @uref{https://crates.io, Crates} packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12582 +#: guix-git/doc/guix.texi:12897 #, no-wrap msgid "launchpad" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12584 +#: guix-git/doc/guix.texi:12899 msgid "the updater for @uref{https://launchpad.net, Launchpad} packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12584 +#: guix-git/doc/guix.texi:12899 #, no-wrap msgid "generic-html" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12587 +#: guix-git/doc/guix.texi:12902 msgid "a generic updater that crawls the HTML page where the source tarball of the package is hosted, when applicable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12588 +#: guix-git/doc/guix.texi:12903 #, no-wrap msgid "generic-git" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12593 +#: guix-git/doc/guix.texi:12908 msgid "a generic updater for packages hosted on Git repositories. It tries to be smart about parsing Git tag names, but if it is not able to parse the tag name and compare tags correctly, users can define the following properties for a package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12595 +#: guix-git/doc/guix.texi:12910 #, no-wrap msgid "@code{release-tag-prefix}: a regular expression for matching a prefix of" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12597 guix-git/doc/guix.texi:12600 +#: guix-git/doc/guix.texi:12912 guix-git/doc/guix.texi:12915 #, fuzzy #| msgid "The role name." msgid "the tag name." msgstr "Имя роли." #. type: item -#: guix-git/doc/guix.texi:12598 +#: guix-git/doc/guix.texi:12913 #, no-wrap msgid "@code{release-tag-suffix}: a regular expression for matching a suffix of" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12601 +#: guix-git/doc/guix.texi:12916 #, no-wrap msgid "@code{release-tag-version-delimiter}: a string used as the delimiter in" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12603 +#: guix-git/doc/guix.texi:12918 msgid "the tag name for separating the numbers of the version." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12604 +#: guix-git/doc/guix.texi:12919 #, no-wrap msgid "@code{accept-pre-releases}: by default, the updater will ignore" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12607 +#: guix-git/doc/guix.texi:12922 msgid "pre-releases; to make it also look for pre-releases, set the this property to @code{#t}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12618 +#: guix-git/doc/guix.texi:12933 #, no-wrap msgid "" "(package\n" @@ -23565,12 +24180,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12625 +#: guix-git/doc/guix.texi:12940 msgid "For instance, the following command only checks for updates of Emacs packages hosted at @code{elpa.gnu.org} and for updates of CRAN packages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12630 +#: guix-git/doc/guix.texi:12945 #, no-wrap msgid "" "$ guix refresh --type=elpa,cran\n" @@ -23579,45 +24194,45 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12632 +#: guix-git/doc/guix.texi:12947 #, no-wrap msgid "--list-updaters" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12633 +#: guix-git/doc/guix.texi:12948 #, no-wrap msgid "-L" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12635 +#: guix-git/doc/guix.texi:12950 msgid "List available updaters and exit (see @option{--type} above)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12638 +#: guix-git/doc/guix.texi:12953 msgid "For each updater, display the fraction of packages it covers; at the end, display the fraction of packages covered by all these updaters." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12642 +#: guix-git/doc/guix.texi:12957 msgid "In addition, @command{guix refresh} can be passed one or more package names, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12645 +#: guix-git/doc/guix.texi:12960 #, no-wrap msgid "$ ./pre-inst-env guix refresh -u emacs idutils gcc@@4.8\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12652 +#: guix-git/doc/guix.texi:12967 msgid "The command above specifically updates the @code{emacs} and @code{idutils} packages. The @option{--select} option would have no effect in this case. You might also want to update definitions that correspond to the packages installed in your profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12656 +#: guix-git/doc/guix.texi:12971 #, no-wrap msgid "" "$ ./pre-inst-env guix refresh -u \\\n" @@ -23625,39 +24240,39 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12662 +#: guix-git/doc/guix.texi:12977 msgid "When considering whether to upgrade a package, it is sometimes convenient to know which packages would be affected by the upgrade and should be checked for compatibility. For this the following option may be used when passing @command{guix refresh} one or more package names:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12665 +#: guix-git/doc/guix.texi:12980 #, no-wrap msgid "--list-dependent" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12666 guix-git/doc/guix.texi:13028 +#: guix-git/doc/guix.texi:12981 guix-git/doc/guix.texi:13385 #, no-wrap msgid "-l" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12669 +#: guix-git/doc/guix.texi:12984 msgid "List top-level dependent packages that would need to be rebuilt as a result of upgrading one or more packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12673 +#: guix-git/doc/guix.texi:12988 msgid "@xref{Invoking guix graph, the @code{reverse-package} type of @command{guix graph}}, for information on how to visualize the list of dependents of a package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12679 +#: guix-git/doc/guix.texi:12994 msgid "Be aware that the @option{--list-dependent} option only @emph{approximates} the rebuilds that would be required as a result of an upgrade. More rebuilds might be required under some circumstances." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12684 +#: guix-git/doc/guix.texi:12999 #, no-wrap msgid "" "$ guix refresh --list-dependent flex\n" @@ -23666,23 +24281,23 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12688 +#: guix-git/doc/guix.texi:13003 msgid "The command above lists a set of packages that could be built to check for compatibility with an upgraded @code{flex} package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12691 +#: guix-git/doc/guix.texi:13006 #, no-wrap msgid "--list-transitive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12693 +#: guix-git/doc/guix.texi:13008 msgid "List all the packages which one or more packages depend upon." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12698 +#: guix-git/doc/guix.texi:13013 #, no-wrap msgid "" "$ guix refresh --list-transitive flex\n" @@ -23691,60 +24306,60 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12704 +#: guix-git/doc/guix.texi:13019 msgid "The command above lists a set of packages which, when changed, would cause @code{flex} to be rebuilt." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12706 +#: guix-git/doc/guix.texi:13021 msgid "The following options can be used to customize GnuPG operation:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12709 +#: guix-git/doc/guix.texi:13024 #, no-wrap msgid "--gpg=@var{command}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12712 +#: guix-git/doc/guix.texi:13027 msgid "Use @var{command} as the GnuPG 2.x command. @var{command} is searched for in @code{$PATH}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12713 +#: guix-git/doc/guix.texi:13028 #, no-wrap msgid "--keyring=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12719 +#: guix-git/doc/guix.texi:13034 msgid "Use @var{file} as the keyring for upstream keys. @var{file} must be in the @dfn{keybox format}. Keybox files usually have a name ending in @file{.kbx} and the GNU@tie{}Privacy Guard (GPG) can manipulate these files (@pxref{kbxutil, @command{kbxutil},, gnupg, Using the GNU Privacy Guard}, for information on a tool to manipulate keybox files)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12725 +#: guix-git/doc/guix.texi:13040 msgid "When this option is omitted, @command{guix refresh} uses @file{~/.config/guix/upstream/trustedkeys.kbx} as the keyring for upstream signing keys. OpenPGP signatures are checked against keys from this keyring; missing keys are downloaded to this keyring as well (see @option{--key-download} below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12728 +#: guix-git/doc/guix.texi:13043 msgid "You can export keys from your default GPG keyring into a keybox file using commands like this one:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12731 +#: guix-git/doc/guix.texi:13046 #, no-wrap msgid "gpg --export rms@@gnu.org | kbxutil --import-openpgp >> mykeyring.kbx\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12734 +#: guix-git/doc/guix.texi:13049 msgid "Likewise, you can fetch keys to a specific keybox file like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12738 +#: guix-git/doc/guix.texi:13053 #, no-wrap msgid "" "gpg --no-default-keyring --keyring mykeyring.kbx \\\n" @@ -23754,84 +24369,94 @@ msgstr "" " --recv-keys @value{OPENPGP-SIGNING-KEY-ID}\n" #. type: table -#: guix-git/doc/guix.texi:12742 +#: guix-git/doc/guix.texi:13057 msgid "@xref{GPG Configuration Options, @option{--keyring},, gnupg, Using the GNU Privacy Guard}, for more information on GPG's @option{--keyring} option." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12746 +#: guix-git/doc/guix.texi:13061 msgid "Handle missing OpenPGP keys according to @var{policy}, which may be one of:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12748 guix-git/doc/guix.texi:12871 -#: guix-git/doc/guix.texi:22249 +#: guix-git/doc/guix.texi:13063 guix-git/doc/guix.texi:13228 +#: guix-git/doc/guix.texi:22611 #, no-wrap msgid "always" msgstr "всегда" #. type: table -#: guix-git/doc/guix.texi:12751 +#: guix-git/doc/guix.texi:13066 msgid "Always download missing OpenPGP keys from the key server, and add them to the user's GnuPG keyring." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12752 guix-git/doc/guix.texi:22251 +#: guix-git/doc/guix.texi:13067 guix-git/doc/guix.texi:22613 #, no-wrap msgid "never" msgstr "никогда" #. type: table -#: guix-git/doc/guix.texi:12754 +#: guix-git/doc/guix.texi:13069 msgid "Never try to download missing OpenPGP keys. Instead just bail out." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12755 +#: guix-git/doc/guix.texi:13070 #, no-wrap msgid "interactive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12758 +#: guix-git/doc/guix.texi:13073 msgid "When a package signed with an unknown OpenPGP key is encountered, ask the user whether to download it or not. This is the default behavior." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12760 +#: guix-git/doc/guix.texi:13075 #, no-wrap msgid "--key-server=@var{host}" msgstr "--key-server=@var{host}" #. type: table -#: guix-git/doc/guix.texi:12762 +#: guix-git/doc/guix.texi:13077 msgid "Use @var{host} as the OpenPGP key server when importing a public key." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12782 +#: guix-git/doc/guix.texi:13097 msgid "The @code{github} updater uses the @uref{https://developer.github.com/v3/, GitHub API} to query for new releases. When used repeatedly e.g.@: when refreshing all packages, GitHub will eventually refuse to answer any further API requests. By default 60 API requests per hour are allowed, and a full refresh on all GitHub packages in Guix requires more than this. Authentication with GitHub through the use of an API token alleviates these limits. To use an API token, set the environment variable @env{GUIX_GITHUB_TOKEN} to a token procured from @uref{https://github.com/settings/tokens} or otherwise." msgstr "" #. type: section -#: guix-git/doc/guix.texi:12785 +#: guix-git/doc/guix.texi:13100 #, fuzzy, no-wrap #| msgid "Invoking @command{guix size}" msgid "Invoking @command{guix style}" msgstr "Вызов @command{guix size}" #. type: Plain text -#: guix-git/doc/guix.texi:12791 -msgid "The @command{guix style} command helps packagers style their package definitions according to the latest fashionable trends. The command currently focuses on one aspect: the style of package inputs. It may eventually be extended to handle other stylistic matters." +#: guix-git/doc/guix.texi:13105 +msgid "The @command{guix style} command helps packagers style their package definitions according to the latest fashionable trends. The command currently provides the following styling rules:" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix.texi:13110 +msgid "formatting package definitions according to the project's conventions (@pxref{Formatting Code});" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix.texi:13113 +msgid "rewriting package inputs to the ``new style'', as explained below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12796 +#: guix-git/doc/guix.texi:13119 msgid "The way package inputs are written is going through a transition (@pxref{package Reference}, for more on package inputs). Until version 1.3.0, package inputs were written using the ``old style'', where each input was given an explicit label, most of the time the package name:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12803 +#: guix-git/doc/guix.texi:13126 #, no-wrap msgid "" "(package\n" @@ -23842,12 +24467,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12807 +#: guix-git/doc/guix.texi:13130 msgid "Today, the old style is deprecated and the preferred style looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12813 +#: guix-git/doc/guix.texi:13136 #, no-wrap msgid "" "(package\n" @@ -23857,273 +24482,341 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12818 +#: guix-git/doc/guix.texi:13141 msgid "Likewise, uses of @code{alist-delete} and friends to manipulate inputs is now deprecated in favor of @code{modify-inputs} (@pxref{Defining Package Variants}, for more info on @code{modify-inputs})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12823 -msgid "In the vast majority of cases, this is a purely mechanical change on the surface syntax that does not even incur a package rebuild. Running @command{guix style} can do that for you, whether you're working on packages in Guix proper or in an external channel." +#: guix-git/doc/guix.texi:13146 +msgid "In the vast majority of cases, this is a purely mechanical change on the surface syntax that does not even incur a package rebuild. Running @command{guix style -S inputs} can do that for you, whether you're working on packages in Guix proper or in an external channel." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12828 +#: guix-git/doc/guix.texi:13151 #, fuzzy, no-wrap #| msgid "guix shell [@var{options}] [@var{package}@dots{}]\n" msgid "guix style [@var{options}] @var{package}@dots{}\n" msgstr "guix shell [@var{options}] [@var{package}@dots{}]\n" #. type: Plain text -#: guix-git/doc/guix.texi:12834 -msgid "This causes @command{guix style} to analyze and rewrite the definition of @var{package}@dots{}. It does so in a conservative way: preserving comments and bailing out if it cannot make sense of the code that appears in an inputs field. The available options are listed below." +#: guix-git/doc/guix.texi:13158 +msgid "This causes @command{guix style} to analyze and rewrite the definition of @var{package}@dots{} or, when @var{package} is omitted, of @emph{all} the packages. The @option{--styling} or @option{-S} option allows you to select the style rule, the default rule being @code{format}---see below." msgstr "" +#. type: Plain text +#: guix-git/doc/guix.texi:13160 guix-git/doc/guix.texi:14479 +msgid "The available options are listed below." +msgstr "Доступные опции резюмированы ниже." + #. type: table -#: guix-git/doc/guix.texi:12839 +#: guix-git/doc/guix.texi:13165 msgid "Show source file locations that would be edited but do not modify them." msgstr "" +#. type: item +#: guix-git/doc/guix.texi:13166 +#, fuzzy, no-wrap +#| msgid "--symlink=@var{spec}" +msgid "--styling=@var{rule}" +msgstr "--symlink=@var{spec}" + +#. type: itemx +#: guix-git/doc/guix.texi:13167 +#, fuzzy, no-wrap +#| msgid "-S @var{spec}" +msgid "-S @var{rule}" +msgstr "-S @var{spec}" + +#. type: table +#: guix-git/doc/guix.texi:13169 +#, fuzzy +#| msgid "The @var{options} can be among the following:" +msgid "Apply @var{rule}, one of the following styling rules:" +msgstr "Опции @var{options} могут быть следующими:" + +#. type: item +#: guix-git/doc/guix.texi:13171 +#, fuzzy, no-wrap +#| msgid "--list-formats" +msgid "format" +msgstr "--list-roots" + +#. type: table +#: guix-git/doc/guix.texi:13176 +msgid "Format the given package definition(s)---this is the default styling rule. For example, a packager running Guix on a checkout (@pxref{Running Guix Before It Is Installed}) might want to reformat the definition of the Coreutils package like so:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:13179 +#, fuzzy, no-wrap +#| msgid "./pre-inst-env guix build guix\n" +msgid "./pre-inst-env guix style coreutils\n" +msgstr "./pre-inst-env guix build gnew --keep-failed\n" + +#. type: item +#: guix-git/doc/guix.texi:13181 +#, fuzzy, no-wrap +#| msgid "outputs" +msgid "inputs" +msgstr "результаты" + +#. type: table +#: guix-git/doc/guix.texi:13185 +msgid "Rewrite package inputs to the ``new style'', as described above. This is how you would rewrite inputs of package @code{whatnot} in your own channel:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:13188 +#, no-wrap +msgid "guix style -L ~/my/channel -S inputs whatnot\n" +msgstr "" + #. type: table -#: guix-git/doc/guix.texi:12848 +#: guix-git/doc/guix.texi:13194 +msgid "Rewriting is done in a conservative way: preserving comments and bailing out if it cannot make sense of the code that appears in an inputs field. The @option{--input-simplification} option described below provides fine-grain control over when inputs should be simplified." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:13204 #, fuzzy #| msgid "Install the package @var{exp} evaluates to." msgid "Style the package @var{expr} evaluates to." msgstr "Устанавить пакет, соответствующий @var{exp}." #. type: example -#: guix-git/doc/guix.texi:12853 +#: guix-git/doc/guix.texi:13209 #, fuzzy, no-wrap #| msgid "guix shell -e '(@@ (gnu) %base-packages)'\n" msgid "guix style -e '(@@ (gnu packages gcc) gcc-5)'\n" msgstr "guix shell -e '(@@ (gnu) %base-packages)'\n" #. type: table -#: guix-git/doc/guix.texi:12856 +#: guix-git/doc/guix.texi:13212 #, fuzzy #| msgid "Updating the Guix package definition." msgid "styles the @code{gcc-5} package definition." msgstr "Обновление описания пакета guix." #. type: item -#: guix-git/doc/guix.texi:12857 +#: guix-git/doc/guix.texi:13213 #, no-wrap msgid "--input-simplification=@var{policy}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12861 -msgid "Specify the package input simplification policy for cases where an input label does not match the corresponding package name. @var{policy} may be one of the following:" +#: guix-git/doc/guix.texi:13218 +msgid "When using the @code{inputs} styling rule, with @samp{-S inputs}, this option specifies the package input simplification policy for cases where an input label does not match the corresponding package name. @var{policy} may be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12863 +#: guix-git/doc/guix.texi:13220 #, no-wrap msgid "silent" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12866 +#: guix-git/doc/guix.texi:13223 msgid "Simplify inputs only when the change is ``silent'', meaning that the package does not need to be rebuilt (its derivation is unchanged)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12867 +#: guix-git/doc/guix.texi:13224 #, no-wrap msgid "safe" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12870 +#: guix-git/doc/guix.texi:13227 msgid "Simplify inputs only when that is ``safe'' to do: the package might need to be rebuilt, but the change is known to have no observable effect." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12874 +#: guix-git/doc/guix.texi:13231 msgid "Simplify inputs even when input labels do not match package names, and even if that might have an observable effect." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12878 +#: guix-git/doc/guix.texi:13235 msgid "The default is @code{silent}, meaning that input simplifications do not trigger any package rebuild." msgstr "" #. type: section -#: guix-git/doc/guix.texi:12881 +#: guix-git/doc/guix.texi:13238 #, no-wrap msgid "Invoking @command{guix lint}" msgstr "Вызов @command{guix lint}" #. type: command{#1} -#: guix-git/doc/guix.texi:12883 +#: guix-git/doc/guix.texi:13240 #, no-wrap msgid "guix lint" msgstr "guix lint" #. type: cindex -#: guix-git/doc/guix.texi:12884 +#: guix-git/doc/guix.texi:13241 #, no-wrap msgid "package, checking for errors" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12890 +#: guix-git/doc/guix.texi:13247 msgid "The @command{guix lint} command is meant to help package developers avoid common errors and use a consistent style. It runs a number of checks on a given set of packages in order to find common mistakes in their definitions. Available @dfn{checkers} include (see @option{--list-checkers} for a complete list):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12896 +#: guix-git/doc/guix.texi:13253 msgid "Validate certain typographical and stylistic rules about package descriptions and synopses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12897 +#: guix-git/doc/guix.texi:13254 #, no-wrap msgid "inputs-should-be-native" msgstr "inputs-should-be-native" #. type: table -#: guix-git/doc/guix.texi:12899 +#: guix-git/doc/guix.texi:13256 msgid "Identify inputs that should most likely be native inputs." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12902 +#: guix-git/doc/guix.texi:13259 #, no-wrap msgid "mirror-url" msgstr "mirror-url" #. type: itemx -#: guix-git/doc/guix.texi:12903 +#: guix-git/doc/guix.texi:13260 #, no-wrap msgid "github-url" msgstr "github-url" #. type: itemx -#: guix-git/doc/guix.texi:12904 +#: guix-git/doc/guix.texi:13261 #, no-wrap msgid "source-file-name" msgstr "source-file-name" #. type: table -#: guix-git/doc/guix.texi:12911 +#: guix-git/doc/guix.texi:13268 msgid "Probe @code{home-page} and @code{source} URLs and report those that are invalid. Suggest a @code{mirror://} URL when applicable. If the @code{source} URL redirects to a GitHub URL, recommend usage of the GitHub URL@. Check that the source file name is meaningful, e.g.@: is not just a version number or ``git-checkout'', without a declared @code{file-name} (@pxref{origin Reference})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12912 +#: guix-git/doc/guix.texi:13269 #, no-wrap msgid "source-unstable-tarball" msgstr "source-unstable-tarball" #. type: table -#: guix-git/doc/guix.texi:12916 +#: guix-git/doc/guix.texi:13273 msgid "Parse the @code{source} URL to determine if a tarball from GitHub is autogenerated or if it is a release tarball. Unfortunately GitHub's autogenerated tarballs are sometimes regenerated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12920 +#: guix-git/doc/guix.texi:13277 msgid "Check that the derivation of the given packages can be successfully computed for all the supported systems (@pxref{Derivations})." msgstr "Вернуть деривацию(-ии), производящие данные элементы склада (@pxref{Derivations})." #. type: item -#: guix-git/doc/guix.texi:12921 +#: guix-git/doc/guix.texi:13278 #, no-wrap msgid "profile-collisions" msgstr "противоречеия профиля" #. type: table -#: guix-git/doc/guix.texi:12927 +#: guix-git/doc/guix.texi:13284 msgid "Check whether installing the given packages in a profile would lead to collisions. Collisions occur when several packages with the same name but a different version or a different store file name are propagated. @xref{package Reference, @code{propagated-inputs}}, for more information on propagated inputs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12928 +#: guix-git/doc/guix.texi:13285 #, no-wrap msgid "archival" msgstr "архивирование" #. type: cindex -#: guix-git/doc/guix.texi:12929 +#: guix-git/doc/guix.texi:13286 #, no-wrap msgid "Software Heritage, source code archive" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12930 +#: guix-git/doc/guix.texi:13287 #, no-wrap msgid "archival of source code, Software Heritage" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12933 +#: guix-git/doc/guix.texi:13290 msgid "Checks whether the package's source code is archived at @uref{https://www.softwareheritage.org, Software Heritage}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12941 +#: guix-git/doc/guix.texi:13298 msgid "When the source code that is not archived comes from a version-control system (VCS)---e.g., it's obtained with @code{git-fetch}, send Software Heritage a ``save'' request so that it eventually archives it. This ensures that the source will remain available in the long term, and that Guix can fall back to Software Heritage should the source code disappear from its original host. The status of recent ``save'' requests can be @uref{https://archive.softwareheritage.org/save/#requests, viewed on-line}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12946 +#: guix-git/doc/guix.texi:13303 msgid "When source code is a tarball obtained with @code{url-fetch}, simply print a message when it is not archived. As of this writing, Software Heritage does not allow requests to save arbitrary tarballs; we are working on ways to ensure that non-VCS source code is also archived." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12952 +#: guix-git/doc/guix.texi:13309 msgid "Software Heritage @uref{https://archive.softwareheritage.org/api/#rate-limiting, limits the request rate per IP address}. When the limit is reached, @command{guix lint} prints a message and the @code{archival} checker stops doing anything until that limit has been reset." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12953 +#: guix-git/doc/guix.texi:13310 #, no-wrap msgid "cve" msgstr "cve" #. type: cindex -#: guix-git/doc/guix.texi:12954 guix-git/doc/guix.texi:37946 +#: guix-git/doc/guix.texi:13311 guix-git/doc/guix.texi:38435 #, no-wrap msgid "security vulnerabilities" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12955 +#: guix-git/doc/guix.texi:13312 #, no-wrap msgid "CVE, Common Vulnerabilities and Exposures" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12960 +#: guix-git/doc/guix.texi:13317 msgid "Report known vulnerabilities found in the Common Vulnerabilities and Exposures (CVE) databases of the current and past year @uref{https://nvd.nist.gov/vuln/data-feeds, published by the US NIST}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12962 +#: guix-git/doc/guix.texi:13319 msgid "To view information about a particular vulnerability, visit pages such as:" msgstr "" #. type: indicateurl{#1} -#: guix-git/doc/guix.texi:12966 +#: guix-git/doc/guix.texi:13323 msgid "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-YYYY-ABCD" msgstr "" #. type: indicateurl{#1} -#: guix-git/doc/guix.texi:12968 +#: guix-git/doc/guix.texi:13325 msgid "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-YYYY-ABCD" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12973 +#: guix-git/doc/guix.texi:13330 msgid "where @code{CVE-YYYY-ABCD} is the CVE identifier---e.g., @code{CVE-2015-7554}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12978 +#: guix-git/doc/guix.texi:13335 msgid "Package developers can specify in package recipes the @uref{https://nvd.nist.gov/products/cpe,Common Platform Enumeration (CPE)} name and version of the package when they differ from the name or version that Guix uses, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12986 +#: guix-git/doc/guix.texi:13343 #, no-wrap msgid "" "(package\n" @@ -24135,12 +24828,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12993 +#: guix-git/doc/guix.texi:13350 msgid "Some entries in the CVE database do not specify which version of a package they apply to, and would thus ``stick around'' forever. Package developers who found CVE alerts and verified they can be ignored can declare them as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:13003 +#: guix-git/doc/guix.texi:13360 #, no-wrap msgid "" "(package\n" @@ -24154,124 +24847,124 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13005 +#: guix-git/doc/guix.texi:13362 #, no-wrap msgid "formatting" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13008 +#: guix-git/doc/guix.texi:13365 msgid "Warn about obvious source code formatting issues: trailing white space, use of tabulations, etc." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13009 +#: guix-git/doc/guix.texi:13366 #, no-wrap msgid "input-labels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13015 +#: guix-git/doc/guix.texi:13372 msgid "Report old-style input labels that do not match the name of the corresponding package. This aims to help migrate from the ``old input style''. @xref{package Reference}, for more information on package inputs and input styles. @xref{Invoking guix style}, on how to migrate to the new style." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13021 +#: guix-git/doc/guix.texi:13378 #, no-wrap msgid "guix lint @var{options} @var{package}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13025 +#: guix-git/doc/guix.texi:13382 msgid "If no package is given on the command line, then all packages are checked. The @var{options} may be zero or more of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13027 +#: guix-git/doc/guix.texi:13384 #, no-wrap msgid "--list-checkers" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13031 +#: guix-git/doc/guix.texi:13388 msgid "List and describe all the available checkers that will be run on packages and exit." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13032 +#: guix-git/doc/guix.texi:13389 #, no-wrap msgid "--checkers" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13033 +#: guix-git/doc/guix.texi:13390 #, no-wrap msgid "-c" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13036 +#: guix-git/doc/guix.texi:13393 msgid "Only enable the checkers specified in a comma-separated list using the names returned by @option{--list-checkers}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13037 +#: guix-git/doc/guix.texi:13394 #, no-wrap msgid "--exclude" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13041 +#: guix-git/doc/guix.texi:13398 msgid "Only disable the checkers specified in a comma-separated list using the names returned by @option{--list-checkers}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13042 +#: guix-git/doc/guix.texi:13399 #, no-wrap msgid "--no-network" msgstr "--network" #. type: table -#: guix-git/doc/guix.texi:13045 +#: guix-git/doc/guix.texi:13402 msgid "Only enable the checkers that do not depend on Internet access." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13057 +#: guix-git/doc/guix.texi:13414 #, no-wrap msgid "Invoking @command{guix size}" msgstr "Вызов @command{guix size}" #. type: code{#1} -#: guix-git/doc/guix.texi:13059 guix-git/doc/guix.texi:35624 +#: guix-git/doc/guix.texi:13416 guix-git/doc/guix.texi:36114 #, no-wrap msgid "size" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13060 +#: guix-git/doc/guix.texi:13417 #, no-wrap msgid "package size" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13062 +#: guix-git/doc/guix.texi:13419 #, no-wrap msgid "guix size" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13069 +#: guix-git/doc/guix.texi:13426 msgid "The @command{guix size} command helps package developers profile the disk usage of packages. It is easy to overlook the impact of an additional dependency added to a package, or the impact of using a single output for a package that could easily be split (@pxref{Packages with Multiple Outputs}). Such are the typical issues that @command{guix size} can highlight." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13074 +#: guix-git/doc/guix.texi:13431 msgid "The command can be passed one or more package specifications such as @code{gcc@@4.8} or @code{guile:debug}, or a file name in the store. Consider this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13087 +#: guix-git/doc/guix.texi:13444 #, no-wrap msgid "" "$ guix size coreutils\n" @@ -24288,54 +24981,54 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13093 +#: guix-git/doc/guix.texi:13450 msgid "The store items listed here constitute the @dfn{transitive closure} of Coreutils---i.e., Coreutils and all its dependencies, recursively---as would be returned by:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13096 +#: guix-git/doc/guix.texi:13453 #, no-wrap msgid "$ guix gc -R /gnu/store/@dots{}-coreutils-8.23\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13104 +#: guix-git/doc/guix.texi:13461 msgid "Here the output shows three columns next to store items. The first column, labeled ``total'', shows the size in mebibytes (MiB) of the closure of the store item---that is, its own size plus the size of all its dependencies. The next column, labeled ``self'', shows the size of the item itself. The last column shows the ratio of the size of the item itself to the space occupied by all the items listed here." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13110 +#: guix-git/doc/guix.texi:13467 msgid "In this example, we see that the closure of Coreutils weighs in at 79@tie{}MiB, most of which is taken by libc and GCC's run-time support libraries. (That libc and GCC's libraries represent a large fraction of the closure is not a problem @i{per se} because they are always available on the system anyway.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13113 +#: guix-git/doc/guix.texi:13470 msgid "Since the command also accepts store file names, assessing the size of a build result is straightforward:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13116 +#: guix-git/doc/guix.texi:13473 #, no-wrap msgid "guix size $(guix system build config.scm)\n" msgstr "guix size $(guix system build config.scm)\n" #. type: Plain text -#: guix-git/doc/guix.texi:13126 +#: guix-git/doc/guix.texi:13483 msgid "When the package(s) passed to @command{guix size} are available in the store@footnote{More precisely, @command{guix size} looks for the @emph{ungrafted} variant of the given package(s), as returned by @code{guix build @var{package} --no-grafts}. @xref{Security Updates}, for information on grafts.}, @command{guix size} queries the daemon to determine its dependencies, and measures its size in the store, similar to @command{du -ms --apparent-size} (@pxref{du invocation,,, coreutils, GNU Coreutils})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13131 +#: guix-git/doc/guix.texi:13488 msgid "When the given packages are @emph{not} in the store, @command{guix size} reports information based on the available substitutes (@pxref{Substitutes}). This makes it possible it to profile disk usage of store items that are not even on disk, only available remotely." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13133 +#: guix-git/doc/guix.texi:13490 msgid "You can also specify several package names:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13143 +#: guix-git/doc/guix.texi:13500 #, no-wrap msgid "" "$ guix size coreutils grep sed bash\n" @@ -24357,365 +25050,365 @@ msgstr "" "total: 102.3 MiB\n" #. type: Plain text -#: guix-git/doc/guix.texi:13149 +#: guix-git/doc/guix.texi:13506 msgid "In this example we see that the combination of the four packages takes 102.3@tie{}MiB in total, which is much less than the sum of each closure since they have a lot of dependencies in common." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13155 +#: guix-git/doc/guix.texi:13512 msgid "When looking at the profile returned by @command{guix size}, you may find yourself wondering why a given package shows up in the profile at all. To understand it, you can use @command{guix graph --path -t references} to display the shortest path between the two packages (@pxref{Invoking guix graph})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13157 +#: guix-git/doc/guix.texi:13514 msgid "The available options are:" msgstr "Доступные опции:" #. type: table -#: guix-git/doc/guix.texi:13163 +#: guix-git/doc/guix.texi:13520 msgid "Use substitute information from @var{urls}. @xref{client-substitute-urls, the same option for @code{guix build}}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13164 +#: guix-git/doc/guix.texi:13521 #, no-wrap msgid "--sort=@var{key}" msgstr "--sort=@var{key}" #. type: table -#: guix-git/doc/guix.texi:13166 +#: guix-git/doc/guix.texi:13523 msgid "Sort lines according to @var{key}, one of the following options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13168 +#: guix-git/doc/guix.texi:13525 #, no-wrap msgid "self" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13170 +#: guix-git/doc/guix.texi:13527 msgid "the size of each item (the default);" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13172 +#: guix-git/doc/guix.texi:13529 msgid "the total size of the item's closure." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13174 +#: guix-git/doc/guix.texi:13531 #, no-wrap msgid "--map-file=@var{file}" msgstr "--map-file=@var{file}" #. type: table -#: guix-git/doc/guix.texi:13176 +#: guix-git/doc/guix.texi:13533 msgid "Write a graphical map of disk usage in PNG format to @var{file}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13178 +#: guix-git/doc/guix.texi:13535 msgid "For the example above, the map looks like this:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13181 +#: guix-git/doc/guix.texi:13538 msgid "@image{images/coreutils-size-map,5in,, map of Coreutils disk usage produced by @command{guix size}}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13186 +#: guix-git/doc/guix.texi:13543 msgid "This option requires that @uref{https://wingolog.org/software/guile-charting/, Guile-Charting} be installed and visible in Guile's module search path. When that is not the case, @command{guix size} fails as it tries to load it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13190 +#: guix-git/doc/guix.texi:13547 msgid "Consider packages for @var{system}---e.g., @code{x86_64-linux}." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13201 +#: guix-git/doc/guix.texi:13558 #, no-wrap msgid "Invoking @command{guix graph}" msgstr "Вызов @command{guix graph}" #. type: cindex -#: guix-git/doc/guix.texi:13203 +#: guix-git/doc/guix.texi:13560 #, no-wrap msgid "DAG" msgstr "DAG" #. type: command{#1} -#: guix-git/doc/guix.texi:13204 +#: guix-git/doc/guix.texi:13561 #, no-wrap msgid "guix graph" msgstr "guix graph" #. type: Plain text -#: guix-git/doc/guix.texi:13219 +#: guix-git/doc/guix.texi:13576 msgid "Packages and their dependencies form a @dfn{graph}, specifically a directed acyclic graph (DAG). It can quickly become difficult to have a mental model of the package DAG, so the @command{guix graph} command provides a visual representation of the DAG@. By default, @command{guix graph} emits a DAG representation in the input format of @uref{https://www.graphviz.org/, Graphviz}, so its output can be passed directly to the @command{dot} command of Graphviz. It can also emit an HTML page with embedded JavaScript code to display a ``chord diagram'' in a Web browser, using the @uref{https://d3js.org/, d3.js} library, or emit Cypher queries to construct a graph in a graph database supporting the @uref{https://www.opencypher.org/, openCypher} query language. With @option{--path}, it simply displays the shortest path between two packages. The general syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13222 +#: guix-git/doc/guix.texi:13579 #, no-wrap msgid "guix graph @var{options} @var{package}@dots{}\n" msgstr "guix graph @var{options} @var{package}@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:13227 +#: guix-git/doc/guix.texi:13584 msgid "For example, the following command generates a PDF file representing the package DAG for the GNU@tie{}Core Utilities, showing its build-time dependencies:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13230 +#: guix-git/doc/guix.texi:13587 #, no-wrap msgid "guix graph coreutils | dot -Tpdf > dag.pdf\n" msgstr "guix graph coreutils | dot -Tpdf > dag.pdf\n" #. type: Plain text -#: guix-git/doc/guix.texi:13233 +#: guix-git/doc/guix.texi:13590 msgid "The output looks like this:" msgstr "Вывод должен быть таким:" #. type: Plain text -#: guix-git/doc/guix.texi:13235 +#: guix-git/doc/guix.texi:13592 msgid "@image{images/coreutils-graph,2in,,Dependency graph of the GNU Coreutils}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13237 +#: guix-git/doc/guix.texi:13594 msgid "Nice little graph, no?" msgstr "Неплохой граф, не так ли?" #. type: Plain text -#: guix-git/doc/guix.texi:13240 +#: guix-git/doc/guix.texi:13597 msgid "You may find it more pleasant to navigate the graph interactively with @command{xdot} (from the @code{xdot} package):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13243 +#: guix-git/doc/guix.texi:13600 #, no-wrap msgid "guix graph coreutils | xdot -\n" msgstr "guix graph coreutils | xdot -\n" #. type: Plain text -#: guix-git/doc/guix.texi:13250 +#: guix-git/doc/guix.texi:13607 msgid "But there is more than one graph! The one above is concise: it is the graph of package objects, omitting implicit inputs such as GCC, libc, grep, etc. It is often useful to have such a concise graph, but sometimes one may want to see more details. @command{guix graph} supports several types of graphs, allowing you to choose the level of detail:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13256 +#: guix-git/doc/guix.texi:13613 msgid "This is the default type used in the example above. It shows the DAG of package objects, excluding implicit dependencies. It is concise, but filters out many details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13257 +#: guix-git/doc/guix.texi:13614 #, no-wrap msgid "reverse-package" msgstr "reverse-package" #. type: table -#: guix-git/doc/guix.texi:13259 +#: guix-git/doc/guix.texi:13616 msgid "This shows the @emph{reverse} DAG of packages. For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13262 +#: guix-git/doc/guix.texi:13619 #, no-wrap msgid "guix graph --type=reverse-package ocaml\n" msgstr "guix graph --type=reverse-package ocaml\n" #. type: table -#: guix-git/doc/guix.texi:13267 +#: guix-git/doc/guix.texi:13624 msgid "...@: yields the graph of packages that @emph{explicitly} depend on OCaml (if you are also interested in cases where OCaml is an implicit dependency, see @code{reverse-bag} below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13272 +#: guix-git/doc/guix.texi:13629 msgid "Note that for core packages this can yield huge graphs. If all you want is to know the number of packages that depend on a given package, use @command{guix refresh --list-dependent} (@pxref{Invoking guix refresh, @option{--list-dependent}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13273 +#: guix-git/doc/guix.texi:13630 #, no-wrap msgid "bag-emerged" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13275 +#: guix-git/doc/guix.texi:13632 msgid "This is the package DAG, @emph{including} implicit inputs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13277 +#: guix-git/doc/guix.texi:13634 msgid "For instance, the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13280 +#: guix-git/doc/guix.texi:13637 #, no-wrap msgid "guix graph --type=bag-emerged coreutils\n" msgstr "guix graph --type=bag-emerged coreutils\n" #. type: table -#: guix-git/doc/guix.texi:13283 +#: guix-git/doc/guix.texi:13640 msgid "...@: yields this bigger graph:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13285 +#: guix-git/doc/guix.texi:13642 msgid "@image{images/coreutils-bag-graph,,5in,Detailed dependency graph of the GNU Coreutils}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13288 +#: guix-git/doc/guix.texi:13645 msgid "At the bottom of the graph, we see all the implicit inputs of @var{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13292 +#: guix-git/doc/guix.texi:13649 msgid "Now, note that the dependencies of these implicit inputs---that is, the @dfn{bootstrap dependencies} (@pxref{Bootstrapping})---are not shown here, for conciseness." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13293 +#: guix-git/doc/guix.texi:13650 #, no-wrap msgid "bag" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13296 +#: guix-git/doc/guix.texi:13653 msgid "Similar to @code{bag-emerged}, but this time including all the bootstrap dependencies." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13297 +#: guix-git/doc/guix.texi:13654 #, no-wrap msgid "bag-with-origins" msgstr "bag-with-origins" #. type: table -#: guix-git/doc/guix.texi:13299 +#: guix-git/doc/guix.texi:13656 msgid "Similar to @code{bag}, but also showing origins and their dependencies." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13300 +#: guix-git/doc/guix.texi:13657 #, no-wrap msgid "reverse-bag" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13303 +#: guix-git/doc/guix.texi:13660 msgid "This shows the @emph{reverse} DAG of packages. Unlike @code{reverse-package}, it also takes implicit dependencies into account. For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13306 +#: guix-git/doc/guix.texi:13663 #, no-wrap msgid "guix graph -t reverse-bag dune\n" msgstr "guix graph -t reverse-bag dune\n" #. type: table -#: guix-git/doc/guix.texi:13313 +#: guix-git/doc/guix.texi:13670 msgid "...@: yields the graph of all packages that depend on Dune, directly or indirectly. Since Dune is an @emph{implicit} dependency of many packages @i{via} @code{dune-build-system}, this shows a large number of packages, whereas @code{reverse-package} would show very few if any." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13319 +#: guix-git/doc/guix.texi:13676 msgid "This is the most detailed representation: It shows the DAG of derivations (@pxref{Derivations}) and plain store items. Compared to the above representation, many additional nodes are visible, including build scripts, patches, Guile modules, etc." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13322 +#: guix-git/doc/guix.texi:13679 msgid "For this type of graph, it is also possible to pass a @file{.drv} file name instead of a package name, as in:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13325 +#: guix-git/doc/guix.texi:13682 #, no-wrap msgid "guix graph -t derivation $(guix system build -d my-config.scm)\n" msgstr "guix graph -t derivation `guix system build -d my-config.scm`\n" #. type: item -#: guix-git/doc/guix.texi:13327 +#: guix-git/doc/guix.texi:13684 #, no-wrap msgid "module" msgstr "модуль" #. type: table -#: guix-git/doc/guix.texi:13331 +#: guix-git/doc/guix.texi:13688 msgid "This is the graph of @dfn{package modules} (@pxref{Package Modules}). For example, the following command shows the graph for the package module that defines the @code{guile} package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13334 +#: guix-git/doc/guix.texi:13691 #, no-wrap msgid "guix graph -t module guile | xdot -\n" msgstr "guix graph -t module guile | xdot -\n" #. type: Plain text -#: guix-git/doc/guix.texi:13339 +#: guix-git/doc/guix.texi:13696 msgid "All the types above correspond to @emph{build-time dependencies}. The following graph type represents the @emph{run-time dependencies}:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13344 +#: guix-git/doc/guix.texi:13701 msgid "This is the graph of @dfn{references} of a package output, as returned by @command{guix gc --references} (@pxref{Invoking guix gc})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13347 +#: guix-git/doc/guix.texi:13704 msgid "If the given package output is not available in the store, @command{guix graph} attempts to obtain dependency information from substitutes." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13351 +#: guix-git/doc/guix.texi:13708 msgid "Here you can also pass a store file name instead of a package name. For example, the command below produces the reference graph of your profile (which can be big!):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13354 +#: guix-git/doc/guix.texi:13711 #, no-wrap msgid "guix graph -t references $(readlink -f ~/.guix-profile)\n" msgstr "guix graph -t references `readlink -f ~/.guix-profile`\n" #. type: item -#: guix-git/doc/guix.texi:13356 +#: guix-git/doc/guix.texi:13713 #, no-wrap msgid "referrers" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13359 +#: guix-git/doc/guix.texi:13716 msgid "This is the graph of the @dfn{referrers} of a store item, as returned by @command{guix gc --referrers} (@pxref{Invoking guix gc})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13365 +#: guix-git/doc/guix.texi:13722 msgid "This relies exclusively on local information from your store. For instance, let us suppose that the current Inkscape is available in 10 profiles on your machine; @command{guix graph -t referrers inkscape} will show a graph rooted at Inkscape and with those 10 profiles linked to it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13368 +#: guix-git/doc/guix.texi:13725 msgid "It can help determine what is preventing a store item from being garbage collected." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13371 +#: guix-git/doc/guix.texi:13728 #, no-wrap msgid "shortest path, between packages" msgstr "кратчайший путь между пакетами" #. type: Plain text -#: guix-git/doc/guix.texi:13378 +#: guix-git/doc/guix.texi:13735 msgid "Often, the graph of the package you are interested in does not fit on your screen, and anyway all you want to know is @emph{why} that package actually depends on some seemingly unrelated package. The @option{--path} option instructs @command{guix graph} to display the shortest path between two packages (or derivations, or store items, etc.):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13392 +#: guix-git/doc/guix.texi:13749 #, no-wrap msgid "" "$ guix graph --path emacs libunistring\n" @@ -24745,89 +25438,89 @@ msgstr "" "/gnu/store/@dots{}-libunistring-0.9.10\n" #. type: Plain text -#: guix-git/doc/guix.texi:13400 +#: guix-git/doc/guix.texi:13757 msgid "Sometimes you still want to visualize the graph but would like to trim it so it can actually be displayed. One way to do it is via the @option{--max-depth} (or @option{-M}) option, which lets you specify the maximum depth of the graph. In the example below, we visualize only @code{libreoffice} and the nodes whose distance to @code{libreoffice} is at most 2:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13403 +#: guix-git/doc/guix.texi:13760 #, fuzzy, no-wrap #| msgid "guix graph -t module guile | xdot -\n" msgid "guix graph -M 2 libreoffice | xdot -f fdp -\n" msgstr "guix graph -t module guile | xdot -\n" #. type: Plain text -#: guix-git/doc/guix.texi:13407 +#: guix-git/doc/guix.texi:13764 msgid "Mind you, that's still a big ball of spaghetti, but at least @command{dot} can render it quickly and it can be browsed somewhat." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13409 +#: guix-git/doc/guix.texi:13766 msgid "The available options are the following:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13415 +#: guix-git/doc/guix.texi:13772 msgid "Produce a graph output of @var{type}, where @var{type} must be one of the values listed above." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13416 +#: guix-git/doc/guix.texi:13773 #, no-wrap msgid "--list-types" msgstr "--list-types" #. type: table -#: guix-git/doc/guix.texi:13418 +#: guix-git/doc/guix.texi:13775 msgid "List the supported graph types." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13419 +#: guix-git/doc/guix.texi:13776 #, no-wrap msgid "--backend=@var{backend}" msgstr "--backend=@var{backend}" #. type: itemx -#: guix-git/doc/guix.texi:13420 +#: guix-git/doc/guix.texi:13777 #, no-wrap msgid "-b @var{backend}" msgstr "-b @var{backend}" #. type: table -#: guix-git/doc/guix.texi:13422 +#: guix-git/doc/guix.texi:13779 msgid "Produce a graph using the selected @var{backend}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13423 +#: guix-git/doc/guix.texi:13780 #, no-wrap msgid "--list-backends" msgstr "--list-backends" #. type: table -#: guix-git/doc/guix.texi:13425 +#: guix-git/doc/guix.texi:13782 msgid "List the supported graph backends." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13427 +#: guix-git/doc/guix.texi:13784 msgid "Currently, the available backends are Graphviz and d3.js." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13428 +#: guix-git/doc/guix.texi:13785 #, no-wrap msgid "--path" msgstr "--paths" #. type: table -#: guix-git/doc/guix.texi:13433 +#: guix-git/doc/guix.texi:13790 msgid "Display the shortest path between two nodes of the type specified by @option{--type}. The example below shows the shortest path between @code{libreoffice} and @code{llvm} according to the references of @code{libreoffice}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13440 +#: guix-git/doc/guix.texi:13797 #, no-wrap msgid "" "$ guix graph --path -t references libreoffice llvm\n" @@ -24843,398 +25536,398 @@ msgstr "" "/gnu/store/@dots{}-llvm-9.0.1\n" #. type: example -#: guix-git/doc/guix.texi:13450 +#: guix-git/doc/guix.texi:13807 #, no-wrap msgid "guix graph -e '(@@@@ (gnu packages commencement) gnu-make-final)'\n" msgstr "guix graph -e '(@@@@ (gnu packages commencement) gnu-make-final)'\n" #. type: table -#: guix-git/doc/guix.texi:13455 +#: guix-git/doc/guix.texi:13812 msgid "Display the graph for @var{system}---e.g., @code{i686-linux}." msgstr "Вывести граф для @var{system}---например, @code{i686-linux}." #. type: table -#: guix-git/doc/guix.texi:13458 +#: guix-git/doc/guix.texi:13815 msgid "The package dependency graph is largely architecture-independent, but there are some architecture-dependent bits that this option allows you to visualize." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13474 +#: guix-git/doc/guix.texi:13831 msgid "On top of that, @command{guix graph} supports all the usual package transformation options (@pxref{Package Transformation Options}). This makes it easy to view the effect of a graph-rewriting transformation such as @option{--with-input}. For example, the command below outputs the graph of @code{git} once @code{openssl} has been replaced by @code{libressl} everywhere in the graph:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13477 +#: guix-git/doc/guix.texi:13834 #, no-wrap msgid "guix graph git --with-input=openssl=libressl\n" msgstr "guix graph git --with-input=openssl=libressl\n" #. type: Plain text -#: guix-git/doc/guix.texi:13480 +#: guix-git/doc/guix.texi:13837 msgid "So many possibilities, so much fun!" msgstr "" #. type: section -#: guix-git/doc/guix.texi:13482 +#: guix-git/doc/guix.texi:13839 #, no-wrap msgid "Invoking @command{guix publish}" msgstr "Вызов @command{guix publish}" #. type: command{#1} -#: guix-git/doc/guix.texi:13484 +#: guix-git/doc/guix.texi:13841 #, no-wrap msgid "guix publish" msgstr "guix publish" #. type: Plain text -#: guix-git/doc/guix.texi:13488 +#: guix-git/doc/guix.texi:13845 msgid "The purpose of @command{guix publish} is to enable users to easily share their store with others, who can then use it as a substitute server (@pxref{Substitutes})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13494 +#: guix-git/doc/guix.texi:13851 msgid "When @command{guix publish} runs, it spawns an HTTP server which allows anyone with network access to obtain substitutes from it. This means that any machine running Guix can also act as if it were a build farm, since the HTTP interface is compatible with Cuirass, the software behind the @code{@value{SUBSTITUTE-SERVER-1}} build farm." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13500 +#: guix-git/doc/guix.texi:13857 msgid "For security, each substitute is signed, allowing recipients to check their authenticity and integrity (@pxref{Substitutes}). Because @command{guix publish} uses the signing key of the system, which is only readable by the system administrator, it must be started as root; the @option{--user} option makes it drop root privileges early on." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13504 +#: guix-git/doc/guix.texi:13861 msgid "The signing key pair must be generated before @command{guix publish} is launched, using @command{guix archive --generate-key} (@pxref{Invoking guix archive})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13509 +#: guix-git/doc/guix.texi:13866 msgid "When the @option{--advertise} option is passed, the server advertises its availability on the local network using multicast DNS (mDNS) and DNS service discovery (DNS-SD), currently @i{via} Guile-Avahi (@pxref{Top,,, guile-avahi, Using Avahi in Guile Scheme Programs})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13514 +#: guix-git/doc/guix.texi:13871 #, no-wrap msgid "guix publish @var{options}@dots{}\n" msgstr "guix publish @var{options}@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:13518 +#: guix-git/doc/guix.texi:13875 msgid "Running @command{guix publish} without any additional arguments will spawn an HTTP server on port 8080:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13521 +#: guix-git/doc/guix.texi:13878 #, no-wrap msgid "guix publish\n" msgstr "guix publish\n" #. type: Plain text -#: guix-git/doc/guix.texi:13525 +#: guix-git/doc/guix.texi:13882 msgid "Once a publishing server has been authorized, the daemon may download substitutes from it. @xref{Getting Substitutes from Other Servers}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13533 +#: guix-git/doc/guix.texi:13890 msgid "By default, @command{guix publish} compresses archives on the fly as it serves them. This ``on-the-fly'' mode is convenient in that it requires no setup and is immediately available. However, when serving lots of clients, we recommend using the @option{--cache} option, which enables caching of the archives before they are sent to clients---see below for details. The @command{guix weather} command provides a handy way to check what a server provides (@pxref{Invoking guix weather})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13540 +#: guix-git/doc/guix.texi:13897 msgid "As a bonus, @command{guix publish} also serves as a content-addressed mirror for source files referenced in @code{origin} records (@pxref{origin Reference}). For instance, assuming @command{guix publish} is running on @code{example.org}, the following URL returns the raw @file{hello-2.10.tar.gz} file with the given SHA256 hash (represented in @code{nix-base32} format, @pxref{Invoking guix hash}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13543 +#: guix-git/doc/guix.texi:13900 #, no-wrap msgid "http://example.org/file/hello-2.10.tar.gz/sha256/0ssi1@dots{}ndq1i\n" msgstr "http://example.org/file/hello-2.10.tar.gz/sha256/0ssi1@dots{}ndq1i\n" #. type: Plain text -#: guix-git/doc/guix.texi:13547 +#: guix-git/doc/guix.texi:13904 msgid "Obviously, these URLs only work for files that are in the store; in other cases, they return 404 (``Not Found'')." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13548 +#: guix-git/doc/guix.texi:13905 #, no-wrap msgid "build logs, publication" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13550 +#: guix-git/doc/guix.texi:13907 msgid "Build logs are available from @code{/log} URLs like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13553 +#: guix-git/doc/guix.texi:13910 #, no-wrap msgid "http://example.org/log/gwspk@dots{}-guile-2.2.3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13563 +#: guix-git/doc/guix.texi:13920 msgid "When @command{guix-daemon} is configured to save compressed build logs, as is the case by default (@pxref{Invoking guix-daemon}), @code{/log} URLs return the compressed log as-is, with an appropriate @code{Content-Type} and/or @code{Content-Encoding} header. We recommend running @command{guix-daemon} with @option{--log-compression=gzip} since Web browsers can automatically decompress it, which is not the case with Bzip2 compression." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13567 +#: guix-git/doc/guix.texi:13924 #, no-wrap msgid "--port=@var{port}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13568 +#: guix-git/doc/guix.texi:13925 #, no-wrap msgid "-p @var{port}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13570 +#: guix-git/doc/guix.texi:13927 msgid "Listen for HTTP requests on @var{port}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13571 +#: guix-git/doc/guix.texi:13928 #, no-wrap msgid "--listen=@var{host}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13574 +#: guix-git/doc/guix.texi:13931 msgid "Listen on the network interface for @var{host}. The default is to accept connections from any interface." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13579 +#: guix-git/doc/guix.texi:13936 msgid "Change privileges to @var{user} as soon as possible---i.e., once the server socket is open and the signing key has been read." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13580 +#: guix-git/doc/guix.texi:13937 #, no-wrap msgid "--compression[=@var{method}[:@var{level}]]" msgstr "--log-compression=@var{type}" #. type: itemx -#: guix-git/doc/guix.texi:13581 +#: guix-git/doc/guix.texi:13938 #, no-wrap msgid "-C [@var{method}[:@var{level}]]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13585 +#: guix-git/doc/guix.texi:13942 msgid "Compress data using the given @var{method} and @var{level}. @var{method} is one of @code{lzip}, @code{zstd}, and @code{gzip}; when @var{method} is omitted, @code{gzip} is used." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13589 +#: guix-git/doc/guix.texi:13946 msgid "When @var{level} is zero, disable compression. The range 1 to 9 corresponds to different compression levels: 1 is the fastest, and 9 is the best (CPU-intensive). The default is 3." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13596 +#: guix-git/doc/guix.texi:13953 msgid "Usually, @code{lzip} compresses noticeably better than @code{gzip} for a small increase in CPU usage; see @uref{https://nongnu.org/lzip/lzip_benchmark.html,benchmarks on the lzip Web page}. However, @code{lzip} achieves low decompression throughput (on the order of 50@tie{}MiB/s on modern hardware), which can be a bottleneck for someone who downloads over a fast network connection." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13600 +#: guix-git/doc/guix.texi:13957 msgid "The compression ratio of @code{zstd} is between that of @code{lzip} and that of @code{gzip}; its main advantage is a @uref{https://facebook.github.io/zstd/,high decompression speed}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13609 +#: guix-git/doc/guix.texi:13966 msgid "Unless @option{--cache} is used, compression occurs on the fly and the compressed streams are not cached. Thus, to reduce load on the machine that runs @command{guix publish}, it may be a good idea to choose a low compression level, to run @command{guix publish} behind a caching proxy, or to use @option{--cache}. Using @option{--cache} has the advantage that it allows @command{guix publish} to add @code{Content-Length} HTTP header to its responses." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13614 +#: guix-git/doc/guix.texi:13971 msgid "This option can be repeated, in which case every substitute gets compressed using all the selected methods, and all of them are advertised. This is useful when users may not support all the compression methods: they can select the one they support." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13615 +#: guix-git/doc/guix.texi:13972 #, no-wrap msgid "--cache=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13616 +#: guix-git/doc/guix.texi:13973 #, no-wrap msgid "-c @var{directory}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13619 +#: guix-git/doc/guix.texi:13976 msgid "Cache archives and meta-data (@code{.narinfo} URLs) to @var{directory} and only serve archives that are in cache." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13627 +#: guix-git/doc/guix.texi:13984 msgid "When this option is omitted, archives and meta-data are created on-the-fly. This can reduce the available bandwidth, especially when compression is enabled, since this may become CPU-bound. Another drawback of the default mode is that the length of archives is not known in advance, so @command{guix publish} does not add a @code{Content-Length} HTTP header to its responses, which in turn prevents clients from knowing the amount of data being downloaded." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13635 +#: guix-git/doc/guix.texi:13992 msgid "Conversely, when @option{--cache} is used, the first request for a store item (@i{via} a @code{.narinfo} URL) triggers a background process to @dfn{bake} the archive---computing its @code{.narinfo} and compressing the archive, if needed. Once the archive is cached in @var{directory}, subsequent requests succeed and are served directly from the cache, which guarantees that clients get the best possible bandwidth." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13642 +#: guix-git/doc/guix.texi:13999 msgid "That first @code{.narinfo} request nonetheless returns 200, provided the requested store item is ``small enough'', below the cache bypass threshold---see @option{--cache-bypass-threshold} below. That way, clients do not have to wait until the archive is baked. For larger store items, the first @code{.narinfo} request returns 404, meaning that clients have to wait until the archive is baked." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13646 +#: guix-git/doc/guix.texi:14003 msgid "The ``baking'' process is performed by worker threads. By default, one thread per CPU core is created, but this can be customized. See @option{--workers} below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13649 +#: guix-git/doc/guix.texi:14006 msgid "When @option{--ttl} is used, cached entries are automatically deleted when they have expired." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13650 +#: guix-git/doc/guix.texi:14007 #, no-wrap msgid "--workers=@var{N}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13653 +#: guix-git/doc/guix.texi:14010 msgid "When @option{--cache} is used, request the allocation of @var{N} worker threads to ``bake'' archives." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13654 +#: guix-git/doc/guix.texi:14011 #, no-wrap msgid "--ttl=@var{ttl}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13658 +#: guix-git/doc/guix.texi:14015 msgid "Produce @code{Cache-Control} HTTP headers that advertise a time-to-live (TTL) of @var{ttl}. @var{ttl} must denote a duration: @code{5d} means 5 days, @code{1m} means 1 month, and so on." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13663 +#: guix-git/doc/guix.texi:14020 msgid "This allows the user's Guix to keep substitute information in cache for @var{ttl}. However, note that @code{guix publish} does not itself guarantee that the store items it provides will indeed remain available for as long as @var{ttl}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13667 +#: guix-git/doc/guix.texi:14024 msgid "Additionally, when @option{--cache} is used, cached entries that have not been accessed for @var{ttl} and that no longer have a corresponding item in the store, may be deleted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13668 +#: guix-git/doc/guix.texi:14025 #, no-wrap msgid "--negative-ttl=@var{ttl}" msgstr "--manifest=@var{file}" #. type: table -#: guix-git/doc/guix.texi:13673 +#: guix-git/doc/guix.texi:14030 msgid "Similarly produce @code{Cache-Control} HTTP headers to advertise the time-to-live (TTL) of @emph{negative} lookups---missing store items, for which the HTTP 404 code is returned. By default, no negative TTL is advertised." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13677 +#: guix-git/doc/guix.texi:14034 msgid "This parameter can help adjust server load and substitute latency by instructing cooperating clients to be more or less patient when a store item is missing." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13678 +#: guix-git/doc/guix.texi:14035 #, no-wrap msgid "--cache-bypass-threshold=@var{size}" msgstr "--search-paths[=@var{kind}]" #. type: table -#: guix-git/doc/guix.texi:13683 +#: guix-git/doc/guix.texi:14040 msgid "When used in conjunction with @option{--cache}, store items smaller than @var{size} are immediately available, even when they are not yet in cache. @var{size} is a size in bytes, or it can be suffixed by @code{M} for megabytes and so on. The default is @code{10M}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13688 +#: guix-git/doc/guix.texi:14045 msgid "``Cache bypass'' allows you to reduce the publication delay for clients at the expense of possibly additional I/O and CPU use on the server side: depending on the client access patterns, those store items can end up being baked several times until a copy is available in cache." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13692 +#: guix-git/doc/guix.texi:14049 msgid "Increasing the threshold may be useful for sites that have few users, or to guarantee that users get substitutes even for store items that are not popular." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13693 +#: guix-git/doc/guix.texi:14050 #, no-wrap msgid "--nar-path=@var{path}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13696 +#: guix-git/doc/guix.texi:14053 msgid "Use @var{path} as the prefix for the URLs of ``nar'' files (@pxref{Invoking guix archive, normalized archives})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13700 +#: guix-git/doc/guix.texi:14057 msgid "By default, nars are served at a URL such as @code{/nar/gzip/@dots{}-coreutils-8.25}. This option allows you to change the @code{/nar} part to @var{path}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13701 +#: guix-git/doc/guix.texi:14058 #, no-wrap msgid "--public-key=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13702 +#: guix-git/doc/guix.texi:14059 #, no-wrap msgid "--private-key=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13705 guix-git/doc/guix.texi:29141 -#: guix-git/doc/guix.texi:29178 +#: guix-git/doc/guix.texi:14062 guix-git/doc/guix.texi:29478 +#: guix-git/doc/guix.texi:29515 msgid "Use the specific @var{file}s as the public/private key pair used to sign the store items being published." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13712 +#: guix-git/doc/guix.texi:14069 msgid "The files must correspond to the same key pair (the private key is used for signing and the public key is merely advertised in the signature metadata). They must contain keys in the canonical s-expression format as produced by @command{guix archive --generate-key} (@pxref{Invoking guix archive}). By default, @file{/etc/guix/signing-key.pub} and @file{/etc/guix/signing-key.sec} are used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13713 +#: guix-git/doc/guix.texi:14070 #, no-wrap msgid "--repl[=@var{port}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13714 +#: guix-git/doc/guix.texi:14071 #, no-wrap msgid "-r [@var{port}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13718 +#: guix-git/doc/guix.texi:14075 msgid "Spawn a Guile REPL server (@pxref{REPL Servers,,, guile, GNU Guile Reference Manual}) on @var{port} (37146 by default). This is used primarily for debugging a running @command{guix publish} server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13724 +#: guix-git/doc/guix.texi:14081 msgid "Enabling @command{guix publish} on Guix System is a one-liner: just instantiate a @code{guix-publish-service-type} service in the @code{services} field of the @code{operating-system} declaration (@pxref{guix-publish-service-type, @code{guix-publish-service-type}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13727 +#: guix-git/doc/guix.texi:14084 msgid "If you are instead running Guix on a ``foreign distro'', follow these instructions:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:13731 +#: guix-git/doc/guix.texi:14088 msgid "If your host distro uses the systemd init system:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13736 +#: guix-git/doc/guix.texi:14093 #, no-wrap msgid "" "# ln -s ~root/.guix-profile/lib/systemd/system/guix-publish.service \\\n" @@ -25243,7 +25936,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13744 +#: guix-git/doc/guix.texi:14101 #, no-wrap msgid "" "# ln -s ~root/.guix-profile/lib/upstart/system/guix-publish.conf /etc/init/\n" @@ -25251,56 +25944,56 @@ msgid "" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:13748 +#: guix-git/doc/guix.texi:14105 msgid "Otherwise, proceed similarly with your distro's init system." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13751 +#: guix-git/doc/guix.texi:14108 #, no-wrap msgid "Invoking @command{guix challenge}" msgstr "Вызов @command{guix challenge}" #. type: cindex -#: guix-git/doc/guix.texi:13754 +#: guix-git/doc/guix.texi:14111 #, no-wrap msgid "verifiable builds" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13755 +#: guix-git/doc/guix.texi:14112 #, no-wrap msgid "guix challenge" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13756 +#: guix-git/doc/guix.texi:14113 #, no-wrap msgid "challenge" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13761 +#: guix-git/doc/guix.texi:14118 msgid "Do the binaries provided by this server really correspond to the source code it claims to build? Is a package build process deterministic? These are the questions the @command{guix challenge} command attempts to answer." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13769 +#: guix-git/doc/guix.texi:14126 msgid "The former is obviously an important question: Before using a substitute server (@pxref{Substitutes}), one had better @emph{verify} that it provides the right binaries, and thus @emph{challenge} it. The latter is what enables the former: If package builds are deterministic, then independent builds of the package should yield the exact same result, bit for bit; if a server provides a binary different from the one obtained locally, it may be either corrupt or malicious." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13778 +#: guix-git/doc/guix.texi:14135 msgid "We know that the hash that shows up in @file{/gnu/store} file names is the hash of all the inputs of the process that built the file or directory---compilers, libraries, build scripts, etc. (@pxref{Introduction}). Assuming deterministic build processes, one store file name should map to exactly one build output. @command{guix challenge} checks whether there is, indeed, a single mapping by comparing the build outputs of several independent builds of any given store item." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13780 +#: guix-git/doc/guix.texi:14137 msgid "The command output looks like this:" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13792 +#: guix-git/doc/guix.texi:14149 #, no-wrap msgid "" "$ guix challenge --substitute-urls=\"https://@value{SUBSTITUTE-SERVER-1} https://guix.example.org\"\n" @@ -25317,7 +26010,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13799 +#: guix-git/doc/guix.texi:14156 #, no-wrap msgid "" "/gnu/store/@dots{}-git-2.5.0 contents differ:\n" @@ -25330,7 +26023,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13806 +#: guix-git/doc/guix.texi:14163 #, no-wrap msgid "" "/gnu/store/@dots{}-pius-2.1.1 contents differ:\n" @@ -25343,7 +26036,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13808 +#: guix-git/doc/guix.texi:14165 #, no-wrap msgid "" "@dots{}\n" @@ -25351,7 +26044,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13813 +#: guix-git/doc/guix.texi:14170 #, no-wrap msgid "" "6,406 store items were analyzed:\n" @@ -25361,28 +26054,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13821 +#: guix-git/doc/guix.texi:14178 msgid "In this example, @command{guix challenge} first scans the store to determine the set of locally-built derivations---as opposed to store items that were downloaded from a substitute server---and then queries all the substitute servers. It then reports those store items for which the servers obtained a result different from the local build." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13822 +#: guix-git/doc/guix.texi:14179 #, no-wrap msgid "non-determinism, in package builds" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13833 +#: guix-git/doc/guix.texi:14190 msgid "As an example, @code{guix.example.org} always gets a different answer. Conversely, @code{@value{SUBSTITUTE-SERVER-1}} agrees with local builds, except in the case of Git. This might indicate that the build process of Git is non-deterministic, meaning that its output varies as a function of various things that Guix does not fully control, in spite of building packages in isolated environments (@pxref{Features}). Most common sources of non-determinism include the addition of timestamps in build results, the inclusion of random numbers, and directory listings sorted by inode number. See @uref{https://reproducible-builds.org/docs/}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13836 +#: guix-git/doc/guix.texi:14193 msgid "To find out what is wrong with this Git binary, the easiest approach is to run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13841 +#: guix-git/doc/guix.texi:14198 #, no-wrap msgid "" "guix challenge git \\\n" @@ -25391,17 +26084,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13845 +#: guix-git/doc/guix.texi:14202 msgid "This automatically invokes @command{diffoscope}, which displays detailed information about files that differ." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13848 +#: guix-git/doc/guix.texi:14205 msgid "Alternatively, we can do something along these lines (@pxref{Invoking guix archive}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13853 +#: guix-git/doc/guix.texi:14210 #, fuzzy, no-wrap msgid "" "$ wget -q -O - https://@value{SUBSTITUTE-SERVER-1}/nar/lzip/@dots{}-git-2.5.0 \\\n" @@ -25413,160 +26106,160 @@ msgstr "" " | bunzip2 | guix archive -x /tmp/emacs\n" #. type: Plain text -#: guix-git/doc/guix.texi:13862 +#: guix-git/doc/guix.texi:14219 msgid "This command shows the difference between the files resulting from the local build, and the files resulting from the build on @code{@value{SUBSTITUTE-SERVER-1}} (@pxref{Overview, Comparing and Merging Files,, diffutils, Comparing and Merging Files}). The @command{diff} command works great for text files. When binary files differ, a better option is @uref{https://diffoscope.org/, Diffoscope}, a tool that helps visualize differences for all kinds of files." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13870 +#: guix-git/doc/guix.texi:14227 msgid "Once you have done that work, you can tell whether the differences are due to a non-deterministic build process or to a malicious server. We try hard to remove sources of non-determinism in packages to make it easier to verify substitutes, but of course, this is a process that involves not just Guix, but a large part of the free software community. In the meantime, @command{guix challenge} is one tool to help address the problem." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13874 +#: guix-git/doc/guix.texi:14231 msgid "If you are writing packages for Guix, you are encouraged to check whether @code{@value{SUBSTITUTE-SERVER-1}} and other substitute servers obtain the same build result as you did with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13877 +#: guix-git/doc/guix.texi:14234 #, no-wrap msgid "$ guix challenge @var{package}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13882 +#: guix-git/doc/guix.texi:14239 msgid "where @var{package} is a package specification such as @code{guile@@2.0} or @code{glibc:debug}." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13887 +#: guix-git/doc/guix.texi:14244 #, no-wrap msgid "guix challenge @var{options} [@var{packages}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13894 +#: guix-git/doc/guix.texi:14251 msgid "When a difference is found between the hash of a locally-built item and that of a server-provided substitute, or among substitutes provided by different servers, the command displays it as in the example above and its exit code is 2 (other non-zero exit codes denote other kinds of errors)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13896 +#: guix-git/doc/guix.texi:14253 msgid "The one option that matters is:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13902 +#: guix-git/doc/guix.texi:14259 msgid "Consider @var{urls} the whitespace-separated list of substitute source URLs to compare to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13903 +#: guix-git/doc/guix.texi:14260 #, no-wrap msgid "--diff=@var{mode}" msgstr "--load=@var{file}" #. type: table -#: guix-git/doc/guix.texi:13905 +#: guix-git/doc/guix.texi:14262 msgid "Upon mismatches, show differences according to @var{mode}, one of:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13907 +#: guix-git/doc/guix.texi:14264 #, no-wrap msgid "@code{simple} (the default)" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:13909 +#: guix-git/doc/guix.texi:14266 msgid "Show the list of files that differ." msgstr "Вывести список живых файлов и директорий склада." #. type: code{#1} -#: guix-git/doc/guix.texi:13910 +#: guix-git/doc/guix.texi:14267 #, no-wrap msgid "diffoscope" msgstr "" #. type: var{#1} -#: guix-git/doc/guix.texi:13911 +#: guix-git/doc/guix.texi:14268 #, no-wrap msgid "command" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13914 +#: guix-git/doc/guix.texi:14271 msgid "Invoke @uref{https://diffoscope.org/, Diffoscope}, passing it two directories whose contents do not match." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13917 +#: guix-git/doc/guix.texi:14274 msgid "When @var{command} is an absolute file name, run @var{command} instead of Diffoscope." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13920 +#: guix-git/doc/guix.texi:14277 msgid "Do not show further details about the differences." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13925 +#: guix-git/doc/guix.texi:14282 msgid "Thus, unless @option{--diff=none} is passed, @command{guix challenge} downloads the store items from the given substitute servers so that it can compare them." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13926 +#: guix-git/doc/guix.texi:14283 #, no-wrap msgid "--verbose" msgstr "--verbose" #. type: itemx -#: guix-git/doc/guix.texi:13927 +#: guix-git/doc/guix.texi:14284 #, no-wrap msgid "-v" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13930 +#: guix-git/doc/guix.texi:14287 msgid "Show details about matches (identical contents) in addition to information about mismatches." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13934 +#: guix-git/doc/guix.texi:14291 #, no-wrap msgid "Invoking @command{guix copy}" msgstr "Вызов @command{guix copy}" #. type: cindex -#: guix-git/doc/guix.texi:13936 +#: guix-git/doc/guix.texi:14293 #, no-wrap msgid "copy, of store items, over SSH" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13937 +#: guix-git/doc/guix.texi:14294 #, no-wrap msgid "SSH, copy of store items" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13938 +#: guix-git/doc/guix.texi:14295 #, no-wrap msgid "sharing store items across machines" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13939 +#: guix-git/doc/guix.texi:14296 #, no-wrap msgid "transferring store items across machines" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13946 +#: guix-git/doc/guix.texi:14303 msgid "The @command{guix copy} command copies items from the store of one machine to that of another machine over a secure shell (SSH) connection@footnote{This command is available only when Guile-SSH was found. @xref{Requirements}, for details.}. For example, the following command copies the @code{coreutils} package, the user's profile, and all their dependencies over to @var{host}, logged in as @var{user}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13950 +#: guix-git/doc/guix.texi:14307 #, no-wrap msgid "" "guix copy --to=@var{user}@@@var{host} \\\n" @@ -25574,192 +26267,192 @@ msgid "" msgstr "guix graph -t references `readlink -f ~/.guix-profile`\n" #. type: Plain text -#: guix-git/doc/guix.texi:13954 +#: guix-git/doc/guix.texi:14311 msgid "If some of the items to be copied are already present on @var{host}, they are not actually sent." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13957 +#: guix-git/doc/guix.texi:14314 msgid "The command below retrieves @code{libreoffice} and @code{gimp} from @var{host}, assuming they are available there:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13960 +#: guix-git/doc/guix.texi:14317 #, no-wrap msgid "guix copy --from=@var{host} libreoffice gimp\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13965 +#: guix-git/doc/guix.texi:14322 msgid "The SSH connection is established using the Guile-SSH client, which is compatible with OpenSSH: it honors @file{~/.ssh/known_hosts} and @file{~/.ssh/config}, and uses the SSH agent for authentication." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13971 +#: guix-git/doc/guix.texi:14328 msgid "The key used to sign items that are sent must be accepted by the remote machine. Likewise, the key used by the remote machine to sign items you are retrieving must be in @file{/etc/guix/acl} so it is accepted by your own daemon. @xref{Invoking guix archive}, for more information about store item authentication." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13976 +#: guix-git/doc/guix.texi:14333 #, no-wrap msgid "guix copy [--to=@var{spec}|--from=@var{spec}] @var{items}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13979 +#: guix-git/doc/guix.texi:14336 msgid "You must always specify one of the following options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13981 +#: guix-git/doc/guix.texi:14338 #, no-wrap msgid "--to=@var{spec}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13982 +#: guix-git/doc/guix.texi:14339 #, no-wrap msgid "--from=@var{spec}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13986 +#: guix-git/doc/guix.texi:14343 msgid "Specify the host to send to or receive from. @var{spec} must be an SSH spec such as @code{example.org}, @code{charlie@@example.org}, or @code{charlie@@example.org:2222}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13990 +#: guix-git/doc/guix.texi:14347 msgid "The @var{items} can be either package names, such as @code{gimp}, or store items, such as @file{/gnu/store/@dots{}-idutils-4.6}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13994 +#: guix-git/doc/guix.texi:14351 msgid "When specifying the name of a package to send, it is first built if needed, unless @option{--dry-run} was specified. Common build options are supported (@pxref{Common Build Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13997 +#: guix-git/doc/guix.texi:14354 #, no-wrap msgid "Invoking @command{guix container}" msgstr "Вызов @command{guix container}" #. type: command{#1} -#: guix-git/doc/guix.texi:13999 +#: guix-git/doc/guix.texi:14356 #, no-wrap msgid "guix container" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:14003 +#: guix-git/doc/guix.texi:14360 msgid "As of version @value{VERSION}, this tool is experimental. The interface is subject to radical change in the future." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14010 +#: guix-git/doc/guix.texi:14367 msgid "The purpose of @command{guix container} is to manipulate processes running within an isolated environment, commonly known as a ``container'', typically created by the @command{guix shell} (@pxref{Invoking guix shell}) and @command{guix system container} (@pxref{Invoking guix system}) commands." msgstr "" #. type: example -#: guix-git/doc/guix.texi:14015 +#: guix-git/doc/guix.texi:14372 #, no-wrap msgid "guix container @var{action} @var{options}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14019 +#: guix-git/doc/guix.texi:14376 msgid "@var{action} specifies the operation to perform with a container, and @var{options} specifies the context-specific arguments for the action." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14021 +#: guix-git/doc/guix.texi:14378 msgid "The following actions are available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14023 +#: guix-git/doc/guix.texi:14380 #, no-wrap msgid "exec" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14025 +#: guix-git/doc/guix.texi:14382 msgid "Execute a command within the context of a running container." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14027 +#: guix-git/doc/guix.texi:14384 msgid "The syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14030 +#: guix-git/doc/guix.texi:14387 #, no-wrap msgid "guix container exec @var{pid} @var{program} @var{arguments}@dots{}\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14036 +#: guix-git/doc/guix.texi:14393 msgid "@var{pid} specifies the process ID of the running container. @var{program} specifies an executable file name within the root file system of the container. @var{arguments} are the additional options that will be passed to @var{program}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14040 +#: guix-git/doc/guix.texi:14397 msgid "The following command launches an interactive login shell inside a Guix system container, started by @command{guix system container}, and whose process ID is 9001:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14043 +#: guix-git/doc/guix.texi:14400 #, no-wrap msgid "guix container exec 9001 /run/current-system/profile/bin/bash --login\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14047 +#: guix-git/doc/guix.texi:14404 msgid "Note that the @var{pid} cannot be the parent process of a container. It must be PID 1 of the container or one of its child processes." msgstr "" #. type: section -#: guix-git/doc/guix.texi:14051 +#: guix-git/doc/guix.texi:14408 #, no-wrap msgid "Invoking @command{guix weather}" msgstr "Вызов @command{guix weather}" #. type: Plain text -#: guix-git/doc/guix.texi:14060 +#: guix-git/doc/guix.texi:14417 msgid "Occasionally you're grumpy because substitutes are lacking and you end up building packages by yourself (@pxref{Substitutes}). The @command{guix weather} command reports on substitute availability on the specified servers so you can have an idea of whether you'll be grumpy today. It can sometimes be useful info as a user, but it is primarily useful to people running @command{guix publish} (@pxref{Invoking guix publish})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14061 +#: guix-git/doc/guix.texi:14418 #, no-wrap msgid "statistics, for substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14062 +#: guix-git/doc/guix.texi:14419 #, no-wrap msgid "availability of substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14063 +#: guix-git/doc/guix.texi:14420 #, no-wrap msgid "substitute availability" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14064 +#: guix-git/doc/guix.texi:14421 #, no-wrap msgid "weather, substitute availability" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14066 +#: guix-git/doc/guix.texi:14423 msgid "Here's a sample run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14078 +#: guix-git/doc/guix.texi:14435 #, no-wrap msgid "" "$ guix weather --substitute-urls=https://guix.example.org\n" @@ -25776,7 +26469,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14088 +#: guix-git/doc/guix.texi:14445 #, no-wrap msgid "" " 9.8% (342 out of 3,470) of the missing items are queued\n" @@ -25791,76 +26484,71 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14090 +#: guix-git/doc/guix.texi:14447 #, no-wrap msgid "continuous integration, statistics" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14101 +#: guix-git/doc/guix.texi:14458 msgid "As you can see, it reports the fraction of all the packages for which substitutes are available on the server---regardless of whether substitutes are enabled, and regardless of whether this server's signing key is authorized. It also reports the size of the compressed archives (``nars'') provided by the server, the size the corresponding store items occupy in the store (assuming deduplication is turned off), and the server's throughput. The second part gives continuous integration (CI) statistics, if the server supports it. In addition, using the @option{--coverage} option, @command{guix weather} can list ``important'' package substitutes missing on the server (see below)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14107 +#: guix-git/doc/guix.texi:14464 msgid "To achieve that, @command{guix weather} queries over HTTP(S) meta-data (@dfn{narinfos}) for all the relevant store items. Like @command{guix challenge}, it ignores signatures on those substitutes, which is innocuous since the command only gathers statistics and cannot install those substitutes." msgstr "" #. type: example -#: guix-git/doc/guix.texi:14112 +#: guix-git/doc/guix.texi:14469 #, no-wrap msgid "guix weather @var{options}@dots{} [@var{packages}@dots{}]\n" msgstr "guix environment @var{options} @var{package}@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:14120 +#: guix-git/doc/guix.texi:14477 msgid "When @var{packages} is omitted, @command{guix weather} checks the availability of substitutes for @emph{all} the packages, or for those specified with @option{--manifest}; otherwise it only considers the specified packages. It is also possible to query specific system types with @option{--system}. @command{guix weather} exits with a non-zero code when the fraction of available substitutes is below 100%." msgstr "" -#. type: Plain text -#: guix-git/doc/guix.texi:14122 -msgid "The available options are listed below." -msgstr "Доступные опции резюмированы ниже." - #. type: table -#: guix-git/doc/guix.texi:14128 +#: guix-git/doc/guix.texi:14485 msgid "@var{urls} is the space-separated list of substitute server URLs to query. When this option is omitted, the default set of substitute servers is queried." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14134 +#: guix-git/doc/guix.texi:14491 msgid "Query substitutes for @var{system}---e.g., @code{aarch64-linux}. This option can be repeated, in which case @command{guix weather} will query substitutes for several system types." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14140 +#: guix-git/doc/guix.texi:14497 msgid "Instead of querying substitutes for all the packages, only ask for those specified in @var{file}. @var{file} must contain a @dfn{manifest}, as with the @code{-m} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14143 +#: guix-git/doc/guix.texi:14500 msgid "This option can be repeated several times, in which case the manifests are concatenated." msgstr "Создать окружение для пакетов, содержащихся в объекте манифеста, возвращаемого кодом Scheme в файле @var{file}." #. type: item -#: guix-git/doc/guix.texi:14144 +#: guix-git/doc/guix.texi:14501 #, no-wrap msgid "--coverage[=@var{count}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:14145 +#: guix-git/doc/guix.texi:14502 #, no-wrap msgid "-c [@var{count}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14151 +#: guix-git/doc/guix.texi:14508 msgid "Report on substitute coverage for packages: list packages with at least @var{count} dependents (zero by default) for which substitutes are unavailable. Dependent packages themselves are not listed: if @var{b} depends on @var{a} and @var{a} has no substitutes, only @var{a} is listed, even though @var{b} usually lacks substitutes as well. The result looks like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14165 +#: guix-git/doc/guix.texi:14522 #, no-wrap msgid "" "$ guix weather --substitute-urls=@value{SUBSTITUTE-URLS} -c 10\n" @@ -25878,39 +26566,39 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14171 +#: guix-git/doc/guix.texi:14528 msgid "What this example shows is that @code{kcoreaddons} and presumably the 58 packages that depend on it have no substitutes at @code{@value{SUBSTITUTE-SERVER-1}}; likewise for @code{qgpgme} and the 46 packages that depend on it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14175 +#: guix-git/doc/guix.texi:14532 msgid "If you are a Guix developer, or if you are taking care of this build farm, you'll probably want to have a closer look at these packages: they may simply fail to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14176 +#: guix-git/doc/guix.texi:14533 #, no-wrap msgid "--display-missing" msgstr "--missing" #. type: table -#: guix-git/doc/guix.texi:14178 +#: guix-git/doc/guix.texi:14535 msgid "Display the list of store items for which substitutes are missing." msgstr "" #. type: section -#: guix-git/doc/guix.texi:14181 +#: guix-git/doc/guix.texi:14538 #, no-wrap msgid "Invoking @command{guix processes}" msgstr "Вызов @command{guix processes}" #. type: Plain text -#: guix-git/doc/guix.texi:14189 +#: guix-git/doc/guix.texi:14546 msgid "The @command{guix processes} command can be useful to developers and system administrators, especially on multi-user machines and on build farms: it lists the current sessions (connections to the daemon), as well as information about the processes involved@footnote{Remote sessions, when @command{guix-daemon} is started with @option{--listen} specifying a TCP endpoint, are @emph{not} listed.}. Here's an example of the information it returns:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14195 +#: guix-git/doc/guix.texi:14552 #, no-wrap msgid "" "$ sudo guix processes\n" @@ -25921,7 +26609,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14199 +#: guix-git/doc/guix.texi:14556 #, no-wrap msgid "" "SessionPID: 19402\n" @@ -25931,7 +26619,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14212 +#: guix-git/doc/guix.texi:14569 #, no-wrap msgid "" "SessionPID: 19444\n" @@ -25949,22 +26637,22 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14219 +#: guix-git/doc/guix.texi:14576 msgid "In this example we see that @command{guix-daemon} has three clients: @command{guix environment}, @command{guix publish}, and the Cuirass continuous integration tool; their process identifier (PID) is given by the @code{ClientPID} field. The @code{SessionPID} field gives the PID of the @command{guix-daemon} sub-process of this particular session." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14226 +#: guix-git/doc/guix.texi:14583 msgid "The @code{LockHeld} fields show which store items are currently locked by this session, which corresponds to store items being built or substituted (the @code{LockHeld} field is not displayed when @command{guix processes} is not running as root). Last, by looking at the @code{ChildPID} and @code{ChildCommand} fields, we understand that these three builds are being offloaded (@pxref{Daemon Offload Setup})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14231 +#: guix-git/doc/guix.texi:14588 msgid "The output is in Recutils format so we can use the handy @command{recsel} command to select sessions of interest (@pxref{Selection Expressions,,, recutils, GNU recutils manual}). As an example, the command shows the command line and PID of the client that triggered the build of a Perl package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14237 +#: guix-git/doc/guix.texi:14594 #, no-wrap msgid "" "$ sudo guix processes | \\\n" @@ -25974,28 +26662,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14240 +#: guix-git/doc/guix.texi:14597 msgid "Additional options are listed below." msgstr "Доступные опции резюмированы ниже." #. type: table -#: guix-git/doc/guix.texi:14250 +#: guix-git/doc/guix.texi:14607 msgid "The default option. It outputs a set of Session recutils records that include each @code{ChildProcess} as a field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14251 +#: guix-git/doc/guix.texi:14608 #, no-wrap msgid "normalized" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14258 +#: guix-git/doc/guix.texi:14615 msgid "Normalize the output records into record sets (@pxref{Record Sets,,, recutils, GNU recutils manual}). Normalizing into record sets allows joins across record types. The example below lists the PID of each @code{ChildProcess} and the associated PID for @code{Session} that spawned the @code{ChildProcess} where the @code{Session} was started using @command{guix build}." msgstr "" #. type: example -#: guix-git/doc/guix.texi:14268 +#: guix-git/doc/guix.texi:14625 #, no-wrap msgid "" "$ guix processes --format=normalized | \\\n" @@ -26010,7 +26698,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14271 +#: guix-git/doc/guix.texi:14628 #, no-wrap msgid "" "PID: 4554\n" @@ -26019,7 +26707,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14274 +#: guix-git/doc/guix.texi:14631 #, no-wrap msgid "" "PID: 4646\n" @@ -26027,90 +26715,90 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14281 +#: guix-git/doc/guix.texi:14638 #, no-wrap msgid "system configuration" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14287 +#: guix-git/doc/guix.texi:14644 msgid "Guix System supports a consistent whole-system configuration mechanism. By that we mean that all aspects of the global system configuration---such as the available system services, timezone and locale settings, user accounts---are declared in a single place. Such a @dfn{system configuration} can be @dfn{instantiated}---i.e., effected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14297 +#: guix-git/doc/guix.texi:14654 msgid "One of the advantages of putting all the system configuration under the control of Guix is that it supports transactional system upgrades, and makes it possible to roll back to a previous system instantiation, should something go wrong with the new one (@pxref{Features}). Another advantage is that it makes it easy to replicate the exact same configuration across different machines, or at different points in time, without having to resort to additional administration tools layered on top of the own tools of the system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14302 +#: guix-git/doc/guix.texi:14659 msgid "This section describes this mechanism. First we focus on the system administrator's viewpoint---explaining how the system is configured and instantiated. Then we show how this mechanism can be extended, for instance to support new system services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14332 +#: guix-git/doc/guix.texi:14689 msgid "The operating system is configured by providing an @code{operating-system} declaration in a file that can then be passed to the @command{guix system} command (@pxref{Invoking guix system}). A simple setup, with the default system services, the default Linux-Libre kernel, initial RAM disk, and boot loader looks like this:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14333 guix-git/doc/guix.texi:35553 +#: guix-git/doc/guix.texi:14690 guix-git/doc/guix.texi:36033 #, no-wrap msgid "operating-system" msgstr "" #. type: include -#: guix-git/doc/guix.texi:14335 +#: guix-git/doc/guix.texi:14692 #, no-wrap msgid "os-config-bare-bones.texi" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14342 +#: guix-git/doc/guix.texi:14699 msgid "This example should be self-describing. Some of the fields defined above, such as @code{host-name} and @code{bootloader}, are mandatory. Others, such as @code{packages} and @code{services}, can be omitted, in which case they get a default value." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14347 +#: guix-git/doc/guix.texi:14704 msgid "Below we discuss the effect of some of the most important fields (@pxref{operating-system Reference}, for details about all the available fields), and how to @dfn{instantiate} the operating system using @command{guix system}." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14348 +#: guix-git/doc/guix.texi:14705 #, no-wrap msgid "Bootloader" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14350 +#: guix-git/doc/guix.texi:14707 #, no-wrap msgid "legacy boot, on Intel machines" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14351 +#: guix-git/doc/guix.texi:14708 #, no-wrap msgid "BIOS boot, on Intel machines" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14352 +#: guix-git/doc/guix.texi:14709 #, no-wrap msgid "UEFI boot" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14353 +#: guix-git/doc/guix.texi:14710 #, no-wrap msgid "EFI boot" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14359 +#: guix-git/doc/guix.texi:14716 msgid "The @code{bootloader} field describes the method that will be used to boot your system. Machines based on Intel processors can boot in ``legacy'' BIOS mode, as in the example above. However, more recent machines rely instead on the @dfn{Unified Extensible Firmware Interface} (UEFI) to boot. In that case, the @code{bootloader} field should contain something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14364 +#: guix-git/doc/guix.texi:14721 #, no-wrap msgid "" "(bootloader-configuration\n" @@ -26119,29 +26807,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14368 +#: guix-git/doc/guix.texi:14725 msgid "@xref{Bootloader Configuration}, for more information on the available configuration options." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14369 +#: guix-git/doc/guix.texi:14726 #, no-wrap msgid "Globally-Visible Packages" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:14371 +#: guix-git/doc/guix.texi:14728 #, no-wrap msgid "%base-packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14384 +#: guix-git/doc/guix.texi:14741 msgid "The @code{packages} field lists packages that will be globally visible on the system, for all user accounts---i.e., in every user's @env{PATH} environment variable---in addition to the per-user profiles (@pxref{Invoking guix package}). The @code{%base-packages} variable provides all the tools one would expect for basic user and administrator tasks---including the GNU Core Utilities, the GNU Networking Utilities, the @command{mg} lightweight text editor, @command{find}, @command{grep}, etc. The example above adds GNU@tie{}Screen to those, taken from the @code{(gnu packages screen)} module (@pxref{Package Modules}). The @code{(list package output)} syntax can be used to add a specific output of a package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14388 +#: guix-git/doc/guix.texi:14745 #, no-wrap msgid "" "(use-modules (gnu packages))\n" @@ -26150,7 +26838,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14393 +#: guix-git/doc/guix.texi:14750 #, no-wrap msgid "" "(operating-system\n" @@ -26160,18 +26848,18 @@ msgid "" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:14395 +#: guix-git/doc/guix.texi:14752 #, no-wrap msgid "specification->package" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14404 +#: guix-git/doc/guix.texi:14761 msgid "Referring to packages by variable name, like @code{isc-bind} above, has the advantage of being unambiguous; it also allows typos and such to be diagnosed right away as ``unbound variables''. The downside is that one needs to know which module defines which package, and to augment the @code{use-package-modules} line accordingly. To avoid that, one can use the @code{specification->package} procedure of the @code{(gnu packages)} module, which returns the best package for a given name or name and version:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14407 +#: guix-git/doc/guix.texi:14764 #, no-wrap msgid "" "(use-modules (gnu packages))\n" @@ -26179,7 +26867,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14413 +#: guix-git/doc/guix.texi:14770 #, no-wrap msgid "" "(operating-system\n" @@ -26190,59 +26878,75 @@ msgid "" msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14415 +#: guix-git/doc/guix.texi:14772 #, no-wrap msgid "System Services" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14417 guix-git/doc/guix.texi:34307 -#: guix-git/doc/guix.texi:35783 +#: guix-git/doc/guix.texi:14774 guix-git/doc/guix.texi:34746 +#: guix-git/doc/guix.texi:36273 #, no-wrap msgid "services" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:14418 +#: guix-git/doc/guix.texi:14775 #, no-wrap msgid "%base-services" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14428 +#: guix-git/doc/guix.texi:14785 msgid "The @code{services} field lists @dfn{system services} to be made available when the system starts (@pxref{Services}). The @code{operating-system} declaration above specifies that, in addition to the basic services, we want the OpenSSH secure shell daemon listening on port 2222 (@pxref{Networking Services, @code{openssh-service-type}}). Under the hood, @code{openssh-service-type} arranges so that @command{sshd} is started with the right command-line options, possibly with supporting configuration files generated as needed (@pxref{Defining Services})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14429 +#: guix-git/doc/guix.texi:14786 #, no-wrap msgid "customization, of services" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:14430 +#: guix-git/doc/guix.texi:14787 #, no-wrap msgid "modify-services" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14434 +#: guix-git/doc/guix.texi:14791 msgid "Occasionally, instead of using the base services as is, you will want to customize them. To do this, use @code{modify-services} (@pxref{Service Reference, @code{modify-services}}) to modify the list." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:14440 +#: guix-git/doc/guix.texi:14797 msgid "auto-login to TTY" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14440 +#: guix-git/doc/guix.texi:14797 msgid "For example, suppose you want to modify @code{guix-daemon} and Mingetty (the console log-in) in the @code{%base-services} list (@pxref{Base Services, @code{%base-services}}). To do that, you can write the following in your operating system declaration:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14457 -#, no-wrap +#: guix-git/doc/guix.texi:14814 +#, fuzzy, no-wrap +#| msgid "" +#| "(operating-system\n" +#| " ;; @dots{}\n" +#| " (services\n" +#| " ;; Assume we're starting from '%desktop-services'. Replace it\n" +#| " ;; with the list of services you're actually using.\n" +#| " (modify-services %desktop-services\n" +#| " (guix-service-type config =>\n" +#| " (guix-configuration\n" +#| " (inherit config)\n" +#| " (substitute-urls\n" +#| " (append (list \"https://guix.example.org\")\n" +#| " %default-substitute-urls))\n" +#| " (authorized-keys\n" +#| " (append (list (local-file \"./key.pub\"))\n" +#| " %default-authorized-guix-keys)))))))\n" msgid "" "(define %my-services\n" " ;; My very own list of services.\n" @@ -26257,13 +26961,28 @@ msgid "" " (mingetty-service-type config =>\n" " (mingetty-configuration\n" " (inherit config)\n" -" ;; Automatially log in as \"guest\".\n" +" ;; Automatically log in as \"guest\".\n" " (auto-login \"guest\")))))\n" "\n" msgstr "" +"(operating-system\n" +" ;; @dots{}\n" +" (services\n" +" ;; Assume we're starting from '%desktop-services'. Replace it\n" +" ;; with the list of services you're actually using.\n" +" (modify-services %desktop-services\n" +" (guix-service-type config =>\n" +" (guix-configuration\n" +" (inherit config)\n" +" (substitute-urls\n" +" (append (list \"https://guix.example.org\")\n" +" %default-substitute-urls))\n" +" (authorized-keys\n" +" (append (list (local-file \"./key.pub\"))\n" +" %default-authorized-guix-keys)))))))\n" #. type: lisp -#: guix-git/doc/guix.texi:14461 +#: guix-git/doc/guix.texi:14818 #, no-wrap msgid "" "(operating-system\n" @@ -26272,49 +26991,49 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14474 +#: guix-git/doc/guix.texi:14831 msgid "This changes the configuration---i.e., the service parameters---of the @code{guix-service-type} instance, and that of all the @code{mingetty-service-type} instances in the @code{%base-services} list (@pxref{Auto-Login to a Specific TTY, see the cookbook for how to auto-login one user to a specific TTY,, guix-cookbook, GNU Guix Cookbook})). Observe how this is accomplished: first, we arrange for the original configuration to be bound to the identifier @code{config} in the @var{body}, and then we write the @var{body} so that it evaluates to the desired configuration. In particular, notice how we use @code{inherit} to create a new configuration which has the same values as the old configuration, but with a few modifications." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14481 +#: guix-git/doc/guix.texi:14838 msgid "The configuration for a typical ``desktop'' usage, with an encrypted root partition, a swap file on the root partition, the X11 display server, GNOME and Xfce (users can choose which of these desktop environments to use at the log-in screen by pressing @kbd{F1}), network management, power management, and more, would look like this:" msgstr "" #. type: include -#: guix-git/doc/guix.texi:14483 +#: guix-git/doc/guix.texi:14840 #, no-wrap msgid "os-config-desktop.texi" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14488 +#: guix-git/doc/guix.texi:14845 msgid "A graphical system with a choice of lightweight window managers instead of full-blown desktop environments would look like this:" msgstr "" #. type: include -#: guix-git/doc/guix.texi:14490 +#: guix-git/doc/guix.texi:14847 #, no-wrap msgid "os-config-lightweight-desktop.texi" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14496 +#: guix-git/doc/guix.texi:14853 msgid "This example refers to the @file{/boot/efi} file system by its UUID, @code{1234-ABCD}. Replace this UUID with the right UUID on your system, as returned by the @command{blkid} command." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14500 +#: guix-git/doc/guix.texi:14857 msgid "@xref{Desktop Services}, for the exact list of services provided by @code{%desktop-services}. @xref{X.509 Certificates}, for background information about the @code{nss-certs} package that is used here." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14507 +#: guix-git/doc/guix.texi:14864 msgid "Again, @code{%desktop-services} is just a list of service objects. If you want to remove services from there, you can do so using the procedures for list filtering (@pxref{SRFI-1 Filtering and Partitioning,,, guile, GNU Guile Reference Manual}). For instance, the following expression returns a list that contains all the services in @code{%desktop-services} minus the Avahi service:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14512 +#: guix-git/doc/guix.texi:14869 #, no-wrap msgid "" "(remove (lambda (service)\n" @@ -26323,12 +27042,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14515 +#: guix-git/doc/guix.texi:14872 msgid "Alternatively, the @code{modify-services} macro can be used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14519 +#: guix-git/doc/guix.texi:14876 #, no-wrap msgid "" "(modify-services %desktop-services\n" @@ -26336,356 +27055,356 @@ msgid "" msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14522 +#: guix-git/doc/guix.texi:14879 #, no-wrap msgid "Instantiating the System" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14529 +#: guix-git/doc/guix.texi:14886 msgid "Assuming the @code{operating-system} declaration is stored in the @file{my-system-config.scm} file, the @command{guix system reconfigure my-system-config.scm} command instantiates that configuration, and makes it the default GRUB boot entry (@pxref{Invoking guix system})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14537 +#: guix-git/doc/guix.texi:14894 msgid "The normal way to change the system configuration is by updating this file and re-running @command{guix system reconfigure}. One should never have to touch files in @file{/etc} or to run commands that modify the system state such as @command{useradd} or @command{grub-install}. In fact, you must avoid that since that would not only void your warranty but also prevent you from rolling back to previous versions of your system, should you ever need to." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14538 +#: guix-git/doc/guix.texi:14895 #, no-wrap msgid "roll-back, of the operating system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14548 +#: guix-git/doc/guix.texi:14905 msgid "Speaking of roll-back, each time you run @command{guix system reconfigure}, a new @dfn{generation} of the system is created---without modifying or deleting previous generations. Old system generations get an entry in the bootloader boot menu, allowing you to boot them in case something went wrong with the latest generation. Reassuring, no? The @command{guix system list-generations} command lists the system generations available on disk. It is also possible to roll back the system via the commands @command{guix system roll-back} and @command{guix system switch-generation}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14554 +#: guix-git/doc/guix.texi:14911 msgid "Although the @command{guix system reconfigure} command will not modify previous generations, you must take care when the current generation is not the latest (e.g., after invoking @command{guix system roll-back}), since the operation might overwrite a later generation (@pxref{Invoking guix system})." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14555 +#: guix-git/doc/guix.texi:14912 #, no-wrap msgid "The Programming Interface" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14560 +#: guix-git/doc/guix.texi:14917 msgid "At the Scheme level, the bulk of an @code{operating-system} declaration is instantiated with the following monadic procedure (@pxref{The Store Monad}):" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14561 +#: guix-git/doc/guix.texi:14918 #, no-wrap msgid "{Monadic Procedure} operating-system-derivation os" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14564 +#: guix-git/doc/guix.texi:14921 msgid "Return a derivation that builds @var{os}, an @code{operating-system} object (@pxref{Derivations})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14568 +#: guix-git/doc/guix.texi:14925 msgid "The output of the derivation is a single directory that refers to all the packages, configuration files, and other supporting files needed to instantiate @var{os}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14573 +#: guix-git/doc/guix.texi:14930 msgid "This procedure is provided by the @code{(gnu system)} module. Along with @code{(gnu services)} (@pxref{Services}), this module contains the guts of Guix System. Make sure to visit it!" msgstr "" #. type: section -#: guix-git/doc/guix.texi:14576 +#: guix-git/doc/guix.texi:14933 #, no-wrap msgid "@code{operating-system} Reference" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14581 +#: guix-git/doc/guix.texi:14938 msgid "This section summarizes all the options available in @code{operating-system} declarations (@pxref{Using the Configuration System})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14582 +#: guix-git/doc/guix.texi:14939 #, no-wrap msgid "{Data Type} operating-system" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14586 +#: guix-git/doc/guix.texi:14943 msgid "This is the data type representing an operating system configuration. By that, we mean all the global system configuration, not per-user configuration (@pxref{Using the Configuration System})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14588 +#: guix-git/doc/guix.texi:14945 #, no-wrap msgid "@code{kernel} (default: @code{linux-libre})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:14593 +#: guix-git/doc/guix.texi:14950 msgid "The package object of the operating system kernel to use@footnote{Currently only the Linux-libre kernel is fully supported. Using GNU@tie{}mach with the GNU@tie{}Hurd is experimental and only available when building a virtual machine disk image.}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14594 guix-git/doc/guix.texi:30733 +#: guix-git/doc/guix.texi:14951 guix-git/doc/guix.texi:31098 #, no-wrap msgid "hurd" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14595 +#: guix-git/doc/guix.texi:14952 #, no-wrap msgid "@code{hurd} (default: @code{#f})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:14600 +#: guix-git/doc/guix.texi:14957 msgid "The package object of the Hurd to be started by the kernel. When this field is set, produce a GNU/Hurd operating system. In that case, @code{kernel} must also be set to the @code{gnumach} package---the microkernel the Hurd runs on." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:14603 +#: guix-git/doc/guix.texi:14960 msgid "This feature is experimental and only supported for disk images." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14605 +#: guix-git/doc/guix.texi:14962 #, no-wrap msgid "@code{kernel-loadable-modules} (default: '())" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:14608 +#: guix-git/doc/guix.texi:14965 msgid "A list of objects (usually packages) to collect loadable kernel modules from--e.g. @code{(list ddcci-driver-linux)}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14609 +#: guix-git/doc/guix.texi:14966 #, no-wrap msgid "@code{kernel-arguments} (default: @code{%default-kernel-arguments})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:14612 +#: guix-git/doc/guix.texi:14969 msgid "List of strings or gexps representing additional arguments to pass on the command-line of the kernel---e.g., @code{(\"console=ttyS0\")}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14613 guix-git/doc/guix.texi:34539 -#: guix-git/doc/guix.texi:34558 +#: guix-git/doc/guix.texi:14970 guix-git/doc/guix.texi:34978 +#: guix-git/doc/guix.texi:34997 #, no-wrap msgid "bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14615 +#: guix-git/doc/guix.texi:14972 msgid "The system bootloader configuration object. @xref{Bootloader Configuration}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14616 guix-git/doc/guix.texi:34732 +#: guix-git/doc/guix.texi:14973 guix-git/doc/guix.texi:35171 #, no-wrap msgid "label" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14619 +#: guix-git/doc/guix.texi:14976 msgid "This is the label (a string) as it appears in the bootloader's menu entry. The default label includes the kernel name and version." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14620 guix-git/doc/guix.texi:16318 -#: guix-git/doc/guix.texi:19503 guix-git/doc/guix.texi:34662 +#: guix-git/doc/guix.texi:14977 guix-git/doc/guix.texi:16675 +#: guix-git/doc/guix.texi:19865 guix-git/doc/guix.texi:35101 #, no-wrap msgid "@code{keyboard-layout} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14625 +#: guix-git/doc/guix.texi:14982 msgid "This field specifies the keyboard layout to use in the console. It can be either @code{#f}, in which case the default keyboard layout is used (usually US English), or a @code{} record. @xref{Keyboard Layout}, for more information." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14630 +#: guix-git/doc/guix.texi:14987 msgid "This keyboard layout is in effect as soon as the kernel has booted. For instance, it is the keyboard layout in effect when you type a passphrase if your root file system is on a @code{luks-device-mapping} mapped device (@pxref{Mapped Devices})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:14637 +#: guix-git/doc/guix.texi:14994 msgid "This does @emph{not} specify the keyboard layout used by the bootloader, nor that used by the graphical display server. @xref{Bootloader Configuration}, for information on how to specify the bootloader's keyboard layout. @xref{X Window}, for information on how to specify the keyboard layout used by the X Window System." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14639 +#: guix-git/doc/guix.texi:14996 #, no-wrap msgid "@code{initrd-modules} (default: @code{%base-initrd-modules})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14640 guix-git/doc/guix.texi:34344 -#: guix-git/doc/guix.texi:34467 +#: guix-git/doc/guix.texi:14997 guix-git/doc/guix.texi:34783 +#: guix-git/doc/guix.texi:34906 #, no-wrap msgid "initrd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14641 guix-git/doc/guix.texi:34345 -#: guix-git/doc/guix.texi:34468 +#: guix-git/doc/guix.texi:14998 guix-git/doc/guix.texi:34784 +#: guix-git/doc/guix.texi:34907 #, no-wrap msgid "initial RAM disk" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14644 +#: guix-git/doc/guix.texi:15001 msgid "The list of Linux kernel modules that need to be available in the initial RAM disk. @xref{Initial RAM Disk}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14645 +#: guix-git/doc/guix.texi:15002 #, no-wrap msgid "@code{initrd} (default: @code{base-initrd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14649 +#: guix-git/doc/guix.texi:15006 msgid "A procedure that returns an initial RAM disk for the Linux kernel. This field is provided to support low-level customization and should rarely be needed for casual use. @xref{Initial RAM Disk}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14650 +#: guix-git/doc/guix.texi:15007 #, no-wrap msgid "@code{firmware} (default: @code{%base-firmware})" msgstr "@code{port} (default: @code{22})" #. type: cindex -#: guix-git/doc/guix.texi:14651 +#: guix-git/doc/guix.texi:15008 #, no-wrap msgid "firmware" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14653 +#: guix-git/doc/guix.texi:15010 msgid "List of firmware packages loadable by the operating system kernel." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14658 +#: guix-git/doc/guix.texi:15015 msgid "The default includes firmware needed for Atheros- and Broadcom-based WiFi devices (Linux-libre modules @code{ath9k} and @code{b43-open}, respectively). @xref{Hardware Considerations}, for more info on supported hardware." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14659 guix-git/doc/guix.texi:35572 +#: guix-git/doc/guix.texi:15016 guix-git/doc/guix.texi:36052 #, no-wrap msgid "host-name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14661 +#: guix-git/doc/guix.texi:15018 msgid "The host name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14662 +#: guix-git/doc/guix.texi:15019 #, no-wrap msgid "hosts-file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14663 +#: guix-git/doc/guix.texi:15020 #, no-wrap msgid "hosts file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14668 +#: guix-git/doc/guix.texi:15025 msgid "A file-like object (@pxref{G-Expressions, file-like objects}) for use as @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). The default is a file with entries for @code{localhost} and @var{host-name}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14669 +#: guix-git/doc/guix.texi:15026 #, no-wrap msgid "@code{mapped-devices} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14671 +#: guix-git/doc/guix.texi:15028 msgid "A list of mapped devices. @xref{Mapped Devices}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14672 +#: guix-git/doc/guix.texi:15029 #, no-wrap msgid "file-systems" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14674 +#: guix-git/doc/guix.texi:15031 msgid "A list of file systems. @xref{File Systems}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14675 +#: guix-git/doc/guix.texi:15032 #, no-wrap msgid "@code{swap-devices} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14676 +#: guix-git/doc/guix.texi:15033 #, no-wrap msgid "swap devices" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14678 +#: guix-git/doc/guix.texi:15035 msgid "A list of swap spaces. @xref{Swap Space}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15036 #, no-wrap msgid "@code{users} (default: @code{%base-user-accounts})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:14680 +#: guix-git/doc/guix.texi:15037 #, no-wrap msgid "@code{groups} (default: @code{%base-groups})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:14682 +#: guix-git/doc/guix.texi:15039 msgid "List of user accounts and groups. @xref{User Accounts}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14685 +#: guix-git/doc/guix.texi:15042 msgid "If the @code{users} list lacks a user account with UID@tie{}0, a ``root'' account with UID@tie{}0 is automatically added." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14686 +#: guix-git/doc/guix.texi:15043 #, no-wrap msgid "@code{skeletons} (default: @code{(default-skeletons)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14690 +#: guix-git/doc/guix.texi:15047 msgid "A list of target file name/file-like object tuples (@pxref{G-Expressions, file-like objects}). These are the skeleton files that will be added to the home directory of newly-created user accounts." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14692 +#: guix-git/doc/guix.texi:15049 msgid "For instance, a valid value may look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14698 +#: guix-git/doc/guix.texi:15055 #, no-wrap msgid "" "`((\".bashrc\" ,(plain-file \"bashrc\" \"echo Hello\\n\"))\n" @@ -26695,29 +27414,29 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14700 +#: guix-git/doc/guix.texi:15057 #, no-wrap msgid "@code{issue} (default: @code{%default-issue})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:14703 +#: guix-git/doc/guix.texi:15060 msgid "A string denoting the contents of the @file{/etc/issue} file, which is displayed when users log in on a text console." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14704 +#: guix-git/doc/guix.texi:15061 #, no-wrap msgid "@code{packages} (default: @code{%base-packages})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:14708 +#: guix-git/doc/guix.texi:15065 msgid "A list of packages to be installed in the global profile, which is accessible at @file{/run/current-system/profile}. Each element is either a package variable or a package/output tuple. Here's a simple example of both:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14713 +#: guix-git/doc/guix.texi:15070 #, no-wrap msgid "" "(cons* git ; the default \"out\" output\n" @@ -26726,172 +27445,172 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14718 +#: guix-git/doc/guix.texi:15075 msgid "The default set includes core utilities and it is good practice to install non-core utilities in user profiles (@pxref{Invoking guix package})." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14719 +#: guix-git/doc/guix.texi:15076 #, no-wrap msgid "timezone" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14721 +#: guix-git/doc/guix.texi:15078 msgid "A timezone identifying string---e.g., @code{\"Europe/Paris\"}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14725 +#: guix-git/doc/guix.texi:15082 msgid "You can run the @command{tzselect} command to find out which timezone string corresponds to your region. Choosing an invalid timezone name causes @command{guix system} to fail." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14726 guix-git/doc/guix.texi:21115 +#: guix-git/doc/guix.texi:15083 guix-git/doc/guix.texi:21477 #, no-wrap msgid "@code{locale} (default: @code{\"en_US.utf8\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14729 +#: guix-git/doc/guix.texi:15086 msgid "The name of the default locale (@pxref{Locale Names,,, libc, The GNU C Library Reference Manual}). @xref{Locales}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14730 +#: guix-git/doc/guix.texi:15087 #, no-wrap msgid "@code{locale-definitions} (default: @code{%default-locale-definitions})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:14733 +#: guix-git/doc/guix.texi:15090 msgid "The list of locale definitions to be compiled and that may be used at run time. @xref{Locales}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14734 +#: guix-git/doc/guix.texi:15091 #, no-wrap msgid "@code{locale-libcs} (default: @code{(list @var{glibc})})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14738 +#: guix-git/doc/guix.texi:15095 msgid "The list of GNU@tie{}libc packages whose locale data and tools are used to build the locale definitions. @xref{Locales}, for compatibility considerations that justify this option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14739 +#: guix-git/doc/guix.texi:15096 #, no-wrap msgid "@code{name-service-switch} (default: @code{%default-nss})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:14743 +#: guix-git/doc/guix.texi:15100 msgid "Configuration of the libc name service switch (NSS)---a @code{} object. @xref{Name Service Switch}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14744 +#: guix-git/doc/guix.texi:15101 #, no-wrap msgid "@code{services} (default: @code{%base-services})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:14746 +#: guix-git/doc/guix.texi:15103 msgid "A list of service objects denoting system services. @xref{Services}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14747 +#: guix-git/doc/guix.texi:15104 #, no-wrap msgid "essential services" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14748 +#: guix-git/doc/guix.texi:15105 #, no-wrap msgid "@code{essential-services} (default: ...)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14753 +#: guix-git/doc/guix.texi:15110 msgid "The list of ``essential services''---i.e., things like instances of @code{system-service-type} and @code{host-name-service-type} (@pxref{Service Reference}), which are derived from the operating system definition itself. As a user you should @emph{never} need to touch this field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14754 +#: guix-git/doc/guix.texi:15111 #, no-wrap msgid "@code{pam-services} (default: @code{(base-pam-services)})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14755 +#: guix-git/doc/guix.texi:15112 #, no-wrap msgid "PAM" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14756 +#: guix-git/doc/guix.texi:15113 #, no-wrap msgid "pluggable authentication modules" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14759 +#: guix-git/doc/guix.texi:15116 msgid "Linux @dfn{pluggable authentication module} (PAM) services." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14760 +#: guix-git/doc/guix.texi:15117 #, no-wrap msgid "@code{setuid-programs} (default: @code{%setuid-programs})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:14763 +#: guix-git/doc/guix.texi:15120 msgid "List of @code{}. @xref{Setuid Programs}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14764 +#: guix-git/doc/guix.texi:15121 #, no-wrap msgid "@code{sudoers-file} (default: @code{%sudoers-specification})" msgstr "@code{speed} (default: @code{1.0})" #. type: cindex -#: guix-git/doc/guix.texi:14765 +#: guix-git/doc/guix.texi:15122 #, no-wrap msgid "sudoers file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14768 +#: guix-git/doc/guix.texi:15125 msgid "The contents of the @file{/etc/sudoers} file as a file-like object (@pxref{G-Expressions, @code{local-file} and @code{plain-file}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14773 +#: guix-git/doc/guix.texi:15130 msgid "This file specifies which users can use the @command{sudo} command, what they are allowed to do, and what privileges they may gain. The default is that only @code{root} and members of the @code{wheel} group may use @code{sudo}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14776 +#: guix-git/doc/guix.texi:15133 #, no-wrap msgid "{Scheme Syntax} this-operating-system" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14779 +#: guix-git/doc/guix.texi:15136 msgid "When used in the @emph{lexical scope} of an operating system field definition, this identifier resolves to the operating system being defined." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14782 +#: guix-git/doc/guix.texi:15139 msgid "The example below shows how to refer to the operating system being defined in the definition of the @code{label} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14785 guix-git/doc/guix.texi:18711 +#: guix-git/doc/guix.texi:15142 guix-git/doc/guix.texi:19073 #, no-wrap msgid "" "(use-modules (gnu) (guix))\n" @@ -26899,7 +27618,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14790 +#: guix-git/doc/guix.texi:15147 #, no-wrap msgid "" "(operating-system\n" @@ -26909,17 +27628,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14794 +#: guix-git/doc/guix.texi:15151 msgid "It is an error to refer to @code{this-operating-system} outside an operating system definition." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14805 +#: guix-git/doc/guix.texi:15162 msgid "The list of file systems to be mounted is specified in the @code{file-systems} field of the operating system declaration (@pxref{Using the Configuration System}). Each file system is declared using the @code{file-system} form, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14811 +#: guix-git/doc/guix.texi:15168 #, no-wrap msgid "" "(file-system\n" @@ -26929,68 +27648,68 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14815 +#: guix-git/doc/guix.texi:15172 msgid "As usual, some of the fields are mandatory---those shown in the example above---while others can be omitted. These are described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14816 +#: guix-git/doc/guix.texi:15173 #, no-wrap msgid "{Data Type} file-system" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14819 +#: guix-git/doc/guix.texi:15176 msgid "Objects of this type represent file systems to be mounted. They contain the following members:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14821 guix-git/doc/guix.texi:15201 -#: guix-git/doc/guix.texi:17317 +#: guix-git/doc/guix.texi:15178 guix-git/doc/guix.texi:15558 +#: guix-git/doc/guix.texi:17679 #, no-wrap msgid "type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14824 +#: guix-git/doc/guix.texi:15181 msgid "This is a string specifying the type of the file system---e.g., @code{\"ext4\"}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14825 +#: guix-git/doc/guix.texi:15182 #, no-wrap msgid "mount-point" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14827 +#: guix-git/doc/guix.texi:15184 msgid "This designates the place where the file system is to be mounted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14828 guix-git/doc/guix.texi:17267 +#: guix-git/doc/guix.texi:15185 guix-git/doc/guix.texi:17629 #, no-wrap msgid "device" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14838 +#: guix-git/doc/guix.texi:15195 msgid "This names the ``source'' of the file system. It can be one of three things: a file system label, a file system UUID, or the name of a @file{/dev} node. Labels and UUIDs offer a way to refer to file systems without having to hard-code their actual device name@footnote{Note that, while it is tempting to use @file{/dev/disk/by-uuid} and similar device names to achieve the same result, this is not recommended: These special device nodes are created by the udev daemon and may be unavailable at the time the device is mounted.}." msgstr "" #. type: findex -#: guix-git/doc/guix.texi:14839 +#: guix-git/doc/guix.texi:15196 #, no-wrap msgid "file-system-label" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14844 +#: guix-git/doc/guix.texi:15201 msgid "File system labels are created using the @code{file-system-label} procedure, UUIDs are created using @code{uuid}, and @file{/dev} node are plain strings. Here's an example of a file system referred to by its label, as shown by the @command{e2label} command:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14850 +#: guix-git/doc/guix.texi:15207 #, no-wrap msgid "" "(file-system\n" @@ -27000,19 +27719,19 @@ msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14852 guix-git/doc/guix.texi:33130 -#: guix-git/doc/guix.texi:33146 +#: guix-git/doc/guix.texi:15209 guix-git/doc/guix.texi:33495 +#: guix-git/doc/guix.texi:33511 #, no-wrap msgid "uuid" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14860 +#: guix-git/doc/guix.texi:15217 msgid "UUIDs are converted from their string representation (as shown by the @command{tune2fs -l} command) using the @code{uuid} form@footnote{The @code{uuid} form expects 16-byte UUIDs as defined in @uref{https://tools.ietf.org/html/rfc4122, RFC@tie{}4122}. This is the form of UUID used by the ext2 family of file systems and others, but it is different from ``UUIDs'' found in FAT file systems, for instance.}, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14866 +#: guix-git/doc/guix.texi:15223 #, no-wrap msgid "" "(file-system\n" @@ -27022,170 +27741,170 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14874 +#: guix-git/doc/guix.texi:15231 msgid "When the source of a file system is a mapped device (@pxref{Mapped Devices}), its @code{device} field @emph{must} refer to the mapped device name---e.g., @file{\"/dev/mapper/root-partition\"}. This is required so that the system knows that mounting the file system depends on having the corresponding device mapping established." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14875 +#: guix-git/doc/guix.texi:15232 #, no-wrap msgid "@code{flags} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14885 +#: guix-git/doc/guix.texi:15242 msgid "This is a list of symbols denoting mount flags. Recognized flags include @code{read-only}, @code{bind-mount}, @code{no-dev} (disallow access to special files), @code{no-suid} (ignore setuid and setgid bits), @code{no-atime} (do not update file access times), @code{strict-atime} (update file access time), @code{lazy-time} (only update time on the in-memory version of the file inode), and @code{no-exec} (disallow program execution). @xref{Mount-Unmount-Remount,,, libc, The GNU C Library Reference Manual}, for more information on these flags." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14886 +#: guix-git/doc/guix.texi:15243 #, no-wrap msgid "@code{options} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14895 +#: guix-git/doc/guix.texi:15252 msgid "This is either @code{#f}, or a string denoting mount options passed to the file system driver. @xref{Mount-Unmount-Remount,,, libc, The GNU C Library Reference Manual}, for details and run @command{man 8 mount} for options for various file systems. Note that the @code{file-system-options->alist} and @code{alist->file-system-options} procedures from @code{(gnu system file-systems)} can be used to convert file system options given as an association list to the string representation, and vice-versa." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14896 +#: guix-git/doc/guix.texi:15253 #, no-wrap msgid "@code{mount?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14901 +#: guix-git/doc/guix.texi:15258 msgid "This value indicates whether to automatically mount the file system when the system is brought up. When set to @code{#f}, the file system gets an entry in @file{/etc/fstab} (read by the @command{mount} command) but is not automatically mounted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14902 +#: guix-git/doc/guix.texi:15259 #, no-wrap msgid "@code{needed-for-boot?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14907 +#: guix-git/doc/guix.texi:15264 msgid "This Boolean value indicates whether the file system is needed when booting. If that is true, then the file system is mounted when the initial RAM disk (initrd) is loaded. This is always the case, for instance, for the root file system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14908 +#: guix-git/doc/guix.texi:15265 #, no-wrap msgid "@code{check?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14912 +#: guix-git/doc/guix.texi:15269 msgid "This Boolean indicates whether the file system should be checked for errors before being mounted. How and when this happens can be further adjusted with the following options." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14913 +#: guix-git/doc/guix.texi:15270 #, fuzzy, no-wrap #| msgid "@code{silent?} (default: @code{#f})" msgid "@code{skip-check-if-clean?} (default: @code{#t})" msgstr "@code{snippet} (по умолчанию: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:14918 +#: guix-git/doc/guix.texi:15275 msgid "When true, this Boolean indicates that a file system check triggered by @code{check?} may exit early if the file system is marked as ``clean'', meaning that it was previously correctly unmounted and should not contain errors." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14922 +#: guix-git/doc/guix.texi:15279 msgid "Setting this to false will always force a full consistency check when @code{check?} is true. This may take a very long time and is not recommended on healthy systems---in fact, it may reduce reliability!" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14926 +#: guix-git/doc/guix.texi:15283 msgid "Conversely, some primitive file systems like @code{fat} do not keep track of clean shutdowns and will perform a full scan regardless of the value of this option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14927 +#: guix-git/doc/guix.texi:15284 #, fuzzy, no-wrap #| msgid "@code{server} (default: @code{'()})" msgid "@code{repair} (default: @code{'preen})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:14930 +#: guix-git/doc/guix.texi:15287 msgid "When @code{check?} finds errors, it can (try to) repair them and continue booting. This option controls when and how to do so." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14934 +#: guix-git/doc/guix.texi:15291 msgid "If false, try not to modify the file system at all. Checking certain file systems like @code{jfs} may still write to the device to replay the journal. No repairs will be attempted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14937 +#: guix-git/doc/guix.texi:15294 msgid "If @code{#t}, try to repair any errors found and assume ``yes'' to all questions. This will fix the most errors, but may be risky." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14941 +#: guix-git/doc/guix.texi:15298 msgid "If @code{'preen}, repair only errors that are safe to fix without human interaction. What that means is left up to the developers of each file system and may be equivalent to ``none'' or ``all''." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14942 +#: guix-git/doc/guix.texi:15299 #, no-wrap msgid "@code{create-mount-point?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14944 +#: guix-git/doc/guix.texi:15301 msgid "When true, the mount point is created if it does not exist yet." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14945 +#: guix-git/doc/guix.texi:15302 #, no-wrap msgid "@code{mount-may-fail?} (default: @code{#f})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:14950 +#: guix-git/doc/guix.texi:15307 msgid "When true, this indicates that mounting this file system can fail but that should not be considered an error. This is useful in unusual cases; an example of this is @code{efivarfs}, a file system that can only be mounted on EFI/UEFI systems." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14951 guix-git/doc/guix.texi:15347 +#: guix-git/doc/guix.texi:15308 guix-git/doc/guix.texi:15704 #, no-wrap msgid "@code{dependencies} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14955 +#: guix-git/doc/guix.texi:15312 msgid "This is a list of @code{} or @code{} objects representing file systems that must be mounted or mapped devices that must be opened before (and unmounted or closed after) this one." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14959 +#: guix-git/doc/guix.texi:15316 msgid "As an example, consider a hierarchy of mounts: @file{/sys/fs/cgroup} is a dependency of @file{/sys/fs/cgroup/cpu} and @file{/sys/fs/cgroup/memory}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14962 +#: guix-git/doc/guix.texi:15319 msgid "Another example is a file system that depends on a mapped device, for example for an encrypted partition (@pxref{Mapped Devices})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14965 +#: guix-git/doc/guix.texi:15322 #, no-wrap msgid "{Scheme Procedure} file-system-label @var{str}" msgstr "{Процедура Scheme} inferior-package? @var{obj}" #. type: deffn -#: guix-git/doc/guix.texi:14968 +#: guix-git/doc/guix.texi:15325 msgid "This procedure returns an opaque file system label from @var{str}, a string:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14972 +#: guix-git/doc/guix.texi:15329 #, no-wrap msgid "" "(file-system-label \"home\")\n" @@ -27193,104 +27912,104 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14976 +#: guix-git/doc/guix.texi:15333 msgid "File system labels are used to refer to file systems by label rather than by device name. See above for examples." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14980 +#: guix-git/doc/guix.texi:15337 msgid "The @code{(gnu system file-systems)} exports the following useful variables." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14981 +#: guix-git/doc/guix.texi:15338 #, no-wrap msgid "{Scheme Variable} %base-file-systems" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14986 +#: guix-git/doc/guix.texi:15343 msgid "These are essential file systems that are required on normal systems, such as @code{%pseudo-terminal-file-system} and @code{%immutable-store} (see below). Operating system declarations should always contain at least these." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14988 +#: guix-git/doc/guix.texi:15345 #, no-wrap msgid "{Scheme Variable} %pseudo-terminal-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14994 +#: guix-git/doc/guix.texi:15351 msgid "This is the file system to be mounted as @file{/dev/pts}. It supports @dfn{pseudo-terminals} created @i{via} @code{openpty} and similar functions (@pxref{Pseudo-Terminals,,, libc, The GNU C Library Reference Manual}). Pseudo-terminals are used by terminal emulators such as @command{xterm}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14996 +#: guix-git/doc/guix.texi:15353 #, no-wrap msgid "{Scheme Variable} %shared-memory-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15000 +#: guix-git/doc/guix.texi:15357 msgid "This file system is mounted as @file{/dev/shm} and is used to support memory sharing across processes (@pxref{Memory-mapped I/O, @code{shm_open},, libc, The GNU C Library Reference Manual})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15002 +#: guix-git/doc/guix.texi:15359 #, no-wrap msgid "{Scheme Variable} %immutable-store" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15007 +#: guix-git/doc/guix.texi:15364 msgid "This file system performs a read-only ``bind mount'' of @file{/gnu/store}, making it read-only for all the users including @code{root}. This prevents against accidental modification by software running as @code{root} or by system administrators." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15010 +#: guix-git/doc/guix.texi:15367 msgid "The daemon itself is still able to write to the store: it remounts it read-write in its own ``name space.''" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15012 +#: guix-git/doc/guix.texi:15369 #, no-wrap msgid "{Scheme Variable} %binary-format-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15016 +#: guix-git/doc/guix.texi:15373 msgid "The @code{binfmt_misc} file system, which allows handling of arbitrary executable file types to be delegated to user space. This requires the @code{binfmt.ko} kernel module to be loaded." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15018 +#: guix-git/doc/guix.texi:15375 #, no-wrap msgid "{Scheme Variable} %fuse-control-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15022 +#: guix-git/doc/guix.texi:15379 msgid "The @code{fusectl} file system, which allows unprivileged users to mount and unmount user-space FUSE file systems. This requires the @code{fuse.ko} kernel module to be loaded." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15026 +#: guix-git/doc/guix.texi:15383 msgid "The @code{(gnu system uuid)} module provides tools to deal with file system ``unique identifiers'' (UUIDs)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15027 +#: guix-git/doc/guix.texi:15384 #, no-wrap msgid "{Scheme Procedure} uuid @var{str} [@var{type}]" msgstr "{Процедура Scheme} lookup-inferior-packages @var{inferior} @var{name} @" #. type: deffn -#: guix-git/doc/guix.texi:15030 +#: guix-git/doc/guix.texi:15387 msgid "Return an opaque UUID (unique identifier) object of the given @var{type} (a symbol) by parsing @var{str} (a string):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15034 +#: guix-git/doc/guix.texi:15391 #, no-wrap msgid "" "(uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\")\n" @@ -27299,7 +28018,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15037 +#: guix-git/doc/guix.texi:15394 #, no-wrap msgid "" "(uuid \"1234-ABCD\" 'fat)\n" @@ -27307,33 +28026,33 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15041 +#: guix-git/doc/guix.texi:15398 msgid "@var{type} may be one of @code{dce}, @code{iso9660}, @code{fat}, @code{ntfs}, or one of the commonly found synonyms for these." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15044 +#: guix-git/doc/guix.texi:15401 msgid "UUIDs are another way to unambiguously refer to file systems in operating system configuration. See the examples above." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:15047 guix-git/doc/guix.texi:15048 +#: guix-git/doc/guix.texi:15404 guix-git/doc/guix.texi:15405 #, fuzzy, no-wrap msgid "Btrfs file system" msgstr "Сетевые файловые системы" #. type: Plain text -#: guix-git/doc/guix.texi:15054 +#: guix-git/doc/guix.texi:15411 msgid "The Btrfs has special features, such as subvolumes, that merit being explained in more details. The following section attempts to cover basic as well as complex uses of a Btrfs file system with the Guix System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15057 +#: guix-git/doc/guix.texi:15414 msgid "In its simplest usage, a Btrfs file system can be described, for example, by:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15063 +#: guix-git/doc/guix.texi:15420 #, no-wrap msgid "" "(file-system\n" @@ -27343,12 +28062,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15069 +#: guix-git/doc/guix.texi:15426 msgid "The example below is more complex, as it makes use of a Btrfs subvolume, named @code{rootfs}. The parent Btrfs file system is labeled @code{my-btrfs-pool}, and is located on an encrypted device (hence the dependency on @code{mapped-devices}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15077 +#: guix-git/doc/guix.texi:15434 #, no-wrap msgid "" "(file-system\n" @@ -27360,17 +28079,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15088 +#: guix-git/doc/guix.texi:15445 msgid "Some bootloaders, for example GRUB, only mount a Btrfs partition at its top level during the early boot, and rely on their configuration to refer to the correct subvolume path within that top level. The bootloaders operating in this way typically produce their configuration on a running system where the Btrfs partitions are already mounted and where the subvolume information is readily available. As an example, @command{grub-mkconfig}, the configuration generator command shipped with GRUB, reads @file{/proc/self/mountinfo} to determine the top-level path of a subvolume." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15096 +#: guix-git/doc/guix.texi:15453 msgid "The Guix System produces a bootloader configuration using the operating system configuration as its sole input; it is therefore necessary to extract the subvolume name on which @file{/gnu/store} lives (if any) from that operating system configuration. To better illustrate, consider a subvolume named 'rootfs' which contains the root file system data. In such situation, the GRUB bootloader would only see the top level of the root Btrfs partition, e.g.:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15103 +#: guix-git/doc/guix.texi:15460 #, no-wrap msgid "" "/ (top level)\n" @@ -27381,17 +28100,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15108 +#: guix-git/doc/guix.texi:15465 msgid "Thus, the subvolume name must be prepended to the @file{/gnu/store} path of the kernel, initrd binaries and any other files referred to in the GRUB configuration that must be found during the early boot." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15111 +#: guix-git/doc/guix.texi:15468 msgid "The next example shows a nested hierarchy of subvolumes and directories:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15118 +#: guix-git/doc/guix.texi:15475 #, no-wrap msgid "" "/ (top level)\n" @@ -27402,17 +28121,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15125 +#: guix-git/doc/guix.texi:15482 msgid "This scenario would work without mounting the 'store' subvolume. Mounting 'rootfs' is sufficient, since the subvolume name matches its intended mount point in the file system hierarchy. Alternatively, the 'store' subvolume could be referred to by setting the @code{subvol} option to either @code{/rootfs/gnu/store} or @code{rootfs/gnu/store}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15127 +#: guix-git/doc/guix.texi:15484 msgid "Finally, a more contrived example of nested subvolumes:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15134 +#: guix-git/doc/guix.texi:15491 #, no-wrap msgid "" "/ (top level)\n" @@ -27423,12 +28142,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15141 +#: guix-git/doc/guix.texi:15498 msgid "Here, the 'guix-store' subvolume doesn't match its intended mount point, so it is necessary to mount it. The subvolume must be fully specified, by passing its file name to the @code{subvol} option. To illustrate, the 'guix-store' subvolume could be mounted on @file{/gnu/store} by using a file system declaration such as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15149 +#: guix-git/doc/guix.texi:15506 #, no-wrap msgid "" "(file-system\n" @@ -27440,128 +28159,128 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15154 +#: guix-git/doc/guix.texi:15511 #, no-wrap msgid "device mapping" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15155 +#: guix-git/doc/guix.texi:15512 #, no-wrap msgid "mapped devices" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15172 +#: guix-git/doc/guix.texi:15529 msgid "The Linux kernel has a notion of @dfn{device mapping}: a block device, such as a hard disk partition, can be @dfn{mapped} into another device, usually in @code{/dev/mapper/}, with additional processing over the data that flows through it@footnote{Note that the GNU@tie{}Hurd makes no difference between the concept of a ``mapped device'' and that of a file system: both boil down to @emph{translating} input/output operations made on a file to operations on its backing store. Thus, the Hurd implements mapped devices, like file systems, using the generic @dfn{translator} mechanism (@pxref{Translators,,, hurd, The GNU Hurd Reference Manual}).}. A typical example is encryption device mapping: all writes to the mapped device are encrypted, and all reads are deciphered, transparently. Guix extends this notion by considering any device or set of devices that are @dfn{transformed} in some way to create a new device; for instance, RAID devices are obtained by @dfn{assembling} several other devices, such as hard disks or partitions, into a new one that behaves as one partition." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15175 +#: guix-git/doc/guix.texi:15532 msgid "Mapped devices are declared using the @code{mapped-device} form, defined as follows; for examples, see below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15176 +#: guix-git/doc/guix.texi:15533 #, no-wrap msgid "{Data Type} mapped-device" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15179 +#: guix-git/doc/guix.texi:15536 msgid "Objects of this type represent device mappings that will be made when the system boots up." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15186 +#: guix-git/doc/guix.texi:15543 msgid "This is either a string specifying the name of the block device to be mapped, such as @code{\"/dev/sda3\"}, or a list of such strings when several devices need to be assembled for creating a new one. In case of LVM this is a string specifying name of the volume group to be mapped." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:15187 guix-git/doc/guix.texi:15342 +#: guix-git/doc/guix.texi:15544 guix-git/doc/guix.texi:15699 #, no-wrap msgid "target" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15196 +#: guix-git/doc/guix.texi:15553 msgid "This string specifies the name of the resulting mapped device. For kernel mappers such as encrypted devices of type @code{luks-device-mapping}, specifying @code{\"my-partition\"} leads to the creation of the @code{\"/dev/mapper/my-partition\"} device. For RAID devices of type @code{raid-device-mapping}, the full device name such as @code{\"/dev/md0\"} needs to be given. LVM logical volumes of type @code{lvm-device-mapping} need to be specified as @code{\"VGNAME-LVNAME\"}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:15197 guix-git/doc/guix.texi:34634 +#: guix-git/doc/guix.texi:15554 guix-git/doc/guix.texi:35073 #, no-wrap msgid "targets" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15200 +#: guix-git/doc/guix.texi:15557 msgid "This list of strings specifies names of the resulting mapped devices in case there are several. The format is identical to @var{target}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15204 +#: guix-git/doc/guix.texi:15561 msgid "This must be a @code{mapped-device-kind} object, which specifies how @var{source} is mapped to @var{target}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15207 +#: guix-git/doc/guix.texi:15564 #, no-wrap msgid "{Scheme Variable} luks-device-mapping" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15211 +#: guix-git/doc/guix.texi:15568 msgid "This defines LUKS block device encryption using the @command{cryptsetup} command from the package with the same name. It relies on the @code{dm-crypt} Linux kernel module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15213 +#: guix-git/doc/guix.texi:15570 #, no-wrap msgid "{Scheme Variable} raid-device-mapping" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15218 +#: guix-git/doc/guix.texi:15575 msgid "This defines a RAID device, which is assembled using the @code{mdadm} command from the package with the same name. It requires a Linux kernel module for the appropriate RAID level to be loaded, such as @code{raid456} for RAID-4, RAID-5 or RAID-6, or @code{raid10} for RAID-10." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15220 +#: guix-git/doc/guix.texi:15577 #, no-wrap msgid "LVM, logical volume manager" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15221 +#: guix-git/doc/guix.texi:15578 #, no-wrap msgid "{Scheme Variable} lvm-device-mapping" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:15226 +#: guix-git/doc/guix.texi:15583 msgid "This defines one or more logical volumes for the Linux @uref{https://www.sourceware.org/lvm2/, Logical Volume Manager (LVM)}. The volume group is activated by the @command{vgchange} command from the @code{lvm2} package." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15228 +#: guix-git/doc/guix.texi:15585 #, no-wrap msgid "disk encryption" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15229 +#: guix-git/doc/guix.texi:15586 #, no-wrap msgid "LUKS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15237 +#: guix-git/doc/guix.texi:15594 msgid "The following example specifies a mapping from @file{/dev/sda3} to @file{/dev/mapper/home} using LUKS---the @url{https://gitlab.com/cryptsetup/cryptsetup,Linux Unified Key Setup}, a standard mechanism for disk encryption. The @file{/dev/mapper/home} device can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15243 +#: guix-git/doc/guix.texi:15600 #, no-wrap msgid "" "(mapped-device\n" @@ -27571,23 +28290,23 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15248 +#: guix-git/doc/guix.texi:15605 msgid "Alternatively, to become independent of device numbering, one may obtain the LUKS UUID (@dfn{unique identifier}) of the source device by a command like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15251 +#: guix-git/doc/guix.texi:15608 #, no-wrap msgid "cryptsetup luksUUID /dev/sda3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15254 +#: guix-git/doc/guix.texi:15611 msgid "and use it as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15260 +#: guix-git/doc/guix.texi:15617 #, no-wrap msgid "" "(mapped-device\n" @@ -27597,23 +28316,23 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15262 +#: guix-git/doc/guix.texi:15619 #, no-wrap msgid "swap encryption" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15269 +#: guix-git/doc/guix.texi:15626 msgid "It is also desirable to encrypt swap space, since swap space may contain sensitive data. One way to accomplish that is to use a swap file in a file system on a device mapped via LUKS encryption. In this way, the swap file is encrypted because the entire device is encrypted. @xref{Swap Space}, or @xref{Preparing for Installation,,Disk Partitioning}, for an example." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15272 +#: guix-git/doc/guix.texi:15629 msgid "A RAID device formed of the partitions @file{/dev/sda1} and @file{/dev/sdb1} may be declared as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15278 +#: guix-git/doc/guix.texi:15635 #, no-wrap msgid "" "(mapped-device\n" @@ -27623,17 +28342,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15285 +#: guix-git/doc/guix.texi:15642 msgid "The @file{/dev/md0} device can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems}). Note that the RAID level need not be given; it is chosen during the initial creation and formatting of the RAID device and is determined automatically later." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15288 +#: guix-git/doc/guix.texi:15645 msgid "LVM logical volumes ``alpha'' and ``beta'' from volume group ``vg0'' can be declared as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15294 +#: guix-git/doc/guix.texi:15651 #, no-wrap msgid "" "(mapped-device\n" @@ -27643,105 +28362,105 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15299 +#: guix-git/doc/guix.texi:15656 msgid "Devices @file{/dev/mapper/vg0-alpha} and @file{/dev/mapper/vg0-beta} can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15302 +#: guix-git/doc/guix.texi:15659 #, no-wrap msgid "swap space" msgstr "место на диске" #. type: Plain text -#: guix-git/doc/guix.texi:15312 +#: guix-git/doc/guix.texi:15669 msgid "Swap space, as it is commonly called, is a disk area specifically designated for paging: the process in charge of memory management (the Linux kernel or Hurd's default pager) can decide that some memory pages stored in RAM which belong to a running program but are unused should be stored on disk instead. It unloads those from the RAM, freeing up precious fast memory, and writes them to the swap space. If the program tries to access that very page, the memory management process loads it back into memory for the program to use." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15318 +#: guix-git/doc/guix.texi:15675 msgid "A common misconception about swap is that it is only useful when small amounts of RAM are available to the system. However, it should be noted that kernels often use all available RAM for disk access caching to make I/O faster, and thus paging out unused portions of program memory will expand the RAM available for such caching." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15322 +#: guix-git/doc/guix.texi:15679 msgid "For a more detailed description of how memory is managed from the viewpoint of a monolithic kernel, @xref{Memory Concepts,,, libc, The GNU C Library Reference Manual}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15331 +#: guix-git/doc/guix.texi:15688 msgid "The Linux kernel has support for swap partitions and swap files: the former uses a whole disk partition for paging, whereas the second uses a file on a file system for that (the file system driver needs to support it). On a comparable setup, both have the same performance, so one should consider ease of use when deciding between them. Partitions are ``simpler'' and do not need file system support, but need to be allocated at disk formatting time (logical volumes notwithstanding), whereas files can be allocated and deallocated at any time." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15336 +#: guix-git/doc/guix.texi:15693 msgid "Note that swap space is not zeroed on shutdown, so sensitive data (such as passwords) may linger on it if it was paged out. As such, you should consider having your swap reside on an encrypted device (@pxref{Mapped Devices})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15337 +#: guix-git/doc/guix.texi:15694 #, fuzzy, no-wrap #| msgid "{Data Type} package" msgid "{Data Type} swap-space" msgstr "{Тип данных} package" #. type: deftp -#: guix-git/doc/guix.texi:15340 +#: guix-git/doc/guix.texi:15697 msgid "Objects of this type represent swap spaces. They contain the following members:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15346 +#: guix-git/doc/guix.texi:15703 msgid "The device or file to use, either a UUID, a @code{file-system-label} or a string, as in the definition of a @code{file-system} (@pxref{File Systems})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15353 +#: guix-git/doc/guix.texi:15710 msgid "A list of @code{file-system} or @code{mapped-device} objects, upon which the availability of the space depends. Note that just like for @code{file-system} objects, dependencies which are needed for boot and mounted in early userspace are not managed by the Shepherd, and so automatically filtered out for you." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15354 +#: guix-git/doc/guix.texi:15711 #, fuzzy, no-wrap #| msgid "@code{port} (default: @code{#f})" msgid "@code{priority} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:15361 +#: guix-git/doc/guix.texi:15718 msgid "Only supported by the Linux kernel. Either @code{#f} to disable swap priority, or an integer between 0 and 32767. The kernel will first use swap spaces of higher priority when paging, and use same priority spaces on a round-robin basis. The kernel will use swap spaces without a set priority after prioritized spaces, and in the order that they appeared in (not round-robin)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15362 +#: guix-git/doc/guix.texi:15719 #, fuzzy, no-wrap #| msgid "@code{discover?} (default: @code{#f})" msgid "@code{discard?} (default: @code{#f})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:15366 +#: guix-git/doc/guix.texi:15723 msgid "Only supported by the Linux kernel. When true, the kernel will notify the disk controller of discarded pages, for example with the TRIM operation on Solid State Drives." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15371 +#: guix-git/doc/guix.texi:15728 msgid "Here are some examples:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15374 +#: guix-git/doc/guix.texi:15731 #, no-wrap msgid "(swap-space (target (uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\")))\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15379 +#: guix-git/doc/guix.texi:15736 msgid "Use the swap partition with the given UUID@. You can learn the UUID of a Linux swap partition by running @command{swaplabel @var{device}}, where @var{device} is the @file{/dev} file name of that partition." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15384 +#: guix-git/doc/guix.texi:15741 #, no-wrap msgid "" "(swap-space\n" @@ -27750,12 +28469,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15390 +#: guix-git/doc/guix.texi:15747 msgid "Use the partition with label @code{swap}, which can be found after the @var{lvm-device} mapped device has been opened. Again, the @command{swaplabel} command allows you to view and change the label of a Linux swap partition." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15395 +#: guix-git/doc/guix.texi:15752 #, no-wrap msgid "" "(swap-space\n" @@ -27764,35 +28483,35 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15399 +#: guix-git/doc/guix.texi:15756 msgid "Use the file @file{/btrfs/swapfile} as swap space, which is present on the @var{btrfs-fs} filesystem." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15403 +#: guix-git/doc/guix.texi:15760 #, no-wrap msgid "users" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15404 +#: guix-git/doc/guix.texi:15761 #, no-wrap msgid "accounts" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15405 +#: guix-git/doc/guix.texi:15762 #, no-wrap msgid "user accounts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15409 +#: guix-git/doc/guix.texi:15766 msgid "User accounts and groups are entirely managed through the @code{operating-system} declaration. They are specified with the @code{user-account} and @code{user-group} forms:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15419 +#: guix-git/doc/guix.texi:15776 #, no-wrap msgid "" "(user-account\n" @@ -27806,12 +28525,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15423 +#: guix-git/doc/guix.texi:15780 msgid "Here's a user account that uses a different shell and a custom home directory (the default would be @file{\"/home/bob\"}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15431 +#: guix-git/doc/guix.texi:15788 #, no-wrap msgid "" "(user-account\n" @@ -27823,171 +28542,171 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15440 +#: guix-git/doc/guix.texi:15797 msgid "When booting or upon completion of @command{guix system reconfigure}, the system ensures that only the user accounts and groups specified in the @code{operating-system} declaration exist, and with the specified properties. Thus, account or group creations or modifications made by directly invoking commands such as @command{useradd} are lost upon reconfiguration or reboot. This ensures that the system remains exactly as declared." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15441 +#: guix-git/doc/guix.texi:15798 #, no-wrap msgid "{Data Type} user-account" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15444 +#: guix-git/doc/guix.texi:15801 msgid "Objects of this type represent user accounts. The following members may be specified:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15448 +#: guix-git/doc/guix.texi:15805 msgid "The name of the user account." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:15449 guix-git/doc/guix.texi:34298 +#: guix-git/doc/guix.texi:15806 guix-git/doc/guix.texi:34737 #, no-wrap msgid "group" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15450 guix-git/doc/guix.texi:15534 +#: guix-git/doc/guix.texi:15807 guix-git/doc/guix.texi:15891 #, no-wrap msgid "groups" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15453 +#: guix-git/doc/guix.texi:15810 msgid "This is the name (a string) or identifier (a number) of the user group this account belongs to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15454 +#: guix-git/doc/guix.texi:15811 #, no-wrap msgid "@code{supplementary-groups} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15457 +#: guix-git/doc/guix.texi:15814 msgid "Optionally, this can be defined as a list of group names that this account belongs to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15458 +#: guix-git/doc/guix.texi:15815 #, no-wrap msgid "@code{uid} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15462 +#: guix-git/doc/guix.texi:15819 msgid "This is the user ID for this account (a number), or @code{#f}. In the latter case, a number is automatically chosen by the system when the account is created." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15463 guix-git/doc/guix.texi:18217 +#: guix-git/doc/guix.texi:15820 guix-git/doc/guix.texi:18579 #, no-wrap msgid "@code{comment} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15465 +#: guix-git/doc/guix.texi:15822 msgid "A comment about the account, such as the account owner's full name." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15470 +#: guix-git/doc/guix.texi:15827 msgid "Note that, for non-system accounts, users are free to change their real name as it appears in @file{/etc/passwd} using the @command{chfn} command. When they do, their choice prevails over the system administrator's choice; reconfiguring does @emph{not} change their name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:15471 +#: guix-git/doc/guix.texi:15828 #, no-wrap msgid "home-directory" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15473 +#: guix-git/doc/guix.texi:15830 msgid "This is the name of the home directory for the account." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15474 +#: guix-git/doc/guix.texi:15831 #, no-wrap msgid "@code{create-home-directory?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15477 +#: guix-git/doc/guix.texi:15834 msgid "Indicates whether the home directory of this account should be created if it does not exist yet." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15478 +#: guix-git/doc/guix.texi:15835 #, no-wrap msgid "@code{shell} (default: Bash)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15482 +#: guix-git/doc/guix.texi:15839 msgid "This is a G-expression denoting the file name of a program to be used as the shell (@pxref{G-Expressions}). For example, you would refer to the Bash executable like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15485 +#: guix-git/doc/guix.texi:15842 #, no-wrap msgid "(file-append bash \"/bin/bash\")\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15489 +#: guix-git/doc/guix.texi:15846 msgid "... and to the Zsh executable like that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15492 +#: guix-git/doc/guix.texi:15849 #, no-wrap msgid "(file-append zsh \"/bin/zsh\")\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:15494 guix-git/doc/guix.texi:15552 +#: guix-git/doc/guix.texi:15851 guix-git/doc/guix.texi:15909 #, no-wrap msgid "@code{system?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15498 +#: guix-git/doc/guix.texi:15855 msgid "This Boolean value indicates whether the account is a ``system'' account. System accounts are sometimes treated specially; for instance, graphical login managers do not list them." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:15500 +#: guix-git/doc/guix.texi:15857 msgid "user-account-password" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15500 +#: guix-git/doc/guix.texi:15857 #, no-wrap msgid "password, for user accounts" msgstr "" #. type: item -#: guix-git/doc/guix.texi:15501 guix-git/doc/guix.texi:15556 +#: guix-git/doc/guix.texi:15858 guix-git/doc/guix.texi:15913 #, no-wrap msgid "@code{password} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15507 +#: guix-git/doc/guix.texi:15864 msgid "You would normally leave this field to @code{#f}, initialize user passwords as @code{root} with the @command{passwd} command, and then let users change it with @command{passwd}. Passwords set with @command{passwd} are of course preserved across reboot and reconfiguration." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15511 +#: guix-git/doc/guix.texi:15868 msgid "If you @emph{do} want to set an initial password for an account, then this field must contain the encrypted password, as a string. You can use the @code{crypt} procedure for this purpose:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15516 +#: guix-git/doc/guix.texi:15873 #, no-wrap msgid "" "(user-account\n" @@ -27997,7 +28716,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15519 +#: guix-git/doc/guix.texi:15876 #, no-wrap msgid "" " ;; Specify a SHA-512-hashed initial password.\n" @@ -28005,171 +28724,171 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:15525 +#: guix-git/doc/guix.texi:15882 msgid "The hash of this initial password will be available in a file in @file{/gnu/store}, readable by all the users, so this method must be used with care." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15530 +#: guix-git/doc/guix.texi:15887 msgid "@xref{Passphrase Storage,,, libc, The GNU C Library Reference Manual}, for more information on password encryption, and @ref{Encryption,,, guile, GNU Guile Reference Manual}, for information on Guile's @code{crypt} procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15536 +#: guix-git/doc/guix.texi:15893 msgid "User group declarations are even simpler:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15539 +#: guix-git/doc/guix.texi:15896 #, no-wrap msgid "(user-group (name \"students\"))\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15541 +#: guix-git/doc/guix.texi:15898 #, no-wrap msgid "{Data Type} user-group" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15543 +#: guix-git/doc/guix.texi:15900 msgid "This type is for, well, user groups. There are just a few fields:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15547 +#: guix-git/doc/guix.texi:15904 msgid "The name of the group." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15548 guix-git/doc/guix.texi:30819 +#: guix-git/doc/guix.texi:15905 guix-git/doc/guix.texi:31184 #, no-wrap msgid "@code{id} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15551 +#: guix-git/doc/guix.texi:15908 msgid "The group identifier (a number). If @code{#f}, a new number is automatically allocated when the group is created." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15555 +#: guix-git/doc/guix.texi:15912 msgid "This Boolean value indicates whether the group is a ``system'' group. System groups have low numerical IDs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15559 +#: guix-git/doc/guix.texi:15916 msgid "What, user groups can have a password? Well, apparently yes. Unless @code{#f}, this field specifies the password of the group." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15565 +#: guix-git/doc/guix.texi:15922 msgid "For convenience, a variable lists all the basic user groups one may expect:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15566 +#: guix-git/doc/guix.texi:15923 #, no-wrap msgid "{Scheme Variable} %base-groups" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15571 +#: guix-git/doc/guix.texi:15928 msgid "This is the list of basic user groups that users and/or packages expect to be present on the system. This includes groups such as ``root'', ``wheel'', and ``users'', as well as groups used to control access to specific devices such as ``audio'', ``disk'', and ``cdrom''." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15573 +#: guix-git/doc/guix.texi:15930 #, no-wrap msgid "{Scheme Variable} %base-user-accounts" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15576 +#: guix-git/doc/guix.texi:15933 msgid "This is the list of basic system accounts that programs may expect to find on a GNU/Linux system, such as the ``nobody'' account." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15579 +#: guix-git/doc/guix.texi:15936 msgid "Note that the ``root'' account is not included here. It is a special-case and is automatically added whether or not it is specified." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15585 +#: guix-git/doc/guix.texi:15942 #, no-wrap msgid "keymap" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15593 +#: guix-git/doc/guix.texi:15950 msgid "To specify what each key of your keyboard does, you need to tell the operating system what @dfn{keyboard layout} you want to use. The default, when nothing is specified, is the US English QWERTY layout for 105-key PC keyboards. However, German speakers will usually prefer the German QWERTZ layout, French speakers will want the AZERTY layout, and so on; hackers might prefer Dvorak or bépo, and they might even want to further customize the effect of some of the keys. This section explains how to get that done." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15594 +#: guix-git/doc/guix.texi:15951 #, no-wrap msgid "keyboard layout, definition" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15596 +#: guix-git/doc/guix.texi:15953 msgid "There are three components that will want to know about your keyboard layout:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15603 +#: guix-git/doc/guix.texi:15960 msgid "The @emph{bootloader} may want to know what keyboard layout you want to use (@pxref{Bootloader Configuration, @code{keyboard-layout}}). This is useful if you want, for instance, to make sure that you can type the passphrase of your encrypted root partition using the right layout." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15608 +#: guix-git/doc/guix.texi:15965 msgid "The @emph{operating system kernel}, Linux, will need that so that the console is properly configured (@pxref{operating-system Reference, @code{keyboard-layout}})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15612 +#: guix-git/doc/guix.texi:15969 msgid "The @emph{graphical display server}, usually Xorg, also has its own idea of the keyboard layout (@pxref{X Window, @code{keyboard-layout}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15616 +#: guix-git/doc/guix.texi:15973 msgid "Guix allows you to configure all three separately but, fortunately, it allows you to share the same keyboard layout for all three components." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15617 +#: guix-git/doc/guix.texi:15974 #, no-wrap msgid "XKB, keyboard layouts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15625 +#: guix-git/doc/guix.texi:15982 msgid "Keyboard layouts are represented by records created by the @code{keyboard-layout} procedure of @code{(gnu system keyboard)}. Following the X Keyboard extension (XKB), each layout has four attributes: a name (often a language code such as ``fi'' for Finnish or ``jp'' for Japanese), an optional variant name, an optional keyboard model name, and a possibly empty list of additional options. In most cases the layout name is all you care about." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15626 +#: guix-git/doc/guix.texi:15983 #, no-wrap msgid "{Scheme Procedure} keyboard-layout @var{name} [@var{variant}] @" msgstr "{Scheme Procedure} directory-union @var{name} @var{things}" #. type: deffn -#: guix-git/doc/guix.texi:15629 +#: guix-git/doc/guix.texi:15986 msgid "[#:model] [#:options '()] Return a new keyboard layout with the given @var{name} and @var{variant}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15633 +#: guix-git/doc/guix.texi:15990 msgid "@var{name} must be a string such as @code{\"fr\"}; @var{variant} must be a string such as @code{\"bepo\"} or @code{\"nodeadkeys\"}. See the @code{xkeyboard-config} package for valid options." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15636 +#: guix-git/doc/guix.texi:15993 msgid "Here are a few examples:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15641 +#: guix-git/doc/guix.texi:15998 #, no-wrap msgid "" ";; The German QWERTZ layout. Here we assume a standard\n" @@ -28179,7 +28898,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15644 +#: guix-git/doc/guix.texi:16001 #, no-wrap msgid "" ";; The bépo variant of the French layout.\n" @@ -28188,7 +28907,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15647 +#: guix-git/doc/guix.texi:16004 #, no-wrap msgid "" ";; The Catalan layout.\n" @@ -28197,7 +28916,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15650 +#: guix-git/doc/guix.texi:16007 #, no-wrap msgid "" ";; Arabic layout with \"Alt-Shift\" to switch to US layout.\n" @@ -28206,7 +28925,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15657 +#: guix-git/doc/guix.texi:16014 #, no-wrap msgid "" ";; The Latin American Spanish layout. In addition, the\n" @@ -28219,7 +28938,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15660 +#: guix-git/doc/guix.texi:16017 #, no-wrap msgid "" ";; The Russian layout for a ThinkPad keyboard.\n" @@ -28228,7 +28947,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15665 +#: guix-git/doc/guix.texi:16022 #, no-wrap msgid "" ";; The \"US international\" layout, which is the US layout plus\n" @@ -28238,29 +28957,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15669 +#: guix-git/doc/guix.texi:16026 msgid "See the @file{share/X11/xkb} directory of the @code{xkeyboard-config} package for a complete list of supported layouts, variants, and models." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15670 +#: guix-git/doc/guix.texi:16027 #, no-wrap msgid "keyboard layout, configuration" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15674 +#: guix-git/doc/guix.texi:16031 msgid "Let's say you want your system to use the Turkish keyboard layout throughout your system---bootloader, console, and Xorg. Here's what your system configuration would look like:" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:15675 +#: guix-git/doc/guix.texi:16032 #, no-wrap msgid "set-xorg-configuration" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15679 +#: guix-git/doc/guix.texi:16036 #, no-wrap msgid "" ";; Using the Turkish layout for the bootloader, the console,\n" @@ -28269,7 +28988,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15691 +#: guix-git/doc/guix.texi:16048 #, no-wrap msgid "" "(operating-system\n" @@ -28286,76 +29005,76 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15698 +#: guix-git/doc/guix.texi:16055 msgid "In the example above, for GRUB and for Xorg, we just refer to the @code{keyboard-layout} field defined above, but we could just as well refer to a different layout. The @code{set-xorg-configuration} procedure communicates the desired Xorg configuration to the graphical log-in manager, by default GDM." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15701 +#: guix-git/doc/guix.texi:16058 msgid "We've discussed how to specify the @emph{default} keyboard layout of your system when it starts, but you can also adjust it at run time:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15706 +#: guix-git/doc/guix.texi:16063 msgid "If you're using GNOME, its settings panel has a ``Region & Language'' entry where you can select one or more keyboard layouts." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15711 +#: guix-git/doc/guix.texi:16068 msgid "Under Xorg, the @command{setxkbmap} command (from the same-named package) allows you to change the current layout. For example, this is how you would change the layout to US Dvorak:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15714 +#: guix-git/doc/guix.texi:16071 #, no-wrap msgid "setxkbmap us dvorak\n" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15721 +#: guix-git/doc/guix.texi:16078 msgid "The @code{loadkeys} command changes the keyboard layout in effect in the Linux console. However, note that @code{loadkeys} does @emph{not} use the XKB keyboard layout categorization described above. The command below loads the French bépo layout:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15724 +#: guix-git/doc/guix.texi:16081 #, no-wrap msgid "loadkeys fr-bepo\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15730 +#: guix-git/doc/guix.texi:16087 #, no-wrap msgid "locale" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15737 +#: guix-git/doc/guix.texi:16094 msgid "A @dfn{locale} defines cultural conventions for a particular language and region of the world (@pxref{Locales,,, libc, The GNU C Library Reference Manual}). Each locale has a name that typically has the form @code{@var{language}_@var{territory}.@var{codeset}}---e.g., @code{fr_LU.utf8} designates the locale for the French language, with cultural conventions from Luxembourg, and using the UTF-8 encoding." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15738 +#: guix-git/doc/guix.texi:16095 #, no-wrap msgid "locale definition" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15742 +#: guix-git/doc/guix.texi:16099 msgid "Usually, you will want to specify the default locale for the machine using the @code{locale} field of the @code{operating-system} declaration (@pxref{operating-system Reference, @code{locale}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15751 +#: guix-git/doc/guix.texi:16108 msgid "The selected locale is automatically added to the @dfn{locale definitions} known to the system if needed, with its codeset inferred from its name---e.g., @code{bo_CN.utf8} will be assumed to use the @code{UTF-8} codeset. Additional locale definitions can be specified in the @code{locale-definitions} slot of @code{operating-system}---this is useful, for instance, if the codeset could not be inferred from the locale name. The default set of locale definitions includes some widely used locales, but not all the available locales, in order to save space." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15754 +#: guix-git/doc/guix.texi:16111 msgid "For instance, to add the North Frisian locale for Germany, the value of that field may be:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15759 +#: guix-git/doc/guix.texi:16116 #, no-wrap msgid "" "(cons (locale-definition\n" @@ -28364,12 +29083,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15763 +#: guix-git/doc/guix.texi:16120 msgid "Likewise, to save space, one might want @code{locale-definitions} to list only the locales that are actually used, as in:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15768 +#: guix-git/doc/guix.texi:16125 #, no-wrap msgid "" "(list (locale-definition\n" @@ -28378,114 +29097,114 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15777 +#: guix-git/doc/guix.texi:16134 msgid "The compiled locale definitions are available at @file{/run/current-system/locale/X.Y}, where @code{X.Y} is the libc version, which is the default location where the GNU@tie{}libc provided by Guix looks for locale data. This can be overridden using the @env{LOCPATH} environment variable (@pxref{locales-and-locpath, @env{LOCPATH} and locale packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15780 +#: guix-git/doc/guix.texi:16137 msgid "The @code{locale-definition} form is provided by the @code{(gnu system locale)} module. Details are given below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15781 +#: guix-git/doc/guix.texi:16138 #, no-wrap msgid "{Data Type} locale-definition" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15783 +#: guix-git/doc/guix.texi:16140 msgid "This is the data type of a locale definition." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15789 +#: guix-git/doc/guix.texi:16146 msgid "The name of the locale. @xref{Locale Names,,, libc, The GNU C Library Reference Manual}, for more information on locale names." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15793 +#: guix-git/doc/guix.texi:16150 msgid "The name of the source for that locale. This is typically the @code{@var{language}_@var{territory}} part of the locale name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15794 +#: guix-git/doc/guix.texi:16151 #, no-wrap msgid "@code{charset} (default: @code{\"UTF-8\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15798 +#: guix-git/doc/guix.texi:16155 msgid "The ``character set'' or ``code set'' for that locale, @uref{https://www.iana.org/assignments/character-sets, as defined by IANA}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15802 +#: guix-git/doc/guix.texi:16159 #, no-wrap msgid "{Scheme Variable} %default-locale-definitions" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15806 +#: guix-git/doc/guix.texi:16163 msgid "A list of commonly used UTF-8 locales, used as the default value of the @code{locale-definitions} field of @code{operating-system} declarations." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15807 +#: guix-git/doc/guix.texi:16164 #, no-wrap msgid "locale name" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15808 +#: guix-git/doc/guix.texi:16165 #, no-wrap msgid "normalized codeset in locale names" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15814 +#: guix-git/doc/guix.texi:16171 msgid "These locale definitions use the @dfn{normalized codeset} for the part that follows the dot in the name (@pxref{Using gettextized software, normalized codeset,, libc, The GNU C Library Reference Manual}). So for instance it has @code{uk_UA.utf8} but @emph{not}, say, @code{uk_UA.UTF-8}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:15816 +#: guix-git/doc/guix.texi:16173 #, no-wrap msgid "Locale Data Compatibility Considerations" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15818 +#: guix-git/doc/guix.texi:16175 #, no-wrap msgid "incompatibility, of locale data" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15825 +#: guix-git/doc/guix.texi:16182 msgid "@code{operating-system} declarations provide a @code{locale-libcs} field to specify the GNU@tie{}libc packages that are used to compile locale declarations (@pxref{operating-system Reference}). ``Why would I care?'', you may ask. Well, it turns out that the binary format of locale data is occasionally incompatible from one libc version to another." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15837 +#: guix-git/doc/guix.texi:16194 msgid "For instance, a program linked against libc version 2.21 is unable to read locale data produced with libc 2.22; worse, that program @emph{aborts} instead of simply ignoring the incompatible locale data@footnote{Versions 2.23 and later of GNU@tie{}libc will simply skip the incompatible locale data, which is already an improvement.}. Similarly, a program linked against libc 2.22 can read most, but not all, of the locale data from libc 2.21 (specifically, @env{LC_COLLATE} data is incompatible); thus calls to @code{setlocale} may fail, but programs will not abort." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15842 +#: guix-git/doc/guix.texi:16199 msgid "The ``problem'' with Guix is that users have a lot of freedom: They can choose whether and when to upgrade software in their profiles, and might be using a libc version different from the one the system administrator used to build the system-wide locale data." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15846 +#: guix-git/doc/guix.texi:16203 msgid "Fortunately, unprivileged users can also install their own locale data and define @env{GUIX_LOCPATH} accordingly (@pxref{locales-and-locpath, @env{GUIX_LOCPATH} and locale packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15853 +#: guix-git/doc/guix.texi:16210 msgid "Still, it is best if the system-wide locale data at @file{/run/current-system/locale} is built for all the libc versions actually in use on the system, so that all the programs can access it---this is especially crucial on a multi-user system. To do that, the administrator can specify several libc packages in the @code{locale-libcs} field of @code{operating-system}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15856 +#: guix-git/doc/guix.texi:16213 #, no-wrap msgid "" "(use-package-modules base)\n" @@ -28493,7 +29212,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15860 +#: guix-git/doc/guix.texi:16217 #, no-wrap msgid "" "(operating-system\n" @@ -28502,39 +29221,39 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15865 +#: guix-git/doc/guix.texi:16222 msgid "This example would lead to a system containing locale definitions for both libc 2.21 and the current version of libc in @file{/run/current-system/locale}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15870 +#: guix-git/doc/guix.texi:16227 #, no-wrap msgid "system services" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15876 +#: guix-git/doc/guix.texi:16233 msgid "An important part of preparing an @code{operating-system} declaration is listing @dfn{system services} and their configuration (@pxref{Using the Configuration System}). System services are typically daemons launched when the system boots, or other actions needed at that time---e.g., configuring network access." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15883 +#: guix-git/doc/guix.texi:16240 msgid "Guix has a broad definition of ``service'' (@pxref{Service Composition}), but many services are managed by the GNU@tie{}Shepherd (@pxref{Shepherd Services}). On a running system, the @command{herd} command allows you to list the available services, show their status, start and stop them, or do other specific operations (@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}). For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15886 +#: guix-git/doc/guix.texi:16243 #, no-wrap msgid "# herd status\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15891 +#: guix-git/doc/guix.texi:16248 msgid "The above command, run as @code{root}, lists the currently defined services. The @command{herd doc} command shows a synopsis of the given service and its associated actions:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15895 +#: guix-git/doc/guix.texi:16252 #, no-wrap msgid "" "# herd doc nscd\n" @@ -28543,7 +29262,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15898 +#: guix-git/doc/guix.texi:16255 #, no-wrap msgid "" "# herd doc nscd action invalidate\n" @@ -28551,12 +29270,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15903 +#: guix-git/doc/guix.texi:16260 msgid "The @command{start}, @command{stop}, and @command{restart} sub-commands have the effect you would expect. For instance, the commands below stop the nscd service and restart the Xorg display server:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15910 +#: guix-git/doc/guix.texi:16267 #, no-wrap msgid "" "# herd stop nscd\n" @@ -28567,46 +29286,46 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15915 +#: guix-git/doc/guix.texi:16272 msgid "The following sections document the available services, starting with the core services, that may be used in an @code{operating-system} declaration." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:15951 guix-git/doc/guix.texi:24198 -#: guix-git/doc/guix.texi:24199 +#: guix-git/doc/guix.texi:16308 guix-git/doc/guix.texi:24560 +#: guix-git/doc/guix.texi:24561 #, fuzzy, no-wrap msgid "File-Sharing Services" msgstr "Сервисы сообщений" #. type: menuentry -#: guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:16308 #, fuzzy msgid "File-sharing services." msgstr "Сервисы сообщений." #. type: Plain text -#: guix-git/doc/guix.texi:15959 +#: guix-git/doc/guix.texi:16316 msgid "The @code{(gnu services base)} module provides definitions for the basic services that one expects from the system. The services exported by this module are listed below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15960 +#: guix-git/doc/guix.texi:16317 #, no-wrap msgid "{Scheme Variable} %base-services" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15966 +#: guix-git/doc/guix.texi:16323 msgid "This variable contains a list of basic services (@pxref{Service Types and Services}, for more information on service objects) one would expect from the system: a login service (mingetty) on each tty, syslogd, the libc name service cache daemon (nscd), the udev device manager, and more." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15971 +#: guix-git/doc/guix.texi:16328 msgid "This is the default value of the @code{services} field of @code{operating-system} declarations. Usually, when customizing a system, you will want to append services to @code{%base-services}, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15976 +#: guix-git/doc/guix.texi:16333 #, no-wrap msgid "" "(append (list (service avahi-service-type)\n" @@ -28615,58 +29334,58 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15979 +#: guix-git/doc/guix.texi:16336 #, no-wrap msgid "{Scheme Variable} special-files-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15982 +#: guix-git/doc/guix.texi:16339 msgid "This is the service that sets up ``special files'' such as @file{/bin/sh}; an instance of it is part of @code{%base-services}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15986 +#: guix-git/doc/guix.texi:16343 msgid "The value associated with @code{special-files-service-type} services must be a list of tuples where the first element is the ``special file'' and the second element is its target. By default it is:" msgstr "" #. type: file{#1} -#: guix-git/doc/guix.texi:15987 +#: guix-git/doc/guix.texi:16344 #, no-wrap msgid "/bin/sh" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15988 +#: guix-git/doc/guix.texi:16345 #, no-wrap msgid "@file{sh}, in @file{/bin}" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15991 +#: guix-git/doc/guix.texi:16348 #, no-wrap msgid "`((\"/bin/sh\" ,(file-append bash \"/bin/sh\")))\n" msgstr "" #. type: file{#1} -#: guix-git/doc/guix.texi:15993 +#: guix-git/doc/guix.texi:16350 #, no-wrap msgid "/usr/bin/env" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15994 +#: guix-git/doc/guix.texi:16351 #, no-wrap msgid "@file{env}, in @file{/usr/bin}" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15997 +#: guix-git/doc/guix.texi:16354 msgid "If you want to add, say, @code{/usr/bin/env} to your system, you can change it to:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16001 +#: guix-git/doc/guix.texi:16358 #, no-wrap msgid "" "`((\"/bin/sh\" ,(file-append bash \"/bin/sh\"))\n" @@ -28674,28 +29393,28 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16008 +#: guix-git/doc/guix.texi:16365 msgid "Since this is part of @code{%base-services}, you can use @code{modify-services} to customize the set of special files (@pxref{Service Reference, @code{modify-services}}). But the simple way to add a special file is @i{via} the @code{extra-special-file} procedure (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16010 +#: guix-git/doc/guix.texi:16367 #, no-wrap msgid "{Scheme Procedure} extra-special-file @var{file} @var{target}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16012 +#: guix-git/doc/guix.texi:16369 msgid "Use @var{target} as the ``special file'' @var{file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16016 +#: guix-git/doc/guix.texi:16373 msgid "For example, adding the following lines to the @code{services} field of your operating system declaration leads to a @file{/usr/bin/env} symlink:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16020 +#: guix-git/doc/guix.texi:16377 #, no-wrap msgid "" "(extra-special-file \"/usr/bin/env\"\n" @@ -28703,29 +29422,29 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16023 +#: guix-git/doc/guix.texi:16380 #, no-wrap msgid "{Scheme Procedure} host-name-service @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16025 +#: guix-git/doc/guix.texi:16382 msgid "Return a service that sets the host name to @var{name}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16027 +#: guix-git/doc/guix.texi:16384 #, no-wrap msgid "{Scheme Variable} console-font-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:16032 +#: guix-git/doc/guix.texi:16389 msgid "Install the given fonts on the specified ttys (fonts are per virtual console on the kernel Linux). The value of this service is a list of tty/font pairs. The font can be the name of a font provided by the @code{kbd} package or any valid argument to @command{setfont}, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16041 +#: guix-git/doc/guix.texi:16398 #, no-wrap msgid "" "`((\"tty1\" . \"LatGrkCyr-8x16\")\n" @@ -28738,1109 +29457,1109 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16044 +#: guix-git/doc/guix.texi:16401 #, no-wrap msgid "{Scheme Procedure} login-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16048 +#: guix-git/doc/guix.texi:16405 msgid "Return a service to run login according to @var{config}, a @code{} object, which specifies the message of the day, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16050 +#: guix-git/doc/guix.texi:16407 #, no-wrap msgid "{Data Type} login-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16052 +#: guix-git/doc/guix.texi:16409 msgid "This is the data type representing the configuration of login." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16055 +#: guix-git/doc/guix.texi:16412 #, no-wrap msgid "motd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16056 +#: guix-git/doc/guix.texi:16413 #, no-wrap msgid "message of the day" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16058 +#: guix-git/doc/guix.texi:16415 msgid "A file-like object containing the ``message of the day''." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16059 guix-git/doc/guix.texi:19280 +#: guix-git/doc/guix.texi:16416 guix-git/doc/guix.texi:19642 #, no-wrap msgid "@code{allow-empty-passwords?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16062 +#: guix-git/doc/guix.texi:16419 msgid "Allow empty passwords by default so that first-time users can log in when the 'root' account has just been created." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16066 +#: guix-git/doc/guix.texi:16423 #, no-wrap msgid "{Scheme Procedure} mingetty-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16070 +#: guix-git/doc/guix.texi:16427 msgid "Return a service to run mingetty according to @var{config}, a @code{} object, which specifies the tty to run, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16072 +#: guix-git/doc/guix.texi:16429 #, no-wrap msgid "{Data Type} mingetty-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16075 +#: guix-git/doc/guix.texi:16432 msgid "This is the data type representing the configuration of Mingetty, which provides the default implementation of virtual console log-in." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16078 guix-git/doc/guix.texi:16117 -#: guix-git/doc/guix.texi:33550 +#: guix-git/doc/guix.texi:16435 guix-git/doc/guix.texi:16474 +#: guix-git/doc/guix.texi:33987 #, no-wrap msgid "tty" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16080 +#: guix-git/doc/guix.texi:16437 msgid "The name of the console this Mingetty runs on---e.g., @code{\"tty1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16081 guix-git/doc/guix.texi:16146 -#: guix-git/doc/guix.texi:16305 +#: guix-git/doc/guix.texi:16438 guix-git/doc/guix.texi:16503 +#: guix-git/doc/guix.texi:16662 #, no-wrap msgid "@code{auto-login} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16085 +#: guix-git/doc/guix.texi:16442 msgid "When true, this field must be a string denoting the user name under which the system automatically logs in. When it is @code{#f}, a user name and password must be entered to log in." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16086 +#: guix-git/doc/guix.texi:16443 #, no-wrap msgid "@code{login-program} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16090 +#: guix-git/doc/guix.texi:16447 msgid "This must be either @code{#f}, in which case the default log-in program is used (@command{login} from the Shadow tool suite), or a gexp denoting the name of the log-in program." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16091 +#: guix-git/doc/guix.texi:16448 #, no-wrap msgid "@code{login-pause?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16094 +#: guix-git/doc/guix.texi:16451 msgid "When set to @code{#t} in conjunction with @var{auto-login}, the user will have to press a key before the log-in shell is launched." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16095 +#: guix-git/doc/guix.texi:16452 #, no-wrap msgid "@code{clear-on-logout?} (default: @code{#t})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:16097 +#: guix-git/doc/guix.texi:16454 msgid "When set to @code{#t}, the screen will be cleared after logout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16098 +#: guix-git/doc/guix.texi:16455 #, no-wrap msgid "@code{mingetty} (default: @var{mingetty})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16100 +#: guix-git/doc/guix.texi:16457 msgid "The Mingetty package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16104 +#: guix-git/doc/guix.texi:16461 #, no-wrap msgid "{Scheme Procedure} agetty-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16108 +#: guix-git/doc/guix.texi:16465 msgid "Return a service to run agetty according to @var{config}, an @code{} object, which specifies the tty to run, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16110 +#: guix-git/doc/guix.texi:16467 #, no-wrap msgid "{Data Type} agetty-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16114 +#: guix-git/doc/guix.texi:16471 msgid "This is the data type representing the configuration of agetty, which implements virtual and serial console log-in. See the @code{agetty(8)} man page for more information." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16121 +#: guix-git/doc/guix.texi:16478 msgid "The name of the console this agetty runs on, as a string---e.g., @code{\"ttyS0\"}. This argument is optional, it will default to a reasonable default serial port used by the kernel Linux." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16125 +#: guix-git/doc/guix.texi:16482 msgid "For this, if there is a value for an option @code{agetty.tty} in the kernel command line, agetty will extract the device name of the serial port from it and use that." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16129 +#: guix-git/doc/guix.texi:16486 msgid "If not and if there is a value for an option @code{console} with a tty in the Linux command line, agetty will extract the device name of the serial port from it and use that." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16133 +#: guix-git/doc/guix.texi:16490 msgid "In both cases, agetty will leave the other serial device settings (baud rate etc.)@: alone---in the hope that Linux pinned them to the correct values." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16134 guix-git/doc/guix.texi:33711 +#: guix-git/doc/guix.texi:16491 guix-git/doc/guix.texi:34148 #, no-wrap msgid "@code{baud-rate} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16137 +#: guix-git/doc/guix.texi:16494 msgid "A string containing a comma-separated list of one or more baud rates, in descending order." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16138 +#: guix-git/doc/guix.texi:16495 #, no-wrap msgid "@code{term} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16141 +#: guix-git/doc/guix.texi:16498 msgid "A string containing the value used for the @env{TERM} environment variable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16142 +#: guix-git/doc/guix.texi:16499 #, no-wrap msgid "@code{eight-bits?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16145 +#: guix-git/doc/guix.texi:16502 msgid "When @code{#t}, the tty is assumed to be 8-bit clean, and parity detection is disabled." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16149 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:16506 guix-git/doc/guix.texi:16665 msgid "When passed a login name, as a string, the specified user will be logged in automatically without prompting for their login name or password." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16150 +#: guix-git/doc/guix.texi:16507 #, no-wrap msgid "@code{no-reset?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16152 +#: guix-git/doc/guix.texi:16509 msgid "When @code{#t}, don't reset terminal cflags (control modes)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16153 +#: guix-git/doc/guix.texi:16510 #, no-wrap msgid "@code{host} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16156 +#: guix-git/doc/guix.texi:16513 msgid "This accepts a string containing the ``login_host'', which will be written into the @file{/var/run/utmpx} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16157 +#: guix-git/doc/guix.texi:16514 #, no-wrap msgid "@code{remote?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16161 +#: guix-git/doc/guix.texi:16518 msgid "When set to @code{#t} in conjunction with @var{host}, this will add an @code{-r} fakehost option to the command line of the login program specified in @var{login-program}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16162 +#: guix-git/doc/guix.texi:16519 #, no-wrap msgid "@code{flow-control?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16164 +#: guix-git/doc/guix.texi:16521 msgid "When set to @code{#t}, enable hardware (RTS/CTS) flow control." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16165 +#: guix-git/doc/guix.texi:16522 #, no-wrap msgid "@code{no-issue?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16168 +#: guix-git/doc/guix.texi:16525 msgid "When set to @code{#t}, the contents of the @file{/etc/issue} file will not be displayed before presenting the login prompt." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16169 +#: guix-git/doc/guix.texi:16526 #, no-wrap msgid "@code{init-string} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16172 +#: guix-git/doc/guix.texi:16529 msgid "This accepts a string that will be sent to the tty or modem before sending anything else. It can be used to initialize a modem." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16173 +#: guix-git/doc/guix.texi:16530 #, no-wrap msgid "@code{no-clear?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16176 +#: guix-git/doc/guix.texi:16533 msgid "When set to @code{#t}, agetty will not clear the screen before showing the login prompt." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16177 +#: guix-git/doc/guix.texi:16534 #, no-wrap msgid "@code{login-program} (default: (file-append shadow \"/bin/login\"))" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16181 +#: guix-git/doc/guix.texi:16538 msgid "This must be either a gexp denoting the name of a log-in program, or unset, in which case the default value is the @command{login} from the Shadow tool suite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16182 +#: guix-git/doc/guix.texi:16539 #, no-wrap msgid "@code{local-line} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16186 +#: guix-git/doc/guix.texi:16543 msgid "Control the CLOCAL line flag. This accepts one of three symbols as arguments, @code{'auto}, @code{'always}, or @code{'never}. If @code{#f}, the default value chosen by agetty is @code{'auto}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16187 +#: guix-git/doc/guix.texi:16544 #, no-wrap msgid "@code{extract-baud?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16190 +#: guix-git/doc/guix.texi:16547 msgid "When set to @code{#t}, instruct agetty to try to extract the baud rate from the status messages produced by certain types of modems." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16191 +#: guix-git/doc/guix.texi:16548 #, no-wrap msgid "@code{skip-login?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16195 +#: guix-git/doc/guix.texi:16552 msgid "When set to @code{#t}, do not prompt the user for a login name. This can be used with @var{login-program} field to use non-standard login systems." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16196 +#: guix-git/doc/guix.texi:16553 #, no-wrap msgid "@code{no-newline?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16199 +#: guix-git/doc/guix.texi:16556 msgid "When set to @code{#t}, do not print a newline before printing the @file{/etc/issue} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16201 +#: guix-git/doc/guix.texi:16558 #, no-wrap msgid "@code{login-options} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16206 +#: guix-git/doc/guix.texi:16563 msgid "This option accepts a string containing options that are passed to the login program. When used with the @var{login-program}, be aware that a malicious user could try to enter a login name containing embedded options that could be parsed by the login program." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16207 +#: guix-git/doc/guix.texi:16564 #, no-wrap msgid "@code{login-pause} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16211 +#: guix-git/doc/guix.texi:16568 msgid "When set to @code{#t}, wait for any key before showing the login prompt. This can be used in conjunction with @var{auto-login} to save memory by lazily spawning shells." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16212 +#: guix-git/doc/guix.texi:16569 #, no-wrap msgid "@code{chroot} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16215 +#: guix-git/doc/guix.texi:16572 msgid "Change root to the specified directory. This option accepts a directory path as a string." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16216 +#: guix-git/doc/guix.texi:16573 #, no-wrap msgid "@code{hangup?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16219 +#: guix-git/doc/guix.texi:16576 msgid "Use the Linux system call @code{vhangup} to do a virtual hangup of the specified terminal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16220 +#: guix-git/doc/guix.texi:16577 #, no-wrap msgid "@code{keep-baud?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16224 +#: guix-git/doc/guix.texi:16581 msgid "When set to @code{#t}, try to keep the existing baud rate. The baud rates from @var{baud-rate} are used when agetty receives a @key{BREAK} character." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16225 +#: guix-git/doc/guix.texi:16582 #, no-wrap msgid "@code{timeout} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16228 +#: guix-git/doc/guix.texi:16585 msgid "When set to an integer value, terminate if no user name could be read within @var{timeout} seconds." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16229 +#: guix-git/doc/guix.texi:16586 #, no-wrap msgid "@code{detect-case?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16235 +#: guix-git/doc/guix.texi:16592 msgid "When set to @code{#t}, turn on support for detecting an uppercase-only terminal. This setting will detect a login name containing only uppercase letters as indicating an uppercase-only terminal and turn on some upper-to-lower case conversions. Note that this will not support Unicode characters." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16236 +#: guix-git/doc/guix.texi:16593 #, no-wrap msgid "@code{wait-cr?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16241 +#: guix-git/doc/guix.texi:16598 msgid "When set to @code{#t}, wait for the user or modem to send a carriage-return or linefeed character before displaying @file{/etc/issue} or login prompt. This is typically used with the @var{init-string} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16242 +#: guix-git/doc/guix.texi:16599 #, no-wrap msgid "@code{no-hints?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16245 +#: guix-git/doc/guix.texi:16602 msgid "When set to @code{#t}, do not print hints about Num, Caps, and Scroll locks." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16246 +#: guix-git/doc/guix.texi:16603 #, no-wrap msgid "@code{no-hostname?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16249 +#: guix-git/doc/guix.texi:16606 msgid "By default, the hostname is printed. When this option is set to @code{#t}, no hostname will be shown at all." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16250 +#: guix-git/doc/guix.texi:16607 #, no-wrap msgid "@code{long-hostname?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16254 +#: guix-git/doc/guix.texi:16611 msgid "By default, the hostname is only printed until the first dot. When this option is set to @code{#t}, the fully qualified hostname by @code{gethostname} or @code{getaddrinfo} is shown." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16255 +#: guix-git/doc/guix.texi:16612 #, no-wrap msgid "@code{erase-characters} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16258 +#: guix-git/doc/guix.texi:16615 msgid "This option accepts a string of additional characters that should be interpreted as backspace when the user types their login name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16259 +#: guix-git/doc/guix.texi:16616 #, no-wrap msgid "@code{kill-characters} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16263 +#: guix-git/doc/guix.texi:16620 msgid "This option accepts a string that should be interpreted to mean ``ignore all previous characters'' (also called a ``kill'' character) when the user types their login name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16264 +#: guix-git/doc/guix.texi:16621 #, no-wrap msgid "@code{chdir} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16267 +#: guix-git/doc/guix.texi:16624 msgid "This option accepts, as a string, a directory path that will be changed to before login." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16268 +#: guix-git/doc/guix.texi:16625 #, no-wrap msgid "@code{delay} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16271 +#: guix-git/doc/guix.texi:16628 msgid "This options accepts, as an integer, the number of seconds to sleep before opening the tty and displaying the login prompt." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16272 +#: guix-git/doc/guix.texi:16629 #, no-wrap msgid "@code{nice} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16275 +#: guix-git/doc/guix.texi:16632 msgid "This option accepts, as an integer, the nice value with which to run the @command{login} program." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16276 guix-git/doc/guix.texi:16564 -#: guix-git/doc/guix.texi:17478 guix-git/doc/guix.texi:25181 -#: guix-git/doc/guix.texi:26658 guix-git/doc/guix.texi:29074 -#: guix-git/doc/guix.texi:29869 guix-git/doc/guix.texi:31622 -#: guix-git/doc/guix.texi:34051 +#: guix-git/doc/guix.texi:16633 guix-git/doc/guix.texi:16921 +#: guix-git/doc/guix.texi:17840 guix-git/doc/guix.texi:25543 +#: guix-git/doc/guix.texi:26995 guix-git/doc/guix.texi:29411 +#: guix-git/doc/guix.texi:30234 guix-git/doc/guix.texi:31987 +#: guix-git/doc/guix.texi:34488 #, no-wrap msgid "@code{extra-options} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16279 +#: guix-git/doc/guix.texi:16636 msgid "This option provides an ``escape hatch'' for the user to provide arbitrary command-line arguments to @command{agetty} as a list of strings." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16283 +#: guix-git/doc/guix.texi:16640 #, no-wrap msgid "{Scheme Procedure} kmscon-service-type @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16287 +#: guix-git/doc/guix.texi:16644 msgid "Return a service to run @uref{https://www.freedesktop.org/wiki/Software/kmscon,kmscon} according to @var{config}, a @code{} object, which specifies the tty to run, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16289 +#: guix-git/doc/guix.texi:16646 #, no-wrap msgid "{Data Type} kmscon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16292 +#: guix-git/doc/guix.texi:16649 msgid "This is the data type representing the configuration of Kmscon, which implements virtual console log-in." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16295 +#: guix-git/doc/guix.texi:16652 #, no-wrap msgid "virtual-terminal" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16297 +#: guix-git/doc/guix.texi:16654 msgid "The name of the console this Kmscon runs on---e.g., @code{\"tty1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16298 +#: guix-git/doc/guix.texi:16655 #, no-wrap msgid "@code{login-program} (default: @code{#~(string-append #$shadow \"/bin/login\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16301 +#: guix-git/doc/guix.texi:16658 msgid "A gexp denoting the name of the log-in program. The default log-in program is @command{login} from the Shadow tool suite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16302 +#: guix-git/doc/guix.texi:16659 #, no-wrap msgid "@code{login-arguments} (default: @code{'(\"-p\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16304 +#: guix-git/doc/guix.texi:16661 msgid "A list of arguments to pass to @command{login}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16309 +#: guix-git/doc/guix.texi:16666 #, no-wrap msgid "@code{hardware-acceleration?} (default: #f)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16311 +#: guix-git/doc/guix.texi:16668 msgid "Whether to use hardware acceleration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16312 +#: guix-git/doc/guix.texi:16669 #, no-wrap msgid "@code{font-engine} (default: @code{\"pango\"})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:16314 +#: guix-git/doc/guix.texi:16671 msgid "Font engine used in Kmscon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16315 +#: guix-git/doc/guix.texi:16672 #, no-wrap msgid "@code{font-size} (default: @code{12})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:16317 +#: guix-git/doc/guix.texi:16674 msgid "Font size used in Kmscon." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16321 +#: guix-git/doc/guix.texi:16678 msgid "If this is @code{#f}, Kmscon uses the default keyboard layout---usually US English (``qwerty'') for a 105-key PC keyboard." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16325 +#: guix-git/doc/guix.texi:16682 msgid "Otherwise this must be a @code{keyboard-layout} object specifying the keyboard layout. @xref{Keyboard Layout}, for more information on how to specify the keyboard layout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16326 +#: guix-git/doc/guix.texi:16683 #, no-wrap msgid "@code{kmscon} (default: @var{kmscon})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16328 +#: guix-git/doc/guix.texi:16685 msgid "The Kmscon package to use." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16332 +#: guix-git/doc/guix.texi:16689 #, no-wrap msgid "name service cache daemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16333 +#: guix-git/doc/guix.texi:16690 #, no-wrap msgid "nscd" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16334 +#: guix-git/doc/guix.texi:16691 #, no-wrap msgid "{Scheme Procedure} nscd-service [@var{config}] [#:glibc glibc] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16339 +#: guix-git/doc/guix.texi:16696 msgid "[#:name-services '()] Return a service that runs the libc name service cache daemon (nscd) with the given @var{config}---an @code{} object. @xref{Name Service Switch}, for an example." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16341 +#: guix-git/doc/guix.texi:16698 msgid "For convenience, the Shepherd service for nscd provides the following actions:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16343 +#: guix-git/doc/guix.texi:16700 #, no-wrap msgid "invalidate" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16344 +#: guix-git/doc/guix.texi:16701 #, no-wrap msgid "cache invalidation, nscd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16345 +#: guix-git/doc/guix.texi:16702 #, no-wrap msgid "nscd, cache invalidation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16347 +#: guix-git/doc/guix.texi:16704 msgid "This invalidate the given cache. For instance, running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16350 +#: guix-git/doc/guix.texi:16707 #, no-wrap msgid "herd invalidate nscd hosts\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16354 +#: guix-git/doc/guix.texi:16711 msgid "invalidates the host name lookup cache of nscd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16355 +#: guix-git/doc/guix.texi:16712 #, no-wrap msgid "statistics" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16358 +#: guix-git/doc/guix.texi:16715 msgid "Running @command{herd statistics nscd} displays information about nscd usage and caches." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16362 +#: guix-git/doc/guix.texi:16719 #, no-wrap msgid "{Scheme Variable} %nscd-default-configuration" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16366 +#: guix-git/doc/guix.texi:16723 msgid "This is the default @code{} value (see below) used by @code{nscd-service}. It uses the caches defined by @code{%nscd-default-caches}; see below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16368 +#: guix-git/doc/guix.texi:16725 #, no-wrap msgid "{Data Type} nscd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16371 +#: guix-git/doc/guix.texi:16728 msgid "This is the data type representing the name service cache daemon (nscd) configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16374 +#: guix-git/doc/guix.texi:16731 #, no-wrap msgid "@code{name-services} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16377 +#: guix-git/doc/guix.texi:16734 msgid "List of packages denoting @dfn{name services} that must be visible to the nscd---e.g., @code{(list @var{nss-mdns})}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16378 +#: guix-git/doc/guix.texi:16735 #, no-wrap msgid "@code{glibc} (default: @var{glibc})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16381 +#: guix-git/doc/guix.texi:16738 msgid "Package object denoting the GNU C Library providing the @command{nscd} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16382 +#: guix-git/doc/guix.texi:16739 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/nscd.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16385 +#: guix-git/doc/guix.texi:16742 msgid "Name of the nscd log file. This is where debugging output goes when @code{debug-level} is strictly positive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16386 +#: guix-git/doc/guix.texi:16743 #, no-wrap msgid "@code{debug-level} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16389 +#: guix-git/doc/guix.texi:16746 msgid "Integer denoting the debugging levels. Higher numbers mean that more debugging output is logged." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16390 +#: guix-git/doc/guix.texi:16747 #, no-wrap msgid "@code{caches} (default: @code{%nscd-default-caches})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:16393 +#: guix-git/doc/guix.texi:16750 msgid "List of @code{} objects denoting things to be cached; see below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16397 +#: guix-git/doc/guix.texi:16754 #, no-wrap msgid "{Data Type} nscd-cache" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16399 +#: guix-git/doc/guix.texi:16756 msgid "Data type representing a cache database of nscd and its parameters." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16402 guix-git/doc/guix.texi:21071 +#: guix-git/doc/guix.texi:16759 guix-git/doc/guix.texi:21433 #, no-wrap msgid "database" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16407 +#: guix-git/doc/guix.texi:16764 msgid "This is a symbol representing the name of the database to be cached. Valid values are @code{passwd}, @code{group}, @code{hosts}, and @code{services}, which designate the corresponding NSS database (@pxref{NSS Basics,,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16408 +#: guix-git/doc/guix.texi:16765 #, no-wrap msgid "positive-time-to-live" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:16409 +#: guix-git/doc/guix.texi:16766 #, no-wrap msgid "@code{negative-time-to-live} (default: @code{20})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16412 +#: guix-git/doc/guix.texi:16769 msgid "A number representing the number of seconds during which a positive or negative lookup result remains in cache." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16413 +#: guix-git/doc/guix.texi:16770 #, no-wrap msgid "@code{check-files?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16416 +#: guix-git/doc/guix.texi:16773 msgid "Whether to check for updates of the files corresponding to @var{database}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16420 +#: guix-git/doc/guix.texi:16777 msgid "For instance, when @var{database} is @code{hosts}, setting this flag instructs nscd to check for updates in @file{/etc/hosts} and to take them into account." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16421 +#: guix-git/doc/guix.texi:16778 #, no-wrap msgid "@code{persistent?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16423 +#: guix-git/doc/guix.texi:16780 msgid "Whether the cache should be stored persistently on disk." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16424 +#: guix-git/doc/guix.texi:16781 #, no-wrap msgid "@code{shared?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16426 +#: guix-git/doc/guix.texi:16783 msgid "Whether the cache should be shared among users." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16427 +#: guix-git/doc/guix.texi:16784 #, no-wrap msgid "@code{max-database-size} (default: 32@tie{}MiB)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16429 +#: guix-git/doc/guix.texi:16786 msgid "Maximum size in bytes of the database cache." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16436 +#: guix-git/doc/guix.texi:16793 #, no-wrap msgid "{Scheme Variable} %nscd-default-caches" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16439 +#: guix-git/doc/guix.texi:16796 msgid "List of @code{} objects used by default by @code{nscd-configuration} (see above)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16445 +#: guix-git/doc/guix.texi:16802 msgid "It enables persistent and aggressive caching of service and host name lookups. The latter provides better host name lookup performance, resilience in the face of unreliable name servers, and also better privacy---often the result of host name lookups is in local cache, so external name servers do not even need to be queried." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16448 +#: guix-git/doc/guix.texi:16805 msgid "syslog-configuration-type" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16448 guix-git/doc/guix.texi:16464 +#: guix-git/doc/guix.texi:16805 guix-git/doc/guix.texi:16821 #, no-wrap msgid "syslog" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16449 guix-git/doc/guix.texi:17035 +#: guix-git/doc/guix.texi:16806 guix-git/doc/guix.texi:17397 #, no-wrap msgid "logging" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16450 +#: guix-git/doc/guix.texi:16807 #, no-wrap msgid "{Data Type} syslog-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16452 +#: guix-git/doc/guix.texi:16809 msgid "This data type represents the configuration of the syslog daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16454 +#: guix-git/doc/guix.texi:16811 #, no-wrap msgid "@code{syslogd} (default: @code{#~(string-append #$inetutils \"/libexec/syslogd\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16456 +#: guix-git/doc/guix.texi:16813 msgid "The syslog daemon to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16457 +#: guix-git/doc/guix.texi:16814 #, no-wrap msgid "@code{config-file} (default: @code{%default-syslog.conf})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16459 +#: guix-git/doc/guix.texi:16816 msgid "The syslog configuration file to use." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16464 +#: guix-git/doc/guix.texi:16821 msgid "syslog-service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16465 +#: guix-git/doc/guix.texi:16822 #, no-wrap msgid "{Scheme Procedure} syslog-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16467 +#: guix-git/doc/guix.texi:16824 msgid "Return a service that runs a syslog daemon according to @var{config}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16470 +#: guix-git/doc/guix.texi:16827 msgid "@xref{syslogd invocation,,, inetutils, GNU Inetutils}, for more information on the configuration file syntax." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16472 +#: guix-git/doc/guix.texi:16829 #, no-wrap msgid "{Scheme Variable} guix-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16476 +#: guix-git/doc/guix.texi:16833 msgid "This is the type of the service that runs the build daemon, @command{guix-daemon} (@pxref{Invoking guix-daemon}). Its value must be a @code{guix-configuration} record as described below." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16479 +#: guix-git/doc/guix.texi:16836 msgid "guix-configuration-type" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16479 +#: guix-git/doc/guix.texi:16836 #, no-wrap msgid "{Data Type} guix-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16482 +#: guix-git/doc/guix.texi:16839 msgid "This data type represents the configuration of the Guix build daemon. @xref{Invoking guix-daemon}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16484 +#: guix-git/doc/guix.texi:16841 #, no-wrap msgid "@code{guix} (default: @var{guix})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16486 guix-git/doc/guix.texi:16763 +#: guix-git/doc/guix.texi:16843 guix-git/doc/guix.texi:17120 msgid "The Guix package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16487 +#: guix-git/doc/guix.texi:16844 #, no-wrap msgid "@code{build-group} (default: @code{\"guixbuild\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16489 +#: guix-git/doc/guix.texi:16846 msgid "Name of the group for build user accounts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16490 +#: guix-git/doc/guix.texi:16847 #, no-wrap msgid "@code{build-accounts} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16492 +#: guix-git/doc/guix.texi:16849 msgid "Number of build user accounts to create." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16493 +#: guix-git/doc/guix.texi:16850 #, no-wrap msgid "@code{authorize-key?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16500 +#: guix-git/doc/guix.texi:16857 msgid "Whether to authorize the substitute keys listed in @code{authorized-keys}---by default that of @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} (@pxref{Substitutes})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16506 +#: guix-git/doc/guix.texi:16863 msgid "When @code{authorize-key?} is true, @file{/etc/guix/acl} cannot be changed by invoking @command{guix archive --authorize}. You must instead adjust @code{guix-configuration} as you wish and reconfigure the system. This ensures that your operating system configuration file is self-contained." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:16513 +#: guix-git/doc/guix.texi:16870 msgid "When booting or reconfiguring to a system where @code{authorize-key?} is true, the existing @file{/etc/guix/acl} file is backed up as @file{/etc/guix/acl.bak} if it was determined to be a manually modified file. This is to facilitate migration from earlier versions, which allowed for in-place modifications to @file{/etc/guix/acl}." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:16515 +#: guix-git/doc/guix.texi:16872 #, no-wrap msgid "%default-authorized-guix-keys" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16516 +#: guix-git/doc/guix.texi:16873 #, no-wrap msgid "@code{authorized-keys} (default: @code{%default-authorized-guix-keys})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:16522 +#: guix-git/doc/guix.texi:16879 msgid "The list of authorized key files for archive imports, as a list of string-valued gexps (@pxref{Invoking guix archive}). By default, it contains that of @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} (@pxref{Substitutes}). See @code{substitute-urls} below for an example on how to change it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16523 +#: guix-git/doc/guix.texi:16880 #, no-wrap msgid "@code{use-substitutes?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16525 +#: guix-git/doc/guix.texi:16882 msgid "Whether to use substitutes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16526 guix-git/doc/guix.texi:29171 +#: guix-git/doc/guix.texi:16883 guix-git/doc/guix.texi:29508 #, no-wrap msgid "@code{substitute-urls} (default: @code{%default-substitute-urls})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:16528 guix-git/doc/guix.texi:29173 +#: guix-git/doc/guix.texi:16885 guix-git/doc/guix.texi:29510 msgid "The list of URLs where to look for substitutes by default." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16535 +#: guix-git/doc/guix.texi:16892 msgid "Suppose you would like to fetch substitutes from @code{guix.example.org} in addition to @code{@value{SUBSTITUTE-SERVER-1}}. You will need to do two things: (1) add @code{guix.example.org} to @code{substitute-urls}, and (2) authorize its signing key, having done appropriate checks (@pxref{Substitute Server Authorization}). The configuration below does exactly that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16544 +#: guix-git/doc/guix.texi:16901 #, no-wrap msgid "" "(guix-configuration\n" @@ -29853,150 +30572,151 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16549 +#: guix-git/doc/guix.texi:16906 msgid "This example assumes that the file @file{./guix.example.org-key.pub} contains the public key that @code{guix.example.org} uses to sign substitutes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16550 +#: guix-git/doc/guix.texi:16907 #, no-wrap msgid "@code{max-silent-time} (default: @code{0})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:16551 +#: guix-git/doc/guix.texi:16908 #, no-wrap msgid "@code{timeout} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16555 +#: guix-git/doc/guix.texi:16912 msgid "The number of seconds of silence and the number of seconds of activity, respectively, after which a build process times out. A value of zero disables the timeout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16556 -#, no-wrap -msgid "@code{log-compression} (default: @code{'bzip2})" -msgstr "" +#: guix-git/doc/guix.texi:16913 +#, fuzzy, no-wrap +#| msgid "@code{compression-level} (default: @code{3})" +msgid "@code{log-compression} (default: @code{'gzip})" +msgstr "@code{compression-level} (default: @code{3})" #. type: table -#: guix-git/doc/guix.texi:16559 +#: guix-git/doc/guix.texi:16916 msgid "The type of compression used for build logs---one of @code{gzip}, @code{bzip2}, or @code{none}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16560 +#: guix-git/doc/guix.texi:16917 #, no-wrap msgid "@code{discover?} (default: @code{#f})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:16566 +#: guix-git/doc/guix.texi:16923 msgid "List of extra command-line options for @command{guix-daemon}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16567 +#: guix-git/doc/guix.texi:16924 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/guix-daemon.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16570 +#: guix-git/doc/guix.texi:16927 msgid "File where @command{guix-daemon}'s standard output and standard error are written." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16571 +#: guix-git/doc/guix.texi:16928 #, no-wrap msgid "HTTP proxy, for @code{guix-daemon}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16572 +#: guix-git/doc/guix.texi:16929 #, no-wrap msgid "proxy, for @code{guix-daemon} HTTP access" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16573 +#: guix-git/doc/guix.texi:16930 #, no-wrap msgid "@code{http-proxy} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16576 +#: guix-git/doc/guix.texi:16933 msgid "The URL of the HTTP and HTTPS proxy used for downloading fixed-output derivations and substitutes." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16579 +#: guix-git/doc/guix.texi:16936 msgid "It is also possible to change the daemon's proxy at run time through the @code{set-http-proxy} action, which restarts it:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16582 +#: guix-git/doc/guix.texi:16939 #, no-wrap msgid "herd set-http-proxy guix-daemon http://localhost:8118\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16585 +#: guix-git/doc/guix.texi:16942 msgid "To clear the proxy settings, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16588 +#: guix-git/doc/guix.texi:16945 #, no-wrap msgid "herd set-http-proxy guix-daemon\n" msgstr "herd start ssh-daemon\n" #. type: item -#: guix-git/doc/guix.texi:16590 +#: guix-git/doc/guix.texi:16947 #, no-wrap msgid "@code{tmpdir} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16592 +#: guix-git/doc/guix.texi:16949 msgid "A directory path where the @command{guix-daemon} will perform builds." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16596 +#: guix-git/doc/guix.texi:16953 #, no-wrap msgid "{Scheme Procedure} udev-service [#:udev @var{eudev} #:rules @code{'()}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16602 +#: guix-git/doc/guix.texi:16959 msgid "Run @var{udev}, which populates the @file{/dev} directory dynamically. udev rules can be provided as a list of files through the @var{rules} variable. The procedures @code{udev-rule}, @code{udev-rules-service} and @code{file->udev-rule} from @code{(gnu services base)} simplify the creation of such rule files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16605 +#: guix-git/doc/guix.texi:16962 msgid "The @command{herd rules udev} command, as root, returns the name of the directory containing all the active udev rules." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16607 +#: guix-git/doc/guix.texi:16964 #, no-wrap msgid "{Scheme Procedure} udev-rule [@var{file-name} @var{contents}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16610 +#: guix-git/doc/guix.texi:16967 msgid "Return a udev-rule file named @var{file-name} containing the rules defined by the @var{contents} literal." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16614 +#: guix-git/doc/guix.texi:16971 msgid "In the following example, a rule for a USB device is defined to be stored in the file @file{90-usb-thing.rules}. The rule runs a script upon detecting a USB device with a given product identifier." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16622 +#: guix-git/doc/guix.texi:16979 #, no-wrap msgid "" "(define %example-udev-rule\n" @@ -30008,23 +30728,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16625 +#: guix-git/doc/guix.texi:16982 #, no-wrap msgid "{Scheme Procedure} udev-rules-service [@var{name} @var{rules}] @" msgstr "{Процедура Scheme} lookup-inferior-packages @var{inferior} @var{name} @" #. type: deffn -#: guix-git/doc/guix.texi:16632 +#: guix-git/doc/guix.texi:16989 msgid "[#:groups @var{groups}] Return a service that extends @code{udev-service-type } with @var{rules} and @code{account-service-type} with @var{groups} as system groups. This works by creating a singleton service type @code{@var{name}-udev-rules}, of which the returned service is an instance." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16635 +#: guix-git/doc/guix.texi:16992 msgid "Here we show how it can be used to extend @code{udev-service-type} with the previously defined rule @code{%example-udev-rule}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16642 +#: guix-git/doc/guix.texi:16999 #, no-wrap msgid "" "(operating-system\n" @@ -30035,23 +30755,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16645 +#: guix-git/doc/guix.texi:17002 #, no-wrap msgid "{Scheme Procedure} file->udev-rule [@var{file-name} @var{file}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16648 +#: guix-git/doc/guix.texi:17005 msgid "Return a udev file named @var{file-name} containing the rules defined within @var{file}, a file-like object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16650 +#: guix-git/doc/guix.texi:17007 msgid "The following example showcases how we can use an existing rule file." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16655 +#: guix-git/doc/guix.texi:17012 #, no-wrap msgid "" "(use-modules (guix download) ;for url-fetch\n" @@ -30061,7 +30781,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16666 +#: guix-git/doc/guix.texi:17023 #, no-wrap msgid "" "(define %android-udev-rules\n" @@ -30077,17 +30797,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16675 +#: guix-git/doc/guix.texi:17032 msgid "Additionally, Guix package definitions can be included in @var{rules} in order to extend the udev rules with the definitions found under their @file{lib/udev/rules.d} sub-directory. In lieu of the previous @var{file->udev-rule} example, we could have used the @var{android-udev-rules} package which exists in Guix in the @code{(gnu packages android)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16684 +#: guix-git/doc/guix.texi:17041 msgid "The following example shows how to use the @var{android-udev-rules} package so that the Android tool @command{adb} can detect devices without root privileges. It also details how to create the @code{adbusers} group, which is required for the proper functioning of the rules defined within the @code{android-udev-rules} package. To create such a group, we must define it both as part of the @code{supplementary-groups} of our @code{user-account} declaration, as well as in the @var{groups} of the @code{udev-rules-service} procedure." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16689 +#: guix-git/doc/guix.texi:17046 #, no-wrap msgid "" "(use-modules (gnu packages android) ;for android-udev-rules\n" @@ -30097,7 +30817,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16702 +#: guix-git/doc/guix.texi:17059 #, no-wrap msgid "" "(operating-system\n" @@ -30115,328 +30835,340 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16704 +#: guix-git/doc/guix.texi:17061 #, no-wrap msgid "{Scheme Variable} urandom-seed-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16709 +#: guix-git/doc/guix.texi:17066 msgid "Save some entropy in @code{%random-seed-file} to seed @file{/dev/urandom} when rebooting. It also tries to seed @file{/dev/urandom} from @file{/dev/hwrng} while booting, if @file{/dev/hwrng} exists and is readable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16711 +#: guix-git/doc/guix.texi:17068 #, no-wrap msgid "{Scheme Variable} %random-seed-file" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16715 +#: guix-git/doc/guix.texi:17072 msgid "This is the name of the file where some random bytes are saved by @var{urandom-seed-service} to seed @file{/dev/urandom} when rebooting. It defaults to @file{/var/lib/random-seed}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16717 +#: guix-git/doc/guix.texi:17074 #, no-wrap msgid "mouse" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16718 +#: guix-git/doc/guix.texi:17075 #, no-wrap msgid "gpm" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16719 +#: guix-git/doc/guix.texi:17076 #, no-wrap msgid "{Scheme Variable} gpm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16724 +#: guix-git/doc/guix.texi:17081 msgid "This is the type of the service that runs GPM, the @dfn{general-purpose mouse daemon}, which provides mouse support to the Linux console. GPM allows users to use the mouse in the console, notably to select, copy, and paste text." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16727 +#: guix-git/doc/guix.texi:17084 msgid "The value for services of this type must be a @code{gpm-configuration} (see below). This service is not part of @code{%base-services}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16729 +#: guix-git/doc/guix.texi:17086 #, no-wrap msgid "{Data Type} gpm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16731 +#: guix-git/doc/guix.texi:17088 msgid "Data type representing the configuration of GPM." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16733 +#: guix-git/doc/guix.texi:17090 #, no-wrap msgid "@code{options} (default: @code{%default-gpm-options})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16738 +#: guix-git/doc/guix.texi:17095 msgid "Command-line options passed to @command{gpm}. The default set of options instruct @command{gpm} to listen to mouse events on @file{/dev/input/mice}. @xref{Command Line,,, gpm, gpm manual}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16739 +#: guix-git/doc/guix.texi:17096 #, no-wrap msgid "@code{gpm} (default: @code{gpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16741 +#: guix-git/doc/guix.texi:17098 msgid "The GPM package to use." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16746 +#: guix-git/doc/guix.texi:17103 msgid "guix-publish-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16746 +#: guix-git/doc/guix.texi:17103 #, no-wrap msgid "{Scheme Variable} guix-publish-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16750 +#: guix-git/doc/guix.texi:17107 msgid "This is the service type for @command{guix publish} (@pxref{Invoking guix publish}). Its value must be a @code{guix-publish-configuration} object, as described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16754 +#: guix-git/doc/guix.texi:17111 msgid "This assumes that @file{/etc/guix} already contains a signing key pair as created by @command{guix archive --generate-key} (@pxref{Invoking guix archive}). If that is not the case, the service will fail to start." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16756 +#: guix-git/doc/guix.texi:17113 #, no-wrap msgid "{Data Type} guix-publish-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16759 +#: guix-git/doc/guix.texi:17116 msgid "Data type representing the configuration of the @code{guix publish} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16761 +#: guix-git/doc/guix.texi:17118 #, no-wrap msgid "@code{guix} (default: @code{guix})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16764 guix-git/doc/guix.texi:31477 +#: guix-git/doc/guix.texi:17121 guix-git/doc/guix.texi:31842 #, no-wrap msgid "@code{port} (default: @code{80})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16766 +#: guix-git/doc/guix.texi:17123 msgid "The TCP port to listen for connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16767 guix-git/doc/guix.texi:29054 -#: guix-git/doc/guix.texi:32858 +#: guix-git/doc/guix.texi:17124 guix-git/doc/guix.texi:29391 +#: guix-git/doc/guix.texi:33223 #, no-wrap msgid "@code{host} (default: @code{\"localhost\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16770 +#: guix-git/doc/guix.texi:17127 msgid "The host (and thus, network interface) to listen to. Use @code{\"0.0.0.0\"} to listen on all the network interfaces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16771 +#: guix-git/doc/guix.texi:17128 #, no-wrap msgid "@code{advertise?} (default: @code{#f})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:16774 +#: guix-git/doc/guix.texi:17131 msgid "When true, advertise the service on the local network @i{via} the DNS-SD protocol, using Avahi." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16778 +#: guix-git/doc/guix.texi:17135 msgid "This allows neighboring Guix devices with discovery on (see @code{guix-configuration} above) to discover this @command{guix publish} instance and to automatically download substitutes from it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16779 +#: guix-git/doc/guix.texi:17136 #, no-wrap msgid "@code{compression} (default: @code{'((\"gzip\" 3) (\"zstd\" 3))})" msgstr "@code{compression-level} (default: @code{3})" #. type: table -#: guix-git/doc/guix.texi:16783 +#: guix-git/doc/guix.texi:17140 msgid "This is a list of compression method/level tuple used when compressing substitutes. For example, to compress all substitutes with @emph{both} lzip at level 7 and gzip at level 9, write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16786 +#: guix-git/doc/guix.texi:17143 #, no-wrap msgid "'((\"lzip\" 7) (\"gzip\" 9))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16792 +#: guix-git/doc/guix.texi:17149 msgid "Level 9 achieves the best compression ratio at the expense of increased CPU usage, whereas level 1 achieves fast compression. @xref{Invoking guix publish}, for more information on the available compression methods and the tradeoffs involved." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16794 +#: guix-git/doc/guix.texi:17151 msgid "An empty list disables compression altogether." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16795 +#: guix-git/doc/guix.texi:17152 #, no-wrap msgid "@code{nar-path} (default: @code{\"nar\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16798 +#: guix-git/doc/guix.texi:17155 msgid "The URL path at which ``nars'' can be fetched. @xref{Invoking guix publish, @option{--nar-path}}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16799 +#: guix-git/doc/guix.texi:17156 #, no-wrap msgid "@code{cache} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16805 +#: guix-git/doc/guix.texi:17162 msgid "When it is @code{#f}, disable caching and instead generate archives on demand. Otherwise, this should be the name of a directory---e.g., @code{\"/var/cache/guix/publish\"}---where @command{guix publish} caches archives and meta-data ready to be sent. @xref{Invoking guix publish, @option{--cache}}, for more information on the tradeoffs involved." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16806 +#: guix-git/doc/guix.texi:17163 #, no-wrap msgid "@code{workers} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16810 +#: guix-git/doc/guix.texi:17167 msgid "When it is an integer, this is the number of worker threads used for caching; when @code{#f}, the number of processors is used. @xref{Invoking guix publish, @option{--workers}}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16811 +#: guix-git/doc/guix.texi:17168 #, no-wrap msgid "@code{cache-bypass-threshold} (default: 10 MiB)" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:16816 +#: guix-git/doc/guix.texi:17173 msgid "When @code{cache} is true, this is the maximum size in bytes of a store item for which @command{guix publish} may bypass its cache in case of a cache miss. @xref{Invoking guix publish, @option{--cache-bypass-threshold}}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16817 +#: guix-git/doc/guix.texi:17174 #, no-wrap msgid "@code{ttl} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16821 +#: guix-git/doc/guix.texi:17178 msgid "When it is an integer, this denotes the @dfn{time-to-live} in seconds of the published archives. @xref{Invoking guix publish, @option{--ttl}}, for more information." msgstr "" +#. type: item +#: guix-git/doc/guix.texi:17179 +#, fuzzy, no-wrap +#| msgid "@code{email} (default: @code{#f})" +msgid "@code{negative-ttl} (default: @code{#f})" +msgstr "@code{speed} (default: @code{1.0})" + +#. type: table +#: guix-git/doc/guix.texi:17183 +msgid "When it is an integer, this denotes the @dfn{time-to-live} in seconds for the negative lookups. @xref{Invoking guix publish, @option{--negative-ttl}}, for more information." +msgstr "" + #. type: anchor{#1} -#: guix-git/doc/guix.texi:16825 +#: guix-git/doc/guix.texi:17187 msgid "rngd-service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16825 +#: guix-git/doc/guix.texi:17187 #, no-wrap msgid "{Scheme Procedure} rngd-service [#:rng-tools @var{rng-tools}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16830 +#: guix-git/doc/guix.texi:17192 msgid "[#:device \"/dev/hwrng\"] Return a service that runs the @command{rngd} program from @var{rng-tools} to add @var{device} to the kernel's entropy pool. The service will fail if @var{device} does not exist." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16833 +#: guix-git/doc/guix.texi:17195 msgid "pam-limits-service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16833 +#: guix-git/doc/guix.texi:17195 #, no-wrap msgid "session limits" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16834 +#: guix-git/doc/guix.texi:17196 #, no-wrap msgid "ulimit" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16835 +#: guix-git/doc/guix.texi:17197 #, no-wrap msgid "priority" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16836 +#: guix-git/doc/guix.texi:17198 #, no-wrap msgid "realtime" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16837 +#: guix-git/doc/guix.texi:17199 #, no-wrap msgid "jackd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16838 +#: guix-git/doc/guix.texi:17200 #, no-wrap msgid "nofile" msgstr "профиль" #. type: cindex -#: guix-git/doc/guix.texi:16839 +#: guix-git/doc/guix.texi:17201 #, no-wrap msgid "open file descriptors" msgstr "Краткие обзоры и описания" #. type: deffn -#: guix-git/doc/guix.texi:16840 +#: guix-git/doc/guix.texi:17202 #, no-wrap msgid "{Scheme Procedure} pam-limits-service [#:limits @code{'()}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16847 +#: guix-git/doc/guix.texi:17209 msgid "Return a service that installs a configuration file for the @uref{http://linux-pam.org/Linux-PAM-html/sag-pam_limits.html, @code{pam_limits} module}. The procedure optionally takes a list of @code{pam-limits-entry} values, which can be used to specify @code{ulimit} limits and @code{nice} priority limits to user sessions." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16850 +#: guix-git/doc/guix.texi:17212 msgid "The following limits definition sets two hard and soft limits for all login sessions of users in the @code{realtime} group:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16856 +#: guix-git/doc/guix.texi:17218 #, no-wrap msgid "" "(pam-limits-service\n" @@ -30446,17 +31178,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16862 +#: guix-git/doc/guix.texi:17224 msgid "The first entry increases the maximum realtime priority for non-privileged processes; the second entry lifts any restriction of the maximum address space that can be locked in memory. These settings are commonly used for real-time audio systems." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16865 +#: guix-git/doc/guix.texi:17227 msgid "Another useful example is raising the maximum number of open file descriptors that can be used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16870 +#: guix-git/doc/guix.texi:17232 #, no-wrap msgid "" "(pam-limits-service\n" @@ -30465,40 +31197,40 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16878 +#: guix-git/doc/guix.texi:17240 msgid "In the above example, the asterisk means the limit should apply to any user. It is important to ensure the chosen value doesn't exceed the maximum system value visible in the @file{/proc/sys/fs/file-max} file, else the users would be prevented from login in. For more information about the Pluggable Authentication Module (PAM) limits, refer to the @samp{pam_limits} man page from the @code{linux-pam} package." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16883 guix-git/doc/guix.texi:37407 +#: guix-git/doc/guix.texi:17245 guix-git/doc/guix.texi:37897 #, no-wrap msgid "cron" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16884 guix-git/doc/guix.texi:37408 +#: guix-git/doc/guix.texi:17246 guix-git/doc/guix.texi:37898 #, no-wrap msgid "mcron" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16885 guix-git/doc/guix.texi:37409 +#: guix-git/doc/guix.texi:17247 guix-git/doc/guix.texi:37899 #, no-wrap msgid "scheduling jobs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16892 +#: guix-git/doc/guix.texi:17254 msgid "The @code{(gnu services mcron)} module provides an interface to GNU@tie{}mcron, a daemon to run jobs at scheduled times (@pxref{Top,,, mcron, GNU@tie{}mcron}). GNU@tie{}mcron is similar to the traditional Unix @command{cron} daemon; the main difference is that it is implemented in Guile Scheme, which provides a lot of flexibility when specifying the scheduling of jobs and their actions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16900 +#: guix-git/doc/guix.texi:17262 msgid "The example below defines an operating system that runs the @command{updatedb} (@pxref{Invoking updatedb,,, find, Finding Files}) and the @command{guix gc} commands (@pxref{Invoking guix gc}) daily, as well as the @command{mkid} command on behalf of an unprivileged user (@pxref{mkid invocation,,, idutils, ID Database Utilities}). It uses gexps to introduce job definitions that are passed to mcron (@pxref{G-Expressions})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16904 +#: guix-git/doc/guix.texi:17266 #, no-wrap msgid "" "(use-modules (guix) (gnu) (gnu services mcron))\n" @@ -30507,7 +31239,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16914 +#: guix-git/doc/guix.texi:17276 #, no-wrap msgid "" "(define updatedb-job\n" @@ -30523,7 +31255,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16920 +#: guix-git/doc/guix.texi:17282 #, no-wrap msgid "" "(define garbage-collector-job\n" @@ -30535,7 +31267,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16927 +#: guix-git/doc/guix.texi:17289 #, no-wrap msgid "" "(define idutils-job\n" @@ -30548,7 +31280,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16930 +#: guix-git/doc/guix.texi:17292 #, no-wrap msgid "" "(operating-system\n" @@ -30557,7 +31289,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16940 +#: guix-git/doc/guix.texi:17302 #, no-wrap msgid "" " ;; %BASE-SERVICES already includes an instance of\n" @@ -30572,24 +31304,24 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:16942 +#: guix-git/doc/guix.texi:17304 #, fuzzy, no-wrap #| msgid "Top" msgid "Tip" msgstr "Top" #. type: quotation -#: guix-git/doc/guix.texi:16948 +#: guix-git/doc/guix.texi:17310 msgid "When providing the action of a job specification as a procedure, you should provide an explicit name for the job via the optional 3rd argument as done in the @code{updatedb-job} example above. Otherwise, the job would appear as ``Lambda function'' in the output of @command{herd schedule mcron}, which is not nearly descriptive enough!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16955 +#: guix-git/doc/guix.texi:17317 msgid "For more complex jobs defined in Scheme where you need control over the top level, for instance to introduce a @code{use-modules} form, you can move your code to a separate program using the @code{program-file} procedure of the @code{(guix gexp)} module (@pxref{G-Expressions}). The example below illustrates that." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16971 +#: guix-git/doc/guix.texi:17333 #, no-wrap msgid "" "(define %battery-alert-job\n" @@ -30610,7 +31342,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16973 +#: guix-git/doc/guix.texi:17335 #, no-wrap msgid "" " (define %min-level 20)\n" @@ -30618,7 +31350,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16984 +#: guix-git/doc/guix.texi:17346 #, no-wrap msgid "" " (setenv \"LC_ALL\" \"C\") ;ensure English output\n" @@ -30634,106 +31366,106 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16989 +#: guix-git/doc/guix.texi:17351 msgid "@xref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron}, for more information on mcron job specifications. Below is the reference of the mcron service." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16992 +#: guix-git/doc/guix.texi:17354 msgid "On a running system, you can use the @code{schedule} action of the service to visualize the mcron jobs that will be executed next:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16995 +#: guix-git/doc/guix.texi:17357 #, no-wrap msgid "# herd schedule mcron\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17000 +#: guix-git/doc/guix.texi:17362 msgid "The example above lists the next five tasks that will be executed, but you can also specify the number of tasks to display:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:17003 +#: guix-git/doc/guix.texi:17365 #, no-wrap msgid "# herd schedule mcron 10\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17005 +#: guix-git/doc/guix.texi:17367 #, no-wrap msgid "{Scheme Variable} mcron-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17008 +#: guix-git/doc/guix.texi:17370 msgid "This is the type of the @code{mcron} service, whose value is an @code{mcron-configuration} object." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17013 guix-git/doc/guix.texi:37428 +#: guix-git/doc/guix.texi:17375 guix-git/doc/guix.texi:37918 msgid "This service type can be the target of a service extension that provides additional job specifications (@pxref{Service Composition}). In other words, it is possible to define services that provide additional mcron jobs to run." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17015 +#: guix-git/doc/guix.texi:17377 #, no-wrap msgid "{Data Type} mcron-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17017 guix-git/doc/guix.texi:37432 +#: guix-git/doc/guix.texi:17379 guix-git/doc/guix.texi:37922 msgid "Data type representing the configuration of mcron." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17019 guix-git/doc/guix.texi:37434 +#: guix-git/doc/guix.texi:17381 guix-git/doc/guix.texi:37924 #, no-wrap msgid "@code{mcron} (default: @var{mcron})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17021 guix-git/doc/guix.texi:37436 +#: guix-git/doc/guix.texi:17383 guix-git/doc/guix.texi:37926 msgid "The mcron package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17022 guix-git/doc/guix.texi:17091 -#: guix-git/doc/guix.texi:37437 +#: guix-git/doc/guix.texi:17384 guix-git/doc/guix.texi:17453 +#: guix-git/doc/guix.texi:37927 #, no-wrap msgid "jobs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17026 guix-git/doc/guix.texi:37441 +#: guix-git/doc/guix.texi:17388 guix-git/doc/guix.texi:37931 msgid "This is a list of gexps (@pxref{G-Expressions}), where each gexp corresponds to an mcron job specification (@pxref{Syntax, mcron job specifications,, mcron, GNU@tie{}mcron})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17033 +#: guix-git/doc/guix.texi:17395 #, no-wrap msgid "rottlog" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17034 +#: guix-git/doc/guix.texi:17396 #, no-wrap msgid "log rotation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17041 +#: guix-git/doc/guix.texi:17403 msgid "Log files such as those found in @file{/var/log} tend to grow endlessly, so it's a good idea to @dfn{rotate} them once in a while---i.e., archive their contents in separate files, possibly compressed. The @code{(gnu services admin)} module provides an interface to GNU@tie{}Rot[t]log, a log rotation tool (@pxref{Top,,, rottlog, GNU Rot[t]log Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17047 +#: guix-git/doc/guix.texi:17409 msgid "This service is part of @code{%base-services}, and thus enabled by default, with the default settings, for commonly encountered log files. The example below shows how to extend it with an additional @dfn{rotation}, should you need to do that (usually, services that produce log files already take care of that):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17051 +#: guix-git/doc/guix.texi:17413 #, no-wrap msgid "" "(use-modules (guix) (gnu))\n" @@ -30742,7 +31474,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17055 +#: guix-git/doc/guix.texi:17417 #, no-wrap msgid "" "(define my-log-files\n" @@ -30752,7 +31484,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17064 +#: guix-git/doc/guix.texi:17426 #, no-wrap msgid "" "(operating-system\n" @@ -30766,93 +31498,93 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17066 +#: guix-git/doc/guix.texi:17428 #, no-wrap msgid "{Scheme Variable} rottlog-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17069 +#: guix-git/doc/guix.texi:17431 msgid "This is the type of the Rottlog service, whose value is a @code{rottlog-configuration} object." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17072 +#: guix-git/doc/guix.texi:17434 msgid "Other services can extend this one with new @code{log-rotation} objects (see below), thereby augmenting the set of files to be rotated." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17075 +#: guix-git/doc/guix.texi:17437 msgid "This service type can define mcron jobs (@pxref{Scheduled Job Execution}) to run the rottlog service." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17077 +#: guix-git/doc/guix.texi:17439 #, no-wrap msgid "{Data Type} rottlog-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17079 +#: guix-git/doc/guix.texi:17441 msgid "Data type representing the configuration of rottlog." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17081 +#: guix-git/doc/guix.texi:17443 #, no-wrap msgid "@code{rottlog} (default: @code{rottlog})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17083 +#: guix-git/doc/guix.texi:17445 msgid "The Rottlog package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17084 +#: guix-git/doc/guix.texi:17446 #, no-wrap msgid "@code{rc-file} (default: @code{(file-append rottlog \"/etc/rc\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17087 +#: guix-git/doc/guix.texi:17449 msgid "The Rottlog configuration file to use (@pxref{Mandatory RC Variables,,, rottlog, GNU Rot[t]log Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17088 +#: guix-git/doc/guix.texi:17450 #, no-wrap msgid "@code{rotations} (default: @code{%default-rotations})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17090 +#: guix-git/doc/guix.texi:17452 msgid "A list of @code{log-rotation} objects as defined below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17094 +#: guix-git/doc/guix.texi:17456 msgid "This is a list of gexps where each gexp corresponds to an mcron job specification (@pxref{Scheduled Job Execution})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17097 +#: guix-git/doc/guix.texi:17459 #, no-wrap msgid "{Data Type} log-rotation" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17099 +#: guix-git/doc/guix.texi:17461 msgid "Data type representing the rotation of a group of log files." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17103 +#: guix-git/doc/guix.texi:17465 msgid "Taking an example from the Rottlog manual (@pxref{Period Related File Examples,,, rottlog, GNU Rot[t]log Manual}), a log rotation might be defined like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17112 +#: guix-git/doc/guix.texi:17474 #, no-wrap msgid "" "(log-rotation\n" @@ -30865,121 +31597,115 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17115 +#: guix-git/doc/guix.texi:17477 msgid "The list of fields is as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17117 +#: guix-git/doc/guix.texi:17479 #, no-wrap msgid "@code{frequency} (default: @code{'weekly})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17119 +#: guix-git/doc/guix.texi:17481 msgid "The log rotation frequency, a symbol." msgstr "" -#. type: code{#1} -#: guix-git/doc/guix.texi:17120 -#, no-wrap -msgid "files" -msgstr "" - #. type: table -#: guix-git/doc/guix.texi:17122 +#: guix-git/doc/guix.texi:17484 msgid "The list of files or file glob patterns to rotate." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17123 +#: guix-git/doc/guix.texi:17485 #, no-wrap msgid "@code{options} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17126 +#: guix-git/doc/guix.texi:17488 msgid "The list of rottlog options for this rotation (@pxref{Configuration parameters,,, rottlog, GNU Rot[t]lg Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17127 +#: guix-git/doc/guix.texi:17489 #, no-wrap msgid "@code{post-rotate} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17129 +#: guix-git/doc/guix.texi:17491 msgid "Either @code{#f} or a gexp to execute once the rotation has completed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17132 +#: guix-git/doc/guix.texi:17494 #, no-wrap msgid "{Scheme Variable} %default-rotations" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17135 +#: guix-git/doc/guix.texi:17497 msgid "Specifies weekly rotation of @code{%rotated-files} and of @file{/var/log/guix-daemon.log}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17137 +#: guix-git/doc/guix.texi:17499 #, no-wrap msgid "{Scheme Variable} %rotated-files" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17141 +#: guix-git/doc/guix.texi:17503 msgid "The list of syslog-controlled files to be rotated. By default it is: @code{'(\"/var/log/messages\" \"/var/log/secure\" \"/var/log/debug\" \\ \"/var/log/maillog\")}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17154 +#: guix-git/doc/guix.texi:17516 msgid "The @code{(gnu services networking)} module provides services to configure network interfaces and set up networking on your machine. Those services provide different ways for you to set up your machine: by declaring a static network configuration, by running a Dynamic Host Configuration Protocol (DHCP) client, or by running daemons such as NetworkManager and Connman that automate the whole process, automatically adapt to connectivity changes, and provide a high-level user interface." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17160 +#: guix-git/doc/guix.texi:17522 msgid "On a laptop, NetworkManager and Connman are by far the most convenient options, which is why the default desktop services include NetworkManager (@pxref{Desktop Services, @code{%desktop-services}}). For a server, or for a virtual machine or a container, static network configuration or a simple DHCP client are often more appropriate." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17163 +#: guix-git/doc/guix.texi:17525 msgid "This section describes the various network setup services available, starting with static network configuration." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17164 +#: guix-git/doc/guix.texi:17526 #, no-wrap msgid "{Scheme Variable} static-networking-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17169 +#: guix-git/doc/guix.texi:17531 msgid "This is the type for statically-configured network interfaces. Its value must be a list of @code{static-networking} records. Each of them declares a set of @dfn{addresses}, @dfn{routes}, and @dfn{links}, as show below." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17170 +#: guix-git/doc/guix.texi:17532 #, no-wrap msgid "network interface controller (NIC)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17171 +#: guix-git/doc/guix.texi:17533 #, no-wrap msgid "NIC, networking interface controller" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17174 +#: guix-git/doc/guix.texi:17536 msgid "Here is the simplest configuration, with only one network interface controller (NIC) and only IPv4 connectivity:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17188 +#: guix-git/doc/guix.texi:17550 #, no-wrap msgid "" ";; Static networking for one NIC, IPv4-only.\n" @@ -30997,31 +31723,31 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17197 +#: guix-git/doc/guix.texi:17559 msgid "The snippet above can be added to the @code{services} field of your operating system configuration (@pxref{Using the Configuration System}). It will configure your machine to have 10.0.2.15 as its IP address, with a 24-bit netmask for the local network---meaning that any 10.0.2.@var{x} address is on the local area network (LAN). Traffic to addresses outside the local network is routed @i{via} 10.0.2.2. Host names are resolved by sending domain name system (DNS) queries to 10.0.2.3." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17199 +#: guix-git/doc/guix.texi:17561 #, fuzzy, no-wrap #| msgid "{Data Type} ganeti-os-variant" msgid "{Data Type} static-networking" msgstr "{Тип данных} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:17201 +#: guix-git/doc/guix.texi:17563 #, fuzzy #| msgid "This is the data type representing the SDDM service configuration." msgid "This is the data type representing a static network configuration." msgstr "Управление конфигурацией операционной системы." #. type: deftp -#: guix-git/doc/guix.texi:17205 +#: guix-git/doc/guix.texi:17567 msgid "As an example, here is how you would declare the configuration of a machine with a single network interface controller (NIC) available as @code{eno1}, and with one IPv4 and one IPv6 address:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17222 +#: guix-git/doc/guix.texi:17584 #, no-wrap msgid "" ";; Network configuration for one NIC, IPv4 + IPv6.\n" @@ -31042,12 +31768,12 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17228 +#: guix-git/doc/guix.texi:17590 msgid "If you are familiar with the @command{ip} command of the @uref{https://wiki.linuxfoundation.org/networking/iproute2, @code{iproute2} package} found on Linux-based systems, the declaration above is equivalent to typing:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:17234 +#: guix-git/doc/guix.texi:17596 #, no-wrap msgid "" "ip address add 10.0.2.15/24 dev eno1\n" @@ -31057,376 +31783,376 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17239 +#: guix-git/doc/guix.texi:17601 msgid "Run @command{man 8 ip} for more info. Venerable GNU/Linux users will certainly know how to do it with @command{ifconfig} and @command{route}, but we'll spare you that." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17241 +#: guix-git/doc/guix.texi:17603 #, fuzzy #| msgid "The available options are listed below." msgid "The available fields of this data type are as follows:" msgstr "Доступные опции резюмированы ниже." #. type: code{#1} -#: guix-git/doc/guix.texi:17243 +#: guix-git/doc/guix.texi:17605 #, fuzzy, no-wrap #| msgid "ip address\n" msgid "addresses" msgstr "ip address\n" #. type: itemx -#: guix-git/doc/guix.texi:17244 +#: guix-git/doc/guix.texi:17606 #, fuzzy, no-wrap #| msgid "@code{listen} (default: @code{'()})" msgid "@code{links} (default: @code{'()})" msgstr "@code{inputs} (default: @code{'()})" #. type: itemx -#: guix-git/doc/guix.texi:17245 +#: guix-git/doc/guix.texi:17607 #, fuzzy, no-wrap #| msgid "@code{roles} (default: @code{'()})" msgid "@code{routes} (default: @code{'()})" msgstr "@code{modules} (по умолчанию: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17248 +#: guix-git/doc/guix.texi:17610 msgid "The list of @code{network-address}, @code{network-link}, and @code{network-route} records for this network (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17249 +#: guix-git/doc/guix.texi:17611 #, fuzzy, no-wrap #| msgid "@code{server} (default: @code{'()})" msgid "@code{name-servers} (default: @code{'()})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17252 +#: guix-git/doc/guix.texi:17614 msgid "The list of IP addresses (strings) of domain name servers. These IP addresses go to @file{/etc/resolv.conf}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17253 +#: guix-git/doc/guix.texi:17615 #, fuzzy, no-wrap #| msgid "@code{permissions} (default: @code{'(createdb login)})" msgid "@code{provision} (default: @code{'(networking)})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17256 +#: guix-git/doc/guix.texi:17618 msgid "If true, this should be a list of symbols for the Shepherd service corresponding to this network configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17257 +#: guix-git/doc/guix.texi:17619 #, fuzzy, no-wrap #| msgid "@code{requirement} (default: @code{'()})" msgid "@code{requirement} (default @code{'()})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17259 +#: guix-git/doc/guix.texi:17621 msgid "The list of Shepherd services depended on." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17262 +#: guix-git/doc/guix.texi:17624 #, fuzzy, no-wrap #| msgid "{Data Type} ganeti-os" msgid "{Data Type} network-address" msgstr "{Тип данных} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:17265 +#: guix-git/doc/guix.texi:17627 #, fuzzy #| msgid "This is the data type representing the SDDM service configuration." msgid "This is the data type representing the IP address of a network interface." msgstr "Управление конфигурацией операционной системы." #. type: table -#: guix-git/doc/guix.texi:17270 +#: guix-git/doc/guix.texi:17632 msgid "The name of the network interface for this address---e.g., @code{\"eno1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17271 +#: guix-git/doc/guix.texi:17633 #, no-wrap msgid "value" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17275 +#: guix-git/doc/guix.texi:17637 msgid "The actual IP address and network mask, in @uref{https://en.wikipedia.org/wiki/CIDR#CIDR_notation, @acronym{CIDR, Classless Inter-Domain Routing} notation}, as a string." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17279 +#: guix-git/doc/guix.texi:17641 msgid "For example, @code{\"10.0.2.15/24\"} denotes IPv4 address 10.0.2.15 on a 24-bit sub-network---all 10.0.2.@var{x} addresses are on the same local network." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17280 +#: guix-git/doc/guix.texi:17642 #, no-wrap msgid "ipv6?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17283 +#: guix-git/doc/guix.texi:17645 msgid "Whether @code{value} denotes an IPv6 address. By default this is automatically determined." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17286 +#: guix-git/doc/guix.texi:17648 #, fuzzy, no-wrap #| msgid "{Data Type} ganeti-os" msgid "{Data Type} network-route" msgstr "{Тип данных} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:17288 +#: guix-git/doc/guix.texi:17650 #, fuzzy #| msgid "This is the data type representing a package recipe." msgid "This is the data type representing a network route." msgstr "Это тип данных, представляющий рецепт пакета." #. type: code{#1} -#: guix-git/doc/guix.texi:17290 +#: guix-git/doc/guix.texi:17652 #, fuzzy, no-wrap #| msgid "derivation" msgid "destination" msgstr "деривация" #. type: table -#: guix-git/doc/guix.texi:17293 +#: guix-git/doc/guix.texi:17655 msgid "The route destination (a string), either an IP address or @code{\"default\"} to denote the default route." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17294 +#: guix-git/doc/guix.texi:17656 #, fuzzy, no-wrap msgid "@code{source} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:17296 +#: guix-git/doc/guix.texi:17658 #, fuzzy #| msgid "The rottlog service." msgid "The route source." msgstr "Сервис rottlog." #. type: item -#: guix-git/doc/guix.texi:17297 guix-git/doc/guix.texi:34761 +#: guix-git/doc/guix.texi:17659 guix-git/doc/guix.texi:35200 #, no-wrap msgid "@code{device} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17299 +#: guix-git/doc/guix.texi:17661 msgid "The device used for this route---e.g., @code{\"eno2\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17300 +#: guix-git/doc/guix.texi:17662 #, fuzzy, no-wrap #| msgid "@code{log-ip?} (default: @code{#t})" msgid "@code{ipv6?} (default: auto)" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:17303 +#: guix-git/doc/guix.texi:17665 msgid "Whether this is an IPv6 route. By default this is automatically determined based on @code{destination} or @code{gateway}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17304 +#: guix-git/doc/guix.texi:17666 #, fuzzy, no-wrap #| msgid "@code{email} (default: @code{#f})" msgid "@code{gateway} (default: @code{#f})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:17306 +#: guix-git/doc/guix.texi:17668 msgid "IP address (a string) through which traffic is routed." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17309 +#: guix-git/doc/guix.texi:17671 #, fuzzy, no-wrap #| msgid "{Data Type} origin" msgid "{Data Type} network-link" msgstr "{Тип данных} origin" #. type: deftp -#: guix-git/doc/guix.texi:17312 +#: guix-git/doc/guix.texi:17674 msgid "Data type for a network link (@pxref{Link,,, guile-netlink, Guile-Netlink Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17316 +#: guix-git/doc/guix.texi:17678 msgid "The name of the link---e.g., @code{\"v0p0\"}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17319 +#: guix-git/doc/guix.texi:17681 msgid "A symbol denoting the type of the link---e.g., @code{'veth}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17320 +#: guix-git/doc/guix.texi:17682 #, no-wrap msgid "arguments" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17322 +#: guix-git/doc/guix.texi:17684 msgid "List of arguments for this type of link." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17325 +#: guix-git/doc/guix.texi:17687 #, no-wrap msgid "loopback device" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17326 +#: guix-git/doc/guix.texi:17688 #, fuzzy, no-wrap #| msgid "{Scheme Variable} %default-sysctl-settings" msgid "{Scheme Variable} %loopback-static-networking" msgstr "{Scheme Variable} ant-build-system" #. type: defvr -#: guix-git/doc/guix.texi:17330 +#: guix-git/doc/guix.texi:17692 msgid "This is the @code{static-networking} record representing the ``loopback device'', @code{lo}, for IP addresses 127.0.0.1 and ::1, and providing the @code{loopback} Shepherd service." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17332 +#: guix-git/doc/guix.texi:17694 #, no-wrap msgid "networking, with QEMU" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17333 +#: guix-git/doc/guix.texi:17695 #, fuzzy, no-wrap #| msgid "Networking" msgid "QEMU, networking" msgstr "Сеть" #. type: defvr -#: guix-git/doc/guix.texi:17334 +#: guix-git/doc/guix.texi:17696 #, fuzzy, no-wrap #| msgid "{Scheme Variable} %default-sysctl-settings" msgid "{Scheme Variable} %qemu-static-networking" msgstr "{Scheme Variable} ant-build-system" #. type: defvr -#: guix-git/doc/guix.texi:17338 +#: guix-git/doc/guix.texi:17700 msgid "This is the @code{static-networking} record representing network setup when using QEMU's user-mode network stack on @code{eth0} (@pxref{Using the user mode network stack,,, QEMU, QEMU Documentation})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17340 +#: guix-git/doc/guix.texi:17702 #, no-wrap msgid "DHCP, networking service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17341 +#: guix-git/doc/guix.texi:17703 #, no-wrap msgid "{Scheme Variable} dhcp-client-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17345 +#: guix-git/doc/guix.texi:17707 msgid "This is the type of services that run @var{dhcp}, a Dynamic Host Configuration Protocol (DHCP) client, on all the non-loopback network interfaces. Its value is the DHCP client package to use, @code{isc-dhcp} by default." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17347 +#: guix-git/doc/guix.texi:17709 #, no-wrap msgid "NetworkManager" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17349 +#: guix-git/doc/guix.texi:17711 #, no-wrap msgid "{Scheme Variable} network-manager-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17354 +#: guix-git/doc/guix.texi:17716 msgid "This is the service type for the @uref{https://wiki.gnome.org/Projects/NetworkManager, NetworkManager} service. The value for this service type is a @code{network-manager-configuration} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17357 guix-git/doc/guix.texi:17509 -#: guix-git/doc/guix.texi:17538 +#: guix-git/doc/guix.texi:17719 guix-git/doc/guix.texi:17871 +#: guix-git/doc/guix.texi:17900 msgid "This service is part of @code{%desktop-services} (@pxref{Desktop Services})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17359 +#: guix-git/doc/guix.texi:17721 #, no-wrap msgid "{Data Type} network-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17361 +#: guix-git/doc/guix.texi:17723 msgid "Data type representing the configuration of NetworkManager." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17363 +#: guix-git/doc/guix.texi:17725 #, no-wrap msgid "@code{network-manager} (default: @code{network-manager})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17365 +#: guix-git/doc/guix.texi:17727 msgid "The NetworkManager package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17366 +#: guix-git/doc/guix.texi:17728 #, no-wrap msgid "@code{dns} (default: @code{\"default\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17369 +#: guix-git/doc/guix.texi:17731 msgid "Processing mode for DNS, which affects how NetworkManager uses the @code{resolv.conf} configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17374 +#: guix-git/doc/guix.texi:17736 msgid "NetworkManager will update @code{resolv.conf} to reflect the nameservers provided by currently active connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17375 +#: guix-git/doc/guix.texi:17737 #, no-wrap msgid "dnsmasq" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17379 +#: guix-git/doc/guix.texi:17741 msgid "NetworkManager will run @code{dnsmasq} as a local caching nameserver, using a @dfn{conditional forwarding} configuration if you are connected to a VPN, and then update @code{resolv.conf} to point to the local nameserver." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17385 +#: guix-git/doc/guix.texi:17747 msgid "With this setting, you can share your network connection. For example when you want to share your network connection to another laptop @i{via} an Ethernet cable, you can open @command{nm-connection-editor} and configure the Wired connection's method for IPv4 and IPv6 to be ``Shared to other computers'' and reestablish the connection (or reboot)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17392 +#: guix-git/doc/guix.texi:17754 msgid "You can also set up a @dfn{host-to-guest connection} to QEMU VMs (@pxref{Installing Guix in a VM}). With a host-to-guest connection, you can e.g.@: access a Web server running on the VM (@pxref{Web Services}) from a Web browser on your host system, or connect to the VM @i{via} SSH (@pxref{Networking Services, @code{openssh-service-type}}). To set up a host-to-guest connection, run this command once:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:17399 +#: guix-git/doc/guix.texi:17761 #, no-wrap msgid "" "nmcli connection add type tun \\\n" @@ -31437,50 +32163,50 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17404 +#: guix-git/doc/guix.texi:17766 msgid "Then each time you launch your QEMU VM (@pxref{Running Guix in a VM}), pass @option{-nic tap,ifname=tap0,script=no,downscript=no} to @command{qemu-system-...}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17407 +#: guix-git/doc/guix.texi:17769 msgid "NetworkManager will not modify @code{resolv.conf}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17409 +#: guix-git/doc/guix.texi:17771 #, no-wrap msgid "@code{vpn-plugins} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17413 +#: guix-git/doc/guix.texi:17775 msgid "This is the list of available plugins for virtual private networks (VPNs). An example of this is the @code{network-manager-openvpn} package, which allows NetworkManager to manage VPNs @i{via} OpenVPN." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17417 +#: guix-git/doc/guix.texi:17779 #, no-wrap msgid "Connman" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17418 +#: guix-git/doc/guix.texi:17780 #, no-wrap msgid "{Scheme Variable} connman-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17421 +#: guix-git/doc/guix.texi:17783 msgid "This is the service type to run @url{https://01.org/connman,Connman}, a network connection manager." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17424 +#: guix-git/doc/guix.texi:17786 msgid "Its value must be an @code{connman-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17429 +#: guix-git/doc/guix.texi:17791 #, no-wrap msgid "" "(service connman-service-type\n" @@ -31489,311 +32215,311 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17432 +#: guix-git/doc/guix.texi:17794 msgid "See below for details about @code{connman-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17434 +#: guix-git/doc/guix.texi:17796 #, no-wrap msgid "{Data Type} connman-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17436 +#: guix-git/doc/guix.texi:17798 msgid "Data Type representing the configuration of connman." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17438 +#: guix-git/doc/guix.texi:17800 #, no-wrap msgid "@code{connman} (default: @var{connman})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17440 +#: guix-git/doc/guix.texi:17802 msgid "The connman package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17441 +#: guix-git/doc/guix.texi:17803 #, no-wrap msgid "@code{disable-vpn?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17443 +#: guix-git/doc/guix.texi:17805 msgid "When true, disable connman's vpn plugin." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17446 +#: guix-git/doc/guix.texi:17808 #, no-wrap msgid "WPA Supplicant" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17447 +#: guix-git/doc/guix.texi:17809 #, no-wrap msgid "{Scheme Variable} wpa-supplicant-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17451 +#: guix-git/doc/guix.texi:17813 msgid "This is the service type to run @url{https://w1.fi/wpa_supplicant/,WPA supplicant}, an authentication daemon required to authenticate against encrypted WiFi or ethernet networks." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17453 +#: guix-git/doc/guix.texi:17815 #, no-wrap msgid "{Data Type} wpa-supplicant-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17455 +#: guix-git/doc/guix.texi:17817 msgid "Data type representing the configuration of WPA Supplicant." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17457 guix-git/doc/guix.texi:32945 +#: guix-git/doc/guix.texi:17819 guix-git/doc/guix.texi:33310 msgid "It takes the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17459 +#: guix-git/doc/guix.texi:17821 #, no-wrap msgid "@code{wpa-supplicant} (default: @code{wpa-supplicant})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17461 +#: guix-git/doc/guix.texi:17823 msgid "The WPA Supplicant package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17462 +#: guix-git/doc/guix.texi:17824 #, no-wrap msgid "@code{requirement} (default: @code{'(user-processes loopback syslogd)}" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17464 +#: guix-git/doc/guix.texi:17826 msgid "List of services that should be started before WPA Supplicant starts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17465 +#: guix-git/doc/guix.texi:17827 #, no-wrap msgid "@code{dbus?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17467 +#: guix-git/doc/guix.texi:17829 msgid "Whether to listen for requests on D-Bus." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17468 +#: guix-git/doc/guix.texi:17830 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/wpa_supplicant.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17470 +#: guix-git/doc/guix.texi:17832 msgid "Where to store the PID file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17471 guix-git/doc/guix.texi:31246 -#: guix-git/doc/guix.texi:31388 +#: guix-git/doc/guix.texi:17833 guix-git/doc/guix.texi:31611 +#: guix-git/doc/guix.texi:31753 #, no-wrap msgid "@code{interface} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17474 +#: guix-git/doc/guix.texi:17836 msgid "If this is set, it must specify the name of a network interface that WPA supplicant will control." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17475 guix-git/doc/guix.texi:17591 -#: guix-git/doc/guix.texi:22879 +#: guix-git/doc/guix.texi:17837 guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:23241 #, no-wrap msgid "@code{config-file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17477 +#: guix-git/doc/guix.texi:17839 msgid "Optional configuration file to use." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17480 +#: guix-git/doc/guix.texi:17842 msgid "List of additional command-line arguments to pass to the daemon." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17483 +#: guix-git/doc/guix.texi:17845 #, no-wrap msgid "wicd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17486 +#: guix-git/doc/guix.texi:17848 #, no-wrap msgid "network management" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17487 +#: guix-git/doc/guix.texi:17849 #, no-wrap msgid "{Scheme Procedure} wicd-service [#:wicd @var{wicd}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17490 +#: guix-git/doc/guix.texi:17852 msgid "Return a service that runs @url{https://launchpad.net/wicd,Wicd}, a network management daemon that aims to simplify wired and wireless networking." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17495 +#: guix-git/doc/guix.texi:17857 msgid "This service adds the @var{wicd} package to the global profile, providing several commands to interact with the daemon and configure networking: @command{wicd-client}, a graphical user interface, and the @command{wicd-cli} and @command{wicd-curses} user interfaces." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17497 +#: guix-git/doc/guix.texi:17859 #, no-wrap msgid "ModemManager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17500 +#: guix-git/doc/guix.texi:17862 msgid "Some networking devices such as modems require special care, and this is what the services below focus on." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17501 +#: guix-git/doc/guix.texi:17863 #, no-wrap msgid "{Scheme Variable} modem-manager-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17506 +#: guix-git/doc/guix.texi:17868 msgid "This is the service type for the @uref{https://wiki.gnome.org/Projects/ModemManager, ModemManager} service. The value for this service type is a @code{modem-manager-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17511 +#: guix-git/doc/guix.texi:17873 #, no-wrap msgid "{Data Type} modem-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17513 +#: guix-git/doc/guix.texi:17875 msgid "Data type representing the configuration of ModemManager." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17515 +#: guix-git/doc/guix.texi:17877 #, no-wrap msgid "@code{modem-manager} (default: @code{modem-manager})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17517 +#: guix-git/doc/guix.texi:17879 msgid "The ModemManager package to use." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17521 +#: guix-git/doc/guix.texi:17883 #, no-wrap msgid "USB_ModeSwitch" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17522 +#: guix-git/doc/guix.texi:17884 #, no-wrap msgid "Modeswitching" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17524 +#: guix-git/doc/guix.texi:17886 #, no-wrap msgid "{Scheme Variable} usb-modeswitch-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17529 +#: guix-git/doc/guix.texi:17891 msgid "This is the service type for the @uref{https://www.draisberghof.de/usb_modeswitch/, USB_ModeSwitch} service. The value for this service type is a @code{usb-modeswitch-configuration} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17535 +#: guix-git/doc/guix.texi:17897 msgid "When plugged in, some USB modems (and other USB devices) initially present themselves as a read-only storage medium and not as a modem. They need to be @dfn{modeswitched} before they are usable. The USB_ModeSwitch service type installs udev rules to automatically modeswitch these devices when they are plugged in." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17540 +#: guix-git/doc/guix.texi:17902 #, no-wrap msgid "{Data Type} usb-modeswitch-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17542 +#: guix-git/doc/guix.texi:17904 msgid "Data type representing the configuration of USB_ModeSwitch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17544 +#: guix-git/doc/guix.texi:17906 #, no-wrap msgid "@code{usb-modeswitch} (default: @code{usb-modeswitch})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:17546 +#: guix-git/doc/guix.texi:17908 msgid "The USB_ModeSwitch package providing the binaries for modeswitching." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17547 +#: guix-git/doc/guix.texi:17909 #, no-wrap msgid "@code{usb-modeswitch-data} (default: @code{usb-modeswitch-data})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:17550 +#: guix-git/doc/guix.texi:17912 msgid "The package providing the device data and udev rules file used by USB_ModeSwitch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17551 +#: guix-git/doc/guix.texi:17913 #, no-wrap msgid "@code{config-file} (default: @code{#~(string-append #$usb-modeswitch:dispatcher \"/etc/usb_modeswitch.conf\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17556 +#: guix-git/doc/guix.texi:17918 msgid "Which config file to use for the USB_ModeSwitch dispatcher. By default the config file shipped with USB_ModeSwitch is used which disables logging to @file{/var/log} among other default settings. If set to @code{#f}, no config file is used." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17570 +#: guix-git/doc/guix.texi:17932 msgid "The @code{(gnu services networking)} module discussed in the previous section provides services for more advanced setups: providing a DHCP service for others to use, filtering packets with iptables or nftables, running a WiFi access point with @command{hostapd}, running the @command{inetd} ``superdaemon'', and more. This section describes those." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17571 +#: guix-git/doc/guix.texi:17933 #, no-wrap msgid "{Scheme Procedure} dhcpd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17575 +#: guix-git/doc/guix.texi:17937 msgid "This type defines a service that runs a DHCP daemon. To create a service of this type, you must supply a @code{}. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17581 +#: guix-git/doc/guix.texi:17943 #, no-wrap msgid "" "(service dhcpd-service-type\n" @@ -31803,96 +32529,96 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17584 +#: guix-git/doc/guix.texi:17946 #, no-wrap msgid "{Data Type} dhcpd-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17586 +#: guix-git/doc/guix.texi:17948 #, no-wrap msgid "@code{package} (default: @code{isc-dhcp})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17591 +#: guix-git/doc/guix.texi:17953 msgid "The package that provides the DHCP daemon. This package is expected to provide the daemon at @file{sbin/dhcpd} relative to its output directory. The default package is the @uref{https://www.isc.org/products/DHCP, ISC's DHCP server}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17596 +#: guix-git/doc/guix.texi:17958 msgid "The configuration file to use. This is required. It will be passed to @code{dhcpd} via its @code{-cf} option. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). See @code{man dhcpd.conf} for details on the configuration file syntax." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17596 +#: guix-git/doc/guix.texi:17958 #, no-wrap msgid "@code{version} (default: @code{\"4\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17601 +#: guix-git/doc/guix.texi:17963 msgid "The DHCP version to use. The ISC DHCP server supports the values ``4'', ``6'', and ``4o6''. These correspond to the @code{dhcpd} program options @code{-4}, @code{-6}, and @code{-4o6}. See @code{man dhcpd} for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17601 +#: guix-git/doc/guix.texi:17963 #, no-wrap msgid "@code{run-directory} (default: @code{\"/run/dhcpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17604 +#: guix-git/doc/guix.texi:17966 msgid "The run directory to use. At service activation time, this directory will be created if it does not exist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17604 +#: guix-git/doc/guix.texi:17966 #, no-wrap msgid "@code{pid-file} (default: @code{\"/run/dhcpd/dhcpd.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17607 +#: guix-git/doc/guix.texi:17969 msgid "The PID file to use. This corresponds to the @code{-pf} option of @code{dhcpd}. See @code{man dhcpd} for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17607 +#: guix-git/doc/guix.texi:17969 #, no-wrap msgid "@code{interfaces} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17613 +#: guix-git/doc/guix.texi:17975 msgid "The names of the network interfaces on which dhcpd should listen for broadcasts. If this list is not empty, then its elements (which must be strings) will be appended to the @code{dhcpd} invocation when starting the daemon. It may not be necessary to explicitly specify any interfaces here; see @code{man dhcpd} for details." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17616 +#: guix-git/doc/guix.texi:17978 #, no-wrap msgid "hostapd service, for Wi-Fi access points" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17617 +#: guix-git/doc/guix.texi:17979 #, no-wrap msgid "Wi-Fi access points, hostapd service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17618 +#: guix-git/doc/guix.texi:17980 #, no-wrap msgid "{Scheme Variable} hostapd-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17623 +#: guix-git/doc/guix.texi:17985 msgid "This is the service type to run the @uref{https://w1.fi/hostapd/, hostapd} daemon to set up WiFi (IEEE 802.11) access points and authentication servers. Its associated value must be a @code{hostapd-configuration} as shown below:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17631 +#: guix-git/doc/guix.texi:17993 #, no-wrap msgid "" ";; Use wlan1 to run the access point for \"My Network\".\n" @@ -31904,129 +32630,129 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17634 +#: guix-git/doc/guix.texi:17996 #, no-wrap msgid "{Data Type} hostapd-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:17637 +#: guix-git/doc/guix.texi:17999 msgid "This data type represents the configuration of the hostapd service, with the following fields:" msgstr "Этот тип данных представляет машины для сборки, на которые демон может разгружать сборки. Важные поля:" #. type: item -#: guix-git/doc/guix.texi:17639 +#: guix-git/doc/guix.texi:18001 #, no-wrap msgid "@code{package} (default: @code{hostapd})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:17641 +#: guix-git/doc/guix.texi:18003 msgid "The hostapd package to use." msgstr "Используемый пакет hostapd." #. type: item -#: guix-git/doc/guix.texi:17642 +#: guix-git/doc/guix.texi:18004 #, no-wrap msgid "@code{interface} (default: @code{\"wlan0\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:17644 +#: guix-git/doc/guix.texi:18006 msgid "The network interface to run the WiFi access point." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17645 +#: guix-git/doc/guix.texi:18007 #, no-wrap msgid "ssid" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17648 +#: guix-git/doc/guix.texi:18010 msgid "The SSID (@dfn{service set identifier}), a string that identifies this network." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17649 +#: guix-git/doc/guix.texi:18011 #, no-wrap msgid "@code{broadcast-ssid?} (default: @code{#t})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:17651 +#: guix-git/doc/guix.texi:18013 msgid "Whether to broadcast this SSID." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17652 +#: guix-git/doc/guix.texi:18014 #, no-wrap msgid "@code{channel} (default: @code{1})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:17654 +#: guix-git/doc/guix.texi:18016 msgid "The WiFi channel to use." msgstr "Используемый канал Wi-Fi." #. type: item -#: guix-git/doc/guix.texi:17655 +#: guix-git/doc/guix.texi:18017 #, no-wrap msgid "@code{driver} (default: @code{\"nl80211\"})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:17659 +#: guix-git/doc/guix.texi:18021 msgid "The driver interface type. @code{\"nl80211\"} is used with all Linux mac80211 drivers. Use @code{\"none\"} if building hostapd as a standalone RADIUS server that does # not control any wireless/wired driver." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17660 guix-git/doc/guix.texi:23728 -#: guix-git/doc/guix.texi:26807 +#: guix-git/doc/guix.texi:18022 guix-git/doc/guix.texi:24090 +#: guix-git/doc/guix.texi:27144 #, no-wrap msgid "@code{extra-settings} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17664 +#: guix-git/doc/guix.texi:18026 msgid "Extra settings to append as-is to the hostapd configuration file. See @uref{https://w1.fi/cgit/hostap/plain/hostapd/hostapd.conf} for the configuration file reference." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17667 +#: guix-git/doc/guix.texi:18029 #, no-wrap msgid "{Scheme Variable} simulated-wifi-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17674 +#: guix-git/doc/guix.texi:18036 msgid "This is the type of a service to simulate WiFi networking, which can be useful in virtual machines for testing purposes. The service loads the Linux kernel @uref{https://www.kernel.org/doc/html/latest/networking/mac80211_hwsim/mac80211_hwsim.html, @code{mac80211_hwsim} module} and starts hostapd to create a pseudo WiFi network that can be seen on @code{wlan0}, by default." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17676 +#: guix-git/doc/guix.texi:18038 msgid "The service's value is a @code{hostapd-configuration} record." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17679 +#: guix-git/doc/guix.texi:18041 #, no-wrap msgid "iptables" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17680 +#: guix-git/doc/guix.texi:18042 #, no-wrap msgid "{Scheme Variable} iptables-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17686 +#: guix-git/doc/guix.texi:18048 msgid "This is the service type to set up an iptables configuration. iptables is a packet filtering framework supported by the Linux kernel. This service supports configuring iptables for both IPv4 and IPv6. A simple example configuration rejecting all incoming connections except those to the ssh port 22 is shown below." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17708 +#: guix-git/doc/guix.texi:18070 #, no-wrap msgid "" "(service iptables-service-type\n" @@ -32052,241 +32778,241 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17711 +#: guix-git/doc/guix.texi:18073 #, no-wrap msgid "{Data Type} iptables-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17713 +#: guix-git/doc/guix.texi:18075 msgid "The data type representing the configuration of iptables." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17715 +#: guix-git/doc/guix.texi:18077 #, no-wrap msgid "@code{iptables} (default: @code{iptables})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17718 +#: guix-git/doc/guix.texi:18080 msgid "The iptables package that provides @code{iptables-restore} and @code{ip6tables-restore}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17718 +#: guix-git/doc/guix.texi:18080 #, no-wrap msgid "@code{ipv4-rules} (default: @code{%iptables-accept-all-rules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17722 +#: guix-git/doc/guix.texi:18084 msgid "The iptables rules to use. It will be passed to @code{iptables-restore}. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17722 +#: guix-git/doc/guix.texi:18084 #, no-wrap msgid "@code{ipv6-rules} (default: @code{%iptables-accept-all-rules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17726 +#: guix-git/doc/guix.texi:18088 msgid "The ip6tables rules to use. It will be passed to @code{ip6tables-restore}. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17729 +#: guix-git/doc/guix.texi:18091 #, no-wrap msgid "nftables" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17730 +#: guix-git/doc/guix.texi:18092 #, no-wrap msgid "{Scheme Variable} nftables-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17738 +#: guix-git/doc/guix.texi:18100 msgid "This is the service type to set up a nftables configuration. nftables is a netfilter project that aims to replace the existing iptables, ip6tables, arptables and ebtables framework. It provides a new packet filtering framework, a new user-space utility @command{nft}, and a compatibility layer for iptables. This service comes with a default ruleset @code{%default-nftables-ruleset} that rejecting all incoming connections except those to the ssh port 22. To use it, simply write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17741 +#: guix-git/doc/guix.texi:18103 #, no-wrap msgid "(service nftables-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17744 +#: guix-git/doc/guix.texi:18106 #, no-wrap msgid "{Data Type} nftables-configuration" msgstr "{Тип данных} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:17746 +#: guix-git/doc/guix.texi:18108 msgid "The data type representing the configuration of nftables." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:17748 +#: guix-git/doc/guix.texi:18110 #, no-wrap msgid "@code{package} (default: @code{nftables})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:17750 +#: guix-git/doc/guix.texi:18112 msgid "The nftables package that provides @command{nft}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17750 +#: guix-git/doc/guix.texi:18112 #, no-wrap msgid "@code{ruleset} (default: @code{%default-nftables-ruleset})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17753 +#: guix-git/doc/guix.texi:18115 msgid "The nftables ruleset to use. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17756 +#: guix-git/doc/guix.texi:18118 #, no-wrap msgid "NTP (Network Time Protocol), service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17757 +#: guix-git/doc/guix.texi:18119 #, no-wrap msgid "ntpd, service for the Network Time Protocol daemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17758 +#: guix-git/doc/guix.texi:18120 #, no-wrap msgid "real time clock" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17759 +#: guix-git/doc/guix.texi:18121 #, no-wrap msgid "{Scheme Variable} ntp-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17763 +#: guix-git/doc/guix.texi:18125 msgid "This is the type of the service running the @uref{https://www.ntp.org, Network Time Protocol (NTP)} daemon, @command{ntpd}. The daemon will keep the system clock synchronized with that of the specified NTP servers." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17766 +#: guix-git/doc/guix.texi:18128 msgid "The value of this service is an @code{ntpd-configuration} object, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17768 +#: guix-git/doc/guix.texi:18130 #, no-wrap msgid "{Data Type} ntp-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17770 +#: guix-git/doc/guix.texi:18132 msgid "This is the data type for the NTP service configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17772 +#: guix-git/doc/guix.texi:18134 #, no-wrap msgid "@code{servers} (default: @code{%ntp-servers})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17776 +#: guix-git/doc/guix.texi:18138 msgid "This is the list of servers (@code{} records) with which @command{ntpd} will be synchronized. See the @code{ntp-server} data type definition below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17777 +#: guix-git/doc/guix.texi:18139 #, no-wrap msgid "@code{allow-large-adjustment?} (default: @code{#t})" msgstr "@code{parallel-builds} (default: @code{1})" #. type: table -#: guix-git/doc/guix.texi:17780 +#: guix-git/doc/guix.texi:18142 msgid "This determines whether @command{ntpd} is allowed to make an initial adjustment of more than 1,000 seconds." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17781 +#: guix-git/doc/guix.texi:18143 #, no-wrap msgid "@code{ntp} (default: @code{ntp})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17783 +#: guix-git/doc/guix.texi:18145 msgid "The NTP package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17786 +#: guix-git/doc/guix.texi:18148 #, no-wrap msgid "{Scheme Variable} %ntp-servers" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17789 +#: guix-git/doc/guix.texi:18151 msgid "List of host names used as the default NTP servers. These are servers of the @uref{https://www.ntppool.org/en/, NTP Pool Project}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17791 +#: guix-git/doc/guix.texi:18153 #, no-wrap msgid "{Data Type} ntp-server" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17793 +#: guix-git/doc/guix.texi:18155 msgid "The data type representing the configuration of a NTP server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17795 +#: guix-git/doc/guix.texi:18157 #, no-wrap msgid "@code{type} (default: @code{'server})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:17798 +#: guix-git/doc/guix.texi:18160 msgid "The type of the NTP server, given as a symbol. One of @code{'pool}, @code{'server}, @code{'peer}, @code{'broadcast} or @code{'manycastclient}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17799 +#: guix-git/doc/guix.texi:18161 #, no-wrap msgid "address" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17801 +#: guix-git/doc/guix.texi:18163 msgid "The address of the server, as a string." msgstr "Порядок следования устройств имеет значение." #. type: code{#1} -#: guix-git/doc/guix.texi:17802 guix-git/doc/guix.texi:33774 -#: guix-git/doc/guix.texi:33794 +#: guix-git/doc/guix.texi:18164 guix-git/doc/guix.texi:34211 +#: guix-git/doc/guix.texi:34231 #, no-wrap msgid "options" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17807 +#: guix-git/doc/guix.texi:18169 msgid "NTPD options to use with that specific server, given as a list of option names and/or of option names and values tuples. The following example define a server to use with the options @option{iburst} and @option{prefer}, as well as @option{version} 3 and a @option{maxpoll} time of 16 seconds." msgstr "" #. type: example -#: guix-git/doc/guix.texi:17813 +#: guix-git/doc/guix.texi:18175 #, no-wrap msgid "" "(ntp-server\n" @@ -32296,24 +33022,24 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17817 +#: guix-git/doc/guix.texi:18179 #, no-wrap msgid "OpenNTPD" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17818 +#: guix-git/doc/guix.texi:18180 #, no-wrap msgid "{Scheme Procedure} openntpd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17822 +#: guix-git/doc/guix.texi:18184 msgid "Run the @command{ntpd}, the Network Time Protocol (NTP) daemon, as implemented by @uref{http://www.openntpd.org, OpenNTPD}. The daemon will keep the system clock synchronized with that of the given servers." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17831 +#: guix-git/doc/guix.texi:18193 #, no-wrap msgid "" "(service\n" @@ -32327,134 +33053,134 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17835 +#: guix-git/doc/guix.texi:18197 #, no-wrap msgid "{Scheme Variable} %openntpd-servers" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17838 +#: guix-git/doc/guix.texi:18200 msgid "This variable is a list of the server addresses defined in @code{%ntp-servers}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17840 +#: guix-git/doc/guix.texi:18202 #, no-wrap msgid "{Data Type} openntpd-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17842 +#: guix-git/doc/guix.texi:18204 #, no-wrap msgid "@code{openntpd} (default: @code{(file-append openntpd \"/sbin/ntpd\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17844 +#: guix-git/doc/guix.texi:18206 msgid "The openntpd executable to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17844 +#: guix-git/doc/guix.texi:18206 #, no-wrap msgid "@code{listen-on} (default: @code{'(\"127.0.0.1\" \"::1\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17846 +#: guix-git/doc/guix.texi:18208 msgid "A list of local IP addresses or hostnames the ntpd daemon should listen on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17846 +#: guix-git/doc/guix.texi:18208 #, no-wrap msgid "@code{query-from} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17848 +#: guix-git/doc/guix.texi:18210 msgid "A list of local IP address the ntpd daemon should use for outgoing queries." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17848 +#: guix-git/doc/guix.texi:18210 #, no-wrap msgid "@code{sensor} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17853 +#: guix-git/doc/guix.texi:18215 msgid "Specify a list of timedelta sensor devices ntpd should use. @code{ntpd} will listen to each sensor that actually exists and ignore non-existent ones. See @uref{https://man.openbsd.org/ntpd.conf, upstream documentation} for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17853 +#: guix-git/doc/guix.texi:18215 #, no-wrap msgid "@code{server} (default: @code{'()})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17855 +#: guix-git/doc/guix.texi:18217 msgid "Specify a list of IP addresses or hostnames of NTP servers to synchronize to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17855 +#: guix-git/doc/guix.texi:18217 #, no-wrap msgid "@code{servers} (default: @code{%openntp-servers})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:17857 +#: guix-git/doc/guix.texi:18219 msgid "Specify a list of IP addresses or hostnames of NTP pools to synchronize to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17857 +#: guix-git/doc/guix.texi:18219 #, no-wrap msgid "@code{constraint-from} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17864 +#: guix-git/doc/guix.texi:18226 msgid "@code{ntpd} can be configured to query the ‘Date’ from trusted HTTPS servers via TLS. This time information is not used for precision but acts as an authenticated constraint, thereby reducing the impact of unauthenticated NTP man-in-the-middle attacks. Specify a list of URLs, IP addresses or hostnames of HTTPS servers to provide a constraint." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17864 +#: guix-git/doc/guix.texi:18226 #, no-wrap msgid "@code{constraints-from} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17868 +#: guix-git/doc/guix.texi:18230 msgid "As with constraint from, specify a list of URLs, IP addresses or hostnames of HTTPS servers to provide a constraint. Should the hostname resolve to multiple IP addresses, @code{ntpd} will calculate a median constraint from all of them." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17871 +#: guix-git/doc/guix.texi:18233 #, no-wrap msgid "inetd" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17872 +#: guix-git/doc/guix.texi:18234 #, no-wrap msgid "{Scheme variable} inetd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17877 +#: guix-git/doc/guix.texi:18239 msgid "This service runs the @command{inetd} (@pxref{inetd invocation,,, inetutils, GNU Inetutils}) daemon. @command{inetd} listens for connections on internet sockets, and lazily starts the specified server program when a connection is made on one of these sockets." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17883 +#: guix-git/doc/guix.texi:18245 msgid "The value of this service is an @code{inetd-configuration} object. The following example configures the @command{inetd} daemon to provide the built-in @command{echo} service, as well as an smtp service which forwards smtp traffic over ssh to a server @code{smtp-server} behind a gateway @code{hostname}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17906 +#: guix-git/doc/guix.texi:18268 #, no-wrap msgid "" "(service\n" @@ -32481,463 +33207,465 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17909 +#: guix-git/doc/guix.texi:18271 msgid "See below for more details about @code{inetd-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17911 +#: guix-git/doc/guix.texi:18273 #, no-wrap msgid "{Data Type} inetd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17913 +#: guix-git/doc/guix.texi:18275 msgid "Data type representing the configuration of @command{inetd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17915 +#: guix-git/doc/guix.texi:18277 #, no-wrap msgid "@code{program} (default: @code{(file-append inetutils \"/libexec/inetd\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17917 +#: guix-git/doc/guix.texi:18279 msgid "The @command{inetd} executable to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17918 guix-git/doc/guix.texi:27655 +#: guix-git/doc/guix.texi:18280 guix-git/doc/guix.texi:27992 #, no-wrap msgid "@code{entries} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17921 +#: guix-git/doc/guix.texi:18283 msgid "A list of @command{inetd} service entries. Each entry should be created by the @code{inetd-entry} constructor." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17924 +#: guix-git/doc/guix.texi:18286 #, no-wrap msgid "{Data Type} inetd-entry" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17928 +#: guix-git/doc/guix.texi:18290 msgid "Data type representing an entry in the @command{inetd} configuration. Each entry corresponds to a socket where @command{inetd} will listen for requests." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17930 +#: guix-git/doc/guix.texi:18292 #, no-wrap msgid "@code{node} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17935 +#: guix-git/doc/guix.texi:18297 msgid "Optional string, a comma-separated list of local addresses @command{inetd} should use when listening for this service. @xref{Configuration file,,, inetutils, GNU Inetutils} for a complete description of all options." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17937 +#: guix-git/doc/guix.texi:18299 msgid "A string, the name must correspond to an entry in @code{/etc/services}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17937 +#: guix-git/doc/guix.texi:18299 #, no-wrap msgid "socket-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17940 +#: guix-git/doc/guix.texi:18302 msgid "One of @code{'stream}, @code{'dgram}, @code{'raw}, @code{'rdm} or @code{'seqpacket}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17940 +#: guix-git/doc/guix.texi:18302 #, no-wrap msgid "protocol" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17942 +#: guix-git/doc/guix.texi:18304 msgid "A string, must correspond to an entry in @code{/etc/protocols}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17942 +#: guix-git/doc/guix.texi:18304 #, no-wrap msgid "@code{wait?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17945 +#: guix-git/doc/guix.texi:18307 msgid "Whether @command{inetd} should wait for the server to exit before listening to new service requests." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17950 +#: guix-git/doc/guix.texi:18312 msgid "A string containing the user (and, optionally, group) name of the user as whom the server should run. The group name can be specified in a suffix, separated by a colon or period, i.e.@: @code{\"user\"}, @code{\"user:group\"} or @code{\"user.group\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17950 +#: guix-git/doc/guix.texi:18312 #, no-wrap msgid "@code{program} (default: @code{\"internal\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:18315 msgid "The server program which will serve the requests, or @code{\"internal\"} if @command{inetd} should use a built-in service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17958 +#: guix-git/doc/guix.texi:18320 msgid "A list strings or file-like objects, which are the server program's arguments, starting with the zeroth argument, i.e.@: the name of the program itself. For @command{inetd}'s internal services, this entry must be @code{'()} or @code{'(\"internal\")}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17962 +#: guix-git/doc/guix.texi:18324 msgid "@xref{Configuration file,,, inetutils, GNU Inetutils} for a more detailed discussion of each configuration field." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17964 +#: guix-git/doc/guix.texi:18326 #, no-wrap msgid "opendht, distributed hash table network service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17965 +#: guix-git/doc/guix.texi:18327 #, no-wrap msgid "dhtproxy, for use with jami" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17966 +#: guix-git/doc/guix.texi:18328 #, no-wrap msgid "{Scheme Variable} opendht-service-type" msgstr "{Scheme Variable} etc-service-type" #. type: defvr -#: guix-git/doc/guix.texi:17971 +#: guix-git/doc/guix.texi:18333 msgid "This is the type of the service running a @uref{https://opendht.net, OpenDHT} node, @command{dhtnode}. The daemon can be used to host your own proxy service to the distributed hash table (DHT), for example to connect to with Jami, among other applications." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:17981 +#: guix-git/doc/guix.texi:18343 msgid "When using the OpenDHT proxy server, the IP addresses it ``sees'' from the clients should be addresses reachable from other peers. In practice this means that a publicly reachable address is best suited for a proxy server, outside of your private network. For example, hosting the proxy server on a IPv4 private local network and exposing it via port forwarding could work for external peers, but peers local to the proxy would have their private addresses shared with the external peers, leading to connectivity problems." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17985 +#: guix-git/doc/guix.texi:18347 msgid "The value of this service is a @code{opendht-configuration} object, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17987 +#: guix-git/doc/guix.texi:18349 #, no-wrap msgid "{Data Type} opendht-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:17989 +#: guix-git/doc/guix.texi:18351 msgid "This is the data type for the OpenDHT service configuration." msgstr "Управление конфигурацией операционной системы." #. type: deftp -#: guix-git/doc/guix.texi:17994 +#: guix-git/doc/guix.texi:18356 msgid "Available @code{opendht-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:17995 +#: guix-git/doc/guix.texi:18357 #, no-wrap msgid "{@code{opendht-configuration} parameter} package opendht" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:17997 +#: guix-git/doc/guix.texi:18359 msgid "The @code{opendht} package to use." msgstr "Используемый пакет @code{webssh}." #. type: deftypevr -#: guix-git/doc/guix.texi:18000 +#: guix-git/doc/guix.texi:18362 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean peer-discovery?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18002 +#: guix-git/doc/guix.texi:18364 msgid "Whether to enable the multicast local peer discovery mechanism." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18004 guix-git/doc/guix.texi:18012 -#: guix-git/doc/guix.texi:18020 guix-git/doc/guix.texi:19712 -#: guix-git/doc/guix.texi:19788 guix-git/doc/guix.texi:19830 -#: guix-git/doc/guix.texi:19850 guix-git/doc/guix.texi:19856 -#: guix-git/doc/guix.texi:19872 guix-git/doc/guix.texi:19960 -#: guix-git/doc/guix.texi:20048 guix-git/doc/guix.texi:20361 -#: guix-git/doc/guix.texi:20374 guix-git/doc/guix.texi:21492 -#: guix-git/doc/guix.texi:22970 guix-git/doc/guix.texi:23076 -#: guix-git/doc/guix.texi:23141 guix-git/doc/guix.texi:23150 -#: guix-git/doc/guix.texi:24383 guix-git/doc/guix.texi:24427 -#: guix-git/doc/guix.texi:24444 guix-git/doc/guix.texi:24452 -#: guix-git/doc/guix.texi:24467 guix-git/doc/guix.texi:24485 -#: guix-git/doc/guix.texi:24509 guix-git/doc/guix.texi:24562 -#: guix-git/doc/guix.texi:24695 guix-git/doc/guix.texi:24729 -#: guix-git/doc/guix.texi:24765 guix-git/doc/guix.texi:24781 -#: guix-git/doc/guix.texi:24809 guix-git/doc/guix.texi:24870 -#: guix-git/doc/guix.texi:24953 guix-git/doc/guix.texi:28367 -#: guix-git/doc/guix.texi:28381 guix-git/doc/guix.texi:28403 -#: guix-git/doc/guix.texi:28522 guix-git/doc/guix.texi:28536 -#: guix-git/doc/guix.texi:28557 guix-git/doc/guix.texi:28578 -#: guix-git/doc/guix.texi:28585 guix-git/doc/guix.texi:28630 -#: guix-git/doc/guix.texi:28637 guix-git/doc/guix.texi:29426 -#: guix-git/doc/guix.texi:29440 guix-git/doc/guix.texi:29612 -#: guix-git/doc/guix.texi:29657 guix-git/doc/guix.texi:29744 -#: guix-git/doc/guix.texi:29946 guix-git/doc/guix.texi:29979 -#: guix-git/doc/guix.texi:30119 guix-git/doc/guix.texi:30130 -#: guix-git/doc/guix.texi:30381 guix-git/doc/guix.texi:31900 -#: guix-git/doc/guix.texi:31909 guix-git/doc/guix.texi:31917 -#: guix-git/doc/guix.texi:31925 guix-git/doc/guix.texi:31941 -#: guix-git/doc/guix.texi:31957 guix-git/doc/guix.texi:31965 -#: guix-git/doc/guix.texi:31973 guix-git/doc/guix.texi:31982 -#: guix-git/doc/guix.texi:31991 guix-git/doc/guix.texi:32007 -#: guix-git/doc/guix.texi:32071 guix-git/doc/guix.texi:32177 -#: guix-git/doc/guix.texi:32185 guix-git/doc/guix.texi:32193 -#: guix-git/doc/guix.texi:32218 guix-git/doc/guix.texi:32272 -#: guix-git/doc/guix.texi:32320 guix-git/doc/guix.texi:32521 -#: guix-git/doc/guix.texi:32528 +#: guix-git/doc/guix.texi:18366 guix-git/doc/guix.texi:18374 +#: guix-git/doc/guix.texi:18382 guix-git/doc/guix.texi:20074 +#: guix-git/doc/guix.texi:20150 guix-git/doc/guix.texi:20192 +#: guix-git/doc/guix.texi:20212 guix-git/doc/guix.texi:20218 +#: guix-git/doc/guix.texi:20234 guix-git/doc/guix.texi:20322 +#: guix-git/doc/guix.texi:20410 guix-git/doc/guix.texi:20723 +#: guix-git/doc/guix.texi:20736 guix-git/doc/guix.texi:21854 +#: guix-git/doc/guix.texi:23332 guix-git/doc/guix.texi:23438 +#: guix-git/doc/guix.texi:23503 guix-git/doc/guix.texi:23512 +#: guix-git/doc/guix.texi:24745 guix-git/doc/guix.texi:24789 +#: guix-git/doc/guix.texi:24806 guix-git/doc/guix.texi:24814 +#: guix-git/doc/guix.texi:24829 guix-git/doc/guix.texi:24847 +#: guix-git/doc/guix.texi:24871 guix-git/doc/guix.texi:24924 +#: guix-git/doc/guix.texi:25057 guix-git/doc/guix.texi:25091 +#: guix-git/doc/guix.texi:25127 guix-git/doc/guix.texi:25143 +#: guix-git/doc/guix.texi:25171 guix-git/doc/guix.texi:25232 +#: guix-git/doc/guix.texi:25315 guix-git/doc/guix.texi:28704 +#: guix-git/doc/guix.texi:28718 guix-git/doc/guix.texi:28740 +#: guix-git/doc/guix.texi:28859 guix-git/doc/guix.texi:28873 +#: guix-git/doc/guix.texi:28894 guix-git/doc/guix.texi:28915 +#: guix-git/doc/guix.texi:28922 guix-git/doc/guix.texi:28967 +#: guix-git/doc/guix.texi:28974 guix-git/doc/guix.texi:29763 +#: guix-git/doc/guix.texi:29777 guix-git/doc/guix.texi:29977 +#: guix-git/doc/guix.texi:30022 guix-git/doc/guix.texi:30109 +#: guix-git/doc/guix.texi:30311 guix-git/doc/guix.texi:30344 +#: guix-git/doc/guix.texi:30484 guix-git/doc/guix.texi:30495 +#: guix-git/doc/guix.texi:30746 guix-git/doc/guix.texi:32265 +#: guix-git/doc/guix.texi:32274 guix-git/doc/guix.texi:32282 +#: guix-git/doc/guix.texi:32290 guix-git/doc/guix.texi:32306 +#: guix-git/doc/guix.texi:32322 guix-git/doc/guix.texi:32330 +#: guix-git/doc/guix.texi:32338 guix-git/doc/guix.texi:32347 +#: guix-git/doc/guix.texi:32356 guix-git/doc/guix.texi:32372 +#: guix-git/doc/guix.texi:32436 guix-git/doc/guix.texi:32542 +#: guix-git/doc/guix.texi:32550 guix-git/doc/guix.texi:32558 +#: guix-git/doc/guix.texi:32583 guix-git/doc/guix.texi:32637 +#: guix-git/doc/guix.texi:32685 guix-git/doc/guix.texi:32886 +#: guix-git/doc/guix.texi:32893 msgid "Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18007 +#: guix-git/doc/guix.texi:18369 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean enable-logging?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18010 +#: guix-git/doc/guix.texi:18372 msgid "Whether to enable logging messages to syslog. It is disabled by default as it is rather verbose." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18015 +#: guix-git/doc/guix.texi:18377 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean debug?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18018 +#: guix-git/doc/guix.texi:18380 msgid "Whether to enable debug-level logging messages. This has no effect if logging is disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18023 +#: guix-git/doc/guix.texi:18385 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-string bootstrap-host" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18029 +#: guix-git/doc/guix.texi:18391 msgid "The node host name that is used to make the first connection to the network. A specific port value can be provided by appending the @code{:PORT} suffix. By default, it uses the Jami bootstrap nodes, but any host can be specified here. It's also possible to disable bootsrapping by setting this to the @code{'disabled} symbol." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18031 +#: guix-git/doc/guix.texi:18393 msgid "Defaults to @samp{\"bootstrap.jami.net:4222\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18034 +#: guix-git/doc/guix.texi:18396 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18037 +#: guix-git/doc/guix.texi:18399 msgid "The UDP port to bind to. When set to @code{'disabled}, an available port is automatically selected." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18039 +#: guix-git/doc/guix.texi:18401 msgid "Defaults to @samp{4222}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18042 +#: guix-git/doc/guix.texi:18404 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number proxy-server-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18044 +#: guix-git/doc/guix.texi:18406 msgid "Spawn a proxy server listening on the specified port." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18046 guix-git/doc/guix.texi:18053 -#: guix-git/doc/guix.texi:24391 guix-git/doc/guix.texi:24435 -#: guix-git/doc/guix.texi:24648 guix-git/doc/guix.texi:24704 -#: guix-git/doc/guix.texi:24878 guix-git/doc/guix.texi:24889 -#: guix-git/doc/guix.texi:24962 guix-git/doc/guix.texi:25687 -#: guix-git/doc/guix.texi:25730 guix-git/doc/guix.texi:25738 -#: guix-git/doc/guix.texi:25746 guix-git/doc/guix.texi:25754 -#: guix-git/doc/guix.texi:25763 guix-git/doc/guix.texi:25771 -#: guix-git/doc/guix.texi:25778 guix-git/doc/guix.texi:25786 -#: guix-git/doc/guix.texi:25794 guix-git/doc/guix.texi:25804 -#: guix-git/doc/guix.texi:25811 guix-git/doc/guix.texi:25835 -#: guix-git/doc/guix.texi:25843 guix-git/doc/guix.texi:25869 -#: guix-git/doc/guix.texi:25878 guix-git/doc/guix.texi:25887 -#: guix-git/doc/guix.texi:25896 guix-git/doc/guix.texi:25905 -#: guix-git/doc/guix.texi:25914 guix-git/doc/guix.texi:25922 -#: guix-git/doc/guix.texi:25930 guix-git/doc/guix.texi:25937 -#: guix-git/doc/guix.texi:25945 guix-git/doc/guix.texi:25952 -#: guix-git/doc/guix.texi:25960 guix-git/doc/guix.texi:25968 -#: guix-git/doc/guix.texi:25977 guix-git/doc/guix.texi:25986 -#: guix-git/doc/guix.texi:25994 guix-git/doc/guix.texi:26002 -#: guix-git/doc/guix.texi:26010 guix-git/doc/guix.texi:26021 -#: guix-git/doc/guix.texi:26031 guix-git/doc/guix.texi:26042 -#: guix-git/doc/guix.texi:26051 guix-git/doc/guix.texi:26061 -#: guix-git/doc/guix.texi:26069 guix-git/doc/guix.texi:26080 -#: guix-git/doc/guix.texi:26089 guix-git/doc/guix.texi:26099 -#: guix-git/doc/guix.texi:29339 guix-git/doc/guix.texi:29346 -#: guix-git/doc/guix.texi:29353 guix-git/doc/guix.texi:29360 -#: guix-git/doc/guix.texi:29367 guix-git/doc/guix.texi:29374 -#: guix-git/doc/guix.texi:29382 guix-git/doc/guix.texi:29390 -#: guix-git/doc/guix.texi:29397 guix-git/doc/guix.texi:29404 -#: guix-git/doc/guix.texi:29411 guix-git/doc/guix.texi:29418 -#: guix-git/doc/guix.texi:29448 guix-git/doc/guix.texi:29486 -#: guix-git/doc/guix.texi:29493 guix-git/doc/guix.texi:29502 -#: guix-git/doc/guix.texi:29524 guix-git/doc/guix.texi:29532 -#: guix-git/doc/guix.texi:29539 guix-git/doc/guix.texi:29694 -#: guix-git/doc/guix.texi:29714 guix-git/doc/guix.texi:29729 -#: guix-git/doc/guix.texi:29736 guix-git/doc/guix.texi:32473 -#: guix-git/doc/guix.texi:32481 guix-git/doc/guix.texi:32489 -#: guix-git/doc/guix.texi:32497 guix-git/doc/guix.texi:32505 -#: guix-git/doc/guix.texi:32513 +#: guix-git/doc/guix.texi:18408 guix-git/doc/guix.texi:18415 +#: guix-git/doc/guix.texi:24753 guix-git/doc/guix.texi:24797 +#: guix-git/doc/guix.texi:25010 guix-git/doc/guix.texi:25066 +#: guix-git/doc/guix.texi:25240 guix-git/doc/guix.texi:25251 +#: guix-git/doc/guix.texi:25324 guix-git/doc/guix.texi:26024 +#: guix-git/doc/guix.texi:26067 guix-git/doc/guix.texi:26075 +#: guix-git/doc/guix.texi:26083 guix-git/doc/guix.texi:26091 +#: guix-git/doc/guix.texi:26100 guix-git/doc/guix.texi:26108 +#: guix-git/doc/guix.texi:26115 guix-git/doc/guix.texi:26123 +#: guix-git/doc/guix.texi:26131 guix-git/doc/guix.texi:26141 +#: guix-git/doc/guix.texi:26148 guix-git/doc/guix.texi:26172 +#: guix-git/doc/guix.texi:26180 guix-git/doc/guix.texi:26206 +#: guix-git/doc/guix.texi:26215 guix-git/doc/guix.texi:26224 +#: guix-git/doc/guix.texi:26233 guix-git/doc/guix.texi:26242 +#: guix-git/doc/guix.texi:26251 guix-git/doc/guix.texi:26259 +#: guix-git/doc/guix.texi:26267 guix-git/doc/guix.texi:26274 +#: guix-git/doc/guix.texi:26282 guix-git/doc/guix.texi:26289 +#: guix-git/doc/guix.texi:26297 guix-git/doc/guix.texi:26305 +#: guix-git/doc/guix.texi:26314 guix-git/doc/guix.texi:26323 +#: guix-git/doc/guix.texi:26331 guix-git/doc/guix.texi:26339 +#: guix-git/doc/guix.texi:26347 guix-git/doc/guix.texi:26358 +#: guix-git/doc/guix.texi:26368 guix-git/doc/guix.texi:26379 +#: guix-git/doc/guix.texi:26388 guix-git/doc/guix.texi:26398 +#: guix-git/doc/guix.texi:26406 guix-git/doc/guix.texi:26417 +#: guix-git/doc/guix.texi:26426 guix-git/doc/guix.texi:26436 +#: guix-git/doc/guix.texi:29676 guix-git/doc/guix.texi:29683 +#: guix-git/doc/guix.texi:29690 guix-git/doc/guix.texi:29697 +#: guix-git/doc/guix.texi:29704 guix-git/doc/guix.texi:29711 +#: guix-git/doc/guix.texi:29719 guix-git/doc/guix.texi:29727 +#: guix-git/doc/guix.texi:29734 guix-git/doc/guix.texi:29741 +#: guix-git/doc/guix.texi:29748 guix-git/doc/guix.texi:29755 +#: guix-git/doc/guix.texi:29785 guix-git/doc/guix.texi:29823 +#: guix-git/doc/guix.texi:29830 guix-git/doc/guix.texi:29839 +#: guix-git/doc/guix.texi:29861 guix-git/doc/guix.texi:29869 +#: guix-git/doc/guix.texi:29876 guix-git/doc/guix.texi:29905 +#: guix-git/doc/guix.texi:29912 guix-git/doc/guix.texi:29919 +#: guix-git/doc/guix.texi:29926 guix-git/doc/guix.texi:30059 +#: guix-git/doc/guix.texi:30079 guix-git/doc/guix.texi:30094 +#: guix-git/doc/guix.texi:30101 guix-git/doc/guix.texi:32838 +#: guix-git/doc/guix.texi:32846 guix-git/doc/guix.texi:32854 +#: guix-git/doc/guix.texi:32862 guix-git/doc/guix.texi:32870 +#: guix-git/doc/guix.texi:32878 msgid "Defaults to @samp{disabled}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18049 +#: guix-git/doc/guix.texi:18411 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number proxy-server-port-tls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18051 +#: guix-git/doc/guix.texi:18413 msgid "Spawn a proxy server listening to TLS connections on the specified port." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18057 +#: guix-git/doc/guix.texi:18419 #, no-wrap msgid "Tor" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18058 +#: guix-git/doc/guix.texi:18420 #, no-wrap msgid "{Scheme Variable} tor-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18063 +#: guix-git/doc/guix.texi:18425 msgid "This is the type for a service that runs the @uref{https://torproject.org, Tor} anonymous networking daemon. The service is configured using a @code{} record. By default, the Tor daemon runs as the @code{tor} unprivileged user, which is a member of the @code{tor} group." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18066 +#: guix-git/doc/guix.texi:18428 #, no-wrap msgid "{Data Type} tor-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18068 +#: guix-git/doc/guix.texi:18430 #, no-wrap msgid "@code{tor} (default: @code{tor})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18073 +#: guix-git/doc/guix.texi:18435 msgid "The package that provides the Tor daemon. This package is expected to provide the daemon at @file{bin/tor} relative to its output directory. The default package is the @uref{https://www.torproject.org, Tor Project's} implementation." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18074 +#: guix-git/doc/guix.texi:18436 #, no-wrap msgid "@code{config-file} (default: @code{(plain-file \"empty\" \"\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18080 +#: guix-git/doc/guix.texi:18442 msgid "The configuration file to use. It will be appended to a default configuration file, and the final configuration file will be passed to @code{tor} via its @code{-f} option. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). See @code{man tor} for details on the configuration file syntax." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18081 +#: guix-git/doc/guix.texi:18443 #, no-wrap msgid "@code{hidden-services} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18087 +#: guix-git/doc/guix.texi:18449 msgid "The list of @code{} records to use. For any hidden service you include in this list, appropriate configuration to enable the hidden service will be automatically added to the default configuration file. You may conveniently create @code{} records using the @code{tor-hidden-service} procedure described below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18088 +#: guix-git/doc/guix.texi:18450 #, no-wrap msgid "@code{socks-socket-type} (default: @code{'tcp})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18095 +#: guix-git/doc/guix.texi:18457 msgid "The default socket type that Tor should use for its SOCKS socket. This must be either @code{'tcp} or @code{'unix}. If it is @code{'tcp}, then by default Tor will listen on TCP port 9050 on the loopback interface (i.e., localhost). If it is @code{'unix}, then Tor will listen on the UNIX domain socket @file{/var/run/tor/socks-sock}, which will be made writable by members of the @code{tor} group." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18100 +#: guix-git/doc/guix.texi:18462 msgid "If you want to customize the SOCKS socket in more detail, leave @code{socks-socket-type} at its default value of @code{'tcp} and use @code{config-file} to override the default by providing your own @code{SocksPort} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18101 +#: guix-git/doc/guix.texi:18463 #, no-wrap msgid "@code{control-socket?} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:18107 +#: guix-git/doc/guix.texi:18469 msgid "Whether or not to provide a ``control socket'' by which Tor can be controlled to, for instance, dynamically instantiate tor onion services. If @code{#t}, Tor will listen for control commands on the UNIX domain socket @file{/var/run/tor/control-sock}, which will be made writable by members of the @code{tor} group." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18111 +#: guix-git/doc/guix.texi:18473 #, no-wrap msgid "hidden service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18112 +#: guix-git/doc/guix.texi:18474 #, no-wrap msgid "{Scheme Procedure} tor-hidden-service @var{name} @var{mapping}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18115 +#: guix-git/doc/guix.texi:18477 msgid "Define a new Tor @dfn{hidden service} called @var{name} and implementing @var{mapping}. @var{mapping} is a list of port/host tuples, such as:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18119 +#: guix-git/doc/guix.texi:18481 #, no-wrap msgid "" " '((22 \"127.0.0.1:22\")\n" @@ -32945,43 +33673,43 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18123 +#: guix-git/doc/guix.texi:18485 msgid "In this example, port 22 of the hidden service is mapped to local port 22, and port 80 is mapped to local port 8080." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18127 +#: guix-git/doc/guix.texi:18489 msgid "This creates a @file{/var/lib/tor/hidden-services/@var{name}} directory, where the @file{hostname} file contains the @code{.onion} host name for the hidden service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18130 +#: guix-git/doc/guix.texi:18492 msgid "See @uref{https://www.torproject.org/docs/tor-hidden-service.html.en, the Tor project's documentation} for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18133 +#: guix-git/doc/guix.texi:18495 msgid "The @code{(gnu services rsync)} module provides the following services:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18137 +#: guix-git/doc/guix.texi:18499 msgid "You might want an rsync daemon if you have files that you want available so anyone (or just yourself) can download existing files or upload new files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18138 +#: guix-git/doc/guix.texi:18500 #, no-wrap msgid "{Scheme Variable} rsync-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18142 +#: guix-git/doc/guix.texi:18504 msgid "This is the service type for the @uref{https://rsync.samba.org, rsync} daemon, The value for this service type is a @command{rsync-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18155 +#: guix-git/doc/guix.texi:18517 #, no-wrap msgid "" ";; Export two directories over rsync. By default rsync listens on\n" @@ -32998,245 +33726,245 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18158 +#: guix-git/doc/guix.texi:18520 msgid "See below for details about @code{rsync-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18160 +#: guix-git/doc/guix.texi:18522 #, no-wrap msgid "{Data Type} rsync-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18162 +#: guix-git/doc/guix.texi:18524 msgid "Data type representing the configuration for @code{rsync-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18164 +#: guix-git/doc/guix.texi:18526 #, no-wrap msgid "@code{package} (default: @var{rsync})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18166 +#: guix-git/doc/guix.texi:18528 msgid "@code{rsync} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18167 guix-git/doc/guix.texi:31480 +#: guix-git/doc/guix.texi:18529 guix-git/doc/guix.texi:31845 #, no-wrap msgid "@code{address} (default: @code{#f})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18170 +#: guix-git/doc/guix.texi:18532 msgid "IP address on which @command{rsync} listens for incoming connections. If unspecified, it defaults to listening on all available addresses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18171 +#: guix-git/doc/guix.texi:18533 #, no-wrap msgid "@code{port-number} (default: @code{873})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18175 +#: guix-git/doc/guix.texi:18537 msgid "TCP port on which @command{rsync} listens for incoming connections. If port is less than @code{1024} @command{rsync} needs to be started as the @code{root} user and group." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18176 +#: guix-git/doc/guix.texi:18538 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/rsyncd/rsyncd.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18178 +#: guix-git/doc/guix.texi:18540 msgid "Name of the file where @command{rsync} writes its PID." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18179 +#: guix-git/doc/guix.texi:18541 #, no-wrap msgid "@code{lock-file} (default: @code{\"/var/run/rsyncd/rsyncd.lock\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18181 +#: guix-git/doc/guix.texi:18543 msgid "Name of the file where @command{rsync} writes its lock file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18182 +#: guix-git/doc/guix.texi:18544 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/rsyncd.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18184 +#: guix-git/doc/guix.texi:18546 msgid "Name of the file where @command{rsync} writes its log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18185 guix-git/doc/guix.texi:35582 +#: guix-git/doc/guix.texi:18547 guix-git/doc/guix.texi:36062 #, no-wrap msgid "@code{user} (default: @code{\"root\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:18187 +#: guix-git/doc/guix.texi:18549 msgid "Owner of the @code{rsync} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18188 +#: guix-git/doc/guix.texi:18550 #, fuzzy, no-wrap #| msgid "@code{group} (default: @code{\"agate\"})" msgid "@code{group} (default: @code{\"root\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:18190 +#: guix-git/doc/guix.texi:18552 msgid "Group of the @code{rsync} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18191 +#: guix-git/doc/guix.texi:18553 #, fuzzy, no-wrap #| msgid "@code{user} (default: @code{\"root\"})" msgid "@code{uid} (default: @code{\"rsyncd\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:18194 +#: guix-git/doc/guix.texi:18556 msgid "User name or user ID that file transfers to and from that module should take place as when the daemon was run as @code{root}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18195 +#: guix-git/doc/guix.texi:18557 #, fuzzy, no-wrap #| msgid "@code{size} (default @code{\"1G\"})" msgid "@code{gid} (default: @code{\"rsyncd\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:18197 guix-git/doc/guix.texi:18676 +#: guix-git/doc/guix.texi:18559 guix-git/doc/guix.texi:19038 msgid "Group name or group ID that will be used when accessing the module." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18198 guix-git/doc/guix.texi:36378 +#: guix-git/doc/guix.texi:18560 guix-git/doc/guix.texi:36868 #, no-wrap msgid "@code{modules} (default: @code{%default-modules})" msgstr "@code{modules} (default: @code{%default-modules})" #. type: table -#: guix-git/doc/guix.texi:18201 +#: guix-git/doc/guix.texi:18563 msgid "List of ``modules''---i.e., directories exported over rsync. Each element must be a @code{rsync-module} record, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18204 +#: guix-git/doc/guix.texi:18566 #, fuzzy, no-wrap #| msgid "{Data Type} postgresql-role" msgid "{Data Type} rsync-module" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:18207 +#: guix-git/doc/guix.texi:18569 msgid "This is the data type for rsync ``modules''. A module is a directory exported over the rsync protocol. The available fields are as follows:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18213 +#: guix-git/doc/guix.texi:18575 msgid "The module name. This is the name that shows up in URLs. For example, if the module is called @code{music}, the corresponding URL will be @code{rsync://host.example.org/music}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18214 +#: guix-git/doc/guix.texi:18576 #, fuzzy, no-wrap #| msgid "source-file-name" msgid "file-name" msgstr "source-file-name" #. type: table -#: guix-git/doc/guix.texi:18216 +#: guix-git/doc/guix.texi:18578 #, fuzzy #| msgid "Return the directory name of the store." msgid "Name of the directory being exported." msgstr "Проверить целостность склада." #. type: table -#: guix-git/doc/guix.texi:18220 +#: guix-git/doc/guix.texi:18582 msgid "Comment associated with the module. Client user interfaces may display it when they obtain the list of available modules." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18221 +#: guix-git/doc/guix.texi:18583 #, fuzzy, no-wrap #| msgid "@code{enabled?} (default: @code{#t})" msgid "@code{read-only?} (default: @code{#t})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:18225 +#: guix-git/doc/guix.texi:18587 msgid "Whether or not client will be able to upload files. If this is false, the uploads will be authorized if permissions on the daemon side permit it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18226 +#: guix-git/doc/guix.texi:18588 #, fuzzy, no-wrap #| msgid "@code{cert} (default: @code{#f})" msgid "@code{chroot?} (default: @code{#t})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:18230 +#: guix-git/doc/guix.texi:18592 msgid "When this is true, the rsync daemon changes root to the module's directory before starting file transfers with the client. This improves security, but requires rsync to run as root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18231 +#: guix-git/doc/guix.texi:18593 #, no-wrap msgid "@code{timeout} (default: @code{300})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18234 +#: guix-git/doc/guix.texi:18596 msgid "Idle time in seconds after which the daemon closes a connection with the client." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18238 +#: guix-git/doc/guix.texi:18600 msgid "The @code{(gnu services syncthing)} module provides the following services:" msgstr "Модуль @code{(guix inferior)} предоставляет следующие процедуры для работы с ранними версиями:" #. type: cindex -#: guix-git/doc/guix.texi:18238 +#: guix-git/doc/guix.texi:18600 #, no-wrap msgid "syncthing" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18243 +#: guix-git/doc/guix.texi:18605 msgid "You might want a syncthing daemon if you have files between two or more computers and want to sync them in real time, safely protected from prying eyes." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18244 +#: guix-git/doc/guix.texi:18606 #, no-wrap msgid "{Scheme Variable} syncthing-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: deffn -#: guix-git/doc/guix.texi:18248 +#: guix-git/doc/guix.texi:18610 msgid "This is the service type for the @uref{https://syncthing.net/, syncthing} daemon, The value for this service type is a @command{syncthing-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18252 +#: guix-git/doc/guix.texi:18614 #, no-wrap msgid "" "(service syncthing-service-type\n" @@ -33246,160 +33974,160 @@ msgstr "" " (openssh-configuration))\n" #. type: deffn -#: guix-git/doc/guix.texi:18255 +#: guix-git/doc/guix.texi:18617 msgid "See below for details about @code{syncthing-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18256 +#: guix-git/doc/guix.texi:18618 #, no-wrap msgid "{Data Type} syncthing-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:18258 +#: guix-git/doc/guix.texi:18620 msgid "Data type representing the configuration for @code{syncthing-service-type}." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:18260 +#: guix-git/doc/guix.texi:18622 #, no-wrap msgid "@code{syncthing} (default: @var{syncthing})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18262 +#: guix-git/doc/guix.texi:18624 msgid "@code{syncthing} package to use." msgstr "пакет @code{syncthing} для использования." #. type: item -#: guix-git/doc/guix.texi:18263 +#: guix-git/doc/guix.texi:18625 #, no-wrap msgid "@code{arguments} (default: @var{'()})" msgstr "@code{arguments} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18265 +#: guix-git/doc/guix.texi:18627 msgid "List of command-line arguments passing to @code{syncthing} binary." msgstr "Список флагов командной строки, которые следует передать команде @code{patch}." #. type: item -#: guix-git/doc/guix.texi:18266 +#: guix-git/doc/guix.texi:18628 #, no-wrap msgid "@code{logflags} (default: @var{0})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18269 +#: guix-git/doc/guix.texi:18631 msgid "Sum of logging flags, see @uref{https://docs.syncthing.net/users/syncthing.html#cmdoption-logflags, Syncthing documentation logflags}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18270 +#: guix-git/doc/guix.texi:18632 #, no-wrap msgid "@code{user} (default: @var{#f})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18273 +#: guix-git/doc/guix.texi:18635 msgid "The user as which the Syncthing service is to be run. This assumes that the specified user exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18274 +#: guix-git/doc/guix.texi:18636 #, no-wrap msgid "@code{group} (default: @var{\"users\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:18277 +#: guix-git/doc/guix.texi:18639 msgid "The group as which the Syncthing service is to be run. This assumes that the specified group exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18278 +#: guix-git/doc/guix.texi:18640 #, no-wrap msgid "@code{home} (default: @var{#f})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:18281 +#: guix-git/doc/guix.texi:18643 msgid "Common configuration and data directory. The default configuration directory is @file{$HOME} of the specified Syncthing @code{user}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18287 +#: guix-git/doc/guix.texi:18649 msgid "Furthermore, @code{(gnu services ssh)} provides the following services." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18287 guix-git/doc/guix.texi:18326 -#: guix-git/doc/guix.texi:35715 +#: guix-git/doc/guix.texi:18649 guix-git/doc/guix.texi:18688 +#: guix-git/doc/guix.texi:36205 #, no-wrap msgid "SSH" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18288 guix-git/doc/guix.texi:18327 -#: guix-git/doc/guix.texi:35716 +#: guix-git/doc/guix.texi:18650 guix-git/doc/guix.texi:18689 +#: guix-git/doc/guix.texi:36206 #, no-wrap msgid "SSH server" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18290 +#: guix-git/doc/guix.texi:18652 #, no-wrap msgid "{Scheme Procedure} lsh-service [#:host-key \"/etc/lsh/host-key\"] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18299 +#: guix-git/doc/guix.texi:18661 msgid "[#:daemonic? #t] [#:interfaces '()] [#:port-number 22] @ [#:allow-empty-passwords? #f] [#:root-login? #f] @ [#:syslog-output? #t] [#:x11-forwarding? #t] @ [#:tcp/ip-forwarding? #t] [#:password-authentication? #t] @ [#:public-key-authentication? #t] [#:initialize? #t] Run the @command{lshd} program from @var{lsh} to listen on port @var{port-number}. @var{host-key} must designate a file containing the host key, and readable only by root." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18305 +#: guix-git/doc/guix.texi:18667 msgid "When @var{daemonic?} is true, @command{lshd} will detach from the controlling terminal and log its output to syslogd, unless one sets @var{syslog-output?} to false. Obviously, it also makes lsh-service depend on existence of syslogd service. When @var{pid-file?} is true, @command{lshd} writes its PID to the file called @var{pid-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18309 +#: guix-git/doc/guix.texi:18671 msgid "When @var{initialize?} is true, automatically create the seed and host key upon service activation if they do not exist yet. This may take long and require interaction." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18314 +#: guix-git/doc/guix.texi:18676 msgid "When @var{initialize?} is false, it is up to the user to initialize the randomness generator (@pxref{lsh-make-seed,,, lsh, LSH Manual}), and to create a key pair with the private key stored in file @var{host-key} (@pxref{lshd basics,,, lsh, LSH Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18318 +#: guix-git/doc/guix.texi:18680 msgid "When @var{interfaces} is empty, lshd listens for connections on all the network interfaces; otherwise, @var{interfaces} must be a list of host names or addresses." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18322 +#: guix-git/doc/guix.texi:18684 msgid "@var{allow-empty-passwords?} specifies whether to accept log-ins with empty passwords, and @var{root-login?} specifies whether to accept log-ins as root." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18324 +#: guix-git/doc/guix.texi:18686 msgid "The other options should be self-descriptive." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18328 +#: guix-git/doc/guix.texi:18690 #, no-wrap msgid "{Scheme Variable} openssh-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18332 +#: guix-git/doc/guix.texi:18694 msgid "This is the type for the @uref{http://www.openssh.org, OpenSSH} secure shell daemon, @command{sshd}. Its value must be an @code{openssh-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18341 +#: guix-git/doc/guix.texi:18703 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -33412,17 +34140,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18344 +#: guix-git/doc/guix.texi:18706 msgid "See below for details about @code{openssh-configuration}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18347 +#: guix-git/doc/guix.texi:18709 msgid "This service can be extended with extra authorized keys, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18352 +#: guix-git/doc/guix.texi:18714 #, no-wrap msgid "" "(service-extension openssh-service-type\n" @@ -33431,203 +34159,203 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18355 +#: guix-git/doc/guix.texi:18717 #, no-wrap msgid "{Data Type} openssh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18357 +#: guix-git/doc/guix.texi:18719 msgid "This is the configuration record for OpenSSH's @command{sshd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18359 +#: guix-git/doc/guix.texi:18721 #, no-wrap msgid "@code{openssh} (default @var{openssh})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:18361 +#: guix-git/doc/guix.texi:18723 msgid "The Openssh package to use." msgstr "Используемый пакет Openssh." #. type: item -#: guix-git/doc/guix.texi:18362 +#: guix-git/doc/guix.texi:18724 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/sshd.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18364 +#: guix-git/doc/guix.texi:18726 msgid "Name of the file where @command{sshd} writes its PID." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18365 +#: guix-git/doc/guix.texi:18727 #, no-wrap msgid "@code{port-number} (default: @code{22})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18367 +#: guix-git/doc/guix.texi:18729 msgid "TCP port on which @command{sshd} listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18368 +#: guix-git/doc/guix.texi:18730 #, no-wrap msgid "@code{permit-root-login} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18373 +#: guix-git/doc/guix.texi:18735 msgid "This field determines whether and when to allow logins as root. If @code{#f}, root logins are disallowed; if @code{#t}, they are allowed. If it's the symbol @code{'prohibit-password}, then root logins are permitted but not with password-based authentication." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18374 guix-git/doc/guix.texi:18535 +#: guix-git/doc/guix.texi:18736 guix-git/doc/guix.texi:18897 #, no-wrap msgid "@code{allow-empty-passwords?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18377 +#: guix-git/doc/guix.texi:18739 msgid "When true, users with empty passwords may log in. When false, they may not." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18378 guix-git/doc/guix.texi:18538 +#: guix-git/doc/guix.texi:18740 guix-git/doc/guix.texi:18900 #, no-wrap msgid "@code{password-authentication?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18381 +#: guix-git/doc/guix.texi:18743 msgid "When true, users may log in with their password. When false, they have other authentication methods." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18382 +#: guix-git/doc/guix.texi:18744 #, no-wrap msgid "@code{public-key-authentication?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18385 +#: guix-git/doc/guix.texi:18747 msgid "When true, users may log in using public key authentication. When false, users have to use other authentication method." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18388 +#: guix-git/doc/guix.texi:18750 msgid "Authorized public keys are stored in @file{~/.ssh/authorized_keys}. This is used only by protocol version 2." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18389 +#: guix-git/doc/guix.texi:18751 #, no-wrap msgid "@code{x11-forwarding?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18393 +#: guix-git/doc/guix.texi:18755 msgid "When true, forwarding of X11 graphical client connections is enabled---in other words, @command{ssh} options @option{-X} and @option{-Y} will work." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18394 +#: guix-git/doc/guix.texi:18756 #, no-wrap msgid "@code{allow-agent-forwarding?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18396 +#: guix-git/doc/guix.texi:18758 msgid "Whether to allow agent forwarding." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18397 +#: guix-git/doc/guix.texi:18759 #, no-wrap msgid "@code{allow-tcp-forwarding?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18399 +#: guix-git/doc/guix.texi:18761 msgid "Whether to allow TCP forwarding." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18400 +#: guix-git/doc/guix.texi:18762 #, no-wrap msgid "@code{gateway-ports?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18402 +#: guix-git/doc/guix.texi:18764 msgid "Whether to allow gateway ports." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18403 +#: guix-git/doc/guix.texi:18765 #, no-wrap msgid "@code{challenge-response-authentication?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18406 +#: guix-git/doc/guix.texi:18768 msgid "Specifies whether challenge response authentication is allowed (e.g.@: via PAM)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18407 +#: guix-git/doc/guix.texi:18769 #, no-wrap msgid "@code{use-pam?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18413 +#: guix-git/doc/guix.texi:18775 msgid "Enables the Pluggable Authentication Module interface. If set to @code{#t}, this will enable PAM authentication using @code{challenge-response-authentication?} and @code{password-authentication?}, in addition to PAM account and session module processing for all authentication types." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18418 +#: guix-git/doc/guix.texi:18780 msgid "Because PAM challenge response authentication usually serves an equivalent role to password authentication, you should disable either @code{challenge-response-authentication?} or @code{password-authentication?}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18419 +#: guix-git/doc/guix.texi:18781 #, no-wrap msgid "@code{print-last-log?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18422 +#: guix-git/doc/guix.texi:18784 msgid "Specifies whether @command{sshd} should print the date and time of the last user login when a user logs in interactively." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18423 +#: guix-git/doc/guix.texi:18785 #, no-wrap msgid "@code{subsystems} (default: @code{'((\"sftp\" \"internal-sftp\"))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18425 +#: guix-git/doc/guix.texi:18787 msgid "Configures external subsystems (e.g.@: file transfer daemon)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18429 +#: guix-git/doc/guix.texi:18791 msgid "This is a list of two-element lists, each of which containing the subsystem name and a command (with optional arguments) to execute upon subsystem request." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18432 +#: guix-git/doc/guix.texi:18794 msgid "The command @command{internal-sftp} implements an in-process SFTP server. Alternatively, one can specify the @command{sftp-server} command:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18437 +#: guix-git/doc/guix.texi:18799 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -33637,28 +34365,28 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18439 +#: guix-git/doc/guix.texi:18801 #, no-wrap msgid "@code{accepted-environment} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18441 +#: guix-git/doc/guix.texi:18803 msgid "List of strings describing which environment variables may be exported." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18444 +#: guix-git/doc/guix.texi:18806 msgid "Each string gets on its own line. See the @code{AcceptEnv} option in @code{man sshd_config}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18449 +#: guix-git/doc/guix.texi:18811 msgid "This example allows ssh-clients to export the @env{COLORTERM} variable. It is set by terminal emulators, which support colors. You can use it in your shell's resource file to enable colors for the prompt and commands if this variable is set." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18454 +#: guix-git/doc/guix.texi:18816 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -33667,30 +34395,30 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18456 +#: guix-git/doc/guix.texi:18818 #, no-wrap msgid "@code{authorized-keys} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18457 +#: guix-git/doc/guix.texi:18819 #, no-wrap msgid "authorized keys, SSH" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18458 +#: guix-git/doc/guix.texi:18820 #, no-wrap msgid "SSH authorized keys" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18462 +#: guix-git/doc/guix.texi:18824 msgid "This is the list of authorized keys. Each element of the list is a user name followed by one or more file-like objects that represent SSH public keys. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18469 +#: guix-git/doc/guix.texi:18831 #, no-wrap msgid "" "(openssh-configuration\n" @@ -33701,45 +34429,45 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18474 +#: guix-git/doc/guix.texi:18836 msgid "registers the specified public keys for user accounts @code{rekado}, @code{chris}, and @code{root}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18477 +#: guix-git/doc/guix.texi:18839 msgid "Additional authorized keys can be specified @i{via} @code{service-extension}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18480 +#: guix-git/doc/guix.texi:18842 msgid "Note that this does @emph{not} interfere with the use of @file{~/.ssh/authorized_keys}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18481 guix-git/doc/guix.texi:18912 +#: guix-git/doc/guix.texi:18843 guix-git/doc/guix.texi:19274 #, no-wrap msgid "@code{log-level} (default: @code{'info})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18485 +#: guix-git/doc/guix.texi:18847 msgid "This is a symbol specifying the logging level: @code{quiet}, @code{fatal}, @code{error}, @code{info}, @code{verbose}, @code{debug}, etc. See the man page for @file{sshd_config} for the full list of level names." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18486 guix-git/doc/guix.texi:21328 -#: guix-git/doc/guix.texi:26469 +#: guix-git/doc/guix.texi:18848 guix-git/doc/guix.texi:21690 +#: guix-git/doc/guix.texi:26806 #, no-wrap msgid "@code{extra-content} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18491 +#: guix-git/doc/guix.texi:18853 msgid "This field can be used to append arbitrary text to the configuration file. It is especially useful for elaborate configurations that cannot be expressed otherwise. This configuration, for example, would generally disable root logins, but permit them from one specific IP address:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18497 +#: guix-git/doc/guix.texi:18859 #, no-wrap msgid "" "(openssh-configuration\n" @@ -33749,23 +34477,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18502 +#: guix-git/doc/guix.texi:18864 #, no-wrap msgid "{Scheme Procedure} dropbear-service [@var{config}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18506 +#: guix-git/doc/guix.texi:18868 msgid "Run the @uref{https://matt.ucc.asn.au/dropbear/dropbear.html,Dropbear SSH daemon} with the given @var{config}, a @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18509 +#: guix-git/doc/guix.texi:18871 msgid "For example, to specify a Dropbear service listening on port 1234, add this call to the operating system's @code{services} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18513 +#: guix-git/doc/guix.texi:18875 #, no-wrap msgid "" "(dropbear-service (dropbear-configuration\n" @@ -33773,110 +34501,110 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18516 +#: guix-git/doc/guix.texi:18878 #, no-wrap msgid "{Data Type} dropbear-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18518 +#: guix-git/doc/guix.texi:18880 msgid "This data type represents the configuration of a Dropbear SSH daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18520 +#: guix-git/doc/guix.texi:18882 #, no-wrap msgid "@code{dropbear} (default: @var{dropbear})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18522 +#: guix-git/doc/guix.texi:18884 msgid "The Dropbear package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18523 +#: guix-git/doc/guix.texi:18885 #, no-wrap msgid "@code{port-number} (default: 22)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18525 +#: guix-git/doc/guix.texi:18887 msgid "The TCP port where the daemon waits for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18526 +#: guix-git/doc/guix.texi:18888 #, no-wrap msgid "@code{syslog-output?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18528 +#: guix-git/doc/guix.texi:18890 msgid "Whether to enable syslog output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18529 +#: guix-git/doc/guix.texi:18891 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/dropbear.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18531 +#: guix-git/doc/guix.texi:18893 msgid "File name of the daemon's PID file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18532 +#: guix-git/doc/guix.texi:18894 #, no-wrap msgid "@code{root-login?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18534 +#: guix-git/doc/guix.texi:18896 msgid "Whether to allow @code{root} logins." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18537 +#: guix-git/doc/guix.texi:18899 msgid "Whether to allow empty passwords." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18540 +#: guix-git/doc/guix.texi:18902 msgid "Whether to enable password-based authentication." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18543 +#: guix-git/doc/guix.texi:18905 #, no-wrap msgid "AutoSSH" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18544 +#: guix-git/doc/guix.texi:18906 #, no-wrap msgid "{Scheme Variable} autossh-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: deffn -#: guix-git/doc/guix.texi:18552 +#: guix-git/doc/guix.texi:18914 msgid "This is the type for the @uref{https://www.harding.motd.ca/autossh, AutoSSH} program that runs a copy of @command{ssh} and monitors it, restarting it as necessary should it die or stop passing traffic. AutoSSH can be run manually from the command-line by passing arguments to the binary @command{autossh} from the package @code{autossh}, but it can also be run as a Guix service. This latter use case is documented here." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18556 +#: guix-git/doc/guix.texi:18918 msgid "AutoSSH can be used to forward local traffic to a remote machine using an SSH tunnel, and it respects the @file{~/.ssh/config} of the user it is run as." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18561 +#: guix-git/doc/guix.texi:18923 msgid "For example, to specify a service running autossh as the user @code{pino} and forwarding all local connections to port @code{8081} to @code{remote:8081} using an SSH tunnel, add this call to the operating system's @code{services} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18567 +#: guix-git/doc/guix.texi:18929 #, no-wrap msgid "" "(service autossh-service-type\n" @@ -33886,139 +34614,139 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18570 +#: guix-git/doc/guix.texi:18932 #, no-wrap msgid "{Data Type} autossh-configuration" msgstr "{Тип данных} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:18572 +#: guix-git/doc/guix.texi:18934 msgid "This data type represents the configuration of an AutoSSH service." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:18575 +#: guix-git/doc/guix.texi:18937 #, no-wrap msgid "@code{user} (default @code{\"autossh\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:18578 +#: guix-git/doc/guix.texi:18940 msgid "The user as which the AutoSSH service is to be run. This assumes that the specified user exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18579 +#: guix-git/doc/guix.texi:18941 #, no-wrap msgid "@code{poll} (default @code{600})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:18581 +#: guix-git/doc/guix.texi:18943 msgid "Specifies the connection poll time in seconds." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18582 +#: guix-git/doc/guix.texi:18944 #, no-wrap msgid "@code{first-poll} (default @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:18588 +#: guix-git/doc/guix.texi:18950 msgid "Specifies how many seconds AutoSSH waits before the first connection test. After this first test, polling is resumed at the pace defined in @code{poll}. When set to @code{#f}, the first poll is not treated specially and will also use the connection poll specified in @code{poll}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18589 +#: guix-git/doc/guix.texi:18951 #, no-wrap msgid "@code{gate-time} (default @code{30})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:18592 +#: guix-git/doc/guix.texi:18954 msgid "Specifies how many seconds an SSH connection must be active before it is considered successful." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18593 +#: guix-git/doc/guix.texi:18955 #, no-wrap msgid "@code{log-level} (default @code{1})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:18596 +#: guix-git/doc/guix.texi:18958 msgid "The log level, corresponding to the levels used by syslog---so @code{0} is the most silent while @code{7} is the chattiest." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18597 +#: guix-git/doc/guix.texi:18959 #, no-wrap msgid "@code{max-start} (default @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:18600 +#: guix-git/doc/guix.texi:18962 msgid "The maximum number of times SSH may be (re)started before AutoSSH exits. When set to @code{#f}, no maximum is configured and AutoSSH may restart indefinitely." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18601 +#: guix-git/doc/guix.texi:18963 #, no-wrap msgid "@code{message} (default @code{\"\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:18603 +#: guix-git/doc/guix.texi:18965 msgid "The message to append to the echo message sent when testing connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18604 +#: guix-git/doc/guix.texi:18966 #, no-wrap msgid "@code{port} (default @code{\"0\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:18614 +#: guix-git/doc/guix.texi:18976 msgid "The ports used for monitoring the connection. When set to @code{\"0\"}, monitoring is disabled. When set to @code{\"@var{n}\"} where @var{n} is a positive integer, ports @var{n} and @var{n}+1 are used for monitoring the connection, such that port @var{n} is the base monitoring port and @code{n+1} is the echo port. When set to @code{\"@var{n}:@var{m}\"} where @var{n} and @var{m} are positive integers, the ports @var{n} and @var{m} are used for monitoring the connection, such that port @var{n} is the base monitoring port and @var{m} is the echo port." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18615 +#: guix-git/doc/guix.texi:18977 #, no-wrap msgid "@code{ssh-options} (default @code{'()})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18619 +#: guix-git/doc/guix.texi:18981 msgid "The list of command-line arguments to pass to @command{ssh} when it is run. Options @option{-f} and @option{-M} are reserved for AutoSSH and may cause undefined behaviour." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18623 +#: guix-git/doc/guix.texi:18985 #, no-wrap msgid "WebSSH" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18624 +#: guix-git/doc/guix.texi:18986 #, no-wrap msgid "{Scheme Variable} webssh-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: deffn -#: guix-git/doc/guix.texi:18630 +#: guix-git/doc/guix.texi:18992 msgid "This is the type for the @uref{https://webssh.huashengdun.org/, WebSSH} program that runs a web SSH client. WebSSH can be run manually from the command-line by passing arguments to the binary @command{wssh} from the package @code{webssh}, but it can also be run as a Guix service. This latter use case is documented here." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18636 +#: guix-git/doc/guix.texi:18998 msgid "For example, to specify a service running WebSSH on loopback interface on port @code{8888} with reject policy with a list of allowed to connection hosts, and NGINX as a reverse-proxy to this service listening for HTTPS connection, add this call to the operating system's @code{services} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18644 +#: guix-git/doc/guix.texi:19006 #, no-wrap msgid "" "(service webssh-service-type\n" @@ -34031,7 +34759,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18660 +#: guix-git/doc/guix.texi:19022 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -34052,128 +34780,128 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18663 +#: guix-git/doc/guix.texi:19025 #, no-wrap msgid "{Data Type} webssh-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:18665 +#: guix-git/doc/guix.texi:19027 msgid "Data type representing the configuration for @code{webssh-service}." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:18667 +#: guix-git/doc/guix.texi:19029 #, no-wrap msgid "@code{package} (default: @var{webssh})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:18669 +#: guix-git/doc/guix.texi:19031 msgid "@code{webssh} package to use." msgstr "Используемый пакет @code{webssh}." #. type: item -#: guix-git/doc/guix.texi:18670 +#: guix-git/doc/guix.texi:19032 #, no-wrap msgid "@code{user-name} (default: @var{\"webssh\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:18673 +#: guix-git/doc/guix.texi:19035 msgid "User name or user ID that file transfers to and from that module should take place." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18674 +#: guix-git/doc/guix.texi:19036 #, no-wrap msgid "@code{group-name} (default: @var{\"webssh\"})" msgstr "@code{port} (default: @code{22})" #. type: item -#: guix-git/doc/guix.texi:18677 +#: guix-git/doc/guix.texi:19039 #, no-wrap msgid "@code{address} (default: @var{#f})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18679 +#: guix-git/doc/guix.texi:19041 msgid "IP address on which @command{webssh} listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18680 +#: guix-git/doc/guix.texi:19042 #, no-wrap msgid "@code{port} (default: @var{8888})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:18682 +#: guix-git/doc/guix.texi:19044 msgid "TCP port on which @command{webssh} listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18683 +#: guix-git/doc/guix.texi:19045 #, no-wrap msgid "@code{policy} (default: @var{#f})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:18685 +#: guix-git/doc/guix.texi:19047 msgid "Connection policy. @var{reject} policy requires to specify @var{known-hosts}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18686 +#: guix-git/doc/guix.texi:19048 #, no-wrap msgid "@code{known-hosts} (default: @var{'()})" msgstr "@code{inputs} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18688 +#: guix-git/doc/guix.texi:19050 msgid "List of hosts which allowed for SSH connection from @command{webssh}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18689 +#: guix-git/doc/guix.texi:19051 #, no-wrap msgid "@code{log-file} (default: @file{\"/var/log/webssh.log\"})" msgstr "@code{daemon-socket} (default: @code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:18691 +#: guix-git/doc/guix.texi:19053 msgid "Name of the file where @command{webssh} writes its log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18692 +#: guix-git/doc/guix.texi:19054 #, no-wrap msgid "@code{log-level} (default: @var{#f})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18694 +#: guix-git/doc/guix.texi:19056 msgid "Logging level." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18698 +#: guix-git/doc/guix.texi:19060 #, no-wrap msgid "{Scheme Variable} %facebook-host-aliases" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18704 +#: guix-git/doc/guix.texi:19066 msgid "This variable contains a string for use in @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). Each line contains a entry that maps a known server name of the Facebook on-line service---e.g., @code{www.facebook.com}---to the local host---@code{127.0.0.1} or its IPv6 equivalent, @code{::1}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18708 +#: guix-git/doc/guix.texi:19070 msgid "This variable is typically used in the @code{hosts-file} field of an @code{operating-system} declaration (@pxref{operating-system Reference, @file{/etc/hosts}}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18721 +#: guix-git/doc/guix.texi:19083 #, no-wrap msgid "" "(operating-system\n" @@ -34188,176 +34916,176 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18725 +#: guix-git/doc/guix.texi:19087 msgid "This mechanism can prevent programs running locally, such as Web browsers, from accessing Facebook." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18728 +#: guix-git/doc/guix.texi:19090 msgid "The @code{(gnu services avahi)} provides the following definition." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18729 +#: guix-git/doc/guix.texi:19091 #, no-wrap msgid "{Scheme Variable} avahi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18734 +#: guix-git/doc/guix.texi:19096 msgid "This is the service that runs @command{avahi-daemon}, a system-wide mDNS/DNS-SD responder that allows for service discovery and ``zero-configuration'' host name lookups (see @uref{https://avahi.org/}). Its value must be an @code{avahi-configuration} record---see below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18739 +#: guix-git/doc/guix.texi:19101 msgid "This service extends the name service cache daemon (nscd) so that it can resolve @code{.local} host names using @uref{https://0pointer.de/lennart/projects/nss-mdns/, nss-mdns}. @xref{Name Service Switch}, for information on host name resolution." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18742 +#: guix-git/doc/guix.texi:19104 msgid "Additionally, add the @var{avahi} package to the system profile so that commands such as @command{avahi-browse} are directly usable." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18744 +#: guix-git/doc/guix.texi:19106 #, no-wrap msgid "{Data Type} avahi-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18746 +#: guix-git/doc/guix.texi:19108 msgid "Data type representation the configuration for Avahi." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18749 +#: guix-git/doc/guix.texi:19111 #, no-wrap msgid "@code{host-name} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18752 +#: guix-git/doc/guix.texi:19114 msgid "If different from @code{#f}, use that as the host name to publish for this machine; otherwise, use the machine's actual host name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18753 guix-git/doc/guix.texi:29132 +#: guix-git/doc/guix.texi:19115 guix-git/doc/guix.texi:29469 #, no-wrap msgid "@code{publish?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18756 +#: guix-git/doc/guix.texi:19118 msgid "When true, allow host names and services to be published (broadcast) over the network." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18757 +#: guix-git/doc/guix.texi:19119 #, no-wrap msgid "@code{publish-workstation?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18761 +#: guix-git/doc/guix.texi:19123 msgid "When true, @command{avahi-daemon} publishes the machine's host name and IP address via mDNS on the local network. To view the host names published on your local network, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18764 +#: guix-git/doc/guix.texi:19126 #, no-wrap msgid "avahi-browse _workstation._tcp\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18766 +#: guix-git/doc/guix.texi:19128 #, no-wrap msgid "@code{wide-area?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18768 +#: guix-git/doc/guix.texi:19130 msgid "When true, DNS-SD over unicast DNS is enabled." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18769 +#: guix-git/doc/guix.texi:19131 #, no-wrap msgid "@code{ipv4?} (default: @code{#t})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:18770 +#: guix-git/doc/guix.texi:19132 #, no-wrap msgid "@code{ipv6?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18772 +#: guix-git/doc/guix.texi:19134 msgid "These fields determine whether to use IPv4/IPv6 sockets." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18773 +#: guix-git/doc/guix.texi:19135 #, no-wrap msgid "@code{domains-to-browse} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18775 +#: guix-git/doc/guix.texi:19137 msgid "This is a list of domains to browse." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18778 +#: guix-git/doc/guix.texi:19140 #, no-wrap msgid "{Scheme Variable} openvswitch-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18782 +#: guix-git/doc/guix.texi:19144 msgid "This is the type of the @uref{https://www.openvswitch.org, Open vSwitch} service, whose value should be an @code{openvswitch-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18784 +#: guix-git/doc/guix.texi:19146 #, no-wrap msgid "{Data Type} openvswitch-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18788 +#: guix-git/doc/guix.texi:19150 msgid "Data type representing the configuration of Open vSwitch, a multilayer virtual switch which is designed to enable massive network automation through programmatic extension." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18790 +#: guix-git/doc/guix.texi:19152 #, no-wrap msgid "@code{package} (default: @var{openvswitch})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18792 +#: guix-git/doc/guix.texi:19154 msgid "Package object of the Open vSwitch." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18796 +#: guix-git/doc/guix.texi:19158 #, no-wrap msgid "{Scheme Variable} pagekite-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18801 +#: guix-git/doc/guix.texi:19163 msgid "This is the service type for the @uref{https://pagekite.net, PageKite} service, a tunneling solution for making localhost servers publicly visible, even from behind restrictive firewalls or NAT without forwarded ports. The value for this service type is a @code{pagekite-configuration} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18803 +#: guix-git/doc/guix.texi:19165 msgid "Here's an example exposing the local HTTP and SSH daemons:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18810 +#: guix-git/doc/guix.texi:19172 #, no-wrap msgid "" "(service pagekite-service-type\n" @@ -34368,110 +35096,110 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18813 +#: guix-git/doc/guix.texi:19175 #, no-wrap msgid "{Data Type} pagekite-configuration" msgstr "{Data Type} pagekite-configuration" #. type: deftp -#: guix-git/doc/guix.texi:18815 +#: guix-git/doc/guix.texi:19177 msgid "Data type representing the configuration of PageKite." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:18817 +#: guix-git/doc/guix.texi:19179 #, no-wrap msgid "@code{package} (default: @var{pagekite})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:18819 +#: guix-git/doc/guix.texi:19181 msgid "Package object of PageKite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18820 +#: guix-git/doc/guix.texi:19182 #, no-wrap msgid "@code{kitename} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:18822 +#: guix-git/doc/guix.texi:19184 msgid "PageKite name for authenticating to the frontend server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18823 +#: guix-git/doc/guix.texi:19185 #, no-wrap msgid "@code{kitesecret} (default: @code{#f})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:18826 +#: guix-git/doc/guix.texi:19188 msgid "Shared secret for authenticating to the frontend server. You should probably put this inside @code{extra-file} instead." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18827 +#: guix-git/doc/guix.texi:19189 #, no-wrap msgid "@code{frontend} (default: @code{#f})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:18830 +#: guix-git/doc/guix.texi:19192 msgid "Connect to the named PageKite frontend server instead of the @uref{https://pagekite.net,,pagekite.net} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18831 +#: guix-git/doc/guix.texi:19193 #, no-wrap msgid "@code{kites} (default: @code{'(\"http:@@kitename:localhost:80:@@kitesecret\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18834 +#: guix-git/doc/guix.texi:19196 msgid "List of service kites to use. Exposes HTTP on port 80 by default. The format is @code{proto:kitename:host:port:secret}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18835 +#: guix-git/doc/guix.texi:19197 #, no-wrap msgid "@code{extra-file} (default: @code{#f})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:18838 +#: guix-git/doc/guix.texi:19200 msgid "Extra configuration file to read, which you are expected to create manually. Use this to add additional options and manage shared secrets out-of-band." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18842 +#: guix-git/doc/guix.texi:19204 #, no-wrap msgid "{Scheme Variable} yggdrasil-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:18846 +#: guix-git/doc/guix.texi:19208 msgid "The service type for connecting to the @uref{https://yggdrasil-network.github.io/, Yggdrasil network}, an early-stage implementation of a fully end-to-end encrypted IPv6 network." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:18853 +#: guix-git/doc/guix.texi:19215 msgid "Yggdrasil provides name-independent routing with cryptographically generated addresses. Static addressing means you can keep the same address as long as you want, even if you move to a new location, or generate a new address (by generating new keys) whenever you want. @uref{https://yggdrasil-network.github.io/2018/07/28/addressing.html}" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18857 +#: guix-git/doc/guix.texi:19219 msgid "Pass it a value of @code{yggdrasil-configuration} to connect it to public peers and/or local peers." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18861 +#: guix-git/doc/guix.texi:19223 msgid "Here is an example using public peers and a static address. The static signing and encryption keys are defined in @file{/etc/yggdrasil-private.conf} (the default value for @code{config-file})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18873 +#: guix-git/doc/guix.texi:19235 #, no-wrap msgid "" ";; part of the operating-system declaration\n" @@ -34487,7 +35215,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18880 +#: guix-git/doc/guix.texi:19242 #, no-wrap msgid "" "# sample content for /etc/yggdrasil-private.conf\n" @@ -34499,7 +35227,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18883 +#: guix-git/doc/guix.texi:19245 #, no-wrap msgid "" " # Your private encryption key. DO NOT share this with anyone!\n" @@ -34508,7 +35236,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18887 +#: guix-git/doc/guix.texi:19249 #, no-wrap msgid "" " # Your public signing key. You should not ordinarily need to share\n" @@ -34518,7 +35246,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18891 +#: guix-git/doc/guix.texi:19253 #, no-wrap msgid "" " # Your private signing key. DO NOT share this with anyone!\n" @@ -34527,124 +35255,124 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18894 +#: guix-git/doc/guix.texi:19256 #, no-wrap msgid "{Data Type} yggdrasil-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:18896 +#: guix-git/doc/guix.texi:19258 msgid "Data type representing the configuration of Yggdrasil." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:18898 +#: guix-git/doc/guix.texi:19260 #, no-wrap msgid "@code{package} (default: @code{yggdrasil})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:18900 +#: guix-git/doc/guix.texi:19262 msgid "Package object of Yggdrasil." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18901 +#: guix-git/doc/guix.texi:19263 #, no-wrap msgid "@code{json-config} (default: @code{'()})" msgstr "@code{inputs} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18907 +#: guix-git/doc/guix.texi:19269 msgid "Contents of @file{/etc/yggdrasil.conf}. Will be merged with @file{/etc/yggdrasil-private.conf}. Note that these settings are stored in the Guix store, which is readable to all users. @strong{Do not store your private keys in it}. See the output of @code{yggdrasil -genconf} for a quick overview of valid keys and their default values." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18908 +#: guix-git/doc/guix.texi:19270 #, no-wrap msgid "@code{autoconf?} (default: @code{#f})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18911 +#: guix-git/doc/guix.texi:19273 msgid "Whether to use automatic mode. Enabling it makes Yggdrasil use adynamic IP and peer with IPv6 neighbors." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18914 +#: guix-git/doc/guix.texi:19276 msgid "How much detail to include in logs. Use @code{'debug} for more detail." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18915 +#: guix-git/doc/guix.texi:19277 #, no-wrap msgid "@code{log-to} (default: @code{'stdout})" msgstr "@code{outputs} (default: @code{'(\"out\")})" #. type: table -#: guix-git/doc/guix.texi:18919 +#: guix-git/doc/guix.texi:19281 msgid "Where to send logs. By default, the service logs standard output to @file{/var/log/yggdrasil.log}. The alternative is @code{'syslog}, which sends output to the running syslog service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18920 +#: guix-git/doc/guix.texi:19282 #, no-wrap msgid "@code{config-file} (default: @code{\"/etc/yggdrasil-private.conf\"})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:18927 +#: guix-git/doc/guix.texi:19289 msgid "What HJSON file to load sensitive data from. This is where private keys should be stored, which are necessary to specify if you don't want a randomized address after each restart. Use @code{#f} to disable. Options defined in this file take precedence over @code{json-config}. Use the output of @code{yggdrasil -genconf} as a starting point. To configure a static address, delete everything except these options:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18929 +#: guix-git/doc/guix.texi:19291 #, no-wrap msgid "EncryptionPublicKey" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18930 +#: guix-git/doc/guix.texi:19292 #, no-wrap msgid "EncryptionPrivateKey" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18931 +#: guix-git/doc/guix.texi:19293 #, no-wrap msgid "SigningPublicKey" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18932 +#: guix-git/doc/guix.texi:19294 #, no-wrap msgid "SigningPrivateKey" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18937 +#: guix-git/doc/guix.texi:19299 #, no-wrap msgid "IPFS" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18938 +#: guix-git/doc/guix.texi:19300 #, no-wrap msgid "{Scheme Variable} ipfs-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:18942 +#: guix-git/doc/guix.texi:19304 msgid "The service type for connecting to the @uref{https://ipfs.io,IPFS network}, a global, versioned, peer-to-peer file system. Pass it a @code{ipfs-configuration} to change the ports used for the gateway and API." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18944 +#: guix-git/doc/guix.texi:19306 msgid "Here's an example configuration, using some non-standard ports:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18950 +#: guix-git/doc/guix.texi:19312 #, no-wrap msgid "" "(service ipfs-service-type\n" @@ -34658,68 +35386,68 @@ msgstr "" " (use-substitutes? #f)))\n" #. type: deftp -#: guix-git/doc/guix.texi:18953 +#: guix-git/doc/guix.texi:19315 #, no-wrap msgid "{Data Type} ipfs-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:18955 +#: guix-git/doc/guix.texi:19317 msgid "Data type representing the configuration of IPFS." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:18957 +#: guix-git/doc/guix.texi:19319 #, no-wrap msgid "@code{package} (default: @code{go-ipfs})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:18959 +#: guix-git/doc/guix.texi:19321 msgid "Package object of IPFS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18960 +#: guix-git/doc/guix.texi:19322 #, no-wrap msgid "@code{gateway} (default: @code{\"/ip4/127.0.0.1/tcp/8082\"})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:18962 +#: guix-git/doc/guix.texi:19324 msgid "Address of the gateway, in ‘multiaddress’ format." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18963 +#: guix-git/doc/guix.texi:19325 #, no-wrap msgid "@code{api} (default: @code{\"/ip4/127.0.0.1/tcp/5001\"})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:18965 +#: guix-git/doc/guix.texi:19327 msgid "Address of the API endpoint, in ‘multiaddress’ format." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18968 +#: guix-git/doc/guix.texi:19330 #, no-wrap msgid "keepalived" msgstr "--keep-failed" #. type: deffn -#: guix-git/doc/guix.texi:18969 +#: guix-git/doc/guix.texi:19331 #, no-wrap msgid "{Scheme Variable} keepalived-service-type" msgstr "{Scheme Variable} profile-service-type" #. type: deffn -#: guix-git/doc/guix.texi:18974 +#: guix-git/doc/guix.texi:19336 msgid "This is the type for the @uref{https://www.keepalived.org/, Keepalived} routing software, @command{keepalived}. Its value must be an @code{keepalived-configuration} record as in this example for master machine:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18979 +#: guix-git/doc/guix.texi:19341 #, no-wrap msgid "" "(service keepalived-service-type\n" @@ -34731,12 +35459,12 @@ msgstr "" " (config-file (local-file \"keepalived-master.conf\"))))\n" #. type: deffn -#: guix-git/doc/guix.texi:18982 +#: guix-git/doc/guix.texi:19344 msgid "where @file{keepalived-master.conf}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18994 +#: guix-git/doc/guix.texi:19356 #, no-wrap msgid "" "vrrp_instance my-group @{\n" @@ -34752,12 +35480,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18997 +#: guix-git/doc/guix.texi:19359 msgid "and for backup machine:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19002 +#: guix-git/doc/guix.texi:19364 #, no-wrap msgid "" "(service keepalived-service-type\n" @@ -34769,12 +35497,12 @@ msgstr "" " (config-file (local-file \"keepalived-backup.conf\"))))\n" #. type: deffn -#: guix-git/doc/guix.texi:19005 +#: guix-git/doc/guix.texi:19367 msgid "where @file{keepalived-backup.conf}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:19017 +#: guix-git/doc/guix.texi:19379 #, no-wrap msgid "" "vrrp_instance my-group @{\n" @@ -34790,135 +35518,135 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19023 +#: guix-git/doc/guix.texi:19385 #, no-wrap msgid "unattended upgrades" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19024 +#: guix-git/doc/guix.texi:19386 #, no-wrap msgid "upgrades, unattended" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19029 +#: guix-git/doc/guix.texi:19391 msgid "Guix provides a service to perform @emph{unattended upgrades}: periodically, the system automatically reconfigures itself from the latest Guix. Guix System has several properties that make unattended upgrades safe:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19034 +#: guix-git/doc/guix.texi:19396 msgid "upgrades are transactional (either the upgrade succeeds or it fails, but you cannot end up with an ``in-between'' system state);" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19038 +#: guix-git/doc/guix.texi:19400 msgid "the upgrade log is kept---you can view it with @command{guix system list-generations}---and you can roll back to any previous generation, should the upgraded system fail to behave as intended;" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19041 +#: guix-git/doc/guix.texi:19403 msgid "channel code is authenticated so you know you can only run genuine code (@pxref{Channels});" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19044 +#: guix-git/doc/guix.texi:19406 msgid "@command{guix system reconfigure} prevents downgrades, which makes it immune to @dfn{downgrade attacks}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19049 +#: guix-git/doc/guix.texi:19411 msgid "To set up unattended upgrades, add an instance of @code{unattended-upgrade-service-type} like the one below to the list of your operating system services:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19052 +#: guix-git/doc/guix.texi:19414 #, no-wrap msgid "(service unattended-upgrade-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19059 +#: guix-git/doc/guix.texi:19421 msgid "The defaults above set up weekly upgrades: every Sunday at midnight. You do not need to provide the operating system configuration file: it uses @file{/run/current-system/configuration.scm}, which ensures it always uses your latest configuration---@pxref{provenance-service-type}, for more information about this file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19065 +#: guix-git/doc/guix.texi:19427 msgid "There are several things that can be configured, in particular the periodicity and services (daemons) to be restarted upon completion. When the upgrade is successful, the service takes care of deleting system generations older that some threshold, as per @command{guix system delete-generations}. See the reference below for details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19069 +#: guix-git/doc/guix.texi:19431 msgid "To ensure that upgrades are actually happening, you can run @command{guix system describe}. To investigate upgrade failures, visit the unattended upgrade log file (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19070 +#: guix-git/doc/guix.texi:19432 #, no-wrap msgid "{Scheme Variable} unattended-upgrade-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:19074 +#: guix-git/doc/guix.texi:19436 msgid "This is the service type for unattended upgrades. It sets up an mcron job (@pxref{Scheduled Job Execution}) that runs @command{guix system reconfigure} from the latest version of the specified channels." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19077 +#: guix-git/doc/guix.texi:19439 msgid "Its value must be a @code{unattended-upgrade-configuration} record (see below)." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19079 +#: guix-git/doc/guix.texi:19441 #, no-wrap msgid "{Data Type} unattended-upgrade-configuration" msgstr "{Тип данных} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:19082 +#: guix-git/doc/guix.texi:19444 msgid "This data type represents the configuration of the unattended upgrade service. The following fields are available:" msgstr "Этот тип данных представляет машины для сборки, на которые демон может разгружать сборки. Важные поля:" #. type: item -#: guix-git/doc/guix.texi:19084 +#: guix-git/doc/guix.texi:19446 #, no-wrap msgid "@code{schedule} (default: @code{\"30 01 * * 0\"})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:19088 +#: guix-git/doc/guix.texi:19450 msgid "This is the schedule of upgrades, expressed as a gexp containing an mcron job schedule (@pxref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19089 +#: guix-git/doc/guix.texi:19451 #, no-wrap msgid "@code{channels} (default: @code{#~%default-channels})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:19093 +#: guix-git/doc/guix.texi:19455 msgid "This gexp specifies the channels to use for the upgrade (@pxref{Channels}). By default, the tip of the official @code{guix} channel is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19094 +#: guix-git/doc/guix.texi:19456 #, no-wrap msgid "@code{operating-system-file} (default: @code{\"/run/current-system/configuration.scm\"})" msgstr "@code{daemon-socket} (default: @code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:19097 +#: guix-git/doc/guix.texi:19459 msgid "This field specifies the operating system configuration file to use. The default is to reuse the config file of the current configuration." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19103 +#: guix-git/doc/guix.texi:19465 msgid "There are cases, though, where referring to @file{/run/current-system/configuration.scm} is not enough, for instance because that file refers to extra files (SSH public keys, extra configuration files, etc.) @i{via} @code{local-file} and similar constructs. For those cases, we recommend something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19109 +#: guix-git/doc/guix.texi:19471 #, no-wrap msgid "" "(unattended-upgrade-configuration\n" @@ -34928,315 +35656,315 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19116 +#: guix-git/doc/guix.texi:19478 msgid "The effect here is to import all of the current directory into the store, and to refer to @file{config.scm} within that directory. Therefore, uses of @code{local-file} within @file{config.scm} will work as expected. @xref{G-Expressions}, for information about @code{local-file} and @code{file-append}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19117 +#: guix-git/doc/guix.texi:19479 #, no-wrap msgid "@code{services-to-restart} (default: @code{'(mcron)})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:19120 +#: guix-git/doc/guix.texi:19482 msgid "This field specifies the Shepherd services to restart when the upgrade completes." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19127 +#: guix-git/doc/guix.texi:19489 msgid "Those services are restarted right away upon completion, as with @command{herd restart}, which ensures that the latest version is running---remember that by default @command{guix system reconfigure} only restarts services that are not currently running, which is conservative: it minimizes disruption but leaves outdated services running." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19131 +#: guix-git/doc/guix.texi:19493 msgid "Use @command{herd status} to find out candidates for restarting. @xref{Services}, for general information about services. Common services to restart would include @code{ntpd} and @code{ssh-daemon}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19134 +#: guix-git/doc/guix.texi:19496 msgid "By default, the @code{mcron} service is restarted. This ensures that the latest version of the unattended upgrade job will be used next time." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19135 +#: guix-git/doc/guix.texi:19497 #, no-wrap msgid "@code{system-expiration} (default: @code{(* 3 30 24 3600)})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:19139 +#: guix-git/doc/guix.texi:19501 msgid "This is the expiration time in seconds for system generations. System generations older that this amount of time are deleted with @command{guix system delete-generations} when an upgrade completes." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:19144 +#: guix-git/doc/guix.texi:19506 msgid "The unattended upgrade service does not run the garbage collector. You will probably want to set up your own mcron job to run @command{guix gc} periodically." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19146 +#: guix-git/doc/guix.texi:19508 #, no-wrap msgid "@code{maximum-duration} (default: @code{3600})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:19149 +#: guix-git/doc/guix.texi:19511 msgid "Maximum duration in seconds for the upgrade; past that time, the upgrade aborts." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19152 +#: guix-git/doc/guix.texi:19514 msgid "This is primarily useful to ensure the upgrade does not end up rebuilding or re-downloading ``the world''." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19153 +#: guix-git/doc/guix.texi:19515 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/unattended-upgrade.log\"})" msgstr "@code{daemon-socket} (default: @code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:19155 +#: guix-git/doc/guix.texi:19517 msgid "File where unattended upgrades are logged." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19161 +#: guix-git/doc/guix.texi:19523 #, no-wrap msgid "X11" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19162 +#: guix-git/doc/guix.texi:19524 #, no-wrap msgid "X Window System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19163 guix-git/doc/guix.texi:19436 +#: guix-git/doc/guix.texi:19525 guix-git/doc/guix.texi:19798 #, no-wrap msgid "login manager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19168 +#: guix-git/doc/guix.texi:19530 msgid "Support for the X Window graphical display system---specifically Xorg---is provided by the @code{(gnu services xorg)} module. Note that there is no @code{xorg-service} procedure. Instead, the X server is started by the @dfn{login manager}, by default the GNOME Display Manager (GDM)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19169 +#: guix-git/doc/guix.texi:19531 #, no-wrap msgid "GDM" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19170 +#: guix-git/doc/guix.texi:19532 #, no-wrap msgid "GNOME, login manager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19174 +#: guix-git/doc/guix.texi:19536 msgid "GDM of course allows users to log in into window managers and desktop environments other than GNOME; for those using GNOME, GDM is required for features such as automatic screen locking." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19175 +#: guix-git/doc/guix.texi:19537 #, no-wrap msgid "window manager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19180 +#: guix-git/doc/guix.texi:19542 msgid "To use X11, you must install at least one @dfn{window manager}---for example the @code{windowmaker} or @code{openbox} packages---preferably by adding it to the @code{packages} field of your operating system definition (@pxref{operating-system Reference, system-wide packages})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:19186 +#: guix-git/doc/guix.texi:19548 msgid "wayland-gdm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19186 +#: guix-git/doc/guix.texi:19548 msgid "GDM also supports Wayland: it can itself use Wayland instead of X11 for its user interface, and it can also start Wayland sessions. The former is required for the latter, to enable, set @code{wayland?} to @code{#t} in @code{gdm-configuration}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19187 +#: guix-git/doc/guix.texi:19549 #, no-wrap msgid "{Scheme Variable} gdm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19192 +#: guix-git/doc/guix.texi:19554 msgid "This is the type for the @uref{https://wiki.gnome.org/Projects/GDM/, GNOME Desktop Manager} (GDM), a program that manages graphical display servers and handles graphical user logins. Its value must be a @code{gdm-configuration} (see below)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19193 +#: guix-git/doc/guix.texi:19555 #, fuzzy, no-wrap #| msgid "service types" msgid "session types" msgstr "service types" #. type: defvr -#: guix-git/doc/guix.texi:19201 +#: guix-git/doc/guix.texi:19563 msgid "GDM looks for @dfn{session types} described by the @file{.desktop} files in @file{/run/current-system/profile/share/xsessions} (for X11 sessions) and @file{/run/current-system/profile/share/wayland-sessions} (for Wayland sessions) and allows users to choose a session from the log-in screen. Packages such as @code{gnome}, @code{xfce}, @code{i3} and @code{sway} provide @file{.desktop} files; adding them to the system-wide set of packages automatically makes them available at the log-in screen." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19205 +#: guix-git/doc/guix.texi:19567 msgid "In addition, @file{~/.xsession} files are honored. When available, @file{~/.xsession} must be an executable that starts a window manager and/or other X clients." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19207 +#: guix-git/doc/guix.texi:19569 #, no-wrap msgid "{Data Type} gdm-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19209 guix-git/doc/guix.texi:19291 +#: guix-git/doc/guix.texi:19571 guix-git/doc/guix.texi:19653 #, no-wrap msgid "@code{auto-login?} (default: @code{#f})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:19210 +#: guix-git/doc/guix.texi:19572 #, no-wrap msgid "@code{default-user} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19212 +#: guix-git/doc/guix.texi:19574 msgid "When @code{auto-login?} is false, GDM presents a log-in screen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19215 +#: guix-git/doc/guix.texi:19577 msgid "When @code{auto-login?} is true, GDM logs in directly as @code{default-user}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19216 guix-git/doc/guix.texi:25077 -#: guix-git/doc/guix.texi:26786 guix-git/doc/guix.texi:31266 -#: guix-git/doc/guix.texi:31295 guix-git/doc/guix.texi:31324 -#: guix-git/doc/guix.texi:31351 guix-git/doc/guix.texi:31406 -#: guix-git/doc/guix.texi:31431 guix-git/doc/guix.texi:31458 -#: guix-git/doc/guix.texi:31484 guix-git/doc/guix.texi:31526 +#: guix-git/doc/guix.texi:19578 guix-git/doc/guix.texi:25439 +#: guix-git/doc/guix.texi:27123 guix-git/doc/guix.texi:31631 +#: guix-git/doc/guix.texi:31660 guix-git/doc/guix.texi:31689 +#: guix-git/doc/guix.texi:31716 guix-git/doc/guix.texi:31771 +#: guix-git/doc/guix.texi:31796 guix-git/doc/guix.texi:31823 +#: guix-git/doc/guix.texi:31849 guix-git/doc/guix.texi:31891 #, no-wrap msgid "@code{debug?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19218 +#: guix-git/doc/guix.texi:19580 msgid "When true, GDM writes debug messages to its log." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19219 +#: guix-git/doc/guix.texi:19581 #, no-wrap msgid "@code{gnome-shell-assets} (default: ...)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19221 +#: guix-git/doc/guix.texi:19583 msgid "List of GNOME Shell assets needed by GDM: icon theme, fonts, etc." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19222 +#: guix-git/doc/guix.texi:19584 #, no-wrap msgid "@code{xorg-configuration} (default: @code{(xorg-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19224 guix-git/doc/guix.texi:19318 -#: guix-git/doc/guix.texi:19402 +#: guix-git/doc/guix.texi:19586 guix-git/doc/guix.texi:19680 +#: guix-git/doc/guix.texi:19764 msgid "Configuration of the Xorg graphical server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19225 +#: guix-git/doc/guix.texi:19587 #, no-wrap msgid "@code{xsession} (default: @code{(xinitrc)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19227 guix-git/doc/guix.texi:19417 +#: guix-git/doc/guix.texi:19589 guix-git/doc/guix.texi:19779 msgid "Script to run before starting a X session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19228 +#: guix-git/doc/guix.texi:19590 #, no-wrap msgid "@code{dbus-daemon} (default: @code{dbus-daemon-wrapper})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19230 +#: guix-git/doc/guix.texi:19592 msgid "File name of the @code{dbus-daemon} executable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19231 +#: guix-git/doc/guix.texi:19593 #, no-wrap msgid "@code{gdm} (default: @code{gdm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19233 +#: guix-git/doc/guix.texi:19595 msgid "The GDM package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19234 +#: guix-git/doc/guix.texi:19596 #, fuzzy, no-wrap #| msgid "@code{lang} (default: @code{#f})" msgid "@code{wayland?} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:19236 +#: guix-git/doc/guix.texi:19598 msgid "When true, enables Wayland in GDM, necessary to use Wayland sessions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19237 +#: guix-git/doc/guix.texi:19599 #, fuzzy, no-wrap #| msgid "@code{laminar} (default: @code{laminar})" msgid "@code{wayland-session} (default: @code{gdm-wayland-session-wrapper})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:19240 +#: guix-git/doc/guix.texi:19602 msgid "The Wayland session wrapper to use, needed to setup the environment." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19243 +#: guix-git/doc/guix.texi:19605 #, no-wrap msgid "{Scheme Variable} slim-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19245 +#: guix-git/doc/guix.texi:19607 msgid "This is the type for the SLiM graphical login manager for X11." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19249 +#: guix-git/doc/guix.texi:19611 msgid "Like GDM, SLiM looks for session types described by @file{.desktop} files and allows users to choose a session from the log-in screen using @kbd{F1}. It also honors @file{~/.xsession} files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19256 +#: guix-git/doc/guix.texi:19618 msgid "Unlike GDM, SLiM does not spawn the user session on a different VT after logging in, which means that you can only start one graphical session. If you want to be able to run multiple graphical sessions at the same time you have to add multiple SLiM services to your system services. The following example shows how to replace the default GDM service with two SLiM services on tty7 and tty8." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19261 +#: guix-git/doc/guix.texi:19623 #, fuzzy, no-wrap #| msgid "" #| "(use-modules (gnu services)\n" @@ -35257,7 +35985,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:19272 +#: guix-git/doc/guix.texi:19634 #, no-wrap msgid "" "(operating-system\n" @@ -35273,492 +36001,492 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19276 +#: guix-git/doc/guix.texi:19638 #, no-wrap msgid "{Data Type} slim-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19278 +#: guix-git/doc/guix.texi:19640 msgid "Data type representing the configuration of @code{slim-service-type}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19282 +#: guix-git/doc/guix.texi:19644 msgid "Whether to allow logins with empty passwords." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19283 +#: guix-git/doc/guix.texi:19645 #, fuzzy, no-wrap #| msgid "@code{lang} (default: @code{#f})" msgid "@code{gnupg?} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:19290 +#: guix-git/doc/guix.texi:19652 msgid "If enabled, @code{pam-gnupg} will attempt to automatically unlock the user's GPG keys with the login password via @code{gpg-agent}. The keygrips of all keys to be unlocked should be written to @file{~/.pam-gnupg}, and can be queried with @code{gpg -K --with-keygrip}. Presetting passphrases must be enabled by adding @code{allow-preset-passphrase} in @file{~/.gnupg/gpg-agent.conf}." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:19292 +#: guix-git/doc/guix.texi:19654 #, no-wrap msgid "@code{default-user} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19294 +#: guix-git/doc/guix.texi:19656 msgid "When @code{auto-login?} is false, SLiM presents a log-in screen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19297 +#: guix-git/doc/guix.texi:19659 msgid "When @code{auto-login?} is true, SLiM logs in directly as @code{default-user}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19298 +#: guix-git/doc/guix.texi:19660 #, no-wrap msgid "@code{theme} (default: @code{%default-slim-theme})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:19299 +#: guix-git/doc/guix.texi:19661 #, no-wrap msgid "@code{theme-name} (default: @code{%default-slim-theme-name})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19301 +#: guix-git/doc/guix.texi:19663 msgid "The graphical theme to use and its name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19302 +#: guix-git/doc/guix.texi:19664 #, no-wrap msgid "@code{auto-login-session} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19305 +#: guix-git/doc/guix.texi:19667 msgid "If true, this must be the name of the executable to start as the default session---e.g., @code{(file-append windowmaker \"/bin/windowmaker\")}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19309 +#: guix-git/doc/guix.texi:19671 msgid "If false, a session described by one of the available @file{.desktop} files in @code{/run/current-system/profile} and @code{~/.guix-profile} will be used." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:19314 +#: guix-git/doc/guix.texi:19676 msgid "You must install at least one window manager in the system profile or in your user profile. Failing to do that, if @code{auto-login-session} is false, you will be unable to log in." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19316 guix-git/doc/guix.texi:19400 +#: guix-git/doc/guix.texi:19678 guix-git/doc/guix.texi:19762 #, no-wrap msgid "@code{xorg-configuration} (default @code{(xorg-configuration)})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19319 +#: guix-git/doc/guix.texi:19681 #, no-wrap msgid "@code{display} (default @code{\":0\"})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:19321 +#: guix-git/doc/guix.texi:19683 msgid "The display on which to start the Xorg graphical server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19322 +#: guix-git/doc/guix.texi:19684 #, no-wrap msgid "@code{vt} (default @code{\"vt7\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:19324 +#: guix-git/doc/guix.texi:19686 msgid "The VT on which to start the Xorg graphical server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19325 +#: guix-git/doc/guix.texi:19687 #, no-wrap msgid "@code{xauth} (default: @code{xauth})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19327 +#: guix-git/doc/guix.texi:19689 msgid "The XAuth package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19328 +#: guix-git/doc/guix.texi:19690 #, no-wrap msgid "@code{shepherd} (default: @code{shepherd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19331 +#: guix-git/doc/guix.texi:19693 msgid "The Shepherd package used when invoking @command{halt} and @command{reboot}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19332 +#: guix-git/doc/guix.texi:19694 #, no-wrap msgid "@code{sessreg} (default: @code{sessreg})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19334 +#: guix-git/doc/guix.texi:19696 msgid "The sessreg package used in order to register the session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19335 +#: guix-git/doc/guix.texi:19697 #, no-wrap msgid "@code{slim} (default: @code{slim})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19337 +#: guix-git/doc/guix.texi:19699 msgid "The SLiM package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19340 +#: guix-git/doc/guix.texi:19702 #, no-wrap msgid "{Scheme Variable} %default-theme" msgstr "" #. type: defvrx -#: guix-git/doc/guix.texi:19341 +#: guix-git/doc/guix.texi:19703 #, no-wrap msgid "{Scheme Variable} %default-theme-name" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19343 +#: guix-git/doc/guix.texi:19705 msgid "The default SLiM theme and its name." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19346 guix-git/doc/guix.texi:19453 +#: guix-git/doc/guix.texi:19708 guix-git/doc/guix.texi:19815 #, no-wrap msgid "{Data Type} sddm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19348 +#: guix-git/doc/guix.texi:19710 msgid "This is the data type representing the SDDM service configuration." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:19350 +#: guix-git/doc/guix.texi:19712 #, no-wrap msgid "@code{display-server} (default: \"x11\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19353 +#: guix-git/doc/guix.texi:19715 msgid "Select display server to use for the greeter. Valid values are @samp{\"x11\"} or @samp{\"wayland\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19354 +#: guix-git/doc/guix.texi:19716 #, no-wrap msgid "@code{numlock} (default: \"on\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19356 +#: guix-git/doc/guix.texi:19718 msgid "Valid values are @samp{\"on\"}, @samp{\"off\"} or @samp{\"none\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19357 +#: guix-git/doc/guix.texi:19719 #, no-wrap msgid "@code{halt-command} (default @code{#~(string-apppend #$shepherd \"/sbin/halt\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19359 +#: guix-git/doc/guix.texi:19721 msgid "Command to run when halting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19360 +#: guix-git/doc/guix.texi:19722 #, no-wrap msgid "@code{reboot-command} (default @code{#~(string-append #$shepherd \"/sbin/reboot\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19362 +#: guix-git/doc/guix.texi:19724 msgid "Command to run when rebooting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19363 +#: guix-git/doc/guix.texi:19725 #, no-wrap msgid "@code{theme} (default \"maldives\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19366 +#: guix-git/doc/guix.texi:19728 msgid "Theme to use. Default themes provided by SDDM are @samp{\"elarun\"}, @samp{\"maldives\"} or @samp{\"maya\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19367 +#: guix-git/doc/guix.texi:19729 #, no-wrap msgid "@code{themes-directory} (default \"/run/current-system/profile/share/sddm/themes\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19369 +#: guix-git/doc/guix.texi:19731 msgid "Directory to look for themes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19370 +#: guix-git/doc/guix.texi:19732 #, no-wrap msgid "@code{faces-directory} (default \"/run/current-system/profile/share/sddm/faces\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19372 +#: guix-git/doc/guix.texi:19734 msgid "Directory to look for faces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19373 +#: guix-git/doc/guix.texi:19735 #, no-wrap msgid "@code{default-path} (default \"/run/current-system/profile/bin\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19375 +#: guix-git/doc/guix.texi:19737 msgid "Default PATH to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19376 +#: guix-git/doc/guix.texi:19738 #, no-wrap msgid "@code{minimum-uid} (default: 1000)" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:19378 +#: guix-git/doc/guix.texi:19740 msgid "Minimum UID displayed in SDDM and allowed for log-in." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19379 +#: guix-git/doc/guix.texi:19741 #, no-wrap msgid "@code{maximum-uid} (default: 2000)" msgstr "@code{parallel-builds} (default: @code{1})" #. type: table -#: guix-git/doc/guix.texi:19381 +#: guix-git/doc/guix.texi:19743 msgid "Maximum UID to display in SDDM." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19382 +#: guix-git/doc/guix.texi:19744 #, no-wrap msgid "@code{remember-last-user?} (default #t)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19384 +#: guix-git/doc/guix.texi:19746 msgid "Remember last user." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19385 +#: guix-git/doc/guix.texi:19747 #, no-wrap msgid "@code{remember-last-session?} (default #t)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19387 +#: guix-git/doc/guix.texi:19749 msgid "Remember last session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19388 +#: guix-git/doc/guix.texi:19750 #, no-wrap msgid "@code{hide-users} (default \"\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19390 +#: guix-git/doc/guix.texi:19752 msgid "Usernames to hide from SDDM greeter." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19391 +#: guix-git/doc/guix.texi:19753 #, no-wrap msgid "@code{hide-shells} (default @code{#~(string-append #$shadow \"/sbin/nologin\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19393 +#: guix-git/doc/guix.texi:19755 msgid "Users with shells listed will be hidden from the SDDM greeter." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19394 +#: guix-git/doc/guix.texi:19756 #, no-wrap msgid "@code{session-command} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/wayland-session\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19396 +#: guix-git/doc/guix.texi:19758 msgid "Script to run before starting a wayland session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19397 +#: guix-git/doc/guix.texi:19759 #, no-wrap msgid "@code{sessions-directory} (default \"/run/current-system/profile/share/wayland-sessions\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19399 +#: guix-git/doc/guix.texi:19761 msgid "Directory to look for desktop files starting wayland sessions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19403 +#: guix-git/doc/guix.texi:19765 #, no-wrap msgid "@code{xauth-path} (default @code{#~(string-append #$xauth \"/bin/xauth\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19405 +#: guix-git/doc/guix.texi:19767 msgid "Path to xauth." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19406 +#: guix-git/doc/guix.texi:19768 #, no-wrap msgid "@code{xephyr-path} (default @code{#~(string-append #$xorg-server \"/bin/Xephyr\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19408 +#: guix-git/doc/guix.texi:19770 msgid "Path to Xephyr." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19409 +#: guix-git/doc/guix.texi:19771 #, no-wrap msgid "@code{xdisplay-start} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/Xsetup\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19411 +#: guix-git/doc/guix.texi:19773 msgid "Script to run after starting xorg-server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19412 +#: guix-git/doc/guix.texi:19774 #, no-wrap msgid "@code{xdisplay-stop} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/Xstop\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19414 +#: guix-git/doc/guix.texi:19776 msgid "Script to run before stopping xorg-server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19415 +#: guix-git/doc/guix.texi:19777 #, no-wrap msgid "@code{xsession-command} (default: @code{xinitrc})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19418 +#: guix-git/doc/guix.texi:19780 #, no-wrap msgid "@code{xsessions-directory} (default: \"/run/current-system/profile/share/xsessions\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19420 +#: guix-git/doc/guix.texi:19782 msgid "Directory to look for desktop files starting X sessions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19421 +#: guix-git/doc/guix.texi:19783 #, no-wrap msgid "@code{minimum-vt} (default: 7)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19423 +#: guix-git/doc/guix.texi:19785 msgid "Minimum VT to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19424 +#: guix-git/doc/guix.texi:19786 #, no-wrap msgid "@code{auto-login-user} (default \"\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19426 +#: guix-git/doc/guix.texi:19788 msgid "User to use for auto-login." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19427 +#: guix-git/doc/guix.texi:19789 #, no-wrap msgid "@code{auto-login-session} (default \"\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19429 +#: guix-git/doc/guix.texi:19791 msgid "Desktop file to use for auto-login." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19430 +#: guix-git/doc/guix.texi:19792 #, no-wrap msgid "@code{relogin?} (default #f)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19432 +#: guix-git/doc/guix.texi:19794 msgid "Relogin after logout." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19437 +#: guix-git/doc/guix.texi:19799 #, no-wrap msgid "X11 login" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19438 +#: guix-git/doc/guix.texi:19800 #, no-wrap msgid "{Scheme Variable} sddm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19442 +#: guix-git/doc/guix.texi:19804 msgid "This is the type of the service to run the @uref{https://github.com/sddm/sddm,SDDM display manager}. Its value must be a @code{sddm-configuration} record (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19444 +#: guix-git/doc/guix.texi:19806 msgid "Here's an example use:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19450 +#: guix-git/doc/guix.texi:19812 #, no-wrap msgid "" "(service sddm-service-type\n" @@ -35768,265 +36496,265 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19456 +#: guix-git/doc/guix.texi:19818 msgid "This data type represents the configuration of the SDDM login manager. The available fields are:" msgstr "Этот тип данных представляет машины для сборки, на которые демон может разгружать сборки. Важные поля:" #. type: item -#: guix-git/doc/guix.texi:19458 +#: guix-git/doc/guix.texi:19820 #, no-wrap msgid "@code{sddm} (default: @code{sddm})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:19460 +#: guix-git/doc/guix.texi:19822 msgid "The SDDM package to use." msgstr "Используемый пакет SDDM." #. type: item -#: guix-git/doc/guix.texi:19461 +#: guix-git/doc/guix.texi:19823 #, no-wrap msgid "@code{display-server} (default: @code{\"x11\"})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:19463 +#: guix-git/doc/guix.texi:19825 msgid "This must be either @code{\"x11\"} or @code{\"wayland\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19466 +#: guix-git/doc/guix.texi:19828 #, no-wrap msgid "@code{auto-login-user} (default: @code{\"\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:19469 +#: guix-git/doc/guix.texi:19831 msgid "If non-empty, this is the user account under which to log in automatically." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19470 +#: guix-git/doc/guix.texi:19832 #, no-wrap msgid "@code{auto-login-session} (default: @code{\"\"})" msgstr "@code{compression-level} (default: @code{3})" #. type: table -#: guix-git/doc/guix.texi:19473 +#: guix-git/doc/guix.texi:19835 msgid "If non-empty, this is the @file{.desktop} file name to use as the auto-login session." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19476 +#: guix-git/doc/guix.texi:19838 #, no-wrap msgid "Xorg, configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19477 +#: guix-git/doc/guix.texi:19839 #, no-wrap msgid "{Data Type} xorg-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19482 +#: guix-git/doc/guix.texi:19844 msgid "This data type represents the configuration of the Xorg graphical display server. Note that there is no Xorg service; instead, the X server is started by a ``display manager'' such as GDM, SDDM, and SLiM@. Thus, the configuration of these display managers aggregates an @code{xorg-configuration} record." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19484 +#: guix-git/doc/guix.texi:19846 #, no-wrap msgid "@code{modules} (default: @code{%default-xorg-modules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19487 +#: guix-git/doc/guix.texi:19849 msgid "This is a list of @dfn{module packages} loaded by the Xorg server---e.g., @code{xf86-video-vesa}, @code{xf86-input-keyboard}, and so on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19488 +#: guix-git/doc/guix.texi:19850 #, no-wrap msgid "@code{fonts} (default: @code{%default-xorg-fonts})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19490 +#: guix-git/doc/guix.texi:19852 msgid "This is a list of font directories to add to the server's @dfn{font path}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19491 +#: guix-git/doc/guix.texi:19853 #, no-wrap msgid "@code{drivers} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19495 +#: guix-git/doc/guix.texi:19857 msgid "This must be either the empty list, in which case Xorg chooses a graphics driver automatically, or a list of driver names that will be tried in this order---e.g., @code{(\"modesetting\" \"vesa\")}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19496 +#: guix-git/doc/guix.texi:19858 #, no-wrap msgid "@code{resolutions} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19500 +#: guix-git/doc/guix.texi:19862 msgid "When @code{resolutions} is the empty list, Xorg chooses an appropriate screen resolution. Otherwise, it must be a list of resolutions---e.g., @code{((1024 768) (640 480))}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19501 +#: guix-git/doc/guix.texi:19863 #, no-wrap msgid "keyboard layout, for Xorg" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19502 +#: guix-git/doc/guix.texi:19864 #, no-wrap msgid "keymap, for Xorg" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19506 +#: guix-git/doc/guix.texi:19868 msgid "If this is @code{#f}, Xorg uses the default keyboard layout---usually US English (``qwerty'') for a 105-key PC keyboard." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19510 +#: guix-git/doc/guix.texi:19872 msgid "Otherwise this must be a @code{keyboard-layout} object specifying the keyboard layout in use when Xorg is running. @xref{Keyboard Layout}, for more information on how to specify the keyboard layout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19511 guix-git/doc/guix.texi:21223 -#: guix-git/doc/guix.texi:34046 +#: guix-git/doc/guix.texi:19873 guix-git/doc/guix.texi:21585 +#: guix-git/doc/guix.texi:34483 #, no-wrap msgid "@code{extra-config} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19514 guix-git/doc/guix.texi:34050 +#: guix-git/doc/guix.texi:19876 guix-git/doc/guix.texi:34487 msgid "This is a list of strings or objects appended to the configuration file. It is used to pass extra text to be added verbatim to the configuration file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19515 +#: guix-git/doc/guix.texi:19877 #, no-wrap msgid "@code{server} (default: @code{xorg-server})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19517 +#: guix-git/doc/guix.texi:19879 msgid "This is the package providing the Xorg server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19518 +#: guix-git/doc/guix.texi:19880 #, no-wrap msgid "@code{server-arguments} (default: @code{%default-xorg-server-arguments})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19521 +#: guix-git/doc/guix.texi:19883 msgid "This is the list of command-line arguments to pass to the X server. The default is @code{-nolisten tcp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19524 +#: guix-git/doc/guix.texi:19886 #, no-wrap msgid "{Scheme Procedure} set-xorg-configuration @var{config} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19528 +#: guix-git/doc/guix.texi:19890 msgid "[@var{login-manager-service-type}] Tell the log-in manager (of type @var{login-manager-service-type}) to use @var{config}, an @code{} record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19532 +#: guix-git/doc/guix.texi:19894 msgid "Since the Xorg configuration is embedded in the log-in manager's configuration---e.g., @code{gdm-configuration}---this procedure provides a shorthand to set the Xorg configuration." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19534 +#: guix-git/doc/guix.texi:19896 #, no-wrap msgid "{Scheme Procedure} xorg-start-command [@var{config}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19538 +#: guix-git/doc/guix.texi:19900 msgid "Return a @code{startx} script in which the modules, fonts, etc. specified in @var{config}, are available. The result should be used in place of @code{startx}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19540 +#: guix-git/doc/guix.texi:19902 msgid "Usually the X server is started by a login manager." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19543 +#: guix-git/doc/guix.texi:19905 #, no-wrap msgid "{Scheme Procedure} screen-locker-service @var{package} [@var{program}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19547 +#: guix-git/doc/guix.texi:19909 msgid "Add @var{package}, a package for a screen locker or screen saver whose command is @var{program}, to the set of setuid programs and add a PAM entry for it. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19550 +#: guix-git/doc/guix.texi:19912 #, no-wrap msgid "(screen-locker-service xlockmore \"xlock\")\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19553 +#: guix-git/doc/guix.texi:19915 msgid "makes the good ol' XlockMore usable." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19559 +#: guix-git/doc/guix.texi:19921 #, no-wrap msgid "printer support with CUPS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19563 +#: guix-git/doc/guix.texi:19925 msgid "The @code{(gnu services cups)} module provides a Guix service definition for the CUPS printing service. To add printer support to a Guix system, add a @code{cups-service} to the operating system definition:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19564 +#: guix-git/doc/guix.texi:19926 #, no-wrap msgid "{Scheme Variable} cups-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19568 +#: guix-git/doc/guix.texi:19930 msgid "The service type for the CUPS print server. Its value should be a valid CUPS configuration (see below). To use the default settings, simply write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19570 +#: guix-git/doc/guix.texi:19932 #, no-wrap msgid "(service cups-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19580 +#: guix-git/doc/guix.texi:19942 msgid "The CUPS configuration controls the basic things about your CUPS installation: what interfaces it listens on, what to do if a print job fails, how much logging to do, and so on. To actually add a printer, you have to visit the @url{http://localhost:631} URL, or use a tool such as GNOME's printer configuration services. By default, configuring a CUPS service will generate a self-signed certificate if needed, for secure connections to the print server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19586 +#: guix-git/doc/guix.texi:19948 msgid "Suppose you want to enable the Web interface of CUPS and also add support for Epson printers @i{via} the @code{epson-inkjet-printer-escpr} package and for HP printers @i{via} the @code{hplip-minimal} package. You can do that directly, like this (you need to use the @code{(gnu packages cups)} module):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19593 +#: guix-git/doc/guix.texi:19955 #, no-wrap msgid "" "(service cups-service-type\n" @@ -36042,1584 +36770,1582 @@ msgstr "" " (list cups-filters epson-inkjet-printer-escpr hplip-minimal))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:19598 +#: guix-git/doc/guix.texi:19960 msgid "Note: If you wish to use the Qt5 based GUI which comes with the hplip package then it is suggested that you install the @code{hplip} package, either in your OS configuration file or as your user." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19605 +#: guix-git/doc/guix.texi:19967 msgid "The available configuration parameters follow. Each parameter definition is preceded by its type; for example, @samp{string-list foo} indicates that the @code{foo} parameter should be specified as a list of strings. There is also a way to specify the configuration as a string, if you have an old @code{cupsd.conf} file that you want to port over from some other system; see the end for more details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19616 +#: guix-git/doc/guix.texi:19978 msgid "Available @code{cups-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19617 +#: guix-git/doc/guix.texi:19979 #, no-wrap msgid "{@code{cups-configuration} parameter} package cups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19619 guix-git/doc/guix.texi:20387 +#: guix-git/doc/guix.texi:19981 guix-git/doc/guix.texi:20749 msgid "The CUPS package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19621 +#: guix-git/doc/guix.texi:19983 #, no-wrap msgid "{@code{cups-configuration} parameter} package-list extensions (default: @code{(list brlaser cups-filters epson-inkjet-printer-escpr foomatic-filters hplip-minimal splix)})" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19623 +#: guix-git/doc/guix.texi:19985 msgid "Drivers and other extensions to the CUPS package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19625 +#: guix-git/doc/guix.texi:19987 #, no-wrap msgid "{@code{cups-configuration} parameter} files-configuration files-configuration" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19628 +#: guix-git/doc/guix.texi:19990 msgid "Configuration of where to write logs, what directories to use for print spools, and related privileged configuration parameters." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19630 +#: guix-git/doc/guix.texi:19992 msgid "Available @code{files-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19631 +#: guix-git/doc/guix.texi:19993 #, no-wrap msgid "{@code{files-configuration} parameter} log-location access-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19639 +#: guix-git/doc/guix.texi:20001 msgid "Defines the access log filename. Specifying a blank filename disables access log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-access_log}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19641 +#: guix-git/doc/guix.texi:20003 msgid "Defaults to @samp{\"/var/log/cups/access_log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19643 +#: guix-git/doc/guix.texi:20005 #, no-wrap msgid "{@code{files-configuration} parameter} file-name cache-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19645 +#: guix-git/doc/guix.texi:20007 msgid "Where CUPS should cache data." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19647 +#: guix-git/doc/guix.texi:20009 msgid "Defaults to @samp{\"/var/cache/cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19649 +#: guix-git/doc/guix.texi:20011 #, no-wrap msgid "{@code{files-configuration} parameter} string config-file-perm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19652 +#: guix-git/doc/guix.texi:20014 msgid "Specifies the permissions for all configuration files that the scheduler writes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19658 +#: guix-git/doc/guix.texi:20020 msgid "Note that the permissions for the printers.conf file are currently masked to only allow access from the scheduler user (typically root). This is done because printer device URIs sometimes contain sensitive authentication information that should not be generally known on the system. There is no way to disable this security feature." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19660 +#: guix-git/doc/guix.texi:20022 msgid "Defaults to @samp{\"0640\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19662 +#: guix-git/doc/guix.texi:20024 #, no-wrap msgid "{@code{files-configuration} parameter} log-location error-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19670 +#: guix-git/doc/guix.texi:20032 msgid "Defines the error log filename. Specifying a blank filename disables error log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-error_log}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19672 +#: guix-git/doc/guix.texi:20034 msgid "Defaults to @samp{\"/var/log/cups/error_log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19674 +#: guix-git/doc/guix.texi:20036 #, no-wrap msgid "{@code{files-configuration} parameter} string fatal-errors" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19677 +#: guix-git/doc/guix.texi:20039 msgid "Specifies which errors are fatal, causing the scheduler to exit. The kind strings are:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19681 +#: guix-git/doc/guix.texi:20043 msgid "No errors are fatal." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19684 +#: guix-git/doc/guix.texi:20046 msgid "All of the errors below are fatal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19685 +#: guix-git/doc/guix.texi:20047 #, no-wrap msgid "browse" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19688 +#: guix-git/doc/guix.texi:20050 msgid "Browsing initialization errors are fatal, for example failed connections to the DNS-SD daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19689 +#: guix-git/doc/guix.texi:20051 #, no-wrap msgid "config" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19691 +#: guix-git/doc/guix.texi:20053 msgid "Configuration file syntax errors are fatal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19692 +#: guix-git/doc/guix.texi:20054 #, no-wrap msgid "listen" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19695 +#: guix-git/doc/guix.texi:20057 msgid "Listen or Port errors are fatal, except for IPv6 failures on the loopback or @code{any} addresses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19696 +#: guix-git/doc/guix.texi:20058 #, no-wrap msgid "log" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19698 +#: guix-git/doc/guix.texi:20060 msgid "Log file creation or write errors are fatal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19699 +#: guix-git/doc/guix.texi:20061 #, no-wrap msgid "permissions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19702 +#: guix-git/doc/guix.texi:20064 msgid "Bad startup file permissions are fatal, for example shared TLS certificate and key files with world-read permissions." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19705 +#: guix-git/doc/guix.texi:20067 msgid "Defaults to @samp{\"all -browse\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19707 +#: guix-git/doc/guix.texi:20069 #, no-wrap msgid "{@code{files-configuration} parameter} boolean file-device?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19710 +#: guix-git/doc/guix.texi:20072 msgid "Specifies whether the file pseudo-device can be used for new printer queues. The URI @uref{file:///dev/null} is always allowed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19714 +#: guix-git/doc/guix.texi:20076 #, no-wrap msgid "{@code{files-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19717 +#: guix-git/doc/guix.texi:20079 msgid "Specifies the group name or ID that will be used when executing external programs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19719 guix-git/doc/guix.texi:19805 +#: guix-git/doc/guix.texi:20081 guix-git/doc/guix.texi:20167 msgid "Defaults to @samp{\"lp\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19721 +#: guix-git/doc/guix.texi:20083 #, no-wrap msgid "{@code{files-configuration} parameter} string log-file-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19723 +#: guix-git/doc/guix.texi:20085 msgid "Specifies the group name or ID that will be used for log files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19725 +#: guix-git/doc/guix.texi:20087 msgid "Defaults to @samp{\"lpadmin\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19727 +#: guix-git/doc/guix.texi:20089 #, no-wrap msgid "{@code{files-configuration} parameter} string log-file-perm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19729 +#: guix-git/doc/guix.texi:20091 msgid "Specifies the permissions for all log files that the scheduler writes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19731 +#: guix-git/doc/guix.texi:20093 msgid "Defaults to @samp{\"0644\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19733 +#: guix-git/doc/guix.texi:20095 #, no-wrap msgid "{@code{files-configuration} parameter} log-location page-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19741 +#: guix-git/doc/guix.texi:20103 msgid "Defines the page log filename. Specifying a blank filename disables page log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-page_log}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19743 +#: guix-git/doc/guix.texi:20105 msgid "Defaults to @samp{\"/var/log/cups/page_log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19745 +#: guix-git/doc/guix.texi:20107 #, no-wrap msgid "{@code{files-configuration} parameter} string remote-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19748 +#: guix-git/doc/guix.texi:20110 msgid "Specifies the username that is associated with unauthenticated accesses by clients claiming to be the root user. The default is @code{remroot}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19750 +#: guix-git/doc/guix.texi:20112 msgid "Defaults to @samp{\"remroot\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19752 +#: guix-git/doc/guix.texi:20114 #, no-wrap msgid "{@code{files-configuration} parameter} file-name request-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19755 +#: guix-git/doc/guix.texi:20117 msgid "Specifies the directory that contains print jobs and other HTTP request data." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19757 +#: guix-git/doc/guix.texi:20119 msgid "Defaults to @samp{\"/var/spool/cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19759 +#: guix-git/doc/guix.texi:20121 #, no-wrap msgid "{@code{files-configuration} parameter} sandboxing sandboxing" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19764 +#: guix-git/doc/guix.texi:20126 msgid "Specifies the level of security sandboxing that is applied to print filters, backends, and other child processes of the scheduler; either @code{relaxed} or @code{strict}. This directive is currently only used/supported on macOS." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19766 +#: guix-git/doc/guix.texi:20128 msgid "Defaults to @samp{strict}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19768 +#: guix-git/doc/guix.texi:20130 #, no-wrap msgid "{@code{files-configuration} parameter} file-name server-keychain" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19773 +#: guix-git/doc/guix.texi:20135 msgid "Specifies the location of TLS certificates and private keys. CUPS will look for public and private keys in this directory: @file{.crt} files for PEM-encoded certificates and corresponding @file{.key} files for PEM-encoded private keys." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19775 +#: guix-git/doc/guix.texi:20137 msgid "Defaults to @samp{\"/etc/cups/ssl\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19777 +#: guix-git/doc/guix.texi:20139 #, no-wrap msgid "{@code{files-configuration} parameter} file-name server-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19779 +#: guix-git/doc/guix.texi:20141 msgid "Specifies the directory containing the server configuration files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19781 +#: guix-git/doc/guix.texi:20143 msgid "Defaults to @samp{\"/etc/cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19783 +#: guix-git/doc/guix.texi:20145 #, no-wrap msgid "{@code{files-configuration} parameter} boolean sync-on-close?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19786 +#: guix-git/doc/guix.texi:20148 msgid "Specifies whether the scheduler calls fsync(2) after writing configuration or state files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19790 +#: guix-git/doc/guix.texi:20152 #, no-wrap msgid "{@code{files-configuration} parameter} space-separated-string-list system-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19792 +#: guix-git/doc/guix.texi:20154 msgid "Specifies the group(s) to use for @code{@@SYSTEM} group authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19794 +#: guix-git/doc/guix.texi:20156 #, no-wrap msgid "{@code{files-configuration} parameter} file-name temp-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19796 +#: guix-git/doc/guix.texi:20158 msgid "Specifies the directory where temporary files are stored." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19798 +#: guix-git/doc/guix.texi:20160 msgid "Defaults to @samp{\"/var/spool/cups/tmp\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19800 +#: guix-git/doc/guix.texi:20162 #, no-wrap msgid "{@code{files-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19803 +#: guix-git/doc/guix.texi:20165 msgid "Specifies the user name or ID that is used when running external programs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19807 +#: guix-git/doc/guix.texi:20169 #, no-wrap msgid "{@code{files-configuration} parameter} string set-env" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19809 +#: guix-git/doc/guix.texi:20171 msgid "Set the specified environment variable to be passed to child processes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19811 +#: guix-git/doc/guix.texi:20173 msgid "Defaults to @samp{\"variable value\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19814 +#: guix-git/doc/guix.texi:20176 #, no-wrap msgid "{@code{cups-configuration} parameter} access-log-level access-log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19821 +#: guix-git/doc/guix.texi:20183 msgid "Specifies the logging level for the AccessLog file. The @code{config} level logs when printers and classes are added, deleted, or modified and when configuration files are accessed or updated. The @code{actions} level logs when print jobs are submitted, held, released, modified, or canceled, and any of the conditions for @code{config}. The @code{all} level logs all requests." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19823 +#: guix-git/doc/guix.texi:20185 msgid "Defaults to @samp{actions}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19825 +#: guix-git/doc/guix.texi:20187 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean auto-purge-jobs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19828 +#: guix-git/doc/guix.texi:20190 msgid "Specifies whether to purge job history data automatically when it is no longer required for quotas." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19832 +#: guix-git/doc/guix.texi:20194 #, no-wrap msgid "{@code{cups-configuration} parameter} comma-separated-string-list browse-dns-sd-sub-types" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19836 +#: guix-git/doc/guix.texi:20198 msgid "Specifies a list of DNS-SD sub-types to advertise for each shared printer. For example, @samp{\"_cups\" \"_print\"} will tell network clients that both CUPS sharing and IPP Everywhere are supported." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19838 +#: guix-git/doc/guix.texi:20200 msgid "Defaults to @samp{\"_cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19840 +#: guix-git/doc/guix.texi:20202 #, no-wrap msgid "{@code{cups-configuration} parameter} browse-local-protocols browse-local-protocols" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19842 +#: guix-git/doc/guix.texi:20204 msgid "Specifies which protocols to use for local printer sharing." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19844 +#: guix-git/doc/guix.texi:20206 msgid "Defaults to @samp{dnssd}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19846 +#: guix-git/doc/guix.texi:20208 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean browse-web-if?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19848 +#: guix-git/doc/guix.texi:20210 msgid "Specifies whether the CUPS web interface is advertised." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19852 +#: guix-git/doc/guix.texi:20214 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean browsing?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19854 +#: guix-git/doc/guix.texi:20216 msgid "Specifies whether shared printers are advertised." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19858 +#: guix-git/doc/guix.texi:20220 #, no-wrap msgid "{@code{cups-configuration} parameter} string classification" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19863 +#: guix-git/doc/guix.texi:20225 msgid "Specifies the security classification of the server. Any valid banner name can be used, including @samp{\"classified\"}, @samp{\"confidential\"}, @samp{\"secret\"}, @samp{\"topsecret\"}, and @samp{\"unclassified\"}, or the banner can be omitted to disable secure printing functions." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19865 guix-git/doc/guix.texi:20196 -#: guix-git/doc/guix.texi:22180 guix-git/doc/guix.texi:22192 -#: guix-git/doc/guix.texi:22220 guix-git/doc/guix.texi:22977 -#: guix-git/doc/guix.texi:22991 guix-git/doc/guix.texi:22998 -#: guix-git/doc/guix.texi:23005 guix-git/doc/guix.texi:23035 -#: guix-git/doc/guix.texi:23133 guix-git/doc/guix.texi:25252 -#: guix-git/doc/guix.texi:25278 guix-git/doc/guix.texi:25314 -#: guix-git/doc/guix.texi:25360 guix-git/doc/guix.texi:25379 -#: guix-git/doc/guix.texi:25418 guix-git/doc/guix.texi:25477 -#: guix-git/doc/guix.texi:25487 guix-git/doc/guix.texi:30085 -#: guix-git/doc/guix.texi:30093 guix-git/doc/guix.texi:30101 -#: guix-git/doc/guix.texi:30109 guix-git/doc/guix.texi:30388 -#: guix-git/doc/guix.texi:31743 guix-git/doc/guix.texi:31751 -#: guix-git/doc/guix.texi:31759 guix-git/doc/guix.texi:31867 -#: guix-git/doc/guix.texi:31892 guix-git/doc/guix.texi:32023 -#: guix-git/doc/guix.texi:32031 guix-git/doc/guix.texi:32039 -#: guix-git/doc/guix.texi:32047 guix-git/doc/guix.texi:32055 -#: guix-git/doc/guix.texi:32063 guix-git/doc/guix.texi:32086 -#: guix-git/doc/guix.texi:32094 guix-git/doc/guix.texi:32146 -#: guix-git/doc/guix.texi:32162 guix-git/doc/guix.texi:32170 -#: guix-git/doc/guix.texi:32209 guix-git/doc/guix.texi:32232 -#: guix-git/doc/guix.texi:32254 guix-git/doc/guix.texi:32261 -#: guix-git/doc/guix.texi:32296 guix-git/doc/guix.texi:32304 -#: guix-git/doc/guix.texi:32328 guix-git/doc/guix.texi:32360 -#: guix-git/doc/guix.texi:32389 guix-git/doc/guix.texi:32396 -#: guix-git/doc/guix.texi:32403 guix-git/doc/guix.texi:32411 -#: guix-git/doc/guix.texi:32425 guix-git/doc/guix.texi:32434 -#: guix-git/doc/guix.texi:32444 guix-git/doc/guix.texi:32451 -#: guix-git/doc/guix.texi:32458 guix-git/doc/guix.texi:32465 -#: guix-git/doc/guix.texi:32536 guix-git/doc/guix.texi:32543 -#: guix-git/doc/guix.texi:32550 guix-git/doc/guix.texi:32559 -#: guix-git/doc/guix.texi:32575 guix-git/doc/guix.texi:32582 -#: guix-git/doc/guix.texi:32589 guix-git/doc/guix.texi:32596 -#: guix-git/doc/guix.texi:32604 guix-git/doc/guix.texi:32612 +#: guix-git/doc/guix.texi:20227 guix-git/doc/guix.texi:20558 +#: guix-git/doc/guix.texi:22542 guix-git/doc/guix.texi:22554 +#: guix-git/doc/guix.texi:22582 guix-git/doc/guix.texi:23339 +#: guix-git/doc/guix.texi:23353 guix-git/doc/guix.texi:23360 +#: guix-git/doc/guix.texi:23367 guix-git/doc/guix.texi:23397 +#: guix-git/doc/guix.texi:23495 guix-git/doc/guix.texi:25614 +#: guix-git/doc/guix.texi:25640 guix-git/doc/guix.texi:25676 +#: guix-git/doc/guix.texi:25722 guix-git/doc/guix.texi:25741 +#: guix-git/doc/guix.texi:25780 guix-git/doc/guix.texi:30450 +#: guix-git/doc/guix.texi:30458 guix-git/doc/guix.texi:30466 +#: guix-git/doc/guix.texi:30474 guix-git/doc/guix.texi:30753 +#: guix-git/doc/guix.texi:32108 guix-git/doc/guix.texi:32116 +#: guix-git/doc/guix.texi:32124 guix-git/doc/guix.texi:32232 +#: guix-git/doc/guix.texi:32257 guix-git/doc/guix.texi:32388 +#: guix-git/doc/guix.texi:32396 guix-git/doc/guix.texi:32404 +#: guix-git/doc/guix.texi:32412 guix-git/doc/guix.texi:32420 +#: guix-git/doc/guix.texi:32428 guix-git/doc/guix.texi:32451 +#: guix-git/doc/guix.texi:32459 guix-git/doc/guix.texi:32511 +#: guix-git/doc/guix.texi:32527 guix-git/doc/guix.texi:32535 +#: guix-git/doc/guix.texi:32574 guix-git/doc/guix.texi:32597 +#: guix-git/doc/guix.texi:32619 guix-git/doc/guix.texi:32626 +#: guix-git/doc/guix.texi:32661 guix-git/doc/guix.texi:32669 +#: guix-git/doc/guix.texi:32693 guix-git/doc/guix.texi:32725 +#: guix-git/doc/guix.texi:32754 guix-git/doc/guix.texi:32761 +#: guix-git/doc/guix.texi:32768 guix-git/doc/guix.texi:32776 +#: guix-git/doc/guix.texi:32790 guix-git/doc/guix.texi:32799 +#: guix-git/doc/guix.texi:32809 guix-git/doc/guix.texi:32816 +#: guix-git/doc/guix.texi:32823 guix-git/doc/guix.texi:32830 +#: guix-git/doc/guix.texi:32901 guix-git/doc/guix.texi:32908 +#: guix-git/doc/guix.texi:32915 guix-git/doc/guix.texi:32924 +#: guix-git/doc/guix.texi:32940 guix-git/doc/guix.texi:32947 +#: guix-git/doc/guix.texi:32954 guix-git/doc/guix.texi:32961 +#: guix-git/doc/guix.texi:32969 guix-git/doc/guix.texi:32977 msgid "Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19867 +#: guix-git/doc/guix.texi:20229 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean classify-override?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19870 +#: guix-git/doc/guix.texi:20232 msgid "Specifies whether users may override the classification (cover page) of individual print jobs using the @code{job-sheets} option." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19874 +#: guix-git/doc/guix.texi:20236 #, no-wrap msgid "{@code{cups-configuration} parameter} default-auth-type default-auth-type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19876 +#: guix-git/doc/guix.texi:20238 msgid "Specifies the default type of authentication to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19878 +#: guix-git/doc/guix.texi:20240 msgid "Defaults to @samp{Basic}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19880 +#: guix-git/doc/guix.texi:20242 #, no-wrap msgid "{@code{cups-configuration} parameter} default-encryption default-encryption" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19882 +#: guix-git/doc/guix.texi:20244 msgid "Specifies whether encryption will be used for authenticated requests." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19884 +#: guix-git/doc/guix.texi:20246 msgid "Defaults to @samp{Required}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19886 +#: guix-git/doc/guix.texi:20248 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-language" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19888 +#: guix-git/doc/guix.texi:20250 msgid "Specifies the default language to use for text and web content." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19890 +#: guix-git/doc/guix.texi:20252 msgid "Defaults to @samp{\"en\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19892 +#: guix-git/doc/guix.texi:20254 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-paper-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19897 +#: guix-git/doc/guix.texi:20259 msgid "Specifies the default paper size for new print queues. @samp{\"Auto\"} uses a locale-specific default, while @samp{\"None\"} specifies there is no default paper size. Specific size names are typically @samp{\"Letter\"} or @samp{\"A4\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19899 +#: guix-git/doc/guix.texi:20261 msgid "Defaults to @samp{\"Auto\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19901 +#: guix-git/doc/guix.texi:20263 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-policy" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19903 +#: guix-git/doc/guix.texi:20265 msgid "Specifies the default access policy to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19905 +#: guix-git/doc/guix.texi:20267 msgid "Defaults to @samp{\"default\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19907 +#: guix-git/doc/guix.texi:20269 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean default-shared?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19909 +#: guix-git/doc/guix.texi:20271 msgid "Specifies whether local printers are shared by default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19911 guix-git/doc/guix.texi:19991 -#: guix-git/doc/guix.texi:20281 guix-git/doc/guix.texi:23067 -#: guix-git/doc/guix.texi:23118 guix-git/doc/guix.texi:23125 -#: guix-git/doc/guix.texi:24407 guix-git/doc/guix.texi:24595 -#: guix-git/doc/guix.texi:24712 guix-git/doc/guix.texi:24748 -#: guix-git/doc/guix.texi:24799 guix-git/doc/guix.texi:24818 -#: guix-git/doc/guix.texi:24828 guix-git/doc/guix.texi:24838 -#: guix-git/doc/guix.texi:24897 guix-git/doc/guix.texi:24919 -#: guix-git/doc/guix.texi:24944 guix-git/doc/guix.texi:24970 -#: guix-git/doc/guix.texi:24988 guix-git/doc/guix.texi:28180 -#: guix-git/doc/guix.texi:28208 guix-git/doc/guix.texi:28344 -#: guix-git/doc/guix.texi:28351 guix-git/doc/guix.texi:28359 -#: guix-git/doc/guix.texi:28396 guix-git/doc/guix.texi:28410 -#: guix-git/doc/guix.texi:28499 guix-git/doc/guix.texi:28506 -#: guix-git/doc/guix.texi:28514 guix-git/doc/guix.texi:29293 -#: guix-git/doc/guix.texi:29433 guix-git/doc/guix.texi:29619 -#: guix-git/doc/guix.texi:29626 guix-git/doc/guix.texi:29648 -#: guix-git/doc/guix.texi:29687 guix-git/doc/guix.texi:29707 -#: guix-git/doc/guix.texi:29721 guix-git/doc/guix.texi:29934 -#: guix-git/doc/guix.texi:31845 guix-git/doc/guix.texi:31933 -#: guix-git/doc/guix.texi:31949 guix-git/doc/guix.texi:31999 +#: guix-git/doc/guix.texi:20273 guix-git/doc/guix.texi:20353 +#: guix-git/doc/guix.texi:20643 guix-git/doc/guix.texi:23429 +#: guix-git/doc/guix.texi:23480 guix-git/doc/guix.texi:23487 +#: guix-git/doc/guix.texi:24769 guix-git/doc/guix.texi:24957 +#: guix-git/doc/guix.texi:25074 guix-git/doc/guix.texi:25110 +#: guix-git/doc/guix.texi:25161 guix-git/doc/guix.texi:25180 +#: guix-git/doc/guix.texi:25190 guix-git/doc/guix.texi:25200 +#: guix-git/doc/guix.texi:25259 guix-git/doc/guix.texi:25281 +#: guix-git/doc/guix.texi:25306 guix-git/doc/guix.texi:25332 +#: guix-git/doc/guix.texi:25350 guix-git/doc/guix.texi:28517 +#: guix-git/doc/guix.texi:28545 guix-git/doc/guix.texi:28681 +#: guix-git/doc/guix.texi:28688 guix-git/doc/guix.texi:28696 +#: guix-git/doc/guix.texi:28733 guix-git/doc/guix.texi:28747 +#: guix-git/doc/guix.texi:28836 guix-git/doc/guix.texi:28843 +#: guix-git/doc/guix.texi:28851 guix-git/doc/guix.texi:29630 +#: guix-git/doc/guix.texi:29770 guix-git/doc/guix.texi:29984 +#: guix-git/doc/guix.texi:29991 guix-git/doc/guix.texi:30013 +#: guix-git/doc/guix.texi:30052 guix-git/doc/guix.texi:30072 +#: guix-git/doc/guix.texi:30086 guix-git/doc/guix.texi:30299 +#: guix-git/doc/guix.texi:32210 guix-git/doc/guix.texi:32298 +#: guix-git/doc/guix.texi:32314 guix-git/doc/guix.texi:32364 msgid "Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19913 +#: guix-git/doc/guix.texi:20275 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer dirty-clean-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19917 +#: guix-git/doc/guix.texi:20279 msgid "Specifies the delay for updating of configuration and state files, in seconds. A value of 0 causes the update to happen as soon as possible, typically within a few milliseconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19919 guix-git/doc/guix.texi:19967 -#: guix-git/doc/guix.texi:19976 guix-git/doc/guix.texi:20288 -#: guix-git/doc/guix.texi:24757 guix-git/doc/guix.texi:24790 +#: guix-git/doc/guix.texi:20281 guix-git/doc/guix.texi:20329 +#: guix-git/doc/guix.texi:20338 guix-git/doc/guix.texi:20650 +#: guix-git/doc/guix.texi:25119 guix-git/doc/guix.texi:25152 msgid "Defaults to @samp{30}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19921 +#: guix-git/doc/guix.texi:20283 #, no-wrap msgid "{@code{cups-configuration} parameter} error-policy error-policy" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19927 +#: guix-git/doc/guix.texi:20289 msgid "Specifies what to do when an error occurs. Possible values are @code{abort-job}, which will discard the failed print job; @code{retry-job}, which will retry the job at a later time; @code{retry-current-job}, which retries the failed job immediately; and @code{stop-printer}, which stops the printer." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19929 +#: guix-git/doc/guix.texi:20291 msgid "Defaults to @samp{stop-printer}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19931 +#: guix-git/doc/guix.texi:20293 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer filter-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19939 +#: guix-git/doc/guix.texi:20301 msgid "Specifies the maximum cost of filters that are run concurrently, which can be used to minimize disk, memory, and CPU resource problems. A limit of 0 disables filter limiting. An average print to a non-PostScript printer needs a filter limit of about 200. A PostScript printer needs about half that (100). Setting the limit below these thresholds will effectively limit the scheduler to printing a single job at any time." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19941 guix-git/doc/guix.texi:19949 -#: guix-git/doc/guix.texi:19998 guix-git/doc/guix.texi:20114 -#: guix-git/doc/guix.texi:20128 guix-git/doc/guix.texi:20135 -#: guix-git/doc/guix.texi:21622 guix-git/doc/guix.texi:21638 -#: guix-git/doc/guix.texi:22295 guix-git/doc/guix.texi:22307 -#: guix-git/doc/guix.texi:23086 guix-git/doc/guix.texi:23095 -#: guix-git/doc/guix.texi:23103 guix-git/doc/guix.texi:23111 -#: guix-git/doc/guix.texi:29309 guix-git/doc/guix.texi:29634 -#: guix-git/doc/guix.texi:31838 guix-git/doc/guix.texi:32138 -#: guix-git/doc/guix.texi:32312 +#: guix-git/doc/guix.texi:20303 guix-git/doc/guix.texi:20311 +#: guix-git/doc/guix.texi:20360 guix-git/doc/guix.texi:20476 +#: guix-git/doc/guix.texi:20490 guix-git/doc/guix.texi:20497 +#: guix-git/doc/guix.texi:21984 guix-git/doc/guix.texi:22000 +#: guix-git/doc/guix.texi:22657 guix-git/doc/guix.texi:22669 +#: guix-git/doc/guix.texi:23448 guix-git/doc/guix.texi:23457 +#: guix-git/doc/guix.texi:23465 guix-git/doc/guix.texi:23473 +#: guix-git/doc/guix.texi:29646 guix-git/doc/guix.texi:29999 +#: guix-git/doc/guix.texi:32203 guix-git/doc/guix.texi:32503 +#: guix-git/doc/guix.texi:32677 msgid "Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19943 +#: guix-git/doc/guix.texi:20305 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer filter-nice" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19947 +#: guix-git/doc/guix.texi:20309 msgid "Specifies the scheduling priority of filters that are run to print a job. The nice value ranges from 0, the highest priority, to 19, the lowest priority." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19951 +#: guix-git/doc/guix.texi:20313 #, no-wrap msgid "{@code{cups-configuration} parameter} host-name-lookups host-name-lookups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19958 +#: guix-git/doc/guix.texi:20320 msgid "Specifies whether to do reverse lookups on connecting clients. The @code{double} setting causes @code{cupsd} to verify that the hostname resolved from the address matches one of the addresses returned for that hostname. Double lookups also prevent clients with unregistered addresses from connecting to your server. Only set this option to @code{#t} or @code{double} if absolutely required." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19962 +#: guix-git/doc/guix.texi:20324 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-kill-delay" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19965 +#: guix-git/doc/guix.texi:20327 msgid "Specifies the number of seconds to wait before killing the filters and backend associated with a canceled or held job." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19969 +#: guix-git/doc/guix.texi:20331 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-retry-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19974 +#: guix-git/doc/guix.texi:20336 msgid "Specifies the interval between retries of jobs in seconds. This is typically used for fax queues but can also be used with normal print queues whose error policy is @code{retry-job} or @code{retry-current-job}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19978 +#: guix-git/doc/guix.texi:20340 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-retry-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19983 +#: guix-git/doc/guix.texi:20345 msgid "Specifies the number of retries that are done for jobs. This is typically used for fax queues but can also be used with normal print queues whose error policy is @code{retry-job} or @code{retry-current-job}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19985 guix-git/doc/guix.texi:24721 -#: guix-git/doc/guix.texi:30186 guix-git/doc/guix.texi:30206 -#: guix-git/doc/guix.texi:30222 guix-git/doc/guix.texi:30236 -#: guix-git/doc/guix.texi:30243 guix-git/doc/guix.texi:30250 -#: guix-git/doc/guix.texi:30257 guix-git/doc/guix.texi:30417 -#: guix-git/doc/guix.texi:30433 guix-git/doc/guix.texi:30440 -#: guix-git/doc/guix.texi:30447 guix-git/doc/guix.texi:30458 -#: guix-git/doc/guix.texi:31790 guix-git/doc/guix.texi:31798 -#: guix-git/doc/guix.texi:31806 guix-git/doc/guix.texi:31830 +#: guix-git/doc/guix.texi:20347 guix-git/doc/guix.texi:25083 +#: guix-git/doc/guix.texi:30551 guix-git/doc/guix.texi:30571 +#: guix-git/doc/guix.texi:30587 guix-git/doc/guix.texi:30601 +#: guix-git/doc/guix.texi:30608 guix-git/doc/guix.texi:30615 +#: guix-git/doc/guix.texi:30622 guix-git/doc/guix.texi:30782 +#: guix-git/doc/guix.texi:30798 guix-git/doc/guix.texi:30805 +#: guix-git/doc/guix.texi:30812 guix-git/doc/guix.texi:30823 +#: guix-git/doc/guix.texi:32155 guix-git/doc/guix.texi:32163 +#: guix-git/doc/guix.texi:32171 guix-git/doc/guix.texi:32195 msgid "Defaults to @samp{5}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19987 +#: guix-git/doc/guix.texi:20349 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean keep-alive?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19989 +#: guix-git/doc/guix.texi:20351 msgid "Specifies whether to support HTTP keep-alive connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19993 +#: guix-git/doc/guix.texi:20355 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer limit-request-body" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19996 +#: guix-git/doc/guix.texi:20358 msgid "Specifies the maximum size of print files, IPP requests, and HTML form data. A limit of 0 disables the limit check." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20000 +#: guix-git/doc/guix.texi:20362 #, no-wrap msgid "{@code{cups-configuration} parameter} multiline-string-list listen" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20007 +#: guix-git/doc/guix.texi:20369 msgid "Listens on the specified interfaces for connections. Valid values are of the form @var{address}:@var{port}, where @var{address} is either an IPv6 address enclosed in brackets, an IPv4 address, or @code{*} to indicate all addresses. Values can also be file names of local UNIX domain sockets. The Listen directive is similar to the Port directive but allows you to restrict access to specific interfaces or networks." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20009 +#: guix-git/doc/guix.texi:20371 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer listen-back-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20016 +#: guix-git/doc/guix.texi:20378 msgid "Specifies the number of pending connections that will be allowed. This normally only affects very busy servers that have reached the MaxClients limit, but can also be triggered by large numbers of simultaneous connections. When the limit is reached, the operating system will refuse additional connections until the scheduler can accept the pending ones." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20018 +#: guix-git/doc/guix.texi:20380 msgid "Defaults to @samp{128}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20020 +#: guix-git/doc/guix.texi:20382 #, no-wrap msgid "{@code{cups-configuration} parameter} location-access-control-list location-access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20022 +#: guix-git/doc/guix.texi:20384 msgid "Specifies a set of additional access controls." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20024 +#: guix-git/doc/guix.texi:20386 msgid "Available @code{location-access-controls} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20025 +#: guix-git/doc/guix.texi:20387 #, no-wrap msgid "{@code{location-access-controls} parameter} file-name path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20027 +#: guix-git/doc/guix.texi:20389 msgid "Specifies the URI path to which the access control applies." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20029 +#: guix-git/doc/guix.texi:20391 #, no-wrap msgid "{@code{location-access-controls} parameter} access-control-list access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20032 +#: guix-git/doc/guix.texi:20394 msgid "Access controls for all access to this path, in the same format as the @code{access-controls} of @code{operation-access-control}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20034 guix-git/doc/guix.texi:20040 -#: guix-git/doc/guix.texi:20054 guix-git/doc/guix.texi:20061 -#: guix-git/doc/guix.texi:20203 guix-git/doc/guix.texi:20262 -#: guix-git/doc/guix.texi:20340 guix-git/doc/guix.texi:20354 -#: guix-git/doc/guix.texi:21502 guix-git/doc/guix.texi:21511 -#: guix-git/doc/guix.texi:22781 guix-git/doc/guix.texi:22984 -#: guix-git/doc/guix.texi:23012 guix-git/doc/guix.texi:23042 -#: guix-git/doc/guix.texi:23157 guix-git/doc/guix.texi:23170 -#: guix-git/doc/guix.texi:23177 guix-git/doc/guix.texi:24927 -#: guix-git/doc/guix.texi:25322 guix-git/doc/guix.texi:25426 -#: guix-git/doc/guix.texi:25853 guix-git/doc/guix.texi:25861 -#: guix-git/doc/guix.texi:26106 guix-git/doc/guix.texi:28239 -#: guix-git/doc/guix.texi:28417 guix-git/doc/guix.texi:28616 -#: guix-git/doc/guix.texi:30077 guix-git/doc/guix.texi:30137 -#: guix-git/doc/guix.texi:30145 guix-git/doc/guix.texi:31853 -#: guix-git/doc/guix.texi:31860 guix-git/doc/guix.texi:32202 -#: guix-git/doc/guix.texi:32280 guix-git/doc/guix.texi:32374 -#: guix-git/doc/guix.texi:32382 guix-git/doc/guix.texi:32418 -#: guix-git/doc/guix.texi:32568 guix-git/doc/guix.texi:32619 -#: guix-git/doc/guix.texi:32628 +#: guix-git/doc/guix.texi:20396 guix-git/doc/guix.texi:20402 +#: guix-git/doc/guix.texi:20416 guix-git/doc/guix.texi:20423 +#: guix-git/doc/guix.texi:20565 guix-git/doc/guix.texi:20624 +#: guix-git/doc/guix.texi:20702 guix-git/doc/guix.texi:20716 +#: guix-git/doc/guix.texi:21864 guix-git/doc/guix.texi:21873 +#: guix-git/doc/guix.texi:23143 guix-git/doc/guix.texi:23346 +#: guix-git/doc/guix.texi:23374 guix-git/doc/guix.texi:23404 +#: guix-git/doc/guix.texi:23519 guix-git/doc/guix.texi:23532 +#: guix-git/doc/guix.texi:23539 guix-git/doc/guix.texi:25289 +#: guix-git/doc/guix.texi:25684 guix-git/doc/guix.texi:25788 +#: guix-git/doc/guix.texi:26190 guix-git/doc/guix.texi:26198 +#: guix-git/doc/guix.texi:26443 guix-git/doc/guix.texi:28576 +#: guix-git/doc/guix.texi:28754 guix-git/doc/guix.texi:28953 +#: guix-git/doc/guix.texi:30442 guix-git/doc/guix.texi:30502 +#: guix-git/doc/guix.texi:30510 guix-git/doc/guix.texi:32218 +#: guix-git/doc/guix.texi:32225 guix-git/doc/guix.texi:32567 +#: guix-git/doc/guix.texi:32645 guix-git/doc/guix.texi:32739 +#: guix-git/doc/guix.texi:32747 guix-git/doc/guix.texi:32783 +#: guix-git/doc/guix.texi:32933 guix-git/doc/guix.texi:32984 +#: guix-git/doc/guix.texi:32993 msgid "Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20036 +#: guix-git/doc/guix.texi:20398 #, no-wrap msgid "{@code{location-access-controls} parameter} method-access-control-list method-access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20038 +#: guix-git/doc/guix.texi:20400 msgid "Access controls for method-specific access to this path." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20042 +#: guix-git/doc/guix.texi:20404 msgid "Available @code{method-access-controls} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20043 +#: guix-git/doc/guix.texi:20405 #, no-wrap msgid "{@code{method-access-controls} parameter} boolean reverse?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20046 +#: guix-git/doc/guix.texi:20408 msgid "If @code{#t}, apply access controls to all methods except the listed methods. Otherwise apply to only the listed methods." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20050 +#: guix-git/doc/guix.texi:20412 #, no-wrap msgid "{@code{method-access-controls} parameter} method-list methods" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20052 +#: guix-git/doc/guix.texi:20414 msgid "Methods to which this access control applies." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20056 +#: guix-git/doc/guix.texi:20418 #, no-wrap msgid "{@code{method-access-controls} parameter} access-control-list access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20059 +#: guix-git/doc/guix.texi:20421 msgid "Access control directives, as a list of strings. Each string should be one directive, such as @samp{\"Order allow,deny\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20065 +#: guix-git/doc/guix.texi:20427 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer log-debug-history" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20069 +#: guix-git/doc/guix.texi:20431 msgid "Specifies the number of debugging messages that are retained for logging if an error occurs in a print job. Debug messages are logged regardless of the LogLevel setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20071 guix-git/doc/guix.texi:20092 -#: guix-git/doc/guix.texi:20099 guix-git/doc/guix.texi:22541 -#: guix-git/doc/guix.texi:24459 guix-git/doc/guix.texi:24474 -#: guix-git/doc/guix.texi:28601 +#: guix-git/doc/guix.texi:20433 guix-git/doc/guix.texi:20454 +#: guix-git/doc/guix.texi:20461 guix-git/doc/guix.texi:22903 +#: guix-git/doc/guix.texi:24821 guix-git/doc/guix.texi:24836 +#: guix-git/doc/guix.texi:28938 msgid "Defaults to @samp{100}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20073 +#: guix-git/doc/guix.texi:20435 #, no-wrap msgid "{@code{cups-configuration} parameter} log-level log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20076 +#: guix-git/doc/guix.texi:20438 msgid "Specifies the level of logging for the ErrorLog file. The value @code{none} stops all logging while @code{debug2} logs everything." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20078 guix-git/doc/guix.texi:24936 +#: guix-git/doc/guix.texi:20440 guix-git/doc/guix.texi:25298 msgid "Defaults to @samp{info}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20080 +#: guix-git/doc/guix.texi:20442 #, no-wrap msgid "{@code{cups-configuration} parameter} log-time-format log-time-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20083 +#: guix-git/doc/guix.texi:20445 msgid "Specifies the format of the date and time in the log files. The value @code{standard} logs whole seconds while @code{usecs} logs microseconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20085 +#: guix-git/doc/guix.texi:20447 msgid "Defaults to @samp{standard}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20087 +#: guix-git/doc/guix.texi:20449 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20090 +#: guix-git/doc/guix.texi:20452 msgid "Specifies the maximum number of simultaneous clients that are allowed by the scheduler." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20094 +#: guix-git/doc/guix.texi:20456 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-clients-per-host" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20097 +#: guix-git/doc/guix.texi:20459 msgid "Specifies the maximum number of simultaneous clients that are allowed from a single address." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20101 +#: guix-git/doc/guix.texi:20463 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-copies" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20104 +#: guix-git/doc/guix.texi:20466 msgid "Specifies the maximum number of copies that a user can print of each job." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20106 +#: guix-git/doc/guix.texi:20468 msgid "Defaults to @samp{9999}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20108 +#: guix-git/doc/guix.texi:20470 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-hold-time" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20112 +#: guix-git/doc/guix.texi:20474 msgid "Specifies the maximum time a job may remain in the @code{indefinite} hold state before it is canceled. A value of 0 disables cancellation of held jobs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20116 +#: guix-git/doc/guix.texi:20478 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20119 +#: guix-git/doc/guix.texi:20481 msgid "Specifies the maximum number of simultaneous jobs that are allowed. Set to 0 to allow an unlimited number of jobs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20121 +#: guix-git/doc/guix.texi:20483 msgid "Defaults to @samp{500}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20123 +#: guix-git/doc/guix.texi:20485 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs-per-printer" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20126 +#: guix-git/doc/guix.texi:20488 msgid "Specifies the maximum number of simultaneous jobs that are allowed per printer. A value of 0 allows up to MaxJobs jobs per printer." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20130 +#: guix-git/doc/guix.texi:20492 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs-per-user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20133 +#: guix-git/doc/guix.texi:20495 msgid "Specifies the maximum number of simultaneous jobs that are allowed per user. A value of 0 allows up to MaxJobs jobs per user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20137 +#: guix-git/doc/guix.texi:20499 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-job-time" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20140 +#: guix-git/doc/guix.texi:20502 msgid "Specifies the maximum time a job may take to print before it is canceled, in seconds. Set to 0 to disable cancellation of ``stuck'' jobs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20142 +#: guix-git/doc/guix.texi:20504 msgid "Defaults to @samp{10800}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20144 +#: guix-git/doc/guix.texi:20506 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-log-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20147 +#: guix-git/doc/guix.texi:20509 msgid "Specifies the maximum size of the log files before they are rotated, in bytes. The value 0 disables log rotation." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20149 +#: guix-git/doc/guix.texi:20511 msgid "Defaults to @samp{1048576}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20151 +#: guix-git/doc/guix.texi:20513 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer multiple-operation-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20154 +#: guix-git/doc/guix.texi:20516 msgid "Specifies the maximum amount of time to allow between files in a multiple file print job, in seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20156 guix-git/doc/guix.texi:20367 +#: guix-git/doc/guix.texi:20518 guix-git/doc/guix.texi:20729 msgid "Defaults to @samp{900}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20158 +#: guix-git/doc/guix.texi:20520 #, no-wrap msgid "{@code{cups-configuration} parameter} string page-log-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20163 +#: guix-git/doc/guix.texi:20525 msgid "Specifies the format of PageLog lines. Sequences beginning with percent (@samp{%}) characters are replaced with the corresponding information, while all other characters are copied literally. The following percent sequences are recognized:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20165 +#: guix-git/doc/guix.texi:20527 #, no-wrap msgid "%%" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20167 +#: guix-git/doc/guix.texi:20529 msgid "insert a single percent character" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20168 +#: guix-git/doc/guix.texi:20530 #, no-wrap msgid "%@{name@}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20170 +#: guix-git/doc/guix.texi:20532 msgid "insert the value of the specified IPP attribute" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20171 +#: guix-git/doc/guix.texi:20533 #, no-wrap msgid "%C" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20173 +#: guix-git/doc/guix.texi:20535 msgid "insert the number of copies for the current page" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20174 +#: guix-git/doc/guix.texi:20536 #, no-wrap msgid "%P" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20176 +#: guix-git/doc/guix.texi:20538 msgid "insert the current page number" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20177 +#: guix-git/doc/guix.texi:20539 #, no-wrap msgid "%T" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20179 +#: guix-git/doc/guix.texi:20541 msgid "insert the current date and time in common log format" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20180 +#: guix-git/doc/guix.texi:20542 #, no-wrap msgid "%j" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20182 +#: guix-git/doc/guix.texi:20544 msgid "insert the job ID" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20183 guix-git/doc/guix.texi:22140 +#: guix-git/doc/guix.texi:20545 guix-git/doc/guix.texi:22502 #, no-wrap msgid "%p" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20185 +#: guix-git/doc/guix.texi:20547 msgid "insert the printer name" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20186 guix-git/doc/guix.texi:22163 +#: guix-git/doc/guix.texi:20548 guix-git/doc/guix.texi:22525 #, no-wrap msgid "%u" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20188 +#: guix-git/doc/guix.texi:20550 msgid "insert the username" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20194 +#: guix-git/doc/guix.texi:20556 msgid "A value of the empty string disables page logging. The string @code{%p %u %j %T %P %C %@{job-billing@} %@{job-originating-host-name@} %@{job-name@} %@{media@} %@{sides@}} creates a page log with the standard items." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20198 +#: guix-git/doc/guix.texi:20560 #, no-wrap msgid "{@code{cups-configuration} parameter} environment-variables environment-variables" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20201 +#: guix-git/doc/guix.texi:20563 msgid "Passes the specified environment variable(s) to child processes; a list of strings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20205 +#: guix-git/doc/guix.texi:20567 #, no-wrap msgid "{@code{cups-configuration} parameter} policy-configuration-list policies" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20207 +#: guix-git/doc/guix.texi:20569 msgid "Specifies named access control policies." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20209 +#: guix-git/doc/guix.texi:20571 msgid "Available @code{policy-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20210 +#: guix-git/doc/guix.texi:20572 #, no-wrap msgid "{@code{policy-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20212 +#: guix-git/doc/guix.texi:20574 msgid "Name of the policy." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20214 +#: guix-git/doc/guix.texi:20576 #, no-wrap msgid "{@code{policy-configuration} parameter} string job-private-access" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20224 +#: guix-git/doc/guix.texi:20586 msgid "Specifies an access list for a job's private values. @code{@@ACL} maps to the printer's requesting-user-name-allowed or requesting-user-name-denied values. @code{@@OWNER} maps to the job's owner. @code{@@SYSTEM} maps to the groups listed for the @code{system-group} field of the @code{files-configuration}, which is reified into the @code{cups-files.conf(5)} file. Other possible elements of the access list include specific user names, and @code{@@@var{group}} to indicate members of a specific group. The access list may also be simply @code{all} or @code{default}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20226 guix-git/doc/guix.texi:20248 +#: guix-git/doc/guix.texi:20588 guix-git/doc/guix.texi:20610 msgid "Defaults to @samp{\"@@OWNER @@SYSTEM\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20228 +#: guix-git/doc/guix.texi:20590 #, no-wrap msgid "{@code{policy-configuration} parameter} string job-private-values" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20231 guix-git/doc/guix.texi:20253 +#: guix-git/doc/guix.texi:20593 guix-git/doc/guix.texi:20615 msgid "Specifies the list of job values to make private, or @code{all}, @code{default}, or @code{none}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20234 +#: guix-git/doc/guix.texi:20596 msgid "Defaults to @samp{\"job-name job-originating-host-name job-originating-user-name phone\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20236 +#: guix-git/doc/guix.texi:20598 #, no-wrap msgid "{@code{policy-configuration} parameter} string subscription-private-access" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20246 +#: guix-git/doc/guix.texi:20608 msgid "Specifies an access list for a subscription's private values. @code{@@ACL} maps to the printer's requesting-user-name-allowed or requesting-user-name-denied values. @code{@@OWNER} maps to the job's owner. @code{@@SYSTEM} maps to the groups listed for the @code{system-group} field of the @code{files-configuration}, which is reified into the @code{cups-files.conf(5)} file. Other possible elements of the access list include specific user names, and @code{@@@var{group}} to indicate members of a specific group. The access list may also be simply @code{all} or @code{default}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20250 +#: guix-git/doc/guix.texi:20612 #, no-wrap msgid "{@code{policy-configuration} parameter} string subscription-private-values" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20256 +#: guix-git/doc/guix.texi:20618 msgid "Defaults to @samp{\"notify-events notify-pull-method notify-recipient-uri notify-subscriber-user-name notify-user-data\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20258 +#: guix-git/doc/guix.texi:20620 #, no-wrap msgid "{@code{policy-configuration} parameter} operation-access-control-list access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20260 +#: guix-git/doc/guix.texi:20622 msgid "Access control by IPP operation." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20265 +#: guix-git/doc/guix.texi:20627 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean-or-non-negative-integer preserve-job-files" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20270 +#: guix-git/doc/guix.texi:20632 msgid "Specifies whether job files (documents) are preserved after a job is printed. If a numeric value is specified, job files are preserved for the indicated number of seconds after printing. Otherwise a boolean value applies indefinitely." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20272 +#: guix-git/doc/guix.texi:20634 msgid "Defaults to @samp{86400}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20274 +#: guix-git/doc/guix.texi:20636 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean-or-non-negative-integer preserve-job-history" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20279 +#: guix-git/doc/guix.texi:20641 msgid "Specifies whether the job history is preserved after a job is printed. If a numeric value is specified, the job history is preserved for the indicated number of seconds after printing. If @code{#t}, the job history is preserved until the MaxJobs limit is reached." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20283 +#: guix-git/doc/guix.texi:20645 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer reload-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20286 +#: guix-git/doc/guix.texi:20648 msgid "Specifies the amount of time to wait for job completion before restarting the scheduler." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20290 +#: guix-git/doc/guix.texi:20652 #, no-wrap msgid "{@code{cups-configuration} parameter} string rip-cache" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20293 +#: guix-git/doc/guix.texi:20655 msgid "Specifies the maximum amount of memory to use when converting documents into bitmaps for a printer." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20295 +#: guix-git/doc/guix.texi:20657 msgid "Defaults to @samp{\"128m\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20297 +#: guix-git/doc/guix.texi:20659 #, no-wrap msgid "{@code{cups-configuration} parameter} string server-admin" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20299 +#: guix-git/doc/guix.texi:20661 msgid "Specifies the email address of the server administrator." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20301 +#: guix-git/doc/guix.texi:20663 msgid "Defaults to @samp{\"root@@localhost.localdomain\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20303 +#: guix-git/doc/guix.texi:20665 #, no-wrap msgid "{@code{cups-configuration} parameter} host-name-list-or-* server-alias" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20311 +#: guix-git/doc/guix.texi:20673 msgid "The ServerAlias directive is used for HTTP Host header validation when clients connect to the scheduler from external interfaces. Using the special name @code{*} can expose your system to known browser-based DNS rebinding attacks, even when accessing sites through a firewall. If the auto-discovery of alternate names does not work, we recommend listing each alternate name with a ServerAlias directive instead of using @code{*}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20313 +#: guix-git/doc/guix.texi:20675 msgid "Defaults to @samp{*}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20315 +#: guix-git/doc/guix.texi:20677 #, no-wrap msgid "{@code{cups-configuration} parameter} string server-name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20317 +#: guix-git/doc/guix.texi:20679 msgid "Specifies the fully-qualified host name of the server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20319 guix-git/doc/guix.texi:25449 -#: guix-git/doc/guix.texi:25494 +#: guix-git/doc/guix.texi:20681 msgid "Defaults to @samp{\"localhost\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20321 +#: guix-git/doc/guix.texi:20683 #, no-wrap msgid "{@code{cups-configuration} parameter} server-tokens server-tokens" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20329 +#: guix-git/doc/guix.texi:20691 msgid "Specifies what information is included in the Server header of HTTP responses. @code{None} disables the Server header. @code{ProductOnly} reports @code{CUPS}. @code{Major} reports @code{CUPS 2}. @code{Minor} reports @code{CUPS 2.0}. @code{Minimal} reports @code{CUPS 2.0.0}. @code{OS} reports @code{CUPS 2.0.0 (@var{uname})} where @var{uname} is the output of the @code{uname} command. @code{Full} reports @code{CUPS 2.0.0 (@var{uname}) IPP/2.0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20331 +#: guix-git/doc/guix.texi:20693 msgid "Defaults to @samp{Minimal}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20333 +#: guix-git/doc/guix.texi:20695 #, no-wrap msgid "{@code{cups-configuration} parameter} multiline-string-list ssl-listen" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20338 +#: guix-git/doc/guix.texi:20700 msgid "Listens on the specified interfaces for encrypted connections. Valid values are of the form @var{address}:@var{port}, where @var{address} is either an IPv6 address enclosed in brackets, an IPv4 address, or @code{*} to indicate all addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20342 +#: guix-git/doc/guix.texi:20704 #, no-wrap msgid "{@code{cups-configuration} parameter} ssl-options ssl-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20352 +#: guix-git/doc/guix.texi:20714 msgid "Sets encryption options. By default, CUPS only supports encryption using TLS v1.0 or higher using known secure cipher suites. Security is reduced when @code{Allow} options are used, and enhanced when @code{Deny} options are used. The @code{AllowRC4} option enables the 128-bit RC4 cipher suites, which are required for some older clients. The @code{AllowSSL3} option enables SSL v3.0, which is required for some older clients that do not support TLS v1.0. The @code{DenyCBC} option disables all CBC cipher suites. The @code{DenyTLS1.0} option disables TLS v1.0 support - this sets the minimum protocol version to TLS v1.1." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20356 +#: guix-git/doc/guix.texi:20718 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean strict-conformance?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20359 +#: guix-git/doc/guix.texi:20721 msgid "Specifies whether the scheduler requires clients to strictly adhere to the IPP specifications." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20363 +#: guix-git/doc/guix.texi:20725 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20365 +#: guix-git/doc/guix.texi:20727 msgid "Specifies the HTTP request timeout, in seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20370 +#: guix-git/doc/guix.texi:20732 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean web-interface?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20372 +#: guix-git/doc/guix.texi:20734 msgid "Specifies whether the web interface is enabled." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20382 +#: guix-git/doc/guix.texi:20744 msgid "At this point you're probably thinking ``oh dear, Guix manual, I like you but you can stop already with the configuration options''. Indeed. However, one more point: it could be that you have an existing @code{cupsd.conf} that you want to use. In that case, you can pass an @code{opaque-cups-configuration} as the configuration of a @code{cups-service-type}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20384 +#: guix-git/doc/guix.texi:20746 msgid "Available @code{opaque-cups-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20385 +#: guix-git/doc/guix.texi:20747 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} package cups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20389 +#: guix-git/doc/guix.texi:20751 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} string cupsd.conf" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20391 +#: guix-git/doc/guix.texi:20753 msgid "The contents of the @code{cupsd.conf}, as a string." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20393 +#: guix-git/doc/guix.texi:20755 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} string cups-files.conf" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20395 +#: guix-git/doc/guix.texi:20757 msgid "The contents of the @code{cups-files.conf} file, as a string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20400 +#: guix-git/doc/guix.texi:20762 msgid "For example, if your @code{cupsd.conf} and @code{cups-files.conf} are in strings of the same name, you could instantiate a CUPS service like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20406 +#: guix-git/doc/guix.texi:20768 #, no-wrap msgid "" "(service cups-service-type\n" @@ -37629,238 +38355,238 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20417 +#: guix-git/doc/guix.texi:20779 msgid "The @code{(gnu services desktop)} module provides services that are usually useful in the context of a ``desktop'' setup---that is, on a machine running a graphical display server, possibly with graphical user interfaces, etc. It also defines services that provide specific desktop environments like GNOME, Xfce or MATE." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20421 +#: guix-git/doc/guix.texi:20783 msgid "To simplify things, the module defines a variable containing the set of services that users typically expect on a machine with a graphical environment and networking:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20422 +#: guix-git/doc/guix.texi:20784 #, no-wrap msgid "{Scheme Variable} %desktop-services" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20425 +#: guix-git/doc/guix.texi:20787 msgid "This is a list of services that builds upon @code{%base-services} and adds or adjusts services for a typical ``desktop'' setup." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20436 +#: guix-git/doc/guix.texi:20798 msgid "In particular, it adds a graphical login manager (@pxref{X Window, @code{gdm-service-type}}), screen lockers, a network management tool (@pxref{Networking Services, @code{network-manager-service-type}}) with modem support (@pxref{Networking Services, @code{modem-manager-service-type}}), energy and color management services, the @code{elogind} login and seat manager, the Polkit privilege service, the GeoClue location service, the AccountsService daemon that allows authorized users change system passwords, an NTP client (@pxref{Networking Services}), the Avahi daemon, and has the name service switch service configured to be able to use @code{nss-mdns} (@pxref{Name Service Switch, mDNS})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20441 +#: guix-git/doc/guix.texi:20803 msgid "The @code{%desktop-services} variable can be used as the @code{services} field of an @code{operating-system} declaration (@pxref{operating-system Reference, @code{services}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20464 +#: guix-git/doc/guix.texi:20826 msgid "Additionally, the @code{gnome-desktop-service-type}, @code{xfce-desktop-service}, @code{mate-desktop-service-type}, @code{lxqt-desktop-service-type} and @code{enlightenment-desktop-service-type} procedures can add GNOME, Xfce, MATE and/or Enlightenment to a system. To ``add GNOME'' means that system-level services like the backlight adjustment helpers and the power management utilities are added to the system, extending @code{polkit} and @code{dbus} appropriately, allowing GNOME to operate with elevated privileges on a limited number of special-purpose system interfaces. Additionally, adding a service made by @code{gnome-desktop-service-type} adds the GNOME metapackage to the system profile. Likewise, adding the Xfce service not only adds the @code{xfce} metapackage to the system profile, but it also gives the Thunar file manager the ability to open a ``root-mode'' file management window, if the user authenticates using the administrator's password via the standard polkit graphical interface. To ``add MATE'' means that @code{polkit} and @code{dbus} are extended appropriately, allowing MATE to operate with elevated privileges on a limited number of special-purpose system interfaces. Additionally, adding a service of type @code{mate-desktop-service-type} adds the MATE metapackage to the system profile. ``Adding Enlightenment'' means that @code{dbus} is extended appropriately, and several of Enlightenment's binaries are set as setuid, allowing Enlightenment's screen locker and other functionality to work as expected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20474 +#: guix-git/doc/guix.texi:20836 msgid "The desktop environments in Guix use the Xorg display server by default. If you'd like to use the newer display server protocol called Wayland, you need to enable Wayland support in GDM (@pxref{wayland-gdm}). Another solution is to use the @code{sddm-service} instead of GDM as the graphical login manager. You should then select the ``GNOME (Wayland)'' session in SDDM@. Alternatively you can also try starting GNOME on Wayland manually from a TTY with the command ``XDG_SESSION_TYPE=wayland exec dbus-run-session gnome-session``. Currently only GNOME has support for Wayland." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20475 +#: guix-git/doc/guix.texi:20837 #, no-wrap msgid "{Scheme Variable} gnome-desktop-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20479 +#: guix-git/doc/guix.texi:20841 msgid "This is the type of the service that adds the @uref{https://www.gnome.org, GNOME} desktop environment. Its value is a @code{gnome-desktop-configuration} object (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20482 +#: guix-git/doc/guix.texi:20844 msgid "This service adds the @code{gnome} package to the system profile, and extends polkit with the actions from @code{gnome-settings-daemon}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20484 +#: guix-git/doc/guix.texi:20846 #, no-wrap msgid "{Data Type} gnome-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20486 +#: guix-git/doc/guix.texi:20848 msgid "Configuration record for the GNOME desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20488 +#: guix-git/doc/guix.texi:20850 #, no-wrap msgid "@code{gnome} (default: @code{gnome})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:20490 +#: guix-git/doc/guix.texi:20852 msgid "The GNOME package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20493 +#: guix-git/doc/guix.texi:20855 #, no-wrap msgid "{Scheme Variable} xfce-desktop-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20497 +#: guix-git/doc/guix.texi:20859 msgid "This is the type of a service to run the @uref{Xfce, https://xfce.org/} desktop environment. Its value is an @code{xfce-desktop-configuration} object (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20502 +#: guix-git/doc/guix.texi:20864 msgid "This service adds the @code{xfce} package to the system profile, and extends polkit with the ability for @code{thunar} to manipulate the file system as root from within a user session, after the user has authenticated with the administrator's password." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20508 +#: guix-git/doc/guix.texi:20870 msgid "Note that @code{xfce4-panel} and its plugin packages should be installed in the same profile to ensure compatibility. When using this service, you should add extra plugins (@code{xfce4-whiskermenu-plugin}, @code{xfce4-weather-plugin}, etc.) to the @code{packages} field of your @code{operating-system}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20510 +#: guix-git/doc/guix.texi:20872 #, no-wrap msgid "{Data Type} xfce-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20512 +#: guix-git/doc/guix.texi:20874 msgid "Configuration record for the Xfce desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20514 +#: guix-git/doc/guix.texi:20876 #, no-wrap msgid "@code{xfce} (default: @code{xfce})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:20516 +#: guix-git/doc/guix.texi:20878 msgid "The Xfce package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20519 +#: guix-git/doc/guix.texi:20881 #, no-wrap msgid "{Scheme Variable} mate-desktop-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20523 +#: guix-git/doc/guix.texi:20885 msgid "This is the type of the service that runs the @uref{https://mate-desktop.org/, MATE desktop environment}. Its value is a @code{mate-desktop-configuration} object (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20527 +#: guix-git/doc/guix.texi:20889 msgid "This service adds the @code{mate} package to the system profile, and extends polkit with the actions from @code{mate-settings-daemon}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20529 +#: guix-git/doc/guix.texi:20891 #, no-wrap msgid "{Data Type} mate-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20531 +#: guix-git/doc/guix.texi:20893 msgid "Configuration record for the MATE desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20533 +#: guix-git/doc/guix.texi:20895 #, no-wrap msgid "@code{mate} (default: @code{mate})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:20535 +#: guix-git/doc/guix.texi:20897 msgid "The MATE package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20538 +#: guix-git/doc/guix.texi:20900 #, no-wrap msgid "{Scheme Variable} lxqt-desktop-service-type" msgstr "{Scheme Variable} etc-service-type" #. type: deffn -#: guix-git/doc/guix.texi:20542 +#: guix-git/doc/guix.texi:20904 msgid "This is the type of the service that runs the @uref{https://lxqt-project.org, LXQt desktop environment}. Its value is a @code{lxqt-desktop-configuration} object (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20545 +#: guix-git/doc/guix.texi:20907 msgid "This service adds the @code{lxqt} package to the system profile." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20547 +#: guix-git/doc/guix.texi:20909 #, no-wrap msgid "{Data Type} lxqt-desktop-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:20549 +#: guix-git/doc/guix.texi:20911 msgid "Configuration record for the LXQt desktop environment." msgstr "Конфигурации для среды рабочего стола LXQt." #. type: item -#: guix-git/doc/guix.texi:20551 +#: guix-git/doc/guix.texi:20913 #, no-wrap msgid "@code{lxqt} (default: @code{lxqt})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:20553 +#: guix-git/doc/guix.texi:20915 msgid "The LXQT package to use." msgstr "Используемый пакет LXQT." #. type: deffn -#: guix-git/doc/guix.texi:20556 +#: guix-git/doc/guix.texi:20918 #, no-wrap msgid "{Scheme Variable} enlightenment-desktop-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20559 +#: guix-git/doc/guix.texi:20921 msgid "Return a service that adds the @code{enlightenment} package to the system profile, and extends dbus with actions from @code{efl}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20561 +#: guix-git/doc/guix.texi:20923 #, no-wrap msgid "{Data Type} enlightenment-desktop-service-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20563 +#: guix-git/doc/guix.texi:20925 #, no-wrap msgid "@code{enlightenment} (default: @code{enlightenment})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:20565 +#: guix-git/doc/guix.texi:20927 msgid "The enlightenment package to use." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20573 +#: guix-git/doc/guix.texi:20935 msgid "Because the GNOME, Xfce and MATE desktop services pull in so many packages, the default @code{%desktop-services} variable doesn't include any of them by default. To add GNOME, Xfce or MATE, just @code{cons} them onto @code{%desktop-services} in the @code{services} field of your @code{operating-system}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20584 +#: guix-git/doc/guix.texi:20946 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -37875,576 +38601,576 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20588 +#: guix-git/doc/guix.texi:20950 msgid "These desktop environments will then be available as options in the graphical login window." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20592 +#: guix-git/doc/guix.texi:20954 msgid "The actual service definitions included in @code{%desktop-services} and provided by @code{(gnu services dbus)} and @code{(gnu services desktop)} are described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20593 +#: guix-git/doc/guix.texi:20955 #, no-wrap msgid "{Scheme Procedure} dbus-service [#:dbus @var{dbus}] [#:services '()]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20596 +#: guix-git/doc/guix.texi:20958 msgid "Return a service that runs the ``system bus'', using @var{dbus}, with support for @var{services}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20600 +#: guix-git/doc/guix.texi:20962 msgid "@uref{https://dbus.freedesktop.org/, D-Bus} is an inter-process communication facility. Its system bus is used to allow system services to communicate and to be notified of system-wide events." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20605 +#: guix-git/doc/guix.texi:20967 msgid "@var{services} must be a list of packages that provide an @file{etc/dbus-1/system.d} directory containing additional D-Bus configuration and policy files. For example, to allow avahi-daemon to use the system bus, @var{services} must be equal to @code{(list avahi)}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20607 +#: guix-git/doc/guix.texi:20969 #, no-wrap msgid "{Scheme Procedure} elogind-service [#:config @var{config}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20613 +#: guix-git/doc/guix.texi:20975 msgid "Return a service that runs the @code{elogind} login and seat management daemon. @uref{https://github.com/elogind/elogind, Elogind} exposes a D-Bus interface that can be used to know which users are logged in, know what kind of sessions they have open, suspend the system, inhibit system suspend, reboot the system, and other tasks." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20617 +#: guix-git/doc/guix.texi:20979 msgid "Elogind handles most system-level power events for a computer, for example suspending the system when a lid is closed, or shutting it down when the power button is pressed." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20622 +#: guix-git/doc/guix.texi:20984 msgid "The @var{config} keyword argument specifies the configuration for elogind, and should be the result of an @code{(elogind-configuration (@var{parameter} @var{value})...)} invocation. Available parameters and their default values are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20624 +#: guix-git/doc/guix.texi:20986 #, no-wrap msgid "kill-user-processes?" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20626 guix-git/doc/guix.texi:20646 -#: guix-git/doc/guix.texi:20648 guix-git/doc/guix.texi:20650 -#: guix-git/doc/guix.texi:20662 +#: guix-git/doc/guix.texi:20988 guix-git/doc/guix.texi:21008 +#: guix-git/doc/guix.texi:21010 guix-git/doc/guix.texi:21012 +#: guix-git/doc/guix.texi:21024 msgid "#f" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20626 +#: guix-git/doc/guix.texi:20988 #, no-wrap msgid "kill-only-users" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20628 guix-git/doc/guix.texi:20668 +#: guix-git/doc/guix.texi:20990 guix-git/doc/guix.texi:21030 msgid "()" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20628 +#: guix-git/doc/guix.texi:20990 #, no-wrap msgid "kill-exclude-users" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20630 +#: guix-git/doc/guix.texi:20992 msgid "(\"root\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20630 +#: guix-git/doc/guix.texi:20992 #, no-wrap msgid "inhibit-delay-max-seconds" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20632 +#: guix-git/doc/guix.texi:20994 msgid "5" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20632 +#: guix-git/doc/guix.texi:20994 #, no-wrap msgid "handle-power-key" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20634 +#: guix-git/doc/guix.texi:20996 msgid "poweroff" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20634 +#: guix-git/doc/guix.texi:20996 #, no-wrap msgid "handle-suspend-key" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20636 guix-git/doc/guix.texi:20640 +#: guix-git/doc/guix.texi:20998 guix-git/doc/guix.texi:21002 msgid "suspend" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20636 +#: guix-git/doc/guix.texi:20998 #, no-wrap msgid "handle-hibernate-key" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20638 +#: guix-git/doc/guix.texi:21000 msgid "hibernate" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20638 +#: guix-git/doc/guix.texi:21000 #, no-wrap msgid "handle-lid-switch" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20640 +#: guix-git/doc/guix.texi:21002 #, no-wrap msgid "handle-lid-switch-docked" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20642 guix-git/doc/guix.texi:20644 -#: guix-git/doc/guix.texi:20656 +#: guix-git/doc/guix.texi:21004 guix-git/doc/guix.texi:21006 +#: guix-git/doc/guix.texi:21018 msgid "ignore" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20642 +#: guix-git/doc/guix.texi:21004 #, no-wrap msgid "handle-lid-switch-external-power" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20644 +#: guix-git/doc/guix.texi:21006 #, no-wrap msgid "power-key-ignore-inhibited?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20646 +#: guix-git/doc/guix.texi:21008 #, no-wrap msgid "suspend-key-ignore-inhibited?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20648 +#: guix-git/doc/guix.texi:21010 #, no-wrap msgid "hibernate-key-ignore-inhibited?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20650 +#: guix-git/doc/guix.texi:21012 #, no-wrap msgid "lid-switch-ignore-inhibited?" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20652 guix-git/doc/guix.texi:20664 +#: guix-git/doc/guix.texi:21014 guix-git/doc/guix.texi:21026 msgid "#t" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20652 +#: guix-git/doc/guix.texi:21014 #, no-wrap msgid "holdoff-timeout-seconds" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20654 +#: guix-git/doc/guix.texi:21016 msgid "30" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20654 +#: guix-git/doc/guix.texi:21016 #, no-wrap msgid "idle-action" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20656 +#: guix-git/doc/guix.texi:21018 #, no-wrap msgid "idle-action-seconds" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20658 +#: guix-git/doc/guix.texi:21020 msgid "(* 30 60)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20658 +#: guix-git/doc/guix.texi:21020 #, no-wrap msgid "runtime-directory-size-percent" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20660 +#: guix-git/doc/guix.texi:21022 msgid "10" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20660 +#: guix-git/doc/guix.texi:21022 #, no-wrap msgid "runtime-directory-size" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20662 +#: guix-git/doc/guix.texi:21024 #, no-wrap msgid "remove-ipc?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20664 +#: guix-git/doc/guix.texi:21026 #, no-wrap msgid "suspend-state" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20666 +#: guix-git/doc/guix.texi:21028 msgid "(\"mem\" \"standby\" \"freeze\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20666 +#: guix-git/doc/guix.texi:21028 #, no-wrap msgid "suspend-mode" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20668 +#: guix-git/doc/guix.texi:21030 #, no-wrap msgid "hibernate-state" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20670 guix-git/doc/guix.texi:20674 +#: guix-git/doc/guix.texi:21032 guix-git/doc/guix.texi:21036 msgid "(\"disk\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20670 +#: guix-git/doc/guix.texi:21032 #, no-wrap msgid "hibernate-mode" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20672 +#: guix-git/doc/guix.texi:21034 msgid "(\"platform\" \"shutdown\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20672 +#: guix-git/doc/guix.texi:21034 #, no-wrap msgid "hybrid-sleep-state" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20674 +#: guix-git/doc/guix.texi:21036 #, no-wrap msgid "hybrid-sleep-mode" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20676 +#: guix-git/doc/guix.texi:21038 msgid "(\"suspend\" \"platform\" \"shutdown\")" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20679 +#: guix-git/doc/guix.texi:21041 #, no-wrap msgid "{Scheme Procedure} accountsservice-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20687 +#: guix-git/doc/guix.texi:21049 msgid "[#:accountsservice @var{accountsservice}] Return a service that runs AccountsService, a system service that can list available accounts, change their passwords, and so on. AccountsService integrates with PolicyKit to enable unprivileged users to acquire the capability to modify their system configuration. @uref{https://www.freedesktop.org/wiki/Software/AccountsService/, the accountsservice web site} for more information." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20690 +#: guix-git/doc/guix.texi:21052 msgid "The @var{accountsservice} keyword argument is the @code{accountsservice} package to expose as a service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20692 +#: guix-git/doc/guix.texi:21054 #, no-wrap msgid "{Scheme Procedure} polkit-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20701 +#: guix-git/doc/guix.texi:21063 msgid "[#:polkit @var{polkit}] Return a service that runs the @uref{https://www.freedesktop.org/wiki/Software/polkit/, Polkit privilege management service}, which allows system administrators to grant access to privileged operations in a structured way. By querying the Polkit service, a privileged system component can know when it should grant additional capabilities to ordinary users. For example, an ordinary user can be granted the capability to suspend the system if the user is logged in locally." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20703 +#: guix-git/doc/guix.texi:21065 #, no-wrap msgid "{Scheme Variable} polkit-wheel-service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20708 +#: guix-git/doc/guix.texi:21070 msgid "Service that adds the @code{wheel} group as admins to the Polkit service. This makes it so that users in the @code{wheel} group are queried for their own passwords when performing administrative actions instead of @code{root}'s, similar to the behaviour used by @code{sudo}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20710 +#: guix-git/doc/guix.texi:21072 #, no-wrap msgid "{Scheme Variable} upower-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20714 +#: guix-git/doc/guix.texi:21076 msgid "Service that runs @uref{https://upower.freedesktop.org/, @command{upowerd}}, a system-wide monitor for power consumption and battery levels, with the given configuration settings." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20717 +#: guix-git/doc/guix.texi:21079 msgid "It implements the @code{org.freedesktop.UPower} D-Bus interface, and is notably used by GNOME." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20719 +#: guix-git/doc/guix.texi:21081 #, no-wrap msgid "{Data Type} upower-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20721 +#: guix-git/doc/guix.texi:21083 msgid "Data type representation the configuration for UPower." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20724 +#: guix-git/doc/guix.texi:21086 #, no-wrap msgid "@code{upower} (default: @var{upower})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20726 +#: guix-git/doc/guix.texi:21088 msgid "Package to use for @code{upower}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20727 +#: guix-git/doc/guix.texi:21089 #, no-wrap msgid "@code{watts-up-pro?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20729 +#: guix-git/doc/guix.texi:21091 msgid "Enable the Watts Up Pro device." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20730 +#: guix-git/doc/guix.texi:21092 #, no-wrap msgid "@code{poll-batteries?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20732 +#: guix-git/doc/guix.texi:21094 msgid "Enable polling the kernel for battery level changes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20733 +#: guix-git/doc/guix.texi:21095 #, no-wrap msgid "@code{ignore-lid?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20735 +#: guix-git/doc/guix.texi:21097 msgid "Ignore the lid state, this can be useful if it's incorrect on a device." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20736 +#: guix-git/doc/guix.texi:21098 #, no-wrap msgid "@code{use-percentage-for-policy?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20739 +#: guix-git/doc/guix.texi:21101 msgid "Whether battery percentage based policy should be used. The default is to use the time left, change to @code{#t} to use the percentage." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20740 +#: guix-git/doc/guix.texi:21102 #, no-wrap msgid "@code{percentage-low} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20743 +#: guix-git/doc/guix.texi:21105 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which the battery is considered low." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20744 +#: guix-git/doc/guix.texi:21106 #, no-wrap msgid "@code{percentage-critical} (default: @code{3})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20747 +#: guix-git/doc/guix.texi:21109 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which the battery is considered critical." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20748 +#: guix-git/doc/guix.texi:21110 #, no-wrap msgid "@code{percentage-action} (default: @code{2})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20751 +#: guix-git/doc/guix.texi:21113 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which action will be taken." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20752 +#: guix-git/doc/guix.texi:21114 #, no-wrap msgid "@code{time-low} (default: @code{1200})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20755 +#: guix-git/doc/guix.texi:21117 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which the battery is considered low." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20756 +#: guix-git/doc/guix.texi:21118 #, no-wrap msgid "@code{time-critical} (default: @code{300})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20759 +#: guix-git/doc/guix.texi:21121 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which the battery is considered critical." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20760 +#: guix-git/doc/guix.texi:21122 #, no-wrap msgid "@code{time-action} (default: @code{120})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20763 +#: guix-git/doc/guix.texi:21125 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which action will be taken." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20764 +#: guix-git/doc/guix.texi:21126 #, no-wrap msgid "@code{critical-power-action} (default: @code{'hybrid-sleep})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20767 +#: guix-git/doc/guix.texi:21129 msgid "The action taken when @code{percentage-action} or @code{time-action} is reached (depending on the configuration of @code{use-percentage-for-policy?})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20769 +#: guix-git/doc/guix.texi:21131 msgid "Possible values are:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20773 +#: guix-git/doc/guix.texi:21135 msgid "'power-off" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20776 +#: guix-git/doc/guix.texi:21138 msgid "'hibernate" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:20779 +#: guix-git/doc/guix.texi:21141 msgid "@code{'hybrid-sleep}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20784 +#: guix-git/doc/guix.texi:21146 #, no-wrap msgid "{Scheme Procedure} udisks-service [#:udisks @var{udisks}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20794 +#: guix-git/doc/guix.texi:21156 msgid "Return a service for @uref{https://udisks.freedesktop.org/docs/latest/, UDisks}, a @dfn{disk management} daemon that provides user interfaces with notifications and ways to mount/unmount disks. Programs that talk to UDisks include the @command{udisksctl} command, part of UDisks, and GNOME Disks. Note that Udisks relies on the @command{mount} command, so it will only be able to use the file-system utilities installed in the system profile. For example if you want to be able to mount NTFS file-systems in read and write fashion, you'll need to have @code{ntfs-3g} installed system-wide." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20796 +#: guix-git/doc/guix.texi:21158 #, no-wrap msgid "{Scheme Variable} colord-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20803 +#: guix-git/doc/guix.texi:21165 msgid "This is the type of the service that runs @command{colord}, a system service with a D-Bus interface to manage the color profiles of input and output devices such as screens and scanners. It is notably used by the GNOME Color Manager graphical tool. See @uref{https://www.freedesktop.org/software/colord/, the colord web site} for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20805 +#: guix-git/doc/guix.texi:21167 #, no-wrap msgid "scanner access" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20806 +#: guix-git/doc/guix.texi:21168 #, no-wrap msgid "{Scheme Variable} sane-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:20812 +#: guix-git/doc/guix.texi:21174 msgid "This service provides access to scanners @i{via} @uref{http://www.sane-project.org, SANE} by installing the necessary udev rules. It is included in @code{%desktop-services} (@pxref{Desktop Services}) and relies by default on @code{sane-backends-minimal} package (see below) for hardware support." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20814 +#: guix-git/doc/guix.texi:21176 #, no-wrap msgid "{Scheme Variable} sane-backends-minimal" msgstr "{Scheme Variable} ant-build-system" #. type: defvr -#: guix-git/doc/guix.texi:20817 +#: guix-git/doc/guix.texi:21179 msgid "The default package which the @code{sane-service-type} installs. It supports many recent scanners." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20819 +#: guix-git/doc/guix.texi:21181 #, no-wrap msgid "{Scheme Variable} sane-backends" msgstr "{Scheme Variable} ant-build-system" #. type: defvr -#: guix-git/doc/guix.texi:20826 +#: guix-git/doc/guix.texi:21188 msgid "This package includes support for all scanners that @code{sane-backends-minimal} supports, plus older Hewlett-Packard scanners supported by @code{hplip} package. In order to use this on a system which relies on @code{%desktop-services}, you may use @code{modify-services} (@pxref{Service Reference, @code{modify-services}}) as illustrated below:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20835 +#: guix-git/doc/guix.texi:21197 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -38458,7 +39184,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20840 +#: guix-git/doc/guix.texi:21202 #, no-wrap msgid "" "(define %my-desktop-services\n" @@ -38469,7 +39195,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20844 +#: guix-git/doc/guix.texi:21206 #, no-wrap msgid "" "(operating-system\n" @@ -38478,214 +39204,214 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20847 +#: guix-git/doc/guix.texi:21209 #, no-wrap msgid "{Scheme Procedure} geoclue-application name [#:allowed? #t] [#:system? #f] [#:users '()]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20856 +#: guix-git/doc/guix.texi:21218 msgid "Return a configuration allowing an application to access GeoClue location data. @var{name} is the Desktop ID of the application, without the @code{.desktop} part. If @var{allowed?} is true, the application will have access to location information by default. The boolean @var{system?} value indicates whether an application is a system component or not. Finally @var{users} is a list of UIDs of all users for which this application is allowed location info access. An empty users list means that all users are allowed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20858 +#: guix-git/doc/guix.texi:21220 #, no-wrap msgid "{Scheme Variable} %standard-geoclue-applications" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20865 +#: guix-git/doc/guix.texi:21227 msgid "The standard list of well-known GeoClue application configurations, granting authority to the GNOME date-and-time utility to ask for the current location in order to set the time zone, and allowing the IceCat and Epiphany web browsers to request location information. IceCat and Epiphany both query the user before allowing a web page to know the user's location." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20867 +#: guix-git/doc/guix.texi:21229 #, no-wrap msgid "{Scheme Procedure} geoclue-service [#:colord @var{colord}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20880 +#: guix-git/doc/guix.texi:21242 msgid "[#:whitelist '()] @ [#:wifi-geolocation-url \"https://location.services.mozilla.com/v1/geolocate?key=geoclue\"] @ [#:submit-data? #f] [#:wifi-submission-url \"https://location.services.mozilla.com/v1/submit?key=geoclue\"] @ [#:submission-nick \"geoclue\"] @ [#:applications %standard-geoclue-applications] Return a service that runs the GeoClue location service. This service provides a D-Bus interface to allow applications to request access to a user's physical location, and optionally to add information to online location databases. See @uref{https://wiki.freedesktop.org/www/Software/GeoClue/, the GeoClue web site} for more information." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20882 +#: guix-git/doc/guix.texi:21244 #, no-wrap msgid "{Scheme Procedure} bluetooth-service [#:bluez @var{bluez}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20889 +#: guix-git/doc/guix.texi:21251 msgid "[@w{#:auto-enable? #f}] Return a service that runs the @command{bluetoothd} daemon, which manages all the Bluetooth devices and provides a number of D-Bus interfaces. When AUTO-ENABLE? is true, the bluetooth controller is powered automatically at boot, which can be useful when using a bluetooth keyboard or mouse." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20891 +#: guix-git/doc/guix.texi:21253 msgid "Users need to be in the @code{lp} group to access the D-Bus service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20893 +#: guix-git/doc/guix.texi:21255 #, no-wrap msgid "{Scheme Variable} gnome-keyring-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20897 +#: guix-git/doc/guix.texi:21259 msgid "This is the type of the service that adds the @uref{https://wiki.gnome.org/Projects/GnomeKeyring, GNOME Keyring}. Its value is a @code{gnome-keyring-configuration} object (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20901 +#: guix-git/doc/guix.texi:21263 msgid "This service adds the @code{gnome-keyring} package to the system profile and extends PAM with entries using @code{pam_gnome_keyring.so}, unlocking a user's login keyring when they log in or setting its password with passwd." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20903 +#: guix-git/doc/guix.texi:21265 #, no-wrap msgid "{Data Type} gnome-keyring-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20905 +#: guix-git/doc/guix.texi:21267 msgid "Configuration record for the GNOME Keyring service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20907 +#: guix-git/doc/guix.texi:21269 #, no-wrap msgid "@code{keyring} (default: @code{gnome-keyring})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:20909 +#: guix-git/doc/guix.texi:21271 msgid "The GNOME keyring package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20910 +#: guix-git/doc/guix.texi:21272 #, no-wrap msgid "pam-services" msgstr "Базовые сервисы" #. type: table -#: guix-git/doc/guix.texi:20915 +#: guix-git/doc/guix.texi:21277 msgid "A list of @code{(@var{service} . @var{kind})} pairs denoting PAM services to extend, where @var{service} is the name of an existing service to extend and @var{kind} is one of @code{login} or @code{passwd}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20921 +#: guix-git/doc/guix.texi:21283 msgid "If @code{login} is given, it adds an optional @code{pam_gnome_keyring.so} to the auth block without arguments and to the session block with @code{auto_start}. If @code{passwd} is given, it adds an optional @code{pam_gnome_keyring.so} to the password block without arguments." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20924 +#: guix-git/doc/guix.texi:21286 msgid "By default, this field contains ``gdm-password'' with the value @code{login} and ``passwd'' is with the value @code{passwd}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20931 +#: guix-git/doc/guix.texi:21293 #, no-wrap msgid "sound support" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20932 +#: guix-git/doc/guix.texi:21294 #, no-wrap msgid "ALSA" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20933 +#: guix-git/doc/guix.texi:21295 #, no-wrap msgid "PulseAudio, sound support" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20938 +#: guix-git/doc/guix.texi:21300 msgid "The @code{(gnu services sound)} module provides a service to configure the Advanced Linux Sound Architecture (ALSA) system, which makes PulseAudio the preferred ALSA output driver." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20939 +#: guix-git/doc/guix.texi:21301 #, no-wrap msgid "{Scheme Variable} alsa-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20944 +#: guix-git/doc/guix.texi:21306 msgid "This is the type for the @uref{https://alsa-project.org/, Advanced Linux Sound Architecture} (ALSA) system, which generates the @file{/etc/asound.conf} configuration file. The value for this type is a @command{alsa-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20947 +#: guix-git/doc/guix.texi:21309 #, no-wrap msgid "(service alsa-service-type)\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20950 +#: guix-git/doc/guix.texi:21312 msgid "See below for details about @code{alsa-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20952 +#: guix-git/doc/guix.texi:21314 #, no-wrap msgid "{Data Type} alsa-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20954 +#: guix-git/doc/guix.texi:21316 msgid "Data type representing the configuration for @code{alsa-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20956 +#: guix-git/doc/guix.texi:21318 #, no-wrap msgid "@code{alsa-plugins} (default: @var{alsa-plugins})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20958 +#: guix-git/doc/guix.texi:21320 msgid "@code{alsa-plugins} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20959 +#: guix-git/doc/guix.texi:21321 #, no-wrap msgid "@code{pulseaudio?} (default: @var{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20962 +#: guix-git/doc/guix.texi:21324 msgid "Whether ALSA applications should transparently be made to use the @uref{https://www.pulseaudio.org/, PulseAudio} sound server." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20966 +#: guix-git/doc/guix.texi:21328 msgid "Using PulseAudio allows you to run several sound-producing applications at the same time and to individual control them @i{via} @command{pavucontrol}, among other things." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20967 +#: guix-git/doc/guix.texi:21329 #, no-wrap msgid "@code{extra-options} (default: @var{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20969 +#: guix-git/doc/guix.texi:21331 msgid "String to append to the @file{/etc/asound.conf} file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20975 +#: guix-git/doc/guix.texi:21337 msgid "Individual users who want to override the system configuration of ALSA can do it with the @file{~/.asoundrc} file:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:20981 +#: guix-git/doc/guix.texi:21343 #, no-wrap msgid "" "# In guix, we have to specify the absolute path for plugins.\n" @@ -38696,7 +39422,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:20990 +#: guix-git/doc/guix.texi:21352 #, no-wrap msgid "" "# Routing ALSA to jack:\n" @@ -38711,7 +39437,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:20996 +#: guix-git/doc/guix.texi:21358 #, no-wrap msgid "" " capture_ports @{\n" @@ -38723,7 +39449,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:21003 +#: guix-git/doc/guix.texi:21365 #, no-wrap msgid "" "pcm.!default @{\n" @@ -38735,104 +39461,104 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21007 +#: guix-git/doc/guix.texi:21369 msgid "See @uref{https://www.alsa-project.org/main/index.php/Asoundrc} for the details." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21008 +#: guix-git/doc/guix.texi:21370 #, no-wrap msgid "{Scheme Variable} pulseaudio-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21012 +#: guix-git/doc/guix.texi:21374 msgid "This is the type for the @uref{https://www.pulseaudio.org/, PulseAudio} sound server. It exists to allow system overrides of the default settings via @code{pulseaudio-configuration}, see below." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:21018 +#: guix-git/doc/guix.texi:21380 msgid "This service overrides per-user configuration files. If you want PulseAudio to honor configuration files in @file{~/.config/pulse} you have to unset the environment variables @env{PULSE_CONFIG} and @env{PULSE_CLIENTCONFIG} in your @file{~/.bash_profile}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:21026 +#: guix-git/doc/guix.texi:21388 msgid "This service on its own does not ensure, that the @code{pulseaudio} package exists on your machine. It merely adds configuration files for it, as detailed below. In the (admittedly unlikely) case, that you find yourself without a @code{pulseaudio} package, consider enabling it through the @code{alsa-service-type} above." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21029 +#: guix-git/doc/guix.texi:21391 #, no-wrap msgid "{Data Type} pulseaudio-configuration" msgstr "{Тип данных} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:21031 +#: guix-git/doc/guix.texi:21393 msgid "Data type representing the configuration for @code{pulseaudio-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21033 +#: guix-git/doc/guix.texi:21395 #, no-wrap msgid "@code{client-conf} (default: @code{'()})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:21038 -msgid "List of settings to set in @file{client.conf}. Accepts a list of strings or a symbol-value pairs. A string will be inserted as-is with a newline added. A pair will be formatted as ``key = value'', again with a newline added." +#: guix-git/doc/guix.texi:21400 +msgid "List of settings to set in @file{client.conf}. Accepts a list of strings or symbol-value pairs. A string will be inserted as-is with a newline added. A pair will be formatted as ``key = value'', again with a newline added." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21039 +#: guix-git/doc/guix.texi:21401 #, no-wrap msgid "@code{daemon-conf} (default: @code{'((flat-volumes . no))})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:21042 +#: guix-git/doc/guix.texi:21404 msgid "List of settings to set in @file{daemon.conf}, formatted just like @var{client-conf}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21043 +#: guix-git/doc/guix.texi:21405 #, no-wrap msgid "@code{script-file} (default: @code{(file-append pulseaudio \"/etc/pulse/default.pa\")})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:21045 +#: guix-git/doc/guix.texi:21407 msgid "Script file to use as @file{default.pa}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21046 +#: guix-git/doc/guix.texi:21408 #, no-wrap msgid "@code{system-script-file} (default: @code{(file-append pulseaudio \"/etc/pulse/system.pa\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21048 +#: guix-git/doc/guix.texi:21410 msgid "Script file to use as @file{system.pa}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21051 +#: guix-git/doc/guix.texi:21413 #, no-wrap msgid "{Scheme Variable} ladspa-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21054 +#: guix-git/doc/guix.texi:21416 msgid "This service sets the @var{LADSPA_PATH} variable, so that programs, which respect it, e.g. PulseAudio, can load LADSPA plugins." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21057 +#: guix-git/doc/guix.texi:21419 msgid "The following example will setup the service to enable modules from the @code{swh-plugins} package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21061 +#: guix-git/doc/guix.texi:21423 #, no-wrap msgid "" "(service ladspa-service-type\n" @@ -38840,34 +39566,34 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21065 +#: guix-git/doc/guix.texi:21427 msgid "See @uref{http://plugin.org.uk/ladspa-swh/docs/ladspa-swh.html} for the details." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21072 +#: guix-git/doc/guix.texi:21434 #, no-wrap msgid "SQL" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21074 +#: guix-git/doc/guix.texi:21436 msgid "The @code{(gnu services databases)} module provides the following services." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21075 +#: guix-git/doc/guix.texi:21437 #, no-wrap msgid "PostgreSQL" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21079 +#: guix-git/doc/guix.texi:21441 msgid "The following example describes a PostgreSQL service with the default configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21084 +#: guix-git/doc/guix.texi:21446 #, no-wrap msgid "" "(service postgresql-service-type\n" @@ -38879,17 +39605,17 @@ msgstr "" " (postgresql postgresql-10)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:21090 +#: guix-git/doc/guix.texi:21452 msgid "If the services fails to start, it may be due to an incompatible cluster already present in @var{data-directory}. Adjust it (or, if you don't need the cluster anymore, delete @var{data-directory}), then restart the service." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21097 +#: guix-git/doc/guix.texi:21459 msgid "Peer authentication is used by default and the @code{postgres} user account has no shell, which prevents the direct execution of @code{psql} commands as this user. To use @code{psql}, you can temporarily log in as @code{postgres} using a shell, create a PostgreSQL superuser with the same name as one of the system users and then create the associated database." msgstr "" #. type: example -#: guix-git/doc/guix.texi:21102 +#: guix-git/doc/guix.texi:21464 #, no-wrap msgid "" "sudo -u postgres -s /bin/sh\n" @@ -38898,101 +39624,101 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21104 +#: guix-git/doc/guix.texi:21466 #, no-wrap msgid "{Data Type} postgresql-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:21107 +#: guix-git/doc/guix.texi:21469 msgid "Data type representing the configuration for the @code{postgresql-service-type}." msgstr "Управление конфигурацией операционной системы." #. type: code{#1} -#: guix-git/doc/guix.texi:21109 +#: guix-git/doc/guix.texi:21471 #, no-wrap msgid "postgresql" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21111 +#: guix-git/doc/guix.texi:21473 msgid "PostgreSQL package to use for the service." msgstr "Пакет PostgreSQL для использования в сервисе." #. type: item -#: guix-git/doc/guix.texi:21112 +#: guix-git/doc/guix.texi:21474 #, no-wrap msgid "@code{port} (default: @code{5432})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:21114 +#: guix-git/doc/guix.texi:21476 msgid "Port on which PostgreSQL should listen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21117 +#: guix-git/doc/guix.texi:21479 msgid "Locale to use as the default when creating the database cluster." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21118 +#: guix-git/doc/guix.texi:21480 #, no-wrap msgid "@code{config-file} (default: @code{(postgresql-config-file)})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:21122 +#: guix-git/doc/guix.texi:21484 msgid "The configuration file to use when running PostgreSQL@. The default behaviour uses the postgresql-config-file record with the default values for the fields." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21123 +#: guix-git/doc/guix.texi:21485 #, no-wrap msgid "@code{log-directory} (default: @code{\"/var/log/postgresql\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:21127 +#: guix-git/doc/guix.texi:21489 msgid "The directory where @command{pg_ctl} output will be written in a file named @code{\"pg_ctl.log\"}. This file can be useful to debug PostgreSQL configuration errors for instance." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21128 +#: guix-git/doc/guix.texi:21490 #, no-wrap msgid "@code{data-directory} (default: @code{\"/var/lib/postgresql/data\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:21130 +#: guix-git/doc/guix.texi:21492 msgid "Directory in which to store the data." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21131 +#: guix-git/doc/guix.texi:21493 #, no-wrap msgid "@code{extension-packages} (default: @code{'()})" msgstr "@code{patches} (по умолчанию: @code{'()})" #. type: cindex -#: guix-git/doc/guix.texi:21132 +#: guix-git/doc/guix.texi:21494 #, no-wrap msgid "postgresql extension-packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21137 +#: guix-git/doc/guix.texi:21499 msgid "Additional extensions are loaded from packages listed in @var{extension-packages}. Extensions are available at runtime. For instance, to create a geographic database using the @code{postgis} extension, a user can configure the postgresql-service as in this example:" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21138 +#: guix-git/doc/guix.texi:21500 #, no-wrap msgid "postgis" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21141 +#: guix-git/doc/guix.texi:21503 #, no-wrap msgid "" "(use-package-modules databases geo)\n" @@ -39000,7 +39726,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21154 +#: guix-git/doc/guix.texi:21516 #, no-wrap msgid "" "(operating-system\n" @@ -39018,12 +39744,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21158 +#: guix-git/doc/guix.texi:21520 msgid "Then the extension becomes visible and you can initialise an empty geographic database in this way:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:21165 +#: guix-git/doc/guix.texi:21527 #, no-wrap msgid "" "psql -U postgres\n" @@ -39034,23 +39760,23 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21170 +#: guix-git/doc/guix.texi:21532 msgid "There is no need to add this field for contrib extensions such as hstore or dblink as they are already loadable by postgresql. This field is only required to add extensions provided by other packages." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21174 +#: guix-git/doc/guix.texi:21536 #, no-wrap msgid "{Data Type} postgresql-config-file" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:21180 +#: guix-git/doc/guix.texi:21542 msgid "Data type representing the PostgreSQL configuration file. As shown in the following example, this can be used to customize the configuration of PostgreSQL@. Note that you can use any G-expression or filename in place of this record, if you already have a configuration file you'd like to use for example." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21200 +#: guix-git/doc/guix.texi:21562 #, no-wrap msgid "" "(service postgresql-service-type\n" @@ -39074,78 +39800,78 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:21203 +#: guix-git/doc/guix.texi:21565 #, no-wrap msgid "@code{log-destination} (default: @code{\"syslog\"})" msgstr "@code{compression-level} (default: @code{3})" #. type: table -#: guix-git/doc/guix.texi:21206 +#: guix-git/doc/guix.texi:21568 msgid "The logging method to use for PostgreSQL@. Multiple values are accepted, separated by commas." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21207 +#: guix-git/doc/guix.texi:21569 #, no-wrap msgid "@code{hba-file} (default: @code{%default-postgres-hba})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:21210 +#: guix-git/doc/guix.texi:21572 msgid "Filename or G-expression for the host-based authentication configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21211 +#: guix-git/doc/guix.texi:21573 #, no-wrap msgid "@code{ident-file} (default: @code{%default-postgres-ident})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:21213 +#: guix-git/doc/guix.texi:21575 msgid "Filename or G-expression for the user name mapping configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21214 +#: guix-git/doc/guix.texi:21576 #, fuzzy, no-wrap #| msgid "@code{log-directory} (default: @code{\"/var/log/postgresql\"})" msgid "@code{socket-directory} (default: @code{\"/var/run/postgresql\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:21219 +#: guix-git/doc/guix.texi:21581 msgid "Specifies the directory of the Unix-domain socket(s) on which PostgreSQL is to listen for connections from client applications. If set to @code{\"\"} PostgreSQL does not listen on any Unix-domain sockets, in which case only TCP/IP sockets can be used to connect to the server." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21222 +#: guix-git/doc/guix.texi:21584 msgid "By default, the @code{#false} value means the PostgreSQL default value will be used, which is currently @samp{/tmp}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21227 +#: guix-git/doc/guix.texi:21589 msgid "List of additional keys and values to include in the PostgreSQL config file. Each entry in the list should be a list where the first element is the key, and the remaining elements are the values." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21233 +#: guix-git/doc/guix.texi:21595 msgid "The values can be numbers, booleans or strings and will be mapped to PostgreSQL parameters types @code{Boolean}, @code{String}, @code{Numeric}, @code{Numeric with Unit} and @code{Enumerated} described @uref{https://www.postgresql.org/docs/current/config-setting.html, here}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21237 +#: guix-git/doc/guix.texi:21599 #, no-wrap msgid "{Scheme Variable} postgresql-role-service-type" msgstr "{Scheme Variable} profile-service-type" #. type: deffn -#: guix-git/doc/guix.texi:21240 +#: guix-git/doc/guix.texi:21602 msgid "This service allows to create PostgreSQL roles and databases after PostgreSQL service start. Here is an example of its use." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21248 +#: guix-git/doc/guix.texi:21610 #, no-wrap msgid "" "(service postgresql-role-service-type\n" @@ -39163,12 +39889,12 @@ msgstr "" " (create-database? #t))))))\n" #. type: deffn -#: guix-git/doc/guix.texi:21252 +#: guix-git/doc/guix.texi:21614 msgid "This service can be extended with extra roles, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21258 +#: guix-git/doc/guix.texi:21620 #, no-wrap msgid "" "(service-extension postgresql-role-service-type\n" @@ -39182,398 +39908,398 @@ msgstr "" " (create-database? #t))))\n" #. type: deftp -#: guix-git/doc/guix.texi:21261 +#: guix-git/doc/guix.texi:21623 #, no-wrap msgid "{Data Type} postgresql-role" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:21267 +#: guix-git/doc/guix.texi:21629 msgid "PostgreSQL manages database access permissions using the concept of roles. A role can be thought of as either a database user, or a group of database users, depending on how the role is set up. Roles can own database objects (for example, tables) and can assign privileges on those objects to other roles to control who has access to which objects." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21271 +#: guix-git/doc/guix.texi:21633 msgid "The role name." msgstr "Имя роли." #. type: item -#: guix-git/doc/guix.texi:21272 +#: guix-git/doc/guix.texi:21634 #, no-wrap msgid "@code{permissions} (default: @code{'(createdb login)})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:21276 +#: guix-git/doc/guix.texi:21638 msgid "The role permissions list. Supported permissions are @code{bypassrls}, @code{createdb}, @code{createrole}, @code{login}, @code{replication} and @code{superuser}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21277 +#: guix-git/doc/guix.texi:21639 #, no-wrap msgid "@code{create-database?} (default: @code{#f})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:21279 +#: guix-git/doc/guix.texi:21641 msgid "Whether to create a database with the same name as the role." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21283 +#: guix-git/doc/guix.texi:21645 #, no-wrap msgid "{Data Type} postgresql-role-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:21286 +#: guix-git/doc/guix.texi:21648 msgid "Data type representing the configuration of @var{postgresql-role-service-type}." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:21288 +#: guix-git/doc/guix.texi:21650 #, no-wrap msgid "@code{host} (default: @code{\"/var/run/postgresql\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:21290 +#: guix-git/doc/guix.texi:21652 msgid "The PostgreSQL host to connect to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21291 +#: guix-git/doc/guix.texi:21653 #, no-wrap msgid "@code{log} (default: @code{\"/var/log/postgresql_roles.log\"})" msgstr "@code{daemon-socket} (default: @code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:21293 +#: guix-git/doc/guix.texi:21655 msgid "File name of the log file." msgstr "Имя используемой базы данных." #. type: item -#: guix-git/doc/guix.texi:21294 +#: guix-git/doc/guix.texi:21656 #, no-wrap msgid "@code{roles} (default: @code{'()})" msgstr "@code{modules} (по умолчанию: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:21296 +#: guix-git/doc/guix.texi:21658 msgid "The initial PostgreSQL roles to create." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21299 +#: guix-git/doc/guix.texi:21661 #, no-wrap msgid "MariaDB/MySQL" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21301 +#: guix-git/doc/guix.texi:21663 #, no-wrap msgid "{Scheme Variable} mysql-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:21305 +#: guix-git/doc/guix.texi:21667 msgid "This is the service type for a MySQL or MariaDB database server. Its value is a @code{mysql-configuration} object that specifies which package to use, as well as various settings for the @command{mysqld} daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21307 +#: guix-git/doc/guix.texi:21669 #, no-wrap msgid "{Data Type} mysql-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21309 +#: guix-git/doc/guix.texi:21671 msgid "Data type representing the configuration of @var{mysql-service-type}." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:21311 +#: guix-git/doc/guix.texi:21673 #, no-wrap msgid "@code{mysql} (default: @var{mariadb})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21314 +#: guix-git/doc/guix.texi:21676 msgid "Package object of the MySQL database server, can be either @var{mariadb} or @var{mysql}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21317 +#: guix-git/doc/guix.texi:21679 msgid "For MySQL, a temporary root password will be displayed at activation time. For MariaDB, the root password is empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21318 guix-git/doc/guix.texi:25138 +#: guix-git/doc/guix.texi:21680 guix-git/doc/guix.texi:25500 #, no-wrap msgid "@code{bind-address} (default: @code{\"127.0.0.1\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21321 +#: guix-git/doc/guix.texi:21683 msgid "The IP on which to listen for network connections. Use @code{\"0.0.0.0\"} to bind to all available network interfaces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21322 +#: guix-git/doc/guix.texi:21684 #, no-wrap msgid "@code{port} (default: @code{3306})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21324 +#: guix-git/doc/guix.texi:21686 msgid "TCP port on which the database server listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21325 +#: guix-git/doc/guix.texi:21687 #, no-wrap msgid "@code{socket} (default: @code{\"/run/mysqld/mysqld.sock\"})" msgstr "@code{daemon-socket} (default: @code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:21327 +#: guix-git/doc/guix.texi:21689 msgid "Socket file to use for local (non-network) connections." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21330 +#: guix-git/doc/guix.texi:21692 msgid "Additional settings for the @file{my.cnf} configuration file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21331 +#: guix-git/doc/guix.texi:21693 #, no-wrap msgid "@code{extra-environment} (default: @code{#~'()})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:21333 +#: guix-git/doc/guix.texi:21695 msgid "List of environment variables passed to the @command{mysqld} process." msgstr "Список переменных среды, которые необходимо определить." #. type: item -#: guix-git/doc/guix.texi:21334 +#: guix-git/doc/guix.texi:21696 #, no-wrap msgid "@code{auto-upgrade?} (default: @code{#t})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:21339 +#: guix-git/doc/guix.texi:21701 msgid "Whether to automatically run @command{mysql_upgrade} after starting the service. This is necessary to upgrade the @dfn{system schema} after ``major'' updates (such as switching from MariaDB 10.4 to 10.5), but can be disabled if you would rather do that manually." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21343 +#: guix-git/doc/guix.texi:21705 #, no-wrap msgid "Memcached" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21345 +#: guix-git/doc/guix.texi:21707 #, no-wrap msgid "{Scheme Variable} memcached-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21349 +#: guix-git/doc/guix.texi:21711 msgid "This is the service type for the @uref{https://memcached.org/, Memcached} service, which provides a distributed in memory cache. The value for the service type is a @code{memcached-configuration} object." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21353 +#: guix-git/doc/guix.texi:21715 #, no-wrap msgid "(service memcached-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21355 +#: guix-git/doc/guix.texi:21717 #, no-wrap msgid "{Data Type} memcached-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21357 +#: guix-git/doc/guix.texi:21719 msgid "Data type representing the configuration of memcached." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21359 +#: guix-git/doc/guix.texi:21721 #, no-wrap msgid "@code{memcached} (default: @code{memcached})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21361 +#: guix-git/doc/guix.texi:21723 msgid "The Memcached package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21362 +#: guix-git/doc/guix.texi:21724 #, no-wrap msgid "@code{interfaces} (default: @code{'(\"0.0.0.0\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21364 +#: guix-git/doc/guix.texi:21726 msgid "Network interfaces on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21365 +#: guix-git/doc/guix.texi:21727 #, no-wrap msgid "@code{tcp-port} (default: @code{11211})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21367 +#: guix-git/doc/guix.texi:21729 msgid "Port on which to accept connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21368 +#: guix-git/doc/guix.texi:21730 #, no-wrap msgid "@code{udp-port} (default: @code{11211})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21371 +#: guix-git/doc/guix.texi:21733 msgid "Port on which to accept UDP connections on, a value of 0 will disable listening on a UDP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21372 +#: guix-git/doc/guix.texi:21734 #, no-wrap msgid "@code{additional-options} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21374 +#: guix-git/doc/guix.texi:21736 msgid "Additional command line options to pass to @code{memcached}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21377 +#: guix-git/doc/guix.texi:21739 #, no-wrap msgid "Redis" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21379 +#: guix-git/doc/guix.texi:21741 #, no-wrap msgid "{Scheme Variable} redis-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21382 +#: guix-git/doc/guix.texi:21744 msgid "This is the service type for the @uref{https://redis.io/, Redis} key/value store, whose value is a @code{redis-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21384 +#: guix-git/doc/guix.texi:21746 #, no-wrap msgid "{Data Type} redis-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21386 +#: guix-git/doc/guix.texi:21748 msgid "Data type representing the configuration of redis." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21388 +#: guix-git/doc/guix.texi:21750 #, no-wrap msgid "@code{redis} (default: @code{redis})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21390 +#: guix-git/doc/guix.texi:21752 msgid "The Redis package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21391 +#: guix-git/doc/guix.texi:21753 #, no-wrap msgid "@code{bind} (default: @code{\"127.0.0.1\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21393 +#: guix-git/doc/guix.texi:21755 msgid "Network interface on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21394 +#: guix-git/doc/guix.texi:21756 #, no-wrap msgid "@code{port} (default: @code{6379})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21397 +#: guix-git/doc/guix.texi:21759 msgid "Port on which to accept connections on, a value of 0 will disable listening on a TCP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21398 +#: guix-git/doc/guix.texi:21760 #, no-wrap msgid "@code{working-directory} (default: @code{\"/var/lib/redis\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21400 +#: guix-git/doc/guix.texi:21762 msgid "Directory in which to store the database and related files." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21406 +#: guix-git/doc/guix.texi:21768 #, no-wrap msgid "mail" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21407 +#: guix-git/doc/guix.texi:21769 #, no-wrap msgid "email" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21412 +#: guix-git/doc/guix.texi:21774 msgid "The @code{(gnu services mail)} module provides Guix service definitions for email services: IMAP, POP3, and LMTP servers, as well as mail transport agents (MTAs). Lots of acronyms! These services are detailed in the subsections below." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21413 +#: guix-git/doc/guix.texi:21775 #, no-wrap msgid "Dovecot Service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21415 +#: guix-git/doc/guix.texi:21777 #, no-wrap msgid "{Scheme Procedure} dovecot-service [#:config (dovecot-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21417 +#: guix-git/doc/guix.texi:21779 msgid "Return a service that runs the Dovecot IMAP/POP3/LMTP mail server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21427 +#: guix-git/doc/guix.texi:21789 msgid "By default, Dovecot does not need much configuration; the default configuration object created by @code{(dovecot-configuration)} will suffice if your mail is delivered to @code{~/Maildir}. A self-signed certificate will be generated for TLS-protected connections, though Dovecot will also listen on cleartext ports by default. There are a number of options, though, which mail administrators might need to change, and as is the case with other services, Guix allows the system administrator to specify these parameters via a uniform Scheme interface." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21430 +#: guix-git/doc/guix.texi:21792 msgid "For example, to specify that mail is located at @code{maildir~/.mail}, one would instantiate the Dovecot service like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21435 +#: guix-git/doc/guix.texi:21797 #, no-wrap msgid "" "(dovecot-service #:config\n" @@ -39582,2433 +40308,2433 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21443 +#: guix-git/doc/guix.texi:21805 msgid "The available configuration parameters follow. Each parameter definition is preceded by its type; for example, @samp{string-list foo} indicates that the @code{foo} parameter should be specified as a list of strings. There is also a way to specify the configuration as a string, if you have an old @code{dovecot.conf} file that you want to port over from some other system; see the end for more details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21453 +#: guix-git/doc/guix.texi:21815 msgid "Available @code{dovecot-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21454 +#: guix-git/doc/guix.texi:21816 #, no-wrap msgid "{@code{dovecot-configuration} parameter} package dovecot" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21456 guix-git/doc/guix.texi:22805 +#: guix-git/doc/guix.texi:21818 guix-git/doc/guix.texi:23167 msgid "The dovecot package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21458 +#: guix-git/doc/guix.texi:21820 #, no-wrap msgid "{@code{dovecot-configuration} parameter} comma-separated-string-list listen" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21464 +#: guix-git/doc/guix.texi:21826 msgid "A list of IPs or hosts where to listen for connections. @samp{*} listens on all IPv4 interfaces, @samp{::} listens on all IPv6 interfaces. If you want to specify non-default ports or anything more complex, customize the address and port fields of the @samp{inet-listener} of the specific services you are interested in." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21466 +#: guix-git/doc/guix.texi:21828 #, no-wrap msgid "{@code{dovecot-configuration} parameter} protocol-configuration-list protocols" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21469 +#: guix-git/doc/guix.texi:21831 msgid "List of protocols we want to serve. Available protocols include @samp{imap}, @samp{pop3}, and @samp{lmtp}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21471 +#: guix-git/doc/guix.texi:21833 msgid "Available @code{protocol-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21472 +#: guix-git/doc/guix.texi:21834 #, no-wrap msgid "{@code{protocol-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21474 +#: guix-git/doc/guix.texi:21836 msgid "The name of the protocol." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21476 +#: guix-git/doc/guix.texi:21838 #, no-wrap msgid "{@code{protocol-configuration} parameter} string auth-socket-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21480 +#: guix-git/doc/guix.texi:21842 msgid "UNIX socket path to the master authentication server to find users. This is used by imap (for shared users) and lda. It defaults to @samp{\"/var/run/dovecot/auth-userdb\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21482 +#: guix-git/doc/guix.texi:21844 #, no-wrap msgid "{@code{protocol-configuration} parameter} boolean imap-metadata?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21487 +#: guix-git/doc/guix.texi:21849 msgid "Whether to enable the @code{IMAP METADATA} extension as defined in @uref{https://tools.ietf.org/html/rfc5464,RFC@tie{}5464}, which provides a means for clients to set and retrieve per-mailbox, per-user metadata and annotations over IMAP." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21490 +#: guix-git/doc/guix.texi:21852 msgid "If this is @samp{#t}, you must also specify a dictionary @i{via} the @code{mail-attribute-dict} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21495 +#: guix-git/doc/guix.texi:21857 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list managesieve-notify-capabilities" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21500 +#: guix-git/doc/guix.texi:21862 msgid "Which NOTIFY capabilities to report to clients that first connect to the ManageSieve service, before authentication. These may differ from the capabilities offered to authenticated users. If this field is left empty, report what the Sieve interpreter supports by default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21504 +#: guix-git/doc/guix.texi:21866 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list managesieve-sieve-capability" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21509 +#: guix-git/doc/guix.texi:21871 msgid "Which SIEVE capabilities to report to clients that first connect to the ManageSieve service, before authentication. These may differ from the capabilities offered to authenticated users. If this field is left empty, report what the Sieve interpreter supports by default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21514 +#: guix-git/doc/guix.texi:21876 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list mail-plugins" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21516 +#: guix-git/doc/guix.texi:21878 msgid "Space separated list of plugins to load." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21518 +#: guix-git/doc/guix.texi:21880 #, no-wrap msgid "{@code{protocol-configuration} parameter} non-negative-integer mail-max-userip-connections" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21522 +#: guix-git/doc/guix.texi:21884 msgid "Maximum number of IMAP connections allowed for a user from each IP address. NOTE: The username is compared case-sensitively. Defaults to @samp{10}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21526 +#: guix-git/doc/guix.texi:21888 #, no-wrap msgid "{@code{dovecot-configuration} parameter} service-configuration-list services" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21530 +#: guix-git/doc/guix.texi:21892 msgid "List of services to enable. Available services include @samp{imap}, @samp{imap-login}, @samp{pop3}, @samp{pop3-login}, @samp{auth}, and @samp{lmtp}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21532 +#: guix-git/doc/guix.texi:21894 msgid "Available @code{service-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21533 +#: guix-git/doc/guix.texi:21895 #, no-wrap msgid "{@code{service-configuration} parameter} string kind" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21538 +#: guix-git/doc/guix.texi:21900 msgid "The service kind. Valid values include @code{director}, @code{imap-login}, @code{pop3-login}, @code{lmtp}, @code{imap}, @code{pop3}, @code{auth}, @code{auth-worker}, @code{dict}, @code{tcpwrap}, @code{quota-warning}, or anything else." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21540 +#: guix-git/doc/guix.texi:21902 #, no-wrap msgid "{@code{service-configuration} parameter} listener-configuration-list listeners" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21545 +#: guix-git/doc/guix.texi:21907 msgid "Listeners for the service. A listener is either a @code{unix-listener-configuration}, a @code{fifo-listener-configuration}, or an @code{inet-listener-configuration}. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21547 +#: guix-git/doc/guix.texi:21909 msgid "Available @code{unix-listener-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21548 +#: guix-git/doc/guix.texi:21910 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21551 guix-git/doc/guix.texi:21574 +#: guix-git/doc/guix.texi:21913 guix-git/doc/guix.texi:21936 msgid "Path to the file, relative to @code{base-dir} field. This is also used as the section name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21553 +#: guix-git/doc/guix.texi:21915 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string mode" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21556 guix-git/doc/guix.texi:21579 +#: guix-git/doc/guix.texi:21918 guix-git/doc/guix.texi:21941 msgid "The access mode for the socket. Defaults to @samp{\"0600\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21558 +#: guix-git/doc/guix.texi:21920 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21561 guix-git/doc/guix.texi:21584 +#: guix-git/doc/guix.texi:21923 guix-git/doc/guix.texi:21946 msgid "The user to own the socket. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21563 +#: guix-git/doc/guix.texi:21925 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21566 guix-git/doc/guix.texi:21589 +#: guix-git/doc/guix.texi:21928 guix-git/doc/guix.texi:21951 msgid "The group to own the socket. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21570 +#: guix-git/doc/guix.texi:21932 msgid "Available @code{fifo-listener-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21571 +#: guix-git/doc/guix.texi:21933 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21576 +#: guix-git/doc/guix.texi:21938 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string mode" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21581 +#: guix-git/doc/guix.texi:21943 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21586 +#: guix-git/doc/guix.texi:21948 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21593 +#: guix-git/doc/guix.texi:21955 msgid "Available @code{inet-listener-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21594 +#: guix-git/doc/guix.texi:21956 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} string protocol" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21596 +#: guix-git/doc/guix.texi:21958 msgid "The protocol to listen for." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21598 +#: guix-git/doc/guix.texi:21960 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} string address" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21601 +#: guix-git/doc/guix.texi:21963 msgid "The address on which to listen, or empty for all addresses. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21603 +#: guix-git/doc/guix.texi:21965 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} non-negative-integer port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21605 +#: guix-git/doc/guix.texi:21967 msgid "The port on which to listen." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21607 +#: guix-git/doc/guix.texi:21969 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} boolean ssl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21611 +#: guix-git/doc/guix.texi:21973 msgid "Whether to use SSL for this service; @samp{yes}, @samp{no}, or @samp{required}. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21615 +#: guix-git/doc/guix.texi:21977 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer client-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21620 +#: guix-git/doc/guix.texi:21982 msgid "Maximum number of simultaneous client connections per process. Once this number of connections is received, the next incoming connection will prompt Dovecot to spawn another process. If set to 0, @code{default-client-limit} is used instead." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21625 +#: guix-git/doc/guix.texi:21987 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer service-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21630 +#: guix-git/doc/guix.texi:21992 msgid "Number of connections to handle before starting a new process. Typically the only useful values are 0 (unlimited) or 1. 1 is more secure, but 0 is faster. . Defaults to @samp{1}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21633 +#: guix-git/doc/guix.texi:21995 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer process-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21636 +#: guix-git/doc/guix.texi:21998 msgid "Maximum number of processes that can exist for this service. If set to 0, @code{default-process-limit} is used instead." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21641 +#: guix-git/doc/guix.texi:22003 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer process-min-avail" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21644 +#: guix-git/doc/guix.texi:22006 msgid "Number of processes to always keep waiting for more connections. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21646 +#: guix-git/doc/guix.texi:22008 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer vsz-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21650 +#: guix-git/doc/guix.texi:22012 msgid "If you set @samp{service-count 0}, you probably need to grow this. Defaults to @samp{256000000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21654 +#: guix-git/doc/guix.texi:22016 #, no-wrap msgid "{@code{dovecot-configuration} parameter} dict-configuration dict" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21657 +#: guix-git/doc/guix.texi:22019 msgid "Dict configuration, as created by the @code{dict-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21659 +#: guix-git/doc/guix.texi:22021 msgid "Available @code{dict-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21660 +#: guix-git/doc/guix.texi:22022 #, no-wrap msgid "{@code{dict-configuration} parameter} free-form-fields entries" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21663 +#: guix-git/doc/guix.texi:22025 msgid "A list of key-value pairs that this dict should hold. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21667 +#: guix-git/doc/guix.texi:22029 #, no-wrap msgid "{@code{dovecot-configuration} parameter} passdb-configuration-list passdbs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21670 +#: guix-git/doc/guix.texi:22032 msgid "A list of passdb configurations, each one created by the @code{passdb-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21672 +#: guix-git/doc/guix.texi:22034 msgid "Available @code{passdb-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21673 +#: guix-git/doc/guix.texi:22035 #, no-wrap msgid "{@code{passdb-configuration} parameter} string driver" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21678 +#: guix-git/doc/guix.texi:22040 msgid "The driver that the passdb should use. Valid values include @samp{pam}, @samp{passwd}, @samp{shadow}, @samp{bsdauth}, and @samp{static}. Defaults to @samp{\"pam\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21680 +#: guix-git/doc/guix.texi:22042 #, no-wrap msgid "{@code{passdb-configuration} parameter} space-separated-string-list args" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21683 +#: guix-git/doc/guix.texi:22045 msgid "Space separated list of arguments to the passdb driver. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21687 +#: guix-git/doc/guix.texi:22049 #, no-wrap msgid "{@code{dovecot-configuration} parameter} userdb-configuration-list userdbs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21690 +#: guix-git/doc/guix.texi:22052 msgid "List of userdb configurations, each one created by the @code{userdb-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21692 +#: guix-git/doc/guix.texi:22054 msgid "Available @code{userdb-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21693 +#: guix-git/doc/guix.texi:22055 #, no-wrap msgid "{@code{userdb-configuration} parameter} string driver" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21697 +#: guix-git/doc/guix.texi:22059 msgid "The driver that the userdb should use. Valid values include @samp{passwd} and @samp{static}. Defaults to @samp{\"passwd\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21699 +#: guix-git/doc/guix.texi:22061 #, no-wrap msgid "{@code{userdb-configuration} parameter} space-separated-string-list args" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21702 +#: guix-git/doc/guix.texi:22064 msgid "Space separated list of arguments to the userdb driver. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21704 +#: guix-git/doc/guix.texi:22066 #, no-wrap msgid "{@code{userdb-configuration} parameter} free-form-args override-fields" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21707 +#: guix-git/doc/guix.texi:22069 msgid "Override fields from passwd. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21711 +#: guix-git/doc/guix.texi:22073 #, no-wrap msgid "{@code{dovecot-configuration} parameter} plugin-configuration plugin-configuration" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21714 +#: guix-git/doc/guix.texi:22076 msgid "Plug-in configuration, created by the @code{plugin-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21716 +#: guix-git/doc/guix.texi:22078 #, no-wrap msgid "{@code{dovecot-configuration} parameter} list-of-namespace-configuration namespaces" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21719 +#: guix-git/doc/guix.texi:22081 msgid "List of namespaces. Each item in the list is created by the @code{namespace-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21721 +#: guix-git/doc/guix.texi:22083 msgid "Available @code{namespace-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21722 +#: guix-git/doc/guix.texi:22084 #, no-wrap msgid "{@code{namespace-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21724 +#: guix-git/doc/guix.texi:22086 msgid "Name for this namespace." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21726 +#: guix-git/doc/guix.texi:22088 #, no-wrap msgid "{@code{namespace-configuration} parameter} string type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21729 +#: guix-git/doc/guix.texi:22091 msgid "Namespace type: @samp{private}, @samp{shared} or @samp{public}. Defaults to @samp{\"private\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21731 +#: guix-git/doc/guix.texi:22093 #, no-wrap msgid "{@code{namespace-configuration} parameter} string separator" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21737 +#: guix-git/doc/guix.texi:22099 msgid "Hierarchy separator to use. You should use the same separator for all namespaces or some clients get confused. @samp{/} is usually a good one. The default however depends on the underlying mail storage format. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21739 +#: guix-git/doc/guix.texi:22101 #, no-wrap msgid "{@code{namespace-configuration} parameter} string prefix" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21743 +#: guix-git/doc/guix.texi:22105 msgid "Prefix required to access this namespace. This needs to be different for all namespaces. For example @samp{Public/}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21745 +#: guix-git/doc/guix.texi:22107 #, no-wrap msgid "{@code{namespace-configuration} parameter} string location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21749 +#: guix-git/doc/guix.texi:22111 msgid "Physical location of the mailbox. This is in the same format as mail_location, which is also the default for it. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21751 +#: guix-git/doc/guix.texi:22113 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean inbox?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21755 +#: guix-git/doc/guix.texi:22117 msgid "There can be only one INBOX, and this setting defines which namespace has it. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21757 +#: guix-git/doc/guix.texi:22119 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean hidden?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21765 +#: guix-git/doc/guix.texi:22127 msgid "If namespace is hidden, it's not advertised to clients via NAMESPACE extension. You'll most likely also want to set @samp{list? #f}. This is mostly useful when converting from another server with different namespaces which you want to deprecate but still keep working. For example you can create hidden namespaces with prefixes @samp{~/mail/}, @samp{~%u/mail/} and @samp{mail/}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21767 +#: guix-git/doc/guix.texi:22129 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean list?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21773 +#: guix-git/doc/guix.texi:22135 msgid "Show the mailboxes under this namespace with the LIST command. This makes the namespace visible for clients that do not support the NAMESPACE extension. The special @code{children} value lists child mailboxes, but hides the namespace prefix. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21775 +#: guix-git/doc/guix.texi:22137 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean subscriptions?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21780 +#: guix-git/doc/guix.texi:22142 msgid "Namespace handles its own subscriptions. If set to @code{#f}, the parent namespace handles them. The empty prefix should always have this as @code{#t}). Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21782 +#: guix-git/doc/guix.texi:22144 #, no-wrap msgid "{@code{namespace-configuration} parameter} mailbox-configuration-list mailboxes" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21785 +#: guix-git/doc/guix.texi:22147 msgid "List of predefined mailboxes in this namespace. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21787 +#: guix-git/doc/guix.texi:22149 msgid "Available @code{mailbox-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21788 +#: guix-git/doc/guix.texi:22150 #, no-wrap msgid "{@code{mailbox-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21790 +#: guix-git/doc/guix.texi:22152 msgid "Name for this mailbox." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21792 +#: guix-git/doc/guix.texi:22154 #, no-wrap msgid "{@code{mailbox-configuration} parameter} string auto" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21796 +#: guix-git/doc/guix.texi:22158 msgid "@samp{create} will automatically create this mailbox. @samp{subscribe} will both create and subscribe to the mailbox. Defaults to @samp{\"no\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21798 +#: guix-git/doc/guix.texi:22160 #, no-wrap msgid "{@code{mailbox-configuration} parameter} space-separated-string-list special-use" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21803 +#: guix-git/doc/guix.texi:22165 msgid "List of IMAP @code{SPECIAL-USE} attributes as specified by RFC 6154. Valid values are @code{\\All}, @code{\\Archive}, @code{\\Drafts}, @code{\\Flagged}, @code{\\Junk}, @code{\\Sent}, and @code{\\Trash}. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21809 +#: guix-git/doc/guix.texi:22171 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name base-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21812 +#: guix-git/doc/guix.texi:22174 msgid "Base directory where to store runtime data. Defaults to @samp{\"/var/run/dovecot/\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21814 +#: guix-git/doc/guix.texi:22176 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string login-greeting" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21817 +#: guix-git/doc/guix.texi:22179 msgid "Greeting message for clients. Defaults to @samp{\"Dovecot ready.\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21819 +#: guix-git/doc/guix.texi:22181 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-trusted-networks" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21826 +#: guix-git/doc/guix.texi:22188 msgid "List of trusted network ranges. Connections from these IPs are allowed to override their IP addresses and ports (for logging and for authentication checks). @samp{disable-plaintext-auth} is also ignored for these networks. Typically you would specify your IMAP proxy servers here. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21828 +#: guix-git/doc/guix.texi:22190 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-access-sockets" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21831 +#: guix-git/doc/guix.texi:22193 msgid "List of login access check sockets (e.g.@: tcpwrap). Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21833 +#: guix-git/doc/guix.texi:22195 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean verbose-proctitle?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21839 +#: guix-git/doc/guix.texi:22201 msgid "Show more verbose process titles (in ps). Currently shows user name and IP address. Useful for seeing who is actually using the IMAP processes (e.g.@: shared mailboxes or if the same uid is used for multiple accounts). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21841 +#: guix-git/doc/guix.texi:22203 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean shutdown-clients?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21847 +#: guix-git/doc/guix.texi:22209 msgid "Should all processes be killed when Dovecot master process shuts down. Setting this to @code{#f} means that Dovecot can be upgraded without forcing existing client connections to close (although that could also be a problem if the upgrade is e.g.@: due to a security fix). Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21849 +#: guix-git/doc/guix.texi:22211 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer doveadm-worker-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21853 +#: guix-git/doc/guix.texi:22215 msgid "If non-zero, run mail commands via this many connections to doveadm server, instead of running them directly in the same process. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21855 +#: guix-git/doc/guix.texi:22217 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string doveadm-socket-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21858 +#: guix-git/doc/guix.texi:22220 msgid "UNIX socket or host:port used for connecting to doveadm server. Defaults to @samp{\"doveadm-server\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21860 +#: guix-git/doc/guix.texi:22222 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list import-environment" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21864 +#: guix-git/doc/guix.texi:22226 msgid "List of environment variables that are preserved on Dovecot startup and passed down to all of its child processes. You can also give key=value pairs to always set specific settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21866 +#: guix-git/doc/guix.texi:22228 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean disable-plaintext-auth?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21873 +#: guix-git/doc/guix.texi:22235 msgid "Disable LOGIN command and all other plaintext authentications unless SSL/TLS is used (LOGINDISABLED capability). Note that if the remote IP matches the local IP (i.e.@: you're connecting from the same computer), the connection is considered secure and plaintext authentication is allowed. See also ssl=required setting. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21875 +#: guix-git/doc/guix.texi:22237 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer auth-cache-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21880 +#: guix-git/doc/guix.texi:22242 msgid "Authentication cache size (e.g.@: @samp{#e10e6}). 0 means it's disabled. Note that bsdauth, PAM and vpopmail require @samp{cache-key} to be set for caching to be used. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21882 +#: guix-git/doc/guix.texi:22244 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-cache-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21890 +#: guix-git/doc/guix.texi:22252 msgid "Time to live for cached data. After TTL expires the cached record is no longer used, *except* if the main database lookup returns internal failure. We also try to handle password changes automatically: If user's previous authentication was successful, but this one wasn't, the cache isn't used. For now this works only with plaintext authentication. Defaults to @samp{\"1 hour\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21892 +#: guix-git/doc/guix.texi:22254 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-cache-negative-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21896 +#: guix-git/doc/guix.texi:22258 msgid "TTL for negative hits (user not found, password mismatch). 0 disables caching them completely. Defaults to @samp{\"1 hour\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21898 +#: guix-git/doc/guix.texi:22260 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list auth-realms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21904 +#: guix-git/doc/guix.texi:22266 msgid "List of realms for SASL authentication mechanisms that need them. You can leave it empty if you don't want to support multiple realms. Many clients simply use the first one listed here, so keep the default realm first. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21906 +#: guix-git/doc/guix.texi:22268 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-default-realm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21911 +#: guix-git/doc/guix.texi:22273 msgid "Default realm/domain to use if none was specified. This is used for both SASL realms and appending @@domain to username in plaintext logins. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21913 +#: guix-git/doc/guix.texi:22275 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-chars" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21920 +#: guix-git/doc/guix.texi:22282 msgid "List of allowed characters in username. If the user-given username contains a character not listed in here, the login automatically fails. This is just an extra check to make sure user can't exploit any potential quote escaping vulnerabilities with SQL/LDAP databases. If you want to allow all characters, set this value to empty. Defaults to @samp{\"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@@\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21922 +#: guix-git/doc/guix.texi:22284 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-translation" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21928 +#: guix-git/doc/guix.texi:22290 msgid "Username character translations before it's looked up from databases. The value contains series of from -> to characters. For example @samp{#@@/@@} means that @samp{#} and @samp{/} characters are translated to @samp{@@}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21930 +#: guix-git/doc/guix.texi:22292 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21937 +#: guix-git/doc/guix.texi:22299 msgid "Username formatting before it's looked up from databases. You can use the standard variables here, e.g.@: %Lu would lowercase the username, %n would drop away the domain if it was given, or @samp{%n-AT-%d} would change the @samp{@@} into @samp{-AT-}. This translation is done after @samp{auth-username-translation} changes. Defaults to @samp{\"%Lu\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21939 +#: guix-git/doc/guix.texi:22301 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-master-user-separator" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21947 +#: guix-git/doc/guix.texi:22309 msgid "If you want to allow master users to log in by specifying the master username within the normal username string (i.e.@: not using SASL mechanism's support for it), you can specify the separator character here. The format is then . UW-IMAP uses @samp{*} as the separator, so that could be a good choice. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21949 +#: guix-git/doc/guix.texi:22311 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-anonymous-username" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21953 +#: guix-git/doc/guix.texi:22315 msgid "Username to use for users logging in with ANONYMOUS SASL mechanism. Defaults to @samp{\"anonymous\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21955 +#: guix-git/doc/guix.texi:22317 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer auth-worker-max-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21960 +#: guix-git/doc/guix.texi:22322 msgid "Maximum number of dovecot-auth worker processes. They're used to execute blocking passdb and userdb queries (e.g.@: MySQL and PAM). They're automatically created and destroyed as needed. Defaults to @samp{30}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21962 +#: guix-git/doc/guix.texi:22324 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-gssapi-hostname" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21967 +#: guix-git/doc/guix.texi:22329 msgid "Host name to use in GSSAPI principal names. The default is to use the name returned by gethostname(). Use @samp{$ALL} (with quotes) to allow all keytab entries. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21969 +#: guix-git/doc/guix.texi:22331 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-krb5-keytab" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21975 +#: guix-git/doc/guix.texi:22337 msgid "Kerberos keytab to use for the GSSAPI mechanism. Will use the system default (usually @file{/etc/krb5.keytab}) if not specified. You may need to change the auth service to run as root to be able to read this file. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21977 +#: guix-git/doc/guix.texi:22339 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-use-winbind?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21982 +#: guix-git/doc/guix.texi:22344 msgid "Do NTLM and GSS-SPNEGO authentication using Samba's winbind daemon and @samp{ntlm-auth} helper. . Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21984 +#: guix-git/doc/guix.texi:22346 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name auth-winbind-helper-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21987 +#: guix-git/doc/guix.texi:22349 msgid "Path for Samba's @samp{ntlm-auth} helper binary. Defaults to @samp{\"/usr/bin/ntlm_auth\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21989 +#: guix-git/doc/guix.texi:22351 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-failure-delay" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21992 +#: guix-git/doc/guix.texi:22354 msgid "Time to delay before replying to failed authentications. Defaults to @samp{\"2 secs\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21994 +#: guix-git/doc/guix.texi:22356 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-ssl-require-client-cert?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21998 +#: guix-git/doc/guix.texi:22360 msgid "Require a valid SSL client certificate or the authentication fails. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22000 +#: guix-git/doc/guix.texi:22362 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-ssl-username-from-cert?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22005 +#: guix-git/doc/guix.texi:22367 msgid "Take the username from client's SSL certificate, using @code{X509_NAME_get_text_by_NID()} which returns the subject's DN's CommonName. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22007 +#: guix-git/doc/guix.texi:22369 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list auth-mechanisms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22013 +#: guix-git/doc/guix.texi:22375 msgid "List of wanted authentication mechanisms. Supported mechanisms are: @samp{plain}, @samp{login}, @samp{digest-md5}, @samp{cram-md5}, @samp{ntlm}, @samp{rpa}, @samp{apop}, @samp{anonymous}, @samp{gssapi}, @samp{otp}, @samp{skey}, and @samp{gss-spnego}. NOTE: See also @samp{disable-plaintext-auth} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22015 +#: guix-git/doc/guix.texi:22377 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list director-servers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22020 +#: guix-git/doc/guix.texi:22382 msgid "List of IPs or hostnames to all director servers, including ourself. Ports can be specified as ip:port. The default port is the same as what director service's @samp{inet-listener} is using. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22022 +#: guix-git/doc/guix.texi:22384 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list director-mail-servers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22026 +#: guix-git/doc/guix.texi:22388 msgid "List of IPs or hostnames to all backend mail servers. Ranges are allowed too, like 10.0.0.10-10.0.0.30. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22028 +#: guix-git/doc/guix.texi:22390 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string director-user-expire" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22032 +#: guix-git/doc/guix.texi:22394 msgid "How long to redirect users to a specific server after it no longer has any connections. Defaults to @samp{\"15 min\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22034 +#: guix-git/doc/guix.texi:22396 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string director-username-hash" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22039 +#: guix-git/doc/guix.texi:22401 msgid "How the username is translated before being hashed. Useful values include %Ln if user can log in with or without @@domain, %Ld if mailboxes are shared within domain. Defaults to @samp{\"%Lu\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22041 +#: guix-git/doc/guix.texi:22403 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string log-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22045 +#: guix-git/doc/guix.texi:22407 msgid "Log file to use for error messages. @samp{syslog} logs to syslog, @samp{/dev/stderr} logs to stderr. Defaults to @samp{\"syslog\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22047 +#: guix-git/doc/guix.texi:22409 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string info-log-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22051 +#: guix-git/doc/guix.texi:22413 msgid "Log file to use for informational messages. Defaults to @samp{log-path}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22053 +#: guix-git/doc/guix.texi:22415 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string debug-log-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22057 +#: guix-git/doc/guix.texi:22419 msgid "Log file to use for debug messages. Defaults to @samp{info-log-path}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22059 +#: guix-git/doc/guix.texi:22421 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string syslog-facility" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22064 +#: guix-git/doc/guix.texi:22426 msgid "Syslog facility to use if you're logging to syslog. Usually if you don't want to use @samp{mail}, you'll use local0..local7. Also other standard facilities are supported. Defaults to @samp{\"mail\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22066 +#: guix-git/doc/guix.texi:22428 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-verbose?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22070 +#: guix-git/doc/guix.texi:22432 msgid "Log unsuccessful authentication attempts and the reasons why they failed. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22072 +#: guix-git/doc/guix.texi:22434 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-verbose-passwords" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22079 +#: guix-git/doc/guix.texi:22441 msgid "In case of password mismatches, log the attempted password. Valid values are no, plain and sha1. sha1 can be useful for detecting brute force password attempts vs. user simply trying the same password over and over again. You can also truncate the value to n chars by appending \":n\" (e.g.@: sha1:6). Defaults to @samp{\"no\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22081 +#: guix-git/doc/guix.texi:22443 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-debug?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22085 +#: guix-git/doc/guix.texi:22447 msgid "Even more verbose logging for debugging purposes. Shows for example SQL queries. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22087 +#: guix-git/doc/guix.texi:22449 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-debug-passwords?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22092 +#: guix-git/doc/guix.texi:22454 msgid "In case of password mismatches, log the passwords and used scheme so the problem can be debugged. Enabling this also enables @samp{auth-debug}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22094 +#: guix-git/doc/guix.texi:22456 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-debug?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22098 +#: guix-git/doc/guix.texi:22460 msgid "Enable mail process debugging. This can help you figure out why Dovecot isn't finding your mails. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22100 +#: guix-git/doc/guix.texi:22462 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean verbose-ssl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22103 +#: guix-git/doc/guix.texi:22465 msgid "Show protocol level SSL errors. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22105 +#: guix-git/doc/guix.texi:22467 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string log-timestamp" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22109 +#: guix-git/doc/guix.texi:22471 msgid "Prefix for each line written to log file. % codes are in strftime(3) format. Defaults to @samp{\"\\\"%b %d %H:%M:%S \\\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22111 +#: guix-git/doc/guix.texi:22473 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-log-format-elements" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22115 +#: guix-git/doc/guix.texi:22477 msgid "List of elements we want to log. The elements which have a non-empty variable value are joined together to form a comma-separated string." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22117 +#: guix-git/doc/guix.texi:22479 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string login-log-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22121 +#: guix-git/doc/guix.texi:22483 msgid "Login log format. %s contains @samp{login-log-format-elements} string, %$ contains the data we want to log. Defaults to @samp{\"%$: %s\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22123 +#: guix-git/doc/guix.texi:22485 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-log-prefix" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22127 +#: guix-git/doc/guix.texi:22489 msgid "Log prefix for mail processes. See doc/wiki/Variables.txt for list of possible variables you can use. Defaults to @samp{\"\\\"%s(%u)<%@{pid@}><%@{session@}>: \\\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22129 +#: guix-git/doc/guix.texi:22491 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string deliver-log-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22131 +#: guix-git/doc/guix.texi:22493 msgid "Format to use for logging mail deliveries. You can use variables:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22132 +#: guix-git/doc/guix.texi:22494 #, no-wrap msgid "%$" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22134 +#: guix-git/doc/guix.texi:22496 msgid "Delivery status message (e.g.@: @samp{saved to INBOX})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22134 +#: guix-git/doc/guix.texi:22496 #, no-wrap msgid "%m" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22136 +#: guix-git/doc/guix.texi:22498 msgid "Message-ID" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22136 guix-git/doc/guix.texi:22679 +#: guix-git/doc/guix.texi:22498 guix-git/doc/guix.texi:23041 #, no-wrap msgid "%s" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22138 +#: guix-git/doc/guix.texi:22500 msgid "Subject" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22138 +#: guix-git/doc/guix.texi:22500 #, no-wrap msgid "%f" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22140 +#: guix-git/doc/guix.texi:22502 msgid "From address" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22142 +#: guix-git/doc/guix.texi:22504 msgid "Physical size" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22142 +#: guix-git/doc/guix.texi:22504 #, no-wrap msgid "%w" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22144 +#: guix-git/doc/guix.texi:22506 msgid "Virtual size." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22146 +#: guix-git/doc/guix.texi:22508 msgid "Defaults to @samp{\"msgid=%m: %$\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22148 +#: guix-git/doc/guix.texi:22510 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22153 +#: guix-git/doc/guix.texi:22515 msgid "Location for users' mailboxes. The default is empty, which means that Dovecot tries to find the mailboxes automatically. This won't work if the user doesn't yet have any mail, so you should explicitly tell Dovecot the full location." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22159 +#: guix-git/doc/guix.texi:22521 msgid "If you're using mbox, giving a path to the INBOX file (e.g.@: @file{/var/mail/%u}) isn't enough. You'll also need to tell Dovecot where the other mailboxes are kept. This is called the @emph{root mail directory}, and it must be the first path given in the @samp{mail-location} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22161 +#: guix-git/doc/guix.texi:22523 msgid "There are a few special variables you can use, e.g.:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22165 +#: guix-git/doc/guix.texi:22527 msgid "username" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22165 guix-git/doc/guix.texi:22675 +#: guix-git/doc/guix.texi:22527 guix-git/doc/guix.texi:23037 #, no-wrap msgid "%n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22167 +#: guix-git/doc/guix.texi:22529 msgid "user part in user@@domain, same as %u if there's no domain" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22167 +#: guix-git/doc/guix.texi:22529 #, no-wrap msgid "%d" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22169 +#: guix-git/doc/guix.texi:22531 msgid "domain part in user@@domain, empty if there's no domain" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22169 +#: guix-git/doc/guix.texi:22531 #, no-wrap msgid "%h" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22171 +#: guix-git/doc/guix.texi:22533 msgid "home director" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22174 +#: guix-git/doc/guix.texi:22536 msgid "See doc/wiki/Variables.txt for full list. Some examples:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22175 +#: guix-git/doc/guix.texi:22537 #, no-wrap msgid "maildir:~/Maildir" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22176 +#: guix-git/doc/guix.texi:22538 #, no-wrap msgid "mbox:~/mail:INBOX=/var/mail/%u" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22177 +#: guix-git/doc/guix.texi:22539 #, no-wrap msgid "mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22182 +#: guix-git/doc/guix.texi:22544 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22187 +#: guix-git/doc/guix.texi:22549 msgid "System user and group used to access mails. If you use multiple, userdb can override these by returning uid or gid fields. You can use either numbers or names. . Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22189 +#: guix-git/doc/guix.texi:22551 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22194 +#: guix-git/doc/guix.texi:22556 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-privileged-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22200 +#: guix-git/doc/guix.texi:22562 msgid "Group to enable temporarily for privileged operations. Currently this is used only with INBOX when either its initial creation or dotlocking fails. Typically this is set to @samp{\"mail\"} to give access to @file{/var/mail}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22202 +#: guix-git/doc/guix.texi:22564 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-access-groups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22210 +#: guix-git/doc/guix.texi:22572 msgid "Grant access to these supplementary groups for mail processes. Typically these are used to set up access to shared mailboxes. Note that it may be dangerous to set these if users can create symlinks (e.g.@: if @samp{mail} group is set here, @code{ln -s /var/mail ~/mail/var} could allow a user to delete others' mailboxes, or @code{ln -s /secret/shared/box ~/mail/mybox} would allow reading it). Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22212 +#: guix-git/doc/guix.texi:22574 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attribute-dict" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22215 +#: guix-git/doc/guix.texi:22577 msgid "The location of a dictionary used to store @code{IMAP METADATA} as defined by @uref{https://tools.ietf.org/html/rfc5464, RFC@tie{}5464}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22218 +#: guix-git/doc/guix.texi:22580 msgid "The IMAP METADATA commands are available only if the ``imap'' protocol configuration's @code{imap-metadata?} field is @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22223 +#: guix-git/doc/guix.texi:22585 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-full-filesystem-access?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22229 +#: guix-git/doc/guix.texi:22591 msgid "Allow full file system access to clients. There's no access checks other than what the operating system does for the active UID/GID@. It works with both maildir and mboxes, allowing you to prefix mailboxes names with e.g.@: @file{/path/} or @file{~user/}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22231 +#: guix-git/doc/guix.texi:22593 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mmap-disable?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22235 +#: guix-git/doc/guix.texi:22597 msgid "Don't use @code{mmap()} at all. This is required if you store indexes to shared file systems (NFS or clustered file system). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22237 +#: guix-git/doc/guix.texi:22599 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean dotlock-use-excl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22242 +#: guix-git/doc/guix.texi:22604 msgid "Rely on @samp{O_EXCL} to work when creating dotlock files. NFS supports @samp{O_EXCL} since version 3, so this should be safe to use nowadays by default. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22244 +#: guix-git/doc/guix.texi:22606 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-fsync" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22246 +#: guix-git/doc/guix.texi:22608 msgid "When to use fsync() or fdatasync() calls:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22247 +#: guix-git/doc/guix.texi:22609 #, no-wrap msgid "optimized" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22249 +#: guix-git/doc/guix.texi:22611 msgid "Whenever necessary to avoid losing important data" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22251 +#: guix-git/doc/guix.texi:22613 msgid "Useful with e.g.@: NFS when @code{write()}s are delayed" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22253 +#: guix-git/doc/guix.texi:22615 msgid "Never use it (best performance, but crashes can lose data)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22255 +#: guix-git/doc/guix.texi:22617 msgid "Defaults to @samp{\"optimized\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22257 +#: guix-git/doc/guix.texi:22619 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-nfs-storage?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22262 +#: guix-git/doc/guix.texi:22624 msgid "Mail storage exists in NFS@. Set this to yes to make Dovecot flush NFS caches whenever needed. If you're using only a single mail server this isn't needed. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22264 +#: guix-git/doc/guix.texi:22626 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-nfs-index?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22268 +#: guix-git/doc/guix.texi:22630 msgid "Mail index files also exist in NFS@. Setting this to yes requires @samp{mmap-disable? #t} and @samp{fsync-disable? #f}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22270 +#: guix-git/doc/guix.texi:22632 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string lock-method" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22276 +#: guix-git/doc/guix.texi:22638 msgid "Locking method for index files. Alternatives are fcntl, flock and dotlock. Dotlocking uses some tricks which may create more disk I/O than other locking methods. NFS users: flock doesn't work, remember to change @samp{mmap-disable}. Defaults to @samp{\"fcntl\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22278 +#: guix-git/doc/guix.texi:22640 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name mail-temp-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22282 +#: guix-git/doc/guix.texi:22644 msgid "Directory in which LDA/LMTP temporarily stores incoming mails >128 kB. Defaults to @samp{\"/tmp\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22284 +#: guix-git/doc/guix.texi:22646 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer first-valid-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22290 +#: guix-git/doc/guix.texi:22652 msgid "Valid UID range for users. This is mostly to make sure that users can't log in as daemons or other system users. Note that denying root logins is hardcoded to dovecot binary and can't be done even if @samp{first-valid-uid} is set to 0. Defaults to @samp{500}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22292 +#: guix-git/doc/guix.texi:22654 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer last-valid-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22297 +#: guix-git/doc/guix.texi:22659 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer first-valid-gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22302 +#: guix-git/doc/guix.texi:22664 msgid "Valid GID range for users. Users having non-valid GID as primary group ID aren't allowed to log in. If user belongs to supplementary groups with non-valid GIDs, those groups are not set. Defaults to @samp{1}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22304 +#: guix-git/doc/guix.texi:22666 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer last-valid-gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22309 +#: guix-git/doc/guix.texi:22671 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-max-keyword-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22313 +#: guix-git/doc/guix.texi:22675 msgid "Maximum allowed length for mail keyword name. It's only forced when trying to create new keywords. Defaults to @samp{50}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22315 +#: guix-git/doc/guix.texi:22677 #, no-wrap msgid "{@code{dovecot-configuration} parameter} colon-separated-file-name-list valid-chroot-dirs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22325 +#: guix-git/doc/guix.texi:22687 msgid "List of directories under which chrooting is allowed for mail processes (i.e.@: @file{/var/mail} will allow chrooting to @file{/var/mail/foo/bar} too). This setting doesn't affect @samp{login-chroot} @samp{mail-chroot} or auth chroot settings. If this setting is empty, @samp{/./} in home dirs are ignored. WARNING: Never add directories here which local users can modify, that may lead to root exploit. Usually this should be done only if you don't allow shell access for users. . Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22327 +#: guix-git/doc/guix.texi:22689 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-chroot" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22336 +#: guix-git/doc/guix.texi:22698 msgid "Default chroot directory for mail processes. This can be overridden for specific users in user database by giving @samp{/./} in user's home directory (e.g.@: @samp{/home/./user} chroots into @file{/home}). Note that usually there is no real need to do chrooting, Dovecot doesn't allow users to access files outside their mail directory anyway. If your home directories are prefixed with the chroot directory, append @samp{/.} to @samp{mail-chroot}. . Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22338 +#: guix-git/doc/guix.texi:22700 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name auth-socket-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22342 +#: guix-git/doc/guix.texi:22704 msgid "UNIX socket path to master authentication server to find users. This is used by imap (for shared users) and lda. Defaults to @samp{\"/var/run/dovecot/auth-userdb\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22344 +#: guix-git/doc/guix.texi:22706 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name mail-plugin-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22347 +#: guix-git/doc/guix.texi:22709 msgid "Directory where to look up mail plugins. Defaults to @samp{\"/usr/lib/dovecot\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22349 +#: guix-git/doc/guix.texi:22711 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mail-plugins" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22353 +#: guix-git/doc/guix.texi:22715 msgid "List of plugins to load for all services. Plugins specific to IMAP, LDA, etc.@: are added to this list in their own .conf files. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22355 +#: guix-git/doc/guix.texi:22717 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-cache-min-mail-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22360 +#: guix-git/doc/guix.texi:22722 msgid "The minimum number of mails in a mailbox before updates are done to cache file. This allows optimizing Dovecot's behavior to do less disk writes at the cost of more disk reads. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22362 +#: guix-git/doc/guix.texi:22724 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mailbox-idle-check-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22369 +#: guix-git/doc/guix.texi:22731 msgid "When IDLE command is running, mailbox is checked once in a while to see if there are any new mails or other changes. This setting defines the minimum time to wait between those checks. Dovecot can also use dnotify, inotify and kqueue to find out immediately when changes occur. Defaults to @samp{\"30 secs\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22371 +#: guix-git/doc/guix.texi:22733 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-save-crlf?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22378 +#: guix-git/doc/guix.texi:22740 msgid "Save mails with CR+LF instead of plain LF@. This makes sending those mails take less CPU, especially with sendfile() syscall with Linux and FreeBSD@. But it also creates a bit more disk I/O which may just make it slower. Also note that if other software reads the mboxes/maildirs, they may handle the extra CRs wrong and cause problems. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22380 +#: guix-git/doc/guix.texi:22742 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-stat-dirs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22388 +#: guix-git/doc/guix.texi:22750 msgid "By default LIST command returns all entries in maildir beginning with a dot. Enabling this option makes Dovecot return only entries which are directories. This is done by stat()ing each entry, so it causes more disk I/O. (For systems setting struct @samp{dirent->d_type} this check is free and it's done always regardless of this setting). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22390 +#: guix-git/doc/guix.texi:22752 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-copy-with-hardlinks?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22395 +#: guix-git/doc/guix.texi:22757 msgid "When copying a message, do it with hard links whenever possible. This makes the performance much better, and it's unlikely to have any side effects. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22397 +#: guix-git/doc/guix.texi:22759 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-very-dirty-syncs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22402 +#: guix-git/doc/guix.texi:22764 msgid "Assume Dovecot is the only MUA accessing Maildir: Scan cur/ directory only when its mtime changes unexpectedly or when we can't find the mail otherwise. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22404 +#: guix-git/doc/guix.texi:22766 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mbox-read-locks" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22407 +#: guix-git/doc/guix.texi:22769 msgid "Which locking methods to use for locking mbox. There are four available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22409 +#: guix-git/doc/guix.texi:22771 #, no-wrap msgid "dotlock" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22413 +#: guix-git/doc/guix.texi:22775 msgid "Create .lock file. This is the oldest and most NFS-safe solution. If you want to use /var/mail/ like directory, the users will need write access to that directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22413 +#: guix-git/doc/guix.texi:22775 #, no-wrap msgid "dotlock-try" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22416 +#: guix-git/doc/guix.texi:22778 msgid "Same as dotlock, but if it fails because of permissions or because there isn't enough disk space, just skip it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22416 +#: guix-git/doc/guix.texi:22778 #, no-wrap msgid "fcntl" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22418 +#: guix-git/doc/guix.texi:22780 msgid "Use this if possible. Works with NFS too if lockd is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22418 +#: guix-git/doc/guix.texi:22780 #, no-wrap msgid "flock" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22420 guix-git/doc/guix.texi:22422 +#: guix-git/doc/guix.texi:22782 guix-git/doc/guix.texi:22784 msgid "May not exist in all systems. Doesn't work with NFS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22420 +#: guix-git/doc/guix.texi:22782 #, no-wrap msgid "lockf" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22428 +#: guix-git/doc/guix.texi:22790 msgid "You can use multiple locking methods; if you do the order they're declared in is important to avoid deadlocks if other MTAs/MUAs are using multiple locking methods as well. Some operating systems don't allow using some of them simultaneously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22430 +#: guix-git/doc/guix.texi:22792 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mbox-write-locks" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22434 +#: guix-git/doc/guix.texi:22796 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mbox-lock-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22437 +#: guix-git/doc/guix.texi:22799 msgid "Maximum time to wait for lock (all of them) before aborting. Defaults to @samp{\"5 mins\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22439 +#: guix-git/doc/guix.texi:22801 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mbox-dotlock-change-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22443 +#: guix-git/doc/guix.texi:22805 msgid "If dotlock exists but the mailbox isn't modified in any way, override the lock file after this much time. Defaults to @samp{\"2 mins\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22445 +#: guix-git/doc/guix.texi:22807 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-dirty-syncs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22456 +#: guix-git/doc/guix.texi:22818 msgid "When mbox changes unexpectedly we have to fully read it to find out what changed. If the mbox is large this can take a long time. Since the change is usually just a newly appended mail, it'd be faster to simply read the new mails. If this setting is enabled, Dovecot does this but still safely fallbacks to re-reading the whole mbox file whenever something in mbox isn't how it's expected to be. The only real downside to this setting is that if some other MUA changes message flags, Dovecot doesn't notice it immediately. Note that a full sync is done with SELECT, EXAMINE, EXPUNGE and CHECK commands. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22458 +#: guix-git/doc/guix.texi:22820 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-very-dirty-syncs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22463 +#: guix-git/doc/guix.texi:22825 msgid "Like @samp{mbox-dirty-syncs}, but don't do full syncs even with SELECT, EXAMINE, EXPUNGE or CHECK commands. If this is set, @samp{mbox-dirty-syncs} is ignored. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22465 +#: guix-git/doc/guix.texi:22827 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-lazy-writes?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22471 +#: guix-git/doc/guix.texi:22833 msgid "Delay writing mbox headers until doing a full write sync (EXPUNGE and CHECK commands and when closing the mailbox). This is especially useful for POP3 where clients often delete all mails. The downside is that our changes aren't immediately visible to other MUAs. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22473 +#: guix-git/doc/guix.texi:22835 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mbox-min-index-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22478 +#: guix-git/doc/guix.texi:22840 msgid "If mbox size is smaller than this (e.g.@: 100k), don't write index files. If an index file already exists it's still read, just not updated. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22480 +#: guix-git/doc/guix.texi:22842 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mdbox-rotate-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22483 +#: guix-git/doc/guix.texi:22845 msgid "Maximum dbox file size until it's rotated. Defaults to @samp{10000000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22485 +#: guix-git/doc/guix.texi:22847 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mdbox-rotate-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22490 +#: guix-git/doc/guix.texi:22852 msgid "Maximum dbox file age until it's rotated. Typically in days. Day begins from midnight, so 1d = today, 2d = yesterday, etc. 0 = check disabled. Defaults to @samp{\"1d\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22492 +#: guix-git/doc/guix.texi:22854 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mdbox-preallocate-space?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22497 +#: guix-git/doc/guix.texi:22859 msgid "When creating new mdbox files, immediately preallocate their size to @samp{mdbox-rotate-size}. This setting currently works only in Linux with some file systems (ext4, xfs). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22499 +#: guix-git/doc/guix.texi:22861 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22503 +#: guix-git/doc/guix.texi:22865 msgid "sdbox and mdbox support saving mail attachments to external files, which also allows single instance storage for them. Other backends don't support this for now." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22505 +#: guix-git/doc/guix.texi:22867 msgid "WARNING: This feature hasn't been tested much yet. Use at your own risk." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22508 +#: guix-git/doc/guix.texi:22870 msgid "Directory root where to store mail attachments. Disabled, if empty. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22510 +#: guix-git/doc/guix.texi:22872 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-attachment-min-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22515 +#: guix-git/doc/guix.texi:22877 msgid "Attachments smaller than this aren't saved externally. It's also possible to write a plugin to disable saving specific attachments externally. Defaults to @samp{128000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22517 +#: guix-git/doc/guix.texi:22879 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-fs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22519 +#: guix-git/doc/guix.texi:22881 msgid "File system backend to use for saving attachments:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22520 +#: guix-git/doc/guix.texi:22882 #, no-wrap msgid "posix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22522 +#: guix-git/doc/guix.texi:22884 msgid "No SiS done by Dovecot (but this might help FS's own deduplication)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22522 +#: guix-git/doc/guix.texi:22884 #, no-wrap msgid "sis posix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22524 +#: guix-git/doc/guix.texi:22886 msgid "SiS with immediate byte-by-byte comparison during saving" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22524 +#: guix-git/doc/guix.texi:22886 #, no-wrap msgid "sis-queue posix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22526 +#: guix-git/doc/guix.texi:22888 msgid "SiS with delayed comparison and deduplication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22528 +#: guix-git/doc/guix.texi:22890 msgid "Defaults to @samp{\"sis posix\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22530 +#: guix-git/doc/guix.texi:22892 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-hash" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22536 +#: guix-git/doc/guix.texi:22898 msgid "Hash format to use in attachment filenames. You can add any text and variables: @code{%@{md4@}}, @code{%@{md5@}}, @code{%@{sha1@}}, @code{%@{sha256@}}, @code{%@{sha512@}}, @code{%@{size@}}. Variables can be truncated, e.g.@: @code{%@{sha256:80@}} returns only first 80 bits. Defaults to @samp{\"%@{sha1@}\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22538 +#: guix-git/doc/guix.texi:22900 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-process-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22543 +#: guix-git/doc/guix.texi:22905 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-client-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22546 guix-git/doc/guix.texi:30171 +#: guix-git/doc/guix.texi:22908 guix-git/doc/guix.texi:30536 msgid "Defaults to @samp{1000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22548 +#: guix-git/doc/guix.texi:22910 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-vsz-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22553 +#: guix-git/doc/guix.texi:22915 msgid "Default VSZ (virtual memory size) limit for service processes. This is mainly intended to catch and kill processes that leak memory before they eat up everything. Defaults to @samp{256000000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22555 +#: guix-git/doc/guix.texi:22917 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string default-login-user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22560 +#: guix-git/doc/guix.texi:22922 msgid "Login user is internally used by login processes. This is the most untrusted user in Dovecot system. It shouldn't have access to anything at all. Defaults to @samp{\"dovenull\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22562 +#: guix-git/doc/guix.texi:22924 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string default-internal-user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22567 +#: guix-git/doc/guix.texi:22929 msgid "Internal user is used by unprivileged processes. It should be separate from login user, so that login processes can't disturb other processes. Defaults to @samp{\"dovecot\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22569 +#: guix-git/doc/guix.texi:22931 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string ssl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22572 +#: guix-git/doc/guix.texi:22934 msgid "SSL/TLS support: yes, no, required. . Defaults to @samp{\"required\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22574 +#: guix-git/doc/guix.texi:22936 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string ssl-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22577 +#: guix-git/doc/guix.texi:22939 msgid "PEM encoded X.509 SSL/TLS certificate (public key). Defaults to @samp{\" was automatically rejected:%n%r\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22687 +#: guix-git/doc/guix.texi:23049 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string recipient-delimiter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22691 +#: guix-git/doc/guix.texi:23053 msgid "Delimiter character between local-part and detail in email address. Defaults to @samp{\"+\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22693 +#: guix-git/doc/guix.texi:23055 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string lda-original-recipient-header" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22699 +#: guix-git/doc/guix.texi:23061 msgid "Header where the original recipient address (SMTP's RCPT TO: address) is taken from if not available elsewhere. With dovecot-lda -a parameter overrides this. A commonly used header for this is X-Original-To. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22701 +#: guix-git/doc/guix.texi:23063 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean lda-mailbox-autocreate?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22705 +#: guix-git/doc/guix.texi:23067 msgid "Should saving a mail to a nonexistent mailbox automatically create it?. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22707 +#: guix-git/doc/guix.texi:23069 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean lda-mailbox-autosubscribe?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22711 +#: guix-git/doc/guix.texi:23073 msgid "Should automatically created mailboxes be also automatically subscribed?. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22713 +#: guix-git/doc/guix.texi:23075 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer imap-max-line-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22719 +#: guix-git/doc/guix.texi:23081 msgid "Maximum IMAP command line length. Some clients generate very long command lines with huge mailboxes, so you may need to raise this if you get \"Too long argument\" or \"IMAP command line too large\" errors often. Defaults to @samp{64000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22721 +#: guix-git/doc/guix.texi:23083 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-logout-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22723 +#: guix-git/doc/guix.texi:23085 msgid "IMAP logout format string:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22724 +#: guix-git/doc/guix.texi:23086 #, no-wrap msgid "%i" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22726 +#: guix-git/doc/guix.texi:23088 msgid "total number of bytes read from client" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22726 +#: guix-git/doc/guix.texi:23088 #, no-wrap msgid "%o" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22728 +#: guix-git/doc/guix.texi:23090 msgid "total number of bytes sent to client." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22731 +#: guix-git/doc/guix.texi:23093 msgid "See @file{doc/wiki/Variables.txt} for a list of all the variables you can use. Defaults to @samp{\"in=%i out=%o deleted=%@{deleted@} expunged=%@{expunged@} trashed=%@{trashed@} hdr_count=%@{fetch_hdr_count@} hdr_bytes=%@{fetch_hdr_bytes@} body_count=%@{fetch_body_count@} body_bytes=%@{fetch_body_bytes@}\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22733 +#: guix-git/doc/guix.texi:23095 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-capability" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22737 +#: guix-git/doc/guix.texi:23099 msgid "Override the IMAP CAPABILITY response. If the value begins with '+', add the given capabilities on top of the defaults (e.g.@: +XFOO XBAR). Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22739 +#: guix-git/doc/guix.texi:23101 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-idle-notify-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22743 +#: guix-git/doc/guix.texi:23105 msgid "How long to wait between \"OK Still here\" notifications when client is IDLEing. Defaults to @samp{\"2 mins\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22745 +#: guix-git/doc/guix.texi:23107 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-id-send" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22751 +#: guix-git/doc/guix.texi:23113 msgid "ID field names and values to send to clients. Using * as the value makes Dovecot use the default value. The following fields have default values currently: name, version, os, os-version, support-url, support-email. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22753 +#: guix-git/doc/guix.texi:23115 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-id-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22756 +#: guix-git/doc/guix.texi:23118 msgid "ID fields sent by client to log. * means everything. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22758 +#: guix-git/doc/guix.texi:23120 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list imap-client-workarounds" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22760 +#: guix-git/doc/guix.texi:23122 msgid "Workarounds for various client bugs:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22762 +#: guix-git/doc/guix.texi:23124 #, no-wrap msgid "delay-newmail" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22769 +#: guix-git/doc/guix.texi:23131 msgid "Send EXISTS/RECENT new mail notifications only when replying to NOOP and CHECK commands. Some clients ignore them otherwise, for example OSX Mail (' before setting it here, to get a feel for which cipher suites you will get. After setting this option, it is recommend that you inspect your Murmur log to ensure that Murmur is using the cipher suites that you expected it to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24159 +#: guix-git/doc/guix.texi:24521 msgid "Note: Changing this option may impact the backwards compatibility of your Murmur server, and can remove the ability for older Mumble clients to be able to connect to it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:24160 +#: guix-git/doc/guix.texi:24522 #, no-wrap msgid "@code{public-registration} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:24162 +#: guix-git/doc/guix.texi:24524 msgid "Must be a @code{} record or @code{#f}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24167 +#: guix-git/doc/guix.texi:24529 msgid "You can optionally register your server in the public server list that the @code{mumble} client shows on startup. You cannot register your server if you have set a @code{server-password}, or set @code{allow-ping} to @code{#f}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24169 +#: guix-git/doc/guix.texi:24531 msgid "It might take a few hours until it shows up in the public list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:24170 guix-git/doc/guix.texi:26407 +#: guix-git/doc/guix.texi:24532 guix-git/doc/guix.texi:26744 #, no-wrap msgid "@code{file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:24172 +#: guix-git/doc/guix.texi:24534 msgid "Optional alternative override for this configuration." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24175 +#: guix-git/doc/guix.texi:24537 #, no-wrap msgid "{Data Type} murmur-public-registration-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24177 +#: guix-git/doc/guix.texi:24539 msgid "Configuration for public registration of a murmur service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24181 +#: guix-git/doc/guix.texi:24543 msgid "This is a display name for your server. Not to be confused with the hostname." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:24182 guix-git/doc/guix.texi:33135 -#: guix-git/doc/guix.texi:34304 +#: guix-git/doc/guix.texi:24544 guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:34743 #, no-wrap msgid "password" msgstr "" #. type: table -#: guix-git/doc/guix.texi:24185 +#: guix-git/doc/guix.texi:24547 msgid "A password to identify your registration. Subsequent updates will need the same password. Don't lose your password." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24189 +#: guix-git/doc/guix.texi:24551 msgid "This should be a @code{http://} or @code{https://} link to your web site." msgstr "" #. type: item -#: guix-git/doc/guix.texi:24190 guix-git/doc/guix.texi:27292 +#: guix-git/doc/guix.texi:24552 guix-git/doc/guix.texi:27629 #, no-wrap msgid "@code{hostname} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:24193 +#: guix-git/doc/guix.texi:24555 msgid "By default your server will be listed by its IP address. If it is set your server will be linked by this host name instead." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24203 +#: guix-git/doc/guix.texi:24565 msgid "The @code{(gnu services file-sharing)} module provides services that assist with transferring files over peer-to-peer file-sharing networks." msgstr "Модуль @code{(gnu services file-sharing)} предоставляет следующие сервисы, помогающие с передачей файлов через одноранговые сети." #. type: subsubheading -#: guix-git/doc/guix.texi:24204 +#: guix-git/doc/guix.texi:24566 #, no-wrap msgid "Transmission Daemon Service" msgstr "Сервисы упраления версиями" #. type: Plain text -#: guix-git/doc/guix.texi:24212 +#: guix-git/doc/guix.texi:24574 msgid "@uref{https://transmissionbt.com/, Transmission} is a flexible BitTorrent client that offers a variety of graphical and command-line interfaces. A @code{transmission-daemon-service-type} service provides Transmission's headless variant, @command{transmission-daemon}, as a system service, allowing users to share files via BitTorrent even when they are not logged in." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24213 +#: guix-git/doc/guix.texi:24575 #, no-wrap msgid "{Scheme Variable} transmission-daemon-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: deffn -#: guix-git/doc/guix.texi:24217 +#: guix-git/doc/guix.texi:24579 msgid "The service type for the Transmission Daemon BitTorrent client. Its value must be a @code{transmission-daemon-configuration} object as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24228 +#: guix-git/doc/guix.texi:24590 #, no-wrap msgid "" "(service transmission-daemon-service-type\n" @@ -44697,7 +45423,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24233 +#: guix-git/doc/guix.texi:24595 #, no-wrap msgid "" " ;; Accept requests from this and other hosts on the\n" @@ -44708,7 +45434,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24237 +#: guix-git/doc/guix.texi:24599 #, no-wrap msgid "" " ;; Limit bandwidth use during work hours\n" @@ -44718,7 +45444,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24244 +#: guix-git/doc/guix.texi:24606 #, no-wrap msgid "" " (alt-speed-time-enabled? #t)\n" @@ -44730,49 +45456,49 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24257 +#: guix-git/doc/guix.texi:24619 msgid "Once the service is started, users can interact with the daemon through its Web interface (at @code{http://localhost:9091/}) or by using the @command{transmission-remote} command-line tool, available in the @code{transmission} package. (Emacs users may want to also consider the @code{emacs-transmission} package.) Both communicate with the daemon through its remote procedure call (RPC) interface, which by default is available to all users on the system; you may wish to change this by assigning values to the @code{rpc-authentication-required?}, @code{rpc-username} and @code{rpc-password} settings, as shown in the example above and documented further below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24265 +#: guix-git/doc/guix.texi:24627 msgid "The value for @code{rpc-password} must be a password hash of the type generated and used by Transmission clients. This can be copied verbatim from an existing @file{settings.json} file, if another Transmission client is already being used. Otherwise, the @code{transmission-password-hash} and @code{transmission-random-salt} procedures provided by this module can be used to obtain a suitable hash value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24266 +#: guix-git/doc/guix.texi:24628 #, no-wrap msgid "{Scheme Procedure} transmission-password-hash @var{password} @var{salt}" msgstr "{Процедура Scheme} lookup-inferior-packages @var{inferior} @var{name} @" #. type: deffn -#: guix-git/doc/guix.texi:24270 +#: guix-git/doc/guix.texi:24632 msgid "Returns a string containing the result of hashing @var{password} together with @var{salt}, in the format recognized by Transmission clients for their @code{rpc-password} configuration setting." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24274 +#: guix-git/doc/guix.texi:24636 msgid "@var{salt} must be an eight-character string. The @code{transmission-random-salt} procedure can be used to generate a suitable salt value at random." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24276 +#: guix-git/doc/guix.texi:24638 #, no-wrap msgid "{Scheme Procedure} transmission-random-salt" msgstr "{Процедура Scheme} open-inferior @var{directory} @" #. type: deffn -#: guix-git/doc/guix.texi:24280 +#: guix-git/doc/guix.texi:24642 msgid "Returns a string containing a random, eight-character salt value of the type generated and used by Transmission clients, suitable for passing to the @code{transmission-password-hash} procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24286 +#: guix-git/doc/guix.texi:24648 msgid "These procedures are accessible from within a Guile REPL started with the @command{guix repl} command (@pxref{Invoking guix repl}). This is useful for obtaining a random salt value to provide as the second parameter to `transmission-password-hash`, as in this example session:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:24292 +#: guix-git/doc/guix.texi:24654 #, no-wrap msgid "" "$ guix repl\n" @@ -44782,12 +45508,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24295 +#: guix-git/doc/guix.texi:24657 msgid "Alternatively, a complete password hash can generated in a single step:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:24300 +#: guix-git/doc/guix.texi:24662 #, no-wrap msgid "" "scheme@@(guix-user)> (transmission-password-hash \"transmission\"\n" @@ -44796,480 +45522,480 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24305 +#: guix-git/doc/guix.texi:24667 msgid "The resulting string can be used as-is for the value of @code{rpc-password}, allowing the password to be kept hidden even in the operating-system configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24314 +#: guix-git/doc/guix.texi:24676 msgid "Torrent files downloaded by the daemon are directly accessible only to users in the ``transmission'' user group, who receive read-only access to the directory specified by the @code{download-dir} configuration setting (and also the directory specified by @code{incomplete-dir}, if @code{incomplete-dir-enabled?} is @code{#t}). Downloaded files can be moved to another directory or deleted altogether using @command{transmission-remote} with its @code{--move} and @code{--remove-and-delete} options." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24321 +#: guix-git/doc/guix.texi:24683 msgid "If the @code{watch-dir-enabled?} setting is set to @code{#t}, users in the ``transmission'' group are able also to place @file{.torrent} files in the directory specified by @code{watch-dir} to have the corresponding torrents added by the daemon. (The @code{trash-original-torrent-files?} setting controls whether the daemon deletes these files after processing them.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24326 +#: guix-git/doc/guix.texi:24688 msgid "Some of the daemon's configuration settings can be changed temporarily by @command{transmission-remote} and similar tools. To undo these changes, use the service's @code{reload} action to have the daemon reload its settings from disk:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:24329 +#: guix-git/doc/guix.texi:24691 #, no-wrap msgid "# herd reload transmission-daemon\n" msgstr "herd start ssh-daemon\n" #. type: Plain text -#: guix-git/doc/guix.texi:24333 +#: guix-git/doc/guix.texi:24695 msgid "The full set of available configuration settings is defined by the @code{transmission-daemon-configuration} data type." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24334 +#: guix-git/doc/guix.texi:24696 #, no-wrap msgid "{Data Type} transmission-daemon-configuration" msgstr "{Тип данных} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:24338 +#: guix-git/doc/guix.texi:24700 msgid "The data type representing configuration settings for Transmission Daemon. These correspond directly to the settings recognized by Transmission clients in their @file{settings.json} file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24352 +#: guix-git/doc/guix.texi:24714 msgid "Available @code{transmission-daemon-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24353 +#: guix-git/doc/guix.texi:24715 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} package transmission" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24355 +#: guix-git/doc/guix.texi:24717 msgid "The Transmission package to use." msgstr "Используемый пакет nfs-utils." #. type: deftypevr -#: guix-git/doc/guix.texi:24358 +#: guix-git/doc/guix.texi:24720 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer stop-wait-period" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24364 +#: guix-git/doc/guix.texi:24726 msgid "The period, in seconds, to wait when stopping the service for @command{transmission-daemon} to exit before killing its process. This allows the daemon time to complete its housekeeping and send a final update to trackers as it shuts down. On slow hosts, or hosts with a slow network connection, this value may need to be increased." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24366 guix-git/doc/guix.texi:24738 -#: guix-git/doc/guix.texi:32101 guix-git/doc/guix.texi:32336 -#: guix-git/doc/guix.texi:32344 guix-git/doc/guix.texi:32352 +#: guix-git/doc/guix.texi:24728 guix-git/doc/guix.texi:25100 +#: guix-git/doc/guix.texi:32466 guix-git/doc/guix.texi:32701 +#: guix-git/doc/guix.texi:32709 guix-git/doc/guix.texi:32717 msgid "Defaults to @samp{10}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24369 +#: guix-git/doc/guix.texi:24731 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string download-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24371 +#: guix-git/doc/guix.texi:24733 msgid "The directory to which torrent files are downloaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24373 +#: guix-git/doc/guix.texi:24735 msgid "Defaults to @samp{\"/var/lib/transmission-daemon/downloads\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24376 +#: guix-git/doc/guix.texi:24738 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean incomplete-dir-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24381 +#: guix-git/doc/guix.texi:24743 msgid "If @code{#t}, files will be held in @code{incomplete-dir} while their torrent is being downloaded, then moved to @code{download-dir} once the torrent is complete. Otherwise, files for all torrents (including those still being downloaded) will be placed in @code{download-dir}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24386 +#: guix-git/doc/guix.texi:24748 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string incomplete-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24389 +#: guix-git/doc/guix.texi:24751 msgid "The directory in which files from incompletely downloaded torrents will be held when @code{incomplete-dir-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24394 +#: guix-git/doc/guix.texi:24756 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} umask umask" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24397 +#: guix-git/doc/guix.texi:24759 msgid "The file mode creation mask used for downloaded files. (See the @command{umask} man page for more information.)" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24399 +#: guix-git/doc/guix.texi:24761 msgid "Defaults to @samp{18}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24402 +#: guix-git/doc/guix.texi:24764 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rename-partial-files?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24405 +#: guix-git/doc/guix.texi:24767 msgid "When @code{#t}, ``.part'' is appended to the name of partially downloaded files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24410 +#: guix-git/doc/guix.texi:24772 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} preallocation-mode preallocation" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24415 +#: guix-git/doc/guix.texi:24777 msgid "The mode by which space should be preallocated for downloaded files, one of @code{none}, @code{fast} (or @code{sparse}) and @code{full}. Specifying @code{full} will minimize disk fragmentation at a cost to file-creation speed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24417 +#: guix-git/doc/guix.texi:24779 msgid "Defaults to @samp{fast}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24420 +#: guix-git/doc/guix.texi:24782 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean watch-dir-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24425 +#: guix-git/doc/guix.texi:24787 msgid "If @code{#t}, the directory specified by @code{watch-dir} will be watched for new @file{.torrent} files and the torrents they describe added automatically (and the original files removed, if @code{trash-original-torrent-files?} is @code{#t})." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24430 +#: guix-git/doc/guix.texi:24792 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string watch-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24433 +#: guix-git/doc/guix.texi:24795 msgid "The directory to be watched for @file{.torrent} files indicating new torrents to be added, when @code{watch-dir-enabled} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24438 +#: guix-git/doc/guix.texi:24800 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean trash-original-torrent-files?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24442 +#: guix-git/doc/guix.texi:24804 msgid "When @code{#t}, @file{.torrent} files will be deleted from the watch directory once their torrent has been added (see @code{watch-directory-enabled?})." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24447 +#: guix-git/doc/guix.texi:24809 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean speed-limit-down-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24450 +#: guix-git/doc/guix.texi:24812 msgid "When @code{#t}, the daemon's download speed will be limited to the rate specified by @code{speed-limit-down}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24455 +#: guix-git/doc/guix.texi:24817 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer speed-limit-down" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24457 +#: guix-git/doc/guix.texi:24819 msgid "The default global-maximum download speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24462 +#: guix-git/doc/guix.texi:24824 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean speed-limit-up-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24465 +#: guix-git/doc/guix.texi:24827 msgid "When @code{#t}, the daemon's upload speed will be limited to the rate specified by @code{speed-limit-up}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24470 +#: guix-git/doc/guix.texi:24832 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer speed-limit-up" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24472 +#: guix-git/doc/guix.texi:24834 msgid "The default global-maximum upload speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24477 +#: guix-git/doc/guix.texi:24839 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean alt-speed-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24483 +#: guix-git/doc/guix.texi:24845 msgid "When @code{#t}, the alternate speed limits @code{alt-speed-down} and @code{alt-speed-up} are used (in place of @code{speed-limit-down} and @code{speed-limit-up}, if they are enabled) to constrain the daemon's bandwidth usage. This can be scheduled to occur automatically at certain times during the week; see @code{alt-speed-time-enabled?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24488 +#: guix-git/doc/guix.texi:24850 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-down" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24490 +#: guix-git/doc/guix.texi:24852 msgid "The alternate global-maximum download speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24492 guix-git/doc/guix.texi:24499 -#: guix-git/doc/guix.texi:24671 guix-git/doc/guix.texi:32108 -#: guix-git/doc/guix.texi:32123 +#: guix-git/doc/guix.texi:24854 guix-git/doc/guix.texi:24861 +#: guix-git/doc/guix.texi:25033 guix-git/doc/guix.texi:32473 +#: guix-git/doc/guix.texi:32488 msgid "Defaults to @samp{50}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24495 +#: guix-git/doc/guix.texi:24857 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-up" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24497 +#: guix-git/doc/guix.texi:24859 msgid "The alternate global-maximum upload speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24502 +#: guix-git/doc/guix.texi:24864 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean alt-speed-time-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24507 +#: guix-git/doc/guix.texi:24869 msgid "When @code{#t}, the alternate speed limits @code{alt-speed-down} and @code{alt-speed-up} will be enabled automatically during the periods specified by @code{alt-speed-time-day}, @code{alt-speed-time-begin} and @code{alt-time-speed-end}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24512 +#: guix-git/doc/guix.texi:24874 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} day-list alt-speed-time-day" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24517 +#: guix-git/doc/guix.texi:24879 msgid "The days of the week on which the alternate-speed schedule should be used, specified either as a list of days (@code{sunday}, @code{monday}, and so on) or using one of the symbols @code{weekdays}, @code{weekends} or @code{all}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24519 +#: guix-git/doc/guix.texi:24881 msgid "Defaults to @samp{all}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24522 +#: guix-git/doc/guix.texi:24884 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-time-begin" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24525 +#: guix-git/doc/guix.texi:24887 msgid "The time of day at which to enable the alternate speed limits, expressed as a number of minutes since midnight." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24527 +#: guix-git/doc/guix.texi:24889 msgid "Defaults to @samp{540}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24530 +#: guix-git/doc/guix.texi:24892 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-time-end" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24533 +#: guix-git/doc/guix.texi:24895 msgid "The time of day at which to disable the alternate speed limits, expressed as a number of minutes since midnight." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24535 +#: guix-git/doc/guix.texi:24897 msgid "Defaults to @samp{1020}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24538 +#: guix-git/doc/guix.texi:24900 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string bind-address-ipv4" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24541 +#: guix-git/doc/guix.texi:24903 msgid "The IP address at which to listen for peer connections, or ``0.0.0.0'' to listen at all available IP addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24543 guix-git/doc/guix.texi:24846 -#: guix-git/doc/guix.texi:29969 +#: guix-git/doc/guix.texi:24905 guix-git/doc/guix.texi:25208 +#: guix-git/doc/guix.texi:30334 msgid "Defaults to @samp{\"0.0.0.0\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24546 +#: guix-git/doc/guix.texi:24908 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string bind-address-ipv6" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24549 +#: guix-git/doc/guix.texi:24911 msgid "The IPv6 address at which to listen for peer connections, or ``::'' to listen at all available IPv6 addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24551 +#: guix-git/doc/guix.texi:24913 msgid "Defaults to @samp{\"::\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24554 +#: guix-git/doc/guix.texi:24916 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean peer-port-random-on-start?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24560 +#: guix-git/doc/guix.texi:24922 msgid "If @code{#t}, when the daemon starts it will select a port at random on which to listen for peer connections, from the range specified (inclusively) by @code{peer-port-random-low} and @code{peer-port-random-high}. Otherwise, it listens on the port specified by @code{peer-port}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24565 +#: guix-git/doc/guix.texi:24927 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port-random-low" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24568 +#: guix-git/doc/guix.texi:24930 msgid "The lowest selectable port number when @code{peer-port-random-on-start?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24570 +#: guix-git/doc/guix.texi:24932 msgid "Defaults to @samp{49152}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24573 +#: guix-git/doc/guix.texi:24935 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port-random-high" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24576 +#: guix-git/doc/guix.texi:24938 msgid "The highest selectable port number when @code{peer-port-random-on-start} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24578 +#: guix-git/doc/guix.texi:24940 msgid "Defaults to @samp{65535}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24581 +#: guix-git/doc/guix.texi:24943 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24584 +#: guix-git/doc/guix.texi:24946 msgid "The port on which to listen for peer connections when @code{peer-port-random-on-start?} is @code{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24586 +#: guix-git/doc/guix.texi:24948 msgid "Defaults to @samp{51413}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24589 +#: guix-git/doc/guix.texi:24951 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean port-forwarding-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24593 +#: guix-git/doc/guix.texi:24955 msgid "If @code{#t}, the daemon will attempt to configure port-forwarding on an upstream gateway automatically using @acronym{UPnP} and @acronym{NAT-PMP}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24598 +#: guix-git/doc/guix.texi:24960 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} encryption-mode encryption" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24603 +#: guix-git/doc/guix.texi:24965 msgid "The encryption preference for peer connections, one of @code{prefer-unencrypted-connections}, @code{prefer-encrypted-connections} or @code{require-encrypted-connections}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24605 +#: guix-git/doc/guix.texi:24967 msgid "Defaults to @samp{prefer-encrypted-connections}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24608 +#: guix-git/doc/guix.texi:24970 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string peer-congestion-algorithm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24613 +#: guix-git/doc/guix.texi:24975 msgid "The TCP congestion-control algorithm to use for peer connections, specified using a string recognized by the operating system in calls to @code{setsockopt} (or set to @code{disabled}, in which case the operating-system default is used)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24622 +#: guix-git/doc/guix.texi:24984 msgid "Note that on GNU/Linux systems, the kernel must be configured to allow processes to use a congestion-control algorithm not in the default set; otherwise, it will deny these requests with ``Operation not permitted''. To see which algorithms are available on your system and which are currently permitted for use, look at the contents of the files @file{tcp_available_congestion_control} and @file{tcp_allowed_congestion_control} in the @file{/proc/sys/net/ipv4} directory." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24630 +#: guix-git/doc/guix.texi:24992 msgid "As an example, to have Transmission Daemon use @uref{http://www-ece.rice.edu/networks/TCP-LP/,the TCP Low Priority congestion-control algorithm}, you'll need to modify your kernel configuration to build in support for the algorithm, then update your operating-system configuration to allow its use by adding a @code{sysctl-service-type} service (or updating the existing one's configuration) with lines like the following:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24637 +#: guix-git/doc/guix.texi:24999 #, no-wrap msgid "" "(service sysctl-service-type\n" @@ -45285,529 +46011,529 @@ msgstr "" " (list cups-filters epson-inkjet-printer-escpr hplip-minimal))))\n" #. type: deftypevr -#: guix-git/doc/guix.texi:24640 +#: guix-git/doc/guix.texi:25002 msgid "The Transmission Daemon configuration can then be updated with" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24643 +#: guix-git/doc/guix.texi:25005 #, no-wrap msgid "(peer-congestion-algorithm \"lp\")\n" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24646 +#: guix-git/doc/guix.texi:25008 msgid "and the system reconfigured to have the changes take effect." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24651 +#: guix-git/doc/guix.texi:25013 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} tcp-type-of-service peer-socket-tos" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24655 +#: guix-git/doc/guix.texi:25017 msgid "The type of service to request in outgoing @acronym{TCP} packets, one of @code{default}, @code{low-cost}, @code{throughput}, @code{low-delay} and @code{reliability}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24657 +#: guix-git/doc/guix.texi:25019 msgid "Defaults to @samp{default}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24660 +#: guix-git/doc/guix.texi:25022 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-limit-global" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24662 +#: guix-git/doc/guix.texi:25024 msgid "The global limit on the number of connected peers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24664 +#: guix-git/doc/guix.texi:25026 msgid "Defaults to @samp{200}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24667 +#: guix-git/doc/guix.texi:25029 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-limit-per-torrent" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24669 +#: guix-git/doc/guix.texi:25031 msgid "The per-torrent limit on the number of connected peers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24674 +#: guix-git/doc/guix.texi:25036 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer upload-slots-per-torrent" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24677 +#: guix-git/doc/guix.texi:25039 msgid "The maximum number of peers to which the daemon will upload data simultaneously for each torrent." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24679 +#: guix-git/doc/guix.texi:25041 msgid "Defaults to @samp{14}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24682 +#: guix-git/doc/guix.texi:25044 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-id-ttl-hours" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24685 +#: guix-git/doc/guix.texi:25047 msgid "The maximum lifespan, in hours, of the peer ID associated with each public torrent before it is regenerated." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24687 +#: guix-git/doc/guix.texi:25049 msgid "Defaults to @samp{6}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24690 +#: guix-git/doc/guix.texi:25052 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean blocklist-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24693 +#: guix-git/doc/guix.texi:25055 msgid "When @code{#t}, the daemon will ignore peers mentioned in the blocklist it has most recently downloaded from @code{blocklist-url}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24698 +#: guix-git/doc/guix.texi:25060 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string blocklist-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24702 +#: guix-git/doc/guix.texi:25064 msgid "The URL of a peer blocklist (in @acronym{P2P}-plaintext or eMule @file{.dat} format) to be periodically downloaded and applied when @code{blocklist-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24707 +#: guix-git/doc/guix.texi:25069 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean download-queue-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24710 +#: guix-git/doc/guix.texi:25072 msgid "If @code{#t}, the daemon will be limited to downloading at most @code{download-queue-size} non-stalled torrents simultaneously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24715 +#: guix-git/doc/guix.texi:25077 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer download-queue-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24719 +#: guix-git/doc/guix.texi:25081 msgid "The size of the daemon's download queue, which limits the number of non-stalled torrents it will download at any one time when @code{download-queue-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24724 +#: guix-git/doc/guix.texi:25086 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean seed-queue-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24727 +#: guix-git/doc/guix.texi:25089 msgid "If @code{#t}, the daemon will be limited to seeding at most @code{seed-queue-size} non-stalled torrents simultaneously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24732 +#: guix-git/doc/guix.texi:25094 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer seed-queue-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24736 +#: guix-git/doc/guix.texi:25098 msgid "The size of the daemon's seed queue, which limits the number of non-stalled torrents it will seed at any one time when @code{seed-queue-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24741 +#: guix-git/doc/guix.texi:25103 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean queue-stalled-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24746 +#: guix-git/doc/guix.texi:25108 msgid "When @code{#t}, the daemon will consider torrents for which it has not shared data in the past @code{queue-stalled-minutes} minutes to be stalled and not count them against its @code{download-queue-size} and @code{seed-queue-size} limits." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24751 +#: guix-git/doc/guix.texi:25113 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer queue-stalled-minutes" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24755 +#: guix-git/doc/guix.texi:25117 msgid "The maximum period, in minutes, a torrent may be idle before it is considered to be stalled, when @code{queue-stalled-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24760 +#: guix-git/doc/guix.texi:25122 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean ratio-limit-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24763 +#: guix-git/doc/guix.texi:25125 msgid "When @code{#t}, a torrent being seeded will automatically be paused once it reaches the ratio specified by @code{ratio-limit}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24768 +#: guix-git/doc/guix.texi:25130 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-rational ratio-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24771 +#: guix-git/doc/guix.texi:25133 msgid "The ratio at which a torrent being seeded will be paused, when @code{ratio-limit-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24773 +#: guix-git/doc/guix.texi:25135 msgid "Defaults to @samp{2.0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24776 +#: guix-git/doc/guix.texi:25138 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean idle-seeding-limit-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24779 +#: guix-git/doc/guix.texi:25141 msgid "When @code{#t}, a torrent being seeded will automatically be paused once it has been idle for @code{idle-seeding-limit} minutes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24784 +#: guix-git/doc/guix.texi:25146 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer idle-seeding-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24788 +#: guix-git/doc/guix.texi:25150 msgid "The maximum period, in minutes, a torrent being seeded may be idle before it is paused, when @code{idle-seeding-limit-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24793 +#: guix-git/doc/guix.texi:25155 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean dht-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24797 +#: guix-git/doc/guix.texi:25159 msgid "Enable @uref{http://bittorrent.org/beps/bep_0005.html,the distributed hash table (@acronym{DHT}) protocol}, which supports the use of trackerless torrents." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24802 +#: guix-git/doc/guix.texi:25164 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean lpd-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24807 +#: guix-git/doc/guix.texi:25169 msgid "Enable @uref{https://en.wikipedia.org/wiki/Local_Peer_Discovery,local peer discovery} (@acronym{LPD}), which allows the discovery of peers on the local network and may reduce the amount of data sent over the public Internet." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24812 +#: guix-git/doc/guix.texi:25174 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean pex-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24816 +#: guix-git/doc/guix.texi:25178 msgid "Enable @uref{https://en.wikipedia.org/wiki/Peer_exchange,peer exchange} (@acronym{PEX}), which reduces the daemon's reliance on external trackers and may improve its performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24821 +#: guix-git/doc/guix.texi:25183 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean utp-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24826 +#: guix-git/doc/guix.texi:25188 msgid "Enable @uref{http://bittorrent.org/beps/bep_0029.html,the micro transport protocol} (@acronym{uTP}), which aims to reduce the impact of BitTorrent traffic on other users of the local network while maintaining full utilization of the available bandwidth." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24831 +#: guix-git/doc/guix.texi:25193 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24836 +#: guix-git/doc/guix.texi:25198 msgid "If @code{#t}, enable the remote procedure call (@acronym{RPC}) interface, which allows remote control of the daemon via its Web interface, the @command{transmission-remote} command-line client, and similar tools." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24841 +#: guix-git/doc/guix.texi:25203 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string rpc-bind-address" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24844 +#: guix-git/doc/guix.texi:25206 msgid "The IP address at which to listen for @acronym{RPC} connections, or ``0.0.0.0'' to listen at all available IP addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24849 +#: guix-git/doc/guix.texi:25211 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number rpc-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24851 +#: guix-git/doc/guix.texi:25213 msgid "The port on which to listen for @acronym{RPC} connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24853 +#: guix-git/doc/guix.texi:25215 msgid "Defaults to @samp{9091}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24856 +#: guix-git/doc/guix.texi:25218 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string rpc-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24858 +#: guix-git/doc/guix.texi:25220 msgid "The path prefix to use in the @acronym{RPC}-endpoint @acronym{URL}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24860 +#: guix-git/doc/guix.texi:25222 msgid "Defaults to @samp{\"/transmission/\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24863 +#: guix-git/doc/guix.texi:25225 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-authentication-required?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24868 +#: guix-git/doc/guix.texi:25230 msgid "When @code{#t}, clients must authenticate (see @code{rpc-username} and @code{rpc-password}) when using the @acronym{RPC} interface. Note this has the side effect of disabling host-name whitelisting (see @code{rpc-host-whitelist-enabled?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24873 +#: guix-git/doc/guix.texi:25235 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string rpc-username" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24876 +#: guix-git/doc/guix.texi:25238 msgid "The username required by clients to access the @acronym{RPC} interface when @code{rpc-authentication-required?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24881 +#: guix-git/doc/guix.texi:25243 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-transmission-password-hash rpc-password" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24887 +#: guix-git/doc/guix.texi:25249 msgid "The password required by clients to access the @acronym{RPC} interface when @code{rpc-authentication-required?} is @code{#t}. This must be specified using a password hash in the format recognized by Transmission clients, either copied from an existing @file{settings.json} file or generated using the @code{transmission-password-hash} procedure." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24892 +#: guix-git/doc/guix.texi:25254 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-whitelist-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24895 +#: guix-git/doc/guix.texi:25257 msgid "When @code{#t}, @acronym{RPC} requests will be accepted only when they originate from an address specified in @code{rpc-whitelist}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24900 +#: guix-git/doc/guix.texi:25262 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string-list rpc-whitelist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24904 +#: guix-git/doc/guix.texi:25266 msgid "The list of IP and IPv6 addresses from which @acronym{RPC} requests will be accepted when @code{rpc-whitelist-enabled?} is @code{#t}. Wildcards may be specified using @samp{*}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24906 +#: guix-git/doc/guix.texi:25268 msgid "Defaults to @samp{(\"127.0.0.1\" \"::1\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24909 +#: guix-git/doc/guix.texi:25271 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-host-whitelist-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24914 +#: guix-git/doc/guix.texi:25276 msgid "When @code{#t}, @acronym{RPC} requests will be accepted only when they are addressed to a host named in @code{rpc-host-whitelist}. Note that requests to ``localhost'' or ``localhost.'', or to a numeric address, are always accepted regardless of these settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24917 +#: guix-git/doc/guix.texi:25279 msgid "Note also this functionality is disabled when @code{rpc-authentication-required?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24922 +#: guix-git/doc/guix.texi:25284 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string-list rpc-host-whitelist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24925 +#: guix-git/doc/guix.texi:25287 msgid "The list of host names recognized by the @acronym{RPC} server when @code{rpc-host-whitelist-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24930 +#: guix-git/doc/guix.texi:25292 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} message-level message-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24934 +#: guix-git/doc/guix.texi:25296 msgid "The minimum severity level of messages to be logged (to @file{/var/log/transmission.log}) by the daemon, one of @code{none} (no logging), @code{error}, @code{info} and @code{debug}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24939 +#: guix-git/doc/guix.texi:25301 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean start-added-torrents?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24942 +#: guix-git/doc/guix.texi:25304 msgid "When @code{#t}, torrents are started as soon as they are added; otherwise, they are added in ``paused'' state." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24947 +#: guix-git/doc/guix.texi:25309 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean script-torrent-done-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24951 +#: guix-git/doc/guix.texi:25313 msgid "When @code{#t}, the script specified by @code{script-torrent-done-filename} will be invoked each time a torrent completes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24956 +#: guix-git/doc/guix.texi:25318 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-file-object script-torrent-done-filename" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24960 +#: guix-git/doc/guix.texi:25322 msgid "A file name or file-like object specifying a script to run each time a torrent completes, when @code{script-torrent-done-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24965 +#: guix-git/doc/guix.texi:25327 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean scrape-paused-torrents-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24968 +#: guix-git/doc/guix.texi:25330 msgid "When @code{#t}, the daemon will scrape trackers for a torrent even when the torrent is paused." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24973 +#: guix-git/doc/guix.texi:25335 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer cache-size-mb" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24977 +#: guix-git/doc/guix.texi:25339 msgid "The amount of memory, in megabytes, to allocate for the daemon's in-memory cache. A larger value may increase performance by reducing the frequency of disk I/O." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24979 +#: guix-git/doc/guix.texi:25341 msgid "Defaults to @samp{4}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24982 +#: guix-git/doc/guix.texi:25344 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean prefetch-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24986 +#: guix-git/doc/guix.texi:25348 msgid "When @code{#t}, the daemon will try to improve I/O performance by hinting to the operating system which data is likely to be read next from disk to satisfy requests from peers." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:24999 +#: guix-git/doc/guix.texi:25361 #, no-wrap msgid "Tailon Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25003 +#: guix-git/doc/guix.texi:25365 msgid "@uref{https://tailon.readthedocs.io/, Tailon} is a web application for viewing and searching log files." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25006 +#: guix-git/doc/guix.texi:25368 msgid "The following example will configure the service with default values. By default, Tailon can be accessed on port 8080 (@code{http://localhost:8080})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25009 +#: guix-git/doc/guix.texi:25371 #, no-wrap msgid "(service tailon-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25013 +#: guix-git/doc/guix.texi:25375 msgid "The following example customises more of the Tailon configuration, adding @command{sed} to the list of allowed commands." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25020 +#: guix-git/doc/guix.texi:25382 #, no-wrap msgid "" "(service tailon-service-type\n" @@ -45818,34 +46544,34 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25023 +#: guix-git/doc/guix.texi:25385 #, no-wrap msgid "{Data Type} tailon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25026 +#: guix-git/doc/guix.texi:25388 msgid "Data type representing the configuration of Tailon. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25028 +#: guix-git/doc/guix.texi:25390 #, no-wrap msgid "@code{config-file} (default: @code{(tailon-configuration-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25032 +#: guix-git/doc/guix.texi:25394 msgid "The configuration file to use for Tailon. This can be set to a @dfn{tailon-configuration-file} record value, or any gexp (@pxref{G-Expressions})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25035 +#: guix-git/doc/guix.texi:25397 msgid "For example, to instead use a local file, the @code{local-file} function can be used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25040 +#: guix-git/doc/guix.texi:25402 #, no-wrap msgid "" "(service tailon-service-type\n" @@ -45854,144 +46580,144 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25042 +#: guix-git/doc/guix.texi:25404 #, no-wrap msgid "@code{package} (default: @code{tailon})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25044 +#: guix-git/doc/guix.texi:25406 msgid "The tailon package to use." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25048 +#: guix-git/doc/guix.texi:25410 #, no-wrap msgid "{Data Type} tailon-configuration-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25051 +#: guix-git/doc/guix.texi:25413 msgid "Data type representing the configuration options for Tailon. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25053 +#: guix-git/doc/guix.texi:25415 #, no-wrap msgid "@code{files} (default: @code{(list \"/var/log\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25058 +#: guix-git/doc/guix.texi:25420 msgid "List of files to display. The list can include strings for a single file or directory, or a list, where the first item is the name of a subsection, and the remaining items are the files or directories in that subsection." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25059 +#: guix-git/doc/guix.texi:25421 #, no-wrap msgid "@code{bind} (default: @code{\"localhost:8080\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25061 +#: guix-git/doc/guix.texi:25423 msgid "Address and port to which Tailon should bind on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25062 +#: guix-git/doc/guix.texi:25424 #, no-wrap msgid "@code{relative-root} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25064 +#: guix-git/doc/guix.texi:25426 msgid "URL path to use for Tailon, set to @code{#f} to not use a path." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25065 +#: guix-git/doc/guix.texi:25427 #, no-wrap msgid "@code{allow-transfers?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25067 +#: guix-git/doc/guix.texi:25429 msgid "Allow downloading the log files in the web interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25068 +#: guix-git/doc/guix.texi:25430 #, no-wrap msgid "@code{follow-names?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25070 +#: guix-git/doc/guix.texi:25432 msgid "Allow tailing of not-yet existent files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25071 +#: guix-git/doc/guix.texi:25433 #, no-wrap msgid "@code{tail-lines} (default: @code{200})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25073 +#: guix-git/doc/guix.texi:25435 msgid "Number of lines to read initially from each file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25074 +#: guix-git/doc/guix.texi:25436 #, no-wrap msgid "@code{allowed-commands} (default: @code{(list \"tail\" \"grep\" \"awk\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25076 +#: guix-git/doc/guix.texi:25438 msgid "Commands to allow running. By default, @code{sed} is disabled." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25079 +#: guix-git/doc/guix.texi:25441 msgid "Set @code{debug?} to @code{#t} to show debug messages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25080 +#: guix-git/doc/guix.texi:25442 #, no-wrap msgid "@code{wrap-lines} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25084 +#: guix-git/doc/guix.texi:25446 msgid "Initial line wrapping state in the web interface. Set to @code{#t} to initially wrap lines (the default), or to @code{#f} to initially not wrap lines." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25085 +#: guix-git/doc/guix.texi:25447 #, no-wrap msgid "@code{http-auth} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25089 +#: guix-git/doc/guix.texi:25451 msgid "HTTP authentication type to use. Set to @code{#f} to disable authentication (the default). Supported values are @code{\"digest\"} or @code{\"basic\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25090 +#: guix-git/doc/guix.texi:25452 #, no-wrap msgid "@code{users} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25095 +#: guix-git/doc/guix.texi:25457 msgid "If HTTP authentication is enabled (see @code{http-auth}), access will be restricted to the credentials provided here. To configure users, use a list of pairs, where the first element of the pair is the username, and the 2nd element of the pair is the password." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25101 +#: guix-git/doc/guix.texi:25463 #, no-wrap msgid "" "(tailon-configuration-file\n" @@ -46001,35 +46727,35 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25107 +#: guix-git/doc/guix.texi:25469 #, no-wrap msgid "Darkstat Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25108 +#: guix-git/doc/guix.texi:25470 #, no-wrap msgid "darkstat" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25111 +#: guix-git/doc/guix.texi:25473 msgid "Darkstat is a packet sniffer that captures network traffic, calculates statistics about usage, and serves reports over HTTP." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25112 +#: guix-git/doc/guix.texi:25474 #, no-wrap msgid "{Scheme Variable} darkstat-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25117 +#: guix-git/doc/guix.texi:25479 msgid "This is the service type for the @uref{https://unix4lyfe.org/darkstat/, darkstat} service, its value must be a @code{darkstat-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25122 +#: guix-git/doc/guix.texi:25484 #, no-wrap msgid "" "(service darkstat-service-type\n" @@ -46038,715 +46764,738 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25125 +#: guix-git/doc/guix.texi:25487 #, no-wrap msgid "{Data Type} darkstat-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25127 +#: guix-git/doc/guix.texi:25489 msgid "Data type representing the configuration of @command{darkstat}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25129 +#: guix-git/doc/guix.texi:25491 #, no-wrap msgid "@code{package} (default: @code{darkstat})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25131 +#: guix-git/doc/guix.texi:25493 msgid "The darkstat package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25132 +#: guix-git/doc/guix.texi:25494 #, no-wrap msgid "interface" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25134 +#: guix-git/doc/guix.texi:25496 msgid "Capture traffic on the specified network interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25135 +#: guix-git/doc/guix.texi:25497 #, no-wrap msgid "@code{port} (default: @code{\"667\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25137 +#: guix-git/doc/guix.texi:25499 msgid "Bind the web interface to the specified port." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25140 guix-git/doc/guix.texi:25175 +#: guix-git/doc/guix.texi:25502 guix-git/doc/guix.texi:25537 msgid "Bind the web interface to the specified address." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25141 +#: guix-git/doc/guix.texi:25503 #, no-wrap msgid "@code{base} (default: @code{\"/\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25144 +#: guix-git/doc/guix.texi:25506 msgid "Specify the path of the base URL@. This can be useful if @command{darkstat} is accessed via a reverse proxy." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25148 +#: guix-git/doc/guix.texi:25510 #, no-wrap msgid "Prometheus Node Exporter Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25150 +#: guix-git/doc/guix.texi:25512 #, no-wrap msgid "prometheus-node-exporter" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25155 +#: guix-git/doc/guix.texi:25517 msgid "The Prometheus ``node exporter'' makes hardware and operating system statistics provided by the Linux kernel available for the Prometheus monitoring system. This service should be deployed on all physical nodes and virtual machines, where monitoring these statistics is desirable." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25156 +#: guix-git/doc/guix.texi:25518 #, no-wrap msgid "{Scheme variable} prometheus-node-exporter-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25160 +#: guix-git/doc/guix.texi:25522 msgid "This is the service type for the @uref{https://github.com/prometheus/node_exporter/, prometheus-node-exporter} service, its value must be a @code{prometheus-node-exporter-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25163 +#: guix-git/doc/guix.texi:25525 #, no-wrap msgid "(service prometheus-node-exporter-service-type)\n" msgstr "(service openssh-service-type)\n" #. type: deftp -#: guix-git/doc/guix.texi:25166 +#: guix-git/doc/guix.texi:25528 #, no-wrap msgid "{Data Type} prometheus-node-exporter-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25168 +#: guix-git/doc/guix.texi:25530 msgid "Data type representing the configuration of @command{node_exporter}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25170 +#: guix-git/doc/guix.texi:25532 #, no-wrap msgid "@code{package} (default: @code{go-github-com-prometheus-node-exporter})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25172 +#: guix-git/doc/guix.texi:25534 msgid "The prometheus-node-exporter package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25173 +#: guix-git/doc/guix.texi:25535 #, no-wrap msgid "@code{web-listen-address} (default: @code{\":9100\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25176 +#: guix-git/doc/guix.texi:25538 #, no-wrap msgid "@code{textfile-directory} (default: @code{\"/var/lib/prometheus/node-exporter\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:25180 +#: guix-git/doc/guix.texi:25542 msgid "This directory can be used to export metrics specific to this machine. Files containing metrics in the text format, with the filename ending in @code{.prom} should be placed in this directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25183 +#: guix-git/doc/guix.texi:25545 msgid "Extra options to pass to the Prometheus node exporter." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25187 +#: guix-git/doc/guix.texi:25549 #, no-wrap msgid "Zabbix server" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25188 +#: guix-git/doc/guix.texi:25550 #, no-wrap msgid "zabbix zabbix-server" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25191 +#: guix-git/doc/guix.texi:25553 msgid "Zabbix provides monitoring metrics, among others network utilization, CPU load and disk space consumption:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25193 +#: guix-git/doc/guix.texi:25555 #, no-wrap msgid "High performance, high capacity (able to monitor hundreds of thousands of devices)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25194 +#: guix-git/doc/guix.texi:25556 #, no-wrap msgid "Auto-discovery of servers and network devices and interfaces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25195 +#: guix-git/doc/guix.texi:25557 #, no-wrap msgid "Low-level discovery, allows to automatically start monitoring new items, file systems or network interfaces among others." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25196 +#: guix-git/doc/guix.texi:25558 #, no-wrap msgid "Distributed monitoring with centralized web administration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25197 +#: guix-git/doc/guix.texi:25559 #, no-wrap msgid "Native high performance agents." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25198 +#: guix-git/doc/guix.texi:25560 #, no-wrap msgid "SLA, and ITIL KPI metrics on reporting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25199 +#: guix-git/doc/guix.texi:25561 #, no-wrap msgid "High-level (business) view of monitored resources through user-defined visual console screens and dashboards." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25200 +#: guix-git/doc/guix.texi:25562 #, no-wrap msgid "Remote command execution through Zabbix proxies." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25206 +#: guix-git/doc/guix.texi:25568 msgid "Available @code{zabbix-server-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25207 +#: guix-git/doc/guix.texi:25569 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} package zabbix-server" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25209 +#: guix-git/doc/guix.texi:25571 msgid "The zabbix-server package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25212 +#: guix-git/doc/guix.texi:25574 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25214 +#: guix-git/doc/guix.texi:25576 msgid "User who will run the Zabbix server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25216 guix-git/doc/guix.texi:25223 -#: guix-git/doc/guix.texi:25237 guix-git/doc/guix.texi:25244 -#: guix-git/doc/guix.texi:25345 guix-git/doc/guix.texi:25352 -#: guix-git/doc/guix.texi:25463 guix-git/doc/guix.texi:25470 +#: guix-git/doc/guix.texi:25578 guix-git/doc/guix.texi:25585 +#: guix-git/doc/guix.texi:25599 guix-git/doc/guix.texi:25606 +#: guix-git/doc/guix.texi:25707 guix-git/doc/guix.texi:25714 msgid "Defaults to @samp{\"zabbix\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25219 +#: guix-git/doc/guix.texi:25581 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} group group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25221 +#: guix-git/doc/guix.texi:25583 msgid "Group who will run the Zabbix server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25226 +#: guix-git/doc/guix.texi:25588 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-host" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25228 guix-git/doc/guix.texi:25447 +#. type: table +#: guix-git/doc/guix.texi:25590 guix-git/doc/guix.texi:25813 msgid "Database host name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25230 +#: guix-git/doc/guix.texi:25592 msgid "Defaults to @samp{\"127.0.0.1\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25233 +#: guix-git/doc/guix.texi:25595 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-name" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25235 guix-git/doc/guix.texi:25461 +#. type: table +#: guix-git/doc/guix.texi:25597 guix-git/doc/guix.texi:25819 msgid "Database name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25240 +#: guix-git/doc/guix.texi:25602 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-user" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25242 guix-git/doc/guix.texi:25468 +#. type: table +#: guix-git/doc/guix.texi:25604 guix-git/doc/guix.texi:25822 msgid "Database user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25247 +#: guix-git/doc/guix.texi:25609 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-password" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25250 +#: guix-git/doc/guix.texi:25612 msgid "Database password. Please, use @code{include-files} with @code{DBPassword=SECRET} inside a specified file instead." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25255 +#: guix-git/doc/guix.texi:25617 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} number db-port" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25257 guix-git/doc/guix.texi:25454 +#. type: table +#: guix-git/doc/guix.texi:25619 guix-git/doc/guix.texi:25816 msgid "Database port." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25259 guix-git/doc/guix.texi:25456 +#: guix-git/doc/guix.texi:25621 msgid "Defaults to @samp{5432}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25262 +#: guix-git/doc/guix.texi:25624 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string log-type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25264 guix-git/doc/guix.texi:25365 +#: guix-git/doc/guix.texi:25626 guix-git/doc/guix.texi:25727 msgid "Specifies where log messages are written to:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25268 guix-git/doc/guix.texi:25369 +#: guix-git/doc/guix.texi:25630 guix-git/doc/guix.texi:25731 msgid "@code{system} - syslog." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25271 guix-git/doc/guix.texi:25372 +#: guix-git/doc/guix.texi:25633 guix-git/doc/guix.texi:25734 msgid "@code{file} - file specified with @code{log-file} parameter." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25274 guix-git/doc/guix.texi:25375 +#: guix-git/doc/guix.texi:25636 guix-git/doc/guix.texi:25737 msgid "@code{console} - standard output." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25281 +#: guix-git/doc/guix.texi:25643 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string log-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25283 guix-git/doc/guix.texi:25384 +#: guix-git/doc/guix.texi:25645 guix-git/doc/guix.texi:25746 msgid "Log file name for @code{log-type} @code{file} parameter." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25285 +#: guix-git/doc/guix.texi:25647 msgid "Defaults to @samp{\"/var/log/zabbix/server.log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25288 +#: guix-git/doc/guix.texi:25650 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25290 guix-git/doc/guix.texi:25391 +#: guix-git/doc/guix.texi:25652 guix-git/doc/guix.texi:25753 msgid "Name of PID file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25292 +#: guix-git/doc/guix.texi:25654 msgid "Defaults to @samp{\"/var/run/zabbix/zabbix_server.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25295 +#: guix-git/doc/guix.texi:25657 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string ssl-ca-location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25298 +#: guix-git/doc/guix.texi:25660 msgid "The location of certificate authority (CA) files for SSL server certificate verification." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25300 +#: guix-git/doc/guix.texi:25662 msgid "Defaults to @samp{\"/etc/ssl/certs/ca-certificates.crt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25303 +#: guix-git/doc/guix.texi:25665 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string ssl-cert-location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25305 +#: guix-git/doc/guix.texi:25667 msgid "Location of SSL client certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25307 +#: guix-git/doc/guix.texi:25669 msgid "Defaults to @samp{\"/etc/ssl/certs\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25310 +#: guix-git/doc/guix.texi:25672 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25312 guix-git/doc/guix.texi:25416 +#: guix-git/doc/guix.texi:25674 guix-git/doc/guix.texi:25778 msgid "Extra options will be appended to Zabbix server configuration file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25317 +#: guix-git/doc/guix.texi:25679 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} include-files include-files" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25320 guix-git/doc/guix.texi:25424 +#: guix-git/doc/guix.texi:25682 guix-git/doc/guix.texi:25786 msgid "You may include individual files or all files in a directory in the configuration file." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25327 +#: guix-git/doc/guix.texi:25689 #, no-wrap msgid "Zabbix agent" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25328 +#: guix-git/doc/guix.texi:25690 #, no-wrap msgid "zabbix zabbix-agent" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25331 +#: guix-git/doc/guix.texi:25693 msgid "Zabbix agent gathers information for Zabbix server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25335 +#: guix-git/doc/guix.texi:25697 msgid "Available @code{zabbix-agent-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25336 +#: guix-git/doc/guix.texi:25698 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} package zabbix-agent" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25338 +#: guix-git/doc/guix.texi:25700 msgid "The zabbix-agent package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25341 +#: guix-git/doc/guix.texi:25703 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25343 +#: guix-git/doc/guix.texi:25705 msgid "User who will run the Zabbix agent." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25348 +#: guix-git/doc/guix.texi:25710 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} group group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25350 +#: guix-git/doc/guix.texi:25712 msgid "Group who will run the Zabbix agent." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25355 +#: guix-git/doc/guix.texi:25717 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string hostname" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25358 +#: guix-git/doc/guix.texi:25720 msgid "Unique, case sensitive hostname which is required for active checks and must match hostname as configured on the server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25363 +#: guix-git/doc/guix.texi:25725 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string log-type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25382 +#: guix-git/doc/guix.texi:25744 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string log-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25386 +#: guix-git/doc/guix.texi:25748 msgid "Defaults to @samp{\"/var/log/zabbix/agent.log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25389 +#: guix-git/doc/guix.texi:25751 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25393 +#: guix-git/doc/guix.texi:25755 msgid "Defaults to @samp{\"/var/run/zabbix/zabbix_agent.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25396 +#: guix-git/doc/guix.texi:25758 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} list server" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25400 +#: guix-git/doc/guix.texi:25762 msgid "List of IP addresses, optionally in CIDR notation, or hostnames of Zabbix servers and Zabbix proxies. Incoming connections will be accepted only from the hosts listed here." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25402 guix-git/doc/guix.texi:25411 +#: guix-git/doc/guix.texi:25764 guix-git/doc/guix.texi:25773 msgid "Defaults to @samp{(\"127.0.0.1\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25405 +#: guix-git/doc/guix.texi:25767 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} list server-active" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25409 +#: guix-git/doc/guix.texi:25771 msgid "List of IP:port (or hostname:port) pairs of Zabbix servers and Zabbix proxies for active checks. If port is not specified, default port is used. If this parameter is not specified, active checks are disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25414 +#: guix-git/doc/guix.texi:25776 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25421 +#: guix-git/doc/guix.texi:25783 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} include-files include-files" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25431 +#: guix-git/doc/guix.texi:25793 #, no-wrap msgid "Zabbix front-end" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25432 +#: guix-git/doc/guix.texi:25794 #, no-wrap msgid "zabbix zabbix-front-end" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25435 +#: guix-git/doc/guix.texi:25797 msgid "This service provides a WEB interface to Zabbix server." msgstr "" -#. type: Plain text -#: guix-git/doc/guix.texi:25439 +#. type: deftp +#: guix-git/doc/guix.texi:25800 +#, fuzzy, no-wrap +#| msgid "{Data Type} auditd-configuration" +msgid "{Data Type} zabbix-front-end-configuration" +msgstr "{Тип данных} build-machine" + +#. type: deftp +#: guix-git/doc/guix.texi:25802 msgid "Available @code{zabbix-front-end-configuration} fields are:" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25440 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} nginx-server-configuration-list nginx" -msgstr "" +#. type: item +#: guix-git/doc/guix.texi:25804 +#, fuzzy, no-wrap +#| msgid "@code{name-service-switch} (default: @code{%default-nss})" +msgid "@code{zabbix-server} (default: @code{zabbix-server}) (type: file-like)" +msgstr "@code{port} (default: @code{22})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25442 guix-git/doc/guix.texi:31735 -msgid "NGINX configuration." -msgstr "" +#. type: table +#: guix-git/doc/guix.texi:25806 +#, fuzzy +#| msgid "The package to use." +msgid "The Zabbix server package to use." +msgstr "Пакет для использования." -#. type: deftypevr -#: guix-git/doc/guix.texi:25445 +#. type: item +#: guix-git/doc/guix.texi:25807 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-host" +msgid "@code{fastcgi-params} (type: list)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25452 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} number db-port" +#. type: table +#: guix-git/doc/guix.texi:25810 +msgid "List of FastCGI parameter pairs that will be included in the NGINX configuration." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25459 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-name" -msgstr "" +#. type: item +#: guix-git/doc/guix.texi:25811 +#, fuzzy, no-wrap +#| msgid "@code{packages} (default: @code{%base-packages})" +msgid "@code{db-host} (default: @code{\\\"localhost\\\"}) (type: string)" +msgstr "@code{speed} (default: @code{1.0})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25466 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-user" -msgstr "" +#. type: item +#: guix-git/doc/guix.texi:25814 +#, fuzzy, no-wrap +#| msgid "@code{port} (default: @code{5432})" +msgid "@code{db-port} (default: @code{5432}) (type: number)" +msgstr "@code{port} (default: @code{22})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25473 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-password" -msgstr "" +#. type: item +#: guix-git/doc/guix.texi:25817 +#, fuzzy, no-wrap +#| msgid "@code{name-service-switch} (default: @code{%default-nss})" +msgid "@code{db-name} (default: @code{\\\"zabbix\\\"}) (type: string)" +msgstr "@code{port} (default: @code{22})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25475 +#. type: item +#: guix-git/doc/guix.texi:25820 +#, fuzzy, no-wrap +#| msgid "@code{packages} (default: @code{%base-packages})" +msgid "@code{db-user} (default: @code{\\\"zabbix\\\"}) (type: string)" +msgstr "@code{speed} (default: @code{1.0})" + +#. type: item +#: guix-git/doc/guix.texi:25823 +#, fuzzy, no-wrap +#| msgid "@code{password} (default: @code{\"\"})" +msgid "@code{db-password} (default: @code{\\\"\\\"}) (type: string)" +msgstr "@code{port} (default: @code{22})" + +#. type: table +#: guix-git/doc/guix.texi:25825 msgid "Database password. Please, use @code{db-secret-file} instead." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25480 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-secret-file" -msgstr "" +#. type: item +#: guix-git/doc/guix.texi:25826 +#, fuzzy, no-wrap +#| msgid "@code{packages} (default: @code{%base-packages})" +msgid "@code{db-secret-file} (default: @code{\\\"\\\"}) (type: string)" +msgstr "@code{speed} (default: @code{1.0})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25485 -msgid "Secret file containing the credentials for the Zabbix front-end. The value must be a local file name, not a G-expression. You are expected to create this file manually. Its contents will be copied into @file{zabbix.conf.php} as the value of @code{$DB['PASSWORD']}." +#. type: table +#: guix-git/doc/guix.texi:25830 +msgid "Secret file which will be appended to @file{zabbix.conf.php} file. This file contains credentials for use by Zabbix front-end. You are expected to create it manually." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25490 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string zabbix-host" -msgstr "" +#. type: item +#: guix-git/doc/guix.texi:25831 +#, fuzzy, no-wrap +#| msgid "@code{extra-environment} (default: @code{#~'()})" +msgid "@code{zabbix-host} (default: @code{\\\"localhost\\\"}) (type: string)" +msgstr "@code{features} (default: @code{'()})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25492 +#. type: table +#: guix-git/doc/guix.texi:25833 msgid "Zabbix server hostname." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25497 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} number zabbix-port" -msgstr "" +#. type: item +#: guix-git/doc/guix.texi:25834 +#, fuzzy, no-wrap +#| msgid "@code{debug?} (default @code{#f})" +msgid "@code{zabbix-port} (default: @code{10051}) (type: number)" +msgstr "@code{features} (default: @code{'()})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25499 +#. type: table +#: guix-git/doc/guix.texi:25836 msgid "Zabbix server port." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25501 -msgid "Defaults to @samp{10051}." -msgstr "" - #. type: cindex -#: guix-git/doc/guix.texi:25509 +#: guix-git/doc/guix.texi:25846 #, no-wrap msgid "Kerberos" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25513 +#: guix-git/doc/guix.texi:25850 msgid "The @code{(gnu services kerberos)} module provides services relating to the authentication protocol @dfn{Kerberos}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25514 +#: guix-git/doc/guix.texi:25851 #, no-wrap msgid "Krb5 Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25521 +#: guix-git/doc/guix.texi:25858 msgid "Programs using a Kerberos client library normally expect a configuration file in @file{/etc/krb5.conf}. This service generates such a file from a definition provided in the operating system declaration. It does not cause any daemon to be started." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25525 +#: guix-git/doc/guix.texi:25862 msgid "No ``keytab'' files are provided by this service---you must explicitly create them. This service is known to work with the MIT client library, @code{mit-krb5}. Other implementations have not been tested." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25526 +#: guix-git/doc/guix.texi:25863 #, no-wrap msgid "{Scheme Variable} krb5-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25528 +#: guix-git/doc/guix.texi:25865 msgid "A service type for Kerberos 5 clients." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25532 +#: guix-git/doc/guix.texi:25869 msgid "Here is an example of its use:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25546 +#: guix-git/doc/guix.texi:25883 #, no-wrap msgid "" "(service krb5-service-type\n" @@ -46765,206 +47514,206 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25550 +#: guix-git/doc/guix.texi:25887 msgid "This example provides a Kerberos@tie{}5 client configuration which:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25551 +#: guix-git/doc/guix.texi:25888 #, no-wrap msgid "Recognizes two realms, @i{viz:} ``EXAMPLE.COM'' and ``ARGRX.EDU'', both" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25553 +#: guix-git/doc/guix.texi:25890 msgid "of which have distinct administration servers and key distribution centers;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25553 +#: guix-git/doc/guix.texi:25890 #, no-wrap msgid "Will default to the realm ``EXAMPLE.COM'' if the realm is not explicitly" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25555 +#: guix-git/doc/guix.texi:25892 msgid "specified by clients;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25555 +#: guix-git/doc/guix.texi:25892 #, no-wrap msgid "Accepts services which only support encryption types known to be weak." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25563 +#: guix-git/doc/guix.texi:25900 msgid "The @code{krb5-realm} and @code{krb5-configuration} types have many fields. Only the most commonly used ones are described here. For a full list, and more detailed explanation of each, see the MIT @uref{https://web.mit.edu/kerberos/krb5-devel/doc/admin/conf_files/krb5_conf.html,,krb5.conf} documentation." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25565 +#: guix-git/doc/guix.texi:25902 #, no-wrap msgid "{Data Type} krb5-realm" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25566 +#: guix-git/doc/guix.texi:25903 #, no-wrap msgid "realm, kerberos" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25572 +#: guix-git/doc/guix.texi:25909 msgid "This field is a string identifying the name of the realm. A common convention is to use the fully qualified DNS name of your organization, converted to upper case." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25573 +#: guix-git/doc/guix.texi:25910 #, no-wrap msgid "admin-server" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25576 +#: guix-git/doc/guix.texi:25913 msgid "This field is a string identifying the host where the administration server is running." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25577 +#: guix-git/doc/guix.texi:25914 #, no-wrap msgid "kdc" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25580 +#: guix-git/doc/guix.texi:25917 msgid "This field is a string identifying the key distribution center for the realm." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25583 +#: guix-git/doc/guix.texi:25920 #, no-wrap msgid "{Data Type} krb5-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25586 +#: guix-git/doc/guix.texi:25923 #, no-wrap msgid "@code{allow-weak-crypto?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25589 +#: guix-git/doc/guix.texi:25926 msgid "If this flag is @code{#t} then services which only offer encryption algorithms known to be weak will be accepted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25590 +#: guix-git/doc/guix.texi:25927 #, no-wrap msgid "@code{default-realm} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25597 +#: guix-git/doc/guix.texi:25934 msgid "This field should be a string identifying the default Kerberos realm for the client. You should set this field to the name of your Kerberos realm. If this value is @code{#f} then a realm must be specified with every Kerberos principal when invoking programs such as @command{kinit}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25598 +#: guix-git/doc/guix.texi:25935 #, no-wrap msgid "realms" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25603 +#: guix-git/doc/guix.texi:25940 msgid "This should be a non-empty list of @code{krb5-realm} objects, which clients may access. Normally, one of them will have a @code{name} field matching the @code{default-realm} field." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25607 +#: guix-git/doc/guix.texi:25944 #, no-wrap msgid "PAM krb5 Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25608 +#: guix-git/doc/guix.texi:25945 #, no-wrap msgid "pam-krb5" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25614 +#: guix-git/doc/guix.texi:25951 msgid "The @code{pam-krb5} service allows for login authentication and password management via Kerberos. You will need this service if you want PAM enabled applications to authenticate users using Kerberos." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25615 +#: guix-git/doc/guix.texi:25952 #, no-wrap msgid "{Scheme Variable} pam-krb5-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25617 +#: guix-git/doc/guix.texi:25954 msgid "A service type for the Kerberos 5 PAM module." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25619 +#: guix-git/doc/guix.texi:25956 #, no-wrap msgid "{Data Type} pam-krb5-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25622 +#: guix-git/doc/guix.texi:25959 msgid "Data type representing the configuration of the Kerberos 5 PAM module. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25623 +#: guix-git/doc/guix.texi:25960 #, no-wrap msgid "@code{pam-krb5} (default: @code{pam-krb5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25625 +#: guix-git/doc/guix.texi:25962 msgid "The pam-krb5 package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25626 +#: guix-git/doc/guix.texi:25963 #, no-wrap msgid "@code{minimum-uid} (default: @code{1000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25629 +#: guix-git/doc/guix.texi:25966 msgid "The smallest user ID for which Kerberos authentications should be attempted. Local accounts with lower values will silently fail to authenticate." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25635 +#: guix-git/doc/guix.texi:25972 #, no-wrap msgid "LDAP" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25636 +#: guix-git/doc/guix.texi:25973 #, no-wrap msgid "nslcd, LDAP service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25643 +#: guix-git/doc/guix.texi:25980 msgid "The @code{(gnu services authentication)} module provides the @code{nslcd-service-type}, which can be used to authenticate against an LDAP server. In addition to configuring the service itself, you may want to add @code{ldap} as a name service to the Name Service Switch. @xref{Name Service Switch} for detailed information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25647 +#: guix-git/doc/guix.texi:25984 msgid "Here is a simple operating system declaration with a default configuration of the @code{nslcd-service-type} and a Name Service Switch configuration that consults the @code{ldap} name service last:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25670 +#: guix-git/doc/guix.texi:26007 #, no-wrap msgid "" "(use-service-modules authentication)\n" @@ -46991,643 +47740,643 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25675 +#: guix-git/doc/guix.texi:26012 msgid "Available @code{nslcd-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25676 +#: guix-git/doc/guix.texi:26013 #, no-wrap msgid "{@code{nslcd-configuration} parameter} package nss-pam-ldapd" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25678 +#: guix-git/doc/guix.texi:26015 msgid "The @code{nss-pam-ldapd} package to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25681 +#: guix-git/doc/guix.texi:26018 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number threads" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25685 +#: guix-git/doc/guix.texi:26022 msgid "The number of threads to start that can handle requests and perform LDAP queries. Each thread opens a separate connection to the LDAP server. The default is to start 5 threads." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25690 +#: guix-git/doc/guix.texi:26027 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25692 +#: guix-git/doc/guix.texi:26029 msgid "This specifies the user id with which the daemon should be run." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25694 guix-git/doc/guix.texi:25701 +#: guix-git/doc/guix.texi:26031 guix-git/doc/guix.texi:26038 msgid "Defaults to @samp{\"nslcd\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25697 +#: guix-git/doc/guix.texi:26034 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25699 +#: guix-git/doc/guix.texi:26036 msgid "This specifies the group id with which the daemon should be run." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25704 +#: guix-git/doc/guix.texi:26041 #, no-wrap msgid "{@code{nslcd-configuration} parameter} log-option log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25712 +#: guix-git/doc/guix.texi:26049 msgid "This option controls the way logging is done via a list containing SCHEME and LEVEL@. The SCHEME argument may either be the symbols @samp{none} or @samp{syslog}, or an absolute file name. The LEVEL argument is optional and specifies the log level. The log level may be one of the following symbols: @samp{crit}, @samp{error}, @samp{warning}, @samp{notice}, @samp{info} or @samp{debug}. All messages with the specified log level or higher are logged." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25714 +#: guix-git/doc/guix.texi:26051 msgid "Defaults to @samp{(\"/var/log/nslcd\" info)}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25717 +#: guix-git/doc/guix.texi:26054 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list uri" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25720 +#: guix-git/doc/guix.texi:26057 msgid "The list of LDAP server URIs. Normally, only the first server will be used with the following servers as fall-back." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25722 +#: guix-git/doc/guix.texi:26059 msgid "Defaults to @samp{(\"ldap://localhost:389/\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25725 +#: guix-git/doc/guix.texi:26062 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string ldap-version" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25728 +#: guix-git/doc/guix.texi:26065 msgid "The version of the LDAP protocol to use. The default is to use the maximum version supported by the LDAP library." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25733 +#: guix-git/doc/guix.texi:26070 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string binddn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25736 +#: guix-git/doc/guix.texi:26073 msgid "Specifies the distinguished name with which to bind to the directory server for lookups. The default is to bind anonymously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25741 +#: guix-git/doc/guix.texi:26078 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string bindpw" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25744 +#: guix-git/doc/guix.texi:26081 msgid "Specifies the credentials with which to bind. This option is only applicable when used with binddn." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25749 +#: guix-git/doc/guix.texi:26086 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string rootpwmoddn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25752 +#: guix-git/doc/guix.texi:26089 msgid "Specifies the distinguished name to use when the root user tries to modify a user's password using the PAM module." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25757 +#: guix-git/doc/guix.texi:26094 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string rootpwmodpw" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25761 +#: guix-git/doc/guix.texi:26098 msgid "Specifies the credentials with which to bind if the root user tries to change a user's password. This option is only applicable when used with rootpwmoddn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25766 +#: guix-git/doc/guix.texi:26103 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-mech" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25769 +#: guix-git/doc/guix.texi:26106 msgid "Specifies the SASL mechanism to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25774 +#: guix-git/doc/guix.texi:26111 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-realm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25776 +#: guix-git/doc/guix.texi:26113 msgid "Specifies the SASL realm to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25781 +#: guix-git/doc/guix.texi:26118 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-authcid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25784 +#: guix-git/doc/guix.texi:26121 msgid "Specifies the authentication identity to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25789 +#: guix-git/doc/guix.texi:26126 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-authzid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25792 +#: guix-git/doc/guix.texi:26129 msgid "Specifies the authorization identity to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25797 +#: guix-git/doc/guix.texi:26134 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean sasl-canonicalize?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25802 +#: guix-git/doc/guix.texi:26139 msgid "Determines whether the LDAP server host name should be canonicalised. If this is enabled the LDAP library will do a reverse host name lookup. By default, it is left up to the LDAP library whether this check is performed or not." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25807 +#: guix-git/doc/guix.texi:26144 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string krb5-ccname" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25809 +#: guix-git/doc/guix.texi:26146 msgid "Set the name for the GSS-API Kerberos credentials cache." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25814 +#: guix-git/doc/guix.texi:26151 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string base" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25816 +#: guix-git/doc/guix.texi:26153 msgid "The directory search base." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25818 +#: guix-git/doc/guix.texi:26155 msgid "Defaults to @samp{\"dc=example,dc=com\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25821 +#: guix-git/doc/guix.texi:26158 #, no-wrap msgid "{@code{nslcd-configuration} parameter} scope-option scope" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25825 +#: guix-git/doc/guix.texi:26162 msgid "Specifies the search scope (subtree, onelevel, base or children). The default scope is subtree; base scope is almost never useful for name service lookups; children scope is not supported on all servers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25827 +#: guix-git/doc/guix.texi:26164 msgid "Defaults to @samp{(subtree)}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25830 +#: guix-git/doc/guix.texi:26167 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-deref-option deref" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25833 +#: guix-git/doc/guix.texi:26170 msgid "Specifies the policy for dereferencing aliases. The default policy is to never dereference aliases." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25838 +#: guix-git/doc/guix.texi:26175 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean referrals" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25841 +#: guix-git/doc/guix.texi:26178 msgid "Specifies whether automatic referral chasing should be enabled. The default behaviour is to chase referrals." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25846 +#: guix-git/doc/guix.texi:26183 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list-of-map-entries maps" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25851 +#: guix-git/doc/guix.texi:26188 msgid "This option allows for custom attributes to be looked up instead of the default RFC 2307 attributes. It is a list of maps, each consisting of the name of a map, the RFC 2307 attribute to match and the query expression for the attribute as it is available in the directory." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25856 +#: guix-git/doc/guix.texi:26193 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list-of-filter-entries filters" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25859 +#: guix-git/doc/guix.texi:26196 msgid "A list of filters consisting of the name of a map to which the filter applies and an LDAP search filter expression." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25864 +#: guix-git/doc/guix.texi:26201 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number bind-timelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25867 +#: guix-git/doc/guix.texi:26204 msgid "Specifies the time limit in seconds to use when connecting to the directory server. The default value is 10 seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25872 +#: guix-git/doc/guix.texi:26209 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number timelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25876 +#: guix-git/doc/guix.texi:26213 msgid "Specifies the time limit (in seconds) to wait for a response from the LDAP server. A value of zero, which is the default, is to wait indefinitely for searches to be completed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25881 +#: guix-git/doc/guix.texi:26218 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number idle-timelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25885 +#: guix-git/doc/guix.texi:26222 msgid "Specifies the period if inactivity (in seconds) after which the con‐ nection to the LDAP server will be closed. The default is not to time out connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25890 +#: guix-git/doc/guix.texi:26227 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number reconnect-sleeptime" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25894 +#: guix-git/doc/guix.texi:26231 msgid "Specifies the number of seconds to sleep when connecting to all LDAP servers fails. By default one second is waited between the first failure and the first retry." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25899 +#: guix-git/doc/guix.texi:26236 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number reconnect-retrytime" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25903 +#: guix-git/doc/guix.texi:26240 msgid "Specifies the time after which the LDAP server is considered to be permanently unavailable. Once this time is reached retries will be done only once per this time period. The default value is 10 seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25908 +#: guix-git/doc/guix.texi:26245 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-ssl-option ssl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25912 +#: guix-git/doc/guix.texi:26249 msgid "Specifies whether to use SSL/TLS or not (the default is not to). If 'start-tls is specified then StartTLS is used rather than raw LDAP over SSL." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25917 +#: guix-git/doc/guix.texi:26254 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-tls-reqcert-option tls-reqcert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25920 +#: guix-git/doc/guix.texi:26257 msgid "Specifies what checks to perform on a server-supplied certificate. The meaning of the values is described in the ldap.conf(5) manual page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25925 +#: guix-git/doc/guix.texi:26262 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cacertdir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25928 +#: guix-git/doc/guix.texi:26265 msgid "Specifies the directory containing X.509 certificates for peer authen‐ tication. This parameter is ignored when using GnuTLS." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25933 +#: guix-git/doc/guix.texi:26270 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cacertfile" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25935 +#: guix-git/doc/guix.texi:26272 msgid "Specifies the path to the X.509 certificate for peer authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25940 +#: guix-git/doc/guix.texi:26277 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-randfile" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25943 +#: guix-git/doc/guix.texi:26280 msgid "Specifies the path to an entropy source. This parameter is ignored when using GnuTLS." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25948 +#: guix-git/doc/guix.texi:26285 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-ciphers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25950 +#: guix-git/doc/guix.texi:26287 msgid "Specifies the ciphers to use for TLS as a string." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25955 +#: guix-git/doc/guix.texi:26292 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25958 +#: guix-git/doc/guix.texi:26295 msgid "Specifies the path to the file containing the local certificate for client TLS authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25963 +#: guix-git/doc/guix.texi:26300 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-key" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25966 +#: guix-git/doc/guix.texi:26303 msgid "Specifies the path to the file containing the private key for client TLS authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25971 +#: guix-git/doc/guix.texi:26308 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number pagesize" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25975 +#: guix-git/doc/guix.texi:26312 msgid "Set this to a number greater than 0 to request paged results from the LDAP server in accordance with RFC2696. The default (0) is to not request paged results." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25980 +#: guix-git/doc/guix.texi:26317 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-ignore-users-option nss-initgroups-ignoreusers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25984 +#: guix-git/doc/guix.texi:26321 msgid "This option prevents group membership lookups through LDAP for the specified users. Alternatively, the value 'all-local may be used. With that value nslcd builds a full list of non-LDAP users on startup." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25989 +#: guix-git/doc/guix.texi:26326 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-min-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25992 +#: guix-git/doc/guix.texi:26329 msgid "This option ensures that LDAP users with a numeric user id lower than the specified value are ignored." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25997 +#: guix-git/doc/guix.texi:26334 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-uid-offset" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26000 +#: guix-git/doc/guix.texi:26337 msgid "This option specifies an offset that is added to all LDAP numeric user ids. This can be used to avoid user id collisions with local users." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26005 +#: guix-git/doc/guix.texi:26342 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-gid-offset" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26008 +#: guix-git/doc/guix.texi:26345 msgid "This option specifies an offset that is added to all LDAP numeric group ids. This can be used to avoid user id collisions with local groups." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26013 +#: guix-git/doc/guix.texi:26350 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-nested-groups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26019 +#: guix-git/doc/guix.texi:26356 msgid "If this option is set, the member attribute of a group may point to another group. Members of nested groups are also returned in the higher level group and parent groups are returned when finding groups for a specific user. The default is not to perform extra searches for nested groups." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26024 +#: guix-git/doc/guix.texi:26361 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-getgrent-skipmembers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26029 +#: guix-git/doc/guix.texi:26366 msgid "If this option is set, the group member list is not retrieved when looking up groups. Lookups for finding which groups a user belongs to will remain functional so the user will likely still get the correct groups assigned on login." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26034 +#: guix-git/doc/guix.texi:26371 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-disable-enumeration" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26040 +#: guix-git/doc/guix.texi:26377 msgid "If this option is set, functions which cause all user/group entries to be loaded from the directory will not succeed in doing so. This can dramatically reduce LDAP server load in situations where there are a great number of users and/or groups. This option is not recommended for most configurations." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26045 +#: guix-git/doc/guix.texi:26382 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string validnames" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26049 +#: guix-git/doc/guix.texi:26386 msgid "This option can be used to specify how user and group names are verified within the system. This pattern is used to check all user and group names that are requested and returned from LDAP." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26054 +#: guix-git/doc/guix.texi:26391 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean ignorecase" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26059 +#: guix-git/doc/guix.texi:26396 msgid "This specifies whether or not to perform searches using case-insensitive matching. Enabling this could open up the system to authorization bypass vulnerabilities and introduce nscd cache poisoning vulnerabilities which allow denial of service." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26064 +#: guix-git/doc/guix.texi:26401 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean pam-authc-ppolicy" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26067 +#: guix-git/doc/guix.texi:26404 msgid "This option specifies whether password policy controls are requested and handled from the LDAP server when performing user authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26072 +#: guix-git/doc/guix.texi:26409 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-authc-search" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26078 +#: guix-git/doc/guix.texi:26415 msgid "By default nslcd performs an LDAP search with the user's credentials after BIND (authentication) to ensure that the BIND operation was successful. The default search is a simple check to see if the user's DN exists. A search filter can be specified that will be used instead. It should return at least one entry." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26083 +#: guix-git/doc/guix.texi:26420 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-authz-search" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26087 +#: guix-git/doc/guix.texi:26424 msgid "This option allows flexible fine tuning of the authorisation check that should be performed. The search filter specified is executed and if any entries match, access is granted, otherwise access is denied." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26092 +#: guix-git/doc/guix.texi:26429 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-password-prohibit-message" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26097 +#: guix-git/doc/guix.texi:26434 msgid "If this option is set password modification using pam_ldap will be denied and the specified message will be presented to the user instead. The message can be used to direct the user to an alternative means of changing their password." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26102 +#: guix-git/doc/guix.texi:26439 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list pam-services" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26104 +#: guix-git/doc/guix.texi:26441 msgid "List of pam service names for which LDAP authentication should suffice." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26115 +#: guix-git/doc/guix.texi:26452 #, no-wrap msgid "web" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26116 +#: guix-git/doc/guix.texi:26453 #, no-wrap msgid "www" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26117 +#: guix-git/doc/guix.texi:26454 #, no-wrap msgid "HTTP" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26120 +#: guix-git/doc/guix.texi:26457 msgid "The @code{(gnu services web)} module provides the Apache HTTP Server, the nginx web server, and also a fastcgi wrapper daemon." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26121 +#: guix-git/doc/guix.texi:26458 #, no-wrap msgid "Apache HTTP Server" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26123 +#: guix-git/doc/guix.texi:26460 #, no-wrap msgid "{Scheme Variable} httpd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26127 +#: guix-git/doc/guix.texi:26464 msgid "Service type for the @uref{https://httpd.apache.org/,Apache HTTP} server (@dfn{httpd}). The value for this service type is a @code{httpd-configuration} record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26129 guix-git/doc/guix.texi:26311 +#: guix-git/doc/guix.texi:26466 guix-git/doc/guix.texi:26648 msgid "A simple example configuration is given below." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26137 +#: guix-git/doc/guix.texi:26474 #, no-wrap msgid "" "(service httpd-service-type\n" @@ -47639,12 +48388,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26141 +#: guix-git/doc/guix.texi:26478 msgid "Other services can also extend the @code{httpd-service-type} to add to the configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26150 guix-git/doc/guix.texi:26290 +#: guix-git/doc/guix.texi:26487 guix-git/doc/guix.texi:26627 #, no-wrap msgid "" "(simple-service 'www.example.com-server httpd-service-type\n" @@ -47657,115 +48406,115 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26156 +#: guix-git/doc/guix.texi:26493 msgid "The details for the @code{httpd-configuration}, @code{httpd-module}, @code{httpd-config-file} and @code{httpd-virtualhost} record types are given below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26157 +#: guix-git/doc/guix.texi:26494 #, no-wrap msgid "{Data Type} httpd-configuration" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26159 +#: guix-git/doc/guix.texi:26496 msgid "This data type represents the configuration for the httpd service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26161 +#: guix-git/doc/guix.texi:26498 #, no-wrap msgid "@code{package} (default: @code{httpd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26163 +#: guix-git/doc/guix.texi:26500 msgid "The httpd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26164 guix-git/doc/guix.texi:26253 +#: guix-git/doc/guix.texi:26501 guix-git/doc/guix.texi:26590 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/httpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26166 +#: guix-git/doc/guix.texi:26503 msgid "The pid file used by the shepherd-service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26167 +#: guix-git/doc/guix.texi:26504 #, no-wrap msgid "@code{config} (default: @code{(httpd-config-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26172 +#: guix-git/doc/guix.texi:26509 msgid "The configuration file to use with the httpd service. The default value is a @code{httpd-config-file} record, but this can also be a different G-expression that generates a file, for example a @code{plain-file}. A file outside of the store can also be specified through a string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26176 +#: guix-git/doc/guix.texi:26513 #, no-wrap msgid "{Data Type} httpd-module" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26178 +#: guix-git/doc/guix.texi:26515 msgid "This data type represents a module for the httpd service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26182 +#: guix-git/doc/guix.texi:26519 msgid "The name of the module." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26188 +#: guix-git/doc/guix.texi:26525 msgid "The file for the module. This can be relative to the httpd package being used, the absolute location of a file, or a G-expression for a file within the store, for example @code{(file-append mod-wsgi \"/modules/mod_wsgi.so\")}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26192 +#: guix-git/doc/guix.texi:26529 #, no-wrap msgid "{Scheme Variable} %default-httpd-modules" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26194 +#: guix-git/doc/guix.texi:26531 msgid "A default list of @code{httpd-module} objects." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26196 +#: guix-git/doc/guix.texi:26533 #, no-wrap msgid "{Data Type} httpd-config-file" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26198 +#: guix-git/doc/guix.texi:26535 msgid "This data type represents a configuration file for the httpd service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26200 +#: guix-git/doc/guix.texi:26537 #, no-wrap msgid "@code{modules} (default: @code{%default-httpd-modules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26203 +#: guix-git/doc/guix.texi:26540 msgid "The modules to load. Additional modules can be added here, or loaded by additional configuration." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26206 +#: guix-git/doc/guix.texi:26543 msgid "For example, in order to handle requests for PHP files, you can use Apache’s @code{mod_proxy_fcgi} module along with @code{php-fpm-service-type}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26228 +#: guix-git/doc/guix.texi:26565 #, no-wrap msgid "" "(service httpd-service-type\n" @@ -47791,165 +48540,165 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26230 +#: guix-git/doc/guix.texi:26567 #, no-wrap msgid "@code{server-root} (default: @code{httpd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26234 +#: guix-git/doc/guix.texi:26571 msgid "The @code{ServerRoot} in the configuration file, defaults to the httpd package. Directives including @code{Include} and @code{LoadModule} are taken as relative to the server root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26235 +#: guix-git/doc/guix.texi:26572 #, no-wrap msgid "@code{server-name} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26239 +#: guix-git/doc/guix.texi:26576 msgid "The @code{ServerName} in the configuration file, used to specify the request scheme, hostname and port that the server uses to identify itself." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26243 +#: guix-git/doc/guix.texi:26580 msgid "This doesn't need to be set in the server config, and can be specified in virtual hosts. The default is @code{#f} to not specify a @code{ServerName}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26244 +#: guix-git/doc/guix.texi:26581 #, no-wrap msgid "@code{document-root} (default: @code{\"/srv/http\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26246 +#: guix-git/doc/guix.texi:26583 msgid "The @code{DocumentRoot} from which files will be served." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26247 +#: guix-git/doc/guix.texi:26584 #, no-wrap msgid "@code{listen} (default: @code{'(\"80\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26252 +#: guix-git/doc/guix.texi:26589 msgid "The list of values for the @code{Listen} directives in the config file. The value should be a list of strings, when each string can specify the port number to listen on, and optionally the IP address and protocol to use." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26257 +#: guix-git/doc/guix.texi:26594 msgid "The @code{PidFile} to use. This should match the @code{pid-file} set in the @code{httpd-configuration} so that the Shepherd service is configured correctly." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26258 +#: guix-git/doc/guix.texi:26595 #, no-wrap msgid "@code{error-log} (default: @code{\"/var/log/httpd/error_log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26260 +#: guix-git/doc/guix.texi:26597 msgid "The @code{ErrorLog} to which the server will log errors." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26261 guix-git/doc/guix.texi:26823 +#: guix-git/doc/guix.texi:26598 guix-git/doc/guix.texi:27160 #, no-wrap msgid "@code{user} (default: @code{\"httpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26263 +#: guix-git/doc/guix.texi:26600 msgid "The @code{User} which the server will answer requests as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26264 +#: guix-git/doc/guix.texi:26601 #, no-wrap msgid "@code{group} (default: @code{\"httpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26266 +#: guix-git/doc/guix.texi:26603 msgid "The @code{Group} which the server will answer requests as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26267 +#: guix-git/doc/guix.texi:26604 #, no-wrap msgid "@code{extra-config} (default: @code{(list \"TypesConfig etc/httpd/mime.types\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26270 +#: guix-git/doc/guix.texi:26607 msgid "A flat list of strings and G-expressions which will be added to the end of the configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26273 +#: guix-git/doc/guix.texi:26610 msgid "Any values which the service is extended with will be appended to this list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26277 +#: guix-git/doc/guix.texi:26614 #, no-wrap msgid "{Data Type} httpd-virtualhost" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26279 +#: guix-git/doc/guix.texi:26616 msgid "This data type represents a virtualhost configuration block for the httpd service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26281 +#: guix-git/doc/guix.texi:26618 msgid "These should be added to the extra-config for the httpd-service." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26293 +#: guix-git/doc/guix.texi:26630 #, no-wrap msgid "addresses-and-ports" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26295 +#: guix-git/doc/guix.texi:26632 msgid "The addresses and ports for the @code{VirtualHost} directive." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26296 +#: guix-git/doc/guix.texi:26633 #, no-wrap msgid "contents" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26299 +#: guix-git/doc/guix.texi:26636 msgid "The contents of the @code{VirtualHost} directive, this should be a list of strings and G-expressions." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26304 +#: guix-git/doc/guix.texi:26641 #, no-wrap msgid "NGINX" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26306 +#: guix-git/doc/guix.texi:26643 #, no-wrap msgid "{Scheme Variable} nginx-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26309 +#: guix-git/doc/guix.texi:26646 msgid "Service type for the @uref{https://nginx.org/,NGinx} web server. The value for this service type is a @code{} record." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26319 guix-git/doc/guix.texi:26373 +#: guix-git/doc/guix.texi:26656 guix-git/doc/guix.texi:26710 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -47961,12 +48710,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26324 +#: guix-git/doc/guix.texi:26661 msgid "In addition to adding server blocks to the service configuration directly, this service can be extended by other services to add server blocks, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26330 +#: guix-git/doc/guix.texi:26667 #, no-wrap msgid "" "(simple-service 'my-extra-server nginx-service-type\n" @@ -47976,88 +48725,88 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26341 +#: guix-git/doc/guix.texi:26678 msgid "At startup, @command{nginx} has not yet read its configuration file, so it uses a default file to log error messages. If it fails to load its configuration file, that is where error messages are logged. After the configuration file is loaded, the default error log file changes as per configuration. In our case, startup error messages can be found in @file{/var/run/nginx/logs/error.log}, and after configuration in @file{/var/log/nginx/error.log}. The second location can be changed with the @var{log-directory} configuration option." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26342 +#: guix-git/doc/guix.texi:26679 #, no-wrap msgid "{Data Type} nginx-configuration" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26346 +#: guix-git/doc/guix.texi:26683 msgid "This data type represents the configuration for NGinx. Some configuration can be done through this and the other provided record types, or alternatively, a config file can be provided." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26348 +#: guix-git/doc/guix.texi:26685 #, no-wrap msgid "@code{nginx} (default: @code{nginx})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26350 +#: guix-git/doc/guix.texi:26687 msgid "The nginx package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26351 +#: guix-git/doc/guix.texi:26688 #, no-wrap msgid "@code{log-directory} (default: @code{\"/var/log/nginx\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26353 +#: guix-git/doc/guix.texi:26690 msgid "The directory to which NGinx will write log files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26354 +#: guix-git/doc/guix.texi:26691 #, no-wrap msgid "@code{run-directory} (default: @code{\"/var/run/nginx\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26357 +#: guix-git/doc/guix.texi:26694 msgid "The directory in which NGinx will create a pid file, and write temporary files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26358 +#: guix-git/doc/guix.texi:26695 #, no-wrap msgid "@code{server-blocks} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26362 +#: guix-git/doc/guix.texi:26699 msgid "A list of @dfn{server blocks} to create in the generated configuration file, the elements should be of type @code{}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26366 +#: guix-git/doc/guix.texi:26703 msgid "The following example would setup NGinx to serve @code{www.example.com} from the @code{/srv/http/www.example.com} directory, without using HTTPS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26375 +#: guix-git/doc/guix.texi:26712 #, no-wrap msgid "@code{upstream-blocks} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26379 +#: guix-git/doc/guix.texi:26716 msgid "A list of @dfn{upstream blocks} to create in the generated configuration file, the elements should be of type @code{}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26386 +#: guix-git/doc/guix.texi:26723 msgid "Configuring upstreams through the @code{upstream-blocks} can be useful when combined with @code{locations} in the @code{} records. The following example creates a server configuration with one location configuration, that will proxy requests to a upstream configuration, which will handle requests with two servers." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26405 +#: guix-git/doc/guix.texi:26742 #, no-wrap msgid "" "(service\n" @@ -48080,44 +48829,44 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26413 +#: guix-git/doc/guix.texi:26750 msgid "If a configuration @var{file} is provided, this will be used, rather than generating a configuration file from the provided @code{log-directory}, @code{run-directory}, @code{server-blocks} and @code{upstream-blocks}. For proper operation, these arguments should match what is in @var{file} to ensure that the directories are created when the service is activated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26417 +#: guix-git/doc/guix.texi:26754 msgid "This can be useful if you have an existing configuration file, or it's not possible to do what is required through the other parts of the nginx-configuration record." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26418 +#: guix-git/doc/guix.texi:26755 #, no-wrap msgid "@code{server-names-hash-bucket-size} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26421 +#: guix-git/doc/guix.texi:26758 msgid "Bucket size for the server names hash tables, defaults to @code{#f} to use the size of the processors cache line." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26422 +#: guix-git/doc/guix.texi:26759 #, no-wrap msgid "@code{server-names-hash-bucket-max-size} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26424 +#: guix-git/doc/guix.texi:26761 msgid "Maximum bucket size for the server names hash tables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26428 +#: guix-git/doc/guix.texi:26765 msgid "List of nginx dynamic modules to load. This should be a list of file names of loadable modules, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26436 +#: guix-git/doc/guix.texi:26773 #, no-wrap msgid "" "(modules\n" @@ -48129,18 +48878,18 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26438 +#: guix-git/doc/guix.texi:26775 #, no-wrap msgid "@code{lua-package-path} (default: @code{'()})" msgstr "@code{native-search-paths} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26441 +#: guix-git/doc/guix.texi:26778 msgid "List of nginx lua packages to load. This should be a list of package names of loadable lua modules, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26448 +#: guix-git/doc/guix.texi:26785 #, no-wrap msgid "" "(lua-package-path (list lua-resty-core\n" @@ -48151,35 +48900,35 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26450 +#: guix-git/doc/guix.texi:26787 #, no-wrap msgid "@code{lua-package-cpath} (default: @code{'()})" msgstr "@code{native-search-paths} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26453 +#: guix-git/doc/guix.texi:26790 msgid "List of nginx lua C packages to load. This should be a list of package names of loadable lua C modules, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26456 +#: guix-git/doc/guix.texi:26793 #, no-wrap msgid "(lua-package-cpath (list lua-resty-signal))\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26458 +#: guix-git/doc/guix.texi:26795 #, no-wrap msgid "@code{global-directives} (default: @code{'((events . ()))})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26461 +#: guix-git/doc/guix.texi:26798 msgid "Association list of global directives for the top level of the nginx configuration. Values may themselves be association lists." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26467 +#: guix-git/doc/guix.texi:26804 #, no-wrap msgid "" "(global-directives\n" @@ -48189,312 +48938,312 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26472 +#: guix-git/doc/guix.texi:26809 msgid "Extra content for the @code{http} block. Should be string or a string valued G-expression." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26476 +#: guix-git/doc/guix.texi:26813 #, no-wrap msgid "{Data Type} nginx-server-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26479 +#: guix-git/doc/guix.texi:26816 msgid "Data type representing the configuration of an nginx server block. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26481 +#: guix-git/doc/guix.texi:26818 #, no-wrap msgid "@code{listen} (default: @code{'(\"80\" \"443 ssl\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26486 +#: guix-git/doc/guix.texi:26823 msgid "Each @code{listen} directive sets the address and port for IP, or the path for a UNIX-domain socket on which the server will accept requests. Both address and port, or only address or only port can be specified. An address may also be a hostname, for example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26489 +#: guix-git/doc/guix.texi:26826 #, no-wrap msgid "'(\"127.0.0.1:8000\" \"127.0.0.1\" \"8000\" \"*:8000\" \"localhost:8000\")\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26491 +#: guix-git/doc/guix.texi:26828 #, no-wrap msgid "@code{server-name} (default: @code{(list 'default)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26494 +#: guix-git/doc/guix.texi:26831 msgid "A list of server names this server represents. @code{'default} represents the default server for connections matching no other server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26495 +#: guix-git/doc/guix.texi:26832 #, no-wrap msgid "@code{root} (default: @code{\"/srv/http\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26497 +#: guix-git/doc/guix.texi:26834 msgid "Root of the website nginx will serve." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26498 +#: guix-git/doc/guix.texi:26835 #, no-wrap msgid "@code{locations} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26502 +#: guix-git/doc/guix.texi:26839 msgid "A list of @dfn{nginx-location-configuration} or @dfn{nginx-named-location-configuration} records to use within this server block." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26503 +#: guix-git/doc/guix.texi:26840 #, no-wrap msgid "@code{index} (default: @code{(list \"index.html\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26506 +#: guix-git/doc/guix.texi:26843 msgid "Index files to look for when clients ask for a directory. If it cannot be found, Nginx will send the list of files in the directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26507 +#: guix-git/doc/guix.texi:26844 #, no-wrap msgid "@code{try-files} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26510 +#: guix-git/doc/guix.texi:26847 msgid "A list of files whose existence is checked in the specified order. @code{nginx} will use the first file it finds to process the request." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26511 +#: guix-git/doc/guix.texi:26848 #, no-wrap msgid "@code{ssl-certificate} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26514 +#: guix-git/doc/guix.texi:26851 msgid "Where to find the certificate for secure connections. Set it to @code{#f} if you don't have a certificate or you don't want to use HTTPS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26515 +#: guix-git/doc/guix.texi:26852 #, no-wrap msgid "@code{ssl-certificate-key} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26518 +#: guix-git/doc/guix.texi:26855 msgid "Where to find the private key for secure connections. Set it to @code{#f} if you don't have a key or you don't want to use HTTPS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26519 +#: guix-git/doc/guix.texi:26856 #, no-wrap msgid "@code{server-tokens?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26521 +#: guix-git/doc/guix.texi:26858 msgid "Whether the server should add its configuration to response." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26522 +#: guix-git/doc/guix.texi:26859 #, no-wrap msgid "@code{raw-content} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26524 +#: guix-git/doc/guix.texi:26861 msgid "A list of raw lines added to the server block." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26528 +#: guix-git/doc/guix.texi:26865 #, no-wrap msgid "{Data Type} nginx-upstream-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26531 +#: guix-git/doc/guix.texi:26868 msgid "Data type representing the configuration of an nginx @code{upstream} block. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26535 +#: guix-git/doc/guix.texi:26872 msgid "Name for this group of servers." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26536 +#: guix-git/doc/guix.texi:26873 #, no-wrap msgid "servers" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26543 +#: guix-git/doc/guix.texi:26880 msgid "Specify the addresses of the servers in the group. The address can be specified as a IP address (e.g.@: @samp{127.0.0.1}), domain name (e.g.@: @samp{backend1.example.com}) or a path to a UNIX socket using the prefix @samp{unix:}. For addresses using an IP address or domain name, the default port is 80, and a different port can be specified explicitly." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26547 +#: guix-git/doc/guix.texi:26884 #, no-wrap msgid "{Data Type} nginx-location-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26550 +#: guix-git/doc/guix.texi:26887 msgid "Data type representing the configuration of an nginx @code{location} block. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26554 +#: guix-git/doc/guix.texi:26891 msgid "URI which this location block matches." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:26556 +#: guix-git/doc/guix.texi:26893 msgid "nginx-location-configuration body" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26556 guix-git/doc/guix.texi:26577 +#: guix-git/doc/guix.texi:26893 guix-git/doc/guix.texi:26914 #, no-wrap msgid "body" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26563 +#: guix-git/doc/guix.texi:26900 msgid "Body of the location block, specified as a list of strings. This can contain many configuration directives. For example, to pass requests to a upstream server group defined using an @code{nginx-upstream-configuration} block, the following directive would be specified in the body @samp{(list \"proxy_pass http://upstream-name;\")}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26567 +#: guix-git/doc/guix.texi:26904 #, no-wrap msgid "{Data Type} nginx-named-location-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26572 +#: guix-git/doc/guix.texi:26909 msgid "Data type representing the configuration of an nginx named location block. Named location blocks are used for request redirection, and not used for regular request processing. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26576 +#: guix-git/doc/guix.texi:26913 msgid "Name to identify this location block." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26582 +#: guix-git/doc/guix.texi:26919 msgid "@xref{nginx-location-configuration body}, as the body for named location blocks can be used in a similar way to the @code{nginx-location-configuration body}. One restriction is that the body of a named location block cannot contain location blocks." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26586 +#: guix-git/doc/guix.texi:26923 #, no-wrap msgid "Varnish Cache" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26587 +#: guix-git/doc/guix.texi:26924 #, no-wrap msgid "Varnish" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26592 +#: guix-git/doc/guix.texi:26929 msgid "Varnish is a fast cache server that sits in between web applications and end users. It proxies requests from clients and caches the accessed URLs such that multiple requests for the same resource only creates one request to the back-end." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26593 +#: guix-git/doc/guix.texi:26930 #, no-wrap msgid "{Scheme Variable} varnish-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26595 +#: guix-git/doc/guix.texi:26932 msgid "Service type for the Varnish daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26597 +#: guix-git/doc/guix.texi:26934 #, no-wrap msgid "{Data Type} varnish-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26600 +#: guix-git/doc/guix.texi:26937 msgid "Data type representing the @code{varnish} service configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26602 +#: guix-git/doc/guix.texi:26939 #, no-wrap msgid "@code{package} (default: @code{varnish})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26604 +#: guix-git/doc/guix.texi:26941 msgid "The Varnish package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26605 +#: guix-git/doc/guix.texi:26942 #, no-wrap msgid "@code{name} (default: @code{\"default\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26610 +#: guix-git/doc/guix.texi:26947 msgid "A name for this Varnish instance. Varnish will create a directory in @file{/var/varnish/} with this name and keep temporary files there. If the name starts with a forward slash, it is interpreted as an absolute directory name." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26613 +#: guix-git/doc/guix.texi:26950 msgid "Pass the @code{-n} argument to other Varnish programs to connect to the named instance, e.g.@: @command{varnishncsa -n default}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26614 +#: guix-git/doc/guix.texi:26951 #, no-wrap msgid "@code{backend} (default: @code{\"localhost:8080\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26616 +#: guix-git/doc/guix.texi:26953 msgid "The backend to use. This option has no effect if @code{vcl} is set." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26617 +#: guix-git/doc/guix.texi:26954 #, no-wrap msgid "@code{vcl} (default: #f)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26622 +#: guix-git/doc/guix.texi:26959 msgid "The @dfn{VCL} (Varnish Configuration Language) program to run. If this is @code{#f}, Varnish will proxy @code{backend} using the default configuration. Otherwise this must be a file-like object with valid VCL syntax." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26626 +#: guix-git/doc/guix.texi:26963 msgid "For example, to mirror @url{https://www.gnu.org,www.gnu.org} with VCL you can do something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26632 +#: guix-git/doc/guix.texi:26969 #, no-wrap msgid "" "(define %gnu-mirror\n" @@ -48505,7 +49254,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26640 +#: guix-git/doc/guix.texi:26977 #, no-wrap msgid "" "(operating-system\n" @@ -48518,82 +49267,82 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26644 +#: guix-git/doc/guix.texi:26981 msgid "The configuration of an already running Varnish instance can be inspected and changed using the @command{varnishadm} program." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26648 +#: guix-git/doc/guix.texi:26985 msgid "Consult the @url{https://varnish-cache.org/docs/,Varnish User Guide} and @url{https://book.varnish-software.com/4.0/,Varnish Book} for comprehensive documentation on Varnish and its configuration language." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26649 +#: guix-git/doc/guix.texi:26986 #, no-wrap msgid "@code{listen} (default: @code{'(\"localhost:80\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26651 +#: guix-git/doc/guix.texi:26988 msgid "List of addresses Varnish will listen on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26652 +#: guix-git/doc/guix.texi:26989 #, no-wrap msgid "@code{storage} (default: @code{'(\"malloc,128m\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26654 +#: guix-git/doc/guix.texi:26991 msgid "List of storage backends that will be available in VCL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26655 +#: guix-git/doc/guix.texi:26992 #, no-wrap msgid "@code{parameters} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26657 +#: guix-git/doc/guix.texi:26994 msgid "List of run-time parameters in the form @code{'((\"parameter\" . \"value\"))}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26660 +#: guix-git/doc/guix.texi:26997 msgid "Additional arguments to pass to the @command{varnishd} process." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26664 guix-git/doc/guix.texi:26665 +#: guix-git/doc/guix.texi:27001 guix-git/doc/guix.texi:27002 #, no-wrap msgid "Patchwork" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26668 +#: guix-git/doc/guix.texi:27005 msgid "Patchwork is a patch tracking system. It can collect patches sent to a mailing list, and display them in a web interface." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26669 +#: guix-git/doc/guix.texi:27006 #, no-wrap msgid "{Scheme Variable} patchwork-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26671 +#: guix-git/doc/guix.texi:27008 msgid "Service type for Patchwork." msgstr "Поделитесь своей работой." #. type: Plain text -#: guix-git/doc/guix.texi:26675 +#: guix-git/doc/guix.texi:27012 msgid "The following example is an example of a minimal service for Patchwork, for the @code{patchwork.example.com} domain." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26695 +#: guix-git/doc/guix.texi:27032 #, no-wrap msgid "" "(service patchwork-service-type\n" @@ -48618,806 +49367,806 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26701 +#: guix-git/doc/guix.texi:27038 msgid "There are three records for configuring the Patchwork service. The @code{} relates to the configuration for Patchwork within the HTTPD service." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26705 +#: guix-git/doc/guix.texi:27042 msgid "The @code{settings-module} field within the @code{} record can be populated with the @code{} record, which describes a settings module that is generated within the Guix store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26709 +#: guix-git/doc/guix.texi:27046 msgid "For the @code{database-configuration} field within the @code{}, the @code{} must be used." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26710 +#: guix-git/doc/guix.texi:27047 #, no-wrap msgid "{Data Type} patchwork-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26713 +#: guix-git/doc/guix.texi:27050 msgid "Data type representing the Patchwork service configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26715 +#: guix-git/doc/guix.texi:27052 #, no-wrap msgid "@code{patchwork} (default: @code{patchwork})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:26717 +#: guix-git/doc/guix.texi:27054 msgid "The Patchwork package to use." msgstr "Используемый пакет Patchwork." #. type: code{#1} -#: guix-git/doc/guix.texi:26718 +#: guix-git/doc/guix.texi:27055 #, no-wrap msgid "domain" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26721 +#: guix-git/doc/guix.texi:27058 msgid "The domain to use for Patchwork, this is used in the HTTPD service virtual host." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26722 +#: guix-git/doc/guix.texi:27059 #, no-wrap msgid "settings-module" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26728 +#: guix-git/doc/guix.texi:27065 msgid "The settings module to use for Patchwork. As a Django application, Patchwork is configured with a Python module containing the settings. This can either be an instance of the @code{} record, any other record that represents the settings in the store, or a directory outside of the store." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26729 +#: guix-git/doc/guix.texi:27066 #, no-wrap msgid "@code{static-path} (default: @code{\"/static/\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:26731 +#: guix-git/doc/guix.texi:27068 msgid "The path under which the HTTPD service should serve the static files." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26732 +#: guix-git/doc/guix.texi:27069 #, no-wrap msgid "getmail-retriever-config" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26736 +#: guix-git/doc/guix.texi:27073 msgid "The getmail-retriever-configuration record value to use with Patchwork. Getmail will be configured with this value, the messages will be delivered to Patchwork." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26740 +#: guix-git/doc/guix.texi:27077 #, no-wrap msgid "{Data Type} patchwork-settings-module" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26745 +#: guix-git/doc/guix.texi:27082 msgid "Data type representing a settings module for Patchwork. Some of these settings relate directly to Patchwork, but others relate to Django, the web framework used by Patchwork, or the Django Rest Framework library. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26747 +#: guix-git/doc/guix.texi:27084 #, no-wrap msgid "@code{database-configuration} (default: @code{(patchwork-database-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26750 +#: guix-git/doc/guix.texi:27087 msgid "The database connection settings used for Patchwork. See the @code{} record type for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26751 +#: guix-git/doc/guix.texi:27088 #, no-wrap msgid "@code{secret-key-file} (default: @code{\"/etc/patchwork/django-secret-key\"})" msgstr "@code{daemon-socket} (default: @code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:26754 +#: guix-git/doc/guix.texi:27091 msgid "Patchwork, as a Django web application uses a secret key for cryptographically signing values. This file should contain a unique unpredictable value." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26757 +#: guix-git/doc/guix.texi:27094 msgid "If this file does not exist, it will be created and populated with a random value by the patchwork-setup shepherd service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26759 +#: guix-git/doc/guix.texi:27096 msgid "This setting relates to Django." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26760 +#: guix-git/doc/guix.texi:27097 #, no-wrap msgid "allowed-hosts" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26763 +#: guix-git/doc/guix.texi:27100 msgid "A list of valid hosts for this Patchwork service. This should at least include the domain specified in the @code{} record." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26765 guix-git/doc/guix.texi:26779 -#: guix-git/doc/guix.texi:26785 guix-git/doc/guix.texi:26791 +#: guix-git/doc/guix.texi:27102 guix-git/doc/guix.texi:27116 +#: guix-git/doc/guix.texi:27122 guix-git/doc/guix.texi:27128 msgid "This is a Django setting." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26766 +#: guix-git/doc/guix.texi:27103 #, no-wrap msgid "default-from-email" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26768 +#: guix-git/doc/guix.texi:27105 msgid "The email address from which Patchwork should send email by default." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26770 guix-git/doc/guix.texi:26796 -#: guix-git/doc/guix.texi:26801 guix-git/doc/guix.texi:26806 +#: guix-git/doc/guix.texi:27107 guix-git/doc/guix.texi:27133 +#: guix-git/doc/guix.texi:27138 guix-git/doc/guix.texi:27143 msgid "This is a Patchwork setting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26771 +#: guix-git/doc/guix.texi:27108 #, no-wrap msgid "@code{static-url} (default: @code{#f})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26774 +#: guix-git/doc/guix.texi:27111 msgid "The URL to use when serving static assets. It can be part of a URL, or a full URL, but must end in a @code{/}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26777 +#: guix-git/doc/guix.texi:27114 msgid "If the default value is used, the @code{static-path} value from the @code{} record will be used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26780 +#: guix-git/doc/guix.texi:27117 #, no-wrap msgid "@code{admins} (default: @code{'()})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26783 +#: guix-git/doc/guix.texi:27120 msgid "Email addresses to send the details of errors that occur. Each value should be a list containing two elements, the name and then the email address." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26789 +#: guix-git/doc/guix.texi:27126 msgid "Whether to run Patchwork in debug mode. If set to @code{#t}, detailed error messages will be shown." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26792 +#: guix-git/doc/guix.texi:27129 #, no-wrap msgid "@code{enable-rest-api?} (default: @code{#t})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:26794 +#: guix-git/doc/guix.texi:27131 msgid "Whether to enable the Patchwork REST API." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26797 +#: guix-git/doc/guix.texi:27134 #, no-wrap msgid "@code{enable-xmlrpc?} (default: @code{#t})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:26799 +#: guix-git/doc/guix.texi:27136 msgid "Whether to enable the XML RPC API." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26802 +#: guix-git/doc/guix.texi:27139 #, no-wrap msgid "@code{force-https-links?} (default: @code{#t})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:26804 +#: guix-git/doc/guix.texi:27141 msgid "Whether to use HTTPS links on Patchwork pages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26809 +#: guix-git/doc/guix.texi:27146 msgid "Extra code to place at the end of the Patchwork settings module." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26813 +#: guix-git/doc/guix.texi:27150 #, no-wrap msgid "{Data Type} patchwork-database-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26815 +#: guix-git/doc/guix.texi:27152 msgid "Data type representing the database configuration for Patchwork." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26817 +#: guix-git/doc/guix.texi:27154 #, no-wrap msgid "@code{engine} (default: @code{\"django.db.backends.postgresql_psycopg2\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:26819 +#: guix-git/doc/guix.texi:27156 msgid "The database engine to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26820 +#: guix-git/doc/guix.texi:27157 #, no-wrap msgid "@code{name} (default: @code{\"patchwork\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:26822 +#: guix-git/doc/guix.texi:27159 msgid "The name of the database to use." msgstr "Имя используемой базы данных." #. type: table -#: guix-git/doc/guix.texi:26825 +#: guix-git/doc/guix.texi:27162 msgid "The user to connect to the database as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26826 +#: guix-git/doc/guix.texi:27163 #, no-wrap msgid "@code{password} (default: @code{\"\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:26828 +#: guix-git/doc/guix.texi:27165 msgid "The password to use when connecting to the database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26829 +#: guix-git/doc/guix.texi:27166 #, no-wrap msgid "@code{host} (default: @code{\"\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:26831 +#: guix-git/doc/guix.texi:27168 msgid "The host to make the database connection to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26832 +#: guix-git/doc/guix.texi:27169 #, no-wrap msgid "@code{port} (default: @code{\"\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:26834 +#: guix-git/doc/guix.texi:27171 msgid "The port on which to connect to the database." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26838 +#: guix-git/doc/guix.texi:27175 #, no-wrap msgid "Mumi" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26840 +#: guix-git/doc/guix.texi:27177 #, no-wrap msgid "Mumi, Debbugs Web interface" msgstr "пользовательские интерфейсы" #. type: cindex -#: guix-git/doc/guix.texi:26841 +#: guix-git/doc/guix.texi:27178 #, no-wrap msgid "Debbugs, Mumi Web interface" msgstr "пользовательские интерфейсы" #. type: Plain text -#: guix-git/doc/guix.texi:26846 +#: guix-git/doc/guix.texi:27183 msgid "@uref{https://git.elephly.net/gitweb.cgi?p=software/mumi.git, Mumi} is a Web interface to the Debbugs bug tracker, by default for @uref{https://bugs.gnu.org, the GNU instance}. Mumi is a Web server, but it also fetches and indexes mail retrieved from Debbugs." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26847 +#: guix-git/doc/guix.texi:27184 #, no-wrap msgid "{Scheme Variable} mumi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26849 +#: guix-git/doc/guix.texi:27186 msgid "This is the service type for Mumi." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26851 +#: guix-git/doc/guix.texi:27188 #, no-wrap msgid "{Data Type} mumi-configuration" msgstr "{Тип данных} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:26854 +#: guix-git/doc/guix.texi:27191 msgid "Data type representing the Mumi service configuration. This type has the following fields:" msgstr "Тип данных, представляющий конфигурацию сервиса Mumi. Этот тип имеет следующие поля:" #. type: item -#: guix-git/doc/guix.texi:26856 +#: guix-git/doc/guix.texi:27193 #, no-wrap msgid "@code{mumi} (default: @code{mumi})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:26858 +#: guix-git/doc/guix.texi:27195 msgid "The Mumi package to use." msgstr "Используемый пакет Mumi." #. type: item -#: guix-git/doc/guix.texi:26859 +#: guix-git/doc/guix.texi:27196 #, no-wrap msgid "@code{mailer?} (default: @code{#true})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:26861 +#: guix-git/doc/guix.texi:27198 msgid "Whether to enable or disable the mailer component." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26862 +#: guix-git/doc/guix.texi:27199 #, no-wrap msgid "mumi-configuration-sender" msgstr "Конфигурирование системы" #. type: table -#: guix-git/doc/guix.texi:26864 +#: guix-git/doc/guix.texi:27201 msgid "The email address used as the sender for comments." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26865 +#: guix-git/doc/guix.texi:27202 #, no-wrap msgid "mumi-configuration-smtp" msgstr "Конфигурирование системы" #. type: table -#: guix-git/doc/guix.texi:26870 +#: guix-git/doc/guix.texi:27207 msgid "A URI to configure the SMTP settings for Mailutils. This could be something like @code{sendmail:///path/to/bin/msmtp} or any other URI supported by Mailutils. @xref{SMTP Mailboxes, SMTP Mailboxes,, mailutils, GNU@tie{}Mailutils}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26875 +#: guix-git/doc/guix.texi:27212 #, no-wrap msgid "FastCGI" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26876 +#: guix-git/doc/guix.texi:27213 #, no-wrap msgid "fastcgi" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26877 +#: guix-git/doc/guix.texi:27214 #, no-wrap msgid "fcgiwrap" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26884 +#: guix-git/doc/guix.texi:27221 msgid "FastCGI is an interface between the front-end and the back-end of a web service. It is a somewhat legacy facility; new web services should generally just talk HTTP between the front-end and the back-end. However there are a number of back-end services such as PHP or the optimized HTTP Git repository access that use FastCGI, so we have support for it in Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26891 +#: guix-git/doc/guix.texi:27228 msgid "To use FastCGI, you configure the front-end web server (e.g., nginx) to dispatch some subset of its requests to the fastcgi backend, which listens on a local TCP or UNIX socket. There is an intermediary @code{fcgiwrap} program that sits between the actual backend process and the web server. The front-end indicates which backend program to run, passing that information to the @code{fcgiwrap} process." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26892 +#: guix-git/doc/guix.texi:27229 #, no-wrap msgid "{Scheme Variable} fcgiwrap-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26894 +#: guix-git/doc/guix.texi:27231 msgid "A service type for the @code{fcgiwrap} FastCGI proxy." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26896 +#: guix-git/doc/guix.texi:27233 #, no-wrap msgid "{Data Type} fcgiwrap-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26899 +#: guix-git/doc/guix.texi:27236 msgid "Data type representing the configuration of the @code{fcgiwrap} service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26900 +#: guix-git/doc/guix.texi:27237 #, no-wrap msgid "@code{package} (default: @code{fcgiwrap})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26902 +#: guix-git/doc/guix.texi:27239 msgid "The fcgiwrap package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26903 +#: guix-git/doc/guix.texi:27240 #, no-wrap msgid "@code{socket} (default: @code{tcp:127.0.0.1:9000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26909 +#: guix-git/doc/guix.texi:27246 msgid "The socket on which the @code{fcgiwrap} process should listen, as a string. Valid @var{socket} values include @code{unix:@var{/path/to/unix/socket}}, @code{tcp:@var{dot.ted.qu.ad}:@var{port}} and @code{tcp6:[@var{ipv6_addr}]:port}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26910 +#: guix-git/doc/guix.texi:27247 #, no-wrap msgid "@code{user} (default: @code{fcgiwrap})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:26911 +#: guix-git/doc/guix.texi:27248 #, no-wrap msgid "@code{group} (default: @code{fcgiwrap})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26916 +#: guix-git/doc/guix.texi:27253 msgid "The user and group names, as strings, under which to run the @code{fcgiwrap} process. The @code{fastcgi} service will ensure that if the user asks for the specific user or group names @code{fcgiwrap} that the corresponding user and/or group is present on the system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26923 +#: guix-git/doc/guix.texi:27260 msgid "It is possible to configure a FastCGI-backed web service to pass HTTP authentication information from the front-end to the back-end, and to allow @code{fcgiwrap} to run the back-end process as a corresponding local user. To enable this capability on the back-end, run @code{fcgiwrap} as the @code{root} user and group. Note that this capability also has to be configured on the front-end as well." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26926 +#: guix-git/doc/guix.texi:27263 #, no-wrap msgid "php-fpm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26929 +#: guix-git/doc/guix.texi:27266 msgid "PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI implementation with some additional features useful for sites of any size." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26931 +#: guix-git/doc/guix.texi:27268 msgid "These features include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26932 +#: guix-git/doc/guix.texi:27269 #, no-wrap msgid "Adaptive process spawning" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26933 +#: guix-git/doc/guix.texi:27270 #, no-wrap msgid "Basic statistics (similar to Apache's mod_status)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26934 +#: guix-git/doc/guix.texi:27271 #, no-wrap msgid "Advanced process management with graceful stop/start" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26935 +#: guix-git/doc/guix.texi:27272 #, no-wrap msgid "Ability to start workers with different uid/gid/chroot/environment" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:26937 +#: guix-git/doc/guix.texi:27274 msgid "and different php.ini (replaces safe_mode)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26937 +#: guix-git/doc/guix.texi:27274 #, no-wrap msgid "Stdout & stderr logging" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26938 +#: guix-git/doc/guix.texi:27275 #, no-wrap msgid "Emergency restart in case of accidental opcode cache destruction" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26939 +#: guix-git/doc/guix.texi:27276 #, no-wrap msgid "Accelerated upload support" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26940 +#: guix-git/doc/guix.texi:27277 #, no-wrap msgid "Support for a \"slowlog\"" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26941 +#: guix-git/doc/guix.texi:27278 #, no-wrap msgid "Enhancements to FastCGI, such as fastcgi_finish_request() -" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:26944 +#: guix-git/doc/guix.texi:27281 msgid "a special function to finish request & flush all data while continuing to do something time-consuming (video converting, stats processing, etc.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26946 +#: guix-git/doc/guix.texi:27283 msgid "...@: and much more." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26947 +#: guix-git/doc/guix.texi:27284 #, no-wrap msgid "{Scheme Variable} php-fpm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26949 +#: guix-git/doc/guix.texi:27286 msgid "A Service type for @code{php-fpm}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26951 +#: guix-git/doc/guix.texi:27288 #, no-wrap msgid "{Data Type} php-fpm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26953 +#: guix-git/doc/guix.texi:27290 msgid "Data Type for php-fpm service configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26954 +#: guix-git/doc/guix.texi:27291 #, no-wrap msgid "@code{php} (default: @code{php})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26956 +#: guix-git/doc/guix.texi:27293 msgid "The php package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26956 +#: guix-git/doc/guix.texi:27293 #, no-wrap msgid "@code{socket} (default: @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.sock\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26958 +#: guix-git/doc/guix.texi:27295 msgid "The address on which to accept FastCGI requests. Valid syntaxes are:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26959 +#: guix-git/doc/guix.texi:27296 #, no-wrap msgid "\"ip.add.re.ss:port\"" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26961 +#: guix-git/doc/guix.texi:27298 msgid "Listen on a TCP socket to a specific address on a specific port." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26961 +#: guix-git/doc/guix.texi:27298 #, no-wrap msgid "\"port\"" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26963 +#: guix-git/doc/guix.texi:27300 msgid "Listen on a TCP socket to all addresses on a specific port." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26963 +#: guix-git/doc/guix.texi:27300 #, no-wrap msgid "\"/path/to/unix/socket\"" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26965 +#: guix-git/doc/guix.texi:27302 msgid "Listen on a unix socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26967 +#: guix-git/doc/guix.texi:27304 #, no-wrap msgid "@code{user} (default: @code{php-fpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26969 +#: guix-git/doc/guix.texi:27306 msgid "User who will own the php worker processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26969 +#: guix-git/doc/guix.texi:27306 #, no-wrap msgid "@code{group} (default: @code{php-fpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26971 +#: guix-git/doc/guix.texi:27308 msgid "Group of the worker processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26971 +#: guix-git/doc/guix.texi:27308 #, no-wrap msgid "@code{socket-user} (default: @code{php-fpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26973 +#: guix-git/doc/guix.texi:27310 msgid "User who can speak to the php-fpm socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26973 +#: guix-git/doc/guix.texi:27310 #, no-wrap msgid "@code{socket-group} (default: @code{nginx})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:26975 +#: guix-git/doc/guix.texi:27312 msgid "Group that can speak to the php-fpm socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26975 +#: guix-git/doc/guix.texi:27312 #, no-wrap msgid "@code{pid-file} (default: @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.pid\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26978 +#: guix-git/doc/guix.texi:27315 msgid "The process id of the php-fpm process is written to this file once the service has started." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26978 +#: guix-git/doc/guix.texi:27315 #, no-wrap msgid "@code{log-file} (default: @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.log\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26980 +#: guix-git/doc/guix.texi:27317 msgid "Log for the php-fpm master process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26980 +#: guix-git/doc/guix.texi:27317 #, no-wrap msgid "@code{process-manager} (default: @code{(php-fpm-dynamic-process-manager-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26983 +#: guix-git/doc/guix.texi:27320 msgid "Detailed settings for the php-fpm process manager. Must be one of:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26984 +#: guix-git/doc/guix.texi:27321 #, no-wrap msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26985 +#: guix-git/doc/guix.texi:27322 #, no-wrap msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26986 +#: guix-git/doc/guix.texi:27323 #, no-wrap msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26988 +#: guix-git/doc/guix.texi:27325 #, no-wrap msgid "@code{display-errors} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26993 +#: guix-git/doc/guix.texi:27330 msgid "Determines whether php errors and warning should be sent to clients and displayed in their browsers. This is useful for local php development, but a security risk for public sites, as error messages can reveal passwords and personal data." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26993 +#: guix-git/doc/guix.texi:27330 #, no-wrap msgid "@code{timezone} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26995 +#: guix-git/doc/guix.texi:27332 msgid "Specifies @code{php_admin_value[date.timezone]} parameter." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26995 +#: guix-git/doc/guix.texi:27332 #, no-wrap msgid "@code{workers-logfile} (default @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.www.log\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26998 +#: guix-git/doc/guix.texi:27335 msgid "This file will log the @code{stderr} outputs of php worker processes. Can be set to @code{#f} to disable logging." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26998 +#: guix-git/doc/guix.texi:27335 #, no-wrap msgid "@code{file} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27001 +#: guix-git/doc/guix.texi:27338 msgid "An optional override of the whole configuration. You can use the @code{mixed-text-file} function or an absolute filepath for it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27001 +#: guix-git/doc/guix.texi:27338 #, no-wrap msgid "@code{php-ini-file} (default @code{#f})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:27005 +#: guix-git/doc/guix.texi:27342 msgid "An optional override of the default php settings. It may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). You can use the @code{mixed-text-file} function or an absolute filepath for it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27009 +#: guix-git/doc/guix.texi:27346 msgid "For local development it is useful to set a higher timeout and memory limit for spawned php processes. This be accomplished with the following operating system configuration snippet:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27014 +#: guix-git/doc/guix.texi:27351 #, no-wrap msgid "" "(define %local-php-ini\n" @@ -49428,7 +50177,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27021 +#: guix-git/doc/guix.texi:27358 #, no-wrap msgid "" "(operating-system\n" @@ -49440,118 +50189,118 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27026 +#: guix-git/doc/guix.texi:27363 msgid "Consult the @url{https://www.php.net/manual/en/ini.core.php,core php.ini directives} for comprehensive documentation on the acceptable @file{php.ini} directives." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27029 +#: guix-git/doc/guix.texi:27366 #, no-wrap msgid "{Data type} php-fpm-dynamic-process-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27033 +#: guix-git/doc/guix.texi:27370 msgid "Data Type for the @code{dynamic} php-fpm process manager. With the @code{dynamic} process manager, spare worker processes are kept around based on its configured limits." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27034 guix-git/doc/guix.texi:27050 -#: guix-git/doc/guix.texi:27060 +#: guix-git/doc/guix.texi:27371 guix-git/doc/guix.texi:27387 +#: guix-git/doc/guix.texi:27397 #, no-wrap msgid "@code{max-children} (default: @code{5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27036 guix-git/doc/guix.texi:27052 -#: guix-git/doc/guix.texi:27062 +#: guix-git/doc/guix.texi:27373 guix-git/doc/guix.texi:27389 +#: guix-git/doc/guix.texi:27399 msgid "Maximum of worker processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27036 +#: guix-git/doc/guix.texi:27373 #, no-wrap msgid "@code{start-servers} (default: @code{2})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27038 +#: guix-git/doc/guix.texi:27375 msgid "How many worker processes should be started on start-up." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27038 +#: guix-git/doc/guix.texi:27375 #, no-wrap msgid "@code{min-spare-servers} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27040 +#: guix-git/doc/guix.texi:27377 msgid "How many spare worker processes should be kept around at minimum." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27040 +#: guix-git/doc/guix.texi:27377 #, no-wrap msgid "@code{max-spare-servers} (default: @code{3})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27042 +#: guix-git/doc/guix.texi:27379 msgid "How many spare worker processes should be kept around at maximum." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27045 +#: guix-git/doc/guix.texi:27382 #, no-wrap msgid "{Data type} php-fpm-static-process-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27049 +#: guix-git/doc/guix.texi:27386 msgid "Data Type for the @code{static} php-fpm process manager. With the @code{static} process manager, an unchanging number of worker processes are created." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27055 +#: guix-git/doc/guix.texi:27392 #, no-wrap msgid "{Data type} php-fpm-on-demand-process-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27059 +#: guix-git/doc/guix.texi:27396 msgid "Data Type for the @code{on-demand} php-fpm process manager. With the @code{on-demand} process manager, worker processes are only created as requests arrive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27062 +#: guix-git/doc/guix.texi:27399 #, no-wrap msgid "@code{process-idle-timeout} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27064 +#: guix-git/doc/guix.texi:27401 msgid "The time in seconds after which a process with no requests is killed." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27068 +#: guix-git/doc/guix.texi:27405 #, no-wrap msgid "{Scheme Procedure} nginx-php-location @" msgstr "{Процедура Scheme} inferior-package-location @var{package}" #. type: deffn -#: guix-git/doc/guix.texi:27074 +#: guix-git/doc/guix.texi:27411 msgid "[#:nginx-package nginx] @ [socket (string-append \"/var/run/php\" @ (version-major (package-version php)) @ \"-fpm.sock\")] A helper function to quickly add php to an @code{nginx-server-configuration}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27077 +#: guix-git/doc/guix.texi:27414 msgid "A simple services setup for nginx with php can look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27090 +#: guix-git/doc/guix.texi:27427 #, no-wrap msgid "" "(services (cons* (service dhcp-client-service-type)\n" @@ -49569,34 +50318,34 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27092 +#: guix-git/doc/guix.texi:27429 #, no-wrap msgid "cat-avatar-generator" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27096 +#: guix-git/doc/guix.texi:27433 msgid "The cat avatar generator is a simple service to demonstrate the use of php-fpm in @code{Nginx}. It is used to generate cat avatar from a seed, for instance the hash of a user's email address." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27097 +#: guix-git/doc/guix.texi:27434 #, no-wrap msgid "{Scheme Procedure} cat-avatar-generator-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27105 +#: guix-git/doc/guix.texi:27442 msgid "[#:cache-dir \"/var/cache/cat-avatar-generator\"] @ [#:package cat-avatar-generator] @ [#:configuration (nginx-server-configuration)] Returns an nginx-server-configuration that inherits @code{configuration}. It extends the nginx configuration to add a server block that serves @code{package}, a version of cat-avatar-generator. During execution, cat-avatar-generator will be able to use @code{cache-dir} as its cache directory." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27108 +#: guix-git/doc/guix.texi:27445 msgid "A simple setup for cat-avatar-generator can look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27115 +#: guix-git/doc/guix.texi:27452 #, no-wrap msgid "" "(services (cons* (cat-avatar-generator-service\n" @@ -49608,179 +50357,179 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27117 +#: guix-git/doc/guix.texi:27454 #, no-wrap msgid "Hpcguix-web" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27119 +#: guix-git/doc/guix.texi:27456 #, no-wrap msgid "hpcguix-web" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27124 +#: guix-git/doc/guix.texi:27461 msgid "The @uref{https://github.com/UMCUGenetics/hpcguix-web/, hpcguix-web} program is a customizable web interface to browse Guix packages, initially designed for users of high-performance computing (HPC) clusters." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27125 +#: guix-git/doc/guix.texi:27462 #, no-wrap msgid "{Scheme Variable} hpcguix-web-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27127 +#: guix-git/doc/guix.texi:27464 msgid "The service type for @code{hpcguix-web}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27129 +#: guix-git/doc/guix.texi:27466 #, no-wrap msgid "{Data Type} hpcguix-web-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27131 +#: guix-git/doc/guix.texi:27468 msgid "Data type for the hpcguix-web service configuration." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:27133 +#: guix-git/doc/guix.texi:27470 #, no-wrap msgid "specs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27136 +#: guix-git/doc/guix.texi:27473 msgid "A gexp (@pxref{G-Expressions}) specifying the hpcguix-web service configuration. The main items available in this spec are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27138 +#: guix-git/doc/guix.texi:27475 #, no-wrap msgid "@code{title-prefix} (default: @code{\"hpcguix | \"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27140 +#: guix-git/doc/guix.texi:27477 msgid "The page title prefix." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27141 +#: guix-git/doc/guix.texi:27478 #, no-wrap msgid "@code{guix-command} (default: @code{\"guix\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27143 +#: guix-git/doc/guix.texi:27480 msgid "The @command{guix} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27144 +#: guix-git/doc/guix.texi:27481 #, no-wrap msgid "@code{package-filter-proc} (default: @code{(const #t)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27146 +#: guix-git/doc/guix.texi:27483 msgid "A procedure specifying how to filter packages that are displayed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27147 +#: guix-git/doc/guix.texi:27484 #, no-wrap msgid "@code{package-page-extension-proc} (default: @code{(const '())})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27149 +#: guix-git/doc/guix.texi:27486 msgid "Extension package for @code{hpcguix-web}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27150 +#: guix-git/doc/guix.texi:27487 #, no-wrap msgid "@code{menu} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27152 +#: guix-git/doc/guix.texi:27489 msgid "Additional entry in page @code{menu}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27153 +#: guix-git/doc/guix.texi:27490 #, no-wrap msgid "@code{channels} (default: @code{%default-channels})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27155 +#: guix-git/doc/guix.texi:27492 msgid "List of channels from which the package list is built (@pxref{Channels})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27156 +#: guix-git/doc/guix.texi:27493 #, no-wrap msgid "@code{package-list-expiration} (default: @code{(* 12 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27159 +#: guix-git/doc/guix.texi:27496 msgid "The expiration time, in seconds, after which the package list is rebuilt from the latest instances of the given channels." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27164 +#: guix-git/doc/guix.texi:27501 msgid "See the hpcguix-web repository for a @uref{https://github.com/UMCUGenetics/hpcguix-web/blob/master/hpcweb-configuration.scm, complete example}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27165 +#: guix-git/doc/guix.texi:27502 #, no-wrap msgid "@code{package} (default: @code{hpcguix-web})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27167 +#: guix-git/doc/guix.texi:27504 msgid "The hpcguix-web package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27168 +#: guix-git/doc/guix.texi:27505 #, fuzzy, no-wrap #| msgid "@code{address} (default: @code{\"0.0.0.0\"})" msgid "@code{address} (default: @code{\"127.0.0.1\"})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:27170 +#: guix-git/doc/guix.texi:27507 msgid "The IP address to listen to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27171 +#: guix-git/doc/guix.texi:27508 #, fuzzy, no-wrap #| msgid "@code{port} (default: @code{5080})" msgid "@code{port} (default: @code{5000})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:27173 +#: guix-git/doc/guix.texi:27510 msgid "The port number to listen to." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27177 +#: guix-git/doc/guix.texi:27514 msgid "A typical hpcguix-web service declaration looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27186 +#: guix-git/doc/guix.texi:27523 #, no-wrap msgid "" "(service hpcguix-web-service-type\n" @@ -49793,39 +50542,39 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:27193 +#: guix-git/doc/guix.texi:27530 msgid "The hpcguix-web service periodically updates the package list it publishes by pulling channels from Git. To that end, it needs to access X.509 certificates so that it can authenticate Git servers when communicating over HTTPS, and it assumes that @file{/etc/ssl/certs} contains those certificates." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:27197 +#: guix-git/doc/guix.texi:27534 msgid "Thus, make sure to add @code{nss-certs} or another certificate package to the @code{packages} field of your configuration. @ref{X.509 Certificates}, for more information on X.509 certificates." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27199 guix-git/doc/guix.texi:27201 +#: guix-git/doc/guix.texi:27536 guix-git/doc/guix.texi:27538 #, no-wrap msgid "gmnisrv" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27204 +#: guix-git/doc/guix.texi:27541 msgid "The @uref{https://git.sr.ht/~sircmpwn/gmnisrv, gmnisrv} program is a simple @uref{https://gemini.circumlunar.space/, Gemini} protocol server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27205 +#: guix-git/doc/guix.texi:27542 #, no-wrap msgid "{Scheme Variable} gmnisrv-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: deffn -#: guix-git/doc/guix.texi:27208 +#: guix-git/doc/guix.texi:27545 msgid "This is the type of the gmnisrv service, whose value should be a @code{gmnisrv-configuration} object, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27213 +#: guix-git/doc/guix.texi:27550 #, no-wrap msgid "" "(service gmnisrv-service-type\n" @@ -49837,68 +50586,68 @@ msgstr "" " (config-file (local-file \"./my-gmnisrv.ini\"))))\n" #. type: deftp -#: guix-git/doc/guix.texi:27216 +#: guix-git/doc/guix.texi:27553 #, no-wrap msgid "{Data Type} gmnisrv-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:27218 +#: guix-git/doc/guix.texi:27555 msgid "Data type representing the configuration of gmnisrv." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:27220 +#: guix-git/doc/guix.texi:27557 #, no-wrap msgid "@code{package} (default: @var{gmnisrv})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:27222 +#: guix-git/doc/guix.texi:27559 msgid "Package object of the gmnisrv server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27223 +#: guix-git/doc/guix.texi:27560 #, no-wrap msgid "@code{config-file} (default: @code{%default-gmnisrv-config-file})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27229 +#: guix-git/doc/guix.texi:27566 msgid "File-like object of the gmnisrv configuration file to use. The default configuration listens on port 1965 and serves files from @file{/srv/gemini}. Certificates are stored in @file{/var/lib/gemini/certs}. For more information, run @command{man gmnisrv} and @command{man gmnisrv.ini}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27233 +#: guix-git/doc/guix.texi:27570 #, no-wrap msgid "Agate" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27235 +#: guix-git/doc/guix.texi:27572 #, no-wrap msgid "agate" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27240 +#: guix-git/doc/guix.texi:27577 msgid "The @uref{gemini://qwertqwefsday.eu/agate.gmi, Agate} (@uref{https://github.com/mbrubeck/agate, GitHub page over HTTPS}) program is a simple @uref{https://gemini.circumlunar.space/, Gemini} protocol server written in Rust." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27241 +#: guix-git/doc/guix.texi:27578 #, no-wrap msgid "{Scheme Variable} agate-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: deffn -#: guix-git/doc/guix.texi:27244 +#: guix-git/doc/guix.texi:27581 msgid "This is the type of the agate service, whose value should be an @code{agate-service-type} object, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27251 +#: guix-git/doc/guix.texi:27588 #, no-wrap msgid "" "(service agate-service-type\n" @@ -49909,17 +50658,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27256 +#: guix-git/doc/guix.texi:27593 msgid "The example above represents the minimal tweaking necessary to get Agate up and running. Specifying the path to the certificate and key is always necessary, as the Gemini protocol requires TLS by default." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27259 +#: guix-git/doc/guix.texi:27596 msgid "To obtain a certificate and a key, you could, for example, use OpenSSL, running a command similar to the following example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:27263 +#: guix-git/doc/guix.texi:27600 #, no-wrap msgid "" "openssl req -x509 -newkey rsa:4096 -keyout key.rsa -out cert.pem \\\n" @@ -49927,220 +50676,220 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27268 +#: guix-git/doc/guix.texi:27605 msgid "Of course, you'll have to replace @i{example.com} with your own domain name, and then point the Agate configuration towards the path of the generated key and certificate." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27271 +#: guix-git/doc/guix.texi:27608 #, no-wrap msgid "{Data Type} agate-configuration" msgstr "{Data Type} pagekite-configuration" #. type: deftp -#: guix-git/doc/guix.texi:27273 +#: guix-git/doc/guix.texi:27610 msgid "Data type representing the configuration of Agate." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:27275 +#: guix-git/doc/guix.texi:27612 #, no-wrap msgid "@code{package} (default: @code{agate})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:27277 +#: guix-git/doc/guix.texi:27614 msgid "The package object of the Agate server." msgstr "Пакет для использования." #. type: item -#: guix-git/doc/guix.texi:27278 +#: guix-git/doc/guix.texi:27615 #, no-wrap msgid "@code{content} (default: @file{\"/srv/gemini\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:27280 +#: guix-git/doc/guix.texi:27617 msgid "The directory from which Agate will serve files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27281 +#: guix-git/doc/guix.texi:27618 #, no-wrap msgid "@code{cert} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:27284 +#: guix-git/doc/guix.texi:27621 msgid "The path to the TLS certificate PEM file to be used for encrypted connections. Must be filled in with a value from the user." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27285 guix-git/doc/guix.texi:27721 +#: guix-git/doc/guix.texi:27622 guix-git/doc/guix.texi:28058 #, no-wrap msgid "@code{key} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27288 +#: guix-git/doc/guix.texi:27625 msgid "The path to the PKCS8 private key file to be used for encrypted connections. Must be filled in with a value from the user." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27289 +#: guix-git/doc/guix.texi:27626 #, no-wrap msgid "@code{addr} (default: @code{'(\"0.0.0.0:1965\" \"[::]:1965\")})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:27291 +#: guix-git/doc/guix.texi:27628 msgid "A list of the addresses to listen on." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27294 +#: guix-git/doc/guix.texi:27631 msgid "The domain name of this Gemini server. Optional." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27295 +#: guix-git/doc/guix.texi:27632 #, no-wrap msgid "@code{lang} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:27297 +#: guix-git/doc/guix.texi:27634 msgid "RFC 4646 language code(s) for text/gemini documents. Optional." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27298 +#: guix-git/doc/guix.texi:27635 #, no-wrap msgid "@code{silent?} (default: @code{#f})" msgstr "@code{snippet} (по умолчанию: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:27300 +#: guix-git/doc/guix.texi:27637 msgid "Set to @code{#t} to disable logging output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27301 +#: guix-git/doc/guix.texi:27638 #, no-wrap msgid "@code{serve-secret?} (default: @code{#f})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27304 +#: guix-git/doc/guix.texi:27641 msgid "Set to @code{#t} to serve secret files (files/directories starting with a dot)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27305 +#: guix-git/doc/guix.texi:27642 #, no-wrap msgid "@code{log-ip?} (default: @code{#t})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:27307 +#: guix-git/doc/guix.texi:27644 msgid "Whether or not to output IP addresses when logging." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27308 +#: guix-git/doc/guix.texi:27645 #, no-wrap msgid "@code{user} (default: @code{\"agate\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:27310 +#: guix-git/doc/guix.texi:27647 msgid "Owner of the @code{agate} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27311 +#: guix-git/doc/guix.texi:27648 #, no-wrap msgid "@code{group} (default: @code{\"agate\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:27313 +#: guix-git/doc/guix.texi:27650 msgid "Owner's group of the @code{agate} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27314 +#: guix-git/doc/guix.texi:27651 #, no-wrap msgid "@code{log-file} (default: @file{\"/var/log/agate.log\"})" msgstr "@code{daemon-socket} (default: @code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:27316 +#: guix-git/doc/guix.texi:27653 msgid "The file which should store the logging output of Agate." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27323 +#: guix-git/doc/guix.texi:27660 #, no-wrap msgid "Web" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27324 +#: guix-git/doc/guix.texi:27661 #, no-wrap msgid "HTTP, HTTPS" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27325 +#: guix-git/doc/guix.texi:27662 #, no-wrap msgid "Let's Encrypt" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27326 +#: guix-git/doc/guix.texi:27663 #, no-wrap msgid "TLS certificates" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27333 +#: guix-git/doc/guix.texi:27670 msgid "The @code{(gnu services certbot)} module provides a service to automatically obtain a valid TLS certificate from the Let's Encrypt certificate authority. These certificates can then be used to serve content securely over HTTPS or other TLS-based protocols, with the knowledge that the client will be able to verify the server's authenticity." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27345 +#: guix-git/doc/guix.texi:27682 msgid "@url{https://letsencrypt.org/, Let's Encrypt} provides the @code{certbot} tool to automate the certification process. This tool first securely generates a key on the server. It then makes a request to the Let's Encrypt certificate authority (CA) to sign the key. The CA checks that the request originates from the host in question by using a challenge-response protocol, requiring the server to provide its response over HTTP@. If that protocol completes successfully, the CA signs the key, resulting in a certificate. That certificate is valid for a limited period of time, and therefore to continue to provide TLS services, the server needs to periodically ask the CA to renew its signature." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27352 +#: guix-git/doc/guix.texi:27689 msgid "The certbot service automates this process: the initial key generation, the initial certification request to the Let's Encrypt service, the web server challenge/response integration, writing the certificate to disk, the automated periodic renewals, and the deployment tasks associated with the renewal (e.g.@: reloading services, copying keys with different permissions)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27358 +#: guix-git/doc/guix.texi:27695 msgid "Certbot is run twice a day, at a random minute within the hour. It won't do anything until your certificates are due for renewal or revoked, but running it regularly would give your service a chance of staying online in case a Let's Encrypt-initiated revocation happened for some reason." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27362 +#: guix-git/doc/guix.texi:27699 msgid "By using this service, you agree to the ACME Subscriber Agreement, which can be found there: @url{https://acme-v01.api.letsencrypt.org/directory}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27363 +#: guix-git/doc/guix.texi:27700 #, no-wrap msgid "{Scheme Variable} certbot-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27366 +#: guix-git/doc/guix.texi:27703 msgid "A service type for the @code{certbot} Let's Encrypt client. Its value must be a @code{certbot-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27373 +#: guix-git/doc/guix.texi:27710 #, no-wrap msgid "" "(define %nginx-deploy-hook\n" @@ -50152,7 +50901,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27384 +#: guix-git/doc/guix.texi:27721 #, no-wrap msgid "" "(service certbot-service-type\n" @@ -50168,241 +50917,241 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27387 +#: guix-git/doc/guix.texi:27724 msgid "See below for details about @code{certbot-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27389 +#: guix-git/doc/guix.texi:27726 #, no-wrap msgid "{Data Type} certbot-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27392 +#: guix-git/doc/guix.texi:27729 msgid "Data type representing the configuration of the @code{certbot} service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27394 +#: guix-git/doc/guix.texi:27731 #, no-wrap msgid "@code{package} (default: @code{certbot})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27396 +#: guix-git/doc/guix.texi:27733 msgid "The certbot package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27397 +#: guix-git/doc/guix.texi:27734 #, no-wrap msgid "@code{webroot} (default: @code{/var/www})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27400 +#: guix-git/doc/guix.texi:27737 msgid "The directory from which to serve the Let's Encrypt challenge/response files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27401 +#: guix-git/doc/guix.texi:27738 #, no-wrap msgid "@code{certificates} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27405 +#: guix-git/doc/guix.texi:27742 msgid "A list of @code{certificates-configuration}s for which to generate certificates and request signatures. Each certificate has a @code{name} and several @code{domains}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27406 +#: guix-git/doc/guix.texi:27743 #, no-wrap msgid "@code{email} (default: @code{#f})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:27410 +#: guix-git/doc/guix.texi:27747 msgid "Optional email address used for registration and recovery contact. Setting this is encouraged as it allows you to receive important notifications about the account and issued certificates." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27411 guix-git/doc/guix.texi:29158 +#: guix-git/doc/guix.texi:27748 guix-git/doc/guix.texi:29495 #, no-wrap msgid "@code{server} (default: @code{#f})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:27414 +#: guix-git/doc/guix.texi:27751 msgid "Optional URL of ACME server. Setting this overrides certbot's default, which is the Let's Encrypt server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27415 +#: guix-git/doc/guix.texi:27752 #, no-wrap msgid "@code{rsa-key-size} (default: @code{2048})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27417 +#: guix-git/doc/guix.texi:27754 msgid "Size of the RSA key." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27418 +#: guix-git/doc/guix.texi:27755 #, no-wrap msgid "@code{default-location} (default: @i{see below})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27427 +#: guix-git/doc/guix.texi:27764 msgid "The default @code{nginx-location-configuration}. Because @code{certbot} needs to be able to serve challenges and responses, it needs to be able to run a web server. It does so by extending the @code{nginx} web service with an @code{nginx-server-configuration} listening on the @var{domains} on port 80, and which has a @code{nginx-location-configuration} for the @code{/.well-known/} URI path subspace used by Let's Encrypt. @xref{Web Services}, for more on these nginx configuration data types." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27431 +#: guix-git/doc/guix.texi:27768 msgid "Requests to other URL paths will be matched by the @code{default-location}, which if present is added to all @code{nginx-server-configuration}s." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27435 +#: guix-git/doc/guix.texi:27772 msgid "By default, the @code{default-location} will issue a redirect from @code{http://@var{domain}/...} to @code{https://@var{domain}/...}, leaving you to define what to serve on your site via @code{https}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27437 +#: guix-git/doc/guix.texi:27774 msgid "Pass @code{#f} to not issue a default location." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27440 +#: guix-git/doc/guix.texi:27777 #, no-wrap msgid "{Data Type} certificate-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27443 +#: guix-git/doc/guix.texi:27780 msgid "Data type representing the configuration of a certificate. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27445 +#: guix-git/doc/guix.texi:27782 #, no-wrap msgid "@code{name} (default: @i{see below})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27449 +#: guix-git/doc/guix.texi:27786 msgid "This name is used by Certbot for housekeeping and in file paths; it doesn't affect the content of the certificate itself. To see certificate names, run @code{certbot certificates}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27451 +#: guix-git/doc/guix.texi:27788 msgid "Its default is the first provided domain." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27452 +#: guix-git/doc/guix.texi:27789 #, no-wrap msgid "@code{domains} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27455 +#: guix-git/doc/guix.texi:27792 msgid "The first domain provided will be the subject CN of the certificate, and all domains will be Subject Alternative Names on the certificate." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27456 +#: guix-git/doc/guix.texi:27793 #, no-wrap msgid "@code{challenge} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27463 +#: guix-git/doc/guix.texi:27800 msgid "The challenge type that has to be run by certbot. If @code{#f} is specified, default to the HTTP challenge. If a value is specified, defaults to the manual plugin (see @code{authentication-hook}, @code{cleanup-hook} and the documentation at @url{https://certbot.eff.org/docs/using.html#hooks}), and gives Let's Encrypt permission to log the public IP address of the requesting machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27464 +#: guix-git/doc/guix.texi:27801 #, fuzzy, no-wrap msgid "@code{csr} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:27471 +#: guix-git/doc/guix.texi:27808 msgid "File name of Certificate Signing Request (CSR) in DER or PEM format. If @code{#f} is specified, this argument will not be passed to certbot. If a value is specified, certbot will use it to obtain a certificate, instead of using a self-generated CSR. The domain-name(s) mentioned in @code{domains}, must be consistent with the domain-name(s) mentioned in CSR file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27472 +#: guix-git/doc/guix.texi:27809 #, no-wrap msgid "@code{authentication-hook} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27478 +#: guix-git/doc/guix.texi:27815 msgid "Command to be run in a shell once for each certificate challenge to be answered. For this command, the shell variable @code{$CERTBOT_DOMAIN} will contain the domain being authenticated, @code{$CERTBOT_VALIDATION} contains the validation string and @code{$CERTBOT_TOKEN} contains the file name of the resource requested when performing an HTTP-01 challenge." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27479 +#: guix-git/doc/guix.texi:27816 #, no-wrap msgid "@code{cleanup-hook} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27485 +#: guix-git/doc/guix.texi:27822 msgid "Command to be run in a shell once for each certificate challenge that have been answered by the @code{auth-hook}. For this command, the shell variables available in the @code{auth-hook} script are still available, and additionally @code{$CERTBOT_AUTH_OUTPUT} will contain the standard output of the @code{auth-hook} script." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27486 +#: guix-git/doc/guix.texi:27823 #, no-wrap msgid "@code{deploy-hook} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27494 +#: guix-git/doc/guix.texi:27831 msgid "Command to be run in a shell once for each successfully issued certificate. For this command, the shell variable @code{$RENEWED_LINEAGE} will point to the config live subdirectory (for example, @samp{\"/etc/letsencrypt/live/example.com\"}) containing the new certificates and keys; the shell variable @code{$RENEWED_DOMAINS} will contain a space-delimited list of renewed certificate domains (for example, @samp{\"example.com www.example.com\"}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27501 +#: guix-git/doc/guix.texi:27838 msgid "For each @code{certificate-configuration}, the certificate is saved to @code{/etc/letsencrypt/live/@var{name}/fullchain.pem} and the key is saved to @code{/etc/letsencrypt/live/@var{name}/privkey.pem}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27503 +#: guix-git/doc/guix.texi:27840 #, no-wrap msgid "DNS (domain name system)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27504 +#: guix-git/doc/guix.texi:27841 #, no-wrap msgid "domain name system (DNS)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27512 +#: guix-git/doc/guix.texi:27849 msgid "The @code{(gnu services dns)} module provides services related to the @dfn{domain name system} (DNS). It provides a server service for hosting an @emph{authoritative} DNS server for multiple zones, slave or master. This service uses @uref{https://www.knot-dns.cz/, Knot DNS}. And also a caching and forwarding DNS server for the LAN, which uses @uref{http://www.thekelleys.org.uk/dnsmasq/doc.html, dnsmasq}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27513 +#: guix-git/doc/guix.texi:27850 #, no-wrap msgid "Knot Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27517 +#: guix-git/doc/guix.texi:27854 msgid "An example configuration of an authoritative server for two zones, one master and one slave, is:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27524 +#: guix-git/doc/guix.texi:27861 #, no-wrap msgid "" "(define-zone-entries example.org.zone\n" @@ -50414,7 +51163,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27531 +#: guix-git/doc/guix.texi:27868 #, no-wrap msgid "" "(define master-zone\n" @@ -50427,7 +51176,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27537 +#: guix-git/doc/guix.texi:27874 #, no-wrap msgid "" "(define slave-zone\n" @@ -50439,7 +51188,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27542 +#: guix-git/doc/guix.texi:27879 #, no-wrap msgid "" "(define plop-master\n" @@ -50450,7 +51199,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27551 +#: guix-git/doc/guix.texi:27888 #, no-wrap msgid "" "(operating-system\n" @@ -50464,857 +51213,857 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27553 +#: guix-git/doc/guix.texi:27890 #, no-wrap msgid "{Scheme Variable} knot-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27555 +#: guix-git/doc/guix.texi:27892 msgid "This is the type for the Knot DNS server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27563 +#: guix-git/doc/guix.texi:27900 msgid "Knot DNS is an authoritative DNS server, meaning that it can serve multiple zones, that is to say domain names you would buy from a registrar. This server is not a resolver, meaning that it can only resolve names for which it is authoritative. This server can be configured to serve zones as a master server or a slave server as a per-zone basis. Slave zones will get their data from masters, and will serve it as an authoritative server. From the point of view of a resolver, there is no difference between master and slave." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27565 +#: guix-git/doc/guix.texi:27902 msgid "The following data types are used to configure the Knot DNS server:" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27567 +#: guix-git/doc/guix.texi:27904 #, no-wrap msgid "{Data Type} knot-key-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27570 +#: guix-git/doc/guix.texi:27907 msgid "Data type representing a key. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27572 guix-git/doc/guix.texi:27592 -#: guix-git/doc/guix.texi:27707 guix-git/doc/guix.texi:27733 -#: guix-git/doc/guix.texi:27768 +#: guix-git/doc/guix.texi:27909 guix-git/doc/guix.texi:27929 +#: guix-git/doc/guix.texi:28044 guix-git/doc/guix.texi:28070 +#: guix-git/doc/guix.texi:28105 #, no-wrap msgid "@code{id} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27575 guix-git/doc/guix.texi:27595 +#: guix-git/doc/guix.texi:27912 guix-git/doc/guix.texi:27932 msgid "An identifier for other configuration fields to refer to this key. IDs must be unique and must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27576 +#: guix-git/doc/guix.texi:27913 #, no-wrap msgid "@code{algorithm} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27580 +#: guix-git/doc/guix.texi:27917 msgid "The algorithm to use. Choose between @code{#f}, @code{'hmac-md5}, @code{'hmac-sha1}, @code{'hmac-sha224}, @code{'hmac-sha256}, @code{'hmac-sha384} and @code{'hmac-sha512}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27581 +#: guix-git/doc/guix.texi:27918 #, no-wrap msgid "@code{secret} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27583 +#: guix-git/doc/guix.texi:27920 msgid "The secret key itself." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27587 +#: guix-git/doc/guix.texi:27924 #, no-wrap msgid "{Data Type} knot-acl-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27590 +#: guix-git/doc/guix.texi:27927 msgid "Data type representing an Access Control List (ACL) configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27596 guix-git/doc/guix.texi:27711 +#: guix-git/doc/guix.texi:27933 guix-git/doc/guix.texi:28048 #, no-wrap msgid "@code{address} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27600 +#: guix-git/doc/guix.texi:27937 msgid "An ordered list of IP addresses, network subnets, or network ranges represented with strings. The query must match one of them. Empty value means that address match is not required." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27601 +#: guix-git/doc/guix.texi:27938 #, no-wrap msgid "@code{key} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27605 +#: guix-git/doc/guix.texi:27942 msgid "An ordered list of references to keys represented with strings. The string must match a key ID defined in a @code{knot-key-configuration}. No key means that a key is not require to match that ACL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27606 +#: guix-git/doc/guix.texi:27943 #, no-wrap msgid "@code{action} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27610 +#: guix-git/doc/guix.texi:27947 msgid "An ordered list of actions that are permitted or forbidden by this ACL@. Possible values are lists of zero or more elements from @code{'transfer}, @code{'notify} and @code{'update}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27611 +#: guix-git/doc/guix.texi:27948 #, no-wrap msgid "@code{deny?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27614 +#: guix-git/doc/guix.texi:27951 msgid "When true, the ACL defines restrictions. Listed actions are forbidden. When false, listed actions are allowed." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27618 +#: guix-git/doc/guix.texi:27955 #, no-wrap msgid "{Data Type} zone-entry" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27621 +#: guix-git/doc/guix.texi:27958 msgid "Data type representing a record entry in a zone file. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27623 +#: guix-git/doc/guix.texi:27960 #, no-wrap msgid "@code{name} (default: @code{\"@@\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27629 +#: guix-git/doc/guix.texi:27966 msgid "The name of the record. @code{\"@@\"} refers to the origin of the zone. Names are relative to the origin of the zone. For example, in the @code{example.org} zone, @code{\"ns.example.org\"} actually refers to @code{ns.example.org.example.org}. Names ending with a dot are absolute, which means that @code{\"ns.example.org.\"} refers to @code{ns.example.org}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27630 +#: guix-git/doc/guix.texi:27967 #, no-wrap msgid "@code{ttl} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27632 +#: guix-git/doc/guix.texi:27969 msgid "The Time-To-Live (TTL) of this record. If not set, the default TTL is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27633 +#: guix-git/doc/guix.texi:27970 #, no-wrap msgid "@code{class} (default: @code{\"IN\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27636 +#: guix-git/doc/guix.texi:27973 msgid "The class of the record. Knot currently supports only @code{\"IN\"} and partially @code{\"CH\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27637 +#: guix-git/doc/guix.texi:27974 #, no-wrap msgid "@code{type} (default: @code{\"A\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27641 +#: guix-git/doc/guix.texi:27978 msgid "The type of the record. Common types include A (IPv4 address), AAAA (IPv6 address), NS (Name Server) and MX (Mail eXchange). Many other types are defined." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27642 +#: guix-git/doc/guix.texi:27979 #, no-wrap msgid "@code{data} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27646 +#: guix-git/doc/guix.texi:27983 msgid "The data contained in the record. For instance an IP address associated with an A record, or a domain name associated with an NS record. Remember that domain names are relative to the origin unless they end with a dot." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27650 +#: guix-git/doc/guix.texi:27987 #, no-wrap msgid "{Data Type} zone-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27653 +#: guix-git/doc/guix.texi:27990 msgid "Data type representing the content of a zone file. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27662 +#: guix-git/doc/guix.texi:27999 msgid "The list of entries. The SOA record is taken care of, so you don't need to put it in the list of entries. This list should probably contain an entry for your primary authoritative DNS server. Other than using a list of entries directly, you can use @code{define-zone-entries} to define a object containing the list of entries more easily, that you can later pass to the @code{entries} field of the @code{zone-file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27663 +#: guix-git/doc/guix.texi:28000 #, no-wrap msgid "@code{origin} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27665 +#: guix-git/doc/guix.texi:28002 msgid "The name of your zone. This parameter cannot be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27666 +#: guix-git/doc/guix.texi:28003 #, no-wrap msgid "@code{ns} (default: @code{\"ns\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27671 +#: guix-git/doc/guix.texi:28008 msgid "The domain of your primary authoritative DNS server. The name is relative to the origin, unless it ends with a dot. It is mandatory that this primary DNS server corresponds to an NS record in the zone and that it is associated to an IP address in the list of entries." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27672 +#: guix-git/doc/guix.texi:28009 #, no-wrap msgid "@code{mail} (default: @code{\"hostmaster\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27675 +#: guix-git/doc/guix.texi:28012 msgid "An email address people can contact you at, as the owner of the zone. This is translated as @code{@@}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27676 +#: guix-git/doc/guix.texi:28013 #, no-wrap msgid "@code{serial} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27680 +#: guix-git/doc/guix.texi:28017 msgid "The serial number of the zone. As this is used to keep track of changes by both slaves and resolvers, it is mandatory that it @emph{never} decreases. Always increment it when you make a change in your zone." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27681 +#: guix-git/doc/guix.texi:28018 #, no-wrap msgid "@code{refresh} (default: @code{(* 2 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27685 +#: guix-git/doc/guix.texi:28022 msgid "The frequency at which slaves will do a zone transfer. This value is a number of seconds. It can be computed by multiplications or with @code{(string->duration)}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27686 +#: guix-git/doc/guix.texi:28023 #, no-wrap msgid "@code{retry} (default: @code{(* 15 60)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27689 +#: guix-git/doc/guix.texi:28026 msgid "The period after which a slave will retry to contact its master when it fails to do so a first time." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27690 +#: guix-git/doc/guix.texi:28027 #, no-wrap msgid "@code{expiry} (default: @code{(* 14 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27694 +#: guix-git/doc/guix.texi:28031 msgid "Default TTL of records. Existing records are considered correct for at most this amount of time. After this period, resolvers will invalidate their cache and check again that it still exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27695 +#: guix-git/doc/guix.texi:28032 #, no-wrap msgid "@code{nx} (default: @code{3600})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27698 +#: guix-git/doc/guix.texi:28035 msgid "Default TTL of inexistent records. This delay is usually short because you want your new domains to reach everyone quickly." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27702 +#: guix-git/doc/guix.texi:28039 #, no-wrap msgid "{Data Type} knot-remote-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27705 +#: guix-git/doc/guix.texi:28042 msgid "Data type representing a remote configuration. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27710 +#: guix-git/doc/guix.texi:28047 msgid "An identifier for other configuration fields to refer to this remote. IDs must be unique and must not be empty." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27715 +#: guix-git/doc/guix.texi:28052 msgid "An ordered list of destination IP addresses. Addresses are tried in sequence. An optional port can be given with the @@ separator. For instance: @code{(list \"1.2.3.4\" \"2.3.4.5@@53\")}. Default port is 53." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27716 +#: guix-git/doc/guix.texi:28053 #, no-wrap msgid "@code{via} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27720 +#: guix-git/doc/guix.texi:28057 msgid "An ordered list of source IP addresses. An empty list will have Knot choose an appropriate source IP@. An optional port can be given with the @@ separator. The default is to choose at random." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27724 +#: guix-git/doc/guix.texi:28061 msgid "A reference to a key, that is a string containing the identifier of a key defined in a @code{knot-key-configuration} field." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27728 +#: guix-git/doc/guix.texi:28065 #, no-wrap msgid "{Data Type} knot-keystore-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27731 +#: guix-git/doc/guix.texi:28068 msgid "Data type representing a keystore to hold dnssec keys. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27735 +#: guix-git/doc/guix.texi:28072 msgid "The id of the keystore. It must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27736 +#: guix-git/doc/guix.texi:28073 #, no-wrap msgid "@code{backend} (default: @code{'pem})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27738 +#: guix-git/doc/guix.texi:28075 msgid "The backend to store the keys in. Can be @code{'pem} or @code{'pkcs11}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27739 +#: guix-git/doc/guix.texi:28076 #, no-wrap msgid "@code{config} (default: @code{\"/var/lib/knot/keys/keys\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27743 +#: guix-git/doc/guix.texi:28080 msgid "The configuration string of the backend. An example for the PKCS#11 is: @code{\"pkcs11:token=knot;pin-value=1234 /gnu/store/.../lib/pkcs11/libsofthsm2.so\"}. For the pem backend, the string represents a path in the file system." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27747 +#: guix-git/doc/guix.texi:28084 #, no-wrap msgid "{Data Type} knot-policy-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27751 +#: guix-git/doc/guix.texi:28088 msgid "Data type representing a dnssec policy. Knot DNS is able to automatically sign your zones. It can either generate and manage your keys automatically or use keys that you generate." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27758 +#: guix-git/doc/guix.texi:28095 msgid "Dnssec is usually implemented using two keys: a Key Signing Key (KSK) that is used to sign the second, and a Zone Signing Key (ZSK) that is used to sign the zone. In order to be trusted, the KSK needs to be present in the parent zone (usually a top-level domain). If your registrar supports dnssec, you will have to send them your KSK's hash so they can add a DS record in their zone. This is not automated and need to be done each time you change your KSK." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27764 +#: guix-git/doc/guix.texi:28101 msgid "The policy also defines the lifetime of keys. Usually, ZSK can be changed easily and use weaker cryptographic functions (they use lower parameters) in order to sign records quickly, so they are changed often. The KSK however requires manual interaction with the registrar, so they are changed less often and use stronger parameters because they sign only one record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27766 +#: guix-git/doc/guix.texi:28103 msgid "This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27770 +#: guix-git/doc/guix.texi:28107 msgid "The id of the policy. It must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27771 +#: guix-git/doc/guix.texi:28108 #, no-wrap msgid "@code{keystore} (default: @code{\"default\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27776 +#: guix-git/doc/guix.texi:28113 msgid "A reference to a keystore, that is a string containing the identifier of a keystore defined in a @code{knot-keystore-configuration} field. The @code{\"default\"} identifier means the default keystore (a kasp database that was setup by this service)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27777 +#: guix-git/doc/guix.texi:28114 #, no-wrap msgid "@code{manual?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27779 +#: guix-git/doc/guix.texi:28116 msgid "Whether the key management is manual or automatic." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27780 +#: guix-git/doc/guix.texi:28117 #, no-wrap msgid "@code{single-type-signing?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27782 +#: guix-git/doc/guix.texi:28119 msgid "When @code{#t}, use the Single-Type Signing Scheme." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27783 +#: guix-git/doc/guix.texi:28120 #, no-wrap msgid "@code{algorithm} (default: @code{\"ecdsap256sha256\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27785 +#: guix-git/doc/guix.texi:28122 msgid "An algorithm of signing keys and issued signatures." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27786 +#: guix-git/doc/guix.texi:28123 #, no-wrap msgid "@code{ksk-size} (default: @code{256})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27789 +#: guix-git/doc/guix.texi:28126 msgid "The length of the KSK@. Note that this value is correct for the default algorithm, but would be unsecure for other algorithms." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27790 +#: guix-git/doc/guix.texi:28127 #, no-wrap msgid "@code{zsk-size} (default: @code{256})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27793 +#: guix-git/doc/guix.texi:28130 msgid "The length of the ZSK@. Note that this value is correct for the default algorithm, but would be unsecure for other algorithms." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27794 +#: guix-git/doc/guix.texi:28131 #, no-wrap msgid "@code{dnskey-ttl} (default: @code{'default})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27797 +#: guix-git/doc/guix.texi:28134 msgid "The TTL value for DNSKEY records added into zone apex. The special @code{'default} value means same as the zone SOA TTL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27798 +#: guix-git/doc/guix.texi:28135 #, no-wrap msgid "@code{zsk-lifetime} (default: @code{(* 30 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27800 +#: guix-git/doc/guix.texi:28137 msgid "The period between ZSK publication and the next rollover initiation." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27801 +#: guix-git/doc/guix.texi:28138 #, no-wrap msgid "@code{propagation-delay} (default: @code{(* 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27804 +#: guix-git/doc/guix.texi:28141 msgid "An extra delay added for each key rollover step. This value should be high enough to cover propagation of data from the master server to all slaves." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27805 +#: guix-git/doc/guix.texi:28142 #, no-wrap msgid "@code{rrsig-lifetime} (default: @code{(* 14 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27807 +#: guix-git/doc/guix.texi:28144 msgid "A validity period of newly issued signatures." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27808 +#: guix-git/doc/guix.texi:28145 #, no-wrap msgid "@code{rrsig-refresh} (default: @code{(* 7 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27810 +#: guix-git/doc/guix.texi:28147 msgid "A period how long before a signature expiration the signature will be refreshed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27811 +#: guix-git/doc/guix.texi:28148 #, no-wrap msgid "@code{nsec3?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27813 +#: guix-git/doc/guix.texi:28150 msgid "When @code{#t}, NSEC3 will be used instead of NSEC." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27814 +#: guix-git/doc/guix.texi:28151 #, no-wrap msgid "@code{nsec3-iterations} (default: @code{5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27816 +#: guix-git/doc/guix.texi:28153 msgid "The number of additional times the hashing is performed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27817 +#: guix-git/doc/guix.texi:28154 #, no-wrap msgid "@code{nsec3-salt-length} (default: @code{8})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27820 +#: guix-git/doc/guix.texi:28157 msgid "The length of a salt field in octets, which is appended to the original owner name before hashing." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27821 +#: guix-git/doc/guix.texi:28158 #, no-wrap msgid "@code{nsec3-salt-lifetime} (default: @code{(* 30 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27823 +#: guix-git/doc/guix.texi:28160 msgid "The validity period of newly issued salt field." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27827 +#: guix-git/doc/guix.texi:28164 #, no-wrap msgid "{Data Type} knot-zone-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27830 +#: guix-git/doc/guix.texi:28167 msgid "Data type representing a zone served by Knot. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27832 +#: guix-git/doc/guix.texi:28169 #, no-wrap msgid "@code{domain} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27834 +#: guix-git/doc/guix.texi:28171 msgid "The domain served by this configuration. It must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27835 +#: guix-git/doc/guix.texi:28172 #, no-wrap msgid "@code{file} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27838 +#: guix-git/doc/guix.texi:28175 msgid "The file where this zone is saved. This parameter is ignored by master zones. Empty means default location that depends on the domain name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27839 +#: guix-git/doc/guix.texi:28176 #, no-wrap msgid "@code{zone} (default: @code{(zone-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27842 +#: guix-git/doc/guix.texi:28179 msgid "The content of the zone file. This parameter is ignored by slave zones. It must contain a zone-file record." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27843 +#: guix-git/doc/guix.texi:28180 #, no-wrap msgid "@code{master} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27846 +#: guix-git/doc/guix.texi:28183 msgid "A list of master remotes. When empty, this zone is a master. When set, this zone is a slave. This is a list of remotes identifiers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27847 +#: guix-git/doc/guix.texi:28184 #, no-wrap msgid "@code{ddns-master} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27850 +#: guix-git/doc/guix.texi:28187 msgid "The main master. When empty, it defaults to the first master in the list of masters." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27851 +#: guix-git/doc/guix.texi:28188 #, no-wrap msgid "@code{notify} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27853 +#: guix-git/doc/guix.texi:28190 msgid "A list of slave remote identifiers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27854 +#: guix-git/doc/guix.texi:28191 #, no-wrap msgid "@code{acl} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27856 +#: guix-git/doc/guix.texi:28193 msgid "A list of acl identifiers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27857 +#: guix-git/doc/guix.texi:28194 #, no-wrap msgid "@code{semantic-checks?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27859 +#: guix-git/doc/guix.texi:28196 msgid "When set, this adds more semantic checks to the zone." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27860 +#: guix-git/doc/guix.texi:28197 #, no-wrap msgid "@code{zonefile-sync} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27863 +#: guix-git/doc/guix.texi:28200 msgid "The delay between a modification in memory and on disk. 0 means immediate synchronization." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27864 +#: guix-git/doc/guix.texi:28201 #, no-wrap msgid "@code{zonefile-load} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27867 +#: guix-git/doc/guix.texi:28204 msgid "The way the zone file contents are applied during zone load. Possible values are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27869 +#: guix-git/doc/guix.texi:28206 #, no-wrap msgid "@code{#f} for using the default value from Knot," msgstr "" #. type: item -#: guix-git/doc/guix.texi:27870 +#: guix-git/doc/guix.texi:28207 #, no-wrap msgid "@code{'none} for not using the zone file at all," msgstr "" #. type: item -#: guix-git/doc/guix.texi:27871 +#: guix-git/doc/guix.texi:28208 #, no-wrap msgid "@code{'difference} for computing the difference between already available" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:27873 +#: guix-git/doc/guix.texi:28210 msgid "contents and zone contents and applying it to the current zone contents," msgstr "" #. type: item -#: guix-git/doc/guix.texi:27873 +#: guix-git/doc/guix.texi:28210 #, no-wrap msgid "@code{'difference-no-serial} for the same as @code{'difference}, but" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:27876 +#: guix-git/doc/guix.texi:28213 msgid "ignoring the SOA serial in the zone file, while the server takes care of it automatically." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27876 +#: guix-git/doc/guix.texi:28213 #, no-wrap msgid "@code{'whole} for loading zone contents from the zone file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27879 +#: guix-git/doc/guix.texi:28216 #, no-wrap msgid "@code{journal-content} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27884 +#: guix-git/doc/guix.texi:28221 msgid "The way the journal is used to store zone and its changes. Possible values are @code{'none} to not use it at all, @code{'changes} to store changes and @code{'all} to store contents. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27885 +#: guix-git/doc/guix.texi:28222 #, no-wrap msgid "@code{max-journal-usage} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27888 +#: guix-git/doc/guix.texi:28225 msgid "The maximum size for the journal on disk. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27889 +#: guix-git/doc/guix.texi:28226 #, no-wrap msgid "@code{max-journal-depth} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27892 +#: guix-git/doc/guix.texi:28229 msgid "The maximum size of the history. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27893 +#: guix-git/doc/guix.texi:28230 #, no-wrap msgid "@code{max-zone-size} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27897 +#: guix-git/doc/guix.texi:28234 msgid "The maximum size of the zone file. This limit is enforced for incoming transfer and updates. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27898 +#: guix-git/doc/guix.texi:28235 #, no-wrap msgid "@code{dnssec-policy} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27902 +#: guix-git/doc/guix.texi:28239 msgid "A reference to a @code{knot-policy-configuration} record, or the special name @code{\"default\"}. If the value is @code{#f}, there is no dnssec signing on this zone." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27903 +#: guix-git/doc/guix.texi:28240 #, no-wrap msgid "@code{serial-policy} (default: @code{'increment})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27905 +#: guix-git/doc/guix.texi:28242 msgid "A policy between @code{'increment} and @code{'unixtime}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27909 +#: guix-git/doc/guix.texi:28246 #, no-wrap msgid "{Data Type} knot-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27912 +#: guix-git/doc/guix.texi:28249 msgid "Data type representing the Knot configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27914 +#: guix-git/doc/guix.texi:28251 #, no-wrap msgid "@code{knot} (default: @code{knot})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27916 +#: guix-git/doc/guix.texi:28253 msgid "The Knot package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27917 +#: guix-git/doc/guix.texi:28254 #, no-wrap msgid "@code{run-directory} (default: @code{\"/var/run/knot\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27919 +#: guix-git/doc/guix.texi:28256 msgid "The run directory. This directory will be used for pid file and sockets." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27920 +#: guix-git/doc/guix.texi:28257 #, no-wrap msgid "@code{includes} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27923 +#: guix-git/doc/guix.texi:28260 msgid "A list of strings or file-like objects denoting other files that must be included at the top of the configuration file." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27924 +#: guix-git/doc/guix.texi:28261 #, no-wrap msgid "secrets, Knot service" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27930 +#: guix-git/doc/guix.texi:28267 msgid "This can be used to manage secrets out-of-band. For example, secret keys may be stored in an out-of-band file not managed by Guix, and thus not visible in @file{/gnu/store}---e.g., you could store secret key configuration in @file{/etc/knot/secrets.conf} and add this file to the @code{includes} list." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27935 +#: guix-git/doc/guix.texi:28272 msgid "One can generate a secret tsig key (for nsupdate and zone transfers with the keymgr command from the knot package. Note that the package is not automatically installed by the service. The following example shows how to generate a new tsig key:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:27939 +#: guix-git/doc/guix.texi:28276 #, no-wrap msgid "" "keymgr -t mysecret > /etc/knot/secrets.conf\n" @@ -51322,106 +52071,106 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27945 +#: guix-git/doc/guix.texi:28282 msgid "Also note that the generated key will be named @var{mysecret}, so it is the name that needs to be used in the @var{key} field of the @code{knot-acl-configuration} record and in other places that need to refer to that key." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27947 +#: guix-git/doc/guix.texi:28284 msgid "It can also be used to add configuration not supported by this interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27948 +#: guix-git/doc/guix.texi:28285 #, no-wrap msgid "@code{listen-v4} (default: @code{\"0.0.0.0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27950 guix-git/doc/guix.texi:27953 +#: guix-git/doc/guix.texi:28287 guix-git/doc/guix.texi:28290 msgid "An ip address on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27951 +#: guix-git/doc/guix.texi:28288 #, no-wrap msgid "@code{listen-v6} (default: @code{\"::\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27954 +#: guix-git/doc/guix.texi:28291 #, no-wrap msgid "@code{listen-port} (default: @code{53})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27956 +#: guix-git/doc/guix.texi:28293 msgid "A port on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27957 +#: guix-git/doc/guix.texi:28294 #, no-wrap msgid "@code{keys} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27959 +#: guix-git/doc/guix.texi:28296 msgid "The list of knot-key-configuration used by this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27960 +#: guix-git/doc/guix.texi:28297 #, no-wrap msgid "@code{acls} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27962 +#: guix-git/doc/guix.texi:28299 msgid "The list of knot-acl-configuration used by this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27963 +#: guix-git/doc/guix.texi:28300 #, no-wrap msgid "@code{remotes} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27965 +#: guix-git/doc/guix.texi:28302 msgid "The list of knot-remote-configuration used by this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27966 +#: guix-git/doc/guix.texi:28303 #, no-wrap msgid "@code{zones} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27968 +#: guix-git/doc/guix.texi:28305 msgid "The list of knot-zone-configuration used by this configuration." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27972 +#: guix-git/doc/guix.texi:28309 #, no-wrap msgid "Knot Resolver Service" msgstr "Сервисы Kerberos" #. type: deffn -#: guix-git/doc/guix.texi:27974 +#: guix-git/doc/guix.texi:28311 #, no-wrap msgid "{Scheme Variable} knot-resolver-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27977 +#: guix-git/doc/guix.texi:28314 msgid "This is the type of the knot resolver service, whose value should be an @code{knot-resolver-configuration} object as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27987 +#: guix-git/doc/guix.texi:28324 #, no-wrap msgid "" "(service knot-resolver-service-type\n" @@ -51435,73 +52184,73 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27990 +#: guix-git/doc/guix.texi:28327 msgid "For more information, refer its @url{https://knot-resolver.readthedocs.org/en/stable/daemon.html#configuration, manual}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27992 +#: guix-git/doc/guix.texi:28329 #, no-wrap msgid "{Data Type} knot-resolver-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27994 +#: guix-git/doc/guix.texi:28331 msgid "Data type representing the configuration of knot-resolver." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:27996 +#: guix-git/doc/guix.texi:28333 #, no-wrap msgid "@code{package} (default: @var{knot-resolver})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:27998 +#: guix-git/doc/guix.texi:28335 msgid "Package object of the knot DNS resolver." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27999 +#: guix-git/doc/guix.texi:28336 #, no-wrap msgid "@code{kresd-config-file} (default: %kresd.conf)" msgstr "@code{compression-level} (default: @code{3})" #. type: table -#: guix-git/doc/guix.texi:28002 +#: guix-git/doc/guix.texi:28339 msgid "File-like object of the kresd configuration file to use, by default it will listen on @code{127.0.0.1} and @code{::1}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28003 +#: guix-git/doc/guix.texi:28340 #, no-wrap msgid "@code{garbage-collection-interval} (default: 1000)" msgstr "@code{parallel-builds} (default: @code{1})" #. type: table -#: guix-git/doc/guix.texi:28005 +#: guix-git/doc/guix.texi:28342 msgid "Number of milliseconds for @code{kres-cache-gc} to periodically trim the cache." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28010 +#: guix-git/doc/guix.texi:28347 #, no-wrap msgid "Dnsmasq Service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28012 +#: guix-git/doc/guix.texi:28349 #, no-wrap msgid "{Scheme Variable} dnsmasq-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28015 +#: guix-git/doc/guix.texi:28352 msgid "This is the type of the dnsmasq service, whose value should be an @code{dnsmasq-configuration} object as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28021 +#: guix-git/doc/guix.texi:28358 #, no-wrap msgid "" "(service dnsmasq-service-type\n" @@ -51511,122 +52260,122 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28024 +#: guix-git/doc/guix.texi:28361 #, no-wrap msgid "{Data Type} dnsmasq-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28026 +#: guix-git/doc/guix.texi:28363 msgid "Data type representing the configuration of dnsmasq." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28028 +#: guix-git/doc/guix.texi:28365 #, no-wrap msgid "@code{package} (default: @var{dnsmasq})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28030 +#: guix-git/doc/guix.texi:28367 msgid "Package object of the dnsmasq server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28031 +#: guix-git/doc/guix.texi:28368 #, no-wrap msgid "@code{no-hosts?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28033 +#: guix-git/doc/guix.texi:28370 msgid "When true, don't read the hostnames in /etc/hosts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28034 +#: guix-git/doc/guix.texi:28371 #, no-wrap msgid "@code{port} (default: @code{53})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28037 +#: guix-git/doc/guix.texi:28374 msgid "The port to listen on. Setting this to zero completely disables DNS responses, leaving only DHCP and/or TFTP functions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28038 +#: guix-git/doc/guix.texi:28375 #, no-wrap msgid "@code{local-service?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28041 +#: guix-git/doc/guix.texi:28378 msgid "Accept DNS queries only from hosts whose address is on a local subnet, ie a subnet for which an interface exists on the server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28042 +#: guix-git/doc/guix.texi:28379 #, no-wrap msgid "@code{listen-addresses} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28044 +#: guix-git/doc/guix.texi:28381 msgid "Listen on the given IP addresses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28045 +#: guix-git/doc/guix.texi:28382 #, no-wrap msgid "@code{resolv-file} (default: @code{\"/etc/resolv.conf\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28047 +#: guix-git/doc/guix.texi:28384 msgid "The file to read the IP address of the upstream nameservers from." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28048 +#: guix-git/doc/guix.texi:28385 #, no-wrap msgid "@code{no-resolv?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28050 +#: guix-git/doc/guix.texi:28387 msgid "When true, don't read @var{resolv-file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28051 +#: guix-git/doc/guix.texi:28388 #, no-wrap msgid "@code{servers} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28053 +#: guix-git/doc/guix.texi:28390 msgid "Specify IP address of upstream servers directly." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28054 +#: guix-git/doc/guix.texi:28391 #, no-wrap msgid "@code{addresses} (default: @code{'()})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:28058 +#: guix-git/doc/guix.texi:28395 msgid "For each entry, specify an IP address to return for any host in the given domains. Queries in the domains are never forwarded and always replied to with the specified IP address." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28060 +#: guix-git/doc/guix.texi:28397 msgid "This is useful for redirecting hosts locally, for example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28069 +#: guix-git/doc/guix.texi:28406 #, no-wrap msgid "" "(service dnsmasq-service-type\n" @@ -51639,1008 +52388,1008 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28072 +#: guix-git/doc/guix.texi:28409 msgid "Note that rules in @file{/etc/hosts} take precedence over this." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28073 +#: guix-git/doc/guix.texi:28410 #, no-wrap msgid "@code{cache-size} (default: @code{150})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28076 +#: guix-git/doc/guix.texi:28413 msgid "Set the size of dnsmasq's cache. Setting the cache size to zero disables caching." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28077 +#: guix-git/doc/guix.texi:28414 #, no-wrap msgid "@code{negative-cache?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28079 +#: guix-git/doc/guix.texi:28416 msgid "When false, disable negative caching." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28080 +#: guix-git/doc/guix.texi:28417 #, no-wrap msgid "@code{tftp-enable?} (default: @code{#f})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:28082 +#: guix-git/doc/guix.texi:28419 msgid "Whether to enable the built-in TFTP server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28083 +#: guix-git/doc/guix.texi:28420 #, no-wrap msgid "@code{tftp-no-fail?} (default: @code{#f})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:28085 +#: guix-git/doc/guix.texi:28422 msgid "If true, does not fail dnsmasq if the TFTP server could not start up." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28086 +#: guix-git/doc/guix.texi:28423 #, no-wrap msgid "@code{tftp-single-port?} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:28088 +#: guix-git/doc/guix.texi:28425 msgid "Whether to use only one single port for TFTP." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28089 +#: guix-git/doc/guix.texi:28426 #, no-wrap msgid "@code{tftp-secure?} (default: @code{#f})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:28091 +#: guix-git/doc/guix.texi:28428 msgid "If true, only files owned by the user running the dnsmasq process are accessible." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28095 +#: guix-git/doc/guix.texi:28432 msgid "If dnsmasq is being run as root, different rules apply: @code{tftp-secure?} has no effect, but only files which have the world-readable bit set are accessible." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28096 +#: guix-git/doc/guix.texi:28433 #, no-wrap msgid "@code{tftp-max} (default: @code{#f})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:28098 +#: guix-git/doc/guix.texi:28435 msgid "If set, sets the maximal number of concurrent connections allowed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28099 +#: guix-git/doc/guix.texi:28436 #, no-wrap msgid "@code{tftp-mtu} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:28101 +#: guix-git/doc/guix.texi:28438 msgid "If set, sets the MTU for TFTP packets to that value." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28102 +#: guix-git/doc/guix.texi:28439 #, no-wrap msgid "@code{tftp-no-blocksize?} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:28104 +#: guix-git/doc/guix.texi:28441 msgid "If true, stops the TFTP server from negotiating the blocksize with a client." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28105 +#: guix-git/doc/guix.texi:28442 #, no-wrap msgid "@code{tftp-lowercase?} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:28107 +#: guix-git/doc/guix.texi:28444 msgid "Whether to convert all filenames in TFTP requests to lowercase." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28108 +#: guix-git/doc/guix.texi:28445 #, no-wrap msgid "@code{tftp-port-range} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:28111 +#: guix-git/doc/guix.texi:28448 msgid "If set, fixes the dynamical ports (one per client) to the given range (@code{\",\"})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28112 +#: guix-git/doc/guix.texi:28449 #, no-wrap msgid "@code{tftp-root} (default: @code{/var/empty,lo})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:28119 +#: guix-git/doc/guix.texi:28456 msgid "Look for files to transfer using TFTP relative to the given directory. When this is set, TFTP paths which include @samp{..} are rejected, to stop clients getting outside the specified root. Absolute paths (starting with @samp{/}) are allowed, but they must be within the TFTP-root. If the optional interface argument is given, the directory is only used for TFTP requests via that interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28120 +#: guix-git/doc/guix.texi:28457 #, no-wrap msgid "@code{tftp-unique-root} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:28125 +#: guix-git/doc/guix.texi:28462 msgid "If set, add the IP or hardware address of the TFTP client as a path component on the end of the TFTP-root. Only valid if a TFTP root is set and the directory exists. Defaults to adding IP address (in standard dotted-quad format)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28134 +#: guix-git/doc/guix.texi:28471 msgid "For instance, if @option{--tftp-root} is @samp{/tftp} and client @samp{1.2.3.4} requests file @file{myfile} then the effective path will be @file{/tftp/1.2.3.4/myfile} if @file{/tftp/1.2.3.4} exists or @file{/tftp/myfile} otherwise. When @samp{=mac} is specified it will append the MAC address instead, using lowercase zero padded digits separated by dashes, e.g.: @samp{01-02-03-04-aa-bb}. Note that resolving MAC addresses is only possible if the client is in the local network or obtained a DHCP lease from dnsmasq." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28138 +#: guix-git/doc/guix.texi:28475 #, no-wrap msgid "ddclient Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28140 +#: guix-git/doc/guix.texi:28477 #, no-wrap msgid "ddclient" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28144 +#: guix-git/doc/guix.texi:28481 msgid "The ddclient service described below runs the ddclient daemon, which takes care of automatically updating DNS entries for service providers such as @uref{https://dyn.com/dns/, Dyn}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28147 +#: guix-git/doc/guix.texi:28484 msgid "The following example show instantiates the service with its default configuration:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28150 +#: guix-git/doc/guix.texi:28487 #, no-wrap msgid "(service ddclient-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28159 +#: guix-git/doc/guix.texi:28496 msgid "Note that ddclient needs to access credentials that are stored in a @dfn{secret file}, by default @file{/etc/ddclient/secrets} (see @code{secret-file} below). You are expected to create this file manually, in an ``out-of-band'' fashion (you @emph{could} make this file part of the service configuration, for instance by using @code{plain-file}, but it will be world-readable @i{via} @file{/gnu/store}). See the examples in the @file{share/ddclient} directory of the @code{ddclient} package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28163 +#: guix-git/doc/guix.texi:28500 msgid "Available @code{ddclient-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28164 +#: guix-git/doc/guix.texi:28501 #, no-wrap msgid "{@code{ddclient-configuration} parameter} package ddclient" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28166 +#: guix-git/doc/guix.texi:28503 msgid "The ddclient package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28169 +#: guix-git/doc/guix.texi:28506 #, no-wrap msgid "{@code{ddclient-configuration} parameter} integer daemon" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28171 +#: guix-git/doc/guix.texi:28508 msgid "The period after which ddclient will retry to check IP and domain name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28173 +#: guix-git/doc/guix.texi:28510 msgid "Defaults to @samp{300}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28176 +#: guix-git/doc/guix.texi:28513 #, no-wrap msgid "{@code{ddclient-configuration} parameter} boolean syslog" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28178 +#: guix-git/doc/guix.texi:28515 msgid "Use syslog for the output." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28183 +#: guix-git/doc/guix.texi:28520 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string mail" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28185 +#: guix-git/doc/guix.texi:28522 msgid "Mail to user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28187 guix-git/doc/guix.texi:28194 -#: guix-git/doc/guix.texi:29996 +#: guix-git/doc/guix.texi:28524 guix-git/doc/guix.texi:28531 +#: guix-git/doc/guix.texi:30361 msgid "Defaults to @samp{\"root\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28190 +#: guix-git/doc/guix.texi:28527 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string mail-failure" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28192 +#: guix-git/doc/guix.texi:28529 msgid "Mail failed update to user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28197 +#: guix-git/doc/guix.texi:28534 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string pid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28199 +#: guix-git/doc/guix.texi:28536 msgid "The ddclient PID file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28201 +#: guix-git/doc/guix.texi:28538 msgid "Defaults to @samp{\"/var/run/ddclient/ddclient.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28204 +#: guix-git/doc/guix.texi:28541 #, no-wrap msgid "{@code{ddclient-configuration} parameter} boolean ssl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28206 +#: guix-git/doc/guix.texi:28543 msgid "Enable SSL support." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28211 +#: guix-git/doc/guix.texi:28548 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28214 +#: guix-git/doc/guix.texi:28551 msgid "Specifies the user name or ID that is used when running ddclient program." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28216 guix-git/doc/guix.texi:28223 +#: guix-git/doc/guix.texi:28553 guix-git/doc/guix.texi:28560 msgid "Defaults to @samp{\"ddclient\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28219 +#: guix-git/doc/guix.texi:28556 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28221 +#: guix-git/doc/guix.texi:28558 msgid "Group of the user who will run the ddclient program." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28226 +#: guix-git/doc/guix.texi:28563 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string secret-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28230 +#: guix-git/doc/guix.texi:28567 msgid "Secret file which will be appended to @file{ddclient.conf} file. This file contains credentials for use by ddclient. You are expected to create it manually." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28232 +#: guix-git/doc/guix.texi:28569 msgid "Defaults to @samp{\"/etc/ddclient/secrets.conf\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28235 +#: guix-git/doc/guix.texi:28572 #, no-wrap msgid "{@code{ddclient-configuration} parameter} list extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28237 +#: guix-git/doc/guix.texi:28574 msgid "Extra options will be appended to @file{ddclient.conf} file." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28248 +#: guix-git/doc/guix.texi:28585 #, no-wrap msgid "VPN (virtual private network)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28249 +#: guix-git/doc/guix.texi:28586 #, no-wrap msgid "virtual private network (VPN)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28253 +#: guix-git/doc/guix.texi:28590 msgid "The @code{(gnu services vpn)} module provides services related to @dfn{virtual private networks} (VPNs)." msgstr "Модуль @code{(gnu services file-sharing)} предоставляет следующие сервисы, помогающие с передачей файлов через одноранговые сети." #. type: subsubheading -#: guix-git/doc/guix.texi:28254 +#: guix-git/doc/guix.texi:28591 #, no-wrap msgid "Bitmask" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28256 +#: guix-git/doc/guix.texi:28593 #, fuzzy, no-wrap #| msgid "{Scheme Variable} boot-service-type" msgid "{Scheme Variable} bitmask-service-type" msgstr "{Scheme Variable} boot-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28261 +#: guix-git/doc/guix.texi:28598 msgid "A service type for the @uref{https://bitmask.net, Bitmask} VPN client. It makes the client available in the system and loads its polkit policy. Please note that the client expects an active polkit-agent, which is either run by your desktop-environment or should be run manually." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28263 +#: guix-git/doc/guix.texi:28600 #, no-wrap msgid "OpenVPN" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28267 +#: guix-git/doc/guix.texi:28604 msgid "It provides a @emph{client} service for your machine to connect to a VPN, and a @emph{server} service for your machine to host a VPN@." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28268 +#: guix-git/doc/guix.texi:28605 #, no-wrap msgid "{Scheme Procedure} openvpn-client-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28270 +#: guix-git/doc/guix.texi:28607 msgid "[#:config (openvpn-client-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28272 +#: guix-git/doc/guix.texi:28609 msgid "Return a service that runs @command{openvpn}, a VPN daemon, as a client." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28274 +#: guix-git/doc/guix.texi:28611 #, no-wrap msgid "{Scheme Procedure} openvpn-server-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28276 +#: guix-git/doc/guix.texi:28613 msgid "[#:config (openvpn-server-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28278 +#: guix-git/doc/guix.texi:28615 msgid "Return a service that runs @command{openvpn}, a VPN daemon, as a server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28280 +#: guix-git/doc/guix.texi:28617 msgid "Both can be run simultaneously." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28285 +#: guix-git/doc/guix.texi:28622 msgid "Available @code{openvpn-client-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28286 +#: guix-git/doc/guix.texi:28623 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} package openvpn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28288 guix-git/doc/guix.texi:28443 +#: guix-git/doc/guix.texi:28625 guix-git/doc/guix.texi:28780 msgid "The OpenVPN package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28291 +#: guix-git/doc/guix.texi:28628 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28293 guix-git/doc/guix.texi:28448 +#: guix-git/doc/guix.texi:28630 guix-git/doc/guix.texi:28785 msgid "The OpenVPN pid file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28295 guix-git/doc/guix.texi:28450 +#: guix-git/doc/guix.texi:28632 guix-git/doc/guix.texi:28787 msgid "Defaults to @samp{\"/var/run/openvpn/openvpn.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28298 +#: guix-git/doc/guix.texi:28635 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} proto proto" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28301 guix-git/doc/guix.texi:28456 +#: guix-git/doc/guix.texi:28638 guix-git/doc/guix.texi:28793 msgid "The protocol (UDP or TCP) used to open a channel between clients and servers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28303 guix-git/doc/guix.texi:28458 +#: guix-git/doc/guix.texi:28640 guix-git/doc/guix.texi:28795 msgid "Defaults to @samp{udp}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28306 +#: guix-git/doc/guix.texi:28643 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} dev dev" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28308 guix-git/doc/guix.texi:28463 +#: guix-git/doc/guix.texi:28645 guix-git/doc/guix.texi:28800 msgid "The device type used to represent the VPN connection." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28310 guix-git/doc/guix.texi:28465 +#: guix-git/doc/guix.texi:28647 guix-git/doc/guix.texi:28802 msgid "Defaults to @samp{tun}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28316 guix-git/doc/guix.texi:28471 +#: guix-git/doc/guix.texi:28653 guix-git/doc/guix.texi:28808 msgid "If you do not have some of these files (eg.@: you use a username and password), you can disable any of the following three fields by setting it to @code{'disabled}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28317 +#: guix-git/doc/guix.texi:28654 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string ca" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28319 guix-git/doc/guix.texi:28474 +#: guix-git/doc/guix.texi:28656 guix-git/doc/guix.texi:28811 msgid "The certificate authority to check connections against." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28321 guix-git/doc/guix.texi:28476 +#: guix-git/doc/guix.texi:28658 guix-git/doc/guix.texi:28813 msgid "Defaults to @samp{\"/etc/openvpn/ca.crt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28324 +#: guix-git/doc/guix.texi:28661 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28327 guix-git/doc/guix.texi:28482 +#: guix-git/doc/guix.texi:28664 guix-git/doc/guix.texi:28819 msgid "The certificate of the machine the daemon is running on. It should be signed by the authority given in @code{ca}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28329 guix-git/doc/guix.texi:28484 +#: guix-git/doc/guix.texi:28666 guix-git/doc/guix.texi:28821 msgid "Defaults to @samp{\"/etc/openvpn/client.crt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28332 +#: guix-git/doc/guix.texi:28669 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string key" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28335 guix-git/doc/guix.texi:28490 +#: guix-git/doc/guix.texi:28672 guix-git/doc/guix.texi:28827 msgid "The key of the machine the daemon is running on. It must be the key whose certificate is @code{cert}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28337 guix-git/doc/guix.texi:28492 +#: guix-git/doc/guix.texi:28674 guix-git/doc/guix.texi:28829 msgid "Defaults to @samp{\"/etc/openvpn/client.key\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28340 +#: guix-git/doc/guix.texi:28677 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean comp-lzo?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28342 guix-git/doc/guix.texi:28497 +#: guix-git/doc/guix.texi:28679 guix-git/doc/guix.texi:28834 msgid "Whether to use the lzo compression algorithm." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28347 +#: guix-git/doc/guix.texi:28684 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean persist-key?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28349 guix-git/doc/guix.texi:28504 +#: guix-git/doc/guix.texi:28686 guix-git/doc/guix.texi:28841 msgid "Don't re-read key files across SIGUSR1 or --ping-restart." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28354 +#: guix-git/doc/guix.texi:28691 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean persist-tun?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28357 guix-git/doc/guix.texi:28512 +#: guix-git/doc/guix.texi:28694 guix-git/doc/guix.texi:28849 msgid "Don't close and reopen TUN/TAP device or run up/down scripts across SIGUSR1 or --ping-restart restarts." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28362 +#: guix-git/doc/guix.texi:28699 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean fast-io?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28365 guix-git/doc/guix.texi:28520 +#: guix-git/doc/guix.texi:28702 guix-git/doc/guix.texi:28857 msgid "(Experimental) Optimize TUN/TAP/UDP I/O writes by avoiding a call to poll/epoll/select prior to the write operation." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28369 +#: guix-git/doc/guix.texi:28706 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} number verbosity" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28371 guix-git/doc/guix.texi:28526 +#: guix-git/doc/guix.texi:28708 guix-git/doc/guix.texi:28863 msgid "Verbosity level." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28373 guix-git/doc/guix.texi:28528 -#: guix-git/doc/guix.texi:30264 guix-git/doc/guix.texi:30488 +#: guix-git/doc/guix.texi:28710 guix-git/doc/guix.texi:28865 +#: guix-git/doc/guix.texi:30629 guix-git/doc/guix.texi:30853 msgid "Defaults to @samp{3}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28376 +#: guix-git/doc/guix.texi:28713 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} tls-auth-client tls-auth" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28379 guix-git/doc/guix.texi:28534 +#: guix-git/doc/guix.texi:28716 guix-git/doc/guix.texi:28871 msgid "Add an additional layer of HMAC authentication on top of the TLS control channel to protect against DoS attacks." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28384 +#: guix-git/doc/guix.texi:28721 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string auth-user-pass" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28388 +#: guix-git/doc/guix.texi:28725 msgid "Authenticate with server using username/password. The option is a file containing username/password on 2 lines. Do not use a file-like object as it would be added to the store and readable by any user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28390 +#: guix-git/doc/guix.texi:28727 msgid "Defaults to @samp{'disabled}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28392 +#: guix-git/doc/guix.texi:28729 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} key-usage verify-key-usage?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28394 +#: guix-git/doc/guix.texi:28731 msgid "Whether to check the server certificate has server usage extension." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28399 +#: guix-git/doc/guix.texi:28736 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} bind bind?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28401 +#: guix-git/doc/guix.texi:28738 msgid "Bind to a specific local port number." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28406 +#: guix-git/doc/guix.texi:28743 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} resolv-retry resolv-retry?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28408 +#: guix-git/doc/guix.texi:28745 msgid "Retry resolving server address." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28413 +#: guix-git/doc/guix.texi:28750 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} openvpn-remote-list remote" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28415 +#: guix-git/doc/guix.texi:28752 msgid "A list of remote servers to connect to." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28419 +#: guix-git/doc/guix.texi:28756 msgid "Available @code{openvpn-remote-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28420 +#: guix-git/doc/guix.texi:28757 #, no-wrap msgid "{@code{openvpn-remote-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28422 +#: guix-git/doc/guix.texi:28759 msgid "Server name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28424 +#: guix-git/doc/guix.texi:28761 msgid "Defaults to @samp{\"my-server\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28427 +#: guix-git/doc/guix.texi:28764 #, no-wrap msgid "{@code{openvpn-remote-configuration} parameter} number port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28429 +#: guix-git/doc/guix.texi:28766 msgid "Port number the server listens to." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28431 guix-git/doc/guix.texi:28543 +#: guix-git/doc/guix.texi:28768 guix-git/doc/guix.texi:28880 msgid "Defaults to @samp{1194}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28440 +#: guix-git/doc/guix.texi:28777 msgid "Available @code{openvpn-server-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28441 +#: guix-git/doc/guix.texi:28778 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} package openvpn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28446 +#: guix-git/doc/guix.texi:28783 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28453 +#: guix-git/doc/guix.texi:28790 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} proto proto" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28461 +#: guix-git/doc/guix.texi:28798 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} dev dev" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28472 +#: guix-git/doc/guix.texi:28809 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string ca" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28479 +#: guix-git/doc/guix.texi:28816 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28487 +#: guix-git/doc/guix.texi:28824 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string key" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28495 +#: guix-git/doc/guix.texi:28832 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean comp-lzo?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28502 +#: guix-git/doc/guix.texi:28839 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean persist-key?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28509 +#: guix-git/doc/guix.texi:28846 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean persist-tun?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28517 +#: guix-git/doc/guix.texi:28854 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean fast-io?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28524 +#: guix-git/doc/guix.texi:28861 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number verbosity" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28531 +#: guix-git/doc/guix.texi:28868 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} tls-auth-server tls-auth" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28539 +#: guix-git/doc/guix.texi:28876 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28541 +#: guix-git/doc/guix.texi:28878 msgid "Specifies the port number on which the server listens." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28546 +#: guix-git/doc/guix.texi:28883 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} ip-mask server" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28548 +#: guix-git/doc/guix.texi:28885 msgid "An ip and mask specifying the subnet inside the virtual network." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28550 +#: guix-git/doc/guix.texi:28887 msgid "Defaults to @samp{\"10.8.0.0 255.255.255.0\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28553 +#: guix-git/doc/guix.texi:28890 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} cidr6 server-ipv6" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28555 +#: guix-git/doc/guix.texi:28892 msgid "A CIDR notation specifying the IPv6 subnet inside the virtual network." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28560 +#: guix-git/doc/guix.texi:28897 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string dh" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28562 +#: guix-git/doc/guix.texi:28899 msgid "The Diffie-Hellman parameters file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28564 +#: guix-git/doc/guix.texi:28901 msgid "Defaults to @samp{\"/etc/openvpn/dh2048.pem\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28567 +#: guix-git/doc/guix.texi:28904 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string ifconfig-pool-persist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28569 +#: guix-git/doc/guix.texi:28906 msgid "The file that records client IPs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28571 +#: guix-git/doc/guix.texi:28908 msgid "Defaults to @samp{\"/etc/openvpn/ipp.txt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28574 +#: guix-git/doc/guix.texi:28911 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} gateway redirect-gateway?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28576 +#: guix-git/doc/guix.texi:28913 msgid "When true, the server will act as a gateway for its clients." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28581 +#: guix-git/doc/guix.texi:28918 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean client-to-client?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28583 +#: guix-git/doc/guix.texi:28920 msgid "When true, clients are allowed to talk to each other inside the VPN." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28588 +#: guix-git/doc/guix.texi:28925 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} keepalive keepalive" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28594 +#: guix-git/doc/guix.texi:28931 msgid "Causes ping-like messages to be sent back and forth over the link so that each side knows when the other side has gone down. @code{keepalive} requires a pair. The first element is the period of the ping sending, and the second element is the timeout before considering the other side down." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28597 +#: guix-git/doc/guix.texi:28934 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28599 +#: guix-git/doc/guix.texi:28936 msgid "The maximum number of clients." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28604 +#: guix-git/doc/guix.texi:28941 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string status" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28607 +#: guix-git/doc/guix.texi:28944 msgid "The status file. This file shows a small report on current connection. It is truncated and rewritten every minute." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28609 +#: guix-git/doc/guix.texi:28946 msgid "Defaults to @samp{\"/var/run/openvpn/status\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28612 +#: guix-git/doc/guix.texi:28949 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} openvpn-ccd-list client-config-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28614 +#: guix-git/doc/guix.texi:28951 msgid "The list of configuration for some clients." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28618 +#: guix-git/doc/guix.texi:28955 msgid "Available @code{openvpn-ccd-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28619 +#: guix-git/doc/guix.texi:28956 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28621 +#: guix-git/doc/guix.texi:28958 msgid "Client name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28623 +#: guix-git/doc/guix.texi:28960 msgid "Defaults to @samp{\"client\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28626 +#: guix-git/doc/guix.texi:28963 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} ip-mask iroute" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28628 +#: guix-git/doc/guix.texi:28965 msgid "Client own network" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28633 +#: guix-git/doc/guix.texi:28970 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} ip-mask ifconfig-push" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28635 +#: guix-git/doc/guix.texi:28972 msgid "Client VPN IP." msgstr "" #. type: subheading -#: guix-git/doc/guix.texi:28644 +#: guix-git/doc/guix.texi:28981 #, no-wrap msgid "strongSwan" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28648 +#: guix-git/doc/guix.texi:28985 msgid "Currently, the strongSwan service only provides legacy-style configuration with @file{ipsec.conf} and @file{ipsec.secrets} files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28649 +#: guix-git/doc/guix.texi:28986 #, fuzzy, no-wrap msgid "{Scheme Variable} strongswan-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28653 +#: guix-git/doc/guix.texi:28990 msgid "A service type for configuring strongSwan for IPsec @acronym{VPN, Virtual Private Networking}. Its value must be a @code{strongswan-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28659 +#: guix-git/doc/guix.texi:28996 #, fuzzy, no-wrap msgid "" "(service strongswan-service-type\n" @@ -52654,70 +53403,70 @@ msgstr "" " (use-substitutes? #f)))\n" #. type: deftp -#: guix-git/doc/guix.texi:28663 +#: guix-git/doc/guix.texi:29000 #, fuzzy, no-wrap msgid "{Data Type} strongswan-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:28665 +#: guix-git/doc/guix.texi:29002 #, fuzzy msgid "Data type representing the configuration of the StrongSwan service." msgstr "Управление конфигурацией операционной системы." #. type: code{#1} -#: guix-git/doc/guix.texi:28667 +#: guix-git/doc/guix.texi:29004 #, no-wrap msgid "strongswan" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28669 +#: guix-git/doc/guix.texi:29006 #, fuzzy msgid "The strongSwan package to use for this service." msgstr "Пакет @code{ganeti} для использования в этой службе." #. type: item -#: guix-git/doc/guix.texi:28670 +#: guix-git/doc/guix.texi:29007 #, fuzzy, no-wrap msgid "@code{ipsec-conf} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:28673 +#: guix-git/doc/guix.texi:29010 msgid "The file name of your @file{ipsec.conf}. If not @code{#f}, then this and @code{ipsec-secrets} must both be strings." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28674 +#: guix-git/doc/guix.texi:29011 #, fuzzy, no-wrap msgid "@code{ipsec-secrets} (default @code{#f})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:28677 +#: guix-git/doc/guix.texi:29014 msgid "The file name of your @file{ipsec.secrets}. If not @code{#f}, then this and @code{ipsec-conf} must both be strings." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28681 +#: guix-git/doc/guix.texi:29018 #, no-wrap msgid "Wireguard" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28683 +#: guix-git/doc/guix.texi:29020 #, no-wrap msgid "{Scheme Variable} wireguard-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:28686 +#: guix-git/doc/guix.texi:29023 msgid "A service type for a Wireguard tunnel interface. Its value must be a @code{wireguard-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28697 +#: guix-git/doc/guix.texi:29034 #, no-wrap msgid "" "(service wireguard-service-type\n" @@ -52732,251 +53481,251 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28701 +#: guix-git/doc/guix.texi:29038 #, no-wrap msgid "{Data Type} wireguard-configuration" msgstr "{Тип данных} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:28703 +#: guix-git/doc/guix.texi:29040 msgid "Data type representing the configuration of the Wireguard service." msgstr "Управление конфигурацией операционной системы." #. type: code{#1} -#: guix-git/doc/guix.texi:28705 +#: guix-git/doc/guix.texi:29042 #, no-wrap msgid "wireguard" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28707 +#: guix-git/doc/guix.texi:29044 msgid "The wireguard package to use for this service." msgstr "Пакет @code{ganeti} для использования в этой службе." #. type: item -#: guix-git/doc/guix.texi:28708 +#: guix-git/doc/guix.texi:29045 #, no-wrap msgid "@code{interface} (default: @code{\"wg0\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:28710 +#: guix-git/doc/guix.texi:29047 msgid "The interface name for the VPN." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28711 +#: guix-git/doc/guix.texi:29048 #, no-wrap msgid "@code{addresses} (default: @code{'(\"10.0.0.1/32\")})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:28713 +#: guix-git/doc/guix.texi:29050 msgid "The IP addresses to be assigned to the above interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28714 +#: guix-git/doc/guix.texi:29051 #, fuzzy, no-wrap #| msgid "@code{port} (default: @code{5080})" msgid "@code{port} (default: @code{51820})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:28716 +#: guix-git/doc/guix.texi:29053 msgid "The port on which to listen for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28717 +#: guix-git/doc/guix.texi:29054 #, fuzzy, no-wrap msgid "@code{dns} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:28719 +#: guix-git/doc/guix.texi:29056 msgid "The DNS server(s) to announce to VPN clients via DHCP." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28720 +#: guix-git/doc/guix.texi:29057 #, no-wrap msgid "@code{private-key} (default: @code{\"/etc/wireguard/private.key\"})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:28723 +#: guix-git/doc/guix.texi:29060 msgid "The private key file for the interface. It is automatically generated if the file does not exist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28724 +#: guix-git/doc/guix.texi:29061 #, no-wrap msgid "@code{peers} (default: @code{'()})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:28727 +#: guix-git/doc/guix.texi:29064 msgid "The authorized peers on this interface. This is a list of @var{wireguard-peer} records." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28731 +#: guix-git/doc/guix.texi:29068 #, no-wrap msgid "{Data Type} wireguard-peer" msgstr "{Тип данных} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:28733 +#: guix-git/doc/guix.texi:29070 msgid "Data type representing a Wireguard peer attached to a given interface." msgstr "Управление конфигурацией операционной системы." #. type: table -#: guix-git/doc/guix.texi:28737 +#: guix-git/doc/guix.texi:29074 msgid "The peer name." msgstr "Имя роли." #. type: item -#: guix-git/doc/guix.texi:28738 +#: guix-git/doc/guix.texi:29075 #, no-wrap msgid "@code{endpoint} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:28741 +#: guix-git/doc/guix.texi:29078 msgid "The optional endpoint for the peer, such as @code{\"demo.wireguard.com:51820\"}." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:28742 guix-git/doc/guix.texi:29137 -#: guix-git/doc/guix.texi:29174 guix-git/doc/guix.texi:34305 +#: guix-git/doc/guix.texi:29079 guix-git/doc/guix.texi:29474 +#: guix-git/doc/guix.texi:29511 guix-git/doc/guix.texi:34744 #, no-wrap msgid "public-key" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28744 +#: guix-git/doc/guix.texi:29081 msgid "The peer public-key represented as a base64 string." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:28745 +#: guix-git/doc/guix.texi:29082 #, no-wrap msgid "allowed-ips" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28748 +#: guix-git/doc/guix.texi:29085 msgid "A list of IP addresses from which incoming traffic for this peer is allowed and to which incoming traffic for this peer is directed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28749 +#: guix-git/doc/guix.texi:29086 #, no-wrap msgid "@code{keep-alive} (default: @code{#f})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:28754 +#: guix-git/doc/guix.texi:29091 msgid "An optional time interval in seconds. A packet will be sent to the server endpoint once per time interval. This helps receiving incoming connections from this peer when you are behind a NAT or a firewall." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28760 +#: guix-git/doc/guix.texi:29097 #, no-wrap msgid "NFS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28765 +#: guix-git/doc/guix.texi:29102 msgid "The @code{(gnu services nfs)} module provides the following services, which are most commonly used in relation to mounting or exporting directory trees as @dfn{network file systems} (NFS)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28769 +#: guix-git/doc/guix.texi:29106 msgid "While it is possible to use the individual components that together make up a Network File System service, we recommended to configure an NFS server with the @code{nfs-service-type}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28770 +#: guix-git/doc/guix.texi:29107 #, no-wrap msgid "NFS Service" msgstr "Сервисы DNS" #. type: cindex -#: guix-git/doc/guix.texi:28771 +#: guix-git/doc/guix.texi:29108 #, no-wrap msgid "NFS, server" msgstr "NFS, сервер" #. type: Plain text -#: guix-git/doc/guix.texi:28776 +#: guix-git/doc/guix.texi:29113 msgid "The NFS service takes care of setting up all NFS component services, kernel configuration file systems, and installs configuration files in the locations that NFS expects." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28777 +#: guix-git/doc/guix.texi:29114 #, no-wrap msgid "{Scheme Variable} nfs-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28779 +#: guix-git/doc/guix.texi:29116 msgid "A service type for a complete NFS server." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28781 +#: guix-git/doc/guix.texi:29118 #, no-wrap msgid "{Data Type} nfs-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:28784 +#: guix-git/doc/guix.texi:29121 msgid "This data type represents the configuration of the NFS service and all of its subsystems." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28786 +#: guix-git/doc/guix.texi:29123 msgid "It has the following parameters:" msgstr "GNU Guix зависит от следующих пакетов:" #. type: item -#: guix-git/doc/guix.texi:28787 guix-git/doc/guix.texi:28912 -#: guix-git/doc/guix.texi:28937 +#: guix-git/doc/guix.texi:29124 guix-git/doc/guix.texi:29249 +#: guix-git/doc/guix.texi:29274 #, no-wrap msgid "@code{nfs-utils} (default: @code{nfs-utils})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28789 +#: guix-git/doc/guix.texi:29126 msgid "The nfs-utils package to use." msgstr "Используемый пакет nfs-utils." #. type: item -#: guix-git/doc/guix.texi:28790 +#: guix-git/doc/guix.texi:29127 #, no-wrap msgid "@code{nfs-versions} (default: @code{'(\"4.2\" \"4.1\" \"4.0\")})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:28793 +#: guix-git/doc/guix.texi:29130 msgid "If a list of string values is provided, the @command{rpc.nfsd} daemon will be limited to supporting the given versions of the NFS protocol." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28794 +#: guix-git/doc/guix.texi:29131 #, no-wrap msgid "@code{exports} (default: @code{'()})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:28799 +#: guix-git/doc/guix.texi:29136 msgid "This is a list of directories the NFS server should export. Each entry is a list consisting of two elements: a directory name and a string containing all options. This is an example in which the directory @file{/export} is served to all NFS clients as a read-only share:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28805 +#: guix-git/doc/guix.texi:29142 #, no-wrap msgid "" "(nfs-configuration\n" @@ -52986,384 +53735,384 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28807 +#: guix-git/doc/guix.texi:29144 #, no-wrap msgid "@code{rpcmountd-port} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:28809 +#: guix-git/doc/guix.texi:29146 msgid "The network port that the @command{rpc.mountd} daemon should use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28810 +#: guix-git/doc/guix.texi:29147 #, no-wrap msgid "@code{rpcstatd-port} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:28812 +#: guix-git/doc/guix.texi:29149 msgid "The network port that the @command{rpc.statd} daemon should use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28813 guix-git/doc/guix.texi:28861 +#: guix-git/doc/guix.texi:29150 guix-git/doc/guix.texi:29198 #, no-wrap msgid "@code{rpcbind} (default: @code{rpcbind})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28815 guix-git/doc/guix.texi:28863 +#: guix-git/doc/guix.texi:29152 guix-git/doc/guix.texi:29200 msgid "The rpcbind package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28816 +#: guix-git/doc/guix.texi:29153 #, no-wrap msgid "@code{idmap-domain} (default: @code{\"localdomain\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:28818 +#: guix-git/doc/guix.texi:29155 msgid "The local NFSv4 domain name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28819 +#: guix-git/doc/guix.texi:29156 #, no-wrap msgid "@code{nfsd-port} (default: @code{2049})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:28821 +#: guix-git/doc/guix.texi:29158 msgid "The network port that the @command{nfsd} daemon should use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28822 +#: guix-git/doc/guix.texi:29159 #, no-wrap msgid "@code{nfsd-threads} (default: @code{8})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:28824 +#: guix-git/doc/guix.texi:29161 msgid "The number of threads used by the @command{nfsd} daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28825 +#: guix-git/doc/guix.texi:29162 #, no-wrap msgid "@code{nfsd-tcp?} (default: @code{#t})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:28827 +#: guix-git/doc/guix.texi:29164 msgid "Whether the @command{nfsd} daemon should listen on a TCP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28828 +#: guix-git/doc/guix.texi:29165 #, no-wrap msgid "@code{nfsd-udp?} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:28830 +#: guix-git/doc/guix.texi:29167 msgid "Whether the @command{nfsd} daemon should listen on a UDP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28831 guix-git/doc/guix.texi:28915 -#: guix-git/doc/guix.texi:28940 +#: guix-git/doc/guix.texi:29168 guix-git/doc/guix.texi:29252 +#: guix-git/doc/guix.texi:29277 #, no-wrap msgid "@code{pipefs-directory} (default: @code{\"/var/lib/nfs/rpc_pipefs\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28833 guix-git/doc/guix.texi:28917 -#: guix-git/doc/guix.texi:28942 +#: guix-git/doc/guix.texi:29170 guix-git/doc/guix.texi:29254 +#: guix-git/doc/guix.texi:29279 msgid "The directory where the pipefs file system is mounted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28834 +#: guix-git/doc/guix.texi:29171 #, no-wrap msgid "@code{debug} (default: @code{'()\"})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:28838 +#: guix-git/doc/guix.texi:29175 msgid "A list of subsystems for which debugging output should be enabled. This is a list of symbols. Any of these symbols are valid: @code{nfsd}, @code{nfs}, @code{rpc}, @code{idmap}, @code{statd}, or @code{mountd}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28843 +#: guix-git/doc/guix.texi:29180 msgid "If you don't need a complete NFS service or prefer to build it yourself you can use the individual component services that are documented below." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28844 +#: guix-git/doc/guix.texi:29181 #, no-wrap msgid "RPC Bind Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28845 +#: guix-git/doc/guix.texi:29182 #, no-wrap msgid "rpcbind" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28851 +#: guix-git/doc/guix.texi:29188 msgid "The RPC Bind service provides a facility to map program numbers into universal addresses. Many NFS related services use this facility. Hence it is automatically started when a dependent service starts." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28852 +#: guix-git/doc/guix.texi:29189 #, no-wrap msgid "{Scheme Variable} rpcbind-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28854 +#: guix-git/doc/guix.texi:29191 msgid "A service type for the RPC portmapper daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28857 +#: guix-git/doc/guix.texi:29194 #, no-wrap msgid "{Data Type} rpcbind-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28860 +#: guix-git/doc/guix.texi:29197 msgid "Data type representing the configuration of the RPC Bind Service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28864 +#: guix-git/doc/guix.texi:29201 #, no-wrap msgid "@code{warm-start?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28868 +#: guix-git/doc/guix.texi:29205 msgid "If this parameter is @code{#t}, then the daemon will read a state file on startup thus reloading state information saved by a previous instance." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28872 +#: guix-git/doc/guix.texi:29209 #, no-wrap msgid "Pipefs Pseudo File System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28873 +#: guix-git/doc/guix.texi:29210 #, no-wrap msgid "pipefs" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28874 +#: guix-git/doc/guix.texi:29211 #, no-wrap msgid "rpc_pipefs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28878 +#: guix-git/doc/guix.texi:29215 msgid "The pipefs file system is used to transfer NFS related data between the kernel and user space programs." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28879 +#: guix-git/doc/guix.texi:29216 #, no-wrap msgid "{Scheme Variable} pipefs-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28881 +#: guix-git/doc/guix.texi:29218 msgid "A service type for the pipefs pseudo file system." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28883 +#: guix-git/doc/guix.texi:29220 #, no-wrap msgid "{Data Type} pipefs-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28886 +#: guix-git/doc/guix.texi:29223 msgid "Data type representing the configuration of the pipefs pseudo file system service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28887 +#: guix-git/doc/guix.texi:29224 #, no-wrap msgid "@code{mount-point} (default: @code{\"/var/lib/nfs/rpc_pipefs\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28889 +#: guix-git/doc/guix.texi:29226 msgid "The directory to which the file system is to be attached." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28893 +#: guix-git/doc/guix.texi:29230 #, no-wrap msgid "GSS Daemon Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28894 +#: guix-git/doc/guix.texi:29231 #, no-wrap msgid "GSSD" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28895 +#: guix-git/doc/guix.texi:29232 #, no-wrap msgid "GSS" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28896 +#: guix-git/doc/guix.texi:29233 #, no-wrap msgid "global security system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28903 +#: guix-git/doc/guix.texi:29240 msgid "The @dfn{global security system} (GSS) daemon provides strong security for RPC based protocols. Before exchanging RPC requests an RPC client must establish a security context. Typically this is done using the Kerberos command @command{kinit} or automatically at login time using PAM services (@pxref{Kerberos Services})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28904 +#: guix-git/doc/guix.texi:29241 #, no-wrap msgid "{Scheme Variable} gss-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28906 +#: guix-git/doc/guix.texi:29243 msgid "A service type for the Global Security System (GSS) daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28908 +#: guix-git/doc/guix.texi:29245 #, no-wrap msgid "{Data Type} gss-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28911 +#: guix-git/doc/guix.texi:29248 msgid "Data type representing the configuration of the GSS daemon service. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28914 +#: guix-git/doc/guix.texi:29251 msgid "The package in which the @command{rpc.gssd} command is to be found." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28922 +#: guix-git/doc/guix.texi:29259 #, no-wrap msgid "IDMAP Daemon Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28923 +#: guix-git/doc/guix.texi:29260 #, no-wrap msgid "idmapd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28924 +#: guix-git/doc/guix.texi:29261 #, no-wrap msgid "name mapper" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28928 +#: guix-git/doc/guix.texi:29265 msgid "The idmap daemon service provides mapping between user IDs and user names. Typically it is required in order to access file systems mounted via NFSv4." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28929 +#: guix-git/doc/guix.texi:29266 #, no-wrap msgid "{Scheme Variable} idmap-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28931 +#: guix-git/doc/guix.texi:29268 msgid "A service type for the Identity Mapper (IDMAP) daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28933 +#: guix-git/doc/guix.texi:29270 #, no-wrap msgid "{Data Type} idmap-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28936 +#: guix-git/doc/guix.texi:29273 msgid "Data type representing the configuration of the IDMAP daemon service. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28939 +#: guix-git/doc/guix.texi:29276 msgid "The package in which the @command{rpc.idmapd} command is to be found." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28943 +#: guix-git/doc/guix.texi:29280 #, no-wrap msgid "@code{domain} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28947 +#: guix-git/doc/guix.texi:29284 msgid "The local NFSv4 domain name. This must be a string or @code{#f}. If it is @code{#f} then the daemon will use the host's fully qualified domain name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28948 +#: guix-git/doc/guix.texi:29285 #, no-wrap msgid "@code{verbosity} (default: @code{0})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:28950 +#: guix-git/doc/guix.texi:29287 msgid "The verbosity level of the daemon." msgstr "Уровень детализации демона." #. type: Plain text -#: guix-git/doc/guix.texi:28961 +#: guix-git/doc/guix.texi:29298 msgid "@uref{https://guix.gnu.org/cuirass/, Cuirass} is a continuous integration tool for Guix. It can be used both for development and for providing substitutes to others (@pxref{Substitutes})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28963 +#: guix-git/doc/guix.texi:29300 msgid "The @code{(gnu services cuirass)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28964 +#: guix-git/doc/guix.texi:29301 #, no-wrap msgid "{Scheme Procedure} cuirass-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28967 +#: guix-git/doc/guix.texi:29304 msgid "The type of the Cuirass service. Its value must be a @code{cuirass-configuration} object, as described below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28972 +#: guix-git/doc/guix.texi:29309 msgid "To add build jobs, you have to set the @code{specifications} field of the configuration. For instance, the following example will build all the packages provided by the @code{my-channel} channel." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28983 +#: guix-git/doc/guix.texi:29320 #, no-wrap msgid "" "(define %cuirass-specs\n" @@ -53379,7 +54128,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28987 guix-git/doc/guix.texi:29001 +#: guix-git/doc/guix.texi:29324 guix-git/doc/guix.texi:29338 #, no-wrap msgid "" "(service cuirass-service-type\n" @@ -53388,12 +54137,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28991 +#: guix-git/doc/guix.texi:29328 msgid "To build the @code{linux-libre} package defined by the default Guix channel, one can use the following configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28997 +#: guix-git/doc/guix.texi:29334 #, no-wrap msgid "" "(define %cuirass-specs\n" @@ -53404,572 +54153,572 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29006 +#: guix-git/doc/guix.texi:29343 msgid "The other configuration possibilities, as well as the specification record itself are described in the Cuirass manual (@pxref{Specifications,,, cuirass, Cuirass})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29010 +#: guix-git/doc/guix.texi:29347 msgid "While information related to build jobs is located directly in the specifications, global settings for the @command{cuirass} process are accessible in other @code{cuirass-configuration} fields." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29011 +#: guix-git/doc/guix.texi:29348 #, no-wrap msgid "{Data Type} cuirass-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29013 +#: guix-git/doc/guix.texi:29350 msgid "Data type representing the configuration of Cuirass." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29015 guix-git/doc/guix.texi:29152 +#: guix-git/doc/guix.texi:29352 guix-git/doc/guix.texi:29489 #, no-wrap msgid "@code{cuirass} (default: @code{cuirass})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29017 guix-git/doc/guix.texi:29154 +#: guix-git/doc/guix.texi:29354 guix-git/doc/guix.texi:29491 msgid "The Cuirass package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29018 +#: guix-git/doc/guix.texi:29355 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29020 guix-git/doc/guix.texi:29124 -#: guix-git/doc/guix.texi:29167 +#: guix-git/doc/guix.texi:29357 guix-git/doc/guix.texi:29461 +#: guix-git/doc/guix.texi:29504 msgid "Location of the log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29021 +#: guix-git/doc/guix.texi:29358 #, no-wrap msgid "@code{web-log-file} (default: @code{\"/var/log/cuirass-web.log\"})" msgstr "@code{daemon-socket} (default: @code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:29023 +#: guix-git/doc/guix.texi:29360 msgid "Location of the log file used by the web interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29024 +#: guix-git/doc/guix.texi:29361 #, no-wrap msgid "@code{cache-directory} (default: @code{\"/var/cache/cuirass\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29026 +#: guix-git/doc/guix.texi:29363 msgid "Location of the repository cache." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29027 +#: guix-git/doc/guix.texi:29364 #, no-wrap msgid "@code{user} (default: @code{\"cuirass\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29029 +#: guix-git/doc/guix.texi:29366 msgid "Owner of the @code{cuirass} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29030 +#: guix-git/doc/guix.texi:29367 #, no-wrap msgid "@code{group} (default: @code{\"cuirass\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29032 +#: guix-git/doc/guix.texi:29369 msgid "Owner's group of the @code{cuirass} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29033 +#: guix-git/doc/guix.texi:29370 #, no-wrap msgid "@code{interval} (default: @code{60})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29036 +#: guix-git/doc/guix.texi:29373 msgid "Number of seconds between the poll of the repositories followed by the Cuirass jobs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29037 +#: guix-git/doc/guix.texi:29374 #, no-wrap msgid "@code{parameters} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:29040 +#: guix-git/doc/guix.texi:29377 msgid "Read parameters from the given @var{parameters} file. The supported parameters are described here (@pxref{Parameters,,, cuirass, Cuirass})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29041 +#: guix-git/doc/guix.texi:29378 #, no-wrap msgid "@code{remote-server} (default: @code{#f})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:29044 +#: guix-git/doc/guix.texi:29381 msgid "A @code{cuirass-remote-server-configuration} record to use the build remote mechanism or @code{#f} to use the default build mechanism." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29045 +#: guix-git/doc/guix.texi:29382 #, no-wrap msgid "@code{database} (default: @code{\"dbname=cuirass host=/var/run/postgresql\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:29050 +#: guix-git/doc/guix.texi:29387 msgid "Use @var{database} as the database containing the jobs and the past build results. Since Cuirass uses PostgreSQL as a database engine, @var{database} must be a string such as @code{\"dbname=cuirass host=localhost\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29051 +#: guix-git/doc/guix.texi:29388 #, no-wrap msgid "@code{port} (default: @code{8081})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29053 +#: guix-git/doc/guix.texi:29390 msgid "Port number used by the HTTP server." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29057 +#: guix-git/doc/guix.texi:29394 msgid "Listen on the network interface for @var{host}. The default is to accept connections from localhost." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29058 +#: guix-git/doc/guix.texi:29395 #, no-wrap msgid "@code{specifications} (default: @code{#~'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29062 +#: guix-git/doc/guix.texi:29399 msgid "A gexp (@pxref{G-Expressions}) that evaluates to a list of specifications records. The specification record is described in the Cuirass manual (@pxref{Specifications,,, cuirass, Cuirass})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29063 +#: guix-git/doc/guix.texi:29400 #, no-wrap msgid "@code{use-substitutes?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29066 +#: guix-git/doc/guix.texi:29403 msgid "This allows using substitutes to avoid building every dependencies of a job from source." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29067 guix-git/doc/guix.texi:36336 +#: guix-git/doc/guix.texi:29404 guix-git/doc/guix.texi:36826 #, no-wrap msgid "@code{one-shot?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29069 +#: guix-git/doc/guix.texi:29406 msgid "Only evaluate specifications and build derivations once." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29070 +#: guix-git/doc/guix.texi:29407 #, no-wrap msgid "@code{fallback?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29073 +#: guix-git/doc/guix.texi:29410 msgid "When substituting a pre-built binary fails, fall back to building packages locally." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29076 +#: guix-git/doc/guix.texi:29413 msgid "Extra options to pass when running the Cuirass processes." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29080 +#: guix-git/doc/guix.texi:29417 #, no-wrap msgid "remote build" msgstr "воспроизводимые сборки" #. type: subsubheading -#: guix-git/doc/guix.texi:29081 +#: guix-git/doc/guix.texi:29418 #, no-wrap msgid "Cuirass remote building" msgstr "последний коммит, сборка" #. type: Plain text -#: guix-git/doc/guix.texi:29084 +#: guix-git/doc/guix.texi:29421 msgid "Cuirass supports two mechanisms to build derivations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29086 +#: guix-git/doc/guix.texi:29423 #, no-wrap msgid "Using the local Guix daemon." msgstr "Запуск демона сборки." #. type: itemize -#: guix-git/doc/guix.texi:29090 +#: guix-git/doc/guix.texi:29427 msgid "This is the default build mechanism. Once the build jobs are evaluated, they are sent to the local Guix daemon. Cuirass then listens to the Guix daemon output to detect the various build events." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29091 +#: guix-git/doc/guix.texi:29428 #, no-wrap msgid "Using the remote build mechanism." msgstr "Подготовка отдельного окружения сборки." #. type: itemize -#: guix-git/doc/guix.texi:29095 +#: guix-git/doc/guix.texi:29432 msgid "The build jobs are not submitted to the local Guix daemon. Instead, a remote server dispatches build requests to the connect remote workers, according to the build priorities." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29102 +#: guix-git/doc/guix.texi:29439 msgid "To enable this build mode a @code{cuirass-remote-server-configuration} record must be passed as @code{remote-server} argument of the @code{cuirass-configuration} record. The @code{cuirass-remote-server-configuration} record is described below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29107 +#: guix-git/doc/guix.texi:29444 msgid "This build mode scales way better than the default build mode. This is the build mode that is used on the GNU Guix build farm at @url{https://ci.guix.gnu.org}. It should be preferred when using Cuirass to build large amount of packages." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29108 +#: guix-git/doc/guix.texi:29445 #, no-wrap msgid "{Data Type} cuirass-remote-server-configuration" msgstr "{Data Type} pagekite-configuration" #. type: deftp -#: guix-git/doc/guix.texi:29110 +#: guix-git/doc/guix.texi:29447 msgid "Data type representing the configuration of the Cuirass remote-server." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:29112 +#: guix-git/doc/guix.texi:29449 #, no-wrap msgid "@code{backend-port} (default: @code{5555})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:29115 +#: guix-git/doc/guix.texi:29452 msgid "The TCP port for communicating with @code{remote-worker} processes using ZMQ. It defaults to @code{5555}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29116 +#: guix-git/doc/guix.texi:29453 #, no-wrap msgid "@code{log-port} (default: @code{5556})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:29118 +#: guix-git/doc/guix.texi:29455 msgid "The TCP port of the log server. It defaults to @code{5556}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29119 +#: guix-git/doc/guix.texi:29456 #, no-wrap msgid "@code{publish-port} (default: @code{5557})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:29121 +#: guix-git/doc/guix.texi:29458 msgid "The TCP port of the publish server. It defaults to @code{5557}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29122 +#: guix-git/doc/guix.texi:29459 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass-remote-server.log\"})" msgstr "@code{daemon-socket} (default: @code{\"/var/guix/daemon-socket/socket\"})" #. type: item -#: guix-git/doc/guix.texi:29125 +#: guix-git/doc/guix.texi:29462 #, no-wrap msgid "@code{cache} (default: @code{\"/var/cache/cuirass/remote\"})" msgstr "@code{daemon-socket} (default: @code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:29127 +#: guix-git/doc/guix.texi:29464 msgid "Use @var{cache} directory to cache build log files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29128 +#: guix-git/doc/guix.texi:29465 #, no-wrap msgid "@code{trigger-url} (default: @code{#f})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:29131 +#: guix-git/doc/guix.texi:29468 msgid "Once a substitute is successfully fetched, trigger substitute baking at @var{trigger-url}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29136 +#: guix-git/doc/guix.texi:29473 msgid "If set to false, do not start a publish server and ignore the @code{publish-port} argument. This can be useful if there is already a standalone publish server standing next to the remote server." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:29138 guix-git/doc/guix.texi:29175 +#: guix-git/doc/guix.texi:29475 guix-git/doc/guix.texi:29512 #, no-wrap msgid "private-key" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29147 +#: guix-git/doc/guix.texi:29484 msgid "At least one remote worker must also be started on any machine of the local network to actually perform the builds and report their status." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29148 +#: guix-git/doc/guix.texi:29485 #, no-wrap msgid "{Data Type} cuirass-remote-worker-configuration" msgstr "{Тип данных} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:29150 +#: guix-git/doc/guix.texi:29487 msgid "Data type representing the configuration of the Cuirass remote-worker." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:29155 +#: guix-git/doc/guix.texi:29492 #, no-wrap msgid "@code{workers} (default: @code{1})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:29157 +#: guix-git/doc/guix.texi:29494 msgid "Start @var{workers} parallel workers." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29161 +#: guix-git/doc/guix.texi:29498 msgid "Do not use Avahi discovery and connect to the given @code{server} IP address instead." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29162 +#: guix-git/doc/guix.texi:29499 #, no-wrap msgid "@code{systems} (default: @code{(list (%current-system))})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:29164 +#: guix-git/doc/guix.texi:29501 msgid "Only request builds for the given @var{systems}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29165 +#: guix-git/doc/guix.texi:29502 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass-remote-worker.log\"})" msgstr "@code{daemon-socket} (default: @code{\"/var/guix/daemon-socket/socket\"})" #. type: item -#: guix-git/doc/guix.texi:29168 +#: guix-git/doc/guix.texi:29505 #, no-wrap msgid "@code{publish-port} (default: @code{5558})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:29170 +#: guix-git/doc/guix.texi:29507 msgid "The TCP port of the publish server. It defaults to @code{5558}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29182 +#: guix-git/doc/guix.texi:29519 #, no-wrap msgid "Laminar" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29187 +#: guix-git/doc/guix.texi:29524 msgid "@uref{https://laminar.ohwg.net/, Laminar} is a lightweight and modular Continuous Integration service. It doesn't have a configuration web UI instead uses version-controllable configuration files and scripts." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29190 +#: guix-git/doc/guix.texi:29527 msgid "Laminar encourages the use of existing tools such as bash and cron instead of reinventing them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29191 +#: guix-git/doc/guix.texi:29528 #, no-wrap msgid "{Scheme Procedure} laminar-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:29194 +#: guix-git/doc/guix.texi:29531 msgid "The type of the Laminar service. Its value must be a @code{laminar-configuration} object, as described below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29198 +#: guix-git/doc/guix.texi:29535 msgid "All configuration values have defaults, a minimal configuration to get Laminar running is shown below. By default, the web interface is available on port 8080." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29201 +#: guix-git/doc/guix.texi:29538 #, no-wrap msgid "(service laminar-service-type)\n" msgstr "(service openssh-service-type)\n" #. type: deftp -#: guix-git/doc/guix.texi:29204 +#: guix-git/doc/guix.texi:29541 #, no-wrap msgid "{Data Type} laminar-configuration" msgstr "{Тип данных} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:29206 +#: guix-git/doc/guix.texi:29543 msgid "Data type representing the configuration of Laminar." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:29208 +#: guix-git/doc/guix.texi:29545 #, no-wrap msgid "@code{laminar} (default: @code{laminar})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:29210 +#: guix-git/doc/guix.texi:29547 msgid "The Laminar package to use." msgstr "Используемый пакет Mumi." #. type: item -#: guix-git/doc/guix.texi:29211 +#: guix-git/doc/guix.texi:29548 #, no-wrap msgid "@code{home-directory} (default: @code{\"/var/lib/laminar\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:29213 +#: guix-git/doc/guix.texi:29550 msgid "The directory for job configurations and run directories." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29214 +#: guix-git/doc/guix.texi:29551 #, no-wrap msgid "@code{bind-http} (default: @code{\"*:8080\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:29217 +#: guix-git/doc/guix.texi:29554 msgid "The interface/port or unix socket on which laminard should listen for incoming connections to the web frontend." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29218 +#: guix-git/doc/guix.texi:29555 #, no-wrap msgid "@code{bind-rpc} (default: @code{\"unix-abstract:laminar\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:29221 +#: guix-git/doc/guix.texi:29558 msgid "The interface/port or unix socket on which laminard should listen for incoming commands such as build triggers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29222 +#: guix-git/doc/guix.texi:29559 #, no-wrap msgid "@code{title} (default: @code{\"Laminar\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:29224 +#: guix-git/doc/guix.texi:29561 msgid "The page title to show in the web frontend." msgstr "Сервис rottlog." #. type: item -#: guix-git/doc/guix.texi:29225 +#: guix-git/doc/guix.texi:29562 #, no-wrap msgid "@code{keep-rundirs} (default: @code{0})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:29229 +#: guix-git/doc/guix.texi:29566 msgid "Set to an integer defining how many rundirs to keep per job. The lowest-numbered ones will be deleted. The default is 0, meaning all run dirs will be immediately deleted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29230 +#: guix-git/doc/guix.texi:29567 #, no-wrap msgid "@code{archive-url} (default: @code{#f})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:29233 +#: guix-git/doc/guix.texi:29570 msgid "The web frontend served by laminard will use this URL to form links to artefacts archived jobs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29234 +#: guix-git/doc/guix.texi:29571 #, no-wrap msgid "@code{base-url} (default: @code{#f})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:29236 +#: guix-git/doc/guix.texi:29573 msgid "Base URL to use for links to laminar itself." msgstr "URI для использования в базе данных." #. type: cindex -#: guix-git/doc/guix.texi:29243 +#: guix-git/doc/guix.texi:29580 #, no-wrap msgid "tlp" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29244 +#: guix-git/doc/guix.texi:29581 #, no-wrap msgid "power management with TLP" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29245 +#: guix-git/doc/guix.texi:29582 #, no-wrap msgid "TLP daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29249 +#: guix-git/doc/guix.texi:29586 msgid "The @code{(gnu services pm)} module provides a Guix service definition for the Linux power management tool TLP." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29255 +#: guix-git/doc/guix.texi:29592 msgid "TLP enables various powersaving modes in userspace and kernel. Contrary to @code{upower-service}, it is not a passive, monitoring tool, as it will apply custom settings each time a new power source is detected. More information can be found at @uref{https://linrunner.de/en/tlp/tlp.html, TLP home page}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29256 +#: guix-git/doc/guix.texi:29593 #, no-wrap msgid "{Scheme Variable} tlp-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29260 +#: guix-git/doc/guix.texi:29597 msgid "The service type for the TLP tool. The default settings are optimised for battery life on most systems, but you can tweak them to your heart's content by adding a valid @code{tlp-configuration}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29265 +#: guix-git/doc/guix.texi:29602 #, no-wrap msgid "" "(service tlp-service-type\n" @@ -53979,888 +54728,932 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29273 +#: guix-git/doc/guix.texi:29610 msgid "Each parameter definition is preceded by its type; for example, @samp{boolean foo} indicates that the @code{foo} parameter should be specified as a boolean. Types starting with @code{maybe-} denote parameters that won't show up in TLP config file when their value is @code{'disabled}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29283 +#: guix-git/doc/guix.texi:29620 msgid "Available @code{tlp-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29284 +#: guix-git/doc/guix.texi:29621 #, no-wrap msgid "{@code{tlp-configuration} parameter} package tlp" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29286 +#: guix-git/doc/guix.texi:29623 msgid "The TLP package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29289 +#: guix-git/doc/guix.texi:29626 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean tlp-enable?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29291 +#: guix-git/doc/guix.texi:29628 msgid "Set to true if you wish to enable TLP." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29296 +#: guix-git/doc/guix.texi:29633 #, no-wrap msgid "{@code{tlp-configuration} parameter} string tlp-default-mode" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29299 +#: guix-git/doc/guix.texi:29636 msgid "Default mode when no power supply can be detected. Alternatives are AC and BAT." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29301 +#: guix-git/doc/guix.texi:29638 msgid "Defaults to @samp{\"AC\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29304 +#: guix-git/doc/guix.texi:29641 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer disk-idle-secs-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29307 +#: guix-git/doc/guix.texi:29644 msgid "Number of seconds Linux kernel has to wait after the disk goes idle, before syncing on AC." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29312 +#: guix-git/doc/guix.texi:29649 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer disk-idle-secs-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29314 +#: guix-git/doc/guix.texi:29651 msgid "Same as @code{disk-idle-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29316 +#: guix-git/doc/guix.texi:29653 msgid "Defaults to @samp{2}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29319 +#: guix-git/doc/guix.texi:29656 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer max-lost-work-secs-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29321 +#: guix-git/doc/guix.texi:29658 msgid "Dirty pages flushing periodicity, expressed in seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29323 guix-git/doc/guix.texi:29546 -#: guix-git/doc/guix.texi:31814 guix-git/doc/guix.texi:31822 +#: guix-git/doc/guix.texi:29660 guix-git/doc/guix.texi:29883 +#: guix-git/doc/guix.texi:32179 guix-git/doc/guix.texi:32187 msgid "Defaults to @samp{15}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29326 +#: guix-git/doc/guix.texi:29663 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer max-lost-work-secs-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29328 +#: guix-git/doc/guix.texi:29665 msgid "Same as @code{max-lost-work-secs-on-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29330 +#: guix-git/doc/guix.texi:29667 msgid "Defaults to @samp{60}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29333 +#: guix-git/doc/guix.texi:29670 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list cpu-scaling-governor-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29337 +#: guix-git/doc/guix.texi:29674 msgid "CPU frequency scaling governor on AC mode. With intel_pstate driver, alternatives are powersave and performance. With acpi-cpufreq driver, alternatives are ondemand, powersave, performance and conservative." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29342 +#: guix-git/doc/guix.texi:29679 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list cpu-scaling-governor-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29344 +#: guix-git/doc/guix.texi:29681 msgid "Same as @code{cpu-scaling-governor-on-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29349 +#: guix-git/doc/guix.texi:29686 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-min-freq-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29351 +#: guix-git/doc/guix.texi:29688 msgid "Set the min available frequency for the scaling governor on AC." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29356 +#: guix-git/doc/guix.texi:29693 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-max-freq-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29358 +#: guix-git/doc/guix.texi:29695 msgid "Set the max available frequency for the scaling governor on AC." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29363 +#: guix-git/doc/guix.texi:29700 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-min-freq-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29365 +#: guix-git/doc/guix.texi:29702 msgid "Set the min available frequency for the scaling governor on BAT." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29370 +#: guix-git/doc/guix.texi:29707 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-max-freq-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29372 +#: guix-git/doc/guix.texi:29709 msgid "Set the max available frequency for the scaling governor on BAT." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29377 +#: guix-git/doc/guix.texi:29714 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-min-perf-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29380 +#: guix-git/doc/guix.texi:29717 msgid "Limit the min P-state to control the power dissipation of the CPU, in AC mode. Values are stated as a percentage of the available performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29385 +#: guix-git/doc/guix.texi:29722 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29388 +#: guix-git/doc/guix.texi:29725 msgid "Limit the max P-state to control the power dissipation of the CPU, in AC mode. Values are stated as a percentage of the available performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29393 +#: guix-git/doc/guix.texi:29730 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-min-perf-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29395 +#: guix-git/doc/guix.texi:29732 msgid "Same as @code{cpu-min-perf-on-ac} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29400 +#: guix-git/doc/guix.texi:29737 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29402 +#: guix-git/doc/guix.texi:29739 msgid "Same as @code{cpu-max-perf-on-ac} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29407 +#: guix-git/doc/guix.texi:29744 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean cpu-boost-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29409 +#: guix-git/doc/guix.texi:29746 msgid "Enable CPU turbo boost feature on AC mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29414 +#: guix-git/doc/guix.texi:29751 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean cpu-boost-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29416 +#: guix-git/doc/guix.texi:29753 msgid "Same as @code{cpu-boost-on-ac?} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29421 +#: guix-git/doc/guix.texi:29758 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean sched-powersave-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29424 +#: guix-git/doc/guix.texi:29761 msgid "Allow Linux kernel to minimize the number of CPU cores/hyper-threads used under light load conditions." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29429 +#: guix-git/doc/guix.texi:29766 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean sched-powersave-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29431 +#: guix-git/doc/guix.texi:29768 msgid "Same as @code{sched-powersave-on-ac?} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29436 +#: guix-git/doc/guix.texi:29773 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean nmi-watchdog?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29438 +#: guix-git/doc/guix.texi:29775 msgid "Enable Linux kernel NMI watchdog." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29443 +#: guix-git/doc/guix.texi:29780 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string phc-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29446 +#: guix-git/doc/guix.texi:29783 msgid "For Linux kernels with PHC patch applied, change CPU voltages. An example value would be @samp{\"F:V F:V F:V F:V\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29451 +#: guix-git/doc/guix.texi:29788 #, no-wrap msgid "{@code{tlp-configuration} parameter} string energy-perf-policy-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29454 +#: guix-git/doc/guix.texi:29791 msgid "Set CPU performance versus energy saving policy on AC@. Alternatives are performance, normal, powersave." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29456 guix-git/doc/guix.texi:29554 -#: guix-git/doc/guix.texi:29584 +#: guix-git/doc/guix.texi:29793 guix-git/doc/guix.texi:29891 +#: guix-git/doc/guix.texi:29949 msgid "Defaults to @samp{\"performance\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29459 +#: guix-git/doc/guix.texi:29796 #, no-wrap msgid "{@code{tlp-configuration} parameter} string energy-perf-policy-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29461 +#: guix-git/doc/guix.texi:29798 msgid "Same as @code{energy-perf-policy-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29463 guix-git/doc/guix.texi:29561 +#: guix-git/doc/guix.texi:29800 guix-git/doc/guix.texi:29898 msgid "Defaults to @samp{\"powersave\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29466 +#: guix-git/doc/guix.texi:29803 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disks-devices" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29468 +#: guix-git/doc/guix.texi:29805 msgid "Hard disk devices." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29471 +#: guix-git/doc/guix.texi:29808 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disk-apm-level-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29473 +#: guix-git/doc/guix.texi:29810 msgid "Hard disk advanced power management level." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29476 +#: guix-git/doc/guix.texi:29813 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disk-apm-level-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29478 +#: guix-git/doc/guix.texi:29815 msgid "Same as @code{disk-apm-bat} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29481 +#: guix-git/doc/guix.texi:29818 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-spindown-timeout-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29484 +#: guix-git/doc/guix.texi:29821 msgid "Hard disk spin down timeout. One value has to be specified for each declared hard disk." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29489 +#: guix-git/doc/guix.texi:29826 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-spindown-timeout-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29491 +#: guix-git/doc/guix.texi:29828 msgid "Same as @code{disk-spindown-timeout-on-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29496 +#: guix-git/doc/guix.texi:29833 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-iosched" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29500 +#: guix-git/doc/guix.texi:29837 msgid "Select IO scheduler for disk devices. One value has to be specified for each declared hard disk. Example alternatives are cfq, deadline and noop." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29505 +#: guix-git/doc/guix.texi:29842 #, no-wrap msgid "{@code{tlp-configuration} parameter} string sata-linkpwr-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29508 +#: guix-git/doc/guix.texi:29845 msgid "SATA aggressive link power management (ALPM) level. Alternatives are min_power, medium_power, max_performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29510 +#: guix-git/doc/guix.texi:29847 msgid "Defaults to @samp{\"max_performance\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29513 +#: guix-git/doc/guix.texi:29850 #, no-wrap msgid "{@code{tlp-configuration} parameter} string sata-linkpwr-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29515 +#: guix-git/doc/guix.texi:29852 msgid "Same as @code{sata-linkpwr-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29517 +#: guix-git/doc/guix.texi:29854 msgid "Defaults to @samp{\"min_power\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29520 +#: guix-git/doc/guix.texi:29857 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string sata-linkpwr-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29522 +#: guix-git/doc/guix.texi:29859 msgid "Exclude specified SATA host devices for link power management." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29527 +#: guix-git/doc/guix.texi:29864 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-on-off-boolean ahci-runtime-pm-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29530 +#: guix-git/doc/guix.texi:29867 msgid "Enable Runtime Power Management for AHCI controller and disks on AC mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29535 +#: guix-git/doc/guix.texi:29872 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-on-off-boolean ahci-runtime-pm-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29537 +#: guix-git/doc/guix.texi:29874 msgid "Same as @code{ahci-runtime-pm-on-ac} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29542 +#: guix-git/doc/guix.texi:29879 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer ahci-runtime-pm-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29544 +#: guix-git/doc/guix.texi:29881 msgid "Seconds of inactivity before disk is suspended." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29549 +#: guix-git/doc/guix.texi:29886 #, no-wrap msgid "{@code{tlp-configuration} parameter} string pcie-aspm-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29552 +#: guix-git/doc/guix.texi:29889 msgid "PCI Express Active State Power Management level. Alternatives are default, performance, powersave." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29557 +#: guix-git/doc/guix.texi:29894 #, no-wrap msgid "{@code{tlp-configuration} parameter} string pcie-aspm-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29559 +#: guix-git/doc/guix.texi:29896 msgid "Same as @code{pcie-aspm-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29564 +#: guix-git/doc/guix.texi:29901 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer start-charge-thresh-bat0" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29903 +msgid "Percentage when battery 0 should begin charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29908 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer stop-charge-thresh-bat0" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29910 +msgid "Percentage when battery 0 should stop charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29915 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer start-charge-thresh-bat1" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29917 +msgid "Percentage when battery 1 should begin charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29922 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer stop-charge-thresh-bat1" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29924 +msgid "Percentage when battery 1 should stop charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29929 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-power-profile-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29567 +#: guix-git/doc/guix.texi:29932 msgid "Radeon graphics clock speed level. Alternatives are low, mid, high, auto, default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29569 +#: guix-git/doc/guix.texi:29934 msgid "Defaults to @samp{\"high\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29572 +#: guix-git/doc/guix.texi:29937 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-power-profile-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29574 +#: guix-git/doc/guix.texi:29939 msgid "Same as @code{radeon-power-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29576 +#: guix-git/doc/guix.texi:29941 msgid "Defaults to @samp{\"low\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29579 +#: guix-git/doc/guix.texi:29944 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-state-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29582 +#: guix-git/doc/guix.texi:29947 msgid "Radeon dynamic power management method (DPM). Alternatives are battery, performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29587 +#: guix-git/doc/guix.texi:29952 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-state-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29589 +#: guix-git/doc/guix.texi:29954 msgid "Same as @code{radeon-dpm-state-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29591 +#: guix-git/doc/guix.texi:29956 msgid "Defaults to @samp{\"battery\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29594 +#: guix-git/doc/guix.texi:29959 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-perf-level-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29596 +#: guix-git/doc/guix.texi:29961 msgid "Radeon DPM performance level. Alternatives are auto, low, high." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29598 guix-git/doc/guix.texi:29605 -#: guix-git/doc/guix.texi:29679 +#: guix-git/doc/guix.texi:29963 guix-git/doc/guix.texi:29970 +#: guix-git/doc/guix.texi:30044 msgid "Defaults to @samp{\"auto\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29601 +#: guix-git/doc/guix.texi:29966 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-perf-level-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29603 +#: guix-git/doc/guix.texi:29968 msgid "Same as @code{radeon-dpm-perf-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29608 +#: guix-git/doc/guix.texi:29973 #, no-wrap msgid "{@code{tlp-configuration} parameter} on-off-boolean wifi-pwr-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29610 +#: guix-git/doc/guix.texi:29975 msgid "Wifi power saving mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29615 +#: guix-git/doc/guix.texi:29980 #, no-wrap msgid "{@code{tlp-configuration} parameter} on-off-boolean wifi-pwr-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29617 +#: guix-git/doc/guix.texi:29982 msgid "Same as @code{wifi-power-ac?} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29622 +#: guix-git/doc/guix.texi:29987 #, no-wrap msgid "{@code{tlp-configuration} parameter} y-n-boolean wol-disable?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29624 +#: guix-git/doc/guix.texi:29989 msgid "Disable wake on LAN." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29629 +#: guix-git/doc/guix.texi:29994 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer sound-power-save-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29632 +#: guix-git/doc/guix.texi:29997 msgid "Timeout duration in seconds before activating audio power saving on Intel HDA and AC97 devices. A value of 0 disables power saving." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29637 +#: guix-git/doc/guix.texi:30002 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer sound-power-save-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29639 +#: guix-git/doc/guix.texi:30004 msgid "Same as @code{sound-powersave-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29644 +#: guix-git/doc/guix.texi:30009 #, no-wrap msgid "{@code{tlp-configuration} parameter} y-n-boolean sound-power-save-controller?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29646 +#: guix-git/doc/guix.texi:30011 msgid "Disable controller in powersaving mode on Intel HDA devices." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29651 +#: guix-git/doc/guix.texi:30016 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean bay-poweroff-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29655 +#: guix-git/doc/guix.texi:30020 msgid "Enable optical drive in UltraBay/MediaBay on BAT mode. Drive can be powered on again by releasing (and reinserting) the eject lever or by pressing the disc eject button on newer models." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29660 +#: guix-git/doc/guix.texi:30025 #, no-wrap msgid "{@code{tlp-configuration} parameter} string bay-device" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29662 +#: guix-git/doc/guix.texi:30027 msgid "Name of the optical drive device to power off." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29664 +#: guix-git/doc/guix.texi:30029 msgid "Defaults to @samp{\"sr0\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29667 +#: guix-git/doc/guix.texi:30032 #, no-wrap msgid "{@code{tlp-configuration} parameter} string runtime-pm-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29670 +#: guix-git/doc/guix.texi:30035 msgid "Runtime Power Management for PCI(e) bus devices. Alternatives are on and auto." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29672 +#: guix-git/doc/guix.texi:30037 msgid "Defaults to @samp{\"on\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29675 +#: guix-git/doc/guix.texi:30040 #, no-wrap msgid "{@code{tlp-configuration} parameter} string runtime-pm-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29677 +#: guix-git/doc/guix.texi:30042 msgid "Same as @code{runtime-pm-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29682 +#: guix-git/doc/guix.texi:30047 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean runtime-pm-all?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29685 +#: guix-git/doc/guix.texi:30050 msgid "Runtime Power Management for all PCI(e) bus devices, except blacklisted ones." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29690 +#: guix-git/doc/guix.texi:30055 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list runtime-pm-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29692 +#: guix-git/doc/guix.texi:30057 msgid "Exclude specified PCI(e) device addresses from Runtime Power Management." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29697 +#: guix-git/doc/guix.texi:30062 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list runtime-pm-driver-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29700 +#: guix-git/doc/guix.texi:30065 msgid "Exclude PCI(e) devices assigned to the specified drivers from Runtime Power Management." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29703 +#: guix-git/doc/guix.texi:30068 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean usb-autosuspend?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29705 +#: guix-git/doc/guix.texi:30070 msgid "Enable USB autosuspend feature." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29710 +#: guix-git/doc/guix.texi:30075 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string usb-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29712 +#: guix-git/doc/guix.texi:30077 msgid "Exclude specified devices from USB autosuspend." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29717 +#: guix-git/doc/guix.texi:30082 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean usb-blacklist-wwan?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29719 +#: guix-git/doc/guix.texi:30084 msgid "Exclude WWAN devices from USB autosuspend." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29724 +#: guix-git/doc/guix.texi:30089 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string usb-whitelist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29727 +#: guix-git/doc/guix.texi:30092 msgid "Include specified devices into USB autosuspend, even if they are already excluded by the driver or via @code{usb-blacklist-wwan?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29732 +#: guix-git/doc/guix.texi:30097 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean usb-autosuspend-disable-on-shutdown?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29734 +#: guix-git/doc/guix.texi:30099 msgid "Enable USB autosuspend before shutdown." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29739 +#: guix-git/doc/guix.texi:30104 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean restore-device-state-on-startup?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29742 +#: guix-git/doc/guix.texi:30107 msgid "Restore radio device state (bluetooth, wifi, wwan) from previous shutdown on system startup." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29747 +#: guix-git/doc/guix.texi:30112 #, no-wrap msgid "thermald" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29748 +#: guix-git/doc/guix.texi:30113 #, no-wrap msgid "CPU frequency scaling with thermald" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29749 +#: guix-git/doc/guix.texi:30114 #, no-wrap msgid "Thermald daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29753 +#: guix-git/doc/guix.texi:30118 msgid "The @code{(gnu services pm)} module provides an interface to thermald, a CPU frequency scaling service which helps prevent overheating." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29754 +#: guix-git/doc/guix.texi:30119 #, no-wrap msgid "{Scheme Variable} thermald-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29759 +#: guix-git/doc/guix.texi:30124 msgid "This is the service type for @uref{https://01.org/linux-thermal-daemon/, thermald}, the Linux Thermal Daemon, which is responsible for controlling the thermal state of processors and preventing overheating." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29761 +#: guix-git/doc/guix.texi:30126 #, no-wrap msgid "{Data Type} thermald-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29763 +#: guix-git/doc/guix.texi:30128 msgid "Data type representing the configuration of @code{thermald-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29765 +#: guix-git/doc/guix.texi:30130 #, no-wrap msgid "@code{ignore-cpuid-check?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29767 +#: guix-git/doc/guix.texi:30132 msgid "Ignore cpuid check for supported CPU models." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29768 +#: guix-git/doc/guix.texi:30133 #, no-wrap msgid "@code{thermald} (default: @var{thermald})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29770 +#: guix-git/doc/guix.texi:30135 msgid "Package object of thermald." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29779 +#: guix-git/doc/guix.texi:30144 msgid "The @code{(gnu services audio)} module provides a service to start MPD (the Music Player Daemon)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29780 +#: guix-git/doc/guix.texi:30145 #, no-wrap msgid "mpd" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29781 +#: guix-git/doc/guix.texi:30146 #, no-wrap msgid "Music Player Daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29786 +#: guix-git/doc/guix.texi:30151 msgid "The Music Player Daemon (MPD) is a service that can play music while being controlled from the local machine or over the network by a variety of clients." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29789 +#: guix-git/doc/guix.texi:30154 msgid "The following example shows how one might run @code{mpd} as user @code{\"bob\"} on port @code{6666}. It uses pulseaudio for output." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29795 +#: guix-git/doc/guix.texi:30160 #, no-wrap msgid "" "(service mpd-service-type\n" @@ -54870,215 +55663,215 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29797 +#: guix-git/doc/guix.texi:30162 #, no-wrap msgid "{Scheme Variable} mpd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29799 +#: guix-git/doc/guix.texi:30164 msgid "The service type for @command{mpd}" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29801 +#: guix-git/doc/guix.texi:30166 #, no-wrap msgid "{Data Type} mpd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29803 +#: guix-git/doc/guix.texi:30168 msgid "Data type representing the configuration of @command{mpd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29805 +#: guix-git/doc/guix.texi:30170 #, no-wrap msgid "@code{user} (default: @code{\"mpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29807 +#: guix-git/doc/guix.texi:30172 msgid "The user to run mpd as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29808 +#: guix-git/doc/guix.texi:30173 #, no-wrap msgid "@code{music-dir} (default: @code{\"~/Music\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29810 +#: guix-git/doc/guix.texi:30175 msgid "The directory to scan for music files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29811 +#: guix-git/doc/guix.texi:30176 #, no-wrap msgid "@code{playlist-dir} (default: @code{\"~/.mpd/playlists\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29813 +#: guix-git/doc/guix.texi:30178 msgid "The directory to store playlists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29814 +#: guix-git/doc/guix.texi:30179 #, no-wrap msgid "@code{db-file} (default: @code{\"~/.mpd/tag_cache\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29816 +#: guix-git/doc/guix.texi:30181 msgid "The location of the music database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29817 +#: guix-git/doc/guix.texi:30182 #, no-wrap msgid "@code{state-file} (default: @code{\"~/.mpd/state\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29819 +#: guix-git/doc/guix.texi:30184 msgid "The location of the file that stores current MPD's state." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29820 +#: guix-git/doc/guix.texi:30185 #, no-wrap msgid "@code{sticker-file} (default: @code{\"~/.mpd/sticker.sql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29822 +#: guix-git/doc/guix.texi:30187 msgid "The location of the sticker database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29823 +#: guix-git/doc/guix.texi:30188 #, no-wrap msgid "@code{port} (default: @code{\"6600\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29825 +#: guix-git/doc/guix.texi:30190 msgid "The port to run mpd on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29826 +#: guix-git/doc/guix.texi:30191 #, no-wrap msgid "@code{address} (default: @code{\"any\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29829 +#: guix-git/doc/guix.texi:30194 msgid "The address that mpd will bind to. To use a Unix domain socket, an absolute path can be specified here." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29830 +#: guix-git/doc/guix.texi:30195 #, no-wrap msgid "@code{outputs} (default: @code{\"(list (mpd-output))\"})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:29832 +#: guix-git/doc/guix.texi:30197 msgid "The audio outputs that MPD can use. By default this is a single output using pulseaudio." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29836 +#: guix-git/doc/guix.texi:30201 #, no-wrap msgid "{Data Type} mpd-output" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29838 +#: guix-git/doc/guix.texi:30203 msgid "Data type representing an @command{mpd} audio output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29840 +#: guix-git/doc/guix.texi:30205 #, no-wrap msgid "@code{name} (default: @code{\"MPD\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:29842 +#: guix-git/doc/guix.texi:30207 msgid "The name of the audio output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29843 +#: guix-git/doc/guix.texi:30208 #, no-wrap msgid "@code{type} (default: @code{\"pulse\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:29845 +#: guix-git/doc/guix.texi:30210 msgid "The type of audio output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29846 +#: guix-git/doc/guix.texi:30211 #, no-wrap msgid "@code{enabled?} (default: @code{#t})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:29851 +#: guix-git/doc/guix.texi:30216 msgid "Specifies whether this audio output is enabled when MPD is started. By default, all audio outputs are enabled. This is just the default setting when there is no state file; with a state file, the previous state is restored." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29852 +#: guix-git/doc/guix.texi:30217 #, no-wrap msgid "@code{tags?} (default: @code{#t})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:29856 +#: guix-git/doc/guix.texi:30221 msgid "If set to @code{#f}, then MPD will not send tags to this output. This is only useful for output plugins that can receive tags, for example the @code{httpd} output plugin." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29857 +#: guix-git/doc/guix.texi:30222 #, no-wrap msgid "@code{always-on?} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:29861 +#: guix-git/doc/guix.texi:30226 msgid "If set to @code{#t}, then MPD attempts to keep this audio output always open. This may be useful for streaming servers, when you don’t want to disconnect all listeners even when playback is accidentally stopped." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:29862 +#: guix-git/doc/guix.texi:30227 #, no-wrap msgid "mixer-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29868 +#: guix-git/doc/guix.texi:30233 msgid "This field accepts a symbol that specifies which mixer should be used for this audio output: the @code{hardware} mixer, the @code{software} mixer, the @code{null} mixer (allows setting the volume, but with no effect; this can be used as a trick to implement an external mixer External Mixer) or no mixer (@code{none})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29872 +#: guix-git/doc/guix.texi:30237 msgid "An association list of option symbols to string values to be appended to the audio output configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29878 +#: guix-git/doc/guix.texi:30243 msgid "The following example shows a configuration of @code{mpd} that provides an HTTP audio streaming output." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29890 +#: guix-git/doc/guix.texi:30255 #, no-wrap msgid "" "(service mpd-service-type\n" @@ -55094,34 +55887,34 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29899 +#: guix-git/doc/guix.texi:30264 msgid "The @code{(gnu services virtualization)} module provides services for the libvirt and virtlog daemons, as well as other virtualization-related services." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29900 +#: guix-git/doc/guix.texi:30265 #, no-wrap msgid "Libvirt daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29905 +#: guix-git/doc/guix.texi:30270 msgid "@code{libvirtd} is the server side daemon component of the libvirt virtualization management system. This daemon runs on host servers and performs required management tasks for virtualized guests." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29906 +#: guix-git/doc/guix.texi:30271 #, no-wrap msgid "{Scheme Variable} libvirt-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29909 +#: guix-git/doc/guix.texi:30274 msgid "This is the type of the @uref{https://libvirt.org, libvirt daemon}. Its value must be a @code{libvirt-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29915 +#: guix-git/doc/guix.texi:30280 #, no-wrap msgid "" "(service libvirt-service-type\n" @@ -55131,870 +55924,870 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29920 +#: guix-git/doc/guix.texi:30285 msgid "Available @code{libvirt-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29921 +#: guix-git/doc/guix.texi:30286 #, no-wrap msgid "{@code{libvirt-configuration} parameter} package libvirt" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29923 +#: guix-git/doc/guix.texi:30288 msgid "Libvirt package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29926 +#: guix-git/doc/guix.texi:30291 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean listen-tls?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29929 +#: guix-git/doc/guix.texi:30294 msgid "Flag listening for secure TLS connections on the public TCP/IP port. You must set @code{listen} for this to have any effect." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29932 +#: guix-git/doc/guix.texi:30297 msgid "It is necessary to setup a CA and issue server certificates before using this capability." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29937 +#: guix-git/doc/guix.texi:30302 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean listen-tcp?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29940 +#: guix-git/doc/guix.texi:30305 msgid "Listen for unencrypted TCP connections on the public TCP/IP port. You must set @code{listen} for this to have any effect." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29944 +#: guix-git/doc/guix.texi:30309 msgid "Using the TCP socket requires SASL authentication by default. Only SASL mechanisms which support data encryption are allowed. This is DIGEST_MD5 and GSSAPI (Kerberos5)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29949 +#: guix-git/doc/guix.texi:30314 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tls-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29952 +#: guix-git/doc/guix.texi:30317 msgid "Port for accepting secure TLS connections. This can be a port number, or service name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29954 +#: guix-git/doc/guix.texi:30319 msgid "Defaults to @samp{\"16514\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29957 +#: guix-git/doc/guix.texi:30322 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tcp-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29960 +#: guix-git/doc/guix.texi:30325 msgid "Port for accepting insecure TCP connections. This can be a port number, or service name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29962 +#: guix-git/doc/guix.texi:30327 msgid "Defaults to @samp{\"16509\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29965 +#: guix-git/doc/guix.texi:30330 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string listen-addr" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29967 +#: guix-git/doc/guix.texi:30332 msgid "IP address or hostname used for client connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29972 +#: guix-git/doc/guix.texi:30337 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean mdns-adv?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29974 +#: guix-git/doc/guix.texi:30339 msgid "Flag toggling mDNS advertisement of the libvirt service." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29977 +#: guix-git/doc/guix.texi:30342 msgid "Alternatively can disable for all services on a host by stopping the Avahi daemon." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29982 +#: guix-git/doc/guix.texi:30347 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string mdns-name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29985 +#: guix-git/doc/guix.texi:30350 msgid "Default mDNS advertisement name. This must be unique on the immediate broadcast network." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29987 +#: guix-git/doc/guix.texi:30352 msgid "Defaults to @samp{\"Virtualization Host \"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29990 +#: guix-git/doc/guix.texi:30355 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29994 +#: guix-git/doc/guix.texi:30359 msgid "UNIX domain socket group ownership. This can be used to allow a 'trusted' set of users access to management capabilities without becoming root." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29999 +#: guix-git/doc/guix.texi:30364 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-ro-perms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30002 +#: guix-git/doc/guix.texi:30367 msgid "UNIX socket permissions for the R/O socket. This is used for monitoring VM status only." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30004 guix-git/doc/guix.texi:30022 +#: guix-git/doc/guix.texi:30369 guix-git/doc/guix.texi:30387 msgid "Defaults to @samp{\"0777\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30007 +#: guix-git/doc/guix.texi:30372 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-rw-perms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30011 +#: guix-git/doc/guix.texi:30376 msgid "UNIX socket permissions for the R/W socket. Default allows only root. If PolicyKit is enabled on the socket, the default will change to allow everyone (eg, 0777)" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30013 +#: guix-git/doc/guix.texi:30378 msgid "Defaults to @samp{\"0770\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30016 +#: guix-git/doc/guix.texi:30381 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-admin-perms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30020 +#: guix-git/doc/guix.texi:30385 msgid "UNIX socket permissions for the admin socket. Default allows only owner (root), do not change it unless you are sure to whom you are exposing the access to." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30025 +#: guix-git/doc/guix.texi:30390 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30027 +#: guix-git/doc/guix.texi:30392 msgid "The directory in which sockets will be found/created." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30029 +#: guix-git/doc/guix.texi:30394 msgid "Defaults to @samp{\"/var/run/libvirt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30032 +#: guix-git/doc/guix.texi:30397 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-unix-ro" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30035 +#: guix-git/doc/guix.texi:30400 msgid "Authentication scheme for UNIX read-only sockets. By default socket permissions allow anyone to connect" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30037 guix-git/doc/guix.texi:30046 +#: guix-git/doc/guix.texi:30402 guix-git/doc/guix.texi:30411 msgid "Defaults to @samp{\"polkit\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30040 +#: guix-git/doc/guix.texi:30405 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-unix-rw" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30044 +#: guix-git/doc/guix.texi:30409 msgid "Authentication scheme for UNIX read-write sockets. By default socket permissions only allow root. If PolicyKit support was compiled into libvirt, the default will be to use 'polkit' auth." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30049 +#: guix-git/doc/guix.texi:30414 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-tcp" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30053 +#: guix-git/doc/guix.texi:30418 msgid "Authentication scheme for TCP sockets. If you don't enable SASL, then all TCP traffic is cleartext. Don't do this outside of a dev/test scenario." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30055 +#: guix-git/doc/guix.texi:30420 msgid "Defaults to @samp{\"sasl\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30058 +#: guix-git/doc/guix.texi:30423 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-tls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30062 +#: guix-git/doc/guix.texi:30427 msgid "Authentication scheme for TLS sockets. TLS sockets already have encryption provided by the TLS layer, and limited authentication is done by certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30065 +#: guix-git/doc/guix.texi:30430 msgid "It is possible to make use of any SASL authentication mechanism as well, by using 'sasl' for this option" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30067 +#: guix-git/doc/guix.texi:30432 msgid "Defaults to @samp{\"none\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30070 +#: guix-git/doc/guix.texi:30435 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list access-drivers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30072 +#: guix-git/doc/guix.texi:30437 msgid "API access control scheme." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30075 +#: guix-git/doc/guix.texi:30440 msgid "By default an authenticated user is allowed access to all APIs. Access drivers can place restrictions on this." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30080 +#: guix-git/doc/guix.texi:30445 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string key-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30083 +#: guix-git/doc/guix.texi:30448 msgid "Server key file path. If set to an empty string, then no private key is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30088 +#: guix-git/doc/guix.texi:30453 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string cert-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30091 +#: guix-git/doc/guix.texi:30456 msgid "Server key file path. If set to an empty string, then no certificate is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30096 +#: guix-git/doc/guix.texi:30461 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string ca-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30099 +#: guix-git/doc/guix.texi:30464 msgid "Server key file path. If set to an empty string, then no CA certificate is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30104 +#: guix-git/doc/guix.texi:30469 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string crl-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30107 +#: guix-git/doc/guix.texi:30472 msgid "Certificate revocation list path. If set to an empty string, then no CRL is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30112 +#: guix-git/doc/guix.texi:30477 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean tls-no-sanity-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30114 +#: guix-git/doc/guix.texi:30479 msgid "Disable verification of our own server certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30117 +#: guix-git/doc/guix.texi:30482 msgid "When libvirtd starts it performs some sanity checks against its own certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30122 +#: guix-git/doc/guix.texi:30487 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean tls-no-verify-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30124 +#: guix-git/doc/guix.texi:30489 msgid "Disable verification of client certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30128 +#: guix-git/doc/guix.texi:30493 msgid "Client certificate verification is the primary authentication mechanism. Any client which does not present a certificate signed by the CA will be rejected." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30133 +#: guix-git/doc/guix.texi:30498 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list tls-allowed-dn-list" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30135 +#: guix-git/doc/guix.texi:30500 msgid "Whitelist of allowed x509 Distinguished Name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30140 +#: guix-git/doc/guix.texi:30505 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list sasl-allowed-usernames" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30143 +#: guix-git/doc/guix.texi:30508 msgid "Whitelist of allowed SASL usernames. The format for username depends on the SASL authentication mechanism." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30148 +#: guix-git/doc/guix.texi:30513 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tls-priority" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30152 +#: guix-git/doc/guix.texi:30517 msgid "Override the compile time default TLS priority string. The default is usually @samp{\"NORMAL\"} unless overridden at build time. Only set this is it is desired for libvirt to deviate from the global default settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30154 +#: guix-git/doc/guix.texi:30519 msgid "Defaults to @samp{\"NORMAL\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30157 +#: guix-git/doc/guix.texi:30522 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30160 guix-git/doc/guix.texi:30584 +#: guix-git/doc/guix.texi:30525 guix-git/doc/guix.texi:30949 msgid "Maximum number of concurrent client connections to allow over all sockets combined." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30162 +#: guix-git/doc/guix.texi:30527 msgid "Defaults to @samp{5000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30165 +#: guix-git/doc/guix.texi:30530 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-queued-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30169 +#: guix-git/doc/guix.texi:30534 msgid "Maximum length of queue of connections waiting to be accepted by the daemon. Note, that some protocols supporting retransmission may obey this so that a later reattempt at connection succeeds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30174 +#: guix-git/doc/guix.texi:30539 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-anonymous-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30177 +#: guix-git/doc/guix.texi:30542 msgid "Maximum length of queue of accepted but not yet authenticated clients. Set this to zero to turn this feature off" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30179 guix-git/doc/guix.texi:30197 -#: guix-git/doc/guix.texi:30213 +#: guix-git/doc/guix.texi:30544 guix-git/doc/guix.texi:30562 +#: guix-git/doc/guix.texi:30578 msgid "Defaults to @samp{20}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30182 +#: guix-git/doc/guix.texi:30547 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer min-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30184 +#: guix-git/doc/guix.texi:30549 msgid "Number of workers to start up initially." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30189 +#: guix-git/doc/guix.texi:30554 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30191 +#: guix-git/doc/guix.texi:30556 msgid "Maximum number of worker threads." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30195 +#: guix-git/doc/guix.texi:30560 msgid "If the number of active clients exceeds @code{min-workers}, then more threads are spawned, up to max_workers limit. Typically you'd want max_workers to equal maximum number of clients allowed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30200 +#: guix-git/doc/guix.texi:30565 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer prio-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30204 +#: guix-git/doc/guix.texi:30569 msgid "Number of priority workers. If all workers from above pool are stuck, some calls marked as high priority (notably domainDestroy) can be executed in this pool." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30209 +#: guix-git/doc/guix.texi:30574 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-requests" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30211 +#: guix-git/doc/guix.texi:30576 msgid "Total global limit on concurrent RPC calls." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30216 +#: guix-git/doc/guix.texi:30581 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-client-requests" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30220 +#: guix-git/doc/guix.texi:30585 msgid "Limit on concurrent requests from a single client connection. To avoid one client monopolizing the server this should be a small fraction of the global max_requests and max_workers parameter." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30225 +#: guix-git/doc/guix.texi:30590 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-min-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30227 +#: guix-git/doc/guix.texi:30592 msgid "Same as @code{min-workers} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30232 +#: guix-git/doc/guix.texi:30597 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30234 +#: guix-git/doc/guix.texi:30599 msgid "Same as @code{max-workers} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30239 +#: guix-git/doc/guix.texi:30604 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30241 +#: guix-git/doc/guix.texi:30606 msgid "Same as @code{max-clients} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30246 +#: guix-git/doc/guix.texi:30611 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-queued-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30248 +#: guix-git/doc/guix.texi:30613 msgid "Same as @code{max-queued-clients} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30253 +#: guix-git/doc/guix.texi:30618 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-client-requests" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30255 +#: guix-git/doc/guix.texi:30620 msgid "Same as @code{max-client-requests} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30260 +#: guix-git/doc/guix.texi:30625 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30262 guix-git/doc/guix.texi:30486 +#: guix-git/doc/guix.texi:30627 guix-git/doc/guix.texi:30851 msgid "Logging level. 4 errors, 3 warnings, 2 information, 1 debug." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30267 +#: guix-git/doc/guix.texi:30632 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string log-filters" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30269 guix-git/doc/guix.texi:30493 +#: guix-git/doc/guix.texi:30634 guix-git/doc/guix.texi:30858 msgid "Logging filters." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30272 +#: guix-git/doc/guix.texi:30637 msgid "A filter allows to select a different logging level for a given category of logs. The format for a filter is one of:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30276 guix-git/doc/guix.texi:30500 +#: guix-git/doc/guix.texi:30641 guix-git/doc/guix.texi:30865 msgid "x:name" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30279 guix-git/doc/guix.texi:30503 +#: guix-git/doc/guix.texi:30644 guix-git/doc/guix.texi:30868 msgid "x:+name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30290 +#: guix-git/doc/guix.texi:30655 msgid "where @code{name} is a string which is matched against the category given in the @code{VIR_LOG_INIT()} at the top of each libvirt source file, e.g., @samp{\"remote\"}, @samp{\"qemu\"}, or @samp{\"util.json\"} (the name in the filter can be a substring of the full category name, in order to match multiple similar categories), the optional @samp{\"+\"} prefix tells libvirt to log stack trace for each message matching name, and @code{x} is the minimal level where matching messages should be logged:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30294 guix-git/doc/guix.texi:30339 -#: guix-git/doc/guix.texi:30517 guix-git/doc/guix.texi:30562 +#: guix-git/doc/guix.texi:30659 guix-git/doc/guix.texi:30704 +#: guix-git/doc/guix.texi:30882 guix-git/doc/guix.texi:30927 msgid "1: DEBUG" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30297 guix-git/doc/guix.texi:30342 -#: guix-git/doc/guix.texi:30520 guix-git/doc/guix.texi:30565 +#: guix-git/doc/guix.texi:30662 guix-git/doc/guix.texi:30707 +#: guix-git/doc/guix.texi:30885 guix-git/doc/guix.texi:30930 msgid "2: INFO" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30300 guix-git/doc/guix.texi:30345 -#: guix-git/doc/guix.texi:30523 guix-git/doc/guix.texi:30568 +#: guix-git/doc/guix.texi:30665 guix-git/doc/guix.texi:30710 +#: guix-git/doc/guix.texi:30888 guix-git/doc/guix.texi:30933 msgid "3: WARNING" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30303 guix-git/doc/guix.texi:30348 -#: guix-git/doc/guix.texi:30526 guix-git/doc/guix.texi:30571 +#: guix-git/doc/guix.texi:30668 guix-git/doc/guix.texi:30713 +#: guix-git/doc/guix.texi:30891 guix-git/doc/guix.texi:30936 msgid "4: ERROR" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30308 guix-git/doc/guix.texi:30531 +#: guix-git/doc/guix.texi:30673 guix-git/doc/guix.texi:30896 msgid "Multiple filters can be defined in a single filters statement, they just need to be separated by spaces." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30310 guix-git/doc/guix.texi:30533 +#: guix-git/doc/guix.texi:30675 guix-git/doc/guix.texi:30898 msgid "Defaults to @samp{\"3:remote 4:event\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30313 +#: guix-git/doc/guix.texi:30678 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string log-outputs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30315 guix-git/doc/guix.texi:30538 +#: guix-git/doc/guix.texi:30680 guix-git/doc/guix.texi:30903 msgid "Logging outputs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30318 +#: guix-git/doc/guix.texi:30683 msgid "An output is one of the places to save logging information. The format for an output can be:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30320 guix-git/doc/guix.texi:30543 +#: guix-git/doc/guix.texi:30685 guix-git/doc/guix.texi:30908 #, no-wrap msgid "x:stderr" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30322 guix-git/doc/guix.texi:30545 +#: guix-git/doc/guix.texi:30687 guix-git/doc/guix.texi:30910 msgid "output goes to stderr" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30323 guix-git/doc/guix.texi:30546 +#: guix-git/doc/guix.texi:30688 guix-git/doc/guix.texi:30911 #, no-wrap msgid "x:syslog:name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30325 guix-git/doc/guix.texi:30548 +#: guix-git/doc/guix.texi:30690 guix-git/doc/guix.texi:30913 msgid "use syslog for the output and use the given name as the ident" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30326 guix-git/doc/guix.texi:30549 +#: guix-git/doc/guix.texi:30691 guix-git/doc/guix.texi:30914 #, no-wrap msgid "x:file:file_path" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30328 guix-git/doc/guix.texi:30551 +#: guix-git/doc/guix.texi:30693 guix-git/doc/guix.texi:30916 msgid "output to a file, with the given filepath" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30329 guix-git/doc/guix.texi:30552 +#: guix-git/doc/guix.texi:30694 guix-git/doc/guix.texi:30917 #, no-wrap msgid "x:journald" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30331 guix-git/doc/guix.texi:30554 +#: guix-git/doc/guix.texi:30696 guix-git/doc/guix.texi:30919 msgid "output to journald logging system" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30335 guix-git/doc/guix.texi:30558 +#: guix-git/doc/guix.texi:30700 guix-git/doc/guix.texi:30923 msgid "In all case the x prefix is the minimal level, acting as a filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30353 guix-git/doc/guix.texi:30576 +#: guix-git/doc/guix.texi:30718 guix-git/doc/guix.texi:30941 msgid "Multiple outputs can be defined, they just need to be separated by spaces." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30355 guix-git/doc/guix.texi:30578 +#: guix-git/doc/guix.texi:30720 guix-git/doc/guix.texi:30943 msgid "Defaults to @samp{\"3:stderr\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30358 +#: guix-git/doc/guix.texi:30723 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer audit-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30360 +#: guix-git/doc/guix.texi:30725 msgid "Allows usage of the auditing subsystem to be altered" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30364 +#: guix-git/doc/guix.texi:30729 msgid "0: disable all auditing" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30367 +#: guix-git/doc/guix.texi:30732 msgid "1: enable auditing, only if enabled on host" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30370 +#: guix-git/doc/guix.texi:30735 msgid "2: enable auditing, and exit if disabled on host." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30377 +#: guix-git/doc/guix.texi:30742 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean audit-logging" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30379 +#: guix-git/doc/guix.texi:30744 msgid "Send audit messages via libvirt logging infrastructure." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30384 +#: guix-git/doc/guix.texi:30749 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-string host-uuid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30386 +#: guix-git/doc/guix.texi:30751 msgid "Host UUID@. UUID must not have all digits be the same." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30391 +#: guix-git/doc/guix.texi:30756 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string host-uuid-source" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30393 +#: guix-git/doc/guix.texi:30758 msgid "Source to read host UUID." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30397 +#: guix-git/doc/guix.texi:30762 msgid "@code{smbios}: fetch the UUID from @code{dmidecode -s system-uuid}" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30400 +#: guix-git/doc/guix.texi:30765 msgid "@code{machine-id}: fetch the UUID from @code{/etc/machine-id}" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30405 +#: guix-git/doc/guix.texi:30770 msgid "If @code{dmidecode} does not provide a valid UUID a temporary UUID will be generated." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30407 +#: guix-git/doc/guix.texi:30772 msgid "Defaults to @samp{\"smbios\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30410 +#: guix-git/doc/guix.texi:30775 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer keepalive-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30415 +#: guix-git/doc/guix.texi:30780 msgid "A keepalive message is sent to a client after @code{keepalive_interval} seconds of inactivity to check if the client is still responding. If set to -1, libvirtd will never send keepalive requests; however clients can still send them and the daemon will send responses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30420 +#: guix-git/doc/guix.texi:30785 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer keepalive-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30424 +#: guix-git/doc/guix.texi:30789 msgid "Maximum number of keepalive messages that are allowed to be sent to the client without getting any response before the connection is considered broken." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30431 +#: guix-git/doc/guix.texi:30796 msgid "In other words, the connection is automatically closed approximately after @code{keepalive_interval * (keepalive_count + 1)} seconds since the last message received from the client. When @code{keepalive-count} is set to 0, connections will be automatically closed after @code{keepalive-interval} seconds of inactivity without sending any keepalive messages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30436 +#: guix-git/doc/guix.texi:30801 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-keepalive-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30438 guix-git/doc/guix.texi:30445 +#: guix-git/doc/guix.texi:30803 guix-git/doc/guix.texi:30810 msgid "Same as above but for admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30443 +#: guix-git/doc/guix.texi:30808 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-keepalive-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30450 +#: guix-git/doc/guix.texi:30815 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer ovs-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30452 +#: guix-git/doc/guix.texi:30817 msgid "Timeout for Open vSwitch calls." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30456 +#: guix-git/doc/guix.texi:30821 msgid "The @code{ovs-vsctl} utility is used for the configuration and its timeout option is set by default to 5 seconds to avoid potential infinite waits blocking libvirt." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30463 +#: guix-git/doc/guix.texi:30828 #, no-wrap msgid "Virtlog daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30466 +#: guix-git/doc/guix.texi:30831 msgid "The virtlogd service is a server side daemon component of libvirt that is used to manage logs from virtual machine consoles." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30472 +#: guix-git/doc/guix.texi:30837 msgid "This daemon is not used directly by libvirt client applications, rather it is called on their behalf by @code{libvirtd}. By maintaining the logs in a standalone daemon, the main @code{libvirtd} daemon can be restarted without risk of losing logs. The @code{virtlogd} daemon has the ability to re-exec() itself upon receiving @code{SIGUSR1}, to allow live upgrades without downtime." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30473 +#: guix-git/doc/guix.texi:30838 #, no-wrap msgid "{Scheme Variable} virtlog-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30476 +#: guix-git/doc/guix.texi:30841 msgid "This is the type of the virtlog daemon. Its value must be a @code{virtlog-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30481 +#: guix-git/doc/guix.texi:30846 #, no-wrap msgid "" "(service virtlog-service-type\n" @@ -56003,122 +56796,122 @@ msgid "" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30484 +#: guix-git/doc/guix.texi:30849 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30491 +#: guix-git/doc/guix.texi:30856 #, no-wrap msgid "{@code{virtlog-configuration} parameter} string log-filters" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30496 +#: guix-git/doc/guix.texi:30861 msgid "A filter allows to select a different logging level for a given category of logs The format for a filter is one of:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30513 +#: guix-git/doc/guix.texi:30878 msgid "where @code{name} is a string which is matched against the category given in the @code{VIR_LOG_INIT()} at the top of each libvirt source file, e.g., \"remote\", \"qemu\", or \"util.json\" (the name in the filter can be a substring of the full category name, in order to match multiple similar categories), the optional \"+\" prefix tells libvirt to log stack trace for each message matching name, and @code{x} is the minimal level where matching messages should be logged:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30536 +#: guix-git/doc/guix.texi:30901 #, no-wrap msgid "{@code{virtlog-configuration} parameter} string log-outputs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30541 +#: guix-git/doc/guix.texi:30906 msgid "An output is one of the places to save logging information The format for an output can be:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30581 +#: guix-git/doc/guix.texi:30946 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30586 +#: guix-git/doc/guix.texi:30951 msgid "Defaults to @samp{1024}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30589 +#: guix-git/doc/guix.texi:30954 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30591 +#: guix-git/doc/guix.texi:30956 msgid "Maximum file size before rolling over." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30593 +#: guix-git/doc/guix.texi:30958 msgid "Defaults to @samp{2MB}" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30596 +#: guix-git/doc/guix.texi:30961 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-backups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30598 +#: guix-git/doc/guix.texi:30963 msgid "Maximum number of backup files to keep." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30600 +#: guix-git/doc/guix.texi:30965 msgid "Defaults to @samp{3}" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:30604 +#: guix-git/doc/guix.texi:30969 msgid "transparent-emulation-qemu" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30604 +#: guix-git/doc/guix.texi:30969 #, no-wrap msgid "Transparent Emulation with QEMU" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30606 guix-git/doc/guix.texi:30686 +#: guix-git/doc/guix.texi:30971 guix-git/doc/guix.texi:31051 #, no-wrap msgid "emulation" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:30607 +#: guix-git/doc/guix.texi:30972 #, no-wrap msgid "binfmt_misc" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30615 +#: guix-git/doc/guix.texi:30980 msgid "@code{qemu-binfmt-service-type} provides support for transparent emulation of program binaries built for different architectures---e.g., it allows you to transparently execute an ARMv7 program on an x86_64 machine. It achieves this by combining the @uref{https://www.qemu.org, QEMU} emulator and the @code{binfmt_misc} feature of the kernel Linux. This feature only allows you to emulate GNU/Linux on a different architecture, but see below for GNU/Hurd support." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30616 +#: guix-git/doc/guix.texi:30981 #, no-wrap msgid "{Scheme Variable} qemu-binfmt-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30621 +#: guix-git/doc/guix.texi:30986 msgid "This is the type of the QEMU/binfmt service for transparent emulation. Its value must be a @code{qemu-binfmt-configuration} object, which specifies the QEMU package to use as well as the architecture we want to emulated:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30626 +#: guix-git/doc/guix.texi:30991 #, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -56130,39 +56923,39 @@ msgstr "" " (platforms (lookup-qemu-platforms \"arm\" \"aarch64\"))))\n" #. type: defvr -#: guix-git/doc/guix.texi:30632 +#: guix-git/doc/guix.texi:30997 msgid "In this example, we enable transparent emulation for the ARM and aarch64 platforms. Running @code{herd stop qemu-binfmt} turns it off, and running @code{herd start qemu-binfmt} turns it back on (@pxref{Invoking herd, the @command{herd} command,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30634 +#: guix-git/doc/guix.texi:30999 #, no-wrap msgid "{Data Type} qemu-binfmt-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30636 +#: guix-git/doc/guix.texi:31001 msgid "This is the configuration for the @code{qemu-binfmt} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30638 +#: guix-git/doc/guix.texi:31003 #, no-wrap msgid "@code{platforms} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30641 +#: guix-git/doc/guix.texi:31006 msgid "The list of emulated QEMU platforms. Each item must be a @dfn{platform object} as returned by @code{lookup-qemu-platforms} (see below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30644 +#: guix-git/doc/guix.texi:31009 msgid "For example, let's suppose you're on an x86_64 machine and you have this service:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30649 +#: guix-git/doc/guix.texi:31014 #, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -56174,79 +56967,79 @@ msgstr "" " (platforms (lookup-qemu-platforms \"arm\" \"aarch64\"))))\n" #. type: table -#: guix-git/doc/guix.texi:30652 +#: guix-git/doc/guix.texi:31017 msgid "You can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30655 +#: guix-git/doc/guix.texi:31020 #, no-wrap msgid "guix build -s armhf-linux inkscape\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30662 +#: guix-git/doc/guix.texi:31027 msgid "and it will build Inkscape for ARMv7 @emph{as if it were a native build}, transparently using QEMU to emulate the ARMv7 CPU@. Pretty handy if you'd like to test a package build for an architecture you don't have access to!" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30663 +#: guix-git/doc/guix.texi:31028 #, no-wrap msgid "@code{qemu} (default: @code{qemu})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30665 guix-git/doc/guix.texi:30723 -#: guix-git/doc/guix.texi:30805 +#: guix-git/doc/guix.texi:31030 guix-git/doc/guix.texi:31088 +#: guix-git/doc/guix.texi:31170 msgid "The QEMU package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30668 +#: guix-git/doc/guix.texi:31033 #, no-wrap msgid "{Scheme Procedure} lookup-qemu-platforms @var{platforms}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30673 +#: guix-git/doc/guix.texi:31038 msgid "Return the list of QEMU platform objects corresponding to @var{platforms}@dots{}. @var{platforms} must be a list of strings corresponding to platform names, such as @code{\"arm\"}, @code{\"sparc\"}, @code{\"mips64el\"}, and so on." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30675 +#: guix-git/doc/guix.texi:31040 #, no-wrap msgid "{Scheme Procedure} qemu-platform? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30677 +#: guix-git/doc/guix.texi:31042 msgid "Return true if @var{obj} is a platform object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30679 +#: guix-git/doc/guix.texi:31044 #, no-wrap msgid "{Scheme Procedure} qemu-platform-name @var{platform}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30681 +#: guix-git/doc/guix.texi:31046 msgid "Return the name of @var{platform}---a string such as @code{\"arm\"}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30684 +#: guix-git/doc/guix.texi:31049 #, no-wrap msgid "QEMU Guest Agent" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30692 +#: guix-git/doc/guix.texi:31057 msgid "The QEMU guest agent provides control over the emulated system to the host. The @code{qemu-guest-agent} service runs the agent on Guix guests. To control the agent from the host, open a socket by invoking QEMU with the following arguments:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30699 +#: guix-git/doc/guix.texi:31064 #, no-wrap msgid "" "qemu-system-x86_64 \\\n" @@ -56257,12 +57050,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30703 +#: guix-git/doc/guix.texi:31068 msgid "This creates a socket at @file{/tmp/qga.sock} on the host. Once the guest agent is running, you can issue commands with @code{socat}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30708 +#: guix-git/doc/guix.texi:31073 #, no-wrap msgid "" "$ guix shell socat -- socat unix-connect:/tmp/qga.sock stdio\n" @@ -56271,81 +57064,81 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30712 +#: guix-git/doc/guix.texi:31077 msgid "See @url{https://wiki.qemu.org/Features/GuestAgent,QEMU guest agent documentation} for more options and commands." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30713 +#: guix-git/doc/guix.texi:31078 #, fuzzy, no-wrap #| msgid "{Scheme Variable} hurd-getty-service-type" msgid "{Scheme Variable} qemu-guest-agent-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:30715 +#: guix-git/doc/guix.texi:31080 #, fuzzy #| msgid "Service Types and Services" msgid "Service type for the QEMU guest agent service." msgstr "Типы сервисов и сервисы" #. type: deftp -#: guix-git/doc/guix.texi:30717 +#: guix-git/doc/guix.texi:31082 #, fuzzy, no-wrap #| msgid "{Data Type} hurd-getty-configuration" msgid "{Data Type} qemu-guest-agent-configuration" msgstr "{Тип данных} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:30719 +#: guix-git/doc/guix.texi:31084 #, fuzzy #| msgid "This is the data type representing the configuration for the hurd-getty-service." msgid "Configuration for the @code{qemu-guest-agent} service." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:30721 guix-git/doc/guix.texi:30803 +#: guix-git/doc/guix.texi:31086 guix-git/doc/guix.texi:31168 #, no-wrap msgid "@code{qemu} (default: @code{qemu-minimal})" msgstr "@code{port} (default: @code{22})" #. type: item -#: guix-git/doc/guix.texi:30724 +#: guix-git/doc/guix.texi:31089 #, fuzzy, no-wrap #| msgid "@code{size} (default @code{\"1G\"})" msgid "@code{device} (default: @code{\"\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:30727 +#: guix-git/doc/guix.texi:31092 msgid "File name of the device or socket the agent uses to communicate with the host. If empty, QEMU uses a default file name." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30731 +#: guix-git/doc/guix.texi:31096 #, no-wrap msgid "The Hurd in a Virtual Machine" msgstr "Установка Guix на виртуальную машину (VM)" #. type: cindex -#: guix-git/doc/guix.texi:30734 +#: guix-git/doc/guix.texi:31099 #, no-wrap msgid "the Hurd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30735 +#: guix-git/doc/guix.texi:31100 #, no-wrap msgid "childhurd" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30743 +#: guix-git/doc/guix.texi:31108 msgid "Service @code{hurd-vm} provides support for running GNU/Hurd in a virtual machine (VM), a so-called @dfn{childhurd}. This service is meant to be used on GNU/Linux and the given GNU/Hurd operating system configuration is cross-compiled. The virtual machine is a Shepherd service that can be referred to by the names @code{hurd-vm} and @code{childhurd} and be controlled with commands such as:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30747 +#: guix-git/doc/guix.texi:31112 #, no-wrap msgid "" "herd start hurd-vm\n" @@ -56353,50 +57146,50 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30751 +#: guix-git/doc/guix.texi:31116 msgid "When the service is running, you can view its console by connecting to it with a VNC client, for example with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30754 +#: guix-git/doc/guix.texi:31119 #, no-wrap msgid "guix shell tigervnc-client -- vncviewer localhost:5900\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30760 +#: guix-git/doc/guix.texi:31125 msgid "The default configuration (see @code{hurd-vm-configuration} below) spawns a secure shell (SSH) server in your GNU/Hurd system, which QEMU (the virtual machine emulator) redirects to port 10222 on the host. Thus, you can connect over SSH to the childhurd with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30763 +#: guix-git/doc/guix.texi:31128 #, no-wrap msgid "ssh root@@localhost -p 10022\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30772 +#: guix-git/doc/guix.texi:31137 msgid "The childhurd is volatile and stateless: it starts with a fresh root file system every time you restart it. By default though, all the files under @file{/etc/childhurd} on the host are copied as is to the root file system of the childhurd when it boots. This allows you to initialize ``secrets'' inside the VM: SSH host keys, authorized substitute keys, and so on---see the explanation of @code{secret-root} below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30773 +#: guix-git/doc/guix.texi:31138 #, no-wrap msgid "{Scheme Variable} hurd-vm-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:30779 +#: guix-git/doc/guix.texi:31144 msgid "This is the type of the Hurd in a Virtual Machine service. Its value must be a @code{hurd-vm-configuration} object, which specifies the operating system (@pxref{operating-system Reference}) and the disk size for the Hurd Virtual Machine, the QEMU package to use as well as the options for running it." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30781 +#: guix-git/doc/guix.texi:31146 msgid "For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30787 +#: guix-git/doc/guix.texi:31152 #, no-wrap msgid "" "(service hurd-vm-service-type\n" @@ -56406,99 +57199,99 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30791 +#: guix-git/doc/guix.texi:31156 msgid "would create a disk image big enough to build GNU@tie{}Hello, with some extra memory." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30793 +#: guix-git/doc/guix.texi:31158 #, no-wrap msgid "{Data Type} hurd-vm-configuration" msgstr "{Тип данных} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:30796 +#: guix-git/doc/guix.texi:31161 msgid "The data type representing the configuration for @code{hurd-vm-service-type}." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:30798 +#: guix-git/doc/guix.texi:31163 #, no-wrap msgid "@code{os} (default: @var{%hurd-vm-operating-system})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:30802 +#: guix-git/doc/guix.texi:31167 msgid "The operating system to instantiate. This default is bare-bones with a permissive OpenSSH secure shell daemon listening on port 2222 (@pxref{Networking Services, @code{openssh-service-type}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30806 +#: guix-git/doc/guix.texi:31171 #, no-wrap msgid "@code{image} (default: @var{hurd-vm-disk-image})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:30809 +#: guix-git/doc/guix.texi:31174 msgid "The procedure used to build the disk-image built from this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30810 +#: guix-git/doc/guix.texi:31175 #, no-wrap msgid "@code{disk-size} (default: @code{'guess})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:30812 +#: guix-git/doc/guix.texi:31177 msgid "The size of the disk image." msgstr "Лицензия этого руководства." #. type: item -#: guix-git/doc/guix.texi:30813 +#: guix-git/doc/guix.texi:31178 #, no-wrap msgid "@code{memory-size} (default: @code{512})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:30815 +#: guix-git/doc/guix.texi:31180 msgid "The memory size of the Virtual Machine in mebibytes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30816 +#: guix-git/doc/guix.texi:31181 #, no-wrap msgid "@code{options} (default: @code{'(\"--snapshot\")})" msgstr "@code{outputs} (default: @code{'(\"out\")})" #. type: table -#: guix-git/doc/guix.texi:30818 +#: guix-git/doc/guix.texi:31183 msgid "The extra options for running QEMU." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30823 +#: guix-git/doc/guix.texi:31188 msgid "If set, a non-zero positive integer used to parameterize Childhurd instances. It is appended to the service's name, e.g. @code{childhurd1}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30824 +#: guix-git/doc/guix.texi:31189 #, no-wrap msgid "@code{net-options} (default: @var{hurd-vm-net-options})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:30826 +#: guix-git/doc/guix.texi:31191 msgid "The procedure used to produce the list of QEMU networking options." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30828 +#: guix-git/doc/guix.texi:31193 msgid "By default, it produces" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30836 +#: guix-git/doc/guix.texi:31201 #, no-wrap msgid "" "'(\"--device\" \"rtl8139,netdev=net0\"\n" @@ -56510,12 +57303,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30839 +#: guix-git/doc/guix.texi:31204 msgid "with forwarded ports:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30844 +#: guix-git/doc/guix.texi:31209 #, no-wrap msgid "" "@var{secrets-port}: @code{(+ 11004 (* 1000 @var{ID}))}\n" @@ -56524,28 +57317,28 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30846 +#: guix-git/doc/guix.texi:31211 #, no-wrap msgid "@code{secret-root} (default: @file{/etc/childhurd})" msgstr "@code{private-key} (default: @file{~root/.ssh/id_rsa})" #. type: table -#: guix-git/doc/guix.texi:30851 +#: guix-git/doc/guix.texi:31216 msgid "The root directory with out-of-band secrets to be installed into the childhurd once it runs. Childhurds are volatile which means that on every startup, secrets such as the SSH host keys and Guix signing key are recreated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30855 +#: guix-git/doc/guix.texi:31220 msgid "If the @file{/etc/childhurd} directory does not exist, the @code{secret-service} running in the Childhurd will be sent an empty list of secrets." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30858 +#: guix-git/doc/guix.texi:31223 msgid "By default, the service automatically populates @file{/etc/childhurd} with the following non-volatile secrets, unless they already exist:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30867 +#: guix-git/doc/guix.texi:31232 #, no-wrap msgid "" "/etc/childhurd/etc/guix/acl\n" @@ -56558,34 +57351,34 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30871 +#: guix-git/doc/guix.texi:31236 msgid "These files are automatically sent to the guest Hurd VM when it boots, including permissions." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30872 +#: guix-git/doc/guix.texi:31237 #, no-wrap msgid "childhurd, offloading" msgstr "разгрузка" #. type: cindex -#: guix-git/doc/guix.texi:30873 +#: guix-git/doc/guix.texi:31238 #, no-wrap msgid "Hurd, offloading" msgstr "разгрузка" #. type: table -#: guix-git/doc/guix.texi:30877 +#: guix-git/doc/guix.texi:31242 msgid "Having these files in place means that only a couple of things are missing to allow the host to offload @code{i586-gnu} builds to the childhurd:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:30882 +#: guix-git/doc/guix.texi:31247 msgid "Authorizing the childhurd's key on the host so that the host accepts build results coming from the childhurd, which can be done like so:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30886 +#: guix-git/doc/guix.texi:31251 #, no-wrap msgid "" "guix archive --authorize < \\\n" @@ -56595,22 +57388,22 @@ msgstr "" " /etc/childhurd/etc/guix/signing-key.pub\n" #. type: enumerate -#: guix-git/doc/guix.texi:30891 +#: guix-git/doc/guix.texi:31256 msgid "Adding the childhurd to @file{/etc/guix/machines.scm} (@pxref{Daemon Offload Setup})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30895 +#: guix-git/doc/guix.texi:31260 msgid "We're working towards making that happen automatically---get in touch with us at @email{guix-devel@@gnu.org} to discuss it!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30902 +#: guix-git/doc/guix.texi:31267 msgid "Note that by default the VM image is volatile, i.e., once stopped the contents are lost. If you want a stateful image instead, override the configuration's @code{image} and @code{options} without the @code{--snapshot} flag using something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30908 +#: guix-git/doc/guix.texi:31273 #, no-wrap msgid "" "(service hurd-vm-service-type\n" @@ -56620,34 +57413,34 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30910 +#: guix-git/doc/guix.texi:31275 #, no-wrap msgid "Ganeti" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30912 +#: guix-git/doc/guix.texi:31277 #, no-wrap msgid "ganeti" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:30919 +#: guix-git/doc/guix.texi:31284 msgid "This service is considered experimental. Configuration options may be changed in a backwards-incompatible manner, and not all features have been thorougly tested. Users of this service are encouraged to share their experience at @email{guix-devel@@gnu.org}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30929 +#: guix-git/doc/guix.texi:31294 msgid "Ganeti is a virtual machine management system. It is designed to keep virtual machines running on a cluster of servers even in the event of hardware failures, and to make maintenance and recovery tasks easy. It consists of multiple services which are described later in this section. In addition to the Ganeti service, you will need the OpenSSH service (@pxref{Networking Services, @code{openssh-service-type}}), and update the @file{/etc/hosts} file (@pxref{operating-system Reference, @code{hosts-file}}) with the cluster name and address (or use a DNS server)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30934 +#: guix-git/doc/guix.texi:31299 msgid "All nodes participating in a Ganeti cluster should have the same Ganeti and @file{/etc/hosts} configuration. Here is an example configuration for a Ganeti cluster node that supports multiple storage backends, and installs the @code{debootstrap} and @code{guix} @dfn{OS providers}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30944 +#: guix-git/doc/guix.texi:31309 #, no-wrap msgid "" "(use-package-modules virtualization)\n" @@ -56662,7 +57455,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30949 +#: guix-git/doc/guix.texi:31314 #, no-wrap msgid "" "192.168.1.200 ganeti.example.com\n" @@ -56673,7 +57466,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30970 +#: guix-git/doc/guix.texi:31335 #, no-wrap msgid "" " ;; Install QEMU so we can use KVM-based instances, and LVM, DRBD and Ceph\n" @@ -56700,7 +57493,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30975 +#: guix-git/doc/guix.texi:31340 #, no-wrap msgid "" " ;; Ganeti uses SSH to communicate between nodes.\n" @@ -56711,7 +57504,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30985 +#: guix-git/doc/guix.texi:31350 #, no-wrap msgid "" " (service ganeti-service-type\n" @@ -56726,120 +57519,120 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30993 +#: guix-git/doc/guix.texi:31358 msgid "Users are advised to read the @url{http://docs.ganeti.org/ganeti/master/html/admin.html,Ganeti administrators guide} to learn about the various cluster options and day-to-day operations. There is also a @url{https://guix.gnu.org/blog/2020/running-a-ganeti-cluster-on-guix/,blog post} describing how to configure and initialize a small cluster." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30994 +#: guix-git/doc/guix.texi:31359 #, no-wrap msgid "{Scheme Variable} ganeti-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:30997 +#: guix-git/doc/guix.texi:31362 msgid "This is a service type that includes all the various services that Ganeti nodes should run." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31002 +#: guix-git/doc/guix.texi:31367 msgid "Its value is a @code{ganeti-configuration} object that defines the package to use for CLI operations, as well as configuration for the various daemons. Allowed file storage paths and available guest operating systems are also configured through this data type." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31004 +#: guix-git/doc/guix.texi:31369 #, no-wrap msgid "{Data Type} ganeti-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:31006 +#: guix-git/doc/guix.texi:31371 msgid "The @code{ganeti} service takes the following configuration options:" msgstr "Модуль @code{(guix inferior)} предоставляет следующие процедуры для работы с ранними версиями:" #. type: item -#: guix-git/doc/guix.texi:31008 guix-git/doc/guix.texi:31236 -#: guix-git/doc/guix.texi:31286 guix-git/doc/guix.texi:31316 -#: guix-git/doc/guix.texi:31343 guix-git/doc/guix.texi:31375 -#: guix-git/doc/guix.texi:31428 guix-git/doc/guix.texi:31448 -#: guix-git/doc/guix.texi:31474 guix-git/doc/guix.texi:31507 -#: guix-git/doc/guix.texi:31547 +#: guix-git/doc/guix.texi:31373 guix-git/doc/guix.texi:31601 +#: guix-git/doc/guix.texi:31651 guix-git/doc/guix.texi:31681 +#: guix-git/doc/guix.texi:31708 guix-git/doc/guix.texi:31740 +#: guix-git/doc/guix.texi:31793 guix-git/doc/guix.texi:31813 +#: guix-git/doc/guix.texi:31839 guix-git/doc/guix.texi:31872 +#: guix-git/doc/guix.texi:31912 #, no-wrap msgid "@code{ganeti} (default: @code{ganeti})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:31013 +#: guix-git/doc/guix.texi:31378 msgid "The @code{ganeti} package to use. It will be installed to the system profile and make @command{gnt-cluster}, @command{gnt-instance}, etc available. Note that the value specified here does not affect the other services as each refer to a specific @code{ganeti} package (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31014 +#: guix-git/doc/guix.texi:31379 #, no-wrap msgid "@code{noded-configuration} (default: @code{(ganeti-noded-configuration)})" msgstr "@code{port} (default: @code{22})" #. type: itemx -#: guix-git/doc/guix.texi:31015 +#: guix-git/doc/guix.texi:31380 #, no-wrap msgid "@code{confd-configuration} (default: @code{(ganeti-confd-configuration)})" msgstr "@code{port} (default: @code{22})" #. type: itemx -#: guix-git/doc/guix.texi:31016 +#: guix-git/doc/guix.texi:31381 #, no-wrap msgid "@code{wconfd-configuration} (default: @code{(ganeti-wconfd-configuration)})" msgstr "@code{port} (default: @code{22})" #. type: itemx -#: guix-git/doc/guix.texi:31017 +#: guix-git/doc/guix.texi:31382 #, no-wrap msgid "@code{luxid-configuration} (default: @code{(ganeti-luxid-configuration)})" msgstr "@code{port} (default: @code{22})" #. type: itemx -#: guix-git/doc/guix.texi:31018 +#: guix-git/doc/guix.texi:31383 #, no-wrap msgid "@code{rapi-configuration} (default: @code{(ganeti-rapi-configuration)})" msgstr "@code{port} (default: @code{22})" #. type: itemx -#: guix-git/doc/guix.texi:31019 +#: guix-git/doc/guix.texi:31384 #, no-wrap msgid "@code{kvmd-configuration} (default: @code{(ganeti-kvmd-configuration)})" msgstr "@code{port} (default: @code{22})" #. type: itemx -#: guix-git/doc/guix.texi:31020 +#: guix-git/doc/guix.texi:31385 #, no-wrap msgid "@code{mond-configuration} (default: @code{(ganeti-mond-configuration)})" msgstr "@code{port} (default: @code{22})" #. type: itemx -#: guix-git/doc/guix.texi:31021 +#: guix-git/doc/guix.texi:31386 #, no-wrap msgid "@code{metad-configuration} (default: @code{(ganeti-metad-configuration)})" msgstr "@code{port} (default: @code{22})" #. type: itemx -#: guix-git/doc/guix.texi:31022 +#: guix-git/doc/guix.texi:31387 #, no-wrap msgid "@code{watcher-configuration} (default: @code{(ganeti-watcher-configuration)})" msgstr "@code{port} (default: @code{22})" #. type: itemx -#: guix-git/doc/guix.texi:31023 +#: guix-git/doc/guix.texi:31388 #, no-wrap msgid "@code{cleaner-configuration} (default: @code{(ganeti-cleaner-configuration)})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:31028 +#: guix-git/doc/guix.texi:31393 msgid "These options control the various daemons and cron jobs that are distributed with Ganeti. The possible values for these are described in detail below. To override a setting, you must use the configuration type for that service:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31038 +#: guix-git/doc/guix.texi:31403 #, no-wrap msgid "" "(service ganeti-service-type\n" @@ -56853,34 +57646,34 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31040 +#: guix-git/doc/guix.texi:31405 #, no-wrap msgid "@code{file-storage-paths} (default: @code{'()})" msgstr "@code{native-search-paths} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:31042 +#: guix-git/doc/guix.texi:31407 msgid "List of allowed directories for file storage backend." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31043 +#: guix-git/doc/guix.texi:31408 #, no-wrap msgid "@code{os} (default: @code{%default-ganeti-os})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:31045 +#: guix-git/doc/guix.texi:31410 msgid "List of @code{} records." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31049 +#: guix-git/doc/guix.texi:31414 msgid "In essence @code{ganeti-service-type} is shorthand for declaring each service individually:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31060 +#: guix-git/doc/guix.texi:31425 #, no-wrap msgid "" "(service ganeti-noded-service-type)\n" @@ -56895,297 +57688,297 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31064 +#: guix-git/doc/guix.texi:31429 msgid "Plus a service extension for @code{etc-service-type} that configures the file storage backend and OS variants." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31067 +#: guix-git/doc/guix.texi:31432 #, no-wrap msgid "{Data Type} ganeti-os" msgstr "{Тип данных} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:31070 +#: guix-git/doc/guix.texi:31435 msgid "This data type is suitable for passing to the @code{os} parameter of @code{ganeti-configuration}. It takes the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31076 +#: guix-git/doc/guix.texi:31441 msgid "The name for this OS provider. It is only used to specify where the configuration ends up. Setting it to ``debootstrap'' will create @file{/etc/ganeti/instance-debootstrap}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:31077 +#: guix-git/doc/guix.texi:31442 #, no-wrap msgid "extension" msgstr "версия" #. type: table -#: guix-git/doc/guix.texi:31080 +#: guix-git/doc/guix.texi:31445 msgid "The file extension for variants of this OS type. For example @file{.conf} or @file{.scm}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31081 +#: guix-git/doc/guix.texi:31446 #, no-wrap msgid "@code{variants} (default: @code{'()})" msgstr "@code{inputs} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:31083 +#: guix-git/doc/guix.texi:31448 msgid "List of @code{ganeti-os-variant} objects for this OS." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31087 +#: guix-git/doc/guix.texi:31452 #, no-wrap msgid "{Data Type} ganeti-os-variant" msgstr "{Тип данных} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:31090 +#: guix-git/doc/guix.texi:31455 msgid "This is the data type for a Ganeti OS variant. It takes the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31094 +#: guix-git/doc/guix.texi:31459 msgid "The name of this variant." msgstr "Лицензия этого руководства." #. type: code{#1} -#: guix-git/doc/guix.texi:31095 +#: guix-git/doc/guix.texi:31460 #, no-wrap msgid "configuration" msgstr "Конфигурирование системы" #. type: table -#: guix-git/doc/guix.texi:31097 +#: guix-git/doc/guix.texi:31462 msgid "A configuration file for this variant." msgstr "Файл конфигурации для этого варианта." #. type: defvr -#: guix-git/doc/guix.texi:31100 +#: guix-git/doc/guix.texi:31465 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-hooks" msgstr "{Scheme Variable} ant-build-system" #. type: defvr -#: guix-git/doc/guix.texi:31102 +#: guix-git/doc/guix.texi:31467 msgid "This variable contains hooks to configure networking and the GRUB bootloader." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31104 +#: guix-git/doc/guix.texi:31469 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-extra-pkgs" msgstr "{Scheme Variable} ant-build-system" #. type: defvr -#: guix-git/doc/guix.texi:31106 +#: guix-git/doc/guix.texi:31471 msgid "This variable contains a list of packages suitable for a fully-virtualized guest." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31108 +#: guix-git/doc/guix.texi:31473 #, no-wrap msgid "{Data Type} debootstrap-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:31111 +#: guix-git/doc/guix.texi:31476 msgid "This data type creates configuration files suitable for the debootstrap OS provider." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31113 +#: guix-git/doc/guix.texi:31478 #, no-wrap msgid "@code{hooks} (default: @code{%default-debootstrap-hooks})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:31117 +#: guix-git/doc/guix.texi:31482 msgid "When not @code{#f}, this must be a G-expression that specifies a directory with scripts that will run when the OS is installed. It can also be a list of @code{(name . file-like)} pairs. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31120 +#: guix-git/doc/guix.texi:31485 #, no-wrap msgid "`((99-hello-world . ,(plain-file \"#!/bin/sh\\necho Hello, World\")))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31125 +#: guix-git/doc/guix.texi:31490 msgid "That will create a directory with one executable named @code{99-hello-world} and run it every time this variant is installed. If set to @code{#f}, hooks in @file{/etc/ganeti/instance-debootstrap/hooks} will be used, if any." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31125 +#: guix-git/doc/guix.texi:31490 #, no-wrap msgid "@code{proxy} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:31127 +#: guix-git/doc/guix.texi:31492 msgid "Optional HTTP proxy to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31127 +#: guix-git/doc/guix.texi:31492 guix-git/doc/guix.texi:33685 #, no-wrap msgid "@code{mirror} (default: @code{#f})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:31130 +#: guix-git/doc/guix.texi:31495 msgid "The Debian mirror. Typically something like @code{http://ftp.no.debian.org/debian}. The default varies depending on the distribution." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31130 +#: guix-git/doc/guix.texi:31495 #, no-wrap msgid "@code{arch} (default: @code{#f})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:31133 +#: guix-git/doc/guix.texi:31498 msgid "The dpkg architecture. Set to @code{armhf} to debootstrap an ARMv7 instance on an AArch64 host. Default is to use the current system architecture." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31133 +#: guix-git/doc/guix.texi:31498 #, no-wrap msgid "@code{suite} (default: @code{\"stable\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:31136 +#: guix-git/doc/guix.texi:31501 msgid "When set, this must be a Debian distribution ``suite'' such as @code{buster} or @code{focal}. If set to @code{#f}, the default for the OS provider is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31136 +#: guix-git/doc/guix.texi:31501 #, no-wrap msgid "@code{extra-pkgs} (default: @code{%default-debootstrap-extra-pkgs})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:31139 +#: guix-git/doc/guix.texi:31504 msgid "List of extra packages that will get installed by dpkg in addition to the minimal system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31139 +#: guix-git/doc/guix.texi:31504 #, no-wrap msgid "@code{components} (default: @code{#f})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:31142 +#: guix-git/doc/guix.texi:31507 msgid "When set, must be a list of Debian repository ``components''. For example @code{'(\"main\" \"contrib\")}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31142 +#: guix-git/doc/guix.texi:31507 #, no-wrap msgid "@code{generate-cache?} (default: @code{#t})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:31144 +#: guix-git/doc/guix.texi:31509 msgid "Whether to automatically cache the generated debootstrap archive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31144 +#: guix-git/doc/guix.texi:31509 #, no-wrap msgid "@code{clean-cache} (default: @code{14})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:31147 +#: guix-git/doc/guix.texi:31512 msgid "Discard the cache after this amount of days. Use @code{#f} to never clear the cache." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31147 +#: guix-git/doc/guix.texi:31512 #, no-wrap msgid "@code{partition-style} (default: @code{'msdos})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:31150 +#: guix-git/doc/guix.texi:31515 msgid "The type of partition to create. When set, it must be one of @code{'msdos}, @code{'none} or a string." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31150 +#: guix-git/doc/guix.texi:31515 #, no-wrap msgid "@code{partition-alignment} (default: @code{2048})" msgstr "@code{arguments} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:31152 +#: guix-git/doc/guix.texi:31517 msgid "Alignment of the partition in sectors." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31155 +#: guix-git/doc/guix.texi:31520 #, no-wrap msgid "{Scheme Procedure} debootstrap-variant @var{name} @var{configuration}" msgstr "{Процедура Scheme} lookup-inferior-packages @var{inferior} @var{name} @" #. type: deffn -#: guix-git/doc/guix.texi:31158 +#: guix-git/doc/guix.texi:31523 msgid "This is a helper procedure that creates a @code{ganeti-os-variant} record. It takes two parameters: a name and a @code{debootstrap-configuration} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31160 +#: guix-git/doc/guix.texi:31525 #, no-wrap msgid "{Scheme Procedure} debootstrap-os @var{variants}@dots{}" msgstr "{Процедура Scheme} lookup-inferior-packages @var{inferior} @var{name} @" #. type: deffn -#: guix-git/doc/guix.texi:31163 +#: guix-git/doc/guix.texi:31528 msgid "This is a helper procedure that creates a @code{ganeti-os} record. It takes a list of variants created with @code{debootstrap-variant}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31165 +#: guix-git/doc/guix.texi:31530 #, no-wrap msgid "{Scheme Procedure} guix-variant @var{name} @var{configuration}" msgstr "{Процедура Scheme} lookup-inferior-packages @var{inferior} @var{name} @" #. type: deffn -#: guix-git/doc/guix.texi:31170 +#: guix-git/doc/guix.texi:31535 msgid "This is a helper procedure that creates a @code{ganeti-os-variant} record for use with the Guix OS provider. It takes a name and a G-expression that returns a ``file-like'' (@pxref{G-Expressions, file-like objects}) object containing a Guix System configuration." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31172 +#: guix-git/doc/guix.texi:31537 #, no-wrap msgid "{Scheme Procedure} guix-os @var{variants}@dots{}" msgstr "{Процедура Scheme} lookup-inferior-packages @var{inferior} @var{name} @" #. type: deffn -#: guix-git/doc/guix.texi:31175 +#: guix-git/doc/guix.texi:31540 msgid "This is a helper procedure that creates a @code{ganeti-os} record. It takes a list of variants produced by @code{guix-variant}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31177 +#: guix-git/doc/guix.texi:31542 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-variants" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31181 +#: guix-git/doc/guix.texi:31546 msgid "This is a convenience variable to make the debootstrap provider work ``out of the box'' without users having to declare variants manually. It contains a single debootstrap variant with the default configuration:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31186 +#: guix-git/doc/guix.texi:31551 #, no-wrap msgid "" "(list (debootstrap-variant\n" @@ -57194,18 +57987,18 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31189 +#: guix-git/doc/guix.texi:31554 #, no-wrap msgid "{Scheme Variable} %default-guix-variants" msgstr "{Scheme Variable} ant-build-system" #. type: defvr -#: guix-git/doc/guix.texi:31193 +#: guix-git/doc/guix.texi:31558 msgid "This is a convenience variable to make the Guix OS provider work without additional configuration. It creates a virtual machine that has an SSH server, a serial console, and authorizes the Ganeti hosts SSH keys." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31199 +#: guix-git/doc/guix.texi:31564 #, no-wrap msgid "" "(list (guix-variant\n" @@ -57215,12 +58008,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31205 +#: guix-git/doc/guix.texi:31570 msgid "Users can implement support for OS providers unbeknownst to Guix by extending the @code{ganeti-os} and @code{ganeti-os-variant} records appropriately. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31214 +#: guix-git/doc/guix.texi:31579 #, no-wrap msgid "" "(ganeti-os\n" @@ -57233,728 +58026,728 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31219 +#: guix-git/doc/guix.texi:31584 msgid "That creates @file{/etc/ganeti/instance-custom/variants/foo.conf} which points to a file in the store with contents @code{this is fine}. It also creates @file{/etc/ganeti/instance-custom/variants/variants.list} with contents @code{foo}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31222 +#: guix-git/doc/guix.texi:31587 msgid "Obviously this may not work for all OS providers out there. If you find the interface limiting, please reach out to @email{guix-devel@@gnu.org}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31225 +#: guix-git/doc/guix.texi:31590 msgid "The rest of this section documents the various services that are included by @code{ganeti-service-type}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31226 +#: guix-git/doc/guix.texi:31591 #, no-wrap msgid "{Scheme Variable} ganeti-noded-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31230 +#: guix-git/doc/guix.texi:31595 msgid "@command{ganeti-noded} is the daemon responsible for node-specific functions within the Ganeti system. The value of this service must be a @code{ganeti-noded-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31232 +#: guix-git/doc/guix.texi:31597 #, no-wrap msgid "{Data Type} ganeti-noded-configuration" msgstr "{Data Type} pagekite-configuration" #. type: deftp -#: guix-git/doc/guix.texi:31234 +#: guix-git/doc/guix.texi:31599 msgid "This is the configuration for the @code{ganeti-noded} service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31238 guix-git/doc/guix.texi:31288 -#: guix-git/doc/guix.texi:31318 guix-git/doc/guix.texi:31345 -#: guix-git/doc/guix.texi:31377 guix-git/doc/guix.texi:31430 -#: guix-git/doc/guix.texi:31450 guix-git/doc/guix.texi:31476 -#: guix-git/doc/guix.texi:31509 +#: guix-git/doc/guix.texi:31603 guix-git/doc/guix.texi:31653 +#: guix-git/doc/guix.texi:31683 guix-git/doc/guix.texi:31710 +#: guix-git/doc/guix.texi:31742 guix-git/doc/guix.texi:31795 +#: guix-git/doc/guix.texi:31815 guix-git/doc/guix.texi:31841 +#: guix-git/doc/guix.texi:31874 msgid "The @code{ganeti} package to use for this service." msgstr "Пакет @code{ganeti} для использования в этой службе." #. type: item -#: guix-git/doc/guix.texi:31239 +#: guix-git/doc/guix.texi:31604 #, no-wrap msgid "@code{port} (default: @code{1811})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:31241 +#: guix-git/doc/guix.texi:31606 msgid "The TCP port on which the node daemon listens for network requests." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31242 guix-git/doc/guix.texi:31292 -#: guix-git/doc/guix.texi:31384 guix-git/doc/guix.texi:31454 +#: guix-git/doc/guix.texi:31607 guix-git/doc/guix.texi:31657 +#: guix-git/doc/guix.texi:31749 guix-git/doc/guix.texi:31819 #, no-wrap msgid "@code{address} (default: @code{\"0.0.0.0\"})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:31245 +#: guix-git/doc/guix.texi:31610 msgid "The network address that the daemon will bind to. The default address means bind to all available addresses." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31249 +#: guix-git/doc/guix.texi:31614 msgid "When this is set, it must be a specific network interface (e.g.@: @code{eth0}) that the daemon will bind to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31250 guix-git/doc/guix.texi:31392 +#: guix-git/doc/guix.texi:31615 guix-git/doc/guix.texi:31757 #, no-wrap msgid "@code{max-clients} (default: @code{20})" msgstr "@code{inputs} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:31254 +#: guix-git/doc/guix.texi:31619 msgid "This sets a limit on the maximum number of simultaneous client connections that the daemon will handle. Connections above this count are accepted, but no responses will be sent until enough connections have closed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31255 guix-git/doc/guix.texi:31397 +#: guix-git/doc/guix.texi:31620 guix-git/doc/guix.texi:31762 #, no-wrap msgid "@code{ssl?} (default: @code{#t})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:31259 +#: guix-git/doc/guix.texi:31624 msgid "Whether to use SSL/TLS to encrypt network communications. The certificate is automatically provisioned by the cluster and can be rotated with @command{gnt-cluster renew-crypto}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31260 guix-git/doc/guix.texi:31400 +#: guix-git/doc/guix.texi:31625 guix-git/doc/guix.texi:31765 #, no-wrap msgid "@code{ssl-key} (default: @file{\"/var/lib/ganeti/server.pem\"})" msgstr "@code{daemon-socket} (default: @code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:31262 guix-git/doc/guix.texi:31402 +#: guix-git/doc/guix.texi:31627 guix-git/doc/guix.texi:31767 msgid "This can be used to provide a specific encryption key for TLS communications." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31263 guix-git/doc/guix.texi:31403 +#: guix-git/doc/guix.texi:31628 guix-git/doc/guix.texi:31768 #, no-wrap msgid "@code{ssl-cert} (default: @file{\"/var/lib/ganeti/server.pem\"})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:31265 guix-git/doc/guix.texi:31405 +#: guix-git/doc/guix.texi:31630 guix-git/doc/guix.texi:31770 msgid "This can be used to provide a specific certificate for TLS communications." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31269 guix-git/doc/guix.texi:31409 +#: guix-git/doc/guix.texi:31634 guix-git/doc/guix.texi:31774 msgid "When true, the daemon performs additional logging for debugging purposes. Note that this will leak encryption details to the log files, use with caution." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31273 +#: guix-git/doc/guix.texi:31638 #, no-wrap msgid "{Scheme Variable} ganeti-confd-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31279 +#: guix-git/doc/guix.texi:31644 msgid "@command{ganeti-confd} answers queries related to the configuration of a Ganeti cluster. The purpose of this daemon is to have a highly available and fast way to query cluster configuration values. It is automatically active on all @dfn{master candidates}. The value of this service must be a @code{ganeti-confd-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31282 +#: guix-git/doc/guix.texi:31647 #, no-wrap msgid "{Data Type} ganeti-confd-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:31284 +#: guix-git/doc/guix.texi:31649 msgid "This is the configuration for the @code{ganeti-confd} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31289 +#: guix-git/doc/guix.texi:31654 #, no-wrap msgid "@code{port} (default: @code{1814})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:31291 +#: guix-git/doc/guix.texi:31656 msgid "The UDP port on which to listen for network requests." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31294 +#: guix-git/doc/guix.texi:31659 msgid "Network address that the daemon will bind to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31297 guix-git/doc/guix.texi:31326 -#: guix-git/doc/guix.texi:31353 guix-git/doc/guix.texi:31433 -#: guix-git/doc/guix.texi:31460 guix-git/doc/guix.texi:31486 +#: guix-git/doc/guix.texi:31662 guix-git/doc/guix.texi:31691 +#: guix-git/doc/guix.texi:31718 guix-git/doc/guix.texi:31798 +#: guix-git/doc/guix.texi:31825 guix-git/doc/guix.texi:31851 msgid "When true, the daemon performs additional logging for debugging purposes." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31301 +#: guix-git/doc/guix.texi:31666 #, no-wrap msgid "{Scheme Variable} ganeti-wconfd-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31307 +#: guix-git/doc/guix.texi:31672 msgid "@command{ganeti-wconfd} is the daemon that has authoritative knowledge about the cluster configuration and is the only entity that can accept changes to it. All jobs that need to modify the configuration will do so by sending appropriate requests to this daemon. It only runs on the @dfn{master node} and will automatically disable itself on other nodes." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31310 +#: guix-git/doc/guix.texi:31675 msgid "The value of this service must be a @code{ganeti-wconfd-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31312 +#: guix-git/doc/guix.texi:31677 #, no-wrap msgid "{Data Type} ganeti-wconfd-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:31314 +#: guix-git/doc/guix.texi:31679 msgid "This is the configuration for the @code{ganeti-wconfd} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31319 guix-git/doc/guix.texi:31346 +#: guix-git/doc/guix.texi:31684 guix-git/doc/guix.texi:31711 #, no-wrap msgid "@code{no-voting?} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:31323 +#: guix-git/doc/guix.texi:31688 msgid "The daemon will refuse to start if the majority of cluster nodes does not agree that it is running on the master node. Set to @code{#t} to start even if a quorum can not be reached (dangerous, use with caution)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31330 +#: guix-git/doc/guix.texi:31695 #, no-wrap msgid "{Scheme Variable} ganeti-luxid-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31335 +#: guix-git/doc/guix.texi:31700 msgid "@command{ganeti-luxid} is a daemon used to answer queries related to the configuration and the current live state of a Ganeti cluster. Additionally, it is the authoritative daemon for the Ganeti job queue. Jobs can be submitted via this daemon and it schedules and starts them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31337 +#: guix-git/doc/guix.texi:31702 msgid "It takes a @code{ganeti-luxid-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31339 +#: guix-git/doc/guix.texi:31704 #, no-wrap msgid "{Data Type} ganeti-luxid-configuration" msgstr "{Тип данных} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:31341 +#: guix-git/doc/guix.texi:31706 #, fuzzy #| msgid "This is the data type representing the configuration for the hurd-getty-service." msgid "This is the configuration for the @code{ganeti-luxid} service." msgstr "Управление конфигурацией операционной системы." #. type: table -#: guix-git/doc/guix.texi:31350 +#: guix-git/doc/guix.texi:31715 msgid "The daemon will refuse to start if it cannot verify that the majority of cluster nodes believes that it is running on the master node. Set to @code{#t} to ignore such checks and start anyway (this can be dangerous)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31357 +#: guix-git/doc/guix.texi:31722 #, no-wrap msgid "{Scheme Variable} ganeti-rapi-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31361 +#: guix-git/doc/guix.texi:31726 msgid "@command{ganeti-rapi} provides a remote API for Ganeti clusters. It runs on the master node and can be used to perform cluster actions programmatically via a JSON-based RPC protocol." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31367 +#: guix-git/doc/guix.texi:31732 msgid "Most query operations are allowed without authentication (unless @var{require-authentication?} is set), whereas write operations require explicit authorization via the @file{/var/lib/ganeti/rapi/users} file. See the @url{http://docs.ganeti.org/ganeti/master/html/rapi.html, Ganeti Remote API documentation} for more information." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31369 +#: guix-git/doc/guix.texi:31734 msgid "The value of this service must be a @code{ganeti-rapi-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31371 +#: guix-git/doc/guix.texi:31736 #, no-wrap msgid "{Data Type} ganeti-rapi-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:31373 +#: guix-git/doc/guix.texi:31738 msgid "This is the configuration for the @code{ganeti-rapi} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31378 +#: guix-git/doc/guix.texi:31743 #, no-wrap msgid "@code{require-authentication?} (default: @code{#f})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:31380 +#: guix-git/doc/guix.texi:31745 msgid "Whether to require authentication even for read-only operations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31381 +#: guix-git/doc/guix.texi:31746 #, no-wrap msgid "@code{port} (default: @code{5080})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:31383 +#: guix-git/doc/guix.texi:31748 msgid "The TCP port on which to listen to API requests." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31387 +#: guix-git/doc/guix.texi:31752 msgid "The network address that the service will bind to. By default it listens on all configured addresses." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31391 +#: guix-git/doc/guix.texi:31756 msgid "When set, it must specify a specific network interface such as @code{eth0} that the daemon will bind to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31396 +#: guix-git/doc/guix.texi:31761 msgid "The maximum number of simultaneous client requests to handle. Further connections are allowed, but no responses are sent until enough connections have closed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31399 +#: guix-git/doc/guix.texi:31764 msgid "Whether to use SSL/TLS encryption on the RAPI port." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31413 +#: guix-git/doc/guix.texi:31778 #, no-wrap msgid "{Scheme Variable} ganeti-kvmd-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31421 +#: guix-git/doc/guix.texi:31786 msgid "@command{ganeti-kvmd} is responsible for determining whether a given KVM instance was shut down by an administrator or a user. Normally Ganeti will restart an instance that was not stopped through Ganeti itself. If the cluster option @code{user_shutdown} is true, this daemon monitors the @code{QMP} socket provided by QEMU and listens for shutdown events, and marks the instance as @dfn{USER_down} instead of @dfn{ERROR_down} when it shuts down gracefully by itself." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31423 +#: guix-git/doc/guix.texi:31788 msgid "It takes a @code{ganeti-kvmd-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31425 +#: guix-git/doc/guix.texi:31790 #, no-wrap msgid "{Data Type} ganeti-kvmd-configuration" msgstr "{Тип данных} build-machine" #. type: defvr -#: guix-git/doc/guix.texi:31437 +#: guix-git/doc/guix.texi:31802 #, no-wrap msgid "{Scheme Variable} ganeti-mond-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31441 +#: guix-git/doc/guix.texi:31806 msgid "@command{ganeti-mond} is an optional daemon that provides Ganeti monitoring functionality. It is responsible for running data collectors and publish the collected information through a HTTP interface." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31443 +#: guix-git/doc/guix.texi:31808 msgid "It takes a @code{ganeti-mond-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31445 +#: guix-git/doc/guix.texi:31810 #, no-wrap msgid "{Data Type} ganeti-mond-configuration" msgstr "{Тип данных} build-machine" #. type: item -#: guix-git/doc/guix.texi:31451 +#: guix-git/doc/guix.texi:31816 #, no-wrap msgid "@code{port} (default: @code{1815})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:31453 guix-git/doc/guix.texi:31479 +#: guix-git/doc/guix.texi:31818 guix-git/doc/guix.texi:31844 msgid "The port on which the daemon will listen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31457 +#: guix-git/doc/guix.texi:31822 msgid "The network address that the daemon will bind to. By default it binds to all available interfaces." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31464 +#: guix-git/doc/guix.texi:31829 #, no-wrap msgid "{Scheme Variable} ganeti-metad-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31467 +#: guix-git/doc/guix.texi:31832 msgid "@command{ganeti-metad} is an optional daemon that can be used to provide information about the cluster to instances or OS install scripts." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31469 +#: guix-git/doc/guix.texi:31834 msgid "It takes a @code{ganeti-metad-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31471 +#: guix-git/doc/guix.texi:31836 #, no-wrap msgid "{Data Type} ganeti-metad-configuration" msgstr "{Тип данных} build-machine" #. type: table -#: guix-git/doc/guix.texi:31483 +#: guix-git/doc/guix.texi:31848 msgid "If set, the daemon will bind to this address only. If left unset, the behavior depends on the cluster configuration." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31490 +#: guix-git/doc/guix.texi:31855 #, no-wrap msgid "{Scheme Variable} ganeti-watcher-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31498 +#: guix-git/doc/guix.texi:31863 msgid "@command{ganeti-watcher} is a script designed to run periodically and ensure the health of a cluster. It will automatically restart instances that have stopped without Ganeti's consent, and repairs DRBD links in case a node has rebooted. It also archives old cluster jobs and restarts Ganeti daemons that are not running. If the cluster parameter @code{ensure_node_health} is set, the watcher will also shutdown instances and DRBD devices if the node it is running on is declared offline by known master candidates." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31500 +#: guix-git/doc/guix.texi:31865 msgid "It can be paused on all nodes with @command{gnt-cluster watcher pause}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31502 +#: guix-git/doc/guix.texi:31867 msgid "The service takes a @code{ganeti-watcher-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31504 +#: guix-git/doc/guix.texi:31869 #, no-wrap msgid "{Data Type} ganeti-watcher-configuration" msgstr "{Data Type} pagekite-configuration" #. type: item -#: guix-git/doc/guix.texi:31510 +#: guix-git/doc/guix.texi:31875 #, no-wrap msgid "@code{schedule} (default: @code{'(next-second-from (next-minute (range 0 60 5)))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31512 +#: guix-git/doc/guix.texi:31877 msgid "How often to run the script. The default is every five minutes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31513 +#: guix-git/doc/guix.texi:31878 #, no-wrap msgid "@code{rapi-ip} (default: @code{#f})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:31516 +#: guix-git/doc/guix.texi:31881 msgid "This option needs to be specified only if the RAPI daemon is configured to use a particular interface or address. By default the cluster address is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31517 +#: guix-git/doc/guix.texi:31882 #, no-wrap msgid "@code{job-age} (default: @code{(* 6 3600)})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:31520 +#: guix-git/doc/guix.texi:31885 msgid "Archive cluster jobs older than this age, specified in seconds. The default is 6 hours. This keeps @command{gnt-job list} manageable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31521 +#: guix-git/doc/guix.texi:31886 #, no-wrap msgid "@code{verify-disks?} (default: @code{#t})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:31525 +#: guix-git/doc/guix.texi:31890 msgid "If this is @code{#f}, the watcher will not try to repair broken DRBD links automatically. Administrators will need to use @command{gnt-cluster verify-disks} manually instead." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31528 +#: guix-git/doc/guix.texi:31893 msgid "When @code{#t}, the script performs additional logging for debugging purposes." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31532 +#: guix-git/doc/guix.texi:31897 #, no-wrap msgid "{Scheme Variable} ganeti-cleaner-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:31540 +#: guix-git/doc/guix.texi:31905 msgid "@command{ganeti-cleaner} is a script designed to run periodically and remove old files from the cluster. This service type controls two @dfn{cron jobs}: one intended for the master node that permanently purges old cluster jobs, and one intended for every node that removes expired X509 certificates, keys, and outdated @command{ganeti-watcher} information. Like all Ganeti services, it is safe to include even on non-master nodes as it will disable itself as necessary." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31542 +#: guix-git/doc/guix.texi:31907 msgid "It takes a @code{ganeti-cleaner-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31544 +#: guix-git/doc/guix.texi:31909 #, no-wrap msgid "{Data Type} ganeti-cleaner-configuration" msgstr "{Тип данных} build-machine" #. type: table -#: guix-git/doc/guix.texi:31549 +#: guix-git/doc/guix.texi:31914 msgid "The @code{ganeti} package to use for the @command{gnt-cleaner} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31550 +#: guix-git/doc/guix.texi:31915 #, no-wrap msgid "@code{master-schedule} (default: @code{\"45 1 * * *\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:31553 +#: guix-git/doc/guix.texi:31918 msgid "How often to run the master cleaning job. The default is once per day, at 01:45:00." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31554 +#: guix-git/doc/guix.texi:31919 #, no-wrap msgid "@code{node-schedule} (default: @code{\"45 2 * * *\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:31557 +#: guix-git/doc/guix.texi:31922 msgid "How often to run the node cleaning job. The default is once per day, at 02:45:00." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31571 +#: guix-git/doc/guix.texi:31936 msgid "The @code{(gnu services version-control)} module provides a service to allow remote access to local Git repositories. There are three options: the @code{git-daemon-service}, which provides access to repositories via the @code{git://} unsecured TCP-based protocol, extending the @code{nginx} web server to proxy some requests to @code{git-http-backend}, or providing a web interface with @code{cgit-service-type}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31572 +#: guix-git/doc/guix.texi:31937 #, no-wrap msgid "{Scheme Procedure} git-daemon-service [#:config (git-daemon-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31576 +#: guix-git/doc/guix.texi:31941 msgid "Return a service that runs @command{git daemon}, a simple TCP server to expose repositories over the Git protocol for anonymous access." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31582 +#: guix-git/doc/guix.texi:31947 msgid "The optional @var{config} argument should be a @code{} object, by default it allows read-only access to exported@footnote{By creating the magic file @file{git-daemon-export-ok} in the repository directory.} repositories under @file{/srv/git}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31585 +#: guix-git/doc/guix.texi:31950 #, no-wrap msgid "{Data Type} git-daemon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31587 +#: guix-git/doc/guix.texi:31952 msgid "Data type representing the configuration for @code{git-daemon-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31589 +#: guix-git/doc/guix.texi:31954 #, no-wrap msgid "@code{package} (default: @code{git})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:31591 guix-git/doc/guix.texi:31651 +#: guix-git/doc/guix.texi:31956 guix-git/doc/guix.texi:32016 msgid "Package object of the Git distributed version control system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31592 guix-git/doc/guix.texi:31655 +#: guix-git/doc/guix.texi:31957 guix-git/doc/guix.texi:32020 #, no-wrap msgid "@code{export-all?} (default: @code{#f})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:31595 +#: guix-git/doc/guix.texi:31960 msgid "Whether to allow access for all Git repositories, even if they do not have the @file{git-daemon-export-ok} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31596 +#: guix-git/doc/guix.texi:31961 #, no-wrap msgid "@code{base-path} (default: @file{/srv/git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31602 +#: guix-git/doc/guix.texi:31967 msgid "Whether to remap all the path requests as relative to the given path. If you run @command{git daemon} with @code{(base-path \"/srv/git\")} on @samp{example.com}, then if you later try to pull @indicateurl{git://example.com/hello.git}, git daemon will interpret the path as @file{/srv/git/hello.git}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31603 +#: guix-git/doc/guix.texi:31968 #, no-wrap msgid "@code{user-path} (default: @code{#f})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:31611 +#: guix-git/doc/guix.texi:31976 msgid "Whether to allow @code{~user} notation to be used in requests. When specified with empty string, requests to @indicateurl{git://host/~alice/foo} is taken as a request to access @code{foo} repository in the home directory of user @code{alice}. If @code{(user-path \"@var{path}\")} is specified, the same request is taken as a request to access @file{@var{path}/foo} repository in the home directory of user @code{alice}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31612 +#: guix-git/doc/guix.texi:31977 #, no-wrap msgid "@code{listen} (default: @code{'()})" msgstr "@code{inputs} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:31615 +#: guix-git/doc/guix.texi:31980 msgid "Whether to listen on specific IP addresses or hostnames, defaults to all." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31616 +#: guix-git/doc/guix.texi:31981 #, no-wrap msgid "@code{port} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:31618 +#: guix-git/doc/guix.texi:31983 msgid "Whether to listen on an alternative port, which defaults to 9418." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31619 +#: guix-git/doc/guix.texi:31984 #, no-wrap msgid "@code{whitelist} (default: @code{'()})" msgstr "@code{inputs} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:31621 +#: guix-git/doc/guix.texi:31986 msgid "If not empty, only allow access to this list of directories." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31625 +#: guix-git/doc/guix.texi:31990 msgid "Extra options will be passed to @command{git daemon}, please run @command{man git-daemon} for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31639 +#: guix-git/doc/guix.texi:32004 msgid "The @code{git://} protocol lacks authentication. When you pull from a repository fetched via @code{git://}, you don't know whether the data you receive was modified or is even coming from the specified host, and your connection is subject to eavesdropping. It's better to use an authenticated and encrypted transport, such as @code{https}. Although Git allows you to serve repositories using unsophisticated file-based web servers, there is a faster protocol implemented by the @code{git-http-backend} program. This program is the back-end of a proper Git web service. It is designed to sit behind a FastCGI proxy. @xref{Web Services}, for more on running the necessary @code{fcgiwrap} daemon." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31642 +#: guix-git/doc/guix.texi:32007 msgid "Guix has a separate configuration data type for serving Git repositories over HTTP." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31643 +#: guix-git/doc/guix.texi:32008 #, no-wrap msgid "{Data Type} git-http-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31647 +#: guix-git/doc/guix.texi:32012 msgid "Data type representing the configuration for a future @code{git-http-service-type}; can currently be used to configure Nginx through @code{git-http-nginx-location-configuration}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31649 +#: guix-git/doc/guix.texi:32014 #, no-wrap msgid "@code{package} (default: @var{git})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31652 +#: guix-git/doc/guix.texi:32017 #, no-wrap msgid "@code{git-root} (default: @file{/srv/git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31654 +#: guix-git/doc/guix.texi:32019 msgid "Directory containing the Git repositories to expose to the world." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31658 +#: guix-git/doc/guix.texi:32023 msgid "Whether to expose access for all Git repositories in @var{git-root}, even if they do not have the @file{git-daemon-export-ok} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31659 +#: guix-git/doc/guix.texi:32024 #, no-wrap msgid "@code{uri-path} (default: @samp{/git/})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:31664 +#: guix-git/doc/guix.texi:32029 msgid "Path prefix for Git access. With the default @samp{/git/} prefix, this will map @indicateurl{http://@var{server}/git/@var{repo}.git} to @file{/srv/git/@var{repo}.git}. Requests whose URI paths do not begin with this prefix are not passed on to this Git instance." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31665 +#: guix-git/doc/guix.texi:32030 #, no-wrap msgid "@code{fcgiwrap-socket} (default: @code{127.0.0.1:9000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31668 +#: guix-git/doc/guix.texi:32033 msgid "The socket on which the @code{fcgiwrap} daemon is listening. @xref{Web Services}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31675 +#: guix-git/doc/guix.texi:32040 msgid "There is no @code{git-http-service-type}, currently; instead you can create an @code{nginx-location-configuration} from a @code{git-http-configuration} and then add that location to a web server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31676 +#: guix-git/doc/guix.texi:32041 #, no-wrap msgid "{Scheme Procedure} git-http-nginx-location-configuration @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31681 +#: guix-git/doc/guix.texi:32046 msgid "[config=(git-http-configuration)] Compute an @code{nginx-location-configuration} that corresponds to the given Git http configuration. An example nginx service definition to serve the default @file{/srv/git} over HTTPS might be:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31698 +#: guix-git/doc/guix.texi:32063 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -57975,1409 +58768,1414 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31705 +#: guix-git/doc/guix.texi:32070 msgid "This example assumes that you are using Let's Encrypt to get your TLS certificate. @xref{Certificate Services}. The default @code{certbot} service will redirect all HTTP traffic on @code{git.my-host.org} to HTTPS@. You will also need to add an @code{fcgiwrap} proxy to your system services. @xref{Web Services}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:31707 +#: guix-git/doc/guix.texi:32072 #, no-wrap msgid "Cgit Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:31709 +#: guix-git/doc/guix.texi:32074 #, no-wrap msgid "Cgit service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:31710 +#: guix-git/doc/guix.texi:32075 #, no-wrap msgid "Git, web interface" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31713 +#: guix-git/doc/guix.texi:32078 msgid "@uref{https://git.zx2c4.com/cgit/, Cgit} is a web frontend for Git repositories written in C." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31716 +#: guix-git/doc/guix.texi:32081 msgid "The following example will configure the service with default values. By default, Cgit can be accessed on port 80 (@code{http://localhost:80})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31719 +#: guix-git/doc/guix.texi:32084 #, no-wrap msgid "(service cgit-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31723 +#: guix-git/doc/guix.texi:32088 msgid "The @code{file-object} type designates either a file-like object (@pxref{G-Expressions, file-like objects}) or a string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31727 +#: guix-git/doc/guix.texi:32092 msgid "Available @code{cgit-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31728 +#: guix-git/doc/guix.texi:32093 #, no-wrap msgid "{@code{cgit-configuration} parameter} package package" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31730 +#: guix-git/doc/guix.texi:32095 msgid "The CGIT package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31733 +#: guix-git/doc/guix.texi:32098 #, no-wrap msgid "{@code{cgit-configuration} parameter} nginx-server-configuration-list nginx" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31738 +#: guix-git/doc/guix.texi:32100 +msgid "NGINX configuration." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:32103 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object about-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31741 +#: guix-git/doc/guix.texi:32106 msgid "Specifies a command which will be invoked to format the content of about pages (both top-level and for each repository)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31746 +#: guix-git/doc/guix.texi:32111 #, no-wrap msgid "{@code{cgit-configuration} parameter} string agefile" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31749 +#: guix-git/doc/guix.texi:32114 msgid "Specifies a path, relative to each repository path, which can be used to specify the date and time of the youngest commit in the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31754 +#: guix-git/doc/guix.texi:32119 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object auth-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31757 +#: guix-git/doc/guix.texi:32122 msgid "Specifies a command that will be invoked for authenticating repository access." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31762 +#: guix-git/doc/guix.texi:32127 #, no-wrap msgid "{@code{cgit-configuration} parameter} string branch-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31765 +#: guix-git/doc/guix.texi:32130 msgid "Flag which, when set to @samp{age}, enables date ordering in the branch ref list, and when set @samp{name} enables ordering by branch name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31767 +#: guix-git/doc/guix.texi:32132 msgid "Defaults to @samp{\"name\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31770 +#: guix-git/doc/guix.texi:32135 #, no-wrap msgid "{@code{cgit-configuration} parameter} string cache-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31772 +#: guix-git/doc/guix.texi:32137 msgid "Path used to store the cgit cache entries." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31774 +#: guix-git/doc/guix.texi:32139 msgid "Defaults to @samp{\"/var/cache/cgit\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31777 +#: guix-git/doc/guix.texi:32142 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-static-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31780 +#: guix-git/doc/guix.texi:32145 msgid "Number which specifies the time-to-live, in minutes, for the cached version of repository pages accessed with a fixed SHA1." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31782 guix-git/doc/guix.texi:32225 +#: guix-git/doc/guix.texi:32147 guix-git/doc/guix.texi:32590 msgid "Defaults to @samp{-1}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31785 +#: guix-git/doc/guix.texi:32150 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-dynamic-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31788 +#: guix-git/doc/guix.texi:32153 msgid "Number which specifies the time-to-live, in minutes, for the cached version of repository pages accessed without a fixed SHA1." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31793 +#: guix-git/doc/guix.texi:32158 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-repo-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31796 +#: guix-git/doc/guix.texi:32161 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository summary page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31801 +#: guix-git/doc/guix.texi:32166 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-root-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31804 +#: guix-git/doc/guix.texi:32169 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31809 +#: guix-git/doc/guix.texi:32174 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-scanrc-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31812 +#: guix-git/doc/guix.texi:32177 msgid "Number which specifies the time-to-live, in minutes, for the result of scanning a path for Git repositories." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31817 +#: guix-git/doc/guix.texi:32182 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-about-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31820 +#: guix-git/doc/guix.texi:32185 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository about page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31825 +#: guix-git/doc/guix.texi:32190 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-snapshot-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31828 +#: guix-git/doc/guix.texi:32193 msgid "Number which specifies the time-to-live, in minutes, for the cached version of snapshots." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31833 +#: guix-git/doc/guix.texi:32198 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31836 +#: guix-git/doc/guix.texi:32201 msgid "The maximum number of entries in the cgit cache. When set to @samp{0}, caching is disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31841 +#: guix-git/doc/guix.texi:32206 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean case-sensitive-sort?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31843 +#: guix-git/doc/guix.texi:32208 msgid "Sort items in the repo list case sensitively." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31848 +#: guix-git/doc/guix.texi:32213 #, no-wrap msgid "{@code{cgit-configuration} parameter} list clone-prefix" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31851 +#: guix-git/doc/guix.texi:32216 msgid "List of common prefixes which, when combined with a repository URL, generates valid clone URLs for the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31856 +#: guix-git/doc/guix.texi:32221 #, no-wrap msgid "{@code{cgit-configuration} parameter} list clone-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31858 +#: guix-git/doc/guix.texi:32223 msgid "List of @code{clone-url} templates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31863 +#: guix-git/doc/guix.texi:32228 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object commit-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31865 +#: guix-git/doc/guix.texi:32230 msgid "Command which will be invoked to format commit messages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31870 +#: guix-git/doc/guix.texi:32235 #, no-wrap msgid "{@code{cgit-configuration} parameter} string commit-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31874 guix-git/doc/guix.texi:32432 +#: guix-git/doc/guix.texi:32239 guix-git/doc/guix.texi:32797 msgid "Flag which, when set to @samp{date}, enables strict date ordering in the commit log, and when set to @samp{topo} enables strict topological ordering." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31876 +#: guix-git/doc/guix.texi:32241 msgid "Defaults to @samp{\"git log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31879 +#: guix-git/doc/guix.texi:32244 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object css" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31881 +#: guix-git/doc/guix.texi:32246 msgid "URL which specifies the css document to include in all cgit pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31883 +#: guix-git/doc/guix.texi:32248 msgid "Defaults to @samp{\"/share/cgit/cgit.css\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31886 +#: guix-git/doc/guix.texi:32251 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object email-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31890 +#: guix-git/doc/guix.texi:32255 msgid "Specifies a command which will be invoked to format names and email address of committers, authors, and taggers, as represented in various places throughout the cgit interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31895 +#: guix-git/doc/guix.texi:32260 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean embedded?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31898 +#: guix-git/doc/guix.texi:32263 msgid "Flag which, when set to @samp{#t}, will make cgit generate a HTML fragment suitable for embedding in other HTML pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31903 +#: guix-git/doc/guix.texi:32268 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-commit-graph?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31907 +#: guix-git/doc/guix.texi:32272 msgid "Flag which, when set to @samp{#t}, will make cgit print an ASCII-art commit history graph to the left of the commit messages in the repository log page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31912 +#: guix-git/doc/guix.texi:32277 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-filter-overrides?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31915 +#: guix-git/doc/guix.texi:32280 msgid "Flag which, when set to @samp{#t}, allows all filter settings to be overridden in repository-specific cgitrc files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31920 +#: guix-git/doc/guix.texi:32285 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-follow-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31923 +#: guix-git/doc/guix.texi:32288 msgid "Flag which, when set to @samp{#t}, allows users to follow a file in the log view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31928 +#: guix-git/doc/guix.texi:32293 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-http-clone?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31931 +#: guix-git/doc/guix.texi:32296 msgid "If set to @samp{#t}, cgit will act as an dumb HTTP endpoint for Git clones." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31936 +#: guix-git/doc/guix.texi:32301 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-index-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31939 +#: guix-git/doc/guix.texi:32304 msgid "Flag which, when set to @samp{#t}, will make cgit generate extra links \"summary\", \"commit\", \"tree\" for each repo in the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31944 +#: guix-git/doc/guix.texi:32309 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-index-owner?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31947 +#: guix-git/doc/guix.texi:32312 msgid "Flag which, when set to @samp{#t}, will make cgit display the owner of each repo in the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31952 +#: guix-git/doc/guix.texi:32317 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-log-filecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31955 +#: guix-git/doc/guix.texi:32320 msgid "Flag which, when set to @samp{#t}, will make cgit print the number of modified files for each commit on the repository log page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31960 +#: guix-git/doc/guix.texi:32325 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-log-linecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31963 +#: guix-git/doc/guix.texi:32328 msgid "Flag which, when set to @samp{#t}, will make cgit print the number of added and removed lines for each commit on the repository log page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31968 +#: guix-git/doc/guix.texi:32333 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-remote-branches?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31971 guix-git/doc/guix.texi:32495 +#: guix-git/doc/guix.texi:32336 guix-git/doc/guix.texi:32860 msgid "Flag which, when set to @code{#t}, will make cgit display remote branches in the summary and refs views." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31976 +#: guix-git/doc/guix.texi:32341 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-subject-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31980 +#: guix-git/doc/guix.texi:32345 msgid "Flag which, when set to @code{1}, will make cgit use the subject of the parent commit as link text when generating links to parent commits in commit view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31985 +#: guix-git/doc/guix.texi:32350 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-html-serving?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31989 +#: guix-git/doc/guix.texi:32354 msgid "Flag which, when set to @samp{#t}, will make cgit use the subject of the parent commit as link text when generating links to parent commits in commit view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31994 +#: guix-git/doc/guix.texi:32359 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-tree-linenumbers?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31997 +#: guix-git/doc/guix.texi:32362 msgid "Flag which, when set to @samp{#t}, will make cgit generate linenumber links for plaintext blobs printed in the tree view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32002 +#: guix-git/doc/guix.texi:32367 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-git-config?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32005 +#: guix-git/doc/guix.texi:32370 msgid "Flag which, when set to @samp{#f}, will allow cgit to use Git config to set any repo specific settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32010 +#: guix-git/doc/guix.texi:32375 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object favicon" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32012 +#: guix-git/doc/guix.texi:32377 msgid "URL used as link to a shortcut icon for cgit." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32014 +#: guix-git/doc/guix.texi:32379 msgid "Defaults to @samp{\"/favicon.ico\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32017 +#: guix-git/doc/guix.texi:32382 #, no-wrap msgid "{@code{cgit-configuration} parameter} string footer" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32021 +#: guix-git/doc/guix.texi:32386 msgid "The content of the file specified with this option will be included verbatim at the bottom of all pages (i.e.@: it replaces the standard \"generated by...\"@: message)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32026 +#: guix-git/doc/guix.texi:32391 #, no-wrap msgid "{@code{cgit-configuration} parameter} string head-include" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32029 +#: guix-git/doc/guix.texi:32394 msgid "The content of the file specified with this option will be included verbatim in the HTML HEAD section on all pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32034 +#: guix-git/doc/guix.texi:32399 #, no-wrap msgid "{@code{cgit-configuration} parameter} string header" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32037 +#: guix-git/doc/guix.texi:32402 msgid "The content of the file specified with this option will be included verbatim at the top of all pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32042 +#: guix-git/doc/guix.texi:32407 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object include" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32045 +#: guix-git/doc/guix.texi:32410 msgid "Name of a configfile to include before the rest of the current config- file is parsed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32050 +#: guix-git/doc/guix.texi:32415 #, no-wrap msgid "{@code{cgit-configuration} parameter} string index-header" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32053 +#: guix-git/doc/guix.texi:32418 msgid "The content of the file specified with this option will be included verbatim above the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32058 +#: guix-git/doc/guix.texi:32423 #, no-wrap msgid "{@code{cgit-configuration} parameter} string index-info" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32061 +#: guix-git/doc/guix.texi:32426 msgid "The content of the file specified with this option will be included verbatim below the heading on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32066 +#: guix-git/doc/guix.texi:32431 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean local-time?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32069 +#: guix-git/doc/guix.texi:32434 msgid "Flag which, if set to @samp{#t}, makes cgit print commit and tag times in the servers timezone." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32074 +#: guix-git/doc/guix.texi:32439 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object logo" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32077 +#: guix-git/doc/guix.texi:32442 msgid "URL which specifies the source of an image which will be used as a logo on all cgit pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32079 +#: guix-git/doc/guix.texi:32444 msgid "Defaults to @samp{\"/share/cgit/cgit.png\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32082 +#: guix-git/doc/guix.texi:32447 #, no-wrap msgid "{@code{cgit-configuration} parameter} string logo-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32084 guix-git/doc/guix.texi:32541 +#: guix-git/doc/guix.texi:32449 guix-git/doc/guix.texi:32906 msgid "URL loaded when clicking on the cgit logo image." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32089 +#: guix-git/doc/guix.texi:32454 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object owner-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32092 +#: guix-git/doc/guix.texi:32457 msgid "Command which will be invoked to format the Owner column of the main page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32097 +#: guix-git/doc/guix.texi:32462 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-atom-items" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32099 +#: guix-git/doc/guix.texi:32464 msgid "Number of items to display in atom feeds view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32104 +#: guix-git/doc/guix.texi:32469 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-commit-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32106 +#: guix-git/doc/guix.texi:32471 msgid "Number of entries to list per page in \"log\" view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32111 +#: guix-git/doc/guix.texi:32476 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-message-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32113 +#: guix-git/doc/guix.texi:32478 msgid "Number of commit message characters to display in \"log\" view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32115 guix-git/doc/guix.texi:32131 +#: guix-git/doc/guix.texi:32480 guix-git/doc/guix.texi:32496 msgid "Defaults to @samp{80}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32118 +#: guix-git/doc/guix.texi:32483 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-repo-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32121 +#: guix-git/doc/guix.texi:32486 msgid "Specifies the number of entries to list per page on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32126 +#: guix-git/doc/guix.texi:32491 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-repodesc-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32129 +#: guix-git/doc/guix.texi:32494 msgid "Specifies the maximum number of repo description characters to display on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32134 +#: guix-git/doc/guix.texi:32499 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-blob-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32136 +#: guix-git/doc/guix.texi:32501 msgid "Specifies the maximum size of a blob to display HTML for in KBytes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32141 +#: guix-git/doc/guix.texi:32506 #, no-wrap msgid "{@code{cgit-configuration} parameter} string max-stats" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32144 +#: guix-git/doc/guix.texi:32509 msgid "Maximum statistics period. Valid values are @samp{week},@samp{month}, @samp{quarter} and @samp{year}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32149 +#: guix-git/doc/guix.texi:32514 #, no-wrap msgid "{@code{cgit-configuration} parameter} mimetype-alist mimetype" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32151 +#: guix-git/doc/guix.texi:32516 msgid "Mimetype for the specified filename extension." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32155 +#: guix-git/doc/guix.texi:32520 msgid "Defaults to @samp{((gif \"image/gif\") (html \"text/html\") (jpg \"image/jpeg\") (jpeg \"image/jpeg\") (pdf \"application/pdf\") (png \"image/png\") (svg \"image/svg+xml\"))}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32158 +#: guix-git/doc/guix.texi:32523 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object mimetype-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32160 +#: guix-git/doc/guix.texi:32525 msgid "Specifies the file to use for automatic mimetype lookup." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32165 +#: guix-git/doc/guix.texi:32530 #, no-wrap msgid "{@code{cgit-configuration} parameter} string module-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32168 +#: guix-git/doc/guix.texi:32533 msgid "Text which will be used as the formatstring for a hyperlink when a submodule is printed in a directory listing." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32173 +#: guix-git/doc/guix.texi:32538 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean nocache?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32175 +#: guix-git/doc/guix.texi:32540 msgid "If set to the value @samp{#t} caching will be disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32180 +#: guix-git/doc/guix.texi:32545 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean noplainemail?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32183 +#: guix-git/doc/guix.texi:32548 msgid "If set to @samp{#t} showing full author email addresses will be disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32188 +#: guix-git/doc/guix.texi:32553 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean noheader?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32191 +#: guix-git/doc/guix.texi:32556 msgid "Flag which, when set to @samp{#t}, will make cgit omit the standard header on all pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32196 +#: guix-git/doc/guix.texi:32561 #, no-wrap msgid "{@code{cgit-configuration} parameter} project-list project-list" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32200 +#: guix-git/doc/guix.texi:32565 msgid "A list of subdirectories inside of @code{repository-directory}, relative to it, that should loaded as Git repositories. An empty list means that all subdirectories will be loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32205 +#: guix-git/doc/guix.texi:32570 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object readme" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32207 +#: guix-git/doc/guix.texi:32572 msgid "Text which will be used as default value for @code{cgit-repo-readme}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32212 +#: guix-git/doc/guix.texi:32577 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean remove-suffix?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32216 +#: guix-git/doc/guix.texi:32581 msgid "If set to @code{#t} and @code{repository-directory} is enabled, if any repositories are found with a suffix of @code{.git}, this suffix will be removed for the URL and name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32221 +#: guix-git/doc/guix.texi:32586 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer renamelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32223 +#: guix-git/doc/guix.texi:32588 msgid "Maximum number of files to consider when detecting renames." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32228 +#: guix-git/doc/guix.texi:32593 #, no-wrap msgid "{@code{cgit-configuration} parameter} string repository-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32230 +#: guix-git/doc/guix.texi:32595 msgid "The way in which repositories in each section are sorted." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32235 +#: guix-git/doc/guix.texi:32600 #, no-wrap msgid "{@code{cgit-configuration} parameter} robots-list robots" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32237 +#: guix-git/doc/guix.texi:32602 msgid "Text used as content for the @code{robots} meta-tag." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32239 +#: guix-git/doc/guix.texi:32604 msgid "Defaults to @samp{(\"noindex\" \"nofollow\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32242 +#: guix-git/doc/guix.texi:32607 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-desc" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32244 +#: guix-git/doc/guix.texi:32609 msgid "Text printed below the heading on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32246 +#: guix-git/doc/guix.texi:32611 msgid "Defaults to @samp{\"a fast webinterface for the git dscm\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32249 +#: guix-git/doc/guix.texi:32614 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-readme" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32252 +#: guix-git/doc/guix.texi:32617 msgid "The content of the file specified with this option will be included verbatim below the ``about'' link on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32257 +#: guix-git/doc/guix.texi:32622 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-title" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32259 +#: guix-git/doc/guix.texi:32624 msgid "Text printed as heading on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32264 +#: guix-git/doc/guix.texi:32629 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean scan-hidden-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32270 +#: guix-git/doc/guix.texi:32635 msgid "If set to @samp{#t} and repository-directory is enabled, repository-directory will recurse into directories whose name starts with a period. Otherwise, repository-directory will stay away from such directories, considered as ``hidden''. Note that this does not apply to the @file{.git} directory in non-bare repos." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32275 +#: guix-git/doc/guix.texi:32640 #, no-wrap msgid "{@code{cgit-configuration} parameter} list snapshots" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32278 +#: guix-git/doc/guix.texi:32643 msgid "Text which specifies the default set of snapshot formats that cgit generates links for." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32283 +#: guix-git/doc/guix.texi:32648 #, no-wrap msgid "{@code{cgit-configuration} parameter} repository-directory repository-directory" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32286 +#: guix-git/doc/guix.texi:32651 msgid "Name of the directory to scan for repositories (represents @code{scan-path})." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32288 +#: guix-git/doc/guix.texi:32653 msgid "Defaults to @samp{\"/srv/git\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32291 +#: guix-git/doc/guix.texi:32656 #, no-wrap msgid "{@code{cgit-configuration} parameter} string section" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32294 guix-git/doc/guix.texi:32610 +#: guix-git/doc/guix.texi:32659 guix-git/doc/guix.texi:32975 msgid "The name of the current repository section - all repositories defined after this option will inherit the current section name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32299 +#: guix-git/doc/guix.texi:32664 #, no-wrap msgid "{@code{cgit-configuration} parameter} string section-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32302 +#: guix-git/doc/guix.texi:32667 msgid "Flag which, when set to @samp{1}, will sort the sections on the repository listing by name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32307 +#: guix-git/doc/guix.texi:32672 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer section-from-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32310 +#: guix-git/doc/guix.texi:32675 msgid "A number which, if defined prior to repository-directory, specifies how many path elements from each repo path to use as a default section name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32315 +#: guix-git/doc/guix.texi:32680 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean side-by-side-diffs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32318 +#: guix-git/doc/guix.texi:32683 msgid "If set to @samp{#t} shows side-by-side diffs instead of unidiffs per default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32323 +#: guix-git/doc/guix.texi:32688 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object source-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32326 +#: guix-git/doc/guix.texi:32691 msgid "Specifies a command which will be invoked to format plaintext blobs in the tree view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32331 +#: guix-git/doc/guix.texi:32696 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-branches" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32334 +#: guix-git/doc/guix.texi:32699 msgid "Specifies the number of branches to display in the repository ``summary'' view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32339 +#: guix-git/doc/guix.texi:32704 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32342 +#: guix-git/doc/guix.texi:32707 msgid "Specifies the number of log entries to display in the repository ``summary'' view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32347 +#: guix-git/doc/guix.texi:32712 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-tags" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32350 +#: guix-git/doc/guix.texi:32715 msgid "Specifies the number of tags to display in the repository ``summary'' view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32355 +#: guix-git/doc/guix.texi:32720 #, no-wrap msgid "{@code{cgit-configuration} parameter} string strict-export" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32358 +#: guix-git/doc/guix.texi:32723 msgid "Filename which, if specified, needs to be present within the repository for cgit to allow access to that repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32363 +#: guix-git/doc/guix.texi:32728 #, no-wrap msgid "{@code{cgit-configuration} parameter} string virtual-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32365 +#: guix-git/doc/guix.texi:32730 msgid "URL which, if specified, will be used as root for all cgit links." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32367 +#: guix-git/doc/guix.texi:32732 msgid "Defaults to @samp{\"/\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32370 +#: guix-git/doc/guix.texi:32735 #, no-wrap msgid "{@code{cgit-configuration} parameter} repository-cgit-configuration-list repositories" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32372 +#: guix-git/doc/guix.texi:32737 msgid "A list of @dfn{cgit-repo} records to use with config." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32376 +#: guix-git/doc/guix.texi:32741 msgid "Available @code{repository-cgit-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32377 +#: guix-git/doc/guix.texi:32742 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list snapshots" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32380 +#: guix-git/doc/guix.texi:32745 msgid "A mask of snapshot formats for this repo that cgit generates links for, restricted by the global @code{snapshots} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32385 +#: guix-git/doc/guix.texi:32750 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object source-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32387 +#: guix-git/doc/guix.texi:32752 msgid "Override the default @code{source-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32392 +#: guix-git/doc/guix.texi:32757 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32394 +#: guix-git/doc/guix.texi:32759 msgid "The relative URL used to access the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32399 +#: guix-git/doc/guix.texi:32764 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object about-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32401 +#: guix-git/doc/guix.texi:32766 msgid "Override the default @code{about-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32406 +#: guix-git/doc/guix.texi:32771 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string branch-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32409 +#: guix-git/doc/guix.texi:32774 msgid "Flag which, when set to @samp{age}, enables date ordering in the branch ref list, and when set to @samp{name} enables ordering by branch name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32414 +#: guix-git/doc/guix.texi:32779 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list clone-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32416 +#: guix-git/doc/guix.texi:32781 msgid "A list of URLs which can be used to clone repo." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32421 +#: guix-git/doc/guix.texi:32786 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object commit-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32423 +#: guix-git/doc/guix.texi:32788 msgid "Override the default @code{commit-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32428 +#: guix-git/doc/guix.texi:32793 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string commit-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32437 +#: guix-git/doc/guix.texi:32802 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string defbranch" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32442 +#: guix-git/doc/guix.texi:32807 msgid "The name of the default branch for this repository. If no such branch exists in the repository, the first branch name (when sorted) is used as default instead. By default branch pointed to by HEAD, or ``master'' if there is no suitable HEAD." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32447 +#: guix-git/doc/guix.texi:32812 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string desc" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32449 +#: guix-git/doc/guix.texi:32814 msgid "The value to show as repository description." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32454 +#: guix-git/doc/guix.texi:32819 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string homepage" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32456 +#: guix-git/doc/guix.texi:32821 msgid "The value to show as repository homepage." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32461 +#: guix-git/doc/guix.texi:32826 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object email-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32463 +#: guix-git/doc/guix.texi:32828 msgid "Override the default @code{email-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32468 +#: guix-git/doc/guix.texi:32833 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-commit-graph?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32471 +#: guix-git/doc/guix.texi:32836 msgid "A flag which can be used to disable the global setting @code{enable-commit-graph?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32476 +#: guix-git/doc/guix.texi:32841 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-log-filecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32479 +#: guix-git/doc/guix.texi:32844 msgid "A flag which can be used to disable the global setting @code{enable-log-filecount?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32484 +#: guix-git/doc/guix.texi:32849 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-log-linecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32487 +#: guix-git/doc/guix.texi:32852 msgid "A flag which can be used to disable the global setting @code{enable-log-linecount?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32492 +#: guix-git/doc/guix.texi:32857 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-remote-branches?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32500 +#: guix-git/doc/guix.texi:32865 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-subject-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32503 +#: guix-git/doc/guix.texi:32868 msgid "A flag which can be used to override the global setting @code{enable-subject-links?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32508 +#: guix-git/doc/guix.texi:32873 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-html-serving?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32511 +#: guix-git/doc/guix.texi:32876 msgid "A flag which can be used to override the global setting @code{enable-html-serving?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32516 +#: guix-git/doc/guix.texi:32881 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-boolean hide?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32519 +#: guix-git/doc/guix.texi:32884 msgid "Flag which, when set to @code{#t}, hides the repository from the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32524 +#: guix-git/doc/guix.texi:32889 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-boolean ignore?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32526 +#: guix-git/doc/guix.texi:32891 msgid "Flag which, when set to @samp{#t}, ignores the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32531 +#: guix-git/doc/guix.texi:32896 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object logo" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32534 +#: guix-git/doc/guix.texi:32899 msgid "URL which specifies the source of an image which will be used as a logo on this repo’s pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32539 +#: guix-git/doc/guix.texi:32904 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string logo-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32546 +#: guix-git/doc/guix.texi:32911 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object owner-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32548 +#: guix-git/doc/guix.texi:32913 msgid "Override the default @code{owner-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32553 +#: guix-git/doc/guix.texi:32918 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string module-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32557 +#: guix-git/doc/guix.texi:32922 msgid "Text which will be used as the formatstring for a hyperlink when a submodule is printed in a directory listing. The arguments for the formatstring are the path and SHA1 of the submodule commit." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32562 +#: guix-git/doc/guix.texi:32927 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} module-link-path module-link-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32566 +#: guix-git/doc/guix.texi:32931 msgid "Text which will be used as the formatstring for a hyperlink when a submodule with the specified subdirectory path is printed in a directory listing." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32571 +#: guix-git/doc/guix.texi:32936 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string max-stats" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32573 +#: guix-git/doc/guix.texi:32938 msgid "Override the default maximum statistics period." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32578 +#: guix-git/doc/guix.texi:32943 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32580 +#: guix-git/doc/guix.texi:32945 msgid "The value to show as repository name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32585 +#: guix-git/doc/guix.texi:32950 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string owner" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32587 +#: guix-git/doc/guix.texi:32952 msgid "A value used to identify the owner of the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32592 +#: guix-git/doc/guix.texi:32957 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32594 +#: guix-git/doc/guix.texi:32959 msgid "An absolute path to the repository directory." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32599 +#: guix-git/doc/guix.texi:32964 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string readme" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32602 +#: guix-git/doc/guix.texi:32967 msgid "A path (relative to repo) which specifies a file to include verbatim as the ``About'' page for this repo." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32607 +#: guix-git/doc/guix.texi:32972 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string section" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32615 +#: guix-git/doc/guix.texi:32980 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32617 guix-git/doc/guix.texi:32626 +#: guix-git/doc/guix.texi:32982 guix-git/doc/guix.texi:32991 msgid "Extra options will be appended to cgitrc file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32624 +#: guix-git/doc/guix.texi:32989 #, no-wrap msgid "{@code{cgit-configuration} parameter} list extra-options" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32638 +#: guix-git/doc/guix.texi:33003 msgid "However, it could be that you just want to get a @code{cgitrc} up and running. In that case, you can pass an @code{opaque-cgit-configuration} as a record to @code{cgit-service-type}. As its name indicates, an opaque configuration does not have easy reflective capabilities." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32640 +#: guix-git/doc/guix.texi:33005 msgid "Available @code{opaque-cgit-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32641 +#: guix-git/doc/guix.texi:33006 #, no-wrap msgid "{@code{opaque-cgit-configuration} parameter} package cgit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32643 +#: guix-git/doc/guix.texi:33008 msgid "The cgit package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32645 +#: guix-git/doc/guix.texi:33010 #, no-wrap msgid "{@code{opaque-cgit-configuration} parameter} string string" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32647 +#: guix-git/doc/guix.texi:33012 msgid "The contents of the @code{cgitrc}, as a string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32651 +#: guix-git/doc/guix.texi:33016 msgid "For example, if your @code{cgitrc} is just the empty string, you could instantiate a cgit service like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32656 +#: guix-git/doc/guix.texi:33021 #, no-wrap msgid "" "(service cgit-service-type\n" @@ -59386,40 +60184,40 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:32658 +#: guix-git/doc/guix.texi:33023 #, no-wrap msgid "Gitolite Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32660 +#: guix-git/doc/guix.texi:33025 #, no-wrap msgid "Gitolite service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32661 +#: guix-git/doc/guix.texi:33026 #, no-wrap msgid "Git, hosting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32664 +#: guix-git/doc/guix.texi:33029 msgid "@uref{https://gitolite.com/gitolite/, Gitolite} is a tool for hosting Git repositories on a central server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32667 +#: guix-git/doc/guix.texi:33032 msgid "Gitolite can handle multiple repositories and users, and supports flexible configuration of the permissions for the users on the repositories." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32670 +#: guix-git/doc/guix.texi:33035 msgid "The following example will configure Gitolite using the default @code{git} user, and the provided SSH public key." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32677 +#: guix-git/doc/guix.texi:33042 #, no-wrap msgid "" "(service gitolite-service-type\n" @@ -59430,223 +60228,223 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32682 +#: guix-git/doc/guix.texi:33047 msgid "Gitolite is configured through a special admin repository which you can clone, for example, if you setup Gitolite on @code{example.com}, you would run the following command to clone the admin repository." msgstr "" #. type: example -#: guix-git/doc/guix.texi:32685 +#: guix-git/doc/guix.texi:33050 #, no-wrap msgid "git clone git@@example.com:gitolite-admin\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32691 +#: guix-git/doc/guix.texi:33056 msgid "When the Gitolite service is activated, the provided @code{admin-pubkey} will be inserted in to the @file{keydir} directory in the gitolite-admin repository. If this results in a change in the repository, it will be committed using the message ``gitolite setup by GNU Guix''." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32692 +#: guix-git/doc/guix.texi:33057 #, no-wrap msgid "{Data Type} gitolite-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32694 +#: guix-git/doc/guix.texi:33059 msgid "Data type representing the configuration for @code{gitolite-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32696 +#: guix-git/doc/guix.texi:33061 #, no-wrap msgid "@code{package} (default: @var{gitolite})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32698 +#: guix-git/doc/guix.texi:33063 msgid "Gitolite package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32699 +#: guix-git/doc/guix.texi:33064 #, no-wrap msgid "@code{user} (default: @var{git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32702 +#: guix-git/doc/guix.texi:33067 msgid "User to use for Gitolite. This will be user that you use when accessing Gitolite over SSH." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32703 +#: guix-git/doc/guix.texi:33068 #, no-wrap msgid "@code{group} (default: @var{git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32705 +#: guix-git/doc/guix.texi:33070 msgid "Group to use for Gitolite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32706 +#: guix-git/doc/guix.texi:33071 #, no-wrap msgid "@code{home-directory} (default: @var{\"/var/lib/gitolite\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32708 +#: guix-git/doc/guix.texi:33073 msgid "Directory in which to store the Gitolite configuration and repositories." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32709 +#: guix-git/doc/guix.texi:33074 #, no-wrap msgid "@code{rc-file} (default: @var{(gitolite-rc-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32712 +#: guix-git/doc/guix.texi:33077 msgid "A ``file-like'' object (@pxref{G-Expressions, file-like objects}), representing the configuration for Gitolite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32713 +#: guix-git/doc/guix.texi:33078 #, no-wrap msgid "@code{admin-pubkey} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32717 +#: guix-git/doc/guix.texi:33082 msgid "A ``file-like'' object (@pxref{G-Expressions, file-like objects}) used to setup Gitolite. This will be inserted in to the @file{keydir} directory within the gitolite-admin repository." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32719 +#: guix-git/doc/guix.texi:33084 msgid "To specify the SSH key as a string, use the @code{plain-file} function." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32722 +#: guix-git/doc/guix.texi:33087 #, no-wrap msgid "(plain-file \"yourname.pub\" \"ssh-rsa AAAA... guix@@example.com\")\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32727 +#: guix-git/doc/guix.texi:33092 #, no-wrap msgid "{Data Type} gitolite-rc-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32729 +#: guix-git/doc/guix.texi:33094 msgid "Data type representing the Gitolite RC file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32731 +#: guix-git/doc/guix.texi:33096 #, no-wrap msgid "@code{umask} (default: @code{#o0077})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32734 +#: guix-git/doc/guix.texi:33099 msgid "This controls the permissions Gitolite sets on the repositories and their contents." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32738 +#: guix-git/doc/guix.texi:33103 msgid "A value like @code{#o0027} will give read access to the group used by Gitolite (by default: @code{git}). This is necessary when using Gitolite with software like cgit or gitweb." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32739 +#: guix-git/doc/guix.texi:33104 #, fuzzy, no-wrap #| msgid "@code{user-path} (default: @code{#f})" msgid "@code{unsafe-pattern} (default: @code{#f})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:32744 +#: guix-git/doc/guix.texi:33109 msgid "An optional Perl regular expression for catching unsafe configurations in the configuration file. See @uref{https://gitolite.com/gitolite/git-config.html#compensating-for-unsafe_patt, Gitolite's documentation} for more information." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32751 +#: guix-git/doc/guix.texi:33116 msgid "When the value is not @code{#f}, it should be a string containing a Perl regular expression, such as @samp{\"[`~#\\$\\&()|;<>]\"}, which is the default value used by gitolite. It rejects any special character in configuration that might be interpreted by a shell, which is useful when sharing the administration burden with other people that do not otherwise have shell access on the server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32752 +#: guix-git/doc/guix.texi:33117 #, no-wrap msgid "@code{git-config-keys} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32755 +#: guix-git/doc/guix.texi:33120 msgid "Gitolite allows you to set git config values using the @samp{config} keyword. This setting allows control over the config keys to accept." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32756 +#: guix-git/doc/guix.texi:33121 #, no-wrap msgid "@code{roles} (default: @code{'((\"READERS\" . 1) (\"WRITERS\" . ))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32758 +#: guix-git/doc/guix.texi:33123 msgid "Set the role names allowed to be used by users running the perms command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32759 +#: guix-git/doc/guix.texi:33124 #, no-wrap msgid "@code{enable} (default: @code{'(\"help\" \"desc\" \"info\" \"perms\" \"writable\" \"ssh-authkeys\" \"git-config\" \"daemon\" \"gitweb\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32761 +#: guix-git/doc/guix.texi:33126 msgid "This setting controls the commands and features to enable within Gitolite." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:32766 +#: guix-git/doc/guix.texi:33131 #, fuzzy, no-wrap #| msgid "Getmail service" msgid "Gitile Service" msgstr "Почтовые сервисы" #. type: cindex -#: guix-git/doc/guix.texi:32768 +#: guix-git/doc/guix.texi:33133 #, fuzzy, no-wrap #| msgid "Getmail service" msgid "Gitile service" msgstr "Почтовые сервисы" #. type: cindex -#: guix-git/doc/guix.texi:32769 +#: guix-git/doc/guix.texi:33134 #, no-wrap msgid "Git, forge" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32772 +#: guix-git/doc/guix.texi:33137 msgid "@uref{https://git.lepiller.eu/gitile, Gitile} is a Git forge for viewing public git repository contents from a web browser." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32778 +#: guix-git/doc/guix.texi:33143 msgid "Gitile works best in collaboration with Gitolite, and will serve the public repositories from Gitolite by default. The service should listen only on a local port, and a webserver should be configured to serve static resources. The gitile service provides an easy way to extend the Nginx service for that purpose (@pxref{NGINX})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32782 +#: guix-git/doc/guix.texi:33147 msgid "The following example will configure Gitile to serve repositories from a custom location, with some default messages for the home page and the footers." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32805 +#: guix-git/doc/guix.texi:33170 #, no-wrap msgid "" "(service gitile-service-type\n" @@ -59673,12 +60471,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32814 +#: guix-git/doc/guix.texi:33179 msgid "In addition to the configuration record, you should configure your git repositories to contain some optional information. First, your public repositories need to contain the @file{git-daemon-export-ok} magic file that allows Git to export the repository. Gitile uses the presence of this file to detect public repositories it should make accessible. To do so with Gitolite for instance, modify your @file{conf/gitolite.conf} to include this in the repositories you want to make public:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:32818 +#: guix-git/doc/guix.texi:33183 #, no-wrap msgid "" "repo foo\n" @@ -59686,12 +60484,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32824 +#: guix-git/doc/guix.texi:33189 msgid "In addition, Gitile can read the repository configuration to display more information on the repository. Gitile uses the gitweb namespace for its configuration. As an example, you can use the following in your @file{conf/gitolite.conf}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:32831 +#: guix-git/doc/guix.texi:33196 #, no-wrap msgid "" "repo foo\n" @@ -59702,12 +60500,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32837 +#: guix-git/doc/guix.texi:33202 msgid "Do not forget to commit and push these changes once you are satisfied. You may need to change your gitolite configuration to allow the previous configuration options to be set. One way to do that is to add the following service definition:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32849 +#: guix-git/doc/guix.texi:33214 #, no-wrap msgid "" "(service gitolite-service-type\n" @@ -59723,258 +60521,258 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32851 +#: guix-git/doc/guix.texi:33216 #, fuzzy, no-wrap #| msgid "{Data Type} agate-configuration" msgid "{Data Type} gitile-configuration" msgstr "{Data Type} pagekite-configuration" #. type: deftp -#: guix-git/doc/guix.texi:32853 +#: guix-git/doc/guix.texi:33218 #, fuzzy #| msgid "Data type representing the configuration for @code{syncthing-service-type}." msgid "Data type representing the configuration for @code{gitile-service-type}." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:32855 +#: guix-git/doc/guix.texi:33220 #, fuzzy, no-wrap #| msgid "@code{package} (default: @var{pagekite})" msgid "@code{package} (default: @var{gitile})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:32857 +#: guix-git/doc/guix.texi:33222 #, fuzzy #| msgid "The package to use." msgid "Gitile package to use." msgstr "Пакет для использования." #. type: table -#: guix-git/doc/guix.texi:32860 +#: guix-git/doc/guix.texi:33225 msgid "The host on which gitile is listening." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32861 +#: guix-git/doc/guix.texi:33226 #, fuzzy, no-wrap #| msgid "@code{port} (default: @code{5080})" msgid "@code{port} (default: @code{8080})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:32863 +#: guix-git/doc/guix.texi:33228 msgid "The port on which gitile is listening." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32864 +#: guix-git/doc/guix.texi:33229 #, fuzzy, no-wrap #| msgid "@code{data-directory} (default: @code{\"/var/lib/postgresql/data\"})" msgid "@code{database} (default: @code{\"/var/lib/gitile/gitile-db.sql\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:32866 +#: guix-git/doc/guix.texi:33231 #, fuzzy #| msgid "The name of the database to use." msgid "The location of the database." msgstr "Имя используемой базы данных." #. type: item -#: guix-git/doc/guix.texi:32867 +#: guix-git/doc/guix.texi:33232 #, fuzzy, no-wrap #| msgid "@code{log-directory} (default: @code{\"/var/log/postgresql\"})" msgid "@code{repositories} (default: @code{\"/var/lib/gitolite/repositories\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:32871 +#: guix-git/doc/guix.texi:33236 msgid "The location of the repositories. Note that only public repositories will be shown by Gitile. To make a repository public, add an empty @file{git-daemon-export-ok} file at the root of that repository." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:32872 +#: guix-git/doc/guix.texi:33237 #, fuzzy, no-wrap #| msgid "github-url" msgid "base-git-url" msgstr "github-url" #. type: table -#: guix-git/doc/guix.texi:32874 +#: guix-git/doc/guix.texi:33239 msgid "The base git url that will be used to show clone commands." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32875 +#: guix-git/doc/guix.texi:33240 #, fuzzy, no-wrap #| msgid "@code{title} (default: @code{\"Laminar\"})" msgid "@code{index-title} (default: @code{\"Index\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:32877 +#: guix-git/doc/guix.texi:33242 msgid "The page title for the index page that lists all the available repositories." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32878 +#: guix-git/doc/guix.texi:33243 #, fuzzy, no-wrap #| msgid "@code{inputs} (default: @code{'()})" msgid "@code{intro} (default: @code{'()})" msgstr "@code{inputs} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:32881 +#: guix-git/doc/guix.texi:33246 msgid "The intro content, as a list of sxml expressions. This is shown above the list of repositories, on the index page." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32882 +#: guix-git/doc/guix.texi:33247 #, fuzzy, no-wrap #| msgid "@code{roles} (default: @code{'()})" msgid "@code{footer} (default: @code{'()})" msgstr "@code{modules} (по умолчанию: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:32885 +#: guix-git/doc/guix.texi:33250 msgid "The footer content, as a list of sxml expressions. This is shown on every page served by Gitile." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:32886 +#: guix-git/doc/guix.texi:33251 #, no-wrap msgid "nginx-server-block" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32889 +#: guix-git/doc/guix.texi:33254 msgid "An nginx server block that will be extended and used as a reverse proxy by Gitile to serve its pages, and as a normal web server to serve its assets." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32893 +#: guix-git/doc/guix.texi:33258 msgid "You can use this block to add more custom URLs to your domain, such as a @code{/git/} URL for anonymous clones, or serving any other files you would like to serve." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:32900 +#: guix-git/doc/guix.texi:33265 #, no-wrap msgid "The Battle for Wesnoth Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32901 +#: guix-git/doc/guix.texi:33266 #, no-wrap msgid "wesnothd" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32905 +#: guix-git/doc/guix.texi:33270 msgid "@uref{https://wesnoth.org, The Battle for Wesnoth} is a fantasy, turn based tactical strategy game, with several single player campaigns, and multiplayer games (both networked and local)." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32906 +#: guix-git/doc/guix.texi:33271 #, no-wrap msgid "{Scheme Variable} wesnothd-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32910 +#: guix-git/doc/guix.texi:33275 msgid "Service type for the wesnothd service. Its value must be a @code{wesnothd-configuration} object. To run wesnothd in the default configuration, instantiate it as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32913 +#: guix-git/doc/guix.texi:33278 #, no-wrap msgid "(service wesnothd-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32916 +#: guix-git/doc/guix.texi:33281 #, no-wrap msgid "{Data Type} wesnothd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32918 +#: guix-git/doc/guix.texi:33283 msgid "Data type representing the configuration of @command{wesnothd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32920 +#: guix-git/doc/guix.texi:33285 #, no-wrap msgid "@code{package} (default: @code{wesnoth-server})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32922 +#: guix-git/doc/guix.texi:33287 msgid "The wesnoth server package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32923 +#: guix-git/doc/guix.texi:33288 #, no-wrap msgid "@code{port} (default: @code{15000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32925 +#: guix-git/doc/guix.texi:33290 guix-git/doc/guix.texi:33681 msgid "The port to bind the server to." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32931 +#: guix-git/doc/guix.texi:33296 #, no-wrap msgid "pam-mount" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32936 +#: guix-git/doc/guix.texi:33301 msgid "The @code{(gnu services pam-mount)} module provides a service allowing users to mount volumes when they log in. It should be able to mount any volume format supported by the system." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32937 +#: guix-git/doc/guix.texi:33302 #, no-wrap msgid "{Scheme Variable} pam-mount-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32939 +#: guix-git/doc/guix.texi:33304 msgid "Service type for PAM Mount support." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32941 +#: guix-git/doc/guix.texi:33306 #, no-wrap msgid "{Data Type} pam-mount-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32943 +#: guix-git/doc/guix.texi:33308 msgid "Data type representing the configuration of PAM Mount." msgstr "Управление конфигурацией операционной системы." #. type: code{#1} -#: guix-git/doc/guix.texi:32947 +#: guix-git/doc/guix.texi:33312 #, no-wrap msgid "rules" msgstr "Модули" #. type: table -#: guix-git/doc/guix.texi:32950 +#: guix-git/doc/guix.texi:33315 msgid "The configuration rules that will be used to generate @file{/etc/security/pam_mount.conf.xml}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32954 +#: guix-git/doc/guix.texi:33319 msgid "The configuration rules are SXML elements (@pxref{SXML,,, guile, GNU Guile Reference Manual}), and the default ones don't mount anything for anyone at login:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32969 +#: guix-git/doc/guix.texi:33334 #, no-wrap msgid "" "`((debug (@@ (enable \"0\")))\n" @@ -59993,12 +60791,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32975 +#: guix-git/doc/guix.texi:33340 msgid "Some @code{volume} elements must be added to automatically mount volumes at login. Here's an example allowing the user @code{alice} to mount her encrypted @env{HOME} directory and allowing the user @code{bob} to mount the partition where he stores his data:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33000 +#: guix-git/doc/guix.texi:33365 #, no-wrap msgid "" "(define pam-mount-rules\n" @@ -60028,7 +60826,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33004 +#: guix-git/doc/guix.texi:33369 #, no-wrap msgid "" "(service pam-mount-service-type\n" @@ -60037,771 +60835,924 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33008 +#: guix-git/doc/guix.texi:33373 msgid "The complete list of possible options can be found in the man page for @uref{http://pam-mount.sourceforge.net/pam_mount.conf.5.html, pam_mount.conf}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33015 +#: guix-git/doc/guix.texi:33380 #, no-wrap msgid "Guix Build Coordinator" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33021 +#: guix-git/doc/guix.texi:33386 msgid "The @uref{https://git.cbaines.net/guix/build-coordinator/,Guix Build Coordinator} aids in distributing derivation builds among machines running an @dfn{agent}. The build daemon is still used to build the derivations, but the Guix Build Coordinator manages allocating builds and working with the results." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33027 +#: guix-git/doc/guix.texi:33392 msgid "The Guix Build Coordinator consists of one @dfn{coordinator}, and one or more connected @dfn{agent} processes. The coordinator process handles clients submitting builds, and allocating builds to agents. The agent processes talk to a build daemon to actually perform the builds, then send the results back to the coordinator." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33031 +#: guix-git/doc/guix.texi:33396 msgid "There is a script to run the coordinator component of the Guix Build Coordinator, but the Guix service uses a custom Guile script instead, to provide better integration with G-expressions used in the configuration." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33032 +#: guix-git/doc/guix.texi:33397 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-service-type" msgstr "{Scheme Variable} boot-service-type" #. type: defvar -#: guix-git/doc/guix.texi:33035 +#: guix-git/doc/guix.texi:33400 msgid "Service type for the Guix Build Coordinator. Its value must be a @code{guix-build-coordinator-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33037 +#: guix-git/doc/guix.texi:33402 #, no-wrap msgid "{Data Type} guix-build-coordinator-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:33039 +#: guix-git/doc/guix.texi:33404 msgid "Data type representing the configuration of the Guix Build Coordinator." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:33041 guix-git/doc/guix.texi:33211 +#: guix-git/doc/guix.texi:33406 guix-git/doc/guix.texi:33576 #, no-wrap msgid "@code{package} (default: @code{guix-build-coordinator})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:33043 guix-git/doc/guix.texi:33087 -#: guix-git/doc/guix.texi:33213 +#: guix-git/doc/guix.texi:33408 guix-git/doc/guix.texi:33452 +#: guix-git/doc/guix.texi:33578 msgid "The Guix Build Coordinator package to use." msgstr "Используемый пакет Guix Build Coordinator." #. type: item -#: guix-git/doc/guix.texi:33044 +#: guix-git/doc/guix.texi:33409 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator\"})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:33046 guix-git/doc/guix.texi:33090 -#: guix-git/doc/guix.texi:33216 guix-git/doc/guix.texi:33262 +#: guix-git/doc/guix.texi:33411 guix-git/doc/guix.texi:33455 +#: guix-git/doc/guix.texi:33581 guix-git/doc/guix.texi:33627 +#: guix-git/doc/guix.texi:33675 msgid "The system user to run the service as." msgstr "Сервис mcron." #. type: item -#: guix-git/doc/guix.texi:33047 +#: guix-git/doc/guix.texi:33412 #, no-wrap msgid "@code{group} (default: @code{\"guix-build-coordinator\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:33049 guix-git/doc/guix.texi:33265 +#: guix-git/doc/guix.texi:33414 guix-git/doc/guix.texi:33630 +#: guix-git/doc/guix.texi:33678 msgid "The system group to run the service as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33050 +#: guix-git/doc/guix.texi:33415 #, no-wrap msgid "@code{database-uri-string} (default: @code{\"sqlite:///var/lib/guix-build-coordinator/guix_build_coordinator.db\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33052 +#: guix-git/doc/guix.texi:33417 msgid "The URI to use for the database." msgstr "URI для использования в базе данных." #. type: item -#: guix-git/doc/guix.texi:33053 +#: guix-git/doc/guix.texi:33418 #, no-wrap msgid "@code{agent-communication-uri} (default: @code{\"http://0.0.0.0:8745\"})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:33055 +#: guix-git/doc/guix.texi:33420 msgid "The URI describing how to listen to requests from agent processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33056 +#: guix-git/doc/guix.texi:33421 #, no-wrap msgid "@code{client-communication-uri} (default: @code{\"http://127.0.0.1:8746\"})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:33060 +#: guix-git/doc/guix.texi:33425 msgid "The URI describing how to listen to requests from clients. The client API allows submitting builds and currently isn't authenticated, so take care when configuring this value." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33061 +#: guix-git/doc/guix.texi:33426 #, no-wrap msgid "@code{allocation-strategy} (default: @code{#~basic-build-allocation-strategy})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:33065 +#: guix-git/doc/guix.texi:33430 msgid "A G-expression for the allocation strategy to be used. This is a procedure that takes the datastore as an argument and populates the allocation plan in the database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33066 +#: guix-git/doc/guix.texi:33431 #, no-wrap msgid "@code{hooks} (default: @var{'()})" msgstr "@code{inputs} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:33069 +#: guix-git/doc/guix.texi:33434 msgid "An association list of hooks. These provide a way to execute arbitrary code upon certain events, like a build result being processed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33070 +#: guix-git/doc/guix.texi:33435 #, no-wrap msgid "@code{guile} (default: @code{guile-3.0-latest})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:33072 +#: guix-git/doc/guix.texi:33437 msgid "The Guile package with which to run the Guix Build Coordinator." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33076 +#: guix-git/doc/guix.texi:33441 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-agent-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvar -#: guix-git/doc/guix.texi:33079 +#: guix-git/doc/guix.texi:33444 msgid "Service type for a Guix Build Coordinator agent. Its value must be a @code{guix-build-coordinator-agent-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33081 +#: guix-git/doc/guix.texi:33446 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:33083 +#: guix-git/doc/guix.texi:33448 msgid "Data type representing the configuration a Guix Build Coordinator agent." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:33085 +#: guix-git/doc/guix.texi:33450 #, fuzzy, no-wrap #| msgid "@code{package} (default: @code{guix-build-coordinator})" msgid "@code{package} (default: @code{guix-build-coordinator/agent-only})" msgstr "@code{speed} (default: @code{1.0})" #. type: item -#: guix-git/doc/guix.texi:33088 +#: guix-git/doc/guix.texi:33453 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator-agent\"})" msgstr "@code{speed} (default: @code{1.0})" #. type: item -#: guix-git/doc/guix.texi:33091 +#: guix-git/doc/guix.texi:33456 #, no-wrap msgid "@code{coordinator} (default: @code{\"http://localhost:8745\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:33093 guix-git/doc/guix.texi:33219 +#: guix-git/doc/guix.texi:33458 guix-git/doc/guix.texi:33584 msgid "The URI to use when connecting to the coordinator." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33094 +#: guix-git/doc/guix.texi:33459 #, no-wrap msgid "authentication" msgstr "channel-authentication" #. type: table -#: guix-git/doc/guix.texi:33097 +#: guix-git/doc/guix.texi:33462 msgid "Record describing how this agent should authenticate with the coordinator. Possible record types are described below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33098 guix-git/doc/guix.texi:33220 +#: guix-git/doc/guix.texi:33463 guix-git/doc/guix.texi:33585 #, no-wrap msgid "@code{systems} (default: @code{#f})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:33101 +#: guix-git/doc/guix.texi:33466 msgid "The systems for which this agent should fetch builds. The agent process will use the current system it's running on as the default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33102 +#: guix-git/doc/guix.texi:33467 #, no-wrap msgid "@code{max-parallel-builds} (default: @code{1})" msgstr "@code{parallel-builds} (default: @code{1})" #. type: table -#: guix-git/doc/guix.texi:33104 +#: guix-git/doc/guix.texi:33469 msgid "The number of builds to perform in parallel." msgstr "Число сборок, которые могут быть запущены на машине." #. type: item -#: guix-git/doc/guix.texi:33105 +#: guix-git/doc/guix.texi:33470 #, no-wrap msgid "@code{max-1min-load-average} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:33109 +#: guix-git/doc/guix.texi:33474 msgid "Load average value to look at when considering starting new builds, if the 1 minute load average exceeds this value, the agent will wait before starting new builds." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33113 +#: guix-git/doc/guix.texi:33478 msgid "This will be unspecified if the value is @code{#f}, and the agent will use the number of cores reported by the system as the max 1 minute load average." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33114 +#: guix-git/doc/guix.texi:33479 #, no-wrap msgid "@code{derivation-substitute-urls} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:33117 +#: guix-git/doc/guix.texi:33482 msgid "URLs from which to attempt to fetch substitutes for derivations, if the derivations aren't already available." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33118 +#: guix-git/doc/guix.texi:33483 #, no-wrap msgid "@code{non-derivation-substitute-urls} (default: @code{#f})" msgstr "@code{native-inputs} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:33121 +#: guix-git/doc/guix.texi:33486 msgid "URLs from which to attempt to fetch substitutes for build inputs, if the input store items aren't already available." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33125 +#: guix-git/doc/guix.texi:33490 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-password-auth" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:33128 +#: guix-git/doc/guix.texi:33493 msgid "Data type representing an agent authenticating with a coordinator via a UUID and password." msgstr "Управление конфигурацией операционной системы." #. type: table -#: guix-git/doc/guix.texi:33134 guix-git/doc/guix.texi:33150 +#: guix-git/doc/guix.texi:33499 guix-git/doc/guix.texi:33515 msgid "The UUID of the agent. This should be generated by the coordinator process, stored in the coordinator database, and used by the intended agent." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33137 +#: guix-git/doc/guix.texi:33502 msgid "The password to use when connecting to the coordinator." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33141 +#: guix-git/doc/guix.texi:33506 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-password-file-auth" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:33144 +#: guix-git/doc/guix.texi:33509 msgid "Data type representing an agent authenticating with a coordinator via a UUID and password read from a file." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33151 +#: guix-git/doc/guix.texi:33516 #, no-wrap msgid "password-file" msgstr "профиль" #. type: table -#: guix-git/doc/guix.texi:33154 +#: guix-git/doc/guix.texi:33519 msgid "A file containing the password to use when connecting to the coordinator." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33158 +#: guix-git/doc/guix.texi:33523 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-dynamic-auth" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:33161 +#: guix-git/doc/guix.texi:33526 msgid "Data type representing an agent authenticating with a coordinator via a dynamic auth token and agent name." msgstr "Управление конфигурацией операционной системы." #. type: code{#1} -#: guix-git/doc/guix.texi:33163 guix-git/doc/guix.texi:33180 +#: guix-git/doc/guix.texi:33528 guix-git/doc/guix.texi:33545 #, no-wrap msgid "agent-name" msgstr "каналы" #. type: table -#: guix-git/doc/guix.texi:33167 guix-git/doc/guix.texi:33184 +#: guix-git/doc/guix.texi:33532 guix-git/doc/guix.texi:33549 msgid "Name of an agent, this is used to match up to an existing entry in the database if there is one. When no existing entry is found, a new entry is automatically added." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33168 +#: guix-git/doc/guix.texi:33533 #, no-wrap msgid "token" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33171 +#: guix-git/doc/guix.texi:33536 msgid "Dynamic auth token, this is created and stored in the coordinator database, and is used by the agent to authenticate." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33175 +#: guix-git/doc/guix.texi:33540 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-dynamic-auth-with-file" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:33178 +#: guix-git/doc/guix.texi:33543 msgid "Data type representing an agent authenticating with a coordinator via a dynamic auth token read from a file and agent name." msgstr "Управление конфигурацией операционной системы." #. type: code{#1} -#: guix-git/doc/guix.texi:33185 +#: guix-git/doc/guix.texi:33550 #, no-wrap msgid "token-file" msgstr "профиль" #. type: table -#: guix-git/doc/guix.texi:33188 +#: guix-git/doc/guix.texi:33553 msgid "File containing the dynamic auth token, this is created and stored in the coordinator database, and is used by the agent to authenticate." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33198 +#: guix-git/doc/guix.texi:33563 msgid "The Guix Build Coordinator package contains a script to query an instance of the Guix Data Service for derivations to build, and then submit builds for those derivations to the coordinator. The service type below assists in running this script. This is an additional tool that may be useful when building derivations contained within an instance of the Guix Data Service." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33199 +#: guix-git/doc/guix.texi:33564 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-queue-builds-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvar -#: guix-git/doc/guix.texi:33204 +#: guix-git/doc/guix.texi:33569 msgid "Service type for the guix-build-coordinator-queue-builds-from-guix-data-service script. Its value must be a @code{guix-build-coordinator-queue-builds-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33206 +#: guix-git/doc/guix.texi:33571 #, no-wrap msgid "{Data Type} guix-build-coordinator-queue-builds-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:33209 +#: guix-git/doc/guix.texi:33574 msgid "Data type representing the options to the queue builds from guix data service script." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:33214 +#: guix-git/doc/guix.texi:33579 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator-queue-builds\"})" msgstr "@code{speed} (default: @code{1.0})" #. type: item -#: guix-git/doc/guix.texi:33217 +#: guix-git/doc/guix.texi:33582 #, no-wrap msgid "@code{coordinator} (default: @code{\"http://localhost:8746\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:33222 +#: guix-git/doc/guix.texi:33587 msgid "The systems for which to fetch derivations to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33223 +#: guix-git/doc/guix.texi:33588 #, no-wrap msgid "@code{systems-and-targets} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:33226 +#: guix-git/doc/guix.texi:33591 msgid "An association list of system and target pairs for which to fetch derivations to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33227 +#: guix-git/doc/guix.texi:33592 #, no-wrap msgid "@code{guix-data-service} (default: @code{\"https://data.guix.gnu.org\"})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:33230 +#: guix-git/doc/guix.texi:33595 msgid "The Guix Data Service instance from which to query to find out about derivations to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33231 +#: guix-git/doc/guix.texi:33596 #, no-wrap msgid "@code{processed-commits-file} (default: @code{\"/var/cache/guix-build-coordinator-queue-builds/processed-commits\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33234 +#: guix-git/doc/guix.texi:33599 msgid "A file to record which commits have been processed, to avoid needlessly processing them again if the service is restarted." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33238 +#: guix-git/doc/guix.texi:33603 #, no-wrap msgid "Guix Data Service" msgstr "Сервисы баз данных" #. type: Plain text -#: guix-git/doc/guix.texi:33242 +#: guix-git/doc/guix.texi:33607 msgid "The @uref{http://data.guix.gnu.org,Guix Data Service} processes, stores and provides data about GNU Guix. This includes information about packages, derivations and lint warnings." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33245 +#: guix-git/doc/guix.texi:33610 msgid "The data is stored in a PostgreSQL database, and available through a web interface." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33246 +#: guix-git/doc/guix.texi:33611 #, no-wrap msgid "{Scheme Variable} guix-data-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33251 +#: guix-git/doc/guix.texi:33616 msgid "Service type for the Guix Data Service. Its value must be a @code{guix-data-service-configuration} object. The service optionally extends the getmail service, as the guix-commits mailing list is used to find out about changes in the Guix git repository." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33253 +#: guix-git/doc/guix.texi:33618 #, no-wrap msgid "{Data Type} guix-data-service-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33255 +#: guix-git/doc/guix.texi:33620 guix-git/doc/guix.texi:33668 msgid "Data type representing the configuration of the Guix Data Service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33257 +#: guix-git/doc/guix.texi:33622 #, no-wrap msgid "@code{package} (default: @code{guix-data-service})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:33259 +#: guix-git/doc/guix.texi:33624 msgid "The Guix Data Service package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33260 +#: guix-git/doc/guix.texi:33625 #, no-wrap msgid "@code{user} (default: @code{\"guix-data-service\"})" msgstr "@code{speed} (default: @code{1.0})" #. type: item -#: guix-git/doc/guix.texi:33263 +#: guix-git/doc/guix.texi:33628 #, no-wrap msgid "@code{group} (default: @code{\"guix-data-service\"})" msgstr "@code{port} (default: @code{22})" #. type: item -#: guix-git/doc/guix.texi:33266 +#: guix-git/doc/guix.texi:33631 #, no-wrap msgid "@code{port} (default: @code{8765})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:33268 +#: guix-git/doc/guix.texi:33633 msgid "The port to bind the web service to." msgstr "Сервис rottlog." #. type: item -#: guix-git/doc/guix.texi:33269 +#: guix-git/doc/guix.texi:33634 guix-git/doc/guix.texi:33682 #, no-wrap msgid "@code{host} (default: @code{\"127.0.0.1\"})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:33271 +#: guix-git/doc/guix.texi:33636 msgid "The host to bind the web service to." msgstr "Сервис rottlog." #. type: item -#: guix-git/doc/guix.texi:33272 +#: guix-git/doc/guix.texi:33637 #, no-wrap msgid "@code{getmail-idle-mailboxes} (default: @code{#f})" msgstr "@code{parallel-builds} (default: @code{1})" #. type: table -#: guix-git/doc/guix.texi:33275 +#: guix-git/doc/guix.texi:33640 msgid "If set, this is the list of mailboxes that the getmail service will be configured to listen to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33276 +#: guix-git/doc/guix.texi:33641 #, no-wrap msgid "@code{commits-getmail-retriever-configuration} (default: @code{#f})" msgstr "@code{compression-level} (default: @code{3})" #. type: table -#: guix-git/doc/guix.texi:33280 +#: guix-git/doc/guix.texi:33645 msgid "If set, this is the @code{getmail-retriever-configuration} object with which to configure getmail to fetch mail from the guix-commits mailing list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33281 +#: guix-git/doc/guix.texi:33646 #, no-wrap msgid "@code{extra-options} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33283 +#: guix-git/doc/guix.texi:33648 msgid "Extra command line options for @code{guix-data-service}." msgstr "Дополнительные параметры командной строки для @code {guix-data-service}." #. type: item -#: guix-git/doc/guix.texi:33284 +#: guix-git/doc/guix.texi:33649 #, no-wrap msgid "@code{extra-process-jobs-options} (default: @var{'()})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:33286 +#: guix-git/doc/guix.texi:33651 msgid "Extra command line options for @code{guix-data-service-process-jobs}." msgstr "" +#. type: subsubheading +#: guix-git/doc/guix.texi:33655 +#, no-wrap +msgid "Nar Herder" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:33658 +msgid "The @uref{https://git.cbaines.net/guix/nar-herder/about/,Nar Herder} is a utility for managing a collection of nars." +msgstr "" + +#. type: defvar +#: guix-git/doc/guix.texi:33659 +#, fuzzy, no-wrap +#| msgid "{Scheme Variable} sane-service-type" +msgid "{Scheme Variable} nar-herder-type" +msgstr "{Процедура Scheme} sane-service-type" + +#. type: defvar +#: guix-git/doc/guix.texi:33664 +msgid "Service type for the Guix Data Service. Its value must be a @code{nar-herder-configuration} object. The service optionally extends the getmail service, as the guix-commits mailing list is used to find out about changes in the Guix git repository." +msgstr "" + +#. type: deftp +#: guix-git/doc/guix.texi:33666 +#, fuzzy, no-wrap +#| msgid "{Data Type} shepherd-configuration" +msgid "{Data Type} nar-herder-configuration" +msgstr "Конфигурирование системы" + +#. type: item +#: guix-git/doc/guix.texi:33670 +#, fuzzy, no-wrap +#| msgid "@code{package} (default: @code{r-shiny})" +msgid "@code{package} (default: @code{nar-herder})" +msgstr "@code{speed} (default: @code{1.0})" + +#. type: table +#: guix-git/doc/guix.texi:33672 +#, fuzzy +#| msgid "The Hurd package to use." +msgid "The Nar Herder package to use." +msgstr "Используемый пакет Hurd." + +#. type: item +#: guix-git/doc/guix.texi:33673 +#, fuzzy, no-wrap +#| msgid "@code{user} (default: @code{\"agate\"})" +msgid "@code{user} (default: @code{\"nar-herder\"})" +msgstr "@code{port} (default: @code{22})" + +#. type: item +#: guix-git/doc/guix.texi:33676 +#, fuzzy, no-wrap +#| msgid "@code{group} (default: @code{\"agate\"})" +msgid "@code{group} (default: @code{\"nar-herder\"})" +msgstr "@code{port} (default: @code{22})" + +#. type: item +#: guix-git/doc/guix.texi:33679 +#, fuzzy, no-wrap +#| msgid "@code{port} (default: @code{8765})" +msgid "@code{port} (default: @code{8734})" +msgstr "@code{port} (default: @code{22})" + +#. type: table +#: guix-git/doc/guix.texi:33684 +#, fuzzy +#| msgid "The host to bind the web service to." +msgid "The host to bind the server to." +msgstr "Сервис rottlog." + +#. type: table +#: guix-git/doc/guix.texi:33689 +msgid "Optional URL of the other Nar Herder instance which should be mirrored. This means that this Nar Herder instance will download it's database, and keep it up to date." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33690 +#, fuzzy, no-wrap +#| msgid "@code{data-directory} (default: @code{\"/var/lib/postgresql/data\"})" +msgid "@code{database} (default: @code{\"/var/lib/nar-herder/nar_herder.db\"})" +msgstr "@code{port} (default: @code{22})" + +#. type: table +#: guix-git/doc/guix.texi:33695 +msgid "Location for the database. If this Nar Herder instance is mirroring another, the database will be downloaded if it doesn't exist. If this Nar Herder instance isn't mirroring another, an empty database will be created." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33696 +#, fuzzy, no-wrap +#| msgid "@code{data-directory} (default: @code{\"/var/lib/postgresql/data\"})" +msgid "@code{database-dump} (default: @code{\"/var/lib/nar-herder/nar_herder_dump.db\"})" +msgstr "@code{port} (default: @code{22})" + +#. type: table +#: guix-git/doc/guix.texi:33700 +msgid "Location of the database dump. This is created and regularly updated by taking a copy of the database. This is the version of the database that is available to download." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33701 +#, fuzzy, no-wrap +msgid "@code{storage} (default: @code{#f})" +msgstr "@code{port} (default: @code{22})" + +#. type: table +#: guix-git/doc/guix.texi:33703 +msgid "Optional location in which to store nars." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33704 +#, fuzzy, no-wrap +#| msgid "@code{port} (default: @code{\"\"})" +msgid "@code{storage-limit} (default: @code{\"none\"})" +msgstr "@code{port} (default: @code{22})" + +#. type: table +#: guix-git/doc/guix.texi:33707 +msgid "Limit in bytes for the nars stored in the storage location. This can also be set to ``none'' so that there is no limit." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33710 +msgid "When the storage location exceeds this size, nars are removed according to the nar removal criteria." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33711 +#, fuzzy, no-wrap +#| msgid "@code{server} (default: @code{'()})" +msgid "@code{storage-nar-removal-criteria} (default: @code{'()})" +msgstr "@code{features} (default: @code{'()})" + +#. type: table +#: guix-git/doc/guix.texi:33714 +msgid "Criteria used to remove nars from the storage location. These are used in conjunction with the storage limit." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33719 +msgid "When the storage location exceeds the storage limit size, nars will be checked against the nar removal criteria and if any of the criteria match, they will be removed. This will continue until the storage location is below the storage limit size." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33723 +msgid "Each criteria is specified by a string, then an equals sign, then another string. Currently, only one criteria is supported, checking if a nar is stored on another Nar Herder instance." +msgstr "" + #. type: cindex -#: guix-git/doc/guix.texi:33293 +#: guix-git/doc/guix.texi:33730 #, no-wrap msgid "oom" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33294 +#: guix-git/doc/guix.texi:33731 #, no-wrap msgid "out of memory killer" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33295 +#: guix-git/doc/guix.texi:33732 #, no-wrap msgid "earlyoom" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33296 +#: guix-git/doc/guix.texi:33733 #, no-wrap msgid "early out of memory daemon" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33297 +#: guix-git/doc/guix.texi:33734 #, no-wrap msgid "Early OOM Service" msgstr "Почтовые сервисы" #. type: Plain text -#: guix-git/doc/guix.texi:33304 +#: guix-git/doc/guix.texi:33741 msgid "@uref{https://github.com/rfjakob/earlyoom,Early OOM}, also known as Earlyoom, is a minimalist out of memory (OOM) daemon that runs in user space and provides a more responsive and configurable alternative to the in-kernel OOM killer. It is useful to prevent the system from becoming unresponsive when it runs out of memory." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33305 +#: guix-git/doc/guix.texi:33742 #, no-wrap msgid "{Scheme Variable} earlyoom-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33310 +#: guix-git/doc/guix.texi:33747 msgid "The service type for running @command{earlyoom}, the Early OOM daemon. Its value must be a @code{earlyoom-configuration} object, described below. The service can be instantiated in its default configuration with:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33313 +#: guix-git/doc/guix.texi:33750 #, no-wrap msgid "(service earlyoom-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33316 +#: guix-git/doc/guix.texi:33753 #, no-wrap msgid "{Data Type} earlyoom-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33318 +#: guix-git/doc/guix.texi:33755 msgid "This is the configuration record for the @code{earlyoom-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33320 +#: guix-git/doc/guix.texi:33757 #, no-wrap msgid "@code{earlyoom} (default: @var{earlyoom})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:33322 +#: guix-git/doc/guix.texi:33759 msgid "The Earlyoom package to use." msgstr "Используемый пакет Earlyoom." #. type: item -#: guix-git/doc/guix.texi:33323 +#: guix-git/doc/guix.texi:33760 #, no-wrap msgid "@code{minimum-available-memory} (default: @code{10})" msgstr "@code{parallel-builds} (default: @code{1})" #. type: table -#: guix-git/doc/guix.texi:33325 +#: guix-git/doc/guix.texi:33762 msgid "The threshold for the minimum @emph{available} memory, in percentages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33326 +#: guix-git/doc/guix.texi:33763 #, no-wrap msgid "@code{minimum-free-swap} (default: @code{10})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:33328 +#: guix-git/doc/guix.texi:33765 msgid "The threshold for the minimum free swap memory, in percentages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33329 +#: guix-git/doc/guix.texi:33766 #, no-wrap msgid "@code{prefer-regexp} (default: @code{#f})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:33332 +#: guix-git/doc/guix.texi:33769 msgid "A regular expression (as a string) to match the names of the processes that should be preferably killed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33333 +#: guix-git/doc/guix.texi:33770 #, no-wrap msgid "@code{avoid-regexp} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:33336 +#: guix-git/doc/guix.texi:33773 msgid "A regular expression (as a string) to match the names of the processes that should @emph{not} be killed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33337 +#: guix-git/doc/guix.texi:33774 #, no-wrap msgid "@code{memory-report-interval} (default: @code{0})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:33340 +#: guix-git/doc/guix.texi:33777 msgid "The interval in seconds at which a memory report is printed. It is disabled by default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33341 +#: guix-git/doc/guix.texi:33778 #, no-wrap msgid "@code{ignore-positive-oom-score-adj?} (default: @code{#f})" msgstr "@code{compression-level} (default: @code{3})" #. type: table -#: guix-git/doc/guix.texi:33344 +#: guix-git/doc/guix.texi:33781 msgid "A boolean indicating whether the positive adjustments set in @file{/proc/*/oom_score_adj} should be ignored." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33345 +#: guix-git/doc/guix.texi:33782 #, no-wrap msgid "@code{show-debug-messages?} (default: @code{#f})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:33348 +#: guix-git/doc/guix.texi:33785 msgid "A boolean indicating whether debug messages should be printed. The logs are saved at @file{/var/log/earlyoom.log}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33349 +#: guix-git/doc/guix.texi:33786 #, no-wrap msgid "@code{send-notification-command} (default: @code{#f})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:33352 +#: guix-git/doc/guix.texi:33789 msgid "This can be used to provide a custom command used for sending notifications." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33355 +#: guix-git/doc/guix.texi:33792 #, no-wrap msgid "modprobe" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33356 +#: guix-git/doc/guix.texi:33793 #, no-wrap msgid "kernel module loader" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33357 +#: guix-git/doc/guix.texi:33794 #, no-wrap msgid "Kernel Module Loader Service" msgstr "Сервисы Kerberos" #. type: Plain text -#: guix-git/doc/guix.texi:33363 +#: guix-git/doc/guix.texi:33800 msgid "The kernel module loader service allows one to load loadable kernel modules at boot. This is especially useful for modules that don't autoload and need to be manually loaded, as is the case with @code{ddcci}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33364 +#: guix-git/doc/guix.texi:33801 #, no-wrap msgid "{Scheme Variable} kernel-module-loader-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: deffn -#: guix-git/doc/guix.texi:33370 +#: guix-git/doc/guix.texi:33807 msgid "The service type for loading loadable kernel modules at boot with @command{modprobe}. Its value must be a list of strings representing module names. For example loading the drivers provided by @code{ddcci-driver-linux}, in debugging mode by passing some module parameters, can be done as follow:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33375 +#: guix-git/doc/guix.texi:33812 #, no-wrap msgid "" "(use-modules (gnu) (gnu services))\n" @@ -60811,7 +61762,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33379 +#: guix-git/doc/guix.texi:33816 #, no-wrap msgid "" "(define ddcci-config\n" @@ -60821,7 +61772,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33389 +#: guix-git/doc/guix.texi:33826 #, no-wrap msgid "" "(operating-system\n" @@ -60836,411 +61787,411 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33392 +#: guix-git/doc/guix.texi:33829 #, no-wrap msgid "rasdaemon" msgstr "демон" #. type: cindex -#: guix-git/doc/guix.texi:33393 +#: guix-git/doc/guix.texi:33830 #, no-wrap msgid "Platform Reliability, Availability and Serviceability daemon" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33394 +#: guix-git/doc/guix.texi:33831 #, no-wrap msgid "Rasdaemon Service" msgstr "Почтовые сервисы" #. type: Plain text -#: guix-git/doc/guix.texi:33399 +#: guix-git/doc/guix.texi:33836 msgid "The Rasdaemon service provides a daemon which monitors platform @acronym{RAS, Reliability@comma{} Availability@comma{} and Serviceability} reports from Linux kernel trace events, logging them to syslogd." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33402 +#: guix-git/doc/guix.texi:33839 msgid "Reliability, Availability and Serviceability is a concept used on servers meant to measure their robustness." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33405 +#: guix-git/doc/guix.texi:33842 msgid "@strong{Relability} is the probability that a system will produce correct outputs:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33407 +#: guix-git/doc/guix.texi:33844 #, no-wrap msgid "Generally measured as Mean Time Between Failures (MTBF), and" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33408 +#: guix-git/doc/guix.texi:33845 #, no-wrap msgid "Enhanced by features that help to avoid, detect and repair hardware" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:33410 +#: guix-git/doc/guix.texi:33847 msgid "faults" msgstr "по умолчанию" #. type: Plain text -#: guix-git/doc/guix.texi:33414 +#: guix-git/doc/guix.texi:33851 msgid "@strong{Availability} is the probability that a system is operational at a given time:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33416 +#: guix-git/doc/guix.texi:33853 #, no-wrap msgid "Generally measured as a percentage of downtime per a period of time, and" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33417 +#: guix-git/doc/guix.texi:33854 #, no-wrap msgid "Often uses mechanisms to detect and correct hardware faults in runtime." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33422 +#: guix-git/doc/guix.texi:33859 msgid "@strong{Serviceability} is the simplicity and speed with which a system can be repaired or maintained:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33424 +#: guix-git/doc/guix.texi:33861 #, no-wrap msgid "Generally measured on Mean Time Between Repair (MTBR)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33429 +#: guix-git/doc/guix.texi:33866 msgid "Among the monitoring measures, the most usual ones include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33431 +#: guix-git/doc/guix.texi:33868 #, no-wrap msgid "CPU – detect errors at instruction execution and at L1/L2/L3 caches;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33432 +#: guix-git/doc/guix.texi:33869 #, no-wrap msgid "Memory – add error correction logic (ECC) to detect and correct errors;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33433 +#: guix-git/doc/guix.texi:33870 #, no-wrap msgid "I/O – add CRC checksums for transferred data;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33434 +#: guix-git/doc/guix.texi:33871 #, no-wrap msgid "Storage – RAID, journal file systems, checksums, Self-Monitoring," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:33436 +#: guix-git/doc/guix.texi:33873 msgid "Analysis and Reporting Technology (SMART)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33442 +#: guix-git/doc/guix.texi:33879 msgid "By monitoring the number of occurrences of error detections, it is possible to identify if the probability of hardware errors is increasing, and, on such case, do a preventive maintenance to replace a degraded component while those errors are correctable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33446 +#: guix-git/doc/guix.texi:33883 msgid "For detailed information about the types of error events gathered and how to make sense of them, see the kernel administrator's guide at @url{https://www.kernel.org/doc/html/latest/admin-guide/ras.html}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33447 +#: guix-git/doc/guix.texi:33884 #, no-wrap msgid "{Scheme Variable} rasdaemon-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33450 +#: guix-git/doc/guix.texi:33887 msgid "Service type for the @command{rasdaemon} service. It accepts a @code{rasdaemon-configuration} object. Instantiating like" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33453 +#: guix-git/doc/guix.texi:33890 #, no-wrap msgid "(service rasdaemon-service-type)\n" msgstr "(service openssh-service-type)\n" #. type: defvr -#: guix-git/doc/guix.texi:33457 +#: guix-git/doc/guix.texi:33894 msgid "will load with a default configuration, which monitors all events and logs to syslogd." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33459 +#: guix-git/doc/guix.texi:33896 #, no-wrap msgid "{Data Type} rasdaemon-configuration" msgstr "{Data Type} pagekite-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33461 +#: guix-git/doc/guix.texi:33898 msgid "The data type representing the configuration of @command{rasdaemon}." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:33463 +#: guix-git/doc/guix.texi:33900 #, no-wrap msgid "@code{record?} (default: @code{#f})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:33468 +#: guix-git/doc/guix.texi:33905 msgid "A boolean indicating whether to record the events in an SQLite database. This provides a more structured access to the information contained in the log file. The database location is hard-coded to @file{/var/lib/rasdaemon/ras-mc_event.db}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33472 +#: guix-git/doc/guix.texi:33909 #, no-wrap msgid "zram" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33473 +#: guix-git/doc/guix.texi:33910 #, no-wrap msgid "compressed swap" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33474 +#: guix-git/doc/guix.texi:33911 #, no-wrap msgid "Compressed RAM-based block devices" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33475 +#: guix-git/doc/guix.texi:33912 #, no-wrap msgid "Zram Device Service" msgstr "Игровые службы" #. type: Plain text -#: guix-git/doc/guix.texi:33481 +#: guix-git/doc/guix.texi:33918 msgid "The Zram device service provides a compressed swap device in system memory. The Linux Kernel documentation has more information about @uref{https://www.kernel.org/doc/html/latest/admin-guide/blockdev/zram.html,zram} devices." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33482 +#: guix-git/doc/guix.texi:33919 #, no-wrap msgid "{Scheme Variable} zram-device-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: deffn -#: guix-git/doc/guix.texi:33486 +#: guix-git/doc/guix.texi:33923 msgid "This service creates the zram block device, formats it as swap and enables it as a swap device. The service's value is a @code{zram-device-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33487 +#: guix-git/doc/guix.texi:33924 #, no-wrap msgid "{Data Type} zram-device-configuration" msgstr "{Data Type} pagekite-configuration" #. type: deftp -#: guix-git/doc/guix.texi:33490 +#: guix-git/doc/guix.texi:33927 msgid "This is the data type representing the configuration for the zram-device service." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:33492 +#: guix-git/doc/guix.texi:33929 #, no-wrap msgid "@code{size} (default @code{\"1G\"})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:33496 +#: guix-git/doc/guix.texi:33933 msgid "This is the amount of space you wish to provide for the zram device. It accepts a string and can be a number of bytes or use a suffix, eg.: @code{\"512M\"} or @code{1024000}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33496 +#: guix-git/doc/guix.texi:33933 #, no-wrap msgid "@code{compression-algorithm} (default @code{'lzo})" msgstr "@code{compression-level} (default: @code{3})" #. type: table -#: guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:33937 msgid "This is the compression algorithm you wish to use. It is difficult to list all the possible compression options, but common ones supported by Guix's Linux Libre Kernel include @code{'lzo}, @code{'lz4} and @code{'zstd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:33937 #, no-wrap msgid "@code{memory-limit} (default @code{0})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:33507 +#: guix-git/doc/guix.texi:33944 msgid "This is the maximum amount of memory which the zram device can use. Setting it to '0' disables the limit. While it is generally expected that compression will be 2:1, it is possible that uncompressable data can be written to swap and this is a method to limit how much memory can be used. It accepts a string and can be a number of bytes or use a suffix, eg.: @code{\"2G\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33507 +#: guix-git/doc/guix.texi:33944 #, no-wrap msgid "@code{priority} (default @code{-1})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:33512 +#: guix-git/doc/guix.texi:33949 msgid "This is the priority of the swap device created from the zram device. @code{swapon} accepts values between -1 and 32767, with higher values indicating higher priority. Higher priority swap will generally be used first." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33520 +#: guix-git/doc/guix.texi:33957 #, no-wrap msgid "{Scheme Variable} hurd-console-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33522 +#: guix-git/doc/guix.texi:33959 msgid "This service starts the fancy @code{VGA} console client on the Hurd." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33524 +#: guix-git/doc/guix.texi:33961 msgid "The service's value is a @code{hurd-console-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33526 +#: guix-git/doc/guix.texi:33963 #, no-wrap msgid "{Data Type} hurd-console-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:33529 +#: guix-git/doc/guix.texi:33966 msgid "This is the data type representing the configuration for the hurd-console-service." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:33531 guix-git/doc/guix.texi:33547 +#: guix-git/doc/guix.texi:33968 guix-git/doc/guix.texi:33984 #, no-wrap msgid "@code{hurd} (default: @var{hurd})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:33533 guix-git/doc/guix.texi:33549 +#: guix-git/doc/guix.texi:33970 guix-git/doc/guix.texi:33986 msgid "The Hurd package to use." msgstr "Используемый пакет Hurd." #. type: defvr -#: guix-git/doc/guix.texi:33536 +#: guix-git/doc/guix.texi:33973 #, no-wrap msgid "{Scheme Variable} hurd-getty-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33538 +#: guix-git/doc/guix.texi:33975 msgid "This service starts a tty using the Hurd @code{getty} program." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33540 +#: guix-git/doc/guix.texi:33977 msgid "The service's value is a @code{hurd-getty-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33542 +#: guix-git/doc/guix.texi:33979 #, no-wrap msgid "{Data Type} hurd-getty-configuration" msgstr "{Тип данных} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:33545 +#: guix-git/doc/guix.texi:33982 msgid "This is the data type representing the configuration for the hurd-getty-service." msgstr "Управление конфигурацией операционной системы." #. type: table -#: guix-git/doc/guix.texi:33552 +#: guix-git/doc/guix.texi:33989 msgid "The name of the console this Getty runs on---e.g., @code{\"tty1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33553 +#: guix-git/doc/guix.texi:33990 #, no-wrap msgid "@code{baud-rate} (default: @code{38400})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:33555 +#: guix-git/doc/guix.texi:33992 msgid "An integer specifying the baud rate of the tty." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33562 +#: guix-git/doc/guix.texi:33999 #, no-wrap msgid "fingerprint" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33563 +#: guix-git/doc/guix.texi:34000 #, no-wrap msgid "Fingerprint Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33567 +#: guix-git/doc/guix.texi:34004 msgid "The @code{(gnu services authentication)} module provides a DBus service to read and identify fingerprints via a fingerprint sensor." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33568 +#: guix-git/doc/guix.texi:34005 #, no-wrap msgid "{Scheme Variable} fprintd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33571 +#: guix-git/doc/guix.texi:34008 msgid "The service type for @command{fprintd}, which provides the fingerprint reading capability." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33574 +#: guix-git/doc/guix.texi:34011 #, no-wrap msgid "(service fprintd-service-type)\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33577 +#: guix-git/doc/guix.texi:34014 #, no-wrap msgid "sysctl" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33578 +#: guix-git/doc/guix.texi:34015 #, no-wrap msgid "System Control Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33582 +#: guix-git/doc/guix.texi:34019 msgid "The @code{(gnu services sysctl)} provides a service to configure kernel parameters at boot." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33583 +#: guix-git/doc/guix.texi:34020 #, no-wrap msgid "{Scheme Variable} sysctl-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33587 +#: guix-git/doc/guix.texi:34024 msgid "The service type for @command{sysctl}, which modifies kernel parameters under @file{/proc/sys/}. To enable IPv4 forwarding, it can be instantiated as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33592 +#: guix-git/doc/guix.texi:34029 #, no-wrap msgid "" "(service sysctl-service-type\n" @@ -61249,12 +62200,12 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33599 +#: guix-git/doc/guix.texi:34036 msgid "Since @code{sysctl-service-type} is used in the default lists of services, @code{%base-services} and @code{%desktop-services}, you can use @code{modify-services} to change its configuration and add the kernel parameters that you want (@pxref{Service Reference, @code{modify-services}})." msgstr "Поскольку @code{sysctl-service-type} используется в списках служб по умолчанию, @code{%base-services} и @code{%desktop-services}, вы можете использовать @code{modify-services}, чтобы изменить его конфигурации и добить нужные параметры ядра (@pxref{Service Reference, @code{modify-services}})." #. type: lisp -#: guix-git/doc/guix.texi:33606 +#: guix-git/doc/guix.texi:34043 #, no-wrap msgid "" "(modify-services %base-services\n" @@ -61271,463 +62222,463 @@ msgstr "" " (create-database? #t))))))\n" #. type: deftp -#: guix-git/doc/guix.texi:33610 +#: guix-git/doc/guix.texi:34047 #, no-wrap msgid "{Data Type} sysctl-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33612 +#: guix-git/doc/guix.texi:34049 msgid "The data type representing the configuration of @command{sysctl}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33614 +#: guix-git/doc/guix.texi:34051 #, no-wrap msgid "@code{sysctl} (default: @code{(file-append procps \"/sbin/sysctl\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33616 +#: guix-git/doc/guix.texi:34053 msgid "The @command{sysctl} executable to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33617 +#: guix-git/doc/guix.texi:34054 #, no-wrap msgid "@code{settings} (default: @code{%default-sysctl-settings})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:33619 +#: guix-git/doc/guix.texi:34056 msgid "An association list specifies kernel parameters and their values." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33622 +#: guix-git/doc/guix.texi:34059 #, no-wrap msgid "{Scheme Variable} %default-sysctl-settings" msgstr "{Scheme Variable} ant-build-system" #. type: defvr -#: guix-git/doc/guix.texi:33625 +#: guix-git/doc/guix.texi:34062 msgid "An association list specifying the default @command{sysctl} parameters on Guix System." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33627 +#: guix-git/doc/guix.texi:34064 #, no-wrap msgid "pcscd" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33628 +#: guix-git/doc/guix.texi:34065 #, no-wrap msgid "PC/SC Smart Card Daemon Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33635 +#: guix-git/doc/guix.texi:34072 msgid "The @code{(gnu services security-token)} module provides the following service to run @command{pcscd}, the PC/SC Smart Card Daemon. @command{pcscd} is the daemon program for pcsc-lite and the MuscleCard framework. It is a resource manager that coordinates communications with smart card readers, smart cards and cryptographic tokens that are connected to the system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33636 +#: guix-git/doc/guix.texi:34073 #, no-wrap msgid "{Scheme Variable} pcscd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33640 +#: guix-git/doc/guix.texi:34077 msgid "Service type for the @command{pcscd} service. Its value must be a @code{pcscd-configuration} object. To run pcscd in the default configuration, instantiate it as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33643 +#: guix-git/doc/guix.texi:34080 #, no-wrap msgid "(service pcscd-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33646 +#: guix-git/doc/guix.texi:34083 #, no-wrap msgid "{Data Type} pcscd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33648 +#: guix-git/doc/guix.texi:34085 msgid "The data type representing the configuration of @command{pcscd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33650 +#: guix-git/doc/guix.texi:34087 #, no-wrap msgid "@code{pcsc-lite} (default: @code{pcsc-lite})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33652 +#: guix-git/doc/guix.texi:34089 msgid "The pcsc-lite package that provides pcscd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33652 +#: guix-git/doc/guix.texi:34089 #, no-wrap msgid "@code{usb-drivers} (default: @code{(list ccid)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33655 +#: guix-git/doc/guix.texi:34092 msgid "List of packages that provide USB drivers to pcscd. Drivers are expected to be under @file{pcsc/drivers} in the store directory of the package." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33658 +#: guix-git/doc/guix.texi:34095 #, no-wrap msgid "lirc" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33659 +#: guix-git/doc/guix.texi:34096 #, no-wrap msgid "Lirc Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33662 +#: guix-git/doc/guix.texi:34099 msgid "The @code{(gnu services lirc)} module provides the following service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33663 +#: guix-git/doc/guix.texi:34100 #, no-wrap msgid "{Scheme Procedure} lirc-service [#:lirc lirc] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33668 +#: guix-git/doc/guix.texi:34105 msgid "[#:device #f] [#:driver #f] [#:config-file #f] @ [#:extra-options '()] Return a service that runs @url{http://www.lirc.org,LIRC}, a daemon that decodes infrared signals from remote controls." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33672 +#: guix-git/doc/guix.texi:34109 msgid "Optionally, @var{device}, @var{driver} and @var{config-file} (configuration file name) may be specified. See @command{lircd} manual for details." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33675 +#: guix-git/doc/guix.texi:34112 msgid "Finally, @var{extra-options} is a list of additional command-line options passed to @command{lircd}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33677 +#: guix-git/doc/guix.texi:34114 #, no-wrap msgid "spice" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33678 +#: guix-git/doc/guix.texi:34115 #, no-wrap msgid "Spice Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33681 +#: guix-git/doc/guix.texi:34118 msgid "The @code{(gnu services spice)} module provides the following service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33682 +#: guix-git/doc/guix.texi:34119 #, no-wrap msgid "{Scheme Procedure} spice-vdagent-service [#:spice-vdagent]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33686 +#: guix-git/doc/guix.texi:34123 msgid "Returns a service that runs @url{https://www.spice-space.org,VDAGENT}, a daemon that enables sharing the clipboard with a vm and setting the guest display resolution when the graphical console window resizes." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33688 +#: guix-git/doc/guix.texi:34125 #, no-wrap msgid "inputattach" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33689 +#: guix-git/doc/guix.texi:34126 #, no-wrap msgid "inputattach Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33691 +#: guix-git/doc/guix.texi:34128 #, no-wrap msgid "tablet input, for Xorg" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33692 +#: guix-git/doc/guix.texi:34129 #, no-wrap msgid "touchscreen input, for Xorg" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33696 +#: guix-git/doc/guix.texi:34133 msgid "The @uref{https://linuxwacom.github.io/, inputattach} service allows you to use input devices such as Wacom tablets, touchscreens, or joysticks with the Xorg display server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33697 +#: guix-git/doc/guix.texi:34134 #, no-wrap msgid "{Scheme Variable} inputattach-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33700 +#: guix-git/doc/guix.texi:34137 msgid "Type of a service that runs @command{inputattach} on a device and dispatches events from it." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33702 +#: guix-git/doc/guix.texi:34139 #, no-wrap msgid "{Data Type} inputattach-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33704 +#: guix-git/doc/guix.texi:34141 #, no-wrap msgid "@code{device-type} (default: @code{\"wacom\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33707 +#: guix-git/doc/guix.texi:34144 msgid "The type of device to connect to. Run @command{inputattach --help}, from the @code{inputattach} package, to see the list of supported device types." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33708 +#: guix-git/doc/guix.texi:34145 #, no-wrap msgid "@code{device} (default: @code{\"/dev/ttyS0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33710 +#: guix-git/doc/guix.texi:34147 msgid "The device file to connect to the device." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33714 +#: guix-git/doc/guix.texi:34151 msgid "Baud rate to use for the serial connection. Should be a number or @code{#f}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33715 +#: guix-git/doc/guix.texi:34152 #, no-wrap msgid "@code{log-file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33717 +#: guix-git/doc/guix.texi:34154 msgid "If true, this must be the name of a file to log messages to." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33720 +#: guix-git/doc/guix.texi:34157 #, no-wrap msgid "Dictionary Service" msgstr "Создание служб" #. type: cindex -#: guix-git/doc/guix.texi:33721 +#: guix-git/doc/guix.texi:34158 #, no-wrap msgid "dictionary" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33723 +#: guix-git/doc/guix.texi:34160 msgid "The @code{(gnu services dict)} module provides the following service:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33724 +#: guix-git/doc/guix.texi:34161 #, no-wrap msgid "{Scheme Variable} dicod-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33727 +#: guix-git/doc/guix.texi:34164 msgid "This is the type of the service that runs the @command{dicod} daemon, an implementation of DICT server (@pxref{Dicod,,, dico, GNU Dico Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33729 +#: guix-git/doc/guix.texi:34166 #, no-wrap msgid "{Scheme Procedure} dicod-service [#:config (dicod-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33732 +#: guix-git/doc/guix.texi:34169 msgid "Return a service that runs the @command{dicod} daemon, an implementation of DICT server (@pxref{Dicod,,, dico, GNU Dico Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33736 +#: guix-git/doc/guix.texi:34173 msgid "The optional @var{config} argument specifies the configuration for @command{dicod}, which should be a @code{} object, by default it serves the GNU Collaborative International Dictionary of English." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33740 +#: guix-git/doc/guix.texi:34177 msgid "You can add @command{open localhost} to your @file{~/.dico} file to make @code{localhost} the default server for @command{dico} client (@pxref{Initialization File,,, dico, GNU Dico Manual})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33742 +#: guix-git/doc/guix.texi:34179 #, no-wrap msgid "{Data Type} dicod-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33744 +#: guix-git/doc/guix.texi:34181 msgid "Data type representing the configuration of dicod." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33746 +#: guix-git/doc/guix.texi:34183 #, no-wrap msgid "@code{dico} (default: @var{dico})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33748 +#: guix-git/doc/guix.texi:34185 msgid "Package object of the GNU Dico dictionary server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33749 +#: guix-git/doc/guix.texi:34186 #, no-wrap msgid "@code{interfaces} (default: @var{'(\"localhost\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33753 +#: guix-git/doc/guix.texi:34190 msgid "This is the list of IP addresses and ports and possibly socket file names to listen to (@pxref{Server Settings, @code{listen} directive,, dico, GNU Dico Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33754 +#: guix-git/doc/guix.texi:34191 #, no-wrap msgid "@code{handlers} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33756 +#: guix-git/doc/guix.texi:34193 msgid "List of @code{} objects denoting handlers (module instances)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33757 +#: guix-git/doc/guix.texi:34194 #, no-wrap msgid "@code{databases} (default: @var{(list %dicod-database:gcide)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33759 +#: guix-git/doc/guix.texi:34196 msgid "List of @code{} objects denoting dictionaries to be served." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33762 +#: guix-git/doc/guix.texi:34199 #, no-wrap msgid "{Data Type} dicod-handler" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33764 +#: guix-git/doc/guix.texi:34201 msgid "Data type representing a dictionary handler (module instance)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33768 +#: guix-git/doc/guix.texi:34205 msgid "Name of the handler (module instance)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33769 +#: guix-git/doc/guix.texi:34206 #, no-wrap msgid "@code{module} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33773 +#: guix-git/doc/guix.texi:34210 msgid "Name of the dicod module of the handler (instance). If it is @code{#f}, the module has the same name as the handler. (@pxref{Modules,,, dico, GNU Dico Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33776 +#: guix-git/doc/guix.texi:34213 msgid "List of strings or gexps representing the arguments for the module handler" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33779 +#: guix-git/doc/guix.texi:34216 #, no-wrap msgid "{Data Type} dicod-database" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33781 +#: guix-git/doc/guix.texi:34218 msgid "Data type representing a dictionary database." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33785 +#: guix-git/doc/guix.texi:34222 msgid "Name of the database, will be used in DICT commands." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33786 +#: guix-git/doc/guix.texi:34223 #, no-wrap msgid "handler" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33789 +#: guix-git/doc/guix.texi:34226 msgid "Name of the dicod handler (module instance) used by this database (@pxref{Handlers,,, dico, GNU Dico Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33790 +#: guix-git/doc/guix.texi:34227 #, no-wrap msgid "@code{complex?} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33793 +#: guix-git/doc/guix.texi:34230 msgid "Whether the database configuration complex. The complex configuration will need a corresponding @code{} object, otherwise not." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33797 +#: guix-git/doc/guix.texi:34234 msgid "List of strings or gexps representing the arguments for the database (@pxref{Databases,,, dico, GNU Dico Manual})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33800 +#: guix-git/doc/guix.texi:34237 #, no-wrap msgid "{Scheme Variable} %dicod-database:gcide" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33803 +#: guix-git/doc/guix.texi:34240 msgid "A @code{} object serving the GNU Collaborative International Dictionary of English using the @code{gcide} package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33806 +#: guix-git/doc/guix.texi:34243 msgid "The following is an example @code{dicod-service} configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33821 +#: guix-git/doc/guix.texi:34258 #, no-wrap msgid "" "(dicod-service #:config\n" @@ -61746,144 +62697,144 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33823 +#: guix-git/doc/guix.texi:34260 #, no-wrap msgid "Docker" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33824 +#: guix-git/doc/guix.texi:34261 #, no-wrap msgid "Docker Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33827 +#: guix-git/doc/guix.texi:34264 msgid "The @code{(gnu services docker)} module provides the following services." msgstr "Модуль @code{(gnu services docker)} предоставляет следующие сервисы." #. type: defvr -#: guix-git/doc/guix.texi:33828 +#: guix-git/doc/guix.texi:34265 #, no-wrap msgid "{Scheme Variable} docker-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33833 +#: guix-git/doc/guix.texi:34270 msgid "This is the type of the service that runs @url{https://www.docker.com,Docker}, a daemon that can execute application bundles (sometimes referred to as ``containers'') in isolated environments." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33836 +#: guix-git/doc/guix.texi:34273 #, no-wrap msgid "{Data Type} docker-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33838 +#: guix-git/doc/guix.texi:34275 msgid "This is the data type representing the configuration of Docker and Containerd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33841 +#: guix-git/doc/guix.texi:34278 #, fuzzy, no-wrap #| msgid "@code{package} (default: @code{docker-cli})" msgid "@code{docker} (default: @code{docker})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:33843 +#: guix-git/doc/guix.texi:34280 msgid "The Docker daemon package to use." msgstr "Используемый пакет Docker демона." #. type: item -#: guix-git/doc/guix.texi:33844 +#: guix-git/doc/guix.texi:34281 #, fuzzy, no-wrap #| msgid "@code{package} (default: @code{docker-cli})" msgid "@code{docker-cli} (default: @code{docker-cli})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:33846 +#: guix-git/doc/guix.texi:34283 msgid "The Docker client package to use." msgstr "Используемый Docker клиент." #. type: item -#: guix-git/doc/guix.texi:33847 +#: guix-git/doc/guix.texi:34284 #, no-wrap msgid "@code{containerd} (default: @var{containerd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33849 +#: guix-git/doc/guix.texi:34286 msgid "The Containerd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33850 +#: guix-git/doc/guix.texi:34287 #, no-wrap msgid "@code{proxy} (default @var{docker-libnetwork-cmd-proxy})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:33852 +#: guix-git/doc/guix.texi:34289 msgid "The Docker user-land networking proxy package to use." msgstr "Используемый пользователей сетевой прокси-пакет Docker." #. type: item -#: guix-git/doc/guix.texi:33853 +#: guix-git/doc/guix.texi:34290 #, no-wrap msgid "@code{enable-proxy?} (default @code{#t})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:33855 +#: guix-git/doc/guix.texi:34292 msgid "Enable or disable the use of the Docker user-land networking proxy." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33856 +#: guix-git/doc/guix.texi:34293 #, no-wrap msgid "@code{debug?} (default @code{#f})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:33858 +#: guix-git/doc/guix.texi:34295 msgid "Enable or disable debug output." msgstr "Как включить или отключить подстановки." #. type: item -#: guix-git/doc/guix.texi:33859 +#: guix-git/doc/guix.texi:34296 #, no-wrap msgid "@code{enable-iptables?} (default @code{#t})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:33861 +#: guix-git/doc/guix.texi:34298 msgid "Enable or disable the addition of iptables rules." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33862 +#: guix-git/doc/guix.texi:34299 #, fuzzy, no-wrap #| msgid "@code{extra-environment} (default: @code{#~'()})" msgid "@code{environment-variables} (default: @code{()})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:33864 +#: guix-git/doc/guix.texi:34301 #, fuzzy #| msgid "List of environment variables passed to the @command{mysqld} process." msgid "List of environment variables to set for @command{dockerd}." msgstr "Список переменных среды, которые необходимо определить." #. type: table -#: guix-git/doc/guix.texi:33867 +#: guix-git/doc/guix.texi:34304 msgid "This must be a list of strings where each string has the form @samp{@var{key}=@var{value}} as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33871 +#: guix-git/doc/guix.texi:34308 #, no-wrap msgid "" "(list \"LANGUAGE=eo:ca:eu\"\n" @@ -61891,196 +62842,196 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33876 +#: guix-git/doc/guix.texi:34313 #, no-wrap msgid "Singularity, container service" msgstr "целостность, склада" #. type: defvr -#: guix-git/doc/guix.texi:33877 +#: guix-git/doc/guix.texi:34314 #, no-wrap msgid "{Scheme Variable} singularity-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33882 +#: guix-git/doc/guix.texi:34319 msgid "This is the type of the service that allows you to run @url{https://www.sylabs.io/singularity/, Singularity}, a Docker-style tool to create and run application bundles (aka. ``containers''). The value for this service is the Singularity package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33886 +#: guix-git/doc/guix.texi:34323 msgid "The service does not install a daemon; instead, it installs helper programs as setuid-root (@pxref{Setuid Programs}) such that unprivileged users can invoke @command{singularity run} and similar commands." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33888 +#: guix-git/doc/guix.texi:34325 #, no-wrap msgid "Audit" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33889 +#: guix-git/doc/guix.texi:34326 #, no-wrap msgid "Auditd Service" msgstr "Сервисы аудио" #. type: Plain text -#: guix-git/doc/guix.texi:33892 +#: guix-git/doc/guix.texi:34329 msgid "The @code{(gnu services auditd)} module provides the following service." msgstr "Модуль @code{(gnu services auditd)} предоставляет следующие сервисы." #. type: defvr -#: guix-git/doc/guix.texi:33893 +#: guix-git/doc/guix.texi:34330 #, no-wrap msgid "{Scheme Variable} auditd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33898 +#: guix-git/doc/guix.texi:34335 msgid "This is the type of the service that runs @url{https://people.redhat.com/sgrubb/audit/,auditd}, a daemon that tracks security-relevant information on your system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33900 +#: guix-git/doc/guix.texi:34337 msgid "Examples of things that can be tracked:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33904 +#: guix-git/doc/guix.texi:34341 msgid "File accesses" msgstr "Файловые системы" #. type: enumerate -#: guix-git/doc/guix.texi:33906 +#: guix-git/doc/guix.texi:34343 msgid "System calls" msgstr "Установка системы" #. type: enumerate -#: guix-git/doc/guix.texi:33908 +#: guix-git/doc/guix.texi:34345 msgid "Invoked commands" msgstr "Вызов @command{guix gc}" #. type: enumerate -#: guix-git/doc/guix.texi:33910 +#: guix-git/doc/guix.texi:34347 msgid "Failed login attempts" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33912 +#: guix-git/doc/guix.texi:34349 msgid "Firewall filtering" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33914 +#: guix-git/doc/guix.texi:34351 msgid "Network access" msgstr "Сервисы сети" #. type: defvr -#: guix-git/doc/guix.texi:33925 +#: guix-git/doc/guix.texi:34362 msgid "@command{auditctl} from the @code{audit} package can be used in order to add or remove events to be tracked (until the next reboot). In order to permanently track events, put the command line arguments of auditctl into a file called @code{audit.rules} in the configuration directory (see below). @command{aureport} from the @code{audit} package can be used in order to view a report of all recorded events. The audit daemon by default logs into the file @file{/var/log/audit.log}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33928 +#: guix-git/doc/guix.texi:34365 #, no-wrap msgid "{Data Type} auditd-configuration" msgstr "{Тип данных} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:33930 +#: guix-git/doc/guix.texi:34367 msgid "This is the data type representing the configuration of auditd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33933 +#: guix-git/doc/guix.texi:34370 #, no-wrap msgid "@code{audit} (default: @code{audit})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:33935 +#: guix-git/doc/guix.texi:34372 msgid "The audit package to use." msgstr "Пакет аудита для использования." #. type: item -#: guix-git/doc/guix.texi:33936 +#: guix-git/doc/guix.texi:34373 #, no-wrap msgid "@code{configuration-directory} (default: @code{%default-auditd-configuration-directory})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:33940 +#: guix-git/doc/guix.texi:34377 msgid "The directory containing the configuration file for the audit package, which must be named @code{auditd.conf}, and optionally some audit rules to instantiate on startup." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33944 +#: guix-git/doc/guix.texi:34381 #, no-wrap msgid "rshiny" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33945 +#: guix-git/doc/guix.texi:34382 #, no-wrap msgid "R-Shiny service" msgstr "Сервисы DNS" #. type: Plain text -#: guix-git/doc/guix.texi:33948 +#: guix-git/doc/guix.texi:34385 msgid "The @code{(gnu services science)} module provides the following service." msgstr "Модуль @code{(gnu services science)} предоставляет следующие сервис." #. type: defvr -#: guix-git/doc/guix.texi:33949 +#: guix-git/doc/guix.texi:34386 #, no-wrap msgid "{Scheme Variable} rshiny-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:33954 +#: guix-git/doc/guix.texi:34391 msgid "This is a type of service which is used to run a webapp created with @code{r-shiny}. This service sets the @env{R_LIBS_USER} environment variable and runs the provided script to call @code{runApp}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33955 +#: guix-git/doc/guix.texi:34392 #, no-wrap msgid "{Data Type} rshiny-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:33957 +#: guix-git/doc/guix.texi:34394 msgid "This is the data type representing the configuration of rshiny." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:33960 +#: guix-git/doc/guix.texi:34397 #, no-wrap msgid "@code{package} (default: @code{r-shiny})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:33962 +#: guix-git/doc/guix.texi:34399 msgid "The package to use." msgstr "Пакет для использования." #. type: item -#: guix-git/doc/guix.texi:33963 +#: guix-git/doc/guix.texi:34400 #, no-wrap msgid "@code{binary} (defaunlt @code{\"rshiny\"})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:33966 +#: guix-git/doc/guix.texi:34403 msgid "The name of the binary or shell script located at @code{package/bin/} to run when the service is run." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33968 +#: guix-git/doc/guix.texi:34405 msgid "The common way to create this file is as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33985 +#: guix-git/doc/guix.texi:34422 #, no-wrap msgid "" "@dots{}\n" @@ -62101,35 +63052,35 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33991 +#: guix-git/doc/guix.texi:34428 #, no-wrap msgid "Nix" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33992 +#: guix-git/doc/guix.texi:34429 #, no-wrap msgid "Nix service" msgstr "Сервисы DNS" #. type: Plain text -#: guix-git/doc/guix.texi:33995 +#: guix-git/doc/guix.texi:34432 msgid "The @code{(gnu services nix)} module provides the following service." msgstr "Модуль @code{(gnu services nix)} предоставляет следующий сервис." #. type: defvr -#: guix-git/doc/guix.texi:33996 +#: guix-git/doc/guix.texi:34433 #, no-wrap msgid "{Scheme Variable} nix-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34001 +#: guix-git/doc/guix.texi:34438 msgid "This is the type of the service that runs build daemon of the @url{https://nixos.org/nix/, Nix} package manager. Here is an example showing how to use it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34006 +#: guix-git/doc/guix.texi:34443 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -62139,7 +63090,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34011 +#: guix-git/doc/guix.texi:34448 #, no-wrap msgid "" "(operating-system\n" @@ -62150,7 +63101,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34014 +#: guix-git/doc/guix.texi:34451 #, no-wrap msgid "" " (services (append (list (service nix-service-type))\n" @@ -62158,29 +63109,29 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34017 +#: guix-git/doc/guix.texi:34454 msgid "After @command{guix system reconfigure} configure Nix for your user:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34019 +#: guix-git/doc/guix.texi:34456 #, no-wrap msgid "Add a Nix channel and update it. See" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:34021 +#: guix-git/doc/guix.texi:34458 msgid "@url{https://nixos.org/nix/manual/, Nix Package Manager Guide}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34022 +#: guix-git/doc/guix.texi:34459 #, no-wrap msgid "Create a symlink to your profile and activate Nix profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34028 +#: guix-git/doc/guix.texi:34465 #, no-wrap msgid "" "$ ln -s \"/nix/var/nix/profiles/per-user/$USER/profile\" ~/.nix-profile\n" @@ -62188,77 +63139,77 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34032 +#: guix-git/doc/guix.texi:34469 #, no-wrap msgid "{Data Type} nix-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:34034 +#: guix-git/doc/guix.texi:34471 msgid "This data type represents the configuration of the Nix daemon." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:34036 +#: guix-git/doc/guix.texi:34473 #, no-wrap msgid "@code{nix} (default: @code{nix})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:34038 +#: guix-git/doc/guix.texi:34475 msgid "The Nix package to use." msgstr "Используемый пакет Nix." #. type: item -#: guix-git/doc/guix.texi:34039 +#: guix-git/doc/guix.texi:34476 #, no-wrap msgid "@code{sandbox} (default: @code{#t})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:34041 +#: guix-git/doc/guix.texi:34478 msgid "Specifies whether builds are sandboxed by default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34042 +#: guix-git/doc/guix.texi:34479 #, no-wrap msgid "@code{build-sandbox-items} (default: @code{'()})" msgstr "@code{inputs} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:34045 +#: guix-git/doc/guix.texi:34482 msgid "This is a list of strings or objects appended to the @code{build-sandbox-items} field of the configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34053 +#: guix-git/doc/guix.texi:34490 msgid "Extra command line options for @code{nix-service-type}." msgstr "Дополнительные параметры командной строки для @code{nix-service-type}." #. type: cindex -#: guix-git/doc/guix.texi:34059 +#: guix-git/doc/guix.texi:34496 #, no-wrap msgid "setuid programs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34069 +#: guix-git/doc/guix.texi:34506 msgid "Some programs need to run with ``root'' privileges, even when they are launched by unprivileged users. A notorious example is the @command{passwd} program, which users can run to change their password, and which needs to access the @file{/etc/passwd} and @file{/etc/shadow} files---something normally restricted to root, for obvious security reasons. To address that, these executables are @dfn{setuid-root}, meaning that they always run with root privileges (@pxref{How Change Persona,,, libc, The GNU C Library Reference Manual}, for more info about the setuid mechanism)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34076 +#: guix-git/doc/guix.texi:34513 msgid "The store itself @emph{cannot} contain setuid programs: that would be a security issue since any user on the system can write derivations that populate the store (@pxref{The Store}). Thus, a different mechanism is used: instead of changing the setuid bit directly on files that are in the store, we let the system administrator @emph{declare} which programs should be setuid root." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34083 +#: guix-git/doc/guix.texi:34520 msgid "The @code{setuid-programs} field of an @code{operating-system} declaration contains a list of @code{} denoting the names of programs to have a setuid or setgid bit set (@pxref{Using the Configuration System}). For instance, the @command{mount.nfs} program, which is part of the nfs-utils package, with a setuid root can be designated like this:" msgstr "" -#. type: example -#: guix-git/doc/guix.texi:34087 +#. type: lisp +#: guix-git/doc/guix.texi:34524 #, no-wrap msgid "" "(setuid-program\n" @@ -62266,170 +63217,172 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34092 +#: guix-git/doc/guix.texi:34529 msgid "And then, to make @command{mount.nfs} setuid on your system, add the previous example to your operating system declaration by appending it to @code{%setuid-programs} like this:" msgstr "" -#. type: example -#: guix-git/doc/guix.texi:34098 +#. type: lisp +#: guix-git/doc/guix.texi:34537 #, no-wrap msgid "" -"(setuid-programs\n" -" (append (list (setuid-program\n" -" (program (file-append nfs-utils \"/sbin/mount.nfs\"))))\n" -" %setuid-programs))\n" +"(operating-system\n" +" ;; Some fields omitted...\n" +" (setuid-programs\n" +" (append (list (setuid-program\n" +" (program (file-append nfs-utils \"/sbin/mount.nfs\")))\n" +" %setuid-programs))))\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34100 +#: guix-git/doc/guix.texi:34539 #, fuzzy, no-wrap #| msgid "{Data Type} ganeti-os" msgid "{Data Type} setuid-program" msgstr "{Тип данных} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:34102 +#: guix-git/doc/guix.texi:34541 #, fuzzy #| msgid "This data type represents the configuration of the Nix daemon." msgid "This data type represents a program with a setuid or setgid bit set." msgstr "Управление конфигурацией операционной системы." #. type: code{#1} -#: guix-git/doc/guix.texi:34104 +#: guix-git/doc/guix.texi:34543 #, no-wrap msgid "program" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34106 +#: guix-git/doc/guix.texi:34545 msgid "A file-like object having its setuid and/or setgid bit set." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34107 +#: guix-git/doc/guix.texi:34546 #, fuzzy, no-wrap #| msgid "@code{ssl?} (default: @code{#t})" msgid "@code{setuid?} (default: @code{#t})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:34109 +#: guix-git/doc/guix.texi:34548 #, fuzzy #| msgid "Whether to use a snippet, or a build phase." msgid "Whether to set user setuid bit." msgstr "Где использовать сниппет, а где фазу сборки." #. type: item -#: guix-git/doc/guix.texi:34110 +#: guix-git/doc/guix.texi:34549 #, fuzzy, no-wrap #| msgid "@code{silent?} (default: @code{#f})" msgid "@code{setgid?} (default: @code{#f})" msgstr "@code{snippet} (по умолчанию: @code{#f})" #. type: table -#: guix-git/doc/guix.texi:34112 +#: guix-git/doc/guix.texi:34551 msgid "Whether to set group setgid bit." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34113 +#: guix-git/doc/guix.texi:34552 #, fuzzy, no-wrap msgid "@code{user} (default: @code{0})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:34116 +#: guix-git/doc/guix.texi:34555 msgid "UID (integer) or user name (string) for the user owner of the program, defaults to root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34117 +#: guix-git/doc/guix.texi:34556 #, fuzzy, no-wrap #| msgid "@code{group} (default: @code{\"agate\"})" msgid "@code{group} (default: @code{0})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:34120 +#: guix-git/doc/guix.texi:34559 msgid "GID (integer) goup name (string) for the group owner of the program, defaults to root." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34126 +#: guix-git/doc/guix.texi:34565 msgid "A default set of setuid programs is defined by the @code{%setuid-programs} variable of the @code{(gnu system)} module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34127 +#: guix-git/doc/guix.texi:34566 #, no-wrap msgid "{Scheme Variable} %setuid-programs" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34130 +#: guix-git/doc/guix.texi:34569 msgid "A list of @code{} denoting common programs that are setuid-root." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34133 +#: guix-git/doc/guix.texi:34572 msgid "The list includes commands such as @command{passwd}, @command{ping}, @command{su}, and @command{sudo}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34139 +#: guix-git/doc/guix.texi:34578 msgid "Under the hood, the actual setuid programs are created in the @file{/run/setuid-programs} directory at system activation time. The files in this directory refer to the ``real'' binaries, which are in the store." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34143 +#: guix-git/doc/guix.texi:34582 #, no-wrap msgid "HTTPS, certificates" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34144 +#: guix-git/doc/guix.texi:34583 #, no-wrap msgid "X.509 certificates" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34145 +#: guix-git/doc/guix.texi:34584 #, no-wrap msgid "TLS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34152 +#: guix-git/doc/guix.texi:34591 msgid "Web servers available over HTTPS (that is, HTTP over the transport-layer security mechanism, TLS) send client programs an @dfn{X.509 certificate} that the client can then use to @emph{authenticate} the server. To do that, clients verify that the server's certificate is signed by a so-called @dfn{certificate authority} (CA). But to verify the CA's signature, clients must have first acquired the CA's certificate." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34156 +#: guix-git/doc/guix.texi:34595 msgid "Web browsers such as GNU@tie{}IceCat include their own set of CA certificates, such that they are able to verify CA signatures out-of-the-box." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34160 +#: guix-git/doc/guix.texi:34599 msgid "However, most other programs that can talk HTTPS---@command{wget}, @command{git}, @command{w3m}, etc.---need to be told where CA certificates can be found." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34167 +#: guix-git/doc/guix.texi:34606 msgid "In Guix, this is done by adding a package that provides certificates to the @code{packages} field of the @code{operating-system} declaration (@pxref{operating-system Reference}). Guix includes one such package, @code{nss-certs}, which is a set of CA certificates provided as part of Mozilla's Network Security Services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34172 +#: guix-git/doc/guix.texi:34611 msgid "Note that it is @emph{not} part of @code{%base-packages}, so you need to explicitly add it. The @file{/etc/ssl/certs} directory, which is where most applications and libraries look for certificates by default, points to the certificates installed globally." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34182 +#: guix-git/doc/guix.texi:34621 msgid "Unprivileged users, including users of Guix on a foreign distro, can also install their own certificate package in their profile. A number of environment variables need to be defined so that applications and libraries know where to find them. Namely, the OpenSSL library honors the @env{SSL_CERT_DIR} and @env{SSL_CERT_FILE} variables. Some applications add their own environment variables; for instance, the Git version control system honors the certificate bundle pointed to by the @env{GIT_SSL_CAINFO} environment variable. Thus, you would typically run something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34188 +#: guix-git/doc/guix.texi:34627 #, no-wrap msgid "" "guix install nss-certs\n" @@ -62439,12 +63392,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34193 +#: guix-git/doc/guix.texi:34632 msgid "As another example, R requires the @env{CURL_CA_BUNDLE} environment variable to point to a certificate bundle, so you would have to run something like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34197 +#: guix-git/doc/guix.texi:34636 #, no-wrap msgid "" "guix install nss-certs\n" @@ -62454,51 +63407,51 @@ msgstr "" "$ export GUIX_LOCPATH=$HOME/.guix-profile/lib/locale\n" #. type: Plain text -#: guix-git/doc/guix.texi:34201 +#: guix-git/doc/guix.texi:34640 msgid "For other applications you may want to look up the required environment variable in the relevant documentation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34206 +#: guix-git/doc/guix.texi:34645 #, no-wrap msgid "name service switch" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34207 +#: guix-git/doc/guix.texi:34646 #, no-wrap msgid "NSS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34216 +#: guix-git/doc/guix.texi:34655 msgid "The @code{(gnu system nss)} module provides bindings to the configuration file of the libc @dfn{name service switch} or @dfn{NSS} (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference Manual}). In a nutshell, the NSS is a mechanism that allows libc to be extended with new ``name'' lookup methods for system databases, which includes host names, service names, user accounts, and more (@pxref{Name Service Switch, System Databases and Name Service Switch,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34223 +#: guix-git/doc/guix.texi:34662 msgid "The NSS configuration specifies, for each system database, which lookup method is to be used, and how the various methods are chained together---for instance, under which circumstances NSS should try the next method in the list. The NSS configuration is given in the @code{name-service-switch} field of @code{operating-system} declarations (@pxref{operating-system Reference, @code{name-service-switch}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34224 +#: guix-git/doc/guix.texi:34663 #, no-wrap msgid "nss-mdns" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34225 +#: guix-git/doc/guix.texi:34664 #, no-wrap msgid ".local, host name lookup" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34230 +#: guix-git/doc/guix.texi:34669 msgid "As an example, the declaration below configures the NSS to use the @uref{https://0pointer.de/lennart/projects/nss-mdns/, @code{nss-mdns} back-end}, which supports host name lookups over multicast DNS (mDNS) for host names ending in @code{.local}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34234 +#: guix-git/doc/guix.texi:34673 #, no-wrap msgid "" "(name-service-switch\n" @@ -62507,7 +63460,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34239 +#: guix-git/doc/guix.texi:34678 #, no-wrap msgid "" " ;; If the above did not succeed, try\n" @@ -62518,7 +63471,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34245 +#: guix-git/doc/guix.texi:34684 #, no-wrap msgid "" " ;; 'mdns_minimal' is authoritative for\n" @@ -62530,7 +63483,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34249 +#: guix-git/doc/guix.texi:34688 #, no-wrap msgid "" " ;; Then fall back to DNS.\n" @@ -62540,7 +63493,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34253 +#: guix-git/doc/guix.texi:34692 #, no-wrap msgid "" " ;; Finally, try with the \"full\" 'mdns'.\n" @@ -62549,151 +63502,151 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34258 +#: guix-git/doc/guix.texi:34697 msgid "Do not worry: the @code{%mdns-host-lookup-nss} variable (see below) contains this configuration, so you will not have to type it if all you want is to have @code{.local} host lookup working." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34266 +#: guix-git/doc/guix.texi:34705 msgid "Note that, in this case, in addition to setting the @code{name-service-switch} of the @code{operating-system} declaration, you also need to use @code{avahi-service-type} (@pxref{Networking Services, @code{avahi-service-type}}), or @code{%desktop-services}, which includes it (@pxref{Desktop Services}). Doing this makes @code{nss-mdns} accessible to the name service cache daemon (@pxref{Base Services, @code{nscd-service}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34269 +#: guix-git/doc/guix.texi:34708 msgid "For convenience, the following variables provide typical NSS configurations." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34270 +#: guix-git/doc/guix.texi:34709 #, no-wrap msgid "{Scheme Variable} %default-nss" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34273 +#: guix-git/doc/guix.texi:34712 msgid "This is the default name service switch configuration, a @code{name-service-switch} object." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34275 +#: guix-git/doc/guix.texi:34714 #, no-wrap msgid "{Scheme Variable} %mdns-host-lookup-nss" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34278 +#: guix-git/doc/guix.texi:34717 msgid "This is the name service switch configuration with support for host name lookup over multicast DNS (mDNS) for host names ending in @code{.local}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34288 +#: guix-git/doc/guix.texi:34727 msgid "The reference for name service switch configuration is given below. It is a direct mapping of the configuration file format of the C library , so please refer to the C library manual for more information (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference Manual}). Compared to the configuration file format of libc NSS, it has the advantage not only of adding this warm parenthetic feel that we like, but also static checks: you will know about syntax errors and typos as soon as you run @command{guix system}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34289 +#: guix-git/doc/guix.texi:34728 #, no-wrap msgid "{Data Type} name-service-switch" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34294 +#: guix-git/doc/guix.texi:34733 msgid "This is the data type representation the configuration of libc's name service switch (NSS). Each field below represents one of the supported system databases." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34296 +#: guix-git/doc/guix.texi:34735 #, no-wrap msgid "aliases" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34297 +#: guix-git/doc/guix.texi:34736 #, no-wrap msgid "ethers" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34299 +#: guix-git/doc/guix.texi:34738 #, no-wrap msgid "gshadow" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34300 +#: guix-git/doc/guix.texi:34739 #, no-wrap msgid "hosts" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34301 +#: guix-git/doc/guix.texi:34740 #, no-wrap msgid "initgroups" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34302 +#: guix-git/doc/guix.texi:34741 #, no-wrap msgid "netgroup" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34303 +#: guix-git/doc/guix.texi:34742 #, no-wrap msgid "networks" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34306 +#: guix-git/doc/guix.texi:34745 #, no-wrap msgid "rpc" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34308 +#: guix-git/doc/guix.texi:34747 #, no-wrap msgid "shadow" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34311 +#: guix-git/doc/guix.texi:34750 msgid "The system databases handled by the NSS@. Each of these fields must be a list of @code{} objects (see below)." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34314 +#: guix-git/doc/guix.texi:34753 #, no-wrap msgid "{Data Type} name-service" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34318 +#: guix-git/doc/guix.texi:34757 msgid "This is the data type representing an actual name service and the associated lookup action." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34323 +#: guix-git/doc/guix.texi:34762 msgid "A string denoting the name service (@pxref{Services in the NSS configuration,,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34328 +#: guix-git/doc/guix.texi:34767 msgid "Note that name services listed here must be visible to nscd. This is achieved by passing the @code{#:name-services} argument to @code{nscd-service} the list of packages providing the needed name services (@pxref{Base Services, @code{nscd-service}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34329 +#: guix-git/doc/guix.texi:34768 #, no-wrap msgid "reaction" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34333 +#: guix-git/doc/guix.texi:34772 msgid "An action specified using the @code{lookup-specification} macro (@pxref{Actions in the NSS configuration,,, libc, The GNU C Library Reference Manual}). For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34337 +#: guix-git/doc/guix.texi:34776 #, no-wrap msgid "" "(lookup-specification (unavailable => continue)\n" @@ -62701,17 +63654,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34351 +#: guix-git/doc/guix.texi:34790 msgid "For bootstrapping purposes, the Linux-Libre kernel is passed an @dfn{initial RAM disk}, or @dfn{initrd}. An initrd contains a temporary root file system as well as an initialization script. The latter is responsible for mounting the real root file system, and for loading any kernel modules that may be needed to achieve that." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34360 +#: guix-git/doc/guix.texi:34799 msgid "The @code{initrd-modules} field of an @code{operating-system} declaration allows you to specify Linux-libre kernel modules that must be available in the initrd. In particular, this is where you would list modules needed to actually drive the hard disk where your root partition is---although the default value of @code{initrd-modules} should cover most use cases. For example, assuming you need the @code{megaraid_sas} module in addition to the default modules to be able to access your root file system, you would write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34365 +#: guix-git/doc/guix.texi:34804 #, no-wrap msgid "" "(operating-system\n" @@ -62720,28 +63673,28 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34367 +#: guix-git/doc/guix.texi:34806 #, no-wrap msgid "{Scheme Variable} %base-initrd-modules" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34369 +#: guix-git/doc/guix.texi:34808 msgid "This is the list of kernel modules included in the initrd by default." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34377 +#: guix-git/doc/guix.texi:34816 msgid "Furthermore, if you need lower-level customization, the @code{initrd} field of an @code{operating-system} declaration allows you to specify which initrd you would like to use. The @code{(gnu system linux-initrd)} module provides three ways to build an initrd: the high-level @code{base-initrd} procedure and the low-level @code{raw-initrd} and @code{expression->initrd} procedures." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34382 +#: guix-git/doc/guix.texi:34821 msgid "The @code{base-initrd} procedure is intended to cover most common uses. For example, if you want to add a bunch of kernel modules to be loaded at boot time, you can define the @code{initrd} field of the operating system declaration like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34390 +#: guix-git/doc/guix.texi:34829 #, no-wrap msgid "" "(initrd (lambda (file-systems . rest)\n" @@ -62753,449 +63706,449 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34395 +#: guix-git/doc/guix.texi:34834 msgid "The @code{base-initrd} procedure also handles common use cases that involves using the system as a QEMU guest, or as a ``live'' system with volatile root file system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34402 +#: guix-git/doc/guix.texi:34841 msgid "The @code{base-initrd} procedure is built from @code{raw-initrd} procedure. Unlike @code{base-initrd}, @code{raw-initrd} doesn't do anything high-level, such as trying to guess which kernel modules and packages should be included to the initrd. An example use of @code{raw-initrd} is when a user has a custom Linux kernel configuration and default kernel modules included by @code{base-initrd} are not available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34407 +#: guix-git/doc/guix.texi:34846 msgid "The initial RAM disk produced by @code{base-initrd} or @code{raw-initrd} honors several options passed on the Linux kernel command line (that is, arguments passed @i{via} the @code{linux} command of GRUB, or the @code{-append} option of QEMU), notably:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34409 +#: guix-git/doc/guix.texi:34848 #, no-wrap msgid "--load=@var{boot}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34412 +#: guix-git/doc/guix.texi:34851 msgid "Tell the initial RAM disk to load @var{boot}, a file containing a Scheme program, once it has mounted the root file system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34416 +#: guix-git/doc/guix.texi:34855 msgid "Guix uses this option to yield control to a boot program that runs the service activation programs and then spawns the GNU@tie{}Shepherd, the initialization system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34417 +#: guix-git/doc/guix.texi:34856 #, no-wrap msgid "--root=@var{root}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34422 +#: guix-git/doc/guix.texi:34861 msgid "Mount @var{root} as the root file system. @var{root} can be a device name like @code{/dev/sda1}, a file system label, or a file system UUID. When unspecified, the device name from the root file system of the operating system declaration is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34423 +#: guix-git/doc/guix.texi:34862 #, fuzzy, no-wrap #| msgid "--diff=@var{mode}" msgid "fsck.mode=@var{mode}" msgstr "--load=@var{file}" #. type: table -#: guix-git/doc/guix.texi:34429 +#: guix-git/doc/guix.texi:34868 msgid "Whether to check the @var{root} file system for errors before mounting it. @var{mode} is one of @code{skip} (never check), @code{force} (always check), or @code{auto} to respect the root file-system object's 'check?' setting (@pxref{File Systems}) and run a full scan only if the file system was not cleanly shut down." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34432 +#: guix-git/doc/guix.texi:34871 msgid "@code{auto} is the default if this option is not present or if @var{mode} is not one of the above." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34433 +#: guix-git/doc/guix.texi:34872 #, fuzzy, no-wrap #| msgid "--debug=@var{level}" msgid "fsck.repair=@var{level}" msgstr "--debug=@var{level}" #. type: table -#: guix-git/doc/guix.texi:34438 +#: guix-git/doc/guix.texi:34877 msgid "The level of repairs to perform automatically if errors are found in the @var{root} file system. @var{level} is one of @code{no} (do not write to @var{root} at all if possible), @code{yes} (repair as much as possible), or @code{preen} to repair problems considered safe to repair automatically." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34441 +#: guix-git/doc/guix.texi:34880 msgid "@code{preen} is the default if this option is not present or if @var{level} is not one of the above." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34445 +#: guix-git/doc/guix.texi:34884 msgid "Have @file{/run/booted-system} and @file{/run/current-system} point to @var{system}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34446 +#: guix-git/doc/guix.texi:34885 #, no-wrap msgid "modprobe.blacklist=@var{modules}@dots{}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34447 +#: guix-git/doc/guix.texi:34886 #, no-wrap msgid "module, black-listing" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34448 +#: guix-git/doc/guix.texi:34887 #, no-wrap msgid "black list, of kernel modules" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34453 +#: guix-git/doc/guix.texi:34892 msgid "Instruct the initial RAM disk as well as the @command{modprobe} command (from the kmod package) to refuse to load @var{modules}. @var{modules} must be a comma-separated list of module names---e.g., @code{usbkbd,9pnet}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34454 +#: guix-git/doc/guix.texi:34893 #, no-wrap msgid "--repl" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34460 +#: guix-git/doc/guix.texi:34899 msgid "Start a read-eval-print loop (REPL) from the initial RAM disk before it tries to load kernel modules and to mount the root file system. Our marketing team calls it @dfn{boot-to-Guile}. The Schemer in you will love it. @xref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}, for more information on Guile's REPL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34466 +#: guix-git/doc/guix.texi:34905 msgid "Now that you know all the features that initial RAM disks produced by @code{base-initrd} and @code{raw-initrd} provide, here is how to use it and customize it further." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34469 +#: guix-git/doc/guix.texi:34908 #, no-wrap msgid "{Scheme Procedure} raw-initrd @var{file-systems} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34483 +#: guix-git/doc/guix.texi:34922 msgid "[#:linux-modules '()] [#:mapped-devices '()] @ [#:keyboard-layout #f] @ [#:helper-packages '()] [#:qemu-networking? #f] [#:volatile-root? #f] Return a derivation that builds a raw initrd. @var{file-systems} is a list of file systems to be mounted by the initrd, possibly in addition to the root file system specified on the kernel command line via @option{--root}. @var{linux-modules} is a list of kernel modules to be loaded at boot time. @var{mapped-devices} is a list of device mappings to realize before @var{file-systems} are mounted (@pxref{Mapped Devices}). @var{helper-packages} is a list of packages to be copied in the initrd. It may include @code{e2fsck/static} or other packages needed by the initrd to check the root file system." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34489 guix-git/doc/guix.texi:34513 +#: guix-git/doc/guix.texi:34928 guix-git/doc/guix.texi:34952 msgid "When true, @var{keyboard-layout} is a @code{} record denoting the desired console keyboard layout. This is done before @var{mapped-devices} are set up and before @var{file-systems} are mounted such that, should the user need to enter a passphrase or use the REPL, this happens using the intended keyboard layout." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34493 +#: guix-git/doc/guix.texi:34932 msgid "When @var{qemu-networking?} is true, set up networking with the standard QEMU parameters. When @var{virtio?} is true, load additional modules so that the initrd can be used as a QEMU guest with para-virtualized I/O drivers." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34496 +#: guix-git/doc/guix.texi:34935 msgid "When @var{volatile-root?} is true, the root file system is writable but any changes to it are lost." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34498 +#: guix-git/doc/guix.texi:34937 #, no-wrap msgid "{Scheme Procedure} base-initrd @var{file-systems} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34507 +#: guix-git/doc/guix.texi:34946 msgid "[#:mapped-devices '()] [#:keyboard-layout #f] @ [#:qemu-networking? #f] [#:volatile-root? #f] @ [#:linux-modules '()] Return as a file-like object a generic initrd, with kernel modules taken from @var{linux}. @var{file-systems} is a list of file-systems to be mounted by the initrd, possibly in addition to the root file system specified on the kernel command line via @option{--root}. @var{mapped-devices} is a list of device mappings to realize before @var{file-systems} are mounted." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34515 +#: guix-git/doc/guix.texi:34954 msgid "@var{qemu-networking?} and @var{volatile-root?} behaves as in @code{raw-initrd}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34520 +#: guix-git/doc/guix.texi:34959 msgid "The initrd is automatically populated with all the kernel modules necessary for @var{file-systems} and for the given options. Additional kernel modules can be listed in @var{linux-modules}. They will be added to the initrd, and loaded at boot time in the order in which they appear." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34527 +#: guix-git/doc/guix.texi:34966 msgid "Needless to say, the initrds we produce and use embed a statically-linked Guile, and the initialization program is a Guile program. That gives a lot of flexibility. The @code{expression->initrd} procedure builds such an initrd, given the program to run in that initrd." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34528 +#: guix-git/doc/guix.texi:34967 #, no-wrap msgid "{Scheme Procedure} expression->initrd @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34534 +#: guix-git/doc/guix.texi:34973 msgid "[#:guile %guile-static-stripped] [#:name \"guile-initrd\"] Return as a file-like object a Linux initrd (a gzipped cpio archive) containing @var{guile} and that evaluates @var{exp}, a G-expression, upon booting. All the derivations referenced by @var{exp} are automatically copied to the initrd." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34540 +#: guix-git/doc/guix.texi:34979 #, no-wrap msgid "boot loader" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34547 +#: guix-git/doc/guix.texi:34986 msgid "The operating system supports multiple bootloaders. The bootloader is configured using @code{bootloader-configuration} declaration. All the fields of this structure are bootloader agnostic except for one field, @code{bootloader} that indicates the bootloader to be configured and installed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34552 +#: guix-git/doc/guix.texi:34991 msgid "Some of the bootloaders do not honor every field of @code{bootloader-configuration}. For instance, the extlinux bootloader does not support themes and thus ignores the @code{theme} field." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34553 +#: guix-git/doc/guix.texi:34992 #, no-wrap msgid "{Data Type} bootloader-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34555 +#: guix-git/doc/guix.texi:34994 msgid "The type of a bootloader configuration declaration." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34559 +#: guix-git/doc/guix.texi:34998 #, no-wrap msgid "EFI, bootloader" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34560 +#: guix-git/doc/guix.texi:34999 #, no-wrap msgid "UEFI, bootloader" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34561 +#: guix-git/doc/guix.texi:35000 #, no-wrap msgid "BIOS, bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34566 +#: guix-git/doc/guix.texi:35005 msgid "The bootloader to use, as a @code{bootloader} object. For now @code{grub-bootloader}, @code{grub-efi-bootloader}, @code{grub-efi-netboot-bootloader}, @code{extlinux-bootloader} and @code{u-boot-bootloader} are supported." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34567 +#: guix-git/doc/guix.texi:35006 #, no-wrap msgid "ARM, bootloaders" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34568 +#: guix-git/doc/guix.texi:35007 #, no-wrap msgid "AArch64, bootloaders" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34573 +#: guix-git/doc/guix.texi:35012 msgid "Available bootloaders are described in @code{(gnu bootloader @dots{})} modules. In particular, @code{(gnu bootloader u-boot)} contains definitions of bootloaders for a wide range of ARM and AArch64 systems, using the @uref{https://www.denx.de/wiki/U-Boot/, U-Boot bootloader}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34579 +#: guix-git/doc/guix.texi:35018 msgid "@code{grub-efi-bootloader} allows to boot on modern systems using the @dfn{Unified Extensible Firmware Interface} (UEFI). This is what you should use if the installation image contains a @file{/sys/firmware/efi} directory when you boot it on your system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34583 +#: guix-git/doc/guix.texi:35022 msgid "@code{grub-bootloader} allows you to boot in particular Intel-based machines in ``legacy'' BIOS mode." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:34584 +#: guix-git/doc/guix.texi:35023 #, no-wrap msgid "grub-efi-netboot-bootloader" msgstr "grub-efi-bootloader" #. type: table -#: guix-git/doc/guix.texi:34588 +#: guix-git/doc/guix.texi:35027 msgid "@code{grub-efi-netboot-bootloader} allows you to boot your system over network through TFTP@. In combination with an NFS root file system this allows you to build a diskless Guix system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34594 +#: guix-git/doc/guix.texi:35033 msgid "The installation of the @code{grub-efi-netboot-bootloader} generates the content of the TFTP root directory at @code{targets} (@pxref{Bootloader Configuration, @code{targets}}), to be served by a TFTP server. You may want to mount your TFTP server directories onto the @code{targets} to move the required files to the TFTP server automatically." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34603 +#: guix-git/doc/guix.texi:35042 msgid "If you plan to use an NFS root file system as well (actually if you mount the store from an NFS share), then the TFTP server needs to serve the file @file{/boot/grub/grub.cfg} and other files from the store (like GRUBs background image, the kernel (@pxref{operating-system Reference, @code{kernel}}) and the initrd (@pxref{operating-system Reference, @code{initrd}})), too. All these files from the store will be accessed by GRUB through TFTP with their normal store path, for example as @file{tftp://tftp-server/gnu/store/…-initrd/initrd.cpio.gz}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34612 +#: guix-git/doc/guix.texi:35051 msgid "Two symlinks are created to make this possible. For each target in the @code{targets} field, the first symlink is @samp{target}@file{/efi/Guix/boot/grub/grub.cfg} pointing to @file{../../../boot/grub/grub.cfg}, where @samp{target} may be @file{/boot}. In this case the link is not leaving the served TFTP root directory, but otherwise it does. The second link is @samp{target}@file{/gnu/store} and points to @file{../gnu/store}. This link is leaving the served TFTP root directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34618 +#: guix-git/doc/guix.texi:35057 msgid "The assumption behind all this is that you have an NFS server exporting the root file system for your Guix system, and additionally a TFTP server exporting your @code{targets} directories—usually a single @file{/boot}—from that same root file system for your Guix system. In this constellation the symlinks will work." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34623 +#: guix-git/doc/guix.texi:35062 msgid "For other constellations you will have to program your own bootloader installer, which then takes care to make necessary files from the store accessible through TFTP, for example by copying them into the TFTP root directory to your @code{targets}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34628 +#: guix-git/doc/guix.texi:35067 msgid "It is important to note that symlinks pointing outside the TFTP root directory may need to be allowed in the configuration of your TFTP server. Further the store link exposes the whole store through TFTP@. Both points need to be considered carefully for security aspects." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34633 +#: guix-git/doc/guix.texi:35072 msgid "Beside the @code{grub-efi-netboot-bootloader}, the already mentioned TFTP and NFS servers, you also need a properly configured DHCP server to make the booting over netboot possible. For all this we can currently only recommend you to look for instructions about @acronym{PXE, Preboot eXecution Environment}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34637 +#: guix-git/doc/guix.texi:35076 msgid "This is a list of strings denoting the targets onto which to install the bootloader." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34647 +#: guix-git/doc/guix.texi:35086 msgid "The interpretation of targets depends on the bootloader in question. For @code{grub-bootloader}, for example, they should be device names understood by the bootloader @command{installer} command, such as @code{/dev/sda} or @code{(hd0)} (@pxref{Invoking grub-install,,, grub, GNU GRUB Manual}). For @code{grub-efi-bootloader}, they should be mount points of the EFI file system, usually @file{/boot/efi}. For @code{grub-efi-netboot-bootloader}, @code{targets} should be the mount points corresponding to TFTP root directories served by your TFTP server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34648 +#: guix-git/doc/guix.texi:35087 #, no-wrap msgid "@code{menu-entries} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34652 +#: guix-git/doc/guix.texi:35091 msgid "A possibly empty list of @code{menu-entry} objects (see below), denoting entries to appear in the bootloader menu, in addition to the current system entry and the entry pointing to previous system generations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34653 +#: guix-git/doc/guix.texi:35092 #, no-wrap msgid "@code{default-entry} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34656 +#: guix-git/doc/guix.texi:35095 msgid "The index of the default boot menu entry. Index 0 is for the entry of the current system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34657 +#: guix-git/doc/guix.texi:35096 #, no-wrap msgid "@code{timeout} (default: @code{5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34660 +#: guix-git/doc/guix.texi:35099 msgid "The number of seconds to wait for keyboard input before booting. Set to 0 to boot immediately, and to -1 to wait indefinitely." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34661 +#: guix-git/doc/guix.texi:35100 #, no-wrap msgid "keyboard layout, for the bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34665 +#: guix-git/doc/guix.texi:35104 msgid "If this is @code{#f}, the bootloader's menu (if any) uses the default keyboard layout, usually US@tie{}English (``qwerty'')." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34668 +#: guix-git/doc/guix.texi:35107 msgid "Otherwise, this must be a @code{keyboard-layout} object (@pxref{Keyboard Layout})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:34672 +#: guix-git/doc/guix.texi:35111 msgid "This option is currently ignored by bootloaders other than @code{grub} and @code{grub-efi}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34674 +#: guix-git/doc/guix.texi:35113 #, no-wrap msgid "@code{theme} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34678 +#: guix-git/doc/guix.texi:35117 msgid "The bootloader theme object describing the theme to use. If no theme is provided, some bootloaders might use a default theme, that's true for GRUB." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34679 +#: guix-git/doc/guix.texi:35118 #, no-wrap msgid "@code{terminal-outputs} (default: @code{'(gfxterm)})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:34686 +#: guix-git/doc/guix.texi:35125 msgid "The output terminals used for the bootloader boot menu, as a list of symbols. GRUB accepts the values: @code{console}, @code{serial}, @code{serial_@{0-3@}}, @code{gfxterm}, @code{vga_text}, @code{mda_text}, @code{morse}, and @code{pkmodem}. This field corresponds to the GRUB variable @code{GRUB_TERMINAL_OUTPUT} (@pxref{Simple configuration,,, grub,GNU GRUB manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34687 +#: guix-git/doc/guix.texi:35126 #, no-wrap msgid "@code{terminal-inputs} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34695 +#: guix-git/doc/guix.texi:35134 msgid "The input terminals used for the bootloader boot menu, as a list of symbols. For GRUB, the default is the native platform terminal as determined at run-time. GRUB accepts the values: @code{console}, @code{serial}, @code{serial_@{0-3@}}, @code{at_keyboard}, and @code{usb_keyboard}. This field corresponds to the GRUB variable @code{GRUB_TERMINAL_INPUT} (@pxref{Simple configuration,,, grub,GNU GRUB manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34696 +#: guix-git/doc/guix.texi:35135 #, no-wrap msgid "@code{serial-unit} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34700 +#: guix-git/doc/guix.texi:35139 msgid "The serial unit used by the bootloader, as an integer from 0 to 3. For GRUB, it is chosen at run-time; currently GRUB chooses 0, which corresponds to COM1 (@pxref{Serial terminal,,, grub,GNU GRUB manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34701 +#: guix-git/doc/guix.texi:35140 #, no-wrap msgid "@code{serial-speed} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34705 +#: guix-git/doc/guix.texi:35144 msgid "The speed of the serial interface, as an integer. For GRUB, the default value is chosen at run-time; currently GRUB chooses 9600@tie{}bps (@pxref{Serial terminal,,, grub,GNU GRUB manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34709 +#: guix-git/doc/guix.texi:35148 #, no-wrap msgid "dual boot" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34710 +#: guix-git/doc/guix.texi:35149 #, no-wrap msgid "boot menu" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34716 +#: guix-git/doc/guix.texi:35155 msgid "Should you want to list additional boot menu entries @i{via} the @code{menu-entries} field above, you will need to create them with the @code{menu-entry} form. For example, imagine you want to be able to boot another distro (hard to imagine!), you can define a menu entry along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34723 +#: guix-git/doc/guix.texi:35162 #, no-wrap msgid "" "(menu-entry\n" @@ -63206,132 +64159,132 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34726 +#: guix-git/doc/guix.texi:35165 msgid "Details below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34727 +#: guix-git/doc/guix.texi:35166 #, no-wrap msgid "{Data Type} menu-entry" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34729 +#: guix-git/doc/guix.texi:35168 msgid "The type of an entry in the bootloader menu." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34734 +#: guix-git/doc/guix.texi:35173 msgid "The label to show in the menu---e.g., @code{\"GNU\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34735 +#: guix-git/doc/guix.texi:35174 #, no-wrap msgid "@code{linux} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:34737 +#: guix-git/doc/guix.texi:35176 msgid "The Linux kernel image to boot, for example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34740 +#: guix-git/doc/guix.texi:35179 #, no-wrap msgid "(file-append linux-libre \"/bzImage\")\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34745 +#: guix-git/doc/guix.texi:35184 msgid "For GRUB, it is also possible to specify a device explicitly in the file path using GRUB's device naming convention (@pxref{Naming convention,,, grub, GNU GRUB manual}), for example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34748 +#: guix-git/doc/guix.texi:35187 #, no-wrap msgid "\"(hd0,msdos1)/boot/vmlinuz\"\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34752 +#: guix-git/doc/guix.texi:35191 msgid "If the device is specified explicitly as above, then the @code{device} field is ignored entirely." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34753 +#: guix-git/doc/guix.texi:35192 #, no-wrap msgid "@code{linux-arguments} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34756 +#: guix-git/doc/guix.texi:35195 msgid "The list of extra Linux kernel command-line arguments---e.g., @code{(\"console=ttyS0\")}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34757 +#: guix-git/doc/guix.texi:35196 #, no-wrap msgid "@code{initrd} (default: @code{#f})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:34760 +#: guix-git/doc/guix.texi:35199 msgid "A G-Expression or string denoting the file name of the initial RAM disk to use (@pxref{G-Expressions})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34764 +#: guix-git/doc/guix.texi:35203 msgid "The device where the kernel and initrd are to be found---i.e., for GRUB, @dfn{root} for this menu entry (@pxref{root,,, grub, GNU GRUB manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34770 +#: guix-git/doc/guix.texi:35209 msgid "This may be a file system label (a string), a file system UUID (a bytevector, @pxref{File Systems}), or @code{#f}, in which case the bootloader will search the device containing the file specified by the @code{linux} field (@pxref{search,,, grub, GNU GRUB manual}). It must @emph{not} be an OS device name such as @file{/dev/sda1}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34771 +#: guix-git/doc/guix.texi:35210 #, no-wrap msgid "@code{multiboot-kernel} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:34775 +#: guix-git/doc/guix.texi:35214 msgid "The kernel to boot in Multiboot-mode (@pxref{multiboot,,, grub, GNU GRUB manual}). When this field is set, a Multiboot menu-entry is generated. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34778 +#: guix-git/doc/guix.texi:35217 #, no-wrap msgid "(file-append mach \"/boot/gnumach\")\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34780 +#: guix-git/doc/guix.texi:35219 #, no-wrap msgid "@code{multiboot-arguments} (default: @code{()})" msgstr "@code{arguments} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:34782 +#: guix-git/doc/guix.texi:35221 msgid "The list of extra command-line arguments for the multiboot-kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34783 +#: guix-git/doc/guix.texi:35222 #, no-wrap msgid "@code{multiboot-modules} (default: @code{()})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:34785 +#: guix-git/doc/guix.texi:35224 msgid "The list of commands for loading Multiboot modules. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34791 +#: guix-git/doc/guix.texi:35230 #, no-wrap msgid "" "(list (list (file-append hurd \"/hurd/ext2fs.static\") \"ext2fs\"\n" @@ -63341,73 +64294,73 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34796 guix-git/doc/guix.texi:34855 +#: guix-git/doc/guix.texi:35235 guix-git/doc/guix.texi:35294 #, no-wrap msgid "HDPI" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34797 guix-git/doc/guix.texi:34856 +#: guix-git/doc/guix.texi:35236 guix-git/doc/guix.texi:35295 #, no-wrap msgid "HiDPI" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34798 guix-git/doc/guix.texi:34857 +#: guix-git/doc/guix.texi:35237 guix-git/doc/guix.texi:35296 #, no-wrap msgid "resolution" msgstr "изоляция" #. type: Plain text -#: guix-git/doc/guix.texi:34802 +#: guix-git/doc/guix.texi:35241 msgid "For now only GRUB has theme support. GRUB themes are created using the @code{grub-theme} form, which is not fully documented yet." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34803 +#: guix-git/doc/guix.texi:35242 #, no-wrap msgid "{Data Type} grub-theme" msgstr "{Тип данных} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:34805 +#: guix-git/doc/guix.texi:35244 msgid "Data type representing the configuration of the GRUB theme." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34807 +#: guix-git/doc/guix.texi:35246 #, no-wrap msgid "@code{gfxmode} (default: @code{'(\"auto\")})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:34810 +#: guix-git/doc/guix.texi:35249 msgid "The GRUB @code{gfxmode} to set (a list of screen resolution strings, @pxref{gfxmode,,, grub, GNU GRUB manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34813 +#: guix-git/doc/guix.texi:35252 #, no-wrap msgid "{Scheme Procedure} grub-theme" msgstr "{Процедура Scheme} sane-service-type" #. type: deffn -#: guix-git/doc/guix.texi:34817 +#: guix-git/doc/guix.texi:35256 msgid "Return the default GRUB theme used by the operating system if no @code{theme} field is specified in @code{bootloader-configuration} record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34820 +#: guix-git/doc/guix.texi:35259 msgid "It comes with a fancy background image displaying the GNU and Guix logos." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34824 +#: guix-git/doc/guix.texi:35263 msgid "For example, to override the default resolution, you may use something like" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34832 +#: guix-git/doc/guix.texi:35271 #, no-wrap msgid "" "(bootloader\n" @@ -63419,40 +64372,40 @@ msgid "" msgstr "" #. type: section -#: guix-git/doc/guix.texi:34835 +#: guix-git/doc/guix.texi:35274 #, no-wrap msgid "Invoking @code{guix system}" msgstr "Вызов @code{guix deploy}" #. type: Plain text -#: guix-git/doc/guix.texi:34840 +#: guix-git/doc/guix.texi:35279 msgid "Once you have written an operating system declaration as seen in the previous section, it can be @dfn{instantiated} using the @command{guix system} command. The synopsis is:" msgstr "Однажды объявленное описание операционной системы, описанное в предыдущих разделах, может быть @dfn{применено} с помощью команды @command{guix system}. Синопсис:" #. type: example -#: guix-git/doc/guix.texi:34843 +#: guix-git/doc/guix.texi:35282 #, no-wrap msgid "guix system @var{options}@dots{} @var{action} @var{file}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34849 +#: guix-git/doc/guix.texi:35288 msgid "@var{file} must be the name of a file containing an @code{operating-system} declaration. @var{action} specifies how the operating system is instantiated. Currently the following values are supported:" msgstr "@var{file} должно быть именем файла, содержащего определение @code{operating-system}. @var{action} указывает, как воспроизводится операционная система. В настоящее время поддерживаются следующие значения:" #. type: item -#: guix-git/doc/guix.texi:34851 guix-git/doc/guix.texi:37496 +#: guix-git/doc/guix.texi:35290 guix-git/doc/guix.texi:37992 #, no-wrap msgid "search" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34854 +#: guix-git/doc/guix.texi:35293 msgid "Display available service type definitions that match the given regular expressions, sorted by relevance:" msgstr "Показывает доступные определения типов служб, в соответствии с указанным регулярным выражениям, отсортированные по релевантности:" #. type: example -#: guix-git/doc/guix.texi:34876 +#: guix-git/doc/guix.texi:35315 #, no-wrap msgid "" "$ guix system search console\n" @@ -63476,7 +64429,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34882 +#: guix-git/doc/guix.texi:35321 #, no-wrap msgid "" "name: mingetty\n" @@ -63488,7 +64441,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34889 +#: guix-git/doc/guix.texi:35328 #, no-wrap msgid "" "name: login\n" @@ -63501,72 +64454,72 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34891 guix-git/doc/guix.texi:37549 +#: guix-git/doc/guix.texi:35330 guix-git/doc/guix.texi:38028 #, no-wrap msgid "@dots{}\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34896 guix-git/doc/guix.texi:37554 +#: guix-git/doc/guix.texi:35335 msgid "As for @command{guix package --search}, the result is written in @code{recutils} format, which makes it easy to filter the output (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "Так же как для @command{guix package --search}, результат будет выведен в @code{recutils} формате, что делает его простым для фильтрации и вывода (@pxref{Top, GNU recutils databases, recutils, GNU recutils manual})." #. type: item -#: guix-git/doc/guix.texi:34897 guix-git/doc/guix.texi:37555 +#: guix-git/doc/guix.texi:35336 guix-git/doc/guix.texi:38034 #, no-wrap msgid "reconfigure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34902 +#: guix-git/doc/guix.texi:35341 msgid "Build the operating system described in @var{file}, activate it, and switch to it@footnote{This action (and the related actions @code{switch-generation} and @code{roll-back}) are usable only on systems already running Guix System.}." msgstr "Собирает операционную систему описанную в @var{file}, активирует её и переключается на неё@footnote{Это действие (и связанные с ним @code{switch-generation} и @code{roll-back}) можно использовать только в системах, в которых уже работает Guix System.}." #. type: quotation -#: guix-git/doc/guix.texi:34910 +#: guix-git/doc/guix.texi:35349 msgid "It is highly recommended to run @command{guix pull} once before you run @command{guix system reconfigure} for the first time (@pxref{Invoking guix pull}). Failing to do that you would see an older version of Guix once @command{reconfigure} has completed." msgstr "Настоятельно рекомендуется запустить команду @command{guix pull} перед первым запуском @command{guix system reconfigure} (@pxref{Invoking guix pull}). В противном случае вы можете получить старую версию Guix после завершения @command{reconfigure}" #. type: table -#: guix-git/doc/guix.texi:34918 +#: guix-git/doc/guix.texi:35357 msgid "This effects all the configuration specified in @var{file}: user accounts, system services, global package list, setuid programs, etc. The command starts system services specified in @var{file} that are not currently running; if a service is currently running this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop X} or @code{herd restart X})." msgstr "Это действие повлияет на всю конфигурацию, указанную в @var{file}: учетные записи пользователей, системные службы, глобальный список пакетов, программы setuid и т.д. Команда запустит системные службы, указанные в @var{file}, которые в данный момент не запущены; если служба в данный момент запущена, изменения вступят в силу при следующем перезапуске (например@: по @code{herd stop X} или @code{herd restart X})." #. type: table -#: guix-git/doc/guix.texi:34924 +#: guix-git/doc/guix.texi:35363 msgid "This command creates a new generation whose number is one greater than the current generation (as reported by @command{guix system list-generations}). If that generation already exists, it will be overwritten. This behavior mirrors that of @command{guix package} (@pxref{Invoking guix package})." msgstr "Эта команда создает новое поколение, число которого на единицу больше, чем у текущего поколения (как описано @command{guix system list-generations}). Если это поколение уже существует, оно будет перезаписано. Это поведение описано в @command{guix package} (@pxref{Invoking guix package})." #. type: table -#: guix-git/doc/guix.texi:34929 +#: guix-git/doc/guix.texi:35368 msgid "It also adds a bootloader menu entry for the new OS configuration, ---unless @option{--no-bootloader} is passed. For GRUB, it moves entries for older configurations to a submenu, allowing you to choose an older system generation at boot time should you need it." msgstr "Она также добавляет пункты меню загрузчика для новой конфигурации ОС, если не передана опция @option{--no-bootloader}. Для GRUB она перемещает записи для более старых конфигураций вподменю, позволяя вам выбрать более старое поколение системы во время загрузки, если вам это понадобится." #. type: cindex -#: guix-git/doc/guix.texi:34930 guix-git/doc/guix.texi:35261 -#: guix-git/doc/guix.texi:36223 +#: guix-git/doc/guix.texi:35369 guix-git/doc/guix.texi:35705 +#: guix-git/doc/guix.texi:36713 #, no-wrap msgid "provenance tracking, of the operating system" msgstr "трекинг источника, артефакты программного обеспечения" #. type: table -#: guix-git/doc/guix.texi:34935 +#: guix-git/doc/guix.texi:35374 msgid "Upon completion, the new system is deployed under @file{/run/current-system}. This directory contains @dfn{provenance meta-data}: the list of channels in use (@pxref{Channels}) and @var{file} itself, when available. You can view it by running:" msgstr "По завершении новая система развертывается в @file{/run/current-system}. Этот каталог содержит @dfn{метаданные о происхождении}: список используемых каналов (@pxref{Channels}) и сам @var{file}, если он доступен. Вы можете просмотреть его, запустив:" #. type: example -#: guix-git/doc/guix.texi:34938 +#: guix-git/doc/guix.texi:35377 #, no-wrap msgid "guix system describe\n" msgstr "guix system describe\n" #. type: table -#: guix-git/doc/guix.texi:34944 +#: guix-git/doc/guix.texi:35383 msgid "This information is useful should you later want to inspect how this particular generation was built. In fact, assuming @var{file} is self-contained, you can later rebuild generation @var{n} of your operating system with:" msgstr "Эта информация пригодится, если позже вы захотите проверить, как было собрано это конкретное поколение. Фактически, предполагая, что @var{file} содержит всё необходимое, вы можете позже пересобрать поколение @var{n} в вашей операционной системы с помощью:" #. type: example -#: guix-git/doc/guix.texi:34950 +#: guix-git/doc/guix.texi:35389 #, no-wrap msgid "" "guix time-machine \\\n" @@ -63576,239 +64529,244 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34956 +#: guix-git/doc/guix.texi:35395 msgid "You can think of it as some sort of built-in version control! Your system is not just a binary artifact: @emph{it carries its own source}. @xref{Service Reference, @code{provenance-service-type}}, for more information on provenance tracking." msgstr "Вы можете думать об этом как о чем-то вроде встроенного контроля версий! Ваша система теперь не просто набор двоичных файлов: @emph{она содержит свой собственный источник}. @xref{Service Reference, @code{provenance-service-type}}, для получения дополнительной информации об отслеживании происхождения." #. type: table -#: guix-git/doc/guix.texi:34962 +#: guix-git/doc/guix.texi:35401 msgid "By default, @command{reconfigure} @emph{prevents you from downgrading your system}, which could (re)introduce security vulnerabilities and also cause problems with ``stateful'' services such as database management systems. You can override that behavior by passing @option{--allow-downgrades}." msgstr "По умолчанию @command{reconfigure} @emph{препятствует откату вашей системы}, что может (пере)внести уязвимости безопасности, а также вызвать проблемы со службами \"отслеживающими состояние\", такими как системы управления базами данных. Вы можете переопределить это поведение, передав @option{--allow-downgrades}." #. type: item -#: guix-git/doc/guix.texi:34963 guix-git/doc/guix.texi:37614 +#: guix-git/doc/guix.texi:35402 guix-git/doc/guix.texi:38093 #, no-wrap msgid "switch-generation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34972 +#: guix-git/doc/guix.texi:35411 msgid "Switch to an existing system generation. This action atomically switches the system profile to the specified system generation. It also rearranges the system's existing bootloader menu entries. It makes the menu entry for the specified system generation the default, and it moves the entries for the other generations to a submenu, if supported by the bootloader being used. The next time the system boots, it will use the specified system generation." msgstr "Переключает на существующее поколение системы. Эта команда атомарной операцией переключает системный профиль на указанное поколение системы. Она также изменяет порядок существующих элементов меню загрузчика системы. Она устанавливает в загрузчике запуск по умолчанию указанного поколения и перемещает другие поколения в подменю, если это поддерживается используемым загрузчиком. При следующей загрузке системы она будет использовать указанное поколение системы." #. type: table -#: guix-git/doc/guix.texi:34976 +#: guix-git/doc/guix.texi:35415 msgid "The bootloader itself is not being reinstalled when using this command. Thus, the installed bootloader is used with an updated configuration file." msgstr "Сам загрузчик не переустанавливается при использовании этой команды. Таким образом, установленный загрузчик используется с обновленным файлом конфигурации." #. type: table -#: guix-git/doc/guix.texi:34980 +#: guix-git/doc/guix.texi:35419 msgid "The target generation can be specified explicitly by its generation number. For example, the following invocation would switch to system generation 7:" msgstr "Нужное поколение может быть явно указано по его номеру. Например, следующий вызов переключится на поколение 7:" #. type: example -#: guix-git/doc/guix.texi:34983 +#: guix-git/doc/guix.texi:35422 #, no-wrap msgid "guix system switch-generation 7\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34991 guix-git/doc/guix.texi:37633 +#: guix-git/doc/guix.texi:35430 guix-git/doc/guix.texi:38112 msgid "The target generation can also be specified relative to the current generation with the form @code{+N} or @code{-N}, where @code{+3} means ``3 generations ahead of the current generation,'' and @code{-1} means ``1 generation prior to the current generation.'' When specifying a negative value such as @code{-1}, you must precede it with @code{--} to prevent it from being parsed as an option. For example:" msgstr "Нужное поколение также может быть указано относительно текущего поколения @code{+N} или @code{-N}, где @code{+3} означает \"на 3 поколения старше текущего\", а @code{-1} означает \"на 1 поколение младше текущего\". При задании отрицательного значения @code{-1}, перед ним нужно поставить @code{--} чтобы не воспринимать его в качестве опции. Например:" #. type: example -#: guix-git/doc/guix.texi:34994 +#: guix-git/doc/guix.texi:35433 #, no-wrap msgid "guix system switch-generation -- -1\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35002 +#: guix-git/doc/guix.texi:35441 msgid "Currently, the effect of invoking this action is @emph{only} to switch the system profile to an existing generation and rearrange the bootloader menu entries. To actually start using the target system generation, you must reboot after running this action. In the future, it will be updated to do the same things as @command{reconfigure}, like activating and deactivating services." msgstr "В настоящее время результатом вызова этого действия является @emph{только} переключение профиля на существующее поколение и изменение элементов меню загрузчика. Чтобы начать использовать указанное поколение, вы должны перезагрузиться. В будущем поведение будет аналогично @command{reconfigure}, например, запуск и остановка служб." #. type: table -#: guix-git/doc/guix.texi:35004 guix-git/doc/guix.texi:37639 +#: guix-git/doc/guix.texi:35443 guix-git/doc/guix.texi:38118 msgid "This action will fail if the specified generation does not exist." msgstr "Это действие завершится ошибкой, если указанное поколение не существует." #. type: item -#: guix-git/doc/guix.texi:35005 guix-git/doc/guix.texi:37640 +#: guix-git/doc/guix.texi:35444 guix-git/doc/guix.texi:38119 #, no-wrap msgid "roll-back" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35011 +#: guix-git/doc/guix.texi:35450 msgid "Switch to the preceding system generation. The next time the system boots, it will use the preceding system generation. This is the inverse of @command{reconfigure}, and it is exactly the same as invoking @command{switch-generation} with an argument of @code{-1}." msgstr "Переключает на предыдущее поколение системы. При следующей загрузке система будет использовать предыдущее. Команда отменяет @command{reconfigure}, и делает то же самое, что @command{switch-generation} с аргументом @code{-1}." #. type: table -#: guix-git/doc/guix.texi:35015 +#: guix-git/doc/guix.texi:35454 msgid "Currently, as with @command{switch-generation}, you must reboot after running this action to actually start using the preceding system generation." msgstr "В настоящее время, как и в случае с @command{switch-generation}, вы должны перезагрузиться после выполнения этого действия, чтобы фактически начать использовать предыдущее поколение системы." #. type: item -#: guix-git/doc/guix.texi:35016 guix-git/doc/guix.texi:37646 +#: guix-git/doc/guix.texi:35455 guix-git/doc/guix.texi:38125 #, no-wrap msgid "delete-generations" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35017 +#: guix-git/doc/guix.texi:35456 #, no-wrap msgid "deleting system generations" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35018 guix-git/doc/guix.texi:37648 +#: guix-git/doc/guix.texi:35457 guix-git/doc/guix.texi:38127 #, no-wrap msgid "saving space" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35022 +#: guix-git/doc/guix.texi:35461 msgid "Delete system generations, making them candidates for garbage collection (@pxref{Invoking guix gc}, for information on how to run the ``garbage collector'')." msgstr "Удаляет поколение, делая их кандидатами на для сборщика мусора (@pxref{Invoking guix gc}, для получения информации о том, как запустить \"сборщик мусора\")." #. type: table -#: guix-git/doc/guix.texi:35026 +#: guix-git/doc/guix.texi:35465 msgid "This works in the same way as @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). With no arguments, all system generations but the current one are deleted:" msgstr "Работает так же, как и @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). Без аргументов удаляются все системные поколения, кроме текущего:" #. type: example -#: guix-git/doc/guix.texi:35029 +#: guix-git/doc/guix.texi:35468 #, no-wrap msgid "guix system delete-generations\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35033 +#: guix-git/doc/guix.texi:35472 #, fuzzy #| msgid "You can also select the generations you want to delete. The example below deletes all the system generations that are more than two month old:" msgid "You can also select the generations you want to delete. The example below deletes all the system generations that are more than two months old:" msgstr "Вы также можете выбрать поколения, которые хотите удалить. В приведенном примере удаляются все системные поколения, которым более двух месяцев:" #. type: example -#: guix-git/doc/guix.texi:35036 +#: guix-git/doc/guix.texi:35475 #, no-wrap msgid "guix system delete-generations 2m\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35041 +#: guix-git/doc/guix.texi:35480 msgid "Running this command automatically reinstalls the bootloader with an updated list of menu entries---e.g., the ``old generations'' sub-menu in GRUB no longer lists the generations that have been deleted." msgstr "Выполнение этой команды автоматически переустановит загрузчик с обновлением меню—например, подменю \"old generations\" в GRUB не будет содержать удаленные поколения." #. type: table -#: guix-git/doc/guix.texi:35046 +#: guix-git/doc/guix.texi:35485 msgid "Build the derivation of the operating system, which includes all the configuration files and programs needed to boot and run the system. This action does not actually install anything." msgstr "Собирает деривацию операционной системы, которая включает в себя все файлы конфигурации и программы, необходимые для загрузки и запуска системы. Это действие на самом деле ничего не устанавливает." #. type: item -#: guix-git/doc/guix.texi:35047 +#: guix-git/doc/guix.texi:35486 #, no-wrap msgid "init" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35051 +#: guix-git/doc/guix.texi:35490 msgid "Populate the given directory with all the files necessary to run the operating system specified in @var{file}. This is useful for first-time installations of Guix System. For instance:" msgstr "Наполняет указанную директорию всем необходимым для запуска операционной системы, указанным в @var{файле}. Это полезно при первой установке системы Guix. В качестве примера:" #. type: example -#: guix-git/doc/guix.texi:35054 +#: guix-git/doc/guix.texi:35493 #, no-wrap msgid "guix system init my-os-config.scm /mnt\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35061 +#: guix-git/doc/guix.texi:35500 msgid "copies to @file{/mnt} all the store items required by the configuration specified in @file{my-os-config.scm}. This includes configuration files, packages, and so on. It also creates other essential files needed for the system to operate correctly---e.g., the @file{/etc}, @file{/var}, and @file{/run} directories, and the @file{/bin/sh} file." msgstr "копирует в @file{/mnt} все элементы хранилища, необходимые для конфигурации, указанной в @file{my-os-config.scm}. Включая файлы конфигурации, пакеты и так далее. Он также создает другие важные файлы, необходимые для правильной работы системы, такие как каталоги @file{/etc}, @file{/var} и @file{/run} и файл @file{/bin/sh}." #. type: table -#: guix-git/doc/guix.texi:35065 +#: guix-git/doc/guix.texi:35504 #, fuzzy #| msgid "This command also installs bootloader on the target specified in @file{my-os-config}, unless the @option{--no-bootloader} option was passed." msgid "This command also installs bootloader on the targets specified in @file{my-os-config}, unless the @option{--no-bootloader} option was passed." msgstr "Эта команда также устанавливает загрузчик на объект, указанный в @file{my-os-config}, если не был передан параметр @option{--no-bootloader}." #. type: item -#: guix-git/doc/guix.texi:35066 +#: guix-git/doc/guix.texi:35505 #, no-wrap msgid "vm" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35067 guix-git/doc/guix.texi:35634 +#: guix-git/doc/guix.texi:35506 guix-git/doc/guix.texi:36124 #, no-wrap msgid "virtual machine" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35068 +#: guix-git/doc/guix.texi:35507 #, no-wrap msgid "VM" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35072 +#: guix-git/doc/guix.texi:35511 msgid "guix system vm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35072 +#: guix-git/doc/guix.texi:35511 #, fuzzy #| msgid "Build a virtual machine that contains the operating system declared in @var{file}, and return a script to run that virtual machine (VM)." msgid "Build a virtual machine (VM) that contains the operating system declared in @var{file}, and return a script to run that VM." msgstr "Собирает виртуальную машину, содержащую операционную систему, объявленную в @var{файле}, и возвращает скрипт для запуска этой виртуальной машины (ВМ)." #. type: quotation -#: guix-git/doc/guix.texi:35080 +#: guix-git/doc/guix.texi:35519 msgid "The @code{vm} action and others below can use KVM support in the Linux-libre kernel. Specifically, if the machine has hardware virtualization support, the corresponding KVM kernel module should be loaded, and the @file{/dev/kvm} device node must exist and be readable and writable by the user and by the build users of the daemon (@pxref{Build Environment Setup})." msgstr "Параметры @code{vm} и другие, приведенные ниже, могут использовать поддержку KVM ядра Linux-libre. В частности, если машина поддерживает аппаратную виртуализацию,следует загрузить соответствующий модуль ядра KVM а файл устройства @file{/dev/kvm} должен существовать и быть доступен для чтения и записи пользователю и процессамсборки демона (@pxref{Build Environment Setup})." #. type: table -#: guix-git/doc/guix.texi:35085 +#: guix-git/doc/guix.texi:35524 msgid "Arguments given to the script are passed to QEMU as in the example below, which enables networking and requests 1@tie{}GiB of RAM for the emulated machine:" msgstr "Аргументы, переданные скрипту, передаются в QEMU, как в приведенном ниже примере,который включает сеть и запрашивает 1@tie{}GiB оперативной памяти для эмулируемоймашины:" #. type: example -#: guix-git/doc/guix.texi:35088 +#: guix-git/doc/guix.texi:35527 #, no-wrap msgid "$ /gnu/store/@dots{}-run-vm.sh -m 1024 -smp 2 -nic user,model=virtio-net-pci\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35091 +#: guix-git/doc/guix.texi:35530 msgid "It's possible to combine the two steps into one:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35094 +#: guix-git/doc/guix.texi:35533 #, no-wrap msgid "$ $(guix system vm my-config.scm) -m 1024 -smp 2 -nic user,model=virtio-net-pci\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35097 +#: guix-git/doc/guix.texi:35536 msgid "The VM shares its store with the host system." msgstr "Виртуальная машина использует свое хранилище совместно с хост-системой." #. type: table -#: guix-git/doc/guix.texi:35102 +#: guix-git/doc/guix.texi:35541 +msgid "By default, the root file system of the VM is mounted volatile; the @option{--persistent} option can be provided to make it persistent instead. In that case, the VM disk-image file will be copied from the store to the @env{TMPDIR} directory to make it writable." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:35546 msgid "Additional file systems can be shared between the host and the VM using the @option{--share} and @option{--expose} command-line options: the former specifies a directory to be shared with write access, while the latter provides read-only access to the shared directory." msgstr "Дополнительные файловые системы могут быть разделены между хостом и виртуальной машиной с помощью параметров @option{--share} и @option{--expose}: первый указывает директорию, к которой должен быть предоставлен общий доступ с правом на запись, последний обеспечивает доступ только на чтение." #. type: table -#: guix-git/doc/guix.texi:35106 +#: guix-git/doc/guix.texi:35550 msgid "The example below creates a VM in which the user's home directory is accessible read-only, and where the @file{/exchange} directory is a read-write mapping of @file{$HOME/tmp} on the host:" msgstr "Пример ниже создает виртуальную машину, которой доступна домашняя директория пользователя с правами на чтение, а директория @file{$HOME/tmp} хоста размещена в @file{/exchange} с правами на чтение и запись:" #. type: example -#: guix-git/doc/guix.texi:35110 +#: guix-git/doc/guix.texi:35554 #, no-wrap msgid "" "guix system vm my-config.scm \\\n" @@ -63816,58 +64774,58 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35115 +#: guix-git/doc/guix.texi:35559 msgid "On GNU/Linux, the default is to boot directly to the kernel; this has the advantage of requiring only a very tiny root disk image since the store of the host can then be mounted." msgstr "В GNU / Linux по умолчанию загрузка выполняется непосредственно в ядро; это имеет преимущество в том, что требуется только очень крошечный образ корневого диска, так как затем можно смонтировать хранилище хоста." #. type: table -#: guix-git/doc/guix.texi:35120 +#: guix-git/doc/guix.texi:35564 #, fuzzy #| msgid "The @option{--full-boot} option forces a complete boot sequence, starting with the bootloader. This requires more disk space since a root image containing at least the kernel, initrd, and bootloader data files must be created. The @option{--image-size} option can be used to specify the size of the image." msgid "The @option{--full-boot} option forces a complete boot sequence, starting with the bootloader. This requires more disk space since a root image containing at least the kernel, initrd, and bootloader data files must be created." msgstr "Опция @option{--full-boot} вызывает полную последовательность загрузки, начиная с загрузчика. При этом потребуется больше места на диске, так как образ, будет включать в себя по крайней мере ядро, initrd и загрузчик. Параметр @option{--image-size} можно использовать для указания размераобраза." #. type: table -#: guix-git/doc/guix.texi:35123 +#: guix-git/doc/guix.texi:35567 msgid "The @option{--image-size} option can be used to specify the size of the image." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35130 +#: guix-git/doc/guix.texi:35574 msgid "The @option{--no-graphic} option will instruct @command{guix system} to spawn a headless VM that will use the invoking tty for IO. Among other things, this enables copy-pasting, and scrollback. Use the @kbd{ctrl-a} prefix to issue QEMU commands; e.g. @kbd{ctrl-a h} prints a help, @kbd{ctrl-a x} quits the VM, and @kbd{ctrl-a c} switches between the QEMU monitor and the VM." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35131 +#: guix-git/doc/guix.texi:35575 #, no-wrap msgid "System images, creation in various formats" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35132 +#: guix-git/doc/guix.texi:35576 #, no-wrap msgid "Creating system images in various formats" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35133 +#: guix-git/doc/guix.texi:35577 #, no-wrap msgid "image" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35134 +#: guix-git/doc/guix.texi:35578 #, no-wrap msgid "image, creating disk images" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35146 +#: guix-git/doc/guix.texi:35590 msgid "The @code{image} command can produce various image types. The image type can be selected using the @option{--image-type} option. It defaults to @code{efi-raw}. When its value is @code{iso9660}, the @option{--label} option can be used to specify a volume ID with @code{image}. By default, the root file system of a disk image is mounted non-volatile; the @option{--volatile} option can be provided to make it volatile instead. When using @code{image}, the bootloader installed on the generated image is taken from the provided @code{operating-system} definition. The following example demonstrates how to generate an image that uses the @code{grub-efi-bootloader} bootloader and boot it with QEMU:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35154 +#: guix-git/doc/guix.texi:35598 #, no-wrap msgid "" "image=$(guix system image --image-type=qcow2 \\\n" @@ -63879,45 +64837,45 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35160 +#: guix-git/doc/guix.texi:35604 msgid "When using the @code{efi-raw} image type, a raw disk image is produced; it can be copied as is to a USB stick, for instance. Assuming @code{/dev/sdc} is the device corresponding to a USB stick, one can copy the image to it using the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35163 +#: guix-git/doc/guix.texi:35607 #, no-wrap msgid "# dd if=$(guix system image my-os.scm) of=/dev/sdc status=progress\n" msgstr "# dd if=$(guix system image my-os.scm) of=/dev/sdc status=progress\n" #. type: table -#: guix-git/doc/guix.texi:35167 +#: guix-git/doc/guix.texi:35611 msgid "The @code{--list-image-types} command lists all the available image types." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35168 +#: guix-git/doc/guix.texi:35612 #, no-wrap msgid "creating virtual machine images" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35177 +#: guix-git/doc/guix.texi:35621 msgid "When using the @code{qcow2} image type, the returned image is in qcow2 format, which the QEMU emulator can efficiently use. @xref{Running Guix in a VM}, for more information on how to run the image in a virtual machine. The @code{grub-bootloader} bootloader is always used independently of what is declared in the @code{operating-system} file passed as argument. This is to make it easier to work with QEMU, which uses the SeaBIOS BIOS by default, expecting a bootloader to be installed in the Master Boot Record (MBR)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35178 +#: guix-git/doc/guix.texi:35622 #, no-wrap msgid "docker-image, creating docker images" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35184 +#: guix-git/doc/guix.texi:35628 msgid "When using the @code{docker} image type, a Docker image is produced. Guix builds the image from scratch, not from a pre-existing Docker base image. As a result, it contains @emph{exactly} what you define in the operating system configuration file. You can then load the image and launch a Docker container using commands like the following:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35189 +#: guix-git/doc/guix.texi:35633 #, no-wrap msgid "" "image_id=\"$(docker load < guix-system-docker-image.tar.gz)\"\n" @@ -63926,43 +64884,43 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35196 +#: guix-git/doc/guix.texi:35640 msgid "This command starts a new Docker container from the specified image. It will boot the Guix system in the usual manner, which means it will start any services you have defined in the operating system configuration. You can get an interactive shell running in the container using @command{docker exec}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35199 +#: guix-git/doc/guix.texi:35643 #, no-wrap msgid "docker exec -ti $container_id /run/current-system/profile/bin/bash --login\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35206 +#: guix-git/doc/guix.texi:35650 msgid "Depending on what you run in the Docker container, it may be necessary to give the container additional permissions. For example, if you intend to build software using Guix inside of the Docker container, you may need to pass the @option{--privileged} option to @code{docker create}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35210 +#: guix-git/doc/guix.texi:35654 msgid "Last, the @option{--network} option applies to @command{guix system docker-image}: it produces an image where network is supposedly shared with the host, and thus without services like nscd or NetworkManager." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35218 +#: guix-git/doc/guix.texi:35662 msgid "Return a script to run the operating system declared in @var{file} within a container. Containers are a set of lightweight isolation mechanisms provided by the kernel Linux-libre. Containers are substantially less resource-demanding than full virtual machines since the kernel, shared objects, and other resources can be shared with the host system; this also means they provide thinner isolation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35222 +#: guix-git/doc/guix.texi:35666 msgid "Currently, the script must be run as root in order to support more than a single user and group. The container shares its store with the host system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35226 +#: guix-git/doc/guix.texi:35670 msgid "As with the @code{vm} action (@pxref{guix system vm}), additional file systems to be shared between the host and container can be specified using the @option{--share} and @option{--expose} options:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35230 +#: guix-git/doc/guix.texi:35674 #, no-wrap msgid "" "guix system container my-config.scm \\\n" @@ -63970,319 +64928,329 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35234 +#: guix-git/doc/guix.texi:35678 msgid "This option requires Linux-libre 3.19 or newer." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35241 guix-git/doc/guix.texi:37710 +#: guix-git/doc/guix.texi:35685 guix-git/doc/guix.texi:38189 msgid "@var{options} can contain any of the common build options (@pxref{Common Build Options}). In addition, @var{options} can contain one of the following:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35250 +#: guix-git/doc/guix.texi:35694 msgid "Consider the operating-system @var{expr} evaluates to. This is an alternative to specifying a file which evaluates to an operating system. This is used to generate the Guix system installer @pxref{Building the Installation Image})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35255 +#: guix-git/doc/guix.texi:35699 msgid "Attempt to build for @var{system} instead of the host system type. This works as per @command{guix build} (@pxref{Invoking guix build})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35260 +#: guix-git/doc/guix.texi:35704 msgid "Return the derivation file name of the given operating system without building anything." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35269 +#: guix-git/doc/guix.texi:35713 msgid "As discussed above, @command{guix system init} and @command{guix system reconfigure} always save provenance information @i{via} a dedicated service (@pxref{Service Reference, @code{provenance-service-type}}). However, other commands don't do that by default. If you wish to, say, create a virtual machine image that contains provenance information, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35272 +#: guix-git/doc/guix.texi:35716 #, no-wrap msgid "guix system image -t qcow2 --save-provenance config.scm\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35279 +#: guix-git/doc/guix.texi:35723 msgid "That way, the resulting image will effectively ``embed its own source'' in the form of meta-data in @file{/run/current-system}. With that information, one can rebuild the image to make sure it really contains what it pretends to contain; or they could use that to derive a variant of the image." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35280 +#: guix-git/doc/guix.texi:35724 #, no-wrap msgid "--image-type=@var{type}" msgstr "--target=@var{triplet}" #. type: table -#: guix-git/doc/guix.texi:35283 +#: guix-git/doc/guix.texi:35727 msgid "For the @code{image} action, create an image with given @var{type}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35286 +#: guix-git/doc/guix.texi:35730 msgid "When this option is omitted, @command{guix system} uses the @code{efi-raw} image type." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35287 +#: guix-git/doc/guix.texi:35731 #, no-wrap msgid "ISO-9660 format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35288 +#: guix-git/doc/guix.texi:35732 #, no-wrap msgid "CD image format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35289 +#: guix-git/doc/guix.texi:35733 #, no-wrap msgid "DVD image format" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35292 +#: guix-git/doc/guix.texi:35736 msgid "@option{--image-type=iso9660} produces an ISO-9660 image, suitable for burning on CDs and DVDs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35293 +#: guix-git/doc/guix.texi:35737 #, no-wrap msgid "--image-size=@var{size}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35298 +#: guix-git/doc/guix.texi:35742 msgid "For the @code{image} action, create an image of the given @var{size}. @var{size} may be a number of bytes, or it may include a unit as a suffix (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." msgstr "Если задана @var{min}, остановиться, когда @var{min} байт собрано. @var{min} может быть числом байт или может содержать единицу измерения в суффиксе, как например, @code{MiB} для мебибайт и @code{GB} гигабайт (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." #. type: table -#: guix-git/doc/guix.texi:35302 +#: guix-git/doc/guix.texi:35746 msgid "When this option is omitted, @command{guix system} computes an estimate of the image size as a function of the size of the system declared in @var{file}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35307 +#: guix-git/doc/guix.texi:35751 msgid "For the @code{container} action, allow containers to access the host network, that is, do not create a network namespace." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35313 +#: guix-git/doc/guix.texi:35757 #, no-wrap msgid "--skip-checks" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35315 +#: guix-git/doc/guix.texi:35759 msgid "Skip pre-installation safety checks." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35322 +#: guix-git/doc/guix.texi:35766 msgid "By default, @command{guix system init} and @command{guix system reconfigure} perform safety checks: they make sure the file systems that appear in the @code{operating-system} declaration actually exist (@pxref{File Systems}), and that any Linux kernel modules that may be needed at boot time are listed in @code{initrd-modules} (@pxref{Initial RAM Disk}). Passing this option skips these tests altogether." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35325 +#: guix-git/doc/guix.texi:35769 msgid "Instruct @command{guix system reconfigure} to allow system downgrades." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35333 +#: guix-git/doc/guix.texi:35777 msgid "By default, @command{reconfigure} prevents you from downgrading your system. It achieves that by comparing the provenance info of your system (shown by @command{guix system describe}) with that of your @command{guix} command (shown by @command{guix describe}). If the commits for @command{guix} are not descendants of those used for your system, @command{guix system reconfigure} errors out. Passing @option{--allow-downgrades} allows you to bypass these checks." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35339 +#: guix-git/doc/guix.texi:35783 #, no-wrap msgid "on-error" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35340 +#: guix-git/doc/guix.texi:35784 #, no-wrap msgid "on-error strategy" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35341 +#: guix-git/doc/guix.texi:35785 #, no-wrap msgid "error strategy" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35342 +#: guix-git/doc/guix.texi:35786 #, no-wrap msgid "--on-error=@var{strategy}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35345 +#: guix-git/doc/guix.texi:35789 msgid "Apply @var{strategy} when an error occurs when reading @var{file}. @var{strategy} may be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35347 +#: guix-git/doc/guix.texi:35791 #, no-wrap msgid "nothing-special" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35349 +#: guix-git/doc/guix.texi:35793 msgid "Report the error concisely and exit. This is the default strategy." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35350 +#: guix-git/doc/guix.texi:35794 #, no-wrap msgid "backtrace" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35352 +#: guix-git/doc/guix.texi:35796 msgid "Likewise, but also display a backtrace." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35353 +#: guix-git/doc/guix.texi:35797 #, no-wrap msgid "debug" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35359 +#: guix-git/doc/guix.texi:35803 msgid "Report the error and enter Guile's debugger. From there, you can run commands such as @code{,bt} to get a backtrace, @code{,locals} to display local variable values, and more generally inspect the state of the program. @xref{Debug Commands,,, guile, GNU Guile Reference Manual}, for a list of available debugging commands." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35366 +#: guix-git/doc/guix.texi:35810 msgid "Once you have built, configured, re-configured, and re-re-configured your Guix installation, you may find it useful to list the operating system generations available on disk---and that you can choose from the bootloader boot menu:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35369 guix-git/doc/guix.texi:37673 +#: guix-git/doc/guix.texi:35813 guix-git/doc/guix.texi:38152 #, no-wrap msgid "describe" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35372 -msgid "Describe the current system generation: its file name, the kernel and bootloader used, etc., as well as provenance information when available." +#: guix-git/doc/guix.texi:35816 +msgid "Describe the running system generation: its file name, the kernel and bootloader used, etc., as well as provenance information when available." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:35823 +msgid "The @emph{running} system generation---referred to by @file{/run/current-system}---is not necessarily the @emph{current} system generation---referred to by @file{/var/guix/profiles/system}: it differs when, for instance, you chose from the bootloader menu to boot an older generation." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:35827 +msgid "It can also differ from the @emph{booted} system generation---referred to by @file{/run/booted-system}---for instance because you reconfigured the system in the meantime." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35373 guix-git/doc/guix.texi:37677 +#: guix-git/doc/guix.texi:35829 guix-git/doc/guix.texi:38156 #, no-wrap msgid "list-generations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35378 +#: guix-git/doc/guix.texi:35834 msgid "List a summary of each generation of the operating system available on disk, in a human-readable way. This is similar to the @option{--list-generations} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35383 guix-git/doc/guix.texi:37687 +#: guix-git/doc/guix.texi:35839 guix-git/doc/guix.texi:38166 msgid "Optionally, one can specify a pattern, with the same syntax that is used in @command{guix package --list-generations}, to restrict the list of generations displayed. For instance, the following command displays generations that are up to 10 days old:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35386 +#: guix-git/doc/guix.texi:35842 #, no-wrap msgid "$ guix system list-generations 10d\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35393 +#: guix-git/doc/guix.texi:35849 msgid "The @command{guix system} command has even more to offer! The following sub-commands allow you to visualize how your system services relate to each other:" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35395 +#: guix-git/doc/guix.texi:35851 msgid "system-extension-graph" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35397 +#: guix-git/doc/guix.texi:35853 #, no-wrap msgid "extension-graph" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35404 +#: guix-git/doc/guix.texi:35860 msgid "Emit to standard output the @dfn{service extension graph} of the operating system defined in @var{file} (@pxref{Service Composition}, for more information on service extensions). By default the output is in Dot/Graphviz format, but you can choose a different format with @option{--graph-backend}, as with @command{guix graph} (@pxref{Invoking guix graph, @option{--backend}}):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35406 +#: guix-git/doc/guix.texi:35862 msgid "The command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35409 +#: guix-git/doc/guix.texi:35865 #, no-wrap msgid "$ guix system extension-graph @var{file} | xdot -\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35412 +#: guix-git/doc/guix.texi:35868 msgid "shows the extension relations among services." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35414 +#: guix-git/doc/guix.texi:35870 msgid "system-shepherd-graph" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35414 +#: guix-git/doc/guix.texi:35870 #, no-wrap msgid "shepherd-graph" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35419 +#: guix-git/doc/guix.texi:35875 msgid "Emit to standard output the @dfn{dependency graph} of shepherd services of the operating system defined in @var{file}. @xref{Shepherd Services}, for more information and for an example graph." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35422 +#: guix-git/doc/guix.texi:35878 msgid "Again, the default output format is Dot/Graphviz, but you can pass @option{--graph-backend} to select a different one." msgstr "" #. type: section -#: guix-git/doc/guix.texi:35426 +#: guix-git/doc/guix.texi:35882 #, no-wrap msgid "Invoking @code{guix deploy}" msgstr "Вызов @command{guix pull}" #. type: Plain text -#: guix-git/doc/guix.texi:35434 +#: guix-git/doc/guix.texi:35890 msgid "We've already seen @code{operating-system} declarations used to manage a machine's configuration locally. Suppose you need to configure multiple machines, though---perhaps you're managing a service on the web that's comprised of several servers. @command{guix deploy} enables you to use those same @code{operating-system} declarations to manage multiple remote hosts at once as a logical ``deployment''." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35439 guix-git/doc/guix.texi:36900 +#: guix-git/doc/guix.texi:35895 guix-git/doc/guix.texi:37390 msgid "The functionality described in this section is still under development and is subject to change. Get in touch with us on @email{guix-devel@@gnu.org}!" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35443 +#: guix-git/doc/guix.texi:35899 #, no-wrap msgid "guix deploy @var{file}\n" msgstr "guix deploy @var{file}\n" #. type: Plain text -#: guix-git/doc/guix.texi:35447 +#: guix-git/doc/guix.texi:35903 msgid "Such an invocation will deploy the machines that the code within @var{file} evaluates to. As an example, @var{file} might contain a definition like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35454 +#: guix-git/doc/guix.texi:35910 #, no-wrap msgid "" ";; This is a Guix deployment of a \"bare bones\" setup, with\n" @@ -64294,7 +65262,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35457 +#: guix-git/doc/guix.texi:35913 #, no-wrap msgid "" "(use-service-modules networking ssh)\n" @@ -64303,7 +65271,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35478 +#: guix-git/doc/guix.texi:35934 #, no-wrap msgid "" "(define %system\n" @@ -64330,7 +65298,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35488 +#: guix-git/doc/guix.texi:35944 #, no-wrap msgid "" "(list (machine\n" @@ -64345,33 +65313,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35501 +#: guix-git/doc/guix.texi:35957 msgid "The file should evaluate to a list of @var{machine} objects. This example, upon being deployed, will create a new generation on the remote system realizing the @code{operating-system} declaration @code{%system}. @code{environment} and @code{configuration} specify how the machine should be provisioned---that is, how the computing resources should be created and managed. The above example does not create any resources, as a @code{'managed-host} is a machine that is already running the Guix system and available over the network. This is a particularly simple case; a more complex deployment may involve, for example, starting virtual machines through a Virtual Private Server (VPS) provider. In such a case, a different @var{environment} type would be used." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35506 +#: guix-git/doc/guix.texi:35962 msgid "Do note that you first need to generate a key pair on the coordinator machine to allow the daemon to export signed archives of files from the store (@pxref{Invoking guix archive}), though this step is automatic on Guix System:" msgstr "Есть ещё одна вещь, которую нужно выполнить после размещения @file{machines.scm}. Выше описано, что при разгрузке файлы передаются вперёд и назад между складами на машинах. Для этого необходимо сгенерировать ключ-пару на кадой машине, чтобы позволить демону экспортировать подписанные архивы файлов из склада (@pxref{Invoking guix archive}):" #. type: Plain text -#: guix-git/doc/guix.texi:35514 +#: guix-git/doc/guix.texi:35970 msgid "Each target machine must authorize the key of the master machine so that it accepts store items it receives from the coordinator:" msgstr "Каждая машина для сорки должна авторизовать ключ машины-инициатора, чтобы принимать элементы из склада, которые присылает инициатор:" #. type: example -#: guix-git/doc/guix.texi:35517 +#: guix-git/doc/guix.texi:35973 #, no-wrap msgid "# guix archive --authorize < coordinator-public-key.txt\n" msgstr "# guix archive --authorize < master-public-key.txt\n" #. type: Plain text -#: guix-git/doc/guix.texi:35528 +#: guix-git/doc/guix.texi:35984 msgid "@code{user}, in this example, specifies the name of the user account to log in as to perform the deployment. Its default value is @code{root}, but root login over SSH may be forbidden in some cases. To work around this, @command{guix deploy} can log in as an unprivileged user and employ @code{sudo} to escalate privileges. This will only work if @code{sudo} is currently installed on the remote and can be invoked non-interactively as @code{user}. That is, the line in @code{sudoers} granting @code{user} the ability to use @code{sudo} must contain the @code{NOPASSWD} tag. This can be accomplished with the following operating system configuration snippet:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35532 +#: guix-git/doc/guix.texi:35988 #, no-wrap msgid "" "(use-modules ...\n" @@ -64380,7 +65348,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35534 +#: guix-git/doc/guix.texi:35990 #, no-wrap msgid "" "(define %user \"username\")\n" @@ -64388,7 +65356,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35542 +#: guix-git/doc/guix.texi:35998 #, no-wrap msgid "" "(operating-system\n" @@ -64402,235 +65370,285 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35547 +#: guix-git/doc/guix.texi:36003 msgid "For more information regarding the format of the @file{sudoers} file, consult @command{man sudoers}." msgstr "" +#. type: Plain text +#: guix-git/doc/guix.texi:36008 +msgid "Once you've deployed a system on a set of machines, you may find it useful to run a command on all of them. The @option{--execute} or @option{-x} option lets you do that; the example below runs @command{uname -a} on all the machines listed in the deployment file:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:36011 +#, fuzzy, no-wrap +#| msgid "guix deploy @var{file}\n" +msgid "guix deploy @var{file} -x -- uname -a\n" +msgstr "guix deploy @var{file}\n" + +#. type: Plain text +#: guix-git/doc/guix.texi:36015 +msgid "One thing you may often need to do after deployment is restart specific services on all the machines, which you can do like so:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:36018 +#, no-wrap +msgid "guix deploy @var{file} -x -- herd restart @var{service}\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36022 +msgid "The @command{guix deploy -x} command returns zero if and only if the command succeeded on all the machines." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36027 +msgid "Below are the data types you need to know about when writing a deployment file." +msgstr "" + #. type: deftp -#: guix-git/doc/guix.texi:35548 +#: guix-git/doc/guix.texi:36028 #, no-wrap msgid "{Data Type} machine" msgstr "{Тип данных} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:35551 +#: guix-git/doc/guix.texi:36031 msgid "This is the data type representing a single machine in a heterogeneous Guix deployment." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35555 +#: guix-git/doc/guix.texi:36035 msgid "The object of the operating system configuration to deploy." msgstr "Управление конфигурацией операционной системы." #. type: code{#1} -#: guix-git/doc/guix.texi:35556 +#: guix-git/doc/guix.texi:36036 #, no-wrap msgid "environment" msgstr "guix environment" #. type: table -#: guix-git/doc/guix.texi:35558 +#: guix-git/doc/guix.texi:36038 msgid "An @code{environment-type} describing how the machine should be provisioned." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35559 +#: guix-git/doc/guix.texi:36039 #, no-wrap msgid "@code{configuration} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:35564 +#: guix-git/doc/guix.texi:36044 msgid "An object describing the configuration for the machine's @code{environment}. If the @code{environment} has a default configuration, @code{#f} may be used. If @code{#f} is used for an environment with no default configuration, however, an error will be thrown." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35567 +#: guix-git/doc/guix.texi:36047 #, no-wrap msgid "{Data Type} machine-ssh-configuration" msgstr "{Тип данных} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:35570 +#: guix-git/doc/guix.texi:36050 msgid "This is the data type representing the SSH client parameters for a machine with an @code{environment} of @code{managed-host-environment-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35573 +#: guix-git/doc/guix.texi:36053 #, no-wrap msgid "@code{build-locally?} (default: @code{#t})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:35575 +#: guix-git/doc/guix.texi:36055 msgid "If false, system derivations will be built on the machine being deployed to." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35575 +#: guix-git/doc/guix.texi:36055 #, no-wrap msgid "system" msgstr "system" #. type: table -#: guix-git/doc/guix.texi:35578 +#: guix-git/doc/guix.texi:36058 msgid "The system type describing the architecture of the machine being deployed to---e.g., @code{\"x86_64-linux\"}." msgstr "Тип системы удалённой машины, то есть @code{x86_64-linux}." #. type: item -#: guix-git/doc/guix.texi:35578 +#: guix-git/doc/guix.texi:36058 #, no-wrap msgid "@code{authorize?} (default: @code{#t})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:35581 +#: guix-git/doc/guix.texi:36061 msgid "If true, the coordinator's signing key will be added to the remote's ACL keyring." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35583 +#: guix-git/doc/guix.texi:36063 #, no-wrap msgid "@code{identity} (default: @code{#f})" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:35586 +#: guix-git/doc/guix.texi:36066 msgid "If specified, the path to the SSH private key to use to authenticate with the remote host." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35587 +#: guix-git/doc/guix.texi:36067 #, no-wrap msgid "@code{host-key} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:35589 +#: guix-git/doc/guix.texi:36069 msgid "This should be the SSH host key of the machine, which looks like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35592 +#: guix-git/doc/guix.texi:36072 #, no-wrap msgid "ssh-ed25519 AAAAC3Nz@dots{} root@@example.org\n" msgstr "ssh-ed25519 AAAAC3NzaC@dots{}mde+UhL hint@@example.org\n" #. type: table -#: guix-git/doc/guix.texi:35597 +#: guix-git/doc/guix.texi:36077 msgid "When @code{host-key} is @code{#f}, the server is authenticated against the @file{~/.ssh/known_hosts} file, just like the OpenSSH @command{ssh} client does." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35598 +#: guix-git/doc/guix.texi:36078 #, no-wrap msgid "@code{allow-downgrades?} (default: @code{#f})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:35600 +#: guix-git/doc/guix.texi:36080 msgid "Whether to allow potential downgrades." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35608 +#: guix-git/doc/guix.texi:36088 msgid "Like @command{guix system reconfigure}, @command{guix deploy} compares the channel commits currently deployed on the remote host (as returned by @command{guix system describe}) to those currently in use (as returned by @command{guix describe}) to determine whether commits currently in use are descendants of those deployed. When this is not the case and @code{allow-downgrades?} is false, it raises an error. This ensures you do not accidentally downgrade remote machines." msgstr "" +#. type: item +#: guix-git/doc/guix.texi:36089 +#, fuzzy, no-wrap +#| msgid "@code{ssl?} (default: @code{#t})" +msgid "@code{safety-checks?} (default: @code{#t})" +msgstr "@code{port} (default: @code{22})" + +#. type: table +#: guix-git/doc/guix.texi:36095 +msgid "Whether to perform ``safety checks'' before deployment. This includes verifying that devices and file systems referred to in the operating system configuration actually exist on the target machine, and making sure that Linux modules required to access storage devices at boot time are listed in the @code{initrd-modules} field of the operating system." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:36098 +msgid "These safety checks ensure that you do not inadvertently deploy a system that would fail to boot. Be careful before turning them off!" +msgstr "" + #. type: deftp -#: guix-git/doc/guix.texi:35611 +#: guix-git/doc/guix.texi:36101 #, no-wrap msgid "{Data Type} digital-ocean-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35614 +#: guix-git/doc/guix.texi:36104 msgid "This is the data type describing the Droplet that should be created for a machine with an @code{environment} of @code{digital-ocean-environment-type}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35616 +#: guix-git/doc/guix.texi:36106 #, no-wrap msgid "ssh-key" msgstr "host-key" #. type: table -#: guix-git/doc/guix.texi:35619 +#: guix-git/doc/guix.texi:36109 msgid "The path to the SSH private key to use to authenticate with the remote host. In the future, this field may not exist." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35619 +#: guix-git/doc/guix.texi:36109 #, no-wrap msgid "tags" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35622 +#: guix-git/doc/guix.texi:36112 msgid "A list of string ``tags'' that uniquely identify the machine. Must be given such that no two machines in the deployment have the same set of tags." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35622 +#: guix-git/doc/guix.texi:36112 #, no-wrap msgid "region" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35624 +#: guix-git/doc/guix.texi:36114 msgid "A Digital Ocean region slug, such as @code{\"nyc3\"}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35626 +#: guix-git/doc/guix.texi:36116 msgid "A Digital Ocean size slug, such as @code{\"s-1vcpu-1gb\"}" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35626 +#: guix-git/doc/guix.texi:36116 #, no-wrap msgid "enable-ipv6?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35628 +#: guix-git/doc/guix.texi:36118 msgid "Whether or not the droplet should be created with IPv6 networking." msgstr "" #. type: section -#: guix-git/doc/guix.texi:35632 +#: guix-git/doc/guix.texi:36122 #, no-wrap msgid "Running Guix in a Virtual Machine" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35640 +#: guix-git/doc/guix.texi:36130 msgid "To run Guix in a virtual machine (VM), one can use the pre-built Guix VM image distributed at @url{@value{BASE-URL}/guix-system-vm-image-@value{VERSION}.x86_64-linux.qcow2}. This image is a compressed image in QCOW format. You can pass it to an emulator such as @uref{https://qemu.org/, QEMU} (see below for details)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35647 +#: guix-git/doc/guix.texi:36137 msgid "This image boots the Xfce graphical environment and it contains some commonly used tools. You can install more software in the image by running @command{guix package} in a terminal (@pxref{Invoking guix package}). You can also reconfigure the system based on its initial configuration file available as @file{/run/current-system/configuration.scm} (@pxref{Using the Configuration System})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35650 +#: guix-git/doc/guix.texi:36140 msgid "Instead of using this pre-built image, one can also build their own image using @command{guix system image} (@pxref{Invoking guix system})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35651 +#: guix-git/doc/guix.texi:36141 #, no-wrap msgid "QEMU" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35658 +#: guix-git/doc/guix.texi:36148 msgid "If you built your own image, you must copy it out of the store (@pxref{The Store}) and give yourself permission to write to the copy before you can use it. When invoking QEMU, you must choose a system emulator that is suitable for your hardware platform. Here is a minimal QEMU invocation that will boot the result of @command{guix system image -t qcow2} on x86_64 hardware:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35665 +#: guix-git/doc/guix.texi:36155 #, no-wrap msgid "" "$ qemu-system-x86_64 \\\n" @@ -64641,137 +65659,137 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35668 +#: guix-git/doc/guix.texi:36158 msgid "Here is what each of these options means:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35670 +#: guix-git/doc/guix.texi:36160 #, no-wrap msgid "qemu-system-x86_64" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35673 +#: guix-git/doc/guix.texi:36163 msgid "This specifies the hardware platform to emulate. This should match the host." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35674 +#: guix-git/doc/guix.texi:36164 #, no-wrap msgid "-nic user,model=virtio-net-pci" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35682 +#: guix-git/doc/guix.texi:36172 msgid "Enable the unprivileged user-mode network stack. The guest OS can access the host but not vice versa. This is the simplest way to get the guest OS online. @code{model} specifies which network device to emulate: @code{virtio-net-pci} is a special device made for virtualized operating systems and recommended for most uses. Assuming your hardware platform is x86_64, you can get a list of available NIC models by running @command{qemu-system-x86_64 -nic model=help}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35683 +#: guix-git/doc/guix.texi:36173 #, no-wrap msgid "-enable-kvm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35687 +#: guix-git/doc/guix.texi:36177 msgid "If your system has hardware virtualization extensions, enabling the virtual machine support (KVM) of the Linux kernel will make things run faster." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35689 +#: guix-git/doc/guix.texi:36179 #, no-wrap msgid "-m 1024" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35692 +#: guix-git/doc/guix.texi:36182 msgid "RAM available to the guest OS, in mebibytes. Defaults to 128@tie{}MiB, which may be insufficient for some operations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35693 +#: guix-git/doc/guix.texi:36183 #, no-wrap msgid "-device virtio-blk,drive=myhd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35698 +#: guix-git/doc/guix.texi:36188 msgid "Create a @code{virtio-blk} drive called ``myhd''. @code{virtio-blk} is a ``paravirtualization'' mechanism for block devices that allows QEMU to achieve better performance than if it were emulating a complete disk drive. See the QEMU and KVM documentation for more info." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35699 +#: guix-git/doc/guix.texi:36189 #, no-wrap msgid "-drive if=none,file=/tmp/qemu-image,id=myhd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35702 +#: guix-git/doc/guix.texi:36192 msgid "Use our QCOW image, the @file{/tmp/qemu-image} file, as the backing store of the ``myhd'' drive." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35712 +#: guix-git/doc/guix.texi:36202 msgid "The default @command{run-vm.sh} script that is returned by an invocation of @command{guix system vm} does not add a @command{-nic user} flag by default. To get network access from within the vm add the @code{(dhcp-client-service)} to your system definition and start the VM using @command{$(guix system vm config.scm) -nic user}. An important caveat of using @command{-nic user} for networking is that @command{ping} will not work, because it uses the ICMP protocol. You'll have to use a different command to check for network connectivity, for example @command{guix download}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:35713 +#: guix-git/doc/guix.texi:36203 #, no-wrap msgid "Connecting Through SSH" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35721 +#: guix-git/doc/guix.texi:36211 msgid "To enable SSH inside a VM you need to add an SSH server like @code{openssh-service-type} to your VM (@pxref{Networking Services, @code{openssh-service-type}}). In addition you need to forward the SSH port, 22 by default, to the host. You can do this with" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35724 +#: guix-git/doc/guix.texi:36214 #, no-wrap msgid "$(guix system vm config.scm) -nic user,model=virtio-net-pci,hostfwd=tcp::10022-:22\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35727 +#: guix-git/doc/guix.texi:36217 msgid "To connect to the VM you can run" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35730 +#: guix-git/doc/guix.texi:36220 #, no-wrap msgid "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 10022 localhost\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35737 +#: guix-git/doc/guix.texi:36227 msgid "The @command{-p} tells @command{ssh} the port you want to connect to. @command{-o UserKnownHostsFile=/dev/null} prevents @command{ssh} from complaining every time you modify your @command{config.scm} file and the @command{-o StrictHostKeyChecking=no} prevents you from having to allow a connection to an unknown host every time you connect." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35743 +#: guix-git/doc/guix.texi:36233 msgid "If you find the above @samp{hostfwd} example not to be working (e.g., your SSH client hangs attempting to connect to the mapped port of your VM), make sure that your Guix System VM has networking support, such as by using the @code{dhcp-client-service-type} service type." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:35745 +#: guix-git/doc/guix.texi:36235 #, no-wrap msgid "Using @command{virt-viewer} with Spice" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35751 +#: guix-git/doc/guix.texi:36241 msgid "As an alternative to the default @command{qemu} graphical client you can use the @command{remote-viewer} from the @command{virt-viewer} package. To connect pass the @command{-spice port=5930,disable-ticketing} flag to @command{qemu}. See previous section for further information on how to do this." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35754 +#: guix-git/doc/guix.texi:36244 msgid "Spice also allows you to do some nice stuff like share your clipboard with your VM@. To enable that you'll also have to pass the following flags to @command{qemu}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35760 +#: guix-git/doc/guix.texi:36250 #, fuzzy, no-wrap #| msgid "" #| "-device virtio-serial-pci,id=virtio-serial0,max_ports=16,bus=pci.0,addr=0x5\n" @@ -64790,81 +65808,81 @@ msgstr "" "name=com.redhat.spice.0\n" #. type: Plain text -#: guix-git/doc/guix.texi:35764 +#: guix-git/doc/guix.texi:36254 msgid "You'll also need to add the @code{(spice-vdagent-service)} to your system definition (@pxref{Miscellaneous Services, Spice service})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35771 +#: guix-git/doc/guix.texi:36261 msgid "The previous sections show the available services and how one can combine them in an @code{operating-system} declaration. But how do we define them in the first place? And what is a service anyway?" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35784 +#: guix-git/doc/guix.texi:36274 #, no-wrap msgid "daemons" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35797 +#: guix-git/doc/guix.texi:36287 msgid "Here we define a @dfn{service} as, broadly, something that extends the functionality of the operating system. Often a service is a process---a @dfn{daemon}---started when the system boots: a secure shell server, a Web server, the Guix build daemon, etc. Sometimes a service is a daemon whose execution can be triggered by another daemon---e.g., an FTP server started by @command{inetd} or a D-Bus service activated by @command{dbus-daemon}. Occasionally, a service does not map to a daemon. For instance, the ``account'' service collects user accounts and makes sure they exist when the system runs; the ``udev'' service collects device management rules and makes them available to the eudev daemon; the @file{/etc} service populates the @file{/etc} directory of the system." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35798 +#: guix-git/doc/guix.texi:36288 #, no-wrap msgid "service extensions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35810 +#: guix-git/doc/guix.texi:36300 msgid "Guix system services are connected by @dfn{extensions}. For instance, the secure shell service @emph{extends} the Shepherd---the initialization system, running as PID@tie{}1---by giving it the command lines to start and stop the secure shell daemon (@pxref{Networking Services, @code{openssh-service-type}}); the UPower service extends the D-Bus service by passing it its @file{.service} specification, and extends the udev service by passing it device management rules (@pxref{Desktop Services, @code{upower-service}}); the Guix daemon service extends the Shepherd by passing it the command lines to start and stop the daemon, and extends the account service by passing it a list of required build user accounts (@pxref{Base Services})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35814 +#: guix-git/doc/guix.texi:36304 msgid "All in all, services and their ``extends'' relations form a directed acyclic graph (DAG). If we represent services as boxes and extensions as arrows, a typical system might provide something like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35816 +#: guix-git/doc/guix.texi:36306 msgid "@image{images/service-graph,,5in,Typical service extension graph.}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35817 +#: guix-git/doc/guix.texi:36307 #, no-wrap msgid "system service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35825 +#: guix-git/doc/guix.texi:36315 msgid "At the bottom, we see the @dfn{system service}, which produces the directory containing everything to run and boot the system, as returned by the @command{guix system build} command. @xref{Service Reference}, to learn about the other service types shown here. @xref{system-extension-graph, the @command{guix system extension-graph} command}, for information on how to generate this representation for a particular operating system definition." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35826 +#: guix-git/doc/guix.texi:36316 #, no-wrap msgid "service types" msgstr "service types" #. type: Plain text -#: guix-git/doc/guix.texi:35832 +#: guix-git/doc/guix.texi:36322 msgid "Technically, developers can define @dfn{service types} to express these relations. There can be any number of services of a given type on the system---for instance, a system running two instances of the GNU secure shell server (lsh) has two instances of @code{lsh-service-type}, with different parameters." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35835 +#: guix-git/doc/guix.texi:36325 msgid "The following section describes the programming interface for service types and services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35842 +#: guix-git/doc/guix.texi:36332 msgid "A @dfn{service type} is a node in the DAG described above. Let us start with a simple example, the service type for the Guix build daemon (@pxref{Invoking guix-daemon}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35852 +#: guix-git/doc/guix.texi:36342 #, no-wrap msgid "" "(define guix-service-type\n" @@ -64886,75 +65904,75 @@ msgstr "" " (default-value (guix-configuration))))\n" #. type: Plain text -#: guix-git/doc/guix.texi:35856 +#: guix-git/doc/guix.texi:36346 msgid "It defines three things:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35860 +#: guix-git/doc/guix.texi:36350 msgid "A name, whose sole purpose is to make inspection and debugging easier." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35865 +#: guix-git/doc/guix.texi:36355 msgid "A list of @dfn{service extensions}, where each extension designates the target service type and a procedure that, given the parameters of the service, returns a list of objects to extend the service of that type." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35868 +#: guix-git/doc/guix.texi:36358 msgid "Every service type has at least one service extension. The only exception is the @dfn{boot service type}, which is the ultimate service." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35871 +#: guix-git/doc/guix.texi:36361 msgid "Optionally, a default value for instances of this type." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35874 +#: guix-git/doc/guix.texi:36364 msgid "In this example, @code{guix-service-type} extends three services:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35876 +#: guix-git/doc/guix.texi:36366 #, no-wrap msgid "shepherd-root-service-type" msgstr "shepherd-root-service-type" #. type: table -#: guix-git/doc/guix.texi:35881 +#: guix-git/doc/guix.texi:36371 msgid "The @code{guix-shepherd-service} procedure defines how the Shepherd service is extended. Namely, it returns a @code{} object that defines how @command{guix-daemon} is started and stopped (@pxref{Shepherd Services})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35882 +#: guix-git/doc/guix.texi:36372 #, no-wrap msgid "account-service-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35887 +#: guix-git/doc/guix.texi:36377 msgid "This extension for this service is computed by @code{guix-accounts}, which returns a list of @code{user-group} and @code{user-account} objects representing the build user accounts (@pxref{Invoking guix-daemon})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35888 +#: guix-git/doc/guix.texi:36378 #, no-wrap msgid "activation-service-type" msgstr "activation-service-type" #. type: table -#: guix-git/doc/guix.texi:35892 +#: guix-git/doc/guix.texi:36382 msgid "Here @code{guix-activation} is a procedure that returns a gexp, which is a code snippet to run at ``activation time''---e.g., when the service is booted." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35895 +#: guix-git/doc/guix.texi:36385 msgid "A service of this type is instantiated like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35901 +#: guix-git/doc/guix.texi:36391 #, no-wrap msgid "" "(service guix-service-type\n" @@ -64968,28 +65986,28 @@ msgstr "" " (use-substitutes? #f)))\n" #. type: Plain text -#: guix-git/doc/guix.texi:35909 +#: guix-git/doc/guix.texi:36399 msgid "The second argument to the @code{service} form is a value representing the parameters of this specific service instance. @xref{guix-configuration-type, @code{guix-configuration}}, for information about the @code{guix-configuration} data type. When the value is omitted, the default value specified by @code{guix-service-type} is used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35912 +#: guix-git/doc/guix.texi:36402 #, no-wrap msgid "(service guix-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35916 +#: guix-git/doc/guix.texi:36406 msgid "@code{guix-service-type} is quite simple because it extends other services but is not extensible itself." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35920 +#: guix-git/doc/guix.texi:36410 msgid "The service type for an @emph{extensible} service looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35927 +#: guix-git/doc/guix.texi:36417 #, no-wrap msgid "" "(define udev-service-type\n" @@ -65007,7 +66025,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:35935 +#: guix-git/doc/guix.texi:36425 #, no-wrap msgid "" " (compose concatenate) ;concatenate the list of rules\n" @@ -65020,96 +66038,96 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35941 +#: guix-git/doc/guix.texi:36431 msgid "This is the service type for the @uref{https://wiki.gentoo.org/wiki/Project:Eudev, eudev device management daemon}. Compared to the previous example, in addition to an extension of @code{shepherd-root-service-type}, we see two new fields:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35943 +#: guix-git/doc/guix.texi:36433 #, no-wrap msgid "compose" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35946 +#: guix-git/doc/guix.texi:36436 msgid "This is the procedure to @dfn{compose} the list of extensions to services of this type." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35949 +#: guix-git/doc/guix.texi:36439 msgid "Services can extend the udev service by passing it lists of rules; we compose those extensions simply by concatenating them." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35950 +#: guix-git/doc/guix.texi:36440 #, no-wrap msgid "extend" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35953 +#: guix-git/doc/guix.texi:36443 msgid "This procedure defines how the value of the service is @dfn{extended} with the composition of the extensions." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35958 +#: guix-git/doc/guix.texi:36448 msgid "Udev extensions are composed into a list of rules, but the udev service value is itself a @code{} record. So here, we extend that record by appending the list of rules it contains to the list of contributed rules." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35964 +#: guix-git/doc/guix.texi:36454 msgid "This is a string giving an overview of the service type. The string can contain Texinfo markup (@pxref{Overview,,, texinfo, GNU Texinfo}). The @command{guix system search} command searches these strings and displays them (@pxref{Invoking guix system})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35969 +#: guix-git/doc/guix.texi:36459 msgid "There can be only one instance of an extensible service type such as @code{udev-service-type}. If there were more, the @code{service-extension} specifications would be ambiguous." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35972 +#: guix-git/doc/guix.texi:36462 msgid "Still here? The next section provides a reference of the programming interface for services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35980 +#: guix-git/doc/guix.texi:36470 msgid "We have seen an overview of service types (@pxref{Service Types and Services}). This section provides a reference on how to manipulate services and service types. This interface is provided by the @code{(gnu services)} module." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35981 +#: guix-git/doc/guix.texi:36471 #, no-wrap msgid "{Scheme Procedure} service @var{type} [@var{value}]" msgstr "{Scheme Procedure} service @var{type} [@var{value}]" #. type: deffn -#: guix-git/doc/guix.texi:35985 +#: guix-git/doc/guix.texi:36475 msgid "Return a new service of @var{type}, a @code{} object (see below). @var{value} can be any object; it represents the parameters of this particular service instance." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35989 +#: guix-git/doc/guix.texi:36479 msgid "When @var{value} is omitted, the default value specified by @var{type} is used; if @var{type} does not specify a default value, an error is raised." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35991 +#: guix-git/doc/guix.texi:36481 msgid "For instance, this:" msgstr "Например:" #. type: lisp -#: guix-git/doc/guix.texi:35994 +#: guix-git/doc/guix.texi:36484 #, no-wrap msgid "(service openssh-service-type)\n" msgstr "(service openssh-service-type)\n" #. type: deffn -#: guix-git/doc/guix.texi:35998 +#: guix-git/doc/guix.texi:36488 msgid "is equivalent to this:" msgstr "равнозачно этому:" #. type: lisp -#: guix-git/doc/guix.texi:36002 +#: guix-git/doc/guix.texi:36492 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -65119,50 +66137,50 @@ msgstr "" " (openssh-configuration))\n" #. type: deffn -#: guix-git/doc/guix.texi:36006 +#: guix-git/doc/guix.texi:36496 msgid "In both cases the result is an instance of @code{openssh-service-type} with the default configuration." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36008 +#: guix-git/doc/guix.texi:36498 #, no-wrap msgid "{Scheme Procedure} service? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36010 +#: guix-git/doc/guix.texi:36500 msgid "Return true if @var{obj} is a service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36012 +#: guix-git/doc/guix.texi:36502 #, no-wrap msgid "{Scheme Procedure} service-kind @var{service}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36014 +#: guix-git/doc/guix.texi:36504 msgid "Return the type of @var{service}---i.e., a @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36016 +#: guix-git/doc/guix.texi:36506 #, no-wrap msgid "{Scheme Procedure} service-value @var{service}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36019 +#: guix-git/doc/guix.texi:36509 msgid "Return the value associated with @var{service}. It represents its parameters." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36022 +#: guix-git/doc/guix.texi:36512 msgid "Here is an example of how a service is created and manipulated:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36031 +#: guix-git/doc/guix.texi:36521 #, no-wrap msgid "" "(define s\n" @@ -65176,7 +66194,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36034 +#: guix-git/doc/guix.texi:36524 #, no-wrap msgid "" "(service? s)\n" @@ -65185,7 +66203,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36037 +#: guix-git/doc/guix.texi:36527 #, no-wrap msgid "" "(eq? (service-kind s) nginx-service-type)\n" @@ -65193,213 +66211,213 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36047 +#: guix-git/doc/guix.texi:36537 msgid "The @code{modify-services} form provides a handy way to change the parameters of some of the services of a list such as @code{%base-services} (@pxref{Base Services, @code{%base-services}}). It evaluates to a list of services. Of course, you could always use standard list combinators such as @code{map} and @code{fold} to do that (@pxref{SRFI-1, List Library,, guile, GNU Guile Reference Manual}); @code{modify-services} simply provides a more concise form for this common pattern." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36048 +#: guix-git/doc/guix.texi:36538 #, no-wrap msgid "{Scheme Syntax} modify-services @var{services} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36050 +#: guix-git/doc/guix.texi:36540 msgid "(@var{type} @var{variable} => @var{body}) @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36053 +#: guix-git/doc/guix.texi:36543 msgid "Modify the services listed in @var{services} according to the given clauses. Each clause has the form:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36056 +#: guix-git/doc/guix.texi:36546 #, no-wrap msgid "(@var{type} @var{variable} => @var{body})\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36063 +#: guix-git/doc/guix.texi:36553 msgid "where @var{type} is a service type---e.g., @code{guix-service-type}---and @var{variable} is an identifier that is bound within the @var{body} to the service parameters---e.g., a @code{guix-configuration} instance---of the original service of that @var{type}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36070 +#: guix-git/doc/guix.texi:36560 msgid "The @var{body} should evaluate to the new service parameters, which will be used to configure the new service. This new service will replace the original in the resulting list. Because a service's service parameters are created using @code{define-record-type*}, you can write a succinct @var{body} that evaluates to the new service parameters by using the @code{inherit} feature that @code{define-record-type*} provides." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36072 +#: guix-git/doc/guix.texi:36562 #, fuzzy #| msgid "Packages are currently available on the following platforms:" msgid "Clauses can also have the following form:" msgstr "Пакеты в данные момент доступны для следующих платформ:" #. type: lisp -#: guix-git/doc/guix.texi:36075 +#: guix-git/doc/guix.texi:36565 #, fuzzy, no-wrap #| msgid "(service @var{type})\n" msgid "(delete @var{type})\n" msgstr "(service @var{type})\n" #. type: deffn -#: guix-git/doc/guix.texi:36079 +#: guix-git/doc/guix.texi:36569 msgid "Such a clause removes all services of the given @var{type} from @var{services}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36081 +#: guix-git/doc/guix.texi:36571 msgid "@xref{Using the Configuration System}, for example usage." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36088 +#: guix-git/doc/guix.texi:36578 msgid "Next comes the programming interface for service types. This is something you want to know when writing new service definitions, but not necessarily when simply looking for ways to customize your @code{operating-system} declaration." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36089 +#: guix-git/doc/guix.texi:36579 #, no-wrap msgid "{Data Type} service-type" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36090 +#: guix-git/doc/guix.texi:36580 #, no-wrap msgid "service type" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36093 +#: guix-git/doc/guix.texi:36583 msgid "This is the representation of a @dfn{service type} (@pxref{Service Types and Services})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36097 +#: guix-git/doc/guix.texi:36587 msgid "This is a symbol, used only to simplify inspection and debugging." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:36098 +#: guix-git/doc/guix.texi:36588 #, no-wrap msgid "extensions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36100 +#: guix-git/doc/guix.texi:36590 msgid "A non-empty list of @code{} objects (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36101 +#: guix-git/doc/guix.texi:36591 #, no-wrap msgid "@code{compose} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36105 +#: guix-git/doc/guix.texi:36595 msgid "If this is @code{#f}, then the service type denotes services that cannot be extended---i.e., services that do not receive ``values'' from other services." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36109 +#: guix-git/doc/guix.texi:36599 msgid "Otherwise, it must be a one-argument procedure. The procedure is called by @code{fold-services} and is passed a list of values collected from extensions. It may return any single value." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36110 +#: guix-git/doc/guix.texi:36600 #, no-wrap msgid "@code{extend} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36112 +#: guix-git/doc/guix.texi:36602 msgid "If this is @code{#f}, services of this type cannot be extended." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36118 +#: guix-git/doc/guix.texi:36608 msgid "Otherwise, it must be a two-argument procedure: @code{fold-services} calls it, passing it the initial value of the service as the first argument and the result of applying @code{compose} to the extension values as the second argument. It must return a value that is a valid parameter value for the service instance." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36124 +#: guix-git/doc/guix.texi:36614 msgid "This is a string, possibly using Texinfo markup, describing in a couple of sentences what the service is about. This string allows users to find about the service through @command{guix system search} (@pxref{Invoking guix system})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36125 +#: guix-git/doc/guix.texi:36615 #, no-wrap msgid "@code{default-value} (default: @code{&no-default-value})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:36128 +#: guix-git/doc/guix.texi:36618 msgid "The default value associated for instances of this service type. This allows users to use the @code{service} form without its second argument:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36131 +#: guix-git/doc/guix.texi:36621 #, no-wrap msgid "(service @var{type})\n" msgstr "(service @var{type})\n" #. type: table -#: guix-git/doc/guix.texi:36135 +#: guix-git/doc/guix.texi:36625 msgid "The returned service in this case has the default value specified by @var{type}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36138 +#: guix-git/doc/guix.texi:36628 msgid "@xref{Service Types and Services}, for examples." msgstr "@xref{Service Types and Services}, for examples." #. type: deffn -#: guix-git/doc/guix.texi:36140 +#: guix-git/doc/guix.texi:36630 #, no-wrap msgid "{Scheme Procedure} service-extension @var{target-type} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36146 +#: guix-git/doc/guix.texi:36636 msgid "@var{compute} Return a new extension for services of type @var{target-type}. @var{compute} must be a one-argument procedure: @code{fold-services} calls it, passing it the value associated with the service that provides the extension; it must return a valid value for the target service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36148 +#: guix-git/doc/guix.texi:36638 #, no-wrap msgid "{Scheme Procedure} service-extension? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36150 +#: guix-git/doc/guix.texi:36640 msgid "Return true if @var{obj} is a service extension." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36156 +#: guix-git/doc/guix.texi:36646 msgid "Occasionally, you might want to simply extend an existing service. This involves creating a new service type and specifying the extension of interest, which can be verbose; the @code{simple-service} procedure provides a shorthand for this." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36157 +#: guix-git/doc/guix.texi:36647 #, no-wrap msgid "{Scheme Procedure} simple-service @var{name} @var{target} @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36161 +#: guix-git/doc/guix.texi:36651 msgid "Return a service that extends @var{target} with @var{value}. This works by creating a singleton service type @var{name}, of which the returned service is an instance." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36164 +#: guix-git/doc/guix.texi:36654 msgid "For example, this extends mcron (@pxref{Scheduled Job Execution}) with an additional job:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36168 +#: guix-git/doc/guix.texi:36658 #, no-wrap msgid "" "(simple-service 'my-mcron-job mcron-service-type\n" @@ -65409,185 +66427,185 @@ msgstr "" " #~(job '(next-hour (3)) \"guix gc -F 2G\"))\n" #. type: Plain text -#: guix-git/doc/guix.texi:36178 +#: guix-git/doc/guix.texi:36668 msgid "At the core of the service abstraction lies the @code{fold-services} procedure, which is responsible for ``compiling'' a list of services down to a single directory that contains everything needed to boot and run the system---the directory shown by the @command{guix system build} command (@pxref{Invoking guix system}). In essence, it propagates service extensions down the service graph, updating each node parameters on the way, until it reaches the root node." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36179 +#: guix-git/doc/guix.texi:36669 #, no-wrap msgid "{Scheme Procedure} fold-services @var{services} @" msgstr "{Scheme Procedure} fold-services @var{services} @" #. type: deffn -#: guix-git/doc/guix.texi:36183 +#: guix-git/doc/guix.texi:36673 msgid "[#:target-type @var{system-service-type}] Fold @var{services} by propagating their extensions down to the root of type @var{target-type}; return the root service adjusted accordingly." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36187 +#: guix-git/doc/guix.texi:36677 msgid "Lastly, the @code{(gnu services)} module also defines several essential service types, some of which are listed below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36188 +#: guix-git/doc/guix.texi:36678 #, no-wrap msgid "{Scheme Variable} system-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36191 +#: guix-git/doc/guix.texi:36681 msgid "This is the root of the service graph. It produces the system directory as returned by the @command{guix system build} command." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36193 +#: guix-git/doc/guix.texi:36683 #, no-wrap msgid "{Scheme Variable} boot-service-type" msgstr "{Scheme Variable} boot-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36196 +#: guix-git/doc/guix.texi:36686 msgid "The type of the ``boot service'', which produces the @dfn{boot script}. The boot script is what the initial RAM disk runs when booting." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36198 +#: guix-git/doc/guix.texi:36688 #, no-wrap msgid "{Scheme Variable} etc-service-type" msgstr "{Scheme Variable} etc-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36202 +#: guix-git/doc/guix.texi:36692 msgid "The type of the @file{/etc} service. This service is used to create files under @file{/etc} and can be extended by passing it name/file tuples such as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36205 +#: guix-git/doc/guix.texi:36695 #, no-wrap msgid "(list `(\"issue\" ,(plain-file \"issue\" \"Welcome!\\n\")))\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36209 +#: guix-git/doc/guix.texi:36699 msgid "In this example, the effect would be to add an @file{/etc/issue} file pointing to the given file." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36211 +#: guix-git/doc/guix.texi:36701 #, no-wrap msgid "{Scheme Variable} setuid-program-service-type" msgstr "{Scheme Variable} setuid-program-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36215 +#: guix-git/doc/guix.texi:36705 msgid "Type for the ``setuid-program service''. This service collects lists of executable file names, passed as gexps, and adds them to the set of setuid-root programs on the system (@pxref{Setuid Programs})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36217 +#: guix-git/doc/guix.texi:36707 #, no-wrap msgid "{Scheme Variable} profile-service-type" msgstr "{Scheme Variable} profile-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36221 +#: guix-git/doc/guix.texi:36711 msgid "Type of the service that populates the @dfn{system profile}---i.e., the programs under @file{/run/current-system/profile}. Other services can extend it by passing it lists of packages to add to the system profile." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:36225 +#: guix-git/doc/guix.texi:36715 msgid "provenance-service-type" msgstr "provenance-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36225 +#: guix-git/doc/guix.texi:36715 #, no-wrap msgid "{Scheme Variable} provenance-service-type" msgstr "{Scheme Variable} provenance-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36229 +#: guix-git/doc/guix.texi:36719 msgid "This is the type of the service that records @dfn{provenance meta-data} in the system itself. It creates several files under @file{/run/current-system}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36231 +#: guix-git/doc/guix.texi:36721 #, no-wrap msgid "channels.scm" msgstr "каналы" #. type: table -#: guix-git/doc/guix.texi:36236 +#: guix-git/doc/guix.texi:36726 msgid "This is a ``channel file'' that can be passed to @command{guix pull -C} or @command{guix time-machine -C}, and which describes the channels used to build the system, if that information was available (@pxref{Channels})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36237 +#: guix-git/doc/guix.texi:36727 #, no-wrap msgid "configuration.scm" msgstr "Конфигурирование системы" #. type: table -#: guix-git/doc/guix.texi:36242 +#: guix-git/doc/guix.texi:36732 msgid "This is the file that was passed as the value for this @code{provenance-service-type} service. By default, @command{guix system reconfigure} automatically passes the OS configuration file it received on the command line." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36243 +#: guix-git/doc/guix.texi:36733 #, no-wrap msgid "provenance" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36246 +#: guix-git/doc/guix.texi:36736 msgid "This contains the same information as the two other files but in a format that is more readily processable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36250 +#: guix-git/doc/guix.texi:36740 msgid "In general, these two pieces of information (channels and configuration file) are enough to reproduce the operating system ``from source''." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36251 +#: guix-git/doc/guix.texi:36741 #, no-wrap msgid "Caveats" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36258 +#: guix-git/doc/guix.texi:36748 msgid "This information is necessary to rebuild your operating system, but it is not always sufficient. In particular, @file{configuration.scm} itself is insufficient if it is not self-contained---if it refers to external Guile modules or to extra files. If you want @file{configuration.scm} to be self-contained, we recommend that modules or files it refers to be part of a channel." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36266 +#: guix-git/doc/guix.texi:36756 msgid "Besides, provenance meta-data is ``silent'' in the sense that it does not change the bits contained in your system, @emph{except for the meta-data bits themselves}. Two different OS configurations or sets of channels can lead to the same system, bit-for-bit; when @code{provenance-service-type} is used, these two systems will have different meta-data and thus different store file names, which makes comparison less trivial." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36271 +#: guix-git/doc/guix.texi:36761 msgid "This service is automatically added to your operating system configuration when you use @command{guix system reconfigure}, @command{guix system init}, or @command{guix deploy}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36273 +#: guix-git/doc/guix.texi:36763 #, no-wrap msgid "{Scheme Variable} linux-loadable-module-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:36277 +#: guix-git/doc/guix.texi:36767 msgid "Type of the service that collects lists of packages containing kernel-loadable modules, and adds them to the set of kernel-loadable modules." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36280 +#: guix-git/doc/guix.texi:36770 msgid "This service type is intended to be extended by other service types, such as below:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36286 +#: guix-git/doc/guix.texi:36776 #, no-wrap msgid "" "(simple-service 'installing-module\n" @@ -65597,192 +66615,192 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36290 +#: guix-git/doc/guix.texi:36780 msgid "This does not actually load modules at bootup, only adds it to the kernel profile so that it @emph{can} be loaded by other means." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36295 guix-git/doc/guix.texi:37447 +#: guix-git/doc/guix.texi:36785 #, no-wrap msgid "shepherd services" msgstr "сервисы shepherd" #. type: cindex -#: guix-git/doc/guix.texi:36296 +#: guix-git/doc/guix.texi:36786 #, no-wrap msgid "PID 1" msgstr "PID 1" #. type: cindex -#: guix-git/doc/guix.texi:36297 +#: guix-git/doc/guix.texi:36787 #, no-wrap msgid "init system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36303 +#: guix-git/doc/guix.texi:36793 msgid "The @code{(gnu services shepherd)} module provides a way to define services managed by the GNU@tie{}Shepherd, which is the initialization system---the first process that is started when the system boots, also known as PID@tie{}1 (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36309 +#: guix-git/doc/guix.texi:36799 msgid "Services in the Shepherd can depend on each other. For instance, the SSH daemon may need to be started after the syslog daemon has been started, which in turn can only happen once all the file systems have been mounted. The simple operating system defined earlier (@pxref{Using the Configuration System}) results in a service graph like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36311 +#: guix-git/doc/guix.texi:36801 msgid "@image{images/shepherd-graph,,5in,Typical shepherd service graph.}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36315 +#: guix-git/doc/guix.texi:36805 msgid "You can actually generate such a graph for any operating system definition using the @command{guix system shepherd-graph} command (@pxref{system-shepherd-graph, @command{guix system shepherd-graph}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36319 +#: guix-git/doc/guix.texi:36809 msgid "The @code{%shepherd-root-service} is a service object representing PID@tie{}1, of type @code{shepherd-root-service-type}; it can be extended by passing it lists of @code{} objects." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36320 +#: guix-git/doc/guix.texi:36810 #, no-wrap msgid "{Data Type} shepherd-service" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36322 +#: guix-git/doc/guix.texi:36812 msgid "The data type representing a service managed by the Shepherd." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:36324 +#: guix-git/doc/guix.texi:36814 #, no-wrap msgid "provision" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36326 +#: guix-git/doc/guix.texi:36816 msgid "This is a list of symbols denoting what the service provides." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36331 +#: guix-git/doc/guix.texi:36821 msgid "These are the names that may be passed to @command{herd start}, @command{herd status}, and similar commands (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual}). @xref{Slots of services, the @code{provides} slot,, shepherd, The GNU Shepherd Manual}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36332 +#: guix-git/doc/guix.texi:36822 #, no-wrap msgid "@code{requirement} (default: @code{'()})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:36334 +#: guix-git/doc/guix.texi:36824 msgid "List of symbols denoting the Shepherd services this one depends on." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36335 +#: guix-git/doc/guix.texi:36825 #, no-wrap msgid "one-shot services, for the Shepherd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36340 +#: guix-git/doc/guix.texi:36830 msgid "Whether this service is @dfn{one-shot}. One-shot services stop immediately after their @code{start} action has completed. @xref{Slots of services,,, shepherd, The GNU Shepherd Manual}, for more info." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36341 +#: guix-git/doc/guix.texi:36831 #, no-wrap msgid "@code{respawn?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36344 +#: guix-git/doc/guix.texi:36834 msgid "Whether to restart the service when it stops, for instance when the underlying process dies." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:36345 +#: guix-git/doc/guix.texi:36835 #, no-wrap msgid "start" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:36346 +#: guix-git/doc/guix.texi:36836 #, no-wrap msgid "@code{stop} (default: @code{#~(const #f)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36352 +#: guix-git/doc/guix.texi:36842 msgid "The @code{start} and @code{stop} fields refer to the Shepherd's facilities to start and stop processes (@pxref{Service De- and Constructors,,, shepherd, The GNU Shepherd Manual}). They are given as G-expressions that get expanded in the Shepherd configuration file (@pxref{G-Expressions})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36353 +#: guix-git/doc/guix.texi:36843 #, no-wrap msgid "@code{actions} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36354 +#: guix-git/doc/guix.texi:36844 #, no-wrap msgid "actions, of Shepherd services" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36359 +#: guix-git/doc/guix.texi:36849 msgid "This is a list of @code{shepherd-action} objects (see below) defining @dfn{actions} supported by the service, in addition to the standard @code{start} and @code{stop} actions. Actions listed here become available as @command{herd} sub-commands:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36362 +#: guix-git/doc/guix.texi:36852 #, no-wrap msgid "herd @var{action} @var{service} [@var{arguments}@dots{}]\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36364 +#: guix-git/doc/guix.texi:36854 #, no-wrap msgid "@code{auto-start?} (default: @code{#t})" msgstr "@code{auto-start?} (default: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:36367 +#: guix-git/doc/guix.texi:36857 msgid "Whether this service should be started automatically by the Shepherd. If it is @code{#f} the service has to be started manually with @code{herd start}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36370 +#: guix-git/doc/guix.texi:36860 msgid "A documentation string, as shown when running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36373 +#: guix-git/doc/guix.texi:36863 #, no-wrap msgid "herd doc @var{service-name}\n" msgstr "herd doc @var{service-name}\n" #. type: table -#: guix-git/doc/guix.texi:36377 +#: guix-git/doc/guix.texi:36867 msgid "where @var{service-name} is one of the symbols in @code{provision} (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36381 +#: guix-git/doc/guix.texi:36871 msgid "This is the list of modules that must be in scope when @code{start} and @code{stop} are evaluated." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36389 +#: guix-git/doc/guix.texi:36879 msgid "The example below defines a Shepherd service that spawns @command{syslogd}, the system logger from the GNU Networking Utilities (@pxref{syslogd invocation, @command{syslogd},, inetutils, GNU Inetutils}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36401 +#: guix-git/doc/guix.texi:36891 #, no-wrap msgid "" "(let ((config (plain-file \"syslogd.conf\" \"@dots{}\")))\n" @@ -65798,55 +66816,55 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36416 +#: guix-git/doc/guix.texi:36906 msgid "Key elements in this example are the @code{start} and @code{stop} fields: they are @dfn{staged} code snippets that use the @code{make-forkexec-constructor} procedure provided by the Shepherd and its dual, @code{make-kill-destructor} (@pxref{Service De- and Constructors,,, shepherd, The GNU Shepherd Manual}). The @code{start} field will have @command{shepherd} spawn @command{syslogd} with the given option; note that we pass @code{config} after @option{--rcfile}, which is a configuration file declared above (contents of this file are omitted). Likewise, the @code{stop} field tells how this service is to be stopped; in this case, it is stopped by making the @code{kill} system call on its PID@. Code staging is achieved using G-expressions: @code{#~} stages code, while @code{#$} ``escapes'' back to host code (@pxref{G-Expressions})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36417 +#: guix-git/doc/guix.texi:36907 #, no-wrap msgid "{Data Type} shepherd-action" msgstr "{Data Type} shepherd-action" #. type: deftp -#: guix-git/doc/guix.texi:36420 +#: guix-git/doc/guix.texi:36910 msgid "This is the data type that defines additional actions implemented by a Shepherd service (see above)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36424 +#: guix-git/doc/guix.texi:36914 msgid "Symbol naming the action." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36427 +#: guix-git/doc/guix.texi:36917 msgid "This is a documentation string for the action. It can be viewed by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36430 +#: guix-git/doc/guix.texi:36920 #, no-wrap msgid "herd doc @var{service} action @var{action}\n" msgstr "herd doc @var{service} action @var{action}\n" #. type: item -#: guix-git/doc/guix.texi:36432 +#: guix-git/doc/guix.texi:36922 #, no-wrap msgid "procedure" msgstr "процедура" #. type: table -#: guix-git/doc/guix.texi:36436 +#: guix-git/doc/guix.texi:36926 msgid "This should be a gexp that evaluates to a procedure of at least one argument, which is the ``running value'' of the service (@pxref{Slots of services,,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36440 +#: guix-git/doc/guix.texi:36930 msgid "The following example defines an action called @code{say-hello} that kindly greets the user:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36449 +#: guix-git/doc/guix.texi:36939 #, no-wrap msgid "" "(shepherd-action\n" @@ -65859,12 +66877,12 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36452 +#: guix-git/doc/guix.texi:36942 msgid "Assuming this action is added to the @code{example} service, then you can do:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36458 +#: guix-git/doc/guix.texi:36948 #, no-wrap msgid "" "# herd say-hello example\n" @@ -65874,66 +66892,66 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36463 +#: guix-git/doc/guix.texi:36953 msgid "This, as you can see, is a fairly sophisticated way to say hello. @xref{Service Convenience,,, shepherd, The GNU Shepherd Manual}, for more info on actions." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36465 +#: guix-git/doc/guix.texi:36955 #, no-wrap msgid "{Scheme Variable} shepherd-root-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36467 +#: guix-git/doc/guix.texi:36957 msgid "The service type for the Shepherd ``root service''---i.e., PID@tie{}1." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36472 +#: guix-git/doc/guix.texi:36962 msgid "This is the service type that extensions target when they want to create shepherd services (@pxref{Service Types and Services}, for an example). Each extension must pass a list of @code{}. Its value must be a @code{shepherd-configuration}, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36474 +#: guix-git/doc/guix.texi:36964 #, no-wrap msgid "{Data Type} shepherd-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:36476 guix-git/doc/guix.texi:37463 +#: guix-git/doc/guix.texi:36966 guix-git/doc/guix.texi:37959 msgid "This data type represents the Shepherd's configuration." msgstr "Управление конфигурацией операционной системы." #. type: item -#: guix-git/doc/guix.texi:36478 guix-git/doc/guix.texi:37465 +#: guix-git/doc/guix.texi:36968 guix-git/doc/guix.texi:37961 #, no-wrap msgid "shepherd (default: @code{shepherd})" msgstr "@code{port} (default: @code{22})" #. type: table -#: guix-git/doc/guix.texi:36480 guix-git/doc/guix.texi:37467 +#: guix-git/doc/guix.texi:36970 guix-git/doc/guix.texi:37963 msgid "The Shepherd package to use." msgstr "Используемый пакет Hurd." #. type: item -#: guix-git/doc/guix.texi:36481 guix-git/doc/guix.texi:37471 +#: guix-git/doc/guix.texi:36971 guix-git/doc/guix.texi:37967 #, no-wrap msgid "services (default: @code{'()})" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:36485 guix-git/doc/guix.texi:37475 +#: guix-git/doc/guix.texi:36975 guix-git/doc/guix.texi:37971 msgid "A list of @code{} to start. You should probably use the service extension mechanism instead (@pxref{Shepherd Services})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36490 +#: guix-git/doc/guix.texi:36980 msgid "The following example specifies the Shepherd package for the operating system:" msgstr "Следующий пример порождает новую оболочку, установленную для разработки GNU@tie{}Guile:" #. type: lisp -#: guix-git/doc/guix.texi:36505 +#: guix-git/doc/guix.texi:36995 #, no-wrap msgid "" "(operating-system\n" @@ -65952,54 +66970,54 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36507 +#: guix-git/doc/guix.texi:36997 #, no-wrap msgid "{Scheme Variable} %shepherd-root-service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36509 +#: guix-git/doc/guix.texi:36999 msgid "This service represents PID@tie{}1." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36513 +#: guix-git/doc/guix.texi:37003 #, fuzzy, no-wrap #| msgid "configuration" msgid "complex configurations" msgstr "Конфигурирование системы" #. type: Plain text -#: guix-git/doc/guix.texi:36518 +#: guix-git/doc/guix.texi:37008 msgid "Some programs might have rather complex configuration files or formats, and to make it easier to create Scheme bindings for these configuration files, you can use the utilities defined in the @code{(gnu services configuration)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36526 +#: guix-git/doc/guix.texi:37016 msgid "The main utility is the @code{define-configuration} macro, which you will use to define a Scheme record type (@pxref{Record Overview,,, guile, GNU Guile Reference Manual}). The Scheme record will be serialized to a configuration file by using @dfn{serializers}, which are procedures that take some kind of Scheme value and returns a G-expression (@pxref{G-Expressions}), which should, once serialized to the disk, return a string. More details are listed below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36527 +#: guix-git/doc/guix.texi:37017 #, fuzzy, no-wrap #| msgid "{Scheme Syntax} modify-phases @var{phases} @var{clause}@dots{}" msgid "{Scheme Syntax} define-configuration @var{name} @var{clause1} @" msgstr "{Scheme Syntax} let-system @var{system} @var{body}@dots{}" #. type: deffn -#: guix-git/doc/guix.texi:36531 +#: guix-git/doc/guix.texi:37021 msgid "@var{clause2} ... Create a record type named @code{@var{name}} that contains the fields found in the clauses." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36533 +#: guix-git/doc/guix.texi:37023 #, fuzzy #| msgid "Packages are currently available on the following platforms:" msgid "A clause can have one of the following forms:" msgstr "Пакеты в данные момент доступны для следующих платформ:" #. type: example -#: guix-git/doc/guix.texi:36538 +#: guix-git/doc/guix.texi:37028 #, no-wrap msgid "" "(@var{field-name}\n" @@ -66009,7 +67027,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36543 +#: guix-git/doc/guix.texi:37033 #, no-wrap msgid "" "(@var{field-name}\n" @@ -66020,7 +67038,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36547 +#: guix-git/doc/guix.texi:37037 #, no-wrap msgid "" "(@var{field-name}\n" @@ -66030,7 +67048,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36552 +#: guix-git/doc/guix.texi:37042 #, no-wrap msgid "" "(@var{field-name}\n" @@ -66040,37 +67058,37 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36556 +#: guix-git/doc/guix.texi:37046 msgid "@var{field-name} is an identifier that denotes the name of the field in the generated record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36564 +#: guix-git/doc/guix.texi:37054 msgid "@var{type} is the type of the value corresponding to @var{field-name}; since Guile is untyped, a predicate procedure---@code{@var{type}?}---will be called on the value corresponding to the field to ensure that the value is of the correct type. This means that if say, @var{type} is @code{package}, then a procedure named @code{package?} will be applied on the value to make sure that it is indeed a @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36568 +#: guix-git/doc/guix.texi:37058 msgid "@var{default-value} is the default value corresponding to the field; if none is specified, the user is forced to provide a value when creating an object of the record type." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36573 +#: guix-git/doc/guix.texi:37063 msgid "@var{documentation} is a string formatted with Texinfo syntax which should provide a description of what setting this field does." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36580 +#: guix-git/doc/guix.texi:37070 msgid "@var{serializer} is the name of a procedure which takes two arguments, the first is the name of the field, and the second is the value corresponding to the field. The procedure should return a string or G-expression (@pxref{G-Expressions}) that represents the content that will be serialized to the configuration file. If none is specified, a procedure of the name @code{serialize-@var{type}} will be used." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36582 +#: guix-git/doc/guix.texi:37072 msgid "A simple serializer procedure could look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36587 +#: guix-git/doc/guix.texi:37077 #, no-wrap msgid "" "(define (serialize-boolean field-name value)\n" @@ -66079,12 +67097,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36598 +#: guix-git/doc/guix.texi:37088 msgid "In some cases multiple different configuration records might be defined in the same file, but their serializers for the same type might have to be different, because they have different configuration formats. For example, the @code{serialize-boolean} procedure for the Getmail service would have to be different for the one for the Transmission service. To make it easier to deal with this situation, one can specify a serializer prefix by using the @code{prefix} literal in the @code{define-configuration} form. This means that one doesn't have to manually specify a custom @var{serializer} for every field." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36602 +#: guix-git/doc/guix.texi:37092 #, no-wrap msgid "" "(define (foo-serialize-string field-name value)\n" @@ -66093,7 +67111,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36605 +#: guix-git/doc/guix.texi:37095 #, no-wrap msgid "" "(define (bar-serialize-string field-name value)\n" @@ -66102,7 +67120,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36611 +#: guix-git/doc/guix.texi:37101 #, no-wrap msgid "" "(define-configuration foo-configuration\n" @@ -66114,7 +67132,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36617 +#: guix-git/doc/guix.texi:37107 #, no-wrap msgid "" "(define-configuration bar-configuration\n" @@ -66125,12 +67143,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36623 +#: guix-git/doc/guix.texi:37113 msgid "However, in some cases you might not want to serialize any of the values of the record, to do this, you can use the @code{no-serialization} literal. There is also the @code{define-configuration/no-serialization} macro which is a shorthand of this." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36631 +#: guix-git/doc/guix.texi:37121 #, no-wrap msgid "" ";; Nothing will be serialized to disk.\n" @@ -66143,7 +67161,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36637 +#: guix-git/doc/guix.texi:37127 #, no-wrap msgid "" ";; The same thing as above.\n" @@ -66154,24 +67172,24 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36640 +#: guix-git/doc/guix.texi:37130 #, fuzzy, no-wrap #| msgid "{Scheme Syntax} substitute* @var{file} @" msgid "{Scheme Syntax} define-maybe @var{type}" msgstr "{Scheme Syntax} let-system @var{system} @var{body}@dots{}" #. type: deffn -#: guix-git/doc/guix.texi:36645 +#: guix-git/doc/guix.texi:37135 msgid "Sometimes a field should not be serialized if the user doesn’t specify a value. To achieve this, you can use the @code{define-maybe} macro to define a ``maybe type''; if the value of a maybe type is set to the @code{disabled}, it will not be serialized." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36652 +#: guix-git/doc/guix.texi:37142 msgid "When defining a ``maybe type'', the corresponding serializer for the regular type will be used by default. For example, a field of type @code{maybe-string} will be serialized using the @code{serialize-string} procedure by default, you can of course change this by specifying a custom serializer procedure. Likewise, the type of the value would have to be a string, unless it is set to the @code{disabled} symbol." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36655 +#: guix-git/doc/guix.texi:37145 #, no-wrap msgid "" "(define-maybe string)\n" @@ -66179,7 +67197,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36658 +#: guix-git/doc/guix.texi:37148 #, no-wrap msgid "" "(define (serialize-string field-name value)\n" @@ -66188,7 +67206,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36665 +#: guix-git/doc/guix.texi:37155 #, no-wrap msgid "" "(define-configuration baz-configuration\n" @@ -66200,12 +67218,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36669 +#: guix-git/doc/guix.texi:37159 msgid "Like with @code{define-configuration}, one can set a prefix for the serializer name by using the @code{prefix} literal." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36673 +#: guix-git/doc/guix.texi:37163 #, no-wrap msgid "" "(define-maybe integer\n" @@ -66214,7 +67232,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36676 +#: guix-git/doc/guix.texi:37166 #, no-wrap msgid "" "(define (baz-serialize-interger field-name value)\n" @@ -66222,12 +67240,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36683 +#: guix-git/doc/guix.texi:37173 msgid "There is also the @code{no-serialization} literal, which when set means that no serializer will be defined for the ``maybe type'', regardless of its value is @code{disabled} or not. @code{define-maybe/no-serialization} is a shorthand for specifying the @code{no-serialization} literal." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36686 +#: guix-git/doc/guix.texi:37176 #, no-wrap msgid "" "(define-maybe/no-serialization symbol)\n" @@ -66235,7 +67253,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36691 +#: guix-git/doc/guix.texi:37181 #, no-wrap msgid "" "(define-configuration/no-serialization test-configuration\n" @@ -66245,70 +67263,70 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36694 +#: guix-git/doc/guix.texi:37184 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} lookup-inferior-packages @var{inferior} @var{name} @" msgid "{Scheme Procedure} serialize-configuration @var{configuration} @" msgstr "{Процедура Scheme} lookup-inferior-packages @var{inferior} @var{name} @" #. type: deffn -#: guix-git/doc/guix.texi:36700 +#: guix-git/doc/guix.texi:37190 msgid "@var{fields} Return a G-expression that contains the values corresponding to the @var{fields} of @var{configuration}, a record that has been generated by @code{define-configuration}. The G-expression can then be serialized to disk by using something like @code{mixed-text-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36702 +#: guix-git/doc/guix.texi:37192 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} lookup-inferior-packages @var{inferior} @var{name} @" msgid "{Scheme Procedure} validate-configuration @var{configuration}" msgstr "{Процедура Scheme} lookup-inferior-packages @var{inferior} @var{name} @" #. type: deffn -#: guix-git/doc/guix.texi:36706 +#: guix-git/doc/guix.texi:37196 msgid "@var{fields} Type-check @var{fields}, a list of field names of @var{configuration}, a configuration record created by @code{define-configuration}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36708 +#: guix-git/doc/guix.texi:37198 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} service @var{type} [@var{value}]" msgid "{Scheme Procedure} empty-serializer @var{field-name} @var{value}" msgstr "{Scheme Procedure} service @var{type} [@var{value}]" #. type: deffn -#: guix-git/doc/guix.texi:36711 +#: guix-git/doc/guix.texi:37201 msgid "A serializer that just returns an empty string. The @code{serialize-package} procedure is an alias for this." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36716 +#: guix-git/doc/guix.texi:37206 msgid "Once you have defined a configuration record, you will most likely also want to document it so that other people know to use it. To help with that, there are two procedures, both of which are documented below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36717 +#: guix-git/doc/guix.texi:37207 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} package-cross-derivation @var{store} @" msgid "{Scheme Procedure} generate-documentation @var{documentation} @" msgstr "{Процедура Scheme} package-cross-derivation @var{store} @" #. type: deffn -#: guix-git/doc/guix.texi:36724 +#: guix-git/doc/guix.texi:37214 msgid "@var{documentation-name} Generate a Texinfo fragment from the docstrings in @var{documentation}, a list of @code{(@var{label} @var{fields} @var{sub-documentation} ...)}. @var{label} should be a symbol and should be the name of the configuration record. @var{fields} should be a list of all the fields available for the configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36729 +#: guix-git/doc/guix.texi:37219 msgid "@var{sub-documentation} is a @code{(@var{field-name} @var{configuration-name})} tuple. @var{field-name} is the name of the field which takes another configuration record as its value, and @var{configuration-name} is the name of that configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36736 +#: guix-git/doc/guix.texi:37226 msgid "@var{sub-documentation} is only needed if there are nested configuration records. For example, the @code{getmail-configuration} record (@pxref{Mail Services}) accepts a @code{getmail-configuration-file} record in one of its @code{rcfile} field, therefore documentation for @code{getmail-configuration-file} is nested in @code{getmail-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36743 +#: guix-git/doc/guix.texi:37233 #, no-wrap msgid "" "(generate-documentation\n" @@ -66319,34 +67337,34 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36747 +#: guix-git/doc/guix.texi:37237 msgid "@var{documentation-name} should be a symbol and should be the name of the configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36750 +#: guix-git/doc/guix.texi:37240 #, fuzzy, no-wrap #| msgid "{Scheme Procedure} nginx-php-location @" msgid "{Scheme Procedure} configuration->documentation" msgstr "{Процедура Scheme} inferior-package-location @var{package}" #. type: deffn -#: guix-git/doc/guix.texi:36757 +#: guix-git/doc/guix.texi:37247 msgid "@var{configuration-symbol} Take @var{configuration-symbol}, the symbol corresponding to the name used when defining a configuration record with @code{define-configuration}, and print the Texinfo documentation of its fields. This is useful if there aren’t any nested configuration records since it only prints the documentation for the top-level fields." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36765 +#: guix-git/doc/guix.texi:37255 msgid "As of right now, there is no automated way to generate documentation for configuration records and put them in the manual. Instead, every time you make a change to the docstrings of a configuration record, you have to manually call @code{generate-documentation} or @code{configuration->documentation}, and paste the output into the @file{doc/guix.texi} file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36769 +#: guix-git/doc/guix.texi:37259 msgid "Below is an example of a record type created using @code{define-configuration} and friends." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36776 +#: guix-git/doc/guix.texi:37266 #, fuzzy, no-wrap #| msgid "" #| "(use-modules (gnu services)\n" @@ -66369,7 +67387,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:36784 +#: guix-git/doc/guix.texi:37274 #, no-wrap msgid "" ";; Turn field names, which are Scheme symbols into strings\n" @@ -66383,7 +67401,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36787 +#: guix-git/doc/guix.texi:37277 #, no-wrap msgid "" "(define (serialize-string field-name value)\n" @@ -66392,7 +67410,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36790 +#: guix-git/doc/guix.texi:37280 #, no-wrap msgid "" "(define (serialize-integer field-name value)\n" @@ -66401,7 +67419,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36793 +#: guix-git/doc/guix.texi:37283 #, no-wrap msgid "" "(define (serialize-boolean field-name value)\n" @@ -66410,7 +67428,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36796 +#: guix-git/doc/guix.texi:37286 #, no-wrap msgid "" "(define (serialize-contact-name field-name value)\n" @@ -66419,7 +67437,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36799 +#: guix-git/doc/guix.texi:37289 #, no-wrap msgid "" "(define (list-of-contact-configurations? lst)\n" @@ -66428,7 +67446,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36804 +#: guix-git/doc/guix.texi:37294 #, no-wrap msgid "" "(define (serialize-list-of-contact-configurations field-name value)\n" @@ -66439,7 +67457,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36811 +#: guix-git/doc/guix.texi:37301 #, no-wrap msgid "" "(define (serialize-contacts-list-configuration configuration)\n" @@ -66452,7 +67470,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36814 +#: guix-git/doc/guix.texi:37304 #, no-wrap msgid "" "(define-maybe integer)\n" @@ -66461,7 +67479,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36829 +#: guix-git/doc/guix.texi:37319 #, no-wrap msgid "" "(define-configuration contact-configuration\n" @@ -66482,7 +67500,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36841 +#: guix-git/doc/guix.texi:37331 #, no-wrap msgid "" "(define-configuration contacts-list-configuration\n" @@ -66499,12 +67517,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36844 +#: guix-git/doc/guix.texi:37334 msgid "A contacts list configuration could then be created like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36860 +#: guix-git/doc/guix.texi:37350 #, no-wrap msgid "" "(define my-contacts\n" @@ -66524,12 +67542,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36864 +#: guix-git/doc/guix.texi:37354 msgid "After serializing the configuration to disk, the resulting file would look like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36869 +#: guix-git/doc/guix.texi:37359 #, no-wrap msgid "" "[owner]\n" @@ -66539,7 +67557,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36874 +#: guix-git/doc/guix.texi:37364 #, no-wrap msgid "" "[Bob]\n" @@ -66550,7 +67568,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36878 +#: guix-git/doc/guix.texi:37368 #, no-wrap msgid "" "[Charlie]\n" @@ -66559,217 +67577,217 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36883 +#: guix-git/doc/guix.texi:37373 #, fuzzy, no-wrap #| msgid "configuration" msgid "home configuration" msgstr "Конфигурирование системы" #. type: Plain text -#: guix-git/doc/guix.texi:36895 +#: guix-git/doc/guix.texi:37385 msgid "Guix supports declarative configuration of @dfn{home environments} by utilizing the configuration mechanism described in the previous chapter (@pxref{Defining Services}), but for user's dotfiles and packages. It works both on Guix System and foreign distros and allows users to declare all the packages and services that should be installed and configured for the user. Once a user has written a file containing @code{home-environment} record, such a configuration can be @dfn{instantiated} by an unprivileged user with the @command{guix home} command (@pxref{Invoking guix home})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36912 +#: guix-git/doc/guix.texi:37402 msgid "The user's home environment usually consists of three basic parts: software, configuration, and state. Software in mainstream distros are usually installed system-wide, but with GNU Guix most software packages can be installed on a per-user basis without needing root privileges, and are thus considered part of the user’s @dfn{home environment}. Packages on their own not very useful in many cases, because often they require some additional configuration, usually config files that reside in @env{XDG_CONFIG_HOME} (@file{~/.config} by default) or other directories. Everything else can be considered state, like media files, application databases, and logs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36915 +#: guix-git/doc/guix.texi:37405 msgid "Using Guix for managing home environments provides a number of advantages:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36918 +#: guix-git/doc/guix.texi:37408 #, no-wrap msgid "All software can be configured in one language (Guile Scheme)," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36921 +#: guix-git/doc/guix.texi:37411 msgid "this gives users the ability to share values between configurations of different programs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36922 +#: guix-git/doc/guix.texi:37412 #, no-wrap msgid "A well-defined home environment is self-contained and can be" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36925 +#: guix-git/doc/guix.texi:37415 msgid "created in a declarative and reproducible way---there is no need to grab external binaries or manually edit some configuration file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36926 +#: guix-git/doc/guix.texi:37416 #, no-wrap msgid "After every @command{guix home reconfigure} invocation, a new home" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36930 +#: guix-git/doc/guix.texi:37420 msgid "environment generation will be created. This means that users can rollback to a previous home environment generation so they don’t have to worry about breaking their configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36931 +#: guix-git/doc/guix.texi:37421 #, no-wrap msgid "It is possible to manage stateful data with Guix Home, this" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36936 +#: guix-git/doc/guix.texi:37426 msgid "includes the ability to automatically clone Git repositories on the initial setup of the machine, and periodically running commands like @command{rsync} to sync data with another host. This functionality is still in an experimental stage, though." msgstr "" #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:36946 -#: guix-git/doc/guix.texi:36947 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37436 +#: guix-git/doc/guix.texi:37437 #, fuzzy, no-wrap #| msgid "Preparing the isolated build environment." msgid "Declaring the Home Environment" msgstr "Подготовка отдельного окружения сборки." #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 #, fuzzy #| msgid "Customizing your GNU system." msgid "Customizing your Home." msgstr "Настройка вашей системы GNU." #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:37014 -#: guix-git/doc/guix.texi:37015 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37504 +#: guix-git/doc/guix.texi:37505 #, fuzzy, no-wrap #| msgid "Configuring the boot loader." msgid "Configuring the Shell" msgstr "Конфигурирование загрузчика диска." #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 #, fuzzy #| msgid "Invoking guix environment" msgid "Enabling home environment." msgstr "Запуск guix environment" #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:37061 -#: guix-git/doc/guix.texi:37062 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37551 +#: guix-git/doc/guix.texi:37552 #, fuzzy, no-wrap #| msgid "Game Services" msgid "Home Services" msgstr "Игровые службы" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 #, fuzzy #| msgid "Specifying system services." msgid "Specifying home services." msgstr "Настройка системных служб." #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 #, fuzzy #| msgid "Instantiating a system configuration." msgid "Instantiating a home configuration." msgstr "Проверка конфигурации операционной системы." #. type: Plain text -#: guix-git/doc/guix.texi:36953 +#: guix-git/doc/guix.texi:37443 msgid "The home environment is configured by providing a @code{home-environment} declaration in a file that can be passed to the @command{guix home} command (@pxref{Invoking guix home}). The easiest way to get started is by generating an initial configuration with @command{guix home import}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36956 +#: guix-git/doc/guix.texi:37446 #, no-wrap msgid "guix home import ~/src/guix-config\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36964 +#: guix-git/doc/guix.texi:37454 msgid "The @command{guix home import} command reads some of the ``dot files'' such as @file{~/.bashrc} found in your home directory and copies them to the given directory, @file{~/src/guix-config} in this case; it also reads the contents of your profile, @file{~/.guix-profile}, and, based on that, it populates @file{~/src/guix-config/home-configuration.scm} with a Home configuration that resembles your current configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36970 +#: guix-git/doc/guix.texi:37460 msgid "A simple setup can include Bash and a custom text configuration, like in the example below. Don't be afraid to declare home environment parts, which overlaps with your current dot files: before installing any configuration files, Guix Home will back up existing config files to a separate place in the home directory." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36976 +#: guix-git/doc/guix.texi:37466 msgid "It is highly recommended that you manage your shell or shells with Guix Home, because it will make sure that all the necessary scripts are sourced by the shell configuration file. Otherwise you will need to do it manually. (@pxref{Configuring the Shell})." msgstr "" #. type: findex -#: guix-git/doc/guix.texi:36978 +#: guix-git/doc/guix.texi:37468 #, fuzzy, no-wrap #| msgid "environment" msgid "home-environment" msgstr "guix environment" #. type: include -#: guix-git/doc/guix.texi:36980 +#: guix-git/doc/guix.texi:37470 #, fuzzy, no-wrap #| msgid "configuration.scm" msgid "he-config-bare-bones.scm" msgstr "Конфигурирование системы" #. type: Plain text -#: guix-git/doc/guix.texi:36987 +#: guix-git/doc/guix.texi:37477 msgid "The @code{packages} field should be self-explanatory, it will install the list of packages into the user's profile. The most important field is @code{services}, it contains a list of @dfn{home services}, which are the basic building blocks of a home environment." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36995 +#: guix-git/doc/guix.texi:37485 msgid "There is no daemon (at least not necessarily) related to a home service, a home service is just an element that is used to declare part of home environment and extend other parts of it. The extension mechanism discussed in the previous chapter (@pxref{Defining Services}) should not be confused with Shepherd services (@pxref{Shepherd Services}). Using this extension mechanism and some Scheme code that glues things together gives the user the freedom to declare their own, very custom, home environments." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36998 +#: guix-git/doc/guix.texi:37488 msgid "Once you have a configuration file that suits your needs, you can reconfigure your home by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37001 +#: guix-git/doc/guix.texi:37491 #, fuzzy, no-wrap #| msgid "sudo guix system reconfigure /etc/config.scm\n" msgid "guix home reconfigure config.scm\n" msgstr "sudo guix system reconfigure /etc/config.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:37005 +#: guix-git/doc/guix.texi:37495 msgid "This ``builds'' your home environment and creates @file{~/.guix-home} pointing to it. Voilà!" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37012 +#: guix-git/doc/guix.texi:37502 msgid "Make sure the operating system has elogind, systemd, or a similar mechanism to create the XDG run-time directory and has the @env{XDG_RUNTIME_DIR} variable set. Failing that, the @file{on-first-login} script will not execute anything, and processes like user Shepherd and its descendants will not start." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37018 +#: guix-git/doc/guix.texi:37508 msgid "This section is safe to skip if your shell or shells are managed by Guix Home. Otherwise, read it carefully." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37025 +#: guix-git/doc/guix.texi:37515 msgid "There are a few scripts that must be evaluated by a login shell to activate the home environment. The shell startup files only read by login shells often have @code{profile} suffix. For more information about login shells see @ref{Invoking Bash,,, bash, The GNU Bash Reference Manual} and see @ref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37032 +#: guix-git/doc/guix.texi:37522 msgid "The first script that needs to be sourced is @file{setup-environment}, which sets all the necessary environment variables (including variables declared by the user) and the second one is @file{on-first-login}, which starts Shepherd for the current user and performs actions declared by other home services that extends @code{home-run-on-first-login-service-type}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37035 +#: guix-git/doc/guix.texi:37525 msgid "Guix Home will always create @file{~/.profile}, which contains the following lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37040 +#: guix-git/doc/guix.texi:37530 #, no-wrap msgid "" "HOME_ENVIRONMENT=$HOME/.guix-home\n" @@ -66778,121 +67796,121 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37050 +#: guix-git/doc/guix.texi:37540 msgid "This makes POSIX compliant login shells activate the home environment. However, in most cases this file won't be read by most modern shells, because they are run in non POSIX mode by default and have their own @file{*profile} startup files. For example Bash will prefer @file{~/.bash_profile} in case it exists and only if it doesn't will it fallback to @file{~/.profile}. Zsh (if no additional options are specified) will ignore @file{~/.profile}, even if @file{~/.zprofile} doesn't exist." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37055 +#: guix-git/doc/guix.texi:37545 msgid "To make your shell respect @file{~/.profile}, add @code{. ~/.profile} or @code{source ~/profile} to the startup file for the login shell. In case of Bash, it is @file{~/.bash_profile}, and in case of Zsh, it is @file{~/.zprofile}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37059 +#: guix-git/doc/guix.texi:37549 msgid "This step is only required if your shell is NOT managed by Guix Home. Otherwise, everything will be done automatically." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37063 +#: guix-git/doc/guix.texi:37553 #, fuzzy, no-wrap #| msgid "Other services." msgid "home services" msgstr "Другие службы." #. type: Plain text -#: guix-git/doc/guix.texi:37072 +#: guix-git/doc/guix.texi:37562 msgid "A @dfn{home service} is not necessarily something that has a daemon and is managed by Shepherd (@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}), in most cases it doesn't. It's a simple building block of the home environment, often declaring a set of packages to be installed in the home environment profile, a set of config files to be symlinked into @env{XDG_CONFIG_HOME} (@file{~/.config} by default), and environment variables to be set by a login shell." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37080 +#: guix-git/doc/guix.texi:37570 msgid "There is a service extension mechanism (@pxref{Service Composition}) which allows home services to extend other home services and utilize capabilities they provide; for example: declare mcron jobs (@pxref{Top,,, mcron, GNU@tie{}Mcron}) by extending @ref{Mcron Home Service}; declare daemons by extending @ref{Shepherd Home Service}; add commands, which will be invoked on by the Bash by extending @ref{Shells Home Services, @code{home-bash-service-type}}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37091 -msgid "A good way to discover avaliable home services is using the @command{guix home search} command (@pxref{Invoking guix home}). After the required home services are found, include its module with the @code{use-modules} form (@pxref{use-modules,, Using Guile Modules, guile, The GNU Guile Reference Manual}), or the @code{#:use-modules} directive (@pxref{define-module,, Creating Guile Modules, guile, The GNU Guile Reference Manual}) and declare a home service using the @code{service} function, or extend a service type by declaring a new service with the @code{simple-service} procedure from @code{(gnu services)}." +#: guix-git/doc/guix.texi:37581 +msgid "A good way to discover available home services is using the @command{guix home search} command (@pxref{Invoking guix home}). After the required home services are found, include its module with the @code{use-modules} form (@pxref{use-modules,, Using Guile Modules, guile, The GNU Guile Reference Manual}), or the @code{#:use-modules} directive (@pxref{define-module,, Creating Guile Modules, guile, The GNU Guile Reference Manual}) and declare a home service using the @code{service} function, or extend a service type by declaring a new service with the @code{simple-service} procedure from @code{(gnu services)}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:37097 guix-git/doc/guix.texi:37100 -#: guix-git/doc/guix.texi:37101 +#: guix-git/doc/guix.texi:37587 guix-git/doc/guix.texi:37590 +#: guix-git/doc/guix.texi:37591 #, fuzzy, no-wrap #| msgid "Essential system services." msgid "Essential Home Services" msgstr "Ключевые службы системы." #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Environment variables, packages, on-* scripts." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 #, fuzzy #| msgid "Shepherd Services" msgid "Shells: Shells Home Services" msgstr "Сервисы Shepherd" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "POSIX shells, Bash, Zsh." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 #, fuzzy #| msgid "PAM Mount Service" msgid "Mcron: Mcron Home Service" msgstr "Службы подключения PAM" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 #, fuzzy #| msgid "Scheduled Job Execution" msgid "Scheduled User's Job Execution." msgstr "Запланированное исполнения задач" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 #, fuzzy #| msgid "Shepherd Services" msgid "Shepherd: Shepherd Home Service" msgstr "Сервисы Shepherd" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 #, fuzzy #| msgid "Messaging services." msgid "Managing User's Daemons." msgstr "Сервисы сообщений." #. type: Plain text -#: guix-git/doc/guix.texi:37106 +#: guix-git/doc/guix.texi:37596 msgid "There are a few essential home services defined in @code{(gnu services)}, they are mostly for internal use and are required to build a home environment, but some of them will be useful for the end user." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37107 +#: guix-git/doc/guix.texi:37597 #, fuzzy, no-wrap #| msgid "environment" msgid "environment variables" msgstr "guix environment" #. type: defvr -#: guix-git/doc/guix.texi:37109 +#: guix-git/doc/guix.texi:37599 #, fuzzy, no-wrap #| msgid "{Scheme Variable} radicale-service-type" msgid "{Scheme Variable} home-environment-variables-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37114 +#: guix-git/doc/guix.texi:37604 msgid "The service of this type will be instantiated by every home environment automatically by default, there is no need to define it, but someone may want to extend it with a list of pairs to set some environment variables." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37118 +#: guix-git/doc/guix.texi:37608 #, no-wrap msgid "" "(list (\"ENV_VAR1\" . \"value1\")\n" @@ -66900,12 +67918,12 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37123 +#: guix-git/doc/guix.texi:37613 msgid "The easiest way to extend a service type, without defining new service type is to use the @code{simple-service} helper from @code{(gnu services)}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37131 +#: guix-git/doc/guix.texi:37621 #, no-wrap msgid "" "(simple-service 'some-useful-env-vars-service\n" @@ -66917,12 +67935,12 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37136 +#: guix-git/doc/guix.texi:37626 msgid "If you include such a service in you home environment definition, it will add the following content to the @file{setup-environment} script (which is expected to be sourced by the login shell):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37141 +#: guix-git/doc/guix.texi:37631 #, no-wrap msgid "" "export LESSHISTFILE=$XDG_CACHE_HOME/.lesshst\n" @@ -66931,648 +67949,632 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37148 +#: guix-git/doc/guix.texi:37638 msgid "Make sure that module @code{(gnu packages shells)} is imported with @code{use-modules} or any other way, this namespace contains the definition of the @code{zsh} packages, which is used in the example above." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37161 +#: guix-git/doc/guix.texi:37651 msgid "The association list (@pxref{Association Lists, alists, Association Lists, guile, The GNU Guile Reference manual}) is a data structure containing key-value pairs, for @code{home-environment-variables-service-type} the key is always a string, the value can be a string, string-valued gexp (@pxref{G-Expressions}), file-like object (@pxref{G-Expressions, file-like object}) or boolean. For gexps, the variable will be set to the value of the gexp; for file-like objects, it will be set to the path of the file in the store (@pxref{The Store}); for @code{#t}, it will export the variable without any value; and for @code{#f}, it will omit variable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37164 +#: guix-git/doc/guix.texi:37654 #, fuzzy, no-wrap #| msgid "{Scheme Variable} profile-service-type" msgid "{Scheme Variable} home-profile-service-type" msgstr "{Scheme Variable} profile-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37170 -msgid "The service of this type will be instantiated by every home environment automatically, there is no need to define it, but you may want to extend it with a list of packages if you want to install additional packages into your profile. Other services, which need to make some programs avaliable to the user will also extend this service type." +#: guix-git/doc/guix.texi:37660 +msgid "The service of this type will be instantiated by every home environment automatically, there is no need to define it, but you may want to extend it with a list of packages if you want to install additional packages into your profile. Other services, which need to make some programs available to the user will also extend this service type." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37172 +#: guix-git/doc/guix.texi:37662 msgid "The extension value is just a list of packages:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37175 +#: guix-git/doc/guix.texi:37665 #, no-wrap msgid "(list htop vim emacs)\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37185 +#: guix-git/doc/guix.texi:37675 msgid "The same approach as @code{simple-service} (@pxref{Service Reference, simple-service}) for @code{home-environment-variables-service-type} can be used here, too. Make sure that modules containing the specified packages are imported with @code{use-modules}. To find a package or information about its module use @command{guix search} (@pxref{Invoking guix package}). Alternatively, @code{specification->package} can be used to get the package record from string without importing related module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37189 +#: guix-git/doc/guix.texi:37679 msgid "There are few more essential services, but users are not expected to extend them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37190 +#: guix-git/doc/guix.texi:37680 #, fuzzy, no-wrap #| msgid "{Scheme Variable} etc-service-type" msgid "{Scheme Variable} home-service-type" msgstr "{Scheme Variable} etc-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37195 +#: guix-git/doc/guix.texi:37685 msgid "The root of home services DAG, it generates a folder, which later will be symlinked to @file{~/.guix-home}, it contains configurations, profile with binaries and libraries, and some necessary scripts to glue things together." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37197 +#: guix-git/doc/guix.texi:37687 #, fuzzy, no-wrap #| msgid "{Scheme Variable} hurd-console-service-type" msgid "{Scheme Variable} home-run-on-first-login-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37202 +#: guix-git/doc/guix.texi:37692 msgid "The service of this type generates a Guile script, which is expected to be executed by the login shell. It is only executed if the special flag file inside @env{XDG_RUNTIME_DIR} hasn't been created, this prevents redundant executions of the script if multiple login shells are spawned." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37208 +#: guix-git/doc/guix.texi:37698 msgid "It can be extended with a gexp. However, to autostart an application, users @emph{should not} use this service, in most cases it's better to extend @code{home-shepherd-service-type} with a Shepherd service (@pxref{Shepherd Services}), or extend the shell's startup file with the required command using the appropriate service type." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37210 +#: guix-git/doc/guix.texi:37700 #, fuzzy, no-wrap #| msgid "{Scheme Variable} hostapd-service-type" msgid "{Scheme Variable} home-activation-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37214 +#: guix-git/doc/guix.texi:37704 msgid "The service of this type generates a guile script, which runs on every @command{guix home reconfigure} invocation or any other action, which leads to the activation of the home environment." msgstr "" #. type: node -#: guix-git/doc/guix.texi:37216 +#: guix-git/doc/guix.texi:37706 #, fuzzy, no-wrap #| msgid "Shepherd Services" msgid "Shells Home Services" msgstr "Сервисы Shepherd" #. type: subsection -#: guix-git/doc/guix.texi:37217 +#: guix-git/doc/guix.texi:37707 #, no-wrap msgid "Shells" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37219 guix-git/doc/guix.texi:37500 +#: guix-git/doc/guix.texi:37709 guix-git/doc/guix.texi:37996 #, no-wrap msgid "shell" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37220 +#: guix-git/doc/guix.texi:37710 #, no-wrap msgid "login shell" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37221 +#: guix-git/doc/guix.texi:37711 #, no-wrap msgid "interactive shell" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37222 guix-git/doc/guix.texi:37502 +#: guix-git/doc/guix.texi:37712 guix-git/doc/guix.texi:37998 #, no-wrap msgid "bash" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37223 guix-git/doc/guix.texi:37503 +#: guix-git/doc/guix.texi:37713 guix-git/doc/guix.texi:37999 #, fuzzy, no-wrap #| msgid "ssh" msgid "zsh" msgstr "ssh" #. type: Plain text -#: guix-git/doc/guix.texi:37229 +#: guix-git/doc/guix.texi:37719 msgid "Shells play a quite important role in the environment initialization process, you can configure them manually as described in section @ref{Configuring the Shell}, but the recommended way is to use home services listed below. It's both easier and more reliable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37239 +#: guix-git/doc/guix.texi:37729 msgid "Each home environment instantiates @code{home-shell-profile-service-type}, which creates a @file{~/.profile} startup file for all POSIX-compatible shells. This file contains all the necessary steps to properly initialize the environment, but many modern shells like Bash or Zsh prefer their own startup files, that's why the respective home services (@code{home-bash-service-type} and @code{home-zsh-service-type}) ensure that @file{~/.profile} is sourced by @file{~/.bash_profile} and @file{~/.zprofile}, respectively." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:37240 +#: guix-git/doc/guix.texi:37730 #, fuzzy, no-wrap #| msgid "Certificate Services" msgid "Shell Profile Service" msgstr "Сервисы сертификатов" #. type: deftp -#: guix-git/doc/guix.texi:37242 +#: guix-git/doc/guix.texi:37732 #, fuzzy, no-wrap #| msgid "{Data Type} postgresql-role-configuration" msgid "{Data Type} home-shell-profile-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:37244 +#: guix-git/doc/guix.texi:37734 msgid "Available @code{home-shell-profile-configuration} fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37246 +#: guix-git/doc/guix.texi:37736 #, fuzzy, no-wrap #| msgid "@code{debug?} (default @code{#f})" msgid "@code{profile} (default: @code{()}) (type: text-config)" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:37256 -msgid "@code{home-shell-profile} is instantiated automatically by @code{home-environment}, DO NOT create this service manually, it can only be extended. @code{profile} is a list of file-like objects, which will go to @file{~/.profile}. By default @file{~/.profile} contains the initialization code, which have to be evaluated by login shell to make home-environment's profile avaliable to the user, but other commands can be added to the file if it is really necessary. In most cases shell's configuration files are preferred places for user's customizations. Extend home-shell-profile service only if you really know what you do." +#: guix-git/doc/guix.texi:37746 +msgid "@code{home-shell-profile} is instantiated automatically by @code{home-environment}, DO NOT create this service manually, it can only be extended. @code{profile} is a list of file-like objects, which will go to @file{~/.profile}. By default @file{~/.profile} contains the initialization code which must be evaluated by the login shell to make home-environment's profile available to the user, but other commands can be added to the file if it is really necessary. In most cases shell's configuration files are preferred places for user's customizations. Extend home-shell-profile service only if you really know what you do." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:37261 +#: guix-git/doc/guix.texi:37751 #, fuzzy, no-wrap #| msgid "Base Services" msgid "Bash Home Service" msgstr "Базовые службы" #. type: anchor{#1} -#: guix-git/doc/guix.texi:37264 +#: guix-git/doc/guix.texi:37754 #, fuzzy #| msgid "configuration" msgid "home-bash-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:37264 +#: guix-git/doc/guix.texi:37754 #, fuzzy, no-wrap #| msgid "{Data Type} webssh-configuration" msgid "{Data Type} home-bash-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:37266 +#: guix-git/doc/guix.texi:37756 msgid "Available @code{home-bash-configuration} fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37268 +#: guix-git/doc/guix.texi:37758 #, fuzzy, no-wrap #| msgid "@code{packages} (default: @code{%base-packages})" msgid "@code{package} (default: @code{bash}) (type: package)" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:37270 +#: guix-git/doc/guix.texi:37760 #, fuzzy #| msgid "The package to use." msgid "The Bash package to use." msgstr "Пакет для использования." #. type: item -#: guix-git/doc/guix.texi:37271 +#: guix-git/doc/guix.texi:37761 #, fuzzy, no-wrap #| msgid "@code{debug?} (default @code{#f})" msgid "@code{guix-defaults?} (default: @code{#t}) (type: boolean)" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:37274 +#: guix-git/doc/guix.texi:37764 msgid "Add sane defaults like reading @file{/etc/bashrc} and coloring the output of @command{ls} to the end of the @file{.bashrc} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37275 guix-git/doc/guix.texi:37329 -#: guix-git/doc/guix.texi:37368 +#: guix-git/doc/guix.texi:37765 guix-git/doc/guix.texi:37819 +#: guix-git/doc/guix.texi:37858 #, fuzzy, no-wrap #| msgid "@code{extra-environment} (default: @code{#~'()})" msgid "@code{environment-variables} (default: @code{()}) (type: alist)" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:37280 +#: guix-git/doc/guix.texi:37770 msgid "Association list of environment variables to set for the Bash session. The rules for the @code{home-environment-variables-service-type} apply here (@pxref{Essential Home Services}). The contents of this field will be added after the contents of the @code{bash-profile} field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37281 guix-git/doc/guix.texi:37334 +#: guix-git/doc/guix.texi:37771 guix-git/doc/guix.texi:37824 #, fuzzy, no-wrap #| msgid "@code{extra-environment} (default: @code{#~'()})" msgid "@code{aliases} (default: @code{()}) (type: alist)" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:37286 +#: guix-git/doc/guix.texi:37776 msgid "Association list of aliases to set for the Bash session. The aliases will be defined after the contents of the @code{bashrc} field has been put in the @file{.bashrc} file. The alias will automatically be quoted, so something line this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37289 +#: guix-git/doc/guix.texi:37779 #, no-wrap msgid "'((\\\"ls\\\" . \\\"ls -alF\\\"))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37292 +#: guix-git/doc/guix.texi:37782 msgid "turns into" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37295 +#: guix-git/doc/guix.texi:37785 #, no-wrap msgid "alias ls=\\\"ls -alF\\\"\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37297 guix-git/doc/guix.texi:37338 +#: guix-git/doc/guix.texi:37787 guix-git/doc/guix.texi:37828 #, fuzzy, no-wrap #| msgid "@code{packages} (default: @code{%base-packages})" msgid "@code{bash-profile} (default: @code{()}) (type: text-config)" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:37302 +#: guix-git/doc/guix.texi:37792 msgid "List of file-like objects, which will be added to @file{.bash_profile}. Used for executing user's commands at start of login shell (In most cases the shell started on tty just after login). @file{.bash_login} won't be ever read, because @file{.bash_profile} always present." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37303 guix-git/doc/guix.texi:37342 +#: guix-git/doc/guix.texi:37793 guix-git/doc/guix.texi:37832 #, fuzzy, no-wrap #| msgid "@code{packages} (default: @code{%base-packages})" msgid "@code{bashrc} (default: @code{()}) (type: text-config)" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:37308 +#: guix-git/doc/guix.texi:37798 msgid "List of file-like objects, which will be added to @file{.bashrc}. Used for executing user's commands at start of interactive shell (The shell for interactive usage started by typing @code{bash} or by terminal app or any other program)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37309 guix-git/doc/guix.texi:37346 +#: guix-git/doc/guix.texi:37799 guix-git/doc/guix.texi:37836 #, fuzzy, no-wrap #| msgid "@code{packages} (default: @code{%base-packages})" msgid "@code{bash-logout} (default: @code{()}) (type: text-config)" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:37314 +#: guix-git/doc/guix.texi:37804 msgid "List of file-like objects, which will be added to @file{.bash_logout}. Used for executing user's commands at the exit of login shell. It won't be read in some cases (if the shell terminates by exec'ing another process for example)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37324 +#: guix-git/doc/guix.texi:37814 msgid "You can extend the Bash service by using the @code{home-bash-extension} configuration record, whose fields most mirror that of @code{home-bash-configuration} (@pxref{home-bash-configuration}). The contents of the extensions will be added to the end of the corresponding Bash configuration files (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37325 +#: guix-git/doc/guix.texi:37815 #, fuzzy, no-wrap #| msgid "{Data Type} webssh-configuration" msgid "{Data Type} home-bash-extension" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:37327 +#: guix-git/doc/guix.texi:37817 msgid "Available @code{home-bash-extension} fields are:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37333 +#: guix-git/doc/guix.texi:37823 msgid "Additional environment variables to set. These will be combined with the environment variables from other extensions and the base service to form one coherent block of environment variables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37337 +#: guix-git/doc/guix.texi:37827 msgid "Additional aliases to set. These will be combined with the aliases from other extensions and the base service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37341 +#: guix-git/doc/guix.texi:37831 msgid "Additional text blocks to add to @file{.bash_profile}, which will be combined with text blocks from other extensions and the base service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37345 +#: guix-git/doc/guix.texi:37835 msgid "Additional text blocks to add to @file{.bashrc}, which will be combined with text blocks from other extensions and the base service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37349 +#: guix-git/doc/guix.texi:37839 msgid "Additional text blocks to add to @file{.bash_logout}, which will be combined with text blocks from other extensions and the base service." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:37353 +#: guix-git/doc/guix.texi:37843 #, fuzzy, no-wrap #| msgid "Game Services" msgid "Zsh Home Service" msgstr "Игровые службы" #. type: deftp -#: guix-git/doc/guix.texi:37355 +#: guix-git/doc/guix.texi:37845 #, fuzzy, no-wrap #| msgid "{Data Type} webssh-configuration" msgid "{Data Type} home-zsh-configuration" msgstr "Конфигурирование системы" #. type: deftp -#: guix-git/doc/guix.texi:37357 +#: guix-git/doc/guix.texi:37847 msgid "Available @code{home-zsh-configuration} fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37359 +#: guix-git/doc/guix.texi:37849 #, fuzzy, no-wrap #| msgid "@code{packages} (default: @code{%base-packages})" msgid "@code{package} (default: @code{zsh}) (type: package)" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:37361 +#: guix-git/doc/guix.texi:37851 #, fuzzy #| msgid "The package to use." msgid "The Zsh package to use." msgstr "Пакет для использования." #. type: item -#: guix-git/doc/guix.texi:37362 +#: guix-git/doc/guix.texi:37852 #, fuzzy, no-wrap #| msgid "@code{debug?} (default @code{#f})" msgid "@code{xdg-flavor?} (default: @code{#t}) (type: boolean)" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:37367 +#: guix-git/doc/guix.texi:37857 msgid "Place all the configs to @file{$XDG_CONFIG_HOME/zsh}. Makes @file{~/.zshenv} to set @env{ZDOTDIR} to @file{$XDG_CONFIG_HOME/zsh}. Shell startup process will continue with @file{$XDG_CONFIG_HOME/zsh/.zshenv}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37370 +#: guix-git/doc/guix.texi:37860 #, fuzzy #| msgid "A list of environment variables to be defined." msgid "Association list of environment variables to set for the Zsh session." msgstr "Список переменных среды, которые необходимо определить." #. type: item -#: guix-git/doc/guix.texi:37371 +#: guix-git/doc/guix.texi:37861 #, fuzzy, no-wrap #| msgid "@code{packages} (default: @code{%base-packages})" msgid "@code{zshenv} (default: @code{()}) (type: text-config)" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:37376 +#: guix-git/doc/guix.texi:37866 msgid "List of file-like objects, which will be added to @file{.zshenv}. Used for setting user's shell environment variables. Must not contain commands assuming the presence of tty or producing output. Will be read always. Will be read before any other file in @env{ZDOTDIR}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37377 +#: guix-git/doc/guix.texi:37867 #, fuzzy, no-wrap #| msgid "@code{debug?} (default @code{#f})" msgid "@code{zprofile} (default: @code{()}) (type: text-config)" msgstr "@code{features} (default: @code{'()})" #. type: table -#: guix-git/doc/guix.texi:37382 +#: guix-git/doc/guix.texi:37872 msgid "List of file-like objects, which will be added to @file{.zprofile}. Used for executing user's commands at start of login shell (In most cases the shell started on tty just after login). Will be read before @file{.zlogin}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37383 +#: guix-git/doc/guix.texi:37873 #, fuzzy, no-wrap #| msgid "@code{packages} (default: @code{%base-packages})" msgid "@code{zshrc} (default: @code{()}) (type: text-config)" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:37388 +#: guix-git/doc/guix.texi:37878 msgid "List of file-like objects, which will be added to @file{.zshrc}. Used for executing user's commands at start of interactive shell (The shell for interactive usage started by typing @code{zsh} or by terminal app or any other program)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37389 +#: guix-git/doc/guix.texi:37879 #, fuzzy, no-wrap #| msgid "@code{enabled?} (default: @code{#t})" msgid "@code{zlogin} (default: @code{()}) (type: text-config)" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:37393 +#: guix-git/doc/guix.texi:37883 msgid "List of file-like objects, which will be added to @file{.zlogin}. Used for executing user's commands at the end of starting process of login shell." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37394 +#: guix-git/doc/guix.texi:37884 #, fuzzy, no-wrap #| msgid "@code{packages} (default: @code{%base-packages})" msgid "@code{zlogout} (default: @code{()}) (type: text-config)" msgstr "@code{speed} (default: @code{1.0})" #. type: table -#: guix-git/doc/guix.texi:37399 +#: guix-git/doc/guix.texi:37889 msgid "List of file-like objects, which will be added to @file{.zlogout}. Used for executing user's commands at the exit of login shell. It won't be read in some cases (if the shell terminates by exec'ing another process for example)." msgstr "" #. type: node -#: guix-git/doc/guix.texi:37404 +#: guix-git/doc/guix.texi:37894 #, fuzzy, no-wrap #| msgid "Monitoring Services" msgid "Mcron Home Service" msgstr "Сервисы мониторинга" #. type: subsection -#: guix-git/doc/guix.texi:37405 +#: guix-git/doc/guix.texi:37895 #, fuzzy, no-wrap #| msgid "Scheduled Job Execution" msgid "Scheduled User's Job Execution" msgstr "Запланированное исполнения задач" #. type: Plain text -#: guix-git/doc/guix.texi:37418 +#: guix-git/doc/guix.texi:37908 msgid "The @code{(gnu home services mcron)} module provides an interface to GNU@tie{}mcron, a daemon to run jobs at scheduled times (@pxref{Top,,, mcron, GNU@tie{}mcron}). The information about system's mcron is applicable here (@pxref{Scheduled Job Execution}), the only difference for home services is that they have to be declared in a @code{home-envirnoment} record instead of an @code{operating-system} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37419 +#: guix-git/doc/guix.texi:37909 #, fuzzy, no-wrap #| msgid "{Scheme Variable} etc-service-type" msgid "{Scheme Variable} home-mcron-service-type" msgstr "{Scheme Variable} etc-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37423 +#: guix-git/doc/guix.texi:37913 msgid "This is the type of the @code{mcron} home service, whose value is an @code{home-mcron-configuration} object. It allows to manage scheduled tasks." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37430 +#: guix-git/doc/guix.texi:37920 #, fuzzy, no-wrap #| msgid "{Data Type} ganeti-mond-configuration" msgid "{Data Type} home-mcron-configuration" msgstr "{Тип данных} build-machine" #. type: node -#: guix-git/doc/guix.texi:37444 +#: guix-git/doc/guix.texi:37934 #, fuzzy, no-wrap #| msgid "Shepherd Services" msgid "Shepherd Home Service" msgstr "Сервисы Shepherd" #. type: subsection -#: guix-git/doc/guix.texi:37445 -#, no-wrap -msgid "Managing User's Daemons" +#: guix-git/doc/guix.texi:37935 +#, fuzzy, no-wrap +#| msgid "Messaging services." +msgid "Managing User Daemons" +msgstr "Сервисы сообщений." + +#. type: cindex +#: guix-git/doc/guix.texi:37937 +#, fuzzy, no-wrap +#| msgid "shepherd services" +msgid "shepherd services, for users" +msgstr "сервисы shepherd" + +#. type: Plain text +#: guix-git/doc/guix.texi:37944 +msgid "The @code{(gnu home services shepherd)} module supports the definitions of per-user Shepherd services (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}). You extend @code{home-shepherd-service-type} with new services; Guix Home then takes care of starting the @code{shepherd} daemon for you when you log in, which in turns starts the services you asked for." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37449 +#: guix-git/doc/guix.texi:37945 #, fuzzy, no-wrap #| msgid "{Scheme Variable} hostapd-service-type" msgid "{Scheme Variable} home-shepherd-service-type" msgstr "{Процедура Scheme} sane-service-type" #. type: defvr -#: guix-git/doc/guix.texi:37454 +#: guix-git/doc/guix.texi:37950 msgid "The service type for the userland Shepherd, which allows one to manage long-running processes or one-shot tasks. User's Shepherd is not an init process (PID 1), but almost all other information described in (@pxref{Shepherd Services}) is applicable here too." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37459 +#: guix-git/doc/guix.texi:37955 msgid "This is the service type that extensions target when they want to create shepherd services (@pxref{Service Types and Services}, for an example). Each extension must pass a list of @code{}. Its value must be a @code{home-shepherd-configuration}, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37461 +#: guix-git/doc/guix.texi:37957 #, fuzzy, no-wrap #| msgid "{Data Type} shepherd-configuration" msgid "{Data Type} home-shepherd-configuration" msgstr "Конфигурирование системы" #. type: item -#: guix-git/doc/guix.texi:37468 +#: guix-git/doc/guix.texi:37964 #, fuzzy, no-wrap #| msgid "@code{auto-start?} (default: @code{#t})" msgid "auto-start? (default: @code{#t})" msgstr "@code{auto-start?} (default: @code{#t})" #. type: table -#: guix-git/doc/guix.texi:37470 +#: guix-git/doc/guix.texi:37966 msgid "Whether or not to start Shepherd on first login." msgstr "" #. type: section -#: guix-git/doc/guix.texi:37479 +#: guix-git/doc/guix.texi:37975 #, fuzzy, no-wrap #| msgid "Invoking @code{guix system}" msgid "Invoking @code{guix home}" msgstr "Вызов @code{guix deploy}" #. type: Plain text -#: guix-git/doc/guix.texi:37484 +#: guix-git/doc/guix.texi:37980 #, fuzzy #| msgid "Once you have written an operating system declaration as seen in the previous section, it can be @dfn{instantiated} using the @command{guix system} command. The synopsis is:" msgid "Once you have written a home environment declaration (@pxref{Declaring the Home Environment,,,,}, it can be @dfn{instantiated} using the @command{guix home} command. The synopsis is:" msgstr "Однажды объявленное описание операционной системы, описанное в предыдущих разделах, может быть @dfn{применено} с помощью команды @command{guix system}. Синопсис:" #. type: example -#: guix-git/doc/guix.texi:37487 +#: guix-git/doc/guix.texi:37983 #, fuzzy, no-wrap #| msgid "guix weather @var{options}@dots{} [@var{packages}@dots{}]\n" msgid "guix home @var{options}@dots{} @var{action} @var{file}\n" msgstr "guix environment @var{options} @var{package}@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:37494 +#: guix-git/doc/guix.texi:37990 #, fuzzy #| msgid "@var{file} must be the name of a file containing an @code{operating-system} declaration. @var{action} specifies how the operating system is instantiated. Currently the following values are supported:" msgid "@var{file} must be the name of a file containing a @code{home-environment} declaration. @var{action} specifies how the home environment is instantiated, but there are few auxiliary actions which don't instantiate it. Currently the following values are supported:" msgstr "@var{file} должно быть именем файла, содержащего определение @code{operating-system}. @var{action} указывает, как воспроизводится операционная система. В настоящее время поддерживаются следующие значения:" #. type: table -#: guix-git/doc/guix.texi:37499 +#: guix-git/doc/guix.texi:37995 #, fuzzy #| msgid "Display available service type definitions that match the given regular expressions, sorted by relevance:" msgid "Display available home service type definitions that match the given regular expressions, sorted by relevance:" msgstr "Показывает доступные определения типов служб, в соответствии с указанным регулярным выражениям, отсортированные по релевантности:" #. type: cindex -#: guix-git/doc/guix.texi:37501 +#: guix-git/doc/guix.texi:37997 #, fuzzy, no-wrap #| msgid "profile" msgid "shell-profile" msgstr "профиль" #. type: example -#: guix-git/doc/guix.texi:37513 +#: guix-git/doc/guix.texi:38008 #, no-wrap msgid "" "$ guix home search shell\n" "name: home-shell-profile\n" -"location: gnu/home/services/shells.scm:73:2\n" +"location: gnu/home/services/shells.scm:100:2\n" "extends: home-files\n" -"description: Create `~/.profile', which is used for environment initialization\n" -"+ of POSIX compatible login shells. Can be extended with a list of strings or\n" -"+ gexps.\n" +"description: Create `~/.profile', which is used for environment initialization of POSIX compliant login shells.\n" +"+ This service type can be extended with a list of file-like objects.\n" "relevance: 6\n" "\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37519 -#, no-wrap -msgid "" -"name: home-zsh-plugin-manager\n" -"location: gnu/home/services/shellutils.scm:28:2\n" -"extends: home-zsh home-profile\n" -"description: Install plugins in profile and configure Zsh to load them.\n" -"relevance: 1\n" -"\n" -msgstr "" - -#. type: example -#: guix-git/doc/guix.texi:37526 -#, no-wrap -msgid "" -"name: home-zsh-direnv\n" -"location: gnu/home/services/shellutils.scm:69:2\n" -"extends: home-profile home-zsh\n" -"description: Enables `direnv' for `zsh'. Adds hook to `.zshrc' and installs a\n" -"+ package in the profile.\n" -"relevance: 1\n" -"\n" -msgstr "" - -#. type: example -#: guix-git/doc/guix.texi:37535 +#: guix-git/doc/guix.texi:38014 #, no-wrap msgid "" -"name: home-zsh-autosuggestions\n" -"location: gnu/home/services/shellutils.scm:43:2\n" -"extends: home-zsh-plugin-manager home-zsh\n" -"description: Enables Fish-like fast/unobtrusive autosuggestions for `zsh' and\n" -"+ sets reasonable default values for some plugin's variables to improve perfomance\n" -"+ and adjust behavior: `(history completion)' is set for strategy, manual rebind\n" -"+ and async are enabled.\n" -"relevance: 1\n" +"name: home-fish\n" +"location: gnu/home/services/shells.scm:640:2\n" +"extends: home-files home-profile\n" +"description: Install and configure Fish, the friendly interactive shell.\n" +"relevance: 3\n" "\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37541 +#: guix-git/doc/guix.texi:38020 #, no-wrap msgid "" "name: home-zsh\n" -"location: gnu/home/services/shells.scm:236:2\n" +"location: gnu/home/services/shells.scm:290:2\n" "extends: home-files home-profile\n" "description: Install and configure Zsh.\n" "relevance: 1\n" @@ -67580,73 +68582,80 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37547 +#: guix-git/doc/guix.texi:38026 #, no-wrap msgid "" "name: home-bash\n" -"location: gnu/home/services/shells.scm:388:2\n" +"location: gnu/home/services/shells.scm:508:2\n" "extends: home-files home-profile\n" -"description: Install and configure Bash.\n" +"description: Install and configure GNU Bash.\n" "relevance: 1\n" "\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37563 -msgid "Build the home environment described in @var{file}, and switch to it. Switching means that the activation script will be evaluated and (in basic scenario) symlinks to configuration files generated from @code{home-environment} declaration will be created in @file{~}. If the file with the same path already exists in home folder it will be moved to @file{~/TIMESTAMP-guix-home-legacy-configs-backup}, where TIMESTAMP is a current UNIX epoch time." +#: guix-git/doc/guix.texi:38033 +#, fuzzy +#| msgid "As for @command{guix package --search}, the result is written in @code{recutils} format, which makes it easy to filter the output (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." +msgid "As for @command{guix search}, the result is written in @code{recutils} format, which makes it easy to filter the output (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." +msgstr "Так же как для @command{guix package --search}, результат будет выведен в @code{recutils} формате, что делает его простым для фильтрации и вывода (@pxref{Top, GNU recutils databases, recutils, GNU recutils manual})." + +#. type: table +#: guix-git/doc/guix.texi:38042 +msgid "Build the home environment described in @var{file}, and switch to it. Switching means that the activation script will be evaluated and (in basic scenario) symlinks to configuration files generated from @code{home-environment} declaration will be created in @file{~}. If the file with the same path already exists in home folder it will be moved to @file{~/@var{timestamp}-guix-home-legacy-configs-backup}, where @var{timestamp} is a current UNIX epoch time." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37568 +#: guix-git/doc/guix.texi:38047 #, fuzzy #| msgid "It is highly recommended to run @command{guix pull} once before you run @command{guix system reconfigure} for the first time (@pxref{Invoking guix pull}). Failing to do that you would see an older version of Guix once @command{reconfigure} has completed." msgid "It is highly recommended to run @command{guix pull} once before you run @command{guix home reconfigure} for the first time (@pxref{Invoking guix pull})." msgstr "Настоятельно рекомендуется запустить команду @command{guix pull} перед первым запуском @command{guix system reconfigure} (@pxref{Invoking guix pull}). В противном случае вы можете получить старую версию Guix после завершения @command{reconfigure}" #. type: table -#: guix-git/doc/guix.texi:37575 +#: guix-git/doc/guix.texi:38054 #, fuzzy #| msgid "This effects all the configuration specified in @var{file}: user accounts, system services, global package list, setuid programs, etc. The command starts system services specified in @var{file} that are not currently running; if a service is currently running this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop X} or @code{herd restart X})." -msgid "This effects all the configuration specified in @var{file}. The command starts Shepherd services specified in @var{file} that are not currently running; if a service is currently running, this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop X} or @code{herd restart X})." +msgid "This effects all the configuration specified in @var{file}. The command starts Shepherd services specified in @var{file} that are not currently running; if a service is currently running, this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop @var{service}} or @code{herd restart @var{service}})." msgstr "Это действие повлияет на всю конфигурацию, указанную в @var{file}: учетные записи пользователей, системные службы, глобальный список пакетов, программы setuid и т.д. Команда запустит системные службы, указанные в @var{file}, которые в данный момент не запущены; если служба в данный момент запущена, изменения вступят в силу при следующем перезапуске (например@: по @code{herd stop X} или @code{herd restart X})." #. type: table -#: guix-git/doc/guix.texi:37581 +#: guix-git/doc/guix.texi:38060 #, fuzzy #| msgid "This command creates a new generation whose number is one greater than the current generation (as reported by @command{guix system list-generations}). If that generation already exists, it will be overwritten. This behavior mirrors that of @command{guix package} (@pxref{Invoking guix package})." msgid "This command creates a new generation whose number is one greater than the current generation (as reported by @command{guix home list-generations}). If that generation already exists, it will be overwritten. This behavior mirrors that of @command{guix package} (@pxref{Invoking guix package})." msgstr "Эта команда создает новое поколение, число которого на единицу больше, чем у текущего поколения (как описано @command{guix system list-generations}). Если это поколение уже существует, оно будет перезаписано. Это поведение описано в @command{guix package} (@pxref{Invoking guix package})." #. type: cindex -#: guix-git/doc/guix.texi:37582 +#: guix-git/doc/guix.texi:38061 #, fuzzy, no-wrap #| msgid "provenance tracking, of the operating system" msgid "provenance tracking, of the home environment" msgstr "трекинг источника, артефакты программного обеспечения" #. type: table -#: guix-git/doc/guix.texi:37587 +#: guix-git/doc/guix.texi:38066 #, fuzzy #| msgid "Upon completion, the new system is deployed under @file{/run/current-system}. This directory contains @dfn{provenance meta-data}: the list of channels in use (@pxref{Channels}) and @var{file} itself, when available. You can view it by running:" msgid "Upon completion, the new home is deployed under @file{~/.guix-home}. This directory contains @dfn{provenance meta-data}: the list of channels in use (@pxref{Channels}) and @var{file} itself, when available. You can view the provenance information by running:" msgstr "По завершении новая система развертывается в @file{/run/current-system}. Этот каталог содержит @dfn{метаданные о происхождении}: список используемых каналов (@pxref{Channels}) и сам @var{file}, если он доступен. Вы можете просмотреть его, запустив:" #. type: example -#: guix-git/doc/guix.texi:37590 +#: guix-git/doc/guix.texi:38069 #, fuzzy, no-wrap #| msgid "guix describe\n" msgid "guix home describe\n" msgstr "guix describe\n" #. type: table -#: guix-git/doc/guix.texi:37596 +#: guix-git/doc/guix.texi:38075 #, fuzzy #| msgid "This information is useful should you later want to inspect how this particular generation was built. In fact, assuming @var{file} is self-contained, you can later rebuild generation @var{n} of your operating system with:" msgid "This information is useful should you later want to inspect how this particular generation was built. In fact, assuming @var{file} is self-contained, you can later rebuild generation @var{n} of your home environment with:" msgstr "Эта информация пригодится, если позже вы захотите проверить, как было собрано это конкретное поколение. Фактически, предполагая, что @var{file} содержит всё необходимое, вы можете позже пересобрать поколение @var{n} в вашей операционной системы с помощью:" #. type: example -#: guix-git/doc/guix.texi:37602 +#: guix-git/doc/guix.texi:38081 #, no-wrap msgid "" "guix time-machine \\\n" @@ -67657,132 +68666,132 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37609 +#: guix-git/doc/guix.texi:38088 #, fuzzy #| msgid "You can think of it as some sort of built-in version control! Your system is not just a binary artifact: @emph{it carries its own source}. @xref{Service Reference, @code{provenance-service-type}}, for more information on provenance tracking." msgid "You can think of it as some sort of built-in version control! Your home is not just a binary artifact: @emph{it carries its own source}." msgstr "Вы можете думать об этом как о чем-то вроде встроенного контроля версий! Ваша система теперь не просто набор двоичных файлов: @emph{она содержит свой собственный источник}. @xref{Service Reference, @code{provenance-service-type}}, для получения дополнительной информации об отслеживании происхождения." #. type: cindex -#: guix-git/doc/guix.texi:37615 +#: guix-git/doc/guix.texi:38094 #, fuzzy, no-wrap #| msgid "generations" msgid "home generations" msgstr "поколения" #. type: table -#: guix-git/doc/guix.texi:37618 +#: guix-git/doc/guix.texi:38097 msgid "Switch to an existing home generation. This action atomically switches the home profile to the specified home generation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37622 +#: guix-git/doc/guix.texi:38101 #, fuzzy #| msgid "The target generation can be specified explicitly by its generation number. For example, the following invocation would switch to system generation 7:" msgid "The target generation can be specified explicitly by its generation number. For example, the following invocation would switch to home generation 7:" msgstr "Нужное поколение может быть явно указано по его номеру. Например, следующий вызов переключится на поколение 7:" #. type: example -#: guix-git/doc/guix.texi:37625 +#: guix-git/doc/guix.texi:38104 #, fuzzy, no-wrap #| msgid "guix package --list-generations\n" msgid "guix home switch-generation 7\n" msgstr "guix package --list-generations\n" #. type: example -#: guix-git/doc/guix.texi:37636 +#: guix-git/doc/guix.texi:38115 #, fuzzy, no-wrap #| msgid "guix package --list-generations\n" msgid "guix home switch-generation -- -1\n" msgstr "guix package --list-generations\n" #. type: table -#: guix-git/doc/guix.texi:37645 +#: guix-git/doc/guix.texi:38124 #, fuzzy #| msgid "Switch to the preceding system generation. The next time the system boots, it will use the preceding system generation. This is the inverse of @command{reconfigure}, and it is exactly the same as invoking @command{switch-generation} with an argument of @code{-1}." msgid "Switch to the preceding home generation. This is the inverse of @command{reconfigure}, and it is exactly the same as invoking @command{switch-generation} with an argument of @code{-1}." msgstr "Переключает на предыдущее поколение системы. При следующей загрузке система будет использовать предыдущее. Команда отменяет @command{reconfigure}, и делает то же самое, что @command{switch-generation} с аргументом @code{-1}." #. type: cindex -#: guix-git/doc/guix.texi:37647 +#: guix-git/doc/guix.texi:38126 #, fuzzy, no-wrap #| msgid "generations" msgid "deleting home generations" msgstr "поколения" #. type: table -#: guix-git/doc/guix.texi:37652 +#: guix-git/doc/guix.texi:38131 #, fuzzy #| msgid "Delete system generations, making them candidates for garbage collection (@pxref{Invoking guix gc}, for information on how to run the ``garbage collector'')." msgid "Delete home generations, making them candidates for garbage collection (@pxref{Invoking guix gc}, for information on how to run the ``garbage collector'')." msgstr "Удаляет поколение, делая их кандидатами на для сборщика мусора (@pxref{Invoking guix gc}, для получения информации о том, как запустить \"сборщик мусора\")." #. type: table -#: guix-git/doc/guix.texi:37656 +#: guix-git/doc/guix.texi:38135 #, fuzzy #| msgid "This works in the same way as @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). With no arguments, all system generations but the current one are deleted:" msgid "This works in the same way as @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). With no arguments, all home generations but the current one are deleted:" msgstr "Работает так же, как и @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). Без аргументов удаляются все системные поколения, кроме текущего:" #. type: example -#: guix-git/doc/guix.texi:37659 +#: guix-git/doc/guix.texi:38138 #, fuzzy, no-wrap #| msgid "guix package --list-generations\n" msgid "guix home delete-generations\n" msgstr "guix package --list-generations\n" #. type: table -#: guix-git/doc/guix.texi:37663 +#: guix-git/doc/guix.texi:38142 #, fuzzy #| msgid "You can also select the generations you want to delete. The example below deletes all the system generations that are more than two month old:" msgid "You can also select the generations you want to delete. The example below deletes all the home generations that are more than two months old:" msgstr "Вы также можете выбрать поколения, которые хотите удалить. В приведенном примере удаляются все системные поколения, которым более двух месяцев:" #. type: example -#: guix-git/doc/guix.texi:37666 +#: guix-git/doc/guix.texi:38145 #, fuzzy, no-wrap #| msgid "guix package --list-generations\n" msgid "guix home delete-generations 2m\n" msgstr "guix package --list-generations\n" #. type: table -#: guix-git/doc/guix.texi:37672 +#: guix-git/doc/guix.texi:38151 #, fuzzy #| msgid "Build the derivation of the operating system, which includes all the configuration files and programs needed to boot and run the system. This action does not actually install anything." msgid "Build the derivation of the home environment, which includes all the configuration files and programs needed. This action does not actually install anything." msgstr "Собирает деривацию операционной системы, которая включает в себя все файлы конфигурации и программы, необходимые для загрузки и запуска системы. Это действие на самом деле ничего не устанавливает." #. type: table -#: guix-git/doc/guix.texi:37676 +#: guix-git/doc/guix.texi:38155 msgid "Describe the current home generation: its file name, as well as provenance information when available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37682 +#: guix-git/doc/guix.texi:38161 msgid "List a summary of each generation of the home environment available on disk, in a human-readable way. This is similar to the @option{--list-generations} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:37690 +#: guix-git/doc/guix.texi:38169 #, fuzzy, no-wrap #| msgid "guix package --list-generations\n" msgid "$ guix home list-generations 10d\n" msgstr "guix package --list-generations\n" #. type: item -#: guix-git/doc/guix.texi:37692 +#: guix-git/doc/guix.texi:38171 #, fuzzy, no-wrap #| msgid "--import" msgid "import" msgstr "--import" #. type: table -#: guix-git/doc/guix.texi:37699 +#: guix-git/doc/guix.texi:38178 msgid "Generate a @dfn{home environment} from the packages in the default profile and configuration files found in the user's home directory. The configuration files will be copied to the specified directory, and a @file{home-configuration.scm} will be populated with the home environment. Note that not every home service that exists is supported (@pxref{Home Services})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:37703 +#: guix-git/doc/guix.texi:38182 #, no-wrap msgid "" "$ guix home import ~/guix-config\n" @@ -67790,52 +68799,62 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37718 +#: guix-git/doc/guix.texi:38197 msgid "Consider the home-environment @var{expr} evaluates to. This is an alternative to specifying a file which evaluates to a home environment." msgstr "" +#. type: table +#: guix-git/doc/guix.texi:38200 +msgid "Instruct @command{guix home reconfigure} to allow system downgrades." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:38207 +msgid "Just like @command{guix system}, @command{guix home reconfigure}, by default, prevents you from downgrading your home to older or unrelated revisions compared to the channel revisions that were used to deploy it---those shown by @command{guix home describe}. Using @option{--allow-downgrades} allows you to bypass that check, at the risk of downgrading your home---be careful!" +msgstr "" + #. type: cindex -#: guix-git/doc/guix.texi:37724 +#: guix-git/doc/guix.texi:38213 #, no-wrap msgid "documentation, searching for" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37725 +#: guix-git/doc/guix.texi:38214 #, no-wrap msgid "searching for documentation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37726 +#: guix-git/doc/guix.texi:38215 #, no-wrap msgid "Info, documentation format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37727 +#: guix-git/doc/guix.texi:38216 #, no-wrap msgid "man pages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37728 +#: guix-git/doc/guix.texi:38217 #, no-wrap msgid "manual pages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37735 +#: guix-git/doc/guix.texi:38224 msgid "In most cases packages installed with Guix come with documentation. There are two main documentation formats: ``Info'', a browsable hypertext format used for GNU software, and ``manual pages'' (or ``man pages''), the linear documentation format traditionally found on Unix. Info manuals are accessed with the @command{info} command or with Emacs, and man pages are accessed using @command{man}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37739 +#: guix-git/doc/guix.texi:38228 msgid "You can look for documentation of software installed on your system by keyword. For example, the following command searches for information about ``TLS'' in Info manuals:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37747 +#: guix-git/doc/guix.texi:38236 #, no-wrap msgid "" "$ info -k TLS\n" @@ -67853,12 +68872,12 @@ msgstr "" "@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:37753 +#: guix-git/doc/guix.texi:38242 msgid "The command below searches for the same keyword in man pages@footnote{The database searched by @command{man -k} is only created in profiles that contain the @code{man-db} package.}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37759 +#: guix-git/doc/guix.texi:38248 #, no-wrap msgid "" "$ man -k TLS\n" @@ -67872,97 +68891,97 @@ msgstr "" "@dots{}\n" #. type: Plain text -#: guix-git/doc/guix.texi:37765 +#: guix-git/doc/guix.texi:38254 msgid "These searches are purely local to your computer so you have the guarantee that documentation you find corresponds to what you have actually installed, you can access it off-line, and your privacy is respected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37768 +#: guix-git/doc/guix.texi:38257 msgid "Once you have these results, you can view the relevant documentation by running, say:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37771 +#: guix-git/doc/guix.texi:38260 #, no-wrap msgid "$ info \"(gnutls)Core TLS API\"\n" msgstr "$ info \"(gnutls)Core TLS API\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:37775 +#: guix-git/doc/guix.texi:38264 msgid "or:" msgstr "или:" #. type: example -#: guix-git/doc/guix.texi:37778 +#: guix-git/doc/guix.texi:38267 #, no-wrap msgid "$ man certtool\n" msgstr "$ man certtool\n" #. type: Plain text -#: guix-git/doc/guix.texi:37786 +#: guix-git/doc/guix.texi:38275 msgid "Info manuals contain sections and indices as well as hyperlinks like those found in Web pages. The @command{info} reader (@pxref{Top, Info reader,, info-stnd, Stand-alone GNU Info}) and its Emacs counterpart (@pxref{Misc Help,,, emacs, The GNU Emacs Manual}) provide intuitive key bindings to navigate manuals. @xref{Getting Started,,, info, Info: An Introduction}, for an introduction to Info navigation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37790 +#: guix-git/doc/guix.texi:38279 #, no-wrap msgid "debugging files" msgstr "отладка файлов" #. type: Plain text -#: guix-git/doc/guix.texi:37796 +#: guix-git/doc/guix.texi:38285 msgid "Program binaries, as produced by the GCC compilers for instance, are typically written in the ELF format, with a section containing @dfn{debugging information}. Debugging information is what allows the debugger, GDB, to map binary code to source code; it is required to debug a compiled program in good conditions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37800 +#: guix-git/doc/guix.texi:38289 msgid "This chapter explains how to use separate debug info when packages provide it, and how to rebuild packages with debug info when it's missing." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37816 +#: guix-git/doc/guix.texi:38305 msgid "The problem with debugging information is that is takes up a fair amount of disk space. For example, debugging information for the GNU C Library weighs in at more than 60 MiB@. Thus, as a user, keeping all the debugging info of all the installed programs is usually not an option. Yet, space savings should not come at the cost of an impediment to debugging---especially in the GNU system, which should make it easier for users to exert their computing freedom (@pxref{GNU Distribution})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37823 +#: guix-git/doc/guix.texi:38312 msgid "Thankfully, the GNU Binary Utilities (Binutils) and GDB provide a mechanism that allows users to get the best of both worlds: debugging information can be stripped from the binaries and stored in separate files. GDB is then able to load debugging information from those files, when they are available (@pxref{Separate Debug Files,,, gdb, Debugging with GDB})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37831 +#: guix-git/doc/guix.texi:38320 msgid "The GNU distribution takes advantage of this by storing debugging information in the @code{lib/debug} sub-directory of a separate package output unimaginatively called @code{debug} (@pxref{Packages with Multiple Outputs}). Users can choose to install the @code{debug} output of a package when they need it. For instance, the following command installs the debugging information for the GNU C Library and for GNU Guile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37834 +#: guix-git/doc/guix.texi:38323 #, no-wrap msgid "guix install glibc:debug guile:debug\n" msgstr "guix install glibc:debug guile:debug\n" #. type: Plain text -#: guix-git/doc/guix.texi:37840 +#: guix-git/doc/guix.texi:38329 msgid "GDB must then be told to look for debug files in the user's profile, by setting the @code{debug-file-directory} variable (consider setting it from the @file{~/.gdbinit} file, @pxref{Startup,,, gdb, Debugging with GDB}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37843 +#: guix-git/doc/guix.texi:38332 #, no-wrap msgid "(gdb) set debug-file-directory ~/.guix-profile/lib/debug\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37847 +#: guix-git/doc/guix.texi:38336 msgid "From there on, GDB will pick up debugging information from the @file{.debug} files under @file{~/.guix-profile/lib/debug}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37852 +#: guix-git/doc/guix.texi:38341 msgid "Below is an alternative GDB script which is useful when working with other profiles. It takes advantage of the optional Guile integration in GDB. This snippet is included by default on Guix System in the @file{~/.gdbinit} file." msgstr "" #. type: example -#: guix-git/doc/guix.texi:37860 +#: guix-git/doc/guix.texi:38349 #, no-wrap msgid "" "guile\n" @@ -67974,32 +68993,32 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37868 +#: guix-git/doc/guix.texi:38357 msgid "In addition, you will most likely want GDB to be able to show the source code being debugged. To do that, you will have to unpack the source code of the package of interest (obtained with @code{guix build --source}, @pxref{Invoking guix build}), and to point GDB to that source directory using the @code{directory} command (@pxref{Source Path, @code{directory},, gdb, Debugging with GDB})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37876 +#: guix-git/doc/guix.texi:38365 msgid "The @code{debug} output mechanism in Guix is implemented by the @code{gnu-build-system} (@pxref{Build Systems}). Currently, it is opt-in---debugging information is available only for the packages with definitions explicitly declaring a @code{debug} output. To check whether a package has a @code{debug} output, use @command{guix package --list-available} (@pxref{Invoking guix package})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37878 +#: guix-git/doc/guix.texi:38367 msgid "Read on for how to deal with packages lacking a @code{debug} output." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37890 +#: guix-git/doc/guix.texi:38379 msgid "As we saw above, some packages, but not all, provide debugging info in a @code{debug} output. What can you do when debugging info is missing? The @option{--with-debug-info} option provides a solution to that: it allows you to rebuild the package(s) for which debugging info is missing---and only those---and to graft those onto the application you're debugging. Thus, while it's not as fast as installing a @code{debug} output, it is relatively inexpensive." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37895 +#: guix-git/doc/guix.texi:38384 msgid "Let's illustrate that. Suppose you're experiencing a bug in Inkscape and would like to see what's going on in GLib, a library that's deep down in its dependency graph. As it turns out, GLib does not have a @code{debug} output and the backtrace GDB shows is all sadness:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37906 +#: guix-git/doc/guix.texi:38395 #, no-wrap msgid "" "(gdb) bt\n" @@ -68014,17 +69033,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37910 +#: guix-git/doc/guix.texi:38399 msgid "To address that, you install Inkscape linked against a variant GLib that contains debug info:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37916 +#: guix-git/doc/guix.texi:38405 msgid "This time, debugging will be a whole lot nicer:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37934 +#: guix-git/doc/guix.texi:38423 #, no-wrap msgid "" "$ gdb --args sh -c 'exec inkscape'\n" @@ -68046,28 +69065,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37937 +#: guix-git/doc/guix.texi:38426 msgid "Much better!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37941 +#: guix-git/doc/guix.texi:38430 msgid "Note that there can be packages for which @option{--with-debug-info} will not have the desired effect. @xref{Package Transformation Options, @option{--with-debug-info}}, for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37945 +#: guix-git/doc/guix.texi:38434 #, no-wrap msgid "security updates" msgstr "обновление безопасности" #. type: Plain text -#: guix-git/doc/guix.texi:37954 +#: guix-git/doc/guix.texi:38443 msgid "Occasionally, important security vulnerabilities are discovered in software packages and must be patched. Guix developers try hard to keep track of known vulnerabilities and to apply fixes as soon as possible in the @code{master} branch of Guix (we do not yet provide a ``stable'' branch containing only security updates). The @command{guix lint} tool helps developers find out about vulnerable versions of software packages in the distribution:" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:37961 +#: guix-git/doc/guix.texi:38450 #, no-wrap msgid "" "$ guix lint -c cve\n" @@ -68078,39 +69097,39 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37964 +#: guix-git/doc/guix.texi:38453 msgid "@xref{Invoking guix lint}, for more information." msgstr "@xref{Invoking guix lint}, для получения дополнительной информации." #. type: Plain text -#: guix-git/doc/guix.texi:37973 +#: guix-git/doc/guix.texi:38462 msgid "Guix follows a functional package management discipline (@pxref{Introduction}), which implies that, when a package is changed, @emph{every package that depends on it} must be rebuilt. This can significantly slow down the deployment of fixes in core packages such as libc or Bash, since basically the whole distribution would need to be rebuilt. Using pre-built binaries helps (@pxref{Substitutes}), but deployment may still take more time than desired." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37974 +#: guix-git/doc/guix.texi:38463 #, no-wrap msgid "grafts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37982 +#: guix-git/doc/guix.texi:38471 msgid "To address this, Guix implements @dfn{grafts}, a mechanism that allows for fast deployment of critical updates without the costs associated with a whole-distribution rebuild. The idea is to rebuild only the package that needs to be patched, and then to ``graft'' it onto packages explicitly installed by the user and that were previously referring to the original package. The cost of grafting is typically very low, and order of magnitudes lower than a full rebuild of the dependency chain." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37983 +#: guix-git/doc/guix.texi:38472 #, no-wrap msgid "replacements of packages, for grafts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37989 +#: guix-git/doc/guix.texi:38478 msgid "For instance, suppose a security update needs to be applied to Bash. Guix developers will provide a package definition for the ``fixed'' Bash, say @code{bash-fixed}, in the usual way (@pxref{Defining Packages}). Then, the original package definition is augmented with a @code{replacement} field pointing to the package containing the bug fix:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37996 +#: guix-git/doc/guix.texi:38485 #, no-wrap msgid "" "(define bash\n" @@ -68121,190 +69140,190 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38006 +#: guix-git/doc/guix.texi:38495 msgid "From there on, any package depending directly or indirectly on Bash---as reported by @command{guix gc --requisites} (@pxref{Invoking guix gc})---that is installed is automatically ``rewritten'' to refer to @code{bash-fixed} instead of @code{bash}. This grafting process takes time proportional to the size of the package, usually less than a minute for an ``average'' package on a recent machine. Grafting is recursive: when an indirect dependency requires grafting, then grafting ``propagates'' up to the package that the user is installing." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38014 +#: guix-git/doc/guix.texi:38503 msgid "Currently, the length of the name and version of the graft and that of the package it replaces (@code{bash-fixed} and @code{bash} in the example above) must be equal. This restriction mostly comes from the fact that grafting works by patching files, including binary files, directly. Other restrictions may apply: for instance, when adding a graft to a package providing a shared library, the original shared library and its replacement must have the same @code{SONAME} and be binary-compatible." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38018 +#: guix-git/doc/guix.texi:38507 msgid "The @option{--no-grafts} command-line option allows you to forcefully avoid grafting (@pxref{Common Build Options, @option{--no-grafts}}). Thus, the command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38021 +#: guix-git/doc/guix.texi:38510 #, no-wrap msgid "guix build bash --no-grafts\n" msgstr "guix build bash --no-grafts\n" #. type: Plain text -#: guix-git/doc/guix.texi:38025 +#: guix-git/doc/guix.texi:38514 msgid "returns the store file name of the original Bash, whereas:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38028 +#: guix-git/doc/guix.texi:38517 #, no-wrap msgid "guix build bash\n" msgstr "guix build bash\n" #. type: Plain text -#: guix-git/doc/guix.texi:38033 +#: guix-git/doc/guix.texi:38522 msgid "returns the store file name of the ``fixed'', replacement Bash. This allows you to distinguish between the two variants of Bash." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38036 +#: guix-git/doc/guix.texi:38525 msgid "To verify which Bash your whole profile refers to, you can run (@pxref{Invoking guix gc}):" msgstr "Чтобы проверить, к какому именно Bash установлен в вашем профилt, вы можете запустить (@pxref{Invoking guix gc}):" #. type: example -#: guix-git/doc/guix.texi:38039 +#: guix-git/doc/guix.texi:38528 #, no-wrap msgid "guix gc -R $(readlink -f ~/.guix-profile) | grep bash\n" msgstr "guix gc -R `readlink -f ~/.guix-profile` | grep bash\n" #. type: Plain text -#: guix-git/doc/guix.texi:38044 +#: guix-git/doc/guix.texi:38533 msgid "@dots{} and compare the store file names that you get with those above. Likewise for a complete Guix system generation:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38047 +#: guix-git/doc/guix.texi:38536 #, no-wrap msgid "guix gc -R $(guix system build my-config.scm) | grep bash\n" msgstr "guix gc -R `guix system build my-config.scm` | grep bash\n" #. type: Plain text -#: guix-git/doc/guix.texi:38051 +#: guix-git/doc/guix.texi:38540 msgid "Lastly, to check which Bash running processes are using, you can use the @command{lsof} command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38054 +#: guix-git/doc/guix.texi:38543 #, no-wrap msgid "lsof | grep /gnu/store/.*bash\n" msgstr "lsof | grep /gnu/store/.*bash\n" #. type: cindex -#: guix-git/doc/guix.texi:38062 +#: guix-git/doc/guix.texi:38551 #, no-wrap msgid "bootstrapping" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38069 +#: guix-git/doc/guix.texi:38558 msgid "Bootstrapping in our context refers to how the distribution gets built ``from nothing''. Remember that the build environment of a derivation contains nothing but its declared inputs (@pxref{Introduction}). So there's an obvious chicken-and-egg problem: how does the first package get built? How does the first compiler get compiled?" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38077 +#: guix-git/doc/guix.texi:38566 msgid "It is tempting to think of this question as one that only die-hard hackers may care about. However, while the answer to that question is technical in nature, its implications are wide-ranging. How the distribution is bootstrapped defines the extent to which we, as individuals and as a collective of users and hackers, can trust the software we run. It is a central concern from the standpoint of @emph{security} and from a @emph{user freedom} viewpoint." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:38078 guix-git/doc/guix.texi:38290 +#: guix-git/doc/guix.texi:38567 guix-git/doc/guix.texi:38779 #, no-wrap msgid "bootstrap binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38088 +#: guix-git/doc/guix.texi:38577 msgid "The GNU system is primarily made of C code, with libc at its core. The GNU build system itself assumes the availability of a Bourne shell and command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and `grep'. Furthermore, build programs---programs that run @code{./configure}, @code{make}, etc.---are written in Guile Scheme (@pxref{Derivations}). Consequently, to be able to build anything at all, from scratch, Guix relies on pre-built binaries of Guile, GCC, Binutils, libc, and the other packages mentioned above---the @dfn{bootstrap binaries}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38092 +#: guix-git/doc/guix.texi:38581 msgid "These bootstrap binaries are ``taken for granted'', though we can also re-create them if needed (@pxref{Preparing to Use the Bootstrap Binaries})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:38099 +#: guix-git/doc/guix.texi:38588 #, no-wrap msgid "The Reduced Binary Seed Bootstrap" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38106 +#: guix-git/doc/guix.texi:38595 msgid "Guix---like other GNU/Linux distributions---is traditionally bootstrapped from a set of bootstrap binaries: Bourne shell, command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and `grep' and Guile, GCC, Binutils, and the GNU C Library (@pxref{Bootstrapping}). Usually, these bootstrap binaries are ``taken for granted.''" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38112 +#: guix-git/doc/guix.texi:38601 msgid "Taking the bootstrap binaries for granted means that we consider them to be a correct and trustworthy ``seed'' for building the complete system. Therein lies a problem: the combined size of these bootstrap binaries is about 250MB (@pxref{Bootstrappable Builds,,, mes, GNU Mes}). Auditing or even inspecting these is next to impossible." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38117 +#: guix-git/doc/guix.texi:38606 msgid "For @code{i686-linux} and @code{x86_64-linux}, Guix now features a ``Reduced Binary Seed'' bootstrap @footnote{We would like to say: ``Full Source Bootstrap'' and while we are working towards that goal it would be hyperbole to use that term for what we do now.}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38123 +#: guix-git/doc/guix.texi:38612 msgid "The Reduced Binary Seed bootstrap removes the most critical tools---from a trust perspective---from the bootstrap binaries: GCC, Binutils and the GNU C Library are replaced by: @code{bootstrap-mescc-tools} (a tiny assembler and linker) and @code{bootstrap-mes} (a small Scheme Interpreter and a C compiler written in Scheme and the Mes C Library, built for TinyCC and for GCC)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38128 +#: guix-git/doc/guix.texi:38617 msgid "Using these new binary seeds the ``missing'' Binutils, GCC, and the GNU C Library are built from source. From here on the more traditional bootstrap process resumes. This approach has reduced the bootstrap binaries in size to about 145MB in Guix v1.1." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38136 +#: guix-git/doc/guix.texi:38625 msgid "The next step that Guix has taken is to replace the shell and all its utilities with implementations in Guile Scheme, the @emph{Scheme-only bootstrap}. Gash (@pxref{Gash,,, gash, The Gash manual}) is a POSIX-compatible shell that replaces Bash, and it comes with Gash Utils which has minimalist replacements for Awk, the GNU Core Utilities, Grep, Gzip, Sed, and Tar. The rest of the bootstrap binary seeds that were removed are now built from source." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38146 +#: guix-git/doc/guix.texi:38635 msgid "Building the GNU System from source is currently only possible by adding some historical GNU packages as intermediate steps@footnote{Packages such as @code{gcc-2.95.3}, @code{binutils-2.14}, @code{glibc-2.2.5}, @code{gzip-1.2.4}, @code{tar-1.22}, and some others. For details, see @file{gnu/packages/commencement.scm}.}. As Gash and Gash Utils mature, and GNU packages become more bootstrappable again (e.g., new releases of GNU Sed will also ship as gzipped tarballs again, as alternative to the hard to bootstrap @code{xz}-compression), this set of added packages can hopefully be reduced again." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38150 +#: guix-git/doc/guix.texi:38639 msgid "The graph below shows the resulting dependency graph for @code{gcc-core-mesboot0}, the bootstrap compiler used for the traditional bootstrap of the rest of the Guix System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38153 +#: guix-git/doc/guix.texi:38642 msgid "@image{images/gcc-core-mesboot0-graph,6in,,Dependency graph of gcc-core-mesboot0}" msgstr "@image{images/gcc-core-mesboot0-graph,6in,,Dependency graph of gcc-core-mesboot0}" #. type: Plain text -#: guix-git/doc/guix.texi:38160 +#: guix-git/doc/guix.texi:38649 msgid "The only significant binary bootstrap seeds that remain@footnote{ Ignoring the 68KB @code{mescc-tools}; that will be removed later, together with @code{mes}.} are a Scheme interpreter and a Scheme compiler: GNU Mes and GNU Guile@footnote{Not shown in this graph are the static binaries for @file{bash}, @code{tar}, and @code{xz} that are used to get Guile running.}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38163 +#: guix-git/doc/guix.texi:38652 msgid "This further reduction has brought down the size of the binary seed to about 60MB for @code{i686-linux} and @code{x86_64-linux}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38168 +#: guix-git/doc/guix.texi:38657 msgid "Work is ongoing to remove all binary blobs from our free software bootstrap stack, working towards a Full Source Bootstrap. Also ongoing is work to bring these bootstraps to the @code{arm-linux} and @code{aarch64-linux} architectures and to the Hurd." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38172 +#: guix-git/doc/guix.texi:38661 msgid "If you are interested, join us on @samp{#bootstrappable} on the Freenode IRC network or discuss on @email{bug-mes@@gnu.org} or @email{gash-devel@@nongnu.org}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38179 +#: guix-git/doc/guix.texi:38668 msgid "@image{images/bootstrap-graph,6in,,Dependency graph of the early bootstrap derivations}" msgstr "@image{images/bootstrap-graph,6in,,Dependency graph of the early bootstrap derivations}" #. type: Plain text -#: guix-git/doc/guix.texi:38184 +#: guix-git/doc/guix.texi:38673 msgid "The figure above shows the very beginning of the dependency graph of the distribution, corresponding to the package definitions of the @code{(gnu packages bootstrap)} module. A similar figure can be generated with @command{guix graph} (@pxref{Invoking guix graph}), along the lines of:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38189 +#: guix-git/doc/guix.texi:38678 #, no-wrap msgid "" "guix graph -t derivation \\\n" @@ -68316,12 +69335,12 @@ msgstr "" " | dot -Tps > gcc.ps\n" #. type: Plain text -#: guix-git/doc/guix.texi:38192 +#: guix-git/doc/guix.texi:38681 msgid "or, for the further Reduced Binary Seed bootstrap" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38197 +#: guix-git/doc/guix.texi:38686 #, no-wrap msgid "" "guix graph -t derivation \\\n" @@ -68333,43 +69352,43 @@ msgstr "" " | dot -Tps > mes.ps\n" #. type: Plain text -#: guix-git/doc/guix.texi:38206 +#: guix-git/doc/guix.texi:38695 msgid "At this level of detail, things are slightly complex. First, Guile itself consists of an ELF executable, along with many source and compiled Scheme files that are dynamically loaded when it runs. This gets stored in the @file{guile-2.0.7.tar.xz} tarball shown in this graph. This tarball is part of Guix's ``source'' distribution, and gets inserted into the store with @code{add-to-store} (@pxref{The Store})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38215 +#: guix-git/doc/guix.texi:38704 msgid "But how do we write a derivation that unpacks this tarball and adds it to the store? To solve this problem, the @code{guile-bootstrap-2.0.drv} derivation---the first one that gets built---uses @code{bash} as its builder, which runs @code{build-bootstrap-guile.sh}, which in turn calls @code{tar} to unpack the tarball. Thus, @file{bash}, @file{tar}, @file{xz}, and @file{mkdir} are statically-linked binaries, also part of the Guix source distribution, whose sole purpose is to allow the Guile tarball to be unpacked." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38227 +#: guix-git/doc/guix.texi:38716 msgid "Once @code{guile-bootstrap-2.0.drv} is built, we have a functioning Guile that can be used to run subsequent build programs. Its first task is to download tarballs containing the other pre-built binaries---this is what the @file{.tar.xz.drv} derivations do. Guix modules such as @code{ftp-client.scm} are used for this purpose. The @code{module-import.drv} derivations import those modules in a directory in the store, using the original layout. The @code{module-import-compiled.drv} derivations compile those modules, and write them in an output directory with the right layout. This corresponds to the @code{#:modules} argument of @code{build-expression->derivation} (@pxref{Derivations})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38232 +#: guix-git/doc/guix.texi:38721 msgid "Finally, the various tarballs are unpacked by the derivations @code{gcc-bootstrap-0.drv}, @code{glibc-bootstrap-0.drv}, or @code{bootstrap-mes-0.drv} and @code{bootstrap-mescc-tools-0.drv}, at which point we have a working C tool chain." msgstr "" #. type: unnumberedsec -#: guix-git/doc/guix.texi:38233 +#: guix-git/doc/guix.texi:38722 #, no-wrap msgid "Building the Build Tools" msgstr "Сборка инструментов сборки" #. type: Plain text -#: guix-git/doc/guix.texi:38242 +#: guix-git/doc/guix.texi:38731 msgid "Bootstrapping is complete when we have a full tool chain that does not depend on the pre-built bootstrap tools discussed above. This no-dependency requirement is verified by checking whether the files of the final tool chain contain references to the @file{/gnu/store} directories of the bootstrap inputs. The process that leads to this ``final'' tool chain is described by the package definitions found in the @code{(gnu packages commencement)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38249 +#: guix-git/doc/guix.texi:38738 msgid "The @command{guix graph} command allows us to ``zoom out'' compared to the graph above, by looking at the level of package objects instead of individual derivations---remember that a package may translate to several derivations, typically one derivation to download its source, one to build the Guile modules it needs, and one to actually build the package from source. The command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38254 +#: guix-git/doc/guix.texi:38743 #, no-wrap msgid "" "guix graph -t bag \\\n" @@ -68381,168 +69400,181 @@ msgstr "" " glibc-final-with-bootstrap-bash)' | xdot -\n" #. type: Plain text -#: guix-git/doc/guix.texi:38261 +#: guix-git/doc/guix.texi:38750 msgid "displays the dependency graph leading to the ``final'' C library@footnote{You may notice the @code{glibc-intermediate} label, suggesting that it is not @emph{quite} final, but as a good approximation, we will consider it final.}, depicted below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38263 +#: guix-git/doc/guix.texi:38752 msgid "@image{images/bootstrap-packages,6in,,Dependency graph of the early packages}" msgstr "@image{images/bootstrap-packages,6in,,График зависимости ранних пакетов}" #. type: Plain text -#: guix-git/doc/guix.texi:38269 +#: guix-git/doc/guix.texi:38758 msgid "The first tool that gets built with the bootstrap binaries is GNU@tie{}Make---noted @code{make-boot0} above---which is a prerequisite for all the following packages. From there Findutils and Diffutils get built." msgstr "Первый инструмент, который собирается с помощью двоичных файлов начальной загрузки, - это GNU@tie{}Make---отмеченный @code{make-boot0} выше---который является обязательным для всех следующих пакетов. После собираются Findutils и Diffutils." #. type: Plain text -#: guix-git/doc/guix.texi:38274 +#: guix-git/doc/guix.texi:38763 msgid "Then come the first-stage Binutils and GCC, built as pseudo cross tools---i.e., with @option{--target} equal to @option{--host}. They are used to build libc. Thanks to this cross-build trick, this libc is guaranteed not to hold any reference to the initial tool chain." msgstr "Затем идут Binutils и GCC, построенные как псевдо-кросс-инструменты---т.е. с @code{--target}, равным @code{--host}. Они используются для сборки libc. Благодаря этому кросс-сборочному трюку, libc гарантированно не будет содержать никаких ссылок на начальный набор инструментов." #. type: Plain text -#: guix-git/doc/guix.texi:38280 +#: guix-git/doc/guix.texi:38769 msgid "From there the final Binutils and GCC (not shown above) are built. GCC uses @command{ld} from the final Binutils, and links programs against the just-built libc. This tool chain is used to build the other packages used by Guix and by the GNU Build System: Guile, Bash, Coreutils, etc." msgstr "Оттуда создаются финальные версии Binutils и GCC (не показаны выше). GCC использует @code{ld} из финального Binutils и связывает программы с только что созданным libc. Эта цепочка инструментов используется для сборки других пакетов, используемых Guix и система сборки GNU: Guile, Bash, Coreutils и т.д." #. type: Plain text -#: guix-git/doc/guix.texi:38286 +#: guix-git/doc/guix.texi:38775 msgid "And voilà! At this point we have the complete set of build tools that the GNU Build System expects. These are in the @code{%final-inputs} variable of the @code{(gnu packages commencement)} module, and are implicitly used by any package that uses @code{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}})." msgstr "И вуаля! Теперь у нас есть полный набор инструментов сборки, который ожидает система сборки GNU. Они находятся в переменной @code{%final-input} модуля @code{(gnu packages commencement)} и неявно используются любым пакетом, использующим @code{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}})." #. type: unnumberedsec -#: guix-git/doc/guix.texi:38288 +#: guix-git/doc/guix.texi:38777 #, no-wrap msgid "Building the Bootstrap Binaries" msgstr "Сборка двоичных файлов двоичной загрузки" #. type: Plain text -#: guix-git/doc/guix.texi:38295 +#: guix-git/doc/guix.texi:38784 msgid "Because the final tool chain does not depend on the bootstrap binaries, those rarely need to be updated. Nevertheless, it is useful to have an automated way to produce them, should an update occur, and this is what the @code{(gnu packages make-bootstrap)} module provides." msgstr "Поскольку окончательный набор инструментов не зависит от двоичных файлов начальной загрузки, их редко требуется обновлять. Тем не менее, полезно иметь автоматический способ их создания, если произойдет обновление, и это то, что обеспечивает модуль @code{(gnu packages make-bootstrap)}." #. type: Plain text -#: guix-git/doc/guix.texi:38301 +#: guix-git/doc/guix.texi:38790 msgid "The following command builds the tarballs containing the bootstrap binaries (Binutils, GCC, glibc, for the traditional bootstrap and linux-libre-headers, bootstrap-mescc-tools, bootstrap-mes for the Reduced Binary Seed bootstrap, and Guile, and a tarball containing a mixture of Coreutils and other basic command-line tools):" msgstr "Следующая команда создает tar-архивы, содержащие двоичные файлы начальной загрузки (Binutils, GCC, glibc, для традиционной загрузки и linux-libre-headers, bootstrap-mescc-tools, bootstrap-mes для начальной загрузки Reduced Binary Seed, Guile и tarball содержащий смесь Coreutils и других основных инструментов командной строки):" #. type: example -#: guix-git/doc/guix.texi:38304 +#: guix-git/doc/guix.texi:38793 #, no-wrap msgid "guix build bootstrap-tarballs\n" msgstr "tar архив начальной сборки guix\n" #. type: Plain text -#: guix-git/doc/guix.texi:38309 +#: guix-git/doc/guix.texi:38798 msgid "The generated tarballs are those that should be referred to in the @code{(gnu packages bootstrap)} module mentioned at the beginning of this section." msgstr "Сгенерированные тарболы - это те, на которые нужно ссылаться в модуле @code{(gnu packages bootstrap)}, упомянутом в начале этого раздела." #. type: Plain text -#: guix-git/doc/guix.texi:38315 +#: guix-git/doc/guix.texi:38804 msgid "Still here? Then perhaps by now you've started to wonder: when do we reach a fixed point? That is an interesting question! The answer is unknown, but if you would like to investigate further (and have significant computational and storage resources to do so), then let us know." msgstr "Все еще здесь? Тогда, может быть, вы задались вопросом: когда мы достигнем фиксированной точки? Это интересный вопрос! Ответ неизвестен, но если вы хотите продолжить исследование (и располагаете значительными вычислительными ресурсами для этого), сообщите нам." #. type: unnumberedsec -#: guix-git/doc/guix.texi:38316 +#: guix-git/doc/guix.texi:38805 #, no-wrap msgid "Reducing the Set of Bootstrap Binaries" msgstr "Сокращение набора Bootstrap Binaries" #. type: Plain text -#: guix-git/doc/guix.texi:38324 +#: guix-git/doc/guix.texi:38813 msgid "Our traditional bootstrap includes GCC, GNU Libc, Guile, etc. That's a lot of binary code! Why is that a problem? It's a problem because these big chunks of binary code are practically non-auditable, which makes it hard to establish what source code produced them. Every unauditable binary also leaves us vulnerable to compiler backdoors as described by Ken Thompson in the 1984 paper @emph{Reflections on Trusting Trust}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38330 +#: guix-git/doc/guix.texi:38819 msgid "This is mitigated by the fact that our bootstrap binaries were generated from an earlier Guix revision. Nevertheless it lacks the level of transparency that we get in the rest of the package dependency graph, where Guix always gives us a source-to-binary mapping. Thus, our goal is to reduce the set of bootstrap binaries to the bare minimum." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38336 +#: guix-git/doc/guix.texi:38825 msgid "The @uref{https://bootstrappable.org, Bootstrappable.org web site} lists on-going projects to do that. One of these is about replacing the bootstrap GCC with a sequence of assemblers, interpreters, and compilers of increasing complexity, which could be built from source starting from a simple and auditable assembler." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38345 +#: guix-git/doc/guix.texi:38834 msgid "Our first major achievement is the replacement of of GCC, the GNU C Library and Binutils by MesCC-Tools (a simple hex linker and macro assembler) and Mes (@pxref{Top, GNU Mes Reference Manual,, mes, GNU Mes}, a Scheme interpreter and C compiler in Scheme). Neither MesCC-Tools nor Mes can be fully bootstrapped yet and thus we inject them as binary seeds. We call this the Reduced Binary Seed bootstrap, as it has halved the size of our bootstrap binaries! Also, it has eliminated the C compiler binary; i686-linux and x86_64-linux Guix packages are now bootstrapped without any binary C compiler." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38348 +#: guix-git/doc/guix.texi:38837 msgid "Work is ongoing to make MesCC-Tools and Mes fully bootstrappable and we are also looking at any other bootstrap binaries. Your help is welcome!" msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:38350 +#: guix-git/doc/guix.texi:38839 #, no-wrap msgid "Porting to a New Platform" msgstr "Портирование на новую платформу" #. type: Plain text -#: guix-git/doc/guix.texi:38359 +#: guix-git/doc/guix.texi:38848 msgid "As discussed above, the GNU distribution is self-contained, and self-containment is achieved by relying on pre-built ``bootstrap binaries'' (@pxref{Bootstrapping}). These binaries are specific to an operating system kernel, CPU architecture, and application binary interface (ABI). Thus, to port the distribution to a platform that is not yet supported, one must build those bootstrap binaries, and update the @code{(gnu packages bootstrap)} module to use them on that platform." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38364 +#: guix-git/doc/guix.texi:38853 msgid "Fortunately, Guix can @emph{cross compile} those bootstrap binaries. When everything goes well, and assuming the GNU tool chain supports the target platform, this can be as simple as running a command like this one:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38367 +#: guix-git/doc/guix.texi:38856 #, no-wrap msgid "guix build --target=armv5tel-linux-gnueabi bootstrap-tarballs\n" msgstr "guix build --target=armv5tel-linux-gnueabi bootstrap-tarballs\n" #. type: Plain text -#: guix-git/doc/guix.texi:38374 +#: guix-git/doc/guix.texi:38863 msgid "For this to work, the @code{glibc-dynamic-linker} procedure in @code{(gnu packages bootstrap)} must be augmented to return the right file name for libc's dynamic linker on that platform; likewise, @code{system->linux-architecture} in @code{(gnu packages linux)} must be taught about the new platform." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38383 +#: guix-git/doc/guix.texi:38872 msgid "Once these are built, the @code{(gnu packages bootstrap)} module needs to be updated to refer to these binaries on the target platform. That is, the hashes and URLs of the bootstrap tarballs for the new platform must be added alongside those of the currently supported platforms. The bootstrap Guile tarball is treated specially: it is expected to be available locally, and @file{gnu/local.mk} has rules to download it for the supported architectures; a rule for the new platform must be added as well." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38392 +#: guix-git/doc/guix.texi:38881 msgid "In practice, there may be some complications. First, it may be that the extended GNU triplet that specifies an ABI (like the @code{eabi} suffix above) is not recognized by all the GNU tools. Typically, glibc recognizes some of these, whereas GCC uses an extra @option{--with-abi} configure flag (see @code{gcc.scm} for examples of how to handle this). Second, some of the required packages could fail to build for that platform. Lastly, the generated binaries could be broken for some reason." msgstr "" #. type: include -#: guix-git/doc/guix.texi:38394 +#: guix-git/doc/guix.texi:38883 #, no-wrap msgid "contributing.texi" msgstr "contributing.ru.texi" #. type: Plain text -#: guix-git/doc/guix.texi:38407 +#: guix-git/doc/guix.texi:38896 msgid "Guix is based on the @uref{https://nixos.org/nix/, Nix package manager}, which was designed and implemented by Eelco Dolstra, with contributions from other people (see the @file{nix/AUTHORS} file in Guix). Nix pioneered functional package management, and promoted unprecedented features, such as transactional package upgrades and rollbacks, per-user profiles, and referentially transparent build processes. Without this work, Guix would not exist." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38410 +#: guix-git/doc/guix.texi:38899 msgid "The Nix-based software distributions, Nixpkgs and NixOS, have also been an inspiration for Guix." msgstr "Дистрибутивы, основанный на Nix, Nixpkgs and NixOS, также были источником вдохновения для Guix." #. type: Plain text -#: guix-git/doc/guix.texi:38416 +#: guix-git/doc/guix.texi:38905 msgid "GNU@tie{}Guix itself is a collective work with contributions from a number of people. See the @file{AUTHORS} file in Guix for more information on these fine people. The @file{THANKS} file lists people who have helped by reporting bugs, taking care of the infrastructure, providing artwork and themes, making suggestions, and more---thank you!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:38421 +#: guix-git/doc/guix.texi:38910 #, no-wrap msgid "license, GNU Free Documentation License" msgstr "лицензия, GNU Free Documentation License" #. type: include -#: guix-git/doc/guix.texi:38422 +#: guix-git/doc/guix.texi:38911 #, no-wrap msgid "fdl-1.3.texi" msgstr "fdl-1.3.texi" +#~ msgid "./etc/indent-code.el gnu/packages/@var{file}.scm @var{package}\n" +#~ msgstr "./etc/indent-code.el gnu/packages/@var{file}.scm @var{package}\n" + +#~ msgid "This automatically indents the definition of @var{package} in @file{gnu/packages/@var{file}.scm} by running Emacs in batch mode. To indent a whole file, omit the second argument:" +#~ msgstr "Это автоматически расставит отступы в определении @var{package} в файле @file{gnu/packages/@var{file}.scm}, запустив Emacs в фоновом режиме. Чтобы расставить отступы во всём файле, приведите слеующий аргумент:" + +#~ msgid "./etc/indent-code.el gnu/services/@var{file}.scm\n" +#~ msgstr "./etc/indent-code.el gnu/services/@var{file}.scm\n" + +#, fuzzy +#~ msgid "Some older packages that aren't using @file{Package.toml} yet, will require this file to be created, too. The function @code{julia-create-package-toml} helps creating the file. You need to pass the outputs and the source of the package, its name (the same as the @code{file-name} parameter), the package uuid, the package version, and a list of dependencies specified by their name and their uuid." +#~ msgstr "Некоторые старые пакеты, которые еще не используют @file{Package.toml}, также потребуют создания этого файла. Функция @code{julia-create-package-toml} помогает создать файл. Вам необходимо передать выходные данные и источник пакета, его имя (такое же, как параметр @code{file-name}), uuid пакета, версию пакета и список зависимостей, указанных по их имени и их uuid." + #~ msgid "" #~ " (build-machine\n" #~ " (name \"armeight.example.org\")\n" diff --git a/po/doc/guix-manual.sk.po b/po/doc/guix-manual.sk.po index d66153151e..7bc5627e44 100644 --- a/po/doc/guix-manual.sk.po +++ b/po/doc/guix-manual.sk.po @@ -1,14 +1,14 @@ # SOME DESCRIPTIVE TITLE # Copyright (C) 2021 the authors of Guix (msgids) and the following authors (msgstr) # This file is distributed under the same license as the guix manual package. -# Marek Felšöci , 2021. +# Marek Felšöci , 2021, 2022. # Rostislav Svoboda , 2021. msgid "" msgstr "" "Project-Id-Version: guix manual checkout\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2021-12-21 15:18+0000\n" -"PO-Revision-Date: 2021-12-13 01:16+0000\n" +"POT-Creation-Date: 2022-02-02 15:18+0000\n" +"PO-Revision-Date: 2022-01-23 01:16+0000\n" "Last-Translator: Marek Felšöci \n" "Language-Team: Slovak \n" "Language: sk\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 4.9.1\n" +"X-Generator: Weblate 4.10.1\n" #. #-#-#-#-# contributing.pot (guix manual checkout) #-#-#-#-# #. type: chapter @@ -68,8 +68,8 @@ msgid "The latest and greatest." msgstr "Vždy ten najnovší." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:161 -#: guix-git/doc/contributing.texi:162 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:173 +#: guix-git/doc/contributing.texi:174 #, no-wrap msgid "Running Guix Before It Is Installed" msgstr "Spúšťanie Guixu ešte pred inštaláciou" @@ -80,8 +80,8 @@ msgid "Hacker tricks." msgstr "Finty pre hackerov." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:235 -#: guix-git/doc/contributing.texi:236 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:265 +#: guix-git/doc/contributing.texi:266 #, no-wrap msgid "The Perfect Setup" msgstr "Dokonalé nastavenie" @@ -92,8 +92,8 @@ msgid "The right tools." msgstr "Správne nástroje." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:326 -#: guix-git/doc/contributing.texi:327 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:356 +#: guix-git/doc/contributing.texi:357 #, no-wrap msgid "Packaging Guidelines" msgstr "Zásady pridávania balíkov" @@ -104,8 +104,8 @@ msgid "Growing the distribution." msgstr "Rast distribúcie." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:890 -#: guix-git/doc/contributing.texi:891 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:920 +#: guix-git/doc/contributing.texi:921 #, no-wrap msgid "Coding Style" msgstr "Štýl kódovania" @@ -116,8 +116,8 @@ msgid "Hygiene of the contributor." msgstr "Návyky prispievateľa." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:989 -#: guix-git/doc/contributing.texi:990 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1013 +#: guix-git/doc/contributing.texi:1014 #, no-wrap msgid "Submitting Patches" msgstr "Odovzdávanie záplat" @@ -128,8 +128,8 @@ msgid "Share your work." msgstr "Zdieľajte vašu prácu." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1270 -#: guix-git/doc/contributing.texi:1271 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1298 +#: guix-git/doc/contributing.texi:1299 #, no-wrap msgid "Tracking Bugs and Patches" msgstr "Sledovanie chýb a záplat" @@ -140,8 +140,8 @@ msgid "Keeping it all organized." msgstr "Organizácia správy chýb." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1385 -#: guix-git/doc/contributing.texi:1386 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1413 +#: guix-git/doc/contributing.texi:1414 #, no-wrap msgid "Commit Access" msgstr "Právo na úpravu" @@ -152,8 +152,8 @@ msgid "Pushing to the official repository." msgstr "Odosielanie úprav do oficiálneho repozitára." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1611 -#: guix-git/doc/contributing.texi:1612 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1644 +#: guix-git/doc/contributing.texi:1645 #, no-wrap msgid "Updating the Guix Package" msgstr "Aktualizácia balíka Guix" @@ -164,8 +164,8 @@ msgid "Updating the Guix package definition." msgstr "Aktualizovať zadanie balíka Guix." #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1652 -#: guix-git/doc/contributing.texi:1653 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1686 #, no-wrap msgid "Translating Guix" msgstr "Preklad Guixu" @@ -226,17 +226,14 @@ msgstr "Najjednoduchší spôsob nastavenia vývojového prostredia pre Guix je #. type: example #: guix-git/doc/contributing.texi:77 -#, fuzzy, no-wrap -#| msgid "guix environment guix --pure\n" +#, no-wrap msgid "guix shell -D guix --pure\n" -msgstr "guix environment guix --pure\n" +msgstr "guix shell -D guix --pure\n" #. type: Plain text #: guix-git/doc/contributing.texi:80 -#, fuzzy -#| msgid "@xref{Invoking guix environment}, for more information on that command." msgid "@xref{Invoking guix shell}, for more information on that command." -msgstr "@xref{Invoking guix environment}, pre viac podrobností o tomto príkaze." +msgstr "Viď @xref{Invoking guix shell} pre viac podrobností o tomto príkaze." #. type: Plain text #: guix-git/doc/contributing.texi:84 @@ -281,17 +278,14 @@ msgstr "@url{https://www.gnu.org/software/help2man/, GNU Help2man (nepovinné)}. #. type: Plain text #: guix-git/doc/contributing.texi:96 -#, fuzzy -#| msgid "On Guix, extra dependencies can be added by instead running @command{guix environment} with @option{--ad-hoc}:" msgid "On Guix, extra dependencies can be added by instead running @command{guix shell}:" -msgstr "S Guixom môžete pridať dodatočné závislosti pomocou príkazu @command{guix environment} s prepínačom @option{--ad-hoc}:" +msgstr "V Guixe môžete dodatočné závislosti pridať pomocou príkazu @command{guix shell}:" #. type: example #: guix-git/doc/contributing.texi:99 -#, fuzzy, no-wrap -#| msgid "guix environment guix --pure --ad-hoc help2man git strace\n" +#, no-wrap msgid "guix shell -D guix help2man git strace --pure\n" -msgstr "guix environment guix --pure --ad-hoc help2man git strace\n" +msgstr "guix shell -D guix help2man git strace --pure\n" #. type: Plain text #: guix-git/doc/contributing.texi:103 @@ -307,18 +301,18 @@ msgstr "configure.ac:46: error: possibly undefined macro: PKG_CHECK_MODULES\n" #. type: Plain text #: guix-git/doc/contributing.texi:115 msgid "it probably means that Autoconf couldn’t find @file{pkg.m4}, which is provided by pkg-config. Make sure that @file{pkg.m4} is available. The same holds for the @file{guile.m4} set of macros provided by Guile. For instance, if you installed Automake in @file{/usr/local}, it wouldn’t look for @file{.m4} files in @file{/usr/share}. In that case, you have to invoke the following command:" -msgstr "" +msgstr "toto pravdepodobne znamená, že Autoconf nenašiel @file{pkg.m4} poskytovaný balíkom pkg-config. Uistite, sa že @file{pkg.m4} je dostupný. To isté platí pre zbierku makier @file{guile.m4}, ktorú poskytuje Guile. Napríklad, ak ste nainštalovali Automake do @file{/usr/local}, tak súbory @file{.m4} nebude hľadať v @file{/usr/share}. V tomto prípade musíte spustiť nasledovný príkaz:" #. type: example #: guix-git/doc/contributing.texi:118 #, no-wrap msgid "export ACLOCAL_PATH=/usr/share/aclocal\n" -msgstr "" +msgstr "export ACLOCAL_PATH=/usr/share/aclocal\n" #. type: Plain text #: guix-git/doc/contributing.texi:122 msgid "@xref{Macro Search Path,,, automake, The GNU Automake Manual}, for more information." -msgstr "" +msgstr "Viď @xref{Macro Search Path,,, automake, The GNU Automake Manual} pre viac podrobností." #. type: Plain text #: guix-git/doc/contributing.texi:129 @@ -358,33 +352,34 @@ msgid "make authenticate GUIX_GIT_KEYRING=myremote/keyring\n" msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:154 guix-git/doc/contributing.texi:1463 -#: guix-git/doc/guix.texi:594 guix-git/doc/guix.texi:643 -#: guix-git/doc/guix.texi:833 guix-git/doc/guix.texi:1813 -#: guix-git/doc/guix.texi:2060 guix-git/doc/guix.texi:2244 -#: guix-git/doc/guix.texi:2465 guix-git/doc/guix.texi:2677 -#: guix-git/doc/guix.texi:3807 guix-git/doc/guix.texi:4548 -#: guix-git/doc/guix.texi:4562 guix-git/doc/guix.texi:4644 -#: guix-git/doc/guix.texi:4874 guix-git/doc/guix.texi:5615 -#: guix-git/doc/guix.texi:6082 guix-git/doc/guix.texi:6333 -#: guix-git/doc/guix.texi:6454 guix-git/doc/guix.texi:6482 -#: guix-git/doc/guix.texi:6535 guix-git/doc/guix.texi:9391 -#: guix-git/doc/guix.texi:9461 guix-git/doc/guix.texi:11198 -#: guix-git/doc/guix.texi:11238 guix-git/doc/guix.texi:11512 -#: guix-git/doc/guix.texi:11524 guix-git/doc/guix.texi:14000 -#: guix-git/doc/guix.texi:14631 guix-git/doc/guix.texi:15521 -#: guix-git/doc/guix.texi:16507 guix-git/doc/guix.texi:19140 -#: guix-git/doc/guix.texi:19310 guix-git/doc/guix.texi:27188 -#: guix-git/doc/guix.texi:30914 guix-git/doc/guix.texi:34669 -#: guix-git/doc/guix.texi:34903 guix-git/doc/guix.texi:35073 -#: guix-git/doc/guix.texi:35232 guix-git/doc/guix.texi:35334 -#: guix-git/doc/guix.texi:35435 guix-git/doc/guix.texi:35738 -#: guix-git/doc/guix.texi:36896 guix-git/doc/guix.texi:36971 -#: guix-git/doc/guix.texi:37006 guix-git/doc/guix.texi:37056 -#: guix-git/doc/guix.texi:37143 guix-git/doc/guix.texi:37564 +#: guix-git/doc/contributing.texi:154 guix-git/doc/contributing.texi:1496 +#: guix-git/doc/guix.texi:605 guix-git/doc/guix.texi:654 +#: guix-git/doc/guix.texi:844 guix-git/doc/guix.texi:1830 +#: guix-git/doc/guix.texi:2077 guix-git/doc/guix.texi:2261 +#: guix-git/doc/guix.texi:2482 guix-git/doc/guix.texi:2694 +#: guix-git/doc/guix.texi:3825 guix-git/doc/guix.texi:4566 +#: guix-git/doc/guix.texi:4580 guix-git/doc/guix.texi:4662 +#: guix-git/doc/guix.texi:4892 guix-git/doc/guix.texi:5633 +#: guix-git/doc/guix.texi:6119 guix-git/doc/guix.texi:6376 +#: guix-git/doc/guix.texi:6497 guix-git/doc/guix.texi:6525 +#: guix-git/doc/guix.texi:6578 guix-git/doc/guix.texi:9581 +#: guix-git/doc/guix.texi:9705 guix-git/doc/guix.texi:9775 +#: guix-git/doc/guix.texi:11512 guix-git/doc/guix.texi:11552 +#: guix-git/doc/guix.texi:11826 guix-git/doc/guix.texi:11838 +#: guix-git/doc/guix.texi:14357 guix-git/doc/guix.texi:14988 +#: guix-git/doc/guix.texi:15878 guix-git/doc/guix.texi:16864 +#: guix-git/doc/guix.texi:19502 guix-git/doc/guix.texi:19672 +#: guix-git/doc/guix.texi:27525 guix-git/doc/guix.texi:31279 +#: guix-git/doc/guix.texi:35108 guix-git/doc/guix.texi:35342 +#: guix-git/doc/guix.texi:35512 guix-git/doc/guix.texi:35676 +#: guix-git/doc/guix.texi:35778 guix-git/doc/guix.texi:35817 +#: guix-git/doc/guix.texi:35891 guix-git/doc/guix.texi:36228 +#: guix-git/doc/guix.texi:37386 guix-git/doc/guix.texi:37461 +#: guix-git/doc/guix.texi:37496 guix-git/doc/guix.texi:37546 +#: guix-git/doc/guix.texi:37633 guix-git/doc/guix.texi:38043 #, no-wrap msgid "Note" -msgstr "" +msgstr "Poznámka" #. type: quotation #: guix-git/doc/contributing.texi:158 @@ -392,28 +387,46 @@ msgid "You are advised to run @command{make authenticate} after every @command{g msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:168 +#: guix-git/doc/contributing.texi:162 +msgid "After updating the repository, @command{make} might fail with an error similar to the following example:" +msgstr "" + +#. type: example +#: guix-git/doc/contributing.texi:166 +#, no-wrap +msgid "" +"error: failed to load 'gnu/packages/dunst.scm':\n" +"ice-9/eval.scm:293:34: In procedure abi-check: #>: record ABI mismatch; recompilation needed\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:172 +msgid "This means that one of the record types that Guix defines (in this example, the @code{origin} record) has changed, and all of guix needs to be recompiled to take that change into account. To do so, run @command{make clean-go} followed by @command{make}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:180 msgid "In order to keep a sane working environment, you will find it useful to test the changes made in your local source tree checkout without actually installing them. So that you can distinguish between your ``end-user'' hat and your ``motley'' costume." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:179 +#: guix-git/doc/contributing.texi:191 msgid "To that end, all the command-line tools can be used even if you have not run @code{make install}. To do that, you first need to have an environment with all the dependencies available (@pxref{Building from Git}), and then simply prefix each command with @command{./pre-inst-env} (the @file{pre-inst-env} script lives in the top build tree of Guix; it is generated by running @command{./bootstrap} followed by @command{./configure}). As an example, here is how you would build the @code{hello} package as defined in your working tree (this assumes @command{guix-daemon} is already running on your system; it's OK if it's a different version):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:182 +#: guix-git/doc/contributing.texi:194 #, no-wrap msgid "$ ./pre-inst-env guix build hello\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:186 +#: guix-git/doc/contributing.texi:198 msgid "Similarly, an example for a Guile session using the Guix modules:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:189 +#: guix-git/doc/contributing.texi:201 #, no-wrap msgid "" "$ ./pre-inst-env guile -c '(use-modules (guix utils)) (pk (%current-system))'\n" @@ -421,30 +434,30 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:191 +#: guix-git/doc/contributing.texi:203 #, no-wrap msgid ";;; (\"x86_64-linux\")\n" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:194 +#: guix-git/doc/contributing.texi:206 #, no-wrap msgid "REPL" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:195 +#: guix-git/doc/contributing.texi:207 #, no-wrap msgid "read-eval-print loop" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:198 +#: guix-git/doc/contributing.texi:210 msgid "@dots{} and for a REPL (@pxref{Using Guile Interactively,,, guile, Guile Reference Manual}):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:213 +#: guix-git/doc/contributing.texi:225 #, no-wrap msgid "" "$ ./pre-inst-env guile\n" @@ -463,44 +476,67 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:221 +#: guix-git/doc/contributing.texi:233 msgid "If you are hacking on the daemon and its supporting code or if @command{guix-daemon} is not already running on your system, you can launch it straight from the build tree@footnote{The @option{-E} flag to @command{sudo} guarantees that @code{GUILE_LOAD_PATH} is correctly set such that @command{guix-daemon} and the tools it uses can find the Guile modules they need.}:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:224 +#: guix-git/doc/contributing.texi:236 #, no-wrap msgid "$ sudo -E ./pre-inst-env guix-daemon --build-users-group=guixbuild\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:228 +#: guix-git/doc/contributing.texi:240 msgid "The @command{pre-inst-env} script sets up all the environment variables necessary to support this, including @env{PATH} and @env{GUILE_LOAD_PATH}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:233 +#: guix-git/doc/contributing.texi:245 msgid "Note that @command{./pre-inst-env guix pull} does @emph{not} upgrade the local source tree; it simply updates the @file{~/.config/guix/current} symlink (@pxref{Invoking guix pull}). Run @command{git pull} instead if you want to upgrade your local source tree." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:243 +#: guix-git/doc/contributing.texi:249 +msgid "Sometimes, especially if you have recently updated your repository, running @command{./pre-inst-env} will print a message similar to the following example:" +msgstr "" + +#. type: example +#: guix-git/doc/contributing.texi:253 +#, no-wrap +msgid "" +";;; note: source file /home/user/projects/guix/guix/progress.scm\n" +";;; newer than compiled /home/user/projects/guix/guix/progress.go\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:259 +msgid "This is only a note and you can safely ignore it. You can get rid of the message by running @command{make -j4}. Until you do, Guile will run slightly slower because it will interpret the code instead of using prepared Guile object (@file{.go}) files." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:264 +msgid "You can run @command{make} automatically as you work using @command{watchexec} from the @code{watchexec} package. For example, to build again each time you update a package file, you can run @samp{watchexec -w gnu/packages make -j4}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:273 msgid "The Perfect Setup to hack on Guix is basically the perfect setup used for Guile hacking (@pxref{Using Guile in Emacs,,, guile, Guile Reference Manual}). First, you need more than an editor, you need @url{https://www.gnu.org/software/emacs, Emacs}, empowered by the wonderful @url{https://nongnu.org/geiser/, Geiser}. To set that up, run:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:246 +#: guix-git/doc/contributing.texi:276 #, no-wrap msgid "guix package -i emacs guile emacs-geiser emacs-geiser-guile\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:255 +#: guix-git/doc/contributing.texi:285 msgid "Geiser allows for interactive and incremental development from within Emacs: code compilation and evaluation from within buffers, access to on-line documentation (docstrings), context-sensitive completion, @kbd{M-.} to jump to an object definition, a REPL to try out your code, and more (@pxref{Introduction,,, geiser, Geiser User Manual}). For convenient Guix development, make sure to augment Guile’s load path so that it finds source files from your checkout:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:260 +#: guix-git/doc/contributing.texi:290 #, no-wrap msgid "" ";; @r{Assuming the Guix checkout is in ~/src/guix.}\n" @@ -509,35 +545,35 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:268 +#: guix-git/doc/contributing.texi:298 msgid "To actually edit the code, Emacs already has a neat Scheme mode. But in addition to that, you must not miss @url{https://www.emacswiki.org/emacs/ParEdit, Paredit}. It provides facilities to directly operate on the syntax tree, such as raising an s-expression or wrapping it, swallowing or rejecting the following s-expression, etc." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:269 +#: guix-git/doc/contributing.texi:299 #, no-wrap msgid "code snippets" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:270 +#: guix-git/doc/contributing.texi:300 #, no-wrap msgid "templates" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:271 +#: guix-git/doc/contributing.texi:301 #, no-wrap msgid "reducing boilerplate" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:278 +#: guix-git/doc/contributing.texi:308 msgid "We also provide templates for common git commit messages and package definitions in the @file{etc/snippets} directory. These templates can be used with @url{https://joaotavora.github.io/yasnippet/, YASnippet} to expand short trigger strings to interactive text snippets. You may want to add the snippets directory to the @var{yas-snippet-dirs} variable in Emacs." msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:283 +#: guix-git/doc/contributing.texi:313 #, no-wrap msgid "" ";; @r{Assuming the Guix checkout is in ~/src/guix.}\n" @@ -546,40 +582,40 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:291 +#: guix-git/doc/contributing.texi:321 msgid "The commit message snippets depend on @url{https://magit.vc/, Magit} to display staged files. When editing a commit message type @code{add} followed by @kbd{TAB} to insert a commit message template for adding a package; type @code{update} followed by @kbd{TAB} to insert a template for updating a package; type @code{https} followed by @kbd{TAB} to insert a template for changing the home page URI of a package to HTTPS." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:297 +#: guix-git/doc/contributing.texi:327 msgid "The main snippet for @code{scheme-mode} is triggered by typing @code{package...} followed by @kbd{TAB}. This snippet also inserts the trigger string @code{origin...}, which can be expanded further. The @code{origin} snippet in turn may insert other trigger strings ending on @code{...}, which also can be expanded further." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:298 +#: guix-git/doc/contributing.texi:328 #, no-wrap msgid "insert or update copyright" msgstr "" #. type: code{#1} -#: guix-git/doc/contributing.texi:299 +#: guix-git/doc/contributing.texi:329 #, no-wrap msgid "M-x guix-copyright" msgstr "" #. type: code{#1} -#: guix-git/doc/contributing.texi:300 +#: guix-git/doc/contributing.texi:330 #, no-wrap msgid "M-x copyright-update" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:304 +#: guix-git/doc/contributing.texi:334 msgid "We additionally provide insertion and automatic update of a copyright in @file{etc/copyright.el}. You may want to set your full name, mail, and load a file." msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:310 +#: guix-git/doc/contributing.texi:340 #, no-wrap msgid "" "(setq user-full-name \"Alice Doe\")\n" @@ -589,17 +625,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:313 +#: guix-git/doc/contributing.texi:343 msgid "To insert a copyright at the current line invoke @code{M-x guix-copyright}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:315 +#: guix-git/doc/contributing.texi:345 msgid "To update a copyright you need to specify a @code{copyright-names-regexp}." msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:319 +#: guix-git/doc/contributing.texi:349 #, no-wrap msgid "" "(setq copyright-names-regexp\n" @@ -607,281 +643,281 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:325 +#: guix-git/doc/contributing.texi:355 msgid "You can check if your copyright is up to date by evaluating @code{M-x copyright-update}. If you want to do it automatically after each buffer save then add @code{(add-hook 'after-save-hook 'copyright-update)} in Emacs." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:329 +#: guix-git/doc/contributing.texi:359 #, no-wrap msgid "packages, creating" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:333 +#: guix-git/doc/contributing.texi:363 msgid "The GNU distribution is nascent and may well lack some of your favorite packages. This section describes how you can help make the distribution grow." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:341 +#: guix-git/doc/contributing.texi:371 msgid "Free software packages are usually distributed in the form of @dfn{source code tarballs}---typically @file{tar.gz} files that contain all the source files. Adding a package to the distribution means essentially two things: adding a @dfn{recipe} that describes how to build the package, including a list of other packages required to build it, and adding @dfn{package metadata} along with that recipe, such as a description and licensing information." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:350 +#: guix-git/doc/contributing.texi:380 msgid "In Guix all this information is embodied in @dfn{package definitions}. Package definitions provide a high-level view of the package. They are written using the syntax of the Scheme programming language; in fact, for each package we define a variable bound to the package definition, and export that variable from a module (@pxref{Package Modules}). However, in-depth Scheme knowledge is @emph{not} a prerequisite for creating packages. For more information on package definitions, @pxref{Defining Packages}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:356 +#: guix-git/doc/contributing.texi:386 msgid "Once a package definition is in place, stored in a file in the Guix source tree, it can be tested using the @command{guix build} command (@pxref{Invoking guix build}). For example, assuming the new package is called @code{gnew}, you may run this command from the Guix build tree (@pxref{Running Guix Before It Is Installed}):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:359 +#: guix-git/doc/contributing.texi:389 #, no-wrap msgid "./pre-inst-env guix build gnew --keep-failed\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:365 +#: guix-git/doc/contributing.texi:395 msgid "Using @code{--keep-failed} makes it easier to debug build failures since it provides access to the failed build tree. Another useful command-line option when debugging is @code{--log-file}, to access the build log." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:370 +#: guix-git/doc/contributing.texi:400 msgid "If the package is unknown to the @command{guix} command, it may be that the source file contains a syntax error, or lacks a @code{define-public} clause to export the package variable. To figure it out, you may load the module from Guile to get more information about the actual error:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:373 +#: guix-git/doc/contributing.texi:403 #, no-wrap msgid "./pre-inst-env guile -c '(use-modules (gnu packages gnew))'\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:380 +#: guix-git/doc/contributing.texi:410 msgid "Once your package builds correctly, please send us a patch (@pxref{Submitting Patches}). Well, if you need help, we will be happy to help you too. Once the patch is committed in the Guix repository, the new package automatically gets built on the supported platforms by @url{https://@value{SUBSTITUTE-SERVER-1}, our continuous integration system}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:381 +#: guix-git/doc/contributing.texi:411 #, no-wrap msgid "substituter" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:388 +#: guix-git/doc/contributing.texi:418 msgid "Users can obtain the new package definition simply by running @command{guix pull} (@pxref{Invoking guix pull}). When @code{@value{SUBSTITUTE-SERVER-1}} is done building the package, installing the package automatically downloads binaries from there (@pxref{Substitutes}). The only place where human intervention is needed is to review and apply the patch." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:404 -#: guix-git/doc/contributing.texi:405 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:434 +#: guix-git/doc/contributing.texi:435 #, no-wrap msgid "Software Freedom" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "What may go into the distribution." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:432 -#: guix-git/doc/contributing.texi:433 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:462 +#: guix-git/doc/contributing.texi:463 #, no-wrap msgid "Package Naming" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "What's in a name?" msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:465 -#: guix-git/doc/contributing.texi:466 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:495 +#: guix-git/doc/contributing.texi:496 #, no-wrap msgid "Version Numbers" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "When the name is not enough." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:572 -#: guix-git/doc/contributing.texi:573 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:602 +#: guix-git/doc/contributing.texi:603 #, no-wrap msgid "Synopses and Descriptions" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Helping users find the right package." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:651 -#: guix-git/doc/contributing.texi:652 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:681 +#: guix-git/doc/contributing.texi:682 #, no-wrap msgid "Snippets versus Phases" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Whether to use a snippet, or a build phase." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:666 -#: guix-git/doc/contributing.texi:667 guix-git/doc/guix.texi:1995 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:696 +#: guix-git/doc/contributing.texi:697 guix-git/doc/guix.texi:2012 #, no-wrap msgid "Emacs Packages" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Your Elisp fix." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:706 -#: guix-git/doc/contributing.texi:707 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:736 +#: guix-git/doc/contributing.texi:737 #, no-wrap msgid "Python Modules" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "A touch of British comedy." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:782 -#: guix-git/doc/contributing.texi:783 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:812 +#: guix-git/doc/contributing.texi:813 #, no-wrap msgid "Perl Modules" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Little pearls." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:798 -#: guix-git/doc/contributing.texi:799 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:828 +#: guix-git/doc/contributing.texi:829 #, no-wrap msgid "Java Packages" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Coffee break." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:818 -#: guix-git/doc/contributing.texi:819 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:848 +#: guix-git/doc/contributing.texi:849 #, no-wrap msgid "Rust Crates" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Beware of oxidation." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:852 -#: guix-git/doc/contributing.texi:853 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:882 +#: guix-git/doc/contributing.texi:883 #, no-wrap msgid "Fonts" -msgstr "" +msgstr "Písma" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Fond of fonts." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:408 +#: guix-git/doc/contributing.texi:438 #, no-wrap msgid "free software" -msgstr "" +msgstr "slobodný softvér" #. type: Plain text -#: guix-git/doc/contributing.texi:416 +#: guix-git/doc/contributing.texi:446 msgid "The GNU operating system has been developed so that users can have freedom in their computing. GNU is @dfn{free software}, meaning that users have the @url{https://www.gnu.org/philosophy/free-sw.html,four essential freedoms}: to run the program, to study and change the program in source code form, to redistribute exact copies, and to distribute modified versions. Packages found in the GNU distribution provide only software that conveys these four freedoms." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:422 +#: guix-git/doc/contributing.texi:452 msgid "In addition, the GNU distribution follow the @url{https://www.gnu.org/distros/free-system-distribution-guidelines.html,free software distribution guidelines}. Among other things, these guidelines reject non-free firmware, recommendations of non-free software, and discuss ways to deal with trademarks and patents." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:430 +#: guix-git/doc/contributing.texi:460 msgid "Some otherwise free upstream package sources contain a small and optional subset that violates the above guidelines, for instance because this subset is itself non-free code. When that happens, the offending items are removed with appropriate patches or code snippets in the @code{origin} form of the package (@pxref{Defining Packages}). This way, @code{guix build --source} returns the ``freed'' source rather than the unmodified upstream source." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:435 +#: guix-git/doc/contributing.texi:465 #, no-wrap msgid "package name" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:443 +#: guix-git/doc/contributing.texi:473 msgid "A package actually has two names associated with it. First, there is the name of the @emph{Scheme variable}, the one following @code{define-public}. By this name, the package can be made known in the Scheme code, for instance as input to another package. Second, there is the string in the @code{name} field of a package definition. This name is used by package management commands such as @command{guix package} and @command{guix build}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:448 +#: guix-git/doc/contributing.texi:478 msgid "Both are usually the same and correspond to the lowercase conversion of the project name chosen upstream, with underscores replaced with hyphens. For instance, GNUnet is available as @code{gnunet}, and SDL_net as @code{sdl-net}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:456 +#: guix-git/doc/contributing.texi:486 msgid "A noteworthy exception to this rule is when the project name is only a single character, or if an older maintained project with the same name already exists---regardless of whether it has already been packaged for Guix. Use common sense to make such names unambiguous and meaningful. For example, Guix's package for the shell called ``s'' upstream is @code{s-shell} and @emph{not} @code{s}. Feel free to ask your fellow hackers for inspiration." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:461 +#: guix-git/doc/contributing.texi:491 msgid "We do not add @code{lib} prefixes for library packages, unless these are already part of the official project name. But @pxref{Python Modules} and @ref{Perl Modules} for special rules concerning modules for the Python and Perl languages." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:463 +#: guix-git/doc/contributing.texi:493 msgid "Font package names are handled differently, @pxref{Fonts}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:468 +#: guix-git/doc/contributing.texi:498 #, no-wrap msgid "package version" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:477 +#: guix-git/doc/contributing.texi:507 msgid "We usually package only the latest version of a given free software project. But sometimes, for instance for incompatible library versions, two (or more) versions of the same package are needed. These require different Scheme variable names. We use the name as defined in @ref{Package Naming} for the most recent version; previous versions use the same name, suffixed by @code{-} and the smallest prefix of the version number that may distinguish the two versions." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:480 +#: guix-git/doc/contributing.texi:510 msgid "The name inside the package definition is the same for all versions of a package and does not contain any version number." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:482 +#: guix-git/doc/contributing.texi:512 msgid "For instance, the versions 2.24.20 and 3.9.12 of GTK+ may be packaged as follows:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:494 +#: guix-git/doc/contributing.texi:524 #, no-wrap msgid "" "(define-public gtk+\n" @@ -897,12 +933,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:496 +#: guix-git/doc/contributing.texi:526 msgid "If we also wanted GTK+ 3.8.2, this would be packaged as" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:502 +#: guix-git/doc/contributing.texi:532 #, no-wrap msgid "" "(define-public gtk+-3.8\n" @@ -913,23 +949,23 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:506 +#: guix-git/doc/contributing.texi:536 #, no-wrap msgid "version number, for VCS snapshots" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:512 +#: guix-git/doc/contributing.texi:542 msgid "Occasionally, we package snapshots of upstream's version control system (VCS) instead of formal releases. This should remain exceptional, because it is up to upstream developers to clarify what the stable release is. Yet, it is sometimes necessary. So, what should we put in the @code{version} field?" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:520 +#: guix-git/doc/contributing.texi:550 msgid "Clearly, we need to make the commit identifier of the VCS snapshot visible in the version string, but we also need to make sure that the version string is monotonically increasing so that @command{guix package --upgrade} can determine which version is newer. Since commit identifiers, notably with Git, are not monotonically increasing, we add a revision number that we increase each time we upgrade to a newer snapshot. The resulting version string looks like this:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:529 +#: guix-git/doc/contributing.texi:559 #, no-wrap msgid "" "2.0.11-3.cabba9e\n" @@ -942,12 +978,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:539 +#: guix-git/doc/contributing.texi:569 msgid "It is a good idea to strip commit identifiers in the @code{version} field to, say, 7 digits. It avoids an aesthetic annoyance (assuming aesthetics have a role to play here) as well as problems related to OS limits such as the maximum shebang length (127 bytes for the Linux kernel). There are helper functions for doing this for packages using @code{git-fetch} or @code{hg-fetch} (see below). It is best to use the full commit identifiers in @code{origin}s, though, to avoid ambiguities. A typical package definition may look like this:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:556 +#: guix-git/doc/contributing.texi:586 #, no-wrap msgid "" "(define my-package\n" @@ -967,18 +1003,18 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/contributing.texi:558 +#: guix-git/doc/contributing.texi:588 #, no-wrap msgid "{Scheme Procedure} git-version @var{VERSION} @var{REVISION} @var{COMMIT}" msgstr "" #. type: deffn -#: guix-git/doc/contributing.texi:560 +#: guix-git/doc/contributing.texi:590 msgid "Return the version string for packages using @code{git-fetch}." msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:564 +#: guix-git/doc/contributing.texi:594 #, no-wrap msgid "" "(git-version \"0.2.3\" \"0\" \"93818c936ee7e2f1ba1b315578bde363a7d43d05\")\n" @@ -986,71 +1022,71 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/contributing.texi:567 +#: guix-git/doc/contributing.texi:597 #, no-wrap msgid "{Scheme Procedure} hg-version @var{VERSION} @var{REVISION} @var{CHANGESET}" msgstr "" #. type: deffn -#: guix-git/doc/contributing.texi:570 +#: guix-git/doc/contributing.texi:600 msgid "Return the version string for packages using @code{hg-fetch}. It works in the same way as @code{git-version}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:575 +#: guix-git/doc/contributing.texi:605 #, no-wrap msgid "package description" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:576 +#: guix-git/doc/contributing.texi:606 #, no-wrap msgid "package synopsis" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:583 +#: guix-git/doc/contributing.texi:613 msgid "As we have seen before, each package in GNU@tie{}Guix includes a synopsis and a description (@pxref{Defining Packages}). Synopses and descriptions are important: They are what @command{guix package --search} searches, and a crucial piece of information to help users determine whether a given package suits their needs. Consequently, packagers should pay attention to what goes into them." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:591 +#: guix-git/doc/contributing.texi:621 msgid "Synopses must start with a capital letter and must not end with a period. They must not start with ``a'' or ``the'', which usually does not bring anything; for instance, prefer ``File-frobbing tool'' over ``A tool that frobs files''. The synopsis should say what the package is---e.g., ``Core GNU utilities (file, text, shell)''---or what it is used for---e.g., the synopsis for GNU@tie{}grep is ``Print lines matching a pattern''." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:601 +#: guix-git/doc/contributing.texi:631 msgid "Keep in mind that the synopsis must be meaningful for a very wide audience. For example, ``Manipulate alignments in the SAM format'' might make sense for a seasoned bioinformatics researcher, but might be fairly unhelpful or even misleading to a non-specialized audience. It is a good idea to come up with a synopsis that gives an idea of the application domain of the package. In this example, this might give something like ``Manipulate nucleotide sequence alignments'', which hopefully gives the user a better idea of whether this is what they are looking for." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:609 +#: guix-git/doc/contributing.texi:639 msgid "Descriptions should take between five and ten lines. Use full sentences, and avoid using acronyms without first introducing them. Please avoid marketing phrases such as ``world-leading'', ``industrial-strength'', and ``next-generation'', and avoid superlatives like ``the most advanced''---they are not helpful to users looking for a package and may even sound suspicious. Instead, try to be factual, mentioning use cases and features." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:610 +#: guix-git/doc/contributing.texi:640 #, no-wrap msgid "Texinfo markup, in package descriptions" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:619 +#: guix-git/doc/contributing.texi:649 msgid "Descriptions can include Texinfo markup, which is useful to introduce ornaments such as @code{@@code} or @code{@@dfn}, bullet lists, or hyperlinks (@pxref{Overview,,, texinfo, GNU Texinfo}). However you should be careful when using some characters for example @samp{@@} and curly braces which are the basic special characters in Texinfo (@pxref{Special Characters,,, texinfo, GNU Texinfo}). User interfaces such as @command{guix package --show} take care of rendering it appropriately." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:625 +#: guix-git/doc/contributing.texi:655 msgid "Synopses and descriptions are translated by volunteers @uref{https://translate.fedoraproject.org/projects/guix/packages, at Weblate} so that as many users as possible can read them in their native language. User interfaces search them and display them in the language specified by the current locale." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:630 +#: guix-git/doc/contributing.texi:660 msgid "To allow @command{xgettext} to extract them as translatable strings, synopses and descriptions @emph{must be literal strings}. This means that you cannot use @code{string-append} or @code{format} to construct these strings:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:636 +#: guix-git/doc/contributing.texi:666 #, no-wrap msgid "" "(package\n" @@ -1060,12 +1096,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:644 +#: guix-git/doc/contributing.texi:674 msgid "Translation is a lot of work so, as a packager, please pay even more attention to your synopses and descriptions as every change may entail additional work for translators. In order to help them, it is possible to make recommendations or instructions visible to them by inserting special comments like this (@pxref{xgettext Invocation,,, gettext, GNU Gettext}):" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:649 +#: guix-git/doc/contributing.texi:679 #, no-wrap msgid "" ";; TRANSLATORS: \"X11 resize-and-rotate\" should not be translated.\n" @@ -1074,440 +1110,439 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:654 +#: guix-git/doc/contributing.texi:684 #, no-wrap msgid "snippets, when to use" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:665 +#: guix-git/doc/contributing.texi:695 msgid "The boundary between using an origin snippet versus a build phase to modify the sources of a package can be elusive. Origin snippets are typically used to remove unwanted files such as bundled libraries, nonfree sources, or to apply simple substitutions. The source derived from an origin should produce a source that can be used to build the package on any system that the upstream package supports (i.e., act as the corresponding source). In particular, origin snippets must not embed store items in the sources; such patching should rather be done using build phases. Refer to the @code{origin} record documentation for more information (@pxref{origin Reference})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:669 +#: guix-git/doc/contributing.texi:699 #, no-wrap msgid "emacs, packaging" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:670 +#: guix-git/doc/contributing.texi:700 #, no-wrap msgid "elisp, packaging" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:682 +#: guix-git/doc/contributing.texi:712 msgid "Emacs packages should preferably use the Emacs build system (@pxref{emacs-build-system}), for uniformity and the benefits provided by its build phases, such as the auto-generation of the autoloads file and the byte compilation of the sources. Because there is no standardized way to run a test suite for Emacs packages, tests are disabled by default. When a test suite is available, it should be enabled by setting the @code{#:tests?} argument to @code{#true}. By default, the command to run the test is @command{make check}, but any command can be specified via the @code{#:test-command} argument. The @code{#:test-command} argument expects a list containing a command and its arguments, to be invoked during the @code{check} phase." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:687 +#: guix-git/doc/contributing.texi:717 msgid "The Elisp dependencies of Emacs packages are typically provided as @code{propagated-inputs} when required at run time. As for other packages, build or test dependencies should be specified as @code{native-inputs}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:696 +#: guix-git/doc/contributing.texi:726 msgid "Emacs packages sometimes depend on resources directories that should be installed along the Elisp files. The @code{#:include} argument can be used for that purpose, by specifying a list of regexps to match. The best practice when using the @code{#:include} argument is to extend rather than override its default value (accessible via the @code{%default-include} variable). As an example, a yasnippet extension package typically include a @file{snippets} directory, which could be copied to the installation directory using:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:699 +#: guix-git/doc/contributing.texi:729 #, no-wrap msgid "#:include (cons \"^snippets/\" %default-include)\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:705 +#: guix-git/doc/contributing.texi:735 msgid "When encountering problems, it is wise to check for the presence of the @code{Package-Requires} extension header in the package main source file, and whether any dependencies and their versions listed therein are satisfied." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:709 +#: guix-git/doc/contributing.texi:739 #, no-wrap msgid "python" -msgstr "" +msgstr "python" #. type: Plain text -#: guix-git/doc/contributing.texi:715 +#: guix-git/doc/contributing.texi:745 msgid "We currently package Python 2 and Python 3, under the Scheme variable names @code{python-2} and @code{python} as explained in @ref{Version Numbers}. To avoid confusion and naming clashes with other programming languages, it seems desirable that the name of a package for a Python module contains the word @code{python}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:722 +#: guix-git/doc/contributing.texi:752 msgid "Some modules are compatible with only one version of Python, others with both. If the package Foo is compiled with Python 3, we name it @code{python-foo}. If it is compiled with Python 2, we name it @code{python2-foo}. Packages should be added when they are necessary; we don't add Python 2 variants of the package unless we are going to use them." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:728 +#: guix-git/doc/contributing.texi:758 msgid "If a project already contains the word @code{python}, we drop this; for instance, the module python-dateutil is packaged under the names @code{python-dateutil} and @code{python2-dateutil}. If the project name starts with @code{py} (e.g.@: @code{pytz}), we keep it and prefix it as described above." msgstr "" #. type: subsubsection -#: guix-git/doc/contributing.texi:729 +#: guix-git/doc/contributing.texi:759 #, no-wrap msgid "Specifying Dependencies" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:730 +#: guix-git/doc/contributing.texi:760 #, no-wrap msgid "inputs, for Python packages" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:735 +#: guix-git/doc/contributing.texi:765 msgid "Dependency information for Python packages is usually available in the package source tree, with varying degrees of accuracy: in the @file{setup.py} file, in @file{requirements.txt}, or in @file{tox.ini}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:741 +#: guix-git/doc/contributing.texi:771 msgid "Your mission, when writing a recipe for a Python package, is to map these dependencies to the appropriate type of ``input'' (@pxref{package Reference, inputs}). Although the @code{pypi} importer normally does a good job (@pxref{Invoking guix import}), you may want to check the following check list to determine which dependency goes where." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:749 +#: guix-git/doc/contributing.texi:779 msgid "We currently package Python 2 with @code{setuptools} and @code{pip} installed like Python 3.4 has per default. Thus you don't need to specify either of these as an input. @command{guix lint} will warn you if you do." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:755 +#: guix-git/doc/contributing.texi:785 msgid "Python dependencies required at run time go into @code{propagated-inputs}. They are typically defined with the @code{install_requires} keyword in @file{setup.py}, or in the @file{requirements.txt} file." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:763 +#: guix-git/doc/contributing.texi:793 msgid "Python packages required only at build time---e.g., those listed with the @code{setup_requires} keyword in @file{setup.py}---or only for testing---e.g., those in @code{tests_require}---go into @code{native-inputs}. The rationale is that (1) they do not need to be propagated because they are not needed at run time, and (2) in a cross-compilation context, it's the ``native'' input that we'd want." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:767 +#: guix-git/doc/contributing.texi:797 msgid "Examples are the @code{pytest}, @code{mock}, and @code{nose} test frameworks. Of course if any of these packages is also required at run-time, it needs to go to @code{propagated-inputs}." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:772 +#: guix-git/doc/contributing.texi:802 msgid "Anything that does not fall in the previous categories goes to @code{inputs}, for example programs or C libraries required for building Python packages containing C extensions." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:778 +#: guix-git/doc/contributing.texi:808 msgid "If a Python package has optional dependencies (@code{extras_require}), it is up to you to decide whether to add them or not, based on their usefulness/overhead ratio (@pxref{Submitting Patches, @command{guix size}})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:785 +#: guix-git/doc/contributing.texi:815 #, no-wrap msgid "perl" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:796 +#: guix-git/doc/contributing.texi:826 msgid "Perl programs standing for themselves are named as any other package, using the lowercase upstream name. For Perl packages containing a single class, we use the lowercase class name, replace all occurrences of @code{::} by dashes and prepend the prefix @code{perl-}. So the class @code{XML::Parser} becomes @code{perl-xml-parser}. Modules containing several classes keep their lowercase upstream name and are also prepended by @code{perl-}. Such modules tend to have the word @code{perl} somewhere in their name, which gets dropped in favor of the prefix. For instance, @code{libwww-perl} becomes @code{perl-libwww}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:801 +#: guix-git/doc/contributing.texi:831 #, no-wrap msgid "java" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:804 +#: guix-git/doc/contributing.texi:834 msgid "Java programs standing for themselves are named as any other package, using the lowercase upstream name." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:810 +#: guix-git/doc/contributing.texi:840 msgid "To avoid confusion and naming clashes with other programming languages, it is desirable that the name of a package for a Java package is prefixed with @code{java-}. If a project already contains the word @code{java}, we drop this; for instance, the package @code{ngsjava} is packaged under the name @code{java-ngs}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:816 +#: guix-git/doc/contributing.texi:846 msgid "For Java packages containing a single class or a small class hierarchy, we use the lowercase class name, replace all occurrences of @code{.} by dashes and prepend the prefix @code{java-}. So the class @code{apache.commons.cli} becomes package @code{java-apache-commons-cli}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:821 +#: guix-git/doc/contributing.texi:851 #, no-wrap msgid "rust" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:824 +#: guix-git/doc/contributing.texi:854 msgid "Rust programs standing for themselves are named as any other package, using the lowercase upstream name." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:828 +#: guix-git/doc/contributing.texi:858 msgid "To prevent namespace collisions we prefix all other Rust packages with the @code{rust-} prefix. The name should be changed to lowercase as appropriate and dashes should remain in place." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:834 +#: guix-git/doc/contributing.texi:864 msgid "In the rust ecosystem it is common for multiple incompatible versions of a package to be used at any given time, so all package definitions should have a versioned suffix. The versioned suffix is the left-most non-zero digit (and any leading zeros, of course). This follows the ``caret'' version scheme intended by Cargo. Examples@: @code{rust-clap-2}, @code{rust-rand-0.6}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:844 +#: guix-git/doc/contributing.texi:874 msgid "Because of the difficulty in reusing rust packages as pre-compiled inputs for other packages the Cargo build system (@pxref{Build Systems, @code{cargo-build-system}}) presents the @code{#:cargo-inputs} and @code{cargo-development-inputs} keywords as build system arguments. It would be helpful to think of these as similar to @code{propagated-inputs} and @code{native-inputs}. Rust @code{dependencies} and @code{build-dependencies} should go in @code{#:cargo-inputs}, and @code{dev-dependencies} should go in @code{#:cargo-development-inputs}. If a Rust package links to other libraries then the standard placement in @code{inputs} and the like should be used." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:850 +#: guix-git/doc/contributing.texi:880 msgid "Care should be taken to ensure the correct version of dependencies are used; to this end we try to refrain from skipping the tests or using @code{#:skip-build?} when possible. Of course this is not always possible, as the package may be developed for a different Operating System, depend on features from the Nightly Rust compiler, or the test suite may have atrophied since it was released." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:855 guix-git/doc/guix.texi:1930 +#: guix-git/doc/contributing.texi:885 guix-git/doc/guix.texi:1947 #, no-wrap msgid "fonts" -msgstr "" +msgstr "písma" #. type: Plain text -#: guix-git/doc/contributing.texi:861 +#: guix-git/doc/contributing.texi:891 msgid "For fonts that are in general not installed by a user for typesetting purposes, or that are distributed as part of a larger software package, we rely on the general packaging rules for software; for instance, this applies to the fonts delivered as part of the X.Org system or fonts that are part of TeX Live." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:865 +#: guix-git/doc/contributing.texi:895 msgid "To make it easier for a user to search for fonts, names for other packages containing only fonts are constructed as follows, independently of the upstream package name." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:873 +#: guix-git/doc/contributing.texi:903 msgid "The name of a package containing only one font family starts with @code{font-}; it is followed by the foundry name and a dash @code{-} if the foundry is known, and the font family name, in which spaces are replaced by dashes (and as usual, all upper case letters are transformed to lower case). For example, the Gentium font family by SIL is packaged under the name @code{font-sil-gentium}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:882 +#: guix-git/doc/contributing.texi:912 msgid "For a package containing several font families, the name of the collection is used in the place of the font family name. For instance, the Liberation fonts consist of three families, Liberation Sans, Liberation Serif and Liberation Mono. These could be packaged separately under the names @code{font-liberation-sans} and so on; but as they are distributed together under a common name, we prefer to package them together as @code{font-liberation}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:888 +#: guix-git/doc/contributing.texi:918 msgid "In the case where several formats of the same font family or font collection are packaged separately, a short form of the format, prepended by a dash, is added to the package name. We use @code{-ttf} for TrueType fonts, @code{-otf} for OpenType fonts and @code{-type1} for PostScript Type 1 fonts." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:896 +#: guix-git/doc/contributing.texi:926 msgid "In general our code follows the GNU Coding Standards (@pxref{Top,,, standards, GNU Coding Standards}). However, they do not say much about Scheme, so here are some additional rules." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:904 -#: guix-git/doc/contributing.texi:905 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:934 +#: guix-git/doc/contributing.texi:935 #, no-wrap msgid "Programming Paradigm" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "How to compose your elements." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:911 -#: guix-git/doc/contributing.texi:912 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:941 +#: guix-git/doc/contributing.texi:942 #, no-wrap msgid "Modules" -msgstr "" +msgstr "Moduly" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Where to store your code?" msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:922 -#: guix-git/doc/contributing.texi:923 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:952 +#: guix-git/doc/contributing.texi:953 #, no-wrap msgid "Data Types and Pattern Matching" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Implementing data structures." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:937 -#: guix-git/doc/contributing.texi:938 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:967 +#: guix-git/doc/contributing.texi:968 #, no-wrap msgid "Formatting Code" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Writing conventions." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:910 +#: guix-git/doc/contributing.texi:940 msgid "Scheme code in Guix is written in a purely functional style. One exception is code that involves input/output, and procedures that implement low-level concepts, such as the @code{memoize} procedure." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:918 +#: guix-git/doc/contributing.texi:948 msgid "Guile modules that are meant to be used on the builder side must live in the @code{(guix build @dots{})} name space. They must not refer to other Guix or GNU modules. However, it is OK for a ``host-side'' module to use a build-side module." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:921 +#: guix-git/doc/contributing.texi:951 msgid "Modules that deal with the broader GNU system should be in the @code{(gnu @dots{})} name space rather than @code{(guix @dots{})}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:930 +#: guix-git/doc/contributing.texi:960 msgid "The tendency in classical Lisp is to use lists to represent everything, and then to browse them ``by hand'' using @code{car}, @code{cdr}, @code{cadr}, and co. There are several problems with that style, notably the fact that it is hard to read, error-prone, and a hindrance to proper type error reports." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:936 +#: guix-git/doc/contributing.texi:966 msgid "Guix code should define appropriate data types (for instance, using @code{define-record-type*}) rather than abuse lists. In addition, it should use pattern matching, via Guile’s @code{(ice-9 match)} module, especially when matching lists (@pxref{Pattern Matching,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:940 +#: guix-git/doc/contributing.texi:970 #, no-wrap msgid "formatting code" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:941 +#: guix-git/doc/contributing.texi:971 #, no-wrap msgid "coding style" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:948 +#: guix-git/doc/contributing.texi:978 msgid "When writing Scheme code, we follow common wisdom among Scheme programmers. In general, we follow the @url{https://mumble.net/~campbell/scheme/style.txt, Riastradh's Lisp Style Rules}. This document happens to describe the conventions mostly used in Guile’s code too. It is very thoughtful and well written, so please do read it." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:955 +#: guix-git/doc/contributing.texi:985 msgid "Some special forms introduced in Guix, such as the @code{substitute*} macro, have special indentation rules. These are defined in the @file{.dir-locals.el} file, which Emacs automatically uses. Also note that Emacs-Guix provides @code{guix-devel-mode} mode that indents and highlights Guix code properly (@pxref{Development,,, emacs-guix, The Emacs-Guix Reference Manual})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:956 +#: guix-git/doc/contributing.texi:986 #, no-wrap msgid "indentation, of code" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:957 +#: guix-git/doc/contributing.texi:987 #, no-wrap msgid "formatting, of code" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:960 +#: guix-git/doc/contributing.texi:990 msgid "If you do not use Emacs, please make sure to let your editor knows these rules. To automatically indent a package definition, you can also run:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:963 +#: guix-git/doc/contributing.texi:993 #, no-wrap -msgid "./etc/indent-code.el gnu/packages/@var{file}.scm @var{package}\n" +msgid "./pre-inst-env guix style @var{package}\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:969 -msgid "This automatically indents the definition of @var{package} in @file{gnu/packages/@var{file}.scm} by running Emacs in batch mode. To indent a whole file, omit the second argument:" -msgstr "" - -#. type: example -#: guix-git/doc/contributing.texi:972 -#, no-wrap -msgid "./etc/indent-code.el gnu/services/@var{file}.scm\n" -msgstr "" +#: guix-git/doc/contributing.texi:997 +msgid "@xref{Invoking guix style}, for more information." +msgstr "Viď @xref{Invoking guix style} pre viac podrobností." #. type: cindex -#: guix-git/doc/contributing.texi:974 +#: guix-git/doc/contributing.texi:998 #, no-wrap msgid "Vim, Scheme code editing" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:980 +#: guix-git/doc/contributing.texi:1004 msgid "If you are editing code with Vim, we recommend that you run @code{:set autoindent} so that your code is automatically indented as you type. Additionally, @uref{https://www.vim.org/scripts/script.php?script_id=3998, @code{paredit.vim}} may help you deal with all these parentheses." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:984 +#: guix-git/doc/contributing.texi:1008 msgid "We require all top-level procedures to carry a docstring. This requirement can be relaxed for simple private procedures in the @code{(guix build @dots{})} name space, though." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:987 +#: guix-git/doc/contributing.texi:1011 msgid "Procedures should not have more than four positional parameters. Use keyword parameters for procedures that take more than four parameters." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1001 +#: guix-git/doc/contributing.texi:1025 msgid "Development is done using the Git distributed version control system. Thus, access to the repository is not strictly necessary. We welcome contributions in the form of patches as produced by @code{git format-patch} sent to the @email{guix-patches@@gnu.org} mailing list (@pxref{submitting patches,, Submitting patches to a project, git, Git User Manual}). Contributors are encouraged to take a moment to set some Git repository options (@pxref{Configuring Git}) first, which can improve the readability of patches. Seasoned Guix developers may also want to look at the section on commit access (@pxref{Commit Access})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1008 +#: guix-git/doc/contributing.texi:1032 msgid "This mailing list is backed by a Debbugs instance, which allows us to keep track of submissions (@pxref{Tracking Bugs and Patches}). Each message sent to that mailing list gets a new tracking number assigned; people can then follow up on the submission by sending email to @code{@var{NNN}@@debbugs.gnu.org}, where @var{NNN} is the tracking number (@pxref{Sending a Patch Series})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1012 +#: guix-git/doc/contributing.texi:1036 msgid "Please write commit logs in the ChangeLog format (@pxref{Change Logs,,, standards, GNU Coding Standards}); you can check the commit history for examples." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1015 +#: guix-git/doc/contributing.texi:1039 msgid "Before submitting a patch that adds or modifies a package definition, please run through this check list:" msgstr "" #. type: code{#1} -#: guix-git/doc/contributing.texi:1017 guix-git/doc/contributing.texi:1223 +#: guix-git/doc/contributing.texi:1041 guix-git/doc/contributing.texi:1251 #, no-wrap msgid "git format-patch" msgstr "" #. type: code{#1} -#: guix-git/doc/contributing.texi:1018 +#: guix-git/doc/contributing.texi:1042 #, no-wrap msgid "git-format-patch" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1025 +#: guix-git/doc/contributing.texi:1049 msgid "When generating your patches with @code{git format-patch} or @code{git send-email}, we recommend using the option @code{--base=}, perhaps with the value @code{auto}. This option adds a note to the patch stating which commit the patch is based on. This helps reviewers understand how to apply and review your patches." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1031 +#: guix-git/doc/contributing.texi:1055 msgid "If the authors of the packaged software provide a cryptographic signature for the release tarball, make an effort to verify the authenticity of the archive. For a detached GPG signature file this would be done with the @code{gpg --verify} command." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1035 +#: guix-git/doc/contributing.texi:1059 msgid "Take some time to provide an adequate synopsis and description for the package. @xref{Synopses and Descriptions}, for some guidelines." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1040 +#: guix-git/doc/contributing.texi:1064 msgid "Run @code{guix lint @var{package}}, where @var{package} is the name of the new or modified package, and fix any errors it reports (@pxref{Invoking guix lint})." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1044 +#: guix-git/doc/contributing.texi:1068 +msgid "Run @code{guix style @var{package}} to format the new package definition according to the project's conventions (@pxref{Invoking guix style})." +msgstr "" + +#. type: enumerate +#: guix-git/doc/contributing.texi:1072 msgid "Make sure the package builds on your platform, using @code{guix build @var{package}}." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1052 +#: guix-git/doc/contributing.texi:1080 msgid "We recommend you also try building the package on other supported platforms. As you may not have access to actual hardware platforms, we recommend using the @code{qemu-binfmt-service-type} to emulate them. In order to enable it, add the @code{virtualization} service module and the following service to the list of services in your @code{operating-system} configuration:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:1057 +#: guix-git/doc/contributing.texi:1085 #, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -1516,17 +1551,17 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1060 +#: guix-git/doc/contributing.texi:1088 msgid "Then reconfigure your system." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1065 +#: guix-git/doc/contributing.texi:1093 msgid "You can then build packages for different platforms by specifying the @code{--system} option. For example, to build the \"hello\" package for the armhf or aarch64 architectures, you would run the following commands, respectively:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1068 +#: guix-git/doc/contributing.texi:1096 #, no-wrap msgid "" "guix build --system=armhf-linux --rounds=2 hello\n" @@ -1534,233 +1569,231 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1071 +#: guix-git/doc/contributing.texi:1099 #, no-wrap msgid "bundling" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1074 +#: guix-git/doc/contributing.texi:1102 msgid "Make sure the package does not use bundled copies of software already available as separate packages." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1083 +#: guix-git/doc/contributing.texi:1111 msgid "Sometimes, packages include copies of the source code of their dependencies as a convenience for users. However, as a distribution, we want to make sure that such packages end up using the copy we already have in the distribution, if there is one. This improves resource usage (the dependency is built and stored only once), and allows the distribution to make transverse changes such as applying security updates for a given software package in a single place and have them affect the whole system---something that bundled copies prevent." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1092 +#: guix-git/doc/contributing.texi:1120 msgid "Take a look at the profile reported by @command{guix size} (@pxref{Invoking guix size}). This will allow you to notice references to other packages unwillingly retained. It may also help determine whether to split the package (@pxref{Packages with Multiple Outputs}), and which optional dependencies should be used. In particular, avoid adding @code{texlive} as a dependency: because of its extreme size, use the @code{texlive-tiny} package or @code{texlive-union} procedure instead." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1097 +#: guix-git/doc/contributing.texi:1125 msgid "For important changes, check that dependent packages (if applicable) are not affected by the change; @code{guix refresh --list-dependent @var{package}} will help you do that (@pxref{Invoking guix refresh})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1099 +#: guix-git/doc/contributing.texi:1127 #, no-wrap msgid "branching strategy" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1100 +#: guix-git/doc/contributing.texi:1128 #, no-wrap msgid "rebuild scheduling strategy" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1103 +#: guix-git/doc/contributing.texi:1131 msgid "Depending on the number of dependent packages and thus the amount of rebuilding induced, commits go to different branches, along these lines:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1105 +#: guix-git/doc/contributing.texi:1133 #, no-wrap msgid "300 dependent packages or less" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1107 +#: guix-git/doc/contributing.texi:1135 msgid "@code{master} branch (non-disruptive changes)." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1108 +#: guix-git/doc/contributing.texi:1136 #, no-wrap msgid "between 300 and 1,800 dependent packages" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1114 +#: guix-git/doc/contributing.texi:1142 msgid "@code{staging} branch (non-disruptive changes). This branch is intended to be merged in @code{master} every 6 weeks or so. Topical changes (e.g., an update of the GNOME stack) can instead go to a specific branch (say, @code{gnome-updates}). This branch is not expected to be buildable or usable until late in its development process." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1115 +#: guix-git/doc/contributing.texi:1143 #, no-wrap msgid "more than 1,800 dependent packages" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1120 +#: guix-git/doc/contributing.texi:1148 msgid "@code{core-updates} branch (may include major and potentially disruptive changes). This branch is intended to be merged in @code{master} every 6 months or so. This branch is not expected to be buildable or usable until late in its development process." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1127 +#: guix-git/doc/contributing.texi:1155 msgid "All these branches are @uref{https://@value{SUBSTITUTE-SERVER-1}, tracked by our build farm} and merged into @code{master} once everything has been successfully built. This allows us to fix issues before they hit users, and to reduce the window during which pre-built binaries are not available." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1136 +#: guix-git/doc/contributing.texi:1164 msgid "When we decide to start building the @code{staging} or @code{core-updates} branches, they will be forked and renamed with the suffix @code{-frozen}, at which time only bug fixes may be pushed to the frozen branches. The @code{core-updates} and @code{staging} branches will remain open to accept patches for the next cycle. Please ask on the mailing list or IRC if unsure where to place a patch." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1138 +#: guix-git/doc/contributing.texi:1166 #, no-wrap msgid "determinism, of build processes" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1139 +#: guix-git/doc/contributing.texi:1167 #, no-wrap msgid "reproducible builds, checking" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1143 +#: guix-git/doc/contributing.texi:1171 msgid "Check whether the package's build process is deterministic. This typically means checking whether an independent build of the package yields the exact same result that you obtained, bit for bit." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1146 +#: guix-git/doc/contributing.texi:1174 msgid "A simple way to do that is by building the same package several times in a row on your machine (@pxref{Invoking guix build}):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1149 +#: guix-git/doc/contributing.texi:1177 #, no-wrap msgid "guix build --rounds=2 my-package\n" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1153 +#: guix-git/doc/contributing.texi:1181 msgid "This is enough to catch a class of common non-determinism issues, such as timestamps or randomly-generated output in the build result." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1163 +#: guix-git/doc/contributing.texi:1191 msgid "Another option is to use @command{guix challenge} (@pxref{Invoking guix challenge}). You may run it once the package has been committed and built by @code{@value{SUBSTITUTE-SERVER-1}} to check whether it obtains the same result as you did. Better yet: Find another machine that can build it and run @command{guix publish}. Since the remote build machine is likely different from yours, this can catch non-determinism issues related to the hardware---e.g., use of different instruction set extensions---or to the operating system kernel---e.g., reliance on @code{uname} or @file{/proc} files." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1169 +#: guix-git/doc/contributing.texi:1197 msgid "When writing documentation, please use gender-neutral wording when referring to people, such as @uref{https://en.wikipedia.org/wiki/Singular_they, singular ``they''@comma{} ``their''@comma{} ``them''}, and so forth." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1173 +#: guix-git/doc/contributing.texi:1201 msgid "Verify that your patch contains only one set of related changes. Bundling unrelated changes together makes reviewing harder and slower." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1176 +#: guix-git/doc/contributing.texi:1204 msgid "Examples of unrelated changes include the addition of several packages, or a package update along with fixes to that package." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1181 -msgid "Please follow our code formatting rules, possibly running the @command{etc/indent-code.el} script to do that automatically for you (@pxref{Formatting Code})." +#: guix-git/doc/contributing.texi:1209 +msgid "Please follow our code formatting rules, possibly running @command{guix style} script to do that automatically for you (@pxref{Formatting Code})." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1189 +#: guix-git/doc/contributing.texi:1217 msgid "When possible, use mirrors in the source URL (@pxref{Invoking guix download}). Use reliable URLs, not generated ones. For instance, GitHub archives are not necessarily identical from one generation to the next, so in this case it's often better to clone the repository. Don't use the @command{name} field in the URL: it is not very useful and if the name changes, the URL will probably be wrong." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1193 +#: guix-git/doc/contributing.texi:1221 msgid "Check if Guix builds (@pxref{Building from Git}) and address the warnings, especially those about use of undefined symbols." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1196 +#: guix-git/doc/contributing.texi:1224 msgid "Make sure your changes do not break Guix and simulate a @code{guix pull} with:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1198 +#: guix-git/doc/contributing.texi:1226 #, no-wrap msgid "guix pull --url=/path/to/your/checkout --profile=/tmp/guix.master\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1211 +#: guix-git/doc/contributing.texi:1239 msgid "When posting a patch to the mailing list, use @samp{[PATCH] @dots{}} as a subject, if your patch is to be applied on a branch other than @code{master}, say @code{core-updates}, specify it in the subject like @samp{[PATCH core-updates] @dots{}}. You may use your email client or the @command{git send-email} command (@pxref{Sending a Patch Series}). We prefer to get patches in plain text messages, either inline or as MIME attachments. You are advised to pay attention if your email client changes anything like line breaks or indentation which could potentially break the patches." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1216 +#: guix-git/doc/contributing.texi:1244 msgid "Expect some delay when you submit your very first patch to @email{guix-patches@@gnu.org}. You have to wait until you get an acknowledgement with the assigned tracking number. Future acknowledgements should not be delayed." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1219 +#: guix-git/doc/contributing.texi:1247 msgid "When a bug is resolved, please close the thread by sending an email to @email{@var{NNN}-done@@debbugs.gnu.org}." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1220 guix-git/doc/contributing.texi:1221 -#, fuzzy, no-wrap -#| msgid "System Configuration" +#: guix-git/doc/contributing.texi:1248 guix-git/doc/contributing.texi:1249 +#, no-wrap msgid "Configuring Git" -msgstr "Nastavenie systému" +msgstr "Nastavenie Git" #. type: cindex -#: guix-git/doc/contributing.texi:1222 -#, fuzzy, no-wrap -#| msgid "System Configuration" +#: guix-git/doc/contributing.texi:1250 +#, no-wrap msgid "git configuration" -msgstr "Nastavenie systému" +msgstr "nastavenie git" #. type: code{#1} -#: guix-git/doc/contributing.texi:1224 guix-git/doc/contributing.texi:1259 +#: guix-git/doc/contributing.texi:1252 guix-git/doc/contributing.texi:1287 #, no-wrap msgid "git send-email" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1232 +#: guix-git/doc/contributing.texi:1260 msgid "If you have not done so already, you may wish to set a name and email that will be associated with your commits (@pxref{telling git your name, , Telling Git your name, git, Git User Manual}). If you wish to use a different name or email just for commits in this repository, you can use @command{git config --local}, or edit @file{.git/config} in the repository instead of @file{~/.gitconfig}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1238 +#: guix-git/doc/contributing.texi:1266 msgid "We provide some default settings in @file{etc/git/gitconfig} which modify how patches are generated, making them easier to read and apply. These settings can be applied by manually copying them to @file{.git/config} in your checkout, or by telling Git to include the whole file:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1241 +#: guix-git/doc/contributing.texi:1269 #, no-wrap msgid "git config --local include.path ../etc/git/gitconfig\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1245 +#: guix-git/doc/contributing.texi:1273 msgid "From then on, any changes to @file{etc/git/gitconfig} would automatically take effect." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1250 +#: guix-git/doc/contributing.texi:1278 msgid "Since the first patch in a series must be sent separately (@pxref{Sending a Patch Series}), it can also be helpful to tell @command{git format-patch} to handle the e-mail threading instead of @command{git send-email}:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1254 +#: guix-git/doc/contributing.texi:1282 #, no-wrap msgid "" "git config --local format.thread shallow\n" @@ -1768,184 +1801,184 @@ msgid "" msgstr "" #. type: anchor{#1} -#: guix-git/doc/contributing.texi:1256 guix-git/doc/contributing.texi:1258 +#: guix-git/doc/contributing.texi:1284 guix-git/doc/contributing.texi:1286 #, no-wrap msgid "Sending a Patch Series" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1258 +#: guix-git/doc/contributing.texi:1286 #, no-wrap msgid "patch series" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1269 +#: guix-git/doc/contributing.texi:1297 msgid "When sending a patch series (e.g., using @code{git send-email}), please first send one message to @email{guix-patches@@gnu.org}, and then send subsequent patches to @email{@var{NNN}@@debbugs.gnu.org} to make sure they are kept together. See @uref{https://debbugs.gnu.org/Advanced.html, the Debbugs documentation} for more information. You can install @command{git send-email} with @command{guix install git:send-email}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1275 +#: guix-git/doc/contributing.texi:1303 msgid "This section describes how the Guix project tracks its bug reports and patch submissions." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1282 -#: guix-git/doc/contributing.texi:1283 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1310 +#: guix-git/doc/contributing.texi:1311 #, no-wrap msgid "The Issue Tracker" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "The official bug and patch tracker." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1296 -#: guix-git/doc/contributing.texi:1297 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1324 +#: guix-git/doc/contributing.texi:1325 #, no-wrap msgid "Debbugs User Interfaces" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "Ways to interact with Debbugs." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1336 -#: guix-git/doc/contributing.texi:1337 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1364 +#: guix-git/doc/contributing.texi:1365 #, no-wrap msgid "Debbugs Usertags" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "Tag reports with custom labels." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1285 +#: guix-git/doc/contributing.texi:1313 #, no-wrap msgid "bug reports, tracking" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1286 +#: guix-git/doc/contributing.texi:1314 #, no-wrap msgid "patch submissions, tracking" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1287 +#: guix-git/doc/contributing.texi:1315 #, no-wrap msgid "issue tracking" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1288 +#: guix-git/doc/contributing.texi:1316 #, no-wrap msgid "Debbugs, issue tracking system" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1295 +#: guix-git/doc/contributing.texi:1323 msgid "Bug reports and patch submissions are currently tracked using the Debbugs instance at @uref{https://bugs.gnu.org}. Bug reports are filed against the @code{guix} ``package'' (in Debbugs parlance), by sending email to @email{bug-guix@@gnu.org}, while patch submissions are filed against the @code{guix-patches} package by sending email to @email{guix-patches@@gnu.org} (@pxref{Submitting Patches})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1301 +#: guix-git/doc/contributing.texi:1329 msgid "A web interface (actually @emph{two} web interfaces!) are available to browse issues:" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1310 +#: guix-git/doc/contributing.texi:1338 msgid "@url{https://issues.guix.gnu.org} provides a pleasant interface@footnote{The web interface at @url{https://issues.guix.gnu.org} is powered by Mumi, a nice piece of software written in Guile, and you can help! See @url{https://git.elephly.net/gitweb.cgi?p=software/mumi.git}.} to browse bug reports and patches, and to participate in discussions;" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1312 +#: guix-git/doc/contributing.texi:1340 msgid "@url{https://bugs.gnu.org/guix} lists bug reports;" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1314 +#: guix-git/doc/contributing.texi:1342 msgid "@url{https://bugs.gnu.org/guix-patches} lists patch submissions." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1319 +#: guix-git/doc/contributing.texi:1347 msgid "To view discussions related to issue number @var{n}, go to @indicateurl{https://issues.guix.gnu.org/@var{n}} or @indicateurl{https://bugs.gnu.org/@var{n}}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1322 +#: guix-git/doc/contributing.texi:1350 msgid "If you use Emacs, you may find it more convenient to interact with issues using @file{debbugs.el}, which you can install with:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1325 +#: guix-git/doc/contributing.texi:1353 #, no-wrap msgid "guix install emacs-debbugs\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1328 +#: guix-git/doc/contributing.texi:1356 msgid "For example, to list all open issues on @code{guix-patches}, hit:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1331 +#: guix-git/doc/contributing.texi:1359 #, no-wrap msgid "@kbd{C-u} @kbd{M-x} debbugs-gnu @kbd{RET} @kbd{RET} guix-patches @kbd{RET} n y\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1335 +#: guix-git/doc/contributing.texi:1363 msgid "@xref{Top,,, debbugs-ug, Debbugs User Guide}, for more information on this nifty tool!" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1339 +#: guix-git/doc/contributing.texi:1367 #, no-wrap msgid "usertags, for debbugs" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1340 +#: guix-git/doc/contributing.texi:1368 #, no-wrap msgid "Debbugs usertags" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1346 +#: guix-git/doc/contributing.texi:1374 msgid "Debbugs provides a feature called @dfn{usertags} that allows any user to tag any bug with an arbitrary label. Bugs can be searched by usertag, so this is a handy way to organize bugs@footnote{The list of usertags is public information, and anyone can modify any user's list of usertags, so keep that in mind if you choose to use this feature.}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1352 +#: guix-git/doc/contributing.texi:1380 msgid "For example, to view all the bug reports (or patches, in the case of @code{guix-patches}) tagged with the usertag @code{powerpc64le-linux} for the user @code{guix}, open a URL like the following in a web browser: @url{https://debbugs.gnu.org/cgi-bin/pkgreport.cgi?tag=powerpc64le-linux;users=guix}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1356 +#: guix-git/doc/contributing.texi:1384 msgid "For more information on how to use usertags, please refer to the documentation for Debbugs or the documentation for whatever tool you use to interact with Debbugs." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1361 +#: guix-git/doc/contributing.texi:1389 msgid "In Guix, we are experimenting with usertags to keep track of architecture-specific issues. To facilitate collaboration, all our usertags are associated with the single user @code{guix}. The following usertags currently exist for that user:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1364 guix-git/doc/guix.texi:556 +#: guix-git/doc/contributing.texi:1392 guix-git/doc/guix.texi:557 #, no-wrap msgid "powerpc64le-linux" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1372 +#: guix-git/doc/contributing.texi:1400 msgid "The purpose of this usertag is to make it easy to find the issues that matter most for the @code{powerpc64le-linux} system type. Please assign this usertag to bugs or patches that affect @code{powerpc64le-linux} but not other system types. In addition, you may use it to identify issues that for some reason are particularly important for the @code{powerpc64le-linux} system type, even if the issue affects other system types, too." msgstr "" @@ -1953,135 +1986,134 @@ msgstr "" #. type: item #. #-#-#-#-# guix.pot (guix manual checkout) #-#-#-#-# #. type: cindex -#: guix-git/doc/contributing.texi:1373 guix-git/doc/guix.texi:3070 -#: guix-git/doc/guix.texi:4771 +#: guix-git/doc/contributing.texi:1401 guix-git/doc/guix.texi:3087 +#: guix-git/doc/guix.texi:4789 #, no-wrap msgid "reproducibility" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1377 +#: guix-git/doc/contributing.texi:1405 msgid "For issues related to reproducibility. For example, it would be appropriate to assign this usertag to a bug report for a package that fails to build reproducibly." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1384 +#: guix-git/doc/contributing.texi:1412 msgid "If you're a committer and you want to add a usertag, just start using it with the @code{guix} user. If the usertag proves useful to you, consider updating this section of the manual so that others will know what your usertag means." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1388 +#: guix-git/doc/contributing.texi:1416 #, no-wrap msgid "commit access, for developers" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1394 -msgid "Everyone can contribute to Guix without having commit access (@pxref{Submitting Patches}). However, for frequent contributors, having write access to the repository can be convenient. Commit access should not be thought of as a ``badge of honor'' but rather as a responsibility a contributor is willing to take to help the project." +#: guix-git/doc/contributing.texi:1427 +msgid "Everyone can contribute to Guix without having commit access (@pxref{Submitting Patches}). However, for frequent contributors, having write access to the repository can be convenient. As a rule of thumb, a contributor should have accumulated fifty (50) reviewed commits to be considered as a committer and have sustained their activity in the project for at least 6 months. This ensures enough interactions with the contributor, which is essential for mentoring and assessing whether they are ready to become a committer. Commit access should not be thought of as a ``badge of honor'' but rather as a responsibility a contributor is willing to take to help the project." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1398 +#: guix-git/doc/contributing.texi:1431 msgid "The following sections explain how to get commit access, how to be ready to push commits, and the policies and community expectations for commits pushed upstream." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1399 -#, fuzzy, no-wrap -#| msgid "Commit Access" +#: guix-git/doc/contributing.texi:1432 +#, no-wrap msgid "Applying for Commit Access" -msgstr "Právo na úpravu" +msgstr "Požiadať o právo na úpravy" #. type: Plain text -#: guix-git/doc/contributing.texi:1403 +#: guix-git/doc/contributing.texi:1436 msgid "When you deem it necessary, consider applying for commit access by following these steps:" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1412 +#: guix-git/doc/contributing.texi:1445 msgid "Find three committers who would vouch for you. You can view the list of committers at @url{https://savannah.gnu.org/project/memberlist.php?group=guix}. Each of them should email a statement to @email{guix-maintainers@@gnu.org} (a private alias for the collective of maintainers), signed with their OpenPGP key." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1418 +#: guix-git/doc/contributing.texi:1451 msgid "Committers are expected to have had some interactions with you as a contributor and to be able to judge whether you are sufficiently familiar with the project's practices. It is @emph{not} a judgment on the value of your work, so a refusal should rather be interpreted as ``let's try again later''." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1425 +#: guix-git/doc/contributing.texi:1458 msgid "Send @email{guix-maintainers@@gnu.org} a message stating your intent, listing the three committers who support your application, signed with the OpenPGP key you will use to sign commits, and giving its fingerprint (see below). See @uref{https://emailselfdefense.fsf.org/en/}, for an introduction to public-key cryptography with GnuPG." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1431 +#: guix-git/doc/contributing.texi:1464 msgid "Set up GnuPG such that it never uses the SHA1 hash algorithm for digital signatures, which is known to be unsafe since 2019, for instance by adding the following line to @file{~/.gnupg/gpg.conf} (@pxref{GPG Esoteric Options,,, gnupg, The GNU Privacy Guard Manual}):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1434 +#: guix-git/doc/contributing.texi:1467 #, no-wrap msgid "digest-algo sha512\n" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1439 +#: guix-git/doc/contributing.texi:1472 msgid "Maintainers ultimately decide whether to grant you commit access, usually following your referrals' recommendation." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1441 +#: guix-git/doc/contributing.texi:1474 #, no-wrap msgid "OpenPGP, signed commits" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1446 +#: guix-git/doc/contributing.texi:1479 msgid "If and once you've been given access, please send a message to @email{guix-devel@@gnu.org} to say so, again signed with the OpenPGP key you will use to sign commits (do that before pushing your first commit). That way, everyone can notice and ensure you control that OpenPGP key." msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:1447 guix-git/doc/guix.texi:17972 +#: guix-git/doc/contributing.texi:1480 guix-git/doc/guix.texi:18334 #, no-wrap msgid "Important" msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:1449 +#: guix-git/doc/contributing.texi:1482 msgid "Before you can push for the first time, maintainers must:" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1453 +#: guix-git/doc/contributing.texi:1486 msgid "add your OpenPGP key to the @code{keyring} branch;" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1456 +#: guix-git/doc/contributing.texi:1489 msgid "add your OpenPGP fingerprint to the @file{.guix-authorizations} file of the branch(es) you will commit to." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1461 +#: guix-git/doc/contributing.texi:1494 msgid "Make sure to read the rest of this section and... profit!" msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:1467 +#: guix-git/doc/contributing.texi:1500 msgid "Maintainers are happy to give commit access to people who have been contributing for some time and have a track record---don't be shy and don't underestimate your work!" msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:1471 +#: guix-git/doc/contributing.texi:1504 msgid "However, note that the project is working towards a more automated patch review and merging system, which, as a consequence, may lead us to have fewer people with commit access to the main repository. Stay tuned!" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1478 +#: guix-git/doc/contributing.texi:1511 msgid "All commits that are pushed to the central repository on Savannah must be signed with an OpenPGP key, and the public key should be uploaded to your user account on Savannah and to public key servers, such as @code{keys.openpgp.org}. To configure Git to automatically sign commits, run:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1481 +#: guix-git/doc/contributing.texi:1514 #, no-wrap msgid "" "git config commit.gpgsign true\n" @@ -2089,7 +2121,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1484 +#: guix-git/doc/contributing.texi:1517 #, no-wrap msgid "" "# Substitute the fingerprint of your public PGP key.\n" @@ -2097,348 +2129,347 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1489 +#: guix-git/doc/contributing.texi:1522 msgid "You can prevent yourself from accidentally pushing unsigned commits to Savannah by using the pre-push Git hook located at @file{etc/git/pre-push}:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1492 +#: guix-git/doc/contributing.texi:1525 #, no-wrap msgid "cp etc/git/pre-push .git/hooks/pre-push\n" msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1494 -#, fuzzy, no-wrap -#| msgid "Commit Access" +#: guix-git/doc/contributing.texi:1527 +#, no-wrap msgid "Commit Policy" -msgstr "Právo na úpravu" +msgstr "Pravidlá úprav" #. type: Plain text -#: guix-git/doc/contributing.texi:1499 +#: guix-git/doc/contributing.texi:1532 msgid "If you get commit access, please make sure to follow the policy below (discussions of the policy can take place on @email{guix-devel@@gnu.org})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1504 +#: guix-git/doc/contributing.texi:1537 msgid "Non-trivial patches should always be posted to @email{guix-patches@@gnu.org} (trivial patches include fixing typos, etc.). This mailing list fills the patch-tracking database (@pxref{Tracking Bugs and Patches})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1513 +#: guix-git/doc/contributing.texi:1546 msgid "For patches that just add a new package, and a simple one, it's OK to commit, if you're confident (which means you successfully built it in a chroot setup, and have done a reasonable copyright and license auditing). Likewise for package upgrades, except upgrades that trigger a lot of rebuilds (for example, upgrading GnuTLS or GLib). We have a mailing list for commit notifications (@email{guix-commits@@gnu.org}), so people can notice. Before pushing your changes, make sure to run @code{git pull --rebase}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1518 +#: guix-git/doc/contributing.texi:1551 msgid "When pushing a commit on behalf of somebody else, please add a @code{Signed-off-by} line at the end of the commit log message---e.g., with @command{git am --signoff}. This improves tracking of who did what." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1522 +#: guix-git/doc/contributing.texi:1555 msgid "When adding channel news entries (@pxref{Channels, Writing Channel News}), make sure they are well-formed by running the following command right before pushing:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1525 +#: guix-git/doc/contributing.texi:1558 #, no-wrap msgid "make check-channel-news\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1531 +#: guix-git/doc/contributing.texi:1564 msgid "For anything else, please post to @email{guix-patches@@gnu.org} and leave time for a review, without committing anything (@pxref{Submitting Patches}). If you didn’t receive any reply after two weeks, and if you're confident, it's OK to commit." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1534 +#: guix-git/doc/contributing.texi:1567 msgid "That last part is subject to being adjusted, allowing individuals to commit directly on non-controversial changes on parts they’re familiar with." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1535 +#: guix-git/doc/contributing.texi:1568 #, no-wrap msgid "Addressing Issues" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1546 +#: guix-git/doc/contributing.texi:1579 msgid "Peer review (@pxref{Submitting Patches}) and tools such as @command{guix lint} (@pxref{Invoking guix lint}) and the test suite (@pxref{Running the Test Suite}) should catch issues before they are pushed. Yet, commits that ``break'' functionality might occasionally go through. When that happens, there are two priorities: mitigating the impact, and understanding what happened to reduce the chance of similar incidents in the future. The responsibility for both these things primarily lies with those involved, but like everything this is a group effort." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1551 +#: guix-git/doc/contributing.texi:1584 msgid "Some issues can directly affect all users---for instance because they make @command{guix pull} fail or break core functionality, because they break major packages (at build time or run time), or because they introduce known security vulnerabilities." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1552 +#: guix-git/doc/contributing.texi:1585 #, no-wrap msgid "reverting commits" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1558 +#: guix-git/doc/contributing.texi:1591 msgid "The people involved in authoring, reviewing, and pushing such commit(s) should be at the forefront to mitigate their impact in a timely fashion: by pushing a followup commit to fix it (if possible), or by reverting it to leave time to come up with a proper fix, and by communicating with other developers about the problem." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1564 +#: guix-git/doc/contributing.texi:1597 msgid "If these persons are unavailable to address the issue in time, other committers are entitled to revert the commit(s), explaining in the commit log and on the mailing list what the problem was, with the goal of leaving time to the original committer, reviewer(s), and author(s) to propose a way forward." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1573 +#: guix-git/doc/contributing.texi:1606 msgid "Once the problem has been dealt with, it is the responsibility of those involved to make sure the situation is understood. If you are working to understand what happened, focus on gathering information and avoid assigning any blame. Do ask those involved to describe what happened, do not ask them to explain the situation---this would implicitly blame them, which is unhelpful. Accountability comes from a consensus about the problem, learning from it and improving processes so that it's less likely to reoccur." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1574 +#: guix-git/doc/contributing.texi:1607 #, no-wrap msgid "Commit Revocation" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1581 +#: guix-git/doc/contributing.texi:1614 msgid "In order to reduce the possibility of mistakes, committers will have their Savannah account removed from the Guix Savannah project and their key removed from @file{.guix-authorizations} after 12 months of inactivity; they can ask to regain commit access by emailing the maintainers, without going through the vouching process." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1591 +#: guix-git/doc/contributing.texi:1624 msgid "Maintainers@footnote{See @uref{https://guix.gnu.org/en/about} for the current list of maintainers. You can email them privately at @email{guix-maintainers@@gnu.org}.} may also revoke an individual's commit rights, as a last resort, if cooperation with the rest of the community has caused too much friction---even within the bounds of the project's code of conduct (@pxref{Contributing}). They would only do so after public or private discussion with the individual and a clear notice. Examples of behavior that hinders cooperation and could lead to such a decision include:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1593 +#: guix-git/doc/contributing.texi:1626 #, no-wrap msgid "repeated violation of the commit policy stated above;" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1594 +#: guix-git/doc/contributing.texi:1627 #, no-wrap msgid "repeated failure to take peer criticism into account;" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1595 +#: guix-git/doc/contributing.texi:1628 #, no-wrap msgid "breaching trust through a series of grave incidents." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1602 +#: guix-git/doc/contributing.texi:1635 msgid "When maintainers resort to such a decision, they notify developers on @email{guix-devel@@gnu.org}; inquiries may be sent to @email{guix-maintainers@@gnu.org}. Depending on the situation, the individual may still be welcome to contribute." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1603 +#: guix-git/doc/contributing.texi:1636 #, no-wrap msgid "Helping Out" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1610 +#: guix-git/doc/contributing.texi:1643 msgid "One last thing: the project keeps moving forward because committers not only push their own awesome changes, but also offer some of their time @emph{reviewing} and pushing other people's changes. As a committer, you're welcome to use your expertise and commit rights to help other contributors, too!" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1614 +#: guix-git/doc/contributing.texi:1647 #, no-wrap msgid "update-guix-package, updating the guix package" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1620 +#: guix-git/doc/contributing.texi:1653 msgid "It is sometimes desirable to update the @code{guix} package itself (the package defined in @code{(gnu packages package-management)}), for example to make new daemon features available for use by the @code{guix-service-type} service type. In order to simplify this task, the following command can be used:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1623 +#: guix-git/doc/contributing.texi:1656 #, no-wrap msgid "make update-guix-package\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1630 +#: guix-git/doc/contributing.texi:1663 msgid "The @code{update-guix-package} make target will use the last known @emph{commit} corresponding to @code{HEAD} in your Guix checkout, compute the hash of the Guix sources corresponding to that commit and update the @code{commit}, @code{revision} and hash of the @code{guix} package definition." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1634 +#: guix-git/doc/contributing.texi:1667 msgid "To validate that the updated @code{guix} package hashes are correct and that it can be built successfully, the following command can be run from the directory of your Guix checkout:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1637 +#: guix-git/doc/contributing.texi:1670 #, no-wrap msgid "./pre-inst-env guix build guix\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1642 +#: guix-git/doc/contributing.texi:1675 msgid "To guard against accidentally updating the @code{guix} package to a commit that others can't refer to, a check is made that the commit used has already been pushed to the Savannah-hosted Guix git repository." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1647 +#: guix-git/doc/contributing.texi:1680 msgid "This check can be disabled, @emph{at your own peril}, by setting the @code{GUIX_ALLOW_ME_TO_USE_PRIVATE_COMMIT} environment variable. When this variable is set, the updated package source is also added to the store. This is used as part of the release process of Guix." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1648 +#: guix-git/doc/contributing.texi:1681 #, no-wrap msgid "translation" -msgstr "" +msgstr "preklad" #. type: cindex -#: guix-git/doc/contributing.texi:1649 +#: guix-git/doc/contributing.texi:1682 #, no-wrap msgid "l10n" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1650 +#: guix-git/doc/contributing.texi:1683 #, no-wrap msgid "i18n" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1651 +#: guix-git/doc/contributing.texi:1684 #, no-wrap msgid "native language support" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1661 +#: guix-git/doc/contributing.texi:1694 msgid "Writing code and packages is not the only way to provide a meaningful contribution to Guix. Translating to a language you speak is another example of a valuable contribution you can make. This section is designed to describe the translation process. It gives you advice on how you can get involved, what can be translated, what mistakes you should avoid and what we can do to help you!" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1667 +#: guix-git/doc/contributing.texi:1700 msgid "Guix is a big project that has multiple components that can be translated. We coordinate the translation effort on a @uref{https://translate.fedoraproject.org/projects/guix/,Weblate instance} hosted by our friends at Fedora. You will need an account to submit translations." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1674 +#: guix-git/doc/contributing.texi:1707 msgid "Some of the software packaged in Guix also contain translations. We do not host a translation platform for them. If you want to translate a package provided by Guix, you should contact their developers or find the information on their website. As an example, you can find the homepage of the @code{hello} package by typing @code{guix show hello}. On the ``homepage'' line, you will see @url{https://www.gnu.org/software/hello/} as the homepage." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1679 +#: guix-git/doc/contributing.texi:1712 msgid "Many GNU and non-GNU packages can be translated on the @uref{https://translationproject.org,Translation Project}. Some projects with multiple components have their own platform. For instance, GNOME has its own platform, @uref{https://l10n.gnome.org/,Damned Lies}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1681 +#: guix-git/doc/contributing.texi:1714 msgid "Guix has five components hosted on Weblate." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1683 +#: guix-git/doc/contributing.texi:1716 #, no-wrap msgid "@code{guix} contains all the strings from the Guix software (the" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1718 msgid "guided system installer, the package manager, etc), excluding packages." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1718 #, no-wrap msgid "@code{packages} contains the synopsis (single-sentence description" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1687 +#: guix-git/doc/contributing.texi:1720 msgid "of a package) and description (longer description) of packages in Guix." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1687 +#: guix-git/doc/contributing.texi:1720 #, no-wrap msgid "@code{website} contains the official Guix website, except for" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1689 +#: guix-git/doc/contributing.texi:1722 msgid "blog posts and multimedia content." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1689 +#: guix-git/doc/contributing.texi:1722 #, no-wrap msgid "@code{documentation-manual} corresponds to this manual." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1690 +#: guix-git/doc/contributing.texi:1723 #, no-wrap msgid "@code{documentation-cookbook} is the component for the cookbook." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1693 +#: guix-git/doc/contributing.texi:1726 #, no-wrap msgid "General Directions" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1701 +#: guix-git/doc/contributing.texi:1734 msgid "Once you get an account, you should be able to select a component from @uref{https://translate.fedoraproject.org/projects/guix/,the guix project}, and select a language. If your language does not appear in the list, go to the bottom and click on the ``Start new translation'' button. Select the language you want to translate to from the list, to start your new translation." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1706 +#: guix-git/doc/contributing.texi:1739 msgid "Like lots of other free software packages, Guix uses @uref{https://www.gnu.org/software/gettext,GNU Gettext} for its translations, with which translatable strings are extracted from the source code to so-called PO files." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1717 +#: guix-git/doc/contributing.texi:1750 msgid "Even though PO files are text files, changes should not be made with a text editor but with PO editing software. Weblate integrates PO editing functionality. Alternatively, translators can use any of various free-software tools for filling in translations, of which @uref{https://poedit.net/,Poedit} is one example, and (after logging in) @uref{https://docs.weblate.org/en/latest/user/files.html,upload} the changed file. There is also a special @uref{https://www.emacswiki.org/emacs/PoMode,PO editing mode} for users of GNU Emacs. Over time translators find out what software they are happy with and what features they need." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1722 +#: guix-git/doc/contributing.texi:1755 msgid "On Weblate, you will find various links to the editor, that will show various subsets (or all) of the strings. Have a look around and at the @uref{https://docs.weblate.org/en/latest/,documentation} to familiarize yourself with the platform." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1723 +#: guix-git/doc/contributing.texi:1756 #, no-wrap msgid "Translation Components" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1728 +#: guix-git/doc/contributing.texi:1761 msgid "In this section, we provide more detailed guidance on the translation process, as well as details on what you should or should not do. When in doubt, please contact us, we will be happy to help!" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1730 guix-git/doc/guix.texi:9420 +#: guix-git/doc/contributing.texi:1763 guix-git/doc/guix.texi:9734 #, no-wrap msgid "guix" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1735 +#: guix-git/doc/contributing.texi:1768 msgid "Guix is written in the Guile programming language, and some strings contain special formatting that is interpreted by Guile. These special formatting should be highlighted by Weblate. They start with @code{~} followed by one or more characters." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1744 +#: guix-git/doc/contributing.texi:1777 msgid "When printing the string, Guile replaces the special formatting symbols with actual values. For instance, the string @samp{ambiguous package specification `~a'} would be substituted to contain said package specification instead of @code{~a}. To properly translate this string, you must keep the formatting code in your translation, although you can place it where it makes sense in your language. For instance, the French translation says @samp{spécification du paquet « ~a » ambiguë} because the adjective needs to be placed in the end of the sentence." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1748 +#: guix-git/doc/contributing.texi:1781 msgid "If there are multiple formatting symbols, make sure to respect the order. Guile does not know in which order you intended the string to be read, so it will substitute the symbols in the same order as the English sentence." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1756 +#: guix-git/doc/contributing.texi:1789 msgid "As an example, you cannot translate @samp{package '~a' has been superseded by '~a'} by @samp{'~a' superseeds package '~a'}, because the meaning would be reversed. If @var{foo} is superseded by @var{bar}, the translation would read @samp{'foo' superseeds package 'bar'}. To work around this problem, it is possible to use more advanced formatting to select a given piece of data, instead of following the default English order. @xref{Formatted Output,,, guile, GNU Guile Reference Manual}, for more information on formatting in Guile." msgstr "" @@ -2446,98 +2477,98 @@ msgstr "" #. type: item #. #-#-#-#-# guix.pot (guix manual checkout) #-#-#-#-# #. type: cindex -#: guix-git/doc/contributing.texi:1757 guix-git/doc/guix.texi:2988 +#: guix-git/doc/contributing.texi:1790 guix-git/doc/guix.texi:3005 #, no-wrap msgid "packages" -msgstr "" +msgstr "balíky" #. type: table -#: guix-git/doc/contributing.texi:1762 +#: guix-git/doc/contributing.texi:1795 msgid "Package descriptions occasionally contain Texinfo markup (@pxref{Synopses and Descriptions}). Texinfo markup looks like @samp{@@code@{rm -rf@}}, @samp{@@emph@{important@}}, etc. When translating, please leave markup as is." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1771 +#: guix-git/doc/contributing.texi:1804 msgid "The characters after ``@@'' form the name of the markup, and the text between ``@{'' and ``@}'' is its content. In general, you should not translate the content of markup like @code{@@code}, as it contains literal code that do not change with language. You can translate the content of formatting markup such as @code{@@emph}, @code{@@i}, @code{@@itemize}, @code{@@item}. However, do not translate the name of the markup, or it will not be recognized. Do not translate the word after @code{@@end}, it is the name of the markup that is closed at this position (e.g.@: @code{@@itemize ... @@end itemize})." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1772 +#: guix-git/doc/contributing.texi:1805 #, no-wrap msgid "documentation-manual and documentation-cookbook" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1776 +#: guix-git/doc/contributing.texi:1809 msgid "The first step to ensure a successful translation of the manual is to find and translate the following strings @emph{first}:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1778 +#: guix-git/doc/contributing.texi:1811 #, no-wrap msgid "@code{version.texi}: Translate this string as @code{version-xx.texi}," msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1781 +#: guix-git/doc/contributing.texi:1814 msgid "where @code{xx} is your language code (the one shown in the URL on weblate)." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1781 +#: guix-git/doc/contributing.texi:1814 #, no-wrap msgid "@code{contributing.texi}: Translate this string as" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1783 +#: guix-git/doc/contributing.texi:1816 msgid "@code{contributing.xx.texi}, where @code{xx} is the same language code." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1783 +#: guix-git/doc/contributing.texi:1816 #, no-wrap msgid "@code{Top}: Do not translate this string, it is important for Texinfo." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1786 +#: guix-git/doc/contributing.texi:1819 msgid "If you translate it, the document will be empty (missing a Top node). Please look for it, and register @code{Top} as its translation." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1791 +#: guix-git/doc/contributing.texi:1824 msgid "Translating these strings first ensure we can include your translation in the guix repository without breaking the make process or the @command{guix pull} machinery." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1798 +#: guix-git/doc/contributing.texi:1831 msgid "The manual and the cookbook both use Texinfo. As for @code{packages}, please keep Texinfo markup as is. There are more possible markup types in the manual than in the package descriptions. In general, do not translate the content of @code{@@code}, @code{@@file}, @code{@@var}, @code{@@value}, etc. You should translate the content of formatting markup such as @code{@@emph}, @code{@@i}, etc." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1806 +#: guix-git/doc/contributing.texi:1839 msgid "The manual contains sections that can be referred to by name by @code{@@ref}, @code{@@xref} and @code{@@pxref}. We have a mechanism in place so you do not have to translate their content. If you keep the English title, we will automatically replace it with your translation of that title. This ensures that Texinfo will always be able to find the node. If you decide to change the translation of the title, the references will automatically be updated and you will not have to update them all yourself." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1816 +#: guix-git/doc/contributing.texi:1849 msgid "When translating references from the cookbook to the manual, you need to replace the name of the manual and the name of the section. For instance, to translate @code{@@pxref@{Defining Packages,,, guix, GNU Guix Reference Manual@}}, you would replace @code{Defining Packages} with the title of that section in the translated manual @emph{only} if that title is translated. If the title is not translated in your language yet, do not translate it here, or the link will be broken. Replace @code{guix} with @code{guix.xx} where @code{xx} is your language code. @code{GNU Guix Reference Manual} is the text of the link. You can translate it however you wish." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1817 +#: guix-git/doc/contributing.texi:1850 #, no-wrap msgid "website" -msgstr "" +msgstr "internetová stránka" #. type: table -#: guix-git/doc/contributing.texi:1824 +#: guix-git/doc/contributing.texi:1857 msgid "The website pages are written using SXML, an s-expression version of HTML, the basic language of the web. We have a process to extract translatable strings from the source, and replace complex s-expressions with a more familiar XML markup, where each markup is numbered. Translators can arbitrarily change the ordering, as in the following example." msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1831 +#: guix-git/doc/contributing.texi:1864 #, no-wrap msgid "" "#. TRANSLATORS: Defining Packages is a section name\n" @@ -2548,138 +2579,138 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1834 +#: guix-git/doc/contributing.texi:1867 msgid "Note that you need to include the same markups. You cannot skip any." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1842 +#: guix-git/doc/contributing.texi:1875 msgid "In case you make a mistake, the component might fail to build properly with your language, or even make guix pull fail. To prevent that, we have a process in place to check the content of the files before pushing to our repository. We will not be able to update the translation for your language in Guix, so we will notify you (through weblate and/or by email) so you get a chance to fix the issue." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1843 +#: guix-git/doc/contributing.texi:1876 #, no-wrap msgid "Outside of Weblate" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1846 +#: guix-git/doc/contributing.texi:1879 msgid "Currently, some parts of Guix cannot be translated on Weblate, help wanted!" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1848 +#: guix-git/doc/contributing.texi:1881 #, no-wrap msgid "@command{guix pull} news can be translated in @file{news.scm}, but is not" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1854 +#: guix-git/doc/contributing.texi:1887 msgid "available from Weblate. If you want to provide a translation, you can prepare a patch as described above, or simply send us your translation with the name of the news entry you translated and your language. @xref{Writing Channel News}, for more information about channel news." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1854 +#: guix-git/doc/contributing.texi:1887 #, no-wrap msgid "Guix blog posts cannot currently be translated." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1855 +#: guix-git/doc/contributing.texi:1888 #, no-wrap msgid "The installer script (for foreign distributions) is entirely in English." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1856 +#: guix-git/doc/contributing.texi:1889 #, no-wrap msgid "Some of the libraries Guix uses cannot be translated or are translated" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1858 +#: guix-git/doc/contributing.texi:1891 msgid "outside of the Guix project. Guile itself is not internationalized." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1858 +#: guix-git/doc/contributing.texi:1891 #, no-wrap msgid "Other manuals linked from this manual or the cookbook might not be" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1860 +#: guix-git/doc/contributing.texi:1893 msgid "translated." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1862 +#: guix-git/doc/contributing.texi:1895 #, no-wrap msgid "Translation Infrastructure" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1873 +#: guix-git/doc/contributing.texi:1906 msgid "Weblate is backed by a git repository from which it discovers new strings to translate and pushes new and updated translations. Normally, it would be enough to give it commit access to our repositories. However, we decided to use a separate repository for two reasons. First, we would have to give Weblate commit access and authorize its signing key, but we do not trust it in the same way we trust guix developers, especially since we do not manage the instance ourselves. Second, if translators mess something up, it can break the generation of the website and/or guix pull for all our users, independently of their language." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1877 +#: guix-git/doc/contributing.texi:1910 msgid "For these reasons, we use a dedicated repository to host translations, and we synchronize it with our guix and artworks repositories after checking no issue was introduced in the translation." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1883 +#: guix-git/doc/contributing.texi:1916 msgid "Developers can download the latest PO files from weblate in the Guix repository by running the @command{make download-po} command. It will automatically download the latest files from weblate, reformat them to a canonical form, and check they do not contain issues. The manual needs to be built again to check for additional issues that might crash Texinfo." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1887 +#: guix-git/doc/contributing.texi:1920 msgid "Before pushing new translation files, developers should add them to the make machinery so the translations are actually available. The process differs for the various components." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1889 +#: guix-git/doc/contributing.texi:1922 #, no-wrap msgid "New po files for the @code{guix} and @code{packages} components must" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1892 +#: guix-git/doc/contributing.texi:1925 msgid "be registered by adding the new language to @file{po/guix/LINGUAS} or @file{po/packages/LINGUAS}." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1892 +#: guix-git/doc/contributing.texi:1925 #, no-wrap msgid "New po files for the @code{documentation-manual} component must be" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1898 +#: guix-git/doc/contributing.texi:1931 msgid "registered by adding the file name to @code{DOC_PO_FILES} in @file{po/doc/local.mk}, the generated @file{%D%/guix.xx.texi} manual to @code{info_TEXINFOS} in @file{doc/local.mk} and the generated @file{%D%/guix.xx.texi} and @file{%D%/contributing.xx.texi} to @code{TRANSLATED_INFO} also in @file{doc/local.mk}." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1898 +#: guix-git/doc/contributing.texi:1931 #, no-wrap msgid "New po files for the @code{documentation-cookbook} component must be" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1904 +#: guix-git/doc/contributing.texi:1937 msgid "registered by adding the file name to @code{DOC_COOKBOOK_PO_FILES} in @file{po/doc/local.mk}, the generated @file{%D%/guix-cookbook.xx.texi} manual to @code{info_TEXINFOS} in @file{doc/local.mk} and the generated @file{%D%/guix-cookbook.xx.texi} to @code{TRANSLATED_INFO} also in @file{doc/local.mk}." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1904 +#: guix-git/doc/contributing.texi:1937 #, no-wrap msgid "New po files for the @code{website} component must be added to the" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1909 +#: guix-git/doc/contributing.texi:1942 msgid "@code{guix-artwork} repository, in @file{website/po/}. @file{website/po/LINGUAS} and @file{website/po/ietf-tags.scm} must be updated accordingly (see @file{website/i18n-howto.txt} for more information on the process)." msgstr "" @@ -2704,7 +2735,7 @@ msgstr "version-sk.texi" #. type: copying #: guix-git/doc/guix.texi:103 -msgid "Copyright @copyright{} 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" +msgid "Copyright @copyright{} 2012-2022 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021, 2022 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021, 2022 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021, 2022 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021, 2022 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" msgstr "" #. type: copying @@ -2782,7 +2813,7 @@ msgstr "" #: guix-git/doc/guix.texi:122 #, no-wrap msgid "Software development" -msgstr "" +msgstr "Vývoj softvéru" #. type: menuentry #: guix-git/doc/guix.texi:128 @@ -2865,7 +2896,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:192 -#: guix-git/doc/guix.texi:402 guix-git/doc/guix.texi:403 +#: guix-git/doc/guix.texi:403 guix-git/doc/guix.texi:404 #, no-wrap msgid "Introduction" msgstr "" @@ -2877,10 +2908,10 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:197 -#: guix-git/doc/guix.texi:589 guix-git/doc/guix.texi:590 +#: guix-git/doc/guix.texi:600 guix-git/doc/guix.texi:601 #, no-wrap msgid "Installation" -msgstr "" +msgstr "Inštalácia" #. type: menuentry #: guix-git/doc/guix.texi:182 @@ -2889,7 +2920,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:213 -#: guix-git/doc/guix.texi:2049 guix-git/doc/guix.texi:2050 +#: guix-git/doc/guix.texi:2066 guix-git/doc/guix.texi:2067 #, no-wrap msgid "System Installation" msgstr "" @@ -2900,8 +2931,8 @@ msgid "Installing the whole operating system." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:2777 -#: guix-git/doc/guix.texi:2778 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:2794 +#: guix-git/doc/guix.texi:2795 #, no-wrap msgid "Getting Started" msgstr "" @@ -2913,7 +2944,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:230 -#: guix-git/doc/guix.texi:2985 guix-git/doc/guix.texi:2986 +#: guix-git/doc/guix.texi:3002 guix-git/doc/guix.texi:3003 #, no-wrap msgid "Package Management" msgstr "" @@ -2925,10 +2956,10 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:253 -#: guix-git/doc/guix.texi:5053 guix-git/doc/guix.texi:5054 +#: guix-git/doc/guix.texi:5071 guix-git/doc/guix.texi:5072 #, no-wrap msgid "Channels" -msgstr "" +msgstr "Kanály" #. type: menuentry #: guix-git/doc/guix.texi:182 @@ -2937,10 +2968,10 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:267 -#: guix-git/doc/guix.texi:5581 guix-git/doc/guix.texi:5582 +#: guix-git/doc/guix.texi:5599 guix-git/doc/guix.texi:5600 #, no-wrap msgid "Development" -msgstr "" +msgstr "Vývoj" #. type: menuentry #: guix-git/doc/guix.texi:182 @@ -2949,7 +2980,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:275 -#: guix-git/doc/guix.texi:6799 guix-git/doc/guix.texi:6800 +#: guix-git/doc/guix.texi:6842 guix-git/doc/guix.texi:6843 #, no-wrap msgid "Programming Interface" msgstr "" @@ -2960,11 +2991,11 @@ msgid "Using Guix in Scheme." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:294 -#: guix-git/doc/guix.texi:10774 guix-git/doc/guix.texi:10775 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:295 +#: guix-git/doc/guix.texi:11088 guix-git/doc/guix.texi:11089 #, no-wrap msgid "Utilities" -msgstr "" +msgstr "Nástroje" #. type: menuentry #: guix-git/doc/guix.texi:182 @@ -2972,8 +3003,8 @@ msgid "Package management commands." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:320 -#: guix-git/doc/guix.texi:14278 guix-git/doc/guix.texi:14279 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:321 +#: guix-git/doc/guix.texi:14635 guix-git/doc/guix.texi:14636 #, no-wrap msgid "System Configuration" msgstr "Nastavenie systému" @@ -2984,12 +3015,11 @@ msgid "Configuring the operating system." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:36881 -#: guix-git/doc/guix.texi:36882 -#, fuzzy, no-wrap -#| msgid "System Configuration" +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37371 +#: guix-git/doc/guix.texi:37372 +#, no-wrap msgid "Home Configuration" -msgstr "Nastavenie systému" +msgstr "Nastavenie domovského priečinka" #. type: menuentry #: guix-git/doc/guix.texi:182 @@ -2997,8 +3027,8 @@ msgid "Configuring the home environment." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37721 -#: guix-git/doc/guix.texi:37722 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38210 +#: guix-git/doc/guix.texi:38211 #, no-wrap msgid "Documentation" msgstr "Dokumentácia" @@ -3009,8 +3039,8 @@ msgid "Browsing software user manuals." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:389 -#: guix-git/doc/guix.texi:37787 guix-git/doc/guix.texi:37788 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:390 +#: guix-git/doc/guix.texi:38276 guix-git/doc/guix.texi:38277 #, no-wrap msgid "Installing Debugging Files" msgstr "" @@ -3021,11 +3051,11 @@ msgid "Feeding the debugger." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37942 -#: guix-git/doc/guix.texi:37943 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38431 +#: guix-git/doc/guix.texi:38432 #, no-wrap msgid "Security Updates" -msgstr "" +msgstr "Bezpečnostné aktualizácie" #. type: menuentry #: guix-git/doc/guix.texi:182 @@ -3033,8 +3063,8 @@ msgid "Deploying security fixes quickly." msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:394 -#: guix-git/doc/guix.texi:38057 guix-git/doc/guix.texi:38058 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:395 +#: guix-git/doc/guix.texi:38546 guix-git/doc/guix.texi:38547 #, no-wrap msgid "Bootstrapping" msgstr "" @@ -3045,7 +3075,7 @@ msgid "GNU/Linux built from scratch." msgstr "" #. type: node -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38349 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38838 #, no-wrap msgid "Porting" msgstr "" @@ -3061,8 +3091,8 @@ msgid "Your help needed!" msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38397 -#: guix-git/doc/guix.texi:38398 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38886 +#: guix-git/doc/guix.texi:38887 #, no-wrap msgid "Acknowledgments" msgstr "Poďakovanie" @@ -3073,11 +3103,11 @@ msgid "Thanks!" msgstr "Ďakujeme!" #. type: appendix -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38419 -#: guix-git/doc/guix.texi:38420 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38908 +#: guix-git/doc/guix.texi:38909 #, no-wrap msgid "GNU Free Documentation License" -msgstr "GNU Free Documentation License" +msgstr "Licencia GNU Free Documentation" #. type: menuentry #: guix-git/doc/guix.texi:187 @@ -3085,8 +3115,8 @@ msgid "The license of this manual." msgstr "" #. type: unnumbered -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38425 -#: guix-git/doc/guix.texi:38426 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38914 +#: guix-git/doc/guix.texi:38915 #, no-wrap msgid "Concept Index" msgstr "Zoznam pojmov" @@ -3097,8 +3127,8 @@ msgid "Concepts." msgstr "Pojmy." #. type: unnumbered -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38429 -#: guix-git/doc/guix.texi:38430 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38918 +#: guix-git/doc/guix.texi:38919 #, no-wrap msgid "Programming Index" msgstr "" @@ -3114,2134 +3144,2152 @@ msgid "--- The Detailed Node Listing ---" msgstr "--- Podrobný zoznam uzlov ---" #. type: section -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 -#: guix-git/doc/guix.texi:431 guix-git/doc/guix.texi:432 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 +#: guix-git/doc/guix.texi:432 guix-git/doc/guix.texi:433 #, no-wrap msgid "Managing Software the Guix Way" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 msgid "What's special." msgstr "" #. type: section -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 -#: guix-git/doc/guix.texi:486 guix-git/doc/guix.texi:487 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 +#: guix-git/doc/guix.texi:487 guix-git/doc/guix.texi:488 #, no-wrap msgid "GNU Distribution" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 msgid "The packages and tools." msgstr "" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:631 guix-git/doc/guix.texi:632 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:642 guix-git/doc/guix.texi:643 #, no-wrap msgid "Binary Installation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Getting Guix running in no time!" msgstr "" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:871 guix-git/doc/guix.texi:872 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:882 guix-git/doc/guix.texi:883 #, no-wrap msgid "Requirements" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Software needed to build and run Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:957 guix-git/doc/guix.texi:958 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:969 guix-git/doc/guix.texi:970 #, no-wrap msgid "Running the Test Suite" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Testing Guix." msgstr "" #. type: section #: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:207 -#: guix-git/doc/guix.texi:629 guix-git/doc/guix.texi:1054 -#: guix-git/doc/guix.texi:1055 +#: guix-git/doc/guix.texi:640 guix-git/doc/guix.texi:1066 +#: guix-git/doc/guix.texi:1067 #, no-wrap msgid "Setting Up the Daemon" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Preparing the build daemon's environment." msgstr "" #. type: node -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:1525 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:1542 #, no-wrap msgid "Invoking guix-daemon" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Running the build daemon." msgstr "" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:1827 guix-git/doc/guix.texi:1828 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:1844 guix-git/doc/guix.texi:1845 #, no-wrap msgid "Application Setup" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Application-specific setup." msgstr "" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:2012 guix-git/doc/guix.texi:2013 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:2029 guix-git/doc/guix.texi:2030 #, no-wrap msgid "Upgrading Guix" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Upgrading Guix and its build daemon." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1076 guix-git/doc/guix.texi:1077 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1088 guix-git/doc/guix.texi:1089 #, no-wrap msgid "Build Environment Setup" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Preparing the isolated build environment." msgstr "" #. type: node -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1195 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1212 #, no-wrap msgid "Daemon Offload Setup" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Offloading builds to remote machines." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1434 guix-git/doc/guix.texi:1435 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1451 guix-git/doc/guix.texi:1452 #, no-wrap msgid "SELinux Support" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Using an SELinux policy for the daemon." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:1470 -#: guix-git/doc/guix.texi:2083 guix-git/doc/guix.texi:2085 -#: guix-git/doc/guix.texi:2086 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:1487 +#: guix-git/doc/guix.texi:2100 guix-git/doc/guix.texi:2102 +#: guix-git/doc/guix.texi:2103 #, no-wrap msgid "Limitations" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "What you can expect." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2111 guix-git/doc/guix.texi:2112 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2128 guix-git/doc/guix.texi:2129 #, no-wrap msgid "Hardware Considerations" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Supported hardware." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2146 guix-git/doc/guix.texi:2147 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2163 guix-git/doc/guix.texi:2164 #, no-wrap msgid "USB Stick and DVD Installation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Preparing the installation medium." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2227 guix-git/doc/guix.texi:2228 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2244 guix-git/doc/guix.texi:2245 #, no-wrap msgid "Preparing for Installation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Networking, partitioning, etc." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2250 guix-git/doc/guix.texi:2251 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2267 guix-git/doc/guix.texi:2268 #, no-wrap msgid "Guided Graphical Installation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Easy graphical installation." msgstr "" #. type: section #: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:225 -#: guix-git/doc/guix.texi:2083 guix-git/doc/guix.texi:2281 -#: guix-git/doc/guix.texi:2282 +#: guix-git/doc/guix.texi:2100 guix-git/doc/guix.texi:2298 +#: guix-git/doc/guix.texi:2299 #, no-wrap msgid "Manual Installation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Manual installation for wizards." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2660 guix-git/doc/guix.texi:2661 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2677 guix-git/doc/guix.texi:2678 #, no-wrap msgid "After System Installation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "When installation succeeded." msgstr "" #. type: node -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2694 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2711 #, no-wrap msgid "Installing Guix in a VM" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Guix System playground." msgstr "" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2745 guix-git/doc/guix.texi:2746 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2762 guix-git/doc/guix.texi:2763 #, no-wrap msgid "Building the Installation Image" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "How this comes to be." msgstr "" #. type: node -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 -#: guix-git/doc/guix.texi:2301 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 +#: guix-git/doc/guix.texi:2318 #, no-wrap msgid "Keyboard Layout and Networking and Partitioning" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 msgid "Initial setup." -msgstr "" +msgstr "Počiatočné nastavenie." #. type: subsection -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 -#: guix-git/doc/guix.texi:2571 guix-git/doc/guix.texi:2572 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 +#: guix-git/doc/guix.texi:2588 guix-git/doc/guix.texi:2589 #, no-wrap msgid "Proceeding with the Installation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 msgid "Installing." -msgstr "" +msgstr "Inštalácia." #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:3019 guix-git/doc/guix.texi:3020 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3036 guix-git/doc/guix.texi:3037 #, no-wrap msgid "Features" msgstr "Možnosti" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "How Guix will make your life brighter." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:3109 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3126 #, no-wrap msgid "Invoking guix package" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Package installation, removal, etc." msgstr "" #. type: section #: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:243 -#: guix-git/doc/guix.texi:3017 guix-git/doc/guix.texi:3738 -#: guix-git/doc/guix.texi:3739 +#: guix-git/doc/guix.texi:3034 guix-git/doc/guix.texi:3756 +#: guix-git/doc/guix.texi:3757 #, no-wrap msgid "Substitutes" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Downloading pre-built binaries." msgstr "" #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4074 guix-git/doc/guix.texi:4075 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4092 guix-git/doc/guix.texi:4093 #, no-wrap msgid "Packages with Multiple Outputs" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Single source package, multiple outputs." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4128 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4146 #, no-wrap msgid "Invoking guix gc" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Running the garbage collector." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4338 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4356 #, no-wrap msgid "Invoking guix pull" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Fetching the latest Guix and distribution." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4585 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4603 #, no-wrap msgid "Invoking guix time-machine" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Running an older revision of Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4640 guix-git/doc/guix.texi:4641 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4658 guix-git/doc/guix.texi:4659 #, no-wrap msgid "Inferiors" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Interacting with another revision of Guix." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4768 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4786 #, no-wrap msgid "Invoking guix describe" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Display information about your Guix revision." msgstr "" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4863 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4881 #, no-wrap msgid "Invoking guix archive" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Exporting and importing store files." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3764 guix-git/doc/guix.texi:3765 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3782 guix-git/doc/guix.texi:3783 #, no-wrap msgid "Official Substitute Servers" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "One particular source of substitutes." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3794 guix-git/doc/guix.texi:3795 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3812 guix-git/doc/guix.texi:3813 #, no-wrap msgid "Substitute Server Authorization" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How to enable or disable substitutes." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3864 guix-git/doc/guix.texi:3865 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3882 guix-git/doc/guix.texi:3883 #, no-wrap msgid "Getting Substitutes from Other Servers" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "Substitute diversity." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3969 guix-git/doc/guix.texi:3970 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3987 guix-git/doc/guix.texi:3988 #, no-wrap msgid "Substitute Authentication" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How Guix verifies substitutes." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4004 guix-git/doc/guix.texi:4005 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4022 guix-git/doc/guix.texi:4023 #, no-wrap msgid "Proxy Settings" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How to get substitutes via proxy." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4016 guix-git/doc/guix.texi:4017 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4034 guix-git/doc/guix.texi:4035 #, no-wrap msgid "Substitution Failure" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "What happens when substitution fails." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4044 guix-git/doc/guix.texi:4045 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4062 guix-git/doc/guix.texi:4063 #, no-wrap msgid "On Trusting Binaries" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How can you trust that binary blob?" msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5086 guix-git/doc/guix.texi:5087 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5104 guix-git/doc/guix.texi:5105 #, no-wrap msgid "Specifying Additional Channels" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Extending the package collection." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5136 guix-git/doc/guix.texi:5137 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5154 guix-git/doc/guix.texi:5155 #, no-wrap msgid "Using a Custom Guix Channel" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Using a customized Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5158 guix-git/doc/guix.texi:5159 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5176 guix-git/doc/guix.texi:5177 #, no-wrap msgid "Replicating Guix" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Running the @emph{exact same} Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5199 guix-git/doc/guix.texi:5200 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5217 guix-git/doc/guix.texi:5218 #, no-wrap msgid "Channel Authentication" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How Guix verifies what it fetches." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5239 guix-git/doc/guix.texi:5240 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5257 guix-git/doc/guix.texi:5258 #, no-wrap msgid "Channels with Substitutes" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Using channels with available substitutes." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5264 guix-git/doc/guix.texi:5265 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5282 guix-git/doc/guix.texi:5283 #, no-wrap msgid "Creating a Channel" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How to write your custom channel." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5331 guix-git/doc/guix.texi:5332 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5349 guix-git/doc/guix.texi:5350 #, no-wrap msgid "Package Modules in a Sub-directory" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Specifying the channel's package modules location." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5345 guix-git/doc/guix.texi:5346 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5363 guix-git/doc/guix.texi:5364 #, no-wrap msgid "Declaring Channel Dependencies" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How to depend on other channels." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5387 guix-git/doc/guix.texi:5388 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5405 guix-git/doc/guix.texi:5406 #, no-wrap msgid "Specifying Channel Authorizations" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Defining channel authors authorizations." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5488 guix-git/doc/guix.texi:5489 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5506 guix-git/doc/guix.texi:5507 #, no-wrap msgid "Primary URL" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Distinguishing mirror to original." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5511 guix-git/doc/guix.texi:5512 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5529 guix-git/doc/guix.texi:5530 #, no-wrap msgid "Writing Channel News" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Communicating information to channel's users." msgstr "" #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:5603 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:5621 #, no-wrap msgid "Invoking guix shell" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Spawning one-off software environments." msgstr "" #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:5956 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:5993 #, no-wrap msgid "Invoking guix environment" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Setting up development environments." msgstr "" #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6325 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6368 #, no-wrap msgid "Invoking guix pack" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Creating software bundles." msgstr "" #. type: section -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6711 guix-git/doc/guix.texi:6712 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6754 guix-git/doc/guix.texi:6755 #, no-wrap msgid "The GCC toolchain" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Working with languages supported by GCC." msgstr "" #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6737 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6780 #, no-wrap msgid "Invoking guix git authenticate" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Authenticating Git repositories." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:6841 guix-git/doc/guix.texi:6842 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:6885 guix-git/doc/guix.texi:6886 #, no-wrap msgid "Package Modules" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Packages from the programmer's viewpoint." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:289 -#: guix-git/doc/guix.texi:6839 guix-git/doc/guix.texi:6903 -#: guix-git/doc/guix.texi:6904 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:290 +#: guix-git/doc/guix.texi:6883 guix-git/doc/guix.texi:6947 +#: guix-git/doc/guix.texi:6948 #, no-wrap msgid "Defining Packages" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Defining new packages." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:7554 guix-git/doc/guix.texi:7555 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:7612 guix-git/doc/guix.texi:7613 #, no-wrap msgid "Defining Package Variants" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Customizing packages." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:7821 guix-git/doc/guix.texi:7822 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:7879 guix-git/doc/guix.texi:7880 #, no-wrap msgid "Build Systems" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Specifying how packages are built." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:8861 guix-git/doc/guix.texi:8862 -#: guix-git/doc/guix.texi:9292 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:8918 guix-git/doc/guix.texi:8919 +#: guix-git/doc/guix.texi:9427 #, no-wrap msgid "Build Phases" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Phases of the build process of a package." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9055 guix-git/doc/guix.texi:9056 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9116 guix-git/doc/guix.texi:9117 #, no-wrap msgid "Build Utilities" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Helpers for your package definitions and more." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9369 guix-git/doc/guix.texi:9370 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9504 guix-git/doc/guix.texi:9505 +#, no-wrap +msgid "Search Paths" +msgstr "" + +#. type: menuentry +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +msgid "Declaring search path environment variables." +msgstr "" + +#. type: section +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9683 guix-git/doc/guix.texi:9684 #, no-wrap msgid "The Store" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Manipulating the package store." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9522 guix-git/doc/guix.texi:9523 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9836 guix-git/doc/guix.texi:9837 #, no-wrap msgid "Derivations" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Low-level interface to package derivations." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9716 guix-git/doc/guix.texi:9717 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10030 guix-git/doc/guix.texi:10031 #, no-wrap msgid "The Store Monad" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Purely functional interface to the store." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:10035 guix-git/doc/guix.texi:10036 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10349 guix-git/doc/guix.texi:10350 #, no-wrap msgid "G-Expressions" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Manipulating build expressions." msgstr "" #. type: node -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:10674 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10988 #, no-wrap msgid "Invoking guix repl" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 +#: guix-git/doc/guix.texi:288 msgid "Programming Guix in Guile." msgstr "" #. type: node -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 -#: guix-git/doc/guix.texi:7103 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 +#: guix-git/doc/guix.texi:7147 #, no-wrap msgid "package Reference" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 msgid "The package data type." msgstr "" #. type: node -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 -#: guix-git/doc/guix.texi:7362 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 +#: guix-git/doc/guix.texi:7420 #, no-wrap msgid "origin Reference" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 msgid "The origin data type." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:10801 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:11115 #, no-wrap msgid "Invoking guix build" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Building packages from the command line." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11699 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12013 #, no-wrap msgid "Invoking guix edit" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Editing package definitions." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11729 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12043 #, no-wrap msgid "Invoking guix download" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Downloading a file and printing its hash." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11787 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12101 #, no-wrap msgid "Invoking guix hash" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Computing the cryptographic hash of a file." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11877 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12192 #, no-wrap msgid "Invoking guix import" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Importing package definitions." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12412 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12727 #, no-wrap msgid "Invoking guix refresh" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Updating package definitions." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12784 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13099 #, no-wrap msgid "Invoking guix style" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#, fuzzy -#| msgid "Updating the Guix package definition." +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Styling package definitions." -msgstr "Aktualizovať zadanie balíka Guix." +msgstr "Úprava tvaru zadaní balíkov." #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12880 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13237 #, no-wrap msgid "Invoking guix lint" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Finding errors in package definitions." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13056 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13413 #, no-wrap msgid "Invoking guix size" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Profiling disk usage." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13200 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13557 #, no-wrap msgid "Invoking guix graph" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Visualizing the graph of packages." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13481 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13838 #, no-wrap msgid "Invoking guix publish" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Sharing substitutes." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13750 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14107 #, no-wrap msgid "Invoking guix challenge" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Challenging substitute servers." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13933 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14290 #, no-wrap msgid "Invoking guix copy" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Copying to and from a remote store." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13996 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14353 #, no-wrap msgid "Invoking guix container" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Process isolation." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:14050 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14407 #, no-wrap msgid "Invoking guix weather" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Assessing substitute availability." msgstr "" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:14180 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14537 #, no-wrap msgid "Invoking guix processes" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Listing client processes." msgstr "" #. type: section -#: guix-git/doc/guix.texi:313 guix-git/doc/guix.texi:10802 +#: guix-git/doc/guix.texi:314 guix-git/doc/guix.texi:11116 #, no-wrap msgid "Invoking @command{guix build}" msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:10855 guix-git/doc/guix.texi:10856 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11169 guix-git/doc/guix.texi:11170 #, no-wrap msgid "Common Build Options" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Build options for most commands." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11010 guix-git/doc/guix.texi:11011 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11324 guix-git/doc/guix.texi:11325 #, no-wrap msgid "Package Transformation Options" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Creating variants of packages." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11381 guix-git/doc/guix.texi:11382 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11695 guix-git/doc/guix.texi:11696 #, no-wrap msgid "Additional Build Options" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Options specific to 'guix build'." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11619 guix-git/doc/guix.texi:11620 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11933 guix-git/doc/guix.texi:11934 #, no-wrap msgid "Debugging Build Failures" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Real life packaging experience." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14324 guix-git/doc/guix.texi:14325 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:14681 guix-git/doc/guix.texi:14682 #, no-wrap msgid "Using the Configuration System" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Customizing your GNU system." msgstr "" #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14575 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:14932 #, no-wrap msgid "operating-system Reference" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Detail of operating-system declarations." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14798 guix-git/doc/guix.texi:14799 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15155 guix-git/doc/guix.texi:15156 #, no-wrap msgid "File Systems" -msgstr "" +msgstr "Súborový systém" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring file system mounts." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15151 guix-git/doc/guix.texi:15152 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15508 guix-git/doc/guix.texi:15509 #, no-wrap msgid "Mapped Devices" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Block device extra processing." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15300 guix-git/doc/guix.texi:15301 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15657 guix-git/doc/guix.texi:15658 #, no-wrap msgid "Swap Space" -msgstr "" +msgstr "Odkladací priestor" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Backing RAM with disk space." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15400 guix-git/doc/guix.texi:15401 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15757 guix-git/doc/guix.texi:15758 #, no-wrap msgid "User Accounts" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Specifying user accounts." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:2308 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15581 -#: guix-git/doc/guix.texi:15582 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:2325 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:15938 +#: guix-git/doc/guix.texi:15939 #, no-wrap msgid "Keyboard Layout" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "How the system interprets key strokes." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1835 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15727 -#: guix-git/doc/guix.texi:15728 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:1852 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:16084 +#: guix-git/doc/guix.texi:16085 #, no-wrap msgid "Locales" -msgstr "" +msgstr "Miestne jazykové nastavenie" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Language and cultural convention settings." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:345 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15867 -#: guix-git/doc/guix.texi:15868 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:346 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:16224 +#: guix-git/doc/guix.texi:16225 #, no-wrap msgid "Services" msgstr "Služby" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Specifying system services." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34056 guix-git/doc/guix.texi:34057 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34493 guix-git/doc/guix.texi:34494 #, no-wrap msgid "Setuid Programs" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Programs running with root privileges." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1984 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:34140 -#: guix-git/doc/guix.texi:34141 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:2001 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:34579 +#: guix-git/doc/guix.texi:34580 #, no-wrap msgid "X.509 Certificates" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Authenticating HTTPS servers." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1878 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:34203 -#: guix-git/doc/guix.texi:34204 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:1895 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:34642 +#: guix-git/doc/guix.texi:34643 #, no-wrap msgid "Name Service Switch" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring libc's name service switch." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34341 guix-git/doc/guix.texi:34342 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34780 guix-git/doc/guix.texi:34781 #, no-wrap msgid "Initial RAM Disk" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Linux-Libre bootstrapping." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34536 guix-git/doc/guix.texi:34537 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34975 guix-git/doc/guix.texi:34976 #, no-wrap msgid "Bootloader Configuration" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring the boot loader." msgstr "" #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34834 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:35273 #, no-wrap msgid "Invoking guix system" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Instantiating a system configuration." msgstr "" #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:35425 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:35881 #, no-wrap msgid "Invoking guix deploy" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Deploying a system configuration to a remote host." msgstr "" #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:35631 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:36121 #, no-wrap msgid "Running Guix in a VM" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "How to run Guix System in a virtual machine." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:381 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:35765 -#: guix-git/doc/guix.texi:35766 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:382 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:36255 +#: guix-git/doc/guix.texi:36256 #, no-wrap msgid "Defining Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Adding new service definitions." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:341 -#, fuzzy -#| msgid "System Configuration" +#: guix-git/doc/guix.texi:342 msgid "Home Environment Configuration" -msgstr "Nastavenie systému" +msgstr "Nastavenie domovského prostredia" #. type: node -#: guix-git/doc/guix.texi:343 guix-git/doc/guix.texi:36944 -#: guix-git/doc/guix.texi:37478 +#: guix-git/doc/guix.texi:344 guix-git/doc/guix.texi:37434 +#: guix-git/doc/guix.texi:37974 #, no-wrap msgid "Invoking guix home" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:343 +#: guix-git/doc/guix.texi:344 msgid "Instantiating a home environment configuration." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:15953 guix-git/doc/guix.texi:15954 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:16310 guix-git/doc/guix.texi:16311 #, no-wrap msgid "Base Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Essential system services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:16880 guix-git/doc/guix.texi:16881 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17242 guix-git/doc/guix.texi:17243 #, no-wrap msgid "Scheduled Job Execution" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The mcron service." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17030 guix-git/doc/guix.texi:17031 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17392 guix-git/doc/guix.texi:17393 #, no-wrap msgid "Log Rotation" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The rottlog service." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17143 guix-git/doc/guix.texi:17144 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17505 guix-git/doc/guix.texi:17506 #, no-wrap msgid "Networking Setup" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Setting up network interfaces." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17561 guix-git/doc/guix.texi:17562 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17923 guix-git/doc/guix.texi:17924 #, no-wrap msgid "Networking Services" -msgstr "" +msgstr "Sieťové služby" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Firewall, SSH daemon, etc." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19020 guix-git/doc/guix.texi:19021 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19382 guix-git/doc/guix.texi:19383 #, no-wrap msgid "Unattended Upgrades" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Automated system upgrades." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19158 guix-git/doc/guix.texi:19159 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19520 guix-git/doc/guix.texi:19521 #, no-wrap msgid "X Window" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Graphical display." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19556 guix-git/doc/guix.texi:19557 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19918 guix-git/doc/guix.texi:19919 #, no-wrap msgid "Printing Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Local and remote printer support." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:20409 guix-git/doc/guix.texi:20410 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:20771 guix-git/doc/guix.texi:20772 #, no-wrap msgid "Desktop Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "D-Bus and desktop services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:20928 guix-git/doc/guix.texi:20929 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21290 guix-git/doc/guix.texi:21291 #, no-wrap msgid "Sound Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "ALSA and Pulseaudio services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:21068 guix-git/doc/guix.texi:21069 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21430 guix-git/doc/guix.texi:21431 #, no-wrap msgid "Database Services" -msgstr "" +msgstr "Databázové služby" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "SQL databases, key-value stores, etc." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:21403 guix-git/doc/guix.texi:21404 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21765 guix-git/doc/guix.texi:21766 #, no-wrap msgid "Mail Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "IMAP, POP3, SMTP, and all that." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:23262 guix-git/doc/guix.texi:23263 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:23624 guix-git/doc/guix.texi:23625 #, no-wrap msgid "Messaging Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Messaging services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:23765 guix-git/doc/guix.texi:23766 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:24127 guix-git/doc/guix.texi:24128 #, no-wrap msgid "Telephony Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Telephony services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:24996 guix-git/doc/guix.texi:24997 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25358 guix-git/doc/guix.texi:25359 #, no-wrap msgid "Monitoring Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Monitoring services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:25507 guix-git/doc/guix.texi:25508 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25844 guix-git/doc/guix.texi:25845 #, no-wrap msgid "Kerberos Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Kerberos services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:25633 guix-git/doc/guix.texi:25634 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25970 guix-git/doc/guix.texi:25971 #, no-wrap msgid "LDAP Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "LDAP services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:26112 guix-git/doc/guix.texi:26113 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:26449 guix-git/doc/guix.texi:26450 #, no-wrap msgid "Web Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Web servers." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:27320 guix-git/doc/guix.texi:27321 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:27657 guix-git/doc/guix.texi:27658 #, no-wrap msgid "Certificate Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "TLS certificates via Let's Encrypt." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:27501 guix-git/doc/guix.texi:27502 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:27838 guix-git/doc/guix.texi:27839 #, no-wrap msgid "DNS Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "DNS daemons." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28246 guix-git/doc/guix.texi:28247 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:28583 guix-git/doc/guix.texi:28584 #, no-wrap msgid "VPN Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "VPN daemons." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28758 guix-git/doc/guix.texi:28759 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29095 guix-git/doc/guix.texi:29096 #, no-wrap msgid "Network File System" -msgstr "" +msgstr "Sieťový súborový systém" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "NFS related services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28954 guix-git/doc/guix.texi:28955 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29291 guix-git/doc/guix.texi:29292 #, no-wrap msgid "Continuous Integration" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Cuirass and Laminar services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29240 guix-git/doc/guix.texi:29241 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29577 guix-git/doc/guix.texi:29578 #, no-wrap msgid "Power Management Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Extending battery life." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29774 guix-git/doc/guix.texi:29775 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:30139 guix-git/doc/guix.texi:30140 #, no-wrap msgid "Audio Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The MPD." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29893 guix-git/doc/guix.texi:29894 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:30258 guix-git/doc/guix.texi:30259 #, no-wrap msgid "Virtualization Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Virtualization services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:31561 guix-git/doc/guix.texi:31562 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:31926 guix-git/doc/guix.texi:31927 #, no-wrap msgid "Version Control Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Providing remote access to Git repositories." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:32897 guix-git/doc/guix.texi:32898 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33262 guix-git/doc/guix.texi:33263 #, no-wrap msgid "Game Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Game servers." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:32929 guix-git/doc/guix.texi:32930 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33294 guix-git/doc/guix.texi:33295 #, no-wrap msgid "PAM Mount Service" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Service to mount volumes when logging in." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33012 guix-git/doc/guix.texi:33013 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33377 guix-git/doc/guix.texi:33378 #, no-wrap msgid "Guix Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services relating specifically to Guix." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33290 guix-git/doc/guix.texi:33291 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33727 guix-git/doc/guix.texi:33728 #, no-wrap msgid "Linux Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services tied to the Linux kernel." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33517 guix-git/doc/guix.texi:33518 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33954 guix-git/doc/guix.texi:33955 #, no-wrap msgid "Hurd Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services specific for a Hurd System." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33559 guix-git/doc/guix.texi:33560 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33996 guix-git/doc/guix.texi:33997 #, no-wrap msgid "Miscellaneous Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Other services." -msgstr "" +msgstr "Ďalšie služby." #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35780 guix-git/doc/guix.texi:35781 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36270 guix-git/doc/guix.texi:36271 #, no-wrap msgid "Service Composition" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "The model for composing services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35836 guix-git/doc/guix.texi:35837 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36326 guix-git/doc/guix.texi:36327 #, no-wrap msgid "Service Types and Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "Types and services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35973 guix-git/doc/guix.texi:35974 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36463 guix-git/doc/guix.texi:36464 #, no-wrap msgid "Service Reference" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "API reference." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:36292 guix-git/doc/guix.texi:36293 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36782 guix-git/doc/guix.texi:36783 #, no-wrap msgid "Shepherd Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "A particular type of service." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:36511 guix-git/doc/guix.texi:36512 -#, fuzzy, no-wrap -#| msgid "System Configuration" +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:37001 guix-git/doc/guix.texi:37002 +#, no-wrap msgid "Complex Configurations" -msgstr "Nastavenie systému" +msgstr "Zložité nastavenia" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "Defining bindings for complex configurations." msgstr "" #. type: section -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 -#: guix-git/doc/guix.texi:37806 guix-git/doc/guix.texi:37807 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 +#: guix-git/doc/guix.texi:38295 guix-git/doc/guix.texi:38296 #, no-wrap msgid "Separate Debug Info" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 msgid "Installing 'debug' outputs." msgstr "" #. type: section -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 -#: guix-git/doc/guix.texi:37879 guix-git/doc/guix.texi:37880 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 +#: guix-git/doc/guix.texi:38368 guix-git/doc/guix.texi:38369 #, no-wrap msgid "Rebuilding Debug Info" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 msgid "Building missing debug info." msgstr "" #. type: node -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 -#: guix-git/doc/guix.texi:38098 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 +#: guix-git/doc/guix.texi:38587 #, no-wrap msgid "Reduced Binary Seed Bootstrap" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 msgid "A Bootstrap worthy of GNU." msgstr "" #. type: section -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 -#: guix-git/doc/guix.texi:38173 guix-git/doc/guix.texi:38174 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 +#: guix-git/doc/guix.texi:38662 guix-git/doc/guix.texi:38663 #, no-wrap msgid "Preparing to Use the Bootstrap Binaries" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 msgid "Building that what matters most." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:405 +#: guix-git/doc/guix.texi:406 #, no-wrap msgid "purpose" -msgstr "" +msgstr "účel" #. type: Plain text -#: guix-git/doc/guix.texi:413 +#: guix-git/doc/guix.texi:414 msgid "GNU Guix@footnote{``Guix'' is pronounced like ``geeks'', or ``ɡiːks'' using the international phonetic alphabet (IPA).} is a package management tool for and distribution of the GNU system. Guix makes it easy for unprivileged users to install, upgrade, or remove software packages, to roll back to a previous package set, to build packages from source, and generally assists with the creation and maintenance of software environments." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:414 guix-git/doc/guix.texi:489 +#: guix-git/doc/guix.texi:415 guix-git/doc/guix.texi:490 #, no-wrap msgid "Guix System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:415 +#: guix-git/doc/guix.texi:416 #, no-wrap msgid "GuixSD, now Guix System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:416 +#: guix-git/doc/guix.texi:417 #, no-wrap msgid "Guix System Distribution, now Guix System" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:425 +#: guix-git/doc/guix.texi:426 msgid "You can install GNU@tie{}Guix on top of an existing GNU/Linux system where it complements the available tools without interference (@pxref{Installation}), or you can use it as a standalone operating system distribution, @dfn{Guix@tie{}System}@footnote{We used to refer to Guix System as ``Guix System Distribution'' or ``GuixSD''. We now consider it makes more sense to group everything under the ``Guix'' banner since, after all, Guix System is readily available through the @command{guix system} command, even if you're using a different distro underneath!}. @xref{GNU Distribution}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:434 +#: guix-git/doc/guix.texi:435 #, no-wrap msgid "user interfaces" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:440 +#: guix-git/doc/guix.texi:441 msgid "Guix provides a command-line package management interface (@pxref{Package Management}), tools to help with software development (@pxref{Development}), command-line utilities for more advanced usage (@pxref{Utilities}), as well as Scheme programming interfaces (@pxref{Programming Interface})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:440 +#: guix-git/doc/guix.texi:441 #, no-wrap msgid "build daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:444 +#: guix-git/doc/guix.texi:445 msgid "Its @dfn{build daemon} is responsible for building packages on behalf of users (@pxref{Setting Up the Daemon}) and for downloading pre-built binaries from authorized sources (@pxref{Substitutes})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:445 +#: guix-git/doc/guix.texi:446 #, no-wrap msgid "extensibility of the distribution" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:446 guix-git/doc/guix.texi:6863 +#: guix-git/doc/guix.texi:447 guix-git/doc/guix.texi:6907 #, no-wrap msgid "customization, of packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:455 +#: guix-git/doc/guix.texi:456 msgid "Guix includes package definitions for many GNU and non-GNU packages, all of which @uref{https://www.gnu.org/philosophy/free-sw.html, respect the user's computing freedom}. It is @emph{extensible}: users can write their own package definitions (@pxref{Defining Packages}) and make them available as independent package modules (@pxref{Package Modules}). It is also @emph{customizable}: users can @emph{derive} specialized package definitions from existing ones, including from the command line (@pxref{Package Transformation Options})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:456 +#: guix-git/doc/guix.texi:457 #, no-wrap msgid "functional package management" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:457 +#: guix-git/doc/guix.texi:458 #, no-wrap msgid "isolation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:472 +#: guix-git/doc/guix.texi:473 msgid "Under the hood, Guix implements the @dfn{functional package management} discipline pioneered by Nix (@pxref{Acknowledgments}). In Guix, the package build and installation process is seen as a @emph{function}, in the mathematical sense. That function takes inputs, such as build scripts, a compiler, and libraries, and returns an installed package. As a pure function, its result depends solely on its inputs---for instance, it cannot refer to software or scripts that were not explicitly passed as inputs. A build function always produces the same result when passed a given set of inputs. It cannot alter the environment of the running system in any way; for instance, it cannot create, modify, or delete files outside of its build and installation directories. This is achieved by running build processes in isolated environments (or @dfn{containers}), where only their explicit inputs are visible." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:473 guix-git/doc/guix.texi:9372 +#: guix-git/doc/guix.texi:474 guix-git/doc/guix.texi:9686 #, no-wrap msgid "store" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:480 +#: guix-git/doc/guix.texi:481 msgid "The result of package build functions is @dfn{cached} in the file system, in a special directory called @dfn{the store} (@pxref{The Store}). Each package is installed in a directory of its own in the store---by default under @file{/gnu/store}. The directory name contains a hash of all the inputs used to build that package; thus, changing an input yields a different directory name." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:484 +#: guix-git/doc/guix.texi:485 msgid "This approach is the foundation for the salient features of Guix: support for transactional package upgrade and rollback, per-user installation, and garbage collection of packages (@pxref{Features})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:499 +#: guix-git/doc/guix.texi:500 msgid "Guix comes with a distribution of the GNU system consisting entirely of free software@footnote{The term ``free'' here refers to the @url{https://www.gnu.org/philosophy/free-sw.html,freedom provided to users of that software}.}. The distribution can be installed on its own (@pxref{System Installation}), but it is also possible to install Guix as a package manager on top of an installed GNU/Linux system (@pxref{Installation}). When we need to distinguish between the two, we refer to the standalone distribution as Guix@tie{}System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:505 +#: guix-git/doc/guix.texi:506 msgid "The distribution provides core GNU packages such as GNU libc, GCC, and Binutils, as well as many GNU and non-GNU applications. The complete list of available packages can be browsed @url{https://www.gnu.org/software/guix/packages,on-line} or by running @command{guix package} (@pxref{Invoking guix package}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:508 +#: guix-git/doc/guix.texi:509 #, no-wrap msgid "guix package --list-available\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:514 +#: guix-git/doc/guix.texi:515 msgid "Our goal is to provide a practical 100% free software distribution of Linux-based and other variants of GNU, with a focus on the promotion and tight integration of GNU components, and an emphasis on programs and tools that help users exert that freedom." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:516 +#: guix-git/doc/guix.texi:517 msgid "Packages are currently available on the following platforms:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:519 guix-git/doc/guix.texi:2155 +#: guix-git/doc/guix.texi:520 guix-git/doc/guix.texi:2172 #, no-wrap msgid "x86_64-linux" msgstr "" #. type: table -#: guix-git/doc/guix.texi:521 +#: guix-git/doc/guix.texi:522 msgid "Intel/AMD @code{x86_64} architecture, Linux-Libre kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:522 guix-git/doc/guix.texi:2158 +#: guix-git/doc/guix.texi:523 guix-git/doc/guix.texi:2175 #, no-wrap msgid "i686-linux" msgstr "" #. type: table -#: guix-git/doc/guix.texi:524 +#: guix-git/doc/guix.texi:525 msgid "Intel 32-bit architecture (IA32), Linux-Libre kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:525 +#: guix-git/doc/guix.texi:526 #, no-wrap msgid "armhf-linux" msgstr "" #. type: table -#: guix-git/doc/guix.texi:529 +#: guix-git/doc/guix.texi:530 msgid "ARMv7-A architecture with hard float, Thumb-2 and NEON, using the EABI hard-float application binary interface (ABI), and Linux-Libre kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:530 +#: guix-git/doc/guix.texi:531 #, no-wrap msgid "aarch64-linux" msgstr "" #. type: table -#: guix-git/doc/guix.texi:532 +#: guix-git/doc/guix.texi:533 msgid "little-endian 64-bit ARMv8-A processors, Linux-Libre kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:533 +#: guix-git/doc/guix.texi:534 #, no-wrap msgid "i586-gnu" msgstr "" #. type: table -#: guix-git/doc/guix.texi:536 +#: guix-git/doc/guix.texi:537 msgid "@uref{https://hurd.gnu.org, GNU/Hurd} on the Intel 32-bit architecture (IA32)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:542 +#: guix-git/doc/guix.texi:543 msgid "This configuration is experimental and under development. The easiest way for you to give it a try is by setting up an instance of @code{hurd-vm-service-type} on your GNU/Linux machine (@pxref{transparent-emulation-qemu, @code{hurd-vm-service-type}}). @xref{Contributing}, on how to help!" msgstr "" #. type: item -#: guix-git/doc/guix.texi:543 +#: guix-git/doc/guix.texi:544 #, no-wrap msgid "mips64el-linux (unsupported)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:549 +#: guix-git/doc/guix.texi:550 msgid "little-endian 64-bit MIPS processors, specifically the Loongson series, n32 ABI, and Linux-Libre kernel. This configuration is no longer fully supported; in particular, there is no ongoing work to ensure that this architecture still works. Should someone decide they wish to revive this architecture then the code is still available." msgstr "" #. type: item -#: guix-git/doc/guix.texi:550 +#: guix-git/doc/guix.texi:551 #, no-wrap msgid "powerpc-linux (unsupported)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:555 +#: guix-git/doc/guix.texi:556 msgid "big-endian 32-bit PowerPC processors, specifically the PowerPC G4 with AltiVec support, and Linux-Libre kernel. This configuration is not fully supported and there is no ongoing work to ensure this architecture works." msgstr "" #. type: table -#: guix-git/doc/guix.texi:566 +#: guix-git/doc/guix.texi:567 msgid "little-endian 64-bit Power ISA processors, Linux-Libre kernel. This includes POWER9 systems such as the @uref{https://www.fsf.org/news/talos-ii-mainboard-and-talos-ii-lite-mainboard-now-fsf-certified-to-respect-your-freedom, RYF Talos II mainboard}. This platform is available as a \"technology preview\": although it is supported, substitutes are not yet available from the build farm (@pxref{Substitutes}), and some packages may fail to build (@pxref{Tracking Bugs and Patches}). That said, the Guix community is actively working on improving this support, and now is a great time to try it and get involved!" msgstr "" -#. type: Plain text +#. type: item +#: guix-git/doc/guix.texi:568 +#, no-wrap +msgid "riscv64-linux" +msgstr "" + +#. type: table #: guix-git/doc/guix.texi:576 +msgid "little-endian 64-bit RISC-V processors, specifically RV64GC, and Linux-Libre kernel. This playform is available as a \"technology preview\": although it is supported, substitutes are not yet available from the build farm (@pxref{Substitutes}), and some packages may fail to build (@pxref{Tracking Bugs and Patches}). That said, the Guix community is actively working on improving this support, and now is a great time to try it and get involved!" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:586 msgid "With Guix@tie{}System, you @emph{declare} all aspects of the operating system configuration and Guix takes care of instantiating the configuration in a transactional, reproducible, and stateless fashion (@pxref{System Configuration}). Guix System uses the Linux-libre kernel, the Shepherd initialization system (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}), the well-known GNU utilities and tool chain, as well as the graphical environment or system services of your choice." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:579 -msgid "Guix System is available on all the above platforms except @code{mips64el-linux} and @code{powerpc64le-linux}." +#: guix-git/doc/guix.texi:590 +msgid "Guix System is available on all the above platforms except @code{mips64el-linux}, @code{powerpc-linux}, @code{powerpc64le-linux} and @code{riscv64-linux}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:583 +#: guix-git/doc/guix.texi:594 msgid "For information on porting to other architectures or kernels, @pxref{Porting}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:586 +#: guix-git/doc/guix.texi:597 msgid "Building this distribution is a cooperative effort, and you are invited to join! @xref{Contributing}, for information about how you can help." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:592 +#: guix-git/doc/guix.texi:603 #, no-wrap msgid "installing Guix" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:604 +#: guix-git/doc/guix.texi:615 msgid "We recommend the use of this @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, shell installer script} to install Guix on top of a running GNU/Linux system, thereafter called a @dfn{foreign distro}.@footnote{This section is concerned with the installation of the package manager, which can be done on top of a running GNU/Linux system. If, instead, you want to install the complete GNU operating system, @pxref{System Installation}.} The script automates the download, installation, and initial configuration of Guix. It should be run as the root user." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:606 guix-git/doc/guix.texi:1830 +#: guix-git/doc/guix.texi:617 guix-git/doc/guix.texi:1847 #, no-wrap msgid "foreign distro" msgstr "cudzia distribúcia" #. type: cindex -#: guix-git/doc/guix.texi:607 +#: guix-git/doc/guix.texi:618 #, no-wrap msgid "directories related to foreign distro" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:612 +#: guix-git/doc/guix.texi:623 msgid "When installed on a foreign distro, GNU@tie{}Guix complements the available tools without interference. Its data lives exclusively in two directories, usually @file{/gnu/store} and @file{/var/guix}; other files on your system, such as @file{/etc}, are left untouched." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:615 +#: guix-git/doc/guix.texi:626 msgid "Once installed, Guix can be updated by running @command{guix pull} (@pxref{Invoking guix pull})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:620 +#: guix-git/doc/guix.texi:631 msgid "If you prefer to perform the installation steps manually or want to tweak them, you may find the following subsections useful. They describe the software requirements of Guix, as well as how to install it manually and get ready to use it." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:634 +#: guix-git/doc/guix.texi:645 #, no-wrap msgid "installing Guix from binaries" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:635 +#: guix-git/doc/guix.texi:646 #, no-wrap msgid "installer script" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:641 +#: guix-git/doc/guix.texi:652 msgid "This section describes how to install Guix on an arbitrary system from a self-contained tarball providing binaries for Guix and for all its dependencies. This is often quicker than installing from source, which is described in the next sections. The only requirement is to have GNU@tie{}tar and Xz." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:649 +#: guix-git/doc/guix.texi:660 msgid "We recommend the use of this @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, shell installer script}. The script automates the download, installation, and initial configuration steps described below. It should be run as the root user. As root, you can thus run this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:655 +#: guix-git/doc/guix.texi:666 #, no-wrap msgid "" "cd /tmp\n" @@ -5251,33 +5299,33 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:659 +#: guix-git/doc/guix.texi:670 msgid "When you're done, @pxref{Application Setup} for extra configuration you might need, and @ref{Getting Started} for your first steps!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:662 +#: guix-git/doc/guix.texi:673 msgid "Installing goes along these lines:" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:665 +#: guix-git/doc/guix.texi:676 #, no-wrap msgid "downloading Guix binary" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:671 +#: guix-git/doc/guix.texi:682 msgid "Download the binary tarball from @indicateurl{@value{BASE-URL}/guix-binary-@value{VERSION}.x86_64-linux.tar.xz}, where @code{x86_64-linux} can be replaced with @code{i686-linux} for an @code{i686} (32-bits) machine already running the kernel Linux, and so on (@pxref{GNU Distribution})." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:675 +#: guix-git/doc/guix.texi:686 msgid "Make sure to download the associated @file{.sig} file and to verify the authenticity of the tarball against it, along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:679 +#: guix-git/doc/guix.texi:690 #, no-wrap msgid "" "$ wget @value{BASE-URL}/guix-binary-@value{VERSION}.x86_64-linux.tar.xz.sig\n" @@ -5285,12 +5333,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:683 guix-git/doc/guix.texi:2173 +#: guix-git/doc/guix.texi:694 guix-git/doc/guix.texi:2190 msgid "If that command fails because you do not have the required public key, then run this command to import it:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:687 +#: guix-git/doc/guix.texi:698 #, no-wrap msgid "" "$ wget '@value{OPENPGP-SIGNING-KEY-URL}' \\\n" @@ -5298,22 +5346,22 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:691 guix-git/doc/guix.texi:2181 +#: guix-git/doc/guix.texi:702 guix-git/doc/guix.texi:2198 msgid "and rerun the @code{gpg --verify} command." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:694 guix-git/doc/guix.texi:2184 +#: guix-git/doc/guix.texi:705 guix-git/doc/guix.texi:2201 msgid "Take note that a warning like ``This key is not certified with a trusted signature!'' is normal." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:700 +#: guix-git/doc/guix.texi:711 msgid "Now, you need to become the @code{root} user. Depending on your distribution, you may have to run @code{su -} or @code{sudo -i}. As @code{root}, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:706 +#: guix-git/doc/guix.texi:717 #, no-wrap msgid "" "# cd /tmp\n" @@ -5323,27 +5371,27 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:711 +#: guix-git/doc/guix.texi:722 msgid "This creates @file{/gnu/store} (@pxref{The Store}) and @file{/var/guix}. The latter contains a ready-to-use profile for @code{root} (see next step)." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:714 +#: guix-git/doc/guix.texi:725 msgid "Do @emph{not} unpack the tarball on a working Guix system since that would overwrite its own essential files." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:724 +#: guix-git/doc/guix.texi:735 msgid "The @option{--warning=no-timestamp} option makes sure GNU@tie{}tar does not emit warnings about ``implausibly old time stamps'' (such warnings were triggered by GNU@tie{}tar 1.26 and older; recent versions are fine). They stem from the fact that all the files in the archive have their modification time set to 1 (which means January 1st, 1970). This is done on purpose to make sure the archive content is independent of its creation time, thus making it reproducible." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:728 +#: guix-git/doc/guix.texi:739 msgid "Make the profile available under @file{~root/.config/guix/current}, which is where @command{guix pull} will install updates (@pxref{Invoking guix pull}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:733 +#: guix-git/doc/guix.texi:744 #, no-wrap msgid "" "# mkdir -p ~root/.config/guix\n" @@ -5352,12 +5400,12 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:737 +#: guix-git/doc/guix.texi:748 msgid "Source @file{etc/profile} to augment @env{PATH} and other relevant environment variables:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:741 +#: guix-git/doc/guix.texi:752 #, no-wrap msgid "" "# GUIX_PROFILE=\"`echo ~root`/.config/guix/current\" ; \\\n" @@ -5365,22 +5413,22 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:746 +#: guix-git/doc/guix.texi:757 msgid "Create the group and user accounts for build users as explained below (@pxref{Build Environment Setup})." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:749 +#: guix-git/doc/guix.texi:760 msgid "Run the daemon, and set it to automatically start on boot." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:752 +#: guix-git/doc/guix.texi:763 msgid "If your host distro uses the systemd init system, this can be achieved with these commands:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:765 +#: guix-git/doc/guix.texi:776 #, no-wrap msgid "" "# cp ~root/.config/guix/current/lib/systemd/system/gnu-store.mount \\\n" @@ -5390,12 +5438,12 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:768 +#: guix-git/doc/guix.texi:779 msgid "You may also want to arrange for @command{guix gc} to run periodically:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:774 +#: guix-git/doc/guix.texi:785 #, no-wrap msgid "" "# cp ~root/.config/guix/current/lib/systemd/system/guix-gc.service \\\n" @@ -5405,17 +5453,17 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:778 +#: guix-git/doc/guix.texi:789 msgid "You may want to edit @file{guix-gc.service} to adjust the command line options to fit your needs (@pxref{Invoking guix gc})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:780 guix-git/doc/guix.texi:13740 +#: guix-git/doc/guix.texi:791 guix-git/doc/guix.texi:14097 msgid "If your host distro uses the Upstart init system:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:786 +#: guix-git/doc/guix.texi:797 #, no-wrap msgid "" "# initctl reload-configuration\n" @@ -5425,12 +5473,12 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:789 +#: guix-git/doc/guix.texi:800 msgid "Otherwise, you can still start the daemon manually with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:793 +#: guix-git/doc/guix.texi:804 #, no-wrap msgid "" "# ~root/.config/guix/current/bin/guix-daemon \\\n" @@ -5438,12 +5486,12 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:798 +#: guix-git/doc/guix.texi:809 msgid "Make the @command{guix} command available to other users on the machine, for instance with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:803 +#: guix-git/doc/guix.texi:814 #, no-wrap msgid "" "# mkdir -p /usr/local/bin\n" @@ -5452,12 +5500,12 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:807 +#: guix-git/doc/guix.texi:818 msgid "It is also a good idea to make the Info version of this manual available there:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:813 +#: guix-git/doc/guix.texi:824 #, no-wrap msgid "" "# mkdir -p /usr/local/share/info\n" @@ -5467,24 +5515,24 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:819 +#: guix-git/doc/guix.texi:830 msgid "That way, assuming @file{/usr/local/share/info} is in the search path, running @command{info guix} will open this manual (@pxref{Other Info Directories,,, texinfo, GNU Texinfo}, for more details on changing the Info search path)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:821 guix-git/doc/guix.texi:3798 -#: guix-git/doc/guix.texi:16494 +#: guix-git/doc/guix.texi:832 guix-git/doc/guix.texi:3816 +#: guix-git/doc/guix.texi:16851 #, no-wrap msgid "substitutes, authorization thereof" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:825 +#: guix-git/doc/guix.texi:836 msgid "To use substitutes from @code{@value{SUBSTITUTE-SERVER-1}}, @code{@value{SUBSTITUTE-SERVER-2}} or a mirror (@pxref{Substitutes}), authorize them:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:831 +#: guix-git/doc/guix.texi:842 #, no-wrap msgid "" "# guix archive --authorize < \\\n" @@ -5494,49 +5542,49 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:838 +#: guix-git/doc/guix.texi:849 msgid "If you do not enable substitutes, Guix will end up building @emph{everything} from source on your machine, making each installation and upgrade very expensive. @xref{On Trusting Binaries}, for a discussion of reasons why one might want do disable substitutes." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:843 +#: guix-git/doc/guix.texi:854 msgid "Each user may need to perform a few additional steps to make their Guix environment ready for use, @pxref{Application Setup}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:846 +#: guix-git/doc/guix.texi:857 msgid "Voilà, the installation is complete!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:849 +#: guix-git/doc/guix.texi:860 msgid "You can confirm that Guix is working by installing a sample package into the root profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:852 +#: guix-git/doc/guix.texi:863 #, no-wrap msgid "# guix install hello\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:856 +#: guix-git/doc/guix.texi:867 msgid "The binary installation tarball can be (re)produced and verified simply by running the following command in the Guix source tree:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:859 +#: guix-git/doc/guix.texi:870 #, no-wrap msgid "make guix-binary.@var{system}.tar.xz\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:863 +#: guix-git/doc/guix.texi:874 msgid "...@: which, in turn, runs:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:867 +#: guix-git/doc/guix.texi:878 #, no-wrap msgid "" "guix pack -s @var{system} --localstatedir \\\n" @@ -5544,226 +5592,229 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:870 +#: guix-git/doc/guix.texi:881 msgid "@xref{Invoking guix pack}, for more info on this handy tool." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:878 +#: guix-git/doc/guix.texi:889 msgid "This section lists requirements when building Guix from source. The build procedure for Guix is the same as for other GNU software, and is not covered here. Please see the files @file{README} and @file{INSTALL} in the Guix source tree for additional details." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:879 +#: guix-git/doc/guix.texi:890 #, no-wrap msgid "official website" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:882 +#: guix-git/doc/guix.texi:893 msgid "GNU Guix is available for download from its website at @url{https://www.gnu.org/software/guix/}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:884 +#: guix-git/doc/guix.texi:895 msgid "GNU Guix depends on the following packages:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:886 +#: guix-git/doc/guix.texi:897 #, fuzzy, no-wrap -#| msgid "@url{https://gnu.org/software/gettext/, GNU Gettext};" -msgid "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x;" -msgstr "@url{https://gnu.org/software/gettext/, GNU Gettext};" +#| msgid "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x;" +msgid "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x," +msgstr "@url{https://gnu.org/software/guile/, GNU Guile}, verzia 3.0.x;" + +#. type: itemize +#: guix-git/doc/guix.texi:899 +msgid "version 3.0.3 or later;" +msgstr "" #. type: item -#: guix-git/doc/guix.texi:887 +#: guix-git/doc/guix.texi:899 #, no-wrap msgid "@url{https://notabug.org/cwebber/guile-gcrypt, Guile-Gcrypt}, version" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:889 +#: guix-git/doc/guix.texi:901 msgid "0.1.0 or later;" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:893 +#: guix-git/doc/guix.texi:905 msgid "@uref{https://gnutls.org/, GnuTLS}, specifically its Guile bindings (@pxref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile});" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:896 +#: guix-git/doc/guix.texi:908 msgid "@uref{https://notabug.org/guile-sqlite3/guile-sqlite3, Guile-SQLite3}, version 0.1.0 or later;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:896 +#: guix-git/doc/guix.texi:908 #, no-wrap msgid "@uref{https://notabug.org/guile-zlib/guile-zlib, Guile-zlib}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:898 +#: guix-git/doc/guix.texi:910 msgid "version 0.1.0 or later;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:898 +#: guix-git/doc/guix.texi:910 #, no-wrap msgid "@uref{https://notabug.org/guile-lzlib/guile-lzlib, Guile-lzlib};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:899 +#: guix-git/doc/guix.texi:911 #, no-wrap msgid "@uref{https://www.nongnu.org/guile-avahi/, Guile-Avahi};" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:903 -#, fuzzy -#| msgid "@url{https://gnu.org/software/gettext/, GNU Gettext};" +#: guix-git/doc/guix.texi:915 msgid "@uref{https://gitlab.com/guile-git/guile-git, Guile-Git}, version 0.5.0 or later;" -msgstr "@url{https://gnu.org/software/gettext/, GNU Gettext};" +msgstr "@uref{https://gitlab.com/guile-git/guile-git, Guile-Git}, verzia 0.5.0 alebo novšia;" #. type: item -#: guix-git/doc/guix.texi:903 +#: guix-git/doc/guix.texi:915 #, no-wrap msgid "@uref{https://savannah.nongnu.org/projects/guile-json/, Guile-JSON}" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:905 +#: guix-git/doc/guix.texi:917 msgid "4.3.0 or later;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:905 +#: guix-git/doc/guix.texi:917 #, no-wrap msgid "@url{https://www.gnu.org/software/make/, GNU Make}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:909 +#: guix-git/doc/guix.texi:921 msgid "The following dependencies are optional:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:917 +#: guix-git/doc/guix.texi:929 msgid "Support for build offloading (@pxref{Daemon Offload Setup}) and @command{guix copy} (@pxref{Invoking guix copy}) depends on @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH}, version 0.13.0 or later." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:922 +#: guix-git/doc/guix.texi:934 msgid "@uref{https://notabug.org/guile-zstd/guile-zstd, Guile-zstd}, for zstd compression and decompression in @command{guix publish} and for substitutes (@pxref{Invoking guix publish})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:926 +#: guix-git/doc/guix.texi:938 msgid "@uref{https://ngyro.com/software/guile-semver.html, Guile-Semver} for the @code{crate} importer (@pxref{Invoking guix import})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:931 +#: guix-git/doc/guix.texi:943 msgid "@uref{https://www.nongnu.org/guile-lib/doc/ref/htmlprag/, Guile-Lib} for the @code{go} importer (@pxref{Invoking guix import}) and for some of the ``updaters'' (@pxref{Invoking guix refresh})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:935 +#: guix-git/doc/guix.texi:947 msgid "When @url{http://www.bzip.org, libbz2} is available, @command{guix-daemon} can use it to compress build logs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:939 +#: guix-git/doc/guix.texi:951 msgid "Unless @option{--disable-daemon} was passed to @command{configure}, the following packages are also needed:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:941 +#: guix-git/doc/guix.texi:953 #, no-wrap msgid "@url{https://gnupg.org/, GNU libgcrypt};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:942 +#: guix-git/doc/guix.texi:954 #, no-wrap msgid "@url{https://sqlite.org, SQLite 3};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:943 +#: guix-git/doc/guix.texi:955 #, no-wrap msgid "@url{https://gcc.gnu.org, GCC's g++}, with support for the" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:945 +#: guix-git/doc/guix.texi:957 msgid "C++11 standard." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:947 +#: guix-git/doc/guix.texi:959 #, no-wrap msgid "state directory" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:956 +#: guix-git/doc/guix.texi:968 msgid "When configuring Guix on a system that already has a Guix installation, be sure to specify the same state directory as the existing installation using the @option{--localstatedir} option of the @command{configure} script (@pxref{Directory Variables, @code{localstatedir},, standards, GNU Coding Standards}). Usually, this @var{localstatedir} option is set to the value @file{/var}. The @command{configure} script protects against unintended misconfiguration of @var{localstatedir} so you do not inadvertently corrupt your store (@pxref{The Store})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:960 +#: guix-git/doc/guix.texi:972 #, no-wrap msgid "test suite" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:966 +#: guix-git/doc/guix.texi:978 msgid "After a successful @command{configure} and @code{make} run, it is a good idea to run the test suite. It can help catch issues with the setup or environment, or bugs in Guix itself---and really, reporting test failures is a good way to help improve the software. To run the test suite, type:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:969 +#: guix-git/doc/guix.texi:981 #, no-wrap msgid "make check\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:976 +#: guix-git/doc/guix.texi:988 msgid "Test cases can run in parallel: you can use the @code{-j} option of GNU@tie{}make to speed things up. The first run may take a few minutes on a recent machine; subsequent runs will be faster because the store that is created for test purposes will already have various things in cache." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:979 +#: guix-git/doc/guix.texi:991 msgid "It is also possible to run a subset of the tests by defining the @code{TESTS} makefile variable as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:982 +#: guix-git/doc/guix.texi:994 #, no-wrap msgid "make check TESTS=\"tests/store.scm tests/cpio.scm\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:987 +#: guix-git/doc/guix.texi:999 msgid "By default, tests results are displayed at a file level. In order to see the details of every individual test cases, it is possible to define the @code{SCM_LOG_DRIVER_FLAGS} makefile variable as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:990 +#: guix-git/doc/guix.texi:1002 #, no-wrap msgid "make check TESTS=\"tests/base64.scm\" SCM_LOG_DRIVER_FLAGS=\"--brief=no\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:998 +#: guix-git/doc/guix.texi:1010 msgid "The underlying SRFI 64 custom Automake test driver used for the 'check' test suite (located at @file{build-aux/test-driver.scm}) also allows selecting which test cases to run at a finer level, via its @option{--select} and @option{--exclude} options. Here's an example, to run all the test cases from the @file{tests/packages.scm} test file whose names start with ``transaction-upgrade-entry'':" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1002 +#: guix-git/doc/guix.texi:1014 #, no-wrap msgid "" "export SCM_LOG_DRIVER_FLAGS=\"--select=^transaction-upgrade-entry\"\n" @@ -5771,114 +5822,114 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1008 +#: guix-git/doc/guix.texi:1020 msgid "Those wishing to inspect the results of failed tests directly from the command line can add the @option{--errors-only=yes} option to the @code{SCM_LOG_DRIVER_FLAGS} makefile variable and set the @code{VERBOSE} Automake makefile variable, as in:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1011 +#: guix-git/doc/guix.texi:1023 #, no-wrap msgid "make check SCM_LOG_DRIVER_FLAGS=\"--brief=no --errors-only=yes\" VERBOSE=1\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1016 +#: guix-git/doc/guix.texi:1028 msgid "The @option{--show-duration=yes} option can be used to print the duration of the individual test cases, when used in combination with @option{--brief=no}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1019 +#: guix-git/doc/guix.texi:1031 #, no-wrap msgid "make check SCM_LOG_DRIVER_FLAGS=\"--brief=no --show-duration=yes\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1023 +#: guix-git/doc/guix.texi:1035 msgid "@xref{Parallel Test Harness,,,automake,GNU Automake} for more information about the Automake Parallel Test Harness." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1028 +#: guix-git/doc/guix.texi:1040 msgid "Upon failure, please email @email{bug-guix@@gnu.org} and attach the @file{test-suite.log} file. Please specify the Guix version being used as well as version numbers of the dependencies (@pxref{Requirements}) in your message." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1032 +#: guix-git/doc/guix.texi:1044 msgid "Guix also comes with a whole-system test suite that tests complete Guix System instances. It can only run on systems where Guix is already installed, using:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1035 +#: guix-git/doc/guix.texi:1047 #, no-wrap msgid "make check-system\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1039 +#: guix-git/doc/guix.texi:1051 msgid "or, again, by defining @code{TESTS} to select a subset of tests to run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1042 +#: guix-git/doc/guix.texi:1054 #, no-wrap msgid "make check-system TESTS=\"basic mcron\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1050 +#: guix-git/doc/guix.texi:1062 msgid "These system tests are defined in the @code{(gnu tests @dots{})} modules. They work by running the operating systems under test with lightweight instrumentation in a virtual machine (VM). They can be computationally intensive or rather cheap, depending on whether substitutes are available for their dependencies (@pxref{Substitutes}). Some of them require a lot of storage space to hold VM images." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1053 +#: guix-git/doc/guix.texi:1065 msgid "Again in case of test failures, please send @email{bug-guix@@gnu.org} all the details." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1057 +#: guix-git/doc/guix.texi:1069 #, no-wrap msgid "daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1065 +#: guix-git/doc/guix.texi:1077 msgid "Operations such as building a package or running the garbage collector are all performed by a specialized process, the @dfn{build daemon}, on behalf of clients. Only the daemon may access the store and its associated database. Thus, any operation that manipulates the store goes through the daemon. For instance, command-line tools such as @command{guix package} and @command{guix build} communicate with the daemon (@i{via} remote procedure calls) to instruct it what to do." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1069 +#: guix-git/doc/guix.texi:1081 msgid "The following sections explain how to prepare the build daemon's environment. See also @ref{Substitutes}, for information on how to allow the daemon to download pre-built binaries." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1079 guix-git/doc/guix.texi:1542 +#: guix-git/doc/guix.texi:1091 guix-git/doc/guix.texi:1559 #, no-wrap msgid "build environment" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1087 +#: guix-git/doc/guix.texi:1099 msgid "In a standard multi-user setup, Guix and its daemon---the @command{guix-daemon} program---are installed by the system administrator; @file{/gnu/store} is owned by @code{root} and @command{guix-daemon} runs as @code{root}. Unprivileged users may use Guix tools to build packages or otherwise access the store, and the daemon will do it on their behalf, ensuring that the store is kept in a consistent state, and allowing built packages to be shared among users." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1088 +#: guix-git/doc/guix.texi:1100 #, no-wrap msgid "build users" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1099 +#: guix-git/doc/guix.texi:1111 msgid "When @command{guix-daemon} runs as @code{root}, you may not want package build processes themselves to run as @code{root} too, for obvious security reasons. To avoid that, a special pool of @dfn{build users} should be created for use by build processes started by the daemon. These build users need not have a shell and a home directory: they will just be used when the daemon drops @code{root} privileges in build processes. Having several such users allows the daemon to launch distinct build processes under separate UIDs, which guarantees that they do not interfere with each other---an essential feature since builds are regarded as pure functions (@pxref{Introduction})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1102 +#: guix-git/doc/guix.texi:1114 msgid "On a GNU/Linux system, a build user pool may be created like this (using Bash syntax and the @code{shadow} commands):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1114 +#: guix-git/doc/guix.texi:1126 #, no-wrap msgid "" "# groupadd --system guixbuild\n" @@ -5892,139 +5943,144 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1124 +#: guix-git/doc/guix.texi:1136 msgid "The number of build users determines how many build jobs may run in parallel, as specified by the @option{--max-jobs} option (@pxref{Invoking guix-daemon, @option{--max-jobs}}). To use @command{guix system vm} and related commands, you may need to add the build users to the @code{kvm} group so they can access @file{/dev/kvm}, using @code{-G guixbuild,kvm} instead of @code{-G guixbuild} (@pxref{Invoking guix system})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1133 +#: guix-git/doc/guix.texi:1145 msgid "The @code{guix-daemon} program may then be run as @code{root} with the following command@footnote{If your machine uses the systemd init system, dropping the @file{@var{prefix}/lib/systemd/system/guix-daemon.service} file in @file{/etc/systemd/system} will ensure that @command{guix-daemon} is automatically started. Similarly, if your machine uses the Upstart init system, drop the @file{@var{prefix}/lib/upstart/system/guix-daemon.conf} file in @file{/etc/init}.}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1136 guix-git/doc/guix.texi:1535 +#: guix-git/doc/guix.texi:1148 guix-git/doc/guix.texi:1552 #, no-wrap msgid "# guix-daemon --build-users-group=guixbuild\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1138 guix-git/doc/guix.texi:1540 +#: guix-git/doc/guix.texi:1150 guix-git/doc/guix.texi:1557 #, no-wrap msgid "chroot" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1143 +#: guix-git/doc/guix.texi:1155 msgid "This way, the daemon starts build processes in a chroot, under one of the @code{guixbuilder} users. On GNU/Linux, by default, the chroot environment contains nothing but:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1151 +#: guix-git/doc/guix.texi:1163 msgid "a minimal @code{/dev} directory, created mostly independently from the host @code{/dev}@footnote{``Mostly'', because while the set of files that appear in the chroot's @code{/dev} is fixed, most of these files can only be created if the host has them.};" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1155 +#: guix-git/doc/guix.texi:1167 msgid "the @code{/proc} directory; it only shows the processes of the container since a separate PID name space is used;" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1159 +#: guix-git/doc/guix.texi:1171 msgid "@file{/etc/passwd} with an entry for the current user and an entry for user @file{nobody};" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1162 +#: guix-git/doc/guix.texi:1174 msgid "@file{/etc/group} with an entry for the user's group;" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1166 +#: guix-git/doc/guix.texi:1178 msgid "@file{/etc/hosts} with an entry that maps @code{localhost} to @code{127.0.0.1};" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:1169 +#: guix-git/doc/guix.texi:1181 msgid "a writable @file{/tmp} directory." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1178 +#: guix-git/doc/guix.texi:1187 +msgid "The chroot does not contain a @file{/home} directory, and the @env{HOME} environment variable is set to the non-existent @file{/homeless-shelter}. This helps to highlight inappropriate uses of @env{HOME} in the build scripts of packages." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:1195 msgid "You can influence the directory where the daemon stores build trees @i{via} the @env{TMPDIR} environment variable. However, the build tree within the chroot is always called @file{/tmp/guix-build-@var{name}.drv-0}, where @var{name} is the derivation name---e.g., @code{coreutils-8.24}. This way, the value of @env{TMPDIR} does not leak inside build environments, which avoids discrepancies in cases where build processes capture the name of their build tree." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:1179 guix-git/doc/guix.texi:4007 +#: guix-git/doc/guix.texi:1196 guix-git/doc/guix.texi:4025 #, no-wrap msgid "http_proxy" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:1180 guix-git/doc/guix.texi:4008 +#: guix-git/doc/guix.texi:1197 guix-git/doc/guix.texi:4026 #, no-wrap msgid "https_proxy" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1185 +#: guix-git/doc/guix.texi:1202 msgid "The daemon also honors the @env{http_proxy} and @env{https_proxy} environment variables for HTTP and HTTPS downloads it performs, be it for fixed-output derivations (@pxref{Derivations}) or for substitutes (@pxref{Substitutes})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1193 +#: guix-git/doc/guix.texi:1210 msgid "If you are installing Guix as an unprivileged user, it is still possible to run @command{guix-daemon} provided you pass @option{--disable-chroot}. However, build processes will not be isolated from one another, and not from the rest of the system. Thus, build processes may interfere with each other, and may access programs, libraries, and other files available on the system---making it much harder to view them as @emph{pure} functions." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:1196 +#: guix-git/doc/guix.texi:1213 #, no-wrap msgid "Using the Offload Facility" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1198 guix-git/doc/guix.texi:1601 +#: guix-git/doc/guix.texi:1215 guix-git/doc/guix.texi:1618 #, no-wrap msgid "offloading" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1199 +#: guix-git/doc/guix.texi:1216 #, no-wrap msgid "build hook" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1218 +#: guix-git/doc/guix.texi:1235 msgid "When desired, the build daemon can @dfn{offload} derivation builds to other machines running Guix, using the @code{offload} @dfn{build hook}@footnote{This feature is available only when @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH} is present.}. When that feature is enabled, a list of user-specified build machines is read from @file{/etc/guix/machines.scm}; every time a build is requested, for instance via @code{guix build}, the daemon attempts to offload it to one of the machines that satisfy the constraints of the derivation, in particular its system types---e.g., @code{x86_64-linux}. A single machine can have multiple system types, either because its architecture natively supports it, via emulation (@pxref{transparent-emulation-qemu, Transparent Emulation with QEMU}), or both. Missing prerequisites for the build are copied over SSH to the target machine, which then proceeds with the build; upon success the output(s) of the build are copied back to the initial machine. The offload facility comes with a basic scheduler that attempts to select the best machine. The best machine is chosen among the available machines based on criteria such as:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1224 +#: guix-git/doc/guix.texi:1241 msgid "The availability of a build slot. A build machine can have as many build slots (connections) as the value of the @code{parallel-builds} field of its @code{build-machine} object." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1228 +#: guix-git/doc/guix.texi:1245 msgid "Its relative speed, as defined via the @code{speed} field of its @code{build-machine} object." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1233 +#: guix-git/doc/guix.texi:1250 msgid "Its load. The normalized machine load must be lower than a threshold value, configurable via the @code{overload-threshold} field of its @code{build-machine} object." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1236 +#: guix-git/doc/guix.texi:1253 msgid "Disk space availability. More than a 100 MiB must be available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1239 +#: guix-git/doc/guix.texi:1256 msgid "The @file{/etc/guix/machines.scm} file typically looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:1247 +#: guix-git/doc/guix.texi:1264 #, no-wrap msgid "" "(list (build-machine\n" @@ -6037,7 +6093,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:1253 +#: guix-git/doc/guix.texi:1270 #, no-wrap msgid "" " (build-machine\n" @@ -6049,7 +6105,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:1257 +#: guix-git/doc/guix.texi:1274 #, no-wrap msgid "" " ;; Remember 'guix offload' is spawned by\n" @@ -6058,98 +6114,98 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1263 +#: guix-git/doc/guix.texi:1280 msgid "In the example above we specify a list of two build machines, one for the @code{x86_64} and @code{i686} architectures and one for the @code{aarch64} architecture." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1272 +#: guix-git/doc/guix.texi:1289 msgid "In fact, this file is---not surprisingly!---a Scheme file that is evaluated when the @code{offload} hook is started. Its return value must be a list of @code{build-machine} objects. While this example shows a fixed list of build machines, one could imagine, say, using DNS-SD to return a list of potential build machines discovered in the local network (@pxref{Introduction, Guile-Avahi,, guile-avahi, Using Avahi in Guile Scheme Programs}). The @code{build-machine} data type is detailed below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:1273 +#: guix-git/doc/guix.texi:1290 #, no-wrap msgid "{Data Type} build-machine" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:1276 +#: guix-git/doc/guix.texi:1293 msgid "This data type represents build machines to which the daemon may offload builds. The important fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1279 guix-git/doc/guix.texi:7113 -#: guix-git/doc/guix.texi:15446 guix-git/doc/guix.texi:15545 -#: guix-git/doc/guix.texi:15786 guix-git/doc/guix.texi:17314 -#: guix-git/doc/guix.texi:17935 guix-git/doc/guix.texi:18209 -#: guix-git/doc/guix.texi:21269 guix-git/doc/guix.texi:24179 -#: guix-git/doc/guix.texi:25568 guix-git/doc/guix.texi:26180 -#: guix-git/doc/guix.texi:26533 guix-git/doc/guix.texi:26574 -#: guix-git/doc/guix.texi:28735 guix-git/doc/guix.texi:31072 -#: guix-git/doc/guix.texi:31092 guix-git/doc/guix.texi:33766 -#: guix-git/doc/guix.texi:33783 guix-git/doc/guix.texi:34320 -#: guix-git/doc/guix.texi:36095 guix-git/doc/guix.texi:36422 +#: guix-git/doc/guix.texi:1296 guix-git/doc/guix.texi:7157 +#: guix-git/doc/guix.texi:15803 guix-git/doc/guix.texi:15902 +#: guix-git/doc/guix.texi:16143 guix-git/doc/guix.texi:17676 +#: guix-git/doc/guix.texi:18297 guix-git/doc/guix.texi:18571 +#: guix-git/doc/guix.texi:21631 guix-git/doc/guix.texi:24541 +#: guix-git/doc/guix.texi:25905 guix-git/doc/guix.texi:26517 +#: guix-git/doc/guix.texi:26870 guix-git/doc/guix.texi:26911 +#: guix-git/doc/guix.texi:29072 guix-git/doc/guix.texi:31437 +#: guix-git/doc/guix.texi:31457 guix-git/doc/guix.texi:34203 +#: guix-git/doc/guix.texi:34220 guix-git/doc/guix.texi:34759 +#: guix-git/doc/guix.texi:36585 guix-git/doc/guix.texi:36912 #, no-wrap msgid "name" msgstr "name" #. type: table -#: guix-git/doc/guix.texi:1281 +#: guix-git/doc/guix.texi:1298 msgid "The host name of the remote machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1282 +#: guix-git/doc/guix.texi:1299 #, no-wrap msgid "systems" -msgstr "" +msgstr "systémy" #. type: table -#: guix-git/doc/guix.texi:1285 +#: guix-git/doc/guix.texi:1302 msgid "The system types the remote machine supports---e.g., @code{(list \"x86_64-linux\" \"i686-linux\")}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1286 guix-git/doc/guix.texi:17945 +#: guix-git/doc/guix.texi:1303 guix-git/doc/guix.texi:18307 #, no-wrap msgid "user" -msgstr "" +msgstr "user" #. type: table -#: guix-git/doc/guix.texi:1290 +#: guix-git/doc/guix.texi:1307 msgid "The user account to use when connecting to the remote machine over SSH. Note that the SSH key pair must @emph{not} be passphrase-protected, to allow non-interactive logins." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1291 +#: guix-git/doc/guix.texi:1308 #, no-wrap msgid "host-key" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1295 +#: guix-git/doc/guix.texi:1312 msgid "This must be the machine's SSH @dfn{public host key} in OpenSSH format. This is used to authenticate the machine when we connect to it. It is a long string that looks like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1298 +#: guix-git/doc/guix.texi:1315 #, no-wrap msgid "ssh-ed25519 AAAAC3NzaC@dots{}mde+UhL hint@@example.org\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1303 +#: guix-git/doc/guix.texi:1320 msgid "If the machine is running the OpenSSH daemon, @command{sshd}, the host key can be found in a file such as @file{/etc/ssh/ssh_host_ed25519_key.pub}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1308 +#: guix-git/doc/guix.texi:1325 msgid "If the machine is running the SSH daemon of GNU@tie{}lsh, @command{lshd}, the host key is in @file{/etc/lsh/host-key.pub} or a similar file. It can be converted to the OpenSSH format using @command{lsh-export-key} (@pxref{Converting keys,,, lsh, LSH Manual}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1312 +#: guix-git/doc/guix.texi:1329 #, no-wrap msgid "" "$ lsh-export-key --openssh < /etc/lsh/host-key.pub\n" @@ -6157,674 +6213,674 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:1317 +#: guix-git/doc/guix.texi:1334 msgid "A number of optional fields may be specified:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1320 guix-git/doc/guix.texi:35581 +#: guix-git/doc/guix.texi:1337 guix-git/doc/guix.texi:36061 #, no-wrap msgid "@code{port} (default: @code{22})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1322 +#: guix-git/doc/guix.texi:1339 msgid "Port number of SSH server on the machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1323 +#: guix-git/doc/guix.texi:1340 #, no-wrap msgid "@code{private-key} (default: @file{~root/.ssh/id_rsa})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1326 +#: guix-git/doc/guix.texi:1343 msgid "The SSH private key file to use when connecting to the machine, in OpenSSH format. This key must not be protected with a passphrase." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1329 +#: guix-git/doc/guix.texi:1346 msgid "Note that the default value is the private key @emph{of the root account}. Make sure it exists if you use the default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1330 +#: guix-git/doc/guix.texi:1347 #, no-wrap msgid "@code{compression} (default: @code{\"zlib@@openssh.com,zlib\"})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:1331 +#: guix-git/doc/guix.texi:1348 #, no-wrap msgid "@code{compression-level} (default: @code{3})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1333 +#: guix-git/doc/guix.texi:1350 msgid "The SSH-level compression methods and compression level requested." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1336 +#: guix-git/doc/guix.texi:1353 msgid "Note that offloading relies on SSH compression to reduce bandwidth usage when transferring files to and from build machines." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1337 +#: guix-git/doc/guix.texi:1354 #, no-wrap msgid "@code{daemon-socket} (default: @code{\"/var/guix/daemon-socket/socket\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1340 +#: guix-git/doc/guix.texi:1357 msgid "File name of the Unix-domain socket @command{guix-daemon} is listening to on that machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1341 +#: guix-git/doc/guix.texi:1358 #, no-wrap msgid "@code{overload-threshold} (default: @code{0.6})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1347 +#: guix-git/doc/guix.texi:1364 msgid "The load threshold above which a potential offload machine is disregarded by the offload scheduler. The value roughly translates to the total processor usage of the build machine, ranging from 0.0 (0%) to 1.0 (100%). It can also be disabled by setting @code{overload-threshold} to @code{#f}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1348 +#: guix-git/doc/guix.texi:1365 #, no-wrap msgid "@code{parallel-builds} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1350 +#: guix-git/doc/guix.texi:1367 msgid "The number of builds that may run in parallel on the machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1351 +#: guix-git/doc/guix.texi:1368 #, no-wrap msgid "@code{speed} (default: @code{1.0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1354 +#: guix-git/doc/guix.texi:1371 msgid "A ``relative speed factor''. The offload scheduler will tend to prefer machines with a higher speed factor." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1355 +#: guix-git/doc/guix.texi:1372 #, no-wrap msgid "@code{features} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1360 +#: guix-git/doc/guix.texi:1377 msgid "A list of strings denoting specific features supported by the machine. An example is @code{\"kvm\"} for machines that have the KVM Linux modules and corresponding hardware support. Derivations can request features by name, and they will be scheduled on matching build machines." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1366 +#: guix-git/doc/guix.texi:1383 msgid "The @command{guix} command must be in the search path on the build machines. You can check whether this is the case by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1369 +#: guix-git/doc/guix.texi:1386 #, no-wrap msgid "ssh build-machine guix repl --version\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1376 +#: guix-git/doc/guix.texi:1393 msgid "There is one last thing to do once @file{machines.scm} is in place. As explained above, when offloading, files are transferred back and forth between the machine stores. For this to work, you first need to generate a key pair on each machine to allow the daemon to export signed archives of files from the store (@pxref{Invoking guix archive}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1379 guix-git/doc/guix.texi:35509 +#: guix-git/doc/guix.texi:1396 guix-git/doc/guix.texi:35965 #, no-wrap msgid "# guix archive --generate-key\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1384 +#: guix-git/doc/guix.texi:1401 msgid "Each build machine must authorize the key of the master machine so that it accepts store items it receives from the master:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1387 +#: guix-git/doc/guix.texi:1404 #, no-wrap msgid "# guix archive --authorize < master-public-key.txt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1391 +#: guix-git/doc/guix.texi:1408 msgid "Likewise, the master machine must authorize the key of each build machine." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1397 +#: guix-git/doc/guix.texi:1414 msgid "All the fuss with keys is here to express pairwise mutual trust relations between the master and the build machines. Concretely, when the master receives files from a build machine (and @i{vice versa}), its build daemon can make sure they are genuine, have not been tampered with, and that they are signed by an authorized key." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1398 +#: guix-git/doc/guix.texi:1415 #, no-wrap msgid "offload test" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1401 +#: guix-git/doc/guix.texi:1418 msgid "To test whether your setup is operational, run this command on the master node:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1404 +#: guix-git/doc/guix.texi:1421 #, no-wrap msgid "# guix offload test\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1410 +#: guix-git/doc/guix.texi:1427 msgid "This will attempt to connect to each of the build machines specified in @file{/etc/guix/machines.scm}, make sure Guix is available on each machine, attempt to export to the machine and import from it, and report any error in the process." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1413 +#: guix-git/doc/guix.texi:1430 msgid "If you want to test a different machine file, just specify it on the command line:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1416 +#: guix-git/doc/guix.texi:1433 #, no-wrap msgid "# guix offload test machines-qualif.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1420 +#: guix-git/doc/guix.texi:1437 msgid "Last, you can test the subset of the machines whose name matches a regular expression like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1423 +#: guix-git/doc/guix.texi:1440 #, no-wrap msgid "# guix offload test machines.scm '\\.gnu\\.org$'\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1425 +#: guix-git/doc/guix.texi:1442 #, no-wrap msgid "offload status" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1428 +#: guix-git/doc/guix.texi:1445 msgid "To display the current load of all build hosts, run this command on the main node:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1431 +#: guix-git/doc/guix.texi:1448 #, no-wrap msgid "# guix offload status\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1437 +#: guix-git/doc/guix.texi:1454 #, no-wrap msgid "SELinux, daemon policy" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1438 +#: guix-git/doc/guix.texi:1455 #, no-wrap msgid "mandatory access control, SELinux" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1439 +#: guix-git/doc/guix.texi:1456 #, no-wrap msgid "security, guix-daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1445 +#: guix-git/doc/guix.texi:1462 msgid "Guix includes an SELinux policy file at @file{etc/guix-daemon.cil} that can be installed on a system where SELinux is enabled, in order to label Guix files and to specify the expected behavior of the daemon. Since Guix System does not provide an SELinux base policy, the daemon policy cannot be used on Guix System." msgstr "" #. type: subsubsection -#: guix-git/doc/guix.texi:1446 +#: guix-git/doc/guix.texi:1463 #, no-wrap msgid "Installing the SELinux policy" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1447 +#: guix-git/doc/guix.texi:1464 #, no-wrap msgid "SELinux, policy installation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1449 +#: guix-git/doc/guix.texi:1466 msgid "To install the policy run this command as root:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1452 +#: guix-git/doc/guix.texi:1469 #, no-wrap msgid "semodule -i etc/guix-daemon.cil\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1456 +#: guix-git/doc/guix.texi:1473 msgid "Then relabel the file system with @code{restorecon} or by a different mechanism provided by your system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1461 +#: guix-git/doc/guix.texi:1478 msgid "Once the policy is installed, the file system has been relabeled, and the daemon has been restarted, it should be running in the @code{guix_daemon_t} context. You can confirm this with the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1464 +#: guix-git/doc/guix.texi:1481 #, no-wrap msgid "ps -Zax | grep guix-daemon\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1469 +#: guix-git/doc/guix.texi:1486 msgid "Monitor the SELinux log files as you run a command like @code{guix build hello} to convince yourself that SELinux permits all necessary operations." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1471 +#: guix-git/doc/guix.texi:1488 #, no-wrap msgid "SELinux, limitations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1476 +#: guix-git/doc/guix.texi:1493 msgid "This policy is not perfect. Here is a list of limitations or quirks that should be considered when deploying the provided SELinux policy for the Guix daemon." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1483 +#: guix-git/doc/guix.texi:1500 msgid "@code{guix_daemon_socket_t} isn’t actually used. None of the socket operations involve contexts that have anything to do with @code{guix_daemon_socket_t}. It doesn’t hurt to have this unused label, but it would be preferable to define socket rules for only this label." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1494 +#: guix-git/doc/guix.texi:1511 msgid "@code{guix gc} cannot access arbitrary links to profiles. By design, the file label of the destination of a symlink is independent of the file label of the link itself. Although all profiles under $localstatedir are labelled, the links to these profiles inherit the label of the directory they are in. For links in the user’s home directory this will be @code{user_home_t}. But for links from the root user’s home directory, or @file{/tmp}, or the HTTP server’s working directory, etc, this won’t work. @code{guix gc} would be prevented from reading and following these links." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1499 +#: guix-git/doc/guix.texi:1516 msgid "The daemon’s feature to listen for TCP connections might no longer work. This might require extra rules, because SELinux treats network sockets differently from files." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1510 +#: guix-git/doc/guix.texi:1527 msgid "Currently all files with a name matching the regular expression @code{/gnu/store/.+-(guix-.+|profile)/bin/guix-daemon} are assigned the label @code{guix_daemon_exec_t}; this means that @emph{any} file with that name in any profile would be permitted to run in the @code{guix_daemon_t} domain. This is not ideal. An attacker could build a package that provides this executable and convince a user to install and run it, which lifts it into the @code{guix_daemon_t} domain. At that point SELinux could not prevent it from accessing files that are allowed for processes in that domain." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1515 +#: guix-git/doc/guix.texi:1532 msgid "You will need to relabel the store directory after all upgrades to @file{guix-daemon}, such as after running @code{guix pull}. Assuming the store is in @file{/gnu}, you can do this with @code{restorecon -vR /gnu}, or by other means provided by your operating system." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1523 +#: guix-git/doc/guix.texi:1540 msgid "We could generate a much more restrictive policy at installation time, so that only the @emph{exact} file name of the currently installed @code{guix-daemon} executable would be labelled with @code{guix_daemon_exec_t}, instead of using a broad regular expression. The downside is that root would have to install or upgrade the policy at installation time whenever the Guix package that provides the effectively running @code{guix-daemon} executable is upgraded." msgstr "" #. type: section -#: guix-git/doc/guix.texi:1526 +#: guix-git/doc/guix.texi:1543 #, no-wrap msgid "Invoking @command{guix-daemon}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1532 +#: guix-git/doc/guix.texi:1549 msgid "The @command{guix-daemon} program implements all the functionality to access the store. This includes launching build processes, running the garbage collector, querying the availability of a build result, etc. It is normally run as @code{root} like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1539 +#: guix-git/doc/guix.texi:1556 msgid "For details on how to set it up, @pxref{Setting Up the Daemon}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1541 +#: guix-git/doc/guix.texi:1558 #, no-wrap msgid "container, build environment" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1543 guix-git/doc/guix.texi:3071 -#: guix-git/doc/guix.texi:3988 guix-git/doc/guix.texi:13753 +#: guix-git/doc/guix.texi:1560 guix-git/doc/guix.texi:3088 +#: guix-git/doc/guix.texi:4006 guix-git/doc/guix.texi:14110 #, no-wrap msgid "reproducible builds" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1555 +#: guix-git/doc/guix.texi:1572 msgid "By default, @command{guix-daemon} launches build processes under different UIDs, taken from the build group specified with @option{--build-users-group}. In addition, each build process is run in a chroot environment that only contains the subset of the store that the build process depends on, as specified by its derivation (@pxref{Programming Interface, derivation}), plus a set of specific system directories. By default, the latter contains @file{/dev} and @file{/dev/pts}. Furthermore, on GNU/Linux, the build environment is a @dfn{container}: in addition to having its own file system tree, it has a separate mount name space, its own PID name space, network name space, etc. This helps achieve reproducible builds (@pxref{Features})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1561 +#: guix-git/doc/guix.texi:1578 msgid "When the daemon performs a build on behalf of the user, it creates a build directory under @file{/tmp} or under the directory specified by its @env{TMPDIR} environment variable. This directory is shared with the container for the duration of the build, though within the container, the build tree is always called @file{/tmp/guix-build-@var{name}.drv-0}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1565 +#: guix-git/doc/guix.texi:1582 msgid "The build directory is automatically deleted upon completion, unless the build failed and the client specified @option{--keep-failed} (@pxref{Common Build Options, @option{--keep-failed}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1571 +#: guix-git/doc/guix.texi:1588 msgid "The daemon listens for connections and spawns one sub-process for each session started by a client (one of the @command{guix} sub-commands). The @command{guix processes} command allows you to get an overview of the activity on your system by viewing each of the active sessions and clients. @xref{Invoking guix processes}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1573 +#: guix-git/doc/guix.texi:1590 msgid "The following command-line options are supported:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1575 +#: guix-git/doc/guix.texi:1592 #, no-wrap msgid "--build-users-group=@var{group}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1578 +#: guix-git/doc/guix.texi:1595 msgid "Take users from @var{group} to run build processes (@pxref{Setting Up the Daemon, build users})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1579 guix-git/doc/guix.texi:10915 +#: guix-git/doc/guix.texi:1596 guix-git/doc/guix.texi:11229 #, no-wrap msgid "--no-substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1580 guix-git/doc/guix.texi:3083 -#: guix-git/doc/guix.texi:3741 +#: guix-git/doc/guix.texi:1597 guix-git/doc/guix.texi:3100 +#: guix-git/doc/guix.texi:3759 #, no-wrap msgid "substitutes" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1584 guix-git/doc/guix.texi:10919 +#: guix-git/doc/guix.texi:1601 guix-git/doc/guix.texi:11233 msgid "Do not use substitutes for build products. That is, always build things locally instead of allowing downloads of pre-built binaries (@pxref{Substitutes})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1588 +#: guix-git/doc/guix.texi:1605 msgid "When the daemon runs with @option{--no-substitutes}, clients can still explicitly enable substitution @i{via} the @code{set-build-options} remote procedure call (@pxref{The Store})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:1590 +#: guix-git/doc/guix.texi:1607 msgid "daemon-substitute-urls" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1590 guix-git/doc/guix.texi:10902 -#: guix-git/doc/guix.texi:13160 guix-git/doc/guix.texi:13899 -#: guix-git/doc/guix.texi:14124 +#: guix-git/doc/guix.texi:1607 guix-git/doc/guix.texi:11216 +#: guix-git/doc/guix.texi:13517 guix-git/doc/guix.texi:14256 +#: guix-git/doc/guix.texi:14481 #, no-wrap msgid "--substitute-urls=@var{urls}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1594 +#: guix-git/doc/guix.texi:1611 msgid "Consider @var{urls} the default whitespace-separated list of substitute source URLs. When this option is omitted, @indicateurl{@value{SUBSTITUTE-URLS}} is used." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1597 +#: guix-git/doc/guix.texi:1614 msgid "This means that substitutes may be downloaded from @var{urls}, as long as they are signed by a trusted signature (@pxref{Substitutes})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1600 +#: guix-git/doc/guix.texi:1617 msgid "@xref{Getting Substitutes from Other Servers}, for more information on how to configure the daemon to get substitutes from other servers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1602 guix-git/doc/guix.texi:10938 +#: guix-git/doc/guix.texi:1619 guix-git/doc/guix.texi:11252 #, no-wrap msgid "--no-offload" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1606 guix-git/doc/guix.texi:10942 +#: guix-git/doc/guix.texi:1623 guix-git/doc/guix.texi:11256 msgid "Do not use offload builds to other machines (@pxref{Daemon Offload Setup}). That is, always build things locally instead of offloading builds to remote machines." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1607 +#: guix-git/doc/guix.texi:1624 #, no-wrap msgid "--cache-failures" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1609 +#: guix-git/doc/guix.texi:1626 msgid "Cache build failures. By default, only successful builds are cached." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1614 +#: guix-git/doc/guix.texi:1631 msgid "When this option is used, @command{guix gc --list-failures} can be used to query the set of store items marked as failed; @command{guix gc --clear-failures} removes store items from the set of cached failures. @xref{Invoking guix gc}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1615 guix-git/doc/guix.texi:10968 +#: guix-git/doc/guix.texi:1632 guix-git/doc/guix.texi:11282 #, no-wrap msgid "--cores=@var{n}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:1616 guix-git/doc/guix.texi:10969 +#: guix-git/doc/guix.texi:1633 guix-git/doc/guix.texi:11283 #, no-wrap msgid "-c @var{n}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1619 +#: guix-git/doc/guix.texi:1636 msgid "Use @var{n} CPU cores to build each derivation; @code{0} means as many as available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1623 +#: guix-git/doc/guix.texi:1640 msgid "The default value is @code{0}, but it may be overridden by clients, such as the @option{--cores} option of @command{guix build} (@pxref{Invoking guix build})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1627 +#: guix-git/doc/guix.texi:1644 msgid "The effect is to define the @env{NIX_BUILD_CORES} environment variable in the build process, which can then use it to exploit internal parallelism---for instance, by running @code{make -j$NIX_BUILD_CORES}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1628 guix-git/doc/guix.texi:10973 +#: guix-git/doc/guix.texi:1645 guix-git/doc/guix.texi:11287 #, no-wrap msgid "--max-jobs=@var{n}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:1629 guix-git/doc/guix.texi:10974 +#: guix-git/doc/guix.texi:1646 guix-git/doc/guix.texi:11288 #, no-wrap msgid "-M @var{n}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1634 +#: guix-git/doc/guix.texi:1651 msgid "Allow at most @var{n} build jobs in parallel. The default value is @code{1}. Setting it to @code{0} means that no builds will be performed locally; instead, the daemon will offload builds (@pxref{Daemon Offload Setup}), or simply fail." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1635 guix-git/doc/guix.texi:10943 +#: guix-git/doc/guix.texi:1652 guix-git/doc/guix.texi:11257 #, no-wrap msgid "--max-silent-time=@var{seconds}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1638 guix-git/doc/guix.texi:10946 +#: guix-git/doc/guix.texi:1655 guix-git/doc/guix.texi:11260 msgid "When the build or substitution process remains silent for more than @var{seconds}, terminate it and report a build failure." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1640 guix-git/doc/guix.texi:1649 +#: guix-git/doc/guix.texi:1657 guix-git/doc/guix.texi:1666 msgid "The default value is @code{0}, which disables the timeout." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1643 +#: guix-git/doc/guix.texi:1660 msgid "The value specified here can be overridden by clients (@pxref{Common Build Options, @option{--max-silent-time}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1644 guix-git/doc/guix.texi:10950 +#: guix-git/doc/guix.texi:1661 guix-git/doc/guix.texi:11264 #, no-wrap msgid "--timeout=@var{seconds}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1647 guix-git/doc/guix.texi:10953 +#: guix-git/doc/guix.texi:1664 guix-git/doc/guix.texi:11267 msgid "Likewise, when the build or substitution process lasts for more than @var{seconds}, terminate it and report a build failure." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1652 +#: guix-git/doc/guix.texi:1669 msgid "The value specified here can be overridden by clients (@pxref{Common Build Options, @option{--timeout}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1653 +#: guix-git/doc/guix.texi:1670 #, no-wrap msgid "--rounds=@var{N}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1658 +#: guix-git/doc/guix.texi:1675 msgid "Build each derivation @var{n} times in a row, and raise an error if consecutive build results are not bit-for-bit identical. Note that this setting can be overridden by clients such as @command{guix build} (@pxref{Invoking guix build})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1662 guix-git/doc/guix.texi:10937 -#: guix-git/doc/guix.texi:11561 +#: guix-git/doc/guix.texi:1679 guix-git/doc/guix.texi:11251 +#: guix-git/doc/guix.texi:11875 msgid "When used in conjunction with @option{--keep-failed}, the differing output is kept in the store, under @file{/gnu/store/@dots{}-check}. This makes it easy to look for differences between the two results." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1663 +#: guix-git/doc/guix.texi:1680 #, no-wrap msgid "--debug" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1665 +#: guix-git/doc/guix.texi:1682 msgid "Produce debugging output." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1669 +#: guix-git/doc/guix.texi:1686 msgid "This is useful to debug daemon start-up issues, but then it may be overridden by clients, for example the @option{--verbosity} option of @command{guix build} (@pxref{Invoking guix build})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1670 +#: guix-git/doc/guix.texi:1687 #, no-wrap msgid "--chroot-directory=@var{dir}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1672 +#: guix-git/doc/guix.texi:1689 msgid "Add @var{dir} to the build chroot." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1678 +#: guix-git/doc/guix.texi:1695 msgid "Doing this may change the result of build processes---for instance if they use optional dependencies found in @var{dir} when it is available, and not otherwise. For that reason, it is not recommended to do so. Instead, make sure that each derivation declares all the inputs that it needs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1679 +#: guix-git/doc/guix.texi:1696 #, no-wrap msgid "--disable-chroot" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1681 +#: guix-git/doc/guix.texi:1698 msgid "Disable chroot builds." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1686 +#: guix-git/doc/guix.texi:1703 msgid "Using this option is not recommended since, again, it would allow build processes to gain access to undeclared dependencies. It is necessary, though, when @command{guix-daemon} is running under an unprivileged user account." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1687 +#: guix-git/doc/guix.texi:1704 #, no-wrap msgid "--log-compression=@var{type}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1690 +#: guix-git/doc/guix.texi:1707 msgid "Compress build logs according to @var{type}, one of @code{gzip}, @code{bzip2}, or @code{none}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1694 -msgid "Unless @option{--lose-logs} is used, all the build logs are kept in the @var{localstatedir}. To save space, the daemon automatically compresses them with Bzip2 by default." +#: guix-git/doc/guix.texi:1711 +msgid "Unless @option{--lose-logs} is used, all the build logs are kept in the @var{localstatedir}. To save space, the daemon automatically compresses them with gzip by default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1695 +#: guix-git/doc/guix.texi:1712 #, no-wrap msgid "--discover[=yes|no]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1698 guix-git/doc/guix.texi:16563 +#: guix-git/doc/guix.texi:1715 guix-git/doc/guix.texi:16920 msgid "Whether to discover substitute servers on the local network using mDNS and DNS-SD." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1701 +#: guix-git/doc/guix.texi:1718 msgid "This feature is still experimental. However, here are a few considerations." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1705 +#: guix-git/doc/guix.texi:1722 msgid "It might be faster/less expensive than fetching from remote servers;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1708 +#: guix-git/doc/guix.texi:1725 msgid "There are no security risks, only genuine substitutes will be used (@pxref{Substitute Authentication});" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1712 +#: guix-git/doc/guix.texi:1729 msgid "An attacker advertising @command{guix publish} on your LAN cannot serve you malicious binaries, but they can learn what software you’re installing;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1715 +#: guix-git/doc/guix.texi:1732 msgid "Servers may serve substitute over HTTP, unencrypted, so anyone on the LAN can see what software you’re installing." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1719 +#: guix-git/doc/guix.texi:1736 msgid "It is also possible to enable or disable substitute server discovery at run-time by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1723 +#: guix-git/doc/guix.texi:1740 #, no-wrap msgid "" "herd discover guix-daemon on\n" @@ -6832,237 +6888,237 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1725 +#: guix-git/doc/guix.texi:1742 #, no-wrap msgid "--disable-deduplication" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1726 guix-git/doc/guix.texi:4326 +#: guix-git/doc/guix.texi:1743 guix-git/doc/guix.texi:4344 #, no-wrap msgid "deduplication" -msgstr "" +msgstr "deduplikácia" #. type: table -#: guix-git/doc/guix.texi:1728 +#: guix-git/doc/guix.texi:1745 msgid "Disable automatic file ``deduplication'' in the store." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1735 +#: guix-git/doc/guix.texi:1752 msgid "By default, files added to the store are automatically ``deduplicated'': if a newly added file is identical to another one found in the store, the daemon makes the new file a hard link to the other file. This can noticeably reduce disk usage, at the expense of slightly increased input/output load at the end of a build process. This option disables this optimization." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1736 +#: guix-git/doc/guix.texi:1753 #, no-wrap msgid "--gc-keep-outputs[=yes|no]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1739 +#: guix-git/doc/guix.texi:1756 msgid "Tell whether the garbage collector (GC) must keep outputs of live derivations." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1740 guix-git/doc/guix.texi:4139 +#: guix-git/doc/guix.texi:1757 guix-git/doc/guix.texi:4157 #, no-wrap msgid "GC roots" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1741 guix-git/doc/guix.texi:4140 +#: guix-git/doc/guix.texi:1758 guix-git/doc/guix.texi:4158 #, no-wrap msgid "garbage collector roots" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1747 +#: guix-git/doc/guix.texi:1764 msgid "When set to @code{yes}, the GC will keep the outputs of any live derivation available in the store---the @file{.drv} files. The default is @code{no}, meaning that derivation outputs are kept only if they are reachable from a GC root. @xref{Invoking guix gc}, for more on GC roots." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1748 +#: guix-git/doc/guix.texi:1765 #, no-wrap msgid "--gc-keep-derivations[=yes|no]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1751 +#: guix-git/doc/guix.texi:1768 msgid "Tell whether the garbage collector (GC) must keep derivations corresponding to live outputs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1757 +#: guix-git/doc/guix.texi:1774 msgid "When set to @code{yes}, as is the case by default, the GC keeps derivations---i.e., @file{.drv} files---as long as at least one of their outputs is live. This allows users to keep track of the origins of items in their store. Setting it to @code{no} saves a bit of disk space." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1766 +#: guix-git/doc/guix.texi:1783 msgid "In this way, setting @option{--gc-keep-derivations} to @code{yes} causes liveness to flow from outputs to derivations, and setting @option{--gc-keep-outputs} to @code{yes} causes liveness to flow from derivations to outputs. When both are set to @code{yes}, the effect is to keep all the build prerequisites (the sources, compiler, libraries, and other build-time tools) of live objects in the store, regardless of whether these prerequisites are reachable from a GC root. This is convenient for developers since it saves rebuilds or downloads." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1767 +#: guix-git/doc/guix.texi:1784 #, no-wrap msgid "--impersonate-linux-2.6" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1770 +#: guix-git/doc/guix.texi:1787 msgid "On Linux-based systems, impersonate Linux 2.6. This means that the kernel's @command{uname} system call will report 2.6 as the release number." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1773 +#: guix-git/doc/guix.texi:1790 msgid "This might be helpful to build programs that (usually wrongfully) depend on the kernel version number." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1774 +#: guix-git/doc/guix.texi:1791 #, no-wrap msgid "--lose-logs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1777 +#: guix-git/doc/guix.texi:1794 msgid "Do not keep build logs. By default they are kept under @file{@var{localstatedir}/guix/log}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1778 guix-git/doc/guix.texi:4567 -#: guix-git/doc/guix.texi:5846 guix-git/doc/guix.texi:6229 -#: guix-git/doc/guix.texi:6629 guix-git/doc/guix.texi:11505 -#: guix-git/doc/guix.texi:13187 guix-git/doc/guix.texi:13452 -#: guix-git/doc/guix.texi:14129 guix-git/doc/guix.texi:34442 -#: guix-git/doc/guix.texi:35251 +#: guix-git/doc/guix.texi:1795 guix-git/doc/guix.texi:4585 +#: guix-git/doc/guix.texi:5859 guix-git/doc/guix.texi:6272 +#: guix-git/doc/guix.texi:6672 guix-git/doc/guix.texi:11819 +#: guix-git/doc/guix.texi:13544 guix-git/doc/guix.texi:13809 +#: guix-git/doc/guix.texi:14486 guix-git/doc/guix.texi:34881 +#: guix-git/doc/guix.texi:35695 #, no-wrap msgid "--system=@var{system}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1782 +#: guix-git/doc/guix.texi:1799 msgid "Assume @var{system} as the current system type. By default it is the architecture/kernel pair found at configure time, such as @code{x86_64-linux}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1783 guix-git/doc/guix.texi:10747 +#: guix-git/doc/guix.texi:1800 guix-git/doc/guix.texi:11061 #, no-wrap msgid "--listen=@var{endpoint}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1788 +#: guix-git/doc/guix.texi:1805 msgid "Listen for connections on @var{endpoint}. @var{endpoint} is interpreted as the file name of a Unix-domain socket if it starts with @code{/} (slash sign). Otherwise, @var{endpoint} is interpreted as a host name or host name and port to listen to. Here are a few examples:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1790 +#: guix-git/doc/guix.texi:1807 #, no-wrap msgid "--listen=/gnu/var/daemon" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1793 +#: guix-git/doc/guix.texi:1810 msgid "Listen for connections on the @file{/gnu/var/daemon} Unix-domain socket, creating it if needed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1794 +#: guix-git/doc/guix.texi:1811 #, no-wrap msgid "--listen=localhost" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1795 guix-git/doc/guix.texi:9421 +#: guix-git/doc/guix.texi:1812 guix-git/doc/guix.texi:9735 #, no-wrap msgid "daemon, remote access" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1796 guix-git/doc/guix.texi:9422 +#: guix-git/doc/guix.texi:1813 guix-git/doc/guix.texi:9736 #, no-wrap msgid "remote access to the daemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1797 guix-git/doc/guix.texi:9423 +#: guix-git/doc/guix.texi:1814 guix-git/doc/guix.texi:9737 #, no-wrap msgid "daemon, cluster setup" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1798 guix-git/doc/guix.texi:9424 +#: guix-git/doc/guix.texi:1815 guix-git/doc/guix.texi:9738 #, no-wrap msgid "clusters, daemon setup" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1801 +#: guix-git/doc/guix.texi:1818 msgid "Listen for TCP connections on the network interface corresponding to @code{localhost}, on port 44146." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1802 +#: guix-git/doc/guix.texi:1819 #, no-wrap msgid "--listen=128.0.0.42:1234" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1805 +#: guix-git/doc/guix.texi:1822 msgid "Listen for TCP connections on the network interface corresponding to @code{128.0.0.42}, on port 1234." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1812 +#: guix-git/doc/guix.texi:1829 msgid "This option can be repeated multiple times, in which case @command{guix-daemon} accepts connections on all the specified endpoints. Users can tell client commands what endpoint to connect to by setting the @env{GUIX_DAEMON_SOCKET} environment variable (@pxref{The Store, @env{GUIX_DAEMON_SOCKET}})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:1819 +#: guix-git/doc/guix.texi:1836 msgid "The daemon protocol is @emph{unauthenticated and unencrypted}. Using @option{--listen=@var{host}} is suitable on local networks, such as clusters, where only trusted nodes may connect to the build daemon. In other cases where remote access to the daemon is needed, we recommend using Unix-domain sockets along with SSH." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1824 +#: guix-git/doc/guix.texi:1841 msgid "When @option{--listen} is omitted, @command{guix-daemon} listens for connections on the Unix-domain socket located at @file{@var{localstatedir}/guix/daemon-socket/socket}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1834 +#: guix-git/doc/guix.texi:1851 msgid "When using Guix on top of GNU/Linux distribution other than Guix System---a so-called @dfn{foreign distro}---a few additional steps are needed to get everything in place. Here are some of them." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:1838 +#: guix-git/doc/guix.texi:1855 msgid "locales-and-locpath" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1838 +#: guix-git/doc/guix.texi:1855 #, no-wrap msgid "locales, when not on Guix System" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:1839 guix-git/doc/guix.texi:15770 +#: guix-git/doc/guix.texi:1856 guix-git/doc/guix.texi:16127 #, no-wrap msgid "LOCPATH" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:1840 +#: guix-git/doc/guix.texi:1857 #, no-wrap msgid "GUIX_LOCPATH" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1845 +#: guix-git/doc/guix.texi:1862 msgid "Packages installed @i{via} Guix will not use the locale data of the host system. Instead, you must first install one of the locale packages available with Guix and then define the @env{GUIX_LOCPATH} environment variable:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1849 +#: guix-git/doc/guix.texi:1866 #, no-wrap msgid "" "$ guix install glibc-locales\n" @@ -7070,132 +7126,132 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1855 +#: guix-git/doc/guix.texi:1872 msgid "Note that the @code{glibc-locales} package contains data for all the locales supported by the GNU@tie{}libc and weighs in at around 917@tie{}MiB@. Alternatively, the @code{glibc-utf8-locales} is smaller but limited to a few UTF-8 locales." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1859 +#: guix-git/doc/guix.texi:1876 msgid "The @env{GUIX_LOCPATH} variable plays a role similar to @env{LOCPATH} (@pxref{Locale Names, @env{LOCPATH},, libc, The GNU C Library Reference Manual}). There are two important differences though:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1866 +#: guix-git/doc/guix.texi:1883 msgid "@env{GUIX_LOCPATH} is honored only by the libc in Guix, and not by the libc provided by foreign distros. Thus, using @env{GUIX_LOCPATH} allows you to make sure the programs of the foreign distro will not end up loading incompatible locale data." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1873 +#: guix-git/doc/guix.texi:1890 msgid "libc suffixes each entry of @env{GUIX_LOCPATH} with @code{/X.Y}, where @code{X.Y} is the libc version---e.g., @code{2.22}. This means that, should your Guix profile contain a mixture of programs linked against different libc version, each libc version will only try to load locale data in the right format." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1877 +#: guix-git/doc/guix.texi:1894 msgid "This is important because the locale data format used by different libc versions may be incompatible." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1880 +#: guix-git/doc/guix.texi:1897 #, no-wrap msgid "name service switch, glibc" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1881 +#: guix-git/doc/guix.texi:1898 #, no-wrap msgid "NSS (name service switch), glibc" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1882 +#: guix-git/doc/guix.texi:1899 #, no-wrap msgid "nscd (name service caching daemon)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1883 +#: guix-git/doc/guix.texi:1900 #, no-wrap msgid "name service caching daemon (nscd)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1890 +#: guix-git/doc/guix.texi:1907 msgid "When using Guix on a foreign distro, we @emph{strongly recommend} that the system run the GNU C library's @dfn{name service cache daemon}, @command{nscd}, which should be listening on the @file{/var/run/nscd/socket} socket. Failing to do that, applications installed with Guix may fail to look up host names or user accounts, or may even crash. The next paragraphs explain why." msgstr "" #. type: file{#1} -#: guix-git/doc/guix.texi:1891 +#: guix-git/doc/guix.texi:1908 #, no-wrap msgid "nsswitch.conf" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1896 +#: guix-git/doc/guix.texi:1913 msgid "The GNU C library implements a @dfn{name service switch} (NSS), which is an extensible mechanism for ``name lookups'' in general: host name resolution, user accounts, and more (@pxref{Name Service Switch,,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1897 +#: guix-git/doc/guix.texi:1914 #, no-wrap msgid "Network information service (NIS)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1898 +#: guix-git/doc/guix.texi:1915 #, no-wrap msgid "NIS (Network information service)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1907 +#: guix-git/doc/guix.texi:1924 msgid "Being extensible, the NSS supports @dfn{plugins}, which provide new name lookup implementations: for example, the @code{nss-mdns} plugin allow resolution of @code{.local} host names, the @code{nis} plugin allows user account lookup using the Network information service (NIS), and so on. These extra ``lookup services'' are configured system-wide in @file{/etc/nsswitch.conf}, and all the programs running on the system honor those settings (@pxref{NSS Configuration File,,, libc, The GNU C Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1917 +#: guix-git/doc/guix.texi:1934 msgid "When they perform a name lookup---for instance by calling the @code{getaddrinfo} function in C---applications first try to connect to the nscd; on success, nscd performs name lookups on their behalf. If the nscd is not running, then they perform the name lookup by themselves, by loading the name lookup services into their own address space and running it. These name lookup services---the @file{libnss_*.so} files---are @code{dlopen}'d, but they may come from the host system's C library, rather than from the C library the application is linked against (the C library coming from Guix)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1922 +#: guix-git/doc/guix.texi:1939 msgid "And this is where the problem is: if your application is linked against Guix's C library (say, glibc 2.24) and tries to load NSS plugins from another C library (say, @code{libnss_mdns.so} for glibc 2.22), it will likely crash or have its name lookups fail unexpectedly." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1927 +#: guix-git/doc/guix.texi:1944 msgid "Running @command{nscd} on the system, among other advantages, eliminates this binary incompatibility problem because those @code{libnss_*.so} files are loaded in the @command{nscd} process, not in applications themselves." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:1928 +#: guix-git/doc/guix.texi:1945 #, no-wrap msgid "X11 Fonts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1938 +#: guix-git/doc/guix.texi:1955 msgid "The majority of graphical applications use Fontconfig to locate and load fonts and perform X11-client-side rendering. The @code{fontconfig} package in Guix looks for fonts in @file{$HOME/.guix-profile} by default. Thus, to allow graphical applications installed with Guix to display fonts, you have to install fonts with Guix as well. Essential font packages include @code{font-ghostscript}, @code{font-dejavu}, and @code{font-gnu-freefont}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1939 +#: guix-git/doc/guix.texi:1956 #, no-wrap msgid "fc-cache" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1940 +#: guix-git/doc/guix.texi:1957 #, no-wrap msgid "font cache" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1944 +#: guix-git/doc/guix.texi:1961 msgid "Once you have installed or removed fonts, or when you notice an application that does not find fonts, you may need to install Fontconfig and to force an update of its font cache by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1948 +#: guix-git/doc/guix.texi:1965 #, no-wrap msgid "" "guix install fontconfig\n" @@ -7203,266 +7259,266 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1956 +#: guix-git/doc/guix.texi:1973 msgid "To display text written in Chinese languages, Japanese, or Korean in graphical applications, consider installing @code{font-adobe-source-han-sans} or @code{font-wqy-zenhei}. The former has multiple outputs, one per language family (@pxref{Packages with Multiple Outputs}). For instance, the following command installs fonts for Chinese languages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1959 +#: guix-git/doc/guix.texi:1976 #, no-wrap msgid "guix install font-adobe-source-han-sans:cn\n" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1961 +#: guix-git/doc/guix.texi:1978 #, no-wrap msgid "xterm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1965 +#: guix-git/doc/guix.texi:1982 msgid "Older programs such as @command{xterm} do not use Fontconfig and instead rely on server-side font rendering. Such programs require to specify a full name of a font using XLFD (X Logical Font Description), like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1968 +#: guix-git/doc/guix.texi:1985 #, no-wrap msgid "-*-dejavu sans-medium-r-normal-*-*-100-*-*-*-*-*-1\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1972 +#: guix-git/doc/guix.texi:1989 msgid "To be able to use such full names for the TrueType fonts installed in your Guix profile, you need to extend the font path of the X server:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1977 +#: guix-git/doc/guix.texi:1994 #, no-wrap msgid "xset +fp $(dirname $(readlink -f ~/.guix-profile/share/fonts/truetype/fonts.dir))\n" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1979 +#: guix-git/doc/guix.texi:1996 #, no-wrap msgid "xlsfonts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1982 +#: guix-git/doc/guix.texi:1999 msgid "After that, you can run @code{xlsfonts} (from @code{xlsfonts} package) to make sure your TrueType fonts are listed there." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1986 guix-git/doc/guix.texi:34161 +#: guix-git/doc/guix.texi:2003 guix-git/doc/guix.texi:34600 #, no-wrap msgid "nss-certs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1989 +#: guix-git/doc/guix.texi:2006 msgid "The @code{nss-certs} package provides X.509 certificates, which allow programs to authenticate Web servers accessed over HTTPS." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1994 +#: guix-git/doc/guix.texi:2011 msgid "When using Guix on a foreign distro, you can install this package and define the relevant environment variables so that packages know where to look for certificates. @xref{X.509 Certificates}, for detailed information." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1997 +#: guix-git/doc/guix.texi:2014 #, no-wrap msgid "emacs" -msgstr "" +msgstr "emacs" #. type: Plain text -#: guix-git/doc/guix.texi:2003 +#: guix-git/doc/guix.texi:2020 msgid "When you install Emacs packages with Guix, the Elisp files are placed under the @file{share/emacs/site-lisp/} directory of the profile in which they are installed. The Elisp libraries are made available to Emacs through the @env{EMACSLOADPATH} environment variable, which is set when installing Emacs itself." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2010 +#: guix-git/doc/guix.texi:2027 msgid "Additionally, autoload definitions are automatically evaluated at the initialization of Emacs, by the Guix-specific @code{guix-emacs-autoload-packages} procedure. If, for some reason, you want to avoid auto-loading the Emacs packages installed with Guix, you can do so by running Emacs with the @option{--no-site-file} option (@pxref{Init File,,, emacs, The GNU Emacs Manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2015 +#: guix-git/doc/guix.texi:2032 #, no-wrap msgid "Upgrading Guix, on a foreign distro" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2018 +#: guix-git/doc/guix.texi:2035 msgid "To upgrade Guix, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2021 guix-git/doc/guix.texi:2879 +#: guix-git/doc/guix.texi:2038 guix-git/doc/guix.texi:2896 #, no-wrap msgid "guix pull\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2024 +#: guix-git/doc/guix.texi:2041 msgid "@xref{Invoking guix pull}, for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2025 +#: guix-git/doc/guix.texi:2042 #, no-wrap msgid "upgrading Guix for the root user, on a foreign distro" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2026 +#: guix-git/doc/guix.texi:2043 #, no-wrap msgid "upgrading the Guix daemon, on a foreign distro" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2027 +#: guix-git/doc/guix.texi:2044 #, no-wrap msgid "@command{guix pull} for the root user, on a foreign distro" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2030 +#: guix-git/doc/guix.texi:2047 msgid "On a foreign distro, you can upgrade the build daemon by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2033 +#: guix-git/doc/guix.texi:2050 #, no-wrap msgid "sudo -i guix pull\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2038 +#: guix-git/doc/guix.texi:2055 msgid "followed by (assuming your distro uses the systemd service management tool):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2041 +#: guix-git/doc/guix.texi:2058 #, no-wrap msgid "systemctl restart guix-daemon.service\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2045 +#: guix-git/doc/guix.texi:2062 msgid "On Guix System, upgrading the daemon is achieved by reconfiguring the system (@pxref{Invoking guix system, @code{guix system reconfigure}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2052 +#: guix-git/doc/guix.texi:2069 #, no-wrap msgid "installing Guix System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2053 +#: guix-git/doc/guix.texi:2070 #, no-wrap msgid "Guix System, installation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2058 +#: guix-git/doc/guix.texi:2075 msgid "This section explains how to install Guix System on a machine. Guix, as a package manager, can also be installed on top of a running GNU/Linux system, @pxref{Installation}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2067 +#: guix-git/doc/guix.texi:2084 msgid "You are reading this documentation with an Info reader. For details on how to use it, hit the @key{RET} key (``return'' or ``enter'') on the link that follows: @pxref{Top, Info reader,, info-stnd, Stand-alone GNU Info}. Hit @kbd{l} afterwards to come back here." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2070 +#: guix-git/doc/guix.texi:2087 msgid "Alternatively, run @command{info info} in another tty to keep the manual available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2091 +#: guix-git/doc/guix.texi:2108 msgid "We consider Guix System to be ready for a wide range of ``desktop'' and server use cases. The reliability guarantees it provides---transactional upgrades and rollbacks, reproducibility---make it a solid foundation." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2094 +#: guix-git/doc/guix.texi:2111 msgid "Nevertheless, before you proceed with the installation, be aware of the following noteworthy limitations applicable to version @value{VERSION}:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2099 +#: guix-git/doc/guix.texi:2116 msgid "More and more system services are provided (@pxref{Services}), but some may be missing." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2104 +#: guix-git/doc/guix.texi:2121 msgid "GNOME, Xfce, LXDE, and Enlightenment are available (@pxref{Desktop Services}), as well as a number of X11 window managers. However, KDE is currently missing." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2109 +#: guix-git/doc/guix.texi:2126 msgid "More than a disclaimer, this is an invitation to report issues (and success stories!), and to join us in improving it. @xref{Contributing}, for more info." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2114 +#: guix-git/doc/guix.texi:2131 #, no-wrap msgid "hardware support on Guix System" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2123 +#: guix-git/doc/guix.texi:2140 msgid "GNU@tie{}Guix focuses on respecting the user's computing freedom. It builds around the kernel Linux-libre, which means that only hardware for which free software drivers and firmware exist is supported. Nowadays, a wide range of off-the-shelf hardware is supported on GNU/Linux-libre---from keyboards to graphics cards to scanners and Ethernet controllers. Unfortunately, there are still areas where hardware vendors deny users control over their own computing, and such hardware is not supported on Guix System." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2124 +#: guix-git/doc/guix.texi:2141 #, no-wrap msgid "WiFi, hardware support" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2133 +#: guix-git/doc/guix.texi:2150 msgid "One of the main areas where free drivers or firmware are lacking is WiFi devices. WiFi devices known to work include those using Atheros chips (AR9271 and AR7010), which corresponds to the @code{ath9k} Linux-libre driver, and those using Broadcom/AirForce chips (BCM43xx with Wireless-Core Revision 5), which corresponds to the @code{b43-open} Linux-libre driver. Free firmware exists for both and is available out-of-the-box on Guix System, as part of @code{%base-firmware} (@pxref{operating-system Reference, @code{firmware}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2134 +#: guix-git/doc/guix.texi:2151 #, no-wrap msgid "RYF, Respects Your Freedom" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2140 +#: guix-git/doc/guix.texi:2157 msgid "The @uref{https://www.fsf.org/, Free Software Foundation} runs @uref{https://www.fsf.org/ryf, @dfn{Respects Your Freedom}} (RYF), a certification program for hardware products that respect your freedom and your privacy and ensure that you have control over your device. We encourage you to check the list of RYF-certified devices." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2144 +#: guix-git/doc/guix.texi:2161 msgid "Another useful resource is the @uref{https://www.h-node.org/, H-Node} web site. It contains a catalog of hardware devices with information about their support in GNU/Linux." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2153 +#: guix-git/doc/guix.texi:2170 msgid "An ISO-9660 installation image that can be written to a USB stick or burnt to a DVD can be downloaded from @indicateurl{@value{BASE-URL}/guix-system-install-@value{VERSION}.x86_64-linux.iso}, where you can replace @code{x86_64-linux} with one of:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2157 +#: guix-git/doc/guix.texi:2174 msgid "for a GNU/Linux system on Intel/AMD-compatible 64-bit CPUs;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2160 +#: guix-git/doc/guix.texi:2177 msgid "for a 32-bit GNU/Linux system on Intel-compatible CPUs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2165 +#: guix-git/doc/guix.texi:2182 msgid "Make sure to download the associated @file{.sig} file and to verify the authenticity of the image against it, along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2169 +#: guix-git/doc/guix.texi:2186 #, no-wrap msgid "" "$ wget @value{BASE-URL}/guix-system-install-@value{VERSION}.x86_64-linux.iso.sig\n" @@ -7470,7 +7526,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2177 +#: guix-git/doc/guix.texi:2194 #, no-wrap msgid "" "$ wget @value{OPENPGP-SIGNING-KEY-URL} \\\n" @@ -7478,23 +7534,23 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2189 +#: guix-git/doc/guix.texi:2206 msgid "This image contains the tools necessary for an installation. It is meant to be copied @emph{as is} to a large-enough USB stick or DVD." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2190 +#: guix-git/doc/guix.texi:2207 #, no-wrap msgid "Copying to a USB Stick" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2195 +#: guix-git/doc/guix.texi:2212 msgid "Insert a USB stick of 1@tie{}GiB or more into your machine, and determine its device name. Assuming that the USB stick is known as @file{/dev/sdX}, copy the image with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2199 +#: guix-git/doc/guix.texi:2216 #, no-wrap msgid "" "dd if=guix-system-install-@value{VERSION}.x86_64-linux.iso of=/dev/sdX status=progress\n" @@ -7502,238 +7558,238 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2202 +#: guix-git/doc/guix.texi:2219 msgid "Access to @file{/dev/sdX} usually requires root privileges." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2203 +#: guix-git/doc/guix.texi:2220 #, no-wrap msgid "Burning on a DVD" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2208 +#: guix-git/doc/guix.texi:2225 msgid "Insert a blank DVD into your machine, and determine its device name. Assuming that the DVD drive is known as @file{/dev/srX}, copy the image with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2211 +#: guix-git/doc/guix.texi:2228 #, no-wrap msgid "growisofs -dvd-compat -Z /dev/srX=guix-system-install-@value{VERSION}.x86_64-linux.iso\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2214 +#: guix-git/doc/guix.texi:2231 msgid "Access to @file{/dev/srX} usually requires root privileges." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2215 +#: guix-git/doc/guix.texi:2232 #, no-wrap msgid "Booting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2222 +#: guix-git/doc/guix.texi:2239 msgid "Once this is done, you should be able to reboot the system and boot from the USB stick or DVD@. The latter usually requires you to get in the BIOS or UEFI boot menu, where you can choose to boot from the USB stick. In order to boot from Libreboot, switch to the command mode by pressing the @kbd{c} key and type @command{search_grub usb}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2225 +#: guix-git/doc/guix.texi:2242 msgid "@xref{Installing Guix in a VM}, if, instead, you would like to install Guix System in a virtual machine (VM)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2235 +#: guix-git/doc/guix.texi:2252 msgid "Once you have booted, you can use the guided graphical installer, which makes it easy to get started (@pxref{Guided Graphical Installation}). Alternatively, if you are already familiar with GNU/Linux and if you want more control than what the graphical installer provides, you can choose the ``manual'' installation process (@pxref{Manual Installation})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2243 +#: guix-git/doc/guix.texi:2260 msgid "The graphical installer is available on TTY1. You can obtain root shells on TTYs 3 to 6 by hitting @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4}, etc. TTY2 shows this documentation and you can reach it with @kbd{ctrl-alt-f2}. Documentation is browsable using the Info reader commands (@pxref{Top,,, info-stnd, Stand-alone GNU Info}). The installation system runs the GPM mouse daemon, which allows you to select text with the left mouse button and to paste it with the middle button." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2248 +#: guix-git/doc/guix.texi:2265 msgid "Installation requires access to the Internet so that any missing dependencies of your system configuration can be downloaded. See the ``Networking'' section below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2255 +#: guix-git/doc/guix.texi:2272 msgid "The graphical installer is a text-based user interface. It will guide you, with dialog boxes, through the steps needed to install GNU@tie{}Guix System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2260 +#: guix-git/doc/guix.texi:2277 msgid "The first dialog boxes allow you to set up the system as you use it during the installation: you can choose the language, keyboard layout, and set up networking, which will be used during the installation. The image below shows the networking dialog." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2262 +#: guix-git/doc/guix.texi:2279 msgid "@image{images/installer-network,5in,, networking setup with the graphical installer}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2267 +#: guix-git/doc/guix.texi:2284 msgid "Later steps allow you to partition your hard disk, as shown in the image below, to choose whether or not to use encrypted file systems, to enter the host name and root password, and to create an additional account, among other things." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2269 +#: guix-git/doc/guix.texi:2286 msgid "@image{images/installer-partitions,5in,, partitioning with the graphical installer}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2272 +#: guix-git/doc/guix.texi:2289 msgid "Note that, at any time, the installer allows you to exit the current installation step and resume at a previous step, as show in the image below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2274 +#: guix-git/doc/guix.texi:2291 msgid "@image{images/installer-resume,5in,, resuming the installation process}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2279 +#: guix-git/doc/guix.texi:2296 msgid "Once you're done, the installer produces an operating system configuration and displays it (@pxref{Using the Configuration System}). At that point you can hit ``OK'' and installation will proceed. On success, you can reboot into the new system and enjoy. @xref{After System Installation}, for what's next!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2289 +#: guix-git/doc/guix.texi:2306 msgid "This section describes how you would ``manually'' install GNU@tie{}Guix System on your machine. This option requires familiarity with GNU/Linux, with the shell, and with common administration tools. If you think this is not for you, consider using the guided graphical installer (@pxref{Guided Graphical Installation})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2295 +#: guix-git/doc/guix.texi:2312 msgid "The installation system provides root shells on TTYs 3 to 6; press @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4}, and so on to reach them. It includes many common tools needed to install the system. But it is also a full-blown Guix System, which means that you can install additional packages, should you need it, using @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:2302 +#: guix-git/doc/guix.texi:2319 #, no-wrap msgid "Keyboard Layout, Networking, and Partitioning" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2307 +#: guix-git/doc/guix.texi:2324 msgid "Before you can install the system, you may want to adjust the keyboard layout, set up networking, and partition your target hard disk. This section will guide you through this." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2310 guix-git/doc/guix.texi:15584 +#: guix-git/doc/guix.texi:2327 guix-git/doc/guix.texi:15941 #, no-wrap msgid "keyboard layout" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2314 +#: guix-git/doc/guix.texi:2331 msgid "The installation image uses the US qwerty keyboard layout. If you want to change it, you can use the @command{loadkeys} command. For example, the following command selects the Dvorak keyboard layout:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2317 +#: guix-git/doc/guix.texi:2334 #, no-wrap msgid "loadkeys dvorak\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2322 +#: guix-git/doc/guix.texi:2339 msgid "See the files under @file{/run/current-system/profile/share/keymaps} for a list of available keyboard layouts. Run @command{man loadkeys} for more information." msgstr "" #. type: subsubsection -#: guix-git/doc/guix.texi:2323 +#: guix-git/doc/guix.texi:2340 #, no-wrap msgid "Networking" -msgstr "" +msgstr "Sieť" #. type: Plain text -#: guix-git/doc/guix.texi:2326 +#: guix-git/doc/guix.texi:2343 msgid "Run the following command to see what your network interfaces are called:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2329 +#: guix-git/doc/guix.texi:2346 #, no-wrap msgid "ifconfig -a\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2333 guix-git/doc/guix.texi:2355 +#: guix-git/doc/guix.texi:2350 guix-git/doc/guix.texi:2372 msgid "@dots{} or, using the GNU/Linux-specific @command{ip} command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2336 +#: guix-git/doc/guix.texi:2353 #, no-wrap msgid "ip address\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2343 +#: guix-git/doc/guix.texi:2360 msgid "Wired interfaces have a name starting with @samp{e}; for example, the interface corresponding to the first on-board Ethernet controller is called @samp{eno1}. Wireless interfaces have a name starting with @samp{w}, like @samp{w1p2s0}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:2345 +#: guix-git/doc/guix.texi:2362 #, no-wrap msgid "Wired connection" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2348 +#: guix-git/doc/guix.texi:2365 msgid "To configure a wired network run the following command, substituting @var{interface} with the name of the wired interface you want to use." msgstr "" #. type: example -#: guix-git/doc/guix.texi:2351 +#: guix-git/doc/guix.texi:2368 #, no-wrap msgid "ifconfig @var{interface} up\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2358 +#: guix-git/doc/guix.texi:2375 #, no-wrap msgid "ip link set @var{interface} up\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:2360 +#: guix-git/doc/guix.texi:2377 #, no-wrap msgid "Wireless connection" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2361 guix-git/doc/guix.texi:17484 +#: guix-git/doc/guix.texi:2378 guix-git/doc/guix.texi:17846 #, no-wrap msgid "wireless" -msgstr "" +msgstr "bezdrôtová" #. type: cindex -#: guix-git/doc/guix.texi:2362 guix-git/doc/guix.texi:17485 +#: guix-git/doc/guix.texi:2379 guix-git/doc/guix.texi:17847 #, no-wrap msgid "WiFi" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2367 +#: guix-git/doc/guix.texi:2384 msgid "To configure wireless networking, you can create a configuration file for the @command{wpa_supplicant} configuration tool (its location is not important) using one of the available text editors such as @command{nano}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2370 +#: guix-git/doc/guix.texi:2387 #, no-wrap msgid "nano wpa_supplicant.conf\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2375 +#: guix-git/doc/guix.texi:2392 msgid "As an example, the following stanza can go to this file and will work for many wireless networks, provided you give the actual SSID and passphrase for the network you are connecting to:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2382 +#: guix-git/doc/guix.texi:2399 #, no-wrap msgid "" "network=@{\n" @@ -7744,229 +7800,229 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2387 +#: guix-git/doc/guix.texi:2404 msgid "Start the wireless service and run it in the background with the following command (substitute @var{interface} with the name of the network interface you want to use):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2390 +#: guix-git/doc/guix.texi:2407 #, no-wrap msgid "wpa_supplicant -c wpa_supplicant.conf -i @var{interface} -B\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2393 +#: guix-git/doc/guix.texi:2410 msgid "Run @command{man wpa_supplicant} for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2395 +#: guix-git/doc/guix.texi:2412 #, no-wrap msgid "DHCP" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2398 +#: guix-git/doc/guix.texi:2415 msgid "At this point, you need to acquire an IP address. On a network where IP addresses are automatically assigned @i{via} DHCP, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2401 +#: guix-git/doc/guix.texi:2418 #, no-wrap msgid "dhclient -v @var{interface}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2404 +#: guix-git/doc/guix.texi:2421 msgid "Try to ping a server to see if networking is up and running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2407 +#: guix-git/doc/guix.texi:2424 #, no-wrap msgid "ping -c 3 gnu.org\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2411 +#: guix-git/doc/guix.texi:2428 msgid "Setting up network access is almost always a requirement because the image does not contain all the software and tools that may be needed." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2412 +#: guix-git/doc/guix.texi:2429 #, no-wrap msgid "proxy, during system installation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2415 +#: guix-git/doc/guix.texi:2432 msgid "If you need HTTP and HTTPS access to go through a proxy, run the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2418 +#: guix-git/doc/guix.texi:2435 #, no-wrap msgid "herd set-http-proxy guix-daemon @var{URL}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2423 +#: guix-git/doc/guix.texi:2440 msgid "where @var{URL} is the proxy URL, for example @code{http://example.org:8118}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2424 +#: guix-git/doc/guix.texi:2441 #, no-wrap msgid "installing over SSH" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2427 +#: guix-git/doc/guix.texi:2444 msgid "If you want to, you can continue the installation remotely by starting an SSH server:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2430 +#: guix-git/doc/guix.texi:2447 #, no-wrap msgid "herd start ssh-daemon\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2434 +#: guix-git/doc/guix.texi:2451 msgid "Make sure to either set a password with @command{passwd}, or configure OpenSSH public key authentication before logging in." msgstr "" #. type: subsubsection -#: guix-git/doc/guix.texi:2435 +#: guix-git/doc/guix.texi:2452 #, no-wrap msgid "Disk Partitioning" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2439 +#: guix-git/doc/guix.texi:2456 msgid "Unless this has already been done, the next step is to partition, and then format the target partition(s)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2444 +#: guix-git/doc/guix.texi:2461 msgid "The installation image includes several partitioning tools, including Parted (@pxref{Overview,,, parted, GNU Parted User Manual}), @command{fdisk}, and @command{cfdisk}. Run it and set up your disk with the partition layout you want:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2447 +#: guix-git/doc/guix.texi:2464 #, no-wrap msgid "cfdisk\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2453 +#: guix-git/doc/guix.texi:2470 msgid "If your disk uses the GUID Partition Table (GPT) format and you plan to install BIOS-based GRUB (which is the default), make sure a BIOS Boot Partition is available (@pxref{BIOS installation,,, grub, GNU GRUB manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2454 +#: guix-git/doc/guix.texi:2471 #, no-wrap msgid "EFI, installation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2455 +#: guix-git/doc/guix.texi:2472 #, no-wrap msgid "UEFI, installation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2456 +#: guix-git/doc/guix.texi:2473 #, no-wrap msgid "ESP, EFI system partition" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2460 +#: guix-git/doc/guix.texi:2477 msgid "If you instead wish to use EFI-based GRUB, a FAT32 @dfn{EFI System Partition} (ESP) is required. This partition can be mounted at @file{/boot/efi} for instance and must have the @code{esp} flag set. E.g., for @command{parted}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2463 +#: guix-git/doc/guix.texi:2480 #, no-wrap msgid "parted /dev/sda set 1 esp on\n" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:2466 guix-git/doc/guix.texi:34580 +#: guix-git/doc/guix.texi:2483 guix-git/doc/guix.texi:35019 #, no-wrap msgid "grub-bootloader" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:2467 guix-git/doc/guix.texi:34574 +#: guix-git/doc/guix.texi:2484 guix-git/doc/guix.texi:35013 #, no-wrap msgid "grub-efi-bootloader" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2474 +#: guix-git/doc/guix.texi:2491 msgid "Unsure whether to use EFI- or BIOS-based GRUB? If the directory @file{/sys/firmware/efi} exists in the installation image, then you should probably perform an EFI installation, using @code{grub-efi-bootloader}. Otherwise you should use the BIOS-based GRUB, known as @code{grub-bootloader}. @xref{Bootloader Configuration}, for more info on bootloaders." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2482 +#: guix-git/doc/guix.texi:2499 msgid "Once you are done partitioning the target hard disk drive, you have to create a file system on the relevant partition(s)@footnote{Currently Guix System only supports ext4, btrfs, JFS, F2FS, and XFS file systems. In particular, code that reads file system UUIDs and labels only works for these file system types.}. For the ESP, if you have one and assuming it is @file{/dev/sda1}, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2485 +#: guix-git/doc/guix.texi:2502 #, no-wrap msgid "mkfs.fat -F32 /dev/sda1\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2492 +#: guix-git/doc/guix.texi:2509 msgid "For the root file system, ext4 is the most widely used format. Other file systems, such as Btrfs, support compression, which is reported to nicely complement file deduplication that the daemon performs independently of the file system (@pxref{Invoking guix-daemon, deduplication})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2499 +#: guix-git/doc/guix.texi:2516 msgid "Preferably, assign file systems a label so that you can easily and reliably refer to them in @code{file-system} declarations (@pxref{File Systems}). This is typically done using the @code{-L} option of @command{mkfs.ext4} and related commands. So, assuming the target root partition lives at @file{/dev/sda2}, a file system with the label @code{my-root} can be created with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2502 +#: guix-git/doc/guix.texi:2519 #, no-wrap msgid "mkfs.ext4 -L my-root /dev/sda2\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2504 guix-git/doc/guix.texi:14475 +#: guix-git/doc/guix.texi:2521 guix-git/doc/guix.texi:14832 #, no-wrap msgid "encrypted disk" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2509 +#: guix-git/doc/guix.texi:2526 msgid "If you are instead planning to encrypt the root partition, you can use the Cryptsetup/LUKS utilities to do that (see @inlinefmtifelse{html, @uref{https://linux.die.net/man/8/cryptsetup, @code{man cryptsetup}}, @code{man cryptsetup}} for more information)." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2510 guix-git/doc/guix.texi:5280 -#: guix-git/doc/guix.texi:6489 guix-git/doc/guix.texi:14601 -#: guix-git/doc/guix.texi:21013 guix-git/doc/guix.texi:21020 +#: guix-git/doc/guix.texi:2527 guix-git/doc/guix.texi:5298 +#: guix-git/doc/guix.texi:6532 guix-git/doc/guix.texi:14958 +#: guix-git/doc/guix.texi:21375 guix-git/doc/guix.texi:21382 #, no-wrap msgid "Warning" -msgstr "" +msgstr "Upozornenie" #. type: quotation -#: guix-git/doc/guix.texi:2517 +#: guix-git/doc/guix.texi:2534 msgid "Note that GRUB can unlock LUKS2 devices since version 2.06, but only supports the PBKDF2 key derivation function, which is not the default for @command{cryptsetup luksFormat}. You can check which key derivation function is being used by a device by running @command{cryptsetup luksDump @var{device}}, and looking for the PBKDF field of your keyslots." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2522 +#: guix-git/doc/guix.texi:2539 msgid "Assuming you want to store the root partition on @file{/dev/sda2}, the command sequence to format it as a LUKS2 partition would be along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2527 +#: guix-git/doc/guix.texi:2544 #, no-wrap msgid "" "cryptsetup luksFormat --type luks2 --pbkdf pbkdf2 /dev/sda2\n" @@ -7975,28 +8031,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2532 +#: guix-git/doc/guix.texi:2549 msgid "Once that is done, mount the target file system under @file{/mnt} with a command like (again, assuming @code{my-root} is the label of the root file system):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2535 +#: guix-git/doc/guix.texi:2552 #, no-wrap msgid "mount LABEL=my-root /mnt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2541 +#: guix-git/doc/guix.texi:2558 msgid "Also mount any other file systems you would like to use on the target system relative to this path. If you have opted for @file{/boot/efi} as an EFI mount point for example, mount it at @file{/mnt/boot/efi} now so it is found by @code{guix system init} afterwards." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2545 +#: guix-git/doc/guix.texi:2562 msgid "Finally, if you plan to use one or more swap partitions (@pxref{Swap Space}), make sure to initialize them with @command{mkswap}. Assuming you have one swap partition on @file{/dev/sda3}, you would run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2549 +#: guix-git/doc/guix.texi:2566 #, no-wrap msgid "" "mkswap /dev/sda3\n" @@ -8004,12 +8060,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2557 +#: guix-git/doc/guix.texi:2574 msgid "Alternatively, you may use a swap file. For example, assuming that in the new system you want to use the file @file{/swapfile} as a swap file, you would run@footnote{This example will work for many types of file systems (e.g., ext4). However, for copy-on-write file systems (e.g., btrfs), the required steps may be different. For details, see the manual pages for @command{mkswap} and @command{swapon}.}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2565 +#: guix-git/doc/guix.texi:2582 #, no-wrap msgid "" "# This is 10 GiB of swap space. Adjust \"count\" to change the size.\n" @@ -8021,38 +8077,38 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2570 +#: guix-git/doc/guix.texi:2587 msgid "Note that if you have encrypted the root partition and created a swap file in its file system as described above, then the encryption also protects the swap file, just like any other file in that file system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2576 +#: guix-git/doc/guix.texi:2593 msgid "With the target partitions ready and the target root mounted on @file{/mnt}, we're ready to go. First, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2579 +#: guix-git/doc/guix.texi:2596 #, no-wrap msgid "herd start cow-store /mnt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2586 +#: guix-git/doc/guix.texi:2603 msgid "This makes @file{/gnu/store} copy-on-write, such that packages added to it during the installation phase are written to the target disk on @file{/mnt} rather than kept in memory. This is necessary because the first phase of the @command{guix system init} command (see below) entails downloads or builds to @file{/gnu/store} which, initially, is an in-memory file system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2597 +#: guix-git/doc/guix.texi:2614 msgid "Next, you have to edit a file and provide the declaration of the operating system to be installed. To that end, the installation system comes with three text editors. We recommend GNU nano (@pxref{Top,,, nano, GNU nano Manual}), which supports syntax highlighting and parentheses matching; other editors include mg (an Emacs clone), and nvi (a clone of the original BSD @command{vi} editor). We strongly recommend storing that file on the target root file system, say, as @file{/mnt/etc/config.scm}. Failing to do that, you will have lost your configuration file once you have rebooted into the newly-installed system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2604 +#: guix-git/doc/guix.texi:2621 msgid "@xref{Using the Configuration System}, for an overview of the configuration file. The example configurations discussed in that section are available under @file{/etc/configuration} in the installation image. Thus, to get started with a system configuration providing a graphical display server (a ``desktop'' system), you can run something along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2609 +#: guix-git/doc/guix.texi:2626 #, no-wrap msgid "" "# mkdir /mnt/etc\n" @@ -8061,53 +8117,53 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2613 +#: guix-git/doc/guix.texi:2630 msgid "You should pay attention to what your configuration file contains, and in particular:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2625 +#: guix-git/doc/guix.texi:2642 msgid "Make sure the @code{bootloader-configuration} form refers to the targets you want to install GRUB on. It should mention @code{grub-bootloader} if you are installing GRUB in the legacy way, or @code{grub-efi-bootloader} for newer UEFI systems. For legacy systems, the @code{targets} field contain the names of the devices, like @code{(list \"/dev/sda\")}; for UEFI systems it names the paths to mounted EFI partitions, like @code{(list \"/boot/efi\")}; do make sure the paths are currently mounted and a @code{file-system} entry is specified in your configuration." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2631 +#: guix-git/doc/guix.texi:2648 msgid "Be sure that your file system labels match the value of their respective @code{device} fields in your @code{file-system} configuration, assuming your @code{file-system} configuration uses the @code{file-system-label} procedure in its @code{device} field." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2635 +#: guix-git/doc/guix.texi:2652 msgid "If there are encrypted or RAID partitions, make sure to add a @code{mapped-devices} field to describe them (@pxref{Mapped Devices})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2640 +#: guix-git/doc/guix.texi:2657 msgid "Once you are done preparing the configuration file, the new system must be initialized (remember that the target root file system is mounted under @file{/mnt}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2643 +#: guix-git/doc/guix.texi:2660 #, no-wrap msgid "guix system init /mnt/etc/config.scm /mnt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2650 +#: guix-git/doc/guix.texi:2667 msgid "This copies all the necessary files and installs GRUB on @file{/dev/sdX}, unless you pass the @option{--no-bootloader} option. For more information, @pxref{Invoking guix system}. This command may trigger downloads or builds of missing packages, which can take some time." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2658 +#: guix-git/doc/guix.texi:2675 msgid "Once that command has completed---and hopefully succeeded!---you can run @command{reboot} and boot into the new system. The @code{root} password in the new system is initially empty; other users' passwords need to be initialized by running the @command{passwd} command as @code{root}, unless your configuration specifies otherwise (@pxref{user-account-password, user account passwords}). @xref{After System Installation}, for what's next!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2665 +#: guix-git/doc/guix.texi:2682 msgid "Success, you've now booted into Guix System! From then on, you can update the system whenever you want by running, say:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2669 +#: guix-git/doc/guix.texi:2686 #, no-wrap msgid "" "guix pull\n" @@ -8115,93 +8171,93 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2675 +#: guix-git/doc/guix.texi:2692 msgid "This builds a new system generation with the latest packages and services (@pxref{Invoking guix system}). We recommend doing that regularly so that your system includes the latest security updates (@pxref{Security Updates})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2678 +#: guix-git/doc/guix.texi:2695 #, no-wrap msgid "sudo vs. @command{guix pull}" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2682 +#: guix-git/doc/guix.texi:2699 msgid "Note that @command{sudo guix} runs your user's @command{guix} command and @emph{not} root's, because @command{sudo} leaves @env{PATH} unchanged. To explicitly run root's @command{guix}, type @command{sudo -i guix @dots{}}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2687 +#: guix-git/doc/guix.texi:2704 msgid "The difference matters here, because @command{guix pull} updates the @command{guix} command and package definitions only for the user it is run as. This means that if you choose to use @command{guix system reconfigure} in root's login shell, you'll need to @command{guix pull} separately." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2692 +#: guix-git/doc/guix.texi:2709 msgid "Now, @pxref{Getting Started}, and join us on @code{#guix} on the Libera Chat IRC network or on @email{guix-devel@@gnu.org} to share your experience!" msgstr "" #. type: section -#: guix-git/doc/guix.texi:2695 +#: guix-git/doc/guix.texi:2712 #, no-wrap msgid "Installing Guix in a Virtual Machine" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2697 +#: guix-git/doc/guix.texi:2714 #, no-wrap msgid "virtual machine, Guix System installation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2698 +#: guix-git/doc/guix.texi:2715 #, no-wrap msgid "virtual private server (VPS)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2699 +#: guix-git/doc/guix.texi:2716 #, no-wrap msgid "VPS (virtual private server)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2703 +#: guix-git/doc/guix.texi:2720 msgid "If you'd like to install Guix System in a virtual machine (VM) or on a virtual private server (VPS) rather than on your beloved machine, this section is for you." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2706 +#: guix-git/doc/guix.texi:2723 msgid "To boot a @uref{https://qemu.org/,QEMU} VM for installing Guix System in a disk image, follow these steps:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2711 +#: guix-git/doc/guix.texi:2728 msgid "First, retrieve and decompress the Guix system installation image as described previously (@pxref{USB Stick and DVD Installation})." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2715 +#: guix-git/doc/guix.texi:2732 msgid "Create a disk image that will hold the installed system. To make a qcow2-formatted disk image, use the @command{qemu-img} command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2718 +#: guix-git/doc/guix.texi:2735 #, no-wrap msgid "qemu-img create -f qcow2 guix-system.img 50G\n" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2722 +#: guix-git/doc/guix.texi:2739 msgid "The resulting file will be much smaller than 50 GB (typically less than 1 MB), but it will grow as the virtualized storage device is filled up." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2725 +#: guix-git/doc/guix.texi:2742 msgid "Boot the USB installation image in an VM:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2731 +#: guix-git/doc/guix.texi:2748 #, no-wrap msgid "" "qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \\\n" @@ -8211,115 +8267,115 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2735 +#: guix-git/doc/guix.texi:2752 msgid "@code{-enable-kvm} is optional, but significantly improves performance, @pxref{Running Guix in a VM}." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2739 +#: guix-git/doc/guix.texi:2756 msgid "You're now root in the VM, proceed with the installation process. @xref{Preparing for Installation}, and follow the instructions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2744 +#: guix-git/doc/guix.texi:2761 msgid "Once installation is complete, you can boot the system that's on your @file{guix-system.img} image. @xref{Running Guix in a VM}, for how to do that." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2748 +#: guix-git/doc/guix.texi:2765 #, no-wrap msgid "installation image" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2751 +#: guix-git/doc/guix.texi:2768 msgid "The installation image described above was built using the @command{guix system} command, specifically:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2754 +#: guix-git/doc/guix.texi:2771 #, no-wrap msgid "guix system image -t iso9660 gnu/system/install.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2759 +#: guix-git/doc/guix.texi:2776 msgid "Have a look at @file{gnu/system/install.scm} in the source tree, and see also @ref{Invoking guix system} for more information about the installation image." msgstr "" #. type: section -#: guix-git/doc/guix.texi:2760 +#: guix-git/doc/guix.texi:2777 #, no-wrap msgid "Building the Installation Image for ARM Boards" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2764 +#: guix-git/doc/guix.texi:2781 msgid "Many ARM boards require a specific variant of the @uref{https://www.denx.de/wiki/U-Boot/, U-Boot} bootloader." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2768 +#: guix-git/doc/guix.texi:2785 msgid "If you build a disk image and the bootloader is not available otherwise (on another boot drive etc), it's advisable to build an image that includes the bootloader, specifically:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2771 +#: guix-git/doc/guix.texi:2788 #, no-wrap msgid "guix system image --system=armhf-linux -e '((@@ (gnu system install) os-with-u-boot) (@@ (gnu system install) installation-os) \"A20-OLinuXino-Lime2\")'\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2775 +#: guix-git/doc/guix.texi:2792 msgid "@code{A20-OLinuXino-Lime2} is the name of the board. If you specify an invalid board, a list of possible boards will be printed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2785 +#: guix-git/doc/guix.texi:2802 msgid "Presumably, you've reached this section because either you have installed Guix on top of another distribution (@pxref{Installation}), or you've installed the standalone Guix System (@pxref{System Installation}). It's time for you to get started using Guix and this section aims to help you do that and give you a feel of what it's like." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2789 +#: guix-git/doc/guix.texi:2806 msgid "Guix is about installing software, so probably the first thing you'll want to do is to actually look for software. Let's say you're looking for a text editor, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2792 +#: guix-git/doc/guix.texi:2809 #, no-wrap msgid "guix search text editor\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2799 +#: guix-git/doc/guix.texi:2816 msgid "This command shows you a number of matching @dfn{packages}, each time showing the package's name, version, a description, and additional info. Once you've found out the one you want to use, let's say Emacs (ah ha!), you can go ahead and install it (run this command as a regular user, @emph{no need for root privileges}!):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2802 +#: guix-git/doc/guix.texi:2819 #, no-wrap msgid "guix install emacs\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2804 guix-git/doc/guix.texi:3116 -#: guix-git/doc/guix.texi:3168 +#: guix-git/doc/guix.texi:2821 guix-git/doc/guix.texi:3133 +#: guix-git/doc/guix.texi:3185 #, no-wrap msgid "profile" -msgstr "" +msgstr "profil" #. type: Plain text -#: guix-git/doc/guix.texi:2812 +#: guix-git/doc/guix.texi:2829 msgid "You've installed your first package, congrats! The package is now visible in your default @dfn{profile}, @file{$HOME/.guix-profile}---a profile is a directory containing installed packages. In the process, you've probably noticed that Guix downloaded pre-built binaries; or, if you explicitly chose to @emph{not} use pre-built binaries, then probably Guix is still building software (@pxref{Substitutes}, for more info)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2815 +#: guix-git/doc/guix.texi:2832 msgid "Unless you're using Guix System, the @command{guix install} command must have printed this hint:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2818 +#: guix-git/doc/guix.texi:2835 #, no-wrap msgid "" "hint: Consider setting the necessary environment variables by running:\n" @@ -8327,7 +8383,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2821 +#: guix-git/doc/guix.texi:2838 #, no-wrap msgid "" " GUIX_PROFILE=\"$HOME/.guix-profile\"\n" @@ -8336,77 +8392,77 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2823 +#: guix-git/doc/guix.texi:2840 #, no-wrap msgid "Alternately, see `guix package --search-paths -p \"$HOME/.guix-profile\"'.\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2837 +#: guix-git/doc/guix.texi:2854 msgid "Indeed, you must now tell your shell where @command{emacs} and other programs installed with Guix are to be found. Pasting the two lines above will do just that: it will add @code{$HOME/.guix-profile/bin}---which is where the installed package is---to the @code{PATH} environment variable. You can paste these two lines in your shell so they take effect right away, but more importantly you should add them to @file{~/.bash_profile} (or equivalent file if you do not use Bash) so that environment variables are set next time you spawn a shell. You only need to do this once and other search paths environment variables will be taken care of similarly---e.g., if you eventually install @code{python} and Python libraries, @env{GUIX_PYTHONPATH} will be defined." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2840 +#: guix-git/doc/guix.texi:2857 msgid "You can go on installing packages at your will. To list installed packages, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2843 +#: guix-git/doc/guix.texi:2860 #, no-wrap msgid "guix package --list-installed\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2848 +#: guix-git/doc/guix.texi:2865 msgid "To remove a package, you would unsurprisingly run @command{guix remove}. A distinguishing feature is the ability to @dfn{roll back} any operation you made---installation, removal, upgrade---by simply typing:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2851 +#: guix-git/doc/guix.texi:2868 #, no-wrap msgid "guix package --roll-back\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2856 +#: guix-git/doc/guix.texi:2873 msgid "This is because each operation is in fact a @dfn{transaction} that creates a new @dfn{generation}. These generations and the difference between them can be displayed by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2859 +#: guix-git/doc/guix.texi:2876 #, no-wrap msgid "guix package --list-generations\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2862 +#: guix-git/doc/guix.texi:2879 msgid "Now you know the basics of package management!" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2863 guix-git/doc/guix.texi:2922 +#: guix-git/doc/guix.texi:2880 guix-git/doc/guix.texi:2939 #, no-wrap msgid "Going further" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2871 +#: guix-git/doc/guix.texi:2888 msgid "@xref{Package Management}, for more about package management. You may like @dfn{declarative} package management with @command{guix package --manifest}, managing separate @dfn{profiles} with @option{--profile}, deleting old generations, collecting garbage, and other nifty features that will come in handy as you become more familiar with Guix. If you are a developer, @pxref{Development} for additional tools. And if you're curious, @pxref{Features}, to peek under the hood." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2876 +#: guix-git/doc/guix.texi:2893 msgid "Once you've installed a set of packages, you will want to periodically @emph{upgrade} them to the latest and greatest version. To do that, you will first pull the latest revision of Guix and its package collection:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2886 +#: guix-git/doc/guix.texi:2903 msgid "The end result is a new @command{guix} command, under @file{~/.config/guix/current/bin}. Unless you're on Guix System, the first time you run @command{guix pull}, be sure to follow the hint that the command prints and, similar to what we saw above, paste these two lines in your terminal and @file{.bash_profile}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2890 +#: guix-git/doc/guix.texi:2907 #, no-wrap msgid "" "GUIX_PROFILE=\"$HOME/.config/guix/current\"\n" @@ -8414,336 +8470,336 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2894 +#: guix-git/doc/guix.texi:2911 msgid "You must also instruct your shell to point to this new @command{guix}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2897 +#: guix-git/doc/guix.texi:2914 #, no-wrap msgid "hash guix\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2901 +#: guix-git/doc/guix.texi:2918 msgid "At this point, you're running a brand new Guix. You can thus go ahead and actually upgrade all the packages you previously installed:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2904 +#: guix-git/doc/guix.texi:2921 #, no-wrap msgid "guix upgrade\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2910 +#: guix-git/doc/guix.texi:2927 msgid "As you run this command, you will see that binaries are downloaded (or perhaps some packages are built), and eventually you end up with the upgraded packages. Should one of these upgraded packages not be to your liking, remember you can always roll back!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2913 +#: guix-git/doc/guix.texi:2930 msgid "You can display the exact revision of Guix you're currently using by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2916 +#: guix-git/doc/guix.texi:2933 #, no-wrap msgid "guix describe\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2921 +#: guix-git/doc/guix.texi:2938 msgid "The information it displays is @emph{all it takes to reproduce the exact same Guix}, be it at a different point in time or on a different machine." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2927 +#: guix-git/doc/guix.texi:2944 msgid "@xref{Invoking guix pull}, for more information. @xref{Channels}, on how to specify additional @dfn{channels} to pull packages from, how to replicate Guix, and more. You may also find @command{time-machine} handy (@pxref{Invoking guix time-machine})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2932 +#: guix-git/doc/guix.texi:2949 msgid "If you installed Guix System, one of the first things you'll want to do is to upgrade your system. Once you've run @command{guix pull} to get the latest Guix, you can upgrade the system like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2935 +#: guix-git/doc/guix.texi:2952 #, no-wrap msgid "sudo guix system reconfigure /etc/config.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2944 +#: guix-git/doc/guix.texi:2961 msgid "Upon completion, the system runs the latest versions of its software packages. When you eventually reboot, you'll notice a sub-menu in the bootloader that reads ``Old system generations'': it's what allows you to boot @emph{an older generation of your system}, should the latest generation be ``broken'' or otherwise unsatisfying. Just like for packages, you can always @emph{roll back} to a previous generation @emph{of the whole system}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2947 +#: guix-git/doc/guix.texi:2964 #, no-wrap msgid "sudo guix system roll-back\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2954 +#: guix-git/doc/guix.texi:2971 msgid "There are many things you'll probably want to tweak on your system: adding new user accounts, adding new system services, fiddling with the configuration of those services, etc. The system configuration is @emph{entirely} described in the @file{/etc/config.scm} file. @xref{Using the Configuration System}, to learn how to change it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2956 +#: guix-git/doc/guix.texi:2973 msgid "Now you know enough to get started!" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2957 +#: guix-git/doc/guix.texi:2974 #, no-wrap msgid "Resources" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2960 +#: guix-git/doc/guix.texi:2977 msgid "The rest of this manual provides a reference for all things Guix. Here are some additional resources you may find useful:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2965 +#: guix-git/doc/guix.texi:2982 msgid "@xref{Top,,, guix-cookbook, The GNU Guix Cookbook}, for a list of ``how-to'' style of recipes for a variety of applications." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2970 +#: guix-git/doc/guix.texi:2987 msgid "The @uref{https://guix.gnu.org/guix-refcard.pdf, GNU Guix Reference Card} lists in two pages most of the commands and options you'll ever need." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2975 +#: guix-git/doc/guix.texi:2992 msgid "The web site contains @uref{https://guix.gnu.org/en/videos/, instructional videos} covering topics such as everyday use of Guix, how to get help, and how to become a contributor." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2979 +#: guix-git/doc/guix.texi:2996 msgid "@xref{Documentation}, to learn how to access documentation on your computer." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2982 +#: guix-git/doc/guix.texi:2999 msgid "We hope you will enjoy Guix as much as the community enjoys building it!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2993 +#: guix-git/doc/guix.texi:3010 msgid "The purpose of GNU Guix is to allow users to easily install, upgrade, and remove software packages, without having to know about their build procedures or dependencies. Guix also goes beyond this obvious set of features." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3001 +#: guix-git/doc/guix.texi:3018 msgid "This chapter describes the main features of Guix, as well as the package management tools it provides. Along with the command-line interface described below (@pxref{Invoking guix package, @code{guix package}}), you may also use the Emacs-Guix interface (@pxref{Top,,, emacs-guix, The Emacs-Guix Reference Manual}), after installing @code{emacs-guix} package (run @kbd{M-x guix-help} command to start with it):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3004 +#: guix-git/doc/guix.texi:3021 #, no-wrap msgid "guix install emacs-guix\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3025 +#: guix-git/doc/guix.texi:3042 msgid "Here we assume you've already made your first steps with Guix (@pxref{Getting Started}) and would like to get an overview about what's going on under the hood." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3029 +#: guix-git/doc/guix.texi:3046 msgid "When using Guix, each package ends up in the @dfn{package store}, in its own directory---something that resembles @file{/gnu/store/xxx-package-1.2}, where @code{xxx} is a base32 string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3051 msgid "Instead of referring to these directories, users have their own @dfn{profile}, which points to the packages that they actually want to use. These profiles are stored within each user's home directory, at @code{$HOME/.guix-profile}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3042 +#: guix-git/doc/guix.texi:3059 msgid "For example, @code{alice} installs GCC 4.7.2. As a result, @file{/home/alice/.guix-profile/bin/gcc} points to @file{/gnu/store/@dots{}-gcc-4.7.2/bin/gcc}. Now, on the same machine, @code{bob} had already installed GCC 4.8.0. The profile of @code{bob} simply continues to point to @file{/gnu/store/@dots{}-gcc-4.8.0/bin/gcc}---i.e., both versions of GCC coexist on the same system without any interference." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3046 +#: guix-git/doc/guix.texi:3063 msgid "The @command{guix package} command is the central tool to manage packages (@pxref{Invoking guix package}). It operates on the per-user profiles, and can be used @emph{with normal user privileges}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3047 guix-git/doc/guix.texi:3130 +#: guix-git/doc/guix.texi:3064 guix-git/doc/guix.texi:3147 #, no-wrap msgid "transactions" -msgstr "" +msgstr "transakcie" #. type: Plain text -#: guix-git/doc/guix.texi:3054 +#: guix-git/doc/guix.texi:3071 msgid "The command provides the obvious install, remove, and upgrade operations. Each invocation is actually a @emph{transaction}: either the specified operation succeeds, or nothing happens. Thus, if the @command{guix package} process is terminated during the transaction, or if a power outage occurs during the transaction, then the user's profile remains in its previous state, and remains usable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3062 +#: guix-git/doc/guix.texi:3079 msgid "In addition, any package transaction may be @emph{rolled back}. So, if, for example, an upgrade installs a new version of a package that turns out to have a serious bug, users may roll back to the previous instance of their profile, which was known to work well. Similarly, the global system configuration on Guix is subject to transactional upgrades and roll-back (@pxref{Using the Configuration System})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3069 +#: guix-git/doc/guix.texi:3086 msgid "All packages in the package store may be @emph{garbage-collected}. Guix can determine which packages are still referenced by user profiles, and remove those that are provably no longer referenced (@pxref{Invoking guix gc}). Users may also explicitly remove old generations of their profile so that the packages they refer to can be collected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3082 +#: guix-git/doc/guix.texi:3099 msgid "Guix takes a @dfn{purely functional} approach to package management, as described in the introduction (@pxref{Introduction}). Each @file{/gnu/store} package directory name contains a hash of all the inputs that were used to build that package---compiler, libraries, build scripts, etc. This direct correspondence allows users to make sure a given package installation matches the current state of their distribution. It also helps maximize @dfn{build reproducibility}: thanks to the isolated build environments that are used, a given build is likely to yield bit-identical files when performed on different machines (@pxref{Invoking guix-daemon, container})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3093 +#: guix-git/doc/guix.texi:3110 msgid "This foundation allows Guix to support @dfn{transparent binary/source deployment}. When a pre-built binary for a @file{/gnu/store} item is available from an external source---a @dfn{substitute}, Guix just downloads it and unpacks it; otherwise, it builds the package from source, locally (@pxref{Substitutes}). Because build results are usually bit-for-bit reproducible, users do not have to trust servers that provide substitutes: they can force a local build and @emph{challenge} providers (@pxref{Invoking guix challenge})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3099 +#: guix-git/doc/guix.texi:3116 msgid "Control over the build environment is a feature that is also useful for developers. The @command{guix shell} command allows developers of a package to quickly set up the right development environment for their package, without having to manually install the dependencies of the package into their profile (@pxref{Invoking guix shell})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3100 +#: guix-git/doc/guix.texi:3117 #, no-wrap msgid "replication, of software environments" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3101 +#: guix-git/doc/guix.texi:3118 #, no-wrap msgid "provenance tracking, of software artifacts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3108 +#: guix-git/doc/guix.texi:3125 msgid "All of Guix and its package definitions is version-controlled, and @command{guix pull} allows you to ``travel in time'' on the history of Guix itself (@pxref{Invoking guix pull}). This makes it possible to replicate a Guix instance on a different machine or at a later point in time, which in turn allows you to @emph{replicate complete software environments}, while retaining precise @dfn{provenance tracking} of the software." msgstr "" #. type: section -#: guix-git/doc/guix.texi:3110 +#: guix-git/doc/guix.texi:3127 #, no-wrap msgid "Invoking @command{guix package}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3112 +#: guix-git/doc/guix.texi:3129 #, no-wrap msgid "installing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3113 +#: guix-git/doc/guix.texi:3130 #, no-wrap msgid "removing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3114 +#: guix-git/doc/guix.texi:3131 #, no-wrap msgid "package installation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3115 +#: guix-git/doc/guix.texi:3132 #, no-wrap msgid "package removal" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3125 +#: guix-git/doc/guix.texi:3142 msgid "The @command{guix package} command is the tool that allows users to install, upgrade, and remove packages, as well as rolling back to previous configurations. These operations work on a user @dfn{profile}---a directory of installed packages. Each user has a default profile in @file{$HOME/.guix-profile}. The command operates only on the user's own profile, and works with normal user privileges (@pxref{Features}). Its syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3128 +#: guix-git/doc/guix.texi:3145 #, no-wrap msgid "guix package @var{options}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3135 +#: guix-git/doc/guix.texi:3152 msgid "Primarily, @var{options} specifies the operations to be performed during the transaction. Upon completion, a new profile is created, but previous @dfn{generations} of the profile remain available, should the user want to roll back." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3138 +#: guix-git/doc/guix.texi:3155 msgid "For example, to remove @code{lua} and install @code{guile} and @code{guile-cairo} in a single transaction:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3141 +#: guix-git/doc/guix.texi:3158 #, no-wrap msgid "guix package -r lua -i guile guile-cairo\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3143 +#: guix-git/doc/guix.texi:3160 #, no-wrap msgid "aliases, for @command{guix package}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3145 +#: guix-git/doc/guix.texi:3162 msgid "For your convenience, we also provide the following aliases:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3149 +#: guix-git/doc/guix.texi:3166 msgid "@command{guix search} is an alias for @command{guix package -s}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3151 +#: guix-git/doc/guix.texi:3168 msgid "@command{guix install} is an alias for @command{guix package -i}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3153 +#: guix-git/doc/guix.texi:3170 msgid "@command{guix remove} is an alias for @command{guix package -r}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3155 +#: guix-git/doc/guix.texi:3172 msgid "@command{guix upgrade} is an alias for @command{guix package -u}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3157 +#: guix-git/doc/guix.texi:3174 msgid "and @command{guix show} is an alias for @command{guix package --show=}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3162 +#: guix-git/doc/guix.texi:3179 msgid "These aliases are less expressive than @command{guix package} and provide fewer options, so in some cases you'll probably want to use @command{guix package} directly." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3167 +#: guix-git/doc/guix.texi:3184 msgid "@command{guix package} also supports a @dfn{declarative approach} whereby the user specifies the exact set of packages to be available and passes it @i{via} the @option{--manifest} option (@pxref{profile-manifest, @option{--manifest}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3174 +#: guix-git/doc/guix.texi:3191 msgid "For each user, a symlink to the user's default profile is automatically created in @file{$HOME/.guix-profile}. This symlink always points to the current generation of the user's default profile. Thus, users can add @file{$HOME/.guix-profile/bin} to their @env{PATH} environment variable, and so on." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3174 guix-git/doc/guix.texi:3418 +#: guix-git/doc/guix.texi:3191 guix-git/doc/guix.texi:3435 #, no-wrap msgid "search paths" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3179 +#: guix-git/doc/guix.texi:3196 msgid "If you are not using Guix System, consider adding the following lines to your @file{~/.bash_profile} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}) so that newly-spawned shells get all the right environment variable definitions:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3183 +#: guix-git/doc/guix.texi:3200 #, no-wrap msgid "" "GUIX_PROFILE=\"$HOME/.guix-profile\" ; \\\n" @@ -8751,298 +8807,298 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3194 +#: guix-git/doc/guix.texi:3211 msgid "In a multi-user setup, user profiles are stored in a place registered as a @dfn{garbage-collector root}, which @file{$HOME/.guix-profile} points to (@pxref{Invoking guix gc}). That directory is normally @code{@var{localstatedir}/guix/profiles/per-user/@var{user}}, where @var{localstatedir} is the value passed to @code{configure} as @option{--localstatedir}, and @var{user} is the user name. The @file{per-user} directory is created when @command{guix-daemon} is started, and the @var{user} sub-directory is created by @command{guix package}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3196 +#: guix-git/doc/guix.texi:3213 msgid "The @var{options} can be among the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3199 +#: guix-git/doc/guix.texi:3216 #, no-wrap msgid "--install=@var{package} @dots{}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3200 +#: guix-git/doc/guix.texi:3217 #, no-wrap msgid "-i @var{package} @dots{}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3202 +#: guix-git/doc/guix.texi:3219 msgid "Install the specified @var{package}s." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3207 +#: guix-git/doc/guix.texi:3224 msgid "Each @var{package} may specify either a simple package name, such as @code{guile}, or a package name followed by an at-sign and version number, such as @code{guile@@1.8.8} or simply @code{guile@@1.8} (in the latter case, the newest version prefixed by @code{1.8} is selected)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3215 +#: guix-git/doc/guix.texi:3232 msgid "If no version number is specified, the newest available version will be selected. In addition, @var{package} may contain a colon, followed by the name of one of the outputs of the package, as in @code{gcc:doc} or @code{binutils@@2.22:lib} (@pxref{Packages with Multiple Outputs}). Packages with a corresponding name (and optionally version) are searched for among the GNU distribution modules (@pxref{Package Modules})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3216 +#: guix-git/doc/guix.texi:3233 #, no-wrap msgid "propagated inputs" -msgstr "" +msgstr "rozšírené vstupy" #. type: table -#: guix-git/doc/guix.texi:3222 +#: guix-git/doc/guix.texi:3239 msgid "Sometimes packages have @dfn{propagated inputs}: these are dependencies that automatically get installed along with the required package (@pxref{package-propagated-inputs, @code{propagated-inputs} in @code{package} objects}, for information about propagated inputs in package definitions)." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3229 +#: guix-git/doc/guix.texi:3246 msgid "package-cmd-propagated-inputs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3229 +#: guix-git/doc/guix.texi:3246 msgid "An example is the GNU MPC library: its C header files refer to those of the GNU MPFR library, which in turn refer to those of the GMP library. Thus, when installing MPC, the MPFR and GMP libraries also get installed in the profile; removing MPC also removes MPFR and GMP---unless they had also been explicitly installed by the user." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3234 +#: guix-git/doc/guix.texi:3251 msgid "Besides, packages sometimes rely on the definition of environment variables for their search paths (see explanation of @option{--search-paths} below). Any missing or possibly incorrect environment variable definitions are reported here." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3235 +#: guix-git/doc/guix.texi:3252 #, no-wrap msgid "--install-from-expression=@var{exp}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3236 +#: guix-git/doc/guix.texi:3253 #, no-wrap msgid "-e @var{exp}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3238 +#: guix-git/doc/guix.texi:3255 msgid "Install the package @var{exp} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3243 +#: guix-git/doc/guix.texi:3260 msgid "@var{exp} must be a Scheme expression that evaluates to a @code{} object. This option is notably useful to disambiguate between same-named variants of a package, with expressions such as @code{(@@ (gnu packages base) guile-final)}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3247 +#: guix-git/doc/guix.texi:3264 msgid "Note that this option installs the first output of the specified package, which may be insufficient when needing a specific output of a multiple-output package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3248 +#: guix-git/doc/guix.texi:3265 #, no-wrap msgid "--install-from-file=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3249 guix-git/doc/guix.texi:5781 -#: guix-git/doc/guix.texi:11396 +#: guix-git/doc/guix.texi:3266 guix-git/doc/guix.texi:5799 +#: guix-git/doc/guix.texi:11710 #, no-wrap msgid "-f @var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3251 +#: guix-git/doc/guix.texi:3268 msgid "Install the package that the code within @var{file} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3254 guix-git/doc/guix.texi:5787 -#: guix-git/doc/guix.texi:6162 +#: guix-git/doc/guix.texi:3271 guix-git/doc/guix.texi:5805 +#: guix-git/doc/guix.texi:6199 msgid "As an example, @var{file} might contain a definition like this (@pxref{Defining Packages}):" msgstr "" #. type: include -#: guix-git/doc/guix.texi:3256 guix-git/doc/guix.texi:11404 +#: guix-git/doc/guix.texi:3273 guix-git/doc/guix.texi:11718 #, no-wrap msgid "package-hello.scm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3263 +#: guix-git/doc/guix.texi:3280 msgid "Developers may find it useful to include such a @file{guix.scm} file in the root of their project source tree that can be used to test development snapshots and create reproducible development environments (@pxref{Invoking guix shell})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3268 +#: guix-git/doc/guix.texi:3285 msgid "The @var{file} may also contain a JSON representation of one or more package definitions. Running @code{guix package -f} on @file{hello.json} with the following contents would result in installing the package @code{greeter} after building @code{myhello}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3271 guix-git/doc/guix.texi:11414 +#: guix-git/doc/guix.texi:3288 guix-git/doc/guix.texi:11728 #, no-wrap msgid "@verbatiminclude package-hello.json\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3273 +#: guix-git/doc/guix.texi:3290 #, no-wrap msgid "--remove=@var{package} @dots{}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3274 +#: guix-git/doc/guix.texi:3291 #, no-wrap msgid "-r @var{package} @dots{}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3276 +#: guix-git/doc/guix.texi:3293 msgid "Remove the specified @var{package}s." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3281 +#: guix-git/doc/guix.texi:3298 msgid "As for @option{--install}, each @var{package} may specify a version number and/or output name in addition to the package name. For instance, @samp{-r glibc:debug} would remove the @code{debug} output of @code{glibc}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3282 +#: guix-git/doc/guix.texi:3299 #, no-wrap msgid "--upgrade[=@var{regexp} @dots{}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3283 +#: guix-git/doc/guix.texi:3300 #, no-wrap msgid "-u [@var{regexp} @dots{}]" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3284 +#: guix-git/doc/guix.texi:3301 #, no-wrap msgid "upgrading packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3288 +#: guix-git/doc/guix.texi:3305 msgid "Upgrade all the installed packages. If one or more @var{regexp}s are specified, upgrade only installed packages whose name matches a @var{regexp}. Also see the @option{--do-not-upgrade} option below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3293 +#: guix-git/doc/guix.texi:3310 msgid "Note that this upgrades package to the latest version of packages found in the distribution currently installed. To update your distribution, you should regularly run @command{guix pull} (@pxref{Invoking guix pull})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3294 +#: guix-git/doc/guix.texi:3311 #, no-wrap msgid "package transformations, upgrades" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3299 +#: guix-git/doc/guix.texi:3316 msgid "When upgrading, package transformations that were originally applied when creating the profile are automatically re-applied (@pxref{Package Transformation Options}). For example, assume you first installed Emacs from the tip of its development branch with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3302 +#: guix-git/doc/guix.texi:3319 #, no-wrap msgid "guix install emacs-next --with-branch=emacs-next=master\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3307 +#: guix-git/doc/guix.texi:3324 msgid "Next time you run @command{guix upgrade}, Guix will again pull the tip of the Emacs development branch and build @code{emacs-next} from that checkout." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3312 +#: guix-git/doc/guix.texi:3329 msgid "Note that transformation options such as @option{--with-branch} and @option{--with-source} depend on external state; it is up to you to ensure that they work as expected. You can also discard a transformations that apply to a package by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3315 +#: guix-git/doc/guix.texi:3332 #, no-wrap msgid "guix install @var{package}\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3317 +#: guix-git/doc/guix.texi:3334 #, no-wrap msgid "--do-not-upgrade[=@var{regexp} @dots{}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3322 +#: guix-git/doc/guix.texi:3339 msgid "When used together with the @option{--upgrade} option, do @emph{not} upgrade any packages whose name matches a @var{regexp}. For example, to upgrade all packages in the current profile except those containing the substring ``emacs'':" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3325 +#: guix-git/doc/guix.texi:3342 #, no-wrap msgid "$ guix package --upgrade . --do-not-upgrade emacs\n" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3327 +#: guix-git/doc/guix.texi:3344 #, no-wrap msgid "profile-manifest" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3327 guix-git/doc/guix.texi:5799 -#: guix-git/doc/guix.texi:6167 guix-git/doc/guix.texi:6615 -#: guix-git/doc/guix.texi:12535 guix-git/doc/guix.texi:14135 +#: guix-git/doc/guix.texi:3344 guix-git/doc/guix.texi:5817 +#: guix-git/doc/guix.texi:6204 guix-git/doc/guix.texi:6658 +#: guix-git/doc/guix.texi:12850 guix-git/doc/guix.texi:14492 #, no-wrap msgid "--manifest=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3328 guix-git/doc/guix.texi:5800 -#: guix-git/doc/guix.texi:6168 guix-git/doc/guix.texi:6616 -#: guix-git/doc/guix.texi:12536 +#: guix-git/doc/guix.texi:3345 guix-git/doc/guix.texi:5818 +#: guix-git/doc/guix.texi:6205 guix-git/doc/guix.texi:6659 +#: guix-git/doc/guix.texi:12851 #, no-wrap msgid "-m @var{file}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3329 +#: guix-git/doc/guix.texi:3346 #, no-wrap msgid "profile declaration" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3330 +#: guix-git/doc/guix.texi:3347 #, no-wrap msgid "profile manifest" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3334 +#: guix-git/doc/guix.texi:3351 msgid "Create a new generation of the profile from the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3340 +#: guix-git/doc/guix.texi:3357 msgid "This allows you to @emph{declare} the profile's contents rather than constructing it through a sequence of @option{--install} and similar commands. The advantage is that @var{file} can be put under version control, copied to different machines to reproduce the same profile, and so on." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3344 +#: guix-git/doc/guix.texi:3361 msgid "@var{file} must return a @dfn{manifest} object, which is roughly a list of packages:" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:3345 +#: guix-git/doc/guix.texi:3362 #, no-wrap msgid "packages->manifest" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3348 +#: guix-git/doc/guix.texi:3365 #, no-wrap msgid "" "(use-package-modules guile emacs)\n" @@ -9050,7 +9106,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3354 +#: guix-git/doc/guix.texi:3371 #, no-wrap msgid "" "(packages->manifest\n" @@ -9061,18 +9117,18 @@ msgid "" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:3356 +#: guix-git/doc/guix.texi:3373 #, no-wrap msgid "specifications->manifest" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3363 +#: guix-git/doc/guix.texi:3380 msgid "In this example we have to know which modules define the @code{emacs} and @code{guile-2.0} variables to provide the right @code{use-package-modules} line, which can be cumbersome. We can instead provide regular package specifications and let @code{specifications->manifest} look up the corresponding package objects, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3367 +#: guix-git/doc/guix.texi:3384 #, no-wrap msgid "" "(specifications->manifest\n" @@ -9080,150 +9136,150 @@ msgid "" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:3369 +#: guix-git/doc/guix.texi:3386 #, no-wrap msgid "package->development-manifest" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3372 +#: guix-git/doc/guix.texi:3389 msgid "You might also want to create a manifest for all the dependencies of a package, rather than the package itself:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3375 +#: guix-git/doc/guix.texi:3392 #, no-wrap msgid "(package->development-manifest (specification->package \"emacs\"))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3379 +#: guix-git/doc/guix.texi:3396 msgid "The example above gives you all the software required to develop Emacs, similar to what @command{guix environment emacs} provides." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3382 +#: guix-git/doc/guix.texi:3399 msgid "@xref{export-manifest, @option{--export-manifest}}, to learn how to obtain a manifest file from an existing profile." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3383 guix-git/doc/guix.texi:4492 +#: guix-git/doc/guix.texi:3400 guix-git/doc/guix.texi:4510 #, no-wrap msgid "--roll-back" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3384 guix-git/doc/guix.texi:4493 -#: guix-git/doc/guix.texi:35006 guix-git/doc/guix.texi:37641 +#: guix-git/doc/guix.texi:3401 guix-git/doc/guix.texi:4511 +#: guix-git/doc/guix.texi:35445 guix-git/doc/guix.texi:38120 #, no-wrap msgid "rolling back" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3385 guix-git/doc/guix.texi:4494 +#: guix-git/doc/guix.texi:3402 guix-git/doc/guix.texi:4512 #, no-wrap msgid "undoing transactions" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3386 guix-git/doc/guix.texi:4495 +#: guix-git/doc/guix.texi:3403 guix-git/doc/guix.texi:4513 #, no-wrap msgid "transactions, undoing" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3389 +#: guix-git/doc/guix.texi:3406 msgid "Roll back to the previous @dfn{generation} of the profile---i.e., undo the last transaction." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3392 +#: guix-git/doc/guix.texi:3409 msgid "When combined with options such as @option{--install}, roll back occurs before any other actions." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3396 +#: guix-git/doc/guix.texi:3413 msgid "When rolling back from the first generation that actually contains installed packages, the profile is made to point to the @dfn{zeroth generation}, which contains no files apart from its own metadata." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3400 +#: guix-git/doc/guix.texi:3417 msgid "After having rolled back, installing, removing, or upgrading packages overwrites previous future generations. Thus, the history of the generations in a profile is always linear." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3401 guix-git/doc/guix.texi:4499 +#: guix-git/doc/guix.texi:3418 guix-git/doc/guix.texi:4517 #, no-wrap msgid "--switch-generation=@var{pattern}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3402 guix-git/doc/guix.texi:4500 +#: guix-git/doc/guix.texi:3419 guix-git/doc/guix.texi:4518 #, no-wrap msgid "-S @var{pattern}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3403 guix-git/doc/guix.texi:3635 -#: guix-git/doc/guix.texi:4501 guix-git/doc/guix.texi:34964 +#: guix-git/doc/guix.texi:3420 guix-git/doc/guix.texi:3653 +#: guix-git/doc/guix.texi:4519 guix-git/doc/guix.texi:35403 #, no-wrap msgid "generations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3405 guix-git/doc/guix.texi:4503 +#: guix-git/doc/guix.texi:3422 guix-git/doc/guix.texi:4521 msgid "Switch to a particular generation defined by @var{pattern}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3411 guix-git/doc/guix.texi:4509 +#: guix-git/doc/guix.texi:3428 guix-git/doc/guix.texi:4527 msgid "@var{pattern} may be either a generation number or a number prefixed with ``+'' or ``-''. The latter means: move forward/backward by a specified number of generations. For example, if you want to return to the latest generation after @option{--roll-back}, use @option{--switch-generation=+1}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3416 +#: guix-git/doc/guix.texi:3433 msgid "The difference between @option{--roll-back} and @option{--switch-generation=-1} is that @option{--switch-generation} will not make a zeroth generation, so if a specified generation does not exist, the current generation will not be changed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3417 +#: guix-git/doc/guix.texi:3434 #, no-wrap msgid "--search-paths[=@var{kind}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3423 +#: guix-git/doc/guix.texi:3440 msgid "Report environment variable definitions, in Bash syntax, that may be needed in order to use the set of installed packages. These environment variables are used to specify @dfn{search paths} for files used by some of the installed packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3431 -msgid "For example, GCC needs the @env{CPATH} and @env{LIBRARY_PATH} environment variables to be defined so it can look for headers and libraries in the user's profile (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C library are installed in the profile, then @option{--search-paths} will suggest setting these variables to @file{@var{profile}/include} and @file{@var{profile}/lib}, respectively." +#: guix-git/doc/guix.texi:3449 +msgid "For example, GCC needs the @env{CPATH} and @env{LIBRARY_PATH} environment variables to be defined so it can look for headers and libraries in the user's profile (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C library are installed in the profile, then @option{--search-paths} will suggest setting these variables to @file{@var{profile}/include} and @file{@var{profile}/lib}, respectively (@pxref{Search Paths}, for info on search path specifications associated with packages.)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3434 +#: guix-git/doc/guix.texi:3452 msgid "The typical use case is to define these environment variables in the shell:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3437 +#: guix-git/doc/guix.texi:3455 #, no-wrap msgid "$ eval `guix package --search-paths`\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3443 +#: guix-git/doc/guix.texi:3461 msgid "@var{kind} may be one of @code{exact}, @code{prefix}, or @code{suffix}, meaning that the returned environment variable definitions will either be exact settings, or prefixes or suffixes of the current value of these variables. When omitted, @var{kind} defaults to @code{exact}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3446 +#: guix-git/doc/guix.texi:3464 msgid "This option can also be used to compute the @emph{combined} search paths of several profiles. Consider this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3451 +#: guix-git/doc/guix.texi:3469 #, no-wrap msgid "" "$ guix package -p foo -i guile\n" @@ -9232,42 +9288,44 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3456 +#: guix-git/doc/guix.texi:3474 msgid "The last command above reports about the @env{GUILE_LOAD_PATH} variable, even though, taken individually, neither @file{foo} nor @file{bar} would lead to that recommendation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3458 +#: guix-git/doc/guix.texi:3476 #, no-wrap msgid "profile, choosing" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3459 guix-git/doc/guix.texi:4529 -#: guix-git/doc/guix.texi:4858 +#: guix-git/doc/guix.texi:3477 guix-git/doc/guix.texi:4547 +#: guix-git/doc/guix.texi:4876 guix-git/doc/guix.texi:5827 +#: guix-git/doc/guix.texi:6240 #, no-wrap msgid "--profile=@var{profile}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3460 guix-git/doc/guix.texi:4530 -#: guix-git/doc/guix.texi:4859 +#: guix-git/doc/guix.texi:3478 guix-git/doc/guix.texi:4548 +#: guix-git/doc/guix.texi:4877 guix-git/doc/guix.texi:5828 +#: guix-git/doc/guix.texi:6241 #, no-wrap msgid "-p @var{profile}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3462 +#: guix-git/doc/guix.texi:3480 msgid "Use @var{profile} instead of the user's default profile." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3467 +#: guix-git/doc/guix.texi:3485 msgid "@var{profile} must be the name of a file that will be created upon completion. Concretely, @var{profile} will be a mere symbolic link (``symlink'') pointing to the actual profile where packages are installed:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3473 +#: guix-git/doc/guix.texi:3491 #, no-wrap msgid "" "$ guix install hello -p ~/code/my-profile\n" @@ -9277,29 +9335,29 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3477 +#: guix-git/doc/guix.texi:3495 msgid "All it takes to get rid of the profile is to remove this symlink and its siblings that point to specific generations:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3480 +#: guix-git/doc/guix.texi:3498 #, no-wrap msgid "$ rm ~/code/my-profile ~/code/my-profile-*-link\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3482 +#: guix-git/doc/guix.texi:3500 #, no-wrap msgid "--list-profiles" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3484 +#: guix-git/doc/guix.texi:3502 msgid "List all the user's profiles:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3491 +#: guix-git/doc/guix.texi:3509 #, no-wrap msgid "" "$ guix package --list-profiles\n" @@ -9310,96 +9368,96 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3494 +#: guix-git/doc/guix.texi:3512 msgid "When running as root, list all the profiles of all the users." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3495 +#: guix-git/doc/guix.texi:3513 #, no-wrap msgid "collisions, in a profile" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3496 +#: guix-git/doc/guix.texi:3514 #, no-wrap msgid "colliding packages in profiles" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3497 +#: guix-git/doc/guix.texi:3515 #, no-wrap msgid "profile collisions" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3498 +#: guix-git/doc/guix.texi:3516 #, no-wrap msgid "--allow-collisions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3500 +#: guix-git/doc/guix.texi:3518 msgid "Allow colliding packages in the new profile. Use at your own risk!" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3504 +#: guix-git/doc/guix.texi:3522 msgid "By default, @command{guix package} reports as an error @dfn{collisions} in the profile. Collisions happen when two or more different versions or variants of a given package end up in the profile." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3505 guix-git/doc/guix.texi:4572 -#: guix-git/doc/guix.texi:6701 +#: guix-git/doc/guix.texi:3523 guix-git/doc/guix.texi:4590 +#: guix-git/doc/guix.texi:6744 #, no-wrap msgid "--bootstrap" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3508 +#: guix-git/doc/guix.texi:3526 msgid "Use the bootstrap Guile to build the profile. This option is only useful to distribution developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3514 +#: guix-git/doc/guix.texi:3532 msgid "In addition to these actions, @command{guix package} supports the following options to query the current state of a profile, or the availability of packages:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3517 +#: guix-git/doc/guix.texi:3535 #, no-wrap msgid "--search=@var{regexp}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3518 +#: guix-git/doc/guix.texi:3536 #, no-wrap msgid "-s @var{regexp}" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3520 +#: guix-git/doc/guix.texi:3538 msgid "guix-search" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3520 +#: guix-git/doc/guix.texi:3538 #, no-wrap msgid "searching for packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3526 +#: guix-git/doc/guix.texi:3544 msgid "List the available packages whose name, synopsis, or description matches @var{regexp} (in a case-insensitive fashion), sorted by relevance. Print all the metadata of matching packages in @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3529 +#: guix-git/doc/guix.texi:3547 msgid "This allows specific fields to be extracted using the @command{recsel} command, for instance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3535 +#: guix-git/doc/guix.texi:3553 #, no-wrap msgid "" "$ guix package -s malloc | recsel -p name,version,relevance\n" @@ -9410,7 +9468,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3539 +#: guix-git/doc/guix.texi:3557 #, no-wrap msgid "" "name: glibc\n" @@ -9420,7 +9478,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3543 +#: guix-git/doc/guix.texi:3561 #, no-wrap msgid "" "name: libgc\n" @@ -9429,12 +9487,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3547 +#: guix-git/doc/guix.texi:3565 msgid "Similarly, to show the name of all the packages available under the terms of the GNU@tie{}LGPL version 3:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3551 +#: guix-git/doc/guix.texi:3569 #, no-wrap msgid "" "$ guix package -s \"\" | recsel -p name -e 'license ~ \"LGPL 3\"'\n" @@ -9443,7 +9501,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3554 +#: guix-git/doc/guix.texi:3572 #, no-wrap msgid "" "name: gmp\n" @@ -9451,12 +9509,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3560 +#: guix-git/doc/guix.texi:3578 msgid "It is also possible to refine search results using several @code{-s} flags to @command{guix package}, or several arguments to @command{guix search}. For example, the following command returns a list of board games (this time using the @command{guix search} alias):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3565 +#: guix-git/doc/guix.texi:3583 #, no-wrap msgid "" "$ guix search '\\' game | recsel -p name\n" @@ -9465,17 +9523,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3571 +#: guix-git/doc/guix.texi:3589 msgid "If we were to omit @code{-s game}, we would also get software packages that deal with printed circuit boards; removing the angle brackets around @code{board} would further add packages that have to do with keyboards." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3575 +#: guix-git/doc/guix.texi:3593 msgid "And now for a more elaborate example. The following command searches for cryptographic libraries, filters out Haskell, Perl, Python, and Ruby libraries, and prints the name and synopsis of the matching packages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3579 +#: guix-git/doc/guix.texi:3597 #, no-wrap msgid "" "$ guix search crypto library | \\\n" @@ -9483,23 +9541,23 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3584 +#: guix-git/doc/guix.texi:3602 msgid "@xref{Selection Expressions,,, recutils, GNU recutils manual}, for more information on @dfn{selection expressions} for @code{recsel -e}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3585 +#: guix-git/doc/guix.texi:3603 #, no-wrap msgid "--show=@var{package}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3589 +#: guix-git/doc/guix.texi:3607 msgid "Show details about @var{package}, taken from the list of available packages, in @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:3594 +#: guix-git/doc/guix.texi:3612 #, no-wrap msgid "" "$ guix package --show=guile | recsel -p name,version\n" @@ -9509,7 +9567,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3597 +#: guix-git/doc/guix.texi:3615 #, no-wrap msgid "" "name: guile\n" @@ -9518,7 +9576,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3601 +#: guix-git/doc/guix.texi:3619 #, no-wrap msgid "" "name: guile\n" @@ -9527,12 +9585,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3605 +#: guix-git/doc/guix.texi:3623 msgid "You may also specify the full name of a package to only get details about a specific version of it (this time using the @command{guix show} alias):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3609 +#: guix-git/doc/guix.texi:3627 #, no-wrap msgid "" "$ guix show guile@@3.0.5 | recsel -p name,version\n" @@ -9541,297 +9599,297 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3611 +#: guix-git/doc/guix.texi:3629 #, no-wrap msgid "--list-installed[=@var{regexp}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3612 +#: guix-git/doc/guix.texi:3630 #, no-wrap msgid "-I [@var{regexp}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3616 +#: guix-git/doc/guix.texi:3634 msgid "List the currently installed packages in the specified profile, with the most recently installed packages shown last. When @var{regexp} is specified, list only installed packages whose name matches @var{regexp}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3622 +#: guix-git/doc/guix.texi:3640 msgid "For each installed package, print the following items, separated by tabs: the package name, its version string, the part of the package that is installed (for instance, @code{out} for the default output, @code{include} for its headers, etc.), and the path of this package in the store." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3623 +#: guix-git/doc/guix.texi:3641 #, no-wrap msgid "--list-available[=@var{regexp}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3624 +#: guix-git/doc/guix.texi:3642 #, no-wrap msgid "-A [@var{regexp}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3628 +#: guix-git/doc/guix.texi:3646 msgid "List packages currently available in the distribution for this system (@pxref{GNU Distribution}). When @var{regexp} is specified, list only available packages whose name matches @var{regexp}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3632 +#: guix-git/doc/guix.texi:3650 msgid "For each package, print the following items separated by tabs: its name, its version string, the parts of the package (@pxref{Packages with Multiple Outputs}), and the source location of its definition." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3633 guix-git/doc/guix.texi:4485 +#: guix-git/doc/guix.texi:3651 guix-git/doc/guix.texi:4503 #, no-wrap msgid "--list-generations[=@var{pattern}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3634 guix-git/doc/guix.texi:4486 +#: guix-git/doc/guix.texi:3652 guix-git/doc/guix.texi:4504 #, no-wrap msgid "-l [@var{pattern}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3640 +#: guix-git/doc/guix.texi:3658 msgid "Return a list of generations along with their creation dates; for each generation, show the installed packages, with the most recently installed packages shown last. Note that the zeroth generation is never shown." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3645 +#: guix-git/doc/guix.texi:3663 msgid "For each installed package, print the following items, separated by tabs: the name of a package, its version string, the part of the package that is installed (@pxref{Packages with Multiple Outputs}), and the location of this package in the store." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3648 +#: guix-git/doc/guix.texi:3666 msgid "When @var{pattern} is used, the command returns only matching generations. Valid patterns include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3650 +#: guix-git/doc/guix.texi:3668 #, no-wrap msgid "@emph{Integers and comma-separated integers}. Both patterns denote" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3653 +#: guix-git/doc/guix.texi:3671 msgid "generation numbers. For instance, @option{--list-generations=1} returns the first one." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3656 +#: guix-git/doc/guix.texi:3674 msgid "And @option{--list-generations=1,8,2} outputs three generations in the specified order. Neither spaces nor trailing commas are allowed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3657 +#: guix-git/doc/guix.texi:3675 #, no-wrap msgid "@emph{Ranges}. @option{--list-generations=2..9} prints the" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3660 +#: guix-git/doc/guix.texi:3678 msgid "specified generations and everything in between. Note that the start of a range must be smaller than its end." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3664 +#: guix-git/doc/guix.texi:3682 msgid "It is also possible to omit the endpoint. For example, @option{--list-generations=2..}, returns all generations starting from the second one." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3665 +#: guix-git/doc/guix.texi:3683 #, no-wrap msgid "@emph{Durations}. You can also get the last @emph{N}@tie{}days, weeks," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3669 +#: guix-git/doc/guix.texi:3687 msgid "or months by passing an integer along with the first letter of the duration. For example, @option{--list-generations=20d} lists generations that are up to 20 days old." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3671 guix-git/doc/guix.texi:4510 +#: guix-git/doc/guix.texi:3689 guix-git/doc/guix.texi:4528 #, no-wrap msgid "--delete-generations[=@var{pattern}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3672 guix-git/doc/guix.texi:4511 +#: guix-git/doc/guix.texi:3690 guix-git/doc/guix.texi:4529 #, no-wrap msgid "-d [@var{pattern}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3675 guix-git/doc/guix.texi:4514 +#: guix-git/doc/guix.texi:3693 guix-git/doc/guix.texi:4532 msgid "When @var{pattern} is omitted, delete all generations except the current one." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3681 guix-git/doc/guix.texi:4520 +#: guix-git/doc/guix.texi:3699 guix-git/doc/guix.texi:4538 msgid "This command accepts the same patterns as @option{--list-generations}. When @var{pattern} is specified, delete the matching generations. When @var{pattern} specifies a duration, generations @emph{older} than the specified duration match. For instance, @option{--delete-generations=1m} deletes generations that are more than one month old." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3684 +#: guix-git/doc/guix.texi:3702 msgid "If the current generation matches, it is @emph{not} deleted. Also, the zeroth generation is never deleted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3687 guix-git/doc/guix.texi:4525 +#: guix-git/doc/guix.texi:3705 guix-git/doc/guix.texi:4543 msgid "Note that deleting generations prevents rolling back to them. Consequently, this command must be used with care." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3688 +#: guix-git/doc/guix.texi:3706 #, no-wrap msgid "manifest, exporting" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3690 +#: guix-git/doc/guix.texi:3708 msgid "export-manifest" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3690 +#: guix-git/doc/guix.texi:3708 #, no-wrap msgid "--export-manifest" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3693 +#: guix-git/doc/guix.texi:3711 msgid "Write to standard output a manifest suitable for @option{--manifest} corresponding to the chosen profile(s)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3697 +#: guix-git/doc/guix.texi:3715 msgid "This option is meant to help you migrate from the ``imperative'' operating mode---running @command{guix install}, @command{guix upgrade}, etc.---to the declarative mode that @option{--manifest} offers." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3702 +#: guix-git/doc/guix.texi:3720 msgid "Be aware that the resulting manifest @emph{approximates} what your profile actually contains; for instance, depending on how your profile was created, it can refer to packages or package versions that are not exactly what you specified." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3707 +#: guix-git/doc/guix.texi:3725 msgid "Keep in mind that a manifest is purely symbolic: it only contains package names and possibly versions, and their meaning varies over time. If you wish to ``pin'' channels to the revisions that were used to build the profile(s), see @option{--export-channels} below." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3708 +#: guix-git/doc/guix.texi:3726 #, no-wrap msgid "pinning, channel revisions of a profile" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3709 +#: guix-git/doc/guix.texi:3727 #, no-wrap msgid "--export-channels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3713 +#: guix-git/doc/guix.texi:3731 msgid "Write to standard output the list of channels used by the chosen profile(s), in a format suitable for @command{guix pull --channels} or @command{guix time-machine --channels} (@pxref{Channels})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3717 +#: guix-git/doc/guix.texi:3735 msgid "Together with @option{--export-manifest}, this option provides information allowing you to replicate the current profile (@pxref{Replicating Guix})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3725 +#: guix-git/doc/guix.texi:3743 msgid "However, note that the output of this command @emph{approximates} what was actually used to build this profile. In particular, a single profile might have been built from several different revisions of the same channel. In that case, @option{--export-manifest} chooses the last one and writes the list of other revisions in a comment. If you really need to pick packages from different channel revisions, you can use inferiors in your manifest to do so (@pxref{Inferiors})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3730 +#: guix-git/doc/guix.texi:3748 msgid "Together with @option{--export-manifest}, this is a good starting point if you are willing to migrate from the ``imperative'' model to the fully declarative model consisting of a manifest file along with a channels file pinning the exact channel revision(s) you want." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3737 +#: guix-git/doc/guix.texi:3755 msgid "Finally, since @command{guix package} may actually start build processes, it supports all the common build options (@pxref{Common Build Options}). It also supports package transformation options, such as @option{--with-source}, and preserves them across upgrades (@pxref{Package Transformation Options})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3742 +#: guix-git/doc/guix.texi:3760 #, no-wrap msgid "pre-built binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3748 +#: guix-git/doc/guix.texi:3766 msgid "Guix supports transparent source/binary deployment, which means that it can either build things locally, or download pre-built items from a server, or both. We call these pre-built items @dfn{substitutes}---they are substitutes for local build results. In many cases, downloading a substitute is much faster than building things locally." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3753 +#: guix-git/doc/guix.texi:3771 msgid "Substitutes can be anything resulting from a derivation build (@pxref{Derivations}). Of course, in the common case, they are pre-built package binaries, but source tarballs, for instance, which also result from derivation builds, can be available as substitutes." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3767 +#: guix-git/doc/guix.texi:3785 #, no-wrap msgid "build farm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3778 +#: guix-git/doc/guix.texi:3796 msgid "@code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} are both front-ends to official build farms that build packages from Guix continuously for some architectures, and make them available as substitutes. These are the default source of substitutes; which can be overridden by passing the @option{--substitute-urls} option either to @command{guix-daemon} (@pxref{daemon-substitute-urls,, @code{guix-daemon --substitute-urls}}) or to client tools such as @command{guix package} (@pxref{client-substitute-urls,, client @option{--substitute-urls} option})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3784 +#: guix-git/doc/guix.texi:3802 msgid "Substitute URLs can be either HTTP or HTTPS. HTTPS is recommended because communications are encrypted; conversely, using HTTP makes all communications visible to an eavesdropper, who could use the information gathered to determine, for instance, whether your system has unpatched security vulnerabilities." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3793 +#: guix-git/doc/guix.texi:3811 msgid "Substitutes from the official build farms are enabled by default when using Guix System (@pxref{GNU Distribution}). However, they are disabled by default when using Guix on a foreign distribution, unless you have explicitly enabled them via one of the recommended installation steps (@pxref{Installation}). The following paragraphs describe how to enable or disable substitutes for the official build farm; the same procedure can also be used to enable substitutes for any other substitute server." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3797 +#: guix-git/doc/guix.texi:3815 #, no-wrap msgid "security" -msgstr "" +msgstr "bezpečnosť" #. type: cindex -#: guix-git/doc/guix.texi:3799 +#: guix-git/doc/guix.texi:3817 #, no-wrap msgid "access control list (ACL), for substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3800 +#: guix-git/doc/guix.texi:3818 #, no-wrap msgid "ACL (access control list), for substitutes" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3806 +#: guix-git/doc/guix.texi:3824 msgid "To allow Guix to download substitutes from @code{@value{SUBSTITUTE-SERVER-1}}, @code{@value{SUBSTITUTE-SERVER-2}} or a mirror, you must add the relevant public key to the access control list (ACL) of archive imports, using the @command{guix archive} command (@pxref{Invoking guix archive}). Doing so implies that you trust the substitute server to not be compromised and to serve genuine substitutes." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:3811 +#: guix-git/doc/guix.texi:3829 msgid "If you are using Guix System, you can skip this section: Guix System authorizes substitutes from @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} by default." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3819 +#: guix-git/doc/guix.texi:3837 msgid "The public keys for each of the project maintained substitute servers are installed along with Guix, in @code{@var{prefix}/share/guix/}, where @var{prefix} is the installation prefix of Guix. If you installed Guix from source, make sure you checked the GPG signature of @file{guix-@value{VERSION}.tar.gz}, which contains this public key file. Then, you can run something like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3823 +#: guix-git/doc/guix.texi:3841 #, no-wrap msgid "" "# guix archive --authorize < @var{prefix}/share/guix/@value{SUBSTITUTE-SERVER-1}.pub\n" @@ -9839,12 +9897,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3827 +#: guix-git/doc/guix.texi:3845 msgid "Once this is in place, the output of a command like @code{guix build} should change from something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3836 +#: guix-git/doc/guix.texi:3854 #, no-wrap msgid "" "$ guix build emacs --dry-run\n" @@ -9857,12 +9915,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3840 +#: guix-git/doc/guix.texi:3858 msgid "to something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3849 +#: guix-git/doc/guix.texi:3867 #, no-wrap msgid "" "$ guix build emacs --dry-run\n" @@ -9875,49 +9933,49 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3856 +#: guix-git/doc/guix.texi:3874 msgid "The text changed from ``The following derivations would be built'' to ``112.3 MB would be downloaded''. This indicates that substitutes from the configured substitute servers are usable and will be downloaded, when possible, for future builds." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3857 +#: guix-git/doc/guix.texi:3875 #, no-wrap msgid "substitutes, how to disable" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3863 +#: guix-git/doc/guix.texi:3881 msgid "The substitute mechanism can be disabled globally by running @code{guix-daemon} with @option{--no-substitutes} (@pxref{Invoking guix-daemon}). It can also be disabled temporarily by passing the @option{--no-substitutes} option to @command{guix package}, @command{guix build}, and other command-line tools." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3867 +#: guix-git/doc/guix.texi:3885 #, no-wrap msgid "substitute servers, adding more" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3874 +#: guix-git/doc/guix.texi:3892 msgid "Guix can look up and fetch substitutes from several servers. This is useful when you are using packages from additional channels for which the official server does not have substitutes but another server provides them. Another situation where this is useful is when you would prefer to download from your organization's substitute server, resorting to the official server only as a fallback or dismissing it altogether." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3879 +#: guix-git/doc/guix.texi:3897 msgid "You can give Guix a list of substitute server URLs and it will check them in the specified order. You also need to explicitly authorize the public keys of substitute servers to instruct Guix to accept the substitutes they sign." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3886 +#: guix-git/doc/guix.texi:3904 msgid "On Guix System, this is achieved by modifying the configuration of the @code{guix} service. Since the @code{guix} service is part of the default lists of services, @code{%base-services} and @code{%desktop-services}, you can use @code{modify-services} to change its configuration and add the URLs and substitute keys that you want (@pxref{Service Reference, @code{modify-services}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3892 +#: guix-git/doc/guix.texi:3910 msgid "As an example, suppose you want to fetch substitutes from @code{guix.example.org} and to authorize the signing key of that server, in addition to the default @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}}. The resulting operating system configuration will look something like:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3909 +#: guix-git/doc/guix.texi:3927 #, no-wrap msgid "" "(operating-system\n" @@ -9938,12 +9996,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3916 +#: guix-git/doc/guix.texi:3934 msgid "This assumes that the file @file{key.pub} contains the signing key of @code{guix.example.org}. With this change in place in your operating system configuration file (say @file{/etc/config.scm}), you can reconfigure and restart the @code{guix-daemon} service or reboot so the changes take effect:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3920 +#: guix-git/doc/guix.texi:3938 #, no-wrap msgid "" "$ sudo guix system reconfigure /etc/config.scm\n" @@ -9951,28 +10009,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3924 +#: guix-git/doc/guix.texi:3942 msgid "If you're running Guix on a ``foreign distro'', you would instead take the following steps to get substitutes from additional servers:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:3933 +#: guix-git/doc/guix.texi:3951 msgid "Edit the service configuration file for @code{guix-daemon}; when using systemd, this is normally @file{/etc/systemd/system/guix-daemon.service}. Add the @option{--substitute-urls} option on the @command{guix-daemon} command line and list the URLs of interest (@pxref{daemon-substitute-urls, @code{guix-daemon --substitute-urls}}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3936 +#: guix-git/doc/guix.texi:3954 #, no-wrap msgid "@dots{} --substitute-urls='https://guix.example.org @value{SUBSTITUTE-URLS}'\n" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:3940 +#: guix-git/doc/guix.texi:3958 msgid "Restart the daemon. For systemd, it goes like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3944 +#: guix-git/doc/guix.texi:3962 #, no-wrap msgid "" "systemctl daemon-reload\n" @@ -9980,651 +10038,651 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:3948 +#: guix-git/doc/guix.texi:3966 msgid "Authorize the key of the new server (@pxref{Invoking guix archive}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3951 +#: guix-git/doc/guix.texi:3969 #, no-wrap msgid "guix archive --authorize < key.pub\n" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:3955 +#: guix-git/doc/guix.texi:3973 msgid "Again this assumes @file{key.pub} contains the public key that @code{guix.example.org} uses to sign substitutes." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3964 +#: guix-git/doc/guix.texi:3982 msgid "Now you're all set! Substitutes will be preferably taken from @code{https://guix.example.org}, using @code{@value{SUBSTITUTE-SERVER-1}} then @code{@value{SUBSTITUTE-SERVER-2}} as fallback options. Of course you can list as many substitute servers as you like, with the caveat that substitute lookup can be slowed down if too many servers need to be contacted." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3968 +#: guix-git/doc/guix.texi:3986 msgid "Note that there are also situations where one may want to add the URL of a substitute server @emph{without} authorizing its key. @xref{Substitute Authentication}, to understand this fine point." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3972 +#: guix-git/doc/guix.texi:3990 #, no-wrap msgid "digital signatures" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3976 +#: guix-git/doc/guix.texi:3994 msgid "Guix detects and raises an error when attempting to use a substitute that has been tampered with. Likewise, it ignores substitutes that are not signed, or that are not signed by one of the keys listed in the ACL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3982 +#: guix-git/doc/guix.texi:4000 msgid "There is one exception though: if an unauthorized server provides substitutes that are @emph{bit-for-bit identical} to those provided by an authorized server, then the unauthorized server becomes eligible for downloads. For example, assume we have chosen two substitute servers with this option:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3985 +#: guix-git/doc/guix.texi:4003 #, no-wrap msgid "--substitute-urls=\"https://a.example.org https://b.example.org\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3996 +#: guix-git/doc/guix.texi:4014 msgid "If the ACL contains only the key for @samp{b.example.org}, and if @samp{a.example.org} happens to serve the @emph{exact same} substitutes, then Guix will download substitutes from @samp{a.example.org} because it comes first in the list and can be considered a mirror of @samp{b.example.org}. In practice, independent build machines usually produce the same binaries, thanks to bit-reproducible builds (see below)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4003 +#: guix-git/doc/guix.texi:4021 msgid "When using HTTPS, the server's X.509 certificate is @emph{not} validated (in other words, the server is not authenticated), contrary to what HTTPS clients such as Web browsers usually do. This is because Guix authenticates substitute information itself, as explained above, which is what we care about (whereas X.509 certificates are about authenticating bindings between domain names and public keys)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4015 +#: guix-git/doc/guix.texi:4033 msgid "Substitutes are downloaded over HTTP or HTTPS@. The @env{http_proxy} and @env{https_proxy} environment variables can be set in the environment of @command{guix-daemon} and are honored for downloads of substitutes. Note that the value of those environment variables in the environment where @command{guix build}, @command{guix package}, and other client commands are run has @emph{absolutely no effect}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4024 +#: guix-git/doc/guix.texi:4042 msgid "Even when a substitute for a derivation is available, sometimes the substitution attempt will fail. This can happen for a variety of reasons: the substitute server might be offline, the substitute may recently have been deleted, the connection might have been interrupted, etc." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4038 +#: guix-git/doc/guix.texi:4056 msgid "When substitutes are enabled and a substitute for a derivation is available, but the substitution attempt fails, Guix will attempt to build the derivation locally depending on whether or not @option{--fallback} was given (@pxref{fallback-option,, common build option @option{--fallback}}). Specifically, if @option{--fallback} was omitted, then no local build will be performed, and the derivation is considered to have failed. However, if @option{--fallback} was given, then Guix will attempt to build the derivation locally, and the success or failure of the derivation depends on the success or failure of the local build. Note that when substitutes are disabled or no substitute is available for the derivation in question, a local build will @emph{always} be performed, regardless of whether or not @option{--fallback} was given." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4043 +#: guix-git/doc/guix.texi:4061 msgid "To get an idea of how many substitutes are available right now, you can try running the @command{guix weather} command (@pxref{Invoking guix weather}). This command provides statistics on the substitutes provided by a server." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4047 +#: guix-git/doc/guix.texi:4065 #, no-wrap msgid "trust, of pre-built binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4057 +#: guix-git/doc/guix.texi:4075 msgid "Today, each individual's control over their own computing is at the mercy of institutions, corporations, and groups with enough power and determination to subvert the computing infrastructure and exploit its weaknesses. While using substitutes can be convenient, we encourage users to also build on their own, or even run their own build farm, such that the project run substitute servers are less of an interesting target. One way to help is by publishing the software you build using @command{guix publish} so that others have one more choice of server to download substitutes from (@pxref{Invoking guix publish})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4069 +#: guix-git/doc/guix.texi:4087 msgid "Guix has the foundations to maximize build reproducibility (@pxref{Features}). In most cases, independent builds of a given package or derivation should yield bit-identical results. Thus, through a diverse set of independent package builds, we can strengthen the integrity of our systems. The @command{guix challenge} command aims to help users assess substitute servers, and to assist developers in finding out about non-deterministic package builds (@pxref{Invoking guix challenge}). Similarly, the @option{--check} option of @command{guix build} allows users to check whether previously-installed substitutes are genuine by rebuilding them locally (@pxref{build-check, @command{guix build --check}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4073 +#: guix-git/doc/guix.texi:4091 msgid "In the future, we want Guix to have support to publish and retrieve binaries to/from other users, in a peer-to-peer fashion. If you would like to discuss this project, join us on @email{guix-devel@@gnu.org}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4077 +#: guix-git/doc/guix.texi:4095 #, no-wrap msgid "multiple-output packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4078 +#: guix-git/doc/guix.texi:4096 #, no-wrap msgid "package outputs" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4079 +#: guix-git/doc/guix.texi:4097 #, no-wrap msgid "outputs" -msgstr "" +msgstr "výstupy" #. type: Plain text -#: guix-git/doc/guix.texi:4089 +#: guix-git/doc/guix.texi:4107 msgid "Often, packages defined in Guix have a single @dfn{output}---i.e., the source package leads to exactly one directory in the store. When running @command{guix install glibc}, one installs the default output of the GNU libc package; the default output is called @code{out}, but its name can be omitted as shown in this command. In this particular case, the default output of @code{glibc} contains all the C header files, shared libraries, static libraries, Info documentation, and other supporting files." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4097 +#: guix-git/doc/guix.texi:4115 msgid "Sometimes it is more appropriate to separate the various types of files produced from a single source package into separate outputs. For instance, the GLib C library (used by GTK+ and related packages) installs more than 20 MiB of reference documentation as HTML pages. To save space for users who do not need it, the documentation goes to a separate output, called @code{doc}. To install the main GLib output, which contains everything but the documentation, one would run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4100 +#: guix-git/doc/guix.texi:4118 #, no-wrap msgid "guix install glib\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4102 guix-git/doc/guix.texi:36368 -#: guix-git/doc/guix.texi:36425 +#: guix-git/doc/guix.texi:4120 guix-git/doc/guix.texi:36858 +#: guix-git/doc/guix.texi:36915 #, no-wrap msgid "documentation" -msgstr "" +msgstr "dokumentácia" #. type: Plain text -#: guix-git/doc/guix.texi:4104 +#: guix-git/doc/guix.texi:4122 msgid "The command to install its documentation is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4107 +#: guix-git/doc/guix.texi:4125 #, no-wrap msgid "guix install glib:doc\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4118 +#: guix-git/doc/guix.texi:4136 msgid "Some packages install programs with different ``dependency footprints''. For instance, the WordNet package installs both command-line tools and graphical user interfaces (GUIs). The former depend solely on the C library, whereas the latter depend on Tcl/Tk and the underlying X libraries. In this case, we leave the command-line tools in the default output, whereas the GUIs are in a separate output. This allows users who do not need the GUIs to save space. The @command{guix size} command can help find out about such situations (@pxref{Invoking guix size}). @command{guix graph} can also be helpful (@pxref{Invoking guix graph})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4126 +#: guix-git/doc/guix.texi:4144 msgid "There are several such multiple-output packages in the GNU distribution. Other conventional output names include @code{lib} for libraries and possibly header files, @code{bin} for stand-alone programs, and @code{debug} for debugging information (@pxref{Installing Debugging Files}). The outputs of a packages are listed in the third column of the output of @command{guix package --list-available} (@pxref{Invoking guix package})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4129 +#: guix-git/doc/guix.texi:4147 #, no-wrap msgid "Invoking @command{guix gc}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4131 +#: guix-git/doc/guix.texi:4149 #, no-wrap msgid "garbage collector" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4132 +#: guix-git/doc/guix.texi:4150 #, no-wrap msgid "disk space" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4138 +#: guix-git/doc/guix.texi:4156 msgid "Packages that are installed, but not used, may be @dfn{garbage-collected}. The @command{guix gc} command allows users to explicitly run the garbage collector to reclaim space from the @file{/gnu/store} directory. It is the @emph{only} way to remove files from @file{/gnu/store}---removing files or directories manually may break it beyond repair!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4149 +#: guix-git/doc/guix.texi:4167 msgid "The garbage collector has a set of known @dfn{roots}: any file under @file{/gnu/store} reachable from a root is considered @dfn{live} and cannot be deleted; any other file is considered @dfn{dead} and may be deleted. The set of garbage collector roots (``GC roots'' for short) includes default user profiles; by default, the symlinks under @file{/var/guix/gcroots} represent these GC roots. New GC roots can be added with @command{guix build --root}, for example (@pxref{Invoking guix build}). The @command{guix gc --list-roots} command lists them." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4155 +#: guix-git/doc/guix.texi:4173 msgid "Prior to running @code{guix gc --collect-garbage} to make space, it is often useful to remove old generations from user profiles; that way, old package builds referenced by those generations can be reclaimed. This is achieved by running @code{guix package --delete-generations} (@pxref{Invoking guix package})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4159 +#: guix-git/doc/guix.texi:4177 msgid "Our recommendation is to run a garbage collection periodically, or when you are short on disk space. For instance, to guarantee that at least 5@tie{}GB are available on your disk, simply run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4162 +#: guix-git/doc/guix.texi:4180 #, no-wrap msgid "guix gc -F 5G\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4171 +#: guix-git/doc/guix.texi:4189 msgid "It is perfectly safe to run as a non-interactive periodic job (@pxref{Scheduled Job Execution}, for how to set up such a job). Running @command{guix gc} with no arguments will collect as much garbage as it can, but that is often inconvenient: you may find yourself having to rebuild or re-download software that is ``dead'' from the GC viewpoint but that is necessary to build other pieces of software---e.g., the compiler tool chain." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4177 +#: guix-git/doc/guix.texi:4195 msgid "The @command{guix gc} command has three modes of operation: it can be used to garbage-collect any dead files (the default), to delete specific files (the @option{--delete} option), to print garbage-collector information, or for more advanced queries. The garbage collection options are as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4179 +#: guix-git/doc/guix.texi:4197 #, no-wrap msgid "--collect-garbage[=@var{min}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4180 +#: guix-git/doc/guix.texi:4198 #, no-wrap msgid "-C [@var{min}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4184 +#: guix-git/doc/guix.texi:4202 msgid "Collect garbage---i.e., unreachable @file{/gnu/store} files and sub-directories. This is the default operation when no option is specified." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4189 +#: guix-git/doc/guix.texi:4207 msgid "When @var{min} is given, stop once @var{min} bytes have been collected. @var{min} may be a number of bytes, or it may include a unit as a suffix, such as @code{MiB} for mebibytes and @code{GB} for gigabytes (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4191 +#: guix-git/doc/guix.texi:4209 msgid "When @var{min} is omitted, collect all the garbage." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4192 +#: guix-git/doc/guix.texi:4210 #, no-wrap msgid "--free-space=@var{free}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4193 +#: guix-git/doc/guix.texi:4211 #, no-wrap msgid "-F @var{free}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4197 +#: guix-git/doc/guix.texi:4215 msgid "Collect garbage until @var{free} space is available under @file{/gnu/store}, if possible; @var{free} denotes storage space, such as @code{500MiB}, as described above." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4200 +#: guix-git/doc/guix.texi:4218 msgid "When @var{free} or more is already available in @file{/gnu/store}, do nothing and exit immediately." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4201 +#: guix-git/doc/guix.texi:4219 #, no-wrap msgid "--delete-generations[=@var{duration}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4202 +#: guix-git/doc/guix.texi:4220 #, no-wrap msgid "-d [@var{duration}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4206 +#: guix-git/doc/guix.texi:4224 msgid "Before starting the garbage collection process, delete all the generations older than @var{duration}, for all the user profiles; when run as root, this applies to all the profiles @emph{of all the users}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4210 +#: guix-git/doc/guix.texi:4228 msgid "For example, this command deletes all the generations of all your profiles that are older than 2 months (except generations that are current), and then proceeds to free space until at least 10 GiB are available:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4213 +#: guix-git/doc/guix.texi:4231 #, no-wrap msgid "guix gc -d 2m -F 10G\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4215 +#: guix-git/doc/guix.texi:4233 #, no-wrap msgid "--delete" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4216 guix-git/doc/guix.texi:5740 +#: guix-git/doc/guix.texi:4234 guix-git/doc/guix.texi:5758 #, no-wrap msgid "-D" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4220 +#: guix-git/doc/guix.texi:4238 msgid "Attempt to delete all the store files and directories specified as arguments. This fails if some of the files are not in the store, or if they are still live." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4221 +#: guix-git/doc/guix.texi:4239 #, no-wrap msgid "--list-failures" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4223 +#: guix-git/doc/guix.texi:4241 msgid "List store items corresponding to cached build failures." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4227 +#: guix-git/doc/guix.texi:4245 msgid "This prints nothing unless the daemon was started with @option{--cache-failures} (@pxref{Invoking guix-daemon, @option{--cache-failures}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4228 +#: guix-git/doc/guix.texi:4246 #, no-wrap msgid "--list-roots" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4231 +#: guix-git/doc/guix.texi:4249 msgid "List the GC roots owned by the user; when run as root, list @emph{all} the GC roots." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4232 +#: guix-git/doc/guix.texi:4250 #, no-wrap msgid "--list-busy" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4235 +#: guix-git/doc/guix.texi:4253 msgid "List store items in use by currently running processes. These store items are effectively considered GC roots: they cannot be deleted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4236 +#: guix-git/doc/guix.texi:4254 #, no-wrap msgid "--clear-failures" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4238 +#: guix-git/doc/guix.texi:4256 msgid "Remove the specified store items from the failed-build cache." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4241 +#: guix-git/doc/guix.texi:4259 msgid "Again, this option only makes sense when the daemon is started with @option{--cache-failures}. Otherwise, it does nothing." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4242 +#: guix-git/doc/guix.texi:4260 #, no-wrap msgid "--list-dead" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4245 +#: guix-git/doc/guix.texi:4263 msgid "Show the list of dead files and directories still present in the store---i.e., files and directories no longer reachable from any root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4246 +#: guix-git/doc/guix.texi:4264 #, no-wrap msgid "--list-live" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4248 +#: guix-git/doc/guix.texi:4266 msgid "Show the list of live store files and directories." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4252 +#: guix-git/doc/guix.texi:4270 msgid "In addition, the references among existing store files can be queried:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4255 +#: guix-git/doc/guix.texi:4273 #, no-wrap msgid "--references" -msgstr "" +msgstr "--references" #. type: itemx -#: guix-git/doc/guix.texi:4256 +#: guix-git/doc/guix.texi:4274 #, no-wrap msgid "--referrers" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4257 guix-git/doc/guix.texi:13205 +#: guix-git/doc/guix.texi:4275 guix-git/doc/guix.texi:13562 #, no-wrap msgid "package dependencies" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4260 +#: guix-git/doc/guix.texi:4278 msgid "List the references (respectively, the referrers) of store files given as arguments." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4261 +#: guix-git/doc/guix.texi:4279 #, no-wrap msgid "--requisites" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4262 guix-git/doc/guix.texi:6501 +#: guix-git/doc/guix.texi:4280 guix-git/doc/guix.texi:6544 #, no-wrap msgid "-R" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4263 guix-git/doc/guix.texi:13061 -#: guix-git/doc/guix.texi:13089 guix-git/doc/guix.texi:13170 +#: guix-git/doc/guix.texi:4281 guix-git/doc/guix.texi:13418 +#: guix-git/doc/guix.texi:13446 guix-git/doc/guix.texi:13527 #, no-wrap msgid "closure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4268 +#: guix-git/doc/guix.texi:4286 msgid "List the requisites of the store files passed as arguments. Requisites include the store files themselves, their references, and the references of these, recursively. In other words, the returned list is the @dfn{transitive closure} of the store files." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4272 +#: guix-git/doc/guix.texi:4290 msgid "@xref{Invoking guix size}, for a tool to profile the size of the closure of an element. @xref{Invoking guix graph}, for a tool to visualize the graph of references." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4273 +#: guix-git/doc/guix.texi:4291 #, no-wrap msgid "--derivers" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4274 guix-git/doc/guix.texi:6815 -#: guix-git/doc/guix.texi:12917 guix-git/doc/guix.texi:13314 +#: guix-git/doc/guix.texi:4292 guix-git/doc/guix.texi:6858 +#: guix-git/doc/guix.texi:13274 guix-git/doc/guix.texi:13671 #, no-wrap msgid "derivation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4277 +#: guix-git/doc/guix.texi:4295 msgid "Return the derivation(s) leading to the given store items (@pxref{Derivations})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4279 +#: guix-git/doc/guix.texi:4297 msgid "For example, this command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4282 +#: guix-git/doc/guix.texi:4300 #, no-wrap msgid "guix gc --derivers $(guix package -I ^emacs$ | cut -f4)\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4287 +#: guix-git/doc/guix.texi:4305 msgid "returns the @file{.drv} file(s) leading to the @code{emacs} package installed in your profile." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4291 +#: guix-git/doc/guix.texi:4309 msgid "Note that there may be zero matching @file{.drv} files, for instance because these files have been garbage-collected. There can also be more than one matching @file{.drv} due to fixed-output derivations." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4295 +#: guix-git/doc/guix.texi:4313 msgid "Lastly, the following options allow you to check the integrity of the store and to control disk usage." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4298 +#: guix-git/doc/guix.texi:4316 #, no-wrap msgid "--verify[=@var{options}]" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4299 +#: guix-git/doc/guix.texi:4317 #, no-wrap msgid "integrity, of the store" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4300 +#: guix-git/doc/guix.texi:4318 #, no-wrap msgid "integrity checking" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4302 +#: guix-git/doc/guix.texi:4320 msgid "Verify the integrity of the store." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4305 +#: guix-git/doc/guix.texi:4323 msgid "By default, make sure that all the store items marked as valid in the database of the daemon actually exist in @file{/gnu/store}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4308 +#: guix-git/doc/guix.texi:4326 msgid "When provided, @var{options} must be a comma-separated list containing one or more of @code{contents} and @code{repair}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4314 +#: guix-git/doc/guix.texi:4332 msgid "When passing @option{--verify=contents}, the daemon computes the content hash of each store item and compares it against its hash in the database. Hash mismatches are reported as data corruptions. Because it traverses @emph{all the files in the store}, this command can take a long time, especially on systems with a slow disk drive." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4315 +#: guix-git/doc/guix.texi:4333 #, no-wrap msgid "repairing the store" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4316 guix-git/doc/guix.texi:11564 +#: guix-git/doc/guix.texi:4334 guix-git/doc/guix.texi:11878 #, no-wrap msgid "corruption, recovering from" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4324 +#: guix-git/doc/guix.texi:4342 msgid "Using @option{--verify=repair} or @option{--verify=contents,repair} causes the daemon to try to repair corrupt store items by fetching substitutes for them (@pxref{Substitutes}). Because repairing is not atomic, and thus potentially dangerous, it is available only to the system administrator. A lightweight alternative, when you know exactly which items in the store are corrupt, is @command{guix build --repair} (@pxref{Invoking guix build})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4325 +#: guix-git/doc/guix.texi:4343 #, no-wrap msgid "--optimize" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4329 +#: guix-git/doc/guix.texi:4347 msgid "Optimize the store by hard-linking identical files---this is @dfn{deduplication}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4335 +#: guix-git/doc/guix.texi:4353 msgid "The daemon performs deduplication after each successful build or archive import, unless it was started with @option{--disable-deduplication} (@pxref{Invoking guix-daemon, @option{--disable-deduplication}}). Thus, this option is primarily useful when the daemon was running with @option{--disable-deduplication}." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4339 +#: guix-git/doc/guix.texi:4357 #, no-wrap msgid "Invoking @command{guix pull}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4341 +#: guix-git/doc/guix.texi:4359 #, no-wrap msgid "upgrading Guix" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4342 +#: guix-git/doc/guix.texi:4360 #, no-wrap msgid "updating Guix" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:4343 +#: guix-git/doc/guix.texi:4361 #, no-wrap msgid "guix pull" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4344 +#: guix-git/doc/guix.texi:4362 #, no-wrap msgid "pull" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4345 +#: guix-git/doc/guix.texi:4363 #, no-wrap msgid "security, @command{guix pull}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4346 +#: guix-git/doc/guix.texi:4364 #, no-wrap msgid "authenticity, of code obtained with @command{guix pull}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4356 +#: guix-git/doc/guix.texi:4374 msgid "Packages are installed or upgraded to the latest version available in the distribution currently available on your local machine. To update that distribution, along with the Guix tools, you must run @command{guix pull}: the command downloads the latest Guix source code and package descriptions, and deploys it. Source code is downloaded from a @uref{https://git-scm.com, Git} repository, by default the official GNU@tie{}Guix repository, though this can be customized. @command{guix pull} ensures that the code it downloads is @emph{authentic} by verifying that commits are signed by Guix developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4359 +#: guix-git/doc/guix.texi:4377 msgid "Specifically, @command{guix pull} downloads code from the @dfn{channels} (@pxref{Channels}) specified by one of the followings, in this order:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4363 +#: guix-git/doc/guix.texi:4381 msgid "the @option{--channels} option;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4365 +#: guix-git/doc/guix.texi:4383 msgid "the user's @file{~/.config/guix/channels.scm} file;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4367 +#: guix-git/doc/guix.texi:4385 msgid "the system-wide @file{/etc/guix/channels.scm} file;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4370 +#: guix-git/doc/guix.texi:4388 msgid "the built-in default channels specified in the @code{%default-channels} variable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4377 +#: guix-git/doc/guix.texi:4395 msgid "On completion, @command{guix package} will use packages and package versions from this just-retrieved copy of Guix. Not only that, but all the Guix commands and Scheme modules will also be taken from that latest version. New @command{guix} sub-commands added by the update also become available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4383 +#: guix-git/doc/guix.texi:4401 msgid "Any user can update their Guix copy using @command{guix pull}, and the effect is limited to the user who ran @command{guix pull}. For instance, when user @code{root} runs @command{guix pull}, this has no effect on the version of Guix that user @code{alice} sees, and vice versa." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4389 +#: guix-git/doc/guix.texi:4407 msgid "The result of running @command{guix pull} is a @dfn{profile} available under @file{~/.config/guix/current} containing the latest Guix. Thus, make sure to add it to the beginning of your search path so that you use the latest version, and similarly for the Info manual (@pxref{Documentation}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4393 +#: guix-git/doc/guix.texi:4411 #, no-wrap msgid "" "export PATH=\"$HOME/.config/guix/current/bin:$PATH\"\n" @@ -10632,12 +10690,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4397 +#: guix-git/doc/guix.texi:4415 msgid "The @option{--list-generations} or @option{-l} option lists past generations produced by @command{guix pull}, along with details about their provenance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4405 +#: guix-git/doc/guix.texi:4423 #, no-wrap msgid "" "$ guix pull -l\n" @@ -10650,7 +10708,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4415 +#: guix-git/doc/guix.texi:4433 #, no-wrap msgid "" "Generation 2\tJun 11 2018 11:02:49\n" @@ -10666,7 +10724,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4423 +#: guix-git/doc/guix.texi:4441 #, no-wrap msgid "" "Generation 3\tJun 13 2018 23:31:07\t(current)\n" @@ -10679,17 +10737,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4427 +#: guix-git/doc/guix.texi:4445 msgid "@xref{Invoking guix describe, @command{guix describe}}, for other ways to describe the current status of Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4432 +#: guix-git/doc/guix.texi:4450 msgid "This @code{~/.config/guix/current} profile works exactly like the profiles created by @command{guix package} (@pxref{Invoking guix package}). That is, you can list generations, roll back to the previous generation---i.e., the previous Guix---and so on:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4438 +#: guix-git/doc/guix.texi:4456 #, no-wrap msgid "" "$ guix pull --roll-back\n" @@ -10699,12 +10757,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4442 +#: guix-git/doc/guix.texi:4460 msgid "You can also use @command{guix package} (@pxref{Invoking guix package}) to manage the profile by naming it explicitly:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4447 +#: guix-git/doc/guix.texi:4465 #, no-wrap msgid "" "$ guix package -p ~/.config/guix/current --roll-back\n" @@ -10714,354 +10772,355 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4451 +#: guix-git/doc/guix.texi:4469 msgid "The @command{guix pull} command is usually invoked with no arguments, but it supports the following options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4453 guix-git/doc/guix.texi:4611 +#: guix-git/doc/guix.texi:4471 guix-git/doc/guix.texi:4629 #, no-wrap msgid "--url=@var{url}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4454 guix-git/doc/guix.texi:4612 +#: guix-git/doc/guix.texi:4472 guix-git/doc/guix.texi:4630 #, no-wrap msgid "--commit=@var{commit}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4455 guix-git/doc/guix.texi:4613 +#: guix-git/doc/guix.texi:4473 guix-git/doc/guix.texi:4631 #, no-wrap msgid "--branch=@var{branch}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4459 +#: guix-git/doc/guix.texi:4477 msgid "Download code for the @code{guix} channel from the specified @var{url}, at the given @var{commit} (a valid Git commit ID represented as a hexadecimal string), or @var{branch}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4460 guix-git/doc/guix.texi:5057 +#: guix-git/doc/guix.texi:4478 guix-git/doc/guix.texi:5075 #, no-wrap msgid "@file{channels.scm}, configuration file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4461 guix-git/doc/guix.texi:5058 +#: guix-git/doc/guix.texi:4479 guix-git/doc/guix.texi:5076 #, no-wrap msgid "configuration file for channels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4465 +#: guix-git/doc/guix.texi:4483 msgid "These options are provided for convenience, but you can also specify your configuration in the @file{~/.config/guix/channels.scm} file or using the @option{--channels} option (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4466 guix-git/doc/guix.texi:4618 +#: guix-git/doc/guix.texi:4484 guix-git/doc/guix.texi:4636 #, no-wrap msgid "--channels=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4467 guix-git/doc/guix.texi:4619 +#: guix-git/doc/guix.texi:4485 guix-git/doc/guix.texi:4637 #, no-wrap msgid "-C @var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4473 +#: guix-git/doc/guix.texi:4491 msgid "Read the list of channels from @var{file} instead of @file{~/.config/guix/channels.scm} or @file{/etc/guix/channels.scm}. @var{file} must contain Scheme code that evaluates to a list of channel objects. @xref{Channels}, for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4474 +#: guix-git/doc/guix.texi:4492 #, no-wrap msgid "channel news" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4475 +#: guix-git/doc/guix.texi:4493 #, no-wrap msgid "--news" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4476 guix-git/doc/guix.texi:5864 -#: guix-git/doc/guix.texi:6247 guix-git/doc/guix.texi:35304 +#: guix-git/doc/guix.texi:4494 guix-git/doc/guix.texi:5877 +#: guix-git/doc/guix.texi:6290 guix-git/doc/guix.texi:35748 #, no-wrap msgid "-N" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4480 +#: guix-git/doc/guix.texi:4498 msgid "Display the list of packages added or upgraded since the previous generation, as well as, occasionally, news written by channel authors for their users (@pxref{Channels, Writing Channel News})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4484 +#: guix-git/doc/guix.texi:4502 msgid "The package information is the same as displayed upon @command{guix pull} completion, but without ellipses; it is also similar to the output of @command{guix pull -l} for the last generation (see below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4491 +#: guix-git/doc/guix.texi:4509 msgid "List all the generations of @file{~/.config/guix/current} or, if @var{pattern} is provided, the subset of generations that match @var{pattern}. The syntax of @var{pattern} is the same as with @code{guix package --list-generations} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4498 +#: guix-git/doc/guix.texi:4516 msgid "Roll back to the previous @dfn{generation} of @file{~/.config/guix/current}---i.e., undo the last transaction." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4522 +#: guix-git/doc/guix.texi:4540 msgid "If the current generation matches, it is @emph{not} deleted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4528 +#: guix-git/doc/guix.texi:4546 msgid "@xref{Invoking guix describe}, for a way to display information about the current generation only." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4532 +#: guix-git/doc/guix.texi:4550 msgid "Use @var{profile} instead of @file{~/.config/guix/current}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4533 guix-git/doc/guix.texi:10893 -#: guix-git/doc/guix.texi:12836 +#: guix-git/doc/guix.texi:4551 guix-git/doc/guix.texi:11207 +#: guix-git/doc/guix.texi:13162 #, no-wrap msgid "--dry-run" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4534 guix-git/doc/guix.texi:10894 -#: guix-git/doc/guix.texi:12837 guix-git/doc/guix.texi:13043 +#: guix-git/doc/guix.texi:4552 guix-git/doc/guix.texi:11208 +#: guix-git/doc/guix.texi:13163 guix-git/doc/guix.texi:13400 #, no-wrap msgid "-n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4537 +#: guix-git/doc/guix.texi:4555 msgid "Show which channel commit(s) would be used and what would be built or substituted but do not actually do it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4538 guix-git/doc/guix.texi:35323 +#: guix-git/doc/guix.texi:4556 guix-git/doc/guix.texi:35767 +#: guix-git/doc/guix.texi:38198 #, no-wrap msgid "--allow-downgrades" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4541 +#: guix-git/doc/guix.texi:4559 msgid "Allow pulling older or unrelated revisions of channels than those currently in use." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4542 +#: guix-git/doc/guix.texi:4560 #, no-wrap msgid "downgrade attacks, protection against" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4547 +#: guix-git/doc/guix.texi:4565 msgid "By default, @command{guix pull} protects against so-called ``downgrade attacks'' whereby the Git repository of a channel would be reset to an earlier or unrelated revision of itself, potentially leading you to install older, known-vulnerable versions of software packages." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4551 guix-git/doc/guix.texi:35337 +#: guix-git/doc/guix.texi:4569 guix-git/doc/guix.texi:35781 msgid "Make sure you understand its security implications before using @option{--allow-downgrades}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4553 +#: guix-git/doc/guix.texi:4571 #, no-wrap msgid "--disable-authentication" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4555 +#: guix-git/doc/guix.texi:4573 msgid "Allow pulling channel code without authenticating it." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4556 guix-git/doc/guix.texi:5203 +#: guix-git/doc/guix.texi:4574 guix-git/doc/guix.texi:5221 #, no-wrap msgid "authentication, of channel code" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4561 +#: guix-git/doc/guix.texi:4579 msgid "By default, @command{guix pull} authenticates code downloaded from channels by verifying that its commits are signed by authorized developers, and raises an error if this is not the case. This option instructs it to not perform any such verification." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4565 +#: guix-git/doc/guix.texi:4583 msgid "Make sure you understand its security implications before using @option{--disable-authentication}." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4568 guix-git/doc/guix.texi:5847 -#: guix-git/doc/guix.texi:6230 guix-git/doc/guix.texi:6630 -#: guix-git/doc/guix.texi:11506 guix-git/doc/guix.texi:13188 -#: guix-git/doc/guix.texi:13453 guix-git/doc/guix.texi:14130 -#: guix-git/doc/guix.texi:35252 +#: guix-git/doc/guix.texi:4586 guix-git/doc/guix.texi:5860 +#: guix-git/doc/guix.texi:6273 guix-git/doc/guix.texi:6673 +#: guix-git/doc/guix.texi:11820 guix-git/doc/guix.texi:13545 +#: guix-git/doc/guix.texi:13810 guix-git/doc/guix.texi:14487 +#: guix-git/doc/guix.texi:35696 #, no-wrap msgid "-s @var{system}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4571 guix-git/doc/guix.texi:6633 +#: guix-git/doc/guix.texi:4589 guix-git/doc/guix.texi:6676 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of the system type of the build host." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4575 +#: guix-git/doc/guix.texi:4593 msgid "Use the bootstrap Guile to build the latest Guix. This option is only useful to Guix developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4581 +#: guix-git/doc/guix.texi:4599 msgid "The @dfn{channel} mechanism allows you to instruct @command{guix pull} which repository and branch to pull from, as well as @emph{additional} repositories containing package modules that should be deployed. @xref{Channels}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4584 +#: guix-git/doc/guix.texi:4602 msgid "In addition, @command{guix pull} supports all the common build options (@pxref{Common Build Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4586 +#: guix-git/doc/guix.texi:4604 #, no-wrap msgid "Invoking @command{guix time-machine}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:4588 +#: guix-git/doc/guix.texi:4606 #, no-wrap msgid "guix time-machine" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4589 guix-git/doc/guix.texi:5161 +#: guix-git/doc/guix.texi:4607 guix-git/doc/guix.texi:5179 #, no-wrap msgid "pinning, channels" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4590 guix-git/doc/guix.texi:4772 -#: guix-git/doc/guix.texi:5162 +#: guix-git/doc/guix.texi:4608 guix-git/doc/guix.texi:4790 +#: guix-git/doc/guix.texi:5180 #, no-wrap msgid "replicating Guix" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4591 guix-git/doc/guix.texi:5163 +#: guix-git/doc/guix.texi:4609 guix-git/doc/guix.texi:5181 #, no-wrap msgid "reproducibility, of Guix" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4599 +#: guix-git/doc/guix.texi:4617 msgid "The @command{guix time-machine} command provides access to other revisions of Guix, for example to install older versions of packages, or to reproduce a computation in an identical environment. The revision of Guix to be used is defined by a commit or by a channel description file created by @command{guix describe} (@pxref{Invoking guix describe})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4601 guix-git/doc/guix.texi:5623 -#: guix-git/doc/guix.texi:5974 guix-git/doc/guix.texi:6753 -#: guix-git/doc/guix.texi:10689 guix-git/doc/guix.texi:10813 -#: guix-git/doc/guix.texi:11797 guix-git/doc/guix.texi:11892 -#: guix-git/doc/guix.texi:12825 guix-git/doc/guix.texi:13018 -#: guix-git/doc/guix.texi:13511 guix-git/doc/guix.texi:13884 -#: guix-git/doc/guix.texi:13973 guix-git/doc/guix.texi:14012 -#: guix-git/doc/guix.texi:14109 +#: guix-git/doc/guix.texi:4619 guix-git/doc/guix.texi:5641 +#: guix-git/doc/guix.texi:6011 guix-git/doc/guix.texi:6796 +#: guix-git/doc/guix.texi:11003 guix-git/doc/guix.texi:11127 +#: guix-git/doc/guix.texi:12111 guix-git/doc/guix.texi:12207 +#: guix-git/doc/guix.texi:13148 guix-git/doc/guix.texi:13375 +#: guix-git/doc/guix.texi:13868 guix-git/doc/guix.texi:14241 +#: guix-git/doc/guix.texi:14330 guix-git/doc/guix.texi:14369 +#: guix-git/doc/guix.texi:14466 msgid "The general syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4604 +#: guix-git/doc/guix.texi:4622 #, no-wrap msgid "guix time-machine @var{options}@dots{} -- @var{command} @var {arg}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4609 +#: guix-git/doc/guix.texi:4627 msgid "where @var{command} and @var{arg}@dots{} are passed unmodified to the @command{guix} command of the specified revision. The @var{options} that define this revision are the same as for @command{guix pull} (@pxref{Invoking guix pull}):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4617 +#: guix-git/doc/guix.texi:4635 msgid "Use the @code{guix} channel from the specified @var{url}, at the given @var{commit} (a valid Git commit ID represented as a hexadecimal string), or @var{branch}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4623 +#: guix-git/doc/guix.texi:4641 msgid "Read the list of channels from @var{file}. @var{file} must contain Scheme code that evaluates to a list of channel objects. @xref{Channels} for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4627 +#: guix-git/doc/guix.texi:4645 msgid "As for @command{guix pull}, the absence of any options means that the latest commit on the master branch will be used. The command" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4630 +#: guix-git/doc/guix.texi:4648 #, no-wrap msgid "guix time-machine -- build hello\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4635 +#: guix-git/doc/guix.texi:4653 msgid "will thus build the package @code{hello} as defined in the master branch, which is in general a newer revision of Guix than you have installed. Time travel works in both directions!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4639 +#: guix-git/doc/guix.texi:4657 msgid "Note that @command{guix time-machine} can trigger builds of channels and their dependencies, and these are controlled by the standard build options (@pxref{Common Build Options})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4647 +#: guix-git/doc/guix.texi:4665 msgid "The functionality described here is a ``technology preview'' as of version @value{VERSION}. As such, the interface is subject to change." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4649 guix-git/doc/guix.texi:10726 +#: guix-git/doc/guix.texi:4667 guix-git/doc/guix.texi:11040 #, no-wrap msgid "inferiors" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4650 +#: guix-git/doc/guix.texi:4668 #, no-wrap msgid "composition of Guix revisions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4655 +#: guix-git/doc/guix.texi:4673 msgid "Sometimes you might need to mix packages from the revision of Guix you're currently running with packages available in a different revision of Guix. Guix @dfn{inferiors} allow you to achieve that by composing different Guix revisions in arbitrary ways." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4656 guix-git/doc/guix.texi:4721 +#: guix-git/doc/guix.texi:4674 guix-git/doc/guix.texi:4739 #, no-wrap msgid "inferior packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4662 +#: guix-git/doc/guix.texi:4680 msgid "Technically, an ``inferior'' is essentially a separate Guix process connected to your main Guix process through a REPL (@pxref{Invoking guix repl}). The @code{(guix inferior)} module allows you to create inferiors and to communicate with them. It also provides a high-level interface to browse and manipulate the packages that an inferior provides---@dfn{inferior packages}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4672 +#: guix-git/doc/guix.texi:4690 msgid "When combined with channels (@pxref{Channels}), inferiors provide a simple way to interact with a separate revision of Guix. For example, let's assume you want to install in your profile the current @code{guile} package, along with the @code{guile-json} as it existed in an older revision of Guix---perhaps because the newer @code{guile-json} has an incompatible API and you want to run your code against the old API@. To do that, you could write a manifest for use by @code{guix package --manifest} (@pxref{Invoking guix package}); in that manifest, you would create an inferior for that old Guix revision you care about, and you would look up the @code{guile-json} package in the inferior:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4676 +#: guix-git/doc/guix.texi:4694 #, no-wrap msgid "" "(use-modules (guix inferior) (guix channels)\n" @@ -11070,7 +11129,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4685 +#: guix-git/doc/guix.texi:4703 #, no-wrap msgid "" "(define channels\n" @@ -11085,7 +11144,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4689 +#: guix-git/doc/guix.texi:4707 #, no-wrap msgid "" "(define inferior\n" @@ -11095,7 +11154,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4695 +#: guix-git/doc/guix.texi:4713 #, no-wrap msgid "" ";; Now create a manifest with the current \"guile\" package\n" @@ -11106,186 +11165,186 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4700 +#: guix-git/doc/guix.texi:4718 msgid "On its first run, @command{guix package --manifest} might have to build the channel you specified before it can create the inferior; subsequent runs will be much faster because the Guix revision will be cached." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4703 +#: guix-git/doc/guix.texi:4721 msgid "The @code{(guix inferior)} module provides the following procedures to open an inferior:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4704 +#: guix-git/doc/guix.texi:4722 #, no-wrap msgid "{Scheme Procedure} inferior-for-channels @var{channels} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4709 +#: guix-git/doc/guix.texi:4727 msgid "[#:cache-directory] [#:ttl] Return an inferior for @var{channels}, a list of channels. Use the cache at @var{cache-directory}, where entries can be reclaimed after @var{ttl} seconds. This procedure opens a new connection to the build daemon." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4712 +#: guix-git/doc/guix.texi:4730 msgid "As a side effect, this procedure may build or substitute binaries for @var{channels}, which can take time." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4714 +#: guix-git/doc/guix.texi:4732 #, no-wrap msgid "{Scheme Procedure} open-inferior @var{directory} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4719 +#: guix-git/doc/guix.texi:4737 msgid "[#:command \"bin/guix\"] Open the inferior Guix in @var{directory}, running @code{@var{directory}/@var{command} repl} or equivalent. Return @code{#f} if the inferior could not be launched." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4724 +#: guix-git/doc/guix.texi:4742 msgid "The procedures listed below allow you to obtain and manipulate inferior packages." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4725 +#: guix-git/doc/guix.texi:4743 #, no-wrap msgid "{Scheme Procedure} inferior-packages @var{inferior}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4727 +#: guix-git/doc/guix.texi:4745 msgid "Return the list of packages known to @var{inferior}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4729 +#: guix-git/doc/guix.texi:4747 #, no-wrap msgid "{Scheme Procedure} lookup-inferior-packages @var{inferior} @var{name} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4734 +#: guix-git/doc/guix.texi:4752 msgid "[@var{version}] Return the sorted list of inferior packages matching @var{name} in @var{inferior}, with highest version numbers first. If @var{version} is true, return only packages with a version number prefixed by @var{version}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4736 +#: guix-git/doc/guix.texi:4754 #, no-wrap msgid "{Scheme Procedure} inferior-package? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4738 +#: guix-git/doc/guix.texi:4756 msgid "Return true if @var{obj} is an inferior package." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4740 +#: guix-git/doc/guix.texi:4758 #, no-wrap msgid "{Scheme Procedure} inferior-package-name @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4741 +#: guix-git/doc/guix.texi:4759 #, no-wrap msgid "{Scheme Procedure} inferior-package-version @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4742 +#: guix-git/doc/guix.texi:4760 #, no-wrap msgid "{Scheme Procedure} inferior-package-synopsis @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4743 +#: guix-git/doc/guix.texi:4761 #, no-wrap msgid "{Scheme Procedure} inferior-package-description @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4744 +#: guix-git/doc/guix.texi:4762 #, no-wrap msgid "{Scheme Procedure} inferior-package-home-page @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4745 +#: guix-git/doc/guix.texi:4763 #, no-wrap msgid "{Scheme Procedure} inferior-package-location @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4746 +#: guix-git/doc/guix.texi:4764 #, no-wrap msgid "{Scheme Procedure} inferior-package-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4747 +#: guix-git/doc/guix.texi:4765 #, no-wrap msgid "{Scheme Procedure} inferior-package-native-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4748 +#: guix-git/doc/guix.texi:4766 #, no-wrap msgid "{Scheme Procedure} inferior-package-propagated-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4749 +#: guix-git/doc/guix.texi:4767 #, no-wrap msgid "{Scheme Procedure} inferior-package-transitive-propagated-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4750 +#: guix-git/doc/guix.texi:4768 #, no-wrap msgid "{Scheme Procedure} inferior-package-native-search-paths @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4751 +#: guix-git/doc/guix.texi:4769 #, no-wrap msgid "{Scheme Procedure} inferior-package-transitive-native-search-paths @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4752 +#: guix-git/doc/guix.texi:4770 #, no-wrap msgid "{Scheme Procedure} inferior-package-search-paths @var{package}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4757 +#: guix-git/doc/guix.texi:4775 msgid "These procedures are the counterpart of package record accessors (@pxref{package Reference}). Most of them work by querying the inferior @var{package} comes from, so the inferior must still be live when you call these procedures." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4767 +#: guix-git/doc/guix.texi:4785 msgid "Inferior packages can be used transparently like any other package or file-like object in G-expressions (@pxref{G-Expressions}). They are also transparently handled by the @code{packages->manifest} procedure, which is commonly used in manifests (@pxref{Invoking guix package, the @option{--manifest} option of @command{guix package}}). Thus you can insert an inferior package pretty much anywhere you would insert a regular package: in manifests, in the @code{packages} field of your @code{operating-system} declaration, and so on." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4769 +#: guix-git/doc/guix.texi:4787 #, no-wrap msgid "Invoking @command{guix describe}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4780 +#: guix-git/doc/guix.texi:4798 msgid "Often you may want to answer questions like: ``Which revision of Guix am I using?'' or ``Which channels am I using?'' This is useful information in many situations: if you want to @emph{replicate} an environment on a different machine or user account, if you want to report a bug or to determine what change in the channels you are using caused it, or if you want to record your system state for reproducibility purposes. The @command{guix describe} command answers these questions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4784 +#: guix-git/doc/guix.texi:4802 msgid "When run from a @command{guix pull}ed @command{guix}, @command{guix describe} displays the channel(s) that it was built from, including their repository URL and commit IDs (@pxref{Channels}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4792 +#: guix-git/doc/guix.texi:4810 #, no-wrap msgid "" "$ guix describe\n" @@ -11297,17 +11356,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4801 +#: guix-git/doc/guix.texi:4819 msgid "If you're familiar with the Git version control system, this is similar in spirit to @command{git describe}; the output is also similar to that of @command{guix pull --list-generations}, but limited to the current generation (@pxref{Invoking guix pull, the @option{--list-generations} option}). Because the Git commit ID shown above unambiguously refers to a snapshot of Guix, this information is all it takes to describe the revision of Guix you're using, and also to replicate it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4804 +#: guix-git/doc/guix.texi:4822 msgid "To make it easier to replicate Guix, @command{guix describe} can also be asked to return a list of channels instead of the human-readable description above:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4817 +#: guix-git/doc/guix.texi:4835 #, no-wrap msgid "" "$ guix describe -f channels\n" @@ -11324,190 +11383,190 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4826 +#: guix-git/doc/guix.texi:4844 msgid "You can save this to a file and feed it to @command{guix pull -C} on some other machine or at a later point in time, which will instantiate @emph{this exact Guix revision} (@pxref{Invoking guix pull, the @option{-C} option}). From there on, since you're able to deploy the same revision of Guix, you can just as well @emph{replicate a complete software environment}. We humbly think that this is @emph{awesome}, and we hope you'll like it too!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4829 +#: guix-git/doc/guix.texi:4847 msgid "The details of the options supported by @command{guix describe} are as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4831 guix-git/doc/guix.texi:6431 -#: guix-git/doc/guix.texi:14242 +#: guix-git/doc/guix.texi:4849 guix-git/doc/guix.texi:6474 +#: guix-git/doc/guix.texi:14599 #, no-wrap msgid "--format=@var{format}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4832 guix-git/doc/guix.texi:6432 -#: guix-git/doc/guix.texi:14243 +#: guix-git/doc/guix.texi:4850 guix-git/doc/guix.texi:6475 +#: guix-git/doc/guix.texi:14600 #, no-wrap msgid "-f @var{format}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4834 guix-git/doc/guix.texi:14245 +#: guix-git/doc/guix.texi:4852 guix-git/doc/guix.texi:14602 msgid "Produce output in the specified @var{format}, one of:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4836 +#: guix-git/doc/guix.texi:4854 #, no-wrap msgid "human" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4838 +#: guix-git/doc/guix.texi:4856 msgid "produce human-readable output;" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4838 guix-git/doc/guix.texi:5056 +#: guix-git/doc/guix.texi:4856 guix-git/doc/guix.texi:5074 #, no-wrap msgid "channels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4842 +#: guix-git/doc/guix.texi:4860 msgid "produce a list of channel specifications that can be passed to @command{guix pull -C} or installed as @file{~/.config/guix/channels.scm} (@pxref{Invoking guix pull});" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4842 +#: guix-git/doc/guix.texi:4860 #, no-wrap msgid "channels-sans-intro" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4848 +#: guix-git/doc/guix.texi:4866 msgid "like @code{channels}, but omit the @code{introduction} field; use it to produce a channel specification suitable for Guix version 1.1.0 or earlier---the @code{introduction} field has to do with channel authentication (@pxref{Channels, Channel Authentication}) and is not supported by these older versions;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4848 guix-git/doc/guix.texi:12109 +#: guix-git/doc/guix.texi:4866 guix-git/doc/guix.texi:12424 #, no-wrap msgid "json" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4849 +#: guix-git/doc/guix.texi:4867 #, no-wrap msgid "JSON" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4851 +#: guix-git/doc/guix.texi:4869 msgid "produce a list of channel specifications in JSON format;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4851 guix-git/doc/guix.texi:14247 +#: guix-git/doc/guix.texi:4869 guix-git/doc/guix.texi:14604 #, no-wrap msgid "recutils" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4853 +#: guix-git/doc/guix.texi:4871 msgid "produce a list of channel specifications in Recutils format." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4855 +#: guix-git/doc/guix.texi:4873 #, no-wrap msgid "--list-formats" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4857 +#: guix-git/doc/guix.texi:4875 msgid "Display available formats for @option{--format} option." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4861 +#: guix-git/doc/guix.texi:4879 msgid "Display information about @var{profile}." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4864 +#: guix-git/doc/guix.texi:4882 #, no-wrap msgid "Invoking @command{guix archive}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:4866 +#: guix-git/doc/guix.texi:4884 #, no-wrap msgid "guix archive" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4867 +#: guix-git/doc/guix.texi:4885 #, no-wrap msgid "archive" msgstr "archív" #. type: Plain text -#: guix-git/doc/guix.texi:4873 +#: guix-git/doc/guix.texi:4891 msgid "The @command{guix archive} command allows users to @dfn{export} files from the store into a single archive, and to later @dfn{import} them on a machine that runs Guix. In particular, it allows store files to be transferred from one machine to the store on another machine." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4877 +#: guix-git/doc/guix.texi:4895 msgid "If you're looking for a way to produce archives in a format suitable for tools other than Guix, @pxref{Invoking guix pack}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4879 +#: guix-git/doc/guix.texi:4897 #, no-wrap msgid "exporting store items" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4881 +#: guix-git/doc/guix.texi:4899 msgid "To export store files as an archive to standard output, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4884 +#: guix-git/doc/guix.texi:4902 #, no-wrap msgid "guix archive --export @var{options} @var{specifications}...\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4891 +#: guix-git/doc/guix.texi:4909 msgid "@var{specifications} may be either store file names or package specifications, as for @command{guix package} (@pxref{Invoking guix package}). For instance, the following command creates an archive containing the @code{gui} output of the @code{git} package and the main output of @code{emacs}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4894 +#: guix-git/doc/guix.texi:4912 #, no-wrap msgid "guix archive --export git:gui /gnu/store/...-emacs-24.3 > great.nar\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4899 +#: guix-git/doc/guix.texi:4917 msgid "If the specified packages are not built yet, @command{guix archive} automatically builds them. The build process may be controlled with the common build options (@pxref{Common Build Options})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4902 +#: guix-git/doc/guix.texi:4920 msgid "To transfer the @code{emacs} package to a machine connected over SSH, one would run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4905 +#: guix-git/doc/guix.texi:4923 #, no-wrap msgid "guix archive --export -r emacs | ssh the-machine guix archive --import\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4910 +#: guix-git/doc/guix.texi:4928 msgid "Similarly, a complete user profile may be transferred from one machine to another like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4914 +#: guix-git/doc/guix.texi:4932 #, no-wrap msgid "" "guix archive --export -r $(readlink -f ~/.guix-profile) | \\\n" @@ -11515,187 +11574,187 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4924 +#: guix-git/doc/guix.texi:4942 msgid "However, note that, in both examples, all of @code{emacs} and the profile as well as all of their dependencies are transferred (due to @option{-r}), regardless of what is already available in the store on the target machine. The @option{--missing} option can help figure out which items are missing from the target store. The @command{guix copy} command simplifies and optimizes this whole process, so this is probably what you should use in this case (@pxref{Invoking guix copy})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4925 +#: guix-git/doc/guix.texi:4943 #, no-wrap msgid "nar, archive format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4926 +#: guix-git/doc/guix.texi:4944 #, no-wrap msgid "normalized archive (nar)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4927 +#: guix-git/doc/guix.texi:4945 #, no-wrap msgid "nar bundle, archive format" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4932 +#: guix-git/doc/guix.texi:4950 msgid "Each store item is written in the @dfn{normalized archive} or @dfn{nar} format (described below), and the output of @command{guix archive --export} (and input of @command{guix archive --import}) is a @dfn{nar bundle}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4942 +#: guix-git/doc/guix.texi:4960 msgid "The nar format is comparable in spirit to `tar', but with differences that make it more appropriate for our purposes. First, rather than recording all Unix metadata for each file, the nar format only mentions the file type (regular, directory, or symbolic link); Unix permissions and owner/group are dismissed. Second, the order in which directory entries are stored always follows the order of file names according to the C locale collation order. This makes archive production fully deterministic." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4946 +#: guix-git/doc/guix.texi:4964 msgid "That nar bundle format is essentially the concatenation of zero or more nars along with metadata for each store item it contains: its file name, references, corresponding derivation, and a digital signature." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4952 +#: guix-git/doc/guix.texi:4970 msgid "When exporting, the daemon digitally signs the contents of the archive, and that digital signature is appended. When importing, the daemon verifies the signature and rejects the import in case of an invalid signature or if the signing key is not authorized." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4954 +#: guix-git/doc/guix.texi:4972 msgid "The main options are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4956 +#: guix-git/doc/guix.texi:4974 #, no-wrap msgid "--export" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4959 +#: guix-git/doc/guix.texi:4977 msgid "Export the specified store files or packages (see below). Write the resulting archive to the standard output." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4962 +#: guix-git/doc/guix.texi:4980 msgid "Dependencies are @emph{not} included in the output, unless @option{--recursive} is passed." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4963 guix-git/doc/guix.texi:11830 -#: guix-git/doc/guix.texi:11956 guix-git/doc/guix.texi:11981 -#: guix-git/doc/guix.texi:12013 guix-git/doc/guix.texi:12184 -#: guix-git/doc/guix.texi:12225 guix-git/doc/guix.texi:12276 -#: guix-git/doc/guix.texi:12301 guix-git/doc/guix.texi:12317 -#: guix-git/doc/guix.texi:12365 guix-git/doc/guix.texi:12401 +#: guix-git/doc/guix.texi:4981 guix-git/doc/guix.texi:12144 +#: guix-git/doc/guix.texi:12271 guix-git/doc/guix.texi:12296 +#: guix-git/doc/guix.texi:12328 guix-git/doc/guix.texi:12499 +#: guix-git/doc/guix.texi:12540 guix-git/doc/guix.texi:12591 +#: guix-git/doc/guix.texi:12616 guix-git/doc/guix.texi:12632 +#: guix-git/doc/guix.texi:12680 guix-git/doc/guix.texi:12716 #, no-wrap msgid "-r" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4964 guix-git/doc/guix.texi:11829 -#: guix-git/doc/guix.texi:11955 guix-git/doc/guix.texi:11980 -#: guix-git/doc/guix.texi:12012 guix-git/doc/guix.texi:12183 -#: guix-git/doc/guix.texi:12224 guix-git/doc/guix.texi:12275 -#: guix-git/doc/guix.texi:12300 guix-git/doc/guix.texi:12316 -#: guix-git/doc/guix.texi:12364 guix-git/doc/guix.texi:12400 -#: guix-git/doc/guix.texi:12449 +#: guix-git/doc/guix.texi:4982 guix-git/doc/guix.texi:12143 +#: guix-git/doc/guix.texi:12270 guix-git/doc/guix.texi:12295 +#: guix-git/doc/guix.texi:12327 guix-git/doc/guix.texi:12498 +#: guix-git/doc/guix.texi:12539 guix-git/doc/guix.texi:12590 +#: guix-git/doc/guix.texi:12615 guix-git/doc/guix.texi:12631 +#: guix-git/doc/guix.texi:12679 guix-git/doc/guix.texi:12715 +#: guix-git/doc/guix.texi:12764 #, no-wrap msgid "--recursive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4969 +#: guix-git/doc/guix.texi:4987 msgid "When combined with @option{--export}, this instructs @command{guix archive} to include dependencies of the given items in the archive. Thus, the resulting archive is self-contained: it contains the closure of the exported store items." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4970 +#: guix-git/doc/guix.texi:4988 #, no-wrap msgid "--import" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4975 +#: guix-git/doc/guix.texi:4993 msgid "Read an archive from the standard input, and import the files listed therein into the store. Abort if the archive has an invalid digital signature, or if it is signed by a public key not among the authorized keys (see @option{--authorize} below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4976 +#: guix-git/doc/guix.texi:4994 #, no-wrap msgid "--missing" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4980 +#: guix-git/doc/guix.texi:4998 msgid "Read a list of store file names from the standard input, one per line, and write on the standard output the subset of these files missing from the store." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4981 +#: guix-git/doc/guix.texi:4999 #, no-wrap msgid "--generate-key[=@var{parameters}]" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4982 +#: guix-git/doc/guix.texi:5000 #, no-wrap msgid "signing, archives" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4989 +#: guix-git/doc/guix.texi:5007 msgid "Generate a new key pair for the daemon. This is a prerequisite before archives can be exported with @option{--export}. This operation is usually instantaneous but it can take time if the system's entropy pool needs to be refilled. On Guix System, @code{guix-service-type} takes care of generating this key pair the first boot." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4999 +#: guix-git/doc/guix.texi:5017 msgid "The generated key pair is typically stored under @file{/etc/guix}, in @file{signing-key.pub} (public key) and @file{signing-key.sec} (private key, which must be kept secret). When @var{parameters} is omitted, an ECDSA key using the Ed25519 curve is generated, or, for Libgcrypt versions before 1.6.0, it is a 4096-bit RSA key. Alternatively, @var{parameters} can specify @code{genkey} parameters suitable for Libgcrypt (@pxref{General public-key related Functions, @code{gcry_pk_genkey},, gcrypt, The Libgcrypt Reference Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5000 +#: guix-git/doc/guix.texi:5018 #, no-wrap msgid "--authorize" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5001 +#: guix-git/doc/guix.texi:5019 #, no-wrap msgid "authorizing, archives" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5005 +#: guix-git/doc/guix.texi:5023 msgid "Authorize imports signed by the public key passed on standard input. The public key must be in ``s-expression advanced format''---i.e., the same format as the @file{signing-key.pub} file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5012 +#: guix-git/doc/guix.texi:5030 msgid "The list of authorized keys is kept in the human-editable file @file{/etc/guix/acl}. The file contains @url{https://people.csail.mit.edu/rivest/Sexp.txt, ``advanced-format s-expressions''} and is structured as an access-control list in the @url{https://theworld.com/~cme/spki.txt, Simple Public-Key Infrastructure (SPKI)}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5013 +#: guix-git/doc/guix.texi:5031 #, no-wrap msgid "--extract=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5014 +#: guix-git/doc/guix.texi:5032 #, no-wrap msgid "-x @var{directory}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5018 +#: guix-git/doc/guix.texi:5036 msgid "Read a single-item archive as served by substitute servers (@pxref{Substitutes}) and extract it to @var{directory}. This is a low-level operation needed in only very narrow use cases; see below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5021 +#: guix-git/doc/guix.texi:5039 msgid "For example, the following command extracts the substitute for Emacs served by @code{@value{SUBSTITUTE-SERVER-1}} to @file{/tmp/emacs}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5026 +#: guix-git/doc/guix.texi:5044 #, no-wrap msgid "" "$ wget -O - \\\n" @@ -11704,35 +11763,35 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5033 +#: guix-git/doc/guix.texi:5051 msgid "Single-item archives are different from multiple-item archives produced by @command{guix archive --export}; they contain a single store item, and they do @emph{not} embed a signature. Thus this operation does @emph{no} signature verification and its output should be considered unsafe." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5037 +#: guix-git/doc/guix.texi:5055 msgid "The primary purpose of this operation is to facilitate inspection of archive contents coming from possibly untrusted substitute servers (@pxref{Invoking guix challenge})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5038 +#: guix-git/doc/guix.texi:5056 #, no-wrap msgid "--list" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5039 guix-git/doc/guix.texi:12171 -#: guix-git/doc/guix.texi:12218 +#: guix-git/doc/guix.texi:5057 guix-git/doc/guix.texi:12486 +#: guix-git/doc/guix.texi:12533 #, no-wrap msgid "-t" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5043 +#: guix-git/doc/guix.texi:5061 msgid "Read a single-item archive as served by substitute servers (@pxref{Substitutes}) and print the list of files it contains, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5048 +#: guix-git/doc/guix.texi:5066 #, no-wrap msgid "" "$ wget -O - \\\n" @@ -11741,47 +11800,47 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5059 +#: guix-git/doc/guix.texi:5077 #, no-wrap msgid "@command{guix pull}, configuration file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5060 +#: guix-git/doc/guix.texi:5078 #, no-wrap msgid "configuration of @command{guix pull}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5071 +#: guix-git/doc/guix.texi:5089 msgid "Guix and its package collection are updated by running @command{guix pull} (@pxref{Invoking guix pull}). By default @command{guix pull} downloads and deploys Guix itself from the official GNU@tie{}Guix repository. This can be customized by defining @dfn{channels} in the @file{~/.config/guix/channels.scm} file. A channel specifies a URL and branch of a Git repository to be deployed, and @command{guix pull} can be instructed to pull from one or more channels. In other words, channels can be used to @emph{customize} and to @emph{extend} Guix, as we will see below. Guix is able to take into account security concerns and deal with authenticated updates." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5089 +#: guix-git/doc/guix.texi:5107 #, no-wrap msgid "extending the package collection (channels)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5090 +#: guix-git/doc/guix.texi:5108 #, no-wrap msgid "variant packages (channels)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5094 +#: guix-git/doc/guix.texi:5112 msgid "You can specify @emph{additional channels} to pull from. To use a channel, write @code{~/.config/guix/channels.scm} to instruct @command{guix pull} to pull from it @emph{in addition} to the default Guix channel(s):" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:5095 +#: guix-git/doc/guix.texi:5113 #, no-wrap msgid "%default-channels" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5120 #, no-wrap msgid "" ";; Add variant packages to those Guix provides.\n" @@ -11792,12 +11851,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5112 +#: guix-git/doc/guix.texi:5130 msgid "Note that the snippet above is (as always!)@: Scheme code; we use @code{cons} to add a channel the list of channels that the variable @code{%default-channels} is bound to (@pxref{Pairs, @code{cons} and lists,, guile, GNU Guile Reference Manual}). With this file in place, @command{guix pull} builds not only Guix but also the package modules from your own repository. The result in @file{~/.config/guix/current} is the union of Guix with your own package modules:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5127 +#: guix-git/doc/guix.texi:5145 #, no-wrap msgid "" "$ guix pull --list-generations\n" @@ -11816,17 +11875,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5135 +#: guix-git/doc/guix.texi:5153 msgid "The output of @command{guix pull} above shows that Generation@tie{}19 includes both Guix and packages from the @code{variant-personal-packages} channel. Among the new and upgraded packages that are listed, some like @code{variant-gimp} and @code{variant-emacs-with-cool-features} might come from @code{variant-packages}, while others come from the Guix default channel." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5144 +#: guix-git/doc/guix.texi:5162 msgid "The channel called @code{guix} specifies where Guix itself---its command-line tools as well as its package collection---should be downloaded. For instance, suppose you want to update from another copy of the Guix repository at @code{example.org}, and specifically the @code{super-hacks} branch, you can write in @code{~/.config/guix/channels.scm} this specification:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5151 +#: guix-git/doc/guix.texi:5169 #, no-wrap msgid "" ";; Tell 'guix pull' to use another repo.\n" @@ -11837,17 +11896,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5157 +#: guix-git/doc/guix.texi:5175 msgid "From there on, @command{guix pull} will fetch code from the @code{super-hacks} branch of the repository at @code{example.org}. The authentication concern is addressed below ((@pxref{Channel Authentication})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5168 +#: guix-git/doc/guix.texi:5186 msgid "The @command{guix pull --list-generations} output above shows precisely which commits were used to build this instance of Guix. We can thus replicate it, say, on another machine, by providing a channel specification in @file{~/.config/guix/channels.scm} that is ``pinned'' to these commits:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5179 +#: guix-git/doc/guix.texi:5197 #, no-wrap msgid "" ";; Deploy specific commits of my channels of interest.\n" @@ -11862,37 +11921,37 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5186 +#: guix-git/doc/guix.texi:5204 msgid "The @command{guix describe --format=channels} command can even generate this list of channels directly (@pxref{Invoking guix describe}). The resulting file can be used with the -C options of @command{guix pull} (@pxref{Invoking guix pull}) or @command{guix time-machine} (@pxref{Invoking guix time-machine})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5193 +#: guix-git/doc/guix.texi:5211 msgid "At this point the two machines run the @emph{exact same Guix}, with access to the @emph{exact same packages}. The output of @command{guix build gimp} on one machine will be exactly the same, bit for bit, as the output of the same command on the other machine. It also means both machines have access to all the source code of Guix and, transitively, to all the source code of every package it defines." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5198 +#: guix-git/doc/guix.texi:5216 msgid "This gives you super powers, allowing you to track the provenance of binary artifacts with very fine grain, and to reproduce software environments at will---some sort of ``meta reproducibility'' capabilities, if you will. @xref{Inferiors}, for another way to take advantage of these super powers." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:5203 +#: guix-git/doc/guix.texi:5221 msgid "channel-authentication" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5209 +#: guix-git/doc/guix.texi:5227 msgid "The @command{guix pull} and @command{guix time-machine} commands @dfn{authenticate} the code retrieved from channels: they make sure each commit that is fetched is signed by an authorized developer. The goal is to protect from unauthorized modifications to the channel that would lead users to run malicious code." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5214 +#: guix-git/doc/guix.texi:5232 msgid "As a user, you must provide a @dfn{channel introduction} in your channels file so that Guix knows how to authenticate its first commit. A channel specification, including its introduction, looks something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5224 +#: guix-git/doc/guix.texi:5242 #, no-wrap msgid "" "(channel\n" @@ -11906,27 +11965,27 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5230 +#: guix-git/doc/guix.texi:5248 msgid "The specification above shows the name and URL of the channel. The call to @code{make-channel-introduction} above specifies that authentication of this channel starts at commit @code{6f0d8cc@dots{}}, which is signed by the OpenPGP key with fingerprint @code{CABB A931@dots{}}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5236 +#: guix-git/doc/guix.texi:5254 msgid "For the main channel, called @code{guix}, you automatically get that information from your Guix installation. For other channels, include the channel introduction provided by the channel authors in your @file{channels.scm} file. Make sure you retrieve the channel introduction from a trusted source since that is the root of your trust." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5238 +#: guix-git/doc/guix.texi:5256 msgid "If you're curious about the authentication mechanics, read on!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5249 +#: guix-git/doc/guix.texi:5267 msgid "When running @command{guix pull}, Guix will first compile the definitions of every available package. This is an expensive operation for which substitutes (@pxref{Substitutes}) may be available. The following snippet in @file{channels.scm} will ensure that @command{guix pull} uses the latest commit with available substitutes for the package definitions: this is done by querying the continuous integration server at @url{https://ci.guix.gnu.org}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5252 +#: guix-git/doc/guix.texi:5270 #, no-wrap msgid "" "(use-modules (guix ci))\n" @@ -11934,7 +11993,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5256 +#: guix-git/doc/guix.texi:5274 #, no-wrap msgid "" "(list (channel-with-substitutes-available\n" @@ -11943,75 +12002,75 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5263 +#: guix-git/doc/guix.texi:5281 msgid "Note that this does not mean that all the packages that you will install after running @command{guix pull} will have available substitutes. It only ensures that @command{guix pull} will not try to compile package definitions. This is particularly useful when using machines with limited resources." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5267 +#: guix-git/doc/guix.texi:5285 #, no-wrap msgid "personal packages (channels)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5268 +#: guix-git/doc/guix.texi:5286 #, no-wrap msgid "channels, for personal packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5276 +#: guix-git/doc/guix.texi:5294 msgid "Let's say you have a bunch of custom package variants or personal packages that you think would make little sense to contribute to the Guix project, but would like to have these packages transparently available to you at the command line. You would first write modules containing those package definitions (@pxref{Package Modules}), maintain them in a Git repository, and then you and anyone else can use it as an additional channel to get packages from. Neat, no?" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5284 +#: guix-git/doc/guix.texi:5302 msgid "Before you, dear user, shout---``woow this is @emph{soooo coool}!''---and publish your personal channel to the world, we would like to share a few words of caution:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:5292 +#: guix-git/doc/guix.texi:5310 msgid "Before publishing a channel, please consider contributing your package definitions to Guix proper (@pxref{Contributing}). Guix as a project is open to free software of all sorts, and packages in Guix proper are readily available to all Guix users and benefit from the project's quality assurance process." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:5301 +#: guix-git/doc/guix.texi:5319 msgid "When you maintain package definitions outside Guix, we, Guix developers, consider that @emph{the compatibility burden is on you}. Remember that package modules and package definitions are just Scheme code that uses various programming interfaces (APIs). We want to remain free to change these APIs to keep improving Guix, possibly in ways that break your channel. We never change APIs gratuitously, but we will @emph{not} commit to freezing APIs either." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:5305 +#: guix-git/doc/guix.texi:5323 msgid "Corollary: if you're using an external channel and that channel breaks, please @emph{report the issue to the channel authors}, not to the Guix project." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5312 +#: guix-git/doc/guix.texi:5330 msgid "You've been warned! Having said this, we believe external channels are a practical way to exert your freedom to augment Guix' package collection and to share your improvements, which are basic tenets of @uref{https://www.gnu.org/philosophy/free-sw.html, free software}. Please email us at @email{guix-devel@@gnu.org} if you'd like to discuss this." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5324 +#: guix-git/doc/guix.texi:5342 msgid "To create a channel, create a Git repository containing your own package modules and make it available. The repository can contain anything, but a useful channel will contain Guile modules that export packages. Once you start using a channel, Guix will behave as if the root directory of that channel's Git repository has been added to the Guile load path (@pxref{Load Paths,,, guile, GNU Guile Reference Manual}). For example, if your channel contains a file at @file{my-packages/my-tools.scm} that defines a Guile module, then the module will be available under the name @code{(my-packages my-tools)}, and you will be able to use it like any other module (@pxref{Modules,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5329 +#: guix-git/doc/guix.texi:5347 msgid "As a channel author, consider bundling authentication material with your channel so that users can authenticate it. @xref{Channel Authentication}, and @ref{Specifying Channel Authorizations}, for info on how to do it." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5334 +#: guix-git/doc/guix.texi:5352 #, no-wrap msgid "subdirectory, channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5338 +#: guix-git/doc/guix.texi:5356 msgid "As a channel author, you may want to keep your channel modules in a sub-directory. If your modules are in the sub-directory @file{guix}, you must add a meta-data file @file{.guix-channel} that contains:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5343 +#: guix-git/doc/guix.texi:5361 #, no-wrap msgid "" "(channel\n" @@ -12020,29 +12079,29 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5348 +#: guix-git/doc/guix.texi:5366 #, no-wrap msgid "dependencies, channels" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5349 +#: guix-git/doc/guix.texi:5367 #, no-wrap msgid "meta-data, channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5354 +#: guix-git/doc/guix.texi:5372 msgid "Channel authors may decide to augment a package collection provided by other channels. They can declare their channel to be dependent on other channels in a meta-data file @file{.guix-channel}, which is to be placed in the root of the channel repository." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5356 +#: guix-git/doc/guix.texi:5374 msgid "The meta-data file should contain a simple S-expression like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5364 +#: guix-git/doc/guix.texi:5382 #, no-wrap msgid "" "(channel\n" @@ -12055,7 +12114,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5376 +#: guix-git/doc/guix.texi:5394 #, no-wrap msgid "" " ;; The 'introduction' bit below is optional: you would\n" @@ -12072,33 +12131,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5382 +#: guix-git/doc/guix.texi:5400 msgid "In the above example this channel is declared to depend on two other channels, which will both be fetched automatically. The modules provided by the channel will be compiled in an environment where the modules of all these declared channels are available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5386 +#: guix-git/doc/guix.texi:5404 msgid "For the sake of reliability and maintainability, you should avoid dependencies on channels that you don't control, and you should aim to keep the number of dependencies to a minimum." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5390 +#: guix-git/doc/guix.texi:5408 #, no-wrap msgid "channel authorizations" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:5404 +#: guix-git/doc/guix.texi:5422 msgid "channel-authorizations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5404 +#: guix-git/doc/guix.texi:5422 msgid "As we saw above, Guix ensures the source code it pulls from channels comes from authorized developers. As a channel author, you need to specify the list of authorized developers in the @file{.guix-authorizations} file in the channel's Git repository. The authentication rule is simple: each commit must be signed by a key listed in the @file{.guix-authorizations} file of its parent commit(s)@footnote{Git commits form a @dfn{directed acyclic graph} (DAG). Each commit can have zero or more parents; ``regular'' commits have one parent and merge commits have two parent commits. Read @uref{https://eagain.net/articles/git-for-computer-scientists/, @i{Git for Computer Scientists}} for a great overview.} The @file{.guix-authorizations} file looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5407 +#: guix-git/doc/guix.texi:5425 #, no-wrap msgid "" ";; Example '.guix-authorizations' file.\n" @@ -12106,7 +12165,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5410 +#: guix-git/doc/guix.texi:5428 #, no-wrap msgid "" "(authorizations\n" @@ -12115,7 +12174,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5417 +#: guix-git/doc/guix.texi:5435 #, no-wrap msgid "" " ((\"AD17 A21E F8AE D8F1 CC02 DBD9 F8AE D8F1 765C 61E3\"\n" @@ -12127,33 +12186,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5421 +#: guix-git/doc/guix.texi:5439 msgid "Each fingerprint is followed by optional key/value pairs, as in the example above. Currently these key/value pairs are ignored." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5426 +#: guix-git/doc/guix.texi:5444 msgid "This authentication rule creates a chicken-and-egg issue: how do we authenticate the first commit? Related to that: how do we deal with channels whose repository history contains unsigned commits and lack @file{.guix-authorizations}? And how do we fork existing channels?" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5427 +#: guix-git/doc/guix.texi:5445 #, no-wrap msgid "channel introduction" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5434 +#: guix-git/doc/guix.texi:5452 msgid "Channel introductions answer these questions by describing the first commit of a channel that should be authenticated. The first time a channel is fetched with @command{guix pull} or @command{guix time-machine}, the command looks up the introductory commit and verifies that it is signed by the specified OpenPGP key. From then on, it authenticates commits according to the rule above." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5441 +#: guix-git/doc/guix.texi:5459 msgid "Additionally, your channel must provide all the OpenPGP keys that were ever mentioned in @file{.guix-authorizations}, stored as @file{.key} files, which can be either binary or ``ASCII-armored''. By default, those @file{.key} files are searched for in the branch named @code{keyring} but you can specify a different branch name in @code{.guix-channel} like so:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5446 +#: guix-git/doc/guix.texi:5464 #, no-wrap msgid "" "(channel\n" @@ -12162,59 +12221,59 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5450 +#: guix-git/doc/guix.texi:5468 msgid "To summarize, as the author of a channel, there are three things you have to do to allow users to authenticate your code:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:5456 +#: guix-git/doc/guix.texi:5474 msgid "Export the OpenPGP keys of past and present committers with @command{gpg --export} and store them in @file{.key} files, by default in a branch named @code{keyring} (we recommend making it an @dfn{orphan branch})." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:5461 +#: guix-git/doc/guix.texi:5479 msgid "Introduce an initial @file{.guix-authorizations} in the channel's repository. Do that in a signed commit (@pxref{Commit Access}, for information on how to sign Git commits.)" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:5467 +#: guix-git/doc/guix.texi:5485 msgid "Advertise the channel introduction, for instance on your channel's web page. The channel introduction, as we saw above, is the commit/key pair---i.e., the commit that introduced @file{.guix-authorizations}, and the fingerprint of the OpenPGP used to sign it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5472 +#: guix-git/doc/guix.texi:5490 msgid "Before pushing to your public Git repository, you can run @command{guix git-authenticate} to verify that you did sign all the commits you are about to push with an authorized key:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5475 +#: guix-git/doc/guix.texi:5493 #, no-wrap msgid "guix git authenticate @var{commit} @var{signer}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5480 +#: guix-git/doc/guix.texi:5498 msgid "where @var{commit} and @var{signer} are your channel introduction. @xref{Invoking guix git authenticate}, for details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5487 +#: guix-git/doc/guix.texi:5505 msgid "Publishing a signed channel requires discipline: any mistake, such as an unsigned commit or a commit signed by an unauthorized key, will prevent users from pulling from your channel---well, that's the whole point of authentication! Pay attention to merges in particular: merge commits are considered authentic if and only if they are signed by a key present in the @file{.guix-authorizations} file of @emph{both} branches." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5491 +#: guix-git/doc/guix.texi:5509 #, no-wrap msgid "primary URL, channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5494 +#: guix-git/doc/guix.texi:5512 msgid "Channel authors can indicate the primary URL of their channel's Git repository in the @file{.guix-channel} file, like so:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5499 +#: guix-git/doc/guix.texi:5517 #, no-wrap msgid "" "(channel\n" @@ -12223,38 +12282,38 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5506 +#: guix-git/doc/guix.texi:5524 msgid "This allows @command{guix pull} to determine whether it is pulling code from a mirror of the channel; when that is the case, it warns the user that the mirror might be stale and displays the primary URL@. That way, users cannot be tricked into fetching code from a stale mirror that does not receive security updates." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5510 +#: guix-git/doc/guix.texi:5528 msgid "This feature only makes sense for authenticated repositories, such as the official @code{guix} channel, for which @command{guix pull} ensures the code it fetches is authentic." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5514 +#: guix-git/doc/guix.texi:5532 #, no-wrap msgid "news, for channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5518 +#: guix-git/doc/guix.texi:5536 msgid "Channel authors may occasionally want to communicate to their users information about important changes in the channel. You'd send them all an email, but that's not convenient." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5523 +#: guix-git/doc/guix.texi:5541 msgid "Instead, channels can provide a @dfn{news file}; when the channel users run @command{guix pull}, that news file is automatically read and @command{guix pull --news} can display the announcements that correspond to the new commits that have been pulled, if any." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5526 +#: guix-git/doc/guix.texi:5544 msgid "To do that, channel authors must first declare the name of the news file in their @file{.guix-channel} file:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5531 +#: guix-git/doc/guix.texi:5549 #, no-wrap msgid "" "(channel\n" @@ -12263,12 +12322,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5535 +#: guix-git/doc/guix.texi:5553 msgid "The news file itself, @file{etc/news.txt} in this example, must look something like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5548 +#: guix-git/doc/guix.texi:5566 #, no-wrap msgid "" "(channel-news\n" @@ -12285,164 +12344,164 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5555 +#: guix-git/doc/guix.texi:5573 msgid "While the news file is using the Scheme syntax, avoid naming it with a @file{.scm} extension or else it will get picked up when building the channel and yield an error since it is not a valid module. Alternatively, you can move the channel module to a subdirectory and store the news file in another directory." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5560 +#: guix-git/doc/guix.texi:5578 msgid "The file consists of a list of @dfn{news entries}. Each entry is associated with a commit or tag: it describes changes made in this commit, possibly in preceding commits as well. Users see entries only the first time they obtain the commit the entry refers to." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5566 +#: guix-git/doc/guix.texi:5584 msgid "The @code{title} field should be a one-line summary while @code{body} can be arbitrarily long, and both can contain Texinfo markup (@pxref{Overview,,, texinfo, GNU Texinfo}). Both the title and body are a list of language tag/message tuples, which allows @command{guix pull} to display news in the language that corresponds to the user's locale." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5572 +#: guix-git/doc/guix.texi:5590 msgid "If you want to translate news using a gettext-based workflow, you can extract translatable strings with @command{xgettext} (@pxref{xgettext Invocation,,, gettext, GNU Gettext Utilities}). For example, assuming you write news entries in English first, the command below creates a PO file containing the strings to translate:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5575 +#: guix-git/doc/guix.texi:5593 #, no-wrap msgid "xgettext -o news.po -l scheme -ken etc/news.txt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5579 +#: guix-git/doc/guix.texi:5597 msgid "To sum up, yes, you could use your channel as a blog. But beware, this is @emph{not quite} what your users might expect." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5584 +#: guix-git/doc/guix.texi:5602 #, no-wrap msgid "software development" -msgstr "" +msgstr "vývoj softvéru" #. type: Plain text -#: guix-git/doc/guix.texi:5588 +#: guix-git/doc/guix.texi:5606 msgid "If you are a software developer, Guix provides tools that you should find helpful---independently of the language you're developing in. This is what this chapter is about." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5594 +#: guix-git/doc/guix.texi:5612 msgid "The @command{guix shell} command provides a convenient way to set up one-off software environments, be it for development purposes or to run a command without installing it in your profile. The @command{guix pack} command allows you to create @dfn{application bundles} that can be easily distributed to users who do not run Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:5604 +#: guix-git/doc/guix.texi:5622 #, no-wrap msgid "Invoking @command{guix shell}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5606 +#: guix-git/doc/guix.texi:5624 #, no-wrap msgid "reproducible build environments" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5607 +#: guix-git/doc/guix.texi:5625 #, no-wrap msgid "development environments" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:5608 +#: guix-git/doc/guix.texi:5626 #, no-wrap msgid "guix environment" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5609 +#: guix-git/doc/guix.texi:5627 #, no-wrap msgid "environment, package build environment" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5614 +#: guix-git/doc/guix.texi:5632 msgid "The purpose of @command{guix shell} is to make it easy to create one-off software environments, without changing one's profile. It is typically used to create development environments; it is also a convenient way to run applications without ``polluting'' your profile." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5620 +#: guix-git/doc/guix.texi:5638 msgid "The @command{guix shell} command was recently introduced to supersede @command{guix environment} (@pxref{Invoking guix environment}). If you are familiar with @command{guix environment}, you will notice that it is similar but also---we hope!---more convenient." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5626 +#: guix-git/doc/guix.texi:5644 #, no-wrap msgid "guix shell [@var{options}] [@var{package}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5631 +#: guix-git/doc/guix.texi:5649 msgid "The following example creates an environment containing Python and NumPy, building or downloading any missing package, and runs the @command{python3} command in that environment:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5634 +#: guix-git/doc/guix.texi:5652 #, no-wrap msgid "guix shell python python-numpy -- python3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5639 +#: guix-git/doc/guix.texi:5657 msgid "Development environments can be created as in the example below, which spawns an interactive shell containing all the dependencies and environment variables needed to work on Inkscape:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5642 +#: guix-git/doc/guix.texi:5660 #, no-wrap msgid "guix shell --development inkscape\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5648 +#: guix-git/doc/guix.texi:5666 msgid "Exiting the shell places the user back in the original environment before @command{guix shell} was invoked. The next garbage collection (@pxref{Invoking guix gc}) may clean up packages that were installed in the environment and that are no longer used outside of it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5655 +#: guix-git/doc/guix.texi:5673 msgid "As an added convenience, when running from a directory that contains a @file{manifest.scm} or a @file{guix.scm} file (in this order), possibly in a parent directory, @command{guix shell} automatically loads the file---provided the directory is listed in @file{~/.config/guix/shell-authorized-directories}, and only for interactive use:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5658 +#: guix-git/doc/guix.texi:5676 #, no-wrap msgid "guix shell\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5662 +#: guix-git/doc/guix.texi:5680 msgid "This provides an easy way to define, share, and enter development environments." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5673 +#: guix-git/doc/guix.texi:5691 msgid "By default, the shell session or command runs in an @emph{augmented} environment, where the new packages are added to search path environment variables such as @code{PATH}. You can, instead, choose to create an @emph{isolated} environment containing nothing but the packages you asked for. Passing the @option{--pure} option clears environment variable definitions found in the parent environment@footnote{Be sure to use the @option{--check} option the first time you use @command{guix shell} interactively to make sure the shell does not undo the effect of @option{--pure}.}; passing @option{--container} goes one step further by spawning a @dfn{container} isolated from the rest of the system:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5676 +#: guix-git/doc/guix.texi:5694 #, no-wrap msgid "guix shell --container emacs gcc-toolchain\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5684 +#: guix-git/doc/guix.texi:5702 msgid "The command above spawns an interactive shell in a container where nothing but @code{emacs}, @code{gcc-toolchain}, and their dependencies is available. The container lacks network access and shares no files other than the current working directory with the surrounding environment. This is useful to prevent access to system-wide resources such as @file{/usr/bin} on foreign distros." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5691 +#: guix-git/doc/guix.texi:5709 msgid "This @option{--container} option can also prove useful if you wish to run a security-sensitive application, such as a web browser, in an isolated environment. For example, the command below launches Ungoogled-Chromium in an isolated environment, this time sharing network access with the host and preserving its @code{DISPLAY} environment variable, but without even sharing the current directory:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5695 +#: guix-git/doc/guix.texi:5713 #, no-wrap msgid "" "guix shell --container --network --no-cwd ungoogled-chromium \\\n" @@ -12450,18 +12509,18 @@ msgid "" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:5697 guix-git/doc/guix.texi:6008 +#: guix-git/doc/guix.texi:5715 guix-git/doc/guix.texi:6045 #, no-wrap msgid "GUIX_ENVIRONMENT" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5703 +#: guix-git/doc/guix.texi:5721 msgid "@command{guix shell} defines the @env{GUIX_ENVIRONMENT} variable in the shell it spawns; its value is the file name of the profile of this environment. This allows users to, say, define a specific prompt for development environments in their @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5709 guix-git/doc/guix.texi:6020 +#: guix-git/doc/guix.texi:5727 guix-git/doc/guix.texi:6057 #, no-wrap msgid "" "if [ -n \"$GUIX_ENVIRONMENT\" ]\n" @@ -12471,213 +12530,202 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5713 guix-git/doc/guix.texi:6024 +#: guix-git/doc/guix.texi:5731 guix-git/doc/guix.texi:6061 msgid "...@: or to browse the profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5716 guix-git/doc/guix.texi:6027 +#: guix-git/doc/guix.texi:5734 guix-git/doc/guix.texi:6064 #, no-wrap msgid "$ ls \"$GUIX_ENVIRONMENT/bin\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5719 guix-git/doc/guix.texi:6103 +#: guix-git/doc/guix.texi:5737 guix-git/doc/guix.texi:6140 msgid "The available options are summarized below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5721 guix-git/doc/guix.texi:6105 -#: guix-git/doc/guix.texi:11546 +#: guix-git/doc/guix.texi:5739 guix-git/doc/guix.texi:6142 +#: guix-git/doc/guix.texi:11860 #, no-wrap msgid "--check" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5726 +#: guix-git/doc/guix.texi:5744 msgid "Set up the environment and check whether the shell would clobber environment variables. It's a good idea to use this option the first time you run @command{guix shell} for an interactive session to make sure your setup is correct." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5730 +#: guix-git/doc/guix.texi:5748 msgid "For example, if the shell modifies the @env{PATH} environment variable, report it since you would get a different environment than what you asked for." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5738 +#: guix-git/doc/guix.texi:5756 msgid "Such problems usually indicate that the shell startup files are unexpectedly modifying those environment variables. For example, if you are using Bash, make sure that environment variables are set or modified in @file{~/.bash_profile} and @emph{not} in @file{~/.bashrc}---the former is sourced only by log-in shells. @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for details on Bash start-up files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5739 +#: guix-git/doc/guix.texi:5757 #, no-wrap msgid "--development" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5746 +#: guix-git/doc/guix.texi:5764 msgid "Cause @command{guix shell} to include in the environment the dependencies of the following package rather than the package itself. This can be combined with other packages. For instance, the command below starts an interactive shell containing the build-time dependencies of GNU@tie{}Guile, plus Autoconf, Automake, and Libtool:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5749 +#: guix-git/doc/guix.texi:5767 #, no-wrap msgid "guix shell -D guile autoconf automake libtool\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5751 guix-git/doc/guix.texi:6126 -#: guix-git/doc/guix.texi:6607 guix-git/doc/guix.texi:11421 -#: guix-git/doc/guix.texi:12494 guix-git/doc/guix.texi:12845 -#: guix-git/doc/guix.texi:13442 guix-git/doc/guix.texi:35243 -#: guix-git/doc/guix.texi:37713 +#: guix-git/doc/guix.texi:5769 guix-git/doc/guix.texi:6163 +#: guix-git/doc/guix.texi:6650 guix-git/doc/guix.texi:11735 +#: guix-git/doc/guix.texi:12809 guix-git/doc/guix.texi:13201 +#: guix-git/doc/guix.texi:13799 guix-git/doc/guix.texi:35687 +#: guix-git/doc/guix.texi:38192 #, no-wrap msgid "--expression=@var{expr}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5752 guix-git/doc/guix.texi:6127 -#: guix-git/doc/guix.texi:6608 guix-git/doc/guix.texi:11422 -#: guix-git/doc/guix.texi:12495 guix-git/doc/guix.texi:12846 -#: guix-git/doc/guix.texi:13443 guix-git/doc/guix.texi:35244 -#: guix-git/doc/guix.texi:37714 +#: guix-git/doc/guix.texi:5770 guix-git/doc/guix.texi:6164 +#: guix-git/doc/guix.texi:6651 guix-git/doc/guix.texi:11736 +#: guix-git/doc/guix.texi:12810 guix-git/doc/guix.texi:13202 +#: guix-git/doc/guix.texi:13800 guix-git/doc/guix.texi:35688 +#: guix-git/doc/guix.texi:38193 #, no-wrap msgid "-e @var{expr}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5755 guix-git/doc/guix.texi:6130 +#: guix-git/doc/guix.texi:5773 guix-git/doc/guix.texi:6167 msgid "Create an environment for the package or list of packages that @var{expr} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5757 guix-git/doc/guix.texi:6132 -#: guix-git/doc/guix.texi:12850 +#: guix-git/doc/guix.texi:5775 guix-git/doc/guix.texi:6169 +#: guix-git/doc/guix.texi:13206 msgid "For example, running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5760 +#: guix-git/doc/guix.texi:5778 #, no-wrap msgid "guix shell -D -e '(@@ (gnu packages maths) petsc-openmpi)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5764 guix-git/doc/guix.texi:6139 +#: guix-git/doc/guix.texi:5782 guix-git/doc/guix.texi:6176 msgid "starts a shell with the environment for this specific variant of the PETSc package." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5766 guix-git/doc/guix.texi:6141 +#: guix-git/doc/guix.texi:5784 guix-git/doc/guix.texi:6178 msgid "Running:" -msgstr "" +msgstr "Spustiť:" #. type: example -#: guix-git/doc/guix.texi:5769 +#: guix-git/doc/guix.texi:5787 #, no-wrap msgid "guix shell -e '(@@ (gnu) %base-packages)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5772 guix-git/doc/guix.texi:6147 +#: guix-git/doc/guix.texi:5790 guix-git/doc/guix.texi:6184 msgid "starts a shell with all the base system packages available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5775 guix-git/doc/guix.texi:6150 +#: guix-git/doc/guix.texi:5793 guix-git/doc/guix.texi:6187 msgid "The above commands only use the default output of the given packages. To select other outputs, two element tuples can be specified:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5778 +#: guix-git/doc/guix.texi:5796 #, no-wrap msgid "guix shell -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5780 guix-git/doc/guix.texi:11395 +#: guix-git/doc/guix.texi:5798 guix-git/doc/guix.texi:11709 #, no-wrap msgid "--file=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5784 +#: guix-git/doc/guix.texi:5802 msgid "Create an environment containing the package or list of packages that the code within @var{file} evaluates to." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5790 guix-git/doc/guix.texi:6165 +#: guix-git/doc/guix.texi:5808 guix-git/doc/guix.texi:6202 #, no-wrap msgid "@verbatiminclude environment-gdb.scm\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5794 +#: guix-git/doc/guix.texi:5812 msgid "With the file above, you can enter a development environment for GDB by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5797 +#: guix-git/doc/guix.texi:5815 #, no-wrap msgid "guix shell -D -f gdb-devel.scm\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5804 guix-git/doc/guix.texi:6172 +#: guix-git/doc/guix.texi:5822 guix-git/doc/guix.texi:6209 msgid "Create an environment for the packages contained in the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5808 guix-git/doc/guix.texi:6176 +#: guix-git/doc/guix.texi:5826 guix-git/doc/guix.texi:6213 msgid "This is similar to the same-named option in @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) and uses the same manifest files." msgstr "" -#. type: item -#: guix-git/doc/guix.texi:5809 -#, no-wrap -msgid "--rebuild-cache" -msgstr "" - #. type: table -#: guix-git/doc/guix.texi:5814 -msgid "When using @option{--manifest}, @option{--file}, or when invoked without arguments, @command{guix shell} caches the environment so that subsequent uses are instantaneous. The cache is invalidated anytime the file is modified." -msgstr "" - -#. type: table -#: guix-git/doc/guix.texi:5819 -msgid "The @option{--rebuild-cache} forces the cached environment to be refreshed even if the file has not changed. This is useful if the @command{guix.scm} or @command{manifest.scm} has external dependencies, or if its behavior depends, say, on environment variables." +#: guix-git/doc/guix.texi:5832 guix-git/doc/guix.texi:6245 +msgid "Create an environment containing the packages installed in @var{profile}. Use @command{guix package} (@pxref{Invoking guix package}) to create and manage profiles." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5820 guix-git/doc/guix.texi:6203 +#: guix-git/doc/guix.texi:5833 guix-git/doc/guix.texi:6246 #, no-wrap msgid "--pure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5824 guix-git/doc/guix.texi:6207 +#: guix-git/doc/guix.texi:5837 guix-git/doc/guix.texi:6250 msgid "Unset existing environment variables when building the new environment, except those specified with @option{--preserve} (see below). This has the effect of creating an environment in which search paths only contain package inputs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5825 guix-git/doc/guix.texi:6208 +#: guix-git/doc/guix.texi:5838 guix-git/doc/guix.texi:6251 #, no-wrap msgid "--preserve=@var{regexp}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5826 guix-git/doc/guix.texi:6209 +#: guix-git/doc/guix.texi:5839 guix-git/doc/guix.texi:6252 #, no-wrap msgid "-E @var{regexp}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5831 guix-git/doc/guix.texi:6214 +#: guix-git/doc/guix.texi:5844 guix-git/doc/guix.texi:6257 msgid "When used alongside @option{--pure}, preserve the environment variables matching @var{regexp}---in other words, put them on a ``white list'' of environment variables that must be preserved. This option can be repeated several times." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5835 +#: guix-git/doc/guix.texi:5848 #, no-wrap msgid "" "guix shell --pure --preserve=^SLURM openmpi @dots{} \\\n" @@ -12685,116 +12733,116 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5841 guix-git/doc/guix.texi:6224 +#: guix-git/doc/guix.texi:5854 guix-git/doc/guix.texi:6267 msgid "This example runs @command{mpirun} in a context where the only environment variables defined are @env{PATH}, environment variables whose name starts with @samp{SLURM}, as well as the usual ``precious'' variables (@env{HOME}, @env{USER}, etc.)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5842 guix-git/doc/guix.texi:6225 +#: guix-git/doc/guix.texi:5855 guix-git/doc/guix.texi:6268 #, no-wrap msgid "--search-paths" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5845 guix-git/doc/guix.texi:6228 +#: guix-git/doc/guix.texi:5858 guix-git/doc/guix.texi:6271 msgid "Display the environment variable definitions that make up the environment." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5849 guix-git/doc/guix.texi:6232 +#: guix-git/doc/guix.texi:5862 guix-git/doc/guix.texi:6275 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5850 guix-git/doc/guix.texi:6233 +#: guix-git/doc/guix.texi:5863 guix-git/doc/guix.texi:6276 #, no-wrap msgid "--container" -msgstr "" +msgstr "--container" #. type: itemx -#: guix-git/doc/guix.texi:5851 guix-git/doc/guix.texi:6234 +#: guix-git/doc/guix.texi:5864 guix-git/doc/guix.texi:6277 #, no-wrap msgid "-C" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5852 guix-git/doc/guix.texi:6069 -#: guix-git/doc/guix.texi:6235 guix-git/doc/guix.texi:13998 -#: guix-git/doc/guix.texi:35211 +#: guix-git/doc/guix.texi:5865 guix-git/doc/guix.texi:6106 +#: guix-git/doc/guix.texi:6278 guix-git/doc/guix.texi:14355 +#: guix-git/doc/guix.texi:35655 #, no-wrap msgid "container" msgstr "kontajner" #. type: table -#: guix-git/doc/guix.texi:5858 guix-git/doc/guix.texi:6241 +#: guix-git/doc/guix.texi:5871 guix-git/doc/guix.texi:6284 msgid "Run @var{command} within an isolated container. The current working directory outside the container is mapped inside the container. Additionally, unless overridden with @option{--user}, a dummy home directory is created that matches the current user's home directory, and @file{/etc/passwd} is configured accordingly." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5862 guix-git/doc/guix.texi:6245 +#: guix-git/doc/guix.texi:5875 guix-git/doc/guix.texi:6288 msgid "The spawned process runs as the current user outside the container. Inside the container, it has the same UID and GID as the current user, unless @option{--user} is passed (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5863 guix-git/doc/guix.texi:6246 -#: guix-git/doc/guix.texi:35303 +#: guix-git/doc/guix.texi:5876 guix-git/doc/guix.texi:6289 +#: guix-git/doc/guix.texi:35747 #, no-wrap msgid "--network" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5868 guix-git/doc/guix.texi:6251 +#: guix-git/doc/guix.texi:5881 guix-git/doc/guix.texi:6294 msgid "For containers, share the network namespace with the host system. Containers created without this flag only have access to the loopback device." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5869 guix-git/doc/guix.texi:6252 +#: guix-git/doc/guix.texi:5882 guix-git/doc/guix.texi:6295 #, no-wrap msgid "--link-profile" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5870 guix-git/doc/guix.texi:6253 +#: guix-git/doc/guix.texi:5883 guix-git/doc/guix.texi:6296 #, no-wrap msgid "-P" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5878 +#: guix-git/doc/guix.texi:5891 msgid "For containers, link the environment profile to @file{~/.guix-profile} within the container and set @code{GUIX_ENVIRONMENT} to that. This is equivalent to making @file{~/.guix-profile} a symlink to the actual profile within the container. Linking will fail and abort the environment if the directory already exists, which will certainly be the case if @command{guix shell} was invoked in the user's home directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5884 guix-git/doc/guix.texi:6267 +#: guix-git/doc/guix.texi:5897 guix-git/doc/guix.texi:6310 msgid "Certain packages are configured to look in @file{~/.guix-profile} for configuration files and data;@footnote{For example, the @code{fontconfig} package inspects @file{~/.guix-profile/share/fonts} for additional fonts.} @option{--link-profile} allows these programs to behave as expected within the environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5885 guix-git/doc/guix.texi:6268 -#: guix-git/doc/guix.texi:13575 +#: guix-git/doc/guix.texi:5898 guix-git/doc/guix.texi:6311 +#: guix-git/doc/guix.texi:13932 #, no-wrap msgid "--user=@var{user}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5886 guix-git/doc/guix.texi:6269 -#: guix-git/doc/guix.texi:13576 +#: guix-git/doc/guix.texi:5899 guix-git/doc/guix.texi:6312 +#: guix-git/doc/guix.texi:13933 #, no-wrap msgid "-u @var{user}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5893 guix-git/doc/guix.texi:6276 +#: guix-git/doc/guix.texi:5906 guix-git/doc/guix.texi:6319 msgid "For containers, use the username @var{user} in place of the current user. The generated @file{/etc/passwd} entry within the container will contain the name @var{user}, the home directory will be @file{/home/@var{user}}, and no user GECOS data will be copied. Furthermore, the UID and GID inside the container are 1000. @var{user} need not exist on the system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5898 guix-git/doc/guix.texi:6281 +#: guix-git/doc/guix.texi:5911 guix-git/doc/guix.texi:6324 msgid "Additionally, any shared or exposed path (see @option{--share} and @option{--expose} respectively) whose target is within the current user's home directory will be remapped relative to @file{/home/USER}; this includes the automatic mapping of the current working directory." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5905 +#: guix-git/doc/guix.texi:5918 #, no-wrap msgid "" "# will expose paths as /home/foo/wd, /home/foo/test, and /home/foo/target\n" @@ -12805,229 +12853,267 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5910 guix-git/doc/guix.texi:6293 +#: guix-git/doc/guix.texi:5923 guix-git/doc/guix.texi:6336 msgid "While this will limit the leaking of user identity through home paths and each of the user fields, this is only one useful component of a broader privacy/anonymity solution---not one in and of itself." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5911 guix-git/doc/guix.texi:6294 +#: guix-git/doc/guix.texi:5924 guix-git/doc/guix.texi:6337 #, no-wrap msgid "--no-cwd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5918 guix-git/doc/guix.texi:6301 +#: guix-git/doc/guix.texi:5931 guix-git/doc/guix.texi:6344 msgid "For containers, the default behavior is to share the current working directory with the isolated container and immediately change to that directory within the container. If this is undesirable, @option{--no-cwd} will cause the current working directory to @emph{not} be automatically shared and will change to the user's home directory within the container instead. See also @option{--user}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5919 guix-git/doc/guix.texi:6302 +#: guix-git/doc/guix.texi:5932 guix-git/doc/guix.texi:6345 #, no-wrap msgid "--expose=@var{source}[=@var{target}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5920 guix-git/doc/guix.texi:6303 +#: guix-git/doc/guix.texi:5933 guix-git/doc/guix.texi:6346 #, no-wrap msgid "--share=@var{source}[=@var{target}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5926 guix-git/doc/guix.texi:6309 +#: guix-git/doc/guix.texi:5939 guix-git/doc/guix.texi:6352 msgid "For containers, @option{--expose} (resp. @option{--share}) exposes the file system @var{source} from the host system as the read-only (resp. writable) file system @var{target} within the container. If @var{target} is not specified, @var{source} is used as the target mount point in the container." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5930 guix-git/doc/guix.texi:6313 +#: guix-git/doc/guix.texi:5943 guix-git/doc/guix.texi:6356 msgid "The example below spawns a Guile REPL in a container in which the user's home directory is accessible read-only via the @file{/exchange} directory:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5933 +#: guix-git/doc/guix.texi:5946 #, no-wrap msgid "guix shell --container --expose=$HOME=/exchange guile -- guile\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5935 guix-git/doc/guix.texi:6110 -#: guix-git/doc/guix.texi:6675 guix-git/doc/guix.texi:11575 -#: guix-git/doc/guix.texi:35308 +#: guix-git/doc/guix.texi:5948 +#, no-wrap +msgid "--rebuild-cache" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:5949 +#, no-wrap +msgid "caching, of profiles" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:5950 +#, no-wrap +msgid "caching, in @command{guix shell}" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:5956 +msgid "In most cases, @command{guix shell} caches the environment so that subsequent uses are instantaneous. Least-recently used cache entries are periodically removed. The cache is also invalidated, when using @option{--file} or @option{--manifest}, anytime the corresponding file is modified." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:5962 +msgid "The @option{--rebuild-cache} forces the cached environment to be refreshed. This is useful when using @option{--file} or @option{--manifest} and the @command{guix.scm} or @command{manifest.scm} file has external dependencies, or if its behavior depends, say, on environment variables." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:5963 guix-git/doc/guix.texi:6147 +#: guix-git/doc/guix.texi:6718 guix-git/doc/guix.texi:11889 +#: guix-git/doc/guix.texi:35752 #, no-wrap msgid "--root=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5936 guix-git/doc/guix.texi:6111 -#: guix-git/doc/guix.texi:6676 guix-git/doc/guix.texi:11576 -#: guix-git/doc/guix.texi:35309 +#: guix-git/doc/guix.texi:5964 guix-git/doc/guix.texi:6148 +#: guix-git/doc/guix.texi:6719 guix-git/doc/guix.texi:11890 +#: guix-git/doc/guix.texi:35753 #, no-wrap msgid "-r @var{file}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5937 guix-git/doc/guix.texi:6112 +#: guix-git/doc/guix.texi:5965 guix-git/doc/guix.texi:6149 #, no-wrap msgid "persistent environment" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5938 guix-git/doc/guix.texi:6113 +#: guix-git/doc/guix.texi:5966 guix-git/doc/guix.texi:6150 #, no-wrap msgid "garbage collector root, for environments" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5941 guix-git/doc/guix.texi:6116 +#: guix-git/doc/guix.texi:5969 guix-git/doc/guix.texi:6153 msgid "Make @var{file} a symlink to the profile for this environment, and register it as a garbage collector root." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5944 guix-git/doc/guix.texi:6119 +#: guix-git/doc/guix.texi:5972 guix-git/doc/guix.texi:6156 msgid "This is useful if you want to protect your environment from garbage collection, to make it ``persistent''." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5950 -msgid "When this option is omitted, the environment is protected from garbage collection only for the duration of the @command{guix shell} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages. @xref{Invoking guix gc}, for more on GC roots." +#: guix-git/doc/guix.texi:5978 +msgid "When this option is omitted, @command{guix shell} caches profiles so that subsequent uses of the same environment are instantaneous---this is comparable to using @option{--root} except that @command{guix shell} takes care of periodically removing the least-recently used garbage collector roots." msgstr "" +#. type: table +#: guix-git/doc/guix.texi:5985 +msgid "In some cases, @command{guix shell} does not cache profiles---e.g., if transformation options such as @option{--with-latest} are used. In those cases, the environment is protected from garbage collection only for the duration of the @command{guix shell} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:5987 +msgid "@xref{Invoking guix gc}, for more on GC roots." +msgstr "Viď @xref{Invoking guix gc} pre viac podrobností o koreňoch zberača odpadkov." + #. type: Plain text -#: guix-git/doc/guix.texi:5955 +#: guix-git/doc/guix.texi:5992 msgid "@command{guix shell} also supports all of the common build options that @command{guix build} supports (@pxref{Common Build Options}) as well as package transformation options (@pxref{Package Transformation Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:5957 +#: guix-git/doc/guix.texi:5994 #, no-wrap msgid "Invoking @command{guix environment}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5961 +#: guix-git/doc/guix.texi:5998 msgid "The purpose of @command{guix environment} is to assist in creating development environments." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5962 +#: guix-git/doc/guix.texi:5999 #, no-wrap msgid "Deprecation warning" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5966 +#: guix-git/doc/guix.texi:6003 msgid "The @command{guix environment} command is deprecated in favor of @command{guix shell}, which performs similar functions but is more convenient to use. @xref{Invoking guix shell}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5971 +#: guix-git/doc/guix.texi:6008 msgid "Being deprecated, @command{guix environment} is slated for eventual removal, but the Guix project is committed to keeping it until May 1st, 2023. Please get in touch with us at @email{guix-devel@@gnu.org} if you would like to discuss it." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5977 +#: guix-git/doc/guix.texi:6014 #, no-wrap msgid "guix environment @var{options} @var{package}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5981 +#: guix-git/doc/guix.texi:6018 msgid "The following example spawns a new shell set up for the development of GNU@tie{}Guile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5984 +#: guix-git/doc/guix.texi:6021 #, no-wrap msgid "guix environment guile\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6001 +#: guix-git/doc/guix.texi:6038 msgid "If the needed dependencies are not built yet, @command{guix environment} automatically builds them. The environment of the new shell is an augmented version of the environment that @command{guix environment} was run in. It contains the necessary search paths for building the given package added to the existing environment variables. To create a ``pure'' environment, in which the original environment variables have been unset, use the @option{--pure} option@footnote{Users sometimes wrongfully augment environment variables such as @env{PATH} in their @file{~/.bashrc} file. As a consequence, when @command{guix environment} launches it, Bash may read @file{~/.bashrc}, thereby introducing ``impurities'' in these environment variables. It is an error to define such environment variables in @file{.bashrc}; instead, they should be defined in @file{.bash_profile}, which is sourced only by log-in shells. @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for details on Bash start-up files.}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6007 +#: guix-git/doc/guix.texi:6044 msgid "Exiting from a Guix environment is the same as exiting from the shell, and will place the user back in the old environment before @command{guix environment} was invoked. The next garbage collection (@pxref{Invoking guix gc}) will clean up packages that were installed from within the environment and are no longer used outside of it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6014 +#: guix-git/doc/guix.texi:6051 msgid "@command{guix environment} defines the @env{GUIX_ENVIRONMENT} variable in the shell it spawns; its value is the file name of the profile of this environment. This allows users to, say, define a specific prompt for development environments in their @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6033 +#: guix-git/doc/guix.texi:6070 msgid "Additionally, more than one package may be specified, in which case the union of the inputs for the given packages are used. For example, the command below spawns a shell where all of the dependencies of both Guile and Emacs are available:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6036 +#: guix-git/doc/guix.texi:6073 #, no-wrap msgid "guix environment guile emacs\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6041 +#: guix-git/doc/guix.texi:6078 msgid "Sometimes an interactive shell session is not desired. An arbitrary command may be invoked by placing the @code{--} token to separate the command from the rest of the arguments:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6044 +#: guix-git/doc/guix.texi:6081 #, no-wrap msgid "guix environment guile -- make -j4\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6050 +#: guix-git/doc/guix.texi:6087 msgid "In other situations, it is more convenient to specify the list of packages needed in the environment. For example, the following command runs @command{python} from an environment containing Python@tie{}3 and NumPy:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6053 +#: guix-git/doc/guix.texi:6090 #, no-wrap msgid "guix environment --ad-hoc python-numpy python -- python3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6064 +#: guix-git/doc/guix.texi:6101 msgid "Furthermore, one might want the dependencies of a package and also some additional packages that are not build-time or runtime dependencies, but are useful when developing nonetheless. Because of this, the @option{--ad-hoc} flag is positional. Packages appearing before @option{--ad-hoc} are interpreted as packages whose dependencies will be added to the environment. Packages appearing after are interpreted as packages that will be added to the environment directly. For example, the following command creates a Guix development environment that additionally includes Git and strace:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6067 +#: guix-git/doc/guix.texi:6104 #, no-wrap msgid "guix environment --pure guix --ad-hoc git strace\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6077 +#: guix-git/doc/guix.texi:6114 msgid "Sometimes it is desirable to isolate the environment as much as possible, for maximal purity and reproducibility. In particular, when using Guix on a host distro that is not Guix System, it is desirable to prevent access to @file{/usr/bin} and other system-wide resources from the development environment. For example, the following command spawns a Guile REPL in a ``container'' where only the store and the current working directory are mounted:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6080 +#: guix-git/doc/guix.texi:6117 #, no-wrap msgid "guix environment --ad-hoc --container guile -- guile\n" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6084 +#: guix-git/doc/guix.texi:6121 msgid "The @option{--container} option requires Linux-libre 3.19 or newer." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6086 +#: guix-git/doc/guix.texi:6123 #, no-wrap msgid "certificates" -msgstr "" +msgstr "certifikáty" #. type: Plain text -#: guix-git/doc/guix.texi:6093 +#: guix-git/doc/guix.texi:6130 msgid "Another typical use case for containers is to run security-sensitive applications such as a web browser. To run Eolie, we must expose and share some files and directories; we include @code{nss-certs} and expose @file{/etc/ssl/certs/} for HTTPS authentication; finally we preserve the @env{DISPLAY} environment variable since containerized graphical applications won't display without it." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6100 +#: guix-git/doc/guix.texi:6137 #, no-wrap msgid "" "guix environment --preserve='^DISPLAY$' --container --network \\\n" @@ -13038,89 +13124,89 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6109 +#: guix-git/doc/guix.texi:6146 msgid "Set up the environment and check whether the shell would clobber environment variables. @xref{Invoking guix shell, @option{--check}}, for more info." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6125 +#: guix-git/doc/guix.texi:6162 msgid "When this option is omitted, the environment is protected from garbage collection only for the duration of the @command{guix environment} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages. @xref{Invoking guix gc}, for more on GC roots." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6135 +#: guix-git/doc/guix.texi:6172 #, no-wrap msgid "guix environment -e '(@@ (gnu packages maths) petsc-openmpi)'\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6144 +#: guix-git/doc/guix.texi:6181 #, no-wrap msgid "guix environment --ad-hoc -e '(@@ (gnu) %base-packages)'\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6153 +#: guix-git/doc/guix.texi:6190 #, no-wrap msgid "guix environment --ad-hoc -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6155 +#: guix-git/doc/guix.texi:6192 #, no-wrap msgid "--load=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6156 +#: guix-git/doc/guix.texi:6193 #, no-wrap msgid "-l @var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6159 +#: guix-git/doc/guix.texi:6196 msgid "Create an environment for the package or list of packages that the code within @var{file} evaluates to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6177 +#: guix-git/doc/guix.texi:6214 #, no-wrap msgid "--ad-hoc" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6182 +#: guix-git/doc/guix.texi:6219 msgid "Include all specified packages in the resulting environment, as if an @i{ad hoc} package were defined with them as inputs. This option is useful for quickly creating an environment without having to write a package expression to contain the desired inputs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6184 +#: guix-git/doc/guix.texi:6221 msgid "For instance, the command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6187 +#: guix-git/doc/guix.texi:6224 #, no-wrap msgid "guix environment --ad-hoc guile guile-sdl -- guile\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6191 +#: guix-git/doc/guix.texi:6228 msgid "runs @command{guile} in an environment where Guile and Guile-SDL are available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6196 +#: guix-git/doc/guix.texi:6233 msgid "Note that this example implicitly asks for the default output of @code{guile} and @code{guile-sdl}, but it is possible to ask for a specific output---e.g., @code{glib:bin} asks for the @code{bin} output of @code{glib} (@pxref{Packages with Multiple Outputs})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6202 +#: guix-git/doc/guix.texi:6239 msgid "This option may be composed with the default behavior of @command{guix environment}. Packages appearing before @option{--ad-hoc} are interpreted as packages whose dependencies will be added to the environment, the default behavior. Packages appearing after are interpreted as packages that will be added to the environment directly." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6218 +#: guix-git/doc/guix.texi:6261 #, no-wrap msgid "" "guix environment --pure --preserve=^SLURM --ad-hoc openmpi @dots{} \\\n" @@ -13128,12 +13214,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6261 +#: guix-git/doc/guix.texi:6304 msgid "For containers, link the environment profile to @file{~/.guix-profile} within the container and set @code{GUIX_ENVIRONMENT} to that. This is equivalent to making @file{~/.guix-profile} a symlink to the actual profile within the container. Linking will fail and abort the environment if the directory already exists, which will certainly be the case if @command{guix environment} was invoked in the user's home directory." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6288 +#: guix-git/doc/guix.texi:6331 #, no-wrap msgid "" "# will expose paths as /home/foo/wd, /home/foo/test, and /home/foo/target\n" @@ -13144,68 +13230,68 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6316 +#: guix-git/doc/guix.texi:6359 #, no-wrap msgid "guix environment --container --expose=$HOME=/exchange --ad-hoc guile -- guile\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6324 +#: guix-git/doc/guix.texi:6367 msgid "@command{guix environment} also supports all of the common build options that @command{guix build} supports (@pxref{Common Build Options}) as well as package transformation options (@pxref{Package Transformation Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:6326 +#: guix-git/doc/guix.texi:6369 #, no-wrap msgid "Invoking @command{guix pack}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6332 +#: guix-git/doc/guix.texi:6375 msgid "Occasionally you want to pass software to people who are not (yet!) lucky enough to be using Guix. You'd tell them to run @command{guix package -i @var{something}}, but that's not possible in this case. This is where @command{guix pack} comes in." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6337 +#: guix-git/doc/guix.texi:6380 msgid "If you are looking for ways to exchange binaries among machines that already run Guix, @pxref{Invoking guix copy}, @ref{Invoking guix publish}, and @ref{Invoking guix archive}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6339 +#: guix-git/doc/guix.texi:6382 #, no-wrap msgid "pack" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6340 +#: guix-git/doc/guix.texi:6383 #, no-wrap msgid "bundle" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6341 +#: guix-git/doc/guix.texi:6384 #, no-wrap msgid "application bundle" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6342 +#: guix-git/doc/guix.texi:6385 #, no-wrap msgid "software bundle" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6351 +#: guix-git/doc/guix.texi:6394 msgid "The @command{guix pack} command creates a shrink-wrapped @dfn{pack} or @dfn{software bundle}: it creates a tarball or some other archive containing the binaries of the software you're interested in, and all its dependencies. The resulting archive can be used on any machine that does not have Guix, and people can run the exact same binaries as those you have with Guix. The pack itself is created in a bit-reproducible fashion, so anyone can verify that it really contains the build results that you pretend to be shipping." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6354 +#: guix-git/doc/guix.texi:6397 msgid "For example, to create a bundle containing Guile, Emacs, Geiser, and all their dependencies, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6359 +#: guix-git/doc/guix.texi:6402 #, no-wrap msgid "" "$ guix pack guile emacs emacs-geiser\n" @@ -13214,61 +13300,61 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6367 +#: guix-git/doc/guix.texi:6410 msgid "The result here is a tarball containing a @file{/gnu/store} directory with all the relevant packages. The resulting tarball contains a @dfn{profile} with the three packages of interest; the profile is the same as would be created by @command{guix package -i}. It is this mechanism that is used to create Guix's own standalone binary tarball (@pxref{Binary Installation})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6372 +#: guix-git/doc/guix.texi:6415 msgid "Users of this pack would have to run @file{/gnu/store/@dots{}-profile/bin/guile} to run Guile, which you may find inconvenient. To work around it, you can create, say, a @file{/opt/gnu/bin} symlink to the profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6375 +#: guix-git/doc/guix.texi:6418 #, no-wrap msgid "guix pack -S /opt/gnu/bin=bin guile emacs emacs-geiser\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6379 +#: guix-git/doc/guix.texi:6422 msgid "That way, users can happily type @file{/opt/gnu/bin/guile} and enjoy." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6380 +#: guix-git/doc/guix.texi:6423 #, no-wrap msgid "relocatable binaries, with @command{guix pack}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6388 +#: guix-git/doc/guix.texi:6431 msgid "What if the recipient of your pack does not have root privileges on their machine, and thus cannot unpack it in the root file system? In that case, you will want to use the @option{--relocatable} option (see below). This option produces @dfn{relocatable binaries}, meaning they they can be placed anywhere in the file system hierarchy: in the example above, users can unpack your tarball in their home directory and directly run @file{./opt/gnu/bin/guile}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6389 +#: guix-git/doc/guix.texi:6432 #, no-wrap msgid "Docker, build an image with guix pack" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6392 +#: guix-git/doc/guix.texi:6435 msgid "Alternatively, you can produce a pack in the Docker image format using the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6395 +#: guix-git/doc/guix.texi:6438 #, no-wrap msgid "guix pack -f docker -S /bin=bin guile guile-readline\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6400 +#: guix-git/doc/guix.texi:6443 msgid "The result is a tarball that can be passed to the @command{docker load} command, followed by @code{docker run}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6404 +#: guix-git/doc/guix.texi:6447 #, no-wrap msgid "" "docker load < @var{file}\n" @@ -13276,169 +13362,169 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6411 +#: guix-git/doc/guix.texi:6454 msgid "where @var{file} is the image returned by @var{guix pack}, and @code{guile-guile-readline} is its ``image tag''. See the @uref{https://docs.docker.com/engine/reference/commandline/load/, Docker documentation} for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6412 +#: guix-git/doc/guix.texi:6455 #, no-wrap msgid "Singularity, build an image with guix pack" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6413 +#: guix-git/doc/guix.texi:6456 #, no-wrap msgid "SquashFS, build an image with guix pack" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6416 +#: guix-git/doc/guix.texi:6459 msgid "Yet another option is to produce a SquashFS image with the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6419 +#: guix-git/doc/guix.texi:6462 #, no-wrap msgid "guix pack -f squashfs bash guile emacs emacs-geiser\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6427 +#: guix-git/doc/guix.texi:6470 msgid "The result is a SquashFS file system image that can either be mounted or directly be used as a file system container image with the @uref{https://www.sylabs.io/docs/, Singularity container execution environment}, using commands like @command{singularity shell} or @command{singularity exec}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6429 +#: guix-git/doc/guix.texi:6472 msgid "Several command-line options allow you to customize your pack:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6434 +#: guix-git/doc/guix.texi:6477 msgid "Produce a pack in the given @var{format}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6436 +#: guix-git/doc/guix.texi:6479 msgid "The available formats are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6438 +#: guix-git/doc/guix.texi:6481 #, no-wrap msgid "tarball" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6441 +#: guix-git/doc/guix.texi:6484 msgid "This is the default format. It produces a tarball containing all the specified binaries and symlinks." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6442 +#: guix-git/doc/guix.texi:6485 #, no-wrap msgid "docker" -msgstr "" +msgstr "docker" #. type: table -#: guix-git/doc/guix.texi:6448 +#: guix-git/doc/guix.texi:6491 msgid "This produces a tarball that follows the @uref{https://github.com/docker/docker/blob/master/image/spec/v1.2.md, Docker Image Specification}. The ``repository name'' as it appears in the output of the @command{docker images} command is computed from package names passed on the command line or in the manifest file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6449 +#: guix-git/doc/guix.texi:6492 #, no-wrap msgid "squashfs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6453 +#: guix-git/doc/guix.texi:6496 msgid "This produces a SquashFS image containing all the specified binaries and symlinks, as well as empty mount points for virtual file systems like procfs." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6459 +#: guix-git/doc/guix.texi:6502 msgid "Singularity @emph{requires} you to provide @file{/bin/sh} in the image. For that reason, @command{guix pack -f squashfs} always implies @code{-S /bin=bin}. Thus, your @command{guix pack} invocation must always start with something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6462 +#: guix-git/doc/guix.texi:6505 #, no-wrap msgid "guix pack -f squashfs bash @dots{}\n" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6467 +#: guix-git/doc/guix.texi:6510 msgid "If you forget the @code{bash} (or similar) package, @command{singularity run} and @command{singularity exec} will fail with an unhelpful ``no such file or directory'' message." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6469 +#: guix-git/doc/guix.texi:6512 #, no-wrap msgid "deb" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6477 +#: guix-git/doc/guix.texi:6520 msgid "This produces a Debian archive (a package with the @samp{.deb} file extension) containing all the specified binaries and symbolic links, that can be installed on top of any dpkg-based GNU(/Linux) distribution. Advanced options can be revealed via the @option{--help-deb-format} option. They allow embedding control files for more fine-grained control, such as activating specific triggers or providing a maintainer configure script to run arbitrary setup code upon installation." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6480 +#: guix-git/doc/guix.texi:6523 #, no-wrap msgid "guix pack -f deb -C xz -S /usr/bin/hello=bin/hello hello\n" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6487 +#: guix-git/doc/guix.texi:6530 msgid "Because archives produced with @command{guix pack} contain a collection of store items and because each @command{dpkg} package must not have conflicting files, in practice that means you likely won't be able to install more than one such archive on a given system." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6495 +#: guix-git/doc/guix.texi:6538 msgid "@command{dpkg} will assume ownership of any files contained in the pack that it does @emph{not} know about. It is unwise to install Guix-produced @samp{.deb} files on a system where @file{/gnu/store} is shared by other software, such as a Guix installation or other, non-deb packs." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6499 +#: guix-git/doc/guix.texi:6542 #, no-wrap msgid "relocatable binaries" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6500 +#: guix-git/doc/guix.texi:6543 #, no-wrap msgid "--relocatable" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6504 +#: guix-git/doc/guix.texi:6547 msgid "Produce @dfn{relocatable binaries}---i.e., binaries that can be placed anywhere in the file system hierarchy and run from there." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6512 +#: guix-git/doc/guix.texi:6555 msgid "When this option is passed once, the resulting binaries require support for @dfn{user namespaces} in the kernel Linux; when passed @emph{twice}@footnote{Here's a trick to memorize it: @code{-RR}, which adds PRoot support, can be thought of as the abbreviation of ``Really Relocatable''. Neat, isn't it?}, relocatable binaries fall to back to other techniques if user namespaces are unavailable, and essentially work anywhere---see below for the implications." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6514 +#: guix-git/doc/guix.texi:6557 msgid "For example, if you create a pack containing Bash with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6517 +#: guix-git/doc/guix.texi:6560 #, no-wrap msgid "guix pack -RR -S /mybin=bin bash\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6522 +#: guix-git/doc/guix.texi:6565 msgid "...@: you can copy that pack to a machine that lacks Guix, and from your home directory as a normal user, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6526 +#: guix-git/doc/guix.texi:6569 #, no-wrap msgid "" "tar xf pack.tar.gz\n" @@ -13446,121 +13532,121 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6534 +#: guix-git/doc/guix.texi:6577 msgid "In that shell, if you type @code{ls /gnu/store}, you'll notice that @file{/gnu/store} shows up and contains all the dependencies of @code{bash}, even though the machine actually lacks @file{/gnu/store} altogether! That is probably the simplest way to deploy Guix-built software on a non-Guix machine." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6540 +#: guix-git/doc/guix.texi:6583 msgid "By default, relocatable binaries rely on the @dfn{user namespace} feature of the kernel Linux, which allows unprivileged users to mount or change root. Old versions of Linux did not support it, and some GNU/Linux distributions turn it off." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6546 +#: guix-git/doc/guix.texi:6589 msgid "To produce relocatable binaries that work even in the absence of user namespaces, pass @option{--relocatable} or @option{-R} @emph{twice}. In that case, binaries will try user namespace support and fall back to another @dfn{execution engine} if user namespaces are not supported. The following execution engines are supported:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6548 guix-git/doc/guix.texi:17371 +#: guix-git/doc/guix.texi:6591 guix-git/doc/guix.texi:17733 #, no-wrap msgid "default" -msgstr "" +msgstr "predvolený" #. type: table -#: guix-git/doc/guix.texi:6551 +#: guix-git/doc/guix.texi:6594 msgid "Try user namespaces and fall back to PRoot if user namespaces are not supported (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6552 +#: guix-git/doc/guix.texi:6595 #, no-wrap msgid "performance" -msgstr "" +msgstr "výkon" #. type: table -#: guix-git/doc/guix.texi:6555 +#: guix-git/doc/guix.texi:6598 msgid "Try user namespaces and fall back to Fakechroot if user namespaces are not supported (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6556 +#: guix-git/doc/guix.texi:6599 #, no-wrap msgid "userns" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6559 +#: guix-git/doc/guix.texi:6602 msgid "Run the program through user namespaces and abort if they are not supported." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6560 +#: guix-git/doc/guix.texi:6603 #, no-wrap msgid "proot" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6567 +#: guix-git/doc/guix.texi:6610 msgid "Run through PRoot. The @uref{https://proot-me.github.io/, PRoot} program provides the necessary support for file system virtualization. It achieves that by using the @code{ptrace} system call on the running program. This approach has the advantage to work without requiring special kernel support, but it incurs run-time overhead every time a system call is made." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6568 +#: guix-git/doc/guix.texi:6611 #, no-wrap msgid "fakechroot" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6576 +#: guix-git/doc/guix.texi:6619 msgid "Run through Fakechroot. @uref{https://github.com/dex4er/fakechroot/, Fakechroot} virtualizes file system accesses by intercepting calls to C library functions such as @code{open}, @code{stat}, @code{exec}, and so on. Unlike PRoot, it incurs very little overhead. However, it does not always work: for example, some file system accesses made from within the C library are not intercepted, and file system accesses made @i{via} direct syscalls are not intercepted either, leading to erratic behavior." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:6578 +#: guix-git/doc/guix.texi:6621 #, no-wrap msgid "GUIX_EXECUTION_ENGINE" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6582 +#: guix-git/doc/guix.texi:6625 msgid "When running a wrapped program, you can explicitly request one of the execution engines listed above by setting the @env{GUIX_EXECUTION_ENGINE} environment variable accordingly." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6584 +#: guix-git/doc/guix.texi:6627 #, no-wrap msgid "entry point, for Docker images" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6585 +#: guix-git/doc/guix.texi:6628 #, no-wrap msgid "--entry-point=@var{command}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6590 +#: guix-git/doc/guix.texi:6633 msgid "Use @var{command} as the @dfn{entry point} of the resulting pack, if the pack format supports it---currently @code{docker} and @code{squashfs} (Singularity) support it. @var{command} must be relative to the profile contained in the pack." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6594 +#: guix-git/doc/guix.texi:6637 msgid "The entry point specifies the command that tools like @code{docker run} or @code{singularity run} automatically start by default. For example, you can do:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6597 +#: guix-git/doc/guix.texi:6640 #, no-wrap msgid "guix pack -f docker --entry-point=bin/guile guile\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6601 +#: guix-git/doc/guix.texi:6644 msgid "The resulting pack can easily be loaded and @code{docker run} with no extra arguments will spawn @code{bin/guile}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6605 +#: guix-git/doc/guix.texi:6648 #, no-wrap msgid "" "docker load -i pack.tar.gz\n" @@ -13568,398 +13654,398 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6610 guix-git/doc/guix.texi:12497 -#: guix-git/doc/guix.texi:13445 +#: guix-git/doc/guix.texi:6653 guix-git/doc/guix.texi:12812 +#: guix-git/doc/guix.texi:13802 msgid "Consider the package @var{expr} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6614 +#: guix-git/doc/guix.texi:6657 msgid "This has the same purpose as the same-named option in @command{guix build} (@pxref{Additional Build Options, @option{--expression} in @command{guix build}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6620 +#: guix-git/doc/guix.texi:6663 msgid "Use the packages contained in the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6628 +#: guix-git/doc/guix.texi:6671 msgid "This has a similar purpose as the same-named option in @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) and uses the same manifest files. It allows you to define a collection of packages once and use it both for creating profiles and for creating archives for use on machines that do not have Guix installed. Note that you can specify @emph{either} a manifest file @emph{or} a list of packages, but not both." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6634 guix-git/doc/guix.texi:11539 +#: guix-git/doc/guix.texi:6677 guix-git/doc/guix.texi:11853 #, no-wrap msgid "--target=@var{triplet}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6635 guix-git/doc/guix.texi:7080 -#: guix-git/doc/guix.texi:11540 +#: guix-git/doc/guix.texi:6678 guix-git/doc/guix.texi:7124 +#: guix-git/doc/guix.texi:11854 #, no-wrap msgid "cross-compilation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6639 +#: guix-git/doc/guix.texi:6682 msgid "Cross-build for @var{triplet}, which must be a valid GNU triplet, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying target triplets, GNU configuration triplets,, autoconf, Autoconf})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6640 +#: guix-git/doc/guix.texi:6683 #, no-wrap msgid "--compression=@var{tool}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6641 +#: guix-git/doc/guix.texi:6684 #, no-wrap msgid "-C @var{tool}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6645 +#: guix-git/doc/guix.texi:6688 msgid "Compress the resulting tarball using @var{tool}---one of @code{gzip}, @code{zstd}, @code{bzip2}, @code{xz}, @code{lzip}, or @code{none} for no compression." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6646 +#: guix-git/doc/guix.texi:6689 #, no-wrap msgid "--symlink=@var{spec}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6647 +#: guix-git/doc/guix.texi:6690 #, no-wrap msgid "-S @var{spec}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6650 +#: guix-git/doc/guix.texi:6693 msgid "Add the symlinks specified by @var{spec} to the pack. This option can appear several times." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6654 +#: guix-git/doc/guix.texi:6697 msgid "@var{spec} has the form @code{@var{source}=@var{target}}, where @var{source} is the symlink that will be created and @var{target} is the symlink target." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6657 +#: guix-git/doc/guix.texi:6700 msgid "For instance, @code{-S /opt/gnu/bin=bin} creates a @file{/opt/gnu/bin} symlink pointing to the @file{bin} sub-directory of the profile." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6658 guix-git/doc/guix.texi:35262 +#: guix-git/doc/guix.texi:6701 guix-git/doc/guix.texi:35706 #, no-wrap msgid "--save-provenance" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6662 +#: guix-git/doc/guix.texi:6705 msgid "Save provenance information for the packages passed on the command line. Provenance information includes the URL and commit of the channels in use (@pxref{Channels})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6668 +#: guix-git/doc/guix.texi:6711 msgid "Provenance information is saved in the @file{/gnu/store/@dots{}-profile/manifest} file in the pack, along with the usual package metadata---the name and version of each package, their propagated inputs, and so on. It is useful information to the recipient of the pack, who then knows how the pack was (supposedly) obtained." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6674 +#: guix-git/doc/guix.texi:6717 msgid "This option is not enabled by default because, like timestamps, provenance information contributes nothing to the build process. In other words, there is an infinity of channel URLs and commit IDs that can lead to the same pack. Recording such ``silent'' metadata in the output thus potentially breaks the source-to-binary bitwise reproducibility property." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6677 +#: guix-git/doc/guix.texi:6720 #, no-wrap msgid "garbage collector root, for packs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6680 +#: guix-git/doc/guix.texi:6723 msgid "Make @var{file} a symlink to the resulting pack, and register it as a garbage collector root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6681 +#: guix-git/doc/guix.texi:6724 #, no-wrap msgid "--localstatedir" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6682 +#: guix-git/doc/guix.texi:6725 #, no-wrap msgid "--profile-name=@var{name}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6687 +#: guix-git/doc/guix.texi:6730 msgid "Include the ``local state directory'', @file{/var/guix}, in the resulting pack, and notably the @file{/var/guix/profiles/per-user/root/@var{name}} profile---by default @var{name} is @code{guix-profile}, which corresponds to @file{~root/.guix-profile}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6693 +#: guix-git/doc/guix.texi:6736 msgid "@file{/var/guix} contains the store database (@pxref{The Store}) as well as garbage-collector roots (@pxref{Invoking guix gc}). Providing it in the pack means that the store is ``complete'' and manageable by Guix; not providing it pack means that the store is ``dead'': items cannot be added to it or removed from it after extraction of the pack." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6696 +#: guix-git/doc/guix.texi:6739 msgid "One use case for this is the Guix self-contained binary tarball (@pxref{Binary Installation})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6697 guix-git/doc/guix.texi:35256 +#: guix-git/doc/guix.texi:6740 guix-git/doc/guix.texi:35700 #, no-wrap msgid "--derivation" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6698 guix-git/doc/guix.texi:11571 -#: guix-git/doc/guix.texi:35257 +#: guix-git/doc/guix.texi:6741 guix-git/doc/guix.texi:11885 +#: guix-git/doc/guix.texi:35701 #, no-wrap msgid "-d" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6700 +#: guix-git/doc/guix.texi:6743 msgid "Print the name of the derivation that builds the pack." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6704 +#: guix-git/doc/guix.texi:6747 msgid "Use the bootstrap binaries to build the pack. This option is only useful to Guix developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6709 +#: guix-git/doc/guix.texi:6752 msgid "In addition, @command{guix pack} supports all the common build options (@pxref{Common Build Options}) and all the package transformation options (@pxref{Package Transformation Options})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6714 +#: guix-git/doc/guix.texi:6757 #, no-wrap msgid "GCC" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6715 +#: guix-git/doc/guix.texi:6758 #, no-wrap msgid "ld-wrapper" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6716 +#: guix-git/doc/guix.texi:6759 #, no-wrap msgid "linker wrapper" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6717 +#: guix-git/doc/guix.texi:6760 #, no-wrap msgid "toolchain, for C development" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6718 +#: guix-git/doc/guix.texi:6761 #, no-wrap msgid "toolchain, for Fortran development" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6725 +#: guix-git/doc/guix.texi:6768 msgid "If you need a complete toolchain for compiling and linking C or C++ source code, use the @code{gcc-toolchain} package. This package provides a complete GCC toolchain for C/C++ development, including GCC itself, the GNU C Library (headers and binaries, plus debugging symbols in the @code{debug} output), Binutils, and a linker wrapper." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6731 +#: guix-git/doc/guix.texi:6774 msgid "The wrapper's purpose is to inspect the @code{-L} and @code{-l} switches passed to the linker, add corresponding @code{-rpath} arguments, and invoke the actual linker with this new set of arguments. You can instruct the wrapper to refuse to link against libraries not in the store by setting the @env{GUIX_LD_WRAPPER_ALLOW_IMPURITIES} environment variable to @code{no}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6735 +#: guix-git/doc/guix.texi:6778 msgid "The package @code{gfortran-toolchain} provides a complete GCC toolchain for Fortran development. For other languages, please use @samp{guix search gcc toolchain} (@pxref{guix-search,, Invoking guix package})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:6738 +#: guix-git/doc/guix.texi:6781 #, no-wrap msgid "Invoking @command{guix git authenticate}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6746 +#: guix-git/doc/guix.texi:6789 msgid "The @command{guix git authenticate} command authenticates a Git checkout following the same rule as for channels (@pxref{channel-authentication, channel authentication}). That is, starting from a given commit, it ensures that all subsequent commits are signed by an OpenPGP key whose fingerprint appears in the @file{.guix-authorizations} file of its parent commit(s)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6751 +#: guix-git/doc/guix.texi:6794 msgid "You will find this command useful if you maintain a channel. But in fact, this authentication mechanism is useful in a broader context, so you might want to use it for Git repositories that have nothing to do with Guix." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6756 +#: guix-git/doc/guix.texi:6799 #, no-wrap msgid "guix git authenticate @var{commit} @var{signer} [@var{options}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6765 +#: guix-git/doc/guix.texi:6808 msgid "By default, this command authenticates the Git checkout in the current directory; it outputs nothing and exits with exit code zero on success and non-zero on failure. @var{commit} above denotes the first commit where authentication takes place, and @var{signer} is the OpenPGP fingerprint of public key used to sign @var{commit}. Together, they form a ``channel introduction'' (@pxref{channel-authentication, channel introduction}). The options below allow you to fine-tune the process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6767 +#: guix-git/doc/guix.texi:6810 #, no-wrap msgid "--repository=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6768 +#: guix-git/doc/guix.texi:6811 #, no-wrap msgid "-r @var{directory}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6771 +#: guix-git/doc/guix.texi:6814 msgid "Open the Git repository in @var{directory} instead of the current directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6772 +#: guix-git/doc/guix.texi:6815 #, no-wrap msgid "--keyring=@var{reference}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6773 +#: guix-git/doc/guix.texi:6816 #, no-wrap msgid "-k @var{reference}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6779 +#: guix-git/doc/guix.texi:6822 msgid "Load OpenPGP keyring from @var{reference}, the reference of a branch such as @code{origin/keyring} or @code{my-keyring}. The branch must contain OpenPGP public keys in @file{.key} files, either in binary form or ``ASCII-armored''. By default the keyring is loaded from the branch named @code{keyring}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6780 +#: guix-git/doc/guix.texi:6823 #, no-wrap msgid "--stats" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6782 +#: guix-git/doc/guix.texi:6825 msgid "Display commit signing statistics upon completion." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6783 +#: guix-git/doc/guix.texi:6826 #, no-wrap msgid "--cache-key=@var{key}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6787 +#: guix-git/doc/guix.texi:6830 msgid "Previously-authenticated commits are cached in a file under @file{~/.cache/guix/authentication}. This option forces the cache to be stored in file @var{key} in that directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6788 +#: guix-git/doc/guix.texi:6831 #, no-wrap msgid "--historical-authorizations=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6795 +#: guix-git/doc/guix.texi:6838 msgid "By default, any commit whose parent commit(s) lack the @file{.guix-authorizations} file is considered inauthentic. In contrast, this option considers the authorizations in @var{file} for any commit that lacks @file{.guix-authorizations}. The format of @var{file} is the same as that of @file{.guix-authorizations} (@pxref{channel-authorizations, @file{.guix-authorizations} format})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6808 +#: guix-git/doc/guix.texi:6851 msgid "GNU Guix provides several Scheme programming interfaces (APIs) to define, build, and query packages. The first interface allows users to write high-level package definitions. These definitions refer to familiar packaging concepts, such as the name and version of a package, its build system, and its dependencies. These definitions can then be turned into concrete build actions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6814 +#: guix-git/doc/guix.texi:6857 msgid "Build actions are performed by the Guix daemon, on behalf of users. In a standard setup, the daemon has write access to the store---the @file{/gnu/store} directory---whereas users do not. The recommended setup also has the daemon perform builds in chroots, under specific build users, to minimize interference with the rest of the system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6823 +#: guix-git/doc/guix.texi:6866 msgid "Lower-level APIs are available to interact with the daemon and the store. To instruct the daemon to perform a build action, users actually provide it with a @dfn{derivation}. A derivation is a low-level representation of the build actions to be taken, and the environment in which they should occur---derivations are to package definitions what assembly is to C programs. The term ``derivation'' comes from the fact that build results @emph{derive} from them." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6826 +#: guix-git/doc/guix.texi:6869 msgid "This chapter describes all these APIs in turn, starting from high-level package definitions." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:6883 msgid "Programming Guix in Guile" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6855 +#: guix-git/doc/guix.texi:6899 msgid "From a programming viewpoint, the package definitions of the GNU distribution are provided by Guile modules in the @code{(gnu packages @dots{})} name space@footnote{Note that packages under the @code{(gnu packages @dots{})} module name space are not necessarily ``GNU packages''. This module naming scheme follows the usual Guile module naming convention: @code{gnu} means that these modules are distributed as part of the GNU system, and @code{packages} identifies modules that define packages.} (@pxref{Modules, Guile modules,, guile, GNU Guile Reference Manual}). For instance, the @code{(gnu packages emacs)} module exports a variable named @code{emacs}, which is bound to a @code{} object (@pxref{Defining Packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6862 +#: guix-git/doc/guix.texi:6906 msgid "The @code{(gnu packages @dots{})} module name space is automatically scanned for packages by the command-line tools. For instance, when running @code{guix install emacs}, all the @code{(gnu packages @dots{})} modules are scanned until one that exports a package object whose name is @code{emacs} is found. This package search facility is implemented in the @code{(gnu packages)} module." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6864 +#: guix-git/doc/guix.texi:6908 #, no-wrap msgid "package module search path" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6873 +#: guix-git/doc/guix.texi:6917 msgid "Users can store package definitions in modules with different names---e.g., @code{(my-packages emacs)}@footnote{Note that the file name and module name must match. For instance, the @code{(my-packages emacs)} module must be stored in a @file{my-packages/emacs.scm} file relative to the load path specified with @option{--load-path} or @env{GUIX_PACKAGE_PATH}. @xref{Modules and the File System,,, guile, GNU Guile Reference Manual}, for details.}. There are two ways to make these package definitions visible to the user interfaces:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:6880 +#: guix-git/doc/guix.texi:6924 msgid "By adding the directory containing your package modules to the search path with the @code{-L} flag of @command{guix package} and other commands (@pxref{Common Build Options}), or by setting the @env{GUIX_PACKAGE_PATH} environment variable described below." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:6886 +#: guix-git/doc/guix.texi:6930 msgid "By defining a @dfn{channel} and configuring @command{guix pull} so that it pulls from it. A channel is essentially a Git repository containing package modules. @xref{Channels}, for more information on how to define and use channels." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6889 +#: guix-git/doc/guix.texi:6933 msgid "@env{GUIX_PACKAGE_PATH} works similarly to other search path variables:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:6890 +#: guix-git/doc/guix.texi:6934 #, no-wrap msgid "{Environment Variable} GUIX_PACKAGE_PATH" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:6894 +#: guix-git/doc/guix.texi:6938 msgid "This is a colon-separated list of directories to search for additional package modules. Directories listed in this variable take precedence over the own modules of the distribution." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6902 +#: guix-git/doc/guix.texi:6946 msgid "The distribution is fully @dfn{bootstrapped} and @dfn{self-contained}: each package is built based solely on other packages in the distribution. The root of this dependency graph is a small set of @dfn{bootstrap binaries}, provided by the @code{(gnu packages bootstrap)} module. For more information on bootstrapping, @pxref{Bootstrapping}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6910 +#: guix-git/doc/guix.texi:6954 msgid "The high-level interface to package definitions is implemented in the @code{(guix packages)} and @code{(guix build-system)} modules. As an example, the package definition, or @dfn{recipe}, for the GNU Hello package looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:6918 +#: guix-git/doc/guix.texi:6962 #, no-wrap msgid "" "(define-module (gnu packages hello)\n" @@ -13972,7 +14058,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:6937 +#: guix-git/doc/guix.texi:6981 #, no-wrap msgid "" "(define-public hello\n" @@ -13996,327 +14082,327 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6947 +#: guix-git/doc/guix.texi:6991 msgid "Without being a Scheme expert, the reader may have guessed the meaning of the various fields here. This expression binds the variable @code{hello} to a @code{} object, which is essentially a record (@pxref{SRFI-9, Scheme records,, guile, GNU Guile Reference Manual}). This package object can be inspected using procedures found in the @code{(guix packages)} module; for instance, @code{(package-name hello)} returns---surprise!---@code{\"hello\"}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6951 +#: guix-git/doc/guix.texi:6995 msgid "With luck, you may be able to import part or all of the definition of the package you are interested in from another repository, using the @code{guix import} command (@pxref{Invoking guix import})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6957 +#: guix-git/doc/guix.texi:7001 msgid "In the example above, @code{hello} is defined in a module of its own, @code{(gnu packages hello)}. Technically, this is not strictly necessary, but it is convenient to do so: all the packages defined in modules under @code{(gnu packages @dots{})} are automatically known to the command-line tools (@pxref{Package Modules})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6959 +#: guix-git/doc/guix.texi:7003 msgid "There are a few points worth noting in the above package definition:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6966 +#: guix-git/doc/guix.texi:7010 msgid "The @code{source} field of the package is an @code{} object (@pxref{origin Reference}, for the complete reference). Here, the @code{url-fetch} method from @code{(guix download)} is used, meaning that the source is a file to be downloaded over FTP or HTTP." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6969 +#: guix-git/doc/guix.texi:7013 msgid "The @code{mirror://gnu} prefix instructs @code{url-fetch} to use one of the GNU mirrors defined in @code{(guix download)}." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6976 +#: guix-git/doc/guix.texi:7020 msgid "The @code{sha256} field specifies the expected SHA256 hash of the file being downloaded. It is mandatory, and allows Guix to check the integrity of the file. The @code{(base32 @dots{})} form introduces the base32 representation of the hash. You can obtain this information with @code{guix download} (@pxref{Invoking guix download}) and @code{guix hash} (@pxref{Invoking guix hash})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6977 +#: guix-git/doc/guix.texi:7021 #, no-wrap msgid "patches" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6981 +#: guix-git/doc/guix.texi:7025 msgid "When needed, the @code{origin} form can also have a @code{patches} field listing patches to be applied, and a @code{snippet} field giving a Scheme expression to modify the source code." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6983 +#: guix-git/doc/guix.texi:7027 #, no-wrap msgid "GNU Build System" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6989 +#: guix-git/doc/guix.texi:7033 msgid "The @code{build-system} field specifies the procedure to build the package (@pxref{Build Systems}). Here, @code{gnu-build-system} represents the familiar GNU Build System, where packages may be configured, built, and installed with the usual @code{./configure && make && make check && make install} command sequence." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6993 +#: guix-git/doc/guix.texi:7037 msgid "When you start packaging non-trivial software, you may need tools to manipulate those build phases, manipulate files, and so on. @xref{Build Utilities}, for more on this." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6999 +#: guix-git/doc/guix.texi:7043 msgid "The @code{arguments} field specifies options for the build system (@pxref{Build Systems}). Here it is interpreted by @code{gnu-build-system} as a request run @file{configure} with the @option{--enable-silent-rules} flag." msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7000 guix-git/doc/guix.texi:7003 +#: guix-git/doc/guix.texi:7044 guix-git/doc/guix.texi:7047 #, no-wrap msgid "quote" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7001 +#: guix-git/doc/guix.texi:7045 #, no-wrap msgid "quoting" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7002 +#: guix-git/doc/guix.texi:7046 #, no-wrap msgid "'" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7004 +#: guix-git/doc/guix.texi:7048 #, no-wrap msgid "backquote (quasiquote)" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7005 +#: guix-git/doc/guix.texi:7049 #, no-wrap msgid "`" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7006 +#: guix-git/doc/guix.texi:7050 #, no-wrap msgid "quasiquote" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7007 +#: guix-git/doc/guix.texi:7051 #, no-wrap msgid "comma (unquote)" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7008 +#: guix-git/doc/guix.texi:7052 #, no-wrap msgid "," msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7009 +#: guix-git/doc/guix.texi:7053 #, no-wrap msgid "unquote" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7019 +#: guix-git/doc/guix.texi:7063 msgid "What about these quote (@code{'}) characters? They are Scheme syntax to introduce a literal list; @code{'} is synonymous with @code{quote}. Sometimes you'll also see @code{`} (a backquote, synonymous with @code{quasiquote}) and @code{,} (a comma, synonymous with @code{unquote}). @xref{Expression Syntax, quoting,, guile, GNU Guile Reference Manual}, for details. Here the value of the @code{arguments} field is a list of arguments passed to the build system down the road, as with @code{apply} (@pxref{Fly Evaluation, @code{apply},, guile, GNU Guile Reference Manual})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7025 +#: guix-git/doc/guix.texi:7069 msgid "The hash-colon (@code{#:}) sequence defines a Scheme @dfn{keyword} (@pxref{Keywords,,, guile, GNU Guile Reference Manual}), and @code{#:configure-flags} is a keyword used to pass a keyword argument to the build system (@pxref{Coding With Keywords,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7031 +#: guix-git/doc/guix.texi:7075 msgid "The @code{inputs} field specifies inputs to the build process---i.e., build-time or run-time dependencies of the package. Here, we add an input, a reference to the @code{gawk} variable; @code{gawk} is itself bound to a @code{} object." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7035 +#: guix-git/doc/guix.texi:7079 msgid "Note that GCC, Coreutils, Bash, and other essential tools do not need to be specified as inputs here. Instead, @code{gnu-build-system} takes care of ensuring that they are present (@pxref{Build Systems})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7039 +#: guix-git/doc/guix.texi:7083 msgid "However, any other dependencies need to be specified in the @code{inputs} field. Any dependency not specified here will simply be unavailable to the build process, possibly leading to a build failure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7042 +#: guix-git/doc/guix.texi:7086 msgid "@xref{package Reference}, for a full description of possible fields." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7053 +#: guix-git/doc/guix.texi:7097 msgid "Once a package definition is in place, the package may actually be built using the @code{guix build} command-line tool (@pxref{Invoking guix build}), troubleshooting any build failures you encounter (@pxref{Debugging Build Failures}). You can easily jump back to the package definition using the @command{guix edit} command (@pxref{Invoking guix edit}). @xref{Packaging Guidelines}, for more information on how to test package definitions, and @ref{Invoking guix lint}, for information on how to check a definition for style conformance." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:7053 +#: guix-git/doc/guix.texi:7097 #, no-wrap msgid "GUIX_PACKAGE_PATH" msgstr "GUIX_PACKAGE_PATH" #. type: Plain text -#: guix-git/doc/guix.texi:7057 +#: guix-git/doc/guix.texi:7101 msgid "Lastly, @pxref{Channels}, for information on how to extend the distribution by adding your own package definitions in a ``channel''." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7061 +#: guix-git/doc/guix.texi:7105 msgid "Finally, updating the package definition to a new upstream version can be partly automated by the @command{guix refresh} command (@pxref{Invoking guix refresh})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7067 +#: guix-git/doc/guix.texi:7111 msgid "Behind the scenes, a derivation corresponding to the @code{} object is first computed by the @code{package-derivation} procedure. That derivation is stored in a @file{.drv} file under @file{/gnu/store}. The build actions it prescribes may then be realized by using the @code{build-derivations} procedure (@pxref{The Store})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7068 +#: guix-git/doc/guix.texi:7112 #, no-wrap msgid "{Scheme Procedure} package-derivation @var{store} @var{package} [@var{system}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7071 +#: guix-git/doc/guix.texi:7115 msgid "Return the @code{} object of @var{package} for @var{system} (@pxref{Derivations})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7077 +#: guix-git/doc/guix.texi:7121 msgid "@var{package} must be a valid @code{} object, and @var{system} must be a string denoting the target system type---e.g., @code{\"x86_64-linux\"} for an x86_64 Linux-based GNU system. @var{store} must be a connection to the daemon, which operates on the store (@pxref{The Store})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7083 +#: guix-git/doc/guix.texi:7127 msgid "Similarly, it is possible to compute a derivation that cross-builds a package for some other system:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7084 +#: guix-git/doc/guix.texi:7128 #, no-wrap msgid "{Scheme Procedure} package-cross-derivation @var{store} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7088 +#: guix-git/doc/guix.texi:7132 msgid "@var{package} @var{target} [@var{system}] Return the @code{} object of @var{package} cross-built from @var{system} to @var{target}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7092 +#: guix-git/doc/guix.texi:7136 msgid "@var{target} must be a valid GNU triplet denoting the target hardware and operating system, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying Target Triplets,,, autoconf, Autoconf})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7096 +#: guix-git/doc/guix.texi:7140 msgid "Once you have package definitions, you can easily define @emph{variants} of those packages. @xref{Defining Package Variants}, for more on that." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:7104 +#: guix-git/doc/guix.texi:7148 #, no-wrap msgid "@code{package} Reference" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7108 +#: guix-git/doc/guix.texi:7152 msgid "This section summarizes all the options available in @code{package} declarations (@pxref{Defining Packages})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7109 +#: guix-git/doc/guix.texi:7153 #, no-wrap msgid "{Data Type} package" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7111 +#: guix-git/doc/guix.texi:7155 msgid "This is the data type representing a package recipe." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7115 +#: guix-git/doc/guix.texi:7159 msgid "The name of the package, as a string." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7116 +#: guix-git/doc/guix.texi:7160 #, no-wrap msgid "version" -msgstr "" +msgstr "version" #. type: table -#: guix-git/doc/guix.texi:7119 +#: guix-git/doc/guix.texi:7163 msgid "The version of the package, as a string. @xref{Version Numbers}, for guidelines." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7120 guix-git/doc/guix.texi:12900 -#: guix-git/doc/guix.texi:15181 guix-git/doc/guix.texi:15790 +#: guix-git/doc/guix.texi:7164 guix-git/doc/guix.texi:13257 +#: guix-git/doc/guix.texi:15538 guix-git/doc/guix.texi:16147 #, no-wrap msgid "source" msgstr "source" #. type: table -#: guix-git/doc/guix.texi:7127 +#: guix-git/doc/guix.texi:7171 msgid "An object telling how the source code for the package should be acquired. Most of the time, this is an @code{origin} object, which denotes a file fetched from the Internet (@pxref{origin Reference}). It can also be any other ``file-like'' object such as a @code{local-file}, which denotes a file from the local file system (@pxref{G-Expressions, @code{local-file}})." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7128 +#: guix-git/doc/guix.texi:7172 #, no-wrap msgid "build-system" msgstr "build-system" #. type: table -#: guix-git/doc/guix.texi:7131 +#: guix-git/doc/guix.texi:7175 msgid "The build system that should be used to build the package (@pxref{Build Systems})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7132 guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:7176 guix-git/doc/guix.texi:18315 #, no-wrap msgid "@code{arguments} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7135 +#: guix-git/doc/guix.texi:7179 msgid "The arguments that should be passed to the build system. This is a list, typically containing sequential keyword-value pairs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7136 +#: guix-git/doc/guix.texi:7180 #, no-wrap msgid "@code{inputs} (default: @code{'()})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7137 +#: guix-git/doc/guix.texi:7181 #, no-wrap msgid "@code{native-inputs} (default: @code{'()})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7138 +#: guix-git/doc/guix.texi:7182 #, no-wrap msgid "@code{propagated-inputs} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7139 +#: guix-git/doc/guix.texi:7183 #, no-wrap msgid "inputs, of packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7146 +#: guix-git/doc/guix.texi:7190 msgid "These fields list dependencies of the package. Each element of these lists is either a package, origin, or other ``file-like object'' (@pxref{G-Expressions}); to specify the output of that file-like object that should be used, pass a two-element list where the second element is the output (@pxref{Packages with Multiple Outputs}, for more on package outputs). For example, the list below specifies three inputs:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7150 +#: guix-git/doc/guix.texi:7194 #, no-wrap msgid "" "(list libffi libunistring\n" @@ -14324,23 +14410,23 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7154 +#: guix-git/doc/guix.texi:7198 msgid "In the example above, the @code{\"out\"} output of @code{libffi} and @code{libunistring} is used." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:7155 +#: guix-git/doc/guix.texi:7199 #, no-wrap msgid "Compatibility Note" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:7162 +#: guix-git/doc/guix.texi:7206 msgid "Until version 1.3.0, input lists were a list of tuples, where each tuple has a label for the input (a string) as its first element, a package, origin, or derivation as its second element, and optionally the name of the output thereof that should be used, which defaults to @code{\"out\"}. For example, the list below is equivalent to the one above, but using the @dfn{old input style}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7168 +#: guix-git/doc/guix.texi:7212 #, no-wrap msgid "" ";; Old input style (deprecated).\n" @@ -14350,176 +14436,186 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:7174 +#: guix-git/doc/guix.texi:7218 msgid "This style is now deprecated; it is still supported but support will be removed in a future version. It should not be used for new package definitions. @xref{Invoking guix style}, on how to migrate to the new style." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7176 +#: guix-git/doc/guix.texi:7220 #, no-wrap msgid "cross compilation, package dependencies" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7182 +#: guix-git/doc/guix.texi:7226 msgid "The distinction between @code{native-inputs} and @code{inputs} is necessary when considering cross-compilation. When cross-compiling, dependencies listed in @code{inputs} are built for the @emph{target} architecture; conversely, dependencies listed in @code{native-inputs} are built for the architecture of the @emph{build} machine." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7187 +#: guix-git/doc/guix.texi:7231 msgid "@code{native-inputs} is typically used to list tools needed at build time, but not at run time, such as Autoconf, Automake, pkg-config, Gettext, or Bison. @command{guix lint} can report likely mistakes in this area (@pxref{Invoking guix lint})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:7195 +#: guix-git/doc/guix.texi:7239 msgid "package-propagated-inputs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7195 +#: guix-git/doc/guix.texi:7239 msgid "Lastly, @code{propagated-inputs} is similar to @code{inputs}, but the specified packages will be automatically installed to profiles (@pxref{Features, the role of profiles in Guix}) alongside the package they belong to (@pxref{package-cmd-propagated-inputs, @command{guix package}}, for information on how @command{guix package} deals with propagated inputs)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7199 +#: guix-git/doc/guix.texi:7243 msgid "For example this is necessary when packaging a C/C++ library that needs headers of another library to compile, or when a pkg-config file refers to another one @i{via} its @code{Requires} field." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7206 +#: guix-git/doc/guix.texi:7250 msgid "Another example where @code{propagated-inputs} is useful is for languages that lack a facility to record the run-time search path akin to the @code{RUNPATH} of ELF files; this includes Guile, Python, Perl, and more. When packaging libraries written in those languages, ensure they can find library code they depend on at run time by listing run-time dependencies in @code{propagated-inputs} rather than @code{inputs}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7207 +#: guix-git/doc/guix.texi:7251 #, no-wrap msgid "@code{outputs} (default: @code{'(\"out\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7210 +#: guix-git/doc/guix.texi:7254 msgid "The list of output names of the package. @xref{Packages with Multiple Outputs}, for typical uses of additional outputs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7211 +#: guix-git/doc/guix.texi:7255 #, no-wrap msgid "@code{native-search-paths} (default: @code{'()})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7212 +#: guix-git/doc/guix.texi:7256 #, no-wrap msgid "@code{search-paths} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7215 -msgid "A list of @code{search-path-specification} objects describing search-path environment variables honored by the package." +#: guix-git/doc/guix.texi:7260 +msgid "A list of @code{search-path-specification} objects describing search-path environment variables honored by the package. @xref{Search Paths}, for more on search path specifications." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:7266 +msgid "As for inputs, the distinction between @code{native-search-paths} and @code{search-paths} only matters when cross-compiling. In a cross-compilation context, @code{native-search-paths} applies exclusively to native inputs whereas @code{search-paths} applies only to host inputs." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:7273 +msgid "Packages such as cross-compilers care about target inputs---for instance, our (modified) GCC cross-compiler has @env{CROSS_C_INCLUDE_PATH} in @code{search-paths}, which allows it to pick @file{.h} files for the target system and @emph{not} those of native inputs. For the majority of packages though, only @code{native-search-paths} makes sense." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7216 +#: guix-git/doc/guix.texi:7274 #, no-wrap msgid "@code{replacement} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7220 +#: guix-git/doc/guix.texi:7278 msgid "This must be either @code{#f} or a package object that will be used as a @dfn{replacement} for this package. @xref{Security Updates, grafts}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7221 guix-git/doc/guix.texi:12892 +#: guix-git/doc/guix.texi:7279 guix-git/doc/guix.texi:13249 #, no-wrap msgid "synopsis" msgstr "synopsis" #. type: table -#: guix-git/doc/guix.texi:7223 +#: guix-git/doc/guix.texi:7281 msgid "A one-line description of the package." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7224 guix-git/doc/guix.texi:12893 -#: guix-git/doc/guix.texi:35959 guix-git/doc/guix.texi:36119 +#: guix-git/doc/guix.texi:7282 guix-git/doc/guix.texi:13250 +#: guix-git/doc/guix.texi:36449 guix-git/doc/guix.texi:36609 #, no-wrap msgid "description" msgstr "description" #. type: table -#: guix-git/doc/guix.texi:7226 +#: guix-git/doc/guix.texi:7284 msgid "A more elaborate description of the package." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7227 +#: guix-git/doc/guix.texi:7285 #, no-wrap msgid "license" msgstr "license" #. type: cindex -#: guix-git/doc/guix.texi:7228 +#: guix-git/doc/guix.texi:7286 #, no-wrap msgid "license, of packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7231 +#: guix-git/doc/guix.texi:7289 msgid "The license of the package; a value from @code{(guix licenses)}, or a list of such values." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7232 guix-git/doc/guix.texi:12901 +#: guix-git/doc/guix.texi:7290 guix-git/doc/guix.texi:13258 #, no-wrap msgid "home-page" msgstr "home-page" #. type: table -#: guix-git/doc/guix.texi:7234 +#: guix-git/doc/guix.texi:7292 msgid "The URL to the home-page of the package, as a string." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7235 +#: guix-git/doc/guix.texi:7293 #, no-wrap msgid "@code{supported-systems} (default: @code{%supported-systems})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7238 +#: guix-git/doc/guix.texi:7296 msgid "The list of systems supported by the package, as strings of the form @code{architecture-kernel}, for example @code{\"x86_64-linux\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7239 +#: guix-git/doc/guix.texi:7297 #, no-wrap msgid "@code{location} (default: source location of the @code{package} form)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7243 +#: guix-git/doc/guix.texi:7301 msgid "The source location of the package. It is useful to override this when inheriting from another package, in which case this field is not automatically corrected." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7246 +#: guix-git/doc/guix.texi:7304 #, no-wrap msgid "{Scheme Syntax} this-package" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7249 +#: guix-git/doc/guix.texi:7307 msgid "When used in the @emph{lexical scope} of a package field definition, this identifier resolves to the package being defined." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7252 +#: guix-git/doc/guix.texi:7310 msgid "The example below shows how to add a package as a native input of itself when cross-compiling:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7257 +#: guix-git/doc/guix.texi:7315 #, no-wrap msgid "" "(package\n" @@ -14529,7 +14625,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7263 +#: guix-git/doc/guix.texi:7321 #, no-wrap msgid "" " ;; When cross-compiled, Guile, for example, depends on\n" @@ -14540,51 +14636,51 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7266 +#: guix-git/doc/guix.texi:7324 msgid "It is an error to refer to @code{this-package} outside a package definition." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7270 +#: guix-git/doc/guix.texi:7328 msgid "The following helper procedures are provided to help deal with package inputs." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7271 +#: guix-git/doc/guix.texi:7329 #, no-wrap msgid "{Scheme Procedure} lookup-package-input @var{package} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:7272 +#: guix-git/doc/guix.texi:7330 #, no-wrap msgid "{Scheme Procedure} lookup-package-native-input @var{package} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:7273 +#: guix-git/doc/guix.texi:7331 #, no-wrap msgid "{Scheme Procedure} lookup-package-propagated-input @var{package} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:7274 +#: guix-git/doc/guix.texi:7332 #, no-wrap msgid "{Scheme Procedure} lookup-package-direct-input @var{package} @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7277 +#: guix-git/doc/guix.texi:7335 msgid "Look up @var{name} among @var{package}'s inputs (or native, propagated, or direct inputs). Return it if found, @code{#f} otherwise." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7280 +#: guix-git/doc/guix.texi:7338 msgid "@var{name} is the name of a package depended on. Here's how you might use it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7283 +#: guix-git/doc/guix.texi:7341 #, no-wrap msgid "" "(use-modules (guix packages) (gnu packages base))\n" @@ -14592,7 +14688,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7286 +#: guix-git/doc/guix.texi:7344 #, no-wrap msgid "" "(lookup-package-direct-input coreutils \"gmp\")\n" @@ -14600,45 +14696,45 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7290 +#: guix-git/doc/guix.texi:7348 msgid "In this example we obtain the @code{gmp} package that is among the direct inputs of @code{coreutils}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7292 +#: guix-git/doc/guix.texi:7350 #, no-wrap msgid "development inputs, of a package" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7293 +#: guix-git/doc/guix.texi:7351 #, no-wrap msgid "implicit inputs, of a package" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7298 +#: guix-git/doc/guix.texi:7356 msgid "Sometimes you will want to obtain the list of inputs needed to @emph{develop} a package---all the inputs that are visible when the package is compiled. This is what the @code{package-development-inputs} procedure returns." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7299 +#: guix-git/doc/guix.texi:7357 #, no-wrap msgid "{Scheme Procedure} package-development-inputs @var{package} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7306 +#: guix-git/doc/guix.texi:7364 msgid "[@var{system}] [#:target #f] Return the list of inputs required by @var{package} for development purposes on @var{system}. When @var{target} is true, return the inputs needed to cross-compile @var{package} from @var{system} to @var{triplet}, where @var{triplet} is a triplet such as @code{\"aarch64-linux-gnu\"}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7310 +#: guix-git/doc/guix.texi:7368 msgid "Note that the result includes both explicit inputs and implicit inputs---inputs automatically added by the build system (@pxref{Build Systems}). Let us take the @code{hello} package to illustrate that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7313 +#: guix-git/doc/guix.texi:7371 #, no-wrap msgid "" "(use-modules (gnu packages base) (guix packages))\n" @@ -14646,7 +14742,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7316 +#: guix-git/doc/guix.texi:7374 #, no-wrap msgid "" "hello\n" @@ -14655,7 +14751,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7319 +#: guix-git/doc/guix.texi:7377 #, no-wrap msgid "" "(package-direct-inputs hello)\n" @@ -14664,7 +14760,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7322 +#: guix-git/doc/guix.texi:7380 #, no-wrap msgid "" "(package-development-inputs hello)\n" @@ -14672,39 +14768,39 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7331 +#: guix-git/doc/guix.texi:7389 msgid "In this example, @code{package-direct-inputs} returns the empty list, because @code{hello} has zero explicit dependencies. Conversely, @code{package-development-inputs} includes inputs implicitly added by @code{gnu-build-system} that are required to build @code{hello}: tar, gzip, GCC, libc, Bash, and more. To visualize it, @command{guix graph hello} would show you explicit inputs, whereas @command{guix graph -t bag hello} would include implicit inputs (@pxref{Invoking guix graph})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7337 +#: guix-git/doc/guix.texi:7395 msgid "Because packages are regular Scheme objects that capture a complete dependency graph and associated build procedures, it is often useful to write procedures that take a package and return a modified version thereof according to some parameters. Below are a few examples." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7338 +#: guix-git/doc/guix.texi:7396 #, no-wrap msgid "tool chain, choosing a package's tool chain" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7339 +#: guix-git/doc/guix.texi:7397 #, no-wrap msgid "{Scheme Procedure} package-with-c-toolchain @var{package} @var{toolchain}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7344 +#: guix-git/doc/guix.texi:7402 msgid "Return a variant of @var{package} that uses @var{toolchain} instead of the default GNU C/C++ toolchain. @var{toolchain} must be a list of inputs (label/package tuples) providing equivalent functionality, such as the @code{gcc-toolchain} package." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7348 +#: guix-git/doc/guix.texi:7406 msgid "The example below returns a variant of the @code{hello} package built with GCC@tie{}10.x and the rest of the GNU tool chain (Binutils and the GNU C Library) instead of the default tool chain:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7352 +#: guix-git/doc/guix.texi:7410 #, no-wrap msgid "" "(let ((toolchain (specification->package \"gcc-toolchain@@10\")))\n" @@ -14712,197 +14808,197 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7360 +#: guix-git/doc/guix.texi:7418 msgid "The build tool chain is part of the @dfn{implicit inputs} of packages---it's usually not listed as part of the various ``inputs'' fields and is instead pulled in by the build system. Consequently, this procedure works by changing the build system of @var{package} so that it pulls in @var{toolchain} instead of the defaults. @ref{Build Systems}, for more on build systems." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:7363 +#: guix-git/doc/guix.texi:7421 #, no-wrap msgid "@code{origin} Reference" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7371 +#: guix-git/doc/guix.texi:7429 msgid "This section documents @dfn{origins}. An @code{origin} declaration specifies data that must be ``produced''---downloaded, usually---and whose content hash is known in advance. Origins are primarily used to represent the source code of packages (@pxref{Defining Packages}). For that reason, the @code{origin} form allows you to declare patches to apply to the original source code as well as code snippets to modify it." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7372 +#: guix-git/doc/guix.texi:7430 #, no-wrap msgid "{Data Type} origin" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7374 +#: guix-git/doc/guix.texi:7432 msgid "This is the data type representing a source code origin." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7376 guix-git/doc/guix.texi:26552 +#: guix-git/doc/guix.texi:7434 guix-git/doc/guix.texi:26889 #, no-wrap msgid "uri" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7381 +#: guix-git/doc/guix.texi:7439 msgid "An object containing the URI of the source. The object type depends on the @code{method} (see below). For example, when using the @var{url-fetch} method of @code{(guix download)}, the valid @code{uri} values are: a URL represented as a string, or a list thereof." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7382 +#: guix-git/doc/guix.texi:7440 #, no-wrap msgid "fixed-output derivations, for download" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7383 +#: guix-git/doc/guix.texi:7441 #, no-wrap msgid "method" -msgstr "" +msgstr "method" #. type: table -#: guix-git/doc/guix.texi:7390 +#: guix-git/doc/guix.texi:7448 msgid "A monadic procedure that handles the given URI@. The procedure must accept at least three arguments: the value of the @code{uri} field and the hash algorithm and hash value specified by the @code{hash} field. It must return a store item or a derivation in the store monad (@pxref{The Store Monad}); most methods return a fixed-output derivation (@pxref{Derivations})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7394 +#: guix-git/doc/guix.texi:7452 msgid "Commonly used methods include @code{url-fetch}, which fetches data from a URL, and @code{git-fetch}, which fetches data from a Git repository (see below)." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7395 +#: guix-git/doc/guix.texi:7453 #, no-wrap msgid "sha256" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7399 +#: guix-git/doc/guix.texi:7457 msgid "A bytevector containing the SHA-256 hash of the source. This is equivalent to providing a @code{content-hash} SHA256 object in the @code{hash} field described below." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7400 +#: guix-git/doc/guix.texi:7458 #, no-wrap msgid "hash" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7403 +#: guix-git/doc/guix.texi:7461 msgid "The @code{content-hash} object of the source---see below for how to use @code{content-hash}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7407 +#: guix-git/doc/guix.texi:7465 msgid "You can obtain this information using @code{guix download} (@pxref{Invoking guix download}) or @code{guix hash} (@pxref{Invoking guix hash})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7408 +#: guix-git/doc/guix.texi:7466 #, no-wrap msgid "@code{file-name} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7414 +#: guix-git/doc/guix.texi:7472 msgid "The file name under which the source code should be saved. When this is @code{#f}, a sensible default value will be used in most cases. In case the source is fetched from a URL, the file name from the URL will be used. For version control checkouts, it is recommended to provide the file name explicitly because the default is not very descriptive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7415 +#: guix-git/doc/guix.texi:7473 #, no-wrap msgid "@code{patches} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7418 +#: guix-git/doc/guix.texi:7476 msgid "A list of file names, origins, or file-like objects (@pxref{G-Expressions, file-like objects}) pointing to patches to be applied to the source." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7422 +#: guix-git/doc/guix.texi:7480 msgid "This list of patches must be unconditional. In particular, it cannot depend on the value of @code{%current-system} or @code{%current-target-system}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7423 +#: guix-git/doc/guix.texi:7481 #, no-wrap msgid "@code{snippet} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7427 +#: guix-git/doc/guix.texi:7485 msgid "A G-expression (@pxref{G-Expressions}) or S-expression that will be run in the source directory. This is a convenient way to modify the source, sometimes more convenient than a patch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7428 +#: guix-git/doc/guix.texi:7486 #, no-wrap msgid "@code{patch-flags} (default: @code{'(\"-p1\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7431 +#: guix-git/doc/guix.texi:7489 msgid "A list of command-line flags that should be passed to the @code{patch} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7432 +#: guix-git/doc/guix.texi:7490 #, no-wrap msgid "@code{patch-inputs} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7436 +#: guix-git/doc/guix.texi:7494 msgid "Input packages or derivations to the patching process. When this is @code{#f}, the usual set of inputs necessary for patching are provided, such as GNU@tie{}Patch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7437 guix-git/doc/guix.texi:26425 +#: guix-git/doc/guix.texi:7495 guix-git/doc/guix.texi:26762 #, no-wrap msgid "@code{modules} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7440 +#: guix-git/doc/guix.texi:7498 msgid "A list of Guile modules that should be loaded during the patching process and while running the code in the @code{snippet} field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7441 +#: guix-git/doc/guix.texi:7499 #, no-wrap msgid "@code{patch-guile} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7444 +#: guix-git/doc/guix.texi:7502 msgid "The Guile package that should be used in the patching process. When this is @code{#f}, a sensible default is used." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7447 +#: guix-git/doc/guix.texi:7505 #, no-wrap msgid "{Data Type} content-hash @var{value} [@var{algorithm}]" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7451 +#: guix-git/doc/guix.texi:7509 msgid "Construct a content hash object for the given @var{algorithm}, and with @var{value} as its hash value. When @var{algorithm} is omitted, assume it is @code{sha256}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7454 +#: guix-git/doc/guix.texi:7512 msgid "@var{value} can be a literal string, in which case it is base32-decoded, or it can be a bytevector." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7456 +#: guix-git/doc/guix.texi:7514 msgid "The following forms are all equivalent:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7465 +#: guix-git/doc/guix.texi:7523 #, no-wrap msgid "" "(content-hash \"05zxkyz9bv3j9h0xyid1rhvh3klhsmrpkf3bcs6frvlgyr2gwilj\")\n" @@ -14915,103 +15011,103 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7470 +#: guix-git/doc/guix.texi:7528 msgid "Technically, @code{content-hash} is currently implemented as a macro. It performs sanity checks at macro-expansion time, when possible, such as ensuring that @var{value} has the right size for @var{algorithm}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7476 +#: guix-git/doc/guix.texi:7534 msgid "As we have seen above, how exactly the data an origin refers to is retrieved is determined by its @code{method} field. The @code{(guix download)} module provides the most common method, @code{url-fetch}, described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7477 +#: guix-git/doc/guix.texi:7535 #, no-wrap msgid "{Scheme Procedure} url-fetch @var{url} @var{hash-algo} @var{hash} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7485 +#: guix-git/doc/guix.texi:7543 msgid "[name] [#:executable? #f] Return a fixed-output derivation that fetches data from @var{url} (a string, or a list of strings denoting alternate URLs), which is expected to have hash @var{hash} of type @var{hash-algo} (a symbol). By default, the file name is the base name of URL; optionally, @var{name} can specify a different file name. When @var{executable?} is true, make the downloaded file executable." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7488 +#: guix-git/doc/guix.texi:7546 msgid "When one of the URL starts with @code{mirror://}, then its host part is interpreted as the name of a mirror scheme, taken from @file{%mirror-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7491 +#: guix-git/doc/guix.texi:7549 msgid "Alternatively, when URL starts with @code{file://}, return the corresponding file name in the store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7497 +#: guix-git/doc/guix.texi:7555 msgid "Likewise, the @code{(guix git-download)} module defines the @code{git-fetch} origin method, which fetches data from a Git version control repository, and the @code{git-reference} data type to describe the repository and revision to fetch." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7498 +#: guix-git/doc/guix.texi:7556 #, no-wrap msgid "{Scheme Procedure} git-fetch @var{ref} @var{hash-algo} @var{hash}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7503 +#: guix-git/doc/guix.texi:7561 msgid "Return a fixed-output derivation that fetches @var{ref}, a @code{} object. The output is expected to have recursive hash @var{hash} of type @var{hash-algo} (a symbol). Use @var{name} as the file name, or a generic name if @code{#f}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7505 +#: guix-git/doc/guix.texi:7563 #, no-wrap msgid "{Data Type} git-reference" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7508 +#: guix-git/doc/guix.texi:7566 msgid "This data type represents a Git reference for @code{git-fetch} to retrieve." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7510 guix-git/doc/guix.texi:24186 +#: guix-git/doc/guix.texi:7568 guix-git/doc/guix.texi:24548 #, no-wrap msgid "url" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7512 +#: guix-git/doc/guix.texi:7570 msgid "The URL of the Git repository to clone." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7513 +#: guix-git/doc/guix.texi:7571 #, no-wrap msgid "commit" -msgstr "úprava" +msgstr "commit" #. type: table -#: guix-git/doc/guix.texi:7518 +#: guix-git/doc/guix.texi:7576 msgid "This string denotes either the commit to fetch (a hexadecimal string), or the tag to fetch. You can also use a ``short'' commit ID or a @command{git describe} style identifier such as @code{v1.0.1-10-g58d7909c97}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7519 +#: guix-git/doc/guix.texi:7577 #, no-wrap msgid "@code{recursive?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7521 +#: guix-git/doc/guix.texi:7579 msgid "This Boolean indicates whether to recursively fetch Git sub-modules." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7525 +#: guix-git/doc/guix.texi:7583 msgid "The example below denotes the @code{v2.10} tag of the GNU@tie{}Hello repository:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7530 +#: guix-git/doc/guix.texi:7588 #, no-wrap msgid "" "(git-reference\n" @@ -15020,12 +15116,12 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7534 +#: guix-git/doc/guix.texi:7592 msgid "This is equivalent to the reference below, which explicitly names the commit:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7539 +#: guix-git/doc/guix.texi:7597 #, no-wrap msgid "" "(git-reference\n" @@ -15034,56 +15130,56 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7545 +#: guix-git/doc/guix.texi:7603 msgid "For Mercurial repositories, the module @code{(guix hg-download)} defines the @code{hg-fetch} origin method and @code{hg-reference} data type for support of the Mercurial version control system." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7546 +#: guix-git/doc/guix.texi:7604 #, no-wrap msgid "{Scheme Procedure} hg-fetch @var{ref} @var{hash-algo} @var{hash} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7552 +#: guix-git/doc/guix.texi:7610 msgid "[name] Return a fixed-output derivation that fetches @var{ref}, a @code{} object. The output is expected to have recursive hash @var{hash} of type @var{hash-algo} (a symbol). Use @var{name} as the file name, or a generic name if @code{#false}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7557 +#: guix-git/doc/guix.texi:7615 #, no-wrap msgid "customizing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7558 +#: guix-git/doc/guix.texi:7616 #, no-wrap msgid "variants, of packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7568 +#: guix-git/doc/guix.texi:7626 msgid "One of the nice things with Guix is that, given a package definition, you can easily @emph{derive} variants of that package---for a different upstream version, with different dependencies, different compilation options, and so on. Some of these custom packages can be defined straight from the command line (@pxref{Package Transformation Options}). This section describes how to define package variants in code. This can be useful in ``manifests'' (@pxref{profile-manifest, @option{--manifest}}) and in your own package collection (@pxref{Creating a Channel}), among others!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7569 +#: guix-git/doc/guix.texi:7627 #, no-wrap msgid "inherit, for package definitions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7576 +#: guix-git/doc/guix.texi:7634 msgid "As discussed earlier, packages are first-class objects in the Scheme language. The @code{(guix packages)} module provides the @code{package} construct to define new package objects (@pxref{package Reference}). The easiest way to define a package variant is using the @code{inherit} keyword together with @code{package}. This allows you to inherit from a package definition while overriding the fields you want." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7581 +#: guix-git/doc/guix.texi:7639 msgid "For example, given the @code{hello} variable, which contains a definition for the current version of GNU@tie{}Hello, here's how you would define a variant for version 2.2 (released in 2006, it's vintage!):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7584 +#: guix-git/doc/guix.texi:7642 #, no-wrap msgid "" "(use-modules (gnu packages base)) ;for 'hello'\n" @@ -15091,7 +15187,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7596 +#: guix-git/doc/guix.texi:7654 #, no-wrap msgid "" "(define hello-2.2\n" @@ -15108,17 +15204,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7605 +#: guix-git/doc/guix.texi:7663 msgid "The example above corresponds to what the @option{--with-source} package transformation option does. Essentially @code{hello-2.2} preserves all the fields of @code{hello}, except @code{version} and @code{source}, which it overrides. Note that the original @code{hello} variable is still there, in the @code{(gnu packages base)} module, unchanged. When you define a custom package like this, you are really @emph{adding} a new package definition; the original one remains available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7611 +#: guix-git/doc/guix.texi:7669 msgid "You can just as well define variants with a different set of dependencies than the original package. For example, the default @code{gdb} package depends on @code{guile}, but since that is an optional dependency, you can define a variant that removes that dependency like so:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7614 +#: guix-git/doc/guix.texi:7672 #, no-wrap msgid "" "(use-modules (gnu packages gdb)) ;for 'gdb'\n" @@ -15126,7 +15222,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7620 +#: guix-git/doc/guix.texi:7678 #, no-wrap msgid "" "(define gdb-sans-guile\n" @@ -15137,61 +15233,61 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7626 +#: guix-git/doc/guix.texi:7684 msgid "The @code{modify-inputs} form above removes the @code{\"guile\"} package from the @code{inputs} field of @code{gdb}. The @code{modify-inputs} macro is a helper that can prove useful anytime you want to remove, add, or replace package inputs." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7627 +#: guix-git/doc/guix.texi:7685 #, no-wrap msgid "{Scheme Syntax} modify-inputs @var{inputs} @var{clauses}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7631 +#: guix-git/doc/guix.texi:7689 msgid "Modify the given package inputs, as returned by @code{package-inputs} & co., according to the given clauses. Each clause must have one of the following forms:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:7633 +#: guix-git/doc/guix.texi:7691 #, no-wrap msgid "(delete @var{name}@dots{})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7635 +#: guix-git/doc/guix.texi:7693 msgid "Delete from the inputs packages with the given @var{name}s (strings)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7636 +#: guix-git/doc/guix.texi:7694 #, no-wrap msgid "(append @var{package}@dots{})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7638 +#: guix-git/doc/guix.texi:7696 msgid "Add @var{package}s to the end of the input list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7639 +#: guix-git/doc/guix.texi:7697 #, no-wrap msgid "(prepend @var{package}@dots{})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7641 +#: guix-git/doc/guix.texi:7699 msgid "Add @var{package}s to the front of the input list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7645 +#: guix-git/doc/guix.texi:7703 msgid "The example below removes the GMP and ACL inputs of Coreutils and adds libcap to the back of the input list:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7650 +#: guix-git/doc/guix.texi:7708 #, no-wrap msgid "" "(modify-inputs (package-inputs coreutils)\n" @@ -15200,12 +15296,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7654 +#: guix-git/doc/guix.texi:7712 msgid "The example below replaces the @code{guile} package from the inputs of @code{guile-redis} with @code{guile-2.2}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7658 +#: guix-git/doc/guix.texi:7716 #, no-wrap msgid "" "(modify-inputs (package-inputs guile-redis)\n" @@ -15213,17 +15309,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7662 +#: guix-git/doc/guix.texi:7720 msgid "The last type of clause is @code{prepend}, to add inputs to the front of the list." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7671 +#: guix-git/doc/guix.texi:7729 msgid "In some cases, you may find it useful to write functions (``procedures'', in Scheme parlance) that return a package based on some parameters. For example, consider the @code{luasocket} library for the Lua programming language. We want to create @code{luasocket} packages for major versions of Lua. One way to do that is to define a procedure that takes a Lua package and returns a @code{luasocket} package that depends on it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7681 +#: guix-git/doc/guix.texi:7739 #, no-wrap msgid "" "(define (make-lua-socket name lua)\n" @@ -15238,7 +15334,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7684 +#: guix-git/doc/guix.texi:7742 #, no-wrap msgid "" "(define-public lua5.1-socket\n" @@ -15247,7 +15343,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7687 +#: guix-git/doc/guix.texi:7745 #, no-wrap msgid "" "(define-public lua5.2-socket\n" @@ -15255,34 +15351,34 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7695 +#: guix-git/doc/guix.texi:7753 msgid "Here we have defined packages @code{lua5.1-socket} and @code{lua5.2-socket} by calling @code{make-lua-socket} with different arguments. @xref{Procedures,,, guile, GNU Guile Reference Manual}, for more info on procedures. Having top-level public definitions for these two packages means that they can be referred to from the command line (@pxref{Package Modules})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7696 +#: guix-git/doc/guix.texi:7754 #, no-wrap msgid "package transformations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7701 +#: guix-git/doc/guix.texi:7759 msgid "These are pretty simple package variants. As a convenience, the @code{(guix transformations)} module provides a high-level interface that directly maps to the more sophisticated package transformation options (@pxref{Package Transformation Options}):" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7702 +#: guix-git/doc/guix.texi:7760 #, no-wrap msgid "{Scheme Procedure} options->transformation @var{opts}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7706 +#: guix-git/doc/guix.texi:7764 msgid "Return a procedure that, when passed an object to build (package, derivation, etc.), applies the transformations specified by @var{opts} and returns the resulting objects. @var{opts} must be a list of symbol/string pairs such as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7710 +#: guix-git/doc/guix.texi:7768 #, no-wrap msgid "" "((with-branch . \"guile-gcrypt=master\")\n" @@ -15290,17 +15386,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7714 +#: guix-git/doc/guix.texi:7772 msgid "Each symbol names a transformation and the corresponding string is an argument to that transformation." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7717 +#: guix-git/doc/guix.texi:7775 msgid "For instance, a manifest equivalent to this command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:7722 +#: guix-git/doc/guix.texi:7780 #, no-wrap msgid "" "guix build guix \\\n" @@ -15309,12 +15405,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7726 +#: guix-git/doc/guix.texi:7784 msgid "... would look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7729 +#: guix-git/doc/guix.texi:7787 #, no-wrap msgid "" "(use-modules (guix transformations))\n" @@ -15322,7 +15418,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7735 +#: guix-git/doc/guix.texi:7793 #, no-wrap msgid "" "(define transform\n" @@ -15334,7 +15430,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7738 +#: guix-git/doc/guix.texi:7796 #, no-wrap msgid "" "(packages->manifest\n" @@ -15342,50 +15438,50 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7740 +#: guix-git/doc/guix.texi:7798 #, no-wrap msgid "input rewriting" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7741 +#: guix-git/doc/guix.texi:7799 #, no-wrap msgid "dependency graph rewriting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7748 +#: guix-git/doc/guix.texi:7806 msgid "The @code{options->transformation} procedure is convenient, but it's perhaps also not as flexible as you may like. How is it implemented? The astute reader probably noticed that most package transformation options go beyond the superficial changes shown in the first examples of this section: they involve @dfn{input rewriting}, whereby the dependency graph of a package is rewritten by replacing specific inputs by others." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7752 +#: guix-git/doc/guix.texi:7810 msgid "Dependency graph rewriting, for the purposes of swapping packages in the graph, is what the @code{package-input-rewriting} procedure in @code{(guix packages)} implements." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7753 +#: guix-git/doc/guix.texi:7811 #, no-wrap msgid "{Scheme Procedure} package-input-rewriting @var{replacements} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7760 +#: guix-git/doc/guix.texi:7818 msgid "[@var{rewrite-name}] [#:deep? #t] Return a procedure that, when passed a package, replaces its direct and indirect dependencies, including implicit inputs when @var{deep?} is true, according to @var{replacements}. @var{replacements} is a list of package pairs; the first element of each pair is the package to replace, and the second one is the replacement." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7763 +#: guix-git/doc/guix.texi:7821 msgid "Optionally, @var{rewrite-name} is a one-argument procedure that takes the name of a package and returns its new name after rewrite." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7767 guix-git/doc/guix.texi:11216 +#: guix-git/doc/guix.texi:7825 guix-git/doc/guix.texi:11530 msgid "Consider this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7773 +#: guix-git/doc/guix.texi:7831 #, no-wrap msgid "" "(define libressl-instead-of-openssl\n" @@ -15396,7 +15492,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7776 +#: guix-git/doc/guix.texi:7834 #, no-wrap msgid "" "(define git-with-libressl\n" @@ -15404,33 +15500,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7784 +#: guix-git/doc/guix.texi:7842 msgid "Here we first define a rewriting procedure that replaces @var{openssl} with @var{libressl}. Then we use it to define a @dfn{variant} of the @var{git} package that uses @var{libressl} instead of @var{openssl}. This is exactly what the @option{--with-input} command-line option does (@pxref{Package Transformation Options, @option{--with-input}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7787 +#: guix-git/doc/guix.texi:7845 msgid "The following variant of @code{package-input-rewriting} can match packages to be replaced by name rather than by identity." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7788 +#: guix-git/doc/guix.texi:7846 #, no-wrap msgid "{Scheme Procedure} package-input-rewriting/spec @var{replacements} [#:deep? #t]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7795 +#: guix-git/doc/guix.texi:7853 msgid "Return a procedure that, given a package, applies the given @var{replacements} to all the package graph, including implicit inputs unless @var{deep?} is false. @var{replacements} is a list of spec/procedures pair; each spec is a package specification such as @code{\"gcc\"} or @code{\"guile@@2\"}, and each procedure takes a matching package and returns a replacement for that package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7798 +#: guix-git/doc/guix.texi:7856 msgid "The example above could be rewritten this way:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7803 +#: guix-git/doc/guix.texi:7861 #, no-wrap msgid "" "(define libressl-instead-of-openssl\n" @@ -15439,872 +15535,872 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7808 +#: guix-git/doc/guix.texi:7866 msgid "The key difference here is that, this time, packages are matched by spec and not by identity. In other words, any package in the graph that is called @code{openssl} will be replaced." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7812 +#: guix-git/doc/guix.texi:7870 msgid "A more generic procedure to rewrite a package dependency graph is @code{package-mapping}: it supports arbitrary changes to nodes in the graph." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7813 +#: guix-git/doc/guix.texi:7871 #, no-wrap msgid "{Scheme Procedure} package-mapping @var{proc} [@var{cut?}] [#:deep? #f]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7818 +#: guix-git/doc/guix.texi:7876 msgid "Return a procedure that, given a package, applies @var{proc} to all the packages depended on and returns the resulting package. The procedure stops recursion when @var{cut?} returns true for a given package. When @var{deep?} is true, @var{proc} is applied to implicit inputs as well." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7824 +#: guix-git/doc/guix.texi:7882 #, no-wrap msgid "build system" -msgstr "" +msgstr "zostavovací systém" #. type: Plain text -#: guix-git/doc/guix.texi:7829 +#: guix-git/doc/guix.texi:7887 msgid "Each package definition specifies a @dfn{build system} and arguments for that build system (@pxref{Defining Packages}). This @code{build-system} field represents the build procedure of the package, as well as implicit dependencies of that build procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7833 +#: guix-git/doc/guix.texi:7891 msgid "Build systems are @code{} objects. The interface to create and manipulate them is provided by the @code{(guix build-system)} module, and actual build systems are exported by specific modules." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7834 +#: guix-git/doc/guix.texi:7892 #, no-wrap msgid "bag (low-level package representation)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7844 +#: guix-git/doc/guix.texi:7902 msgid "Under the hood, build systems first compile package objects to @dfn{bags}. A @dfn{bag} is like a package, but with less ornamentation---in other words, a bag is a lower-level representation of a package, which includes all the inputs of that package, including some that were implicitly added by the build system. This intermediate representation is then compiled to a derivation (@pxref{Derivations}). The @code{package-with-c-toolchain} is an example of a way to change the implicit inputs that a package's build system pulls in (@pxref{package Reference, @code{package-with-c-toolchain}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7852 +#: guix-git/doc/guix.texi:7910 msgid "Build systems accept an optional list of @dfn{arguments}. In package definitions, these are passed @i{via} the @code{arguments} field (@pxref{Defining Packages}). They are typically keyword arguments (@pxref{Optional Arguments, keyword arguments in Guile,, guile, GNU Guile Reference Manual}). The value of these arguments is usually evaluated in the @dfn{build stratum}---i.e., by a Guile process launched by the daemon (@pxref{Derivations})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7856 +#: guix-git/doc/guix.texi:7914 msgid "The main build system is @code{gnu-build-system}, which implements the standard build procedure for GNU and many other packages. It is provided by the @code{(guix build-system gnu)} module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7857 +#: guix-git/doc/guix.texi:7915 #, no-wrap msgid "{Scheme Variable} gnu-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7861 +#: guix-git/doc/guix.texi:7919 msgid "@code{gnu-build-system} represents the GNU Build System, and variants thereof (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7862 guix-git/doc/guix.texi:8812 -#: guix-git/doc/guix.texi:9294 +#: guix-git/doc/guix.texi:7920 guix-git/doc/guix.texi:8869 +#: guix-git/doc/guix.texi:9429 #, no-wrap msgid "build phases" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7869 +#: guix-git/doc/guix.texi:7927 msgid "In a nutshell, packages using it are configured, built, and installed with the usual @code{./configure && make && make check && make install} command sequence. In practice, a few additional steps are often needed. All these steps are split up in separate @dfn{phases}. @xref{Build Phases}, for more info on build phases and ways to customize them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7876 +#: guix-git/doc/guix.texi:7934 msgid "In addition, this build system ensures that the ``standard'' environment for GNU packages is available. This includes tools such as GCC, libc, Coreutils, Bash, Make, Diffutils, grep, and sed (see the @code{(guix build-system gnu)} module for a complete list). We call these the @dfn{implicit inputs} of a package, because package definitions do not have to mention them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7880 +#: guix-git/doc/guix.texi:7938 msgid "This build system supports a number of keyword arguments, which can be passed @i{via} the @code{arguments} field of a package. Here are some of the main parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:7882 +#: guix-git/doc/guix.texi:7940 #, no-wrap msgid "#:phases" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7885 +#: guix-git/doc/guix.texi:7943 msgid "This argument specifies build-side code that evaluates to an alist of build phases. @xref{Build Phases}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7886 +#: guix-git/doc/guix.texi:7944 #, no-wrap msgid "#:configure-flags" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7889 +#: guix-git/doc/guix.texi:7947 msgid "This is a list of flags (strings) passed to the @command{configure} script. @xref{Defining Packages}, for an example." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7890 +#: guix-git/doc/guix.texi:7948 #, no-wrap msgid "#:make-flags" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7894 +#: guix-git/doc/guix.texi:7952 msgid "This list of strings contains flags passed as arguments to @command{make} invocations in the @code{build}, @code{check}, and @code{install} phases." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7895 +#: guix-git/doc/guix.texi:7953 #, no-wrap msgid "#:out-of-source?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7898 +#: guix-git/doc/guix.texi:7956 msgid "This Boolean, @code{#f} by default, indicates whether to run builds in a build directory separate from the source tree." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7903 +#: guix-git/doc/guix.texi:7961 msgid "When it is true, the @code{configure} phase creates a separate build directory, changes to that directory, and runs the @code{configure} script from there. This is useful for packages that require it, such as @code{glibc}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7904 +#: guix-git/doc/guix.texi:7962 #, no-wrap msgid "#:tests?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7907 +#: guix-git/doc/guix.texi:7965 msgid "This Boolean, @code{#t} by default, indicates whether the @code{check} phase should run the package's test suite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7908 +#: guix-git/doc/guix.texi:7966 #, no-wrap msgid "#:test-target" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7911 +#: guix-git/doc/guix.texi:7969 msgid "This string, @code{\"check\"} by default, gives the name of the makefile target used by the @code{check} phase." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7912 +#: guix-git/doc/guix.texi:7970 #, no-wrap msgid "#:parallel-build?" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7913 +#: guix-git/doc/guix.texi:7971 #, no-wrap msgid "#:parallel-tests?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7920 +#: guix-git/doc/guix.texi:7978 msgid "These Boolean values specify whether to build, respectively run the test suite, in parallel, with the @code{-j} flag of @command{make}. When they are true, @code{make} is passed @code{-j@var{n}}, where @var{n} is the number specified as the @option{--cores} option of @command{guix-daemon} or that of the @command{guix} client command (@pxref{Common Build Options, @option{--cores}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7921 +#: guix-git/doc/guix.texi:7979 #, no-wrap msgid "RUNPATH, validation" msgstr "" #. type: item -#: guix-git/doc/guix.texi:7922 +#: guix-git/doc/guix.texi:7980 #, no-wrap msgid "#:validate-runpath?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7926 +#: guix-git/doc/guix.texi:7984 msgid "This Boolean, @code{#t} by default, determines whether to ``validate'' the @code{RUNPATH} of ELF binaries (@code{.so} shared libraries as well as executables) previously installed by the @code{install} phase." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7934 +#: guix-git/doc/guix.texi:7992 msgid "This validation step consists in making sure that all the shared libraries needed by an ELF binary, which are listed as @code{DT_NEEDED} entries in its @code{PT_DYNAMIC} segment, appear in the @code{DT_RUNPATH} entry of that binary. In other words, it ensures that running or using those binaries will not result in a ``file not found'' error at run time. @xref{Options, @option{-rpath},, ld, The GNU Linker}, for more information on @code{RUNPATH}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7935 +#: guix-git/doc/guix.texi:7993 #, no-wrap msgid "#:substitutable?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7939 +#: guix-git/doc/guix.texi:7997 msgid "This Boolean, @code{#t} by default, tells whether the package outputs should be substitutable---i.e., whether users should be able to obtain substitutes for them instead of building locally (@pxref{Substitutes})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7940 +#: guix-git/doc/guix.texi:7998 #, no-wrap msgid "#:allowed-references" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7941 +#: guix-git/doc/guix.texi:7999 #, no-wrap msgid "#:disallowed-references" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7946 +#: guix-git/doc/guix.texi:8004 msgid "When true, these arguments must be a list of dependencies that must not appear among the references of the build results. If, upon build completion, some of these references are retained, the build process fails." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7951 +#: guix-git/doc/guix.texi:8009 msgid "This is useful to ensure that a package does not erroneously keep a reference to some of it build-time inputs, in cases where doing so would, for example, unnecessarily increase its size (@pxref{Invoking guix size})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7954 +#: guix-git/doc/guix.texi:8012 msgid "Most other build systems support these keyword arguments." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7961 +#: guix-git/doc/guix.texi:8019 msgid "Other @code{} objects are defined to support other conventions and tools used by free software packages. They inherit most of @code{gnu-build-system}, and differ mainly in the set of inputs implicitly added to the build process, and in the list of phases executed. Some of these build systems are listed below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7962 +#: guix-git/doc/guix.texi:8020 #, no-wrap msgid "{Scheme Variable} ant-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7966 +#: guix-git/doc/guix.texi:8024 msgid "This variable is exported by @code{(guix build-system ant)}. It implements the build procedure for Java packages that can be built with @url{https://ant.apache.org/, Ant build tool}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7971 +#: guix-git/doc/guix.texi:8029 msgid "It adds both @code{ant} and the @dfn{Java Development Kit} (JDK) as provided by the @code{icedtea} package to the set of inputs. Different packages can be specified with the @code{#:ant} and @code{#:jdk} parameters, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7977 +#: guix-git/doc/guix.texi:8035 msgid "When the original package does not provide a suitable Ant build file, the parameter @code{#:jar-name} can be used to generate a minimal Ant build file @file{build.xml} with tasks to build the specified jar archive. In this case the parameter @code{#:source-dir} can be used to specify the source sub-directory, defaulting to ``src''." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7985 +#: guix-git/doc/guix.texi:8043 msgid "The @code{#:main-class} parameter can be used with the minimal ant buildfile to specify the main class of the resulting jar. This makes the jar file executable. The @code{#:test-include} parameter can be used to specify the list of junit tests to run. It defaults to @code{(list \"**/*Test.java\")}. The @code{#:test-exclude} can be used to disable some tests. It defaults to @code{(list \"**/Abstract*.java\")}, because abstract classes cannot be run as tests." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7989 +#: guix-git/doc/guix.texi:8047 msgid "The parameter @code{#:build-target} can be used to specify the Ant task that should be run during the @code{build} phase. By default the ``jar'' task will be run." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7992 +#: guix-git/doc/guix.texi:8050 #, no-wrap msgid "{Scheme Variable} android-ndk-build-system" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7993 +#: guix-git/doc/guix.texi:8051 #, no-wrap msgid "Android distribution" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7994 +#: guix-git/doc/guix.texi:8052 #, no-wrap msgid "Android NDK build system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7998 +#: guix-git/doc/guix.texi:8056 msgid "This variable is exported by @code{(guix build-system android-ndk)}. It implements a build procedure for Android NDK (native development kit) packages using a Guix-specific build process." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8002 +#: guix-git/doc/guix.texi:8060 msgid "The build system assumes that packages install their public interface (header) files to the subdirectory @file{include} of the @code{out} output and their libraries to the subdirectory @file{lib} the @code{out} output." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8005 +#: guix-git/doc/guix.texi:8063 msgid "It's also assumed that the union of all the dependencies of a package has no conflicting files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8008 +#: guix-git/doc/guix.texi:8066 msgid "For the time being, cross-compilation is not supported - so right now the libraries and header files are assumed to be host tools." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8011 +#: guix-git/doc/guix.texi:8069 #, no-wrap msgid "{Scheme Variable} asdf-build-system/source" msgstr "" #. type: defvrx -#: guix-git/doc/guix.texi:8012 +#: guix-git/doc/guix.texi:8070 #, no-wrap msgid "{Scheme Variable} asdf-build-system/sbcl" msgstr "" #. type: defvrx -#: guix-git/doc/guix.texi:8013 +#: guix-git/doc/guix.texi:8071 #, no-wrap msgid "{Scheme Variable} asdf-build-system/ecl" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8019 +#: guix-git/doc/guix.texi:8077 msgid "These variables, exported by @code{(guix build-system asdf)}, implement build procedures for Common Lisp packages using @url{https://common-lisp.net/project/asdf/, ``ASDF''}. ASDF is a system definition facility for Common Lisp programs and libraries." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8026 +#: guix-git/doc/guix.texi:8084 msgid "The @code{asdf-build-system/source} system installs the packages in source form, and can be loaded using any common lisp implementation, via ASDF@. The others, such as @code{asdf-build-system/sbcl}, install binary systems in the format which a particular implementation understands. These build systems can also be used to produce executable programs, or lisp images which contain a set of packages pre-loaded." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8030 +#: guix-git/doc/guix.texi:8088 msgid "The build system uses naming conventions. For binary packages, the package name should be prefixed with the lisp implementation, such as @code{sbcl-} for @code{asdf-build-system/sbcl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8034 +#: guix-git/doc/guix.texi:8092 msgid "Additionally, the corresponding source package should be labeled using the same convention as python packages (see @ref{Python Modules}), using the @code{cl-} prefix." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8042 +#: guix-git/doc/guix.texi:8100 msgid "In order to create executable programs and images, the build-side procedures @code{build-program} and @code{build-image} can be used. They should be called in a build phase after the @code{create-asdf-configuration} phase, so that the system which was just built can be used within the resulting image. @code{build-program} requires a list of Common Lisp expressions to be passed as the @code{#:entry-program} argument." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8051 +#: guix-git/doc/guix.texi:8109 msgid "By default, all the @file{.asd} files present in the sources are read to find system definitions. The @code{#:asd-files} parameter can be used to specify the list of @file{.asd} files to read. Furthermore, if the package defines a system for its tests in a separate file, it will be loaded before the tests are run if it is specified by the @code{#:test-asd-file} parameter. If it is not set, the files @code{-tests.asd}, @code{-test.asd}, @code{tests.asd}, and @code{test.asd} will be tried if they exist." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8056 +#: guix-git/doc/guix.texi:8114 msgid "If for some reason the package must be named in a different way than the naming conventions suggest, or if several systems must be compiled, the @code{#:asd-systems} parameter can be used to specify the list of system names." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8059 +#: guix-git/doc/guix.texi:8117 #, no-wrap msgid "{Scheme Variable} cargo-build-system" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8060 +#: guix-git/doc/guix.texi:8118 #, no-wrap msgid "Rust programming language" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8061 +#: guix-git/doc/guix.texi:8119 #, no-wrap msgid "Cargo (Rust build system)" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8065 +#: guix-git/doc/guix.texi:8123 msgid "This variable is exported by @code{(guix build-system cargo)}. It supports builds of packages using Cargo, the build tool of the @uref{https://www.rust-lang.org, Rust programming language}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8068 +#: guix-git/doc/guix.texi:8126 msgid "It adds @code{rustc} and @code{cargo} to the set of inputs. A different Rust package can be specified with the @code{#:rust} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8078 +#: guix-git/doc/guix.texi:8136 msgid "Regular cargo dependencies should be added to the package definition similarly to other packages; those needed only at build time to native-inputs, others to inputs. If you need to add source-only crates then you should add them to via the @code{#:cargo-inputs} parameter as a list of name and spec pairs, where the spec can be a package or a source definition. Note that the spec must evaluate to a path to a gzipped tarball which includes a @code{Cargo.toml} file at its root, or it will be ignored. Similarly, cargo dev-dependencies should be added to the package definition via the @code{#:cargo-development-inputs} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8088 +#: guix-git/doc/guix.texi:8146 msgid "In its @code{configure} phase, this build system will make any source inputs specified in the @code{#:cargo-inputs} and @code{#:cargo-development-inputs} parameters available to cargo. It will also remove an included @code{Cargo.lock} file to be recreated by @code{cargo} during the @code{build} phase. The @code{package} phase will run @code{cargo package} to create a source crate for future use. The @code{install} phase installs the binaries defined by the crate. Unless @code{install-source? #f} is defined it will also install a source crate repository of itself and unpacked sources, to ease in future hacking on rust packages." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8090 +#: guix-git/doc/guix.texi:8148 #, no-wrap msgid "{Scheme Variable} chicken-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8095 +#: guix-git/doc/guix.texi:8153 msgid "This variable is exported by @code{(guix build-system chicken)}. It builds @uref{https://call-cc.org/, CHICKEN Scheme} modules, also called ``eggs'' or ``extensions''. CHICKEN generates C source code, which then gets compiled by a C compiler, in this case GCC." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8098 +#: guix-git/doc/guix.texi:8156 msgid "This build system adds @code{chicken} to the package inputs, as well as the packages of @code{gnu-build-system}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8102 +#: guix-git/doc/guix.texi:8160 msgid "The build system can't (yet) deduce the egg's name automatically, so just like with @code{go-build-system} and its @code{#:import-path}, you should define @code{#:egg-name} in the package's @code{arguments} field." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8104 +#: guix-git/doc/guix.texi:8162 msgid "For example, if you are packaging the @code{srfi-1} egg:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8107 +#: guix-git/doc/guix.texi:8165 #, no-wrap msgid "(arguments '(#:egg-name \"srfi-1\"))\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8112 +#: guix-git/doc/guix.texi:8170 msgid "Egg dependencies must be defined in @code{propagated-inputs}, not @code{inputs} because CHICKEN doesn't embed absolute references in compiled eggs. Test dependencies should go to @code{native-inputs}, as usual." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8114 +#: guix-git/doc/guix.texi:8172 #, no-wrap msgid "{Scheme Variable} copy-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8118 +#: guix-git/doc/guix.texi:8176 msgid "This variable is exported by @code{(guix build-system copy)}. It supports builds of simple packages that don't require much compiling, mostly just moving files around." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8123 +#: guix-git/doc/guix.texi:8181 msgid "It adds much of the @code{gnu-build-system} packages to the set of inputs. Because of this, the @code{copy-build-system} does not require all the boilerplate code often needed for the @code{trivial-build-system}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8128 +#: guix-git/doc/guix.texi:8186 msgid "To further simplify the file installation process, an @code{#:install-plan} argument is exposed to let the packager specify which files go where. The install plan is a list of @code{(@var{source} @var{target} [@var{filters}])}. @var{filters} are optional." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8130 +#: guix-git/doc/guix.texi:8188 #, no-wrap msgid "When @var{source} matches a file or directory without trailing slash, install it to @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8132 +#: guix-git/doc/guix.texi:8190 #, no-wrap msgid "If @var{target} has a trailing slash, install @var{source} basename beneath @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8133 +#: guix-git/doc/guix.texi:8191 #, no-wrap msgid "Otherwise install @var{source} as @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8136 +#: guix-git/doc/guix.texi:8194 #, no-wrap msgid "When @var{source} is a directory with a trailing slash, or when @var{filters} are used," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8139 +#: guix-git/doc/guix.texi:8197 msgid "the trailing slash of @var{target} is implied with the same meaning as above." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8140 +#: guix-git/doc/guix.texi:8198 #, no-wrap msgid "Without @var{filters}, install the full @var{source} @emph{content} to @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8141 +#: guix-git/doc/guix.texi:8199 #, no-wrap msgid "With @var{filters} among @code{#:include}, @code{#:include-regexp}, @code{#:exclude}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8144 +#: guix-git/doc/guix.texi:8202 msgid "@code{#:exclude-regexp}, only select files are installed depending on the filters. Each filters is specified by a list of strings." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8145 +#: guix-git/doc/guix.texi:8203 #, no-wrap msgid "With @code{#:include}, install all the files which the path suffix matches" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8147 +#: guix-git/doc/guix.texi:8205 msgid "at least one of the elements in the given list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8147 +#: guix-git/doc/guix.texi:8205 #, no-wrap msgid "With @code{#:include-regexp}, install all the files which the" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8150 +#: guix-git/doc/guix.texi:8208 msgid "subpaths match at least one of the regular expressions in the given list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8150 +#: guix-git/doc/guix.texi:8208 #, no-wrap msgid "The @code{#:exclude} and @code{#:exclude-regexp} filters" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8155 +#: guix-git/doc/guix.texi:8213 msgid "are the complement of their inclusion counterpart. Without @code{#:include} flags, install all files but those matching the exclusion filters. If both inclusions and exclusions are specified, the exclusions are done on top of the inclusions." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8159 +#: guix-git/doc/guix.texi:8217 msgid "In all cases, the paths relative to @var{source} are preserved within @var{target}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8162 +#: guix-git/doc/guix.texi:8220 msgid "Examples:" -msgstr "" +msgstr "Príklady:" #. type: item -#: guix-git/doc/guix.texi:8164 +#: guix-git/doc/guix.texi:8222 #, no-wrap msgid "@code{(\"foo/bar\" \"share/my-app/\")}: Install @file{bar} to @file{share/my-app/bar}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8165 +#: guix-git/doc/guix.texi:8223 #, no-wrap msgid "@code{(\"foo/bar\" \"share/my-app/baz\")}: Install @file{bar} to @file{share/my-app/baz}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8166 +#: guix-git/doc/guix.texi:8224 #, no-wrap msgid "@code{(\"foo/\" \"share/my-app\")}: Install the content of @file{foo} inside @file{share/my-app}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8168 +#: guix-git/doc/guix.texi:8226 msgid "e.g., install @file{foo/sub/file} to @file{share/my-app/sub/file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8168 +#: guix-git/doc/guix.texi:8226 #, no-wrap msgid "@code{(\"foo/\" \"share/my-app\" #:include (\"sub/file\"))}: Install only @file{foo/sub/file} to" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8170 +#: guix-git/doc/guix.texi:8228 msgid "@file{share/my-app/sub/file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8170 +#: guix-git/doc/guix.texi:8228 #, no-wrap msgid "@code{(\"foo/sub\" \"share/my-app\" #:include (\"file\"))}: Install @file{foo/sub/file} to" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8172 +#: guix-git/doc/guix.texi:8230 msgid "@file{share/my-app/file}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8176 +#: guix-git/doc/guix.texi:8234 #, no-wrap msgid "Clojure (programming language)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8177 +#: guix-git/doc/guix.texi:8235 #, no-wrap msgid "simple Clojure build system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8178 +#: guix-git/doc/guix.texi:8236 #, no-wrap msgid "{Scheme Variable} clojure-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8183 +#: guix-git/doc/guix.texi:8241 msgid "This variable is exported by @code{(guix build-system clojure)}. It implements a simple build procedure for @uref{https://clojure.org/, Clojure} packages using plain old @code{compile} in Clojure. Cross-compilation is not supported yet." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8187 +#: guix-git/doc/guix.texi:8245 msgid "It adds @code{clojure}, @code{icedtea} and @code{zip} to the set of inputs. Different packages can be specified with the @code{#:clojure}, @code{#:jdk} and @code{#:zip} parameters, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8193 +#: guix-git/doc/guix.texi:8251 msgid "A list of source directories, test directories and jar names can be specified with the @code{#:source-dirs}, @code{#:test-dirs} and @code{#:jar-names} parameters, respectively. Compile directory and main class can be specified with the @code{#:compile-dir} and @code{#:main-class} parameters, respectively. Other parameters are documented below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8196 +#: guix-git/doc/guix.texi:8254 msgid "This build system is an extension of @code{ant-build-system}, but with the following phases changed:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8199 guix-git/doc/guix.texi:8773 -#: guix-git/doc/guix.texi:8822 guix-git/doc/guix.texi:8891 -#: guix-git/doc/guix.texi:35042 guix-git/doc/guix.texi:37668 +#: guix-git/doc/guix.texi:8257 guix-git/doc/guix.texi:8830 +#: guix-git/doc/guix.texi:8879 guix-git/doc/guix.texi:8952 +#: guix-git/doc/guix.texi:35481 guix-git/doc/guix.texi:38147 #, no-wrap msgid "build" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8208 +#: guix-git/doc/guix.texi:8266 msgid "This phase calls @code{compile} in Clojure to compile source files and runs @command{jar} to create jars from both source files and compiled files according to the include list and exclude list specified in @code{#:aot-include} and @code{#:aot-exclude}, respectively. The exclude list has priority over the include list. These lists consist of symbols representing Clojure libraries or the special keyword @code{#:all} representing all Clojure libraries found under the source directories. The parameter @code{#:omit-source?} decides if source should be included into the jars." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8209 guix-git/doc/guix.texi:8777 -#: guix-git/doc/guix.texi:8896 +#: guix-git/doc/guix.texi:8267 guix-git/doc/guix.texi:8834 +#: guix-git/doc/guix.texi:8957 #, no-wrap msgid "check" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8216 +#: guix-git/doc/guix.texi:8274 msgid "This phase runs tests according to the include list and exclude list specified in @code{#:test-include} and @code{#:test-exclude}, respectively. Their meanings are analogous to that of @code{#:aot-include} and @code{#:aot-exclude}, except that the special keyword @code{#:all} now stands for all Clojure libraries found under the test directories. The parameter @code{#:tests?} decides if tests should be run." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8217 guix-git/doc/guix.texi:8783 -#: guix-git/doc/guix.texi:8826 guix-git/doc/guix.texi:8902 +#: guix-git/doc/guix.texi:8275 guix-git/doc/guix.texi:8840 +#: guix-git/doc/guix.texi:8883 guix-git/doc/guix.texi:8963 #, no-wrap msgid "install" -msgstr "" +msgstr "inštalovať" #. type: table -#: guix-git/doc/guix.texi:8219 +#: guix-git/doc/guix.texi:8277 msgid "This phase installs all jars built previously." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8222 +#: guix-git/doc/guix.texi:8280 msgid "Apart from the above, this build system also contains an additional phase:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8225 +#: guix-git/doc/guix.texi:8283 #, no-wrap msgid "install-doc" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8230 +#: guix-git/doc/guix.texi:8288 msgid "This phase installs all top-level files with base name matching @code{%doc-regex}. A different regex can be specified with the @code{#:doc-regex} parameter. All files (recursively) inside the documentation directories specified in @code{#:doc-dirs} are installed as well." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8233 +#: guix-git/doc/guix.texi:8291 #, no-wrap msgid "{Scheme Variable} cmake-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8237 +#: guix-git/doc/guix.texi:8295 msgid "This variable is exported by @code{(guix build-system cmake)}. It implements the build procedure for packages using the @url{https://www.cmake.org, CMake build tool}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8241 +#: guix-git/doc/guix.texi:8299 msgid "It automatically adds the @code{cmake} package to the set of inputs. Which package is used can be specified with the @code{#:cmake} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8248 +#: guix-git/doc/guix.texi:8306 msgid "The @code{#:configure-flags} parameter is taken as a list of flags passed to the @command{cmake} command. The @code{#:build-type} parameter specifies in abstract terms the flags passed to the compiler; it defaults to @code{\"RelWithDebInfo\"} (short for ``release mode with debugging information''), which roughly means that code is compiled with @code{-O2 -g}, as is the case for Autoconf-based packages by default." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8250 +#: guix-git/doc/guix.texi:8308 #, no-wrap msgid "{Scheme Variable} dune-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8257 +#: guix-git/doc/guix.texi:8315 msgid "This variable is exported by @code{(guix build-system dune)}. It supports builds of packages using @uref{https://dune.build/, Dune}, a build tool for the OCaml programming language. It is implemented as an extension of the @code{ocaml-build-system} which is described below. As such, the @code{#:ocaml} and @code{#:findlib} parameters can be passed to this build system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8261 +#: guix-git/doc/guix.texi:8319 msgid "It automatically adds the @code{dune} package to the set of inputs. Which package is used can be specified with the @code{#:dune} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8265 +#: guix-git/doc/guix.texi:8323 msgid "There is no @code{configure} phase because dune packages typically don't need to be configured. The @code{#:build-flags} parameter is taken as a list of flags passed to the @code{dune} command during the build." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8269 +#: guix-git/doc/guix.texi:8327 msgid "The @code{#:jbuild?} parameter can be passed to use the @code{jbuild} command instead of the more recent @code{dune} command while building a package. Its default value is @code{#f}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8274 +#: guix-git/doc/guix.texi:8332 msgid "The @code{#:package} parameter can be passed to specify a package name, which is useful when a package contains multiple packages and you want to build only one of them. This is equivalent to passing the @code{-p} argument to @code{dune}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8277 +#: guix-git/doc/guix.texi:8335 #, no-wrap msgid "{Scheme Variable} go-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8282 +#: guix-git/doc/guix.texi:8340 msgid "This variable is exported by @code{(guix build-system go)}. It implements a build procedure for Go packages using the standard @url{https://golang.org/cmd/go/#hdr-Compile_packages_and_dependencies, Go build mechanisms}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8293 +#: guix-git/doc/guix.texi:8351 msgid "The user is expected to provide a value for the key @code{#:import-path} and, in some cases, @code{#:unpack-path}. The @url{https://golang.org/doc/code.html#ImportPaths, import path} corresponds to the file system path expected by the package's build scripts and any referring packages, and provides a unique way to refer to a Go package. It is typically based on a combination of the package source code's remote URI and file system hierarchy structure. In some cases, you will need to unpack the package's source code to a different directory structure than the one indicated by the import path, and @code{#:unpack-path} should be used in such cases." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8298 +#: guix-git/doc/guix.texi:8356 msgid "Packages that provide Go libraries should install their source code into the built output. The key @code{#:install-source?}, which defaults to @code{#t}, controls whether or not the source code is installed. It can be set to @code{#f} for packages that only provide executable files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8305 +#: guix-git/doc/guix.texi:8363 msgid "Packages can be cross-built, and if a specific architecture or operating system is desired then the keywords @code{#:goarch} and @code{#:goos} can be used to force the package to be built for that architecture and operating system. The combinations known to Go can be found @url{\"https://golang.org/doc/install/source#environment\", in their documentation}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8307 +#: guix-git/doc/guix.texi:8365 #, no-wrap msgid "{Scheme Variable} glib-or-gtk-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8310 +#: guix-git/doc/guix.texi:8368 msgid "This variable is exported by @code{(guix build-system glib-or-gtk)}. It is intended for use with packages making use of GLib or GTK+." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8313 +#: guix-git/doc/guix.texi:8371 msgid "This build system adds the following two phases to the ones defined by @code{gnu-build-system}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8315 guix-git/doc/guix.texi:8799 +#: guix-git/doc/guix.texi:8373 guix-git/doc/guix.texi:8856 #, no-wrap msgid "glib-or-gtk-wrap" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8322 +#: guix-git/doc/guix.texi:8380 msgid "The phase @code{glib-or-gtk-wrap} ensures that programs in @file{bin/} are able to find GLib ``schemas'' and @uref{https://developer.gnome.org/gtk3/stable/gtk-running.html, GTK+ modules}. This is achieved by wrapping the programs in launch scripts that appropriately set the @env{XDG_DATA_DIRS} and @env{GTK_PATH} environment variables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8329 +#: guix-git/doc/guix.texi:8387 msgid "It is possible to exclude specific package outputs from that wrapping process by listing their names in the @code{#:glib-or-gtk-wrap-excluded-outputs} parameter. This is useful when an output is known not to contain any GLib or GTK+ binaries, and where wrapping would gratuitously add a dependency of that output on GLib and GTK+." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8330 guix-git/doc/guix.texi:8803 +#: guix-git/doc/guix.texi:8388 guix-git/doc/guix.texi:8860 #, no-wrap msgid "glib-or-gtk-compile-schemas" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8338 +#: guix-git/doc/guix.texi:8396 msgid "The phase @code{glib-or-gtk-compile-schemas} makes sure that all @uref{https://developer.gnome.org/gio/stable/glib-compile-schemas.html, GSettings schemas} of GLib are compiled. Compilation is performed by the @command{glib-compile-schemas} program. It is provided by the package @code{glib:bin} which is automatically imported by the build system. The @code{glib} package providing @command{glib-compile-schemas} can be specified with the @code{#:glib} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8341 +#: guix-git/doc/guix.texi:8399 msgid "Both phases are executed after the @code{install} phase." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8343 +#: guix-git/doc/guix.texi:8401 #, no-wrap msgid "{Scheme Variable} guile-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8350 +#: guix-git/doc/guix.texi:8408 msgid "This build system is for Guile packages that consist exclusively of Scheme code and that are so lean that they don't even have a makefile, let alone a @file{configure} script. It compiles Scheme code using @command{guild compile} (@pxref{Compilation,,, guile, GNU Guile Reference Manual}) and installs the @file{.scm} and @file{.go} files in the right place. It also installs documentation." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8353 +#: guix-git/doc/guix.texi:8411 msgid "This build system supports cross-compilation by using the @option{--target} option of @samp{guild compile}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8356 +#: guix-git/doc/guix.texi:8414 msgid "Packages built with @code{guile-build-system} must provide a Guile package in their @code{native-inputs} field." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8358 +#: guix-git/doc/guix.texi:8416 #, no-wrap msgid "{Scheme Variable} julia-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8365 +#: guix-git/doc/guix.texi:8423 msgid "This variable is exported by @code{(guix build-system julia)}. It implements the build procedure used by @uref{https://julialang.org/, julia} packages, which essentially is similar to running @samp{julia -e 'using Pkg; Pkg.add(package)'} in an environment where @env{JULIA_LOAD_PATH} contains the paths to all Julia package inputs. Tests are run by calling @code{/test/runtests.jl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8369 -msgid "The Julia package name is read from the file @file{Project.toml}. This value can be overridden by passing the argument @code{#:julia-package-name} (which must be correctly capitalized)." +#: guix-git/doc/guix.texi:8428 +msgid "The Julia package name and uuid is read from the file @file{Project.toml}. These values can be overridden by passing the argument @code{#:julia-package-name} (which must be correctly capitalized) or @code{#:julia-package-uuid}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8373 +#: guix-git/doc/guix.texi:8432 msgid "Julia packages usually manage their binary dependencies via @code{JLLWrappers.jl}, a Julia package that creates a module (named after the wrapped library followed by @code{_jll.jl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8378 +#: guix-git/doc/guix.texi:8437 msgid "To add the binary path @code{_jll.jl} packages, you need to patch the files under @file{src/wrappers/}, replacing the call to the macro @code{JLLWrappers.@@generate_wrapper_header}, adding as a second argument containing the store path the binary." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8382 +#: guix-git/doc/guix.texi:8441 msgid "As an example, in the MbedTLS Julia package, we add a build phase (@pxref{Build Phases}) to insert the absolute file name of the wrapped MbedTLS package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8394 +#: guix-git/doc/guix.texi:8453 #, no-wrap msgid "" "(add-after 'unpack 'override-binary-path\n" @@ -16320,655 +16416,666 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8402 -msgid "Some older packages that aren't using @file{Package.toml} yet, will require this file to be created, too. The function @code{julia-create-package-toml} helps creating the file. You need to pass the outputs and the source of the package, its name (the same as the @code{file-name} parameter), the package uuid, the package version, and a list of dependencies specified by their name and their uuid." +#: guix-git/doc/guix.texi:8459 +msgid "Some older packages that aren't using @file{Project.toml} yet, will require this file to be created, too. It is internally done if the arguments @code{#:julia-package-name} and @code{#:julia-package-uuid} are provided." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8404 +#: guix-git/doc/guix.texi:8461 #, no-wrap msgid "{Scheme Variable} maven-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8411 +#: guix-git/doc/guix.texi:8468 msgid "This variable is exported by @code{(guix build-system maven)}. It implements a build procedure for @uref{https://maven.apache.org, Maven} packages. Maven is a dependency and lifecycle management tool for Java. A user of Maven specifies dependencies and plugins in a @file{pom.xml} file that Maven reads. When Maven does not have one of the dependencies or plugins in its repository, it will download them and use them to build the package." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8421 +#: guix-git/doc/guix.texi:8478 msgid "The maven build system ensures that maven will not try to download any dependency by running in offline mode. Maven will fail if a dependency is missing. Before running Maven, the @file{pom.xml} (and subprojects) are modified to specify the version of dependencies and plugins that match the versions available in the guix build environment. Dependencies and plugins must be installed in the fake maven repository at @file{lib/m2}, and are symlinked into a proper repository before maven is run. Maven is instructed to use that repository for the build and installs built artifacts there. Changed files are copied to the @file{lib/m2} directory of the package output." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8424 +#: guix-git/doc/guix.texi:8481 msgid "You can specify a @file{pom.xml} file with the @code{#:pom-file} argument, or let the build system use the default @file{pom.xml} file in the sources." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8430 +#: guix-git/doc/guix.texi:8487 msgid "In case you need to specify a dependency's version manually, you can use the @code{#:local-packages} argument. It takes an association list where the key is the groupId of the package and its value is an association list where the key is the artifactId of the package and its value is the version you want to override in the @file{pom.xml}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8436 +#: guix-git/doc/guix.texi:8493 msgid "Some packages use dependencies or plugins that are not useful at runtime nor at build time in Guix. You can alter the @file{pom.xml} file to remove them using the @code{#:exclude} argument. Its value is an association list where the key is the groupId of the plugin or dependency you want to remove, and the value is a list of artifactId you want to remove." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8439 +#: guix-git/doc/guix.texi:8496 msgid "You can override the default @code{jdk} and @code{maven} packages with the corresponding argument, @code{#:jdk} and @code{#:maven}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8444 +#: guix-git/doc/guix.texi:8501 msgid "The @code{#:maven-plugins} argument is a list of maven plugins used during the build, with the same format as the @code{inputs} fields of the package declaration. Its default value is @code{(default-maven-plugins)} which is also exported." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8446 +#: guix-git/doc/guix.texi:8503 #, no-wrap msgid "{Scheme Variable} minetest-mod-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8452 +#: guix-git/doc/guix.texi:8509 msgid "This variable is exported by @code{(guix build-system minetest)}. It implements a build procedure for @uref{https://www.minetest.net, Minetest} mods, which consists of copying Lua code, images and other resources to the location Minetest searches for mods. The build system also minimises PNG images and verifies that Minetest can load the mod without errors." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8454 +#: guix-git/doc/guix.texi:8511 #, no-wrap msgid "{Scheme Variable} minify-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8457 +#: guix-git/doc/guix.texi:8514 msgid "This variable is exported by @code{(guix build-system minify)}. It implements a minification procedure for simple JavaScript packages." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8463 +#: guix-git/doc/guix.texi:8520 msgid "It adds @code{uglify-js} to the set of inputs and uses it to compress all JavaScript files in the @file{src} directory. A different minifier package can be specified with the @code{#:uglify-js} parameter, but it is expected that the package writes the minified code to the standard output." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8467 +#: guix-git/doc/guix.texi:8524 msgid "When the input JavaScript files are not all located in the @file{src} directory, the parameter @code{#:javascript-files} can be used to specify a list of file names to feed to the minifier." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8469 +#: guix-git/doc/guix.texi:8526 #, no-wrap msgid "{Scheme Variable} ocaml-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8475 +#: guix-git/doc/guix.texi:8532 msgid "This variable is exported by @code{(guix build-system ocaml)}. It implements a build procedure for @uref{https://ocaml.org, OCaml} packages, which consists of choosing the correct set of commands to run for each package. OCaml packages can expect many different commands to be run. This build system will try some of them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8485 +#: guix-git/doc/guix.texi:8542 msgid "When the package has a @file{setup.ml} file present at the top-level, it will run @code{ocaml setup.ml -configure}, @code{ocaml setup.ml -build} and @code{ocaml setup.ml -install}. The build system will assume that this file was generated by @uref{http://oasis.forge.ocamlcore.org/, OASIS} and will take care of setting the prefix and enabling tests if they are not disabled. You can pass configure and build flags with the @code{#:configure-flags} and @code{#:build-flags}. The @code{#:test-flags} key can be passed to change the set of flags used to enable tests. The @code{#:use-make?} key can be used to bypass this system in the build and install phases." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8490 +#: guix-git/doc/guix.texi:8547 msgid "When the package has a @file{configure} file, it is assumed that it is a hand-made configure script that requires a different argument format than in the @code{gnu-build-system}. You can add more flags with the @code{#:configure-flags} key." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8494 +#: guix-git/doc/guix.texi:8551 msgid "When the package has a @file{Makefile} file (or @code{#:use-make?} is @code{#t}), it will be used and more flags can be passed to the build and install phases with the @code{#:make-flags} key." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8502 +#: guix-git/doc/guix.texi:8559 msgid "Finally, some packages do not have these files and use a somewhat standard location for its build system. In that case, the build system will run @code{ocaml pkg/pkg.ml} or @code{ocaml pkg/build.ml} and take care of providing the path to the required findlib module. Additional flags can be passed via the @code{#:build-flags} key. Install is taken care of by @command{opam-installer}. In this case, the @code{opam} package must be added to the @code{native-inputs} field of the package definition." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8510 +#: guix-git/doc/guix.texi:8567 msgid "Note that most OCaml packages assume they will be installed in the same directory as OCaml, which is not what we want in guix. In particular, they will install @file{.so} files in their module's directory, which is usually fine because it is in the OCaml compiler directory. In guix though, these libraries cannot be found and we use @env{CAML_LD_LIBRARY_PATH}. This variable points to @file{lib/ocaml/site-lib/stubslibs} and this is where @file{.so} libraries should be installed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8512 +#: guix-git/doc/guix.texi:8569 #, no-wrap msgid "{Scheme Variable} python-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8517 +#: guix-git/doc/guix.texi:8574 msgid "This variable is exported by @code{(guix build-system python)}. It implements the more or less standard build procedure used by Python packages, which consists in running @code{python setup.py build} and then @code{python setup.py install --prefix=/gnu/store/@dots{}}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8522 +#: guix-git/doc/guix.texi:8579 msgid "For packages that install stand-alone Python programs under @code{bin/}, it takes care of wrapping these programs so that their @env{GUIX_PYTHONPATH} environment variable points to all the Python libraries they depend on." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8528 +#: guix-git/doc/guix.texi:8585 msgid "Which Python package is used to perform the build can be specified with the @code{#:python} parameter. This is a useful way to force a package to be built for a specific version of the Python interpreter, which might be necessary if the package is only compatible with a single interpreter version." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8533 +#: guix-git/doc/guix.texi:8590 msgid "By default guix calls @code{setup.py} under control of @code{setuptools}, much like @command{pip} does. Some packages are not compatible with setuptools (and pip), thus you can disable this by setting the @code{#:use-setuptools?} parameter to @code{#f}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8539 +#: guix-git/doc/guix.texi:8596 msgid "If a @code{\"python\"} output is available, the package is installed into it instead of the default @code{\"out\"} output. This is useful for packages that include a Python package as only a part of the software, and thus want to combine the phases of @code{python-build-system} with another build system. Python bindings are a common usecase." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8542 +#: guix-git/doc/guix.texi:8599 #, no-wrap msgid "{Scheme Variable} perl-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8554 +#: guix-git/doc/guix.texi:8611 msgid "This variable is exported by @code{(guix build-system perl)}. It implements the standard build procedure for Perl packages, which either consists in running @code{perl Build.PL --prefix=/gnu/store/@dots{}}, followed by @code{Build} and @code{Build install}; or in running @code{perl Makefile.PL PREFIX=/gnu/store/@dots{}}, followed by @code{make} and @code{make install}, depending on which of @code{Build.PL} or @code{Makefile.PL} is present in the package distribution. Preference is given to the former if both @code{Build.PL} and @code{Makefile.PL} exist in the package distribution. This preference can be reversed by specifying @code{#t} for the @code{#:make-maker?} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8558 +#: guix-git/doc/guix.texi:8615 msgid "The initial @code{perl Makefile.PL} or @code{perl Build.PL} invocation passes flags specified by the @code{#:make-maker-flags} or @code{#:module-build-flags} parameter, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8560 +#: guix-git/doc/guix.texi:8617 msgid "Which Perl package is used can be specified with @code{#:perl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8562 +#: guix-git/doc/guix.texi:8619 #, no-wrap msgid "{Scheme Variable} renpy-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8566 +#: guix-git/doc/guix.texi:8623 msgid "This variable is exported by @code{(guix build-system renpy)}. It implements the more or less standard build procedure used by Ren'py games, which consists of loading @code{#:game} once, thereby creating bytecode for it." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8569 +#: guix-git/doc/guix.texi:8626 msgid "It further creates a wrapper script in @code{bin/} and a desktop entry in @code{share/applications}, both of which can be used to launch the game." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8573 +#: guix-git/doc/guix.texi:8630 msgid "Which Ren'py package is used can be specified with @code{#:renpy}. Games can also be installed in outputs other than ``out'' by using @code{#:output}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8575 +#: guix-git/doc/guix.texi:8632 #, no-wrap msgid "{Scheme Variable} qt-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8578 +#: guix-git/doc/guix.texi:8635 msgid "This variable is exported by @code{(guix build-system qt)}. It is intended for use with applications using Qt or KDE." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8581 +#: guix-git/doc/guix.texi:8638 msgid "This build system adds the following two phases to the ones defined by @code{cmake-build-system}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8583 +#: guix-git/doc/guix.texi:8640 #, no-wrap msgid "check-setup" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8590 +#: guix-git/doc/guix.texi:8647 msgid "The phase @code{check-setup} prepares the environment for running the checks as commonly used by Qt test programs. For now this only sets some environment variables: @code{QT_QPA_PLATFORM=offscreen}, @code{DBUS_FATAL_WARNINGS=0} and @code{CTEST_OUTPUT_ON_FAILURE=1}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8593 +#: guix-git/doc/guix.texi:8650 msgid "This phase is added before the @code{check} phase. It's a separate phase to ease adjusting if necessary." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8594 +#: guix-git/doc/guix.texi:8651 #, no-wrap msgid "qt-wrap" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8600 +#: guix-git/doc/guix.texi:8657 msgid "The phase @code{qt-wrap} searches for Qt5 plugin paths, QML paths and some XDG in the inputs and output. In case some path is found, all programs in the output's @file{bin/}, @file{sbin/}, @file{libexec/} and @file{lib/libexec/} directories are wrapped in scripts defining the necessary environment variables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8606 +#: guix-git/doc/guix.texi:8663 msgid "It is possible to exclude specific package outputs from that wrapping process by listing their names in the @code{#:qt-wrap-excluded-outputs} parameter. This is useful when an output is known not to contain any Qt binaries, and where wrapping would gratuitously add a dependency of that output on Qt, KDE, or such." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8608 +#: guix-git/doc/guix.texi:8665 msgid "This phase is added after the @code{install} phase." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8611 +#: guix-git/doc/guix.texi:8668 #, no-wrap msgid "{Scheme Variable} r-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8619 +#: guix-git/doc/guix.texi:8676 msgid "This variable is exported by @code{(guix build-system r)}. It implements the build procedure used by @uref{https://r-project.org, R} packages, which essentially is little more than running @samp{R CMD INSTALL --library=/gnu/store/@dots{}} in an environment where @env{R_LIBS_SITE} contains the paths to all R package inputs. Tests are run after installation using the R function @code{tools::testInstalledPackage}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8621 +#: guix-git/doc/guix.texi:8678 #, no-wrap msgid "{Scheme Variable} rakudo-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8629 +#: guix-git/doc/guix.texi:8686 msgid "This variable is exported by @code{(guix build-system rakudo)}. It implements the build procedure used by @uref{https://rakudo.org/, Rakudo} for @uref{https://perl6.org/, Perl6} packages. It installs the package to @code{/gnu/store/@dots{}/NAME-VERSION/share/perl6} and installs the binaries, library files and the resources, as well as wrap the files under the @code{bin/} directory. Tests can be skipped by passing @code{#f} to the @code{tests?} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8637 +#: guix-git/doc/guix.texi:8694 msgid "Which rakudo package is used can be specified with @code{rakudo}. Which perl6-tap-harness package used for the tests can be specified with @code{#:prove6} or removed by passing @code{#f} to the @code{with-prove6?} parameter. Which perl6-zef package used for tests and installing can be specified with @code{#:zef} or removed by passing @code{#f} to the @code{with-zef?} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8639 +#: guix-git/doc/guix.texi:8696 #, no-wrap msgid "{Scheme Variable} texlive-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8644 +#: guix-git/doc/guix.texi:8701 msgid "This variable is exported by @code{(guix build-system texlive)}. It is used to build TeX packages in batch mode with a specified engine. The build system sets the @env{TEXINPUTS} variable to find all TeX source files in the inputs." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8653 +#: guix-git/doc/guix.texi:8710 msgid "By default it runs @code{luatex} on all files ending on @code{ins}. A different engine and format can be specified with the @code{#:tex-format} argument. Different build targets can be specified with the @code{#:build-targets} argument, which expects a list of file names. The build system adds only @code{texlive-bin} and @code{texlive-latex-base} (both from @code{(gnu packages tex}) to the inputs. Both can be overridden with the arguments @code{#:texlive-bin} and @code{#:texlive-latex-base}, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8656 +#: guix-git/doc/guix.texi:8713 msgid "The @code{#:tex-directory} parameter tells the build system where to install the built files under the texmf tree." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8658 +#: guix-git/doc/guix.texi:8715 #, no-wrap msgid "{Scheme Variable} ruby-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8662 +#: guix-git/doc/guix.texi:8719 msgid "This variable is exported by @code{(guix build-system ruby)}. It implements the RubyGems build procedure used by Ruby packages, which involves running @code{gem build} followed by @code{gem install}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8670 +#: guix-git/doc/guix.texi:8727 msgid "The @code{source} field of a package that uses this build system typically references a gem archive, since this is the format that Ruby developers use when releasing their software. The build system unpacks the gem archive, potentially patches the source, runs the test suite, repackages the gem, and installs it. Additionally, directories and tarballs may be referenced to allow building unreleased gems from Git or a traditional source release tarball." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8674 +#: guix-git/doc/guix.texi:8731 msgid "Which Ruby package is used can be specified with the @code{#:ruby} parameter. A list of additional flags to be passed to the @command{gem} command can be specified with the @code{#:gem-flags} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8676 +#: guix-git/doc/guix.texi:8733 #, no-wrap msgid "{Scheme Variable} waf-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8682 +#: guix-git/doc/guix.texi:8739 msgid "This variable is exported by @code{(guix build-system waf)}. It implements a build procedure around the @code{waf} script. The common phases---@code{configure}, @code{build}, and @code{install}---are implemented by passing their names as arguments to the @code{waf} script." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8686 +#: guix-git/doc/guix.texi:8743 msgid "The @code{waf} script is executed by the Python interpreter. Which Python package is used to run the script can be specified with the @code{#:python} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8688 +#: guix-git/doc/guix.texi:8745 #, no-wrap msgid "{Scheme Variable} scons-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8694 +#: guix-git/doc/guix.texi:8751 msgid "This variable is exported by @code{(guix build-system scons)}. It implements the build procedure used by the SCons software construction tool. This build system runs @code{scons} to build the package, @code{scons test} to run tests, and then @code{scons install} to install the package." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8701 +#: guix-git/doc/guix.texi:8758 msgid "Additional flags to be passed to @code{scons} can be specified with the @code{#:scons-flags} parameter. The default build and install targets can be overridden with @code{#:build-targets} and @code{#:install-targets} respectively. The version of Python used to run SCons can be specified by selecting the appropriate SCons package with the @code{#:scons} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8703 +#: guix-git/doc/guix.texi:8760 #, no-wrap msgid "{Scheme Variable} haskell-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8717 +#: guix-git/doc/guix.texi:8774 msgid "This variable is exported by @code{(guix build-system haskell)}. It implements the Cabal build procedure used by Haskell packages, which involves running @code{runhaskell Setup.hs configure --prefix=/gnu/store/@dots{}} and @code{runhaskell Setup.hs build}. Instead of installing the package by running @code{runhaskell Setup.hs install}, to avoid trying to register libraries in the read-only compiler store directory, the build system uses @code{runhaskell Setup.hs copy}, followed by @code{runhaskell Setup.hs register}. In addition, the build system generates the package documentation by running @code{runhaskell Setup.hs haddock}, unless @code{#:haddock? #f} is passed. Optional Haddock parameters can be passed with the help of the @code{#:haddock-flags} parameter. If the file @code{Setup.hs} is not found, the build system looks for @code{Setup.lhs} instead." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8720 +#: guix-git/doc/guix.texi:8777 msgid "Which Haskell compiler is used can be specified with the @code{#:haskell} parameter which defaults to @code{ghc}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8722 +#: guix-git/doc/guix.texi:8779 #, no-wrap msgid "{Scheme Variable} dub-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8727 +#: guix-git/doc/guix.texi:8784 msgid "This variable is exported by @code{(guix build-system dub)}. It implements the Dub build procedure used by D packages, which involves running @code{dub build} and @code{dub run}. Installation is done by copying the files manually." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8730 +#: guix-git/doc/guix.texi:8787 msgid "Which D compiler is used can be specified with the @code{#:ldc} parameter which defaults to @code{ldc}." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:8733 +#: guix-git/doc/guix.texi:8790 msgid "emacs-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8733 +#: guix-git/doc/guix.texi:8790 #, no-wrap msgid "{Scheme Variable} emacs-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8737 +#: guix-git/doc/guix.texi:8794 msgid "This variable is exported by @code{(guix build-system emacs)}. It implements an installation procedure similar to the packaging system of Emacs itself (@pxref{Packages,,, emacs, The GNU Emacs Manual})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8743 +#: guix-git/doc/guix.texi:8800 msgid "It first creates the @code{@code{package}-autoloads.el} file, then it byte compiles all Emacs Lisp files. Differently from the Emacs packaging system, the Info documentation files are moved to the standard documentation directory and the @file{dir} file is deleted. The Elisp package files are installed directly under @file{share/emacs/site-lisp}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8745 +#: guix-git/doc/guix.texi:8802 #, no-wrap msgid "{Scheme Variable} font-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8751 +#: guix-git/doc/guix.texi:8808 msgid "This variable is exported by @code{(guix build-system font)}. It implements an installation procedure for font packages where upstream provides pre-compiled TrueType, OpenType, etc.@: font files that merely need to be copied into place. It copies font files to standard locations in the output directory." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8753 +#: guix-git/doc/guix.texi:8810 #, no-wrap msgid "{Scheme Variable} meson-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8757 +#: guix-git/doc/guix.texi:8814 msgid "This variable is exported by @code{(guix build-system meson)}. It implements the build procedure for packages that use @url{https://mesonbuild.com, Meson} as their build system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8761 +#: guix-git/doc/guix.texi:8818 msgid "It adds both Meson and @uref{https://ninja-build.org/, Ninja} to the set of inputs, and they can be changed with the parameters @code{#:meson} and @code{#:ninja} if needed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8764 +#: guix-git/doc/guix.texi:8821 msgid "This build system is an extension of @code{gnu-build-system}, but with the following phases changed to some specific for Meson:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8767 guix-git/doc/guix.texi:8818 -#: guix-git/doc/guix.texi:8886 +#: guix-git/doc/guix.texi:8824 guix-git/doc/guix.texi:8875 +#: guix-git/doc/guix.texi:8947 #, no-wrap msgid "configure" -msgstr "" +msgstr "nastaviť" #. type: table -#: guix-git/doc/guix.texi:8772 +#: guix-git/doc/guix.texi:8829 msgid "The phase runs @code{meson} with the flags specified in @code{#:configure-flags}. The flag @option{--buildtype} is always set to @code{debugoptimized} unless something else is specified in @code{#:build-type}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8776 +#: guix-git/doc/guix.texi:8833 msgid "The phase runs @code{ninja} to build the package in parallel by default, but this can be changed with @code{#:parallel-build?}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8782 +#: guix-git/doc/guix.texi:8839 msgid "The phase runs @samp{meson test} with a base set of options that cannot be overridden. This base set of options can be extended via the @code{#:test-options} argument, for example to select or skip a specific test suite." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8785 +#: guix-git/doc/guix.texi:8842 msgid "The phase runs @code{ninja install} and can not be changed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8788 +#: guix-git/doc/guix.texi:8845 msgid "Apart from that, the build system also adds the following phases:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8791 +#: guix-git/doc/guix.texi:8848 #, no-wrap msgid "fix-runpath" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8798 +#: guix-git/doc/guix.texi:8855 msgid "This phase ensures that all binaries can find the libraries they need. It searches for required libraries in subdirectories of the package being built, and adds those to @code{RUNPATH} where needed. It also removes references to libraries left over from the build phase by @code{meson}, such as test dependencies, that aren't actually required for the program to run." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8802 guix-git/doc/guix.texi:8806 +#: guix-git/doc/guix.texi:8859 guix-git/doc/guix.texi:8863 msgid "This phase is the phase provided by @code{glib-or-gtk-build-system}, and it is not enabled by default. It can be enabled with @code{#:glib-or-gtk?}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8809 +#: guix-git/doc/guix.texi:8866 #, no-wrap msgid "{Scheme Variable} linux-module-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8811 +#: guix-git/doc/guix.texi:8868 msgid "@code{linux-module-build-system} allows building Linux kernel modules." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8815 +#: guix-git/doc/guix.texi:8872 msgid "This build system is an extension of @code{gnu-build-system}, but with the following phases changed:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8821 +#: guix-git/doc/guix.texi:8878 msgid "This phase configures the environment so that the Linux kernel's Makefile can be used to build the external kernel module." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8825 +#: guix-git/doc/guix.texi:8882 msgid "This phase uses the Linux kernel's Makefile in order to build the external kernel module." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8829 +#: guix-git/doc/guix.texi:8886 msgid "This phase uses the Linux kernel's Makefile in order to install the external kernel module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8834 +#: guix-git/doc/guix.texi:8891 msgid "It is possible and useful to specify the Linux kernel to use for building the module (in the @code{arguments} form of a package using the @code{linux-module-build-system}, use the key @code{#:linux} to specify it)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8836 +#: guix-git/doc/guix.texi:8893 #, no-wrap msgid "{Scheme Variable} node-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8841 +#: guix-git/doc/guix.texi:8898 msgid "This variable is exported by @code{(guix build-system node)}. It implements the build procedure used by @uref{https://nodejs.org, Node.js}, which implements an approximation of the @code{npm install} command, followed by an @code{npm test} command." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8845 +#: guix-git/doc/guix.texi:8902 msgid "Which Node.js package is used to interpret the @code{npm} commands can be specified with the @code{#:node} parameter which defaults to @code{node}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8851 +#: guix-git/doc/guix.texi:8908 msgid "Lastly, for packages that do not need anything as sophisticated, a ``trivial'' build system is provided. It is trivial in the sense that it provides basically no support: it does not pull any implicit inputs, and does not have a notion of build phases." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8852 +#: guix-git/doc/guix.texi:8909 #, no-wrap msgid "{Scheme Variable} trivial-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8854 +#: guix-git/doc/guix.texi:8911 msgid "This variable is exported by @code{(guix build-system trivial)}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8859 +#: guix-git/doc/guix.texi:8916 msgid "This build system requires a @code{#:builder} argument. This argument must be a Scheme expression that builds the package output(s)---as with @code{build-expression->derivation} (@pxref{Derivations, @code{build-expression->derivation}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8864 +#: guix-git/doc/guix.texi:8921 #, no-wrap msgid "build phases, for packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8870 +#: guix-git/doc/guix.texi:8927 msgid "Almost all package build systems implement a notion @dfn{build phases}: a sequence of actions that the build system executes, when you build the package, leading to the installed byproducts in the store. A notable exception is the ``bare-bones'' @code{trivial-build-system} (@pxref{Build Systems})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8874 +#: guix-git/doc/guix.texi:8931 msgid "As discussed in the previous section, those build systems provide a standard list of phases. For @code{gnu-build-system}, the main build phases are the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8876 +#: guix-git/doc/guix.texi:8933 +#, no-wrap +msgid "set-paths" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:8936 +msgid "Define search path environment variables for all the input packages, including @env{PATH} (@pxref{Search Paths})." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:8937 #, no-wrap msgid "unpack" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8880 +#: guix-git/doc/guix.texi:8941 msgid "Unpack the source tarball, and change the current directory to the extracted source tree. If the source is actually a directory, copy it to the build tree, and enter that directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8881 +#: guix-git/doc/guix.texi:8942 #, no-wrap msgid "patch-source-shebangs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8885 +#: guix-git/doc/guix.texi:8946 msgid "Patch shebangs encountered in source files so they refer to the right store file names. For instance, this changes @code{#!/bin/sh} to @code{#!/gnu/store/@dots{}-bash-4.3/bin/sh}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8890 +#: guix-git/doc/guix.texi:8951 msgid "Run the @file{configure} script with a number of default options, such as @option{--prefix=/gnu/store/@dots{}}, as well as the options specified by the @code{#:configure-flags} argument." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8895 +#: guix-git/doc/guix.texi:8956 msgid "Run @code{make} with the list of flags specified with @code{#:make-flags}. If the @code{#:parallel-build?} argument is true (the default), build with @code{make -j}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8901 +#: guix-git/doc/guix.texi:8962 msgid "Run @code{make check}, or some other target specified with @code{#:test-target}, unless @code{#:tests? #f} is passed. If the @code{#:parallel-tests?} argument is true (the default), run @code{make check -j}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8904 +#: guix-git/doc/guix.texi:8965 msgid "Run @code{make install} with the flags listed in @code{#:make-flags}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8905 +#: guix-git/doc/guix.texi:8966 #, no-wrap msgid "patch-shebangs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8907 +#: guix-git/doc/guix.texi:8968 msgid "Patch shebangs on the installed executable files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8908 +#: guix-git/doc/guix.texi:8969 #, no-wrap msgid "strip" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8912 +#: guix-git/doc/guix.texi:8973 msgid "Strip debugging symbols from ELF files (unless @code{#:strip-binaries?} is false), copying them to the @code{debug} output when available (@pxref{Installing Debugging Files})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8921 +#: guix-git/doc/guix.texi:8982 msgid "Other build systems have similar phases, with some variations. For example, @code{cmake-build-system} has same-named phases but its @code{configure} phases runs @code{cmake} instead of @code{./configure}. Others, such as @code{python-build-system}, have a wholly different list of standard phases. All this code runs on the @dfn{build side}: it is evaluated when you actually build the package, in a dedicated build process spawned by the build daemon (@pxref{Invoking guix-daemon})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8928 +#: guix-git/doc/guix.texi:8989 msgid "Build phases are represented as association lists or ``alists'' (@pxref{Association Lists,,, guile, GNU Guile Reference Manual}) where each key is a symbol for the name of the phase and the associated value is a procedure that accepts an arbitrary number of arguments. By convention, those procedures receive information about the build in the form of @dfn{keyword parameters}, which they can use or ignore." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:8929 +#: guix-git/doc/guix.texi:8990 #, no-wrap msgid "%standard-phases" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8935 +#: guix-git/doc/guix.texi:8996 msgid "For example, here is how @code{(guix build gnu-build-system)} defines @code{%standard-phases}, the variable holding its alist of build phases@footnote{We present a simplified view of those build phases, but do take a look at @code{(guix build gnu-build-system)} to see all the details!}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8938 +#: guix-git/doc/guix.texi:8999 #, no-wrap msgid "" ";; The build phases of 'gnu-build-system'.\n" @@ -16976,7 +17083,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8942 +#: guix-git/doc/guix.texi:9003 #, no-wrap msgid "" "(define* (unpack #:key source #:allow-other-keys)\n" @@ -16986,7 +17093,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8948 +#: guix-git/doc/guix.texi:9009 #, no-wrap msgid "" "(define* (configure #:key outputs #:allow-other-keys)\n" @@ -16998,7 +17105,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8952 +#: guix-git/doc/guix.texi:9013 #, no-wrap msgid "" "(define* (build #:allow-other-keys)\n" @@ -17008,7 +17115,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8959 +#: guix-git/doc/guix.texi:9020 #, no-wrap msgid "" "(define* (check #:key (test-target \"check\") (tests? #true)\n" @@ -17021,7 +17128,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8963 +#: guix-git/doc/guix.texi:9024 #, no-wrap msgid "" "(define* (install #:allow-other-keys)\n" @@ -17031,7 +17138,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8972 +#: guix-git/doc/guix.texi:9033 #, no-wrap msgid "" "(define %standard-phases\n" @@ -17045,38 +17152,38 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8982 +#: guix-git/doc/guix.texi:9043 msgid "This shows how @code{%standard-phases} is defined as a list of symbol/procedure pairs (@pxref{Pairs,,, guile, GNU Guile Reference Manual}). The first pair associates the @code{unpack} procedure with the @code{unpack} symbol---a name; the second pair defines the @code{configure} phase similarly, and so on. When building a package that uses @code{gnu-build-system} with its default list of phases, those phases are executed sequentially. You can see the name of each phase started and completed in the build log of packages that you build." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8988 +#: guix-git/doc/guix.texi:9049 msgid "Let's now look at the procedures themselves. Each one is defined with @code{define*}: @code{#:key} lists keyword parameters the procedure accepts, possibly with a default value, and @code{#:allow-other-keys} specifies that other keyword parameters are ignored (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9004 +#: guix-git/doc/guix.texi:9065 msgid "The @code{unpack} procedure honors the @code{source} parameter, which the build system uses to pass the file name of the source tarball (or version control checkout), and it ignores other parameters. The @code{configure} phase only cares about the @code{outputs} parameter, an alist mapping package output names to their store file name (@pxref{Packages with Multiple Outputs}). It extracts the file name of for @code{out}, the default output, and passes it to @command{./configure} as the installation prefix, meaning that @command{make install} will eventually copy all the files in that directory (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards}). @code{build} and @code{install} ignore all their arguments. @code{check} honors the @code{test-target} argument, which specifies the name of the Makefile target to run tests; it prints a message and skips tests when @code{tests?} is false." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9005 +#: guix-git/doc/guix.texi:9066 #, no-wrap msgid "build phases, customizing" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9014 +#: guix-git/doc/guix.texi:9075 msgid "The list of phases used for a particular package can be changed with the @code{#:phases} parameter of the build system. Changing the set of build phases boils down to building a new alist of phases based on the @code{%standard-phases} alist described above. This can be done with standard alist procedures such as @code{alist-delete} (@pxref{SRFI-1 Association Lists,,, guile, GNU Guile Reference Manual}); however, it is more convenient to do so with @code{modify-phases} (@pxref{Build Utilities, @code{modify-phases}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9019 +#: guix-git/doc/guix.texi:9080 msgid "Here is an example of a package definition that removes the @code{configure} phase of @code{%standard-phases} and inserts a new phase before the @code{build} phase, called @code{set-prefix-in-makefile}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9039 +#: guix-git/doc/guix.texi:9100 #, no-wrap msgid "" "(define-public example\n" @@ -17100,44 +17207,44 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9045 +#: guix-git/doc/guix.texi:9106 msgid "The new phase that is inserted is written as an anonymous procedure, introduced with @code{lambda*}; it honors the @code{outputs} parameter we have seen before. @xref{Build Utilities}, for more about the helpers used by this phase, and for more examples of @code{modify-phases}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9046 guix-git/doc/guix.texi:10046 +#: guix-git/doc/guix.texi:9107 guix-git/doc/guix.texi:10360 #, no-wrap msgid "code staging" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9047 guix-git/doc/guix.texi:10047 +#: guix-git/doc/guix.texi:9108 guix-git/doc/guix.texi:10361 #, no-wrap msgid "staging, of code" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9054 +#: guix-git/doc/guix.texi:9115 msgid "Keep in mind that build phases are code evaluated at the time the package is actually built. This explains why the whole @code{modify-phases} expression above is quoted (it comes after the @code{'} or apostrophe): it is @dfn{staged} for later execution. @xref{G-Expressions}, for an explanation of code staging and the @dfn{code strata} involved." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9064 +#: guix-git/doc/guix.texi:9125 msgid "As soon as you start writing non-trivial package definitions (@pxref{Defining Packages}) or other build actions (@pxref{G-Expressions}), you will likely start looking for helpers for ``shell-like'' actions---creating directories, copying and deleting files recursively, manipulating build phases, and so on. The @code{(guix build utils)} module provides such utility procedures." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9068 +#: guix-git/doc/guix.texi:9129 msgid "Most build systems load @code{(guix build utils)} (@pxref{Build Systems}). Thus, when writing custom build phases for your package definitions, you can usually assume those procedures are in scope." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9073 +#: guix-git/doc/guix.texi:9134 msgid "When writing G-expressions, you can import @code{(guix build utils)} on the ``build side'' using @code{with-imported-modules} and then put it in scope with the @code{use-modules} form (@pxref{Using Guile Modules,,, guile, GNU Guile Reference Manual}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9080 +#: guix-git/doc/guix.texi:9141 #, no-wrap msgid "" "(with-imported-modules '((guix build utils)) ;import it\n" @@ -17149,7 +17256,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9083 +#: guix-git/doc/guix.texi:9144 #, no-wrap msgid "" " ;; Happily use its 'mkdir-p' procedure.\n" @@ -17157,238 +17264,238 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9087 +#: guix-git/doc/guix.texi:9148 msgid "The remainder of this section is the reference for most of the utility procedures provided by @code{(guix build utils)}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9090 +#: guix-git/doc/guix.texi:9151 #, no-wrap msgid "Dealing with Store File Names" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9093 +#: guix-git/doc/guix.texi:9154 msgid "This section documents procedures that deal with store file names." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9094 +#: guix-git/doc/guix.texi:9155 #, no-wrap msgid "{Scheme Procedure} %store-directory" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9096 +#: guix-git/doc/guix.texi:9157 msgid "Return the directory name of the store." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9098 +#: guix-git/doc/guix.texi:9159 #, no-wrap msgid "{Scheme Procedure} store-file-name? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9100 +#: guix-git/doc/guix.texi:9161 msgid "Return true if @var{file} is in the store." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9102 +#: guix-git/doc/guix.texi:9163 #, no-wrap msgid "{Scheme Procedure} strip-store-file-name @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9105 +#: guix-git/doc/guix.texi:9166 msgid "Strip the @file{/gnu/store} and hash from @var{file}, a store file name. The result is typically a @code{\"@var{package}-@var{version}\"} string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9107 +#: guix-git/doc/guix.texi:9168 #, no-wrap msgid "{Scheme Procedure} package-name->name+version @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9112 +#: guix-git/doc/guix.texi:9173 msgid "Given @var{name}, a package name like @code{\"foo-0.9.1b\"}, return two values: @code{\"foo\"} and @code{\"0.9.1b\"}. When the version part is unavailable, @var{name} and @code{#f} are returned. The first hyphen followed by a digit is considered to introduce the version part." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9114 +#: guix-git/doc/guix.texi:9175 #, no-wrap msgid "File Types" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9117 +#: guix-git/doc/guix.texi:9178 msgid "The procedures below deal with files and file types." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9118 +#: guix-git/doc/guix.texi:9179 #, no-wrap msgid "{Scheme Procedure} directory-exists? @var{dir}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9120 +#: guix-git/doc/guix.texi:9181 msgid "Return @code{#t} if @var{dir} exists and is a directory." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9122 +#: guix-git/doc/guix.texi:9183 #, no-wrap msgid "{Scheme Procedure} executable-file? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9124 +#: guix-git/doc/guix.texi:9185 msgid "Return @code{#t} if @var{file} exists and is executable." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9126 +#: guix-git/doc/guix.texi:9187 #, no-wrap msgid "{Scheme Procedure} symbolic-link? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9128 +#: guix-git/doc/guix.texi:9189 msgid "Return @code{#t} if @var{file} is a symbolic link (aka. a ``symlink'')." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9130 +#: guix-git/doc/guix.texi:9191 #, no-wrap msgid "{Scheme Procedure} elf-file? @var{file}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9131 +#: guix-git/doc/guix.texi:9192 #, no-wrap msgid "{Scheme Procedure} ar-file? @var{file}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9132 +#: guix-git/doc/guix.texi:9193 #, no-wrap msgid "{Scheme Procedure} gzip-file? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9135 +#: guix-git/doc/guix.texi:9196 msgid "Return @code{#t} if @var{file} is, respectively, an ELF file, an @code{ar} archive (such as a @file{.a} static library), or a gzip file." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9137 +#: guix-git/doc/guix.texi:9198 #, no-wrap msgid "{Scheme Procedure} reset-gzip-timestamp @var{file} [#:keep-mtime? #t]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9141 +#: guix-git/doc/guix.texi:9202 msgid "If @var{file} is a gzip file, reset its embedded timestamp (as with @command{gzip --no-name}) and return true. Otherwise return @code{#f}. When @var{keep-mtime?} is true, preserve @var{file}'s modification time." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9143 +#: guix-git/doc/guix.texi:9204 #, no-wrap msgid "File Manipulation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9150 +#: guix-git/doc/guix.texi:9211 msgid "The following procedures and macros help create, modify, and delete files. They provide functionality comparable to common shell utilities such as @command{mkdir -p}, @command{cp -r}, @command{rm -r}, and @command{sed}. They complement Guile's extensive, but low-level, file system interface (@pxref{POSIX,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9151 +#: guix-git/doc/guix.texi:9212 #, no-wrap msgid "{Scheme Syntax} with-directory-excursion @var{directory} @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9153 +#: guix-git/doc/guix.texi:9214 msgid "Run @var{body} with @var{directory} as the process's current directory." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9160 +#: guix-git/doc/guix.texi:9221 msgid "Essentially, this macro changes the current directory to @var{directory} before evaluating @var{body}, using @code{chdir} (@pxref{Processes,,, guile, GNU Guile Reference Manual}). It changes back to the initial directory when the dynamic extent of @var{body} is left, be it @i{via} normal procedure return or @i{via} a non-local exit such as an exception." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9162 +#: guix-git/doc/guix.texi:9223 #, no-wrap msgid "{Scheme Procedure} mkdir-p @var{dir}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9164 +#: guix-git/doc/guix.texi:9225 msgid "Create directory @var{dir} and all its ancestors." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9166 +#: guix-git/doc/guix.texi:9227 #, no-wrap msgid "{Scheme Procedure} install-file @var{file} @var{directory}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9169 +#: guix-git/doc/guix.texi:9230 msgid "Create @var{directory} if it does not exist and copy @var{file} in there under the same name." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9171 +#: guix-git/doc/guix.texi:9232 #, no-wrap msgid "{Scheme Procedure} make-file-writable @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9173 +#: guix-git/doc/guix.texi:9234 msgid "Make @var{file} writable for its owner." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9175 +#: guix-git/doc/guix.texi:9236 #, no-wrap msgid "{Scheme Procedure} copy-recursively @var{source} @var{destination} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9184 +#: guix-git/doc/guix.texi:9245 msgid "[#:log (current-output-port)] [#:follow-symlinks? #f] @ [#:copy-file copy-file] [#:keep-mtime? #f] [#:keep-permissions? #t] Copy @var{source} directory to @var{destination}. Follow symlinks if @var{follow-symlinks?} is true; otherwise, just preserve them. Call @var{copy-file} to copy regular files. When @var{keep-mtime?} is true, keep the modification time of the files in @var{source} on those of @var{destination}. When @var{keep-permissions?} is true, preserve file permissions. Write verbose output to the @var{log} port." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9186 +#: guix-git/doc/guix.texi:9247 #, no-wrap msgid "{Scheme Procedure} delete-file-recursively @var{dir} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9191 +#: guix-git/doc/guix.texi:9252 msgid "[#:follow-mounts? #f] Delete @var{dir} recursively, like @command{rm -rf}, without following symlinks. Don't follow mount points either, unless @var{follow-mounts?} is true. Report but ignore errors." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9193 +#: guix-git/doc/guix.texi:9254 #, no-wrap msgid "{Scheme Syntax} substitute* @var{file} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9198 +#: guix-git/doc/guix.texi:9259 msgid "((@var{regexp} @var{match-var}@dots{}) @var{body}@dots{}) @dots{} Substitute @var{regexp} in @var{file} by the string returned by @var{body}. @var{body} is evaluated with each @var{match-var} bound to the corresponding positional regexp sub-expression. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9205 +#: guix-git/doc/guix.texi:9266 #, no-wrap msgid "" "(substitute* file\n" @@ -17399,71 +17506,71 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9211 +#: guix-git/doc/guix.texi:9272 msgid "Here, anytime a line of @var{file} contains @code{hello}, it is replaced by @code{good morning}. Anytime a line of @var{file} matches the second regexp, @code{all} is bound to the complete match, @code{letters} is bound to the first sub-expression, and @code{end} is bound to the last one." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9214 +#: guix-git/doc/guix.texi:9275 msgid "When one of the @var{match-var} is @code{_}, no variable is bound to the corresponding match substring." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9217 +#: guix-git/doc/guix.texi:9278 msgid "Alternatively, @var{file} may be a list of file names, in which case they are all subject to the substitutions." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9220 +#: guix-git/doc/guix.texi:9281 msgid "Be careful about using @code{$} to match the end of a line; by itself it won't match the terminating newline of a line." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9222 +#: guix-git/doc/guix.texi:9283 #, no-wrap msgid "File Search" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9224 +#: guix-git/doc/guix.texi:9285 #, no-wrap msgid "file, searching" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9226 +#: guix-git/doc/guix.texi:9287 msgid "This section documents procedures to search and filter files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9227 +#: guix-git/doc/guix.texi:9288 #, no-wrap msgid "{Scheme Procedure} file-name-predicate @var{regexp}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9230 +#: guix-git/doc/guix.texi:9291 msgid "Return a predicate that returns true when passed a file name whose base name matches @var{regexp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9232 +#: guix-git/doc/guix.texi:9293 #, no-wrap msgid "{Scheme Procedure} find-files @var{dir} [@var{pred}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9243 +#: guix-git/doc/guix.texi:9304 msgid "[#:stat lstat] [#:directories? #f] [#:fail-on-error? #f] Return the lexicographically sorted list of files under @var{dir} for which @var{pred} returns true. @var{pred} is passed two arguments: the absolute file name, and its stat buffer; the default predicate always returns true. @var{pred} can also be a regular expression, in which case it is equivalent to @code{(file-name-predicate @var{pred})}. @var{stat} is used to obtain file information; using @code{lstat} means that symlinks are not followed. If @var{directories?} is true, then directories will also be included. If @var{fail-on-error?} is true, raise an exception upon error." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9247 +#: guix-git/doc/guix.texi:9308 msgid "Here are a few examples where we assume that the current directory is the root of the Guix source tree:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9252 +#: guix-git/doc/guix.texi:9313 #, no-wrap msgid "" ";; List all the regular files in the current directory.\n" @@ -17473,7 +17580,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9256 +#: guix-git/doc/guix.texi:9317 #, no-wrap msgid "" ";; List all the .scm files under gnu/services.\n" @@ -17483,7 +17590,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9260 +#: guix-git/doc/guix.texi:9321 #, no-wrap msgid "" ";; List ar files in the current directory.\n" @@ -17492,45 +17599,45 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9262 +#: guix-git/doc/guix.texi:9323 #, no-wrap msgid "{Scheme Procedure} which @var{program}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9265 +#: guix-git/doc/guix.texi:9326 msgid "Return the complete file name for @var{program} as found in @code{$PATH}, or @code{#f} if @var{program} could not be found." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9267 +#: guix-git/doc/guix.texi:9328 #, no-wrap msgid "{Scheme Procedure} search-input-file @var{inputs} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9268 +#: guix-git/doc/guix.texi:9329 #, no-wrap msgid "{Scheme Procedure} search-input-directory @var{inputs} @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9273 +#: guix-git/doc/guix.texi:9334 msgid "Return the complete file name for @var{name} as found in @var{inputs}; @code{search-input-file} searches for a regular file and @code{search-input-directory} searches for a directory. If @var{name} could not be found, an exception is raised." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9277 +#: guix-git/doc/guix.texi:9338 msgid "Here, @var{inputs} must be an association list like @code{inputs} and @code{native-inputs} as available to build phases (@pxref{Build Phases})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9281 +#: guix-git/doc/guix.texi:9342 msgid "Here is a (simplified) example of how @code{search-input-file} is used in a build phase of the @code{wireguard-tools} package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9290 +#: guix-git/doc/guix.texi:9351 #, no-wrap msgid "" "(add-after 'install 'wrap-wg-quick\n" @@ -17542,35 +17649,214 @@ msgid "" " `(\"PATH\" \":\" prefix ,(list coreutils))))))\n" msgstr "" +#. type: subsection +#: guix-git/doc/guix.texi:9353 +#, no-wrap +msgid "Program Invocation" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:9355 +#, no-wrap +msgid "program invocation, from Scheme" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:9356 +#, no-wrap +msgid "invoking programs, from Scheme" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9360 +msgid "You'll find handy procedures to spawn processes in this module, essentially convenient wrappers around Guile's @code{system*} (@pxref{Processes, @code{system*},, guile, GNU Guile Reference Manual})." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9361 +#, no-wrap +msgid "{Scheme Procedure} invoke @var{program} @var{args}@dots{}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9365 +msgid "Invoke @var{program} with the given @var{args}. Raise an @code{&invoke-error} exception if the exit code is non-zero; otherwise return @code{#t}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9369 +msgid "The advantage compared to @code{system*} is that you do not need to check the return value. This reduces boilerplate in shell-script-like snippets for instance in package build phases." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9371 +#, no-wrap +msgid "{Scheme Procedure} invoke-error? @var{c}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9373 +msgid "Return true if @var{c} is an @code{&invoke-error} condition." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9375 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-program @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9376 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-arguments @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9377 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-exit-status @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9378 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-term-signal @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9379 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-stop-signal @var{c}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9381 +msgid "Access specific fields of @var{c}, an @code{&invoke-error} condition." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9383 +#, no-wrap +msgid "{Scheme Procedure} report-invoke-error @var{c} [@var{port}]" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9386 +msgid "Report to @var{port} (by default the current error port) about @var{c}, an @code{&invoke-error} condition, in a human-friendly way." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9388 +msgid "Typical usage would look like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9392 +#, no-wrap +msgid "" +"(use-modules (srfi srfi-34) ;for 'guard'\n" +" (guix build utils))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9396 +#, no-wrap +msgid "" +"(guard (c ((invoke-error? c)\n" +" (report-invoke-error c)))\n" +" (invoke \"date\" \"--imaginary-option\"))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9398 +#, no-wrap +msgid "@print{} command \"date\" \"--imaginary-option\" failed with status 1\n" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9401 +#, no-wrap +msgid "{Scheme Procedure} invoke/quiet @var{program} @var{args}@dots{}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9407 +msgid "Invoke @var{program} with @var{args} and capture @var{program}'s standard output and standard error. If @var{program} succeeds, print nothing and return the unspecified value; otherwise, raise a @code{&message} error condition that includes the status code and the output of @var{program}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9409 +msgid "Here's an example:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9414 +#, no-wrap +msgid "" +"(use-modules (srfi srfi-34) ;for 'guard'\n" +" (srfi srfi-35) ;for 'message-condition?'\n" +" (guix build utils))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9419 +#, no-wrap +msgid "" +"(guard (c ((message-condition? c)\n" +" (display (condition-message c))))\n" +" (invoke/quiet \"date\") ;all is fine\n" +" (invoke/quiet \"date\" \"--imaginary-option\"))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9421 +#, no-wrap +msgid "" +"@print{} 'date --imaginary-option' exited with status 1; output follows:\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9424 +#, no-wrap +msgid "" +" date: unrecognized option '--imaginary-option'\n" +" Try 'date --help' for more information.\n" +msgstr "" + #. type: Plain text -#: guix-git/doc/guix.texi:9301 +#: guix-git/doc/guix.texi:9436 msgid "The @code{(guix build utils)} also contains tools to manipulate build phases as used by build systems (@pxref{Build Systems}). Build phases are represented as association lists or ``alists'' (@pxref{Association Lists,,, guile, GNU Guile Reference Manual}) where each key is a symbol naming the phase and the associated value is a procedure (@pxref{Build Phases})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9305 +#: guix-git/doc/guix.texi:9440 msgid "Guile core and the @code{(srfi srfi-1)} module both provide tools to manipulate alists. The @code{(guix build utils)} module complements those with tools written with build phases in mind." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9306 +#: guix-git/doc/guix.texi:9441 #, no-wrap msgid "build phases, modifying" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9307 +#: guix-git/doc/guix.texi:9442 #, no-wrap msgid "{Scheme Syntax} modify-phases @var{phases} @var{clause}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9310 +#: guix-git/doc/guix.texi:9445 msgid "Modify @var{phases} sequentially as per each @var{clause}, which may have one of the following forms:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9316 +#: guix-git/doc/guix.texi:9451 #, no-wrap msgid "" "(delete @var{old-phase-name})\n" @@ -17580,17 +17866,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9320 +#: guix-git/doc/guix.texi:9455 msgid "Where every @var{phase-name} above is an expression evaluating to a symbol, and @var{new-phase} an expression evaluating to a procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9331 +#: guix-git/doc/guix.texi:9466 msgid "The example below is taken from the definition of the @code{grep} package. It adds a phase to run after the @code{install} phase, called @code{fix-egrep-and-fgrep}. That phase is a procedure (@code{lambda*} is for anonymous procedures) that takes a @code{#:outputs} keyword argument and ignores extra keyword arguments (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual}, for more on @code{lambda*} and optional and keyword arguments.) The phase uses @code{substitute*} to modify the installed @file{egrep} and @file{fgrep} scripts so that they refer to @code{grep} by its absolute file name:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9345 +#: guix-git/doc/guix.texi:9480 #, no-wrap msgid "" "(modify-phases %standard-phases\n" @@ -17608,12 +17894,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9352 +#: guix-git/doc/guix.texi:9487 msgid "In the example below, phases are modified in two ways: the standard @code{configure} phase is deleted, presumably because the package does not have a @file{configure} script or anything similar, and the default @code{install} phase is replaced by one that manually copies the executable files to be installed:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9365 +#: guix-git/doc/guix.texi:9500 #, no-wrap msgid "" "(modify-phases %standard-phases\n" @@ -17630,377 +17916,607 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9373 +#: guix-git/doc/guix.texi:9507 +#, fuzzy, no-wrap +#| msgid "search" +msgid "search path" +msgstr "vyhľadávanie" + +#. type: Plain text +#: guix-git/doc/guix.texi:9514 +msgid "Many programs and libraries look for input data in a @dfn{search path}, a list of directories: shells like Bash look for executables in the command search path, a C compiler looks for @file{.h} files in its header search path, the Python interpreter looks for @file{.py} files in its search path, the spell checker has a search path for dictionaries, and so on." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9522 +msgid "Search paths can usually be defined or overridden @i{via} environment variables (@pxref{Environment Variables,,, libc, The GNU C Library Reference Manual}). For example, the search paths mentioned above can be changed by defining the @env{PATH}, @env{C_INCLUDE_PATH}, @env{PYTHONPATH} (or @env{GUIX_PYTHONPATH}), and @env{DICPATH} environment variables---you know, all these something-PATH variables that you need to get right or things ``won't be found''." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9532 +msgid "You may have noticed from the command line that Guix ``knows'' which search path environment variables should be defined, and how. When you install packages in your default profile, the file @file{~/.guix-profile/etc/profile} is created, which you can ``source'' from the shell to set those variables. Likewise, if you ask @command{guix shell} to create an environment containing Python and NumPy, a Python library, and if you pass it the @option{--search-paths} option, it will tell you about @env{PATH} and @env{GUIX_PYTHONPATH} (@pxref{Invoking guix shell}):" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9537 +#, no-wrap +msgid "" +"$ guix shell python python-numpy --pure --search-paths\n" +"export PATH=\"/gnu/store/@dots{}-profile/bin\"\n" +"export GUIX_PYTHONPATH=\"/gnu/store/@dots{}-profile/lib/python3.9/site-packages\"\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9541 +msgid "When you omit @option{--search-paths}, it defines these environment variables right away, such that Python can readily find NumPy:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9550 +#, no-wrap +msgid "" +"$ guix shell python python-numpy -- python3\n" +"Python 3.9.6 (default, Jan 1 1970, 00:00:01)\n" +"[GCC 10.3.0] on linux\n" +"Type \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n" +">>> import numpy\n" +">>> numpy.version.version\n" +"'1.20.3'\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9555 +msgid "For this to work, the definition of the @code{python} package @emph{declares} the search path it cares about and its associated environment variable, @env{GUIX_PYTHONPATH}. It looks like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9565 +#, no-wrap +msgid "" +"(package\n" +" (name \"python\")\n" +" (version \"3.9.9\")\n" +" ;; some fields omitted...\n" +" (native-search-paths\n" +" (list (search-path-specification\n" +" (variable \"GUIX_PYTHONPATH\")\n" +" (files (list \"lib/python/3.9/site-packages\"))))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9580 +msgid "What this @code{native-search-paths} field says is that, when the @code{python} package is used, the @env{GUIX_PYTHONPATH} environment variable must be defined to include all the @file{lib/python/3.9/site-packages} sub-directories encountered in its environment. (The @code{native-} bit means that, if we are in a cross-compilation environment, only native inputs may be added to the search path; @pxref{package Reference, @code{search-paths}}.) In the NumPy example above, the profile where @code{python} appears contains exactly one such sub-directory, and @env{GUIX_PYTHONPATH} is set to that. When there are several @file{lib/python/3.9/site-packages}---this is the case in package build environments---they are all added to @env{GUIX_PYTHONPATH}, separated by colons (@code{:})." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9587 +msgid "Notice that @env{GUIX_PYTHONPATH} is specified as part of the definition of the @code{python} package, and @emph{not} as part of that of @code{python-numpy}. This is because this environment variable ``belongs'' to Python, not NumPy: Python actually reads the value of that variable and honors it." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9591 +msgid "Corollary: if you create a profile that does not contain @code{python}, @code{GUIX_PYTHONPATH} will @emph{not} be defined, even if it contains packages that provide @file{.py} files:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9595 +#, no-wrap +msgid "" +"$ guix shell python-numpy --search-paths --pure\n" +"export PATH=\"/gnu/store/@dots{}-profile/bin\"\n" +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9599 +msgid "This makes a lot of sense if we look at this profile in isolation: no software in this profile would read @env{GUIX_PYTHONPATH}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9609 +msgid "Of course, there are many variations on that theme: some packages honor more than one search path, some use separators other than colon, some accumulate several directories in their search path, and so on. A more complex example is the search path of libxml2: the value of the @env{XML_CATALOG_FILES} environment variable is space-separated, it must contain a list of @file{catalog.xml} files (not directories), which are to be found in @file{xml} sub-directories---nothing less. The search path specification looks like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9621 +#, no-wrap +msgid "" +"(package\n" +" (name \"libxml2\")\n" +" ;; some fields omitted\n" +" (native-search-paths\n" +" (list (search-path-specification\n" +" (variable \"XML_CATALOG_FILES\")\n" +" (separator \" \")\n" +" (files '(\"xml\"))\n" +" (file-pattern \"^catalog\\\\.xml$\")\n" +" (file-type 'regular)))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9624 +msgid "Worry not, search path specifications are usually not this tricky." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9628 +msgid "The @code{(guix search-paths)} module defines the data type of search path specifications and a number of helper procedures. Below is the reference of search path specifications." +msgstr "" + +#. type: deftp +#: guix-git/doc/guix.texi:9629 +#, fuzzy, no-wrap +#| msgid "{Data Type} home-bash-configuration" +msgid "{Data Type} search-path-specification" +msgstr "{Druh údajov} home-bash-configuration" + +#. type: deftp +#: guix-git/doc/guix.texi:9631 +msgid "The data type for search path specifications." +msgstr "" + +#. type: code{#1} +#: guix-git/doc/guix.texi:9633 +#, no-wrap +msgid "variable" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9635 +msgid "The name of the environment variable for this search path (a string)." +msgstr "" + +#. type: code{#1} +#: guix-git/doc/guix.texi:9636 guix-git/doc/guix.texi:17482 +#, no-wrap +msgid "files" +msgstr "files" + +#. type: table +#: guix-git/doc/guix.texi:9639 +msgid "The list of sub-directories (strings) that should be added to the search path." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9640 +#, no-wrap +msgid "@code{separator} (default: @code{\":\"})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9642 +msgid "The string used to separate search path components." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9650 +msgid "As a special case, a @code{separator} value of @code{#f} specifies a ``single-component search path''---in other words, a search path that cannot contain more than one element. This is useful in some cases, such as the @code{SSL_CERT_DIR} variable (honored by OpenSSL, cURL, and a few other packages) or the @code{ASPELL_DICT_DIR} variable (honored by the GNU Aspell spell checker), both of which must point to a single directory." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9651 +#, no-wrap +msgid "@code{file-type} (default: @code{'directory})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9655 +msgid "The type of file being matched---@code{'directory} or @code{'regular}, though it can be any symbol returned by @code{stat:type} (@pxref{File System, @code{stat},, guile, GNU Guile Reference Manual})." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9658 +msgid "In the libxml2 example above, we would match regular files; in the Python example, we would match directories." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9659 +#, no-wrap +msgid "@code{file-pattern} (default: @code{#f})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9663 +msgid "This must be either @code{#f} or a regular expression specifying files to be matched @emph{within} the sub-directories specified by the @code{files} field." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9665 +msgid "Again, the libxml2 example shows a situation where this is needed." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9671 +msgid "How do you turn search path specifications on one hand and a bunch of directories on the other hand in a set of environment variable definitions? That's the job of @code{evaluate-search-paths}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9672 +#, no-wrap +msgid "{Scheme Procedure} evaluate-search-paths @var{search-paths} @" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9678 +msgid "@var{directories} [@var{getenv}] Evaluate @var{search-paths}, a list of search-path specifications, for @var{directories}, a list of directory names, and return a list of specification/value pairs. Use @var{getenv} to determine the current settings and report only settings not already effective." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9682 +msgid "The @code{(guix profiles)} provides a higher-level helper procedure, @code{load-profile}, that sets the environment variables of a profile." +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:9687 #, no-wrap msgid "store items" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9374 +#: guix-git/doc/guix.texi:9688 #, no-wrap msgid "store paths" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9385 +#: guix-git/doc/guix.texi:9699 msgid "Conceptually, the @dfn{store} is the place where derivations that have been built successfully are stored---by default, @file{/gnu/store}. Sub-directories in the store are referred to as @dfn{store items} or sometimes @dfn{store paths}. The store has an associated database that contains information such as the store paths referred to by each store path, and the list of @emph{valid} store items---results of successful builds. This database resides in @file{@var{localstatedir}/guix/db}, where @var{localstatedir} is the state directory specified @i{via} @option{--localstatedir} at configure time, usually @file{/var}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9390 +#: guix-git/doc/guix.texi:9704 msgid "The store is @emph{always} accessed by the daemon on behalf of its clients (@pxref{Invoking guix-daemon}). To manipulate the store, clients connect to the daemon over a Unix-domain socket, send requests to it, and read the result---these are remote procedure calls, or RPCs." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:9395 +#: guix-git/doc/guix.texi:9709 msgid "Users must @emph{never} modify files under @file{/gnu/store} directly. This would lead to inconsistencies and break the immutability assumptions of Guix's functional model (@pxref{Introduction})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:9399 +#: guix-git/doc/guix.texi:9713 msgid "@xref{Invoking guix gc, @command{guix gc --verify}}, for information on how to check the integrity of the store and attempt recovery from accidental modifications." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9406 +#: guix-git/doc/guix.texi:9720 msgid "The @code{(guix store)} module provides procedures to connect to the daemon, and to perform RPCs. These are described below. By default, @code{open-connection}, and thus all the @command{guix} commands, connect to the local daemon or to the URI specified by the @env{GUIX_DAEMON_SOCKET} environment variable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9407 +#: guix-git/doc/guix.texi:9721 #, no-wrap msgid "{Environment Variable} GUIX_DAEMON_SOCKET" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9412 +#: guix-git/doc/guix.texi:9726 msgid "When set, the value of this variable should be a file name or a URI designating the daemon endpoint. When it is a file name, it denotes a Unix-domain socket to connect to. In addition to file names, the supported URI schemes are:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:9414 guix-git/doc/guix.texi:26183 +#: guix-git/doc/guix.texi:9728 guix-git/doc/guix.texi:26520 #, no-wrap msgid "file" -msgstr "" +msgstr "file" #. type: itemx -#: guix-git/doc/guix.texi:9415 +#: guix-git/doc/guix.texi:9729 #, no-wrap msgid "unix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:9419 +#: guix-git/doc/guix.texi:9733 msgid "These are for Unix-domain sockets. @code{file:///var/guix/daemon-socket/socket} is equivalent to @file{/var/guix/daemon-socket/socket}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:9428 +#: guix-git/doc/guix.texi:9742 msgid "These URIs denote connections over TCP/IP, without encryption nor authentication of the remote host. The URI must specify the host name and optionally a port number (by default port 44146 is used):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9431 +#: guix-git/doc/guix.texi:9745 #, no-wrap msgid "guix://master.guix.example.org:1234\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:9436 +#: guix-git/doc/guix.texi:9750 msgid "This setup is suitable on local networks, such as clusters, where only trusted nodes may connect to the build daemon at @code{master.guix.example.org}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:9440 +#: guix-git/doc/guix.texi:9754 msgid "The @option{--listen} option of @command{guix-daemon} can be used to instruct it to listen for TCP connections (@pxref{Invoking guix-daemon, @option{--listen}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:9441 +#: guix-git/doc/guix.texi:9755 #, no-wrap msgid "ssh" -msgstr "" +msgstr "ssh" #. type: cindex -#: guix-git/doc/guix.texi:9442 +#: guix-git/doc/guix.texi:9756 #, no-wrap msgid "SSH access to build daemons" msgstr "" #. type: table -#: guix-git/doc/guix.texi:9448 +#: guix-git/doc/guix.texi:9762 msgid "These URIs allow you to connect to a remote daemon over SSH@. This feature requires Guile-SSH (@pxref{Requirements}) and a working @command{guile} binary in @env{PATH} on the destination machine. It supports public key and GSSAPI authentication. A typical URL might look like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9451 +#: guix-git/doc/guix.texi:9765 #, no-wrap msgid "ssh://charlie@@guix.example.org:22\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:9455 +#: guix-git/doc/guix.texi:9769 msgid "As for @command{guix copy}, the usual OpenSSH client configuration files are honored (@pxref{Invoking guix copy})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9458 +#: guix-git/doc/guix.texi:9772 msgid "Additional URI schemes may be supported in the future." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:9465 +#: guix-git/doc/guix.texi:9779 msgid "The ability to connect to remote build daemons is considered experimental as of @value{VERSION}. Please get in touch with us to share any problems or suggestions you may have (@pxref{Contributing})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9468 +#: guix-git/doc/guix.texi:9782 #, no-wrap msgid "{Scheme Procedure} open-connection [@var{uri}] [#:reserve-space? #t]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9473 +#: guix-git/doc/guix.texi:9787 msgid "Connect to the daemon over the Unix-domain socket at @var{uri} (a string). When @var{reserve-space?} is true, instruct it to reserve a little bit of extra space on the file system so that the garbage collector can still operate should the disk become full. Return a server object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9476 +#: guix-git/doc/guix.texi:9790 msgid "@var{file} defaults to @code{%default-socket-path}, which is the normal location given the options that were passed to @command{configure}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9478 +#: guix-git/doc/guix.texi:9792 #, no-wrap msgid "{Scheme Procedure} close-connection @var{server}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9480 +#: guix-git/doc/guix.texi:9794 msgid "Close the connection to @var{server}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9482 +#: guix-git/doc/guix.texi:9796 #, no-wrap msgid "{Scheme Variable} current-build-output-port" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9485 +#: guix-git/doc/guix.texi:9799 msgid "This variable is bound to a SRFI-39 parameter, which refers to the port where build and error logs sent by the daemon should be written." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9489 +#: guix-git/doc/guix.texi:9803 msgid "Procedures that make RPCs all take a server object as their first argument." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9490 +#: guix-git/doc/guix.texi:9804 #, no-wrap msgid "{Scheme Procedure} valid-path? @var{server} @var{path}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9491 +#: guix-git/doc/guix.texi:9805 #, no-wrap msgid "invalid store items" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9496 +#: guix-git/doc/guix.texi:9810 msgid "Return @code{#t} when @var{path} designates a valid store item and @code{#f} otherwise (an invalid item may exist on disk but still be invalid, for instance because it is the result of an aborted or failed build)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9499 +#: guix-git/doc/guix.texi:9813 msgid "A @code{&store-protocol-error} condition is raised if @var{path} is not prefixed by the store directory (@file{/gnu/store})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9501 +#: guix-git/doc/guix.texi:9815 #, no-wrap msgid "{Scheme Procedure} add-text-to-store @var{server} @var{name} @var{text} [@var{references}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9505 +#: guix-git/doc/guix.texi:9819 msgid "Add @var{text} under file @var{name} in the store, and return its store path. @var{references} is the list of store paths referred to by the resulting store path." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9507 +#: guix-git/doc/guix.texi:9821 #, no-wrap msgid "{Scheme Procedure} build-derivations @var{store} @var{derivations} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9512 +#: guix-git/doc/guix.texi:9826 msgid "[@var{mode}] Build @var{derivations}, a list of @code{} objects, @file{.drv} file names, or derivation/output pairs, using the specified @var{mode}---@code{(build-mode normal)} by default." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9518 +#: guix-git/doc/guix.texi:9832 msgid "Note that the @code{(guix monads)} module provides a monad as well as monadic versions of the above procedures, with the goal of making it more convenient to work with code that accesses the store (@pxref{The Store Monad})." msgstr "" #. type: i{#1} -#: guix-git/doc/guix.texi:9521 +#: guix-git/doc/guix.texi:9835 msgid "This section is currently incomplete." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9525 +#: guix-git/doc/guix.texi:9839 #, no-wrap msgid "derivations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9529 +#: guix-git/doc/guix.texi:9843 msgid "Low-level build actions and the environment in which they are performed are represented by @dfn{derivations}. A derivation contains the following pieces of information:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9534 +#: guix-git/doc/guix.texi:9848 msgid "The outputs of the derivation---derivations produce at least one file or directory in the store, but may produce more." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9536 +#: guix-git/doc/guix.texi:9850 #, no-wrap msgid "build-time dependencies" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9537 +#: guix-git/doc/guix.texi:9851 #, no-wrap msgid "dependencies, build-time" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9541 +#: guix-git/doc/guix.texi:9855 msgid "The inputs of the derivations---i.e., its build-time dependencies---which may be other derivations or plain files in the store (patches, build scripts, etc.)." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9544 +#: guix-git/doc/guix.texi:9858 msgid "The system type targeted by the derivation---e.g., @code{x86_64-linux}." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9548 +#: guix-git/doc/guix.texi:9862 msgid "The file name of a build script in the store, along with the arguments to be passed." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9551 +#: guix-git/doc/guix.texi:9865 msgid "A list of environment variables to be defined." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9554 +#: guix-git/doc/guix.texi:9868 #, no-wrap msgid "derivation path" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9562 +#: guix-git/doc/guix.texi:9876 msgid "Derivations allow clients of the daemon to communicate build actions to the store. They exist in two forms: as an in-memory representation, both on the client- and daemon-side, and as files in the store whose name end in @file{.drv}---these files are referred to as @dfn{derivation paths}. Derivations paths can be passed to the @code{build-derivations} procedure to perform the build actions they prescribe (@pxref{The Store})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9563 +#: guix-git/doc/guix.texi:9877 #, no-wrap msgid "fixed-output derivations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9570 +#: guix-git/doc/guix.texi:9884 msgid "Operations such as file downloads and version-control checkouts for which the expected content hash is known in advance are modeled as @dfn{fixed-output derivations}. Unlike regular derivations, the outputs of a fixed-output derivation are independent of its inputs---e.g., a source code download produces the same result regardless of the download method and tools being used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:9571 guix-git/doc/guix.texi:13341 +#: guix-git/doc/guix.texi:9885 guix-git/doc/guix.texi:13698 #, no-wrap msgid "references" -msgstr "" +msgstr "odvolávky" #. type: cindex -#: guix-git/doc/guix.texi:9572 +#: guix-git/doc/guix.texi:9886 #, no-wrap msgid "run-time dependencies" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9573 +#: guix-git/doc/guix.texi:9887 #, no-wrap msgid "dependencies, run-time" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9580 +#: guix-git/doc/guix.texi:9894 msgid "The outputs of derivations---i.e., the build results---have a set of @dfn{references}, as reported by the @code{references} RPC or the @command{guix gc --references} command (@pxref{Invoking guix gc}). References are the set of run-time dependencies of the build results. References are a subset of the inputs of the derivation; this subset is automatically computed by the build daemon by scanning all the files in the outputs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9585 +#: guix-git/doc/guix.texi:9899 msgid "The @code{(guix derivations)} module provides a representation of derivations as Scheme objects, along with procedures to create and otherwise manipulate derivations. The lowest-level primitive to create a derivation is the @code{derivation} procedure:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9586 +#: guix-git/doc/guix.texi:9900 #, no-wrap msgid "{Scheme Procedure} derivation @var{store} @var{name} @var{builder} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9595 +#: guix-git/doc/guix.texi:9909 msgid "@var{args} [#:outputs '(\"out\")] [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:inputs '()] [#:env-vars '()] @ [#:system (%current-system)] [#:references-graphs #f] @ [#:allowed-references #f] [#:disallowed-references #f] @ [#:leaked-env-vars #f] [#:local-build? #f] @ [#:substitutable? #t] [#:properties '()] Build a derivation with the given arguments, and return the resulting @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9602 +#: guix-git/doc/guix.texi:9916 msgid "When @var{hash} and @var{hash-algo} are given, a @dfn{fixed-output derivation} is created---i.e., one whose result is known in advance, such as a file download. If, in addition, @var{recursive?} is true, then that fixed output may be an executable file or a directory and @var{hash} must be the hash of an archive containing this output." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9607 +#: guix-git/doc/guix.texi:9921 msgid "When @var{references-graphs} is true, it must be a list of file name/store path pairs. In that case, the reference graph of each store path is exported in the build environment in the corresponding file, in a simple text format." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9612 +#: guix-git/doc/guix.texi:9926 msgid "When @var{allowed-references} is true, it must be a list of store items or outputs that the derivation's output may refer to. Likewise, @var{disallowed-references}, if true, must be a list of things the outputs may @emph{not} refer to." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9619 +#: guix-git/doc/guix.texi:9933 msgid "When @var{leaked-env-vars} is true, it must be a list of strings denoting environment variables that are allowed to ``leak'' from the daemon's environment to the build environment. This is only applicable to fixed-output derivations---i.e., when @var{hash} is true. The main use is to allow variables such as @code{http_proxy} to be passed to derivations that download files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9624 +#: guix-git/doc/guix.texi:9938 msgid "When @var{local-build?} is true, declare that the derivation is not a good candidate for offloading and should rather be built locally (@pxref{Daemon Offload Setup}). This is the case for small derivations where the costs of data transfers would outweigh the benefits." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9629 +#: guix-git/doc/guix.texi:9943 msgid "When @var{substitutable?} is false, declare that substitutes of the derivation's output should not be used (@pxref{Substitutes}). This is useful, for instance, when building packages that capture details of the host CPU instruction set." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9632 +#: guix-git/doc/guix.texi:9946 msgid "@var{properties} must be an association list describing ``properties'' of the derivation. It is kept as-is, uninterpreted, in the derivation." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9638 +#: guix-git/doc/guix.texi:9952 msgid "Here's an example with a shell script as its builder, assuming @var{store} is an open connection to the daemon, and @var{bash} points to a Bash executable in the store:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9643 +#: guix-git/doc/guix.texi:9957 #, no-wrap msgid "" "(use-modules (guix utils)\n" @@ -18010,7 +18526,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9652 +#: guix-git/doc/guix.texi:9966 #, no-wrap msgid "" "(let ((builder ; add the Bash script to the store\n" @@ -18024,48 +18540,48 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9659 +#: guix-git/doc/guix.texi:9973 msgid "As can be guessed, this primitive is cumbersome to use directly. A better approach is to write build scripts in Scheme, of course! The best course of action for that is to write the build code as a ``G-expression'', and to pass it to @code{gexp->derivation}. For more information, @pxref{G-Expressions}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9664 +#: guix-git/doc/guix.texi:9978 msgid "Once upon a time, @code{gexp->derivation} did not exist and constructing derivations with build code written in Scheme was achieved with @code{build-expression->derivation}, documented below. This procedure is now deprecated in favor of the much nicer @code{gexp->derivation}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9665 +#: guix-git/doc/guix.texi:9979 #, no-wrap msgid "{Scheme Procedure} build-expression->derivation @var{store} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9681 +#: guix-git/doc/guix.texi:9995 msgid "@var{name} @var{exp} @ [#:system (%current-system)] [#:inputs '()] @ [#:outputs '(\"out\")] [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:env-vars '()] [#:modules '()] @ [#:references-graphs #f] [#:allowed-references #f] @ [#:disallowed-references #f] @ [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f] Return a derivation that executes Scheme expression @var{exp} as a builder for derivation @var{name}. @var{inputs} must be a list of @code{(name drv-path sub-drv)} tuples; when @var{sub-drv} is omitted, @code{\"out\"} is assumed. @var{modules} is a list of names of Guile modules from the current search path to be copied in the store, compiled, and made available in the load path during the execution of @var{exp}---e.g., @code{((guix build utils) (guix build gnu-build-system))}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9689 +#: guix-git/doc/guix.texi:10003 msgid "@var{exp} is evaluated in an environment where @code{%outputs} is bound to a list of output/path pairs, and where @code{%build-inputs} is bound to a list of string/output-path pairs made from @var{inputs}. Optionally, @var{env-vars} is a list of string pairs specifying the name and value of environment variables visible to the builder. The builder terminates by passing the result of @var{exp} to @code{exit}; thus, when @var{exp} returns @code{#f}, the build is considered to have failed." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9693 +#: guix-git/doc/guix.texi:10007 msgid "@var{exp} is built using @var{guile-for-build} (a derivation). When @var{guile-for-build} is omitted or is @code{#f}, the value of the @code{%guile-for-build} fluid is used instead." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9698 +#: guix-git/doc/guix.texi:10012 msgid "See the @code{derivation} procedure for the meaning of @var{references-graphs}, @var{allowed-references}, @var{disallowed-references}, @var{local-build?}, and @var{substitutable?}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9703 +#: guix-git/doc/guix.texi:10017 msgid "Here's an example of a single-output derivation that creates a directory containing one file:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9711 +#: guix-git/doc/guix.texi:10025 #, no-wrap msgid "" "(let ((builder '(let ((out (assoc-ref %outputs \"out\")))\n" @@ -18078,51 +18594,51 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9713 +#: guix-git/doc/guix.texi:10027 #, no-wrap msgid "@result{} # @dots{}>\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9719 +#: guix-git/doc/guix.texi:10033 #, no-wrap msgid "monad" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9725 +#: guix-git/doc/guix.texi:10039 msgid "The procedures that operate on the store described in the previous sections all take an open connection to the build daemon as their first argument. Although the underlying model is functional, they either have side effects or depend on the current state of the store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9731 +#: guix-git/doc/guix.texi:10045 msgid "The former is inconvenient: the connection to the build daemon has to be carried around in all those functions, making it impossible to compose functions that do not take that parameter with functions that do. The latter can be problematic: since store operations have side effects and/or depend on external state, they have to be properly sequenced." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9732 +#: guix-git/doc/guix.texi:10046 #, no-wrap msgid "monadic values" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9733 +#: guix-git/doc/guix.texi:10047 #, no-wrap msgid "monadic functions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9743 +#: guix-git/doc/guix.texi:10057 msgid "This is where the @code{(guix monads)} module comes in. This module provides a framework for working with @dfn{monads}, and a particularly useful monad for our uses, the @dfn{store monad}. Monads are a construct that allows two things: associating ``context'' with values (in our case, the context is the store), and building sequences of computations (here computations include accesses to the store). Values in a monad---values that carry this additional context---are called @dfn{monadic values}; procedures that return such values are called @dfn{monadic procedures}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9745 +#: guix-git/doc/guix.texi:10059 msgid "Consider this ``normal'' procedure:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9754 +#: guix-git/doc/guix.texi:10068 #, no-wrap msgid "" "(define (sh-symlink store)\n" @@ -18135,12 +18651,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9758 +#: guix-git/doc/guix.texi:10072 msgid "Using @code{(guix monads)} and @code{(guix gexp)}, it may be rewritten as a monadic function:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9766 +#: guix-git/doc/guix.texi:10080 #, no-wrap msgid "" "(define (sh-symlink)\n" @@ -18152,17 +18668,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9773 +#: guix-git/doc/guix.texi:10087 msgid "There are several things to note in the second version: the @code{store} parameter is now implicit and is ``threaded'' in the calls to the @code{package->derivation} and @code{gexp->derivation} monadic procedures, and the monadic value returned by @code{package->derivation} is @dfn{bound} using @code{mlet} instead of plain @code{let}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9777 +#: guix-git/doc/guix.texi:10091 msgid "As it turns out, the call to @code{package->derivation} can even be omitted since it will take place implicitly, as we will see later (@pxref{G-Expressions}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9783 +#: guix-git/doc/guix.texi:10097 #, no-wrap msgid "" "(define (sh-symlink)\n" @@ -18172,12 +18688,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9792 +#: guix-git/doc/guix.texi:10106 msgid "Calling the monadic @code{sh-symlink} has no effect. As someone once said, ``you exit a monad like you exit a building on fire: by running''. So, to exit the monad and get the desired effect, one must use @code{run-with-store}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9796 +#: guix-git/doc/guix.texi:10110 #, no-wrap msgid "" "(run-with-store (open-connection) (sh-symlink))\n" @@ -18185,12 +18701,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9802 +#: guix-git/doc/guix.texi:10116 msgid "Note that the @code{(guix monad-repl)} module extends the Guile REPL with new ``meta-commands'' to make it easier to deal with monadic procedures: @code{run-in-store}, and @code{enter-store-monad}. The former is used to ``run'' a single monadic value through the store:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9806 +#: guix-git/doc/guix.texi:10120 #, no-wrap msgid "" "scheme@@(guile-user)> ,run-in-store (package->derivation hello)\n" @@ -18198,12 +18714,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9810 +#: guix-git/doc/guix.texi:10124 msgid "The latter enters a recursive REPL, where all the return values are automatically run through the store:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9819 +#: guix-git/doc/guix.texi:10133 #, no-wrap msgid "" "scheme@@(guile-user)> ,enter-store-monad\n" @@ -18216,50 +18732,50 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9824 +#: guix-git/doc/guix.texi:10138 msgid "Note that non-monadic values cannot be returned in the @code{store-monad} REPL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9827 +#: guix-git/doc/guix.texi:10141 msgid "The main syntactic forms to deal with monads in general are provided by the @code{(guix monads)} module and are described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9828 +#: guix-git/doc/guix.texi:10142 #, no-wrap msgid "{Scheme Syntax} with-monad @var{monad} @var{body} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9831 +#: guix-git/doc/guix.texi:10145 msgid "Evaluate any @code{>>=} or @code{return} forms in @var{body} as being in @var{monad}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9833 +#: guix-git/doc/guix.texi:10147 #, no-wrap msgid "{Scheme Syntax} return @var{val}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9835 +#: guix-git/doc/guix.texi:10149 msgid "Return a monadic value that encapsulates @var{val}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9837 +#: guix-git/doc/guix.texi:10151 #, no-wrap msgid "{Scheme Syntax} >>= @var{mval} @var{mproc} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9844 +#: guix-git/doc/guix.texi:10158 msgid "@dfn{Bind} monadic value @var{mval}, passing its ``contents'' to monadic procedures @var{mproc}@dots{}@footnote{This operation is commonly referred to as ``bind'', but that name denotes an unrelated procedure in Guile. Thus we use this somewhat cryptic symbol inherited from the Haskell language.}. There can be one @var{mproc} or several of them, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9852 +#: guix-git/doc/guix.texi:10166 #, no-wrap msgid "" "(run-with-state\n" @@ -18272,7 +18788,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9855 +#: guix-git/doc/guix.texi:10169 #, no-wrap msgid "" "@result{} 4\n" @@ -18280,99 +18796,99 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9858 +#: guix-git/doc/guix.texi:10172 #, no-wrap msgid "{Scheme Syntax} mlet @var{monad} ((@var{var} @var{mval}) ...) @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9860 +#: guix-git/doc/guix.texi:10174 msgid "@var{body} ..." msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9860 +#: guix-git/doc/guix.texi:10174 #, no-wrap msgid "{Scheme Syntax} mlet* @var{monad} ((@var{var} @var{mval}) ...) @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9872 +#: guix-git/doc/guix.texi:10186 msgid "@var{body} ... Bind the variables @var{var} to the monadic values @var{mval} in @var{body}, which is a sequence of expressions. As with the bind operator, this can be thought of as ``unpacking'' the raw, non-monadic value ``contained'' in @var{mval} and making @var{var} refer to that raw, non-monadic value within the scope of the @var{body}. The form (@var{var} -> @var{val}) binds @var{var} to the ``normal'' value @var{val}, as per @code{let}. The binding operations occur in sequence from left to right. The last expression of @var{body} must be a monadic expression, and its result will become the result of the @code{mlet} or @code{mlet*} when run in the @var{monad}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9875 +#: guix-git/doc/guix.texi:10189 msgid "@code{mlet*} is to @code{mlet} what @code{let*} is to @code{let} (@pxref{Local Bindings,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9877 +#: guix-git/doc/guix.texi:10191 #, no-wrap msgid "{Scheme System} mbegin @var{monad} @var{mexp} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9881 +#: guix-git/doc/guix.texi:10195 msgid "Bind @var{mexp} and the following monadic expressions in sequence, returning the result of the last expression. Every expression in the sequence must be a monadic expression." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9885 +#: guix-git/doc/guix.texi:10199 msgid "This is akin to @code{mlet}, except that the return values of the monadic expressions are ignored. In that sense, it is analogous to @code{begin}, but applied to monadic expressions." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9887 +#: guix-git/doc/guix.texi:10201 #, no-wrap msgid "{Scheme System} mwhen @var{condition} @var{mexp0} @var{mexp*} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9892 +#: guix-git/doc/guix.texi:10206 msgid "When @var{condition} is true, evaluate the sequence of monadic expressions @var{mexp0}..@var{mexp*} as in an @code{mbegin}. When @var{condition} is false, return @code{*unspecified*} in the current monad. Every expression in the sequence must be a monadic expression." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9894 +#: guix-git/doc/guix.texi:10208 #, no-wrap msgid "{Scheme System} munless @var{condition} @var{mexp0} @var{mexp*} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9899 +#: guix-git/doc/guix.texi:10213 msgid "When @var{condition} is false, evaluate the sequence of monadic expressions @var{mexp0}..@var{mexp*} as in an @code{mbegin}. When @var{condition} is true, return @code{*unspecified*} in the current monad. Every expression in the sequence must be a monadic expression." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9901 +#: guix-git/doc/guix.texi:10215 #, no-wrap msgid "state monad" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9905 +#: guix-git/doc/guix.texi:10219 msgid "The @code{(guix monads)} module provides the @dfn{state monad}, which allows an additional value---the state---to be @emph{threaded} through monadic procedure calls." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9906 +#: guix-git/doc/guix.texi:10220 #, no-wrap msgid "{Scheme Variable} %state-monad" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9909 +#: guix-git/doc/guix.texi:10223 msgid "The state monad. Procedures in the state monad can access and change the state that is threaded." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9913 +#: guix-git/doc/guix.texi:10227 msgid "Consider the example below. The @code{square} procedure returns a value in the state monad. It returns the square of its argument, but also increments the current state value:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9920 +#: guix-git/doc/guix.texi:10234 #, no-wrap msgid "" "(define (square x)\n" @@ -18384,7 +18900,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9924 +#: guix-git/doc/guix.texi:10238 #, no-wrap msgid "" "(run-with-state (sequence %state-monad (map square (iota 3))) 0)\n" @@ -18393,147 +18909,147 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9928 +#: guix-git/doc/guix.texi:10242 msgid "When ``run'' through @code{%state-monad}, we obtain that additional state value, which is the number of @code{square} calls." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9930 +#: guix-git/doc/guix.texi:10244 #, no-wrap msgid "{Monadic Procedure} current-state" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9932 +#: guix-git/doc/guix.texi:10246 msgid "Return the current state as a monadic value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9934 +#: guix-git/doc/guix.texi:10248 #, no-wrap msgid "{Monadic Procedure} set-current-state @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9937 +#: guix-git/doc/guix.texi:10251 msgid "Set the current state to @var{value} and return the previous state as a monadic value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9939 +#: guix-git/doc/guix.texi:10253 #, no-wrap msgid "{Monadic Procedure} state-push @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9942 +#: guix-git/doc/guix.texi:10256 msgid "Push @var{value} to the current state, which is assumed to be a list, and return the previous state as a monadic value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9944 +#: guix-git/doc/guix.texi:10258 #, no-wrap msgid "{Monadic Procedure} state-pop" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9947 +#: guix-git/doc/guix.texi:10261 msgid "Pop a value from the current state and return it as a monadic value. The state is assumed to be a list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9949 +#: guix-git/doc/guix.texi:10263 #, no-wrap msgid "{Scheme Procedure} run-with-state @var{mval} [@var{state}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9952 +#: guix-git/doc/guix.texi:10266 msgid "Run monadic value @var{mval} starting with @var{state} as the initial state. Return two values: the resulting value, and the resulting state." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9956 +#: guix-git/doc/guix.texi:10270 msgid "The main interface to the store monad, provided by the @code{(guix store)} module, is as follows." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9957 +#: guix-git/doc/guix.texi:10271 #, no-wrap msgid "{Scheme Variable} %store-monad" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9959 +#: guix-git/doc/guix.texi:10273 msgid "The store monad---an alias for @code{%state-monad}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9963 +#: guix-git/doc/guix.texi:10277 msgid "Values in the store monad encapsulate accesses to the store. When its effect is needed, a value of the store monad must be ``evaluated'' by passing it to the @code{run-with-store} procedure (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9965 +#: guix-git/doc/guix.texi:10279 #, no-wrap msgid "{Scheme Procedure} run-with-store @var{store} @var{mval} [#:guile-for-build] [#:system (%current-system)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9968 +#: guix-git/doc/guix.texi:10282 msgid "Run @var{mval}, a monadic value in the store monad, in @var{store}, an open store connection." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9970 +#: guix-git/doc/guix.texi:10284 #, no-wrap msgid "{Monadic Procedure} text-file @var{name} @var{text} [@var{references}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9974 +#: guix-git/doc/guix.texi:10288 msgid "Return as a monadic value the absolute file name in the store of the file containing @var{text}, a string. @var{references} is a list of store items that the resulting text file refers to; it defaults to the empty list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9976 +#: guix-git/doc/guix.texi:10290 #, no-wrap msgid "{Monadic Procedure} binary-file @var{name} @var{data} [@var{references}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9980 +#: guix-git/doc/guix.texi:10294 msgid "Return as a monadic value the absolute file name in the store of the file containing @var{data}, a bytevector. @var{references} is a list of store items that the resulting binary file refers to; it defaults to the empty list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9982 +#: guix-git/doc/guix.texi:10296 #, no-wrap msgid "{Monadic Procedure} interned-file @var{file} [@var{name}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9987 +#: guix-git/doc/guix.texi:10301 msgid "[#:recursive? #t] [#:select? (const #t)] Return the name of @var{file} once interned in the store. Use @var{name} as its store name, or the basename of @var{file} if @var{name} is omitted." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9991 guix-git/doc/guix.texi:10414 +#: guix-git/doc/guix.texi:10305 guix-git/doc/guix.texi:10728 msgid "When @var{recursive?} is true, the contents of @var{file} are added recursively; if @var{file} designates a flat file and @var{recursive?} is true, its contents are added, and its permission bits are kept." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9996 guix-git/doc/guix.texi:10419 +#: guix-git/doc/guix.texi:10310 guix-git/doc/guix.texi:10733 msgid "When @var{recursive?} is true, call @code{(@var{select?} @var{file} @var{stat})} for each directory entry, where @var{file} is the entry's absolute file name and @var{stat} is the result of @code{lstat}; exclude entries for which @var{select?} does not return true." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9998 +#: guix-git/doc/guix.texi:10312 msgid "The example below adds a file to the store, under two different names:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10004 +#: guix-git/doc/guix.texi:10318 #, no-wrap msgid "" "(run-with-store (open-connection)\n" @@ -18544,120 +19060,120 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10006 +#: guix-git/doc/guix.texi:10320 #, no-wrap msgid "@result{} (\"/gnu/store/rwm@dots{}-README\" \"/gnu/store/44i@dots{}-LEGU-MIN\")\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10012 +#: guix-git/doc/guix.texi:10326 msgid "The @code{(guix packages)} module exports the following package-related monadic procedures:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10013 +#: guix-git/doc/guix.texi:10327 #, no-wrap msgid "{Monadic Procedure} package-file @var{package} [@var{file}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10021 +#: guix-git/doc/guix.texi:10335 msgid "[#:system (%current-system)] [#:target #f] @ [#:output \"out\"] Return as a monadic value in the absolute file name of @var{file} within the @var{output} directory of @var{package}. When @var{file} is omitted, return the name of the @var{output} directory of @var{package}. When @var{target} is true, use it as a cross-compilation target triplet." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10025 +#: guix-git/doc/guix.texi:10339 msgid "Note that this procedure does @emph{not} build @var{package}. Thus, the result might or might not designate an existing file. We recommend not using this procedure unless you know what you are doing." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10027 +#: guix-git/doc/guix.texi:10341 #, no-wrap msgid "{Monadic Procedure} package->derivation @var{package} [@var{system}]" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:10028 +#: guix-git/doc/guix.texi:10342 #, no-wrap msgid "{Monadic Procedure} package->cross-derivation @var{package} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10032 +#: guix-git/doc/guix.texi:10346 msgid "@var{target} [@var{system}] Monadic version of @code{package-derivation} and @code{package-cross-derivation} (@pxref{Defining Packages})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10038 +#: guix-git/doc/guix.texi:10352 #, no-wrap msgid "G-expression" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10039 +#: guix-git/doc/guix.texi:10353 #, no-wrap msgid "build code quoting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10045 +#: guix-git/doc/guix.texi:10359 msgid "So we have ``derivations'', which represent a sequence of build actions to be performed to produce an item in the store (@pxref{Derivations}). These build actions are performed when asking the daemon to actually build the derivations; they are run by the daemon in a container (@pxref{Invoking guix-daemon})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10048 +#: guix-git/doc/guix.texi:10362 #, no-wrap msgid "strata of code" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10060 +#: guix-git/doc/guix.texi:10374 msgid "It should come as no surprise that we like to write these build actions in Scheme. When we do that, we end up with two @dfn{strata} of Scheme code@footnote{The term @dfn{stratum} in this context was coined by Manuel Serrano et al.@: in the context of their work on Hop. Oleg Kiselyov, who has written insightful @url{http://okmij.org/ftp/meta-programming/#meta-scheme, essays and code on this topic}, refers to this kind of code generation as @dfn{staging}.}: the ``host code''---code that defines packages, talks to the daemon, etc.---and the ``build code''---code that actually performs build actions, such as making directories, invoking @command{make}, and so on (@pxref{Build Phases})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10067 +#: guix-git/doc/guix.texi:10381 msgid "To describe a derivation and its build actions, one typically needs to embed build code inside host code. It boils down to manipulating build code as data, and the homoiconicity of Scheme---code has a direct representation as data---comes in handy for that. But we need more than the normal @code{quasiquote} mechanism in Scheme to construct build expressions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10076 +#: guix-git/doc/guix.texi:10390 msgid "The @code{(guix gexp)} module implements @dfn{G-expressions}, a form of S-expressions adapted to build expressions. G-expressions, or @dfn{gexps}, consist essentially of three syntactic forms: @code{gexp}, @code{ungexp}, and @code{ungexp-splicing} (or simply: @code{#~}, @code{#$}, and @code{#$@@}), which are comparable to @code{quasiquote}, @code{unquote}, and @code{unquote-splicing}, respectively (@pxref{Expression Syntax, @code{quasiquote},, guile, GNU Guile Reference Manual}). However, there are major differences:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:10081 +#: guix-git/doc/guix.texi:10395 msgid "Gexps are meant to be written to a file and run or manipulated by other processes." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:10086 +#: guix-git/doc/guix.texi:10400 msgid "When a high-level object such as a package or derivation is unquoted inside a gexp, the result is as if its output file name had been introduced." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:10091 +#: guix-git/doc/guix.texi:10405 msgid "Gexps carry information about the packages or derivations they refer to, and these dependencies are automatically added as inputs to the build processes that use them." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10093 guix-git/doc/guix.texi:10650 +#: guix-git/doc/guix.texi:10407 guix-git/doc/guix.texi:10964 #, no-wrap msgid "lowering, of high-level objects in gexps" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10103 +#: guix-git/doc/guix.texi:10417 msgid "This mechanism is not limited to package and derivation objects: @dfn{compilers} able to ``lower'' other high-level objects to derivations or files in the store can be defined, such that these objects can also be inserted into gexps. For example, a useful type of high-level objects that can be inserted in a gexp is ``file-like objects'', which make it easy to add files to the store and to refer to them in derivations and such (see @code{local-file} and @code{plain-file} below)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10105 +#: guix-git/doc/guix.texi:10419 msgid "To illustrate the idea, here is an example of a gexp:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10113 +#: guix-git/doc/guix.texi:10427 #, no-wrap msgid "" "(define build-exp\n" @@ -18669,34 +19185,34 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10118 +#: guix-git/doc/guix.texi:10432 msgid "This gexp can be passed to @code{gexp->derivation}; we obtain a derivation that builds a directory containing exactly one symlink to @file{/gnu/store/@dots{}-coreutils-8.22/bin/ls}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10121 +#: guix-git/doc/guix.texi:10435 #, no-wrap msgid "(gexp->derivation \"the-thing\" build-exp)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10129 +#: guix-git/doc/guix.texi:10443 msgid "As one would expect, the @code{\"/gnu/store/@dots{}-coreutils-8.22\"} string is substituted to the reference to the @var{coreutils} package in the actual build code, and @var{coreutils} is automatically made an input to the derivation. Likewise, @code{#$output} (equivalent to @code{(ungexp output)}) is replaced by a string containing the directory name of the output of the derivation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10130 +#: guix-git/doc/guix.texi:10444 #, no-wrap msgid "cross compilation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10136 +#: guix-git/doc/guix.texi:10450 msgid "In a cross-compilation context, it is useful to distinguish between references to the @emph{native} build of a package---that can run on the host---versus references to cross builds of a package. To that end, the @code{#+} plays the same role as @code{#$}, but is a reference to a native package build:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10147 +#: guix-git/doc/guix.texi:10461 #, no-wrap msgid "" "(gexp->derivation \"vi\"\n" @@ -18711,29 +19227,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10153 +#: guix-git/doc/guix.texi:10467 msgid "In the example above, the native build of @var{coreutils} is used, so that @command{ln} can actually run on the host; but then the cross-compiled build of @var{emacs} is referenced." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10154 +#: guix-git/doc/guix.texi:10468 #, no-wrap msgid "imported modules, for gexps" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:10155 +#: guix-git/doc/guix.texi:10469 #, no-wrap msgid "with-imported-modules" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10160 +#: guix-git/doc/guix.texi:10474 msgid "Another gexp feature is @dfn{imported modules}: sometimes you want to be able to use certain Guile modules from the ``host environment'' in the gexp, so those modules should be imported in the ``build environment''. The @code{with-imported-modules} form allows you to express that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10171 +#: guix-git/doc/guix.texi:10485 #, no-wrap msgid "" "(let ((build (with-imported-modules '((guix build utils))\n" @@ -18748,29 +19264,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10177 +#: guix-git/doc/guix.texi:10491 msgid "In this example, the @code{(guix build utils)} module is automatically pulled into the isolated build environment of our gexp, such that @code{(use-modules (guix build utils))} works as expected." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10178 +#: guix-git/doc/guix.texi:10492 #, no-wrap msgid "module closure" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:10179 +#: guix-git/doc/guix.texi:10493 #, no-wrap msgid "source-module-closure" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10186 +#: guix-git/doc/guix.texi:10500 msgid "Usually you want the @emph{closure} of the module to be imported---i.e., the module itself and all the modules it depends on---rather than just the module; failing to do that, attempts to use the module will fail because of missing dependent modules. The @code{source-module-closure} procedure computes the closure of a module by looking at its source file headers, which comes in handy in this case:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10189 +#: guix-git/doc/guix.texi:10503 #, no-wrap msgid "" "(use-modules (guix modules)) ;for 'source-module-closure'\n" @@ -18778,7 +19294,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10198 +#: guix-git/doc/guix.texi:10512 #, no-wrap msgid "" "(with-imported-modules (source-module-closure\n" @@ -18792,24 +19308,24 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10200 +#: guix-git/doc/guix.texi:10514 #, no-wrap msgid "extensions, for gexps" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:10201 +#: guix-git/doc/guix.texi:10515 #, no-wrap msgid "with-extensions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10206 +#: guix-git/doc/guix.texi:10520 msgid "In the same vein, sometimes you want to import not just pure-Scheme modules, but also ``extensions'' such as Guile bindings to C libraries or other ``full-blown'' packages. Say you need the @code{guile-json} package available on the build side, here's how you would do it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10209 +#: guix-git/doc/guix.texi:10523 #, no-wrap msgid "" "(use-modules (gnu packages guile)) ;for 'guile-json'\n" @@ -18817,7 +19333,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10215 +#: guix-git/doc/guix.texi:10529 #, no-wrap msgid "" "(with-extensions (list guile-json)\n" @@ -18828,184 +19344,184 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10218 +#: guix-git/doc/guix.texi:10532 msgid "The syntactic form to construct gexps is summarized below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10219 +#: guix-git/doc/guix.texi:10533 #, no-wrap msgid "{Scheme Syntax} #~@var{exp}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:10220 +#: guix-git/doc/guix.texi:10534 #, no-wrap msgid "{Scheme Syntax} (gexp @var{exp})" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10223 +#: guix-git/doc/guix.texi:10537 msgid "Return a G-expression containing @var{exp}. @var{exp} may contain one or more of the following forms:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10225 +#: guix-git/doc/guix.texi:10539 #, no-wrap msgid "#$@var{obj}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10226 +#: guix-git/doc/guix.texi:10540 #, no-wrap msgid "(ungexp @var{obj})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10231 +#: guix-git/doc/guix.texi:10545 msgid "Introduce a reference to @var{obj}. @var{obj} may have one of the supported types, for example a package or a derivation, in which case the @code{ungexp} form is replaced by its output file name---e.g., @code{\"/gnu/store/@dots{}-coreutils-8.22}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10234 +#: guix-git/doc/guix.texi:10548 msgid "If @var{obj} is a list, it is traversed and references to supported objects are substituted similarly." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10237 +#: guix-git/doc/guix.texi:10551 msgid "If @var{obj} is another gexp, its contents are inserted and its dependencies are added to those of the containing gexp." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10239 +#: guix-git/doc/guix.texi:10553 msgid "If @var{obj} is another kind of object, it is inserted as is." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10240 +#: guix-git/doc/guix.texi:10554 #, no-wrap msgid "#$@var{obj}:@var{output}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10241 +#: guix-git/doc/guix.texi:10555 #, no-wrap msgid "(ungexp @var{obj} @var{output})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10245 +#: guix-git/doc/guix.texi:10559 msgid "This is like the form above, but referring explicitly to the @var{output} of @var{obj}---this is useful when @var{obj} produces multiple outputs (@pxref{Packages with Multiple Outputs})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10246 +#: guix-git/doc/guix.texi:10560 #, no-wrap msgid "#+@var{obj}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10247 +#: guix-git/doc/guix.texi:10561 #, no-wrap msgid "#+@var{obj}:output" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10248 +#: guix-git/doc/guix.texi:10562 #, no-wrap msgid "(ungexp-native @var{obj})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10249 +#: guix-git/doc/guix.texi:10563 #, no-wrap msgid "(ungexp-native @var{obj} @var{output})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10252 +#: guix-git/doc/guix.texi:10566 msgid "Same as @code{ungexp}, but produces a reference to the @emph{native} build of @var{obj} when used in a cross compilation context." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10253 +#: guix-git/doc/guix.texi:10567 #, no-wrap msgid "#$output[:@var{output}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10254 +#: guix-git/doc/guix.texi:10568 #, no-wrap msgid "(ungexp output [@var{output}])" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10257 +#: guix-git/doc/guix.texi:10571 msgid "Insert a reference to derivation output @var{output}, or to the main output when @var{output} is omitted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10259 +#: guix-git/doc/guix.texi:10573 msgid "This only makes sense for gexps passed to @code{gexp->derivation}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10260 +#: guix-git/doc/guix.texi:10574 #, no-wrap msgid "#$@@@var{lst}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10261 +#: guix-git/doc/guix.texi:10575 #, no-wrap msgid "(ungexp-splicing @var{lst})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10264 +#: guix-git/doc/guix.texi:10578 msgid "Like the above, but splices the contents of @var{lst} inside the containing list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10265 +#: guix-git/doc/guix.texi:10579 #, no-wrap msgid "#+@@@var{lst}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10266 +#: guix-git/doc/guix.texi:10580 #, no-wrap msgid "(ungexp-native-splicing @var{lst})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10269 +#: guix-git/doc/guix.texi:10583 msgid "Like the above, but refers to native builds of the objects listed in @var{lst}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10274 +#: guix-git/doc/guix.texi:10588 msgid "G-expressions created by @code{gexp} or @code{#~} are run-time objects of the @code{gexp?} type (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10276 +#: guix-git/doc/guix.texi:10590 #, no-wrap msgid "{Scheme Syntax} with-imported-modules @var{modules} @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10279 +#: guix-git/doc/guix.texi:10593 msgid "Mark the gexps defined in @var{body}@dots{} as requiring @var{modules} in their execution environment." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10283 +#: guix-git/doc/guix.texi:10597 msgid "Each item in @var{modules} can be the name of a module, such as @code{(guix build utils)}, or it can be a module name, followed by an arrow, followed by a file-like object:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10289 +#: guix-git/doc/guix.texi:10603 #, no-wrap msgid "" "`((guix build utils)\n" @@ -19015,80 +19531,80 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10294 +#: guix-git/doc/guix.texi:10608 msgid "In the example above, the first two modules are taken from the search path, and the last one is created from the given file-like object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10298 +#: guix-git/doc/guix.texi:10612 msgid "This form has @emph{lexical} scope: it has an effect on the gexps directly defined in @var{body}@dots{}, but not on those defined, say, in procedures called from @var{body}@dots{}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10300 +#: guix-git/doc/guix.texi:10614 #, no-wrap msgid "{Scheme Syntax} with-extensions @var{extensions} @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10305 +#: guix-git/doc/guix.texi:10619 msgid "Mark the gexps defined in @var{body}@dots{} as requiring @var{extensions} in their build and execution environment. @var{extensions} is typically a list of package objects such as those defined in the @code{(gnu packages guile)} module." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10310 +#: guix-git/doc/guix.texi:10624 msgid "Concretely, the packages listed in @var{extensions} are added to the load path while compiling imported modules in @var{body}@dots{}; they are also added to the load path of the gexp returned by @var{body}@dots{}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10312 +#: guix-git/doc/guix.texi:10626 #, no-wrap msgid "{Scheme Procedure} gexp? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10314 +#: guix-git/doc/guix.texi:10628 msgid "Return @code{#t} if @var{obj} is a G-expression." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10320 +#: guix-git/doc/guix.texi:10634 msgid "G-expressions are meant to be written to disk, either as code building some derivation, or as plain files in the store. The monadic procedures below allow you to do that (@pxref{The Store Monad}, for more information about monads)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10321 +#: guix-git/doc/guix.texi:10635 #, no-wrap msgid "{Monadic Procedure} gexp->derivation @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10339 +#: guix-git/doc/guix.texi:10653 msgid "[#:system (%current-system)] [#:target #f] [#:graft? #t] @ [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:env-vars '()] [#:modules '()] @ [#:module-path @code{%load-path}] @ [#:effective-version \"2.2\"] @ [#:references-graphs #f] [#:allowed-references #f] @ [#:disallowed-references #f] @ [#:leaked-env-vars #f] @ [#:script-name (string-append @var{name} \"-builder\")] @ [#:deprecation-warnings #f] @ [#:local-build? #f] [#:substitutable? #t] @ [#:properties '()] [#:guile-for-build #f] Return a derivation @var{name} that runs @var{exp} (a gexp) with @var{guile-for-build} (a derivation) on @var{system}; @var{exp} is stored in a file called @var{script-name}. When @var{target} is true, it is used as the cross-compilation target triplet for packages referred to by @var{exp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10347 +#: guix-git/doc/guix.texi:10661 msgid "@var{modules} is deprecated in favor of @code{with-imported-modules}. Its meaning is to make @var{modules} available in the evaluation context of @var{exp}; @var{modules} is a list of names of Guile modules searched in @var{module-path} to be copied in the store, compiled, and made available in the load path during the execution of @var{exp}---e.g., @code{((guix build utils) (guix build gnu-build-system))}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10350 +#: guix-git/doc/guix.texi:10664 msgid "@var{effective-version} determines the string to use when adding extensions of @var{exp} (see @code{with-extensions}) to the search path---e.g., @code{\"2.2\"}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10353 +#: guix-git/doc/guix.texi:10667 msgid "@var{graft?} determines whether packages referred to by @var{exp} should be grafted when applicable." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10356 +#: guix-git/doc/guix.texi:10670 msgid "When @var{references-graphs} is true, it must be a list of tuples of one of the following forms:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10363 +#: guix-git/doc/guix.texi:10677 #, no-wrap msgid "" "(@var{file-name} @var{package})\n" @@ -19099,38 +19615,38 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10369 +#: guix-git/doc/guix.texi:10683 msgid "The right-hand-side of each element of @var{references-graphs} is automatically made an input of the build process of @var{exp}. In the build environment, each @var{file-name} contains the reference graph of the corresponding item, in a simple text format." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10375 +#: guix-git/doc/guix.texi:10689 msgid "@var{allowed-references} must be either @code{#f} or a list of output names and packages. In the latter case, the list denotes store items that the result is allowed to refer to. Any reference to another store item will lead to a build error. Similarly for @var{disallowed-references}, which can list items that must not be referenced by the outputs." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10378 +#: guix-git/doc/guix.texi:10692 msgid "@var{deprecation-warnings} determines whether to show deprecation warnings while compiling modules. It can be @code{#f}, @code{#t}, or @code{'detailed}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10380 +#: guix-git/doc/guix.texi:10694 msgid "The other arguments are as for @code{derivation} (@pxref{Derivations})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10382 +#: guix-git/doc/guix.texi:10696 #, no-wrap msgid "file-like objects" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10387 +#: guix-git/doc/guix.texi:10701 msgid "The @code{local-file}, @code{plain-file}, @code{computed-file}, @code{program-file}, and @code{scheme-file} procedures below return @dfn{file-like objects}. That is, when unquoted in a G-expression, these objects lead to a file in the store. Consider this G-expression:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10391 +#: guix-git/doc/guix.texi:10705 #, no-wrap msgid "" "#~(system* #$(file-append glibc \"/sbin/nscd\") \"-f\"\n" @@ -19138,76 +19654,76 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10400 +#: guix-git/doc/guix.texi:10714 msgid "The effect here is to ``intern'' @file{/tmp/my-nscd.conf} by copying it to the store. Once expanded, for instance @i{via} @code{gexp->derivation}, the G-expression refers to that copy under @file{/gnu/store}; thus, modifying or removing the file in @file{/tmp} does not have any effect on what the G-expression does. @code{plain-file} can be used similarly; it differs in that the file content is directly passed as a string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10401 +#: guix-git/doc/guix.texi:10715 #, no-wrap msgid "{Scheme Procedure} local-file @var{file} [@var{name}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10410 +#: guix-git/doc/guix.texi:10724 msgid "[#:recursive? #f] [#:select? (const #t)] Return an object representing local file @var{file} to add to the store; this object can be used in a gexp. If @var{file} is a literal string denoting a relative file name, it is looked up relative to the source file where it appears; if @var{file} is not a literal string, it is looked up relative to the current working directory at run time. @var{file} will be added to the store under @var{name}--by default the base name of @var{file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10422 +#: guix-git/doc/guix.texi:10736 msgid "This is the declarative counterpart of the @code{interned-file} monadic procedure (@pxref{The Store Monad, @code{interned-file}})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10424 +#: guix-git/doc/guix.texi:10738 #, no-wrap msgid "{Scheme Procedure} plain-file @var{name} @var{content}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10427 +#: guix-git/doc/guix.texi:10741 msgid "Return an object representing a text file called @var{name} with the given @var{content} (a string or a bytevector) to be added to the store." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10429 +#: guix-git/doc/guix.texi:10743 msgid "This is the declarative counterpart of @code{text-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10431 +#: guix-git/doc/guix.texi:10745 #, no-wrap msgid "{Scheme Procedure} computed-file @var{name} @var{gexp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10438 +#: guix-git/doc/guix.texi:10752 msgid "[#:local-build? #t] [#:options '()] Return an object representing the store item @var{name}, a file or directory computed by @var{gexp}. When @var{local-build?} is true (the default), the derivation is built locally. @var{options} is a list of additional arguments to pass to @code{gexp->derivation}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10440 +#: guix-git/doc/guix.texi:10754 msgid "This is the declarative counterpart of @code{gexp->derivation}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10442 +#: guix-git/doc/guix.texi:10756 #, no-wrap msgid "{Monadic Procedure} gexp->script @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10448 +#: guix-git/doc/guix.texi:10762 msgid "[#:guile (default-guile)] [#:module-path %load-path] @ [#:system (%current-system)] [#:target #f] Return an executable script @var{name} that runs @var{exp} using @var{guile}, with @var{exp}'s imported modules in its search path. Look up @var{exp}'s modules in @var{module-path}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10451 +#: guix-git/doc/guix.texi:10765 msgid "The example below builds a script that simply invokes the @command{ls} command:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10454 +#: guix-git/doc/guix.texi:10768 #, no-wrap msgid "" "(use-modules (guix gexp) (gnu packages base))\n" @@ -19215,7 +19731,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10458 +#: guix-git/doc/guix.texi:10772 #, no-wrap msgid "" "(gexp->script \"list-files\"\n" @@ -19224,12 +19740,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10463 +#: guix-git/doc/guix.texi:10777 msgid "When ``running'' it through the store (@pxref{The Store Monad, @code{run-with-store}}), we obtain a derivation that produces an executable file @file{/gnu/store/@dots{}-list-files} along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10468 +#: guix-git/doc/guix.texi:10782 #, no-wrap msgid "" "#!/gnu/store/@dots{}-guile-2.0.11/bin/guile -ds\n" @@ -19238,76 +19754,76 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10471 +#: guix-git/doc/guix.texi:10785 #, no-wrap msgid "{Scheme Procedure} program-file @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10476 +#: guix-git/doc/guix.texi:10790 msgid "[#:guile #f] [#:module-path %load-path] Return an object representing the executable store item @var{name} that runs @var{gexp}. @var{guile} is the Guile package used to execute that script. Imported modules of @var{gexp} are looked up in @var{module-path}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10478 +#: guix-git/doc/guix.texi:10792 msgid "This is the declarative counterpart of @code{gexp->script}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10480 +#: guix-git/doc/guix.texi:10794 #, no-wrap msgid "{Monadic Procedure} gexp->file @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10487 +#: guix-git/doc/guix.texi:10801 msgid "[#:set-load-path? #t] [#:module-path %load-path] @ [#:splice? #f] @ [#:guile (default-guile)] Return a derivation that builds a file @var{name} containing @var{exp}. When @var{splice?} is true, @var{exp} is considered to be a list of expressions that will be spliced in the resulting file." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10492 +#: guix-git/doc/guix.texi:10806 msgid "When @var{set-load-path?} is true, emit code in the resulting file to set @code{%load-path} and @code{%load-compiled-path} to honor @var{exp}'s imported modules. Look up @var{exp}'s modules in @var{module-path}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10495 +#: guix-git/doc/guix.texi:10809 msgid "The resulting file holds references to all the dependencies of @var{exp} or a subset thereof." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10497 +#: guix-git/doc/guix.texi:10811 #, no-wrap msgid "{Scheme Procedure} scheme-file @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10501 +#: guix-git/doc/guix.texi:10815 msgid "[#:splice? #f] [#:set-load-path? #t] Return an object representing the Scheme file @var{name} that contains @var{exp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10503 +#: guix-git/doc/guix.texi:10817 msgid "This is the declarative counterpart of @code{gexp->file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10505 +#: guix-git/doc/guix.texi:10819 #, no-wrap msgid "{Monadic Procedure} text-file* @var{name} @var{text} @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10511 +#: guix-git/doc/guix.texi:10825 msgid "Return as a monadic value a derivation that builds a text file containing all of @var{text}. @var{text} may list, in addition to strings, objects of any type that can be used in a gexp: packages, derivations, local file objects, etc. The resulting store file holds references to all these." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10516 +#: guix-git/doc/guix.texi:10830 msgid "This variant should be preferred over @code{text-file} anytime the file to create will reference items from the store. This is typically the case when building a configuration file that embeds store file names, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10524 +#: guix-git/doc/guix.texi:10838 #, no-wrap msgid "" "(define (profile.sh)\n" @@ -19319,23 +19835,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10529 +#: guix-git/doc/guix.texi:10843 msgid "In this example, the resulting @file{/gnu/store/@dots{}-profile.sh} file will reference @var{coreutils}, @var{grep}, and @var{sed}, thereby preventing them from being garbage-collected during its lifetime." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10531 +#: guix-git/doc/guix.texi:10845 #, no-wrap msgid "{Scheme Procedure} mixed-text-file @var{name} @var{text} @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10535 +#: guix-git/doc/guix.texi:10849 msgid "Return an object representing store file @var{name} containing @var{text}. @var{text} is a sequence of strings and file-like objects, as in:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10539 +#: guix-git/doc/guix.texi:10853 #, no-wrap msgid "" "(mixed-text-file \"profile\"\n" @@ -19343,23 +19859,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10542 +#: guix-git/doc/guix.texi:10856 msgid "This is the declarative counterpart of @code{text-file*}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10544 +#: guix-git/doc/guix.texi:10858 #, no-wrap msgid "{Scheme Procedure} file-union @var{name} @var{files}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10549 +#: guix-git/doc/guix.texi:10863 msgid "Return a @code{} that builds a directory containing all of @var{files}. Each item in @var{files} must be a two-element list where the first element is the file name to use in the new directory, and the second element is a gexp denoting the target file. Here's an example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10556 +#: guix-git/doc/guix.texi:10870 #, no-wrap msgid "" "(file-union \"etc\"\n" @@ -19370,50 +19886,50 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10559 +#: guix-git/doc/guix.texi:10873 msgid "This yields an @code{etc} directory containing these two files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10561 +#: guix-git/doc/guix.texi:10875 #, no-wrap msgid "{Scheme Procedure} directory-union @var{name} @var{things}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10564 +#: guix-git/doc/guix.texi:10878 msgid "Return a directory that is the union of @var{things}, where @var{things} is a list of file-like objects denoting directories. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10567 +#: guix-git/doc/guix.texi:10881 #, no-wrap msgid "(directory-union \"guile+emacs\" (list guile emacs))\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10570 +#: guix-git/doc/guix.texi:10884 msgid "yields a directory that is the union of the @code{guile} and @code{emacs} packages." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10572 +#: guix-git/doc/guix.texi:10886 #, no-wrap msgid "{Scheme Procedure} file-append @var{obj} @var{suffix} @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10576 +#: guix-git/doc/guix.texi:10890 msgid "Return a file-like object that expands to the concatenation of @var{obj} and @var{suffix}, where @var{obj} is a lowerable object and each @var{suffix} is a string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10578 +#: guix-git/doc/guix.texi:10892 msgid "As an example, consider this gexp:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10583 +#: guix-git/doc/guix.texi:10897 #, no-wrap msgid "" "(gexp->script \"run-uname\"\n" @@ -19422,12 +19938,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10586 +#: guix-git/doc/guix.texi:10900 msgid "The same effect could be achieved with:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10591 +#: guix-git/doc/guix.texi:10905 #, no-wrap msgid "" "(gexp->script \"run-uname\"\n" @@ -19436,39 +19952,39 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10597 +#: guix-git/doc/guix.texi:10911 msgid "There is one difference though: in the @code{file-append} case, the resulting script contains the absolute file name as a string, whereas in the second case, the resulting script contains a @code{(string-append @dots{})} expression to construct the file name @emph{at run time}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10599 +#: guix-git/doc/guix.texi:10913 #, no-wrap msgid "{Scheme Syntax} let-system @var{system} @var{body}@dots{}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:10600 +#: guix-git/doc/guix.texi:10914 #, no-wrap msgid "{Scheme Syntax} let-system (@var{system} @var{target}) @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10603 +#: guix-git/doc/guix.texi:10917 msgid "Bind @var{system} to the currently targeted system---e.g., @code{\"x86_64-linux\"}---within @var{body}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10608 +#: guix-git/doc/guix.texi:10922 msgid "In the second case, additionally bind @var{target} to the current cross-compilation target---a GNU triplet such as @code{\"arm-linux-gnueabihf\"}---or @code{#f} if we are not cross-compiling." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10611 +#: guix-git/doc/guix.texi:10925 msgid "@code{let-system} is useful in the occasional case where the object spliced into the gexp depends on the target system, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10622 +#: guix-git/doc/guix.texi:10936 #, no-wrap msgid "" "#~(system*\n" @@ -19483,23 +19999,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10625 +#: guix-git/doc/guix.texi:10939 #, no-wrap msgid "{Scheme Syntax} with-parameters ((@var{parameter} @var{value}) @dots{}) @var{exp}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10631 +#: guix-git/doc/guix.texi:10945 msgid "This macro is similar to the @code{parameterize} form for dynamically-bound @dfn{parameters} (@pxref{Parameters,,, guile, GNU Guile Reference Manual}). The key difference is that it takes effect when the file-like object returned by @var{exp} is lowered to a derivation or store item." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10634 +#: guix-git/doc/guix.texi:10948 msgid "A typical use of @code{with-parameters} is to force the system in effect for a given object:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10638 +#: guix-git/doc/guix.texi:10952 #, no-wrap msgid "" "(with-parameters ((%current-system \"i686-linux\"))\n" @@ -19507,94 +20023,94 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10642 +#: guix-git/doc/guix.texi:10956 msgid "The example above returns an object that corresponds to the i686 build of Coreutils, regardless of the current value of @code{%current-system}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10649 +#: guix-git/doc/guix.texi:10963 msgid "Of course, in addition to gexps embedded in ``host'' code, there are also modules containing build tools. To make it clear that they are meant to be used in the build stratum, these modules are kept in the @code{(guix build @dots{})} name space." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10655 +#: guix-git/doc/guix.texi:10969 msgid "Internally, high-level objects are @dfn{lowered}, using their compiler, to either derivations or store items. For instance, lowering a package yields a derivation, and lowering a @code{plain-file} yields a store item. This is achieved using the @code{lower-object} monadic procedure." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10656 +#: guix-git/doc/guix.texi:10970 #, no-wrap msgid "{Monadic Procedure} lower-object @var{obj} [@var{system}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10662 +#: guix-git/doc/guix.texi:10976 msgid "[#:target #f] Return as a value in @code{%store-monad} the derivation or store item corresponding to @var{obj} for @var{system}, cross-compiling for @var{target} if @var{target} is true. @var{obj} must be an object that has an associated gexp compiler, such as a @code{}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10664 +#: guix-git/doc/guix.texi:10978 #, no-wrap msgid "{Procedure} gexp->approximate-sexp @var{gexp}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10672 +#: guix-git/doc/guix.texi:10986 msgid "Sometimes, it may be useful to convert a G-exp into a S-exp. For example, some linters (@pxref{Invoking guix lint}) peek into the build phases of a package to detect potential problems. This conversion can be achieved with this procedure. However, some information can be lost in the process. More specifically, lowerable objects will be silently replaced with some arbitrary object -- currently the list @code{(*approximate*)}, but this may change." msgstr "" #. type: section -#: guix-git/doc/guix.texi:10675 +#: guix-git/doc/guix.texi:10989 #, no-wrap msgid "Invoking @command{guix repl}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10677 +#: guix-git/doc/guix.texi:10991 #, no-wrap msgid "REPL, read-eval-print loop, script" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10687 +#: guix-git/doc/guix.texi:11001 msgid "The @command{guix repl} command makes it easier to program Guix in Guile by launching a Guile @dfn{read-eval-print loop} (REPL) for interactive programming (@pxref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}), or by running Guile scripts (@pxref{Running Guile Scripts,,, guile, GNU Guile Reference Manual}). Compared to just launching the @command{guile} command, @command{guix repl} guarantees that all the Guix modules and all its dependencies are available in the search path." msgstr "" #. type: example -#: guix-git/doc/guix.texi:10692 +#: guix-git/doc/guix.texi:11006 #, no-wrap msgid "guix repl @var{options} [@var{file} @var{args}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10696 +#: guix-git/doc/guix.texi:11010 msgid "When a @var{file} argument is provided, @var{file} is executed as a Guile scripts:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10699 +#: guix-git/doc/guix.texi:11013 #, no-wrap msgid "guix repl my-script.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10703 +#: guix-git/doc/guix.texi:11017 msgid "To pass arguments to the script, use @code{--} to prevent them from being interpreted as arguments to @command{guix repl} itself:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10706 +#: guix-git/doc/guix.texi:11020 #, no-wrap msgid "guix repl -- my-script.scm --input=foo.txt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10711 +#: guix-git/doc/guix.texi:11025 msgid "To make a script executable directly from the shell, using the guix executable that is on the user's search path, add the following two lines at the top of the script:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10715 +#: guix-git/doc/guix.texi:11029 #, no-wrap msgid "" "@code{#!/usr/bin/env -S guix repl --}\n" @@ -19602,12 +20118,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10718 +#: guix-git/doc/guix.texi:11032 msgid "Without a file name argument, a Guile REPL is started:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10724 +#: guix-git/doc/guix.texi:11038 #, no-wrap msgid "" "$ guix repl\n" @@ -19617,169 +20133,169 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10731 +#: guix-git/doc/guix.texi:11045 msgid "In addition, @command{guix repl} implements a simple machine-readable REPL protocol for use by @code{(guix inferior)}, a facility to interact with @dfn{inferiors}, separate processes running a potentially different revision of Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10733 +#: guix-git/doc/guix.texi:11047 msgid "The available options are as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10735 guix-git/doc/guix.texi:13411 +#: guix-git/doc/guix.texi:11049 guix-git/doc/guix.texi:13768 #, no-wrap msgid "--type=@var{type}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10736 guix-git/doc/guix.texi:13412 -#: guix-git/doc/guix.texi:35281 +#: guix-git/doc/guix.texi:11050 guix-git/doc/guix.texi:13769 +#: guix-git/doc/guix.texi:35725 #, no-wrap msgid "-t @var{type}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10738 +#: guix-git/doc/guix.texi:11052 msgid "Start a REPL of the given @var{TYPE}, which can be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10740 +#: guix-git/doc/guix.texi:11054 #, no-wrap msgid "guile" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10742 +#: guix-git/doc/guix.texi:11056 msgid "This is default, and it spawns a standard full-featured Guile REPL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10742 +#: guix-git/doc/guix.texi:11056 #, no-wrap msgid "machine" -msgstr "" +msgstr "stroj" #. type: table -#: guix-git/doc/guix.texi:10745 +#: guix-git/doc/guix.texi:11059 msgid "Spawn a REPL that uses the machine-readable protocol. This is the protocol that the @code{(guix inferior)} module speaks." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10751 +#: guix-git/doc/guix.texi:11065 msgid "By default, @command{guix repl} reads from standard input and writes to standard output. When this option is passed, it will instead listen for connections on @var{endpoint}. Here are examples of valid options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10753 +#: guix-git/doc/guix.texi:11067 #, no-wrap msgid "--listen=tcp:37146" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10755 +#: guix-git/doc/guix.texi:11069 msgid "Accept connections on localhost on port 37146." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10756 +#: guix-git/doc/guix.texi:11070 #, no-wrap msgid "--listen=unix:/tmp/socket" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10758 +#: guix-git/doc/guix.texi:11072 msgid "Accept connections on the Unix-domain socket @file{/tmp/socket}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10760 guix-git/doc/guix.texi:10865 -#: guix-git/doc/guix.texi:12763 guix-git/doc/guix.texi:12840 -#: guix-git/doc/guix.texi:13046 guix-git/doc/guix.texi:13191 -#: guix-git/doc/guix.texi:13459 +#: guix-git/doc/guix.texi:11074 guix-git/doc/guix.texi:11179 +#: guix-git/doc/guix.texi:13078 guix-git/doc/guix.texi:13196 +#: guix-git/doc/guix.texi:13403 guix-git/doc/guix.texi:13548 +#: guix-git/doc/guix.texi:13816 #, no-wrap msgid "--load-path=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10761 guix-git/doc/guix.texi:10866 -#: guix-git/doc/guix.texi:12841 guix-git/doc/guix.texi:13047 -#: guix-git/doc/guix.texi:13192 guix-git/doc/guix.texi:13460 +#: guix-git/doc/guix.texi:11075 guix-git/doc/guix.texi:11180 +#: guix-git/doc/guix.texi:13197 guix-git/doc/guix.texi:13404 +#: guix-git/doc/guix.texi:13549 guix-git/doc/guix.texi:13817 #, no-wrap msgid "-L @var{directory}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10764 guix-git/doc/guix.texi:10869 -#: guix-git/doc/guix.texi:12766 guix-git/doc/guix.texi:12844 -#: guix-git/doc/guix.texi:13050 guix-git/doc/guix.texi:13195 -#: guix-git/doc/guix.texi:13463 +#: guix-git/doc/guix.texi:11078 guix-git/doc/guix.texi:11183 +#: guix-git/doc/guix.texi:13081 guix-git/doc/guix.texi:13200 +#: guix-git/doc/guix.texi:13407 guix-git/doc/guix.texi:13552 +#: guix-git/doc/guix.texi:13820 msgid "Add @var{directory} to the front of the package module search path (@pxref{Package Modules})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10767 +#: guix-git/doc/guix.texi:11081 msgid "This allows users to define their own packages and make them visible to the script or REPL." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10768 guix-git/doc/guix.texi:11390 +#: guix-git/doc/guix.texi:11082 guix-git/doc/guix.texi:11704 #, no-wrap msgid "-q" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10771 +#: guix-git/doc/guix.texi:11085 msgid "Inhibit loading of the @file{~/.guile} file. By default, that configuration file is loaded when spawning a @code{guile} REPL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10781 +#: guix-git/doc/guix.texi:11095 msgid "This section describes Guix command-line utilities. Some of them are primarily targeted at developers and users who write new package definitions, while others are more generally useful. They complement the Scheme programming interface of Guix in a convenient way." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10804 +#: guix-git/doc/guix.texi:11118 #, no-wrap msgid "package building" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:10805 +#: guix-git/doc/guix.texi:11119 #, no-wrap msgid "guix build" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10811 +#: guix-git/doc/guix.texi:11125 msgid "The @command{guix build} command builds packages or derivations and their dependencies, and prints the resulting store paths. Note that it does not modify the user's profile---this is the job of the @command{guix package} command (@pxref{Invoking guix package}). Thus, it is mainly useful for distribution developers." msgstr "" #. type: example -#: guix-git/doc/guix.texi:10816 +#: guix-git/doc/guix.texi:11130 #, no-wrap msgid "guix build @var{options} @var{package-or-derivation}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10821 +#: guix-git/doc/guix.texi:11135 msgid "As an example, the following command builds the latest versions of Emacs and of Guile, displays their build logs, and finally displays the resulting directories:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10824 +#: guix-git/doc/guix.texi:11138 #, no-wrap msgid "guix build emacs guile\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10827 +#: guix-git/doc/guix.texi:11141 msgid "Similarly, the following command builds all the available packages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10831 +#: guix-git/doc/guix.texi:11145 #, no-wrap msgid "" "guix build --quiet --keep-going \\\n" @@ -19787,321 +20303,321 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10839 +#: guix-git/doc/guix.texi:11153 msgid "@var{package-or-derivation} may be either the name of a package found in the software distribution such as @code{coreutils} or @code{coreutils@@8.20}, or a derivation such as @file{/gnu/store/@dots{}-coreutils-8.19.drv}. In the former case, a package with the corresponding name (and optionally version) is searched for among the GNU distribution modules (@pxref{Package Modules})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10844 +#: guix-git/doc/guix.texi:11158 msgid "Alternatively, the @option{--expression} option may be used to specify a Scheme expression that evaluates to a package; this is useful when disambiguating among several same-named packages or package variants is needed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10847 +#: guix-git/doc/guix.texi:11161 msgid "There may be zero or more @var{options}. The available options are described in the subsections below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10862 +#: guix-git/doc/guix.texi:11176 msgid "A number of options that control the build process are common to @command{guix build} and other commands that can spawn builds, such as @command{guix package} or @command{guix archive}. These are the following:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10872 guix-git/doc/guix.texi:12769 -#: guix-git/doc/guix.texi:13053 guix-git/doc/guix.texi:13198 -#: guix-git/doc/guix.texi:13466 +#: guix-git/doc/guix.texi:11186 guix-git/doc/guix.texi:13084 +#: guix-git/doc/guix.texi:13410 guix-git/doc/guix.texi:13555 +#: guix-git/doc/guix.texi:13823 msgid "This allows users to define their own packages and make them visible to the command-line tools." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10873 +#: guix-git/doc/guix.texi:11187 #, no-wrap msgid "--keep-failed" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10874 +#: guix-git/doc/guix.texi:11188 #, no-wrap msgid "-K" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10880 +#: guix-git/doc/guix.texi:11194 msgid "Keep the build tree of failed builds. Thus, if a build fails, its build tree is kept under @file{/tmp}, in a directory whose name is shown at the end of the build log. This is useful when debugging build issues. @xref{Debugging Build Failures}, for tips and tricks on how to debug build issues." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10884 +#: guix-git/doc/guix.texi:11198 msgid "This option implies @option{--no-offload}, and it has no effect when connecting to a remote daemon with a @code{guix://} URI (@pxref{The Store, the @env{GUIX_DAEMON_SOCKET} variable})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10885 +#: guix-git/doc/guix.texi:11199 #, no-wrap msgid "--keep-going" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10886 +#: guix-git/doc/guix.texi:11200 #, no-wrap msgid "-k" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10889 +#: guix-git/doc/guix.texi:11203 msgid "Keep going when some of the derivations fail to build; return only once all the builds have either completed or failed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10892 +#: guix-git/doc/guix.texi:11206 msgid "The default behavior is to stop as soon as one of the specified derivations has failed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10896 +#: guix-git/doc/guix.texi:11210 msgid "Do not build the derivations." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:10898 +#: guix-git/doc/guix.texi:11212 msgid "fallback-option" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10898 +#: guix-git/doc/guix.texi:11212 #, no-wrap msgid "--fallback" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10901 +#: guix-git/doc/guix.texi:11215 msgid "When substituting a pre-built binary fails, fall back to building packages locally (@pxref{Substitution Failure})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:10907 +#: guix-git/doc/guix.texi:11221 msgid "client-substitute-urls" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10907 +#: guix-git/doc/guix.texi:11221 msgid "Consider @var{urls} the whitespace-separated list of substitute source URLs, overriding the default list of URLs of @command{guix-daemon} (@pxref{daemon-substitute-urls,, @command{guix-daemon} URLs})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10911 +#: guix-git/doc/guix.texi:11225 msgid "This means that substitutes may be downloaded from @var{urls}, provided they are signed by a key authorized by the system administrator (@pxref{Substitutes})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10914 +#: guix-git/doc/guix.texi:11228 msgid "When @var{urls} is the empty string, substitutes are effectively disabled." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10920 +#: guix-git/doc/guix.texi:11234 #, no-wrap msgid "--no-grafts" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10924 +#: guix-git/doc/guix.texi:11238 msgid "Do not ``graft'' packages. In practice, this means that package updates available as grafts are not applied. @xref{Security Updates}, for more information on grafts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10925 +#: guix-git/doc/guix.texi:11239 #, no-wrap msgid "--rounds=@var{n}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10928 +#: guix-git/doc/guix.texi:11242 msgid "Build each derivation @var{n} times in a row, and raise an error if consecutive build results are not bit-for-bit identical." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10933 +#: guix-git/doc/guix.texi:11247 msgid "This is a useful way to detect non-deterministic builds processes. Non-deterministic build processes are a problem because they make it practically impossible for users to @emph{verify} whether third-party binaries are genuine. @xref{Invoking guix challenge}, for more." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10949 +#: guix-git/doc/guix.texi:11263 msgid "By default, the daemon's setting is honored (@pxref{Invoking guix-daemon, @option{--max-silent-time}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10956 +#: guix-git/doc/guix.texi:11270 msgid "By default, the daemon's setting is honored (@pxref{Invoking guix-daemon, @option{--timeout}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10959 +#: guix-git/doc/guix.texi:11273 #, no-wrap msgid "verbosity, of the command-line tools" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10960 +#: guix-git/doc/guix.texi:11274 #, no-wrap msgid "build logs, verbosity" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10961 +#: guix-git/doc/guix.texi:11275 #, no-wrap msgid "-v @var{level}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10962 +#: guix-git/doc/guix.texi:11276 #, no-wrap msgid "--verbosity=@var{level}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10967 +#: guix-git/doc/guix.texi:11281 msgid "Use the given verbosity @var{level}, an integer. Choosing 0 means that no output is produced, 1 is for quiet output; 2 is similar to 1 but it additionally displays download URLs; 3 shows all the build log output on standard error." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10972 +#: guix-git/doc/guix.texi:11286 msgid "Allow the use of up to @var{n} CPU cores for the build. The special value @code{0} means to use as many CPU cores as available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10978 +#: guix-git/doc/guix.texi:11292 msgid "Allow at most @var{n} build jobs in parallel. @xref{Invoking guix-daemon, @option{--max-jobs}}, for details about this option and the equivalent @command{guix-daemon} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10979 +#: guix-git/doc/guix.texi:11293 #, no-wrap msgid "--debug=@var{level}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10983 +#: guix-git/doc/guix.texi:11297 msgid "Produce debugging output coming from the build daemon. @var{level} must be an integer between 0 and 5; higher means more verbose output. Setting a level of 4 or more may be helpful when debugging setup issues with the build daemon." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10990 +#: guix-git/doc/guix.texi:11304 msgid "Behind the scenes, @command{guix build} is essentially an interface to the @code{package-derivation} procedure of the @code{(guix packages)} module, and to the @code{build-derivations} procedure of the @code{(guix derivations)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10994 +#: guix-git/doc/guix.texi:11308 msgid "In addition to options explicitly passed on the command line, @command{guix build} and other @command{guix} commands that support building honor the @env{GUIX_BUILD_OPTIONS} environment variable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:10995 +#: guix-git/doc/guix.texi:11309 #, no-wrap msgid "{Environment Variable} GUIX_BUILD_OPTIONS" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:11000 +#: guix-git/doc/guix.texi:11314 msgid "Users can define this variable to a list of command line options that will automatically be used by @command{guix build} and other @command{guix} commands that can perform builds, as in the example below:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11003 +#: guix-git/doc/guix.texi:11317 #, no-wrap msgid "$ export GUIX_BUILD_OPTIONS=\"--no-substitutes -c 2 -L /foo/bar\"\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:11007 +#: guix-git/doc/guix.texi:11321 msgid "These options are parsed independently, and the result is appended to the parsed command-line options." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11013 +#: guix-git/doc/guix.texi:11327 #, no-wrap msgid "package variants" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11021 +#: guix-git/doc/guix.texi:11335 msgid "Another set of command-line options supported by @command{guix build} and also @command{guix package} are @dfn{package transformation options}. These are options that make it possible to define @dfn{package variants}---for instance, packages built from different source code. This is a convenient way to create customized packages on the fly without having to type in the definitions of package variants (@pxref{Defining Packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11025 +#: guix-git/doc/guix.texi:11339 msgid "Package transformation options are preserved across upgrades: @command{guix upgrade} attempts to apply transformation options initially used when creating the profile to the upgraded packages." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11030 +#: guix-git/doc/guix.texi:11344 msgid "The available options are listed below. Most commands support them and also support a @option{--help-transform} option that lists all the available options and a synopsis (these options are not shown in the @option{--help} output for brevity)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11033 +#: guix-git/doc/guix.texi:11347 #, no-wrap msgid "performance, tuning code" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11034 +#: guix-git/doc/guix.texi:11348 #, no-wrap msgid "optimization, of package code" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11035 +#: guix-git/doc/guix.texi:11349 #, no-wrap msgid "tuning, of package code" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11036 +#: guix-git/doc/guix.texi:11350 #, no-wrap msgid "SIMD support" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11037 +#: guix-git/doc/guix.texi:11351 #, no-wrap msgid "tunable packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11038 +#: guix-git/doc/guix.texi:11352 #, no-wrap msgid "package multi-versioning" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11039 +#: guix-git/doc/guix.texi:11353 #, no-wrap msgid "--tune[=@var{cpu}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11043 +#: guix-git/doc/guix.texi:11357 msgid "Use versions of the packages marked as ``tunable'' optimized for @var{cpu}. When @var{cpu} is @code{native}, or when it is omitted, tune for the CPU on which the @command{guix} command is running." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11049 +#: guix-git/doc/guix.texi:11363 msgid "Valid @var{cpu} names are those recognized by the underlying compiler, by default the GNU Compiler Collection. On x86_64 processors, this includes CPU names such as @code{nehalem}, @code{haswell}, and @code{skylake} (@pxref{x86 Options, @code{-march},, gcc, Using the GNU Compiler Collection (GCC)})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11056 +#: guix-git/doc/guix.texi:11370 msgid "As new generations of CPUs come out, they augment the standard instruction set architecture (ISA) with additional instructions, in particular instructions for single-instruction/multiple-data (SIMD) parallel processing. For example, while Core2 and Skylake CPUs both implement the x86_64 ISA, only the latter supports AVX2 SIMD instructions." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11063 +#: guix-git/doc/guix.texi:11377 msgid "The primary gain one can expect from @option{--tune} is for programs that can make use of those SIMD capabilities @emph{and} that do not already have a mechanism to select the right optimized code at run time. Packages that have the @code{tunable?} property set are considered @dfn{tunable packages} by the @option{--tune} option; a package definition with the property set looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:11068 +#: guix-git/doc/guix.texi:11382 #, no-wrap msgid "" "(package\n" @@ -20111,7 +20627,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:11072 +#: guix-git/doc/guix.texi:11386 #, no-wrap msgid "" " ;; This package may benefit from SIMD extensions so\n" @@ -20120,87 +20636,87 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11077 +#: guix-git/doc/guix.texi:11391 msgid "Other packages are not considered tunable. This allows Guix to use generic binaries in the cases where tuning for a specific CPU is unlikely to provide any gain." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11083 +#: guix-git/doc/guix.texi:11397 msgid "Tuned packages are built with @code{-march=@var{CPU}}; under the hood, the @option{-march} option is passed to the actual wrapper by a compiler wrapper. Since the build machine may not be able to run code for the target CPU micro-architecture, the test suite is not run when building a tuned package." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11087 +#: guix-git/doc/guix.texi:11401 msgid "To reduce rebuilds to the minimum, tuned packages are @emph{grafted} onto packages that depend on them (@pxref{Security Updates, grafts}). Thus, using @option{--no-grafts} cancels the effect of @option{--tune}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11093 +#: guix-git/doc/guix.texi:11407 msgid "We call this technique @dfn{package multi-versioning}: several variants of tunable packages may be built, one for each CPU variant. It is the coarse-grain counterpart of @dfn{function multi-versioning} as implemented by the GNU tool chain (@pxref{Function Multiversioning,,, gcc, Using the GNU Compiler Collection (GCC)})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11094 +#: guix-git/doc/guix.texi:11408 #, no-wrap msgid "--with-source=@var{source}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11095 +#: guix-git/doc/guix.texi:11409 #, no-wrap msgid "--with-source=@var{package}=@var{source}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11096 +#: guix-git/doc/guix.texi:11410 #, no-wrap msgid "--with-source=@var{package}@@@var{version}=@var{source}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11101 +#: guix-git/doc/guix.texi:11415 msgid "Use @var{source} as the source of @var{package}, and @var{version} as its version number. @var{source} must be a file name or a URL, as for @command{guix download} (@pxref{Invoking guix download})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11107 +#: guix-git/doc/guix.texi:11421 msgid "When @var{package} is omitted, it is taken to be the package name specified on the command line that matches the base of @var{source}---e.g., if @var{source} is @code{/src/guile-2.0.10.tar.gz}, the corresponding package is @code{guile}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11110 +#: guix-git/doc/guix.texi:11424 msgid "Likewise, when @var{version} is omitted, the version string is inferred from @var{source}; in the previous example, it is @code{2.0.10}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11115 +#: guix-git/doc/guix.texi:11429 msgid "This option allows users to try out versions of packages other than the one provided by the distribution. The example below downloads @file{ed-1.7.tar.gz} from a GNU mirror and uses that as the source for the @code{ed} package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11118 +#: guix-git/doc/guix.texi:11432 #, no-wrap msgid "guix build ed --with-source=mirror://gnu/ed/ed-1.7.tar.gz\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11122 +#: guix-git/doc/guix.texi:11436 msgid "As a developer, @option{--with-source} makes it easy to test release candidates:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11125 +#: guix-git/doc/guix.texi:11439 #, no-wrap msgid "guix build guile --with-source=../guile-2.0.9.219-e1bb7.tar.xz\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11128 +#: guix-git/doc/guix.texi:11442 msgid "@dots{} or to build from a checkout in a pristine environment:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11132 +#: guix-git/doc/guix.texi:11446 #, no-wrap msgid "" "$ git clone git://git.sv.gnu.org/guix.git\n" @@ -20208,126 +20724,126 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11134 +#: guix-git/doc/guix.texi:11448 #, no-wrap msgid "--with-input=@var{package}=@var{replacement}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11139 +#: guix-git/doc/guix.texi:11453 msgid "Replace dependency on @var{package} by a dependency on @var{replacement}. @var{package} must be a package name, and @var{replacement} must be a package specification such as @code{guile} or @code{guile@@1.8}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11143 +#: guix-git/doc/guix.texi:11457 msgid "For instance, the following command builds Guix, but replaces its dependency on the current stable version of Guile with a dependency on the legacy version of Guile, @code{guile@@2.0}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11146 +#: guix-git/doc/guix.texi:11460 #, no-wrap msgid "guix build --with-input=guile=guile@@2.0 guix\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11151 +#: guix-git/doc/guix.texi:11465 msgid "This is a recursive, deep replacement. So in this example, both @code{guix} and its dependency @code{guile-json} (which also depends on @code{guile}) get rebuilt against @code{guile@@2.0}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11154 +#: guix-git/doc/guix.texi:11468 msgid "This is implemented using the @code{package-input-rewriting} Scheme procedure (@pxref{Defining Packages, @code{package-input-rewriting}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11155 +#: guix-git/doc/guix.texi:11469 #, no-wrap msgid "--with-graft=@var{package}=@var{replacement}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11161 +#: guix-git/doc/guix.texi:11475 msgid "This is similar to @option{--with-input} but with an important difference: instead of rebuilding the whole dependency chain, @var{replacement} is built and then @dfn{grafted} onto the binaries that were initially referring to @var{package}. @xref{Security Updates}, for more information on grafts." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11165 +#: guix-git/doc/guix.texi:11479 msgid "For example, the command below grafts version 3.5.4 of GnuTLS onto Wget and all its dependencies, replacing references to the version of GnuTLS they currently refer to:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11168 +#: guix-git/doc/guix.texi:11482 #, no-wrap msgid "guix build --with-graft=gnutls=gnutls@@3.5.4 wget\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11177 +#: guix-git/doc/guix.texi:11491 msgid "This has the advantage of being much faster than rebuilding everything. But there is a caveat: it works if and only if @var{package} and @var{replacement} are strictly compatible---for example, if they provide a library, the application binary interface (ABI) of those libraries must be compatible. If @var{replacement} is somehow incompatible with @var{package}, then the resulting package may be unusable. Use with care!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11178 guix-git/doc/guix.texi:37882 +#: guix-git/doc/guix.texi:11492 guix-git/doc/guix.texi:38371 #, no-wrap msgid "debugging info, rebuilding" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11179 +#: guix-git/doc/guix.texi:11493 #, no-wrap msgid "--with-debug-info=@var{package}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11184 +#: guix-git/doc/guix.texi:11498 msgid "Build @var{package} in a way that preserves its debugging info and graft it onto packages that depend on it. This is useful if @var{package} does not already provide debugging info as a @code{debug} output (@pxref{Installing Debugging Files})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11190 +#: guix-git/doc/guix.texi:11504 msgid "For example, suppose you're experiencing a crash in Inkscape and would like to see what's up in GLib, a library deep down in Inkscape's dependency graph. GLib lacks a @code{debug} output, so debugging is tough. Fortunately, you rebuild GLib with debugging info and tack it on Inkscape:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11193 guix-git/doc/guix.texi:37913 +#: guix-git/doc/guix.texi:11507 guix-git/doc/guix.texi:38402 #, no-wrap msgid "guix install inkscape --with-debug-info=glib\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11197 +#: guix-git/doc/guix.texi:11511 msgid "Only GLib needs to be recompiled so this takes a reasonable amount of time. @xref{Installing Debugging Files}, for more info." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11203 +#: guix-git/doc/guix.texi:11517 msgid "Under the hood, this option works by passing the @samp{#:strip-binaries? #f} to the build system of the package of interest (@pxref{Build Systems}). Most build systems support that option but some do not. In that case, an error is raised." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11207 +#: guix-git/doc/guix.texi:11521 msgid "Likewise, if a C/C++ package is built without @code{-g} (which is rarely the case), debugging info will remain unavailable even when @code{#:strip-binaries?} is false." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11209 +#: guix-git/doc/guix.texi:11523 #, no-wrap msgid "tool chain, changing the build tool chain of a package" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11210 +#: guix-git/doc/guix.texi:11524 #, no-wrap msgid "--with-c-toolchain=@var{package}=@var{toolchain}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11214 +#: guix-git/doc/guix.texi:11528 msgid "This option changes the compilation of @var{package} and everything that depends on it so that they get built with @var{toolchain} instead of the default GNU tool chain for C/C++." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11221 +#: guix-git/doc/guix.texi:11535 #, no-wrap msgid "" "guix build octave-cli \\\n" @@ -20336,17 +20852,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11228 +#: guix-git/doc/guix.texi:11542 msgid "The command above builds a variant of the @code{fftw} and @code{fftwf} packages using version 10 of @code{gcc-toolchain} instead of the default tool chain, and then builds a variant of the GNU@tie{}Octave command-line interface using them. GNU@tie{}Octave itself is also built with @code{gcc-toolchain@@10}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11232 +#: guix-git/doc/guix.texi:11546 msgid "This other example builds the Hardware Locality (@code{hwloc}) library and its dependents up to @code{intel-mpi-benchmarks} with the Clang C compiler:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11236 +#: guix-git/doc/guix.texi:11550 #, no-wrap msgid "" "guix build --with-c-toolchain=hwloc=clang-toolchain \\\n" @@ -20354,40 +20870,40 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11245 +#: guix-git/doc/guix.texi:11559 msgid "There can be application binary interface (ABI) incompatibilities among tool chains. This is particularly true of the C++ standard library and run-time support libraries such as that of OpenMP@. By rebuilding all dependents with the same tool chain, @option{--with-c-toolchain} minimizes the risks of incompatibility but cannot entirely eliminate them. Choose @var{package} wisely." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11247 +#: guix-git/doc/guix.texi:11561 #, no-wrap msgid "--with-git-url=@var{package}=@var{url}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11248 +#: guix-git/doc/guix.texi:11562 #, no-wrap msgid "Git, using the latest commit" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11249 +#: guix-git/doc/guix.texi:11563 #, no-wrap msgid "latest commit, building" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11253 +#: guix-git/doc/guix.texi:11567 msgid "Build @var{package} from the latest commit of the @code{master} branch of the Git repository at @var{url}. Git sub-modules of the repository are fetched, recursively." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11256 +#: guix-git/doc/guix.texi:11570 msgid "For example, the following command builds the NumPy Python library against the latest commit of the master branch of Python itself:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11260 +#: guix-git/doc/guix.texi:11574 #, no-wrap msgid "" "guix build python-numpy \\\n" @@ -20395,318 +20911,318 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11264 +#: guix-git/doc/guix.texi:11578 msgid "This option can also be combined with @option{--with-branch} or @option{--with-commit} (see below)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11265 guix-git/doc/guix.texi:28957 +#: guix-git/doc/guix.texi:11579 guix-git/doc/guix.texi:29294 #, no-wrap msgid "continuous integration" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11271 +#: guix-git/doc/guix.texi:11585 msgid "Obviously, since it uses the latest commit of the given branch, the result of such a command varies over time. Nevertheless it is a convenient way to rebuild entire software stacks against the latest commit of one or more packages. This is particularly useful in the context of continuous integration (CI)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11275 +#: guix-git/doc/guix.texi:11589 msgid "Checkouts are kept in a cache under @file{~/.cache/guix/checkouts} to speed up consecutive accesses to the same repository. You may want to clean it up once in a while to save disk space." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11276 +#: guix-git/doc/guix.texi:11590 #, no-wrap msgid "--with-branch=@var{package}=@var{branch}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11282 +#: guix-git/doc/guix.texi:11596 msgid "Build @var{package} from the latest commit of @var{branch}. If the @code{source} field of @var{package} is an origin with the @code{git-fetch} method (@pxref{origin Reference}) or a @code{git-checkout} object, the repository URL is taken from that @code{source}. Otherwise you have to use @option{--with-git-url} to specify the URL of the Git repository." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11287 +#: guix-git/doc/guix.texi:11601 msgid "For instance, the following command builds @code{guile-sqlite3} from the latest commit of its @code{master} branch, and then builds @code{guix} (which depends on it) and @code{cuirass} (which depends on @code{guix}) against this specific @code{guile-sqlite3} build:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11290 +#: guix-git/doc/guix.texi:11604 #, no-wrap msgid "guix build --with-branch=guile-sqlite3=master cuirass\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11292 +#: guix-git/doc/guix.texi:11606 #, no-wrap msgid "--with-commit=@var{package}=@var{commit}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11297 +#: guix-git/doc/guix.texi:11611 msgid "This is similar to @option{--with-branch}, except that it builds from @var{commit} rather than the tip of a branch. @var{commit} must be a valid Git commit SHA1 identifier, a tag, or a @command{git describe} style identifier such as @code{1.0-3-gabc123}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11298 +#: guix-git/doc/guix.texi:11612 #, no-wrap msgid "--with-patch=@var{package}=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11305 +#: guix-git/doc/guix.texi:11619 msgid "Add @var{file} to the list of patches applied to @var{package}, where @var{package} is a spec such as @code{python@@3.8} or @code{glibc}. @var{file} must contain a patch; it is applied with the flags specified in the @code{origin} of @var{package} (@pxref{origin Reference}), which by default includes @code{-p1} (@pxref{patch Directories,,, diffutils, Comparing and Merging Files})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11308 +#: guix-git/doc/guix.texi:11622 msgid "As an example, the command below rebuilds Coreutils with the GNU C Library (glibc) patched with the given patch:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11311 +#: guix-git/doc/guix.texi:11625 #, no-wrap msgid "guix build coreutils --with-patch=glibc=./glibc-frob.patch\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11315 +#: guix-git/doc/guix.texi:11629 msgid "In this example, glibc itself as well as everything that leads to Coreutils in the dependency graph is rebuilt." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11316 +#: guix-git/doc/guix.texi:11630 #, no-wrap msgid "upstream, latest version" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11317 +#: guix-git/doc/guix.texi:11631 #, no-wrap msgid "--with-latest=@var{package}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11322 +#: guix-git/doc/guix.texi:11636 msgid "So you like living on the bleeding edge? This option is for you! It replaces occurrences of @var{package} in the dependency graph with its latest upstream version, as reported by @command{guix refresh} (@pxref{Invoking guix refresh})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11326 +#: guix-git/doc/guix.texi:11640 msgid "It does so by determining the latest upstream release of @var{package} (if possible), downloading it, and authenticating it @emph{if} it comes with an OpenPGP signature." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11329 +#: guix-git/doc/guix.texi:11643 msgid "As an example, the command below builds Guix against the latest version of Guile-JSON:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11332 +#: guix-git/doc/guix.texi:11646 #, no-wrap msgid "guix build guix --with-latest=guile-json\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11341 +#: guix-git/doc/guix.texi:11655 msgid "There are limitations. First, in cases where the tool cannot or does not know how to authenticate source code, you are at risk of running malicious code; a warning is emitted in this case. Second, this option simply changes the source used in the existing package definitions, which is not always sufficient: there might be additional dependencies that need to be added, patches to apply, and more generally the quality assurance work that Guix developers normally do will be missing." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11346 +#: guix-git/doc/guix.texi:11660 msgid "You've been warned! In all the other cases, it's a snappy way to stay on top. We encourage you to submit patches updating the actual package definitions once you have successfully tested an upgrade (@pxref{Contributing})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11347 +#: guix-git/doc/guix.texi:11661 #, no-wrap msgid "test suite, skipping" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11348 +#: guix-git/doc/guix.texi:11662 #, no-wrap msgid "--without-tests=@var{package}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11354 +#: guix-git/doc/guix.texi:11668 msgid "Build @var{package} without running its tests. This can be useful in situations where you want to skip the lengthy test suite of a intermediate package, or if a package's test suite fails in a non-deterministic fashion. It should be used with care because running the test suite is a good way to ensure a package is working as intended." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11358 +#: guix-git/doc/guix.texi:11672 msgid "Turning off tests leads to a different store item. Consequently, when using this option, anything that depends on @var{package} must be rebuilt, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11361 +#: guix-git/doc/guix.texi:11675 #, no-wrap msgid "guix install --without-tests=python python-notebook\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11367 +#: guix-git/doc/guix.texi:11681 msgid "The command above installs @code{python-notebook} on top of @code{python} built without running its test suite. To do so, it also rebuilds everything that depends on @code{python}, including @code{python-notebook} itself." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11373 +#: guix-git/doc/guix.texi:11687 msgid "Internally, @option{--without-tests} relies on changing the @code{#:tests?} option of a package's @code{check} phase (@pxref{Build Systems}). Note that some packages use a customized @code{check} phase that does not respect a @code{#:tests? #f} setting. Therefore, @option{--without-tests} has no effect on these packages." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11380 +#: guix-git/doc/guix.texi:11694 msgid "Wondering how to achieve the same effect using Scheme code, for example in your manifest, or how to write your own package transformation? @xref{Defining Package Variants}, for an overview of the programming interfaces available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11386 +#: guix-git/doc/guix.texi:11700 msgid "The command-line options presented below are specific to @command{guix build}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11389 +#: guix-git/doc/guix.texi:11703 #, no-wrap msgid "--quiet" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11394 +#: guix-git/doc/guix.texi:11708 msgid "Build quietly, without displaying the build log; this is equivalent to @option{--verbosity=0}. Upon completion, the build log is kept in @file{/var} (or similar) and can always be retrieved using the @option{--log-file} option." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11399 +#: guix-git/doc/guix.texi:11713 msgid "Build the package, derivation, or other file-like object that the code within @var{file} evaluates to (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11402 +#: guix-git/doc/guix.texi:11716 msgid "As an example, @var{file} might contain a package definition like this (@pxref{Defining Packages}):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11411 +#: guix-git/doc/guix.texi:11725 msgid "The @var{file} may also contain a JSON representation of one or more package definitions. Running @code{guix build -f} on @file{hello.json} with the following contents would result in building the packages @code{myhello} and @code{greeter}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11416 +#: guix-git/doc/guix.texi:11730 #, no-wrap msgid "--manifest=@var{manifest}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11417 +#: guix-git/doc/guix.texi:11731 #, no-wrap msgid "-m @var{manifest}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11420 +#: guix-git/doc/guix.texi:11734 msgid "Build all packages listed in the given @var{manifest} (@pxref{profile-manifest, @option{--manifest}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11424 +#: guix-git/doc/guix.texi:11738 msgid "Build the package or derivation @var{expr} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11428 +#: guix-git/doc/guix.texi:11742 msgid "For example, @var{expr} may be @code{(@@ (gnu packages guile) guile-1.8)}, which unambiguously designates this specific variant of version 1.8 of Guile." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11432 +#: guix-git/doc/guix.texi:11746 msgid "Alternatively, @var{expr} may be a G-expression, in which case it is used as a build program passed to @code{gexp->derivation} (@pxref{G-Expressions})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11436 +#: guix-git/doc/guix.texi:11750 msgid "Lastly, @var{expr} may refer to a zero-argument monadic procedure (@pxref{The Store Monad}). The procedure must return a derivation as a monadic value, which is then passed through @code{run-with-store}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11437 +#: guix-git/doc/guix.texi:11751 #, no-wrap msgid "--source" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11438 guix-git/doc/guix.texi:11835 +#: guix-git/doc/guix.texi:11752 #, no-wrap msgid "-S" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11441 +#: guix-git/doc/guix.texi:11755 msgid "Build the source derivations of the packages, rather than the packages themselves." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11445 +#: guix-git/doc/guix.texi:11759 msgid "For instance, @code{guix build -S gcc} returns something like @file{/gnu/store/@dots{}-gcc-4.7.2.tar.bz2}, which is the GCC source tarball." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11449 +#: guix-git/doc/guix.texi:11763 msgid "The returned source tarball is the result of applying any patches and code snippets specified in the package @code{origin} (@pxref{Defining Packages})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11450 +#: guix-git/doc/guix.texi:11764 #, no-wrap msgid "source, verification" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11456 +#: guix-git/doc/guix.texi:11770 msgid "As with other derivations, the result of building a source derivation can be verified using the @option{--check} option (@pxref{build-check}). This is useful to validate that a (potentially already built or substituted, thus cached) package source matches against its declared hash." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11461 +#: guix-git/doc/guix.texi:11775 msgid "Note that @command{guix build -S} compiles the sources only of the specified packages. They do not include the sources of statically linked dependencies and by themselves are insufficient for reproducing the packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11462 +#: guix-git/doc/guix.texi:11776 #, no-wrap msgid "--sources" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11469 +#: guix-git/doc/guix.texi:11783 msgid "Fetch and return the source of @var{package-or-derivation} and all their dependencies, recursively. This is a handy way to obtain a local copy of all the source code needed to build @var{packages}, allowing you to eventually build them even without network access. It is an extension of the @option{--source} option and can accept one of the following optional argument values:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11471 guix-git/doc/guix.texi:13252 +#: guix-git/doc/guix.texi:11785 guix-git/doc/guix.texi:13609 #, no-wrap msgid "package" -msgstr "" +msgstr "balík" #. type: table -#: guix-git/doc/guix.texi:11474 +#: guix-git/doc/guix.texi:11788 msgid "This value causes the @option{--sources} option to behave in the same way as the @option{--source} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11475 guix-git/doc/guix.texi:19682 +#: guix-git/doc/guix.texi:11789 guix-git/doc/guix.texi:20044 #, no-wrap msgid "all" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11478 +#: guix-git/doc/guix.texi:11792 msgid "Build the source derivations of all packages, including any source that might be listed as @code{inputs}. This is the default value." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11484 +#: guix-git/doc/guix.texi:11798 #, no-wrap msgid "" "$ guix build --sources tzdata\n" @@ -20716,18 +21232,18 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11486 +#: guix-git/doc/guix.texi:11800 #, no-wrap msgid "transitive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11490 +#: guix-git/doc/guix.texi:11804 msgid "Build the source derivations of all packages, as well of all transitive inputs to the packages. This can be used e.g.@: to prefetch package source for later offline building." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11501 +#: guix-git/doc/guix.texi:11815 #, no-wrap msgid "" "$ guix build --sources=transitive tzdata\n" @@ -20742,146 +21258,146 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11511 +#: guix-git/doc/guix.texi:11825 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of the system type of the build host. The @command{guix build} command allows you to repeat this option several times, in which case it builds for all the specified systems; other commands ignore extraneous @option{-s} options." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11516 +#: guix-git/doc/guix.texi:11830 msgid "The @option{--system} flag is for @emph{native} compilation and must not be confused with cross-compilation. See @option{--target} below for information on cross-compilation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11523 +#: guix-git/doc/guix.texi:11837 msgid "An example use of this is on Linux-based systems, which can emulate different personalities. For instance, passing @option{--system=i686-linux} on an @code{x86_64-linux} system or @option{--system=armhf-linux} on an @code{aarch64-linux} system allows you to build packages in a complete 32-bit environment." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11528 +#: guix-git/doc/guix.texi:11842 msgid "Building for an @code{armhf-linux} system is unconditionally enabled on @code{aarch64-linux} machines, although certain aarch64 chipsets do not allow for this functionality, notably the ThunderX." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11534 +#: guix-git/doc/guix.texi:11848 msgid "Similarly, when transparent emulation with QEMU and @code{binfmt_misc} is enabled (@pxref{Virtualization Services, @code{qemu-binfmt-service-type}}), you can build for any system for which a QEMU @code{binfmt_misc} handler is installed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11538 +#: guix-git/doc/guix.texi:11852 msgid "Builds for a system other than that of the machine you are using can also be offloaded to a remote machine of the right architecture. @xref{Daemon Offload Setup}, for more information on offloading." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11544 +#: guix-git/doc/guix.texi:11858 msgid "Cross-build for @var{triplet}, which must be a valid GNU triplet, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying Target Triplets, GNU configuration triplets,, autoconf, Autoconf})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:11546 +#: guix-git/doc/guix.texi:11860 msgid "build-check" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11547 +#: guix-git/doc/guix.texi:11861 #, no-wrap msgid "determinism, checking" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11548 +#: guix-git/doc/guix.texi:11862 #, no-wrap msgid "reproducibility, checking" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11552 +#: guix-git/doc/guix.texi:11866 msgid "Rebuild @var{package-or-derivation}, which are already available in the store, and raise an error if the build results are not bit-for-bit identical." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11557 +#: guix-git/doc/guix.texi:11871 msgid "This mechanism allows you to check whether previously installed substitutes are genuine (@pxref{Substitutes}), or whether the build result of a package is deterministic. @xref{Invoking guix challenge}, for more background information and tools." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11562 +#: guix-git/doc/guix.texi:11876 #, no-wrap msgid "--repair" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11563 +#: guix-git/doc/guix.texi:11877 #, no-wrap msgid "repairing store items" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11567 +#: guix-git/doc/guix.texi:11881 msgid "Attempt to repair the specified store items, if they are corrupt, by re-downloading or rebuilding them." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11569 +#: guix-git/doc/guix.texi:11883 msgid "This operation is not atomic and thus restricted to @code{root}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11570 +#: guix-git/doc/guix.texi:11884 #, no-wrap msgid "--derivations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11574 +#: guix-git/doc/guix.texi:11888 msgid "Return the derivation paths, not the output paths, of the given packages." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11577 +#: guix-git/doc/guix.texi:11891 #, no-wrap msgid "GC roots, adding" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11578 +#: guix-git/doc/guix.texi:11892 #, no-wrap msgid "garbage collector roots, adding" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11581 guix-git/doc/guix.texi:35312 +#: guix-git/doc/guix.texi:11895 guix-git/doc/guix.texi:35756 msgid "Make @var{file} a symlink to the result, and register it as a garbage collector root." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11587 +#: guix-git/doc/guix.texi:11901 msgid "Consequently, the results of this @command{guix build} invocation are protected from garbage collection until @var{file} is removed. When that option is omitted, build results are eligible for garbage collection as soon as the build completes. @xref{Invoking guix gc}, for more on GC roots." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11588 +#: guix-git/doc/guix.texi:11902 #, no-wrap msgid "--log-file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11589 +#: guix-git/doc/guix.texi:11903 #, no-wrap msgid "build logs, access" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11593 +#: guix-git/doc/guix.texi:11907 msgid "Return the build log file names or URLs for the given @var{package-or-derivation}, or raise an error if build logs are missing." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11596 +#: guix-git/doc/guix.texi:11910 msgid "This works regardless of how packages or derivations are specified. For instance, the following invocations are equivalent:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11602 +#: guix-git/doc/guix.texi:11916 #, no-wrap msgid "" "guix build --log-file $(guix build -d guile)\n" @@ -20891,17 +21407,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11607 +#: guix-git/doc/guix.texi:11921 msgid "If a log is unavailable locally, and unless @option{--no-substitutes} is passed, the command looks for a corresponding log on one of the substitute servers (as specified with @option{--substitute-urls})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11610 +#: guix-git/doc/guix.texi:11924 msgid "So for instance, imagine you want to see the build log of GDB on MIPS, but you are actually on an @code{x86_64} machine:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11614 +#: guix-git/doc/guix.texi:11928 #, no-wrap msgid "" "$ guix build --log-file gdb -s aarch64-linux\n" @@ -20909,33 +21425,33 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11617 +#: guix-git/doc/guix.texi:11931 msgid "You can freely access a huge library of build logs!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11622 +#: guix-git/doc/guix.texi:11936 #, no-wrap msgid "build failures, debugging" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11628 +#: guix-git/doc/guix.texi:11942 msgid "When defining a new package (@pxref{Defining Packages}), you will probably find yourself spending some time debugging and tweaking the build until it succeeds. To do that, you need to operate the build commands yourself in an environment as close as possible to the one the build daemon uses." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11633 +#: guix-git/doc/guix.texi:11947 msgid "To that end, the first thing to do is to use the @option{--keep-failed} or @option{-K} option of @command{guix build}, which will keep the failed build tree in @file{/tmp} or whatever directory you specified as @env{TMPDIR} (@pxref{Common Build Options, @option{--keep-failed}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11639 +#: guix-git/doc/guix.texi:11953 msgid "From there on, you can @command{cd} to the failed build tree and source the @file{environment-variables} file, which contains all the environment variable definitions that were in place when the build failed. So let's say you're debugging a build failure in package @code{foo}; a typical session would look like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11646 +#: guix-git/doc/guix.texi:11960 #, no-wrap msgid "" "$ guix build foo -K\n" @@ -20946,22 +21462,22 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11650 +#: guix-git/doc/guix.texi:11964 msgid "Now, you can invoke commands as if you were the daemon (almost) and troubleshoot your build process." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11656 +#: guix-git/doc/guix.texi:11970 msgid "Sometimes it happens that, for example, a package's tests pass when you run them manually but they fail when the daemon runs them. This can happen because the daemon runs builds in containers where, unlike in our environment above, network access is missing, @file{/bin/sh} does not exist, etc. (@pxref{Build Environment Setup})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11659 +#: guix-git/doc/guix.texi:11973 msgid "In such cases, you may need to run inspect the build process from within a container similar to the one the build daemon creates:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11667 +#: guix-git/doc/guix.texi:11981 #, no-wrap msgid "" "$ guix build -K foo\n" @@ -20973,708 +21489,714 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11676 +#: guix-git/doc/guix.texi:11990 msgid "Here, @command{guix shell -C} creates a container and spawns a new shell in it (@pxref{Invoking guix shell}). The @command{strace gdb} part adds the @command{strace} and @command{gdb} commands to the container, which you may find handy while debugging. The @option{--no-grafts} option makes sure we get the exact same environment, with ungrafted packages (@pxref{Security Updates}, for more info on grafts)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11679 +#: guix-git/doc/guix.texi:11993 msgid "To get closer to a container like that used by the build daemon, we can remove @file{/bin/sh}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11682 +#: guix-git/doc/guix.texi:11996 #, no-wrap msgid "[env]# rm /bin/sh\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11686 +#: guix-git/doc/guix.texi:12000 msgid "(Don't worry, this is harmless: this is all happening in the throw-away container created by @command{guix shell}.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11689 +#: guix-git/doc/guix.texi:12003 msgid "The @command{strace} command is probably not in the search path, but we can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11692 +#: guix-git/doc/guix.texi:12006 #, no-wrap msgid "[env]# $GUIX_ENVIRONMENT/bin/strace -f -o log make check\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11697 +#: guix-git/doc/guix.texi:12011 msgid "In this way, not only you will have reproduced the environment variables the daemon uses, you will also be running the build process in a container similar to the one the daemon uses." msgstr "" #. type: section -#: guix-git/doc/guix.texi:11700 +#: guix-git/doc/guix.texi:12014 #, no-wrap msgid "Invoking @command{guix edit}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:11702 +#: guix-git/doc/guix.texi:12016 #, no-wrap msgid "guix edit" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11703 +#: guix-git/doc/guix.texi:12017 #, no-wrap msgid "package definition, editing" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11708 +#: guix-git/doc/guix.texi:12022 msgid "So many packages, so many source files! The @command{guix edit} command facilitates the life of users and packagers by pointing their editor at the source file containing the definition of the specified packages. For instance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11711 +#: guix-git/doc/guix.texi:12025 #, no-wrap msgid "guix edit gcc@@4.9 vim\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11717 +#: guix-git/doc/guix.texi:12031 msgid "launches the program specified in the @env{VISUAL} or in the @env{EDITOR} environment variable to view the recipe of GCC@tie{}4.9.3 and that of Vim." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11723 +#: guix-git/doc/guix.texi:12037 msgid "If you are using a Guix Git checkout (@pxref{Building from Git}), or have created your own packages on @env{GUIX_PACKAGE_PATH} (@pxref{Package Modules}), you will be able to edit the package recipes. In other cases, you will be able to examine the read-only recipes for packages currently in the store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11728 +#: guix-git/doc/guix.texi:12042 msgid "Instead of @env{GUIX_PACKAGE_PATH}, the command-line option @option{--load-path=@var{directory}} (or in short @option{-L @var{directory}}) allows you to add @var{directory} to the front of the package module search path and so make your own packages visible." msgstr "" #. type: section -#: guix-git/doc/guix.texi:11730 +#: guix-git/doc/guix.texi:12044 #, no-wrap msgid "Invoking @command{guix download}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:11732 +#: guix-git/doc/guix.texi:12046 #, no-wrap msgid "guix download" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11733 +#: guix-git/doc/guix.texi:12047 #, no-wrap msgid "downloading package sources" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11740 +#: guix-git/doc/guix.texi:12054 msgid "When writing a package definition, developers typically need to download a source tarball, compute its SHA256 hash, and write that hash in the package definition (@pxref{Defining Packages}). The @command{guix download} tool helps with this task: it downloads a file from the given URI, adds it to the store, and prints both its file name in the store and its SHA256 hash." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11747 +#: guix-git/doc/guix.texi:12061 msgid "The fact that the downloaded file is added to the store saves bandwidth: when the developer eventually tries to build the newly defined package with @command{guix build}, the source tarball will not have to be downloaded again because it is already in the store. It is also a convenient way to temporarily stash files, which may be deleted eventually (@pxref{Invoking guix gc})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11755 +#: guix-git/doc/guix.texi:12069 msgid "The @command{guix download} command supports the same URIs as used in package definitions. In particular, it supports @code{mirror://} URIs. @code{https} URIs (HTTP over TLS) are supported @emph{provided} the Guile bindings for GnuTLS are available in the user's environment; when they are not available, an error is raised. @xref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11760 +#: guix-git/doc/guix.texi:12074 msgid "@command{guix download} verifies HTTPS server certificates by loading the certificates of X.509 authorities from the directory pointed to by the @env{SSL_CERT_DIR} environment variable (@pxref{X.509 Certificates}), unless @option{--no-check-certificate} is used." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11762 guix-git/doc/guix.texi:13565 +#: guix-git/doc/guix.texi:12076 guix-git/doc/guix.texi:13922 msgid "The following options are available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11764 guix-git/doc/guix.texi:11808 +#: guix-git/doc/guix.texi:12078 guix-git/doc/guix.texi:12122 #, no-wrap msgid "--hash=@var{algorithm}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11765 guix-git/doc/guix.texi:11809 +#: guix-git/doc/guix.texi:12079 guix-git/doc/guix.texi:12123 #, no-wrap msgid "-H @var{algorithm}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11768 +#: guix-git/doc/guix.texi:12082 msgid "Compute a hash using the specified @var{algorithm}. @xref{Invoking guix hash}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11769 guix-git/doc/guix.texi:11818 +#: guix-git/doc/guix.texi:12083 guix-git/doc/guix.texi:12132 #, no-wrap msgid "--format=@var{fmt}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11770 guix-git/doc/guix.texi:11819 +#: guix-git/doc/guix.texi:12084 guix-git/doc/guix.texi:12133 #, no-wrap msgid "-f @var{fmt}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11773 +#: guix-git/doc/guix.texi:12087 msgid "Write the hash in the format specified by @var{fmt}. For more information on the valid values for @var{fmt}, @pxref{Invoking guix hash}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11774 +#: guix-git/doc/guix.texi:12088 #, no-wrap msgid "--no-check-certificate" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11776 +#: guix-git/doc/guix.texi:12090 msgid "Do not validate the X.509 certificates of HTTPS servers." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11780 +#: guix-git/doc/guix.texi:12094 msgid "When using this option, you have @emph{absolutely no guarantee} that you are communicating with the authentic server responsible for the given URL, which makes you vulnerable to ``man-in-the-middle'' attacks." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11781 +#: guix-git/doc/guix.texi:12095 #, no-wrap msgid "--output=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11782 +#: guix-git/doc/guix.texi:12096 #, no-wrap msgid "-o @var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11785 +#: guix-git/doc/guix.texi:12099 msgid "Save the downloaded file to @var{file} instead of adding it to the store." msgstr "" #. type: section -#: guix-git/doc/guix.texi:11788 +#: guix-git/doc/guix.texi:12102 #, no-wrap msgid "Invoking @command{guix hash}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:11790 +#: guix-git/doc/guix.texi:12104 #, no-wrap msgid "guix hash" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11795 +#: guix-git/doc/guix.texi:12109 msgid "The @command{guix hash} command computes the hash of a file. It is primarily a convenience tool for anyone contributing to the distribution: it computes the cryptographic hash of one or more files, which can be used in the definition of a package (@pxref{Defining Packages})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11800 +#: guix-git/doc/guix.texi:12114 #, no-wrap msgid "guix hash @var{option} @var{file} ...\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11805 +#: guix-git/doc/guix.texi:12119 msgid "When @var{file} is @code{-} (a hyphen), @command{guix hash} computes the hash of data read from standard input. @command{guix hash} has the following options:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11812 +#: guix-git/doc/guix.texi:12126 msgid "Compute a hash using the specified @var{algorithm}, @code{sha256} by default." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11817 -msgid "@var{algorithm} must the name of a cryptographic hash algorithm supported by Libgcrypt @i{via} Guile-Gcrypt---e.g., @code{sha512} or @code{sha3-256} (@pxref{Hash Functions,,, guile-gcrypt, Guile-Gcrypt Reference Manual})." +#: guix-git/doc/guix.texi:12131 +msgid "@var{algorithm} must be the name of a cryptographic hash algorithm supported by Libgcrypt @i{via} Guile-Gcrypt---e.g., @code{sha512} or @code{sha3-256} (@pxref{Hash Functions,,, guile-gcrypt, Guile-Gcrypt Reference Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11821 +#: guix-git/doc/guix.texi:12135 msgid "Write the hash in the format specified by @var{fmt}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11824 +#: guix-git/doc/guix.texi:12138 msgid "Supported formats: @code{base64}, @code{nix-base32}, @code{base32}, @code{base16} (@code{hex} and @code{hexadecimal} can be used as well)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11828 +#: guix-git/doc/guix.texi:12142 msgid "If the @option{--format} option is not specified, @command{guix hash} will output the hash in @code{nix-base32}. This representation is used in the definitions of packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11833 -msgid "This option is deprecated in favor of @option{--serializer}. It is a legacy alias for @var{type} sets to @code{nar}." +#: guix-git/doc/guix.texi:12148 +msgid "The @option{--recursive} option is deprecated in favor of @option{--serializer=nar} (see below); @option{-r} remains accepted as a convenient shorthand." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11834 +#: guix-git/doc/guix.texi:12149 #, no-wrap msgid "--serializer=@var{type}" msgstr "" +#. type: itemx +#: guix-git/doc/guix.texi:12150 +#, no-wrap +msgid "-S @var{type}" +msgstr "" + #. type: table -#: guix-git/doc/guix.texi:11837 +#: guix-git/doc/guix.texi:12152 msgid "Compute the hash on @var{file} using @var{type} serialization." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11839 +#: guix-git/doc/guix.texi:12154 msgid "@var{type} may be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11841 guix-git/doc/guix.texi:13918 -#: guix-git/doc/guix.texi:17405 guix-git/doc/guix.texi:19679 +#: guix-git/doc/guix.texi:12156 guix-git/doc/guix.texi:14275 +#: guix-git/doc/guix.texi:17767 guix-git/doc/guix.texi:20041 #, no-wrap msgid "none" -msgstr "" +msgstr "žiadny" #. type: table -#: guix-git/doc/guix.texi:11843 +#: guix-git/doc/guix.texi:12158 msgid "This is the default: it computes the hash of a file's contents." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11844 +#: guix-git/doc/guix.texi:12159 #, no-wrap msgid "nar" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11854 -msgid "Compute the hash of a ``normalized archive'' (or ``nar'') containing @var{file}, including its children if it is a directory. Some of the metadata of @var{file} is part of the archive; for instance, when @var{file} is a regular file, the hash is different depending on whether @var{file} is executable or not. Metadata such as time stamps has no impact on the hash (@pxref{Invoking guix archive}, for more info on the nar format)." +#: guix-git/doc/guix.texi:12169 +msgid "Compute the hash of a ``normalized archive'' (or ``nar'') containing @var{file}, including its children if it is a directory. Some of the metadata of @var{file} is part of the archive; for instance, when @var{file} is a regular file, the hash is different depending on whether @var{file} is executable or not. Metadata such as time stamps have no impact on the hash (@pxref{Invoking guix archive}, for more info on the nar format)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11855 +#: guix-git/doc/guix.texi:12170 #, no-wrap msgid "git" -msgstr "" +msgstr "git" #. type: table -#: guix-git/doc/guix.texi:11858 -msgid "Compute the has of the file or directory as a Git ``tree'', following the same method as the Git version control system." +#: guix-git/doc/guix.texi:12173 +msgid "Compute the hash of the file or directory as a Git ``tree'', following the same method as the Git version control system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11860 +#: guix-git/doc/guix.texi:12175 #, no-wrap msgid "--exclude-vcs" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11861 guix-git/doc/guix.texi:13038 +#: guix-git/doc/guix.texi:12176 guix-git/doc/guix.texi:13395 #, no-wrap msgid "-x" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11864 +#: guix-git/doc/guix.texi:12179 msgid "When combined with @option{--recursive}, exclude version control system directories (@file{.bzr}, @file{.git}, @file{.hg}, etc.)." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:11865 +#: guix-git/doc/guix.texi:12180 #, no-wrap msgid "git-fetch" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11869 +#: guix-git/doc/guix.texi:12184 msgid "As an example, here is how you would compute the hash of a Git checkout, which is useful when using the @code{git-fetch} method (@pxref{origin Reference}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11874 +#: guix-git/doc/guix.texi:12189 #, no-wrap msgid "" "$ git clone http://example.org/foo.git\n" "$ cd foo\n" -"$ guix hash -rx .\n" +"$ guix hash -x --serializer=nar .\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11878 guix-git/doc/guix.texi:11883 +#: guix-git/doc/guix.texi:12193 guix-git/doc/guix.texi:12198 #, no-wrap msgid "Invoking @command{guix import}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11880 +#: guix-git/doc/guix.texi:12195 #, no-wrap msgid "importing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11881 +#: guix-git/doc/guix.texi:12196 #, no-wrap msgid "package import" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11882 +#: guix-git/doc/guix.texi:12197 #, no-wrap msgid "package conversion" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11890 +#: guix-git/doc/guix.texi:12205 msgid "The @command{guix import} command is useful for people who would like to add a package to the distribution with as little work as possible---a legitimate demand. The command knows of a few repositories from which it can ``import'' package metadata. The result is a package definition, or a template thereof, in the format we know (@pxref{Defining Packages})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11895 +#: guix-git/doc/guix.texi:12210 #, no-wrap msgid "guix import @var{importer} @var{options}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11900 +#: guix-git/doc/guix.texi:12215 msgid "@var{importer} specifies the source from which to import package metadata, and @var{options} specifies a package identifier and other options specific to @var{importer}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11904 +#: guix-git/doc/guix.texi:12219 msgid "Some of the importers rely on the ability to run the @command{gpgv} command. For these, GnuPG must be installed and in @code{$PATH}; run @code{guix install gnupg} if needed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11906 +#: guix-git/doc/guix.texi:12221 msgid "Currently, the available ``importers'' are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11908 guix-git/doc/guix.texi:12546 +#: guix-git/doc/guix.texi:12223 guix-git/doc/guix.texi:12861 #, no-wrap msgid "gnu" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11912 +#: guix-git/doc/guix.texi:12227 msgid "Import metadata for the given GNU package. This provides a template for the latest version of that GNU package, including the hash of its source tarball, and its canonical synopsis and description." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11915 +#: guix-git/doc/guix.texi:12230 msgid "Additional information such as the package dependencies and its license needs to be figured out manually." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11918 +#: guix-git/doc/guix.texi:12233 msgid "For example, the following command returns a package definition for GNU@tie{}Hello:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11921 +#: guix-git/doc/guix.texi:12236 #, no-wrap msgid "guix import gnu hello\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11924 guix-git/doc/guix.texi:12165 -#: guix-git/doc/guix.texi:12215 guix-git/doc/guix.texi:12244 +#: guix-git/doc/guix.texi:12239 guix-git/doc/guix.texi:12480 +#: guix-git/doc/guix.texi:12530 guix-git/doc/guix.texi:12559 msgid "Specific command-line options are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11926 guix-git/doc/guix.texi:12743 +#: guix-git/doc/guix.texi:12241 guix-git/doc/guix.texi:13058 #, no-wrap msgid "--key-download=@var{policy}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11930 +#: guix-git/doc/guix.texi:12245 msgid "As for @command{guix refresh}, specify the policy to handle missing OpenPGP keys when verifying the package signature. @xref{Invoking guix refresh, @option{--key-download}}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11932 guix-git/doc/guix.texi:11933 -#: guix-git/doc/guix.texi:12570 +#: guix-git/doc/guix.texi:12247 guix-git/doc/guix.texi:12248 +#: guix-git/doc/guix.texi:12885 #, no-wrap msgid "pypi" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11940 +#: guix-git/doc/guix.texi:12255 msgid "Import metadata from the @uref{https://pypi.python.org/, Python Package Index}. Information is taken from the JSON-formatted description available at @code{pypi.python.org} and usually includes all the relevant information, including package dependencies. For maximum efficiency, it is recommended to install the @command{unzip} utility, so that the importer can unzip Python wheels and gather data from them." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11943 +#: guix-git/doc/guix.texi:12258 msgid "The command below imports metadata for the latest version of the @code{itsdangerous} Python package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11946 +#: guix-git/doc/guix.texi:12261 #, no-wrap msgid "guix import pypi itsdangerous\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11949 guix-git/doc/guix.texi:12052 -#: guix-git/doc/guix.texi:12393 +#: guix-git/doc/guix.texi:12264 guix-git/doc/guix.texi:12367 +#: guix-git/doc/guix.texi:12708 msgid "You can also ask for a specific version:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11952 +#: guix-git/doc/guix.texi:12267 #, no-wrap msgid "guix import pypi itsdangerous@@1.1.0\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11960 guix-git/doc/guix.texi:11985 -#: guix-git/doc/guix.texi:12017 guix-git/doc/guix.texi:12188 -#: guix-git/doc/guix.texi:12229 guix-git/doc/guix.texi:12280 -#: guix-git/doc/guix.texi:12305 guix-git/doc/guix.texi:12321 -#: guix-git/doc/guix.texi:12369 guix-git/doc/guix.texi:12405 +#: guix-git/doc/guix.texi:12275 guix-git/doc/guix.texi:12300 +#: guix-git/doc/guix.texi:12332 guix-git/doc/guix.texi:12503 +#: guix-git/doc/guix.texi:12544 guix-git/doc/guix.texi:12595 +#: guix-git/doc/guix.texi:12620 guix-git/doc/guix.texi:12636 +#: guix-git/doc/guix.texi:12684 guix-git/doc/guix.texi:12720 msgid "Traverse the dependency graph of the given upstream package recursively and generate package expressions for all those packages that are not yet in Guix." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11962 guix-git/doc/guix.texi:11963 -#: guix-git/doc/guix.texi:12572 +#: guix-git/doc/guix.texi:12277 guix-git/doc/guix.texi:12278 +#: guix-git/doc/guix.texi:12887 #, no-wrap msgid "gem" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11972 +#: guix-git/doc/guix.texi:12287 msgid "Import metadata from @uref{https://rubygems.org/, RubyGems}. Information is taken from the JSON-formatted description available at @code{rubygems.org} and includes most relevant information, including runtime dependencies. There are some caveats, however. The metadata doesn't distinguish between synopses and descriptions, so the same string is used for both fields. Additionally, the details of non-Ruby dependencies required to build native extensions is unavailable and left as an exercise to the packager." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11974 +#: guix-git/doc/guix.texi:12289 msgid "The command below imports metadata for the @code{rails} Ruby package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11977 +#: guix-git/doc/guix.texi:12292 #, no-wrap msgid "guix import gem rails\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11987 guix-git/doc/guix.texi:11988 +#: guix-git/doc/guix.texi:12302 guix-git/doc/guix.texi:12303 #, no-wrap msgid "minetest" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11989 +#: guix-git/doc/guix.texi:12304 #, no-wrap msgid "ContentDB" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11998 +#: guix-git/doc/guix.texi:12313 msgid "Import metadata from @uref{https://content.minetest.net, ContentDB}. Information is taken from the JSON-formatted metadata provided through @uref{https://content.minetest.net/help/api/, ContentDB's API} and includes most relevant information, including dependencies. There are some caveats, however. The license information is often incomplete. The commit hash is sometimes missing. The descriptions are in the Markdown format, but Guix uses Texinfo instead. Texture packs and subgames are unsupported." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12000 +#: guix-git/doc/guix.texi:12315 msgid "The command below imports metadata for the Mesecons mod by Jeija:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12003 +#: guix-git/doc/guix.texi:12318 #, no-wrap msgid "guix import minetest Jeija/mesecons\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12006 +#: guix-git/doc/guix.texi:12321 msgid "The author name can also be left out:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12009 +#: guix-git/doc/guix.texi:12324 #, no-wrap msgid "guix import minetest mesecons\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12019 guix-git/doc/guix.texi:12568 +#: guix-git/doc/guix.texi:12334 guix-git/doc/guix.texi:12883 #, no-wrap msgid "cpan" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12020 +#: guix-git/doc/guix.texi:12335 #, no-wrap msgid "CPAN" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12028 +#: guix-git/doc/guix.texi:12343 msgid "Import metadata from @uref{https://www.metacpan.org/, MetaCPAN}. Information is taken from the JSON-formatted metadata provided through @uref{https://fastapi.metacpan.org/, MetaCPAN's API} and includes most relevant information, such as module dependencies. License information should be checked closely. If Perl is available in the store, then the @code{corelist} utility will be used to filter core modules out of the list of dependencies." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12031 +#: guix-git/doc/guix.texi:12346 msgid "The command command below imports metadata for the Acme::Boolean Perl module:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12034 +#: guix-git/doc/guix.texi:12349 #, no-wrap msgid "guix import cpan Acme::Boolean\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12036 guix-git/doc/guix.texi:12564 +#: guix-git/doc/guix.texi:12351 guix-git/doc/guix.texi:12879 #, no-wrap msgid "cran" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12037 +#: guix-git/doc/guix.texi:12352 #, no-wrap msgid "CRAN" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12038 +#: guix-git/doc/guix.texi:12353 #, no-wrap msgid "Bioconductor" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12042 +#: guix-git/doc/guix.texi:12357 msgid "Import metadata from @uref{https://cran.r-project.org/, CRAN}, the central repository for the @uref{https://r-project.org, GNU@tie{}R statistical and graphical environment}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12044 +#: guix-git/doc/guix.texi:12359 msgid "Information is extracted from the @file{DESCRIPTION} file of the package." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12046 +#: guix-git/doc/guix.texi:12361 msgid "The command command below imports metadata for the Cairo R package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12049 +#: guix-git/doc/guix.texi:12364 #, no-wrap msgid "guix import cran Cairo\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12055 +#: guix-git/doc/guix.texi:12370 #, no-wrap msgid "guix import cran rasterVis@@0.50.3\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12060 +#: guix-git/doc/guix.texi:12375 msgid "When @option{--recursive} is added, the importer will traverse the dependency graph of the given upstream package recursively and generate package expressions for all those packages that are not yet in Guix." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12067 +#: guix-git/doc/guix.texi:12382 msgid "When @option{--style=specification} is added, the importer will generate package definitions whose inputs are package specifications instead of references to package variables. This is useful when generated package definitions are to be appended to existing user modules, as the list of used package modules need not be changed. The default is @option{--style=variable}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12072 +#: guix-git/doc/guix.texi:12387 msgid "When @option{--archive=bioconductor} is added, metadata is imported from @uref{https://www.bioconductor.org/, Bioconductor}, a repository of R packages for the analysis and comprehension of high-throughput genomic data in bioinformatics." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12075 +#: guix-git/doc/guix.texi:12390 msgid "Information is extracted from the @file{DESCRIPTION} file contained in the package archive." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12077 +#: guix-git/doc/guix.texi:12392 msgid "The command below imports metadata for the GenomicRanges R package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12080 +#: guix-git/doc/guix.texi:12395 #, no-wrap msgid "guix import cran --archive=bioconductor GenomicRanges\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12085 +#: guix-git/doc/guix.texi:12400 msgid "Finally, you can also import R packages that have not yet been published on CRAN or Bioconductor as long as they are in a git repository. Use @option{--archive=git} followed by the URL of the git repository:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12088 +#: guix-git/doc/guix.texi:12403 #, no-wrap msgid "guix import cran --archive=git https://github.com/immunogenomics/harmony\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12090 +#: guix-git/doc/guix.texi:12405 #, no-wrap msgid "texlive" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12091 +#: guix-git/doc/guix.texi:12406 #, no-wrap msgid "TeX Live" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12092 +#: guix-git/doc/guix.texi:12407 #, no-wrap msgid "CTAN" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12096 +#: guix-git/doc/guix.texi:12411 msgid "Import TeX package information from the TeX Live package database for TeX packages that are part of the @uref{https://www.tug.org/texlive/, TeX Live distribution}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12101 +#: guix-git/doc/guix.texi:12416 msgid "Information about the package is obtained from the TeX Live package database, a plain text file that is included in the @code{texlive-bin} package. The source code is downloaded from possibly multiple locations in the SVN repository of the Tex Live project." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12104 +#: guix-git/doc/guix.texi:12419 msgid "The command command below imports metadata for the @code{fontspec} TeX package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12107 +#: guix-git/doc/guix.texi:12422 #, no-wrap msgid "guix import texlive fontspec\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12110 +#: guix-git/doc/guix.texi:12425 #, no-wrap msgid "JSON, import" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12113 +#: guix-git/doc/guix.texi:12428 msgid "Import package metadata from a local JSON file. Consider the following example package definition in JSON format:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12126 +#: guix-git/doc/guix.texi:12441 #, no-wrap msgid "" "@{\n" @@ -21691,17 +22213,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12132 +#: guix-git/doc/guix.texi:12447 msgid "The field names are the same as for the @code{} record (@xref{Defining Packages}). References to other packages are provided as JSON lists of quoted package specification strings such as @code{guile} or @code{guile@@2.0}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12135 +#: guix-git/doc/guix.texi:12450 msgid "The importer also supports a more explicit source definition using the common fields for @code{} records:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12148 +#: guix-git/doc/guix.texi:12463 #, no-wrap msgid "" "@{\n" @@ -21718,382 +22240,382 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12152 +#: guix-git/doc/guix.texi:12467 msgid "The command below reads metadata from the JSON file @code{hello.json} and outputs a package expression:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12155 +#: guix-git/doc/guix.texi:12470 #, no-wrap msgid "guix import json hello.json\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12157 guix-git/doc/guix.texi:12158 -#: guix-git/doc/guix.texi:12576 +#: guix-git/doc/guix.texi:12472 guix-git/doc/guix.texi:12473 +#: guix-git/doc/guix.texi:12891 #, no-wrap msgid "hackage" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12163 +#: guix-git/doc/guix.texi:12478 msgid "Import metadata from the Haskell community's central package archive @uref{https://hackage.haskell.org/, Hackage}. Information is taken from Cabal files and includes all the relevant information, including package dependencies." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12167 +#: guix-git/doc/guix.texi:12482 #, no-wrap msgid "--stdin" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12168 +#: guix-git/doc/guix.texi:12483 #, no-wrap msgid "-s" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12170 +#: guix-git/doc/guix.texi:12485 msgid "Read a Cabal file from standard input." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12170 guix-git/doc/guix.texi:12217 +#: guix-git/doc/guix.texi:12485 guix-git/doc/guix.texi:12532 #, no-wrap msgid "--no-test-dependencies" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12173 guix-git/doc/guix.texi:12220 +#: guix-git/doc/guix.texi:12488 guix-git/doc/guix.texi:12535 msgid "Do not include dependencies required only by the test suites." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12173 +#: guix-git/doc/guix.texi:12488 #, no-wrap msgid "--cabal-environment=@var{alist}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12174 +#: guix-git/doc/guix.texi:12489 #, no-wrap msgid "-e @var{alist}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12183 +#: guix-git/doc/guix.texi:12498 msgid "@var{alist} is a Scheme alist defining the environment in which the Cabal conditionals are evaluated. The accepted keys are: @code{os}, @code{arch}, @code{impl} and a string representing the name of a flag. The value associated with a flag has to be either the symbol @code{true} or @code{false}. The value associated with other keys has to conform to the Cabal file format definition. The default value associated with the keys @code{os}, @code{arch} and @code{impl} is @samp{linux}, @samp{x86_64} and @samp{ghc}, respectively." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12193 +#: guix-git/doc/guix.texi:12508 msgid "The command below imports metadata for the latest version of the HTTP Haskell package without including test dependencies and specifying the value of the flag @samp{network-uri} as @code{false}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12196 +#: guix-git/doc/guix.texi:12511 #, no-wrap msgid "guix import hackage -t -e \"'((\\\"network-uri\\\" . false))\" HTTP\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12200 +#: guix-git/doc/guix.texi:12515 msgid "A specific package version may optionally be specified by following the package name by an at-sign and a version number as in the following example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12203 +#: guix-git/doc/guix.texi:12518 #, no-wrap msgid "guix import hackage mtl@@2.1.3.1\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12205 guix-git/doc/guix.texi:12206 -#: guix-git/doc/guix.texi:12578 +#: guix-git/doc/guix.texi:12520 guix-git/doc/guix.texi:12521 +#: guix-git/doc/guix.texi:12893 #, no-wrap msgid "stackage" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12213 +#: guix-git/doc/guix.texi:12528 msgid "The @code{stackage} importer is a wrapper around the @code{hackage} one. It takes a package name, looks up the package version included in a long-term support (LTS) @uref{https://www.stackage.org, Stackage} release and uses the @code{hackage} importer to retrieve its metadata. Note that it is up to you to select an LTS release compatible with the GHC compiler used by Guix." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12220 +#: guix-git/doc/guix.texi:12535 #, no-wrap msgid "--lts-version=@var{version}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12221 +#: guix-git/doc/guix.texi:12536 #, no-wrap msgid "-l @var{version}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12224 +#: guix-git/doc/guix.texi:12539 msgid "@var{version} is the desired LTS release version. If omitted the latest release is used." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12233 +#: guix-git/doc/guix.texi:12548 msgid "The command below imports metadata for the HTTP Haskell package included in the LTS Stackage release version 7.18:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12236 +#: guix-git/doc/guix.texi:12551 #, no-wrap msgid "guix import stackage --lts-version=7.18 HTTP\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12238 guix-git/doc/guix.texi:12239 -#: guix-git/doc/guix.texi:12562 +#: guix-git/doc/guix.texi:12553 guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12877 #, no-wrap msgid "elpa" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12242 +#: guix-git/doc/guix.texi:12557 msgid "Import metadata from an Emacs Lisp Package Archive (ELPA) package repository (@pxref{Packages,,, emacs, The GNU Emacs Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12246 +#: guix-git/doc/guix.texi:12561 #, no-wrap msgid "--archive=@var{repo}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12247 +#: guix-git/doc/guix.texi:12562 #, no-wrap msgid "-a @var{repo}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12251 +#: guix-git/doc/guix.texi:12566 msgid "@var{repo} identifies the archive repository from which to retrieve the information. Currently the supported repositories and their identifiers are:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12255 +#: guix-git/doc/guix.texi:12570 msgid "@uref{https://elpa.gnu.org/packages, GNU}, selected by the @code{gnu} identifier. This is the default." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12261 +#: guix-git/doc/guix.texi:12576 msgid "Packages from @code{elpa.gnu.org} are signed with one of the keys contained in the GnuPG keyring at @file{share/emacs/25.1/etc/package-keyring.gpg} (or similar) in the @code{emacs} package (@pxref{Package Installation, ELPA package signatures,, emacs, The GNU Emacs Manual})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12265 +#: guix-git/doc/guix.texi:12580 msgid "@uref{https://elpa.nongnu.org/nongnu/, NonGNU}, selected by the @code{nongnu} identifier." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12269 +#: guix-git/doc/guix.texi:12584 msgid "@uref{https://stable.melpa.org/packages, MELPA-Stable}, selected by the @code{melpa-stable} identifier." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12273 +#: guix-git/doc/guix.texi:12588 msgid "@uref{https://melpa.org/packages, MELPA}, selected by the @code{melpa} identifier." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12282 guix-git/doc/guix.texi:12283 -#: guix-git/doc/guix.texi:12580 +#: guix-git/doc/guix.texi:12597 guix-git/doc/guix.texi:12598 +#: guix-git/doc/guix.texi:12895 #, no-wrap msgid "crate" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12286 +#: guix-git/doc/guix.texi:12601 msgid "Import metadata from the crates.io Rust package repository @uref{https://crates.io, crates.io}, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12289 +#: guix-git/doc/guix.texi:12604 #, no-wrap msgid "guix import crate blake2-rfc\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12292 +#: guix-git/doc/guix.texi:12607 msgid "The crate importer also allows you to specify a version string:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12295 +#: guix-git/doc/guix.texi:12610 #, no-wrap msgid "guix import crate constant-time-eq@@0.1.0\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12298 guix-git/doc/guix.texi:12314 -#: guix-git/doc/guix.texi:12362 guix-git/doc/guix.texi:12399 +#: guix-git/doc/guix.texi:12613 guix-git/doc/guix.texi:12629 +#: guix-git/doc/guix.texi:12677 guix-git/doc/guix.texi:12714 msgid "Additional options include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12307 +#: guix-git/doc/guix.texi:12622 #, no-wrap msgid "opam" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12308 +#: guix-git/doc/guix.texi:12623 #, no-wrap msgid "OPAM" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12309 +#: guix-git/doc/guix.texi:12624 #, no-wrap msgid "OCaml" -msgstr "" +msgstr "OCaml" #. type: table -#: guix-git/doc/guix.texi:12312 +#: guix-git/doc/guix.texi:12627 msgid "Import metadata from the @uref{https://opam.ocaml.org/, OPAM} package repository used by the OCaml community." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12321 +#: guix-git/doc/guix.texi:12636 #, no-wrap msgid "--repo" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12325 +#: guix-git/doc/guix.texi:12640 msgid "By default, packages are searched in the official OPAM repository. This option, which can be used more than once, lets you add other repositories which will be searched for packages. It accepts as valid arguments:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12327 +#: guix-git/doc/guix.texi:12642 #, no-wrap msgid "the name of a known repository - can be one of @code{opam}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12330 +#: guix-git/doc/guix.texi:12645 msgid "@code{coq} (equivalent to @code{coq-released}), @code{coq-core-dev}, @code{coq-extra-dev} or @code{grew}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12330 +#: guix-git/doc/guix.texi:12645 #, no-wrap msgid "the URL of a repository as expected by the" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12334 +#: guix-git/doc/guix.texi:12649 msgid "@code{opam repository add} command (for instance, the URL equivalent of the above @code{opam} name would be @uref{https://opam.ocaml.org})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12334 +#: guix-git/doc/guix.texi:12649 #, no-wrap msgid "the path to a local copy of a repository (a directory containing a" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12336 +#: guix-git/doc/guix.texi:12651 msgid "@file{packages/} sub-directory)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12341 +#: guix-git/doc/guix.texi:12656 msgid "Repositories are assumed to be passed to this option by order of preference. The additional repositories will not replace the default @code{opam} repository, which is always kept as a fallback." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12346 +#: guix-git/doc/guix.texi:12661 msgid "Also, please note that versions are not compared across repositories. The first repository (from left to right) that has at least one version of a given package will prevail over any others, and the version imported will be the latest one found @emph{in this repository only}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12349 guix-git/doc/guix.texi:12350 +#: guix-git/doc/guix.texi:12664 guix-git/doc/guix.texi:12665 #, no-wrap msgid "go" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12353 +#: guix-git/doc/guix.texi:12668 msgid "Import metadata for a Go module using @uref{https://proxy.golang.org, proxy.golang.org}." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12356 +#: guix-git/doc/guix.texi:12671 #, no-wrap msgid "guix import go gopkg.in/yaml.v2\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12360 +#: guix-git/doc/guix.texi:12675 msgid "It is possible to use a package specification with a @code{@@VERSION} suffix to import a specific version." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12369 +#: guix-git/doc/guix.texi:12684 #, no-wrap msgid "--pin-versions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12377 +#: guix-git/doc/guix.texi:12692 msgid "When using this option, the importer preserves the exact versions of the Go modules dependencies instead of using their latest available versions. This can be useful when attempting to import packages that recursively depend on former versions of themselves to build. When using this mode, the symbol of the package is made by appending the version to its name, so that multiple versions of the same package can coexist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12379 guix-git/doc/guix.texi:12380 -#: guix-git/doc/guix.texi:12560 +#: guix-git/doc/guix.texi:12694 guix-git/doc/guix.texi:12695 +#: guix-git/doc/guix.texi:12875 #, no-wrap msgid "egg" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12387 +#: guix-git/doc/guix.texi:12702 msgid "Import metadata for @uref{https://wiki.call-cc.org/eggs, CHICKEN eggs}. The information is taken from @file{PACKAGE.egg} files found in the @uref{git://code.call-cc.org/eggs-5-all, eggs-5-all} Git repository. However, it does not provide all the information that we need, there is no ``description'' field, and the licenses used are not always precise (BSD is often used instead of BSD-N)." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12390 +#: guix-git/doc/guix.texi:12705 #, no-wrap msgid "guix import egg sourcehut\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12396 +#: guix-git/doc/guix.texi:12711 #, no-wrap msgid "guix import egg arrays@@1.0\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12411 +#: guix-git/doc/guix.texi:12726 msgid "The structure of the @command{guix import} code is modular. It would be useful to have more importers for other package formats, and your help is welcome here (@pxref{Contributing})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:12413 +#: guix-git/doc/guix.texi:12728 #, no-wrap msgid "Invoking @command{guix refresh}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:12415 +#: guix-git/doc/guix.texi:12730 #, no-wrap msgid "guix refresh" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12423 +#: guix-git/doc/guix.texi:12738 msgid "The primary audience of the @command{guix refresh} command is packagers. As a user, you may be interested in the @option{--with-latest} option, which can bring you package update superpowers built upon @command{guix refresh} (@pxref{Package Transformation Options, @option{--with-latest}}). By default, @command{guix refresh} reports any packages provided by the distribution that are outdated compared to the latest upstream version, like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12428 +#: guix-git/doc/guix.texi:12743 #, no-wrap msgid "" "$ guix refresh\n" @@ -22102,12 +22624,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12432 +#: guix-git/doc/guix.texi:12747 msgid "Alternatively, one can specify packages to consider, in which case a warning is emitted for packages that lack an updater:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12437 +#: guix-git/doc/guix.texi:12752 #, no-wrap msgid "" "$ guix refresh coreutils guile guile-ssh\n" @@ -22116,17 +22638,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12446 +#: guix-git/doc/guix.texi:12761 msgid "@command{guix refresh} browses the upstream repository of each package and determines the highest version number of the releases therein. The command knows how to update specific types of packages: GNU packages, ELPA packages, etc.---see the documentation for @option{--type} below. There are many packages, though, for which it lacks a method to determine whether a new upstream release is available. However, the mechanism is extensible, so feel free to get in touch with us to add a new method!" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12451 +#: guix-git/doc/guix.texi:12766 msgid "Consider the packages specified, and all the packages upon which they depend." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12459 +#: guix-git/doc/guix.texi:12774 #, no-wrap msgid "" "$ guix refresh --recursive coreutils\n" @@ -22138,12 +22660,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12467 +#: guix-git/doc/guix.texi:12782 msgid "Sometimes the upstream name differs from the package name used in Guix, and @command{guix refresh} needs a little help. Most updaters honor the @code{upstream-name} property in package definitions, which can be used to that effect:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12474 +#: guix-git/doc/guix.texi:12789 #, no-wrap msgid "" "(define-public network-manager\n" @@ -22154,325 +22676,325 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12483 +#: guix-git/doc/guix.texi:12798 msgid "When passed @option{--update}, it modifies distribution source files to update the version numbers and source tarball hashes of those package recipes (@pxref{Defining Packages}). This is achieved by downloading each package's latest source tarball and its associated OpenPGP signature, authenticating the downloaded tarball against its signature using @command{gpgv}, and finally computing its hash---note that GnuPG must be installed and in @code{$PATH}; run @code{guix install gnupg} if needed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12489 +#: guix-git/doc/guix.texi:12804 msgid "When the public key used to sign the tarball is missing from the user's keyring, an attempt is made to automatically retrieve it from a public key server; when this is successful, the key is added to the user's keyring; otherwise, @command{guix refresh} reports an error." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12491 +#: guix-git/doc/guix.texi:12806 msgid "The following options are supported:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12499 guix-git/doc/guix.texi:13447 +#: guix-git/doc/guix.texi:12814 guix-git/doc/guix.texi:13804 msgid "This is useful to precisely refer to a package, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12502 +#: guix-git/doc/guix.texi:12817 #, no-wrap msgid "guix refresh -l -e '(@@@@ (gnu packages commencement) glibc-final)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12506 +#: guix-git/doc/guix.texi:12821 msgid "This command lists the dependents of the ``final'' libc (essentially all the packages)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12507 +#: guix-git/doc/guix.texi:12822 #, no-wrap msgid "--update" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12508 +#: guix-git/doc/guix.texi:12823 #, no-wrap msgid "-u" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12512 +#: guix-git/doc/guix.texi:12827 msgid "Update distribution source files (package recipes) in place. This is usually run from a checkout of the Guix source tree (@pxref{Running Guix Before It Is Installed}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12515 +#: guix-git/doc/guix.texi:12830 #, no-wrap msgid "$ ./pre-inst-env guix refresh -s non-core -u\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12518 +#: guix-git/doc/guix.texi:12833 msgid "@xref{Defining Packages}, for more information on package definitions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12519 +#: guix-git/doc/guix.texi:12834 #, no-wrap msgid "--select=[@var{subset}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12520 +#: guix-git/doc/guix.texi:12835 #, no-wrap msgid "-s @var{subset}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12523 +#: guix-git/doc/guix.texi:12838 msgid "Select all the packages in @var{subset}, one of @code{core} or @code{non-core}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12530 +#: guix-git/doc/guix.texi:12845 msgid "The @code{core} subset refers to all the packages at the core of the distribution---i.e., packages that are used to build ``everything else''. This includes GCC, libc, Binutils, Bash, etc. Usually, changing one of these packages in the distribution entails a rebuild of all the others. Thus, such updates are an inconvenience to users in terms of build time or bandwidth used to achieve the upgrade." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12534 +#: guix-git/doc/guix.texi:12849 msgid "The @code{non-core} subset refers to the remaining packages. It is typically useful in cases where an update of the core packages would be inconvenient." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12539 +#: guix-git/doc/guix.texi:12854 msgid "Select all the packages from the manifest in @var{file}. This is useful to check if any packages of the user manifest can be updated." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12540 +#: guix-git/doc/guix.texi:12855 #, no-wrap msgid "--type=@var{updater}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12541 +#: guix-git/doc/guix.texi:12856 #, no-wrap msgid "-t @var{updater}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12544 +#: guix-git/doc/guix.texi:12859 msgid "Select only packages handled by @var{updater} (may be a comma-separated list of updaters). Currently, @var{updater} may be one of:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12548 +#: guix-git/doc/guix.texi:12863 msgid "the updater for GNU packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12548 +#: guix-git/doc/guix.texi:12863 #, no-wrap msgid "savannah" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12550 +#: guix-git/doc/guix.texi:12865 msgid "the updater for packages hosted at @uref{https://savannah.gnu.org, Savannah};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12550 +#: guix-git/doc/guix.texi:12865 #, no-wrap msgid "sourceforge" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12552 +#: guix-git/doc/guix.texi:12867 msgid "the updater for packages hosted at @uref{https://sourceforge.net, SourceForge};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12552 +#: guix-git/doc/guix.texi:12867 #, no-wrap msgid "gnome" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12869 msgid "the updater for GNOME packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12869 #, no-wrap msgid "kde" -msgstr "" +msgstr "kde" #. type: table -#: guix-git/doc/guix.texi:12556 +#: guix-git/doc/guix.texi:12871 msgid "the updater for KDE packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12556 +#: guix-git/doc/guix.texi:12871 #, no-wrap msgid "xorg" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12558 +#: guix-git/doc/guix.texi:12873 msgid "the updater for X.org packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12558 +#: guix-git/doc/guix.texi:12873 #, no-wrap msgid "kernel.org" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12560 +#: guix-git/doc/guix.texi:12875 msgid "the updater for packages hosted on kernel.org;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12562 +#: guix-git/doc/guix.texi:12877 msgid "the updater for @uref{https://wiki.call-cc.org/eggs/, Egg} packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12564 +#: guix-git/doc/guix.texi:12879 msgid "the updater for @uref{https://elpa.gnu.org/, ELPA} packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12566 +#: guix-git/doc/guix.texi:12881 msgid "the updater for @uref{https://cran.r-project.org/, CRAN} packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12566 +#: guix-git/doc/guix.texi:12881 #, no-wrap msgid "bioconductor" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12568 +#: guix-git/doc/guix.texi:12883 msgid "the updater for @uref{https://www.bioconductor.org/, Bioconductor} R packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12570 +#: guix-git/doc/guix.texi:12885 msgid "the updater for @uref{https://www.cpan.org/, CPAN} packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12572 +#: guix-git/doc/guix.texi:12887 msgid "the updater for @uref{https://pypi.python.org, PyPI} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12574 +#: guix-git/doc/guix.texi:12889 msgid "the updater for @uref{https://rubygems.org, RubyGems} packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12574 +#: guix-git/doc/guix.texi:12889 #, no-wrap msgid "github" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12576 +#: guix-git/doc/guix.texi:12891 msgid "the updater for @uref{https://github.com, GitHub} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12578 +#: guix-git/doc/guix.texi:12893 msgid "the updater for @uref{https://hackage.haskell.org, Hackage} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12580 +#: guix-git/doc/guix.texi:12895 msgid "the updater for @uref{https://www.stackage.org, Stackage} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12582 +#: guix-git/doc/guix.texi:12897 msgid "the updater for @uref{https://crates.io, Crates} packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12582 +#: guix-git/doc/guix.texi:12897 #, no-wrap msgid "launchpad" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12584 +#: guix-git/doc/guix.texi:12899 msgid "the updater for @uref{https://launchpad.net, Launchpad} packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12584 +#: guix-git/doc/guix.texi:12899 #, no-wrap msgid "generic-html" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12587 +#: guix-git/doc/guix.texi:12902 msgid "a generic updater that crawls the HTML page where the source tarball of the package is hosted, when applicable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12588 +#: guix-git/doc/guix.texi:12903 #, no-wrap msgid "generic-git" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12593 +#: guix-git/doc/guix.texi:12908 msgid "a generic updater for packages hosted on Git repositories. It tries to be smart about parsing Git tag names, but if it is not able to parse the tag name and compare tags correctly, users can define the following properties for a package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12595 +#: guix-git/doc/guix.texi:12910 #, no-wrap msgid "@code{release-tag-prefix}: a regular expression for matching a prefix of" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12597 guix-git/doc/guix.texi:12600 +#: guix-git/doc/guix.texi:12912 guix-git/doc/guix.texi:12915 msgid "the tag name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12598 +#: guix-git/doc/guix.texi:12913 #, no-wrap msgid "@code{release-tag-suffix}: a regular expression for matching a suffix of" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12601 +#: guix-git/doc/guix.texi:12916 #, no-wrap msgid "@code{release-tag-version-delimiter}: a string used as the delimiter in" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12603 +#: guix-git/doc/guix.texi:12918 msgid "the tag name for separating the numbers of the version." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12604 +#: guix-git/doc/guix.texi:12919 #, no-wrap msgid "@code{accept-pre-releases}: by default, the updater will ignore" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12607 +#: guix-git/doc/guix.texi:12922 msgid "pre-releases; to make it also look for pre-releases, set the this property to @code{#t}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12618 +#: guix-git/doc/guix.texi:12933 #, no-wrap msgid "" "(package\n" @@ -22485,12 +23007,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12625 +#: guix-git/doc/guix.texi:12940 msgid "For instance, the following command only checks for updates of Emacs packages hosted at @code{elpa.gnu.org} and for updates of CRAN packages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12630 +#: guix-git/doc/guix.texi:12945 #, no-wrap msgid "" "$ guix refresh --type=elpa,cran\n" @@ -22499,45 +23021,45 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12632 +#: guix-git/doc/guix.texi:12947 #, no-wrap msgid "--list-updaters" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12633 +#: guix-git/doc/guix.texi:12948 #, no-wrap msgid "-L" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12635 +#: guix-git/doc/guix.texi:12950 msgid "List available updaters and exit (see @option{--type} above)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12638 +#: guix-git/doc/guix.texi:12953 msgid "For each updater, display the fraction of packages it covers; at the end, display the fraction of packages covered by all these updaters." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12642 +#: guix-git/doc/guix.texi:12957 msgid "In addition, @command{guix refresh} can be passed one or more package names, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12645 +#: guix-git/doc/guix.texi:12960 #, no-wrap msgid "$ ./pre-inst-env guix refresh -u emacs idutils gcc@@4.8\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12652 +#: guix-git/doc/guix.texi:12967 msgid "The command above specifically updates the @code{emacs} and @code{idutils} packages. The @option{--select} option would have no effect in this case. You might also want to update definitions that correspond to the packages installed in your profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12656 +#: guix-git/doc/guix.texi:12971 #, no-wrap msgid "" "$ ./pre-inst-env guix refresh -u \\\n" @@ -22545,39 +23067,39 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12662 +#: guix-git/doc/guix.texi:12977 msgid "When considering whether to upgrade a package, it is sometimes convenient to know which packages would be affected by the upgrade and should be checked for compatibility. For this the following option may be used when passing @command{guix refresh} one or more package names:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12665 +#: guix-git/doc/guix.texi:12980 #, no-wrap msgid "--list-dependent" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12666 guix-git/doc/guix.texi:13028 +#: guix-git/doc/guix.texi:12981 guix-git/doc/guix.texi:13385 #, no-wrap msgid "-l" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12669 +#: guix-git/doc/guix.texi:12984 msgid "List top-level dependent packages that would need to be rebuilt as a result of upgrading one or more packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12673 +#: guix-git/doc/guix.texi:12988 msgid "@xref{Invoking guix graph, the @code{reverse-package} type of @command{guix graph}}, for information on how to visualize the list of dependents of a package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12679 +#: guix-git/doc/guix.texi:12994 msgid "Be aware that the @option{--list-dependent} option only @emph{approximates} the rebuilds that would be required as a result of an upgrade. More rebuilds might be required under some circumstances." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12684 +#: guix-git/doc/guix.texi:12999 #, no-wrap msgid "" "$ guix refresh --list-dependent flex\n" @@ -22586,23 +23108,23 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12688 +#: guix-git/doc/guix.texi:13003 msgid "The command above lists a set of packages that could be built to check for compatibility with an upgraded @code{flex} package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12691 +#: guix-git/doc/guix.texi:13006 #, no-wrap msgid "--list-transitive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12693 +#: guix-git/doc/guix.texi:13008 msgid "List all the packages which one or more packages depend upon." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12698 +#: guix-git/doc/guix.texi:13013 #, no-wrap msgid "" "$ guix refresh --list-transitive flex\n" @@ -22611,60 +23133,60 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12704 +#: guix-git/doc/guix.texi:13019 msgid "The command above lists a set of packages which, when changed, would cause @code{flex} to be rebuilt." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12706 +#: guix-git/doc/guix.texi:13021 msgid "The following options can be used to customize GnuPG operation:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12709 +#: guix-git/doc/guix.texi:13024 #, no-wrap msgid "--gpg=@var{command}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12712 +#: guix-git/doc/guix.texi:13027 msgid "Use @var{command} as the GnuPG 2.x command. @var{command} is searched for in @code{$PATH}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12713 +#: guix-git/doc/guix.texi:13028 #, no-wrap msgid "--keyring=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12719 +#: guix-git/doc/guix.texi:13034 msgid "Use @var{file} as the keyring for upstream keys. @var{file} must be in the @dfn{keybox format}. Keybox files usually have a name ending in @file{.kbx} and the GNU@tie{}Privacy Guard (GPG) can manipulate these files (@pxref{kbxutil, @command{kbxutil},, gnupg, Using the GNU Privacy Guard}, for information on a tool to manipulate keybox files)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12725 +#: guix-git/doc/guix.texi:13040 msgid "When this option is omitted, @command{guix refresh} uses @file{~/.config/guix/upstream/trustedkeys.kbx} as the keyring for upstream signing keys. OpenPGP signatures are checked against keys from this keyring; missing keys are downloaded to this keyring as well (see @option{--key-download} below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12728 +#: guix-git/doc/guix.texi:13043 msgid "You can export keys from your default GPG keyring into a keybox file using commands like this one:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12731 +#: guix-git/doc/guix.texi:13046 #, no-wrap msgid "gpg --export rms@@gnu.org | kbxutil --import-openpgp >> mykeyring.kbx\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12734 +#: guix-git/doc/guix.texi:13049 msgid "Likewise, you can fetch keys to a specific keybox file like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12738 +#: guix-git/doc/guix.texi:13053 #, no-wrap msgid "" "gpg --no-default-keyring --keyring mykeyring.kbx \\\n" @@ -22672,83 +23194,93 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12742 +#: guix-git/doc/guix.texi:13057 msgid "@xref{GPG Configuration Options, @option{--keyring},, gnupg, Using the GNU Privacy Guard}, for more information on GPG's @option{--keyring} option." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12746 +#: guix-git/doc/guix.texi:13061 msgid "Handle missing OpenPGP keys according to @var{policy}, which may be one of:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12748 guix-git/doc/guix.texi:12871 -#: guix-git/doc/guix.texi:22249 +#: guix-git/doc/guix.texi:13063 guix-git/doc/guix.texi:13228 +#: guix-git/doc/guix.texi:22611 #, no-wrap msgid "always" -msgstr "" +msgstr "vždy" #. type: table -#: guix-git/doc/guix.texi:12751 +#: guix-git/doc/guix.texi:13066 msgid "Always download missing OpenPGP keys from the key server, and add them to the user's GnuPG keyring." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12752 guix-git/doc/guix.texi:22251 +#: guix-git/doc/guix.texi:13067 guix-git/doc/guix.texi:22613 #, no-wrap msgid "never" -msgstr "" +msgstr "nikdy" #. type: table -#: guix-git/doc/guix.texi:12754 +#: guix-git/doc/guix.texi:13069 msgid "Never try to download missing OpenPGP keys. Instead just bail out." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12755 +#: guix-git/doc/guix.texi:13070 #, no-wrap msgid "interactive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12758 +#: guix-git/doc/guix.texi:13073 msgid "When a package signed with an unknown OpenPGP key is encountered, ask the user whether to download it or not. This is the default behavior." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12760 +#: guix-git/doc/guix.texi:13075 #, no-wrap msgid "--key-server=@var{host}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12762 +#: guix-git/doc/guix.texi:13077 msgid "Use @var{host} as the OpenPGP key server when importing a public key." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12782 +#: guix-git/doc/guix.texi:13097 msgid "The @code{github} updater uses the @uref{https://developer.github.com/v3/, GitHub API} to query for new releases. When used repeatedly e.g.@: when refreshing all packages, GitHub will eventually refuse to answer any further API requests. By default 60 API requests per hour are allowed, and a full refresh on all GitHub packages in Guix requires more than this. Authentication with GitHub through the use of an API token alleviates these limits. To use an API token, set the environment variable @env{GUIX_GITHUB_TOKEN} to a token procured from @uref{https://github.com/settings/tokens} or otherwise." msgstr "" #. type: section -#: guix-git/doc/guix.texi:12785 +#: guix-git/doc/guix.texi:13100 #, no-wrap msgid "Invoking @command{guix style}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12791 -msgid "The @command{guix style} command helps packagers style their package definitions according to the latest fashionable trends. The command currently focuses on one aspect: the style of package inputs. It may eventually be extended to handle other stylistic matters." +#: guix-git/doc/guix.texi:13105 +msgid "The @command{guix style} command helps packagers style their package definitions according to the latest fashionable trends. The command currently provides the following styling rules:" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix.texi:13110 +msgid "formatting package definitions according to the project's conventions (@pxref{Formatting Code});" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix.texi:13113 +msgid "rewriting package inputs to the ``new style'', as explained below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12796 +#: guix-git/doc/guix.texi:13119 msgid "The way package inputs are written is going through a transition (@pxref{package Reference}, for more on package inputs). Until version 1.3.0, package inputs were written using the ``old style'', where each input was given an explicit label, most of the time the package name:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12803 +#: guix-git/doc/guix.texi:13126 #, no-wrap msgid "" "(package\n" @@ -22759,12 +23291,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12807 +#: guix-git/doc/guix.texi:13130 msgid "Today, the old style is deprecated and the preferred style looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12813 +#: guix-git/doc/guix.texi:13136 #, no-wrap msgid "" "(package\n" @@ -22774,269 +23306,328 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12818 +#: guix-git/doc/guix.texi:13141 msgid "Likewise, uses of @code{alist-delete} and friends to manipulate inputs is now deprecated in favor of @code{modify-inputs} (@pxref{Defining Package Variants}, for more info on @code{modify-inputs})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12823 -msgid "In the vast majority of cases, this is a purely mechanical change on the surface syntax that does not even incur a package rebuild. Running @command{guix style} can do that for you, whether you're working on packages in Guix proper or in an external channel." +#: guix-git/doc/guix.texi:13146 +msgid "In the vast majority of cases, this is a purely mechanical change on the surface syntax that does not even incur a package rebuild. Running @command{guix style -S inputs} can do that for you, whether you're working on packages in Guix proper or in an external channel." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12828 +#: guix-git/doc/guix.texi:13151 #, no-wrap msgid "guix style [@var{options}] @var{package}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12834 -msgid "This causes @command{guix style} to analyze and rewrite the definition of @var{package}@dots{}. It does so in a conservative way: preserving comments and bailing out if it cannot make sense of the code that appears in an inputs field. The available options are listed below." +#: guix-git/doc/guix.texi:13158 +msgid "This causes @command{guix style} to analyze and rewrite the definition of @var{package}@dots{} or, when @var{package} is omitted, of @emph{all} the packages. The @option{--styling} or @option{-S} option allows you to select the style rule, the default rule being @code{format}---see below." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:13160 guix-git/doc/guix.texi:14479 +msgid "The available options are listed below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12839 +#: guix-git/doc/guix.texi:13165 msgid "Show source file locations that would be edited but do not modify them." msgstr "" +#. type: item +#: guix-git/doc/guix.texi:13166 +#, no-wrap +msgid "--styling=@var{rule}" +msgstr "" + +#. type: itemx +#: guix-git/doc/guix.texi:13167 +#, no-wrap +msgid "-S @var{rule}" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:13169 +msgid "Apply @var{rule}, one of the following styling rules:" +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:13171 +#, no-wrap +msgid "format" +msgstr "formátovať" + +#. type: table +#: guix-git/doc/guix.texi:13176 +msgid "Format the given package definition(s)---this is the default styling rule. For example, a packager running Guix on a checkout (@pxref{Running Guix Before It Is Installed}) might want to reformat the definition of the Coreutils package like so:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:13179 +#, no-wrap +msgid "./pre-inst-env guix style coreutils\n" +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:13181 +#, no-wrap +msgid "inputs" +msgstr "vstupy" + +#. type: table +#: guix-git/doc/guix.texi:13185 +msgid "Rewrite package inputs to the ``new style'', as described above. This is how you would rewrite inputs of package @code{whatnot} in your own channel:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:13188 +#, no-wrap +msgid "guix style -L ~/my/channel -S inputs whatnot\n" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:13194 +msgid "Rewriting is done in a conservative way: preserving comments and bailing out if it cannot make sense of the code that appears in an inputs field. The @option{--input-simplification} option described below provides fine-grain control over when inputs should be simplified." +msgstr "" + #. type: table -#: guix-git/doc/guix.texi:12848 +#: guix-git/doc/guix.texi:13204 msgid "Style the package @var{expr} evaluates to." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12853 +#: guix-git/doc/guix.texi:13209 #, no-wrap msgid "guix style -e '(@@ (gnu packages gcc) gcc-5)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12856 -#, fuzzy -#| msgid "Updating the Guix package definition." +#: guix-git/doc/guix.texi:13212 msgid "styles the @code{gcc-5} package definition." -msgstr "Aktualizovať zadanie balíka Guix." +msgstr "upraví tvar zadania balíka @code{gcc-5}." #. type: item -#: guix-git/doc/guix.texi:12857 +#: guix-git/doc/guix.texi:13213 #, no-wrap msgid "--input-simplification=@var{policy}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12861 -msgid "Specify the package input simplification policy for cases where an input label does not match the corresponding package name. @var{policy} may be one of the following:" +#: guix-git/doc/guix.texi:13218 +msgid "When using the @code{inputs} styling rule, with @samp{-S inputs}, this option specifies the package input simplification policy for cases where an input label does not match the corresponding package name. @var{policy} may be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12863 +#: guix-git/doc/guix.texi:13220 #, no-wrap msgid "silent" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12866 +#: guix-git/doc/guix.texi:13223 msgid "Simplify inputs only when the change is ``silent'', meaning that the package does not need to be rebuilt (its derivation is unchanged)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12867 +#: guix-git/doc/guix.texi:13224 #, no-wrap msgid "safe" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12870 +#: guix-git/doc/guix.texi:13227 msgid "Simplify inputs only when that is ``safe'' to do: the package might need to be rebuilt, but the change is known to have no observable effect." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12874 +#: guix-git/doc/guix.texi:13231 msgid "Simplify inputs even when input labels do not match package names, and even if that might have an observable effect." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12878 +#: guix-git/doc/guix.texi:13235 msgid "The default is @code{silent}, meaning that input simplifications do not trigger any package rebuild." msgstr "" #. type: section -#: guix-git/doc/guix.texi:12881 +#: guix-git/doc/guix.texi:13238 #, no-wrap msgid "Invoking @command{guix lint}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:12883 +#: guix-git/doc/guix.texi:13240 #, no-wrap msgid "guix lint" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12884 +#: guix-git/doc/guix.texi:13241 #, no-wrap msgid "package, checking for errors" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12890 +#: guix-git/doc/guix.texi:13247 msgid "The @command{guix lint} command is meant to help package developers avoid common errors and use a consistent style. It runs a number of checks on a given set of packages in order to find common mistakes in their definitions. Available @dfn{checkers} include (see @option{--list-checkers} for a complete list):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12896 +#: guix-git/doc/guix.texi:13253 msgid "Validate certain typographical and stylistic rules about package descriptions and synopses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12897 +#: guix-git/doc/guix.texi:13254 #, no-wrap msgid "inputs-should-be-native" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12899 +#: guix-git/doc/guix.texi:13256 msgid "Identify inputs that should most likely be native inputs." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12902 +#: guix-git/doc/guix.texi:13259 #, no-wrap msgid "mirror-url" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12903 +#: guix-git/doc/guix.texi:13260 #, no-wrap msgid "github-url" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12904 +#: guix-git/doc/guix.texi:13261 #, no-wrap msgid "source-file-name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12911 +#: guix-git/doc/guix.texi:13268 msgid "Probe @code{home-page} and @code{source} URLs and report those that are invalid. Suggest a @code{mirror://} URL when applicable. If the @code{source} URL redirects to a GitHub URL, recommend usage of the GitHub URL@. Check that the source file name is meaningful, e.g.@: is not just a version number or ``git-checkout'', without a declared @code{file-name} (@pxref{origin Reference})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12912 +#: guix-git/doc/guix.texi:13269 #, no-wrap msgid "source-unstable-tarball" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12916 +#: guix-git/doc/guix.texi:13273 msgid "Parse the @code{source} URL to determine if a tarball from GitHub is autogenerated or if it is a release tarball. Unfortunately GitHub's autogenerated tarballs are sometimes regenerated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12920 +#: guix-git/doc/guix.texi:13277 msgid "Check that the derivation of the given packages can be successfully computed for all the supported systems (@pxref{Derivations})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12921 +#: guix-git/doc/guix.texi:13278 #, no-wrap msgid "profile-collisions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12927 +#: guix-git/doc/guix.texi:13284 msgid "Check whether installing the given packages in a profile would lead to collisions. Collisions occur when several packages with the same name but a different version or a different store file name are propagated. @xref{package Reference, @code{propagated-inputs}}, for more information on propagated inputs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12928 +#: guix-git/doc/guix.texi:13285 #, no-wrap msgid "archival" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12929 +#: guix-git/doc/guix.texi:13286 #, no-wrap msgid "Software Heritage, source code archive" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12930 +#: guix-git/doc/guix.texi:13287 #, no-wrap msgid "archival of source code, Software Heritage" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12933 +#: guix-git/doc/guix.texi:13290 msgid "Checks whether the package's source code is archived at @uref{https://www.softwareheritage.org, Software Heritage}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12941 +#: guix-git/doc/guix.texi:13298 msgid "When the source code that is not archived comes from a version-control system (VCS)---e.g., it's obtained with @code{git-fetch}, send Software Heritage a ``save'' request so that it eventually archives it. This ensures that the source will remain available in the long term, and that Guix can fall back to Software Heritage should the source code disappear from its original host. The status of recent ``save'' requests can be @uref{https://archive.softwareheritage.org/save/#requests, viewed on-line}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12946 +#: guix-git/doc/guix.texi:13303 msgid "When source code is a tarball obtained with @code{url-fetch}, simply print a message when it is not archived. As of this writing, Software Heritage does not allow requests to save arbitrary tarballs; we are working on ways to ensure that non-VCS source code is also archived." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12952 +#: guix-git/doc/guix.texi:13309 msgid "Software Heritage @uref{https://archive.softwareheritage.org/api/#rate-limiting, limits the request rate per IP address}. When the limit is reached, @command{guix lint} prints a message and the @code{archival} checker stops doing anything until that limit has been reset." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12953 +#: guix-git/doc/guix.texi:13310 #, no-wrap msgid "cve" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12954 guix-git/doc/guix.texi:37946 +#: guix-git/doc/guix.texi:13311 guix-git/doc/guix.texi:38435 #, no-wrap msgid "security vulnerabilities" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12955 +#: guix-git/doc/guix.texi:13312 #, no-wrap msgid "CVE, Common Vulnerabilities and Exposures" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12960 +#: guix-git/doc/guix.texi:13317 msgid "Report known vulnerabilities found in the Common Vulnerabilities and Exposures (CVE) databases of the current and past year @uref{https://nvd.nist.gov/vuln/data-feeds, published by the US NIST}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12962 +#: guix-git/doc/guix.texi:13319 msgid "To view information about a particular vulnerability, visit pages such as:" msgstr "" #. type: indicateurl{#1} -#: guix-git/doc/guix.texi:12966 +#: guix-git/doc/guix.texi:13323 msgid "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-YYYY-ABCD" msgstr "" #. type: indicateurl{#1} -#: guix-git/doc/guix.texi:12968 +#: guix-git/doc/guix.texi:13325 msgid "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-YYYY-ABCD" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12973 +#: guix-git/doc/guix.texi:13330 msgid "where @code{CVE-YYYY-ABCD} is the CVE identifier---e.g., @code{CVE-2015-7554}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12978 +#: guix-git/doc/guix.texi:13335 msgid "Package developers can specify in package recipes the @uref{https://nvd.nist.gov/products/cpe,Common Platform Enumeration (CPE)} name and version of the package when they differ from the name or version that Guix uses, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12986 +#: guix-git/doc/guix.texi:13343 #, no-wrap msgid "" "(package\n" @@ -23048,12 +23639,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12993 +#: guix-git/doc/guix.texi:13350 msgid "Some entries in the CVE database do not specify which version of a package they apply to, and would thus ``stick around'' forever. Package developers who found CVE alerts and verified they can be ignored can declare them as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:13003 +#: guix-git/doc/guix.texi:13360 #, no-wrap msgid "" "(package\n" @@ -23067,124 +23658,124 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13005 +#: guix-git/doc/guix.texi:13362 #, no-wrap msgid "formatting" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13008 +#: guix-git/doc/guix.texi:13365 msgid "Warn about obvious source code formatting issues: trailing white space, use of tabulations, etc." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13009 +#: guix-git/doc/guix.texi:13366 #, no-wrap msgid "input-labels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13015 +#: guix-git/doc/guix.texi:13372 msgid "Report old-style input labels that do not match the name of the corresponding package. This aims to help migrate from the ``old input style''. @xref{package Reference}, for more information on package inputs and input styles. @xref{Invoking guix style}, on how to migrate to the new style." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13021 +#: guix-git/doc/guix.texi:13378 #, no-wrap msgid "guix lint @var{options} @var{package}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13025 +#: guix-git/doc/guix.texi:13382 msgid "If no package is given on the command line, then all packages are checked. The @var{options} may be zero or more of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13027 +#: guix-git/doc/guix.texi:13384 #, no-wrap msgid "--list-checkers" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13031 +#: guix-git/doc/guix.texi:13388 msgid "List and describe all the available checkers that will be run on packages and exit." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13032 +#: guix-git/doc/guix.texi:13389 #, no-wrap msgid "--checkers" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13033 +#: guix-git/doc/guix.texi:13390 #, no-wrap msgid "-c" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13036 +#: guix-git/doc/guix.texi:13393 msgid "Only enable the checkers specified in a comma-separated list using the names returned by @option{--list-checkers}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13037 +#: guix-git/doc/guix.texi:13394 #, no-wrap msgid "--exclude" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13041 +#: guix-git/doc/guix.texi:13398 msgid "Only disable the checkers specified in a comma-separated list using the names returned by @option{--list-checkers}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13042 +#: guix-git/doc/guix.texi:13399 #, no-wrap msgid "--no-network" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13045 +#: guix-git/doc/guix.texi:13402 msgid "Only enable the checkers that do not depend on Internet access." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13057 +#: guix-git/doc/guix.texi:13414 #, no-wrap msgid "Invoking @command{guix size}" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:13059 guix-git/doc/guix.texi:35624 +#: guix-git/doc/guix.texi:13416 guix-git/doc/guix.texi:36114 #, no-wrap msgid "size" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13060 +#: guix-git/doc/guix.texi:13417 #, no-wrap msgid "package size" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13062 +#: guix-git/doc/guix.texi:13419 #, no-wrap msgid "guix size" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13069 +#: guix-git/doc/guix.texi:13426 msgid "The @command{guix size} command helps package developers profile the disk usage of packages. It is easy to overlook the impact of an additional dependency added to a package, or the impact of using a single output for a package that could easily be split (@pxref{Packages with Multiple Outputs}). Such are the typical issues that @command{guix size} can highlight." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13074 +#: guix-git/doc/guix.texi:13431 msgid "The command can be passed one or more package specifications such as @code{gcc@@4.8} or @code{guile:debug}, or a file name in the store. Consider this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13087 +#: guix-git/doc/guix.texi:13444 #, no-wrap msgid "" "$ guix size coreutils\n" @@ -23201,54 +23792,54 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13093 +#: guix-git/doc/guix.texi:13450 msgid "The store items listed here constitute the @dfn{transitive closure} of Coreutils---i.e., Coreutils and all its dependencies, recursively---as would be returned by:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13096 +#: guix-git/doc/guix.texi:13453 #, no-wrap msgid "$ guix gc -R /gnu/store/@dots{}-coreutils-8.23\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13104 +#: guix-git/doc/guix.texi:13461 msgid "Here the output shows three columns next to store items. The first column, labeled ``total'', shows the size in mebibytes (MiB) of the closure of the store item---that is, its own size plus the size of all its dependencies. The next column, labeled ``self'', shows the size of the item itself. The last column shows the ratio of the size of the item itself to the space occupied by all the items listed here." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13110 +#: guix-git/doc/guix.texi:13467 msgid "In this example, we see that the closure of Coreutils weighs in at 79@tie{}MiB, most of which is taken by libc and GCC's run-time support libraries. (That libc and GCC's libraries represent a large fraction of the closure is not a problem @i{per se} because they are always available on the system anyway.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13113 +#: guix-git/doc/guix.texi:13470 msgid "Since the command also accepts store file names, assessing the size of a build result is straightforward:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13116 +#: guix-git/doc/guix.texi:13473 #, no-wrap msgid "guix size $(guix system build config.scm)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13126 +#: guix-git/doc/guix.texi:13483 msgid "When the package(s) passed to @command{guix size} are available in the store@footnote{More precisely, @command{guix size} looks for the @emph{ungrafted} variant of the given package(s), as returned by @code{guix build @var{package} --no-grafts}. @xref{Security Updates}, for information on grafts.}, @command{guix size} queries the daemon to determine its dependencies, and measures its size in the store, similar to @command{du -ms --apparent-size} (@pxref{du invocation,,, coreutils, GNU Coreutils})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13131 +#: guix-git/doc/guix.texi:13488 msgid "When the given packages are @emph{not} in the store, @command{guix size} reports information based on the available substitutes (@pxref{Substitutes}). This makes it possible it to profile disk usage of store items that are not even on disk, only available remotely." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13133 +#: guix-git/doc/guix.texi:13490 msgid "You can also specify several package names:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13143 +#: guix-git/doc/guix.texi:13500 #, no-wrap msgid "" "$ guix size coreutils grep sed bash\n" @@ -23262,365 +23853,365 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13149 +#: guix-git/doc/guix.texi:13506 msgid "In this example we see that the combination of the four packages takes 102.3@tie{}MiB in total, which is much less than the sum of each closure since they have a lot of dependencies in common." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13155 +#: guix-git/doc/guix.texi:13512 msgid "When looking at the profile returned by @command{guix size}, you may find yourself wondering why a given package shows up in the profile at all. To understand it, you can use @command{guix graph --path -t references} to display the shortest path between the two packages (@pxref{Invoking guix graph})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13157 +#: guix-git/doc/guix.texi:13514 msgid "The available options are:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13163 +#: guix-git/doc/guix.texi:13520 msgid "Use substitute information from @var{urls}. @xref{client-substitute-urls, the same option for @code{guix build}}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13164 +#: guix-git/doc/guix.texi:13521 #, no-wrap msgid "--sort=@var{key}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13166 +#: guix-git/doc/guix.texi:13523 msgid "Sort lines according to @var{key}, one of the following options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13168 +#: guix-git/doc/guix.texi:13525 #, no-wrap msgid "self" msgstr "sám" #. type: table -#: guix-git/doc/guix.texi:13170 +#: guix-git/doc/guix.texi:13527 msgid "the size of each item (the default);" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13172 +#: guix-git/doc/guix.texi:13529 msgid "the total size of the item's closure." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13174 +#: guix-git/doc/guix.texi:13531 #, no-wrap msgid "--map-file=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13176 +#: guix-git/doc/guix.texi:13533 msgid "Write a graphical map of disk usage in PNG format to @var{file}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13178 +#: guix-git/doc/guix.texi:13535 msgid "For the example above, the map looks like this:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13181 +#: guix-git/doc/guix.texi:13538 msgid "@image{images/coreutils-size-map,5in,, map of Coreutils disk usage produced by @command{guix size}}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13186 +#: guix-git/doc/guix.texi:13543 msgid "This option requires that @uref{https://wingolog.org/software/guile-charting/, Guile-Charting} be installed and visible in Guile's module search path. When that is not the case, @command{guix size} fails as it tries to load it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13190 +#: guix-git/doc/guix.texi:13547 msgid "Consider packages for @var{system}---e.g., @code{x86_64-linux}." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13201 +#: guix-git/doc/guix.texi:13558 #, no-wrap msgid "Invoking @command{guix graph}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13203 +#: guix-git/doc/guix.texi:13560 #, no-wrap msgid "DAG" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13204 +#: guix-git/doc/guix.texi:13561 #, no-wrap msgid "guix graph" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13219 +#: guix-git/doc/guix.texi:13576 msgid "Packages and their dependencies form a @dfn{graph}, specifically a directed acyclic graph (DAG). It can quickly become difficult to have a mental model of the package DAG, so the @command{guix graph} command provides a visual representation of the DAG@. By default, @command{guix graph} emits a DAG representation in the input format of @uref{https://www.graphviz.org/, Graphviz}, so its output can be passed directly to the @command{dot} command of Graphviz. It can also emit an HTML page with embedded JavaScript code to display a ``chord diagram'' in a Web browser, using the @uref{https://d3js.org/, d3.js} library, or emit Cypher queries to construct a graph in a graph database supporting the @uref{https://www.opencypher.org/, openCypher} query language. With @option{--path}, it simply displays the shortest path between two packages. The general syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13222 +#: guix-git/doc/guix.texi:13579 #, no-wrap msgid "guix graph @var{options} @var{package}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13227 +#: guix-git/doc/guix.texi:13584 msgid "For example, the following command generates a PDF file representing the package DAG for the GNU@tie{}Core Utilities, showing its build-time dependencies:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13230 +#: guix-git/doc/guix.texi:13587 #, no-wrap msgid "guix graph coreutils | dot -Tpdf > dag.pdf\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13233 +#: guix-git/doc/guix.texi:13590 msgid "The output looks like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13235 +#: guix-git/doc/guix.texi:13592 msgid "@image{images/coreutils-graph,2in,,Dependency graph of the GNU Coreutils}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13237 +#: guix-git/doc/guix.texi:13594 msgid "Nice little graph, no?" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13240 +#: guix-git/doc/guix.texi:13597 msgid "You may find it more pleasant to navigate the graph interactively with @command{xdot} (from the @code{xdot} package):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13243 +#: guix-git/doc/guix.texi:13600 #, no-wrap msgid "guix graph coreutils | xdot -\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13250 +#: guix-git/doc/guix.texi:13607 msgid "But there is more than one graph! The one above is concise: it is the graph of package objects, omitting implicit inputs such as GCC, libc, grep, etc. It is often useful to have such a concise graph, but sometimes one may want to see more details. @command{guix graph} supports several types of graphs, allowing you to choose the level of detail:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13256 +#: guix-git/doc/guix.texi:13613 msgid "This is the default type used in the example above. It shows the DAG of package objects, excluding implicit dependencies. It is concise, but filters out many details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13257 +#: guix-git/doc/guix.texi:13614 #, no-wrap msgid "reverse-package" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13259 +#: guix-git/doc/guix.texi:13616 msgid "This shows the @emph{reverse} DAG of packages. For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13262 +#: guix-git/doc/guix.texi:13619 #, no-wrap msgid "guix graph --type=reverse-package ocaml\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13267 +#: guix-git/doc/guix.texi:13624 msgid "...@: yields the graph of packages that @emph{explicitly} depend on OCaml (if you are also interested in cases where OCaml is an implicit dependency, see @code{reverse-bag} below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13272 +#: guix-git/doc/guix.texi:13629 msgid "Note that for core packages this can yield huge graphs. If all you want is to know the number of packages that depend on a given package, use @command{guix refresh --list-dependent} (@pxref{Invoking guix refresh, @option{--list-dependent}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13273 +#: guix-git/doc/guix.texi:13630 #, no-wrap msgid "bag-emerged" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13275 +#: guix-git/doc/guix.texi:13632 msgid "This is the package DAG, @emph{including} implicit inputs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13277 +#: guix-git/doc/guix.texi:13634 msgid "For instance, the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13280 +#: guix-git/doc/guix.texi:13637 #, no-wrap msgid "guix graph --type=bag-emerged coreutils\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13283 +#: guix-git/doc/guix.texi:13640 msgid "...@: yields this bigger graph:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13285 +#: guix-git/doc/guix.texi:13642 msgid "@image{images/coreutils-bag-graph,,5in,Detailed dependency graph of the GNU Coreutils}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13288 +#: guix-git/doc/guix.texi:13645 msgid "At the bottom of the graph, we see all the implicit inputs of @var{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13292 +#: guix-git/doc/guix.texi:13649 msgid "Now, note that the dependencies of these implicit inputs---that is, the @dfn{bootstrap dependencies} (@pxref{Bootstrapping})---are not shown here, for conciseness." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13293 +#: guix-git/doc/guix.texi:13650 #, no-wrap msgid "bag" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13296 +#: guix-git/doc/guix.texi:13653 msgid "Similar to @code{bag-emerged}, but this time including all the bootstrap dependencies." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13297 +#: guix-git/doc/guix.texi:13654 #, no-wrap msgid "bag-with-origins" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13299 +#: guix-git/doc/guix.texi:13656 msgid "Similar to @code{bag}, but also showing origins and their dependencies." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13300 +#: guix-git/doc/guix.texi:13657 #, no-wrap msgid "reverse-bag" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13303 +#: guix-git/doc/guix.texi:13660 msgid "This shows the @emph{reverse} DAG of packages. Unlike @code{reverse-package}, it also takes implicit dependencies into account. For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13306 +#: guix-git/doc/guix.texi:13663 #, no-wrap msgid "guix graph -t reverse-bag dune\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13313 +#: guix-git/doc/guix.texi:13670 msgid "...@: yields the graph of all packages that depend on Dune, directly or indirectly. Since Dune is an @emph{implicit} dependency of many packages @i{via} @code{dune-build-system}, this shows a large number of packages, whereas @code{reverse-package} would show very few if any." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13319 +#: guix-git/doc/guix.texi:13676 msgid "This is the most detailed representation: It shows the DAG of derivations (@pxref{Derivations}) and plain store items. Compared to the above representation, many additional nodes are visible, including build scripts, patches, Guile modules, etc." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13322 +#: guix-git/doc/guix.texi:13679 msgid "For this type of graph, it is also possible to pass a @file{.drv} file name instead of a package name, as in:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13325 +#: guix-git/doc/guix.texi:13682 #, no-wrap msgid "guix graph -t derivation $(guix system build -d my-config.scm)\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13327 +#: guix-git/doc/guix.texi:13684 #, no-wrap msgid "module" -msgstr "" +msgstr "modul" #. type: table -#: guix-git/doc/guix.texi:13331 +#: guix-git/doc/guix.texi:13688 msgid "This is the graph of @dfn{package modules} (@pxref{Package Modules}). For example, the following command shows the graph for the package module that defines the @code{guile} package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13334 +#: guix-git/doc/guix.texi:13691 #, no-wrap msgid "guix graph -t module guile | xdot -\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13339 +#: guix-git/doc/guix.texi:13696 msgid "All the types above correspond to @emph{build-time dependencies}. The following graph type represents the @emph{run-time dependencies}:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13344 +#: guix-git/doc/guix.texi:13701 msgid "This is the graph of @dfn{references} of a package output, as returned by @command{guix gc --references} (@pxref{Invoking guix gc})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13347 +#: guix-git/doc/guix.texi:13704 msgid "If the given package output is not available in the store, @command{guix graph} attempts to obtain dependency information from substitutes." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13351 +#: guix-git/doc/guix.texi:13708 msgid "Here you can also pass a store file name instead of a package name. For example, the command below produces the reference graph of your profile (which can be big!):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13354 +#: guix-git/doc/guix.texi:13711 #, no-wrap msgid "guix graph -t references $(readlink -f ~/.guix-profile)\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13356 +#: guix-git/doc/guix.texi:13713 #, no-wrap msgid "referrers" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13359 +#: guix-git/doc/guix.texi:13716 msgid "This is the graph of the @dfn{referrers} of a store item, as returned by @command{guix gc --referrers} (@pxref{Invoking guix gc})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13365 +#: guix-git/doc/guix.texi:13722 msgid "This relies exclusively on local information from your store. For instance, let us suppose that the current Inkscape is available in 10 profiles on your machine; @command{guix graph -t referrers inkscape} will show a graph rooted at Inkscape and with those 10 profiles linked to it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13368 +#: guix-git/doc/guix.texi:13725 msgid "It can help determine what is preventing a store item from being garbage collected." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13371 +#: guix-git/doc/guix.texi:13728 #, no-wrap msgid "shortest path, between packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13378 +#: guix-git/doc/guix.texi:13735 msgid "Often, the graph of the package you are interested in does not fit on your screen, and anyway all you want to know is @emph{why} that package actually depends on some seemingly unrelated package. The @option{--path} option instructs @command{guix graph} to display the shortest path between two packages (or derivations, or store items, etc.):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13392 +#: guix-git/doc/guix.texi:13749 #, no-wrap msgid "" "$ guix graph --path emacs libunistring\n" @@ -23638,88 +24229,88 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13400 +#: guix-git/doc/guix.texi:13757 msgid "Sometimes you still want to visualize the graph but would like to trim it so it can actually be displayed. One way to do it is via the @option{--max-depth} (or @option{-M}) option, which lets you specify the maximum depth of the graph. In the example below, we visualize only @code{libreoffice} and the nodes whose distance to @code{libreoffice} is at most 2:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13403 +#: guix-git/doc/guix.texi:13760 #, no-wrap msgid "guix graph -M 2 libreoffice | xdot -f fdp -\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13407 +#: guix-git/doc/guix.texi:13764 msgid "Mind you, that's still a big ball of spaghetti, but at least @command{dot} can render it quickly and it can be browsed somewhat." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13409 +#: guix-git/doc/guix.texi:13766 msgid "The available options are the following:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13415 +#: guix-git/doc/guix.texi:13772 msgid "Produce a graph output of @var{type}, where @var{type} must be one of the values listed above." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13416 +#: guix-git/doc/guix.texi:13773 #, no-wrap msgid "--list-types" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13418 +#: guix-git/doc/guix.texi:13775 msgid "List the supported graph types." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13419 +#: guix-git/doc/guix.texi:13776 #, no-wrap msgid "--backend=@var{backend}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13420 +#: guix-git/doc/guix.texi:13777 #, no-wrap msgid "-b @var{backend}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13422 +#: guix-git/doc/guix.texi:13779 msgid "Produce a graph using the selected @var{backend}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13423 +#: guix-git/doc/guix.texi:13780 #, no-wrap msgid "--list-backends" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13425 +#: guix-git/doc/guix.texi:13782 msgid "List the supported graph backends." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13427 +#: guix-git/doc/guix.texi:13784 msgid "Currently, the available backends are Graphviz and d3.js." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13428 +#: guix-git/doc/guix.texi:13785 #, no-wrap msgid "--path" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13433 +#: guix-git/doc/guix.texi:13790 msgid "Display the shortest path between two nodes of the type specified by @option{--type}. The example below shows the shortest path between @code{libreoffice} and @code{llvm} according to the references of @code{libreoffice}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13440 +#: guix-git/doc/guix.texi:13797 #, no-wrap msgid "" "$ guix graph --path -t references libreoffice llvm\n" @@ -23730,398 +24321,398 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13450 +#: guix-git/doc/guix.texi:13807 #, no-wrap msgid "guix graph -e '(@@@@ (gnu packages commencement) gnu-make-final)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13455 +#: guix-git/doc/guix.texi:13812 msgid "Display the graph for @var{system}---e.g., @code{i686-linux}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13458 +#: guix-git/doc/guix.texi:13815 msgid "The package dependency graph is largely architecture-independent, but there are some architecture-dependent bits that this option allows you to visualize." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13474 +#: guix-git/doc/guix.texi:13831 msgid "On top of that, @command{guix graph} supports all the usual package transformation options (@pxref{Package Transformation Options}). This makes it easy to view the effect of a graph-rewriting transformation such as @option{--with-input}. For example, the command below outputs the graph of @code{git} once @code{openssl} has been replaced by @code{libressl} everywhere in the graph:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13477 +#: guix-git/doc/guix.texi:13834 #, no-wrap msgid "guix graph git --with-input=openssl=libressl\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13480 +#: guix-git/doc/guix.texi:13837 msgid "So many possibilities, so much fun!" msgstr "" #. type: section -#: guix-git/doc/guix.texi:13482 +#: guix-git/doc/guix.texi:13839 #, no-wrap msgid "Invoking @command{guix publish}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13484 +#: guix-git/doc/guix.texi:13841 #, no-wrap msgid "guix publish" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13488 +#: guix-git/doc/guix.texi:13845 msgid "The purpose of @command{guix publish} is to enable users to easily share their store with others, who can then use it as a substitute server (@pxref{Substitutes})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13494 +#: guix-git/doc/guix.texi:13851 msgid "When @command{guix publish} runs, it spawns an HTTP server which allows anyone with network access to obtain substitutes from it. This means that any machine running Guix can also act as if it were a build farm, since the HTTP interface is compatible with Cuirass, the software behind the @code{@value{SUBSTITUTE-SERVER-1}} build farm." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13500 +#: guix-git/doc/guix.texi:13857 msgid "For security, each substitute is signed, allowing recipients to check their authenticity and integrity (@pxref{Substitutes}). Because @command{guix publish} uses the signing key of the system, which is only readable by the system administrator, it must be started as root; the @option{--user} option makes it drop root privileges early on." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13504 +#: guix-git/doc/guix.texi:13861 msgid "The signing key pair must be generated before @command{guix publish} is launched, using @command{guix archive --generate-key} (@pxref{Invoking guix archive})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13509 +#: guix-git/doc/guix.texi:13866 msgid "When the @option{--advertise} option is passed, the server advertises its availability on the local network using multicast DNS (mDNS) and DNS service discovery (DNS-SD), currently @i{via} Guile-Avahi (@pxref{Top,,, guile-avahi, Using Avahi in Guile Scheme Programs})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13514 +#: guix-git/doc/guix.texi:13871 #, no-wrap msgid "guix publish @var{options}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13518 +#: guix-git/doc/guix.texi:13875 msgid "Running @command{guix publish} without any additional arguments will spawn an HTTP server on port 8080:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13521 +#: guix-git/doc/guix.texi:13878 #, no-wrap msgid "guix publish\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13525 +#: guix-git/doc/guix.texi:13882 msgid "Once a publishing server has been authorized, the daemon may download substitutes from it. @xref{Getting Substitutes from Other Servers}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13533 +#: guix-git/doc/guix.texi:13890 msgid "By default, @command{guix publish} compresses archives on the fly as it serves them. This ``on-the-fly'' mode is convenient in that it requires no setup and is immediately available. However, when serving lots of clients, we recommend using the @option{--cache} option, which enables caching of the archives before they are sent to clients---see below for details. The @command{guix weather} command provides a handy way to check what a server provides (@pxref{Invoking guix weather})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13540 +#: guix-git/doc/guix.texi:13897 msgid "As a bonus, @command{guix publish} also serves as a content-addressed mirror for source files referenced in @code{origin} records (@pxref{origin Reference}). For instance, assuming @command{guix publish} is running on @code{example.org}, the following URL returns the raw @file{hello-2.10.tar.gz} file with the given SHA256 hash (represented in @code{nix-base32} format, @pxref{Invoking guix hash}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13543 +#: guix-git/doc/guix.texi:13900 #, no-wrap msgid "http://example.org/file/hello-2.10.tar.gz/sha256/0ssi1@dots{}ndq1i\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13547 +#: guix-git/doc/guix.texi:13904 msgid "Obviously, these URLs only work for files that are in the store; in other cases, they return 404 (``Not Found'')." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13548 +#: guix-git/doc/guix.texi:13905 #, no-wrap msgid "build logs, publication" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13550 +#: guix-git/doc/guix.texi:13907 msgid "Build logs are available from @code{/log} URLs like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13553 +#: guix-git/doc/guix.texi:13910 #, no-wrap msgid "http://example.org/log/gwspk@dots{}-guile-2.2.3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13563 +#: guix-git/doc/guix.texi:13920 msgid "When @command{guix-daemon} is configured to save compressed build logs, as is the case by default (@pxref{Invoking guix-daemon}), @code{/log} URLs return the compressed log as-is, with an appropriate @code{Content-Type} and/or @code{Content-Encoding} header. We recommend running @command{guix-daemon} with @option{--log-compression=gzip} since Web browsers can automatically decompress it, which is not the case with Bzip2 compression." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13567 +#: guix-git/doc/guix.texi:13924 #, no-wrap msgid "--port=@var{port}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13568 +#: guix-git/doc/guix.texi:13925 #, no-wrap msgid "-p @var{port}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13570 +#: guix-git/doc/guix.texi:13927 msgid "Listen for HTTP requests on @var{port}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13571 +#: guix-git/doc/guix.texi:13928 #, no-wrap msgid "--listen=@var{host}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13574 +#: guix-git/doc/guix.texi:13931 msgid "Listen on the network interface for @var{host}. The default is to accept connections from any interface." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13579 +#: guix-git/doc/guix.texi:13936 msgid "Change privileges to @var{user} as soon as possible---i.e., once the server socket is open and the signing key has been read." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13580 +#: guix-git/doc/guix.texi:13937 #, no-wrap msgid "--compression[=@var{method}[:@var{level}]]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13581 +#: guix-git/doc/guix.texi:13938 #, no-wrap msgid "-C [@var{method}[:@var{level}]]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13585 +#: guix-git/doc/guix.texi:13942 msgid "Compress data using the given @var{method} and @var{level}. @var{method} is one of @code{lzip}, @code{zstd}, and @code{gzip}; when @var{method} is omitted, @code{gzip} is used." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13589 +#: guix-git/doc/guix.texi:13946 msgid "When @var{level} is zero, disable compression. The range 1 to 9 corresponds to different compression levels: 1 is the fastest, and 9 is the best (CPU-intensive). The default is 3." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13596 +#: guix-git/doc/guix.texi:13953 msgid "Usually, @code{lzip} compresses noticeably better than @code{gzip} for a small increase in CPU usage; see @uref{https://nongnu.org/lzip/lzip_benchmark.html,benchmarks on the lzip Web page}. However, @code{lzip} achieves low decompression throughput (on the order of 50@tie{}MiB/s on modern hardware), which can be a bottleneck for someone who downloads over a fast network connection." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13600 +#: guix-git/doc/guix.texi:13957 msgid "The compression ratio of @code{zstd} is between that of @code{lzip} and that of @code{gzip}; its main advantage is a @uref{https://facebook.github.io/zstd/,high decompression speed}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13609 +#: guix-git/doc/guix.texi:13966 msgid "Unless @option{--cache} is used, compression occurs on the fly and the compressed streams are not cached. Thus, to reduce load on the machine that runs @command{guix publish}, it may be a good idea to choose a low compression level, to run @command{guix publish} behind a caching proxy, or to use @option{--cache}. Using @option{--cache} has the advantage that it allows @command{guix publish} to add @code{Content-Length} HTTP header to its responses." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13614 +#: guix-git/doc/guix.texi:13971 msgid "This option can be repeated, in which case every substitute gets compressed using all the selected methods, and all of them are advertised. This is useful when users may not support all the compression methods: they can select the one they support." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13615 +#: guix-git/doc/guix.texi:13972 #, no-wrap msgid "--cache=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13616 +#: guix-git/doc/guix.texi:13973 #, no-wrap msgid "-c @var{directory}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13619 +#: guix-git/doc/guix.texi:13976 msgid "Cache archives and meta-data (@code{.narinfo} URLs) to @var{directory} and only serve archives that are in cache." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13627 +#: guix-git/doc/guix.texi:13984 msgid "When this option is omitted, archives and meta-data are created on-the-fly. This can reduce the available bandwidth, especially when compression is enabled, since this may become CPU-bound. Another drawback of the default mode is that the length of archives is not known in advance, so @command{guix publish} does not add a @code{Content-Length} HTTP header to its responses, which in turn prevents clients from knowing the amount of data being downloaded." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13635 +#: guix-git/doc/guix.texi:13992 msgid "Conversely, when @option{--cache} is used, the first request for a store item (@i{via} a @code{.narinfo} URL) triggers a background process to @dfn{bake} the archive---computing its @code{.narinfo} and compressing the archive, if needed. Once the archive is cached in @var{directory}, subsequent requests succeed and are served directly from the cache, which guarantees that clients get the best possible bandwidth." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13642 +#: guix-git/doc/guix.texi:13999 msgid "That first @code{.narinfo} request nonetheless returns 200, provided the requested store item is ``small enough'', below the cache bypass threshold---see @option{--cache-bypass-threshold} below. That way, clients do not have to wait until the archive is baked. For larger store items, the first @code{.narinfo} request returns 404, meaning that clients have to wait until the archive is baked." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13646 +#: guix-git/doc/guix.texi:14003 msgid "The ``baking'' process is performed by worker threads. By default, one thread per CPU core is created, but this can be customized. See @option{--workers} below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13649 +#: guix-git/doc/guix.texi:14006 msgid "When @option{--ttl} is used, cached entries are automatically deleted when they have expired." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13650 +#: guix-git/doc/guix.texi:14007 #, no-wrap msgid "--workers=@var{N}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13653 +#: guix-git/doc/guix.texi:14010 msgid "When @option{--cache} is used, request the allocation of @var{N} worker threads to ``bake'' archives." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13654 +#: guix-git/doc/guix.texi:14011 #, no-wrap msgid "--ttl=@var{ttl}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13658 +#: guix-git/doc/guix.texi:14015 msgid "Produce @code{Cache-Control} HTTP headers that advertise a time-to-live (TTL) of @var{ttl}. @var{ttl} must denote a duration: @code{5d} means 5 days, @code{1m} means 1 month, and so on." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13663 +#: guix-git/doc/guix.texi:14020 msgid "This allows the user's Guix to keep substitute information in cache for @var{ttl}. However, note that @code{guix publish} does not itself guarantee that the store items it provides will indeed remain available for as long as @var{ttl}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13667 +#: guix-git/doc/guix.texi:14024 msgid "Additionally, when @option{--cache} is used, cached entries that have not been accessed for @var{ttl} and that no longer have a corresponding item in the store, may be deleted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13668 +#: guix-git/doc/guix.texi:14025 #, no-wrap msgid "--negative-ttl=@var{ttl}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13673 +#: guix-git/doc/guix.texi:14030 msgid "Similarly produce @code{Cache-Control} HTTP headers to advertise the time-to-live (TTL) of @emph{negative} lookups---missing store items, for which the HTTP 404 code is returned. By default, no negative TTL is advertised." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13677 +#: guix-git/doc/guix.texi:14034 msgid "This parameter can help adjust server load and substitute latency by instructing cooperating clients to be more or less patient when a store item is missing." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13678 +#: guix-git/doc/guix.texi:14035 #, no-wrap msgid "--cache-bypass-threshold=@var{size}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13683 +#: guix-git/doc/guix.texi:14040 msgid "When used in conjunction with @option{--cache}, store items smaller than @var{size} are immediately available, even when they are not yet in cache. @var{size} is a size in bytes, or it can be suffixed by @code{M} for megabytes and so on. The default is @code{10M}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13688 +#: guix-git/doc/guix.texi:14045 msgid "``Cache bypass'' allows you to reduce the publication delay for clients at the expense of possibly additional I/O and CPU use on the server side: depending on the client access patterns, those store items can end up being baked several times until a copy is available in cache." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13692 +#: guix-git/doc/guix.texi:14049 msgid "Increasing the threshold may be useful for sites that have few users, or to guarantee that users get substitutes even for store items that are not popular." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13693 +#: guix-git/doc/guix.texi:14050 #, no-wrap msgid "--nar-path=@var{path}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13696 +#: guix-git/doc/guix.texi:14053 msgid "Use @var{path} as the prefix for the URLs of ``nar'' files (@pxref{Invoking guix archive, normalized archives})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13700 +#: guix-git/doc/guix.texi:14057 msgid "By default, nars are served at a URL such as @code{/nar/gzip/@dots{}-coreutils-8.25}. This option allows you to change the @code{/nar} part to @var{path}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13701 +#: guix-git/doc/guix.texi:14058 #, no-wrap msgid "--public-key=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13702 +#: guix-git/doc/guix.texi:14059 #, no-wrap msgid "--private-key=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13705 guix-git/doc/guix.texi:29141 -#: guix-git/doc/guix.texi:29178 +#: guix-git/doc/guix.texi:14062 guix-git/doc/guix.texi:29478 +#: guix-git/doc/guix.texi:29515 msgid "Use the specific @var{file}s as the public/private key pair used to sign the store items being published." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13712 +#: guix-git/doc/guix.texi:14069 msgid "The files must correspond to the same key pair (the private key is used for signing and the public key is merely advertised in the signature metadata). They must contain keys in the canonical s-expression format as produced by @command{guix archive --generate-key} (@pxref{Invoking guix archive}). By default, @file{/etc/guix/signing-key.pub} and @file{/etc/guix/signing-key.sec} are used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13713 +#: guix-git/doc/guix.texi:14070 #, no-wrap msgid "--repl[=@var{port}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13714 +#: guix-git/doc/guix.texi:14071 #, no-wrap msgid "-r [@var{port}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13718 +#: guix-git/doc/guix.texi:14075 msgid "Spawn a Guile REPL server (@pxref{REPL Servers,,, guile, GNU Guile Reference Manual}) on @var{port} (37146 by default). This is used primarily for debugging a running @command{guix publish} server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13724 +#: guix-git/doc/guix.texi:14081 msgid "Enabling @command{guix publish} on Guix System is a one-liner: just instantiate a @code{guix-publish-service-type} service in the @code{services} field of the @code{operating-system} declaration (@pxref{guix-publish-service-type, @code{guix-publish-service-type}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13727 +#: guix-git/doc/guix.texi:14084 msgid "If you are instead running Guix on a ``foreign distro'', follow these instructions:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:13731 +#: guix-git/doc/guix.texi:14088 msgid "If your host distro uses the systemd init system:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13736 +#: guix-git/doc/guix.texi:14093 #, no-wrap msgid "" "# ln -s ~root/.guix-profile/lib/systemd/system/guix-publish.service \\\n" @@ -24130,7 +24721,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13744 +#: guix-git/doc/guix.texi:14101 #, no-wrap msgid "" "# ln -s ~root/.guix-profile/lib/upstart/system/guix-publish.conf /etc/init/\n" @@ -24138,56 +24729,56 @@ msgid "" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:13748 +#: guix-git/doc/guix.texi:14105 msgid "Otherwise, proceed similarly with your distro's init system." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13751 +#: guix-git/doc/guix.texi:14108 #, no-wrap msgid "Invoking @command{guix challenge}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13754 +#: guix-git/doc/guix.texi:14111 #, no-wrap msgid "verifiable builds" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13755 +#: guix-git/doc/guix.texi:14112 #, no-wrap msgid "guix challenge" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13756 +#: guix-git/doc/guix.texi:14113 #, no-wrap msgid "challenge" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13761 +#: guix-git/doc/guix.texi:14118 msgid "Do the binaries provided by this server really correspond to the source code it claims to build? Is a package build process deterministic? These are the questions the @command{guix challenge} command attempts to answer." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13769 +#: guix-git/doc/guix.texi:14126 msgid "The former is obviously an important question: Before using a substitute server (@pxref{Substitutes}), one had better @emph{verify} that it provides the right binaries, and thus @emph{challenge} it. The latter is what enables the former: If package builds are deterministic, then independent builds of the package should yield the exact same result, bit for bit; if a server provides a binary different from the one obtained locally, it may be either corrupt or malicious." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13778 +#: guix-git/doc/guix.texi:14135 msgid "We know that the hash that shows up in @file{/gnu/store} file names is the hash of all the inputs of the process that built the file or directory---compilers, libraries, build scripts, etc. (@pxref{Introduction}). Assuming deterministic build processes, one store file name should map to exactly one build output. @command{guix challenge} checks whether there is, indeed, a single mapping by comparing the build outputs of several independent builds of any given store item." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13780 +#: guix-git/doc/guix.texi:14137 msgid "The command output looks like this:" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13792 +#: guix-git/doc/guix.texi:14149 #, no-wrap msgid "" "$ guix challenge --substitute-urls=\"https://@value{SUBSTITUTE-SERVER-1} https://guix.example.org\"\n" @@ -24204,7 +24795,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13799 +#: guix-git/doc/guix.texi:14156 #, no-wrap msgid "" "/gnu/store/@dots{}-git-2.5.0 contents differ:\n" @@ -24217,7 +24808,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13806 +#: guix-git/doc/guix.texi:14163 #, no-wrap msgid "" "/gnu/store/@dots{}-pius-2.1.1 contents differ:\n" @@ -24230,7 +24821,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13808 +#: guix-git/doc/guix.texi:14165 #, no-wrap msgid "" "@dots{}\n" @@ -24238,7 +24829,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13813 +#: guix-git/doc/guix.texi:14170 #, no-wrap msgid "" "6,406 store items were analyzed:\n" @@ -24248,28 +24839,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13821 +#: guix-git/doc/guix.texi:14178 msgid "In this example, @command{guix challenge} first scans the store to determine the set of locally-built derivations---as opposed to store items that were downloaded from a substitute server---and then queries all the substitute servers. It then reports those store items for which the servers obtained a result different from the local build." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13822 +#: guix-git/doc/guix.texi:14179 #, no-wrap msgid "non-determinism, in package builds" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13833 +#: guix-git/doc/guix.texi:14190 msgid "As an example, @code{guix.example.org} always gets a different answer. Conversely, @code{@value{SUBSTITUTE-SERVER-1}} agrees with local builds, except in the case of Git. This might indicate that the build process of Git is non-deterministic, meaning that its output varies as a function of various things that Guix does not fully control, in spite of building packages in isolated environments (@pxref{Features}). Most common sources of non-determinism include the addition of timestamps in build results, the inclusion of random numbers, and directory listings sorted by inode number. See @uref{https://reproducible-builds.org/docs/}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13836 +#: guix-git/doc/guix.texi:14193 msgid "To find out what is wrong with this Git binary, the easiest approach is to run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13841 +#: guix-git/doc/guix.texi:14198 #, no-wrap msgid "" "guix challenge git \\\n" @@ -24278,17 +24869,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13845 +#: guix-git/doc/guix.texi:14202 msgid "This automatically invokes @command{diffoscope}, which displays detailed information about files that differ." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13848 +#: guix-git/doc/guix.texi:14205 msgid "Alternatively, we can do something along these lines (@pxref{Invoking guix archive}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13853 +#: guix-git/doc/guix.texi:14210 #, no-wrap msgid "" "$ wget -q -O - https://@value{SUBSTITUTE-SERVER-1}/nar/lzip/@dots{}-git-2.5.0 \\\n" @@ -24297,160 +24888,160 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13862 +#: guix-git/doc/guix.texi:14219 msgid "This command shows the difference between the files resulting from the local build, and the files resulting from the build on @code{@value{SUBSTITUTE-SERVER-1}} (@pxref{Overview, Comparing and Merging Files,, diffutils, Comparing and Merging Files}). The @command{diff} command works great for text files. When binary files differ, a better option is @uref{https://diffoscope.org/, Diffoscope}, a tool that helps visualize differences for all kinds of files." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13870 +#: guix-git/doc/guix.texi:14227 msgid "Once you have done that work, you can tell whether the differences are due to a non-deterministic build process or to a malicious server. We try hard to remove sources of non-determinism in packages to make it easier to verify substitutes, but of course, this is a process that involves not just Guix, but a large part of the free software community. In the meantime, @command{guix challenge} is one tool to help address the problem." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13874 +#: guix-git/doc/guix.texi:14231 msgid "If you are writing packages for Guix, you are encouraged to check whether @code{@value{SUBSTITUTE-SERVER-1}} and other substitute servers obtain the same build result as you did with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13877 +#: guix-git/doc/guix.texi:14234 #, no-wrap msgid "$ guix challenge @var{package}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13882 +#: guix-git/doc/guix.texi:14239 msgid "where @var{package} is a package specification such as @code{guile@@2.0} or @code{glibc:debug}." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13887 +#: guix-git/doc/guix.texi:14244 #, no-wrap msgid "guix challenge @var{options} [@var{packages}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13894 +#: guix-git/doc/guix.texi:14251 msgid "When a difference is found between the hash of a locally-built item and that of a server-provided substitute, or among substitutes provided by different servers, the command displays it as in the example above and its exit code is 2 (other non-zero exit codes denote other kinds of errors)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13896 +#: guix-git/doc/guix.texi:14253 msgid "The one option that matters is:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13902 +#: guix-git/doc/guix.texi:14259 msgid "Consider @var{urls} the whitespace-separated list of substitute source URLs to compare to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13903 +#: guix-git/doc/guix.texi:14260 #, no-wrap msgid "--diff=@var{mode}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13905 +#: guix-git/doc/guix.texi:14262 msgid "Upon mismatches, show differences according to @var{mode}, one of:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13907 +#: guix-git/doc/guix.texi:14264 #, no-wrap msgid "@code{simple} (the default)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13909 +#: guix-git/doc/guix.texi:14266 msgid "Show the list of files that differ." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:13910 +#: guix-git/doc/guix.texi:14267 #, no-wrap msgid "diffoscope" msgstr "" #. type: var{#1} -#: guix-git/doc/guix.texi:13911 +#: guix-git/doc/guix.texi:14268 #, no-wrap msgid "command" -msgstr "" +msgstr "command" #. type: table -#: guix-git/doc/guix.texi:13914 +#: guix-git/doc/guix.texi:14271 msgid "Invoke @uref{https://diffoscope.org/, Diffoscope}, passing it two directories whose contents do not match." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13917 +#: guix-git/doc/guix.texi:14274 msgid "When @var{command} is an absolute file name, run @var{command} instead of Diffoscope." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13920 +#: guix-git/doc/guix.texi:14277 msgid "Do not show further details about the differences." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13925 +#: guix-git/doc/guix.texi:14282 msgid "Thus, unless @option{--diff=none} is passed, @command{guix challenge} downloads the store items from the given substitute servers so that it can compare them." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13926 +#: guix-git/doc/guix.texi:14283 #, no-wrap msgid "--verbose" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13927 +#: guix-git/doc/guix.texi:14284 #, no-wrap msgid "-v" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13930 +#: guix-git/doc/guix.texi:14287 msgid "Show details about matches (identical contents) in addition to information about mismatches." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13934 +#: guix-git/doc/guix.texi:14291 #, no-wrap msgid "Invoking @command{guix copy}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13936 +#: guix-git/doc/guix.texi:14293 #, no-wrap msgid "copy, of store items, over SSH" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13937 +#: guix-git/doc/guix.texi:14294 #, no-wrap msgid "SSH, copy of store items" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13938 +#: guix-git/doc/guix.texi:14295 #, no-wrap msgid "sharing store items across machines" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13939 +#: guix-git/doc/guix.texi:14296 #, no-wrap msgid "transferring store items across machines" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13946 +#: guix-git/doc/guix.texi:14303 msgid "The @command{guix copy} command copies items from the store of one machine to that of another machine over a secure shell (SSH) connection@footnote{This command is available only when Guile-SSH was found. @xref{Requirements}, for details.}. For example, the following command copies the @code{coreutils} package, the user's profile, and all their dependencies over to @var{host}, logged in as @var{user}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13950 +#: guix-git/doc/guix.texi:14307 #, no-wrap msgid "" "guix copy --to=@var{user}@@@var{host} \\\n" @@ -24458,192 +25049,192 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13954 +#: guix-git/doc/guix.texi:14311 msgid "If some of the items to be copied are already present on @var{host}, they are not actually sent." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13957 +#: guix-git/doc/guix.texi:14314 msgid "The command below retrieves @code{libreoffice} and @code{gimp} from @var{host}, assuming they are available there:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13960 +#: guix-git/doc/guix.texi:14317 #, no-wrap msgid "guix copy --from=@var{host} libreoffice gimp\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13965 +#: guix-git/doc/guix.texi:14322 msgid "The SSH connection is established using the Guile-SSH client, which is compatible with OpenSSH: it honors @file{~/.ssh/known_hosts} and @file{~/.ssh/config}, and uses the SSH agent for authentication." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13971 +#: guix-git/doc/guix.texi:14328 msgid "The key used to sign items that are sent must be accepted by the remote machine. Likewise, the key used by the remote machine to sign items you are retrieving must be in @file{/etc/guix/acl} so it is accepted by your own daemon. @xref{Invoking guix archive}, for more information about store item authentication." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13976 +#: guix-git/doc/guix.texi:14333 #, no-wrap msgid "guix copy [--to=@var{spec}|--from=@var{spec}] @var{items}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13979 +#: guix-git/doc/guix.texi:14336 msgid "You must always specify one of the following options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13981 +#: guix-git/doc/guix.texi:14338 #, no-wrap msgid "--to=@var{spec}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13982 +#: guix-git/doc/guix.texi:14339 #, no-wrap msgid "--from=@var{spec}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13986 +#: guix-git/doc/guix.texi:14343 msgid "Specify the host to send to or receive from. @var{spec} must be an SSH spec such as @code{example.org}, @code{charlie@@example.org}, or @code{charlie@@example.org:2222}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13990 +#: guix-git/doc/guix.texi:14347 msgid "The @var{items} can be either package names, such as @code{gimp}, or store items, such as @file{/gnu/store/@dots{}-idutils-4.6}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13994 +#: guix-git/doc/guix.texi:14351 msgid "When specifying the name of a package to send, it is first built if needed, unless @option{--dry-run} was specified. Common build options are supported (@pxref{Common Build Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13997 +#: guix-git/doc/guix.texi:14354 #, no-wrap msgid "Invoking @command{guix container}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13999 +#: guix-git/doc/guix.texi:14356 #, no-wrap msgid "guix container" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:14003 +#: guix-git/doc/guix.texi:14360 msgid "As of version @value{VERSION}, this tool is experimental. The interface is subject to radical change in the future." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14010 +#: guix-git/doc/guix.texi:14367 msgid "The purpose of @command{guix container} is to manipulate processes running within an isolated environment, commonly known as a ``container'', typically created by the @command{guix shell} (@pxref{Invoking guix shell}) and @command{guix system container} (@pxref{Invoking guix system}) commands." msgstr "" #. type: example -#: guix-git/doc/guix.texi:14015 +#: guix-git/doc/guix.texi:14372 #, no-wrap msgid "guix container @var{action} @var{options}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14019 +#: guix-git/doc/guix.texi:14376 msgid "@var{action} specifies the operation to perform with a container, and @var{options} specifies the context-specific arguments for the action." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14021 +#: guix-git/doc/guix.texi:14378 msgid "The following actions are available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14023 +#: guix-git/doc/guix.texi:14380 #, no-wrap msgid "exec" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14025 +#: guix-git/doc/guix.texi:14382 msgid "Execute a command within the context of a running container." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14027 +#: guix-git/doc/guix.texi:14384 msgid "The syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14030 +#: guix-git/doc/guix.texi:14387 #, no-wrap msgid "guix container exec @var{pid} @var{program} @var{arguments}@dots{}\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14036 +#: guix-git/doc/guix.texi:14393 msgid "@var{pid} specifies the process ID of the running container. @var{program} specifies an executable file name within the root file system of the container. @var{arguments} are the additional options that will be passed to @var{program}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14040 +#: guix-git/doc/guix.texi:14397 msgid "The following command launches an interactive login shell inside a Guix system container, started by @command{guix system container}, and whose process ID is 9001:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14043 +#: guix-git/doc/guix.texi:14400 #, no-wrap msgid "guix container exec 9001 /run/current-system/profile/bin/bash --login\n" -msgstr "" +msgstr "guix container exec 9001 /run/current-system/profile/bin/bash --login\n" #. type: table -#: guix-git/doc/guix.texi:14047 +#: guix-git/doc/guix.texi:14404 msgid "Note that the @var{pid} cannot be the parent process of a container. It must be PID 1 of the container or one of its child processes." msgstr "" #. type: section -#: guix-git/doc/guix.texi:14051 +#: guix-git/doc/guix.texi:14408 #, no-wrap msgid "Invoking @command{guix weather}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14060 +#: guix-git/doc/guix.texi:14417 msgid "Occasionally you're grumpy because substitutes are lacking and you end up building packages by yourself (@pxref{Substitutes}). The @command{guix weather} command reports on substitute availability on the specified servers so you can have an idea of whether you'll be grumpy today. It can sometimes be useful info as a user, but it is primarily useful to people running @command{guix publish} (@pxref{Invoking guix publish})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14061 +#: guix-git/doc/guix.texi:14418 #, no-wrap msgid "statistics, for substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14062 +#: guix-git/doc/guix.texi:14419 #, no-wrap msgid "availability of substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14063 +#: guix-git/doc/guix.texi:14420 #, no-wrap msgid "substitute availability" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14064 +#: guix-git/doc/guix.texi:14421 #, no-wrap msgid "weather, substitute availability" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14066 +#: guix-git/doc/guix.texi:14423 msgid "Here's a sample run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14078 +#: guix-git/doc/guix.texi:14435 #, no-wrap msgid "" "$ guix weather --substitute-urls=https://guix.example.org\n" @@ -24660,7 +25251,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14088 +#: guix-git/doc/guix.texi:14445 #, no-wrap msgid "" " 9.8% (342 out of 3,470) of the missing items are queued\n" @@ -24675,76 +25266,71 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14090 +#: guix-git/doc/guix.texi:14447 #, no-wrap msgid "continuous integration, statistics" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14101 +#: guix-git/doc/guix.texi:14458 msgid "As you can see, it reports the fraction of all the packages for which substitutes are available on the server---regardless of whether substitutes are enabled, and regardless of whether this server's signing key is authorized. It also reports the size of the compressed archives (``nars'') provided by the server, the size the corresponding store items occupy in the store (assuming deduplication is turned off), and the server's throughput. The second part gives continuous integration (CI) statistics, if the server supports it. In addition, using the @option{--coverage} option, @command{guix weather} can list ``important'' package substitutes missing on the server (see below)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14107 +#: guix-git/doc/guix.texi:14464 msgid "To achieve that, @command{guix weather} queries over HTTP(S) meta-data (@dfn{narinfos}) for all the relevant store items. Like @command{guix challenge}, it ignores signatures on those substitutes, which is innocuous since the command only gathers statistics and cannot install those substitutes." msgstr "" #. type: example -#: guix-git/doc/guix.texi:14112 +#: guix-git/doc/guix.texi:14469 #, no-wrap msgid "guix weather @var{options}@dots{} [@var{packages}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14120 +#: guix-git/doc/guix.texi:14477 msgid "When @var{packages} is omitted, @command{guix weather} checks the availability of substitutes for @emph{all} the packages, or for those specified with @option{--manifest}; otherwise it only considers the specified packages. It is also possible to query specific system types with @option{--system}. @command{guix weather} exits with a non-zero code when the fraction of available substitutes is below 100%." msgstr "" -#. type: Plain text -#: guix-git/doc/guix.texi:14122 -msgid "The available options are listed below." -msgstr "" - #. type: table -#: guix-git/doc/guix.texi:14128 +#: guix-git/doc/guix.texi:14485 msgid "@var{urls} is the space-separated list of substitute server URLs to query. When this option is omitted, the default set of substitute servers is queried." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14134 +#: guix-git/doc/guix.texi:14491 msgid "Query substitutes for @var{system}---e.g., @code{aarch64-linux}. This option can be repeated, in which case @command{guix weather} will query substitutes for several system types." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14140 +#: guix-git/doc/guix.texi:14497 msgid "Instead of querying substitutes for all the packages, only ask for those specified in @var{file}. @var{file} must contain a @dfn{manifest}, as with the @code{-m} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14143 +#: guix-git/doc/guix.texi:14500 msgid "This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14144 +#: guix-git/doc/guix.texi:14501 #, no-wrap msgid "--coverage[=@var{count}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:14145 +#: guix-git/doc/guix.texi:14502 #, no-wrap msgid "-c [@var{count}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14151 +#: guix-git/doc/guix.texi:14508 msgid "Report on substitute coverage for packages: list packages with at least @var{count} dependents (zero by default) for which substitutes are unavailable. Dependent packages themselves are not listed: if @var{b} depends on @var{a} and @var{a} has no substitutes, only @var{a} is listed, even though @var{b} usually lacks substitutes as well. The result looks like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14165 +#: guix-git/doc/guix.texi:14522 #, no-wrap msgid "" "$ guix weather --substitute-urls=@value{SUBSTITUTE-URLS} -c 10\n" @@ -24762,39 +25348,39 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14171 +#: guix-git/doc/guix.texi:14528 msgid "What this example shows is that @code{kcoreaddons} and presumably the 58 packages that depend on it have no substitutes at @code{@value{SUBSTITUTE-SERVER-1}}; likewise for @code{qgpgme} and the 46 packages that depend on it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14175 +#: guix-git/doc/guix.texi:14532 msgid "If you are a Guix developer, or if you are taking care of this build farm, you'll probably want to have a closer look at these packages: they may simply fail to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14176 +#: guix-git/doc/guix.texi:14533 #, no-wrap msgid "--display-missing" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14178 +#: guix-git/doc/guix.texi:14535 msgid "Display the list of store items for which substitutes are missing." msgstr "" #. type: section -#: guix-git/doc/guix.texi:14181 +#: guix-git/doc/guix.texi:14538 #, no-wrap msgid "Invoking @command{guix processes}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14189 +#: guix-git/doc/guix.texi:14546 msgid "The @command{guix processes} command can be useful to developers and system administrators, especially on multi-user machines and on build farms: it lists the current sessions (connections to the daemon), as well as information about the processes involved@footnote{Remote sessions, when @command{guix-daemon} is started with @option{--listen} specifying a TCP endpoint, are @emph{not} listed.}. Here's an example of the information it returns:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14195 +#: guix-git/doc/guix.texi:14552 #, no-wrap msgid "" "$ sudo guix processes\n" @@ -24805,7 +25391,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14199 +#: guix-git/doc/guix.texi:14556 #, no-wrap msgid "" "SessionPID: 19402\n" @@ -24815,7 +25401,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14212 +#: guix-git/doc/guix.texi:14569 #, no-wrap msgid "" "SessionPID: 19444\n" @@ -24833,22 +25419,22 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14219 +#: guix-git/doc/guix.texi:14576 msgid "In this example we see that @command{guix-daemon} has three clients: @command{guix environment}, @command{guix publish}, and the Cuirass continuous integration tool; their process identifier (PID) is given by the @code{ClientPID} field. The @code{SessionPID} field gives the PID of the @command{guix-daemon} sub-process of this particular session." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14226 +#: guix-git/doc/guix.texi:14583 msgid "The @code{LockHeld} fields show which store items are currently locked by this session, which corresponds to store items being built or substituted (the @code{LockHeld} field is not displayed when @command{guix processes} is not running as root). Last, by looking at the @code{ChildPID} and @code{ChildCommand} fields, we understand that these three builds are being offloaded (@pxref{Daemon Offload Setup})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14231 +#: guix-git/doc/guix.texi:14588 msgid "The output is in Recutils format so we can use the handy @command{recsel} command to select sessions of interest (@pxref{Selection Expressions,,, recutils, GNU recutils manual}). As an example, the command shows the command line and PID of the client that triggered the build of a Perl package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14237 +#: guix-git/doc/guix.texi:14594 #, no-wrap msgid "" "$ sudo guix processes | \\\n" @@ -24858,28 +25444,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14240 +#: guix-git/doc/guix.texi:14597 msgid "Additional options are listed below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14250 +#: guix-git/doc/guix.texi:14607 msgid "The default option. It outputs a set of Session recutils records that include each @code{ChildProcess} as a field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14251 +#: guix-git/doc/guix.texi:14608 #, no-wrap msgid "normalized" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14258 +#: guix-git/doc/guix.texi:14615 msgid "Normalize the output records into record sets (@pxref{Record Sets,,, recutils, GNU recutils manual}). Normalizing into record sets allows joins across record types. The example below lists the PID of each @code{ChildProcess} and the associated PID for @code{Session} that spawned the @code{ChildProcess} where the @code{Session} was started using @command{guix build}." msgstr "" #. type: example -#: guix-git/doc/guix.texi:14268 +#: guix-git/doc/guix.texi:14625 #, no-wrap msgid "" "$ guix processes --format=normalized | \\\n" @@ -24894,7 +25480,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14271 +#: guix-git/doc/guix.texi:14628 #, no-wrap msgid "" "PID: 4554\n" @@ -24903,7 +25489,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14274 +#: guix-git/doc/guix.texi:14631 #, no-wrap msgid "" "PID: 4646\n" @@ -24911,90 +25497,90 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14281 +#: guix-git/doc/guix.texi:14638 #, no-wrap msgid "system configuration" -msgstr "" +msgstr "nastavenie systému" #. type: Plain text -#: guix-git/doc/guix.texi:14287 +#: guix-git/doc/guix.texi:14644 msgid "Guix System supports a consistent whole-system configuration mechanism. By that we mean that all aspects of the global system configuration---such as the available system services, timezone and locale settings, user accounts---are declared in a single place. Such a @dfn{system configuration} can be @dfn{instantiated}---i.e., effected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14297 +#: guix-git/doc/guix.texi:14654 msgid "One of the advantages of putting all the system configuration under the control of Guix is that it supports transactional system upgrades, and makes it possible to roll back to a previous system instantiation, should something go wrong with the new one (@pxref{Features}). Another advantage is that it makes it easy to replicate the exact same configuration across different machines, or at different points in time, without having to resort to additional administration tools layered on top of the own tools of the system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14302 +#: guix-git/doc/guix.texi:14659 msgid "This section describes this mechanism. First we focus on the system administrator's viewpoint---explaining how the system is configured and instantiated. Then we show how this mechanism can be extended, for instance to support new system services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14332 +#: guix-git/doc/guix.texi:14689 msgid "The operating system is configured by providing an @code{operating-system} declaration in a file that can then be passed to the @command{guix system} command (@pxref{Invoking guix system}). A simple setup, with the default system services, the default Linux-Libre kernel, initial RAM disk, and boot loader looks like this:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14333 guix-git/doc/guix.texi:35553 +#: guix-git/doc/guix.texi:14690 guix-git/doc/guix.texi:36033 #, no-wrap msgid "operating-system" -msgstr "" +msgstr "operating-system" #. type: include -#: guix-git/doc/guix.texi:14335 +#: guix-git/doc/guix.texi:14692 #, no-wrap msgid "os-config-bare-bones.texi" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14342 +#: guix-git/doc/guix.texi:14699 msgid "This example should be self-describing. Some of the fields defined above, such as @code{host-name} and @code{bootloader}, are mandatory. Others, such as @code{packages} and @code{services}, can be omitted, in which case they get a default value." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14347 +#: guix-git/doc/guix.texi:14704 msgid "Below we discuss the effect of some of the most important fields (@pxref{operating-system Reference}, for details about all the available fields), and how to @dfn{instantiate} the operating system using @command{guix system}." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14348 +#: guix-git/doc/guix.texi:14705 #, no-wrap msgid "Bootloader" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14350 +#: guix-git/doc/guix.texi:14707 #, no-wrap msgid "legacy boot, on Intel machines" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14351 +#: guix-git/doc/guix.texi:14708 #, no-wrap msgid "BIOS boot, on Intel machines" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14352 +#: guix-git/doc/guix.texi:14709 #, no-wrap msgid "UEFI boot" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14353 +#: guix-git/doc/guix.texi:14710 #, no-wrap msgid "EFI boot" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14359 +#: guix-git/doc/guix.texi:14716 msgid "The @code{bootloader} field describes the method that will be used to boot your system. Machines based on Intel processors can boot in ``legacy'' BIOS mode, as in the example above. However, more recent machines rely instead on the @dfn{Unified Extensible Firmware Interface} (UEFI) to boot. In that case, the @code{bootloader} field should contain something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14364 +#: guix-git/doc/guix.texi:14721 #, no-wrap msgid "" "(bootloader-configuration\n" @@ -25003,29 +25589,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14368 +#: guix-git/doc/guix.texi:14725 msgid "@xref{Bootloader Configuration}, for more information on the available configuration options." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14369 +#: guix-git/doc/guix.texi:14726 #, no-wrap msgid "Globally-Visible Packages" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:14371 +#: guix-git/doc/guix.texi:14728 #, no-wrap msgid "%base-packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14384 +#: guix-git/doc/guix.texi:14741 msgid "The @code{packages} field lists packages that will be globally visible on the system, for all user accounts---i.e., in every user's @env{PATH} environment variable---in addition to the per-user profiles (@pxref{Invoking guix package}). The @code{%base-packages} variable provides all the tools one would expect for basic user and administrator tasks---including the GNU Core Utilities, the GNU Networking Utilities, the @command{mg} lightweight text editor, @command{find}, @command{grep}, etc. The example above adds GNU@tie{}Screen to those, taken from the @code{(gnu packages screen)} module (@pxref{Package Modules}). The @code{(list package output)} syntax can be used to add a specific output of a package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14388 +#: guix-git/doc/guix.texi:14745 #, no-wrap msgid "" "(use-modules (gnu packages))\n" @@ -25034,7 +25620,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14393 +#: guix-git/doc/guix.texi:14750 #, no-wrap msgid "" "(operating-system\n" @@ -25044,18 +25630,18 @@ msgid "" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:14395 +#: guix-git/doc/guix.texi:14752 #, no-wrap msgid "specification->package" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14404 +#: guix-git/doc/guix.texi:14761 msgid "Referring to packages by variable name, like @code{isc-bind} above, has the advantage of being unambiguous; it also allows typos and such to be diagnosed right away as ``unbound variables''. The downside is that one needs to know which module defines which package, and to augment the @code{use-package-modules} line accordingly. To avoid that, one can use the @code{specification->package} procedure of the @code{(gnu packages)} module, which returns the best package for a given name or name and version:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14407 +#: guix-git/doc/guix.texi:14764 #, no-wrap msgid "" "(use-modules (gnu packages))\n" @@ -25063,7 +25649,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14413 +#: guix-git/doc/guix.texi:14770 #, no-wrap msgid "" "(operating-system\n" @@ -25074,58 +25660,58 @@ msgid "" msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14415 +#: guix-git/doc/guix.texi:14772 #, no-wrap msgid "System Services" -msgstr "" +msgstr "Systémové služby" #. type: cindex -#: guix-git/doc/guix.texi:14417 guix-git/doc/guix.texi:34307 -#: guix-git/doc/guix.texi:35783 +#: guix-git/doc/guix.texi:14774 guix-git/doc/guix.texi:34746 +#: guix-git/doc/guix.texi:36273 #, no-wrap msgid "services" -msgstr "" +msgstr "služby" #. type: vindex -#: guix-git/doc/guix.texi:14418 +#: guix-git/doc/guix.texi:14775 #, no-wrap msgid "%base-services" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14428 +#: guix-git/doc/guix.texi:14785 msgid "The @code{services} field lists @dfn{system services} to be made available when the system starts (@pxref{Services}). The @code{operating-system} declaration above specifies that, in addition to the basic services, we want the OpenSSH secure shell daemon listening on port 2222 (@pxref{Networking Services, @code{openssh-service-type}}). Under the hood, @code{openssh-service-type} arranges so that @command{sshd} is started with the right command-line options, possibly with supporting configuration files generated as needed (@pxref{Defining Services})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14429 +#: guix-git/doc/guix.texi:14786 #, no-wrap msgid "customization, of services" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:14430 +#: guix-git/doc/guix.texi:14787 #, no-wrap msgid "modify-services" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14434 +#: guix-git/doc/guix.texi:14791 msgid "Occasionally, instead of using the base services as is, you will want to customize them. To do this, use @code{modify-services} (@pxref{Service Reference, @code{modify-services}}) to modify the list." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:14440 +#: guix-git/doc/guix.texi:14797 msgid "auto-login to TTY" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14440 +#: guix-git/doc/guix.texi:14797 msgid "For example, suppose you want to modify @code{guix-daemon} and Mingetty (the console log-in) in the @code{%base-services} list (@pxref{Base Services, @code{%base-services}}). To do that, you can write the following in your operating system declaration:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14457 +#: guix-git/doc/guix.texi:14814 #, no-wrap msgid "" "(define %my-services\n" @@ -25141,64 +25727,67 @@ msgid "" " (mingetty-service-type config =>\n" " (mingetty-configuration\n" " (inherit config)\n" -" ;; Automatially log in as \"guest\".\n" +" ;; Automatically log in as \"guest\".\n" " (auto-login \"guest\")))))\n" "\n" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14461 +#: guix-git/doc/guix.texi:14818 #, no-wrap msgid "" "(operating-system\n" " ;; @dots{}\n" " (services %my-services))\n" msgstr "" +"(operating-system\n" +" ;; @dots{}\n" +" (services %my-services))\n" #. type: Plain text -#: guix-git/doc/guix.texi:14474 +#: guix-git/doc/guix.texi:14831 msgid "This changes the configuration---i.e., the service parameters---of the @code{guix-service-type} instance, and that of all the @code{mingetty-service-type} instances in the @code{%base-services} list (@pxref{Auto-Login to a Specific TTY, see the cookbook for how to auto-login one user to a specific TTY,, guix-cookbook, GNU Guix Cookbook})). Observe how this is accomplished: first, we arrange for the original configuration to be bound to the identifier @code{config} in the @var{body}, and then we write the @var{body} so that it evaluates to the desired configuration. In particular, notice how we use @code{inherit} to create a new configuration which has the same values as the old configuration, but with a few modifications." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14481 +#: guix-git/doc/guix.texi:14838 msgid "The configuration for a typical ``desktop'' usage, with an encrypted root partition, a swap file on the root partition, the X11 display server, GNOME and Xfce (users can choose which of these desktop environments to use at the log-in screen by pressing @kbd{F1}), network management, power management, and more, would look like this:" msgstr "" #. type: include -#: guix-git/doc/guix.texi:14483 +#: guix-git/doc/guix.texi:14840 #, no-wrap msgid "os-config-desktop.texi" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14488 +#: guix-git/doc/guix.texi:14845 msgid "A graphical system with a choice of lightweight window managers instead of full-blown desktop environments would look like this:" msgstr "" #. type: include -#: guix-git/doc/guix.texi:14490 +#: guix-git/doc/guix.texi:14847 #, no-wrap msgid "os-config-lightweight-desktop.texi" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14496 +#: guix-git/doc/guix.texi:14853 msgid "This example refers to the @file{/boot/efi} file system by its UUID, @code{1234-ABCD}. Replace this UUID with the right UUID on your system, as returned by the @command{blkid} command." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14500 +#: guix-git/doc/guix.texi:14857 msgid "@xref{Desktop Services}, for the exact list of services provided by @code{%desktop-services}. @xref{X.509 Certificates}, for background information about the @code{nss-certs} package that is used here." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14507 +#: guix-git/doc/guix.texi:14864 msgid "Again, @code{%desktop-services} is just a list of service objects. If you want to remove services from there, you can do so using the procedures for list filtering (@pxref{SRFI-1 Filtering and Partitioning,,, guile, GNU Guile Reference Manual}). For instance, the following expression returns a list that contains all the services in @code{%desktop-services} minus the Avahi service:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14512 +#: guix-git/doc/guix.texi:14869 #, no-wrap msgid "" "(remove (lambda (service)\n" @@ -25207,12 +25796,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14515 +#: guix-git/doc/guix.texi:14872 msgid "Alternatively, the @code{modify-services} macro can be used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14519 +#: guix-git/doc/guix.texi:14876 #, no-wrap msgid "" "(modify-services %desktop-services\n" @@ -25220,356 +25809,356 @@ msgid "" msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14522 +#: guix-git/doc/guix.texi:14879 #, no-wrap msgid "Instantiating the System" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14529 +#: guix-git/doc/guix.texi:14886 msgid "Assuming the @code{operating-system} declaration is stored in the @file{my-system-config.scm} file, the @command{guix system reconfigure my-system-config.scm} command instantiates that configuration, and makes it the default GRUB boot entry (@pxref{Invoking guix system})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14537 +#: guix-git/doc/guix.texi:14894 msgid "The normal way to change the system configuration is by updating this file and re-running @command{guix system reconfigure}. One should never have to touch files in @file{/etc} or to run commands that modify the system state such as @command{useradd} or @command{grub-install}. In fact, you must avoid that since that would not only void your warranty but also prevent you from rolling back to previous versions of your system, should you ever need to." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14538 +#: guix-git/doc/guix.texi:14895 #, no-wrap msgid "roll-back, of the operating system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14548 +#: guix-git/doc/guix.texi:14905 msgid "Speaking of roll-back, each time you run @command{guix system reconfigure}, a new @dfn{generation} of the system is created---without modifying or deleting previous generations. Old system generations get an entry in the bootloader boot menu, allowing you to boot them in case something went wrong with the latest generation. Reassuring, no? The @command{guix system list-generations} command lists the system generations available on disk. It is also possible to roll back the system via the commands @command{guix system roll-back} and @command{guix system switch-generation}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14554 +#: guix-git/doc/guix.texi:14911 msgid "Although the @command{guix system reconfigure} command will not modify previous generations, you must take care when the current generation is not the latest (e.g., after invoking @command{guix system roll-back}), since the operation might overwrite a later generation (@pxref{Invoking guix system})." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14555 +#: guix-git/doc/guix.texi:14912 #, no-wrap msgid "The Programming Interface" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14560 +#: guix-git/doc/guix.texi:14917 msgid "At the Scheme level, the bulk of an @code{operating-system} declaration is instantiated with the following monadic procedure (@pxref{The Store Monad}):" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14561 +#: guix-git/doc/guix.texi:14918 #, no-wrap msgid "{Monadic Procedure} operating-system-derivation os" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14564 +#: guix-git/doc/guix.texi:14921 msgid "Return a derivation that builds @var{os}, an @code{operating-system} object (@pxref{Derivations})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14568 +#: guix-git/doc/guix.texi:14925 msgid "The output of the derivation is a single directory that refers to all the packages, configuration files, and other supporting files needed to instantiate @var{os}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14573 +#: guix-git/doc/guix.texi:14930 msgid "This procedure is provided by the @code{(gnu system)} module. Along with @code{(gnu services)} (@pxref{Services}), this module contains the guts of Guix System. Make sure to visit it!" msgstr "" #. type: section -#: guix-git/doc/guix.texi:14576 +#: guix-git/doc/guix.texi:14933 #, no-wrap msgid "@code{operating-system} Reference" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14581 +#: guix-git/doc/guix.texi:14938 msgid "This section summarizes all the options available in @code{operating-system} declarations (@pxref{Using the Configuration System})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14582 +#: guix-git/doc/guix.texi:14939 #, no-wrap msgid "{Data Type} operating-system" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14586 +#: guix-git/doc/guix.texi:14943 msgid "This is the data type representing an operating system configuration. By that, we mean all the global system configuration, not per-user configuration (@pxref{Using the Configuration System})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14588 +#: guix-git/doc/guix.texi:14945 #, no-wrap msgid "@code{kernel} (default: @code{linux-libre})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14593 +#: guix-git/doc/guix.texi:14950 msgid "The package object of the operating system kernel to use@footnote{Currently only the Linux-libre kernel is fully supported. Using GNU@tie{}mach with the GNU@tie{}Hurd is experimental and only available when building a virtual machine disk image.}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14594 guix-git/doc/guix.texi:30733 +#: guix-git/doc/guix.texi:14951 guix-git/doc/guix.texi:31098 #, no-wrap msgid "hurd" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14595 +#: guix-git/doc/guix.texi:14952 #, no-wrap msgid "@code{hurd} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14600 +#: guix-git/doc/guix.texi:14957 msgid "The package object of the Hurd to be started by the kernel. When this field is set, produce a GNU/Hurd operating system. In that case, @code{kernel} must also be set to the @code{gnumach} package---the microkernel the Hurd runs on." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:14603 +#: guix-git/doc/guix.texi:14960 msgid "This feature is experimental and only supported for disk images." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14605 +#: guix-git/doc/guix.texi:14962 #, no-wrap msgid "@code{kernel-loadable-modules} (default: '())" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14608 +#: guix-git/doc/guix.texi:14965 msgid "A list of objects (usually packages) to collect loadable kernel modules from--e.g. @code{(list ddcci-driver-linux)}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14609 +#: guix-git/doc/guix.texi:14966 #, no-wrap msgid "@code{kernel-arguments} (default: @code{%default-kernel-arguments})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14612 +#: guix-git/doc/guix.texi:14969 msgid "List of strings or gexps representing additional arguments to pass on the command-line of the kernel---e.g., @code{(\"console=ttyS0\")}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14613 guix-git/doc/guix.texi:34539 -#: guix-git/doc/guix.texi:34558 +#: guix-git/doc/guix.texi:14970 guix-git/doc/guix.texi:34978 +#: guix-git/doc/guix.texi:34997 #, no-wrap msgid "bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14615 +#: guix-git/doc/guix.texi:14972 msgid "The system bootloader configuration object. @xref{Bootloader Configuration}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14616 guix-git/doc/guix.texi:34732 +#: guix-git/doc/guix.texi:14973 guix-git/doc/guix.texi:35171 #, no-wrap msgid "label" -msgstr "" +msgstr "label" #. type: table -#: guix-git/doc/guix.texi:14619 +#: guix-git/doc/guix.texi:14976 msgid "This is the label (a string) as it appears in the bootloader's menu entry. The default label includes the kernel name and version." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14620 guix-git/doc/guix.texi:16318 -#: guix-git/doc/guix.texi:19503 guix-git/doc/guix.texi:34662 +#: guix-git/doc/guix.texi:14977 guix-git/doc/guix.texi:16675 +#: guix-git/doc/guix.texi:19865 guix-git/doc/guix.texi:35101 #, no-wrap msgid "@code{keyboard-layout} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14625 +#: guix-git/doc/guix.texi:14982 msgid "This field specifies the keyboard layout to use in the console. It can be either @code{#f}, in which case the default keyboard layout is used (usually US English), or a @code{} record. @xref{Keyboard Layout}, for more information." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14630 +#: guix-git/doc/guix.texi:14987 msgid "This keyboard layout is in effect as soon as the kernel has booted. For instance, it is the keyboard layout in effect when you type a passphrase if your root file system is on a @code{luks-device-mapping} mapped device (@pxref{Mapped Devices})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:14637 +#: guix-git/doc/guix.texi:14994 msgid "This does @emph{not} specify the keyboard layout used by the bootloader, nor that used by the graphical display server. @xref{Bootloader Configuration}, for information on how to specify the bootloader's keyboard layout. @xref{X Window}, for information on how to specify the keyboard layout used by the X Window System." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14639 +#: guix-git/doc/guix.texi:14996 #, no-wrap msgid "@code{initrd-modules} (default: @code{%base-initrd-modules})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14640 guix-git/doc/guix.texi:34344 -#: guix-git/doc/guix.texi:34467 +#: guix-git/doc/guix.texi:14997 guix-git/doc/guix.texi:34783 +#: guix-git/doc/guix.texi:34906 #, no-wrap msgid "initrd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14641 guix-git/doc/guix.texi:34345 -#: guix-git/doc/guix.texi:34468 +#: guix-git/doc/guix.texi:14998 guix-git/doc/guix.texi:34784 +#: guix-git/doc/guix.texi:34907 #, no-wrap msgid "initial RAM disk" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14644 +#: guix-git/doc/guix.texi:15001 msgid "The list of Linux kernel modules that need to be available in the initial RAM disk. @xref{Initial RAM Disk}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14645 +#: guix-git/doc/guix.texi:15002 #, no-wrap msgid "@code{initrd} (default: @code{base-initrd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14649 +#: guix-git/doc/guix.texi:15006 msgid "A procedure that returns an initial RAM disk for the Linux kernel. This field is provided to support low-level customization and should rarely be needed for casual use. @xref{Initial RAM Disk}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14650 +#: guix-git/doc/guix.texi:15007 #, no-wrap msgid "@code{firmware} (default: @code{%base-firmware})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14651 +#: guix-git/doc/guix.texi:15008 #, no-wrap msgid "firmware" -msgstr "" +msgstr "mikroprogramové vybavenie" #. type: table -#: guix-git/doc/guix.texi:14653 +#: guix-git/doc/guix.texi:15010 msgid "List of firmware packages loadable by the operating system kernel." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14658 +#: guix-git/doc/guix.texi:15015 msgid "The default includes firmware needed for Atheros- and Broadcom-based WiFi devices (Linux-libre modules @code{ath9k} and @code{b43-open}, respectively). @xref{Hardware Considerations}, for more info on supported hardware." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14659 guix-git/doc/guix.texi:35572 +#: guix-git/doc/guix.texi:15016 guix-git/doc/guix.texi:36052 #, no-wrap msgid "host-name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14661 +#: guix-git/doc/guix.texi:15018 msgid "The host name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14662 +#: guix-git/doc/guix.texi:15019 #, no-wrap msgid "hosts-file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14663 +#: guix-git/doc/guix.texi:15020 #, no-wrap msgid "hosts file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14668 +#: guix-git/doc/guix.texi:15025 msgid "A file-like object (@pxref{G-Expressions, file-like objects}) for use as @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). The default is a file with entries for @code{localhost} and @var{host-name}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14669 +#: guix-git/doc/guix.texi:15026 #, no-wrap msgid "@code{mapped-devices} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14671 +#: guix-git/doc/guix.texi:15028 msgid "A list of mapped devices. @xref{Mapped Devices}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14672 +#: guix-git/doc/guix.texi:15029 #, no-wrap msgid "file-systems" -msgstr "" +msgstr "file-systems" #. type: table -#: guix-git/doc/guix.texi:14674 +#: guix-git/doc/guix.texi:15031 msgid "A list of file systems. @xref{File Systems}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14675 +#: guix-git/doc/guix.texi:15032 #, no-wrap msgid "@code{swap-devices} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14676 +#: guix-git/doc/guix.texi:15033 #, no-wrap msgid "swap devices" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14678 +#: guix-git/doc/guix.texi:15035 msgid "A list of swap spaces. @xref{Swap Space}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15036 #, no-wrap msgid "@code{users} (default: @code{%base-user-accounts})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:14680 +#: guix-git/doc/guix.texi:15037 #, no-wrap msgid "@code{groups} (default: @code{%base-groups})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14682 +#: guix-git/doc/guix.texi:15039 msgid "List of user accounts and groups. @xref{User Accounts}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14685 +#: guix-git/doc/guix.texi:15042 msgid "If the @code{users} list lacks a user account with UID@tie{}0, a ``root'' account with UID@tie{}0 is automatically added." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14686 +#: guix-git/doc/guix.texi:15043 #, no-wrap msgid "@code{skeletons} (default: @code{(default-skeletons)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14690 +#: guix-git/doc/guix.texi:15047 msgid "A list of target file name/file-like object tuples (@pxref{G-Expressions, file-like objects}). These are the skeleton files that will be added to the home directory of newly-created user accounts." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14692 +#: guix-git/doc/guix.texi:15049 msgid "For instance, a valid value may look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14698 +#: guix-git/doc/guix.texi:15055 #, no-wrap msgid "" "`((\".bashrc\" ,(plain-file \"bashrc\" \"echo Hello\\n\"))\n" @@ -25579,29 +26168,29 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14700 +#: guix-git/doc/guix.texi:15057 #, no-wrap msgid "@code{issue} (default: @code{%default-issue})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14703 +#: guix-git/doc/guix.texi:15060 msgid "A string denoting the contents of the @file{/etc/issue} file, which is displayed when users log in on a text console." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14704 +#: guix-git/doc/guix.texi:15061 #, no-wrap msgid "@code{packages} (default: @code{%base-packages})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14708 +#: guix-git/doc/guix.texi:15065 msgid "A list of packages to be installed in the global profile, which is accessible at @file{/run/current-system/profile}. Each element is either a package variable or a package/output tuple. Here's a simple example of both:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14713 +#: guix-git/doc/guix.texi:15070 #, no-wrap msgid "" "(cons* git ; the default \"out\" output\n" @@ -25610,172 +26199,172 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14718 +#: guix-git/doc/guix.texi:15075 msgid "The default set includes core utilities and it is good practice to install non-core utilities in user profiles (@pxref{Invoking guix package})." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14719 +#: guix-git/doc/guix.texi:15076 #, no-wrap msgid "timezone" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14721 +#: guix-git/doc/guix.texi:15078 msgid "A timezone identifying string---e.g., @code{\"Europe/Paris\"}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14725 +#: guix-git/doc/guix.texi:15082 msgid "You can run the @command{tzselect} command to find out which timezone string corresponds to your region. Choosing an invalid timezone name causes @command{guix system} to fail." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14726 guix-git/doc/guix.texi:21115 +#: guix-git/doc/guix.texi:15083 guix-git/doc/guix.texi:21477 #, no-wrap msgid "@code{locale} (default: @code{\"en_US.utf8\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14729 +#: guix-git/doc/guix.texi:15086 msgid "The name of the default locale (@pxref{Locale Names,,, libc, The GNU C Library Reference Manual}). @xref{Locales}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14730 +#: guix-git/doc/guix.texi:15087 #, no-wrap msgid "@code{locale-definitions} (default: @code{%default-locale-definitions})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14733 +#: guix-git/doc/guix.texi:15090 msgid "The list of locale definitions to be compiled and that may be used at run time. @xref{Locales}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14734 +#: guix-git/doc/guix.texi:15091 #, no-wrap msgid "@code{locale-libcs} (default: @code{(list @var{glibc})})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14738 +#: guix-git/doc/guix.texi:15095 msgid "The list of GNU@tie{}libc packages whose locale data and tools are used to build the locale definitions. @xref{Locales}, for compatibility considerations that justify this option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14739 +#: guix-git/doc/guix.texi:15096 #, no-wrap msgid "@code{name-service-switch} (default: @code{%default-nss})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14743 +#: guix-git/doc/guix.texi:15100 msgid "Configuration of the libc name service switch (NSS)---a @code{} object. @xref{Name Service Switch}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14744 +#: guix-git/doc/guix.texi:15101 #, no-wrap msgid "@code{services} (default: @code{%base-services})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14746 +#: guix-git/doc/guix.texi:15103 msgid "A list of service objects denoting system services. @xref{Services}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14747 +#: guix-git/doc/guix.texi:15104 #, no-wrap msgid "essential services" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14748 +#: guix-git/doc/guix.texi:15105 #, no-wrap msgid "@code{essential-services} (default: ...)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14753 +#: guix-git/doc/guix.texi:15110 msgid "The list of ``essential services''---i.e., things like instances of @code{system-service-type} and @code{host-name-service-type} (@pxref{Service Reference}), which are derived from the operating system definition itself. As a user you should @emph{never} need to touch this field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14754 +#: guix-git/doc/guix.texi:15111 #, no-wrap msgid "@code{pam-services} (default: @code{(base-pam-services)})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14755 +#: guix-git/doc/guix.texi:15112 #, no-wrap msgid "PAM" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14756 +#: guix-git/doc/guix.texi:15113 #, no-wrap msgid "pluggable authentication modules" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14759 +#: guix-git/doc/guix.texi:15116 msgid "Linux @dfn{pluggable authentication module} (PAM) services." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14760 +#: guix-git/doc/guix.texi:15117 #, no-wrap msgid "@code{setuid-programs} (default: @code{%setuid-programs})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14763 +#: guix-git/doc/guix.texi:15120 msgid "List of @code{}. @xref{Setuid Programs}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14764 +#: guix-git/doc/guix.texi:15121 #, no-wrap msgid "@code{sudoers-file} (default: @code{%sudoers-specification})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14765 +#: guix-git/doc/guix.texi:15122 #, no-wrap msgid "sudoers file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14768 +#: guix-git/doc/guix.texi:15125 msgid "The contents of the @file{/etc/sudoers} file as a file-like object (@pxref{G-Expressions, @code{local-file} and @code{plain-file}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14773 +#: guix-git/doc/guix.texi:15130 msgid "This file specifies which users can use the @command{sudo} command, what they are allowed to do, and what privileges they may gain. The default is that only @code{root} and members of the @code{wheel} group may use @code{sudo}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14776 +#: guix-git/doc/guix.texi:15133 #, no-wrap msgid "{Scheme Syntax} this-operating-system" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14779 +#: guix-git/doc/guix.texi:15136 msgid "When used in the @emph{lexical scope} of an operating system field definition, this identifier resolves to the operating system being defined." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14782 +#: guix-git/doc/guix.texi:15139 msgid "The example below shows how to refer to the operating system being defined in the definition of the @code{label} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14785 guix-git/doc/guix.texi:18711 +#: guix-git/doc/guix.texi:15142 guix-git/doc/guix.texi:19073 #, no-wrap msgid "" "(use-modules (gnu) (guix))\n" @@ -25783,7 +26372,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14790 +#: guix-git/doc/guix.texi:15147 #, no-wrap msgid "" "(operating-system\n" @@ -25793,17 +26382,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14794 +#: guix-git/doc/guix.texi:15151 msgid "It is an error to refer to @code{this-operating-system} outside an operating system definition." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14805 +#: guix-git/doc/guix.texi:15162 msgid "The list of file systems to be mounted is specified in the @code{file-systems} field of the operating system declaration (@pxref{Using the Configuration System}). Each file system is declared using the @code{file-system} form, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14811 +#: guix-git/doc/guix.texi:15168 #, no-wrap msgid "" "(file-system\n" @@ -25813,68 +26402,68 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14815 +#: guix-git/doc/guix.texi:15172 msgid "As usual, some of the fields are mandatory---those shown in the example above---while others can be omitted. These are described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14816 +#: guix-git/doc/guix.texi:15173 #, no-wrap msgid "{Data Type} file-system" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14819 +#: guix-git/doc/guix.texi:15176 msgid "Objects of this type represent file systems to be mounted. They contain the following members:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14821 guix-git/doc/guix.texi:15201 -#: guix-git/doc/guix.texi:17317 +#: guix-git/doc/guix.texi:15178 guix-git/doc/guix.texi:15558 +#: guix-git/doc/guix.texi:17679 #, no-wrap msgid "type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14824 +#: guix-git/doc/guix.texi:15181 msgid "This is a string specifying the type of the file system---e.g., @code{\"ext4\"}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14825 +#: guix-git/doc/guix.texi:15182 #, no-wrap msgid "mount-point" -msgstr "" +msgstr "mount-point" #. type: table -#: guix-git/doc/guix.texi:14827 +#: guix-git/doc/guix.texi:15184 msgid "This designates the place where the file system is to be mounted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14828 guix-git/doc/guix.texi:17267 +#: guix-git/doc/guix.texi:15185 guix-git/doc/guix.texi:17629 #, no-wrap msgid "device" -msgstr "" +msgstr "zariadenie" #. type: table -#: guix-git/doc/guix.texi:14838 +#: guix-git/doc/guix.texi:15195 msgid "This names the ``source'' of the file system. It can be one of three things: a file system label, a file system UUID, or the name of a @file{/dev} node. Labels and UUIDs offer a way to refer to file systems without having to hard-code their actual device name@footnote{Note that, while it is tempting to use @file{/dev/disk/by-uuid} and similar device names to achieve the same result, this is not recommended: These special device nodes are created by the udev daemon and may be unavailable at the time the device is mounted.}." msgstr "" #. type: findex -#: guix-git/doc/guix.texi:14839 +#: guix-git/doc/guix.texi:15196 #, no-wrap msgid "file-system-label" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14844 +#: guix-git/doc/guix.texi:15201 msgid "File system labels are created using the @code{file-system-label} procedure, UUIDs are created using @code{uuid}, and @file{/dev} node are plain strings. Here's an example of a file system referred to by its label, as shown by the @command{e2label} command:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14850 +#: guix-git/doc/guix.texi:15207 #, no-wrap msgid "" "(file-system\n" @@ -25884,19 +26473,19 @@ msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14852 guix-git/doc/guix.texi:33130 -#: guix-git/doc/guix.texi:33146 +#: guix-git/doc/guix.texi:15209 guix-git/doc/guix.texi:33495 +#: guix-git/doc/guix.texi:33511 #, no-wrap msgid "uuid" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14860 +#: guix-git/doc/guix.texi:15217 msgid "UUIDs are converted from their string representation (as shown by the @command{tune2fs -l} command) using the @code{uuid} form@footnote{The @code{uuid} form expects 16-byte UUIDs as defined in @uref{https://tools.ietf.org/html/rfc4122, RFC@tie{}4122}. This is the form of UUID used by the ext2 family of file systems and others, but it is different from ``UUIDs'' found in FAT file systems, for instance.}, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14866 +#: guix-git/doc/guix.texi:15223 #, no-wrap msgid "" "(file-system\n" @@ -25906,168 +26495,168 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14874 +#: guix-git/doc/guix.texi:15231 msgid "When the source of a file system is a mapped device (@pxref{Mapped Devices}), its @code{device} field @emph{must} refer to the mapped device name---e.g., @file{\"/dev/mapper/root-partition\"}. This is required so that the system knows that mounting the file system depends on having the corresponding device mapping established." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14875 +#: guix-git/doc/guix.texi:15232 #, no-wrap msgid "@code{flags} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14885 +#: guix-git/doc/guix.texi:15242 msgid "This is a list of symbols denoting mount flags. Recognized flags include @code{read-only}, @code{bind-mount}, @code{no-dev} (disallow access to special files), @code{no-suid} (ignore setuid and setgid bits), @code{no-atime} (do not update file access times), @code{strict-atime} (update file access time), @code{lazy-time} (only update time on the in-memory version of the file inode), and @code{no-exec} (disallow program execution). @xref{Mount-Unmount-Remount,,, libc, The GNU C Library Reference Manual}, for more information on these flags." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14886 +#: guix-git/doc/guix.texi:15243 #, no-wrap msgid "@code{options} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14895 +#: guix-git/doc/guix.texi:15252 msgid "This is either @code{#f}, or a string denoting mount options passed to the file system driver. @xref{Mount-Unmount-Remount,,, libc, The GNU C Library Reference Manual}, for details and run @command{man 8 mount} for options for various file systems. Note that the @code{file-system-options->alist} and @code{alist->file-system-options} procedures from @code{(gnu system file-systems)} can be used to convert file system options given as an association list to the string representation, and vice-versa." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14896 +#: guix-git/doc/guix.texi:15253 #, no-wrap msgid "@code{mount?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14901 +#: guix-git/doc/guix.texi:15258 msgid "This value indicates whether to automatically mount the file system when the system is brought up. When set to @code{#f}, the file system gets an entry in @file{/etc/fstab} (read by the @command{mount} command) but is not automatically mounted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14902 +#: guix-git/doc/guix.texi:15259 #, no-wrap msgid "@code{needed-for-boot?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14907 +#: guix-git/doc/guix.texi:15264 msgid "This Boolean value indicates whether the file system is needed when booting. If that is true, then the file system is mounted when the initial RAM disk (initrd) is loaded. This is always the case, for instance, for the root file system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14908 +#: guix-git/doc/guix.texi:15265 #, no-wrap msgid "@code{check?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14912 +#: guix-git/doc/guix.texi:15269 msgid "This Boolean indicates whether the file system should be checked for errors before being mounted. How and when this happens can be further adjusted with the following options." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14913 +#: guix-git/doc/guix.texi:15270 #, no-wrap msgid "@code{skip-check-if-clean?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14918 +#: guix-git/doc/guix.texi:15275 msgid "When true, this Boolean indicates that a file system check triggered by @code{check?} may exit early if the file system is marked as ``clean'', meaning that it was previously correctly unmounted and should not contain errors." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14922 +#: guix-git/doc/guix.texi:15279 msgid "Setting this to false will always force a full consistency check when @code{check?} is true. This may take a very long time and is not recommended on healthy systems---in fact, it may reduce reliability!" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14926 +#: guix-git/doc/guix.texi:15283 msgid "Conversely, some primitive file systems like @code{fat} do not keep track of clean shutdowns and will perform a full scan regardless of the value of this option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14927 +#: guix-git/doc/guix.texi:15284 #, no-wrap msgid "@code{repair} (default: @code{'preen})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14930 +#: guix-git/doc/guix.texi:15287 msgid "When @code{check?} finds errors, it can (try to) repair them and continue booting. This option controls when and how to do so." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14934 +#: guix-git/doc/guix.texi:15291 msgid "If false, try not to modify the file system at all. Checking certain file systems like @code{jfs} may still write to the device to replay the journal. No repairs will be attempted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14937 +#: guix-git/doc/guix.texi:15294 msgid "If @code{#t}, try to repair any errors found and assume ``yes'' to all questions. This will fix the most errors, but may be risky." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14941 +#: guix-git/doc/guix.texi:15298 msgid "If @code{'preen}, repair only errors that are safe to fix without human interaction. What that means is left up to the developers of each file system and may be equivalent to ``none'' or ``all''." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14942 +#: guix-git/doc/guix.texi:15299 #, no-wrap msgid "@code{create-mount-point?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14944 +#: guix-git/doc/guix.texi:15301 msgid "When true, the mount point is created if it does not exist yet." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14945 +#: guix-git/doc/guix.texi:15302 #, no-wrap msgid "@code{mount-may-fail?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14950 +#: guix-git/doc/guix.texi:15307 msgid "When true, this indicates that mounting this file system can fail but that should not be considered an error. This is useful in unusual cases; an example of this is @code{efivarfs}, a file system that can only be mounted on EFI/UEFI systems." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14951 guix-git/doc/guix.texi:15347 +#: guix-git/doc/guix.texi:15308 guix-git/doc/guix.texi:15704 #, no-wrap msgid "@code{dependencies} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14955 +#: guix-git/doc/guix.texi:15312 msgid "This is a list of @code{} or @code{} objects representing file systems that must be mounted or mapped devices that must be opened before (and unmounted or closed after) this one." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14959 +#: guix-git/doc/guix.texi:15316 msgid "As an example, consider a hierarchy of mounts: @file{/sys/fs/cgroup} is a dependency of @file{/sys/fs/cgroup/cpu} and @file{/sys/fs/cgroup/memory}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14962 +#: guix-git/doc/guix.texi:15319 msgid "Another example is a file system that depends on a mapped device, for example for an encrypted partition (@pxref{Mapped Devices})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14965 +#: guix-git/doc/guix.texi:15322 #, no-wrap msgid "{Scheme Procedure} file-system-label @var{str}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14968 +#: guix-git/doc/guix.texi:15325 msgid "This procedure returns an opaque file system label from @var{str}, a string:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14972 +#: guix-git/doc/guix.texi:15329 #, no-wrap msgid "" "(file-system-label \"home\")\n" @@ -26075,104 +26664,104 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14976 +#: guix-git/doc/guix.texi:15333 msgid "File system labels are used to refer to file systems by label rather than by device name. See above for examples." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14980 +#: guix-git/doc/guix.texi:15337 msgid "The @code{(gnu system file-systems)} exports the following useful variables." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14981 +#: guix-git/doc/guix.texi:15338 #, no-wrap msgid "{Scheme Variable} %base-file-systems" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14986 +#: guix-git/doc/guix.texi:15343 msgid "These are essential file systems that are required on normal systems, such as @code{%pseudo-terminal-file-system} and @code{%immutable-store} (see below). Operating system declarations should always contain at least these." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14988 +#: guix-git/doc/guix.texi:15345 #, no-wrap msgid "{Scheme Variable} %pseudo-terminal-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14994 +#: guix-git/doc/guix.texi:15351 msgid "This is the file system to be mounted as @file{/dev/pts}. It supports @dfn{pseudo-terminals} created @i{via} @code{openpty} and similar functions (@pxref{Pseudo-Terminals,,, libc, The GNU C Library Reference Manual}). Pseudo-terminals are used by terminal emulators such as @command{xterm}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14996 +#: guix-git/doc/guix.texi:15353 #, no-wrap msgid "{Scheme Variable} %shared-memory-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15000 +#: guix-git/doc/guix.texi:15357 msgid "This file system is mounted as @file{/dev/shm} and is used to support memory sharing across processes (@pxref{Memory-mapped I/O, @code{shm_open},, libc, The GNU C Library Reference Manual})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15002 +#: guix-git/doc/guix.texi:15359 #, no-wrap msgid "{Scheme Variable} %immutable-store" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15007 +#: guix-git/doc/guix.texi:15364 msgid "This file system performs a read-only ``bind mount'' of @file{/gnu/store}, making it read-only for all the users including @code{root}. This prevents against accidental modification by software running as @code{root} or by system administrators." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15010 +#: guix-git/doc/guix.texi:15367 msgid "The daemon itself is still able to write to the store: it remounts it read-write in its own ``name space.''" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15012 +#: guix-git/doc/guix.texi:15369 #, no-wrap msgid "{Scheme Variable} %binary-format-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15016 +#: guix-git/doc/guix.texi:15373 msgid "The @code{binfmt_misc} file system, which allows handling of arbitrary executable file types to be delegated to user space. This requires the @code{binfmt.ko} kernel module to be loaded." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15018 +#: guix-git/doc/guix.texi:15375 #, no-wrap msgid "{Scheme Variable} %fuse-control-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15022 +#: guix-git/doc/guix.texi:15379 msgid "The @code{fusectl} file system, which allows unprivileged users to mount and unmount user-space FUSE file systems. This requires the @code{fuse.ko} kernel module to be loaded." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15026 +#: guix-git/doc/guix.texi:15383 msgid "The @code{(gnu system uuid)} module provides tools to deal with file system ``unique identifiers'' (UUIDs)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15027 +#: guix-git/doc/guix.texi:15384 #, no-wrap msgid "{Scheme Procedure} uuid @var{str} [@var{type}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15030 +#: guix-git/doc/guix.texi:15387 msgid "Return an opaque UUID (unique identifier) object of the given @var{type} (a symbol) by parsing @var{str} (a string):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15034 +#: guix-git/doc/guix.texi:15391 #, no-wrap msgid "" "(uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\")\n" @@ -26181,7 +26770,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15037 +#: guix-git/doc/guix.texi:15394 #, no-wrap msgid "" "(uuid \"1234-ABCD\" 'fat)\n" @@ -26189,33 +26778,33 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15041 +#: guix-git/doc/guix.texi:15398 msgid "@var{type} may be one of @code{dce}, @code{iso9660}, @code{fat}, @code{ntfs}, or one of the commonly found synonyms for these." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15044 +#: guix-git/doc/guix.texi:15401 msgid "UUIDs are another way to unambiguously refer to file systems in operating system configuration. See the examples above." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:15047 guix-git/doc/guix.texi:15048 +#: guix-git/doc/guix.texi:15404 guix-git/doc/guix.texi:15405 #, no-wrap msgid "Btrfs file system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15054 +#: guix-git/doc/guix.texi:15411 msgid "The Btrfs has special features, such as subvolumes, that merit being explained in more details. The following section attempts to cover basic as well as complex uses of a Btrfs file system with the Guix System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15057 +#: guix-git/doc/guix.texi:15414 msgid "In its simplest usage, a Btrfs file system can be described, for example, by:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15063 +#: guix-git/doc/guix.texi:15420 #, no-wrap msgid "" "(file-system\n" @@ -26225,12 +26814,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15069 +#: guix-git/doc/guix.texi:15426 msgid "The example below is more complex, as it makes use of a Btrfs subvolume, named @code{rootfs}. The parent Btrfs file system is labeled @code{my-btrfs-pool}, and is located on an encrypted device (hence the dependency on @code{mapped-devices}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15077 +#: guix-git/doc/guix.texi:15434 #, no-wrap msgid "" "(file-system\n" @@ -26242,17 +26831,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15088 +#: guix-git/doc/guix.texi:15445 msgid "Some bootloaders, for example GRUB, only mount a Btrfs partition at its top level during the early boot, and rely on their configuration to refer to the correct subvolume path within that top level. The bootloaders operating in this way typically produce their configuration on a running system where the Btrfs partitions are already mounted and where the subvolume information is readily available. As an example, @command{grub-mkconfig}, the configuration generator command shipped with GRUB, reads @file{/proc/self/mountinfo} to determine the top-level path of a subvolume." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15096 +#: guix-git/doc/guix.texi:15453 msgid "The Guix System produces a bootloader configuration using the operating system configuration as its sole input; it is therefore necessary to extract the subvolume name on which @file{/gnu/store} lives (if any) from that operating system configuration. To better illustrate, consider a subvolume named 'rootfs' which contains the root file system data. In such situation, the GRUB bootloader would only see the top level of the root Btrfs partition, e.g.:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15103 +#: guix-git/doc/guix.texi:15460 #, no-wrap msgid "" "/ (top level)\n" @@ -26263,17 +26852,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15108 +#: guix-git/doc/guix.texi:15465 msgid "Thus, the subvolume name must be prepended to the @file{/gnu/store} path of the kernel, initrd binaries and any other files referred to in the GRUB configuration that must be found during the early boot." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15111 +#: guix-git/doc/guix.texi:15468 msgid "The next example shows a nested hierarchy of subvolumes and directories:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15118 +#: guix-git/doc/guix.texi:15475 #, no-wrap msgid "" "/ (top level)\n" @@ -26284,17 +26873,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15125 +#: guix-git/doc/guix.texi:15482 msgid "This scenario would work without mounting the 'store' subvolume. Mounting 'rootfs' is sufficient, since the subvolume name matches its intended mount point in the file system hierarchy. Alternatively, the 'store' subvolume could be referred to by setting the @code{subvol} option to either @code{/rootfs/gnu/store} or @code{rootfs/gnu/store}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15127 +#: guix-git/doc/guix.texi:15484 msgid "Finally, a more contrived example of nested subvolumes:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15134 +#: guix-git/doc/guix.texi:15491 #, no-wrap msgid "" "/ (top level)\n" @@ -26305,12 +26894,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15141 +#: guix-git/doc/guix.texi:15498 msgid "Here, the 'guix-store' subvolume doesn't match its intended mount point, so it is necessary to mount it. The subvolume must be fully specified, by passing its file name to the @code{subvol} option. To illustrate, the 'guix-store' subvolume could be mounted on @file{/gnu/store} by using a file system declaration such as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15149 +#: guix-git/doc/guix.texi:15506 #, no-wrap msgid "" "(file-system\n" @@ -26322,128 +26911,128 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15154 +#: guix-git/doc/guix.texi:15511 #, no-wrap msgid "device mapping" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15155 +#: guix-git/doc/guix.texi:15512 #, no-wrap msgid "mapped devices" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15172 +#: guix-git/doc/guix.texi:15529 msgid "The Linux kernel has a notion of @dfn{device mapping}: a block device, such as a hard disk partition, can be @dfn{mapped} into another device, usually in @code{/dev/mapper/}, with additional processing over the data that flows through it@footnote{Note that the GNU@tie{}Hurd makes no difference between the concept of a ``mapped device'' and that of a file system: both boil down to @emph{translating} input/output operations made on a file to operations on its backing store. Thus, the Hurd implements mapped devices, like file systems, using the generic @dfn{translator} mechanism (@pxref{Translators,,, hurd, The GNU Hurd Reference Manual}).}. A typical example is encryption device mapping: all writes to the mapped device are encrypted, and all reads are deciphered, transparently. Guix extends this notion by considering any device or set of devices that are @dfn{transformed} in some way to create a new device; for instance, RAID devices are obtained by @dfn{assembling} several other devices, such as hard disks or partitions, into a new one that behaves as one partition." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15175 +#: guix-git/doc/guix.texi:15532 msgid "Mapped devices are declared using the @code{mapped-device} form, defined as follows; for examples, see below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15176 +#: guix-git/doc/guix.texi:15533 #, no-wrap msgid "{Data Type} mapped-device" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15179 +#: guix-git/doc/guix.texi:15536 msgid "Objects of this type represent device mappings that will be made when the system boots up." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15186 +#: guix-git/doc/guix.texi:15543 msgid "This is either a string specifying the name of the block device to be mapped, such as @code{\"/dev/sda3\"}, or a list of such strings when several devices need to be assembled for creating a new one. In case of LVM this is a string specifying name of the volume group to be mapped." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:15187 guix-git/doc/guix.texi:15342 +#: guix-git/doc/guix.texi:15544 guix-git/doc/guix.texi:15699 #, no-wrap msgid "target" -msgstr "" +msgstr "target" #. type: table -#: guix-git/doc/guix.texi:15196 +#: guix-git/doc/guix.texi:15553 msgid "This string specifies the name of the resulting mapped device. For kernel mappers such as encrypted devices of type @code{luks-device-mapping}, specifying @code{\"my-partition\"} leads to the creation of the @code{\"/dev/mapper/my-partition\"} device. For RAID devices of type @code{raid-device-mapping}, the full device name such as @code{\"/dev/md0\"} needs to be given. LVM logical volumes of type @code{lvm-device-mapping} need to be specified as @code{\"VGNAME-LVNAME\"}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:15197 guix-git/doc/guix.texi:34634 +#: guix-git/doc/guix.texi:15554 guix-git/doc/guix.texi:35073 #, no-wrap msgid "targets" -msgstr "" +msgstr "targets" #. type: table -#: guix-git/doc/guix.texi:15200 +#: guix-git/doc/guix.texi:15557 msgid "This list of strings specifies names of the resulting mapped devices in case there are several. The format is identical to @var{target}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15204 +#: guix-git/doc/guix.texi:15561 msgid "This must be a @code{mapped-device-kind} object, which specifies how @var{source} is mapped to @var{target}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15207 +#: guix-git/doc/guix.texi:15564 #, no-wrap msgid "{Scheme Variable} luks-device-mapping" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15211 +#: guix-git/doc/guix.texi:15568 msgid "This defines LUKS block device encryption using the @command{cryptsetup} command from the package with the same name. It relies on the @code{dm-crypt} Linux kernel module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15213 +#: guix-git/doc/guix.texi:15570 #, no-wrap msgid "{Scheme Variable} raid-device-mapping" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15218 +#: guix-git/doc/guix.texi:15575 msgid "This defines a RAID device, which is assembled using the @code{mdadm} command from the package with the same name. It requires a Linux kernel module for the appropriate RAID level to be loaded, such as @code{raid456} for RAID-4, RAID-5 or RAID-6, or @code{raid10} for RAID-10." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15220 +#: guix-git/doc/guix.texi:15577 #, no-wrap msgid "LVM, logical volume manager" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15221 +#: guix-git/doc/guix.texi:15578 #, no-wrap msgid "{Scheme Variable} lvm-device-mapping" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15226 +#: guix-git/doc/guix.texi:15583 msgid "This defines one or more logical volumes for the Linux @uref{https://www.sourceware.org/lvm2/, Logical Volume Manager (LVM)}. The volume group is activated by the @command{vgchange} command from the @code{lvm2} package." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15228 +#: guix-git/doc/guix.texi:15585 #, no-wrap msgid "disk encryption" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15229 +#: guix-git/doc/guix.texi:15586 #, no-wrap msgid "LUKS" -msgstr "" +msgstr "LUKS" #. type: Plain text -#: guix-git/doc/guix.texi:15237 +#: guix-git/doc/guix.texi:15594 msgid "The following example specifies a mapping from @file{/dev/sda3} to @file{/dev/mapper/home} using LUKS---the @url{https://gitlab.com/cryptsetup/cryptsetup,Linux Unified Key Setup}, a standard mechanism for disk encryption. The @file{/dev/mapper/home} device can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15243 +#: guix-git/doc/guix.texi:15600 #, no-wrap msgid "" "(mapped-device\n" @@ -26453,23 +27042,23 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15248 +#: guix-git/doc/guix.texi:15605 msgid "Alternatively, to become independent of device numbering, one may obtain the LUKS UUID (@dfn{unique identifier}) of the source device by a command like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15251 +#: guix-git/doc/guix.texi:15608 #, no-wrap msgid "cryptsetup luksUUID /dev/sda3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15254 +#: guix-git/doc/guix.texi:15611 msgid "and use it as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15260 +#: guix-git/doc/guix.texi:15617 #, no-wrap msgid "" "(mapped-device\n" @@ -26479,23 +27068,23 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15262 +#: guix-git/doc/guix.texi:15619 #, no-wrap msgid "swap encryption" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15269 +#: guix-git/doc/guix.texi:15626 msgid "It is also desirable to encrypt swap space, since swap space may contain sensitive data. One way to accomplish that is to use a swap file in a file system on a device mapped via LUKS encryption. In this way, the swap file is encrypted because the entire device is encrypted. @xref{Swap Space}, or @xref{Preparing for Installation,,Disk Partitioning}, for an example." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15272 +#: guix-git/doc/guix.texi:15629 msgid "A RAID device formed of the partitions @file{/dev/sda1} and @file{/dev/sdb1} may be declared as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15278 +#: guix-git/doc/guix.texi:15635 #, no-wrap msgid "" "(mapped-device\n" @@ -26505,17 +27094,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15285 +#: guix-git/doc/guix.texi:15642 msgid "The @file{/dev/md0} device can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems}). Note that the RAID level need not be given; it is chosen during the initial creation and formatting of the RAID device and is determined automatically later." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15288 +#: guix-git/doc/guix.texi:15645 msgid "LVM logical volumes ``alpha'' and ``beta'' from volume group ``vg0'' can be declared as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15294 +#: guix-git/doc/guix.texi:15651 #, no-wrap msgid "" "(mapped-device\n" @@ -26525,102 +27114,102 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15299 +#: guix-git/doc/guix.texi:15656 msgid "Devices @file{/dev/mapper/vg0-alpha} and @file{/dev/mapper/vg0-beta} can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15302 +#: guix-git/doc/guix.texi:15659 #, no-wrap msgid "swap space" -msgstr "" +msgstr "odkladací priestor" #. type: Plain text -#: guix-git/doc/guix.texi:15312 +#: guix-git/doc/guix.texi:15669 msgid "Swap space, as it is commonly called, is a disk area specifically designated for paging: the process in charge of memory management (the Linux kernel or Hurd's default pager) can decide that some memory pages stored in RAM which belong to a running program but are unused should be stored on disk instead. It unloads those from the RAM, freeing up precious fast memory, and writes them to the swap space. If the program tries to access that very page, the memory management process loads it back into memory for the program to use." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15318 +#: guix-git/doc/guix.texi:15675 msgid "A common misconception about swap is that it is only useful when small amounts of RAM are available to the system. However, it should be noted that kernels often use all available RAM for disk access caching to make I/O faster, and thus paging out unused portions of program memory will expand the RAM available for such caching." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15322 +#: guix-git/doc/guix.texi:15679 msgid "For a more detailed description of how memory is managed from the viewpoint of a monolithic kernel, @xref{Memory Concepts,,, libc, The GNU C Library Reference Manual}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15331 +#: guix-git/doc/guix.texi:15688 msgid "The Linux kernel has support for swap partitions and swap files: the former uses a whole disk partition for paging, whereas the second uses a file on a file system for that (the file system driver needs to support it). On a comparable setup, both have the same performance, so one should consider ease of use when deciding between them. Partitions are ``simpler'' and do not need file system support, but need to be allocated at disk formatting time (logical volumes notwithstanding), whereas files can be allocated and deallocated at any time." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15336 +#: guix-git/doc/guix.texi:15693 msgid "Note that swap space is not zeroed on shutdown, so sensitive data (such as passwords) may linger on it if it was paged out. As such, you should consider having your swap reside on an encrypted device (@pxref{Mapped Devices})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15337 +#: guix-git/doc/guix.texi:15694 #, no-wrap msgid "{Data Type} swap-space" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15340 +#: guix-git/doc/guix.texi:15697 msgid "Objects of this type represent swap spaces. They contain the following members:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15346 +#: guix-git/doc/guix.texi:15703 msgid "The device or file to use, either a UUID, a @code{file-system-label} or a string, as in the definition of a @code{file-system} (@pxref{File Systems})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15353 +#: guix-git/doc/guix.texi:15710 msgid "A list of @code{file-system} or @code{mapped-device} objects, upon which the availability of the space depends. Note that just like for @code{file-system} objects, dependencies which are needed for boot and mounted in early userspace are not managed by the Shepherd, and so automatically filtered out for you." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15354 +#: guix-git/doc/guix.texi:15711 #, no-wrap msgid "@code{priority} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15361 +#: guix-git/doc/guix.texi:15718 msgid "Only supported by the Linux kernel. Either @code{#f} to disable swap priority, or an integer between 0 and 32767. The kernel will first use swap spaces of higher priority when paging, and use same priority spaces on a round-robin basis. The kernel will use swap spaces without a set priority after prioritized spaces, and in the order that they appeared in (not round-robin)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15362 +#: guix-git/doc/guix.texi:15719 #, no-wrap msgid "@code{discard?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15366 +#: guix-git/doc/guix.texi:15723 msgid "Only supported by the Linux kernel. When true, the kernel will notify the disk controller of discarded pages, for example with the TRIM operation on Solid State Drives." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15371 +#: guix-git/doc/guix.texi:15728 msgid "Here are some examples:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15374 +#: guix-git/doc/guix.texi:15731 #, no-wrap msgid "(swap-space (target (uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\")))\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15379 +#: guix-git/doc/guix.texi:15736 msgid "Use the swap partition with the given UUID@. You can learn the UUID of a Linux swap partition by running @command{swaplabel @var{device}}, where @var{device} is the @file{/dev} file name of that partition." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15384 +#: guix-git/doc/guix.texi:15741 #, no-wrap msgid "" "(swap-space\n" @@ -26629,12 +27218,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15390 +#: guix-git/doc/guix.texi:15747 msgid "Use the partition with label @code{swap}, which can be found after the @var{lvm-device} mapped device has been opened. Again, the @command{swaplabel} command allows you to view and change the label of a Linux swap partition." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15395 +#: guix-git/doc/guix.texi:15752 #, no-wrap msgid "" "(swap-space\n" @@ -26643,35 +27232,35 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15399 +#: guix-git/doc/guix.texi:15756 msgid "Use the file @file{/btrfs/swapfile} as swap space, which is present on the @var{btrfs-fs} filesystem." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15403 +#: guix-git/doc/guix.texi:15760 #, no-wrap msgid "users" -msgstr "" +msgstr "používatelia" #. type: cindex -#: guix-git/doc/guix.texi:15404 +#: guix-git/doc/guix.texi:15761 #, no-wrap msgid "accounts" -msgstr "" +msgstr "účty" #. type: cindex -#: guix-git/doc/guix.texi:15405 +#: guix-git/doc/guix.texi:15762 #, no-wrap msgid "user accounts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15409 +#: guix-git/doc/guix.texi:15766 msgid "User accounts and groups are entirely managed through the @code{operating-system} declaration. They are specified with the @code{user-account} and @code{user-group} forms:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15419 +#: guix-git/doc/guix.texi:15776 #, no-wrap msgid "" "(user-account\n" @@ -26685,12 +27274,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15423 +#: guix-git/doc/guix.texi:15780 msgid "Here's a user account that uses a different shell and a custom home directory (the default would be @file{\"/home/bob\"}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15431 +#: guix-git/doc/guix.texi:15788 #, no-wrap msgid "" "(user-account\n" @@ -26702,171 +27291,171 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15440 +#: guix-git/doc/guix.texi:15797 msgid "When booting or upon completion of @command{guix system reconfigure}, the system ensures that only the user accounts and groups specified in the @code{operating-system} declaration exist, and with the specified properties. Thus, account or group creations or modifications made by directly invoking commands such as @command{useradd} are lost upon reconfiguration or reboot. This ensures that the system remains exactly as declared." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15441 +#: guix-git/doc/guix.texi:15798 #, no-wrap msgid "{Data Type} user-account" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15444 +#: guix-git/doc/guix.texi:15801 msgid "Objects of this type represent user accounts. The following members may be specified:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15448 +#: guix-git/doc/guix.texi:15805 msgid "The name of the user account." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:15449 guix-git/doc/guix.texi:34298 +#: guix-git/doc/guix.texi:15806 guix-git/doc/guix.texi:34737 #, no-wrap msgid "group" -msgstr "" +msgstr "skupina" #. type: cindex -#: guix-git/doc/guix.texi:15450 guix-git/doc/guix.texi:15534 +#: guix-git/doc/guix.texi:15807 guix-git/doc/guix.texi:15891 #, no-wrap msgid "groups" -msgstr "" +msgstr "skupiny" #. type: table -#: guix-git/doc/guix.texi:15453 +#: guix-git/doc/guix.texi:15810 msgid "This is the name (a string) or identifier (a number) of the user group this account belongs to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15454 +#: guix-git/doc/guix.texi:15811 #, no-wrap msgid "@code{supplementary-groups} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15457 +#: guix-git/doc/guix.texi:15814 msgid "Optionally, this can be defined as a list of group names that this account belongs to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15458 +#: guix-git/doc/guix.texi:15815 #, no-wrap msgid "@code{uid} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15462 +#: guix-git/doc/guix.texi:15819 msgid "This is the user ID for this account (a number), or @code{#f}. In the latter case, a number is automatically chosen by the system when the account is created." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15463 guix-git/doc/guix.texi:18217 +#: guix-git/doc/guix.texi:15820 guix-git/doc/guix.texi:18579 #, no-wrap msgid "@code{comment} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15465 +#: guix-git/doc/guix.texi:15822 msgid "A comment about the account, such as the account owner's full name." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15470 +#: guix-git/doc/guix.texi:15827 msgid "Note that, for non-system accounts, users are free to change their real name as it appears in @file{/etc/passwd} using the @command{chfn} command. When they do, their choice prevails over the system administrator's choice; reconfiguring does @emph{not} change their name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:15471 +#: guix-git/doc/guix.texi:15828 #, no-wrap msgid "home-directory" -msgstr "" +msgstr "home-directory" #. type: table -#: guix-git/doc/guix.texi:15473 +#: guix-git/doc/guix.texi:15830 msgid "This is the name of the home directory for the account." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15474 +#: guix-git/doc/guix.texi:15831 #, no-wrap msgid "@code{create-home-directory?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15477 +#: guix-git/doc/guix.texi:15834 msgid "Indicates whether the home directory of this account should be created if it does not exist yet." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15478 +#: guix-git/doc/guix.texi:15835 #, no-wrap msgid "@code{shell} (default: Bash)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15482 +#: guix-git/doc/guix.texi:15839 msgid "This is a G-expression denoting the file name of a program to be used as the shell (@pxref{G-Expressions}). For example, you would refer to the Bash executable like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15485 +#: guix-git/doc/guix.texi:15842 #, no-wrap msgid "(file-append bash \"/bin/bash\")\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15489 +#: guix-git/doc/guix.texi:15846 msgid "... and to the Zsh executable like that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15492 +#: guix-git/doc/guix.texi:15849 #, no-wrap msgid "(file-append zsh \"/bin/zsh\")\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:15494 guix-git/doc/guix.texi:15552 +#: guix-git/doc/guix.texi:15851 guix-git/doc/guix.texi:15909 #, no-wrap msgid "@code{system?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15498 +#: guix-git/doc/guix.texi:15855 msgid "This Boolean value indicates whether the account is a ``system'' account. System accounts are sometimes treated specially; for instance, graphical login managers do not list them." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:15500 +#: guix-git/doc/guix.texi:15857 msgid "user-account-password" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15500 +#: guix-git/doc/guix.texi:15857 #, no-wrap msgid "password, for user accounts" msgstr "" #. type: item -#: guix-git/doc/guix.texi:15501 guix-git/doc/guix.texi:15556 +#: guix-git/doc/guix.texi:15858 guix-git/doc/guix.texi:15913 #, no-wrap msgid "@code{password} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15507 +#: guix-git/doc/guix.texi:15864 msgid "You would normally leave this field to @code{#f}, initialize user passwords as @code{root} with the @command{passwd} command, and then let users change it with @command{passwd}. Passwords set with @command{passwd} are of course preserved across reboot and reconfiguration." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15511 +#: guix-git/doc/guix.texi:15868 msgid "If you @emph{do} want to set an initial password for an account, then this field must contain the encrypted password, as a string. You can use the @code{crypt} procedure for this purpose:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15516 +#: guix-git/doc/guix.texi:15873 #, no-wrap msgid "" "(user-account\n" @@ -26876,7 +27465,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15519 +#: guix-git/doc/guix.texi:15876 #, no-wrap msgid "" " ;; Specify a SHA-512-hashed initial password.\n" @@ -26884,171 +27473,171 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:15525 +#: guix-git/doc/guix.texi:15882 msgid "The hash of this initial password will be available in a file in @file{/gnu/store}, readable by all the users, so this method must be used with care." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15530 +#: guix-git/doc/guix.texi:15887 msgid "@xref{Passphrase Storage,,, libc, The GNU C Library Reference Manual}, for more information on password encryption, and @ref{Encryption,,, guile, GNU Guile Reference Manual}, for information on Guile's @code{crypt} procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15536 +#: guix-git/doc/guix.texi:15893 msgid "User group declarations are even simpler:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15539 +#: guix-git/doc/guix.texi:15896 #, no-wrap msgid "(user-group (name \"students\"))\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15541 +#: guix-git/doc/guix.texi:15898 #, no-wrap msgid "{Data Type} user-group" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15543 +#: guix-git/doc/guix.texi:15900 msgid "This type is for, well, user groups. There are just a few fields:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15547 +#: guix-git/doc/guix.texi:15904 msgid "The name of the group." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15548 guix-git/doc/guix.texi:30819 +#: guix-git/doc/guix.texi:15905 guix-git/doc/guix.texi:31184 #, no-wrap msgid "@code{id} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15551 +#: guix-git/doc/guix.texi:15908 msgid "The group identifier (a number). If @code{#f}, a new number is automatically allocated when the group is created." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15555 +#: guix-git/doc/guix.texi:15912 msgid "This Boolean value indicates whether the group is a ``system'' group. System groups have low numerical IDs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15559 +#: guix-git/doc/guix.texi:15916 msgid "What, user groups can have a password? Well, apparently yes. Unless @code{#f}, this field specifies the password of the group." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15565 +#: guix-git/doc/guix.texi:15922 msgid "For convenience, a variable lists all the basic user groups one may expect:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15566 +#: guix-git/doc/guix.texi:15923 #, no-wrap msgid "{Scheme Variable} %base-groups" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15571 +#: guix-git/doc/guix.texi:15928 msgid "This is the list of basic user groups that users and/or packages expect to be present on the system. This includes groups such as ``root'', ``wheel'', and ``users'', as well as groups used to control access to specific devices such as ``audio'', ``disk'', and ``cdrom''." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15573 +#: guix-git/doc/guix.texi:15930 #, no-wrap msgid "{Scheme Variable} %base-user-accounts" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15576 +#: guix-git/doc/guix.texi:15933 msgid "This is the list of basic system accounts that programs may expect to find on a GNU/Linux system, such as the ``nobody'' account." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15579 +#: guix-git/doc/guix.texi:15936 msgid "Note that the ``root'' account is not included here. It is a special-case and is automatically added whether or not it is specified." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15585 +#: guix-git/doc/guix.texi:15942 #, no-wrap msgid "keymap" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15593 +#: guix-git/doc/guix.texi:15950 msgid "To specify what each key of your keyboard does, you need to tell the operating system what @dfn{keyboard layout} you want to use. The default, when nothing is specified, is the US English QWERTY layout for 105-key PC keyboards. However, German speakers will usually prefer the German QWERTZ layout, French speakers will want the AZERTY layout, and so on; hackers might prefer Dvorak or bépo, and they might even want to further customize the effect of some of the keys. This section explains how to get that done." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15594 +#: guix-git/doc/guix.texi:15951 #, no-wrap msgid "keyboard layout, definition" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15596 +#: guix-git/doc/guix.texi:15953 msgid "There are three components that will want to know about your keyboard layout:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15603 +#: guix-git/doc/guix.texi:15960 msgid "The @emph{bootloader} may want to know what keyboard layout you want to use (@pxref{Bootloader Configuration, @code{keyboard-layout}}). This is useful if you want, for instance, to make sure that you can type the passphrase of your encrypted root partition using the right layout." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15608 +#: guix-git/doc/guix.texi:15965 msgid "The @emph{operating system kernel}, Linux, will need that so that the console is properly configured (@pxref{operating-system Reference, @code{keyboard-layout}})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15612 +#: guix-git/doc/guix.texi:15969 msgid "The @emph{graphical display server}, usually Xorg, also has its own idea of the keyboard layout (@pxref{X Window, @code{keyboard-layout}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15616 +#: guix-git/doc/guix.texi:15973 msgid "Guix allows you to configure all three separately but, fortunately, it allows you to share the same keyboard layout for all three components." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15617 +#: guix-git/doc/guix.texi:15974 #, no-wrap msgid "XKB, keyboard layouts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15625 +#: guix-git/doc/guix.texi:15982 msgid "Keyboard layouts are represented by records created by the @code{keyboard-layout} procedure of @code{(gnu system keyboard)}. Following the X Keyboard extension (XKB), each layout has four attributes: a name (often a language code such as ``fi'' for Finnish or ``jp'' for Japanese), an optional variant name, an optional keyboard model name, and a possibly empty list of additional options. In most cases the layout name is all you care about." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15626 +#: guix-git/doc/guix.texi:15983 #, no-wrap msgid "{Scheme Procedure} keyboard-layout @var{name} [@var{variant}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15629 +#: guix-git/doc/guix.texi:15986 msgid "[#:model] [#:options '()] Return a new keyboard layout with the given @var{name} and @var{variant}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15633 +#: guix-git/doc/guix.texi:15990 msgid "@var{name} must be a string such as @code{\"fr\"}; @var{variant} must be a string such as @code{\"bepo\"} or @code{\"nodeadkeys\"}. See the @code{xkeyboard-config} package for valid options." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15636 +#: guix-git/doc/guix.texi:15993 msgid "Here are a few examples:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15641 +#: guix-git/doc/guix.texi:15998 #, no-wrap msgid "" ";; The German QWERTZ layout. Here we assume a standard\n" @@ -27058,7 +27647,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15644 +#: guix-git/doc/guix.texi:16001 #, no-wrap msgid "" ";; The bépo variant of the French layout.\n" @@ -27067,7 +27656,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15647 +#: guix-git/doc/guix.texi:16004 #, no-wrap msgid "" ";; The Catalan layout.\n" @@ -27076,7 +27665,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15650 +#: guix-git/doc/guix.texi:16007 #, no-wrap msgid "" ";; Arabic layout with \"Alt-Shift\" to switch to US layout.\n" @@ -27085,7 +27674,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15657 +#: guix-git/doc/guix.texi:16014 #, no-wrap msgid "" ";; The Latin American Spanish layout. In addition, the\n" @@ -27098,7 +27687,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15660 +#: guix-git/doc/guix.texi:16017 #, no-wrap msgid "" ";; The Russian layout for a ThinkPad keyboard.\n" @@ -27107,7 +27696,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15665 +#: guix-git/doc/guix.texi:16022 #, no-wrap msgid "" ";; The \"US international\" layout, which is the US layout plus\n" @@ -27117,29 +27706,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15669 +#: guix-git/doc/guix.texi:16026 msgid "See the @file{share/X11/xkb} directory of the @code{xkeyboard-config} package for a complete list of supported layouts, variants, and models." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15670 +#: guix-git/doc/guix.texi:16027 #, no-wrap msgid "keyboard layout, configuration" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15674 +#: guix-git/doc/guix.texi:16031 msgid "Let's say you want your system to use the Turkish keyboard layout throughout your system---bootloader, console, and Xorg. Here's what your system configuration would look like:" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:15675 +#: guix-git/doc/guix.texi:16032 #, no-wrap msgid "set-xorg-configuration" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15679 +#: guix-git/doc/guix.texi:16036 #, no-wrap msgid "" ";; Using the Turkish layout for the bootloader, the console,\n" @@ -27148,7 +27737,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15691 +#: guix-git/doc/guix.texi:16048 #, no-wrap msgid "" "(operating-system\n" @@ -27165,76 +27754,76 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15698 +#: guix-git/doc/guix.texi:16055 msgid "In the example above, for GRUB and for Xorg, we just refer to the @code{keyboard-layout} field defined above, but we could just as well refer to a different layout. The @code{set-xorg-configuration} procedure communicates the desired Xorg configuration to the graphical log-in manager, by default GDM." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15701 +#: guix-git/doc/guix.texi:16058 msgid "We've discussed how to specify the @emph{default} keyboard layout of your system when it starts, but you can also adjust it at run time:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15706 +#: guix-git/doc/guix.texi:16063 msgid "If you're using GNOME, its settings panel has a ``Region & Language'' entry where you can select one or more keyboard layouts." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15711 +#: guix-git/doc/guix.texi:16068 msgid "Under Xorg, the @command{setxkbmap} command (from the same-named package) allows you to change the current layout. For example, this is how you would change the layout to US Dvorak:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15714 +#: guix-git/doc/guix.texi:16071 #, no-wrap msgid "setxkbmap us dvorak\n" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15721 +#: guix-git/doc/guix.texi:16078 msgid "The @code{loadkeys} command changes the keyboard layout in effect in the Linux console. However, note that @code{loadkeys} does @emph{not} use the XKB keyboard layout categorization described above. The command below loads the French bépo layout:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15724 +#: guix-git/doc/guix.texi:16081 #, no-wrap msgid "loadkeys fr-bepo\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15730 +#: guix-git/doc/guix.texi:16087 #, no-wrap msgid "locale" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15737 +#: guix-git/doc/guix.texi:16094 msgid "A @dfn{locale} defines cultural conventions for a particular language and region of the world (@pxref{Locales,,, libc, The GNU C Library Reference Manual}). Each locale has a name that typically has the form @code{@var{language}_@var{territory}.@var{codeset}}---e.g., @code{fr_LU.utf8} designates the locale for the French language, with cultural conventions from Luxembourg, and using the UTF-8 encoding." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15738 +#: guix-git/doc/guix.texi:16095 #, no-wrap msgid "locale definition" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15742 +#: guix-git/doc/guix.texi:16099 msgid "Usually, you will want to specify the default locale for the machine using the @code{locale} field of the @code{operating-system} declaration (@pxref{operating-system Reference, @code{locale}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15751 +#: guix-git/doc/guix.texi:16108 msgid "The selected locale is automatically added to the @dfn{locale definitions} known to the system if needed, with its codeset inferred from its name---e.g., @code{bo_CN.utf8} will be assumed to use the @code{UTF-8} codeset. Additional locale definitions can be specified in the @code{locale-definitions} slot of @code{operating-system}---this is useful, for instance, if the codeset could not be inferred from the locale name. The default set of locale definitions includes some widely used locales, but not all the available locales, in order to save space." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15754 +#: guix-git/doc/guix.texi:16111 msgid "For instance, to add the North Frisian locale for Germany, the value of that field may be:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15759 +#: guix-git/doc/guix.texi:16116 #, no-wrap msgid "" "(cons (locale-definition\n" @@ -27243,12 +27832,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15763 +#: guix-git/doc/guix.texi:16120 msgid "Likewise, to save space, one might want @code{locale-definitions} to list only the locales that are actually used, as in:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15768 +#: guix-git/doc/guix.texi:16125 #, no-wrap msgid "" "(list (locale-definition\n" @@ -27257,114 +27846,114 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15777 +#: guix-git/doc/guix.texi:16134 msgid "The compiled locale definitions are available at @file{/run/current-system/locale/X.Y}, where @code{X.Y} is the libc version, which is the default location where the GNU@tie{}libc provided by Guix looks for locale data. This can be overridden using the @env{LOCPATH} environment variable (@pxref{locales-and-locpath, @env{LOCPATH} and locale packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15780 +#: guix-git/doc/guix.texi:16137 msgid "The @code{locale-definition} form is provided by the @code{(gnu system locale)} module. Details are given below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15781 +#: guix-git/doc/guix.texi:16138 #, no-wrap msgid "{Data Type} locale-definition" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15783 +#: guix-git/doc/guix.texi:16140 msgid "This is the data type of a locale definition." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15789 +#: guix-git/doc/guix.texi:16146 msgid "The name of the locale. @xref{Locale Names,,, libc, The GNU C Library Reference Manual}, for more information on locale names." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15793 +#: guix-git/doc/guix.texi:16150 msgid "The name of the source for that locale. This is typically the @code{@var{language}_@var{territory}} part of the locale name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15794 +#: guix-git/doc/guix.texi:16151 #, no-wrap msgid "@code{charset} (default: @code{\"UTF-8\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15798 +#: guix-git/doc/guix.texi:16155 msgid "The ``character set'' or ``code set'' for that locale, @uref{https://www.iana.org/assignments/character-sets, as defined by IANA}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15802 +#: guix-git/doc/guix.texi:16159 #, no-wrap msgid "{Scheme Variable} %default-locale-definitions" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15806 +#: guix-git/doc/guix.texi:16163 msgid "A list of commonly used UTF-8 locales, used as the default value of the @code{locale-definitions} field of @code{operating-system} declarations." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15807 +#: guix-git/doc/guix.texi:16164 #, no-wrap msgid "locale name" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15808 +#: guix-git/doc/guix.texi:16165 #, no-wrap msgid "normalized codeset in locale names" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15814 +#: guix-git/doc/guix.texi:16171 msgid "These locale definitions use the @dfn{normalized codeset} for the part that follows the dot in the name (@pxref{Using gettextized software, normalized codeset,, libc, The GNU C Library Reference Manual}). So for instance it has @code{uk_UA.utf8} but @emph{not}, say, @code{uk_UA.UTF-8}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:15816 +#: guix-git/doc/guix.texi:16173 #, no-wrap msgid "Locale Data Compatibility Considerations" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15818 +#: guix-git/doc/guix.texi:16175 #, no-wrap msgid "incompatibility, of locale data" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15825 +#: guix-git/doc/guix.texi:16182 msgid "@code{operating-system} declarations provide a @code{locale-libcs} field to specify the GNU@tie{}libc packages that are used to compile locale declarations (@pxref{operating-system Reference}). ``Why would I care?'', you may ask. Well, it turns out that the binary format of locale data is occasionally incompatible from one libc version to another." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15837 +#: guix-git/doc/guix.texi:16194 msgid "For instance, a program linked against libc version 2.21 is unable to read locale data produced with libc 2.22; worse, that program @emph{aborts} instead of simply ignoring the incompatible locale data@footnote{Versions 2.23 and later of GNU@tie{}libc will simply skip the incompatible locale data, which is already an improvement.}. Similarly, a program linked against libc 2.22 can read most, but not all, of the locale data from libc 2.21 (specifically, @env{LC_COLLATE} data is incompatible); thus calls to @code{setlocale} may fail, but programs will not abort." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15842 +#: guix-git/doc/guix.texi:16199 msgid "The ``problem'' with Guix is that users have a lot of freedom: They can choose whether and when to upgrade software in their profiles, and might be using a libc version different from the one the system administrator used to build the system-wide locale data." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15846 +#: guix-git/doc/guix.texi:16203 msgid "Fortunately, unprivileged users can also install their own locale data and define @env{GUIX_LOCPATH} accordingly (@pxref{locales-and-locpath, @env{GUIX_LOCPATH} and locale packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15853 +#: guix-git/doc/guix.texi:16210 msgid "Still, it is best if the system-wide locale data at @file{/run/current-system/locale} is built for all the libc versions actually in use on the system, so that all the programs can access it---this is especially crucial on a multi-user system. To do that, the administrator can specify several libc packages in the @code{locale-libcs} field of @code{operating-system}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15856 +#: guix-git/doc/guix.texi:16213 #, no-wrap msgid "" "(use-package-modules base)\n" @@ -27372,7 +27961,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15860 +#: guix-git/doc/guix.texi:16217 #, no-wrap msgid "" "(operating-system\n" @@ -27381,39 +27970,39 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15865 +#: guix-git/doc/guix.texi:16222 msgid "This example would lead to a system containing locale definitions for both libc 2.21 and the current version of libc in @file{/run/current-system/locale}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15870 +#: guix-git/doc/guix.texi:16227 #, no-wrap msgid "system services" -msgstr "" +msgstr "systémové služby" #. type: Plain text -#: guix-git/doc/guix.texi:15876 +#: guix-git/doc/guix.texi:16233 msgid "An important part of preparing an @code{operating-system} declaration is listing @dfn{system services} and their configuration (@pxref{Using the Configuration System}). System services are typically daemons launched when the system boots, or other actions needed at that time---e.g., configuring network access." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15883 +#: guix-git/doc/guix.texi:16240 msgid "Guix has a broad definition of ``service'' (@pxref{Service Composition}), but many services are managed by the GNU@tie{}Shepherd (@pxref{Shepherd Services}). On a running system, the @command{herd} command allows you to list the available services, show their status, start and stop them, or do other specific operations (@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}). For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15886 +#: guix-git/doc/guix.texi:16243 #, no-wrap msgid "# herd status\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15891 +#: guix-git/doc/guix.texi:16248 msgid "The above command, run as @code{root}, lists the currently defined services. The @command{herd doc} command shows a synopsis of the given service and its associated actions:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15895 +#: guix-git/doc/guix.texi:16252 #, no-wrap msgid "" "# herd doc nscd\n" @@ -27422,7 +28011,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15898 +#: guix-git/doc/guix.texi:16255 #, no-wrap msgid "" "# herd doc nscd action invalidate\n" @@ -27430,12 +28019,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15903 +#: guix-git/doc/guix.texi:16260 msgid "The @command{start}, @command{stop}, and @command{restart} sub-commands have the effect you would expect. For instance, the commands below stop the nscd service and restart the Xorg display server:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15910 +#: guix-git/doc/guix.texi:16267 #, no-wrap msgid "" "# herd stop nscd\n" @@ -27446,45 +28035,45 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15915 +#: guix-git/doc/guix.texi:16272 msgid "The following sections document the available services, starting with the core services, that may be used in an @code{operating-system} declaration." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:15951 guix-git/doc/guix.texi:24198 -#: guix-git/doc/guix.texi:24199 +#: guix-git/doc/guix.texi:16308 guix-git/doc/guix.texi:24560 +#: guix-git/doc/guix.texi:24561 #, no-wrap msgid "File-Sharing Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:16308 msgid "File-sharing services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15959 +#: guix-git/doc/guix.texi:16316 msgid "The @code{(gnu services base)} module provides definitions for the basic services that one expects from the system. The services exported by this module are listed below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15960 +#: guix-git/doc/guix.texi:16317 #, no-wrap msgid "{Scheme Variable} %base-services" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15966 +#: guix-git/doc/guix.texi:16323 msgid "This variable contains a list of basic services (@pxref{Service Types and Services}, for more information on service objects) one would expect from the system: a login service (mingetty) on each tty, syslogd, the libc name service cache daemon (nscd), the udev device manager, and more." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15971 +#: guix-git/doc/guix.texi:16328 msgid "This is the default value of the @code{services} field of @code{operating-system} declarations. Usually, when customizing a system, you will want to append services to @code{%base-services}, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15976 +#: guix-git/doc/guix.texi:16333 #, no-wrap msgid "" "(append (list (service avahi-service-type)\n" @@ -27493,58 +28082,58 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15979 +#: guix-git/doc/guix.texi:16336 #, no-wrap msgid "{Scheme Variable} special-files-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15982 +#: guix-git/doc/guix.texi:16339 msgid "This is the service that sets up ``special files'' such as @file{/bin/sh}; an instance of it is part of @code{%base-services}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15986 +#: guix-git/doc/guix.texi:16343 msgid "The value associated with @code{special-files-service-type} services must be a list of tuples where the first element is the ``special file'' and the second element is its target. By default it is:" msgstr "" #. type: file{#1} -#: guix-git/doc/guix.texi:15987 +#: guix-git/doc/guix.texi:16344 #, no-wrap msgid "/bin/sh" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15988 +#: guix-git/doc/guix.texi:16345 #, no-wrap msgid "@file{sh}, in @file{/bin}" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15991 +#: guix-git/doc/guix.texi:16348 #, no-wrap msgid "`((\"/bin/sh\" ,(file-append bash \"/bin/sh\")))\n" msgstr "" #. type: file{#1} -#: guix-git/doc/guix.texi:15993 +#: guix-git/doc/guix.texi:16350 #, no-wrap msgid "/usr/bin/env" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15994 +#: guix-git/doc/guix.texi:16351 #, no-wrap msgid "@file{env}, in @file{/usr/bin}" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15997 +#: guix-git/doc/guix.texi:16354 msgid "If you want to add, say, @code{/usr/bin/env} to your system, you can change it to:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16001 +#: guix-git/doc/guix.texi:16358 #, no-wrap msgid "" "`((\"/bin/sh\" ,(file-append bash \"/bin/sh\"))\n" @@ -27552,28 +28141,28 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16008 +#: guix-git/doc/guix.texi:16365 msgid "Since this is part of @code{%base-services}, you can use @code{modify-services} to customize the set of special files (@pxref{Service Reference, @code{modify-services}}). But the simple way to add a special file is @i{via} the @code{extra-special-file} procedure (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16010 +#: guix-git/doc/guix.texi:16367 #, no-wrap msgid "{Scheme Procedure} extra-special-file @var{file} @var{target}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16012 +#: guix-git/doc/guix.texi:16369 msgid "Use @var{target} as the ``special file'' @var{file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16016 +#: guix-git/doc/guix.texi:16373 msgid "For example, adding the following lines to the @code{services} field of your operating system declaration leads to a @file{/usr/bin/env} symlink:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16020 +#: guix-git/doc/guix.texi:16377 #, no-wrap msgid "" "(extra-special-file \"/usr/bin/env\"\n" @@ -27581,29 +28170,29 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16023 +#: guix-git/doc/guix.texi:16380 #, no-wrap msgid "{Scheme Procedure} host-name-service @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16025 +#: guix-git/doc/guix.texi:16382 msgid "Return a service that sets the host name to @var{name}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16027 +#: guix-git/doc/guix.texi:16384 #, no-wrap msgid "{Scheme Variable} console-font-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16032 +#: guix-git/doc/guix.texi:16389 msgid "Install the given fonts on the specified ttys (fonts are per virtual console on the kernel Linux). The value of this service is a list of tty/font pairs. The font can be the name of a font provided by the @code{kbd} package or any valid argument to @command{setfont}, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16041 +#: guix-git/doc/guix.texi:16398 #, no-wrap msgid "" "`((\"tty1\" . \"LatGrkCyr-8x16\")\n" @@ -27616,1109 +28205,1109 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16044 +#: guix-git/doc/guix.texi:16401 #, no-wrap msgid "{Scheme Procedure} login-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16048 +#: guix-git/doc/guix.texi:16405 msgid "Return a service to run login according to @var{config}, a @code{} object, which specifies the message of the day, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16050 +#: guix-git/doc/guix.texi:16407 #, no-wrap msgid "{Data Type} login-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16052 +#: guix-git/doc/guix.texi:16409 msgid "This is the data type representing the configuration of login." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16055 +#: guix-git/doc/guix.texi:16412 #, no-wrap msgid "motd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16056 +#: guix-git/doc/guix.texi:16413 #, no-wrap msgid "message of the day" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16058 +#: guix-git/doc/guix.texi:16415 msgid "A file-like object containing the ``message of the day''." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16059 guix-git/doc/guix.texi:19280 +#: guix-git/doc/guix.texi:16416 guix-git/doc/guix.texi:19642 #, no-wrap msgid "@code{allow-empty-passwords?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16062 +#: guix-git/doc/guix.texi:16419 msgid "Allow empty passwords by default so that first-time users can log in when the 'root' account has just been created." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16066 +#: guix-git/doc/guix.texi:16423 #, no-wrap msgid "{Scheme Procedure} mingetty-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16070 +#: guix-git/doc/guix.texi:16427 msgid "Return a service to run mingetty according to @var{config}, a @code{} object, which specifies the tty to run, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16072 +#: guix-git/doc/guix.texi:16429 #, no-wrap msgid "{Data Type} mingetty-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16075 +#: guix-git/doc/guix.texi:16432 msgid "This is the data type representing the configuration of Mingetty, which provides the default implementation of virtual console log-in." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16078 guix-git/doc/guix.texi:16117 -#: guix-git/doc/guix.texi:33550 +#: guix-git/doc/guix.texi:16435 guix-git/doc/guix.texi:16474 +#: guix-git/doc/guix.texi:33987 #, no-wrap msgid "tty" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16080 +#: guix-git/doc/guix.texi:16437 msgid "The name of the console this Mingetty runs on---e.g., @code{\"tty1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16081 guix-git/doc/guix.texi:16146 -#: guix-git/doc/guix.texi:16305 +#: guix-git/doc/guix.texi:16438 guix-git/doc/guix.texi:16503 +#: guix-git/doc/guix.texi:16662 #, no-wrap msgid "@code{auto-login} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16085 +#: guix-git/doc/guix.texi:16442 msgid "When true, this field must be a string denoting the user name under which the system automatically logs in. When it is @code{#f}, a user name and password must be entered to log in." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16086 +#: guix-git/doc/guix.texi:16443 #, no-wrap msgid "@code{login-program} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16090 +#: guix-git/doc/guix.texi:16447 msgid "This must be either @code{#f}, in which case the default log-in program is used (@command{login} from the Shadow tool suite), or a gexp denoting the name of the log-in program." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16091 +#: guix-git/doc/guix.texi:16448 #, no-wrap msgid "@code{login-pause?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16094 +#: guix-git/doc/guix.texi:16451 msgid "When set to @code{#t} in conjunction with @var{auto-login}, the user will have to press a key before the log-in shell is launched." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16095 +#: guix-git/doc/guix.texi:16452 #, no-wrap msgid "@code{clear-on-logout?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16097 +#: guix-git/doc/guix.texi:16454 msgid "When set to @code{#t}, the screen will be cleared after logout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16098 +#: guix-git/doc/guix.texi:16455 #, no-wrap msgid "@code{mingetty} (default: @var{mingetty})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16100 +#: guix-git/doc/guix.texi:16457 msgid "The Mingetty package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16104 +#: guix-git/doc/guix.texi:16461 #, no-wrap msgid "{Scheme Procedure} agetty-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16108 +#: guix-git/doc/guix.texi:16465 msgid "Return a service to run agetty according to @var{config}, an @code{} object, which specifies the tty to run, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16110 +#: guix-git/doc/guix.texi:16467 #, no-wrap msgid "{Data Type} agetty-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16114 +#: guix-git/doc/guix.texi:16471 msgid "This is the data type representing the configuration of agetty, which implements virtual and serial console log-in. See the @code{agetty(8)} man page for more information." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16121 +#: guix-git/doc/guix.texi:16478 msgid "The name of the console this agetty runs on, as a string---e.g., @code{\"ttyS0\"}. This argument is optional, it will default to a reasonable default serial port used by the kernel Linux." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16125 +#: guix-git/doc/guix.texi:16482 msgid "For this, if there is a value for an option @code{agetty.tty} in the kernel command line, agetty will extract the device name of the serial port from it and use that." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16129 +#: guix-git/doc/guix.texi:16486 msgid "If not and if there is a value for an option @code{console} with a tty in the Linux command line, agetty will extract the device name of the serial port from it and use that." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16133 +#: guix-git/doc/guix.texi:16490 msgid "In both cases, agetty will leave the other serial device settings (baud rate etc.)@: alone---in the hope that Linux pinned them to the correct values." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16134 guix-git/doc/guix.texi:33711 +#: guix-git/doc/guix.texi:16491 guix-git/doc/guix.texi:34148 #, no-wrap msgid "@code{baud-rate} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16137 +#: guix-git/doc/guix.texi:16494 msgid "A string containing a comma-separated list of one or more baud rates, in descending order." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16138 +#: guix-git/doc/guix.texi:16495 #, no-wrap msgid "@code{term} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16141 +#: guix-git/doc/guix.texi:16498 msgid "A string containing the value used for the @env{TERM} environment variable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16142 +#: guix-git/doc/guix.texi:16499 #, no-wrap msgid "@code{eight-bits?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16145 +#: guix-git/doc/guix.texi:16502 msgid "When @code{#t}, the tty is assumed to be 8-bit clean, and parity detection is disabled." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16149 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:16506 guix-git/doc/guix.texi:16665 msgid "When passed a login name, as a string, the specified user will be logged in automatically without prompting for their login name or password." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16150 +#: guix-git/doc/guix.texi:16507 #, no-wrap msgid "@code{no-reset?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16152 +#: guix-git/doc/guix.texi:16509 msgid "When @code{#t}, don't reset terminal cflags (control modes)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16153 +#: guix-git/doc/guix.texi:16510 #, no-wrap msgid "@code{host} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16156 +#: guix-git/doc/guix.texi:16513 msgid "This accepts a string containing the ``login_host'', which will be written into the @file{/var/run/utmpx} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16157 +#: guix-git/doc/guix.texi:16514 #, no-wrap msgid "@code{remote?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16161 +#: guix-git/doc/guix.texi:16518 msgid "When set to @code{#t} in conjunction with @var{host}, this will add an @code{-r} fakehost option to the command line of the login program specified in @var{login-program}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16162 +#: guix-git/doc/guix.texi:16519 #, no-wrap msgid "@code{flow-control?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16164 +#: guix-git/doc/guix.texi:16521 msgid "When set to @code{#t}, enable hardware (RTS/CTS) flow control." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16165 +#: guix-git/doc/guix.texi:16522 #, no-wrap msgid "@code{no-issue?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16168 +#: guix-git/doc/guix.texi:16525 msgid "When set to @code{#t}, the contents of the @file{/etc/issue} file will not be displayed before presenting the login prompt." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16169 +#: guix-git/doc/guix.texi:16526 #, no-wrap msgid "@code{init-string} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16172 +#: guix-git/doc/guix.texi:16529 msgid "This accepts a string that will be sent to the tty or modem before sending anything else. It can be used to initialize a modem." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16173 +#: guix-git/doc/guix.texi:16530 #, no-wrap msgid "@code{no-clear?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16176 +#: guix-git/doc/guix.texi:16533 msgid "When set to @code{#t}, agetty will not clear the screen before showing the login prompt." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16177 +#: guix-git/doc/guix.texi:16534 #, no-wrap msgid "@code{login-program} (default: (file-append shadow \"/bin/login\"))" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16181 +#: guix-git/doc/guix.texi:16538 msgid "This must be either a gexp denoting the name of a log-in program, or unset, in which case the default value is the @command{login} from the Shadow tool suite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16182 +#: guix-git/doc/guix.texi:16539 #, no-wrap msgid "@code{local-line} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16186 +#: guix-git/doc/guix.texi:16543 msgid "Control the CLOCAL line flag. This accepts one of three symbols as arguments, @code{'auto}, @code{'always}, or @code{'never}. If @code{#f}, the default value chosen by agetty is @code{'auto}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16187 +#: guix-git/doc/guix.texi:16544 #, no-wrap msgid "@code{extract-baud?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16190 +#: guix-git/doc/guix.texi:16547 msgid "When set to @code{#t}, instruct agetty to try to extract the baud rate from the status messages produced by certain types of modems." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16191 +#: guix-git/doc/guix.texi:16548 #, no-wrap msgid "@code{skip-login?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16195 +#: guix-git/doc/guix.texi:16552 msgid "When set to @code{#t}, do not prompt the user for a login name. This can be used with @var{login-program} field to use non-standard login systems." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16196 +#: guix-git/doc/guix.texi:16553 #, no-wrap msgid "@code{no-newline?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16199 +#: guix-git/doc/guix.texi:16556 msgid "When set to @code{#t}, do not print a newline before printing the @file{/etc/issue} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16201 +#: guix-git/doc/guix.texi:16558 #, no-wrap msgid "@code{login-options} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16206 +#: guix-git/doc/guix.texi:16563 msgid "This option accepts a string containing options that are passed to the login program. When used with the @var{login-program}, be aware that a malicious user could try to enter a login name containing embedded options that could be parsed by the login program." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16207 +#: guix-git/doc/guix.texi:16564 #, no-wrap msgid "@code{login-pause} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16211 +#: guix-git/doc/guix.texi:16568 msgid "When set to @code{#t}, wait for any key before showing the login prompt. This can be used in conjunction with @var{auto-login} to save memory by lazily spawning shells." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16212 +#: guix-git/doc/guix.texi:16569 #, no-wrap msgid "@code{chroot} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16215 +#: guix-git/doc/guix.texi:16572 msgid "Change root to the specified directory. This option accepts a directory path as a string." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16216 +#: guix-git/doc/guix.texi:16573 #, no-wrap msgid "@code{hangup?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16219 +#: guix-git/doc/guix.texi:16576 msgid "Use the Linux system call @code{vhangup} to do a virtual hangup of the specified terminal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16220 +#: guix-git/doc/guix.texi:16577 #, no-wrap msgid "@code{keep-baud?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16224 +#: guix-git/doc/guix.texi:16581 msgid "When set to @code{#t}, try to keep the existing baud rate. The baud rates from @var{baud-rate} are used when agetty receives a @key{BREAK} character." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16225 +#: guix-git/doc/guix.texi:16582 #, no-wrap msgid "@code{timeout} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16228 +#: guix-git/doc/guix.texi:16585 msgid "When set to an integer value, terminate if no user name could be read within @var{timeout} seconds." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16229 +#: guix-git/doc/guix.texi:16586 #, no-wrap msgid "@code{detect-case?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16235 +#: guix-git/doc/guix.texi:16592 msgid "When set to @code{#t}, turn on support for detecting an uppercase-only terminal. This setting will detect a login name containing only uppercase letters as indicating an uppercase-only terminal and turn on some upper-to-lower case conversions. Note that this will not support Unicode characters." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16236 +#: guix-git/doc/guix.texi:16593 #, no-wrap msgid "@code{wait-cr?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16241 +#: guix-git/doc/guix.texi:16598 msgid "When set to @code{#t}, wait for the user or modem to send a carriage-return or linefeed character before displaying @file{/etc/issue} or login prompt. This is typically used with the @var{init-string} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16242 +#: guix-git/doc/guix.texi:16599 #, no-wrap msgid "@code{no-hints?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16245 +#: guix-git/doc/guix.texi:16602 msgid "When set to @code{#t}, do not print hints about Num, Caps, and Scroll locks." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16246 +#: guix-git/doc/guix.texi:16603 #, no-wrap msgid "@code{no-hostname?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16249 +#: guix-git/doc/guix.texi:16606 msgid "By default, the hostname is printed. When this option is set to @code{#t}, no hostname will be shown at all." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16250 +#: guix-git/doc/guix.texi:16607 #, no-wrap msgid "@code{long-hostname?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16254 +#: guix-git/doc/guix.texi:16611 msgid "By default, the hostname is only printed until the first dot. When this option is set to @code{#t}, the fully qualified hostname by @code{gethostname} or @code{getaddrinfo} is shown." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16255 +#: guix-git/doc/guix.texi:16612 #, no-wrap msgid "@code{erase-characters} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16258 +#: guix-git/doc/guix.texi:16615 msgid "This option accepts a string of additional characters that should be interpreted as backspace when the user types their login name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16259 +#: guix-git/doc/guix.texi:16616 #, no-wrap msgid "@code{kill-characters} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16263 +#: guix-git/doc/guix.texi:16620 msgid "This option accepts a string that should be interpreted to mean ``ignore all previous characters'' (also called a ``kill'' character) when the user types their login name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16264 +#: guix-git/doc/guix.texi:16621 #, no-wrap msgid "@code{chdir} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16267 +#: guix-git/doc/guix.texi:16624 msgid "This option accepts, as a string, a directory path that will be changed to before login." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16268 +#: guix-git/doc/guix.texi:16625 #, no-wrap msgid "@code{delay} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16271 +#: guix-git/doc/guix.texi:16628 msgid "This options accepts, as an integer, the number of seconds to sleep before opening the tty and displaying the login prompt." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16272 +#: guix-git/doc/guix.texi:16629 #, no-wrap msgid "@code{nice} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16275 +#: guix-git/doc/guix.texi:16632 msgid "This option accepts, as an integer, the nice value with which to run the @command{login} program." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16276 guix-git/doc/guix.texi:16564 -#: guix-git/doc/guix.texi:17478 guix-git/doc/guix.texi:25181 -#: guix-git/doc/guix.texi:26658 guix-git/doc/guix.texi:29074 -#: guix-git/doc/guix.texi:29869 guix-git/doc/guix.texi:31622 -#: guix-git/doc/guix.texi:34051 +#: guix-git/doc/guix.texi:16633 guix-git/doc/guix.texi:16921 +#: guix-git/doc/guix.texi:17840 guix-git/doc/guix.texi:25543 +#: guix-git/doc/guix.texi:26995 guix-git/doc/guix.texi:29411 +#: guix-git/doc/guix.texi:30234 guix-git/doc/guix.texi:31987 +#: guix-git/doc/guix.texi:34488 #, no-wrap msgid "@code{extra-options} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16279 +#: guix-git/doc/guix.texi:16636 msgid "This option provides an ``escape hatch'' for the user to provide arbitrary command-line arguments to @command{agetty} as a list of strings." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16283 +#: guix-git/doc/guix.texi:16640 #, no-wrap msgid "{Scheme Procedure} kmscon-service-type @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16287 +#: guix-git/doc/guix.texi:16644 msgid "Return a service to run @uref{https://www.freedesktop.org/wiki/Software/kmscon,kmscon} according to @var{config}, a @code{} object, which specifies the tty to run, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16289 +#: guix-git/doc/guix.texi:16646 #, no-wrap msgid "{Data Type} kmscon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16292 +#: guix-git/doc/guix.texi:16649 msgid "This is the data type representing the configuration of Kmscon, which implements virtual console log-in." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16295 +#: guix-git/doc/guix.texi:16652 #, no-wrap msgid "virtual-terminal" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16297 +#: guix-git/doc/guix.texi:16654 msgid "The name of the console this Kmscon runs on---e.g., @code{\"tty1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16298 +#: guix-git/doc/guix.texi:16655 #, no-wrap msgid "@code{login-program} (default: @code{#~(string-append #$shadow \"/bin/login\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16301 +#: guix-git/doc/guix.texi:16658 msgid "A gexp denoting the name of the log-in program. The default log-in program is @command{login} from the Shadow tool suite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16302 +#: guix-git/doc/guix.texi:16659 #, no-wrap msgid "@code{login-arguments} (default: @code{'(\"-p\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16304 +#: guix-git/doc/guix.texi:16661 msgid "A list of arguments to pass to @command{login}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16309 +#: guix-git/doc/guix.texi:16666 #, no-wrap msgid "@code{hardware-acceleration?} (default: #f)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16311 +#: guix-git/doc/guix.texi:16668 msgid "Whether to use hardware acceleration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16312 +#: guix-git/doc/guix.texi:16669 #, no-wrap msgid "@code{font-engine} (default: @code{\"pango\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16314 +#: guix-git/doc/guix.texi:16671 msgid "Font engine used in Kmscon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16315 +#: guix-git/doc/guix.texi:16672 #, no-wrap msgid "@code{font-size} (default: @code{12})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16317 +#: guix-git/doc/guix.texi:16674 msgid "Font size used in Kmscon." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16321 +#: guix-git/doc/guix.texi:16678 msgid "If this is @code{#f}, Kmscon uses the default keyboard layout---usually US English (``qwerty'') for a 105-key PC keyboard." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16325 +#: guix-git/doc/guix.texi:16682 msgid "Otherwise this must be a @code{keyboard-layout} object specifying the keyboard layout. @xref{Keyboard Layout}, for more information on how to specify the keyboard layout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16326 +#: guix-git/doc/guix.texi:16683 #, no-wrap msgid "@code{kmscon} (default: @var{kmscon})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16328 +#: guix-git/doc/guix.texi:16685 msgid "The Kmscon package to use." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16332 +#: guix-git/doc/guix.texi:16689 #, no-wrap msgid "name service cache daemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16333 +#: guix-git/doc/guix.texi:16690 #, no-wrap msgid "nscd" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16334 +#: guix-git/doc/guix.texi:16691 #, no-wrap msgid "{Scheme Procedure} nscd-service [@var{config}] [#:glibc glibc] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16339 +#: guix-git/doc/guix.texi:16696 msgid "[#:name-services '()] Return a service that runs the libc name service cache daemon (nscd) with the given @var{config}---an @code{} object. @xref{Name Service Switch}, for an example." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16341 +#: guix-git/doc/guix.texi:16698 msgid "For convenience, the Shepherd service for nscd provides the following actions:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16343 +#: guix-git/doc/guix.texi:16700 #, no-wrap msgid "invalidate" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16344 +#: guix-git/doc/guix.texi:16701 #, no-wrap msgid "cache invalidation, nscd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16345 +#: guix-git/doc/guix.texi:16702 #, no-wrap msgid "nscd, cache invalidation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16347 +#: guix-git/doc/guix.texi:16704 msgid "This invalidate the given cache. For instance, running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16350 +#: guix-git/doc/guix.texi:16707 #, no-wrap msgid "herd invalidate nscd hosts\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16354 +#: guix-git/doc/guix.texi:16711 msgid "invalidates the host name lookup cache of nscd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16355 +#: guix-git/doc/guix.texi:16712 #, no-wrap msgid "statistics" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16358 +#: guix-git/doc/guix.texi:16715 msgid "Running @command{herd statistics nscd} displays information about nscd usage and caches." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16362 +#: guix-git/doc/guix.texi:16719 #, no-wrap msgid "{Scheme Variable} %nscd-default-configuration" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16366 +#: guix-git/doc/guix.texi:16723 msgid "This is the default @code{} value (see below) used by @code{nscd-service}. It uses the caches defined by @code{%nscd-default-caches}; see below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16368 +#: guix-git/doc/guix.texi:16725 #, no-wrap msgid "{Data Type} nscd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16371 +#: guix-git/doc/guix.texi:16728 msgid "This is the data type representing the name service cache daemon (nscd) configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16374 +#: guix-git/doc/guix.texi:16731 #, no-wrap msgid "@code{name-services} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16377 +#: guix-git/doc/guix.texi:16734 msgid "List of packages denoting @dfn{name services} that must be visible to the nscd---e.g., @code{(list @var{nss-mdns})}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16378 +#: guix-git/doc/guix.texi:16735 #, no-wrap msgid "@code{glibc} (default: @var{glibc})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16381 +#: guix-git/doc/guix.texi:16738 msgid "Package object denoting the GNU C Library providing the @command{nscd} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16382 +#: guix-git/doc/guix.texi:16739 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/nscd.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16385 +#: guix-git/doc/guix.texi:16742 msgid "Name of the nscd log file. This is where debugging output goes when @code{debug-level} is strictly positive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16386 +#: guix-git/doc/guix.texi:16743 #, no-wrap msgid "@code{debug-level} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16389 +#: guix-git/doc/guix.texi:16746 msgid "Integer denoting the debugging levels. Higher numbers mean that more debugging output is logged." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16390 +#: guix-git/doc/guix.texi:16747 #, no-wrap msgid "@code{caches} (default: @code{%nscd-default-caches})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16393 +#: guix-git/doc/guix.texi:16750 msgid "List of @code{} objects denoting things to be cached; see below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16397 +#: guix-git/doc/guix.texi:16754 #, no-wrap msgid "{Data Type} nscd-cache" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16399 +#: guix-git/doc/guix.texi:16756 msgid "Data type representing a cache database of nscd and its parameters." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16402 guix-git/doc/guix.texi:21071 +#: guix-git/doc/guix.texi:16759 guix-git/doc/guix.texi:21433 #, no-wrap msgid "database" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16407 +#: guix-git/doc/guix.texi:16764 msgid "This is a symbol representing the name of the database to be cached. Valid values are @code{passwd}, @code{group}, @code{hosts}, and @code{services}, which designate the corresponding NSS database (@pxref{NSS Basics,,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16408 +#: guix-git/doc/guix.texi:16765 #, no-wrap msgid "positive-time-to-live" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:16409 +#: guix-git/doc/guix.texi:16766 #, no-wrap msgid "@code{negative-time-to-live} (default: @code{20})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16412 +#: guix-git/doc/guix.texi:16769 msgid "A number representing the number of seconds during which a positive or negative lookup result remains in cache." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16413 +#: guix-git/doc/guix.texi:16770 #, no-wrap msgid "@code{check-files?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16416 +#: guix-git/doc/guix.texi:16773 msgid "Whether to check for updates of the files corresponding to @var{database}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16420 +#: guix-git/doc/guix.texi:16777 msgid "For instance, when @var{database} is @code{hosts}, setting this flag instructs nscd to check for updates in @file{/etc/hosts} and to take them into account." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16421 +#: guix-git/doc/guix.texi:16778 #, no-wrap msgid "@code{persistent?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16423 +#: guix-git/doc/guix.texi:16780 msgid "Whether the cache should be stored persistently on disk." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16424 +#: guix-git/doc/guix.texi:16781 #, no-wrap msgid "@code{shared?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16426 +#: guix-git/doc/guix.texi:16783 msgid "Whether the cache should be shared among users." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16427 +#: guix-git/doc/guix.texi:16784 #, no-wrap msgid "@code{max-database-size} (default: 32@tie{}MiB)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16429 +#: guix-git/doc/guix.texi:16786 msgid "Maximum size in bytes of the database cache." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16436 +#: guix-git/doc/guix.texi:16793 #, no-wrap msgid "{Scheme Variable} %nscd-default-caches" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16439 +#: guix-git/doc/guix.texi:16796 msgid "List of @code{} objects used by default by @code{nscd-configuration} (see above)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16445 +#: guix-git/doc/guix.texi:16802 msgid "It enables persistent and aggressive caching of service and host name lookups. The latter provides better host name lookup performance, resilience in the face of unreliable name servers, and also better privacy---often the result of host name lookups is in local cache, so external name servers do not even need to be queried." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16448 +#: guix-git/doc/guix.texi:16805 msgid "syslog-configuration-type" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16448 guix-git/doc/guix.texi:16464 +#: guix-git/doc/guix.texi:16805 guix-git/doc/guix.texi:16821 #, no-wrap msgid "syslog" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16449 guix-git/doc/guix.texi:17035 +#: guix-git/doc/guix.texi:16806 guix-git/doc/guix.texi:17397 #, no-wrap msgid "logging" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16450 +#: guix-git/doc/guix.texi:16807 #, no-wrap msgid "{Data Type} syslog-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16452 +#: guix-git/doc/guix.texi:16809 msgid "This data type represents the configuration of the syslog daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16454 +#: guix-git/doc/guix.texi:16811 #, no-wrap msgid "@code{syslogd} (default: @code{#~(string-append #$inetutils \"/libexec/syslogd\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16456 +#: guix-git/doc/guix.texi:16813 msgid "The syslog daemon to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16457 +#: guix-git/doc/guix.texi:16814 #, no-wrap msgid "@code{config-file} (default: @code{%default-syslog.conf})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16459 +#: guix-git/doc/guix.texi:16816 msgid "The syslog configuration file to use." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16464 +#: guix-git/doc/guix.texi:16821 msgid "syslog-service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16465 +#: guix-git/doc/guix.texi:16822 #, no-wrap msgid "{Scheme Procedure} syslog-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16467 +#: guix-git/doc/guix.texi:16824 msgid "Return a service that runs a syslog daemon according to @var{config}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16470 +#: guix-git/doc/guix.texi:16827 msgid "@xref{syslogd invocation,,, inetutils, GNU Inetutils}, for more information on the configuration file syntax." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16472 +#: guix-git/doc/guix.texi:16829 #, no-wrap msgid "{Scheme Variable} guix-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16476 +#: guix-git/doc/guix.texi:16833 msgid "This is the type of the service that runs the build daemon, @command{guix-daemon} (@pxref{Invoking guix-daemon}). Its value must be a @code{guix-configuration} record as described below." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16479 +#: guix-git/doc/guix.texi:16836 msgid "guix-configuration-type" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16479 +#: guix-git/doc/guix.texi:16836 #, no-wrap msgid "{Data Type} guix-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16482 +#: guix-git/doc/guix.texi:16839 msgid "This data type represents the configuration of the Guix build daemon. @xref{Invoking guix-daemon}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16484 +#: guix-git/doc/guix.texi:16841 #, no-wrap msgid "@code{guix} (default: @var{guix})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16486 guix-git/doc/guix.texi:16763 +#: guix-git/doc/guix.texi:16843 guix-git/doc/guix.texi:17120 msgid "The Guix package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16487 +#: guix-git/doc/guix.texi:16844 #, no-wrap msgid "@code{build-group} (default: @code{\"guixbuild\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16489 +#: guix-git/doc/guix.texi:16846 msgid "Name of the group for build user accounts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16490 +#: guix-git/doc/guix.texi:16847 #, no-wrap msgid "@code{build-accounts} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16492 +#: guix-git/doc/guix.texi:16849 msgid "Number of build user accounts to create." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16493 +#: guix-git/doc/guix.texi:16850 #, no-wrap msgid "@code{authorize-key?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16500 +#: guix-git/doc/guix.texi:16857 msgid "Whether to authorize the substitute keys listed in @code{authorized-keys}---by default that of @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} (@pxref{Substitutes})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16506 +#: guix-git/doc/guix.texi:16863 msgid "When @code{authorize-key?} is true, @file{/etc/guix/acl} cannot be changed by invoking @command{guix archive --authorize}. You must instead adjust @code{guix-configuration} as you wish and reconfigure the system. This ensures that your operating system configuration file is self-contained." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:16513 +#: guix-git/doc/guix.texi:16870 msgid "When booting or reconfiguring to a system where @code{authorize-key?} is true, the existing @file{/etc/guix/acl} file is backed up as @file{/etc/guix/acl.bak} if it was determined to be a manually modified file. This is to facilitate migration from earlier versions, which allowed for in-place modifications to @file{/etc/guix/acl}." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:16515 +#: guix-git/doc/guix.texi:16872 #, no-wrap msgid "%default-authorized-guix-keys" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16516 +#: guix-git/doc/guix.texi:16873 #, no-wrap msgid "@code{authorized-keys} (default: @code{%default-authorized-guix-keys})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16522 +#: guix-git/doc/guix.texi:16879 msgid "The list of authorized key files for archive imports, as a list of string-valued gexps (@pxref{Invoking guix archive}). By default, it contains that of @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} (@pxref{Substitutes}). See @code{substitute-urls} below for an example on how to change it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16523 +#: guix-git/doc/guix.texi:16880 #, no-wrap msgid "@code{use-substitutes?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16525 +#: guix-git/doc/guix.texi:16882 msgid "Whether to use substitutes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16526 guix-git/doc/guix.texi:29171 +#: guix-git/doc/guix.texi:16883 guix-git/doc/guix.texi:29508 #, no-wrap msgid "@code{substitute-urls} (default: @code{%default-substitute-urls})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16528 guix-git/doc/guix.texi:29173 +#: guix-git/doc/guix.texi:16885 guix-git/doc/guix.texi:29510 msgid "The list of URLs where to look for substitutes by default." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16535 +#: guix-git/doc/guix.texi:16892 msgid "Suppose you would like to fetch substitutes from @code{guix.example.org} in addition to @code{@value{SUBSTITUTE-SERVER-1}}. You will need to do two things: (1) add @code{guix.example.org} to @code{substitute-urls}, and (2) authorize its signing key, having done appropriate checks (@pxref{Substitute Server Authorization}). The configuration below does exactly that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16544 +#: guix-git/doc/guix.texi:16901 #, no-wrap msgid "" "(guix-configuration\n" @@ -28731,150 +29320,150 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16549 +#: guix-git/doc/guix.texi:16906 msgid "This example assumes that the file @file{./guix.example.org-key.pub} contains the public key that @code{guix.example.org} uses to sign substitutes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16550 +#: guix-git/doc/guix.texi:16907 #, no-wrap msgid "@code{max-silent-time} (default: @code{0})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:16551 +#: guix-git/doc/guix.texi:16908 #, no-wrap msgid "@code{timeout} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16555 +#: guix-git/doc/guix.texi:16912 msgid "The number of seconds of silence and the number of seconds of activity, respectively, after which a build process times out. A value of zero disables the timeout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16556 +#: guix-git/doc/guix.texi:16913 #, no-wrap -msgid "@code{log-compression} (default: @code{'bzip2})" +msgid "@code{log-compression} (default: @code{'gzip})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16559 +#: guix-git/doc/guix.texi:16916 msgid "The type of compression used for build logs---one of @code{gzip}, @code{bzip2}, or @code{none}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16560 +#: guix-git/doc/guix.texi:16917 #, no-wrap msgid "@code{discover?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16566 +#: guix-git/doc/guix.texi:16923 msgid "List of extra command-line options for @command{guix-daemon}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16567 +#: guix-git/doc/guix.texi:16924 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/guix-daemon.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16570 +#: guix-git/doc/guix.texi:16927 msgid "File where @command{guix-daemon}'s standard output and standard error are written." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16571 +#: guix-git/doc/guix.texi:16928 #, no-wrap msgid "HTTP proxy, for @code{guix-daemon}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16572 +#: guix-git/doc/guix.texi:16929 #, no-wrap msgid "proxy, for @code{guix-daemon} HTTP access" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16573 +#: guix-git/doc/guix.texi:16930 #, no-wrap msgid "@code{http-proxy} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16576 +#: guix-git/doc/guix.texi:16933 msgid "The URL of the HTTP and HTTPS proxy used for downloading fixed-output derivations and substitutes." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16579 +#: guix-git/doc/guix.texi:16936 msgid "It is also possible to change the daemon's proxy at run time through the @code{set-http-proxy} action, which restarts it:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16582 +#: guix-git/doc/guix.texi:16939 #, no-wrap msgid "herd set-http-proxy guix-daemon http://localhost:8118\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16585 +#: guix-git/doc/guix.texi:16942 msgid "To clear the proxy settings, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16588 +#: guix-git/doc/guix.texi:16945 #, no-wrap msgid "herd set-http-proxy guix-daemon\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16590 +#: guix-git/doc/guix.texi:16947 #, no-wrap msgid "@code{tmpdir} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16592 +#: guix-git/doc/guix.texi:16949 msgid "A directory path where the @command{guix-daemon} will perform builds." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16596 +#: guix-git/doc/guix.texi:16953 #, no-wrap msgid "{Scheme Procedure} udev-service [#:udev @var{eudev} #:rules @code{'()}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16602 +#: guix-git/doc/guix.texi:16959 msgid "Run @var{udev}, which populates the @file{/dev} directory dynamically. udev rules can be provided as a list of files through the @var{rules} variable. The procedures @code{udev-rule}, @code{udev-rules-service} and @code{file->udev-rule} from @code{(gnu services base)} simplify the creation of such rule files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16605 +#: guix-git/doc/guix.texi:16962 msgid "The @command{herd rules udev} command, as root, returns the name of the directory containing all the active udev rules." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16607 +#: guix-git/doc/guix.texi:16964 #, no-wrap msgid "{Scheme Procedure} udev-rule [@var{file-name} @var{contents}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16610 +#: guix-git/doc/guix.texi:16967 msgid "Return a udev-rule file named @var{file-name} containing the rules defined by the @var{contents} literal." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16614 +#: guix-git/doc/guix.texi:16971 msgid "In the following example, a rule for a USB device is defined to be stored in the file @file{90-usb-thing.rules}. The rule runs a script upon detecting a USB device with a given product identifier." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16622 +#: guix-git/doc/guix.texi:16979 #, no-wrap msgid "" "(define %example-udev-rule\n" @@ -28886,23 +29475,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16625 +#: guix-git/doc/guix.texi:16982 #, no-wrap msgid "{Scheme Procedure} udev-rules-service [@var{name} @var{rules}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16632 +#: guix-git/doc/guix.texi:16989 msgid "[#:groups @var{groups}] Return a service that extends @code{udev-service-type } with @var{rules} and @code{account-service-type} with @var{groups} as system groups. This works by creating a singleton service type @code{@var{name}-udev-rules}, of which the returned service is an instance." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16635 +#: guix-git/doc/guix.texi:16992 msgid "Here we show how it can be used to extend @code{udev-service-type} with the previously defined rule @code{%example-udev-rule}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16642 +#: guix-git/doc/guix.texi:16999 #, no-wrap msgid "" "(operating-system\n" @@ -28913,23 +29502,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16645 +#: guix-git/doc/guix.texi:17002 #, no-wrap msgid "{Scheme Procedure} file->udev-rule [@var{file-name} @var{file}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16648 +#: guix-git/doc/guix.texi:17005 msgid "Return a udev file named @var{file-name} containing the rules defined within @var{file}, a file-like object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16650 +#: guix-git/doc/guix.texi:17007 msgid "The following example showcases how we can use an existing rule file." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16655 +#: guix-git/doc/guix.texi:17012 #, no-wrap msgid "" "(use-modules (guix download) ;for url-fetch\n" @@ -28939,7 +29528,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16666 +#: guix-git/doc/guix.texi:17023 #, no-wrap msgid "" "(define %android-udev-rules\n" @@ -28955,17 +29544,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16675 +#: guix-git/doc/guix.texi:17032 msgid "Additionally, Guix package definitions can be included in @var{rules} in order to extend the udev rules with the definitions found under their @file{lib/udev/rules.d} sub-directory. In lieu of the previous @var{file->udev-rule} example, we could have used the @var{android-udev-rules} package which exists in Guix in the @code{(gnu packages android)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16684 +#: guix-git/doc/guix.texi:17041 msgid "The following example shows how to use the @var{android-udev-rules} package so that the Android tool @command{adb} can detect devices without root privileges. It also details how to create the @code{adbusers} group, which is required for the proper functioning of the rules defined within the @code{android-udev-rules} package. To create such a group, we must define it both as part of the @code{supplementary-groups} of our @code{user-account} declaration, as well as in the @var{groups} of the @code{udev-rules-service} procedure." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16689 +#: guix-git/doc/guix.texi:17046 #, no-wrap msgid "" "(use-modules (gnu packages android) ;for android-udev-rules\n" @@ -28975,7 +29564,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16702 +#: guix-git/doc/guix.texi:17059 #, no-wrap msgid "" "(operating-system\n" @@ -28993,328 +29582,339 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16704 +#: guix-git/doc/guix.texi:17061 #, no-wrap msgid "{Scheme Variable} urandom-seed-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16709 +#: guix-git/doc/guix.texi:17066 msgid "Save some entropy in @code{%random-seed-file} to seed @file{/dev/urandom} when rebooting. It also tries to seed @file{/dev/urandom} from @file{/dev/hwrng} while booting, if @file{/dev/hwrng} exists and is readable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16711 +#: guix-git/doc/guix.texi:17068 #, no-wrap msgid "{Scheme Variable} %random-seed-file" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16715 +#: guix-git/doc/guix.texi:17072 msgid "This is the name of the file where some random bytes are saved by @var{urandom-seed-service} to seed @file{/dev/urandom} when rebooting. It defaults to @file{/var/lib/random-seed}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16717 +#: guix-git/doc/guix.texi:17074 #, no-wrap msgid "mouse" -msgstr "" +msgstr "myš" #. type: cindex -#: guix-git/doc/guix.texi:16718 +#: guix-git/doc/guix.texi:17075 #, no-wrap msgid "gpm" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16719 +#: guix-git/doc/guix.texi:17076 #, no-wrap msgid "{Scheme Variable} gpm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16724 +#: guix-git/doc/guix.texi:17081 msgid "This is the type of the service that runs GPM, the @dfn{general-purpose mouse daemon}, which provides mouse support to the Linux console. GPM allows users to use the mouse in the console, notably to select, copy, and paste text." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16727 +#: guix-git/doc/guix.texi:17084 msgid "The value for services of this type must be a @code{gpm-configuration} (see below). This service is not part of @code{%base-services}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16729 +#: guix-git/doc/guix.texi:17086 #, no-wrap msgid "{Data Type} gpm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16731 +#: guix-git/doc/guix.texi:17088 msgid "Data type representing the configuration of GPM." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16733 +#: guix-git/doc/guix.texi:17090 #, no-wrap msgid "@code{options} (default: @code{%default-gpm-options})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16738 +#: guix-git/doc/guix.texi:17095 msgid "Command-line options passed to @command{gpm}. The default set of options instruct @command{gpm} to listen to mouse events on @file{/dev/input/mice}. @xref{Command Line,,, gpm, gpm manual}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16739 +#: guix-git/doc/guix.texi:17096 #, no-wrap msgid "@code{gpm} (default: @code{gpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16741 +#: guix-git/doc/guix.texi:17098 msgid "The GPM package to use." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16746 +#: guix-git/doc/guix.texi:17103 msgid "guix-publish-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16746 +#: guix-git/doc/guix.texi:17103 #, no-wrap msgid "{Scheme Variable} guix-publish-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16750 +#: guix-git/doc/guix.texi:17107 msgid "This is the service type for @command{guix publish} (@pxref{Invoking guix publish}). Its value must be a @code{guix-publish-configuration} object, as described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16754 +#: guix-git/doc/guix.texi:17111 msgid "This assumes that @file{/etc/guix} already contains a signing key pair as created by @command{guix archive --generate-key} (@pxref{Invoking guix archive}). If that is not the case, the service will fail to start." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16756 +#: guix-git/doc/guix.texi:17113 #, no-wrap msgid "{Data Type} guix-publish-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16759 +#: guix-git/doc/guix.texi:17116 msgid "Data type representing the configuration of the @code{guix publish} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16761 +#: guix-git/doc/guix.texi:17118 #, no-wrap msgid "@code{guix} (default: @code{guix})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16764 guix-git/doc/guix.texi:31477 +#: guix-git/doc/guix.texi:17121 guix-git/doc/guix.texi:31842 #, no-wrap msgid "@code{port} (default: @code{80})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16766 +#: guix-git/doc/guix.texi:17123 msgid "The TCP port to listen for connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16767 guix-git/doc/guix.texi:29054 -#: guix-git/doc/guix.texi:32858 +#: guix-git/doc/guix.texi:17124 guix-git/doc/guix.texi:29391 +#: guix-git/doc/guix.texi:33223 #, no-wrap msgid "@code{host} (default: @code{\"localhost\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16770 +#: guix-git/doc/guix.texi:17127 msgid "The host (and thus, network interface) to listen to. Use @code{\"0.0.0.0\"} to listen on all the network interfaces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16771 +#: guix-git/doc/guix.texi:17128 #, no-wrap msgid "@code{advertise?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16774 +#: guix-git/doc/guix.texi:17131 msgid "When true, advertise the service on the local network @i{via} the DNS-SD protocol, using Avahi." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16778 +#: guix-git/doc/guix.texi:17135 msgid "This allows neighboring Guix devices with discovery on (see @code{guix-configuration} above) to discover this @command{guix publish} instance and to automatically download substitutes from it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16779 +#: guix-git/doc/guix.texi:17136 #, no-wrap msgid "@code{compression} (default: @code{'((\"gzip\" 3) (\"zstd\" 3))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16783 +#: guix-git/doc/guix.texi:17140 msgid "This is a list of compression method/level tuple used when compressing substitutes. For example, to compress all substitutes with @emph{both} lzip at level 7 and gzip at level 9, write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16786 +#: guix-git/doc/guix.texi:17143 #, no-wrap msgid "'((\"lzip\" 7) (\"gzip\" 9))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16792 +#: guix-git/doc/guix.texi:17149 msgid "Level 9 achieves the best compression ratio at the expense of increased CPU usage, whereas level 1 achieves fast compression. @xref{Invoking guix publish}, for more information on the available compression methods and the tradeoffs involved." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16794 +#: guix-git/doc/guix.texi:17151 msgid "An empty list disables compression altogether." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16795 +#: guix-git/doc/guix.texi:17152 #, no-wrap msgid "@code{nar-path} (default: @code{\"nar\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16798 +#: guix-git/doc/guix.texi:17155 msgid "The URL path at which ``nars'' can be fetched. @xref{Invoking guix publish, @option{--nar-path}}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16799 +#: guix-git/doc/guix.texi:17156 #, no-wrap msgid "@code{cache} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16805 +#: guix-git/doc/guix.texi:17162 msgid "When it is @code{#f}, disable caching and instead generate archives on demand. Otherwise, this should be the name of a directory---e.g., @code{\"/var/cache/guix/publish\"}---where @command{guix publish} caches archives and meta-data ready to be sent. @xref{Invoking guix publish, @option{--cache}}, for more information on the tradeoffs involved." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16806 +#: guix-git/doc/guix.texi:17163 #, no-wrap msgid "@code{workers} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16810 +#: guix-git/doc/guix.texi:17167 msgid "When it is an integer, this is the number of worker threads used for caching; when @code{#f}, the number of processors is used. @xref{Invoking guix publish, @option{--workers}}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16811 +#: guix-git/doc/guix.texi:17168 #, no-wrap msgid "@code{cache-bypass-threshold} (default: 10 MiB)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16816 +#: guix-git/doc/guix.texi:17173 msgid "When @code{cache} is true, this is the maximum size in bytes of a store item for which @command{guix publish} may bypass its cache in case of a cache miss. @xref{Invoking guix publish, @option{--cache-bypass-threshold}}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16817 +#: guix-git/doc/guix.texi:17174 #, no-wrap msgid "@code{ttl} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16821 +#: guix-git/doc/guix.texi:17178 msgid "When it is an integer, this denotes the @dfn{time-to-live} in seconds of the published archives. @xref{Invoking guix publish, @option{--ttl}}, for more information." msgstr "" +#. type: item +#: guix-git/doc/guix.texi:17179 +#, no-wrap +msgid "@code{negative-ttl} (default: @code{#f})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:17183 +msgid "When it is an integer, this denotes the @dfn{time-to-live} in seconds for the negative lookups. @xref{Invoking guix publish, @option{--negative-ttl}}, for more information." +msgstr "" + #. type: anchor{#1} -#: guix-git/doc/guix.texi:16825 +#: guix-git/doc/guix.texi:17187 msgid "rngd-service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16825 +#: guix-git/doc/guix.texi:17187 #, no-wrap msgid "{Scheme Procedure} rngd-service [#:rng-tools @var{rng-tools}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16830 +#: guix-git/doc/guix.texi:17192 msgid "[#:device \"/dev/hwrng\"] Return a service that runs the @command{rngd} program from @var{rng-tools} to add @var{device} to the kernel's entropy pool. The service will fail if @var{device} does not exist." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16833 +#: guix-git/doc/guix.texi:17195 msgid "pam-limits-service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16833 +#: guix-git/doc/guix.texi:17195 #, no-wrap msgid "session limits" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16834 +#: guix-git/doc/guix.texi:17196 #, no-wrap msgid "ulimit" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16835 +#: guix-git/doc/guix.texi:17197 #, no-wrap msgid "priority" -msgstr "" +msgstr "priorita" #. type: cindex -#: guix-git/doc/guix.texi:16836 +#: guix-git/doc/guix.texi:17198 #, no-wrap msgid "realtime" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16837 +#: guix-git/doc/guix.texi:17199 #, no-wrap msgid "jackd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16838 +#: guix-git/doc/guix.texi:17200 #, no-wrap msgid "nofile" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16839 +#: guix-git/doc/guix.texi:17201 #, no-wrap msgid "open file descriptors" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16840 +#: guix-git/doc/guix.texi:17202 #, no-wrap msgid "{Scheme Procedure} pam-limits-service [#:limits @code{'()}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16847 +#: guix-git/doc/guix.texi:17209 msgid "Return a service that installs a configuration file for the @uref{http://linux-pam.org/Linux-PAM-html/sag-pam_limits.html, @code{pam_limits} module}. The procedure optionally takes a list of @code{pam-limits-entry} values, which can be used to specify @code{ulimit} limits and @code{nice} priority limits to user sessions." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16850 +#: guix-git/doc/guix.texi:17212 msgid "The following limits definition sets two hard and soft limits for all login sessions of users in the @code{realtime} group:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16856 +#: guix-git/doc/guix.texi:17218 #, no-wrap msgid "" "(pam-limits-service\n" @@ -29324,17 +29924,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16862 +#: guix-git/doc/guix.texi:17224 msgid "The first entry increases the maximum realtime priority for non-privileged processes; the second entry lifts any restriction of the maximum address space that can be locked in memory. These settings are commonly used for real-time audio systems." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16865 +#: guix-git/doc/guix.texi:17227 msgid "Another useful example is raising the maximum number of open file descriptors that can be used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16870 +#: guix-git/doc/guix.texi:17232 #, no-wrap msgid "" "(pam-limits-service\n" @@ -29343,40 +29943,40 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16878 +#: guix-git/doc/guix.texi:17240 msgid "In the above example, the asterisk means the limit should apply to any user. It is important to ensure the chosen value doesn't exceed the maximum system value visible in the @file{/proc/sys/fs/file-max} file, else the users would be prevented from login in. For more information about the Pluggable Authentication Module (PAM) limits, refer to the @samp{pam_limits} man page from the @code{linux-pam} package." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16883 guix-git/doc/guix.texi:37407 +#: guix-git/doc/guix.texi:17245 guix-git/doc/guix.texi:37897 #, no-wrap msgid "cron" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16884 guix-git/doc/guix.texi:37408 +#: guix-git/doc/guix.texi:17246 guix-git/doc/guix.texi:37898 #, no-wrap msgid "mcron" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16885 guix-git/doc/guix.texi:37409 +#: guix-git/doc/guix.texi:17247 guix-git/doc/guix.texi:37899 #, no-wrap msgid "scheduling jobs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16892 +#: guix-git/doc/guix.texi:17254 msgid "The @code{(gnu services mcron)} module provides an interface to GNU@tie{}mcron, a daemon to run jobs at scheduled times (@pxref{Top,,, mcron, GNU@tie{}mcron}). GNU@tie{}mcron is similar to the traditional Unix @command{cron} daemon; the main difference is that it is implemented in Guile Scheme, which provides a lot of flexibility when specifying the scheduling of jobs and their actions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16900 +#: guix-git/doc/guix.texi:17262 msgid "The example below defines an operating system that runs the @command{updatedb} (@pxref{Invoking updatedb,,, find, Finding Files}) and the @command{guix gc} commands (@pxref{Invoking guix gc}) daily, as well as the @command{mkid} command on behalf of an unprivileged user (@pxref{mkid invocation,,, idutils, ID Database Utilities}). It uses gexps to introduce job definitions that are passed to mcron (@pxref{G-Expressions})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16904 +#: guix-git/doc/guix.texi:17266 #, no-wrap msgid "" "(use-modules (guix) (gnu) (gnu services mcron))\n" @@ -29385,7 +29985,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16914 +#: guix-git/doc/guix.texi:17276 #, no-wrap msgid "" "(define updatedb-job\n" @@ -29401,7 +30001,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16920 +#: guix-git/doc/guix.texi:17282 #, no-wrap msgid "" "(define garbage-collector-job\n" @@ -29413,7 +30013,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16927 +#: guix-git/doc/guix.texi:17289 #, no-wrap msgid "" "(define idutils-job\n" @@ -29426,7 +30026,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16930 +#: guix-git/doc/guix.texi:17292 #, no-wrap msgid "" "(operating-system\n" @@ -29435,7 +30035,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16940 +#: guix-git/doc/guix.texi:17302 #, no-wrap msgid "" " ;; %BASE-SERVICES already includes an instance of\n" @@ -29450,24 +30050,23 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:16942 -#, fuzzy, no-wrap -#| msgid "Top" +#: guix-git/doc/guix.texi:17304 +#, no-wrap msgid "Tip" -msgstr "Top" +msgstr "Rada" #. type: quotation -#: guix-git/doc/guix.texi:16948 +#: guix-git/doc/guix.texi:17310 msgid "When providing the action of a job specification as a procedure, you should provide an explicit name for the job via the optional 3rd argument as done in the @code{updatedb-job} example above. Otherwise, the job would appear as ``Lambda function'' in the output of @command{herd schedule mcron}, which is not nearly descriptive enough!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16955 +#: guix-git/doc/guix.texi:17317 msgid "For more complex jobs defined in Scheme where you need control over the top level, for instance to introduce a @code{use-modules} form, you can move your code to a separate program using the @code{program-file} procedure of the @code{(guix gexp)} module (@pxref{G-Expressions}). The example below illustrates that." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16971 +#: guix-git/doc/guix.texi:17333 #, no-wrap msgid "" "(define %battery-alert-job\n" @@ -29488,7 +30087,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16973 +#: guix-git/doc/guix.texi:17335 #, no-wrap msgid "" " (define %min-level 20)\n" @@ -29496,7 +30095,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16984 +#: guix-git/doc/guix.texi:17346 #, no-wrap msgid "" " (setenv \"LC_ALL\" \"C\") ;ensure English output\n" @@ -29512,106 +30111,106 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16989 +#: guix-git/doc/guix.texi:17351 msgid "@xref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron}, for more information on mcron job specifications. Below is the reference of the mcron service." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16992 +#: guix-git/doc/guix.texi:17354 msgid "On a running system, you can use the @code{schedule} action of the service to visualize the mcron jobs that will be executed next:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16995 +#: guix-git/doc/guix.texi:17357 #, no-wrap msgid "# herd schedule mcron\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17000 +#: guix-git/doc/guix.texi:17362 msgid "The example above lists the next five tasks that will be executed, but you can also specify the number of tasks to display:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:17003 +#: guix-git/doc/guix.texi:17365 #, no-wrap msgid "# herd schedule mcron 10\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17005 +#: guix-git/doc/guix.texi:17367 #, no-wrap msgid "{Scheme Variable} mcron-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17008 +#: guix-git/doc/guix.texi:17370 msgid "This is the type of the @code{mcron} service, whose value is an @code{mcron-configuration} object." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17013 guix-git/doc/guix.texi:37428 +#: guix-git/doc/guix.texi:17375 guix-git/doc/guix.texi:37918 msgid "This service type can be the target of a service extension that provides additional job specifications (@pxref{Service Composition}). In other words, it is possible to define services that provide additional mcron jobs to run." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17015 +#: guix-git/doc/guix.texi:17377 #, no-wrap msgid "{Data Type} mcron-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17017 guix-git/doc/guix.texi:37432 +#: guix-git/doc/guix.texi:17379 guix-git/doc/guix.texi:37922 msgid "Data type representing the configuration of mcron." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17019 guix-git/doc/guix.texi:37434 +#: guix-git/doc/guix.texi:17381 guix-git/doc/guix.texi:37924 #, no-wrap msgid "@code{mcron} (default: @var{mcron})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17021 guix-git/doc/guix.texi:37436 +#: guix-git/doc/guix.texi:17383 guix-git/doc/guix.texi:37926 msgid "The mcron package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17022 guix-git/doc/guix.texi:17091 -#: guix-git/doc/guix.texi:37437 +#: guix-git/doc/guix.texi:17384 guix-git/doc/guix.texi:17453 +#: guix-git/doc/guix.texi:37927 #, no-wrap msgid "jobs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17026 guix-git/doc/guix.texi:37441 +#: guix-git/doc/guix.texi:17388 guix-git/doc/guix.texi:37931 msgid "This is a list of gexps (@pxref{G-Expressions}), where each gexp corresponds to an mcron job specification (@pxref{Syntax, mcron job specifications,, mcron, GNU@tie{}mcron})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17033 +#: guix-git/doc/guix.texi:17395 #, no-wrap msgid "rottlog" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17034 +#: guix-git/doc/guix.texi:17396 #, no-wrap msgid "log rotation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17041 +#: guix-git/doc/guix.texi:17403 msgid "Log files such as those found in @file{/var/log} tend to grow endlessly, so it's a good idea to @dfn{rotate} them once in a while---i.e., archive their contents in separate files, possibly compressed. The @code{(gnu services admin)} module provides an interface to GNU@tie{}Rot[t]log, a log rotation tool (@pxref{Top,,, rottlog, GNU Rot[t]log Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17047 +#: guix-git/doc/guix.texi:17409 msgid "This service is part of @code{%base-services}, and thus enabled by default, with the default settings, for commonly encountered log files. The example below shows how to extend it with an additional @dfn{rotation}, should you need to do that (usually, services that produce log files already take care of that):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17051 +#: guix-git/doc/guix.texi:17413 #, no-wrap msgid "" "(use-modules (guix) (gnu))\n" @@ -29620,7 +30219,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17055 +#: guix-git/doc/guix.texi:17417 #, no-wrap msgid "" "(define my-log-files\n" @@ -29630,7 +30229,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17064 +#: guix-git/doc/guix.texi:17426 #, no-wrap msgid "" "(operating-system\n" @@ -29644,93 +30243,93 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17066 +#: guix-git/doc/guix.texi:17428 #, no-wrap msgid "{Scheme Variable} rottlog-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17069 +#: guix-git/doc/guix.texi:17431 msgid "This is the type of the Rottlog service, whose value is a @code{rottlog-configuration} object." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17072 +#: guix-git/doc/guix.texi:17434 msgid "Other services can extend this one with new @code{log-rotation} objects (see below), thereby augmenting the set of files to be rotated." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17075 +#: guix-git/doc/guix.texi:17437 msgid "This service type can define mcron jobs (@pxref{Scheduled Job Execution}) to run the rottlog service." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17077 +#: guix-git/doc/guix.texi:17439 #, no-wrap msgid "{Data Type} rottlog-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17079 +#: guix-git/doc/guix.texi:17441 msgid "Data type representing the configuration of rottlog." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17081 +#: guix-git/doc/guix.texi:17443 #, no-wrap msgid "@code{rottlog} (default: @code{rottlog})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17083 +#: guix-git/doc/guix.texi:17445 msgid "The Rottlog package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17084 +#: guix-git/doc/guix.texi:17446 #, no-wrap msgid "@code{rc-file} (default: @code{(file-append rottlog \"/etc/rc\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17087 +#: guix-git/doc/guix.texi:17449 msgid "The Rottlog configuration file to use (@pxref{Mandatory RC Variables,,, rottlog, GNU Rot[t]log Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17088 +#: guix-git/doc/guix.texi:17450 #, no-wrap msgid "@code{rotations} (default: @code{%default-rotations})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17090 +#: guix-git/doc/guix.texi:17452 msgid "A list of @code{log-rotation} objects as defined below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17094 +#: guix-git/doc/guix.texi:17456 msgid "This is a list of gexps where each gexp corresponds to an mcron job specification (@pxref{Scheduled Job Execution})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17097 +#: guix-git/doc/guix.texi:17459 #, no-wrap msgid "{Data Type} log-rotation" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17099 +#: guix-git/doc/guix.texi:17461 msgid "Data type representing the rotation of a group of log files." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17103 +#: guix-git/doc/guix.texi:17465 msgid "Taking an example from the Rottlog manual (@pxref{Period Related File Examples,,, rottlog, GNU Rot[t]log Manual}), a log rotation might be defined like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17112 +#: guix-git/doc/guix.texi:17474 #, no-wrap msgid "" "(log-rotation\n" @@ -29743,121 +30342,115 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17115 +#: guix-git/doc/guix.texi:17477 msgid "The list of fields is as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17117 +#: guix-git/doc/guix.texi:17479 #, no-wrap msgid "@code{frequency} (default: @code{'weekly})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17119 +#: guix-git/doc/guix.texi:17481 msgid "The log rotation frequency, a symbol." msgstr "" -#. type: code{#1} -#: guix-git/doc/guix.texi:17120 -#, no-wrap -msgid "files" -msgstr "" - #. type: table -#: guix-git/doc/guix.texi:17122 +#: guix-git/doc/guix.texi:17484 msgid "The list of files or file glob patterns to rotate." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17123 +#: guix-git/doc/guix.texi:17485 #, no-wrap msgid "@code{options} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17126 +#: guix-git/doc/guix.texi:17488 msgid "The list of rottlog options for this rotation (@pxref{Configuration parameters,,, rottlog, GNU Rot[t]lg Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17127 +#: guix-git/doc/guix.texi:17489 #, no-wrap msgid "@code{post-rotate} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17129 +#: guix-git/doc/guix.texi:17491 msgid "Either @code{#f} or a gexp to execute once the rotation has completed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17132 +#: guix-git/doc/guix.texi:17494 #, no-wrap msgid "{Scheme Variable} %default-rotations" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17135 +#: guix-git/doc/guix.texi:17497 msgid "Specifies weekly rotation of @code{%rotated-files} and of @file{/var/log/guix-daemon.log}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17137 +#: guix-git/doc/guix.texi:17499 #, no-wrap msgid "{Scheme Variable} %rotated-files" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17141 +#: guix-git/doc/guix.texi:17503 msgid "The list of syslog-controlled files to be rotated. By default it is: @code{'(\"/var/log/messages\" \"/var/log/secure\" \"/var/log/debug\" \\ \"/var/log/maillog\")}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17154 +#: guix-git/doc/guix.texi:17516 msgid "The @code{(gnu services networking)} module provides services to configure network interfaces and set up networking on your machine. Those services provide different ways for you to set up your machine: by declaring a static network configuration, by running a Dynamic Host Configuration Protocol (DHCP) client, or by running daemons such as NetworkManager and Connman that automate the whole process, automatically adapt to connectivity changes, and provide a high-level user interface." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17160 +#: guix-git/doc/guix.texi:17522 msgid "On a laptop, NetworkManager and Connman are by far the most convenient options, which is why the default desktop services include NetworkManager (@pxref{Desktop Services, @code{%desktop-services}}). For a server, or for a virtual machine or a container, static network configuration or a simple DHCP client are often more appropriate." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17163 +#: guix-git/doc/guix.texi:17525 msgid "This section describes the various network setup services available, starting with static network configuration." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17164 +#: guix-git/doc/guix.texi:17526 #, no-wrap msgid "{Scheme Variable} static-networking-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17169 +#: guix-git/doc/guix.texi:17531 msgid "This is the type for statically-configured network interfaces. Its value must be a list of @code{static-networking} records. Each of them declares a set of @dfn{addresses}, @dfn{routes}, and @dfn{links}, as show below." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17170 +#: guix-git/doc/guix.texi:17532 #, no-wrap msgid "network interface controller (NIC)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17171 +#: guix-git/doc/guix.texi:17533 #, no-wrap msgid "NIC, networking interface controller" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17174 +#: guix-git/doc/guix.texi:17536 msgid "Here is the simplest configuration, with only one network interface controller (NIC) and only IPv4 connectivity:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17188 +#: guix-git/doc/guix.texi:17550 #, no-wrap msgid "" ";; Static networking for one NIC, IPv4-only.\n" @@ -29875,29 +30468,28 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17197 +#: guix-git/doc/guix.texi:17559 msgid "The snippet above can be added to the @code{services} field of your operating system configuration (@pxref{Using the Configuration System}). It will configure your machine to have 10.0.2.15 as its IP address, with a 24-bit netmask for the local network---meaning that any 10.0.2.@var{x} address is on the local area network (LAN). Traffic to addresses outside the local network is routed @i{via} 10.0.2.2. Host names are resolved by sending domain name system (DNS) queries to 10.0.2.3." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17199 -#, fuzzy, no-wrap -#| msgid "System Configuration" +#: guix-git/doc/guix.texi:17561 +#, no-wrap msgid "{Data Type} static-networking" -msgstr "Nastavenie systému" +msgstr "{Druh údajov} static-networking" #. type: deftp -#: guix-git/doc/guix.texi:17201 +#: guix-git/doc/guix.texi:17563 msgid "This is the data type representing a static network configuration." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17205 +#: guix-git/doc/guix.texi:17567 msgid "As an example, here is how you would declare the configuration of a machine with a single network interface controller (NIC) available as @code{eno1}, and with one IPv4 and one IPv6 address:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17222 +#: guix-git/doc/guix.texi:17584 #, no-wrap msgid "" ";; Network configuration for one NIC, IPv4 + IPv6.\n" @@ -29918,12 +30510,12 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17228 +#: guix-git/doc/guix.texi:17590 msgid "If you are familiar with the @command{ip} command of the @uref{https://wiki.linuxfoundation.org/networking/iproute2, @code{iproute2} package} found on Linux-based systems, the declaration above is equivalent to typing:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:17234 +#: guix-git/doc/guix.texi:17596 #, no-wrap msgid "" "ip address add 10.0.2.15/24 dev eno1\n" @@ -29933,355 +30525,353 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17239 +#: guix-git/doc/guix.texi:17601 msgid "Run @command{man 8 ip} for more info. Venerable GNU/Linux users will certainly know how to do it with @command{ifconfig} and @command{route}, but we'll spare you that." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17241 +#: guix-git/doc/guix.texi:17603 msgid "The available fields of this data type are as follows:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17243 +#: guix-git/doc/guix.texi:17605 #, no-wrap msgid "addresses" -msgstr "" +msgstr "adresy" #. type: itemx -#: guix-git/doc/guix.texi:17244 +#: guix-git/doc/guix.texi:17606 #, no-wrap msgid "@code{links} (default: @code{'()})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:17245 +#: guix-git/doc/guix.texi:17607 #, no-wrap msgid "@code{routes} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17248 +#: guix-git/doc/guix.texi:17610 msgid "The list of @code{network-address}, @code{network-link}, and @code{network-route} records for this network (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17249 +#: guix-git/doc/guix.texi:17611 #, no-wrap msgid "@code{name-servers} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17252 +#: guix-git/doc/guix.texi:17614 msgid "The list of IP addresses (strings) of domain name servers. These IP addresses go to @file{/etc/resolv.conf}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17253 +#: guix-git/doc/guix.texi:17615 #, no-wrap msgid "@code{provision} (default: @code{'(networking)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17256 +#: guix-git/doc/guix.texi:17618 msgid "If true, this should be a list of symbols for the Shepherd service corresponding to this network configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17257 +#: guix-git/doc/guix.texi:17619 #, no-wrap msgid "@code{requirement} (default @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17259 +#: guix-git/doc/guix.texi:17621 msgid "The list of Shepherd services depended on." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17262 +#: guix-git/doc/guix.texi:17624 #, no-wrap msgid "{Data Type} network-address" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17265 +#: guix-git/doc/guix.texi:17627 msgid "This is the data type representing the IP address of a network interface." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17270 +#: guix-git/doc/guix.texi:17632 msgid "The name of the network interface for this address---e.g., @code{\"eno1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17271 +#: guix-git/doc/guix.texi:17633 #, no-wrap msgid "value" -msgstr "" +msgstr "hodnota" #. type: table -#: guix-git/doc/guix.texi:17275 +#: guix-git/doc/guix.texi:17637 msgid "The actual IP address and network mask, in @uref{https://en.wikipedia.org/wiki/CIDR#CIDR_notation, @acronym{CIDR, Classless Inter-Domain Routing} notation}, as a string." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17279 +#: guix-git/doc/guix.texi:17641 msgid "For example, @code{\"10.0.2.15/24\"} denotes IPv4 address 10.0.2.15 on a 24-bit sub-network---all 10.0.2.@var{x} addresses are on the same local network." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17280 +#: guix-git/doc/guix.texi:17642 #, no-wrap msgid "ipv6?" -msgstr "" +msgstr "ipv6?" #. type: table -#: guix-git/doc/guix.texi:17283 +#: guix-git/doc/guix.texi:17645 msgid "Whether @code{value} denotes an IPv6 address. By default this is automatically determined." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17286 +#: guix-git/doc/guix.texi:17648 #, no-wrap msgid "{Data Type} network-route" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17288 +#: guix-git/doc/guix.texi:17650 msgid "This is the data type representing a network route." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17290 -#, fuzzy, no-wrap -#| msgid "description" +#: guix-git/doc/guix.texi:17652 +#, no-wrap msgid "destination" -msgstr "description" +msgstr "destination" #. type: table -#: guix-git/doc/guix.texi:17293 +#: guix-git/doc/guix.texi:17655 msgid "The route destination (a string), either an IP address or @code{\"default\"} to denote the default route." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17294 +#: guix-git/doc/guix.texi:17656 #, no-wrap msgid "@code{source} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17296 +#: guix-git/doc/guix.texi:17658 msgid "The route source." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17297 guix-git/doc/guix.texi:34761 +#: guix-git/doc/guix.texi:17659 guix-git/doc/guix.texi:35200 #, no-wrap msgid "@code{device} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17299 +#: guix-git/doc/guix.texi:17661 msgid "The device used for this route---e.g., @code{\"eno2\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17300 +#: guix-git/doc/guix.texi:17662 #, no-wrap msgid "@code{ipv6?} (default: auto)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17303 +#: guix-git/doc/guix.texi:17665 msgid "Whether this is an IPv6 route. By default this is automatically determined based on @code{destination} or @code{gateway}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17304 +#: guix-git/doc/guix.texi:17666 #, no-wrap msgid "@code{gateway} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17306 +#: guix-git/doc/guix.texi:17668 msgid "IP address (a string) through which traffic is routed." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17309 -#, fuzzy, no-wrap -#| msgid "System Configuration" +#: guix-git/doc/guix.texi:17671 +#, no-wrap msgid "{Data Type} network-link" -msgstr "Nastavenie systému" +msgstr "{Druh údajov} network-link" #. type: deftp -#: guix-git/doc/guix.texi:17312 +#: guix-git/doc/guix.texi:17674 msgid "Data type for a network link (@pxref{Link,,, guile-netlink, Guile-Netlink Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17316 +#: guix-git/doc/guix.texi:17678 msgid "The name of the link---e.g., @code{\"v0p0\"}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17319 +#: guix-git/doc/guix.texi:17681 msgid "A symbol denoting the type of the link---e.g., @code{'veth}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17320 +#: guix-git/doc/guix.texi:17682 #, no-wrap msgid "arguments" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17322 +#: guix-git/doc/guix.texi:17684 msgid "List of arguments for this type of link." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17325 +#: guix-git/doc/guix.texi:17687 #, no-wrap msgid "loopback device" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17326 +#: guix-git/doc/guix.texi:17688 #, no-wrap msgid "{Scheme Variable} %loopback-static-networking" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17330 +#: guix-git/doc/guix.texi:17692 msgid "This is the @code{static-networking} record representing the ``loopback device'', @code{lo}, for IP addresses 127.0.0.1 and ::1, and providing the @code{loopback} Shepherd service." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17332 +#: guix-git/doc/guix.texi:17694 #, no-wrap msgid "networking, with QEMU" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17333 +#: guix-git/doc/guix.texi:17695 #, no-wrap msgid "QEMU, networking" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17334 +#: guix-git/doc/guix.texi:17696 #, no-wrap msgid "{Scheme Variable} %qemu-static-networking" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17338 +#: guix-git/doc/guix.texi:17700 msgid "This is the @code{static-networking} record representing network setup when using QEMU's user-mode network stack on @code{eth0} (@pxref{Using the user mode network stack,,, QEMU, QEMU Documentation})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17340 +#: guix-git/doc/guix.texi:17702 #, no-wrap msgid "DHCP, networking service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17341 +#: guix-git/doc/guix.texi:17703 #, no-wrap msgid "{Scheme Variable} dhcp-client-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17345 +#: guix-git/doc/guix.texi:17707 msgid "This is the type of services that run @var{dhcp}, a Dynamic Host Configuration Protocol (DHCP) client, on all the non-loopback network interfaces. Its value is the DHCP client package to use, @code{isc-dhcp} by default." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17347 +#: guix-git/doc/guix.texi:17709 #, no-wrap msgid "NetworkManager" -msgstr "" +msgstr "NetworkManager" #. type: defvr -#: guix-git/doc/guix.texi:17349 +#: guix-git/doc/guix.texi:17711 #, no-wrap msgid "{Scheme Variable} network-manager-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17354 +#: guix-git/doc/guix.texi:17716 msgid "This is the service type for the @uref{https://wiki.gnome.org/Projects/NetworkManager, NetworkManager} service. The value for this service type is a @code{network-manager-configuration} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17357 guix-git/doc/guix.texi:17509 -#: guix-git/doc/guix.texi:17538 +#: guix-git/doc/guix.texi:17719 guix-git/doc/guix.texi:17871 +#: guix-git/doc/guix.texi:17900 msgid "This service is part of @code{%desktop-services} (@pxref{Desktop Services})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17359 +#: guix-git/doc/guix.texi:17721 #, no-wrap msgid "{Data Type} network-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17361 +#: guix-git/doc/guix.texi:17723 msgid "Data type representing the configuration of NetworkManager." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17363 +#: guix-git/doc/guix.texi:17725 #, no-wrap msgid "@code{network-manager} (default: @code{network-manager})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17365 +#: guix-git/doc/guix.texi:17727 msgid "The NetworkManager package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17366 +#: guix-git/doc/guix.texi:17728 #, no-wrap msgid "@code{dns} (default: @code{\"default\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17369 +#: guix-git/doc/guix.texi:17731 msgid "Processing mode for DNS, which affects how NetworkManager uses the @code{resolv.conf} configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17374 +#: guix-git/doc/guix.texi:17736 msgid "NetworkManager will update @code{resolv.conf} to reflect the nameservers provided by currently active connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17375 +#: guix-git/doc/guix.texi:17737 #, no-wrap msgid "dnsmasq" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17379 +#: guix-git/doc/guix.texi:17741 msgid "NetworkManager will run @code{dnsmasq} as a local caching nameserver, using a @dfn{conditional forwarding} configuration if you are connected to a VPN, and then update @code{resolv.conf} to point to the local nameserver." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17385 +#: guix-git/doc/guix.texi:17747 msgid "With this setting, you can share your network connection. For example when you want to share your network connection to another laptop @i{via} an Ethernet cable, you can open @command{nm-connection-editor} and configure the Wired connection's method for IPv4 and IPv6 to be ``Shared to other computers'' and reestablish the connection (or reboot)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17392 +#: guix-git/doc/guix.texi:17754 msgid "You can also set up a @dfn{host-to-guest connection} to QEMU VMs (@pxref{Installing Guix in a VM}). With a host-to-guest connection, you can e.g.@: access a Web server running on the VM (@pxref{Web Services}) from a Web browser on your host system, or connect to the VM @i{via} SSH (@pxref{Networking Services, @code{openssh-service-type}}). To set up a host-to-guest connection, run this command once:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:17399 +#: guix-git/doc/guix.texi:17761 #, no-wrap msgid "" "nmcli connection add type tun \\\n" @@ -30292,50 +30882,50 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17404 +#: guix-git/doc/guix.texi:17766 msgid "Then each time you launch your QEMU VM (@pxref{Running Guix in a VM}), pass @option{-nic tap,ifname=tap0,script=no,downscript=no} to @command{qemu-system-...}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17407 +#: guix-git/doc/guix.texi:17769 msgid "NetworkManager will not modify @code{resolv.conf}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17409 +#: guix-git/doc/guix.texi:17771 #, no-wrap msgid "@code{vpn-plugins} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17413 +#: guix-git/doc/guix.texi:17775 msgid "This is the list of available plugins for virtual private networks (VPNs). An example of this is the @code{network-manager-openvpn} package, which allows NetworkManager to manage VPNs @i{via} OpenVPN." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17417 +#: guix-git/doc/guix.texi:17779 #, no-wrap msgid "Connman" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17418 +#: guix-git/doc/guix.texi:17780 #, no-wrap msgid "{Scheme Variable} connman-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17421 +#: guix-git/doc/guix.texi:17783 msgid "This is the service type to run @url{https://01.org/connman,Connman}, a network connection manager." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17424 +#: guix-git/doc/guix.texi:17786 msgid "Its value must be an @code{connman-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17429 +#: guix-git/doc/guix.texi:17791 #, no-wrap msgid "" "(service connman-service-type\n" @@ -30344,311 +30934,311 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17432 +#: guix-git/doc/guix.texi:17794 msgid "See below for details about @code{connman-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17434 +#: guix-git/doc/guix.texi:17796 #, no-wrap msgid "{Data Type} connman-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17436 +#: guix-git/doc/guix.texi:17798 msgid "Data Type representing the configuration of connman." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17438 +#: guix-git/doc/guix.texi:17800 #, no-wrap msgid "@code{connman} (default: @var{connman})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17440 +#: guix-git/doc/guix.texi:17802 msgid "The connman package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17441 +#: guix-git/doc/guix.texi:17803 #, no-wrap msgid "@code{disable-vpn?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17443 +#: guix-git/doc/guix.texi:17805 msgid "When true, disable connman's vpn plugin." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17446 +#: guix-git/doc/guix.texi:17808 #, no-wrap msgid "WPA Supplicant" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17447 +#: guix-git/doc/guix.texi:17809 #, no-wrap msgid "{Scheme Variable} wpa-supplicant-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17451 +#: guix-git/doc/guix.texi:17813 msgid "This is the service type to run @url{https://w1.fi/wpa_supplicant/,WPA supplicant}, an authentication daemon required to authenticate against encrypted WiFi or ethernet networks." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17453 +#: guix-git/doc/guix.texi:17815 #, no-wrap msgid "{Data Type} wpa-supplicant-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17455 +#: guix-git/doc/guix.texi:17817 msgid "Data type representing the configuration of WPA Supplicant." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17457 guix-git/doc/guix.texi:32945 +#: guix-git/doc/guix.texi:17819 guix-git/doc/guix.texi:33310 msgid "It takes the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17459 +#: guix-git/doc/guix.texi:17821 #, no-wrap msgid "@code{wpa-supplicant} (default: @code{wpa-supplicant})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17461 +#: guix-git/doc/guix.texi:17823 msgid "The WPA Supplicant package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17462 +#: guix-git/doc/guix.texi:17824 #, no-wrap msgid "@code{requirement} (default: @code{'(user-processes loopback syslogd)}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17464 +#: guix-git/doc/guix.texi:17826 msgid "List of services that should be started before WPA Supplicant starts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17465 +#: guix-git/doc/guix.texi:17827 #, no-wrap msgid "@code{dbus?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17467 +#: guix-git/doc/guix.texi:17829 msgid "Whether to listen for requests on D-Bus." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17468 +#: guix-git/doc/guix.texi:17830 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/wpa_supplicant.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17470 +#: guix-git/doc/guix.texi:17832 msgid "Where to store the PID file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17471 guix-git/doc/guix.texi:31246 -#: guix-git/doc/guix.texi:31388 +#: guix-git/doc/guix.texi:17833 guix-git/doc/guix.texi:31611 +#: guix-git/doc/guix.texi:31753 #, no-wrap msgid "@code{interface} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17474 +#: guix-git/doc/guix.texi:17836 msgid "If this is set, it must specify the name of a network interface that WPA supplicant will control." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17475 guix-git/doc/guix.texi:17591 -#: guix-git/doc/guix.texi:22879 +#: guix-git/doc/guix.texi:17837 guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:23241 #, no-wrap msgid "@code{config-file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17477 +#: guix-git/doc/guix.texi:17839 msgid "Optional configuration file to use." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17480 +#: guix-git/doc/guix.texi:17842 msgid "List of additional command-line arguments to pass to the daemon." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17483 +#: guix-git/doc/guix.texi:17845 #, no-wrap msgid "wicd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17486 +#: guix-git/doc/guix.texi:17848 #, no-wrap msgid "network management" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17487 +#: guix-git/doc/guix.texi:17849 #, no-wrap msgid "{Scheme Procedure} wicd-service [#:wicd @var{wicd}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17490 +#: guix-git/doc/guix.texi:17852 msgid "Return a service that runs @url{https://launchpad.net/wicd,Wicd}, a network management daemon that aims to simplify wired and wireless networking." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17495 +#: guix-git/doc/guix.texi:17857 msgid "This service adds the @var{wicd} package to the global profile, providing several commands to interact with the daemon and configure networking: @command{wicd-client}, a graphical user interface, and the @command{wicd-cli} and @command{wicd-curses} user interfaces." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17497 +#: guix-git/doc/guix.texi:17859 #, no-wrap msgid "ModemManager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17500 +#: guix-git/doc/guix.texi:17862 msgid "Some networking devices such as modems require special care, and this is what the services below focus on." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17501 +#: guix-git/doc/guix.texi:17863 #, no-wrap msgid "{Scheme Variable} modem-manager-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17506 +#: guix-git/doc/guix.texi:17868 msgid "This is the service type for the @uref{https://wiki.gnome.org/Projects/ModemManager, ModemManager} service. The value for this service type is a @code{modem-manager-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17511 +#: guix-git/doc/guix.texi:17873 #, no-wrap msgid "{Data Type} modem-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17513 +#: guix-git/doc/guix.texi:17875 msgid "Data type representing the configuration of ModemManager." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17515 +#: guix-git/doc/guix.texi:17877 #, no-wrap msgid "@code{modem-manager} (default: @code{modem-manager})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17517 +#: guix-git/doc/guix.texi:17879 msgid "The ModemManager package to use." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17521 +#: guix-git/doc/guix.texi:17883 #, no-wrap msgid "USB_ModeSwitch" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17522 +#: guix-git/doc/guix.texi:17884 #, no-wrap msgid "Modeswitching" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17524 +#: guix-git/doc/guix.texi:17886 #, no-wrap msgid "{Scheme Variable} usb-modeswitch-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17529 +#: guix-git/doc/guix.texi:17891 msgid "This is the service type for the @uref{https://www.draisberghof.de/usb_modeswitch/, USB_ModeSwitch} service. The value for this service type is a @code{usb-modeswitch-configuration} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17535 +#: guix-git/doc/guix.texi:17897 msgid "When plugged in, some USB modems (and other USB devices) initially present themselves as a read-only storage medium and not as a modem. They need to be @dfn{modeswitched} before they are usable. The USB_ModeSwitch service type installs udev rules to automatically modeswitch these devices when they are plugged in." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17540 +#: guix-git/doc/guix.texi:17902 #, no-wrap msgid "{Data Type} usb-modeswitch-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17542 +#: guix-git/doc/guix.texi:17904 msgid "Data type representing the configuration of USB_ModeSwitch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17544 +#: guix-git/doc/guix.texi:17906 #, no-wrap msgid "@code{usb-modeswitch} (default: @code{usb-modeswitch})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17546 +#: guix-git/doc/guix.texi:17908 msgid "The USB_ModeSwitch package providing the binaries for modeswitching." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17547 +#: guix-git/doc/guix.texi:17909 #, no-wrap msgid "@code{usb-modeswitch-data} (default: @code{usb-modeswitch-data})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17550 +#: guix-git/doc/guix.texi:17912 msgid "The package providing the device data and udev rules file used by USB_ModeSwitch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17551 +#: guix-git/doc/guix.texi:17913 #, no-wrap msgid "@code{config-file} (default: @code{#~(string-append #$usb-modeswitch:dispatcher \"/etc/usb_modeswitch.conf\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17556 +#: guix-git/doc/guix.texi:17918 msgid "Which config file to use for the USB_ModeSwitch dispatcher. By default the config file shipped with USB_ModeSwitch is used which disables logging to @file{/var/log} among other default settings. If set to @code{#f}, no config file is used." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17570 +#: guix-git/doc/guix.texi:17932 msgid "The @code{(gnu services networking)} module discussed in the previous section provides services for more advanced setups: providing a DHCP service for others to use, filtering packets with iptables or nftables, running a WiFi access point with @command{hostapd}, running the @command{inetd} ``superdaemon'', and more. This section describes those." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17571 +#: guix-git/doc/guix.texi:17933 #, no-wrap msgid "{Scheme Procedure} dhcpd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17575 +#: guix-git/doc/guix.texi:17937 msgid "This type defines a service that runs a DHCP daemon. To create a service of this type, you must supply a @code{}. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17581 +#: guix-git/doc/guix.texi:17943 #, no-wrap msgid "" "(service dhcpd-service-type\n" @@ -30658,96 +31248,96 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17584 +#: guix-git/doc/guix.texi:17946 #, no-wrap msgid "{Data Type} dhcpd-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17586 +#: guix-git/doc/guix.texi:17948 #, no-wrap msgid "@code{package} (default: @code{isc-dhcp})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17591 +#: guix-git/doc/guix.texi:17953 msgid "The package that provides the DHCP daemon. This package is expected to provide the daemon at @file{sbin/dhcpd} relative to its output directory. The default package is the @uref{https://www.isc.org/products/DHCP, ISC's DHCP server}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17596 +#: guix-git/doc/guix.texi:17958 msgid "The configuration file to use. This is required. It will be passed to @code{dhcpd} via its @code{-cf} option. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). See @code{man dhcpd.conf} for details on the configuration file syntax." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17596 +#: guix-git/doc/guix.texi:17958 #, no-wrap msgid "@code{version} (default: @code{\"4\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17601 +#: guix-git/doc/guix.texi:17963 msgid "The DHCP version to use. The ISC DHCP server supports the values ``4'', ``6'', and ``4o6''. These correspond to the @code{dhcpd} program options @code{-4}, @code{-6}, and @code{-4o6}. See @code{man dhcpd} for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17601 +#: guix-git/doc/guix.texi:17963 #, no-wrap msgid "@code{run-directory} (default: @code{\"/run/dhcpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17604 +#: guix-git/doc/guix.texi:17966 msgid "The run directory to use. At service activation time, this directory will be created if it does not exist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17604 +#: guix-git/doc/guix.texi:17966 #, no-wrap msgid "@code{pid-file} (default: @code{\"/run/dhcpd/dhcpd.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17607 +#: guix-git/doc/guix.texi:17969 msgid "The PID file to use. This corresponds to the @code{-pf} option of @code{dhcpd}. See @code{man dhcpd} for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17607 +#: guix-git/doc/guix.texi:17969 #, no-wrap msgid "@code{interfaces} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17613 +#: guix-git/doc/guix.texi:17975 msgid "The names of the network interfaces on which dhcpd should listen for broadcasts. If this list is not empty, then its elements (which must be strings) will be appended to the @code{dhcpd} invocation when starting the daemon. It may not be necessary to explicitly specify any interfaces here; see @code{man dhcpd} for details." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17616 +#: guix-git/doc/guix.texi:17978 #, no-wrap msgid "hostapd service, for Wi-Fi access points" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17617 +#: guix-git/doc/guix.texi:17979 #, no-wrap msgid "Wi-Fi access points, hostapd service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17618 +#: guix-git/doc/guix.texi:17980 #, no-wrap msgid "{Scheme Variable} hostapd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17623 +#: guix-git/doc/guix.texi:17985 msgid "This is the service type to run the @uref{https://w1.fi/hostapd/, hostapd} daemon to set up WiFi (IEEE 802.11) access points and authentication servers. Its associated value must be a @code{hostapd-configuration} as shown below:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17631 +#: guix-git/doc/guix.texi:17993 #, no-wrap msgid "" ";; Use wlan1 to run the access point for \"My Network\".\n" @@ -30759,129 +31349,129 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17634 +#: guix-git/doc/guix.texi:17996 #, no-wrap msgid "{Data Type} hostapd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17637 +#: guix-git/doc/guix.texi:17999 msgid "This data type represents the configuration of the hostapd service, with the following fields:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17639 +#: guix-git/doc/guix.texi:18001 #, no-wrap msgid "@code{package} (default: @code{hostapd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17641 +#: guix-git/doc/guix.texi:18003 msgid "The hostapd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17642 +#: guix-git/doc/guix.texi:18004 #, no-wrap msgid "@code{interface} (default: @code{\"wlan0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17644 +#: guix-git/doc/guix.texi:18006 msgid "The network interface to run the WiFi access point." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17645 +#: guix-git/doc/guix.texi:18007 #, no-wrap msgid "ssid" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17648 +#: guix-git/doc/guix.texi:18010 msgid "The SSID (@dfn{service set identifier}), a string that identifies this network." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17649 +#: guix-git/doc/guix.texi:18011 #, no-wrap msgid "@code{broadcast-ssid?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17651 +#: guix-git/doc/guix.texi:18013 msgid "Whether to broadcast this SSID." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17652 +#: guix-git/doc/guix.texi:18014 #, no-wrap msgid "@code{channel} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17654 +#: guix-git/doc/guix.texi:18016 msgid "The WiFi channel to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17655 +#: guix-git/doc/guix.texi:18017 #, no-wrap msgid "@code{driver} (default: @code{\"nl80211\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17659 +#: guix-git/doc/guix.texi:18021 msgid "The driver interface type. @code{\"nl80211\"} is used with all Linux mac80211 drivers. Use @code{\"none\"} if building hostapd as a standalone RADIUS server that does # not control any wireless/wired driver." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17660 guix-git/doc/guix.texi:23728 -#: guix-git/doc/guix.texi:26807 +#: guix-git/doc/guix.texi:18022 guix-git/doc/guix.texi:24090 +#: guix-git/doc/guix.texi:27144 #, no-wrap msgid "@code{extra-settings} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17664 +#: guix-git/doc/guix.texi:18026 msgid "Extra settings to append as-is to the hostapd configuration file. See @uref{https://w1.fi/cgit/hostap/plain/hostapd/hostapd.conf} for the configuration file reference." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17667 +#: guix-git/doc/guix.texi:18029 #, no-wrap msgid "{Scheme Variable} simulated-wifi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17674 +#: guix-git/doc/guix.texi:18036 msgid "This is the type of a service to simulate WiFi networking, which can be useful in virtual machines for testing purposes. The service loads the Linux kernel @uref{https://www.kernel.org/doc/html/latest/networking/mac80211_hwsim/mac80211_hwsim.html, @code{mac80211_hwsim} module} and starts hostapd to create a pseudo WiFi network that can be seen on @code{wlan0}, by default." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17676 +#: guix-git/doc/guix.texi:18038 msgid "The service's value is a @code{hostapd-configuration} record." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17679 +#: guix-git/doc/guix.texi:18041 #, no-wrap msgid "iptables" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17680 +#: guix-git/doc/guix.texi:18042 #, no-wrap msgid "{Scheme Variable} iptables-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17686 +#: guix-git/doc/guix.texi:18048 msgid "This is the service type to set up an iptables configuration. iptables is a packet filtering framework supported by the Linux kernel. This service supports configuring iptables for both IPv4 and IPv6. A simple example configuration rejecting all incoming connections except those to the ssh port 22 is shown below." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17708 +#: guix-git/doc/guix.texi:18070 #, no-wrap msgid "" "(service iptables-service-type\n" @@ -30907,241 +31497,241 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17711 +#: guix-git/doc/guix.texi:18073 #, no-wrap msgid "{Data Type} iptables-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17713 +#: guix-git/doc/guix.texi:18075 msgid "The data type representing the configuration of iptables." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17715 +#: guix-git/doc/guix.texi:18077 #, no-wrap msgid "@code{iptables} (default: @code{iptables})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17718 +#: guix-git/doc/guix.texi:18080 msgid "The iptables package that provides @code{iptables-restore} and @code{ip6tables-restore}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17718 +#: guix-git/doc/guix.texi:18080 #, no-wrap msgid "@code{ipv4-rules} (default: @code{%iptables-accept-all-rules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17722 +#: guix-git/doc/guix.texi:18084 msgid "The iptables rules to use. It will be passed to @code{iptables-restore}. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17722 +#: guix-git/doc/guix.texi:18084 #, no-wrap msgid "@code{ipv6-rules} (default: @code{%iptables-accept-all-rules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17726 +#: guix-git/doc/guix.texi:18088 msgid "The ip6tables rules to use. It will be passed to @code{ip6tables-restore}. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17729 +#: guix-git/doc/guix.texi:18091 #, no-wrap msgid "nftables" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17730 +#: guix-git/doc/guix.texi:18092 #, no-wrap msgid "{Scheme Variable} nftables-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17738 +#: guix-git/doc/guix.texi:18100 msgid "This is the service type to set up a nftables configuration. nftables is a netfilter project that aims to replace the existing iptables, ip6tables, arptables and ebtables framework. It provides a new packet filtering framework, a new user-space utility @command{nft}, and a compatibility layer for iptables. This service comes with a default ruleset @code{%default-nftables-ruleset} that rejecting all incoming connections except those to the ssh port 22. To use it, simply write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17741 +#: guix-git/doc/guix.texi:18103 #, no-wrap msgid "(service nftables-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17744 +#: guix-git/doc/guix.texi:18106 #, no-wrap msgid "{Data Type} nftables-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17746 +#: guix-git/doc/guix.texi:18108 msgid "The data type representing the configuration of nftables." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17748 +#: guix-git/doc/guix.texi:18110 #, no-wrap msgid "@code{package} (default: @code{nftables})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17750 +#: guix-git/doc/guix.texi:18112 msgid "The nftables package that provides @command{nft}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17750 +#: guix-git/doc/guix.texi:18112 #, no-wrap msgid "@code{ruleset} (default: @code{%default-nftables-ruleset})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17753 +#: guix-git/doc/guix.texi:18115 msgid "The nftables ruleset to use. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17756 +#: guix-git/doc/guix.texi:18118 #, no-wrap msgid "NTP (Network Time Protocol), service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17757 +#: guix-git/doc/guix.texi:18119 #, no-wrap msgid "ntpd, service for the Network Time Protocol daemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17758 +#: guix-git/doc/guix.texi:18120 #, no-wrap msgid "real time clock" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17759 +#: guix-git/doc/guix.texi:18121 #, no-wrap msgid "{Scheme Variable} ntp-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17763 +#: guix-git/doc/guix.texi:18125 msgid "This is the type of the service running the @uref{https://www.ntp.org, Network Time Protocol (NTP)} daemon, @command{ntpd}. The daemon will keep the system clock synchronized with that of the specified NTP servers." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17766 +#: guix-git/doc/guix.texi:18128 msgid "The value of this service is an @code{ntpd-configuration} object, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17768 +#: guix-git/doc/guix.texi:18130 #, no-wrap msgid "{Data Type} ntp-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17770 +#: guix-git/doc/guix.texi:18132 msgid "This is the data type for the NTP service configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17772 +#: guix-git/doc/guix.texi:18134 #, no-wrap msgid "@code{servers} (default: @code{%ntp-servers})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17776 +#: guix-git/doc/guix.texi:18138 msgid "This is the list of servers (@code{} records) with which @command{ntpd} will be synchronized. See the @code{ntp-server} data type definition below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17777 +#: guix-git/doc/guix.texi:18139 #, no-wrap msgid "@code{allow-large-adjustment?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17780 +#: guix-git/doc/guix.texi:18142 msgid "This determines whether @command{ntpd} is allowed to make an initial adjustment of more than 1,000 seconds." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17781 +#: guix-git/doc/guix.texi:18143 #, no-wrap msgid "@code{ntp} (default: @code{ntp})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17783 +#: guix-git/doc/guix.texi:18145 msgid "The NTP package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17786 +#: guix-git/doc/guix.texi:18148 #, no-wrap msgid "{Scheme Variable} %ntp-servers" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17789 +#: guix-git/doc/guix.texi:18151 msgid "List of host names used as the default NTP servers. These are servers of the @uref{https://www.ntppool.org/en/, NTP Pool Project}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17791 +#: guix-git/doc/guix.texi:18153 #, no-wrap msgid "{Data Type} ntp-server" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17793 +#: guix-git/doc/guix.texi:18155 msgid "The data type representing the configuration of a NTP server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17795 +#: guix-git/doc/guix.texi:18157 #, no-wrap msgid "@code{type} (default: @code{'server})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17798 +#: guix-git/doc/guix.texi:18160 msgid "The type of the NTP server, given as a symbol. One of @code{'pool}, @code{'server}, @code{'peer}, @code{'broadcast} or @code{'manycastclient}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17799 +#: guix-git/doc/guix.texi:18161 #, no-wrap msgid "address" -msgstr "" +msgstr "adresa" #. type: table -#: guix-git/doc/guix.texi:17801 +#: guix-git/doc/guix.texi:18163 msgid "The address of the server, as a string." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17802 guix-git/doc/guix.texi:33774 -#: guix-git/doc/guix.texi:33794 +#: guix-git/doc/guix.texi:18164 guix-git/doc/guix.texi:34211 +#: guix-git/doc/guix.texi:34231 #, no-wrap msgid "options" -msgstr "" +msgstr "options" #. type: table -#: guix-git/doc/guix.texi:17807 +#: guix-git/doc/guix.texi:18169 msgid "NTPD options to use with that specific server, given as a list of option names and/or of option names and values tuples. The following example define a server to use with the options @option{iburst} and @option{prefer}, as well as @option{version} 3 and a @option{maxpoll} time of 16 seconds." msgstr "" #. type: example -#: guix-git/doc/guix.texi:17813 +#: guix-git/doc/guix.texi:18175 #, no-wrap msgid "" "(ntp-server\n" @@ -31151,24 +31741,24 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17817 +#: guix-git/doc/guix.texi:18179 #, no-wrap msgid "OpenNTPD" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17818 +#: guix-git/doc/guix.texi:18180 #, no-wrap msgid "{Scheme Procedure} openntpd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17822 +#: guix-git/doc/guix.texi:18184 msgid "Run the @command{ntpd}, the Network Time Protocol (NTP) daemon, as implemented by @uref{http://www.openntpd.org, OpenNTPD}. The daemon will keep the system clock synchronized with that of the given servers." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17831 +#: guix-git/doc/guix.texi:18193 #, no-wrap msgid "" "(service\n" @@ -31182,134 +31772,134 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17835 +#: guix-git/doc/guix.texi:18197 #, no-wrap msgid "{Scheme Variable} %openntpd-servers" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17838 +#: guix-git/doc/guix.texi:18200 msgid "This variable is a list of the server addresses defined in @code{%ntp-servers}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17840 +#: guix-git/doc/guix.texi:18202 #, no-wrap msgid "{Data Type} openntpd-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17842 +#: guix-git/doc/guix.texi:18204 #, no-wrap msgid "@code{openntpd} (default: @code{(file-append openntpd \"/sbin/ntpd\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17844 +#: guix-git/doc/guix.texi:18206 msgid "The openntpd executable to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17844 +#: guix-git/doc/guix.texi:18206 #, no-wrap msgid "@code{listen-on} (default: @code{'(\"127.0.0.1\" \"::1\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17846 +#: guix-git/doc/guix.texi:18208 msgid "A list of local IP addresses or hostnames the ntpd daemon should listen on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17846 +#: guix-git/doc/guix.texi:18208 #, no-wrap msgid "@code{query-from} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17848 +#: guix-git/doc/guix.texi:18210 msgid "A list of local IP address the ntpd daemon should use for outgoing queries." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17848 +#: guix-git/doc/guix.texi:18210 #, no-wrap msgid "@code{sensor} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17853 +#: guix-git/doc/guix.texi:18215 msgid "Specify a list of timedelta sensor devices ntpd should use. @code{ntpd} will listen to each sensor that actually exists and ignore non-existent ones. See @uref{https://man.openbsd.org/ntpd.conf, upstream documentation} for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17853 +#: guix-git/doc/guix.texi:18215 #, no-wrap msgid "@code{server} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17855 +#: guix-git/doc/guix.texi:18217 msgid "Specify a list of IP addresses or hostnames of NTP servers to synchronize to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17855 +#: guix-git/doc/guix.texi:18217 #, no-wrap msgid "@code{servers} (default: @code{%openntp-servers})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17857 +#: guix-git/doc/guix.texi:18219 msgid "Specify a list of IP addresses or hostnames of NTP pools to synchronize to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17857 +#: guix-git/doc/guix.texi:18219 #, no-wrap msgid "@code{constraint-from} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17864 +#: guix-git/doc/guix.texi:18226 msgid "@code{ntpd} can be configured to query the ‘Date’ from trusted HTTPS servers via TLS. This time information is not used for precision but acts as an authenticated constraint, thereby reducing the impact of unauthenticated NTP man-in-the-middle attacks. Specify a list of URLs, IP addresses or hostnames of HTTPS servers to provide a constraint." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17864 +#: guix-git/doc/guix.texi:18226 #, no-wrap msgid "@code{constraints-from} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17868 +#: guix-git/doc/guix.texi:18230 msgid "As with constraint from, specify a list of URLs, IP addresses or hostnames of HTTPS servers to provide a constraint. Should the hostname resolve to multiple IP addresses, @code{ntpd} will calculate a median constraint from all of them." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17871 +#: guix-git/doc/guix.texi:18233 #, no-wrap msgid "inetd" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17872 +#: guix-git/doc/guix.texi:18234 #, no-wrap msgid "{Scheme variable} inetd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17877 +#: guix-git/doc/guix.texi:18239 msgid "This service runs the @command{inetd} (@pxref{inetd invocation,,, inetutils, GNU Inetutils}) daemon. @command{inetd} listens for connections on internet sockets, and lazily starts the specified server program when a connection is made on one of these sockets." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17883 +#: guix-git/doc/guix.texi:18245 msgid "The value of this service is an @code{inetd-configuration} object. The following example configures the @command{inetd} daemon to provide the built-in @command{echo} service, as well as an smtp service which forwards smtp traffic over ssh to a server @code{smtp-server} behind a gateway @code{hostname}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17906 +#: guix-git/doc/guix.texi:18268 #, no-wrap msgid "" "(service\n" @@ -31336,463 +31926,465 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17909 +#: guix-git/doc/guix.texi:18271 msgid "See below for more details about @code{inetd-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17911 +#: guix-git/doc/guix.texi:18273 #, no-wrap msgid "{Data Type} inetd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17913 +#: guix-git/doc/guix.texi:18275 msgid "Data type representing the configuration of @command{inetd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17915 +#: guix-git/doc/guix.texi:18277 #, no-wrap msgid "@code{program} (default: @code{(file-append inetutils \"/libexec/inetd\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17917 +#: guix-git/doc/guix.texi:18279 msgid "The @command{inetd} executable to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17918 guix-git/doc/guix.texi:27655 +#: guix-git/doc/guix.texi:18280 guix-git/doc/guix.texi:27992 #, no-wrap msgid "@code{entries} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17921 +#: guix-git/doc/guix.texi:18283 msgid "A list of @command{inetd} service entries. Each entry should be created by the @code{inetd-entry} constructor." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17924 +#: guix-git/doc/guix.texi:18286 #, no-wrap msgid "{Data Type} inetd-entry" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17928 +#: guix-git/doc/guix.texi:18290 msgid "Data type representing an entry in the @command{inetd} configuration. Each entry corresponds to a socket where @command{inetd} will listen for requests." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17930 +#: guix-git/doc/guix.texi:18292 #, no-wrap msgid "@code{node} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17935 +#: guix-git/doc/guix.texi:18297 msgid "Optional string, a comma-separated list of local addresses @command{inetd} should use when listening for this service. @xref{Configuration file,,, inetutils, GNU Inetutils} for a complete description of all options." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17937 +#: guix-git/doc/guix.texi:18299 msgid "A string, the name must correspond to an entry in @code{/etc/services}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17937 +#: guix-git/doc/guix.texi:18299 #, no-wrap msgid "socket-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17940 +#: guix-git/doc/guix.texi:18302 msgid "One of @code{'stream}, @code{'dgram}, @code{'raw}, @code{'rdm} or @code{'seqpacket}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17940 +#: guix-git/doc/guix.texi:18302 #, no-wrap msgid "protocol" -msgstr "" +msgstr "protocol" #. type: table -#: guix-git/doc/guix.texi:17942 +#: guix-git/doc/guix.texi:18304 msgid "A string, must correspond to an entry in @code{/etc/protocols}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17942 +#: guix-git/doc/guix.texi:18304 #, no-wrap msgid "@code{wait?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17945 +#: guix-git/doc/guix.texi:18307 msgid "Whether @command{inetd} should wait for the server to exit before listening to new service requests." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17950 +#: guix-git/doc/guix.texi:18312 msgid "A string containing the user (and, optionally, group) name of the user as whom the server should run. The group name can be specified in a suffix, separated by a colon or period, i.e.@: @code{\"user\"}, @code{\"user:group\"} or @code{\"user.group\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17950 +#: guix-git/doc/guix.texi:18312 #, no-wrap msgid "@code{program} (default: @code{\"internal\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:18315 msgid "The server program which will serve the requests, or @code{\"internal\"} if @command{inetd} should use a built-in service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17958 +#: guix-git/doc/guix.texi:18320 msgid "A list strings or file-like objects, which are the server program's arguments, starting with the zeroth argument, i.e.@: the name of the program itself. For @command{inetd}'s internal services, this entry must be @code{'()} or @code{'(\"internal\")}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17962 +#: guix-git/doc/guix.texi:18324 msgid "@xref{Configuration file,,, inetutils, GNU Inetutils} for a more detailed discussion of each configuration field." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17964 +#: guix-git/doc/guix.texi:18326 #, no-wrap msgid "opendht, distributed hash table network service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17965 +#: guix-git/doc/guix.texi:18327 #, no-wrap msgid "dhtproxy, for use with jami" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17966 +#: guix-git/doc/guix.texi:18328 #, no-wrap msgid "{Scheme Variable} opendht-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17971 +#: guix-git/doc/guix.texi:18333 msgid "This is the type of the service running a @uref{https://opendht.net, OpenDHT} node, @command{dhtnode}. The daemon can be used to host your own proxy service to the distributed hash table (DHT), for example to connect to with Jami, among other applications." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:17981 +#: guix-git/doc/guix.texi:18343 msgid "When using the OpenDHT proxy server, the IP addresses it ``sees'' from the clients should be addresses reachable from other peers. In practice this means that a publicly reachable address is best suited for a proxy server, outside of your private network. For example, hosting the proxy server on a IPv4 private local network and exposing it via port forwarding could work for external peers, but peers local to the proxy would have their private addresses shared with the external peers, leading to connectivity problems." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17985 +#: guix-git/doc/guix.texi:18347 msgid "The value of this service is a @code{opendht-configuration} object, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17987 +#: guix-git/doc/guix.texi:18349 #, no-wrap msgid "{Data Type} opendht-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17989 +#: guix-git/doc/guix.texi:18351 msgid "This is the data type for the OpenDHT service configuration." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17994 +#: guix-git/doc/guix.texi:18356 msgid "Available @code{opendht-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:17995 +#: guix-git/doc/guix.texi:18357 #, no-wrap msgid "{@code{opendht-configuration} parameter} package opendht" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:17997 +#: guix-git/doc/guix.texi:18359 msgid "The @code{opendht} package to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18000 +#: guix-git/doc/guix.texi:18362 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean peer-discovery?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18002 +#: guix-git/doc/guix.texi:18364 msgid "Whether to enable the multicast local peer discovery mechanism." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18004 guix-git/doc/guix.texi:18012 -#: guix-git/doc/guix.texi:18020 guix-git/doc/guix.texi:19712 -#: guix-git/doc/guix.texi:19788 guix-git/doc/guix.texi:19830 -#: guix-git/doc/guix.texi:19850 guix-git/doc/guix.texi:19856 -#: guix-git/doc/guix.texi:19872 guix-git/doc/guix.texi:19960 -#: guix-git/doc/guix.texi:20048 guix-git/doc/guix.texi:20361 -#: guix-git/doc/guix.texi:20374 guix-git/doc/guix.texi:21492 -#: guix-git/doc/guix.texi:22970 guix-git/doc/guix.texi:23076 -#: guix-git/doc/guix.texi:23141 guix-git/doc/guix.texi:23150 -#: guix-git/doc/guix.texi:24383 guix-git/doc/guix.texi:24427 -#: guix-git/doc/guix.texi:24444 guix-git/doc/guix.texi:24452 -#: guix-git/doc/guix.texi:24467 guix-git/doc/guix.texi:24485 -#: guix-git/doc/guix.texi:24509 guix-git/doc/guix.texi:24562 -#: guix-git/doc/guix.texi:24695 guix-git/doc/guix.texi:24729 -#: guix-git/doc/guix.texi:24765 guix-git/doc/guix.texi:24781 -#: guix-git/doc/guix.texi:24809 guix-git/doc/guix.texi:24870 -#: guix-git/doc/guix.texi:24953 guix-git/doc/guix.texi:28367 -#: guix-git/doc/guix.texi:28381 guix-git/doc/guix.texi:28403 -#: guix-git/doc/guix.texi:28522 guix-git/doc/guix.texi:28536 -#: guix-git/doc/guix.texi:28557 guix-git/doc/guix.texi:28578 -#: guix-git/doc/guix.texi:28585 guix-git/doc/guix.texi:28630 -#: guix-git/doc/guix.texi:28637 guix-git/doc/guix.texi:29426 -#: guix-git/doc/guix.texi:29440 guix-git/doc/guix.texi:29612 -#: guix-git/doc/guix.texi:29657 guix-git/doc/guix.texi:29744 -#: guix-git/doc/guix.texi:29946 guix-git/doc/guix.texi:29979 -#: guix-git/doc/guix.texi:30119 guix-git/doc/guix.texi:30130 -#: guix-git/doc/guix.texi:30381 guix-git/doc/guix.texi:31900 -#: guix-git/doc/guix.texi:31909 guix-git/doc/guix.texi:31917 -#: guix-git/doc/guix.texi:31925 guix-git/doc/guix.texi:31941 -#: guix-git/doc/guix.texi:31957 guix-git/doc/guix.texi:31965 -#: guix-git/doc/guix.texi:31973 guix-git/doc/guix.texi:31982 -#: guix-git/doc/guix.texi:31991 guix-git/doc/guix.texi:32007 -#: guix-git/doc/guix.texi:32071 guix-git/doc/guix.texi:32177 -#: guix-git/doc/guix.texi:32185 guix-git/doc/guix.texi:32193 -#: guix-git/doc/guix.texi:32218 guix-git/doc/guix.texi:32272 -#: guix-git/doc/guix.texi:32320 guix-git/doc/guix.texi:32521 -#: guix-git/doc/guix.texi:32528 +#: guix-git/doc/guix.texi:18366 guix-git/doc/guix.texi:18374 +#: guix-git/doc/guix.texi:18382 guix-git/doc/guix.texi:20074 +#: guix-git/doc/guix.texi:20150 guix-git/doc/guix.texi:20192 +#: guix-git/doc/guix.texi:20212 guix-git/doc/guix.texi:20218 +#: guix-git/doc/guix.texi:20234 guix-git/doc/guix.texi:20322 +#: guix-git/doc/guix.texi:20410 guix-git/doc/guix.texi:20723 +#: guix-git/doc/guix.texi:20736 guix-git/doc/guix.texi:21854 +#: guix-git/doc/guix.texi:23332 guix-git/doc/guix.texi:23438 +#: guix-git/doc/guix.texi:23503 guix-git/doc/guix.texi:23512 +#: guix-git/doc/guix.texi:24745 guix-git/doc/guix.texi:24789 +#: guix-git/doc/guix.texi:24806 guix-git/doc/guix.texi:24814 +#: guix-git/doc/guix.texi:24829 guix-git/doc/guix.texi:24847 +#: guix-git/doc/guix.texi:24871 guix-git/doc/guix.texi:24924 +#: guix-git/doc/guix.texi:25057 guix-git/doc/guix.texi:25091 +#: guix-git/doc/guix.texi:25127 guix-git/doc/guix.texi:25143 +#: guix-git/doc/guix.texi:25171 guix-git/doc/guix.texi:25232 +#: guix-git/doc/guix.texi:25315 guix-git/doc/guix.texi:28704 +#: guix-git/doc/guix.texi:28718 guix-git/doc/guix.texi:28740 +#: guix-git/doc/guix.texi:28859 guix-git/doc/guix.texi:28873 +#: guix-git/doc/guix.texi:28894 guix-git/doc/guix.texi:28915 +#: guix-git/doc/guix.texi:28922 guix-git/doc/guix.texi:28967 +#: guix-git/doc/guix.texi:28974 guix-git/doc/guix.texi:29763 +#: guix-git/doc/guix.texi:29777 guix-git/doc/guix.texi:29977 +#: guix-git/doc/guix.texi:30022 guix-git/doc/guix.texi:30109 +#: guix-git/doc/guix.texi:30311 guix-git/doc/guix.texi:30344 +#: guix-git/doc/guix.texi:30484 guix-git/doc/guix.texi:30495 +#: guix-git/doc/guix.texi:30746 guix-git/doc/guix.texi:32265 +#: guix-git/doc/guix.texi:32274 guix-git/doc/guix.texi:32282 +#: guix-git/doc/guix.texi:32290 guix-git/doc/guix.texi:32306 +#: guix-git/doc/guix.texi:32322 guix-git/doc/guix.texi:32330 +#: guix-git/doc/guix.texi:32338 guix-git/doc/guix.texi:32347 +#: guix-git/doc/guix.texi:32356 guix-git/doc/guix.texi:32372 +#: guix-git/doc/guix.texi:32436 guix-git/doc/guix.texi:32542 +#: guix-git/doc/guix.texi:32550 guix-git/doc/guix.texi:32558 +#: guix-git/doc/guix.texi:32583 guix-git/doc/guix.texi:32637 +#: guix-git/doc/guix.texi:32685 guix-git/doc/guix.texi:32886 +#: guix-git/doc/guix.texi:32893 msgid "Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18007 +#: guix-git/doc/guix.texi:18369 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean enable-logging?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18010 +#: guix-git/doc/guix.texi:18372 msgid "Whether to enable logging messages to syslog. It is disabled by default as it is rather verbose." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18015 +#: guix-git/doc/guix.texi:18377 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean debug?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18018 +#: guix-git/doc/guix.texi:18380 msgid "Whether to enable debug-level logging messages. This has no effect if logging is disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18023 +#: guix-git/doc/guix.texi:18385 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-string bootstrap-host" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18029 +#: guix-git/doc/guix.texi:18391 msgid "The node host name that is used to make the first connection to the network. A specific port value can be provided by appending the @code{:PORT} suffix. By default, it uses the Jami bootstrap nodes, but any host can be specified here. It's also possible to disable bootsrapping by setting this to the @code{'disabled} symbol." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18031 +#: guix-git/doc/guix.texi:18393 msgid "Defaults to @samp{\"bootstrap.jami.net:4222\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18034 +#: guix-git/doc/guix.texi:18396 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18037 +#: guix-git/doc/guix.texi:18399 msgid "The UDP port to bind to. When set to @code{'disabled}, an available port is automatically selected." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18039 +#: guix-git/doc/guix.texi:18401 msgid "Defaults to @samp{4222}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18042 +#: guix-git/doc/guix.texi:18404 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number proxy-server-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18044 +#: guix-git/doc/guix.texi:18406 msgid "Spawn a proxy server listening on the specified port." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18046 guix-git/doc/guix.texi:18053 -#: guix-git/doc/guix.texi:24391 guix-git/doc/guix.texi:24435 -#: guix-git/doc/guix.texi:24648 guix-git/doc/guix.texi:24704 -#: guix-git/doc/guix.texi:24878 guix-git/doc/guix.texi:24889 -#: guix-git/doc/guix.texi:24962 guix-git/doc/guix.texi:25687 -#: guix-git/doc/guix.texi:25730 guix-git/doc/guix.texi:25738 -#: guix-git/doc/guix.texi:25746 guix-git/doc/guix.texi:25754 -#: guix-git/doc/guix.texi:25763 guix-git/doc/guix.texi:25771 -#: guix-git/doc/guix.texi:25778 guix-git/doc/guix.texi:25786 -#: guix-git/doc/guix.texi:25794 guix-git/doc/guix.texi:25804 -#: guix-git/doc/guix.texi:25811 guix-git/doc/guix.texi:25835 -#: guix-git/doc/guix.texi:25843 guix-git/doc/guix.texi:25869 -#: guix-git/doc/guix.texi:25878 guix-git/doc/guix.texi:25887 -#: guix-git/doc/guix.texi:25896 guix-git/doc/guix.texi:25905 -#: guix-git/doc/guix.texi:25914 guix-git/doc/guix.texi:25922 -#: guix-git/doc/guix.texi:25930 guix-git/doc/guix.texi:25937 -#: guix-git/doc/guix.texi:25945 guix-git/doc/guix.texi:25952 -#: guix-git/doc/guix.texi:25960 guix-git/doc/guix.texi:25968 -#: guix-git/doc/guix.texi:25977 guix-git/doc/guix.texi:25986 -#: guix-git/doc/guix.texi:25994 guix-git/doc/guix.texi:26002 -#: guix-git/doc/guix.texi:26010 guix-git/doc/guix.texi:26021 -#: guix-git/doc/guix.texi:26031 guix-git/doc/guix.texi:26042 -#: guix-git/doc/guix.texi:26051 guix-git/doc/guix.texi:26061 -#: guix-git/doc/guix.texi:26069 guix-git/doc/guix.texi:26080 -#: guix-git/doc/guix.texi:26089 guix-git/doc/guix.texi:26099 -#: guix-git/doc/guix.texi:29339 guix-git/doc/guix.texi:29346 -#: guix-git/doc/guix.texi:29353 guix-git/doc/guix.texi:29360 -#: guix-git/doc/guix.texi:29367 guix-git/doc/guix.texi:29374 -#: guix-git/doc/guix.texi:29382 guix-git/doc/guix.texi:29390 -#: guix-git/doc/guix.texi:29397 guix-git/doc/guix.texi:29404 -#: guix-git/doc/guix.texi:29411 guix-git/doc/guix.texi:29418 -#: guix-git/doc/guix.texi:29448 guix-git/doc/guix.texi:29486 -#: guix-git/doc/guix.texi:29493 guix-git/doc/guix.texi:29502 -#: guix-git/doc/guix.texi:29524 guix-git/doc/guix.texi:29532 -#: guix-git/doc/guix.texi:29539 guix-git/doc/guix.texi:29694 -#: guix-git/doc/guix.texi:29714 guix-git/doc/guix.texi:29729 -#: guix-git/doc/guix.texi:29736 guix-git/doc/guix.texi:32473 -#: guix-git/doc/guix.texi:32481 guix-git/doc/guix.texi:32489 -#: guix-git/doc/guix.texi:32497 guix-git/doc/guix.texi:32505 -#: guix-git/doc/guix.texi:32513 +#: guix-git/doc/guix.texi:18408 guix-git/doc/guix.texi:18415 +#: guix-git/doc/guix.texi:24753 guix-git/doc/guix.texi:24797 +#: guix-git/doc/guix.texi:25010 guix-git/doc/guix.texi:25066 +#: guix-git/doc/guix.texi:25240 guix-git/doc/guix.texi:25251 +#: guix-git/doc/guix.texi:25324 guix-git/doc/guix.texi:26024 +#: guix-git/doc/guix.texi:26067 guix-git/doc/guix.texi:26075 +#: guix-git/doc/guix.texi:26083 guix-git/doc/guix.texi:26091 +#: guix-git/doc/guix.texi:26100 guix-git/doc/guix.texi:26108 +#: guix-git/doc/guix.texi:26115 guix-git/doc/guix.texi:26123 +#: guix-git/doc/guix.texi:26131 guix-git/doc/guix.texi:26141 +#: guix-git/doc/guix.texi:26148 guix-git/doc/guix.texi:26172 +#: guix-git/doc/guix.texi:26180 guix-git/doc/guix.texi:26206 +#: guix-git/doc/guix.texi:26215 guix-git/doc/guix.texi:26224 +#: guix-git/doc/guix.texi:26233 guix-git/doc/guix.texi:26242 +#: guix-git/doc/guix.texi:26251 guix-git/doc/guix.texi:26259 +#: guix-git/doc/guix.texi:26267 guix-git/doc/guix.texi:26274 +#: guix-git/doc/guix.texi:26282 guix-git/doc/guix.texi:26289 +#: guix-git/doc/guix.texi:26297 guix-git/doc/guix.texi:26305 +#: guix-git/doc/guix.texi:26314 guix-git/doc/guix.texi:26323 +#: guix-git/doc/guix.texi:26331 guix-git/doc/guix.texi:26339 +#: guix-git/doc/guix.texi:26347 guix-git/doc/guix.texi:26358 +#: guix-git/doc/guix.texi:26368 guix-git/doc/guix.texi:26379 +#: guix-git/doc/guix.texi:26388 guix-git/doc/guix.texi:26398 +#: guix-git/doc/guix.texi:26406 guix-git/doc/guix.texi:26417 +#: guix-git/doc/guix.texi:26426 guix-git/doc/guix.texi:26436 +#: guix-git/doc/guix.texi:29676 guix-git/doc/guix.texi:29683 +#: guix-git/doc/guix.texi:29690 guix-git/doc/guix.texi:29697 +#: guix-git/doc/guix.texi:29704 guix-git/doc/guix.texi:29711 +#: guix-git/doc/guix.texi:29719 guix-git/doc/guix.texi:29727 +#: guix-git/doc/guix.texi:29734 guix-git/doc/guix.texi:29741 +#: guix-git/doc/guix.texi:29748 guix-git/doc/guix.texi:29755 +#: guix-git/doc/guix.texi:29785 guix-git/doc/guix.texi:29823 +#: guix-git/doc/guix.texi:29830 guix-git/doc/guix.texi:29839 +#: guix-git/doc/guix.texi:29861 guix-git/doc/guix.texi:29869 +#: guix-git/doc/guix.texi:29876 guix-git/doc/guix.texi:29905 +#: guix-git/doc/guix.texi:29912 guix-git/doc/guix.texi:29919 +#: guix-git/doc/guix.texi:29926 guix-git/doc/guix.texi:30059 +#: guix-git/doc/guix.texi:30079 guix-git/doc/guix.texi:30094 +#: guix-git/doc/guix.texi:30101 guix-git/doc/guix.texi:32838 +#: guix-git/doc/guix.texi:32846 guix-git/doc/guix.texi:32854 +#: guix-git/doc/guix.texi:32862 guix-git/doc/guix.texi:32870 +#: guix-git/doc/guix.texi:32878 msgid "Defaults to @samp{disabled}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18049 +#: guix-git/doc/guix.texi:18411 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number proxy-server-port-tls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18051 +#: guix-git/doc/guix.texi:18413 msgid "Spawn a proxy server listening to TLS connections on the specified port." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18057 +#: guix-git/doc/guix.texi:18419 #, no-wrap msgid "Tor" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18058 +#: guix-git/doc/guix.texi:18420 #, no-wrap msgid "{Scheme Variable} tor-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18063 +#: guix-git/doc/guix.texi:18425 msgid "This is the type for a service that runs the @uref{https://torproject.org, Tor} anonymous networking daemon. The service is configured using a @code{} record. By default, the Tor daemon runs as the @code{tor} unprivileged user, which is a member of the @code{tor} group." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18066 +#: guix-git/doc/guix.texi:18428 #, no-wrap msgid "{Data Type} tor-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18068 +#: guix-git/doc/guix.texi:18430 #, no-wrap msgid "@code{tor} (default: @code{tor})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18073 +#: guix-git/doc/guix.texi:18435 msgid "The package that provides the Tor daemon. This package is expected to provide the daemon at @file{bin/tor} relative to its output directory. The default package is the @uref{https://www.torproject.org, Tor Project's} implementation." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18074 +#: guix-git/doc/guix.texi:18436 #, no-wrap msgid "@code{config-file} (default: @code{(plain-file \"empty\" \"\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18080 +#: guix-git/doc/guix.texi:18442 msgid "The configuration file to use. It will be appended to a default configuration file, and the final configuration file will be passed to @code{tor} via its @code{-f} option. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). See @code{man tor} for details on the configuration file syntax." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18081 +#: guix-git/doc/guix.texi:18443 #, no-wrap msgid "@code{hidden-services} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18087 +#: guix-git/doc/guix.texi:18449 msgid "The list of @code{} records to use. For any hidden service you include in this list, appropriate configuration to enable the hidden service will be automatically added to the default configuration file. You may conveniently create @code{} records using the @code{tor-hidden-service} procedure described below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18088 +#: guix-git/doc/guix.texi:18450 #, no-wrap msgid "@code{socks-socket-type} (default: @code{'tcp})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18095 +#: guix-git/doc/guix.texi:18457 msgid "The default socket type that Tor should use for its SOCKS socket. This must be either @code{'tcp} or @code{'unix}. If it is @code{'tcp}, then by default Tor will listen on TCP port 9050 on the loopback interface (i.e., localhost). If it is @code{'unix}, then Tor will listen on the UNIX domain socket @file{/var/run/tor/socks-sock}, which will be made writable by members of the @code{tor} group." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18100 +#: guix-git/doc/guix.texi:18462 msgid "If you want to customize the SOCKS socket in more detail, leave @code{socks-socket-type} at its default value of @code{'tcp} and use @code{config-file} to override the default by providing your own @code{SocksPort} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18101 +#: guix-git/doc/guix.texi:18463 #, no-wrap msgid "@code{control-socket?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18107 +#: guix-git/doc/guix.texi:18469 msgid "Whether or not to provide a ``control socket'' by which Tor can be controlled to, for instance, dynamically instantiate tor onion services. If @code{#t}, Tor will listen for control commands on the UNIX domain socket @file{/var/run/tor/control-sock}, which will be made writable by members of the @code{tor} group." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18111 +#: guix-git/doc/guix.texi:18473 #, no-wrap msgid "hidden service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18112 +#: guix-git/doc/guix.texi:18474 #, no-wrap msgid "{Scheme Procedure} tor-hidden-service @var{name} @var{mapping}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18115 +#: guix-git/doc/guix.texi:18477 msgid "Define a new Tor @dfn{hidden service} called @var{name} and implementing @var{mapping}. @var{mapping} is a list of port/host tuples, such as:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18119 +#: guix-git/doc/guix.texi:18481 #, no-wrap msgid "" " '((22 \"127.0.0.1:22\")\n" @@ -31800,43 +32392,43 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18123 +#: guix-git/doc/guix.texi:18485 msgid "In this example, port 22 of the hidden service is mapped to local port 22, and port 80 is mapped to local port 8080." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18127 +#: guix-git/doc/guix.texi:18489 msgid "This creates a @file{/var/lib/tor/hidden-services/@var{name}} directory, where the @file{hostname} file contains the @code{.onion} host name for the hidden service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18130 +#: guix-git/doc/guix.texi:18492 msgid "See @uref{https://www.torproject.org/docs/tor-hidden-service.html.en, the Tor project's documentation} for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18133 +#: guix-git/doc/guix.texi:18495 msgid "The @code{(gnu services rsync)} module provides the following services:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18137 +#: guix-git/doc/guix.texi:18499 msgid "You might want an rsync daemon if you have files that you want available so anyone (or just yourself) can download existing files or upload new files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18138 +#: guix-git/doc/guix.texi:18500 #, no-wrap msgid "{Scheme Variable} rsync-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18142 +#: guix-git/doc/guix.texi:18504 msgid "This is the service type for the @uref{https://rsync.samba.org, rsync} daemon, The value for this service type is a @command{rsync-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18155 +#: guix-git/doc/guix.texi:18517 #, no-wrap msgid "" ";; Export two directories over rsync. By default rsync listens on\n" @@ -31853,238 +32445,236 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18158 +#: guix-git/doc/guix.texi:18520 msgid "See below for details about @code{rsync-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18160 +#: guix-git/doc/guix.texi:18522 #, no-wrap msgid "{Data Type} rsync-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18162 +#: guix-git/doc/guix.texi:18524 msgid "Data type representing the configuration for @code{rsync-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18164 +#: guix-git/doc/guix.texi:18526 #, no-wrap msgid "@code{package} (default: @var{rsync})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18166 +#: guix-git/doc/guix.texi:18528 msgid "@code{rsync} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18167 guix-git/doc/guix.texi:31480 +#: guix-git/doc/guix.texi:18529 guix-git/doc/guix.texi:31845 #, no-wrap msgid "@code{address} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18170 +#: guix-git/doc/guix.texi:18532 msgid "IP address on which @command{rsync} listens for incoming connections. If unspecified, it defaults to listening on all available addresses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18171 +#: guix-git/doc/guix.texi:18533 #, no-wrap msgid "@code{port-number} (default: @code{873})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18175 +#: guix-git/doc/guix.texi:18537 msgid "TCP port on which @command{rsync} listens for incoming connections. If port is less than @code{1024} @command{rsync} needs to be started as the @code{root} user and group." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18176 +#: guix-git/doc/guix.texi:18538 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/rsyncd/rsyncd.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18178 +#: guix-git/doc/guix.texi:18540 msgid "Name of the file where @command{rsync} writes its PID." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18179 +#: guix-git/doc/guix.texi:18541 #, no-wrap msgid "@code{lock-file} (default: @code{\"/var/run/rsyncd/rsyncd.lock\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18181 +#: guix-git/doc/guix.texi:18543 msgid "Name of the file where @command{rsync} writes its lock file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18182 +#: guix-git/doc/guix.texi:18544 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/rsyncd.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18184 +#: guix-git/doc/guix.texi:18546 msgid "Name of the file where @command{rsync} writes its log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18185 guix-git/doc/guix.texi:35582 +#: guix-git/doc/guix.texi:18547 guix-git/doc/guix.texi:36062 #, no-wrap msgid "@code{user} (default: @code{\"root\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18187 +#: guix-git/doc/guix.texi:18549 msgid "Owner of the @code{rsync} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18188 +#: guix-git/doc/guix.texi:18550 #, no-wrap msgid "@code{group} (default: @code{\"root\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18190 +#: guix-git/doc/guix.texi:18552 msgid "Group of the @code{rsync} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18191 +#: guix-git/doc/guix.texi:18553 #, no-wrap msgid "@code{uid} (default: @code{\"rsyncd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18194 +#: guix-git/doc/guix.texi:18556 msgid "User name or user ID that file transfers to and from that module should take place as when the daemon was run as @code{root}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18195 +#: guix-git/doc/guix.texi:18557 #, no-wrap msgid "@code{gid} (default: @code{\"rsyncd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18197 guix-git/doc/guix.texi:18676 +#: guix-git/doc/guix.texi:18559 guix-git/doc/guix.texi:19038 msgid "Group name or group ID that will be used when accessing the module." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18198 guix-git/doc/guix.texi:36378 +#: guix-git/doc/guix.texi:18560 guix-git/doc/guix.texi:36868 #, no-wrap msgid "@code{modules} (default: @code{%default-modules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18201 +#: guix-git/doc/guix.texi:18563 msgid "List of ``modules''---i.e., directories exported over rsync. Each element must be a @code{rsync-module} record, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18204 -#, fuzzy, no-wrap -#| msgid "System Configuration" +#: guix-git/doc/guix.texi:18566 +#, no-wrap msgid "{Data Type} rsync-module" -msgstr "Nastavenie systému" +msgstr "{Druh údajov} rsync-module" #. type: deftp -#: guix-git/doc/guix.texi:18207 +#: guix-git/doc/guix.texi:18569 msgid "This is the data type for rsync ``modules''. A module is a directory exported over the rsync protocol. The available fields are as follows:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18213 +#: guix-git/doc/guix.texi:18575 msgid "The module name. This is the name that shows up in URLs. For example, if the module is called @code{music}, the corresponding URL will be @code{rsync://host.example.org/music}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18214 -#, fuzzy, no-wrap -#| msgid "name" +#: guix-git/doc/guix.texi:18576 +#, no-wrap msgid "file-name" -msgstr "name" +msgstr "file-name" #. type: table -#: guix-git/doc/guix.texi:18216 +#: guix-git/doc/guix.texi:18578 msgid "Name of the directory being exported." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18220 +#: guix-git/doc/guix.texi:18582 msgid "Comment associated with the module. Client user interfaces may display it when they obtain the list of available modules." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18221 +#: guix-git/doc/guix.texi:18583 #, no-wrap msgid "@code{read-only?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18225 +#: guix-git/doc/guix.texi:18587 msgid "Whether or not client will be able to upload files. If this is false, the uploads will be authorized if permissions on the daemon side permit it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18226 +#: guix-git/doc/guix.texi:18588 #, no-wrap msgid "@code{chroot?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18230 +#: guix-git/doc/guix.texi:18592 msgid "When this is true, the rsync daemon changes root to the module's directory before starting file transfers with the client. This improves security, but requires rsync to run as root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18231 +#: guix-git/doc/guix.texi:18593 #, no-wrap msgid "@code{timeout} (default: @code{300})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18234 +#: guix-git/doc/guix.texi:18596 msgid "Idle time in seconds after which the daemon closes a connection with the client." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18238 +#: guix-git/doc/guix.texi:18600 msgid "The @code{(gnu services syncthing)} module provides the following services:" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18238 +#: guix-git/doc/guix.texi:18600 #, no-wrap msgid "syncthing" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18243 +#: guix-git/doc/guix.texi:18605 msgid "You might want a syncthing daemon if you have files between two or more computers and want to sync them in real time, safely protected from prying eyes." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18244 +#: guix-git/doc/guix.texi:18606 #, no-wrap msgid "{Scheme Variable} syncthing-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18248 +#: guix-git/doc/guix.texi:18610 msgid "This is the service type for the @uref{https://syncthing.net/, syncthing} daemon, The value for this service type is a @command{syncthing-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18252 +#: guix-git/doc/guix.texi:18614 #, no-wrap msgid "" "(service syncthing-service-type\n" @@ -32092,160 +32682,160 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18255 +#: guix-git/doc/guix.texi:18617 msgid "See below for details about @code{syncthing-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18256 +#: guix-git/doc/guix.texi:18618 #, no-wrap msgid "{Data Type} syncthing-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18258 +#: guix-git/doc/guix.texi:18620 msgid "Data type representing the configuration for @code{syncthing-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18260 +#: guix-git/doc/guix.texi:18622 #, no-wrap msgid "@code{syncthing} (default: @var{syncthing})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18262 +#: guix-git/doc/guix.texi:18624 msgid "@code{syncthing} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18263 +#: guix-git/doc/guix.texi:18625 #, no-wrap msgid "@code{arguments} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18265 +#: guix-git/doc/guix.texi:18627 msgid "List of command-line arguments passing to @code{syncthing} binary." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18266 +#: guix-git/doc/guix.texi:18628 #, no-wrap msgid "@code{logflags} (default: @var{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18269 +#: guix-git/doc/guix.texi:18631 msgid "Sum of logging flags, see @uref{https://docs.syncthing.net/users/syncthing.html#cmdoption-logflags, Syncthing documentation logflags}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18270 +#: guix-git/doc/guix.texi:18632 #, no-wrap msgid "@code{user} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18273 +#: guix-git/doc/guix.texi:18635 msgid "The user as which the Syncthing service is to be run. This assumes that the specified user exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18274 +#: guix-git/doc/guix.texi:18636 #, no-wrap msgid "@code{group} (default: @var{\"users\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18277 +#: guix-git/doc/guix.texi:18639 msgid "The group as which the Syncthing service is to be run. This assumes that the specified group exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18278 +#: guix-git/doc/guix.texi:18640 #, no-wrap msgid "@code{home} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18281 +#: guix-git/doc/guix.texi:18643 msgid "Common configuration and data directory. The default configuration directory is @file{$HOME} of the specified Syncthing @code{user}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18287 +#: guix-git/doc/guix.texi:18649 msgid "Furthermore, @code{(gnu services ssh)} provides the following services." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18287 guix-git/doc/guix.texi:18326 -#: guix-git/doc/guix.texi:35715 +#: guix-git/doc/guix.texi:18649 guix-git/doc/guix.texi:18688 +#: guix-git/doc/guix.texi:36205 #, no-wrap msgid "SSH" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18288 guix-git/doc/guix.texi:18327 -#: guix-git/doc/guix.texi:35716 +#: guix-git/doc/guix.texi:18650 guix-git/doc/guix.texi:18689 +#: guix-git/doc/guix.texi:36206 #, no-wrap msgid "SSH server" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18290 +#: guix-git/doc/guix.texi:18652 #, no-wrap msgid "{Scheme Procedure} lsh-service [#:host-key \"/etc/lsh/host-key\"] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18299 +#: guix-git/doc/guix.texi:18661 msgid "[#:daemonic? #t] [#:interfaces '()] [#:port-number 22] @ [#:allow-empty-passwords? #f] [#:root-login? #f] @ [#:syslog-output? #t] [#:x11-forwarding? #t] @ [#:tcp/ip-forwarding? #t] [#:password-authentication? #t] @ [#:public-key-authentication? #t] [#:initialize? #t] Run the @command{lshd} program from @var{lsh} to listen on port @var{port-number}. @var{host-key} must designate a file containing the host key, and readable only by root." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18305 +#: guix-git/doc/guix.texi:18667 msgid "When @var{daemonic?} is true, @command{lshd} will detach from the controlling terminal and log its output to syslogd, unless one sets @var{syslog-output?} to false. Obviously, it also makes lsh-service depend on existence of syslogd service. When @var{pid-file?} is true, @command{lshd} writes its PID to the file called @var{pid-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18309 +#: guix-git/doc/guix.texi:18671 msgid "When @var{initialize?} is true, automatically create the seed and host key upon service activation if they do not exist yet. This may take long and require interaction." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18314 +#: guix-git/doc/guix.texi:18676 msgid "When @var{initialize?} is false, it is up to the user to initialize the randomness generator (@pxref{lsh-make-seed,,, lsh, LSH Manual}), and to create a key pair with the private key stored in file @var{host-key} (@pxref{lshd basics,,, lsh, LSH Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18318 +#: guix-git/doc/guix.texi:18680 msgid "When @var{interfaces} is empty, lshd listens for connections on all the network interfaces; otherwise, @var{interfaces} must be a list of host names or addresses." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18322 +#: guix-git/doc/guix.texi:18684 msgid "@var{allow-empty-passwords?} specifies whether to accept log-ins with empty passwords, and @var{root-login?} specifies whether to accept log-ins as root." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18324 +#: guix-git/doc/guix.texi:18686 msgid "The other options should be self-descriptive." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18328 +#: guix-git/doc/guix.texi:18690 #, no-wrap msgid "{Scheme Variable} openssh-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18332 +#: guix-git/doc/guix.texi:18694 msgid "This is the type for the @uref{http://www.openssh.org, OpenSSH} secure shell daemon, @command{sshd}. Its value must be an @code{openssh-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18341 +#: guix-git/doc/guix.texi:18703 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -32258,17 +32848,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18344 +#: guix-git/doc/guix.texi:18706 msgid "See below for details about @code{openssh-configuration}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18347 +#: guix-git/doc/guix.texi:18709 msgid "This service can be extended with extra authorized keys, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18352 +#: guix-git/doc/guix.texi:18714 #, no-wrap msgid "" "(service-extension openssh-service-type\n" @@ -32277,203 +32867,203 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18355 +#: guix-git/doc/guix.texi:18717 #, no-wrap msgid "{Data Type} openssh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18357 +#: guix-git/doc/guix.texi:18719 msgid "This is the configuration record for OpenSSH's @command{sshd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18359 +#: guix-git/doc/guix.texi:18721 #, no-wrap msgid "@code{openssh} (default @var{openssh})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18361 +#: guix-git/doc/guix.texi:18723 msgid "The Openssh package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18362 +#: guix-git/doc/guix.texi:18724 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/sshd.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18364 +#: guix-git/doc/guix.texi:18726 msgid "Name of the file where @command{sshd} writes its PID." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18365 +#: guix-git/doc/guix.texi:18727 #, no-wrap msgid "@code{port-number} (default: @code{22})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18367 +#: guix-git/doc/guix.texi:18729 msgid "TCP port on which @command{sshd} listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18368 +#: guix-git/doc/guix.texi:18730 #, no-wrap msgid "@code{permit-root-login} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18373 +#: guix-git/doc/guix.texi:18735 msgid "This field determines whether and when to allow logins as root. If @code{#f}, root logins are disallowed; if @code{#t}, they are allowed. If it's the symbol @code{'prohibit-password}, then root logins are permitted but not with password-based authentication." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18374 guix-git/doc/guix.texi:18535 +#: guix-git/doc/guix.texi:18736 guix-git/doc/guix.texi:18897 #, no-wrap msgid "@code{allow-empty-passwords?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18377 +#: guix-git/doc/guix.texi:18739 msgid "When true, users with empty passwords may log in. When false, they may not." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18378 guix-git/doc/guix.texi:18538 +#: guix-git/doc/guix.texi:18740 guix-git/doc/guix.texi:18900 #, no-wrap msgid "@code{password-authentication?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18381 +#: guix-git/doc/guix.texi:18743 msgid "When true, users may log in with their password. When false, they have other authentication methods." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18382 +#: guix-git/doc/guix.texi:18744 #, no-wrap msgid "@code{public-key-authentication?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18385 +#: guix-git/doc/guix.texi:18747 msgid "When true, users may log in using public key authentication. When false, users have to use other authentication method." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18388 +#: guix-git/doc/guix.texi:18750 msgid "Authorized public keys are stored in @file{~/.ssh/authorized_keys}. This is used only by protocol version 2." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18389 +#: guix-git/doc/guix.texi:18751 #, no-wrap msgid "@code{x11-forwarding?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18393 +#: guix-git/doc/guix.texi:18755 msgid "When true, forwarding of X11 graphical client connections is enabled---in other words, @command{ssh} options @option{-X} and @option{-Y} will work." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18394 +#: guix-git/doc/guix.texi:18756 #, no-wrap msgid "@code{allow-agent-forwarding?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18396 +#: guix-git/doc/guix.texi:18758 msgid "Whether to allow agent forwarding." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18397 +#: guix-git/doc/guix.texi:18759 #, no-wrap msgid "@code{allow-tcp-forwarding?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18399 +#: guix-git/doc/guix.texi:18761 msgid "Whether to allow TCP forwarding." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18400 +#: guix-git/doc/guix.texi:18762 #, no-wrap msgid "@code{gateway-ports?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18402 +#: guix-git/doc/guix.texi:18764 msgid "Whether to allow gateway ports." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18403 +#: guix-git/doc/guix.texi:18765 #, no-wrap msgid "@code{challenge-response-authentication?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18406 +#: guix-git/doc/guix.texi:18768 msgid "Specifies whether challenge response authentication is allowed (e.g.@: via PAM)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18407 +#: guix-git/doc/guix.texi:18769 #, no-wrap msgid "@code{use-pam?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18413 +#: guix-git/doc/guix.texi:18775 msgid "Enables the Pluggable Authentication Module interface. If set to @code{#t}, this will enable PAM authentication using @code{challenge-response-authentication?} and @code{password-authentication?}, in addition to PAM account and session module processing for all authentication types." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18418 +#: guix-git/doc/guix.texi:18780 msgid "Because PAM challenge response authentication usually serves an equivalent role to password authentication, you should disable either @code{challenge-response-authentication?} or @code{password-authentication?}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18419 +#: guix-git/doc/guix.texi:18781 #, no-wrap msgid "@code{print-last-log?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18422 +#: guix-git/doc/guix.texi:18784 msgid "Specifies whether @command{sshd} should print the date and time of the last user login when a user logs in interactively." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18423 +#: guix-git/doc/guix.texi:18785 #, no-wrap msgid "@code{subsystems} (default: @code{'((\"sftp\" \"internal-sftp\"))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18425 +#: guix-git/doc/guix.texi:18787 msgid "Configures external subsystems (e.g.@: file transfer daemon)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18429 +#: guix-git/doc/guix.texi:18791 msgid "This is a list of two-element lists, each of which containing the subsystem name and a command (with optional arguments) to execute upon subsystem request." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18432 +#: guix-git/doc/guix.texi:18794 msgid "The command @command{internal-sftp} implements an in-process SFTP server. Alternatively, one can specify the @command{sftp-server} command:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18437 +#: guix-git/doc/guix.texi:18799 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -32483,28 +33073,28 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18439 +#: guix-git/doc/guix.texi:18801 #, no-wrap msgid "@code{accepted-environment} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18441 +#: guix-git/doc/guix.texi:18803 msgid "List of strings describing which environment variables may be exported." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18444 +#: guix-git/doc/guix.texi:18806 msgid "Each string gets on its own line. See the @code{AcceptEnv} option in @code{man sshd_config}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18449 +#: guix-git/doc/guix.texi:18811 msgid "This example allows ssh-clients to export the @env{COLORTERM} variable. It is set by terminal emulators, which support colors. You can use it in your shell's resource file to enable colors for the prompt and commands if this variable is set." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18454 +#: guix-git/doc/guix.texi:18816 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -32513,30 +33103,30 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18456 +#: guix-git/doc/guix.texi:18818 #, no-wrap msgid "@code{authorized-keys} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18457 +#: guix-git/doc/guix.texi:18819 #, no-wrap msgid "authorized keys, SSH" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18458 +#: guix-git/doc/guix.texi:18820 #, no-wrap msgid "SSH authorized keys" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18462 +#: guix-git/doc/guix.texi:18824 msgid "This is the list of authorized keys. Each element of the list is a user name followed by one or more file-like objects that represent SSH public keys. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18469 +#: guix-git/doc/guix.texi:18831 #, no-wrap msgid "" "(openssh-configuration\n" @@ -32547,45 +33137,45 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18474 +#: guix-git/doc/guix.texi:18836 msgid "registers the specified public keys for user accounts @code{rekado}, @code{chris}, and @code{root}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18477 +#: guix-git/doc/guix.texi:18839 msgid "Additional authorized keys can be specified @i{via} @code{service-extension}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18480 +#: guix-git/doc/guix.texi:18842 msgid "Note that this does @emph{not} interfere with the use of @file{~/.ssh/authorized_keys}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18481 guix-git/doc/guix.texi:18912 +#: guix-git/doc/guix.texi:18843 guix-git/doc/guix.texi:19274 #, no-wrap msgid "@code{log-level} (default: @code{'info})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18485 +#: guix-git/doc/guix.texi:18847 msgid "This is a symbol specifying the logging level: @code{quiet}, @code{fatal}, @code{error}, @code{info}, @code{verbose}, @code{debug}, etc. See the man page for @file{sshd_config} for the full list of level names." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18486 guix-git/doc/guix.texi:21328 -#: guix-git/doc/guix.texi:26469 +#: guix-git/doc/guix.texi:18848 guix-git/doc/guix.texi:21690 +#: guix-git/doc/guix.texi:26806 #, no-wrap msgid "@code{extra-content} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18491 +#: guix-git/doc/guix.texi:18853 msgid "This field can be used to append arbitrary text to the configuration file. It is especially useful for elaborate configurations that cannot be expressed otherwise. This configuration, for example, would generally disable root logins, but permit them from one specific IP address:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18497 +#: guix-git/doc/guix.texi:18859 #, no-wrap msgid "" "(openssh-configuration\n" @@ -32595,23 +33185,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18502 +#: guix-git/doc/guix.texi:18864 #, no-wrap msgid "{Scheme Procedure} dropbear-service [@var{config}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18506 +#: guix-git/doc/guix.texi:18868 msgid "Run the @uref{https://matt.ucc.asn.au/dropbear/dropbear.html,Dropbear SSH daemon} with the given @var{config}, a @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18509 +#: guix-git/doc/guix.texi:18871 msgid "For example, to specify a Dropbear service listening on port 1234, add this call to the operating system's @code{services} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18513 +#: guix-git/doc/guix.texi:18875 #, no-wrap msgid "" "(dropbear-service (dropbear-configuration\n" @@ -32619,110 +33209,110 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18516 +#: guix-git/doc/guix.texi:18878 #, no-wrap msgid "{Data Type} dropbear-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18518 +#: guix-git/doc/guix.texi:18880 msgid "This data type represents the configuration of a Dropbear SSH daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18520 +#: guix-git/doc/guix.texi:18882 #, no-wrap msgid "@code{dropbear} (default: @var{dropbear})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18522 +#: guix-git/doc/guix.texi:18884 msgid "The Dropbear package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18523 +#: guix-git/doc/guix.texi:18885 #, no-wrap msgid "@code{port-number} (default: 22)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18525 +#: guix-git/doc/guix.texi:18887 msgid "The TCP port where the daemon waits for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18526 +#: guix-git/doc/guix.texi:18888 #, no-wrap msgid "@code{syslog-output?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18528 +#: guix-git/doc/guix.texi:18890 msgid "Whether to enable syslog output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18529 +#: guix-git/doc/guix.texi:18891 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/dropbear.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18531 +#: guix-git/doc/guix.texi:18893 msgid "File name of the daemon's PID file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18532 +#: guix-git/doc/guix.texi:18894 #, no-wrap msgid "@code{root-login?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18534 +#: guix-git/doc/guix.texi:18896 msgid "Whether to allow @code{root} logins." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18537 +#: guix-git/doc/guix.texi:18899 msgid "Whether to allow empty passwords." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18540 +#: guix-git/doc/guix.texi:18902 msgid "Whether to enable password-based authentication." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18543 +#: guix-git/doc/guix.texi:18905 #, no-wrap msgid "AutoSSH" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18544 +#: guix-git/doc/guix.texi:18906 #, no-wrap msgid "{Scheme Variable} autossh-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18552 +#: guix-git/doc/guix.texi:18914 msgid "This is the type for the @uref{https://www.harding.motd.ca/autossh, AutoSSH} program that runs a copy of @command{ssh} and monitors it, restarting it as necessary should it die or stop passing traffic. AutoSSH can be run manually from the command-line by passing arguments to the binary @command{autossh} from the package @code{autossh}, but it can also be run as a Guix service. This latter use case is documented here." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18556 +#: guix-git/doc/guix.texi:18918 msgid "AutoSSH can be used to forward local traffic to a remote machine using an SSH tunnel, and it respects the @file{~/.ssh/config} of the user it is run as." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18561 +#: guix-git/doc/guix.texi:18923 msgid "For example, to specify a service running autossh as the user @code{pino} and forwarding all local connections to port @code{8081} to @code{remote:8081} using an SSH tunnel, add this call to the operating system's @code{services} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18567 +#: guix-git/doc/guix.texi:18929 #, no-wrap msgid "" "(service autossh-service-type\n" @@ -32732,139 +33322,139 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18570 +#: guix-git/doc/guix.texi:18932 #, no-wrap msgid "{Data Type} autossh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18572 +#: guix-git/doc/guix.texi:18934 msgid "This data type represents the configuration of an AutoSSH service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18575 +#: guix-git/doc/guix.texi:18937 #, no-wrap msgid "@code{user} (default @code{\"autossh\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18578 +#: guix-git/doc/guix.texi:18940 msgid "The user as which the AutoSSH service is to be run. This assumes that the specified user exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18579 +#: guix-git/doc/guix.texi:18941 #, no-wrap msgid "@code{poll} (default @code{600})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18581 +#: guix-git/doc/guix.texi:18943 msgid "Specifies the connection poll time in seconds." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18582 +#: guix-git/doc/guix.texi:18944 #, no-wrap msgid "@code{first-poll} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18588 +#: guix-git/doc/guix.texi:18950 msgid "Specifies how many seconds AutoSSH waits before the first connection test. After this first test, polling is resumed at the pace defined in @code{poll}. When set to @code{#f}, the first poll is not treated specially and will also use the connection poll specified in @code{poll}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18589 +#: guix-git/doc/guix.texi:18951 #, no-wrap msgid "@code{gate-time} (default @code{30})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18592 +#: guix-git/doc/guix.texi:18954 msgid "Specifies how many seconds an SSH connection must be active before it is considered successful." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18593 +#: guix-git/doc/guix.texi:18955 #, no-wrap msgid "@code{log-level} (default @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18596 +#: guix-git/doc/guix.texi:18958 msgid "The log level, corresponding to the levels used by syslog---so @code{0} is the most silent while @code{7} is the chattiest." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18597 +#: guix-git/doc/guix.texi:18959 #, no-wrap msgid "@code{max-start} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18600 +#: guix-git/doc/guix.texi:18962 msgid "The maximum number of times SSH may be (re)started before AutoSSH exits. When set to @code{#f}, no maximum is configured and AutoSSH may restart indefinitely." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18601 +#: guix-git/doc/guix.texi:18963 #, no-wrap msgid "@code{message} (default @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18603 +#: guix-git/doc/guix.texi:18965 msgid "The message to append to the echo message sent when testing connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18604 +#: guix-git/doc/guix.texi:18966 #, no-wrap msgid "@code{port} (default @code{\"0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18614 +#: guix-git/doc/guix.texi:18976 msgid "The ports used for monitoring the connection. When set to @code{\"0\"}, monitoring is disabled. When set to @code{\"@var{n}\"} where @var{n} is a positive integer, ports @var{n} and @var{n}+1 are used for monitoring the connection, such that port @var{n} is the base monitoring port and @code{n+1} is the echo port. When set to @code{\"@var{n}:@var{m}\"} where @var{n} and @var{m} are positive integers, the ports @var{n} and @var{m} are used for monitoring the connection, such that port @var{n} is the base monitoring port and @var{m} is the echo port." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18615 +#: guix-git/doc/guix.texi:18977 #, no-wrap msgid "@code{ssh-options} (default @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18619 +#: guix-git/doc/guix.texi:18981 msgid "The list of command-line arguments to pass to @command{ssh} when it is run. Options @option{-f} and @option{-M} are reserved for AutoSSH and may cause undefined behaviour." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18623 +#: guix-git/doc/guix.texi:18985 #, no-wrap msgid "WebSSH" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18624 +#: guix-git/doc/guix.texi:18986 #, no-wrap msgid "{Scheme Variable} webssh-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18630 +#: guix-git/doc/guix.texi:18992 msgid "This is the type for the @uref{https://webssh.huashengdun.org/, WebSSH} program that runs a web SSH client. WebSSH can be run manually from the command-line by passing arguments to the binary @command{wssh} from the package @code{webssh}, but it can also be run as a Guix service. This latter use case is documented here." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18636 +#: guix-git/doc/guix.texi:18998 msgid "For example, to specify a service running WebSSH on loopback interface on port @code{8888} with reject policy with a list of allowed to connection hosts, and NGINX as a reverse-proxy to this service listening for HTTPS connection, add this call to the operating system's @code{services} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18644 +#: guix-git/doc/guix.texi:19006 #, no-wrap msgid "" "(service webssh-service-type\n" @@ -32877,7 +33467,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18660 +#: guix-git/doc/guix.texi:19022 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -32898,128 +33488,128 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18663 +#: guix-git/doc/guix.texi:19025 #, no-wrap msgid "{Data Type} webssh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18665 +#: guix-git/doc/guix.texi:19027 msgid "Data type representing the configuration for @code{webssh-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18667 +#: guix-git/doc/guix.texi:19029 #, no-wrap msgid "@code{package} (default: @var{webssh})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18669 +#: guix-git/doc/guix.texi:19031 msgid "@code{webssh} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18670 +#: guix-git/doc/guix.texi:19032 #, no-wrap msgid "@code{user-name} (default: @var{\"webssh\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18673 +#: guix-git/doc/guix.texi:19035 msgid "User name or user ID that file transfers to and from that module should take place." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18674 +#: guix-git/doc/guix.texi:19036 #, no-wrap msgid "@code{group-name} (default: @var{\"webssh\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18677 +#: guix-git/doc/guix.texi:19039 #, no-wrap msgid "@code{address} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18679 +#: guix-git/doc/guix.texi:19041 msgid "IP address on which @command{webssh} listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18680 +#: guix-git/doc/guix.texi:19042 #, no-wrap msgid "@code{port} (default: @var{8888})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18682 +#: guix-git/doc/guix.texi:19044 msgid "TCP port on which @command{webssh} listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18683 +#: guix-git/doc/guix.texi:19045 #, no-wrap msgid "@code{policy} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18685 +#: guix-git/doc/guix.texi:19047 msgid "Connection policy. @var{reject} policy requires to specify @var{known-hosts}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18686 +#: guix-git/doc/guix.texi:19048 #, no-wrap msgid "@code{known-hosts} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18688 +#: guix-git/doc/guix.texi:19050 msgid "List of hosts which allowed for SSH connection from @command{webssh}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18689 +#: guix-git/doc/guix.texi:19051 #, no-wrap msgid "@code{log-file} (default: @file{\"/var/log/webssh.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18691 +#: guix-git/doc/guix.texi:19053 msgid "Name of the file where @command{webssh} writes its log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18692 +#: guix-git/doc/guix.texi:19054 #, no-wrap msgid "@code{log-level} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18694 +#: guix-git/doc/guix.texi:19056 msgid "Logging level." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18698 +#: guix-git/doc/guix.texi:19060 #, no-wrap msgid "{Scheme Variable} %facebook-host-aliases" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18704 +#: guix-git/doc/guix.texi:19066 msgid "This variable contains a string for use in @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). Each line contains a entry that maps a known server name of the Facebook on-line service---e.g., @code{www.facebook.com}---to the local host---@code{127.0.0.1} or its IPv6 equivalent, @code{::1}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18708 +#: guix-git/doc/guix.texi:19070 msgid "This variable is typically used in the @code{hosts-file} field of an @code{operating-system} declaration (@pxref{operating-system Reference, @file{/etc/hosts}}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18721 +#: guix-git/doc/guix.texi:19083 #, no-wrap msgid "" "(operating-system\n" @@ -33034,176 +33624,176 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18725 +#: guix-git/doc/guix.texi:19087 msgid "This mechanism can prevent programs running locally, such as Web browsers, from accessing Facebook." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18728 +#: guix-git/doc/guix.texi:19090 msgid "The @code{(gnu services avahi)} provides the following definition." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18729 +#: guix-git/doc/guix.texi:19091 #, no-wrap msgid "{Scheme Variable} avahi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18734 +#: guix-git/doc/guix.texi:19096 msgid "This is the service that runs @command{avahi-daemon}, a system-wide mDNS/DNS-SD responder that allows for service discovery and ``zero-configuration'' host name lookups (see @uref{https://avahi.org/}). Its value must be an @code{avahi-configuration} record---see below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18739 +#: guix-git/doc/guix.texi:19101 msgid "This service extends the name service cache daemon (nscd) so that it can resolve @code{.local} host names using @uref{https://0pointer.de/lennart/projects/nss-mdns/, nss-mdns}. @xref{Name Service Switch}, for information on host name resolution." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18742 +#: guix-git/doc/guix.texi:19104 msgid "Additionally, add the @var{avahi} package to the system profile so that commands such as @command{avahi-browse} are directly usable." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18744 +#: guix-git/doc/guix.texi:19106 #, no-wrap msgid "{Data Type} avahi-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18746 +#: guix-git/doc/guix.texi:19108 msgid "Data type representation the configuration for Avahi." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18749 +#: guix-git/doc/guix.texi:19111 #, no-wrap msgid "@code{host-name} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18752 +#: guix-git/doc/guix.texi:19114 msgid "If different from @code{#f}, use that as the host name to publish for this machine; otherwise, use the machine's actual host name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18753 guix-git/doc/guix.texi:29132 +#: guix-git/doc/guix.texi:19115 guix-git/doc/guix.texi:29469 #, no-wrap msgid "@code{publish?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18756 +#: guix-git/doc/guix.texi:19118 msgid "When true, allow host names and services to be published (broadcast) over the network." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18757 +#: guix-git/doc/guix.texi:19119 #, no-wrap msgid "@code{publish-workstation?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18761 +#: guix-git/doc/guix.texi:19123 msgid "When true, @command{avahi-daemon} publishes the machine's host name and IP address via mDNS on the local network. To view the host names published on your local network, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18764 +#: guix-git/doc/guix.texi:19126 #, no-wrap msgid "avahi-browse _workstation._tcp\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18766 +#: guix-git/doc/guix.texi:19128 #, no-wrap msgid "@code{wide-area?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18768 +#: guix-git/doc/guix.texi:19130 msgid "When true, DNS-SD over unicast DNS is enabled." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18769 +#: guix-git/doc/guix.texi:19131 #, no-wrap msgid "@code{ipv4?} (default: @code{#t})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:18770 +#: guix-git/doc/guix.texi:19132 #, no-wrap msgid "@code{ipv6?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18772 +#: guix-git/doc/guix.texi:19134 msgid "These fields determine whether to use IPv4/IPv6 sockets." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18773 +#: guix-git/doc/guix.texi:19135 #, no-wrap msgid "@code{domains-to-browse} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18775 +#: guix-git/doc/guix.texi:19137 msgid "This is a list of domains to browse." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18778 +#: guix-git/doc/guix.texi:19140 #, no-wrap msgid "{Scheme Variable} openvswitch-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18782 +#: guix-git/doc/guix.texi:19144 msgid "This is the type of the @uref{https://www.openvswitch.org, Open vSwitch} service, whose value should be an @code{openvswitch-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18784 +#: guix-git/doc/guix.texi:19146 #, no-wrap msgid "{Data Type} openvswitch-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18788 +#: guix-git/doc/guix.texi:19150 msgid "Data type representing the configuration of Open vSwitch, a multilayer virtual switch which is designed to enable massive network automation through programmatic extension." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18790 +#: guix-git/doc/guix.texi:19152 #, no-wrap msgid "@code{package} (default: @var{openvswitch})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18792 +#: guix-git/doc/guix.texi:19154 msgid "Package object of the Open vSwitch." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18796 +#: guix-git/doc/guix.texi:19158 #, no-wrap msgid "{Scheme Variable} pagekite-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18801 +#: guix-git/doc/guix.texi:19163 msgid "This is the service type for the @uref{https://pagekite.net, PageKite} service, a tunneling solution for making localhost servers publicly visible, even from behind restrictive firewalls or NAT without forwarded ports. The value for this service type is a @code{pagekite-configuration} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18803 +#: guix-git/doc/guix.texi:19165 msgid "Here's an example exposing the local HTTP and SSH daemons:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18810 +#: guix-git/doc/guix.texi:19172 #, no-wrap msgid "" "(service pagekite-service-type\n" @@ -33214,110 +33804,110 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18813 +#: guix-git/doc/guix.texi:19175 #, no-wrap msgid "{Data Type} pagekite-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18815 +#: guix-git/doc/guix.texi:19177 msgid "Data type representing the configuration of PageKite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18817 +#: guix-git/doc/guix.texi:19179 #, no-wrap msgid "@code{package} (default: @var{pagekite})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18819 +#: guix-git/doc/guix.texi:19181 msgid "Package object of PageKite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18820 +#: guix-git/doc/guix.texi:19182 #, no-wrap msgid "@code{kitename} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18822 +#: guix-git/doc/guix.texi:19184 msgid "PageKite name for authenticating to the frontend server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18823 +#: guix-git/doc/guix.texi:19185 #, no-wrap msgid "@code{kitesecret} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18826 +#: guix-git/doc/guix.texi:19188 msgid "Shared secret for authenticating to the frontend server. You should probably put this inside @code{extra-file} instead." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18827 +#: guix-git/doc/guix.texi:19189 #, no-wrap msgid "@code{frontend} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18830 +#: guix-git/doc/guix.texi:19192 msgid "Connect to the named PageKite frontend server instead of the @uref{https://pagekite.net,,pagekite.net} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18831 +#: guix-git/doc/guix.texi:19193 #, no-wrap msgid "@code{kites} (default: @code{'(\"http:@@kitename:localhost:80:@@kitesecret\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18834 +#: guix-git/doc/guix.texi:19196 msgid "List of service kites to use. Exposes HTTP on port 80 by default. The format is @code{proto:kitename:host:port:secret}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18835 +#: guix-git/doc/guix.texi:19197 #, no-wrap msgid "@code{extra-file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18838 +#: guix-git/doc/guix.texi:19200 msgid "Extra configuration file to read, which you are expected to create manually. Use this to add additional options and manage shared secrets out-of-band." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18842 +#: guix-git/doc/guix.texi:19204 #, no-wrap msgid "{Scheme Variable} yggdrasil-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18846 +#: guix-git/doc/guix.texi:19208 msgid "The service type for connecting to the @uref{https://yggdrasil-network.github.io/, Yggdrasil network}, an early-stage implementation of a fully end-to-end encrypted IPv6 network." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:18853 +#: guix-git/doc/guix.texi:19215 msgid "Yggdrasil provides name-independent routing with cryptographically generated addresses. Static addressing means you can keep the same address as long as you want, even if you move to a new location, or generate a new address (by generating new keys) whenever you want. @uref{https://yggdrasil-network.github.io/2018/07/28/addressing.html}" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18857 +#: guix-git/doc/guix.texi:19219 msgid "Pass it a value of @code{yggdrasil-configuration} to connect it to public peers and/or local peers." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18861 +#: guix-git/doc/guix.texi:19223 msgid "Here is an example using public peers and a static address. The static signing and encryption keys are defined in @file{/etc/yggdrasil-private.conf} (the default value for @code{config-file})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18873 +#: guix-git/doc/guix.texi:19235 #, no-wrap msgid "" ";; part of the operating-system declaration\n" @@ -33333,7 +33923,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18880 +#: guix-git/doc/guix.texi:19242 #, no-wrap msgid "" "# sample content for /etc/yggdrasil-private.conf\n" @@ -33345,7 +33935,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18883 +#: guix-git/doc/guix.texi:19245 #, no-wrap msgid "" " # Your private encryption key. DO NOT share this with anyone!\n" @@ -33354,7 +33944,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18887 +#: guix-git/doc/guix.texi:19249 #, no-wrap msgid "" " # Your public signing key. You should not ordinarily need to share\n" @@ -33364,7 +33954,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18891 +#: guix-git/doc/guix.texi:19253 #, no-wrap msgid "" " # Your private signing key. DO NOT share this with anyone!\n" @@ -33373,124 +33963,124 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18894 +#: guix-git/doc/guix.texi:19256 #, no-wrap msgid "{Data Type} yggdrasil-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18896 +#: guix-git/doc/guix.texi:19258 msgid "Data type representing the configuration of Yggdrasil." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18898 +#: guix-git/doc/guix.texi:19260 #, no-wrap msgid "@code{package} (default: @code{yggdrasil})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18900 +#: guix-git/doc/guix.texi:19262 msgid "Package object of Yggdrasil." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18901 +#: guix-git/doc/guix.texi:19263 #, no-wrap msgid "@code{json-config} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18907 +#: guix-git/doc/guix.texi:19269 msgid "Contents of @file{/etc/yggdrasil.conf}. Will be merged with @file{/etc/yggdrasil-private.conf}. Note that these settings are stored in the Guix store, which is readable to all users. @strong{Do not store your private keys in it}. See the output of @code{yggdrasil -genconf} for a quick overview of valid keys and their default values." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18908 +#: guix-git/doc/guix.texi:19270 #, no-wrap msgid "@code{autoconf?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18911 +#: guix-git/doc/guix.texi:19273 msgid "Whether to use automatic mode. Enabling it makes Yggdrasil use adynamic IP and peer with IPv6 neighbors." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18914 +#: guix-git/doc/guix.texi:19276 msgid "How much detail to include in logs. Use @code{'debug} for more detail." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18915 +#: guix-git/doc/guix.texi:19277 #, no-wrap msgid "@code{log-to} (default: @code{'stdout})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18919 +#: guix-git/doc/guix.texi:19281 msgid "Where to send logs. By default, the service logs standard output to @file{/var/log/yggdrasil.log}. The alternative is @code{'syslog}, which sends output to the running syslog service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18920 +#: guix-git/doc/guix.texi:19282 #, no-wrap msgid "@code{config-file} (default: @code{\"/etc/yggdrasil-private.conf\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18927 +#: guix-git/doc/guix.texi:19289 msgid "What HJSON file to load sensitive data from. This is where private keys should be stored, which are necessary to specify if you don't want a randomized address after each restart. Use @code{#f} to disable. Options defined in this file take precedence over @code{json-config}. Use the output of @code{yggdrasil -genconf} as a starting point. To configure a static address, delete everything except these options:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18929 +#: guix-git/doc/guix.texi:19291 #, no-wrap msgid "EncryptionPublicKey" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18930 +#: guix-git/doc/guix.texi:19292 #, no-wrap msgid "EncryptionPrivateKey" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18931 +#: guix-git/doc/guix.texi:19293 #, no-wrap msgid "SigningPublicKey" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18932 +#: guix-git/doc/guix.texi:19294 #, no-wrap msgid "SigningPrivateKey" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18937 +#: guix-git/doc/guix.texi:19299 #, no-wrap msgid "IPFS" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18938 +#: guix-git/doc/guix.texi:19300 #, no-wrap msgid "{Scheme Variable} ipfs-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18942 +#: guix-git/doc/guix.texi:19304 msgid "The service type for connecting to the @uref{https://ipfs.io,IPFS network}, a global, versioned, peer-to-peer file system. Pass it a @code{ipfs-configuration} to change the ports used for the gateway and API." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18944 +#: guix-git/doc/guix.texi:19306 msgid "Here's an example configuration, using some non-standard ports:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18950 +#: guix-git/doc/guix.texi:19312 #, no-wrap msgid "" "(service ipfs-service-type\n" @@ -33500,68 +34090,68 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18953 +#: guix-git/doc/guix.texi:19315 #, no-wrap msgid "{Data Type} ipfs-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18955 +#: guix-git/doc/guix.texi:19317 msgid "Data type representing the configuration of IPFS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18957 +#: guix-git/doc/guix.texi:19319 #, no-wrap msgid "@code{package} (default: @code{go-ipfs})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18959 +#: guix-git/doc/guix.texi:19321 msgid "Package object of IPFS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18960 +#: guix-git/doc/guix.texi:19322 #, no-wrap msgid "@code{gateway} (default: @code{\"/ip4/127.0.0.1/tcp/8082\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18962 +#: guix-git/doc/guix.texi:19324 msgid "Address of the gateway, in ‘multiaddress’ format." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18963 +#: guix-git/doc/guix.texi:19325 #, no-wrap msgid "@code{api} (default: @code{\"/ip4/127.0.0.1/tcp/5001\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18965 +#: guix-git/doc/guix.texi:19327 msgid "Address of the API endpoint, in ‘multiaddress’ format." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18968 +#: guix-git/doc/guix.texi:19330 #, no-wrap msgid "keepalived" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18969 +#: guix-git/doc/guix.texi:19331 #, no-wrap msgid "{Scheme Variable} keepalived-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18974 +#: guix-git/doc/guix.texi:19336 msgid "This is the type for the @uref{https://www.keepalived.org/, Keepalived} routing software, @command{keepalived}. Its value must be an @code{keepalived-configuration} record as in this example for master machine:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18979 +#: guix-git/doc/guix.texi:19341 #, no-wrap msgid "" "(service keepalived-service-type\n" @@ -33570,12 +34160,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18982 +#: guix-git/doc/guix.texi:19344 msgid "where @file{keepalived-master.conf}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18994 +#: guix-git/doc/guix.texi:19356 #, no-wrap msgid "" "vrrp_instance my-group @{\n" @@ -33591,12 +34181,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18997 +#: guix-git/doc/guix.texi:19359 msgid "and for backup machine:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19002 +#: guix-git/doc/guix.texi:19364 #, no-wrap msgid "" "(service keepalived-service-type\n" @@ -33605,12 +34195,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19005 +#: guix-git/doc/guix.texi:19367 msgid "where @file{keepalived-backup.conf}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:19017 +#: guix-git/doc/guix.texi:19379 #, no-wrap msgid "" "vrrp_instance my-group @{\n" @@ -33626,135 +34216,135 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19023 +#: guix-git/doc/guix.texi:19385 #, no-wrap msgid "unattended upgrades" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19024 +#: guix-git/doc/guix.texi:19386 #, no-wrap msgid "upgrades, unattended" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19029 +#: guix-git/doc/guix.texi:19391 msgid "Guix provides a service to perform @emph{unattended upgrades}: periodically, the system automatically reconfigures itself from the latest Guix. Guix System has several properties that make unattended upgrades safe:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19034 +#: guix-git/doc/guix.texi:19396 msgid "upgrades are transactional (either the upgrade succeeds or it fails, but you cannot end up with an ``in-between'' system state);" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19038 +#: guix-git/doc/guix.texi:19400 msgid "the upgrade log is kept---you can view it with @command{guix system list-generations}---and you can roll back to any previous generation, should the upgraded system fail to behave as intended;" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19041 +#: guix-git/doc/guix.texi:19403 msgid "channel code is authenticated so you know you can only run genuine code (@pxref{Channels});" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19044 +#: guix-git/doc/guix.texi:19406 msgid "@command{guix system reconfigure} prevents downgrades, which makes it immune to @dfn{downgrade attacks}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19049 +#: guix-git/doc/guix.texi:19411 msgid "To set up unattended upgrades, add an instance of @code{unattended-upgrade-service-type} like the one below to the list of your operating system services:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19052 +#: guix-git/doc/guix.texi:19414 #, no-wrap msgid "(service unattended-upgrade-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19059 +#: guix-git/doc/guix.texi:19421 msgid "The defaults above set up weekly upgrades: every Sunday at midnight. You do not need to provide the operating system configuration file: it uses @file{/run/current-system/configuration.scm}, which ensures it always uses your latest configuration---@pxref{provenance-service-type}, for more information about this file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19065 +#: guix-git/doc/guix.texi:19427 msgid "There are several things that can be configured, in particular the periodicity and services (daemons) to be restarted upon completion. When the upgrade is successful, the service takes care of deleting system generations older that some threshold, as per @command{guix system delete-generations}. See the reference below for details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19069 +#: guix-git/doc/guix.texi:19431 msgid "To ensure that upgrades are actually happening, you can run @command{guix system describe}. To investigate upgrade failures, visit the unattended upgrade log file (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19070 +#: guix-git/doc/guix.texi:19432 #, no-wrap msgid "{Scheme Variable} unattended-upgrade-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19074 +#: guix-git/doc/guix.texi:19436 msgid "This is the service type for unattended upgrades. It sets up an mcron job (@pxref{Scheduled Job Execution}) that runs @command{guix system reconfigure} from the latest version of the specified channels." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19077 +#: guix-git/doc/guix.texi:19439 msgid "Its value must be a @code{unattended-upgrade-configuration} record (see below)." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19079 +#: guix-git/doc/guix.texi:19441 #, no-wrap msgid "{Data Type} unattended-upgrade-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19082 +#: guix-git/doc/guix.texi:19444 msgid "This data type represents the configuration of the unattended upgrade service. The following fields are available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19084 +#: guix-git/doc/guix.texi:19446 #, no-wrap msgid "@code{schedule} (default: @code{\"30 01 * * 0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19088 +#: guix-git/doc/guix.texi:19450 msgid "This is the schedule of upgrades, expressed as a gexp containing an mcron job schedule (@pxref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19089 +#: guix-git/doc/guix.texi:19451 #, no-wrap msgid "@code{channels} (default: @code{#~%default-channels})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19093 +#: guix-git/doc/guix.texi:19455 msgid "This gexp specifies the channels to use for the upgrade (@pxref{Channels}). By default, the tip of the official @code{guix} channel is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19094 +#: guix-git/doc/guix.texi:19456 #, no-wrap msgid "@code{operating-system-file} (default: @code{\"/run/current-system/configuration.scm\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19097 +#: guix-git/doc/guix.texi:19459 msgid "This field specifies the operating system configuration file to use. The default is to reuse the config file of the current configuration." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19103 +#: guix-git/doc/guix.texi:19465 msgid "There are cases, though, where referring to @file{/run/current-system/configuration.scm} is not enough, for instance because that file refers to extra files (SSH public keys, extra configuration files, etc.) @i{via} @code{local-file} and similar constructs. For those cases, we recommend something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19109 +#: guix-git/doc/guix.texi:19471 #, no-wrap msgid "" "(unattended-upgrade-configuration\n" @@ -33764,312 +34354,312 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19116 +#: guix-git/doc/guix.texi:19478 msgid "The effect here is to import all of the current directory into the store, and to refer to @file{config.scm} within that directory. Therefore, uses of @code{local-file} within @file{config.scm} will work as expected. @xref{G-Expressions}, for information about @code{local-file} and @code{file-append}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19117 +#: guix-git/doc/guix.texi:19479 #, no-wrap msgid "@code{services-to-restart} (default: @code{'(mcron)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19120 +#: guix-git/doc/guix.texi:19482 msgid "This field specifies the Shepherd services to restart when the upgrade completes." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19127 +#: guix-git/doc/guix.texi:19489 msgid "Those services are restarted right away upon completion, as with @command{herd restart}, which ensures that the latest version is running---remember that by default @command{guix system reconfigure} only restarts services that are not currently running, which is conservative: it minimizes disruption but leaves outdated services running." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19131 +#: guix-git/doc/guix.texi:19493 msgid "Use @command{herd status} to find out candidates for restarting. @xref{Services}, for general information about services. Common services to restart would include @code{ntpd} and @code{ssh-daemon}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19134 +#: guix-git/doc/guix.texi:19496 msgid "By default, the @code{mcron} service is restarted. This ensures that the latest version of the unattended upgrade job will be used next time." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19135 +#: guix-git/doc/guix.texi:19497 #, no-wrap msgid "@code{system-expiration} (default: @code{(* 3 30 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19139 +#: guix-git/doc/guix.texi:19501 msgid "This is the expiration time in seconds for system generations. System generations older that this amount of time are deleted with @command{guix system delete-generations} when an upgrade completes." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:19144 +#: guix-git/doc/guix.texi:19506 msgid "The unattended upgrade service does not run the garbage collector. You will probably want to set up your own mcron job to run @command{guix gc} periodically." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19146 +#: guix-git/doc/guix.texi:19508 #, no-wrap msgid "@code{maximum-duration} (default: @code{3600})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19149 +#: guix-git/doc/guix.texi:19511 msgid "Maximum duration in seconds for the upgrade; past that time, the upgrade aborts." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19152 +#: guix-git/doc/guix.texi:19514 msgid "This is primarily useful to ensure the upgrade does not end up rebuilding or re-downloading ``the world''." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19153 +#: guix-git/doc/guix.texi:19515 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/unattended-upgrade.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19155 +#: guix-git/doc/guix.texi:19517 msgid "File where unattended upgrades are logged." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19161 +#: guix-git/doc/guix.texi:19523 #, no-wrap msgid "X11" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19162 +#: guix-git/doc/guix.texi:19524 #, no-wrap msgid "X Window System" -msgstr "" +msgstr "Systém okien X" #. type: cindex -#: guix-git/doc/guix.texi:19163 guix-git/doc/guix.texi:19436 +#: guix-git/doc/guix.texi:19525 guix-git/doc/guix.texi:19798 #, no-wrap msgid "login manager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19168 +#: guix-git/doc/guix.texi:19530 msgid "Support for the X Window graphical display system---specifically Xorg---is provided by the @code{(gnu services xorg)} module. Note that there is no @code{xorg-service} procedure. Instead, the X server is started by the @dfn{login manager}, by default the GNOME Display Manager (GDM)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19169 +#: guix-git/doc/guix.texi:19531 #, no-wrap msgid "GDM" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19170 +#: guix-git/doc/guix.texi:19532 #, no-wrap msgid "GNOME, login manager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19174 +#: guix-git/doc/guix.texi:19536 msgid "GDM of course allows users to log in into window managers and desktop environments other than GNOME; for those using GNOME, GDM is required for features such as automatic screen locking." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19175 +#: guix-git/doc/guix.texi:19537 #, no-wrap msgid "window manager" -msgstr "" +msgstr "správca okien" #. type: Plain text -#: guix-git/doc/guix.texi:19180 +#: guix-git/doc/guix.texi:19542 msgid "To use X11, you must install at least one @dfn{window manager}---for example the @code{windowmaker} or @code{openbox} packages---preferably by adding it to the @code{packages} field of your operating system definition (@pxref{operating-system Reference, system-wide packages})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:19186 +#: guix-git/doc/guix.texi:19548 msgid "wayland-gdm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19186 +#: guix-git/doc/guix.texi:19548 msgid "GDM also supports Wayland: it can itself use Wayland instead of X11 for its user interface, and it can also start Wayland sessions. The former is required for the latter, to enable, set @code{wayland?} to @code{#t} in @code{gdm-configuration}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19187 +#: guix-git/doc/guix.texi:19549 #, no-wrap msgid "{Scheme Variable} gdm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19192 +#: guix-git/doc/guix.texi:19554 msgid "This is the type for the @uref{https://wiki.gnome.org/Projects/GDM/, GNOME Desktop Manager} (GDM), a program that manages graphical display servers and handles graphical user logins. Its value must be a @code{gdm-configuration} (see below)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19193 +#: guix-git/doc/guix.texi:19555 #, no-wrap msgid "session types" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19201 +#: guix-git/doc/guix.texi:19563 msgid "GDM looks for @dfn{session types} described by the @file{.desktop} files in @file{/run/current-system/profile/share/xsessions} (for X11 sessions) and @file{/run/current-system/profile/share/wayland-sessions} (for Wayland sessions) and allows users to choose a session from the log-in screen. Packages such as @code{gnome}, @code{xfce}, @code{i3} and @code{sway} provide @file{.desktop} files; adding them to the system-wide set of packages automatically makes them available at the log-in screen." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19205 +#: guix-git/doc/guix.texi:19567 msgid "In addition, @file{~/.xsession} files are honored. When available, @file{~/.xsession} must be an executable that starts a window manager and/or other X clients." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19207 +#: guix-git/doc/guix.texi:19569 #, no-wrap msgid "{Data Type} gdm-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19209 guix-git/doc/guix.texi:19291 +#: guix-git/doc/guix.texi:19571 guix-git/doc/guix.texi:19653 #, no-wrap msgid "@code{auto-login?} (default: @code{#f})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:19210 +#: guix-git/doc/guix.texi:19572 #, no-wrap msgid "@code{default-user} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19212 +#: guix-git/doc/guix.texi:19574 msgid "When @code{auto-login?} is false, GDM presents a log-in screen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19215 +#: guix-git/doc/guix.texi:19577 msgid "When @code{auto-login?} is true, GDM logs in directly as @code{default-user}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19216 guix-git/doc/guix.texi:25077 -#: guix-git/doc/guix.texi:26786 guix-git/doc/guix.texi:31266 -#: guix-git/doc/guix.texi:31295 guix-git/doc/guix.texi:31324 -#: guix-git/doc/guix.texi:31351 guix-git/doc/guix.texi:31406 -#: guix-git/doc/guix.texi:31431 guix-git/doc/guix.texi:31458 -#: guix-git/doc/guix.texi:31484 guix-git/doc/guix.texi:31526 +#: guix-git/doc/guix.texi:19578 guix-git/doc/guix.texi:25439 +#: guix-git/doc/guix.texi:27123 guix-git/doc/guix.texi:31631 +#: guix-git/doc/guix.texi:31660 guix-git/doc/guix.texi:31689 +#: guix-git/doc/guix.texi:31716 guix-git/doc/guix.texi:31771 +#: guix-git/doc/guix.texi:31796 guix-git/doc/guix.texi:31823 +#: guix-git/doc/guix.texi:31849 guix-git/doc/guix.texi:31891 #, no-wrap msgid "@code{debug?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19218 +#: guix-git/doc/guix.texi:19580 msgid "When true, GDM writes debug messages to its log." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19219 +#: guix-git/doc/guix.texi:19581 #, no-wrap msgid "@code{gnome-shell-assets} (default: ...)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19221 +#: guix-git/doc/guix.texi:19583 msgid "List of GNOME Shell assets needed by GDM: icon theme, fonts, etc." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19222 +#: guix-git/doc/guix.texi:19584 #, no-wrap msgid "@code{xorg-configuration} (default: @code{(xorg-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19224 guix-git/doc/guix.texi:19318 -#: guix-git/doc/guix.texi:19402 +#: guix-git/doc/guix.texi:19586 guix-git/doc/guix.texi:19680 +#: guix-git/doc/guix.texi:19764 msgid "Configuration of the Xorg graphical server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19225 +#: guix-git/doc/guix.texi:19587 #, no-wrap msgid "@code{xsession} (default: @code{(xinitrc)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19227 guix-git/doc/guix.texi:19417 +#: guix-git/doc/guix.texi:19589 guix-git/doc/guix.texi:19779 msgid "Script to run before starting a X session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19228 +#: guix-git/doc/guix.texi:19590 #, no-wrap msgid "@code{dbus-daemon} (default: @code{dbus-daemon-wrapper})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19230 +#: guix-git/doc/guix.texi:19592 msgid "File name of the @code{dbus-daemon} executable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19231 +#: guix-git/doc/guix.texi:19593 #, no-wrap msgid "@code{gdm} (default: @code{gdm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19233 +#: guix-git/doc/guix.texi:19595 msgid "The GDM package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19234 +#: guix-git/doc/guix.texi:19596 #, no-wrap msgid "@code{wayland?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19236 +#: guix-git/doc/guix.texi:19598 msgid "When true, enables Wayland in GDM, necessary to use Wayland sessions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19237 +#: guix-git/doc/guix.texi:19599 #, no-wrap msgid "@code{wayland-session} (default: @code{gdm-wayland-session-wrapper})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19240 +#: guix-git/doc/guix.texi:19602 msgid "The Wayland session wrapper to use, needed to setup the environment." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19243 +#: guix-git/doc/guix.texi:19605 #, no-wrap msgid "{Scheme Variable} slim-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19245 +#: guix-git/doc/guix.texi:19607 msgid "This is the type for the SLiM graphical login manager for X11." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19249 +#: guix-git/doc/guix.texi:19611 msgid "Like GDM, SLiM looks for session types described by @file{.desktop} files and allows users to choose a session from the log-in screen using @kbd{F1}. It also honors @file{~/.xsession} files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19256 +#: guix-git/doc/guix.texi:19618 msgid "Unlike GDM, SLiM does not spawn the user session on a different VT after logging in, which means that you can only start one graphical session. If you want to be able to run multiple graphical sessions at the same time you have to add multiple SLiM services to your system services. The following example shows how to replace the default GDM service with two SLiM services on tty7 and tty8." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19261 +#: guix-git/doc/guix.texi:19623 #, no-wrap msgid "" "(use-modules (gnu services)\n" @@ -34079,7 +34669,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19272 +#: guix-git/doc/guix.texi:19634 #, no-wrap msgid "" "(operating-system\n" @@ -34095,491 +34685,491 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19276 +#: guix-git/doc/guix.texi:19638 #, no-wrap msgid "{Data Type} slim-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19278 +#: guix-git/doc/guix.texi:19640 msgid "Data type representing the configuration of @code{slim-service-type}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19282 +#: guix-git/doc/guix.texi:19644 msgid "Whether to allow logins with empty passwords." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19283 +#: guix-git/doc/guix.texi:19645 #, no-wrap msgid "@code{gnupg?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19290 +#: guix-git/doc/guix.texi:19652 msgid "If enabled, @code{pam-gnupg} will attempt to automatically unlock the user's GPG keys with the login password via @code{gpg-agent}. The keygrips of all keys to be unlocked should be written to @file{~/.pam-gnupg}, and can be queried with @code{gpg -K --with-keygrip}. Presetting passphrases must be enabled by adding @code{allow-preset-passphrase} in @file{~/.gnupg/gpg-agent.conf}." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:19292 +#: guix-git/doc/guix.texi:19654 #, no-wrap msgid "@code{default-user} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19294 +#: guix-git/doc/guix.texi:19656 msgid "When @code{auto-login?} is false, SLiM presents a log-in screen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19297 +#: guix-git/doc/guix.texi:19659 msgid "When @code{auto-login?} is true, SLiM logs in directly as @code{default-user}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19298 +#: guix-git/doc/guix.texi:19660 #, no-wrap msgid "@code{theme} (default: @code{%default-slim-theme})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:19299 +#: guix-git/doc/guix.texi:19661 #, no-wrap msgid "@code{theme-name} (default: @code{%default-slim-theme-name})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19301 +#: guix-git/doc/guix.texi:19663 msgid "The graphical theme to use and its name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19302 +#: guix-git/doc/guix.texi:19664 #, no-wrap msgid "@code{auto-login-session} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19305 +#: guix-git/doc/guix.texi:19667 msgid "If true, this must be the name of the executable to start as the default session---e.g., @code{(file-append windowmaker \"/bin/windowmaker\")}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19309 +#: guix-git/doc/guix.texi:19671 msgid "If false, a session described by one of the available @file{.desktop} files in @code{/run/current-system/profile} and @code{~/.guix-profile} will be used." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:19314 +#: guix-git/doc/guix.texi:19676 msgid "You must install at least one window manager in the system profile or in your user profile. Failing to do that, if @code{auto-login-session} is false, you will be unable to log in." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19316 guix-git/doc/guix.texi:19400 +#: guix-git/doc/guix.texi:19678 guix-git/doc/guix.texi:19762 #, no-wrap msgid "@code{xorg-configuration} (default @code{(xorg-configuration)})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19319 +#: guix-git/doc/guix.texi:19681 #, no-wrap msgid "@code{display} (default @code{\":0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19321 +#: guix-git/doc/guix.texi:19683 msgid "The display on which to start the Xorg graphical server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19322 +#: guix-git/doc/guix.texi:19684 #, no-wrap msgid "@code{vt} (default @code{\"vt7\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19324 +#: guix-git/doc/guix.texi:19686 msgid "The VT on which to start the Xorg graphical server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19325 +#: guix-git/doc/guix.texi:19687 #, no-wrap msgid "@code{xauth} (default: @code{xauth})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19327 +#: guix-git/doc/guix.texi:19689 msgid "The XAuth package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19328 +#: guix-git/doc/guix.texi:19690 #, no-wrap msgid "@code{shepherd} (default: @code{shepherd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19331 +#: guix-git/doc/guix.texi:19693 msgid "The Shepherd package used when invoking @command{halt} and @command{reboot}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19332 +#: guix-git/doc/guix.texi:19694 #, no-wrap msgid "@code{sessreg} (default: @code{sessreg})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19334 +#: guix-git/doc/guix.texi:19696 msgid "The sessreg package used in order to register the session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19335 +#: guix-git/doc/guix.texi:19697 #, no-wrap msgid "@code{slim} (default: @code{slim})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19337 +#: guix-git/doc/guix.texi:19699 msgid "The SLiM package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19340 +#: guix-git/doc/guix.texi:19702 #, no-wrap msgid "{Scheme Variable} %default-theme" msgstr "" #. type: defvrx -#: guix-git/doc/guix.texi:19341 +#: guix-git/doc/guix.texi:19703 #, no-wrap msgid "{Scheme Variable} %default-theme-name" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19343 +#: guix-git/doc/guix.texi:19705 msgid "The default SLiM theme and its name." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19346 guix-git/doc/guix.texi:19453 +#: guix-git/doc/guix.texi:19708 guix-git/doc/guix.texi:19815 #, no-wrap msgid "{Data Type} sddm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19348 +#: guix-git/doc/guix.texi:19710 msgid "This is the data type representing the SDDM service configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19350 +#: guix-git/doc/guix.texi:19712 #, no-wrap msgid "@code{display-server} (default: \"x11\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19353 +#: guix-git/doc/guix.texi:19715 msgid "Select display server to use for the greeter. Valid values are @samp{\"x11\"} or @samp{\"wayland\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19354 +#: guix-git/doc/guix.texi:19716 #, no-wrap msgid "@code{numlock} (default: \"on\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19356 +#: guix-git/doc/guix.texi:19718 msgid "Valid values are @samp{\"on\"}, @samp{\"off\"} or @samp{\"none\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19357 +#: guix-git/doc/guix.texi:19719 #, no-wrap msgid "@code{halt-command} (default @code{#~(string-apppend #$shepherd \"/sbin/halt\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19359 +#: guix-git/doc/guix.texi:19721 msgid "Command to run when halting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19360 +#: guix-git/doc/guix.texi:19722 #, no-wrap msgid "@code{reboot-command} (default @code{#~(string-append #$shepherd \"/sbin/reboot\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19362 +#: guix-git/doc/guix.texi:19724 msgid "Command to run when rebooting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19363 +#: guix-git/doc/guix.texi:19725 #, no-wrap msgid "@code{theme} (default \"maldives\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19366 +#: guix-git/doc/guix.texi:19728 msgid "Theme to use. Default themes provided by SDDM are @samp{\"elarun\"}, @samp{\"maldives\"} or @samp{\"maya\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19367 +#: guix-git/doc/guix.texi:19729 #, no-wrap msgid "@code{themes-directory} (default \"/run/current-system/profile/share/sddm/themes\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19369 +#: guix-git/doc/guix.texi:19731 msgid "Directory to look for themes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19370 +#: guix-git/doc/guix.texi:19732 #, no-wrap msgid "@code{faces-directory} (default \"/run/current-system/profile/share/sddm/faces\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19372 +#: guix-git/doc/guix.texi:19734 msgid "Directory to look for faces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19373 +#: guix-git/doc/guix.texi:19735 #, no-wrap msgid "@code{default-path} (default \"/run/current-system/profile/bin\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19375 +#: guix-git/doc/guix.texi:19737 msgid "Default PATH to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19376 +#: guix-git/doc/guix.texi:19738 #, no-wrap msgid "@code{minimum-uid} (default: 1000)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19378 +#: guix-git/doc/guix.texi:19740 msgid "Minimum UID displayed in SDDM and allowed for log-in." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19379 +#: guix-git/doc/guix.texi:19741 #, no-wrap msgid "@code{maximum-uid} (default: 2000)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19381 +#: guix-git/doc/guix.texi:19743 msgid "Maximum UID to display in SDDM." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19382 +#: guix-git/doc/guix.texi:19744 #, no-wrap msgid "@code{remember-last-user?} (default #t)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19384 +#: guix-git/doc/guix.texi:19746 msgid "Remember last user." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19385 +#: guix-git/doc/guix.texi:19747 #, no-wrap msgid "@code{remember-last-session?} (default #t)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19387 +#: guix-git/doc/guix.texi:19749 msgid "Remember last session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19388 +#: guix-git/doc/guix.texi:19750 #, no-wrap msgid "@code{hide-users} (default \"\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19390 +#: guix-git/doc/guix.texi:19752 msgid "Usernames to hide from SDDM greeter." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19391 +#: guix-git/doc/guix.texi:19753 #, no-wrap msgid "@code{hide-shells} (default @code{#~(string-append #$shadow \"/sbin/nologin\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19393 +#: guix-git/doc/guix.texi:19755 msgid "Users with shells listed will be hidden from the SDDM greeter." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19394 +#: guix-git/doc/guix.texi:19756 #, no-wrap msgid "@code{session-command} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/wayland-session\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19396 +#: guix-git/doc/guix.texi:19758 msgid "Script to run before starting a wayland session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19397 +#: guix-git/doc/guix.texi:19759 #, no-wrap msgid "@code{sessions-directory} (default \"/run/current-system/profile/share/wayland-sessions\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19399 +#: guix-git/doc/guix.texi:19761 msgid "Directory to look for desktop files starting wayland sessions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19403 +#: guix-git/doc/guix.texi:19765 #, no-wrap msgid "@code{xauth-path} (default @code{#~(string-append #$xauth \"/bin/xauth\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19405 +#: guix-git/doc/guix.texi:19767 msgid "Path to xauth." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19406 +#: guix-git/doc/guix.texi:19768 #, no-wrap msgid "@code{xephyr-path} (default @code{#~(string-append #$xorg-server \"/bin/Xephyr\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19408 +#: guix-git/doc/guix.texi:19770 msgid "Path to Xephyr." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19409 +#: guix-git/doc/guix.texi:19771 #, no-wrap msgid "@code{xdisplay-start} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/Xsetup\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19411 +#: guix-git/doc/guix.texi:19773 msgid "Script to run after starting xorg-server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19412 +#: guix-git/doc/guix.texi:19774 #, no-wrap msgid "@code{xdisplay-stop} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/Xstop\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19414 +#: guix-git/doc/guix.texi:19776 msgid "Script to run before stopping xorg-server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19415 +#: guix-git/doc/guix.texi:19777 #, no-wrap msgid "@code{xsession-command} (default: @code{xinitrc})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19418 +#: guix-git/doc/guix.texi:19780 #, no-wrap msgid "@code{xsessions-directory} (default: \"/run/current-system/profile/share/xsessions\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19420 +#: guix-git/doc/guix.texi:19782 msgid "Directory to look for desktop files starting X sessions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19421 +#: guix-git/doc/guix.texi:19783 #, no-wrap msgid "@code{minimum-vt} (default: 7)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19423 +#: guix-git/doc/guix.texi:19785 msgid "Minimum VT to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19424 +#: guix-git/doc/guix.texi:19786 #, no-wrap msgid "@code{auto-login-user} (default \"\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19426 +#: guix-git/doc/guix.texi:19788 msgid "User to use for auto-login." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19427 +#: guix-git/doc/guix.texi:19789 #, no-wrap msgid "@code{auto-login-session} (default \"\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19429 +#: guix-git/doc/guix.texi:19791 msgid "Desktop file to use for auto-login." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19430 +#: guix-git/doc/guix.texi:19792 #, no-wrap msgid "@code{relogin?} (default #f)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19432 +#: guix-git/doc/guix.texi:19794 msgid "Relogin after logout." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19437 +#: guix-git/doc/guix.texi:19799 #, no-wrap msgid "X11 login" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19438 +#: guix-git/doc/guix.texi:19800 #, no-wrap msgid "{Scheme Variable} sddm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19442 +#: guix-git/doc/guix.texi:19804 msgid "This is the type of the service to run the @uref{https://github.com/sddm/sddm,SDDM display manager}. Its value must be a @code{sddm-configuration} record (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19444 +#: guix-git/doc/guix.texi:19806 msgid "Here's an example use:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19450 +#: guix-git/doc/guix.texi:19812 #, no-wrap msgid "" "(service sddm-service-type\n" @@ -34589,265 +35179,265 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19456 +#: guix-git/doc/guix.texi:19818 msgid "This data type represents the configuration of the SDDM login manager. The available fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19458 +#: guix-git/doc/guix.texi:19820 #, no-wrap msgid "@code{sddm} (default: @code{sddm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19460 +#: guix-git/doc/guix.texi:19822 msgid "The SDDM package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19461 +#: guix-git/doc/guix.texi:19823 #, no-wrap msgid "@code{display-server} (default: @code{\"x11\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19463 +#: guix-git/doc/guix.texi:19825 msgid "This must be either @code{\"x11\"} or @code{\"wayland\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19466 +#: guix-git/doc/guix.texi:19828 #, no-wrap msgid "@code{auto-login-user} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19469 +#: guix-git/doc/guix.texi:19831 msgid "If non-empty, this is the user account under which to log in automatically." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19470 +#: guix-git/doc/guix.texi:19832 #, no-wrap msgid "@code{auto-login-session} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19473 +#: guix-git/doc/guix.texi:19835 msgid "If non-empty, this is the @file{.desktop} file name to use as the auto-login session." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19476 +#: guix-git/doc/guix.texi:19838 #, no-wrap msgid "Xorg, configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19477 +#: guix-git/doc/guix.texi:19839 #, no-wrap msgid "{Data Type} xorg-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19482 +#: guix-git/doc/guix.texi:19844 msgid "This data type represents the configuration of the Xorg graphical display server. Note that there is no Xorg service; instead, the X server is started by a ``display manager'' such as GDM, SDDM, and SLiM@. Thus, the configuration of these display managers aggregates an @code{xorg-configuration} record." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19484 +#: guix-git/doc/guix.texi:19846 #, no-wrap msgid "@code{modules} (default: @code{%default-xorg-modules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19487 +#: guix-git/doc/guix.texi:19849 msgid "This is a list of @dfn{module packages} loaded by the Xorg server---e.g., @code{xf86-video-vesa}, @code{xf86-input-keyboard}, and so on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19488 +#: guix-git/doc/guix.texi:19850 #, no-wrap msgid "@code{fonts} (default: @code{%default-xorg-fonts})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19490 +#: guix-git/doc/guix.texi:19852 msgid "This is a list of font directories to add to the server's @dfn{font path}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19491 +#: guix-git/doc/guix.texi:19853 #, no-wrap msgid "@code{drivers} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19495 +#: guix-git/doc/guix.texi:19857 msgid "This must be either the empty list, in which case Xorg chooses a graphics driver automatically, or a list of driver names that will be tried in this order---e.g., @code{(\"modesetting\" \"vesa\")}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19496 +#: guix-git/doc/guix.texi:19858 #, no-wrap msgid "@code{resolutions} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19500 +#: guix-git/doc/guix.texi:19862 msgid "When @code{resolutions} is the empty list, Xorg chooses an appropriate screen resolution. Otherwise, it must be a list of resolutions---e.g., @code{((1024 768) (640 480))}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19501 +#: guix-git/doc/guix.texi:19863 #, no-wrap msgid "keyboard layout, for Xorg" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19502 +#: guix-git/doc/guix.texi:19864 #, no-wrap msgid "keymap, for Xorg" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19506 +#: guix-git/doc/guix.texi:19868 msgid "If this is @code{#f}, Xorg uses the default keyboard layout---usually US English (``qwerty'') for a 105-key PC keyboard." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19510 +#: guix-git/doc/guix.texi:19872 msgid "Otherwise this must be a @code{keyboard-layout} object specifying the keyboard layout in use when Xorg is running. @xref{Keyboard Layout}, for more information on how to specify the keyboard layout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19511 guix-git/doc/guix.texi:21223 -#: guix-git/doc/guix.texi:34046 +#: guix-git/doc/guix.texi:19873 guix-git/doc/guix.texi:21585 +#: guix-git/doc/guix.texi:34483 #, no-wrap msgid "@code{extra-config} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19514 guix-git/doc/guix.texi:34050 +#: guix-git/doc/guix.texi:19876 guix-git/doc/guix.texi:34487 msgid "This is a list of strings or objects appended to the configuration file. It is used to pass extra text to be added verbatim to the configuration file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19515 +#: guix-git/doc/guix.texi:19877 #, no-wrap msgid "@code{server} (default: @code{xorg-server})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19517 +#: guix-git/doc/guix.texi:19879 msgid "This is the package providing the Xorg server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19518 +#: guix-git/doc/guix.texi:19880 #, no-wrap msgid "@code{server-arguments} (default: @code{%default-xorg-server-arguments})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19521 +#: guix-git/doc/guix.texi:19883 msgid "This is the list of command-line arguments to pass to the X server. The default is @code{-nolisten tcp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19524 +#: guix-git/doc/guix.texi:19886 #, no-wrap msgid "{Scheme Procedure} set-xorg-configuration @var{config} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19528 +#: guix-git/doc/guix.texi:19890 msgid "[@var{login-manager-service-type}] Tell the log-in manager (of type @var{login-manager-service-type}) to use @var{config}, an @code{} record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19532 +#: guix-git/doc/guix.texi:19894 msgid "Since the Xorg configuration is embedded in the log-in manager's configuration---e.g., @code{gdm-configuration}---this procedure provides a shorthand to set the Xorg configuration." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19534 +#: guix-git/doc/guix.texi:19896 #, no-wrap msgid "{Scheme Procedure} xorg-start-command [@var{config}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19538 +#: guix-git/doc/guix.texi:19900 msgid "Return a @code{startx} script in which the modules, fonts, etc. specified in @var{config}, are available. The result should be used in place of @code{startx}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19540 +#: guix-git/doc/guix.texi:19902 msgid "Usually the X server is started by a login manager." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19543 +#: guix-git/doc/guix.texi:19905 #, no-wrap msgid "{Scheme Procedure} screen-locker-service @var{package} [@var{program}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19547 +#: guix-git/doc/guix.texi:19909 msgid "Add @var{package}, a package for a screen locker or screen saver whose command is @var{program}, to the set of setuid programs and add a PAM entry for it. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19550 +#: guix-git/doc/guix.texi:19912 #, no-wrap msgid "(screen-locker-service xlockmore \"xlock\")\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19553 +#: guix-git/doc/guix.texi:19915 msgid "makes the good ol' XlockMore usable." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19559 +#: guix-git/doc/guix.texi:19921 #, no-wrap msgid "printer support with CUPS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19563 +#: guix-git/doc/guix.texi:19925 msgid "The @code{(gnu services cups)} module provides a Guix service definition for the CUPS printing service. To add printer support to a Guix system, add a @code{cups-service} to the operating system definition:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19564 +#: guix-git/doc/guix.texi:19926 #, no-wrap msgid "{Scheme Variable} cups-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19568 +#: guix-git/doc/guix.texi:19930 msgid "The service type for the CUPS print server. Its value should be a valid CUPS configuration (see below). To use the default settings, simply write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19570 +#: guix-git/doc/guix.texi:19932 #, no-wrap msgid "(service cups-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19580 +#: guix-git/doc/guix.texi:19942 msgid "The CUPS configuration controls the basic things about your CUPS installation: what interfaces it listens on, what to do if a print job fails, how much logging to do, and so on. To actually add a printer, you have to visit the @url{http://localhost:631} URL, or use a tool such as GNOME's printer configuration services. By default, configuring a CUPS service will generate a self-signed certificate if needed, for secure connections to the print server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19586 +#: guix-git/doc/guix.texi:19948 msgid "Suppose you want to enable the Web interface of CUPS and also add support for Epson printers @i{via} the @code{epson-inkjet-printer-escpr} package and for HP printers @i{via} the @code{hplip-minimal} package. You can do that directly, like this (you need to use the @code{(gnu packages cups)} module):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19593 +#: guix-git/doc/guix.texi:19955 #, no-wrap msgid "" "(service cups-service-type\n" @@ -34858,1584 +35448,1582 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19598 +#: guix-git/doc/guix.texi:19960 msgid "Note: If you wish to use the Qt5 based GUI which comes with the hplip package then it is suggested that you install the @code{hplip} package, either in your OS configuration file or as your user." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19605 +#: guix-git/doc/guix.texi:19967 msgid "The available configuration parameters follow. Each parameter definition is preceded by its type; for example, @samp{string-list foo} indicates that the @code{foo} parameter should be specified as a list of strings. There is also a way to specify the configuration as a string, if you have an old @code{cupsd.conf} file that you want to port over from some other system; see the end for more details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19616 +#: guix-git/doc/guix.texi:19978 msgid "Available @code{cups-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19617 +#: guix-git/doc/guix.texi:19979 #, no-wrap msgid "{@code{cups-configuration} parameter} package cups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19619 guix-git/doc/guix.texi:20387 +#: guix-git/doc/guix.texi:19981 guix-git/doc/guix.texi:20749 msgid "The CUPS package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19621 +#: guix-git/doc/guix.texi:19983 #, no-wrap msgid "{@code{cups-configuration} parameter} package-list extensions (default: @code{(list brlaser cups-filters epson-inkjet-printer-escpr foomatic-filters hplip-minimal splix)})" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19623 +#: guix-git/doc/guix.texi:19985 msgid "Drivers and other extensions to the CUPS package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19625 +#: guix-git/doc/guix.texi:19987 #, no-wrap msgid "{@code{cups-configuration} parameter} files-configuration files-configuration" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19628 +#: guix-git/doc/guix.texi:19990 msgid "Configuration of where to write logs, what directories to use for print spools, and related privileged configuration parameters." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19630 +#: guix-git/doc/guix.texi:19992 msgid "Available @code{files-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19631 +#: guix-git/doc/guix.texi:19993 #, no-wrap msgid "{@code{files-configuration} parameter} log-location access-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19639 +#: guix-git/doc/guix.texi:20001 msgid "Defines the access log filename. Specifying a blank filename disables access log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-access_log}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19641 +#: guix-git/doc/guix.texi:20003 msgid "Defaults to @samp{\"/var/log/cups/access_log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19643 +#: guix-git/doc/guix.texi:20005 #, no-wrap msgid "{@code{files-configuration} parameter} file-name cache-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19645 +#: guix-git/doc/guix.texi:20007 msgid "Where CUPS should cache data." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19647 +#: guix-git/doc/guix.texi:20009 msgid "Defaults to @samp{\"/var/cache/cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19649 +#: guix-git/doc/guix.texi:20011 #, no-wrap msgid "{@code{files-configuration} parameter} string config-file-perm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19652 +#: guix-git/doc/guix.texi:20014 msgid "Specifies the permissions for all configuration files that the scheduler writes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19658 +#: guix-git/doc/guix.texi:20020 msgid "Note that the permissions for the printers.conf file are currently masked to only allow access from the scheduler user (typically root). This is done because printer device URIs sometimes contain sensitive authentication information that should not be generally known on the system. There is no way to disable this security feature." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19660 +#: guix-git/doc/guix.texi:20022 msgid "Defaults to @samp{\"0640\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19662 +#: guix-git/doc/guix.texi:20024 #, no-wrap msgid "{@code{files-configuration} parameter} log-location error-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19670 +#: guix-git/doc/guix.texi:20032 msgid "Defines the error log filename. Specifying a blank filename disables error log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-error_log}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19672 +#: guix-git/doc/guix.texi:20034 msgid "Defaults to @samp{\"/var/log/cups/error_log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19674 +#: guix-git/doc/guix.texi:20036 #, no-wrap msgid "{@code{files-configuration} parameter} string fatal-errors" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19677 +#: guix-git/doc/guix.texi:20039 msgid "Specifies which errors are fatal, causing the scheduler to exit. The kind strings are:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19681 +#: guix-git/doc/guix.texi:20043 msgid "No errors are fatal." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19684 +#: guix-git/doc/guix.texi:20046 msgid "All of the errors below are fatal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19685 +#: guix-git/doc/guix.texi:20047 #, no-wrap msgid "browse" -msgstr "" +msgstr "prechádzať" #. type: table -#: guix-git/doc/guix.texi:19688 +#: guix-git/doc/guix.texi:20050 msgid "Browsing initialization errors are fatal, for example failed connections to the DNS-SD daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19689 +#: guix-git/doc/guix.texi:20051 #, no-wrap msgid "config" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19691 +#: guix-git/doc/guix.texi:20053 msgid "Configuration file syntax errors are fatal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19692 +#: guix-git/doc/guix.texi:20054 #, no-wrap msgid "listen" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19695 +#: guix-git/doc/guix.texi:20057 msgid "Listen or Port errors are fatal, except for IPv6 failures on the loopback or @code{any} addresses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19696 +#: guix-git/doc/guix.texi:20058 #, no-wrap msgid "log" -msgstr "" +msgstr "záznam" #. type: table -#: guix-git/doc/guix.texi:19698 +#: guix-git/doc/guix.texi:20060 msgid "Log file creation or write errors are fatal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19699 +#: guix-git/doc/guix.texi:20061 #, no-wrap msgid "permissions" -msgstr "" +msgstr "povolenia" #. type: table -#: guix-git/doc/guix.texi:19702 +#: guix-git/doc/guix.texi:20064 msgid "Bad startup file permissions are fatal, for example shared TLS certificate and key files with world-read permissions." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19705 +#: guix-git/doc/guix.texi:20067 msgid "Defaults to @samp{\"all -browse\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19707 +#: guix-git/doc/guix.texi:20069 #, no-wrap msgid "{@code{files-configuration} parameter} boolean file-device?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19710 +#: guix-git/doc/guix.texi:20072 msgid "Specifies whether the file pseudo-device can be used for new printer queues. The URI @uref{file:///dev/null} is always allowed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19714 +#: guix-git/doc/guix.texi:20076 #, no-wrap msgid "{@code{files-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19717 +#: guix-git/doc/guix.texi:20079 msgid "Specifies the group name or ID that will be used when executing external programs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19719 guix-git/doc/guix.texi:19805 +#: guix-git/doc/guix.texi:20081 guix-git/doc/guix.texi:20167 msgid "Defaults to @samp{\"lp\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19721 +#: guix-git/doc/guix.texi:20083 #, no-wrap msgid "{@code{files-configuration} parameter} string log-file-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19723 +#: guix-git/doc/guix.texi:20085 msgid "Specifies the group name or ID that will be used for log files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19725 +#: guix-git/doc/guix.texi:20087 msgid "Defaults to @samp{\"lpadmin\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19727 +#: guix-git/doc/guix.texi:20089 #, no-wrap msgid "{@code{files-configuration} parameter} string log-file-perm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19729 +#: guix-git/doc/guix.texi:20091 msgid "Specifies the permissions for all log files that the scheduler writes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19731 +#: guix-git/doc/guix.texi:20093 msgid "Defaults to @samp{\"0644\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19733 +#: guix-git/doc/guix.texi:20095 #, no-wrap msgid "{@code{files-configuration} parameter} log-location page-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19741 +#: guix-git/doc/guix.texi:20103 msgid "Defines the page log filename. Specifying a blank filename disables page log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-page_log}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19743 +#: guix-git/doc/guix.texi:20105 msgid "Defaults to @samp{\"/var/log/cups/page_log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19745 +#: guix-git/doc/guix.texi:20107 #, no-wrap msgid "{@code{files-configuration} parameter} string remote-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19748 +#: guix-git/doc/guix.texi:20110 msgid "Specifies the username that is associated with unauthenticated accesses by clients claiming to be the root user. The default is @code{remroot}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19750 +#: guix-git/doc/guix.texi:20112 msgid "Defaults to @samp{\"remroot\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19752 +#: guix-git/doc/guix.texi:20114 #, no-wrap msgid "{@code{files-configuration} parameter} file-name request-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19755 +#: guix-git/doc/guix.texi:20117 msgid "Specifies the directory that contains print jobs and other HTTP request data." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19757 +#: guix-git/doc/guix.texi:20119 msgid "Defaults to @samp{\"/var/spool/cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19759 +#: guix-git/doc/guix.texi:20121 #, no-wrap msgid "{@code{files-configuration} parameter} sandboxing sandboxing" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19764 +#: guix-git/doc/guix.texi:20126 msgid "Specifies the level of security sandboxing that is applied to print filters, backends, and other child processes of the scheduler; either @code{relaxed} or @code{strict}. This directive is currently only used/supported on macOS." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19766 +#: guix-git/doc/guix.texi:20128 msgid "Defaults to @samp{strict}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19768 +#: guix-git/doc/guix.texi:20130 #, no-wrap msgid "{@code{files-configuration} parameter} file-name server-keychain" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19773 +#: guix-git/doc/guix.texi:20135 msgid "Specifies the location of TLS certificates and private keys. CUPS will look for public and private keys in this directory: @file{.crt} files for PEM-encoded certificates and corresponding @file{.key} files for PEM-encoded private keys." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19775 +#: guix-git/doc/guix.texi:20137 msgid "Defaults to @samp{\"/etc/cups/ssl\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19777 +#: guix-git/doc/guix.texi:20139 #, no-wrap msgid "{@code{files-configuration} parameter} file-name server-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19779 +#: guix-git/doc/guix.texi:20141 msgid "Specifies the directory containing the server configuration files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19781 +#: guix-git/doc/guix.texi:20143 msgid "Defaults to @samp{\"/etc/cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19783 +#: guix-git/doc/guix.texi:20145 #, no-wrap msgid "{@code{files-configuration} parameter} boolean sync-on-close?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19786 +#: guix-git/doc/guix.texi:20148 msgid "Specifies whether the scheduler calls fsync(2) after writing configuration or state files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19790 +#: guix-git/doc/guix.texi:20152 #, no-wrap msgid "{@code{files-configuration} parameter} space-separated-string-list system-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19792 +#: guix-git/doc/guix.texi:20154 msgid "Specifies the group(s) to use for @code{@@SYSTEM} group authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19794 +#: guix-git/doc/guix.texi:20156 #, no-wrap msgid "{@code{files-configuration} parameter} file-name temp-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19796 +#: guix-git/doc/guix.texi:20158 msgid "Specifies the directory where temporary files are stored." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19798 +#: guix-git/doc/guix.texi:20160 msgid "Defaults to @samp{\"/var/spool/cups/tmp\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19800 +#: guix-git/doc/guix.texi:20162 #, no-wrap msgid "{@code{files-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19803 +#: guix-git/doc/guix.texi:20165 msgid "Specifies the user name or ID that is used when running external programs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19807 +#: guix-git/doc/guix.texi:20169 #, no-wrap msgid "{@code{files-configuration} parameter} string set-env" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19809 +#: guix-git/doc/guix.texi:20171 msgid "Set the specified environment variable to be passed to child processes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19811 +#: guix-git/doc/guix.texi:20173 msgid "Defaults to @samp{\"variable value\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19814 +#: guix-git/doc/guix.texi:20176 #, no-wrap msgid "{@code{cups-configuration} parameter} access-log-level access-log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19821 +#: guix-git/doc/guix.texi:20183 msgid "Specifies the logging level for the AccessLog file. The @code{config} level logs when printers and classes are added, deleted, or modified and when configuration files are accessed or updated. The @code{actions} level logs when print jobs are submitted, held, released, modified, or canceled, and any of the conditions for @code{config}. The @code{all} level logs all requests." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19823 +#: guix-git/doc/guix.texi:20185 msgid "Defaults to @samp{actions}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19825 +#: guix-git/doc/guix.texi:20187 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean auto-purge-jobs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19828 +#: guix-git/doc/guix.texi:20190 msgid "Specifies whether to purge job history data automatically when it is no longer required for quotas." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19832 +#: guix-git/doc/guix.texi:20194 #, no-wrap msgid "{@code{cups-configuration} parameter} comma-separated-string-list browse-dns-sd-sub-types" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19836 +#: guix-git/doc/guix.texi:20198 msgid "Specifies a list of DNS-SD sub-types to advertise for each shared printer. For example, @samp{\"_cups\" \"_print\"} will tell network clients that both CUPS sharing and IPP Everywhere are supported." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19838 +#: guix-git/doc/guix.texi:20200 msgid "Defaults to @samp{\"_cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19840 +#: guix-git/doc/guix.texi:20202 #, no-wrap msgid "{@code{cups-configuration} parameter} browse-local-protocols browse-local-protocols" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19842 +#: guix-git/doc/guix.texi:20204 msgid "Specifies which protocols to use for local printer sharing." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19844 +#: guix-git/doc/guix.texi:20206 msgid "Defaults to @samp{dnssd}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19846 +#: guix-git/doc/guix.texi:20208 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean browse-web-if?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19848 +#: guix-git/doc/guix.texi:20210 msgid "Specifies whether the CUPS web interface is advertised." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19852 +#: guix-git/doc/guix.texi:20214 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean browsing?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19854 +#: guix-git/doc/guix.texi:20216 msgid "Specifies whether shared printers are advertised." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19858 +#: guix-git/doc/guix.texi:20220 #, no-wrap msgid "{@code{cups-configuration} parameter} string classification" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19863 +#: guix-git/doc/guix.texi:20225 msgid "Specifies the security classification of the server. Any valid banner name can be used, including @samp{\"classified\"}, @samp{\"confidential\"}, @samp{\"secret\"}, @samp{\"topsecret\"}, and @samp{\"unclassified\"}, or the banner can be omitted to disable secure printing functions." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19865 guix-git/doc/guix.texi:20196 -#: guix-git/doc/guix.texi:22180 guix-git/doc/guix.texi:22192 -#: guix-git/doc/guix.texi:22220 guix-git/doc/guix.texi:22977 -#: guix-git/doc/guix.texi:22991 guix-git/doc/guix.texi:22998 -#: guix-git/doc/guix.texi:23005 guix-git/doc/guix.texi:23035 -#: guix-git/doc/guix.texi:23133 guix-git/doc/guix.texi:25252 -#: guix-git/doc/guix.texi:25278 guix-git/doc/guix.texi:25314 -#: guix-git/doc/guix.texi:25360 guix-git/doc/guix.texi:25379 -#: guix-git/doc/guix.texi:25418 guix-git/doc/guix.texi:25477 -#: guix-git/doc/guix.texi:25487 guix-git/doc/guix.texi:30085 -#: guix-git/doc/guix.texi:30093 guix-git/doc/guix.texi:30101 -#: guix-git/doc/guix.texi:30109 guix-git/doc/guix.texi:30388 -#: guix-git/doc/guix.texi:31743 guix-git/doc/guix.texi:31751 -#: guix-git/doc/guix.texi:31759 guix-git/doc/guix.texi:31867 -#: guix-git/doc/guix.texi:31892 guix-git/doc/guix.texi:32023 -#: guix-git/doc/guix.texi:32031 guix-git/doc/guix.texi:32039 -#: guix-git/doc/guix.texi:32047 guix-git/doc/guix.texi:32055 -#: guix-git/doc/guix.texi:32063 guix-git/doc/guix.texi:32086 -#: guix-git/doc/guix.texi:32094 guix-git/doc/guix.texi:32146 -#: guix-git/doc/guix.texi:32162 guix-git/doc/guix.texi:32170 -#: guix-git/doc/guix.texi:32209 guix-git/doc/guix.texi:32232 -#: guix-git/doc/guix.texi:32254 guix-git/doc/guix.texi:32261 -#: guix-git/doc/guix.texi:32296 guix-git/doc/guix.texi:32304 -#: guix-git/doc/guix.texi:32328 guix-git/doc/guix.texi:32360 -#: guix-git/doc/guix.texi:32389 guix-git/doc/guix.texi:32396 -#: guix-git/doc/guix.texi:32403 guix-git/doc/guix.texi:32411 -#: guix-git/doc/guix.texi:32425 guix-git/doc/guix.texi:32434 -#: guix-git/doc/guix.texi:32444 guix-git/doc/guix.texi:32451 -#: guix-git/doc/guix.texi:32458 guix-git/doc/guix.texi:32465 -#: guix-git/doc/guix.texi:32536 guix-git/doc/guix.texi:32543 -#: guix-git/doc/guix.texi:32550 guix-git/doc/guix.texi:32559 -#: guix-git/doc/guix.texi:32575 guix-git/doc/guix.texi:32582 -#: guix-git/doc/guix.texi:32589 guix-git/doc/guix.texi:32596 -#: guix-git/doc/guix.texi:32604 guix-git/doc/guix.texi:32612 +#: guix-git/doc/guix.texi:20227 guix-git/doc/guix.texi:20558 +#: guix-git/doc/guix.texi:22542 guix-git/doc/guix.texi:22554 +#: guix-git/doc/guix.texi:22582 guix-git/doc/guix.texi:23339 +#: guix-git/doc/guix.texi:23353 guix-git/doc/guix.texi:23360 +#: guix-git/doc/guix.texi:23367 guix-git/doc/guix.texi:23397 +#: guix-git/doc/guix.texi:23495 guix-git/doc/guix.texi:25614 +#: guix-git/doc/guix.texi:25640 guix-git/doc/guix.texi:25676 +#: guix-git/doc/guix.texi:25722 guix-git/doc/guix.texi:25741 +#: guix-git/doc/guix.texi:25780 guix-git/doc/guix.texi:30450 +#: guix-git/doc/guix.texi:30458 guix-git/doc/guix.texi:30466 +#: guix-git/doc/guix.texi:30474 guix-git/doc/guix.texi:30753 +#: guix-git/doc/guix.texi:32108 guix-git/doc/guix.texi:32116 +#: guix-git/doc/guix.texi:32124 guix-git/doc/guix.texi:32232 +#: guix-git/doc/guix.texi:32257 guix-git/doc/guix.texi:32388 +#: guix-git/doc/guix.texi:32396 guix-git/doc/guix.texi:32404 +#: guix-git/doc/guix.texi:32412 guix-git/doc/guix.texi:32420 +#: guix-git/doc/guix.texi:32428 guix-git/doc/guix.texi:32451 +#: guix-git/doc/guix.texi:32459 guix-git/doc/guix.texi:32511 +#: guix-git/doc/guix.texi:32527 guix-git/doc/guix.texi:32535 +#: guix-git/doc/guix.texi:32574 guix-git/doc/guix.texi:32597 +#: guix-git/doc/guix.texi:32619 guix-git/doc/guix.texi:32626 +#: guix-git/doc/guix.texi:32661 guix-git/doc/guix.texi:32669 +#: guix-git/doc/guix.texi:32693 guix-git/doc/guix.texi:32725 +#: guix-git/doc/guix.texi:32754 guix-git/doc/guix.texi:32761 +#: guix-git/doc/guix.texi:32768 guix-git/doc/guix.texi:32776 +#: guix-git/doc/guix.texi:32790 guix-git/doc/guix.texi:32799 +#: guix-git/doc/guix.texi:32809 guix-git/doc/guix.texi:32816 +#: guix-git/doc/guix.texi:32823 guix-git/doc/guix.texi:32830 +#: guix-git/doc/guix.texi:32901 guix-git/doc/guix.texi:32908 +#: guix-git/doc/guix.texi:32915 guix-git/doc/guix.texi:32924 +#: guix-git/doc/guix.texi:32940 guix-git/doc/guix.texi:32947 +#: guix-git/doc/guix.texi:32954 guix-git/doc/guix.texi:32961 +#: guix-git/doc/guix.texi:32969 guix-git/doc/guix.texi:32977 msgid "Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19867 +#: guix-git/doc/guix.texi:20229 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean classify-override?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19870 +#: guix-git/doc/guix.texi:20232 msgid "Specifies whether users may override the classification (cover page) of individual print jobs using the @code{job-sheets} option." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19874 +#: guix-git/doc/guix.texi:20236 #, no-wrap msgid "{@code{cups-configuration} parameter} default-auth-type default-auth-type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19876 +#: guix-git/doc/guix.texi:20238 msgid "Specifies the default type of authentication to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19878 +#: guix-git/doc/guix.texi:20240 msgid "Defaults to @samp{Basic}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19880 +#: guix-git/doc/guix.texi:20242 #, no-wrap msgid "{@code{cups-configuration} parameter} default-encryption default-encryption" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19882 +#: guix-git/doc/guix.texi:20244 msgid "Specifies whether encryption will be used for authenticated requests." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19884 +#: guix-git/doc/guix.texi:20246 msgid "Defaults to @samp{Required}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19886 +#: guix-git/doc/guix.texi:20248 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-language" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19888 +#: guix-git/doc/guix.texi:20250 msgid "Specifies the default language to use for text and web content." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19890 +#: guix-git/doc/guix.texi:20252 msgid "Defaults to @samp{\"en\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19892 +#: guix-git/doc/guix.texi:20254 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-paper-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19897 +#: guix-git/doc/guix.texi:20259 msgid "Specifies the default paper size for new print queues. @samp{\"Auto\"} uses a locale-specific default, while @samp{\"None\"} specifies there is no default paper size. Specific size names are typically @samp{\"Letter\"} or @samp{\"A4\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19899 +#: guix-git/doc/guix.texi:20261 msgid "Defaults to @samp{\"Auto\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19901 +#: guix-git/doc/guix.texi:20263 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-policy" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19903 +#: guix-git/doc/guix.texi:20265 msgid "Specifies the default access policy to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19905 +#: guix-git/doc/guix.texi:20267 msgid "Defaults to @samp{\"default\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19907 +#: guix-git/doc/guix.texi:20269 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean default-shared?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19909 +#: guix-git/doc/guix.texi:20271 msgid "Specifies whether local printers are shared by default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19911 guix-git/doc/guix.texi:19991 -#: guix-git/doc/guix.texi:20281 guix-git/doc/guix.texi:23067 -#: guix-git/doc/guix.texi:23118 guix-git/doc/guix.texi:23125 -#: guix-git/doc/guix.texi:24407 guix-git/doc/guix.texi:24595 -#: guix-git/doc/guix.texi:24712 guix-git/doc/guix.texi:24748 -#: guix-git/doc/guix.texi:24799 guix-git/doc/guix.texi:24818 -#: guix-git/doc/guix.texi:24828 guix-git/doc/guix.texi:24838 -#: guix-git/doc/guix.texi:24897 guix-git/doc/guix.texi:24919 -#: guix-git/doc/guix.texi:24944 guix-git/doc/guix.texi:24970 -#: guix-git/doc/guix.texi:24988 guix-git/doc/guix.texi:28180 -#: guix-git/doc/guix.texi:28208 guix-git/doc/guix.texi:28344 -#: guix-git/doc/guix.texi:28351 guix-git/doc/guix.texi:28359 -#: guix-git/doc/guix.texi:28396 guix-git/doc/guix.texi:28410 -#: guix-git/doc/guix.texi:28499 guix-git/doc/guix.texi:28506 -#: guix-git/doc/guix.texi:28514 guix-git/doc/guix.texi:29293 -#: guix-git/doc/guix.texi:29433 guix-git/doc/guix.texi:29619 -#: guix-git/doc/guix.texi:29626 guix-git/doc/guix.texi:29648 -#: guix-git/doc/guix.texi:29687 guix-git/doc/guix.texi:29707 -#: guix-git/doc/guix.texi:29721 guix-git/doc/guix.texi:29934 -#: guix-git/doc/guix.texi:31845 guix-git/doc/guix.texi:31933 -#: guix-git/doc/guix.texi:31949 guix-git/doc/guix.texi:31999 +#: guix-git/doc/guix.texi:20273 guix-git/doc/guix.texi:20353 +#: guix-git/doc/guix.texi:20643 guix-git/doc/guix.texi:23429 +#: guix-git/doc/guix.texi:23480 guix-git/doc/guix.texi:23487 +#: guix-git/doc/guix.texi:24769 guix-git/doc/guix.texi:24957 +#: guix-git/doc/guix.texi:25074 guix-git/doc/guix.texi:25110 +#: guix-git/doc/guix.texi:25161 guix-git/doc/guix.texi:25180 +#: guix-git/doc/guix.texi:25190 guix-git/doc/guix.texi:25200 +#: guix-git/doc/guix.texi:25259 guix-git/doc/guix.texi:25281 +#: guix-git/doc/guix.texi:25306 guix-git/doc/guix.texi:25332 +#: guix-git/doc/guix.texi:25350 guix-git/doc/guix.texi:28517 +#: guix-git/doc/guix.texi:28545 guix-git/doc/guix.texi:28681 +#: guix-git/doc/guix.texi:28688 guix-git/doc/guix.texi:28696 +#: guix-git/doc/guix.texi:28733 guix-git/doc/guix.texi:28747 +#: guix-git/doc/guix.texi:28836 guix-git/doc/guix.texi:28843 +#: guix-git/doc/guix.texi:28851 guix-git/doc/guix.texi:29630 +#: guix-git/doc/guix.texi:29770 guix-git/doc/guix.texi:29984 +#: guix-git/doc/guix.texi:29991 guix-git/doc/guix.texi:30013 +#: guix-git/doc/guix.texi:30052 guix-git/doc/guix.texi:30072 +#: guix-git/doc/guix.texi:30086 guix-git/doc/guix.texi:30299 +#: guix-git/doc/guix.texi:32210 guix-git/doc/guix.texi:32298 +#: guix-git/doc/guix.texi:32314 guix-git/doc/guix.texi:32364 msgid "Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19913 +#: guix-git/doc/guix.texi:20275 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer dirty-clean-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19917 +#: guix-git/doc/guix.texi:20279 msgid "Specifies the delay for updating of configuration and state files, in seconds. A value of 0 causes the update to happen as soon as possible, typically within a few milliseconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19919 guix-git/doc/guix.texi:19967 -#: guix-git/doc/guix.texi:19976 guix-git/doc/guix.texi:20288 -#: guix-git/doc/guix.texi:24757 guix-git/doc/guix.texi:24790 +#: guix-git/doc/guix.texi:20281 guix-git/doc/guix.texi:20329 +#: guix-git/doc/guix.texi:20338 guix-git/doc/guix.texi:20650 +#: guix-git/doc/guix.texi:25119 guix-git/doc/guix.texi:25152 msgid "Defaults to @samp{30}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19921 +#: guix-git/doc/guix.texi:20283 #, no-wrap msgid "{@code{cups-configuration} parameter} error-policy error-policy" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19927 +#: guix-git/doc/guix.texi:20289 msgid "Specifies what to do when an error occurs. Possible values are @code{abort-job}, which will discard the failed print job; @code{retry-job}, which will retry the job at a later time; @code{retry-current-job}, which retries the failed job immediately; and @code{stop-printer}, which stops the printer." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19929 +#: guix-git/doc/guix.texi:20291 msgid "Defaults to @samp{stop-printer}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19931 +#: guix-git/doc/guix.texi:20293 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer filter-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19939 +#: guix-git/doc/guix.texi:20301 msgid "Specifies the maximum cost of filters that are run concurrently, which can be used to minimize disk, memory, and CPU resource problems. A limit of 0 disables filter limiting. An average print to a non-PostScript printer needs a filter limit of about 200. A PostScript printer needs about half that (100). Setting the limit below these thresholds will effectively limit the scheduler to printing a single job at any time." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19941 guix-git/doc/guix.texi:19949 -#: guix-git/doc/guix.texi:19998 guix-git/doc/guix.texi:20114 -#: guix-git/doc/guix.texi:20128 guix-git/doc/guix.texi:20135 -#: guix-git/doc/guix.texi:21622 guix-git/doc/guix.texi:21638 -#: guix-git/doc/guix.texi:22295 guix-git/doc/guix.texi:22307 -#: guix-git/doc/guix.texi:23086 guix-git/doc/guix.texi:23095 -#: guix-git/doc/guix.texi:23103 guix-git/doc/guix.texi:23111 -#: guix-git/doc/guix.texi:29309 guix-git/doc/guix.texi:29634 -#: guix-git/doc/guix.texi:31838 guix-git/doc/guix.texi:32138 -#: guix-git/doc/guix.texi:32312 +#: guix-git/doc/guix.texi:20303 guix-git/doc/guix.texi:20311 +#: guix-git/doc/guix.texi:20360 guix-git/doc/guix.texi:20476 +#: guix-git/doc/guix.texi:20490 guix-git/doc/guix.texi:20497 +#: guix-git/doc/guix.texi:21984 guix-git/doc/guix.texi:22000 +#: guix-git/doc/guix.texi:22657 guix-git/doc/guix.texi:22669 +#: guix-git/doc/guix.texi:23448 guix-git/doc/guix.texi:23457 +#: guix-git/doc/guix.texi:23465 guix-git/doc/guix.texi:23473 +#: guix-git/doc/guix.texi:29646 guix-git/doc/guix.texi:29999 +#: guix-git/doc/guix.texi:32203 guix-git/doc/guix.texi:32503 +#: guix-git/doc/guix.texi:32677 msgid "Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19943 +#: guix-git/doc/guix.texi:20305 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer filter-nice" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19947 +#: guix-git/doc/guix.texi:20309 msgid "Specifies the scheduling priority of filters that are run to print a job. The nice value ranges from 0, the highest priority, to 19, the lowest priority." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19951 +#: guix-git/doc/guix.texi:20313 #, no-wrap msgid "{@code{cups-configuration} parameter} host-name-lookups host-name-lookups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19958 +#: guix-git/doc/guix.texi:20320 msgid "Specifies whether to do reverse lookups on connecting clients. The @code{double} setting causes @code{cupsd} to verify that the hostname resolved from the address matches one of the addresses returned for that hostname. Double lookups also prevent clients with unregistered addresses from connecting to your server. Only set this option to @code{#t} or @code{double} if absolutely required." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19962 +#: guix-git/doc/guix.texi:20324 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-kill-delay" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19965 +#: guix-git/doc/guix.texi:20327 msgid "Specifies the number of seconds to wait before killing the filters and backend associated with a canceled or held job." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19969 +#: guix-git/doc/guix.texi:20331 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-retry-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19974 +#: guix-git/doc/guix.texi:20336 msgid "Specifies the interval between retries of jobs in seconds. This is typically used for fax queues but can also be used with normal print queues whose error policy is @code{retry-job} or @code{retry-current-job}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19978 +#: guix-git/doc/guix.texi:20340 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-retry-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19983 +#: guix-git/doc/guix.texi:20345 msgid "Specifies the number of retries that are done for jobs. This is typically used for fax queues but can also be used with normal print queues whose error policy is @code{retry-job} or @code{retry-current-job}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19985 guix-git/doc/guix.texi:24721 -#: guix-git/doc/guix.texi:30186 guix-git/doc/guix.texi:30206 -#: guix-git/doc/guix.texi:30222 guix-git/doc/guix.texi:30236 -#: guix-git/doc/guix.texi:30243 guix-git/doc/guix.texi:30250 -#: guix-git/doc/guix.texi:30257 guix-git/doc/guix.texi:30417 -#: guix-git/doc/guix.texi:30433 guix-git/doc/guix.texi:30440 -#: guix-git/doc/guix.texi:30447 guix-git/doc/guix.texi:30458 -#: guix-git/doc/guix.texi:31790 guix-git/doc/guix.texi:31798 -#: guix-git/doc/guix.texi:31806 guix-git/doc/guix.texi:31830 +#: guix-git/doc/guix.texi:20347 guix-git/doc/guix.texi:25083 +#: guix-git/doc/guix.texi:30551 guix-git/doc/guix.texi:30571 +#: guix-git/doc/guix.texi:30587 guix-git/doc/guix.texi:30601 +#: guix-git/doc/guix.texi:30608 guix-git/doc/guix.texi:30615 +#: guix-git/doc/guix.texi:30622 guix-git/doc/guix.texi:30782 +#: guix-git/doc/guix.texi:30798 guix-git/doc/guix.texi:30805 +#: guix-git/doc/guix.texi:30812 guix-git/doc/guix.texi:30823 +#: guix-git/doc/guix.texi:32155 guix-git/doc/guix.texi:32163 +#: guix-git/doc/guix.texi:32171 guix-git/doc/guix.texi:32195 msgid "Defaults to @samp{5}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19987 +#: guix-git/doc/guix.texi:20349 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean keep-alive?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19989 +#: guix-git/doc/guix.texi:20351 msgid "Specifies whether to support HTTP keep-alive connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19993 +#: guix-git/doc/guix.texi:20355 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer limit-request-body" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19996 +#: guix-git/doc/guix.texi:20358 msgid "Specifies the maximum size of print files, IPP requests, and HTML form data. A limit of 0 disables the limit check." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20000 +#: guix-git/doc/guix.texi:20362 #, no-wrap msgid "{@code{cups-configuration} parameter} multiline-string-list listen" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20007 +#: guix-git/doc/guix.texi:20369 msgid "Listens on the specified interfaces for connections. Valid values are of the form @var{address}:@var{port}, where @var{address} is either an IPv6 address enclosed in brackets, an IPv4 address, or @code{*} to indicate all addresses. Values can also be file names of local UNIX domain sockets. The Listen directive is similar to the Port directive but allows you to restrict access to specific interfaces or networks." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20009 +#: guix-git/doc/guix.texi:20371 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer listen-back-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20016 +#: guix-git/doc/guix.texi:20378 msgid "Specifies the number of pending connections that will be allowed. This normally only affects very busy servers that have reached the MaxClients limit, but can also be triggered by large numbers of simultaneous connections. When the limit is reached, the operating system will refuse additional connections until the scheduler can accept the pending ones." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20018 +#: guix-git/doc/guix.texi:20380 msgid "Defaults to @samp{128}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20020 +#: guix-git/doc/guix.texi:20382 #, no-wrap msgid "{@code{cups-configuration} parameter} location-access-control-list location-access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20022 +#: guix-git/doc/guix.texi:20384 msgid "Specifies a set of additional access controls." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20024 +#: guix-git/doc/guix.texi:20386 msgid "Available @code{location-access-controls} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20025 +#: guix-git/doc/guix.texi:20387 #, no-wrap msgid "{@code{location-access-controls} parameter} file-name path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20027 +#: guix-git/doc/guix.texi:20389 msgid "Specifies the URI path to which the access control applies." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20029 +#: guix-git/doc/guix.texi:20391 #, no-wrap msgid "{@code{location-access-controls} parameter} access-control-list access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20032 +#: guix-git/doc/guix.texi:20394 msgid "Access controls for all access to this path, in the same format as the @code{access-controls} of @code{operation-access-control}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20034 guix-git/doc/guix.texi:20040 -#: guix-git/doc/guix.texi:20054 guix-git/doc/guix.texi:20061 -#: guix-git/doc/guix.texi:20203 guix-git/doc/guix.texi:20262 -#: guix-git/doc/guix.texi:20340 guix-git/doc/guix.texi:20354 -#: guix-git/doc/guix.texi:21502 guix-git/doc/guix.texi:21511 -#: guix-git/doc/guix.texi:22781 guix-git/doc/guix.texi:22984 -#: guix-git/doc/guix.texi:23012 guix-git/doc/guix.texi:23042 -#: guix-git/doc/guix.texi:23157 guix-git/doc/guix.texi:23170 -#: guix-git/doc/guix.texi:23177 guix-git/doc/guix.texi:24927 -#: guix-git/doc/guix.texi:25322 guix-git/doc/guix.texi:25426 -#: guix-git/doc/guix.texi:25853 guix-git/doc/guix.texi:25861 -#: guix-git/doc/guix.texi:26106 guix-git/doc/guix.texi:28239 -#: guix-git/doc/guix.texi:28417 guix-git/doc/guix.texi:28616 -#: guix-git/doc/guix.texi:30077 guix-git/doc/guix.texi:30137 -#: guix-git/doc/guix.texi:30145 guix-git/doc/guix.texi:31853 -#: guix-git/doc/guix.texi:31860 guix-git/doc/guix.texi:32202 -#: guix-git/doc/guix.texi:32280 guix-git/doc/guix.texi:32374 -#: guix-git/doc/guix.texi:32382 guix-git/doc/guix.texi:32418 -#: guix-git/doc/guix.texi:32568 guix-git/doc/guix.texi:32619 -#: guix-git/doc/guix.texi:32628 +#: guix-git/doc/guix.texi:20396 guix-git/doc/guix.texi:20402 +#: guix-git/doc/guix.texi:20416 guix-git/doc/guix.texi:20423 +#: guix-git/doc/guix.texi:20565 guix-git/doc/guix.texi:20624 +#: guix-git/doc/guix.texi:20702 guix-git/doc/guix.texi:20716 +#: guix-git/doc/guix.texi:21864 guix-git/doc/guix.texi:21873 +#: guix-git/doc/guix.texi:23143 guix-git/doc/guix.texi:23346 +#: guix-git/doc/guix.texi:23374 guix-git/doc/guix.texi:23404 +#: guix-git/doc/guix.texi:23519 guix-git/doc/guix.texi:23532 +#: guix-git/doc/guix.texi:23539 guix-git/doc/guix.texi:25289 +#: guix-git/doc/guix.texi:25684 guix-git/doc/guix.texi:25788 +#: guix-git/doc/guix.texi:26190 guix-git/doc/guix.texi:26198 +#: guix-git/doc/guix.texi:26443 guix-git/doc/guix.texi:28576 +#: guix-git/doc/guix.texi:28754 guix-git/doc/guix.texi:28953 +#: guix-git/doc/guix.texi:30442 guix-git/doc/guix.texi:30502 +#: guix-git/doc/guix.texi:30510 guix-git/doc/guix.texi:32218 +#: guix-git/doc/guix.texi:32225 guix-git/doc/guix.texi:32567 +#: guix-git/doc/guix.texi:32645 guix-git/doc/guix.texi:32739 +#: guix-git/doc/guix.texi:32747 guix-git/doc/guix.texi:32783 +#: guix-git/doc/guix.texi:32933 guix-git/doc/guix.texi:32984 +#: guix-git/doc/guix.texi:32993 msgid "Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20036 +#: guix-git/doc/guix.texi:20398 #, no-wrap msgid "{@code{location-access-controls} parameter} method-access-control-list method-access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20038 +#: guix-git/doc/guix.texi:20400 msgid "Access controls for method-specific access to this path." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20042 +#: guix-git/doc/guix.texi:20404 msgid "Available @code{method-access-controls} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20043 +#: guix-git/doc/guix.texi:20405 #, no-wrap msgid "{@code{method-access-controls} parameter} boolean reverse?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20046 +#: guix-git/doc/guix.texi:20408 msgid "If @code{#t}, apply access controls to all methods except the listed methods. Otherwise apply to only the listed methods." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20050 +#: guix-git/doc/guix.texi:20412 #, no-wrap msgid "{@code{method-access-controls} parameter} method-list methods" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20052 +#: guix-git/doc/guix.texi:20414 msgid "Methods to which this access control applies." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20056 +#: guix-git/doc/guix.texi:20418 #, no-wrap msgid "{@code{method-access-controls} parameter} access-control-list access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20059 +#: guix-git/doc/guix.texi:20421 msgid "Access control directives, as a list of strings. Each string should be one directive, such as @samp{\"Order allow,deny\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20065 +#: guix-git/doc/guix.texi:20427 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer log-debug-history" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20069 +#: guix-git/doc/guix.texi:20431 msgid "Specifies the number of debugging messages that are retained for logging if an error occurs in a print job. Debug messages are logged regardless of the LogLevel setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20071 guix-git/doc/guix.texi:20092 -#: guix-git/doc/guix.texi:20099 guix-git/doc/guix.texi:22541 -#: guix-git/doc/guix.texi:24459 guix-git/doc/guix.texi:24474 -#: guix-git/doc/guix.texi:28601 +#: guix-git/doc/guix.texi:20433 guix-git/doc/guix.texi:20454 +#: guix-git/doc/guix.texi:20461 guix-git/doc/guix.texi:22903 +#: guix-git/doc/guix.texi:24821 guix-git/doc/guix.texi:24836 +#: guix-git/doc/guix.texi:28938 msgid "Defaults to @samp{100}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20073 +#: guix-git/doc/guix.texi:20435 #, no-wrap msgid "{@code{cups-configuration} parameter} log-level log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20076 +#: guix-git/doc/guix.texi:20438 msgid "Specifies the level of logging for the ErrorLog file. The value @code{none} stops all logging while @code{debug2} logs everything." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20078 guix-git/doc/guix.texi:24936 +#: guix-git/doc/guix.texi:20440 guix-git/doc/guix.texi:25298 msgid "Defaults to @samp{info}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20080 +#: guix-git/doc/guix.texi:20442 #, no-wrap msgid "{@code{cups-configuration} parameter} log-time-format log-time-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20083 +#: guix-git/doc/guix.texi:20445 msgid "Specifies the format of the date and time in the log files. The value @code{standard} logs whole seconds while @code{usecs} logs microseconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20085 +#: guix-git/doc/guix.texi:20447 msgid "Defaults to @samp{standard}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20087 +#: guix-git/doc/guix.texi:20449 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20090 +#: guix-git/doc/guix.texi:20452 msgid "Specifies the maximum number of simultaneous clients that are allowed by the scheduler." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20094 +#: guix-git/doc/guix.texi:20456 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-clients-per-host" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20097 +#: guix-git/doc/guix.texi:20459 msgid "Specifies the maximum number of simultaneous clients that are allowed from a single address." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20101 +#: guix-git/doc/guix.texi:20463 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-copies" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20104 +#: guix-git/doc/guix.texi:20466 msgid "Specifies the maximum number of copies that a user can print of each job." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20106 +#: guix-git/doc/guix.texi:20468 msgid "Defaults to @samp{9999}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20108 +#: guix-git/doc/guix.texi:20470 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-hold-time" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20112 +#: guix-git/doc/guix.texi:20474 msgid "Specifies the maximum time a job may remain in the @code{indefinite} hold state before it is canceled. A value of 0 disables cancellation of held jobs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20116 +#: guix-git/doc/guix.texi:20478 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20119 +#: guix-git/doc/guix.texi:20481 msgid "Specifies the maximum number of simultaneous jobs that are allowed. Set to 0 to allow an unlimited number of jobs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20121 +#: guix-git/doc/guix.texi:20483 msgid "Defaults to @samp{500}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20123 +#: guix-git/doc/guix.texi:20485 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs-per-printer" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20126 +#: guix-git/doc/guix.texi:20488 msgid "Specifies the maximum number of simultaneous jobs that are allowed per printer. A value of 0 allows up to MaxJobs jobs per printer." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20130 +#: guix-git/doc/guix.texi:20492 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs-per-user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20133 +#: guix-git/doc/guix.texi:20495 msgid "Specifies the maximum number of simultaneous jobs that are allowed per user. A value of 0 allows up to MaxJobs jobs per user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20137 +#: guix-git/doc/guix.texi:20499 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-job-time" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20140 +#: guix-git/doc/guix.texi:20502 msgid "Specifies the maximum time a job may take to print before it is canceled, in seconds. Set to 0 to disable cancellation of ``stuck'' jobs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20142 +#: guix-git/doc/guix.texi:20504 msgid "Defaults to @samp{10800}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20144 +#: guix-git/doc/guix.texi:20506 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-log-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20147 +#: guix-git/doc/guix.texi:20509 msgid "Specifies the maximum size of the log files before they are rotated, in bytes. The value 0 disables log rotation." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20149 +#: guix-git/doc/guix.texi:20511 msgid "Defaults to @samp{1048576}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20151 +#: guix-git/doc/guix.texi:20513 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer multiple-operation-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20154 +#: guix-git/doc/guix.texi:20516 msgid "Specifies the maximum amount of time to allow between files in a multiple file print job, in seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20156 guix-git/doc/guix.texi:20367 +#: guix-git/doc/guix.texi:20518 guix-git/doc/guix.texi:20729 msgid "Defaults to @samp{900}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20158 +#: guix-git/doc/guix.texi:20520 #, no-wrap msgid "{@code{cups-configuration} parameter} string page-log-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20163 +#: guix-git/doc/guix.texi:20525 msgid "Specifies the format of PageLog lines. Sequences beginning with percent (@samp{%}) characters are replaced with the corresponding information, while all other characters are copied literally. The following percent sequences are recognized:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20165 +#: guix-git/doc/guix.texi:20527 #, no-wrap msgid "%%" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20167 +#: guix-git/doc/guix.texi:20529 msgid "insert a single percent character" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20168 +#: guix-git/doc/guix.texi:20530 #, no-wrap msgid "%@{name@}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20170 +#: guix-git/doc/guix.texi:20532 msgid "insert the value of the specified IPP attribute" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20171 +#: guix-git/doc/guix.texi:20533 #, no-wrap msgid "%C" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20173 +#: guix-git/doc/guix.texi:20535 msgid "insert the number of copies for the current page" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20174 +#: guix-git/doc/guix.texi:20536 #, no-wrap msgid "%P" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20176 +#: guix-git/doc/guix.texi:20538 msgid "insert the current page number" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20177 +#: guix-git/doc/guix.texi:20539 #, no-wrap msgid "%T" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20179 +#: guix-git/doc/guix.texi:20541 msgid "insert the current date and time in common log format" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20180 +#: guix-git/doc/guix.texi:20542 #, no-wrap msgid "%j" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20182 +#: guix-git/doc/guix.texi:20544 msgid "insert the job ID" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20183 guix-git/doc/guix.texi:22140 +#: guix-git/doc/guix.texi:20545 guix-git/doc/guix.texi:22502 #, no-wrap msgid "%p" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20185 +#: guix-git/doc/guix.texi:20547 msgid "insert the printer name" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20186 guix-git/doc/guix.texi:22163 +#: guix-git/doc/guix.texi:20548 guix-git/doc/guix.texi:22525 #, no-wrap msgid "%u" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20188 +#: guix-git/doc/guix.texi:20550 msgid "insert the username" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20194 +#: guix-git/doc/guix.texi:20556 msgid "A value of the empty string disables page logging. The string @code{%p %u %j %T %P %C %@{job-billing@} %@{job-originating-host-name@} %@{job-name@} %@{media@} %@{sides@}} creates a page log with the standard items." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20198 +#: guix-git/doc/guix.texi:20560 #, no-wrap msgid "{@code{cups-configuration} parameter} environment-variables environment-variables" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20201 +#: guix-git/doc/guix.texi:20563 msgid "Passes the specified environment variable(s) to child processes; a list of strings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20205 +#: guix-git/doc/guix.texi:20567 #, no-wrap msgid "{@code{cups-configuration} parameter} policy-configuration-list policies" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20207 +#: guix-git/doc/guix.texi:20569 msgid "Specifies named access control policies." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20209 +#: guix-git/doc/guix.texi:20571 msgid "Available @code{policy-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20210 +#: guix-git/doc/guix.texi:20572 #, no-wrap msgid "{@code{policy-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20212 +#: guix-git/doc/guix.texi:20574 msgid "Name of the policy." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20214 +#: guix-git/doc/guix.texi:20576 #, no-wrap msgid "{@code{policy-configuration} parameter} string job-private-access" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20224 +#: guix-git/doc/guix.texi:20586 msgid "Specifies an access list for a job's private values. @code{@@ACL} maps to the printer's requesting-user-name-allowed or requesting-user-name-denied values. @code{@@OWNER} maps to the job's owner. @code{@@SYSTEM} maps to the groups listed for the @code{system-group} field of the @code{files-configuration}, which is reified into the @code{cups-files.conf(5)} file. Other possible elements of the access list include specific user names, and @code{@@@var{group}} to indicate members of a specific group. The access list may also be simply @code{all} or @code{default}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20226 guix-git/doc/guix.texi:20248 +#: guix-git/doc/guix.texi:20588 guix-git/doc/guix.texi:20610 msgid "Defaults to @samp{\"@@OWNER @@SYSTEM\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20228 +#: guix-git/doc/guix.texi:20590 #, no-wrap msgid "{@code{policy-configuration} parameter} string job-private-values" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20231 guix-git/doc/guix.texi:20253 +#: guix-git/doc/guix.texi:20593 guix-git/doc/guix.texi:20615 msgid "Specifies the list of job values to make private, or @code{all}, @code{default}, or @code{none}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20234 +#: guix-git/doc/guix.texi:20596 msgid "Defaults to @samp{\"job-name job-originating-host-name job-originating-user-name phone\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20236 +#: guix-git/doc/guix.texi:20598 #, no-wrap msgid "{@code{policy-configuration} parameter} string subscription-private-access" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20246 +#: guix-git/doc/guix.texi:20608 msgid "Specifies an access list for a subscription's private values. @code{@@ACL} maps to the printer's requesting-user-name-allowed or requesting-user-name-denied values. @code{@@OWNER} maps to the job's owner. @code{@@SYSTEM} maps to the groups listed for the @code{system-group} field of the @code{files-configuration}, which is reified into the @code{cups-files.conf(5)} file. Other possible elements of the access list include specific user names, and @code{@@@var{group}} to indicate members of a specific group. The access list may also be simply @code{all} or @code{default}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20250 +#: guix-git/doc/guix.texi:20612 #, no-wrap msgid "{@code{policy-configuration} parameter} string subscription-private-values" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20256 +#: guix-git/doc/guix.texi:20618 msgid "Defaults to @samp{\"notify-events notify-pull-method notify-recipient-uri notify-subscriber-user-name notify-user-data\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20258 +#: guix-git/doc/guix.texi:20620 #, no-wrap msgid "{@code{policy-configuration} parameter} operation-access-control-list access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20260 +#: guix-git/doc/guix.texi:20622 msgid "Access control by IPP operation." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20265 +#: guix-git/doc/guix.texi:20627 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean-or-non-negative-integer preserve-job-files" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20270 +#: guix-git/doc/guix.texi:20632 msgid "Specifies whether job files (documents) are preserved after a job is printed. If a numeric value is specified, job files are preserved for the indicated number of seconds after printing. Otherwise a boolean value applies indefinitely." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20272 +#: guix-git/doc/guix.texi:20634 msgid "Defaults to @samp{86400}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20274 +#: guix-git/doc/guix.texi:20636 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean-or-non-negative-integer preserve-job-history" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20279 +#: guix-git/doc/guix.texi:20641 msgid "Specifies whether the job history is preserved after a job is printed. If a numeric value is specified, the job history is preserved for the indicated number of seconds after printing. If @code{#t}, the job history is preserved until the MaxJobs limit is reached." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20283 +#: guix-git/doc/guix.texi:20645 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer reload-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20286 +#: guix-git/doc/guix.texi:20648 msgid "Specifies the amount of time to wait for job completion before restarting the scheduler." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20290 +#: guix-git/doc/guix.texi:20652 #, no-wrap msgid "{@code{cups-configuration} parameter} string rip-cache" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20293 +#: guix-git/doc/guix.texi:20655 msgid "Specifies the maximum amount of memory to use when converting documents into bitmaps for a printer." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20295 +#: guix-git/doc/guix.texi:20657 msgid "Defaults to @samp{\"128m\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20297 +#: guix-git/doc/guix.texi:20659 #, no-wrap msgid "{@code{cups-configuration} parameter} string server-admin" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20299 +#: guix-git/doc/guix.texi:20661 msgid "Specifies the email address of the server administrator." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20301 +#: guix-git/doc/guix.texi:20663 msgid "Defaults to @samp{\"root@@localhost.localdomain\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20303 +#: guix-git/doc/guix.texi:20665 #, no-wrap msgid "{@code{cups-configuration} parameter} host-name-list-or-* server-alias" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20311 +#: guix-git/doc/guix.texi:20673 msgid "The ServerAlias directive is used for HTTP Host header validation when clients connect to the scheduler from external interfaces. Using the special name @code{*} can expose your system to known browser-based DNS rebinding attacks, even when accessing sites through a firewall. If the auto-discovery of alternate names does not work, we recommend listing each alternate name with a ServerAlias directive instead of using @code{*}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20313 +#: guix-git/doc/guix.texi:20675 msgid "Defaults to @samp{*}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20315 +#: guix-git/doc/guix.texi:20677 #, no-wrap msgid "{@code{cups-configuration} parameter} string server-name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20317 +#: guix-git/doc/guix.texi:20679 msgid "Specifies the fully-qualified host name of the server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20319 guix-git/doc/guix.texi:25449 -#: guix-git/doc/guix.texi:25494 +#: guix-git/doc/guix.texi:20681 msgid "Defaults to @samp{\"localhost\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20321 +#: guix-git/doc/guix.texi:20683 #, no-wrap msgid "{@code{cups-configuration} parameter} server-tokens server-tokens" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20329 +#: guix-git/doc/guix.texi:20691 msgid "Specifies what information is included in the Server header of HTTP responses. @code{None} disables the Server header. @code{ProductOnly} reports @code{CUPS}. @code{Major} reports @code{CUPS 2}. @code{Minor} reports @code{CUPS 2.0}. @code{Minimal} reports @code{CUPS 2.0.0}. @code{OS} reports @code{CUPS 2.0.0 (@var{uname})} where @var{uname} is the output of the @code{uname} command. @code{Full} reports @code{CUPS 2.0.0 (@var{uname}) IPP/2.0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20331 +#: guix-git/doc/guix.texi:20693 msgid "Defaults to @samp{Minimal}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20333 +#: guix-git/doc/guix.texi:20695 #, no-wrap msgid "{@code{cups-configuration} parameter} multiline-string-list ssl-listen" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20338 +#: guix-git/doc/guix.texi:20700 msgid "Listens on the specified interfaces for encrypted connections. Valid values are of the form @var{address}:@var{port}, where @var{address} is either an IPv6 address enclosed in brackets, an IPv4 address, or @code{*} to indicate all addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20342 +#: guix-git/doc/guix.texi:20704 #, no-wrap msgid "{@code{cups-configuration} parameter} ssl-options ssl-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20352 +#: guix-git/doc/guix.texi:20714 msgid "Sets encryption options. By default, CUPS only supports encryption using TLS v1.0 or higher using known secure cipher suites. Security is reduced when @code{Allow} options are used, and enhanced when @code{Deny} options are used. The @code{AllowRC4} option enables the 128-bit RC4 cipher suites, which are required for some older clients. The @code{AllowSSL3} option enables SSL v3.0, which is required for some older clients that do not support TLS v1.0. The @code{DenyCBC} option disables all CBC cipher suites. The @code{DenyTLS1.0} option disables TLS v1.0 support - this sets the minimum protocol version to TLS v1.1." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20356 +#: guix-git/doc/guix.texi:20718 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean strict-conformance?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20359 +#: guix-git/doc/guix.texi:20721 msgid "Specifies whether the scheduler requires clients to strictly adhere to the IPP specifications." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20363 +#: guix-git/doc/guix.texi:20725 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20365 +#: guix-git/doc/guix.texi:20727 msgid "Specifies the HTTP request timeout, in seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20370 +#: guix-git/doc/guix.texi:20732 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean web-interface?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20372 +#: guix-git/doc/guix.texi:20734 msgid "Specifies whether the web interface is enabled." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20382 +#: guix-git/doc/guix.texi:20744 msgid "At this point you're probably thinking ``oh dear, Guix manual, I like you but you can stop already with the configuration options''. Indeed. However, one more point: it could be that you have an existing @code{cupsd.conf} that you want to use. In that case, you can pass an @code{opaque-cups-configuration} as the configuration of a @code{cups-service-type}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20384 +#: guix-git/doc/guix.texi:20746 msgid "Available @code{opaque-cups-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20385 +#: guix-git/doc/guix.texi:20747 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} package cups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20389 +#: guix-git/doc/guix.texi:20751 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} string cupsd.conf" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20391 +#: guix-git/doc/guix.texi:20753 msgid "The contents of the @code{cupsd.conf}, as a string." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20393 +#: guix-git/doc/guix.texi:20755 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} string cups-files.conf" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20395 +#: guix-git/doc/guix.texi:20757 msgid "The contents of the @code{cups-files.conf} file, as a string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20400 +#: guix-git/doc/guix.texi:20762 msgid "For example, if your @code{cupsd.conf} and @code{cups-files.conf} are in strings of the same name, you could instantiate a CUPS service like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20406 +#: guix-git/doc/guix.texi:20768 #, no-wrap msgid "" "(service cups-service-type\n" @@ -36445,238 +37033,238 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20417 +#: guix-git/doc/guix.texi:20779 msgid "The @code{(gnu services desktop)} module provides services that are usually useful in the context of a ``desktop'' setup---that is, on a machine running a graphical display server, possibly with graphical user interfaces, etc. It also defines services that provide specific desktop environments like GNOME, Xfce or MATE." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20421 +#: guix-git/doc/guix.texi:20783 msgid "To simplify things, the module defines a variable containing the set of services that users typically expect on a machine with a graphical environment and networking:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20422 +#: guix-git/doc/guix.texi:20784 #, no-wrap msgid "{Scheme Variable} %desktop-services" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20425 +#: guix-git/doc/guix.texi:20787 msgid "This is a list of services that builds upon @code{%base-services} and adds or adjusts services for a typical ``desktop'' setup." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20436 +#: guix-git/doc/guix.texi:20798 msgid "In particular, it adds a graphical login manager (@pxref{X Window, @code{gdm-service-type}}), screen lockers, a network management tool (@pxref{Networking Services, @code{network-manager-service-type}}) with modem support (@pxref{Networking Services, @code{modem-manager-service-type}}), energy and color management services, the @code{elogind} login and seat manager, the Polkit privilege service, the GeoClue location service, the AccountsService daemon that allows authorized users change system passwords, an NTP client (@pxref{Networking Services}), the Avahi daemon, and has the name service switch service configured to be able to use @code{nss-mdns} (@pxref{Name Service Switch, mDNS})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20441 +#: guix-git/doc/guix.texi:20803 msgid "The @code{%desktop-services} variable can be used as the @code{services} field of an @code{operating-system} declaration (@pxref{operating-system Reference, @code{services}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20464 +#: guix-git/doc/guix.texi:20826 msgid "Additionally, the @code{gnome-desktop-service-type}, @code{xfce-desktop-service}, @code{mate-desktop-service-type}, @code{lxqt-desktop-service-type} and @code{enlightenment-desktop-service-type} procedures can add GNOME, Xfce, MATE and/or Enlightenment to a system. To ``add GNOME'' means that system-level services like the backlight adjustment helpers and the power management utilities are added to the system, extending @code{polkit} and @code{dbus} appropriately, allowing GNOME to operate with elevated privileges on a limited number of special-purpose system interfaces. Additionally, adding a service made by @code{gnome-desktop-service-type} adds the GNOME metapackage to the system profile. Likewise, adding the Xfce service not only adds the @code{xfce} metapackage to the system profile, but it also gives the Thunar file manager the ability to open a ``root-mode'' file management window, if the user authenticates using the administrator's password via the standard polkit graphical interface. To ``add MATE'' means that @code{polkit} and @code{dbus} are extended appropriately, allowing MATE to operate with elevated privileges on a limited number of special-purpose system interfaces. Additionally, adding a service of type @code{mate-desktop-service-type} adds the MATE metapackage to the system profile. ``Adding Enlightenment'' means that @code{dbus} is extended appropriately, and several of Enlightenment's binaries are set as setuid, allowing Enlightenment's screen locker and other functionality to work as expected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20474 +#: guix-git/doc/guix.texi:20836 msgid "The desktop environments in Guix use the Xorg display server by default. If you'd like to use the newer display server protocol called Wayland, you need to enable Wayland support in GDM (@pxref{wayland-gdm}). Another solution is to use the @code{sddm-service} instead of GDM as the graphical login manager. You should then select the ``GNOME (Wayland)'' session in SDDM@. Alternatively you can also try starting GNOME on Wayland manually from a TTY with the command ``XDG_SESSION_TYPE=wayland exec dbus-run-session gnome-session``. Currently only GNOME has support for Wayland." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20475 +#: guix-git/doc/guix.texi:20837 #, no-wrap msgid "{Scheme Variable} gnome-desktop-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20479 +#: guix-git/doc/guix.texi:20841 msgid "This is the type of the service that adds the @uref{https://www.gnome.org, GNOME} desktop environment. Its value is a @code{gnome-desktop-configuration} object (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20482 +#: guix-git/doc/guix.texi:20844 msgid "This service adds the @code{gnome} package to the system profile, and extends polkit with the actions from @code{gnome-settings-daemon}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20484 +#: guix-git/doc/guix.texi:20846 #, no-wrap msgid "{Data Type} gnome-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20486 +#: guix-git/doc/guix.texi:20848 msgid "Configuration record for the GNOME desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20488 +#: guix-git/doc/guix.texi:20850 #, no-wrap msgid "@code{gnome} (default: @code{gnome})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20490 +#: guix-git/doc/guix.texi:20852 msgid "The GNOME package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20493 +#: guix-git/doc/guix.texi:20855 #, no-wrap msgid "{Scheme Variable} xfce-desktop-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20497 +#: guix-git/doc/guix.texi:20859 msgid "This is the type of a service to run the @uref{Xfce, https://xfce.org/} desktop environment. Its value is an @code{xfce-desktop-configuration} object (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20502 +#: guix-git/doc/guix.texi:20864 msgid "This service adds the @code{xfce} package to the system profile, and extends polkit with the ability for @code{thunar} to manipulate the file system as root from within a user session, after the user has authenticated with the administrator's password." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20508 +#: guix-git/doc/guix.texi:20870 msgid "Note that @code{xfce4-panel} and its plugin packages should be installed in the same profile to ensure compatibility. When using this service, you should add extra plugins (@code{xfce4-whiskermenu-plugin}, @code{xfce4-weather-plugin}, etc.) to the @code{packages} field of your @code{operating-system}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20510 +#: guix-git/doc/guix.texi:20872 #, no-wrap msgid "{Data Type} xfce-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20512 +#: guix-git/doc/guix.texi:20874 msgid "Configuration record for the Xfce desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20514 +#: guix-git/doc/guix.texi:20876 #, no-wrap msgid "@code{xfce} (default: @code{xfce})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20516 +#: guix-git/doc/guix.texi:20878 msgid "The Xfce package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20519 +#: guix-git/doc/guix.texi:20881 #, no-wrap msgid "{Scheme Variable} mate-desktop-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20523 +#: guix-git/doc/guix.texi:20885 msgid "This is the type of the service that runs the @uref{https://mate-desktop.org/, MATE desktop environment}. Its value is a @code{mate-desktop-configuration} object (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20527 +#: guix-git/doc/guix.texi:20889 msgid "This service adds the @code{mate} package to the system profile, and extends polkit with the actions from @code{mate-settings-daemon}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20529 +#: guix-git/doc/guix.texi:20891 #, no-wrap msgid "{Data Type} mate-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20531 +#: guix-git/doc/guix.texi:20893 msgid "Configuration record for the MATE desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20533 +#: guix-git/doc/guix.texi:20895 #, no-wrap msgid "@code{mate} (default: @code{mate})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20535 +#: guix-git/doc/guix.texi:20897 msgid "The MATE package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20538 +#: guix-git/doc/guix.texi:20900 #, no-wrap msgid "{Scheme Variable} lxqt-desktop-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20542 +#: guix-git/doc/guix.texi:20904 msgid "This is the type of the service that runs the @uref{https://lxqt-project.org, LXQt desktop environment}. Its value is a @code{lxqt-desktop-configuration} object (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20545 +#: guix-git/doc/guix.texi:20907 msgid "This service adds the @code{lxqt} package to the system profile." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20547 +#: guix-git/doc/guix.texi:20909 #, no-wrap msgid "{Data Type} lxqt-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20549 +#: guix-git/doc/guix.texi:20911 msgid "Configuration record for the LXQt desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20551 +#: guix-git/doc/guix.texi:20913 #, no-wrap msgid "@code{lxqt} (default: @code{lxqt})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20553 +#: guix-git/doc/guix.texi:20915 msgid "The LXQT package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20556 +#: guix-git/doc/guix.texi:20918 #, no-wrap msgid "{Scheme Variable} enlightenment-desktop-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20559 +#: guix-git/doc/guix.texi:20921 msgid "Return a service that adds the @code{enlightenment} package to the system profile, and extends dbus with actions from @code{efl}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20561 +#: guix-git/doc/guix.texi:20923 #, no-wrap msgid "{Data Type} enlightenment-desktop-service-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20563 +#: guix-git/doc/guix.texi:20925 #, no-wrap msgid "@code{enlightenment} (default: @code{enlightenment})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20565 +#: guix-git/doc/guix.texi:20927 msgid "The enlightenment package to use." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20573 +#: guix-git/doc/guix.texi:20935 msgid "Because the GNOME, Xfce and MATE desktop services pull in so many packages, the default @code{%desktop-services} variable doesn't include any of them by default. To add GNOME, Xfce or MATE, just @code{cons} them onto @code{%desktop-services} in the @code{services} field of your @code{operating-system}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20584 +#: guix-git/doc/guix.texi:20946 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -36691,576 +37279,576 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20588 +#: guix-git/doc/guix.texi:20950 msgid "These desktop environments will then be available as options in the graphical login window." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20592 +#: guix-git/doc/guix.texi:20954 msgid "The actual service definitions included in @code{%desktop-services} and provided by @code{(gnu services dbus)} and @code{(gnu services desktop)} are described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20593 +#: guix-git/doc/guix.texi:20955 #, no-wrap msgid "{Scheme Procedure} dbus-service [#:dbus @var{dbus}] [#:services '()]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20596 +#: guix-git/doc/guix.texi:20958 msgid "Return a service that runs the ``system bus'', using @var{dbus}, with support for @var{services}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20600 +#: guix-git/doc/guix.texi:20962 msgid "@uref{https://dbus.freedesktop.org/, D-Bus} is an inter-process communication facility. Its system bus is used to allow system services to communicate and to be notified of system-wide events." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20605 +#: guix-git/doc/guix.texi:20967 msgid "@var{services} must be a list of packages that provide an @file{etc/dbus-1/system.d} directory containing additional D-Bus configuration and policy files. For example, to allow avahi-daemon to use the system bus, @var{services} must be equal to @code{(list avahi)}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20607 +#: guix-git/doc/guix.texi:20969 #, no-wrap msgid "{Scheme Procedure} elogind-service [#:config @var{config}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20613 +#: guix-git/doc/guix.texi:20975 msgid "Return a service that runs the @code{elogind} login and seat management daemon. @uref{https://github.com/elogind/elogind, Elogind} exposes a D-Bus interface that can be used to know which users are logged in, know what kind of sessions they have open, suspend the system, inhibit system suspend, reboot the system, and other tasks." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20617 +#: guix-git/doc/guix.texi:20979 msgid "Elogind handles most system-level power events for a computer, for example suspending the system when a lid is closed, or shutting it down when the power button is pressed." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20622 +#: guix-git/doc/guix.texi:20984 msgid "The @var{config} keyword argument specifies the configuration for elogind, and should be the result of an @code{(elogind-configuration (@var{parameter} @var{value})...)} invocation. Available parameters and their default values are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20624 +#: guix-git/doc/guix.texi:20986 #, no-wrap msgid "kill-user-processes?" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20626 guix-git/doc/guix.texi:20646 -#: guix-git/doc/guix.texi:20648 guix-git/doc/guix.texi:20650 -#: guix-git/doc/guix.texi:20662 +#: guix-git/doc/guix.texi:20988 guix-git/doc/guix.texi:21008 +#: guix-git/doc/guix.texi:21010 guix-git/doc/guix.texi:21012 +#: guix-git/doc/guix.texi:21024 msgid "#f" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20626 +#: guix-git/doc/guix.texi:20988 #, no-wrap msgid "kill-only-users" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20628 guix-git/doc/guix.texi:20668 +#: guix-git/doc/guix.texi:20990 guix-git/doc/guix.texi:21030 msgid "()" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20628 +#: guix-git/doc/guix.texi:20990 #, no-wrap msgid "kill-exclude-users" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20630 +#: guix-git/doc/guix.texi:20992 msgid "(\"root\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20630 +#: guix-git/doc/guix.texi:20992 #, no-wrap msgid "inhibit-delay-max-seconds" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20632 +#: guix-git/doc/guix.texi:20994 msgid "5" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20632 +#: guix-git/doc/guix.texi:20994 #, no-wrap msgid "handle-power-key" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20634 +#: guix-git/doc/guix.texi:20996 msgid "poweroff" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20634 +#: guix-git/doc/guix.texi:20996 #, no-wrap msgid "handle-suspend-key" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20636 guix-git/doc/guix.texi:20640 +#: guix-git/doc/guix.texi:20998 guix-git/doc/guix.texi:21002 msgid "suspend" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20636 +#: guix-git/doc/guix.texi:20998 #, no-wrap msgid "handle-hibernate-key" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20638 +#: guix-git/doc/guix.texi:21000 msgid "hibernate" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20638 +#: guix-git/doc/guix.texi:21000 #, no-wrap msgid "handle-lid-switch" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20640 +#: guix-git/doc/guix.texi:21002 #, no-wrap msgid "handle-lid-switch-docked" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20642 guix-git/doc/guix.texi:20644 -#: guix-git/doc/guix.texi:20656 +#: guix-git/doc/guix.texi:21004 guix-git/doc/guix.texi:21006 +#: guix-git/doc/guix.texi:21018 msgid "ignore" -msgstr "" +msgstr "ignore" #. type: item -#: guix-git/doc/guix.texi:20642 +#: guix-git/doc/guix.texi:21004 #, no-wrap msgid "handle-lid-switch-external-power" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20644 +#: guix-git/doc/guix.texi:21006 #, no-wrap msgid "power-key-ignore-inhibited?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20646 +#: guix-git/doc/guix.texi:21008 #, no-wrap msgid "suspend-key-ignore-inhibited?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20648 +#: guix-git/doc/guix.texi:21010 #, no-wrap msgid "hibernate-key-ignore-inhibited?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20650 +#: guix-git/doc/guix.texi:21012 #, no-wrap msgid "lid-switch-ignore-inhibited?" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20652 guix-git/doc/guix.texi:20664 +#: guix-git/doc/guix.texi:21014 guix-git/doc/guix.texi:21026 msgid "#t" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20652 +#: guix-git/doc/guix.texi:21014 #, no-wrap msgid "holdoff-timeout-seconds" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20654 +#: guix-git/doc/guix.texi:21016 msgid "30" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20654 +#: guix-git/doc/guix.texi:21016 #, no-wrap msgid "idle-action" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20656 +#: guix-git/doc/guix.texi:21018 #, no-wrap msgid "idle-action-seconds" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20658 +#: guix-git/doc/guix.texi:21020 msgid "(* 30 60)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20658 +#: guix-git/doc/guix.texi:21020 #, no-wrap msgid "runtime-directory-size-percent" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20660 +#: guix-git/doc/guix.texi:21022 msgid "10" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20660 +#: guix-git/doc/guix.texi:21022 #, no-wrap msgid "runtime-directory-size" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20662 +#: guix-git/doc/guix.texi:21024 #, no-wrap msgid "remove-ipc?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20664 +#: guix-git/doc/guix.texi:21026 #, no-wrap msgid "suspend-state" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20666 +#: guix-git/doc/guix.texi:21028 msgid "(\"mem\" \"standby\" \"freeze\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20666 +#: guix-git/doc/guix.texi:21028 #, no-wrap msgid "suspend-mode" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20668 +#: guix-git/doc/guix.texi:21030 #, no-wrap msgid "hibernate-state" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20670 guix-git/doc/guix.texi:20674 +#: guix-git/doc/guix.texi:21032 guix-git/doc/guix.texi:21036 msgid "(\"disk\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20670 +#: guix-git/doc/guix.texi:21032 #, no-wrap msgid "hibernate-mode" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20672 +#: guix-git/doc/guix.texi:21034 msgid "(\"platform\" \"shutdown\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20672 +#: guix-git/doc/guix.texi:21034 #, no-wrap msgid "hybrid-sleep-state" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20674 +#: guix-git/doc/guix.texi:21036 #, no-wrap msgid "hybrid-sleep-mode" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20676 +#: guix-git/doc/guix.texi:21038 msgid "(\"suspend\" \"platform\" \"shutdown\")" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20679 +#: guix-git/doc/guix.texi:21041 #, no-wrap msgid "{Scheme Procedure} accountsservice-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20687 +#: guix-git/doc/guix.texi:21049 msgid "[#:accountsservice @var{accountsservice}] Return a service that runs AccountsService, a system service that can list available accounts, change their passwords, and so on. AccountsService integrates with PolicyKit to enable unprivileged users to acquire the capability to modify their system configuration. @uref{https://www.freedesktop.org/wiki/Software/AccountsService/, the accountsservice web site} for more information." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20690 +#: guix-git/doc/guix.texi:21052 msgid "The @var{accountsservice} keyword argument is the @code{accountsservice} package to expose as a service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20692 +#: guix-git/doc/guix.texi:21054 #, no-wrap msgid "{Scheme Procedure} polkit-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20701 +#: guix-git/doc/guix.texi:21063 msgid "[#:polkit @var{polkit}] Return a service that runs the @uref{https://www.freedesktop.org/wiki/Software/polkit/, Polkit privilege management service}, which allows system administrators to grant access to privileged operations in a structured way. By querying the Polkit service, a privileged system component can know when it should grant additional capabilities to ordinary users. For example, an ordinary user can be granted the capability to suspend the system if the user is logged in locally." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20703 +#: guix-git/doc/guix.texi:21065 #, no-wrap msgid "{Scheme Variable} polkit-wheel-service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20708 +#: guix-git/doc/guix.texi:21070 msgid "Service that adds the @code{wheel} group as admins to the Polkit service. This makes it so that users in the @code{wheel} group are queried for their own passwords when performing administrative actions instead of @code{root}'s, similar to the behaviour used by @code{sudo}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20710 +#: guix-git/doc/guix.texi:21072 #, no-wrap msgid "{Scheme Variable} upower-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20714 +#: guix-git/doc/guix.texi:21076 msgid "Service that runs @uref{https://upower.freedesktop.org/, @command{upowerd}}, a system-wide monitor for power consumption and battery levels, with the given configuration settings." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20717 +#: guix-git/doc/guix.texi:21079 msgid "It implements the @code{org.freedesktop.UPower} D-Bus interface, and is notably used by GNOME." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20719 +#: guix-git/doc/guix.texi:21081 #, no-wrap msgid "{Data Type} upower-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20721 +#: guix-git/doc/guix.texi:21083 msgid "Data type representation the configuration for UPower." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20724 +#: guix-git/doc/guix.texi:21086 #, no-wrap msgid "@code{upower} (default: @var{upower})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20726 +#: guix-git/doc/guix.texi:21088 msgid "Package to use for @code{upower}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20727 +#: guix-git/doc/guix.texi:21089 #, no-wrap msgid "@code{watts-up-pro?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20729 +#: guix-git/doc/guix.texi:21091 msgid "Enable the Watts Up Pro device." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20730 +#: guix-git/doc/guix.texi:21092 #, no-wrap msgid "@code{poll-batteries?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20732 +#: guix-git/doc/guix.texi:21094 msgid "Enable polling the kernel for battery level changes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20733 +#: guix-git/doc/guix.texi:21095 #, no-wrap msgid "@code{ignore-lid?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20735 +#: guix-git/doc/guix.texi:21097 msgid "Ignore the lid state, this can be useful if it's incorrect on a device." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20736 +#: guix-git/doc/guix.texi:21098 #, no-wrap msgid "@code{use-percentage-for-policy?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20739 +#: guix-git/doc/guix.texi:21101 msgid "Whether battery percentage based policy should be used. The default is to use the time left, change to @code{#t} to use the percentage." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20740 +#: guix-git/doc/guix.texi:21102 #, no-wrap msgid "@code{percentage-low} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20743 +#: guix-git/doc/guix.texi:21105 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which the battery is considered low." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20744 +#: guix-git/doc/guix.texi:21106 #, no-wrap msgid "@code{percentage-critical} (default: @code{3})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20747 +#: guix-git/doc/guix.texi:21109 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which the battery is considered critical." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20748 +#: guix-git/doc/guix.texi:21110 #, no-wrap msgid "@code{percentage-action} (default: @code{2})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20751 +#: guix-git/doc/guix.texi:21113 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which action will be taken." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20752 +#: guix-git/doc/guix.texi:21114 #, no-wrap msgid "@code{time-low} (default: @code{1200})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20755 +#: guix-git/doc/guix.texi:21117 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which the battery is considered low." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20756 +#: guix-git/doc/guix.texi:21118 #, no-wrap msgid "@code{time-critical} (default: @code{300})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20759 +#: guix-git/doc/guix.texi:21121 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which the battery is considered critical." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20760 +#: guix-git/doc/guix.texi:21122 #, no-wrap msgid "@code{time-action} (default: @code{120})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20763 +#: guix-git/doc/guix.texi:21125 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which action will be taken." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20764 +#: guix-git/doc/guix.texi:21126 #, no-wrap msgid "@code{critical-power-action} (default: @code{'hybrid-sleep})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20767 +#: guix-git/doc/guix.texi:21129 msgid "The action taken when @code{percentage-action} or @code{time-action} is reached (depending on the configuration of @code{use-percentage-for-policy?})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20769 +#: guix-git/doc/guix.texi:21131 msgid "Possible values are:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20773 +#: guix-git/doc/guix.texi:21135 msgid "'power-off" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20776 +#: guix-git/doc/guix.texi:21138 msgid "'hibernate" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:20779 +#: guix-git/doc/guix.texi:21141 msgid "@code{'hybrid-sleep}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20784 +#: guix-git/doc/guix.texi:21146 #, no-wrap msgid "{Scheme Procedure} udisks-service [#:udisks @var{udisks}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20794 +#: guix-git/doc/guix.texi:21156 msgid "Return a service for @uref{https://udisks.freedesktop.org/docs/latest/, UDisks}, a @dfn{disk management} daemon that provides user interfaces with notifications and ways to mount/unmount disks. Programs that talk to UDisks include the @command{udisksctl} command, part of UDisks, and GNOME Disks. Note that Udisks relies on the @command{mount} command, so it will only be able to use the file-system utilities installed in the system profile. For example if you want to be able to mount NTFS file-systems in read and write fashion, you'll need to have @code{ntfs-3g} installed system-wide." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20796 +#: guix-git/doc/guix.texi:21158 #, no-wrap msgid "{Scheme Variable} colord-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20803 +#: guix-git/doc/guix.texi:21165 msgid "This is the type of the service that runs @command{colord}, a system service with a D-Bus interface to manage the color profiles of input and output devices such as screens and scanners. It is notably used by the GNOME Color Manager graphical tool. See @uref{https://www.freedesktop.org/software/colord/, the colord web site} for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20805 +#: guix-git/doc/guix.texi:21167 #, no-wrap msgid "scanner access" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20806 +#: guix-git/doc/guix.texi:21168 #, no-wrap msgid "{Scheme Variable} sane-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20812 +#: guix-git/doc/guix.texi:21174 msgid "This service provides access to scanners @i{via} @uref{http://www.sane-project.org, SANE} by installing the necessary udev rules. It is included in @code{%desktop-services} (@pxref{Desktop Services}) and relies by default on @code{sane-backends-minimal} package (see below) for hardware support." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20814 +#: guix-git/doc/guix.texi:21176 #, no-wrap msgid "{Scheme Variable} sane-backends-minimal" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20817 +#: guix-git/doc/guix.texi:21179 msgid "The default package which the @code{sane-service-type} installs. It supports many recent scanners." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20819 +#: guix-git/doc/guix.texi:21181 #, no-wrap msgid "{Scheme Variable} sane-backends" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20826 +#: guix-git/doc/guix.texi:21188 msgid "This package includes support for all scanners that @code{sane-backends-minimal} supports, plus older Hewlett-Packard scanners supported by @code{hplip} package. In order to use this on a system which relies on @code{%desktop-services}, you may use @code{modify-services} (@pxref{Service Reference, @code{modify-services}}) as illustrated below:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20835 +#: guix-git/doc/guix.texi:21197 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -37274,7 +37862,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20840 +#: guix-git/doc/guix.texi:21202 #, no-wrap msgid "" "(define %my-desktop-services\n" @@ -37285,7 +37873,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20844 +#: guix-git/doc/guix.texi:21206 #, no-wrap msgid "" "(operating-system\n" @@ -37294,214 +37882,214 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20847 +#: guix-git/doc/guix.texi:21209 #, no-wrap msgid "{Scheme Procedure} geoclue-application name [#:allowed? #t] [#:system? #f] [#:users '()]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20856 +#: guix-git/doc/guix.texi:21218 msgid "Return a configuration allowing an application to access GeoClue location data. @var{name} is the Desktop ID of the application, without the @code{.desktop} part. If @var{allowed?} is true, the application will have access to location information by default. The boolean @var{system?} value indicates whether an application is a system component or not. Finally @var{users} is a list of UIDs of all users for which this application is allowed location info access. An empty users list means that all users are allowed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20858 +#: guix-git/doc/guix.texi:21220 #, no-wrap msgid "{Scheme Variable} %standard-geoclue-applications" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20865 +#: guix-git/doc/guix.texi:21227 msgid "The standard list of well-known GeoClue application configurations, granting authority to the GNOME date-and-time utility to ask for the current location in order to set the time zone, and allowing the IceCat and Epiphany web browsers to request location information. IceCat and Epiphany both query the user before allowing a web page to know the user's location." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20867 +#: guix-git/doc/guix.texi:21229 #, no-wrap msgid "{Scheme Procedure} geoclue-service [#:colord @var{colord}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20880 +#: guix-git/doc/guix.texi:21242 msgid "[#:whitelist '()] @ [#:wifi-geolocation-url \"https://location.services.mozilla.com/v1/geolocate?key=geoclue\"] @ [#:submit-data? #f] [#:wifi-submission-url \"https://location.services.mozilla.com/v1/submit?key=geoclue\"] @ [#:submission-nick \"geoclue\"] @ [#:applications %standard-geoclue-applications] Return a service that runs the GeoClue location service. This service provides a D-Bus interface to allow applications to request access to a user's physical location, and optionally to add information to online location databases. See @uref{https://wiki.freedesktop.org/www/Software/GeoClue/, the GeoClue web site} for more information." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20882 +#: guix-git/doc/guix.texi:21244 #, no-wrap msgid "{Scheme Procedure} bluetooth-service [#:bluez @var{bluez}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20889 +#: guix-git/doc/guix.texi:21251 msgid "[@w{#:auto-enable? #f}] Return a service that runs the @command{bluetoothd} daemon, which manages all the Bluetooth devices and provides a number of D-Bus interfaces. When AUTO-ENABLE? is true, the bluetooth controller is powered automatically at boot, which can be useful when using a bluetooth keyboard or mouse." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20891 +#: guix-git/doc/guix.texi:21253 msgid "Users need to be in the @code{lp} group to access the D-Bus service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20893 +#: guix-git/doc/guix.texi:21255 #, no-wrap msgid "{Scheme Variable} gnome-keyring-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20897 +#: guix-git/doc/guix.texi:21259 msgid "This is the type of the service that adds the @uref{https://wiki.gnome.org/Projects/GnomeKeyring, GNOME Keyring}. Its value is a @code{gnome-keyring-configuration} object (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20901 +#: guix-git/doc/guix.texi:21263 msgid "This service adds the @code{gnome-keyring} package to the system profile and extends PAM with entries using @code{pam_gnome_keyring.so}, unlocking a user's login keyring when they log in or setting its password with passwd." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20903 +#: guix-git/doc/guix.texi:21265 #, no-wrap msgid "{Data Type} gnome-keyring-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20905 +#: guix-git/doc/guix.texi:21267 msgid "Configuration record for the GNOME Keyring service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20907 +#: guix-git/doc/guix.texi:21269 #, no-wrap msgid "@code{keyring} (default: @code{gnome-keyring})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20909 +#: guix-git/doc/guix.texi:21271 msgid "The GNOME keyring package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20910 +#: guix-git/doc/guix.texi:21272 #, no-wrap msgid "pam-services" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20915 +#: guix-git/doc/guix.texi:21277 msgid "A list of @code{(@var{service} . @var{kind})} pairs denoting PAM services to extend, where @var{service} is the name of an existing service to extend and @var{kind} is one of @code{login} or @code{passwd}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20921 +#: guix-git/doc/guix.texi:21283 msgid "If @code{login} is given, it adds an optional @code{pam_gnome_keyring.so} to the auth block without arguments and to the session block with @code{auto_start}. If @code{passwd} is given, it adds an optional @code{pam_gnome_keyring.so} to the password block without arguments." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20924 +#: guix-git/doc/guix.texi:21286 msgid "By default, this field contains ``gdm-password'' with the value @code{login} and ``passwd'' is with the value @code{passwd}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20931 +#: guix-git/doc/guix.texi:21293 #, no-wrap msgid "sound support" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20932 +#: guix-git/doc/guix.texi:21294 #, no-wrap msgid "ALSA" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20933 +#: guix-git/doc/guix.texi:21295 #, no-wrap msgid "PulseAudio, sound support" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20938 +#: guix-git/doc/guix.texi:21300 msgid "The @code{(gnu services sound)} module provides a service to configure the Advanced Linux Sound Architecture (ALSA) system, which makes PulseAudio the preferred ALSA output driver." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20939 +#: guix-git/doc/guix.texi:21301 #, no-wrap msgid "{Scheme Variable} alsa-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20944 +#: guix-git/doc/guix.texi:21306 msgid "This is the type for the @uref{https://alsa-project.org/, Advanced Linux Sound Architecture} (ALSA) system, which generates the @file{/etc/asound.conf} configuration file. The value for this type is a @command{alsa-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20947 +#: guix-git/doc/guix.texi:21309 #, no-wrap msgid "(service alsa-service-type)\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20950 +#: guix-git/doc/guix.texi:21312 msgid "See below for details about @code{alsa-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20952 +#: guix-git/doc/guix.texi:21314 #, no-wrap msgid "{Data Type} alsa-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20954 +#: guix-git/doc/guix.texi:21316 msgid "Data type representing the configuration for @code{alsa-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20956 +#: guix-git/doc/guix.texi:21318 #, no-wrap msgid "@code{alsa-plugins} (default: @var{alsa-plugins})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20958 +#: guix-git/doc/guix.texi:21320 msgid "@code{alsa-plugins} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20959 +#: guix-git/doc/guix.texi:21321 #, no-wrap msgid "@code{pulseaudio?} (default: @var{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20962 +#: guix-git/doc/guix.texi:21324 msgid "Whether ALSA applications should transparently be made to use the @uref{https://www.pulseaudio.org/, PulseAudio} sound server." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20966 +#: guix-git/doc/guix.texi:21328 msgid "Using PulseAudio allows you to run several sound-producing applications at the same time and to individual control them @i{via} @command{pavucontrol}, among other things." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20967 +#: guix-git/doc/guix.texi:21329 #, no-wrap msgid "@code{extra-options} (default: @var{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20969 +#: guix-git/doc/guix.texi:21331 msgid "String to append to the @file{/etc/asound.conf} file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20975 +#: guix-git/doc/guix.texi:21337 msgid "Individual users who want to override the system configuration of ALSA can do it with the @file{~/.asoundrc} file:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:20981 +#: guix-git/doc/guix.texi:21343 #, no-wrap msgid "" "# In guix, we have to specify the absolute path for plugins.\n" @@ -37512,7 +38100,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:20990 +#: guix-git/doc/guix.texi:21352 #, no-wrap msgid "" "# Routing ALSA to jack:\n" @@ -37527,7 +38115,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:20996 +#: guix-git/doc/guix.texi:21358 #, no-wrap msgid "" " capture_ports @{\n" @@ -37539,7 +38127,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:21003 +#: guix-git/doc/guix.texi:21365 #, no-wrap msgid "" "pcm.!default @{\n" @@ -37551,104 +38139,104 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21007 +#: guix-git/doc/guix.texi:21369 msgid "See @uref{https://www.alsa-project.org/main/index.php/Asoundrc} for the details." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21008 +#: guix-git/doc/guix.texi:21370 #, no-wrap msgid "{Scheme Variable} pulseaudio-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21012 +#: guix-git/doc/guix.texi:21374 msgid "This is the type for the @uref{https://www.pulseaudio.org/, PulseAudio} sound server. It exists to allow system overrides of the default settings via @code{pulseaudio-configuration}, see below." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:21018 +#: guix-git/doc/guix.texi:21380 msgid "This service overrides per-user configuration files. If you want PulseAudio to honor configuration files in @file{~/.config/pulse} you have to unset the environment variables @env{PULSE_CONFIG} and @env{PULSE_CLIENTCONFIG} in your @file{~/.bash_profile}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:21026 +#: guix-git/doc/guix.texi:21388 msgid "This service on its own does not ensure, that the @code{pulseaudio} package exists on your machine. It merely adds configuration files for it, as detailed below. In the (admittedly unlikely) case, that you find yourself without a @code{pulseaudio} package, consider enabling it through the @code{alsa-service-type} above." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21029 +#: guix-git/doc/guix.texi:21391 #, no-wrap msgid "{Data Type} pulseaudio-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21031 +#: guix-git/doc/guix.texi:21393 msgid "Data type representing the configuration for @code{pulseaudio-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21033 +#: guix-git/doc/guix.texi:21395 #, no-wrap msgid "@code{client-conf} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21038 -msgid "List of settings to set in @file{client.conf}. Accepts a list of strings or a symbol-value pairs. A string will be inserted as-is with a newline added. A pair will be formatted as ``key = value'', again with a newline added." +#: guix-git/doc/guix.texi:21400 +msgid "List of settings to set in @file{client.conf}. Accepts a list of strings or symbol-value pairs. A string will be inserted as-is with a newline added. A pair will be formatted as ``key = value'', again with a newline added." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21039 +#: guix-git/doc/guix.texi:21401 #, no-wrap msgid "@code{daemon-conf} (default: @code{'((flat-volumes . no))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21042 +#: guix-git/doc/guix.texi:21404 msgid "List of settings to set in @file{daemon.conf}, formatted just like @var{client-conf}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21043 +#: guix-git/doc/guix.texi:21405 #, no-wrap msgid "@code{script-file} (default: @code{(file-append pulseaudio \"/etc/pulse/default.pa\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21045 +#: guix-git/doc/guix.texi:21407 msgid "Script file to use as @file{default.pa}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21046 +#: guix-git/doc/guix.texi:21408 #, no-wrap msgid "@code{system-script-file} (default: @code{(file-append pulseaudio \"/etc/pulse/system.pa\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21048 +#: guix-git/doc/guix.texi:21410 msgid "Script file to use as @file{system.pa}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21051 +#: guix-git/doc/guix.texi:21413 #, no-wrap msgid "{Scheme Variable} ladspa-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21054 +#: guix-git/doc/guix.texi:21416 msgid "This service sets the @var{LADSPA_PATH} variable, so that programs, which respect it, e.g. PulseAudio, can load LADSPA plugins." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21057 +#: guix-git/doc/guix.texi:21419 msgid "The following example will setup the service to enable modules from the @code{swh-plugins} package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21061 +#: guix-git/doc/guix.texi:21423 #, no-wrap msgid "" "(service ladspa-service-type\n" @@ -37656,34 +38244,34 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21065 +#: guix-git/doc/guix.texi:21427 msgid "See @uref{http://plugin.org.uk/ladspa-swh/docs/ladspa-swh.html} for the details." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21072 +#: guix-git/doc/guix.texi:21434 #, no-wrap msgid "SQL" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21074 +#: guix-git/doc/guix.texi:21436 msgid "The @code{(gnu services databases)} module provides the following services." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21075 +#: guix-git/doc/guix.texi:21437 #, no-wrap msgid "PostgreSQL" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21079 +#: guix-git/doc/guix.texi:21441 msgid "The following example describes a PostgreSQL service with the default configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21084 +#: guix-git/doc/guix.texi:21446 #, no-wrap msgid "" "(service postgresql-service-type\n" @@ -37692,17 +38280,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21090 +#: guix-git/doc/guix.texi:21452 msgid "If the services fails to start, it may be due to an incompatible cluster already present in @var{data-directory}. Adjust it (or, if you don't need the cluster anymore, delete @var{data-directory}), then restart the service." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21097 +#: guix-git/doc/guix.texi:21459 msgid "Peer authentication is used by default and the @code{postgres} user account has no shell, which prevents the direct execution of @code{psql} commands as this user. To use @code{psql}, you can temporarily log in as @code{postgres} using a shell, create a PostgreSQL superuser with the same name as one of the system users and then create the associated database." msgstr "" #. type: example -#: guix-git/doc/guix.texi:21102 +#: guix-git/doc/guix.texi:21464 #, no-wrap msgid "" "sudo -u postgres -s /bin/sh\n" @@ -37711,101 +38299,101 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21104 +#: guix-git/doc/guix.texi:21466 #, no-wrap msgid "{Data Type} postgresql-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21107 +#: guix-git/doc/guix.texi:21469 msgid "Data type representing the configuration for the @code{postgresql-service-type}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:21109 +#: guix-git/doc/guix.texi:21471 #, no-wrap msgid "postgresql" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21111 +#: guix-git/doc/guix.texi:21473 msgid "PostgreSQL package to use for the service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21112 +#: guix-git/doc/guix.texi:21474 #, no-wrap msgid "@code{port} (default: @code{5432})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21114 +#: guix-git/doc/guix.texi:21476 msgid "Port on which PostgreSQL should listen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21117 +#: guix-git/doc/guix.texi:21479 msgid "Locale to use as the default when creating the database cluster." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21118 +#: guix-git/doc/guix.texi:21480 #, no-wrap msgid "@code{config-file} (default: @code{(postgresql-config-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21122 +#: guix-git/doc/guix.texi:21484 msgid "The configuration file to use when running PostgreSQL@. The default behaviour uses the postgresql-config-file record with the default values for the fields." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21123 +#: guix-git/doc/guix.texi:21485 #, no-wrap msgid "@code{log-directory} (default: @code{\"/var/log/postgresql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21127 +#: guix-git/doc/guix.texi:21489 msgid "The directory where @command{pg_ctl} output will be written in a file named @code{\"pg_ctl.log\"}. This file can be useful to debug PostgreSQL configuration errors for instance." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21128 +#: guix-git/doc/guix.texi:21490 #, no-wrap msgid "@code{data-directory} (default: @code{\"/var/lib/postgresql/data\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21130 +#: guix-git/doc/guix.texi:21492 msgid "Directory in which to store the data." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21131 +#: guix-git/doc/guix.texi:21493 #, no-wrap msgid "@code{extension-packages} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21132 +#: guix-git/doc/guix.texi:21494 #, no-wrap msgid "postgresql extension-packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21137 +#: guix-git/doc/guix.texi:21499 msgid "Additional extensions are loaded from packages listed in @var{extension-packages}. Extensions are available at runtime. For instance, to create a geographic database using the @code{postgis} extension, a user can configure the postgresql-service as in this example:" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21138 +#: guix-git/doc/guix.texi:21500 #, no-wrap msgid "postgis" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21141 +#: guix-git/doc/guix.texi:21503 #, no-wrap msgid "" "(use-package-modules databases geo)\n" @@ -37813,7 +38401,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21154 +#: guix-git/doc/guix.texi:21516 #, no-wrap msgid "" "(operating-system\n" @@ -37831,12 +38419,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21158 +#: guix-git/doc/guix.texi:21520 msgid "Then the extension becomes visible and you can initialise an empty geographic database in this way:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:21165 +#: guix-git/doc/guix.texi:21527 #, no-wrap msgid "" "psql -U postgres\n" @@ -37847,23 +38435,23 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21170 +#: guix-git/doc/guix.texi:21532 msgid "There is no need to add this field for contrib extensions such as hstore or dblink as they are already loadable by postgresql. This field is only required to add extensions provided by other packages." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21174 +#: guix-git/doc/guix.texi:21536 #, no-wrap msgid "{Data Type} postgresql-config-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21180 +#: guix-git/doc/guix.texi:21542 msgid "Data type representing the PostgreSQL configuration file. As shown in the following example, this can be used to customize the configuration of PostgreSQL@. Note that you can use any G-expression or filename in place of this record, if you already have a configuration file you'd like to use for example." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21200 +#: guix-git/doc/guix.texi:21562 #, no-wrap msgid "" "(service postgresql-service-type\n" @@ -37887,77 +38475,77 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:21203 +#: guix-git/doc/guix.texi:21565 #, no-wrap msgid "@code{log-destination} (default: @code{\"syslog\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21206 +#: guix-git/doc/guix.texi:21568 msgid "The logging method to use for PostgreSQL@. Multiple values are accepted, separated by commas." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21207 +#: guix-git/doc/guix.texi:21569 #, no-wrap msgid "@code{hba-file} (default: @code{%default-postgres-hba})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21210 +#: guix-git/doc/guix.texi:21572 msgid "Filename or G-expression for the host-based authentication configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21211 +#: guix-git/doc/guix.texi:21573 #, no-wrap msgid "@code{ident-file} (default: @code{%default-postgres-ident})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21213 +#: guix-git/doc/guix.texi:21575 msgid "Filename or G-expression for the user name mapping configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21214 +#: guix-git/doc/guix.texi:21576 #, no-wrap msgid "@code{socket-directory} (default: @code{\"/var/run/postgresql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21219 +#: guix-git/doc/guix.texi:21581 msgid "Specifies the directory of the Unix-domain socket(s) on which PostgreSQL is to listen for connections from client applications. If set to @code{\"\"} PostgreSQL does not listen on any Unix-domain sockets, in which case only TCP/IP sockets can be used to connect to the server." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21222 +#: guix-git/doc/guix.texi:21584 msgid "By default, the @code{#false} value means the PostgreSQL default value will be used, which is currently @samp{/tmp}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21227 +#: guix-git/doc/guix.texi:21589 msgid "List of additional keys and values to include in the PostgreSQL config file. Each entry in the list should be a list where the first element is the key, and the remaining elements are the values." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21233 +#: guix-git/doc/guix.texi:21595 msgid "The values can be numbers, booleans or strings and will be mapped to PostgreSQL parameters types @code{Boolean}, @code{String}, @code{Numeric}, @code{Numeric with Unit} and @code{Enumerated} described @uref{https://www.postgresql.org/docs/current/config-setting.html, here}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21237 +#: guix-git/doc/guix.texi:21599 #, no-wrap msgid "{Scheme Variable} postgresql-role-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21240 +#: guix-git/doc/guix.texi:21602 msgid "This service allows to create PostgreSQL roles and databases after PostgreSQL service start. Here is an example of its use." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21248 +#: guix-git/doc/guix.texi:21610 #, no-wrap msgid "" "(service postgresql-role-service-type\n" @@ -37969,12 +38557,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21252 +#: guix-git/doc/guix.texi:21614 msgid "This service can be extended with extra roles, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21258 +#: guix-git/doc/guix.texi:21620 #, no-wrap msgid "" "(service-extension postgresql-role-service-type\n" @@ -37984,398 +38572,398 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21261 +#: guix-git/doc/guix.texi:21623 #, no-wrap msgid "{Data Type} postgresql-role" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21267 +#: guix-git/doc/guix.texi:21629 msgid "PostgreSQL manages database access permissions using the concept of roles. A role can be thought of as either a database user, or a group of database users, depending on how the role is set up. Roles can own database objects (for example, tables) and can assign privileges on those objects to other roles to control who has access to which objects." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21271 +#: guix-git/doc/guix.texi:21633 msgid "The role name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21272 +#: guix-git/doc/guix.texi:21634 #, no-wrap msgid "@code{permissions} (default: @code{'(createdb login)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21276 +#: guix-git/doc/guix.texi:21638 msgid "The role permissions list. Supported permissions are @code{bypassrls}, @code{createdb}, @code{createrole}, @code{login}, @code{replication} and @code{superuser}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21277 +#: guix-git/doc/guix.texi:21639 #, no-wrap msgid "@code{create-database?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21279 +#: guix-git/doc/guix.texi:21641 msgid "Whether to create a database with the same name as the role." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21283 +#: guix-git/doc/guix.texi:21645 #, no-wrap msgid "{Data Type} postgresql-role-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21286 +#: guix-git/doc/guix.texi:21648 msgid "Data type representing the configuration of @var{postgresql-role-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21288 +#: guix-git/doc/guix.texi:21650 #, no-wrap msgid "@code{host} (default: @code{\"/var/run/postgresql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21290 +#: guix-git/doc/guix.texi:21652 msgid "The PostgreSQL host to connect to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21291 +#: guix-git/doc/guix.texi:21653 #, no-wrap msgid "@code{log} (default: @code{\"/var/log/postgresql_roles.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21293 +#: guix-git/doc/guix.texi:21655 msgid "File name of the log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21294 +#: guix-git/doc/guix.texi:21656 #, no-wrap msgid "@code{roles} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21296 +#: guix-git/doc/guix.texi:21658 msgid "The initial PostgreSQL roles to create." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21299 +#: guix-git/doc/guix.texi:21661 #, no-wrap msgid "MariaDB/MySQL" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21301 +#: guix-git/doc/guix.texi:21663 #, no-wrap msgid "{Scheme Variable} mysql-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21305 +#: guix-git/doc/guix.texi:21667 msgid "This is the service type for a MySQL or MariaDB database server. Its value is a @code{mysql-configuration} object that specifies which package to use, as well as various settings for the @command{mysqld} daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21307 +#: guix-git/doc/guix.texi:21669 #, no-wrap msgid "{Data Type} mysql-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21309 +#: guix-git/doc/guix.texi:21671 msgid "Data type representing the configuration of @var{mysql-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21311 +#: guix-git/doc/guix.texi:21673 #, no-wrap msgid "@code{mysql} (default: @var{mariadb})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21314 +#: guix-git/doc/guix.texi:21676 msgid "Package object of the MySQL database server, can be either @var{mariadb} or @var{mysql}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21317 +#: guix-git/doc/guix.texi:21679 msgid "For MySQL, a temporary root password will be displayed at activation time. For MariaDB, the root password is empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21318 guix-git/doc/guix.texi:25138 +#: guix-git/doc/guix.texi:21680 guix-git/doc/guix.texi:25500 #, no-wrap msgid "@code{bind-address} (default: @code{\"127.0.0.1\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21321 +#: guix-git/doc/guix.texi:21683 msgid "The IP on which to listen for network connections. Use @code{\"0.0.0.0\"} to bind to all available network interfaces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21322 +#: guix-git/doc/guix.texi:21684 #, no-wrap msgid "@code{port} (default: @code{3306})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21324 +#: guix-git/doc/guix.texi:21686 msgid "TCP port on which the database server listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21325 +#: guix-git/doc/guix.texi:21687 #, no-wrap msgid "@code{socket} (default: @code{\"/run/mysqld/mysqld.sock\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21327 +#: guix-git/doc/guix.texi:21689 msgid "Socket file to use for local (non-network) connections." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21330 +#: guix-git/doc/guix.texi:21692 msgid "Additional settings for the @file{my.cnf} configuration file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21331 +#: guix-git/doc/guix.texi:21693 #, no-wrap msgid "@code{extra-environment} (default: @code{#~'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21333 +#: guix-git/doc/guix.texi:21695 msgid "List of environment variables passed to the @command{mysqld} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21334 +#: guix-git/doc/guix.texi:21696 #, no-wrap msgid "@code{auto-upgrade?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21339 +#: guix-git/doc/guix.texi:21701 msgid "Whether to automatically run @command{mysql_upgrade} after starting the service. This is necessary to upgrade the @dfn{system schema} after ``major'' updates (such as switching from MariaDB 10.4 to 10.5), but can be disabled if you would rather do that manually." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21343 +#: guix-git/doc/guix.texi:21705 #, no-wrap msgid "Memcached" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21345 +#: guix-git/doc/guix.texi:21707 #, no-wrap msgid "{Scheme Variable} memcached-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21349 +#: guix-git/doc/guix.texi:21711 msgid "This is the service type for the @uref{https://memcached.org/, Memcached} service, which provides a distributed in memory cache. The value for the service type is a @code{memcached-configuration} object." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21353 +#: guix-git/doc/guix.texi:21715 #, no-wrap msgid "(service memcached-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21355 +#: guix-git/doc/guix.texi:21717 #, no-wrap msgid "{Data Type} memcached-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21357 +#: guix-git/doc/guix.texi:21719 msgid "Data type representing the configuration of memcached." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21359 +#: guix-git/doc/guix.texi:21721 #, no-wrap msgid "@code{memcached} (default: @code{memcached})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21361 +#: guix-git/doc/guix.texi:21723 msgid "The Memcached package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21362 +#: guix-git/doc/guix.texi:21724 #, no-wrap msgid "@code{interfaces} (default: @code{'(\"0.0.0.0\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21364 +#: guix-git/doc/guix.texi:21726 msgid "Network interfaces on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21365 +#: guix-git/doc/guix.texi:21727 #, no-wrap msgid "@code{tcp-port} (default: @code{11211})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21367 +#: guix-git/doc/guix.texi:21729 msgid "Port on which to accept connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21368 +#: guix-git/doc/guix.texi:21730 #, no-wrap msgid "@code{udp-port} (default: @code{11211})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21371 +#: guix-git/doc/guix.texi:21733 msgid "Port on which to accept UDP connections on, a value of 0 will disable listening on a UDP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21372 +#: guix-git/doc/guix.texi:21734 #, no-wrap msgid "@code{additional-options} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21374 +#: guix-git/doc/guix.texi:21736 msgid "Additional command line options to pass to @code{memcached}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21377 +#: guix-git/doc/guix.texi:21739 #, no-wrap msgid "Redis" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21379 +#: guix-git/doc/guix.texi:21741 #, no-wrap msgid "{Scheme Variable} redis-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21382 +#: guix-git/doc/guix.texi:21744 msgid "This is the service type for the @uref{https://redis.io/, Redis} key/value store, whose value is a @code{redis-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21384 +#: guix-git/doc/guix.texi:21746 #, no-wrap msgid "{Data Type} redis-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21386 +#: guix-git/doc/guix.texi:21748 msgid "Data type representing the configuration of redis." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21388 +#: guix-git/doc/guix.texi:21750 #, no-wrap msgid "@code{redis} (default: @code{redis})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21390 +#: guix-git/doc/guix.texi:21752 msgid "The Redis package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21391 +#: guix-git/doc/guix.texi:21753 #, no-wrap msgid "@code{bind} (default: @code{\"127.0.0.1\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21393 +#: guix-git/doc/guix.texi:21755 msgid "Network interface on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21394 +#: guix-git/doc/guix.texi:21756 #, no-wrap msgid "@code{port} (default: @code{6379})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21397 +#: guix-git/doc/guix.texi:21759 msgid "Port on which to accept connections on, a value of 0 will disable listening on a TCP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21398 +#: guix-git/doc/guix.texi:21760 #, no-wrap msgid "@code{working-directory} (default: @code{\"/var/lib/redis\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21400 +#: guix-git/doc/guix.texi:21762 msgid "Directory in which to store the database and related files." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21406 +#: guix-git/doc/guix.texi:21768 #, no-wrap msgid "mail" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21407 +#: guix-git/doc/guix.texi:21769 #, no-wrap msgid "email" -msgstr "" +msgstr "elektronická pošta" #. type: Plain text -#: guix-git/doc/guix.texi:21412 +#: guix-git/doc/guix.texi:21774 msgid "The @code{(gnu services mail)} module provides Guix service definitions for email services: IMAP, POP3, and LMTP servers, as well as mail transport agents (MTAs). Lots of acronyms! These services are detailed in the subsections below." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21413 +#: guix-git/doc/guix.texi:21775 #, no-wrap msgid "Dovecot Service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21415 +#: guix-git/doc/guix.texi:21777 #, no-wrap msgid "{Scheme Procedure} dovecot-service [#:config (dovecot-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21417 +#: guix-git/doc/guix.texi:21779 msgid "Return a service that runs the Dovecot IMAP/POP3/LMTP mail server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21427 +#: guix-git/doc/guix.texi:21789 msgid "By default, Dovecot does not need much configuration; the default configuration object created by @code{(dovecot-configuration)} will suffice if your mail is delivered to @code{~/Maildir}. A self-signed certificate will be generated for TLS-protected connections, though Dovecot will also listen on cleartext ports by default. There are a number of options, though, which mail administrators might need to change, and as is the case with other services, Guix allows the system administrator to specify these parameters via a uniform Scheme interface." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21430 +#: guix-git/doc/guix.texi:21792 msgid "For example, to specify that mail is located at @code{maildir~/.mail}, one would instantiate the Dovecot service like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21435 +#: guix-git/doc/guix.texi:21797 #, no-wrap msgid "" "(dovecot-service #:config\n" @@ -38384,2433 +38972,2433 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21443 +#: guix-git/doc/guix.texi:21805 msgid "The available configuration parameters follow. Each parameter definition is preceded by its type; for example, @samp{string-list foo} indicates that the @code{foo} parameter should be specified as a list of strings. There is also a way to specify the configuration as a string, if you have an old @code{dovecot.conf} file that you want to port over from some other system; see the end for more details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21453 +#: guix-git/doc/guix.texi:21815 msgid "Available @code{dovecot-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21454 +#: guix-git/doc/guix.texi:21816 #, no-wrap msgid "{@code{dovecot-configuration} parameter} package dovecot" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21456 guix-git/doc/guix.texi:22805 +#: guix-git/doc/guix.texi:21818 guix-git/doc/guix.texi:23167 msgid "The dovecot package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21458 +#: guix-git/doc/guix.texi:21820 #, no-wrap msgid "{@code{dovecot-configuration} parameter} comma-separated-string-list listen" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21464 +#: guix-git/doc/guix.texi:21826 msgid "A list of IPs or hosts where to listen for connections. @samp{*} listens on all IPv4 interfaces, @samp{::} listens on all IPv6 interfaces. If you want to specify non-default ports or anything more complex, customize the address and port fields of the @samp{inet-listener} of the specific services you are interested in." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21466 +#: guix-git/doc/guix.texi:21828 #, no-wrap msgid "{@code{dovecot-configuration} parameter} protocol-configuration-list protocols" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21469 +#: guix-git/doc/guix.texi:21831 msgid "List of protocols we want to serve. Available protocols include @samp{imap}, @samp{pop3}, and @samp{lmtp}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21471 +#: guix-git/doc/guix.texi:21833 msgid "Available @code{protocol-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21472 +#: guix-git/doc/guix.texi:21834 #, no-wrap msgid "{@code{protocol-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21474 +#: guix-git/doc/guix.texi:21836 msgid "The name of the protocol." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21476 +#: guix-git/doc/guix.texi:21838 #, no-wrap msgid "{@code{protocol-configuration} parameter} string auth-socket-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21480 +#: guix-git/doc/guix.texi:21842 msgid "UNIX socket path to the master authentication server to find users. This is used by imap (for shared users) and lda. It defaults to @samp{\"/var/run/dovecot/auth-userdb\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21482 +#: guix-git/doc/guix.texi:21844 #, no-wrap msgid "{@code{protocol-configuration} parameter} boolean imap-metadata?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21487 +#: guix-git/doc/guix.texi:21849 msgid "Whether to enable the @code{IMAP METADATA} extension as defined in @uref{https://tools.ietf.org/html/rfc5464,RFC@tie{}5464}, which provides a means for clients to set and retrieve per-mailbox, per-user metadata and annotations over IMAP." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21490 +#: guix-git/doc/guix.texi:21852 msgid "If this is @samp{#t}, you must also specify a dictionary @i{via} the @code{mail-attribute-dict} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21495 +#: guix-git/doc/guix.texi:21857 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list managesieve-notify-capabilities" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21500 +#: guix-git/doc/guix.texi:21862 msgid "Which NOTIFY capabilities to report to clients that first connect to the ManageSieve service, before authentication. These may differ from the capabilities offered to authenticated users. If this field is left empty, report what the Sieve interpreter supports by default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21504 +#: guix-git/doc/guix.texi:21866 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list managesieve-sieve-capability" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21509 +#: guix-git/doc/guix.texi:21871 msgid "Which SIEVE capabilities to report to clients that first connect to the ManageSieve service, before authentication. These may differ from the capabilities offered to authenticated users. If this field is left empty, report what the Sieve interpreter supports by default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21514 +#: guix-git/doc/guix.texi:21876 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list mail-plugins" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21516 +#: guix-git/doc/guix.texi:21878 msgid "Space separated list of plugins to load." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21518 +#: guix-git/doc/guix.texi:21880 #, no-wrap msgid "{@code{protocol-configuration} parameter} non-negative-integer mail-max-userip-connections" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21522 +#: guix-git/doc/guix.texi:21884 msgid "Maximum number of IMAP connections allowed for a user from each IP address. NOTE: The username is compared case-sensitively. Defaults to @samp{10}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21526 +#: guix-git/doc/guix.texi:21888 #, no-wrap msgid "{@code{dovecot-configuration} parameter} service-configuration-list services" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21530 +#: guix-git/doc/guix.texi:21892 msgid "List of services to enable. Available services include @samp{imap}, @samp{imap-login}, @samp{pop3}, @samp{pop3-login}, @samp{auth}, and @samp{lmtp}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21532 +#: guix-git/doc/guix.texi:21894 msgid "Available @code{service-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21533 +#: guix-git/doc/guix.texi:21895 #, no-wrap msgid "{@code{service-configuration} parameter} string kind" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21538 +#: guix-git/doc/guix.texi:21900 msgid "The service kind. Valid values include @code{director}, @code{imap-login}, @code{pop3-login}, @code{lmtp}, @code{imap}, @code{pop3}, @code{auth}, @code{auth-worker}, @code{dict}, @code{tcpwrap}, @code{quota-warning}, or anything else." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21540 +#: guix-git/doc/guix.texi:21902 #, no-wrap msgid "{@code{service-configuration} parameter} listener-configuration-list listeners" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21545 +#: guix-git/doc/guix.texi:21907 msgid "Listeners for the service. A listener is either a @code{unix-listener-configuration}, a @code{fifo-listener-configuration}, or an @code{inet-listener-configuration}. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21547 +#: guix-git/doc/guix.texi:21909 msgid "Available @code{unix-listener-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21548 +#: guix-git/doc/guix.texi:21910 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21551 guix-git/doc/guix.texi:21574 +#: guix-git/doc/guix.texi:21913 guix-git/doc/guix.texi:21936 msgid "Path to the file, relative to @code{base-dir} field. This is also used as the section name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21553 +#: guix-git/doc/guix.texi:21915 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string mode" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21556 guix-git/doc/guix.texi:21579 +#: guix-git/doc/guix.texi:21918 guix-git/doc/guix.texi:21941 msgid "The access mode for the socket. Defaults to @samp{\"0600\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21558 +#: guix-git/doc/guix.texi:21920 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21561 guix-git/doc/guix.texi:21584 +#: guix-git/doc/guix.texi:21923 guix-git/doc/guix.texi:21946 msgid "The user to own the socket. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21563 +#: guix-git/doc/guix.texi:21925 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21566 guix-git/doc/guix.texi:21589 +#: guix-git/doc/guix.texi:21928 guix-git/doc/guix.texi:21951 msgid "The group to own the socket. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21570 +#: guix-git/doc/guix.texi:21932 msgid "Available @code{fifo-listener-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21571 +#: guix-git/doc/guix.texi:21933 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21576 +#: guix-git/doc/guix.texi:21938 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string mode" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21581 +#: guix-git/doc/guix.texi:21943 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21586 +#: guix-git/doc/guix.texi:21948 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21593 +#: guix-git/doc/guix.texi:21955 msgid "Available @code{inet-listener-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21594 +#: guix-git/doc/guix.texi:21956 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} string protocol" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21596 +#: guix-git/doc/guix.texi:21958 msgid "The protocol to listen for." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21598 +#: guix-git/doc/guix.texi:21960 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} string address" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21601 +#: guix-git/doc/guix.texi:21963 msgid "The address on which to listen, or empty for all addresses. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21603 +#: guix-git/doc/guix.texi:21965 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} non-negative-integer port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21605 +#: guix-git/doc/guix.texi:21967 msgid "The port on which to listen." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21607 +#: guix-git/doc/guix.texi:21969 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} boolean ssl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21611 +#: guix-git/doc/guix.texi:21973 msgid "Whether to use SSL for this service; @samp{yes}, @samp{no}, or @samp{required}. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21615 +#: guix-git/doc/guix.texi:21977 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer client-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21620 +#: guix-git/doc/guix.texi:21982 msgid "Maximum number of simultaneous client connections per process. Once this number of connections is received, the next incoming connection will prompt Dovecot to spawn another process. If set to 0, @code{default-client-limit} is used instead." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21625 +#: guix-git/doc/guix.texi:21987 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer service-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21630 +#: guix-git/doc/guix.texi:21992 msgid "Number of connections to handle before starting a new process. Typically the only useful values are 0 (unlimited) or 1. 1 is more secure, but 0 is faster. . Defaults to @samp{1}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21633 +#: guix-git/doc/guix.texi:21995 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer process-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21636 +#: guix-git/doc/guix.texi:21998 msgid "Maximum number of processes that can exist for this service. If set to 0, @code{default-process-limit} is used instead." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21641 +#: guix-git/doc/guix.texi:22003 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer process-min-avail" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21644 +#: guix-git/doc/guix.texi:22006 msgid "Number of processes to always keep waiting for more connections. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21646 +#: guix-git/doc/guix.texi:22008 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer vsz-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21650 +#: guix-git/doc/guix.texi:22012 msgid "If you set @samp{service-count 0}, you probably need to grow this. Defaults to @samp{256000000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21654 +#: guix-git/doc/guix.texi:22016 #, no-wrap msgid "{@code{dovecot-configuration} parameter} dict-configuration dict" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21657 +#: guix-git/doc/guix.texi:22019 msgid "Dict configuration, as created by the @code{dict-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21659 +#: guix-git/doc/guix.texi:22021 msgid "Available @code{dict-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21660 +#: guix-git/doc/guix.texi:22022 #, no-wrap msgid "{@code{dict-configuration} parameter} free-form-fields entries" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21663 +#: guix-git/doc/guix.texi:22025 msgid "A list of key-value pairs that this dict should hold. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21667 +#: guix-git/doc/guix.texi:22029 #, no-wrap msgid "{@code{dovecot-configuration} parameter} passdb-configuration-list passdbs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21670 +#: guix-git/doc/guix.texi:22032 msgid "A list of passdb configurations, each one created by the @code{passdb-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21672 +#: guix-git/doc/guix.texi:22034 msgid "Available @code{passdb-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21673 +#: guix-git/doc/guix.texi:22035 #, no-wrap msgid "{@code{passdb-configuration} parameter} string driver" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21678 +#: guix-git/doc/guix.texi:22040 msgid "The driver that the passdb should use. Valid values include @samp{pam}, @samp{passwd}, @samp{shadow}, @samp{bsdauth}, and @samp{static}. Defaults to @samp{\"pam\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21680 +#: guix-git/doc/guix.texi:22042 #, no-wrap msgid "{@code{passdb-configuration} parameter} space-separated-string-list args" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21683 +#: guix-git/doc/guix.texi:22045 msgid "Space separated list of arguments to the passdb driver. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21687 +#: guix-git/doc/guix.texi:22049 #, no-wrap msgid "{@code{dovecot-configuration} parameter} userdb-configuration-list userdbs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21690 +#: guix-git/doc/guix.texi:22052 msgid "List of userdb configurations, each one created by the @code{userdb-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21692 +#: guix-git/doc/guix.texi:22054 msgid "Available @code{userdb-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21693 +#: guix-git/doc/guix.texi:22055 #, no-wrap msgid "{@code{userdb-configuration} parameter} string driver" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21697 +#: guix-git/doc/guix.texi:22059 msgid "The driver that the userdb should use. Valid values include @samp{passwd} and @samp{static}. Defaults to @samp{\"passwd\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21699 +#: guix-git/doc/guix.texi:22061 #, no-wrap msgid "{@code{userdb-configuration} parameter} space-separated-string-list args" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21702 +#: guix-git/doc/guix.texi:22064 msgid "Space separated list of arguments to the userdb driver. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21704 +#: guix-git/doc/guix.texi:22066 #, no-wrap msgid "{@code{userdb-configuration} parameter} free-form-args override-fields" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21707 +#: guix-git/doc/guix.texi:22069 msgid "Override fields from passwd. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21711 +#: guix-git/doc/guix.texi:22073 #, no-wrap msgid "{@code{dovecot-configuration} parameter} plugin-configuration plugin-configuration" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21714 +#: guix-git/doc/guix.texi:22076 msgid "Plug-in configuration, created by the @code{plugin-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21716 +#: guix-git/doc/guix.texi:22078 #, no-wrap msgid "{@code{dovecot-configuration} parameter} list-of-namespace-configuration namespaces" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21719 +#: guix-git/doc/guix.texi:22081 msgid "List of namespaces. Each item in the list is created by the @code{namespace-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21721 +#: guix-git/doc/guix.texi:22083 msgid "Available @code{namespace-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21722 +#: guix-git/doc/guix.texi:22084 #, no-wrap msgid "{@code{namespace-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21724 +#: guix-git/doc/guix.texi:22086 msgid "Name for this namespace." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21726 +#: guix-git/doc/guix.texi:22088 #, no-wrap msgid "{@code{namespace-configuration} parameter} string type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21729 +#: guix-git/doc/guix.texi:22091 msgid "Namespace type: @samp{private}, @samp{shared} or @samp{public}. Defaults to @samp{\"private\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21731 +#: guix-git/doc/guix.texi:22093 #, no-wrap msgid "{@code{namespace-configuration} parameter} string separator" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21737 +#: guix-git/doc/guix.texi:22099 msgid "Hierarchy separator to use. You should use the same separator for all namespaces or some clients get confused. @samp{/} is usually a good one. The default however depends on the underlying mail storage format. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21739 +#: guix-git/doc/guix.texi:22101 #, no-wrap msgid "{@code{namespace-configuration} parameter} string prefix" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21743 +#: guix-git/doc/guix.texi:22105 msgid "Prefix required to access this namespace. This needs to be different for all namespaces. For example @samp{Public/}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21745 +#: guix-git/doc/guix.texi:22107 #, no-wrap msgid "{@code{namespace-configuration} parameter} string location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21749 +#: guix-git/doc/guix.texi:22111 msgid "Physical location of the mailbox. This is in the same format as mail_location, which is also the default for it. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21751 +#: guix-git/doc/guix.texi:22113 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean inbox?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21755 +#: guix-git/doc/guix.texi:22117 msgid "There can be only one INBOX, and this setting defines which namespace has it. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21757 +#: guix-git/doc/guix.texi:22119 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean hidden?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21765 +#: guix-git/doc/guix.texi:22127 msgid "If namespace is hidden, it's not advertised to clients via NAMESPACE extension. You'll most likely also want to set @samp{list? #f}. This is mostly useful when converting from another server with different namespaces which you want to deprecate but still keep working. For example you can create hidden namespaces with prefixes @samp{~/mail/}, @samp{~%u/mail/} and @samp{mail/}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21767 +#: guix-git/doc/guix.texi:22129 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean list?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21773 +#: guix-git/doc/guix.texi:22135 msgid "Show the mailboxes under this namespace with the LIST command. This makes the namespace visible for clients that do not support the NAMESPACE extension. The special @code{children} value lists child mailboxes, but hides the namespace prefix. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21775 +#: guix-git/doc/guix.texi:22137 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean subscriptions?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21780 +#: guix-git/doc/guix.texi:22142 msgid "Namespace handles its own subscriptions. If set to @code{#f}, the parent namespace handles them. The empty prefix should always have this as @code{#t}). Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21782 +#: guix-git/doc/guix.texi:22144 #, no-wrap msgid "{@code{namespace-configuration} parameter} mailbox-configuration-list mailboxes" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21785 +#: guix-git/doc/guix.texi:22147 msgid "List of predefined mailboxes in this namespace. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21787 +#: guix-git/doc/guix.texi:22149 msgid "Available @code{mailbox-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21788 +#: guix-git/doc/guix.texi:22150 #, no-wrap msgid "{@code{mailbox-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21790 +#: guix-git/doc/guix.texi:22152 msgid "Name for this mailbox." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21792 +#: guix-git/doc/guix.texi:22154 #, no-wrap msgid "{@code{mailbox-configuration} parameter} string auto" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21796 +#: guix-git/doc/guix.texi:22158 msgid "@samp{create} will automatically create this mailbox. @samp{subscribe} will both create and subscribe to the mailbox. Defaults to @samp{\"no\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21798 +#: guix-git/doc/guix.texi:22160 #, no-wrap msgid "{@code{mailbox-configuration} parameter} space-separated-string-list special-use" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21803 +#: guix-git/doc/guix.texi:22165 msgid "List of IMAP @code{SPECIAL-USE} attributes as specified by RFC 6154. Valid values are @code{\\All}, @code{\\Archive}, @code{\\Drafts}, @code{\\Flagged}, @code{\\Junk}, @code{\\Sent}, and @code{\\Trash}. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21809 +#: guix-git/doc/guix.texi:22171 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name base-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21812 +#: guix-git/doc/guix.texi:22174 msgid "Base directory where to store runtime data. Defaults to @samp{\"/var/run/dovecot/\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21814 +#: guix-git/doc/guix.texi:22176 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string login-greeting" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21817 +#: guix-git/doc/guix.texi:22179 msgid "Greeting message for clients. Defaults to @samp{\"Dovecot ready.\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21819 +#: guix-git/doc/guix.texi:22181 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-trusted-networks" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21826 +#: guix-git/doc/guix.texi:22188 msgid "List of trusted network ranges. Connections from these IPs are allowed to override their IP addresses and ports (for logging and for authentication checks). @samp{disable-plaintext-auth} is also ignored for these networks. Typically you would specify your IMAP proxy servers here. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21828 +#: guix-git/doc/guix.texi:22190 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-access-sockets" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21831 +#: guix-git/doc/guix.texi:22193 msgid "List of login access check sockets (e.g.@: tcpwrap). Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21833 +#: guix-git/doc/guix.texi:22195 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean verbose-proctitle?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21839 +#: guix-git/doc/guix.texi:22201 msgid "Show more verbose process titles (in ps). Currently shows user name and IP address. Useful for seeing who is actually using the IMAP processes (e.g.@: shared mailboxes or if the same uid is used for multiple accounts). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21841 +#: guix-git/doc/guix.texi:22203 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean shutdown-clients?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21847 +#: guix-git/doc/guix.texi:22209 msgid "Should all processes be killed when Dovecot master process shuts down. Setting this to @code{#f} means that Dovecot can be upgraded without forcing existing client connections to close (although that could also be a problem if the upgrade is e.g.@: due to a security fix). Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21849 +#: guix-git/doc/guix.texi:22211 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer doveadm-worker-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21853 +#: guix-git/doc/guix.texi:22215 msgid "If non-zero, run mail commands via this many connections to doveadm server, instead of running them directly in the same process. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21855 +#: guix-git/doc/guix.texi:22217 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string doveadm-socket-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21858 +#: guix-git/doc/guix.texi:22220 msgid "UNIX socket or host:port used for connecting to doveadm server. Defaults to @samp{\"doveadm-server\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21860 +#: guix-git/doc/guix.texi:22222 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list import-environment" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21864 +#: guix-git/doc/guix.texi:22226 msgid "List of environment variables that are preserved on Dovecot startup and passed down to all of its child processes. You can also give key=value pairs to always set specific settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21866 +#: guix-git/doc/guix.texi:22228 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean disable-plaintext-auth?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21873 +#: guix-git/doc/guix.texi:22235 msgid "Disable LOGIN command and all other plaintext authentications unless SSL/TLS is used (LOGINDISABLED capability). Note that if the remote IP matches the local IP (i.e.@: you're connecting from the same computer), the connection is considered secure and plaintext authentication is allowed. See also ssl=required setting. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21875 +#: guix-git/doc/guix.texi:22237 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer auth-cache-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21880 +#: guix-git/doc/guix.texi:22242 msgid "Authentication cache size (e.g.@: @samp{#e10e6}). 0 means it's disabled. Note that bsdauth, PAM and vpopmail require @samp{cache-key} to be set for caching to be used. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21882 +#: guix-git/doc/guix.texi:22244 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-cache-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21890 +#: guix-git/doc/guix.texi:22252 msgid "Time to live for cached data. After TTL expires the cached record is no longer used, *except* if the main database lookup returns internal failure. We also try to handle password changes automatically: If user's previous authentication was successful, but this one wasn't, the cache isn't used. For now this works only with plaintext authentication. Defaults to @samp{\"1 hour\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21892 +#: guix-git/doc/guix.texi:22254 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-cache-negative-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21896 +#: guix-git/doc/guix.texi:22258 msgid "TTL for negative hits (user not found, password mismatch). 0 disables caching them completely. Defaults to @samp{\"1 hour\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21898 +#: guix-git/doc/guix.texi:22260 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list auth-realms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21904 +#: guix-git/doc/guix.texi:22266 msgid "List of realms for SASL authentication mechanisms that need them. You can leave it empty if you don't want to support multiple realms. Many clients simply use the first one listed here, so keep the default realm first. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21906 +#: guix-git/doc/guix.texi:22268 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-default-realm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21911 +#: guix-git/doc/guix.texi:22273 msgid "Default realm/domain to use if none was specified. This is used for both SASL realms and appending @@domain to username in plaintext logins. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21913 +#: guix-git/doc/guix.texi:22275 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-chars" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21920 +#: guix-git/doc/guix.texi:22282 msgid "List of allowed characters in username. If the user-given username contains a character not listed in here, the login automatically fails. This is just an extra check to make sure user can't exploit any potential quote escaping vulnerabilities with SQL/LDAP databases. If you want to allow all characters, set this value to empty. Defaults to @samp{\"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@@\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21922 +#: guix-git/doc/guix.texi:22284 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-translation" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21928 +#: guix-git/doc/guix.texi:22290 msgid "Username character translations before it's looked up from databases. The value contains series of from -> to characters. For example @samp{#@@/@@} means that @samp{#} and @samp{/} characters are translated to @samp{@@}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21930 +#: guix-git/doc/guix.texi:22292 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21937 +#: guix-git/doc/guix.texi:22299 msgid "Username formatting before it's looked up from databases. You can use the standard variables here, e.g.@: %Lu would lowercase the username, %n would drop away the domain if it was given, or @samp{%n-AT-%d} would change the @samp{@@} into @samp{-AT-}. This translation is done after @samp{auth-username-translation} changes. Defaults to @samp{\"%Lu\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21939 +#: guix-git/doc/guix.texi:22301 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-master-user-separator" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21947 +#: guix-git/doc/guix.texi:22309 msgid "If you want to allow master users to log in by specifying the master username within the normal username string (i.e.@: not using SASL mechanism's support for it), you can specify the separator character here. The format is then . UW-IMAP uses @samp{*} as the separator, so that could be a good choice. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21949 +#: guix-git/doc/guix.texi:22311 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-anonymous-username" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21953 +#: guix-git/doc/guix.texi:22315 msgid "Username to use for users logging in with ANONYMOUS SASL mechanism. Defaults to @samp{\"anonymous\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21955 +#: guix-git/doc/guix.texi:22317 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer auth-worker-max-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21960 +#: guix-git/doc/guix.texi:22322 msgid "Maximum number of dovecot-auth worker processes. They're used to execute blocking passdb and userdb queries (e.g.@: MySQL and PAM). They're automatically created and destroyed as needed. Defaults to @samp{30}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21962 +#: guix-git/doc/guix.texi:22324 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-gssapi-hostname" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21967 +#: guix-git/doc/guix.texi:22329 msgid "Host name to use in GSSAPI principal names. The default is to use the name returned by gethostname(). Use @samp{$ALL} (with quotes) to allow all keytab entries. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21969 +#: guix-git/doc/guix.texi:22331 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-krb5-keytab" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21975 +#: guix-git/doc/guix.texi:22337 msgid "Kerberos keytab to use for the GSSAPI mechanism. Will use the system default (usually @file{/etc/krb5.keytab}) if not specified. You may need to change the auth service to run as root to be able to read this file. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21977 +#: guix-git/doc/guix.texi:22339 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-use-winbind?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21982 +#: guix-git/doc/guix.texi:22344 msgid "Do NTLM and GSS-SPNEGO authentication using Samba's winbind daemon and @samp{ntlm-auth} helper. . Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21984 +#: guix-git/doc/guix.texi:22346 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name auth-winbind-helper-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21987 +#: guix-git/doc/guix.texi:22349 msgid "Path for Samba's @samp{ntlm-auth} helper binary. Defaults to @samp{\"/usr/bin/ntlm_auth\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21989 +#: guix-git/doc/guix.texi:22351 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-failure-delay" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21992 +#: guix-git/doc/guix.texi:22354 msgid "Time to delay before replying to failed authentications. Defaults to @samp{\"2 secs\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21994 +#: guix-git/doc/guix.texi:22356 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-ssl-require-client-cert?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21998 +#: guix-git/doc/guix.texi:22360 msgid "Require a valid SSL client certificate or the authentication fails. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22000 +#: guix-git/doc/guix.texi:22362 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-ssl-username-from-cert?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22005 +#: guix-git/doc/guix.texi:22367 msgid "Take the username from client's SSL certificate, using @code{X509_NAME_get_text_by_NID()} which returns the subject's DN's CommonName. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22007 +#: guix-git/doc/guix.texi:22369 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list auth-mechanisms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22013 +#: guix-git/doc/guix.texi:22375 msgid "List of wanted authentication mechanisms. Supported mechanisms are: @samp{plain}, @samp{login}, @samp{digest-md5}, @samp{cram-md5}, @samp{ntlm}, @samp{rpa}, @samp{apop}, @samp{anonymous}, @samp{gssapi}, @samp{otp}, @samp{skey}, and @samp{gss-spnego}. NOTE: See also @samp{disable-plaintext-auth} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22015 +#: guix-git/doc/guix.texi:22377 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list director-servers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22020 +#: guix-git/doc/guix.texi:22382 msgid "List of IPs or hostnames to all director servers, including ourself. Ports can be specified as ip:port. The default port is the same as what director service's @samp{inet-listener} is using. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22022 +#: guix-git/doc/guix.texi:22384 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list director-mail-servers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22026 +#: guix-git/doc/guix.texi:22388 msgid "List of IPs or hostnames to all backend mail servers. Ranges are allowed too, like 10.0.0.10-10.0.0.30. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22028 +#: guix-git/doc/guix.texi:22390 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string director-user-expire" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22032 +#: guix-git/doc/guix.texi:22394 msgid "How long to redirect users to a specific server after it no longer has any connections. Defaults to @samp{\"15 min\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22034 +#: guix-git/doc/guix.texi:22396 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string director-username-hash" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22039 +#: guix-git/doc/guix.texi:22401 msgid "How the username is translated before being hashed. Useful values include %Ln if user can log in with or without @@domain, %Ld if mailboxes are shared within domain. Defaults to @samp{\"%Lu\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22041 +#: guix-git/doc/guix.texi:22403 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string log-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22045 +#: guix-git/doc/guix.texi:22407 msgid "Log file to use for error messages. @samp{syslog} logs to syslog, @samp{/dev/stderr} logs to stderr. Defaults to @samp{\"syslog\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22047 +#: guix-git/doc/guix.texi:22409 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string info-log-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22051 +#: guix-git/doc/guix.texi:22413 msgid "Log file to use for informational messages. Defaults to @samp{log-path}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22053 +#: guix-git/doc/guix.texi:22415 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string debug-log-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22057 +#: guix-git/doc/guix.texi:22419 msgid "Log file to use for debug messages. Defaults to @samp{info-log-path}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22059 +#: guix-git/doc/guix.texi:22421 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string syslog-facility" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22064 +#: guix-git/doc/guix.texi:22426 msgid "Syslog facility to use if you're logging to syslog. Usually if you don't want to use @samp{mail}, you'll use local0..local7. Also other standard facilities are supported. Defaults to @samp{\"mail\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22066 +#: guix-git/doc/guix.texi:22428 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-verbose?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22070 +#: guix-git/doc/guix.texi:22432 msgid "Log unsuccessful authentication attempts and the reasons why they failed. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22072 +#: guix-git/doc/guix.texi:22434 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-verbose-passwords" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22079 +#: guix-git/doc/guix.texi:22441 msgid "In case of password mismatches, log the attempted password. Valid values are no, plain and sha1. sha1 can be useful for detecting brute force password attempts vs. user simply trying the same password over and over again. You can also truncate the value to n chars by appending \":n\" (e.g.@: sha1:6). Defaults to @samp{\"no\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22081 +#: guix-git/doc/guix.texi:22443 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-debug?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22085 +#: guix-git/doc/guix.texi:22447 msgid "Even more verbose logging for debugging purposes. Shows for example SQL queries. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22087 +#: guix-git/doc/guix.texi:22449 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-debug-passwords?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22092 +#: guix-git/doc/guix.texi:22454 msgid "In case of password mismatches, log the passwords and used scheme so the problem can be debugged. Enabling this also enables @samp{auth-debug}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22094 +#: guix-git/doc/guix.texi:22456 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-debug?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22098 +#: guix-git/doc/guix.texi:22460 msgid "Enable mail process debugging. This can help you figure out why Dovecot isn't finding your mails. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22100 +#: guix-git/doc/guix.texi:22462 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean verbose-ssl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22103 +#: guix-git/doc/guix.texi:22465 msgid "Show protocol level SSL errors. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22105 +#: guix-git/doc/guix.texi:22467 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string log-timestamp" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22109 +#: guix-git/doc/guix.texi:22471 msgid "Prefix for each line written to log file. % codes are in strftime(3) format. Defaults to @samp{\"\\\"%b %d %H:%M:%S \\\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22111 +#: guix-git/doc/guix.texi:22473 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-log-format-elements" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22115 +#: guix-git/doc/guix.texi:22477 msgid "List of elements we want to log. The elements which have a non-empty variable value are joined together to form a comma-separated string." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22117 +#: guix-git/doc/guix.texi:22479 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string login-log-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22121 +#: guix-git/doc/guix.texi:22483 msgid "Login log format. %s contains @samp{login-log-format-elements} string, %$ contains the data we want to log. Defaults to @samp{\"%$: %s\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22123 +#: guix-git/doc/guix.texi:22485 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-log-prefix" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22127 +#: guix-git/doc/guix.texi:22489 msgid "Log prefix for mail processes. See doc/wiki/Variables.txt for list of possible variables you can use. Defaults to @samp{\"\\\"%s(%u)<%@{pid@}><%@{session@}>: \\\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22129 +#: guix-git/doc/guix.texi:22491 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string deliver-log-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22131 +#: guix-git/doc/guix.texi:22493 msgid "Format to use for logging mail deliveries. You can use variables:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22132 +#: guix-git/doc/guix.texi:22494 #, no-wrap msgid "%$" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22134 +#: guix-git/doc/guix.texi:22496 msgid "Delivery status message (e.g.@: @samp{saved to INBOX})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22134 +#: guix-git/doc/guix.texi:22496 #, no-wrap msgid "%m" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22136 +#: guix-git/doc/guix.texi:22498 msgid "Message-ID" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22136 guix-git/doc/guix.texi:22679 +#: guix-git/doc/guix.texi:22498 guix-git/doc/guix.texi:23041 #, no-wrap msgid "%s" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22138 +#: guix-git/doc/guix.texi:22500 msgid "Subject" -msgstr "" +msgstr "Predmet" #. type: item -#: guix-git/doc/guix.texi:22138 +#: guix-git/doc/guix.texi:22500 #, no-wrap msgid "%f" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22140 +#: guix-git/doc/guix.texi:22502 msgid "From address" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22142 +#: guix-git/doc/guix.texi:22504 msgid "Physical size" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22142 +#: guix-git/doc/guix.texi:22504 #, no-wrap msgid "%w" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22144 +#: guix-git/doc/guix.texi:22506 msgid "Virtual size." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22146 +#: guix-git/doc/guix.texi:22508 msgid "Defaults to @samp{\"msgid=%m: %$\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22148 +#: guix-git/doc/guix.texi:22510 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22153 +#: guix-git/doc/guix.texi:22515 msgid "Location for users' mailboxes. The default is empty, which means that Dovecot tries to find the mailboxes automatically. This won't work if the user doesn't yet have any mail, so you should explicitly tell Dovecot the full location." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22159 +#: guix-git/doc/guix.texi:22521 msgid "If you're using mbox, giving a path to the INBOX file (e.g.@: @file{/var/mail/%u}) isn't enough. You'll also need to tell Dovecot where the other mailboxes are kept. This is called the @emph{root mail directory}, and it must be the first path given in the @samp{mail-location} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22161 +#: guix-git/doc/guix.texi:22523 msgid "There are a few special variables you can use, e.g.:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22165 +#: guix-git/doc/guix.texi:22527 msgid "username" -msgstr "" +msgstr "používateľské meno" #. type: item -#: guix-git/doc/guix.texi:22165 guix-git/doc/guix.texi:22675 +#: guix-git/doc/guix.texi:22527 guix-git/doc/guix.texi:23037 #, no-wrap msgid "%n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22167 +#: guix-git/doc/guix.texi:22529 msgid "user part in user@@domain, same as %u if there's no domain" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22167 +#: guix-git/doc/guix.texi:22529 #, no-wrap msgid "%d" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22169 +#: guix-git/doc/guix.texi:22531 msgid "domain part in user@@domain, empty if there's no domain" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22169 +#: guix-git/doc/guix.texi:22531 #, no-wrap msgid "%h" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22171 +#: guix-git/doc/guix.texi:22533 msgid "home director" -msgstr "" +msgstr "domovský priečinok" #. type: deftypevr -#: guix-git/doc/guix.texi:22174 +#: guix-git/doc/guix.texi:22536 msgid "See doc/wiki/Variables.txt for full list. Some examples:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22175 +#: guix-git/doc/guix.texi:22537 #, no-wrap msgid "maildir:~/Maildir" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22176 +#: guix-git/doc/guix.texi:22538 #, no-wrap msgid "mbox:~/mail:INBOX=/var/mail/%u" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22177 +#: guix-git/doc/guix.texi:22539 #, no-wrap msgid "mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22182 +#: guix-git/doc/guix.texi:22544 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22187 +#: guix-git/doc/guix.texi:22549 msgid "System user and group used to access mails. If you use multiple, userdb can override these by returning uid or gid fields. You can use either numbers or names. . Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22189 +#: guix-git/doc/guix.texi:22551 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22194 +#: guix-git/doc/guix.texi:22556 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-privileged-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22200 +#: guix-git/doc/guix.texi:22562 msgid "Group to enable temporarily for privileged operations. Currently this is used only with INBOX when either its initial creation or dotlocking fails. Typically this is set to @samp{\"mail\"} to give access to @file{/var/mail}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22202 +#: guix-git/doc/guix.texi:22564 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-access-groups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22210 +#: guix-git/doc/guix.texi:22572 msgid "Grant access to these supplementary groups for mail processes. Typically these are used to set up access to shared mailboxes. Note that it may be dangerous to set these if users can create symlinks (e.g.@: if @samp{mail} group is set here, @code{ln -s /var/mail ~/mail/var} could allow a user to delete others' mailboxes, or @code{ln -s /secret/shared/box ~/mail/mybox} would allow reading it). Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22212 +#: guix-git/doc/guix.texi:22574 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attribute-dict" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22215 +#: guix-git/doc/guix.texi:22577 msgid "The location of a dictionary used to store @code{IMAP METADATA} as defined by @uref{https://tools.ietf.org/html/rfc5464, RFC@tie{}5464}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22218 +#: guix-git/doc/guix.texi:22580 msgid "The IMAP METADATA commands are available only if the ``imap'' protocol configuration's @code{imap-metadata?} field is @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22223 +#: guix-git/doc/guix.texi:22585 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-full-filesystem-access?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22229 +#: guix-git/doc/guix.texi:22591 msgid "Allow full file system access to clients. There's no access checks other than what the operating system does for the active UID/GID@. It works with both maildir and mboxes, allowing you to prefix mailboxes names with e.g.@: @file{/path/} or @file{~user/}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22231 +#: guix-git/doc/guix.texi:22593 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mmap-disable?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22235 +#: guix-git/doc/guix.texi:22597 msgid "Don't use @code{mmap()} at all. This is required if you store indexes to shared file systems (NFS or clustered file system). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22237 +#: guix-git/doc/guix.texi:22599 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean dotlock-use-excl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22242 +#: guix-git/doc/guix.texi:22604 msgid "Rely on @samp{O_EXCL} to work when creating dotlock files. NFS supports @samp{O_EXCL} since version 3, so this should be safe to use nowadays by default. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22244 +#: guix-git/doc/guix.texi:22606 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-fsync" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22246 +#: guix-git/doc/guix.texi:22608 msgid "When to use fsync() or fdatasync() calls:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22247 +#: guix-git/doc/guix.texi:22609 #, no-wrap msgid "optimized" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22249 +#: guix-git/doc/guix.texi:22611 msgid "Whenever necessary to avoid losing important data" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22251 +#: guix-git/doc/guix.texi:22613 msgid "Useful with e.g.@: NFS when @code{write()}s are delayed" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22253 +#: guix-git/doc/guix.texi:22615 msgid "Never use it (best performance, but crashes can lose data)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22255 +#: guix-git/doc/guix.texi:22617 msgid "Defaults to @samp{\"optimized\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22257 +#: guix-git/doc/guix.texi:22619 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-nfs-storage?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22262 +#: guix-git/doc/guix.texi:22624 msgid "Mail storage exists in NFS@. Set this to yes to make Dovecot flush NFS caches whenever needed. If you're using only a single mail server this isn't needed. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22264 +#: guix-git/doc/guix.texi:22626 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-nfs-index?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22268 +#: guix-git/doc/guix.texi:22630 msgid "Mail index files also exist in NFS@. Setting this to yes requires @samp{mmap-disable? #t} and @samp{fsync-disable? #f}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22270 +#: guix-git/doc/guix.texi:22632 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string lock-method" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22276 +#: guix-git/doc/guix.texi:22638 msgid "Locking method for index files. Alternatives are fcntl, flock and dotlock. Dotlocking uses some tricks which may create more disk I/O than other locking methods. NFS users: flock doesn't work, remember to change @samp{mmap-disable}. Defaults to @samp{\"fcntl\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22278 +#: guix-git/doc/guix.texi:22640 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name mail-temp-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22282 +#: guix-git/doc/guix.texi:22644 msgid "Directory in which LDA/LMTP temporarily stores incoming mails >128 kB. Defaults to @samp{\"/tmp\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22284 +#: guix-git/doc/guix.texi:22646 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer first-valid-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22290 +#: guix-git/doc/guix.texi:22652 msgid "Valid UID range for users. This is mostly to make sure that users can't log in as daemons or other system users. Note that denying root logins is hardcoded to dovecot binary and can't be done even if @samp{first-valid-uid} is set to 0. Defaults to @samp{500}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22292 +#: guix-git/doc/guix.texi:22654 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer last-valid-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22297 +#: guix-git/doc/guix.texi:22659 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer first-valid-gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22302 +#: guix-git/doc/guix.texi:22664 msgid "Valid GID range for users. Users having non-valid GID as primary group ID aren't allowed to log in. If user belongs to supplementary groups with non-valid GIDs, those groups are not set. Defaults to @samp{1}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22304 +#: guix-git/doc/guix.texi:22666 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer last-valid-gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22309 +#: guix-git/doc/guix.texi:22671 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-max-keyword-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22313 +#: guix-git/doc/guix.texi:22675 msgid "Maximum allowed length for mail keyword name. It's only forced when trying to create new keywords. Defaults to @samp{50}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22315 +#: guix-git/doc/guix.texi:22677 #, no-wrap msgid "{@code{dovecot-configuration} parameter} colon-separated-file-name-list valid-chroot-dirs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22325 +#: guix-git/doc/guix.texi:22687 msgid "List of directories under which chrooting is allowed for mail processes (i.e.@: @file{/var/mail} will allow chrooting to @file{/var/mail/foo/bar} too). This setting doesn't affect @samp{login-chroot} @samp{mail-chroot} or auth chroot settings. If this setting is empty, @samp{/./} in home dirs are ignored. WARNING: Never add directories here which local users can modify, that may lead to root exploit. Usually this should be done only if you don't allow shell access for users. . Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22327 +#: guix-git/doc/guix.texi:22689 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-chroot" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22336 +#: guix-git/doc/guix.texi:22698 msgid "Default chroot directory for mail processes. This can be overridden for specific users in user database by giving @samp{/./} in user's home directory (e.g.@: @samp{/home/./user} chroots into @file{/home}). Note that usually there is no real need to do chrooting, Dovecot doesn't allow users to access files outside their mail directory anyway. If your home directories are prefixed with the chroot directory, append @samp{/.} to @samp{mail-chroot}. . Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22338 +#: guix-git/doc/guix.texi:22700 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name auth-socket-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22342 +#: guix-git/doc/guix.texi:22704 msgid "UNIX socket path to master authentication server to find users. This is used by imap (for shared users) and lda. Defaults to @samp{\"/var/run/dovecot/auth-userdb\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22344 +#: guix-git/doc/guix.texi:22706 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name mail-plugin-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22347 +#: guix-git/doc/guix.texi:22709 msgid "Directory where to look up mail plugins. Defaults to @samp{\"/usr/lib/dovecot\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22349 +#: guix-git/doc/guix.texi:22711 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mail-plugins" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22353 +#: guix-git/doc/guix.texi:22715 msgid "List of plugins to load for all services. Plugins specific to IMAP, LDA, etc.@: are added to this list in their own .conf files. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22355 +#: guix-git/doc/guix.texi:22717 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-cache-min-mail-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22360 +#: guix-git/doc/guix.texi:22722 msgid "The minimum number of mails in a mailbox before updates are done to cache file. This allows optimizing Dovecot's behavior to do less disk writes at the cost of more disk reads. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22362 +#: guix-git/doc/guix.texi:22724 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mailbox-idle-check-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22369 +#: guix-git/doc/guix.texi:22731 msgid "When IDLE command is running, mailbox is checked once in a while to see if there are any new mails or other changes. This setting defines the minimum time to wait between those checks. Dovecot can also use dnotify, inotify and kqueue to find out immediately when changes occur. Defaults to @samp{\"30 secs\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22371 +#: guix-git/doc/guix.texi:22733 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-save-crlf?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22378 +#: guix-git/doc/guix.texi:22740 msgid "Save mails with CR+LF instead of plain LF@. This makes sending those mails take less CPU, especially with sendfile() syscall with Linux and FreeBSD@. But it also creates a bit more disk I/O which may just make it slower. Also note that if other software reads the mboxes/maildirs, they may handle the extra CRs wrong and cause problems. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22380 +#: guix-git/doc/guix.texi:22742 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-stat-dirs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22388 +#: guix-git/doc/guix.texi:22750 msgid "By default LIST command returns all entries in maildir beginning with a dot. Enabling this option makes Dovecot return only entries which are directories. This is done by stat()ing each entry, so it causes more disk I/O. (For systems setting struct @samp{dirent->d_type} this check is free and it's done always regardless of this setting). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22390 +#: guix-git/doc/guix.texi:22752 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-copy-with-hardlinks?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22395 +#: guix-git/doc/guix.texi:22757 msgid "When copying a message, do it with hard links whenever possible. This makes the performance much better, and it's unlikely to have any side effects. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22397 +#: guix-git/doc/guix.texi:22759 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-very-dirty-syncs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22402 +#: guix-git/doc/guix.texi:22764 msgid "Assume Dovecot is the only MUA accessing Maildir: Scan cur/ directory only when its mtime changes unexpectedly or when we can't find the mail otherwise. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22404 +#: guix-git/doc/guix.texi:22766 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mbox-read-locks" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22407 +#: guix-git/doc/guix.texi:22769 msgid "Which locking methods to use for locking mbox. There are four available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22409 +#: guix-git/doc/guix.texi:22771 #, no-wrap msgid "dotlock" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22413 +#: guix-git/doc/guix.texi:22775 msgid "Create .lock file. This is the oldest and most NFS-safe solution. If you want to use /var/mail/ like directory, the users will need write access to that directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22413 +#: guix-git/doc/guix.texi:22775 #, no-wrap msgid "dotlock-try" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22416 +#: guix-git/doc/guix.texi:22778 msgid "Same as dotlock, but if it fails because of permissions or because there isn't enough disk space, just skip it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22416 +#: guix-git/doc/guix.texi:22778 #, no-wrap msgid "fcntl" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22418 +#: guix-git/doc/guix.texi:22780 msgid "Use this if possible. Works with NFS too if lockd is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22418 +#: guix-git/doc/guix.texi:22780 #, no-wrap msgid "flock" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22420 guix-git/doc/guix.texi:22422 +#: guix-git/doc/guix.texi:22782 guix-git/doc/guix.texi:22784 msgid "May not exist in all systems. Doesn't work with NFS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22420 +#: guix-git/doc/guix.texi:22782 #, no-wrap msgid "lockf" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22428 +#: guix-git/doc/guix.texi:22790 msgid "You can use multiple locking methods; if you do the order they're declared in is important to avoid deadlocks if other MTAs/MUAs are using multiple locking methods as well. Some operating systems don't allow using some of them simultaneously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22430 +#: guix-git/doc/guix.texi:22792 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mbox-write-locks" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22434 +#: guix-git/doc/guix.texi:22796 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mbox-lock-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22437 +#: guix-git/doc/guix.texi:22799 msgid "Maximum time to wait for lock (all of them) before aborting. Defaults to @samp{\"5 mins\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22439 +#: guix-git/doc/guix.texi:22801 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mbox-dotlock-change-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22443 +#: guix-git/doc/guix.texi:22805 msgid "If dotlock exists but the mailbox isn't modified in any way, override the lock file after this much time. Defaults to @samp{\"2 mins\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22445 +#: guix-git/doc/guix.texi:22807 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-dirty-syncs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22456 +#: guix-git/doc/guix.texi:22818 msgid "When mbox changes unexpectedly we have to fully read it to find out what changed. If the mbox is large this can take a long time. Since the change is usually just a newly appended mail, it'd be faster to simply read the new mails. If this setting is enabled, Dovecot does this but still safely fallbacks to re-reading the whole mbox file whenever something in mbox isn't how it's expected to be. The only real downside to this setting is that if some other MUA changes message flags, Dovecot doesn't notice it immediately. Note that a full sync is done with SELECT, EXAMINE, EXPUNGE and CHECK commands. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22458 +#: guix-git/doc/guix.texi:22820 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-very-dirty-syncs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22463 +#: guix-git/doc/guix.texi:22825 msgid "Like @samp{mbox-dirty-syncs}, but don't do full syncs even with SELECT, EXAMINE, EXPUNGE or CHECK commands. If this is set, @samp{mbox-dirty-syncs} is ignored. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22465 +#: guix-git/doc/guix.texi:22827 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-lazy-writes?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22471 +#: guix-git/doc/guix.texi:22833 msgid "Delay writing mbox headers until doing a full write sync (EXPUNGE and CHECK commands and when closing the mailbox). This is especially useful for POP3 where clients often delete all mails. The downside is that our changes aren't immediately visible to other MUAs. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22473 +#: guix-git/doc/guix.texi:22835 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mbox-min-index-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22478 +#: guix-git/doc/guix.texi:22840 msgid "If mbox size is smaller than this (e.g.@: 100k), don't write index files. If an index file already exists it's still read, just not updated. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22480 +#: guix-git/doc/guix.texi:22842 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mdbox-rotate-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22483 +#: guix-git/doc/guix.texi:22845 msgid "Maximum dbox file size until it's rotated. Defaults to @samp{10000000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22485 +#: guix-git/doc/guix.texi:22847 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mdbox-rotate-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22490 +#: guix-git/doc/guix.texi:22852 msgid "Maximum dbox file age until it's rotated. Typically in days. Day begins from midnight, so 1d = today, 2d = yesterday, etc. 0 = check disabled. Defaults to @samp{\"1d\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22492 +#: guix-git/doc/guix.texi:22854 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mdbox-preallocate-space?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22497 +#: guix-git/doc/guix.texi:22859 msgid "When creating new mdbox files, immediately preallocate their size to @samp{mdbox-rotate-size}. This setting currently works only in Linux with some file systems (ext4, xfs). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22499 +#: guix-git/doc/guix.texi:22861 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22503 +#: guix-git/doc/guix.texi:22865 msgid "sdbox and mdbox support saving mail attachments to external files, which also allows single instance storage for them. Other backends don't support this for now." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22505 +#: guix-git/doc/guix.texi:22867 msgid "WARNING: This feature hasn't been tested much yet. Use at your own risk." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22508 +#: guix-git/doc/guix.texi:22870 msgid "Directory root where to store mail attachments. Disabled, if empty. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22510 +#: guix-git/doc/guix.texi:22872 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-attachment-min-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22515 +#: guix-git/doc/guix.texi:22877 msgid "Attachments smaller than this aren't saved externally. It's also possible to write a plugin to disable saving specific attachments externally. Defaults to @samp{128000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22517 +#: guix-git/doc/guix.texi:22879 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-fs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22519 +#: guix-git/doc/guix.texi:22881 msgid "File system backend to use for saving attachments:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22520 +#: guix-git/doc/guix.texi:22882 #, no-wrap msgid "posix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22522 +#: guix-git/doc/guix.texi:22884 msgid "No SiS done by Dovecot (but this might help FS's own deduplication)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22522 +#: guix-git/doc/guix.texi:22884 #, no-wrap msgid "sis posix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22524 +#: guix-git/doc/guix.texi:22886 msgid "SiS with immediate byte-by-byte comparison during saving" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22524 +#: guix-git/doc/guix.texi:22886 #, no-wrap msgid "sis-queue posix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22526 +#: guix-git/doc/guix.texi:22888 msgid "SiS with delayed comparison and deduplication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22528 +#: guix-git/doc/guix.texi:22890 msgid "Defaults to @samp{\"sis posix\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22530 +#: guix-git/doc/guix.texi:22892 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-hash" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22536 +#: guix-git/doc/guix.texi:22898 msgid "Hash format to use in attachment filenames. You can add any text and variables: @code{%@{md4@}}, @code{%@{md5@}}, @code{%@{sha1@}}, @code{%@{sha256@}}, @code{%@{sha512@}}, @code{%@{size@}}. Variables can be truncated, e.g.@: @code{%@{sha256:80@}} returns only first 80 bits. Defaults to @samp{\"%@{sha1@}\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22538 +#: guix-git/doc/guix.texi:22900 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-process-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22543 +#: guix-git/doc/guix.texi:22905 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-client-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22546 guix-git/doc/guix.texi:30171 +#: guix-git/doc/guix.texi:22908 guix-git/doc/guix.texi:30536 msgid "Defaults to @samp{1000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22548 +#: guix-git/doc/guix.texi:22910 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-vsz-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22553 +#: guix-git/doc/guix.texi:22915 msgid "Default VSZ (virtual memory size) limit for service processes. This is mainly intended to catch and kill processes that leak memory before they eat up everything. Defaults to @samp{256000000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22555 +#: guix-git/doc/guix.texi:22917 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string default-login-user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22560 +#: guix-git/doc/guix.texi:22922 msgid "Login user is internally used by login processes. This is the most untrusted user in Dovecot system. It shouldn't have access to anything at all. Defaults to @samp{\"dovenull\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22562 +#: guix-git/doc/guix.texi:22924 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string default-internal-user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22567 +#: guix-git/doc/guix.texi:22929 msgid "Internal user is used by unprivileged processes. It should be separate from login user, so that login processes can't disturb other processes. Defaults to @samp{\"dovecot\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22569 +#: guix-git/doc/guix.texi:22931 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string ssl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22572 +#: guix-git/doc/guix.texi:22934 msgid "SSL/TLS support: yes, no, required. . Defaults to @samp{\"required\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22574 +#: guix-git/doc/guix.texi:22936 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string ssl-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22577 +#: guix-git/doc/guix.texi:22939 msgid "PEM encoded X.509 SSL/TLS certificate (public key). Defaults to @samp{\" was automatically rejected:%n%r\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22687 +#: guix-git/doc/guix.texi:23049 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string recipient-delimiter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22691 +#: guix-git/doc/guix.texi:23053 msgid "Delimiter character between local-part and detail in email address. Defaults to @samp{\"+\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22693 +#: guix-git/doc/guix.texi:23055 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string lda-original-recipient-header" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22699 +#: guix-git/doc/guix.texi:23061 msgid "Header where the original recipient address (SMTP's RCPT TO: address) is taken from if not available elsewhere. With dovecot-lda -a parameter overrides this. A commonly used header for this is X-Original-To. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22701 +#: guix-git/doc/guix.texi:23063 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean lda-mailbox-autocreate?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22705 +#: guix-git/doc/guix.texi:23067 msgid "Should saving a mail to a nonexistent mailbox automatically create it?. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22707 +#: guix-git/doc/guix.texi:23069 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean lda-mailbox-autosubscribe?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22711 +#: guix-git/doc/guix.texi:23073 msgid "Should automatically created mailboxes be also automatically subscribed?. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22713 +#: guix-git/doc/guix.texi:23075 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer imap-max-line-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22719 +#: guix-git/doc/guix.texi:23081 msgid "Maximum IMAP command line length. Some clients generate very long command lines with huge mailboxes, so you may need to raise this if you get \"Too long argument\" or \"IMAP command line too large\" errors often. Defaults to @samp{64000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22721 +#: guix-git/doc/guix.texi:23083 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-logout-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22723 +#: guix-git/doc/guix.texi:23085 msgid "IMAP logout format string:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22724 +#: guix-git/doc/guix.texi:23086 #, no-wrap msgid "%i" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22726 +#: guix-git/doc/guix.texi:23088 msgid "total number of bytes read from client" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22726 +#: guix-git/doc/guix.texi:23088 #, no-wrap msgid "%o" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22728 +#: guix-git/doc/guix.texi:23090 msgid "total number of bytes sent to client." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22731 +#: guix-git/doc/guix.texi:23093 msgid "See @file{doc/wiki/Variables.txt} for a list of all the variables you can use. Defaults to @samp{\"in=%i out=%o deleted=%@{deleted@} expunged=%@{expunged@} trashed=%@{trashed@} hdr_count=%@{fetch_hdr_count@} hdr_bytes=%@{fetch_hdr_bytes@} body_count=%@{fetch_body_count@} body_bytes=%@{fetch_body_bytes@}\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22733 +#: guix-git/doc/guix.texi:23095 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-capability" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22737 +#: guix-git/doc/guix.texi:23099 msgid "Override the IMAP CAPABILITY response. If the value begins with '+', add the given capabilities on top of the defaults (e.g.@: +XFOO XBAR). Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22739 +#: guix-git/doc/guix.texi:23101 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-idle-notify-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22743 +#: guix-git/doc/guix.texi:23105 msgid "How long to wait between \"OK Still here\" notifications when client is IDLEing. Defaults to @samp{\"2 mins\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22745 +#: guix-git/doc/guix.texi:23107 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-id-send" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22751 +#: guix-git/doc/guix.texi:23113 msgid "ID field names and values to send to clients. Using * as the value makes Dovecot use the default value. The following fields have default values currently: name, version, os, os-version, support-url, support-email. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22753 +#: guix-git/doc/guix.texi:23115 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-id-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22756 +#: guix-git/doc/guix.texi:23118 msgid "ID fields sent by client to log. * means everything. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22758 +#: guix-git/doc/guix.texi:23120 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list imap-client-workarounds" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22760 +#: guix-git/doc/guix.texi:23122 msgid "Workarounds for various client bugs:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22762 +#: guix-git/doc/guix.texi:23124 #, no-wrap msgid "delay-newmail" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22769 +#: guix-git/doc/guix.texi:23131 msgid "Send EXISTS/RECENT new mail notifications only when replying to NOOP and CHECK commands. Some clients ignore them otherwise, for example OSX Mail (' before setting it here, to get a feel for which cipher suites you will get. After setting this option, it is recommend that you inspect your Murmur log to ensure that Murmur is using the cipher suites that you expected it to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24159 +#: guix-git/doc/guix.texi:24521 msgid "Note: Changing this option may impact the backwards compatibility of your Murmur server, and can remove the ability for older Mumble clients to be able to connect to it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:24160 +#: guix-git/doc/guix.texi:24522 #, no-wrap msgid "@code{public-registration} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:24162 +#: guix-git/doc/guix.texi:24524 msgid "Must be a @code{} record or @code{#f}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24167 +#: guix-git/doc/guix.texi:24529 msgid "You can optionally register your server in the public server list that the @code{mumble} client shows on startup. You cannot register your server if you have set a @code{server-password}, or set @code{allow-ping} to @code{#f}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24169 +#: guix-git/doc/guix.texi:24531 msgid "It might take a few hours until it shows up in the public list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:24170 guix-git/doc/guix.texi:26407 +#: guix-git/doc/guix.texi:24532 guix-git/doc/guix.texi:26744 #, no-wrap msgid "@code{file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:24172 +#: guix-git/doc/guix.texi:24534 msgid "Optional alternative override for this configuration." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24175 +#: guix-git/doc/guix.texi:24537 #, no-wrap msgid "{Data Type} murmur-public-registration-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24177 +#: guix-git/doc/guix.texi:24539 msgid "Configuration for public registration of a murmur service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24181 +#: guix-git/doc/guix.texi:24543 msgid "This is a display name for your server. Not to be confused with the hostname." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:24182 guix-git/doc/guix.texi:33135 -#: guix-git/doc/guix.texi:34304 +#: guix-git/doc/guix.texi:24544 guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:34743 #, no-wrap msgid "password" -msgstr "" +msgstr "heslo" #. type: table -#: guix-git/doc/guix.texi:24185 +#: guix-git/doc/guix.texi:24547 msgid "A password to identify your registration. Subsequent updates will need the same password. Don't lose your password." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24189 +#: guix-git/doc/guix.texi:24551 msgid "This should be a @code{http://} or @code{https://} link to your web site." msgstr "" #. type: item -#: guix-git/doc/guix.texi:24190 guix-git/doc/guix.texi:27292 +#: guix-git/doc/guix.texi:24552 guix-git/doc/guix.texi:27629 #, no-wrap msgid "@code{hostname} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:24193 +#: guix-git/doc/guix.texi:24555 msgid "By default your server will be listed by its IP address. If it is set your server will be linked by this host name instead." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24203 +#: guix-git/doc/guix.texi:24565 msgid "The @code{(gnu services file-sharing)} module provides services that assist with transferring files over peer-to-peer file-sharing networks." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:24204 +#: guix-git/doc/guix.texi:24566 #, no-wrap msgid "Transmission Daemon Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24212 +#: guix-git/doc/guix.texi:24574 msgid "@uref{https://transmissionbt.com/, Transmission} is a flexible BitTorrent client that offers a variety of graphical and command-line interfaces. A @code{transmission-daemon-service-type} service provides Transmission's headless variant, @command{transmission-daemon}, as a system service, allowing users to share files via BitTorrent even when they are not logged in." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24213 +#: guix-git/doc/guix.texi:24575 #, no-wrap msgid "{Scheme Variable} transmission-daemon-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24217 +#: guix-git/doc/guix.texi:24579 msgid "The service type for the Transmission Daemon BitTorrent client. Its value must be a @code{transmission-daemon-configuration} object as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24228 +#: guix-git/doc/guix.texi:24590 #, no-wrap msgid "" "(service transmission-daemon-service-type\n" @@ -43462,7 +44049,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24233 +#: guix-git/doc/guix.texi:24595 #, no-wrap msgid "" " ;; Accept requests from this and other hosts on the\n" @@ -43473,7 +44060,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24237 +#: guix-git/doc/guix.texi:24599 #, no-wrap msgid "" " ;; Limit bandwidth use during work hours\n" @@ -43483,7 +44070,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24244 +#: guix-git/doc/guix.texi:24606 #, no-wrap msgid "" " (alt-speed-time-enabled? #t)\n" @@ -43495,49 +44082,49 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24257 +#: guix-git/doc/guix.texi:24619 msgid "Once the service is started, users can interact with the daemon through its Web interface (at @code{http://localhost:9091/}) or by using the @command{transmission-remote} command-line tool, available in the @code{transmission} package. (Emacs users may want to also consider the @code{emacs-transmission} package.) Both communicate with the daemon through its remote procedure call (RPC) interface, which by default is available to all users on the system; you may wish to change this by assigning values to the @code{rpc-authentication-required?}, @code{rpc-username} and @code{rpc-password} settings, as shown in the example above and documented further below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24265 +#: guix-git/doc/guix.texi:24627 msgid "The value for @code{rpc-password} must be a password hash of the type generated and used by Transmission clients. This can be copied verbatim from an existing @file{settings.json} file, if another Transmission client is already being used. Otherwise, the @code{transmission-password-hash} and @code{transmission-random-salt} procedures provided by this module can be used to obtain a suitable hash value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24266 +#: guix-git/doc/guix.texi:24628 #, no-wrap msgid "{Scheme Procedure} transmission-password-hash @var{password} @var{salt}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24270 +#: guix-git/doc/guix.texi:24632 msgid "Returns a string containing the result of hashing @var{password} together with @var{salt}, in the format recognized by Transmission clients for their @code{rpc-password} configuration setting." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24274 +#: guix-git/doc/guix.texi:24636 msgid "@var{salt} must be an eight-character string. The @code{transmission-random-salt} procedure can be used to generate a suitable salt value at random." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24276 +#: guix-git/doc/guix.texi:24638 #, no-wrap msgid "{Scheme Procedure} transmission-random-salt" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24280 +#: guix-git/doc/guix.texi:24642 msgid "Returns a string containing a random, eight-character salt value of the type generated and used by Transmission clients, suitable for passing to the @code{transmission-password-hash} procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24286 +#: guix-git/doc/guix.texi:24648 msgid "These procedures are accessible from within a Guile REPL started with the @command{guix repl} command (@pxref{Invoking guix repl}). This is useful for obtaining a random salt value to provide as the second parameter to `transmission-password-hash`, as in this example session:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:24292 +#: guix-git/doc/guix.texi:24654 #, no-wrap msgid "" "$ guix repl\n" @@ -43547,12 +44134,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24295 +#: guix-git/doc/guix.texi:24657 msgid "Alternatively, a complete password hash can generated in a single step:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:24300 +#: guix-git/doc/guix.texi:24662 #, no-wrap msgid "" "scheme@@(guix-user)> (transmission-password-hash \"transmission\"\n" @@ -43561,480 +44148,480 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24305 +#: guix-git/doc/guix.texi:24667 msgid "The resulting string can be used as-is for the value of @code{rpc-password}, allowing the password to be kept hidden even in the operating-system configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24314 +#: guix-git/doc/guix.texi:24676 msgid "Torrent files downloaded by the daemon are directly accessible only to users in the ``transmission'' user group, who receive read-only access to the directory specified by the @code{download-dir} configuration setting (and also the directory specified by @code{incomplete-dir}, if @code{incomplete-dir-enabled?} is @code{#t}). Downloaded files can be moved to another directory or deleted altogether using @command{transmission-remote} with its @code{--move} and @code{--remove-and-delete} options." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24321 +#: guix-git/doc/guix.texi:24683 msgid "If the @code{watch-dir-enabled?} setting is set to @code{#t}, users in the ``transmission'' group are able also to place @file{.torrent} files in the directory specified by @code{watch-dir} to have the corresponding torrents added by the daemon. (The @code{trash-original-torrent-files?} setting controls whether the daemon deletes these files after processing them.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24326 +#: guix-git/doc/guix.texi:24688 msgid "Some of the daemon's configuration settings can be changed temporarily by @command{transmission-remote} and similar tools. To undo these changes, use the service's @code{reload} action to have the daemon reload its settings from disk:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:24329 +#: guix-git/doc/guix.texi:24691 #, no-wrap msgid "# herd reload transmission-daemon\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24333 +#: guix-git/doc/guix.texi:24695 msgid "The full set of available configuration settings is defined by the @code{transmission-daemon-configuration} data type." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24334 +#: guix-git/doc/guix.texi:24696 #, no-wrap msgid "{Data Type} transmission-daemon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24338 +#: guix-git/doc/guix.texi:24700 msgid "The data type representing configuration settings for Transmission Daemon. These correspond directly to the settings recognized by Transmission clients in their @file{settings.json} file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24352 +#: guix-git/doc/guix.texi:24714 msgid "Available @code{transmission-daemon-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24353 +#: guix-git/doc/guix.texi:24715 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} package transmission" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24355 +#: guix-git/doc/guix.texi:24717 msgid "The Transmission package to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24358 +#: guix-git/doc/guix.texi:24720 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer stop-wait-period" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24364 +#: guix-git/doc/guix.texi:24726 msgid "The period, in seconds, to wait when stopping the service for @command{transmission-daemon} to exit before killing its process. This allows the daemon time to complete its housekeeping and send a final update to trackers as it shuts down. On slow hosts, or hosts with a slow network connection, this value may need to be increased." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24366 guix-git/doc/guix.texi:24738 -#: guix-git/doc/guix.texi:32101 guix-git/doc/guix.texi:32336 -#: guix-git/doc/guix.texi:32344 guix-git/doc/guix.texi:32352 +#: guix-git/doc/guix.texi:24728 guix-git/doc/guix.texi:25100 +#: guix-git/doc/guix.texi:32466 guix-git/doc/guix.texi:32701 +#: guix-git/doc/guix.texi:32709 guix-git/doc/guix.texi:32717 msgid "Defaults to @samp{10}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24369 +#: guix-git/doc/guix.texi:24731 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string download-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24371 +#: guix-git/doc/guix.texi:24733 msgid "The directory to which torrent files are downloaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24373 +#: guix-git/doc/guix.texi:24735 msgid "Defaults to @samp{\"/var/lib/transmission-daemon/downloads\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24376 +#: guix-git/doc/guix.texi:24738 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean incomplete-dir-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24381 +#: guix-git/doc/guix.texi:24743 msgid "If @code{#t}, files will be held in @code{incomplete-dir} while their torrent is being downloaded, then moved to @code{download-dir} once the torrent is complete. Otherwise, files for all torrents (including those still being downloaded) will be placed in @code{download-dir}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24386 +#: guix-git/doc/guix.texi:24748 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string incomplete-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24389 +#: guix-git/doc/guix.texi:24751 msgid "The directory in which files from incompletely downloaded torrents will be held when @code{incomplete-dir-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24394 +#: guix-git/doc/guix.texi:24756 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} umask umask" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24397 +#: guix-git/doc/guix.texi:24759 msgid "The file mode creation mask used for downloaded files. (See the @command{umask} man page for more information.)" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24399 +#: guix-git/doc/guix.texi:24761 msgid "Defaults to @samp{18}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24402 +#: guix-git/doc/guix.texi:24764 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rename-partial-files?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24405 +#: guix-git/doc/guix.texi:24767 msgid "When @code{#t}, ``.part'' is appended to the name of partially downloaded files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24410 +#: guix-git/doc/guix.texi:24772 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} preallocation-mode preallocation" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24415 +#: guix-git/doc/guix.texi:24777 msgid "The mode by which space should be preallocated for downloaded files, one of @code{none}, @code{fast} (or @code{sparse}) and @code{full}. Specifying @code{full} will minimize disk fragmentation at a cost to file-creation speed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24417 +#: guix-git/doc/guix.texi:24779 msgid "Defaults to @samp{fast}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24420 +#: guix-git/doc/guix.texi:24782 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean watch-dir-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24425 +#: guix-git/doc/guix.texi:24787 msgid "If @code{#t}, the directory specified by @code{watch-dir} will be watched for new @file{.torrent} files and the torrents they describe added automatically (and the original files removed, if @code{trash-original-torrent-files?} is @code{#t})." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24430 +#: guix-git/doc/guix.texi:24792 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string watch-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24433 +#: guix-git/doc/guix.texi:24795 msgid "The directory to be watched for @file{.torrent} files indicating new torrents to be added, when @code{watch-dir-enabled} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24438 +#: guix-git/doc/guix.texi:24800 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean trash-original-torrent-files?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24442 +#: guix-git/doc/guix.texi:24804 msgid "When @code{#t}, @file{.torrent} files will be deleted from the watch directory once their torrent has been added (see @code{watch-directory-enabled?})." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24447 +#: guix-git/doc/guix.texi:24809 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean speed-limit-down-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24450 +#: guix-git/doc/guix.texi:24812 msgid "When @code{#t}, the daemon's download speed will be limited to the rate specified by @code{speed-limit-down}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24455 +#: guix-git/doc/guix.texi:24817 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer speed-limit-down" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24457 +#: guix-git/doc/guix.texi:24819 msgid "The default global-maximum download speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24462 +#: guix-git/doc/guix.texi:24824 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean speed-limit-up-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24465 +#: guix-git/doc/guix.texi:24827 msgid "When @code{#t}, the daemon's upload speed will be limited to the rate specified by @code{speed-limit-up}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24470 +#: guix-git/doc/guix.texi:24832 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer speed-limit-up" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24472 +#: guix-git/doc/guix.texi:24834 msgid "The default global-maximum upload speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24477 +#: guix-git/doc/guix.texi:24839 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean alt-speed-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24483 +#: guix-git/doc/guix.texi:24845 msgid "When @code{#t}, the alternate speed limits @code{alt-speed-down} and @code{alt-speed-up} are used (in place of @code{speed-limit-down} and @code{speed-limit-up}, if they are enabled) to constrain the daemon's bandwidth usage. This can be scheduled to occur automatically at certain times during the week; see @code{alt-speed-time-enabled?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24488 +#: guix-git/doc/guix.texi:24850 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-down" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24490 +#: guix-git/doc/guix.texi:24852 msgid "The alternate global-maximum download speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24492 guix-git/doc/guix.texi:24499 -#: guix-git/doc/guix.texi:24671 guix-git/doc/guix.texi:32108 -#: guix-git/doc/guix.texi:32123 +#: guix-git/doc/guix.texi:24854 guix-git/doc/guix.texi:24861 +#: guix-git/doc/guix.texi:25033 guix-git/doc/guix.texi:32473 +#: guix-git/doc/guix.texi:32488 msgid "Defaults to @samp{50}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24495 +#: guix-git/doc/guix.texi:24857 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-up" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24497 +#: guix-git/doc/guix.texi:24859 msgid "The alternate global-maximum upload speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24502 +#: guix-git/doc/guix.texi:24864 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean alt-speed-time-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24507 +#: guix-git/doc/guix.texi:24869 msgid "When @code{#t}, the alternate speed limits @code{alt-speed-down} and @code{alt-speed-up} will be enabled automatically during the periods specified by @code{alt-speed-time-day}, @code{alt-speed-time-begin} and @code{alt-time-speed-end}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24512 +#: guix-git/doc/guix.texi:24874 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} day-list alt-speed-time-day" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24517 +#: guix-git/doc/guix.texi:24879 msgid "The days of the week on which the alternate-speed schedule should be used, specified either as a list of days (@code{sunday}, @code{monday}, and so on) or using one of the symbols @code{weekdays}, @code{weekends} or @code{all}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24519 +#: guix-git/doc/guix.texi:24881 msgid "Defaults to @samp{all}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24522 +#: guix-git/doc/guix.texi:24884 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-time-begin" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24525 +#: guix-git/doc/guix.texi:24887 msgid "The time of day at which to enable the alternate speed limits, expressed as a number of minutes since midnight." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24527 +#: guix-git/doc/guix.texi:24889 msgid "Defaults to @samp{540}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24530 +#: guix-git/doc/guix.texi:24892 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-time-end" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24533 +#: guix-git/doc/guix.texi:24895 msgid "The time of day at which to disable the alternate speed limits, expressed as a number of minutes since midnight." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24535 +#: guix-git/doc/guix.texi:24897 msgid "Defaults to @samp{1020}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24538 +#: guix-git/doc/guix.texi:24900 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string bind-address-ipv4" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24541 +#: guix-git/doc/guix.texi:24903 msgid "The IP address at which to listen for peer connections, or ``0.0.0.0'' to listen at all available IP addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24543 guix-git/doc/guix.texi:24846 -#: guix-git/doc/guix.texi:29969 +#: guix-git/doc/guix.texi:24905 guix-git/doc/guix.texi:25208 +#: guix-git/doc/guix.texi:30334 msgid "Defaults to @samp{\"0.0.0.0\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24546 +#: guix-git/doc/guix.texi:24908 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string bind-address-ipv6" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24549 +#: guix-git/doc/guix.texi:24911 msgid "The IPv6 address at which to listen for peer connections, or ``::'' to listen at all available IPv6 addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24551 +#: guix-git/doc/guix.texi:24913 msgid "Defaults to @samp{\"::\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24554 +#: guix-git/doc/guix.texi:24916 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean peer-port-random-on-start?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24560 +#: guix-git/doc/guix.texi:24922 msgid "If @code{#t}, when the daemon starts it will select a port at random on which to listen for peer connections, from the range specified (inclusively) by @code{peer-port-random-low} and @code{peer-port-random-high}. Otherwise, it listens on the port specified by @code{peer-port}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24565 +#: guix-git/doc/guix.texi:24927 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port-random-low" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24568 +#: guix-git/doc/guix.texi:24930 msgid "The lowest selectable port number when @code{peer-port-random-on-start?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24570 +#: guix-git/doc/guix.texi:24932 msgid "Defaults to @samp{49152}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24573 +#: guix-git/doc/guix.texi:24935 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port-random-high" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24576 +#: guix-git/doc/guix.texi:24938 msgid "The highest selectable port number when @code{peer-port-random-on-start} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24578 +#: guix-git/doc/guix.texi:24940 msgid "Defaults to @samp{65535}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24581 +#: guix-git/doc/guix.texi:24943 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24584 +#: guix-git/doc/guix.texi:24946 msgid "The port on which to listen for peer connections when @code{peer-port-random-on-start?} is @code{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24586 +#: guix-git/doc/guix.texi:24948 msgid "Defaults to @samp{51413}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24589 +#: guix-git/doc/guix.texi:24951 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean port-forwarding-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24593 +#: guix-git/doc/guix.texi:24955 msgid "If @code{#t}, the daemon will attempt to configure port-forwarding on an upstream gateway automatically using @acronym{UPnP} and @acronym{NAT-PMP}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24598 +#: guix-git/doc/guix.texi:24960 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} encryption-mode encryption" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24603 +#: guix-git/doc/guix.texi:24965 msgid "The encryption preference for peer connections, one of @code{prefer-unencrypted-connections}, @code{prefer-encrypted-connections} or @code{require-encrypted-connections}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24605 +#: guix-git/doc/guix.texi:24967 msgid "Defaults to @samp{prefer-encrypted-connections}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24608 +#: guix-git/doc/guix.texi:24970 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string peer-congestion-algorithm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24613 +#: guix-git/doc/guix.texi:24975 msgid "The TCP congestion-control algorithm to use for peer connections, specified using a string recognized by the operating system in calls to @code{setsockopt} (or set to @code{disabled}, in which case the operating-system default is used)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24622 +#: guix-git/doc/guix.texi:24984 msgid "Note that on GNU/Linux systems, the kernel must be configured to allow processes to use a congestion-control algorithm not in the default set; otherwise, it will deny these requests with ``Operation not permitted''. To see which algorithms are available on your system and which are currently permitted for use, look at the contents of the files @file{tcp_available_congestion_control} and @file{tcp_allowed_congestion_control} in the @file{/proc/sys/net/ipv4} directory." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24630 +#: guix-git/doc/guix.texi:24992 msgid "As an example, to have Transmission Daemon use @uref{http://www-ece.rice.edu/networks/TCP-LP/,the TCP Low Priority congestion-control algorithm}, you'll need to modify your kernel configuration to build in support for the algorithm, then update your operating-system configuration to allow its use by adding a @code{sysctl-service-type} service (or updating the existing one's configuration) with lines like the following:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24637 +#: guix-git/doc/guix.texi:24999 #, no-wrap msgid "" "(service sysctl-service-type\n" @@ -44045,529 +44632,529 @@ msgid "" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24640 +#: guix-git/doc/guix.texi:25002 msgid "The Transmission Daemon configuration can then be updated with" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24643 +#: guix-git/doc/guix.texi:25005 #, no-wrap msgid "(peer-congestion-algorithm \"lp\")\n" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24646 +#: guix-git/doc/guix.texi:25008 msgid "and the system reconfigured to have the changes take effect." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24651 +#: guix-git/doc/guix.texi:25013 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} tcp-type-of-service peer-socket-tos" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24655 +#: guix-git/doc/guix.texi:25017 msgid "The type of service to request in outgoing @acronym{TCP} packets, one of @code{default}, @code{low-cost}, @code{throughput}, @code{low-delay} and @code{reliability}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24657 +#: guix-git/doc/guix.texi:25019 msgid "Defaults to @samp{default}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24660 +#: guix-git/doc/guix.texi:25022 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-limit-global" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24662 +#: guix-git/doc/guix.texi:25024 msgid "The global limit on the number of connected peers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24664 +#: guix-git/doc/guix.texi:25026 msgid "Defaults to @samp{200}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24667 +#: guix-git/doc/guix.texi:25029 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-limit-per-torrent" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24669 +#: guix-git/doc/guix.texi:25031 msgid "The per-torrent limit on the number of connected peers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24674 +#: guix-git/doc/guix.texi:25036 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer upload-slots-per-torrent" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24677 +#: guix-git/doc/guix.texi:25039 msgid "The maximum number of peers to which the daemon will upload data simultaneously for each torrent." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24679 +#: guix-git/doc/guix.texi:25041 msgid "Defaults to @samp{14}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24682 +#: guix-git/doc/guix.texi:25044 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-id-ttl-hours" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24685 +#: guix-git/doc/guix.texi:25047 msgid "The maximum lifespan, in hours, of the peer ID associated with each public torrent before it is regenerated." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24687 +#: guix-git/doc/guix.texi:25049 msgid "Defaults to @samp{6}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24690 +#: guix-git/doc/guix.texi:25052 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean blocklist-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24693 +#: guix-git/doc/guix.texi:25055 msgid "When @code{#t}, the daemon will ignore peers mentioned in the blocklist it has most recently downloaded from @code{blocklist-url}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24698 +#: guix-git/doc/guix.texi:25060 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string blocklist-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24702 +#: guix-git/doc/guix.texi:25064 msgid "The URL of a peer blocklist (in @acronym{P2P}-plaintext or eMule @file{.dat} format) to be periodically downloaded and applied when @code{blocklist-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24707 +#: guix-git/doc/guix.texi:25069 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean download-queue-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24710 +#: guix-git/doc/guix.texi:25072 msgid "If @code{#t}, the daemon will be limited to downloading at most @code{download-queue-size} non-stalled torrents simultaneously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24715 +#: guix-git/doc/guix.texi:25077 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer download-queue-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24719 +#: guix-git/doc/guix.texi:25081 msgid "The size of the daemon's download queue, which limits the number of non-stalled torrents it will download at any one time when @code{download-queue-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24724 +#: guix-git/doc/guix.texi:25086 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean seed-queue-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24727 +#: guix-git/doc/guix.texi:25089 msgid "If @code{#t}, the daemon will be limited to seeding at most @code{seed-queue-size} non-stalled torrents simultaneously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24732 +#: guix-git/doc/guix.texi:25094 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer seed-queue-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24736 +#: guix-git/doc/guix.texi:25098 msgid "The size of the daemon's seed queue, which limits the number of non-stalled torrents it will seed at any one time when @code{seed-queue-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24741 +#: guix-git/doc/guix.texi:25103 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean queue-stalled-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24746 +#: guix-git/doc/guix.texi:25108 msgid "When @code{#t}, the daemon will consider torrents for which it has not shared data in the past @code{queue-stalled-minutes} minutes to be stalled and not count them against its @code{download-queue-size} and @code{seed-queue-size} limits." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24751 +#: guix-git/doc/guix.texi:25113 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer queue-stalled-minutes" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24755 +#: guix-git/doc/guix.texi:25117 msgid "The maximum period, in minutes, a torrent may be idle before it is considered to be stalled, when @code{queue-stalled-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24760 +#: guix-git/doc/guix.texi:25122 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean ratio-limit-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24763 +#: guix-git/doc/guix.texi:25125 msgid "When @code{#t}, a torrent being seeded will automatically be paused once it reaches the ratio specified by @code{ratio-limit}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24768 +#: guix-git/doc/guix.texi:25130 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-rational ratio-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24771 +#: guix-git/doc/guix.texi:25133 msgid "The ratio at which a torrent being seeded will be paused, when @code{ratio-limit-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24773 +#: guix-git/doc/guix.texi:25135 msgid "Defaults to @samp{2.0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24776 +#: guix-git/doc/guix.texi:25138 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean idle-seeding-limit-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24779 +#: guix-git/doc/guix.texi:25141 msgid "When @code{#t}, a torrent being seeded will automatically be paused once it has been idle for @code{idle-seeding-limit} minutes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24784 +#: guix-git/doc/guix.texi:25146 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer idle-seeding-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24788 +#: guix-git/doc/guix.texi:25150 msgid "The maximum period, in minutes, a torrent being seeded may be idle before it is paused, when @code{idle-seeding-limit-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24793 +#: guix-git/doc/guix.texi:25155 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean dht-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24797 +#: guix-git/doc/guix.texi:25159 msgid "Enable @uref{http://bittorrent.org/beps/bep_0005.html,the distributed hash table (@acronym{DHT}) protocol}, which supports the use of trackerless torrents." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24802 +#: guix-git/doc/guix.texi:25164 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean lpd-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24807 +#: guix-git/doc/guix.texi:25169 msgid "Enable @uref{https://en.wikipedia.org/wiki/Local_Peer_Discovery,local peer discovery} (@acronym{LPD}), which allows the discovery of peers on the local network and may reduce the amount of data sent over the public Internet." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24812 +#: guix-git/doc/guix.texi:25174 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean pex-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24816 +#: guix-git/doc/guix.texi:25178 msgid "Enable @uref{https://en.wikipedia.org/wiki/Peer_exchange,peer exchange} (@acronym{PEX}), which reduces the daemon's reliance on external trackers and may improve its performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24821 +#: guix-git/doc/guix.texi:25183 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean utp-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24826 +#: guix-git/doc/guix.texi:25188 msgid "Enable @uref{http://bittorrent.org/beps/bep_0029.html,the micro transport protocol} (@acronym{uTP}), which aims to reduce the impact of BitTorrent traffic on other users of the local network while maintaining full utilization of the available bandwidth." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24831 +#: guix-git/doc/guix.texi:25193 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24836 +#: guix-git/doc/guix.texi:25198 msgid "If @code{#t}, enable the remote procedure call (@acronym{RPC}) interface, which allows remote control of the daemon via its Web interface, the @command{transmission-remote} command-line client, and similar tools." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24841 +#: guix-git/doc/guix.texi:25203 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string rpc-bind-address" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24844 +#: guix-git/doc/guix.texi:25206 msgid "The IP address at which to listen for @acronym{RPC} connections, or ``0.0.0.0'' to listen at all available IP addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24849 +#: guix-git/doc/guix.texi:25211 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number rpc-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24851 +#: guix-git/doc/guix.texi:25213 msgid "The port on which to listen for @acronym{RPC} connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24853 +#: guix-git/doc/guix.texi:25215 msgid "Defaults to @samp{9091}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24856 +#: guix-git/doc/guix.texi:25218 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string rpc-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24858 +#: guix-git/doc/guix.texi:25220 msgid "The path prefix to use in the @acronym{RPC}-endpoint @acronym{URL}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24860 +#: guix-git/doc/guix.texi:25222 msgid "Defaults to @samp{\"/transmission/\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24863 +#: guix-git/doc/guix.texi:25225 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-authentication-required?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24868 +#: guix-git/doc/guix.texi:25230 msgid "When @code{#t}, clients must authenticate (see @code{rpc-username} and @code{rpc-password}) when using the @acronym{RPC} interface. Note this has the side effect of disabling host-name whitelisting (see @code{rpc-host-whitelist-enabled?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24873 +#: guix-git/doc/guix.texi:25235 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string rpc-username" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24876 +#: guix-git/doc/guix.texi:25238 msgid "The username required by clients to access the @acronym{RPC} interface when @code{rpc-authentication-required?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24881 +#: guix-git/doc/guix.texi:25243 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-transmission-password-hash rpc-password" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24887 +#: guix-git/doc/guix.texi:25249 msgid "The password required by clients to access the @acronym{RPC} interface when @code{rpc-authentication-required?} is @code{#t}. This must be specified using a password hash in the format recognized by Transmission clients, either copied from an existing @file{settings.json} file or generated using the @code{transmission-password-hash} procedure." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24892 +#: guix-git/doc/guix.texi:25254 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-whitelist-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24895 +#: guix-git/doc/guix.texi:25257 msgid "When @code{#t}, @acronym{RPC} requests will be accepted only when they originate from an address specified in @code{rpc-whitelist}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24900 +#: guix-git/doc/guix.texi:25262 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string-list rpc-whitelist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24904 +#: guix-git/doc/guix.texi:25266 msgid "The list of IP and IPv6 addresses from which @acronym{RPC} requests will be accepted when @code{rpc-whitelist-enabled?} is @code{#t}. Wildcards may be specified using @samp{*}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24906 +#: guix-git/doc/guix.texi:25268 msgid "Defaults to @samp{(\"127.0.0.1\" \"::1\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24909 +#: guix-git/doc/guix.texi:25271 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-host-whitelist-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24914 +#: guix-git/doc/guix.texi:25276 msgid "When @code{#t}, @acronym{RPC} requests will be accepted only when they are addressed to a host named in @code{rpc-host-whitelist}. Note that requests to ``localhost'' or ``localhost.'', or to a numeric address, are always accepted regardless of these settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24917 +#: guix-git/doc/guix.texi:25279 msgid "Note also this functionality is disabled when @code{rpc-authentication-required?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24922 +#: guix-git/doc/guix.texi:25284 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string-list rpc-host-whitelist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24925 +#: guix-git/doc/guix.texi:25287 msgid "The list of host names recognized by the @acronym{RPC} server when @code{rpc-host-whitelist-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24930 +#: guix-git/doc/guix.texi:25292 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} message-level message-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24934 +#: guix-git/doc/guix.texi:25296 msgid "The minimum severity level of messages to be logged (to @file{/var/log/transmission.log}) by the daemon, one of @code{none} (no logging), @code{error}, @code{info} and @code{debug}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24939 +#: guix-git/doc/guix.texi:25301 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean start-added-torrents?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24942 +#: guix-git/doc/guix.texi:25304 msgid "When @code{#t}, torrents are started as soon as they are added; otherwise, they are added in ``paused'' state." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24947 +#: guix-git/doc/guix.texi:25309 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean script-torrent-done-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24951 +#: guix-git/doc/guix.texi:25313 msgid "When @code{#t}, the script specified by @code{script-torrent-done-filename} will be invoked each time a torrent completes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24956 +#: guix-git/doc/guix.texi:25318 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-file-object script-torrent-done-filename" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24960 +#: guix-git/doc/guix.texi:25322 msgid "A file name or file-like object specifying a script to run each time a torrent completes, when @code{script-torrent-done-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24965 +#: guix-git/doc/guix.texi:25327 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean scrape-paused-torrents-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24968 +#: guix-git/doc/guix.texi:25330 msgid "When @code{#t}, the daemon will scrape trackers for a torrent even when the torrent is paused." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24973 +#: guix-git/doc/guix.texi:25335 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer cache-size-mb" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24977 +#: guix-git/doc/guix.texi:25339 msgid "The amount of memory, in megabytes, to allocate for the daemon's in-memory cache. A larger value may increase performance by reducing the frequency of disk I/O." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24979 +#: guix-git/doc/guix.texi:25341 msgid "Defaults to @samp{4}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24982 +#: guix-git/doc/guix.texi:25344 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean prefetch-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24986 +#: guix-git/doc/guix.texi:25348 msgid "When @code{#t}, the daemon will try to improve I/O performance by hinting to the operating system which data is likely to be read next from disk to satisfy requests from peers." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:24999 +#: guix-git/doc/guix.texi:25361 #, no-wrap msgid "Tailon Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25003 +#: guix-git/doc/guix.texi:25365 msgid "@uref{https://tailon.readthedocs.io/, Tailon} is a web application for viewing and searching log files." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25006 +#: guix-git/doc/guix.texi:25368 msgid "The following example will configure the service with default values. By default, Tailon can be accessed on port 8080 (@code{http://localhost:8080})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25009 +#: guix-git/doc/guix.texi:25371 #, no-wrap msgid "(service tailon-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25013 +#: guix-git/doc/guix.texi:25375 msgid "The following example customises more of the Tailon configuration, adding @command{sed} to the list of allowed commands." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25020 +#: guix-git/doc/guix.texi:25382 #, no-wrap msgid "" "(service tailon-service-type\n" @@ -44578,34 +45165,34 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25023 +#: guix-git/doc/guix.texi:25385 #, no-wrap msgid "{Data Type} tailon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25026 +#: guix-git/doc/guix.texi:25388 msgid "Data type representing the configuration of Tailon. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25028 +#: guix-git/doc/guix.texi:25390 #, no-wrap msgid "@code{config-file} (default: @code{(tailon-configuration-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25032 +#: guix-git/doc/guix.texi:25394 msgid "The configuration file to use for Tailon. This can be set to a @dfn{tailon-configuration-file} record value, or any gexp (@pxref{G-Expressions})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25035 +#: guix-git/doc/guix.texi:25397 msgid "For example, to instead use a local file, the @code{local-file} function can be used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25040 +#: guix-git/doc/guix.texi:25402 #, no-wrap msgid "" "(service tailon-service-type\n" @@ -44614,144 +45201,144 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25042 +#: guix-git/doc/guix.texi:25404 #, no-wrap msgid "@code{package} (default: @code{tailon})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25044 +#: guix-git/doc/guix.texi:25406 msgid "The tailon package to use." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25048 +#: guix-git/doc/guix.texi:25410 #, no-wrap msgid "{Data Type} tailon-configuration-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25051 +#: guix-git/doc/guix.texi:25413 msgid "Data type representing the configuration options for Tailon. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25053 +#: guix-git/doc/guix.texi:25415 #, no-wrap msgid "@code{files} (default: @code{(list \"/var/log\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25058 +#: guix-git/doc/guix.texi:25420 msgid "List of files to display. The list can include strings for a single file or directory, or a list, where the first item is the name of a subsection, and the remaining items are the files or directories in that subsection." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25059 +#: guix-git/doc/guix.texi:25421 #, no-wrap msgid "@code{bind} (default: @code{\"localhost:8080\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25061 +#: guix-git/doc/guix.texi:25423 msgid "Address and port to which Tailon should bind on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25062 +#: guix-git/doc/guix.texi:25424 #, no-wrap msgid "@code{relative-root} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25064 +#: guix-git/doc/guix.texi:25426 msgid "URL path to use for Tailon, set to @code{#f} to not use a path." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25065 +#: guix-git/doc/guix.texi:25427 #, no-wrap msgid "@code{allow-transfers?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25067 +#: guix-git/doc/guix.texi:25429 msgid "Allow downloading the log files in the web interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25068 +#: guix-git/doc/guix.texi:25430 #, no-wrap msgid "@code{follow-names?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25070 +#: guix-git/doc/guix.texi:25432 msgid "Allow tailing of not-yet existent files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25071 +#: guix-git/doc/guix.texi:25433 #, no-wrap msgid "@code{tail-lines} (default: @code{200})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25073 +#: guix-git/doc/guix.texi:25435 msgid "Number of lines to read initially from each file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25074 +#: guix-git/doc/guix.texi:25436 #, no-wrap msgid "@code{allowed-commands} (default: @code{(list \"tail\" \"grep\" \"awk\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25076 +#: guix-git/doc/guix.texi:25438 msgid "Commands to allow running. By default, @code{sed} is disabled." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25079 +#: guix-git/doc/guix.texi:25441 msgid "Set @code{debug?} to @code{#t} to show debug messages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25080 +#: guix-git/doc/guix.texi:25442 #, no-wrap msgid "@code{wrap-lines} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25084 +#: guix-git/doc/guix.texi:25446 msgid "Initial line wrapping state in the web interface. Set to @code{#t} to initially wrap lines (the default), or to @code{#f} to initially not wrap lines." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25085 +#: guix-git/doc/guix.texi:25447 #, no-wrap msgid "@code{http-auth} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25089 +#: guix-git/doc/guix.texi:25451 msgid "HTTP authentication type to use. Set to @code{#f} to disable authentication (the default). Supported values are @code{\"digest\"} or @code{\"basic\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25090 +#: guix-git/doc/guix.texi:25452 #, no-wrap msgid "@code{users} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25095 +#: guix-git/doc/guix.texi:25457 msgid "If HTTP authentication is enabled (see @code{http-auth}), access will be restricted to the credentials provided here. To configure users, use a list of pairs, where the first element of the pair is the username, and the 2nd element of the pair is the password." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25101 +#: guix-git/doc/guix.texi:25463 #, no-wrap msgid "" "(tailon-configuration-file\n" @@ -44761,35 +45348,35 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25107 +#: guix-git/doc/guix.texi:25469 #, no-wrap msgid "Darkstat Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25108 +#: guix-git/doc/guix.texi:25470 #, no-wrap msgid "darkstat" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25111 +#: guix-git/doc/guix.texi:25473 msgid "Darkstat is a packet sniffer that captures network traffic, calculates statistics about usage, and serves reports over HTTP." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25112 +#: guix-git/doc/guix.texi:25474 #, no-wrap msgid "{Scheme Variable} darkstat-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25117 +#: guix-git/doc/guix.texi:25479 msgid "This is the service type for the @uref{https://unix4lyfe.org/darkstat/, darkstat} service, its value must be a @code{darkstat-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25122 +#: guix-git/doc/guix.texi:25484 #, no-wrap msgid "" "(service darkstat-service-type\n" @@ -44798,715 +45385,727 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25125 +#: guix-git/doc/guix.texi:25487 #, no-wrap msgid "{Data Type} darkstat-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25127 +#: guix-git/doc/guix.texi:25489 msgid "Data type representing the configuration of @command{darkstat}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25129 +#: guix-git/doc/guix.texi:25491 #, no-wrap msgid "@code{package} (default: @code{darkstat})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25131 +#: guix-git/doc/guix.texi:25493 msgid "The darkstat package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25132 +#: guix-git/doc/guix.texi:25494 #, no-wrap msgid "interface" -msgstr "" +msgstr "interface" #. type: table -#: guix-git/doc/guix.texi:25134 +#: guix-git/doc/guix.texi:25496 msgid "Capture traffic on the specified network interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25135 +#: guix-git/doc/guix.texi:25497 #, no-wrap msgid "@code{port} (default: @code{\"667\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25137 +#: guix-git/doc/guix.texi:25499 msgid "Bind the web interface to the specified port." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25140 guix-git/doc/guix.texi:25175 +#: guix-git/doc/guix.texi:25502 guix-git/doc/guix.texi:25537 msgid "Bind the web interface to the specified address." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25141 +#: guix-git/doc/guix.texi:25503 #, no-wrap msgid "@code{base} (default: @code{\"/\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25144 +#: guix-git/doc/guix.texi:25506 msgid "Specify the path of the base URL@. This can be useful if @command{darkstat} is accessed via a reverse proxy." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25148 +#: guix-git/doc/guix.texi:25510 #, no-wrap msgid "Prometheus Node Exporter Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25150 +#: guix-git/doc/guix.texi:25512 #, no-wrap msgid "prometheus-node-exporter" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25155 +#: guix-git/doc/guix.texi:25517 msgid "The Prometheus ``node exporter'' makes hardware and operating system statistics provided by the Linux kernel available for the Prometheus monitoring system. This service should be deployed on all physical nodes and virtual machines, where monitoring these statistics is desirable." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25156 +#: guix-git/doc/guix.texi:25518 #, no-wrap msgid "{Scheme variable} prometheus-node-exporter-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25160 +#: guix-git/doc/guix.texi:25522 msgid "This is the service type for the @uref{https://github.com/prometheus/node_exporter/, prometheus-node-exporter} service, its value must be a @code{prometheus-node-exporter-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25163 +#: guix-git/doc/guix.texi:25525 #, no-wrap msgid "(service prometheus-node-exporter-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25166 +#: guix-git/doc/guix.texi:25528 #, no-wrap msgid "{Data Type} prometheus-node-exporter-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25168 +#: guix-git/doc/guix.texi:25530 msgid "Data type representing the configuration of @command{node_exporter}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25170 +#: guix-git/doc/guix.texi:25532 #, no-wrap msgid "@code{package} (default: @code{go-github-com-prometheus-node-exporter})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25172 +#: guix-git/doc/guix.texi:25534 msgid "The prometheus-node-exporter package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25173 +#: guix-git/doc/guix.texi:25535 #, no-wrap msgid "@code{web-listen-address} (default: @code{\":9100\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25176 +#: guix-git/doc/guix.texi:25538 #, no-wrap msgid "@code{textfile-directory} (default: @code{\"/var/lib/prometheus/node-exporter\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25180 +#: guix-git/doc/guix.texi:25542 msgid "This directory can be used to export metrics specific to this machine. Files containing metrics in the text format, with the filename ending in @code{.prom} should be placed in this directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25183 +#: guix-git/doc/guix.texi:25545 msgid "Extra options to pass to the Prometheus node exporter." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25187 +#: guix-git/doc/guix.texi:25549 #, no-wrap msgid "Zabbix server" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25188 +#: guix-git/doc/guix.texi:25550 #, no-wrap msgid "zabbix zabbix-server" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25191 +#: guix-git/doc/guix.texi:25553 msgid "Zabbix provides monitoring metrics, among others network utilization, CPU load and disk space consumption:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25193 +#: guix-git/doc/guix.texi:25555 #, no-wrap msgid "High performance, high capacity (able to monitor hundreds of thousands of devices)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25194 +#: guix-git/doc/guix.texi:25556 #, no-wrap msgid "Auto-discovery of servers and network devices and interfaces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25195 +#: guix-git/doc/guix.texi:25557 #, no-wrap msgid "Low-level discovery, allows to automatically start monitoring new items, file systems or network interfaces among others." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25196 +#: guix-git/doc/guix.texi:25558 #, no-wrap msgid "Distributed monitoring with centralized web administration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25197 +#: guix-git/doc/guix.texi:25559 #, no-wrap msgid "Native high performance agents." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25198 +#: guix-git/doc/guix.texi:25560 #, no-wrap msgid "SLA, and ITIL KPI metrics on reporting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25199 +#: guix-git/doc/guix.texi:25561 #, no-wrap msgid "High-level (business) view of monitored resources through user-defined visual console screens and dashboards." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25200 +#: guix-git/doc/guix.texi:25562 #, no-wrap msgid "Remote command execution through Zabbix proxies." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25206 +#: guix-git/doc/guix.texi:25568 msgid "Available @code{zabbix-server-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25207 +#: guix-git/doc/guix.texi:25569 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} package zabbix-server" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25209 +#: guix-git/doc/guix.texi:25571 msgid "The zabbix-server package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25212 +#: guix-git/doc/guix.texi:25574 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25214 +#: guix-git/doc/guix.texi:25576 msgid "User who will run the Zabbix server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25216 guix-git/doc/guix.texi:25223 -#: guix-git/doc/guix.texi:25237 guix-git/doc/guix.texi:25244 -#: guix-git/doc/guix.texi:25345 guix-git/doc/guix.texi:25352 -#: guix-git/doc/guix.texi:25463 guix-git/doc/guix.texi:25470 +#: guix-git/doc/guix.texi:25578 guix-git/doc/guix.texi:25585 +#: guix-git/doc/guix.texi:25599 guix-git/doc/guix.texi:25606 +#: guix-git/doc/guix.texi:25707 guix-git/doc/guix.texi:25714 msgid "Defaults to @samp{\"zabbix\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25219 +#: guix-git/doc/guix.texi:25581 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} group group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25221 +#: guix-git/doc/guix.texi:25583 msgid "Group who will run the Zabbix server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25226 +#: guix-git/doc/guix.texi:25588 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-host" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25228 guix-git/doc/guix.texi:25447 +#. type: table +#: guix-git/doc/guix.texi:25590 guix-git/doc/guix.texi:25813 msgid "Database host name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25230 +#: guix-git/doc/guix.texi:25592 msgid "Defaults to @samp{\"127.0.0.1\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25233 +#: guix-git/doc/guix.texi:25595 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-name" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25235 guix-git/doc/guix.texi:25461 +#. type: table +#: guix-git/doc/guix.texi:25597 guix-git/doc/guix.texi:25819 msgid "Database name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25240 +#: guix-git/doc/guix.texi:25602 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-user" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25242 guix-git/doc/guix.texi:25468 +#. type: table +#: guix-git/doc/guix.texi:25604 guix-git/doc/guix.texi:25822 msgid "Database user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25247 +#: guix-git/doc/guix.texi:25609 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-password" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25250 +#: guix-git/doc/guix.texi:25612 msgid "Database password. Please, use @code{include-files} with @code{DBPassword=SECRET} inside a specified file instead." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25255 +#: guix-git/doc/guix.texi:25617 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} number db-port" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25257 guix-git/doc/guix.texi:25454 +#. type: table +#: guix-git/doc/guix.texi:25619 guix-git/doc/guix.texi:25816 msgid "Database port." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25259 guix-git/doc/guix.texi:25456 +#: guix-git/doc/guix.texi:25621 msgid "Defaults to @samp{5432}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25262 +#: guix-git/doc/guix.texi:25624 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string log-type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25264 guix-git/doc/guix.texi:25365 +#: guix-git/doc/guix.texi:25626 guix-git/doc/guix.texi:25727 msgid "Specifies where log messages are written to:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25268 guix-git/doc/guix.texi:25369 +#: guix-git/doc/guix.texi:25630 guix-git/doc/guix.texi:25731 msgid "@code{system} - syslog." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25271 guix-git/doc/guix.texi:25372 +#: guix-git/doc/guix.texi:25633 guix-git/doc/guix.texi:25734 msgid "@code{file} - file specified with @code{log-file} parameter." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25274 guix-git/doc/guix.texi:25375 +#: guix-git/doc/guix.texi:25636 guix-git/doc/guix.texi:25737 msgid "@code{console} - standard output." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25281 +#: guix-git/doc/guix.texi:25643 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string log-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25283 guix-git/doc/guix.texi:25384 +#: guix-git/doc/guix.texi:25645 guix-git/doc/guix.texi:25746 msgid "Log file name for @code{log-type} @code{file} parameter." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25285 +#: guix-git/doc/guix.texi:25647 msgid "Defaults to @samp{\"/var/log/zabbix/server.log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25288 +#: guix-git/doc/guix.texi:25650 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25290 guix-git/doc/guix.texi:25391 +#: guix-git/doc/guix.texi:25652 guix-git/doc/guix.texi:25753 msgid "Name of PID file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25292 +#: guix-git/doc/guix.texi:25654 msgid "Defaults to @samp{\"/var/run/zabbix/zabbix_server.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25295 +#: guix-git/doc/guix.texi:25657 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string ssl-ca-location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25298 +#: guix-git/doc/guix.texi:25660 msgid "The location of certificate authority (CA) files for SSL server certificate verification." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25300 +#: guix-git/doc/guix.texi:25662 msgid "Defaults to @samp{\"/etc/ssl/certs/ca-certificates.crt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25303 +#: guix-git/doc/guix.texi:25665 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string ssl-cert-location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25305 +#: guix-git/doc/guix.texi:25667 msgid "Location of SSL client certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25307 +#: guix-git/doc/guix.texi:25669 msgid "Defaults to @samp{\"/etc/ssl/certs\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25310 +#: guix-git/doc/guix.texi:25672 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25312 guix-git/doc/guix.texi:25416 +#: guix-git/doc/guix.texi:25674 guix-git/doc/guix.texi:25778 msgid "Extra options will be appended to Zabbix server configuration file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25317 +#: guix-git/doc/guix.texi:25679 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} include-files include-files" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25320 guix-git/doc/guix.texi:25424 +#: guix-git/doc/guix.texi:25682 guix-git/doc/guix.texi:25786 msgid "You may include individual files or all files in a directory in the configuration file." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25327 +#: guix-git/doc/guix.texi:25689 #, no-wrap msgid "Zabbix agent" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25328 +#: guix-git/doc/guix.texi:25690 #, no-wrap msgid "zabbix zabbix-agent" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25331 +#: guix-git/doc/guix.texi:25693 msgid "Zabbix agent gathers information for Zabbix server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25335 +#: guix-git/doc/guix.texi:25697 msgid "Available @code{zabbix-agent-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25336 +#: guix-git/doc/guix.texi:25698 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} package zabbix-agent" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25338 +#: guix-git/doc/guix.texi:25700 msgid "The zabbix-agent package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25341 +#: guix-git/doc/guix.texi:25703 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25343 +#: guix-git/doc/guix.texi:25705 msgid "User who will run the Zabbix agent." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25348 +#: guix-git/doc/guix.texi:25710 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} group group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25350 +#: guix-git/doc/guix.texi:25712 msgid "Group who will run the Zabbix agent." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25355 +#: guix-git/doc/guix.texi:25717 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string hostname" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25358 +#: guix-git/doc/guix.texi:25720 msgid "Unique, case sensitive hostname which is required for active checks and must match hostname as configured on the server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25363 +#: guix-git/doc/guix.texi:25725 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string log-type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25382 +#: guix-git/doc/guix.texi:25744 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string log-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25386 +#: guix-git/doc/guix.texi:25748 msgid "Defaults to @samp{\"/var/log/zabbix/agent.log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25389 +#: guix-git/doc/guix.texi:25751 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25393 +#: guix-git/doc/guix.texi:25755 msgid "Defaults to @samp{\"/var/run/zabbix/zabbix_agent.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25396 +#: guix-git/doc/guix.texi:25758 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} list server" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25400 +#: guix-git/doc/guix.texi:25762 msgid "List of IP addresses, optionally in CIDR notation, or hostnames of Zabbix servers and Zabbix proxies. Incoming connections will be accepted only from the hosts listed here." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25402 guix-git/doc/guix.texi:25411 +#: guix-git/doc/guix.texi:25764 guix-git/doc/guix.texi:25773 msgid "Defaults to @samp{(\"127.0.0.1\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25405 +#: guix-git/doc/guix.texi:25767 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} list server-active" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25409 +#: guix-git/doc/guix.texi:25771 msgid "List of IP:port (or hostname:port) pairs of Zabbix servers and Zabbix proxies for active checks. If port is not specified, default port is used. If this parameter is not specified, active checks are disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25414 +#: guix-git/doc/guix.texi:25776 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25421 +#: guix-git/doc/guix.texi:25783 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} include-files include-files" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25431 +#: guix-git/doc/guix.texi:25793 #, no-wrap msgid "Zabbix front-end" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25432 +#: guix-git/doc/guix.texi:25794 #, no-wrap msgid "zabbix zabbix-front-end" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25435 +#: guix-git/doc/guix.texi:25797 msgid "This service provides a WEB interface to Zabbix server." msgstr "" -#. type: Plain text -#: guix-git/doc/guix.texi:25439 +#. type: deftp +#: guix-git/doc/guix.texi:25800 +#, fuzzy, no-wrap +#| msgid "{Data Type} gitile-configuration" +msgid "{Data Type} zabbix-front-end-configuration" +msgstr "{Druh údajov} gitile-configuration" + +#. type: deftp +#: guix-git/doc/guix.texi:25802 msgid "Available @code{zabbix-front-end-configuration} fields are:" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25440 +#. type: item +#: guix-git/doc/guix.texi:25804 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} nginx-server-configuration-list nginx" +msgid "@code{zabbix-server} (default: @code{zabbix-server}) (type: file-like)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25442 guix-git/doc/guix.texi:31735 -msgid "NGINX configuration." +#. type: table +#: guix-git/doc/guix.texi:25806 +msgid "The Zabbix server package to use." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25445 +#. type: item +#: guix-git/doc/guix.texi:25807 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-host" +msgid "@code{fastcgi-params} (type: list)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25452 +#. type: table +#: guix-git/doc/guix.texi:25810 +msgid "List of FastCGI parameter pairs that will be included in the NGINX configuration." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:25811 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} number db-port" +msgid "@code{db-host} (default: @code{\\\"localhost\\\"}) (type: string)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25459 +#. type: item +#: guix-git/doc/guix.texi:25814 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-name" +msgid "@code{db-port} (default: @code{5432}) (type: number)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25466 +#. type: item +#: guix-git/doc/guix.texi:25817 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-user" +msgid "@code{db-name} (default: @code{\\\"zabbix\\\"}) (type: string)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25473 +#. type: item +#: guix-git/doc/guix.texi:25820 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-password" +msgid "@code{db-user} (default: @code{\\\"zabbix\\\"}) (type: string)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25475 +#. type: item +#: guix-git/doc/guix.texi:25823 +#, no-wrap +msgid "@code{db-password} (default: @code{\\\"\\\"}) (type: string)" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:25825 msgid "Database password. Please, use @code{db-secret-file} instead." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25480 +#. type: item +#: guix-git/doc/guix.texi:25826 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-secret-file" +msgid "@code{db-secret-file} (default: @code{\\\"\\\"}) (type: string)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25485 -msgid "Secret file containing the credentials for the Zabbix front-end. The value must be a local file name, not a G-expression. You are expected to create this file manually. Its contents will be copied into @file{zabbix.conf.php} as the value of @code{$DB['PASSWORD']}." +#. type: table +#: guix-git/doc/guix.texi:25830 +msgid "Secret file which will be appended to @file{zabbix.conf.php} file. This file contains credentials for use by Zabbix front-end. You are expected to create it manually." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25490 +#. type: item +#: guix-git/doc/guix.texi:25831 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string zabbix-host" +msgid "@code{zabbix-host} (default: @code{\\\"localhost\\\"}) (type: string)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25492 +#. type: table +#: guix-git/doc/guix.texi:25833 msgid "Zabbix server hostname." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25497 +#. type: item +#: guix-git/doc/guix.texi:25834 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} number zabbix-port" +msgid "@code{zabbix-port} (default: @code{10051}) (type: number)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25499 +#. type: table +#: guix-git/doc/guix.texi:25836 msgid "Zabbix server port." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25501 -msgid "Defaults to @samp{10051}." -msgstr "" - #. type: cindex -#: guix-git/doc/guix.texi:25509 +#: guix-git/doc/guix.texi:25846 #, no-wrap msgid "Kerberos" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25513 +#: guix-git/doc/guix.texi:25850 msgid "The @code{(gnu services kerberos)} module provides services relating to the authentication protocol @dfn{Kerberos}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25514 +#: guix-git/doc/guix.texi:25851 #, no-wrap msgid "Krb5 Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25521 +#: guix-git/doc/guix.texi:25858 msgid "Programs using a Kerberos client library normally expect a configuration file in @file{/etc/krb5.conf}. This service generates such a file from a definition provided in the operating system declaration. It does not cause any daemon to be started." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25525 +#: guix-git/doc/guix.texi:25862 msgid "No ``keytab'' files are provided by this service---you must explicitly create them. This service is known to work with the MIT client library, @code{mit-krb5}. Other implementations have not been tested." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25526 +#: guix-git/doc/guix.texi:25863 #, no-wrap msgid "{Scheme Variable} krb5-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25528 +#: guix-git/doc/guix.texi:25865 msgid "A service type for Kerberos 5 clients." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25532 +#: guix-git/doc/guix.texi:25869 msgid "Here is an example of its use:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25546 +#: guix-git/doc/guix.texi:25883 #, no-wrap msgid "" "(service krb5-service-type\n" @@ -45525,206 +46124,206 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25550 +#: guix-git/doc/guix.texi:25887 msgid "This example provides a Kerberos@tie{}5 client configuration which:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25551 +#: guix-git/doc/guix.texi:25888 #, no-wrap msgid "Recognizes two realms, @i{viz:} ``EXAMPLE.COM'' and ``ARGRX.EDU'', both" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25553 +#: guix-git/doc/guix.texi:25890 msgid "of which have distinct administration servers and key distribution centers;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25553 +#: guix-git/doc/guix.texi:25890 #, no-wrap msgid "Will default to the realm ``EXAMPLE.COM'' if the realm is not explicitly" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25555 +#: guix-git/doc/guix.texi:25892 msgid "specified by clients;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25555 +#: guix-git/doc/guix.texi:25892 #, no-wrap msgid "Accepts services which only support encryption types known to be weak." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25563 +#: guix-git/doc/guix.texi:25900 msgid "The @code{krb5-realm} and @code{krb5-configuration} types have many fields. Only the most commonly used ones are described here. For a full list, and more detailed explanation of each, see the MIT @uref{https://web.mit.edu/kerberos/krb5-devel/doc/admin/conf_files/krb5_conf.html,,krb5.conf} documentation." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25565 +#: guix-git/doc/guix.texi:25902 #, no-wrap msgid "{Data Type} krb5-realm" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25566 +#: guix-git/doc/guix.texi:25903 #, no-wrap msgid "realm, kerberos" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25572 +#: guix-git/doc/guix.texi:25909 msgid "This field is a string identifying the name of the realm. A common convention is to use the fully qualified DNS name of your organization, converted to upper case." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25573 +#: guix-git/doc/guix.texi:25910 #, no-wrap msgid "admin-server" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25576 +#: guix-git/doc/guix.texi:25913 msgid "This field is a string identifying the host where the administration server is running." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25577 +#: guix-git/doc/guix.texi:25914 #, no-wrap msgid "kdc" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25580 +#: guix-git/doc/guix.texi:25917 msgid "This field is a string identifying the key distribution center for the realm." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25583 +#: guix-git/doc/guix.texi:25920 #, no-wrap msgid "{Data Type} krb5-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25586 +#: guix-git/doc/guix.texi:25923 #, no-wrap msgid "@code{allow-weak-crypto?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25589 +#: guix-git/doc/guix.texi:25926 msgid "If this flag is @code{#t} then services which only offer encryption algorithms known to be weak will be accepted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25590 +#: guix-git/doc/guix.texi:25927 #, no-wrap msgid "@code{default-realm} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25597 +#: guix-git/doc/guix.texi:25934 msgid "This field should be a string identifying the default Kerberos realm for the client. You should set this field to the name of your Kerberos realm. If this value is @code{#f} then a realm must be specified with every Kerberos principal when invoking programs such as @command{kinit}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25598 +#: guix-git/doc/guix.texi:25935 #, no-wrap msgid "realms" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25603 +#: guix-git/doc/guix.texi:25940 msgid "This should be a non-empty list of @code{krb5-realm} objects, which clients may access. Normally, one of them will have a @code{name} field matching the @code{default-realm} field." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25607 +#: guix-git/doc/guix.texi:25944 #, no-wrap msgid "PAM krb5 Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25608 +#: guix-git/doc/guix.texi:25945 #, no-wrap msgid "pam-krb5" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25614 +#: guix-git/doc/guix.texi:25951 msgid "The @code{pam-krb5} service allows for login authentication and password management via Kerberos. You will need this service if you want PAM enabled applications to authenticate users using Kerberos." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25615 +#: guix-git/doc/guix.texi:25952 #, no-wrap msgid "{Scheme Variable} pam-krb5-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25617 +#: guix-git/doc/guix.texi:25954 msgid "A service type for the Kerberos 5 PAM module." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25619 +#: guix-git/doc/guix.texi:25956 #, no-wrap msgid "{Data Type} pam-krb5-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25622 +#: guix-git/doc/guix.texi:25959 msgid "Data type representing the configuration of the Kerberos 5 PAM module. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25623 +#: guix-git/doc/guix.texi:25960 #, no-wrap msgid "@code{pam-krb5} (default: @code{pam-krb5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25625 +#: guix-git/doc/guix.texi:25962 msgid "The pam-krb5 package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25626 +#: guix-git/doc/guix.texi:25963 #, no-wrap msgid "@code{minimum-uid} (default: @code{1000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25629 +#: guix-git/doc/guix.texi:25966 msgid "The smallest user ID for which Kerberos authentications should be attempted. Local accounts with lower values will silently fail to authenticate." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25635 +#: guix-git/doc/guix.texi:25972 #, no-wrap msgid "LDAP" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25636 +#: guix-git/doc/guix.texi:25973 #, no-wrap msgid "nslcd, LDAP service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25643 +#: guix-git/doc/guix.texi:25980 msgid "The @code{(gnu services authentication)} module provides the @code{nslcd-service-type}, which can be used to authenticate against an LDAP server. In addition to configuring the service itself, you may want to add @code{ldap} as a name service to the Name Service Switch. @xref{Name Service Switch} for detailed information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25647 +#: guix-git/doc/guix.texi:25984 msgid "Here is a simple operating system declaration with a default configuration of the @code{nslcd-service-type} and a Name Service Switch configuration that consults the @code{ldap} name service last:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25670 +#: guix-git/doc/guix.texi:26007 #, no-wrap msgid "" "(use-service-modules authentication)\n" @@ -45751,643 +46350,643 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25675 +#: guix-git/doc/guix.texi:26012 msgid "Available @code{nslcd-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25676 +#: guix-git/doc/guix.texi:26013 #, no-wrap msgid "{@code{nslcd-configuration} parameter} package nss-pam-ldapd" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25678 +#: guix-git/doc/guix.texi:26015 msgid "The @code{nss-pam-ldapd} package to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25681 +#: guix-git/doc/guix.texi:26018 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number threads" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25685 +#: guix-git/doc/guix.texi:26022 msgid "The number of threads to start that can handle requests and perform LDAP queries. Each thread opens a separate connection to the LDAP server. The default is to start 5 threads." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25690 +#: guix-git/doc/guix.texi:26027 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25692 +#: guix-git/doc/guix.texi:26029 msgid "This specifies the user id with which the daemon should be run." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25694 guix-git/doc/guix.texi:25701 +#: guix-git/doc/guix.texi:26031 guix-git/doc/guix.texi:26038 msgid "Defaults to @samp{\"nslcd\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25697 +#: guix-git/doc/guix.texi:26034 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25699 +#: guix-git/doc/guix.texi:26036 msgid "This specifies the group id with which the daemon should be run." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25704 +#: guix-git/doc/guix.texi:26041 #, no-wrap msgid "{@code{nslcd-configuration} parameter} log-option log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25712 +#: guix-git/doc/guix.texi:26049 msgid "This option controls the way logging is done via a list containing SCHEME and LEVEL@. The SCHEME argument may either be the symbols @samp{none} or @samp{syslog}, or an absolute file name. The LEVEL argument is optional and specifies the log level. The log level may be one of the following symbols: @samp{crit}, @samp{error}, @samp{warning}, @samp{notice}, @samp{info} or @samp{debug}. All messages with the specified log level or higher are logged." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25714 +#: guix-git/doc/guix.texi:26051 msgid "Defaults to @samp{(\"/var/log/nslcd\" info)}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25717 +#: guix-git/doc/guix.texi:26054 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list uri" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25720 +#: guix-git/doc/guix.texi:26057 msgid "The list of LDAP server URIs. Normally, only the first server will be used with the following servers as fall-back." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25722 +#: guix-git/doc/guix.texi:26059 msgid "Defaults to @samp{(\"ldap://localhost:389/\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25725 +#: guix-git/doc/guix.texi:26062 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string ldap-version" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25728 +#: guix-git/doc/guix.texi:26065 msgid "The version of the LDAP protocol to use. The default is to use the maximum version supported by the LDAP library." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25733 +#: guix-git/doc/guix.texi:26070 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string binddn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25736 +#: guix-git/doc/guix.texi:26073 msgid "Specifies the distinguished name with which to bind to the directory server for lookups. The default is to bind anonymously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25741 +#: guix-git/doc/guix.texi:26078 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string bindpw" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25744 +#: guix-git/doc/guix.texi:26081 msgid "Specifies the credentials with which to bind. This option is only applicable when used with binddn." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25749 +#: guix-git/doc/guix.texi:26086 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string rootpwmoddn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25752 +#: guix-git/doc/guix.texi:26089 msgid "Specifies the distinguished name to use when the root user tries to modify a user's password using the PAM module." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25757 +#: guix-git/doc/guix.texi:26094 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string rootpwmodpw" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25761 +#: guix-git/doc/guix.texi:26098 msgid "Specifies the credentials with which to bind if the root user tries to change a user's password. This option is only applicable when used with rootpwmoddn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25766 +#: guix-git/doc/guix.texi:26103 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-mech" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25769 +#: guix-git/doc/guix.texi:26106 msgid "Specifies the SASL mechanism to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25774 +#: guix-git/doc/guix.texi:26111 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-realm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25776 +#: guix-git/doc/guix.texi:26113 msgid "Specifies the SASL realm to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25781 +#: guix-git/doc/guix.texi:26118 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-authcid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25784 +#: guix-git/doc/guix.texi:26121 msgid "Specifies the authentication identity to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25789 +#: guix-git/doc/guix.texi:26126 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-authzid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25792 +#: guix-git/doc/guix.texi:26129 msgid "Specifies the authorization identity to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25797 +#: guix-git/doc/guix.texi:26134 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean sasl-canonicalize?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25802 +#: guix-git/doc/guix.texi:26139 msgid "Determines whether the LDAP server host name should be canonicalised. If this is enabled the LDAP library will do a reverse host name lookup. By default, it is left up to the LDAP library whether this check is performed or not." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25807 +#: guix-git/doc/guix.texi:26144 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string krb5-ccname" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25809 +#: guix-git/doc/guix.texi:26146 msgid "Set the name for the GSS-API Kerberos credentials cache." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25814 +#: guix-git/doc/guix.texi:26151 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string base" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25816 +#: guix-git/doc/guix.texi:26153 msgid "The directory search base." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25818 +#: guix-git/doc/guix.texi:26155 msgid "Defaults to @samp{\"dc=example,dc=com\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25821 +#: guix-git/doc/guix.texi:26158 #, no-wrap msgid "{@code{nslcd-configuration} parameter} scope-option scope" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25825 +#: guix-git/doc/guix.texi:26162 msgid "Specifies the search scope (subtree, onelevel, base or children). The default scope is subtree; base scope is almost never useful for name service lookups; children scope is not supported on all servers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25827 +#: guix-git/doc/guix.texi:26164 msgid "Defaults to @samp{(subtree)}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25830 +#: guix-git/doc/guix.texi:26167 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-deref-option deref" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25833 +#: guix-git/doc/guix.texi:26170 msgid "Specifies the policy for dereferencing aliases. The default policy is to never dereference aliases." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25838 +#: guix-git/doc/guix.texi:26175 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean referrals" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25841 +#: guix-git/doc/guix.texi:26178 msgid "Specifies whether automatic referral chasing should be enabled. The default behaviour is to chase referrals." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25846 +#: guix-git/doc/guix.texi:26183 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list-of-map-entries maps" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25851 +#: guix-git/doc/guix.texi:26188 msgid "This option allows for custom attributes to be looked up instead of the default RFC 2307 attributes. It is a list of maps, each consisting of the name of a map, the RFC 2307 attribute to match and the query expression for the attribute as it is available in the directory." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25856 +#: guix-git/doc/guix.texi:26193 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list-of-filter-entries filters" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25859 +#: guix-git/doc/guix.texi:26196 msgid "A list of filters consisting of the name of a map to which the filter applies and an LDAP search filter expression." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25864 +#: guix-git/doc/guix.texi:26201 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number bind-timelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25867 +#: guix-git/doc/guix.texi:26204 msgid "Specifies the time limit in seconds to use when connecting to the directory server. The default value is 10 seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25872 +#: guix-git/doc/guix.texi:26209 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number timelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25876 +#: guix-git/doc/guix.texi:26213 msgid "Specifies the time limit (in seconds) to wait for a response from the LDAP server. A value of zero, which is the default, is to wait indefinitely for searches to be completed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25881 +#: guix-git/doc/guix.texi:26218 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number idle-timelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25885 +#: guix-git/doc/guix.texi:26222 msgid "Specifies the period if inactivity (in seconds) after which the con‐ nection to the LDAP server will be closed. The default is not to time out connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25890 +#: guix-git/doc/guix.texi:26227 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number reconnect-sleeptime" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25894 +#: guix-git/doc/guix.texi:26231 msgid "Specifies the number of seconds to sleep when connecting to all LDAP servers fails. By default one second is waited between the first failure and the first retry." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25899 +#: guix-git/doc/guix.texi:26236 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number reconnect-retrytime" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25903 +#: guix-git/doc/guix.texi:26240 msgid "Specifies the time after which the LDAP server is considered to be permanently unavailable. Once this time is reached retries will be done only once per this time period. The default value is 10 seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25908 +#: guix-git/doc/guix.texi:26245 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-ssl-option ssl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25912 +#: guix-git/doc/guix.texi:26249 msgid "Specifies whether to use SSL/TLS or not (the default is not to). If 'start-tls is specified then StartTLS is used rather than raw LDAP over SSL." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25917 +#: guix-git/doc/guix.texi:26254 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-tls-reqcert-option tls-reqcert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25920 +#: guix-git/doc/guix.texi:26257 msgid "Specifies what checks to perform on a server-supplied certificate. The meaning of the values is described in the ldap.conf(5) manual page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25925 +#: guix-git/doc/guix.texi:26262 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cacertdir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25928 +#: guix-git/doc/guix.texi:26265 msgid "Specifies the directory containing X.509 certificates for peer authen‐ tication. This parameter is ignored when using GnuTLS." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25933 +#: guix-git/doc/guix.texi:26270 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cacertfile" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25935 +#: guix-git/doc/guix.texi:26272 msgid "Specifies the path to the X.509 certificate for peer authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25940 +#: guix-git/doc/guix.texi:26277 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-randfile" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25943 +#: guix-git/doc/guix.texi:26280 msgid "Specifies the path to an entropy source. This parameter is ignored when using GnuTLS." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25948 +#: guix-git/doc/guix.texi:26285 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-ciphers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25950 +#: guix-git/doc/guix.texi:26287 msgid "Specifies the ciphers to use for TLS as a string." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25955 +#: guix-git/doc/guix.texi:26292 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25958 +#: guix-git/doc/guix.texi:26295 msgid "Specifies the path to the file containing the local certificate for client TLS authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25963 +#: guix-git/doc/guix.texi:26300 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-key" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25966 +#: guix-git/doc/guix.texi:26303 msgid "Specifies the path to the file containing the private key for client TLS authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25971 +#: guix-git/doc/guix.texi:26308 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number pagesize" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25975 +#: guix-git/doc/guix.texi:26312 msgid "Set this to a number greater than 0 to request paged results from the LDAP server in accordance with RFC2696. The default (0) is to not request paged results." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25980 +#: guix-git/doc/guix.texi:26317 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-ignore-users-option nss-initgroups-ignoreusers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25984 +#: guix-git/doc/guix.texi:26321 msgid "This option prevents group membership lookups through LDAP for the specified users. Alternatively, the value 'all-local may be used. With that value nslcd builds a full list of non-LDAP users on startup." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25989 +#: guix-git/doc/guix.texi:26326 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-min-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25992 +#: guix-git/doc/guix.texi:26329 msgid "This option ensures that LDAP users with a numeric user id lower than the specified value are ignored." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25997 +#: guix-git/doc/guix.texi:26334 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-uid-offset" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26000 +#: guix-git/doc/guix.texi:26337 msgid "This option specifies an offset that is added to all LDAP numeric user ids. This can be used to avoid user id collisions with local users." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26005 +#: guix-git/doc/guix.texi:26342 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-gid-offset" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26008 +#: guix-git/doc/guix.texi:26345 msgid "This option specifies an offset that is added to all LDAP numeric group ids. This can be used to avoid user id collisions with local groups." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26013 +#: guix-git/doc/guix.texi:26350 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-nested-groups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26019 +#: guix-git/doc/guix.texi:26356 msgid "If this option is set, the member attribute of a group may point to another group. Members of nested groups are also returned in the higher level group and parent groups are returned when finding groups for a specific user. The default is not to perform extra searches for nested groups." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26024 +#: guix-git/doc/guix.texi:26361 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-getgrent-skipmembers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26029 +#: guix-git/doc/guix.texi:26366 msgid "If this option is set, the group member list is not retrieved when looking up groups. Lookups for finding which groups a user belongs to will remain functional so the user will likely still get the correct groups assigned on login." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26034 +#: guix-git/doc/guix.texi:26371 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-disable-enumeration" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26040 +#: guix-git/doc/guix.texi:26377 msgid "If this option is set, functions which cause all user/group entries to be loaded from the directory will not succeed in doing so. This can dramatically reduce LDAP server load in situations where there are a great number of users and/or groups. This option is not recommended for most configurations." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26045 +#: guix-git/doc/guix.texi:26382 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string validnames" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26049 +#: guix-git/doc/guix.texi:26386 msgid "This option can be used to specify how user and group names are verified within the system. This pattern is used to check all user and group names that are requested and returned from LDAP." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26054 +#: guix-git/doc/guix.texi:26391 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean ignorecase" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26059 +#: guix-git/doc/guix.texi:26396 msgid "This specifies whether or not to perform searches using case-insensitive matching. Enabling this could open up the system to authorization bypass vulnerabilities and introduce nscd cache poisoning vulnerabilities which allow denial of service." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26064 +#: guix-git/doc/guix.texi:26401 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean pam-authc-ppolicy" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26067 +#: guix-git/doc/guix.texi:26404 msgid "This option specifies whether password policy controls are requested and handled from the LDAP server when performing user authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26072 +#: guix-git/doc/guix.texi:26409 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-authc-search" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26078 +#: guix-git/doc/guix.texi:26415 msgid "By default nslcd performs an LDAP search with the user's credentials after BIND (authentication) to ensure that the BIND operation was successful. The default search is a simple check to see if the user's DN exists. A search filter can be specified that will be used instead. It should return at least one entry." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26083 +#: guix-git/doc/guix.texi:26420 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-authz-search" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26087 +#: guix-git/doc/guix.texi:26424 msgid "This option allows flexible fine tuning of the authorisation check that should be performed. The search filter specified is executed and if any entries match, access is granted, otherwise access is denied." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26092 +#: guix-git/doc/guix.texi:26429 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-password-prohibit-message" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26097 +#: guix-git/doc/guix.texi:26434 msgid "If this option is set password modification using pam_ldap will be denied and the specified message will be presented to the user instead. The message can be used to direct the user to an alternative means of changing their password." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26102 +#: guix-git/doc/guix.texi:26439 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list pam-services" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26104 +#: guix-git/doc/guix.texi:26441 msgid "List of pam service names for which LDAP authentication should suffice." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26115 +#: guix-git/doc/guix.texi:26452 #, no-wrap msgid "web" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26116 +#: guix-git/doc/guix.texi:26453 #, no-wrap msgid "www" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26117 +#: guix-git/doc/guix.texi:26454 #, no-wrap msgid "HTTP" -msgstr "" +msgstr "HTTP" #. type: Plain text -#: guix-git/doc/guix.texi:26120 +#: guix-git/doc/guix.texi:26457 msgid "The @code{(gnu services web)} module provides the Apache HTTP Server, the nginx web server, and also a fastcgi wrapper daemon." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26121 +#: guix-git/doc/guix.texi:26458 #, no-wrap msgid "Apache HTTP Server" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26123 +#: guix-git/doc/guix.texi:26460 #, no-wrap msgid "{Scheme Variable} httpd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26127 +#: guix-git/doc/guix.texi:26464 msgid "Service type for the @uref{https://httpd.apache.org/,Apache HTTP} server (@dfn{httpd}). The value for this service type is a @code{httpd-configuration} record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26129 guix-git/doc/guix.texi:26311 +#: guix-git/doc/guix.texi:26466 guix-git/doc/guix.texi:26648 msgid "A simple example configuration is given below." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26137 +#: guix-git/doc/guix.texi:26474 #, no-wrap msgid "" "(service httpd-service-type\n" @@ -46399,12 +46998,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26141 +#: guix-git/doc/guix.texi:26478 msgid "Other services can also extend the @code{httpd-service-type} to add to the configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26150 guix-git/doc/guix.texi:26290 +#: guix-git/doc/guix.texi:26487 guix-git/doc/guix.texi:26627 #, no-wrap msgid "" "(simple-service 'www.example.com-server httpd-service-type\n" @@ -46417,115 +47016,115 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26156 +#: guix-git/doc/guix.texi:26493 msgid "The details for the @code{httpd-configuration}, @code{httpd-module}, @code{httpd-config-file} and @code{httpd-virtualhost} record types are given below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26157 +#: guix-git/doc/guix.texi:26494 #, no-wrap msgid "{Data Type} httpd-configuration" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26159 +#: guix-git/doc/guix.texi:26496 msgid "This data type represents the configuration for the httpd service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26161 +#: guix-git/doc/guix.texi:26498 #, no-wrap msgid "@code{package} (default: @code{httpd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26163 +#: guix-git/doc/guix.texi:26500 msgid "The httpd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26164 guix-git/doc/guix.texi:26253 +#: guix-git/doc/guix.texi:26501 guix-git/doc/guix.texi:26590 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/httpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26166 +#: guix-git/doc/guix.texi:26503 msgid "The pid file used by the shepherd-service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26167 +#: guix-git/doc/guix.texi:26504 #, no-wrap msgid "@code{config} (default: @code{(httpd-config-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26172 +#: guix-git/doc/guix.texi:26509 msgid "The configuration file to use with the httpd service. The default value is a @code{httpd-config-file} record, but this can also be a different G-expression that generates a file, for example a @code{plain-file}. A file outside of the store can also be specified through a string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26176 +#: guix-git/doc/guix.texi:26513 #, no-wrap msgid "{Data Type} httpd-module" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26178 +#: guix-git/doc/guix.texi:26515 msgid "This data type represents a module for the httpd service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26182 +#: guix-git/doc/guix.texi:26519 msgid "The name of the module." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26188 +#: guix-git/doc/guix.texi:26525 msgid "The file for the module. This can be relative to the httpd package being used, the absolute location of a file, or a G-expression for a file within the store, for example @code{(file-append mod-wsgi \"/modules/mod_wsgi.so\")}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26192 +#: guix-git/doc/guix.texi:26529 #, no-wrap msgid "{Scheme Variable} %default-httpd-modules" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26194 +#: guix-git/doc/guix.texi:26531 msgid "A default list of @code{httpd-module} objects." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26196 +#: guix-git/doc/guix.texi:26533 #, no-wrap msgid "{Data Type} httpd-config-file" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26198 +#: guix-git/doc/guix.texi:26535 msgid "This data type represents a configuration file for the httpd service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26200 +#: guix-git/doc/guix.texi:26537 #, no-wrap msgid "@code{modules} (default: @code{%default-httpd-modules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26203 +#: guix-git/doc/guix.texi:26540 msgid "The modules to load. Additional modules can be added here, or loaded by additional configuration." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26206 +#: guix-git/doc/guix.texi:26543 msgid "For example, in order to handle requests for PHP files, you can use Apache’s @code{mod_proxy_fcgi} module along with @code{php-fpm-service-type}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26228 +#: guix-git/doc/guix.texi:26565 #, no-wrap msgid "" "(service httpd-service-type\n" @@ -46551,165 +47150,165 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26230 +#: guix-git/doc/guix.texi:26567 #, no-wrap msgid "@code{server-root} (default: @code{httpd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26234 +#: guix-git/doc/guix.texi:26571 msgid "The @code{ServerRoot} in the configuration file, defaults to the httpd package. Directives including @code{Include} and @code{LoadModule} are taken as relative to the server root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26235 +#: guix-git/doc/guix.texi:26572 #, no-wrap msgid "@code{server-name} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26239 +#: guix-git/doc/guix.texi:26576 msgid "The @code{ServerName} in the configuration file, used to specify the request scheme, hostname and port that the server uses to identify itself." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26243 +#: guix-git/doc/guix.texi:26580 msgid "This doesn't need to be set in the server config, and can be specified in virtual hosts. The default is @code{#f} to not specify a @code{ServerName}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26244 +#: guix-git/doc/guix.texi:26581 #, no-wrap msgid "@code{document-root} (default: @code{\"/srv/http\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26246 +#: guix-git/doc/guix.texi:26583 msgid "The @code{DocumentRoot} from which files will be served." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26247 +#: guix-git/doc/guix.texi:26584 #, no-wrap msgid "@code{listen} (default: @code{'(\"80\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26252 +#: guix-git/doc/guix.texi:26589 msgid "The list of values for the @code{Listen} directives in the config file. The value should be a list of strings, when each string can specify the port number to listen on, and optionally the IP address and protocol to use." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26257 +#: guix-git/doc/guix.texi:26594 msgid "The @code{PidFile} to use. This should match the @code{pid-file} set in the @code{httpd-configuration} so that the Shepherd service is configured correctly." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26258 +#: guix-git/doc/guix.texi:26595 #, no-wrap msgid "@code{error-log} (default: @code{\"/var/log/httpd/error_log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26260 +#: guix-git/doc/guix.texi:26597 msgid "The @code{ErrorLog} to which the server will log errors." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26261 guix-git/doc/guix.texi:26823 +#: guix-git/doc/guix.texi:26598 guix-git/doc/guix.texi:27160 #, no-wrap msgid "@code{user} (default: @code{\"httpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26263 +#: guix-git/doc/guix.texi:26600 msgid "The @code{User} which the server will answer requests as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26264 +#: guix-git/doc/guix.texi:26601 #, no-wrap msgid "@code{group} (default: @code{\"httpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26266 +#: guix-git/doc/guix.texi:26603 msgid "The @code{Group} which the server will answer requests as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26267 +#: guix-git/doc/guix.texi:26604 #, no-wrap msgid "@code{extra-config} (default: @code{(list \"TypesConfig etc/httpd/mime.types\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26270 +#: guix-git/doc/guix.texi:26607 msgid "A flat list of strings and G-expressions which will be added to the end of the configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26273 +#: guix-git/doc/guix.texi:26610 msgid "Any values which the service is extended with will be appended to this list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26277 +#: guix-git/doc/guix.texi:26614 #, no-wrap msgid "{Data Type} httpd-virtualhost" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26279 +#: guix-git/doc/guix.texi:26616 msgid "This data type represents a virtualhost configuration block for the httpd service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26281 +#: guix-git/doc/guix.texi:26618 msgid "These should be added to the extra-config for the httpd-service." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26293 +#: guix-git/doc/guix.texi:26630 #, no-wrap msgid "addresses-and-ports" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26295 +#: guix-git/doc/guix.texi:26632 msgid "The addresses and ports for the @code{VirtualHost} directive." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26296 +#: guix-git/doc/guix.texi:26633 #, no-wrap msgid "contents" -msgstr "" +msgstr "contents" #. type: table -#: guix-git/doc/guix.texi:26299 +#: guix-git/doc/guix.texi:26636 msgid "The contents of the @code{VirtualHost} directive, this should be a list of strings and G-expressions." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26304 +#: guix-git/doc/guix.texi:26641 #, no-wrap msgid "NGINX" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26306 +#: guix-git/doc/guix.texi:26643 #, no-wrap msgid "{Scheme Variable} nginx-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26309 +#: guix-git/doc/guix.texi:26646 msgid "Service type for the @uref{https://nginx.org/,NGinx} web server. The value for this service type is a @code{} record." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26319 guix-git/doc/guix.texi:26373 +#: guix-git/doc/guix.texi:26656 guix-git/doc/guix.texi:26710 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -46721,12 +47320,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26324 +#: guix-git/doc/guix.texi:26661 msgid "In addition to adding server blocks to the service configuration directly, this service can be extended by other services to add server blocks, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26330 +#: guix-git/doc/guix.texi:26667 #, no-wrap msgid "" "(simple-service 'my-extra-server nginx-service-type\n" @@ -46736,88 +47335,88 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26341 +#: guix-git/doc/guix.texi:26678 msgid "At startup, @command{nginx} has not yet read its configuration file, so it uses a default file to log error messages. If it fails to load its configuration file, that is where error messages are logged. After the configuration file is loaded, the default error log file changes as per configuration. In our case, startup error messages can be found in @file{/var/run/nginx/logs/error.log}, and after configuration in @file{/var/log/nginx/error.log}. The second location can be changed with the @var{log-directory} configuration option." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26342 +#: guix-git/doc/guix.texi:26679 #, no-wrap msgid "{Data Type} nginx-configuration" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26346 +#: guix-git/doc/guix.texi:26683 msgid "This data type represents the configuration for NGinx. Some configuration can be done through this and the other provided record types, or alternatively, a config file can be provided." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26348 +#: guix-git/doc/guix.texi:26685 #, no-wrap msgid "@code{nginx} (default: @code{nginx})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26350 +#: guix-git/doc/guix.texi:26687 msgid "The nginx package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26351 +#: guix-git/doc/guix.texi:26688 #, no-wrap msgid "@code{log-directory} (default: @code{\"/var/log/nginx\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26353 +#: guix-git/doc/guix.texi:26690 msgid "The directory to which NGinx will write log files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26354 +#: guix-git/doc/guix.texi:26691 #, no-wrap msgid "@code{run-directory} (default: @code{\"/var/run/nginx\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26357 +#: guix-git/doc/guix.texi:26694 msgid "The directory in which NGinx will create a pid file, and write temporary files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26358 +#: guix-git/doc/guix.texi:26695 #, no-wrap msgid "@code{server-blocks} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26362 +#: guix-git/doc/guix.texi:26699 msgid "A list of @dfn{server blocks} to create in the generated configuration file, the elements should be of type @code{}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26366 +#: guix-git/doc/guix.texi:26703 msgid "The following example would setup NGinx to serve @code{www.example.com} from the @code{/srv/http/www.example.com} directory, without using HTTPS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26375 +#: guix-git/doc/guix.texi:26712 #, no-wrap msgid "@code{upstream-blocks} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26379 +#: guix-git/doc/guix.texi:26716 msgid "A list of @dfn{upstream blocks} to create in the generated configuration file, the elements should be of type @code{}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26386 +#: guix-git/doc/guix.texi:26723 msgid "Configuring upstreams through the @code{upstream-blocks} can be useful when combined with @code{locations} in the @code{} records. The following example creates a server configuration with one location configuration, that will proxy requests to a upstream configuration, which will handle requests with two servers." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26405 +#: guix-git/doc/guix.texi:26742 #, no-wrap msgid "" "(service\n" @@ -46840,44 +47439,44 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26413 +#: guix-git/doc/guix.texi:26750 msgid "If a configuration @var{file} is provided, this will be used, rather than generating a configuration file from the provided @code{log-directory}, @code{run-directory}, @code{server-blocks} and @code{upstream-blocks}. For proper operation, these arguments should match what is in @var{file} to ensure that the directories are created when the service is activated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26417 +#: guix-git/doc/guix.texi:26754 msgid "This can be useful if you have an existing configuration file, or it's not possible to do what is required through the other parts of the nginx-configuration record." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26418 +#: guix-git/doc/guix.texi:26755 #, no-wrap msgid "@code{server-names-hash-bucket-size} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26421 +#: guix-git/doc/guix.texi:26758 msgid "Bucket size for the server names hash tables, defaults to @code{#f} to use the size of the processors cache line." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26422 +#: guix-git/doc/guix.texi:26759 #, no-wrap msgid "@code{server-names-hash-bucket-max-size} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26424 +#: guix-git/doc/guix.texi:26761 msgid "Maximum bucket size for the server names hash tables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26428 +#: guix-git/doc/guix.texi:26765 msgid "List of nginx dynamic modules to load. This should be a list of file names of loadable modules, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26436 +#: guix-git/doc/guix.texi:26773 #, no-wrap msgid "" "(modules\n" @@ -46889,18 +47488,18 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26438 +#: guix-git/doc/guix.texi:26775 #, no-wrap msgid "@code{lua-package-path} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26441 +#: guix-git/doc/guix.texi:26778 msgid "List of nginx lua packages to load. This should be a list of package names of loadable lua modules, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26448 +#: guix-git/doc/guix.texi:26785 #, no-wrap msgid "" "(lua-package-path (list lua-resty-core\n" @@ -46911,35 +47510,35 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26450 +#: guix-git/doc/guix.texi:26787 #, no-wrap msgid "@code{lua-package-cpath} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26453 +#: guix-git/doc/guix.texi:26790 msgid "List of nginx lua C packages to load. This should be a list of package names of loadable lua C modules, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26456 +#: guix-git/doc/guix.texi:26793 #, no-wrap msgid "(lua-package-cpath (list lua-resty-signal))\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26458 +#: guix-git/doc/guix.texi:26795 #, no-wrap msgid "@code{global-directives} (default: @code{'((events . ()))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26461 +#: guix-git/doc/guix.texi:26798 msgid "Association list of global directives for the top level of the nginx configuration. Values may themselves be association lists." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26467 +#: guix-git/doc/guix.texi:26804 #, no-wrap msgid "" "(global-directives\n" @@ -46949,312 +47548,312 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26472 +#: guix-git/doc/guix.texi:26809 msgid "Extra content for the @code{http} block. Should be string or a string valued G-expression." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26476 +#: guix-git/doc/guix.texi:26813 #, no-wrap msgid "{Data Type} nginx-server-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26479 +#: guix-git/doc/guix.texi:26816 msgid "Data type representing the configuration of an nginx server block. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26481 +#: guix-git/doc/guix.texi:26818 #, no-wrap msgid "@code{listen} (default: @code{'(\"80\" \"443 ssl\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26486 +#: guix-git/doc/guix.texi:26823 msgid "Each @code{listen} directive sets the address and port for IP, or the path for a UNIX-domain socket on which the server will accept requests. Both address and port, or only address or only port can be specified. An address may also be a hostname, for example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26489 +#: guix-git/doc/guix.texi:26826 #, no-wrap msgid "'(\"127.0.0.1:8000\" \"127.0.0.1\" \"8000\" \"*:8000\" \"localhost:8000\")\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26491 +#: guix-git/doc/guix.texi:26828 #, no-wrap msgid "@code{server-name} (default: @code{(list 'default)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26494 +#: guix-git/doc/guix.texi:26831 msgid "A list of server names this server represents. @code{'default} represents the default server for connections matching no other server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26495 +#: guix-git/doc/guix.texi:26832 #, no-wrap msgid "@code{root} (default: @code{\"/srv/http\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26497 +#: guix-git/doc/guix.texi:26834 msgid "Root of the website nginx will serve." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26498 +#: guix-git/doc/guix.texi:26835 #, no-wrap msgid "@code{locations} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26502 +#: guix-git/doc/guix.texi:26839 msgid "A list of @dfn{nginx-location-configuration} or @dfn{nginx-named-location-configuration} records to use within this server block." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26503 +#: guix-git/doc/guix.texi:26840 #, no-wrap msgid "@code{index} (default: @code{(list \"index.html\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26506 +#: guix-git/doc/guix.texi:26843 msgid "Index files to look for when clients ask for a directory. If it cannot be found, Nginx will send the list of files in the directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26507 +#: guix-git/doc/guix.texi:26844 #, no-wrap msgid "@code{try-files} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26510 +#: guix-git/doc/guix.texi:26847 msgid "A list of files whose existence is checked in the specified order. @code{nginx} will use the first file it finds to process the request." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26511 +#: guix-git/doc/guix.texi:26848 #, no-wrap msgid "@code{ssl-certificate} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26514 +#: guix-git/doc/guix.texi:26851 msgid "Where to find the certificate for secure connections. Set it to @code{#f} if you don't have a certificate or you don't want to use HTTPS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26515 +#: guix-git/doc/guix.texi:26852 #, no-wrap msgid "@code{ssl-certificate-key} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26518 +#: guix-git/doc/guix.texi:26855 msgid "Where to find the private key for secure connections. Set it to @code{#f} if you don't have a key or you don't want to use HTTPS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26519 +#: guix-git/doc/guix.texi:26856 #, no-wrap msgid "@code{server-tokens?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26521 +#: guix-git/doc/guix.texi:26858 msgid "Whether the server should add its configuration to response." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26522 +#: guix-git/doc/guix.texi:26859 #, no-wrap msgid "@code{raw-content} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26524 +#: guix-git/doc/guix.texi:26861 msgid "A list of raw lines added to the server block." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26528 +#: guix-git/doc/guix.texi:26865 #, no-wrap msgid "{Data Type} nginx-upstream-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26531 +#: guix-git/doc/guix.texi:26868 msgid "Data type representing the configuration of an nginx @code{upstream} block. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26535 +#: guix-git/doc/guix.texi:26872 msgid "Name for this group of servers." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26536 +#: guix-git/doc/guix.texi:26873 #, no-wrap msgid "servers" -msgstr "" +msgstr "servers" #. type: table -#: guix-git/doc/guix.texi:26543 +#: guix-git/doc/guix.texi:26880 msgid "Specify the addresses of the servers in the group. The address can be specified as a IP address (e.g.@: @samp{127.0.0.1}), domain name (e.g.@: @samp{backend1.example.com}) or a path to a UNIX socket using the prefix @samp{unix:}. For addresses using an IP address or domain name, the default port is 80, and a different port can be specified explicitly." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26547 +#: guix-git/doc/guix.texi:26884 #, no-wrap msgid "{Data Type} nginx-location-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26550 +#: guix-git/doc/guix.texi:26887 msgid "Data type representing the configuration of an nginx @code{location} block. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26554 +#: guix-git/doc/guix.texi:26891 msgid "URI which this location block matches." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:26556 +#: guix-git/doc/guix.texi:26893 msgid "nginx-location-configuration body" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26556 guix-git/doc/guix.texi:26577 +#: guix-git/doc/guix.texi:26893 guix-git/doc/guix.texi:26914 #, no-wrap msgid "body" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26563 +#: guix-git/doc/guix.texi:26900 msgid "Body of the location block, specified as a list of strings. This can contain many configuration directives. For example, to pass requests to a upstream server group defined using an @code{nginx-upstream-configuration} block, the following directive would be specified in the body @samp{(list \"proxy_pass http://upstream-name;\")}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26567 +#: guix-git/doc/guix.texi:26904 #, no-wrap msgid "{Data Type} nginx-named-location-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26572 +#: guix-git/doc/guix.texi:26909 msgid "Data type representing the configuration of an nginx named location block. Named location blocks are used for request redirection, and not used for regular request processing. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26576 +#: guix-git/doc/guix.texi:26913 msgid "Name to identify this location block." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26582 +#: guix-git/doc/guix.texi:26919 msgid "@xref{nginx-location-configuration body}, as the body for named location blocks can be used in a similar way to the @code{nginx-location-configuration body}. One restriction is that the body of a named location block cannot contain location blocks." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26586 +#: guix-git/doc/guix.texi:26923 #, no-wrap msgid "Varnish Cache" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26587 +#: guix-git/doc/guix.texi:26924 #, no-wrap msgid "Varnish" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26592 +#: guix-git/doc/guix.texi:26929 msgid "Varnish is a fast cache server that sits in between web applications and end users. It proxies requests from clients and caches the accessed URLs such that multiple requests for the same resource only creates one request to the back-end." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26593 +#: guix-git/doc/guix.texi:26930 #, no-wrap msgid "{Scheme Variable} varnish-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26595 +#: guix-git/doc/guix.texi:26932 msgid "Service type for the Varnish daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26597 +#: guix-git/doc/guix.texi:26934 #, no-wrap msgid "{Data Type} varnish-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26600 +#: guix-git/doc/guix.texi:26937 msgid "Data type representing the @code{varnish} service configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26602 +#: guix-git/doc/guix.texi:26939 #, no-wrap msgid "@code{package} (default: @code{varnish})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26604 +#: guix-git/doc/guix.texi:26941 msgid "The Varnish package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26605 +#: guix-git/doc/guix.texi:26942 #, no-wrap msgid "@code{name} (default: @code{\"default\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26610 +#: guix-git/doc/guix.texi:26947 msgid "A name for this Varnish instance. Varnish will create a directory in @file{/var/varnish/} with this name and keep temporary files there. If the name starts with a forward slash, it is interpreted as an absolute directory name." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26613 +#: guix-git/doc/guix.texi:26950 msgid "Pass the @code{-n} argument to other Varnish programs to connect to the named instance, e.g.@: @command{varnishncsa -n default}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26614 +#: guix-git/doc/guix.texi:26951 #, no-wrap msgid "@code{backend} (default: @code{\"localhost:8080\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26616 +#: guix-git/doc/guix.texi:26953 msgid "The backend to use. This option has no effect if @code{vcl} is set." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26617 +#: guix-git/doc/guix.texi:26954 #, no-wrap msgid "@code{vcl} (default: #f)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26622 +#: guix-git/doc/guix.texi:26959 msgid "The @dfn{VCL} (Varnish Configuration Language) program to run. If this is @code{#f}, Varnish will proxy @code{backend} using the default configuration. Otherwise this must be a file-like object with valid VCL syntax." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26626 +#: guix-git/doc/guix.texi:26963 msgid "For example, to mirror @url{https://www.gnu.org,www.gnu.org} with VCL you can do something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26632 +#: guix-git/doc/guix.texi:26969 #, no-wrap msgid "" "(define %gnu-mirror\n" @@ -47265,7 +47864,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26640 +#: guix-git/doc/guix.texi:26977 #, no-wrap msgid "" "(operating-system\n" @@ -47278,82 +47877,82 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26644 +#: guix-git/doc/guix.texi:26981 msgid "The configuration of an already running Varnish instance can be inspected and changed using the @command{varnishadm} program." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26648 +#: guix-git/doc/guix.texi:26985 msgid "Consult the @url{https://varnish-cache.org/docs/,Varnish User Guide} and @url{https://book.varnish-software.com/4.0/,Varnish Book} for comprehensive documentation on Varnish and its configuration language." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26649 +#: guix-git/doc/guix.texi:26986 #, no-wrap msgid "@code{listen} (default: @code{'(\"localhost:80\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26651 +#: guix-git/doc/guix.texi:26988 msgid "List of addresses Varnish will listen on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26652 +#: guix-git/doc/guix.texi:26989 #, no-wrap msgid "@code{storage} (default: @code{'(\"malloc,128m\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26654 +#: guix-git/doc/guix.texi:26991 msgid "List of storage backends that will be available in VCL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26655 +#: guix-git/doc/guix.texi:26992 #, no-wrap msgid "@code{parameters} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26657 +#: guix-git/doc/guix.texi:26994 msgid "List of run-time parameters in the form @code{'((\"parameter\" . \"value\"))}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26660 +#: guix-git/doc/guix.texi:26997 msgid "Additional arguments to pass to the @command{varnishd} process." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26664 guix-git/doc/guix.texi:26665 +#: guix-git/doc/guix.texi:27001 guix-git/doc/guix.texi:27002 #, no-wrap msgid "Patchwork" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26668 +#: guix-git/doc/guix.texi:27005 msgid "Patchwork is a patch tracking system. It can collect patches sent to a mailing list, and display them in a web interface." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26669 +#: guix-git/doc/guix.texi:27006 #, no-wrap msgid "{Scheme Variable} patchwork-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26671 +#: guix-git/doc/guix.texi:27008 msgid "Service type for Patchwork." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26675 +#: guix-git/doc/guix.texi:27012 msgid "The following example is an example of a minimal service for Patchwork, for the @code{patchwork.example.com} domain." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26695 +#: guix-git/doc/guix.texi:27032 #, no-wrap msgid "" "(service patchwork-service-type\n" @@ -47378,806 +47977,806 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26701 +#: guix-git/doc/guix.texi:27038 msgid "There are three records for configuring the Patchwork service. The @code{} relates to the configuration for Patchwork within the HTTPD service." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26705 +#: guix-git/doc/guix.texi:27042 msgid "The @code{settings-module} field within the @code{} record can be populated with the @code{} record, which describes a settings module that is generated within the Guix store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26709 +#: guix-git/doc/guix.texi:27046 msgid "For the @code{database-configuration} field within the @code{}, the @code{} must be used." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26710 +#: guix-git/doc/guix.texi:27047 #, no-wrap msgid "{Data Type} patchwork-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26713 +#: guix-git/doc/guix.texi:27050 msgid "Data type representing the Patchwork service configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26715 +#: guix-git/doc/guix.texi:27052 #, no-wrap msgid "@code{patchwork} (default: @code{patchwork})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26717 +#: guix-git/doc/guix.texi:27054 msgid "The Patchwork package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26718 +#: guix-git/doc/guix.texi:27055 #, no-wrap msgid "domain" -msgstr "" +msgstr "domain" #. type: table -#: guix-git/doc/guix.texi:26721 +#: guix-git/doc/guix.texi:27058 msgid "The domain to use for Patchwork, this is used in the HTTPD service virtual host." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26722 +#: guix-git/doc/guix.texi:27059 #, no-wrap msgid "settings-module" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26728 +#: guix-git/doc/guix.texi:27065 msgid "The settings module to use for Patchwork. As a Django application, Patchwork is configured with a Python module containing the settings. This can either be an instance of the @code{} record, any other record that represents the settings in the store, or a directory outside of the store." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26729 +#: guix-git/doc/guix.texi:27066 #, no-wrap msgid "@code{static-path} (default: @code{\"/static/\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26731 +#: guix-git/doc/guix.texi:27068 msgid "The path under which the HTTPD service should serve the static files." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26732 +#: guix-git/doc/guix.texi:27069 #, no-wrap msgid "getmail-retriever-config" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26736 +#: guix-git/doc/guix.texi:27073 msgid "The getmail-retriever-configuration record value to use with Patchwork. Getmail will be configured with this value, the messages will be delivered to Patchwork." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26740 +#: guix-git/doc/guix.texi:27077 #, no-wrap msgid "{Data Type} patchwork-settings-module" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26745 +#: guix-git/doc/guix.texi:27082 msgid "Data type representing a settings module for Patchwork. Some of these settings relate directly to Patchwork, but others relate to Django, the web framework used by Patchwork, or the Django Rest Framework library. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26747 +#: guix-git/doc/guix.texi:27084 #, no-wrap msgid "@code{database-configuration} (default: @code{(patchwork-database-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26750 +#: guix-git/doc/guix.texi:27087 msgid "The database connection settings used for Patchwork. See the @code{} record type for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26751 +#: guix-git/doc/guix.texi:27088 #, no-wrap msgid "@code{secret-key-file} (default: @code{\"/etc/patchwork/django-secret-key\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26754 +#: guix-git/doc/guix.texi:27091 msgid "Patchwork, as a Django web application uses a secret key for cryptographically signing values. This file should contain a unique unpredictable value." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26757 +#: guix-git/doc/guix.texi:27094 msgid "If this file does not exist, it will be created and populated with a random value by the patchwork-setup shepherd service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26759 +#: guix-git/doc/guix.texi:27096 msgid "This setting relates to Django." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26760 +#: guix-git/doc/guix.texi:27097 #, no-wrap msgid "allowed-hosts" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26763 +#: guix-git/doc/guix.texi:27100 msgid "A list of valid hosts for this Patchwork service. This should at least include the domain specified in the @code{} record." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26765 guix-git/doc/guix.texi:26779 -#: guix-git/doc/guix.texi:26785 guix-git/doc/guix.texi:26791 +#: guix-git/doc/guix.texi:27102 guix-git/doc/guix.texi:27116 +#: guix-git/doc/guix.texi:27122 guix-git/doc/guix.texi:27128 msgid "This is a Django setting." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26766 +#: guix-git/doc/guix.texi:27103 #, no-wrap msgid "default-from-email" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26768 +#: guix-git/doc/guix.texi:27105 msgid "The email address from which Patchwork should send email by default." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26770 guix-git/doc/guix.texi:26796 -#: guix-git/doc/guix.texi:26801 guix-git/doc/guix.texi:26806 +#: guix-git/doc/guix.texi:27107 guix-git/doc/guix.texi:27133 +#: guix-git/doc/guix.texi:27138 guix-git/doc/guix.texi:27143 msgid "This is a Patchwork setting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26771 +#: guix-git/doc/guix.texi:27108 #, no-wrap msgid "@code{static-url} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26774 +#: guix-git/doc/guix.texi:27111 msgid "The URL to use when serving static assets. It can be part of a URL, or a full URL, but must end in a @code{/}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26777 +#: guix-git/doc/guix.texi:27114 msgid "If the default value is used, the @code{static-path} value from the @code{} record will be used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26780 +#: guix-git/doc/guix.texi:27117 #, no-wrap msgid "@code{admins} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26783 +#: guix-git/doc/guix.texi:27120 msgid "Email addresses to send the details of errors that occur. Each value should be a list containing two elements, the name and then the email address." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26789 +#: guix-git/doc/guix.texi:27126 msgid "Whether to run Patchwork in debug mode. If set to @code{#t}, detailed error messages will be shown." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26792 +#: guix-git/doc/guix.texi:27129 #, no-wrap msgid "@code{enable-rest-api?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26794 +#: guix-git/doc/guix.texi:27131 msgid "Whether to enable the Patchwork REST API." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26797 +#: guix-git/doc/guix.texi:27134 #, no-wrap msgid "@code{enable-xmlrpc?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26799 +#: guix-git/doc/guix.texi:27136 msgid "Whether to enable the XML RPC API." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26802 +#: guix-git/doc/guix.texi:27139 #, no-wrap msgid "@code{force-https-links?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26804 +#: guix-git/doc/guix.texi:27141 msgid "Whether to use HTTPS links on Patchwork pages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26809 +#: guix-git/doc/guix.texi:27146 msgid "Extra code to place at the end of the Patchwork settings module." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26813 +#: guix-git/doc/guix.texi:27150 #, no-wrap msgid "{Data Type} patchwork-database-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26815 +#: guix-git/doc/guix.texi:27152 msgid "Data type representing the database configuration for Patchwork." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26817 +#: guix-git/doc/guix.texi:27154 #, no-wrap msgid "@code{engine} (default: @code{\"django.db.backends.postgresql_psycopg2\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26819 +#: guix-git/doc/guix.texi:27156 msgid "The database engine to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26820 +#: guix-git/doc/guix.texi:27157 #, no-wrap msgid "@code{name} (default: @code{\"patchwork\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26822 +#: guix-git/doc/guix.texi:27159 msgid "The name of the database to use." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26825 +#: guix-git/doc/guix.texi:27162 msgid "The user to connect to the database as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26826 +#: guix-git/doc/guix.texi:27163 #, no-wrap msgid "@code{password} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26828 +#: guix-git/doc/guix.texi:27165 msgid "The password to use when connecting to the database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26829 +#: guix-git/doc/guix.texi:27166 #, no-wrap msgid "@code{host} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26831 +#: guix-git/doc/guix.texi:27168 msgid "The host to make the database connection to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26832 +#: guix-git/doc/guix.texi:27169 #, no-wrap msgid "@code{port} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26834 +#: guix-git/doc/guix.texi:27171 msgid "The port on which to connect to the database." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26838 +#: guix-git/doc/guix.texi:27175 #, no-wrap msgid "Mumi" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26840 +#: guix-git/doc/guix.texi:27177 #, no-wrap msgid "Mumi, Debbugs Web interface" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26841 +#: guix-git/doc/guix.texi:27178 #, no-wrap msgid "Debbugs, Mumi Web interface" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26846 +#: guix-git/doc/guix.texi:27183 msgid "@uref{https://git.elephly.net/gitweb.cgi?p=software/mumi.git, Mumi} is a Web interface to the Debbugs bug tracker, by default for @uref{https://bugs.gnu.org, the GNU instance}. Mumi is a Web server, but it also fetches and indexes mail retrieved from Debbugs." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26847 +#: guix-git/doc/guix.texi:27184 #, no-wrap msgid "{Scheme Variable} mumi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26849 +#: guix-git/doc/guix.texi:27186 msgid "This is the service type for Mumi." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26851 +#: guix-git/doc/guix.texi:27188 #, no-wrap msgid "{Data Type} mumi-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26854 +#: guix-git/doc/guix.texi:27191 msgid "Data type representing the Mumi service configuration. This type has the following fields:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26856 +#: guix-git/doc/guix.texi:27193 #, no-wrap msgid "@code{mumi} (default: @code{mumi})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26858 +#: guix-git/doc/guix.texi:27195 msgid "The Mumi package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26859 +#: guix-git/doc/guix.texi:27196 #, no-wrap msgid "@code{mailer?} (default: @code{#true})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26861 +#: guix-git/doc/guix.texi:27198 msgid "Whether to enable or disable the mailer component." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26862 +#: guix-git/doc/guix.texi:27199 #, no-wrap msgid "mumi-configuration-sender" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26864 +#: guix-git/doc/guix.texi:27201 msgid "The email address used as the sender for comments." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26865 +#: guix-git/doc/guix.texi:27202 #, no-wrap msgid "mumi-configuration-smtp" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26870 +#: guix-git/doc/guix.texi:27207 msgid "A URI to configure the SMTP settings for Mailutils. This could be something like @code{sendmail:///path/to/bin/msmtp} or any other URI supported by Mailutils. @xref{SMTP Mailboxes, SMTP Mailboxes,, mailutils, GNU@tie{}Mailutils}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26875 +#: guix-git/doc/guix.texi:27212 #, no-wrap msgid "FastCGI" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26876 +#: guix-git/doc/guix.texi:27213 #, no-wrap msgid "fastcgi" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26877 +#: guix-git/doc/guix.texi:27214 #, no-wrap msgid "fcgiwrap" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26884 +#: guix-git/doc/guix.texi:27221 msgid "FastCGI is an interface between the front-end and the back-end of a web service. It is a somewhat legacy facility; new web services should generally just talk HTTP between the front-end and the back-end. However there are a number of back-end services such as PHP or the optimized HTTP Git repository access that use FastCGI, so we have support for it in Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26891 +#: guix-git/doc/guix.texi:27228 msgid "To use FastCGI, you configure the front-end web server (e.g., nginx) to dispatch some subset of its requests to the fastcgi backend, which listens on a local TCP or UNIX socket. There is an intermediary @code{fcgiwrap} program that sits between the actual backend process and the web server. The front-end indicates which backend program to run, passing that information to the @code{fcgiwrap} process." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26892 +#: guix-git/doc/guix.texi:27229 #, no-wrap msgid "{Scheme Variable} fcgiwrap-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26894 +#: guix-git/doc/guix.texi:27231 msgid "A service type for the @code{fcgiwrap} FastCGI proxy." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26896 +#: guix-git/doc/guix.texi:27233 #, no-wrap msgid "{Data Type} fcgiwrap-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26899 +#: guix-git/doc/guix.texi:27236 msgid "Data type representing the configuration of the @code{fcgiwrap} service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26900 +#: guix-git/doc/guix.texi:27237 #, no-wrap msgid "@code{package} (default: @code{fcgiwrap})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26902 +#: guix-git/doc/guix.texi:27239 msgid "The fcgiwrap package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26903 +#: guix-git/doc/guix.texi:27240 #, no-wrap msgid "@code{socket} (default: @code{tcp:127.0.0.1:9000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26909 +#: guix-git/doc/guix.texi:27246 msgid "The socket on which the @code{fcgiwrap} process should listen, as a string. Valid @var{socket} values include @code{unix:@var{/path/to/unix/socket}}, @code{tcp:@var{dot.ted.qu.ad}:@var{port}} and @code{tcp6:[@var{ipv6_addr}]:port}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26910 +#: guix-git/doc/guix.texi:27247 #, no-wrap msgid "@code{user} (default: @code{fcgiwrap})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:26911 +#: guix-git/doc/guix.texi:27248 #, no-wrap msgid "@code{group} (default: @code{fcgiwrap})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26916 +#: guix-git/doc/guix.texi:27253 msgid "The user and group names, as strings, under which to run the @code{fcgiwrap} process. The @code{fastcgi} service will ensure that if the user asks for the specific user or group names @code{fcgiwrap} that the corresponding user and/or group is present on the system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26923 +#: guix-git/doc/guix.texi:27260 msgid "It is possible to configure a FastCGI-backed web service to pass HTTP authentication information from the front-end to the back-end, and to allow @code{fcgiwrap} to run the back-end process as a corresponding local user. To enable this capability on the back-end, run @code{fcgiwrap} as the @code{root} user and group. Note that this capability also has to be configured on the front-end as well." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26926 +#: guix-git/doc/guix.texi:27263 #, no-wrap msgid "php-fpm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26929 +#: guix-git/doc/guix.texi:27266 msgid "PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI implementation with some additional features useful for sites of any size." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26931 +#: guix-git/doc/guix.texi:27268 msgid "These features include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26932 +#: guix-git/doc/guix.texi:27269 #, no-wrap msgid "Adaptive process spawning" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26933 +#: guix-git/doc/guix.texi:27270 #, no-wrap msgid "Basic statistics (similar to Apache's mod_status)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26934 +#: guix-git/doc/guix.texi:27271 #, no-wrap msgid "Advanced process management with graceful stop/start" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26935 +#: guix-git/doc/guix.texi:27272 #, no-wrap msgid "Ability to start workers with different uid/gid/chroot/environment" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:26937 +#: guix-git/doc/guix.texi:27274 msgid "and different php.ini (replaces safe_mode)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26937 +#: guix-git/doc/guix.texi:27274 #, no-wrap msgid "Stdout & stderr logging" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26938 +#: guix-git/doc/guix.texi:27275 #, no-wrap msgid "Emergency restart in case of accidental opcode cache destruction" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26939 +#: guix-git/doc/guix.texi:27276 #, no-wrap msgid "Accelerated upload support" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26940 +#: guix-git/doc/guix.texi:27277 #, no-wrap msgid "Support for a \"slowlog\"" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26941 +#: guix-git/doc/guix.texi:27278 #, no-wrap msgid "Enhancements to FastCGI, such as fastcgi_finish_request() -" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:26944 +#: guix-git/doc/guix.texi:27281 msgid "a special function to finish request & flush all data while continuing to do something time-consuming (video converting, stats processing, etc.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26946 +#: guix-git/doc/guix.texi:27283 msgid "...@: and much more." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26947 +#: guix-git/doc/guix.texi:27284 #, no-wrap msgid "{Scheme Variable} php-fpm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26949 +#: guix-git/doc/guix.texi:27286 msgid "A Service type for @code{php-fpm}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26951 +#: guix-git/doc/guix.texi:27288 #, no-wrap msgid "{Data Type} php-fpm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26953 +#: guix-git/doc/guix.texi:27290 msgid "Data Type for php-fpm service configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26954 +#: guix-git/doc/guix.texi:27291 #, no-wrap msgid "@code{php} (default: @code{php})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26956 +#: guix-git/doc/guix.texi:27293 msgid "The php package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26956 +#: guix-git/doc/guix.texi:27293 #, no-wrap msgid "@code{socket} (default: @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.sock\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26958 +#: guix-git/doc/guix.texi:27295 msgid "The address on which to accept FastCGI requests. Valid syntaxes are:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26959 +#: guix-git/doc/guix.texi:27296 #, no-wrap msgid "\"ip.add.re.ss:port\"" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26961 +#: guix-git/doc/guix.texi:27298 msgid "Listen on a TCP socket to a specific address on a specific port." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26961 +#: guix-git/doc/guix.texi:27298 #, no-wrap msgid "\"port\"" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26963 +#: guix-git/doc/guix.texi:27300 msgid "Listen on a TCP socket to all addresses on a specific port." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26963 +#: guix-git/doc/guix.texi:27300 #, no-wrap msgid "\"/path/to/unix/socket\"" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26965 +#: guix-git/doc/guix.texi:27302 msgid "Listen on a unix socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26967 +#: guix-git/doc/guix.texi:27304 #, no-wrap msgid "@code{user} (default: @code{php-fpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26969 +#: guix-git/doc/guix.texi:27306 msgid "User who will own the php worker processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26969 +#: guix-git/doc/guix.texi:27306 #, no-wrap msgid "@code{group} (default: @code{php-fpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26971 +#: guix-git/doc/guix.texi:27308 msgid "Group of the worker processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26971 +#: guix-git/doc/guix.texi:27308 #, no-wrap msgid "@code{socket-user} (default: @code{php-fpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26973 +#: guix-git/doc/guix.texi:27310 msgid "User who can speak to the php-fpm socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26973 +#: guix-git/doc/guix.texi:27310 #, no-wrap msgid "@code{socket-group} (default: @code{nginx})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26975 +#: guix-git/doc/guix.texi:27312 msgid "Group that can speak to the php-fpm socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26975 +#: guix-git/doc/guix.texi:27312 #, no-wrap msgid "@code{pid-file} (default: @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.pid\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26978 +#: guix-git/doc/guix.texi:27315 msgid "The process id of the php-fpm process is written to this file once the service has started." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26978 +#: guix-git/doc/guix.texi:27315 #, no-wrap msgid "@code{log-file} (default: @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.log\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26980 +#: guix-git/doc/guix.texi:27317 msgid "Log for the php-fpm master process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26980 +#: guix-git/doc/guix.texi:27317 #, no-wrap msgid "@code{process-manager} (default: @code{(php-fpm-dynamic-process-manager-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26983 +#: guix-git/doc/guix.texi:27320 msgid "Detailed settings for the php-fpm process manager. Must be one of:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26984 +#: guix-git/doc/guix.texi:27321 #, no-wrap msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26985 +#: guix-git/doc/guix.texi:27322 #, no-wrap msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26986 +#: guix-git/doc/guix.texi:27323 #, no-wrap msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26988 +#: guix-git/doc/guix.texi:27325 #, no-wrap msgid "@code{display-errors} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26993 +#: guix-git/doc/guix.texi:27330 msgid "Determines whether php errors and warning should be sent to clients and displayed in their browsers. This is useful for local php development, but a security risk for public sites, as error messages can reveal passwords and personal data." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26993 +#: guix-git/doc/guix.texi:27330 #, no-wrap msgid "@code{timezone} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26995 +#: guix-git/doc/guix.texi:27332 msgid "Specifies @code{php_admin_value[date.timezone]} parameter." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26995 +#: guix-git/doc/guix.texi:27332 #, no-wrap msgid "@code{workers-logfile} (default @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.www.log\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26998 +#: guix-git/doc/guix.texi:27335 msgid "This file will log the @code{stderr} outputs of php worker processes. Can be set to @code{#f} to disable logging." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26998 +#: guix-git/doc/guix.texi:27335 #, no-wrap msgid "@code{file} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27001 +#: guix-git/doc/guix.texi:27338 msgid "An optional override of the whole configuration. You can use the @code{mixed-text-file} function or an absolute filepath for it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27001 +#: guix-git/doc/guix.texi:27338 #, no-wrap msgid "@code{php-ini-file} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27005 +#: guix-git/doc/guix.texi:27342 msgid "An optional override of the default php settings. It may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). You can use the @code{mixed-text-file} function or an absolute filepath for it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27009 +#: guix-git/doc/guix.texi:27346 msgid "For local development it is useful to set a higher timeout and memory limit for spawned php processes. This be accomplished with the following operating system configuration snippet:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27014 +#: guix-git/doc/guix.texi:27351 #, no-wrap msgid "" "(define %local-php-ini\n" @@ -48188,7 +48787,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27021 +#: guix-git/doc/guix.texi:27358 #, no-wrap msgid "" "(operating-system\n" @@ -48200,118 +48799,118 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27026 +#: guix-git/doc/guix.texi:27363 msgid "Consult the @url{https://www.php.net/manual/en/ini.core.php,core php.ini directives} for comprehensive documentation on the acceptable @file{php.ini} directives." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27029 +#: guix-git/doc/guix.texi:27366 #, no-wrap msgid "{Data type} php-fpm-dynamic-process-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27033 +#: guix-git/doc/guix.texi:27370 msgid "Data Type for the @code{dynamic} php-fpm process manager. With the @code{dynamic} process manager, spare worker processes are kept around based on its configured limits." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27034 guix-git/doc/guix.texi:27050 -#: guix-git/doc/guix.texi:27060 +#: guix-git/doc/guix.texi:27371 guix-git/doc/guix.texi:27387 +#: guix-git/doc/guix.texi:27397 #, no-wrap msgid "@code{max-children} (default: @code{5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27036 guix-git/doc/guix.texi:27052 -#: guix-git/doc/guix.texi:27062 +#: guix-git/doc/guix.texi:27373 guix-git/doc/guix.texi:27389 +#: guix-git/doc/guix.texi:27399 msgid "Maximum of worker processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27036 +#: guix-git/doc/guix.texi:27373 #, no-wrap msgid "@code{start-servers} (default: @code{2})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27038 +#: guix-git/doc/guix.texi:27375 msgid "How many worker processes should be started on start-up." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27038 +#: guix-git/doc/guix.texi:27375 #, no-wrap msgid "@code{min-spare-servers} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27040 +#: guix-git/doc/guix.texi:27377 msgid "How many spare worker processes should be kept around at minimum." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27040 +#: guix-git/doc/guix.texi:27377 #, no-wrap msgid "@code{max-spare-servers} (default: @code{3})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27042 +#: guix-git/doc/guix.texi:27379 msgid "How many spare worker processes should be kept around at maximum." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27045 +#: guix-git/doc/guix.texi:27382 #, no-wrap msgid "{Data type} php-fpm-static-process-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27049 +#: guix-git/doc/guix.texi:27386 msgid "Data Type for the @code{static} php-fpm process manager. With the @code{static} process manager, an unchanging number of worker processes are created." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27055 +#: guix-git/doc/guix.texi:27392 #, no-wrap msgid "{Data type} php-fpm-on-demand-process-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27059 +#: guix-git/doc/guix.texi:27396 msgid "Data Type for the @code{on-demand} php-fpm process manager. With the @code{on-demand} process manager, worker processes are only created as requests arrive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27062 +#: guix-git/doc/guix.texi:27399 #, no-wrap msgid "@code{process-idle-timeout} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27064 +#: guix-git/doc/guix.texi:27401 msgid "The time in seconds after which a process with no requests is killed." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27068 +#: guix-git/doc/guix.texi:27405 #, no-wrap msgid "{Scheme Procedure} nginx-php-location @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27074 +#: guix-git/doc/guix.texi:27411 msgid "[#:nginx-package nginx] @ [socket (string-append \"/var/run/php\" @ (version-major (package-version php)) @ \"-fpm.sock\")] A helper function to quickly add php to an @code{nginx-server-configuration}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27077 +#: guix-git/doc/guix.texi:27414 msgid "A simple services setup for nginx with php can look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27090 +#: guix-git/doc/guix.texi:27427 #, no-wrap msgid "" "(services (cons* (service dhcp-client-service-type)\n" @@ -48329,34 +48928,34 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27092 +#: guix-git/doc/guix.texi:27429 #, no-wrap msgid "cat-avatar-generator" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27096 +#: guix-git/doc/guix.texi:27433 msgid "The cat avatar generator is a simple service to demonstrate the use of php-fpm in @code{Nginx}. It is used to generate cat avatar from a seed, for instance the hash of a user's email address." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27097 +#: guix-git/doc/guix.texi:27434 #, no-wrap msgid "{Scheme Procedure} cat-avatar-generator-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27105 +#: guix-git/doc/guix.texi:27442 msgid "[#:cache-dir \"/var/cache/cat-avatar-generator\"] @ [#:package cat-avatar-generator] @ [#:configuration (nginx-server-configuration)] Returns an nginx-server-configuration that inherits @code{configuration}. It extends the nginx configuration to add a server block that serves @code{package}, a version of cat-avatar-generator. During execution, cat-avatar-generator will be able to use @code{cache-dir} as its cache directory." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27108 +#: guix-git/doc/guix.texi:27445 msgid "A simple setup for cat-avatar-generator can look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27115 +#: guix-git/doc/guix.texi:27452 #, no-wrap msgid "" "(services (cons* (cat-avatar-generator-service\n" @@ -48368,177 +48967,177 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27117 +#: guix-git/doc/guix.texi:27454 #, no-wrap msgid "Hpcguix-web" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27119 +#: guix-git/doc/guix.texi:27456 #, no-wrap msgid "hpcguix-web" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27124 +#: guix-git/doc/guix.texi:27461 msgid "The @uref{https://github.com/UMCUGenetics/hpcguix-web/, hpcguix-web} program is a customizable web interface to browse Guix packages, initially designed for users of high-performance computing (HPC) clusters." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27125 +#: guix-git/doc/guix.texi:27462 #, no-wrap msgid "{Scheme Variable} hpcguix-web-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27127 +#: guix-git/doc/guix.texi:27464 msgid "The service type for @code{hpcguix-web}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27129 +#: guix-git/doc/guix.texi:27466 #, no-wrap msgid "{Data Type} hpcguix-web-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27131 +#: guix-git/doc/guix.texi:27468 msgid "Data type for the hpcguix-web service configuration." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:27133 +#: guix-git/doc/guix.texi:27470 #, no-wrap msgid "specs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27136 +#: guix-git/doc/guix.texi:27473 msgid "A gexp (@pxref{G-Expressions}) specifying the hpcguix-web service configuration. The main items available in this spec are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27138 +#: guix-git/doc/guix.texi:27475 #, no-wrap msgid "@code{title-prefix} (default: @code{\"hpcguix | \"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27140 +#: guix-git/doc/guix.texi:27477 msgid "The page title prefix." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27141 +#: guix-git/doc/guix.texi:27478 #, no-wrap msgid "@code{guix-command} (default: @code{\"guix\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27143 +#: guix-git/doc/guix.texi:27480 msgid "The @command{guix} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27144 +#: guix-git/doc/guix.texi:27481 #, no-wrap msgid "@code{package-filter-proc} (default: @code{(const #t)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27146 +#: guix-git/doc/guix.texi:27483 msgid "A procedure specifying how to filter packages that are displayed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27147 +#: guix-git/doc/guix.texi:27484 #, no-wrap msgid "@code{package-page-extension-proc} (default: @code{(const '())})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27149 +#: guix-git/doc/guix.texi:27486 msgid "Extension package for @code{hpcguix-web}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27150 +#: guix-git/doc/guix.texi:27487 #, no-wrap msgid "@code{menu} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27152 +#: guix-git/doc/guix.texi:27489 msgid "Additional entry in page @code{menu}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27153 +#: guix-git/doc/guix.texi:27490 #, no-wrap msgid "@code{channels} (default: @code{%default-channels})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27155 +#: guix-git/doc/guix.texi:27492 msgid "List of channels from which the package list is built (@pxref{Channels})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27156 +#: guix-git/doc/guix.texi:27493 #, no-wrap msgid "@code{package-list-expiration} (default: @code{(* 12 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27159 +#: guix-git/doc/guix.texi:27496 msgid "The expiration time, in seconds, after which the package list is rebuilt from the latest instances of the given channels." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27164 +#: guix-git/doc/guix.texi:27501 msgid "See the hpcguix-web repository for a @uref{https://github.com/UMCUGenetics/hpcguix-web/blob/master/hpcweb-configuration.scm, complete example}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27165 +#: guix-git/doc/guix.texi:27502 #, no-wrap msgid "@code{package} (default: @code{hpcguix-web})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27167 +#: guix-git/doc/guix.texi:27504 msgid "The hpcguix-web package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27168 +#: guix-git/doc/guix.texi:27505 #, no-wrap msgid "@code{address} (default: @code{\"127.0.0.1\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27170 +#: guix-git/doc/guix.texi:27507 msgid "The IP address to listen to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27171 +#: guix-git/doc/guix.texi:27508 #, no-wrap msgid "@code{port} (default: @code{5000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27173 +#: guix-git/doc/guix.texi:27510 msgid "The port number to listen to." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27177 +#: guix-git/doc/guix.texi:27514 msgid "A typical hpcguix-web service declaration looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27186 +#: guix-git/doc/guix.texi:27523 #, no-wrap msgid "" "(service hpcguix-web-service-type\n" @@ -48551,39 +49150,39 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:27193 +#: guix-git/doc/guix.texi:27530 msgid "The hpcguix-web service periodically updates the package list it publishes by pulling channels from Git. To that end, it needs to access X.509 certificates so that it can authenticate Git servers when communicating over HTTPS, and it assumes that @file{/etc/ssl/certs} contains those certificates." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:27197 +#: guix-git/doc/guix.texi:27534 msgid "Thus, make sure to add @code{nss-certs} or another certificate package to the @code{packages} field of your configuration. @ref{X.509 Certificates}, for more information on X.509 certificates." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27199 guix-git/doc/guix.texi:27201 +#: guix-git/doc/guix.texi:27536 guix-git/doc/guix.texi:27538 #, no-wrap msgid "gmnisrv" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27204 +#: guix-git/doc/guix.texi:27541 msgid "The @uref{https://git.sr.ht/~sircmpwn/gmnisrv, gmnisrv} program is a simple @uref{https://gemini.circumlunar.space/, Gemini} protocol server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27205 +#: guix-git/doc/guix.texi:27542 #, no-wrap msgid "{Scheme Variable} gmnisrv-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27208 +#: guix-git/doc/guix.texi:27545 msgid "This is the type of the gmnisrv service, whose value should be a @code{gmnisrv-configuration} object, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27213 +#: guix-git/doc/guix.texi:27550 #, no-wrap msgid "" "(service gmnisrv-service-type\n" @@ -48592,68 +49191,68 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27216 +#: guix-git/doc/guix.texi:27553 #, no-wrap msgid "{Data Type} gmnisrv-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27218 +#: guix-git/doc/guix.texi:27555 msgid "Data type representing the configuration of gmnisrv." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27220 +#: guix-git/doc/guix.texi:27557 #, no-wrap msgid "@code{package} (default: @var{gmnisrv})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27222 +#: guix-git/doc/guix.texi:27559 msgid "Package object of the gmnisrv server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27223 +#: guix-git/doc/guix.texi:27560 #, no-wrap msgid "@code{config-file} (default: @code{%default-gmnisrv-config-file})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27229 +#: guix-git/doc/guix.texi:27566 msgid "File-like object of the gmnisrv configuration file to use. The default configuration listens on port 1965 and serves files from @file{/srv/gemini}. Certificates are stored in @file{/var/lib/gemini/certs}. For more information, run @command{man gmnisrv} and @command{man gmnisrv.ini}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27233 +#: guix-git/doc/guix.texi:27570 #, no-wrap msgid "Agate" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27235 +#: guix-git/doc/guix.texi:27572 #, no-wrap msgid "agate" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27240 +#: guix-git/doc/guix.texi:27577 msgid "The @uref{gemini://qwertqwefsday.eu/agate.gmi, Agate} (@uref{https://github.com/mbrubeck/agate, GitHub page over HTTPS}) program is a simple @uref{https://gemini.circumlunar.space/, Gemini} protocol server written in Rust." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27241 +#: guix-git/doc/guix.texi:27578 #, no-wrap msgid "{Scheme Variable} agate-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27244 +#: guix-git/doc/guix.texi:27581 msgid "This is the type of the agate service, whose value should be an @code{agate-service-type} object, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27251 +#: guix-git/doc/guix.texi:27588 #, no-wrap msgid "" "(service agate-service-type\n" @@ -48664,17 +49263,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27256 +#: guix-git/doc/guix.texi:27593 msgid "The example above represents the minimal tweaking necessary to get Agate up and running. Specifying the path to the certificate and key is always necessary, as the Gemini protocol requires TLS by default." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27259 +#: guix-git/doc/guix.texi:27596 msgid "To obtain a certificate and a key, you could, for example, use OpenSSL, running a command similar to the following example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:27263 +#: guix-git/doc/guix.texi:27600 #, no-wrap msgid "" "openssl req -x509 -newkey rsa:4096 -keyout key.rsa -out cert.pem \\\n" @@ -48682,220 +49281,220 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27268 +#: guix-git/doc/guix.texi:27605 msgid "Of course, you'll have to replace @i{example.com} with your own domain name, and then point the Agate configuration towards the path of the generated key and certificate." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27271 +#: guix-git/doc/guix.texi:27608 #, no-wrap msgid "{Data Type} agate-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27273 +#: guix-git/doc/guix.texi:27610 msgid "Data type representing the configuration of Agate." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27275 +#: guix-git/doc/guix.texi:27612 #, no-wrap msgid "@code{package} (default: @code{agate})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27277 +#: guix-git/doc/guix.texi:27614 msgid "The package object of the Agate server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27278 +#: guix-git/doc/guix.texi:27615 #, no-wrap msgid "@code{content} (default: @file{\"/srv/gemini\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27280 +#: guix-git/doc/guix.texi:27617 msgid "The directory from which Agate will serve files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27281 +#: guix-git/doc/guix.texi:27618 #, no-wrap msgid "@code{cert} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27284 +#: guix-git/doc/guix.texi:27621 msgid "The path to the TLS certificate PEM file to be used for encrypted connections. Must be filled in with a value from the user." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27285 guix-git/doc/guix.texi:27721 +#: guix-git/doc/guix.texi:27622 guix-git/doc/guix.texi:28058 #, no-wrap msgid "@code{key} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27288 +#: guix-git/doc/guix.texi:27625 msgid "The path to the PKCS8 private key file to be used for encrypted connections. Must be filled in with a value from the user." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27289 +#: guix-git/doc/guix.texi:27626 #, no-wrap msgid "@code{addr} (default: @code{'(\"0.0.0.0:1965\" \"[::]:1965\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27291 +#: guix-git/doc/guix.texi:27628 msgid "A list of the addresses to listen on." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27294 +#: guix-git/doc/guix.texi:27631 msgid "The domain name of this Gemini server. Optional." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27295 +#: guix-git/doc/guix.texi:27632 #, no-wrap msgid "@code{lang} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27297 +#: guix-git/doc/guix.texi:27634 msgid "RFC 4646 language code(s) for text/gemini documents. Optional." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27298 +#: guix-git/doc/guix.texi:27635 #, no-wrap msgid "@code{silent?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27300 +#: guix-git/doc/guix.texi:27637 msgid "Set to @code{#t} to disable logging output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27301 +#: guix-git/doc/guix.texi:27638 #, no-wrap msgid "@code{serve-secret?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27304 +#: guix-git/doc/guix.texi:27641 msgid "Set to @code{#t} to serve secret files (files/directories starting with a dot)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27305 +#: guix-git/doc/guix.texi:27642 #, no-wrap msgid "@code{log-ip?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27307 +#: guix-git/doc/guix.texi:27644 msgid "Whether or not to output IP addresses when logging." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27308 +#: guix-git/doc/guix.texi:27645 #, no-wrap msgid "@code{user} (default: @code{\"agate\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27310 +#: guix-git/doc/guix.texi:27647 msgid "Owner of the @code{agate} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27311 +#: guix-git/doc/guix.texi:27648 #, no-wrap msgid "@code{group} (default: @code{\"agate\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27313 +#: guix-git/doc/guix.texi:27650 msgid "Owner's group of the @code{agate} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27314 +#: guix-git/doc/guix.texi:27651 #, no-wrap msgid "@code{log-file} (default: @file{\"/var/log/agate.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27316 +#: guix-git/doc/guix.texi:27653 msgid "The file which should store the logging output of Agate." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27323 +#: guix-git/doc/guix.texi:27660 #, no-wrap msgid "Web" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27324 +#: guix-git/doc/guix.texi:27661 #, no-wrap msgid "HTTP, HTTPS" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27325 +#: guix-git/doc/guix.texi:27662 #, no-wrap msgid "Let's Encrypt" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27326 +#: guix-git/doc/guix.texi:27663 #, no-wrap msgid "TLS certificates" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27333 +#: guix-git/doc/guix.texi:27670 msgid "The @code{(gnu services certbot)} module provides a service to automatically obtain a valid TLS certificate from the Let's Encrypt certificate authority. These certificates can then be used to serve content securely over HTTPS or other TLS-based protocols, with the knowledge that the client will be able to verify the server's authenticity." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27345 +#: guix-git/doc/guix.texi:27682 msgid "@url{https://letsencrypt.org/, Let's Encrypt} provides the @code{certbot} tool to automate the certification process. This tool first securely generates a key on the server. It then makes a request to the Let's Encrypt certificate authority (CA) to sign the key. The CA checks that the request originates from the host in question by using a challenge-response protocol, requiring the server to provide its response over HTTP@. If that protocol completes successfully, the CA signs the key, resulting in a certificate. That certificate is valid for a limited period of time, and therefore to continue to provide TLS services, the server needs to periodically ask the CA to renew its signature." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27352 +#: guix-git/doc/guix.texi:27689 msgid "The certbot service automates this process: the initial key generation, the initial certification request to the Let's Encrypt service, the web server challenge/response integration, writing the certificate to disk, the automated periodic renewals, and the deployment tasks associated with the renewal (e.g.@: reloading services, copying keys with different permissions)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27358 +#: guix-git/doc/guix.texi:27695 msgid "Certbot is run twice a day, at a random minute within the hour. It won't do anything until your certificates are due for renewal or revoked, but running it regularly would give your service a chance of staying online in case a Let's Encrypt-initiated revocation happened for some reason." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27362 +#: guix-git/doc/guix.texi:27699 msgid "By using this service, you agree to the ACME Subscriber Agreement, which can be found there: @url{https://acme-v01.api.letsencrypt.org/directory}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27363 +#: guix-git/doc/guix.texi:27700 #, no-wrap msgid "{Scheme Variable} certbot-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27366 +#: guix-git/doc/guix.texi:27703 msgid "A service type for the @code{certbot} Let's Encrypt client. Its value must be a @code{certbot-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27373 +#: guix-git/doc/guix.texi:27710 #, no-wrap msgid "" "(define %nginx-deploy-hook\n" @@ -48907,7 +49506,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27384 +#: guix-git/doc/guix.texi:27721 #, no-wrap msgid "" "(service certbot-service-type\n" @@ -48923,241 +49522,241 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27387 +#: guix-git/doc/guix.texi:27724 msgid "See below for details about @code{certbot-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27389 +#: guix-git/doc/guix.texi:27726 #, no-wrap msgid "{Data Type} certbot-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27392 +#: guix-git/doc/guix.texi:27729 msgid "Data type representing the configuration of the @code{certbot} service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27394 +#: guix-git/doc/guix.texi:27731 #, no-wrap msgid "@code{package} (default: @code{certbot})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27396 +#: guix-git/doc/guix.texi:27733 msgid "The certbot package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27397 +#: guix-git/doc/guix.texi:27734 #, no-wrap msgid "@code{webroot} (default: @code{/var/www})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27400 +#: guix-git/doc/guix.texi:27737 msgid "The directory from which to serve the Let's Encrypt challenge/response files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27401 +#: guix-git/doc/guix.texi:27738 #, no-wrap msgid "@code{certificates} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27405 +#: guix-git/doc/guix.texi:27742 msgid "A list of @code{certificates-configuration}s for which to generate certificates and request signatures. Each certificate has a @code{name} and several @code{domains}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27406 +#: guix-git/doc/guix.texi:27743 #, no-wrap msgid "@code{email} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27410 +#: guix-git/doc/guix.texi:27747 msgid "Optional email address used for registration and recovery contact. Setting this is encouraged as it allows you to receive important notifications about the account and issued certificates." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27411 guix-git/doc/guix.texi:29158 +#: guix-git/doc/guix.texi:27748 guix-git/doc/guix.texi:29495 #, no-wrap msgid "@code{server} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27414 +#: guix-git/doc/guix.texi:27751 msgid "Optional URL of ACME server. Setting this overrides certbot's default, which is the Let's Encrypt server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27415 +#: guix-git/doc/guix.texi:27752 #, no-wrap msgid "@code{rsa-key-size} (default: @code{2048})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27417 +#: guix-git/doc/guix.texi:27754 msgid "Size of the RSA key." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27418 +#: guix-git/doc/guix.texi:27755 #, no-wrap msgid "@code{default-location} (default: @i{see below})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27427 +#: guix-git/doc/guix.texi:27764 msgid "The default @code{nginx-location-configuration}. Because @code{certbot} needs to be able to serve challenges and responses, it needs to be able to run a web server. It does so by extending the @code{nginx} web service with an @code{nginx-server-configuration} listening on the @var{domains} on port 80, and which has a @code{nginx-location-configuration} for the @code{/.well-known/} URI path subspace used by Let's Encrypt. @xref{Web Services}, for more on these nginx configuration data types." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27431 +#: guix-git/doc/guix.texi:27768 msgid "Requests to other URL paths will be matched by the @code{default-location}, which if present is added to all @code{nginx-server-configuration}s." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27435 +#: guix-git/doc/guix.texi:27772 msgid "By default, the @code{default-location} will issue a redirect from @code{http://@var{domain}/...} to @code{https://@var{domain}/...}, leaving you to define what to serve on your site via @code{https}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27437 +#: guix-git/doc/guix.texi:27774 msgid "Pass @code{#f} to not issue a default location." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27440 +#: guix-git/doc/guix.texi:27777 #, no-wrap msgid "{Data Type} certificate-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27443 +#: guix-git/doc/guix.texi:27780 msgid "Data type representing the configuration of a certificate. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27445 +#: guix-git/doc/guix.texi:27782 #, no-wrap msgid "@code{name} (default: @i{see below})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27449 +#: guix-git/doc/guix.texi:27786 msgid "This name is used by Certbot for housekeeping and in file paths; it doesn't affect the content of the certificate itself. To see certificate names, run @code{certbot certificates}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27451 +#: guix-git/doc/guix.texi:27788 msgid "Its default is the first provided domain." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27452 +#: guix-git/doc/guix.texi:27789 #, no-wrap msgid "@code{domains} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27455 +#: guix-git/doc/guix.texi:27792 msgid "The first domain provided will be the subject CN of the certificate, and all domains will be Subject Alternative Names on the certificate." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27456 +#: guix-git/doc/guix.texi:27793 #, no-wrap msgid "@code{challenge} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27463 +#: guix-git/doc/guix.texi:27800 msgid "The challenge type that has to be run by certbot. If @code{#f} is specified, default to the HTTP challenge. If a value is specified, defaults to the manual plugin (see @code{authentication-hook}, @code{cleanup-hook} and the documentation at @url{https://certbot.eff.org/docs/using.html#hooks}), and gives Let's Encrypt permission to log the public IP address of the requesting machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27464 +#: guix-git/doc/guix.texi:27801 #, no-wrap msgid "@code{csr} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27471 +#: guix-git/doc/guix.texi:27808 msgid "File name of Certificate Signing Request (CSR) in DER or PEM format. If @code{#f} is specified, this argument will not be passed to certbot. If a value is specified, certbot will use it to obtain a certificate, instead of using a self-generated CSR. The domain-name(s) mentioned in @code{domains}, must be consistent with the domain-name(s) mentioned in CSR file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27472 +#: guix-git/doc/guix.texi:27809 #, no-wrap msgid "@code{authentication-hook} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27478 +#: guix-git/doc/guix.texi:27815 msgid "Command to be run in a shell once for each certificate challenge to be answered. For this command, the shell variable @code{$CERTBOT_DOMAIN} will contain the domain being authenticated, @code{$CERTBOT_VALIDATION} contains the validation string and @code{$CERTBOT_TOKEN} contains the file name of the resource requested when performing an HTTP-01 challenge." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27479 +#: guix-git/doc/guix.texi:27816 #, no-wrap msgid "@code{cleanup-hook} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27485 +#: guix-git/doc/guix.texi:27822 msgid "Command to be run in a shell once for each certificate challenge that have been answered by the @code{auth-hook}. For this command, the shell variables available in the @code{auth-hook} script are still available, and additionally @code{$CERTBOT_AUTH_OUTPUT} will contain the standard output of the @code{auth-hook} script." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27486 +#: guix-git/doc/guix.texi:27823 #, no-wrap msgid "@code{deploy-hook} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27494 +#: guix-git/doc/guix.texi:27831 msgid "Command to be run in a shell once for each successfully issued certificate. For this command, the shell variable @code{$RENEWED_LINEAGE} will point to the config live subdirectory (for example, @samp{\"/etc/letsencrypt/live/example.com\"}) containing the new certificates and keys; the shell variable @code{$RENEWED_DOMAINS} will contain a space-delimited list of renewed certificate domains (for example, @samp{\"example.com www.example.com\"}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27501 +#: guix-git/doc/guix.texi:27838 msgid "For each @code{certificate-configuration}, the certificate is saved to @code{/etc/letsencrypt/live/@var{name}/fullchain.pem} and the key is saved to @code{/etc/letsencrypt/live/@var{name}/privkey.pem}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27503 +#: guix-git/doc/guix.texi:27840 #, no-wrap msgid "DNS (domain name system)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27504 +#: guix-git/doc/guix.texi:27841 #, no-wrap msgid "domain name system (DNS)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27512 +#: guix-git/doc/guix.texi:27849 msgid "The @code{(gnu services dns)} module provides services related to the @dfn{domain name system} (DNS). It provides a server service for hosting an @emph{authoritative} DNS server for multiple zones, slave or master. This service uses @uref{https://www.knot-dns.cz/, Knot DNS}. And also a caching and forwarding DNS server for the LAN, which uses @uref{http://www.thekelleys.org.uk/dnsmasq/doc.html, dnsmasq}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27513 +#: guix-git/doc/guix.texi:27850 #, no-wrap msgid "Knot Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27517 +#: guix-git/doc/guix.texi:27854 msgid "An example configuration of an authoritative server for two zones, one master and one slave, is:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27524 +#: guix-git/doc/guix.texi:27861 #, no-wrap msgid "" "(define-zone-entries example.org.zone\n" @@ -49169,7 +49768,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27531 +#: guix-git/doc/guix.texi:27868 #, no-wrap msgid "" "(define master-zone\n" @@ -49182,7 +49781,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27537 +#: guix-git/doc/guix.texi:27874 #, no-wrap msgid "" "(define slave-zone\n" @@ -49194,7 +49793,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27542 +#: guix-git/doc/guix.texi:27879 #, no-wrap msgid "" "(define plop-master\n" @@ -49205,7 +49804,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27551 +#: guix-git/doc/guix.texi:27888 #, no-wrap msgid "" "(operating-system\n" @@ -49219,857 +49818,857 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27553 +#: guix-git/doc/guix.texi:27890 #, no-wrap msgid "{Scheme Variable} knot-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27555 +#: guix-git/doc/guix.texi:27892 msgid "This is the type for the Knot DNS server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27563 +#: guix-git/doc/guix.texi:27900 msgid "Knot DNS is an authoritative DNS server, meaning that it can serve multiple zones, that is to say domain names you would buy from a registrar. This server is not a resolver, meaning that it can only resolve names for which it is authoritative. This server can be configured to serve zones as a master server or a slave server as a per-zone basis. Slave zones will get their data from masters, and will serve it as an authoritative server. From the point of view of a resolver, there is no difference between master and slave." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27565 +#: guix-git/doc/guix.texi:27902 msgid "The following data types are used to configure the Knot DNS server:" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27567 +#: guix-git/doc/guix.texi:27904 #, no-wrap msgid "{Data Type} knot-key-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27570 +#: guix-git/doc/guix.texi:27907 msgid "Data type representing a key. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27572 guix-git/doc/guix.texi:27592 -#: guix-git/doc/guix.texi:27707 guix-git/doc/guix.texi:27733 -#: guix-git/doc/guix.texi:27768 +#: guix-git/doc/guix.texi:27909 guix-git/doc/guix.texi:27929 +#: guix-git/doc/guix.texi:28044 guix-git/doc/guix.texi:28070 +#: guix-git/doc/guix.texi:28105 #, no-wrap msgid "@code{id} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27575 guix-git/doc/guix.texi:27595 +#: guix-git/doc/guix.texi:27912 guix-git/doc/guix.texi:27932 msgid "An identifier for other configuration fields to refer to this key. IDs must be unique and must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27576 +#: guix-git/doc/guix.texi:27913 #, no-wrap msgid "@code{algorithm} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27580 +#: guix-git/doc/guix.texi:27917 msgid "The algorithm to use. Choose between @code{#f}, @code{'hmac-md5}, @code{'hmac-sha1}, @code{'hmac-sha224}, @code{'hmac-sha256}, @code{'hmac-sha384} and @code{'hmac-sha512}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27581 +#: guix-git/doc/guix.texi:27918 #, no-wrap msgid "@code{secret} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27583 +#: guix-git/doc/guix.texi:27920 msgid "The secret key itself." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27587 +#: guix-git/doc/guix.texi:27924 #, no-wrap msgid "{Data Type} knot-acl-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27590 +#: guix-git/doc/guix.texi:27927 msgid "Data type representing an Access Control List (ACL) configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27596 guix-git/doc/guix.texi:27711 +#: guix-git/doc/guix.texi:27933 guix-git/doc/guix.texi:28048 #, no-wrap msgid "@code{address} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27600 +#: guix-git/doc/guix.texi:27937 msgid "An ordered list of IP addresses, network subnets, or network ranges represented with strings. The query must match one of them. Empty value means that address match is not required." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27601 +#: guix-git/doc/guix.texi:27938 #, no-wrap msgid "@code{key} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27605 +#: guix-git/doc/guix.texi:27942 msgid "An ordered list of references to keys represented with strings. The string must match a key ID defined in a @code{knot-key-configuration}. No key means that a key is not require to match that ACL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27606 +#: guix-git/doc/guix.texi:27943 #, no-wrap msgid "@code{action} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27610 +#: guix-git/doc/guix.texi:27947 msgid "An ordered list of actions that are permitted or forbidden by this ACL@. Possible values are lists of zero or more elements from @code{'transfer}, @code{'notify} and @code{'update}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27611 +#: guix-git/doc/guix.texi:27948 #, no-wrap msgid "@code{deny?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27614 +#: guix-git/doc/guix.texi:27951 msgid "When true, the ACL defines restrictions. Listed actions are forbidden. When false, listed actions are allowed." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27618 +#: guix-git/doc/guix.texi:27955 #, no-wrap msgid "{Data Type} zone-entry" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27621 +#: guix-git/doc/guix.texi:27958 msgid "Data type representing a record entry in a zone file. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27623 +#: guix-git/doc/guix.texi:27960 #, no-wrap msgid "@code{name} (default: @code{\"@@\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27629 +#: guix-git/doc/guix.texi:27966 msgid "The name of the record. @code{\"@@\"} refers to the origin of the zone. Names are relative to the origin of the zone. For example, in the @code{example.org} zone, @code{\"ns.example.org\"} actually refers to @code{ns.example.org.example.org}. Names ending with a dot are absolute, which means that @code{\"ns.example.org.\"} refers to @code{ns.example.org}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27630 +#: guix-git/doc/guix.texi:27967 #, no-wrap msgid "@code{ttl} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27632 +#: guix-git/doc/guix.texi:27969 msgid "The Time-To-Live (TTL) of this record. If not set, the default TTL is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27633 +#: guix-git/doc/guix.texi:27970 #, no-wrap msgid "@code{class} (default: @code{\"IN\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27636 +#: guix-git/doc/guix.texi:27973 msgid "The class of the record. Knot currently supports only @code{\"IN\"} and partially @code{\"CH\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27637 +#: guix-git/doc/guix.texi:27974 #, no-wrap msgid "@code{type} (default: @code{\"A\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27641 +#: guix-git/doc/guix.texi:27978 msgid "The type of the record. Common types include A (IPv4 address), AAAA (IPv6 address), NS (Name Server) and MX (Mail eXchange). Many other types are defined." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27642 +#: guix-git/doc/guix.texi:27979 #, no-wrap msgid "@code{data} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27646 +#: guix-git/doc/guix.texi:27983 msgid "The data contained in the record. For instance an IP address associated with an A record, or a domain name associated with an NS record. Remember that domain names are relative to the origin unless they end with a dot." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27650 +#: guix-git/doc/guix.texi:27987 #, no-wrap msgid "{Data Type} zone-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27653 +#: guix-git/doc/guix.texi:27990 msgid "Data type representing the content of a zone file. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27662 +#: guix-git/doc/guix.texi:27999 msgid "The list of entries. The SOA record is taken care of, so you don't need to put it in the list of entries. This list should probably contain an entry for your primary authoritative DNS server. Other than using a list of entries directly, you can use @code{define-zone-entries} to define a object containing the list of entries more easily, that you can later pass to the @code{entries} field of the @code{zone-file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27663 +#: guix-git/doc/guix.texi:28000 #, no-wrap msgid "@code{origin} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27665 +#: guix-git/doc/guix.texi:28002 msgid "The name of your zone. This parameter cannot be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27666 +#: guix-git/doc/guix.texi:28003 #, no-wrap msgid "@code{ns} (default: @code{\"ns\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27671 +#: guix-git/doc/guix.texi:28008 msgid "The domain of your primary authoritative DNS server. The name is relative to the origin, unless it ends with a dot. It is mandatory that this primary DNS server corresponds to an NS record in the zone and that it is associated to an IP address in the list of entries." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27672 +#: guix-git/doc/guix.texi:28009 #, no-wrap msgid "@code{mail} (default: @code{\"hostmaster\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27675 +#: guix-git/doc/guix.texi:28012 msgid "An email address people can contact you at, as the owner of the zone. This is translated as @code{@@}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27676 +#: guix-git/doc/guix.texi:28013 #, no-wrap msgid "@code{serial} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27680 +#: guix-git/doc/guix.texi:28017 msgid "The serial number of the zone. As this is used to keep track of changes by both slaves and resolvers, it is mandatory that it @emph{never} decreases. Always increment it when you make a change in your zone." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27681 +#: guix-git/doc/guix.texi:28018 #, no-wrap msgid "@code{refresh} (default: @code{(* 2 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27685 +#: guix-git/doc/guix.texi:28022 msgid "The frequency at which slaves will do a zone transfer. This value is a number of seconds. It can be computed by multiplications or with @code{(string->duration)}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27686 +#: guix-git/doc/guix.texi:28023 #, no-wrap msgid "@code{retry} (default: @code{(* 15 60)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27689 +#: guix-git/doc/guix.texi:28026 msgid "The period after which a slave will retry to contact its master when it fails to do so a first time." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27690 +#: guix-git/doc/guix.texi:28027 #, no-wrap msgid "@code{expiry} (default: @code{(* 14 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27694 +#: guix-git/doc/guix.texi:28031 msgid "Default TTL of records. Existing records are considered correct for at most this amount of time. After this period, resolvers will invalidate their cache and check again that it still exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27695 +#: guix-git/doc/guix.texi:28032 #, no-wrap msgid "@code{nx} (default: @code{3600})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27698 +#: guix-git/doc/guix.texi:28035 msgid "Default TTL of inexistent records. This delay is usually short because you want your new domains to reach everyone quickly." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27702 +#: guix-git/doc/guix.texi:28039 #, no-wrap msgid "{Data Type} knot-remote-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27705 +#: guix-git/doc/guix.texi:28042 msgid "Data type representing a remote configuration. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27710 +#: guix-git/doc/guix.texi:28047 msgid "An identifier for other configuration fields to refer to this remote. IDs must be unique and must not be empty." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27715 +#: guix-git/doc/guix.texi:28052 msgid "An ordered list of destination IP addresses. Addresses are tried in sequence. An optional port can be given with the @@ separator. For instance: @code{(list \"1.2.3.4\" \"2.3.4.5@@53\")}. Default port is 53." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27716 +#: guix-git/doc/guix.texi:28053 #, no-wrap msgid "@code{via} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27720 +#: guix-git/doc/guix.texi:28057 msgid "An ordered list of source IP addresses. An empty list will have Knot choose an appropriate source IP@. An optional port can be given with the @@ separator. The default is to choose at random." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27724 +#: guix-git/doc/guix.texi:28061 msgid "A reference to a key, that is a string containing the identifier of a key defined in a @code{knot-key-configuration} field." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27728 +#: guix-git/doc/guix.texi:28065 #, no-wrap msgid "{Data Type} knot-keystore-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27731 +#: guix-git/doc/guix.texi:28068 msgid "Data type representing a keystore to hold dnssec keys. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27735 +#: guix-git/doc/guix.texi:28072 msgid "The id of the keystore. It must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27736 +#: guix-git/doc/guix.texi:28073 #, no-wrap msgid "@code{backend} (default: @code{'pem})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27738 +#: guix-git/doc/guix.texi:28075 msgid "The backend to store the keys in. Can be @code{'pem} or @code{'pkcs11}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27739 +#: guix-git/doc/guix.texi:28076 #, no-wrap msgid "@code{config} (default: @code{\"/var/lib/knot/keys/keys\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27743 +#: guix-git/doc/guix.texi:28080 msgid "The configuration string of the backend. An example for the PKCS#11 is: @code{\"pkcs11:token=knot;pin-value=1234 /gnu/store/.../lib/pkcs11/libsofthsm2.so\"}. For the pem backend, the string represents a path in the file system." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27747 +#: guix-git/doc/guix.texi:28084 #, no-wrap msgid "{Data Type} knot-policy-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27751 +#: guix-git/doc/guix.texi:28088 msgid "Data type representing a dnssec policy. Knot DNS is able to automatically sign your zones. It can either generate and manage your keys automatically or use keys that you generate." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27758 +#: guix-git/doc/guix.texi:28095 msgid "Dnssec is usually implemented using two keys: a Key Signing Key (KSK) that is used to sign the second, and a Zone Signing Key (ZSK) that is used to sign the zone. In order to be trusted, the KSK needs to be present in the parent zone (usually a top-level domain). If your registrar supports dnssec, you will have to send them your KSK's hash so they can add a DS record in their zone. This is not automated and need to be done each time you change your KSK." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27764 +#: guix-git/doc/guix.texi:28101 msgid "The policy also defines the lifetime of keys. Usually, ZSK can be changed easily and use weaker cryptographic functions (they use lower parameters) in order to sign records quickly, so they are changed often. The KSK however requires manual interaction with the registrar, so they are changed less often and use stronger parameters because they sign only one record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27766 +#: guix-git/doc/guix.texi:28103 msgid "This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27770 +#: guix-git/doc/guix.texi:28107 msgid "The id of the policy. It must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27771 +#: guix-git/doc/guix.texi:28108 #, no-wrap msgid "@code{keystore} (default: @code{\"default\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27776 +#: guix-git/doc/guix.texi:28113 msgid "A reference to a keystore, that is a string containing the identifier of a keystore defined in a @code{knot-keystore-configuration} field. The @code{\"default\"} identifier means the default keystore (a kasp database that was setup by this service)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27777 +#: guix-git/doc/guix.texi:28114 #, no-wrap msgid "@code{manual?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27779 +#: guix-git/doc/guix.texi:28116 msgid "Whether the key management is manual or automatic." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27780 +#: guix-git/doc/guix.texi:28117 #, no-wrap msgid "@code{single-type-signing?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27782 +#: guix-git/doc/guix.texi:28119 msgid "When @code{#t}, use the Single-Type Signing Scheme." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27783 +#: guix-git/doc/guix.texi:28120 #, no-wrap msgid "@code{algorithm} (default: @code{\"ecdsap256sha256\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27785 +#: guix-git/doc/guix.texi:28122 msgid "An algorithm of signing keys and issued signatures." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27786 +#: guix-git/doc/guix.texi:28123 #, no-wrap msgid "@code{ksk-size} (default: @code{256})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27789 +#: guix-git/doc/guix.texi:28126 msgid "The length of the KSK@. Note that this value is correct for the default algorithm, but would be unsecure for other algorithms." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27790 +#: guix-git/doc/guix.texi:28127 #, no-wrap msgid "@code{zsk-size} (default: @code{256})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27793 +#: guix-git/doc/guix.texi:28130 msgid "The length of the ZSK@. Note that this value is correct for the default algorithm, but would be unsecure for other algorithms." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27794 +#: guix-git/doc/guix.texi:28131 #, no-wrap msgid "@code{dnskey-ttl} (default: @code{'default})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27797 +#: guix-git/doc/guix.texi:28134 msgid "The TTL value for DNSKEY records added into zone apex. The special @code{'default} value means same as the zone SOA TTL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27798 +#: guix-git/doc/guix.texi:28135 #, no-wrap msgid "@code{zsk-lifetime} (default: @code{(* 30 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27800 +#: guix-git/doc/guix.texi:28137 msgid "The period between ZSK publication and the next rollover initiation." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27801 +#: guix-git/doc/guix.texi:28138 #, no-wrap msgid "@code{propagation-delay} (default: @code{(* 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27804 +#: guix-git/doc/guix.texi:28141 msgid "An extra delay added for each key rollover step. This value should be high enough to cover propagation of data from the master server to all slaves." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27805 +#: guix-git/doc/guix.texi:28142 #, no-wrap msgid "@code{rrsig-lifetime} (default: @code{(* 14 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27807 +#: guix-git/doc/guix.texi:28144 msgid "A validity period of newly issued signatures." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27808 +#: guix-git/doc/guix.texi:28145 #, no-wrap msgid "@code{rrsig-refresh} (default: @code{(* 7 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27810 +#: guix-git/doc/guix.texi:28147 msgid "A period how long before a signature expiration the signature will be refreshed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27811 +#: guix-git/doc/guix.texi:28148 #, no-wrap msgid "@code{nsec3?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27813 +#: guix-git/doc/guix.texi:28150 msgid "When @code{#t}, NSEC3 will be used instead of NSEC." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27814 +#: guix-git/doc/guix.texi:28151 #, no-wrap msgid "@code{nsec3-iterations} (default: @code{5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27816 +#: guix-git/doc/guix.texi:28153 msgid "The number of additional times the hashing is performed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27817 +#: guix-git/doc/guix.texi:28154 #, no-wrap msgid "@code{nsec3-salt-length} (default: @code{8})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27820 +#: guix-git/doc/guix.texi:28157 msgid "The length of a salt field in octets, which is appended to the original owner name before hashing." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27821 +#: guix-git/doc/guix.texi:28158 #, no-wrap msgid "@code{nsec3-salt-lifetime} (default: @code{(* 30 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27823 +#: guix-git/doc/guix.texi:28160 msgid "The validity period of newly issued salt field." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27827 +#: guix-git/doc/guix.texi:28164 #, no-wrap msgid "{Data Type} knot-zone-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27830 +#: guix-git/doc/guix.texi:28167 msgid "Data type representing a zone served by Knot. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27832 +#: guix-git/doc/guix.texi:28169 #, no-wrap msgid "@code{domain} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27834 +#: guix-git/doc/guix.texi:28171 msgid "The domain served by this configuration. It must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27835 +#: guix-git/doc/guix.texi:28172 #, no-wrap msgid "@code{file} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27838 +#: guix-git/doc/guix.texi:28175 msgid "The file where this zone is saved. This parameter is ignored by master zones. Empty means default location that depends on the domain name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27839 +#: guix-git/doc/guix.texi:28176 #, no-wrap msgid "@code{zone} (default: @code{(zone-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27842 +#: guix-git/doc/guix.texi:28179 msgid "The content of the zone file. This parameter is ignored by slave zones. It must contain a zone-file record." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27843 +#: guix-git/doc/guix.texi:28180 #, no-wrap msgid "@code{master} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27846 +#: guix-git/doc/guix.texi:28183 msgid "A list of master remotes. When empty, this zone is a master. When set, this zone is a slave. This is a list of remotes identifiers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27847 +#: guix-git/doc/guix.texi:28184 #, no-wrap msgid "@code{ddns-master} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27850 +#: guix-git/doc/guix.texi:28187 msgid "The main master. When empty, it defaults to the first master in the list of masters." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27851 +#: guix-git/doc/guix.texi:28188 #, no-wrap msgid "@code{notify} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27853 +#: guix-git/doc/guix.texi:28190 msgid "A list of slave remote identifiers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27854 +#: guix-git/doc/guix.texi:28191 #, no-wrap msgid "@code{acl} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27856 +#: guix-git/doc/guix.texi:28193 msgid "A list of acl identifiers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27857 +#: guix-git/doc/guix.texi:28194 #, no-wrap msgid "@code{semantic-checks?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27859 +#: guix-git/doc/guix.texi:28196 msgid "When set, this adds more semantic checks to the zone." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27860 +#: guix-git/doc/guix.texi:28197 #, no-wrap msgid "@code{zonefile-sync} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27863 +#: guix-git/doc/guix.texi:28200 msgid "The delay between a modification in memory and on disk. 0 means immediate synchronization." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27864 +#: guix-git/doc/guix.texi:28201 #, no-wrap msgid "@code{zonefile-load} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27867 +#: guix-git/doc/guix.texi:28204 msgid "The way the zone file contents are applied during zone load. Possible values are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27869 +#: guix-git/doc/guix.texi:28206 #, no-wrap msgid "@code{#f} for using the default value from Knot," msgstr "" #. type: item -#: guix-git/doc/guix.texi:27870 +#: guix-git/doc/guix.texi:28207 #, no-wrap msgid "@code{'none} for not using the zone file at all," msgstr "" #. type: item -#: guix-git/doc/guix.texi:27871 +#: guix-git/doc/guix.texi:28208 #, no-wrap msgid "@code{'difference} for computing the difference between already available" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:27873 +#: guix-git/doc/guix.texi:28210 msgid "contents and zone contents and applying it to the current zone contents," msgstr "" #. type: item -#: guix-git/doc/guix.texi:27873 +#: guix-git/doc/guix.texi:28210 #, no-wrap msgid "@code{'difference-no-serial} for the same as @code{'difference}, but" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:27876 +#: guix-git/doc/guix.texi:28213 msgid "ignoring the SOA serial in the zone file, while the server takes care of it automatically." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27876 +#: guix-git/doc/guix.texi:28213 #, no-wrap msgid "@code{'whole} for loading zone contents from the zone file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27879 +#: guix-git/doc/guix.texi:28216 #, no-wrap msgid "@code{journal-content} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27884 +#: guix-git/doc/guix.texi:28221 msgid "The way the journal is used to store zone and its changes. Possible values are @code{'none} to not use it at all, @code{'changes} to store changes and @code{'all} to store contents. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27885 +#: guix-git/doc/guix.texi:28222 #, no-wrap msgid "@code{max-journal-usage} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27888 +#: guix-git/doc/guix.texi:28225 msgid "The maximum size for the journal on disk. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27889 +#: guix-git/doc/guix.texi:28226 #, no-wrap msgid "@code{max-journal-depth} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27892 +#: guix-git/doc/guix.texi:28229 msgid "The maximum size of the history. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27893 +#: guix-git/doc/guix.texi:28230 #, no-wrap msgid "@code{max-zone-size} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27897 +#: guix-git/doc/guix.texi:28234 msgid "The maximum size of the zone file. This limit is enforced for incoming transfer and updates. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27898 +#: guix-git/doc/guix.texi:28235 #, no-wrap msgid "@code{dnssec-policy} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27902 +#: guix-git/doc/guix.texi:28239 msgid "A reference to a @code{knot-policy-configuration} record, or the special name @code{\"default\"}. If the value is @code{#f}, there is no dnssec signing on this zone." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27903 +#: guix-git/doc/guix.texi:28240 #, no-wrap msgid "@code{serial-policy} (default: @code{'increment})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27905 +#: guix-git/doc/guix.texi:28242 msgid "A policy between @code{'increment} and @code{'unixtime}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27909 +#: guix-git/doc/guix.texi:28246 #, no-wrap msgid "{Data Type} knot-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27912 +#: guix-git/doc/guix.texi:28249 msgid "Data type representing the Knot configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27914 +#: guix-git/doc/guix.texi:28251 #, no-wrap msgid "@code{knot} (default: @code{knot})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27916 +#: guix-git/doc/guix.texi:28253 msgid "The Knot package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27917 +#: guix-git/doc/guix.texi:28254 #, no-wrap msgid "@code{run-directory} (default: @code{\"/var/run/knot\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27919 +#: guix-git/doc/guix.texi:28256 msgid "The run directory. This directory will be used for pid file and sockets." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27920 +#: guix-git/doc/guix.texi:28257 #, no-wrap msgid "@code{includes} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27923 +#: guix-git/doc/guix.texi:28260 msgid "A list of strings or file-like objects denoting other files that must be included at the top of the configuration file." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27924 +#: guix-git/doc/guix.texi:28261 #, no-wrap msgid "secrets, Knot service" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27930 +#: guix-git/doc/guix.texi:28267 msgid "This can be used to manage secrets out-of-band. For example, secret keys may be stored in an out-of-band file not managed by Guix, and thus not visible in @file{/gnu/store}---e.g., you could store secret key configuration in @file{/etc/knot/secrets.conf} and add this file to the @code{includes} list." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27935 +#: guix-git/doc/guix.texi:28272 msgid "One can generate a secret tsig key (for nsupdate and zone transfers with the keymgr command from the knot package. Note that the package is not automatically installed by the service. The following example shows how to generate a new tsig key:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:27939 +#: guix-git/doc/guix.texi:28276 #, no-wrap msgid "" "keymgr -t mysecret > /etc/knot/secrets.conf\n" @@ -50077,106 +50676,106 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27945 +#: guix-git/doc/guix.texi:28282 msgid "Also note that the generated key will be named @var{mysecret}, so it is the name that needs to be used in the @var{key} field of the @code{knot-acl-configuration} record and in other places that need to refer to that key." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27947 +#: guix-git/doc/guix.texi:28284 msgid "It can also be used to add configuration not supported by this interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27948 +#: guix-git/doc/guix.texi:28285 #, no-wrap msgid "@code{listen-v4} (default: @code{\"0.0.0.0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27950 guix-git/doc/guix.texi:27953 +#: guix-git/doc/guix.texi:28287 guix-git/doc/guix.texi:28290 msgid "An ip address on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27951 +#: guix-git/doc/guix.texi:28288 #, no-wrap msgid "@code{listen-v6} (default: @code{\"::\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27954 +#: guix-git/doc/guix.texi:28291 #, no-wrap msgid "@code{listen-port} (default: @code{53})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27956 +#: guix-git/doc/guix.texi:28293 msgid "A port on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27957 +#: guix-git/doc/guix.texi:28294 #, no-wrap msgid "@code{keys} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27959 +#: guix-git/doc/guix.texi:28296 msgid "The list of knot-key-configuration used by this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27960 +#: guix-git/doc/guix.texi:28297 #, no-wrap msgid "@code{acls} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27962 +#: guix-git/doc/guix.texi:28299 msgid "The list of knot-acl-configuration used by this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27963 +#: guix-git/doc/guix.texi:28300 #, no-wrap msgid "@code{remotes} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27965 +#: guix-git/doc/guix.texi:28302 msgid "The list of knot-remote-configuration used by this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27966 +#: guix-git/doc/guix.texi:28303 #, no-wrap msgid "@code{zones} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27968 +#: guix-git/doc/guix.texi:28305 msgid "The list of knot-zone-configuration used by this configuration." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27972 +#: guix-git/doc/guix.texi:28309 #, no-wrap msgid "Knot Resolver Service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27974 +#: guix-git/doc/guix.texi:28311 #, no-wrap msgid "{Scheme Variable} knot-resolver-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27977 +#: guix-git/doc/guix.texi:28314 msgid "This is the type of the knot resolver service, whose value should be an @code{knot-resolver-configuration} object as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27987 +#: guix-git/doc/guix.texi:28324 #, no-wrap msgid "" "(service knot-resolver-service-type\n" @@ -50190,73 +50789,73 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27990 +#: guix-git/doc/guix.texi:28327 msgid "For more information, refer its @url{https://knot-resolver.readthedocs.org/en/stable/daemon.html#configuration, manual}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27992 +#: guix-git/doc/guix.texi:28329 #, no-wrap msgid "{Data Type} knot-resolver-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27994 +#: guix-git/doc/guix.texi:28331 msgid "Data type representing the configuration of knot-resolver." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27996 +#: guix-git/doc/guix.texi:28333 #, no-wrap msgid "@code{package} (default: @var{knot-resolver})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27998 +#: guix-git/doc/guix.texi:28335 msgid "Package object of the knot DNS resolver." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27999 +#: guix-git/doc/guix.texi:28336 #, no-wrap msgid "@code{kresd-config-file} (default: %kresd.conf)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28002 +#: guix-git/doc/guix.texi:28339 msgid "File-like object of the kresd configuration file to use, by default it will listen on @code{127.0.0.1} and @code{::1}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28003 +#: guix-git/doc/guix.texi:28340 #, no-wrap msgid "@code{garbage-collection-interval} (default: 1000)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28005 +#: guix-git/doc/guix.texi:28342 msgid "Number of milliseconds for @code{kres-cache-gc} to periodically trim the cache." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28010 +#: guix-git/doc/guix.texi:28347 #, no-wrap msgid "Dnsmasq Service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28012 +#: guix-git/doc/guix.texi:28349 #, no-wrap msgid "{Scheme Variable} dnsmasq-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28015 +#: guix-git/doc/guix.texi:28352 msgid "This is the type of the dnsmasq service, whose value should be an @code{dnsmasq-configuration} object as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28021 +#: guix-git/doc/guix.texi:28358 #, no-wrap msgid "" "(service dnsmasq-service-type\n" @@ -50266,122 +50865,122 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28024 +#: guix-git/doc/guix.texi:28361 #, no-wrap msgid "{Data Type} dnsmasq-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28026 +#: guix-git/doc/guix.texi:28363 msgid "Data type representing the configuration of dnsmasq." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28028 +#: guix-git/doc/guix.texi:28365 #, no-wrap msgid "@code{package} (default: @var{dnsmasq})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28030 +#: guix-git/doc/guix.texi:28367 msgid "Package object of the dnsmasq server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28031 +#: guix-git/doc/guix.texi:28368 #, no-wrap msgid "@code{no-hosts?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28033 +#: guix-git/doc/guix.texi:28370 msgid "When true, don't read the hostnames in /etc/hosts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28034 +#: guix-git/doc/guix.texi:28371 #, no-wrap msgid "@code{port} (default: @code{53})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28037 +#: guix-git/doc/guix.texi:28374 msgid "The port to listen on. Setting this to zero completely disables DNS responses, leaving only DHCP and/or TFTP functions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28038 +#: guix-git/doc/guix.texi:28375 #, no-wrap msgid "@code{local-service?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28041 +#: guix-git/doc/guix.texi:28378 msgid "Accept DNS queries only from hosts whose address is on a local subnet, ie a subnet for which an interface exists on the server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28042 +#: guix-git/doc/guix.texi:28379 #, no-wrap msgid "@code{listen-addresses} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28044 +#: guix-git/doc/guix.texi:28381 msgid "Listen on the given IP addresses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28045 +#: guix-git/doc/guix.texi:28382 #, no-wrap msgid "@code{resolv-file} (default: @code{\"/etc/resolv.conf\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28047 +#: guix-git/doc/guix.texi:28384 msgid "The file to read the IP address of the upstream nameservers from." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28048 +#: guix-git/doc/guix.texi:28385 #, no-wrap msgid "@code{no-resolv?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28050 +#: guix-git/doc/guix.texi:28387 msgid "When true, don't read @var{resolv-file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28051 +#: guix-git/doc/guix.texi:28388 #, no-wrap msgid "@code{servers} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28053 +#: guix-git/doc/guix.texi:28390 msgid "Specify IP address of upstream servers directly." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28054 +#: guix-git/doc/guix.texi:28391 #, no-wrap msgid "@code{addresses} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28058 +#: guix-git/doc/guix.texi:28395 msgid "For each entry, specify an IP address to return for any host in the given domains. Queries in the domains are never forwarded and always replied to with the specified IP address." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28060 +#: guix-git/doc/guix.texi:28397 msgid "This is useful for redirecting hosts locally, for example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28069 +#: guix-git/doc/guix.texi:28406 #, no-wrap msgid "" "(service dnsmasq-service-type\n" @@ -50394,1007 +50993,1007 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28072 +#: guix-git/doc/guix.texi:28409 msgid "Note that rules in @file{/etc/hosts} take precedence over this." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28073 +#: guix-git/doc/guix.texi:28410 #, no-wrap msgid "@code{cache-size} (default: @code{150})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28076 +#: guix-git/doc/guix.texi:28413 msgid "Set the size of dnsmasq's cache. Setting the cache size to zero disables caching." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28077 +#: guix-git/doc/guix.texi:28414 #, no-wrap msgid "@code{negative-cache?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28079 +#: guix-git/doc/guix.texi:28416 msgid "When false, disable negative caching." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28080 +#: guix-git/doc/guix.texi:28417 #, no-wrap msgid "@code{tftp-enable?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28082 +#: guix-git/doc/guix.texi:28419 msgid "Whether to enable the built-in TFTP server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28083 +#: guix-git/doc/guix.texi:28420 #, no-wrap msgid "@code{tftp-no-fail?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28085 +#: guix-git/doc/guix.texi:28422 msgid "If true, does not fail dnsmasq if the TFTP server could not start up." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28086 +#: guix-git/doc/guix.texi:28423 #, no-wrap msgid "@code{tftp-single-port?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28088 +#: guix-git/doc/guix.texi:28425 msgid "Whether to use only one single port for TFTP." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28089 +#: guix-git/doc/guix.texi:28426 #, no-wrap msgid "@code{tftp-secure?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28091 +#: guix-git/doc/guix.texi:28428 msgid "If true, only files owned by the user running the dnsmasq process are accessible." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28095 +#: guix-git/doc/guix.texi:28432 msgid "If dnsmasq is being run as root, different rules apply: @code{tftp-secure?} has no effect, but only files which have the world-readable bit set are accessible." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28096 +#: guix-git/doc/guix.texi:28433 #, no-wrap msgid "@code{tftp-max} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28098 +#: guix-git/doc/guix.texi:28435 msgid "If set, sets the maximal number of concurrent connections allowed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28099 +#: guix-git/doc/guix.texi:28436 #, no-wrap msgid "@code{tftp-mtu} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28101 +#: guix-git/doc/guix.texi:28438 msgid "If set, sets the MTU for TFTP packets to that value." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28102 +#: guix-git/doc/guix.texi:28439 #, no-wrap msgid "@code{tftp-no-blocksize?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28104 +#: guix-git/doc/guix.texi:28441 msgid "If true, stops the TFTP server from negotiating the blocksize with a client." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28105 +#: guix-git/doc/guix.texi:28442 #, no-wrap msgid "@code{tftp-lowercase?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28107 +#: guix-git/doc/guix.texi:28444 msgid "Whether to convert all filenames in TFTP requests to lowercase." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28108 +#: guix-git/doc/guix.texi:28445 #, no-wrap msgid "@code{tftp-port-range} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28111 +#: guix-git/doc/guix.texi:28448 msgid "If set, fixes the dynamical ports (one per client) to the given range (@code{\",\"})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28112 +#: guix-git/doc/guix.texi:28449 #, no-wrap msgid "@code{tftp-root} (default: @code{/var/empty,lo})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28119 +#: guix-git/doc/guix.texi:28456 msgid "Look for files to transfer using TFTP relative to the given directory. When this is set, TFTP paths which include @samp{..} are rejected, to stop clients getting outside the specified root. Absolute paths (starting with @samp{/}) are allowed, but they must be within the TFTP-root. If the optional interface argument is given, the directory is only used for TFTP requests via that interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28120 +#: guix-git/doc/guix.texi:28457 #, no-wrap msgid "@code{tftp-unique-root} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28125 +#: guix-git/doc/guix.texi:28462 msgid "If set, add the IP or hardware address of the TFTP client as a path component on the end of the TFTP-root. Only valid if a TFTP root is set and the directory exists. Defaults to adding IP address (in standard dotted-quad format)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28134 +#: guix-git/doc/guix.texi:28471 msgid "For instance, if @option{--tftp-root} is @samp{/tftp} and client @samp{1.2.3.4} requests file @file{myfile} then the effective path will be @file{/tftp/1.2.3.4/myfile} if @file{/tftp/1.2.3.4} exists or @file{/tftp/myfile} otherwise. When @samp{=mac} is specified it will append the MAC address instead, using lowercase zero padded digits separated by dashes, e.g.: @samp{01-02-03-04-aa-bb}. Note that resolving MAC addresses is only possible if the client is in the local network or obtained a DHCP lease from dnsmasq." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28138 +#: guix-git/doc/guix.texi:28475 #, no-wrap msgid "ddclient Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28140 +#: guix-git/doc/guix.texi:28477 #, no-wrap msgid "ddclient" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28144 +#: guix-git/doc/guix.texi:28481 msgid "The ddclient service described below runs the ddclient daemon, which takes care of automatically updating DNS entries for service providers such as @uref{https://dyn.com/dns/, Dyn}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28147 +#: guix-git/doc/guix.texi:28484 msgid "The following example show instantiates the service with its default configuration:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28150 +#: guix-git/doc/guix.texi:28487 #, no-wrap msgid "(service ddclient-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28159 +#: guix-git/doc/guix.texi:28496 msgid "Note that ddclient needs to access credentials that are stored in a @dfn{secret file}, by default @file{/etc/ddclient/secrets} (see @code{secret-file} below). You are expected to create this file manually, in an ``out-of-band'' fashion (you @emph{could} make this file part of the service configuration, for instance by using @code{plain-file}, but it will be world-readable @i{via} @file{/gnu/store}). See the examples in the @file{share/ddclient} directory of the @code{ddclient} package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28163 +#: guix-git/doc/guix.texi:28500 msgid "Available @code{ddclient-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28164 +#: guix-git/doc/guix.texi:28501 #, no-wrap msgid "{@code{ddclient-configuration} parameter} package ddclient" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28166 +#: guix-git/doc/guix.texi:28503 msgid "The ddclient package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28169 +#: guix-git/doc/guix.texi:28506 #, no-wrap msgid "{@code{ddclient-configuration} parameter} integer daemon" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28171 +#: guix-git/doc/guix.texi:28508 msgid "The period after which ddclient will retry to check IP and domain name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28173 +#: guix-git/doc/guix.texi:28510 msgid "Defaults to @samp{300}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28176 +#: guix-git/doc/guix.texi:28513 #, no-wrap msgid "{@code{ddclient-configuration} parameter} boolean syslog" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28178 +#: guix-git/doc/guix.texi:28515 msgid "Use syslog for the output." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28183 +#: guix-git/doc/guix.texi:28520 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string mail" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28185 +#: guix-git/doc/guix.texi:28522 msgid "Mail to user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28187 guix-git/doc/guix.texi:28194 -#: guix-git/doc/guix.texi:29996 +#: guix-git/doc/guix.texi:28524 guix-git/doc/guix.texi:28531 +#: guix-git/doc/guix.texi:30361 msgid "Defaults to @samp{\"root\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28190 +#: guix-git/doc/guix.texi:28527 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string mail-failure" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28192 +#: guix-git/doc/guix.texi:28529 msgid "Mail failed update to user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28197 +#: guix-git/doc/guix.texi:28534 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string pid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28199 +#: guix-git/doc/guix.texi:28536 msgid "The ddclient PID file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28201 +#: guix-git/doc/guix.texi:28538 msgid "Defaults to @samp{\"/var/run/ddclient/ddclient.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28204 +#: guix-git/doc/guix.texi:28541 #, no-wrap msgid "{@code{ddclient-configuration} parameter} boolean ssl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28206 +#: guix-git/doc/guix.texi:28543 msgid "Enable SSL support." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28211 +#: guix-git/doc/guix.texi:28548 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28214 +#: guix-git/doc/guix.texi:28551 msgid "Specifies the user name or ID that is used when running ddclient program." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28216 guix-git/doc/guix.texi:28223 +#: guix-git/doc/guix.texi:28553 guix-git/doc/guix.texi:28560 msgid "Defaults to @samp{\"ddclient\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28219 +#: guix-git/doc/guix.texi:28556 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28221 +#: guix-git/doc/guix.texi:28558 msgid "Group of the user who will run the ddclient program." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28226 +#: guix-git/doc/guix.texi:28563 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string secret-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28230 +#: guix-git/doc/guix.texi:28567 msgid "Secret file which will be appended to @file{ddclient.conf} file. This file contains credentials for use by ddclient. You are expected to create it manually." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28232 +#: guix-git/doc/guix.texi:28569 msgid "Defaults to @samp{\"/etc/ddclient/secrets.conf\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28235 +#: guix-git/doc/guix.texi:28572 #, no-wrap msgid "{@code{ddclient-configuration} parameter} list extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28237 +#: guix-git/doc/guix.texi:28574 msgid "Extra options will be appended to @file{ddclient.conf} file." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28248 +#: guix-git/doc/guix.texi:28585 #, no-wrap msgid "VPN (virtual private network)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28249 +#: guix-git/doc/guix.texi:28586 #, no-wrap msgid "virtual private network (VPN)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28253 +#: guix-git/doc/guix.texi:28590 msgid "The @code{(gnu services vpn)} module provides services related to @dfn{virtual private networks} (VPNs)." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28254 +#: guix-git/doc/guix.texi:28591 #, no-wrap msgid "Bitmask" msgstr "Bitmask" #. type: defvr -#: guix-git/doc/guix.texi:28256 +#: guix-git/doc/guix.texi:28593 #, no-wrap msgid "{Scheme Variable} bitmask-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28261 +#: guix-git/doc/guix.texi:28598 msgid "A service type for the @uref{https://bitmask.net, Bitmask} VPN client. It makes the client available in the system and loads its polkit policy. Please note that the client expects an active polkit-agent, which is either run by your desktop-environment or should be run manually." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28263 +#: guix-git/doc/guix.texi:28600 #, no-wrap msgid "OpenVPN" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28267 +#: guix-git/doc/guix.texi:28604 msgid "It provides a @emph{client} service for your machine to connect to a VPN, and a @emph{server} service for your machine to host a VPN@." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28268 +#: guix-git/doc/guix.texi:28605 #, no-wrap msgid "{Scheme Procedure} openvpn-client-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28270 +#: guix-git/doc/guix.texi:28607 msgid "[#:config (openvpn-client-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28272 +#: guix-git/doc/guix.texi:28609 msgid "Return a service that runs @command{openvpn}, a VPN daemon, as a client." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28274 +#: guix-git/doc/guix.texi:28611 #, no-wrap msgid "{Scheme Procedure} openvpn-server-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28276 +#: guix-git/doc/guix.texi:28613 msgid "[#:config (openvpn-server-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28278 +#: guix-git/doc/guix.texi:28615 msgid "Return a service that runs @command{openvpn}, a VPN daemon, as a server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28280 +#: guix-git/doc/guix.texi:28617 msgid "Both can be run simultaneously." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28285 +#: guix-git/doc/guix.texi:28622 msgid "Available @code{openvpn-client-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28286 +#: guix-git/doc/guix.texi:28623 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} package openvpn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28288 guix-git/doc/guix.texi:28443 +#: guix-git/doc/guix.texi:28625 guix-git/doc/guix.texi:28780 msgid "The OpenVPN package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28291 +#: guix-git/doc/guix.texi:28628 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28293 guix-git/doc/guix.texi:28448 +#: guix-git/doc/guix.texi:28630 guix-git/doc/guix.texi:28785 msgid "The OpenVPN pid file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28295 guix-git/doc/guix.texi:28450 +#: guix-git/doc/guix.texi:28632 guix-git/doc/guix.texi:28787 msgid "Defaults to @samp{\"/var/run/openvpn/openvpn.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28298 +#: guix-git/doc/guix.texi:28635 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} proto proto" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28301 guix-git/doc/guix.texi:28456 +#: guix-git/doc/guix.texi:28638 guix-git/doc/guix.texi:28793 msgid "The protocol (UDP or TCP) used to open a channel between clients and servers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28303 guix-git/doc/guix.texi:28458 +#: guix-git/doc/guix.texi:28640 guix-git/doc/guix.texi:28795 msgid "Defaults to @samp{udp}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28306 +#: guix-git/doc/guix.texi:28643 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} dev dev" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28308 guix-git/doc/guix.texi:28463 +#: guix-git/doc/guix.texi:28645 guix-git/doc/guix.texi:28800 msgid "The device type used to represent the VPN connection." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28310 guix-git/doc/guix.texi:28465 +#: guix-git/doc/guix.texi:28647 guix-git/doc/guix.texi:28802 msgid "Defaults to @samp{tun}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28316 guix-git/doc/guix.texi:28471 +#: guix-git/doc/guix.texi:28653 guix-git/doc/guix.texi:28808 msgid "If you do not have some of these files (eg.@: you use a username and password), you can disable any of the following three fields by setting it to @code{'disabled}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28317 +#: guix-git/doc/guix.texi:28654 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string ca" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28319 guix-git/doc/guix.texi:28474 +#: guix-git/doc/guix.texi:28656 guix-git/doc/guix.texi:28811 msgid "The certificate authority to check connections against." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28321 guix-git/doc/guix.texi:28476 +#: guix-git/doc/guix.texi:28658 guix-git/doc/guix.texi:28813 msgid "Defaults to @samp{\"/etc/openvpn/ca.crt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28324 +#: guix-git/doc/guix.texi:28661 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28327 guix-git/doc/guix.texi:28482 +#: guix-git/doc/guix.texi:28664 guix-git/doc/guix.texi:28819 msgid "The certificate of the machine the daemon is running on. It should be signed by the authority given in @code{ca}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28329 guix-git/doc/guix.texi:28484 +#: guix-git/doc/guix.texi:28666 guix-git/doc/guix.texi:28821 msgid "Defaults to @samp{\"/etc/openvpn/client.crt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28332 +#: guix-git/doc/guix.texi:28669 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string key" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28335 guix-git/doc/guix.texi:28490 +#: guix-git/doc/guix.texi:28672 guix-git/doc/guix.texi:28827 msgid "The key of the machine the daemon is running on. It must be the key whose certificate is @code{cert}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28337 guix-git/doc/guix.texi:28492 +#: guix-git/doc/guix.texi:28674 guix-git/doc/guix.texi:28829 msgid "Defaults to @samp{\"/etc/openvpn/client.key\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28340 +#: guix-git/doc/guix.texi:28677 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean comp-lzo?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28342 guix-git/doc/guix.texi:28497 +#: guix-git/doc/guix.texi:28679 guix-git/doc/guix.texi:28834 msgid "Whether to use the lzo compression algorithm." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28347 +#: guix-git/doc/guix.texi:28684 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean persist-key?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28349 guix-git/doc/guix.texi:28504 +#: guix-git/doc/guix.texi:28686 guix-git/doc/guix.texi:28841 msgid "Don't re-read key files across SIGUSR1 or --ping-restart." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28354 +#: guix-git/doc/guix.texi:28691 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean persist-tun?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28357 guix-git/doc/guix.texi:28512 +#: guix-git/doc/guix.texi:28694 guix-git/doc/guix.texi:28849 msgid "Don't close and reopen TUN/TAP device or run up/down scripts across SIGUSR1 or --ping-restart restarts." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28362 +#: guix-git/doc/guix.texi:28699 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean fast-io?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28365 guix-git/doc/guix.texi:28520 +#: guix-git/doc/guix.texi:28702 guix-git/doc/guix.texi:28857 msgid "(Experimental) Optimize TUN/TAP/UDP I/O writes by avoiding a call to poll/epoll/select prior to the write operation." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28369 +#: guix-git/doc/guix.texi:28706 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} number verbosity" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28371 guix-git/doc/guix.texi:28526 +#: guix-git/doc/guix.texi:28708 guix-git/doc/guix.texi:28863 msgid "Verbosity level." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28373 guix-git/doc/guix.texi:28528 -#: guix-git/doc/guix.texi:30264 guix-git/doc/guix.texi:30488 +#: guix-git/doc/guix.texi:28710 guix-git/doc/guix.texi:28865 +#: guix-git/doc/guix.texi:30629 guix-git/doc/guix.texi:30853 msgid "Defaults to @samp{3}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28376 +#: guix-git/doc/guix.texi:28713 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} tls-auth-client tls-auth" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28379 guix-git/doc/guix.texi:28534 +#: guix-git/doc/guix.texi:28716 guix-git/doc/guix.texi:28871 msgid "Add an additional layer of HMAC authentication on top of the TLS control channel to protect against DoS attacks." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28384 +#: guix-git/doc/guix.texi:28721 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string auth-user-pass" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28388 +#: guix-git/doc/guix.texi:28725 msgid "Authenticate with server using username/password. The option is a file containing username/password on 2 lines. Do not use a file-like object as it would be added to the store and readable by any user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28390 +#: guix-git/doc/guix.texi:28727 msgid "Defaults to @samp{'disabled}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28392 +#: guix-git/doc/guix.texi:28729 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} key-usage verify-key-usage?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28394 +#: guix-git/doc/guix.texi:28731 msgid "Whether to check the server certificate has server usage extension." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28399 +#: guix-git/doc/guix.texi:28736 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} bind bind?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28401 +#: guix-git/doc/guix.texi:28738 msgid "Bind to a specific local port number." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28406 +#: guix-git/doc/guix.texi:28743 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} resolv-retry resolv-retry?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28408 +#: guix-git/doc/guix.texi:28745 msgid "Retry resolving server address." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28413 +#: guix-git/doc/guix.texi:28750 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} openvpn-remote-list remote" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28415 +#: guix-git/doc/guix.texi:28752 msgid "A list of remote servers to connect to." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28419 +#: guix-git/doc/guix.texi:28756 msgid "Available @code{openvpn-remote-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28420 +#: guix-git/doc/guix.texi:28757 #, no-wrap msgid "{@code{openvpn-remote-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28422 +#: guix-git/doc/guix.texi:28759 msgid "Server name." -msgstr "" +msgstr "Názov servera." #. type: deftypevr -#: guix-git/doc/guix.texi:28424 +#: guix-git/doc/guix.texi:28761 msgid "Defaults to @samp{\"my-server\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28427 +#: guix-git/doc/guix.texi:28764 #, no-wrap msgid "{@code{openvpn-remote-configuration} parameter} number port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28429 +#: guix-git/doc/guix.texi:28766 msgid "Port number the server listens to." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28431 guix-git/doc/guix.texi:28543 +#: guix-git/doc/guix.texi:28768 guix-git/doc/guix.texi:28880 msgid "Defaults to @samp{1194}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28440 +#: guix-git/doc/guix.texi:28777 msgid "Available @code{openvpn-server-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28441 +#: guix-git/doc/guix.texi:28778 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} package openvpn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28446 +#: guix-git/doc/guix.texi:28783 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28453 +#: guix-git/doc/guix.texi:28790 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} proto proto" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28461 +#: guix-git/doc/guix.texi:28798 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} dev dev" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28472 +#: guix-git/doc/guix.texi:28809 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string ca" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28479 +#: guix-git/doc/guix.texi:28816 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28487 +#: guix-git/doc/guix.texi:28824 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string key" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28495 +#: guix-git/doc/guix.texi:28832 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean comp-lzo?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28502 +#: guix-git/doc/guix.texi:28839 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean persist-key?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28509 +#: guix-git/doc/guix.texi:28846 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean persist-tun?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28517 +#: guix-git/doc/guix.texi:28854 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean fast-io?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28524 +#: guix-git/doc/guix.texi:28861 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number verbosity" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28531 +#: guix-git/doc/guix.texi:28868 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} tls-auth-server tls-auth" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28539 +#: guix-git/doc/guix.texi:28876 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28541 +#: guix-git/doc/guix.texi:28878 msgid "Specifies the port number on which the server listens." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28546 +#: guix-git/doc/guix.texi:28883 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} ip-mask server" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28548 +#: guix-git/doc/guix.texi:28885 msgid "An ip and mask specifying the subnet inside the virtual network." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28550 +#: guix-git/doc/guix.texi:28887 msgid "Defaults to @samp{\"10.8.0.0 255.255.255.0\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28553 +#: guix-git/doc/guix.texi:28890 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} cidr6 server-ipv6" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28555 +#: guix-git/doc/guix.texi:28892 msgid "A CIDR notation specifying the IPv6 subnet inside the virtual network." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28560 +#: guix-git/doc/guix.texi:28897 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string dh" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28562 +#: guix-git/doc/guix.texi:28899 msgid "The Diffie-Hellman parameters file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28564 +#: guix-git/doc/guix.texi:28901 msgid "Defaults to @samp{\"/etc/openvpn/dh2048.pem\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28567 +#: guix-git/doc/guix.texi:28904 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string ifconfig-pool-persist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28569 +#: guix-git/doc/guix.texi:28906 msgid "The file that records client IPs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28571 +#: guix-git/doc/guix.texi:28908 msgid "Defaults to @samp{\"/etc/openvpn/ipp.txt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28574 +#: guix-git/doc/guix.texi:28911 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} gateway redirect-gateway?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28576 +#: guix-git/doc/guix.texi:28913 msgid "When true, the server will act as a gateway for its clients." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28581 +#: guix-git/doc/guix.texi:28918 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean client-to-client?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28583 +#: guix-git/doc/guix.texi:28920 msgid "When true, clients are allowed to talk to each other inside the VPN." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28588 +#: guix-git/doc/guix.texi:28925 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} keepalive keepalive" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28594 +#: guix-git/doc/guix.texi:28931 msgid "Causes ping-like messages to be sent back and forth over the link so that each side knows when the other side has gone down. @code{keepalive} requires a pair. The first element is the period of the ping sending, and the second element is the timeout before considering the other side down." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28597 +#: guix-git/doc/guix.texi:28934 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28599 +#: guix-git/doc/guix.texi:28936 msgid "The maximum number of clients." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28604 +#: guix-git/doc/guix.texi:28941 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string status" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28607 +#: guix-git/doc/guix.texi:28944 msgid "The status file. This file shows a small report on current connection. It is truncated and rewritten every minute." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28609 +#: guix-git/doc/guix.texi:28946 msgid "Defaults to @samp{\"/var/run/openvpn/status\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28612 +#: guix-git/doc/guix.texi:28949 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} openvpn-ccd-list client-config-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28614 +#: guix-git/doc/guix.texi:28951 msgid "The list of configuration for some clients." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28618 +#: guix-git/doc/guix.texi:28955 msgid "Available @code{openvpn-ccd-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28619 +#: guix-git/doc/guix.texi:28956 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28621 +#: guix-git/doc/guix.texi:28958 msgid "Client name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28623 +#: guix-git/doc/guix.texi:28960 msgid "Defaults to @samp{\"client\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28626 +#: guix-git/doc/guix.texi:28963 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} ip-mask iroute" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28628 +#: guix-git/doc/guix.texi:28965 msgid "Client own network" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28633 +#: guix-git/doc/guix.texi:28970 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} ip-mask ifconfig-push" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28635 +#: guix-git/doc/guix.texi:28972 msgid "Client VPN IP." msgstr "" #. type: subheading -#: guix-git/doc/guix.texi:28644 +#: guix-git/doc/guix.texi:28981 #, no-wrap msgid "strongSwan" msgstr "strongSwan" #. type: Plain text -#: guix-git/doc/guix.texi:28648 +#: guix-git/doc/guix.texi:28985 msgid "Currently, the strongSwan service only provides legacy-style configuration with @file{ipsec.conf} and @file{ipsec.secrets} files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28649 +#: guix-git/doc/guix.texi:28986 #, no-wrap msgid "{Scheme Variable} strongswan-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28653 +#: guix-git/doc/guix.texi:28990 msgid "A service type for configuring strongSwan for IPsec @acronym{VPN, Virtual Private Networking}. Its value must be a @code{strongswan-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28659 +#: guix-git/doc/guix.texi:28996 #, no-wrap msgid "" "(service strongswan-service-type\n" @@ -51404,68 +52003,68 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28663 +#: guix-git/doc/guix.texi:29000 #, no-wrap msgid "{Data Type} strongswan-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28665 +#: guix-git/doc/guix.texi:29002 msgid "Data type representing the configuration of the StrongSwan service." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:28667 +#: guix-git/doc/guix.texi:29004 #, no-wrap msgid "strongswan" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28669 +#: guix-git/doc/guix.texi:29006 msgid "The strongSwan package to use for this service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28670 +#: guix-git/doc/guix.texi:29007 #, no-wrap msgid "@code{ipsec-conf} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28673 +#: guix-git/doc/guix.texi:29010 msgid "The file name of your @file{ipsec.conf}. If not @code{#f}, then this and @code{ipsec-secrets} must both be strings." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28674 +#: guix-git/doc/guix.texi:29011 #, no-wrap msgid "@code{ipsec-secrets} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28677 +#: guix-git/doc/guix.texi:29014 msgid "The file name of your @file{ipsec.secrets}. If not @code{#f}, then this and @code{ipsec-conf} must both be strings." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28681 +#: guix-git/doc/guix.texi:29018 #, no-wrap msgid "Wireguard" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28683 +#: guix-git/doc/guix.texi:29020 #, no-wrap msgid "{Scheme Variable} wireguard-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28686 +#: guix-git/doc/guix.texi:29023 msgid "A service type for a Wireguard tunnel interface. Its value must be a @code{wireguard-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28697 +#: guix-git/doc/guix.texi:29034 #, no-wrap msgid "" "(service wireguard-service-type\n" @@ -51480,250 +52079,250 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28701 +#: guix-git/doc/guix.texi:29038 #, no-wrap msgid "{Data Type} wireguard-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28703 +#: guix-git/doc/guix.texi:29040 msgid "Data type representing the configuration of the Wireguard service." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:28705 +#: guix-git/doc/guix.texi:29042 #, no-wrap msgid "wireguard" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28707 +#: guix-git/doc/guix.texi:29044 msgid "The wireguard package to use for this service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28708 +#: guix-git/doc/guix.texi:29045 #, no-wrap msgid "@code{interface} (default: @code{\"wg0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28710 +#: guix-git/doc/guix.texi:29047 msgid "The interface name for the VPN." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28711 +#: guix-git/doc/guix.texi:29048 #, no-wrap msgid "@code{addresses} (default: @code{'(\"10.0.0.1/32\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28713 +#: guix-git/doc/guix.texi:29050 msgid "The IP addresses to be assigned to the above interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28714 +#: guix-git/doc/guix.texi:29051 #, no-wrap msgid "@code{port} (default: @code{51820})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28716 +#: guix-git/doc/guix.texi:29053 msgid "The port on which to listen for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28717 +#: guix-git/doc/guix.texi:29054 #, no-wrap msgid "@code{dns} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28719 +#: guix-git/doc/guix.texi:29056 msgid "The DNS server(s) to announce to VPN clients via DHCP." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28720 +#: guix-git/doc/guix.texi:29057 #, no-wrap msgid "@code{private-key} (default: @code{\"/etc/wireguard/private.key\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28723 +#: guix-git/doc/guix.texi:29060 msgid "The private key file for the interface. It is automatically generated if the file does not exist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28724 +#: guix-git/doc/guix.texi:29061 #, no-wrap msgid "@code{peers} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28727 +#: guix-git/doc/guix.texi:29064 msgid "The authorized peers on this interface. This is a list of @var{wireguard-peer} records." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28731 +#: guix-git/doc/guix.texi:29068 #, no-wrap msgid "{Data Type} wireguard-peer" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28733 +#: guix-git/doc/guix.texi:29070 msgid "Data type representing a Wireguard peer attached to a given interface." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28737 +#: guix-git/doc/guix.texi:29074 msgid "The peer name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28738 +#: guix-git/doc/guix.texi:29075 #, no-wrap msgid "@code{endpoint} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28741 +#: guix-git/doc/guix.texi:29078 msgid "The optional endpoint for the peer, such as @code{\"demo.wireguard.com:51820\"}." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:28742 guix-git/doc/guix.texi:29137 -#: guix-git/doc/guix.texi:29174 guix-git/doc/guix.texi:34305 +#: guix-git/doc/guix.texi:29079 guix-git/doc/guix.texi:29474 +#: guix-git/doc/guix.texi:29511 guix-git/doc/guix.texi:34744 #, no-wrap msgid "public-key" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28744 +#: guix-git/doc/guix.texi:29081 msgid "The peer public-key represented as a base64 string." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:28745 +#: guix-git/doc/guix.texi:29082 #, no-wrap msgid "allowed-ips" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28748 +#: guix-git/doc/guix.texi:29085 msgid "A list of IP addresses from which incoming traffic for this peer is allowed and to which incoming traffic for this peer is directed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28749 +#: guix-git/doc/guix.texi:29086 #, no-wrap msgid "@code{keep-alive} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28754 +#: guix-git/doc/guix.texi:29091 msgid "An optional time interval in seconds. A packet will be sent to the server endpoint once per time interval. This helps receiving incoming connections from this peer when you are behind a NAT or a firewall." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28760 +#: guix-git/doc/guix.texi:29097 #, no-wrap msgid "NFS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28765 +#: guix-git/doc/guix.texi:29102 msgid "The @code{(gnu services nfs)} module provides the following services, which are most commonly used in relation to mounting or exporting directory trees as @dfn{network file systems} (NFS)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28769 +#: guix-git/doc/guix.texi:29106 msgid "While it is possible to use the individual components that together make up a Network File System service, we recommended to configure an NFS server with the @code{nfs-service-type}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28770 +#: guix-git/doc/guix.texi:29107 #, no-wrap msgid "NFS Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28771 +#: guix-git/doc/guix.texi:29108 #, no-wrap msgid "NFS, server" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28776 +#: guix-git/doc/guix.texi:29113 msgid "The NFS service takes care of setting up all NFS component services, kernel configuration file systems, and installs configuration files in the locations that NFS expects." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28777 +#: guix-git/doc/guix.texi:29114 #, no-wrap msgid "{Scheme Variable} nfs-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28779 +#: guix-git/doc/guix.texi:29116 msgid "A service type for a complete NFS server." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28781 +#: guix-git/doc/guix.texi:29118 #, no-wrap msgid "{Data Type} nfs-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28784 +#: guix-git/doc/guix.texi:29121 msgid "This data type represents the configuration of the NFS service and all of its subsystems." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28786 +#: guix-git/doc/guix.texi:29123 msgid "It has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28787 guix-git/doc/guix.texi:28912 -#: guix-git/doc/guix.texi:28937 +#: guix-git/doc/guix.texi:29124 guix-git/doc/guix.texi:29249 +#: guix-git/doc/guix.texi:29274 #, no-wrap msgid "@code{nfs-utils} (default: @code{nfs-utils})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28789 +#: guix-git/doc/guix.texi:29126 msgid "The nfs-utils package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28790 +#: guix-git/doc/guix.texi:29127 #, no-wrap msgid "@code{nfs-versions} (default: @code{'(\"4.2\" \"4.1\" \"4.0\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28793 +#: guix-git/doc/guix.texi:29130 msgid "If a list of string values is provided, the @command{rpc.nfsd} daemon will be limited to supporting the given versions of the NFS protocol." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28794 +#: guix-git/doc/guix.texi:29131 #, no-wrap msgid "@code{exports} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28799 +#: guix-git/doc/guix.texi:29136 msgid "This is a list of directories the NFS server should export. Each entry is a list consisting of two elements: a directory name and a string containing all options. This is an example in which the directory @file{/export} is served to all NFS clients as a read-only share:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28805 +#: guix-git/doc/guix.texi:29142 #, no-wrap msgid "" "(nfs-configuration\n" @@ -51733,384 +52332,384 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28807 +#: guix-git/doc/guix.texi:29144 #, no-wrap msgid "@code{rpcmountd-port} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28809 +#: guix-git/doc/guix.texi:29146 msgid "The network port that the @command{rpc.mountd} daemon should use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28810 +#: guix-git/doc/guix.texi:29147 #, no-wrap msgid "@code{rpcstatd-port} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28812 +#: guix-git/doc/guix.texi:29149 msgid "The network port that the @command{rpc.statd} daemon should use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28813 guix-git/doc/guix.texi:28861 +#: guix-git/doc/guix.texi:29150 guix-git/doc/guix.texi:29198 #, no-wrap msgid "@code{rpcbind} (default: @code{rpcbind})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28815 guix-git/doc/guix.texi:28863 +#: guix-git/doc/guix.texi:29152 guix-git/doc/guix.texi:29200 msgid "The rpcbind package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28816 +#: guix-git/doc/guix.texi:29153 #, no-wrap msgid "@code{idmap-domain} (default: @code{\"localdomain\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28818 +#: guix-git/doc/guix.texi:29155 msgid "The local NFSv4 domain name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28819 +#: guix-git/doc/guix.texi:29156 #, no-wrap msgid "@code{nfsd-port} (default: @code{2049})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28821 +#: guix-git/doc/guix.texi:29158 msgid "The network port that the @command{nfsd} daemon should use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28822 +#: guix-git/doc/guix.texi:29159 #, no-wrap msgid "@code{nfsd-threads} (default: @code{8})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28824 +#: guix-git/doc/guix.texi:29161 msgid "The number of threads used by the @command{nfsd} daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28825 +#: guix-git/doc/guix.texi:29162 #, no-wrap msgid "@code{nfsd-tcp?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28827 +#: guix-git/doc/guix.texi:29164 msgid "Whether the @command{nfsd} daemon should listen on a TCP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28828 +#: guix-git/doc/guix.texi:29165 #, no-wrap msgid "@code{nfsd-udp?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28830 +#: guix-git/doc/guix.texi:29167 msgid "Whether the @command{nfsd} daemon should listen on a UDP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28831 guix-git/doc/guix.texi:28915 -#: guix-git/doc/guix.texi:28940 +#: guix-git/doc/guix.texi:29168 guix-git/doc/guix.texi:29252 +#: guix-git/doc/guix.texi:29277 #, no-wrap msgid "@code{pipefs-directory} (default: @code{\"/var/lib/nfs/rpc_pipefs\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28833 guix-git/doc/guix.texi:28917 -#: guix-git/doc/guix.texi:28942 +#: guix-git/doc/guix.texi:29170 guix-git/doc/guix.texi:29254 +#: guix-git/doc/guix.texi:29279 msgid "The directory where the pipefs file system is mounted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28834 +#: guix-git/doc/guix.texi:29171 #, no-wrap msgid "@code{debug} (default: @code{'()\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28838 +#: guix-git/doc/guix.texi:29175 msgid "A list of subsystems for which debugging output should be enabled. This is a list of symbols. Any of these symbols are valid: @code{nfsd}, @code{nfs}, @code{rpc}, @code{idmap}, @code{statd}, or @code{mountd}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28843 +#: guix-git/doc/guix.texi:29180 msgid "If you don't need a complete NFS service or prefer to build it yourself you can use the individual component services that are documented below." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28844 +#: guix-git/doc/guix.texi:29181 #, no-wrap msgid "RPC Bind Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28845 +#: guix-git/doc/guix.texi:29182 #, no-wrap msgid "rpcbind" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28851 +#: guix-git/doc/guix.texi:29188 msgid "The RPC Bind service provides a facility to map program numbers into universal addresses. Many NFS related services use this facility. Hence it is automatically started when a dependent service starts." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28852 +#: guix-git/doc/guix.texi:29189 #, no-wrap msgid "{Scheme Variable} rpcbind-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28854 +#: guix-git/doc/guix.texi:29191 msgid "A service type for the RPC portmapper daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28857 +#: guix-git/doc/guix.texi:29194 #, no-wrap msgid "{Data Type} rpcbind-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28860 +#: guix-git/doc/guix.texi:29197 msgid "Data type representing the configuration of the RPC Bind Service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28864 +#: guix-git/doc/guix.texi:29201 #, no-wrap msgid "@code{warm-start?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28868 +#: guix-git/doc/guix.texi:29205 msgid "If this parameter is @code{#t}, then the daemon will read a state file on startup thus reloading state information saved by a previous instance." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28872 +#: guix-git/doc/guix.texi:29209 #, no-wrap msgid "Pipefs Pseudo File System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28873 +#: guix-git/doc/guix.texi:29210 #, no-wrap msgid "pipefs" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28874 +#: guix-git/doc/guix.texi:29211 #, no-wrap msgid "rpc_pipefs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28878 +#: guix-git/doc/guix.texi:29215 msgid "The pipefs file system is used to transfer NFS related data between the kernel and user space programs." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28879 +#: guix-git/doc/guix.texi:29216 #, no-wrap msgid "{Scheme Variable} pipefs-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28881 +#: guix-git/doc/guix.texi:29218 msgid "A service type for the pipefs pseudo file system." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28883 +#: guix-git/doc/guix.texi:29220 #, no-wrap msgid "{Data Type} pipefs-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28886 +#: guix-git/doc/guix.texi:29223 msgid "Data type representing the configuration of the pipefs pseudo file system service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28887 +#: guix-git/doc/guix.texi:29224 #, no-wrap msgid "@code{mount-point} (default: @code{\"/var/lib/nfs/rpc_pipefs\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28889 +#: guix-git/doc/guix.texi:29226 msgid "The directory to which the file system is to be attached." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28893 +#: guix-git/doc/guix.texi:29230 #, no-wrap msgid "GSS Daemon Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28894 +#: guix-git/doc/guix.texi:29231 #, no-wrap msgid "GSSD" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28895 +#: guix-git/doc/guix.texi:29232 #, no-wrap msgid "GSS" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28896 +#: guix-git/doc/guix.texi:29233 #, no-wrap msgid "global security system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28903 +#: guix-git/doc/guix.texi:29240 msgid "The @dfn{global security system} (GSS) daemon provides strong security for RPC based protocols. Before exchanging RPC requests an RPC client must establish a security context. Typically this is done using the Kerberos command @command{kinit} or automatically at login time using PAM services (@pxref{Kerberos Services})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28904 +#: guix-git/doc/guix.texi:29241 #, no-wrap msgid "{Scheme Variable} gss-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28906 +#: guix-git/doc/guix.texi:29243 msgid "A service type for the Global Security System (GSS) daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28908 +#: guix-git/doc/guix.texi:29245 #, no-wrap msgid "{Data Type} gss-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28911 +#: guix-git/doc/guix.texi:29248 msgid "Data type representing the configuration of the GSS daemon service. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28914 +#: guix-git/doc/guix.texi:29251 msgid "The package in which the @command{rpc.gssd} command is to be found." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28922 +#: guix-git/doc/guix.texi:29259 #, no-wrap msgid "IDMAP Daemon Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28923 +#: guix-git/doc/guix.texi:29260 #, no-wrap msgid "idmapd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28924 +#: guix-git/doc/guix.texi:29261 #, no-wrap msgid "name mapper" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28928 +#: guix-git/doc/guix.texi:29265 msgid "The idmap daemon service provides mapping between user IDs and user names. Typically it is required in order to access file systems mounted via NFSv4." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28929 +#: guix-git/doc/guix.texi:29266 #, no-wrap msgid "{Scheme Variable} idmap-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28931 +#: guix-git/doc/guix.texi:29268 msgid "A service type for the Identity Mapper (IDMAP) daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28933 +#: guix-git/doc/guix.texi:29270 #, no-wrap msgid "{Data Type} idmap-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28936 +#: guix-git/doc/guix.texi:29273 msgid "Data type representing the configuration of the IDMAP daemon service. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28939 +#: guix-git/doc/guix.texi:29276 msgid "The package in which the @command{rpc.idmapd} command is to be found." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28943 +#: guix-git/doc/guix.texi:29280 #, no-wrap msgid "@code{domain} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28947 +#: guix-git/doc/guix.texi:29284 msgid "The local NFSv4 domain name. This must be a string or @code{#f}. If it is @code{#f} then the daemon will use the host's fully qualified domain name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28948 +#: guix-git/doc/guix.texi:29285 #, no-wrap msgid "@code{verbosity} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28950 +#: guix-git/doc/guix.texi:29287 msgid "The verbosity level of the daemon." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28961 +#: guix-git/doc/guix.texi:29298 msgid "@uref{https://guix.gnu.org/cuirass/, Cuirass} is a continuous integration tool for Guix. It can be used both for development and for providing substitutes to others (@pxref{Substitutes})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28963 +#: guix-git/doc/guix.texi:29300 msgid "The @code{(gnu services cuirass)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28964 +#: guix-git/doc/guix.texi:29301 #, no-wrap msgid "{Scheme Procedure} cuirass-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28967 +#: guix-git/doc/guix.texi:29304 msgid "The type of the Cuirass service. Its value must be a @code{cuirass-configuration} object, as described below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28972 +#: guix-git/doc/guix.texi:29309 msgid "To add build jobs, you have to set the @code{specifications} field of the configuration. For instance, the following example will build all the packages provided by the @code{my-channel} channel." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28983 +#: guix-git/doc/guix.texi:29320 #, no-wrap msgid "" "(define %cuirass-specs\n" @@ -52126,7 +52725,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28987 guix-git/doc/guix.texi:29001 +#: guix-git/doc/guix.texi:29324 guix-git/doc/guix.texi:29338 #, no-wrap msgid "" "(service cuirass-service-type\n" @@ -52135,12 +52734,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28991 +#: guix-git/doc/guix.texi:29328 msgid "To build the @code{linux-libre} package defined by the default Guix channel, one can use the following configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28997 +#: guix-git/doc/guix.texi:29334 #, no-wrap msgid "" "(define %cuirass-specs\n" @@ -52151,572 +52750,572 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29006 +#: guix-git/doc/guix.texi:29343 msgid "The other configuration possibilities, as well as the specification record itself are described in the Cuirass manual (@pxref{Specifications,,, cuirass, Cuirass})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29010 +#: guix-git/doc/guix.texi:29347 msgid "While information related to build jobs is located directly in the specifications, global settings for the @command{cuirass} process are accessible in other @code{cuirass-configuration} fields." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29011 +#: guix-git/doc/guix.texi:29348 #, no-wrap msgid "{Data Type} cuirass-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29013 +#: guix-git/doc/guix.texi:29350 msgid "Data type representing the configuration of Cuirass." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29015 guix-git/doc/guix.texi:29152 +#: guix-git/doc/guix.texi:29352 guix-git/doc/guix.texi:29489 #, no-wrap msgid "@code{cuirass} (default: @code{cuirass})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29017 guix-git/doc/guix.texi:29154 +#: guix-git/doc/guix.texi:29354 guix-git/doc/guix.texi:29491 msgid "The Cuirass package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29018 +#: guix-git/doc/guix.texi:29355 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29020 guix-git/doc/guix.texi:29124 -#: guix-git/doc/guix.texi:29167 +#: guix-git/doc/guix.texi:29357 guix-git/doc/guix.texi:29461 +#: guix-git/doc/guix.texi:29504 msgid "Location of the log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29021 +#: guix-git/doc/guix.texi:29358 #, no-wrap msgid "@code{web-log-file} (default: @code{\"/var/log/cuirass-web.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29023 +#: guix-git/doc/guix.texi:29360 msgid "Location of the log file used by the web interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29024 +#: guix-git/doc/guix.texi:29361 #, no-wrap msgid "@code{cache-directory} (default: @code{\"/var/cache/cuirass\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29026 +#: guix-git/doc/guix.texi:29363 msgid "Location of the repository cache." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29027 +#: guix-git/doc/guix.texi:29364 #, no-wrap msgid "@code{user} (default: @code{\"cuirass\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29029 +#: guix-git/doc/guix.texi:29366 msgid "Owner of the @code{cuirass} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29030 +#: guix-git/doc/guix.texi:29367 #, no-wrap msgid "@code{group} (default: @code{\"cuirass\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29032 +#: guix-git/doc/guix.texi:29369 msgid "Owner's group of the @code{cuirass} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29033 +#: guix-git/doc/guix.texi:29370 #, no-wrap msgid "@code{interval} (default: @code{60})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29036 +#: guix-git/doc/guix.texi:29373 msgid "Number of seconds between the poll of the repositories followed by the Cuirass jobs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29037 +#: guix-git/doc/guix.texi:29374 #, no-wrap msgid "@code{parameters} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29040 +#: guix-git/doc/guix.texi:29377 msgid "Read parameters from the given @var{parameters} file. The supported parameters are described here (@pxref{Parameters,,, cuirass, Cuirass})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29041 +#: guix-git/doc/guix.texi:29378 #, no-wrap msgid "@code{remote-server} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29044 +#: guix-git/doc/guix.texi:29381 msgid "A @code{cuirass-remote-server-configuration} record to use the build remote mechanism or @code{#f} to use the default build mechanism." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29045 +#: guix-git/doc/guix.texi:29382 #, no-wrap msgid "@code{database} (default: @code{\"dbname=cuirass host=/var/run/postgresql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29050 +#: guix-git/doc/guix.texi:29387 msgid "Use @var{database} as the database containing the jobs and the past build results. Since Cuirass uses PostgreSQL as a database engine, @var{database} must be a string such as @code{\"dbname=cuirass host=localhost\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29051 +#: guix-git/doc/guix.texi:29388 #, no-wrap msgid "@code{port} (default: @code{8081})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29053 +#: guix-git/doc/guix.texi:29390 msgid "Port number used by the HTTP server." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29057 +#: guix-git/doc/guix.texi:29394 msgid "Listen on the network interface for @var{host}. The default is to accept connections from localhost." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29058 +#: guix-git/doc/guix.texi:29395 #, no-wrap msgid "@code{specifications} (default: @code{#~'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29062 +#: guix-git/doc/guix.texi:29399 msgid "A gexp (@pxref{G-Expressions}) that evaluates to a list of specifications records. The specification record is described in the Cuirass manual (@pxref{Specifications,,, cuirass, Cuirass})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29063 +#: guix-git/doc/guix.texi:29400 #, no-wrap msgid "@code{use-substitutes?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29066 +#: guix-git/doc/guix.texi:29403 msgid "This allows using substitutes to avoid building every dependencies of a job from source." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29067 guix-git/doc/guix.texi:36336 +#: guix-git/doc/guix.texi:29404 guix-git/doc/guix.texi:36826 #, no-wrap msgid "@code{one-shot?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29069 +#: guix-git/doc/guix.texi:29406 msgid "Only evaluate specifications and build derivations once." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29070 +#: guix-git/doc/guix.texi:29407 #, no-wrap msgid "@code{fallback?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29073 +#: guix-git/doc/guix.texi:29410 msgid "When substituting a pre-built binary fails, fall back to building packages locally." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29076 +#: guix-git/doc/guix.texi:29413 msgid "Extra options to pass when running the Cuirass processes." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29080 +#: guix-git/doc/guix.texi:29417 #, no-wrap msgid "remote build" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29081 +#: guix-git/doc/guix.texi:29418 #, no-wrap msgid "Cuirass remote building" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29084 +#: guix-git/doc/guix.texi:29421 msgid "Cuirass supports two mechanisms to build derivations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29086 +#: guix-git/doc/guix.texi:29423 #, no-wrap msgid "Using the local Guix daemon." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:29090 +#: guix-git/doc/guix.texi:29427 msgid "This is the default build mechanism. Once the build jobs are evaluated, they are sent to the local Guix daemon. Cuirass then listens to the Guix daemon output to detect the various build events." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29091 +#: guix-git/doc/guix.texi:29428 #, no-wrap msgid "Using the remote build mechanism." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:29095 +#: guix-git/doc/guix.texi:29432 msgid "The build jobs are not submitted to the local Guix daemon. Instead, a remote server dispatches build requests to the connect remote workers, according to the build priorities." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29102 +#: guix-git/doc/guix.texi:29439 msgid "To enable this build mode a @code{cuirass-remote-server-configuration} record must be passed as @code{remote-server} argument of the @code{cuirass-configuration} record. The @code{cuirass-remote-server-configuration} record is described below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29107 +#: guix-git/doc/guix.texi:29444 msgid "This build mode scales way better than the default build mode. This is the build mode that is used on the GNU Guix build farm at @url{https://ci.guix.gnu.org}. It should be preferred when using Cuirass to build large amount of packages." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29108 +#: guix-git/doc/guix.texi:29445 #, no-wrap msgid "{Data Type} cuirass-remote-server-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29110 +#: guix-git/doc/guix.texi:29447 msgid "Data type representing the configuration of the Cuirass remote-server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29112 +#: guix-git/doc/guix.texi:29449 #, no-wrap msgid "@code{backend-port} (default: @code{5555})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29115 +#: guix-git/doc/guix.texi:29452 msgid "The TCP port for communicating with @code{remote-worker} processes using ZMQ. It defaults to @code{5555}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29116 +#: guix-git/doc/guix.texi:29453 #, no-wrap msgid "@code{log-port} (default: @code{5556})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29118 +#: guix-git/doc/guix.texi:29455 msgid "The TCP port of the log server. It defaults to @code{5556}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29119 +#: guix-git/doc/guix.texi:29456 #, no-wrap msgid "@code{publish-port} (default: @code{5557})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29121 +#: guix-git/doc/guix.texi:29458 msgid "The TCP port of the publish server. It defaults to @code{5557}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29122 +#: guix-git/doc/guix.texi:29459 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass-remote-server.log\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:29125 +#: guix-git/doc/guix.texi:29462 #, no-wrap msgid "@code{cache} (default: @code{\"/var/cache/cuirass/remote\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29127 +#: guix-git/doc/guix.texi:29464 msgid "Use @var{cache} directory to cache build log files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29128 +#: guix-git/doc/guix.texi:29465 #, no-wrap msgid "@code{trigger-url} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29131 +#: guix-git/doc/guix.texi:29468 msgid "Once a substitute is successfully fetched, trigger substitute baking at @var{trigger-url}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29136 +#: guix-git/doc/guix.texi:29473 msgid "If set to false, do not start a publish server and ignore the @code{publish-port} argument. This can be useful if there is already a standalone publish server standing next to the remote server." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:29138 guix-git/doc/guix.texi:29175 +#: guix-git/doc/guix.texi:29475 guix-git/doc/guix.texi:29512 #, no-wrap msgid "private-key" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29147 +#: guix-git/doc/guix.texi:29484 msgid "At least one remote worker must also be started on any machine of the local network to actually perform the builds and report their status." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29148 +#: guix-git/doc/guix.texi:29485 #, no-wrap msgid "{Data Type} cuirass-remote-worker-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29150 +#: guix-git/doc/guix.texi:29487 msgid "Data type representing the configuration of the Cuirass remote-worker." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29155 +#: guix-git/doc/guix.texi:29492 #, no-wrap msgid "@code{workers} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29157 +#: guix-git/doc/guix.texi:29494 msgid "Start @var{workers} parallel workers." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29161 +#: guix-git/doc/guix.texi:29498 msgid "Do not use Avahi discovery and connect to the given @code{server} IP address instead." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29162 +#: guix-git/doc/guix.texi:29499 #, no-wrap msgid "@code{systems} (default: @code{(list (%current-system))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29164 +#: guix-git/doc/guix.texi:29501 msgid "Only request builds for the given @var{systems}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29165 +#: guix-git/doc/guix.texi:29502 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass-remote-worker.log\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:29168 +#: guix-git/doc/guix.texi:29505 #, no-wrap msgid "@code{publish-port} (default: @code{5558})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29170 +#: guix-git/doc/guix.texi:29507 msgid "The TCP port of the publish server. It defaults to @code{5558}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29182 +#: guix-git/doc/guix.texi:29519 #, no-wrap msgid "Laminar" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29187 +#: guix-git/doc/guix.texi:29524 msgid "@uref{https://laminar.ohwg.net/, Laminar} is a lightweight and modular Continuous Integration service. It doesn't have a configuration web UI instead uses version-controllable configuration files and scripts." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29190 +#: guix-git/doc/guix.texi:29527 msgid "Laminar encourages the use of existing tools such as bash and cron instead of reinventing them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29191 +#: guix-git/doc/guix.texi:29528 #, no-wrap msgid "{Scheme Procedure} laminar-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29194 +#: guix-git/doc/guix.texi:29531 msgid "The type of the Laminar service. Its value must be a @code{laminar-configuration} object, as described below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29198 +#: guix-git/doc/guix.texi:29535 msgid "All configuration values have defaults, a minimal configuration to get Laminar running is shown below. By default, the web interface is available on port 8080." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29201 +#: guix-git/doc/guix.texi:29538 #, no-wrap msgid "(service laminar-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29204 +#: guix-git/doc/guix.texi:29541 #, no-wrap msgid "{Data Type} laminar-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29206 +#: guix-git/doc/guix.texi:29543 msgid "Data type representing the configuration of Laminar." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29208 +#: guix-git/doc/guix.texi:29545 #, no-wrap msgid "@code{laminar} (default: @code{laminar})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29210 +#: guix-git/doc/guix.texi:29547 msgid "The Laminar package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29211 +#: guix-git/doc/guix.texi:29548 #, no-wrap msgid "@code{home-directory} (default: @code{\"/var/lib/laminar\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29213 +#: guix-git/doc/guix.texi:29550 msgid "The directory for job configurations and run directories." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29214 +#: guix-git/doc/guix.texi:29551 #, no-wrap msgid "@code{bind-http} (default: @code{\"*:8080\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29217 +#: guix-git/doc/guix.texi:29554 msgid "The interface/port or unix socket on which laminard should listen for incoming connections to the web frontend." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29218 +#: guix-git/doc/guix.texi:29555 #, no-wrap msgid "@code{bind-rpc} (default: @code{\"unix-abstract:laminar\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29221 +#: guix-git/doc/guix.texi:29558 msgid "The interface/port or unix socket on which laminard should listen for incoming commands such as build triggers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29222 +#: guix-git/doc/guix.texi:29559 #, no-wrap msgid "@code{title} (default: @code{\"Laminar\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29224 +#: guix-git/doc/guix.texi:29561 msgid "The page title to show in the web frontend." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29225 +#: guix-git/doc/guix.texi:29562 #, no-wrap msgid "@code{keep-rundirs} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29229 +#: guix-git/doc/guix.texi:29566 msgid "Set to an integer defining how many rundirs to keep per job. The lowest-numbered ones will be deleted. The default is 0, meaning all run dirs will be immediately deleted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29230 +#: guix-git/doc/guix.texi:29567 #, no-wrap msgid "@code{archive-url} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29233 +#: guix-git/doc/guix.texi:29570 msgid "The web frontend served by laminard will use this URL to form links to artefacts archived jobs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29234 +#: guix-git/doc/guix.texi:29571 #, no-wrap msgid "@code{base-url} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29236 +#: guix-git/doc/guix.texi:29573 msgid "Base URL to use for links to laminar itself." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29243 +#: guix-git/doc/guix.texi:29580 #, no-wrap msgid "tlp" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29244 +#: guix-git/doc/guix.texi:29581 #, no-wrap msgid "power management with TLP" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29245 +#: guix-git/doc/guix.texi:29582 #, no-wrap msgid "TLP daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29249 +#: guix-git/doc/guix.texi:29586 msgid "The @code{(gnu services pm)} module provides a Guix service definition for the Linux power management tool TLP." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29255 +#: guix-git/doc/guix.texi:29592 msgid "TLP enables various powersaving modes in userspace and kernel. Contrary to @code{upower-service}, it is not a passive, monitoring tool, as it will apply custom settings each time a new power source is detected. More information can be found at @uref{https://linrunner.de/en/tlp/tlp.html, TLP home page}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29256 +#: guix-git/doc/guix.texi:29593 #, no-wrap msgid "{Scheme Variable} tlp-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29260 +#: guix-git/doc/guix.texi:29597 msgid "The service type for the TLP tool. The default settings are optimised for battery life on most systems, but you can tweak them to your heart's content by adding a valid @code{tlp-configuration}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29265 +#: guix-git/doc/guix.texi:29602 #, no-wrap msgid "" "(service tlp-service-type\n" @@ -52726,888 +53325,932 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29273 +#: guix-git/doc/guix.texi:29610 msgid "Each parameter definition is preceded by its type; for example, @samp{boolean foo} indicates that the @code{foo} parameter should be specified as a boolean. Types starting with @code{maybe-} denote parameters that won't show up in TLP config file when their value is @code{'disabled}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29283 +#: guix-git/doc/guix.texi:29620 msgid "Available @code{tlp-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29284 +#: guix-git/doc/guix.texi:29621 #, no-wrap msgid "{@code{tlp-configuration} parameter} package tlp" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29286 +#: guix-git/doc/guix.texi:29623 msgid "The TLP package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29289 +#: guix-git/doc/guix.texi:29626 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean tlp-enable?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29291 +#: guix-git/doc/guix.texi:29628 msgid "Set to true if you wish to enable TLP." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29296 +#: guix-git/doc/guix.texi:29633 #, no-wrap msgid "{@code{tlp-configuration} parameter} string tlp-default-mode" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29299 +#: guix-git/doc/guix.texi:29636 msgid "Default mode when no power supply can be detected. Alternatives are AC and BAT." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29301 +#: guix-git/doc/guix.texi:29638 msgid "Defaults to @samp{\"AC\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29304 +#: guix-git/doc/guix.texi:29641 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer disk-idle-secs-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29307 +#: guix-git/doc/guix.texi:29644 msgid "Number of seconds Linux kernel has to wait after the disk goes idle, before syncing on AC." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29312 +#: guix-git/doc/guix.texi:29649 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer disk-idle-secs-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29314 +#: guix-git/doc/guix.texi:29651 msgid "Same as @code{disk-idle-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29316 +#: guix-git/doc/guix.texi:29653 msgid "Defaults to @samp{2}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29319 +#: guix-git/doc/guix.texi:29656 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer max-lost-work-secs-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29321 +#: guix-git/doc/guix.texi:29658 msgid "Dirty pages flushing periodicity, expressed in seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29323 guix-git/doc/guix.texi:29546 -#: guix-git/doc/guix.texi:31814 guix-git/doc/guix.texi:31822 +#: guix-git/doc/guix.texi:29660 guix-git/doc/guix.texi:29883 +#: guix-git/doc/guix.texi:32179 guix-git/doc/guix.texi:32187 msgid "Defaults to @samp{15}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29326 +#: guix-git/doc/guix.texi:29663 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer max-lost-work-secs-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29328 +#: guix-git/doc/guix.texi:29665 msgid "Same as @code{max-lost-work-secs-on-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29330 +#: guix-git/doc/guix.texi:29667 msgid "Defaults to @samp{60}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29333 +#: guix-git/doc/guix.texi:29670 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list cpu-scaling-governor-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29337 +#: guix-git/doc/guix.texi:29674 msgid "CPU frequency scaling governor on AC mode. With intel_pstate driver, alternatives are powersave and performance. With acpi-cpufreq driver, alternatives are ondemand, powersave, performance and conservative." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29342 +#: guix-git/doc/guix.texi:29679 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list cpu-scaling-governor-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29344 +#: guix-git/doc/guix.texi:29681 msgid "Same as @code{cpu-scaling-governor-on-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29349 +#: guix-git/doc/guix.texi:29686 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-min-freq-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29351 +#: guix-git/doc/guix.texi:29688 msgid "Set the min available frequency for the scaling governor on AC." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29356 +#: guix-git/doc/guix.texi:29693 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-max-freq-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29358 +#: guix-git/doc/guix.texi:29695 msgid "Set the max available frequency for the scaling governor on AC." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29363 +#: guix-git/doc/guix.texi:29700 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-min-freq-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29365 +#: guix-git/doc/guix.texi:29702 msgid "Set the min available frequency for the scaling governor on BAT." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29370 +#: guix-git/doc/guix.texi:29707 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-max-freq-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29372 +#: guix-git/doc/guix.texi:29709 msgid "Set the max available frequency for the scaling governor on BAT." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29377 +#: guix-git/doc/guix.texi:29714 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-min-perf-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29380 +#: guix-git/doc/guix.texi:29717 msgid "Limit the min P-state to control the power dissipation of the CPU, in AC mode. Values are stated as a percentage of the available performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29385 +#: guix-git/doc/guix.texi:29722 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29388 +#: guix-git/doc/guix.texi:29725 msgid "Limit the max P-state to control the power dissipation of the CPU, in AC mode. Values are stated as a percentage of the available performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29393 +#: guix-git/doc/guix.texi:29730 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-min-perf-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29395 +#: guix-git/doc/guix.texi:29732 msgid "Same as @code{cpu-min-perf-on-ac} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29400 +#: guix-git/doc/guix.texi:29737 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29402 +#: guix-git/doc/guix.texi:29739 msgid "Same as @code{cpu-max-perf-on-ac} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29407 +#: guix-git/doc/guix.texi:29744 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean cpu-boost-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29409 +#: guix-git/doc/guix.texi:29746 msgid "Enable CPU turbo boost feature on AC mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29414 +#: guix-git/doc/guix.texi:29751 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean cpu-boost-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29416 +#: guix-git/doc/guix.texi:29753 msgid "Same as @code{cpu-boost-on-ac?} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29421 +#: guix-git/doc/guix.texi:29758 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean sched-powersave-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29424 +#: guix-git/doc/guix.texi:29761 msgid "Allow Linux kernel to minimize the number of CPU cores/hyper-threads used under light load conditions." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29429 +#: guix-git/doc/guix.texi:29766 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean sched-powersave-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29431 +#: guix-git/doc/guix.texi:29768 msgid "Same as @code{sched-powersave-on-ac?} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29436 +#: guix-git/doc/guix.texi:29773 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean nmi-watchdog?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29438 +#: guix-git/doc/guix.texi:29775 msgid "Enable Linux kernel NMI watchdog." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29443 +#: guix-git/doc/guix.texi:29780 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string phc-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29446 +#: guix-git/doc/guix.texi:29783 msgid "For Linux kernels with PHC patch applied, change CPU voltages. An example value would be @samp{\"F:V F:V F:V F:V\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29451 +#: guix-git/doc/guix.texi:29788 #, no-wrap msgid "{@code{tlp-configuration} parameter} string energy-perf-policy-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29454 +#: guix-git/doc/guix.texi:29791 msgid "Set CPU performance versus energy saving policy on AC@. Alternatives are performance, normal, powersave." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29456 guix-git/doc/guix.texi:29554 -#: guix-git/doc/guix.texi:29584 +#: guix-git/doc/guix.texi:29793 guix-git/doc/guix.texi:29891 +#: guix-git/doc/guix.texi:29949 msgid "Defaults to @samp{\"performance\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29459 +#: guix-git/doc/guix.texi:29796 #, no-wrap msgid "{@code{tlp-configuration} parameter} string energy-perf-policy-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29461 +#: guix-git/doc/guix.texi:29798 msgid "Same as @code{energy-perf-policy-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29463 guix-git/doc/guix.texi:29561 +#: guix-git/doc/guix.texi:29800 guix-git/doc/guix.texi:29898 msgid "Defaults to @samp{\"powersave\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29466 +#: guix-git/doc/guix.texi:29803 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disks-devices" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29468 +#: guix-git/doc/guix.texi:29805 msgid "Hard disk devices." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29471 +#: guix-git/doc/guix.texi:29808 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disk-apm-level-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29473 +#: guix-git/doc/guix.texi:29810 msgid "Hard disk advanced power management level." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29476 +#: guix-git/doc/guix.texi:29813 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disk-apm-level-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29478 +#: guix-git/doc/guix.texi:29815 msgid "Same as @code{disk-apm-bat} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29481 +#: guix-git/doc/guix.texi:29818 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-spindown-timeout-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29484 +#: guix-git/doc/guix.texi:29821 msgid "Hard disk spin down timeout. One value has to be specified for each declared hard disk." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29489 +#: guix-git/doc/guix.texi:29826 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-spindown-timeout-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29491 +#: guix-git/doc/guix.texi:29828 msgid "Same as @code{disk-spindown-timeout-on-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29496 +#: guix-git/doc/guix.texi:29833 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-iosched" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29500 +#: guix-git/doc/guix.texi:29837 msgid "Select IO scheduler for disk devices. One value has to be specified for each declared hard disk. Example alternatives are cfq, deadline and noop." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29505 +#: guix-git/doc/guix.texi:29842 #, no-wrap msgid "{@code{tlp-configuration} parameter} string sata-linkpwr-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29508 +#: guix-git/doc/guix.texi:29845 msgid "SATA aggressive link power management (ALPM) level. Alternatives are min_power, medium_power, max_performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29510 +#: guix-git/doc/guix.texi:29847 msgid "Defaults to @samp{\"max_performance\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29513 +#: guix-git/doc/guix.texi:29850 #, no-wrap msgid "{@code{tlp-configuration} parameter} string sata-linkpwr-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29515 +#: guix-git/doc/guix.texi:29852 msgid "Same as @code{sata-linkpwr-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29517 +#: guix-git/doc/guix.texi:29854 msgid "Defaults to @samp{\"min_power\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29520 +#: guix-git/doc/guix.texi:29857 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string sata-linkpwr-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29522 +#: guix-git/doc/guix.texi:29859 msgid "Exclude specified SATA host devices for link power management." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29527 +#: guix-git/doc/guix.texi:29864 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-on-off-boolean ahci-runtime-pm-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29530 +#: guix-git/doc/guix.texi:29867 msgid "Enable Runtime Power Management for AHCI controller and disks on AC mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29535 +#: guix-git/doc/guix.texi:29872 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-on-off-boolean ahci-runtime-pm-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29537 +#: guix-git/doc/guix.texi:29874 msgid "Same as @code{ahci-runtime-pm-on-ac} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29542 +#: guix-git/doc/guix.texi:29879 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer ahci-runtime-pm-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29544 +#: guix-git/doc/guix.texi:29881 msgid "Seconds of inactivity before disk is suspended." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29549 +#: guix-git/doc/guix.texi:29886 #, no-wrap msgid "{@code{tlp-configuration} parameter} string pcie-aspm-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29552 +#: guix-git/doc/guix.texi:29889 msgid "PCI Express Active State Power Management level. Alternatives are default, performance, powersave." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29557 +#: guix-git/doc/guix.texi:29894 #, no-wrap msgid "{@code{tlp-configuration} parameter} string pcie-aspm-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29559 +#: guix-git/doc/guix.texi:29896 msgid "Same as @code{pcie-aspm-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29564 +#: guix-git/doc/guix.texi:29901 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer start-charge-thresh-bat0" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29903 +msgid "Percentage when battery 0 should begin charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29908 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer stop-charge-thresh-bat0" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29910 +msgid "Percentage when battery 0 should stop charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29915 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer start-charge-thresh-bat1" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29917 +msgid "Percentage when battery 1 should begin charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29922 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer stop-charge-thresh-bat1" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29924 +msgid "Percentage when battery 1 should stop charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29929 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-power-profile-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29567 +#: guix-git/doc/guix.texi:29932 msgid "Radeon graphics clock speed level. Alternatives are low, mid, high, auto, default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29569 +#: guix-git/doc/guix.texi:29934 msgid "Defaults to @samp{\"high\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29572 +#: guix-git/doc/guix.texi:29937 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-power-profile-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29574 +#: guix-git/doc/guix.texi:29939 msgid "Same as @code{radeon-power-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29576 +#: guix-git/doc/guix.texi:29941 msgid "Defaults to @samp{\"low\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29579 +#: guix-git/doc/guix.texi:29944 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-state-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29582 +#: guix-git/doc/guix.texi:29947 msgid "Radeon dynamic power management method (DPM). Alternatives are battery, performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29587 +#: guix-git/doc/guix.texi:29952 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-state-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29589 +#: guix-git/doc/guix.texi:29954 msgid "Same as @code{radeon-dpm-state-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29591 +#: guix-git/doc/guix.texi:29956 msgid "Defaults to @samp{\"battery\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29594 +#: guix-git/doc/guix.texi:29959 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-perf-level-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29596 +#: guix-git/doc/guix.texi:29961 msgid "Radeon DPM performance level. Alternatives are auto, low, high." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29598 guix-git/doc/guix.texi:29605 -#: guix-git/doc/guix.texi:29679 +#: guix-git/doc/guix.texi:29963 guix-git/doc/guix.texi:29970 +#: guix-git/doc/guix.texi:30044 msgid "Defaults to @samp{\"auto\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29601 +#: guix-git/doc/guix.texi:29966 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-perf-level-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29603 +#: guix-git/doc/guix.texi:29968 msgid "Same as @code{radeon-dpm-perf-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29608 +#: guix-git/doc/guix.texi:29973 #, no-wrap msgid "{@code{tlp-configuration} parameter} on-off-boolean wifi-pwr-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29610 +#: guix-git/doc/guix.texi:29975 msgid "Wifi power saving mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29615 +#: guix-git/doc/guix.texi:29980 #, no-wrap msgid "{@code{tlp-configuration} parameter} on-off-boolean wifi-pwr-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29617 +#: guix-git/doc/guix.texi:29982 msgid "Same as @code{wifi-power-ac?} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29622 +#: guix-git/doc/guix.texi:29987 #, no-wrap msgid "{@code{tlp-configuration} parameter} y-n-boolean wol-disable?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29624 +#: guix-git/doc/guix.texi:29989 msgid "Disable wake on LAN." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29629 +#: guix-git/doc/guix.texi:29994 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer sound-power-save-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29632 +#: guix-git/doc/guix.texi:29997 msgid "Timeout duration in seconds before activating audio power saving on Intel HDA and AC97 devices. A value of 0 disables power saving." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29637 +#: guix-git/doc/guix.texi:30002 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer sound-power-save-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29639 +#: guix-git/doc/guix.texi:30004 msgid "Same as @code{sound-powersave-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29644 +#: guix-git/doc/guix.texi:30009 #, no-wrap msgid "{@code{tlp-configuration} parameter} y-n-boolean sound-power-save-controller?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29646 +#: guix-git/doc/guix.texi:30011 msgid "Disable controller in powersaving mode on Intel HDA devices." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29651 +#: guix-git/doc/guix.texi:30016 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean bay-poweroff-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29655 +#: guix-git/doc/guix.texi:30020 msgid "Enable optical drive in UltraBay/MediaBay on BAT mode. Drive can be powered on again by releasing (and reinserting) the eject lever or by pressing the disc eject button on newer models." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29660 +#: guix-git/doc/guix.texi:30025 #, no-wrap msgid "{@code{tlp-configuration} parameter} string bay-device" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29662 +#: guix-git/doc/guix.texi:30027 msgid "Name of the optical drive device to power off." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29664 +#: guix-git/doc/guix.texi:30029 msgid "Defaults to @samp{\"sr0\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29667 +#: guix-git/doc/guix.texi:30032 #, no-wrap msgid "{@code{tlp-configuration} parameter} string runtime-pm-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29670 +#: guix-git/doc/guix.texi:30035 msgid "Runtime Power Management for PCI(e) bus devices. Alternatives are on and auto." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29672 +#: guix-git/doc/guix.texi:30037 msgid "Defaults to @samp{\"on\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29675 +#: guix-git/doc/guix.texi:30040 #, no-wrap msgid "{@code{tlp-configuration} parameter} string runtime-pm-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29677 +#: guix-git/doc/guix.texi:30042 msgid "Same as @code{runtime-pm-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29682 +#: guix-git/doc/guix.texi:30047 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean runtime-pm-all?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29685 +#: guix-git/doc/guix.texi:30050 msgid "Runtime Power Management for all PCI(e) bus devices, except blacklisted ones." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29690 +#: guix-git/doc/guix.texi:30055 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list runtime-pm-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29692 +#: guix-git/doc/guix.texi:30057 msgid "Exclude specified PCI(e) device addresses from Runtime Power Management." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29697 +#: guix-git/doc/guix.texi:30062 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list runtime-pm-driver-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29700 +#: guix-git/doc/guix.texi:30065 msgid "Exclude PCI(e) devices assigned to the specified drivers from Runtime Power Management." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29703 +#: guix-git/doc/guix.texi:30068 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean usb-autosuspend?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29705 +#: guix-git/doc/guix.texi:30070 msgid "Enable USB autosuspend feature." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29710 +#: guix-git/doc/guix.texi:30075 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string usb-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29712 +#: guix-git/doc/guix.texi:30077 msgid "Exclude specified devices from USB autosuspend." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29717 +#: guix-git/doc/guix.texi:30082 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean usb-blacklist-wwan?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29719 +#: guix-git/doc/guix.texi:30084 msgid "Exclude WWAN devices from USB autosuspend." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29724 +#: guix-git/doc/guix.texi:30089 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string usb-whitelist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29727 +#: guix-git/doc/guix.texi:30092 msgid "Include specified devices into USB autosuspend, even if they are already excluded by the driver or via @code{usb-blacklist-wwan?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29732 +#: guix-git/doc/guix.texi:30097 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean usb-autosuspend-disable-on-shutdown?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29734 +#: guix-git/doc/guix.texi:30099 msgid "Enable USB autosuspend before shutdown." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29739 +#: guix-git/doc/guix.texi:30104 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean restore-device-state-on-startup?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29742 +#: guix-git/doc/guix.texi:30107 msgid "Restore radio device state (bluetooth, wifi, wwan) from previous shutdown on system startup." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29747 +#: guix-git/doc/guix.texi:30112 #, no-wrap msgid "thermald" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29748 +#: guix-git/doc/guix.texi:30113 #, no-wrap msgid "CPU frequency scaling with thermald" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29749 +#: guix-git/doc/guix.texi:30114 #, no-wrap msgid "Thermald daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29753 +#: guix-git/doc/guix.texi:30118 msgid "The @code{(gnu services pm)} module provides an interface to thermald, a CPU frequency scaling service which helps prevent overheating." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29754 +#: guix-git/doc/guix.texi:30119 #, no-wrap msgid "{Scheme Variable} thermald-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29759 +#: guix-git/doc/guix.texi:30124 msgid "This is the service type for @uref{https://01.org/linux-thermal-daemon/, thermald}, the Linux Thermal Daemon, which is responsible for controlling the thermal state of processors and preventing overheating." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29761 +#: guix-git/doc/guix.texi:30126 #, no-wrap msgid "{Data Type} thermald-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29763 +#: guix-git/doc/guix.texi:30128 msgid "Data type representing the configuration of @code{thermald-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29765 +#: guix-git/doc/guix.texi:30130 #, no-wrap msgid "@code{ignore-cpuid-check?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29767 +#: guix-git/doc/guix.texi:30132 msgid "Ignore cpuid check for supported CPU models." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29768 +#: guix-git/doc/guix.texi:30133 #, no-wrap msgid "@code{thermald} (default: @var{thermald})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29770 +#: guix-git/doc/guix.texi:30135 msgid "Package object of thermald." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29779 +#: guix-git/doc/guix.texi:30144 msgid "The @code{(gnu services audio)} module provides a service to start MPD (the Music Player Daemon)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29780 +#: guix-git/doc/guix.texi:30145 #, no-wrap msgid "mpd" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29781 +#: guix-git/doc/guix.texi:30146 #, no-wrap msgid "Music Player Daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29786 +#: guix-git/doc/guix.texi:30151 msgid "The Music Player Daemon (MPD) is a service that can play music while being controlled from the local machine or over the network by a variety of clients." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29789 +#: guix-git/doc/guix.texi:30154 msgid "The following example shows how one might run @code{mpd} as user @code{\"bob\"} on port @code{6666}. It uses pulseaudio for output." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29795 +#: guix-git/doc/guix.texi:30160 #, no-wrap msgid "" "(service mpd-service-type\n" @@ -53617,215 +54260,215 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29797 +#: guix-git/doc/guix.texi:30162 #, no-wrap msgid "{Scheme Variable} mpd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29799 +#: guix-git/doc/guix.texi:30164 msgid "The service type for @command{mpd}" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29801 +#: guix-git/doc/guix.texi:30166 #, no-wrap msgid "{Data Type} mpd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29803 +#: guix-git/doc/guix.texi:30168 msgid "Data type representing the configuration of @command{mpd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29805 +#: guix-git/doc/guix.texi:30170 #, no-wrap msgid "@code{user} (default: @code{\"mpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29807 +#: guix-git/doc/guix.texi:30172 msgid "The user to run mpd as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29808 +#: guix-git/doc/guix.texi:30173 #, no-wrap msgid "@code{music-dir} (default: @code{\"~/Music\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29810 +#: guix-git/doc/guix.texi:30175 msgid "The directory to scan for music files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29811 +#: guix-git/doc/guix.texi:30176 #, no-wrap msgid "@code{playlist-dir} (default: @code{\"~/.mpd/playlists\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29813 +#: guix-git/doc/guix.texi:30178 msgid "The directory to store playlists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29814 +#: guix-git/doc/guix.texi:30179 #, no-wrap msgid "@code{db-file} (default: @code{\"~/.mpd/tag_cache\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29816 +#: guix-git/doc/guix.texi:30181 msgid "The location of the music database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29817 +#: guix-git/doc/guix.texi:30182 #, no-wrap msgid "@code{state-file} (default: @code{\"~/.mpd/state\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29819 +#: guix-git/doc/guix.texi:30184 msgid "The location of the file that stores current MPD's state." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29820 +#: guix-git/doc/guix.texi:30185 #, no-wrap msgid "@code{sticker-file} (default: @code{\"~/.mpd/sticker.sql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29822 +#: guix-git/doc/guix.texi:30187 msgid "The location of the sticker database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29823 +#: guix-git/doc/guix.texi:30188 #, no-wrap msgid "@code{port} (default: @code{\"6600\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29825 +#: guix-git/doc/guix.texi:30190 msgid "The port to run mpd on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29826 +#: guix-git/doc/guix.texi:30191 #, no-wrap msgid "@code{address} (default: @code{\"any\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29829 +#: guix-git/doc/guix.texi:30194 msgid "The address that mpd will bind to. To use a Unix domain socket, an absolute path can be specified here." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29830 +#: guix-git/doc/guix.texi:30195 #, no-wrap msgid "@code{outputs} (default: @code{\"(list (mpd-output))\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29832 +#: guix-git/doc/guix.texi:30197 msgid "The audio outputs that MPD can use. By default this is a single output using pulseaudio." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29836 +#: guix-git/doc/guix.texi:30201 #, no-wrap msgid "{Data Type} mpd-output" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29838 +#: guix-git/doc/guix.texi:30203 msgid "Data type representing an @command{mpd} audio output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29840 +#: guix-git/doc/guix.texi:30205 #, no-wrap msgid "@code{name} (default: @code{\"MPD\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29842 +#: guix-git/doc/guix.texi:30207 msgid "The name of the audio output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29843 +#: guix-git/doc/guix.texi:30208 #, no-wrap msgid "@code{type} (default: @code{\"pulse\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29845 +#: guix-git/doc/guix.texi:30210 msgid "The type of audio output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29846 +#: guix-git/doc/guix.texi:30211 #, no-wrap msgid "@code{enabled?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29851 +#: guix-git/doc/guix.texi:30216 msgid "Specifies whether this audio output is enabled when MPD is started. By default, all audio outputs are enabled. This is just the default setting when there is no state file; with a state file, the previous state is restored." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29852 +#: guix-git/doc/guix.texi:30217 #, no-wrap msgid "@code{tags?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29856 +#: guix-git/doc/guix.texi:30221 msgid "If set to @code{#f}, then MPD will not send tags to this output. This is only useful for output plugins that can receive tags, for example the @code{httpd} output plugin." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29857 +#: guix-git/doc/guix.texi:30222 #, no-wrap msgid "@code{always-on?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29861 +#: guix-git/doc/guix.texi:30226 msgid "If set to @code{#t}, then MPD attempts to keep this audio output always open. This may be useful for streaming servers, when you don’t want to disconnect all listeners even when playback is accidentally stopped." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:29862 +#: guix-git/doc/guix.texi:30227 #, no-wrap msgid "mixer-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29868 +#: guix-git/doc/guix.texi:30233 msgid "This field accepts a symbol that specifies which mixer should be used for this audio output: the @code{hardware} mixer, the @code{software} mixer, the @code{null} mixer (allows setting the volume, but with no effect; this can be used as a trick to implement an external mixer External Mixer) or no mixer (@code{none})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29872 +#: guix-git/doc/guix.texi:30237 msgid "An association list of option symbols to string values to be appended to the audio output configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29878 +#: guix-git/doc/guix.texi:30243 msgid "The following example shows a configuration of @code{mpd} that provides an HTTP audio streaming output." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29890 +#: guix-git/doc/guix.texi:30255 #, no-wrap msgid "" "(service mpd-service-type\n" @@ -53841,34 +54484,34 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29899 +#: guix-git/doc/guix.texi:30264 msgid "The @code{(gnu services virtualization)} module provides services for the libvirt and virtlog daemons, as well as other virtualization-related services." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29900 +#: guix-git/doc/guix.texi:30265 #, no-wrap msgid "Libvirt daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29905 +#: guix-git/doc/guix.texi:30270 msgid "@code{libvirtd} is the server side daemon component of the libvirt virtualization management system. This daemon runs on host servers and performs required management tasks for virtualized guests." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29906 +#: guix-git/doc/guix.texi:30271 #, no-wrap msgid "{Scheme Variable} libvirt-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29909 +#: guix-git/doc/guix.texi:30274 msgid "This is the type of the @uref{https://libvirt.org, libvirt daemon}. Its value must be a @code{libvirt-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29915 +#: guix-git/doc/guix.texi:30280 #, no-wrap msgid "" "(service libvirt-service-type\n" @@ -53878,870 +54521,870 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29920 +#: guix-git/doc/guix.texi:30285 msgid "Available @code{libvirt-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29921 +#: guix-git/doc/guix.texi:30286 #, no-wrap msgid "{@code{libvirt-configuration} parameter} package libvirt" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29923 +#: guix-git/doc/guix.texi:30288 msgid "Libvirt package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29926 +#: guix-git/doc/guix.texi:30291 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean listen-tls?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29929 +#: guix-git/doc/guix.texi:30294 msgid "Flag listening for secure TLS connections on the public TCP/IP port. You must set @code{listen} for this to have any effect." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29932 +#: guix-git/doc/guix.texi:30297 msgid "It is necessary to setup a CA and issue server certificates before using this capability." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29937 +#: guix-git/doc/guix.texi:30302 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean listen-tcp?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29940 +#: guix-git/doc/guix.texi:30305 msgid "Listen for unencrypted TCP connections on the public TCP/IP port. You must set @code{listen} for this to have any effect." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29944 +#: guix-git/doc/guix.texi:30309 msgid "Using the TCP socket requires SASL authentication by default. Only SASL mechanisms which support data encryption are allowed. This is DIGEST_MD5 and GSSAPI (Kerberos5)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29949 +#: guix-git/doc/guix.texi:30314 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tls-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29952 +#: guix-git/doc/guix.texi:30317 msgid "Port for accepting secure TLS connections. This can be a port number, or service name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29954 +#: guix-git/doc/guix.texi:30319 msgid "Defaults to @samp{\"16514\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29957 +#: guix-git/doc/guix.texi:30322 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tcp-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29960 +#: guix-git/doc/guix.texi:30325 msgid "Port for accepting insecure TCP connections. This can be a port number, or service name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29962 +#: guix-git/doc/guix.texi:30327 msgid "Defaults to @samp{\"16509\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29965 +#: guix-git/doc/guix.texi:30330 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string listen-addr" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29967 +#: guix-git/doc/guix.texi:30332 msgid "IP address or hostname used for client connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29972 +#: guix-git/doc/guix.texi:30337 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean mdns-adv?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29974 +#: guix-git/doc/guix.texi:30339 msgid "Flag toggling mDNS advertisement of the libvirt service." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29977 +#: guix-git/doc/guix.texi:30342 msgid "Alternatively can disable for all services on a host by stopping the Avahi daemon." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29982 +#: guix-git/doc/guix.texi:30347 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string mdns-name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29985 +#: guix-git/doc/guix.texi:30350 msgid "Default mDNS advertisement name. This must be unique on the immediate broadcast network." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29987 +#: guix-git/doc/guix.texi:30352 msgid "Defaults to @samp{\"Virtualization Host \"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29990 +#: guix-git/doc/guix.texi:30355 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29994 +#: guix-git/doc/guix.texi:30359 msgid "UNIX domain socket group ownership. This can be used to allow a 'trusted' set of users access to management capabilities without becoming root." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29999 +#: guix-git/doc/guix.texi:30364 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-ro-perms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30002 +#: guix-git/doc/guix.texi:30367 msgid "UNIX socket permissions for the R/O socket. This is used for monitoring VM status only." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30004 guix-git/doc/guix.texi:30022 +#: guix-git/doc/guix.texi:30369 guix-git/doc/guix.texi:30387 msgid "Defaults to @samp{\"0777\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30007 +#: guix-git/doc/guix.texi:30372 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-rw-perms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30011 +#: guix-git/doc/guix.texi:30376 msgid "UNIX socket permissions for the R/W socket. Default allows only root. If PolicyKit is enabled on the socket, the default will change to allow everyone (eg, 0777)" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30013 +#: guix-git/doc/guix.texi:30378 msgid "Defaults to @samp{\"0770\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30016 +#: guix-git/doc/guix.texi:30381 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-admin-perms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30020 +#: guix-git/doc/guix.texi:30385 msgid "UNIX socket permissions for the admin socket. Default allows only owner (root), do not change it unless you are sure to whom you are exposing the access to." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30025 +#: guix-git/doc/guix.texi:30390 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30027 +#: guix-git/doc/guix.texi:30392 msgid "The directory in which sockets will be found/created." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30029 +#: guix-git/doc/guix.texi:30394 msgid "Defaults to @samp{\"/var/run/libvirt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30032 +#: guix-git/doc/guix.texi:30397 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-unix-ro" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30035 +#: guix-git/doc/guix.texi:30400 msgid "Authentication scheme for UNIX read-only sockets. By default socket permissions allow anyone to connect" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30037 guix-git/doc/guix.texi:30046 +#: guix-git/doc/guix.texi:30402 guix-git/doc/guix.texi:30411 msgid "Defaults to @samp{\"polkit\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30040 +#: guix-git/doc/guix.texi:30405 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-unix-rw" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30044 +#: guix-git/doc/guix.texi:30409 msgid "Authentication scheme for UNIX read-write sockets. By default socket permissions only allow root. If PolicyKit support was compiled into libvirt, the default will be to use 'polkit' auth." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30049 +#: guix-git/doc/guix.texi:30414 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-tcp" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30053 +#: guix-git/doc/guix.texi:30418 msgid "Authentication scheme for TCP sockets. If you don't enable SASL, then all TCP traffic is cleartext. Don't do this outside of a dev/test scenario." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30055 +#: guix-git/doc/guix.texi:30420 msgid "Defaults to @samp{\"sasl\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30058 +#: guix-git/doc/guix.texi:30423 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-tls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30062 +#: guix-git/doc/guix.texi:30427 msgid "Authentication scheme for TLS sockets. TLS sockets already have encryption provided by the TLS layer, and limited authentication is done by certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30065 +#: guix-git/doc/guix.texi:30430 msgid "It is possible to make use of any SASL authentication mechanism as well, by using 'sasl' for this option" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30067 +#: guix-git/doc/guix.texi:30432 msgid "Defaults to @samp{\"none\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30070 +#: guix-git/doc/guix.texi:30435 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list access-drivers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30072 +#: guix-git/doc/guix.texi:30437 msgid "API access control scheme." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30075 +#: guix-git/doc/guix.texi:30440 msgid "By default an authenticated user is allowed access to all APIs. Access drivers can place restrictions on this." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30080 +#: guix-git/doc/guix.texi:30445 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string key-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30083 +#: guix-git/doc/guix.texi:30448 msgid "Server key file path. If set to an empty string, then no private key is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30088 +#: guix-git/doc/guix.texi:30453 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string cert-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30091 +#: guix-git/doc/guix.texi:30456 msgid "Server key file path. If set to an empty string, then no certificate is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30096 +#: guix-git/doc/guix.texi:30461 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string ca-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30099 +#: guix-git/doc/guix.texi:30464 msgid "Server key file path. If set to an empty string, then no CA certificate is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30104 +#: guix-git/doc/guix.texi:30469 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string crl-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30107 +#: guix-git/doc/guix.texi:30472 msgid "Certificate revocation list path. If set to an empty string, then no CRL is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30112 +#: guix-git/doc/guix.texi:30477 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean tls-no-sanity-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30114 +#: guix-git/doc/guix.texi:30479 msgid "Disable verification of our own server certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30117 +#: guix-git/doc/guix.texi:30482 msgid "When libvirtd starts it performs some sanity checks against its own certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30122 +#: guix-git/doc/guix.texi:30487 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean tls-no-verify-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30124 +#: guix-git/doc/guix.texi:30489 msgid "Disable verification of client certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30128 +#: guix-git/doc/guix.texi:30493 msgid "Client certificate verification is the primary authentication mechanism. Any client which does not present a certificate signed by the CA will be rejected." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30133 +#: guix-git/doc/guix.texi:30498 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list tls-allowed-dn-list" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30135 +#: guix-git/doc/guix.texi:30500 msgid "Whitelist of allowed x509 Distinguished Name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30140 +#: guix-git/doc/guix.texi:30505 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list sasl-allowed-usernames" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30143 +#: guix-git/doc/guix.texi:30508 msgid "Whitelist of allowed SASL usernames. The format for username depends on the SASL authentication mechanism." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30148 +#: guix-git/doc/guix.texi:30513 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tls-priority" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30152 +#: guix-git/doc/guix.texi:30517 msgid "Override the compile time default TLS priority string. The default is usually @samp{\"NORMAL\"} unless overridden at build time. Only set this is it is desired for libvirt to deviate from the global default settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30154 +#: guix-git/doc/guix.texi:30519 msgid "Defaults to @samp{\"NORMAL\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30157 +#: guix-git/doc/guix.texi:30522 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30160 guix-git/doc/guix.texi:30584 +#: guix-git/doc/guix.texi:30525 guix-git/doc/guix.texi:30949 msgid "Maximum number of concurrent client connections to allow over all sockets combined." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30162 +#: guix-git/doc/guix.texi:30527 msgid "Defaults to @samp{5000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30165 +#: guix-git/doc/guix.texi:30530 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-queued-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30169 +#: guix-git/doc/guix.texi:30534 msgid "Maximum length of queue of connections waiting to be accepted by the daemon. Note, that some protocols supporting retransmission may obey this so that a later reattempt at connection succeeds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30174 +#: guix-git/doc/guix.texi:30539 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-anonymous-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30177 +#: guix-git/doc/guix.texi:30542 msgid "Maximum length of queue of accepted but not yet authenticated clients. Set this to zero to turn this feature off" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30179 guix-git/doc/guix.texi:30197 -#: guix-git/doc/guix.texi:30213 +#: guix-git/doc/guix.texi:30544 guix-git/doc/guix.texi:30562 +#: guix-git/doc/guix.texi:30578 msgid "Defaults to @samp{20}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30182 +#: guix-git/doc/guix.texi:30547 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer min-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30184 +#: guix-git/doc/guix.texi:30549 msgid "Number of workers to start up initially." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30189 +#: guix-git/doc/guix.texi:30554 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30191 +#: guix-git/doc/guix.texi:30556 msgid "Maximum number of worker threads." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30195 +#: guix-git/doc/guix.texi:30560 msgid "If the number of active clients exceeds @code{min-workers}, then more threads are spawned, up to max_workers limit. Typically you'd want max_workers to equal maximum number of clients allowed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30200 +#: guix-git/doc/guix.texi:30565 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer prio-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30204 +#: guix-git/doc/guix.texi:30569 msgid "Number of priority workers. If all workers from above pool are stuck, some calls marked as high priority (notably domainDestroy) can be executed in this pool." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30209 +#: guix-git/doc/guix.texi:30574 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-requests" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30211 +#: guix-git/doc/guix.texi:30576 msgid "Total global limit on concurrent RPC calls." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30216 +#: guix-git/doc/guix.texi:30581 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-client-requests" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30220 +#: guix-git/doc/guix.texi:30585 msgid "Limit on concurrent requests from a single client connection. To avoid one client monopolizing the server this should be a small fraction of the global max_requests and max_workers parameter." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30225 +#: guix-git/doc/guix.texi:30590 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-min-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30227 +#: guix-git/doc/guix.texi:30592 msgid "Same as @code{min-workers} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30232 +#: guix-git/doc/guix.texi:30597 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30234 +#: guix-git/doc/guix.texi:30599 msgid "Same as @code{max-workers} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30239 +#: guix-git/doc/guix.texi:30604 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30241 +#: guix-git/doc/guix.texi:30606 msgid "Same as @code{max-clients} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30246 +#: guix-git/doc/guix.texi:30611 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-queued-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30248 +#: guix-git/doc/guix.texi:30613 msgid "Same as @code{max-queued-clients} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30253 +#: guix-git/doc/guix.texi:30618 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-client-requests" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30255 +#: guix-git/doc/guix.texi:30620 msgid "Same as @code{max-client-requests} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30260 +#: guix-git/doc/guix.texi:30625 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30262 guix-git/doc/guix.texi:30486 +#: guix-git/doc/guix.texi:30627 guix-git/doc/guix.texi:30851 msgid "Logging level. 4 errors, 3 warnings, 2 information, 1 debug." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30267 +#: guix-git/doc/guix.texi:30632 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string log-filters" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30269 guix-git/doc/guix.texi:30493 +#: guix-git/doc/guix.texi:30634 guix-git/doc/guix.texi:30858 msgid "Logging filters." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30272 +#: guix-git/doc/guix.texi:30637 msgid "A filter allows to select a different logging level for a given category of logs. The format for a filter is one of:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30276 guix-git/doc/guix.texi:30500 +#: guix-git/doc/guix.texi:30641 guix-git/doc/guix.texi:30865 msgid "x:name" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30279 guix-git/doc/guix.texi:30503 +#: guix-git/doc/guix.texi:30644 guix-git/doc/guix.texi:30868 msgid "x:+name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30290 +#: guix-git/doc/guix.texi:30655 msgid "where @code{name} is a string which is matched against the category given in the @code{VIR_LOG_INIT()} at the top of each libvirt source file, e.g., @samp{\"remote\"}, @samp{\"qemu\"}, or @samp{\"util.json\"} (the name in the filter can be a substring of the full category name, in order to match multiple similar categories), the optional @samp{\"+\"} prefix tells libvirt to log stack trace for each message matching name, and @code{x} is the minimal level where matching messages should be logged:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30294 guix-git/doc/guix.texi:30339 -#: guix-git/doc/guix.texi:30517 guix-git/doc/guix.texi:30562 +#: guix-git/doc/guix.texi:30659 guix-git/doc/guix.texi:30704 +#: guix-git/doc/guix.texi:30882 guix-git/doc/guix.texi:30927 msgid "1: DEBUG" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30297 guix-git/doc/guix.texi:30342 -#: guix-git/doc/guix.texi:30520 guix-git/doc/guix.texi:30565 +#: guix-git/doc/guix.texi:30662 guix-git/doc/guix.texi:30707 +#: guix-git/doc/guix.texi:30885 guix-git/doc/guix.texi:30930 msgid "2: INFO" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30300 guix-git/doc/guix.texi:30345 -#: guix-git/doc/guix.texi:30523 guix-git/doc/guix.texi:30568 +#: guix-git/doc/guix.texi:30665 guix-git/doc/guix.texi:30710 +#: guix-git/doc/guix.texi:30888 guix-git/doc/guix.texi:30933 msgid "3: WARNING" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30303 guix-git/doc/guix.texi:30348 -#: guix-git/doc/guix.texi:30526 guix-git/doc/guix.texi:30571 +#: guix-git/doc/guix.texi:30668 guix-git/doc/guix.texi:30713 +#: guix-git/doc/guix.texi:30891 guix-git/doc/guix.texi:30936 msgid "4: ERROR" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30308 guix-git/doc/guix.texi:30531 +#: guix-git/doc/guix.texi:30673 guix-git/doc/guix.texi:30896 msgid "Multiple filters can be defined in a single filters statement, they just need to be separated by spaces." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30310 guix-git/doc/guix.texi:30533 +#: guix-git/doc/guix.texi:30675 guix-git/doc/guix.texi:30898 msgid "Defaults to @samp{\"3:remote 4:event\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30313 +#: guix-git/doc/guix.texi:30678 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string log-outputs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30315 guix-git/doc/guix.texi:30538 +#: guix-git/doc/guix.texi:30680 guix-git/doc/guix.texi:30903 msgid "Logging outputs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30318 +#: guix-git/doc/guix.texi:30683 msgid "An output is one of the places to save logging information. The format for an output can be:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30320 guix-git/doc/guix.texi:30543 +#: guix-git/doc/guix.texi:30685 guix-git/doc/guix.texi:30908 #, no-wrap msgid "x:stderr" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30322 guix-git/doc/guix.texi:30545 +#: guix-git/doc/guix.texi:30687 guix-git/doc/guix.texi:30910 msgid "output goes to stderr" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30323 guix-git/doc/guix.texi:30546 +#: guix-git/doc/guix.texi:30688 guix-git/doc/guix.texi:30911 #, no-wrap msgid "x:syslog:name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30325 guix-git/doc/guix.texi:30548 +#: guix-git/doc/guix.texi:30690 guix-git/doc/guix.texi:30913 msgid "use syslog for the output and use the given name as the ident" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30326 guix-git/doc/guix.texi:30549 +#: guix-git/doc/guix.texi:30691 guix-git/doc/guix.texi:30914 #, no-wrap msgid "x:file:file_path" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30328 guix-git/doc/guix.texi:30551 +#: guix-git/doc/guix.texi:30693 guix-git/doc/guix.texi:30916 msgid "output to a file, with the given filepath" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30329 guix-git/doc/guix.texi:30552 +#: guix-git/doc/guix.texi:30694 guix-git/doc/guix.texi:30917 #, no-wrap msgid "x:journald" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30331 guix-git/doc/guix.texi:30554 +#: guix-git/doc/guix.texi:30696 guix-git/doc/guix.texi:30919 msgid "output to journald logging system" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30335 guix-git/doc/guix.texi:30558 +#: guix-git/doc/guix.texi:30700 guix-git/doc/guix.texi:30923 msgid "In all case the x prefix is the minimal level, acting as a filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30353 guix-git/doc/guix.texi:30576 +#: guix-git/doc/guix.texi:30718 guix-git/doc/guix.texi:30941 msgid "Multiple outputs can be defined, they just need to be separated by spaces." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30355 guix-git/doc/guix.texi:30578 +#: guix-git/doc/guix.texi:30720 guix-git/doc/guix.texi:30943 msgid "Defaults to @samp{\"3:stderr\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30358 +#: guix-git/doc/guix.texi:30723 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer audit-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30360 +#: guix-git/doc/guix.texi:30725 msgid "Allows usage of the auditing subsystem to be altered" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30364 +#: guix-git/doc/guix.texi:30729 msgid "0: disable all auditing" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30367 +#: guix-git/doc/guix.texi:30732 msgid "1: enable auditing, only if enabled on host" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30370 +#: guix-git/doc/guix.texi:30735 msgid "2: enable auditing, and exit if disabled on host." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30377 +#: guix-git/doc/guix.texi:30742 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean audit-logging" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30379 +#: guix-git/doc/guix.texi:30744 msgid "Send audit messages via libvirt logging infrastructure." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30384 +#: guix-git/doc/guix.texi:30749 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-string host-uuid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30386 +#: guix-git/doc/guix.texi:30751 msgid "Host UUID@. UUID must not have all digits be the same." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30391 +#: guix-git/doc/guix.texi:30756 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string host-uuid-source" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30393 +#: guix-git/doc/guix.texi:30758 msgid "Source to read host UUID." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30397 +#: guix-git/doc/guix.texi:30762 msgid "@code{smbios}: fetch the UUID from @code{dmidecode -s system-uuid}" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30400 +#: guix-git/doc/guix.texi:30765 msgid "@code{machine-id}: fetch the UUID from @code{/etc/machine-id}" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30405 +#: guix-git/doc/guix.texi:30770 msgid "If @code{dmidecode} does not provide a valid UUID a temporary UUID will be generated." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30407 +#: guix-git/doc/guix.texi:30772 msgid "Defaults to @samp{\"smbios\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30410 +#: guix-git/doc/guix.texi:30775 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer keepalive-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30415 +#: guix-git/doc/guix.texi:30780 msgid "A keepalive message is sent to a client after @code{keepalive_interval} seconds of inactivity to check if the client is still responding. If set to -1, libvirtd will never send keepalive requests; however clients can still send them and the daemon will send responses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30420 +#: guix-git/doc/guix.texi:30785 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer keepalive-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30424 +#: guix-git/doc/guix.texi:30789 msgid "Maximum number of keepalive messages that are allowed to be sent to the client without getting any response before the connection is considered broken." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30431 +#: guix-git/doc/guix.texi:30796 msgid "In other words, the connection is automatically closed approximately after @code{keepalive_interval * (keepalive_count + 1)} seconds since the last message received from the client. When @code{keepalive-count} is set to 0, connections will be automatically closed after @code{keepalive-interval} seconds of inactivity without sending any keepalive messages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30436 +#: guix-git/doc/guix.texi:30801 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-keepalive-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30438 guix-git/doc/guix.texi:30445 +#: guix-git/doc/guix.texi:30803 guix-git/doc/guix.texi:30810 msgid "Same as above but for admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30443 +#: guix-git/doc/guix.texi:30808 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-keepalive-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30450 +#: guix-git/doc/guix.texi:30815 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer ovs-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30452 +#: guix-git/doc/guix.texi:30817 msgid "Timeout for Open vSwitch calls." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30456 +#: guix-git/doc/guix.texi:30821 msgid "The @code{ovs-vsctl} utility is used for the configuration and its timeout option is set by default to 5 seconds to avoid potential infinite waits blocking libvirt." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30463 +#: guix-git/doc/guix.texi:30828 #, no-wrap msgid "Virtlog daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30466 +#: guix-git/doc/guix.texi:30831 msgid "The virtlogd service is a server side daemon component of libvirt that is used to manage logs from virtual machine consoles." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30472 +#: guix-git/doc/guix.texi:30837 msgid "This daemon is not used directly by libvirt client applications, rather it is called on their behalf by @code{libvirtd}. By maintaining the logs in a standalone daemon, the main @code{libvirtd} daemon can be restarted without risk of losing logs. The @code{virtlogd} daemon has the ability to re-exec() itself upon receiving @code{SIGUSR1}, to allow live upgrades without downtime." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30473 +#: guix-git/doc/guix.texi:30838 #, no-wrap msgid "{Scheme Variable} virtlog-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30476 +#: guix-git/doc/guix.texi:30841 msgid "This is the type of the virtlog daemon. Its value must be a @code{virtlog-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30481 +#: guix-git/doc/guix.texi:30846 #, no-wrap msgid "" "(service virtlog-service-type\n" @@ -54750,122 +55393,122 @@ msgid "" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30484 +#: guix-git/doc/guix.texi:30849 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30491 +#: guix-git/doc/guix.texi:30856 #, no-wrap msgid "{@code{virtlog-configuration} parameter} string log-filters" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30496 +#: guix-git/doc/guix.texi:30861 msgid "A filter allows to select a different logging level for a given category of logs The format for a filter is one of:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30513 +#: guix-git/doc/guix.texi:30878 msgid "where @code{name} is a string which is matched against the category given in the @code{VIR_LOG_INIT()} at the top of each libvirt source file, e.g., \"remote\", \"qemu\", or \"util.json\" (the name in the filter can be a substring of the full category name, in order to match multiple similar categories), the optional \"+\" prefix tells libvirt to log stack trace for each message matching name, and @code{x} is the minimal level where matching messages should be logged:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30536 +#: guix-git/doc/guix.texi:30901 #, no-wrap msgid "{@code{virtlog-configuration} parameter} string log-outputs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30541 +#: guix-git/doc/guix.texi:30906 msgid "An output is one of the places to save logging information The format for an output can be:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30581 +#: guix-git/doc/guix.texi:30946 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30586 +#: guix-git/doc/guix.texi:30951 msgid "Defaults to @samp{1024}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30589 +#: guix-git/doc/guix.texi:30954 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30591 +#: guix-git/doc/guix.texi:30956 msgid "Maximum file size before rolling over." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30593 +#: guix-git/doc/guix.texi:30958 msgid "Defaults to @samp{2MB}" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30596 +#: guix-git/doc/guix.texi:30961 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-backups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30598 +#: guix-git/doc/guix.texi:30963 msgid "Maximum number of backup files to keep." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30600 +#: guix-git/doc/guix.texi:30965 msgid "Defaults to @samp{3}" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:30604 +#: guix-git/doc/guix.texi:30969 msgid "transparent-emulation-qemu" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30604 +#: guix-git/doc/guix.texi:30969 #, no-wrap msgid "Transparent Emulation with QEMU" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30606 guix-git/doc/guix.texi:30686 +#: guix-git/doc/guix.texi:30971 guix-git/doc/guix.texi:31051 #, no-wrap msgid "emulation" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:30607 +#: guix-git/doc/guix.texi:30972 #, no-wrap msgid "binfmt_misc" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30615 +#: guix-git/doc/guix.texi:30980 msgid "@code{qemu-binfmt-service-type} provides support for transparent emulation of program binaries built for different architectures---e.g., it allows you to transparently execute an ARMv7 program on an x86_64 machine. It achieves this by combining the @uref{https://www.qemu.org, QEMU} emulator and the @code{binfmt_misc} feature of the kernel Linux. This feature only allows you to emulate GNU/Linux on a different architecture, but see below for GNU/Hurd support." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30616 +#: guix-git/doc/guix.texi:30981 #, no-wrap msgid "{Scheme Variable} qemu-binfmt-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30621 +#: guix-git/doc/guix.texi:30986 msgid "This is the type of the QEMU/binfmt service for transparent emulation. Its value must be a @code{qemu-binfmt-configuration} object, which specifies the QEMU package to use as well as the architecture we want to emulated:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30626 +#: guix-git/doc/guix.texi:30991 #, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -54874,39 +55517,39 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30632 +#: guix-git/doc/guix.texi:30997 msgid "In this example, we enable transparent emulation for the ARM and aarch64 platforms. Running @code{herd stop qemu-binfmt} turns it off, and running @code{herd start qemu-binfmt} turns it back on (@pxref{Invoking herd, the @command{herd} command,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30634 +#: guix-git/doc/guix.texi:30999 #, no-wrap msgid "{Data Type} qemu-binfmt-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30636 +#: guix-git/doc/guix.texi:31001 msgid "This is the configuration for the @code{qemu-binfmt} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30638 +#: guix-git/doc/guix.texi:31003 #, no-wrap msgid "@code{platforms} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30641 +#: guix-git/doc/guix.texi:31006 msgid "The list of emulated QEMU platforms. Each item must be a @dfn{platform object} as returned by @code{lookup-qemu-platforms} (see below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30644 +#: guix-git/doc/guix.texi:31009 msgid "For example, let's suppose you're on an x86_64 machine and you have this service:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30649 +#: guix-git/doc/guix.texi:31014 #, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -54915,79 +55558,79 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30652 +#: guix-git/doc/guix.texi:31017 msgid "You can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30655 +#: guix-git/doc/guix.texi:31020 #, no-wrap msgid "guix build -s armhf-linux inkscape\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30662 +#: guix-git/doc/guix.texi:31027 msgid "and it will build Inkscape for ARMv7 @emph{as if it were a native build}, transparently using QEMU to emulate the ARMv7 CPU@. Pretty handy if you'd like to test a package build for an architecture you don't have access to!" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30663 +#: guix-git/doc/guix.texi:31028 #, no-wrap msgid "@code{qemu} (default: @code{qemu})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30665 guix-git/doc/guix.texi:30723 -#: guix-git/doc/guix.texi:30805 +#: guix-git/doc/guix.texi:31030 guix-git/doc/guix.texi:31088 +#: guix-git/doc/guix.texi:31170 msgid "The QEMU package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30668 +#: guix-git/doc/guix.texi:31033 #, no-wrap msgid "{Scheme Procedure} lookup-qemu-platforms @var{platforms}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30673 +#: guix-git/doc/guix.texi:31038 msgid "Return the list of QEMU platform objects corresponding to @var{platforms}@dots{}. @var{platforms} must be a list of strings corresponding to platform names, such as @code{\"arm\"}, @code{\"sparc\"}, @code{\"mips64el\"}, and so on." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30675 +#: guix-git/doc/guix.texi:31040 #, no-wrap msgid "{Scheme Procedure} qemu-platform? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30677 +#: guix-git/doc/guix.texi:31042 msgid "Return true if @var{obj} is a platform object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30679 +#: guix-git/doc/guix.texi:31044 #, no-wrap msgid "{Scheme Procedure} qemu-platform-name @var{platform}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30681 +#: guix-git/doc/guix.texi:31046 msgid "Return the name of @var{platform}---a string such as @code{\"arm\"}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30684 +#: guix-git/doc/guix.texi:31049 #, no-wrap msgid "QEMU Guest Agent" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30692 +#: guix-git/doc/guix.texi:31057 msgid "The QEMU guest agent provides control over the emulated system to the host. The @code{qemu-guest-agent} service runs the agent on Guix guests. To control the agent from the host, open a socket by invoking QEMU with the following arguments:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30699 +#: guix-git/doc/guix.texi:31064 #, no-wrap msgid "" "qemu-system-x86_64 \\\n" @@ -54998,12 +55641,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30703 +#: guix-git/doc/guix.texi:31068 msgid "This creates a socket at @file{/tmp/qga.sock} on the host. Once the guest agent is running, you can issue commands with @code{socat}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30708 +#: guix-git/doc/guix.texi:31073 #, no-wrap msgid "" "$ guix shell socat -- socat unix-connect:/tmp/qga.sock stdio\n" @@ -55012,75 +55655,74 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30712 +#: guix-git/doc/guix.texi:31077 msgid "See @url{https://wiki.qemu.org/Features/GuestAgent,QEMU guest agent documentation} for more options and commands." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30713 +#: guix-git/doc/guix.texi:31078 #, no-wrap msgid "{Scheme Variable} qemu-guest-agent-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30715 +#: guix-git/doc/guix.texi:31080 msgid "Service type for the QEMU guest agent service." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30717 -#, fuzzy, no-wrap -#| msgid "System Configuration" +#: guix-git/doc/guix.texi:31082 +#, no-wrap msgid "{Data Type} qemu-guest-agent-configuration" -msgstr "Nastavenie systému" +msgstr "{Druh údajov} qemu-guest-agent-configuration" #. type: deftp -#: guix-git/doc/guix.texi:30719 +#: guix-git/doc/guix.texi:31084 msgid "Configuration for the @code{qemu-guest-agent} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30721 guix-git/doc/guix.texi:30803 +#: guix-git/doc/guix.texi:31086 guix-git/doc/guix.texi:31168 #, no-wrap msgid "@code{qemu} (default: @code{qemu-minimal})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30724 +#: guix-git/doc/guix.texi:31089 #, no-wrap msgid "@code{device} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30727 +#: guix-git/doc/guix.texi:31092 msgid "File name of the device or socket the agent uses to communicate with the host. If empty, QEMU uses a default file name." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30731 +#: guix-git/doc/guix.texi:31096 #, no-wrap msgid "The Hurd in a Virtual Machine" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30734 +#: guix-git/doc/guix.texi:31099 #, no-wrap msgid "the Hurd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30735 +#: guix-git/doc/guix.texi:31100 #, no-wrap msgid "childhurd" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30743 +#: guix-git/doc/guix.texi:31108 msgid "Service @code{hurd-vm} provides support for running GNU/Hurd in a virtual machine (VM), a so-called @dfn{childhurd}. This service is meant to be used on GNU/Linux and the given GNU/Hurd operating system configuration is cross-compiled. The virtual machine is a Shepherd service that can be referred to by the names @code{hurd-vm} and @code{childhurd} and be controlled with commands such as:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30747 +#: guix-git/doc/guix.texi:31112 #, no-wrap msgid "" "herd start hurd-vm\n" @@ -55088,50 +55730,50 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30751 +#: guix-git/doc/guix.texi:31116 msgid "When the service is running, you can view its console by connecting to it with a VNC client, for example with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30754 +#: guix-git/doc/guix.texi:31119 #, no-wrap msgid "guix shell tigervnc-client -- vncviewer localhost:5900\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30760 +#: guix-git/doc/guix.texi:31125 msgid "The default configuration (see @code{hurd-vm-configuration} below) spawns a secure shell (SSH) server in your GNU/Hurd system, which QEMU (the virtual machine emulator) redirects to port 10222 on the host. Thus, you can connect over SSH to the childhurd with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30763 +#: guix-git/doc/guix.texi:31128 #, no-wrap msgid "ssh root@@localhost -p 10022\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30772 +#: guix-git/doc/guix.texi:31137 msgid "The childhurd is volatile and stateless: it starts with a fresh root file system every time you restart it. By default though, all the files under @file{/etc/childhurd} on the host are copied as is to the root file system of the childhurd when it boots. This allows you to initialize ``secrets'' inside the VM: SSH host keys, authorized substitute keys, and so on---see the explanation of @code{secret-root} below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30773 +#: guix-git/doc/guix.texi:31138 #, no-wrap msgid "{Scheme Variable} hurd-vm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30779 +#: guix-git/doc/guix.texi:31144 msgid "This is the type of the Hurd in a Virtual Machine service. Its value must be a @code{hurd-vm-configuration} object, which specifies the operating system (@pxref{operating-system Reference}) and the disk size for the Hurd Virtual Machine, the QEMU package to use as well as the options for running it." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30781 +#: guix-git/doc/guix.texi:31146 msgid "For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30787 +#: guix-git/doc/guix.texi:31152 #, no-wrap msgid "" "(service hurd-vm-service-type\n" @@ -55141,99 +55783,99 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30791 +#: guix-git/doc/guix.texi:31156 msgid "would create a disk image big enough to build GNU@tie{}Hello, with some extra memory." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30793 +#: guix-git/doc/guix.texi:31158 #, no-wrap msgid "{Data Type} hurd-vm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30796 +#: guix-git/doc/guix.texi:31161 msgid "The data type representing the configuration for @code{hurd-vm-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30798 +#: guix-git/doc/guix.texi:31163 #, no-wrap msgid "@code{os} (default: @var{%hurd-vm-operating-system})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30802 +#: guix-git/doc/guix.texi:31167 msgid "The operating system to instantiate. This default is bare-bones with a permissive OpenSSH secure shell daemon listening on port 2222 (@pxref{Networking Services, @code{openssh-service-type}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30806 +#: guix-git/doc/guix.texi:31171 #, no-wrap msgid "@code{image} (default: @var{hurd-vm-disk-image})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30809 +#: guix-git/doc/guix.texi:31174 msgid "The procedure used to build the disk-image built from this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30810 +#: guix-git/doc/guix.texi:31175 #, no-wrap msgid "@code{disk-size} (default: @code{'guess})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30812 +#: guix-git/doc/guix.texi:31177 msgid "The size of the disk image." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30813 +#: guix-git/doc/guix.texi:31178 #, no-wrap msgid "@code{memory-size} (default: @code{512})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30815 +#: guix-git/doc/guix.texi:31180 msgid "The memory size of the Virtual Machine in mebibytes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30816 +#: guix-git/doc/guix.texi:31181 #, no-wrap msgid "@code{options} (default: @code{'(\"--snapshot\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30818 +#: guix-git/doc/guix.texi:31183 msgid "The extra options for running QEMU." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30823 +#: guix-git/doc/guix.texi:31188 msgid "If set, a non-zero positive integer used to parameterize Childhurd instances. It is appended to the service's name, e.g. @code{childhurd1}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30824 +#: guix-git/doc/guix.texi:31189 #, no-wrap msgid "@code{net-options} (default: @var{hurd-vm-net-options})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30826 +#: guix-git/doc/guix.texi:31191 msgid "The procedure used to produce the list of QEMU networking options." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30828 +#: guix-git/doc/guix.texi:31193 msgid "By default, it produces" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30836 +#: guix-git/doc/guix.texi:31201 #, no-wrap msgid "" "'(\"--device\" \"rtl8139,netdev=net0\"\n" @@ -55245,12 +55887,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30839 +#: guix-git/doc/guix.texi:31204 msgid "with forwarded ports:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30844 +#: guix-git/doc/guix.texi:31209 #, no-wrap msgid "" "@var{secrets-port}: @code{(+ 11004 (* 1000 @var{ID}))}\n" @@ -55259,28 +55901,28 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30846 +#: guix-git/doc/guix.texi:31211 #, no-wrap msgid "@code{secret-root} (default: @file{/etc/childhurd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30851 +#: guix-git/doc/guix.texi:31216 msgid "The root directory with out-of-band secrets to be installed into the childhurd once it runs. Childhurds are volatile which means that on every startup, secrets such as the SSH host keys and Guix signing key are recreated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30855 +#: guix-git/doc/guix.texi:31220 msgid "If the @file{/etc/childhurd} directory does not exist, the @code{secret-service} running in the Childhurd will be sent an empty list of secrets." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30858 +#: guix-git/doc/guix.texi:31223 msgid "By default, the service automatically populates @file{/etc/childhurd} with the following non-volatile secrets, unless they already exist:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30867 +#: guix-git/doc/guix.texi:31232 #, no-wrap msgid "" "/etc/childhurd/etc/guix/acl\n" @@ -55293,34 +55935,34 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30871 +#: guix-git/doc/guix.texi:31236 msgid "These files are automatically sent to the guest Hurd VM when it boots, including permissions." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30872 +#: guix-git/doc/guix.texi:31237 #, no-wrap msgid "childhurd, offloading" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30873 +#: guix-git/doc/guix.texi:31238 #, no-wrap msgid "Hurd, offloading" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30877 +#: guix-git/doc/guix.texi:31242 msgid "Having these files in place means that only a couple of things are missing to allow the host to offload @code{i586-gnu} builds to the childhurd:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:30882 +#: guix-git/doc/guix.texi:31247 msgid "Authorizing the childhurd's key on the host so that the host accepts build results coming from the childhurd, which can be done like so:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30886 +#: guix-git/doc/guix.texi:31251 #, no-wrap msgid "" "guix archive --authorize < \\\n" @@ -55328,22 +55970,22 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:30891 +#: guix-git/doc/guix.texi:31256 msgid "Adding the childhurd to @file{/etc/guix/machines.scm} (@pxref{Daemon Offload Setup})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30895 +#: guix-git/doc/guix.texi:31260 msgid "We're working towards making that happen automatically---get in touch with us at @email{guix-devel@@gnu.org} to discuss it!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30902 +#: guix-git/doc/guix.texi:31267 msgid "Note that by default the VM image is volatile, i.e., once stopped the contents are lost. If you want a stateful image instead, override the configuration's @code{image} and @code{options} without the @code{--snapshot} flag using something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30908 +#: guix-git/doc/guix.texi:31273 #, no-wrap msgid "" "(service hurd-vm-service-type\n" @@ -55353,34 +55995,34 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30910 +#: guix-git/doc/guix.texi:31275 #, no-wrap msgid "Ganeti" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30912 +#: guix-git/doc/guix.texi:31277 #, no-wrap msgid "ganeti" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:30919 +#: guix-git/doc/guix.texi:31284 msgid "This service is considered experimental. Configuration options may be changed in a backwards-incompatible manner, and not all features have been thorougly tested. Users of this service are encouraged to share their experience at @email{guix-devel@@gnu.org}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30929 +#: guix-git/doc/guix.texi:31294 msgid "Ganeti is a virtual machine management system. It is designed to keep virtual machines running on a cluster of servers even in the event of hardware failures, and to make maintenance and recovery tasks easy. It consists of multiple services which are described later in this section. In addition to the Ganeti service, you will need the OpenSSH service (@pxref{Networking Services, @code{openssh-service-type}}), and update the @file{/etc/hosts} file (@pxref{operating-system Reference, @code{hosts-file}}) with the cluster name and address (or use a DNS server)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30934 +#: guix-git/doc/guix.texi:31299 msgid "All nodes participating in a Ganeti cluster should have the same Ganeti and @file{/etc/hosts} configuration. Here is an example configuration for a Ganeti cluster node that supports multiple storage backends, and installs the @code{debootstrap} and @code{guix} @dfn{OS providers}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30944 +#: guix-git/doc/guix.texi:31309 #, no-wrap msgid "" "(use-package-modules virtualization)\n" @@ -55395,7 +56037,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30949 +#: guix-git/doc/guix.texi:31314 #, no-wrap msgid "" "192.168.1.200 ganeti.example.com\n" @@ -55406,7 +56048,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30970 +#: guix-git/doc/guix.texi:31335 #, no-wrap msgid "" " ;; Install QEMU so we can use KVM-based instances, and LVM, DRBD and Ceph\n" @@ -55433,7 +56075,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30975 +#: guix-git/doc/guix.texi:31340 #, no-wrap msgid "" " ;; Ganeti uses SSH to communicate between nodes.\n" @@ -55444,7 +56086,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30985 +#: guix-git/doc/guix.texi:31350 #, no-wrap msgid "" " (service ganeti-service-type\n" @@ -55459,120 +56101,120 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30993 +#: guix-git/doc/guix.texi:31358 msgid "Users are advised to read the @url{http://docs.ganeti.org/ganeti/master/html/admin.html,Ganeti administrators guide} to learn about the various cluster options and day-to-day operations. There is also a @url{https://guix.gnu.org/blog/2020/running-a-ganeti-cluster-on-guix/,blog post} describing how to configure and initialize a small cluster." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30994 +#: guix-git/doc/guix.texi:31359 #, no-wrap msgid "{Scheme Variable} ganeti-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30997 +#: guix-git/doc/guix.texi:31362 msgid "This is a service type that includes all the various services that Ganeti nodes should run." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31002 +#: guix-git/doc/guix.texi:31367 msgid "Its value is a @code{ganeti-configuration} object that defines the package to use for CLI operations, as well as configuration for the various daemons. Allowed file storage paths and available guest operating systems are also configured through this data type." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31004 +#: guix-git/doc/guix.texi:31369 #, no-wrap msgid "{Data Type} ganeti-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31006 +#: guix-git/doc/guix.texi:31371 msgid "The @code{ganeti} service takes the following configuration options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31008 guix-git/doc/guix.texi:31236 -#: guix-git/doc/guix.texi:31286 guix-git/doc/guix.texi:31316 -#: guix-git/doc/guix.texi:31343 guix-git/doc/guix.texi:31375 -#: guix-git/doc/guix.texi:31428 guix-git/doc/guix.texi:31448 -#: guix-git/doc/guix.texi:31474 guix-git/doc/guix.texi:31507 -#: guix-git/doc/guix.texi:31547 +#: guix-git/doc/guix.texi:31373 guix-git/doc/guix.texi:31601 +#: guix-git/doc/guix.texi:31651 guix-git/doc/guix.texi:31681 +#: guix-git/doc/guix.texi:31708 guix-git/doc/guix.texi:31740 +#: guix-git/doc/guix.texi:31793 guix-git/doc/guix.texi:31813 +#: guix-git/doc/guix.texi:31839 guix-git/doc/guix.texi:31872 +#: guix-git/doc/guix.texi:31912 #, no-wrap msgid "@code{ganeti} (default: @code{ganeti})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31013 +#: guix-git/doc/guix.texi:31378 msgid "The @code{ganeti} package to use. It will be installed to the system profile and make @command{gnt-cluster}, @command{gnt-instance}, etc available. Note that the value specified here does not affect the other services as each refer to a specific @code{ganeti} package (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31014 +#: guix-git/doc/guix.texi:31379 #, no-wrap msgid "@code{noded-configuration} (default: @code{(ganeti-noded-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31015 +#: guix-git/doc/guix.texi:31380 #, no-wrap msgid "@code{confd-configuration} (default: @code{(ganeti-confd-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31016 +#: guix-git/doc/guix.texi:31381 #, no-wrap msgid "@code{wconfd-configuration} (default: @code{(ganeti-wconfd-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31017 +#: guix-git/doc/guix.texi:31382 #, no-wrap msgid "@code{luxid-configuration} (default: @code{(ganeti-luxid-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31018 +#: guix-git/doc/guix.texi:31383 #, no-wrap msgid "@code{rapi-configuration} (default: @code{(ganeti-rapi-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31019 +#: guix-git/doc/guix.texi:31384 #, no-wrap msgid "@code{kvmd-configuration} (default: @code{(ganeti-kvmd-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31020 +#: guix-git/doc/guix.texi:31385 #, no-wrap msgid "@code{mond-configuration} (default: @code{(ganeti-mond-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31021 +#: guix-git/doc/guix.texi:31386 #, no-wrap msgid "@code{metad-configuration} (default: @code{(ganeti-metad-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31022 +#: guix-git/doc/guix.texi:31387 #, no-wrap msgid "@code{watcher-configuration} (default: @code{(ganeti-watcher-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31023 +#: guix-git/doc/guix.texi:31388 #, no-wrap msgid "@code{cleaner-configuration} (default: @code{(ganeti-cleaner-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31028 +#: guix-git/doc/guix.texi:31393 msgid "These options control the various daemons and cron jobs that are distributed with Ganeti. The possible values for these are described in detail below. To override a setting, you must use the configuration type for that service:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31038 +#: guix-git/doc/guix.texi:31403 #, no-wrap msgid "" "(service ganeti-service-type\n" @@ -55586,34 +56228,34 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31040 +#: guix-git/doc/guix.texi:31405 #, no-wrap msgid "@code{file-storage-paths} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31042 +#: guix-git/doc/guix.texi:31407 msgid "List of allowed directories for file storage backend." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31043 +#: guix-git/doc/guix.texi:31408 #, no-wrap msgid "@code{os} (default: @code{%default-ganeti-os})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31045 +#: guix-git/doc/guix.texi:31410 msgid "List of @code{} records." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31049 +#: guix-git/doc/guix.texi:31414 msgid "In essence @code{ganeti-service-type} is shorthand for declaring each service individually:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31060 +#: guix-git/doc/guix.texi:31425 #, no-wrap msgid "" "(service ganeti-noded-service-type)\n" @@ -55628,297 +56270,297 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31064 +#: guix-git/doc/guix.texi:31429 msgid "Plus a service extension for @code{etc-service-type} that configures the file storage backend and OS variants." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31067 +#: guix-git/doc/guix.texi:31432 #, no-wrap msgid "{Data Type} ganeti-os" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31070 +#: guix-git/doc/guix.texi:31435 msgid "This data type is suitable for passing to the @code{os} parameter of @code{ganeti-configuration}. It takes the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31076 +#: guix-git/doc/guix.texi:31441 msgid "The name for this OS provider. It is only used to specify where the configuration ends up. Setting it to ``debootstrap'' will create @file{/etc/ganeti/instance-debootstrap}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:31077 +#: guix-git/doc/guix.texi:31442 #, no-wrap msgid "extension" -msgstr "" +msgstr "extension" #. type: table -#: guix-git/doc/guix.texi:31080 +#: guix-git/doc/guix.texi:31445 msgid "The file extension for variants of this OS type. For example @file{.conf} or @file{.scm}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31081 +#: guix-git/doc/guix.texi:31446 #, no-wrap msgid "@code{variants} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31083 +#: guix-git/doc/guix.texi:31448 msgid "List of @code{ganeti-os-variant} objects for this OS." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31087 +#: guix-git/doc/guix.texi:31452 #, no-wrap msgid "{Data Type} ganeti-os-variant" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31090 +#: guix-git/doc/guix.texi:31455 msgid "This is the data type for a Ganeti OS variant. It takes the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31094 +#: guix-git/doc/guix.texi:31459 msgid "The name of this variant." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:31095 +#: guix-git/doc/guix.texi:31460 #, no-wrap msgid "configuration" -msgstr "" +msgstr "configuration" #. type: table -#: guix-git/doc/guix.texi:31097 +#: guix-git/doc/guix.texi:31462 msgid "A configuration file for this variant." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31100 +#: guix-git/doc/guix.texi:31465 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-hooks" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31102 +#: guix-git/doc/guix.texi:31467 msgid "This variable contains hooks to configure networking and the GRUB bootloader." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31104 +#: guix-git/doc/guix.texi:31469 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-extra-pkgs" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31106 +#: guix-git/doc/guix.texi:31471 msgid "This variable contains a list of packages suitable for a fully-virtualized guest." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31108 +#: guix-git/doc/guix.texi:31473 #, no-wrap msgid "{Data Type} debootstrap-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31111 +#: guix-git/doc/guix.texi:31476 msgid "This data type creates configuration files suitable for the debootstrap OS provider." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31113 +#: guix-git/doc/guix.texi:31478 #, no-wrap msgid "@code{hooks} (default: @code{%default-debootstrap-hooks})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31117 +#: guix-git/doc/guix.texi:31482 msgid "When not @code{#f}, this must be a G-expression that specifies a directory with scripts that will run when the OS is installed. It can also be a list of @code{(name . file-like)} pairs. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31120 +#: guix-git/doc/guix.texi:31485 #, no-wrap msgid "`((99-hello-world . ,(plain-file \"#!/bin/sh\\necho Hello, World\")))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31125 +#: guix-git/doc/guix.texi:31490 msgid "That will create a directory with one executable named @code{99-hello-world} and run it every time this variant is installed. If set to @code{#f}, hooks in @file{/etc/ganeti/instance-debootstrap/hooks} will be used, if any." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31125 +#: guix-git/doc/guix.texi:31490 #, no-wrap msgid "@code{proxy} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31127 +#: guix-git/doc/guix.texi:31492 msgid "Optional HTTP proxy to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31127 +#: guix-git/doc/guix.texi:31492 guix-git/doc/guix.texi:33685 #, no-wrap msgid "@code{mirror} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31130 +#: guix-git/doc/guix.texi:31495 msgid "The Debian mirror. Typically something like @code{http://ftp.no.debian.org/debian}. The default varies depending on the distribution." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31130 +#: guix-git/doc/guix.texi:31495 #, no-wrap msgid "@code{arch} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31133 +#: guix-git/doc/guix.texi:31498 msgid "The dpkg architecture. Set to @code{armhf} to debootstrap an ARMv7 instance on an AArch64 host. Default is to use the current system architecture." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31133 +#: guix-git/doc/guix.texi:31498 #, no-wrap msgid "@code{suite} (default: @code{\"stable\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31136 +#: guix-git/doc/guix.texi:31501 msgid "When set, this must be a Debian distribution ``suite'' such as @code{buster} or @code{focal}. If set to @code{#f}, the default for the OS provider is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31136 +#: guix-git/doc/guix.texi:31501 #, no-wrap msgid "@code{extra-pkgs} (default: @code{%default-debootstrap-extra-pkgs})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31139 +#: guix-git/doc/guix.texi:31504 msgid "List of extra packages that will get installed by dpkg in addition to the minimal system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31139 +#: guix-git/doc/guix.texi:31504 #, no-wrap msgid "@code{components} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31142 +#: guix-git/doc/guix.texi:31507 msgid "When set, must be a list of Debian repository ``components''. For example @code{'(\"main\" \"contrib\")}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31142 +#: guix-git/doc/guix.texi:31507 #, no-wrap msgid "@code{generate-cache?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31144 +#: guix-git/doc/guix.texi:31509 msgid "Whether to automatically cache the generated debootstrap archive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31144 +#: guix-git/doc/guix.texi:31509 #, no-wrap msgid "@code{clean-cache} (default: @code{14})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31147 +#: guix-git/doc/guix.texi:31512 msgid "Discard the cache after this amount of days. Use @code{#f} to never clear the cache." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31147 +#: guix-git/doc/guix.texi:31512 #, no-wrap msgid "@code{partition-style} (default: @code{'msdos})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31150 +#: guix-git/doc/guix.texi:31515 msgid "The type of partition to create. When set, it must be one of @code{'msdos}, @code{'none} or a string." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31150 +#: guix-git/doc/guix.texi:31515 #, no-wrap msgid "@code{partition-alignment} (default: @code{2048})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31152 +#: guix-git/doc/guix.texi:31517 msgid "Alignment of the partition in sectors." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31155 +#: guix-git/doc/guix.texi:31520 #, no-wrap msgid "{Scheme Procedure} debootstrap-variant @var{name} @var{configuration}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31158 +#: guix-git/doc/guix.texi:31523 msgid "This is a helper procedure that creates a @code{ganeti-os-variant} record. It takes two parameters: a name and a @code{debootstrap-configuration} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31160 +#: guix-git/doc/guix.texi:31525 #, no-wrap msgid "{Scheme Procedure} debootstrap-os @var{variants}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31163 +#: guix-git/doc/guix.texi:31528 msgid "This is a helper procedure that creates a @code{ganeti-os} record. It takes a list of variants created with @code{debootstrap-variant}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31165 +#: guix-git/doc/guix.texi:31530 #, no-wrap msgid "{Scheme Procedure} guix-variant @var{name} @var{configuration}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31170 +#: guix-git/doc/guix.texi:31535 msgid "This is a helper procedure that creates a @code{ganeti-os-variant} record for use with the Guix OS provider. It takes a name and a G-expression that returns a ``file-like'' (@pxref{G-Expressions, file-like objects}) object containing a Guix System configuration." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31172 +#: guix-git/doc/guix.texi:31537 #, no-wrap msgid "{Scheme Procedure} guix-os @var{variants}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31175 +#: guix-git/doc/guix.texi:31540 msgid "This is a helper procedure that creates a @code{ganeti-os} record. It takes a list of variants produced by @code{guix-variant}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31177 +#: guix-git/doc/guix.texi:31542 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-variants" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31181 +#: guix-git/doc/guix.texi:31546 msgid "This is a convenience variable to make the debootstrap provider work ``out of the box'' without users having to declare variants manually. It contains a single debootstrap variant with the default configuration:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31186 +#: guix-git/doc/guix.texi:31551 #, no-wrap msgid "" "(list (debootstrap-variant\n" @@ -55927,18 +56569,18 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31189 +#: guix-git/doc/guix.texi:31554 #, no-wrap msgid "{Scheme Variable} %default-guix-variants" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31193 +#: guix-git/doc/guix.texi:31558 msgid "This is a convenience variable to make the Guix OS provider work without additional configuration. It creates a virtual machine that has an SSH server, a serial console, and authorizes the Ganeti hosts SSH keys." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31199 +#: guix-git/doc/guix.texi:31564 #, no-wrap msgid "" "(list (guix-variant\n" @@ -55948,12 +56590,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31205 +#: guix-git/doc/guix.texi:31570 msgid "Users can implement support for OS providers unbeknownst to Guix by extending the @code{ganeti-os} and @code{ganeti-os-variant} records appropriately. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31214 +#: guix-git/doc/guix.texi:31579 #, no-wrap msgid "" "(ganeti-os\n" @@ -55966,726 +56608,726 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31219 +#: guix-git/doc/guix.texi:31584 msgid "That creates @file{/etc/ganeti/instance-custom/variants/foo.conf} which points to a file in the store with contents @code{this is fine}. It also creates @file{/etc/ganeti/instance-custom/variants/variants.list} with contents @code{foo}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31222 +#: guix-git/doc/guix.texi:31587 msgid "Obviously this may not work for all OS providers out there. If you find the interface limiting, please reach out to @email{guix-devel@@gnu.org}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31225 +#: guix-git/doc/guix.texi:31590 msgid "The rest of this section documents the various services that are included by @code{ganeti-service-type}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31226 +#: guix-git/doc/guix.texi:31591 #, no-wrap msgid "{Scheme Variable} ganeti-noded-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31230 +#: guix-git/doc/guix.texi:31595 msgid "@command{ganeti-noded} is the daemon responsible for node-specific functions within the Ganeti system. The value of this service must be a @code{ganeti-noded-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31232 +#: guix-git/doc/guix.texi:31597 #, no-wrap msgid "{Data Type} ganeti-noded-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31234 +#: guix-git/doc/guix.texi:31599 msgid "This is the configuration for the @code{ganeti-noded} service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31238 guix-git/doc/guix.texi:31288 -#: guix-git/doc/guix.texi:31318 guix-git/doc/guix.texi:31345 -#: guix-git/doc/guix.texi:31377 guix-git/doc/guix.texi:31430 -#: guix-git/doc/guix.texi:31450 guix-git/doc/guix.texi:31476 -#: guix-git/doc/guix.texi:31509 +#: guix-git/doc/guix.texi:31603 guix-git/doc/guix.texi:31653 +#: guix-git/doc/guix.texi:31683 guix-git/doc/guix.texi:31710 +#: guix-git/doc/guix.texi:31742 guix-git/doc/guix.texi:31795 +#: guix-git/doc/guix.texi:31815 guix-git/doc/guix.texi:31841 +#: guix-git/doc/guix.texi:31874 msgid "The @code{ganeti} package to use for this service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31239 +#: guix-git/doc/guix.texi:31604 #, no-wrap msgid "@code{port} (default: @code{1811})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31241 +#: guix-git/doc/guix.texi:31606 msgid "The TCP port on which the node daemon listens for network requests." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31242 guix-git/doc/guix.texi:31292 -#: guix-git/doc/guix.texi:31384 guix-git/doc/guix.texi:31454 +#: guix-git/doc/guix.texi:31607 guix-git/doc/guix.texi:31657 +#: guix-git/doc/guix.texi:31749 guix-git/doc/guix.texi:31819 #, no-wrap msgid "@code{address} (default: @code{\"0.0.0.0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31245 +#: guix-git/doc/guix.texi:31610 msgid "The network address that the daemon will bind to. The default address means bind to all available addresses." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31249 +#: guix-git/doc/guix.texi:31614 msgid "When this is set, it must be a specific network interface (e.g.@: @code{eth0}) that the daemon will bind to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31250 guix-git/doc/guix.texi:31392 +#: guix-git/doc/guix.texi:31615 guix-git/doc/guix.texi:31757 #, no-wrap msgid "@code{max-clients} (default: @code{20})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31254 +#: guix-git/doc/guix.texi:31619 msgid "This sets a limit on the maximum number of simultaneous client connections that the daemon will handle. Connections above this count are accepted, but no responses will be sent until enough connections have closed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31255 guix-git/doc/guix.texi:31397 +#: guix-git/doc/guix.texi:31620 guix-git/doc/guix.texi:31762 #, no-wrap msgid "@code{ssl?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31259 +#: guix-git/doc/guix.texi:31624 msgid "Whether to use SSL/TLS to encrypt network communications. The certificate is automatically provisioned by the cluster and can be rotated with @command{gnt-cluster renew-crypto}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31260 guix-git/doc/guix.texi:31400 +#: guix-git/doc/guix.texi:31625 guix-git/doc/guix.texi:31765 #, no-wrap msgid "@code{ssl-key} (default: @file{\"/var/lib/ganeti/server.pem\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31262 guix-git/doc/guix.texi:31402 +#: guix-git/doc/guix.texi:31627 guix-git/doc/guix.texi:31767 msgid "This can be used to provide a specific encryption key for TLS communications." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31263 guix-git/doc/guix.texi:31403 +#: guix-git/doc/guix.texi:31628 guix-git/doc/guix.texi:31768 #, no-wrap msgid "@code{ssl-cert} (default: @file{\"/var/lib/ganeti/server.pem\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31265 guix-git/doc/guix.texi:31405 +#: guix-git/doc/guix.texi:31630 guix-git/doc/guix.texi:31770 msgid "This can be used to provide a specific certificate for TLS communications." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31269 guix-git/doc/guix.texi:31409 +#: guix-git/doc/guix.texi:31634 guix-git/doc/guix.texi:31774 msgid "When true, the daemon performs additional logging for debugging purposes. Note that this will leak encryption details to the log files, use with caution." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31273 +#: guix-git/doc/guix.texi:31638 #, no-wrap msgid "{Scheme Variable} ganeti-confd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31279 +#: guix-git/doc/guix.texi:31644 msgid "@command{ganeti-confd} answers queries related to the configuration of a Ganeti cluster. The purpose of this daemon is to have a highly available and fast way to query cluster configuration values. It is automatically active on all @dfn{master candidates}. The value of this service must be a @code{ganeti-confd-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31282 +#: guix-git/doc/guix.texi:31647 #, no-wrap msgid "{Data Type} ganeti-confd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31284 +#: guix-git/doc/guix.texi:31649 msgid "This is the configuration for the @code{ganeti-confd} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31289 +#: guix-git/doc/guix.texi:31654 #, no-wrap msgid "@code{port} (default: @code{1814})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31291 +#: guix-git/doc/guix.texi:31656 msgid "The UDP port on which to listen for network requests." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31294 +#: guix-git/doc/guix.texi:31659 msgid "Network address that the daemon will bind to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31297 guix-git/doc/guix.texi:31326 -#: guix-git/doc/guix.texi:31353 guix-git/doc/guix.texi:31433 -#: guix-git/doc/guix.texi:31460 guix-git/doc/guix.texi:31486 +#: guix-git/doc/guix.texi:31662 guix-git/doc/guix.texi:31691 +#: guix-git/doc/guix.texi:31718 guix-git/doc/guix.texi:31798 +#: guix-git/doc/guix.texi:31825 guix-git/doc/guix.texi:31851 msgid "When true, the daemon performs additional logging for debugging purposes." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31301 +#: guix-git/doc/guix.texi:31666 #, no-wrap msgid "{Scheme Variable} ganeti-wconfd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31307 +#: guix-git/doc/guix.texi:31672 msgid "@command{ganeti-wconfd} is the daemon that has authoritative knowledge about the cluster configuration and is the only entity that can accept changes to it. All jobs that need to modify the configuration will do so by sending appropriate requests to this daemon. It only runs on the @dfn{master node} and will automatically disable itself on other nodes." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31310 +#: guix-git/doc/guix.texi:31675 msgid "The value of this service must be a @code{ganeti-wconfd-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31312 +#: guix-git/doc/guix.texi:31677 #, no-wrap msgid "{Data Type} ganeti-wconfd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31314 +#: guix-git/doc/guix.texi:31679 msgid "This is the configuration for the @code{ganeti-wconfd} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31319 guix-git/doc/guix.texi:31346 +#: guix-git/doc/guix.texi:31684 guix-git/doc/guix.texi:31711 #, no-wrap msgid "@code{no-voting?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31323 +#: guix-git/doc/guix.texi:31688 msgid "The daemon will refuse to start if the majority of cluster nodes does not agree that it is running on the master node. Set to @code{#t} to start even if a quorum can not be reached (dangerous, use with caution)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31330 +#: guix-git/doc/guix.texi:31695 #, no-wrap msgid "{Scheme Variable} ganeti-luxid-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31335 +#: guix-git/doc/guix.texi:31700 msgid "@command{ganeti-luxid} is a daemon used to answer queries related to the configuration and the current live state of a Ganeti cluster. Additionally, it is the authoritative daemon for the Ganeti job queue. Jobs can be submitted via this daemon and it schedules and starts them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31337 +#: guix-git/doc/guix.texi:31702 msgid "It takes a @code{ganeti-luxid-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31339 +#: guix-git/doc/guix.texi:31704 #, no-wrap msgid "{Data Type} ganeti-luxid-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31341 +#: guix-git/doc/guix.texi:31706 msgid "This is the configuration for the @code{ganeti-luxid} service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31350 +#: guix-git/doc/guix.texi:31715 msgid "The daemon will refuse to start if it cannot verify that the majority of cluster nodes believes that it is running on the master node. Set to @code{#t} to ignore such checks and start anyway (this can be dangerous)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31357 +#: guix-git/doc/guix.texi:31722 #, no-wrap msgid "{Scheme Variable} ganeti-rapi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31361 +#: guix-git/doc/guix.texi:31726 msgid "@command{ganeti-rapi} provides a remote API for Ganeti clusters. It runs on the master node and can be used to perform cluster actions programmatically via a JSON-based RPC protocol." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31367 +#: guix-git/doc/guix.texi:31732 msgid "Most query operations are allowed without authentication (unless @var{require-authentication?} is set), whereas write operations require explicit authorization via the @file{/var/lib/ganeti/rapi/users} file. See the @url{http://docs.ganeti.org/ganeti/master/html/rapi.html, Ganeti Remote API documentation} for more information." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31369 +#: guix-git/doc/guix.texi:31734 msgid "The value of this service must be a @code{ganeti-rapi-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31371 +#: guix-git/doc/guix.texi:31736 #, no-wrap msgid "{Data Type} ganeti-rapi-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31373 +#: guix-git/doc/guix.texi:31738 msgid "This is the configuration for the @code{ganeti-rapi} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31378 +#: guix-git/doc/guix.texi:31743 #, no-wrap msgid "@code{require-authentication?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31380 +#: guix-git/doc/guix.texi:31745 msgid "Whether to require authentication even for read-only operations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31381 +#: guix-git/doc/guix.texi:31746 #, no-wrap msgid "@code{port} (default: @code{5080})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31383 +#: guix-git/doc/guix.texi:31748 msgid "The TCP port on which to listen to API requests." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31387 +#: guix-git/doc/guix.texi:31752 msgid "The network address that the service will bind to. By default it listens on all configured addresses." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31391 +#: guix-git/doc/guix.texi:31756 msgid "When set, it must specify a specific network interface such as @code{eth0} that the daemon will bind to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31396 +#: guix-git/doc/guix.texi:31761 msgid "The maximum number of simultaneous client requests to handle. Further connections are allowed, but no responses are sent until enough connections have closed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31399 +#: guix-git/doc/guix.texi:31764 msgid "Whether to use SSL/TLS encryption on the RAPI port." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31413 +#: guix-git/doc/guix.texi:31778 #, no-wrap msgid "{Scheme Variable} ganeti-kvmd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31421 +#: guix-git/doc/guix.texi:31786 msgid "@command{ganeti-kvmd} is responsible for determining whether a given KVM instance was shut down by an administrator or a user. Normally Ganeti will restart an instance that was not stopped through Ganeti itself. If the cluster option @code{user_shutdown} is true, this daemon monitors the @code{QMP} socket provided by QEMU and listens for shutdown events, and marks the instance as @dfn{USER_down} instead of @dfn{ERROR_down} when it shuts down gracefully by itself." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31423 +#: guix-git/doc/guix.texi:31788 msgid "It takes a @code{ganeti-kvmd-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31425 +#: guix-git/doc/guix.texi:31790 #, no-wrap msgid "{Data Type} ganeti-kvmd-configuration" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31437 +#: guix-git/doc/guix.texi:31802 #, no-wrap msgid "{Scheme Variable} ganeti-mond-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31441 +#: guix-git/doc/guix.texi:31806 msgid "@command{ganeti-mond} is an optional daemon that provides Ganeti monitoring functionality. It is responsible for running data collectors and publish the collected information through a HTTP interface." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31443 +#: guix-git/doc/guix.texi:31808 msgid "It takes a @code{ganeti-mond-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31445 +#: guix-git/doc/guix.texi:31810 #, no-wrap msgid "{Data Type} ganeti-mond-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31451 +#: guix-git/doc/guix.texi:31816 #, no-wrap msgid "@code{port} (default: @code{1815})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31453 guix-git/doc/guix.texi:31479 +#: guix-git/doc/guix.texi:31818 guix-git/doc/guix.texi:31844 msgid "The port on which the daemon will listen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31457 +#: guix-git/doc/guix.texi:31822 msgid "The network address that the daemon will bind to. By default it binds to all available interfaces." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31464 +#: guix-git/doc/guix.texi:31829 #, no-wrap msgid "{Scheme Variable} ganeti-metad-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31467 +#: guix-git/doc/guix.texi:31832 msgid "@command{ganeti-metad} is an optional daemon that can be used to provide information about the cluster to instances or OS install scripts." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31469 +#: guix-git/doc/guix.texi:31834 msgid "It takes a @code{ganeti-metad-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31471 +#: guix-git/doc/guix.texi:31836 #, no-wrap msgid "{Data Type} ganeti-metad-configuration" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31483 +#: guix-git/doc/guix.texi:31848 msgid "If set, the daemon will bind to this address only. If left unset, the behavior depends on the cluster configuration." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31490 +#: guix-git/doc/guix.texi:31855 #, no-wrap msgid "{Scheme Variable} ganeti-watcher-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31498 +#: guix-git/doc/guix.texi:31863 msgid "@command{ganeti-watcher} is a script designed to run periodically and ensure the health of a cluster. It will automatically restart instances that have stopped without Ganeti's consent, and repairs DRBD links in case a node has rebooted. It also archives old cluster jobs and restarts Ganeti daemons that are not running. If the cluster parameter @code{ensure_node_health} is set, the watcher will also shutdown instances and DRBD devices if the node it is running on is declared offline by known master candidates." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31500 +#: guix-git/doc/guix.texi:31865 msgid "It can be paused on all nodes with @command{gnt-cluster watcher pause}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31502 +#: guix-git/doc/guix.texi:31867 msgid "The service takes a @code{ganeti-watcher-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31504 +#: guix-git/doc/guix.texi:31869 #, no-wrap msgid "{Data Type} ganeti-watcher-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31510 +#: guix-git/doc/guix.texi:31875 #, no-wrap msgid "@code{schedule} (default: @code{'(next-second-from (next-minute (range 0 60 5)))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31512 +#: guix-git/doc/guix.texi:31877 msgid "How often to run the script. The default is every five minutes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31513 +#: guix-git/doc/guix.texi:31878 #, no-wrap msgid "@code{rapi-ip} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31516 +#: guix-git/doc/guix.texi:31881 msgid "This option needs to be specified only if the RAPI daemon is configured to use a particular interface or address. By default the cluster address is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31517 +#: guix-git/doc/guix.texi:31882 #, no-wrap msgid "@code{job-age} (default: @code{(* 6 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31520 +#: guix-git/doc/guix.texi:31885 msgid "Archive cluster jobs older than this age, specified in seconds. The default is 6 hours. This keeps @command{gnt-job list} manageable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31521 +#: guix-git/doc/guix.texi:31886 #, no-wrap msgid "@code{verify-disks?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31525 +#: guix-git/doc/guix.texi:31890 msgid "If this is @code{#f}, the watcher will not try to repair broken DRBD links automatically. Administrators will need to use @command{gnt-cluster verify-disks} manually instead." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31528 +#: guix-git/doc/guix.texi:31893 msgid "When @code{#t}, the script performs additional logging for debugging purposes." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31532 +#: guix-git/doc/guix.texi:31897 #, no-wrap msgid "{Scheme Variable} ganeti-cleaner-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31540 +#: guix-git/doc/guix.texi:31905 msgid "@command{ganeti-cleaner} is a script designed to run periodically and remove old files from the cluster. This service type controls two @dfn{cron jobs}: one intended for the master node that permanently purges old cluster jobs, and one intended for every node that removes expired X509 certificates, keys, and outdated @command{ganeti-watcher} information. Like all Ganeti services, it is safe to include even on non-master nodes as it will disable itself as necessary." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31542 +#: guix-git/doc/guix.texi:31907 msgid "It takes a @code{ganeti-cleaner-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31544 +#: guix-git/doc/guix.texi:31909 #, no-wrap msgid "{Data Type} ganeti-cleaner-configuration" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31549 +#: guix-git/doc/guix.texi:31914 msgid "The @code{ganeti} package to use for the @command{gnt-cleaner} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31550 +#: guix-git/doc/guix.texi:31915 #, no-wrap msgid "@code{master-schedule} (default: @code{\"45 1 * * *\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31553 +#: guix-git/doc/guix.texi:31918 msgid "How often to run the master cleaning job. The default is once per day, at 01:45:00." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31554 +#: guix-git/doc/guix.texi:31919 #, no-wrap msgid "@code{node-schedule} (default: @code{\"45 2 * * *\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31557 +#: guix-git/doc/guix.texi:31922 msgid "How often to run the node cleaning job. The default is once per day, at 02:45:00." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31571 +#: guix-git/doc/guix.texi:31936 msgid "The @code{(gnu services version-control)} module provides a service to allow remote access to local Git repositories. There are three options: the @code{git-daemon-service}, which provides access to repositories via the @code{git://} unsecured TCP-based protocol, extending the @code{nginx} web server to proxy some requests to @code{git-http-backend}, or providing a web interface with @code{cgit-service-type}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31572 +#: guix-git/doc/guix.texi:31937 #, no-wrap msgid "{Scheme Procedure} git-daemon-service [#:config (git-daemon-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31576 +#: guix-git/doc/guix.texi:31941 msgid "Return a service that runs @command{git daemon}, a simple TCP server to expose repositories over the Git protocol for anonymous access." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31582 +#: guix-git/doc/guix.texi:31947 msgid "The optional @var{config} argument should be a @code{} object, by default it allows read-only access to exported@footnote{By creating the magic file @file{git-daemon-export-ok} in the repository directory.} repositories under @file{/srv/git}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31585 +#: guix-git/doc/guix.texi:31950 #, no-wrap msgid "{Data Type} git-daemon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31587 +#: guix-git/doc/guix.texi:31952 msgid "Data type representing the configuration for @code{git-daemon-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31589 +#: guix-git/doc/guix.texi:31954 #, no-wrap msgid "@code{package} (default: @code{git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31591 guix-git/doc/guix.texi:31651 +#: guix-git/doc/guix.texi:31956 guix-git/doc/guix.texi:32016 msgid "Package object of the Git distributed version control system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31592 guix-git/doc/guix.texi:31655 +#: guix-git/doc/guix.texi:31957 guix-git/doc/guix.texi:32020 #, no-wrap msgid "@code{export-all?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31595 +#: guix-git/doc/guix.texi:31960 msgid "Whether to allow access for all Git repositories, even if they do not have the @file{git-daemon-export-ok} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31596 +#: guix-git/doc/guix.texi:31961 #, no-wrap msgid "@code{base-path} (default: @file{/srv/git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31602 +#: guix-git/doc/guix.texi:31967 msgid "Whether to remap all the path requests as relative to the given path. If you run @command{git daemon} with @code{(base-path \"/srv/git\")} on @samp{example.com}, then if you later try to pull @indicateurl{git://example.com/hello.git}, git daemon will interpret the path as @file{/srv/git/hello.git}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31603 +#: guix-git/doc/guix.texi:31968 #, no-wrap msgid "@code{user-path} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31611 +#: guix-git/doc/guix.texi:31976 msgid "Whether to allow @code{~user} notation to be used in requests. When specified with empty string, requests to @indicateurl{git://host/~alice/foo} is taken as a request to access @code{foo} repository in the home directory of user @code{alice}. If @code{(user-path \"@var{path}\")} is specified, the same request is taken as a request to access @file{@var{path}/foo} repository in the home directory of user @code{alice}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31612 +#: guix-git/doc/guix.texi:31977 #, no-wrap msgid "@code{listen} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31615 +#: guix-git/doc/guix.texi:31980 msgid "Whether to listen on specific IP addresses or hostnames, defaults to all." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31616 +#: guix-git/doc/guix.texi:31981 #, no-wrap msgid "@code{port} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31618 +#: guix-git/doc/guix.texi:31983 msgid "Whether to listen on an alternative port, which defaults to 9418." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31619 +#: guix-git/doc/guix.texi:31984 #, no-wrap msgid "@code{whitelist} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31621 +#: guix-git/doc/guix.texi:31986 msgid "If not empty, only allow access to this list of directories." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31625 +#: guix-git/doc/guix.texi:31990 msgid "Extra options will be passed to @command{git daemon}, please run @command{man git-daemon} for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31639 +#: guix-git/doc/guix.texi:32004 msgid "The @code{git://} protocol lacks authentication. When you pull from a repository fetched via @code{git://}, you don't know whether the data you receive was modified or is even coming from the specified host, and your connection is subject to eavesdropping. It's better to use an authenticated and encrypted transport, such as @code{https}. Although Git allows you to serve repositories using unsophisticated file-based web servers, there is a faster protocol implemented by the @code{git-http-backend} program. This program is the back-end of a proper Git web service. It is designed to sit behind a FastCGI proxy. @xref{Web Services}, for more on running the necessary @code{fcgiwrap} daemon." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31642 +#: guix-git/doc/guix.texi:32007 msgid "Guix has a separate configuration data type for serving Git repositories over HTTP." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31643 +#: guix-git/doc/guix.texi:32008 #, no-wrap msgid "{Data Type} git-http-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31647 +#: guix-git/doc/guix.texi:32012 msgid "Data type representing the configuration for a future @code{git-http-service-type}; can currently be used to configure Nginx through @code{git-http-nginx-location-configuration}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31649 +#: guix-git/doc/guix.texi:32014 #, no-wrap msgid "@code{package} (default: @var{git})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31652 +#: guix-git/doc/guix.texi:32017 #, no-wrap msgid "@code{git-root} (default: @file{/srv/git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31654 +#: guix-git/doc/guix.texi:32019 msgid "Directory containing the Git repositories to expose to the world." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31658 +#: guix-git/doc/guix.texi:32023 msgid "Whether to expose access for all Git repositories in @var{git-root}, even if they do not have the @file{git-daemon-export-ok} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31659 +#: guix-git/doc/guix.texi:32024 #, no-wrap msgid "@code{uri-path} (default: @samp{/git/})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31664 +#: guix-git/doc/guix.texi:32029 msgid "Path prefix for Git access. With the default @samp{/git/} prefix, this will map @indicateurl{http://@var{server}/git/@var{repo}.git} to @file{/srv/git/@var{repo}.git}. Requests whose URI paths do not begin with this prefix are not passed on to this Git instance." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31665 +#: guix-git/doc/guix.texi:32030 #, no-wrap msgid "@code{fcgiwrap-socket} (default: @code{127.0.0.1:9000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31668 +#: guix-git/doc/guix.texi:32033 msgid "The socket on which the @code{fcgiwrap} daemon is listening. @xref{Web Services}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31675 +#: guix-git/doc/guix.texi:32040 msgid "There is no @code{git-http-service-type}, currently; instead you can create an @code{nginx-location-configuration} from a @code{git-http-configuration} and then add that location to a web server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31676 +#: guix-git/doc/guix.texi:32041 #, no-wrap msgid "{Scheme Procedure} git-http-nginx-location-configuration @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31681 +#: guix-git/doc/guix.texi:32046 msgid "[config=(git-http-configuration)] Compute an @code{nginx-location-configuration} that corresponds to the given Git http configuration. An example nginx service definition to serve the default @file{/srv/git} over HTTPS might be:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31698 +#: guix-git/doc/guix.texi:32063 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -56706,1409 +57348,1414 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31705 +#: guix-git/doc/guix.texi:32070 msgid "This example assumes that you are using Let's Encrypt to get your TLS certificate. @xref{Certificate Services}. The default @code{certbot} service will redirect all HTTP traffic on @code{git.my-host.org} to HTTPS@. You will also need to add an @code{fcgiwrap} proxy to your system services. @xref{Web Services}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:31707 +#: guix-git/doc/guix.texi:32072 #, no-wrap msgid "Cgit Service" -msgstr "" +msgstr "Služba Cgit" #. type: cindex -#: guix-git/doc/guix.texi:31709 +#: guix-git/doc/guix.texi:32074 #, no-wrap msgid "Cgit service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:31710 +#: guix-git/doc/guix.texi:32075 #, no-wrap msgid "Git, web interface" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31713 +#: guix-git/doc/guix.texi:32078 msgid "@uref{https://git.zx2c4.com/cgit/, Cgit} is a web frontend for Git repositories written in C." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31716 +#: guix-git/doc/guix.texi:32081 msgid "The following example will configure the service with default values. By default, Cgit can be accessed on port 80 (@code{http://localhost:80})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31719 +#: guix-git/doc/guix.texi:32084 #, no-wrap msgid "(service cgit-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31723 +#: guix-git/doc/guix.texi:32088 msgid "The @code{file-object} type designates either a file-like object (@pxref{G-Expressions, file-like objects}) or a string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31727 +#: guix-git/doc/guix.texi:32092 msgid "Available @code{cgit-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31728 +#: guix-git/doc/guix.texi:32093 #, no-wrap msgid "{@code{cgit-configuration} parameter} package package" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31730 +#: guix-git/doc/guix.texi:32095 msgid "The CGIT package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31733 +#: guix-git/doc/guix.texi:32098 #, no-wrap msgid "{@code{cgit-configuration} parameter} nginx-server-configuration-list nginx" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31738 +#: guix-git/doc/guix.texi:32100 +msgid "NGINX configuration." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:32103 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object about-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31741 +#: guix-git/doc/guix.texi:32106 msgid "Specifies a command which will be invoked to format the content of about pages (both top-level and for each repository)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31746 +#: guix-git/doc/guix.texi:32111 #, no-wrap msgid "{@code{cgit-configuration} parameter} string agefile" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31749 +#: guix-git/doc/guix.texi:32114 msgid "Specifies a path, relative to each repository path, which can be used to specify the date and time of the youngest commit in the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31754 +#: guix-git/doc/guix.texi:32119 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object auth-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31757 +#: guix-git/doc/guix.texi:32122 msgid "Specifies a command that will be invoked for authenticating repository access." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31762 +#: guix-git/doc/guix.texi:32127 #, no-wrap msgid "{@code{cgit-configuration} parameter} string branch-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31765 +#: guix-git/doc/guix.texi:32130 msgid "Flag which, when set to @samp{age}, enables date ordering in the branch ref list, and when set @samp{name} enables ordering by branch name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31767 +#: guix-git/doc/guix.texi:32132 msgid "Defaults to @samp{\"name\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31770 +#: guix-git/doc/guix.texi:32135 #, no-wrap msgid "{@code{cgit-configuration} parameter} string cache-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31772 +#: guix-git/doc/guix.texi:32137 msgid "Path used to store the cgit cache entries." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31774 +#: guix-git/doc/guix.texi:32139 msgid "Defaults to @samp{\"/var/cache/cgit\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31777 +#: guix-git/doc/guix.texi:32142 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-static-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31780 +#: guix-git/doc/guix.texi:32145 msgid "Number which specifies the time-to-live, in minutes, for the cached version of repository pages accessed with a fixed SHA1." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31782 guix-git/doc/guix.texi:32225 +#: guix-git/doc/guix.texi:32147 guix-git/doc/guix.texi:32590 msgid "Defaults to @samp{-1}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31785 +#: guix-git/doc/guix.texi:32150 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-dynamic-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31788 +#: guix-git/doc/guix.texi:32153 msgid "Number which specifies the time-to-live, in minutes, for the cached version of repository pages accessed without a fixed SHA1." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31793 +#: guix-git/doc/guix.texi:32158 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-repo-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31796 +#: guix-git/doc/guix.texi:32161 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository summary page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31801 +#: guix-git/doc/guix.texi:32166 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-root-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31804 +#: guix-git/doc/guix.texi:32169 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31809 +#: guix-git/doc/guix.texi:32174 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-scanrc-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31812 +#: guix-git/doc/guix.texi:32177 msgid "Number which specifies the time-to-live, in minutes, for the result of scanning a path for Git repositories." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31817 +#: guix-git/doc/guix.texi:32182 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-about-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31820 +#: guix-git/doc/guix.texi:32185 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository about page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31825 +#: guix-git/doc/guix.texi:32190 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-snapshot-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31828 +#: guix-git/doc/guix.texi:32193 msgid "Number which specifies the time-to-live, in minutes, for the cached version of snapshots." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31833 +#: guix-git/doc/guix.texi:32198 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31836 +#: guix-git/doc/guix.texi:32201 msgid "The maximum number of entries in the cgit cache. When set to @samp{0}, caching is disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31841 +#: guix-git/doc/guix.texi:32206 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean case-sensitive-sort?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31843 +#: guix-git/doc/guix.texi:32208 msgid "Sort items in the repo list case sensitively." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31848 +#: guix-git/doc/guix.texi:32213 #, no-wrap msgid "{@code{cgit-configuration} parameter} list clone-prefix" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31851 +#: guix-git/doc/guix.texi:32216 msgid "List of common prefixes which, when combined with a repository URL, generates valid clone URLs for the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31856 +#: guix-git/doc/guix.texi:32221 #, no-wrap msgid "{@code{cgit-configuration} parameter} list clone-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31858 +#: guix-git/doc/guix.texi:32223 msgid "List of @code{clone-url} templates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31863 +#: guix-git/doc/guix.texi:32228 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object commit-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31865 +#: guix-git/doc/guix.texi:32230 msgid "Command which will be invoked to format commit messages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31870 +#: guix-git/doc/guix.texi:32235 #, no-wrap msgid "{@code{cgit-configuration} parameter} string commit-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31874 guix-git/doc/guix.texi:32432 +#: guix-git/doc/guix.texi:32239 guix-git/doc/guix.texi:32797 msgid "Flag which, when set to @samp{date}, enables strict date ordering in the commit log, and when set to @samp{topo} enables strict topological ordering." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31876 +#: guix-git/doc/guix.texi:32241 msgid "Defaults to @samp{\"git log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31879 +#: guix-git/doc/guix.texi:32244 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object css" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31881 +#: guix-git/doc/guix.texi:32246 msgid "URL which specifies the css document to include in all cgit pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31883 +#: guix-git/doc/guix.texi:32248 msgid "Defaults to @samp{\"/share/cgit/cgit.css\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31886 +#: guix-git/doc/guix.texi:32251 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object email-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31890 +#: guix-git/doc/guix.texi:32255 msgid "Specifies a command which will be invoked to format names and email address of committers, authors, and taggers, as represented in various places throughout the cgit interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31895 +#: guix-git/doc/guix.texi:32260 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean embedded?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31898 +#: guix-git/doc/guix.texi:32263 msgid "Flag which, when set to @samp{#t}, will make cgit generate a HTML fragment suitable for embedding in other HTML pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31903 +#: guix-git/doc/guix.texi:32268 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-commit-graph?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31907 +#: guix-git/doc/guix.texi:32272 msgid "Flag which, when set to @samp{#t}, will make cgit print an ASCII-art commit history graph to the left of the commit messages in the repository log page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31912 +#: guix-git/doc/guix.texi:32277 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-filter-overrides?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31915 +#: guix-git/doc/guix.texi:32280 msgid "Flag which, when set to @samp{#t}, allows all filter settings to be overridden in repository-specific cgitrc files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31920 +#: guix-git/doc/guix.texi:32285 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-follow-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31923 +#: guix-git/doc/guix.texi:32288 msgid "Flag which, when set to @samp{#t}, allows users to follow a file in the log view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31928 +#: guix-git/doc/guix.texi:32293 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-http-clone?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31931 +#: guix-git/doc/guix.texi:32296 msgid "If set to @samp{#t}, cgit will act as an dumb HTTP endpoint for Git clones." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31936 +#: guix-git/doc/guix.texi:32301 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-index-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31939 +#: guix-git/doc/guix.texi:32304 msgid "Flag which, when set to @samp{#t}, will make cgit generate extra links \"summary\", \"commit\", \"tree\" for each repo in the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31944 +#: guix-git/doc/guix.texi:32309 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-index-owner?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31947 +#: guix-git/doc/guix.texi:32312 msgid "Flag which, when set to @samp{#t}, will make cgit display the owner of each repo in the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31952 +#: guix-git/doc/guix.texi:32317 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-log-filecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31955 +#: guix-git/doc/guix.texi:32320 msgid "Flag which, when set to @samp{#t}, will make cgit print the number of modified files for each commit on the repository log page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31960 +#: guix-git/doc/guix.texi:32325 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-log-linecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31963 +#: guix-git/doc/guix.texi:32328 msgid "Flag which, when set to @samp{#t}, will make cgit print the number of added and removed lines for each commit on the repository log page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31968 +#: guix-git/doc/guix.texi:32333 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-remote-branches?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31971 guix-git/doc/guix.texi:32495 +#: guix-git/doc/guix.texi:32336 guix-git/doc/guix.texi:32860 msgid "Flag which, when set to @code{#t}, will make cgit display remote branches in the summary and refs views." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31976 +#: guix-git/doc/guix.texi:32341 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-subject-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31980 +#: guix-git/doc/guix.texi:32345 msgid "Flag which, when set to @code{1}, will make cgit use the subject of the parent commit as link text when generating links to parent commits in commit view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31985 +#: guix-git/doc/guix.texi:32350 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-html-serving?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31989 +#: guix-git/doc/guix.texi:32354 msgid "Flag which, when set to @samp{#t}, will make cgit use the subject of the parent commit as link text when generating links to parent commits in commit view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31994 +#: guix-git/doc/guix.texi:32359 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-tree-linenumbers?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31997 +#: guix-git/doc/guix.texi:32362 msgid "Flag which, when set to @samp{#t}, will make cgit generate linenumber links for plaintext blobs printed in the tree view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32002 +#: guix-git/doc/guix.texi:32367 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-git-config?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32005 +#: guix-git/doc/guix.texi:32370 msgid "Flag which, when set to @samp{#f}, will allow cgit to use Git config to set any repo specific settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32010 +#: guix-git/doc/guix.texi:32375 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object favicon" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32012 +#: guix-git/doc/guix.texi:32377 msgid "URL used as link to a shortcut icon for cgit." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32014 +#: guix-git/doc/guix.texi:32379 msgid "Defaults to @samp{\"/favicon.ico\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32017 +#: guix-git/doc/guix.texi:32382 #, no-wrap msgid "{@code{cgit-configuration} parameter} string footer" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32021 +#: guix-git/doc/guix.texi:32386 msgid "The content of the file specified with this option will be included verbatim at the bottom of all pages (i.e.@: it replaces the standard \"generated by...\"@: message)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32026 +#: guix-git/doc/guix.texi:32391 #, no-wrap msgid "{@code{cgit-configuration} parameter} string head-include" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32029 +#: guix-git/doc/guix.texi:32394 msgid "The content of the file specified with this option will be included verbatim in the HTML HEAD section on all pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32034 +#: guix-git/doc/guix.texi:32399 #, no-wrap msgid "{@code{cgit-configuration} parameter} string header" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32037 +#: guix-git/doc/guix.texi:32402 msgid "The content of the file specified with this option will be included verbatim at the top of all pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32042 +#: guix-git/doc/guix.texi:32407 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object include" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32045 +#: guix-git/doc/guix.texi:32410 msgid "Name of a configfile to include before the rest of the current config- file is parsed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32050 +#: guix-git/doc/guix.texi:32415 #, no-wrap msgid "{@code{cgit-configuration} parameter} string index-header" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32053 +#: guix-git/doc/guix.texi:32418 msgid "The content of the file specified with this option will be included verbatim above the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32058 +#: guix-git/doc/guix.texi:32423 #, no-wrap msgid "{@code{cgit-configuration} parameter} string index-info" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32061 +#: guix-git/doc/guix.texi:32426 msgid "The content of the file specified with this option will be included verbatim below the heading on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32066 +#: guix-git/doc/guix.texi:32431 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean local-time?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32069 +#: guix-git/doc/guix.texi:32434 msgid "Flag which, if set to @samp{#t}, makes cgit print commit and tag times in the servers timezone." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32074 +#: guix-git/doc/guix.texi:32439 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object logo" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32077 +#: guix-git/doc/guix.texi:32442 msgid "URL which specifies the source of an image which will be used as a logo on all cgit pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32079 +#: guix-git/doc/guix.texi:32444 msgid "Defaults to @samp{\"/share/cgit/cgit.png\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32082 +#: guix-git/doc/guix.texi:32447 #, no-wrap msgid "{@code{cgit-configuration} parameter} string logo-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32084 guix-git/doc/guix.texi:32541 +#: guix-git/doc/guix.texi:32449 guix-git/doc/guix.texi:32906 msgid "URL loaded when clicking on the cgit logo image." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32089 +#: guix-git/doc/guix.texi:32454 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object owner-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32092 +#: guix-git/doc/guix.texi:32457 msgid "Command which will be invoked to format the Owner column of the main page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32097 +#: guix-git/doc/guix.texi:32462 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-atom-items" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32099 +#: guix-git/doc/guix.texi:32464 msgid "Number of items to display in atom feeds view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32104 +#: guix-git/doc/guix.texi:32469 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-commit-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32106 +#: guix-git/doc/guix.texi:32471 msgid "Number of entries to list per page in \"log\" view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32111 +#: guix-git/doc/guix.texi:32476 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-message-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32113 +#: guix-git/doc/guix.texi:32478 msgid "Number of commit message characters to display in \"log\" view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32115 guix-git/doc/guix.texi:32131 +#: guix-git/doc/guix.texi:32480 guix-git/doc/guix.texi:32496 msgid "Defaults to @samp{80}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32118 +#: guix-git/doc/guix.texi:32483 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-repo-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32121 +#: guix-git/doc/guix.texi:32486 msgid "Specifies the number of entries to list per page on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32126 +#: guix-git/doc/guix.texi:32491 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-repodesc-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32129 +#: guix-git/doc/guix.texi:32494 msgid "Specifies the maximum number of repo description characters to display on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32134 +#: guix-git/doc/guix.texi:32499 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-blob-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32136 +#: guix-git/doc/guix.texi:32501 msgid "Specifies the maximum size of a blob to display HTML for in KBytes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32141 +#: guix-git/doc/guix.texi:32506 #, no-wrap msgid "{@code{cgit-configuration} parameter} string max-stats" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32144 +#: guix-git/doc/guix.texi:32509 msgid "Maximum statistics period. Valid values are @samp{week},@samp{month}, @samp{quarter} and @samp{year}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32149 +#: guix-git/doc/guix.texi:32514 #, no-wrap msgid "{@code{cgit-configuration} parameter} mimetype-alist mimetype" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32151 +#: guix-git/doc/guix.texi:32516 msgid "Mimetype for the specified filename extension." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32155 +#: guix-git/doc/guix.texi:32520 msgid "Defaults to @samp{((gif \"image/gif\") (html \"text/html\") (jpg \"image/jpeg\") (jpeg \"image/jpeg\") (pdf \"application/pdf\") (png \"image/png\") (svg \"image/svg+xml\"))}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32158 +#: guix-git/doc/guix.texi:32523 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object mimetype-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32160 +#: guix-git/doc/guix.texi:32525 msgid "Specifies the file to use for automatic mimetype lookup." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32165 +#: guix-git/doc/guix.texi:32530 #, no-wrap msgid "{@code{cgit-configuration} parameter} string module-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32168 +#: guix-git/doc/guix.texi:32533 msgid "Text which will be used as the formatstring for a hyperlink when a submodule is printed in a directory listing." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32173 +#: guix-git/doc/guix.texi:32538 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean nocache?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32175 +#: guix-git/doc/guix.texi:32540 msgid "If set to the value @samp{#t} caching will be disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32180 +#: guix-git/doc/guix.texi:32545 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean noplainemail?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32183 +#: guix-git/doc/guix.texi:32548 msgid "If set to @samp{#t} showing full author email addresses will be disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32188 +#: guix-git/doc/guix.texi:32553 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean noheader?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32191 +#: guix-git/doc/guix.texi:32556 msgid "Flag which, when set to @samp{#t}, will make cgit omit the standard header on all pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32196 +#: guix-git/doc/guix.texi:32561 #, no-wrap msgid "{@code{cgit-configuration} parameter} project-list project-list" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32200 +#: guix-git/doc/guix.texi:32565 msgid "A list of subdirectories inside of @code{repository-directory}, relative to it, that should loaded as Git repositories. An empty list means that all subdirectories will be loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32205 +#: guix-git/doc/guix.texi:32570 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object readme" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32207 +#: guix-git/doc/guix.texi:32572 msgid "Text which will be used as default value for @code{cgit-repo-readme}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32212 +#: guix-git/doc/guix.texi:32577 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean remove-suffix?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32216 +#: guix-git/doc/guix.texi:32581 msgid "If set to @code{#t} and @code{repository-directory} is enabled, if any repositories are found with a suffix of @code{.git}, this suffix will be removed for the URL and name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32221 +#: guix-git/doc/guix.texi:32586 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer renamelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32223 +#: guix-git/doc/guix.texi:32588 msgid "Maximum number of files to consider when detecting renames." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32228 +#: guix-git/doc/guix.texi:32593 #, no-wrap msgid "{@code{cgit-configuration} parameter} string repository-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32230 +#: guix-git/doc/guix.texi:32595 msgid "The way in which repositories in each section are sorted." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32235 +#: guix-git/doc/guix.texi:32600 #, no-wrap msgid "{@code{cgit-configuration} parameter} robots-list robots" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32237 +#: guix-git/doc/guix.texi:32602 msgid "Text used as content for the @code{robots} meta-tag." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32239 +#: guix-git/doc/guix.texi:32604 msgid "Defaults to @samp{(\"noindex\" \"nofollow\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32242 +#: guix-git/doc/guix.texi:32607 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-desc" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32244 +#: guix-git/doc/guix.texi:32609 msgid "Text printed below the heading on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32246 +#: guix-git/doc/guix.texi:32611 msgid "Defaults to @samp{\"a fast webinterface for the git dscm\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32249 +#: guix-git/doc/guix.texi:32614 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-readme" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32252 +#: guix-git/doc/guix.texi:32617 msgid "The content of the file specified with this option will be included verbatim below the ``about'' link on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32257 +#: guix-git/doc/guix.texi:32622 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-title" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32259 +#: guix-git/doc/guix.texi:32624 msgid "Text printed as heading on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32264 +#: guix-git/doc/guix.texi:32629 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean scan-hidden-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32270 +#: guix-git/doc/guix.texi:32635 msgid "If set to @samp{#t} and repository-directory is enabled, repository-directory will recurse into directories whose name starts with a period. Otherwise, repository-directory will stay away from such directories, considered as ``hidden''. Note that this does not apply to the @file{.git} directory in non-bare repos." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32275 +#: guix-git/doc/guix.texi:32640 #, no-wrap msgid "{@code{cgit-configuration} parameter} list snapshots" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32278 +#: guix-git/doc/guix.texi:32643 msgid "Text which specifies the default set of snapshot formats that cgit generates links for." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32283 +#: guix-git/doc/guix.texi:32648 #, no-wrap msgid "{@code{cgit-configuration} parameter} repository-directory repository-directory" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32286 +#: guix-git/doc/guix.texi:32651 msgid "Name of the directory to scan for repositories (represents @code{scan-path})." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32288 +#: guix-git/doc/guix.texi:32653 msgid "Defaults to @samp{\"/srv/git\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32291 +#: guix-git/doc/guix.texi:32656 #, no-wrap msgid "{@code{cgit-configuration} parameter} string section" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32294 guix-git/doc/guix.texi:32610 +#: guix-git/doc/guix.texi:32659 guix-git/doc/guix.texi:32975 msgid "The name of the current repository section - all repositories defined after this option will inherit the current section name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32299 +#: guix-git/doc/guix.texi:32664 #, no-wrap msgid "{@code{cgit-configuration} parameter} string section-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32302 +#: guix-git/doc/guix.texi:32667 msgid "Flag which, when set to @samp{1}, will sort the sections on the repository listing by name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32307 +#: guix-git/doc/guix.texi:32672 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer section-from-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32310 +#: guix-git/doc/guix.texi:32675 msgid "A number which, if defined prior to repository-directory, specifies how many path elements from each repo path to use as a default section name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32315 +#: guix-git/doc/guix.texi:32680 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean side-by-side-diffs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32318 +#: guix-git/doc/guix.texi:32683 msgid "If set to @samp{#t} shows side-by-side diffs instead of unidiffs per default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32323 +#: guix-git/doc/guix.texi:32688 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object source-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32326 +#: guix-git/doc/guix.texi:32691 msgid "Specifies a command which will be invoked to format plaintext blobs in the tree view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32331 +#: guix-git/doc/guix.texi:32696 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-branches" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32334 +#: guix-git/doc/guix.texi:32699 msgid "Specifies the number of branches to display in the repository ``summary'' view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32339 +#: guix-git/doc/guix.texi:32704 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32342 +#: guix-git/doc/guix.texi:32707 msgid "Specifies the number of log entries to display in the repository ``summary'' view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32347 +#: guix-git/doc/guix.texi:32712 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-tags" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32350 +#: guix-git/doc/guix.texi:32715 msgid "Specifies the number of tags to display in the repository ``summary'' view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32355 +#: guix-git/doc/guix.texi:32720 #, no-wrap msgid "{@code{cgit-configuration} parameter} string strict-export" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32358 +#: guix-git/doc/guix.texi:32723 msgid "Filename which, if specified, needs to be present within the repository for cgit to allow access to that repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32363 +#: guix-git/doc/guix.texi:32728 #, no-wrap msgid "{@code{cgit-configuration} parameter} string virtual-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32365 +#: guix-git/doc/guix.texi:32730 msgid "URL which, if specified, will be used as root for all cgit links." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32367 +#: guix-git/doc/guix.texi:32732 msgid "Defaults to @samp{\"/\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32370 +#: guix-git/doc/guix.texi:32735 #, no-wrap msgid "{@code{cgit-configuration} parameter} repository-cgit-configuration-list repositories" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32372 +#: guix-git/doc/guix.texi:32737 msgid "A list of @dfn{cgit-repo} records to use with config." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32376 +#: guix-git/doc/guix.texi:32741 msgid "Available @code{repository-cgit-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32377 +#: guix-git/doc/guix.texi:32742 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list snapshots" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32380 +#: guix-git/doc/guix.texi:32745 msgid "A mask of snapshot formats for this repo that cgit generates links for, restricted by the global @code{snapshots} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32385 +#: guix-git/doc/guix.texi:32750 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object source-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32387 +#: guix-git/doc/guix.texi:32752 msgid "Override the default @code{source-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32392 +#: guix-git/doc/guix.texi:32757 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32394 +#: guix-git/doc/guix.texi:32759 msgid "The relative URL used to access the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32399 +#: guix-git/doc/guix.texi:32764 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object about-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32401 +#: guix-git/doc/guix.texi:32766 msgid "Override the default @code{about-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32406 +#: guix-git/doc/guix.texi:32771 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string branch-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32409 +#: guix-git/doc/guix.texi:32774 msgid "Flag which, when set to @samp{age}, enables date ordering in the branch ref list, and when set to @samp{name} enables ordering by branch name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32414 +#: guix-git/doc/guix.texi:32779 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list clone-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32416 +#: guix-git/doc/guix.texi:32781 msgid "A list of URLs which can be used to clone repo." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32421 +#: guix-git/doc/guix.texi:32786 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object commit-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32423 +#: guix-git/doc/guix.texi:32788 msgid "Override the default @code{commit-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32428 +#: guix-git/doc/guix.texi:32793 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string commit-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32437 +#: guix-git/doc/guix.texi:32802 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string defbranch" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32442 +#: guix-git/doc/guix.texi:32807 msgid "The name of the default branch for this repository. If no such branch exists in the repository, the first branch name (when sorted) is used as default instead. By default branch pointed to by HEAD, or ``master'' if there is no suitable HEAD." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32447 +#: guix-git/doc/guix.texi:32812 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string desc" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32449 +#: guix-git/doc/guix.texi:32814 msgid "The value to show as repository description." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32454 +#: guix-git/doc/guix.texi:32819 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string homepage" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32456 +#: guix-git/doc/guix.texi:32821 msgid "The value to show as repository homepage." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32461 +#: guix-git/doc/guix.texi:32826 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object email-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32463 +#: guix-git/doc/guix.texi:32828 msgid "Override the default @code{email-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32468 +#: guix-git/doc/guix.texi:32833 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-commit-graph?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32471 +#: guix-git/doc/guix.texi:32836 msgid "A flag which can be used to disable the global setting @code{enable-commit-graph?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32476 +#: guix-git/doc/guix.texi:32841 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-log-filecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32479 +#: guix-git/doc/guix.texi:32844 msgid "A flag which can be used to disable the global setting @code{enable-log-filecount?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32484 +#: guix-git/doc/guix.texi:32849 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-log-linecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32487 +#: guix-git/doc/guix.texi:32852 msgid "A flag which can be used to disable the global setting @code{enable-log-linecount?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32492 +#: guix-git/doc/guix.texi:32857 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-remote-branches?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32500 +#: guix-git/doc/guix.texi:32865 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-subject-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32503 +#: guix-git/doc/guix.texi:32868 msgid "A flag which can be used to override the global setting @code{enable-subject-links?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32508 +#: guix-git/doc/guix.texi:32873 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-html-serving?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32511 +#: guix-git/doc/guix.texi:32876 msgid "A flag which can be used to override the global setting @code{enable-html-serving?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32516 +#: guix-git/doc/guix.texi:32881 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-boolean hide?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32519 +#: guix-git/doc/guix.texi:32884 msgid "Flag which, when set to @code{#t}, hides the repository from the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32524 +#: guix-git/doc/guix.texi:32889 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-boolean ignore?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32526 +#: guix-git/doc/guix.texi:32891 msgid "Flag which, when set to @samp{#t}, ignores the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32531 +#: guix-git/doc/guix.texi:32896 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object logo" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32534 +#: guix-git/doc/guix.texi:32899 msgid "URL which specifies the source of an image which will be used as a logo on this repo’s pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32539 +#: guix-git/doc/guix.texi:32904 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string logo-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32546 +#: guix-git/doc/guix.texi:32911 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object owner-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32548 +#: guix-git/doc/guix.texi:32913 msgid "Override the default @code{owner-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32553 +#: guix-git/doc/guix.texi:32918 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string module-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32557 +#: guix-git/doc/guix.texi:32922 msgid "Text which will be used as the formatstring for a hyperlink when a submodule is printed in a directory listing. The arguments for the formatstring are the path and SHA1 of the submodule commit." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32562 +#: guix-git/doc/guix.texi:32927 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} module-link-path module-link-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32566 +#: guix-git/doc/guix.texi:32931 msgid "Text which will be used as the formatstring for a hyperlink when a submodule with the specified subdirectory path is printed in a directory listing." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32571 +#: guix-git/doc/guix.texi:32936 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string max-stats" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32573 +#: guix-git/doc/guix.texi:32938 msgid "Override the default maximum statistics period." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32578 +#: guix-git/doc/guix.texi:32943 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32580 +#: guix-git/doc/guix.texi:32945 msgid "The value to show as repository name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32585 +#: guix-git/doc/guix.texi:32950 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string owner" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32587 +#: guix-git/doc/guix.texi:32952 msgid "A value used to identify the owner of the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32592 +#: guix-git/doc/guix.texi:32957 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32594 +#: guix-git/doc/guix.texi:32959 msgid "An absolute path to the repository directory." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32599 +#: guix-git/doc/guix.texi:32964 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string readme" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32602 +#: guix-git/doc/guix.texi:32967 msgid "A path (relative to repo) which specifies a file to include verbatim as the ``About'' page for this repo." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32607 +#: guix-git/doc/guix.texi:32972 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string section" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32615 +#: guix-git/doc/guix.texi:32980 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32617 guix-git/doc/guix.texi:32626 +#: guix-git/doc/guix.texi:32982 guix-git/doc/guix.texi:32991 msgid "Extra options will be appended to cgitrc file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32624 +#: guix-git/doc/guix.texi:32989 #, no-wrap msgid "{@code{cgit-configuration} parameter} list extra-options" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32638 +#: guix-git/doc/guix.texi:33003 msgid "However, it could be that you just want to get a @code{cgitrc} up and running. In that case, you can pass an @code{opaque-cgit-configuration} as a record to @code{cgit-service-type}. As its name indicates, an opaque configuration does not have easy reflective capabilities." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32640 +#: guix-git/doc/guix.texi:33005 msgid "Available @code{opaque-cgit-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32641 +#: guix-git/doc/guix.texi:33006 #, no-wrap msgid "{@code{opaque-cgit-configuration} parameter} package cgit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32643 +#: guix-git/doc/guix.texi:33008 msgid "The cgit package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32645 +#: guix-git/doc/guix.texi:33010 #, no-wrap msgid "{@code{opaque-cgit-configuration} parameter} string string" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32647 +#: guix-git/doc/guix.texi:33012 msgid "The contents of the @code{cgitrc}, as a string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32651 +#: guix-git/doc/guix.texi:33016 msgid "For example, if your @code{cgitrc} is just the empty string, you could instantiate a cgit service like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32656 +#: guix-git/doc/guix.texi:33021 #, no-wrap msgid "" "(service cgit-service-type\n" @@ -58117,40 +58764,40 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:32658 +#: guix-git/doc/guix.texi:33023 #, no-wrap msgid "Gitolite Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32660 +#: guix-git/doc/guix.texi:33025 #, no-wrap msgid "Gitolite service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32661 +#: guix-git/doc/guix.texi:33026 #, no-wrap msgid "Git, hosting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32664 +#: guix-git/doc/guix.texi:33029 msgid "@uref{https://gitolite.com/gitolite/, Gitolite} is a tool for hosting Git repositories on a central server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32667 +#: guix-git/doc/guix.texi:33032 msgid "Gitolite can handle multiple repositories and users, and supports flexible configuration of the permissions for the users on the repositories." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32670 +#: guix-git/doc/guix.texi:33035 msgid "The following example will configure Gitolite using the default @code{git} user, and the provided SSH public key." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32677 +#: guix-git/doc/guix.texi:33042 #, no-wrap msgid "" "(service gitolite-service-type\n" @@ -58161,221 +58808,220 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32682 +#: guix-git/doc/guix.texi:33047 msgid "Gitolite is configured through a special admin repository which you can clone, for example, if you setup Gitolite on @code{example.com}, you would run the following command to clone the admin repository." msgstr "" #. type: example -#: guix-git/doc/guix.texi:32685 +#: guix-git/doc/guix.texi:33050 #, no-wrap msgid "git clone git@@example.com:gitolite-admin\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32691 +#: guix-git/doc/guix.texi:33056 msgid "When the Gitolite service is activated, the provided @code{admin-pubkey} will be inserted in to the @file{keydir} directory in the gitolite-admin repository. If this results in a change in the repository, it will be committed using the message ``gitolite setup by GNU Guix''." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32692 +#: guix-git/doc/guix.texi:33057 #, no-wrap msgid "{Data Type} gitolite-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32694 +#: guix-git/doc/guix.texi:33059 msgid "Data type representing the configuration for @code{gitolite-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32696 +#: guix-git/doc/guix.texi:33061 #, no-wrap msgid "@code{package} (default: @var{gitolite})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32698 +#: guix-git/doc/guix.texi:33063 msgid "Gitolite package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32699 +#: guix-git/doc/guix.texi:33064 #, no-wrap msgid "@code{user} (default: @var{git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32702 +#: guix-git/doc/guix.texi:33067 msgid "User to use for Gitolite. This will be user that you use when accessing Gitolite over SSH." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32703 +#: guix-git/doc/guix.texi:33068 #, no-wrap msgid "@code{group} (default: @var{git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32705 +#: guix-git/doc/guix.texi:33070 msgid "Group to use for Gitolite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32706 +#: guix-git/doc/guix.texi:33071 #, no-wrap msgid "@code{home-directory} (default: @var{\"/var/lib/gitolite\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32708 +#: guix-git/doc/guix.texi:33073 msgid "Directory in which to store the Gitolite configuration and repositories." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32709 +#: guix-git/doc/guix.texi:33074 #, no-wrap msgid "@code{rc-file} (default: @var{(gitolite-rc-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32712 +#: guix-git/doc/guix.texi:33077 msgid "A ``file-like'' object (@pxref{G-Expressions, file-like objects}), representing the configuration for Gitolite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32713 +#: guix-git/doc/guix.texi:33078 #, no-wrap msgid "@code{admin-pubkey} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32717 +#: guix-git/doc/guix.texi:33082 msgid "A ``file-like'' object (@pxref{G-Expressions, file-like objects}) used to setup Gitolite. This will be inserted in to the @file{keydir} directory within the gitolite-admin repository." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32719 +#: guix-git/doc/guix.texi:33084 msgid "To specify the SSH key as a string, use the @code{plain-file} function." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32722 +#: guix-git/doc/guix.texi:33087 #, no-wrap msgid "(plain-file \"yourname.pub\" \"ssh-rsa AAAA... guix@@example.com\")\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32727 +#: guix-git/doc/guix.texi:33092 #, no-wrap msgid "{Data Type} gitolite-rc-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32729 +#: guix-git/doc/guix.texi:33094 msgid "Data type representing the Gitolite RC file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32731 +#: guix-git/doc/guix.texi:33096 #, no-wrap msgid "@code{umask} (default: @code{#o0077})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32734 +#: guix-git/doc/guix.texi:33099 msgid "This controls the permissions Gitolite sets on the repositories and their contents." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32738 +#: guix-git/doc/guix.texi:33103 msgid "A value like @code{#o0027} will give read access to the group used by Gitolite (by default: @code{git}). This is necessary when using Gitolite with software like cgit or gitweb." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32739 +#: guix-git/doc/guix.texi:33104 #, no-wrap msgid "@code{unsafe-pattern} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32744 +#: guix-git/doc/guix.texi:33109 msgid "An optional Perl regular expression for catching unsafe configurations in the configuration file. See @uref{https://gitolite.com/gitolite/git-config.html#compensating-for-unsafe_patt, Gitolite's documentation} for more information." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32751 +#: guix-git/doc/guix.texi:33116 msgid "When the value is not @code{#f}, it should be a string containing a Perl regular expression, such as @samp{\"[`~#\\$\\&()|;<>]\"}, which is the default value used by gitolite. It rejects any special character in configuration that might be interpreted by a shell, which is useful when sharing the administration burden with other people that do not otherwise have shell access on the server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32752 +#: guix-git/doc/guix.texi:33117 #, no-wrap msgid "@code{git-config-keys} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32755 +#: guix-git/doc/guix.texi:33120 msgid "Gitolite allows you to set git config values using the @samp{config} keyword. This setting allows control over the config keys to accept." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32756 +#: guix-git/doc/guix.texi:33121 #, no-wrap msgid "@code{roles} (default: @code{'((\"READERS\" . 1) (\"WRITERS\" . ))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32758 +#: guix-git/doc/guix.texi:33123 msgid "Set the role names allowed to be used by users running the perms command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32759 +#: guix-git/doc/guix.texi:33124 #, no-wrap msgid "@code{enable} (default: @code{'(\"help\" \"desc\" \"info\" \"perms\" \"writable\" \"ssh-authkeys\" \"git-config\" \"daemon\" \"gitweb\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32761 +#: guix-git/doc/guix.texi:33126 msgid "This setting controls the commands and features to enable within Gitolite." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:32766 -#, fuzzy, no-wrap -#| msgid "Services" +#: guix-git/doc/guix.texi:33131 +#, no-wrap msgid "Gitile Service" -msgstr "Služby" +msgstr "Služba Gitile" #. type: cindex -#: guix-git/doc/guix.texi:32768 +#: guix-git/doc/guix.texi:33133 #, no-wrap msgid "Gitile service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32769 +#: guix-git/doc/guix.texi:33134 #, no-wrap msgid "Git, forge" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32772 +#: guix-git/doc/guix.texi:33137 msgid "@uref{https://git.lepiller.eu/gitile, Gitile} is a Git forge for viewing public git repository contents from a web browser." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32778 +#: guix-git/doc/guix.texi:33143 msgid "Gitile works best in collaboration with Gitolite, and will serve the public repositories from Gitolite by default. The service should listen only on a local port, and a webserver should be configured to serve static resources. The gitile service provides an easy way to extend the Nginx service for that purpose (@pxref{NGINX})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32782 +#: guix-git/doc/guix.texi:33147 msgid "The following example will configure Gitile to serve repositories from a custom location, with some default messages for the home page and the footers." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32805 +#: guix-git/doc/guix.texi:33170 #, no-wrap msgid "" "(service gitile-service-type\n" @@ -58402,12 +59048,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32814 +#: guix-git/doc/guix.texi:33179 msgid "In addition to the configuration record, you should configure your git repositories to contain some optional information. First, your public repositories need to contain the @file{git-daemon-export-ok} magic file that allows Git to export the repository. Gitile uses the presence of this file to detect public repositories it should make accessible. To do so with Gitolite for instance, modify your @file{conf/gitolite.conf} to include this in the repositories you want to make public:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:32818 +#: guix-git/doc/guix.texi:33183 #, no-wrap msgid "" "repo foo\n" @@ -58415,12 +59061,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32824 +#: guix-git/doc/guix.texi:33189 msgid "In addition, Gitile can read the repository configuration to display more information on the repository. Gitile uses the gitweb namespace for its configuration. As an example, you can use the following in your @file{conf/gitolite.conf}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:32831 +#: guix-git/doc/guix.texi:33196 #, no-wrap msgid "" "repo foo\n" @@ -58431,12 +59077,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32837 +#: guix-git/doc/guix.texi:33202 msgid "Do not forget to commit and push these changes once you are satisfied. You may need to change your gitolite configuration to allow the previous configuration options to be set. One way to do that is to add the following service definition:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32849 +#: guix-git/doc/guix.texi:33214 #, no-wrap msgid "" "(service gitolite-service-type\n" @@ -58452,244 +59098,243 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32851 -#, fuzzy, no-wrap -#| msgid "System Configuration" +#: guix-git/doc/guix.texi:33216 +#, no-wrap msgid "{Data Type} gitile-configuration" -msgstr "Nastavenie systému" +msgstr "{Druh údajov} gitile-configuration" #. type: deftp -#: guix-git/doc/guix.texi:32853 +#: guix-git/doc/guix.texi:33218 msgid "Data type representing the configuration for @code{gitile-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32855 +#: guix-git/doc/guix.texi:33220 #, no-wrap msgid "@code{package} (default: @var{gitile})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32857 +#: guix-git/doc/guix.texi:33222 msgid "Gitile package to use." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32860 +#: guix-git/doc/guix.texi:33225 msgid "The host on which gitile is listening." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32861 +#: guix-git/doc/guix.texi:33226 #, no-wrap msgid "@code{port} (default: @code{8080})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32863 +#: guix-git/doc/guix.texi:33228 msgid "The port on which gitile is listening." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32864 +#: guix-git/doc/guix.texi:33229 #, no-wrap msgid "@code{database} (default: @code{\"/var/lib/gitile/gitile-db.sql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32866 +#: guix-git/doc/guix.texi:33231 msgid "The location of the database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32867 +#: guix-git/doc/guix.texi:33232 #, no-wrap msgid "@code{repositories} (default: @code{\"/var/lib/gitolite/repositories\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32871 +#: guix-git/doc/guix.texi:33236 msgid "The location of the repositories. Note that only public repositories will be shown by Gitile. To make a repository public, add an empty @file{git-daemon-export-ok} file at the root of that repository." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:32872 +#: guix-git/doc/guix.texi:33237 #, no-wrap msgid "base-git-url" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32874 +#: guix-git/doc/guix.texi:33239 msgid "The base git url that will be used to show clone commands." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32875 +#: guix-git/doc/guix.texi:33240 #, no-wrap msgid "@code{index-title} (default: @code{\"Index\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32877 +#: guix-git/doc/guix.texi:33242 msgid "The page title for the index page that lists all the available repositories." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32878 +#: guix-git/doc/guix.texi:33243 #, no-wrap msgid "@code{intro} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32881 +#: guix-git/doc/guix.texi:33246 msgid "The intro content, as a list of sxml expressions. This is shown above the list of repositories, on the index page." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32882 +#: guix-git/doc/guix.texi:33247 #, no-wrap msgid "@code{footer} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32885 +#: guix-git/doc/guix.texi:33250 msgid "The footer content, as a list of sxml expressions. This is shown on every page served by Gitile." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:32886 +#: guix-git/doc/guix.texi:33251 #, no-wrap msgid "nginx-server-block" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32889 +#: guix-git/doc/guix.texi:33254 msgid "An nginx server block that will be extended and used as a reverse proxy by Gitile to serve its pages, and as a normal web server to serve its assets." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32893 +#: guix-git/doc/guix.texi:33258 msgid "You can use this block to add more custom URLs to your domain, such as a @code{/git/} URL for anonymous clones, or serving any other files you would like to serve." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:32900 +#: guix-git/doc/guix.texi:33265 #, no-wrap msgid "The Battle for Wesnoth Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32901 +#: guix-git/doc/guix.texi:33266 #, no-wrap msgid "wesnothd" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32905 +#: guix-git/doc/guix.texi:33270 msgid "@uref{https://wesnoth.org, The Battle for Wesnoth} is a fantasy, turn based tactical strategy game, with several single player campaigns, and multiplayer games (both networked and local)." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32906 +#: guix-git/doc/guix.texi:33271 #, no-wrap msgid "{Scheme Variable} wesnothd-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32910 +#: guix-git/doc/guix.texi:33275 msgid "Service type for the wesnothd service. Its value must be a @code{wesnothd-configuration} object. To run wesnothd in the default configuration, instantiate it as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32913 +#: guix-git/doc/guix.texi:33278 #, no-wrap msgid "(service wesnothd-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32916 +#: guix-git/doc/guix.texi:33281 #, no-wrap msgid "{Data Type} wesnothd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32918 +#: guix-git/doc/guix.texi:33283 msgid "Data type representing the configuration of @command{wesnothd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32920 +#: guix-git/doc/guix.texi:33285 #, no-wrap msgid "@code{package} (default: @code{wesnoth-server})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32922 +#: guix-git/doc/guix.texi:33287 msgid "The wesnoth server package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32923 +#: guix-git/doc/guix.texi:33288 #, no-wrap msgid "@code{port} (default: @code{15000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32925 +#: guix-git/doc/guix.texi:33290 guix-git/doc/guix.texi:33681 msgid "The port to bind the server to." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32931 +#: guix-git/doc/guix.texi:33296 #, no-wrap msgid "pam-mount" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32936 +#: guix-git/doc/guix.texi:33301 msgid "The @code{(gnu services pam-mount)} module provides a service allowing users to mount volumes when they log in. It should be able to mount any volume format supported by the system." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32937 +#: guix-git/doc/guix.texi:33302 #, no-wrap msgid "{Scheme Variable} pam-mount-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32939 +#: guix-git/doc/guix.texi:33304 msgid "Service type for PAM Mount support." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32941 +#: guix-git/doc/guix.texi:33306 #, no-wrap msgid "{Data Type} pam-mount-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32943 +#: guix-git/doc/guix.texi:33308 msgid "Data type representing the configuration of PAM Mount." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:32947 +#: guix-git/doc/guix.texi:33312 #, no-wrap msgid "rules" -msgstr "" +msgstr "rules" #. type: table -#: guix-git/doc/guix.texi:32950 +#: guix-git/doc/guix.texi:33315 msgid "The configuration rules that will be used to generate @file{/etc/security/pam_mount.conf.xml}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32954 +#: guix-git/doc/guix.texi:33319 msgid "The configuration rules are SXML elements (@pxref{SXML,,, guile, GNU Guile Reference Manual}), and the default ones don't mount anything for anyone at login:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32969 +#: guix-git/doc/guix.texi:33334 #, no-wrap msgid "" "`((debug (@@ (enable \"0\")))\n" @@ -58708,12 +59353,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32975 +#: guix-git/doc/guix.texi:33340 msgid "Some @code{volume} elements must be added to automatically mount volumes at login. Here's an example allowing the user @code{alice} to mount her encrypted @env{HOME} directory and allowing the user @code{bob} to mount the partition where he stores his data:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33000 +#: guix-git/doc/guix.texi:33365 #, no-wrap msgid "" "(define pam-mount-rules\n" @@ -58743,7 +59388,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33004 +#: guix-git/doc/guix.texi:33369 #, no-wrap msgid "" "(service pam-mount-service-type\n" @@ -58752,770 +59397,910 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33008 +#: guix-git/doc/guix.texi:33373 msgid "The complete list of possible options can be found in the man page for @uref{http://pam-mount.sourceforge.net/pam_mount.conf.5.html, pam_mount.conf}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33015 +#: guix-git/doc/guix.texi:33380 #, no-wrap msgid "Guix Build Coordinator" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33021 +#: guix-git/doc/guix.texi:33386 msgid "The @uref{https://git.cbaines.net/guix/build-coordinator/,Guix Build Coordinator} aids in distributing derivation builds among machines running an @dfn{agent}. The build daemon is still used to build the derivations, but the Guix Build Coordinator manages allocating builds and working with the results." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33027 +#: guix-git/doc/guix.texi:33392 msgid "The Guix Build Coordinator consists of one @dfn{coordinator}, and one or more connected @dfn{agent} processes. The coordinator process handles clients submitting builds, and allocating builds to agents. The agent processes talk to a build daemon to actually perform the builds, then send the results back to the coordinator." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33031 +#: guix-git/doc/guix.texi:33396 msgid "There is a script to run the coordinator component of the Guix Build Coordinator, but the Guix service uses a custom Guile script instead, to provide better integration with G-expressions used in the configuration." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33032 +#: guix-git/doc/guix.texi:33397 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33035 +#: guix-git/doc/guix.texi:33400 msgid "Service type for the Guix Build Coordinator. Its value must be a @code{guix-build-coordinator-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33037 +#: guix-git/doc/guix.texi:33402 #, no-wrap msgid "{Data Type} guix-build-coordinator-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33039 +#: guix-git/doc/guix.texi:33404 msgid "Data type representing the configuration of the Guix Build Coordinator." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33041 guix-git/doc/guix.texi:33211 +#: guix-git/doc/guix.texi:33406 guix-git/doc/guix.texi:33576 #, no-wrap msgid "@code{package} (default: @code{guix-build-coordinator})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33043 guix-git/doc/guix.texi:33087 -#: guix-git/doc/guix.texi:33213 +#: guix-git/doc/guix.texi:33408 guix-git/doc/guix.texi:33452 +#: guix-git/doc/guix.texi:33578 msgid "The Guix Build Coordinator package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33044 +#: guix-git/doc/guix.texi:33409 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33046 guix-git/doc/guix.texi:33090 -#: guix-git/doc/guix.texi:33216 guix-git/doc/guix.texi:33262 +#: guix-git/doc/guix.texi:33411 guix-git/doc/guix.texi:33455 +#: guix-git/doc/guix.texi:33581 guix-git/doc/guix.texi:33627 +#: guix-git/doc/guix.texi:33675 msgid "The system user to run the service as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33047 +#: guix-git/doc/guix.texi:33412 #, no-wrap msgid "@code{group} (default: @code{\"guix-build-coordinator\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33049 guix-git/doc/guix.texi:33265 +#: guix-git/doc/guix.texi:33414 guix-git/doc/guix.texi:33630 +#: guix-git/doc/guix.texi:33678 msgid "The system group to run the service as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33050 +#: guix-git/doc/guix.texi:33415 #, no-wrap msgid "@code{database-uri-string} (default: @code{\"sqlite:///var/lib/guix-build-coordinator/guix_build_coordinator.db\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33052 +#: guix-git/doc/guix.texi:33417 msgid "The URI to use for the database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33053 +#: guix-git/doc/guix.texi:33418 #, no-wrap msgid "@code{agent-communication-uri} (default: @code{\"http://0.0.0.0:8745\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33055 +#: guix-git/doc/guix.texi:33420 msgid "The URI describing how to listen to requests from agent processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33056 +#: guix-git/doc/guix.texi:33421 #, no-wrap msgid "@code{client-communication-uri} (default: @code{\"http://127.0.0.1:8746\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33060 +#: guix-git/doc/guix.texi:33425 msgid "The URI describing how to listen to requests from clients. The client API allows submitting builds and currently isn't authenticated, so take care when configuring this value." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33061 +#: guix-git/doc/guix.texi:33426 #, no-wrap msgid "@code{allocation-strategy} (default: @code{#~basic-build-allocation-strategy})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33065 +#: guix-git/doc/guix.texi:33430 msgid "A G-expression for the allocation strategy to be used. This is a procedure that takes the datastore as an argument and populates the allocation plan in the database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33066 +#: guix-git/doc/guix.texi:33431 #, no-wrap msgid "@code{hooks} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33069 +#: guix-git/doc/guix.texi:33434 msgid "An association list of hooks. These provide a way to execute arbitrary code upon certain events, like a build result being processed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33070 +#: guix-git/doc/guix.texi:33435 #, no-wrap msgid "@code{guile} (default: @code{guile-3.0-latest})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33072 +#: guix-git/doc/guix.texi:33437 msgid "The Guile package with which to run the Guix Build Coordinator." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33076 +#: guix-git/doc/guix.texi:33441 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-agent-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33079 +#: guix-git/doc/guix.texi:33444 msgid "Service type for a Guix Build Coordinator agent. Its value must be a @code{guix-build-coordinator-agent-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33081 +#: guix-git/doc/guix.texi:33446 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33083 +#: guix-git/doc/guix.texi:33448 msgid "Data type representing the configuration a Guix Build Coordinator agent." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33085 +#: guix-git/doc/guix.texi:33450 #, no-wrap msgid "@code{package} (default: @code{guix-build-coordinator/agent-only})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33088 +#: guix-git/doc/guix.texi:33453 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator-agent\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33091 +#: guix-git/doc/guix.texi:33456 #, no-wrap msgid "@code{coordinator} (default: @code{\"http://localhost:8745\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33093 guix-git/doc/guix.texi:33219 +#: guix-git/doc/guix.texi:33458 guix-git/doc/guix.texi:33584 msgid "The URI to use when connecting to the coordinator." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33094 +#: guix-git/doc/guix.texi:33459 #, no-wrap msgid "authentication" -msgstr "" +msgstr "authentication" #. type: table -#: guix-git/doc/guix.texi:33097 +#: guix-git/doc/guix.texi:33462 msgid "Record describing how this agent should authenticate with the coordinator. Possible record types are described below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33098 guix-git/doc/guix.texi:33220 +#: guix-git/doc/guix.texi:33463 guix-git/doc/guix.texi:33585 #, no-wrap msgid "@code{systems} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33101 +#: guix-git/doc/guix.texi:33466 msgid "The systems for which this agent should fetch builds. The agent process will use the current system it's running on as the default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33102 +#: guix-git/doc/guix.texi:33467 #, no-wrap msgid "@code{max-parallel-builds} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33104 +#: guix-git/doc/guix.texi:33469 msgid "The number of builds to perform in parallel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33105 +#: guix-git/doc/guix.texi:33470 #, no-wrap msgid "@code{max-1min-load-average} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33109 +#: guix-git/doc/guix.texi:33474 msgid "Load average value to look at when considering starting new builds, if the 1 minute load average exceeds this value, the agent will wait before starting new builds." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33113 +#: guix-git/doc/guix.texi:33478 msgid "This will be unspecified if the value is @code{#f}, and the agent will use the number of cores reported by the system as the max 1 minute load average." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33114 +#: guix-git/doc/guix.texi:33479 #, no-wrap msgid "@code{derivation-substitute-urls} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33117 +#: guix-git/doc/guix.texi:33482 msgid "URLs from which to attempt to fetch substitutes for derivations, if the derivations aren't already available." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33118 +#: guix-git/doc/guix.texi:33483 #, no-wrap msgid "@code{non-derivation-substitute-urls} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33121 +#: guix-git/doc/guix.texi:33486 msgid "URLs from which to attempt to fetch substitutes for build inputs, if the input store items aren't already available." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33125 +#: guix-git/doc/guix.texi:33490 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-password-auth" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33128 +#: guix-git/doc/guix.texi:33493 msgid "Data type representing an agent authenticating with a coordinator via a UUID and password." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33134 guix-git/doc/guix.texi:33150 +#: guix-git/doc/guix.texi:33499 guix-git/doc/guix.texi:33515 msgid "The UUID of the agent. This should be generated by the coordinator process, stored in the coordinator database, and used by the intended agent." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33137 +#: guix-git/doc/guix.texi:33502 msgid "The password to use when connecting to the coordinator." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33141 +#: guix-git/doc/guix.texi:33506 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-password-file-auth" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33144 +#: guix-git/doc/guix.texi:33509 msgid "Data type representing an agent authenticating with a coordinator via a UUID and password read from a file." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33151 +#: guix-git/doc/guix.texi:33516 #, no-wrap msgid "password-file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33154 +#: guix-git/doc/guix.texi:33519 msgid "A file containing the password to use when connecting to the coordinator." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33158 +#: guix-git/doc/guix.texi:33523 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-dynamic-auth" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33161 +#: guix-git/doc/guix.texi:33526 msgid "Data type representing an agent authenticating with a coordinator via a dynamic auth token and agent name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33163 guix-git/doc/guix.texi:33180 +#: guix-git/doc/guix.texi:33528 guix-git/doc/guix.texi:33545 #, no-wrap msgid "agent-name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33167 guix-git/doc/guix.texi:33184 +#: guix-git/doc/guix.texi:33532 guix-git/doc/guix.texi:33549 msgid "Name of an agent, this is used to match up to an existing entry in the database if there is one. When no existing entry is found, a new entry is automatically added." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33168 +#: guix-git/doc/guix.texi:33533 #, no-wrap msgid "token" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33171 +#: guix-git/doc/guix.texi:33536 msgid "Dynamic auth token, this is created and stored in the coordinator database, and is used by the agent to authenticate." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33175 +#: guix-git/doc/guix.texi:33540 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-dynamic-auth-with-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33178 +#: guix-git/doc/guix.texi:33543 msgid "Data type representing an agent authenticating with a coordinator via a dynamic auth token read from a file and agent name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33185 +#: guix-git/doc/guix.texi:33550 #, no-wrap msgid "token-file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33188 +#: guix-git/doc/guix.texi:33553 msgid "File containing the dynamic auth token, this is created and stored in the coordinator database, and is used by the agent to authenticate." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33198 +#: guix-git/doc/guix.texi:33563 msgid "The Guix Build Coordinator package contains a script to query an instance of the Guix Data Service for derivations to build, and then submit builds for those derivations to the coordinator. The service type below assists in running this script. This is an additional tool that may be useful when building derivations contained within an instance of the Guix Data Service." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33199 +#: guix-git/doc/guix.texi:33564 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-queue-builds-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33204 +#: guix-git/doc/guix.texi:33569 msgid "Service type for the guix-build-coordinator-queue-builds-from-guix-data-service script. Its value must be a @code{guix-build-coordinator-queue-builds-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33206 +#: guix-git/doc/guix.texi:33571 #, no-wrap msgid "{Data Type} guix-build-coordinator-queue-builds-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33209 +#: guix-git/doc/guix.texi:33574 msgid "Data type representing the options to the queue builds from guix data service script." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33214 +#: guix-git/doc/guix.texi:33579 #, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator-queue-builds\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33217 +#: guix-git/doc/guix.texi:33582 #, no-wrap msgid "@code{coordinator} (default: @code{\"http://localhost:8746\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33222 +#: guix-git/doc/guix.texi:33587 msgid "The systems for which to fetch derivations to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33223 +#: guix-git/doc/guix.texi:33588 #, no-wrap msgid "@code{systems-and-targets} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33226 +#: guix-git/doc/guix.texi:33591 msgid "An association list of system and target pairs for which to fetch derivations to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33227 +#: guix-git/doc/guix.texi:33592 #, no-wrap msgid "@code{guix-data-service} (default: @code{\"https://data.guix.gnu.org\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33230 +#: guix-git/doc/guix.texi:33595 msgid "The Guix Data Service instance from which to query to find out about derivations to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33231 +#: guix-git/doc/guix.texi:33596 #, no-wrap msgid "@code{processed-commits-file} (default: @code{\"/var/cache/guix-build-coordinator-queue-builds/processed-commits\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33234 +#: guix-git/doc/guix.texi:33599 msgid "A file to record which commits have been processed, to avoid needlessly processing them again if the service is restarted." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33238 +#: guix-git/doc/guix.texi:33603 #, no-wrap msgid "Guix Data Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33242 +#: guix-git/doc/guix.texi:33607 msgid "The @uref{http://data.guix.gnu.org,Guix Data Service} processes, stores and provides data about GNU Guix. This includes information about packages, derivations and lint warnings." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33245 +#: guix-git/doc/guix.texi:33610 msgid "The data is stored in a PostgreSQL database, and available through a web interface." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33246 +#: guix-git/doc/guix.texi:33611 #, no-wrap msgid "{Scheme Variable} guix-data-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33251 +#: guix-git/doc/guix.texi:33616 msgid "Service type for the Guix Data Service. Its value must be a @code{guix-data-service-configuration} object. The service optionally extends the getmail service, as the guix-commits mailing list is used to find out about changes in the Guix git repository." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33253 +#: guix-git/doc/guix.texi:33618 #, no-wrap msgid "{Data Type} guix-data-service-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33255 +#: guix-git/doc/guix.texi:33620 guix-git/doc/guix.texi:33668 msgid "Data type representing the configuration of the Guix Data Service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33257 +#: guix-git/doc/guix.texi:33622 #, no-wrap msgid "@code{package} (default: @code{guix-data-service})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33259 +#: guix-git/doc/guix.texi:33624 msgid "The Guix Data Service package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33260 +#: guix-git/doc/guix.texi:33625 #, no-wrap msgid "@code{user} (default: @code{\"guix-data-service\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33263 +#: guix-git/doc/guix.texi:33628 #, no-wrap msgid "@code{group} (default: @code{\"guix-data-service\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33266 +#: guix-git/doc/guix.texi:33631 #, no-wrap msgid "@code{port} (default: @code{8765})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33268 +#: guix-git/doc/guix.texi:33633 msgid "The port to bind the web service to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33269 +#: guix-git/doc/guix.texi:33634 guix-git/doc/guix.texi:33682 #, no-wrap msgid "@code{host} (default: @code{\"127.0.0.1\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33271 +#: guix-git/doc/guix.texi:33636 msgid "The host to bind the web service to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33272 +#: guix-git/doc/guix.texi:33637 #, no-wrap msgid "@code{getmail-idle-mailboxes} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33275 +#: guix-git/doc/guix.texi:33640 msgid "If set, this is the list of mailboxes that the getmail service will be configured to listen to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33276 +#: guix-git/doc/guix.texi:33641 #, no-wrap msgid "@code{commits-getmail-retriever-configuration} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33280 +#: guix-git/doc/guix.texi:33645 msgid "If set, this is the @code{getmail-retriever-configuration} object with which to configure getmail to fetch mail from the guix-commits mailing list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33281 +#: guix-git/doc/guix.texi:33646 #, no-wrap msgid "@code{extra-options} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33283 +#: guix-git/doc/guix.texi:33648 msgid "Extra command line options for @code{guix-data-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33284 +#: guix-git/doc/guix.texi:33649 #, no-wrap msgid "@code{extra-process-jobs-options} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33286 +#: guix-git/doc/guix.texi:33651 msgid "Extra command line options for @code{guix-data-service-process-jobs}." msgstr "" +#. type: subsubheading +#: guix-git/doc/guix.texi:33655 +#, no-wrap +msgid "Nar Herder" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:33658 +msgid "The @uref{https://git.cbaines.net/guix/nar-herder/about/,Nar Herder} is a utility for managing a collection of nars." +msgstr "" + +#. type: defvar +#: guix-git/doc/guix.texi:33659 +#, no-wrap +msgid "{Scheme Variable} nar-herder-type" +msgstr "" + +#. type: defvar +#: guix-git/doc/guix.texi:33664 +msgid "Service type for the Guix Data Service. Its value must be a @code{nar-herder-configuration} object. The service optionally extends the getmail service, as the guix-commits mailing list is used to find out about changes in the Guix git repository." +msgstr "" + +#. type: deftp +#: guix-git/doc/guix.texi:33666 +#, fuzzy, no-wrap +#| msgid "{Data Type} home-shepherd-configuration" +msgid "{Data Type} nar-herder-configuration" +msgstr "{Druh údajov} home-shepherd-configuration" + +#. type: item +#: guix-git/doc/guix.texi:33670 +#, no-wrap +msgid "@code{package} (default: @code{nar-herder})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33672 +msgid "The Nar Herder package to use." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33673 +#, no-wrap +msgid "@code{user} (default: @code{\"nar-herder\"})" +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33676 +#, no-wrap +msgid "@code{group} (default: @code{\"nar-herder\"})" +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33679 +#, no-wrap +msgid "@code{port} (default: @code{8734})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33684 +msgid "The host to bind the server to." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33689 +msgid "Optional URL of the other Nar Herder instance which should be mirrored. This means that this Nar Herder instance will download it's database, and keep it up to date." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33690 +#, no-wrap +msgid "@code{database} (default: @code{\"/var/lib/nar-herder/nar_herder.db\"})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33695 +msgid "Location for the database. If this Nar Herder instance is mirroring another, the database will be downloaded if it doesn't exist. If this Nar Herder instance isn't mirroring another, an empty database will be created." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33696 +#, no-wrap +msgid "@code{database-dump} (default: @code{\"/var/lib/nar-herder/nar_herder_dump.db\"})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33700 +msgid "Location of the database dump. This is created and regularly updated by taking a copy of the database. This is the version of the database that is available to download." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33701 +#, no-wrap +msgid "@code{storage} (default: @code{#f})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33703 +msgid "Optional location in which to store nars." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33704 +#, no-wrap +msgid "@code{storage-limit} (default: @code{\"none\"})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33707 +msgid "Limit in bytes for the nars stored in the storage location. This can also be set to ``none'' so that there is no limit." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33710 +msgid "When the storage location exceeds this size, nars are removed according to the nar removal criteria." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33711 +#, no-wrap +msgid "@code{storage-nar-removal-criteria} (default: @code{'()})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33714 +msgid "Criteria used to remove nars from the storage location. These are used in conjunction with the storage limit." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33719 +msgid "When the storage location exceeds the storage limit size, nars will be checked against the nar removal criteria and if any of the criteria match, they will be removed. This will continue until the storage location is below the storage limit size." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33723 +msgid "Each criteria is specified by a string, then an equals sign, then another string. Currently, only one criteria is supported, checking if a nar is stored on another Nar Herder instance." +msgstr "" + #. type: cindex -#: guix-git/doc/guix.texi:33293 +#: guix-git/doc/guix.texi:33730 #, no-wrap msgid "oom" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33294 +#: guix-git/doc/guix.texi:33731 #, no-wrap msgid "out of memory killer" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33295 +#: guix-git/doc/guix.texi:33732 #, no-wrap msgid "earlyoom" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33296 +#: guix-git/doc/guix.texi:33733 #, no-wrap msgid "early out of memory daemon" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33297 +#: guix-git/doc/guix.texi:33734 #, no-wrap msgid "Early OOM Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33304 +#: guix-git/doc/guix.texi:33741 msgid "@uref{https://github.com/rfjakob/earlyoom,Early OOM}, also known as Earlyoom, is a minimalist out of memory (OOM) daemon that runs in user space and provides a more responsive and configurable alternative to the in-kernel OOM killer. It is useful to prevent the system from becoming unresponsive when it runs out of memory." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33305 +#: guix-git/doc/guix.texi:33742 #, no-wrap msgid "{Scheme Variable} earlyoom-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33310 +#: guix-git/doc/guix.texi:33747 msgid "The service type for running @command{earlyoom}, the Early OOM daemon. Its value must be a @code{earlyoom-configuration} object, described below. The service can be instantiated in its default configuration with:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33313 +#: guix-git/doc/guix.texi:33750 #, no-wrap msgid "(service earlyoom-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33316 +#: guix-git/doc/guix.texi:33753 #, no-wrap msgid "{Data Type} earlyoom-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33318 +#: guix-git/doc/guix.texi:33755 msgid "This is the configuration record for the @code{earlyoom-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33320 +#: guix-git/doc/guix.texi:33757 #, no-wrap msgid "@code{earlyoom} (default: @var{earlyoom})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33322 +#: guix-git/doc/guix.texi:33759 msgid "The Earlyoom package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33323 +#: guix-git/doc/guix.texi:33760 #, no-wrap msgid "@code{minimum-available-memory} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33325 +#: guix-git/doc/guix.texi:33762 msgid "The threshold for the minimum @emph{available} memory, in percentages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33326 +#: guix-git/doc/guix.texi:33763 #, no-wrap msgid "@code{minimum-free-swap} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33328 +#: guix-git/doc/guix.texi:33765 msgid "The threshold for the minimum free swap memory, in percentages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33329 +#: guix-git/doc/guix.texi:33766 #, no-wrap msgid "@code{prefer-regexp} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33332 +#: guix-git/doc/guix.texi:33769 msgid "A regular expression (as a string) to match the names of the processes that should be preferably killed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33333 +#: guix-git/doc/guix.texi:33770 #, no-wrap msgid "@code{avoid-regexp} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33336 +#: guix-git/doc/guix.texi:33773 msgid "A regular expression (as a string) to match the names of the processes that should @emph{not} be killed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33337 +#: guix-git/doc/guix.texi:33774 #, no-wrap msgid "@code{memory-report-interval} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33340 +#: guix-git/doc/guix.texi:33777 msgid "The interval in seconds at which a memory report is printed. It is disabled by default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33341 +#: guix-git/doc/guix.texi:33778 #, no-wrap msgid "@code{ignore-positive-oom-score-adj?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33344 +#: guix-git/doc/guix.texi:33781 msgid "A boolean indicating whether the positive adjustments set in @file{/proc/*/oom_score_adj} should be ignored." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33345 +#: guix-git/doc/guix.texi:33782 #, no-wrap msgid "@code{show-debug-messages?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33348 +#: guix-git/doc/guix.texi:33785 msgid "A boolean indicating whether debug messages should be printed. The logs are saved at @file{/var/log/earlyoom.log}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33349 +#: guix-git/doc/guix.texi:33786 #, no-wrap msgid "@code{send-notification-command} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33352 +#: guix-git/doc/guix.texi:33789 msgid "This can be used to provide a custom command used for sending notifications." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33355 +#: guix-git/doc/guix.texi:33792 #, no-wrap msgid "modprobe" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33356 +#: guix-git/doc/guix.texi:33793 #, no-wrap msgid "kernel module loader" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33357 +#: guix-git/doc/guix.texi:33794 #, no-wrap msgid "Kernel Module Loader Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33363 +#: guix-git/doc/guix.texi:33800 msgid "The kernel module loader service allows one to load loadable kernel modules at boot. This is especially useful for modules that don't autoload and need to be manually loaded, as is the case with @code{ddcci}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33364 +#: guix-git/doc/guix.texi:33801 #, no-wrap msgid "{Scheme Variable} kernel-module-loader-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33370 +#: guix-git/doc/guix.texi:33807 msgid "The service type for loading loadable kernel modules at boot with @command{modprobe}. Its value must be a list of strings representing module names. For example loading the drivers provided by @code{ddcci-driver-linux}, in debugging mode by passing some module parameters, can be done as follow:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33375 +#: guix-git/doc/guix.texi:33812 #, no-wrap msgid "" "(use-modules (gnu) (gnu services))\n" @@ -59525,7 +60310,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33379 +#: guix-git/doc/guix.texi:33816 #, no-wrap msgid "" "(define ddcci-config\n" @@ -59535,7 +60320,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33389 +#: guix-git/doc/guix.texi:33826 #, no-wrap msgid "" "(operating-system\n" @@ -59550,411 +60335,411 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33392 +#: guix-git/doc/guix.texi:33829 #, no-wrap msgid "rasdaemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33393 +#: guix-git/doc/guix.texi:33830 #, no-wrap msgid "Platform Reliability, Availability and Serviceability daemon" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33394 +#: guix-git/doc/guix.texi:33831 #, no-wrap msgid "Rasdaemon Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33399 +#: guix-git/doc/guix.texi:33836 msgid "The Rasdaemon service provides a daemon which monitors platform @acronym{RAS, Reliability@comma{} Availability@comma{} and Serviceability} reports from Linux kernel trace events, logging them to syslogd." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33402 +#: guix-git/doc/guix.texi:33839 msgid "Reliability, Availability and Serviceability is a concept used on servers meant to measure their robustness." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33405 +#: guix-git/doc/guix.texi:33842 msgid "@strong{Relability} is the probability that a system will produce correct outputs:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33407 +#: guix-git/doc/guix.texi:33844 #, no-wrap msgid "Generally measured as Mean Time Between Failures (MTBF), and" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33408 +#: guix-git/doc/guix.texi:33845 #, no-wrap msgid "Enhanced by features that help to avoid, detect and repair hardware" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:33410 +#: guix-git/doc/guix.texi:33847 msgid "faults" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33414 +#: guix-git/doc/guix.texi:33851 msgid "@strong{Availability} is the probability that a system is operational at a given time:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33416 +#: guix-git/doc/guix.texi:33853 #, no-wrap msgid "Generally measured as a percentage of downtime per a period of time, and" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33417 +#: guix-git/doc/guix.texi:33854 #, no-wrap msgid "Often uses mechanisms to detect and correct hardware faults in runtime." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33422 +#: guix-git/doc/guix.texi:33859 msgid "@strong{Serviceability} is the simplicity and speed with which a system can be repaired or maintained:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33424 +#: guix-git/doc/guix.texi:33861 #, no-wrap msgid "Generally measured on Mean Time Between Repair (MTBR)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33429 +#: guix-git/doc/guix.texi:33866 msgid "Among the monitoring measures, the most usual ones include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33431 +#: guix-git/doc/guix.texi:33868 #, no-wrap msgid "CPU – detect errors at instruction execution and at L1/L2/L3 caches;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33432 +#: guix-git/doc/guix.texi:33869 #, no-wrap msgid "Memory – add error correction logic (ECC) to detect and correct errors;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33433 +#: guix-git/doc/guix.texi:33870 #, no-wrap msgid "I/O – add CRC checksums for transferred data;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33434 +#: guix-git/doc/guix.texi:33871 #, no-wrap msgid "Storage – RAID, journal file systems, checksums, Self-Monitoring," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:33436 +#: guix-git/doc/guix.texi:33873 msgid "Analysis and Reporting Technology (SMART)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33442 +#: guix-git/doc/guix.texi:33879 msgid "By monitoring the number of occurrences of error detections, it is possible to identify if the probability of hardware errors is increasing, and, on such case, do a preventive maintenance to replace a degraded component while those errors are correctable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33446 +#: guix-git/doc/guix.texi:33883 msgid "For detailed information about the types of error events gathered and how to make sense of them, see the kernel administrator's guide at @url{https://www.kernel.org/doc/html/latest/admin-guide/ras.html}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33447 +#: guix-git/doc/guix.texi:33884 #, no-wrap msgid "{Scheme Variable} rasdaemon-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33450 +#: guix-git/doc/guix.texi:33887 msgid "Service type for the @command{rasdaemon} service. It accepts a @code{rasdaemon-configuration} object. Instantiating like" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33453 +#: guix-git/doc/guix.texi:33890 #, no-wrap msgid "(service rasdaemon-service-type)\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33457 +#: guix-git/doc/guix.texi:33894 msgid "will load with a default configuration, which monitors all events and logs to syslogd." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33459 +#: guix-git/doc/guix.texi:33896 #, no-wrap msgid "{Data Type} rasdaemon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33461 +#: guix-git/doc/guix.texi:33898 msgid "The data type representing the configuration of @command{rasdaemon}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33463 +#: guix-git/doc/guix.texi:33900 #, no-wrap msgid "@code{record?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33468 +#: guix-git/doc/guix.texi:33905 msgid "A boolean indicating whether to record the events in an SQLite database. This provides a more structured access to the information contained in the log file. The database location is hard-coded to @file{/var/lib/rasdaemon/ras-mc_event.db}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33472 +#: guix-git/doc/guix.texi:33909 #, no-wrap msgid "zram" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33473 +#: guix-git/doc/guix.texi:33910 #, no-wrap msgid "compressed swap" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33474 +#: guix-git/doc/guix.texi:33911 #, no-wrap msgid "Compressed RAM-based block devices" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33475 +#: guix-git/doc/guix.texi:33912 #, no-wrap msgid "Zram Device Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33481 +#: guix-git/doc/guix.texi:33918 msgid "The Zram device service provides a compressed swap device in system memory. The Linux Kernel documentation has more information about @uref{https://www.kernel.org/doc/html/latest/admin-guide/blockdev/zram.html,zram} devices." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33482 +#: guix-git/doc/guix.texi:33919 #, no-wrap msgid "{Scheme Variable} zram-device-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33486 +#: guix-git/doc/guix.texi:33923 msgid "This service creates the zram block device, formats it as swap and enables it as a swap device. The service's value is a @code{zram-device-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33487 +#: guix-git/doc/guix.texi:33924 #, no-wrap msgid "{Data Type} zram-device-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33490 +#: guix-git/doc/guix.texi:33927 msgid "This is the data type representing the configuration for the zram-device service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33492 +#: guix-git/doc/guix.texi:33929 #, no-wrap msgid "@code{size} (default @code{\"1G\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33496 +#: guix-git/doc/guix.texi:33933 msgid "This is the amount of space you wish to provide for the zram device. It accepts a string and can be a number of bytes or use a suffix, eg.: @code{\"512M\"} or @code{1024000}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33496 +#: guix-git/doc/guix.texi:33933 #, no-wrap msgid "@code{compression-algorithm} (default @code{'lzo})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:33937 msgid "This is the compression algorithm you wish to use. It is difficult to list all the possible compression options, but common ones supported by Guix's Linux Libre Kernel include @code{'lzo}, @code{'lz4} and @code{'zstd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:33937 #, no-wrap msgid "@code{memory-limit} (default @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33507 +#: guix-git/doc/guix.texi:33944 msgid "This is the maximum amount of memory which the zram device can use. Setting it to '0' disables the limit. While it is generally expected that compression will be 2:1, it is possible that uncompressable data can be written to swap and this is a method to limit how much memory can be used. It accepts a string and can be a number of bytes or use a suffix, eg.: @code{\"2G\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33507 +#: guix-git/doc/guix.texi:33944 #, no-wrap msgid "@code{priority} (default @code{-1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33512 +#: guix-git/doc/guix.texi:33949 msgid "This is the priority of the swap device created from the zram device. @code{swapon} accepts values between -1 and 32767, with higher values indicating higher priority. Higher priority swap will generally be used first." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33520 +#: guix-git/doc/guix.texi:33957 #, no-wrap msgid "{Scheme Variable} hurd-console-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33522 +#: guix-git/doc/guix.texi:33959 msgid "This service starts the fancy @code{VGA} console client on the Hurd." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33524 +#: guix-git/doc/guix.texi:33961 msgid "The service's value is a @code{hurd-console-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33526 +#: guix-git/doc/guix.texi:33963 #, no-wrap msgid "{Data Type} hurd-console-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33529 +#: guix-git/doc/guix.texi:33966 msgid "This is the data type representing the configuration for the hurd-console-service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33531 guix-git/doc/guix.texi:33547 +#: guix-git/doc/guix.texi:33968 guix-git/doc/guix.texi:33984 #, no-wrap msgid "@code{hurd} (default: @var{hurd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33533 guix-git/doc/guix.texi:33549 +#: guix-git/doc/guix.texi:33970 guix-git/doc/guix.texi:33986 msgid "The Hurd package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33536 +#: guix-git/doc/guix.texi:33973 #, no-wrap msgid "{Scheme Variable} hurd-getty-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33538 +#: guix-git/doc/guix.texi:33975 msgid "This service starts a tty using the Hurd @code{getty} program." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33540 +#: guix-git/doc/guix.texi:33977 msgid "The service's value is a @code{hurd-getty-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33542 +#: guix-git/doc/guix.texi:33979 #, no-wrap msgid "{Data Type} hurd-getty-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33545 +#: guix-git/doc/guix.texi:33982 msgid "This is the data type representing the configuration for the hurd-getty-service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33552 +#: guix-git/doc/guix.texi:33989 msgid "The name of the console this Getty runs on---e.g., @code{\"tty1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33553 +#: guix-git/doc/guix.texi:33990 #, no-wrap msgid "@code{baud-rate} (default: @code{38400})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33555 +#: guix-git/doc/guix.texi:33992 msgid "An integer specifying the baud rate of the tty." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33562 +#: guix-git/doc/guix.texi:33999 #, no-wrap msgid "fingerprint" -msgstr "" +msgstr "odtlačok prsta" #. type: subsubheading -#: guix-git/doc/guix.texi:33563 +#: guix-git/doc/guix.texi:34000 #, no-wrap msgid "Fingerprint Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33567 +#: guix-git/doc/guix.texi:34004 msgid "The @code{(gnu services authentication)} module provides a DBus service to read and identify fingerprints via a fingerprint sensor." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33568 +#: guix-git/doc/guix.texi:34005 #, no-wrap msgid "{Scheme Variable} fprintd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33571 +#: guix-git/doc/guix.texi:34008 msgid "The service type for @command{fprintd}, which provides the fingerprint reading capability." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33574 +#: guix-git/doc/guix.texi:34011 #, no-wrap msgid "(service fprintd-service-type)\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33577 +#: guix-git/doc/guix.texi:34014 #, no-wrap msgid "sysctl" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33578 +#: guix-git/doc/guix.texi:34015 #, no-wrap msgid "System Control Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33582 +#: guix-git/doc/guix.texi:34019 msgid "The @code{(gnu services sysctl)} provides a service to configure kernel parameters at boot." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33583 +#: guix-git/doc/guix.texi:34020 #, no-wrap msgid "{Scheme Variable} sysctl-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33587 +#: guix-git/doc/guix.texi:34024 msgid "The service type for @command{sysctl}, which modifies kernel parameters under @file{/proc/sys/}. To enable IPv4 forwarding, it can be instantiated as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33592 +#: guix-git/doc/guix.texi:34029 #, no-wrap msgid "" "(service sysctl-service-type\n" @@ -59963,12 +60748,12 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33599 +#: guix-git/doc/guix.texi:34036 msgid "Since @code{sysctl-service-type} is used in the default lists of services, @code{%base-services} and @code{%desktop-services}, you can use @code{modify-services} to change its configuration and add the kernel parameters that you want (@pxref{Service Reference, @code{modify-services}})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33606 +#: guix-git/doc/guix.texi:34043 #, no-wrap msgid "" "(modify-services %base-services\n" @@ -59979,463 +60764,463 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33610 +#: guix-git/doc/guix.texi:34047 #, no-wrap msgid "{Data Type} sysctl-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33612 +#: guix-git/doc/guix.texi:34049 msgid "The data type representing the configuration of @command{sysctl}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33614 +#: guix-git/doc/guix.texi:34051 #, no-wrap msgid "@code{sysctl} (default: @code{(file-append procps \"/sbin/sysctl\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33616 +#: guix-git/doc/guix.texi:34053 msgid "The @command{sysctl} executable to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33617 +#: guix-git/doc/guix.texi:34054 #, no-wrap msgid "@code{settings} (default: @code{%default-sysctl-settings})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33619 +#: guix-git/doc/guix.texi:34056 msgid "An association list specifies kernel parameters and their values." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33622 +#: guix-git/doc/guix.texi:34059 #, no-wrap msgid "{Scheme Variable} %default-sysctl-settings" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33625 +#: guix-git/doc/guix.texi:34062 msgid "An association list specifying the default @command{sysctl} parameters on Guix System." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33627 +#: guix-git/doc/guix.texi:34064 #, no-wrap msgid "pcscd" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33628 +#: guix-git/doc/guix.texi:34065 #, no-wrap msgid "PC/SC Smart Card Daemon Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33635 +#: guix-git/doc/guix.texi:34072 msgid "The @code{(gnu services security-token)} module provides the following service to run @command{pcscd}, the PC/SC Smart Card Daemon. @command{pcscd} is the daemon program for pcsc-lite and the MuscleCard framework. It is a resource manager that coordinates communications with smart card readers, smart cards and cryptographic tokens that are connected to the system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33636 +#: guix-git/doc/guix.texi:34073 #, no-wrap msgid "{Scheme Variable} pcscd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33640 +#: guix-git/doc/guix.texi:34077 msgid "Service type for the @command{pcscd} service. Its value must be a @code{pcscd-configuration} object. To run pcscd in the default configuration, instantiate it as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33643 +#: guix-git/doc/guix.texi:34080 #, no-wrap msgid "(service pcscd-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33646 +#: guix-git/doc/guix.texi:34083 #, no-wrap msgid "{Data Type} pcscd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33648 +#: guix-git/doc/guix.texi:34085 msgid "The data type representing the configuration of @command{pcscd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33650 +#: guix-git/doc/guix.texi:34087 #, no-wrap msgid "@code{pcsc-lite} (default: @code{pcsc-lite})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33652 +#: guix-git/doc/guix.texi:34089 msgid "The pcsc-lite package that provides pcscd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33652 +#: guix-git/doc/guix.texi:34089 #, no-wrap msgid "@code{usb-drivers} (default: @code{(list ccid)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33655 +#: guix-git/doc/guix.texi:34092 msgid "List of packages that provide USB drivers to pcscd. Drivers are expected to be under @file{pcsc/drivers} in the store directory of the package." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33658 +#: guix-git/doc/guix.texi:34095 #, no-wrap msgid "lirc" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33659 +#: guix-git/doc/guix.texi:34096 #, no-wrap msgid "Lirc Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33662 +#: guix-git/doc/guix.texi:34099 msgid "The @code{(gnu services lirc)} module provides the following service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33663 +#: guix-git/doc/guix.texi:34100 #, no-wrap msgid "{Scheme Procedure} lirc-service [#:lirc lirc] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33668 +#: guix-git/doc/guix.texi:34105 msgid "[#:device #f] [#:driver #f] [#:config-file #f] @ [#:extra-options '()] Return a service that runs @url{http://www.lirc.org,LIRC}, a daemon that decodes infrared signals from remote controls." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33672 +#: guix-git/doc/guix.texi:34109 msgid "Optionally, @var{device}, @var{driver} and @var{config-file} (configuration file name) may be specified. See @command{lircd} manual for details." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33675 +#: guix-git/doc/guix.texi:34112 msgid "Finally, @var{extra-options} is a list of additional command-line options passed to @command{lircd}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33677 +#: guix-git/doc/guix.texi:34114 #, no-wrap msgid "spice" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33678 +#: guix-git/doc/guix.texi:34115 #, no-wrap msgid "Spice Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33681 +#: guix-git/doc/guix.texi:34118 msgid "The @code{(gnu services spice)} module provides the following service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33682 +#: guix-git/doc/guix.texi:34119 #, no-wrap msgid "{Scheme Procedure} spice-vdagent-service [#:spice-vdagent]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33686 +#: guix-git/doc/guix.texi:34123 msgid "Returns a service that runs @url{https://www.spice-space.org,VDAGENT}, a daemon that enables sharing the clipboard with a vm and setting the guest display resolution when the graphical console window resizes." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33688 +#: guix-git/doc/guix.texi:34125 #, no-wrap msgid "inputattach" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33689 +#: guix-git/doc/guix.texi:34126 #, no-wrap msgid "inputattach Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33691 +#: guix-git/doc/guix.texi:34128 #, no-wrap msgid "tablet input, for Xorg" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33692 +#: guix-git/doc/guix.texi:34129 #, no-wrap msgid "touchscreen input, for Xorg" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33696 +#: guix-git/doc/guix.texi:34133 msgid "The @uref{https://linuxwacom.github.io/, inputattach} service allows you to use input devices such as Wacom tablets, touchscreens, or joysticks with the Xorg display server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33697 +#: guix-git/doc/guix.texi:34134 #, no-wrap msgid "{Scheme Variable} inputattach-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33700 +#: guix-git/doc/guix.texi:34137 msgid "Type of a service that runs @command{inputattach} on a device and dispatches events from it." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33702 +#: guix-git/doc/guix.texi:34139 #, no-wrap msgid "{Data Type} inputattach-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33704 +#: guix-git/doc/guix.texi:34141 #, no-wrap msgid "@code{device-type} (default: @code{\"wacom\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33707 +#: guix-git/doc/guix.texi:34144 msgid "The type of device to connect to. Run @command{inputattach --help}, from the @code{inputattach} package, to see the list of supported device types." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33708 +#: guix-git/doc/guix.texi:34145 #, no-wrap msgid "@code{device} (default: @code{\"/dev/ttyS0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33710 +#: guix-git/doc/guix.texi:34147 msgid "The device file to connect to the device." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33714 +#: guix-git/doc/guix.texi:34151 msgid "Baud rate to use for the serial connection. Should be a number or @code{#f}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33715 +#: guix-git/doc/guix.texi:34152 #, no-wrap msgid "@code{log-file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33717 +#: guix-git/doc/guix.texi:34154 msgid "If true, this must be the name of a file to log messages to." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33720 +#: guix-git/doc/guix.texi:34157 #, no-wrap msgid "Dictionary Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33721 +#: guix-git/doc/guix.texi:34158 #, no-wrap msgid "dictionary" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33723 +#: guix-git/doc/guix.texi:34160 msgid "The @code{(gnu services dict)} module provides the following service:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33724 +#: guix-git/doc/guix.texi:34161 #, no-wrap msgid "{Scheme Variable} dicod-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33727 +#: guix-git/doc/guix.texi:34164 msgid "This is the type of the service that runs the @command{dicod} daemon, an implementation of DICT server (@pxref{Dicod,,, dico, GNU Dico Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33729 +#: guix-git/doc/guix.texi:34166 #, no-wrap msgid "{Scheme Procedure} dicod-service [#:config (dicod-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33732 +#: guix-git/doc/guix.texi:34169 msgid "Return a service that runs the @command{dicod} daemon, an implementation of DICT server (@pxref{Dicod,,, dico, GNU Dico Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33736 +#: guix-git/doc/guix.texi:34173 msgid "The optional @var{config} argument specifies the configuration for @command{dicod}, which should be a @code{} object, by default it serves the GNU Collaborative International Dictionary of English." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33740 +#: guix-git/doc/guix.texi:34177 msgid "You can add @command{open localhost} to your @file{~/.dico} file to make @code{localhost} the default server for @command{dico} client (@pxref{Initialization File,,, dico, GNU Dico Manual})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33742 +#: guix-git/doc/guix.texi:34179 #, no-wrap msgid "{Data Type} dicod-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33744 +#: guix-git/doc/guix.texi:34181 msgid "Data type representing the configuration of dicod." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33746 +#: guix-git/doc/guix.texi:34183 #, no-wrap msgid "@code{dico} (default: @var{dico})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33748 +#: guix-git/doc/guix.texi:34185 msgid "Package object of the GNU Dico dictionary server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33749 +#: guix-git/doc/guix.texi:34186 #, no-wrap msgid "@code{interfaces} (default: @var{'(\"localhost\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33753 +#: guix-git/doc/guix.texi:34190 msgid "This is the list of IP addresses and ports and possibly socket file names to listen to (@pxref{Server Settings, @code{listen} directive,, dico, GNU Dico Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33754 +#: guix-git/doc/guix.texi:34191 #, no-wrap msgid "@code{handlers} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33756 +#: guix-git/doc/guix.texi:34193 msgid "List of @code{} objects denoting handlers (module instances)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33757 +#: guix-git/doc/guix.texi:34194 #, no-wrap msgid "@code{databases} (default: @var{(list %dicod-database:gcide)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33759 +#: guix-git/doc/guix.texi:34196 msgid "List of @code{} objects denoting dictionaries to be served." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33762 +#: guix-git/doc/guix.texi:34199 #, no-wrap msgid "{Data Type} dicod-handler" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33764 +#: guix-git/doc/guix.texi:34201 msgid "Data type representing a dictionary handler (module instance)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33768 +#: guix-git/doc/guix.texi:34205 msgid "Name of the handler (module instance)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33769 +#: guix-git/doc/guix.texi:34206 #, no-wrap msgid "@code{module} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33773 +#: guix-git/doc/guix.texi:34210 msgid "Name of the dicod module of the handler (instance). If it is @code{#f}, the module has the same name as the handler. (@pxref{Modules,,, dico, GNU Dico Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33776 +#: guix-git/doc/guix.texi:34213 msgid "List of strings or gexps representing the arguments for the module handler" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33779 +#: guix-git/doc/guix.texi:34216 #, no-wrap msgid "{Data Type} dicod-database" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33781 +#: guix-git/doc/guix.texi:34218 msgid "Data type representing a dictionary database." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33785 +#: guix-git/doc/guix.texi:34222 msgid "Name of the database, will be used in DICT commands." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33786 +#: guix-git/doc/guix.texi:34223 #, no-wrap msgid "handler" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33789 +#: guix-git/doc/guix.texi:34226 msgid "Name of the dicod handler (module instance) used by this database (@pxref{Handlers,,, dico, GNU Dico Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33790 +#: guix-git/doc/guix.texi:34227 #, no-wrap msgid "@code{complex?} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33793 +#: guix-git/doc/guix.texi:34230 msgid "Whether the database configuration complex. The complex configuration will need a corresponding @code{} object, otherwise not." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33797 +#: guix-git/doc/guix.texi:34234 msgid "List of strings or gexps representing the arguments for the database (@pxref{Databases,,, dico, GNU Dico Manual})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33800 +#: guix-git/doc/guix.texi:34237 #, no-wrap msgid "{Scheme Variable} %dicod-database:gcide" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33803 +#: guix-git/doc/guix.texi:34240 msgid "A @code{} object serving the GNU Collaborative International Dictionary of English using the @code{gcide} package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33806 +#: guix-git/doc/guix.texi:34243 msgid "The following is an example @code{dicod-service} configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33821 +#: guix-git/doc/guix.texi:34258 #, no-wrap msgid "" "(dicod-service #:config\n" @@ -60454,139 +61239,139 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33823 +#: guix-git/doc/guix.texi:34260 #, no-wrap msgid "Docker" -msgstr "" +msgstr "Docker" #. type: subsubheading -#: guix-git/doc/guix.texi:33824 +#: guix-git/doc/guix.texi:34261 #, no-wrap msgid "Docker Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33827 +#: guix-git/doc/guix.texi:34264 msgid "The @code{(gnu services docker)} module provides the following services." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33828 +#: guix-git/doc/guix.texi:34265 #, no-wrap msgid "{Scheme Variable} docker-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33833 +#: guix-git/doc/guix.texi:34270 msgid "This is the type of the service that runs @url{https://www.docker.com,Docker}, a daemon that can execute application bundles (sometimes referred to as ``containers'') in isolated environments." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33836 +#: guix-git/doc/guix.texi:34273 #, no-wrap msgid "{Data Type} docker-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33838 +#: guix-git/doc/guix.texi:34275 msgid "This is the data type representing the configuration of Docker and Containerd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33841 +#: guix-git/doc/guix.texi:34278 #, no-wrap msgid "@code{docker} (default: @code{docker})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33843 +#: guix-git/doc/guix.texi:34280 msgid "The Docker daemon package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33844 +#: guix-git/doc/guix.texi:34281 #, no-wrap msgid "@code{docker-cli} (default: @code{docker-cli})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33846 +#: guix-git/doc/guix.texi:34283 msgid "The Docker client package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33847 +#: guix-git/doc/guix.texi:34284 #, no-wrap msgid "@code{containerd} (default: @var{containerd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33849 +#: guix-git/doc/guix.texi:34286 msgid "The Containerd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33850 +#: guix-git/doc/guix.texi:34287 #, no-wrap msgid "@code{proxy} (default @var{docker-libnetwork-cmd-proxy})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33852 +#: guix-git/doc/guix.texi:34289 msgid "The Docker user-land networking proxy package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33853 +#: guix-git/doc/guix.texi:34290 #, no-wrap msgid "@code{enable-proxy?} (default @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33855 +#: guix-git/doc/guix.texi:34292 msgid "Enable or disable the use of the Docker user-land networking proxy." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33856 +#: guix-git/doc/guix.texi:34293 #, no-wrap msgid "@code{debug?} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33858 +#: guix-git/doc/guix.texi:34295 msgid "Enable or disable debug output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33859 +#: guix-git/doc/guix.texi:34296 #, no-wrap msgid "@code{enable-iptables?} (default @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33861 +#: guix-git/doc/guix.texi:34298 msgid "Enable or disable the addition of iptables rules." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33862 +#: guix-git/doc/guix.texi:34299 #, no-wrap msgid "@code{environment-variables} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33864 +#: guix-git/doc/guix.texi:34301 msgid "List of environment variables to set for @command{dockerd}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33867 +#: guix-git/doc/guix.texi:34304 msgid "This must be a list of strings where each string has the form @samp{@var{key}=@var{value}} as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33871 +#: guix-git/doc/guix.texi:34308 #, no-wrap msgid "" "(list \"LANGUAGE=eo:ca:eu\"\n" @@ -60594,196 +61379,196 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33876 +#: guix-git/doc/guix.texi:34313 #, no-wrap msgid "Singularity, container service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33877 +#: guix-git/doc/guix.texi:34314 #, no-wrap msgid "{Scheme Variable} singularity-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33882 +#: guix-git/doc/guix.texi:34319 msgid "This is the type of the service that allows you to run @url{https://www.sylabs.io/singularity/, Singularity}, a Docker-style tool to create and run application bundles (aka. ``containers''). The value for this service is the Singularity package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33886 +#: guix-git/doc/guix.texi:34323 msgid "The service does not install a daemon; instead, it installs helper programs as setuid-root (@pxref{Setuid Programs}) such that unprivileged users can invoke @command{singularity run} and similar commands." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33888 +#: guix-git/doc/guix.texi:34325 #, no-wrap msgid "Audit" -msgstr "" +msgstr "Audit" #. type: subsubheading -#: guix-git/doc/guix.texi:33889 +#: guix-git/doc/guix.texi:34326 #, no-wrap msgid "Auditd Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33892 +#: guix-git/doc/guix.texi:34329 msgid "The @code{(gnu services auditd)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33893 +#: guix-git/doc/guix.texi:34330 #, no-wrap msgid "{Scheme Variable} auditd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33898 +#: guix-git/doc/guix.texi:34335 msgid "This is the type of the service that runs @url{https://people.redhat.com/sgrubb/audit/,auditd}, a daemon that tracks security-relevant information on your system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33900 +#: guix-git/doc/guix.texi:34337 msgid "Examples of things that can be tracked:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33904 +#: guix-git/doc/guix.texi:34341 msgid "File accesses" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33906 +#: guix-git/doc/guix.texi:34343 msgid "System calls" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33908 +#: guix-git/doc/guix.texi:34345 msgid "Invoked commands" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33910 +#: guix-git/doc/guix.texi:34347 msgid "Failed login attempts" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33912 +#: guix-git/doc/guix.texi:34349 msgid "Firewall filtering" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33914 +#: guix-git/doc/guix.texi:34351 msgid "Network access" -msgstr "" +msgstr "Prístup do siete" #. type: defvr -#: guix-git/doc/guix.texi:33925 +#: guix-git/doc/guix.texi:34362 msgid "@command{auditctl} from the @code{audit} package can be used in order to add or remove events to be tracked (until the next reboot). In order to permanently track events, put the command line arguments of auditctl into a file called @code{audit.rules} in the configuration directory (see below). @command{aureport} from the @code{audit} package can be used in order to view a report of all recorded events. The audit daemon by default logs into the file @file{/var/log/audit.log}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33928 +#: guix-git/doc/guix.texi:34365 #, no-wrap msgid "{Data Type} auditd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33930 +#: guix-git/doc/guix.texi:34367 msgid "This is the data type representing the configuration of auditd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33933 +#: guix-git/doc/guix.texi:34370 #, no-wrap msgid "@code{audit} (default: @code{audit})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33935 +#: guix-git/doc/guix.texi:34372 msgid "The audit package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33936 +#: guix-git/doc/guix.texi:34373 #, no-wrap msgid "@code{configuration-directory} (default: @code{%default-auditd-configuration-directory})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33940 +#: guix-git/doc/guix.texi:34377 msgid "The directory containing the configuration file for the audit package, which must be named @code{auditd.conf}, and optionally some audit rules to instantiate on startup." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33944 +#: guix-git/doc/guix.texi:34381 #, no-wrap msgid "rshiny" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33945 +#: guix-git/doc/guix.texi:34382 #, no-wrap msgid "R-Shiny service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33948 +#: guix-git/doc/guix.texi:34385 msgid "The @code{(gnu services science)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33949 +#: guix-git/doc/guix.texi:34386 #, no-wrap msgid "{Scheme Variable} rshiny-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33954 +#: guix-git/doc/guix.texi:34391 msgid "This is a type of service which is used to run a webapp created with @code{r-shiny}. This service sets the @env{R_LIBS_USER} environment variable and runs the provided script to call @code{runApp}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33955 +#: guix-git/doc/guix.texi:34392 #, no-wrap msgid "{Data Type} rshiny-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33957 +#: guix-git/doc/guix.texi:34394 msgid "This is the data type representing the configuration of rshiny." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33960 +#: guix-git/doc/guix.texi:34397 #, no-wrap msgid "@code{package} (default: @code{r-shiny})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33962 +#: guix-git/doc/guix.texi:34399 msgid "The package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33963 +#: guix-git/doc/guix.texi:34400 #, no-wrap msgid "@code{binary} (defaunlt @code{\"rshiny\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33966 +#: guix-git/doc/guix.texi:34403 msgid "The name of the binary or shell script located at @code{package/bin/} to run when the service is run." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33968 +#: guix-git/doc/guix.texi:34405 msgid "The common way to create this file is as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33985 +#: guix-git/doc/guix.texi:34422 #, no-wrap msgid "" "@dots{}\n" @@ -60804,35 +61589,35 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33991 +#: guix-git/doc/guix.texi:34428 #, no-wrap msgid "Nix" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33992 +#: guix-git/doc/guix.texi:34429 #, no-wrap msgid "Nix service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33995 +#: guix-git/doc/guix.texi:34432 msgid "The @code{(gnu services nix)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33996 +#: guix-git/doc/guix.texi:34433 #, no-wrap msgid "{Scheme Variable} nix-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34001 +#: guix-git/doc/guix.texi:34438 msgid "This is the type of the service that runs build daemon of the @url{https://nixos.org/nix/, Nix} package manager. Here is an example showing how to use it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34006 +#: guix-git/doc/guix.texi:34443 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -60842,7 +61627,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34011 +#: guix-git/doc/guix.texi:34448 #, no-wrap msgid "" "(operating-system\n" @@ -60853,7 +61638,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34014 +#: guix-git/doc/guix.texi:34451 #, no-wrap msgid "" " (services (append (list (service nix-service-type))\n" @@ -60861,29 +61646,29 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34017 +#: guix-git/doc/guix.texi:34454 msgid "After @command{guix system reconfigure} configure Nix for your user:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34019 +#: guix-git/doc/guix.texi:34456 #, no-wrap msgid "Add a Nix channel and update it. See" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:34021 +#: guix-git/doc/guix.texi:34458 msgid "@url{https://nixos.org/nix/manual/, Nix Package Manager Guide}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34022 +#: guix-git/doc/guix.texi:34459 #, no-wrap msgid "Create a symlink to your profile and activate Nix profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34028 +#: guix-git/doc/guix.texi:34465 #, no-wrap msgid "" "$ ln -s \"/nix/var/nix/profiles/per-user/$USER/profile\" ~/.nix-profile\n" @@ -60891,77 +61676,77 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34032 +#: guix-git/doc/guix.texi:34469 #, no-wrap msgid "{Data Type} nix-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34034 +#: guix-git/doc/guix.texi:34471 msgid "This data type represents the configuration of the Nix daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34036 +#: guix-git/doc/guix.texi:34473 #, no-wrap msgid "@code{nix} (default: @code{nix})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34038 +#: guix-git/doc/guix.texi:34475 msgid "The Nix package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34039 +#: guix-git/doc/guix.texi:34476 #, no-wrap msgid "@code{sandbox} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34041 +#: guix-git/doc/guix.texi:34478 msgid "Specifies whether builds are sandboxed by default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34042 +#: guix-git/doc/guix.texi:34479 #, no-wrap msgid "@code{build-sandbox-items} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34045 +#: guix-git/doc/guix.texi:34482 msgid "This is a list of strings or objects appended to the @code{build-sandbox-items} field of the configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34053 +#: guix-git/doc/guix.texi:34490 msgid "Extra command line options for @code{nix-service-type}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34059 +#: guix-git/doc/guix.texi:34496 #, no-wrap msgid "setuid programs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34069 +#: guix-git/doc/guix.texi:34506 msgid "Some programs need to run with ``root'' privileges, even when they are launched by unprivileged users. A notorious example is the @command{passwd} program, which users can run to change their password, and which needs to access the @file{/etc/passwd} and @file{/etc/shadow} files---something normally restricted to root, for obvious security reasons. To address that, these executables are @dfn{setuid-root}, meaning that they always run with root privileges (@pxref{How Change Persona,,, libc, The GNU C Library Reference Manual}, for more info about the setuid mechanism)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34076 +#: guix-git/doc/guix.texi:34513 msgid "The store itself @emph{cannot} contain setuid programs: that would be a security issue since any user on the system can write derivations that populate the store (@pxref{The Store}). Thus, a different mechanism is used: instead of changing the setuid bit directly on files that are in the store, we let the system administrator @emph{declare} which programs should be setuid root." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34083 +#: guix-git/doc/guix.texi:34520 msgid "The @code{setuid-programs} field of an @code{operating-system} declaration contains a list of @code{} denoting the names of programs to have a setuid or setgid bit set (@pxref{Using the Configuration System}). For instance, the @command{mount.nfs} program, which is part of the nfs-utils package, with a setuid root can be designated like this:" msgstr "" -#. type: example -#: guix-git/doc/guix.texi:34087 +#. type: lisp +#: guix-git/doc/guix.texi:34524 #, no-wrap msgid "" "(setuid-program\n" @@ -60969,162 +61754,164 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34092 +#: guix-git/doc/guix.texi:34529 msgid "And then, to make @command{mount.nfs} setuid on your system, add the previous example to your operating system declaration by appending it to @code{%setuid-programs} like this:" msgstr "" -#. type: example -#: guix-git/doc/guix.texi:34098 +#. type: lisp +#: guix-git/doc/guix.texi:34537 #, no-wrap msgid "" -"(setuid-programs\n" -" (append (list (setuid-program\n" -" (program (file-append nfs-utils \"/sbin/mount.nfs\"))))\n" -" %setuid-programs))\n" +"(operating-system\n" +" ;; Some fields omitted...\n" +" (setuid-programs\n" +" (append (list (setuid-program\n" +" (program (file-append nfs-utils \"/sbin/mount.nfs\")))\n" +" %setuid-programs))))\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34100 +#: guix-git/doc/guix.texi:34539 #, no-wrap msgid "{Data Type} setuid-program" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34102 +#: guix-git/doc/guix.texi:34541 msgid "This data type represents a program with a setuid or setgid bit set." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:34104 +#: guix-git/doc/guix.texi:34543 #, no-wrap msgid "program" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34106 +#: guix-git/doc/guix.texi:34545 msgid "A file-like object having its setuid and/or setgid bit set." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34107 +#: guix-git/doc/guix.texi:34546 #, no-wrap msgid "@code{setuid?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34109 +#: guix-git/doc/guix.texi:34548 msgid "Whether to set user setuid bit." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34110 +#: guix-git/doc/guix.texi:34549 #, no-wrap msgid "@code{setgid?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34112 +#: guix-git/doc/guix.texi:34551 msgid "Whether to set group setgid bit." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34113 +#: guix-git/doc/guix.texi:34552 #, no-wrap msgid "@code{user} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34116 +#: guix-git/doc/guix.texi:34555 msgid "UID (integer) or user name (string) for the user owner of the program, defaults to root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34117 +#: guix-git/doc/guix.texi:34556 #, no-wrap msgid "@code{group} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34120 +#: guix-git/doc/guix.texi:34559 msgid "GID (integer) goup name (string) for the group owner of the program, defaults to root." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34126 +#: guix-git/doc/guix.texi:34565 msgid "A default set of setuid programs is defined by the @code{%setuid-programs} variable of the @code{(gnu system)} module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34127 +#: guix-git/doc/guix.texi:34566 #, no-wrap msgid "{Scheme Variable} %setuid-programs" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34130 +#: guix-git/doc/guix.texi:34569 msgid "A list of @code{} denoting common programs that are setuid-root." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34133 +#: guix-git/doc/guix.texi:34572 msgid "The list includes commands such as @command{passwd}, @command{ping}, @command{su}, and @command{sudo}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34139 +#: guix-git/doc/guix.texi:34578 msgid "Under the hood, the actual setuid programs are created in the @file{/run/setuid-programs} directory at system activation time. The files in this directory refer to the ``real'' binaries, which are in the store." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34143 +#: guix-git/doc/guix.texi:34582 #, no-wrap msgid "HTTPS, certificates" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34144 +#: guix-git/doc/guix.texi:34583 #, no-wrap msgid "X.509 certificates" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34145 +#: guix-git/doc/guix.texi:34584 #, no-wrap msgid "TLS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34152 +#: guix-git/doc/guix.texi:34591 msgid "Web servers available over HTTPS (that is, HTTP over the transport-layer security mechanism, TLS) send client programs an @dfn{X.509 certificate} that the client can then use to @emph{authenticate} the server. To do that, clients verify that the server's certificate is signed by a so-called @dfn{certificate authority} (CA). But to verify the CA's signature, clients must have first acquired the CA's certificate." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34156 +#: guix-git/doc/guix.texi:34595 msgid "Web browsers such as GNU@tie{}IceCat include their own set of CA certificates, such that they are able to verify CA signatures out-of-the-box." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34160 +#: guix-git/doc/guix.texi:34599 msgid "However, most other programs that can talk HTTPS---@command{wget}, @command{git}, @command{w3m}, etc.---need to be told where CA certificates can be found." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34167 +#: guix-git/doc/guix.texi:34606 msgid "In Guix, this is done by adding a package that provides certificates to the @code{packages} field of the @code{operating-system} declaration (@pxref{operating-system Reference}). Guix includes one such package, @code{nss-certs}, which is a set of CA certificates provided as part of Mozilla's Network Security Services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34172 +#: guix-git/doc/guix.texi:34611 msgid "Note that it is @emph{not} part of @code{%base-packages}, so you need to explicitly add it. The @file{/etc/ssl/certs} directory, which is where most applications and libraries look for certificates by default, points to the certificates installed globally." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34182 +#: guix-git/doc/guix.texi:34621 msgid "Unprivileged users, including users of Guix on a foreign distro, can also install their own certificate package in their profile. A number of environment variables need to be defined so that applications and libraries know where to find them. Namely, the OpenSSL library honors the @env{SSL_CERT_DIR} and @env{SSL_CERT_FILE} variables. Some applications add their own environment variables; for instance, the Git version control system honors the certificate bundle pointed to by the @env{GIT_SSL_CAINFO} environment variable. Thus, you would typically run something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34188 +#: guix-git/doc/guix.texi:34627 #, no-wrap msgid "" "guix install nss-certs\n" @@ -61134,12 +61921,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34193 +#: guix-git/doc/guix.texi:34632 msgid "As another example, R requires the @env{CURL_CA_BUNDLE} environment variable to point to a certificate bundle, so you would have to run something like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34197 +#: guix-git/doc/guix.texi:34636 #, no-wrap msgid "" "guix install nss-certs\n" @@ -61147,51 +61934,51 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34201 +#: guix-git/doc/guix.texi:34640 msgid "For other applications you may want to look up the required environment variable in the relevant documentation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34206 +#: guix-git/doc/guix.texi:34645 #, no-wrap msgid "name service switch" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34207 +#: guix-git/doc/guix.texi:34646 #, no-wrap msgid "NSS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34216 +#: guix-git/doc/guix.texi:34655 msgid "The @code{(gnu system nss)} module provides bindings to the configuration file of the libc @dfn{name service switch} or @dfn{NSS} (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference Manual}). In a nutshell, the NSS is a mechanism that allows libc to be extended with new ``name'' lookup methods for system databases, which includes host names, service names, user accounts, and more (@pxref{Name Service Switch, System Databases and Name Service Switch,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34223 +#: guix-git/doc/guix.texi:34662 msgid "The NSS configuration specifies, for each system database, which lookup method is to be used, and how the various methods are chained together---for instance, under which circumstances NSS should try the next method in the list. The NSS configuration is given in the @code{name-service-switch} field of @code{operating-system} declarations (@pxref{operating-system Reference, @code{name-service-switch}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34224 +#: guix-git/doc/guix.texi:34663 #, no-wrap msgid "nss-mdns" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34225 +#: guix-git/doc/guix.texi:34664 #, no-wrap msgid ".local, host name lookup" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34230 +#: guix-git/doc/guix.texi:34669 msgid "As an example, the declaration below configures the NSS to use the @uref{https://0pointer.de/lennart/projects/nss-mdns/, @code{nss-mdns} back-end}, which supports host name lookups over multicast DNS (mDNS) for host names ending in @code{.local}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34234 +#: guix-git/doc/guix.texi:34673 #, no-wrap msgid "" "(name-service-switch\n" @@ -61200,7 +61987,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34239 +#: guix-git/doc/guix.texi:34678 #, no-wrap msgid "" " ;; If the above did not succeed, try\n" @@ -61211,7 +61998,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34245 +#: guix-git/doc/guix.texi:34684 #, no-wrap msgid "" " ;; 'mdns_minimal' is authoritative for\n" @@ -61223,7 +62010,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34249 +#: guix-git/doc/guix.texi:34688 #, no-wrap msgid "" " ;; Then fall back to DNS.\n" @@ -61233,7 +62020,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34253 +#: guix-git/doc/guix.texi:34692 #, no-wrap msgid "" " ;; Finally, try with the \"full\" 'mdns'.\n" @@ -61242,151 +62029,151 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34258 +#: guix-git/doc/guix.texi:34697 msgid "Do not worry: the @code{%mdns-host-lookup-nss} variable (see below) contains this configuration, so you will not have to type it if all you want is to have @code{.local} host lookup working." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34266 +#: guix-git/doc/guix.texi:34705 msgid "Note that, in this case, in addition to setting the @code{name-service-switch} of the @code{operating-system} declaration, you also need to use @code{avahi-service-type} (@pxref{Networking Services, @code{avahi-service-type}}), or @code{%desktop-services}, which includes it (@pxref{Desktop Services}). Doing this makes @code{nss-mdns} accessible to the name service cache daemon (@pxref{Base Services, @code{nscd-service}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34269 +#: guix-git/doc/guix.texi:34708 msgid "For convenience, the following variables provide typical NSS configurations." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34270 +#: guix-git/doc/guix.texi:34709 #, no-wrap msgid "{Scheme Variable} %default-nss" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34273 +#: guix-git/doc/guix.texi:34712 msgid "This is the default name service switch configuration, a @code{name-service-switch} object." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34275 +#: guix-git/doc/guix.texi:34714 #, no-wrap msgid "{Scheme Variable} %mdns-host-lookup-nss" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34278 +#: guix-git/doc/guix.texi:34717 msgid "This is the name service switch configuration with support for host name lookup over multicast DNS (mDNS) for host names ending in @code{.local}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34288 +#: guix-git/doc/guix.texi:34727 msgid "The reference for name service switch configuration is given below. It is a direct mapping of the configuration file format of the C library , so please refer to the C library manual for more information (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference Manual}). Compared to the configuration file format of libc NSS, it has the advantage not only of adding this warm parenthetic feel that we like, but also static checks: you will know about syntax errors and typos as soon as you run @command{guix system}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34289 +#: guix-git/doc/guix.texi:34728 #, no-wrap msgid "{Data Type} name-service-switch" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34294 +#: guix-git/doc/guix.texi:34733 msgid "This is the data type representation the configuration of libc's name service switch (NSS). Each field below represents one of the supported system databases." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34296 +#: guix-git/doc/guix.texi:34735 #, no-wrap msgid "aliases" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34297 +#: guix-git/doc/guix.texi:34736 #, no-wrap msgid "ethers" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34299 +#: guix-git/doc/guix.texi:34738 #, no-wrap msgid "gshadow" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34300 +#: guix-git/doc/guix.texi:34739 #, no-wrap msgid "hosts" -msgstr "" +msgstr "hostitelia" #. type: itemx -#: guix-git/doc/guix.texi:34301 +#: guix-git/doc/guix.texi:34740 #, no-wrap msgid "initgroups" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34302 +#: guix-git/doc/guix.texi:34741 #, no-wrap msgid "netgroup" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34303 +#: guix-git/doc/guix.texi:34742 #, no-wrap msgid "networks" -msgstr "" +msgstr "siete" #. type: itemx -#: guix-git/doc/guix.texi:34306 +#: guix-git/doc/guix.texi:34745 #, no-wrap msgid "rpc" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34308 +#: guix-git/doc/guix.texi:34747 #, no-wrap msgid "shadow" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34311 +#: guix-git/doc/guix.texi:34750 msgid "The system databases handled by the NSS@. Each of these fields must be a list of @code{} objects (see below)." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34314 +#: guix-git/doc/guix.texi:34753 #, no-wrap msgid "{Data Type} name-service" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34318 +#: guix-git/doc/guix.texi:34757 msgid "This is the data type representing an actual name service and the associated lookup action." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34323 +#: guix-git/doc/guix.texi:34762 msgid "A string denoting the name service (@pxref{Services in the NSS configuration,,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34328 +#: guix-git/doc/guix.texi:34767 msgid "Note that name services listed here must be visible to nscd. This is achieved by passing the @code{#:name-services} argument to @code{nscd-service} the list of packages providing the needed name services (@pxref{Base Services, @code{nscd-service}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34329 +#: guix-git/doc/guix.texi:34768 #, no-wrap msgid "reaction" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34333 +#: guix-git/doc/guix.texi:34772 msgid "An action specified using the @code{lookup-specification} macro (@pxref{Actions in the NSS configuration,,, libc, The GNU C Library Reference Manual}). For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34337 +#: guix-git/doc/guix.texi:34776 #, no-wrap msgid "" "(lookup-specification (unavailable => continue)\n" @@ -61394,17 +62181,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34351 +#: guix-git/doc/guix.texi:34790 msgid "For bootstrapping purposes, the Linux-Libre kernel is passed an @dfn{initial RAM disk}, or @dfn{initrd}. An initrd contains a temporary root file system as well as an initialization script. The latter is responsible for mounting the real root file system, and for loading any kernel modules that may be needed to achieve that." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34360 +#: guix-git/doc/guix.texi:34799 msgid "The @code{initrd-modules} field of an @code{operating-system} declaration allows you to specify Linux-libre kernel modules that must be available in the initrd. In particular, this is where you would list modules needed to actually drive the hard disk where your root partition is---although the default value of @code{initrd-modules} should cover most use cases. For example, assuming you need the @code{megaraid_sas} module in addition to the default modules to be able to access your root file system, you would write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34365 +#: guix-git/doc/guix.texi:34804 #, no-wrap msgid "" "(operating-system\n" @@ -61413,28 +62200,28 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34367 +#: guix-git/doc/guix.texi:34806 #, no-wrap msgid "{Scheme Variable} %base-initrd-modules" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34369 +#: guix-git/doc/guix.texi:34808 msgid "This is the list of kernel modules included in the initrd by default." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34377 +#: guix-git/doc/guix.texi:34816 msgid "Furthermore, if you need lower-level customization, the @code{initrd} field of an @code{operating-system} declaration allows you to specify which initrd you would like to use. The @code{(gnu system linux-initrd)} module provides three ways to build an initrd: the high-level @code{base-initrd} procedure and the low-level @code{raw-initrd} and @code{expression->initrd} procedures." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34382 +#: guix-git/doc/guix.texi:34821 msgid "The @code{base-initrd} procedure is intended to cover most common uses. For example, if you want to add a bunch of kernel modules to be loaded at boot time, you can define the @code{initrd} field of the operating system declaration like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34390 +#: guix-git/doc/guix.texi:34829 #, no-wrap msgid "" "(initrd (lambda (file-systems . rest)\n" @@ -61446,447 +62233,447 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34395 +#: guix-git/doc/guix.texi:34834 msgid "The @code{base-initrd} procedure also handles common use cases that involves using the system as a QEMU guest, or as a ``live'' system with volatile root file system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34402 +#: guix-git/doc/guix.texi:34841 msgid "The @code{base-initrd} procedure is built from @code{raw-initrd} procedure. Unlike @code{base-initrd}, @code{raw-initrd} doesn't do anything high-level, such as trying to guess which kernel modules and packages should be included to the initrd. An example use of @code{raw-initrd} is when a user has a custom Linux kernel configuration and default kernel modules included by @code{base-initrd} are not available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34407 +#: guix-git/doc/guix.texi:34846 msgid "The initial RAM disk produced by @code{base-initrd} or @code{raw-initrd} honors several options passed on the Linux kernel command line (that is, arguments passed @i{via} the @code{linux} command of GRUB, or the @code{-append} option of QEMU), notably:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34409 +#: guix-git/doc/guix.texi:34848 #, no-wrap msgid "--load=@var{boot}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34412 +#: guix-git/doc/guix.texi:34851 msgid "Tell the initial RAM disk to load @var{boot}, a file containing a Scheme program, once it has mounted the root file system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34416 +#: guix-git/doc/guix.texi:34855 msgid "Guix uses this option to yield control to a boot program that runs the service activation programs and then spawns the GNU@tie{}Shepherd, the initialization system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34417 +#: guix-git/doc/guix.texi:34856 #, no-wrap msgid "--root=@var{root}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34422 +#: guix-git/doc/guix.texi:34861 msgid "Mount @var{root} as the root file system. @var{root} can be a device name like @code{/dev/sda1}, a file system label, or a file system UUID. When unspecified, the device name from the root file system of the operating system declaration is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34423 +#: guix-git/doc/guix.texi:34862 #, no-wrap msgid "fsck.mode=@var{mode}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34429 +#: guix-git/doc/guix.texi:34868 msgid "Whether to check the @var{root} file system for errors before mounting it. @var{mode} is one of @code{skip} (never check), @code{force} (always check), or @code{auto} to respect the root file-system object's 'check?' setting (@pxref{File Systems}) and run a full scan only if the file system was not cleanly shut down." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34432 +#: guix-git/doc/guix.texi:34871 msgid "@code{auto} is the default if this option is not present or if @var{mode} is not one of the above." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34433 +#: guix-git/doc/guix.texi:34872 #, no-wrap msgid "fsck.repair=@var{level}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34438 +#: guix-git/doc/guix.texi:34877 msgid "The level of repairs to perform automatically if errors are found in the @var{root} file system. @var{level} is one of @code{no} (do not write to @var{root} at all if possible), @code{yes} (repair as much as possible), or @code{preen} to repair problems considered safe to repair automatically." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34441 +#: guix-git/doc/guix.texi:34880 msgid "@code{preen} is the default if this option is not present or if @var{level} is not one of the above." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34445 +#: guix-git/doc/guix.texi:34884 msgid "Have @file{/run/booted-system} and @file{/run/current-system} point to @var{system}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34446 +#: guix-git/doc/guix.texi:34885 #, no-wrap msgid "modprobe.blacklist=@var{modules}@dots{}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34447 +#: guix-git/doc/guix.texi:34886 #, no-wrap msgid "module, black-listing" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34448 +#: guix-git/doc/guix.texi:34887 #, no-wrap msgid "black list, of kernel modules" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34453 +#: guix-git/doc/guix.texi:34892 msgid "Instruct the initial RAM disk as well as the @command{modprobe} command (from the kmod package) to refuse to load @var{modules}. @var{modules} must be a comma-separated list of module names---e.g., @code{usbkbd,9pnet}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34454 +#: guix-git/doc/guix.texi:34893 #, no-wrap msgid "--repl" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34460 +#: guix-git/doc/guix.texi:34899 msgid "Start a read-eval-print loop (REPL) from the initial RAM disk before it tries to load kernel modules and to mount the root file system. Our marketing team calls it @dfn{boot-to-Guile}. The Schemer in you will love it. @xref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}, for more information on Guile's REPL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34466 +#: guix-git/doc/guix.texi:34905 msgid "Now that you know all the features that initial RAM disks produced by @code{base-initrd} and @code{raw-initrd} provide, here is how to use it and customize it further." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34469 +#: guix-git/doc/guix.texi:34908 #, no-wrap msgid "{Scheme Procedure} raw-initrd @var{file-systems} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34483 +#: guix-git/doc/guix.texi:34922 msgid "[#:linux-modules '()] [#:mapped-devices '()] @ [#:keyboard-layout #f] @ [#:helper-packages '()] [#:qemu-networking? #f] [#:volatile-root? #f] Return a derivation that builds a raw initrd. @var{file-systems} is a list of file systems to be mounted by the initrd, possibly in addition to the root file system specified on the kernel command line via @option{--root}. @var{linux-modules} is a list of kernel modules to be loaded at boot time. @var{mapped-devices} is a list of device mappings to realize before @var{file-systems} are mounted (@pxref{Mapped Devices}). @var{helper-packages} is a list of packages to be copied in the initrd. It may include @code{e2fsck/static} or other packages needed by the initrd to check the root file system." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34489 guix-git/doc/guix.texi:34513 +#: guix-git/doc/guix.texi:34928 guix-git/doc/guix.texi:34952 msgid "When true, @var{keyboard-layout} is a @code{} record denoting the desired console keyboard layout. This is done before @var{mapped-devices} are set up and before @var{file-systems} are mounted such that, should the user need to enter a passphrase or use the REPL, this happens using the intended keyboard layout." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34493 +#: guix-git/doc/guix.texi:34932 msgid "When @var{qemu-networking?} is true, set up networking with the standard QEMU parameters. When @var{virtio?} is true, load additional modules so that the initrd can be used as a QEMU guest with para-virtualized I/O drivers." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34496 +#: guix-git/doc/guix.texi:34935 msgid "When @var{volatile-root?} is true, the root file system is writable but any changes to it are lost." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34498 +#: guix-git/doc/guix.texi:34937 #, no-wrap msgid "{Scheme Procedure} base-initrd @var{file-systems} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34507 +#: guix-git/doc/guix.texi:34946 msgid "[#:mapped-devices '()] [#:keyboard-layout #f] @ [#:qemu-networking? #f] [#:volatile-root? #f] @ [#:linux-modules '()] Return as a file-like object a generic initrd, with kernel modules taken from @var{linux}. @var{file-systems} is a list of file-systems to be mounted by the initrd, possibly in addition to the root file system specified on the kernel command line via @option{--root}. @var{mapped-devices} is a list of device mappings to realize before @var{file-systems} are mounted." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34515 +#: guix-git/doc/guix.texi:34954 msgid "@var{qemu-networking?} and @var{volatile-root?} behaves as in @code{raw-initrd}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34520 +#: guix-git/doc/guix.texi:34959 msgid "The initrd is automatically populated with all the kernel modules necessary for @var{file-systems} and for the given options. Additional kernel modules can be listed in @var{linux-modules}. They will be added to the initrd, and loaded at boot time in the order in which they appear." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34527 +#: guix-git/doc/guix.texi:34966 msgid "Needless to say, the initrds we produce and use embed a statically-linked Guile, and the initialization program is a Guile program. That gives a lot of flexibility. The @code{expression->initrd} procedure builds such an initrd, given the program to run in that initrd." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34528 +#: guix-git/doc/guix.texi:34967 #, no-wrap msgid "{Scheme Procedure} expression->initrd @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34534 +#: guix-git/doc/guix.texi:34973 msgid "[#:guile %guile-static-stripped] [#:name \"guile-initrd\"] Return as a file-like object a Linux initrd (a gzipped cpio archive) containing @var{guile} and that evaluates @var{exp}, a G-expression, upon booting. All the derivations referenced by @var{exp} are automatically copied to the initrd." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34540 +#: guix-git/doc/guix.texi:34979 #, no-wrap msgid "boot loader" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34547 +#: guix-git/doc/guix.texi:34986 msgid "The operating system supports multiple bootloaders. The bootloader is configured using @code{bootloader-configuration} declaration. All the fields of this structure are bootloader agnostic except for one field, @code{bootloader} that indicates the bootloader to be configured and installed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34552 +#: guix-git/doc/guix.texi:34991 msgid "Some of the bootloaders do not honor every field of @code{bootloader-configuration}. For instance, the extlinux bootloader does not support themes and thus ignores the @code{theme} field." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34553 +#: guix-git/doc/guix.texi:34992 #, no-wrap msgid "{Data Type} bootloader-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34555 +#: guix-git/doc/guix.texi:34994 msgid "The type of a bootloader configuration declaration." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34559 +#: guix-git/doc/guix.texi:34998 #, no-wrap msgid "EFI, bootloader" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34560 +#: guix-git/doc/guix.texi:34999 #, no-wrap msgid "UEFI, bootloader" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34561 +#: guix-git/doc/guix.texi:35000 #, no-wrap msgid "BIOS, bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34566 +#: guix-git/doc/guix.texi:35005 msgid "The bootloader to use, as a @code{bootloader} object. For now @code{grub-bootloader}, @code{grub-efi-bootloader}, @code{grub-efi-netboot-bootloader}, @code{extlinux-bootloader} and @code{u-boot-bootloader} are supported." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34567 +#: guix-git/doc/guix.texi:35006 #, no-wrap msgid "ARM, bootloaders" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34568 +#: guix-git/doc/guix.texi:35007 #, no-wrap msgid "AArch64, bootloaders" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34573 +#: guix-git/doc/guix.texi:35012 msgid "Available bootloaders are described in @code{(gnu bootloader @dots{})} modules. In particular, @code{(gnu bootloader u-boot)} contains definitions of bootloaders for a wide range of ARM and AArch64 systems, using the @uref{https://www.denx.de/wiki/U-Boot/, U-Boot bootloader}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34579 +#: guix-git/doc/guix.texi:35018 msgid "@code{grub-efi-bootloader} allows to boot on modern systems using the @dfn{Unified Extensible Firmware Interface} (UEFI). This is what you should use if the installation image contains a @file{/sys/firmware/efi} directory when you boot it on your system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34583 +#: guix-git/doc/guix.texi:35022 msgid "@code{grub-bootloader} allows you to boot in particular Intel-based machines in ``legacy'' BIOS mode." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:34584 +#: guix-git/doc/guix.texi:35023 #, no-wrap msgid "grub-efi-netboot-bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34588 +#: guix-git/doc/guix.texi:35027 msgid "@code{grub-efi-netboot-bootloader} allows you to boot your system over network through TFTP@. In combination with an NFS root file system this allows you to build a diskless Guix system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34594 +#: guix-git/doc/guix.texi:35033 msgid "The installation of the @code{grub-efi-netboot-bootloader} generates the content of the TFTP root directory at @code{targets} (@pxref{Bootloader Configuration, @code{targets}}), to be served by a TFTP server. You may want to mount your TFTP server directories onto the @code{targets} to move the required files to the TFTP server automatically." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34603 +#: guix-git/doc/guix.texi:35042 msgid "If you plan to use an NFS root file system as well (actually if you mount the store from an NFS share), then the TFTP server needs to serve the file @file{/boot/grub/grub.cfg} and other files from the store (like GRUBs background image, the kernel (@pxref{operating-system Reference, @code{kernel}}) and the initrd (@pxref{operating-system Reference, @code{initrd}})), too. All these files from the store will be accessed by GRUB through TFTP with their normal store path, for example as @file{tftp://tftp-server/gnu/store/…-initrd/initrd.cpio.gz}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34612 +#: guix-git/doc/guix.texi:35051 msgid "Two symlinks are created to make this possible. For each target in the @code{targets} field, the first symlink is @samp{target}@file{/efi/Guix/boot/grub/grub.cfg} pointing to @file{../../../boot/grub/grub.cfg}, where @samp{target} may be @file{/boot}. In this case the link is not leaving the served TFTP root directory, but otherwise it does. The second link is @samp{target}@file{/gnu/store} and points to @file{../gnu/store}. This link is leaving the served TFTP root directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34618 +#: guix-git/doc/guix.texi:35057 msgid "The assumption behind all this is that you have an NFS server exporting the root file system for your Guix system, and additionally a TFTP server exporting your @code{targets} directories—usually a single @file{/boot}—from that same root file system for your Guix system. In this constellation the symlinks will work." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34623 +#: guix-git/doc/guix.texi:35062 msgid "For other constellations you will have to program your own bootloader installer, which then takes care to make necessary files from the store accessible through TFTP, for example by copying them into the TFTP root directory to your @code{targets}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34628 +#: guix-git/doc/guix.texi:35067 msgid "It is important to note that symlinks pointing outside the TFTP root directory may need to be allowed in the configuration of your TFTP server. Further the store link exposes the whole store through TFTP@. Both points need to be considered carefully for security aspects." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34633 +#: guix-git/doc/guix.texi:35072 msgid "Beside the @code{grub-efi-netboot-bootloader}, the already mentioned TFTP and NFS servers, you also need a properly configured DHCP server to make the booting over netboot possible. For all this we can currently only recommend you to look for instructions about @acronym{PXE, Preboot eXecution Environment}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34637 +#: guix-git/doc/guix.texi:35076 msgid "This is a list of strings denoting the targets onto which to install the bootloader." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34647 +#: guix-git/doc/guix.texi:35086 msgid "The interpretation of targets depends on the bootloader in question. For @code{grub-bootloader}, for example, they should be device names understood by the bootloader @command{installer} command, such as @code{/dev/sda} or @code{(hd0)} (@pxref{Invoking grub-install,,, grub, GNU GRUB Manual}). For @code{grub-efi-bootloader}, they should be mount points of the EFI file system, usually @file{/boot/efi}. For @code{grub-efi-netboot-bootloader}, @code{targets} should be the mount points corresponding to TFTP root directories served by your TFTP server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34648 +#: guix-git/doc/guix.texi:35087 #, no-wrap msgid "@code{menu-entries} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34652 +#: guix-git/doc/guix.texi:35091 msgid "A possibly empty list of @code{menu-entry} objects (see below), denoting entries to appear in the bootloader menu, in addition to the current system entry and the entry pointing to previous system generations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34653 +#: guix-git/doc/guix.texi:35092 #, no-wrap msgid "@code{default-entry} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34656 +#: guix-git/doc/guix.texi:35095 msgid "The index of the default boot menu entry. Index 0 is for the entry of the current system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34657 +#: guix-git/doc/guix.texi:35096 #, no-wrap msgid "@code{timeout} (default: @code{5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34660 +#: guix-git/doc/guix.texi:35099 msgid "The number of seconds to wait for keyboard input before booting. Set to 0 to boot immediately, and to -1 to wait indefinitely." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34661 +#: guix-git/doc/guix.texi:35100 #, no-wrap msgid "keyboard layout, for the bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34665 +#: guix-git/doc/guix.texi:35104 msgid "If this is @code{#f}, the bootloader's menu (if any) uses the default keyboard layout, usually US@tie{}English (``qwerty'')." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34668 +#: guix-git/doc/guix.texi:35107 msgid "Otherwise, this must be a @code{keyboard-layout} object (@pxref{Keyboard Layout})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:34672 +#: guix-git/doc/guix.texi:35111 msgid "This option is currently ignored by bootloaders other than @code{grub} and @code{grub-efi}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34674 +#: guix-git/doc/guix.texi:35113 #, no-wrap msgid "@code{theme} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34678 +#: guix-git/doc/guix.texi:35117 msgid "The bootloader theme object describing the theme to use. If no theme is provided, some bootloaders might use a default theme, that's true for GRUB." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34679 +#: guix-git/doc/guix.texi:35118 #, no-wrap msgid "@code{terminal-outputs} (default: @code{'(gfxterm)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34686 +#: guix-git/doc/guix.texi:35125 msgid "The output terminals used for the bootloader boot menu, as a list of symbols. GRUB accepts the values: @code{console}, @code{serial}, @code{serial_@{0-3@}}, @code{gfxterm}, @code{vga_text}, @code{mda_text}, @code{morse}, and @code{pkmodem}. This field corresponds to the GRUB variable @code{GRUB_TERMINAL_OUTPUT} (@pxref{Simple configuration,,, grub,GNU GRUB manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34687 +#: guix-git/doc/guix.texi:35126 #, no-wrap msgid "@code{terminal-inputs} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34695 +#: guix-git/doc/guix.texi:35134 msgid "The input terminals used for the bootloader boot menu, as a list of symbols. For GRUB, the default is the native platform terminal as determined at run-time. GRUB accepts the values: @code{console}, @code{serial}, @code{serial_@{0-3@}}, @code{at_keyboard}, and @code{usb_keyboard}. This field corresponds to the GRUB variable @code{GRUB_TERMINAL_INPUT} (@pxref{Simple configuration,,, grub,GNU GRUB manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34696 +#: guix-git/doc/guix.texi:35135 #, no-wrap msgid "@code{serial-unit} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34700 +#: guix-git/doc/guix.texi:35139 msgid "The serial unit used by the bootloader, as an integer from 0 to 3. For GRUB, it is chosen at run-time; currently GRUB chooses 0, which corresponds to COM1 (@pxref{Serial terminal,,, grub,GNU GRUB manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34701 +#: guix-git/doc/guix.texi:35140 #, no-wrap msgid "@code{serial-speed} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34705 +#: guix-git/doc/guix.texi:35144 msgid "The speed of the serial interface, as an integer. For GRUB, the default value is chosen at run-time; currently GRUB chooses 9600@tie{}bps (@pxref{Serial terminal,,, grub,GNU GRUB manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34709 +#: guix-git/doc/guix.texi:35148 #, no-wrap msgid "dual boot" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34710 +#: guix-git/doc/guix.texi:35149 #, no-wrap msgid "boot menu" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34716 +#: guix-git/doc/guix.texi:35155 msgid "Should you want to list additional boot menu entries @i{via} the @code{menu-entries} field above, you will need to create them with the @code{menu-entry} form. For example, imagine you want to be able to boot another distro (hard to imagine!), you can define a menu entry along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34723 +#: guix-git/doc/guix.texi:35162 #, no-wrap msgid "" "(menu-entry\n" @@ -61897,132 +62684,132 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34726 +#: guix-git/doc/guix.texi:35165 msgid "Details below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34727 +#: guix-git/doc/guix.texi:35166 #, no-wrap msgid "{Data Type} menu-entry" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34729 +#: guix-git/doc/guix.texi:35168 msgid "The type of an entry in the bootloader menu." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34734 +#: guix-git/doc/guix.texi:35173 msgid "The label to show in the menu---e.g., @code{\"GNU\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34735 +#: guix-git/doc/guix.texi:35174 #, no-wrap msgid "@code{linux} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34737 +#: guix-git/doc/guix.texi:35176 msgid "The Linux kernel image to boot, for example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34740 +#: guix-git/doc/guix.texi:35179 #, no-wrap msgid "(file-append linux-libre \"/bzImage\")\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34745 +#: guix-git/doc/guix.texi:35184 msgid "For GRUB, it is also possible to specify a device explicitly in the file path using GRUB's device naming convention (@pxref{Naming convention,,, grub, GNU GRUB manual}), for example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34748 +#: guix-git/doc/guix.texi:35187 #, no-wrap msgid "\"(hd0,msdos1)/boot/vmlinuz\"\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34752 +#: guix-git/doc/guix.texi:35191 msgid "If the device is specified explicitly as above, then the @code{device} field is ignored entirely." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34753 +#: guix-git/doc/guix.texi:35192 #, no-wrap msgid "@code{linux-arguments} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34756 +#: guix-git/doc/guix.texi:35195 msgid "The list of extra Linux kernel command-line arguments---e.g., @code{(\"console=ttyS0\")}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34757 +#: guix-git/doc/guix.texi:35196 #, no-wrap msgid "@code{initrd} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34760 +#: guix-git/doc/guix.texi:35199 msgid "A G-Expression or string denoting the file name of the initial RAM disk to use (@pxref{G-Expressions})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34764 +#: guix-git/doc/guix.texi:35203 msgid "The device where the kernel and initrd are to be found---i.e., for GRUB, @dfn{root} for this menu entry (@pxref{root,,, grub, GNU GRUB manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34770 +#: guix-git/doc/guix.texi:35209 msgid "This may be a file system label (a string), a file system UUID (a bytevector, @pxref{File Systems}), or @code{#f}, in which case the bootloader will search the device containing the file specified by the @code{linux} field (@pxref{search,,, grub, GNU GRUB manual}). It must @emph{not} be an OS device name such as @file{/dev/sda1}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34771 +#: guix-git/doc/guix.texi:35210 #, no-wrap msgid "@code{multiboot-kernel} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34775 +#: guix-git/doc/guix.texi:35214 msgid "The kernel to boot in Multiboot-mode (@pxref{multiboot,,, grub, GNU GRUB manual}). When this field is set, a Multiboot menu-entry is generated. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34778 +#: guix-git/doc/guix.texi:35217 #, no-wrap msgid "(file-append mach \"/boot/gnumach\")\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34780 +#: guix-git/doc/guix.texi:35219 #, no-wrap msgid "@code{multiboot-arguments} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34782 +#: guix-git/doc/guix.texi:35221 msgid "The list of extra command-line arguments for the multiboot-kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34783 +#: guix-git/doc/guix.texi:35222 #, no-wrap msgid "@code{multiboot-modules} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34785 +#: guix-git/doc/guix.texi:35224 msgid "The list of commands for loading Multiboot modules. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34791 +#: guix-git/doc/guix.texi:35230 #, no-wrap msgid "" "(list (list (file-append hurd \"/hurd/ext2fs.static\") \"ext2fs\"\n" @@ -62032,73 +62819,73 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34796 guix-git/doc/guix.texi:34855 +#: guix-git/doc/guix.texi:35235 guix-git/doc/guix.texi:35294 #, no-wrap msgid "HDPI" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34797 guix-git/doc/guix.texi:34856 +#: guix-git/doc/guix.texi:35236 guix-git/doc/guix.texi:35295 #, no-wrap msgid "HiDPI" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34798 guix-git/doc/guix.texi:34857 +#: guix-git/doc/guix.texi:35237 guix-git/doc/guix.texi:35296 #, no-wrap msgid "resolution" -msgstr "" +msgstr "rozlíšenie" #. type: Plain text -#: guix-git/doc/guix.texi:34802 +#: guix-git/doc/guix.texi:35241 msgid "For now only GRUB has theme support. GRUB themes are created using the @code{grub-theme} form, which is not fully documented yet." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34803 +#: guix-git/doc/guix.texi:35242 #, no-wrap msgid "{Data Type} grub-theme" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34805 +#: guix-git/doc/guix.texi:35244 msgid "Data type representing the configuration of the GRUB theme." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34807 +#: guix-git/doc/guix.texi:35246 #, no-wrap msgid "@code{gfxmode} (default: @code{'(\"auto\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34810 +#: guix-git/doc/guix.texi:35249 msgid "The GRUB @code{gfxmode} to set (a list of screen resolution strings, @pxref{gfxmode,,, grub, GNU GRUB manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34813 +#: guix-git/doc/guix.texi:35252 #, no-wrap msgid "{Scheme Procedure} grub-theme" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34817 +#: guix-git/doc/guix.texi:35256 msgid "Return the default GRUB theme used by the operating system if no @code{theme} field is specified in @code{bootloader-configuration} record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34820 +#: guix-git/doc/guix.texi:35259 msgid "It comes with a fancy background image displaying the GNU and Guix logos." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34824 +#: guix-git/doc/guix.texi:35263 msgid "For example, to override the default resolution, you may use something like" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34832 +#: guix-git/doc/guix.texi:35271 #, no-wrap msgid "" "(bootloader\n" @@ -62110,40 +62897,40 @@ msgid "" msgstr "" #. type: section -#: guix-git/doc/guix.texi:34835 +#: guix-git/doc/guix.texi:35274 #, no-wrap msgid "Invoking @code{guix system}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34840 +#: guix-git/doc/guix.texi:35279 msgid "Once you have written an operating system declaration as seen in the previous section, it can be @dfn{instantiated} using the @command{guix system} command. The synopsis is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34843 +#: guix-git/doc/guix.texi:35282 #, no-wrap msgid "guix system @var{options}@dots{} @var{action} @var{file}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34849 +#: guix-git/doc/guix.texi:35288 msgid "@var{file} must be the name of a file containing an @code{operating-system} declaration. @var{action} specifies how the operating system is instantiated. Currently the following values are supported:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34851 guix-git/doc/guix.texi:37496 +#: guix-git/doc/guix.texi:35290 guix-git/doc/guix.texi:37992 #, no-wrap msgid "search" -msgstr "" +msgstr "vyhľadávanie" #. type: table -#: guix-git/doc/guix.texi:34854 +#: guix-git/doc/guix.texi:35293 msgid "Display available service type definitions that match the given regular expressions, sorted by relevance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34876 +#: guix-git/doc/guix.texi:35315 #, no-wrap msgid "" "$ guix system search console\n" @@ -62167,7 +62954,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34882 +#: guix-git/doc/guix.texi:35321 #, no-wrap msgid "" "name: mingetty\n" @@ -62179,7 +62966,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34889 +#: guix-git/doc/guix.texi:35328 #, no-wrap msgid "" "name: login\n" @@ -62192,72 +62979,72 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34891 guix-git/doc/guix.texi:37549 +#: guix-git/doc/guix.texi:35330 guix-git/doc/guix.texi:38028 #, no-wrap msgid "@dots{}\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34896 guix-git/doc/guix.texi:37554 +#: guix-git/doc/guix.texi:35335 msgid "As for @command{guix package --search}, the result is written in @code{recutils} format, which makes it easy to filter the output (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34897 guix-git/doc/guix.texi:37555 +#: guix-git/doc/guix.texi:35336 guix-git/doc/guix.texi:38034 #, no-wrap msgid "reconfigure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34902 +#: guix-git/doc/guix.texi:35341 msgid "Build the operating system described in @var{file}, activate it, and switch to it@footnote{This action (and the related actions @code{switch-generation} and @code{roll-back}) are usable only on systems already running Guix System.}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:34910 +#: guix-git/doc/guix.texi:35349 msgid "It is highly recommended to run @command{guix pull} once before you run @command{guix system reconfigure} for the first time (@pxref{Invoking guix pull}). Failing to do that you would see an older version of Guix once @command{reconfigure} has completed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34918 +#: guix-git/doc/guix.texi:35357 msgid "This effects all the configuration specified in @var{file}: user accounts, system services, global package list, setuid programs, etc. The command starts system services specified in @var{file} that are not currently running; if a service is currently running this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop X} or @code{herd restart X})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34924 +#: guix-git/doc/guix.texi:35363 msgid "This command creates a new generation whose number is one greater than the current generation (as reported by @command{guix system list-generations}). If that generation already exists, it will be overwritten. This behavior mirrors that of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34929 +#: guix-git/doc/guix.texi:35368 msgid "It also adds a bootloader menu entry for the new OS configuration, ---unless @option{--no-bootloader} is passed. For GRUB, it moves entries for older configurations to a submenu, allowing you to choose an older system generation at boot time should you need it." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34930 guix-git/doc/guix.texi:35261 -#: guix-git/doc/guix.texi:36223 +#: guix-git/doc/guix.texi:35369 guix-git/doc/guix.texi:35705 +#: guix-git/doc/guix.texi:36713 #, no-wrap msgid "provenance tracking, of the operating system" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34935 +#: guix-git/doc/guix.texi:35374 msgid "Upon completion, the new system is deployed under @file{/run/current-system}. This directory contains @dfn{provenance meta-data}: the list of channels in use (@pxref{Channels}) and @var{file} itself, when available. You can view it by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34938 +#: guix-git/doc/guix.texi:35377 #, no-wrap msgid "guix system describe\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34944 +#: guix-git/doc/guix.texi:35383 msgid "This information is useful should you later want to inspect how this particular generation was built. In fact, assuming @var{file} is self-contained, you can later rebuild generation @var{n} of your operating system with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34950 +#: guix-git/doc/guix.texi:35389 #, no-wrap msgid "" "guix time-machine \\\n" @@ -62267,233 +63054,238 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34956 +#: guix-git/doc/guix.texi:35395 msgid "You can think of it as some sort of built-in version control! Your system is not just a binary artifact: @emph{it carries its own source}. @xref{Service Reference, @code{provenance-service-type}}, for more information on provenance tracking." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34962 +#: guix-git/doc/guix.texi:35401 msgid "By default, @command{reconfigure} @emph{prevents you from downgrading your system}, which could (re)introduce security vulnerabilities and also cause problems with ``stateful'' services such as database management systems. You can override that behavior by passing @option{--allow-downgrades}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34963 guix-git/doc/guix.texi:37614 +#: guix-git/doc/guix.texi:35402 guix-git/doc/guix.texi:38093 #, no-wrap msgid "switch-generation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34972 +#: guix-git/doc/guix.texi:35411 msgid "Switch to an existing system generation. This action atomically switches the system profile to the specified system generation. It also rearranges the system's existing bootloader menu entries. It makes the menu entry for the specified system generation the default, and it moves the entries for the other generations to a submenu, if supported by the bootloader being used. The next time the system boots, it will use the specified system generation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34976 +#: guix-git/doc/guix.texi:35415 msgid "The bootloader itself is not being reinstalled when using this command. Thus, the installed bootloader is used with an updated configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34980 +#: guix-git/doc/guix.texi:35419 msgid "The target generation can be specified explicitly by its generation number. For example, the following invocation would switch to system generation 7:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34983 +#: guix-git/doc/guix.texi:35422 #, no-wrap msgid "guix system switch-generation 7\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34991 guix-git/doc/guix.texi:37633 +#: guix-git/doc/guix.texi:35430 guix-git/doc/guix.texi:38112 msgid "The target generation can also be specified relative to the current generation with the form @code{+N} or @code{-N}, where @code{+3} means ``3 generations ahead of the current generation,'' and @code{-1} means ``1 generation prior to the current generation.'' When specifying a negative value such as @code{-1}, you must precede it with @code{--} to prevent it from being parsed as an option. For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34994 +#: guix-git/doc/guix.texi:35433 #, no-wrap msgid "guix system switch-generation -- -1\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35002 +#: guix-git/doc/guix.texi:35441 msgid "Currently, the effect of invoking this action is @emph{only} to switch the system profile to an existing generation and rearrange the bootloader menu entries. To actually start using the target system generation, you must reboot after running this action. In the future, it will be updated to do the same things as @command{reconfigure}, like activating and deactivating services." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35004 guix-git/doc/guix.texi:37639 +#: guix-git/doc/guix.texi:35443 guix-git/doc/guix.texi:38118 msgid "This action will fail if the specified generation does not exist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35005 guix-git/doc/guix.texi:37640 +#: guix-git/doc/guix.texi:35444 guix-git/doc/guix.texi:38119 #, no-wrap msgid "roll-back" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35011 +#: guix-git/doc/guix.texi:35450 msgid "Switch to the preceding system generation. The next time the system boots, it will use the preceding system generation. This is the inverse of @command{reconfigure}, and it is exactly the same as invoking @command{switch-generation} with an argument of @code{-1}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35015 +#: guix-git/doc/guix.texi:35454 msgid "Currently, as with @command{switch-generation}, you must reboot after running this action to actually start using the preceding system generation." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35016 guix-git/doc/guix.texi:37646 +#: guix-git/doc/guix.texi:35455 guix-git/doc/guix.texi:38125 #, no-wrap msgid "delete-generations" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35017 +#: guix-git/doc/guix.texi:35456 #, no-wrap msgid "deleting system generations" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35018 guix-git/doc/guix.texi:37648 +#: guix-git/doc/guix.texi:35457 guix-git/doc/guix.texi:38127 #, no-wrap msgid "saving space" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35022 +#: guix-git/doc/guix.texi:35461 msgid "Delete system generations, making them candidates for garbage collection (@pxref{Invoking guix gc}, for information on how to run the ``garbage collector'')." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35026 +#: guix-git/doc/guix.texi:35465 msgid "This works in the same way as @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). With no arguments, all system generations but the current one are deleted:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35029 +#: guix-git/doc/guix.texi:35468 #, no-wrap msgid "guix system delete-generations\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35033 +#: guix-git/doc/guix.texi:35472 msgid "You can also select the generations you want to delete. The example below deletes all the system generations that are more than two months old:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35036 +#: guix-git/doc/guix.texi:35475 #, no-wrap msgid "guix system delete-generations 2m\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35041 +#: guix-git/doc/guix.texi:35480 msgid "Running this command automatically reinstalls the bootloader with an updated list of menu entries---e.g., the ``old generations'' sub-menu in GRUB no longer lists the generations that have been deleted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35046 +#: guix-git/doc/guix.texi:35485 msgid "Build the derivation of the operating system, which includes all the configuration files and programs needed to boot and run the system. This action does not actually install anything." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35047 +#: guix-git/doc/guix.texi:35486 #, no-wrap msgid "init" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35051 +#: guix-git/doc/guix.texi:35490 msgid "Populate the given directory with all the files necessary to run the operating system specified in @var{file}. This is useful for first-time installations of Guix System. For instance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35054 +#: guix-git/doc/guix.texi:35493 #, no-wrap msgid "guix system init my-os-config.scm /mnt\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35061 +#: guix-git/doc/guix.texi:35500 msgid "copies to @file{/mnt} all the store items required by the configuration specified in @file{my-os-config.scm}. This includes configuration files, packages, and so on. It also creates other essential files needed for the system to operate correctly---e.g., the @file{/etc}, @file{/var}, and @file{/run} directories, and the @file{/bin/sh} file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35065 +#: guix-git/doc/guix.texi:35504 msgid "This command also installs bootloader on the targets specified in @file{my-os-config}, unless the @option{--no-bootloader} option was passed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35066 +#: guix-git/doc/guix.texi:35505 #, no-wrap msgid "vm" -msgstr "" +msgstr "virtuálny stroj" #. type: cindex -#: guix-git/doc/guix.texi:35067 guix-git/doc/guix.texi:35634 +#: guix-git/doc/guix.texi:35506 guix-git/doc/guix.texi:36124 #, no-wrap msgid "virtual machine" -msgstr "" +msgstr "virtuálny stroj" #. type: cindex -#: guix-git/doc/guix.texi:35068 +#: guix-git/doc/guix.texi:35507 #, no-wrap msgid "VM" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35072 +#: guix-git/doc/guix.texi:35511 msgid "guix system vm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35072 +#: guix-git/doc/guix.texi:35511 msgid "Build a virtual machine (VM) that contains the operating system declared in @var{file}, and return a script to run that VM." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35080 +#: guix-git/doc/guix.texi:35519 msgid "The @code{vm} action and others below can use KVM support in the Linux-libre kernel. Specifically, if the machine has hardware virtualization support, the corresponding KVM kernel module should be loaded, and the @file{/dev/kvm} device node must exist and be readable and writable by the user and by the build users of the daemon (@pxref{Build Environment Setup})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35085 +#: guix-git/doc/guix.texi:35524 msgid "Arguments given to the script are passed to QEMU as in the example below, which enables networking and requests 1@tie{}GiB of RAM for the emulated machine:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35088 +#: guix-git/doc/guix.texi:35527 #, no-wrap msgid "$ /gnu/store/@dots{}-run-vm.sh -m 1024 -smp 2 -nic user,model=virtio-net-pci\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35091 +#: guix-git/doc/guix.texi:35530 msgid "It's possible to combine the two steps into one:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35094 +#: guix-git/doc/guix.texi:35533 #, no-wrap msgid "$ $(guix system vm my-config.scm) -m 1024 -smp 2 -nic user,model=virtio-net-pci\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35097 +#: guix-git/doc/guix.texi:35536 msgid "The VM shares its store with the host system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35102 +#: guix-git/doc/guix.texi:35541 +msgid "By default, the root file system of the VM is mounted volatile; the @option{--persistent} option can be provided to make it persistent instead. In that case, the VM disk-image file will be copied from the store to the @env{TMPDIR} directory to make it writable." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:35546 msgid "Additional file systems can be shared between the host and the VM using the @option{--share} and @option{--expose} command-line options: the former specifies a directory to be shared with write access, while the latter provides read-only access to the shared directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35106 +#: guix-git/doc/guix.texi:35550 msgid "The example below creates a VM in which the user's home directory is accessible read-only, and where the @file{/exchange} directory is a read-write mapping of @file{$HOME/tmp} on the host:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35110 +#: guix-git/doc/guix.texi:35554 #, no-wrap msgid "" "guix system vm my-config.scm \\\n" @@ -62501,56 +63293,56 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35115 +#: guix-git/doc/guix.texi:35559 msgid "On GNU/Linux, the default is to boot directly to the kernel; this has the advantage of requiring only a very tiny root disk image since the store of the host can then be mounted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35120 +#: guix-git/doc/guix.texi:35564 msgid "The @option{--full-boot} option forces a complete boot sequence, starting with the bootloader. This requires more disk space since a root image containing at least the kernel, initrd, and bootloader data files must be created." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35123 +#: guix-git/doc/guix.texi:35567 msgid "The @option{--image-size} option can be used to specify the size of the image." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35130 +#: guix-git/doc/guix.texi:35574 msgid "The @option{--no-graphic} option will instruct @command{guix system} to spawn a headless VM that will use the invoking tty for IO. Among other things, this enables copy-pasting, and scrollback. Use the @kbd{ctrl-a} prefix to issue QEMU commands; e.g. @kbd{ctrl-a h} prints a help, @kbd{ctrl-a x} quits the VM, and @kbd{ctrl-a c} switches between the QEMU monitor and the VM." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35131 +#: guix-git/doc/guix.texi:35575 #, no-wrap msgid "System images, creation in various formats" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35132 +#: guix-git/doc/guix.texi:35576 #, no-wrap msgid "Creating system images in various formats" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35133 +#: guix-git/doc/guix.texi:35577 #, no-wrap msgid "image" -msgstr "" +msgstr "obraz" #. type: cindex -#: guix-git/doc/guix.texi:35134 +#: guix-git/doc/guix.texi:35578 #, no-wrap msgid "image, creating disk images" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35146 +#: guix-git/doc/guix.texi:35590 msgid "The @code{image} command can produce various image types. The image type can be selected using the @option{--image-type} option. It defaults to @code{efi-raw}. When its value is @code{iso9660}, the @option{--label} option can be used to specify a volume ID with @code{image}. By default, the root file system of a disk image is mounted non-volatile; the @option{--volatile} option can be provided to make it volatile instead. When using @code{image}, the bootloader installed on the generated image is taken from the provided @code{operating-system} definition. The following example demonstrates how to generate an image that uses the @code{grub-efi-bootloader} bootloader and boot it with QEMU:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35154 +#: guix-git/doc/guix.texi:35598 #, no-wrap msgid "" "image=$(guix system image --image-type=qcow2 \\\n" @@ -62562,45 +63354,45 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35160 +#: guix-git/doc/guix.texi:35604 msgid "When using the @code{efi-raw} image type, a raw disk image is produced; it can be copied as is to a USB stick, for instance. Assuming @code{/dev/sdc} is the device corresponding to a USB stick, one can copy the image to it using the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35163 +#: guix-git/doc/guix.texi:35607 #, no-wrap msgid "# dd if=$(guix system image my-os.scm) of=/dev/sdc status=progress\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35167 +#: guix-git/doc/guix.texi:35611 msgid "The @code{--list-image-types} command lists all the available image types." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35168 +#: guix-git/doc/guix.texi:35612 #, no-wrap msgid "creating virtual machine images" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35177 +#: guix-git/doc/guix.texi:35621 msgid "When using the @code{qcow2} image type, the returned image is in qcow2 format, which the QEMU emulator can efficiently use. @xref{Running Guix in a VM}, for more information on how to run the image in a virtual machine. The @code{grub-bootloader} bootloader is always used independently of what is declared in the @code{operating-system} file passed as argument. This is to make it easier to work with QEMU, which uses the SeaBIOS BIOS by default, expecting a bootloader to be installed in the Master Boot Record (MBR)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35178 +#: guix-git/doc/guix.texi:35622 #, no-wrap msgid "docker-image, creating docker images" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35184 +#: guix-git/doc/guix.texi:35628 msgid "When using the @code{docker} image type, a Docker image is produced. Guix builds the image from scratch, not from a pre-existing Docker base image. As a result, it contains @emph{exactly} what you define in the operating system configuration file. You can then load the image and launch a Docker container using commands like the following:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35189 +#: guix-git/doc/guix.texi:35633 #, no-wrap msgid "" "image_id=\"$(docker load < guix-system-docker-image.tar.gz)\"\n" @@ -62609,43 +63401,43 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35196 +#: guix-git/doc/guix.texi:35640 msgid "This command starts a new Docker container from the specified image. It will boot the Guix system in the usual manner, which means it will start any services you have defined in the operating system configuration. You can get an interactive shell running in the container using @command{docker exec}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35199 +#: guix-git/doc/guix.texi:35643 #, no-wrap msgid "docker exec -ti $container_id /run/current-system/profile/bin/bash --login\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35206 +#: guix-git/doc/guix.texi:35650 msgid "Depending on what you run in the Docker container, it may be necessary to give the container additional permissions. For example, if you intend to build software using Guix inside of the Docker container, you may need to pass the @option{--privileged} option to @code{docker create}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35210 +#: guix-git/doc/guix.texi:35654 msgid "Last, the @option{--network} option applies to @command{guix system docker-image}: it produces an image where network is supposedly shared with the host, and thus without services like nscd or NetworkManager." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35218 +#: guix-git/doc/guix.texi:35662 msgid "Return a script to run the operating system declared in @var{file} within a container. Containers are a set of lightweight isolation mechanisms provided by the kernel Linux-libre. Containers are substantially less resource-demanding than full virtual machines since the kernel, shared objects, and other resources can be shared with the host system; this also means they provide thinner isolation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35222 +#: guix-git/doc/guix.texi:35666 msgid "Currently, the script must be run as root in order to support more than a single user and group. The container shares its store with the host system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35226 +#: guix-git/doc/guix.texi:35670 msgid "As with the @code{vm} action (@pxref{guix system vm}), additional file systems to be shared between the host and container can be specified using the @option{--share} and @option{--expose} options:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35230 +#: guix-git/doc/guix.texi:35674 #, no-wrap msgid "" "guix system container my-config.scm \\\n" @@ -62653,319 +63445,329 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35234 +#: guix-git/doc/guix.texi:35678 msgid "This option requires Linux-libre 3.19 or newer." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35241 guix-git/doc/guix.texi:37710 +#: guix-git/doc/guix.texi:35685 guix-git/doc/guix.texi:38189 msgid "@var{options} can contain any of the common build options (@pxref{Common Build Options}). In addition, @var{options} can contain one of the following:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35250 +#: guix-git/doc/guix.texi:35694 msgid "Consider the operating-system @var{expr} evaluates to. This is an alternative to specifying a file which evaluates to an operating system. This is used to generate the Guix system installer @pxref{Building the Installation Image})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35255 +#: guix-git/doc/guix.texi:35699 msgid "Attempt to build for @var{system} instead of the host system type. This works as per @command{guix build} (@pxref{Invoking guix build})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35260 +#: guix-git/doc/guix.texi:35704 msgid "Return the derivation file name of the given operating system without building anything." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35269 +#: guix-git/doc/guix.texi:35713 msgid "As discussed above, @command{guix system init} and @command{guix system reconfigure} always save provenance information @i{via} a dedicated service (@pxref{Service Reference, @code{provenance-service-type}}). However, other commands don't do that by default. If you wish to, say, create a virtual machine image that contains provenance information, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35272 +#: guix-git/doc/guix.texi:35716 #, no-wrap msgid "guix system image -t qcow2 --save-provenance config.scm\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35279 +#: guix-git/doc/guix.texi:35723 msgid "That way, the resulting image will effectively ``embed its own source'' in the form of meta-data in @file{/run/current-system}. With that information, one can rebuild the image to make sure it really contains what it pretends to contain; or they could use that to derive a variant of the image." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35280 +#: guix-git/doc/guix.texi:35724 #, no-wrap msgid "--image-type=@var{type}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35283 +#: guix-git/doc/guix.texi:35727 msgid "For the @code{image} action, create an image with given @var{type}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35286 +#: guix-git/doc/guix.texi:35730 msgid "When this option is omitted, @command{guix system} uses the @code{efi-raw} image type." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35287 +#: guix-git/doc/guix.texi:35731 #, no-wrap msgid "ISO-9660 format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35288 +#: guix-git/doc/guix.texi:35732 #, no-wrap msgid "CD image format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35289 +#: guix-git/doc/guix.texi:35733 #, no-wrap msgid "DVD image format" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35292 +#: guix-git/doc/guix.texi:35736 msgid "@option{--image-type=iso9660} produces an ISO-9660 image, suitable for burning on CDs and DVDs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35293 +#: guix-git/doc/guix.texi:35737 #, no-wrap msgid "--image-size=@var{size}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35298 +#: guix-git/doc/guix.texi:35742 msgid "For the @code{image} action, create an image of the given @var{size}. @var{size} may be a number of bytes, or it may include a unit as a suffix (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35302 +#: guix-git/doc/guix.texi:35746 msgid "When this option is omitted, @command{guix system} computes an estimate of the image size as a function of the size of the system declared in @var{file}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35307 +#: guix-git/doc/guix.texi:35751 msgid "For the @code{container} action, allow containers to access the host network, that is, do not create a network namespace." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35313 +#: guix-git/doc/guix.texi:35757 #, no-wrap msgid "--skip-checks" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35315 +#: guix-git/doc/guix.texi:35759 msgid "Skip pre-installation safety checks." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35322 +#: guix-git/doc/guix.texi:35766 msgid "By default, @command{guix system init} and @command{guix system reconfigure} perform safety checks: they make sure the file systems that appear in the @code{operating-system} declaration actually exist (@pxref{File Systems}), and that any Linux kernel modules that may be needed at boot time are listed in @code{initrd-modules} (@pxref{Initial RAM Disk}). Passing this option skips these tests altogether." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35325 +#: guix-git/doc/guix.texi:35769 msgid "Instruct @command{guix system reconfigure} to allow system downgrades." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35333 +#: guix-git/doc/guix.texi:35777 msgid "By default, @command{reconfigure} prevents you from downgrading your system. It achieves that by comparing the provenance info of your system (shown by @command{guix system describe}) with that of your @command{guix} command (shown by @command{guix describe}). If the commits for @command{guix} are not descendants of those used for your system, @command{guix system reconfigure} errors out. Passing @option{--allow-downgrades} allows you to bypass these checks." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35339 +#: guix-git/doc/guix.texi:35783 #, no-wrap msgid "on-error" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35340 +#: guix-git/doc/guix.texi:35784 #, no-wrap msgid "on-error strategy" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35341 +#: guix-git/doc/guix.texi:35785 #, no-wrap msgid "error strategy" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35342 +#: guix-git/doc/guix.texi:35786 #, no-wrap msgid "--on-error=@var{strategy}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35345 +#: guix-git/doc/guix.texi:35789 msgid "Apply @var{strategy} when an error occurs when reading @var{file}. @var{strategy} may be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35347 +#: guix-git/doc/guix.texi:35791 #, no-wrap msgid "nothing-special" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35349 +#: guix-git/doc/guix.texi:35793 msgid "Report the error concisely and exit. This is the default strategy." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35350 +#: guix-git/doc/guix.texi:35794 #, no-wrap msgid "backtrace" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35352 +#: guix-git/doc/guix.texi:35796 msgid "Likewise, but also display a backtrace." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35353 +#: guix-git/doc/guix.texi:35797 #, no-wrap msgid "debug" -msgstr "" +msgstr "ladenie" #. type: table -#: guix-git/doc/guix.texi:35359 +#: guix-git/doc/guix.texi:35803 msgid "Report the error and enter Guile's debugger. From there, you can run commands such as @code{,bt} to get a backtrace, @code{,locals} to display local variable values, and more generally inspect the state of the program. @xref{Debug Commands,,, guile, GNU Guile Reference Manual}, for a list of available debugging commands." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35366 +#: guix-git/doc/guix.texi:35810 msgid "Once you have built, configured, re-configured, and re-re-configured your Guix installation, you may find it useful to list the operating system generations available on disk---and that you can choose from the bootloader boot menu:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35369 guix-git/doc/guix.texi:37673 +#: guix-git/doc/guix.texi:35813 guix-git/doc/guix.texi:38152 #, no-wrap msgid "describe" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35372 -msgid "Describe the current system generation: its file name, the kernel and bootloader used, etc., as well as provenance information when available." +#: guix-git/doc/guix.texi:35816 +msgid "Describe the running system generation: its file name, the kernel and bootloader used, etc., as well as provenance information when available." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:35823 +msgid "The @emph{running} system generation---referred to by @file{/run/current-system}---is not necessarily the @emph{current} system generation---referred to by @file{/var/guix/profiles/system}: it differs when, for instance, you chose from the bootloader menu to boot an older generation." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:35827 +msgid "It can also differ from the @emph{booted} system generation---referred to by @file{/run/booted-system}---for instance because you reconfigured the system in the meantime." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35373 guix-git/doc/guix.texi:37677 +#: guix-git/doc/guix.texi:35829 guix-git/doc/guix.texi:38156 #, no-wrap msgid "list-generations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35378 +#: guix-git/doc/guix.texi:35834 msgid "List a summary of each generation of the operating system available on disk, in a human-readable way. This is similar to the @option{--list-generations} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35383 guix-git/doc/guix.texi:37687 +#: guix-git/doc/guix.texi:35839 guix-git/doc/guix.texi:38166 msgid "Optionally, one can specify a pattern, with the same syntax that is used in @command{guix package --list-generations}, to restrict the list of generations displayed. For instance, the following command displays generations that are up to 10 days old:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35386 +#: guix-git/doc/guix.texi:35842 #, no-wrap msgid "$ guix system list-generations 10d\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35393 +#: guix-git/doc/guix.texi:35849 msgid "The @command{guix system} command has even more to offer! The following sub-commands allow you to visualize how your system services relate to each other:" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35395 +#: guix-git/doc/guix.texi:35851 msgid "system-extension-graph" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35397 +#: guix-git/doc/guix.texi:35853 #, no-wrap msgid "extension-graph" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35404 +#: guix-git/doc/guix.texi:35860 msgid "Emit to standard output the @dfn{service extension graph} of the operating system defined in @var{file} (@pxref{Service Composition}, for more information on service extensions). By default the output is in Dot/Graphviz format, but you can choose a different format with @option{--graph-backend}, as with @command{guix graph} (@pxref{Invoking guix graph, @option{--backend}}):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35406 +#: guix-git/doc/guix.texi:35862 msgid "The command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35409 +#: guix-git/doc/guix.texi:35865 #, no-wrap msgid "$ guix system extension-graph @var{file} | xdot -\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35412 +#: guix-git/doc/guix.texi:35868 msgid "shows the extension relations among services." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35414 +#: guix-git/doc/guix.texi:35870 msgid "system-shepherd-graph" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35414 +#: guix-git/doc/guix.texi:35870 #, no-wrap msgid "shepherd-graph" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35419 +#: guix-git/doc/guix.texi:35875 msgid "Emit to standard output the @dfn{dependency graph} of shepherd services of the operating system defined in @var{file}. @xref{Shepherd Services}, for more information and for an example graph." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35422 +#: guix-git/doc/guix.texi:35878 msgid "Again, the default output format is Dot/Graphviz, but you can pass @option{--graph-backend} to select a different one." msgstr "" #. type: section -#: guix-git/doc/guix.texi:35426 +#: guix-git/doc/guix.texi:35882 #, no-wrap msgid "Invoking @code{guix deploy}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35434 +#: guix-git/doc/guix.texi:35890 msgid "We've already seen @code{operating-system} declarations used to manage a machine's configuration locally. Suppose you need to configure multiple machines, though---perhaps you're managing a service on the web that's comprised of several servers. @command{guix deploy} enables you to use those same @code{operating-system} declarations to manage multiple remote hosts at once as a logical ``deployment''." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35439 guix-git/doc/guix.texi:36900 +#: guix-git/doc/guix.texi:35895 guix-git/doc/guix.texi:37390 msgid "The functionality described in this section is still under development and is subject to change. Get in touch with us on @email{guix-devel@@gnu.org}!" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35443 +#: guix-git/doc/guix.texi:35899 #, no-wrap msgid "guix deploy @var{file}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35447 +#: guix-git/doc/guix.texi:35903 msgid "Such an invocation will deploy the machines that the code within @var{file} evaluates to. As an example, @var{file} might contain a definition like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35454 +#: guix-git/doc/guix.texi:35910 #, no-wrap msgid "" ";; This is a Guix deployment of a \"bare bones\" setup, with\n" @@ -62977,7 +63779,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35457 +#: guix-git/doc/guix.texi:35913 #, no-wrap msgid "" "(use-service-modules networking ssh)\n" @@ -62986,7 +63788,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35478 +#: guix-git/doc/guix.texi:35934 #, no-wrap msgid "" "(define %system\n" @@ -63013,7 +63815,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35488 +#: guix-git/doc/guix.texi:35944 #, no-wrap msgid "" "(list (machine\n" @@ -63028,33 +63830,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35501 +#: guix-git/doc/guix.texi:35957 msgid "The file should evaluate to a list of @var{machine} objects. This example, upon being deployed, will create a new generation on the remote system realizing the @code{operating-system} declaration @code{%system}. @code{environment} and @code{configuration} specify how the machine should be provisioned---that is, how the computing resources should be created and managed. The above example does not create any resources, as a @code{'managed-host} is a machine that is already running the Guix system and available over the network. This is a particularly simple case; a more complex deployment may involve, for example, starting virtual machines through a Virtual Private Server (VPS) provider. In such a case, a different @var{environment} type would be used." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35506 +#: guix-git/doc/guix.texi:35962 msgid "Do note that you first need to generate a key pair on the coordinator machine to allow the daemon to export signed archives of files from the store (@pxref{Invoking guix archive}), though this step is automatic on Guix System:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35514 +#: guix-git/doc/guix.texi:35970 msgid "Each target machine must authorize the key of the master machine so that it accepts store items it receives from the coordinator:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35517 +#: guix-git/doc/guix.texi:35973 #, no-wrap msgid "# guix archive --authorize < coordinator-public-key.txt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35528 +#: guix-git/doc/guix.texi:35984 msgid "@code{user}, in this example, specifies the name of the user account to log in as to perform the deployment. Its default value is @code{root}, but root login over SSH may be forbidden in some cases. To work around this, @command{guix deploy} can log in as an unprivileged user and employ @code{sudo} to escalate privileges. This will only work if @code{sudo} is currently installed on the remote and can be invoked non-interactively as @code{user}. That is, the line in @code{sudoers} granting @code{user} the ability to use @code{sudo} must contain the @code{NOPASSWD} tag. This can be accomplished with the following operating system configuration snippet:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35532 +#: guix-git/doc/guix.texi:35988 #, no-wrap msgid "" "(use-modules ...\n" @@ -63063,7 +63865,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35534 +#: guix-git/doc/guix.texi:35990 #, no-wrap msgid "" "(define %user \"username\")\n" @@ -63071,7 +63873,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35542 +#: guix-git/doc/guix.texi:35998 #, no-wrap msgid "" "(operating-system\n" @@ -63085,235 +63887,283 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35547 +#: guix-git/doc/guix.texi:36003 msgid "For more information regarding the format of the @file{sudoers} file, consult @command{man sudoers}." msgstr "" +#. type: Plain text +#: guix-git/doc/guix.texi:36008 +msgid "Once you've deployed a system on a set of machines, you may find it useful to run a command on all of them. The @option{--execute} or @option{-x} option lets you do that; the example below runs @command{uname -a} on all the machines listed in the deployment file:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:36011 +#, no-wrap +msgid "guix deploy @var{file} -x -- uname -a\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36015 +msgid "One thing you may often need to do after deployment is restart specific services on all the machines, which you can do like so:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:36018 +#, no-wrap +msgid "guix deploy @var{file} -x -- herd restart @var{service}\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36022 +msgid "The @command{guix deploy -x} command returns zero if and only if the command succeeded on all the machines." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36027 +msgid "Below are the data types you need to know about when writing a deployment file." +msgstr "" + #. type: deftp -#: guix-git/doc/guix.texi:35548 +#: guix-git/doc/guix.texi:36028 #, no-wrap msgid "{Data Type} machine" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35551 +#: guix-git/doc/guix.texi:36031 msgid "This is the data type representing a single machine in a heterogeneous Guix deployment." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35555 +#: guix-git/doc/guix.texi:36035 msgid "The object of the operating system configuration to deploy." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35556 +#: guix-git/doc/guix.texi:36036 #, no-wrap msgid "environment" -msgstr "" +msgstr "environment" #. type: table -#: guix-git/doc/guix.texi:35558 +#: guix-git/doc/guix.texi:36038 msgid "An @code{environment-type} describing how the machine should be provisioned." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35559 +#: guix-git/doc/guix.texi:36039 #, no-wrap msgid "@code{configuration} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35564 +#: guix-git/doc/guix.texi:36044 msgid "An object describing the configuration for the machine's @code{environment}. If the @code{environment} has a default configuration, @code{#f} may be used. If @code{#f} is used for an environment with no default configuration, however, an error will be thrown." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35567 +#: guix-git/doc/guix.texi:36047 #, no-wrap msgid "{Data Type} machine-ssh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35570 +#: guix-git/doc/guix.texi:36050 msgid "This is the data type representing the SSH client parameters for a machine with an @code{environment} of @code{managed-host-environment-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35573 +#: guix-git/doc/guix.texi:36053 #, no-wrap msgid "@code{build-locally?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35575 +#: guix-git/doc/guix.texi:36055 msgid "If false, system derivations will be built on the machine being deployed to." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35575 +#: guix-git/doc/guix.texi:36055 #, no-wrap msgid "system" -msgstr "" +msgstr "system" #. type: table -#: guix-git/doc/guix.texi:35578 +#: guix-git/doc/guix.texi:36058 msgid "The system type describing the architecture of the machine being deployed to---e.g., @code{\"x86_64-linux\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35578 +#: guix-git/doc/guix.texi:36058 #, no-wrap msgid "@code{authorize?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35581 +#: guix-git/doc/guix.texi:36061 msgid "If true, the coordinator's signing key will be added to the remote's ACL keyring." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35583 +#: guix-git/doc/guix.texi:36063 #, no-wrap msgid "@code{identity} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35586 +#: guix-git/doc/guix.texi:36066 msgid "If specified, the path to the SSH private key to use to authenticate with the remote host." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35587 +#: guix-git/doc/guix.texi:36067 #, no-wrap msgid "@code{host-key} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35589 +#: guix-git/doc/guix.texi:36069 msgid "This should be the SSH host key of the machine, which looks like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35592 +#: guix-git/doc/guix.texi:36072 #, no-wrap msgid "ssh-ed25519 AAAAC3Nz@dots{} root@@example.org\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35597 +#: guix-git/doc/guix.texi:36077 msgid "When @code{host-key} is @code{#f}, the server is authenticated against the @file{~/.ssh/known_hosts} file, just like the OpenSSH @command{ssh} client does." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35598 +#: guix-git/doc/guix.texi:36078 #, no-wrap msgid "@code{allow-downgrades?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35600 +#: guix-git/doc/guix.texi:36080 msgid "Whether to allow potential downgrades." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35608 +#: guix-git/doc/guix.texi:36088 msgid "Like @command{guix system reconfigure}, @command{guix deploy} compares the channel commits currently deployed on the remote host (as returned by @command{guix system describe}) to those currently in use (as returned by @command{guix describe}) to determine whether commits currently in use are descendants of those deployed. When this is not the case and @code{allow-downgrades?} is false, it raises an error. This ensures you do not accidentally downgrade remote machines." msgstr "" +#. type: item +#: guix-git/doc/guix.texi:36089 +#, no-wrap +msgid "@code{safety-checks?} (default: @code{#t})" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:36095 +msgid "Whether to perform ``safety checks'' before deployment. This includes verifying that devices and file systems referred to in the operating system configuration actually exist on the target machine, and making sure that Linux modules required to access storage devices at boot time are listed in the @code{initrd-modules} field of the operating system." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:36098 +msgid "These safety checks ensure that you do not inadvertently deploy a system that would fail to boot. Be careful before turning them off!" +msgstr "" + #. type: deftp -#: guix-git/doc/guix.texi:35611 +#: guix-git/doc/guix.texi:36101 #, no-wrap msgid "{Data Type} digital-ocean-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35614 +#: guix-git/doc/guix.texi:36104 msgid "This is the data type describing the Droplet that should be created for a machine with an @code{environment} of @code{digital-ocean-environment-type}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35616 +#: guix-git/doc/guix.texi:36106 #, no-wrap msgid "ssh-key" -msgstr "" +msgstr "ssh-key" #. type: table -#: guix-git/doc/guix.texi:35619 +#: guix-git/doc/guix.texi:36109 msgid "The path to the SSH private key to use to authenticate with the remote host. In the future, this field may not exist." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35619 +#: guix-git/doc/guix.texi:36109 #, no-wrap msgid "tags" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35622 +#: guix-git/doc/guix.texi:36112 msgid "A list of string ``tags'' that uniquely identify the machine. Must be given such that no two machines in the deployment have the same set of tags." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35622 +#: guix-git/doc/guix.texi:36112 #, no-wrap msgid "region" -msgstr "" +msgstr "region" #. type: table -#: guix-git/doc/guix.texi:35624 +#: guix-git/doc/guix.texi:36114 msgid "A Digital Ocean region slug, such as @code{\"nyc3\"}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35626 +#: guix-git/doc/guix.texi:36116 msgid "A Digital Ocean size slug, such as @code{\"s-1vcpu-1gb\"}" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35626 +#: guix-git/doc/guix.texi:36116 #, no-wrap msgid "enable-ipv6?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35628 +#: guix-git/doc/guix.texi:36118 msgid "Whether or not the droplet should be created with IPv6 networking." msgstr "" #. type: section -#: guix-git/doc/guix.texi:35632 +#: guix-git/doc/guix.texi:36122 #, no-wrap msgid "Running Guix in a Virtual Machine" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35640 +#: guix-git/doc/guix.texi:36130 msgid "To run Guix in a virtual machine (VM), one can use the pre-built Guix VM image distributed at @url{@value{BASE-URL}/guix-system-vm-image-@value{VERSION}.x86_64-linux.qcow2}. This image is a compressed image in QCOW format. You can pass it to an emulator such as @uref{https://qemu.org/, QEMU} (see below for details)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35647 +#: guix-git/doc/guix.texi:36137 msgid "This image boots the Xfce graphical environment and it contains some commonly used tools. You can install more software in the image by running @command{guix package} in a terminal (@pxref{Invoking guix package}). You can also reconfigure the system based on its initial configuration file available as @file{/run/current-system/configuration.scm} (@pxref{Using the Configuration System})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35650 +#: guix-git/doc/guix.texi:36140 msgid "Instead of using this pre-built image, one can also build their own image using @command{guix system image} (@pxref{Invoking guix system})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35651 +#: guix-git/doc/guix.texi:36141 #, no-wrap msgid "QEMU" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35658 +#: guix-git/doc/guix.texi:36148 msgid "If you built your own image, you must copy it out of the store (@pxref{The Store}) and give yourself permission to write to the copy before you can use it. When invoking QEMU, you must choose a system emulator that is suitable for your hardware platform. Here is a minimal QEMU invocation that will boot the result of @command{guix system image -t qcow2} on x86_64 hardware:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35665 +#: guix-git/doc/guix.texi:36155 #, no-wrap msgid "" "$ qemu-system-x86_64 \\\n" @@ -63324,137 +64174,137 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35668 +#: guix-git/doc/guix.texi:36158 msgid "Here is what each of these options means:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35670 +#: guix-git/doc/guix.texi:36160 #, no-wrap msgid "qemu-system-x86_64" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35673 +#: guix-git/doc/guix.texi:36163 msgid "This specifies the hardware platform to emulate. This should match the host." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35674 +#: guix-git/doc/guix.texi:36164 #, no-wrap msgid "-nic user,model=virtio-net-pci" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35682 +#: guix-git/doc/guix.texi:36172 msgid "Enable the unprivileged user-mode network stack. The guest OS can access the host but not vice versa. This is the simplest way to get the guest OS online. @code{model} specifies which network device to emulate: @code{virtio-net-pci} is a special device made for virtualized operating systems and recommended for most uses. Assuming your hardware platform is x86_64, you can get a list of available NIC models by running @command{qemu-system-x86_64 -nic model=help}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35683 +#: guix-git/doc/guix.texi:36173 #, no-wrap msgid "-enable-kvm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35687 +#: guix-git/doc/guix.texi:36177 msgid "If your system has hardware virtualization extensions, enabling the virtual machine support (KVM) of the Linux kernel will make things run faster." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35689 +#: guix-git/doc/guix.texi:36179 #, no-wrap msgid "-m 1024" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35692 +#: guix-git/doc/guix.texi:36182 msgid "RAM available to the guest OS, in mebibytes. Defaults to 128@tie{}MiB, which may be insufficient for some operations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35693 +#: guix-git/doc/guix.texi:36183 #, no-wrap msgid "-device virtio-blk,drive=myhd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35698 +#: guix-git/doc/guix.texi:36188 msgid "Create a @code{virtio-blk} drive called ``myhd''. @code{virtio-blk} is a ``paravirtualization'' mechanism for block devices that allows QEMU to achieve better performance than if it were emulating a complete disk drive. See the QEMU and KVM documentation for more info." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35699 +#: guix-git/doc/guix.texi:36189 #, no-wrap msgid "-drive if=none,file=/tmp/qemu-image,id=myhd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35702 +#: guix-git/doc/guix.texi:36192 msgid "Use our QCOW image, the @file{/tmp/qemu-image} file, as the backing store of the ``myhd'' drive." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35712 +#: guix-git/doc/guix.texi:36202 msgid "The default @command{run-vm.sh} script that is returned by an invocation of @command{guix system vm} does not add a @command{-nic user} flag by default. To get network access from within the vm add the @code{(dhcp-client-service)} to your system definition and start the VM using @command{$(guix system vm config.scm) -nic user}. An important caveat of using @command{-nic user} for networking is that @command{ping} will not work, because it uses the ICMP protocol. You'll have to use a different command to check for network connectivity, for example @command{guix download}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:35713 +#: guix-git/doc/guix.texi:36203 #, no-wrap msgid "Connecting Through SSH" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35721 +#: guix-git/doc/guix.texi:36211 msgid "To enable SSH inside a VM you need to add an SSH server like @code{openssh-service-type} to your VM (@pxref{Networking Services, @code{openssh-service-type}}). In addition you need to forward the SSH port, 22 by default, to the host. You can do this with" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35724 +#: guix-git/doc/guix.texi:36214 #, no-wrap msgid "$(guix system vm config.scm) -nic user,model=virtio-net-pci,hostfwd=tcp::10022-:22\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35727 +#: guix-git/doc/guix.texi:36217 msgid "To connect to the VM you can run" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35730 +#: guix-git/doc/guix.texi:36220 #, no-wrap msgid "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 10022 localhost\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35737 +#: guix-git/doc/guix.texi:36227 msgid "The @command{-p} tells @command{ssh} the port you want to connect to. @command{-o UserKnownHostsFile=/dev/null} prevents @command{ssh} from complaining every time you modify your @command{config.scm} file and the @command{-o StrictHostKeyChecking=no} prevents you from having to allow a connection to an unknown host every time you connect." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35743 +#: guix-git/doc/guix.texi:36233 msgid "If you find the above @samp{hostfwd} example not to be working (e.g., your SSH client hangs attempting to connect to the mapped port of your VM), make sure that your Guix System VM has networking support, such as by using the @code{dhcp-client-service-type} service type." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:35745 +#: guix-git/doc/guix.texi:36235 #, no-wrap msgid "Using @command{virt-viewer} with Spice" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35751 +#: guix-git/doc/guix.texi:36241 msgid "As an alternative to the default @command{qemu} graphical client you can use the @command{remote-viewer} from the @command{virt-viewer} package. To connect pass the @command{-spice port=5930,disable-ticketing} flag to @command{qemu}. See previous section for further information on how to do this." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35754 +#: guix-git/doc/guix.texi:36244 msgid "Spice also allows you to do some nice stuff like share your clipboard with your VM@. To enable that you'll also have to pass the following flags to @command{qemu}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35760 +#: guix-git/doc/guix.texi:36250 #, no-wrap msgid "" "-device virtio-serial-pci,id=virtio-serial0,max_ports=16,bus=pci.0,addr=0x5\n" @@ -63464,81 +64314,81 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35764 +#: guix-git/doc/guix.texi:36254 msgid "You'll also need to add the @code{(spice-vdagent-service)} to your system definition (@pxref{Miscellaneous Services, Spice service})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35771 +#: guix-git/doc/guix.texi:36261 msgid "The previous sections show the available services and how one can combine them in an @code{operating-system} declaration. But how do we define them in the first place? And what is a service anyway?" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35784 +#: guix-git/doc/guix.texi:36274 #, no-wrap msgid "daemons" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35797 +#: guix-git/doc/guix.texi:36287 msgid "Here we define a @dfn{service} as, broadly, something that extends the functionality of the operating system. Often a service is a process---a @dfn{daemon}---started when the system boots: a secure shell server, a Web server, the Guix build daemon, etc. Sometimes a service is a daemon whose execution can be triggered by another daemon---e.g., an FTP server started by @command{inetd} or a D-Bus service activated by @command{dbus-daemon}. Occasionally, a service does not map to a daemon. For instance, the ``account'' service collects user accounts and makes sure they exist when the system runs; the ``udev'' service collects device management rules and makes them available to the eudev daemon; the @file{/etc} service populates the @file{/etc} directory of the system." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35798 +#: guix-git/doc/guix.texi:36288 #, no-wrap msgid "service extensions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35810 +#: guix-git/doc/guix.texi:36300 msgid "Guix system services are connected by @dfn{extensions}. For instance, the secure shell service @emph{extends} the Shepherd---the initialization system, running as PID@tie{}1---by giving it the command lines to start and stop the secure shell daemon (@pxref{Networking Services, @code{openssh-service-type}}); the UPower service extends the D-Bus service by passing it its @file{.service} specification, and extends the udev service by passing it device management rules (@pxref{Desktop Services, @code{upower-service}}); the Guix daemon service extends the Shepherd by passing it the command lines to start and stop the daemon, and extends the account service by passing it a list of required build user accounts (@pxref{Base Services})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35814 +#: guix-git/doc/guix.texi:36304 msgid "All in all, services and their ``extends'' relations form a directed acyclic graph (DAG). If we represent services as boxes and extensions as arrows, a typical system might provide something like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35816 +#: guix-git/doc/guix.texi:36306 msgid "@image{images/service-graph,,5in,Typical service extension graph.}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35817 +#: guix-git/doc/guix.texi:36307 #, no-wrap msgid "system service" -msgstr "" +msgstr "systémová služba" #. type: Plain text -#: guix-git/doc/guix.texi:35825 +#: guix-git/doc/guix.texi:36315 msgid "At the bottom, we see the @dfn{system service}, which produces the directory containing everything to run and boot the system, as returned by the @command{guix system build} command. @xref{Service Reference}, to learn about the other service types shown here. @xref{system-extension-graph, the @command{guix system extension-graph} command}, for information on how to generate this representation for a particular operating system definition." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35826 +#: guix-git/doc/guix.texi:36316 #, no-wrap msgid "service types" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35832 +#: guix-git/doc/guix.texi:36322 msgid "Technically, developers can define @dfn{service types} to express these relations. There can be any number of services of a given type on the system---for instance, a system running two instances of the GNU secure shell server (lsh) has two instances of @code{lsh-service-type}, with different parameters." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35835 +#: guix-git/doc/guix.texi:36325 msgid "The following section describes the programming interface for service types and services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35842 +#: guix-git/doc/guix.texi:36332 msgid "A @dfn{service type} is a node in the DAG described above. Let us start with a simple example, the service type for the Guix build daemon (@pxref{Invoking guix-daemon}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35852 +#: guix-git/doc/guix.texi:36342 #, no-wrap msgid "" "(define guix-service-type\n" @@ -63552,75 +64402,75 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35856 +#: guix-git/doc/guix.texi:36346 msgid "It defines three things:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35860 +#: guix-git/doc/guix.texi:36350 msgid "A name, whose sole purpose is to make inspection and debugging easier." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35865 +#: guix-git/doc/guix.texi:36355 msgid "A list of @dfn{service extensions}, where each extension designates the target service type and a procedure that, given the parameters of the service, returns a list of objects to extend the service of that type." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35868 +#: guix-git/doc/guix.texi:36358 msgid "Every service type has at least one service extension. The only exception is the @dfn{boot service type}, which is the ultimate service." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35871 +#: guix-git/doc/guix.texi:36361 msgid "Optionally, a default value for instances of this type." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35874 +#: guix-git/doc/guix.texi:36364 msgid "In this example, @code{guix-service-type} extends three services:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35876 +#: guix-git/doc/guix.texi:36366 #, no-wrap msgid "shepherd-root-service-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35881 +#: guix-git/doc/guix.texi:36371 msgid "The @code{guix-shepherd-service} procedure defines how the Shepherd service is extended. Namely, it returns a @code{} object that defines how @command{guix-daemon} is started and stopped (@pxref{Shepherd Services})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35882 +#: guix-git/doc/guix.texi:36372 #, no-wrap msgid "account-service-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35887 +#: guix-git/doc/guix.texi:36377 msgid "This extension for this service is computed by @code{guix-accounts}, which returns a list of @code{user-group} and @code{user-account} objects representing the build user accounts (@pxref{Invoking guix-daemon})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35888 +#: guix-git/doc/guix.texi:36378 #, no-wrap msgid "activation-service-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35892 +#: guix-git/doc/guix.texi:36382 msgid "Here @code{guix-activation} is a procedure that returns a gexp, which is a code snippet to run at ``activation time''---e.g., when the service is booted." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35895 +#: guix-git/doc/guix.texi:36385 msgid "A service of this type is instantiated like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35901 +#: guix-git/doc/guix.texi:36391 #, no-wrap msgid "" "(service guix-service-type\n" @@ -63630,28 +64480,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35909 +#: guix-git/doc/guix.texi:36399 msgid "The second argument to the @code{service} form is a value representing the parameters of this specific service instance. @xref{guix-configuration-type, @code{guix-configuration}}, for information about the @code{guix-configuration} data type. When the value is omitted, the default value specified by @code{guix-service-type} is used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35912 +#: guix-git/doc/guix.texi:36402 #, no-wrap msgid "(service guix-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35916 +#: guix-git/doc/guix.texi:36406 msgid "@code{guix-service-type} is quite simple because it extends other services but is not extensible itself." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35920 +#: guix-git/doc/guix.texi:36410 msgid "The service type for an @emph{extensible} service looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35927 +#: guix-git/doc/guix.texi:36417 #, no-wrap msgid "" "(define udev-service-type\n" @@ -63663,7 +64513,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35935 +#: guix-git/doc/guix.texi:36425 #, no-wrap msgid "" " (compose concatenate) ;concatenate the list of rules\n" @@ -63676,96 +64526,96 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35941 +#: guix-git/doc/guix.texi:36431 msgid "This is the service type for the @uref{https://wiki.gentoo.org/wiki/Project:Eudev, eudev device management daemon}. Compared to the previous example, in addition to an extension of @code{shepherd-root-service-type}, we see two new fields:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35943 +#: guix-git/doc/guix.texi:36433 #, no-wrap msgid "compose" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35946 +#: guix-git/doc/guix.texi:36436 msgid "This is the procedure to @dfn{compose} the list of extensions to services of this type." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35949 +#: guix-git/doc/guix.texi:36439 msgid "Services can extend the udev service by passing it lists of rules; we compose those extensions simply by concatenating them." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35950 +#: guix-git/doc/guix.texi:36440 #, no-wrap msgid "extend" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35953 +#: guix-git/doc/guix.texi:36443 msgid "This procedure defines how the value of the service is @dfn{extended} with the composition of the extensions." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35958 +#: guix-git/doc/guix.texi:36448 msgid "Udev extensions are composed into a list of rules, but the udev service value is itself a @code{} record. So here, we extend that record by appending the list of rules it contains to the list of contributed rules." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35964 +#: guix-git/doc/guix.texi:36454 msgid "This is a string giving an overview of the service type. The string can contain Texinfo markup (@pxref{Overview,,, texinfo, GNU Texinfo}). The @command{guix system search} command searches these strings and displays them (@pxref{Invoking guix system})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35969 +#: guix-git/doc/guix.texi:36459 msgid "There can be only one instance of an extensible service type such as @code{udev-service-type}. If there were more, the @code{service-extension} specifications would be ambiguous." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35972 +#: guix-git/doc/guix.texi:36462 msgid "Still here? The next section provides a reference of the programming interface for services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35980 +#: guix-git/doc/guix.texi:36470 msgid "We have seen an overview of service types (@pxref{Service Types and Services}). This section provides a reference on how to manipulate services and service types. This interface is provided by the @code{(gnu services)} module." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35981 +#: guix-git/doc/guix.texi:36471 #, no-wrap msgid "{Scheme Procedure} service @var{type} [@var{value}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35985 +#: guix-git/doc/guix.texi:36475 msgid "Return a new service of @var{type}, a @code{} object (see below). @var{value} can be any object; it represents the parameters of this particular service instance." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35989 +#: guix-git/doc/guix.texi:36479 msgid "When @var{value} is omitted, the default value specified by @var{type} is used; if @var{type} does not specify a default value, an error is raised." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35991 +#: guix-git/doc/guix.texi:36481 msgid "For instance, this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35994 +#: guix-git/doc/guix.texi:36484 #, no-wrap msgid "(service openssh-service-type)\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35998 +#: guix-git/doc/guix.texi:36488 msgid "is equivalent to this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36002 +#: guix-git/doc/guix.texi:36492 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -63773,50 +64623,50 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36006 +#: guix-git/doc/guix.texi:36496 msgid "In both cases the result is an instance of @code{openssh-service-type} with the default configuration." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36008 +#: guix-git/doc/guix.texi:36498 #, no-wrap msgid "{Scheme Procedure} service? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36010 +#: guix-git/doc/guix.texi:36500 msgid "Return true if @var{obj} is a service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36012 +#: guix-git/doc/guix.texi:36502 #, no-wrap msgid "{Scheme Procedure} service-kind @var{service}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36014 +#: guix-git/doc/guix.texi:36504 msgid "Return the type of @var{service}---i.e., a @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36016 +#: guix-git/doc/guix.texi:36506 #, no-wrap msgid "{Scheme Procedure} service-value @var{service}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36019 +#: guix-git/doc/guix.texi:36509 msgid "Return the value associated with @var{service}. It represents its parameters." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36022 +#: guix-git/doc/guix.texi:36512 msgid "Here is an example of how a service is created and manipulated:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36031 +#: guix-git/doc/guix.texi:36521 #, no-wrap msgid "" "(define s\n" @@ -63830,7 +64680,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36034 +#: guix-git/doc/guix.texi:36524 #, no-wrap msgid "" "(service? s)\n" @@ -63839,7 +64689,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36037 +#: guix-git/doc/guix.texi:36527 #, no-wrap msgid "" "(eq? (service-kind s) nginx-service-type)\n" @@ -63847,210 +64697,210 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36047 +#: guix-git/doc/guix.texi:36537 msgid "The @code{modify-services} form provides a handy way to change the parameters of some of the services of a list such as @code{%base-services} (@pxref{Base Services, @code{%base-services}}). It evaluates to a list of services. Of course, you could always use standard list combinators such as @code{map} and @code{fold} to do that (@pxref{SRFI-1, List Library,, guile, GNU Guile Reference Manual}); @code{modify-services} simply provides a more concise form for this common pattern." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36048 +#: guix-git/doc/guix.texi:36538 #, no-wrap msgid "{Scheme Syntax} modify-services @var{services} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36050 +#: guix-git/doc/guix.texi:36540 msgid "(@var{type} @var{variable} => @var{body}) @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36053 +#: guix-git/doc/guix.texi:36543 msgid "Modify the services listed in @var{services} according to the given clauses. Each clause has the form:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36056 +#: guix-git/doc/guix.texi:36546 #, no-wrap msgid "(@var{type} @var{variable} => @var{body})\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36063 +#: guix-git/doc/guix.texi:36553 msgid "where @var{type} is a service type---e.g., @code{guix-service-type}---and @var{variable} is an identifier that is bound within the @var{body} to the service parameters---e.g., a @code{guix-configuration} instance---of the original service of that @var{type}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36070 +#: guix-git/doc/guix.texi:36560 msgid "The @var{body} should evaluate to the new service parameters, which will be used to configure the new service. This new service will replace the original in the resulting list. Because a service's service parameters are created using @code{define-record-type*}, you can write a succinct @var{body} that evaluates to the new service parameters by using the @code{inherit} feature that @code{define-record-type*} provides." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36072 +#: guix-git/doc/guix.texi:36562 msgid "Clauses can also have the following form:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36075 +#: guix-git/doc/guix.texi:36565 #, no-wrap msgid "(delete @var{type})\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36079 +#: guix-git/doc/guix.texi:36569 msgid "Such a clause removes all services of the given @var{type} from @var{services}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36081 +#: guix-git/doc/guix.texi:36571 msgid "@xref{Using the Configuration System}, for example usage." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36088 +#: guix-git/doc/guix.texi:36578 msgid "Next comes the programming interface for service types. This is something you want to know when writing new service definitions, but not necessarily when simply looking for ways to customize your @code{operating-system} declaration." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36089 +#: guix-git/doc/guix.texi:36579 #, no-wrap msgid "{Data Type} service-type" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36090 +#: guix-git/doc/guix.texi:36580 #, no-wrap msgid "service type" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36093 +#: guix-git/doc/guix.texi:36583 msgid "This is the representation of a @dfn{service type} (@pxref{Service Types and Services})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36097 +#: guix-git/doc/guix.texi:36587 msgid "This is a symbol, used only to simplify inspection and debugging." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:36098 +#: guix-git/doc/guix.texi:36588 #, no-wrap msgid "extensions" -msgstr "" +msgstr "extensions" #. type: table -#: guix-git/doc/guix.texi:36100 +#: guix-git/doc/guix.texi:36590 msgid "A non-empty list of @code{} objects (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36101 +#: guix-git/doc/guix.texi:36591 #, no-wrap msgid "@code{compose} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36105 +#: guix-git/doc/guix.texi:36595 msgid "If this is @code{#f}, then the service type denotes services that cannot be extended---i.e., services that do not receive ``values'' from other services." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36109 +#: guix-git/doc/guix.texi:36599 msgid "Otherwise, it must be a one-argument procedure. The procedure is called by @code{fold-services} and is passed a list of values collected from extensions. It may return any single value." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36110 +#: guix-git/doc/guix.texi:36600 #, no-wrap msgid "@code{extend} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36112 +#: guix-git/doc/guix.texi:36602 msgid "If this is @code{#f}, services of this type cannot be extended." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36118 +#: guix-git/doc/guix.texi:36608 msgid "Otherwise, it must be a two-argument procedure: @code{fold-services} calls it, passing it the initial value of the service as the first argument and the result of applying @code{compose} to the extension values as the second argument. It must return a value that is a valid parameter value for the service instance." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36124 +#: guix-git/doc/guix.texi:36614 msgid "This is a string, possibly using Texinfo markup, describing in a couple of sentences what the service is about. This string allows users to find about the service through @command{guix system search} (@pxref{Invoking guix system})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36125 +#: guix-git/doc/guix.texi:36615 #, no-wrap msgid "@code{default-value} (default: @code{&no-default-value})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36128 +#: guix-git/doc/guix.texi:36618 msgid "The default value associated for instances of this service type. This allows users to use the @code{service} form without its second argument:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36131 +#: guix-git/doc/guix.texi:36621 #, no-wrap msgid "(service @var{type})\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36135 +#: guix-git/doc/guix.texi:36625 msgid "The returned service in this case has the default value specified by @var{type}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36138 +#: guix-git/doc/guix.texi:36628 msgid "@xref{Service Types and Services}, for examples." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36140 +#: guix-git/doc/guix.texi:36630 #, no-wrap msgid "{Scheme Procedure} service-extension @var{target-type} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36146 +#: guix-git/doc/guix.texi:36636 msgid "@var{compute} Return a new extension for services of type @var{target-type}. @var{compute} must be a one-argument procedure: @code{fold-services} calls it, passing it the value associated with the service that provides the extension; it must return a valid value for the target service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36148 +#: guix-git/doc/guix.texi:36638 #, no-wrap msgid "{Scheme Procedure} service-extension? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36150 +#: guix-git/doc/guix.texi:36640 msgid "Return true if @var{obj} is a service extension." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36156 +#: guix-git/doc/guix.texi:36646 msgid "Occasionally, you might want to simply extend an existing service. This involves creating a new service type and specifying the extension of interest, which can be verbose; the @code{simple-service} procedure provides a shorthand for this." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36157 +#: guix-git/doc/guix.texi:36647 #, no-wrap msgid "{Scheme Procedure} simple-service @var{name} @var{target} @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36161 +#: guix-git/doc/guix.texi:36651 msgid "Return a service that extends @var{target} with @var{value}. This works by creating a singleton service type @var{name}, of which the returned service is an instance." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36164 +#: guix-git/doc/guix.texi:36654 msgid "For example, this extends mcron (@pxref{Scheduled Job Execution}) with an additional job:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36168 +#: guix-git/doc/guix.texi:36658 #, no-wrap msgid "" "(simple-service 'my-mcron-job mcron-service-type\n" @@ -64058,185 +64908,185 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36178 +#: guix-git/doc/guix.texi:36668 msgid "At the core of the service abstraction lies the @code{fold-services} procedure, which is responsible for ``compiling'' a list of services down to a single directory that contains everything needed to boot and run the system---the directory shown by the @command{guix system build} command (@pxref{Invoking guix system}). In essence, it propagates service extensions down the service graph, updating each node parameters on the way, until it reaches the root node." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36179 +#: guix-git/doc/guix.texi:36669 #, no-wrap msgid "{Scheme Procedure} fold-services @var{services} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36183 +#: guix-git/doc/guix.texi:36673 msgid "[#:target-type @var{system-service-type}] Fold @var{services} by propagating their extensions down to the root of type @var{target-type}; return the root service adjusted accordingly." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36187 +#: guix-git/doc/guix.texi:36677 msgid "Lastly, the @code{(gnu services)} module also defines several essential service types, some of which are listed below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36188 +#: guix-git/doc/guix.texi:36678 #, no-wrap msgid "{Scheme Variable} system-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36191 +#: guix-git/doc/guix.texi:36681 msgid "This is the root of the service graph. It produces the system directory as returned by the @command{guix system build} command." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36193 +#: guix-git/doc/guix.texi:36683 #, no-wrap msgid "{Scheme Variable} boot-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36196 +#: guix-git/doc/guix.texi:36686 msgid "The type of the ``boot service'', which produces the @dfn{boot script}. The boot script is what the initial RAM disk runs when booting." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36198 +#: guix-git/doc/guix.texi:36688 #, no-wrap msgid "{Scheme Variable} etc-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36202 +#: guix-git/doc/guix.texi:36692 msgid "The type of the @file{/etc} service. This service is used to create files under @file{/etc} and can be extended by passing it name/file tuples such as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36205 +#: guix-git/doc/guix.texi:36695 #, no-wrap msgid "(list `(\"issue\" ,(plain-file \"issue\" \"Welcome!\\n\")))\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36209 +#: guix-git/doc/guix.texi:36699 msgid "In this example, the effect would be to add an @file{/etc/issue} file pointing to the given file." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36211 +#: guix-git/doc/guix.texi:36701 #, no-wrap msgid "{Scheme Variable} setuid-program-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36215 +#: guix-git/doc/guix.texi:36705 msgid "Type for the ``setuid-program service''. This service collects lists of executable file names, passed as gexps, and adds them to the set of setuid-root programs on the system (@pxref{Setuid Programs})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36217 +#: guix-git/doc/guix.texi:36707 #, no-wrap msgid "{Scheme Variable} profile-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36221 +#: guix-git/doc/guix.texi:36711 msgid "Type of the service that populates the @dfn{system profile}---i.e., the programs under @file{/run/current-system/profile}. Other services can extend it by passing it lists of packages to add to the system profile." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:36225 +#: guix-git/doc/guix.texi:36715 msgid "provenance-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36225 +#: guix-git/doc/guix.texi:36715 #, no-wrap msgid "{Scheme Variable} provenance-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36229 +#: guix-git/doc/guix.texi:36719 msgid "This is the type of the service that records @dfn{provenance meta-data} in the system itself. It creates several files under @file{/run/current-system}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36231 +#: guix-git/doc/guix.texi:36721 #, no-wrap msgid "channels.scm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36236 +#: guix-git/doc/guix.texi:36726 msgid "This is a ``channel file'' that can be passed to @command{guix pull -C} or @command{guix time-machine -C}, and which describes the channels used to build the system, if that information was available (@pxref{Channels})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36237 +#: guix-git/doc/guix.texi:36727 #, no-wrap msgid "configuration.scm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36242 +#: guix-git/doc/guix.texi:36732 msgid "This is the file that was passed as the value for this @code{provenance-service-type} service. By default, @command{guix system reconfigure} automatically passes the OS configuration file it received on the command line." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36243 +#: guix-git/doc/guix.texi:36733 #, no-wrap msgid "provenance" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36246 +#: guix-git/doc/guix.texi:36736 msgid "This contains the same information as the two other files but in a format that is more readily processable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36250 +#: guix-git/doc/guix.texi:36740 msgid "In general, these two pieces of information (channels and configuration file) are enough to reproduce the operating system ``from source''." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36251 +#: guix-git/doc/guix.texi:36741 #, no-wrap msgid "Caveats" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36258 +#: guix-git/doc/guix.texi:36748 msgid "This information is necessary to rebuild your operating system, but it is not always sufficient. In particular, @file{configuration.scm} itself is insufficient if it is not self-contained---if it refers to external Guile modules or to extra files. If you want @file{configuration.scm} to be self-contained, we recommend that modules or files it refers to be part of a channel." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36266 +#: guix-git/doc/guix.texi:36756 msgid "Besides, provenance meta-data is ``silent'' in the sense that it does not change the bits contained in your system, @emph{except for the meta-data bits themselves}. Two different OS configurations or sets of channels can lead to the same system, bit-for-bit; when @code{provenance-service-type} is used, these two systems will have different meta-data and thus different store file names, which makes comparison less trivial." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36271 +#: guix-git/doc/guix.texi:36761 msgid "This service is automatically added to your operating system configuration when you use @command{guix system reconfigure}, @command{guix system init}, or @command{guix deploy}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36273 +#: guix-git/doc/guix.texi:36763 #, no-wrap msgid "{Scheme Variable} linux-loadable-module-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36277 +#: guix-git/doc/guix.texi:36767 msgid "Type of the service that collects lists of packages containing kernel-loadable modules, and adds them to the set of kernel-loadable modules." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36280 +#: guix-git/doc/guix.texi:36770 msgid "This service type is intended to be extended by other service types, such as below:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36286 +#: guix-git/doc/guix.texi:36776 #, no-wrap msgid "" "(simple-service 'installing-module\n" @@ -64246,192 +65096,192 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36290 +#: guix-git/doc/guix.texi:36780 msgid "This does not actually load modules at bootup, only adds it to the kernel profile so that it @emph{can} be loaded by other means." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36295 guix-git/doc/guix.texi:37447 +#: guix-git/doc/guix.texi:36785 #, no-wrap msgid "shepherd services" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36296 +#: guix-git/doc/guix.texi:36786 #, no-wrap msgid "PID 1" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36297 +#: guix-git/doc/guix.texi:36787 #, no-wrap msgid "init system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36303 +#: guix-git/doc/guix.texi:36793 msgid "The @code{(gnu services shepherd)} module provides a way to define services managed by the GNU@tie{}Shepherd, which is the initialization system---the first process that is started when the system boots, also known as PID@tie{}1 (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36309 +#: guix-git/doc/guix.texi:36799 msgid "Services in the Shepherd can depend on each other. For instance, the SSH daemon may need to be started after the syslog daemon has been started, which in turn can only happen once all the file systems have been mounted. The simple operating system defined earlier (@pxref{Using the Configuration System}) results in a service graph like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36311 +#: guix-git/doc/guix.texi:36801 msgid "@image{images/shepherd-graph,,5in,Typical shepherd service graph.}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36315 +#: guix-git/doc/guix.texi:36805 msgid "You can actually generate such a graph for any operating system definition using the @command{guix system shepherd-graph} command (@pxref{system-shepherd-graph, @command{guix system shepherd-graph}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36319 +#: guix-git/doc/guix.texi:36809 msgid "The @code{%shepherd-root-service} is a service object representing PID@tie{}1, of type @code{shepherd-root-service-type}; it can be extended by passing it lists of @code{} objects." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36320 +#: guix-git/doc/guix.texi:36810 #, no-wrap msgid "{Data Type} shepherd-service" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36322 +#: guix-git/doc/guix.texi:36812 msgid "The data type representing a service managed by the Shepherd." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:36324 +#: guix-git/doc/guix.texi:36814 #, no-wrap msgid "provision" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36326 +#: guix-git/doc/guix.texi:36816 msgid "This is a list of symbols denoting what the service provides." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36331 +#: guix-git/doc/guix.texi:36821 msgid "These are the names that may be passed to @command{herd start}, @command{herd status}, and similar commands (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual}). @xref{Slots of services, the @code{provides} slot,, shepherd, The GNU Shepherd Manual}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36332 +#: guix-git/doc/guix.texi:36822 #, no-wrap msgid "@code{requirement} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36334 +#: guix-git/doc/guix.texi:36824 msgid "List of symbols denoting the Shepherd services this one depends on." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36335 +#: guix-git/doc/guix.texi:36825 #, no-wrap msgid "one-shot services, for the Shepherd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36340 +#: guix-git/doc/guix.texi:36830 msgid "Whether this service is @dfn{one-shot}. One-shot services stop immediately after their @code{start} action has completed. @xref{Slots of services,,, shepherd, The GNU Shepherd Manual}, for more info." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36341 +#: guix-git/doc/guix.texi:36831 #, no-wrap msgid "@code{respawn?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36344 +#: guix-git/doc/guix.texi:36834 msgid "Whether to restart the service when it stops, for instance when the underlying process dies." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:36345 +#: guix-git/doc/guix.texi:36835 #, no-wrap msgid "start" -msgstr "" +msgstr "start" #. type: itemx -#: guix-git/doc/guix.texi:36346 +#: guix-git/doc/guix.texi:36836 #, no-wrap msgid "@code{stop} (default: @code{#~(const #f)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36352 +#: guix-git/doc/guix.texi:36842 msgid "The @code{start} and @code{stop} fields refer to the Shepherd's facilities to start and stop processes (@pxref{Service De- and Constructors,,, shepherd, The GNU Shepherd Manual}). They are given as G-expressions that get expanded in the Shepherd configuration file (@pxref{G-Expressions})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36353 +#: guix-git/doc/guix.texi:36843 #, no-wrap msgid "@code{actions} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36354 +#: guix-git/doc/guix.texi:36844 #, no-wrap msgid "actions, of Shepherd services" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36359 +#: guix-git/doc/guix.texi:36849 msgid "This is a list of @code{shepherd-action} objects (see below) defining @dfn{actions} supported by the service, in addition to the standard @code{start} and @code{stop} actions. Actions listed here become available as @command{herd} sub-commands:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36362 +#: guix-git/doc/guix.texi:36852 #, no-wrap msgid "herd @var{action} @var{service} [@var{arguments}@dots{}]\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36364 +#: guix-git/doc/guix.texi:36854 #, no-wrap msgid "@code{auto-start?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36367 +#: guix-git/doc/guix.texi:36857 msgid "Whether this service should be started automatically by the Shepherd. If it is @code{#f} the service has to be started manually with @code{herd start}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36370 +#: guix-git/doc/guix.texi:36860 msgid "A documentation string, as shown when running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36373 +#: guix-git/doc/guix.texi:36863 #, no-wrap msgid "herd doc @var{service-name}\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36377 +#: guix-git/doc/guix.texi:36867 msgid "where @var{service-name} is one of the symbols in @code{provision} (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36381 +#: guix-git/doc/guix.texi:36871 msgid "This is the list of modules that must be in scope when @code{start} and @code{stop} are evaluated." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36389 +#: guix-git/doc/guix.texi:36879 msgid "The example below defines a Shepherd service that spawns @command{syslogd}, the system logger from the GNU Networking Utilities (@pxref{syslogd invocation, @command{syslogd},, inetutils, GNU Inetutils}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36401 +#: guix-git/doc/guix.texi:36891 #, no-wrap msgid "" "(let ((config (plain-file \"syslogd.conf\" \"@dots{}\")))\n" @@ -64447,55 +65297,55 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36416 +#: guix-git/doc/guix.texi:36906 msgid "Key elements in this example are the @code{start} and @code{stop} fields: they are @dfn{staged} code snippets that use the @code{make-forkexec-constructor} procedure provided by the Shepherd and its dual, @code{make-kill-destructor} (@pxref{Service De- and Constructors,,, shepherd, The GNU Shepherd Manual}). The @code{start} field will have @command{shepherd} spawn @command{syslogd} with the given option; note that we pass @code{config} after @option{--rcfile}, which is a configuration file declared above (contents of this file are omitted). Likewise, the @code{stop} field tells how this service is to be stopped; in this case, it is stopped by making the @code{kill} system call on its PID@. Code staging is achieved using G-expressions: @code{#~} stages code, while @code{#$} ``escapes'' back to host code (@pxref{G-Expressions})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36417 +#: guix-git/doc/guix.texi:36907 #, no-wrap msgid "{Data Type} shepherd-action" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36420 +#: guix-git/doc/guix.texi:36910 msgid "This is the data type that defines additional actions implemented by a Shepherd service (see above)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36424 +#: guix-git/doc/guix.texi:36914 msgid "Symbol naming the action." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36427 +#: guix-git/doc/guix.texi:36917 msgid "This is a documentation string for the action. It can be viewed by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36430 +#: guix-git/doc/guix.texi:36920 #, no-wrap msgid "herd doc @var{service} action @var{action}\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36432 +#: guix-git/doc/guix.texi:36922 #, no-wrap msgid "procedure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36436 +#: guix-git/doc/guix.texi:36926 msgid "This should be a gexp that evaluates to a procedure of at least one argument, which is the ``running value'' of the service (@pxref{Slots of services,,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36440 +#: guix-git/doc/guix.texi:36930 msgid "The following example defines an action called @code{say-hello} that kindly greets the user:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36449 +#: guix-git/doc/guix.texi:36939 #, no-wrap msgid "" "(shepherd-action\n" @@ -64508,12 +65358,12 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36452 +#: guix-git/doc/guix.texi:36942 msgid "Assuming this action is added to the @code{example} service, then you can do:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36458 +#: guix-git/doc/guix.texi:36948 #, no-wrap msgid "" "# herd say-hello example\n" @@ -64523,66 +65373,66 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36463 +#: guix-git/doc/guix.texi:36953 msgid "This, as you can see, is a fairly sophisticated way to say hello. @xref{Service Convenience,,, shepherd, The GNU Shepherd Manual}, for more info on actions." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36465 +#: guix-git/doc/guix.texi:36955 #, no-wrap msgid "{Scheme Variable} shepherd-root-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36467 +#: guix-git/doc/guix.texi:36957 msgid "The service type for the Shepherd ``root service''---i.e., PID@tie{}1." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36472 +#: guix-git/doc/guix.texi:36962 msgid "This is the service type that extensions target when they want to create shepherd services (@pxref{Service Types and Services}, for an example). Each extension must pass a list of @code{}. Its value must be a @code{shepherd-configuration}, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36474 +#: guix-git/doc/guix.texi:36964 #, no-wrap msgid "{Data Type} shepherd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36476 guix-git/doc/guix.texi:37463 +#: guix-git/doc/guix.texi:36966 guix-git/doc/guix.texi:37959 msgid "This data type represents the Shepherd's configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36478 guix-git/doc/guix.texi:37465 +#: guix-git/doc/guix.texi:36968 guix-git/doc/guix.texi:37961 #, no-wrap msgid "shepherd (default: @code{shepherd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36480 guix-git/doc/guix.texi:37467 +#: guix-git/doc/guix.texi:36970 guix-git/doc/guix.texi:37963 msgid "The Shepherd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36481 guix-git/doc/guix.texi:37471 +#: guix-git/doc/guix.texi:36971 guix-git/doc/guix.texi:37967 #, no-wrap msgid "services (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36485 guix-git/doc/guix.texi:37475 +#: guix-git/doc/guix.texi:36975 guix-git/doc/guix.texi:37971 msgid "A list of @code{} to start. You should probably use the service extension mechanism instead (@pxref{Shepherd Services})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36490 +#: guix-git/doc/guix.texi:36980 msgid "The following example specifies the Shepherd package for the operating system:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36505 +#: guix-git/doc/guix.texi:36995 #, no-wrap msgid "" "(operating-system\n" @@ -64601,51 +65451,50 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36507 +#: guix-git/doc/guix.texi:36997 #, no-wrap msgid "{Scheme Variable} %shepherd-root-service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36509 +#: guix-git/doc/guix.texi:36999 msgid "This service represents PID@tie{}1." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36513 -#, fuzzy, no-wrap -#| msgid "System Configuration" +#: guix-git/doc/guix.texi:37003 +#, no-wrap msgid "complex configurations" -msgstr "Nastavenie systému" +msgstr "zložité nastavenia" #. type: Plain text -#: guix-git/doc/guix.texi:36518 +#: guix-git/doc/guix.texi:37008 msgid "Some programs might have rather complex configuration files or formats, and to make it easier to create Scheme bindings for these configuration files, you can use the utilities defined in the @code{(gnu services configuration)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36526 +#: guix-git/doc/guix.texi:37016 msgid "The main utility is the @code{define-configuration} macro, which you will use to define a Scheme record type (@pxref{Record Overview,,, guile, GNU Guile Reference Manual}). The Scheme record will be serialized to a configuration file by using @dfn{serializers}, which are procedures that take some kind of Scheme value and returns a G-expression (@pxref{G-Expressions}), which should, once serialized to the disk, return a string. More details are listed below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36527 +#: guix-git/doc/guix.texi:37017 #, no-wrap msgid "{Scheme Syntax} define-configuration @var{name} @var{clause1} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36531 +#: guix-git/doc/guix.texi:37021 msgid "@var{clause2} ... Create a record type named @code{@var{name}} that contains the fields found in the clauses." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36533 +#: guix-git/doc/guix.texi:37023 msgid "A clause can have one of the following forms:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36538 +#: guix-git/doc/guix.texi:37028 #, no-wrap msgid "" "(@var{field-name}\n" @@ -64655,7 +65504,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36543 +#: guix-git/doc/guix.texi:37033 #, no-wrap msgid "" "(@var{field-name}\n" @@ -64666,7 +65515,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36547 +#: guix-git/doc/guix.texi:37037 #, no-wrap msgid "" "(@var{field-name}\n" @@ -64676,7 +65525,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36552 +#: guix-git/doc/guix.texi:37042 #, no-wrap msgid "" "(@var{field-name}\n" @@ -64686,37 +65535,37 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36556 +#: guix-git/doc/guix.texi:37046 msgid "@var{field-name} is an identifier that denotes the name of the field in the generated record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36564 +#: guix-git/doc/guix.texi:37054 msgid "@var{type} is the type of the value corresponding to @var{field-name}; since Guile is untyped, a predicate procedure---@code{@var{type}?}---will be called on the value corresponding to the field to ensure that the value is of the correct type. This means that if say, @var{type} is @code{package}, then a procedure named @code{package?} will be applied on the value to make sure that it is indeed a @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36568 +#: guix-git/doc/guix.texi:37058 msgid "@var{default-value} is the default value corresponding to the field; if none is specified, the user is forced to provide a value when creating an object of the record type." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36573 +#: guix-git/doc/guix.texi:37063 msgid "@var{documentation} is a string formatted with Texinfo syntax which should provide a description of what setting this field does." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36580 +#: guix-git/doc/guix.texi:37070 msgid "@var{serializer} is the name of a procedure which takes two arguments, the first is the name of the field, and the second is the value corresponding to the field. The procedure should return a string or G-expression (@pxref{G-Expressions}) that represents the content that will be serialized to the configuration file. If none is specified, a procedure of the name @code{serialize-@var{type}} will be used." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36582 +#: guix-git/doc/guix.texi:37072 msgid "A simple serializer procedure could look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36587 +#: guix-git/doc/guix.texi:37077 #, no-wrap msgid "" "(define (serialize-boolean field-name value)\n" @@ -64725,12 +65574,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36598 +#: guix-git/doc/guix.texi:37088 msgid "In some cases multiple different configuration records might be defined in the same file, but their serializers for the same type might have to be different, because they have different configuration formats. For example, the @code{serialize-boolean} procedure for the Getmail service would have to be different for the one for the Transmission service. To make it easier to deal with this situation, one can specify a serializer prefix by using the @code{prefix} literal in the @code{define-configuration} form. This means that one doesn't have to manually specify a custom @var{serializer} for every field." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36602 +#: guix-git/doc/guix.texi:37092 #, no-wrap msgid "" "(define (foo-serialize-string field-name value)\n" @@ -64739,7 +65588,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36605 +#: guix-git/doc/guix.texi:37095 #, no-wrap msgid "" "(define (bar-serialize-string field-name value)\n" @@ -64748,7 +65597,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36611 +#: guix-git/doc/guix.texi:37101 #, no-wrap msgid "" "(define-configuration foo-configuration\n" @@ -64760,7 +65609,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36617 +#: guix-git/doc/guix.texi:37107 #, no-wrap msgid "" "(define-configuration bar-configuration\n" @@ -64771,12 +65620,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36623 +#: guix-git/doc/guix.texi:37113 msgid "However, in some cases you might not want to serialize any of the values of the record, to do this, you can use the @code{no-serialization} literal. There is also the @code{define-configuration/no-serialization} macro which is a shorthand of this." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36631 +#: guix-git/doc/guix.texi:37121 #, no-wrap msgid "" ";; Nothing will be serialized to disk.\n" @@ -64789,7 +65638,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36637 +#: guix-git/doc/guix.texi:37127 #, no-wrap msgid "" ";; The same thing as above.\n" @@ -64800,23 +65649,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36640 +#: guix-git/doc/guix.texi:37130 #, no-wrap msgid "{Scheme Syntax} define-maybe @var{type}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36645 +#: guix-git/doc/guix.texi:37135 msgid "Sometimes a field should not be serialized if the user doesn’t specify a value. To achieve this, you can use the @code{define-maybe} macro to define a ``maybe type''; if the value of a maybe type is set to the @code{disabled}, it will not be serialized." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36652 +#: guix-git/doc/guix.texi:37142 msgid "When defining a ``maybe type'', the corresponding serializer for the regular type will be used by default. For example, a field of type @code{maybe-string} will be serialized using the @code{serialize-string} procedure by default, you can of course change this by specifying a custom serializer procedure. Likewise, the type of the value would have to be a string, unless it is set to the @code{disabled} symbol." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36655 +#: guix-git/doc/guix.texi:37145 #, no-wrap msgid "" "(define-maybe string)\n" @@ -64824,7 +65673,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36658 +#: guix-git/doc/guix.texi:37148 #, no-wrap msgid "" "(define (serialize-string field-name value)\n" @@ -64833,7 +65682,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36665 +#: guix-git/doc/guix.texi:37155 #, no-wrap msgid "" "(define-configuration baz-configuration\n" @@ -64845,12 +65694,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36669 +#: guix-git/doc/guix.texi:37159 msgid "Like with @code{define-configuration}, one can set a prefix for the serializer name by using the @code{prefix} literal." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36673 +#: guix-git/doc/guix.texi:37163 #, no-wrap msgid "" "(define-maybe integer\n" @@ -64859,7 +65708,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36676 +#: guix-git/doc/guix.texi:37166 #, no-wrap msgid "" "(define (baz-serialize-interger field-name value)\n" @@ -64867,12 +65716,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36683 +#: guix-git/doc/guix.texi:37173 msgid "There is also the @code{no-serialization} literal, which when set means that no serializer will be defined for the ``maybe type'', regardless of its value is @code{disabled} or not. @code{define-maybe/no-serialization} is a shorthand for specifying the @code{no-serialization} literal." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36686 +#: guix-git/doc/guix.texi:37176 #, no-wrap msgid "" "(define-maybe/no-serialization symbol)\n" @@ -64880,7 +65729,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36691 +#: guix-git/doc/guix.texi:37181 #, no-wrap msgid "" "(define-configuration/no-serialization test-configuration\n" @@ -64890,66 +65739,66 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36694 +#: guix-git/doc/guix.texi:37184 #, no-wrap msgid "{Scheme Procedure} serialize-configuration @var{configuration} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36700 +#: guix-git/doc/guix.texi:37190 msgid "@var{fields} Return a G-expression that contains the values corresponding to the @var{fields} of @var{configuration}, a record that has been generated by @code{define-configuration}. The G-expression can then be serialized to disk by using something like @code{mixed-text-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36702 +#: guix-git/doc/guix.texi:37192 #, no-wrap msgid "{Scheme Procedure} validate-configuration @var{configuration}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36706 +#: guix-git/doc/guix.texi:37196 msgid "@var{fields} Type-check @var{fields}, a list of field names of @var{configuration}, a configuration record created by @code{define-configuration}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36708 +#: guix-git/doc/guix.texi:37198 #, no-wrap msgid "{Scheme Procedure} empty-serializer @var{field-name} @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36711 +#: guix-git/doc/guix.texi:37201 msgid "A serializer that just returns an empty string. The @code{serialize-package} procedure is an alias for this." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36716 +#: guix-git/doc/guix.texi:37206 msgid "Once you have defined a configuration record, you will most likely also want to document it so that other people know to use it. To help with that, there are two procedures, both of which are documented below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36717 +#: guix-git/doc/guix.texi:37207 #, no-wrap msgid "{Scheme Procedure} generate-documentation @var{documentation} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36724 +#: guix-git/doc/guix.texi:37214 msgid "@var{documentation-name} Generate a Texinfo fragment from the docstrings in @var{documentation}, a list of @code{(@var{label} @var{fields} @var{sub-documentation} ...)}. @var{label} should be a symbol and should be the name of the configuration record. @var{fields} should be a list of all the fields available for the configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36729 +#: guix-git/doc/guix.texi:37219 msgid "@var{sub-documentation} is a @code{(@var{field-name} @var{configuration-name})} tuple. @var{field-name} is the name of the field which takes another configuration record as its value, and @var{configuration-name} is the name of that configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36736 +#: guix-git/doc/guix.texi:37226 msgid "@var{sub-documentation} is only needed if there are nested configuration records. For example, the @code{getmail-configuration} record (@pxref{Mail Services}) accepts a @code{getmail-configuration-file} record in one of its @code{rcfile} field, therefore documentation for @code{getmail-configuration-file} is nested in @code{getmail-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36743 +#: guix-git/doc/guix.texi:37233 #, no-wrap msgid "" "(generate-documentation\n" @@ -64960,33 +65809,33 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36747 +#: guix-git/doc/guix.texi:37237 msgid "@var{documentation-name} should be a symbol and should be the name of the configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36750 +#: guix-git/doc/guix.texi:37240 #, no-wrap msgid "{Scheme Procedure} configuration->documentation" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36757 +#: guix-git/doc/guix.texi:37247 msgid "@var{configuration-symbol} Take @var{configuration-symbol}, the symbol corresponding to the name used when defining a configuration record with @code{define-configuration}, and print the Texinfo documentation of its fields. This is useful if there aren’t any nested configuration records since it only prints the documentation for the top-level fields." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36765 +#: guix-git/doc/guix.texi:37255 msgid "As of right now, there is no automated way to generate documentation for configuration records and put them in the manual. Instead, every time you make a change to the docstrings of a configuration record, you have to manually call @code{generate-documentation} or @code{configuration->documentation}, and paste the output into the @file{doc/guix.texi} file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36769 +#: guix-git/doc/guix.texi:37259 msgid "Below is an example of a record type created using @code{define-configuration} and friends." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36776 +#: guix-git/doc/guix.texi:37266 #, no-wrap msgid "" "(use-modules (gnu services)\n" @@ -64998,7 +65847,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36784 +#: guix-git/doc/guix.texi:37274 #, no-wrap msgid "" ";; Turn field names, which are Scheme symbols into strings\n" @@ -65012,7 +65861,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36787 +#: guix-git/doc/guix.texi:37277 #, no-wrap msgid "" "(define (serialize-string field-name value)\n" @@ -65021,7 +65870,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36790 +#: guix-git/doc/guix.texi:37280 #, no-wrap msgid "" "(define (serialize-integer field-name value)\n" @@ -65030,7 +65879,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36793 +#: guix-git/doc/guix.texi:37283 #, no-wrap msgid "" "(define (serialize-boolean field-name value)\n" @@ -65039,7 +65888,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36796 +#: guix-git/doc/guix.texi:37286 #, no-wrap msgid "" "(define (serialize-contact-name field-name value)\n" @@ -65048,7 +65897,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36799 +#: guix-git/doc/guix.texi:37289 #, no-wrap msgid "" "(define (list-of-contact-configurations? lst)\n" @@ -65057,7 +65906,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36804 +#: guix-git/doc/guix.texi:37294 #, no-wrap msgid "" "(define (serialize-list-of-contact-configurations field-name value)\n" @@ -65068,7 +65917,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36811 +#: guix-git/doc/guix.texi:37301 #, no-wrap msgid "" "(define (serialize-contacts-list-configuration configuration)\n" @@ -65081,7 +65930,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36814 +#: guix-git/doc/guix.texi:37304 #, no-wrap msgid "" "(define-maybe integer)\n" @@ -65090,7 +65939,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36829 +#: guix-git/doc/guix.texi:37319 #, no-wrap msgid "" "(define-configuration contact-configuration\n" @@ -65111,7 +65960,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36841 +#: guix-git/doc/guix.texi:37331 #, no-wrap msgid "" "(define-configuration contacts-list-configuration\n" @@ -65128,12 +65977,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36844 +#: guix-git/doc/guix.texi:37334 msgid "A contacts list configuration could then be created like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36860 +#: guix-git/doc/guix.texi:37350 #, no-wrap msgid "" "(define my-contacts\n" @@ -65153,12 +66002,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36864 +#: guix-git/doc/guix.texi:37354 msgid "After serializing the configuration to disk, the resulting file would look like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36869 +#: guix-git/doc/guix.texi:37359 #, no-wrap msgid "" "[owner]\n" @@ -65168,7 +66017,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36874 +#: guix-git/doc/guix.texi:37364 #, no-wrap msgid "" "[Bob]\n" @@ -65179,7 +66028,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36878 +#: guix-git/doc/guix.texi:37368 #, no-wrap msgid "" "[Charlie]\n" @@ -65188,204 +66037,202 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36883 -#, fuzzy, no-wrap -#| msgid "System Configuration" +#: guix-git/doc/guix.texi:37373 +#, no-wrap msgid "home configuration" -msgstr "Nastavenie systému" +msgstr "nastavenie domovského priečinka" #. type: Plain text -#: guix-git/doc/guix.texi:36895 +#: guix-git/doc/guix.texi:37385 msgid "Guix supports declarative configuration of @dfn{home environments} by utilizing the configuration mechanism described in the previous chapter (@pxref{Defining Services}), but for user's dotfiles and packages. It works both on Guix System and foreign distros and allows users to declare all the packages and services that should be installed and configured for the user. Once a user has written a file containing @code{home-environment} record, such a configuration can be @dfn{instantiated} by an unprivileged user with the @command{guix home} command (@pxref{Invoking guix home})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36912 +#: guix-git/doc/guix.texi:37402 msgid "The user's home environment usually consists of three basic parts: software, configuration, and state. Software in mainstream distros are usually installed system-wide, but with GNU Guix most software packages can be installed on a per-user basis without needing root privileges, and are thus considered part of the user’s @dfn{home environment}. Packages on their own not very useful in many cases, because often they require some additional configuration, usually config files that reside in @env{XDG_CONFIG_HOME} (@file{~/.config} by default) or other directories. Everything else can be considered state, like media files, application databases, and logs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36915 +#: guix-git/doc/guix.texi:37405 msgid "Using Guix for managing home environments provides a number of advantages:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36918 +#: guix-git/doc/guix.texi:37408 #, no-wrap msgid "All software can be configured in one language (Guile Scheme)," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36921 +#: guix-git/doc/guix.texi:37411 msgid "this gives users the ability to share values between configurations of different programs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36922 +#: guix-git/doc/guix.texi:37412 #, no-wrap msgid "A well-defined home environment is self-contained and can be" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36925 +#: guix-git/doc/guix.texi:37415 msgid "created in a declarative and reproducible way---there is no need to grab external binaries or manually edit some configuration file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36926 +#: guix-git/doc/guix.texi:37416 #, no-wrap msgid "After every @command{guix home reconfigure} invocation, a new home" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36930 +#: guix-git/doc/guix.texi:37420 msgid "environment generation will be created. This means that users can rollback to a previous home environment generation so they don’t have to worry about breaking their configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36931 +#: guix-git/doc/guix.texi:37421 #, no-wrap msgid "It is possible to manage stateful data with Guix Home, this" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36936 +#: guix-git/doc/guix.texi:37426 msgid "includes the ability to automatically clone Git repositories on the initial setup of the machine, and periodically running commands like @command{rsync} to sync data with another host. This functionality is still in an experimental stage, though." msgstr "" #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:36946 -#: guix-git/doc/guix.texi:36947 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37436 +#: guix-git/doc/guix.texi:37437 #, no-wrap msgid "Declaring the Home Environment" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 msgid "Customizing your Home." msgstr "" #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:37014 -#: guix-git/doc/guix.texi:37015 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37504 +#: guix-git/doc/guix.texi:37505 #, no-wrap msgid "Configuring the Shell" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 msgid "Enabling home environment." msgstr "" #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:37061 -#: guix-git/doc/guix.texi:37062 -#, fuzzy, no-wrap -#| msgid "Services" +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37551 +#: guix-git/doc/guix.texi:37552 +#, no-wrap msgid "Home Services" -msgstr "Služby" +msgstr "Služby domovského priečinka" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 msgid "Specifying home services." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 msgid "Instantiating a home configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36953 +#: guix-git/doc/guix.texi:37443 msgid "The home environment is configured by providing a @code{home-environment} declaration in a file that can be passed to the @command{guix home} command (@pxref{Invoking guix home}). The easiest way to get started is by generating an initial configuration with @command{guix home import}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36956 +#: guix-git/doc/guix.texi:37446 #, no-wrap msgid "guix home import ~/src/guix-config\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36964 +#: guix-git/doc/guix.texi:37454 msgid "The @command{guix home import} command reads some of the ``dot files'' such as @file{~/.bashrc} found in your home directory and copies them to the given directory, @file{~/src/guix-config} in this case; it also reads the contents of your profile, @file{~/.guix-profile}, and, based on that, it populates @file{~/src/guix-config/home-configuration.scm} with a Home configuration that resembles your current configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36970 +#: guix-git/doc/guix.texi:37460 msgid "A simple setup can include Bash and a custom text configuration, like in the example below. Don't be afraid to declare home environment parts, which overlaps with your current dot files: before installing any configuration files, Guix Home will back up existing config files to a separate place in the home directory." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36976 +#: guix-git/doc/guix.texi:37466 msgid "It is highly recommended that you manage your shell or shells with Guix Home, because it will make sure that all the necessary scripts are sourced by the shell configuration file. Otherwise you will need to do it manually. (@pxref{Configuring the Shell})." msgstr "" #. type: findex -#: guix-git/doc/guix.texi:36978 +#: guix-git/doc/guix.texi:37468 #, no-wrap msgid "home-environment" msgstr "" #. type: include -#: guix-git/doc/guix.texi:36980 +#: guix-git/doc/guix.texi:37470 #, no-wrap msgid "he-config-bare-bones.scm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36987 +#: guix-git/doc/guix.texi:37477 msgid "The @code{packages} field should be self-explanatory, it will install the list of packages into the user's profile. The most important field is @code{services}, it contains a list of @dfn{home services}, which are the basic building blocks of a home environment." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36995 +#: guix-git/doc/guix.texi:37485 msgid "There is no daemon (at least not necessarily) related to a home service, a home service is just an element that is used to declare part of home environment and extend other parts of it. The extension mechanism discussed in the previous chapter (@pxref{Defining Services}) should not be confused with Shepherd services (@pxref{Shepherd Services}). Using this extension mechanism and some Scheme code that glues things together gives the user the freedom to declare their own, very custom, home environments." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36998 +#: guix-git/doc/guix.texi:37488 msgid "Once you have a configuration file that suits your needs, you can reconfigure your home by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37001 +#: guix-git/doc/guix.texi:37491 #, no-wrap msgid "guix home reconfigure config.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37005 +#: guix-git/doc/guix.texi:37495 msgid "This ``builds'' your home environment and creates @file{~/.guix-home} pointing to it. Voilà!" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37012 +#: guix-git/doc/guix.texi:37502 msgid "Make sure the operating system has elogind, systemd, or a similar mechanism to create the XDG run-time directory and has the @env{XDG_RUNTIME_DIR} variable set. Failing that, the @file{on-first-login} script will not execute anything, and processes like user Shepherd and its descendants will not start." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37018 +#: guix-git/doc/guix.texi:37508 msgid "This section is safe to skip if your shell or shells are managed by Guix Home. Otherwise, read it carefully." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37025 +#: guix-git/doc/guix.texi:37515 msgid "There are a few scripts that must be evaluated by a login shell to activate the home environment. The shell startup files only read by login shells often have @code{profile} suffix. For more information about login shells see @ref{Invoking Bash,,, bash, The GNU Bash Reference Manual} and see @ref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37032 +#: guix-git/doc/guix.texi:37522 msgid "The first script that needs to be sourced is @file{setup-environment}, which sets all the necessary environment variables (including variables declared by the user) and the second one is @file{on-first-login}, which starts Shepherd for the current user and performs actions declared by other home services that extends @code{home-run-on-first-login-service-type}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37035 +#: guix-git/doc/guix.texi:37525 msgid "Guix Home will always create @file{~/.profile}, which contains the following lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37040 +#: guix-git/doc/guix.texi:37530 #, no-wrap msgid "" "HOME_ENVIRONMENT=$HOME/.guix-home\n" @@ -65394,109 +66241,107 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37050 +#: guix-git/doc/guix.texi:37540 msgid "This makes POSIX compliant login shells activate the home environment. However, in most cases this file won't be read by most modern shells, because they are run in non POSIX mode by default and have their own @file{*profile} startup files. For example Bash will prefer @file{~/.bash_profile} in case it exists and only if it doesn't will it fallback to @file{~/.profile}. Zsh (if no additional options are specified) will ignore @file{~/.profile}, even if @file{~/.zprofile} doesn't exist." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37055 +#: guix-git/doc/guix.texi:37545 msgid "To make your shell respect @file{~/.profile}, add @code{. ~/.profile} or @code{source ~/profile} to the startup file for the login shell. In case of Bash, it is @file{~/.bash_profile}, and in case of Zsh, it is @file{~/.zprofile}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37059 +#: guix-git/doc/guix.texi:37549 msgid "This step is only required if your shell is NOT managed by Guix Home. Otherwise, everything will be done automatically." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37063 -#, fuzzy, no-wrap -#| msgid "Services" +#: guix-git/doc/guix.texi:37553 +#, no-wrap msgid "home services" -msgstr "Služby" +msgstr "domovské služby" #. type: Plain text -#: guix-git/doc/guix.texi:37072 +#: guix-git/doc/guix.texi:37562 msgid "A @dfn{home service} is not necessarily something that has a daemon and is managed by Shepherd (@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}), in most cases it doesn't. It's a simple building block of the home environment, often declaring a set of packages to be installed in the home environment profile, a set of config files to be symlinked into @env{XDG_CONFIG_HOME} (@file{~/.config} by default), and environment variables to be set by a login shell." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37080 +#: guix-git/doc/guix.texi:37570 msgid "There is a service extension mechanism (@pxref{Service Composition}) which allows home services to extend other home services and utilize capabilities they provide; for example: declare mcron jobs (@pxref{Top,,, mcron, GNU@tie{}Mcron}) by extending @ref{Mcron Home Service}; declare daemons by extending @ref{Shepherd Home Service}; add commands, which will be invoked on by the Bash by extending @ref{Shells Home Services, @code{home-bash-service-type}}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37091 -msgid "A good way to discover avaliable home services is using the @command{guix home search} command (@pxref{Invoking guix home}). After the required home services are found, include its module with the @code{use-modules} form (@pxref{use-modules,, Using Guile Modules, guile, The GNU Guile Reference Manual}), or the @code{#:use-modules} directive (@pxref{define-module,, Creating Guile Modules, guile, The GNU Guile Reference Manual}) and declare a home service using the @code{service} function, or extend a service type by declaring a new service with the @code{simple-service} procedure from @code{(gnu services)}." +#: guix-git/doc/guix.texi:37581 +msgid "A good way to discover available home services is using the @command{guix home search} command (@pxref{Invoking guix home}). After the required home services are found, include its module with the @code{use-modules} form (@pxref{use-modules,, Using Guile Modules, guile, The GNU Guile Reference Manual}), or the @code{#:use-modules} directive (@pxref{define-module,, Creating Guile Modules, guile, The GNU Guile Reference Manual}) and declare a home service using the @code{service} function, or extend a service type by declaring a new service with the @code{simple-service} procedure from @code{(gnu services)}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:37097 guix-git/doc/guix.texi:37100 -#: guix-git/doc/guix.texi:37101 -#, fuzzy, no-wrap -#| msgid "Services" +#: guix-git/doc/guix.texi:37587 guix-git/doc/guix.texi:37590 +#: guix-git/doc/guix.texi:37591 +#, no-wrap msgid "Essential Home Services" -msgstr "Služby" +msgstr "Základné domovské služby" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Environment variables, packages, on-* scripts." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Shells: Shells Home Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "POSIX shells, Bash, Zsh." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Mcron: Mcron Home Service" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Scheduled User's Job Execution." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Shepherd: Shepherd Home Service" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Managing User's Daemons." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37106 +#: guix-git/doc/guix.texi:37596 msgid "There are a few essential home services defined in @code{(gnu services)}, they are mostly for internal use and are required to build a home environment, but some of them will be useful for the end user." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37107 +#: guix-git/doc/guix.texi:37597 #, no-wrap msgid "environment variables" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37109 +#: guix-git/doc/guix.texi:37599 #, no-wrap msgid "{Scheme Variable} home-environment-variables-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37114 +#: guix-git/doc/guix.texi:37604 msgid "The service of this type will be instantiated by every home environment automatically by default, there is no need to define it, but someone may want to extend it with a list of pairs to set some environment variables." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37118 +#: guix-git/doc/guix.texi:37608 #, no-wrap msgid "" "(list (\"ENV_VAR1\" . \"value1\")\n" @@ -65504,12 +66349,12 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37123 +#: guix-git/doc/guix.texi:37613 msgid "The easiest way to extend a service type, without defining new service type is to use the @code{simple-service} helper from @code{(gnu services)}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37131 +#: guix-git/doc/guix.texi:37621 #, no-wrap msgid "" "(simple-service 'some-useful-env-vars-service\n" @@ -65521,12 +66366,12 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37136 +#: guix-git/doc/guix.texi:37626 msgid "If you include such a service in you home environment definition, it will add the following content to the @file{setup-environment} script (which is expected to be sourced by the login shell):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37141 +#: guix-git/doc/guix.texi:37631 #, no-wrap msgid "" "export LESSHISTFILE=$XDG_CACHE_HOME/.lesshst\n" @@ -65535,605 +66380,577 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37148 +#: guix-git/doc/guix.texi:37638 msgid "Make sure that module @code{(gnu packages shells)} is imported with @code{use-modules} or any other way, this namespace contains the definition of the @code{zsh} packages, which is used in the example above." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37161 +#: guix-git/doc/guix.texi:37651 msgid "The association list (@pxref{Association Lists, alists, Association Lists, guile, The GNU Guile Reference manual}) is a data structure containing key-value pairs, for @code{home-environment-variables-service-type} the key is always a string, the value can be a string, string-valued gexp (@pxref{G-Expressions}), file-like object (@pxref{G-Expressions, file-like object}) or boolean. For gexps, the variable will be set to the value of the gexp; for file-like objects, it will be set to the path of the file in the store (@pxref{The Store}); for @code{#t}, it will export the variable without any value; and for @code{#f}, it will omit variable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37164 +#: guix-git/doc/guix.texi:37654 #, no-wrap msgid "{Scheme Variable} home-profile-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37170 -msgid "The service of this type will be instantiated by every home environment automatically, there is no need to define it, but you may want to extend it with a list of packages if you want to install additional packages into your profile. Other services, which need to make some programs avaliable to the user will also extend this service type." +#: guix-git/doc/guix.texi:37660 +msgid "The service of this type will be instantiated by every home environment automatically, there is no need to define it, but you may want to extend it with a list of packages if you want to install additional packages into your profile. Other services, which need to make some programs available to the user will also extend this service type." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37172 +#: guix-git/doc/guix.texi:37662 msgid "The extension value is just a list of packages:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37175 +#: guix-git/doc/guix.texi:37665 #, no-wrap msgid "(list htop vim emacs)\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37185 +#: guix-git/doc/guix.texi:37675 msgid "The same approach as @code{simple-service} (@pxref{Service Reference, simple-service}) for @code{home-environment-variables-service-type} can be used here, too. Make sure that modules containing the specified packages are imported with @code{use-modules}. To find a package or information about its module use @command{guix search} (@pxref{Invoking guix package}). Alternatively, @code{specification->package} can be used to get the package record from string without importing related module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37189 +#: guix-git/doc/guix.texi:37679 msgid "There are few more essential services, but users are not expected to extend them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37190 +#: guix-git/doc/guix.texi:37680 #, no-wrap msgid "{Scheme Variable} home-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37195 +#: guix-git/doc/guix.texi:37685 msgid "The root of home services DAG, it generates a folder, which later will be symlinked to @file{~/.guix-home}, it contains configurations, profile with binaries and libraries, and some necessary scripts to glue things together." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37197 +#: guix-git/doc/guix.texi:37687 #, no-wrap msgid "{Scheme Variable} home-run-on-first-login-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37202 +#: guix-git/doc/guix.texi:37692 msgid "The service of this type generates a Guile script, which is expected to be executed by the login shell. It is only executed if the special flag file inside @env{XDG_RUNTIME_DIR} hasn't been created, this prevents redundant executions of the script if multiple login shells are spawned." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37208 +#: guix-git/doc/guix.texi:37698 msgid "It can be extended with a gexp. However, to autostart an application, users @emph{should not} use this service, in most cases it's better to extend @code{home-shepherd-service-type} with a Shepherd service (@pxref{Shepherd Services}), or extend the shell's startup file with the required command using the appropriate service type." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37210 +#: guix-git/doc/guix.texi:37700 #, no-wrap msgid "{Scheme Variable} home-activation-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37214 +#: guix-git/doc/guix.texi:37704 msgid "The service of this type generates a guile script, which runs on every @command{guix home reconfigure} invocation or any other action, which leads to the activation of the home environment." msgstr "" #. type: node -#: guix-git/doc/guix.texi:37216 +#: guix-git/doc/guix.texi:37706 #, no-wrap msgid "Shells Home Services" msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:37217 +#: guix-git/doc/guix.texi:37707 #, no-wrap msgid "Shells" -msgstr "" +msgstr "Príkazové riadky" #. type: cindex -#: guix-git/doc/guix.texi:37219 guix-git/doc/guix.texi:37500 +#: guix-git/doc/guix.texi:37709 guix-git/doc/guix.texi:37996 #, no-wrap msgid "shell" -msgstr "" +msgstr "shell" #. type: cindex -#: guix-git/doc/guix.texi:37220 +#: guix-git/doc/guix.texi:37710 #, no-wrap msgid "login shell" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37221 +#: guix-git/doc/guix.texi:37711 #, no-wrap msgid "interactive shell" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37222 guix-git/doc/guix.texi:37502 +#: guix-git/doc/guix.texi:37712 guix-git/doc/guix.texi:37998 #, no-wrap msgid "bash" -msgstr "" +msgstr "bash" #. type: cindex -#: guix-git/doc/guix.texi:37223 guix-git/doc/guix.texi:37503 +#: guix-git/doc/guix.texi:37713 guix-git/doc/guix.texi:37999 #, no-wrap msgid "zsh" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37229 +#: guix-git/doc/guix.texi:37719 msgid "Shells play a quite important role in the environment initialization process, you can configure them manually as described in section @ref{Configuring the Shell}, but the recommended way is to use home services listed below. It's both easier and more reliable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37239 +#: guix-git/doc/guix.texi:37729 msgid "Each home environment instantiates @code{home-shell-profile-service-type}, which creates a @file{~/.profile} startup file for all POSIX-compatible shells. This file contains all the necessary steps to properly initialize the environment, but many modern shells like Bash or Zsh prefer their own startup files, that's why the respective home services (@code{home-bash-service-type} and @code{home-zsh-service-type}) ensure that @file{~/.profile} is sourced by @file{~/.bash_profile} and @file{~/.zprofile}, respectively." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:37240 -#, fuzzy, no-wrap -#| msgid "Services" +#: guix-git/doc/guix.texi:37730 +#, no-wrap msgid "Shell Profile Service" -msgstr "Služby" +msgstr "Služba profilu shell" #. type: deftp -#: guix-git/doc/guix.texi:37242 -#, fuzzy, no-wrap -#| msgid "System Configuration" +#: guix-git/doc/guix.texi:37732 +#, no-wrap msgid "{Data Type} home-shell-profile-configuration" -msgstr "Nastavenie systému" +msgstr "{Druh údajov} home-shell-profile-configuration" #. type: deftp -#: guix-git/doc/guix.texi:37244 +#: guix-git/doc/guix.texi:37734 msgid "Available @code{home-shell-profile-configuration} fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37246 +#: guix-git/doc/guix.texi:37736 #, no-wrap msgid "@code{profile} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37256 -msgid "@code{home-shell-profile} is instantiated automatically by @code{home-environment}, DO NOT create this service manually, it can only be extended. @code{profile} is a list of file-like objects, which will go to @file{~/.profile}. By default @file{~/.profile} contains the initialization code, which have to be evaluated by login shell to make home-environment's profile avaliable to the user, but other commands can be added to the file if it is really necessary. In most cases shell's configuration files are preferred places for user's customizations. Extend home-shell-profile service only if you really know what you do." +#: guix-git/doc/guix.texi:37746 +msgid "@code{home-shell-profile} is instantiated automatically by @code{home-environment}, DO NOT create this service manually, it can only be extended. @code{profile} is a list of file-like objects, which will go to @file{~/.profile}. By default @file{~/.profile} contains the initialization code which must be evaluated by the login shell to make home-environment's profile available to the user, but other commands can be added to the file if it is really necessary. In most cases shell's configuration files are preferred places for user's customizations. Extend home-shell-profile service only if you really know what you do." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:37261 +#: guix-git/doc/guix.texi:37751 #, no-wrap msgid "Bash Home Service" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:37264 -#, fuzzy -#| msgid "System Configuration" +#: guix-git/doc/guix.texi:37754 msgid "home-bash-configuration" -msgstr "Nastavenie systému" +msgstr "home-bash-configuration" #. type: deftp -#: guix-git/doc/guix.texi:37264 -#, fuzzy, no-wrap -#| msgid "System Configuration" +#: guix-git/doc/guix.texi:37754 +#, no-wrap msgid "{Data Type} home-bash-configuration" -msgstr "Nastavenie systému" +msgstr "{Druh údajov} home-bash-configuration" #. type: deftp -#: guix-git/doc/guix.texi:37266 +#: guix-git/doc/guix.texi:37756 msgid "Available @code{home-bash-configuration} fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37268 +#: guix-git/doc/guix.texi:37758 #, no-wrap msgid "@code{package} (default: @code{bash}) (type: package)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37270 +#: guix-git/doc/guix.texi:37760 msgid "The Bash package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37271 +#: guix-git/doc/guix.texi:37761 #, no-wrap msgid "@code{guix-defaults?} (default: @code{#t}) (type: boolean)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37274 +#: guix-git/doc/guix.texi:37764 msgid "Add sane defaults like reading @file{/etc/bashrc} and coloring the output of @command{ls} to the end of the @file{.bashrc} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37275 guix-git/doc/guix.texi:37329 -#: guix-git/doc/guix.texi:37368 +#: guix-git/doc/guix.texi:37765 guix-git/doc/guix.texi:37819 +#: guix-git/doc/guix.texi:37858 #, no-wrap msgid "@code{environment-variables} (default: @code{()}) (type: alist)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37280 +#: guix-git/doc/guix.texi:37770 msgid "Association list of environment variables to set for the Bash session. The rules for the @code{home-environment-variables-service-type} apply here (@pxref{Essential Home Services}). The contents of this field will be added after the contents of the @code{bash-profile} field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37281 guix-git/doc/guix.texi:37334 +#: guix-git/doc/guix.texi:37771 guix-git/doc/guix.texi:37824 #, no-wrap msgid "@code{aliases} (default: @code{()}) (type: alist)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37286 +#: guix-git/doc/guix.texi:37776 msgid "Association list of aliases to set for the Bash session. The aliases will be defined after the contents of the @code{bashrc} field has been put in the @file{.bashrc} file. The alias will automatically be quoted, so something line this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37289 +#: guix-git/doc/guix.texi:37779 #, no-wrap msgid "'((\\\"ls\\\" . \\\"ls -alF\\\"))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37292 +#: guix-git/doc/guix.texi:37782 msgid "turns into" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37295 +#: guix-git/doc/guix.texi:37785 #, no-wrap msgid "alias ls=\\\"ls -alF\\\"\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37297 guix-git/doc/guix.texi:37338 +#: guix-git/doc/guix.texi:37787 guix-git/doc/guix.texi:37828 #, no-wrap msgid "@code{bash-profile} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37302 +#: guix-git/doc/guix.texi:37792 msgid "List of file-like objects, which will be added to @file{.bash_profile}. Used for executing user's commands at start of login shell (In most cases the shell started on tty just after login). @file{.bash_login} won't be ever read, because @file{.bash_profile} always present." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37303 guix-git/doc/guix.texi:37342 +#: guix-git/doc/guix.texi:37793 guix-git/doc/guix.texi:37832 #, no-wrap msgid "@code{bashrc} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37308 +#: guix-git/doc/guix.texi:37798 msgid "List of file-like objects, which will be added to @file{.bashrc}. Used for executing user's commands at start of interactive shell (The shell for interactive usage started by typing @code{bash} or by terminal app or any other program)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37309 guix-git/doc/guix.texi:37346 +#: guix-git/doc/guix.texi:37799 guix-git/doc/guix.texi:37836 #, no-wrap msgid "@code{bash-logout} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37314 +#: guix-git/doc/guix.texi:37804 msgid "List of file-like objects, which will be added to @file{.bash_logout}. Used for executing user's commands at the exit of login shell. It won't be read in some cases (if the shell terminates by exec'ing another process for example)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37324 +#: guix-git/doc/guix.texi:37814 msgid "You can extend the Bash service by using the @code{home-bash-extension} configuration record, whose fields most mirror that of @code{home-bash-configuration} (@pxref{home-bash-configuration}). The contents of the extensions will be added to the end of the corresponding Bash configuration files (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37325 -#, fuzzy, no-wrap -#| msgid "System Configuration" +#: guix-git/doc/guix.texi:37815 +#, no-wrap msgid "{Data Type} home-bash-extension" -msgstr "Nastavenie systému" +msgstr "{Druh údajov} home-bash-extension" #. type: deftp -#: guix-git/doc/guix.texi:37327 +#: guix-git/doc/guix.texi:37817 msgid "Available @code{home-bash-extension} fields are:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37333 +#: guix-git/doc/guix.texi:37823 msgid "Additional environment variables to set. These will be combined with the environment variables from other extensions and the base service to form one coherent block of environment variables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37337 +#: guix-git/doc/guix.texi:37827 msgid "Additional aliases to set. These will be combined with the aliases from other extensions and the base service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37341 +#: guix-git/doc/guix.texi:37831 msgid "Additional text blocks to add to @file{.bash_profile}, which will be combined with text blocks from other extensions and the base service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37345 +#: guix-git/doc/guix.texi:37835 msgid "Additional text blocks to add to @file{.bashrc}, which will be combined with text blocks from other extensions and the base service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37349 +#: guix-git/doc/guix.texi:37839 msgid "Additional text blocks to add to @file{.bash_logout}, which will be combined with text blocks from other extensions and the base service." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:37353 -#, fuzzy, no-wrap -#| msgid "Services" +#: guix-git/doc/guix.texi:37843 +#, no-wrap msgid "Zsh Home Service" -msgstr "Služby" +msgstr "Domovská služba Zsh" #. type: deftp -#: guix-git/doc/guix.texi:37355 -#, fuzzy, no-wrap -#| msgid "System Configuration" +#: guix-git/doc/guix.texi:37845 +#, no-wrap msgid "{Data Type} home-zsh-configuration" -msgstr "Nastavenie systému" +msgstr "{Druh údajov} home-zsh-configuration" #. type: deftp -#: guix-git/doc/guix.texi:37357 +#: guix-git/doc/guix.texi:37847 msgid "Available @code{home-zsh-configuration} fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37359 +#: guix-git/doc/guix.texi:37849 #, no-wrap msgid "@code{package} (default: @code{zsh}) (type: package)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37361 +#: guix-git/doc/guix.texi:37851 msgid "The Zsh package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37362 +#: guix-git/doc/guix.texi:37852 #, no-wrap msgid "@code{xdg-flavor?} (default: @code{#t}) (type: boolean)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37367 +#: guix-git/doc/guix.texi:37857 msgid "Place all the configs to @file{$XDG_CONFIG_HOME/zsh}. Makes @file{~/.zshenv} to set @env{ZDOTDIR} to @file{$XDG_CONFIG_HOME/zsh}. Shell startup process will continue with @file{$XDG_CONFIG_HOME/zsh/.zshenv}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37370 +#: guix-git/doc/guix.texi:37860 msgid "Association list of environment variables to set for the Zsh session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37371 +#: guix-git/doc/guix.texi:37861 #, no-wrap msgid "@code{zshenv} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37376 +#: guix-git/doc/guix.texi:37866 msgid "List of file-like objects, which will be added to @file{.zshenv}. Used for setting user's shell environment variables. Must not contain commands assuming the presence of tty or producing output. Will be read always. Will be read before any other file in @env{ZDOTDIR}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37377 +#: guix-git/doc/guix.texi:37867 #, no-wrap msgid "@code{zprofile} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37382 +#: guix-git/doc/guix.texi:37872 msgid "List of file-like objects, which will be added to @file{.zprofile}. Used for executing user's commands at start of login shell (In most cases the shell started on tty just after login). Will be read before @file{.zlogin}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37383 +#: guix-git/doc/guix.texi:37873 #, no-wrap msgid "@code{zshrc} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37388 +#: guix-git/doc/guix.texi:37878 msgid "List of file-like objects, which will be added to @file{.zshrc}. Used for executing user's commands at start of interactive shell (The shell for interactive usage started by typing @code{zsh} or by terminal app or any other program)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37389 +#: guix-git/doc/guix.texi:37879 #, no-wrap msgid "@code{zlogin} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37393 +#: guix-git/doc/guix.texi:37883 msgid "List of file-like objects, which will be added to @file{.zlogin}. Used for executing user's commands at the end of starting process of login shell." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37394 +#: guix-git/doc/guix.texi:37884 #, no-wrap msgid "@code{zlogout} (default: @code{()}) (type: text-config)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37399 +#: guix-git/doc/guix.texi:37889 msgid "List of file-like objects, which will be added to @file{.zlogout}. Used for executing user's commands at the exit of login shell. It won't be read in some cases (if the shell terminates by exec'ing another process for example)." msgstr "" #. type: node -#: guix-git/doc/guix.texi:37404 +#: guix-git/doc/guix.texi:37894 #, no-wrap msgid "Mcron Home Service" msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:37405 +#: guix-git/doc/guix.texi:37895 #, no-wrap msgid "Scheduled User's Job Execution" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37418 +#: guix-git/doc/guix.texi:37908 msgid "The @code{(gnu home services mcron)} module provides an interface to GNU@tie{}mcron, a daemon to run jobs at scheduled times (@pxref{Top,,, mcron, GNU@tie{}mcron}). The information about system's mcron is applicable here (@pxref{Scheduled Job Execution}), the only difference for home services is that they have to be declared in a @code{home-envirnoment} record instead of an @code{operating-system} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37419 +#: guix-git/doc/guix.texi:37909 #, no-wrap msgid "{Scheme Variable} home-mcron-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37423 +#: guix-git/doc/guix.texi:37913 msgid "This is the type of the @code{mcron} home service, whose value is an @code{home-mcron-configuration} object. It allows to manage scheduled tasks." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37430 -#, fuzzy, no-wrap -#| msgid "System Configuration" +#: guix-git/doc/guix.texi:37920 +#, no-wrap msgid "{Data Type} home-mcron-configuration" -msgstr "Nastavenie systému" +msgstr "{Druh údajov} home-mcron-configuration" #. type: node -#: guix-git/doc/guix.texi:37444 +#: guix-git/doc/guix.texi:37934 #, no-wrap msgid "Shepherd Home Service" msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:37445 +#: guix-git/doc/guix.texi:37935 +#, no-wrap +msgid "Managing User Daemons" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:37937 #, no-wrap -msgid "Managing User's Daemons" +msgid "shepherd services, for users" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:37944 +msgid "The @code{(gnu home services shepherd)} module supports the definitions of per-user Shepherd services (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}). You extend @code{home-shepherd-service-type} with new services; Guix Home then takes care of starting the @code{shepherd} daemon for you when you log in, which in turns starts the services you asked for." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37449 +#: guix-git/doc/guix.texi:37945 #, no-wrap msgid "{Scheme Variable} home-shepherd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37454 +#: guix-git/doc/guix.texi:37950 msgid "The service type for the userland Shepherd, which allows one to manage long-running processes or one-shot tasks. User's Shepherd is not an init process (PID 1), but almost all other information described in (@pxref{Shepherd Services}) is applicable here too." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37459 +#: guix-git/doc/guix.texi:37955 msgid "This is the service type that extensions target when they want to create shepherd services (@pxref{Service Types and Services}, for an example). Each extension must pass a list of @code{}. Its value must be a @code{home-shepherd-configuration}, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37461 -#, fuzzy, no-wrap -#| msgid "System Configuration" +#: guix-git/doc/guix.texi:37957 +#, no-wrap msgid "{Data Type} home-shepherd-configuration" -msgstr "Nastavenie systému" +msgstr "{Druh údajov} home-shepherd-configuration" #. type: item -#: guix-git/doc/guix.texi:37468 +#: guix-git/doc/guix.texi:37964 #, no-wrap msgid "auto-start? (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37470 +#: guix-git/doc/guix.texi:37966 msgid "Whether or not to start Shepherd on first login." msgstr "" #. type: section -#: guix-git/doc/guix.texi:37479 +#: guix-git/doc/guix.texi:37975 #, no-wrap msgid "Invoking @code{guix home}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37484 +#: guix-git/doc/guix.texi:37980 msgid "Once you have written a home environment declaration (@pxref{Declaring the Home Environment,,,,}, it can be @dfn{instantiated} using the @command{guix home} command. The synopsis is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37487 +#: guix-git/doc/guix.texi:37983 #, no-wrap msgid "guix home @var{options}@dots{} @var{action} @var{file}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37494 +#: guix-git/doc/guix.texi:37990 msgid "@var{file} must be the name of a file containing a @code{home-environment} declaration. @var{action} specifies how the home environment is instantiated, but there are few auxiliary actions which don't instantiate it. Currently the following values are supported:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37499 +#: guix-git/doc/guix.texi:37995 msgid "Display available home service type definitions that match the given regular expressions, sorted by relevance:" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37501 +#: guix-git/doc/guix.texi:37997 #, no-wrap msgid "shell-profile" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37513 +#: guix-git/doc/guix.texi:38008 #, no-wrap msgid "" "$ guix home search shell\n" "name: home-shell-profile\n" -"location: gnu/home/services/shells.scm:73:2\n" +"location: gnu/home/services/shells.scm:100:2\n" "extends: home-files\n" -"description: Create `~/.profile', which is used for environment initialization\n" -"+ of POSIX compatible login shells. Can be extended with a list of strings or\n" -"+ gexps.\n" +"description: Create `~/.profile', which is used for environment initialization of POSIX compliant login shells.\n" +"+ This service type can be extended with a list of file-like objects.\n" "relevance: 6\n" "\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37519 -#, no-wrap -msgid "" -"name: home-zsh-plugin-manager\n" -"location: gnu/home/services/shellutils.scm:28:2\n" -"extends: home-zsh home-profile\n" -"description: Install plugins in profile and configure Zsh to load them.\n" -"relevance: 1\n" -"\n" -msgstr "" - -#. type: example -#: guix-git/doc/guix.texi:37526 -#, no-wrap -msgid "" -"name: home-zsh-direnv\n" -"location: gnu/home/services/shellutils.scm:69:2\n" -"extends: home-profile home-zsh\n" -"description: Enables `direnv' for `zsh'. Adds hook to `.zshrc' and installs a\n" -"+ package in the profile.\n" -"relevance: 1\n" -"\n" -msgstr "" - -#. type: example -#: guix-git/doc/guix.texi:37535 +#: guix-git/doc/guix.texi:38014 #, no-wrap msgid "" -"name: home-zsh-autosuggestions\n" -"location: gnu/home/services/shellutils.scm:43:2\n" -"extends: home-zsh-plugin-manager home-zsh\n" -"description: Enables Fish-like fast/unobtrusive autosuggestions for `zsh' and\n" -"+ sets reasonable default values for some plugin's variables to improve perfomance\n" -"+ and adjust behavior: `(history completion)' is set for strategy, manual rebind\n" -"+ and async are enabled.\n" -"relevance: 1\n" +"name: home-fish\n" +"location: gnu/home/services/shells.scm:640:2\n" +"extends: home-files home-profile\n" +"description: Install and configure Fish, the friendly interactive shell.\n" +"relevance: 3\n" "\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37541 +#: guix-git/doc/guix.texi:38020 #, no-wrap msgid "" "name: home-zsh\n" -"location: gnu/home/services/shells.scm:236:2\n" +"location: gnu/home/services/shells.scm:290:2\n" "extends: home-files home-profile\n" "description: Install and configure Zsh.\n" "relevance: 1\n" @@ -66141,61 +66958,66 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37547 +#: guix-git/doc/guix.texi:38026 #, no-wrap msgid "" "name: home-bash\n" -"location: gnu/home/services/shells.scm:388:2\n" +"location: gnu/home/services/shells.scm:508:2\n" "extends: home-files home-profile\n" -"description: Install and configure Bash.\n" +"description: Install and configure GNU Bash.\n" "relevance: 1\n" "\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37563 -msgid "Build the home environment described in @var{file}, and switch to it. Switching means that the activation script will be evaluated and (in basic scenario) symlinks to configuration files generated from @code{home-environment} declaration will be created in @file{~}. If the file with the same path already exists in home folder it will be moved to @file{~/TIMESTAMP-guix-home-legacy-configs-backup}, where TIMESTAMP is a current UNIX epoch time." +#: guix-git/doc/guix.texi:38033 +msgid "As for @command{guix search}, the result is written in @code{recutils} format, which makes it easy to filter the output (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:38042 +msgid "Build the home environment described in @var{file}, and switch to it. Switching means that the activation script will be evaluated and (in basic scenario) symlinks to configuration files generated from @code{home-environment} declaration will be created in @file{~}. If the file with the same path already exists in home folder it will be moved to @file{~/@var{timestamp}-guix-home-legacy-configs-backup}, where @var{timestamp} is a current UNIX epoch time." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37568 +#: guix-git/doc/guix.texi:38047 msgid "It is highly recommended to run @command{guix pull} once before you run @command{guix home reconfigure} for the first time (@pxref{Invoking guix pull})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37575 -msgid "This effects all the configuration specified in @var{file}. The command starts Shepherd services specified in @var{file} that are not currently running; if a service is currently running, this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop X} or @code{herd restart X})." +#: guix-git/doc/guix.texi:38054 +msgid "This effects all the configuration specified in @var{file}. The command starts Shepherd services specified in @var{file} that are not currently running; if a service is currently running, this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop @var{service}} or @code{herd restart @var{service}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37581 +#: guix-git/doc/guix.texi:38060 msgid "This command creates a new generation whose number is one greater than the current generation (as reported by @command{guix home list-generations}). If that generation already exists, it will be overwritten. This behavior mirrors that of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37582 +#: guix-git/doc/guix.texi:38061 #, no-wrap msgid "provenance tracking, of the home environment" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37587 +#: guix-git/doc/guix.texi:38066 msgid "Upon completion, the new home is deployed under @file{~/.guix-home}. This directory contains @dfn{provenance meta-data}: the list of channels in use (@pxref{Channels}) and @var{file} itself, when available. You can view the provenance information by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37590 +#: guix-git/doc/guix.texi:38069 #, no-wrap msgid "guix home describe\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37596 +#: guix-git/doc/guix.texi:38075 msgid "This information is useful should you later want to inspect how this particular generation was built. In fact, assuming @var{file} is self-contained, you can later rebuild generation @var{n} of your home environment with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37602 +#: guix-git/doc/guix.texi:38081 #, no-wrap msgid "" "guix time-machine \\\n" @@ -66206,111 +67028,110 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37609 +#: guix-git/doc/guix.texi:38088 msgid "You can think of it as some sort of built-in version control! Your home is not just a binary artifact: @emph{it carries its own source}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37615 -#, fuzzy, no-wrap -#| msgid "Documentation" +#: guix-git/doc/guix.texi:38094 +#, no-wrap msgid "home generations" -msgstr "Dokumentácia" +msgstr "pokolenia domovského priečinka" #. type: table -#: guix-git/doc/guix.texi:37618 +#: guix-git/doc/guix.texi:38097 msgid "Switch to an existing home generation. This action atomically switches the home profile to the specified home generation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37622 +#: guix-git/doc/guix.texi:38101 msgid "The target generation can be specified explicitly by its generation number. For example, the following invocation would switch to home generation 7:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37625 +#: guix-git/doc/guix.texi:38104 #, no-wrap msgid "guix home switch-generation 7\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37636 +#: guix-git/doc/guix.texi:38115 #, no-wrap msgid "guix home switch-generation -- -1\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37645 +#: guix-git/doc/guix.texi:38124 msgid "Switch to the preceding home generation. This is the inverse of @command{reconfigure}, and it is exactly the same as invoking @command{switch-generation} with an argument of @code{-1}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37647 +#: guix-git/doc/guix.texi:38126 #, no-wrap msgid "deleting home generations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37652 +#: guix-git/doc/guix.texi:38131 msgid "Delete home generations, making them candidates for garbage collection (@pxref{Invoking guix gc}, for information on how to run the ``garbage collector'')." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37656 +#: guix-git/doc/guix.texi:38135 msgid "This works in the same way as @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). With no arguments, all home generations but the current one are deleted:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37659 +#: guix-git/doc/guix.texi:38138 #, no-wrap msgid "guix home delete-generations\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37663 +#: guix-git/doc/guix.texi:38142 msgid "You can also select the generations you want to delete. The example below deletes all the home generations that are more than two months old:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37666 +#: guix-git/doc/guix.texi:38145 #, no-wrap msgid "guix home delete-generations 2m\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37672 +#: guix-git/doc/guix.texi:38151 msgid "Build the derivation of the home environment, which includes all the configuration files and programs needed. This action does not actually install anything." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37676 +#: guix-git/doc/guix.texi:38155 msgid "Describe the current home generation: its file name, as well as provenance information when available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37682 +#: guix-git/doc/guix.texi:38161 msgid "List a summary of each generation of the home environment available on disk, in a human-readable way. This is similar to the @option{--list-generations} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:37690 +#: guix-git/doc/guix.texi:38169 #, no-wrap msgid "$ guix home list-generations 10d\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37692 +#: guix-git/doc/guix.texi:38171 #, no-wrap msgid "import" -msgstr "" +msgstr "načítať" #. type: table -#: guix-git/doc/guix.texi:37699 +#: guix-git/doc/guix.texi:38178 msgid "Generate a @dfn{home environment} from the packages in the default profile and configuration files found in the user's home directory. The configuration files will be copied to the specified directory, and a @file{home-configuration.scm} will be populated with the home environment. Note that not every home service that exists is supported (@pxref{Home Services})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:37703 +#: guix-git/doc/guix.texi:38182 #, no-wrap msgid "" "$ guix home import ~/guix-config\n" @@ -66318,52 +67139,62 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37718 +#: guix-git/doc/guix.texi:38197 msgid "Consider the home-environment @var{expr} evaluates to. This is an alternative to specifying a file which evaluates to a home environment." msgstr "" +#. type: table +#: guix-git/doc/guix.texi:38200 +msgid "Instruct @command{guix home reconfigure} to allow system downgrades." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:38207 +msgid "Just like @command{guix system}, @command{guix home reconfigure}, by default, prevents you from downgrading your home to older or unrelated revisions compared to the channel revisions that were used to deploy it---those shown by @command{guix home describe}. Using @option{--allow-downgrades} allows you to bypass that check, at the risk of downgrading your home---be careful!" +msgstr "" + #. type: cindex -#: guix-git/doc/guix.texi:37724 +#: guix-git/doc/guix.texi:38213 #, no-wrap msgid "documentation, searching for" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37725 +#: guix-git/doc/guix.texi:38214 #, no-wrap msgid "searching for documentation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37726 +#: guix-git/doc/guix.texi:38215 #, no-wrap msgid "Info, documentation format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37727 +#: guix-git/doc/guix.texi:38216 #, no-wrap msgid "man pages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37728 +#: guix-git/doc/guix.texi:38217 #, no-wrap msgid "manual pages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37735 +#: guix-git/doc/guix.texi:38224 msgid "In most cases packages installed with Guix come with documentation. There are two main documentation formats: ``Info'', a browsable hypertext format used for GNU software, and ``manual pages'' (or ``man pages''), the linear documentation format traditionally found on Unix. Info manuals are accessed with the @command{info} command or with Emacs, and man pages are accessed using @command{man}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37739 +#: guix-git/doc/guix.texi:38228 msgid "You can look for documentation of software installed on your system by keyword. For example, the following command searches for information about ``TLS'' in Info manuals:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37747 +#: guix-git/doc/guix.texi:38236 #, no-wrap msgid "" "$ info -k TLS\n" @@ -66375,12 +67206,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37753 +#: guix-git/doc/guix.texi:38242 msgid "The command below searches for the same keyword in man pages@footnote{The database searched by @command{man -k} is only created in profiles that contain the @code{man-db} package.}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37759 +#: guix-git/doc/guix.texi:38248 #, no-wrap msgid "" "$ man -k TLS\n" @@ -66390,97 +67221,97 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37765 +#: guix-git/doc/guix.texi:38254 msgid "These searches are purely local to your computer so you have the guarantee that documentation you find corresponds to what you have actually installed, you can access it off-line, and your privacy is respected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37768 +#: guix-git/doc/guix.texi:38257 msgid "Once you have these results, you can view the relevant documentation by running, say:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37771 +#: guix-git/doc/guix.texi:38260 #, no-wrap msgid "$ info \"(gnutls)Core TLS API\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37775 +#: guix-git/doc/guix.texi:38264 msgid "or:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37778 +#: guix-git/doc/guix.texi:38267 #, no-wrap msgid "$ man certtool\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37786 +#: guix-git/doc/guix.texi:38275 msgid "Info manuals contain sections and indices as well as hyperlinks like those found in Web pages. The @command{info} reader (@pxref{Top, Info reader,, info-stnd, Stand-alone GNU Info}) and its Emacs counterpart (@pxref{Misc Help,,, emacs, The GNU Emacs Manual}) provide intuitive key bindings to navigate manuals. @xref{Getting Started,,, info, Info: An Introduction}, for an introduction to Info navigation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37790 +#: guix-git/doc/guix.texi:38279 #, no-wrap msgid "debugging files" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37796 +#: guix-git/doc/guix.texi:38285 msgid "Program binaries, as produced by the GCC compilers for instance, are typically written in the ELF format, with a section containing @dfn{debugging information}. Debugging information is what allows the debugger, GDB, to map binary code to source code; it is required to debug a compiled program in good conditions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37800 +#: guix-git/doc/guix.texi:38289 msgid "This chapter explains how to use separate debug info when packages provide it, and how to rebuild packages with debug info when it's missing." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37816 +#: guix-git/doc/guix.texi:38305 msgid "The problem with debugging information is that is takes up a fair amount of disk space. For example, debugging information for the GNU C Library weighs in at more than 60 MiB@. Thus, as a user, keeping all the debugging info of all the installed programs is usually not an option. Yet, space savings should not come at the cost of an impediment to debugging---especially in the GNU system, which should make it easier for users to exert their computing freedom (@pxref{GNU Distribution})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37823 +#: guix-git/doc/guix.texi:38312 msgid "Thankfully, the GNU Binary Utilities (Binutils) and GDB provide a mechanism that allows users to get the best of both worlds: debugging information can be stripped from the binaries and stored in separate files. GDB is then able to load debugging information from those files, when they are available (@pxref{Separate Debug Files,,, gdb, Debugging with GDB})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37831 +#: guix-git/doc/guix.texi:38320 msgid "The GNU distribution takes advantage of this by storing debugging information in the @code{lib/debug} sub-directory of a separate package output unimaginatively called @code{debug} (@pxref{Packages with Multiple Outputs}). Users can choose to install the @code{debug} output of a package when they need it. For instance, the following command installs the debugging information for the GNU C Library and for GNU Guile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37834 +#: guix-git/doc/guix.texi:38323 #, no-wrap msgid "guix install glibc:debug guile:debug\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37840 +#: guix-git/doc/guix.texi:38329 msgid "GDB must then be told to look for debug files in the user's profile, by setting the @code{debug-file-directory} variable (consider setting it from the @file{~/.gdbinit} file, @pxref{Startup,,, gdb, Debugging with GDB}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37843 +#: guix-git/doc/guix.texi:38332 #, no-wrap msgid "(gdb) set debug-file-directory ~/.guix-profile/lib/debug\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37847 +#: guix-git/doc/guix.texi:38336 msgid "From there on, GDB will pick up debugging information from the @file{.debug} files under @file{~/.guix-profile/lib/debug}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37852 +#: guix-git/doc/guix.texi:38341 msgid "Below is an alternative GDB script which is useful when working with other profiles. It takes advantage of the optional Guile integration in GDB. This snippet is included by default on Guix System in the @file{~/.gdbinit} file." msgstr "" #. type: example -#: guix-git/doc/guix.texi:37860 +#: guix-git/doc/guix.texi:38349 #, no-wrap msgid "" "guile\n" @@ -66492,32 +67323,32 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37868 +#: guix-git/doc/guix.texi:38357 msgid "In addition, you will most likely want GDB to be able to show the source code being debugged. To do that, you will have to unpack the source code of the package of interest (obtained with @code{guix build --source}, @pxref{Invoking guix build}), and to point GDB to that source directory using the @code{directory} command (@pxref{Source Path, @code{directory},, gdb, Debugging with GDB})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37876 +#: guix-git/doc/guix.texi:38365 msgid "The @code{debug} output mechanism in Guix is implemented by the @code{gnu-build-system} (@pxref{Build Systems}). Currently, it is opt-in---debugging information is available only for the packages with definitions explicitly declaring a @code{debug} output. To check whether a package has a @code{debug} output, use @command{guix package --list-available} (@pxref{Invoking guix package})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37878 +#: guix-git/doc/guix.texi:38367 msgid "Read on for how to deal with packages lacking a @code{debug} output." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37890 +#: guix-git/doc/guix.texi:38379 msgid "As we saw above, some packages, but not all, provide debugging info in a @code{debug} output. What can you do when debugging info is missing? The @option{--with-debug-info} option provides a solution to that: it allows you to rebuild the package(s) for which debugging info is missing---and only those---and to graft those onto the application you're debugging. Thus, while it's not as fast as installing a @code{debug} output, it is relatively inexpensive." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37895 +#: guix-git/doc/guix.texi:38384 msgid "Let's illustrate that. Suppose you're experiencing a bug in Inkscape and would like to see what's going on in GLib, a library that's deep down in its dependency graph. As it turns out, GLib does not have a @code{debug} output and the backtrace GDB shows is all sadness:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37906 +#: guix-git/doc/guix.texi:38395 #, no-wrap msgid "" "(gdb) bt\n" @@ -66532,17 +67363,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37910 +#: guix-git/doc/guix.texi:38399 msgid "To address that, you install Inkscape linked against a variant GLib that contains debug info:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37916 +#: guix-git/doc/guix.texi:38405 msgid "This time, debugging will be a whole lot nicer:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37934 +#: guix-git/doc/guix.texi:38423 #, no-wrap msgid "" "$ gdb --args sh -c 'exec inkscape'\n" @@ -66564,28 +67395,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37937 +#: guix-git/doc/guix.texi:38426 msgid "Much better!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37941 +#: guix-git/doc/guix.texi:38430 msgid "Note that there can be packages for which @option{--with-debug-info} will not have the desired effect. @xref{Package Transformation Options, @option{--with-debug-info}}, for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37945 +#: guix-git/doc/guix.texi:38434 #, no-wrap msgid "security updates" -msgstr "" +msgstr "bezpečnostné aktualizácie" #. type: Plain text -#: guix-git/doc/guix.texi:37954 +#: guix-git/doc/guix.texi:38443 msgid "Occasionally, important security vulnerabilities are discovered in software packages and must be patched. Guix developers try hard to keep track of known vulnerabilities and to apply fixes as soon as possible in the @code{master} branch of Guix (we do not yet provide a ``stable'' branch containing only security updates). The @command{guix lint} tool helps developers find out about vulnerable versions of software packages in the distribution:" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:37961 +#: guix-git/doc/guix.texi:38450 #, no-wrap msgid "" "$ guix lint -c cve\n" @@ -66596,39 +67427,39 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37964 +#: guix-git/doc/guix.texi:38453 msgid "@xref{Invoking guix lint}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37973 +#: guix-git/doc/guix.texi:38462 msgid "Guix follows a functional package management discipline (@pxref{Introduction}), which implies that, when a package is changed, @emph{every package that depends on it} must be rebuilt. This can significantly slow down the deployment of fixes in core packages such as libc or Bash, since basically the whole distribution would need to be rebuilt. Using pre-built binaries helps (@pxref{Substitutes}), but deployment may still take more time than desired." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37974 +#: guix-git/doc/guix.texi:38463 #, no-wrap msgid "grafts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37982 +#: guix-git/doc/guix.texi:38471 msgid "To address this, Guix implements @dfn{grafts}, a mechanism that allows for fast deployment of critical updates without the costs associated with a whole-distribution rebuild. The idea is to rebuild only the package that needs to be patched, and then to ``graft'' it onto packages explicitly installed by the user and that were previously referring to the original package. The cost of grafting is typically very low, and order of magnitudes lower than a full rebuild of the dependency chain." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37983 +#: guix-git/doc/guix.texi:38472 #, no-wrap msgid "replacements of packages, for grafts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37989 +#: guix-git/doc/guix.texi:38478 msgid "For instance, suppose a security update needs to be applied to Bash. Guix developers will provide a package definition for the ``fixed'' Bash, say @code{bash-fixed}, in the usual way (@pxref{Defining Packages}). Then, the original package definition is augmented with a @code{replacement} field pointing to the package containing the bug fix:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37996 +#: guix-git/doc/guix.texi:38485 #, no-wrap msgid "" "(define bash\n" @@ -66639,190 +67470,190 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38006 +#: guix-git/doc/guix.texi:38495 msgid "From there on, any package depending directly or indirectly on Bash---as reported by @command{guix gc --requisites} (@pxref{Invoking guix gc})---that is installed is automatically ``rewritten'' to refer to @code{bash-fixed} instead of @code{bash}. This grafting process takes time proportional to the size of the package, usually less than a minute for an ``average'' package on a recent machine. Grafting is recursive: when an indirect dependency requires grafting, then grafting ``propagates'' up to the package that the user is installing." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38014 +#: guix-git/doc/guix.texi:38503 msgid "Currently, the length of the name and version of the graft and that of the package it replaces (@code{bash-fixed} and @code{bash} in the example above) must be equal. This restriction mostly comes from the fact that grafting works by patching files, including binary files, directly. Other restrictions may apply: for instance, when adding a graft to a package providing a shared library, the original shared library and its replacement must have the same @code{SONAME} and be binary-compatible." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38018 +#: guix-git/doc/guix.texi:38507 msgid "The @option{--no-grafts} command-line option allows you to forcefully avoid grafting (@pxref{Common Build Options, @option{--no-grafts}}). Thus, the command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38021 +#: guix-git/doc/guix.texi:38510 #, no-wrap msgid "guix build bash --no-grafts\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38025 +#: guix-git/doc/guix.texi:38514 msgid "returns the store file name of the original Bash, whereas:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38028 +#: guix-git/doc/guix.texi:38517 #, no-wrap msgid "guix build bash\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38033 +#: guix-git/doc/guix.texi:38522 msgid "returns the store file name of the ``fixed'', replacement Bash. This allows you to distinguish between the two variants of Bash." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38036 +#: guix-git/doc/guix.texi:38525 msgid "To verify which Bash your whole profile refers to, you can run (@pxref{Invoking guix gc}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38039 +#: guix-git/doc/guix.texi:38528 #, no-wrap msgid "guix gc -R $(readlink -f ~/.guix-profile) | grep bash\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38044 +#: guix-git/doc/guix.texi:38533 msgid "@dots{} and compare the store file names that you get with those above. Likewise for a complete Guix system generation:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38047 +#: guix-git/doc/guix.texi:38536 #, no-wrap msgid "guix gc -R $(guix system build my-config.scm) | grep bash\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38051 +#: guix-git/doc/guix.texi:38540 msgid "Lastly, to check which Bash running processes are using, you can use the @command{lsof} command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38054 +#: guix-git/doc/guix.texi:38543 #, no-wrap msgid "lsof | grep /gnu/store/.*bash\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:38062 +#: guix-git/doc/guix.texi:38551 #, no-wrap msgid "bootstrapping" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38069 +#: guix-git/doc/guix.texi:38558 msgid "Bootstrapping in our context refers to how the distribution gets built ``from nothing''. Remember that the build environment of a derivation contains nothing but its declared inputs (@pxref{Introduction}). So there's an obvious chicken-and-egg problem: how does the first package get built? How does the first compiler get compiled?" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38077 +#: guix-git/doc/guix.texi:38566 msgid "It is tempting to think of this question as one that only die-hard hackers may care about. However, while the answer to that question is technical in nature, its implications are wide-ranging. How the distribution is bootstrapped defines the extent to which we, as individuals and as a collective of users and hackers, can trust the software we run. It is a central concern from the standpoint of @emph{security} and from a @emph{user freedom} viewpoint." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:38078 guix-git/doc/guix.texi:38290 +#: guix-git/doc/guix.texi:38567 guix-git/doc/guix.texi:38779 #, no-wrap msgid "bootstrap binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38088 +#: guix-git/doc/guix.texi:38577 msgid "The GNU system is primarily made of C code, with libc at its core. The GNU build system itself assumes the availability of a Bourne shell and command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and `grep'. Furthermore, build programs---programs that run @code{./configure}, @code{make}, etc.---are written in Guile Scheme (@pxref{Derivations}). Consequently, to be able to build anything at all, from scratch, Guix relies on pre-built binaries of Guile, GCC, Binutils, libc, and the other packages mentioned above---the @dfn{bootstrap binaries}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38092 +#: guix-git/doc/guix.texi:38581 msgid "These bootstrap binaries are ``taken for granted'', though we can also re-create them if needed (@pxref{Preparing to Use the Bootstrap Binaries})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:38099 +#: guix-git/doc/guix.texi:38588 #, no-wrap msgid "The Reduced Binary Seed Bootstrap" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38106 +#: guix-git/doc/guix.texi:38595 msgid "Guix---like other GNU/Linux distributions---is traditionally bootstrapped from a set of bootstrap binaries: Bourne shell, command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and `grep' and Guile, GCC, Binutils, and the GNU C Library (@pxref{Bootstrapping}). Usually, these bootstrap binaries are ``taken for granted.''" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38112 +#: guix-git/doc/guix.texi:38601 msgid "Taking the bootstrap binaries for granted means that we consider them to be a correct and trustworthy ``seed'' for building the complete system. Therein lies a problem: the combined size of these bootstrap binaries is about 250MB (@pxref{Bootstrappable Builds,,, mes, GNU Mes}). Auditing or even inspecting these is next to impossible." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38117 +#: guix-git/doc/guix.texi:38606 msgid "For @code{i686-linux} and @code{x86_64-linux}, Guix now features a ``Reduced Binary Seed'' bootstrap @footnote{We would like to say: ``Full Source Bootstrap'' and while we are working towards that goal it would be hyperbole to use that term for what we do now.}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38123 +#: guix-git/doc/guix.texi:38612 msgid "The Reduced Binary Seed bootstrap removes the most critical tools---from a trust perspective---from the bootstrap binaries: GCC, Binutils and the GNU C Library are replaced by: @code{bootstrap-mescc-tools} (a tiny assembler and linker) and @code{bootstrap-mes} (a small Scheme Interpreter and a C compiler written in Scheme and the Mes C Library, built for TinyCC and for GCC)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38128 +#: guix-git/doc/guix.texi:38617 msgid "Using these new binary seeds the ``missing'' Binutils, GCC, and the GNU C Library are built from source. From here on the more traditional bootstrap process resumes. This approach has reduced the bootstrap binaries in size to about 145MB in Guix v1.1." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38136 +#: guix-git/doc/guix.texi:38625 msgid "The next step that Guix has taken is to replace the shell and all its utilities with implementations in Guile Scheme, the @emph{Scheme-only bootstrap}. Gash (@pxref{Gash,,, gash, The Gash manual}) is a POSIX-compatible shell that replaces Bash, and it comes with Gash Utils which has minimalist replacements for Awk, the GNU Core Utilities, Grep, Gzip, Sed, and Tar. The rest of the bootstrap binary seeds that were removed are now built from source." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38146 +#: guix-git/doc/guix.texi:38635 msgid "Building the GNU System from source is currently only possible by adding some historical GNU packages as intermediate steps@footnote{Packages such as @code{gcc-2.95.3}, @code{binutils-2.14}, @code{glibc-2.2.5}, @code{gzip-1.2.4}, @code{tar-1.22}, and some others. For details, see @file{gnu/packages/commencement.scm}.}. As Gash and Gash Utils mature, and GNU packages become more bootstrappable again (e.g., new releases of GNU Sed will also ship as gzipped tarballs again, as alternative to the hard to bootstrap @code{xz}-compression), this set of added packages can hopefully be reduced again." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38150 +#: guix-git/doc/guix.texi:38639 msgid "The graph below shows the resulting dependency graph for @code{gcc-core-mesboot0}, the bootstrap compiler used for the traditional bootstrap of the rest of the Guix System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38153 +#: guix-git/doc/guix.texi:38642 msgid "@image{images/gcc-core-mesboot0-graph,6in,,Dependency graph of gcc-core-mesboot0}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38160 +#: guix-git/doc/guix.texi:38649 msgid "The only significant binary bootstrap seeds that remain@footnote{ Ignoring the 68KB @code{mescc-tools}; that will be removed later, together with @code{mes}.} are a Scheme interpreter and a Scheme compiler: GNU Mes and GNU Guile@footnote{Not shown in this graph are the static binaries for @file{bash}, @code{tar}, and @code{xz} that are used to get Guile running.}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38163 +#: guix-git/doc/guix.texi:38652 msgid "This further reduction has brought down the size of the binary seed to about 60MB for @code{i686-linux} and @code{x86_64-linux}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38168 +#: guix-git/doc/guix.texi:38657 msgid "Work is ongoing to remove all binary blobs from our free software bootstrap stack, working towards a Full Source Bootstrap. Also ongoing is work to bring these bootstraps to the @code{arm-linux} and @code{aarch64-linux} architectures and to the Hurd." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38172 +#: guix-git/doc/guix.texi:38661 msgid "If you are interested, join us on @samp{#bootstrappable} on the Freenode IRC network or discuss on @email{bug-mes@@gnu.org} or @email{gash-devel@@nongnu.org}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38179 +#: guix-git/doc/guix.texi:38668 msgid "@image{images/bootstrap-graph,6in,,Dependency graph of the early bootstrap derivations}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38184 +#: guix-git/doc/guix.texi:38673 msgid "The figure above shows the very beginning of the dependency graph of the distribution, corresponding to the package definitions of the @code{(gnu packages bootstrap)} module. A similar figure can be generated with @command{guix graph} (@pxref{Invoking guix graph}), along the lines of:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38189 +#: guix-git/doc/guix.texi:38678 #, no-wrap msgid "" "guix graph -t derivation \\\n" @@ -66831,12 +67662,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38192 +#: guix-git/doc/guix.texi:38681 msgid "or, for the further Reduced Binary Seed bootstrap" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38197 +#: guix-git/doc/guix.texi:38686 #, no-wrap msgid "" "guix graph -t derivation \\\n" @@ -66845,43 +67676,43 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38206 +#: guix-git/doc/guix.texi:38695 msgid "At this level of detail, things are slightly complex. First, Guile itself consists of an ELF executable, along with many source and compiled Scheme files that are dynamically loaded when it runs. This gets stored in the @file{guile-2.0.7.tar.xz} tarball shown in this graph. This tarball is part of Guix's ``source'' distribution, and gets inserted into the store with @code{add-to-store} (@pxref{The Store})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38215 +#: guix-git/doc/guix.texi:38704 msgid "But how do we write a derivation that unpacks this tarball and adds it to the store? To solve this problem, the @code{guile-bootstrap-2.0.drv} derivation---the first one that gets built---uses @code{bash} as its builder, which runs @code{build-bootstrap-guile.sh}, which in turn calls @code{tar} to unpack the tarball. Thus, @file{bash}, @file{tar}, @file{xz}, and @file{mkdir} are statically-linked binaries, also part of the Guix source distribution, whose sole purpose is to allow the Guile tarball to be unpacked." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38227 +#: guix-git/doc/guix.texi:38716 msgid "Once @code{guile-bootstrap-2.0.drv} is built, we have a functioning Guile that can be used to run subsequent build programs. Its first task is to download tarballs containing the other pre-built binaries---this is what the @file{.tar.xz.drv} derivations do. Guix modules such as @code{ftp-client.scm} are used for this purpose. The @code{module-import.drv} derivations import those modules in a directory in the store, using the original layout. The @code{module-import-compiled.drv} derivations compile those modules, and write them in an output directory with the right layout. This corresponds to the @code{#:modules} argument of @code{build-expression->derivation} (@pxref{Derivations})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38232 +#: guix-git/doc/guix.texi:38721 msgid "Finally, the various tarballs are unpacked by the derivations @code{gcc-bootstrap-0.drv}, @code{glibc-bootstrap-0.drv}, or @code{bootstrap-mes-0.drv} and @code{bootstrap-mescc-tools-0.drv}, at which point we have a working C tool chain." msgstr "" #. type: unnumberedsec -#: guix-git/doc/guix.texi:38233 +#: guix-git/doc/guix.texi:38722 #, no-wrap msgid "Building the Build Tools" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38242 +#: guix-git/doc/guix.texi:38731 msgid "Bootstrapping is complete when we have a full tool chain that does not depend on the pre-built bootstrap tools discussed above. This no-dependency requirement is verified by checking whether the files of the final tool chain contain references to the @file{/gnu/store} directories of the bootstrap inputs. The process that leads to this ``final'' tool chain is described by the package definitions found in the @code{(gnu packages commencement)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38249 +#: guix-git/doc/guix.texi:38738 msgid "The @command{guix graph} command allows us to ``zoom out'' compared to the graph above, by looking at the level of package objects instead of individual derivations---remember that a package may translate to several derivations, typically one derivation to download its source, one to build the Guile modules it needs, and one to actually build the package from source. The command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38254 +#: guix-git/doc/guix.texi:38743 #, no-wrap msgid "" "guix graph -t bag \\\n" @@ -66890,164 +67721,164 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38261 +#: guix-git/doc/guix.texi:38750 msgid "displays the dependency graph leading to the ``final'' C library@footnote{You may notice the @code{glibc-intermediate} label, suggesting that it is not @emph{quite} final, but as a good approximation, we will consider it final.}, depicted below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38263 +#: guix-git/doc/guix.texi:38752 msgid "@image{images/bootstrap-packages,6in,,Dependency graph of the early packages}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38269 +#: guix-git/doc/guix.texi:38758 msgid "The first tool that gets built with the bootstrap binaries is GNU@tie{}Make---noted @code{make-boot0} above---which is a prerequisite for all the following packages. From there Findutils and Diffutils get built." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38274 +#: guix-git/doc/guix.texi:38763 msgid "Then come the first-stage Binutils and GCC, built as pseudo cross tools---i.e., with @option{--target} equal to @option{--host}. They are used to build libc. Thanks to this cross-build trick, this libc is guaranteed not to hold any reference to the initial tool chain." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38280 +#: guix-git/doc/guix.texi:38769 msgid "From there the final Binutils and GCC (not shown above) are built. GCC uses @command{ld} from the final Binutils, and links programs against the just-built libc. This tool chain is used to build the other packages used by Guix and by the GNU Build System: Guile, Bash, Coreutils, etc." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38286 +#: guix-git/doc/guix.texi:38775 msgid "And voilà! At this point we have the complete set of build tools that the GNU Build System expects. These are in the @code{%final-inputs} variable of the @code{(gnu packages commencement)} module, and are implicitly used by any package that uses @code{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}})." msgstr "" #. type: unnumberedsec -#: guix-git/doc/guix.texi:38288 +#: guix-git/doc/guix.texi:38777 #, no-wrap msgid "Building the Bootstrap Binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38295 +#: guix-git/doc/guix.texi:38784 msgid "Because the final tool chain does not depend on the bootstrap binaries, those rarely need to be updated. Nevertheless, it is useful to have an automated way to produce them, should an update occur, and this is what the @code{(gnu packages make-bootstrap)} module provides." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38301 +#: guix-git/doc/guix.texi:38790 msgid "The following command builds the tarballs containing the bootstrap binaries (Binutils, GCC, glibc, for the traditional bootstrap and linux-libre-headers, bootstrap-mescc-tools, bootstrap-mes for the Reduced Binary Seed bootstrap, and Guile, and a tarball containing a mixture of Coreutils and other basic command-line tools):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38304 +#: guix-git/doc/guix.texi:38793 #, no-wrap msgid "guix build bootstrap-tarballs\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38309 +#: guix-git/doc/guix.texi:38798 msgid "The generated tarballs are those that should be referred to in the @code{(gnu packages bootstrap)} module mentioned at the beginning of this section." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38315 +#: guix-git/doc/guix.texi:38804 msgid "Still here? Then perhaps by now you've started to wonder: when do we reach a fixed point? That is an interesting question! The answer is unknown, but if you would like to investigate further (and have significant computational and storage resources to do so), then let us know." msgstr "" #. type: unnumberedsec -#: guix-git/doc/guix.texi:38316 +#: guix-git/doc/guix.texi:38805 #, no-wrap msgid "Reducing the Set of Bootstrap Binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38324 +#: guix-git/doc/guix.texi:38813 msgid "Our traditional bootstrap includes GCC, GNU Libc, Guile, etc. That's a lot of binary code! Why is that a problem? It's a problem because these big chunks of binary code are practically non-auditable, which makes it hard to establish what source code produced them. Every unauditable binary also leaves us vulnerable to compiler backdoors as described by Ken Thompson in the 1984 paper @emph{Reflections on Trusting Trust}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38330 +#: guix-git/doc/guix.texi:38819 msgid "This is mitigated by the fact that our bootstrap binaries were generated from an earlier Guix revision. Nevertheless it lacks the level of transparency that we get in the rest of the package dependency graph, where Guix always gives us a source-to-binary mapping. Thus, our goal is to reduce the set of bootstrap binaries to the bare minimum." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38336 +#: guix-git/doc/guix.texi:38825 msgid "The @uref{https://bootstrappable.org, Bootstrappable.org web site} lists on-going projects to do that. One of these is about replacing the bootstrap GCC with a sequence of assemblers, interpreters, and compilers of increasing complexity, which could be built from source starting from a simple and auditable assembler." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38345 +#: guix-git/doc/guix.texi:38834 msgid "Our first major achievement is the replacement of of GCC, the GNU C Library and Binutils by MesCC-Tools (a simple hex linker and macro assembler) and Mes (@pxref{Top, GNU Mes Reference Manual,, mes, GNU Mes}, a Scheme interpreter and C compiler in Scheme). Neither MesCC-Tools nor Mes can be fully bootstrapped yet and thus we inject them as binary seeds. We call this the Reduced Binary Seed bootstrap, as it has halved the size of our bootstrap binaries! Also, it has eliminated the C compiler binary; i686-linux and x86_64-linux Guix packages are now bootstrapped without any binary C compiler." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38348 +#: guix-git/doc/guix.texi:38837 msgid "Work is ongoing to make MesCC-Tools and Mes fully bootstrappable and we are also looking at any other bootstrap binaries. Your help is welcome!" msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:38350 +#: guix-git/doc/guix.texi:38839 #, no-wrap msgid "Porting to a New Platform" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38359 +#: guix-git/doc/guix.texi:38848 msgid "As discussed above, the GNU distribution is self-contained, and self-containment is achieved by relying on pre-built ``bootstrap binaries'' (@pxref{Bootstrapping}). These binaries are specific to an operating system kernel, CPU architecture, and application binary interface (ABI). Thus, to port the distribution to a platform that is not yet supported, one must build those bootstrap binaries, and update the @code{(gnu packages bootstrap)} module to use them on that platform." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38364 +#: guix-git/doc/guix.texi:38853 msgid "Fortunately, Guix can @emph{cross compile} those bootstrap binaries. When everything goes well, and assuming the GNU tool chain supports the target platform, this can be as simple as running a command like this one:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38367 +#: guix-git/doc/guix.texi:38856 #, no-wrap msgid "guix build --target=armv5tel-linux-gnueabi bootstrap-tarballs\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38374 +#: guix-git/doc/guix.texi:38863 msgid "For this to work, the @code{glibc-dynamic-linker} procedure in @code{(gnu packages bootstrap)} must be augmented to return the right file name for libc's dynamic linker on that platform; likewise, @code{system->linux-architecture} in @code{(gnu packages linux)} must be taught about the new platform." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38383 +#: guix-git/doc/guix.texi:38872 msgid "Once these are built, the @code{(gnu packages bootstrap)} module needs to be updated to refer to these binaries on the target platform. That is, the hashes and URLs of the bootstrap tarballs for the new platform must be added alongside those of the currently supported platforms. The bootstrap Guile tarball is treated specially: it is expected to be available locally, and @file{gnu/local.mk} has rules to download it for the supported architectures; a rule for the new platform must be added as well." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38392 +#: guix-git/doc/guix.texi:38881 msgid "In practice, there may be some complications. First, it may be that the extended GNU triplet that specifies an ABI (like the @code{eabi} suffix above) is not recognized by all the GNU tools. Typically, glibc recognizes some of these, whereas GCC uses an extra @option{--with-abi} configure flag (see @code{gcc.scm} for examples of how to handle this). Second, some of the required packages could fail to build for that platform. Lastly, the generated binaries could be broken for some reason." msgstr "" #. type: include -#: guix-git/doc/guix.texi:38394 +#: guix-git/doc/guix.texi:38883 #, no-wrap msgid "contributing.texi" msgstr "contributing.sk.texi" #. type: Plain text -#: guix-git/doc/guix.texi:38407 +#: guix-git/doc/guix.texi:38896 msgid "Guix is based on the @uref{https://nixos.org/nix/, Nix package manager}, which was designed and implemented by Eelco Dolstra, with contributions from other people (see the @file{nix/AUTHORS} file in Guix). Nix pioneered functional package management, and promoted unprecedented features, such as transactional package upgrades and rollbacks, per-user profiles, and referentially transparent build processes. Without this work, Guix would not exist." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38410 +#: guix-git/doc/guix.texi:38899 msgid "The Nix-based software distributions, Nixpkgs and NixOS, have also been an inspiration for Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38416 +#: guix-git/doc/guix.texi:38905 msgid "GNU@tie{}Guix itself is a collective work with contributions from a number of people. See the @file{AUTHORS} file in Guix for more information on these fine people. The @file{THANKS} file lists people who have helped by reporting bugs, taking care of the infrastructure, providing artwork and themes, making suggestions, and more---thank you!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:38421 +#: guix-git/doc/guix.texi:38910 #, no-wrap msgid "license, GNU Free Documentation License" msgstr "" #. type: include -#: guix-git/doc/guix.texi:38422 +#: guix-git/doc/guix.texi:38911 #, no-wrap msgid "fdl-1.3.texi" msgstr "" diff --git a/po/doc/guix-manual.zh_CN.po b/po/doc/guix-manual.zh_CN.po index 2cdaaacb6c..28c1ff6e89 100644 --- a/po/doc/guix-manual.zh_CN.po +++ b/po/doc/guix-manual.zh_CN.po @@ -7,20 +7,21 @@ # Xinglu Chen , 2021. # Charles Lee , 2021. # Went He <1437061699@qq.com>, 2021. +# Whired Planck , 2022. msgid "" msgstr "" "Project-Id-Version: guix-manual 1.0.1-pre1\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2021-12-21 15:18+0000\n" -"PO-Revision-Date: 2021-09-13 10:04+0000\n" -"Last-Translator: Charles Lee \n" +"POT-Creation-Date: 2022-02-02 15:18+0000\n" +"PO-Revision-Date: 2022-01-27 19:16+0000\n" +"Last-Translator: Whired Planck \n" "Language-Team: Chinese (Simplified) \n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.8\n" +"X-Generator: Weblate 4.10.1\n" "X-Bugs: Report translation errors to the Language-Team address.\n" #. #-#-#-#-# contributing.pot (guix manual checkout) #-#-#-#-# @@ -35,10 +36,8 @@ msgstr "贡献" #. type: Plain text #: guix-git/doc/contributing.texi:9 -#, fuzzy -#| msgid "This project is a cooperative effort, and we need your help to make it grow! Please get in touch with us on @email{guix-devel@@gnu.org} and @code{#guix} on the Freenode IRC network. We welcome ideas, bug reports, patches, and anything that may be helpful to the project. We particularly welcome help on packaging (@pxref{Packaging Guidelines})." msgid "This project is a cooperative effort, and we need your help to make it grow! Please get in touch with us on @email{guix-devel@@gnu.org} and @code{#guix} on the Libera Chat IRC network. We welcome ideas, bug reports, patches, and anything that may be helpful to the project. We particularly welcome help on packaging (@pxref{Packaging Guidelines})." -msgstr "这个项目是大家合作的成果,我们需要你的帮助以更好地发展。请通过@email{guix-devel@@gnu.org} 和 Freenode IRC 上的 @code{#guix} 联系我们。我们欢迎您的想法、bug反馈、补丁,以及任何可能对项目有帮助的贡献。我们特别欢迎帮助我们打包(@pxref{Packaging Guidelines})。" +msgstr "本项目是团体合作成果,我们需要您的帮助以更好地发展。请通过 @email{guix-devel@@gnu.org} 邮箱和 Libera Chat IRC 网络上的 @code{#guix} 频道联系我们。我们欢迎您的想法、Bug 反馈、补丁和任何可能对项目有帮助的贡献。我们特别欢迎帮助我们打包(@pxref{Packaging Guidelines})。" #. type: cindex #: guix-git/doc/contributing.texi:10 @@ -75,8 +74,8 @@ msgid "The latest and greatest." msgstr "最新的并且最好的。" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:161 -#: guix-git/doc/contributing.texi:162 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:173 +#: guix-git/doc/contributing.texi:174 #, no-wrap msgid "Running Guix Before It Is Installed" msgstr "在安装之前运行Guix" @@ -87,8 +86,8 @@ msgid "Hacker tricks." msgstr "黑客技巧。" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:235 -#: guix-git/doc/contributing.texi:236 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:265 +#: guix-git/doc/contributing.texi:266 #, no-wrap msgid "The Perfect Setup" msgstr "完美的配置" @@ -99,8 +98,8 @@ msgid "The right tools." msgstr "正确的工具。" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:326 -#: guix-git/doc/contributing.texi:327 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:356 +#: guix-git/doc/contributing.texi:357 #, no-wrap msgid "Packaging Guidelines" msgstr "打包指导" @@ -111,8 +110,8 @@ msgid "Growing the distribution." msgstr "帮助发行版成长。" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:890 -#: guix-git/doc/contributing.texi:891 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:920 +#: guix-git/doc/contributing.texi:921 #, no-wrap msgid "Coding Style" msgstr "代码风格" @@ -123,8 +122,8 @@ msgid "Hygiene of the contributor." msgstr "出资者的卫生状况。" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:989 -#: guix-git/doc/contributing.texi:990 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1013 +#: guix-git/doc/contributing.texi:1014 #, no-wrap msgid "Submitting Patches" msgstr "提交补丁" @@ -135,20 +134,20 @@ msgid "Share your work." msgstr "分享你的工作。" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1270 -#: guix-git/doc/contributing.texi:1271 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1298 +#: guix-git/doc/contributing.texi:1299 #, no-wrap msgid "Tracking Bugs and Patches" -msgstr "" +msgstr "跟踪 Bug 和补丁" #. type: menuentry #: guix-git/doc/contributing.texi:33 msgid "Keeping it all organized." -msgstr "" +msgstr "保持井井有条。" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1385 -#: guix-git/doc/contributing.texi:1386 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1413 +#: guix-git/doc/contributing.texi:1414 #, no-wrap msgid "Commit Access" msgstr "提交权利" @@ -159,8 +158,8 @@ msgid "Pushing to the official repository." msgstr "推送到管方的仓库。" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1611 -#: guix-git/doc/contributing.texi:1612 +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1644 +#: guix-git/doc/contributing.texi:1645 #, no-wrap msgid "Updating the Guix Package" msgstr "更新Guix软件包" @@ -171,17 +170,16 @@ msgid "Updating the Guix package definition." msgstr "更新Guix的软件包定义。" #. type: section -#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1652 -#: guix-git/doc/contributing.texi:1653 -#, fuzzy, no-wrap -#| msgid "Testing Guix." +#: guix-git/doc/contributing.texi:33 guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1686 +#, no-wrap msgid "Translating Guix" -msgstr "测试Guix。" +msgstr "翻译 Guix" #. type: menuentry #: guix-git/doc/contributing.texi:33 msgid "Make Guix speak your native language." -msgstr "" +msgstr "用您的母语翻译 Guix。" #. type: Plain text #: guix-git/doc/contributing.texi:40 @@ -362,30 +360,31 @@ msgid "make authenticate GUIX_GIT_KEYRING=myremote/keyring\n" msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:154 guix-git/doc/contributing.texi:1463 -#: guix-git/doc/guix.texi:594 guix-git/doc/guix.texi:643 -#: guix-git/doc/guix.texi:833 guix-git/doc/guix.texi:1813 -#: guix-git/doc/guix.texi:2060 guix-git/doc/guix.texi:2244 -#: guix-git/doc/guix.texi:2465 guix-git/doc/guix.texi:2677 -#: guix-git/doc/guix.texi:3807 guix-git/doc/guix.texi:4548 -#: guix-git/doc/guix.texi:4562 guix-git/doc/guix.texi:4644 -#: guix-git/doc/guix.texi:4874 guix-git/doc/guix.texi:5615 -#: guix-git/doc/guix.texi:6082 guix-git/doc/guix.texi:6333 -#: guix-git/doc/guix.texi:6454 guix-git/doc/guix.texi:6482 -#: guix-git/doc/guix.texi:6535 guix-git/doc/guix.texi:9391 -#: guix-git/doc/guix.texi:9461 guix-git/doc/guix.texi:11198 -#: guix-git/doc/guix.texi:11238 guix-git/doc/guix.texi:11512 -#: guix-git/doc/guix.texi:11524 guix-git/doc/guix.texi:14000 -#: guix-git/doc/guix.texi:14631 guix-git/doc/guix.texi:15521 -#: guix-git/doc/guix.texi:16507 guix-git/doc/guix.texi:19140 -#: guix-git/doc/guix.texi:19310 guix-git/doc/guix.texi:27188 -#: guix-git/doc/guix.texi:30914 guix-git/doc/guix.texi:34669 -#: guix-git/doc/guix.texi:34903 guix-git/doc/guix.texi:35073 -#: guix-git/doc/guix.texi:35232 guix-git/doc/guix.texi:35334 -#: guix-git/doc/guix.texi:35435 guix-git/doc/guix.texi:35738 -#: guix-git/doc/guix.texi:36896 guix-git/doc/guix.texi:36971 -#: guix-git/doc/guix.texi:37006 guix-git/doc/guix.texi:37056 -#: guix-git/doc/guix.texi:37143 guix-git/doc/guix.texi:37564 +#: guix-git/doc/contributing.texi:154 guix-git/doc/contributing.texi:1496 +#: guix-git/doc/guix.texi:605 guix-git/doc/guix.texi:654 +#: guix-git/doc/guix.texi:844 guix-git/doc/guix.texi:1830 +#: guix-git/doc/guix.texi:2077 guix-git/doc/guix.texi:2261 +#: guix-git/doc/guix.texi:2482 guix-git/doc/guix.texi:2694 +#: guix-git/doc/guix.texi:3825 guix-git/doc/guix.texi:4566 +#: guix-git/doc/guix.texi:4580 guix-git/doc/guix.texi:4662 +#: guix-git/doc/guix.texi:4892 guix-git/doc/guix.texi:5633 +#: guix-git/doc/guix.texi:6119 guix-git/doc/guix.texi:6376 +#: guix-git/doc/guix.texi:6497 guix-git/doc/guix.texi:6525 +#: guix-git/doc/guix.texi:6578 guix-git/doc/guix.texi:9581 +#: guix-git/doc/guix.texi:9705 guix-git/doc/guix.texi:9775 +#: guix-git/doc/guix.texi:11512 guix-git/doc/guix.texi:11552 +#: guix-git/doc/guix.texi:11826 guix-git/doc/guix.texi:11838 +#: guix-git/doc/guix.texi:14357 guix-git/doc/guix.texi:14988 +#: guix-git/doc/guix.texi:15878 guix-git/doc/guix.texi:16864 +#: guix-git/doc/guix.texi:19502 guix-git/doc/guix.texi:19672 +#: guix-git/doc/guix.texi:27525 guix-git/doc/guix.texi:31279 +#: guix-git/doc/guix.texi:35108 guix-git/doc/guix.texi:35342 +#: guix-git/doc/guix.texi:35512 guix-git/doc/guix.texi:35676 +#: guix-git/doc/guix.texi:35778 guix-git/doc/guix.texi:35817 +#: guix-git/doc/guix.texi:35891 guix-git/doc/guix.texi:36228 +#: guix-git/doc/guix.texi:37386 guix-git/doc/guix.texi:37461 +#: guix-git/doc/guix.texi:37496 guix-git/doc/guix.texi:37546 +#: guix-git/doc/guix.texi:37633 guix-git/doc/guix.texi:38043 #, no-wrap msgid "Note" msgstr "注" @@ -396,29 +395,47 @@ msgid "You are advised to run @command{make authenticate} after every @command{g msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:168 +#: guix-git/doc/contributing.texi:162 +msgid "After updating the repository, @command{make} might fail with an error similar to the following example:" +msgstr "" + +#. type: example +#: guix-git/doc/contributing.texi:166 +#, no-wrap +msgid "" +"error: failed to load 'gnu/packages/dunst.scm':\n" +"ice-9/eval.scm:293:34: In procedure abi-check: #>: record ABI mismatch; recompilation needed\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:172 +msgid "This means that one of the record types that Guix defines (in this example, the @code{origin} record) has changed, and all of guix needs to be recompiled to take that change into account. To do so, run @command{make clean-go} followed by @command{make}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:180 msgid "In order to keep a sane working environment, you will find it useful to test the changes made in your local source tree checkout without actually installing them. So that you can distinguish between your ``end-user'' hat and your ``motley'' costume." msgstr "为了保持一个合适的工作环境,你会发现在你的本地代码树里测试修改而不用安装它们会很有用。TODO: So that you can distinguish between your ``end-user'' hat and your ``motley'' costume." #. type: Plain text -#: guix-git/doc/contributing.texi:179 +#: guix-git/doc/contributing.texi:191 #, fuzzy msgid "To that end, all the command-line tools can be used even if you have not run @code{make install}. To do that, you first need to have an environment with all the dependencies available (@pxref{Building from Git}), and then simply prefix each command with @command{./pre-inst-env} (the @file{pre-inst-env} script lives in the top build tree of Guix; it is generated by running @command{./bootstrap} followed by @command{./configure}). As an example, here is how you would build the @code{hello} package as defined in your working tree (this assumes @command{guix-daemon} is already running on your system; it's OK if it's a different version):" msgstr "这样,即使你没有运行@code{make install},所有的命令行工具都可以使用。为此,你先要有一个包含全部依赖的环境(@pxref{Building from Git}),然后,为所有的命令添加前缀@command{./pre-inst-env}(@file{pre-inst-env}脚本在Guix构建树的最顶层,它由@command{./configure}生成),如@footnote{@command{sudo}命令的@option{-E}参数确保@code{GUILE_LOAD_PATH}被正确设置,从而@command{guix-daemon}和它使用的工具可以找到它们需要的Guile模块。}:" #. type: example -#: guix-git/doc/contributing.texi:182 +#: guix-git/doc/contributing.texi:194 #, fuzzy, no-wrap msgid "$ ./pre-inst-env guix build hello\n" msgstr "./pre-inst-env guix build gnew --keep-failed\n" #. type: Plain text -#: guix-git/doc/contributing.texi:186 +#: guix-git/doc/contributing.texi:198 msgid "Similarly, an example for a Guile session using the Guix modules:" msgstr "同样,一个使用 Guix 模块的 Guile 会话的例子:" #. type: example -#: guix-git/doc/contributing.texi:189 +#: guix-git/doc/contributing.texi:201 #, no-wrap msgid "" "$ ./pre-inst-env guile -c '(use-modules (guix utils)) (pk (%current-system))'\n" @@ -428,30 +445,30 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/contributing.texi:191 +#: guix-git/doc/contributing.texi:203 #, no-wrap msgid ";;; (\"x86_64-linux\")\n" msgstr ";;; (\"x86_64-linux\")\n" #. type: cindex -#: guix-git/doc/contributing.texi:194 +#: guix-git/doc/contributing.texi:206 #, no-wrap msgid "REPL" msgstr "REPL" #. type: cindex -#: guix-git/doc/contributing.texi:195 +#: guix-git/doc/contributing.texi:207 #, no-wrap msgid "read-eval-print loop" msgstr "read-eval-print loop" #. type: Plain text -#: guix-git/doc/contributing.texi:198 +#: guix-git/doc/contributing.texi:210 msgid "@dots{} and for a REPL (@pxref{Using Guile Interactively,,, guile, Guile Reference Manual}):" msgstr "@dots{} and for a REPL (@pxref{Using Guile Interactively,,, guile, Guile Reference Manual}):" #. type: example -#: guix-git/doc/contributing.texi:213 +#: guix-git/doc/contributing.texi:225 #, no-wrap msgid "" "$ ./pre-inst-env guile\n" @@ -483,13 +500,13 @@ msgstr "" "$1 = 361\n" #. type: Plain text -#: guix-git/doc/contributing.texi:221 +#: guix-git/doc/contributing.texi:233 #, fuzzy msgid "If you are hacking on the daemon and its supporting code or if @command{guix-daemon} is not already running on your system, you can launch it straight from the build tree@footnote{The @option{-E} flag to @command{sudo} guarantees that @code{GUILE_LOAD_PATH} is correctly set such that @command{guix-daemon} and the tools it uses can find the Guile modules they need.}:" msgstr "这样,即使你没有运行@code{make install},所有的命令行工具都可以使用。为此,你先要有一个包含全部依赖的环境(@pxref{Building from Git}),然后,为所有的命令添加前缀@command{./pre-inst-env}(@file{pre-inst-env}脚本在Guix构建树的最顶层,它由@command{./configure}生成),如@footnote{@command{sudo}命令的@option{-E}参数确保@code{GUILE_LOAD_PATH}被正确设置,从而@command{guix-daemon}和它使用的工具可以找到它们需要的Guile模块。}:" #. type: example -#: guix-git/doc/contributing.texi:224 +#: guix-git/doc/contributing.texi:236 #, fuzzy, no-wrap msgid "$ sudo -E ./pre-inst-env guix-daemon --build-users-group=guixbuild\n" msgstr "" @@ -497,34 +514,57 @@ msgstr "" "$ ./pre-inst-env guix build hello\n" #. type: Plain text -#: guix-git/doc/contributing.texi:228 +#: guix-git/doc/contributing.texi:240 msgid "The @command{pre-inst-env} script sets up all the environment variables necessary to support this, including @env{PATH} and @env{GUILE_LOAD_PATH}." msgstr "@command{pre-inst-env}脚本设置为此好了所有必要的的环境变量,包括@env{PATH}和@env{GUILE_LOAD_PATH}。" #. type: Plain text -#: guix-git/doc/contributing.texi:233 +#: guix-git/doc/contributing.texi:245 msgid "Note that @command{./pre-inst-env guix pull} does @emph{not} upgrade the local source tree; it simply updates the @file{~/.config/guix/current} symlink (@pxref{Invoking guix pull}). Run @command{git pull} instead if you want to upgrade your local source tree." msgstr "@command{./pre-inst-env guix pull} @emph{不} 会更新本地源代码树,它只更新符号链接@file{~/.config/guix/current} (@pxref{Invoking guix pull})。如果你想更新本地源代码树,请运行@command{git pull}。" #. type: Plain text -#: guix-git/doc/contributing.texi:243 +#: guix-git/doc/contributing.texi:249 +msgid "Sometimes, especially if you have recently updated your repository, running @command{./pre-inst-env} will print a message similar to the following example:" +msgstr "" + +#. type: example +#: guix-git/doc/contributing.texi:253 +#, no-wrap +msgid "" +";;; note: source file /home/user/projects/guix/guix/progress.scm\n" +";;; newer than compiled /home/user/projects/guix/guix/progress.go\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:259 +msgid "This is only a note and you can safely ignore it. You can get rid of the message by running @command{make -j4}. Until you do, Guile will run slightly slower because it will interpret the code instead of using prepared Guile object (@file{.go}) files." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:264 +msgid "You can run @command{make} automatically as you work using @command{watchexec} from the @code{watchexec} package. For example, to build again each time you update a package file, you can run @samp{watchexec -w gnu/packages make -j4}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/contributing.texi:273 msgid "The Perfect Setup to hack on Guix is basically the perfect setup used for Guile hacking (@pxref{Using Guile in Emacs,,, guile, Guile Reference Manual}). First, you need more than an editor, you need @url{https://www.gnu.org/software/emacs, Emacs}, empowered by the wonderful @url{https://nongnu.org/geiser/, Geiser}. To set that up, run:" msgstr "折腾 Guix 的完美配置也是折腾 Guile 的完美配置 @pxref{Using Guile in Emacs,,, guile, Guile Reference Manual})。首先,你需要的不仅是一个编辑器,你需要 @url{https://www.gnu.org/software/emacs, Emacs},以及美妙的 @url{http://nongnu.org/geiser/, Geiser}。为此,运行:" #. type: example -#: guix-git/doc/contributing.texi:246 +#: guix-git/doc/contributing.texi:276 #, fuzzy, no-wrap #| msgid "guix package -i emacs guile emacs-geiser\n" msgid "guix package -i emacs guile emacs-geiser emacs-geiser-guile\n" msgstr "guix package -i emacs guile emacs-geiser\n" #. type: Plain text -#: guix-git/doc/contributing.texi:255 +#: guix-git/doc/contributing.texi:285 msgid "Geiser allows for interactive and incremental development from within Emacs: code compilation and evaluation from within buffers, access to on-line documentation (docstrings), context-sensitive completion, @kbd{M-.} to jump to an object definition, a REPL to try out your code, and more (@pxref{Introduction,,, geiser, Geiser User Manual}). For convenient Guix development, make sure to augment Guile’s load path so that it finds source files from your checkout:" msgstr "Geiser 允许在 Emacs 里进行交互式的、增长式的开发:buffer 里的代码补全和执行,获取一行的文档 (docstrings),上下文敏感的补全,@kbd{M-.} 跳转到对象定义,测试代码的 REPL,及更多(@pxref{Introduction,,, geiser, Geiser User Manual})。为了方便的 Guix 开发,请确保修改 Guile 的加载路径 (load path) 以使其能从你的项目里找到源代码文件:" #. type: lisp -#: guix-git/doc/contributing.texi:260 +#: guix-git/doc/contributing.texi:290 #, no-wrap msgid "" ";; @r{Assuming the Guix checkout is in ~/src/guix.}\n" @@ -536,36 +576,36 @@ msgstr "" " (add-to-list 'geiser-guile-load-path \"~/src/guix\"))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:268 +#: guix-git/doc/contributing.texi:298 msgid "To actually edit the code, Emacs already has a neat Scheme mode. But in addition to that, you must not miss @url{https://www.emacswiki.org/emacs/ParEdit, Paredit}. It provides facilities to directly operate on the syntax tree, such as raising an s-expression or wrapping it, swallowing or rejecting the following s-expression, etc." msgstr "真正编辑代码时别忘了 Emacs 自带了方便的 Scheme 模式。而且,一定不要错过 @url{https://www.emacswiki.org/emacs/ParEdit, Paredit}。它提供了直接操作语法树的的功能,例如,用 S- 表达式替换父节点,为 S- 表达式添加、删除前后的括号,删除后面的 S- 表达式,等等。" #. type: cindex -#: guix-git/doc/contributing.texi:269 +#: guix-git/doc/contributing.texi:299 #, no-wrap msgid "code snippets" msgstr "代码片段" #. type: cindex -#: guix-git/doc/contributing.texi:270 +#: guix-git/doc/contributing.texi:300 #, no-wrap msgid "templates" msgstr "模板" #. type: cindex -#: guix-git/doc/contributing.texi:271 +#: guix-git/doc/contributing.texi:301 #, no-wrap msgid "reducing boilerplate" msgstr "减少样板" #. type: Plain text -#: guix-git/doc/contributing.texi:278 +#: guix-git/doc/contributing.texi:308 #, fuzzy msgid "We also provide templates for common git commit messages and package definitions in the @file{etc/snippets} directory. These templates can be used with @url{https://joaotavora.github.io/yasnippet/, YASnippet} to expand short trigger strings to interactive text snippets. You may want to add the snippets directory to the @var{yas-snippet-dirs} variable in Emacs." msgstr "在@file{etc/snippets}文件夹里,我们还为普通的git commit信息和软件包定义提供模板。这些模板可以通过@url{http://joaotavora.github.io/yasnippet/, YASnippet}使用,它可以把短的触发字符串扩展成交互式的文字片段。你可能希望将这个文件夹添加到Emacs的@var{yas-snippet-dirs}变量里。" #. type: lisp -#: guix-git/doc/contributing.texi:283 +#: guix-git/doc/contributing.texi:313 #, no-wrap msgid "" ";; @r{Assuming the Guix checkout is in ~/src/guix.}\n" @@ -577,40 +617,40 @@ msgstr "" " (add-to-list 'yas-snippet-dirs \"~/src/guix/etc/snippets\"))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:291 +#: guix-git/doc/contributing.texi:321 msgid "The commit message snippets depend on @url{https://magit.vc/, Magit} to display staged files. When editing a commit message type @code{add} followed by @kbd{TAB} to insert a commit message template for adding a package; type @code{update} followed by @kbd{TAB} to insert a template for updating a package; type @code{https} followed by @kbd{TAB} to insert a template for changing the home page URI of a package to HTTPS." msgstr "commit信息片段显示staged文件需要依赖@url{https://magit.vc/, Magit}。编辑commit信息时,输入@code{add},然后按@kbd{TAB}就可以插入一段用于新增软件包的模板;输入@code{update},然后按@kbd{TAB}可以插入一段更新软件包的模板;输入@code{https}然后按@kbd{TAB}可以插入一段修改主页URI为HTTPS的模板。" #. type: Plain text -#: guix-git/doc/contributing.texi:297 +#: guix-git/doc/contributing.texi:327 msgid "The main snippet for @code{scheme-mode} is triggered by typing @code{package...} followed by @kbd{TAB}. This snippet also inserts the trigger string @code{origin...}, which can be expanded further. The @code{origin} snippet in turn may insert other trigger strings ending on @code{...}, which also can be expanded further." msgstr "@code{scheme-mode}最重要的模板可以通过输入@code{package...},然后按@kbd{TAB}触发。这个片段还插入了触发字符串@code{origin...},以进一步展开。@code{origin}片段更进一步的可能插入其它以@code{...}结尾的触发字符串,它们可以被继续展开。" #. type: cindex -#: guix-git/doc/contributing.texi:298 +#: guix-git/doc/contributing.texi:328 #, no-wrap msgid "insert or update copyright" msgstr "" #. type: code{#1} -#: guix-git/doc/contributing.texi:299 +#: guix-git/doc/contributing.texi:329 #, no-wrap msgid "M-x guix-copyright" msgstr "" #. type: code{#1} -#: guix-git/doc/contributing.texi:300 +#: guix-git/doc/contributing.texi:330 #, no-wrap msgid "M-x copyright-update" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:304 +#: guix-git/doc/contributing.texi:334 msgid "We additionally provide insertion and automatic update of a copyright in @file{etc/copyright.el}. You may want to set your full name, mail, and load a file." msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:310 +#: guix-git/doc/contributing.texi:340 #, no-wrap msgid "" "(setq user-full-name \"Alice Doe\")\n" @@ -620,17 +660,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:313 +#: guix-git/doc/contributing.texi:343 msgid "To insert a copyright at the current line invoke @code{M-x guix-copyright}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:315 +#: guix-git/doc/contributing.texi:345 msgid "To update a copyright you need to specify a @code{copyright-names-regexp}." msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:319 +#: guix-git/doc/contributing.texi:349 #, no-wrap msgid "" "(setq copyright-names-regexp\n" @@ -638,285 +678,285 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:325 +#: guix-git/doc/contributing.texi:355 msgid "You can check if your copyright is up to date by evaluating @code{M-x copyright-update}. If you want to do it automatically after each buffer save then add @code{(add-hook 'after-save-hook 'copyright-update)} in Emacs." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:329 +#: guix-git/doc/contributing.texi:359 #, no-wrap msgid "packages, creating" msgstr "软件包, 创建" #. type: Plain text -#: guix-git/doc/contributing.texi:333 +#: guix-git/doc/contributing.texi:363 msgid "The GNU distribution is nascent and may well lack some of your favorite packages. This section describes how you can help make the distribution grow." msgstr "这个GNU发行版正在开发的早期阶段,可能缺少一些你喜欢的软件。这个章节介绍你可以怎样帮助这个发行版成长。" #. type: Plain text -#: guix-git/doc/contributing.texi:341 +#: guix-git/doc/contributing.texi:371 msgid "Free software packages are usually distributed in the form of @dfn{source code tarballs}---typically @file{tar.gz} files that contain all the source files. Adding a package to the distribution means essentially two things: adding a @dfn{recipe} that describes how to build the package, including a list of other packages required to build it, and adding @dfn{package metadata} along with that recipe, such as a description and licensing information." msgstr "自由软件通常以@dfn{源代码包}的形式分发,通常是包含完整代码的@file{tar.gz}包。添加软件包到这个发行版意味着两件事:添加描述如何构建包的@dfn{配方}和一系列依赖软件,以及添加配方之外的@dfn{软件包元数据},如一段文字描述和证书信息。" #. type: Plain text -#: guix-git/doc/contributing.texi:350 +#: guix-git/doc/contributing.texi:380 msgid "In Guix all this information is embodied in @dfn{package definitions}. Package definitions provide a high-level view of the package. They are written using the syntax of the Scheme programming language; in fact, for each package we define a variable bound to the package definition, and export that variable from a module (@pxref{Package Modules}). However, in-depth Scheme knowledge is @emph{not} a prerequisite for creating packages. For more information on package definitions, @pxref{Defining Packages}." msgstr "在Guix里所有这些信息都包含在@dfn{软件包定义}里。软件包定义提供了软件包的高层视角。它们使用Scheme编程语言编写,事实上,对每个软件包我们都定义一个绑定到软件包定义的的变量,并且从模块(@pxref{Package Modules})中导出那个变量。然而,深入的Scheme知识@emph{不}是创建软件包的前提条件。若要了解软件包的更多信息,@pxref{Defining Packages}。" #. type: Plain text -#: guix-git/doc/contributing.texi:356 +#: guix-git/doc/contributing.texi:386 msgid "Once a package definition is in place, stored in a file in the Guix source tree, it can be tested using the @command{guix build} command (@pxref{Invoking guix build}). For example, assuming the new package is called @code{gnew}, you may run this command from the Guix build tree (@pxref{Running Guix Before It Is Installed}):" msgstr "一旦软件包定义准备好了,并且包存在Guix代码树的一个文件里,你可以用@command{guix build} (@pxref{Invoking guix build})命令测试它。假设这个新软件包的名字叫做@code{gnew},你可以在Guix构建树里运行这个命令(@pxref{Running Guix Before It Is Installed}):" #. type: example -#: guix-git/doc/contributing.texi:359 +#: guix-git/doc/contributing.texi:389 #, no-wrap msgid "./pre-inst-env guix build gnew --keep-failed\n" msgstr "./pre-inst-env guix build gnew --keep-failed\n" #. type: Plain text -#: guix-git/doc/contributing.texi:365 +#: guix-git/doc/contributing.texi:395 msgid "Using @code{--keep-failed} makes it easier to debug build failures since it provides access to the failed build tree. Another useful command-line option when debugging is @code{--log-file}, to access the build log." msgstr "使用@code{--keep-failed}参数会保留失败的构建树,这可以使调试构建错误更容易。@code{--log-file}也是一个调试时很有用的参数,它可以用来访问构建日志。" #. type: Plain text -#: guix-git/doc/contributing.texi:370 +#: guix-git/doc/contributing.texi:400 msgid "If the package is unknown to the @command{guix} command, it may be that the source file contains a syntax error, or lacks a @code{define-public} clause to export the package variable. To figure it out, you may load the module from Guile to get more information about the actual error:" msgstr "如果@command{guix}命令找不到这个软件包,那可能是因为源文件包含语法错误,或者缺少导出软件包的@code{define-public}语句。为了查找错误,你可以用Guile导入这个模块以了解这个错误的详情:" #. type: example -#: guix-git/doc/contributing.texi:373 +#: guix-git/doc/contributing.texi:403 #, no-wrap msgid "./pre-inst-env guile -c '(use-modules (gnu packages gnew))'\n" msgstr "./pre-inst-env guile -c '(use-modules (gnu packages gnew))'\n" #. type: Plain text -#: guix-git/doc/contributing.texi:380 +#: guix-git/doc/contributing.texi:410 #, fuzzy msgid "Once your package builds correctly, please send us a patch (@pxref{Submitting Patches}). Well, if you need help, we will be happy to help you too. Once the patch is committed in the Guix repository, the new package automatically gets built on the supported platforms by @url{https://@value{SUBSTITUTE-SERVER-1}, our continuous integration system}." msgstr "一旦你的软件包可以正确构建,请给我们发送补丁(@pxref{Submitting Patches})。当然,如果你需要帮助,我们也会很乐意帮助你。一旦补丁被提交到 Guix 仓库里,这个新的软件包会被自动地在支持的平台上构建 @url{@value{SUBSTITUTE-URL}, our continuous integration system}。" #. type: cindex -#: guix-git/doc/contributing.texi:381 +#: guix-git/doc/contributing.texi:411 #, no-wrap msgid "substituter" msgstr "substitutes" #. type: Plain text -#: guix-git/doc/contributing.texi:388 +#: guix-git/doc/contributing.texi:418 #, fuzzy #| msgid "Users can obtain the new package definition simply by running @command{guix pull} (@pxref{Invoking guix pull}). When @code{@value{SUBSTITUTE-SERVER}} is done building the package, installing the package automatically downloads binaries from there (@pxref{Substitutes}). The only place where human intervention is needed is to review and apply the patch." msgid "Users can obtain the new package definition simply by running @command{guix pull} (@pxref{Invoking guix pull}). When @code{@value{SUBSTITUTE-SERVER-1}} is done building the package, installing the package automatically downloads binaries from there (@pxref{Substitutes}). The only place where human intervention is needed is to review and apply the patch." msgstr "用户可以通过运行@command{guix pull}命令获取最新的软件包定义(@pxref{Invoking guix pull})。当@code{@value{SUBSTITUTE-SERVER}}构建好这些软件包之后,安装这些软件包时会自动从服务器(@pxref{Substitutes})上下载构建好的二进制包。唯一需要人工干预的地方是评审和应用代码补丁。" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:404 -#: guix-git/doc/contributing.texi:405 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:434 +#: guix-git/doc/contributing.texi:435 #, no-wrap msgid "Software Freedom" msgstr "软件自由" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "What may go into the distribution." msgstr "什么可以进入这个发行版。" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:432 -#: guix-git/doc/contributing.texi:433 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:462 +#: guix-git/doc/contributing.texi:463 #, no-wrap msgid "Package Naming" msgstr "软件包命名" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "What's in a name?" msgstr "名字里包含什么?" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:465 -#: guix-git/doc/contributing.texi:466 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:495 +#: guix-git/doc/contributing.texi:496 #, no-wrap msgid "Version Numbers" msgstr "版本号" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "When the name is not enough." msgstr "当名字不够时。" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:572 -#: guix-git/doc/contributing.texi:573 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:602 +#: guix-git/doc/contributing.texi:603 #, no-wrap msgid "Synopses and Descriptions" msgstr "简介和描述" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Helping users find the right package." msgstr "帮助用户寻找合适的软件包。" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:651 -#: guix-git/doc/contributing.texi:652 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:681 +#: guix-git/doc/contributing.texi:682 #, no-wrap msgid "Snippets versus Phases" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Whether to use a snippet, or a build phase." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:666 -#: guix-git/doc/contributing.texi:667 guix-git/doc/guix.texi:1995 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:696 +#: guix-git/doc/contributing.texi:697 guix-git/doc/guix.texi:2012 #, no-wrap msgid "Emacs Packages" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Your Elisp fix." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:706 -#: guix-git/doc/contributing.texi:707 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:736 +#: guix-git/doc/contributing.texi:737 #, no-wrap msgid "Python Modules" msgstr "Python模块" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "A touch of British comedy." msgstr "接触英式的喜剧。" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:782 -#: guix-git/doc/contributing.texi:783 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:812 +#: guix-git/doc/contributing.texi:813 #, no-wrap msgid "Perl Modules" msgstr "Perl模块" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Little pearls." msgstr "小珍珠。" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:798 -#: guix-git/doc/contributing.texi:799 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:828 +#: guix-git/doc/contributing.texi:829 #, no-wrap msgid "Java Packages" msgstr "Java包" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Coffee break." msgstr "喝咖啡休息。" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:818 -#: guix-git/doc/contributing.texi:819 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:848 +#: guix-git/doc/contributing.texi:849 #, no-wrap msgid "Rust Crates" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Beware of oxidation." msgstr "谨防氧化。" #. type: subsection -#: guix-git/doc/contributing.texi:402 guix-git/doc/contributing.texi:852 -#: guix-git/doc/contributing.texi:853 +#: guix-git/doc/contributing.texi:432 guix-git/doc/contributing.texi:882 +#: guix-git/doc/contributing.texi:883 #, no-wrap msgid "Fonts" msgstr "字体" #. type: menuentry -#: guix-git/doc/contributing.texi:402 +#: guix-git/doc/contributing.texi:432 msgid "Fond of fonts." msgstr "字体的乐趣。" #. type: cindex -#: guix-git/doc/contributing.texi:408 +#: guix-git/doc/contributing.texi:438 #, no-wrap msgid "free software" msgstr "自由软件" #. type: Plain text -#: guix-git/doc/contributing.texi:416 +#: guix-git/doc/contributing.texi:446 msgid "The GNU operating system has been developed so that users can have freedom in their computing. GNU is @dfn{free software}, meaning that users have the @url{https://www.gnu.org/philosophy/free-sw.html,four essential freedoms}: to run the program, to study and change the program in source code form, to redistribute exact copies, and to distribute modified versions. Packages found in the GNU distribution provide only software that conveys these four freedoms." msgstr "开发 GNU 操作系统是为了用户拥有计算的自由。GNU是@dfn{自由软件},这意味着它有@url{https://www.gnu.org/philosophy/free-sw.html,四项重要的自由}:运行程序的自由,以源代码形式学习和修改程序的自由,原样重新分发副本的自由,和分发修改后的版本的自由。GNU 发行版里包含的软件包只提供遵守这四项自由的软件。" #. type: Plain text -#: guix-git/doc/contributing.texi:422 +#: guix-git/doc/contributing.texi:452 msgid "In addition, the GNU distribution follow the @url{https://www.gnu.org/distros/free-system-distribution-guidelines.html,free software distribution guidelines}. Among other things, these guidelines reject non-free firmware, recommendations of non-free software, and discuss ways to deal with trademarks and patents." msgstr "此外,GNU 发行版遵循@url{https://www.gnu.org/distros/free-system-distribution-guidelines.html,自由软件发行版准则}。这些准则拒绝非自由的固件和对非自由软件的推荐,并讨论解决商标和专利的方法。" #. type: Plain text -#: guix-git/doc/contributing.texi:430 +#: guix-git/doc/contributing.texi:460 msgid "Some otherwise free upstream package sources contain a small and optional subset that violates the above guidelines, for instance because this subset is itself non-free code. When that happens, the offending items are removed with appropriate patches or code snippets in the @code{origin} form of the package (@pxref{Defining Packages}). This way, @code{guix build --source} returns the ``freed'' source rather than the unmodified upstream source." msgstr "某些上游的软件包源代码包含一小部分违反上述准则的可选的子集,比如这个子集本身就是非自由代码。这时,这些讨厌的代码需要用合适的补丁或者软件包定义(@pxref{Defining Packages})里的@code{origin}里的代码片段移除。这样,@code{guix build --source}就可以返回自由的源代码而不是未经修改的上游源代码。" #. type: cindex -#: guix-git/doc/contributing.texi:435 +#: guix-git/doc/contributing.texi:465 #, no-wrap msgid "package name" msgstr "软件包名字" #. type: Plain text -#: guix-git/doc/contributing.texi:443 +#: guix-git/doc/contributing.texi:473 #, fuzzy msgid "A package actually has two names associated with it. First, there is the name of the @emph{Scheme variable}, the one following @code{define-public}. By this name, the package can be made known in the Scheme code, for instance as input to another package. Second, there is the string in the @code{name} field of a package definition. This name is used by package management commands such as @command{guix package} and @command{guix build}." msgstr "一个软件包事实上有两个名字:第一个是@emph{Scheme变量}的名字,即用@code{define-public}定义的名字。通过这个名字,软件包可以被Scheme代码找到,如用作其它软件包的输入。第二个名字是软件包定义里的@code{name}属性的字符串值。这个名字用于软件包管理命令,如:@command{guix package},@command{guix build}" #. type: Plain text -#: guix-git/doc/contributing.texi:448 +#: guix-git/doc/contributing.texi:478 msgid "Both are usually the same and correspond to the lowercase conversion of the project name chosen upstream, with underscores replaced with hyphens. For instance, GNUnet is available as @code{gnunet}, and SDL_net as @code{sdl-net}." msgstr "两个名字通常是相同的,常是上游项目名字转成小写字母并把下划线替换成连字符的结果。比如,GNUnet转成@code{gnunet},SDL_net转成@code{sdl-net}。" #. type: Plain text -#: guix-git/doc/contributing.texi:456 +#: guix-git/doc/contributing.texi:486 msgid "A noteworthy exception to this rule is when the project name is only a single character, or if an older maintained project with the same name already exists---regardless of whether it has already been packaged for Guix. Use common sense to make such names unambiguous and meaningful. For example, Guix's package for the shell called ``s'' upstream is @code{s-shell} and @emph{not} @code{s}. Feel free to ask your fellow hackers for inspiration." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:461 +#: guix-git/doc/contributing.texi:491 msgid "We do not add @code{lib} prefixes for library packages, unless these are already part of the official project name. But @pxref{Python Modules} and @ref{Perl Modules} for special rules concerning modules for the Python and Perl languages." msgstr "我们不给库软件包添加@code{lib}前缀,除非它是项目官方名字的一部分。但是@pxref{Python Modules}和@ref{Perl Modules}有关于Python和Perl语言的特殊规则。" #. type: Plain text -#: guix-git/doc/contributing.texi:463 +#: guix-git/doc/contributing.texi:493 msgid "Font package names are handled differently, @pxref{Fonts}." msgstr "字体软件包的名字处理起来不同,@pxref{Fonts}." #. type: cindex -#: guix-git/doc/contributing.texi:468 +#: guix-git/doc/contributing.texi:498 #, no-wrap msgid "package version" msgstr "软件包版本" #. type: Plain text -#: guix-git/doc/contributing.texi:477 +#: guix-git/doc/contributing.texi:507 msgid "We usually package only the latest version of a given free software project. But sometimes, for instance for incompatible library versions, two (or more) versions of the same package are needed. These require different Scheme variable names. We use the name as defined in @ref{Package Naming} for the most recent version; previous versions use the same name, suffixed by @code{-} and the smallest prefix of the version number that may distinguish the two versions." msgstr "我们通常只为每个自由软件的最新版本打包。但是有时候,比如对于版本不兼容的库,需要有同一个软件包的两个或更多版本。它们需要使用不同的Scheme变量名。我们为最新的版本使用@ref{Package Naming}里规定的名字,旧的版本使用加上后缀的名字,后缀是@code{-}和可以区分开版本号的版本号的最小前缀。" #. type: Plain text -#: guix-git/doc/contributing.texi:480 +#: guix-git/doc/contributing.texi:510 msgid "The name inside the package definition is the same for all versions of a package and does not contain any version number." msgstr "软件包定义里的名字对于同一个软件包的所有版本都是相同的,并且不含有版本号。" #. type: Plain text -#: guix-git/doc/contributing.texi:482 +#: guix-git/doc/contributing.texi:512 msgid "For instance, the versions 2.24.20 and 3.9.12 of GTK+ may be packaged as follows:" msgstr "例如,GTK+的2.24.20和3.9.12两个版本可以这样打包:" #. type: lisp -#: guix-git/doc/contributing.texi:494 +#: guix-git/doc/contributing.texi:524 #, no-wrap msgid "" "(define-public gtk+\n" @@ -942,12 +982,12 @@ msgstr "" " ...))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:496 +#: guix-git/doc/contributing.texi:526 msgid "If we also wanted GTK+ 3.8.2, this would be packaged as" msgstr "如果我们还需要GTK+ 3.8.2,就这样打包" #. type: lisp -#: guix-git/doc/contributing.texi:502 +#: guix-git/doc/contributing.texi:532 #, no-wrap msgid "" "(define-public gtk+-3.8\n" @@ -963,23 +1003,23 @@ msgstr "" " ...))\n" #. type: cindex -#: guix-git/doc/contributing.texi:506 +#: guix-git/doc/contributing.texi:536 #, no-wrap msgid "version number, for VCS snapshots" msgstr "用于版本控制快照的版本号" #. type: Plain text -#: guix-git/doc/contributing.texi:512 +#: guix-git/doc/contributing.texi:542 msgid "Occasionally, we package snapshots of upstream's version control system (VCS) instead of formal releases. This should remain exceptional, because it is up to upstream developers to clarify what the stable release is. Yet, it is sometimes necessary. So, what should we put in the @code{version} field?" msgstr "有时候,我们为软件包上游的版本控制系统(VCS)的快照而不是正式发布版打包。这是特殊情况,因为决定哪个是稳定版的权力应该属于上游开发者。然而,有时候这是必须的。那么,我们该如何决定写在@code{version}里的版本号呢?" #. type: Plain text -#: guix-git/doc/contributing.texi:520 +#: guix-git/doc/contributing.texi:550 msgid "Clearly, we need to make the commit identifier of the VCS snapshot visible in the version string, but we also need to make sure that the version string is monotonically increasing so that @command{guix package --upgrade} can determine which version is newer. Since commit identifiers, notably with Git, are not monotonically increasing, we add a revision number that we increase each time we upgrade to a newer snapshot. The resulting version string looks like this:" msgstr "显然,我们需要让VCS快照的commit ID在版本号中体现出来,但是我们也需要确保版本号单调递增,以便@command{guix package --upgrade}决定哪个版本号更新。由于commit ID,尤其是Git的commit ID,不是单调递增的,我们添加一个每次升级快照时都手动增长的revision数字。最后的版本号字符串看起来是这样:" #. type: example -#: guix-git/doc/contributing.texi:529 +#: guix-git/doc/contributing.texi:559 #, no-wrap msgid "" "2.0.11-3.cabba9e\n" @@ -999,13 +1039,13 @@ msgstr "" "最新的上游版本号\n" #. type: Plain text -#: guix-git/doc/contributing.texi:539 +#: guix-git/doc/contributing.texi:569 #, fuzzy msgid "It is a good idea to strip commit identifiers in the @code{version} field to, say, 7 digits. It avoids an aesthetic annoyance (assuming aesthetics have a role to play here) as well as problems related to OS limits such as the maximum shebang length (127 bytes for the Linux kernel). There are helper functions for doing this for packages using @code{git-fetch} or @code{hg-fetch} (see below). It is best to use the full commit identifiers in @code{origin}s, though, to avoid ambiguities. A typical package definition may look like this:" msgstr "把@code{版本号}里的commit ID截短,比如只取7个数字,是一个好主意。它避免了美学上的烦恼(假设美学在这里很重要),以及操作系统限制引起的问题(比如Linux内核的127字节)。尽管如此,在@code{origin}里最好使用完整的commit ID,以避免混淆。" #. type: lisp -#: guix-git/doc/contributing.texi:556 +#: guix-git/doc/contributing.texi:586 #, no-wrap msgid "" "(define my-package\n" @@ -1039,18 +1079,18 @@ msgstr "" " )))\n" #. type: deffn -#: guix-git/doc/contributing.texi:558 +#: guix-git/doc/contributing.texi:588 #, no-wrap msgid "{Scheme Procedure} git-version @var{VERSION} @var{REVISION} @var{COMMIT}" msgstr "" #. type: deffn -#: guix-git/doc/contributing.texi:560 +#: guix-git/doc/contributing.texi:590 msgid "Return the version string for packages using @code{git-fetch}." msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:564 +#: guix-git/doc/contributing.texi:594 #, no-wrap msgid "" "(git-version \"0.2.3\" \"0\" \"93818c936ee7e2f1ba1b315578bde363a7d43d05\")\n" @@ -1058,72 +1098,72 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/contributing.texi:567 +#: guix-git/doc/contributing.texi:597 #, no-wrap msgid "{Scheme Procedure} hg-version @var{VERSION} @var{REVISION} @var{CHANGESET}" msgstr "" #. type: deffn -#: guix-git/doc/contributing.texi:570 +#: guix-git/doc/contributing.texi:600 msgid "Return the version string for packages using @code{hg-fetch}. It works in the same way as @code{git-version}." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:575 +#: guix-git/doc/contributing.texi:605 #, no-wrap msgid "package description" msgstr "软件包描述" #. type: cindex -#: guix-git/doc/contributing.texi:576 +#: guix-git/doc/contributing.texi:606 #, no-wrap msgid "package synopsis" msgstr "软件包简介" #. type: Plain text -#: guix-git/doc/contributing.texi:583 +#: guix-git/doc/contributing.texi:613 msgid "As we have seen before, each package in GNU@tie{}Guix includes a synopsis and a description (@pxref{Defining Packages}). Synopses and descriptions are important: They are what @command{guix package --search} searches, and a crucial piece of information to help users determine whether a given package suits their needs. Consequently, packagers should pay attention to what goes into them." msgstr "我们已经看到,GNU@tie{}Guix里的每个软件包都包含一个简介(synopsis)和一个描述(description)(@pxref{Defining Packages})。简介和描述很重要:它们是@command{guix package --search}搜索的信息,并且是帮助用户决定一个软件包是否符合自己需求的重要信息。因此,打包的人应该关注怎样写它们的内容。" #. type: Plain text -#: guix-git/doc/contributing.texi:591 +#: guix-git/doc/contributing.texi:621 msgid "Synopses must start with a capital letter and must not end with a period. They must not start with ``a'' or ``the'', which usually does not bring anything; for instance, prefer ``File-frobbing tool'' over ``A tool that frobs files''. The synopsis should say what the package is---e.g., ``Core GNU utilities (file, text, shell)''---or what it is used for---e.g., the synopsis for GNU@tie{}grep is ``Print lines matching a pattern''." msgstr "简介必须以大写字母开头,并且不能以句号结尾。它们不能以 ``a'' 或者 ``the'' 等没有意义的词开头。例如 ``File-frobbing tool'' 要比 ``A tool that frobs files'' 更好。简介需要说明软件包是什么--如 ``Core GNU utilities (file, text, shell)'',或者它的用途--如 GNU@tie{}grep 的简介是 ``Print lines matching a pattern''。" #. type: Plain text -#: guix-git/doc/contributing.texi:601 +#: guix-git/doc/contributing.texi:631 msgid "Keep in mind that the synopsis must be meaningful for a very wide audience. For example, ``Manipulate alignments in the SAM format'' might make sense for a seasoned bioinformatics researcher, but might be fairly unhelpful or even misleading to a non-specialized audience. It is a good idea to come up with a synopsis that gives an idea of the application domain of the package. In this example, this might give something like ``Manipulate nucleotide sequence alignments'', which hopefully gives the user a better idea of whether this is what they are looking for." msgstr "记住,简介必须能被广大的听众理解。例如,“以SAM格式修改对齐”可能对经验丰富的生物信息科研工作者来说能理解,但是对普通对听众则是无用的甚至是令人误解的。简介最好说明软件包应用的领域。在这个例子中,应该这样描述“修改核苷酸序列的对齐格式”,这会让用户更容易判断这是不是他们想要的。" #. type: Plain text -#: guix-git/doc/contributing.texi:609 +#: guix-git/doc/contributing.texi:639 msgid "Descriptions should take between five and ten lines. Use full sentences, and avoid using acronyms without first introducing them. Please avoid marketing phrases such as ``world-leading'', ``industrial-strength'', and ``next-generation'', and avoid superlatives like ``the most advanced''---they are not helpful to users looking for a package and may even sound suspicious. Instead, try to be factual, mentioning use cases and features." msgstr "描述应该在5至10句话之间。使用完整的句子,并且避免在未介绍的情况下使用缩写。请避免推广营销性对词汇,如“世界领先”,“行业最强”,“下一代”,并且避免高级的形容词,如“最先进的”--他们对用户寻找软件包是无用的,甚至是可疑的。相反的,尽量务实,提及用例和功能。" #. type: cindex -#: guix-git/doc/contributing.texi:610 +#: guix-git/doc/contributing.texi:640 #, no-wrap msgid "Texinfo markup, in package descriptions" msgstr "软件包描述里的Texinfo标记" #. type: Plain text -#: guix-git/doc/contributing.texi:619 +#: guix-git/doc/contributing.texi:649 msgid "Descriptions can include Texinfo markup, which is useful to introduce ornaments such as @code{@@code} or @code{@@dfn}, bullet lists, or hyperlinks (@pxref{Overview,,, texinfo, GNU Texinfo}). However you should be careful when using some characters for example @samp{@@} and curly braces which are the basic special characters in Texinfo (@pxref{Special Characters,,, texinfo, GNU Texinfo}). User interfaces such as @command{guix package --show} take care of rendering it appropriately." msgstr "描述可以含有Texinfo标记,这对格式化有帮助,如@code{@@code}、@code{@@dfn}、列表、超链接(@pxref{Overview,,, texinfo, GNU Texinfo})。但是,在使用某些字符时应该小心,如@samp{@@}和花括号是基本的Texinfo特殊字符(@pxref{Special Characters,,, texinfo, GNU Texinfo})。@command{guix package --show}之类的用户界面会解决渲染问题。" #. type: Plain text -#: guix-git/doc/contributing.texi:625 +#: guix-git/doc/contributing.texi:655 #, fuzzy msgid "Synopses and descriptions are translated by volunteers @uref{https://translate.fedoraproject.org/projects/guix/packages, at Weblate} so that as many users as possible can read them in their native language. User interfaces search them and display them in the language specified by the current locale." msgstr "简介和描述会由@uref{http://translationproject.org/domain/guix-packages.html, Translation Project}项目的志愿者翻译,从而使尽可能多的用户可以用母语阅读。用户界面用当前区域设置的语言搜索和展示这些信息。" #. type: Plain text -#: guix-git/doc/contributing.texi:630 +#: guix-git/doc/contributing.texi:660 msgid "To allow @command{xgettext} to extract them as translatable strings, synopses and descriptions @emph{must be literal strings}. This means that you cannot use @code{string-append} or @code{format} to construct these strings:" msgstr "为了让@command{xgettext}可以把它们提取成待翻译的字符串,简介和描述@emph{必须是文字字符串}。这意味着你不能使用@code{string-append}或@code{format}来合成字符串:" #. type: lisp -#: guix-git/doc/contributing.texi:636 +#: guix-git/doc/contributing.texi:666 #, no-wrap msgid "" "(package\n" @@ -1137,12 +1177,12 @@ msgstr "" " (description (string-append \"这是\" \"*不可以*\" \"翻译的\")))\n" #. type: Plain text -#: guix-git/doc/contributing.texi:644 +#: guix-git/doc/contributing.texi:674 msgid "Translation is a lot of work so, as a packager, please pay even more attention to your synopses and descriptions as every change may entail additional work for translators. In order to help them, it is possible to make recommendations or instructions visible to them by inserting special comments like this (@pxref{xgettext Invocation,,, gettext, GNU Gettext}):" msgstr "翻译是很繁重的工作,所以,作为打包者请更加注意你的简介和介绍,每一个改动都会增加翻译的工作量。为了帮助他们,你可以插入这类可以被他们看到的建议和指示(@pxref{xgettext Invocation,,, gettext, GNU Gettext}):" #. type: lisp -#: guix-git/doc/contributing.texi:649 +#: guix-git/doc/contributing.texi:679 #, no-wrap msgid "" ";; TRANSLATORS: \"X11 resize-and-rotate\" should not be translated.\n" @@ -1153,447 +1193,449 @@ msgstr "" "(description \"ARandR为X11 resize-and-rotate (RandR)扩展提供简单的图形界面。@dots{}\")\n" #. type: cindex -#: guix-git/doc/contributing.texi:654 +#: guix-git/doc/contributing.texi:684 #, no-wrap msgid "snippets, when to use" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:665 +#: guix-git/doc/contributing.texi:695 msgid "The boundary between using an origin snippet versus a build phase to modify the sources of a package can be elusive. Origin snippets are typically used to remove unwanted files such as bundled libraries, nonfree sources, or to apply simple substitutions. The source derived from an origin should produce a source that can be used to build the package on any system that the upstream package supports (i.e., act as the corresponding source). In particular, origin snippets must not embed store items in the sources; such patching should rather be done using build phases. Refer to the @code{origin} record documentation for more information (@pxref{origin Reference})." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:669 +#: guix-git/doc/contributing.texi:699 #, no-wrap msgid "emacs, packaging" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:670 +#: guix-git/doc/contributing.texi:700 #, no-wrap msgid "elisp, packaging" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:682 +#: guix-git/doc/contributing.texi:712 msgid "Emacs packages should preferably use the Emacs build system (@pxref{emacs-build-system}), for uniformity and the benefits provided by its build phases, such as the auto-generation of the autoloads file and the byte compilation of the sources. Because there is no standardized way to run a test suite for Emacs packages, tests are disabled by default. When a test suite is available, it should be enabled by setting the @code{#:tests?} argument to @code{#true}. By default, the command to run the test is @command{make check}, but any command can be specified via the @code{#:test-command} argument. The @code{#:test-command} argument expects a list containing a command and its arguments, to be invoked during the @code{check} phase." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:687 +#: guix-git/doc/contributing.texi:717 msgid "The Elisp dependencies of Emacs packages are typically provided as @code{propagated-inputs} when required at run time. As for other packages, build or test dependencies should be specified as @code{native-inputs}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:696 +#: guix-git/doc/contributing.texi:726 msgid "Emacs packages sometimes depend on resources directories that should be installed along the Elisp files. The @code{#:include} argument can be used for that purpose, by specifying a list of regexps to match. The best practice when using the @code{#:include} argument is to extend rather than override its default value (accessible via the @code{%default-include} variable). As an example, a yasnippet extension package typically include a @file{snippets} directory, which could be copied to the installation directory using:" msgstr "" #. type: lisp -#: guix-git/doc/contributing.texi:699 +#: guix-git/doc/contributing.texi:729 #, no-wrap msgid "#:include (cons \"^snippets/\" %default-include)\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:705 +#: guix-git/doc/contributing.texi:735 msgid "When encountering problems, it is wise to check for the presence of the @code{Package-Requires} extension header in the package main source file, and whether any dependencies and their versions listed therein are satisfied." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:709 +#: guix-git/doc/contributing.texi:739 #, no-wrap msgid "python" msgstr "python" #. type: Plain text -#: guix-git/doc/contributing.texi:715 +#: guix-git/doc/contributing.texi:745 msgid "We currently package Python 2 and Python 3, under the Scheme variable names @code{python-2} and @code{python} as explained in @ref{Version Numbers}. To avoid confusion and naming clashes with other programming languages, it seems desirable that the name of a package for a Python module contains the word @code{python}." msgstr "我们目前为Python 2和Python 3打包,如@ref{Version Numbers}的规则所述,它们的Scheme变量名分别是@code{python-2}和@code{python}。为了避免和其他编程语言的冲突,Python模块的软件包名字最好含有@code{python}。" #. type: Plain text -#: guix-git/doc/contributing.texi:722 +#: guix-git/doc/contributing.texi:752 #, fuzzy msgid "Some modules are compatible with only one version of Python, others with both. If the package Foo is compiled with Python 3, we name it @code{python-foo}. If it is compiled with Python 2, we name it @code{python2-foo}. Packages should be added when they are necessary; we don't add Python 2 variants of the package unless we are going to use them." msgstr "某些模块仅和一个版本的Python兼容,其它的和两个版本都兼容。如果一个叫做Foo的软件包仅和Python 3兼容,我们把它命名为@code{python-foo};如果它仅和Python 2兼容,我们把它命名为@code{python2-foo}。如果它和两个版本都兼容,我们创建两个软件包,名字如前所述。" #. type: Plain text -#: guix-git/doc/contributing.texi:728 +#: guix-git/doc/contributing.texi:758 msgid "If a project already contains the word @code{python}, we drop this; for instance, the module python-dateutil is packaged under the names @code{python-dateutil} and @code{python2-dateutil}. If the project name starts with @code{py} (e.g.@: @code{pytz}), we keep it and prefix it as described above." msgstr "如果一个项目的名字已经含有@code{python}这个单词,我们把它丢掉;例如,python-dateutil模块打包后的名字是@code{python-dateutil}和@code{python2-dateutil}。如果项目的名字以@code{py}开头(如@: @code{pytz}),我们把它保留,并且添加上面所述的前缀。" #. type: subsubsection -#: guix-git/doc/contributing.texi:729 +#: guix-git/doc/contributing.texi:759 #, no-wrap msgid "Specifying Dependencies" msgstr "指定依赖" #. type: cindex -#: guix-git/doc/contributing.texi:730 +#: guix-git/doc/contributing.texi:760 #, no-wrap msgid "inputs, for Python packages" msgstr "Python软件包的输入" #. type: Plain text -#: guix-git/doc/contributing.texi:735 +#: guix-git/doc/contributing.texi:765 msgid "Dependency information for Python packages is usually available in the package source tree, with varying degrees of accuracy: in the @file{setup.py} file, in @file{requirements.txt}, or in @file{tox.ini}." msgstr "Python软件包的依赖信息通常在包的源代码树里,各种文件有不同的精确度:@file{setup.py}文件,@file{requirements.txt}文件,@file{tox.ini}文件。" #. type: Plain text -#: guix-git/doc/contributing.texi:741 +#: guix-git/doc/contributing.texi:771 msgid "Your mission, when writing a recipe for a Python package, is to map these dependencies to the appropriate type of ``input'' (@pxref{package Reference, inputs}). Although the @code{pypi} importer normally does a good job (@pxref{Invoking guix import}), you may want to check the following check list to determine which dependency goes where." msgstr "你在写软件包配方时的任务是把这些依赖转换成相应的“输入”(@pxref{package Reference, inputs})。尽管@code{pypi}导入工具通常可以做得很好(@pxref{Invoking guix import}),你可能想检查下面这个清单,以决定每个依赖放在哪儿。" #. type: itemize -#: guix-git/doc/contributing.texi:749 +#: guix-git/doc/contributing.texi:779 msgid "We currently package Python 2 with @code{setuptools} and @code{pip} installed like Python 3.4 has per default. Thus you don't need to specify either of these as an input. @command{guix lint} will warn you if you do." msgstr "默认地,我们为Python 2打包时像Python 3一样安装了@code{setuptools}和@code{pip}。所以你不需要把它们两个指定为依赖,否则@command{guix lint}会警告你。" #. type: itemize -#: guix-git/doc/contributing.texi:755 +#: guix-git/doc/contributing.texi:785 msgid "Python dependencies required at run time go into @code{propagated-inputs}. They are typically defined with the @code{install_requires} keyword in @file{setup.py}, or in the @file{requirements.txt} file." msgstr "运行时需要的Python依赖要放进@code{propagated-inputs}。它们通常由@file{setup.py}文件里的@code{install_requires}关键字或@file{requirements.txt}文件定义。" #. type: itemize -#: guix-git/doc/contributing.texi:763 +#: guix-git/doc/contributing.texi:793 msgid "Python packages required only at build time---e.g., those listed with the @code{setup_requires} keyword in @file{setup.py}---or only for testing---e.g., those in @code{tests_require}---go into @code{native-inputs}. The rationale is that (1) they do not need to be propagated because they are not needed at run time, and (2) in a cross-compilation context, it's the ``native'' input that we'd want." msgstr "仅在构建时依赖的Python包--如,@file{setup.py}里的@code{setup_requires}关键字列举的包--或仅在测试时依赖的包--如,@code{tests_require}里的包--要放进@code{native-inputs}。因为,(1)在运行时不需要它们,因此不需要propagate,并且(2)在交叉编译时,它们属于“native”输入。" #. type: itemize -#: guix-git/doc/contributing.texi:767 +#: guix-git/doc/contributing.texi:797 msgid "Examples are the @code{pytest}, @code{mock}, and @code{nose} test frameworks. Of course if any of these packages is also required at run-time, it needs to go to @code{propagated-inputs}." msgstr "例如@code{pytest},@code{mock},@code{nose}测试框架。当然,如果在运行时需要这里的任何一个包,它需要被加进@code{propagated-inputs}。" #. type: itemize -#: guix-git/doc/contributing.texi:772 +#: guix-git/doc/contributing.texi:802 msgid "Anything that does not fall in the previous categories goes to @code{inputs}, for example programs or C libraries required for building Python packages containing C extensions." msgstr "任何不属于上述类别的包都要被加进@code{inputs},如,构建含有C语言扩展的Python包所需的程序和C语言库。" #. type: itemize -#: guix-git/doc/contributing.texi:778 +#: guix-git/doc/contributing.texi:808 msgid "If a Python package has optional dependencies (@code{extras_require}), it is up to you to decide whether to add them or not, based on their usefulness/overhead ratio (@pxref{Submitting Patches, @command{guix size}})." msgstr "如果一个Python软件包由可选的依赖(@code{extras_require}),由你根据它们的性价比(用处/负担)决定是否添加它们(@pxref{Submitting Patches, @command{guix size}})。" #. type: cindex -#: guix-git/doc/contributing.texi:785 +#: guix-git/doc/contributing.texi:815 #, no-wrap msgid "perl" msgstr "perl" #. type: Plain text -#: guix-git/doc/contributing.texi:796 +#: guix-git/doc/contributing.texi:826 msgid "Perl programs standing for themselves are named as any other package, using the lowercase upstream name. For Perl packages containing a single class, we use the lowercase class name, replace all occurrences of @code{::} by dashes and prepend the prefix @code{perl-}. So the class @code{XML::Parser} becomes @code{perl-xml-parser}. Modules containing several classes keep their lowercase upstream name and are also prepended by @code{perl-}. Such modules tend to have the word @code{perl} somewhere in their name, which gets dropped in favor of the prefix. For instance, @code{libwww-perl} becomes @code{perl-libwww}." msgstr "Perl程序和其它软件包的命名规则类似,用小写的上游名字命名。对于仅包含一个类的Perl包,我们使用小写的类名,把所有的@code{::}替换成破折号,并且添加@code{perl-}前缀。所以类@code{XML::Parser}变成@code{perl-xml-parser}。包含多个类的模块保留它们上游的名字,并且添加@code{perl-}前缀。这类模块的名字通常含有@code{perl},这个单词需要被删掉。例如,@code{libwww-perl}变成@code{perl-libwww}。" #. type: cindex -#: guix-git/doc/contributing.texi:801 +#: guix-git/doc/contributing.texi:831 #, no-wrap msgid "java" msgstr "java" #. type: Plain text -#: guix-git/doc/contributing.texi:804 +#: guix-git/doc/contributing.texi:834 msgid "Java programs standing for themselves are named as any other package, using the lowercase upstream name." msgstr "Java程序和其它软件包的命名规则类似,用小写的上游名字命名。" #. type: Plain text -#: guix-git/doc/contributing.texi:810 +#: guix-git/doc/contributing.texi:840 msgid "To avoid confusion and naming clashes with other programming languages, it is desirable that the name of a package for a Java package is prefixed with @code{java-}. If a project already contains the word @code{java}, we drop this; for instance, the package @code{ngsjava} is packaged under the name @code{java-ngs}." msgstr "为了避免和其它编程语言混淆和命名冲突,Java软件包的名字最好有@code{java-}前缀。如果一个项目的名字已经含有@code{java},我们把它删掉;例如,@code{ngsjava}打包后的名字是@code{java-ngs}。" #. type: Plain text -#: guix-git/doc/contributing.texi:816 +#: guix-git/doc/contributing.texi:846 msgid "For Java packages containing a single class or a small class hierarchy, we use the lowercase class name, replace all occurrences of @code{.} by dashes and prepend the prefix @code{java-}. So the class @code{apache.commons.cli} becomes package @code{java-apache-commons-cli}." msgstr "对于仅包含一个或很少几个类的Java软件包,我们使用小写的类名,把所有的@code{.}替换成破折号,并且添加@code{java-}前缀。因此,类@code{apache.commons.cli}打包后的名字是@code{java-apache-commons-cli}。" #. type: cindex -#: guix-git/doc/contributing.texi:821 +#: guix-git/doc/contributing.texi:851 #, no-wrap msgid "rust" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:824 +#: guix-git/doc/contributing.texi:854 msgid "Rust programs standing for themselves are named as any other package, using the lowercase upstream name." msgstr "Rust 程序和其它软件包的命名规则类似,用小写的上游名字命名。" #. type: Plain text -#: guix-git/doc/contributing.texi:828 +#: guix-git/doc/contributing.texi:858 msgid "To prevent namespace collisions we prefix all other Rust packages with the @code{rust-} prefix. The name should be changed to lowercase as appropriate and dashes should remain in place." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:834 +#: guix-git/doc/contributing.texi:864 msgid "In the rust ecosystem it is common for multiple incompatible versions of a package to be used at any given time, so all package definitions should have a versioned suffix. The versioned suffix is the left-most non-zero digit (and any leading zeros, of course). This follows the ``caret'' version scheme intended by Cargo. Examples@: @code{rust-clap-2}, @code{rust-rand-0.6}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:844 +#: guix-git/doc/contributing.texi:874 msgid "Because of the difficulty in reusing rust packages as pre-compiled inputs for other packages the Cargo build system (@pxref{Build Systems, @code{cargo-build-system}}) presents the @code{#:cargo-inputs} and @code{cargo-development-inputs} keywords as build system arguments. It would be helpful to think of these as similar to @code{propagated-inputs} and @code{native-inputs}. Rust @code{dependencies} and @code{build-dependencies} should go in @code{#:cargo-inputs}, and @code{dev-dependencies} should go in @code{#:cargo-development-inputs}. If a Rust package links to other libraries then the standard placement in @code{inputs} and the like should be used." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:850 +#: guix-git/doc/contributing.texi:880 msgid "Care should be taken to ensure the correct version of dependencies are used; to this end we try to refrain from skipping the tests or using @code{#:skip-build?} when possible. Of course this is not always possible, as the package may be developed for a different Operating System, depend on features from the Nightly Rust compiler, or the test suite may have atrophied since it was released." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:855 guix-git/doc/guix.texi:1930 +#: guix-git/doc/contributing.texi:885 guix-git/doc/guix.texi:1947 #, no-wrap msgid "fonts" msgstr "字体" #. type: Plain text -#: guix-git/doc/contributing.texi:861 +#: guix-git/doc/contributing.texi:891 msgid "For fonts that are in general not installed by a user for typesetting purposes, or that are distributed as part of a larger software package, we rely on the general packaging rules for software; for instance, this applies to the fonts delivered as part of the X.Org system or fonts that are part of TeX Live." msgstr "对于通常不会被用户安装用于排版的字体,或者随更大的软件包分发的字体,我们使用通常的命名规则。例如,这适用于X.Org系统附带的字体或TeX Live附带的字体。" #. type: Plain text -#: guix-git/doc/contributing.texi:865 +#: guix-git/doc/contributing.texi:895 msgid "To make it easier for a user to search for fonts, names for other packages containing only fonts are constructed as follows, independently of the upstream package name." msgstr "为了让用户更容易搜索字体,其它仅含有字体的软件包按以下规则命名,不管上游的包名是什么。" #. type: Plain text -#: guix-git/doc/contributing.texi:873 +#: guix-git/doc/contributing.texi:903 msgid "The name of a package containing only one font family starts with @code{font-}; it is followed by the foundry name and a dash @code{-} if the foundry is known, and the font family name, in which spaces are replaced by dashes (and as usual, all upper case letters are transformed to lower case). For example, the Gentium font family by SIL is packaged under the name @code{font-sil-gentium}." msgstr "仅含有一个字体家族的软件包需要以@code{font-}开头;如果作者名字已知,则添加作者名字和@code{-},接着是字体家族名字(把空格替换成破折号),(和通常一样,把所有的大写字母转换成小写字母)。例如,由SIL设计的Gentium字体家族打包后的名字是@code{font-sil-gentium}。" #. type: Plain text -#: guix-git/doc/contributing.texi:882 +#: guix-git/doc/contributing.texi:912 msgid "For a package containing several font families, the name of the collection is used in the place of the font family name. For instance, the Liberation fonts consist of three families, Liberation Sans, Liberation Serif and Liberation Mono. These could be packaged separately under the names @code{font-liberation-sans} and so on; but as they are distributed together under a common name, we prefer to package them together as @code{font-liberation}." msgstr "对于一个含有多个字体家族的软件包,用集合的名字替换字体家族的名字。例如,Liberation字体含有三个家族,Liberation Sans、Liberation Serif和Liberation Mono。它们可以用@code{font-liberation-sans}等名字分开打包;但是由于它们以一个共同的名字分发,我们倾向于以@code{font-liberation}名字统一打包。" #. type: Plain text -#: guix-git/doc/contributing.texi:888 +#: guix-git/doc/contributing.texi:918 msgid "In the case where several formats of the same font family or font collection are packaged separately, a short form of the format, prepended by a dash, is added to the package name. We use @code{-ttf} for TrueType fonts, @code{-otf} for OpenType fonts and @code{-type1} for PostScript Type 1 fonts." msgstr "当同一个字体家族或字体集合的不同格式分开打包时,把破折号和格式(缩写)添加在软件包名字后面。我们用@code{-ttf}代表TrueType字体,@code{-otf}代表OpenType字体,@code{-type1}代表PostScript Type 1字体。" #. type: Plain text -#: guix-git/doc/contributing.texi:896 +#: guix-git/doc/contributing.texi:926 msgid "In general our code follows the GNU Coding Standards (@pxref{Top,,, standards, GNU Coding Standards}). However, they do not say much about Scheme, so here are some additional rules." msgstr "总的来说,我们的代码遵循GNU代码规范(@pxref{Top,,, standards, GNU代码规范})。但是,这个规范对Scheme的介绍不多,所以这儿提供一些额外的规则。" #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:904 -#: guix-git/doc/contributing.texi:905 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:934 +#: guix-git/doc/contributing.texi:935 #, no-wrap msgid "Programming Paradigm" msgstr "编程范例" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "How to compose your elements." msgstr "怎样合成元素。" #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:911 -#: guix-git/doc/contributing.texi:912 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:941 +#: guix-git/doc/contributing.texi:942 #, no-wrap msgid "Modules" msgstr "模块" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Where to store your code?" msgstr "在哪里保存代码?" #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:922 -#: guix-git/doc/contributing.texi:923 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:952 +#: guix-git/doc/contributing.texi:953 #, no-wrap msgid "Data Types and Pattern Matching" msgstr "数据类型和模式匹配" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Implementing data structures." msgstr "实现数据结构。" #. type: subsection -#: guix-git/doc/contributing.texi:902 guix-git/doc/contributing.texi:937 -#: guix-git/doc/contributing.texi:938 +#: guix-git/doc/contributing.texi:932 guix-git/doc/contributing.texi:967 +#: guix-git/doc/contributing.texi:968 #, no-wrap msgid "Formatting Code" msgstr "格式化代码" #. type: menuentry -#: guix-git/doc/contributing.texi:902 +#: guix-git/doc/contributing.texi:932 msgid "Writing conventions." msgstr "书写规范。" #. type: Plain text -#: guix-git/doc/contributing.texi:910 +#: guix-git/doc/contributing.texi:940 msgid "Scheme code in Guix is written in a purely functional style. One exception is code that involves input/output, and procedures that implement low-level concepts, such as the @code{memoize} procedure." msgstr "Guix里的Scheme代码是以纯函数的风格写的。一个例外是有关输入/输出的代码,和实现底层概念的过程,如@code{memoize}过程。" #. type: Plain text -#: guix-git/doc/contributing.texi:918 +#: guix-git/doc/contributing.texi:948 msgid "Guile modules that are meant to be used on the builder side must live in the @code{(guix build @dots{})} name space. They must not refer to other Guix or GNU modules. However, it is OK for a ``host-side'' module to use a build-side module." msgstr "用于构建的Guile模块必须放在@code{(guix build @dots{})}命名空间里。它们不允许引用其它Guix或GNU模块。但是,主机端(host-side)模块可以使用构建端(build-side)模块。" #. type: Plain text -#: guix-git/doc/contributing.texi:921 +#: guix-git/doc/contributing.texi:951 msgid "Modules that deal with the broader GNU system should be in the @code{(gnu @dots{})} name space rather than @code{(guix @dots{})}." msgstr "关于更广的GNU系统的模块应该在@code{(gnu @dots{})}命名空间里而不是@code{(guix @dots{})}。" #. type: Plain text -#: guix-git/doc/contributing.texi:930 +#: guix-git/doc/contributing.texi:960 msgid "The tendency in classical Lisp is to use lists to represent everything, and then to browse them ``by hand'' using @code{car}, @code{cdr}, @code{cadr}, and co. There are several problems with that style, notably the fact that it is hard to read, error-prone, and a hindrance to proper type error reports." msgstr "经典的Lisp倾向于用列表表示所有的东西,然后用@code{car},@code{cdr},@code{cadr}等手动浏览它们。这种风格有几个问题,特别是难以阅读,易出错,并且妨碍生成合适的类型错误报告。" #. type: Plain text -#: guix-git/doc/contributing.texi:936 +#: guix-git/doc/contributing.texi:966 #, fuzzy msgid "Guix code should define appropriate data types (for instance, using @code{define-record-type*}) rather than abuse lists. In addition, it should use pattern matching, via Guile’s @code{(ice-9 match)} module, especially when matching lists (@pxref{Pattern Matching,,, guile, GNU Guile Reference Manual})." msgstr "Guix代码应该定义合适的数据类型(例如,用@code{define-record-type*})而不是滥用列表。而且,它应该利用Guile的@code{(ice-9 match)}模块使用模式匹配,特别是匹配列表的时候。" #. type: cindex -#: guix-git/doc/contributing.texi:940 +#: guix-git/doc/contributing.texi:970 #, no-wrap msgid "formatting code" msgstr "格式化代码" #. type: cindex -#: guix-git/doc/contributing.texi:941 +#: guix-git/doc/contributing.texi:971 #, no-wrap msgid "coding style" msgstr "代码风格" #. type: Plain text -#: guix-git/doc/contributing.texi:948 +#: guix-git/doc/contributing.texi:978 #, fuzzy msgid "When writing Scheme code, we follow common wisdom among Scheme programmers. In general, we follow the @url{https://mumble.net/~campbell/scheme/style.txt, Riastradh's Lisp Style Rules}. This document happens to describe the conventions mostly used in Guile’s code too. It is very thoughtful and well written, so please do read it." msgstr "在写Scheme代码时,我们遵循Scheme程序员的通用智慧。通常,我们遵循@url{http://mumble.net/~campbell/scheme/style.txt, Riastradh的Lisp风格}。这个文档碰巧描述了在Guile代码里大量使用的惯例。它很周到,而且写的很好,所以务必阅读。" #. type: Plain text -#: guix-git/doc/contributing.texi:955 +#: guix-git/doc/contributing.texi:985 msgid "Some special forms introduced in Guix, such as the @code{substitute*} macro, have special indentation rules. These are defined in the @file{.dir-locals.el} file, which Emacs automatically uses. Also note that Emacs-Guix provides @code{guix-devel-mode} mode that indents and highlights Guix code properly (@pxref{Development,,, emacs-guix, The Emacs-Guix Reference Manual})." msgstr "一些Guix添加的special form,如@code{substitute*}宏,有特殊的缩进规则。它们的规则在@file{.dir-locals.el}文件里定义,Emacs会自动使用。另外,Emacs-Guix提供的@code{guix-devel-mode}模式可以正确地缩进和高亮Guix代码(@pxref{Development,,, emacs-guix, Emacs-Guix参考手册})。" #. type: cindex -#: guix-git/doc/contributing.texi:956 +#: guix-git/doc/contributing.texi:986 #, no-wrap msgid "indentation, of code" msgstr "代码缩进" #. type: cindex -#: guix-git/doc/contributing.texi:957 +#: guix-git/doc/contributing.texi:987 #, no-wrap msgid "formatting, of code" msgstr "代码格式化" #. type: Plain text -#: guix-git/doc/contributing.texi:960 +#: guix-git/doc/contributing.texi:990 msgid "If you do not use Emacs, please make sure to let your editor knows these rules. To automatically indent a package definition, you can also run:" msgstr "如果你不使用Emacs,请确保让你的编辑器知道这些规则。为了自动地缩进软件包定义,你也可以运行:" #. type: example -#: guix-git/doc/contributing.texi:963 -#, no-wrap -msgid "./etc/indent-code.el gnu/packages/@var{file}.scm @var{package}\n" -msgstr "./etc/indent-code.el gnu/packages/@var{文件}.scm @var{软件包}\n" +#: guix-git/doc/contributing.texi:993 +#, fuzzy, no-wrap +msgid "./pre-inst-env guix style @var{package}\n" +msgstr "guix install emacs-guix\n" #. type: Plain text -#: guix-git/doc/contributing.texi:969 -msgid "This automatically indents the definition of @var{package} in @file{gnu/packages/@var{file}.scm} by running Emacs in batch mode. To indent a whole file, omit the second argument:" -msgstr "这会调用Emacs以批处理模式自动地缩进@file{gnu/packages/@var{文件}.scm}里@var{软件包}的定义。如果想缩进整个文件,省略第二个参数:" - -#. type: example -#: guix-git/doc/contributing.texi:972 -#, no-wrap -msgid "./etc/indent-code.el gnu/services/@var{file}.scm\n" -msgstr "./etc/indent-code.el gnu/services/@var{文件}.scm\n" +#: guix-git/doc/contributing.texi:997 +#, fuzzy +msgid "@xref{Invoking guix style}, for more information." +msgstr "@xref{Invoking guix pack},了解这个方便的工具。" #. type: cindex -#: guix-git/doc/contributing.texi:974 +#: guix-git/doc/contributing.texi:998 #, no-wrap msgid "Vim, Scheme code editing" msgstr "Vim,编辑Scheme代码" #. type: Plain text -#: guix-git/doc/contributing.texi:980 +#: guix-git/doc/contributing.texi:1004 msgid "If you are editing code with Vim, we recommend that you run @code{:set autoindent} so that your code is automatically indented as you type. Additionally, @uref{https://www.vim.org/scripts/script.php?script_id=3998, @code{paredit.vim}} may help you deal with all these parentheses." msgstr "如果你用Vim编辑代码,我们推荐你运行@code{:set autoindent},以使你在输入时自动缩进代码。另外,@uref{https://www.vim.org/scripts/script.php?script_id=3998, @code{paredit.vim}}可以帮你处理括号。" #. type: Plain text -#: guix-git/doc/contributing.texi:984 +#: guix-git/doc/contributing.texi:1008 msgid "We require all top-level procedures to carry a docstring. This requirement can be relaxed for simple private procedures in the @code{(guix build @dots{})} name space, though." msgstr "我们要求所有的顶级过程附带一个docstring。这个要求对@code{(guix build @dots{})}命名空间里的简单的私有过程可以放宽。" #. type: Plain text -#: guix-git/doc/contributing.texi:987 +#: guix-git/doc/contributing.texi:1011 msgid "Procedures should not have more than four positional parameters. Use keyword parameters for procedures that take more than four parameters." msgstr "过程不应该有多于四个定位参数。对于接收多于四个定位参数的过程应使用关键字参数。" #. type: Plain text -#: guix-git/doc/contributing.texi:1001 +#: guix-git/doc/contributing.texi:1025 #, fuzzy msgid "Development is done using the Git distributed version control system. Thus, access to the repository is not strictly necessary. We welcome contributions in the form of patches as produced by @code{git format-patch} sent to the @email{guix-patches@@gnu.org} mailing list (@pxref{submitting patches,, Submitting patches to a project, git, Git User Manual}). Contributors are encouraged to take a moment to set some Git repository options (@pxref{Configuring Git}) first, which can improve the readability of patches. Seasoned Guix developers may also want to look at the section on commit access (@pxref{Commit Access})." msgstr "开发是使用Git分布式版本控制系统完成的。因此,对仓库的访问权限不是必须的。我们欢迎以向@email{guix-patches@@gnu.org}邮件列表发送@code{git format-patch}补丁的方式共享代码。" #. type: Plain text -#: guix-git/doc/contributing.texi:1008 +#: guix-git/doc/contributing.texi:1032 #, fuzzy msgid "This mailing list is backed by a Debbugs instance, which allows us to keep track of submissions (@pxref{Tracking Bugs and Patches}). Each message sent to that mailing list gets a new tracking number assigned; people can then follow up on the submission by sending email to @code{@var{NNN}@@debbugs.gnu.org}, where @var{NNN} is the tracking number (@pxref{Sending a Patch Series})." msgstr "这个邮件列表的后端是一个Debbugs实例(可以从@uref{https://bugs.gnu.org/guix-patches}访问),它允许我们跟踪提交的bug。每个发送到那个邮件列表的消息都会被分配一个跟踪数字;之后人们可以通过向@code{@var{NNN}@@debbugs.gnu.org}发送邮件来跟进提交(@var{NNN}是跟踪数字,@pxref{Sending a Patch Series})。" #. type: Plain text -#: guix-git/doc/contributing.texi:1012 +#: guix-git/doc/contributing.texi:1036 msgid "Please write commit logs in the ChangeLog format (@pxref{Change Logs,,, standards, GNU Coding Standards}); you can check the commit history for examples." msgstr "请以ChangeLog格式(@pxref{Change Logs,,, standards, GNU代码规范})写commit日志;你可以浏览commit历史里的例子。" #. type: Plain text -#: guix-git/doc/contributing.texi:1015 +#: guix-git/doc/contributing.texi:1039 msgid "Before submitting a patch that adds or modifies a package definition, please run through this check list:" msgstr "提交添加或者修改软件包定义的补丁之前,请过一遍这个检查列表:" #. type: code{#1} -#: guix-git/doc/contributing.texi:1017 guix-git/doc/contributing.texi:1223 +#: guix-git/doc/contributing.texi:1041 guix-git/doc/contributing.texi:1251 #, no-wrap msgid "git format-patch" msgstr "" #. type: code{#1} -#: guix-git/doc/contributing.texi:1018 +#: guix-git/doc/contributing.texi:1042 #, no-wrap msgid "git-format-patch" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1025 +#: guix-git/doc/contributing.texi:1049 msgid "When generating your patches with @code{git format-patch} or @code{git send-email}, we recommend using the option @code{--base=}, perhaps with the value @code{auto}. This option adds a note to the patch stating which commit the patch is based on. This helps reviewers understand how to apply and review your patches." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1031 +#: guix-git/doc/contributing.texi:1055 msgid "If the authors of the packaged software provide a cryptographic signature for the release tarball, make an effort to verify the authenticity of the archive. For a detached GPG signature file this would be done with the @code{gpg --verify} command." msgstr "如果软件包的作者为发布的文件包提供了密码学签名,请验证文件的真实性。对于独立的 GPG 签名文件,这可以通过 @code{gpg --verify} 命令完成。" #. type: enumerate -#: guix-git/doc/contributing.texi:1035 +#: guix-git/doc/contributing.texi:1059 msgid "Take some time to provide an adequate synopsis and description for the package. @xref{Synopses and Descriptions}, for some guidelines." msgstr "花些时间为软件包提供一个合适的简介和描述。更多指导,@xref{Synopses and Descriptions}。" #. type: enumerate -#: guix-git/doc/contributing.texi:1040 +#: guix-git/doc/contributing.texi:1064 msgid "Run @code{guix lint @var{package}}, where @var{package} is the name of the new or modified package, and fix any errors it reports (@pxref{Invoking guix lint})." msgstr "运行@code{guix lint @var{软件包}},@var{软件包}是新添加的或修改过的软件包的名字,修复它报告的错误(@pxref{Invoking guix lint})。" #. type: enumerate -#: guix-git/doc/contributing.texi:1044 +#: guix-git/doc/contributing.texi:1068 +#, fuzzy +#| msgid "Run @code{guix lint @var{package}}, where @var{package} is the name of the new or modified package, and fix any errors it reports (@pxref{Invoking guix lint})." +msgid "Run @code{guix style @var{package}} to format the new package definition according to the project's conventions (@pxref{Invoking guix style})." +msgstr "运行@code{guix lint @var{软件包}},@var{软件包}是新添加的或修改过的软件包的名字,修复它报告的错误(@pxref{Invoking guix lint})。" + +#. type: enumerate +#: guix-git/doc/contributing.texi:1072 msgid "Make sure the package builds on your platform, using @code{guix build @var{package}}." msgstr "用@code{guix build @var{软件包}}命令确保这个软件包可以在你的平台上构建。" #. type: enumerate -#: guix-git/doc/contributing.texi:1052 +#: guix-git/doc/contributing.texi:1080 #, fuzzy #| msgid "We recommend you also try building the package on other supported platforms. As you may not have access to actual hardware platforms, we recommend using the @code{qemu-binfmt-service-type} to emulate them. In order to enable it, add the following service to the list of services in your @code{operating-system} configuration:" msgid "We recommend you also try building the package on other supported platforms. As you may not have access to actual hardware platforms, we recommend using the @code{qemu-binfmt-service-type} to emulate them. In order to enable it, add the @code{virtualization} service module and the following service to the list of services in your @code{operating-system} configuration:" msgstr "我们建议你同时尝试在别的支持的平台上构建这个软件包。你可能没有别的平台的真实的硬件,我们推荐使用@code{qemu-binfmt-service-type}来模拟它们。为了启用这个功能,把下面这个服务添加到你的@code{操作系统}配置的服务列表里:" #. type: lisp -#: guix-git/doc/contributing.texi:1057 +#: guix-git/doc/contributing.texi:1085 #, fuzzy, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -1606,19 +1648,19 @@ msgstr "" " (guix-support? #t)))\n" #. type: enumerate -#: guix-git/doc/contributing.texi:1060 +#: guix-git/doc/contributing.texi:1088 msgid "Then reconfigure your system." msgstr "然后重新配置你的系统。" #. type: enumerate -#: guix-git/doc/contributing.texi:1065 +#: guix-git/doc/contributing.texi:1093 #, fuzzy #| msgid "You can then build packages for different platforms by specifying the @code{--system} option. For example, to build the \"hello\" package for the armhf, aarch64, or mips64 architectures, you would run the following commands, respectively:" msgid "You can then build packages for different platforms by specifying the @code{--system} option. For example, to build the \"hello\" package for the armhf or aarch64 architectures, you would run the following commands, respectively:" msgstr "你之后可以用@code{--system}参数为不同的平台构建软件包。例如,为armhf,aarch64,或mips64架构构建\"hello\"软件包,你可以依次运行如下的命令:" #. type: example -#: guix-git/doc/contributing.texi:1068 +#: guix-git/doc/contributing.texi:1096 #, fuzzy, no-wrap msgid "" "guix build --system=armhf-linux --rounds=2 hello\n" @@ -1629,242 +1671,244 @@ msgstr "" "guix build --system=mips64el-linux --rounds=2 hello\n" #. type: cindex -#: guix-git/doc/contributing.texi:1071 +#: guix-git/doc/contributing.texi:1099 #, no-wrap msgid "bundling" msgstr "构建" #. type: enumerate -#: guix-git/doc/contributing.texi:1074 +#: guix-git/doc/contributing.texi:1102 msgid "Make sure the package does not use bundled copies of software already available as separate packages." msgstr "请确保软件包里不捆绑出现已经被打过包的软件的副本。" #. type: enumerate -#: guix-git/doc/contributing.texi:1083 +#: guix-git/doc/contributing.texi:1111 msgid "Sometimes, packages include copies of the source code of their dependencies as a convenience for users. However, as a distribution, we want to make sure that such packages end up using the copy we already have in the distribution, if there is one. This improves resource usage (the dependency is built and stored only once), and allows the distribution to make transverse changes such as applying security updates for a given software package in a single place and have them affect the whole system---something that bundled copies prevent." msgstr "有时,软件包为了方便用户,捆绑了依赖库的源代码。然而,当依赖库在发行版里已经存在时,做为一个发行版,我们希望确保这些软件包使用发行版里已有的副本。这提高资源使用率(依赖库只构建一次,存储一份),并且使发行版更容易管理,如仅在一个地方对某个软件包进行安全更新就可以影响整个系统--捆绑软件会妨碍这么做。" #. type: enumerate -#: guix-git/doc/contributing.texi:1092 +#: guix-git/doc/contributing.texi:1120 #, fuzzy msgid "Take a look at the profile reported by @command{guix size} (@pxref{Invoking guix size}). This will allow you to notice references to other packages unwillingly retained. It may also help determine whether to split the package (@pxref{Packages with Multiple Outputs}), and which optional dependencies should be used. In particular, avoid adding @code{texlive} as a dependency: because of its extreme size, use the @code{texlive-tiny} package or @code{texlive-union} procedure instead." msgstr "看一下@command{guix size}(@pxref{Invoking guix size})的分析报告。这会让你注意到对其它软件包无意中的引用。它也可以帮助决定是否要把一个软件包分割成几个输出(@pxref{有多个输出的软件包}),以及需要使用哪些可选的依赖。特别地,避免把@code{texlive}添加为依赖:因为它太大了,请使用@code{texlive-tiny}或@code{texlive-union}代替它。" #. type: enumerate -#: guix-git/doc/contributing.texi:1097 +#: guix-git/doc/contributing.texi:1125 #, fuzzy #| msgid "For important changes, check that dependent package (if applicable) are not affected by the change; @code{guix refresh --list-dependent @var{package}} will help you do that (@pxref{Invoking guix refresh})." msgid "For important changes, check that dependent packages (if applicable) are not affected by the change; @code{guix refresh --list-dependent @var{package}} will help you do that (@pxref{Invoking guix refresh})." msgstr "对于重要的更改,确保依赖它的软件包没有受到影响。@code{guix refresh --list-dependent @var{软件包}}会帮你检查(@pxref{Invoking guix refresh})。" #. type: cindex -#: guix-git/doc/contributing.texi:1099 +#: guix-git/doc/contributing.texi:1127 #, no-wrap msgid "branching strategy" msgstr "分支策略" #. type: cindex -#: guix-git/doc/contributing.texi:1100 +#: guix-git/doc/contributing.texi:1128 #, no-wrap msgid "rebuild scheduling strategy" msgstr "重新构建的调度策略" #. type: enumerate -#: guix-git/doc/contributing.texi:1103 +#: guix-git/doc/contributing.texi:1131 msgid "Depending on the number of dependent packages and thus the amount of rebuilding induced, commits go to different branches, along these lines:" msgstr "取决于受影响的软件包的数量,即需要重新构建的数量,commit需要被提交到不同的分支,具体如下:" #. type: item -#: guix-git/doc/contributing.texi:1105 +#: guix-git/doc/contributing.texi:1133 #, no-wrap msgid "300 dependent packages or less" msgstr "300个或更少的受影响的软件包" #. type: table -#: guix-git/doc/contributing.texi:1107 +#: guix-git/doc/contributing.texi:1135 msgid "@code{master} branch (non-disruptive changes)." msgstr "@code{master}分支(非破坏性的更改)。" #. type: item -#: guix-git/doc/contributing.texi:1108 +#: guix-git/doc/contributing.texi:1136 #, no-wrap msgid "between 300 and 1,800 dependent packages" msgstr "300 至 1800 个受影响的软件包" #. type: table -#: guix-git/doc/contributing.texi:1114 +#: guix-git/doc/contributing.texi:1142 #, fuzzy msgid "@code{staging} branch (non-disruptive changes). This branch is intended to be merged in @code{master} every 6 weeks or so. Topical changes (e.g., an update of the GNOME stack) can instead go to a specific branch (say, @code{gnome-updates}). This branch is not expected to be buildable or usable until late in its development process." msgstr "@code{staging}分支(非破坏性的更改)。这个分支每隔大约3周会被合并进@code{master}。对某个主题的更改(如对GNOME系列的更新)可以放进一个特定的分支(如@code{gnome-updates})。" #. type: item -#: guix-git/doc/contributing.texi:1115 +#: guix-git/doc/contributing.texi:1143 #, no-wrap msgid "more than 1,800 dependent packages" msgstr "超过 1800 个受影响的软件包" #. type: table -#: guix-git/doc/contributing.texi:1120 +#: guix-git/doc/contributing.texi:1148 #, fuzzy msgid "@code{core-updates} branch (may include major and potentially disruptive changes). This branch is intended to be merged in @code{master} every 6 months or so. This branch is not expected to be buildable or usable until late in its development process." msgstr "@code{core-updates}分支(可能含有重要的或破坏性的更改)。这个分支每隔大约2.5个月会被合并进@code{master}。" #. type: enumerate -#: guix-git/doc/contributing.texi:1127 +#: guix-git/doc/contributing.texi:1155 #, fuzzy #| msgid "All these branches are @uref{@value{SUBSTITUTE-URL}, tracked by our build farm} and merged into @code{master} once everything has been successfully built. This allows us to fix issues before they hit users, and to reduce the window during which pre-built binaries are not available." msgid "All these branches are @uref{https://@value{SUBSTITUTE-SERVER-1}, tracked by our build farm} and merged into @code{master} once everything has been successfully built. This allows us to fix issues before they hit users, and to reduce the window during which pre-built binaries are not available." msgstr "所有这些分支都@uref{@value{SUBSTITUTE-URL}, 被构建农场跟踪},并且当一切都被顺利构建时合并进@code{master}。这使我们在影响到用户之前就能改正问题,并且缩小没有准备好预构建的二进制包的窗口期。" #. type: enumerate -#: guix-git/doc/contributing.texi:1136 +#: guix-git/doc/contributing.texi:1164 msgid "When we decide to start building the @code{staging} or @code{core-updates} branches, they will be forked and renamed with the suffix @code{-frozen}, at which time only bug fixes may be pushed to the frozen branches. The @code{core-updates} and @code{staging} branches will remain open to accept patches for the next cycle. Please ask on the mailing list or IRC if unsure where to place a patch." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1138 +#: guix-git/doc/contributing.texi:1166 #, no-wrap msgid "determinism, of build processes" msgstr "构建过程的确定性" #. type: cindex -#: guix-git/doc/contributing.texi:1139 +#: guix-git/doc/contributing.texi:1167 #, no-wrap msgid "reproducible builds, checking" msgstr "检查可复现的构建" #. type: enumerate -#: guix-git/doc/contributing.texi:1143 +#: guix-git/doc/contributing.texi:1171 msgid "Check whether the package's build process is deterministic. This typically means checking whether an independent build of the package yields the exact same result that you obtained, bit for bit." msgstr "检查软件包的构建过程是不是确定性的。这通常意味着检查对软件包的独立构建是否能得到每一个比特都完全相同的结果。" #. type: enumerate -#: guix-git/doc/contributing.texi:1146 +#: guix-git/doc/contributing.texi:1174 msgid "A simple way to do that is by building the same package several times in a row on your machine (@pxref{Invoking guix build}):" msgstr "为此,一个简单的做法是在你的机器上多次构建同一个软件包(@pxref{Invoking guix build}):" #. type: example -#: guix-git/doc/contributing.texi:1149 +#: guix-git/doc/contributing.texi:1177 #, no-wrap msgid "guix build --rounds=2 my-package\n" msgstr "guix build --rounds=2 <我的软件包>\n" #. type: enumerate -#: guix-git/doc/contributing.texi:1153 +#: guix-git/doc/contributing.texi:1181 msgid "This is enough to catch a class of common non-determinism issues, such as timestamps or randomly-generated output in the build result." msgstr "这足以查出一批普通的不确定性问题,如构建结果里存在时间戳或随机生成的输出。" #. type: enumerate -#: guix-git/doc/contributing.texi:1163 +#: guix-git/doc/contributing.texi:1191 #, fuzzy #| msgid "Another option is to use @command{guix challenge} (@pxref{Invoking guix challenge}). You may run it once the package has been committed and built by @code{@value{SUBSTITUTE-SERVER}} to check whether it obtains the same result as you did. Better yet: Find another machine that can build it and run @command{guix publish}. Since the remote build machine is likely different from yours, this can catch non-determinism issues related to the hardware---e.g., use of different instruction set extensions---or to the operating system kernel---e.g., reliance on @code{uname} or @file{/proc} files." msgid "Another option is to use @command{guix challenge} (@pxref{Invoking guix challenge}). You may run it once the package has been committed and built by @code{@value{SUBSTITUTE-SERVER-1}} to check whether it obtains the same result as you did. Better yet: Find another machine that can build it and run @command{guix publish}. Since the remote build machine is likely different from yours, this can catch non-determinism issues related to the hardware---e.g., use of different instruction set extensions---or to the operating system kernel---e.g., reliance on @code{uname} or @file{/proc} files." msgstr "另一个选择是使用@command{guix challenge}(@pxref{Invoking guix challenge})。当软件包被提交并且被@code{@value{SUBSTITUTE-SERVER}}构建之后,你可以运行这个命令检查你是否得到相同的构建结果。更好的:找另一台可以构建的机器,运行@command{guix publish}。由于远程的构建机器很可能和你的机器不同,这可以捕捉到由硬件不同引起的不确定性问题--如,使用不同的指令集--或不同操作系统内核引起的问题--如,对@code{uname}或@file{/proc}文件的依赖。" #. type: enumerate -#: guix-git/doc/contributing.texi:1169 +#: guix-git/doc/contributing.texi:1197 msgid "When writing documentation, please use gender-neutral wording when referring to people, such as @uref{https://en.wikipedia.org/wiki/Singular_they, singular ``they''@comma{} ``their''@comma{} ``them''}, and so forth." msgstr "在编写文档时,请用性别中立的词语指代人,如@uref{https://en.wikipedia.org/wiki/Singular_they, “他”@comma{} “他的”},等。" #. type: enumerate -#: guix-git/doc/contributing.texi:1173 +#: guix-git/doc/contributing.texi:1201 msgid "Verify that your patch contains only one set of related changes. Bundling unrelated changes together makes reviewing harder and slower." msgstr "检查你的补丁只包含一些相关的更改。把不相关的更改捆绑在一起会让评审更困难和更慢。" #. type: enumerate -#: guix-git/doc/contributing.texi:1176 +#: guix-git/doc/contributing.texi:1204 msgid "Examples of unrelated changes include the addition of several packages, or a package update along with fixes to that package." msgstr "不相关的更改的例子有:同时新增多个软件包,或更新软件包同时修补这个软件包。" #. type: enumerate -#: guix-git/doc/contributing.texi:1181 -msgid "Please follow our code formatting rules, possibly running the @command{etc/indent-code.el} script to do that automatically for you (@pxref{Formatting Code})." +#: guix-git/doc/contributing.texi:1209 +#, fuzzy +#| msgid "Please follow our code formatting rules, possibly running the @command{etc/indent-code.el} script to do that automatically for you (@pxref{Formatting Code})." +msgid "Please follow our code formatting rules, possibly running @command{guix style} script to do that automatically for you (@pxref{Formatting Code})." msgstr "请遵守我们的代码格式规范,最好运行@command{etc/indent-code.el}脚本以自动为你格式化(@pxref{Formatting Code})。" #. type: enumerate -#: guix-git/doc/contributing.texi:1189 +#: guix-git/doc/contributing.texi:1217 msgid "When possible, use mirrors in the source URL (@pxref{Invoking guix download}). Use reliable URLs, not generated ones. For instance, GitHub archives are not necessarily identical from one generation to the next, so in this case it's often better to clone the repository. Don't use the @command{name} field in the URL: it is not very useful and if the name changes, the URL will probably be wrong." msgstr "当可能时,请在源URL里使用镜像@pxref{Invoking guix download}。使用可靠的而不是生成的URL。例如,GitHub的下载文件每次生成时不一定是相同的,所以这时最好克隆仓库。不要在URL里使用@command{name}变量:这没有什么用,而且如果名字变了,URL很可能就错了。" #. type: enumerate -#: guix-git/doc/contributing.texi:1193 +#: guix-git/doc/contributing.texi:1221 msgid "Check if Guix builds (@pxref{Building from Git}) and address the warnings, especially those about use of undefined symbols." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1196 +#: guix-git/doc/contributing.texi:1224 msgid "Make sure your changes do not break Guix and simulate a @code{guix pull} with:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1198 +#: guix-git/doc/contributing.texi:1226 #, no-wrap msgid "guix pull --url=/path/to/your/checkout --profile=/tmp/guix.master\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1211 +#: guix-git/doc/contributing.texi:1239 #, fuzzy msgid "When posting a patch to the mailing list, use @samp{[PATCH] @dots{}} as a subject, if your patch is to be applied on a branch other than @code{master}, say @code{core-updates}, specify it in the subject like @samp{[PATCH core-updates] @dots{}}. You may use your email client or the @command{git send-email} command (@pxref{Sending a Patch Series}). We prefer to get patches in plain text messages, either inline or as MIME attachments. You are advised to pay attention if your email client changes anything like line breaks or indentation which could potentially break the patches." msgstr "在提交补丁到邮件列表时,使用@samp{[PATCH] @dots{}}做为主题。你可以使用你的邮件客户端或者@command{git send-email}命令(@pxref{Sending a Patch Series})。我们倾向于接收纯文本的邮件,无论是在正文里还是在MIME附件里。建议你注意你的邮件客户端是否会自动修改换行或缩进,这可能会损坏补丁。" #. type: Plain text -#: guix-git/doc/contributing.texi:1216 +#: guix-git/doc/contributing.texi:1244 msgid "Expect some delay when you submit your very first patch to @email{guix-patches@@gnu.org}. You have to wait until you get an acknowledgement with the assigned tracking number. Future acknowledgements should not be delayed." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1219 +#: guix-git/doc/contributing.texi:1247 msgid "When a bug is resolved, please close the thread by sending an email to @email{@var{NNN}-done@@debbugs.gnu.org}." msgstr "当一个bug被修复时,请通过向@email{@var{NNN}-done@@debbugs.gnu.org}发邮件的方式关闭thread。" #. type: subsection -#: guix-git/doc/contributing.texi:1220 guix-git/doc/contributing.texi:1221 +#: guix-git/doc/contributing.texi:1248 guix-git/doc/contributing.texi:1249 #, fuzzy, no-wrap #| msgid "Configuring the boot loader." msgid "Configuring Git" msgstr "设置引导程序。" #. type: cindex -#: guix-git/doc/contributing.texi:1222 +#: guix-git/doc/contributing.texi:1250 #, fuzzy, no-wrap msgid "git configuration" msgstr "系统配置" #. type: code{#1} -#: guix-git/doc/contributing.texi:1224 guix-git/doc/contributing.texi:1259 +#: guix-git/doc/contributing.texi:1252 guix-git/doc/contributing.texi:1287 #, no-wrap msgid "git send-email" msgstr "git send-email" #. type: Plain text -#: guix-git/doc/contributing.texi:1232 +#: guix-git/doc/contributing.texi:1260 msgid "If you have not done so already, you may wish to set a name and email that will be associated with your commits (@pxref{telling git your name, , Telling Git your name, git, Git User Manual}). If you wish to use a different name or email just for commits in this repository, you can use @command{git config --local}, or edit @file{.git/config} in the repository instead of @file{~/.gitconfig}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1238 +#: guix-git/doc/contributing.texi:1266 msgid "We provide some default settings in @file{etc/git/gitconfig} which modify how patches are generated, making them easier to read and apply. These settings can be applied by manually copying them to @file{.git/config} in your checkout, or by telling Git to include the whole file:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1241 +#: guix-git/doc/contributing.texi:1269 #, no-wrap msgid "git config --local include.path ../etc/git/gitconfig\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1245 +#: guix-git/doc/contributing.texi:1273 msgid "From then on, any changes to @file{etc/git/gitconfig} would automatically take effect." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1250 +#: guix-git/doc/contributing.texi:1278 msgid "Since the first patch in a series must be sent separately (@pxref{Sending a Patch Series}), it can also be helpful to tell @command{git format-patch} to handle the e-mail threading instead of @command{git send-email}:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1254 +#: guix-git/doc/contributing.texi:1282 #, no-wrap msgid "" "git config --local format.thread shallow\n" @@ -1872,188 +1916,188 @@ msgid "" msgstr "" #. type: anchor{#1} -#: guix-git/doc/contributing.texi:1256 guix-git/doc/contributing.texi:1258 +#: guix-git/doc/contributing.texi:1284 guix-git/doc/contributing.texi:1286 #, no-wrap msgid "Sending a Patch Series" msgstr "发送补丁系列" #. type: cindex -#: guix-git/doc/contributing.texi:1258 +#: guix-git/doc/contributing.texi:1286 #, no-wrap msgid "patch series" msgstr "补丁系列" #. type: Plain text -#: guix-git/doc/contributing.texi:1269 +#: guix-git/doc/contributing.texi:1297 #, fuzzy msgid "When sending a patch series (e.g., using @code{git send-email}), please first send one message to @email{guix-patches@@gnu.org}, and then send subsequent patches to @email{@var{NNN}@@debbugs.gnu.org} to make sure they are kept together. See @uref{https://debbugs.gnu.org/Advanced.html, the Debbugs documentation} for more information. You can install @command{git send-email} with @command{guix install git:send-email}." msgstr "在发送补丁系列时(如,使用@code{git send-email}),请先向@email{guix-patches@@gnu.org}发送一封邮件,再把后续的补丁发送到@email{@var{NNN}@@debbugs.gnu.org},以确保他们被归在一起。见@uref{https://debbugs.gnu.org/Advanced.html, Debbugs文档}以了解更多信息。" #. type: Plain text -#: guix-git/doc/contributing.texi:1275 +#: guix-git/doc/contributing.texi:1303 msgid "This section describes how the Guix project tracks its bug reports and patch submissions." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1282 -#: guix-git/doc/contributing.texi:1283 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1310 +#: guix-git/doc/contributing.texi:1311 #, no-wrap msgid "The Issue Tracker" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "The official bug and patch tracker." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1296 -#: guix-git/doc/contributing.texi:1297 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1324 +#: guix-git/doc/contributing.texi:1325 #, fuzzy, no-wrap #| msgid "user interfaces" msgid "Debbugs User Interfaces" msgstr "用户界面" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "Ways to interact with Debbugs." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1280 guix-git/doc/contributing.texi:1336 -#: guix-git/doc/contributing.texi:1337 +#: guix-git/doc/contributing.texi:1308 guix-git/doc/contributing.texi:1364 +#: guix-git/doc/contributing.texi:1365 #, no-wrap msgid "Debbugs Usertags" msgstr "" #. type: menuentry -#: guix-git/doc/contributing.texi:1280 +#: guix-git/doc/contributing.texi:1308 msgid "Tag reports with custom labels." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1285 +#: guix-git/doc/contributing.texi:1313 #, no-wrap msgid "bug reports, tracking" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1286 +#: guix-git/doc/contributing.texi:1314 #, no-wrap msgid "patch submissions, tracking" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1287 +#: guix-git/doc/contributing.texi:1315 #, no-wrap msgid "issue tracking" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1288 +#: guix-git/doc/contributing.texi:1316 #, no-wrap msgid "Debbugs, issue tracking system" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1295 +#: guix-git/doc/contributing.texi:1323 msgid "Bug reports and patch submissions are currently tracked using the Debbugs instance at @uref{https://bugs.gnu.org}. Bug reports are filed against the @code{guix} ``package'' (in Debbugs parlance), by sending email to @email{bug-guix@@gnu.org}, while patch submissions are filed against the @code{guix-patches} package by sending email to @email{guix-patches@@gnu.org} (@pxref{Submitting Patches})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1301 +#: guix-git/doc/contributing.texi:1329 msgid "A web interface (actually @emph{two} web interfaces!) are available to browse issues:" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1310 +#: guix-git/doc/contributing.texi:1338 msgid "@url{https://issues.guix.gnu.org} provides a pleasant interface@footnote{The web interface at @url{https://issues.guix.gnu.org} is powered by Mumi, a nice piece of software written in Guile, and you can help! See @url{https://git.elephly.net/gitweb.cgi?p=software/mumi.git}.} to browse bug reports and patches, and to participate in discussions;" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1312 +#: guix-git/doc/contributing.texi:1340 #, fuzzy msgid "@url{https://bugs.gnu.org/guix} lists bug reports;" msgstr "@url{https://gnupg.org/, GNU libgcrypt};" #. type: itemize -#: guix-git/doc/contributing.texi:1314 +#: guix-git/doc/contributing.texi:1342 msgid "@url{https://bugs.gnu.org/guix-patches} lists patch submissions." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1319 +#: guix-git/doc/contributing.texi:1347 msgid "To view discussions related to issue number @var{n}, go to @indicateurl{https://issues.guix.gnu.org/@var{n}} or @indicateurl{https://bugs.gnu.org/@var{n}}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1322 +#: guix-git/doc/contributing.texi:1350 msgid "If you use Emacs, you may find it more convenient to interact with issues using @file{debbugs.el}, which you can install with:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1325 +#: guix-git/doc/contributing.texi:1353 #, fuzzy, no-wrap msgid "guix install emacs-debbugs\n" msgstr "guix install emacs-guix\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1328 +#: guix-git/doc/contributing.texi:1356 msgid "For example, to list all open issues on @code{guix-patches}, hit:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1331 +#: guix-git/doc/contributing.texi:1359 #, no-wrap msgid "@kbd{C-u} @kbd{M-x} debbugs-gnu @kbd{RET} @kbd{RET} guix-patches @kbd{RET} n y\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1335 +#: guix-git/doc/contributing.texi:1363 #, fuzzy msgid "@xref{Top,,, debbugs-ug, Debbugs User Guide}, for more information on this nifty tool!" msgstr "@xref{Invoking guix pack},了解这个方便的工具。" #. type: cindex -#: guix-git/doc/contributing.texi:1339 +#: guix-git/doc/contributing.texi:1367 #, no-wrap msgid "usertags, for debbugs" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1340 +#: guix-git/doc/contributing.texi:1368 #, no-wrap msgid "Debbugs usertags" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1346 +#: guix-git/doc/contributing.texi:1374 msgid "Debbugs provides a feature called @dfn{usertags} that allows any user to tag any bug with an arbitrary label. Bugs can be searched by usertag, so this is a handy way to organize bugs@footnote{The list of usertags is public information, and anyone can modify any user's list of usertags, so keep that in mind if you choose to use this feature.}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1352 +#: guix-git/doc/contributing.texi:1380 msgid "For example, to view all the bug reports (or patches, in the case of @code{guix-patches}) tagged with the usertag @code{powerpc64le-linux} for the user @code{guix}, open a URL like the following in a web browser: @url{https://debbugs.gnu.org/cgi-bin/pkgreport.cgi?tag=powerpc64le-linux;users=guix}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1356 +#: guix-git/doc/contributing.texi:1384 msgid "For more information on how to use usertags, please refer to the documentation for Debbugs or the documentation for whatever tool you use to interact with Debbugs." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1361 +#: guix-git/doc/contributing.texi:1389 msgid "In Guix, we are experimenting with usertags to keep track of architecture-specific issues. To facilitate collaboration, all our usertags are associated with the single user @code{guix}. The following usertags currently exist for that user:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1364 guix-git/doc/guix.texi:556 +#: guix-git/doc/contributing.texi:1392 guix-git/doc/guix.texi:557 #, fuzzy, no-wrap msgid "powerpc64le-linux" msgstr "aarch64-linux" #. type: table -#: guix-git/doc/contributing.texi:1372 +#: guix-git/doc/contributing.texi:1400 msgid "The purpose of this usertag is to make it easy to find the issues that matter most for the @code{powerpc64le-linux} system type. Please assign this usertag to bugs or patches that affect @code{powerpc64le-linux} but not other system types. In addition, you may use it to identify issues that for some reason are particularly important for the @code{powerpc64le-linux} system type, even if the issue affects other system types, too." msgstr "" @@ -2061,135 +2105,135 @@ msgstr "" #. type: item #. #-#-#-#-# guix.pot (guix manual checkout) #-#-#-#-# #. type: cindex -#: guix-git/doc/contributing.texi:1373 guix-git/doc/guix.texi:3070 -#: guix-git/doc/guix.texi:4771 +#: guix-git/doc/contributing.texi:1401 guix-git/doc/guix.texi:3087 +#: guix-git/doc/guix.texi:4789 #, no-wrap msgid "reproducibility" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1377 +#: guix-git/doc/contributing.texi:1405 msgid "For issues related to reproducibility. For example, it would be appropriate to assign this usertag to a bug report for a package that fails to build reproducibly." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1384 +#: guix-git/doc/contributing.texi:1412 msgid "If you're a committer and you want to add a usertag, just start using it with the @code{guix} user. If the usertag proves useful to you, consider updating this section of the manual so that others will know what your usertag means." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1388 +#: guix-git/doc/contributing.texi:1416 #, no-wrap msgid "commit access, for developers" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1394 -msgid "Everyone can contribute to Guix without having commit access (@pxref{Submitting Patches}). However, for frequent contributors, having write access to the repository can be convenient. Commit access should not be thought of as a ``badge of honor'' but rather as a responsibility a contributor is willing to take to help the project." +#: guix-git/doc/contributing.texi:1427 +msgid "Everyone can contribute to Guix without having commit access (@pxref{Submitting Patches}). However, for frequent contributors, having write access to the repository can be convenient. As a rule of thumb, a contributor should have accumulated fifty (50) reviewed commits to be considered as a committer and have sustained their activity in the project for at least 6 months. This ensures enough interactions with the contributor, which is essential for mentoring and assessing whether they are ready to become a committer. Commit access should not be thought of as a ``badge of honor'' but rather as a responsibility a contributor is willing to take to help the project." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1398 +#: guix-git/doc/contributing.texi:1431 msgid "The following sections explain how to get commit access, how to be ready to push commits, and the policies and community expectations for commits pushed upstream." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1399 +#: guix-git/doc/contributing.texi:1432 #, fuzzy, no-wrap #| msgid "Commit Access" msgid "Applying for Commit Access" msgstr "提交权利" #. type: Plain text -#: guix-git/doc/contributing.texi:1403 +#: guix-git/doc/contributing.texi:1436 msgid "When you deem it necessary, consider applying for commit access by following these steps:" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1412 +#: guix-git/doc/contributing.texi:1445 msgid "Find three committers who would vouch for you. You can view the list of committers at @url{https://savannah.gnu.org/project/memberlist.php?group=guix}. Each of them should email a statement to @email{guix-maintainers@@gnu.org} (a private alias for the collective of maintainers), signed with their OpenPGP key." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1418 +#: guix-git/doc/contributing.texi:1451 msgid "Committers are expected to have had some interactions with you as a contributor and to be able to judge whether you are sufficiently familiar with the project's practices. It is @emph{not} a judgment on the value of your work, so a refusal should rather be interpreted as ``let's try again later''." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1425 +#: guix-git/doc/contributing.texi:1458 msgid "Send @email{guix-maintainers@@gnu.org} a message stating your intent, listing the three committers who support your application, signed with the OpenPGP key you will use to sign commits, and giving its fingerprint (see below). See @uref{https://emailselfdefense.fsf.org/en/}, for an introduction to public-key cryptography with GnuPG." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1431 +#: guix-git/doc/contributing.texi:1464 msgid "Set up GnuPG such that it never uses the SHA1 hash algorithm for digital signatures, which is known to be unsafe since 2019, for instance by adding the following line to @file{~/.gnupg/gpg.conf} (@pxref{GPG Esoteric Options,,, gnupg, The GNU Privacy Guard Manual}):" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1434 +#: guix-git/doc/contributing.texi:1467 #, no-wrap msgid "digest-algo sha512\n" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1439 +#: guix-git/doc/contributing.texi:1472 msgid "Maintainers ultimately decide whether to grant you commit access, usually following your referrals' recommendation." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1441 +#: guix-git/doc/contributing.texi:1474 #, no-wrap msgid "OpenPGP, signed commits" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1446 +#: guix-git/doc/contributing.texi:1479 msgid "If and once you've been given access, please send a message to @email{guix-devel@@gnu.org} to say so, again signed with the OpenPGP key you will use to sign commits (do that before pushing your first commit). That way, everyone can notice and ensure you control that OpenPGP key." msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:1447 guix-git/doc/guix.texi:17972 +#: guix-git/doc/contributing.texi:1480 guix-git/doc/guix.texi:18334 #, no-wrap msgid "Important" msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:1449 +#: guix-git/doc/contributing.texi:1482 msgid "Before you can push for the first time, maintainers must:" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1453 +#: guix-git/doc/contributing.texi:1486 msgid "add your OpenPGP key to the @code{keyring} branch;" msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1456 +#: guix-git/doc/contributing.texi:1489 msgid "add your OpenPGP fingerprint to the @file{.guix-authorizations} file of the branch(es) you will commit to." msgstr "" #. type: enumerate -#: guix-git/doc/contributing.texi:1461 +#: guix-git/doc/contributing.texi:1494 msgid "Make sure to read the rest of this section and... profit!" msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:1467 +#: guix-git/doc/contributing.texi:1500 msgid "Maintainers are happy to give commit access to people who have been contributing for some time and have a track record---don't be shy and don't underestimate your work!" msgstr "" #. type: quotation -#: guix-git/doc/contributing.texi:1471 +#: guix-git/doc/contributing.texi:1504 msgid "However, note that the project is working towards a more automated patch review and merging system, which, as a consequence, may lead us to have fewer people with commit access to the main repository. Stay tuned!" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1478 +#: guix-git/doc/contributing.texi:1511 msgid "All commits that are pushed to the central repository on Savannah must be signed with an OpenPGP key, and the public key should be uploaded to your user account on Savannah and to public key servers, such as @code{keys.openpgp.org}. To configure Git to automatically sign commits, run:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1481 +#: guix-git/doc/contributing.texi:1514 #, no-wrap msgid "" "git config commit.gpgsign true\n" @@ -2197,7 +2241,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1484 +#: guix-git/doc/contributing.texi:1517 #, no-wrap msgid "" "# Substitute the fingerprint of your public PGP key.\n" @@ -2205,350 +2249,350 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1489 +#: guix-git/doc/contributing.texi:1522 msgid "You can prevent yourself from accidentally pushing unsigned commits to Savannah by using the pre-push Git hook located at @file{etc/git/pre-push}:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1492 +#: guix-git/doc/contributing.texi:1525 #, no-wrap msgid "cp etc/git/pre-push .git/hooks/pre-push\n" msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1494 +#: guix-git/doc/contributing.texi:1527 #, fuzzy, no-wrap #| msgid "Commit Access" msgid "Commit Policy" msgstr "提交权利" #. type: Plain text -#: guix-git/doc/contributing.texi:1499 +#: guix-git/doc/contributing.texi:1532 msgid "If you get commit access, please make sure to follow the policy below (discussions of the policy can take place on @email{guix-devel@@gnu.org})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1504 +#: guix-git/doc/contributing.texi:1537 msgid "Non-trivial patches should always be posted to @email{guix-patches@@gnu.org} (trivial patches include fixing typos, etc.). This mailing list fills the patch-tracking database (@pxref{Tracking Bugs and Patches})." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1513 +#: guix-git/doc/contributing.texi:1546 msgid "For patches that just add a new package, and a simple one, it's OK to commit, if you're confident (which means you successfully built it in a chroot setup, and have done a reasonable copyright and license auditing). Likewise for package upgrades, except upgrades that trigger a lot of rebuilds (for example, upgrading GnuTLS or GLib). We have a mailing list for commit notifications (@email{guix-commits@@gnu.org}), so people can notice. Before pushing your changes, make sure to run @code{git pull --rebase}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1518 +#: guix-git/doc/contributing.texi:1551 msgid "When pushing a commit on behalf of somebody else, please add a @code{Signed-off-by} line at the end of the commit log message---e.g., with @command{git am --signoff}. This improves tracking of who did what." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1522 +#: guix-git/doc/contributing.texi:1555 msgid "When adding channel news entries (@pxref{Channels, Writing Channel News}), make sure they are well-formed by running the following command right before pushing:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1525 +#: guix-git/doc/contributing.texi:1558 #, fuzzy, no-wrap msgid "make check-channel-news\n" msgstr "make check\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1531 +#: guix-git/doc/contributing.texi:1564 msgid "For anything else, please post to @email{guix-patches@@gnu.org} and leave time for a review, without committing anything (@pxref{Submitting Patches}). If you didn’t receive any reply after two weeks, and if you're confident, it's OK to commit." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1534 +#: guix-git/doc/contributing.texi:1567 msgid "That last part is subject to being adjusted, allowing individuals to commit directly on non-controversial changes on parts they’re familiar with." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1535 +#: guix-git/doc/contributing.texi:1568 #, no-wrap msgid "Addressing Issues" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1546 +#: guix-git/doc/contributing.texi:1579 msgid "Peer review (@pxref{Submitting Patches}) and tools such as @command{guix lint} (@pxref{Invoking guix lint}) and the test suite (@pxref{Running the Test Suite}) should catch issues before they are pushed. Yet, commits that ``break'' functionality might occasionally go through. When that happens, there are two priorities: mitigating the impact, and understanding what happened to reduce the chance of similar incidents in the future. The responsibility for both these things primarily lies with those involved, but like everything this is a group effort." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1551 +#: guix-git/doc/contributing.texi:1584 msgid "Some issues can directly affect all users---for instance because they make @command{guix pull} fail or break core functionality, because they break major packages (at build time or run time), or because they introduce known security vulnerabilities." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1552 +#: guix-git/doc/contributing.texi:1585 #, no-wrap msgid "reverting commits" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1558 +#: guix-git/doc/contributing.texi:1591 msgid "The people involved in authoring, reviewing, and pushing such commit(s) should be at the forefront to mitigate their impact in a timely fashion: by pushing a followup commit to fix it (if possible), or by reverting it to leave time to come up with a proper fix, and by communicating with other developers about the problem." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1564 +#: guix-git/doc/contributing.texi:1597 msgid "If these persons are unavailable to address the issue in time, other committers are entitled to revert the commit(s), explaining in the commit log and on the mailing list what the problem was, with the goal of leaving time to the original committer, reviewer(s), and author(s) to propose a way forward." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1573 +#: guix-git/doc/contributing.texi:1606 msgid "Once the problem has been dealt with, it is the responsibility of those involved to make sure the situation is understood. If you are working to understand what happened, focus on gathering information and avoid assigning any blame. Do ask those involved to describe what happened, do not ask them to explain the situation---this would implicitly blame them, which is unhelpful. Accountability comes from a consensus about the problem, learning from it and improving processes so that it's less likely to reoccur." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1574 +#: guix-git/doc/contributing.texi:1607 #, fuzzy, no-wrap #| msgid "Log Rotation" msgid "Commit Revocation" msgstr "日志轮替" #. type: Plain text -#: guix-git/doc/contributing.texi:1581 +#: guix-git/doc/contributing.texi:1614 msgid "In order to reduce the possibility of mistakes, committers will have their Savannah account removed from the Guix Savannah project and their key removed from @file{.guix-authorizations} after 12 months of inactivity; they can ask to regain commit access by emailing the maintainers, without going through the vouching process." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1591 +#: guix-git/doc/contributing.texi:1624 msgid "Maintainers@footnote{See @uref{https://guix.gnu.org/en/about} for the current list of maintainers. You can email them privately at @email{guix-maintainers@@gnu.org}.} may also revoke an individual's commit rights, as a last resort, if cooperation with the rest of the community has caused too much friction---even within the bounds of the project's code of conduct (@pxref{Contributing}). They would only do so after public or private discussion with the individual and a clear notice. Examples of behavior that hinders cooperation and could lead to such a decision include:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1593 +#: guix-git/doc/contributing.texi:1626 #, no-wrap msgid "repeated violation of the commit policy stated above;" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1594 +#: guix-git/doc/contributing.texi:1627 #, no-wrap msgid "repeated failure to take peer criticism into account;" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1595 +#: guix-git/doc/contributing.texi:1628 #, no-wrap msgid "breaching trust through a series of grave incidents." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1602 +#: guix-git/doc/contributing.texi:1635 msgid "When maintainers resort to such a decision, they notify developers on @email{guix-devel@@gnu.org}; inquiries may be sent to @email{guix-maintainers@@gnu.org}. Depending on the situation, the individual may still be welcome to contribute." msgstr "" #. type: subsection -#: guix-git/doc/contributing.texi:1603 +#: guix-git/doc/contributing.texi:1636 #, no-wrap msgid "Helping Out" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1610 +#: guix-git/doc/contributing.texi:1643 msgid "One last thing: the project keeps moving forward because committers not only push their own awesome changes, but also offer some of their time @emph{reviewing} and pushing other people's changes. As a committer, you're welcome to use your expertise and commit rights to help other contributors, too!" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1614 +#: guix-git/doc/contributing.texi:1647 #, fuzzy, no-wrap msgid "update-guix-package, updating the guix package" msgstr "guix package:调用guix package" #. type: Plain text -#: guix-git/doc/contributing.texi:1620 +#: guix-git/doc/contributing.texi:1653 msgid "It is sometimes desirable to update the @code{guix} package itself (the package defined in @code{(gnu packages package-management)}), for example to make new daemon features available for use by the @code{guix-service-type} service type. In order to simplify this task, the following command can be used:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1623 +#: guix-git/doc/contributing.texi:1656 #, no-wrap msgid "make update-guix-package\n" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1630 +#: guix-git/doc/contributing.texi:1663 msgid "The @code{update-guix-package} make target will use the last known @emph{commit} corresponding to @code{HEAD} in your Guix checkout, compute the hash of the Guix sources corresponding to that commit and update the @code{commit}, @code{revision} and hash of the @code{guix} package definition." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1634 +#: guix-git/doc/contributing.texi:1667 msgid "To validate that the updated @code{guix} package hashes are correct and that it can be built successfully, the following command can be run from the directory of your Guix checkout:" msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1637 +#: guix-git/doc/contributing.texi:1670 #, fuzzy, no-wrap msgid "./pre-inst-env guix build guix\n" msgstr "./pre-inst-env guix build gnew --keep-failed\n" #. type: Plain text -#: guix-git/doc/contributing.texi:1642 +#: guix-git/doc/contributing.texi:1675 msgid "To guard against accidentally updating the @code{guix} package to a commit that others can't refer to, a check is made that the commit used has already been pushed to the Savannah-hosted Guix git repository." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1647 +#: guix-git/doc/contributing.texi:1680 msgid "This check can be disabled, @emph{at your own peril}, by setting the @code{GUIX_ALLOW_ME_TO_USE_PRIVATE_COMMIT} environment variable. When this variable is set, the updated package source is also added to the store. This is used as part of the release process of Guix." msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1648 +#: guix-git/doc/contributing.texi:1681 #, fuzzy, no-wrap #| msgid "isolation" msgid "translation" msgstr "隔离" #. type: cindex -#: guix-git/doc/contributing.texi:1649 +#: guix-git/doc/contributing.texi:1682 #, no-wrap msgid "l10n" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1650 +#: guix-git/doc/contributing.texi:1683 #, no-wrap msgid "i18n" msgstr "" #. type: cindex -#: guix-git/doc/contributing.texi:1651 +#: guix-git/doc/contributing.texi:1684 #, no-wrap msgid "native language support" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1661 +#: guix-git/doc/contributing.texi:1694 msgid "Writing code and packages is not the only way to provide a meaningful contribution to Guix. Translating to a language you speak is another example of a valuable contribution you can make. This section is designed to describe the translation process. It gives you advice on how you can get involved, what can be translated, what mistakes you should avoid and what we can do to help you!" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1667 +#: guix-git/doc/contributing.texi:1700 msgid "Guix is a big project that has multiple components that can be translated. We coordinate the translation effort on a @uref{https://translate.fedoraproject.org/projects/guix/,Weblate instance} hosted by our friends at Fedora. You will need an account to submit translations." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1674 +#: guix-git/doc/contributing.texi:1707 msgid "Some of the software packaged in Guix also contain translations. We do not host a translation platform for them. If you want to translate a package provided by Guix, you should contact their developers or find the information on their website. As an example, you can find the homepage of the @code{hello} package by typing @code{guix show hello}. On the ``homepage'' line, you will see @url{https://www.gnu.org/software/hello/} as the homepage." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1679 +#: guix-git/doc/contributing.texi:1712 msgid "Many GNU and non-GNU packages can be translated on the @uref{https://translationproject.org,Translation Project}. Some projects with multiple components have their own platform. For instance, GNOME has its own platform, @uref{https://l10n.gnome.org/,Damned Lies}." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1681 +#: guix-git/doc/contributing.texi:1714 msgid "Guix has five components hosted on Weblate." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1683 +#: guix-git/doc/contributing.texi:1716 #, no-wrap msgid "@code{guix} contains all the strings from the Guix software (the" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1718 msgid "guided system installer, the package manager, etc), excluding packages." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1685 +#: guix-git/doc/contributing.texi:1718 #, no-wrap msgid "@code{packages} contains the synopsis (single-sentence description" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1687 +#: guix-git/doc/contributing.texi:1720 msgid "of a package) and description (longer description) of packages in Guix." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1687 +#: guix-git/doc/contributing.texi:1720 #, no-wrap msgid "@code{website} contains the official Guix website, except for" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1689 +#: guix-git/doc/contributing.texi:1722 msgid "blog posts and multimedia content." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1689 +#: guix-git/doc/contributing.texi:1722 #, no-wrap msgid "@code{documentation-manual} corresponds to this manual." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1690 +#: guix-git/doc/contributing.texi:1723 #, no-wrap msgid "@code{documentation-cookbook} is the component for the cookbook." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1693 +#: guix-git/doc/contributing.texi:1726 #, no-wrap msgid "General Directions" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1701 +#: guix-git/doc/contributing.texi:1734 msgid "Once you get an account, you should be able to select a component from @uref{https://translate.fedoraproject.org/projects/guix/,the guix project}, and select a language. If your language does not appear in the list, go to the bottom and click on the ``Start new translation'' button. Select the language you want to translate to from the list, to start your new translation." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1706 +#: guix-git/doc/contributing.texi:1739 msgid "Like lots of other free software packages, Guix uses @uref{https://www.gnu.org/software/gettext,GNU Gettext} for its translations, with which translatable strings are extracted from the source code to so-called PO files." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1717 +#: guix-git/doc/contributing.texi:1750 msgid "Even though PO files are text files, changes should not be made with a text editor but with PO editing software. Weblate integrates PO editing functionality. Alternatively, translators can use any of various free-software tools for filling in translations, of which @uref{https://poedit.net/,Poedit} is one example, and (after logging in) @uref{https://docs.weblate.org/en/latest/user/files.html,upload} the changed file. There is also a special @uref{https://www.emacswiki.org/emacs/PoMode,PO editing mode} for users of GNU Emacs. Over time translators find out what software they are happy with and what features they need." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1722 +#: guix-git/doc/contributing.texi:1755 msgid "On Weblate, you will find various links to the editor, that will show various subsets (or all) of the strings. Have a look around and at the @uref{https://docs.weblate.org/en/latest/,documentation} to familiarize yourself with the platform." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1723 +#: guix-git/doc/contributing.texi:1756 #, no-wrap msgid "Translation Components" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1728 +#: guix-git/doc/contributing.texi:1761 msgid "In this section, we provide more detailed guidance on the translation process, as well as details on what you should or should not do. When in doubt, please contact us, we will be happy to help!" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1730 guix-git/doc/guix.texi:9420 +#: guix-git/doc/contributing.texi:1763 guix-git/doc/guix.texi:9734 #, no-wrap msgid "guix" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1735 +#: guix-git/doc/contributing.texi:1768 msgid "Guix is written in the Guile programming language, and some strings contain special formatting that is interpreted by Guile. These special formatting should be highlighted by Weblate. They start with @code{~} followed by one or more characters." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1744 +#: guix-git/doc/contributing.texi:1777 msgid "When printing the string, Guile replaces the special formatting symbols with actual values. For instance, the string @samp{ambiguous package specification `~a'} would be substituted to contain said package specification instead of @code{~a}. To properly translate this string, you must keep the formatting code in your translation, although you can place it where it makes sense in your language. For instance, the French translation says @samp{spécification du paquet « ~a » ambiguë} because the adjective needs to be placed in the end of the sentence." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1748 +#: guix-git/doc/contributing.texi:1781 msgid "If there are multiple formatting symbols, make sure to respect the order. Guile does not know in which order you intended the string to be read, so it will substitute the symbols in the same order as the English sentence." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1756 +#: guix-git/doc/contributing.texi:1789 msgid "As an example, you cannot translate @samp{package '~a' has been superseded by '~a'} by @samp{'~a' superseeds package '~a'}, because the meaning would be reversed. If @var{foo} is superseded by @var{bar}, the translation would read @samp{'foo' superseeds package 'bar'}. To work around this problem, it is possible to use more advanced formatting to select a given piece of data, instead of following the default English order. @xref{Formatted Output,,, guile, GNU Guile Reference Manual}, for more information on formatting in Guile." msgstr "" @@ -2556,99 +2600,99 @@ msgstr "" #. type: item #. #-#-#-#-# guix.pot (guix manual checkout) #-#-#-#-# #. type: cindex -#: guix-git/doc/contributing.texi:1757 guix-git/doc/guix.texi:2988 +#: guix-git/doc/contributing.texi:1790 guix-git/doc/guix.texi:3005 #, no-wrap msgid "packages" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1762 +#: guix-git/doc/contributing.texi:1795 msgid "Package descriptions occasionally contain Texinfo markup (@pxref{Synopses and Descriptions}). Texinfo markup looks like @samp{@@code@{rm -rf@}}, @samp{@@emph@{important@}}, etc. When translating, please leave markup as is." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1771 +#: guix-git/doc/contributing.texi:1804 msgid "The characters after ``@@'' form the name of the markup, and the text between ``@{'' and ``@}'' is its content. In general, you should not translate the content of markup like @code{@@code}, as it contains literal code that do not change with language. You can translate the content of formatting markup such as @code{@@emph}, @code{@@i}, @code{@@itemize}, @code{@@item}. However, do not translate the name of the markup, or it will not be recognized. Do not translate the word after @code{@@end}, it is the name of the markup that is closed at this position (e.g.@: @code{@@itemize ... @@end itemize})." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1772 +#: guix-git/doc/contributing.texi:1805 #, no-wrap msgid "documentation-manual and documentation-cookbook" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1776 +#: guix-git/doc/contributing.texi:1809 msgid "The first step to ensure a successful translation of the manual is to find and translate the following strings @emph{first}:" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1778 +#: guix-git/doc/contributing.texi:1811 #, no-wrap msgid "@code{version.texi}: Translate this string as @code{version-xx.texi}," msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1781 +#: guix-git/doc/contributing.texi:1814 msgid "where @code{xx} is your language code (the one shown in the URL on weblate)." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1781 +#: guix-git/doc/contributing.texi:1814 #, no-wrap msgid "@code{contributing.texi}: Translate this string as" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1783 +#: guix-git/doc/contributing.texi:1816 msgid "@code{contributing.xx.texi}, where @code{xx} is the same language code." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1783 +#: guix-git/doc/contributing.texi:1816 #, no-wrap msgid "@code{Top}: Do not translate this string, it is important for Texinfo." msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1786 +#: guix-git/doc/contributing.texi:1819 msgid "If you translate it, the document will be empty (missing a Top node). Please look for it, and register @code{Top} as its translation." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1791 +#: guix-git/doc/contributing.texi:1824 msgid "Translating these strings first ensure we can include your translation in the guix repository without breaking the make process or the @command{guix pull} machinery." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1798 +#: guix-git/doc/contributing.texi:1831 msgid "The manual and the cookbook both use Texinfo. As for @code{packages}, please keep Texinfo markup as is. There are more possible markup types in the manual than in the package descriptions. In general, do not translate the content of @code{@@code}, @code{@@file}, @code{@@var}, @code{@@value}, etc. You should translate the content of formatting markup such as @code{@@emph}, @code{@@i}, etc." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1806 +#: guix-git/doc/contributing.texi:1839 msgid "The manual contains sections that can be referred to by name by @code{@@ref}, @code{@@xref} and @code{@@pxref}. We have a mechanism in place so you do not have to translate their content. If you keep the English title, we will automatically replace it with your translation of that title. This ensures that Texinfo will always be able to find the node. If you decide to change the translation of the title, the references will automatically be updated and you will not have to update them all yourself." msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1816 +#: guix-git/doc/contributing.texi:1849 msgid "When translating references from the cookbook to the manual, you need to replace the name of the manual and the name of the section. For instance, to translate @code{@@pxref@{Defining Packages,,, guix, GNU Guix Reference Manual@}}, you would replace @code{Defining Packages} with the title of that section in the translated manual @emph{only} if that title is translated. If the title is not translated in your language yet, do not translate it here, or the link will be broken. Replace @code{guix} with @code{guix.xx} where @code{xx} is your language code. @code{GNU Guix Reference Manual} is the text of the link. You can translate it however you wish." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1817 +#: guix-git/doc/contributing.texi:1850 #, fuzzy, no-wrap #| msgid "official website" msgid "website" msgstr "官方网站" #. type: table -#: guix-git/doc/contributing.texi:1824 +#: guix-git/doc/contributing.texi:1857 msgid "The website pages are written using SXML, an s-expression version of HTML, the basic language of the web. We have a process to extract translatable strings from the source, and replace complex s-expressions with a more familiar XML markup, where each markup is numbered. Translators can arbitrarily change the ordering, as in the following example." msgstr "" #. type: example -#: guix-git/doc/contributing.texi:1831 +#: guix-git/doc/contributing.texi:1864 #, no-wrap msgid "" "#. TRANSLATORS: Defining Packages is a section name\n" @@ -2659,138 +2703,138 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/contributing.texi:1834 +#: guix-git/doc/contributing.texi:1867 msgid "Note that you need to include the same markups. You cannot skip any." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1842 +#: guix-git/doc/contributing.texi:1875 msgid "In case you make a mistake, the component might fail to build properly with your language, or even make guix pull fail. To prevent that, we have a process in place to check the content of the files before pushing to our repository. We will not be able to update the translation for your language in Guix, so we will notify you (through weblate and/or by email) so you get a chance to fix the issue." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1843 +#: guix-git/doc/contributing.texi:1876 #, no-wrap msgid "Outside of Weblate" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1846 +#: guix-git/doc/contributing.texi:1879 msgid "Currently, some parts of Guix cannot be translated on Weblate, help wanted!" msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1848 +#: guix-git/doc/contributing.texi:1881 #, no-wrap msgid "@command{guix pull} news can be translated in @file{news.scm}, but is not" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1854 +#: guix-git/doc/contributing.texi:1887 msgid "available from Weblate. If you want to provide a translation, you can prepare a patch as described above, or simply send us your translation with the name of the news entry you translated and your language. @xref{Writing Channel News}, for more information about channel news." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1854 +#: guix-git/doc/contributing.texi:1887 #, no-wrap msgid "Guix blog posts cannot currently be translated." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1855 +#: guix-git/doc/contributing.texi:1888 #, no-wrap msgid "The installer script (for foreign distributions) is entirely in English." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1856 +#: guix-git/doc/contributing.texi:1889 #, no-wrap msgid "Some of the libraries Guix uses cannot be translated or are translated" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1858 +#: guix-git/doc/contributing.texi:1891 msgid "outside of the Guix project. Guile itself is not internationalized." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1858 +#: guix-git/doc/contributing.texi:1891 #, no-wrap msgid "Other manuals linked from this manual or the cookbook might not be" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1860 +#: guix-git/doc/contributing.texi:1893 msgid "translated." msgstr "" #. type: subsubheading -#: guix-git/doc/contributing.texi:1862 +#: guix-git/doc/contributing.texi:1895 #, no-wrap msgid "Translation Infrastructure" msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1873 +#: guix-git/doc/contributing.texi:1906 msgid "Weblate is backed by a git repository from which it discovers new strings to translate and pushes new and updated translations. Normally, it would be enough to give it commit access to our repositories. However, we decided to use a separate repository for two reasons. First, we would have to give Weblate commit access and authorize its signing key, but we do not trust it in the same way we trust guix developers, especially since we do not manage the instance ourselves. Second, if translators mess something up, it can break the generation of the website and/or guix pull for all our users, independently of their language." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1877 +#: guix-git/doc/contributing.texi:1910 msgid "For these reasons, we use a dedicated repository to host translations, and we synchronize it with our guix and artworks repositories after checking no issue was introduced in the translation." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1883 +#: guix-git/doc/contributing.texi:1916 msgid "Developers can download the latest PO files from weblate in the Guix repository by running the @command{make download-po} command. It will automatically download the latest files from weblate, reformat them to a canonical form, and check they do not contain issues. The manual needs to be built again to check for additional issues that might crash Texinfo." msgstr "" #. type: Plain text -#: guix-git/doc/contributing.texi:1887 +#: guix-git/doc/contributing.texi:1920 msgid "Before pushing new translation files, developers should add them to the make machinery so the translations are actually available. The process differs for the various components." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1889 +#: guix-git/doc/contributing.texi:1922 #, no-wrap msgid "New po files for the @code{guix} and @code{packages} components must" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1892 +#: guix-git/doc/contributing.texi:1925 msgid "be registered by adding the new language to @file{po/guix/LINGUAS} or @file{po/packages/LINGUAS}." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1892 +#: guix-git/doc/contributing.texi:1925 #, no-wrap msgid "New po files for the @code{documentation-manual} component must be" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1898 +#: guix-git/doc/contributing.texi:1931 msgid "registered by adding the file name to @code{DOC_PO_FILES} in @file{po/doc/local.mk}, the generated @file{%D%/guix.xx.texi} manual to @code{info_TEXINFOS} in @file{doc/local.mk} and the generated @file{%D%/guix.xx.texi} and @file{%D%/contributing.xx.texi} to @code{TRANSLATED_INFO} also in @file{doc/local.mk}." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1898 +#: guix-git/doc/contributing.texi:1931 #, no-wrap msgid "New po files for the @code{documentation-cookbook} component must be" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1904 +#: guix-git/doc/contributing.texi:1937 msgid "registered by adding the file name to @code{DOC_COOKBOOK_PO_FILES} in @file{po/doc/local.mk}, the generated @file{%D%/guix-cookbook.xx.texi} manual to @code{info_TEXINFOS} in @file{doc/local.mk} and the generated @file{%D%/guix-cookbook.xx.texi} to @code{TRANSLATED_INFO} also in @file{doc/local.mk}." msgstr "" #. type: item -#: guix-git/doc/contributing.texi:1904 +#: guix-git/doc/contributing.texi:1937 #, no-wrap msgid "New po files for the @code{website} component must be added to the" msgstr "" #. type: itemize -#: guix-git/doc/contributing.texi:1909 +#: guix-git/doc/contributing.texi:1942 msgid "@code{guix-artwork} repository, in @file{website/po/}. @file{website/po/LINGUAS} and @file{website/po/ietf-tags.scm} must be updated accordingly (see @file{website/i18n-howto.txt} for more information on the process)." msgstr "" @@ -2813,7 +2857,7 @@ msgstr "version-zh_CN.texi" #. type: copying #: guix-git/doc/guix.texi:103 -msgid "Copyright @copyright{} 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" +msgid "Copyright @copyright{} 2012-2022 Ludovic Courtès@* Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@* Copyright @copyright{} 2013 Nikita Karetnikov@* Copyright @copyright{} 2014, 2015, 2016 Alex Kost@* Copyright @copyright{} 2015, 2016 Mathieu Lirzin@* Copyright @copyright{} 2014 Pierre-Antoine Rault@* Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@* Copyright @copyright{} 2015, 2016, 2017, 2019, 2020, 2021 Leo Famulari@* Copyright @copyright{} 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus@* Copyright @copyright{} 2016 Ben Woodcroft@* Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021, 2022 Efraim Flashner@* Copyright @copyright{} 2016 John Darrington@* Copyright @copyright{} 2016, 2017 Nikita Gillmann@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@* Copyright @copyright{} 2016 Alex ter Weele@* Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@* Copyright @copyright{} 2017, 2018, 2019 Clément Lassieur@* Copyright @copyright{} 2017, 2018, 2020, 2021 Mathieu Othacehe@* Copyright @copyright{} 2017 Federico Beffa@* Copyright @copyright{} 2017, 2018 Carlo Zancanaro@* Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021, 2022 Marius Bakke@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@* Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018, 2021 Oleg Pykhalov@* Copyright @copyright{} 2018 Mike Gerwitz@* Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018, 2019 Gábor Boskovits@* Copyright @copyright{} 2018, 2019, 2020 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* Copyright @copyright{} 2018 Alex Vong@* Copyright @copyright{} 2019 Josh Holland@* Copyright @copyright{} 2019, 2020 Diego Nicola Barbato@* Copyright @copyright{} 2019 Ivan Petkov@* Copyright @copyright{} 2019 Jakob L. Kreuze@* Copyright @copyright{} 2019 Kyle Andrews@* Copyright @copyright{} 2019 Alex Griffin@* Copyright @copyright{} 2019, 2020, 2021, 2022 Guillaume Le Vaillant@* Copyright @copyright{} 2020 Liliana Marie Prikler@* Copyright @copyright{} 2019, 2020, 2021, 2022 Simon Tournier@* Copyright @copyright{} 2020 Wiktor Żelazny@* Copyright @copyright{} 2020 Damien Cassou@* Copyright @copyright{} 2020 Jakub Kądziołka@* Copyright @copyright{} 2020 Jack Hill@* Copyright @copyright{} 2020 Naga Malleswari@* Copyright @copyright{} 2020, 2021 Brice Waegeneire@* Copyright @copyright{} 2020 R Veera Kumar@* Copyright @copyright{} 2020, 2021 Pierre Langlois@* Copyright @copyright{} 2020 pinoaffe@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020, 2021 Alexandru-Sergiu Marton@* Copyright @copyright{} 2020 raingloom@* Copyright @copyright{} 2020 Daniel Brooks@* Copyright @copyright{} 2020 John Soo@* Copyright @copyright{} 2020 Jonathan Brielmaier@* Copyright @copyright{} 2020 Edgar Vincent@* Copyright @copyright{} 2021 Maxime Devos@* Copyright @copyright{} 2021 B. Wilson@* Copyright @copyright{} 2021 Xinglu Chen@* Copyright @copyright{} 2021 Raghav Gururajan@* Copyright @copyright{} 2021 Domagoj Stolfa@* Copyright @copyright{} 2021 Hui Lu@* Copyright @copyright{} 2021 pukkamustard@* Copyright @copyright{} 2021 Alice Brenon@* Copyright @copyright{} 2021 Josselin Poiret@* Copyright @copyright{} 2021 Andrew Tropin@* Copyright @copyright{} 2021 Sarah Morgensen@* Copyright @copyright{} 2021 Josselin Poiret@*" msgstr "" #. type: copying @@ -2981,7 +3025,7 @@ msgstr "这个用户手册还提供简体中文版(@pxref{Top,,, guix.zh_CN, G #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:192 -#: guix-git/doc/guix.texi:402 guix-git/doc/guix.texi:403 +#: guix-git/doc/guix.texi:403 guix-git/doc/guix.texi:404 #, no-wrap msgid "Introduction" msgstr "介绍" @@ -2993,7 +3037,7 @@ msgstr "Guix是关于什么的?" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:197 -#: guix-git/doc/guix.texi:589 guix-git/doc/guix.texi:590 +#: guix-git/doc/guix.texi:600 guix-git/doc/guix.texi:601 #, no-wrap msgid "Installation" msgstr "安装" @@ -3005,7 +3049,7 @@ msgstr "安装Guix。" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:213 -#: guix-git/doc/guix.texi:2049 guix-git/doc/guix.texi:2050 +#: guix-git/doc/guix.texi:2066 guix-git/doc/guix.texi:2067 #, no-wrap msgid "System Installation" msgstr "系统安装" @@ -3016,8 +3060,8 @@ msgid "Installing the whole operating system." msgstr "安装整个操作系统。" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:2777 -#: guix-git/doc/guix.texi:2778 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:2794 +#: guix-git/doc/guix.texi:2795 #, no-wrap msgid "Getting Started" msgstr "入门" @@ -3029,7 +3073,7 @@ msgstr "" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:230 -#: guix-git/doc/guix.texi:2985 guix-git/doc/guix.texi:2986 +#: guix-git/doc/guix.texi:3002 guix-git/doc/guix.texi:3003 #, no-wrap msgid "Package Management" msgstr "软件包管理" @@ -3041,7 +3085,7 @@ msgstr "软件包安装、升级等。" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:253 -#: guix-git/doc/guix.texi:5053 guix-git/doc/guix.texi:5054 +#: guix-git/doc/guix.texi:5071 guix-git/doc/guix.texi:5072 #, no-wrap msgid "Channels" msgstr "通道" @@ -3053,7 +3097,7 @@ msgstr "定制软件包集合。" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:267 -#: guix-git/doc/guix.texi:5581 guix-git/doc/guix.texi:5582 +#: guix-git/doc/guix.texi:5599 guix-git/doc/guix.texi:5600 #, no-wrap msgid "Development" msgstr "开发" @@ -3065,7 +3109,7 @@ msgstr "Guix辅助的软件开发。" #. type: chapter #: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:275 -#: guix-git/doc/guix.texi:6799 guix-git/doc/guix.texi:6800 +#: guix-git/doc/guix.texi:6842 guix-git/doc/guix.texi:6843 #, no-wrap msgid "Programming Interface" msgstr "编程接口" @@ -3076,8 +3120,8 @@ msgid "Using Guix in Scheme." msgstr "在Scheme里使用Guix。" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:294 -#: guix-git/doc/guix.texi:10774 guix-git/doc/guix.texi:10775 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:295 +#: guix-git/doc/guix.texi:11088 guix-git/doc/guix.texi:11089 #, no-wrap msgid "Utilities" msgstr "工具" @@ -3088,8 +3132,8 @@ msgid "Package management commands." msgstr "软件包管理命令。" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:320 -#: guix-git/doc/guix.texi:14278 guix-git/doc/guix.texi:14279 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:321 +#: guix-git/doc/guix.texi:14635 guix-git/doc/guix.texi:14636 #, no-wrap msgid "System Configuration" msgstr "系统配置" @@ -3100,8 +3144,8 @@ msgid "Configuring the operating system." msgstr "配置操作系统。" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:36881 -#: guix-git/doc/guix.texi:36882 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37371 +#: guix-git/doc/guix.texi:37372 #, fuzzy, no-wrap #| msgid "System Configuration" msgid "Home Configuration" @@ -3115,8 +3159,8 @@ msgid "Configuring the home environment." msgstr "设置引导程序。" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37721 -#: guix-git/doc/guix.texi:37722 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38210 +#: guix-git/doc/guix.texi:38211 #, no-wrap msgid "Documentation" msgstr "文档" @@ -3127,8 +3171,8 @@ msgid "Browsing software user manuals." msgstr "浏览软件用户手册。" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:389 -#: guix-git/doc/guix.texi:37787 guix-git/doc/guix.texi:37788 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:390 +#: guix-git/doc/guix.texi:38276 guix-git/doc/guix.texi:38277 #, no-wrap msgid "Installing Debugging Files" msgstr "安装调试文件" @@ -3139,8 +3183,8 @@ msgid "Feeding the debugger." msgstr "为调试工具提供输入。" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:37942 -#: guix-git/doc/guix.texi:37943 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38431 +#: guix-git/doc/guix.texi:38432 #, no-wrap msgid "Security Updates" msgstr "安全更新" @@ -3151,8 +3195,8 @@ msgid "Deploying security fixes quickly." msgstr "快速部署安全补丁。" #. type: chapter -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:394 -#: guix-git/doc/guix.texi:38057 guix-git/doc/guix.texi:38058 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:395 +#: guix-git/doc/guix.texi:38546 guix-git/doc/guix.texi:38547 #, no-wrap msgid "Bootstrapping" msgstr "引导" @@ -3163,7 +3207,7 @@ msgid "GNU/Linux built from scratch." msgstr "从头开始构建GNU/Linux。" #. type: node -#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38349 +#: guix-git/doc/guix.texi:182 guix-git/doc/guix.texi:38838 #, no-wrap msgid "Porting" msgstr "移植" @@ -3179,8 +3223,8 @@ msgid "Your help needed!" msgstr "你需要帮助!" #. type: chapter -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38397 -#: guix-git/doc/guix.texi:38398 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38886 +#: guix-git/doc/guix.texi:38887 #, no-wrap msgid "Acknowledgments" msgstr "致谢" @@ -3191,8 +3235,8 @@ msgid "Thanks!" msgstr "感谢!" #. type: appendix -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38419 -#: guix-git/doc/guix.texi:38420 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38908 +#: guix-git/doc/guix.texi:38909 #, no-wrap msgid "GNU Free Documentation License" msgstr "GNU自由文档许可证" @@ -3203,8 +3247,8 @@ msgid "The license of this manual." msgstr "这个用户手册的许可证。" #. type: unnumbered -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38425 -#: guix-git/doc/guix.texi:38426 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38914 +#: guix-git/doc/guix.texi:38915 #, no-wrap msgid "Concept Index" msgstr "概念索引" @@ -3215,8 +3259,8 @@ msgid "Concepts." msgstr "概念。" #. type: unnumbered -#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38429 -#: guix-git/doc/guix.texi:38430 +#: guix-git/doc/guix.texi:187 guix-git/doc/guix.texi:38918 +#: guix-git/doc/guix.texi:38919 #, no-wrap msgid "Programming Index" msgstr "编程索引" @@ -3232,2164 +3276,2190 @@ msgid "--- The Detailed Node Listing ---" msgstr "---详细的章节列表---" #. type: section -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 -#: guix-git/doc/guix.texi:431 guix-git/doc/guix.texi:432 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 +#: guix-git/doc/guix.texi:432 guix-git/doc/guix.texi:433 #, no-wrap msgid "Managing Software the Guix Way" msgstr "以Guix的方式管理软件" #. type: menuentry -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 msgid "What's special." msgstr "特殊的地方。" #. type: section -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 -#: guix-git/doc/guix.texi:486 guix-git/doc/guix.texi:487 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 +#: guix-git/doc/guix.texi:487 guix-git/doc/guix.texi:488 #, no-wrap msgid "GNU Distribution" msgstr "GNU发行版" #. type: menuentry -#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:429 +#: guix-git/doc/guix.texi:195 guix-git/doc/guix.texi:430 msgid "The packages and tools." msgstr "软件包和工具。" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:631 guix-git/doc/guix.texi:632 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:642 guix-git/doc/guix.texi:643 #, no-wrap msgid "Binary Installation" msgstr "二进制文件安装" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Getting Guix running in no time!" msgstr "立刻运行Guix!" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:871 guix-git/doc/guix.texi:872 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:882 guix-git/doc/guix.texi:883 #, no-wrap msgid "Requirements" msgstr "需求" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Software needed to build and run Guix." msgstr "构建和运行Guix需要的软件。" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:957 guix-git/doc/guix.texi:958 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:969 guix-git/doc/guix.texi:970 #, no-wrap msgid "Running the Test Suite" msgstr "运行测试套件" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Testing Guix." msgstr "测试Guix。" #. type: section #: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:207 -#: guix-git/doc/guix.texi:629 guix-git/doc/guix.texi:1054 -#: guix-git/doc/guix.texi:1055 +#: guix-git/doc/guix.texi:640 guix-git/doc/guix.texi:1066 +#: guix-git/doc/guix.texi:1067 #, no-wrap msgid "Setting Up the Daemon" msgstr "设置后台进程" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Preparing the build daemon's environment." msgstr "准备“构建后台进程”的环境。" #. type: node -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:1525 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:1542 #, no-wrap msgid "Invoking guix-daemon" msgstr "调用guix-daemon" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Running the build daemon." msgstr "运行“构建后台进程”" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:1827 guix-git/doc/guix.texi:1828 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:1844 guix-git/doc/guix.texi:1845 #, no-wrap msgid "Application Setup" msgstr "设置应用程序" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Application-specific setup." msgstr "应用程序相关的设置。" #. type: section -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 -#: guix-git/doc/guix.texi:2012 guix-git/doc/guix.texi:2013 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 +#: guix-git/doc/guix.texi:2029 guix-git/doc/guix.texi:2030 #, fuzzy, no-wrap msgid "Upgrading Guix" msgstr "安装Guix" #. type: menuentry -#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:629 +#: guix-git/doc/guix.texi:205 guix-git/doc/guix.texi:640 msgid "Upgrading Guix and its build daemon." msgstr "升级 Guix 及其构建守护进程。" #. type: subsection -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1076 guix-git/doc/guix.texi:1077 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1088 guix-git/doc/guix.texi:1089 #, no-wrap msgid "Build Environment Setup" msgstr "设置构建环境" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Preparing the isolated build environment." msgstr "准备隔离的构建环境。" #. type: node -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1195 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1212 #, no-wrap msgid "Daemon Offload Setup" msgstr "下发工作给后台进程的设置" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Offloading builds to remote machines." msgstr "下发构建工作给远程的机器。" #. type: subsection -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 -#: guix-git/doc/guix.texi:1434 guix-git/doc/guix.texi:1435 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 +#: guix-git/doc/guix.texi:1451 guix-git/doc/guix.texi:1452 #, no-wrap msgid "SELinux Support" msgstr "SELinux的支持" #. type: menuentry -#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1074 +#: guix-git/doc/guix.texi:211 guix-git/doc/guix.texi:1086 msgid "Using an SELinux policy for the daemon." msgstr "为后台进程使用SELinux规则。" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:1470 -#: guix-git/doc/guix.texi:2083 guix-git/doc/guix.texi:2085 -#: guix-git/doc/guix.texi:2086 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:1487 +#: guix-git/doc/guix.texi:2100 guix-git/doc/guix.texi:2102 +#: guix-git/doc/guix.texi:2103 #, no-wrap msgid "Limitations" msgstr "限制" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "What you can expect." msgstr "你可以期待什么。" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2111 guix-git/doc/guix.texi:2112 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2128 guix-git/doc/guix.texi:2129 #, no-wrap msgid "Hardware Considerations" msgstr "硬件的考虑" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Supported hardware." msgstr "支持的硬件。" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2146 guix-git/doc/guix.texi:2147 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2163 guix-git/doc/guix.texi:2164 #, no-wrap msgid "USB Stick and DVD Installation" msgstr "U盘和DVD安装" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Preparing the installation medium." msgstr "准备安装介质。" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2227 guix-git/doc/guix.texi:2228 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2244 guix-git/doc/guix.texi:2245 #, no-wrap msgid "Preparing for Installation" msgstr "准备安装" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Networking, partitioning, etc." msgstr "网络、分区等。" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2250 guix-git/doc/guix.texi:2251 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2267 guix-git/doc/guix.texi:2268 #, no-wrap msgid "Guided Graphical Installation" msgstr "指导的图形安装" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Easy graphical installation." msgstr "简单的图形安装。" #. type: section #: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:225 -#: guix-git/doc/guix.texi:2083 guix-git/doc/guix.texi:2281 -#: guix-git/doc/guix.texi:2282 +#: guix-git/doc/guix.texi:2100 guix-git/doc/guix.texi:2298 +#: guix-git/doc/guix.texi:2299 #, no-wrap msgid "Manual Installation" msgstr "手动安装" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Manual installation for wizards." msgstr "适合巫师的手动安装。" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2660 guix-git/doc/guix.texi:2661 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2677 guix-git/doc/guix.texi:2678 #, no-wrap msgid "After System Installation" msgstr "系统安装之后" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "When installation succeeded." msgstr "当安装成功后。" #. type: node -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2694 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2711 #, no-wrap msgid "Installing Guix in a VM" msgstr "在虚拟机里安装 Guix" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "Guix System playground." msgstr "Guix系统游乐场。" #. type: section -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 -#: guix-git/doc/guix.texi:2745 guix-git/doc/guix.texi:2746 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 +#: guix-git/doc/guix.texi:2762 guix-git/doc/guix.texi:2763 #, no-wrap msgid "Building the Installation Image" msgstr "构建安装镜像" #. type: menuentry -#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2083 +#: guix-git/doc/guix.texi:223 guix-git/doc/guix.texi:2100 msgid "How this comes to be." msgstr "这是怎样实现的。" #. type: node -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 -#: guix-git/doc/guix.texi:2301 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 +#: guix-git/doc/guix.texi:2318 #, no-wrap msgid "Keyboard Layout and Networking and Partitioning" msgstr "键盘布局、网络和分区" #. type: menuentry -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 msgid "Initial setup." msgstr "初始设置。" #. type: subsection -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 -#: guix-git/doc/guix.texi:2571 guix-git/doc/guix.texi:2572 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 +#: guix-git/doc/guix.texi:2588 guix-git/doc/guix.texi:2589 #, no-wrap msgid "Proceeding with the Installation" msgstr "继续安装步骤" #. type: menuentry -#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2299 +#: guix-git/doc/guix.texi:228 guix-git/doc/guix.texi:2316 msgid "Installing." msgstr "安装。" #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:3019 guix-git/doc/guix.texi:3020 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3036 guix-git/doc/guix.texi:3037 #, no-wrap msgid "Features" msgstr "功能" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "How Guix will make your life brighter." msgstr "Guix怎样让你的生活更美好。" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:3109 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3126 #, no-wrap msgid "Invoking guix package" msgstr "调用guix package" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Package installation, removal, etc." msgstr "软件包安装,移除等。" #. type: section #: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:243 -#: guix-git/doc/guix.texi:3017 guix-git/doc/guix.texi:3738 -#: guix-git/doc/guix.texi:3739 +#: guix-git/doc/guix.texi:3034 guix-git/doc/guix.texi:3756 +#: guix-git/doc/guix.texi:3757 #, no-wrap msgid "Substitutes" msgstr "substitutes" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Downloading pre-built binaries." msgstr "下载构建好的二进制文件。" #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4074 guix-git/doc/guix.texi:4075 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4092 guix-git/doc/guix.texi:4093 #, no-wrap msgid "Packages with Multiple Outputs" msgstr "有多个输出的软件包" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Single source package, multiple outputs." msgstr "单个输入多个输出的软件包。" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4128 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4146 #, no-wrap msgid "Invoking guix gc" msgstr "调用guix gc" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Running the garbage collector." msgstr "运行垃圾回收器。" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4338 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4356 #, no-wrap msgid "Invoking guix pull" msgstr "调用guix pull" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Fetching the latest Guix and distribution." msgstr "获取最新的Guix和发行版。" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4585 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4603 #, fuzzy, no-wrap msgid "Invoking guix time-machine" msgstr "调用guix archive" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 #, fuzzy msgid "Running an older revision of Guix." msgstr "和其它版本的Guix交互。" #. type: section -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4640 guix-git/doc/guix.texi:4641 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4658 guix-git/doc/guix.texi:4659 #, no-wrap msgid "Inferiors" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Interacting with another revision of Guix." msgstr "和其它版本的Guix交互。" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4768 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4786 #, no-wrap msgid "Invoking guix describe" msgstr "调用guix describe" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Display information about your Guix revision." msgstr "显示你的Guix版本信息。" #. type: node -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 -#: guix-git/doc/guix.texi:4863 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:4881 #, no-wrap msgid "Invoking guix archive" msgstr "调用guix archive" #. type: menuentry -#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3017 +#: guix-git/doc/guix.texi:241 guix-git/doc/guix.texi:3034 msgid "Exporting and importing store files." msgstr "导出和导入仓库文件。" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3764 guix-git/doc/guix.texi:3765 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3782 guix-git/doc/guix.texi:3783 #, fuzzy, no-wrap #| msgid "Official Substitute Server" msgid "Official Substitute Servers" msgstr "官方的substitute服务器" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "One particular source of substitutes." msgstr "substitute的一个特殊来源。" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3794 guix-git/doc/guix.texi:3795 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3812 guix-git/doc/guix.texi:3813 #, no-wrap msgid "Substitute Server Authorization" msgstr "授权substitute服务器。" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How to enable or disable substitutes." msgstr "怎么开启或关闭substitute。" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3864 guix-git/doc/guix.texi:3865 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3882 guix-git/doc/guix.texi:3883 #, no-wrap msgid "Getting Substitutes from Other Servers" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 #, fuzzy msgid "Substitute diversity." msgstr "substitutes" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:3969 guix-git/doc/guix.texi:3970 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:3987 guix-git/doc/guix.texi:3988 #, no-wrap msgid "Substitute Authentication" msgstr "验证substitute" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How Guix verifies substitutes." msgstr "Guix怎样验证substitute。" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4004 guix-git/doc/guix.texi:4005 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4022 guix-git/doc/guix.texi:4023 #, no-wrap msgid "Proxy Settings" msgstr "代理设置" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How to get substitutes via proxy." msgstr "怎样通过代理获取substitute。" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4016 guix-git/doc/guix.texi:4017 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4034 guix-git/doc/guix.texi:4035 #, no-wrap msgid "Substitution Failure" msgstr "substitute失败" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "What happens when substitution fails." msgstr "当substitute失败时会发生什么。" #. type: subsection -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 -#: guix-git/doc/guix.texi:4044 guix-git/doc/guix.texi:4045 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 +#: guix-git/doc/guix.texi:4062 guix-git/doc/guix.texi:4063 #, no-wrap msgid "On Trusting Binaries" msgstr "关于信任二进制文件" #. type: menuentry -#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3762 +#: guix-git/doc/guix.texi:251 guix-git/doc/guix.texi:3780 msgid "How can you trust that binary blob?" msgstr "你怎么能信任二进制的 blob 呢?" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5086 guix-git/doc/guix.texi:5087 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5104 guix-git/doc/guix.texi:5105 #, no-wrap msgid "Specifying Additional Channels" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Extending the package collection." msgstr "拓展软件包集合。" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5136 guix-git/doc/guix.texi:5137 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5154 guix-git/doc/guix.texi:5155 #, no-wrap msgid "Using a Custom Guix Channel" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Using a customized Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5158 guix-git/doc/guix.texi:5159 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5176 guix-git/doc/guix.texi:5177 #, no-wrap msgid "Replicating Guix" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Running the @emph{exact same} Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5199 guix-git/doc/guix.texi:5200 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5217 guix-git/doc/guix.texi:5218 #, fuzzy, no-wrap msgid "Channel Authentication" msgstr "验证substitute" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 #, fuzzy msgid "How Guix verifies what it fetches." msgstr "Guix怎样验证substitute。" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5239 guix-git/doc/guix.texi:5240 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5257 guix-git/doc/guix.texi:5258 #, fuzzy, no-wrap msgid "Channels with Substitutes" msgstr "分享substitute。" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Using channels with available substitutes." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5264 guix-git/doc/guix.texi:5265 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5282 guix-git/doc/guix.texi:5283 #, no-wrap msgid "Creating a Channel" msgstr "创建一个频道" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How to write your custom channel." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5331 guix-git/doc/guix.texi:5332 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5349 guix-git/doc/guix.texi:5350 #, fuzzy, no-wrap msgid "Package Modules in a Sub-directory" msgstr "软件包模块" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 #, fuzzy msgid "Specifying the channel's package modules location." msgstr "指定如何构建软件包。" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5345 guix-git/doc/guix.texi:5346 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5363 guix-git/doc/guix.texi:5364 #, no-wrap msgid "Declaring Channel Dependencies" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "How to depend on other channels." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5387 guix-git/doc/guix.texi:5388 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5405 guix-git/doc/guix.texi:5406 #, no-wrap msgid "Specifying Channel Authorizations" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Defining channel authors authorizations." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5488 guix-git/doc/guix.texi:5489 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5506 guix-git/doc/guix.texi:5507 #, no-wrap msgid "Primary URL" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Distinguishing mirror to original." msgstr "" #. type: section -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 -#: guix-git/doc/guix.texi:5511 guix-git/doc/guix.texi:5512 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5529 guix-git/doc/guix.texi:5530 #, no-wrap msgid "Writing Channel News" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5084 +#: guix-git/doc/guix.texi:265 guix-git/doc/guix.texi:5102 msgid "Communicating information to channel's users." msgstr "" #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:5603 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:5621 #, fuzzy, no-wrap #| msgid "Invoking guix size" msgid "Invoking guix shell" msgstr "调用guix size" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 #, fuzzy #| msgid "Preparing the isolated build environment." msgid "Spawning one-off software environments." msgstr "准备隔离的构建环境。" #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:5956 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:5993 #, no-wrap msgid "Invoking guix environment" msgstr "调用guix environment" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Setting up development environments." msgstr "设置开发环境。" #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6325 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6368 #, no-wrap msgid "Invoking guix pack" msgstr "调用guix pack" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Creating software bundles." msgstr "创建软件bundle。" #. type: section -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6711 guix-git/doc/guix.texi:6712 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6754 guix-git/doc/guix.texi:6755 #, no-wrap msgid "The GCC toolchain" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 msgid "Working with languages supported by GCC." msgstr "" #. type: node -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 -#: guix-git/doc/guix.texi:6737 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 +#: guix-git/doc/guix.texi:6780 #, fuzzy, no-wrap msgid "Invoking guix git authenticate" msgstr "调用guix edit。" #. type: menuentry -#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5601 +#: guix-git/doc/guix.texi:273 guix-git/doc/guix.texi:5619 #, fuzzy msgid "Authenticating Git repositories." msgstr "认证HTTPS服务器。" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:6841 guix-git/doc/guix.texi:6842 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:6885 guix-git/doc/guix.texi:6886 #, no-wrap msgid "Package Modules" msgstr "软件包模块" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Packages from the programmer's viewpoint." msgstr "从程序员的角度看软件包。" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:289 -#: guix-git/doc/guix.texi:6839 guix-git/doc/guix.texi:6903 -#: guix-git/doc/guix.texi:6904 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:290 +#: guix-git/doc/guix.texi:6883 guix-git/doc/guix.texi:6947 +#: guix-git/doc/guix.texi:6948 #, no-wrap msgid "Defining Packages" msgstr "定义软件包" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Defining new packages." msgstr "定义新软件包。" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:7554 guix-git/doc/guix.texi:7555 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:7612 guix-git/doc/guix.texi:7613 #, fuzzy, no-wrap msgid "Defining Package Variants" msgstr "定义软件包" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 #, fuzzy msgid "Customizing packages." msgstr "构建软件包。" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:7821 guix-git/doc/guix.texi:7822 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:7879 guix-git/doc/guix.texi:7880 #, no-wrap msgid "Build Systems" msgstr "构建系统" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Specifying how packages are built." msgstr "指定如何构建软件包。" #. type: subsection -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:8861 guix-git/doc/guix.texi:8862 -#: guix-git/doc/guix.texi:9292 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:8918 guix-git/doc/guix.texi:8919 +#: guix-git/doc/guix.texi:9427 #, fuzzy, no-wrap msgid "Build Phases" msgstr "构建系统" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Phases of the build process of a package." msgstr "" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9055 guix-git/doc/guix.texi:9056 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9116 guix-git/doc/guix.texi:9117 #, fuzzy, no-wrap msgid "Build Utilities" msgstr "工具" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 #, fuzzy msgid "Helpers for your package definitions and more." msgstr "导入软件包定义。" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9369 guix-git/doc/guix.texi:9370 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9504 guix-git/doc/guix.texi:9505 +#, no-wrap +msgid "Search Paths" +msgstr "" + +#. type: menuentry +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#, fuzzy +#| msgid "Preparing the isolated build environment." +msgid "Declaring search path environment variables." +msgstr "准备隔离的构建环境。" + +#. type: section +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9683 guix-git/doc/guix.texi:9684 #, no-wrap msgid "The Store" msgstr "仓库" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Manipulating the package store." msgstr "操纵软件包仓库。" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9522 guix-git/doc/guix.texi:9523 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:9836 guix-git/doc/guix.texi:9837 #, no-wrap msgid "Derivations" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Low-level interface to package derivations." msgstr "软件包derivation的底层接口。" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:9716 guix-git/doc/guix.texi:9717 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10030 guix-git/doc/guix.texi:10031 #, no-wrap msgid "The Store Monad" msgstr "仓库monad" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Purely functional interface to the store." msgstr "仓库的纯函数式接口。" #. type: section -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:10035 guix-git/doc/guix.texi:10036 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10349 guix-git/doc/guix.texi:10350 #, no-wrap msgid "G-Expressions" msgstr "G-表达式" #. type: menuentry -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 msgid "Manipulating build expressions." msgstr "操纵构建表达式。" #. type: node -#: guix-git/doc/guix.texi:287 guix-git/doc/guix.texi:6839 -#: guix-git/doc/guix.texi:10674 +#: guix-git/doc/guix.texi:288 guix-git/doc/guix.texi:6883 +#: guix-git/doc/guix.texi:10988 #, no-wrap msgid "Invoking guix repl" msgstr "调用guix repl" #. type: menuentry -#: guix-git/doc/guix.texi:287 +#: guix-git/doc/guix.texi:288 #, fuzzy msgid "Programming Guix in Guile." msgstr "编程索引" #. type: node -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 -#: guix-git/doc/guix.texi:7103 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 +#: guix-git/doc/guix.texi:7147 #, no-wrap msgid "package Reference" msgstr "软件包引用" #. type: menuentry -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 msgid "The package data type." msgstr "软件包数据类型。" #. type: node -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 -#: guix-git/doc/guix.texi:7362 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 +#: guix-git/doc/guix.texi:7420 #, no-wrap msgid "origin Reference" msgstr "origin参考手册" #. type: menuentry -#: guix-git/doc/guix.texi:292 guix-git/doc/guix.texi:7100 +#: guix-git/doc/guix.texi:293 guix-git/doc/guix.texi:7144 msgid "The origin data type." msgstr "origin数据类型。" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:10801 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:11115 #, no-wrap msgid "Invoking guix build" msgstr "调用guix build" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Building packages from the command line." msgstr "用命令行构建软件包。" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11699 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12013 #, no-wrap msgid "Invoking guix edit" msgstr "调用guix edit。" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Editing package definitions." msgstr "编辑软件包定义。" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11729 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12043 #, no-wrap msgid "Invoking guix download" msgstr "调用guix download" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Downloading a file and printing its hash." msgstr "下载一个文件并打印它的hash。" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11787 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12101 #, no-wrap msgid "Invoking guix hash" msgstr "调用guix hash" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Computing the cryptographic hash of a file." msgstr "计算一个文件的密码学hash。" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:11877 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12192 #, no-wrap msgid "Invoking guix import" msgstr "调用guix import" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Importing package definitions." msgstr "导入软件包定义。" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12412 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:12727 #, no-wrap msgid "Invoking guix refresh" msgstr "调用guix refresh" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Updating package definitions." msgstr "更新软件包定义。" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12784 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13099 #, fuzzy, no-wrap #| msgid "Invoking guix system" msgid "Invoking guix style" msgstr "调用guix system" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 #, fuzzy #| msgid "Editing package definitions." msgid "Styling package definitions." msgstr "编辑软件包定义。" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:12880 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13237 #, no-wrap msgid "Invoking guix lint" msgstr "调用guix lint" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Finding errors in package definitions." msgstr "从软件包定义里寻找错误。" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13056 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13413 #, no-wrap msgid "Invoking guix size" msgstr "调用guix size" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Profiling disk usage." msgstr "分析硬盘使用情况。" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13200 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13557 #, no-wrap msgid "Invoking guix graph" msgstr "调用guix graph" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Visualizing the graph of packages." msgstr "展示软件包的关系图。" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13481 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:13838 #, no-wrap msgid "Invoking guix publish" msgstr "调用guix publish" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Sharing substitutes." msgstr "分享substitute。" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13750 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14107 #, no-wrap msgid "Invoking guix challenge" msgstr "调用guix challenge" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Challenging substitute servers." msgstr "挑战subtitute服务器。" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13933 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14290 #, no-wrap msgid "Invoking guix copy" msgstr "调用guix copy" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Copying to and from a remote store." msgstr "复制到远程的仓库,或从远程的仓库复制。" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:13996 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14353 #, no-wrap msgid "Invoking guix container" msgstr "调用guix container" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Process isolation." msgstr "进程隔离。" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:14050 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14407 #, no-wrap msgid "Invoking guix weather" msgstr "调用guix weather" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Assessing substitute availability." msgstr "评估substitute的可用性。" #. type: node -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 -#: guix-git/doc/guix.texi:14180 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 +#: guix-git/doc/guix.texi:14537 #, no-wrap msgid "Invoking guix processes" msgstr "调用guix processes" #. type: menuentry -#: guix-git/doc/guix.texi:311 guix-git/doc/guix.texi:10799 +#: guix-git/doc/guix.texi:312 guix-git/doc/guix.texi:11113 msgid "Listing client processes." msgstr "列出客户端进程。" #. type: section -#: guix-git/doc/guix.texi:313 guix-git/doc/guix.texi:10802 +#: guix-git/doc/guix.texi:314 guix-git/doc/guix.texi:11116 #, no-wrap msgid "Invoking @command{guix build}" msgstr "调用@command{guix build}" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:10855 guix-git/doc/guix.texi:10856 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11169 guix-git/doc/guix.texi:11170 #, no-wrap msgid "Common Build Options" msgstr "普通的构建选项" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Build options for most commands." msgstr "大部分命令的构建选项。" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11010 guix-git/doc/guix.texi:11011 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11324 guix-git/doc/guix.texi:11325 #, no-wrap msgid "Package Transformation Options" msgstr "软件包变换选项。" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Creating variants of packages." msgstr "创建软件包的变体。" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11381 guix-git/doc/guix.texi:11382 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11695 guix-git/doc/guix.texi:11696 #, no-wrap msgid "Additional Build Options" msgstr "额外的构建选项" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Options specific to 'guix build'." msgstr "只属于'guix build'的选项。" #. type: subsection -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 -#: guix-git/doc/guix.texi:11619 guix-git/doc/guix.texi:11620 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 +#: guix-git/doc/guix.texi:11933 guix-git/doc/guix.texi:11934 #, no-wrap msgid "Debugging Build Failures" msgstr "调试构建错误" #. type: menuentry -#: guix-git/doc/guix.texi:318 guix-git/doc/guix.texi:10853 +#: guix-git/doc/guix.texi:319 guix-git/doc/guix.texi:11167 msgid "Real life packaging experience." msgstr "真实的打包经验。" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14324 guix-git/doc/guix.texi:14325 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:14681 guix-git/doc/guix.texi:14682 #, no-wrap msgid "Using the Configuration System" msgstr "使用配置系统" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Customizing your GNU system." msgstr "定制你的GNU系统。" #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14575 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:14932 #, no-wrap msgid "operating-system Reference" msgstr "操作系统参考" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Detail of operating-system declarations." msgstr "操作系统声明详情。" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:14798 guix-git/doc/guix.texi:14799 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15155 guix-git/doc/guix.texi:15156 #, no-wrap msgid "File Systems" msgstr "文件系统" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring file system mounts." msgstr "设置文件系统挂载。" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15151 guix-git/doc/guix.texi:15152 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15508 guix-git/doc/guix.texi:15509 #, no-wrap msgid "Mapped Devices" msgstr "映射的设备" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Block device extra processing." msgstr "块设备额外的处理。" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15300 guix-git/doc/guix.texi:15301 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15657 guix-git/doc/guix.texi:15658 #, no-wrap msgid "Swap Space" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Backing RAM with disk space." msgstr "" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:15400 guix-git/doc/guix.texi:15401 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15757 guix-git/doc/guix.texi:15758 #, no-wrap msgid "User Accounts" msgstr "用户帐号" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Specifying user accounts." msgstr "指定用户帐号。" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:2308 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15581 -#: guix-git/doc/guix.texi:15582 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:2325 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:15938 +#: guix-git/doc/guix.texi:15939 #, no-wrap msgid "Keyboard Layout" msgstr "键盘布局" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "How the system interprets key strokes." msgstr "系统怎样理解按键。" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1835 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15727 -#: guix-git/doc/guix.texi:15728 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:1852 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:16084 +#: guix-git/doc/guix.texi:16085 #, no-wrap msgid "Locales" msgstr "区域" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Language and cultural convention settings." msgstr "语言和文化惯例设置。" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:345 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:15867 -#: guix-git/doc/guix.texi:15868 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:346 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:16224 +#: guix-git/doc/guix.texi:16225 #, no-wrap msgid "Services" msgstr "服务" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Specifying system services." msgstr "指定系统服务。" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34056 guix-git/doc/guix.texi:34057 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34493 guix-git/doc/guix.texi:34494 #, no-wrap msgid "Setuid Programs" msgstr "setuid程序" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Programs running with root privileges." msgstr "以root权限运行的程序。" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1984 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:34140 -#: guix-git/doc/guix.texi:34141 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:2001 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:34579 +#: guix-git/doc/guix.texi:34580 #, no-wrap msgid "X.509 Certificates" msgstr "X.509证书" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Authenticating HTTPS servers." msgstr "认证HTTPS服务器。" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:1878 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:34203 -#: guix-git/doc/guix.texi:34204 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:1895 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:34642 +#: guix-git/doc/guix.texi:34643 #, no-wrap msgid "Name Service Switch" msgstr "Name Service Switch" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring libc's name service switch." msgstr "设置libc的name service switch。" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34341 guix-git/doc/guix.texi:34342 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34780 guix-git/doc/guix.texi:34781 #, no-wrap msgid "Initial RAM Disk" msgstr "初始的内存虚拟硬盘" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Linux-Libre bootstrapping." msgstr "Linux-Libre引导。" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34536 guix-git/doc/guix.texi:34537 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:34975 guix-git/doc/guix.texi:34976 #, no-wrap msgid "Bootloader Configuration" msgstr "引导设置" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Configuring the boot loader." msgstr "设置引导程序。" #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:34834 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:35273 #, no-wrap msgid "Invoking guix system" msgstr "调用guix system" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Instantiating a system configuration." msgstr "实例化一个系统配置。" #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:35425 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:35881 #, no-wrap msgid "Invoking guix deploy" msgstr "调用 guix deploy" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 #, fuzzy msgid "Deploying a system configuration to a remote host." msgstr "实例化一个系统配置。" #. type: node -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 -#: guix-git/doc/guix.texi:35631 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:36121 #, no-wrap msgid "Running Guix in a VM" msgstr "在虚拟机里运行Guix" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "How to run Guix System in a virtual machine." msgstr "怎样在虚拟机里运行Guix。" #. type: section -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:381 -#: guix-git/doc/guix.texi:14322 guix-git/doc/guix.texi:35765 -#: guix-git/doc/guix.texi:35766 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:382 +#: guix-git/doc/guix.texi:14679 guix-git/doc/guix.texi:36255 +#: guix-git/doc/guix.texi:36256 #, no-wrap msgid "Defining Services" msgstr "定义服务" #. type: menuentry -#: guix-git/doc/guix.texi:339 guix-git/doc/guix.texi:14322 +#: guix-git/doc/guix.texi:340 guix-git/doc/guix.texi:14679 msgid "Adding new service definitions." msgstr "添加新的服务定义。" #. type: menuentry -#: guix-git/doc/guix.texi:341 +#: guix-git/doc/guix.texi:342 #, fuzzy #| msgid "System Configuration" msgid "Home Environment Configuration" msgstr "系统配置" #. type: node -#: guix-git/doc/guix.texi:343 guix-git/doc/guix.texi:36944 -#: guix-git/doc/guix.texi:37478 +#: guix-git/doc/guix.texi:344 guix-git/doc/guix.texi:37434 +#: guix-git/doc/guix.texi:37974 #, fuzzy, no-wrap #| msgid "Invoking guix hash" msgid "Invoking guix home" msgstr "调用guix hash" #. type: menuentry -#: guix-git/doc/guix.texi:343 +#: guix-git/doc/guix.texi:344 #, fuzzy #| msgid "Instantiating a system configuration." msgid "Instantiating a home environment configuration." msgstr "实例化一个系统配置。" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:15953 guix-git/doc/guix.texi:15954 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:16310 guix-git/doc/guix.texi:16311 #, no-wrap msgid "Base Services" msgstr "基础服务" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Essential system services." msgstr "必要的系统服务。" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:16880 guix-git/doc/guix.texi:16881 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17242 guix-git/doc/guix.texi:17243 #, no-wrap msgid "Scheduled Job Execution" msgstr "执行计划任务" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The mcron service." msgstr "mcron服务。" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17030 guix-git/doc/guix.texi:17031 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17392 guix-git/doc/guix.texi:17393 #, no-wrap msgid "Log Rotation" msgstr "日志轮替" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The rottlog service." msgstr "rottlog服务。" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17143 guix-git/doc/guix.texi:17144 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17505 guix-git/doc/guix.texi:17506 #, fuzzy, no-wrap #| msgid "Networking Services" msgid "Networking Setup" msgstr "网络服务" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 #, fuzzy #| msgid "user interfaces" msgid "Setting up network interfaces." msgstr "用户界面" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:17561 guix-git/doc/guix.texi:17562 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:17923 guix-git/doc/guix.texi:17924 #, no-wrap msgid "Networking Services" msgstr "网络服务" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 #, fuzzy #| msgid "Network setup, SSH daemon, etc." msgid "Firewall, SSH daemon, etc." msgstr "网络设置,SSH后台进程,等" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19020 guix-git/doc/guix.texi:19021 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19382 guix-git/doc/guix.texi:19383 #, no-wrap msgid "Unattended Upgrades" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Automated system upgrades." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19158 guix-git/doc/guix.texi:19159 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19520 guix-git/doc/guix.texi:19521 #, no-wrap msgid "X Window" msgstr "X窗口" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Graphical display." msgstr "图形显示器。" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:19556 guix-git/doc/guix.texi:19557 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:19918 guix-git/doc/guix.texi:19919 #, no-wrap msgid "Printing Services" msgstr "打印服务" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Local and remote printer support." msgstr "本地和远程打印机的支持。" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:20409 guix-git/doc/guix.texi:20410 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:20771 guix-git/doc/guix.texi:20772 #, no-wrap msgid "Desktop Services" msgstr "桌面服务" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "D-Bus and desktop services." msgstr "D-Bus和桌面服务。" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:20928 guix-git/doc/guix.texi:20929 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21290 guix-git/doc/guix.texi:21291 #, no-wrap msgid "Sound Services" msgstr "声音服务" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "ALSA and Pulseaudio services." msgstr "ALSA和Pulseaudio服务。" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:21068 guix-git/doc/guix.texi:21069 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21430 guix-git/doc/guix.texi:21431 #, no-wrap msgid "Database Services" msgstr "数据库服务" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "SQL databases, key-value stores, etc." msgstr "SQL数据库,键值仓库,等" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:21403 guix-git/doc/guix.texi:21404 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:21765 guix-git/doc/guix.texi:21766 #, no-wrap msgid "Mail Services" msgstr "邮件服务" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "IMAP, POP3, SMTP, and all that." msgstr "IMAP,POP3,SMTP,等" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:23262 guix-git/doc/guix.texi:23263 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:23624 guix-git/doc/guix.texi:23625 #, no-wrap msgid "Messaging Services" msgstr "消息服务" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Messaging services." msgstr "消息服务。" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:23765 guix-git/doc/guix.texi:23766 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:24127 guix-git/doc/guix.texi:24128 #, no-wrap msgid "Telephony Services" msgstr "电话服务" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Telephony services." msgstr "电话服务。" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:24996 guix-git/doc/guix.texi:24997 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25358 guix-git/doc/guix.texi:25359 #, no-wrap msgid "Monitoring Services" msgstr "监控服务" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Monitoring services." msgstr "监控服务。" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:25507 guix-git/doc/guix.texi:25508 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25844 guix-git/doc/guix.texi:25845 #, no-wrap msgid "Kerberos Services" msgstr "Kerberos服务" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Kerberos services." msgstr "Kerberos服务。" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:25633 guix-git/doc/guix.texi:25634 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:25970 guix-git/doc/guix.texi:25971 #, no-wrap msgid "LDAP Services" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "LDAP services." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:26112 guix-git/doc/guix.texi:26113 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:26449 guix-git/doc/guix.texi:26450 #, no-wrap msgid "Web Services" msgstr "Web服务" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Web servers." msgstr "Web服务。" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:27320 guix-git/doc/guix.texi:27321 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:27657 guix-git/doc/guix.texi:27658 #, no-wrap msgid "Certificate Services" msgstr "证书服务" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "TLS certificates via Let's Encrypt." msgstr "Let's Encrypt TLS证书。" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:27501 guix-git/doc/guix.texi:27502 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:27838 guix-git/doc/guix.texi:27839 #, no-wrap msgid "DNS Services" msgstr "DNS服务" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "DNS daemons." msgstr "DNS后台进程。" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28246 guix-git/doc/guix.texi:28247 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:28583 guix-git/doc/guix.texi:28584 #, no-wrap msgid "VPN Services" msgstr "VPN服务" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "VPN daemons." msgstr "VPN后台进程。" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28758 guix-git/doc/guix.texi:28759 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29095 guix-git/doc/guix.texi:29096 #, no-wrap msgid "Network File System" msgstr "网络文件系统" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "NFS related services." msgstr "网络文件系统相关的服务。" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:28954 guix-git/doc/guix.texi:28955 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29291 guix-git/doc/guix.texi:29292 #, no-wrap msgid "Continuous Integration" msgstr "持续集成" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 #, fuzzy msgid "Cuirass and Laminar services." msgstr "Cuirass服务。" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29240 guix-git/doc/guix.texi:29241 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:29577 guix-git/doc/guix.texi:29578 #, no-wrap msgid "Power Management Services" msgstr "电源管理服务" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Extending battery life." msgstr "延长电池寿命。" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29774 guix-git/doc/guix.texi:29775 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:30139 guix-git/doc/guix.texi:30140 #, no-wrap msgid "Audio Services" msgstr "音频服务" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "The MPD." msgstr "MPD。" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:29893 guix-git/doc/guix.texi:29894 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:30258 guix-git/doc/guix.texi:30259 #, no-wrap msgid "Virtualization Services" msgstr "虚拟化服务" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Virtualization services." msgstr "虚拟化服务。" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:31561 guix-git/doc/guix.texi:31562 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:31926 guix-git/doc/guix.texi:31927 #, no-wrap msgid "Version Control Services" msgstr "版本控制服务" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Providing remote access to Git repositories." msgstr "远程访问Git仓库。" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:32897 guix-git/doc/guix.texi:32898 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33262 guix-git/doc/guix.texi:33263 #, no-wrap msgid "Game Services" msgstr "游戏服务" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Game servers." msgstr "游戏服务器。" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:32929 guix-git/doc/guix.texi:32930 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33294 guix-git/doc/guix.texi:33295 #, fuzzy, no-wrap msgid "PAM Mount Service" msgstr "声音服务" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Service to mount volumes when logging in." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33012 guix-git/doc/guix.texi:33013 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33377 guix-git/doc/guix.texi:33378 #, fuzzy, no-wrap msgid "Guix Services" msgstr "音频服务" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services relating specifically to Guix." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33290 guix-git/doc/guix.texi:33291 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33727 guix-git/doc/guix.texi:33728 #, fuzzy, no-wrap msgid "Linux Services" msgstr "邮件服务" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services tied to the Linux kernel." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33517 guix-git/doc/guix.texi:33518 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33954 guix-git/doc/guix.texi:33955 #, fuzzy, no-wrap msgid "Hurd Services" msgstr "声音服务" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Services specific for a Hurd System." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 -#: guix-git/doc/guix.texi:33559 guix-git/doc/guix.texi:33560 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:33996 guix-git/doc/guix.texi:33997 #, no-wrap msgid "Miscellaneous Services" msgstr "其它各种服务" #. type: menuentry -#: guix-git/doc/guix.texi:379 guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:380 guix-git/doc/guix.texi:16308 msgid "Other services." msgstr "其它服务。" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35780 guix-git/doc/guix.texi:35781 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36270 guix-git/doc/guix.texi:36271 #, no-wrap msgid "Service Composition" msgstr "合成服务" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "The model for composing services." msgstr "服务合成的模型。" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35836 guix-git/doc/guix.texi:35837 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36326 guix-git/doc/guix.texi:36327 #, no-wrap msgid "Service Types and Services" msgstr "服务类型和服务" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "Types and services." msgstr "类型和服务。" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:35973 guix-git/doc/guix.texi:35974 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36463 guix-git/doc/guix.texi:36464 #, no-wrap msgid "Service Reference" msgstr "服务参考" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "API reference." msgstr "API参考。" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:36292 guix-git/doc/guix.texi:36293 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:36782 guix-git/doc/guix.texi:36783 #, no-wrap msgid "Shepherd Services" msgstr "Shepherd服务" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 msgid "A particular type of service." msgstr "一种特别的服务。" #. type: subsection -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 -#: guix-git/doc/guix.texi:36511 guix-git/doc/guix.texi:36512 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 +#: guix-git/doc/guix.texi:37001 guix-git/doc/guix.texi:37002 #, fuzzy, no-wrap #| msgid "System Configuration" msgid "Complex Configurations" msgstr "系统配置" #. type: menuentry -#: guix-git/doc/guix.texi:387 guix-git/doc/guix.texi:35778 +#: guix-git/doc/guix.texi:388 guix-git/doc/guix.texi:36268 #, fuzzy #| msgid "Instantiating a system configuration." msgid "Defining bindings for complex configurations." msgstr "实例化一个系统配置。" #. type: section -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 -#: guix-git/doc/guix.texi:37806 guix-git/doc/guix.texi:37807 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 +#: guix-git/doc/guix.texi:38295 guix-git/doc/guix.texi:38296 #, no-wrap msgid "Separate Debug Info" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 #, fuzzy msgid "Installing 'debug' outputs." msgstr "安装调试文件" #. type: section -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 -#: guix-git/doc/guix.texi:37879 guix-git/doc/guix.texi:37880 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 +#: guix-git/doc/guix.texi:38368 guix-git/doc/guix.texi:38369 #, no-wrap msgid "Rebuilding Debug Info" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:392 guix-git/doc/guix.texi:37804 +#: guix-git/doc/guix.texi:393 guix-git/doc/guix.texi:38293 msgid "Building missing debug info." msgstr "" #. type: node -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 -#: guix-git/doc/guix.texi:38098 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 +#: guix-git/doc/guix.texi:38587 #, no-wrap msgid "Reduced Binary Seed Bootstrap" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 msgid "A Bootstrap worthy of GNU." msgstr "" #. type: section -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 -#: guix-git/doc/guix.texi:38173 guix-git/doc/guix.texi:38174 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 +#: guix-git/doc/guix.texi:38662 guix-git/doc/guix.texi:38663 #, no-wrap msgid "Preparing to Use the Bootstrap Binaries" msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:397 guix-git/doc/guix.texi:38096 +#: guix-git/doc/guix.texi:398 guix-git/doc/guix.texi:38585 msgid "Building that what matters most." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:405 +#: guix-git/doc/guix.texi:406 #, no-wrap msgid "purpose" msgstr "目的" #. type: Plain text -#: guix-git/doc/guix.texi:413 +#: guix-git/doc/guix.texi:414 msgid "GNU Guix@footnote{``Guix'' is pronounced like ``geeks'', or ``ɡiːks'' using the international phonetic alphabet (IPA).} is a package management tool for and distribution of the GNU system. Guix makes it easy for unprivileged users to install, upgrade, or remove software packages, to roll back to a previous package set, to build packages from source, and generally assists with the creation and maintenance of software environments." msgstr "GNU Guix@footnote{``Guix''读做``geeks'',或``ɡiːks''(国际音标)}是GNU系统的包管理器和发行版。Guix让无特权的用户可以轻松地安装,升级,或删除软件包,回滚到前一个软件包集合,从源代码构建软件包,及辅助软件环境的创建和维护。" #. type: cindex -#: guix-git/doc/guix.texi:414 guix-git/doc/guix.texi:489 +#: guix-git/doc/guix.texi:415 guix-git/doc/guix.texi:490 #, no-wrap msgid "Guix System" msgstr "Guix系统" #. type: cindex -#: guix-git/doc/guix.texi:415 +#: guix-git/doc/guix.texi:416 #, no-wrap msgid "GuixSD, now Guix System" msgstr "GuixSD,现在称为Guix系统" #. type: cindex -#: guix-git/doc/guix.texi:416 +#: guix-git/doc/guix.texi:417 #, no-wrap msgid "Guix System Distribution, now Guix System" msgstr "Guix系统发行版,现在称为Guix系统" #. type: Plain text -#: guix-git/doc/guix.texi:425 +#: guix-git/doc/guix.texi:426 msgid "You can install GNU@tie{}Guix on top of an existing GNU/Linux system where it complements the available tools without interference (@pxref{Installation}), or you can use it as a standalone operating system distribution, @dfn{Guix@tie{}System}@footnote{We used to refer to Guix System as ``Guix System Distribution'' or ``GuixSD''. We now consider it makes more sense to group everything under the ``Guix'' banner since, after all, Guix System is readily available through the @command{guix system} command, even if you're using a different distro underneath!}. @xref{GNU Distribution}." msgstr "你可以在现有的GNU/Linux发行版上安装GNU@tie{}Guix(@pxref{Installation}),Guix可以补充已有的工具,并且不会和它们产生冲突。或者你可以把它当作独立的操作系统发行版(@dfn{Guix@tie{}系统}@footnote{我们以前把Guix系统称为``Guix系统发行版''或``GuixSD''。我们现在觉得把一切都统一在``Guix''的旗帜下更合理,因为,毕竟即使在别的发行版上你也可以随时通过@command{guix system}命令获得Guix系统})。@xref{GNU Distribution}." #. type: cindex -#: guix-git/doc/guix.texi:434 +#: guix-git/doc/guix.texi:435 #, no-wrap msgid "user interfaces" msgstr "用户界面" #. type: Plain text -#: guix-git/doc/guix.texi:440 +#: guix-git/doc/guix.texi:441 #, fuzzy msgid "Guix provides a command-line package management interface (@pxref{Package Management}), tools to help with software development (@pxref{Development}), command-line utilities for more advanced usage (@pxref{Utilities}), as well as Scheme programming interfaces (@pxref{Programming Interface})." msgstr "Guix提供了命令行软件包管理接口(@pxref{Package Management}),辅助软件开发的工具(@pxref{Development}),高级用法的命令行接口(@pxref{Utilities}),以及Scheme编程语言接口(@pxref{Programming Interface})。" #. type: cindex -#: guix-git/doc/guix.texi:440 +#: guix-git/doc/guix.texi:441 #, no-wrap msgid "build daemon" msgstr "构建后台进程" #. type: Plain text -#: guix-git/doc/guix.texi:444 +#: guix-git/doc/guix.texi:445 msgid "Its @dfn{build daemon} is responsible for building packages on behalf of users (@pxref{Setting Up the Daemon}) and for downloading pre-built binaries from authorized sources (@pxref{Substitutes})." msgstr "@dfn{构建后台进程}为用户构建软件包(@pxref{Setting Up the Daemon}),及从授权的源(@pxref{Substitutes})下载预构建的二进制文件。" #. type: cindex -#: guix-git/doc/guix.texi:445 +#: guix-git/doc/guix.texi:446 #, no-wrap msgid "extensibility of the distribution" msgstr "发行版的扩展性" #. type: cindex -#: guix-git/doc/guix.texi:446 guix-git/doc/guix.texi:6863 +#: guix-git/doc/guix.texi:447 guix-git/doc/guix.texi:6907 #, no-wrap msgid "customization, of packages" msgstr "定制软件包" #. type: Plain text -#: guix-git/doc/guix.texi:455 +#: guix-git/doc/guix.texi:456 msgid "Guix includes package definitions for many GNU and non-GNU packages, all of which @uref{https://www.gnu.org/philosophy/free-sw.html, respect the user's computing freedom}. It is @emph{extensible}: users can write their own package definitions (@pxref{Defining Packages}) and make them available as independent package modules (@pxref{Package Modules}). It is also @emph{customizable}: users can @emph{derive} specialized package definitions from existing ones, including from the command line (@pxref{Package Transformation Options})." msgstr "Guix包含很多GNU和非GNU的软件包定义,所有的这些软件包都@uref{https://www.gnu.org/philosophy/free-sw.html, 尊重用户的自由}。它是@emph{可扩展的}:用户可以编写自己的软件包定义(@pxref{Defining Packages}),并且把它们作为独立的软件包模块@pxref{Package Modules}。它也是@emph{可定制的}:用户可以从现有的软件包定义衍生出特殊的软件包,包括从命令行(@pxref{Package Transformation Options})。" #. type: cindex -#: guix-git/doc/guix.texi:456 +#: guix-git/doc/guix.texi:457 #, no-wrap msgid "functional package management" msgstr "函数式包管理器" #. type: cindex -#: guix-git/doc/guix.texi:457 +#: guix-git/doc/guix.texi:458 #, no-wrap msgid "isolation" msgstr "隔离" #. type: Plain text -#: guix-git/doc/guix.texi:472 +#: guix-git/doc/guix.texi:473 msgid "Under the hood, Guix implements the @dfn{functional package management} discipline pioneered by Nix (@pxref{Acknowledgments}). In Guix, the package build and installation process is seen as a @emph{function}, in the mathematical sense. That function takes inputs, such as build scripts, a compiler, and libraries, and returns an installed package. As a pure function, its result depends solely on its inputs---for instance, it cannot refer to software or scripts that were not explicitly passed as inputs. A build function always produces the same result when passed a given set of inputs. It cannot alter the environment of the running system in any way; for instance, it cannot create, modify, or delete files outside of its build and installation directories. This is achieved by running build processes in isolated environments (or @dfn{containers}), where only their explicit inputs are visible." msgstr "在底层,Guix实现了由Nix(@pxref{Acknowledgments})开创的@dfn{函数式包管理器}。在Guix里,软件包构建和安装过程被视为数学意义上的@emph{函数}。函数获取输入,如构建脚本、编译器和库,并且返回一个安装好的软件包。作为一个纯函数,它的结果只取决于它的输入--例如,它不能引用没有作为显式输入传入的软件和脚本。当传入特定的输入时,一个构建函数总是得到相同的结果。它不能以任何方式修改运行系统的环境,例如,它不能创建,修改,或删除构建和安装环境之外的文件夹。这是通过在隔离的环境(@dfn{容器})里运行构建进程实现的,在这个环境里只能访问到显式的输入。" #. type: cindex -#: guix-git/doc/guix.texi:473 guix-git/doc/guix.texi:9372 +#: guix-git/doc/guix.texi:474 guix-git/doc/guix.texi:9686 #, no-wrap msgid "store" msgstr "仓库" #. type: Plain text -#: guix-git/doc/guix.texi:480 +#: guix-git/doc/guix.texi:481 msgid "The result of package build functions is @dfn{cached} in the file system, in a special directory called @dfn{the store} (@pxref{The Store}). Each package is installed in a directory of its own in the store---by default under @file{/gnu/store}. The directory name contains a hash of all the inputs used to build that package; thus, changing an input yields a different directory name." msgstr "软件包构建函数的结果被@dfn{缓存}在文件系统里的一个叫做@dfn{仓库}(@pxref{The Store})的特殊文件夹内。每个软件包都被安装在仓库(默认在@file{/gnu/store})里的一个独立的文件夹内。这个文件夹的名字含有用于构建这个软件包的所有输入的hash,所以,修改输入会得到一个不同的文件夹名。" #. type: Plain text -#: guix-git/doc/guix.texi:484 +#: guix-git/doc/guix.texi:485 msgid "This approach is the foundation for the salient features of Guix: support for transactional package upgrade and rollback, per-user installation, and garbage collection of packages (@pxref{Features})." msgstr "这种手段是实现Guix的突出功能的基础:对事务型软件包升级和回滚的支持,每个用户独立的安装,软件包垃圾回收@pxref{Features}。" #. type: Plain text -#: guix-git/doc/guix.texi:499 +#: guix-git/doc/guix.texi:500 msgid "Guix comes with a distribution of the GNU system consisting entirely of free software@footnote{The term ``free'' here refers to the @url{https://www.gnu.org/philosophy/free-sw.html,freedom provided to users of that software}.}. The distribution can be installed on its own (@pxref{System Installation}), but it is also possible to install Guix as a package manager on top of an installed GNU/Linux system (@pxref{Installation}). When we need to distinguish between the two, we refer to the standalone distribution as Guix@tie{}System." msgstr "Guix提供了一个GNU系统发行版,这个发新版只包含自由软件@footnote{这里的“自由”指的是@url{https://www.gnu.org/philosophy/free-sw.html,软件提供给用户的自由}。}。这个发行版可以独立安装(@pxref{System Installation}),但是把Guix安装为一个已经安装好的GNU/Linux系统的包管理器也是可行的(@pxref{Installation})。当我们需要区分这两者时,我们把独立的发行版称为“Guix系统”。" #. type: Plain text -#: guix-git/doc/guix.texi:505 +#: guix-git/doc/guix.texi:506 msgid "The distribution provides core GNU packages such as GNU libc, GCC, and Binutils, as well as many GNU and non-GNU applications. The complete list of available packages can be browsed @url{https://www.gnu.org/software/guix/packages,on-line} or by running @command{guix package} (@pxref{Invoking guix package}):" msgstr "这个发行版提供了GNU核心软件包,如libc、gcc和Binutils,以及很多GNU和非GNU应用程序。可用的软件包的完整列表可以在@url{https://www.gnu.org/software/guix/packages,on-line}浏览,或者通过运行@command{guix package}(@pxref{Invoking guix package})获得:" #. type: example -#: guix-git/doc/guix.texi:508 +#: guix-git/doc/guix.texi:509 #, no-wrap msgid "guix package --list-available\n" msgstr "guix package --list-available\n" #. type: Plain text -#: guix-git/doc/guix.texi:514 +#: guix-git/doc/guix.texi:515 msgid "Our goal is to provide a practical 100% free software distribution of Linux-based and other variants of GNU, with a focus on the promotion and tight integration of GNU components, and an emphasis on programs and tools that help users exert that freedom." msgstr "我们的目标是提供一个基于Linux和其它GNU变体的可用的100%自由的软件发行版,我们的重点是推广和紧密集成GNU组件,以及强调帮助用户行使那些自由的程序和工具。" #. type: Plain text -#: guix-git/doc/guix.texi:516 +#: guix-git/doc/guix.texi:517 msgid "Packages are currently available on the following platforms:" msgstr "目前这些平台提供软件包:" #. type: item -#: guix-git/doc/guix.texi:519 guix-git/doc/guix.texi:2155 +#: guix-git/doc/guix.texi:520 guix-git/doc/guix.texi:2172 #, no-wrap msgid "x86_64-linux" msgstr "x86_64-linux" #. type: table -#: guix-git/doc/guix.texi:521 +#: guix-git/doc/guix.texi:522 msgid "Intel/AMD @code{x86_64} architecture, Linux-Libre kernel." msgstr "Intel/AMD @code{x86_64} 架构,Linux-Libre 内核。" #. type: item -#: guix-git/doc/guix.texi:522 guix-git/doc/guix.texi:2158 +#: guix-git/doc/guix.texi:523 guix-git/doc/guix.texi:2175 #, no-wrap msgid "i686-linux" msgstr "i686-linux" #. type: table -#: guix-git/doc/guix.texi:524 +#: guix-git/doc/guix.texi:525 msgid "Intel 32-bit architecture (IA32), Linux-Libre kernel." msgstr "Intel 32 位架构(IA32),Linux-Libre 内核。" #. type: item -#: guix-git/doc/guix.texi:525 +#: guix-git/doc/guix.texi:526 #, no-wrap msgid "armhf-linux" msgstr "armhf-linux" #. type: table -#: guix-git/doc/guix.texi:529 +#: guix-git/doc/guix.texi:530 msgid "ARMv7-A architecture with hard float, Thumb-2 and NEON, using the EABI hard-float application binary interface (ABI), and Linux-Libre kernel." msgstr "ARMv7-A架构,带硬件浮点数、Thumb-2和NEON扩展,EABI硬件浮点数应用二进制接口(ABI),和Linux-Libre内核。" #. type: item -#: guix-git/doc/guix.texi:530 +#: guix-git/doc/guix.texi:531 #, no-wrap msgid "aarch64-linux" msgstr "aarch64-linux" #. type: table -#: guix-git/doc/guix.texi:532 +#: guix-git/doc/guix.texi:533 #, fuzzy msgid "little-endian 64-bit ARMv8-A processors, Linux-Libre kernel." msgstr "小端序64位MIPS处理器,龙芯系列,n32 ABI,Linux-Libre内核。" #. type: item -#: guix-git/doc/guix.texi:533 +#: guix-git/doc/guix.texi:534 #, no-wrap msgid "i586-gnu" msgstr "" #. type: table -#: guix-git/doc/guix.texi:536 +#: guix-git/doc/guix.texi:537 msgid "@uref{https://hurd.gnu.org, GNU/Hurd} on the Intel 32-bit architecture (IA32)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:542 +#: guix-git/doc/guix.texi:543 msgid "This configuration is experimental and under development. The easiest way for you to give it a try is by setting up an instance of @code{hurd-vm-service-type} on your GNU/Linux machine (@pxref{transparent-emulation-qemu, @code{hurd-vm-service-type}}). @xref{Contributing}, on how to help!" msgstr "" #. type: item -#: guix-git/doc/guix.texi:543 +#: guix-git/doc/guix.texi:544 #, fuzzy, no-wrap msgid "mips64el-linux (unsupported)" msgstr "mips64el-linux" #. type: table -#: guix-git/doc/guix.texi:549 +#: guix-git/doc/guix.texi:550 msgid "little-endian 64-bit MIPS processors, specifically the Loongson series, n32 ABI, and Linux-Libre kernel. This configuration is no longer fully supported; in particular, there is no ongoing work to ensure that this architecture still works. Should someone decide they wish to revive this architecture then the code is still available." msgstr "" #. type: item -#: guix-git/doc/guix.texi:550 +#: guix-git/doc/guix.texi:551 #, no-wrap msgid "powerpc-linux (unsupported)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:555 +#: guix-git/doc/guix.texi:556 msgid "big-endian 32-bit PowerPC processors, specifically the PowerPC G4 with AltiVec support, and Linux-Libre kernel. This configuration is not fully supported and there is no ongoing work to ensure this architecture works." msgstr "" #. type: table -#: guix-git/doc/guix.texi:566 +#: guix-git/doc/guix.texi:567 msgid "little-endian 64-bit Power ISA processors, Linux-Libre kernel. This includes POWER9 systems such as the @uref{https://www.fsf.org/news/talos-ii-mainboard-and-talos-ii-lite-mainboard-now-fsf-certified-to-respect-your-freedom, RYF Talos II mainboard}. This platform is available as a \"technology preview\": although it is supported, substitutes are not yet available from the build farm (@pxref{Substitutes}), and some packages may fail to build (@pxref{Tracking Bugs and Patches}). That said, the Guix community is actively working on improving this support, and now is a great time to try it and get involved!" msgstr "" -#. type: Plain text +#. type: item +#: guix-git/doc/guix.texi:568 +#, fuzzy, no-wrap +#| msgid "aarch64-linux" +msgid "riscv64-linux" +msgstr "aarch64-linux" + +#. type: table #: guix-git/doc/guix.texi:576 +msgid "little-endian 64-bit RISC-V processors, specifically RV64GC, and Linux-Libre kernel. This playform is available as a \"technology preview\": although it is supported, substitutes are not yet available from the build farm (@pxref{Substitutes}), and some packages may fail to build (@pxref{Tracking Bugs and Patches}). That said, the Guix community is actively working on improving this support, and now is a great time to try it and get involved!" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:586 msgid "With Guix@tie{}System, you @emph{declare} all aspects of the operating system configuration and Guix takes care of instantiating the configuration in a transactional, reproducible, and stateless fashion (@pxref{System Configuration}). Guix System uses the Linux-libre kernel, the Shepherd initialization system (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}), the well-known GNU utilities and tool chain, as well as the graphical environment or system services of your choice." msgstr "在Guix系统里,你@emph{声明}操作系统所有方面的配置,然后Guix以事务型的,可重复的,和无状态的方式解决实例化配置的问题(@pxref{System Configuration})。Guix系统使用Linux-Libre内核,Shepherd初始化系统@pxref{Introduction,,, shepherd, GNU Shepherd用户手册},知名的GNU工具和工具链,以及你可选的图形界面环境和系统服务。" #. type: Plain text -#: guix-git/doc/guix.texi:579 +#: guix-git/doc/guix.texi:590 #, fuzzy -msgid "Guix System is available on all the above platforms except @code{mips64el-linux} and @code{powerpc64le-linux}." +msgid "Guix System is available on all the above platforms except @code{mips64el-linux}, @code{powerpc-linux}, @code{powerpc64le-linux} and @code{riscv64-linux}." msgstr "Guix系统在上面所有的平台上都可用,除了@code{mips64el-linux}。" #. type: Plain text -#: guix-git/doc/guix.texi:583 +#: guix-git/doc/guix.texi:594 msgid "For information on porting to other architectures or kernels, @pxref{Porting}." msgstr "关于移植到其它架构或内核的信息,@pxref{Porting}。" #. type: Plain text -#: guix-git/doc/guix.texi:586 +#: guix-git/doc/guix.texi:597 msgid "Building this distribution is a cooperative effort, and you are invited to join! @xref{Contributing}, for information about how you can help." msgstr "构建这个发行版需要努力合作,欢迎你加入!关于你可以怎样提供帮助的信息,@xref{Contributing}。" #. type: cindex -#: guix-git/doc/guix.texi:592 +#: guix-git/doc/guix.texi:603 #, no-wrap msgid "installing Guix" msgstr "安装Guix" #. type: quotation -#: guix-git/doc/guix.texi:604 +#: guix-git/doc/guix.texi:615 msgid "We recommend the use of this @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, shell installer script} to install Guix on top of a running GNU/Linux system, thereafter called a @dfn{foreign distro}.@footnote{This section is concerned with the installation of the package manager, which can be done on top of a running GNU/Linux system. If, instead, you want to install the complete GNU operating system, @pxref{System Installation}.} The script automates the download, installation, and initial configuration of Guix. It should be run as the root user." msgstr "我们推荐使用@uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, shell安装脚本}在已有的GNU/Linux系统(即@dfn{foreign distro})上安装Guix。@footnote{这个小节是关于安装包管理器的,可以在GNU/Linux系统上完成。如果你想安装完整的GNU操作系统,@pxref{System Installation}。}这个脚本自动下载、安装并且初始化Guix,它需要以root用户身份运行。" #. type: cindex -#: guix-git/doc/guix.texi:606 guix-git/doc/guix.texi:1830 +#: guix-git/doc/guix.texi:617 guix-git/doc/guix.texi:1847 #, no-wrap msgid "foreign distro" msgstr "别的发行版" #. type: cindex -#: guix-git/doc/guix.texi:607 +#: guix-git/doc/guix.texi:618 #, no-wrap msgid "directories related to foreign distro" msgstr "和foreign distro相关的文件夹" #. type: Plain text -#: guix-git/doc/guix.texi:612 +#: guix-git/doc/guix.texi:623 msgid "When installed on a foreign distro, GNU@tie{}Guix complements the available tools without interference. Its data lives exclusively in two directories, usually @file{/gnu/store} and @file{/var/guix}; other files on your system, such as @file{/etc}, are left untouched." msgstr "在foreign distro上安装时,GNU@tie{}Guix可以在不引起冲突的前提下补充现有的工具。它的数据只存放在两个文件夹里,通常是@file{/gnu/store}和@file{/var/guix};系统上的其它文件,如@file{/etc},不会被修改。" #. type: Plain text -#: guix-git/doc/guix.texi:615 +#: guix-git/doc/guix.texi:626 msgid "Once installed, Guix can be updated by running @command{guix pull} (@pxref{Invoking guix pull})." msgstr "一旦安装好了,可以通过运行@command{guix pull}升级Guix(@pxref{Invoking guix pull})。" #. type: Plain text -#: guix-git/doc/guix.texi:620 +#: guix-git/doc/guix.texi:631 msgid "If you prefer to perform the installation steps manually or want to tweak them, you may find the following subsections useful. They describe the software requirements of Guix, as well as how to install it manually and get ready to use it." msgstr "如果你希望手动执行安装步骤,或者想改变安装步骤,接下来这些小节会很有用。它们介绍Guix的软件依赖,以及如何手动安装和使用Guix。" #. type: cindex -#: guix-git/doc/guix.texi:634 +#: guix-git/doc/guix.texi:645 #, no-wrap msgid "installing Guix from binaries" msgstr "用二进制文件安装Guix" #. type: cindex -#: guix-git/doc/guix.texi:635 +#: guix-git/doc/guix.texi:646 #, no-wrap msgid "installer script" msgstr "安装脚本" #. type: Plain text -#: guix-git/doc/guix.texi:641 +#: guix-git/doc/guix.texi:652 msgid "This section describes how to install Guix on an arbitrary system from a self-contained tarball providing binaries for Guix and for all its dependencies. This is often quicker than installing from source, which is described in the next sections. The only requirement is to have GNU@tie{}tar and Xz." msgstr "这个小节介绍如何在任意的系统上用独立的Guix二进制文件包安装Guix和它的依赖。这通常比从源代码安装更快,下一小节会介绍如何从源代码安装。唯一的需求是有GNU@tie{}tar和Xz。" #. type: quotation -#: guix-git/doc/guix.texi:649 +#: guix-git/doc/guix.texi:660 #, fuzzy msgid "We recommend the use of this @uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, shell installer script}. The script automates the download, installation, and initial configuration steps described below. It should be run as the root user. As root, you can thus run this:" msgstr "我们推荐使用这个@uref{https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh, shell安装脚本}。这个脚本自动执行下述的下载、安装并且初始化Guix的过程。它需要以root用户身份运行。" #. type: example -#: guix-git/doc/guix.texi:655 +#: guix-git/doc/guix.texi:666 #, no-wrap msgid "" "cd /tmp\n" @@ -5399,34 +5469,34 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:659 +#: guix-git/doc/guix.texi:670 msgid "When you're done, @pxref{Application Setup} for extra configuration you might need, and @ref{Getting Started} for your first steps!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:662 +#: guix-git/doc/guix.texi:673 msgid "Installing goes along these lines:" msgstr "安装步骤如下:" #. type: cindex -#: guix-git/doc/guix.texi:665 +#: guix-git/doc/guix.texi:676 #, no-wrap msgid "downloading Guix binary" msgstr "下载Guix二进制文件" #. type: enumerate -#: guix-git/doc/guix.texi:671 +#: guix-git/doc/guix.texi:682 #, fuzzy msgid "Download the binary tarball from @indicateurl{@value{BASE-URL}/guix-binary-@value{VERSION}.x86_64-linux.tar.xz}, where @code{x86_64-linux} can be replaced with @code{i686-linux} for an @code{i686} (32-bits) machine already running the kernel Linux, and so on (@pxref{GNU Distribution})." msgstr "从@indicateurl{@value{BASE-URL}/guix-binary-@value{VERSION}.@var{系统}.tar.xz}下载二进制安装包,对于运行Linux内核的@code{x86_64}机器来说@var{系统}是@code{x86_64-linux},以此类推。" #. type: enumerate -#: guix-git/doc/guix.texi:675 +#: guix-git/doc/guix.texi:686 msgid "Make sure to download the associated @file{.sig} file and to verify the authenticity of the tarball against it, along these lines:" msgstr "请确保下载相关的@file{.sig}文件,并且用它验证文件包的可靠性,方法如下:" #. type: example -#: guix-git/doc/guix.texi:679 +#: guix-git/doc/guix.texi:690 #, fuzzy, no-wrap msgid "" "$ wget @value{BASE-URL}/guix-binary-@value{VERSION}.x86_64-linux.tar.xz.sig\n" @@ -5436,12 +5506,12 @@ msgstr "" "$ gpg --verify guix-binary-@value{VERSION}.@var{系统}.tar.xz.sig\n" #. type: Plain text -#: guix-git/doc/guix.texi:683 guix-git/doc/guix.texi:2173 +#: guix-git/doc/guix.texi:694 guix-git/doc/guix.texi:2190 msgid "If that command fails because you do not have the required public key, then run this command to import it:" msgstr "如果那个命令因为缺少所需的公钥而失败了,那么用这个命令导入它:" #. type: example -#: guix-git/doc/guix.texi:687 +#: guix-git/doc/guix.texi:698 #, no-wrap msgid "" "$ wget '@value{OPENPGP-SIGNING-KEY-URL}' \\\n" @@ -5449,22 +5519,22 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:691 guix-git/doc/guix.texi:2181 +#: guix-git/doc/guix.texi:702 guix-git/doc/guix.texi:2198 msgid "and rerun the @code{gpg --verify} command." msgstr "再次运行@code{gpg --verify}命令。" #. type: Plain text -#: guix-git/doc/guix.texi:694 guix-git/doc/guix.texi:2184 +#: guix-git/doc/guix.texi:705 guix-git/doc/guix.texi:2201 msgid "Take note that a warning like ``This key is not certified with a trusted signature!'' is normal." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:700 +#: guix-git/doc/guix.texi:711 msgid "Now, you need to become the @code{root} user. Depending on your distribution, you may have to run @code{su -} or @code{sudo -i}. As @code{root}, run:" msgstr "现在你需要成为@code{root}用户。基于你的发行版,你可能需要执行@code{su -}或@code{sudo -i}。以@code{root}用户身份,执行:" #. type: example -#: guix-git/doc/guix.texi:706 +#: guix-git/doc/guix.texi:717 #, fuzzy, no-wrap msgid "" "# cd /tmp\n" @@ -5478,29 +5548,29 @@ msgstr "" "# mv var/guix /var/ && mv gnu /\n" #. type: enumerate -#: guix-git/doc/guix.texi:711 +#: guix-git/doc/guix.texi:722 #, fuzzy msgid "This creates @file{/gnu/store} (@pxref{The Store}) and @file{/var/guix}. The latter contains a ready-to-use profile for @code{root} (see next step)." msgstr "这会创建@file{/gnu/store}(@pxref{The Store})和@file{/var/guix}。后一个文件夹为@code{root}用户提供了一个立即可用的profile(见下一步)。" #. type: enumerate -#: guix-git/doc/guix.texi:714 +#: guix-git/doc/guix.texi:725 msgid "Do @emph{not} unpack the tarball on a working Guix system since that would overwrite its own essential files." msgstr "@emph{不要}在一个正常的Guix系统上解压这个文件包,因为那会把现有的重要的文件覆盖。" #. type: enumerate -#: guix-git/doc/guix.texi:724 +#: guix-git/doc/guix.texi:735 #, fuzzy msgid "The @option{--warning=no-timestamp} option makes sure GNU@tie{}tar does not emit warnings about ``implausibly old time stamps'' (such warnings were triggered by GNU@tie{}tar 1.26 and older; recent versions are fine). They stem from the fact that all the files in the archive have their modification time set to 1 (which means January 1st, 1970). This is done on purpose to make sure the archive content is independent of its creation time, thus making it reproducible." msgstr "@code{--warning=no-timestamp}选项使GNU@tie{}tar不输出有关“implausibly old time stamps”的警告(这类警告会被GNU@tie{}tar 1.26或更老的版本触发;新的版本没事)。这类警告是因为文件包里的所有文件的修改时间戳都被设置为0(即1970年1月1日)。这是故意的,为了确保文件包的内容独立于创建的时间,从而使它可再现。" #. type: enumerate -#: guix-git/doc/guix.texi:728 +#: guix-git/doc/guix.texi:739 msgid "Make the profile available under @file{~root/.config/guix/current}, which is where @command{guix pull} will install updates (@pxref{Invoking guix pull}):" msgstr "使profile出现在@file{~root/.config/guix/current},这是@command{guix pull}安装更新的位置(@pxref{Invoking guix pull}):" #. type: example -#: guix-git/doc/guix.texi:733 +#: guix-git/doc/guix.texi:744 #, no-wrap msgid "" "# mkdir -p ~root/.config/guix\n" @@ -5512,13 +5582,13 @@ msgstr "" " ~root/.config/guix/current\n" #. type: enumerate -#: guix-git/doc/guix.texi:737 +#: guix-git/doc/guix.texi:748 #, fuzzy msgid "Source @file{etc/profile} to augment @env{PATH} and other relevant environment variables:" msgstr "执行@file{etc/profile}以更新@code{PATH}和其它相关的环境变量:" #. type: example -#: guix-git/doc/guix.texi:741 +#: guix-git/doc/guix.texi:752 #, no-wrap msgid "" "# GUIX_PROFILE=\"`echo ~root`/.config/guix/current\" ; \\\n" @@ -5528,22 +5598,22 @@ msgstr "" " source $GUIX_PROFILE/etc/profile\n" #. type: enumerate -#: guix-git/doc/guix.texi:746 +#: guix-git/doc/guix.texi:757 msgid "Create the group and user accounts for build users as explained below (@pxref{Build Environment Setup})." msgstr "像下面解释的那样为“构建用户”创建用户组和用户(@pxref{Build Environment Setup})。" #. type: enumerate -#: guix-git/doc/guix.texi:749 +#: guix-git/doc/guix.texi:760 msgid "Run the daemon, and set it to automatically start on boot." msgstr "运行后台进程,并设置为开机自启动。" #. type: enumerate -#: guix-git/doc/guix.texi:752 +#: guix-git/doc/guix.texi:763 msgid "If your host distro uses the systemd init system, this can be achieved with these commands:" msgstr "如果你的主机的发行版使用systemd init系统,可以用这些命令:" #. type: example -#: guix-git/doc/guix.texi:765 +#: guix-git/doc/guix.texi:776 #, fuzzy, no-wrap msgid "" "# cp ~root/.config/guix/current/lib/systemd/system/gnu-store.mount \\\n" @@ -5556,12 +5626,12 @@ msgstr "" "# systemctl start guix-daemon && systemctl enable guix-daemon\n" #. type: enumerate -#: guix-git/doc/guix.texi:768 +#: guix-git/doc/guix.texi:779 msgid "You may also want to arrange for @command{guix gc} to run periodically:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:774 +#: guix-git/doc/guix.texi:785 #, fuzzy, no-wrap msgid "" "# cp ~root/.config/guix/current/lib/systemd/system/guix-gc.service \\\n" @@ -5574,17 +5644,17 @@ msgstr "" "# systemctl start guix-daemon && systemctl enable guix-daemon\n" #. type: enumerate -#: guix-git/doc/guix.texi:778 +#: guix-git/doc/guix.texi:789 msgid "You may want to edit @file{guix-gc.service} to adjust the command line options to fit your needs (@pxref{Invoking guix gc})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:780 guix-git/doc/guix.texi:13740 +#: guix-git/doc/guix.texi:791 guix-git/doc/guix.texi:14097 msgid "If your host distro uses the Upstart init system:" msgstr "如果你的主机的发行版使用Upstart init系统:" #. type: example -#: guix-git/doc/guix.texi:786 +#: guix-git/doc/guix.texi:797 #, no-wrap msgid "" "# initctl reload-configuration\n" @@ -5598,12 +5668,12 @@ msgstr "" "# start guix-daemon\n" #. type: enumerate -#: guix-git/doc/guix.texi:789 +#: guix-git/doc/guix.texi:800 msgid "Otherwise, you can still start the daemon manually with:" msgstr "此外,你可以手动启动后台进程:" #. type: example -#: guix-git/doc/guix.texi:793 +#: guix-git/doc/guix.texi:804 #, no-wrap msgid "" "# ~root/.config/guix/current/bin/guix-daemon \\\n" @@ -5613,12 +5683,12 @@ msgstr "" " --build-users-group=guixbuild\n" #. type: enumerate -#: guix-git/doc/guix.texi:798 +#: guix-git/doc/guix.texi:809 msgid "Make the @command{guix} command available to other users on the machine, for instance with:" msgstr "使机器上的其他用户也可以使用@command{guix}命令:" #. type: example -#: guix-git/doc/guix.texi:803 +#: guix-git/doc/guix.texi:814 #, no-wrap msgid "" "# mkdir -p /usr/local/bin\n" @@ -5630,12 +5700,12 @@ msgstr "" "# ln -s /var/guix/profiles/per-user/root/current-guix/bin/guix\n" #. type: enumerate -#: guix-git/doc/guix.texi:807 +#: guix-git/doc/guix.texi:818 msgid "It is also a good idea to make the Info version of this manual available there:" msgstr "最好让这个用户手册的Info版也可以被访问:" #. type: example -#: guix-git/doc/guix.texi:813 +#: guix-git/doc/guix.texi:824 #, no-wrap msgid "" "# mkdir -p /usr/local/share/info\n" @@ -5649,27 +5719,27 @@ msgstr "" " do ln -s $i ; done\n" #. type: enumerate -#: guix-git/doc/guix.texi:819 +#: guix-git/doc/guix.texi:830 #, fuzzy msgid "That way, assuming @file{/usr/local/share/info} is in the search path, running @command{info guix} will open this manual (@pxref{Other Info Directories,,, texinfo, GNU Texinfo}, for more details on changing the Info search path)." msgstr "那样,假设@file{/usr/local/share/info}在搜索路径里,运行@command{info guix}命令就会打开这个用户手册(@pxref{Other Info Directories,,, texinfo, GNU Texinfo},更多关于Info搜索路径的信息)。" #. type: cindex -#: guix-git/doc/guix.texi:821 guix-git/doc/guix.texi:3798 -#: guix-git/doc/guix.texi:16494 +#: guix-git/doc/guix.texi:832 guix-git/doc/guix.texi:3816 +#: guix-git/doc/guix.texi:16851 #, no-wrap msgid "substitutes, authorization thereof" msgstr "substitutes,对其授权" #. type: enumerate -#: guix-git/doc/guix.texi:825 +#: guix-git/doc/guix.texi:836 #, fuzzy #| msgid "To use substitutes from @code{@value{SUBSTITUTE-SERVER}} or one of its mirrors (@pxref{Substitutes}), authorize them:" msgid "To use substitutes from @code{@value{SUBSTITUTE-SERVER-1}}, @code{@value{SUBSTITUTE-SERVER-2}} or a mirror (@pxref{Substitutes}), authorize them:" msgstr "为了使用@code{@value{SUBSTITUTE-SERVER}}或其镜像的substitute(@pxref{Substitutes}),对其授权:" #. type: example -#: guix-git/doc/guix.texi:831 +#: guix-git/doc/guix.texi:842 #, fuzzy, no-wrap #| msgid "" #| "# guix archive --authorize < \\\n" @@ -5684,49 +5754,49 @@ msgstr "" " ~root/.config/guix/current/share/guix/@value{SUBSTITUTE-SERVER}.pub\n" #. type: quotation -#: guix-git/doc/guix.texi:838 +#: guix-git/doc/guix.texi:849 msgid "If you do not enable substitutes, Guix will end up building @emph{everything} from source on your machine, making each installation and upgrade very expensive. @xref{On Trusting Binaries}, for a discussion of reasons why one might want do disable substitutes." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:843 +#: guix-git/doc/guix.texi:854 msgid "Each user may need to perform a few additional steps to make their Guix environment ready for use, @pxref{Application Setup}." msgstr "每个用户可能需要执行一些额外的步骤以使各自的Guix环境可用,@pxref{Application Setup}。" #. type: Plain text -#: guix-git/doc/guix.texi:846 +#: guix-git/doc/guix.texi:857 msgid "Voilà, the installation is complete!" msgstr "瞧,安装完成了!" #. type: Plain text -#: guix-git/doc/guix.texi:849 +#: guix-git/doc/guix.texi:860 msgid "You can confirm that Guix is working by installing a sample package into the root profile:" msgstr "你可以通过给root profile安装一个软件包来确认Guix可以正常工作。" #. type: example -#: guix-git/doc/guix.texi:852 +#: guix-git/doc/guix.texi:863 #, no-wrap msgid "# guix install hello\n" msgstr "# guix install hello\n" #. type: Plain text -#: guix-git/doc/guix.texi:856 +#: guix-git/doc/guix.texi:867 msgid "The binary installation tarball can be (re)produced and verified simply by running the following command in the Guix source tree:" msgstr "二进制安装包可以通过在Guix源代码树里运行下面这些命令来重现和验证:" #. type: example -#: guix-git/doc/guix.texi:859 +#: guix-git/doc/guix.texi:870 #, no-wrap msgid "make guix-binary.@var{system}.tar.xz\n" msgstr "make guix-binary.@var{系统}.tar.xz\n" #. type: Plain text -#: guix-git/doc/guix.texi:863 +#: guix-git/doc/guix.texi:874 msgid "...@: which, in turn, runs:" msgstr "...@: 这个命令会执行:" #. type: example -#: guix-git/doc/guix.texi:867 +#: guix-git/doc/guix.texi:878 #, no-wrap msgid "" "guix pack -s @var{system} --localstatedir \\\n" @@ -5736,229 +5806,235 @@ msgstr "" " --profile-name=current-guix guix\n" #. type: Plain text -#: guix-git/doc/guix.texi:870 +#: guix-git/doc/guix.texi:881 msgid "@xref{Invoking guix pack}, for more info on this handy tool." msgstr "@xref{Invoking guix pack},了解这个方便的工具。" #. type: Plain text -#: guix-git/doc/guix.texi:878 +#: guix-git/doc/guix.texi:889 msgid "This section lists requirements when building Guix from source. The build procedure for Guix is the same as for other GNU software, and is not covered here. Please see the files @file{README} and @file{INSTALL} in the Guix source tree for additional details." msgstr "这个小节列举了从源代码构建Guix的需求。构建Guix的步骤和其它GNU软件相同,这里不介绍。请阅读Guix源代码树里的@file{README}和@file{INSTALL}文件以了解更多的信息。" #. type: cindex -#: guix-git/doc/guix.texi:879 +#: guix-git/doc/guix.texi:890 #, no-wrap msgid "official website" msgstr "官方网站" #. type: Plain text -#: guix-git/doc/guix.texi:882 +#: guix-git/doc/guix.texi:893 msgid "GNU Guix is available for download from its website at @url{https://www.gnu.org/software/guix/}." msgstr "GNU Guix可以从它的网站下载@url{https://www.gnu.org/software/guix/}。" #. type: Plain text -#: guix-git/doc/guix.texi:884 +#: guix-git/doc/guix.texi:895 msgid "GNU Guix depends on the following packages:" msgstr "GNU Guix依赖这些软件包:" #. type: item -#: guix-git/doc/guix.texi:886 +#: guix-git/doc/guix.texi:897 #, fuzzy, no-wrap -msgid "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x;" +msgid "@url{https://gnu.org/software/guile/, GNU Guile}, version 3.0.x," msgstr "@url{https://gnu.org/software/guile/, GNU Guile},版本2.2.x;" +#. type: itemize +#: guix-git/doc/guix.texi:899 +#, fuzzy +msgid "version 3.0.3 or later;" +msgstr "0.1.0或更新;" + #. type: item -#: guix-git/doc/guix.texi:887 +#: guix-git/doc/guix.texi:899 #, no-wrap msgid "@url{https://notabug.org/cwebber/guile-gcrypt, Guile-Gcrypt}, version" msgstr "@url{https://notabug.org/cwebber/guile-gcrypt, Guile-Gcrypt},版本" #. type: itemize -#: guix-git/doc/guix.texi:889 +#: guix-git/doc/guix.texi:901 msgid "0.1.0 or later;" msgstr "0.1.0或更新;" #. type: itemize -#: guix-git/doc/guix.texi:893 +#: guix-git/doc/guix.texi:905 msgid "@uref{https://gnutls.org/, GnuTLS}, specifically its Guile bindings (@pxref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile});" msgstr "@uref{https://gnutls.org/, GnuTLS},特别是它的Guile接口(@pxref{Guile Preparations, 怎样为Guile安装GnuTLS接口,, gnutls-guile, GnuTLS-Guile});" #. type: itemize -#: guix-git/doc/guix.texi:896 +#: guix-git/doc/guix.texi:908 msgid "@uref{https://notabug.org/guile-sqlite3/guile-sqlite3, Guile-SQLite3}, version 0.1.0 or later;" msgstr "@uref{https://notabug.org/guile-sqlite3/guile-sqlite3, Guile-SQLite3},版本0.1.0或更新;" #. type: item -#: guix-git/doc/guix.texi:896 +#: guix-git/doc/guix.texi:908 #, fuzzy, no-wrap msgid "@uref{https://notabug.org/guile-zlib/guile-zlib, Guile-zlib}," msgstr "@uref{https://notabug.org/guile-sqlite3/guile-sqlite3, Guile-SQLite3},版本0.1.0或更新;" #. type: itemize -#: guix-git/doc/guix.texi:898 +#: guix-git/doc/guix.texi:910 #, fuzzy msgid "version 0.1.0 or later;" msgstr "0.1.0或更新;" #. type: item -#: guix-git/doc/guix.texi:898 +#: guix-git/doc/guix.texi:910 #, fuzzy, no-wrap msgid "@uref{https://notabug.org/guile-lzlib/guile-lzlib, Guile-lzlib};" msgstr "@uref{https://notabug.org/guile-sqlite3/guile-sqlite3, Guile-SQLite3},版本0.1.0或更新;" #. type: item -#: guix-git/doc/guix.texi:899 +#: guix-git/doc/guix.texi:911 #, no-wrap msgid "@uref{https://www.nongnu.org/guile-avahi/, Guile-Avahi};" msgstr "@uref{https://www.nongnu.org/guile-avahi/, Guile-Avahi};" #. type: itemize -#: guix-git/doc/guix.texi:903 +#: guix-git/doc/guix.texi:915 #, fuzzy msgid "@uref{https://gitlab.com/guile-git/guile-git, Guile-Git}, version 0.5.0 or later;" msgstr "@uref{https://gitlab.com/guile-git/guile-git, Guile-Git},2017年8月及之后的版本;" #. type: item -#: guix-git/doc/guix.texi:903 +#: guix-git/doc/guix.texi:915 #, fuzzy, no-wrap msgid "@uref{https://savannah.nongnu.org/projects/guile-json/, Guile-JSON}" msgstr "@uref{https://savannah.nongnu.org/projects/guile-json/, Guile-JSON};" #. type: itemize -#: guix-git/doc/guix.texi:905 +#: guix-git/doc/guix.texi:917 #, fuzzy msgid "4.3.0 or later;" msgstr "0.1.0或更新;" #. type: item -#: guix-git/doc/guix.texi:905 +#: guix-git/doc/guix.texi:917 #, no-wrap msgid "@url{https://www.gnu.org/software/make/, GNU Make}." msgstr "@url{https://www.gnu.org/software/make/, GNU Make}。" #. type: Plain text -#: guix-git/doc/guix.texi:909 +#: guix-git/doc/guix.texi:921 msgid "The following dependencies are optional:" msgstr "这些依赖是可选的:" #. type: itemize -#: guix-git/doc/guix.texi:917 +#: guix-git/doc/guix.texi:929 #, fuzzy msgid "Support for build offloading (@pxref{Daemon Offload Setup}) and @command{guix copy} (@pxref{Invoking guix copy}) depends on @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH}, version 0.13.0 or later." msgstr "对下发构建任务(@pxref{Daemon Offload Setup})和@command{guix copy}(@pxref{Invoking guix copy})的支持依赖于@uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH},版本0.10.2或更新。" #. type: itemize -#: guix-git/doc/guix.texi:922 +#: guix-git/doc/guix.texi:934 msgid "@uref{https://notabug.org/guile-zstd/guile-zstd, Guile-zstd}, for zstd compression and decompression in @command{guix publish} and for substitutes (@pxref{Invoking guix publish})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:926 +#: guix-git/doc/guix.texi:938 msgid "@uref{https://ngyro.com/software/guile-semver.html, Guile-Semver} for the @code{crate} importer (@pxref{Invoking guix import})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:931 +#: guix-git/doc/guix.texi:943 msgid "@uref{https://www.nongnu.org/guile-lib/doc/ref/htmlprag/, Guile-Lib} for the @code{go} importer (@pxref{Invoking guix import}) and for some of the ``updaters'' (@pxref{Invoking guix refresh})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:935 +#: guix-git/doc/guix.texi:947 msgid "When @url{http://www.bzip.org, libbz2} is available, @command{guix-daemon} can use it to compress build logs." msgstr "当@url{http://www.bzip.org, libbz2}存在时,@command{guix-daemon}可以用它压缩构建日志。" #. type: Plain text -#: guix-git/doc/guix.texi:939 +#: guix-git/doc/guix.texi:951 #, fuzzy msgid "Unless @option{--disable-daemon} was passed to @command{configure}, the following packages are also needed:" msgstr "除非@code{--disable-daemon}参数被传给@command{configure},这些软件包也是需要的依赖:" #. type: item -#: guix-git/doc/guix.texi:941 +#: guix-git/doc/guix.texi:953 #, no-wrap msgid "@url{https://gnupg.org/, GNU libgcrypt};" msgstr "@url{https://gnupg.org/, GNU libgcrypt};" #. type: item -#: guix-git/doc/guix.texi:942 +#: guix-git/doc/guix.texi:954 #, no-wrap msgid "@url{https://sqlite.org, SQLite 3};" msgstr "@url{https://sqlite.org, SQLite 3};" #. type: item -#: guix-git/doc/guix.texi:943 +#: guix-git/doc/guix.texi:955 #, no-wrap msgid "@url{https://gcc.gnu.org, GCC's g++}, with support for the" msgstr "@url{https://gcc.gnu.org, GCC's g++},支持" #. type: itemize -#: guix-git/doc/guix.texi:945 +#: guix-git/doc/guix.texi:957 msgid "C++11 standard." msgstr "C++11标准。" #. type: cindex -#: guix-git/doc/guix.texi:947 +#: guix-git/doc/guix.texi:959 #, no-wrap msgid "state directory" msgstr "状态文件夹" #. type: Plain text -#: guix-git/doc/guix.texi:956 +#: guix-git/doc/guix.texi:968 #, fuzzy msgid "When configuring Guix on a system that already has a Guix installation, be sure to specify the same state directory as the existing installation using the @option{--localstatedir} option of the @command{configure} script (@pxref{Directory Variables, @code{localstatedir},, standards, GNU Coding Standards}). Usually, this @var{localstatedir} option is set to the value @file{/var}. The @command{configure} script protects against unintended misconfiguration of @var{localstatedir} so you do not inadvertently corrupt your store (@pxref{The Store})." msgstr "当在一个已经安装Guix的系统上配置Guix时,请确保用@command{configure}的@code{--localstatedir}参数指定和现有的安装相同的状态文件夹(@pxref{Directory Variables, @code{localstatedir},, standards, GNU Coding Standards})。@command{configure}保护你免于误设置@var{localstatedir},从而不会无意中损坏仓库(@pxref{The Store})。" #. type: cindex -#: guix-git/doc/guix.texi:960 +#: guix-git/doc/guix.texi:972 #, no-wrap msgid "test suite" msgstr "测试套件" #. type: Plain text -#: guix-git/doc/guix.texi:966 +#: guix-git/doc/guix.texi:978 msgid "After a successful @command{configure} and @code{make} run, it is a good idea to run the test suite. It can help catch issues with the setup or environment, or bugs in Guix itself---and really, reporting test failures is a good way to help improve the software. To run the test suite, type:" msgstr "成功执行@command{configure}和@code{make}之后,最好运行测试套件。它可以帮助查找设置和环境的错误,或者是Guix自身的bug--并且,报告测试错误是帮助改进软件的好方法。输入下面的命令以执行测试套件。" #. type: example -#: guix-git/doc/guix.texi:969 +#: guix-git/doc/guix.texi:981 #, no-wrap msgid "make check\n" msgstr "make check\n" #. type: Plain text -#: guix-git/doc/guix.texi:976 +#: guix-git/doc/guix.texi:988 msgid "Test cases can run in parallel: you can use the @code{-j} option of GNU@tie{}make to speed things up. The first run may take a few minutes on a recent machine; subsequent runs will be faster because the store that is created for test purposes will already have various things in cache." msgstr "测试用例可以并行运行:你可以用GNU@tie{}make的@code{-j}参数来加速运行。才一台较新的机器上第一次运行可能会花几分钟,后续的运行会更快,因为为测试创建的仓库已经包含了各种缓存。" #. type: Plain text -#: guix-git/doc/guix.texi:979 +#: guix-git/doc/guix.texi:991 msgid "It is also possible to run a subset of the tests by defining the @code{TESTS} makefile variable as in this example:" msgstr "你还可以通过定义makefile的@code{TESTS}变量只运行测试的一个子集:" #. type: example -#: guix-git/doc/guix.texi:982 +#: guix-git/doc/guix.texi:994 #, no-wrap msgid "make check TESTS=\"tests/store.scm tests/cpio.scm\"\n" msgstr "make check TESTS=\"tests/store.scm tests/cpio.scm\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:987 +#: guix-git/doc/guix.texi:999 msgid "By default, tests results are displayed at a file level. In order to see the details of every individual test cases, it is possible to define the @code{SCM_LOG_DRIVER_FLAGS} makefile variable as in this example:" msgstr "默认情况下,测试结果只展示到文件层级。为了看每个独立的测试用例的详情,可以像这样定义@code{SCM_LOG_DRIVER_FLAGS} makefile变量:" #. type: example -#: guix-git/doc/guix.texi:990 +#: guix-git/doc/guix.texi:1002 #, no-wrap msgid "make check TESTS=\"tests/base64.scm\" SCM_LOG_DRIVER_FLAGS=\"--brief=no\"\n" msgstr "make check TESTS=\"tests/base64.scm\" SCM_LOG_DRIVER_FLAGS=\"--brief=no\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:998 +#: guix-git/doc/guix.texi:1010 msgid "The underlying SRFI 64 custom Automake test driver used for the 'check' test suite (located at @file{build-aux/test-driver.scm}) also allows selecting which test cases to run at a finer level, via its @option{--select} and @option{--exclude} options. Here's an example, to run all the test cases from the @file{tests/packages.scm} test file whose names start with ``transaction-upgrade-entry'':" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1002 +#: guix-git/doc/guix.texi:1014 #, no-wrap msgid "" "export SCM_LOG_DRIVER_FLAGS=\"--select=^transaction-upgrade-entry\"\n" @@ -5966,114 +6042,114 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1008 +#: guix-git/doc/guix.texi:1020 msgid "Those wishing to inspect the results of failed tests directly from the command line can add the @option{--errors-only=yes} option to the @code{SCM_LOG_DRIVER_FLAGS} makefile variable and set the @code{VERBOSE} Automake makefile variable, as in:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1011 +#: guix-git/doc/guix.texi:1023 #, fuzzy, no-wrap msgid "make check SCM_LOG_DRIVER_FLAGS=\"--brief=no --errors-only=yes\" VERBOSE=1\n" msgstr "make check TESTS=\"tests/base64.scm\" SCM_LOG_DRIVER_FLAGS=\"--brief=no\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:1016 +#: guix-git/doc/guix.texi:1028 msgid "The @option{--show-duration=yes} option can be used to print the duration of the individual test cases, when used in combination with @option{--brief=no}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1019 +#: guix-git/doc/guix.texi:1031 #, fuzzy, no-wrap msgid "make check SCM_LOG_DRIVER_FLAGS=\"--brief=no --show-duration=yes\"\n" msgstr "make check TESTS=\"tests/base64.scm\" SCM_LOG_DRIVER_FLAGS=\"--brief=no\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:1023 +#: guix-git/doc/guix.texi:1035 msgid "@xref{Parallel Test Harness,,,automake,GNU Automake} for more information about the Automake Parallel Test Harness." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1028 +#: guix-git/doc/guix.texi:1040 msgid "Upon failure, please email @email{bug-guix@@gnu.org} and attach the @file{test-suite.log} file. Please specify the Guix version being used as well as version numbers of the dependencies (@pxref{Requirements}) in your message." msgstr "遇到错误时,请给@email{bug-guix@@gnu.org}发邮件,并附带@file{test-suite.log}文件。请在消息里说明使用的Guix的版本信息和依赖(@pxref{Requirements})的版本信息。" #. type: Plain text -#: guix-git/doc/guix.texi:1032 +#: guix-git/doc/guix.texi:1044 msgid "Guix also comes with a whole-system test suite that tests complete Guix System instances. It can only run on systems where Guix is already installed, using:" msgstr "Guix还附带了一个可以测试整个Guix系统实例的全系统测试套件。它只能在已经安装Guix的系统上运行:" #. type: example -#: guix-git/doc/guix.texi:1035 +#: guix-git/doc/guix.texi:1047 #, no-wrap msgid "make check-system\n" msgstr "make check-system\n" #. type: Plain text -#: guix-git/doc/guix.texi:1039 +#: guix-git/doc/guix.texi:1051 msgid "or, again, by defining @code{TESTS} to select a subset of tests to run:" msgstr "或者,同样的,通过定义@code{TESTS}只运行测试的一个子集:" #. type: example -#: guix-git/doc/guix.texi:1042 +#: guix-git/doc/guix.texi:1054 #, no-wrap msgid "make check-system TESTS=\"basic mcron\"\n" msgstr "make check-system TESTS=\"basic mcron\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:1050 +#: guix-git/doc/guix.texi:1062 msgid "These system tests are defined in the @code{(gnu tests @dots{})} modules. They work by running the operating systems under test with lightweight instrumentation in a virtual machine (VM). They can be computationally intensive or rather cheap, depending on whether substitutes are available for their dependencies (@pxref{Substitutes}). Some of them require a lot of storage space to hold VM images." msgstr "这些系统测试是在@code{(gnu tests @dots{})}模块里定义的。它们在虚拟机(VM)里运行轻量的指令。它们的计算量可能很多也可能很少,这取决于它们依赖的substitute(@pxref{Substitutes})是否已经存在。它们之中有些需要很多存储空间以保存虚拟机硬盘。" #. type: Plain text -#: guix-git/doc/guix.texi:1053 +#: guix-git/doc/guix.texi:1065 msgid "Again in case of test failures, please send @email{bug-guix@@gnu.org} all the details." msgstr "再重复一遍,如果遇到测试错误,请给@email{bug-guix@@gnu.org}发邮件,并附带详细的说明。" #. type: cindex -#: guix-git/doc/guix.texi:1057 +#: guix-git/doc/guix.texi:1069 #, no-wrap msgid "daemon" msgstr "后台进程" #. type: Plain text -#: guix-git/doc/guix.texi:1065 +#: guix-git/doc/guix.texi:1077 msgid "Operations such as building a package or running the garbage collector are all performed by a specialized process, the @dfn{build daemon}, on behalf of clients. Only the daemon may access the store and its associated database. Thus, any operation that manipulates the store goes through the daemon. For instance, command-line tools such as @command{guix package} and @command{guix build} communicate with the daemon (@i{via} remote procedure calls) to instruct it what to do." msgstr "构建软件包或运行垃圾回收器之类的操作都是由一个特殊的进程代替客户执行的,即@dfn{构建后台进程}。只有这个进程可以访问仓库和相关的数据库。因此,所有修改仓库的操作都通过这个后台进程执行。例如,@command{guix package}和@command{guix build}之类的命令行工具通过和这个后台进程通信(@i{通过}远程过程调用)来指示它该做什么。" #. type: Plain text -#: guix-git/doc/guix.texi:1069 +#: guix-git/doc/guix.texi:1081 msgid "The following sections explain how to prepare the build daemon's environment. See also @ref{Substitutes}, for information on how to allow the daemon to download pre-built binaries." msgstr "接下来的几个小节介绍如何准备“构建后台进程”的环境。参考@ref{Substitutes},了解怎样允许这个后台进程下载预构建好的二进制文件。" #. type: cindex -#: guix-git/doc/guix.texi:1079 guix-git/doc/guix.texi:1542 +#: guix-git/doc/guix.texi:1091 guix-git/doc/guix.texi:1559 #, no-wrap msgid "build environment" msgstr "构建环境" #. type: Plain text -#: guix-git/doc/guix.texi:1087 +#: guix-git/doc/guix.texi:1099 msgid "In a standard multi-user setup, Guix and its daemon---the @command{guix-daemon} program---are installed by the system administrator; @file{/gnu/store} is owned by @code{root} and @command{guix-daemon} runs as @code{root}. Unprivileged users may use Guix tools to build packages or otherwise access the store, and the daemon will do it on their behalf, ensuring that the store is kept in a consistent state, and allowing built packages to be shared among users." msgstr "在一个标准的多用户设置里,Guix和它的后台进程--@command{guix-daemon}程序--是由@code{root}用户安装的,并且@command{guix-daemon}以@code{root}用户身份运行。无特权的用户可以用Guix的工具构建软件包或访问仓库,这个后台进程会代替用户进行这些操作,以确保仓库保持一致的状态,并且允许构建好的软件包可以在不同用户间共享。" #. type: cindex -#: guix-git/doc/guix.texi:1088 +#: guix-git/doc/guix.texi:1100 #, no-wrap msgid "build users" msgstr "构建用户" #. type: Plain text -#: guix-git/doc/guix.texi:1099 +#: guix-git/doc/guix.texi:1111 msgid "When @command{guix-daemon} runs as @code{root}, you may not want package build processes themselves to run as @code{root} too, for obvious security reasons. To avoid that, a special pool of @dfn{build users} should be created for use by build processes started by the daemon. These build users need not have a shell and a home directory: they will just be used when the daemon drops @code{root} privileges in build processes. Having several such users allows the daemon to launch distinct build processes under separate UIDs, which guarantees that they do not interfere with each other---an essential feature since builds are regarded as pure functions (@pxref{Introduction})." msgstr "当@command{guix-daemon}以@code{root}用户身份运行时,由于安全方面的考虑,你可能不希望软件包构建进程也以@code{root}用户身份运行。为了避免那样,我们需要创建一个@dfn{构建用户}池,以供后台进程启动的构建进程使用。这些构建用户不需要拥有shell和家目录:他们只会在后台进程为构建进程剥夺@code{root}特权时使用。拥有多个这类用户使后台进程可以以不同的UID启动不同的构建进程,这保证它们不会互相干扰--这是一个重要的功能,因为构建被视为纯函数(@pxref{Introduction})。" #. type: Plain text -#: guix-git/doc/guix.texi:1102 +#: guix-git/doc/guix.texi:1114 msgid "On a GNU/Linux system, a build user pool may be created like this (using Bash syntax and the @code{shadow} commands):" msgstr "在一个GNU/Linux系统上,可以这样创建一个构建用户池(用bash语法和@code{shadow}命令):" #. type: example -#: guix-git/doc/guix.texi:1114 +#: guix-git/doc/guix.texi:1126 #, fuzzy, no-wrap msgid "" "# groupadd --system guixbuild\n" @@ -6095,143 +6171,148 @@ msgstr "" " done\n" #. type: Plain text -#: guix-git/doc/guix.texi:1124 +#: guix-git/doc/guix.texi:1136 msgid "The number of build users determines how many build jobs may run in parallel, as specified by the @option{--max-jobs} option (@pxref{Invoking guix-daemon, @option{--max-jobs}}). To use @command{guix system vm} and related commands, you may need to add the build users to the @code{kvm} group so they can access @file{/dev/kvm}, using @code{-G guixbuild,kvm} instead of @code{-G guixbuild} (@pxref{Invoking guix system})." msgstr "构建用户的数量决定了有多少个构建任务可以并行执行,即@option{--max-jobs}参数(@pxref{Invoking guix-daemon, @option{--max-jobs}})。为了使用@command{guix system vm}和相关的命令,你需要把构建用户添加到@code{kvm}用户组,以使它们访问@file{/dev/kvm}。为此,把@code{-G guixbuild}替换成@code{-G guixbuild,kvm}(@pxref{Invoking guix system})。" #. type: Plain text -#: guix-git/doc/guix.texi:1133 +#: guix-git/doc/guix.texi:1145 msgid "The @code{guix-daemon} program may then be run as @code{root} with the following command@footnote{If your machine uses the systemd init system, dropping the @file{@var{prefix}/lib/systemd/system/guix-daemon.service} file in @file{/etc/systemd/system} will ensure that @command{guix-daemon} is automatically started. Similarly, if your machine uses the Upstart init system, drop the @file{@var{prefix}/lib/upstart/system/guix-daemon.conf} file in @file{/etc/init}.}:" msgstr "之后以@code{root}身份用下面的命令运行@code{guix-daemon}程序command@footnote{如果你的机器使用systemd init系统,把@file{@var{prefix}/lib/systemd/system/guix-daemon.service}文件复制到@file{/etc/systemd/system}文件夹里可以使@command{guix-daemon}自启动。类似的,如果你的机器使用Upstart init系统,把@file{@var{prefix}/lib/upstart/system/guix-daemon.conf}文件复制到@file{/etc/init}文件夹里}:" #. type: example -#: guix-git/doc/guix.texi:1136 guix-git/doc/guix.texi:1535 +#: guix-git/doc/guix.texi:1148 guix-git/doc/guix.texi:1552 #, no-wrap msgid "# guix-daemon --build-users-group=guixbuild\n" msgstr "# guix-daemon --build-users-group=guixbuild\n" #. type: cindex -#: guix-git/doc/guix.texi:1138 guix-git/doc/guix.texi:1540 +#: guix-git/doc/guix.texi:1150 guix-git/doc/guix.texi:1557 #, no-wrap msgid "chroot" msgstr "chroot" #. type: Plain text -#: guix-git/doc/guix.texi:1143 +#: guix-git/doc/guix.texi:1155 msgid "This way, the daemon starts build processes in a chroot, under one of the @code{guixbuilder} users. On GNU/Linux, by default, the chroot environment contains nothing but:" msgstr "这样,后台进程在一个chroot环境里,以一个@code{guixbuilder}用户组成员的身份启动构建进程。在GNU/Linux上,默认的,这个chroot环境仅包含这些东西:" #. type: itemize -#: guix-git/doc/guix.texi:1151 +#: guix-git/doc/guix.texi:1163 msgid "a minimal @code{/dev} directory, created mostly independently from the host @code{/dev}@footnote{``Mostly'', because while the set of files that appear in the chroot's @code{/dev} is fixed, most of these files can only be created if the host has them.};" msgstr "一个和主机@code{/dev}独立的@footnote{大致这样,因为虽然chroot环境里的@code{/dev}包含的文件是固定的,大部分这些文件只有在主机有对应的文件时才能创建。},最小的@code{/dev}文件夹;" #. type: itemize -#: guix-git/doc/guix.texi:1155 +#: guix-git/doc/guix.texi:1167 msgid "the @code{/proc} directory; it only shows the processes of the container since a separate PID name space is used;" msgstr "@code{/proc}文件夹;它只含有当前容器的进程,因为用了一个独立的进程PID命名空间;" #. type: itemize -#: guix-git/doc/guix.texi:1159 +#: guix-git/doc/guix.texi:1171 msgid "@file{/etc/passwd} with an entry for the current user and an entry for user @file{nobody};" msgstr "@file{/etc/passwd},仅包含当前用户和@file{nobody};" #. type: itemize -#: guix-git/doc/guix.texi:1162 +#: guix-git/doc/guix.texi:1174 msgid "@file{/etc/group} with an entry for the user's group;" msgstr "@file{/etc/group},包含用户的组;" #. type: itemize -#: guix-git/doc/guix.texi:1166 +#: guix-git/doc/guix.texi:1178 msgid "@file{/etc/hosts} with an entry that maps @code{localhost} to @code{127.0.0.1};" msgstr "@file{/etc/hosts},包含@code{localhost}映射到@code{127.0.0.1}的条目;" #. type: itemize -#: guix-git/doc/guix.texi:1169 +#: guix-git/doc/guix.texi:1181 msgid "a writable @file{/tmp} directory." msgstr "一个可写的@file{/tmp}文件夹。" #. type: Plain text -#: guix-git/doc/guix.texi:1178 +#: guix-git/doc/guix.texi:1187 +msgid "The chroot does not contain a @file{/home} directory, and the @env{HOME} environment variable is set to the non-existent @file{/homeless-shelter}. This helps to highlight inappropriate uses of @env{HOME} in the build scripts of packages." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:1195 #, fuzzy msgid "You can influence the directory where the daemon stores build trees @i{via} the @env{TMPDIR} environment variable. However, the build tree within the chroot is always called @file{/tmp/guix-build-@var{name}.drv-0}, where @var{name} is the derivation name---e.g., @code{coreutils-8.24}. This way, the value of @env{TMPDIR} does not leak inside build environments, which avoids discrepancies in cases where build processes capture the name of their build tree." msgstr "你可以@i{通过}@code{TMPDIR}环境变量修改后台进程保存构建树的位置。但是,chroot里的构建树总是在@file{/tmp/guix-build-@var{名字}.drv-0},@var{名字}是derivation的名字--如@code{coreutils-8.24}。这样,@code{TMPDIR}的值就不会泄漏到构建环境里,这可以避免由构建进程读取构建树名字引起的问题。" #. type: vindex -#: guix-git/doc/guix.texi:1179 guix-git/doc/guix.texi:4007 +#: guix-git/doc/guix.texi:1196 guix-git/doc/guix.texi:4025 #, no-wrap msgid "http_proxy" msgstr "http_proxy" #. type: vindex -#: guix-git/doc/guix.texi:1180 guix-git/doc/guix.texi:4008 +#: guix-git/doc/guix.texi:1197 guix-git/doc/guix.texi:4026 #, fuzzy, no-wrap msgid "https_proxy" msgstr "http_proxy" #. type: Plain text -#: guix-git/doc/guix.texi:1185 +#: guix-git/doc/guix.texi:1202 #, fuzzy msgid "The daemon also honors the @env{http_proxy} and @env{https_proxy} environment variables for HTTP and HTTPS downloads it performs, be it for fixed-output derivations (@pxref{Derivations}) or for substitutes (@pxref{Substitutes})." msgstr "后台进程通过HTTP下载时还遵守@code{http_proxy}环境变量,无论是下载derivation(@pxref{Derivations}),还是下载substitute(@pxref{Substitutes})。" #. type: Plain text -#: guix-git/doc/guix.texi:1193 +#: guix-git/doc/guix.texi:1210 #, fuzzy msgid "If you are installing Guix as an unprivileged user, it is still possible to run @command{guix-daemon} provided you pass @option{--disable-chroot}. However, build processes will not be isolated from one another, and not from the rest of the system. Thus, build processes may interfere with each other, and may access programs, libraries, and other files available on the system---making it much harder to view them as @emph{pure} functions." msgstr "如果你是以无特权的用户的身份安装Guix,你仍可以运行@command{guix-daemon},只要添加@code{--disable-chroot}参数就行了。但是,构建进程不会互相隔离,也不会和系统的其它部分隔离。因此,构建进程有可能互相干扰,可以访问程序、库和系统上的其它文件--这样就很难把它看作@emph{纯}函数。" #. type: subsection -#: guix-git/doc/guix.texi:1196 +#: guix-git/doc/guix.texi:1213 #, no-wrap msgid "Using the Offload Facility" msgstr "使用任务下发设施" #. type: cindex -#: guix-git/doc/guix.texi:1198 guix-git/doc/guix.texi:1601 +#: guix-git/doc/guix.texi:1215 guix-git/doc/guix.texi:1618 #, no-wrap msgid "offloading" msgstr "下发" #. type: cindex -#: guix-git/doc/guix.texi:1199 +#: guix-git/doc/guix.texi:1216 #, no-wrap msgid "build hook" msgstr "构建钩子" #. type: Plain text -#: guix-git/doc/guix.texi:1218 +#: guix-git/doc/guix.texi:1235 #, fuzzy msgid "When desired, the build daemon can @dfn{offload} derivation builds to other machines running Guix, using the @code{offload} @dfn{build hook}@footnote{This feature is available only when @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH} is present.}. When that feature is enabled, a list of user-specified build machines is read from @file{/etc/guix/machines.scm}; every time a build is requested, for instance via @code{guix build}, the daemon attempts to offload it to one of the machines that satisfy the constraints of the derivation, in particular its system types---e.g., @code{x86_64-linux}. A single machine can have multiple system types, either because its architecture natively supports it, via emulation (@pxref{transparent-emulation-qemu, Transparent Emulation with QEMU}), or both. Missing prerequisites for the build are copied over SSH to the target machine, which then proceeds with the build; upon success the output(s) of the build are copied back to the initial machine. The offload facility comes with a basic scheduler that attempts to select the best machine. The best machine is chosen among the available machines based on criteria such as:" msgstr "当需要时,构建后台进程可以把构建derivation的任务@dfn{下发}给其它运行Guix的机器,这通过@code{下发} @dfn{构建钩子}实现@footnote{这个功能只有当@uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH}存在时才可用。}。当那个功能被启用时,会从@file{/etc/guix/machines.scm}读取一列用户指定的机器;每次发送构建请求时,如执行@code{guix build},后台进程尝试把它下发到某一台满足derivation的约束(特别是系统类型--如@file{x86_64-linux})的机器上。缺少的必备构建依赖通过SSH复制到目标机器,然后继续构建;成功后,构建输出的结果被复制回初始的机器上。" #. type: enumerate -#: guix-git/doc/guix.texi:1224 +#: guix-git/doc/guix.texi:1241 msgid "The availability of a build slot. A build machine can have as many build slots (connections) as the value of the @code{parallel-builds} field of its @code{build-machine} object." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1228 +#: guix-git/doc/guix.texi:1245 msgid "Its relative speed, as defined via the @code{speed} field of its @code{build-machine} object." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1233 +#: guix-git/doc/guix.texi:1250 msgid "Its load. The normalized machine load must be lower than a threshold value, configurable via the @code{overload-threshold} field of its @code{build-machine} object." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1236 +#: guix-git/doc/guix.texi:1253 msgid "Disk space availability. More than a 100 MiB must be available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1239 +#: guix-git/doc/guix.texi:1256 msgid "The @file{/etc/guix/machines.scm} file typically looks like this:" msgstr "@file{/etc/guix/machines.scm}文件通常是这样的:" #. type: lisp -#: guix-git/doc/guix.texi:1247 +#: guix-git/doc/guix.texi:1264 #, fuzzy, no-wrap msgid "" "(list (build-machine\n" @@ -6251,7 +6332,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:1253 +#: guix-git/doc/guix.texi:1270 #, fuzzy, no-wrap msgid "" " (build-machine\n" @@ -6270,7 +6351,7 @@ msgstr "" "\n" #. type: lisp -#: guix-git/doc/guix.texi:1257 +#: guix-git/doc/guix.texi:1274 #, no-wrap msgid "" " ;; Remember 'guix offload' is spawned by\n" @@ -6279,100 +6360,100 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1263 +#: guix-git/doc/guix.texi:1280 #, fuzzy msgid "In the example above we specify a list of two build machines, one for the @code{x86_64} and @code{i686} architectures and one for the @code{aarch64} architecture." msgstr "在上面的例子里,我们指定了一个包含两个构建机器的列表,一个是@code{x86_64}架构,一个是@code{mips64el}架构。" #. type: Plain text -#: guix-git/doc/guix.texi:1272 +#: guix-git/doc/guix.texi:1289 msgid "In fact, this file is---not surprisingly!---a Scheme file that is evaluated when the @code{offload} hook is started. Its return value must be a list of @code{build-machine} objects. While this example shows a fixed list of build machines, one could imagine, say, using DNS-SD to return a list of potential build machines discovered in the local network (@pxref{Introduction, Guile-Avahi,, guile-avahi, Using Avahi in Guile Scheme Programs}). The @code{build-machine} data type is detailed below." msgstr "事实上,这个文件--并不意外地--是一个Scheme文件,当@code{下发}钩子被启动时执行。它的返回值必须是一个包含@code{build-machine}对象的列表。虽然这个例子展示的是一个固定的列表,你可以想象,使用DNS-SD来返回一个包含从局域网内发现的构建机器的列表,@pxref{Introduction, Guile-Avahi,, guile-avahi, 在Guile Scheme程序里使用Avahi}。@code{build-machine}数据类型的详细信息如下。" #. type: deftp -#: guix-git/doc/guix.texi:1273 +#: guix-git/doc/guix.texi:1290 #, no-wrap msgid "{Data Type} build-machine" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:1276 +#: guix-git/doc/guix.texi:1293 msgid "This data type represents build machines to which the daemon may offload builds. The important fields are:" msgstr "这个数据类型表示后台进程可以下发构建任务的构建机器。重要的项有:" #. type: item -#: guix-git/doc/guix.texi:1279 guix-git/doc/guix.texi:7113 -#: guix-git/doc/guix.texi:15446 guix-git/doc/guix.texi:15545 -#: guix-git/doc/guix.texi:15786 guix-git/doc/guix.texi:17314 -#: guix-git/doc/guix.texi:17935 guix-git/doc/guix.texi:18209 -#: guix-git/doc/guix.texi:21269 guix-git/doc/guix.texi:24179 -#: guix-git/doc/guix.texi:25568 guix-git/doc/guix.texi:26180 -#: guix-git/doc/guix.texi:26533 guix-git/doc/guix.texi:26574 -#: guix-git/doc/guix.texi:28735 guix-git/doc/guix.texi:31072 -#: guix-git/doc/guix.texi:31092 guix-git/doc/guix.texi:33766 -#: guix-git/doc/guix.texi:33783 guix-git/doc/guix.texi:34320 -#: guix-git/doc/guix.texi:36095 guix-git/doc/guix.texi:36422 +#: guix-git/doc/guix.texi:1296 guix-git/doc/guix.texi:7157 +#: guix-git/doc/guix.texi:15803 guix-git/doc/guix.texi:15902 +#: guix-git/doc/guix.texi:16143 guix-git/doc/guix.texi:17676 +#: guix-git/doc/guix.texi:18297 guix-git/doc/guix.texi:18571 +#: guix-git/doc/guix.texi:21631 guix-git/doc/guix.texi:24541 +#: guix-git/doc/guix.texi:25905 guix-git/doc/guix.texi:26517 +#: guix-git/doc/guix.texi:26870 guix-git/doc/guix.texi:26911 +#: guix-git/doc/guix.texi:29072 guix-git/doc/guix.texi:31437 +#: guix-git/doc/guix.texi:31457 guix-git/doc/guix.texi:34203 +#: guix-git/doc/guix.texi:34220 guix-git/doc/guix.texi:34759 +#: guix-git/doc/guix.texi:36585 guix-git/doc/guix.texi:36912 #, no-wrap msgid "name" msgstr "名字" #. type: table -#: guix-git/doc/guix.texi:1281 +#: guix-git/doc/guix.texi:1298 msgid "The host name of the remote machine." msgstr "远程机器的主机名。" #. type: item -#: guix-git/doc/guix.texi:1282 +#: guix-git/doc/guix.texi:1299 #, fuzzy, no-wrap msgid "systems" msgstr "系统" #. type: table -#: guix-git/doc/guix.texi:1285 +#: guix-git/doc/guix.texi:1302 #, fuzzy msgid "The system types the remote machine supports---e.g., @code{(list \"x86_64-linux\" \"i686-linux\")}." msgstr "远程机器的系统类型--如,@code{\"x86_64-linux\"}。" #. type: code{#1} -#: guix-git/doc/guix.texi:1286 guix-git/doc/guix.texi:17945 +#: guix-git/doc/guix.texi:1303 guix-git/doc/guix.texi:18307 #, no-wrap msgid "user" msgstr "用户" #. type: table -#: guix-git/doc/guix.texi:1290 +#: guix-git/doc/guix.texi:1307 msgid "The user account to use when connecting to the remote machine over SSH. Note that the SSH key pair must @emph{not} be passphrase-protected, to allow non-interactive logins." msgstr "通过SSH连接远程机器时使用的用户帐号。注意,SSH密钥@emph{不}能被密码保护,以支持无交互的登录。" #. type: item -#: guix-git/doc/guix.texi:1291 +#: guix-git/doc/guix.texi:1308 #, no-wrap msgid "host-key" msgstr "主机公钥" #. type: table -#: guix-git/doc/guix.texi:1295 +#: guix-git/doc/guix.texi:1312 msgid "This must be the machine's SSH @dfn{public host key} in OpenSSH format. This is used to authenticate the machine when we connect to it. It is a long string that looks like this:" msgstr "这必须是机器的OpenSSH格式的SSH@dfn{公钥}。这是用来在连接机器时认证身份的。它是一个像这样的长字符串:" #. type: example -#: guix-git/doc/guix.texi:1298 +#: guix-git/doc/guix.texi:1315 #, no-wrap msgid "ssh-ed25519 AAAAC3NzaC@dots{}mde+UhL hint@@example.org\n" msgstr "ssh-ed25519 AAAAC3NzaC@dots{}mde+UhL hint@@example.org\n" #. type: table -#: guix-git/doc/guix.texi:1303 +#: guix-git/doc/guix.texi:1320 msgid "If the machine is running the OpenSSH daemon, @command{sshd}, the host key can be found in a file such as @file{/etc/ssh/ssh_host_ed25519_key.pub}." msgstr "如果这个机器正在运行OpenSSH后台进程,@command{sshd},那么主机公钥可以在@file{/etc/ssh/ssh_host_ed25519_key.pub}找到。" #. type: table -#: guix-git/doc/guix.texi:1308 +#: guix-git/doc/guix.texi:1325 msgid "If the machine is running the SSH daemon of GNU@tie{}lsh, @command{lshd}, the host key is in @file{/etc/lsh/host-key.pub} or a similar file. It can be converted to the OpenSSH format using @command{lsh-export-key} (@pxref{Converting keys,,, lsh, LSH Manual}):" msgstr "如果这个机器正在运行GNU@tie{}lsh,@command{lshd},那么主机公钥可以在@file{/etc/lsh/host-key.pub}或类似的位置找到。它可以通过@command{lsh-export-key}命令转换成OpenSSH格式(@pxref{Converting keys,,, lsh, LSH用户手册}):" #. type: example -#: guix-git/doc/guix.texi:1312 +#: guix-git/doc/guix.texi:1329 #, fuzzy, no-wrap msgid "" "$ lsh-export-key --openssh < /etc/lsh/host-key.pub\n" @@ -6382,690 +6463,690 @@ msgstr "" "ssh-rsa AAAAB3NzaC1yc2EAAAAEOp8FoQAAAQEAs1eB46LV@dots{}\n" #. type: deftp -#: guix-git/doc/guix.texi:1317 +#: guix-git/doc/guix.texi:1334 msgid "A number of optional fields may be specified:" msgstr "一些可选的项:" #. type: item -#: guix-git/doc/guix.texi:1320 guix-git/doc/guix.texi:35581 +#: guix-git/doc/guix.texi:1337 guix-git/doc/guix.texi:36061 #, no-wrap msgid "@code{port} (default: @code{22})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:1322 +#: guix-git/doc/guix.texi:1339 msgid "Port number of SSH server on the machine." msgstr "机器上的SSH服务器的端口号。" #. type: item -#: guix-git/doc/guix.texi:1323 +#: guix-git/doc/guix.texi:1340 #, no-wrap msgid "@code{private-key} (default: @file{~root/.ssh/id_rsa})" msgstr "@code{private-key}(默认值:@file{~root/.ssh/id_rsa})" #. type: table -#: guix-git/doc/guix.texi:1326 +#: guix-git/doc/guix.texi:1343 msgid "The SSH private key file to use when connecting to the machine, in OpenSSH format. This key must not be protected with a passphrase." msgstr "连接机器时使用的SSH私钥,OpenSSH格式。这个私钥不能被密码保护。" #. type: table -#: guix-git/doc/guix.texi:1329 +#: guix-git/doc/guix.texi:1346 msgid "Note that the default value is the private key @emph{of the root account}. Make sure it exists if you use the default." msgstr "注意,默认值是@emph{root帐号}的私钥。使用默认值时请确保它存在。" #. type: item -#: guix-git/doc/guix.texi:1330 +#: guix-git/doc/guix.texi:1347 #, no-wrap msgid "@code{compression} (default: @code{\"zlib@@openssh.com,zlib\"})" msgstr "@code{compression}(默认值:@code{\"zlib@@openssh.com,zlib\"})" #. type: itemx -#: guix-git/doc/guix.texi:1331 +#: guix-git/doc/guix.texi:1348 #, no-wrap msgid "@code{compression-level} (default: @code{3})" msgstr "@code{compression-level}(默认值:@code{3})" #. type: table -#: guix-git/doc/guix.texi:1333 +#: guix-git/doc/guix.texi:1350 msgid "The SSH-level compression methods and compression level requested." msgstr "SSH压缩算法和压缩级别。" #. type: table -#: guix-git/doc/guix.texi:1336 +#: guix-git/doc/guix.texi:1353 msgid "Note that offloading relies on SSH compression to reduce bandwidth usage when transferring files to and from build machines." msgstr "下发任务依赖SSH压缩来减少传输文件到构建机器时使用的带宽。" #. type: item -#: guix-git/doc/guix.texi:1337 +#: guix-git/doc/guix.texi:1354 #, no-wrap msgid "@code{daemon-socket} (default: @code{\"/var/guix/daemon-socket/socket\"})" msgstr "@code{daemon-socket}(默认值:@code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:1340 +#: guix-git/doc/guix.texi:1357 msgid "File name of the Unix-domain socket @command{guix-daemon} is listening to on that machine." msgstr "那台机器上的@command{guix-daemon}监听的Unix套接字文件名。" #. type: item -#: guix-git/doc/guix.texi:1341 +#: guix-git/doc/guix.texi:1358 #, fuzzy, no-wrap msgid "@code{overload-threshold} (default: @code{0.6})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:1347 +#: guix-git/doc/guix.texi:1364 msgid "The load threshold above which a potential offload machine is disregarded by the offload scheduler. The value roughly translates to the total processor usage of the build machine, ranging from 0.0 (0%) to 1.0 (100%). It can also be disabled by setting @code{overload-threshold} to @code{#f}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1348 +#: guix-git/doc/guix.texi:1365 #, no-wrap msgid "@code{parallel-builds} (default: @code{1})" msgstr "@code{parallel-builds}(默认值:@code{1})" #. type: table -#: guix-git/doc/guix.texi:1350 +#: guix-git/doc/guix.texi:1367 msgid "The number of builds that may run in parallel on the machine." msgstr "那台机器上可以并行运行的构建任务数量。" #. type: item -#: guix-git/doc/guix.texi:1351 +#: guix-git/doc/guix.texi:1368 #, no-wrap msgid "@code{speed} (default: @code{1.0})" msgstr "@code{speed}(默认值:@code{1.0})" #. type: table -#: guix-git/doc/guix.texi:1354 +#: guix-git/doc/guix.texi:1371 msgid "A ``relative speed factor''. The offload scheduler will tend to prefer machines with a higher speed factor." msgstr "一个相对的速度值。下发调度器会偏好速度更快的机器。" #. type: item -#: guix-git/doc/guix.texi:1355 +#: guix-git/doc/guix.texi:1372 #, no-wrap msgid "@code{features} (default: @code{'()})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:1360 +#: guix-git/doc/guix.texi:1377 msgid "A list of strings denoting specific features supported by the machine. An example is @code{\"kvm\"} for machines that have the KVM Linux modules and corresponding hardware support. Derivations can request features by name, and they will be scheduled on matching build machines." msgstr "一个表示机器支持的功能的字符串列表。例如,@code{\"kvm\"}表示机器有KVM Linux模块和相关的硬件支持。Derivation可以通过名字请求需要的功能,然后被分发到匹配的机器的任务队列里。" #. type: Plain text -#: guix-git/doc/guix.texi:1366 +#: guix-git/doc/guix.texi:1383 msgid "The @command{guix} command must be in the search path on the build machines. You can check whether this is the case by running:" msgstr "@command{guix}命令必须在构建机器的搜素路径里。你可以通过这个命令检查:" #. type: example -#: guix-git/doc/guix.texi:1369 +#: guix-git/doc/guix.texi:1386 #, no-wrap msgid "ssh build-machine guix repl --version\n" msgstr "ssh build-machine guix repl --version\n" #. type: Plain text -#: guix-git/doc/guix.texi:1376 +#: guix-git/doc/guix.texi:1393 msgid "There is one last thing to do once @file{machines.scm} is in place. As explained above, when offloading, files are transferred back and forth between the machine stores. For this to work, you first need to generate a key pair on each machine to allow the daemon to export signed archives of files from the store (@pxref{Invoking guix archive}):" msgstr "@file{machines.scm}到位后,还有一件要做的事。如上所述,下发任务时会在机器的仓库之间传输文件。为此,你需要在每台机器上生成一个密钥对,以使后台进程可以从仓库导出签名后的文件包(@pxref{Invoking guix archive}):" #. type: example -#: guix-git/doc/guix.texi:1379 guix-git/doc/guix.texi:35509 +#: guix-git/doc/guix.texi:1396 guix-git/doc/guix.texi:35965 #, no-wrap msgid "# guix archive --generate-key\n" msgstr "# guix archive --generate-key\n" #. type: Plain text -#: guix-git/doc/guix.texi:1384 +#: guix-git/doc/guix.texi:1401 msgid "Each build machine must authorize the key of the master machine so that it accepts store items it receives from the master:" msgstr "每台构建机器都必须认证主机器的公钥,从而接收从主机器接收的仓库文件:" #. type: example -#: guix-git/doc/guix.texi:1387 +#: guix-git/doc/guix.texi:1404 #, no-wrap msgid "# guix archive --authorize < master-public-key.txt\n" msgstr "# guix archive --authorize < master-public-key.txt\n" #. type: Plain text -#: guix-git/doc/guix.texi:1391 +#: guix-git/doc/guix.texi:1408 msgid "Likewise, the master machine must authorize the key of each build machine." msgstr "类似的,主机器必须认证每台构建机器的公钥:" #. type: Plain text -#: guix-git/doc/guix.texi:1397 +#: guix-git/doc/guix.texi:1414 msgid "All the fuss with keys is here to express pairwise mutual trust relations between the master and the build machines. Concretely, when the master receives files from a build machine (and @i{vice versa}), its build daemon can make sure they are genuine, have not been tampered with, and that they are signed by an authorized key." msgstr "所有这些有关公钥的繁琐事宜都是为了表达主服务器和构建服务器之间成对的互相信任关系。具体地,当主机器从构建机器接收文件时(反之亦然),它的构建后台进程可以确保文件是原样的,没有被篡改,并且被认证的公钥签名过。" #. type: cindex -#: guix-git/doc/guix.texi:1398 +#: guix-git/doc/guix.texi:1415 #, no-wrap msgid "offload test" msgstr "下发测试" #. type: Plain text -#: guix-git/doc/guix.texi:1401 +#: guix-git/doc/guix.texi:1418 msgid "To test whether your setup is operational, run this command on the master node:" msgstr "为了测试你的设置是否能正常工作,在主节点上运行这个命令:" #. type: example -#: guix-git/doc/guix.texi:1404 +#: guix-git/doc/guix.texi:1421 #, no-wrap msgid "# guix offload test\n" msgstr "# guix offload test\n" #. type: Plain text -#: guix-git/doc/guix.texi:1410 +#: guix-git/doc/guix.texi:1427 #, fuzzy msgid "This will attempt to connect to each of the build machines specified in @file{/etc/guix/machines.scm}, make sure Guix is available on each machine, attempt to export to the machine and import from it, and report any error in the process." msgstr "这会尝试连接每台在@file{/etc/guix/machines.scm}里指定的构建机器,确保Guile和Guix模块在每台机器上都可用,尝试导出到这些机器和从这些机器导入,并且报告这个过程中遇到的任何错误。" #. type: Plain text -#: guix-git/doc/guix.texi:1413 +#: guix-git/doc/guix.texi:1430 msgid "If you want to test a different machine file, just specify it on the command line:" msgstr "如果你希望用别的文件测试,只需要在命令行指定它:" #. type: example -#: guix-git/doc/guix.texi:1416 +#: guix-git/doc/guix.texi:1433 #, no-wrap msgid "# guix offload test machines-qualif.scm\n" msgstr "# guix offload test machines-qualif.scm\n" #. type: Plain text -#: guix-git/doc/guix.texi:1420 +#: guix-git/doc/guix.texi:1437 msgid "Last, you can test the subset of the machines whose name matches a regular expression like this:" msgstr "最后,你可以像这样只测试机器列表里名字匹配某个正则表达式的子集:" #. type: example -#: guix-git/doc/guix.texi:1423 +#: guix-git/doc/guix.texi:1440 #, no-wrap msgid "# guix offload test machines.scm '\\.gnu\\.org$'\n" msgstr "# guix offload test machines.scm '\\.gnu\\.org$'\n" #. type: cindex -#: guix-git/doc/guix.texi:1425 +#: guix-git/doc/guix.texi:1442 #, no-wrap msgid "offload status" msgstr "下发状态" #. type: Plain text -#: guix-git/doc/guix.texi:1428 +#: guix-git/doc/guix.texi:1445 msgid "To display the current load of all build hosts, run this command on the main node:" msgstr "若想展示所有构建主机的当前负载,在主节点上运行这个命令:" #. type: example -#: guix-git/doc/guix.texi:1431 +#: guix-git/doc/guix.texi:1448 #, no-wrap msgid "# guix offload status\n" msgstr "# guix offload status\n" #. type: cindex -#: guix-git/doc/guix.texi:1437 +#: guix-git/doc/guix.texi:1454 #, no-wrap msgid "SELinux, daemon policy" msgstr "SELinux,后台进程策略" #. type: cindex -#: guix-git/doc/guix.texi:1438 +#: guix-git/doc/guix.texi:1455 #, no-wrap msgid "mandatory access control, SELinux" msgstr "强制访问控制,SELinux" #. type: cindex -#: guix-git/doc/guix.texi:1439 +#: guix-git/doc/guix.texi:1456 #, no-wrap msgid "security, guix-daemon" msgstr "安全,guix-daemon" #. type: Plain text -#: guix-git/doc/guix.texi:1445 +#: guix-git/doc/guix.texi:1462 msgid "Guix includes an SELinux policy file at @file{etc/guix-daemon.cil} that can be installed on a system where SELinux is enabled, in order to label Guix files and to specify the expected behavior of the daemon. Since Guix System does not provide an SELinux base policy, the daemon policy cannot be used on Guix System." msgstr "Guix附带一个SELinux策略文件,位置在@file{etc/guix-daemon.cil},它可以在启用SELinux的系统上安装,为Guix的文件添加标签及指定后台进程的期望行为。由于Guix系统不提供SELinux基础策略,这个后台进程策略不能在Guix系统上使用。" #. type: subsubsection -#: guix-git/doc/guix.texi:1446 +#: guix-git/doc/guix.texi:1463 #, no-wrap msgid "Installing the SELinux policy" msgstr "安装SELinux策略" #. type: cindex -#: guix-git/doc/guix.texi:1447 +#: guix-git/doc/guix.texi:1464 #, no-wrap msgid "SELinux, policy installation" msgstr "SELinux,安装策略" #. type: Plain text -#: guix-git/doc/guix.texi:1449 +#: guix-git/doc/guix.texi:1466 msgid "To install the policy run this command as root:" msgstr "用root用户执行这个命令以安装策略:" #. type: example -#: guix-git/doc/guix.texi:1452 +#: guix-git/doc/guix.texi:1469 #, no-wrap msgid "semodule -i etc/guix-daemon.cil\n" msgstr "semodule -i etc/guix-daemon.cil\n" #. type: Plain text -#: guix-git/doc/guix.texi:1456 +#: guix-git/doc/guix.texi:1473 msgid "Then relabel the file system with @code{restorecon} or by a different mechanism provided by your system." msgstr "用@code{restorecon}或者你的系统提供的其它机制重新给文件系统打标签。" #. type: Plain text -#: guix-git/doc/guix.texi:1461 +#: guix-git/doc/guix.texi:1478 msgid "Once the policy is installed, the file system has been relabeled, and the daemon has been restarted, it should be running in the @code{guix_daemon_t} context. You can confirm this with the following command:" msgstr "一旦安装好策略,为文件系统重新打好标签,并且重启了后台进程,它应该在@code{guix_daemon_t}环境里运行。你可以用下面这个命令确认:" #. type: example -#: guix-git/doc/guix.texi:1464 +#: guix-git/doc/guix.texi:1481 #, no-wrap msgid "ps -Zax | grep guix-daemon\n" msgstr "ps -Zax | grep guix-daemon\n" #. type: Plain text -#: guix-git/doc/guix.texi:1469 +#: guix-git/doc/guix.texi:1486 msgid "Monitor the SELinux log files as you run a command like @code{guix build hello} to convince yourself that SELinux permits all necessary operations." msgstr "运行@code{guix build hello}之类的命令并监控SELinux日志以说服你自己SELinux允许所有的操作。" #. type: cindex -#: guix-git/doc/guix.texi:1471 +#: guix-git/doc/guix.texi:1488 #, no-wrap msgid "SELinux, limitations" msgstr "SELinux,限制" #. type: Plain text -#: guix-git/doc/guix.texi:1476 +#: guix-git/doc/guix.texi:1493 msgid "This policy is not perfect. Here is a list of limitations or quirks that should be considered when deploying the provided SELinux policy for the Guix daemon." msgstr "这个策略不是完美的。这里有一个关于限制和缺陷的列表,当为Guix后台进程部署提供的SELinux策略时该认真考虑。" #. type: enumerate -#: guix-git/doc/guix.texi:1483 +#: guix-git/doc/guix.texi:1500 #, fuzzy msgid "@code{guix_daemon_socket_t} isn’t actually used. None of the socket operations involve contexts that have anything to do with @code{guix_daemon_socket_t}. It doesn’t hurt to have this unused label, but it would be preferable to define socket rules for only this label." msgstr "@code{guix_daemon_socket_t}没有被实际使用。所有的套接字操作都和@code{guix_daemon_socket_t}没有任何关系。存在这个没被使用的标签并不碍事,但是为这个标签定义套接字规则是更好的选择。" #. type: enumerate -#: guix-git/doc/guix.texi:1494 +#: guix-git/doc/guix.texi:1511 msgid "@code{guix gc} cannot access arbitrary links to profiles. By design, the file label of the destination of a symlink is independent of the file label of the link itself. Although all profiles under $localstatedir are labelled, the links to these profiles inherit the label of the directory they are in. For links in the user’s home directory this will be @code{user_home_t}. But for links from the root user’s home directory, or @file{/tmp}, or the HTTP server’s working directory, etc, this won’t work. @code{guix gc} would be prevented from reading and following these links." msgstr "@code{guix gc}不可以任意访问指向profile的链接。由于设计的原因,符号链接的目标的文件标签和符号链接本身的文件标签是不同的。尽管$localstatedir里的所有profile都被打上了标签,指向这些profile的符号链接继承它们所在的文件夹的标签。对于普通用户的家目录里的链接,标签是@code{user_home_t}。但是对于root用户的家目录,或@file{/tmp},或HTTP服务器的工作目录等文件夹里的链接不是这样。@code{guix gc}会被阻止读取和跟随这些链接。" #. type: enumerate -#: guix-git/doc/guix.texi:1499 +#: guix-git/doc/guix.texi:1516 msgid "The daemon’s feature to listen for TCP connections might no longer work. This might require extra rules, because SELinux treats network sockets differently from files." msgstr "后台进程监听TCP连接的功能不再可用。这可能需要额外的规则,因为SELinux区别对待网络套接字和文件。" #. type: enumerate -#: guix-git/doc/guix.texi:1510 +#: guix-git/doc/guix.texi:1527 msgid "Currently all files with a name matching the regular expression @code{/gnu/store/.+-(guix-.+|profile)/bin/guix-daemon} are assigned the label @code{guix_daemon_exec_t}; this means that @emph{any} file with that name in any profile would be permitted to run in the @code{guix_daemon_t} domain. This is not ideal. An attacker could build a package that provides this executable and convince a user to install and run it, which lifts it into the @code{guix_daemon_t} domain. At that point SELinux could not prevent it from accessing files that are allowed for processes in that domain." msgstr "目前,所有匹配正则表达式@code{/gnu/store/.+-(guix-.+|profile)/bin/guix-daemon}的文件都被赋予@code{guix_daemon_exec_t}标签;这意味着@emph{任何}profile里的任何有这样名字的的文件都会被允许在@code{guix_daemon_t}域里执行。这不够理想。一个攻击者可以构建提供这个可执行程序的软件包,并说服一个用户安装、运行它,以此进入@code{guix_daemon_t}域。那时,SELinux无法阻止它访问所在域的进程可以访问的文件。" #. type: enumerate -#: guix-git/doc/guix.texi:1515 +#: guix-git/doc/guix.texi:1532 msgid "You will need to relabel the store directory after all upgrades to @file{guix-daemon}, such as after running @code{guix pull}. Assuming the store is in @file{/gnu}, you can do this with @code{restorecon -vR /gnu}, or by other means provided by your operating system." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1523 +#: guix-git/doc/guix.texi:1540 msgid "We could generate a much more restrictive policy at installation time, so that only the @emph{exact} file name of the currently installed @code{guix-daemon} executable would be labelled with @code{guix_daemon_exec_t}, instead of using a broad regular expression. The downside is that root would have to install or upgrade the policy at installation time whenever the Guix package that provides the effectively running @code{guix-daemon} executable is upgraded." msgstr "我们可以在安装时生成一个更严格的策略,仅当前安装的@code{guix-daemon}的@emph{精确的}的文件名会被打上@code{guix_daemon_exec_t}标签,而不是用一个宽泛的正则表达式。这样的缺点是root必须在每次安装提供@code{guix-daemon}的Guix软件包时安装或升级策略。" #. type: section -#: guix-git/doc/guix.texi:1526 +#: guix-git/doc/guix.texi:1543 #, no-wrap msgid "Invoking @command{guix-daemon}" msgstr "调用@command{guix-daemon}" #. type: Plain text -#: guix-git/doc/guix.texi:1532 +#: guix-git/doc/guix.texi:1549 msgid "The @command{guix-daemon} program implements all the functionality to access the store. This includes launching build processes, running the garbage collector, querying the availability of a build result, etc. It is normally run as @code{root} like this:" msgstr "@command{guix-daemon}程序实现了所有访问仓库的功能。包括启动构建进程,运行垃圾回收器,查询构建结果,等。它通常以@code{root}身份运行:" #. type: Plain text -#: guix-git/doc/guix.texi:1539 +#: guix-git/doc/guix.texi:1556 msgid "For details on how to set it up, @pxref{Setting Up the Daemon}." msgstr "关于如何设置它,@pxref{Setting Up the Daemon}。" #. type: cindex -#: guix-git/doc/guix.texi:1541 +#: guix-git/doc/guix.texi:1558 #, no-wrap msgid "container, build environment" msgstr "容器,构建环境" #. type: cindex -#: guix-git/doc/guix.texi:1543 guix-git/doc/guix.texi:3071 -#: guix-git/doc/guix.texi:3988 guix-git/doc/guix.texi:13753 +#: guix-git/doc/guix.texi:1560 guix-git/doc/guix.texi:3088 +#: guix-git/doc/guix.texi:4006 guix-git/doc/guix.texi:14110 #, no-wrap msgid "reproducible builds" msgstr "可复现的构建" #. type: Plain text -#: guix-git/doc/guix.texi:1555 +#: guix-git/doc/guix.texi:1572 #, fuzzy msgid "By default, @command{guix-daemon} launches build processes under different UIDs, taken from the build group specified with @option{--build-users-group}. In addition, each build process is run in a chroot environment that only contains the subset of the store that the build process depends on, as specified by its derivation (@pxref{Programming Interface, derivation}), plus a set of specific system directories. By default, the latter contains @file{/dev} and @file{/dev/pts}. Furthermore, on GNU/Linux, the build environment is a @dfn{container}: in addition to having its own file system tree, it has a separate mount name space, its own PID name space, network name space, etc. This helps achieve reproducible builds (@pxref{Features})." msgstr "默认情况下,@command{guix-daemon}用不同的UID启动构建进程,这些用户是从@code{--build-users-group}参数指定的用户组里获取的。并且,每个构建进程都在一个chroot环境里运行,这个环境只包含构建进程依赖的仓库的子集(由derivation(@pxref{Programming Interface, derivation})的内容决定),以及一些系统文件夹。默认情况下,后者包含@file{/dev}和@file{/dev/pts}。并且,在GNU/Linux上,构建环境是一个@dfn{容器}:它不仅有自己的文件系统树,还有独立的挂载命名空间,独立的PID命名空间,网络命名空间,等。这帮助实现可复现构建的目的(@pxref{Features})。" #. type: Plain text -#: guix-git/doc/guix.texi:1561 +#: guix-git/doc/guix.texi:1578 #, fuzzy msgid "When the daemon performs a build on behalf of the user, it creates a build directory under @file{/tmp} or under the directory specified by its @env{TMPDIR} environment variable. This directory is shared with the container for the duration of the build, though within the container, the build tree is always called @file{/tmp/guix-build-@var{name}.drv-0}." msgstr "当后台进程代替用户执行构建时,它在@file{/tmp}或@code{TMPDIR}环境变量指定的文件夹里创建一个文件夹。在构建期间,这个文件夹被共享给容器,然而容器内,这个构建树总是叫做@file{/tmp/guix-build-@var{name}.drv-0}。" #. type: Plain text -#: guix-git/doc/guix.texi:1565 +#: guix-git/doc/guix.texi:1582 #, fuzzy msgid "The build directory is automatically deleted upon completion, unless the build failed and the client specified @option{--keep-failed} (@pxref{Common Build Options, @option{--keep-failed}})." msgstr "结束时构建文件夹就被自动删除了,除非构建失败并且客户端指定了@option{--keep-failed}参数(@pxref{Invoking guix build, @option{--keep-failed}})。" #. type: Plain text -#: guix-git/doc/guix.texi:1571 +#: guix-git/doc/guix.texi:1588 #, fuzzy msgid "The daemon listens for connections and spawns one sub-process for each session started by a client (one of the @command{guix} sub-commands). The @command{guix processes} command allows you to get an overview of the activity on your system by viewing each of the active sessions and clients. @xref{Invoking guix processes}, for more information." msgstr "后台进程监听连接并且为每个客户端(@command{guix}的子命令)启动的会话生成一个子进程。@command{guix processes}命令允许你获取系统上的活动的概况,浏览每个活动会话和客户端。@xref{Invoking guix processes},以了解更多信息。" #. type: Plain text -#: guix-git/doc/guix.texi:1573 +#: guix-git/doc/guix.texi:1590 msgid "The following command-line options are supported:" msgstr "下面这些命令行选项受支持:" #. type: item -#: guix-git/doc/guix.texi:1575 +#: guix-git/doc/guix.texi:1592 #, no-wrap msgid "--build-users-group=@var{group}" msgstr "--build-users-group=@var{用户组}" #. type: table -#: guix-git/doc/guix.texi:1578 +#: guix-git/doc/guix.texi:1595 msgid "Take users from @var{group} to run build processes (@pxref{Setting Up the Daemon, build users})." msgstr "这会从@var{用户组}里选取用户,以运行构建进程(@pxref{Setting Up the Daemon,构建用户})。" #. type: item -#: guix-git/doc/guix.texi:1579 guix-git/doc/guix.texi:10915 +#: guix-git/doc/guix.texi:1596 guix-git/doc/guix.texi:11229 #, no-wrap msgid "--no-substitutes" msgstr "--no-substitutes" #. type: cindex -#: guix-git/doc/guix.texi:1580 guix-git/doc/guix.texi:3083 -#: guix-git/doc/guix.texi:3741 +#: guix-git/doc/guix.texi:1597 guix-git/doc/guix.texi:3100 +#: guix-git/doc/guix.texi:3759 #, no-wrap msgid "substitutes" msgstr "substitutes" #. type: table -#: guix-git/doc/guix.texi:1584 guix-git/doc/guix.texi:10919 +#: guix-git/doc/guix.texi:1601 guix-git/doc/guix.texi:11233 msgid "Do not use substitutes for build products. That is, always build things locally instead of allowing downloads of pre-built binaries (@pxref{Substitutes})." msgstr "不要为构建商品使用substitute。即,总是在本地构建,而不是下载预构建的二进制文件(@pxref{Substitutes})。" #. type: table -#: guix-git/doc/guix.texi:1588 +#: guix-git/doc/guix.texi:1605 #, fuzzy msgid "When the daemon runs with @option{--no-substitutes}, clients can still explicitly enable substitution @i{via} the @code{set-build-options} remote procedure call (@pxref{The Store})." msgstr "当后台进程用@code{--no-substitutes}参数启动时,客户端仍然可以显式地@i{通过}@code{set-build-options}远程过程调用来启用substitute(@pxref{The Store})。" #. type: anchor{#1} -#: guix-git/doc/guix.texi:1590 +#: guix-git/doc/guix.texi:1607 msgid "daemon-substitute-urls" msgstr "daemon-substitute-urls" #. type: item -#: guix-git/doc/guix.texi:1590 guix-git/doc/guix.texi:10902 -#: guix-git/doc/guix.texi:13160 guix-git/doc/guix.texi:13899 -#: guix-git/doc/guix.texi:14124 +#: guix-git/doc/guix.texi:1607 guix-git/doc/guix.texi:11216 +#: guix-git/doc/guix.texi:13517 guix-git/doc/guix.texi:14256 +#: guix-git/doc/guix.texi:14481 #, no-wrap msgid "--substitute-urls=@var{urls}" msgstr "--substitute-urls=@var{urls}" #. type: table -#: guix-git/doc/guix.texi:1594 +#: guix-git/doc/guix.texi:1611 #, fuzzy #| msgid "Consider @var{urls} the default whitespace-separated list of substitute source URLs. When this option is omitted, @indicateurl{https://@value{SUBSTITUTE-SERVER}} is used." msgid "Consider @var{urls} the default whitespace-separated list of substitute source URLs. When this option is omitted, @indicateurl{@value{SUBSTITUTE-URLS}} is used." msgstr "@var{urls}是用空格分隔的substitute源URL列表。当这个选项被省略时,默认使用@indicateurl{https://@value{SUBSTITUTE-SERVER}}。" #. type: table -#: guix-git/doc/guix.texi:1597 +#: guix-git/doc/guix.texi:1614 msgid "This means that substitutes may be downloaded from @var{urls}, as long as they are signed by a trusted signature (@pxref{Substitutes})." msgstr "这意味着可以从@var{urls}下载substitute,只要它们的签名可信(@pxref{Substitutes})。" #. type: table -#: guix-git/doc/guix.texi:1600 +#: guix-git/doc/guix.texi:1617 msgid "@xref{Getting Substitutes from Other Servers}, for more information on how to configure the daemon to get substitutes from other servers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1602 guix-git/doc/guix.texi:10938 +#: guix-git/doc/guix.texi:1619 guix-git/doc/guix.texi:11252 #, fuzzy, no-wrap msgid "--no-offload" msgstr "下发" #. type: table -#: guix-git/doc/guix.texi:1606 guix-git/doc/guix.texi:10942 +#: guix-git/doc/guix.texi:1623 guix-git/doc/guix.texi:11256 #, fuzzy msgid "Do not use offload builds to other machines (@pxref{Daemon Offload Setup}). That is, always build things locally instead of offloading builds to remote machines." msgstr "不要为构建商品使用substitute。即,总是在本地构建,而不是下载预构建的二进制文件(@pxref{Substitutes})。" #. type: item -#: guix-git/doc/guix.texi:1607 +#: guix-git/doc/guix.texi:1624 #, no-wrap msgid "--cache-failures" msgstr "--cache-failures" #. type: table -#: guix-git/doc/guix.texi:1609 +#: guix-git/doc/guix.texi:1626 msgid "Cache build failures. By default, only successful builds are cached." msgstr "缓存失败的构建。默认地,只缓存成功的构建。" #. type: table -#: guix-git/doc/guix.texi:1614 +#: guix-git/doc/guix.texi:1631 msgid "When this option is used, @command{guix gc --list-failures} can be used to query the set of store items marked as failed; @command{guix gc --clear-failures} removes store items from the set of cached failures. @xref{Invoking guix gc}." msgstr "当这个选项被使用时,可以用@command{guix gc --list-failures}查询被标记为失败的仓库文件;@command{guix gc --clear-failures}从仓库里删除失败的缓存。@xref{Invoking guix gc}。" #. type: item -#: guix-git/doc/guix.texi:1615 guix-git/doc/guix.texi:10968 +#: guix-git/doc/guix.texi:1632 guix-git/doc/guix.texi:11282 #, no-wrap msgid "--cores=@var{n}" msgstr "--cores=@var{n}" #. type: itemx -#: guix-git/doc/guix.texi:1616 guix-git/doc/guix.texi:10969 +#: guix-git/doc/guix.texi:1633 guix-git/doc/guix.texi:11283 #, no-wrap msgid "-c @var{n}" msgstr "-c @var{n}" #. type: table -#: guix-git/doc/guix.texi:1619 +#: guix-git/doc/guix.texi:1636 msgid "Use @var{n} CPU cores to build each derivation; @code{0} means as many as available." msgstr "用@var{n}个CPU核来构建每个derivation;@code{0}表示有多少就用多少。" #. type: table -#: guix-git/doc/guix.texi:1623 +#: guix-git/doc/guix.texi:1640 #, fuzzy msgid "The default value is @code{0}, but it may be overridden by clients, such as the @option{--cores} option of @command{guix build} (@pxref{Invoking guix build})." msgstr "默认值是@code{0},但是它的值可以被客户端覆盖,例如@command{guix build}的@code{--cores}选项(@pxref{Invoking guix build})。" #. type: table -#: guix-git/doc/guix.texi:1627 +#: guix-git/doc/guix.texi:1644 #, fuzzy msgid "The effect is to define the @env{NIX_BUILD_CORES} environment variable in the build process, which can then use it to exploit internal parallelism---for instance, by running @code{make -j$NIX_BUILD_CORES}." msgstr "他的作用是在构建进程里设置@code{NIX_BUILD_CORES}环境变量,从而用它来利用内部的并行机制--例如,通过运行@code{make -j$NIX_BUILD_CORES}。" #. type: item -#: guix-git/doc/guix.texi:1628 guix-git/doc/guix.texi:10973 +#: guix-git/doc/guix.texi:1645 guix-git/doc/guix.texi:11287 #, no-wrap msgid "--max-jobs=@var{n}" msgstr "--max-jobs=@var{n}" #. type: itemx -#: guix-git/doc/guix.texi:1629 guix-git/doc/guix.texi:10974 +#: guix-git/doc/guix.texi:1646 guix-git/doc/guix.texi:11288 #, no-wrap msgid "-M @var{n}" msgstr "-M @var{n}" #. type: table -#: guix-git/doc/guix.texi:1634 +#: guix-git/doc/guix.texi:1651 msgid "Allow at most @var{n} build jobs in parallel. The default value is @code{1}. Setting it to @code{0} means that no builds will be performed locally; instead, the daemon will offload builds (@pxref{Daemon Offload Setup}), or simply fail." msgstr "最多允许@var{n}个并行的构建任务。默认值是@code{1}。设置为@code{0}表示不在本地执行构建;而是下发构建任务(@pxref{Daemon Offload Setup}),或者直接失败。" #. type: item -#: guix-git/doc/guix.texi:1635 guix-git/doc/guix.texi:10943 +#: guix-git/doc/guix.texi:1652 guix-git/doc/guix.texi:11257 #, no-wrap msgid "--max-silent-time=@var{seconds}" msgstr "--max-silent-time=@var{seconds}" #. type: table -#: guix-git/doc/guix.texi:1638 guix-git/doc/guix.texi:10946 +#: guix-git/doc/guix.texi:1655 guix-git/doc/guix.texi:11260 msgid "When the build or substitution process remains silent for more than @var{seconds}, terminate it and report a build failure." msgstr "当构建或substitution进程超过@var{seconds}秒仍然保持静默,就把它结束掉并报告构建失败。" #. type: table -#: guix-git/doc/guix.texi:1640 guix-git/doc/guix.texi:1649 +#: guix-git/doc/guix.texi:1657 guix-git/doc/guix.texi:1666 msgid "The default value is @code{0}, which disables the timeout." msgstr "默认值是@code{0},表示关闭超时。" #. type: table -#: guix-git/doc/guix.texi:1643 +#: guix-git/doc/guix.texi:1660 #, fuzzy msgid "The value specified here can be overridden by clients (@pxref{Common Build Options, @option{--max-silent-time}})." msgstr "这里指定的值可以被客户端覆盖(@pxref{Common Build Options, @code{--max-silent-time}})。" #. type: item -#: guix-git/doc/guix.texi:1644 guix-git/doc/guix.texi:10950 +#: guix-git/doc/guix.texi:1661 guix-git/doc/guix.texi:11264 #, no-wrap msgid "--timeout=@var{seconds}" msgstr "--timeout=@var{seconds}" #. type: table -#: guix-git/doc/guix.texi:1647 guix-git/doc/guix.texi:10953 +#: guix-git/doc/guix.texi:1664 guix-git/doc/guix.texi:11267 msgid "Likewise, when the build or substitution process lasts for more than @var{seconds}, terminate it and report a build failure." msgstr "类似地,当构建或substitution进程执行超过@var{seconds}秒,就把它结束掉并报告构建失败。" #. type: table -#: guix-git/doc/guix.texi:1652 +#: guix-git/doc/guix.texi:1669 #, fuzzy msgid "The value specified here can be overridden by clients (@pxref{Common Build Options, @option{--timeout}})." msgstr "这里指定的值可以被客户端覆盖(@pxref{Common Build Options, @code{--timeout}})。" #. type: item -#: guix-git/doc/guix.texi:1653 +#: guix-git/doc/guix.texi:1670 #, no-wrap msgid "--rounds=@var{N}" msgstr "--rounds=@var{N}" #. type: table -#: guix-git/doc/guix.texi:1658 +#: guix-git/doc/guix.texi:1675 msgid "Build each derivation @var{n} times in a row, and raise an error if consecutive build results are not bit-for-bit identical. Note that this setting can be overridden by clients such as @command{guix build} (@pxref{Invoking guix build})." msgstr "为每个derivation构建@var{n}次,如果连续的构建结果不是每个比特都相同就报告错误。这个设置可以被@command{guix build}之类的客户端覆盖(@pxref{Invoking guix build})。" #. type: table -#: guix-git/doc/guix.texi:1662 guix-git/doc/guix.texi:10937 -#: guix-git/doc/guix.texi:11561 +#: guix-git/doc/guix.texi:1679 guix-git/doc/guix.texi:11251 +#: guix-git/doc/guix.texi:11875 msgid "When used in conjunction with @option{--keep-failed}, the differing output is kept in the store, under @file{/gnu/store/@dots{}-check}. This makes it easy to look for differences between the two results." msgstr "当和@option{--keep-failed}一起使用时,不同的输出保存在@file{/gnu/store/@dots{}-check}。这让检查两个结果的区别更容易。" #. type: item -#: guix-git/doc/guix.texi:1663 +#: guix-git/doc/guix.texi:1680 #, no-wrap msgid "--debug" msgstr "--debug" #. type: table -#: guix-git/doc/guix.texi:1665 +#: guix-git/doc/guix.texi:1682 msgid "Produce debugging output." msgstr "生成调试输出。" #. type: table -#: guix-git/doc/guix.texi:1669 +#: guix-git/doc/guix.texi:1686 #, fuzzy msgid "This is useful to debug daemon start-up issues, but then it may be overridden by clients, for example the @option{--verbosity} option of @command{guix build} (@pxref{Invoking guix build})." msgstr "这对调试后台进程的启动问题很有用,但是之后它可能会被客户端覆盖,例如@command{guix build}命令的@code{--verbosity}选项(@pxref{Invoking guix build})。" #. type: item -#: guix-git/doc/guix.texi:1670 +#: guix-git/doc/guix.texi:1687 #, no-wrap msgid "--chroot-directory=@var{dir}" msgstr "--chroot-directory=@var{dir}" #. type: table -#: guix-git/doc/guix.texi:1672 +#: guix-git/doc/guix.texi:1689 msgid "Add @var{dir} to the build chroot." msgstr "把@var{dir}添加到构建的chroot。" #. type: table -#: guix-git/doc/guix.texi:1678 +#: guix-git/doc/guix.texi:1695 msgid "Doing this may change the result of build processes---for instance if they use optional dependencies found in @var{dir} when it is available, and not otherwise. For that reason, it is not recommended to do so. Instead, make sure that each derivation declares all the inputs that it needs." msgstr "这么做可能会改变构建进程的结果--例如,如果它们使用了在@var{dir}里发现的可选依赖。因此,建议不要这么做,而是确保每个derivation声明所需的全部输入。" #. type: item -#: guix-git/doc/guix.texi:1679 +#: guix-git/doc/guix.texi:1696 #, no-wrap msgid "--disable-chroot" msgstr "--disable-chroot" #. type: table -#: guix-git/doc/guix.texi:1681 +#: guix-git/doc/guix.texi:1698 msgid "Disable chroot builds." msgstr "关闭chroot构建。" #. type: table -#: guix-git/doc/guix.texi:1686 +#: guix-git/doc/guix.texi:1703 msgid "Using this option is not recommended since, again, it would allow build processes to gain access to undeclared dependencies. It is necessary, though, when @command{guix-daemon} is running under an unprivileged user account." msgstr "不建议使用这个选项,因为它会允许构建进程访问到没被声明的依赖。但是,当@command{guix-daemon}以没有特权的用户身份运行时,这个选项是必须的。" #. type: item -#: guix-git/doc/guix.texi:1687 +#: guix-git/doc/guix.texi:1704 #, no-wrap msgid "--log-compression=@var{type}" msgstr "--log-compression=@var{type}" #. type: table -#: guix-git/doc/guix.texi:1690 +#: guix-git/doc/guix.texi:1707 msgid "Compress build logs according to @var{type}, one of @code{gzip}, @code{bzip2}, or @code{none}." msgstr "以@var{type}方式压缩构建日志,可选的值:@code{gzip},@code{bzip2},@code{none}。" #. type: table -#: guix-git/doc/guix.texi:1694 +#: guix-git/doc/guix.texi:1711 #, fuzzy -msgid "Unless @option{--lose-logs} is used, all the build logs are kept in the @var{localstatedir}. To save space, the daemon automatically compresses them with Bzip2 by default." +msgid "Unless @option{--lose-logs} is used, all the build logs are kept in the @var{localstatedir}. To save space, the daemon automatically compresses them with gzip by default." msgstr "除非使用了@code{--lose-logs},所有的构建日志都保存在@var{localstatedir}里。为了节省空间,后台进程默认使用bzip2对它们进行压缩。" #. type: item -#: guix-git/doc/guix.texi:1695 +#: guix-git/doc/guix.texi:1712 #, no-wrap msgid "--discover[=yes|no]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1698 guix-git/doc/guix.texi:16563 +#: guix-git/doc/guix.texi:1715 guix-git/doc/guix.texi:16920 msgid "Whether to discover substitute servers on the local network using mDNS and DNS-SD." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1701 +#: guix-git/doc/guix.texi:1718 msgid "This feature is still experimental. However, here are a few considerations." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1705 +#: guix-git/doc/guix.texi:1722 msgid "It might be faster/less expensive than fetching from remote servers;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1708 +#: guix-git/doc/guix.texi:1725 msgid "There are no security risks, only genuine substitutes will be used (@pxref{Substitute Authentication});" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1712 +#: guix-git/doc/guix.texi:1729 msgid "An attacker advertising @command{guix publish} on your LAN cannot serve you malicious binaries, but they can learn what software you’re installing;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1715 +#: guix-git/doc/guix.texi:1732 msgid "Servers may serve substitute over HTTP, unencrypted, so anyone on the LAN can see what software you’re installing." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1719 +#: guix-git/doc/guix.texi:1736 msgid "It is also possible to enable or disable substitute server discovery at run-time by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1723 +#: guix-git/doc/guix.texi:1740 #, no-wrap msgid "" "herd discover guix-daemon on\n" @@ -7073,242 +7154,242 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1725 +#: guix-git/doc/guix.texi:1742 #, no-wrap msgid "--disable-deduplication" msgstr "--disable-deduplication" #. type: cindex -#: guix-git/doc/guix.texi:1726 guix-git/doc/guix.texi:4326 +#: guix-git/doc/guix.texi:1743 guix-git/doc/guix.texi:4344 #, no-wrap msgid "deduplication" msgstr "去重" #. type: table -#: guix-git/doc/guix.texi:1728 +#: guix-git/doc/guix.texi:1745 msgid "Disable automatic file ``deduplication'' in the store." msgstr "关闭自动对仓库文件“去重”。" #. type: table -#: guix-git/doc/guix.texi:1735 +#: guix-git/doc/guix.texi:1752 msgid "By default, files added to the store are automatically ``deduplicated'': if a newly added file is identical to another one found in the store, the daemon makes the new file a hard link to the other file. This can noticeably reduce disk usage, at the expense of slightly increased input/output load at the end of a build process. This option disables this optimization." msgstr "默认地,添加到仓库的文件会被自动“去重”:如果新添加的文件和仓库里找到的某个文件完全相同,后台进程把这个新文件变成另一个文件的硬链接。这可以明显地减少硬盘使用,代价是构建结束后轻微地增加输入/输出负载。这个选项关闭这个优化。" #. type: item -#: guix-git/doc/guix.texi:1736 +#: guix-git/doc/guix.texi:1753 #, no-wrap msgid "--gc-keep-outputs[=yes|no]" msgstr "--gc-keep-outputs[=yes|no]" #. type: table -#: guix-git/doc/guix.texi:1739 +#: guix-git/doc/guix.texi:1756 msgid "Tell whether the garbage collector (GC) must keep outputs of live derivations." msgstr "垃圾收集器(GC)是否必须保留存活的derivation的输出。" #. type: cindex -#: guix-git/doc/guix.texi:1740 guix-git/doc/guix.texi:4139 +#: guix-git/doc/guix.texi:1757 guix-git/doc/guix.texi:4157 #, no-wrap msgid "GC roots" msgstr "GC根" #. type: cindex -#: guix-git/doc/guix.texi:1741 guix-git/doc/guix.texi:4140 +#: guix-git/doc/guix.texi:1758 guix-git/doc/guix.texi:4158 #, no-wrap msgid "garbage collector roots" msgstr "垃圾收集的根" #. type: table -#: guix-git/doc/guix.texi:1747 +#: guix-git/doc/guix.texi:1764 #, fuzzy msgid "When set to @code{yes}, the GC will keep the outputs of any live derivation available in the store---the @file{.drv} files. The default is @code{no}, meaning that derivation outputs are kept only if they are reachable from a GC root. @xref{Invoking guix gc}, for more on GC roots." msgstr "当设置为“yes”时,GC会保留仓库里每个存活的derivation(@code{.drv}文件)的输出。默认是“no”,表示只有当从GC根可以访问时才保留derivation的输出。@xref{Invoking guix gc},了解更多关于GC根的信息。" #. type: item -#: guix-git/doc/guix.texi:1748 +#: guix-git/doc/guix.texi:1765 #, no-wrap msgid "--gc-keep-derivations[=yes|no]" msgstr "--gc-keep-derivations[=yes|no]" #. type: table -#: guix-git/doc/guix.texi:1751 +#: guix-git/doc/guix.texi:1768 msgid "Tell whether the garbage collector (GC) must keep derivations corresponding to live outputs." msgstr "垃圾收集器(GC)是否必须保留和存活的输出相关的derivation。" #. type: table -#: guix-git/doc/guix.texi:1757 +#: guix-git/doc/guix.texi:1774 #, fuzzy msgid "When set to @code{yes}, as is the case by default, the GC keeps derivations---i.e., @file{.drv} files---as long as at least one of their outputs is live. This allows users to keep track of the origins of items in their store. Setting it to @code{no} saves a bit of disk space." msgstr "当设置为“yes”时(默认),只要derivation(即@code{.drv}文件)的输出至少有一个是存活的,GC就将其保留。这让用户可以追踪仓库里物品的源头。设置为“no”可以节省一点硬盘空间。" #. type: table -#: guix-git/doc/guix.texi:1766 +#: guix-git/doc/guix.texi:1783 #, fuzzy msgid "In this way, setting @option{--gc-keep-derivations} to @code{yes} causes liveness to flow from outputs to derivations, and setting @option{--gc-keep-outputs} to @code{yes} causes liveness to flow from derivations to outputs. When both are set to @code{yes}, the effect is to keep all the build prerequisites (the sources, compiler, libraries, and other build-time tools) of live objects in the store, regardless of whether these prerequisites are reachable from a GC root. This is convenient for developers since it saves rebuilds or downloads." msgstr "这样,设置@code{--gc-keep-derivations}为“yes”使存活性从“输出”传递到“derivation”,设置@code{--gc-keep-outputs}为“yes”使存活性从“derivation”传递到“输出”。当两者都设置为“yes”时,效果是保留所有在仓库里的存活对象的构建先决条件(源代码,编译器,库,和其它构建时的工具),不管这些先决条件是否能从某个GC根访问到。这对开发者来说很方便,因为它避免了重复构建和下载。" #. type: item -#: guix-git/doc/guix.texi:1767 +#: guix-git/doc/guix.texi:1784 #, no-wrap msgid "--impersonate-linux-2.6" msgstr "--impersonate-linux-2.6" #. type: table -#: guix-git/doc/guix.texi:1770 +#: guix-git/doc/guix.texi:1787 #, fuzzy msgid "On Linux-based systems, impersonate Linux 2.6. This means that the kernel's @command{uname} system call will report 2.6 as the release number." msgstr "在基于Linux的系统上,伪装成Linux 2.6。这意味着内核的@code{uname}系统调用会把版本号报告为2.6。" #. type: table -#: guix-git/doc/guix.texi:1773 +#: guix-git/doc/guix.texi:1790 msgid "This might be helpful to build programs that (usually wrongfully) depend on the kernel version number." msgstr "这可能会有助于构建那些(通常是错误地)依赖内核版本号的程序。" #. type: item -#: guix-git/doc/guix.texi:1774 +#: guix-git/doc/guix.texi:1791 #, no-wrap msgid "--lose-logs" msgstr "--lose-logs" #. type: table -#: guix-git/doc/guix.texi:1777 +#: guix-git/doc/guix.texi:1794 #, fuzzy msgid "Do not keep build logs. By default they are kept under @file{@var{localstatedir}/guix/log}." msgstr "不保留构建日志。默认保存在@code{@var{localstatedir}/guix/log}。" #. type: item -#: guix-git/doc/guix.texi:1778 guix-git/doc/guix.texi:4567 -#: guix-git/doc/guix.texi:5846 guix-git/doc/guix.texi:6229 -#: guix-git/doc/guix.texi:6629 guix-git/doc/guix.texi:11505 -#: guix-git/doc/guix.texi:13187 guix-git/doc/guix.texi:13452 -#: guix-git/doc/guix.texi:14129 guix-git/doc/guix.texi:34442 -#: guix-git/doc/guix.texi:35251 +#: guix-git/doc/guix.texi:1795 guix-git/doc/guix.texi:4585 +#: guix-git/doc/guix.texi:5859 guix-git/doc/guix.texi:6272 +#: guix-git/doc/guix.texi:6672 guix-git/doc/guix.texi:11819 +#: guix-git/doc/guix.texi:13544 guix-git/doc/guix.texi:13809 +#: guix-git/doc/guix.texi:14486 guix-git/doc/guix.texi:34881 +#: guix-git/doc/guix.texi:35695 #, no-wrap msgid "--system=@var{system}" msgstr "--system=@var{system}" #. type: table -#: guix-git/doc/guix.texi:1782 +#: guix-git/doc/guix.texi:1799 msgid "Assume @var{system} as the current system type. By default it is the architecture/kernel pair found at configure time, such as @code{x86_64-linux}." msgstr "假设@var{system}是当前的系统类型。默认值是configure时发现的架构/内核元组,如@code{x86_64-linux}。" #. type: item -#: guix-git/doc/guix.texi:1783 guix-git/doc/guix.texi:10747 +#: guix-git/doc/guix.texi:1800 guix-git/doc/guix.texi:11061 #, no-wrap msgid "--listen=@var{endpoint}" msgstr "--listen=@var{endpoint}" #. type: table -#: guix-git/doc/guix.texi:1788 +#: guix-git/doc/guix.texi:1805 msgid "Listen for connections on @var{endpoint}. @var{endpoint} is interpreted as the file name of a Unix-domain socket if it starts with @code{/} (slash sign). Otherwise, @var{endpoint} is interpreted as a host name or host name and port to listen to. Here are a few examples:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:1790 +#: guix-git/doc/guix.texi:1807 #, no-wrap msgid "--listen=/gnu/var/daemon" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1793 +#: guix-git/doc/guix.texi:1810 msgid "Listen for connections on the @file{/gnu/var/daemon} Unix-domain socket, creating it if needed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1794 +#: guix-git/doc/guix.texi:1811 #, no-wrap msgid "--listen=localhost" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1795 guix-git/doc/guix.texi:9421 +#: guix-git/doc/guix.texi:1812 guix-git/doc/guix.texi:9735 #, no-wrap msgid "daemon, remote access" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1796 guix-git/doc/guix.texi:9422 +#: guix-git/doc/guix.texi:1813 guix-git/doc/guix.texi:9736 #, no-wrap msgid "remote access to the daemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1797 guix-git/doc/guix.texi:9423 +#: guix-git/doc/guix.texi:1814 guix-git/doc/guix.texi:9737 #, no-wrap msgid "daemon, cluster setup" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1798 guix-git/doc/guix.texi:9424 +#: guix-git/doc/guix.texi:1815 guix-git/doc/guix.texi:9738 #, no-wrap msgid "clusters, daemon setup" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1801 +#: guix-git/doc/guix.texi:1818 msgid "Listen for TCP connections on the network interface corresponding to @code{localhost}, on port 44146." msgstr "" #. type: item -#: guix-git/doc/guix.texi:1802 +#: guix-git/doc/guix.texi:1819 #, no-wrap msgid "--listen=128.0.0.42:1234" msgstr "" #. type: table -#: guix-git/doc/guix.texi:1805 +#: guix-git/doc/guix.texi:1822 msgid "Listen for TCP connections on the network interface corresponding to @code{128.0.0.42}, on port 1234." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1812 +#: guix-git/doc/guix.texi:1829 msgid "This option can be repeated multiple times, in which case @command{guix-daemon} accepts connections on all the specified endpoints. Users can tell client commands what endpoint to connect to by setting the @env{GUIX_DAEMON_SOCKET} environment variable (@pxref{The Store, @env{GUIX_DAEMON_SOCKET}})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:1819 +#: guix-git/doc/guix.texi:1836 msgid "The daemon protocol is @emph{unauthenticated and unencrypted}. Using @option{--listen=@var{host}} is suitable on local networks, such as clusters, where only trusted nodes may connect to the build daemon. In other cases where remote access to the daemon is needed, we recommend using Unix-domain sockets along with SSH." msgstr "" #. type: table -#: guix-git/doc/guix.texi:1824 +#: guix-git/doc/guix.texi:1841 msgid "When @option{--listen} is omitted, @command{guix-daemon} listens for connections on the Unix-domain socket located at @file{@var{localstatedir}/guix/daemon-socket/socket}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1834 +#: guix-git/doc/guix.texi:1851 msgid "When using Guix on top of GNU/Linux distribution other than Guix System---a so-called @dfn{foreign distro}---a few additional steps are needed to get everything in place. Here are some of them." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:1838 +#: guix-git/doc/guix.texi:1855 msgid "locales-and-locpath" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1838 +#: guix-git/doc/guix.texi:1855 #, no-wrap msgid "locales, when not on Guix System" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:1839 guix-git/doc/guix.texi:15770 +#: guix-git/doc/guix.texi:1856 guix-git/doc/guix.texi:16127 #, no-wrap msgid "LOCPATH" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:1840 +#: guix-git/doc/guix.texi:1857 #, no-wrap msgid "GUIX_LOCPATH" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1845 +#: guix-git/doc/guix.texi:1862 msgid "Packages installed @i{via} Guix will not use the locale data of the host system. Instead, you must first install one of the locale packages available with Guix and then define the @env{GUIX_LOCPATH} environment variable:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1849 +#: guix-git/doc/guix.texi:1866 #, no-wrap msgid "" "$ guix install glibc-locales\n" @@ -7316,132 +7397,132 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1855 +#: guix-git/doc/guix.texi:1872 msgid "Note that the @code{glibc-locales} package contains data for all the locales supported by the GNU@tie{}libc and weighs in at around 917@tie{}MiB@. Alternatively, the @code{glibc-utf8-locales} is smaller but limited to a few UTF-8 locales." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1859 +#: guix-git/doc/guix.texi:1876 msgid "The @env{GUIX_LOCPATH} variable plays a role similar to @env{LOCPATH} (@pxref{Locale Names, @env{LOCPATH},, libc, The GNU C Library Reference Manual}). There are two important differences though:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1866 +#: guix-git/doc/guix.texi:1883 msgid "@env{GUIX_LOCPATH} is honored only by the libc in Guix, and not by the libc provided by foreign distros. Thus, using @env{GUIX_LOCPATH} allows you to make sure the programs of the foreign distro will not end up loading incompatible locale data." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:1873 +#: guix-git/doc/guix.texi:1890 msgid "libc suffixes each entry of @env{GUIX_LOCPATH} with @code{/X.Y}, where @code{X.Y} is the libc version---e.g., @code{2.22}. This means that, should your Guix profile contain a mixture of programs linked against different libc version, each libc version will only try to load locale data in the right format." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1877 +#: guix-git/doc/guix.texi:1894 msgid "This is important because the locale data format used by different libc versions may be incompatible." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1880 +#: guix-git/doc/guix.texi:1897 #, no-wrap msgid "name service switch, glibc" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1881 +#: guix-git/doc/guix.texi:1898 #, no-wrap msgid "NSS (name service switch), glibc" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1882 +#: guix-git/doc/guix.texi:1899 #, no-wrap msgid "nscd (name service caching daemon)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1883 +#: guix-git/doc/guix.texi:1900 #, no-wrap msgid "name service caching daemon (nscd)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1890 +#: guix-git/doc/guix.texi:1907 msgid "When using Guix on a foreign distro, we @emph{strongly recommend} that the system run the GNU C library's @dfn{name service cache daemon}, @command{nscd}, which should be listening on the @file{/var/run/nscd/socket} socket. Failing to do that, applications installed with Guix may fail to look up host names or user accounts, or may even crash. The next paragraphs explain why." msgstr "" #. type: file{#1} -#: guix-git/doc/guix.texi:1891 +#: guix-git/doc/guix.texi:1908 #, no-wrap msgid "nsswitch.conf" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1896 +#: guix-git/doc/guix.texi:1913 msgid "The GNU C library implements a @dfn{name service switch} (NSS), which is an extensible mechanism for ``name lookups'' in general: host name resolution, user accounts, and more (@pxref{Name Service Switch,,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1897 +#: guix-git/doc/guix.texi:1914 #, no-wrap msgid "Network information service (NIS)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1898 +#: guix-git/doc/guix.texi:1915 #, no-wrap msgid "NIS (Network information service)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1907 +#: guix-git/doc/guix.texi:1924 msgid "Being extensible, the NSS supports @dfn{plugins}, which provide new name lookup implementations: for example, the @code{nss-mdns} plugin allow resolution of @code{.local} host names, the @code{nis} plugin allows user account lookup using the Network information service (NIS), and so on. These extra ``lookup services'' are configured system-wide in @file{/etc/nsswitch.conf}, and all the programs running on the system honor those settings (@pxref{NSS Configuration File,,, libc, The GNU C Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1917 +#: guix-git/doc/guix.texi:1934 msgid "When they perform a name lookup---for instance by calling the @code{getaddrinfo} function in C---applications first try to connect to the nscd; on success, nscd performs name lookups on their behalf. If the nscd is not running, then they perform the name lookup by themselves, by loading the name lookup services into their own address space and running it. These name lookup services---the @file{libnss_*.so} files---are @code{dlopen}'d, but they may come from the host system's C library, rather than from the C library the application is linked against (the C library coming from Guix)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1922 +#: guix-git/doc/guix.texi:1939 msgid "And this is where the problem is: if your application is linked against Guix's C library (say, glibc 2.24) and tries to load NSS plugins from another C library (say, @code{libnss_mdns.so} for glibc 2.22), it will likely crash or have its name lookups fail unexpectedly." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1927 +#: guix-git/doc/guix.texi:1944 msgid "Running @command{nscd} on the system, among other advantages, eliminates this binary incompatibility problem because those @code{libnss_*.so} files are loaded in the @command{nscd} process, not in applications themselves." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:1928 +#: guix-git/doc/guix.texi:1945 #, no-wrap msgid "X11 Fonts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1938 +#: guix-git/doc/guix.texi:1955 msgid "The majority of graphical applications use Fontconfig to locate and load fonts and perform X11-client-side rendering. The @code{fontconfig} package in Guix looks for fonts in @file{$HOME/.guix-profile} by default. Thus, to allow graphical applications installed with Guix to display fonts, you have to install fonts with Guix as well. Essential font packages include @code{font-ghostscript}, @code{font-dejavu}, and @code{font-gnu-freefont}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1939 +#: guix-git/doc/guix.texi:1956 #, no-wrap msgid "fc-cache" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:1940 +#: guix-git/doc/guix.texi:1957 #, no-wrap msgid "font cache" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1944 +#: guix-git/doc/guix.texi:1961 msgid "Once you have installed or removed fonts, or when you notice an application that does not find fonts, you may need to install Fontconfig and to force an update of its font cache by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1948 +#: guix-git/doc/guix.texi:1965 #, no-wrap msgid "" "guix install fontconfig\n" @@ -7449,267 +7530,267 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1956 +#: guix-git/doc/guix.texi:1973 msgid "To display text written in Chinese languages, Japanese, or Korean in graphical applications, consider installing @code{font-adobe-source-han-sans} or @code{font-wqy-zenhei}. The former has multiple outputs, one per language family (@pxref{Packages with Multiple Outputs}). For instance, the following command installs fonts for Chinese languages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1959 +#: guix-git/doc/guix.texi:1976 #, no-wrap msgid "guix install font-adobe-source-han-sans:cn\n" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1961 +#: guix-git/doc/guix.texi:1978 #, no-wrap msgid "xterm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1965 +#: guix-git/doc/guix.texi:1982 msgid "Older programs such as @command{xterm} do not use Fontconfig and instead rely on server-side font rendering. Such programs require to specify a full name of a font using XLFD (X Logical Font Description), like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1968 +#: guix-git/doc/guix.texi:1985 #, no-wrap msgid "-*-dejavu sans-medium-r-normal-*-*-100-*-*-*-*-*-1\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1972 +#: guix-git/doc/guix.texi:1989 msgid "To be able to use such full names for the TrueType fonts installed in your Guix profile, you need to extend the font path of the X server:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:1977 +#: guix-git/doc/guix.texi:1994 #, no-wrap msgid "xset +fp $(dirname $(readlink -f ~/.guix-profile/share/fonts/truetype/fonts.dir))\n" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1979 +#: guix-git/doc/guix.texi:1996 #, no-wrap msgid "xlsfonts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1982 +#: guix-git/doc/guix.texi:1999 msgid "After that, you can run @code{xlsfonts} (from @code{xlsfonts} package) to make sure your TrueType fonts are listed there." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1986 guix-git/doc/guix.texi:34161 +#: guix-git/doc/guix.texi:2003 guix-git/doc/guix.texi:34600 #, no-wrap msgid "nss-certs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1989 +#: guix-git/doc/guix.texi:2006 msgid "The @code{nss-certs} package provides X.509 certificates, which allow programs to authenticate Web servers accessed over HTTPS." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:1994 +#: guix-git/doc/guix.texi:2011 msgid "When using Guix on a foreign distro, you can install this package and define the relevant environment variables so that packages know where to look for certificates. @xref{X.509 Certificates}, for detailed information." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:1997 +#: guix-git/doc/guix.texi:2014 #, no-wrap msgid "emacs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2003 +#: guix-git/doc/guix.texi:2020 msgid "When you install Emacs packages with Guix, the Elisp files are placed under the @file{share/emacs/site-lisp/} directory of the profile in which they are installed. The Elisp libraries are made available to Emacs through the @env{EMACSLOADPATH} environment variable, which is set when installing Emacs itself." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2010 +#: guix-git/doc/guix.texi:2027 msgid "Additionally, autoload definitions are automatically evaluated at the initialization of Emacs, by the Guix-specific @code{guix-emacs-autoload-packages} procedure. If, for some reason, you want to avoid auto-loading the Emacs packages installed with Guix, you can do so by running Emacs with the @option{--no-site-file} option (@pxref{Init File,,, emacs, The GNU Emacs Manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2015 +#: guix-git/doc/guix.texi:2032 #, no-wrap msgid "Upgrading Guix, on a foreign distro" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2018 +#: guix-git/doc/guix.texi:2035 msgid "To upgrade Guix, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2021 guix-git/doc/guix.texi:2879 +#: guix-git/doc/guix.texi:2038 guix-git/doc/guix.texi:2896 #, no-wrap msgid "guix pull\n" msgstr "guix pull\n" #. type: Plain text -#: guix-git/doc/guix.texi:2024 +#: guix-git/doc/guix.texi:2041 #, fuzzy msgid "@xref{Invoking guix pull}, for more information." msgstr "@xref{Invoking guix pack},了解这个方便的工具。" #. type: cindex -#: guix-git/doc/guix.texi:2025 +#: guix-git/doc/guix.texi:2042 #, no-wrap msgid "upgrading Guix for the root user, on a foreign distro" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2026 +#: guix-git/doc/guix.texi:2043 #, no-wrap msgid "upgrading the Guix daemon, on a foreign distro" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2027 +#: guix-git/doc/guix.texi:2044 #, no-wrap msgid "@command{guix pull} for the root user, on a foreign distro" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2030 +#: guix-git/doc/guix.texi:2047 msgid "On a foreign distro, you can upgrade the build daemon by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2033 +#: guix-git/doc/guix.texi:2050 #, no-wrap msgid "sudo -i guix pull\n" msgstr "sudo -i guix pull\n" #. type: Plain text -#: guix-git/doc/guix.texi:2038 +#: guix-git/doc/guix.texi:2055 msgid "followed by (assuming your distro uses the systemd service management tool):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2041 +#: guix-git/doc/guix.texi:2058 #, fuzzy, no-wrap msgid "systemctl restart guix-daemon.service\n" msgstr "semodule -i etc/guix-daemon.cil\n" #. type: Plain text -#: guix-git/doc/guix.texi:2045 +#: guix-git/doc/guix.texi:2062 msgid "On Guix System, upgrading the daemon is achieved by reconfiguring the system (@pxref{Invoking guix system, @code{guix system reconfigure}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2052 +#: guix-git/doc/guix.texi:2069 #, no-wrap msgid "installing Guix System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2053 +#: guix-git/doc/guix.texi:2070 #, no-wrap msgid "Guix System, installation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2058 +#: guix-git/doc/guix.texi:2075 msgid "This section explains how to install Guix System on a machine. Guix, as a package manager, can also be installed on top of a running GNU/Linux system, @pxref{Installation}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2067 +#: guix-git/doc/guix.texi:2084 msgid "You are reading this documentation with an Info reader. For details on how to use it, hit the @key{RET} key (``return'' or ``enter'') on the link that follows: @pxref{Top, Info reader,, info-stnd, Stand-alone GNU Info}. Hit @kbd{l} afterwards to come back here." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2070 +#: guix-git/doc/guix.texi:2087 msgid "Alternatively, run @command{info info} in another tty to keep the manual available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2091 +#: guix-git/doc/guix.texi:2108 msgid "We consider Guix System to be ready for a wide range of ``desktop'' and server use cases. The reliability guarantees it provides---transactional upgrades and rollbacks, reproducibility---make it a solid foundation." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2094 +#: guix-git/doc/guix.texi:2111 msgid "Nevertheless, before you proceed with the installation, be aware of the following noteworthy limitations applicable to version @value{VERSION}:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2099 +#: guix-git/doc/guix.texi:2116 msgid "More and more system services are provided (@pxref{Services}), but some may be missing." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2104 +#: guix-git/doc/guix.texi:2121 msgid "GNOME, Xfce, LXDE, and Enlightenment are available (@pxref{Desktop Services}), as well as a number of X11 window managers. However, KDE is currently missing." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2109 +#: guix-git/doc/guix.texi:2126 msgid "More than a disclaimer, this is an invitation to report issues (and success stories!), and to join us in improving it. @xref{Contributing}, for more info." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2114 +#: guix-git/doc/guix.texi:2131 #, no-wrap msgid "hardware support on Guix System" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2123 +#: guix-git/doc/guix.texi:2140 msgid "GNU@tie{}Guix focuses on respecting the user's computing freedom. It builds around the kernel Linux-libre, which means that only hardware for which free software drivers and firmware exist is supported. Nowadays, a wide range of off-the-shelf hardware is supported on GNU/Linux-libre---from keyboards to graphics cards to scanners and Ethernet controllers. Unfortunately, there are still areas where hardware vendors deny users control over their own computing, and such hardware is not supported on Guix System." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2124 +#: guix-git/doc/guix.texi:2141 #, no-wrap msgid "WiFi, hardware support" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2133 +#: guix-git/doc/guix.texi:2150 msgid "One of the main areas where free drivers or firmware are lacking is WiFi devices. WiFi devices known to work include those using Atheros chips (AR9271 and AR7010), which corresponds to the @code{ath9k} Linux-libre driver, and those using Broadcom/AirForce chips (BCM43xx with Wireless-Core Revision 5), which corresponds to the @code{b43-open} Linux-libre driver. Free firmware exists for both and is available out-of-the-box on Guix System, as part of @code{%base-firmware} (@pxref{operating-system Reference, @code{firmware}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2134 +#: guix-git/doc/guix.texi:2151 #, no-wrap msgid "RYF, Respects Your Freedom" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2140 +#: guix-git/doc/guix.texi:2157 msgid "The @uref{https://www.fsf.org/, Free Software Foundation} runs @uref{https://www.fsf.org/ryf, @dfn{Respects Your Freedom}} (RYF), a certification program for hardware products that respect your freedom and your privacy and ensure that you have control over your device. We encourage you to check the list of RYF-certified devices." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2144 +#: guix-git/doc/guix.texi:2161 msgid "Another useful resource is the @uref{https://www.h-node.org/, H-Node} web site. It contains a catalog of hardware devices with information about their support in GNU/Linux." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2153 +#: guix-git/doc/guix.texi:2170 msgid "An ISO-9660 installation image that can be written to a USB stick or burnt to a DVD can be downloaded from @indicateurl{@value{BASE-URL}/guix-system-install-@value{VERSION}.x86_64-linux.iso}, where you can replace @code{x86_64-linux} with one of:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2157 +#: guix-git/doc/guix.texi:2174 msgid "for a GNU/Linux system on Intel/AMD-compatible 64-bit CPUs;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2160 +#: guix-git/doc/guix.texi:2177 msgid "for a 32-bit GNU/Linux system on Intel-compatible CPUs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2165 +#: guix-git/doc/guix.texi:2182 msgid "Make sure to download the associated @file{.sig} file and to verify the authenticity of the image against it, along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2169 +#: guix-git/doc/guix.texi:2186 #, no-wrap msgid "" "$ wget @value{BASE-URL}/guix-system-install-@value{VERSION}.x86_64-linux.iso.sig\n" @@ -7719,7 +7800,7 @@ msgstr "" "$ gpg --verify guix-system-install-@value{VERSION}.@var{系统}.iso.sig\n" #. type: example -#: guix-git/doc/guix.texi:2177 +#: guix-git/doc/guix.texi:2194 #, no-wrap msgid "" "$ wget @value{OPENPGP-SIGNING-KEY-URL} \\\n" @@ -7727,23 +7808,23 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2189 +#: guix-git/doc/guix.texi:2206 msgid "This image contains the tools necessary for an installation. It is meant to be copied @emph{as is} to a large-enough USB stick or DVD." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2190 +#: guix-git/doc/guix.texi:2207 #, no-wrap msgid "Copying to a USB Stick" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2195 +#: guix-git/doc/guix.texi:2212 msgid "Insert a USB stick of 1@tie{}GiB or more into your machine, and determine its device name. Assuming that the USB stick is known as @file{/dev/sdX}, copy the image with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2199 +#: guix-git/doc/guix.texi:2216 #, no-wrap msgid "" "dd if=guix-system-install-@value{VERSION}.x86_64-linux.iso of=/dev/sdX status=progress\n" @@ -7751,238 +7832,238 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2202 +#: guix-git/doc/guix.texi:2219 msgid "Access to @file{/dev/sdX} usually requires root privileges." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2203 +#: guix-git/doc/guix.texi:2220 #, no-wrap msgid "Burning on a DVD" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2208 +#: guix-git/doc/guix.texi:2225 msgid "Insert a blank DVD into your machine, and determine its device name. Assuming that the DVD drive is known as @file{/dev/srX}, copy the image with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2211 +#: guix-git/doc/guix.texi:2228 #, no-wrap msgid "growisofs -dvd-compat -Z /dev/srX=guix-system-install-@value{VERSION}.x86_64-linux.iso\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2214 +#: guix-git/doc/guix.texi:2231 msgid "Access to @file{/dev/srX} usually requires root privileges." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:2215 +#: guix-git/doc/guix.texi:2232 #, no-wrap msgid "Booting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2222 +#: guix-git/doc/guix.texi:2239 msgid "Once this is done, you should be able to reboot the system and boot from the USB stick or DVD@. The latter usually requires you to get in the BIOS or UEFI boot menu, where you can choose to boot from the USB stick. In order to boot from Libreboot, switch to the command mode by pressing the @kbd{c} key and type @command{search_grub usb}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2225 +#: guix-git/doc/guix.texi:2242 msgid "@xref{Installing Guix in a VM}, if, instead, you would like to install Guix System in a virtual machine (VM)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2235 +#: guix-git/doc/guix.texi:2252 msgid "Once you have booted, you can use the guided graphical installer, which makes it easy to get started (@pxref{Guided Graphical Installation}). Alternatively, if you are already familiar with GNU/Linux and if you want more control than what the graphical installer provides, you can choose the ``manual'' installation process (@pxref{Manual Installation})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2243 +#: guix-git/doc/guix.texi:2260 msgid "The graphical installer is available on TTY1. You can obtain root shells on TTYs 3 to 6 by hitting @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4}, etc. TTY2 shows this documentation and you can reach it with @kbd{ctrl-alt-f2}. Documentation is browsable using the Info reader commands (@pxref{Top,,, info-stnd, Stand-alone GNU Info}). The installation system runs the GPM mouse daemon, which allows you to select text with the left mouse button and to paste it with the middle button." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2248 +#: guix-git/doc/guix.texi:2265 msgid "Installation requires access to the Internet so that any missing dependencies of your system configuration can be downloaded. See the ``Networking'' section below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2255 +#: guix-git/doc/guix.texi:2272 msgid "The graphical installer is a text-based user interface. It will guide you, with dialog boxes, through the steps needed to install GNU@tie{}Guix System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2260 +#: guix-git/doc/guix.texi:2277 msgid "The first dialog boxes allow you to set up the system as you use it during the installation: you can choose the language, keyboard layout, and set up networking, which will be used during the installation. The image below shows the networking dialog." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2262 +#: guix-git/doc/guix.texi:2279 msgid "@image{images/installer-network,5in,, networking setup with the graphical installer}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2267 +#: guix-git/doc/guix.texi:2284 msgid "Later steps allow you to partition your hard disk, as shown in the image below, to choose whether or not to use encrypted file systems, to enter the host name and root password, and to create an additional account, among other things." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2269 +#: guix-git/doc/guix.texi:2286 msgid "@image{images/installer-partitions,5in,, partitioning with the graphical installer}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2272 +#: guix-git/doc/guix.texi:2289 msgid "Note that, at any time, the installer allows you to exit the current installation step and resume at a previous step, as show in the image below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2274 +#: guix-git/doc/guix.texi:2291 msgid "@image{images/installer-resume,5in,, resuming the installation process}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2279 +#: guix-git/doc/guix.texi:2296 msgid "Once you're done, the installer produces an operating system configuration and displays it (@pxref{Using the Configuration System}). At that point you can hit ``OK'' and installation will proceed. On success, you can reboot into the new system and enjoy. @xref{After System Installation}, for what's next!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2289 +#: guix-git/doc/guix.texi:2306 msgid "This section describes how you would ``manually'' install GNU@tie{}Guix System on your machine. This option requires familiarity with GNU/Linux, with the shell, and with common administration tools. If you think this is not for you, consider using the guided graphical installer (@pxref{Guided Graphical Installation})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2295 +#: guix-git/doc/guix.texi:2312 msgid "The installation system provides root shells on TTYs 3 to 6; press @kbd{ctrl-alt-f3}, @kbd{ctrl-alt-f4}, and so on to reach them. It includes many common tools needed to install the system. But it is also a full-blown Guix System, which means that you can install additional packages, should you need it, using @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:2302 +#: guix-git/doc/guix.texi:2319 #, no-wrap msgid "Keyboard Layout, Networking, and Partitioning" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2307 +#: guix-git/doc/guix.texi:2324 msgid "Before you can install the system, you may want to adjust the keyboard layout, set up networking, and partition your target hard disk. This section will guide you through this." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2310 guix-git/doc/guix.texi:15584 +#: guix-git/doc/guix.texi:2327 guix-git/doc/guix.texi:15941 #, no-wrap msgid "keyboard layout" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2314 +#: guix-git/doc/guix.texi:2331 msgid "The installation image uses the US qwerty keyboard layout. If you want to change it, you can use the @command{loadkeys} command. For example, the following command selects the Dvorak keyboard layout:" msgstr "安装镜像使用的是美国的 qwerty 键盘布局,如果想更改,可以使用 @command{loadkeys} 命令。 例如,用以下命令选择 Dvorak 键盘布局:" #. type: example -#: guix-git/doc/guix.texi:2317 +#: guix-git/doc/guix.texi:2334 #, no-wrap msgid "loadkeys dvorak\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2322 +#: guix-git/doc/guix.texi:2339 msgid "See the files under @file{/run/current-system/profile/share/keymaps} for a list of available keyboard layouts. Run @command{man loadkeys} for more information." msgstr "" #. type: subsubsection -#: guix-git/doc/guix.texi:2323 +#: guix-git/doc/guix.texi:2340 #, no-wrap msgid "Networking" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2326 +#: guix-git/doc/guix.texi:2343 msgid "Run the following command to see what your network interfaces are called:" msgstr "运行以下命令查看你的网络接口的名称:" #. type: example -#: guix-git/doc/guix.texi:2329 +#: guix-git/doc/guix.texi:2346 #, no-wrap msgid "ifconfig -a\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2333 guix-git/doc/guix.texi:2355 +#: guix-git/doc/guix.texi:2350 guix-git/doc/guix.texi:2372 msgid "@dots{} or, using the GNU/Linux-specific @command{ip} command:" msgstr "@dots{} 或者,使用 GNU/Linux 特有的 @command{ip} 命令:" #. type: example -#: guix-git/doc/guix.texi:2336 +#: guix-git/doc/guix.texi:2353 #, no-wrap msgid "ip address\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2343 +#: guix-git/doc/guix.texi:2360 msgid "Wired interfaces have a name starting with @samp{e}; for example, the interface corresponding to the first on-board Ethernet controller is called @samp{eno1}. Wireless interfaces have a name starting with @samp{w}, like @samp{w1p2s0}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:2345 +#: guix-git/doc/guix.texi:2362 #, no-wrap msgid "Wired connection" msgstr "有线连接" #. type: table -#: guix-git/doc/guix.texi:2348 +#: guix-git/doc/guix.texi:2365 msgid "To configure a wired network run the following command, substituting @var{interface} with the name of the wired interface you want to use." msgstr "" #. type: example -#: guix-git/doc/guix.texi:2351 +#: guix-git/doc/guix.texi:2368 #, no-wrap msgid "ifconfig @var{interface} up\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2358 +#: guix-git/doc/guix.texi:2375 #, no-wrap msgid "ip link set @var{interface} up\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:2360 +#: guix-git/doc/guix.texi:2377 #, no-wrap msgid "Wireless connection" msgstr "无线连接" #. type: cindex -#: guix-git/doc/guix.texi:2361 guix-git/doc/guix.texi:17484 +#: guix-git/doc/guix.texi:2378 guix-git/doc/guix.texi:17846 #, no-wrap msgid "wireless" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2362 guix-git/doc/guix.texi:17485 +#: guix-git/doc/guix.texi:2379 guix-git/doc/guix.texi:17847 #, no-wrap msgid "WiFi" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2367 +#: guix-git/doc/guix.texi:2384 msgid "To configure wireless networking, you can create a configuration file for the @command{wpa_supplicant} configuration tool (its location is not important) using one of the available text editors such as @command{nano}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2370 +#: guix-git/doc/guix.texi:2387 #, no-wrap msgid "nano wpa_supplicant.conf\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2375 +#: guix-git/doc/guix.texi:2392 msgid "As an example, the following stanza can go to this file and will work for many wireless networks, provided you give the actual SSID and passphrase for the network you are connecting to:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2382 +#: guix-git/doc/guix.texi:2399 #, no-wrap msgid "" "network=@{\n" @@ -7993,229 +8074,229 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2387 +#: guix-git/doc/guix.texi:2404 msgid "Start the wireless service and run it in the background with the following command (substitute @var{interface} with the name of the network interface you want to use):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2390 +#: guix-git/doc/guix.texi:2407 #, no-wrap msgid "wpa_supplicant -c wpa_supplicant.conf -i @var{interface} -B\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:2393 +#: guix-git/doc/guix.texi:2410 msgid "Run @command{man wpa_supplicant} for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2395 +#: guix-git/doc/guix.texi:2412 #, no-wrap msgid "DHCP" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2398 +#: guix-git/doc/guix.texi:2415 msgid "At this point, you need to acquire an IP address. On a network where IP addresses are automatically assigned @i{via} DHCP, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2401 +#: guix-git/doc/guix.texi:2418 #, no-wrap msgid "dhclient -v @var{interface}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2404 +#: guix-git/doc/guix.texi:2421 msgid "Try to ping a server to see if networking is up and running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2407 +#: guix-git/doc/guix.texi:2424 #, no-wrap msgid "ping -c 3 gnu.org\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2411 +#: guix-git/doc/guix.texi:2428 msgid "Setting up network access is almost always a requirement because the image does not contain all the software and tools that may be needed." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2412 +#: guix-git/doc/guix.texi:2429 #, fuzzy, no-wrap msgid "proxy, during system installation" msgstr "系统安装之后" #. type: Plain text -#: guix-git/doc/guix.texi:2415 +#: guix-git/doc/guix.texi:2432 msgid "If you need HTTP and HTTPS access to go through a proxy, run the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2418 +#: guix-git/doc/guix.texi:2435 #, no-wrap msgid "herd set-http-proxy guix-daemon @var{URL}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2423 +#: guix-git/doc/guix.texi:2440 msgid "where @var{URL} is the proxy URL, for example @code{http://example.org:8118}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2424 +#: guix-git/doc/guix.texi:2441 #, no-wrap msgid "installing over SSH" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2427 +#: guix-git/doc/guix.texi:2444 msgid "If you want to, you can continue the installation remotely by starting an SSH server:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2430 +#: guix-git/doc/guix.texi:2447 #, no-wrap msgid "herd start ssh-daemon\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2434 +#: guix-git/doc/guix.texi:2451 msgid "Make sure to either set a password with @command{passwd}, or configure OpenSSH public key authentication before logging in." msgstr "" #. type: subsubsection -#: guix-git/doc/guix.texi:2435 +#: guix-git/doc/guix.texi:2452 #, no-wrap msgid "Disk Partitioning" msgstr "磁盘分区" #. type: Plain text -#: guix-git/doc/guix.texi:2439 +#: guix-git/doc/guix.texi:2456 msgid "Unless this has already been done, the next step is to partition, and then format the target partition(s)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2444 +#: guix-git/doc/guix.texi:2461 msgid "The installation image includes several partitioning tools, including Parted (@pxref{Overview,,, parted, GNU Parted User Manual}), @command{fdisk}, and @command{cfdisk}. Run it and set up your disk with the partition layout you want:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2447 +#: guix-git/doc/guix.texi:2464 #, no-wrap msgid "cfdisk\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2453 +#: guix-git/doc/guix.texi:2470 msgid "If your disk uses the GUID Partition Table (GPT) format and you plan to install BIOS-based GRUB (which is the default), make sure a BIOS Boot Partition is available (@pxref{BIOS installation,,, grub, GNU GRUB manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2454 +#: guix-git/doc/guix.texi:2471 #, no-wrap msgid "EFI, installation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2455 +#: guix-git/doc/guix.texi:2472 #, no-wrap msgid "UEFI, installation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2456 +#: guix-git/doc/guix.texi:2473 #, no-wrap msgid "ESP, EFI system partition" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2460 +#: guix-git/doc/guix.texi:2477 msgid "If you instead wish to use EFI-based GRUB, a FAT32 @dfn{EFI System Partition} (ESP) is required. This partition can be mounted at @file{/boot/efi} for instance and must have the @code{esp} flag set. E.g., for @command{parted}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2463 +#: guix-git/doc/guix.texi:2480 #, no-wrap msgid "parted /dev/sda set 1 esp on\n" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:2466 guix-git/doc/guix.texi:34580 +#: guix-git/doc/guix.texi:2483 guix-git/doc/guix.texi:35019 #, no-wrap msgid "grub-bootloader" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:2467 guix-git/doc/guix.texi:34574 +#: guix-git/doc/guix.texi:2484 guix-git/doc/guix.texi:35013 #, no-wrap msgid "grub-efi-bootloader" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2474 +#: guix-git/doc/guix.texi:2491 msgid "Unsure whether to use EFI- or BIOS-based GRUB? If the directory @file{/sys/firmware/efi} exists in the installation image, then you should probably perform an EFI installation, using @code{grub-efi-bootloader}. Otherwise you should use the BIOS-based GRUB, known as @code{grub-bootloader}. @xref{Bootloader Configuration}, for more info on bootloaders." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2482 +#: guix-git/doc/guix.texi:2499 msgid "Once you are done partitioning the target hard disk drive, you have to create a file system on the relevant partition(s)@footnote{Currently Guix System only supports ext4, btrfs, JFS, F2FS, and XFS file systems. In particular, code that reads file system UUIDs and labels only works for these file system types.}. For the ESP, if you have one and assuming it is @file{/dev/sda1}, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2485 +#: guix-git/doc/guix.texi:2502 #, no-wrap msgid "mkfs.fat -F32 /dev/sda1\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2492 +#: guix-git/doc/guix.texi:2509 msgid "For the root file system, ext4 is the most widely used format. Other file systems, such as Btrfs, support compression, which is reported to nicely complement file deduplication that the daemon performs independently of the file system (@pxref{Invoking guix-daemon, deduplication})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2499 +#: guix-git/doc/guix.texi:2516 msgid "Preferably, assign file systems a label so that you can easily and reliably refer to them in @code{file-system} declarations (@pxref{File Systems}). This is typically done using the @code{-L} option of @command{mkfs.ext4} and related commands. So, assuming the target root partition lives at @file{/dev/sda2}, a file system with the label @code{my-root} can be created with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2502 +#: guix-git/doc/guix.texi:2519 #, no-wrap msgid "mkfs.ext4 -L my-root /dev/sda2\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2504 guix-git/doc/guix.texi:14475 +#: guix-git/doc/guix.texi:2521 guix-git/doc/guix.texi:14832 #, no-wrap msgid "encrypted disk" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2509 +#: guix-git/doc/guix.texi:2526 msgid "If you are instead planning to encrypt the root partition, you can use the Cryptsetup/LUKS utilities to do that (see @inlinefmtifelse{html, @uref{https://linux.die.net/man/8/cryptsetup, @code{man cryptsetup}}, @code{man cryptsetup}} for more information)." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2510 guix-git/doc/guix.texi:5280 -#: guix-git/doc/guix.texi:6489 guix-git/doc/guix.texi:14601 -#: guix-git/doc/guix.texi:21013 guix-git/doc/guix.texi:21020 +#: guix-git/doc/guix.texi:2527 guix-git/doc/guix.texi:5298 +#: guix-git/doc/guix.texi:6532 guix-git/doc/guix.texi:14958 +#: guix-git/doc/guix.texi:21375 guix-git/doc/guix.texi:21382 #, no-wrap msgid "Warning" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2517 +#: guix-git/doc/guix.texi:2534 msgid "Note that GRUB can unlock LUKS2 devices since version 2.06, but only supports the PBKDF2 key derivation function, which is not the default for @command{cryptsetup luksFormat}. You can check which key derivation function is being used by a device by running @command{cryptsetup luksDump @var{device}}, and looking for the PBKDF field of your keyslots." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2522 +#: guix-git/doc/guix.texi:2539 msgid "Assuming you want to store the root partition on @file{/dev/sda2}, the command sequence to format it as a LUKS2 partition would be along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2527 +#: guix-git/doc/guix.texi:2544 #, no-wrap msgid "" "cryptsetup luksFormat --type luks2 --pbkdf pbkdf2 /dev/sda2\n" @@ -8224,28 +8305,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2532 +#: guix-git/doc/guix.texi:2549 msgid "Once that is done, mount the target file system under @file{/mnt} with a command like (again, assuming @code{my-root} is the label of the root file system):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2535 +#: guix-git/doc/guix.texi:2552 #, no-wrap msgid "mount LABEL=my-root /mnt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2541 +#: guix-git/doc/guix.texi:2558 msgid "Also mount any other file systems you would like to use on the target system relative to this path. If you have opted for @file{/boot/efi} as an EFI mount point for example, mount it at @file{/mnt/boot/efi} now so it is found by @code{guix system init} afterwards." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2545 +#: guix-git/doc/guix.texi:2562 msgid "Finally, if you plan to use one or more swap partitions (@pxref{Swap Space}), make sure to initialize them with @command{mkswap}. Assuming you have one swap partition on @file{/dev/sda3}, you would run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2549 +#: guix-git/doc/guix.texi:2566 #, no-wrap msgid "" "mkswap /dev/sda3\n" @@ -8253,12 +8334,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2557 +#: guix-git/doc/guix.texi:2574 msgid "Alternatively, you may use a swap file. For example, assuming that in the new system you want to use the file @file{/swapfile} as a swap file, you would run@footnote{This example will work for many types of file systems (e.g., ext4). However, for copy-on-write file systems (e.g., btrfs), the required steps may be different. For details, see the manual pages for @command{mkswap} and @command{swapon}.}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2565 +#: guix-git/doc/guix.texi:2582 #, no-wrap msgid "" "# This is 10 GiB of swap space. Adjust \"count\" to change the size.\n" @@ -8270,38 +8351,38 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2570 +#: guix-git/doc/guix.texi:2587 msgid "Note that if you have encrypted the root partition and created a swap file in its file system as described above, then the encryption also protects the swap file, just like any other file in that file system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2576 +#: guix-git/doc/guix.texi:2593 msgid "With the target partitions ready and the target root mounted on @file{/mnt}, we're ready to go. First, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2579 +#: guix-git/doc/guix.texi:2596 #, no-wrap msgid "herd start cow-store /mnt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2586 +#: guix-git/doc/guix.texi:2603 msgid "This makes @file{/gnu/store} copy-on-write, such that packages added to it during the installation phase are written to the target disk on @file{/mnt} rather than kept in memory. This is necessary because the first phase of the @command{guix system init} command (see below) entails downloads or builds to @file{/gnu/store} which, initially, is an in-memory file system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2597 +#: guix-git/doc/guix.texi:2614 msgid "Next, you have to edit a file and provide the declaration of the operating system to be installed. To that end, the installation system comes with three text editors. We recommend GNU nano (@pxref{Top,,, nano, GNU nano Manual}), which supports syntax highlighting and parentheses matching; other editors include mg (an Emacs clone), and nvi (a clone of the original BSD @command{vi} editor). We strongly recommend storing that file on the target root file system, say, as @file{/mnt/etc/config.scm}. Failing to do that, you will have lost your configuration file once you have rebooted into the newly-installed system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2604 +#: guix-git/doc/guix.texi:2621 msgid "@xref{Using the Configuration System}, for an overview of the configuration file. The example configurations discussed in that section are available under @file{/etc/configuration} in the installation image. Thus, to get started with a system configuration providing a graphical display server (a ``desktop'' system), you can run something along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2609 +#: guix-git/doc/guix.texi:2626 #, no-wrap msgid "" "# mkdir /mnt/etc\n" @@ -8310,53 +8391,53 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2613 +#: guix-git/doc/guix.texi:2630 msgid "You should pay attention to what your configuration file contains, and in particular:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2625 +#: guix-git/doc/guix.texi:2642 msgid "Make sure the @code{bootloader-configuration} form refers to the targets you want to install GRUB on. It should mention @code{grub-bootloader} if you are installing GRUB in the legacy way, or @code{grub-efi-bootloader} for newer UEFI systems. For legacy systems, the @code{targets} field contain the names of the devices, like @code{(list \"/dev/sda\")}; for UEFI systems it names the paths to mounted EFI partitions, like @code{(list \"/boot/efi\")}; do make sure the paths are currently mounted and a @code{file-system} entry is specified in your configuration." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2631 +#: guix-git/doc/guix.texi:2648 msgid "Be sure that your file system labels match the value of their respective @code{device} fields in your @code{file-system} configuration, assuming your @code{file-system} configuration uses the @code{file-system-label} procedure in its @code{device} field." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2635 +#: guix-git/doc/guix.texi:2652 msgid "If there are encrypted or RAID partitions, make sure to add a @code{mapped-devices} field to describe them (@pxref{Mapped Devices})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2640 +#: guix-git/doc/guix.texi:2657 msgid "Once you are done preparing the configuration file, the new system must be initialized (remember that the target root file system is mounted under @file{/mnt}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2643 +#: guix-git/doc/guix.texi:2660 #, no-wrap msgid "guix system init /mnt/etc/config.scm /mnt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2650 +#: guix-git/doc/guix.texi:2667 msgid "This copies all the necessary files and installs GRUB on @file{/dev/sdX}, unless you pass the @option{--no-bootloader} option. For more information, @pxref{Invoking guix system}. This command may trigger downloads or builds of missing packages, which can take some time." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2658 +#: guix-git/doc/guix.texi:2675 msgid "Once that command has completed---and hopefully succeeded!---you can run @command{reboot} and boot into the new system. The @code{root} password in the new system is initially empty; other users' passwords need to be initialized by running the @command{passwd} command as @code{root}, unless your configuration specifies otherwise (@pxref{user-account-password, user account passwords}). @xref{After System Installation}, for what's next!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2665 +#: guix-git/doc/guix.texi:2682 msgid "Success, you've now booted into Guix System! From then on, you can update the system whenever you want by running, say:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2669 +#: guix-git/doc/guix.texi:2686 #, no-wrap msgid "" "guix pull\n" @@ -8364,93 +8445,93 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2675 +#: guix-git/doc/guix.texi:2692 msgid "This builds a new system generation with the latest packages and services (@pxref{Invoking guix system}). We recommend doing that regularly so that your system includes the latest security updates (@pxref{Security Updates})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2678 +#: guix-git/doc/guix.texi:2695 #, no-wrap msgid "sudo vs. @command{guix pull}" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2682 +#: guix-git/doc/guix.texi:2699 msgid "Note that @command{sudo guix} runs your user's @command{guix} command and @emph{not} root's, because @command{sudo} leaves @env{PATH} unchanged. To explicitly run root's @command{guix}, type @command{sudo -i guix @dots{}}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2687 +#: guix-git/doc/guix.texi:2704 msgid "The difference matters here, because @command{guix pull} updates the @command{guix} command and package definitions only for the user it is run as. This means that if you choose to use @command{guix system reconfigure} in root's login shell, you'll need to @command{guix pull} separately." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2692 +#: guix-git/doc/guix.texi:2709 msgid "Now, @pxref{Getting Started}, and join us on @code{#guix} on the Libera Chat IRC network or on @email{guix-devel@@gnu.org} to share your experience!" msgstr "" #. type: section -#: guix-git/doc/guix.texi:2695 +#: guix-git/doc/guix.texi:2712 #, no-wrap msgid "Installing Guix in a Virtual Machine" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2697 +#: guix-git/doc/guix.texi:2714 #, no-wrap msgid "virtual machine, Guix System installation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2698 +#: guix-git/doc/guix.texi:2715 #, no-wrap msgid "virtual private server (VPS)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2699 +#: guix-git/doc/guix.texi:2716 #, no-wrap msgid "VPS (virtual private server)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2703 +#: guix-git/doc/guix.texi:2720 msgid "If you'd like to install Guix System in a virtual machine (VM) or on a virtual private server (VPS) rather than on your beloved machine, this section is for you." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2706 +#: guix-git/doc/guix.texi:2723 msgid "To boot a @uref{https://qemu.org/,QEMU} VM for installing Guix System in a disk image, follow these steps:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2711 +#: guix-git/doc/guix.texi:2728 msgid "First, retrieve and decompress the Guix system installation image as described previously (@pxref{USB Stick and DVD Installation})." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2715 +#: guix-git/doc/guix.texi:2732 msgid "Create a disk image that will hold the installed system. To make a qcow2-formatted disk image, use the @command{qemu-img} command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2718 +#: guix-git/doc/guix.texi:2735 #, no-wrap msgid "qemu-img create -f qcow2 guix-system.img 50G\n" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2722 +#: guix-git/doc/guix.texi:2739 msgid "The resulting file will be much smaller than 50 GB (typically less than 1 MB), but it will grow as the virtualized storage device is filled up." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2725 +#: guix-git/doc/guix.texi:2742 msgid "Boot the USB installation image in an VM:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2731 +#: guix-git/doc/guix.texi:2748 #, no-wrap msgid "" "qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \\\n" @@ -8460,115 +8541,115 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2735 +#: guix-git/doc/guix.texi:2752 msgid "@code{-enable-kvm} is optional, but significantly improves performance, @pxref{Running Guix in a VM}." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:2739 +#: guix-git/doc/guix.texi:2756 msgid "You're now root in the VM, proceed with the installation process. @xref{Preparing for Installation}, and follow the instructions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2744 +#: guix-git/doc/guix.texi:2761 msgid "Once installation is complete, you can boot the system that's on your @file{guix-system.img} image. @xref{Running Guix in a VM}, for how to do that." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:2748 +#: guix-git/doc/guix.texi:2765 #, no-wrap msgid "installation image" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2751 +#: guix-git/doc/guix.texi:2768 msgid "The installation image described above was built using the @command{guix system} command, specifically:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2754 +#: guix-git/doc/guix.texi:2771 #, no-wrap msgid "guix system image -t iso9660 gnu/system/install.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2759 +#: guix-git/doc/guix.texi:2776 msgid "Have a look at @file{gnu/system/install.scm} in the source tree, and see also @ref{Invoking guix system} for more information about the installation image." msgstr "" #. type: section -#: guix-git/doc/guix.texi:2760 +#: guix-git/doc/guix.texi:2777 #, no-wrap msgid "Building the Installation Image for ARM Boards" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2764 +#: guix-git/doc/guix.texi:2781 msgid "Many ARM boards require a specific variant of the @uref{https://www.denx.de/wiki/U-Boot/, U-Boot} bootloader." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2768 +#: guix-git/doc/guix.texi:2785 msgid "If you build a disk image and the bootloader is not available otherwise (on another boot drive etc), it's advisable to build an image that includes the bootloader, specifically:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2771 +#: guix-git/doc/guix.texi:2788 #, no-wrap msgid "guix system image --system=armhf-linux -e '((@@ (gnu system install) os-with-u-boot) (@@ (gnu system install) installation-os) \"A20-OLinuXino-Lime2\")'\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2775 +#: guix-git/doc/guix.texi:2792 msgid "@code{A20-OLinuXino-Lime2} is the name of the board. If you specify an invalid board, a list of possible boards will be printed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2785 +#: guix-git/doc/guix.texi:2802 msgid "Presumably, you've reached this section because either you have installed Guix on top of another distribution (@pxref{Installation}), or you've installed the standalone Guix System (@pxref{System Installation}). It's time for you to get started using Guix and this section aims to help you do that and give you a feel of what it's like." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2789 +#: guix-git/doc/guix.texi:2806 msgid "Guix is about installing software, so probably the first thing you'll want to do is to actually look for software. Let's say you're looking for a text editor, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2792 +#: guix-git/doc/guix.texi:2809 #, no-wrap msgid "guix search text editor\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2799 +#: guix-git/doc/guix.texi:2816 msgid "This command shows you a number of matching @dfn{packages}, each time showing the package's name, version, a description, and additional info. Once you've found out the one you want to use, let's say Emacs (ah ha!), you can go ahead and install it (run this command as a regular user, @emph{no need for root privileges}!):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2802 +#: guix-git/doc/guix.texi:2819 #, fuzzy, no-wrap msgid "guix install emacs\n" msgstr "guix install emacs-guix\n" #. type: cindex -#: guix-git/doc/guix.texi:2804 guix-git/doc/guix.texi:3116 -#: guix-git/doc/guix.texi:3168 +#: guix-git/doc/guix.texi:2821 guix-git/doc/guix.texi:3133 +#: guix-git/doc/guix.texi:3185 #, no-wrap msgid "profile" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2812 +#: guix-git/doc/guix.texi:2829 msgid "You've installed your first package, congrats! The package is now visible in your default @dfn{profile}, @file{$HOME/.guix-profile}---a profile is a directory containing installed packages. In the process, you've probably noticed that Guix downloaded pre-built binaries; or, if you explicitly chose to @emph{not} use pre-built binaries, then probably Guix is still building software (@pxref{Substitutes}, for more info)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2815 +#: guix-git/doc/guix.texi:2832 msgid "Unless you're using Guix System, the @command{guix install} command must have printed this hint:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2818 +#: guix-git/doc/guix.texi:2835 #, no-wrap msgid "" "hint: Consider setting the necessary environment variables by running:\n" @@ -8576,7 +8657,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2821 +#: guix-git/doc/guix.texi:2838 #, no-wrap msgid "" " GUIX_PROFILE=\"$HOME/.guix-profile\"\n" @@ -8588,77 +8669,77 @@ msgstr "" "\n" #. type: example -#: guix-git/doc/guix.texi:2823 +#: guix-git/doc/guix.texi:2840 #, no-wrap msgid "Alternately, see `guix package --search-paths -p \"$HOME/.guix-profile\"'.\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2837 +#: guix-git/doc/guix.texi:2854 msgid "Indeed, you must now tell your shell where @command{emacs} and other programs installed with Guix are to be found. Pasting the two lines above will do just that: it will add @code{$HOME/.guix-profile/bin}---which is where the installed package is---to the @code{PATH} environment variable. You can paste these two lines in your shell so they take effect right away, but more importantly you should add them to @file{~/.bash_profile} (or equivalent file if you do not use Bash) so that environment variables are set next time you spawn a shell. You only need to do this once and other search paths environment variables will be taken care of similarly---e.g., if you eventually install @code{python} and Python libraries, @env{GUIX_PYTHONPATH} will be defined." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2840 +#: guix-git/doc/guix.texi:2857 msgid "You can go on installing packages at your will. To list installed packages, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2843 +#: guix-git/doc/guix.texi:2860 #, fuzzy, no-wrap msgid "guix package --list-installed\n" msgstr "guix package --list-available\n" #. type: Plain text -#: guix-git/doc/guix.texi:2848 +#: guix-git/doc/guix.texi:2865 msgid "To remove a package, you would unsurprisingly run @command{guix remove}. A distinguishing feature is the ability to @dfn{roll back} any operation you made---installation, removal, upgrade---by simply typing:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2851 +#: guix-git/doc/guix.texi:2868 #, fuzzy, no-wrap msgid "guix package --roll-back\n" msgstr "guix package --list-available\n" #. type: Plain text -#: guix-git/doc/guix.texi:2856 +#: guix-git/doc/guix.texi:2873 msgid "This is because each operation is in fact a @dfn{transaction} that creates a new @dfn{generation}. These generations and the difference between them can be displayed by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2859 +#: guix-git/doc/guix.texi:2876 #, fuzzy, no-wrap msgid "guix package --list-generations\n" msgstr "guix package --list-available\n" #. type: Plain text -#: guix-git/doc/guix.texi:2862 +#: guix-git/doc/guix.texi:2879 msgid "Now you know the basics of package management!" msgstr "现在你知道包管理的基本知识了吧!" #. type: quotation -#: guix-git/doc/guix.texi:2863 guix-git/doc/guix.texi:2922 +#: guix-git/doc/guix.texi:2880 guix-git/doc/guix.texi:2939 #, no-wrap msgid "Going further" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2871 +#: guix-git/doc/guix.texi:2888 msgid "@xref{Package Management}, for more about package management. You may like @dfn{declarative} package management with @command{guix package --manifest}, managing separate @dfn{profiles} with @option{--profile}, deleting old generations, collecting garbage, and other nifty features that will come in handy as you become more familiar with Guix. If you are a developer, @pxref{Development} for additional tools. And if you're curious, @pxref{Features}, to peek under the hood." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2876 +#: guix-git/doc/guix.texi:2893 msgid "Once you've installed a set of packages, you will want to periodically @emph{upgrade} them to the latest and greatest version. To do that, you will first pull the latest revision of Guix and its package collection:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2886 +#: guix-git/doc/guix.texi:2903 msgid "The end result is a new @command{guix} command, under @file{~/.config/guix/current/bin}. Unless you're on Guix System, the first time you run @command{guix pull}, be sure to follow the hint that the command prints and, similar to what we saw above, paste these two lines in your terminal and @file{.bash_profile}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2890 +#: guix-git/doc/guix.texi:2907 #, no-wrap msgid "" "GUIX_PROFILE=\"$HOME/.config/guix/current\"\n" @@ -8668,336 +8749,336 @@ msgstr "" ". \"$GUIX_PROFILE/etc/profile\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:2894 +#: guix-git/doc/guix.texi:2911 msgid "You must also instruct your shell to point to this new @command{guix}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2897 +#: guix-git/doc/guix.texi:2914 #, no-wrap msgid "hash guix\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2901 +#: guix-git/doc/guix.texi:2918 msgid "At this point, you're running a brand new Guix. You can thus go ahead and actually upgrade all the packages you previously installed:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2904 +#: guix-git/doc/guix.texi:2921 #, no-wrap msgid "guix upgrade\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2910 +#: guix-git/doc/guix.texi:2927 msgid "As you run this command, you will see that binaries are downloaded (or perhaps some packages are built), and eventually you end up with the upgraded packages. Should one of these upgraded packages not be to your liking, remember you can always roll back!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2913 +#: guix-git/doc/guix.texi:2930 msgid "You can display the exact revision of Guix you're currently using by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2916 +#: guix-git/doc/guix.texi:2933 #, no-wrap msgid "guix describe\n" msgstr "guix describe\n" #. type: Plain text -#: guix-git/doc/guix.texi:2921 +#: guix-git/doc/guix.texi:2938 msgid "The information it displays is @emph{all it takes to reproduce the exact same Guix}, be it at a different point in time or on a different machine." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2927 +#: guix-git/doc/guix.texi:2944 msgid "@xref{Invoking guix pull}, for more information. @xref{Channels}, on how to specify additional @dfn{channels} to pull packages from, how to replicate Guix, and more. You may also find @command{time-machine} handy (@pxref{Invoking guix time-machine})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2932 +#: guix-git/doc/guix.texi:2949 msgid "If you installed Guix System, one of the first things you'll want to do is to upgrade your system. Once you've run @command{guix pull} to get the latest Guix, you can upgrade the system like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2935 +#: guix-git/doc/guix.texi:2952 #, no-wrap msgid "sudo guix system reconfigure /etc/config.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2944 +#: guix-git/doc/guix.texi:2961 msgid "Upon completion, the system runs the latest versions of its software packages. When you eventually reboot, you'll notice a sub-menu in the bootloader that reads ``Old system generations'': it's what allows you to boot @emph{an older generation of your system}, should the latest generation be ``broken'' or otherwise unsatisfying. Just like for packages, you can always @emph{roll back} to a previous generation @emph{of the whole system}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:2947 +#: guix-git/doc/guix.texi:2964 #, no-wrap msgid "sudo guix system roll-back\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2954 +#: guix-git/doc/guix.texi:2971 msgid "There are many things you'll probably want to tweak on your system: adding new user accounts, adding new system services, fiddling with the configuration of those services, etc. The system configuration is @emph{entirely} described in the @file{/etc/config.scm} file. @xref{Using the Configuration System}, to learn how to change it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2956 +#: guix-git/doc/guix.texi:2973 msgid "Now you know enough to get started!" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2957 +#: guix-git/doc/guix.texi:2974 #, no-wrap msgid "Resources" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2960 +#: guix-git/doc/guix.texi:2977 msgid "The rest of this manual provides a reference for all things Guix. Here are some additional resources you may find useful:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2965 +#: guix-git/doc/guix.texi:2982 msgid "@xref{Top,,, guix-cookbook, The GNU Guix Cookbook}, for a list of ``how-to'' style of recipes for a variety of applications." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2970 +#: guix-git/doc/guix.texi:2987 msgid "The @uref{https://guix.gnu.org/guix-refcard.pdf, GNU Guix Reference Card} lists in two pages most of the commands and options you'll ever need." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2975 +#: guix-git/doc/guix.texi:2992 msgid "The web site contains @uref{https://guix.gnu.org/en/videos/, instructional videos} covering topics such as everyday use of Guix, how to get help, and how to become a contributor." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:2979 +#: guix-git/doc/guix.texi:2996 msgid "@xref{Documentation}, to learn how to access documentation on your computer." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:2982 +#: guix-git/doc/guix.texi:2999 msgid "We hope you will enjoy Guix as much as the community enjoys building it!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:2993 +#: guix-git/doc/guix.texi:3010 msgid "The purpose of GNU Guix is to allow users to easily install, upgrade, and remove software packages, without having to know about their build procedures or dependencies. Guix also goes beyond this obvious set of features." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3001 +#: guix-git/doc/guix.texi:3018 msgid "This chapter describes the main features of Guix, as well as the package management tools it provides. Along with the command-line interface described below (@pxref{Invoking guix package, @code{guix package}}), you may also use the Emacs-Guix interface (@pxref{Top,,, emacs-guix, The Emacs-Guix Reference Manual}), after installing @code{emacs-guix} package (run @kbd{M-x guix-help} command to start with it):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3004 +#: guix-git/doc/guix.texi:3021 #, no-wrap msgid "guix install emacs-guix\n" msgstr "guix install emacs-guix\n" #. type: Plain text -#: guix-git/doc/guix.texi:3025 +#: guix-git/doc/guix.texi:3042 msgid "Here we assume you've already made your first steps with Guix (@pxref{Getting Started}) and would like to get an overview about what's going on under the hood." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3029 +#: guix-git/doc/guix.texi:3046 msgid "When using Guix, each package ends up in the @dfn{package store}, in its own directory---something that resembles @file{/gnu/store/xxx-package-1.2}, where @code{xxx} is a base32 string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3034 +#: guix-git/doc/guix.texi:3051 msgid "Instead of referring to these directories, users have their own @dfn{profile}, which points to the packages that they actually want to use. These profiles are stored within each user's home directory, at @code{$HOME/.guix-profile}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3042 +#: guix-git/doc/guix.texi:3059 msgid "For example, @code{alice} installs GCC 4.7.2. As a result, @file{/home/alice/.guix-profile/bin/gcc} points to @file{/gnu/store/@dots{}-gcc-4.7.2/bin/gcc}. Now, on the same machine, @code{bob} had already installed GCC 4.8.0. The profile of @code{bob} simply continues to point to @file{/gnu/store/@dots{}-gcc-4.8.0/bin/gcc}---i.e., both versions of GCC coexist on the same system without any interference." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3046 +#: guix-git/doc/guix.texi:3063 msgid "The @command{guix package} command is the central tool to manage packages (@pxref{Invoking guix package}). It operates on the per-user profiles, and can be used @emph{with normal user privileges}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3047 guix-git/doc/guix.texi:3130 +#: guix-git/doc/guix.texi:3064 guix-git/doc/guix.texi:3147 #, no-wrap msgid "transactions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3054 +#: guix-git/doc/guix.texi:3071 msgid "The command provides the obvious install, remove, and upgrade operations. Each invocation is actually a @emph{transaction}: either the specified operation succeeds, or nothing happens. Thus, if the @command{guix package} process is terminated during the transaction, or if a power outage occurs during the transaction, then the user's profile remains in its previous state, and remains usable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3062 +#: guix-git/doc/guix.texi:3079 msgid "In addition, any package transaction may be @emph{rolled back}. So, if, for example, an upgrade installs a new version of a package that turns out to have a serious bug, users may roll back to the previous instance of their profile, which was known to work well. Similarly, the global system configuration on Guix is subject to transactional upgrades and roll-back (@pxref{Using the Configuration System})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3069 +#: guix-git/doc/guix.texi:3086 msgid "All packages in the package store may be @emph{garbage-collected}. Guix can determine which packages are still referenced by user profiles, and remove those that are provably no longer referenced (@pxref{Invoking guix gc}). Users may also explicitly remove old generations of their profile so that the packages they refer to can be collected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3082 +#: guix-git/doc/guix.texi:3099 msgid "Guix takes a @dfn{purely functional} approach to package management, as described in the introduction (@pxref{Introduction}). Each @file{/gnu/store} package directory name contains a hash of all the inputs that were used to build that package---compiler, libraries, build scripts, etc. This direct correspondence allows users to make sure a given package installation matches the current state of their distribution. It also helps maximize @dfn{build reproducibility}: thanks to the isolated build environments that are used, a given build is likely to yield bit-identical files when performed on different machines (@pxref{Invoking guix-daemon, container})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3093 +#: guix-git/doc/guix.texi:3110 msgid "This foundation allows Guix to support @dfn{transparent binary/source deployment}. When a pre-built binary for a @file{/gnu/store} item is available from an external source---a @dfn{substitute}, Guix just downloads it and unpacks it; otherwise, it builds the package from source, locally (@pxref{Substitutes}). Because build results are usually bit-for-bit reproducible, users do not have to trust servers that provide substitutes: they can force a local build and @emph{challenge} providers (@pxref{Invoking guix challenge})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3099 +#: guix-git/doc/guix.texi:3116 msgid "Control over the build environment is a feature that is also useful for developers. The @command{guix shell} command allows developers of a package to quickly set up the right development environment for their package, without having to manually install the dependencies of the package into their profile (@pxref{Invoking guix shell})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3100 +#: guix-git/doc/guix.texi:3117 #, no-wrap msgid "replication, of software environments" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3101 +#: guix-git/doc/guix.texi:3118 #, no-wrap msgid "provenance tracking, of software artifacts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3108 +#: guix-git/doc/guix.texi:3125 msgid "All of Guix and its package definitions is version-controlled, and @command{guix pull} allows you to ``travel in time'' on the history of Guix itself (@pxref{Invoking guix pull}). This makes it possible to replicate a Guix instance on a different machine or at a later point in time, which in turn allows you to @emph{replicate complete software environments}, while retaining precise @dfn{provenance tracking} of the software." msgstr "" #. type: section -#: guix-git/doc/guix.texi:3110 +#: guix-git/doc/guix.texi:3127 #, no-wrap msgid "Invoking @command{guix package}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3112 +#: guix-git/doc/guix.texi:3129 #, no-wrap msgid "installing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3113 +#: guix-git/doc/guix.texi:3130 #, no-wrap msgid "removing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3114 +#: guix-git/doc/guix.texi:3131 #, no-wrap msgid "package installation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3115 +#: guix-git/doc/guix.texi:3132 #, no-wrap msgid "package removal" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3125 +#: guix-git/doc/guix.texi:3142 msgid "The @command{guix package} command is the tool that allows users to install, upgrade, and remove packages, as well as rolling back to previous configurations. These operations work on a user @dfn{profile}---a directory of installed packages. Each user has a default profile in @file{$HOME/.guix-profile}. The command operates only on the user's own profile, and works with normal user privileges (@pxref{Features}). Its syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3128 +#: guix-git/doc/guix.texi:3145 #, no-wrap msgid "guix package @var{options}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3135 +#: guix-git/doc/guix.texi:3152 msgid "Primarily, @var{options} specifies the operations to be performed during the transaction. Upon completion, a new profile is created, but previous @dfn{generations} of the profile remain available, should the user want to roll back." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3138 +#: guix-git/doc/guix.texi:3155 msgid "For example, to remove @code{lua} and install @code{guile} and @code{guile-cairo} in a single transaction:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3141 +#: guix-git/doc/guix.texi:3158 #, no-wrap msgid "guix package -r lua -i guile guile-cairo\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3143 +#: guix-git/doc/guix.texi:3160 #, no-wrap msgid "aliases, for @command{guix package}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3145 +#: guix-git/doc/guix.texi:3162 msgid "For your convenience, we also provide the following aliases:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3149 +#: guix-git/doc/guix.texi:3166 msgid "@command{guix search} is an alias for @command{guix package -s}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3151 +#: guix-git/doc/guix.texi:3168 msgid "@command{guix install} is an alias for @command{guix package -i}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3153 +#: guix-git/doc/guix.texi:3170 msgid "@command{guix remove} is an alias for @command{guix package -r}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3155 +#: guix-git/doc/guix.texi:3172 msgid "@command{guix upgrade} is an alias for @command{guix package -u}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3157 +#: guix-git/doc/guix.texi:3174 msgid "and @command{guix show} is an alias for @command{guix package --show=}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3162 +#: guix-git/doc/guix.texi:3179 msgid "These aliases are less expressive than @command{guix package} and provide fewer options, so in some cases you'll probably want to use @command{guix package} directly." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3167 +#: guix-git/doc/guix.texi:3184 msgid "@command{guix package} also supports a @dfn{declarative approach} whereby the user specifies the exact set of packages to be available and passes it @i{via} the @option{--manifest} option (@pxref{profile-manifest, @option{--manifest}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3174 +#: guix-git/doc/guix.texi:3191 msgid "For each user, a symlink to the user's default profile is automatically created in @file{$HOME/.guix-profile}. This symlink always points to the current generation of the user's default profile. Thus, users can add @file{$HOME/.guix-profile/bin} to their @env{PATH} environment variable, and so on." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3174 guix-git/doc/guix.texi:3418 +#: guix-git/doc/guix.texi:3191 guix-git/doc/guix.texi:3435 #, no-wrap msgid "search paths" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3179 +#: guix-git/doc/guix.texi:3196 msgid "If you are not using Guix System, consider adding the following lines to your @file{~/.bash_profile} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}) so that newly-spawned shells get all the right environment variable definitions:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3183 +#: guix-git/doc/guix.texi:3200 #, no-wrap msgid "" "GUIX_PROFILE=\"$HOME/.guix-profile\" ; \\\n" @@ -9007,298 +9088,298 @@ msgstr "" "source \"$GUIX_PROFILE/etc/profile\"\n" #. type: Plain text -#: guix-git/doc/guix.texi:3194 +#: guix-git/doc/guix.texi:3211 msgid "In a multi-user setup, user profiles are stored in a place registered as a @dfn{garbage-collector root}, which @file{$HOME/.guix-profile} points to (@pxref{Invoking guix gc}). That directory is normally @code{@var{localstatedir}/guix/profiles/per-user/@var{user}}, where @var{localstatedir} is the value passed to @code{configure} as @option{--localstatedir}, and @var{user} is the user name. The @file{per-user} directory is created when @command{guix-daemon} is started, and the @var{user} sub-directory is created by @command{guix package}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3196 +#: guix-git/doc/guix.texi:3213 msgid "The @var{options} can be among the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3199 +#: guix-git/doc/guix.texi:3216 #, no-wrap msgid "--install=@var{package} @dots{}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3200 +#: guix-git/doc/guix.texi:3217 #, no-wrap msgid "-i @var{package} @dots{}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3202 +#: guix-git/doc/guix.texi:3219 msgid "Install the specified @var{package}s." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3207 +#: guix-git/doc/guix.texi:3224 msgid "Each @var{package} may specify either a simple package name, such as @code{guile}, or a package name followed by an at-sign and version number, such as @code{guile@@1.8.8} or simply @code{guile@@1.8} (in the latter case, the newest version prefixed by @code{1.8} is selected)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3215 +#: guix-git/doc/guix.texi:3232 msgid "If no version number is specified, the newest available version will be selected. In addition, @var{package} may contain a colon, followed by the name of one of the outputs of the package, as in @code{gcc:doc} or @code{binutils@@2.22:lib} (@pxref{Packages with Multiple Outputs}). Packages with a corresponding name (and optionally version) are searched for among the GNU distribution modules (@pxref{Package Modules})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3216 +#: guix-git/doc/guix.texi:3233 #, no-wrap msgid "propagated inputs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3222 +#: guix-git/doc/guix.texi:3239 msgid "Sometimes packages have @dfn{propagated inputs}: these are dependencies that automatically get installed along with the required package (@pxref{package-propagated-inputs, @code{propagated-inputs} in @code{package} objects}, for information about propagated inputs in package definitions)." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3229 +#: guix-git/doc/guix.texi:3246 msgid "package-cmd-propagated-inputs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3229 +#: guix-git/doc/guix.texi:3246 msgid "An example is the GNU MPC library: its C header files refer to those of the GNU MPFR library, which in turn refer to those of the GMP library. Thus, when installing MPC, the MPFR and GMP libraries also get installed in the profile; removing MPC also removes MPFR and GMP---unless they had also been explicitly installed by the user." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3234 +#: guix-git/doc/guix.texi:3251 msgid "Besides, packages sometimes rely on the definition of environment variables for their search paths (see explanation of @option{--search-paths} below). Any missing or possibly incorrect environment variable definitions are reported here." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3235 +#: guix-git/doc/guix.texi:3252 #, no-wrap msgid "--install-from-expression=@var{exp}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3236 +#: guix-git/doc/guix.texi:3253 #, no-wrap msgid "-e @var{exp}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3238 +#: guix-git/doc/guix.texi:3255 msgid "Install the package @var{exp} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3243 +#: guix-git/doc/guix.texi:3260 msgid "@var{exp} must be a Scheme expression that evaluates to a @code{} object. This option is notably useful to disambiguate between same-named variants of a package, with expressions such as @code{(@@ (gnu packages base) guile-final)}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3247 +#: guix-git/doc/guix.texi:3264 msgid "Note that this option installs the first output of the specified package, which may be insufficient when needing a specific output of a multiple-output package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3248 +#: guix-git/doc/guix.texi:3265 #, no-wrap msgid "--install-from-file=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3249 guix-git/doc/guix.texi:5781 -#: guix-git/doc/guix.texi:11396 +#: guix-git/doc/guix.texi:3266 guix-git/doc/guix.texi:5799 +#: guix-git/doc/guix.texi:11710 #, no-wrap msgid "-f @var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3251 +#: guix-git/doc/guix.texi:3268 msgid "Install the package that the code within @var{file} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3254 guix-git/doc/guix.texi:5787 -#: guix-git/doc/guix.texi:6162 +#: guix-git/doc/guix.texi:3271 guix-git/doc/guix.texi:5805 +#: guix-git/doc/guix.texi:6199 msgid "As an example, @var{file} might contain a definition like this (@pxref{Defining Packages}):" msgstr "" #. type: include -#: guix-git/doc/guix.texi:3256 guix-git/doc/guix.texi:11404 +#: guix-git/doc/guix.texi:3273 guix-git/doc/guix.texi:11718 #, no-wrap msgid "package-hello.scm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3263 +#: guix-git/doc/guix.texi:3280 msgid "Developers may find it useful to include such a @file{guix.scm} file in the root of their project source tree that can be used to test development snapshots and create reproducible development environments (@pxref{Invoking guix shell})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3268 +#: guix-git/doc/guix.texi:3285 msgid "The @var{file} may also contain a JSON representation of one or more package definitions. Running @code{guix package -f} on @file{hello.json} with the following contents would result in installing the package @code{greeter} after building @code{myhello}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3271 guix-git/doc/guix.texi:11414 +#: guix-git/doc/guix.texi:3288 guix-git/doc/guix.texi:11728 #, no-wrap msgid "@verbatiminclude package-hello.json\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3273 +#: guix-git/doc/guix.texi:3290 #, no-wrap msgid "--remove=@var{package} @dots{}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3274 +#: guix-git/doc/guix.texi:3291 #, no-wrap msgid "-r @var{package} @dots{}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3276 +#: guix-git/doc/guix.texi:3293 msgid "Remove the specified @var{package}s." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3281 +#: guix-git/doc/guix.texi:3298 msgid "As for @option{--install}, each @var{package} may specify a version number and/or output name in addition to the package name. For instance, @samp{-r glibc:debug} would remove the @code{debug} output of @code{glibc}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3282 +#: guix-git/doc/guix.texi:3299 #, no-wrap msgid "--upgrade[=@var{regexp} @dots{}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3283 +#: guix-git/doc/guix.texi:3300 #, no-wrap msgid "-u [@var{regexp} @dots{}]" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3284 +#: guix-git/doc/guix.texi:3301 #, no-wrap msgid "upgrading packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3288 +#: guix-git/doc/guix.texi:3305 msgid "Upgrade all the installed packages. If one or more @var{regexp}s are specified, upgrade only installed packages whose name matches a @var{regexp}. Also see the @option{--do-not-upgrade} option below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3293 +#: guix-git/doc/guix.texi:3310 msgid "Note that this upgrades package to the latest version of packages found in the distribution currently installed. To update your distribution, you should regularly run @command{guix pull} (@pxref{Invoking guix pull})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3294 +#: guix-git/doc/guix.texi:3311 #, fuzzy, no-wrap msgid "package transformations, upgrades" msgstr "软件包变换选项。" #. type: table -#: guix-git/doc/guix.texi:3299 +#: guix-git/doc/guix.texi:3316 msgid "When upgrading, package transformations that were originally applied when creating the profile are automatically re-applied (@pxref{Package Transformation Options}). For example, assume you first installed Emacs from the tip of its development branch with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3302 +#: guix-git/doc/guix.texi:3319 #, no-wrap msgid "guix install emacs-next --with-branch=emacs-next=master\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3307 +#: guix-git/doc/guix.texi:3324 msgid "Next time you run @command{guix upgrade}, Guix will again pull the tip of the Emacs development branch and build @code{emacs-next} from that checkout." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3312 +#: guix-git/doc/guix.texi:3329 msgid "Note that transformation options such as @option{--with-branch} and @option{--with-source} depend on external state; it is up to you to ensure that they work as expected. You can also discard a transformations that apply to a package by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3315 +#: guix-git/doc/guix.texi:3332 #, fuzzy, no-wrap msgid "guix install @var{package}\n" msgstr "guix install emacs-guix\n" #. type: item -#: guix-git/doc/guix.texi:3317 +#: guix-git/doc/guix.texi:3334 #, no-wrap msgid "--do-not-upgrade[=@var{regexp} @dots{}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3322 +#: guix-git/doc/guix.texi:3339 msgid "When used together with the @option{--upgrade} option, do @emph{not} upgrade any packages whose name matches a @var{regexp}. For example, to upgrade all packages in the current profile except those containing the substring ``emacs'':" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3325 +#: guix-git/doc/guix.texi:3342 #, no-wrap msgid "$ guix package --upgrade . --do-not-upgrade emacs\n" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3327 +#: guix-git/doc/guix.texi:3344 #, no-wrap msgid "profile-manifest" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3327 guix-git/doc/guix.texi:5799 -#: guix-git/doc/guix.texi:6167 guix-git/doc/guix.texi:6615 -#: guix-git/doc/guix.texi:12535 guix-git/doc/guix.texi:14135 +#: guix-git/doc/guix.texi:3344 guix-git/doc/guix.texi:5817 +#: guix-git/doc/guix.texi:6204 guix-git/doc/guix.texi:6658 +#: guix-git/doc/guix.texi:12850 guix-git/doc/guix.texi:14492 #, no-wrap msgid "--manifest=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3328 guix-git/doc/guix.texi:5800 -#: guix-git/doc/guix.texi:6168 guix-git/doc/guix.texi:6616 -#: guix-git/doc/guix.texi:12536 +#: guix-git/doc/guix.texi:3345 guix-git/doc/guix.texi:5818 +#: guix-git/doc/guix.texi:6205 guix-git/doc/guix.texi:6659 +#: guix-git/doc/guix.texi:12851 #, no-wrap msgid "-m @var{file}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3329 +#: guix-git/doc/guix.texi:3346 #, no-wrap msgid "profile declaration" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3330 +#: guix-git/doc/guix.texi:3347 #, no-wrap msgid "profile manifest" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3334 +#: guix-git/doc/guix.texi:3351 msgid "Create a new generation of the profile from the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3340 +#: guix-git/doc/guix.texi:3357 msgid "This allows you to @emph{declare} the profile's contents rather than constructing it through a sequence of @option{--install} and similar commands. The advantage is that @var{file} can be put under version control, copied to different machines to reproduce the same profile, and so on." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3344 +#: guix-git/doc/guix.texi:3361 msgid "@var{file} must return a @dfn{manifest} object, which is roughly a list of packages:" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:3345 +#: guix-git/doc/guix.texi:3362 #, no-wrap msgid "packages->manifest" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3348 +#: guix-git/doc/guix.texi:3365 #, no-wrap msgid "" "(use-package-modules guile emacs)\n" @@ -9306,7 +9387,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3354 +#: guix-git/doc/guix.texi:3371 #, no-wrap msgid "" "(packages->manifest\n" @@ -9317,18 +9398,18 @@ msgid "" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:3356 +#: guix-git/doc/guix.texi:3373 #, no-wrap msgid "specifications->manifest" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3363 +#: guix-git/doc/guix.texi:3380 msgid "In this example we have to know which modules define the @code{emacs} and @code{guile-2.0} variables to provide the right @code{use-package-modules} line, which can be cumbersome. We can instead provide regular package specifications and let @code{specifications->manifest} look up the corresponding package objects, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3367 +#: guix-git/doc/guix.texi:3384 #, no-wrap msgid "" "(specifications->manifest\n" @@ -9336,150 +9417,150 @@ msgid "" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:3369 +#: guix-git/doc/guix.texi:3386 #, no-wrap msgid "package->development-manifest" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3372 +#: guix-git/doc/guix.texi:3389 msgid "You might also want to create a manifest for all the dependencies of a package, rather than the package itself:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3375 +#: guix-git/doc/guix.texi:3392 #, no-wrap msgid "(package->development-manifest (specification->package \"emacs\"))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3379 +#: guix-git/doc/guix.texi:3396 msgid "The example above gives you all the software required to develop Emacs, similar to what @command{guix environment emacs} provides." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3382 +#: guix-git/doc/guix.texi:3399 msgid "@xref{export-manifest, @option{--export-manifest}}, to learn how to obtain a manifest file from an existing profile." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3383 guix-git/doc/guix.texi:4492 +#: guix-git/doc/guix.texi:3400 guix-git/doc/guix.texi:4510 #, no-wrap msgid "--roll-back" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3384 guix-git/doc/guix.texi:4493 -#: guix-git/doc/guix.texi:35006 guix-git/doc/guix.texi:37641 +#: guix-git/doc/guix.texi:3401 guix-git/doc/guix.texi:4511 +#: guix-git/doc/guix.texi:35445 guix-git/doc/guix.texi:38120 #, no-wrap msgid "rolling back" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3385 guix-git/doc/guix.texi:4494 +#: guix-git/doc/guix.texi:3402 guix-git/doc/guix.texi:4512 #, no-wrap msgid "undoing transactions" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3386 guix-git/doc/guix.texi:4495 +#: guix-git/doc/guix.texi:3403 guix-git/doc/guix.texi:4513 #, no-wrap msgid "transactions, undoing" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3389 +#: guix-git/doc/guix.texi:3406 msgid "Roll back to the previous @dfn{generation} of the profile---i.e., undo the last transaction." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3392 +#: guix-git/doc/guix.texi:3409 msgid "When combined with options such as @option{--install}, roll back occurs before any other actions." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3396 +#: guix-git/doc/guix.texi:3413 msgid "When rolling back from the first generation that actually contains installed packages, the profile is made to point to the @dfn{zeroth generation}, which contains no files apart from its own metadata." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3400 +#: guix-git/doc/guix.texi:3417 msgid "After having rolled back, installing, removing, or upgrading packages overwrites previous future generations. Thus, the history of the generations in a profile is always linear." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3401 guix-git/doc/guix.texi:4499 +#: guix-git/doc/guix.texi:3418 guix-git/doc/guix.texi:4517 #, no-wrap msgid "--switch-generation=@var{pattern}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3402 guix-git/doc/guix.texi:4500 +#: guix-git/doc/guix.texi:3419 guix-git/doc/guix.texi:4518 #, no-wrap msgid "-S @var{pattern}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3403 guix-git/doc/guix.texi:3635 -#: guix-git/doc/guix.texi:4501 guix-git/doc/guix.texi:34964 +#: guix-git/doc/guix.texi:3420 guix-git/doc/guix.texi:3653 +#: guix-git/doc/guix.texi:4519 guix-git/doc/guix.texi:35403 #, no-wrap msgid "generations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3405 guix-git/doc/guix.texi:4503 +#: guix-git/doc/guix.texi:3422 guix-git/doc/guix.texi:4521 msgid "Switch to a particular generation defined by @var{pattern}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3411 guix-git/doc/guix.texi:4509 +#: guix-git/doc/guix.texi:3428 guix-git/doc/guix.texi:4527 msgid "@var{pattern} may be either a generation number or a number prefixed with ``+'' or ``-''. The latter means: move forward/backward by a specified number of generations. For example, if you want to return to the latest generation after @option{--roll-back}, use @option{--switch-generation=+1}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3416 +#: guix-git/doc/guix.texi:3433 msgid "The difference between @option{--roll-back} and @option{--switch-generation=-1} is that @option{--switch-generation} will not make a zeroth generation, so if a specified generation does not exist, the current generation will not be changed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3417 +#: guix-git/doc/guix.texi:3434 #, no-wrap msgid "--search-paths[=@var{kind}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3423 +#: guix-git/doc/guix.texi:3440 msgid "Report environment variable definitions, in Bash syntax, that may be needed in order to use the set of installed packages. These environment variables are used to specify @dfn{search paths} for files used by some of the installed packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3431 -msgid "For example, GCC needs the @env{CPATH} and @env{LIBRARY_PATH} environment variables to be defined so it can look for headers and libraries in the user's profile (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C library are installed in the profile, then @option{--search-paths} will suggest setting these variables to @file{@var{profile}/include} and @file{@var{profile}/lib}, respectively." +#: guix-git/doc/guix.texi:3449 +msgid "For example, GCC needs the @env{CPATH} and @env{LIBRARY_PATH} environment variables to be defined so it can look for headers and libraries in the user's profile (@pxref{Environment Variables,,, gcc, Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C library are installed in the profile, then @option{--search-paths} will suggest setting these variables to @file{@var{profile}/include} and @file{@var{profile}/lib}, respectively (@pxref{Search Paths}, for info on search path specifications associated with packages.)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3434 +#: guix-git/doc/guix.texi:3452 msgid "The typical use case is to define these environment variables in the shell:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3437 +#: guix-git/doc/guix.texi:3455 #, no-wrap msgid "$ eval `guix package --search-paths`\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3443 +#: guix-git/doc/guix.texi:3461 msgid "@var{kind} may be one of @code{exact}, @code{prefix}, or @code{suffix}, meaning that the returned environment variable definitions will either be exact settings, or prefixes or suffixes of the current value of these variables. When omitted, @var{kind} defaults to @code{exact}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3446 +#: guix-git/doc/guix.texi:3464 msgid "This option can also be used to compute the @emph{combined} search paths of several profiles. Consider this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3451 +#: guix-git/doc/guix.texi:3469 #, no-wrap msgid "" "$ guix package -p foo -i guile\n" @@ -9488,42 +9569,44 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3456 +#: guix-git/doc/guix.texi:3474 msgid "The last command above reports about the @env{GUILE_LOAD_PATH} variable, even though, taken individually, neither @file{foo} nor @file{bar} would lead to that recommendation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3458 +#: guix-git/doc/guix.texi:3476 #, no-wrap msgid "profile, choosing" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3459 guix-git/doc/guix.texi:4529 -#: guix-git/doc/guix.texi:4858 +#: guix-git/doc/guix.texi:3477 guix-git/doc/guix.texi:4547 +#: guix-git/doc/guix.texi:4876 guix-git/doc/guix.texi:5827 +#: guix-git/doc/guix.texi:6240 #, no-wrap msgid "--profile=@var{profile}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3460 guix-git/doc/guix.texi:4530 -#: guix-git/doc/guix.texi:4859 +#: guix-git/doc/guix.texi:3478 guix-git/doc/guix.texi:4548 +#: guix-git/doc/guix.texi:4877 guix-git/doc/guix.texi:5828 +#: guix-git/doc/guix.texi:6241 #, no-wrap msgid "-p @var{profile}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3462 +#: guix-git/doc/guix.texi:3480 msgid "Use @var{profile} instead of the user's default profile." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3467 +#: guix-git/doc/guix.texi:3485 msgid "@var{profile} must be the name of a file that will be created upon completion. Concretely, @var{profile} will be a mere symbolic link (``symlink'') pointing to the actual profile where packages are installed:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3473 +#: guix-git/doc/guix.texi:3491 #, no-wrap msgid "" "$ guix install hello -p ~/code/my-profile\n" @@ -9533,29 +9616,29 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3477 +#: guix-git/doc/guix.texi:3495 msgid "All it takes to get rid of the profile is to remove this symlink and its siblings that point to specific generations:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3480 +#: guix-git/doc/guix.texi:3498 #, no-wrap msgid "$ rm ~/code/my-profile ~/code/my-profile-*-link\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3482 +#: guix-git/doc/guix.texi:3500 #, no-wrap msgid "--list-profiles" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3484 +#: guix-git/doc/guix.texi:3502 msgid "List all the user's profiles:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3491 +#: guix-git/doc/guix.texi:3509 #, no-wrap msgid "" "$ guix package --list-profiles\n" @@ -9566,96 +9649,96 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3494 +#: guix-git/doc/guix.texi:3512 msgid "When running as root, list all the profiles of all the users." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3495 +#: guix-git/doc/guix.texi:3513 #, no-wrap msgid "collisions, in a profile" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3496 +#: guix-git/doc/guix.texi:3514 #, no-wrap msgid "colliding packages in profiles" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3497 +#: guix-git/doc/guix.texi:3515 #, no-wrap msgid "profile collisions" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3498 +#: guix-git/doc/guix.texi:3516 #, no-wrap msgid "--allow-collisions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3500 +#: guix-git/doc/guix.texi:3518 msgid "Allow colliding packages in the new profile. Use at your own risk!" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3504 +#: guix-git/doc/guix.texi:3522 msgid "By default, @command{guix package} reports as an error @dfn{collisions} in the profile. Collisions happen when two or more different versions or variants of a given package end up in the profile." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3505 guix-git/doc/guix.texi:4572 -#: guix-git/doc/guix.texi:6701 +#: guix-git/doc/guix.texi:3523 guix-git/doc/guix.texi:4590 +#: guix-git/doc/guix.texi:6744 #, no-wrap msgid "--bootstrap" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3508 +#: guix-git/doc/guix.texi:3526 msgid "Use the bootstrap Guile to build the profile. This option is only useful to distribution developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3514 +#: guix-git/doc/guix.texi:3532 msgid "In addition to these actions, @command{guix package} supports the following options to query the current state of a profile, or the availability of packages:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3517 +#: guix-git/doc/guix.texi:3535 #, no-wrap msgid "--search=@var{regexp}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3518 +#: guix-git/doc/guix.texi:3536 #, no-wrap msgid "-s @var{regexp}" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3520 +#: guix-git/doc/guix.texi:3538 msgid "guix-search" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3520 +#: guix-git/doc/guix.texi:3538 #, no-wrap msgid "searching for packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3526 +#: guix-git/doc/guix.texi:3544 msgid "List the available packages whose name, synopsis, or description matches @var{regexp} (in a case-insensitive fashion), sorted by relevance. Print all the metadata of matching packages in @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3529 +#: guix-git/doc/guix.texi:3547 msgid "This allows specific fields to be extracted using the @command{recsel} command, for instance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3535 +#: guix-git/doc/guix.texi:3553 #, no-wrap msgid "" "$ guix package -s malloc | recsel -p name,version,relevance\n" @@ -9666,7 +9749,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3539 +#: guix-git/doc/guix.texi:3557 #, no-wrap msgid "" "name: glibc\n" @@ -9676,7 +9759,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3543 +#: guix-git/doc/guix.texi:3561 #, no-wrap msgid "" "name: libgc\n" @@ -9685,12 +9768,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3547 +#: guix-git/doc/guix.texi:3565 msgid "Similarly, to show the name of all the packages available under the terms of the GNU@tie{}LGPL version 3:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3551 +#: guix-git/doc/guix.texi:3569 #, no-wrap msgid "" "$ guix package -s \"\" | recsel -p name -e 'license ~ \"LGPL 3\"'\n" @@ -9699,7 +9782,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3554 +#: guix-git/doc/guix.texi:3572 #, no-wrap msgid "" "name: gmp\n" @@ -9707,12 +9790,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3560 +#: guix-git/doc/guix.texi:3578 msgid "It is also possible to refine search results using several @code{-s} flags to @command{guix package}, or several arguments to @command{guix search}. For example, the following command returns a list of board games (this time using the @command{guix search} alias):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3565 +#: guix-git/doc/guix.texi:3583 #, no-wrap msgid "" "$ guix search '\\' game | recsel -p name\n" @@ -9721,17 +9804,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3571 +#: guix-git/doc/guix.texi:3589 msgid "If we were to omit @code{-s game}, we would also get software packages that deal with printed circuit boards; removing the angle brackets around @code{board} would further add packages that have to do with keyboards." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3575 +#: guix-git/doc/guix.texi:3593 msgid "And now for a more elaborate example. The following command searches for cryptographic libraries, filters out Haskell, Perl, Python, and Ruby libraries, and prints the name and synopsis of the matching packages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3579 +#: guix-git/doc/guix.texi:3597 #, no-wrap msgid "" "$ guix search crypto library | \\\n" @@ -9739,23 +9822,23 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3584 +#: guix-git/doc/guix.texi:3602 msgid "@xref{Selection Expressions,,, recutils, GNU recutils manual}, for more information on @dfn{selection expressions} for @code{recsel -e}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3585 +#: guix-git/doc/guix.texi:3603 #, no-wrap msgid "--show=@var{package}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3589 +#: guix-git/doc/guix.texi:3607 msgid "Show details about @var{package}, taken from the list of available packages, in @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:3594 +#: guix-git/doc/guix.texi:3612 #, no-wrap msgid "" "$ guix package --show=guile | recsel -p name,version\n" @@ -9765,7 +9848,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3597 +#: guix-git/doc/guix.texi:3615 #, no-wrap msgid "" "name: guile\n" @@ -9774,7 +9857,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3601 +#: guix-git/doc/guix.texi:3619 #, no-wrap msgid "" "name: guile\n" @@ -9783,12 +9866,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3605 +#: guix-git/doc/guix.texi:3623 msgid "You may also specify the full name of a package to only get details about a specific version of it (this time using the @command{guix show} alias):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3609 +#: guix-git/doc/guix.texi:3627 #, no-wrap msgid "" "$ guix show guile@@3.0.5 | recsel -p name,version\n" @@ -9797,297 +9880,297 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3611 +#: guix-git/doc/guix.texi:3629 #, no-wrap msgid "--list-installed[=@var{regexp}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3612 +#: guix-git/doc/guix.texi:3630 #, no-wrap msgid "-I [@var{regexp}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3616 +#: guix-git/doc/guix.texi:3634 msgid "List the currently installed packages in the specified profile, with the most recently installed packages shown last. When @var{regexp} is specified, list only installed packages whose name matches @var{regexp}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3622 +#: guix-git/doc/guix.texi:3640 msgid "For each installed package, print the following items, separated by tabs: the package name, its version string, the part of the package that is installed (for instance, @code{out} for the default output, @code{include} for its headers, etc.), and the path of this package in the store." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3623 +#: guix-git/doc/guix.texi:3641 #, no-wrap msgid "--list-available[=@var{regexp}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3624 +#: guix-git/doc/guix.texi:3642 #, no-wrap msgid "-A [@var{regexp}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3628 +#: guix-git/doc/guix.texi:3646 msgid "List packages currently available in the distribution for this system (@pxref{GNU Distribution}). When @var{regexp} is specified, list only available packages whose name matches @var{regexp}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3632 +#: guix-git/doc/guix.texi:3650 msgid "For each package, print the following items separated by tabs: its name, its version string, the parts of the package (@pxref{Packages with Multiple Outputs}), and the source location of its definition." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3633 guix-git/doc/guix.texi:4485 +#: guix-git/doc/guix.texi:3651 guix-git/doc/guix.texi:4503 #, no-wrap msgid "--list-generations[=@var{pattern}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3634 guix-git/doc/guix.texi:4486 +#: guix-git/doc/guix.texi:3652 guix-git/doc/guix.texi:4504 #, no-wrap msgid "-l [@var{pattern}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3640 +#: guix-git/doc/guix.texi:3658 msgid "Return a list of generations along with their creation dates; for each generation, show the installed packages, with the most recently installed packages shown last. Note that the zeroth generation is never shown." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3645 +#: guix-git/doc/guix.texi:3663 msgid "For each installed package, print the following items, separated by tabs: the name of a package, its version string, the part of the package that is installed (@pxref{Packages with Multiple Outputs}), and the location of this package in the store." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3648 +#: guix-git/doc/guix.texi:3666 msgid "When @var{pattern} is used, the command returns only matching generations. Valid patterns include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3650 +#: guix-git/doc/guix.texi:3668 #, no-wrap msgid "@emph{Integers and comma-separated integers}. Both patterns denote" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3653 +#: guix-git/doc/guix.texi:3671 msgid "generation numbers. For instance, @option{--list-generations=1} returns the first one." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3656 +#: guix-git/doc/guix.texi:3674 msgid "And @option{--list-generations=1,8,2} outputs three generations in the specified order. Neither spaces nor trailing commas are allowed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3657 +#: guix-git/doc/guix.texi:3675 #, no-wrap msgid "@emph{Ranges}. @option{--list-generations=2..9} prints the" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3660 +#: guix-git/doc/guix.texi:3678 msgid "specified generations and everything in between. Note that the start of a range must be smaller than its end." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3664 +#: guix-git/doc/guix.texi:3682 msgid "It is also possible to omit the endpoint. For example, @option{--list-generations=2..}, returns all generations starting from the second one." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3665 +#: guix-git/doc/guix.texi:3683 #, no-wrap msgid "@emph{Durations}. You can also get the last @emph{N}@tie{}days, weeks," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:3669 +#: guix-git/doc/guix.texi:3687 msgid "or months by passing an integer along with the first letter of the duration. For example, @option{--list-generations=20d} lists generations that are up to 20 days old." msgstr "" #. type: item -#: guix-git/doc/guix.texi:3671 guix-git/doc/guix.texi:4510 +#: guix-git/doc/guix.texi:3689 guix-git/doc/guix.texi:4528 #, no-wrap msgid "--delete-generations[=@var{pattern}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:3672 guix-git/doc/guix.texi:4511 +#: guix-git/doc/guix.texi:3690 guix-git/doc/guix.texi:4529 #, no-wrap msgid "-d [@var{pattern}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3675 guix-git/doc/guix.texi:4514 +#: guix-git/doc/guix.texi:3693 guix-git/doc/guix.texi:4532 msgid "When @var{pattern} is omitted, delete all generations except the current one." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3681 guix-git/doc/guix.texi:4520 +#: guix-git/doc/guix.texi:3699 guix-git/doc/guix.texi:4538 msgid "This command accepts the same patterns as @option{--list-generations}. When @var{pattern} is specified, delete the matching generations. When @var{pattern} specifies a duration, generations @emph{older} than the specified duration match. For instance, @option{--delete-generations=1m} deletes generations that are more than one month old." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3684 +#: guix-git/doc/guix.texi:3702 msgid "If the current generation matches, it is @emph{not} deleted. Also, the zeroth generation is never deleted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3687 guix-git/doc/guix.texi:4525 +#: guix-git/doc/guix.texi:3705 guix-git/doc/guix.texi:4543 msgid "Note that deleting generations prevents rolling back to them. Consequently, this command must be used with care." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3688 +#: guix-git/doc/guix.texi:3706 #, no-wrap msgid "manifest, exporting" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:3690 +#: guix-git/doc/guix.texi:3708 msgid "export-manifest" msgstr "" #. type: item -#: guix-git/doc/guix.texi:3690 +#: guix-git/doc/guix.texi:3708 #, no-wrap msgid "--export-manifest" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3693 +#: guix-git/doc/guix.texi:3711 msgid "Write to standard output a manifest suitable for @option{--manifest} corresponding to the chosen profile(s)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3697 +#: guix-git/doc/guix.texi:3715 msgid "This option is meant to help you migrate from the ``imperative'' operating mode---running @command{guix install}, @command{guix upgrade}, etc.---to the declarative mode that @option{--manifest} offers." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3702 +#: guix-git/doc/guix.texi:3720 msgid "Be aware that the resulting manifest @emph{approximates} what your profile actually contains; for instance, depending on how your profile was created, it can refer to packages or package versions that are not exactly what you specified." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3707 +#: guix-git/doc/guix.texi:3725 msgid "Keep in mind that a manifest is purely symbolic: it only contains package names and possibly versions, and their meaning varies over time. If you wish to ``pin'' channels to the revisions that were used to build the profile(s), see @option{--export-channels} below." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3708 +#: guix-git/doc/guix.texi:3726 #, fuzzy, no-wrap msgid "pinning, channel revisions of a profile" msgstr "和其它版本的Guix交互。" #. type: item -#: guix-git/doc/guix.texi:3709 +#: guix-git/doc/guix.texi:3727 #, no-wrap msgid "--export-channels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:3713 +#: guix-git/doc/guix.texi:3731 msgid "Write to standard output the list of channels used by the chosen profile(s), in a format suitable for @command{guix pull --channels} or @command{guix time-machine --channels} (@pxref{Channels})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3717 +#: guix-git/doc/guix.texi:3735 msgid "Together with @option{--export-manifest}, this option provides information allowing you to replicate the current profile (@pxref{Replicating Guix})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3725 +#: guix-git/doc/guix.texi:3743 msgid "However, note that the output of this command @emph{approximates} what was actually used to build this profile. In particular, a single profile might have been built from several different revisions of the same channel. In that case, @option{--export-manifest} chooses the last one and writes the list of other revisions in a comment. If you really need to pick packages from different channel revisions, you can use inferiors in your manifest to do so (@pxref{Inferiors})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:3730 +#: guix-git/doc/guix.texi:3748 msgid "Together with @option{--export-manifest}, this is a good starting point if you are willing to migrate from the ``imperative'' model to the fully declarative model consisting of a manifest file along with a channels file pinning the exact channel revision(s) you want." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3737 +#: guix-git/doc/guix.texi:3755 msgid "Finally, since @command{guix package} may actually start build processes, it supports all the common build options (@pxref{Common Build Options}). It also supports package transformation options, such as @option{--with-source}, and preserves them across upgrades (@pxref{Package Transformation Options})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3742 +#: guix-git/doc/guix.texi:3760 #, no-wrap msgid "pre-built binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3748 +#: guix-git/doc/guix.texi:3766 msgid "Guix supports transparent source/binary deployment, which means that it can either build things locally, or download pre-built items from a server, or both. We call these pre-built items @dfn{substitutes}---they are substitutes for local build results. In many cases, downloading a substitute is much faster than building things locally." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3753 +#: guix-git/doc/guix.texi:3771 msgid "Substitutes can be anything resulting from a derivation build (@pxref{Derivations}). Of course, in the common case, they are pre-built package binaries, but source tarballs, for instance, which also result from derivation builds, can be available as substitutes." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3767 +#: guix-git/doc/guix.texi:3785 #, no-wrap msgid "build farm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3778 +#: guix-git/doc/guix.texi:3796 msgid "@code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} are both front-ends to official build farms that build packages from Guix continuously for some architectures, and make them available as substitutes. These are the default source of substitutes; which can be overridden by passing the @option{--substitute-urls} option either to @command{guix-daemon} (@pxref{daemon-substitute-urls,, @code{guix-daemon --substitute-urls}}) or to client tools such as @command{guix package} (@pxref{client-substitute-urls,, client @option{--substitute-urls} option})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3784 +#: guix-git/doc/guix.texi:3802 msgid "Substitute URLs can be either HTTP or HTTPS. HTTPS is recommended because communications are encrypted; conversely, using HTTP makes all communications visible to an eavesdropper, who could use the information gathered to determine, for instance, whether your system has unpatched security vulnerabilities." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3793 +#: guix-git/doc/guix.texi:3811 msgid "Substitutes from the official build farms are enabled by default when using Guix System (@pxref{GNU Distribution}). However, they are disabled by default when using Guix on a foreign distribution, unless you have explicitly enabled them via one of the recommended installation steps (@pxref{Installation}). The following paragraphs describe how to enable or disable substitutes for the official build farm; the same procedure can also be used to enable substitutes for any other substitute server." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3797 +#: guix-git/doc/guix.texi:3815 #, no-wrap msgid "security" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3799 +#: guix-git/doc/guix.texi:3817 #, no-wrap msgid "access control list (ACL), for substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3800 +#: guix-git/doc/guix.texi:3818 #, no-wrap msgid "ACL (access control list), for substitutes" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3806 +#: guix-git/doc/guix.texi:3824 msgid "To allow Guix to download substitutes from @code{@value{SUBSTITUTE-SERVER-1}}, @code{@value{SUBSTITUTE-SERVER-2}} or a mirror, you must add the relevant public key to the access control list (ACL) of archive imports, using the @command{guix archive} command (@pxref{Invoking guix archive}). Doing so implies that you trust the substitute server to not be compromised and to serve genuine substitutes." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:3811 +#: guix-git/doc/guix.texi:3829 msgid "If you are using Guix System, you can skip this section: Guix System authorizes substitutes from @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} by default." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3819 +#: guix-git/doc/guix.texi:3837 msgid "The public keys for each of the project maintained substitute servers are installed along with Guix, in @code{@var{prefix}/share/guix/}, where @var{prefix} is the installation prefix of Guix. If you installed Guix from source, make sure you checked the GPG signature of @file{guix-@value{VERSION}.tar.gz}, which contains this public key file. Then, you can run something like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3823 +#: guix-git/doc/guix.texi:3841 #, no-wrap msgid "" "# guix archive --authorize < @var{prefix}/share/guix/@value{SUBSTITUTE-SERVER-1}.pub\n" @@ -10097,12 +10180,12 @@ msgstr "" "# guix archive --authorize < @var{prefix}/share/guix/@value{SUBSTITUTE-SERVER-2}.pub\n" #. type: Plain text -#: guix-git/doc/guix.texi:3827 +#: guix-git/doc/guix.texi:3845 msgid "Once this is in place, the output of a command like @code{guix build} should change from something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3836 +#: guix-git/doc/guix.texi:3854 #, no-wrap msgid "" "$ guix build emacs --dry-run\n" @@ -10115,12 +10198,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3840 +#: guix-git/doc/guix.texi:3858 msgid "to something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3849 +#: guix-git/doc/guix.texi:3867 #, no-wrap msgid "" "$ guix build emacs --dry-run\n" @@ -10133,49 +10216,49 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3856 +#: guix-git/doc/guix.texi:3874 msgid "The text changed from ``The following derivations would be built'' to ``112.3 MB would be downloaded''. This indicates that substitutes from the configured substitute servers are usable and will be downloaded, when possible, for future builds." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3857 +#: guix-git/doc/guix.texi:3875 #, no-wrap msgid "substitutes, how to disable" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3863 +#: guix-git/doc/guix.texi:3881 msgid "The substitute mechanism can be disabled globally by running @code{guix-daemon} with @option{--no-substitutes} (@pxref{Invoking guix-daemon}). It can also be disabled temporarily by passing the @option{--no-substitutes} option to @command{guix package}, @command{guix build}, and other command-line tools." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3867 +#: guix-git/doc/guix.texi:3885 #, fuzzy, no-wrap msgid "substitute servers, adding more" msgstr "授权substitute服务器。" #. type: Plain text -#: guix-git/doc/guix.texi:3874 +#: guix-git/doc/guix.texi:3892 msgid "Guix can look up and fetch substitutes from several servers. This is useful when you are using packages from additional channels for which the official server does not have substitutes but another server provides them. Another situation where this is useful is when you would prefer to download from your organization's substitute server, resorting to the official server only as a fallback or dismissing it altogether." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3879 +#: guix-git/doc/guix.texi:3897 msgid "You can give Guix a list of substitute server URLs and it will check them in the specified order. You also need to explicitly authorize the public keys of substitute servers to instruct Guix to accept the substitutes they sign." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3886 +#: guix-git/doc/guix.texi:3904 msgid "On Guix System, this is achieved by modifying the configuration of the @code{guix} service. Since the @code{guix} service is part of the default lists of services, @code{%base-services} and @code{%desktop-services}, you can use @code{modify-services} to change its configuration and add the URLs and substitute keys that you want (@pxref{Service Reference, @code{modify-services}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3892 +#: guix-git/doc/guix.texi:3910 msgid "As an example, suppose you want to fetch substitutes from @code{guix.example.org} and to authorize the signing key of that server, in addition to the default @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}}. The resulting operating system configuration will look something like:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:3909 +#: guix-git/doc/guix.texi:3927 #, no-wrap msgid "" "(operating-system\n" @@ -10196,12 +10279,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3916 +#: guix-git/doc/guix.texi:3934 msgid "This assumes that the file @file{key.pub} contains the signing key of @code{guix.example.org}. With this change in place in your operating system configuration file (say @file{/etc/config.scm}), you can reconfigure and restart the @code{guix-daemon} service or reboot so the changes take effect:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3920 +#: guix-git/doc/guix.texi:3938 #, no-wrap msgid "" "$ sudo guix system reconfigure /etc/config.scm\n" @@ -10209,28 +10292,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3924 +#: guix-git/doc/guix.texi:3942 msgid "If you're running Guix on a ``foreign distro'', you would instead take the following steps to get substitutes from additional servers:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:3933 +#: guix-git/doc/guix.texi:3951 msgid "Edit the service configuration file for @code{guix-daemon}; when using systemd, this is normally @file{/etc/systemd/system/guix-daemon.service}. Add the @option{--substitute-urls} option on the @command{guix-daemon} command line and list the URLs of interest (@pxref{daemon-substitute-urls, @code{guix-daemon --substitute-urls}}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3936 +#: guix-git/doc/guix.texi:3954 #, no-wrap msgid "@dots{} --substitute-urls='https://guix.example.org @value{SUBSTITUTE-URLS}'\n" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:3940 +#: guix-git/doc/guix.texi:3958 msgid "Restart the daemon. For systemd, it goes like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3944 +#: guix-git/doc/guix.texi:3962 #, no-wrap msgid "" "systemctl daemon-reload\n" @@ -10238,651 +10321,651 @@ msgid "" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:3948 +#: guix-git/doc/guix.texi:3966 msgid "Authorize the key of the new server (@pxref{Invoking guix archive}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3951 +#: guix-git/doc/guix.texi:3969 #, fuzzy, no-wrap msgid "guix archive --authorize < key.pub\n" msgstr "# guix archive --authorize < master-public-key.txt\n" #. type: enumerate -#: guix-git/doc/guix.texi:3955 +#: guix-git/doc/guix.texi:3973 msgid "Again this assumes @file{key.pub} contains the public key that @code{guix.example.org} uses to sign substitutes." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3964 +#: guix-git/doc/guix.texi:3982 msgid "Now you're all set! Substitutes will be preferably taken from @code{https://guix.example.org}, using @code{@value{SUBSTITUTE-SERVER-1}} then @code{@value{SUBSTITUTE-SERVER-2}} as fallback options. Of course you can list as many substitute servers as you like, with the caveat that substitute lookup can be slowed down if too many servers need to be contacted." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3968 +#: guix-git/doc/guix.texi:3986 msgid "Note that there are also situations where one may want to add the URL of a substitute server @emph{without} authorizing its key. @xref{Substitute Authentication}, to understand this fine point." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:3972 +#: guix-git/doc/guix.texi:3990 #, no-wrap msgid "digital signatures" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3976 +#: guix-git/doc/guix.texi:3994 msgid "Guix detects and raises an error when attempting to use a substitute that has been tampered with. Likewise, it ignores substitutes that are not signed, or that are not signed by one of the keys listed in the ACL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3982 +#: guix-git/doc/guix.texi:4000 msgid "There is one exception though: if an unauthorized server provides substitutes that are @emph{bit-for-bit identical} to those provided by an authorized server, then the unauthorized server becomes eligible for downloads. For example, assume we have chosen two substitute servers with this option:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:3985 +#: guix-git/doc/guix.texi:4003 #, no-wrap msgid "--substitute-urls=\"https://a.example.org https://b.example.org\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:3996 +#: guix-git/doc/guix.texi:4014 msgid "If the ACL contains only the key for @samp{b.example.org}, and if @samp{a.example.org} happens to serve the @emph{exact same} substitutes, then Guix will download substitutes from @samp{a.example.org} because it comes first in the list and can be considered a mirror of @samp{b.example.org}. In practice, independent build machines usually produce the same binaries, thanks to bit-reproducible builds (see below)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4003 +#: guix-git/doc/guix.texi:4021 msgid "When using HTTPS, the server's X.509 certificate is @emph{not} validated (in other words, the server is not authenticated), contrary to what HTTPS clients such as Web browsers usually do. This is because Guix authenticates substitute information itself, as explained above, which is what we care about (whereas X.509 certificates are about authenticating bindings between domain names and public keys)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4015 +#: guix-git/doc/guix.texi:4033 msgid "Substitutes are downloaded over HTTP or HTTPS@. The @env{http_proxy} and @env{https_proxy} environment variables can be set in the environment of @command{guix-daemon} and are honored for downloads of substitutes. Note that the value of those environment variables in the environment where @command{guix build}, @command{guix package}, and other client commands are run has @emph{absolutely no effect}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4024 +#: guix-git/doc/guix.texi:4042 msgid "Even when a substitute for a derivation is available, sometimes the substitution attempt will fail. This can happen for a variety of reasons: the substitute server might be offline, the substitute may recently have been deleted, the connection might have been interrupted, etc." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4038 +#: guix-git/doc/guix.texi:4056 msgid "When substitutes are enabled and a substitute for a derivation is available, but the substitution attempt fails, Guix will attempt to build the derivation locally depending on whether or not @option{--fallback} was given (@pxref{fallback-option,, common build option @option{--fallback}}). Specifically, if @option{--fallback} was omitted, then no local build will be performed, and the derivation is considered to have failed. However, if @option{--fallback} was given, then Guix will attempt to build the derivation locally, and the success or failure of the derivation depends on the success or failure of the local build. Note that when substitutes are disabled or no substitute is available for the derivation in question, a local build will @emph{always} be performed, regardless of whether or not @option{--fallback} was given." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4043 +#: guix-git/doc/guix.texi:4061 msgid "To get an idea of how many substitutes are available right now, you can try running the @command{guix weather} command (@pxref{Invoking guix weather}). This command provides statistics on the substitutes provided by a server." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4047 +#: guix-git/doc/guix.texi:4065 #, no-wrap msgid "trust, of pre-built binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4057 +#: guix-git/doc/guix.texi:4075 msgid "Today, each individual's control over their own computing is at the mercy of institutions, corporations, and groups with enough power and determination to subvert the computing infrastructure and exploit its weaknesses. While using substitutes can be convenient, we encourage users to also build on their own, or even run their own build farm, such that the project run substitute servers are less of an interesting target. One way to help is by publishing the software you build using @command{guix publish} so that others have one more choice of server to download substitutes from (@pxref{Invoking guix publish})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4069 +#: guix-git/doc/guix.texi:4087 msgid "Guix has the foundations to maximize build reproducibility (@pxref{Features}). In most cases, independent builds of a given package or derivation should yield bit-identical results. Thus, through a diverse set of independent package builds, we can strengthen the integrity of our systems. The @command{guix challenge} command aims to help users assess substitute servers, and to assist developers in finding out about non-deterministic package builds (@pxref{Invoking guix challenge}). Similarly, the @option{--check} option of @command{guix build} allows users to check whether previously-installed substitutes are genuine by rebuilding them locally (@pxref{build-check, @command{guix build --check}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4073 +#: guix-git/doc/guix.texi:4091 msgid "In the future, we want Guix to have support to publish and retrieve binaries to/from other users, in a peer-to-peer fashion. If you would like to discuss this project, join us on @email{guix-devel@@gnu.org}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4077 +#: guix-git/doc/guix.texi:4095 #, no-wrap msgid "multiple-output packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4078 +#: guix-git/doc/guix.texi:4096 #, no-wrap msgid "package outputs" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4079 +#: guix-git/doc/guix.texi:4097 #, no-wrap msgid "outputs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4089 +#: guix-git/doc/guix.texi:4107 msgid "Often, packages defined in Guix have a single @dfn{output}---i.e., the source package leads to exactly one directory in the store. When running @command{guix install glibc}, one installs the default output of the GNU libc package; the default output is called @code{out}, but its name can be omitted as shown in this command. In this particular case, the default output of @code{glibc} contains all the C header files, shared libraries, static libraries, Info documentation, and other supporting files." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4097 +#: guix-git/doc/guix.texi:4115 msgid "Sometimes it is more appropriate to separate the various types of files produced from a single source package into separate outputs. For instance, the GLib C library (used by GTK+ and related packages) installs more than 20 MiB of reference documentation as HTML pages. To save space for users who do not need it, the documentation goes to a separate output, called @code{doc}. To install the main GLib output, which contains everything but the documentation, one would run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4100 +#: guix-git/doc/guix.texi:4118 #, no-wrap msgid "guix install glib\n" msgstr "guix install glib\n" #. type: item -#: guix-git/doc/guix.texi:4102 guix-git/doc/guix.texi:36368 -#: guix-git/doc/guix.texi:36425 +#: guix-git/doc/guix.texi:4120 guix-git/doc/guix.texi:36858 +#: guix-git/doc/guix.texi:36915 #, no-wrap msgid "documentation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4104 +#: guix-git/doc/guix.texi:4122 msgid "The command to install its documentation is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4107 +#: guix-git/doc/guix.texi:4125 #, no-wrap msgid "guix install glib:doc\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4118 +#: guix-git/doc/guix.texi:4136 msgid "Some packages install programs with different ``dependency footprints''. For instance, the WordNet package installs both command-line tools and graphical user interfaces (GUIs). The former depend solely on the C library, whereas the latter depend on Tcl/Tk and the underlying X libraries. In this case, we leave the command-line tools in the default output, whereas the GUIs are in a separate output. This allows users who do not need the GUIs to save space. The @command{guix size} command can help find out about such situations (@pxref{Invoking guix size}). @command{guix graph} can also be helpful (@pxref{Invoking guix graph})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4126 +#: guix-git/doc/guix.texi:4144 msgid "There are several such multiple-output packages in the GNU distribution. Other conventional output names include @code{lib} for libraries and possibly header files, @code{bin} for stand-alone programs, and @code{debug} for debugging information (@pxref{Installing Debugging Files}). The outputs of a packages are listed in the third column of the output of @command{guix package --list-available} (@pxref{Invoking guix package})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4129 +#: guix-git/doc/guix.texi:4147 #, no-wrap msgid "Invoking @command{guix gc}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4131 +#: guix-git/doc/guix.texi:4149 #, no-wrap msgid "garbage collector" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4132 +#: guix-git/doc/guix.texi:4150 #, no-wrap msgid "disk space" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4138 +#: guix-git/doc/guix.texi:4156 msgid "Packages that are installed, but not used, may be @dfn{garbage-collected}. The @command{guix gc} command allows users to explicitly run the garbage collector to reclaim space from the @file{/gnu/store} directory. It is the @emph{only} way to remove files from @file{/gnu/store}---removing files or directories manually may break it beyond repair!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4149 +#: guix-git/doc/guix.texi:4167 msgid "The garbage collector has a set of known @dfn{roots}: any file under @file{/gnu/store} reachable from a root is considered @dfn{live} and cannot be deleted; any other file is considered @dfn{dead} and may be deleted. The set of garbage collector roots (``GC roots'' for short) includes default user profiles; by default, the symlinks under @file{/var/guix/gcroots} represent these GC roots. New GC roots can be added with @command{guix build --root}, for example (@pxref{Invoking guix build}). The @command{guix gc --list-roots} command lists them." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4155 +#: guix-git/doc/guix.texi:4173 msgid "Prior to running @code{guix gc --collect-garbage} to make space, it is often useful to remove old generations from user profiles; that way, old package builds referenced by those generations can be reclaimed. This is achieved by running @code{guix package --delete-generations} (@pxref{Invoking guix package})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4159 +#: guix-git/doc/guix.texi:4177 msgid "Our recommendation is to run a garbage collection periodically, or when you are short on disk space. For instance, to guarantee that at least 5@tie{}GB are available on your disk, simply run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4162 +#: guix-git/doc/guix.texi:4180 #, no-wrap msgid "guix gc -F 5G\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4171 +#: guix-git/doc/guix.texi:4189 msgid "It is perfectly safe to run as a non-interactive periodic job (@pxref{Scheduled Job Execution}, for how to set up such a job). Running @command{guix gc} with no arguments will collect as much garbage as it can, but that is often inconvenient: you may find yourself having to rebuild or re-download software that is ``dead'' from the GC viewpoint but that is necessary to build other pieces of software---e.g., the compiler tool chain." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4177 +#: guix-git/doc/guix.texi:4195 msgid "The @command{guix gc} command has three modes of operation: it can be used to garbage-collect any dead files (the default), to delete specific files (the @option{--delete} option), to print garbage-collector information, or for more advanced queries. The garbage collection options are as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4179 +#: guix-git/doc/guix.texi:4197 #, no-wrap msgid "--collect-garbage[=@var{min}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4180 +#: guix-git/doc/guix.texi:4198 #, no-wrap msgid "-C [@var{min}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4184 +#: guix-git/doc/guix.texi:4202 msgid "Collect garbage---i.e., unreachable @file{/gnu/store} files and sub-directories. This is the default operation when no option is specified." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4189 +#: guix-git/doc/guix.texi:4207 msgid "When @var{min} is given, stop once @var{min} bytes have been collected. @var{min} may be a number of bytes, or it may include a unit as a suffix, such as @code{MiB} for mebibytes and @code{GB} for gigabytes (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4191 +#: guix-git/doc/guix.texi:4209 msgid "When @var{min} is omitted, collect all the garbage." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4192 +#: guix-git/doc/guix.texi:4210 #, no-wrap msgid "--free-space=@var{free}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4193 +#: guix-git/doc/guix.texi:4211 #, no-wrap msgid "-F @var{free}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4197 +#: guix-git/doc/guix.texi:4215 msgid "Collect garbage until @var{free} space is available under @file{/gnu/store}, if possible; @var{free} denotes storage space, such as @code{500MiB}, as described above." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4200 +#: guix-git/doc/guix.texi:4218 msgid "When @var{free} or more is already available in @file{/gnu/store}, do nothing and exit immediately." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4201 +#: guix-git/doc/guix.texi:4219 #, no-wrap msgid "--delete-generations[=@var{duration}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4202 +#: guix-git/doc/guix.texi:4220 #, no-wrap msgid "-d [@var{duration}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4206 +#: guix-git/doc/guix.texi:4224 msgid "Before starting the garbage collection process, delete all the generations older than @var{duration}, for all the user profiles; when run as root, this applies to all the profiles @emph{of all the users}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4210 +#: guix-git/doc/guix.texi:4228 msgid "For example, this command deletes all the generations of all your profiles that are older than 2 months (except generations that are current), and then proceeds to free space until at least 10 GiB are available:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4213 +#: guix-git/doc/guix.texi:4231 #, no-wrap msgid "guix gc -d 2m -F 10G\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4215 +#: guix-git/doc/guix.texi:4233 #, no-wrap msgid "--delete" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4216 guix-git/doc/guix.texi:5740 +#: guix-git/doc/guix.texi:4234 guix-git/doc/guix.texi:5758 #, no-wrap msgid "-D" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4220 +#: guix-git/doc/guix.texi:4238 msgid "Attempt to delete all the store files and directories specified as arguments. This fails if some of the files are not in the store, or if they are still live." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4221 +#: guix-git/doc/guix.texi:4239 #, no-wrap msgid "--list-failures" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4223 +#: guix-git/doc/guix.texi:4241 msgid "List store items corresponding to cached build failures." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4227 +#: guix-git/doc/guix.texi:4245 msgid "This prints nothing unless the daemon was started with @option{--cache-failures} (@pxref{Invoking guix-daemon, @option{--cache-failures}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4228 +#: guix-git/doc/guix.texi:4246 #, no-wrap msgid "--list-roots" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4231 +#: guix-git/doc/guix.texi:4249 msgid "List the GC roots owned by the user; when run as root, list @emph{all} the GC roots." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4232 +#: guix-git/doc/guix.texi:4250 #, no-wrap msgid "--list-busy" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4235 +#: guix-git/doc/guix.texi:4253 msgid "List store items in use by currently running processes. These store items are effectively considered GC roots: they cannot be deleted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4236 +#: guix-git/doc/guix.texi:4254 #, no-wrap msgid "--clear-failures" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4238 +#: guix-git/doc/guix.texi:4256 msgid "Remove the specified store items from the failed-build cache." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4241 +#: guix-git/doc/guix.texi:4259 msgid "Again, this option only makes sense when the daemon is started with @option{--cache-failures}. Otherwise, it does nothing." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4242 +#: guix-git/doc/guix.texi:4260 #, no-wrap msgid "--list-dead" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4245 +#: guix-git/doc/guix.texi:4263 msgid "Show the list of dead files and directories still present in the store---i.e., files and directories no longer reachable from any root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4246 +#: guix-git/doc/guix.texi:4264 #, no-wrap msgid "--list-live" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4248 +#: guix-git/doc/guix.texi:4266 msgid "Show the list of live store files and directories." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4252 +#: guix-git/doc/guix.texi:4270 msgid "In addition, the references among existing store files can be queried:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4255 +#: guix-git/doc/guix.texi:4273 #, no-wrap msgid "--references" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4256 +#: guix-git/doc/guix.texi:4274 #, no-wrap msgid "--referrers" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4257 guix-git/doc/guix.texi:13205 +#: guix-git/doc/guix.texi:4275 guix-git/doc/guix.texi:13562 #, no-wrap msgid "package dependencies" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4260 +#: guix-git/doc/guix.texi:4278 msgid "List the references (respectively, the referrers) of store files given as arguments." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4261 +#: guix-git/doc/guix.texi:4279 #, no-wrap msgid "--requisites" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4262 guix-git/doc/guix.texi:6501 +#: guix-git/doc/guix.texi:4280 guix-git/doc/guix.texi:6544 #, no-wrap msgid "-R" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4263 guix-git/doc/guix.texi:13061 -#: guix-git/doc/guix.texi:13089 guix-git/doc/guix.texi:13170 +#: guix-git/doc/guix.texi:4281 guix-git/doc/guix.texi:13418 +#: guix-git/doc/guix.texi:13446 guix-git/doc/guix.texi:13527 #, no-wrap msgid "closure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4268 +#: guix-git/doc/guix.texi:4286 msgid "List the requisites of the store files passed as arguments. Requisites include the store files themselves, their references, and the references of these, recursively. In other words, the returned list is the @dfn{transitive closure} of the store files." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4272 +#: guix-git/doc/guix.texi:4290 msgid "@xref{Invoking guix size}, for a tool to profile the size of the closure of an element. @xref{Invoking guix graph}, for a tool to visualize the graph of references." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4273 +#: guix-git/doc/guix.texi:4291 #, no-wrap msgid "--derivers" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4274 guix-git/doc/guix.texi:6815 -#: guix-git/doc/guix.texi:12917 guix-git/doc/guix.texi:13314 +#: guix-git/doc/guix.texi:4292 guix-git/doc/guix.texi:6858 +#: guix-git/doc/guix.texi:13274 guix-git/doc/guix.texi:13671 #, no-wrap msgid "derivation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4277 +#: guix-git/doc/guix.texi:4295 msgid "Return the derivation(s) leading to the given store items (@pxref{Derivations})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4279 +#: guix-git/doc/guix.texi:4297 msgid "For example, this command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4282 +#: guix-git/doc/guix.texi:4300 #, no-wrap msgid "guix gc --derivers $(guix package -I ^emacs$ | cut -f4)\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4287 +#: guix-git/doc/guix.texi:4305 msgid "returns the @file{.drv} file(s) leading to the @code{emacs} package installed in your profile." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4291 +#: guix-git/doc/guix.texi:4309 msgid "Note that there may be zero matching @file{.drv} files, for instance because these files have been garbage-collected. There can also be more than one matching @file{.drv} due to fixed-output derivations." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4295 +#: guix-git/doc/guix.texi:4313 msgid "Lastly, the following options allow you to check the integrity of the store and to control disk usage." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4298 +#: guix-git/doc/guix.texi:4316 #, no-wrap msgid "--verify[=@var{options}]" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4299 +#: guix-git/doc/guix.texi:4317 #, no-wrap msgid "integrity, of the store" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4300 +#: guix-git/doc/guix.texi:4318 #, no-wrap msgid "integrity checking" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4302 +#: guix-git/doc/guix.texi:4320 msgid "Verify the integrity of the store." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4305 +#: guix-git/doc/guix.texi:4323 msgid "By default, make sure that all the store items marked as valid in the database of the daemon actually exist in @file{/gnu/store}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4308 +#: guix-git/doc/guix.texi:4326 msgid "When provided, @var{options} must be a comma-separated list containing one or more of @code{contents} and @code{repair}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4314 +#: guix-git/doc/guix.texi:4332 msgid "When passing @option{--verify=contents}, the daemon computes the content hash of each store item and compares it against its hash in the database. Hash mismatches are reported as data corruptions. Because it traverses @emph{all the files in the store}, this command can take a long time, especially on systems with a slow disk drive." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4315 +#: guix-git/doc/guix.texi:4333 #, no-wrap msgid "repairing the store" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4316 guix-git/doc/guix.texi:11564 +#: guix-git/doc/guix.texi:4334 guix-git/doc/guix.texi:11878 #, no-wrap msgid "corruption, recovering from" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4324 +#: guix-git/doc/guix.texi:4342 msgid "Using @option{--verify=repair} or @option{--verify=contents,repair} causes the daemon to try to repair corrupt store items by fetching substitutes for them (@pxref{Substitutes}). Because repairing is not atomic, and thus potentially dangerous, it is available only to the system administrator. A lightweight alternative, when you know exactly which items in the store are corrupt, is @command{guix build --repair} (@pxref{Invoking guix build})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4325 +#: guix-git/doc/guix.texi:4343 #, no-wrap msgid "--optimize" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4329 +#: guix-git/doc/guix.texi:4347 msgid "Optimize the store by hard-linking identical files---this is @dfn{deduplication}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4335 +#: guix-git/doc/guix.texi:4353 msgid "The daemon performs deduplication after each successful build or archive import, unless it was started with @option{--disable-deduplication} (@pxref{Invoking guix-daemon, @option{--disable-deduplication}}). Thus, this option is primarily useful when the daemon was running with @option{--disable-deduplication}." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4339 +#: guix-git/doc/guix.texi:4357 #, no-wrap msgid "Invoking @command{guix pull}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4341 +#: guix-git/doc/guix.texi:4359 #, no-wrap msgid "upgrading Guix" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4342 +#: guix-git/doc/guix.texi:4360 #, no-wrap msgid "updating Guix" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:4343 +#: guix-git/doc/guix.texi:4361 #, no-wrap msgid "guix pull" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4344 +#: guix-git/doc/guix.texi:4362 #, no-wrap msgid "pull" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4345 +#: guix-git/doc/guix.texi:4363 #, fuzzy, no-wrap msgid "security, @command{guix pull}" msgstr "调用@command{guix build}" #. type: cindex -#: guix-git/doc/guix.texi:4346 +#: guix-git/doc/guix.texi:4364 #, no-wrap msgid "authenticity, of code obtained with @command{guix pull}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4356 +#: guix-git/doc/guix.texi:4374 msgid "Packages are installed or upgraded to the latest version available in the distribution currently available on your local machine. To update that distribution, along with the Guix tools, you must run @command{guix pull}: the command downloads the latest Guix source code and package descriptions, and deploys it. Source code is downloaded from a @uref{https://git-scm.com, Git} repository, by default the official GNU@tie{}Guix repository, though this can be customized. @command{guix pull} ensures that the code it downloads is @emph{authentic} by verifying that commits are signed by Guix developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4359 +#: guix-git/doc/guix.texi:4377 msgid "Specifically, @command{guix pull} downloads code from the @dfn{channels} (@pxref{Channels}) specified by one of the followings, in this order:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4363 +#: guix-git/doc/guix.texi:4381 msgid "the @option{--channels} option;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4365 +#: guix-git/doc/guix.texi:4383 msgid "the user's @file{~/.config/guix/channels.scm} file;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4367 +#: guix-git/doc/guix.texi:4385 msgid "the system-wide @file{/etc/guix/channels.scm} file;" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:4370 +#: guix-git/doc/guix.texi:4388 msgid "the built-in default channels specified in the @code{%default-channels} variable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4377 +#: guix-git/doc/guix.texi:4395 msgid "On completion, @command{guix package} will use packages and package versions from this just-retrieved copy of Guix. Not only that, but all the Guix commands and Scheme modules will also be taken from that latest version. New @command{guix} sub-commands added by the update also become available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4383 +#: guix-git/doc/guix.texi:4401 msgid "Any user can update their Guix copy using @command{guix pull}, and the effect is limited to the user who ran @command{guix pull}. For instance, when user @code{root} runs @command{guix pull}, this has no effect on the version of Guix that user @code{alice} sees, and vice versa." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4389 +#: guix-git/doc/guix.texi:4407 msgid "The result of running @command{guix pull} is a @dfn{profile} available under @file{~/.config/guix/current} containing the latest Guix. Thus, make sure to add it to the beginning of your search path so that you use the latest version, and similarly for the Info manual (@pxref{Documentation}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4393 +#: guix-git/doc/guix.texi:4411 #, no-wrap msgid "" "export PATH=\"$HOME/.config/guix/current/bin:$PATH\"\n" @@ -10890,12 +10973,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4397 +#: guix-git/doc/guix.texi:4415 msgid "The @option{--list-generations} or @option{-l} option lists past generations produced by @command{guix pull}, along with details about their provenance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4405 +#: guix-git/doc/guix.texi:4423 #, no-wrap msgid "" "$ guix pull -l\n" @@ -10908,7 +10991,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4415 +#: guix-git/doc/guix.texi:4433 #, no-wrap msgid "" "Generation 2\tJun 11 2018 11:02:49\n" @@ -10924,7 +11007,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4423 +#: guix-git/doc/guix.texi:4441 #, no-wrap msgid "" "Generation 3\tJun 13 2018 23:31:07\t(current)\n" @@ -10937,17 +11020,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4427 +#: guix-git/doc/guix.texi:4445 msgid "@xref{Invoking guix describe, @command{guix describe}}, for other ways to describe the current status of Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4432 +#: guix-git/doc/guix.texi:4450 msgid "This @code{~/.config/guix/current} profile works exactly like the profiles created by @command{guix package} (@pxref{Invoking guix package}). That is, you can list generations, roll back to the previous generation---i.e., the previous Guix---and so on:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4438 +#: guix-git/doc/guix.texi:4456 #, no-wrap msgid "" "$ guix pull --roll-back\n" @@ -10957,12 +11040,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4442 +#: guix-git/doc/guix.texi:4460 msgid "You can also use @command{guix package} (@pxref{Invoking guix package}) to manage the profile by naming it explicitly:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4447 +#: guix-git/doc/guix.texi:4465 #, no-wrap msgid "" "$ guix package -p ~/.config/guix/current --roll-back\n" @@ -10972,354 +11055,355 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4451 +#: guix-git/doc/guix.texi:4469 msgid "The @command{guix pull} command is usually invoked with no arguments, but it supports the following options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4453 guix-git/doc/guix.texi:4611 +#: guix-git/doc/guix.texi:4471 guix-git/doc/guix.texi:4629 #, no-wrap msgid "--url=@var{url}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4454 guix-git/doc/guix.texi:4612 +#: guix-git/doc/guix.texi:4472 guix-git/doc/guix.texi:4630 #, no-wrap msgid "--commit=@var{commit}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4455 guix-git/doc/guix.texi:4613 +#: guix-git/doc/guix.texi:4473 guix-git/doc/guix.texi:4631 #, no-wrap msgid "--branch=@var{branch}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4459 +#: guix-git/doc/guix.texi:4477 msgid "Download code for the @code{guix} channel from the specified @var{url}, at the given @var{commit} (a valid Git commit ID represented as a hexadecimal string), or @var{branch}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4460 guix-git/doc/guix.texi:5057 +#: guix-git/doc/guix.texi:4478 guix-git/doc/guix.texi:5075 #, no-wrap msgid "@file{channels.scm}, configuration file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4461 guix-git/doc/guix.texi:5058 +#: guix-git/doc/guix.texi:4479 guix-git/doc/guix.texi:5076 #, no-wrap msgid "configuration file for channels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4465 +#: guix-git/doc/guix.texi:4483 msgid "These options are provided for convenience, but you can also specify your configuration in the @file{~/.config/guix/channels.scm} file or using the @option{--channels} option (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4466 guix-git/doc/guix.texi:4618 +#: guix-git/doc/guix.texi:4484 guix-git/doc/guix.texi:4636 #, no-wrap msgid "--channels=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4467 guix-git/doc/guix.texi:4619 +#: guix-git/doc/guix.texi:4485 guix-git/doc/guix.texi:4637 #, no-wrap msgid "-C @var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4473 +#: guix-git/doc/guix.texi:4491 msgid "Read the list of channels from @var{file} instead of @file{~/.config/guix/channels.scm} or @file{/etc/guix/channels.scm}. @var{file} must contain Scheme code that evaluates to a list of channel objects. @xref{Channels}, for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4474 +#: guix-git/doc/guix.texi:4492 #, fuzzy, no-wrap msgid "channel news" msgstr "通道" #. type: item -#: guix-git/doc/guix.texi:4475 +#: guix-git/doc/guix.texi:4493 #, no-wrap msgid "--news" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4476 guix-git/doc/guix.texi:5864 -#: guix-git/doc/guix.texi:6247 guix-git/doc/guix.texi:35304 +#: guix-git/doc/guix.texi:4494 guix-git/doc/guix.texi:5877 +#: guix-git/doc/guix.texi:6290 guix-git/doc/guix.texi:35748 #, no-wrap msgid "-N" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4480 +#: guix-git/doc/guix.texi:4498 msgid "Display the list of packages added or upgraded since the previous generation, as well as, occasionally, news written by channel authors for their users (@pxref{Channels, Writing Channel News})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4484 +#: guix-git/doc/guix.texi:4502 msgid "The package information is the same as displayed upon @command{guix pull} completion, but without ellipses; it is also similar to the output of @command{guix pull -l} for the last generation (see below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4491 +#: guix-git/doc/guix.texi:4509 msgid "List all the generations of @file{~/.config/guix/current} or, if @var{pattern} is provided, the subset of generations that match @var{pattern}. The syntax of @var{pattern} is the same as with @code{guix package --list-generations} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4498 +#: guix-git/doc/guix.texi:4516 msgid "Roll back to the previous @dfn{generation} of @file{~/.config/guix/current}---i.e., undo the last transaction." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4522 +#: guix-git/doc/guix.texi:4540 msgid "If the current generation matches, it is @emph{not} deleted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4528 +#: guix-git/doc/guix.texi:4546 msgid "@xref{Invoking guix describe}, for a way to display information about the current generation only." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4532 +#: guix-git/doc/guix.texi:4550 msgid "Use @var{profile} instead of @file{~/.config/guix/current}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4533 guix-git/doc/guix.texi:10893 -#: guix-git/doc/guix.texi:12836 +#: guix-git/doc/guix.texi:4551 guix-git/doc/guix.texi:11207 +#: guix-git/doc/guix.texi:13162 #, no-wrap msgid "--dry-run" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4534 guix-git/doc/guix.texi:10894 -#: guix-git/doc/guix.texi:12837 guix-git/doc/guix.texi:13043 +#: guix-git/doc/guix.texi:4552 guix-git/doc/guix.texi:11208 +#: guix-git/doc/guix.texi:13163 guix-git/doc/guix.texi:13400 #, no-wrap msgid "-n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4537 +#: guix-git/doc/guix.texi:4555 msgid "Show which channel commit(s) would be used and what would be built or substituted but do not actually do it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4538 guix-git/doc/guix.texi:35323 +#: guix-git/doc/guix.texi:4556 guix-git/doc/guix.texi:35767 +#: guix-git/doc/guix.texi:38198 #, no-wrap msgid "--allow-downgrades" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4541 +#: guix-git/doc/guix.texi:4559 msgid "Allow pulling older or unrelated revisions of channels than those currently in use." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4542 +#: guix-git/doc/guix.texi:4560 #, no-wrap msgid "downgrade attacks, protection against" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4547 +#: guix-git/doc/guix.texi:4565 msgid "By default, @command{guix pull} protects against so-called ``downgrade attacks'' whereby the Git repository of a channel would be reset to an earlier or unrelated revision of itself, potentially leading you to install older, known-vulnerable versions of software packages." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4551 guix-git/doc/guix.texi:35337 +#: guix-git/doc/guix.texi:4569 guix-git/doc/guix.texi:35781 msgid "Make sure you understand its security implications before using @option{--allow-downgrades}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4553 +#: guix-git/doc/guix.texi:4571 #, fuzzy, no-wrap msgid "--disable-authentication" msgstr "--disable-deduplication" #. type: table -#: guix-git/doc/guix.texi:4555 +#: guix-git/doc/guix.texi:4573 msgid "Allow pulling channel code without authenticating it." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4556 guix-git/doc/guix.texi:5203 +#: guix-git/doc/guix.texi:4574 guix-git/doc/guix.texi:5221 #, fuzzy, no-wrap msgid "authentication, of channel code" msgstr "代码缩进" #. type: table -#: guix-git/doc/guix.texi:4561 +#: guix-git/doc/guix.texi:4579 msgid "By default, @command{guix pull} authenticates code downloaded from channels by verifying that its commits are signed by authorized developers, and raises an error if this is not the case. This option instructs it to not perform any such verification." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4565 +#: guix-git/doc/guix.texi:4583 msgid "Make sure you understand its security implications before using @option{--disable-authentication}." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4568 guix-git/doc/guix.texi:5847 -#: guix-git/doc/guix.texi:6230 guix-git/doc/guix.texi:6630 -#: guix-git/doc/guix.texi:11506 guix-git/doc/guix.texi:13188 -#: guix-git/doc/guix.texi:13453 guix-git/doc/guix.texi:14130 -#: guix-git/doc/guix.texi:35252 +#: guix-git/doc/guix.texi:4586 guix-git/doc/guix.texi:5860 +#: guix-git/doc/guix.texi:6273 guix-git/doc/guix.texi:6673 +#: guix-git/doc/guix.texi:11820 guix-git/doc/guix.texi:13545 +#: guix-git/doc/guix.texi:13810 guix-git/doc/guix.texi:14487 +#: guix-git/doc/guix.texi:35696 #, no-wrap msgid "-s @var{system}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4571 guix-git/doc/guix.texi:6633 +#: guix-git/doc/guix.texi:4589 guix-git/doc/guix.texi:6676 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of the system type of the build host." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4575 +#: guix-git/doc/guix.texi:4593 msgid "Use the bootstrap Guile to build the latest Guix. This option is only useful to Guix developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4581 +#: guix-git/doc/guix.texi:4599 msgid "The @dfn{channel} mechanism allows you to instruct @command{guix pull} which repository and branch to pull from, as well as @emph{additional} repositories containing package modules that should be deployed. @xref{Channels}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4584 +#: guix-git/doc/guix.texi:4602 msgid "In addition, @command{guix pull} supports all the common build options (@pxref{Common Build Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4586 +#: guix-git/doc/guix.texi:4604 #, fuzzy, no-wrap msgid "Invoking @command{guix time-machine}" msgstr "调用@command{guix-daemon}" #. type: command{#1} -#: guix-git/doc/guix.texi:4588 +#: guix-git/doc/guix.texi:4606 #, no-wrap msgid "guix time-machine" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4589 guix-git/doc/guix.texi:5161 +#: guix-git/doc/guix.texi:4607 guix-git/doc/guix.texi:5179 #, no-wrap msgid "pinning, channels" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4590 guix-git/doc/guix.texi:4772 -#: guix-git/doc/guix.texi:5162 +#: guix-git/doc/guix.texi:4608 guix-git/doc/guix.texi:4790 +#: guix-git/doc/guix.texi:5180 #, no-wrap msgid "replicating Guix" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4591 guix-git/doc/guix.texi:5163 +#: guix-git/doc/guix.texi:4609 guix-git/doc/guix.texi:5181 #, no-wrap msgid "reproducibility, of Guix" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4599 +#: guix-git/doc/guix.texi:4617 msgid "The @command{guix time-machine} command provides access to other revisions of Guix, for example to install older versions of packages, or to reproduce a computation in an identical environment. The revision of Guix to be used is defined by a commit or by a channel description file created by @command{guix describe} (@pxref{Invoking guix describe})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4601 guix-git/doc/guix.texi:5623 -#: guix-git/doc/guix.texi:5974 guix-git/doc/guix.texi:6753 -#: guix-git/doc/guix.texi:10689 guix-git/doc/guix.texi:10813 -#: guix-git/doc/guix.texi:11797 guix-git/doc/guix.texi:11892 -#: guix-git/doc/guix.texi:12825 guix-git/doc/guix.texi:13018 -#: guix-git/doc/guix.texi:13511 guix-git/doc/guix.texi:13884 -#: guix-git/doc/guix.texi:13973 guix-git/doc/guix.texi:14012 -#: guix-git/doc/guix.texi:14109 +#: guix-git/doc/guix.texi:4619 guix-git/doc/guix.texi:5641 +#: guix-git/doc/guix.texi:6011 guix-git/doc/guix.texi:6796 +#: guix-git/doc/guix.texi:11003 guix-git/doc/guix.texi:11127 +#: guix-git/doc/guix.texi:12111 guix-git/doc/guix.texi:12207 +#: guix-git/doc/guix.texi:13148 guix-git/doc/guix.texi:13375 +#: guix-git/doc/guix.texi:13868 guix-git/doc/guix.texi:14241 +#: guix-git/doc/guix.texi:14330 guix-git/doc/guix.texi:14369 +#: guix-git/doc/guix.texi:14466 msgid "The general syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4604 +#: guix-git/doc/guix.texi:4622 #, no-wrap msgid "guix time-machine @var{options}@dots{} -- @var{command} @var {arg}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4609 +#: guix-git/doc/guix.texi:4627 msgid "where @var{command} and @var{arg}@dots{} are passed unmodified to the @command{guix} command of the specified revision. The @var{options} that define this revision are the same as for @command{guix pull} (@pxref{Invoking guix pull}):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4617 +#: guix-git/doc/guix.texi:4635 msgid "Use the @code{guix} channel from the specified @var{url}, at the given @var{commit} (a valid Git commit ID represented as a hexadecimal string), or @var{branch}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4623 +#: guix-git/doc/guix.texi:4641 msgid "Read the list of channels from @var{file}. @var{file} must contain Scheme code that evaluates to a list of channel objects. @xref{Channels} for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4627 +#: guix-git/doc/guix.texi:4645 msgid "As for @command{guix pull}, the absence of any options means that the latest commit on the master branch will be used. The command" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4630 +#: guix-git/doc/guix.texi:4648 #, no-wrap msgid "guix time-machine -- build hello\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4635 +#: guix-git/doc/guix.texi:4653 msgid "will thus build the package @code{hello} as defined in the master branch, which is in general a newer revision of Guix than you have installed. Time travel works in both directions!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4639 +#: guix-git/doc/guix.texi:4657 msgid "Note that @command{guix time-machine} can trigger builds of channels and their dependencies, and these are controlled by the standard build options (@pxref{Common Build Options})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4647 +#: guix-git/doc/guix.texi:4665 msgid "The functionality described here is a ``technology preview'' as of version @value{VERSION}. As such, the interface is subject to change." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4649 guix-git/doc/guix.texi:10726 +#: guix-git/doc/guix.texi:4667 guix-git/doc/guix.texi:11040 #, no-wrap msgid "inferiors" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4650 +#: guix-git/doc/guix.texi:4668 #, no-wrap msgid "composition of Guix revisions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4655 +#: guix-git/doc/guix.texi:4673 msgid "Sometimes you might need to mix packages from the revision of Guix you're currently running with packages available in a different revision of Guix. Guix @dfn{inferiors} allow you to achieve that by composing different Guix revisions in arbitrary ways." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4656 guix-git/doc/guix.texi:4721 +#: guix-git/doc/guix.texi:4674 guix-git/doc/guix.texi:4739 #, no-wrap msgid "inferior packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4662 +#: guix-git/doc/guix.texi:4680 msgid "Technically, an ``inferior'' is essentially a separate Guix process connected to your main Guix process through a REPL (@pxref{Invoking guix repl}). The @code{(guix inferior)} module allows you to create inferiors and to communicate with them. It also provides a high-level interface to browse and manipulate the packages that an inferior provides---@dfn{inferior packages}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4672 +#: guix-git/doc/guix.texi:4690 msgid "When combined with channels (@pxref{Channels}), inferiors provide a simple way to interact with a separate revision of Guix. For example, let's assume you want to install in your profile the current @code{guile} package, along with the @code{guile-json} as it existed in an older revision of Guix---perhaps because the newer @code{guile-json} has an incompatible API and you want to run your code against the old API@. To do that, you could write a manifest for use by @code{guix package --manifest} (@pxref{Invoking guix package}); in that manifest, you would create an inferior for that old Guix revision you care about, and you would look up the @code{guile-json} package in the inferior:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4676 +#: guix-git/doc/guix.texi:4694 #, no-wrap msgid "" "(use-modules (guix inferior) (guix channels)\n" @@ -11328,7 +11412,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4685 +#: guix-git/doc/guix.texi:4703 #, no-wrap msgid "" "(define channels\n" @@ -11343,7 +11427,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4689 +#: guix-git/doc/guix.texi:4707 #, no-wrap msgid "" "(define inferior\n" @@ -11353,7 +11437,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:4695 +#: guix-git/doc/guix.texi:4713 #, no-wrap msgid "" ";; Now create a manifest with the current \"guile\" package\n" @@ -11364,186 +11448,186 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4700 +#: guix-git/doc/guix.texi:4718 msgid "On its first run, @command{guix package --manifest} might have to build the channel you specified before it can create the inferior; subsequent runs will be much faster because the Guix revision will be cached." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4703 +#: guix-git/doc/guix.texi:4721 msgid "The @code{(guix inferior)} module provides the following procedures to open an inferior:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4704 +#: guix-git/doc/guix.texi:4722 #, no-wrap msgid "{Scheme Procedure} inferior-for-channels @var{channels} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4709 +#: guix-git/doc/guix.texi:4727 msgid "[#:cache-directory] [#:ttl] Return an inferior for @var{channels}, a list of channels. Use the cache at @var{cache-directory}, where entries can be reclaimed after @var{ttl} seconds. This procedure opens a new connection to the build daemon." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4712 +#: guix-git/doc/guix.texi:4730 msgid "As a side effect, this procedure may build or substitute binaries for @var{channels}, which can take time." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4714 +#: guix-git/doc/guix.texi:4732 #, no-wrap msgid "{Scheme Procedure} open-inferior @var{directory} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4719 +#: guix-git/doc/guix.texi:4737 msgid "[#:command \"bin/guix\"] Open the inferior Guix in @var{directory}, running @code{@var{directory}/@var{command} repl} or equivalent. Return @code{#f} if the inferior could not be launched." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4724 +#: guix-git/doc/guix.texi:4742 msgid "The procedures listed below allow you to obtain and manipulate inferior packages." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4725 +#: guix-git/doc/guix.texi:4743 #, no-wrap msgid "{Scheme Procedure} inferior-packages @var{inferior}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4727 +#: guix-git/doc/guix.texi:4745 msgid "Return the list of packages known to @var{inferior}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4729 +#: guix-git/doc/guix.texi:4747 #, no-wrap msgid "{Scheme Procedure} lookup-inferior-packages @var{inferior} @var{name} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4734 +#: guix-git/doc/guix.texi:4752 msgid "[@var{version}] Return the sorted list of inferior packages matching @var{name} in @var{inferior}, with highest version numbers first. If @var{version} is true, return only packages with a version number prefixed by @var{version}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4736 +#: guix-git/doc/guix.texi:4754 #, no-wrap msgid "{Scheme Procedure} inferior-package? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4738 +#: guix-git/doc/guix.texi:4756 msgid "Return true if @var{obj} is an inferior package." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4740 +#: guix-git/doc/guix.texi:4758 #, no-wrap msgid "{Scheme Procedure} inferior-package-name @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4741 +#: guix-git/doc/guix.texi:4759 #, no-wrap msgid "{Scheme Procedure} inferior-package-version @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4742 +#: guix-git/doc/guix.texi:4760 #, no-wrap msgid "{Scheme Procedure} inferior-package-synopsis @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4743 +#: guix-git/doc/guix.texi:4761 #, no-wrap msgid "{Scheme Procedure} inferior-package-description @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4744 +#: guix-git/doc/guix.texi:4762 #, no-wrap msgid "{Scheme Procedure} inferior-package-home-page @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4745 +#: guix-git/doc/guix.texi:4763 #, no-wrap msgid "{Scheme Procedure} inferior-package-location @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4746 +#: guix-git/doc/guix.texi:4764 #, no-wrap msgid "{Scheme Procedure} inferior-package-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4747 +#: guix-git/doc/guix.texi:4765 #, no-wrap msgid "{Scheme Procedure} inferior-package-native-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4748 +#: guix-git/doc/guix.texi:4766 #, no-wrap msgid "{Scheme Procedure} inferior-package-propagated-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4749 +#: guix-git/doc/guix.texi:4767 #, no-wrap msgid "{Scheme Procedure} inferior-package-transitive-propagated-inputs @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4750 +#: guix-git/doc/guix.texi:4768 #, no-wrap msgid "{Scheme Procedure} inferior-package-native-search-paths @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4751 +#: guix-git/doc/guix.texi:4769 #, no-wrap msgid "{Scheme Procedure} inferior-package-transitive-native-search-paths @var{package}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:4752 +#: guix-git/doc/guix.texi:4770 #, no-wrap msgid "{Scheme Procedure} inferior-package-search-paths @var{package}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:4757 +#: guix-git/doc/guix.texi:4775 msgid "These procedures are the counterpart of package record accessors (@pxref{package Reference}). Most of them work by querying the inferior @var{package} comes from, so the inferior must still be live when you call these procedures." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4767 +#: guix-git/doc/guix.texi:4785 msgid "Inferior packages can be used transparently like any other package or file-like object in G-expressions (@pxref{G-Expressions}). They are also transparently handled by the @code{packages->manifest} procedure, which is commonly used in manifests (@pxref{Invoking guix package, the @option{--manifest} option of @command{guix package}}). Thus you can insert an inferior package pretty much anywhere you would insert a regular package: in manifests, in the @code{packages} field of your @code{operating-system} declaration, and so on." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4769 +#: guix-git/doc/guix.texi:4787 #, no-wrap msgid "Invoking @command{guix describe}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4780 +#: guix-git/doc/guix.texi:4798 msgid "Often you may want to answer questions like: ``Which revision of Guix am I using?'' or ``Which channels am I using?'' This is useful information in many situations: if you want to @emph{replicate} an environment on a different machine or user account, if you want to report a bug or to determine what change in the channels you are using caused it, or if you want to record your system state for reproducibility purposes. The @command{guix describe} command answers these questions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4784 +#: guix-git/doc/guix.texi:4802 msgid "When run from a @command{guix pull}ed @command{guix}, @command{guix describe} displays the channel(s) that it was built from, including their repository URL and commit IDs (@pxref{Channels}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4792 +#: guix-git/doc/guix.texi:4810 #, no-wrap msgid "" "$ guix describe\n" @@ -11555,17 +11639,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4801 +#: guix-git/doc/guix.texi:4819 msgid "If you're familiar with the Git version control system, this is similar in spirit to @command{git describe}; the output is also similar to that of @command{guix pull --list-generations}, but limited to the current generation (@pxref{Invoking guix pull, the @option{--list-generations} option}). Because the Git commit ID shown above unambiguously refers to a snapshot of Guix, this information is all it takes to describe the revision of Guix you're using, and also to replicate it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4804 +#: guix-git/doc/guix.texi:4822 msgid "To make it easier to replicate Guix, @command{guix describe} can also be asked to return a list of channels instead of the human-readable description above:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4817 +#: guix-git/doc/guix.texi:4835 #, no-wrap msgid "" "$ guix describe -f channels\n" @@ -11582,190 +11666,190 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4826 +#: guix-git/doc/guix.texi:4844 msgid "You can save this to a file and feed it to @command{guix pull -C} on some other machine or at a later point in time, which will instantiate @emph{this exact Guix revision} (@pxref{Invoking guix pull, the @option{-C} option}). From there on, since you're able to deploy the same revision of Guix, you can just as well @emph{replicate a complete software environment}. We humbly think that this is @emph{awesome}, and we hope you'll like it too!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4829 +#: guix-git/doc/guix.texi:4847 msgid "The details of the options supported by @command{guix describe} are as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4831 guix-git/doc/guix.texi:6431 -#: guix-git/doc/guix.texi:14242 +#: guix-git/doc/guix.texi:4849 guix-git/doc/guix.texi:6474 +#: guix-git/doc/guix.texi:14599 #, no-wrap msgid "--format=@var{format}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4832 guix-git/doc/guix.texi:6432 -#: guix-git/doc/guix.texi:14243 +#: guix-git/doc/guix.texi:4850 guix-git/doc/guix.texi:6475 +#: guix-git/doc/guix.texi:14600 #, no-wrap msgid "-f @var{format}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4834 guix-git/doc/guix.texi:14245 +#: guix-git/doc/guix.texi:4852 guix-git/doc/guix.texi:14602 msgid "Produce output in the specified @var{format}, one of:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4836 +#: guix-git/doc/guix.texi:4854 #, no-wrap msgid "human" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4838 +#: guix-git/doc/guix.texi:4856 msgid "produce human-readable output;" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4838 guix-git/doc/guix.texi:5056 +#: guix-git/doc/guix.texi:4856 guix-git/doc/guix.texi:5074 #, no-wrap msgid "channels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4842 +#: guix-git/doc/guix.texi:4860 msgid "produce a list of channel specifications that can be passed to @command{guix pull -C} or installed as @file{~/.config/guix/channels.scm} (@pxref{Invoking guix pull});" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4842 +#: guix-git/doc/guix.texi:4860 #, no-wrap msgid "channels-sans-intro" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4848 +#: guix-git/doc/guix.texi:4866 msgid "like @code{channels}, but omit the @code{introduction} field; use it to produce a channel specification suitable for Guix version 1.1.0 or earlier---the @code{introduction} field has to do with channel authentication (@pxref{Channels, Channel Authentication}) and is not supported by these older versions;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4848 guix-git/doc/guix.texi:12109 +#: guix-git/doc/guix.texi:4866 guix-git/doc/guix.texi:12424 #, no-wrap msgid "json" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4849 +#: guix-git/doc/guix.texi:4867 #, no-wrap msgid "JSON" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4851 +#: guix-git/doc/guix.texi:4869 msgid "produce a list of channel specifications in JSON format;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4851 guix-git/doc/guix.texi:14247 +#: guix-git/doc/guix.texi:4869 guix-git/doc/guix.texi:14604 #, no-wrap msgid "recutils" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4853 +#: guix-git/doc/guix.texi:4871 msgid "produce a list of channel specifications in Recutils format." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4855 +#: guix-git/doc/guix.texi:4873 #, no-wrap msgid "--list-formats" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4857 +#: guix-git/doc/guix.texi:4875 msgid "Display available formats for @option{--format} option." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4861 +#: guix-git/doc/guix.texi:4879 msgid "Display information about @var{profile}." msgstr "" #. type: section -#: guix-git/doc/guix.texi:4864 +#: guix-git/doc/guix.texi:4882 #, no-wrap msgid "Invoking @command{guix archive}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:4866 +#: guix-git/doc/guix.texi:4884 #, no-wrap msgid "guix archive" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4867 +#: guix-git/doc/guix.texi:4885 #, no-wrap msgid "archive" msgstr "归档" #. type: Plain text -#: guix-git/doc/guix.texi:4873 +#: guix-git/doc/guix.texi:4891 msgid "The @command{guix archive} command allows users to @dfn{export} files from the store into a single archive, and to later @dfn{import} them on a machine that runs Guix. In particular, it allows store files to be transferred from one machine to the store on another machine." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:4877 +#: guix-git/doc/guix.texi:4895 msgid "If you're looking for a way to produce archives in a format suitable for tools other than Guix, @pxref{Invoking guix pack}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4879 +#: guix-git/doc/guix.texi:4897 #, no-wrap msgid "exporting store items" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4881 +#: guix-git/doc/guix.texi:4899 msgid "To export store files as an archive to standard output, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4884 +#: guix-git/doc/guix.texi:4902 #, no-wrap msgid "guix archive --export @var{options} @var{specifications}...\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4891 +#: guix-git/doc/guix.texi:4909 msgid "@var{specifications} may be either store file names or package specifications, as for @command{guix package} (@pxref{Invoking guix package}). For instance, the following command creates an archive containing the @code{gui} output of the @code{git} package and the main output of @code{emacs}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4894 +#: guix-git/doc/guix.texi:4912 #, no-wrap msgid "guix archive --export git:gui /gnu/store/...-emacs-24.3 > great.nar\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4899 +#: guix-git/doc/guix.texi:4917 msgid "If the specified packages are not built yet, @command{guix archive} automatically builds them. The build process may be controlled with the common build options (@pxref{Common Build Options})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4902 +#: guix-git/doc/guix.texi:4920 msgid "To transfer the @code{emacs} package to a machine connected over SSH, one would run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4905 +#: guix-git/doc/guix.texi:4923 #, no-wrap msgid "guix archive --export -r emacs | ssh the-machine guix archive --import\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4910 +#: guix-git/doc/guix.texi:4928 msgid "Similarly, a complete user profile may be transferred from one machine to another like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:4914 +#: guix-git/doc/guix.texi:4932 #, no-wrap msgid "" "guix archive --export -r $(readlink -f ~/.guix-profile) | \\\n" @@ -11773,187 +11857,187 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4924 +#: guix-git/doc/guix.texi:4942 msgid "However, note that, in both examples, all of @code{emacs} and the profile as well as all of their dependencies are transferred (due to @option{-r}), regardless of what is already available in the store on the target machine. The @option{--missing} option can help figure out which items are missing from the target store. The @command{guix copy} command simplifies and optimizes this whole process, so this is probably what you should use in this case (@pxref{Invoking guix copy})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4925 +#: guix-git/doc/guix.texi:4943 #, no-wrap msgid "nar, archive format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4926 +#: guix-git/doc/guix.texi:4944 #, no-wrap msgid "normalized archive (nar)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4927 +#: guix-git/doc/guix.texi:4945 #, no-wrap msgid "nar bundle, archive format" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4932 +#: guix-git/doc/guix.texi:4950 msgid "Each store item is written in the @dfn{normalized archive} or @dfn{nar} format (described below), and the output of @command{guix archive --export} (and input of @command{guix archive --import}) is a @dfn{nar bundle}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4942 +#: guix-git/doc/guix.texi:4960 msgid "The nar format is comparable in spirit to `tar', but with differences that make it more appropriate for our purposes. First, rather than recording all Unix metadata for each file, the nar format only mentions the file type (regular, directory, or symbolic link); Unix permissions and owner/group are dismissed. Second, the order in which directory entries are stored always follows the order of file names according to the C locale collation order. This makes archive production fully deterministic." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4946 +#: guix-git/doc/guix.texi:4964 msgid "That nar bundle format is essentially the concatenation of zero or more nars along with metadata for each store item it contains: its file name, references, corresponding derivation, and a digital signature." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4952 +#: guix-git/doc/guix.texi:4970 msgid "When exporting, the daemon digitally signs the contents of the archive, and that digital signature is appended. When importing, the daemon verifies the signature and rejects the import in case of an invalid signature or if the signing key is not authorized." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:4954 +#: guix-git/doc/guix.texi:4972 msgid "The main options are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4956 +#: guix-git/doc/guix.texi:4974 #, no-wrap msgid "--export" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4959 +#: guix-git/doc/guix.texi:4977 msgid "Export the specified store files or packages (see below). Write the resulting archive to the standard output." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4962 +#: guix-git/doc/guix.texi:4980 msgid "Dependencies are @emph{not} included in the output, unless @option{--recursive} is passed." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:4963 guix-git/doc/guix.texi:11830 -#: guix-git/doc/guix.texi:11956 guix-git/doc/guix.texi:11981 -#: guix-git/doc/guix.texi:12013 guix-git/doc/guix.texi:12184 -#: guix-git/doc/guix.texi:12225 guix-git/doc/guix.texi:12276 -#: guix-git/doc/guix.texi:12301 guix-git/doc/guix.texi:12317 -#: guix-git/doc/guix.texi:12365 guix-git/doc/guix.texi:12401 +#: guix-git/doc/guix.texi:4981 guix-git/doc/guix.texi:12144 +#: guix-git/doc/guix.texi:12271 guix-git/doc/guix.texi:12296 +#: guix-git/doc/guix.texi:12328 guix-git/doc/guix.texi:12499 +#: guix-git/doc/guix.texi:12540 guix-git/doc/guix.texi:12591 +#: guix-git/doc/guix.texi:12616 guix-git/doc/guix.texi:12632 +#: guix-git/doc/guix.texi:12680 guix-git/doc/guix.texi:12716 #, no-wrap msgid "-r" msgstr "" #. type: item -#: guix-git/doc/guix.texi:4964 guix-git/doc/guix.texi:11829 -#: guix-git/doc/guix.texi:11955 guix-git/doc/guix.texi:11980 -#: guix-git/doc/guix.texi:12012 guix-git/doc/guix.texi:12183 -#: guix-git/doc/guix.texi:12224 guix-git/doc/guix.texi:12275 -#: guix-git/doc/guix.texi:12300 guix-git/doc/guix.texi:12316 -#: guix-git/doc/guix.texi:12364 guix-git/doc/guix.texi:12400 -#: guix-git/doc/guix.texi:12449 +#: guix-git/doc/guix.texi:4982 guix-git/doc/guix.texi:12143 +#: guix-git/doc/guix.texi:12270 guix-git/doc/guix.texi:12295 +#: guix-git/doc/guix.texi:12327 guix-git/doc/guix.texi:12498 +#: guix-git/doc/guix.texi:12539 guix-git/doc/guix.texi:12590 +#: guix-git/doc/guix.texi:12615 guix-git/doc/guix.texi:12631 +#: guix-git/doc/guix.texi:12679 guix-git/doc/guix.texi:12715 +#: guix-git/doc/guix.texi:12764 #, no-wrap msgid "--recursive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4969 +#: guix-git/doc/guix.texi:4987 msgid "When combined with @option{--export}, this instructs @command{guix archive} to include dependencies of the given items in the archive. Thus, the resulting archive is self-contained: it contains the closure of the exported store items." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4970 +#: guix-git/doc/guix.texi:4988 #, no-wrap msgid "--import" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4975 +#: guix-git/doc/guix.texi:4993 msgid "Read an archive from the standard input, and import the files listed therein into the store. Abort if the archive has an invalid digital signature, or if it is signed by a public key not among the authorized keys (see @option{--authorize} below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4976 +#: guix-git/doc/guix.texi:4994 #, no-wrap msgid "--missing" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4980 +#: guix-git/doc/guix.texi:4998 msgid "Read a list of store file names from the standard input, one per line, and write on the standard output the subset of these files missing from the store." msgstr "" #. type: item -#: guix-git/doc/guix.texi:4981 +#: guix-git/doc/guix.texi:4999 #, no-wrap msgid "--generate-key[=@var{parameters}]" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:4982 +#: guix-git/doc/guix.texi:5000 #, no-wrap msgid "signing, archives" msgstr "" #. type: table -#: guix-git/doc/guix.texi:4989 +#: guix-git/doc/guix.texi:5007 msgid "Generate a new key pair for the daemon. This is a prerequisite before archives can be exported with @option{--export}. This operation is usually instantaneous but it can take time if the system's entropy pool needs to be refilled. On Guix System, @code{guix-service-type} takes care of generating this key pair the first boot." msgstr "" #. type: table -#: guix-git/doc/guix.texi:4999 +#: guix-git/doc/guix.texi:5017 msgid "The generated key pair is typically stored under @file{/etc/guix}, in @file{signing-key.pub} (public key) and @file{signing-key.sec} (private key, which must be kept secret). When @var{parameters} is omitted, an ECDSA key using the Ed25519 curve is generated, or, for Libgcrypt versions before 1.6.0, it is a 4096-bit RSA key. Alternatively, @var{parameters} can specify @code{genkey} parameters suitable for Libgcrypt (@pxref{General public-key related Functions, @code{gcry_pk_genkey},, gcrypt, The Libgcrypt Reference Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5000 +#: guix-git/doc/guix.texi:5018 #, no-wrap msgid "--authorize" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5001 +#: guix-git/doc/guix.texi:5019 #, no-wrap msgid "authorizing, archives" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5005 +#: guix-git/doc/guix.texi:5023 msgid "Authorize imports signed by the public key passed on standard input. The public key must be in ``s-expression advanced format''---i.e., the same format as the @file{signing-key.pub} file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5012 +#: guix-git/doc/guix.texi:5030 msgid "The list of authorized keys is kept in the human-editable file @file{/etc/guix/acl}. The file contains @url{https://people.csail.mit.edu/rivest/Sexp.txt, ``advanced-format s-expressions''} and is structured as an access-control list in the @url{https://theworld.com/~cme/spki.txt, Simple Public-Key Infrastructure (SPKI)}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5013 +#: guix-git/doc/guix.texi:5031 #, no-wrap msgid "--extract=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5014 +#: guix-git/doc/guix.texi:5032 #, no-wrap msgid "-x @var{directory}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5018 +#: guix-git/doc/guix.texi:5036 msgid "Read a single-item archive as served by substitute servers (@pxref{Substitutes}) and extract it to @var{directory}. This is a low-level operation needed in only very narrow use cases; see below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5021 +#: guix-git/doc/guix.texi:5039 msgid "For example, the following command extracts the substitute for Emacs served by @code{@value{SUBSTITUTE-SERVER-1}} to @file{/tmp/emacs}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5026 +#: guix-git/doc/guix.texi:5044 #, no-wrap msgid "" "$ wget -O - \\\n" @@ -11962,35 +12046,35 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5033 +#: guix-git/doc/guix.texi:5051 msgid "Single-item archives are different from multiple-item archives produced by @command{guix archive --export}; they contain a single store item, and they do @emph{not} embed a signature. Thus this operation does @emph{no} signature verification and its output should be considered unsafe." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5037 +#: guix-git/doc/guix.texi:5055 msgid "The primary purpose of this operation is to facilitate inspection of archive contents coming from possibly untrusted substitute servers (@pxref{Invoking guix challenge})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5038 +#: guix-git/doc/guix.texi:5056 #, no-wrap msgid "--list" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5039 guix-git/doc/guix.texi:12171 -#: guix-git/doc/guix.texi:12218 +#: guix-git/doc/guix.texi:5057 guix-git/doc/guix.texi:12486 +#: guix-git/doc/guix.texi:12533 #, no-wrap msgid "-t" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5043 +#: guix-git/doc/guix.texi:5061 msgid "Read a single-item archive as served by substitute servers (@pxref{Substitutes}) and print the list of files it contains, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5048 +#: guix-git/doc/guix.texi:5066 #, no-wrap msgid "" "$ wget -O - \\\n" @@ -11999,47 +12083,47 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5059 +#: guix-git/doc/guix.texi:5077 #, no-wrap msgid "@command{guix pull}, configuration file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5060 +#: guix-git/doc/guix.texi:5078 #, no-wrap msgid "configuration of @command{guix pull}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5071 +#: guix-git/doc/guix.texi:5089 msgid "Guix and its package collection are updated by running @command{guix pull} (@pxref{Invoking guix pull}). By default @command{guix pull} downloads and deploys Guix itself from the official GNU@tie{}Guix repository. This can be customized by defining @dfn{channels} in the @file{~/.config/guix/channels.scm} file. A channel specifies a URL and branch of a Git repository to be deployed, and @command{guix pull} can be instructed to pull from one or more channels. In other words, channels can be used to @emph{customize} and to @emph{extend} Guix, as we will see below. Guix is able to take into account security concerns and deal with authenticated updates." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5089 +#: guix-git/doc/guix.texi:5107 #, no-wrap msgid "extending the package collection (channels)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5090 +#: guix-git/doc/guix.texi:5108 #, no-wrap msgid "variant packages (channels)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5094 +#: guix-git/doc/guix.texi:5112 msgid "You can specify @emph{additional channels} to pull from. To use a channel, write @code{~/.config/guix/channels.scm} to instruct @command{guix pull} to pull from it @emph{in addition} to the default Guix channel(s):" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:5095 +#: guix-git/doc/guix.texi:5113 #, no-wrap msgid "%default-channels" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5102 +#: guix-git/doc/guix.texi:5120 #, no-wrap msgid "" ";; Add variant packages to those Guix provides.\n" @@ -12050,12 +12134,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5112 +#: guix-git/doc/guix.texi:5130 msgid "Note that the snippet above is (as always!)@: Scheme code; we use @code{cons} to add a channel the list of channels that the variable @code{%default-channels} is bound to (@pxref{Pairs, @code{cons} and lists,, guile, GNU Guile Reference Manual}). With this file in place, @command{guix pull} builds not only Guix but also the package modules from your own repository. The result in @file{~/.config/guix/current} is the union of Guix with your own package modules:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5127 +#: guix-git/doc/guix.texi:5145 #, no-wrap msgid "" "$ guix pull --list-generations\n" @@ -12074,17 +12158,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5135 +#: guix-git/doc/guix.texi:5153 msgid "The output of @command{guix pull} above shows that Generation@tie{}19 includes both Guix and packages from the @code{variant-personal-packages} channel. Among the new and upgraded packages that are listed, some like @code{variant-gimp} and @code{variant-emacs-with-cool-features} might come from @code{variant-packages}, while others come from the Guix default channel." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5144 +#: guix-git/doc/guix.texi:5162 msgid "The channel called @code{guix} specifies where Guix itself---its command-line tools as well as its package collection---should be downloaded. For instance, suppose you want to update from another copy of the Guix repository at @code{example.org}, and specifically the @code{super-hacks} branch, you can write in @code{~/.config/guix/channels.scm} this specification:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5151 +#: guix-git/doc/guix.texi:5169 #, no-wrap msgid "" ";; Tell 'guix pull' to use another repo.\n" @@ -12095,17 +12179,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5157 +#: guix-git/doc/guix.texi:5175 msgid "From there on, @command{guix pull} will fetch code from the @code{super-hacks} branch of the repository at @code{example.org}. The authentication concern is addressed below ((@pxref{Channel Authentication})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5168 +#: guix-git/doc/guix.texi:5186 msgid "The @command{guix pull --list-generations} output above shows precisely which commits were used to build this instance of Guix. We can thus replicate it, say, on another machine, by providing a channel specification in @file{~/.config/guix/channels.scm} that is ``pinned'' to these commits:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5179 +#: guix-git/doc/guix.texi:5197 #, no-wrap msgid "" ";; Deploy specific commits of my channels of interest.\n" @@ -12120,37 +12204,37 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5186 +#: guix-git/doc/guix.texi:5204 msgid "The @command{guix describe --format=channels} command can even generate this list of channels directly (@pxref{Invoking guix describe}). The resulting file can be used with the -C options of @command{guix pull} (@pxref{Invoking guix pull}) or @command{guix time-machine} (@pxref{Invoking guix time-machine})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5193 +#: guix-git/doc/guix.texi:5211 msgid "At this point the two machines run the @emph{exact same Guix}, with access to the @emph{exact same packages}. The output of @command{guix build gimp} on one machine will be exactly the same, bit for bit, as the output of the same command on the other machine. It also means both machines have access to all the source code of Guix and, transitively, to all the source code of every package it defines." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5198 +#: guix-git/doc/guix.texi:5216 msgid "This gives you super powers, allowing you to track the provenance of binary artifacts with very fine grain, and to reproduce software environments at will---some sort of ``meta reproducibility'' capabilities, if you will. @xref{Inferiors}, for another way to take advantage of these super powers." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:5203 +#: guix-git/doc/guix.texi:5221 msgid "channel-authentication" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5209 +#: guix-git/doc/guix.texi:5227 msgid "The @command{guix pull} and @command{guix time-machine} commands @dfn{authenticate} the code retrieved from channels: they make sure each commit that is fetched is signed by an authorized developer. The goal is to protect from unauthorized modifications to the channel that would lead users to run malicious code." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5214 +#: guix-git/doc/guix.texi:5232 msgid "As a user, you must provide a @dfn{channel introduction} in your channels file so that Guix knows how to authenticate its first commit. A channel specification, including its introduction, looks something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5224 +#: guix-git/doc/guix.texi:5242 #, no-wrap msgid "" "(channel\n" @@ -12164,27 +12248,27 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5230 +#: guix-git/doc/guix.texi:5248 msgid "The specification above shows the name and URL of the channel. The call to @code{make-channel-introduction} above specifies that authentication of this channel starts at commit @code{6f0d8cc@dots{}}, which is signed by the OpenPGP key with fingerprint @code{CABB A931@dots{}}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5236 +#: guix-git/doc/guix.texi:5254 msgid "For the main channel, called @code{guix}, you automatically get that information from your Guix installation. For other channels, include the channel introduction provided by the channel authors in your @file{channels.scm} file. Make sure you retrieve the channel introduction from a trusted source since that is the root of your trust." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5238 +#: guix-git/doc/guix.texi:5256 msgid "If you're curious about the authentication mechanics, read on!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5249 +#: guix-git/doc/guix.texi:5267 msgid "When running @command{guix pull}, Guix will first compile the definitions of every available package. This is an expensive operation for which substitutes (@pxref{Substitutes}) may be available. The following snippet in @file{channels.scm} will ensure that @command{guix pull} uses the latest commit with available substitutes for the package definitions: this is done by querying the continuous integration server at @url{https://ci.guix.gnu.org}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5252 +#: guix-git/doc/guix.texi:5270 #, no-wrap msgid "" "(use-modules (guix ci))\n" @@ -12192,7 +12276,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5256 +#: guix-git/doc/guix.texi:5274 #, no-wrap msgid "" "(list (channel-with-substitutes-available\n" @@ -12201,75 +12285,75 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5263 +#: guix-git/doc/guix.texi:5281 msgid "Note that this does not mean that all the packages that you will install after running @command{guix pull} will have available substitutes. It only ensures that @command{guix pull} will not try to compile package definitions. This is particularly useful when using machines with limited resources." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5267 +#: guix-git/doc/guix.texi:5285 #, no-wrap msgid "personal packages (channels)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5268 +#: guix-git/doc/guix.texi:5286 #, no-wrap msgid "channels, for personal packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5276 +#: guix-git/doc/guix.texi:5294 msgid "Let's say you have a bunch of custom package variants or personal packages that you think would make little sense to contribute to the Guix project, but would like to have these packages transparently available to you at the command line. You would first write modules containing those package definitions (@pxref{Package Modules}), maintain them in a Git repository, and then you and anyone else can use it as an additional channel to get packages from. Neat, no?" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5284 +#: guix-git/doc/guix.texi:5302 msgid "Before you, dear user, shout---``woow this is @emph{soooo coool}!''---and publish your personal channel to the world, we would like to share a few words of caution:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:5292 +#: guix-git/doc/guix.texi:5310 msgid "Before publishing a channel, please consider contributing your package definitions to Guix proper (@pxref{Contributing}). Guix as a project is open to free software of all sorts, and packages in Guix proper are readily available to all Guix users and benefit from the project's quality assurance process." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:5301 +#: guix-git/doc/guix.texi:5319 msgid "When you maintain package definitions outside Guix, we, Guix developers, consider that @emph{the compatibility burden is on you}. Remember that package modules and package definitions are just Scheme code that uses various programming interfaces (APIs). We want to remain free to change these APIs to keep improving Guix, possibly in ways that break your channel. We never change APIs gratuitously, but we will @emph{not} commit to freezing APIs either." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:5305 +#: guix-git/doc/guix.texi:5323 msgid "Corollary: if you're using an external channel and that channel breaks, please @emph{report the issue to the channel authors}, not to the Guix project." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5312 +#: guix-git/doc/guix.texi:5330 msgid "You've been warned! Having said this, we believe external channels are a practical way to exert your freedom to augment Guix' package collection and to share your improvements, which are basic tenets of @uref{https://www.gnu.org/philosophy/free-sw.html, free software}. Please email us at @email{guix-devel@@gnu.org} if you'd like to discuss this." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5324 +#: guix-git/doc/guix.texi:5342 msgid "To create a channel, create a Git repository containing your own package modules and make it available. The repository can contain anything, but a useful channel will contain Guile modules that export packages. Once you start using a channel, Guix will behave as if the root directory of that channel's Git repository has been added to the Guile load path (@pxref{Load Paths,,, guile, GNU Guile Reference Manual}). For example, if your channel contains a file at @file{my-packages/my-tools.scm} that defines a Guile module, then the module will be available under the name @code{(my-packages my-tools)}, and you will be able to use it like any other module (@pxref{Modules,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5329 +#: guix-git/doc/guix.texi:5347 msgid "As a channel author, consider bundling authentication material with your channel so that users can authenticate it. @xref{Channel Authentication}, and @ref{Specifying Channel Authorizations}, for info on how to do it." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5334 +#: guix-git/doc/guix.texi:5352 #, no-wrap msgid "subdirectory, channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5338 +#: guix-git/doc/guix.texi:5356 msgid "As a channel author, you may want to keep your channel modules in a sub-directory. If your modules are in the sub-directory @file{guix}, you must add a meta-data file @file{.guix-channel} that contains:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5343 +#: guix-git/doc/guix.texi:5361 #, no-wrap msgid "" "(channel\n" @@ -12278,29 +12362,29 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5348 +#: guix-git/doc/guix.texi:5366 #, no-wrap msgid "dependencies, channels" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5349 +#: guix-git/doc/guix.texi:5367 #, no-wrap msgid "meta-data, channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5354 +#: guix-git/doc/guix.texi:5372 msgid "Channel authors may decide to augment a package collection provided by other channels. They can declare their channel to be dependent on other channels in a meta-data file @file{.guix-channel}, which is to be placed in the root of the channel repository." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5356 +#: guix-git/doc/guix.texi:5374 msgid "The meta-data file should contain a simple S-expression like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5364 +#: guix-git/doc/guix.texi:5382 #, no-wrap msgid "" "(channel\n" @@ -12313,7 +12397,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5376 +#: guix-git/doc/guix.texi:5394 #, no-wrap msgid "" " ;; The 'introduction' bit below is optional: you would\n" @@ -12330,33 +12414,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5382 +#: guix-git/doc/guix.texi:5400 msgid "In the above example this channel is declared to depend on two other channels, which will both be fetched automatically. The modules provided by the channel will be compiled in an environment where the modules of all these declared channels are available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5386 +#: guix-git/doc/guix.texi:5404 msgid "For the sake of reliability and maintainability, you should avoid dependencies on channels that you don't control, and you should aim to keep the number of dependencies to a minimum." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5390 +#: guix-git/doc/guix.texi:5408 #, no-wrap msgid "channel authorizations" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:5404 +#: guix-git/doc/guix.texi:5422 msgid "channel-authorizations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5404 +#: guix-git/doc/guix.texi:5422 msgid "As we saw above, Guix ensures the source code it pulls from channels comes from authorized developers. As a channel author, you need to specify the list of authorized developers in the @file{.guix-authorizations} file in the channel's Git repository. The authentication rule is simple: each commit must be signed by a key listed in the @file{.guix-authorizations} file of its parent commit(s)@footnote{Git commits form a @dfn{directed acyclic graph} (DAG). Each commit can have zero or more parents; ``regular'' commits have one parent and merge commits have two parent commits. Read @uref{https://eagain.net/articles/git-for-computer-scientists/, @i{Git for Computer Scientists}} for a great overview.} The @file{.guix-authorizations} file looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5407 +#: guix-git/doc/guix.texi:5425 #, no-wrap msgid "" ";; Example '.guix-authorizations' file.\n" @@ -12364,7 +12448,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5410 +#: guix-git/doc/guix.texi:5428 #, no-wrap msgid "" "(authorizations\n" @@ -12373,7 +12457,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5417 +#: guix-git/doc/guix.texi:5435 #, no-wrap msgid "" " ((\"AD17 A21E F8AE D8F1 CC02 DBD9 F8AE D8F1 765C 61E3\"\n" @@ -12385,33 +12469,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5421 +#: guix-git/doc/guix.texi:5439 msgid "Each fingerprint is followed by optional key/value pairs, as in the example above. Currently these key/value pairs are ignored." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5426 +#: guix-git/doc/guix.texi:5444 msgid "This authentication rule creates a chicken-and-egg issue: how do we authenticate the first commit? Related to that: how do we deal with channels whose repository history contains unsigned commits and lack @file{.guix-authorizations}? And how do we fork existing channels?" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5427 +#: guix-git/doc/guix.texi:5445 #, fuzzy, no-wrap msgid "channel introduction" msgstr "介绍" #. type: Plain text -#: guix-git/doc/guix.texi:5434 +#: guix-git/doc/guix.texi:5452 msgid "Channel introductions answer these questions by describing the first commit of a channel that should be authenticated. The first time a channel is fetched with @command{guix pull} or @command{guix time-machine}, the command looks up the introductory commit and verifies that it is signed by the specified OpenPGP key. From then on, it authenticates commits according to the rule above." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5441 +#: guix-git/doc/guix.texi:5459 msgid "Additionally, your channel must provide all the OpenPGP keys that were ever mentioned in @file{.guix-authorizations}, stored as @file{.key} files, which can be either binary or ``ASCII-armored''. By default, those @file{.key} files are searched for in the branch named @code{keyring} but you can specify a different branch name in @code{.guix-channel} like so:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5446 +#: guix-git/doc/guix.texi:5464 #, no-wrap msgid "" "(channel\n" @@ -12420,59 +12504,59 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5450 +#: guix-git/doc/guix.texi:5468 msgid "To summarize, as the author of a channel, there are three things you have to do to allow users to authenticate your code:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:5456 +#: guix-git/doc/guix.texi:5474 msgid "Export the OpenPGP keys of past and present committers with @command{gpg --export} and store them in @file{.key} files, by default in a branch named @code{keyring} (we recommend making it an @dfn{orphan branch})." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:5461 +#: guix-git/doc/guix.texi:5479 msgid "Introduce an initial @file{.guix-authorizations} in the channel's repository. Do that in a signed commit (@pxref{Commit Access}, for information on how to sign Git commits.)" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:5467 +#: guix-git/doc/guix.texi:5485 msgid "Advertise the channel introduction, for instance on your channel's web page. The channel introduction, as we saw above, is the commit/key pair---i.e., the commit that introduced @file{.guix-authorizations}, and the fingerprint of the OpenPGP used to sign it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5472 +#: guix-git/doc/guix.texi:5490 msgid "Before pushing to your public Git repository, you can run @command{guix git-authenticate} to verify that you did sign all the commits you are about to push with an authorized key:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5475 +#: guix-git/doc/guix.texi:5493 #, no-wrap msgid "guix git authenticate @var{commit} @var{signer}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5480 +#: guix-git/doc/guix.texi:5498 msgid "where @var{commit} and @var{signer} are your channel introduction. @xref{Invoking guix git authenticate}, for details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5487 +#: guix-git/doc/guix.texi:5505 msgid "Publishing a signed channel requires discipline: any mistake, such as an unsigned commit or a commit signed by an unauthorized key, will prevent users from pulling from your channel---well, that's the whole point of authentication! Pay attention to merges in particular: merge commits are considered authentic if and only if they are signed by a key present in the @file{.guix-authorizations} file of @emph{both} branches." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5491 +#: guix-git/doc/guix.texi:5509 #, no-wrap msgid "primary URL, channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5494 +#: guix-git/doc/guix.texi:5512 msgid "Channel authors can indicate the primary URL of their channel's Git repository in the @file{.guix-channel} file, like so:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5499 +#: guix-git/doc/guix.texi:5517 #, no-wrap msgid "" "(channel\n" @@ -12481,38 +12565,38 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5506 +#: guix-git/doc/guix.texi:5524 msgid "This allows @command{guix pull} to determine whether it is pulling code from a mirror of the channel; when that is the case, it warns the user that the mirror might be stale and displays the primary URL@. That way, users cannot be tricked into fetching code from a stale mirror that does not receive security updates." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5510 +#: guix-git/doc/guix.texi:5528 msgid "This feature only makes sense for authenticated repositories, such as the official @code{guix} channel, for which @command{guix pull} ensures the code it fetches is authentic." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5514 +#: guix-git/doc/guix.texi:5532 #, no-wrap msgid "news, for channels" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5518 +#: guix-git/doc/guix.texi:5536 msgid "Channel authors may occasionally want to communicate to their users information about important changes in the channel. You'd send them all an email, but that's not convenient." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5523 +#: guix-git/doc/guix.texi:5541 msgid "Instead, channels can provide a @dfn{news file}; when the channel users run @command{guix pull}, that news file is automatically read and @command{guix pull --news} can display the announcements that correspond to the new commits that have been pulled, if any." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5526 +#: guix-git/doc/guix.texi:5544 msgid "To do that, channel authors must first declare the name of the news file in their @file{.guix-channel} file:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5531 +#: guix-git/doc/guix.texi:5549 #, no-wrap msgid "" "(channel\n" @@ -12521,12 +12605,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5535 +#: guix-git/doc/guix.texi:5553 msgid "The news file itself, @file{etc/news.txt} in this example, must look something like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5548 +#: guix-git/doc/guix.texi:5566 #, no-wrap msgid "" "(channel-news\n" @@ -12543,166 +12627,166 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5555 +#: guix-git/doc/guix.texi:5573 msgid "While the news file is using the Scheme syntax, avoid naming it with a @file{.scm} extension or else it will get picked up when building the channel and yield an error since it is not a valid module. Alternatively, you can move the channel module to a subdirectory and store the news file in another directory." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5560 +#: guix-git/doc/guix.texi:5578 msgid "The file consists of a list of @dfn{news entries}. Each entry is associated with a commit or tag: it describes changes made in this commit, possibly in preceding commits as well. Users see entries only the first time they obtain the commit the entry refers to." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5566 +#: guix-git/doc/guix.texi:5584 msgid "The @code{title} field should be a one-line summary while @code{body} can be arbitrarily long, and both can contain Texinfo markup (@pxref{Overview,,, texinfo, GNU Texinfo}). Both the title and body are a list of language tag/message tuples, which allows @command{guix pull} to display news in the language that corresponds to the user's locale." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5572 +#: guix-git/doc/guix.texi:5590 msgid "If you want to translate news using a gettext-based workflow, you can extract translatable strings with @command{xgettext} (@pxref{xgettext Invocation,,, gettext, GNU Gettext Utilities}). For example, assuming you write news entries in English first, the command below creates a PO file containing the strings to translate:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5575 +#: guix-git/doc/guix.texi:5593 #, no-wrap msgid "xgettext -o news.po -l scheme -ken etc/news.txt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5579 +#: guix-git/doc/guix.texi:5597 msgid "To sum up, yes, you could use your channel as a blog. But beware, this is @emph{not quite} what your users might expect." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5584 +#: guix-git/doc/guix.texi:5602 #, no-wrap msgid "software development" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5588 +#: guix-git/doc/guix.texi:5606 msgid "If you are a software developer, Guix provides tools that you should find helpful---independently of the language you're developing in. This is what this chapter is about." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5594 +#: guix-git/doc/guix.texi:5612 msgid "The @command{guix shell} command provides a convenient way to set up one-off software environments, be it for development purposes or to run a command without installing it in your profile. The @command{guix pack} command allows you to create @dfn{application bundles} that can be easily distributed to users who do not run Guix." msgstr "" #. type: section -#: guix-git/doc/guix.texi:5604 +#: guix-git/doc/guix.texi:5622 #, fuzzy, no-wrap #| msgid "Invoking @command{guix build}" msgid "Invoking @command{guix shell}" msgstr "调用@command{guix build}" #. type: cindex -#: guix-git/doc/guix.texi:5606 +#: guix-git/doc/guix.texi:5624 #, no-wrap msgid "reproducible build environments" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5607 +#: guix-git/doc/guix.texi:5625 #, no-wrap msgid "development environments" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:5608 +#: guix-git/doc/guix.texi:5626 #, no-wrap msgid "guix environment" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5609 +#: guix-git/doc/guix.texi:5627 #, no-wrap msgid "environment, package build environment" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5614 +#: guix-git/doc/guix.texi:5632 msgid "The purpose of @command{guix shell} is to make it easy to create one-off software environments, without changing one's profile. It is typically used to create development environments; it is also a convenient way to run applications without ``polluting'' your profile." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5620 +#: guix-git/doc/guix.texi:5638 msgid "The @command{guix shell} command was recently introduced to supersede @command{guix environment} (@pxref{Invoking guix environment}). If you are familiar with @command{guix environment}, you will notice that it is similar but also---we hope!---more convenient." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5626 +#: guix-git/doc/guix.texi:5644 #, no-wrap msgid "guix shell [@var{options}] [@var{package}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5631 +#: guix-git/doc/guix.texi:5649 msgid "The following example creates an environment containing Python and NumPy, building or downloading any missing package, and runs the @command{python3} command in that environment:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5634 +#: guix-git/doc/guix.texi:5652 #, no-wrap msgid "guix shell python python-numpy -- python3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5639 +#: guix-git/doc/guix.texi:5657 msgid "Development environments can be created as in the example below, which spawns an interactive shell containing all the dependencies and environment variables needed to work on Inkscape:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5642 +#: guix-git/doc/guix.texi:5660 #, no-wrap msgid "guix shell --development inkscape\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5648 +#: guix-git/doc/guix.texi:5666 msgid "Exiting the shell places the user back in the original environment before @command{guix shell} was invoked. The next garbage collection (@pxref{Invoking guix gc}) may clean up packages that were installed in the environment and that are no longer used outside of it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5655 +#: guix-git/doc/guix.texi:5673 msgid "As an added convenience, when running from a directory that contains a @file{manifest.scm} or a @file{guix.scm} file (in this order), possibly in a parent directory, @command{guix shell} automatically loads the file---provided the directory is listed in @file{~/.config/guix/shell-authorized-directories}, and only for interactive use:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5658 +#: guix-git/doc/guix.texi:5676 #, fuzzy, no-wrap #| msgid "guix pull\n" msgid "guix shell\n" msgstr "guix pull\n" #. type: Plain text -#: guix-git/doc/guix.texi:5662 +#: guix-git/doc/guix.texi:5680 msgid "This provides an easy way to define, share, and enter development environments." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5673 +#: guix-git/doc/guix.texi:5691 msgid "By default, the shell session or command runs in an @emph{augmented} environment, where the new packages are added to search path environment variables such as @code{PATH}. You can, instead, choose to create an @emph{isolated} environment containing nothing but the packages you asked for. Passing the @option{--pure} option clears environment variable definitions found in the parent environment@footnote{Be sure to use the @option{--check} option the first time you use @command{guix shell} interactively to make sure the shell does not undo the effect of @option{--pure}.}; passing @option{--container} goes one step further by spawning a @dfn{container} isolated from the rest of the system:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5676 +#: guix-git/doc/guix.texi:5694 #, no-wrap msgid "guix shell --container emacs gcc-toolchain\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5684 +#: guix-git/doc/guix.texi:5702 msgid "The command above spawns an interactive shell in a container where nothing but @code{emacs}, @code{gcc-toolchain}, and their dependencies is available. The container lacks network access and shares no files other than the current working directory with the surrounding environment. This is useful to prevent access to system-wide resources such as @file{/usr/bin} on foreign distros." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5691 +#: guix-git/doc/guix.texi:5709 msgid "This @option{--container} option can also prove useful if you wish to run a security-sensitive application, such as a web browser, in an isolated environment. For example, the command below launches Ungoogled-Chromium in an isolated environment, this time sharing network access with the host and preserving its @code{DISPLAY} environment variable, but without even sharing the current directory:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5695 +#: guix-git/doc/guix.texi:5713 #, no-wrap msgid "" "guix shell --container --network --no-cwd ungoogled-chromium \\\n" @@ -12710,18 +12794,18 @@ msgid "" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:5697 guix-git/doc/guix.texi:6008 +#: guix-git/doc/guix.texi:5715 guix-git/doc/guix.texi:6045 #, no-wrap msgid "GUIX_ENVIRONMENT" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5703 +#: guix-git/doc/guix.texi:5721 msgid "@command{guix shell} defines the @env{GUIX_ENVIRONMENT} variable in the shell it spawns; its value is the file name of the profile of this environment. This allows users to, say, define a specific prompt for development environments in their @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5709 guix-git/doc/guix.texi:6020 +#: guix-git/doc/guix.texi:5727 guix-git/doc/guix.texi:6057 #, no-wrap msgid "" "if [ -n \"$GUIX_ENVIRONMENT\" ]\n" @@ -12731,215 +12815,203 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5713 guix-git/doc/guix.texi:6024 +#: guix-git/doc/guix.texi:5731 guix-git/doc/guix.texi:6061 msgid "...@: or to browse the profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5716 guix-git/doc/guix.texi:6027 +#: guix-git/doc/guix.texi:5734 guix-git/doc/guix.texi:6064 #, no-wrap msgid "$ ls \"$GUIX_ENVIRONMENT/bin\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5719 guix-git/doc/guix.texi:6103 +#: guix-git/doc/guix.texi:5737 guix-git/doc/guix.texi:6140 msgid "The available options are summarized below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5721 guix-git/doc/guix.texi:6105 -#: guix-git/doc/guix.texi:11546 +#: guix-git/doc/guix.texi:5739 guix-git/doc/guix.texi:6142 +#: guix-git/doc/guix.texi:11860 #, no-wrap msgid "--check" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5726 +#: guix-git/doc/guix.texi:5744 msgid "Set up the environment and check whether the shell would clobber environment variables. It's a good idea to use this option the first time you run @command{guix shell} for an interactive session to make sure your setup is correct." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5730 +#: guix-git/doc/guix.texi:5748 msgid "For example, if the shell modifies the @env{PATH} environment variable, report it since you would get a different environment than what you asked for." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5738 +#: guix-git/doc/guix.texi:5756 msgid "Such problems usually indicate that the shell startup files are unexpectedly modifying those environment variables. For example, if you are using Bash, make sure that environment variables are set or modified in @file{~/.bash_profile} and @emph{not} in @file{~/.bashrc}---the former is sourced only by log-in shells. @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for details on Bash start-up files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5739 +#: guix-git/doc/guix.texi:5757 #, fuzzy, no-wrap #| msgid "Development" msgid "--development" msgstr "开发" #. type: table -#: guix-git/doc/guix.texi:5746 +#: guix-git/doc/guix.texi:5764 msgid "Cause @command{guix shell} to include in the environment the dependencies of the following package rather than the package itself. This can be combined with other packages. For instance, the command below starts an interactive shell containing the build-time dependencies of GNU@tie{}Guile, plus Autoconf, Automake, and Libtool:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5749 +#: guix-git/doc/guix.texi:5767 #, no-wrap msgid "guix shell -D guile autoconf automake libtool\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5751 guix-git/doc/guix.texi:6126 -#: guix-git/doc/guix.texi:6607 guix-git/doc/guix.texi:11421 -#: guix-git/doc/guix.texi:12494 guix-git/doc/guix.texi:12845 -#: guix-git/doc/guix.texi:13442 guix-git/doc/guix.texi:35243 -#: guix-git/doc/guix.texi:37713 +#: guix-git/doc/guix.texi:5769 guix-git/doc/guix.texi:6163 +#: guix-git/doc/guix.texi:6650 guix-git/doc/guix.texi:11735 +#: guix-git/doc/guix.texi:12809 guix-git/doc/guix.texi:13201 +#: guix-git/doc/guix.texi:13799 guix-git/doc/guix.texi:35687 +#: guix-git/doc/guix.texi:38192 #, no-wrap msgid "--expression=@var{expr}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5752 guix-git/doc/guix.texi:6127 -#: guix-git/doc/guix.texi:6608 guix-git/doc/guix.texi:11422 -#: guix-git/doc/guix.texi:12495 guix-git/doc/guix.texi:12846 -#: guix-git/doc/guix.texi:13443 guix-git/doc/guix.texi:35244 -#: guix-git/doc/guix.texi:37714 +#: guix-git/doc/guix.texi:5770 guix-git/doc/guix.texi:6164 +#: guix-git/doc/guix.texi:6651 guix-git/doc/guix.texi:11736 +#: guix-git/doc/guix.texi:12810 guix-git/doc/guix.texi:13202 +#: guix-git/doc/guix.texi:13800 guix-git/doc/guix.texi:35688 +#: guix-git/doc/guix.texi:38193 #, no-wrap msgid "-e @var{expr}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5755 guix-git/doc/guix.texi:6130 +#: guix-git/doc/guix.texi:5773 guix-git/doc/guix.texi:6167 msgid "Create an environment for the package or list of packages that @var{expr} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5757 guix-git/doc/guix.texi:6132 -#: guix-git/doc/guix.texi:12850 +#: guix-git/doc/guix.texi:5775 guix-git/doc/guix.texi:6169 +#: guix-git/doc/guix.texi:13206 msgid "For example, running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5760 +#: guix-git/doc/guix.texi:5778 #, no-wrap msgid "guix shell -D -e '(@@ (gnu packages maths) petsc-openmpi)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5764 guix-git/doc/guix.texi:6139 +#: guix-git/doc/guix.texi:5782 guix-git/doc/guix.texi:6176 msgid "starts a shell with the environment for this specific variant of the PETSc package." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5766 guix-git/doc/guix.texi:6141 +#: guix-git/doc/guix.texi:5784 guix-git/doc/guix.texi:6178 msgid "Running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5769 +#: guix-git/doc/guix.texi:5787 #, no-wrap msgid "guix shell -e '(@@ (gnu) %base-packages)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5772 guix-git/doc/guix.texi:6147 +#: guix-git/doc/guix.texi:5790 guix-git/doc/guix.texi:6184 msgid "starts a shell with all the base system packages available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5775 guix-git/doc/guix.texi:6150 +#: guix-git/doc/guix.texi:5793 guix-git/doc/guix.texi:6187 msgid "The above commands only use the default output of the given packages. To select other outputs, two element tuples can be specified:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5778 +#: guix-git/doc/guix.texi:5796 #, no-wrap msgid "guix shell -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5780 guix-git/doc/guix.texi:11395 +#: guix-git/doc/guix.texi:5798 guix-git/doc/guix.texi:11709 #, no-wrap msgid "--file=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5784 +#: guix-git/doc/guix.texi:5802 msgid "Create an environment containing the package or list of packages that the code within @var{file} evaluates to." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:5790 guix-git/doc/guix.texi:6165 +#: guix-git/doc/guix.texi:5808 guix-git/doc/guix.texi:6202 #, no-wrap msgid "@verbatiminclude environment-gdb.scm\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5794 +#: guix-git/doc/guix.texi:5812 msgid "With the file above, you can enter a development environment for GDB by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5797 +#: guix-git/doc/guix.texi:5815 #, no-wrap msgid "guix shell -D -f gdb-devel.scm\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5804 guix-git/doc/guix.texi:6172 +#: guix-git/doc/guix.texi:5822 guix-git/doc/guix.texi:6209 msgid "Create an environment for the packages contained in the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5808 guix-git/doc/guix.texi:6176 +#: guix-git/doc/guix.texi:5826 guix-git/doc/guix.texi:6213 msgid "This is similar to the same-named option in @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) and uses the same manifest files." msgstr "" -#. type: item -#: guix-git/doc/guix.texi:5809 -#, fuzzy, no-wrap -#| msgid "--no-build-hook" -msgid "--rebuild-cache" -msgstr "--no-build-hook" - -#. type: table -#: guix-git/doc/guix.texi:5814 -msgid "When using @option{--manifest}, @option{--file}, or when invoked without arguments, @command{guix shell} caches the environment so that subsequent uses are instantaneous. The cache is invalidated anytime the file is modified." -msgstr "" - #. type: table -#: guix-git/doc/guix.texi:5819 -msgid "The @option{--rebuild-cache} forces the cached environment to be refreshed even if the file has not changed. This is useful if the @command{guix.scm} or @command{manifest.scm} has external dependencies, or if its behavior depends, say, on environment variables." +#: guix-git/doc/guix.texi:5832 guix-git/doc/guix.texi:6245 +msgid "Create an environment containing the packages installed in @var{profile}. Use @command{guix package} (@pxref{Invoking guix package}) to create and manage profiles." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5820 guix-git/doc/guix.texi:6203 +#: guix-git/doc/guix.texi:5833 guix-git/doc/guix.texi:6246 #, no-wrap msgid "--pure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5824 guix-git/doc/guix.texi:6207 +#: guix-git/doc/guix.texi:5837 guix-git/doc/guix.texi:6250 msgid "Unset existing environment variables when building the new environment, except those specified with @option{--preserve} (see below). This has the effect of creating an environment in which search paths only contain package inputs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5825 guix-git/doc/guix.texi:6208 +#: guix-git/doc/guix.texi:5838 guix-git/doc/guix.texi:6251 #, no-wrap msgid "--preserve=@var{regexp}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5826 guix-git/doc/guix.texi:6209 +#: guix-git/doc/guix.texi:5839 guix-git/doc/guix.texi:6252 #, no-wrap msgid "-E @var{regexp}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5831 guix-git/doc/guix.texi:6214 +#: guix-git/doc/guix.texi:5844 guix-git/doc/guix.texi:6257 msgid "When used alongside @option{--pure}, preserve the environment variables matching @var{regexp}---in other words, put them on a ``white list'' of environment variables that must be preserved. This option can be repeated several times." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5835 +#: guix-git/doc/guix.texi:5848 #, no-wrap msgid "" "guix shell --pure --preserve=^SLURM openmpi @dots{} \\\n" @@ -12947,116 +13019,116 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5841 guix-git/doc/guix.texi:6224 +#: guix-git/doc/guix.texi:5854 guix-git/doc/guix.texi:6267 msgid "This example runs @command{mpirun} in a context where the only environment variables defined are @env{PATH}, environment variables whose name starts with @samp{SLURM}, as well as the usual ``precious'' variables (@env{HOME}, @env{USER}, etc.)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5842 guix-git/doc/guix.texi:6225 +#: guix-git/doc/guix.texi:5855 guix-git/doc/guix.texi:6268 #, no-wrap msgid "--search-paths" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5845 guix-git/doc/guix.texi:6228 +#: guix-git/doc/guix.texi:5858 guix-git/doc/guix.texi:6271 msgid "Display the environment variable definitions that make up the environment." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5849 guix-git/doc/guix.texi:6232 +#: guix-git/doc/guix.texi:5862 guix-git/doc/guix.texi:6275 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5850 guix-git/doc/guix.texi:6233 +#: guix-git/doc/guix.texi:5863 guix-git/doc/guix.texi:6276 #, no-wrap msgid "--container" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5851 guix-git/doc/guix.texi:6234 +#: guix-git/doc/guix.texi:5864 guix-git/doc/guix.texi:6277 #, no-wrap msgid "-C" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5852 guix-git/doc/guix.texi:6069 -#: guix-git/doc/guix.texi:6235 guix-git/doc/guix.texi:13998 -#: guix-git/doc/guix.texi:35211 +#: guix-git/doc/guix.texi:5865 guix-git/doc/guix.texi:6106 +#: guix-git/doc/guix.texi:6278 guix-git/doc/guix.texi:14355 +#: guix-git/doc/guix.texi:35655 #, no-wrap msgid "container" msgstr "容器" #. type: table -#: guix-git/doc/guix.texi:5858 guix-git/doc/guix.texi:6241 +#: guix-git/doc/guix.texi:5871 guix-git/doc/guix.texi:6284 msgid "Run @var{command} within an isolated container. The current working directory outside the container is mapped inside the container. Additionally, unless overridden with @option{--user}, a dummy home directory is created that matches the current user's home directory, and @file{/etc/passwd} is configured accordingly." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5862 guix-git/doc/guix.texi:6245 +#: guix-git/doc/guix.texi:5875 guix-git/doc/guix.texi:6288 msgid "The spawned process runs as the current user outside the container. Inside the container, it has the same UID and GID as the current user, unless @option{--user} is passed (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5863 guix-git/doc/guix.texi:6246 -#: guix-git/doc/guix.texi:35303 +#: guix-git/doc/guix.texi:5876 guix-git/doc/guix.texi:6289 +#: guix-git/doc/guix.texi:35747 #, no-wrap msgid "--network" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5868 guix-git/doc/guix.texi:6251 +#: guix-git/doc/guix.texi:5881 guix-git/doc/guix.texi:6294 msgid "For containers, share the network namespace with the host system. Containers created without this flag only have access to the loopback device." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5869 guix-git/doc/guix.texi:6252 +#: guix-git/doc/guix.texi:5882 guix-git/doc/guix.texi:6295 #, no-wrap msgid "--link-profile" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5870 guix-git/doc/guix.texi:6253 +#: guix-git/doc/guix.texi:5883 guix-git/doc/guix.texi:6296 #, no-wrap msgid "-P" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5878 +#: guix-git/doc/guix.texi:5891 msgid "For containers, link the environment profile to @file{~/.guix-profile} within the container and set @code{GUIX_ENVIRONMENT} to that. This is equivalent to making @file{~/.guix-profile} a symlink to the actual profile within the container. Linking will fail and abort the environment if the directory already exists, which will certainly be the case if @command{guix shell} was invoked in the user's home directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5884 guix-git/doc/guix.texi:6267 +#: guix-git/doc/guix.texi:5897 guix-git/doc/guix.texi:6310 msgid "Certain packages are configured to look in @file{~/.guix-profile} for configuration files and data;@footnote{For example, the @code{fontconfig} package inspects @file{~/.guix-profile/share/fonts} for additional fonts.} @option{--link-profile} allows these programs to behave as expected within the environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5885 guix-git/doc/guix.texi:6268 -#: guix-git/doc/guix.texi:13575 +#: guix-git/doc/guix.texi:5898 guix-git/doc/guix.texi:6311 +#: guix-git/doc/guix.texi:13932 #, no-wrap msgid "--user=@var{user}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5886 guix-git/doc/guix.texi:6269 -#: guix-git/doc/guix.texi:13576 +#: guix-git/doc/guix.texi:5899 guix-git/doc/guix.texi:6312 +#: guix-git/doc/guix.texi:13933 #, no-wrap msgid "-u @var{user}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5893 guix-git/doc/guix.texi:6276 +#: guix-git/doc/guix.texi:5906 guix-git/doc/guix.texi:6319 msgid "For containers, use the username @var{user} in place of the current user. The generated @file{/etc/passwd} entry within the container will contain the name @var{user}, the home directory will be @file{/home/@var{user}}, and no user GECOS data will be copied. Furthermore, the UID and GID inside the container are 1000. @var{user} need not exist on the system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5898 guix-git/doc/guix.texi:6281 +#: guix-git/doc/guix.texi:5911 guix-git/doc/guix.texi:6324 msgid "Additionally, any shared or exposed path (see @option{--share} and @option{--expose} respectively) whose target is within the current user's home directory will be remapped relative to @file{/home/USER}; this includes the automatic mapping of the current working directory." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5905 +#: guix-git/doc/guix.texi:5918 #, no-wrap msgid "" "# will expose paths as /home/foo/wd, /home/foo/test, and /home/foo/target\n" @@ -13067,229 +13139,270 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5910 guix-git/doc/guix.texi:6293 +#: guix-git/doc/guix.texi:5923 guix-git/doc/guix.texi:6336 msgid "While this will limit the leaking of user identity through home paths and each of the user fields, this is only one useful component of a broader privacy/anonymity solution---not one in and of itself." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5911 guix-git/doc/guix.texi:6294 +#: guix-git/doc/guix.texi:5924 guix-git/doc/guix.texi:6337 #, no-wrap msgid "--no-cwd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5918 guix-git/doc/guix.texi:6301 +#: guix-git/doc/guix.texi:5931 guix-git/doc/guix.texi:6344 msgid "For containers, the default behavior is to share the current working directory with the isolated container and immediately change to that directory within the container. If this is undesirable, @option{--no-cwd} will cause the current working directory to @emph{not} be automatically shared and will change to the user's home directory within the container instead. See also @option{--user}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:5919 guix-git/doc/guix.texi:6302 +#: guix-git/doc/guix.texi:5932 guix-git/doc/guix.texi:6345 #, no-wrap msgid "--expose=@var{source}[=@var{target}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5920 guix-git/doc/guix.texi:6303 +#: guix-git/doc/guix.texi:5933 guix-git/doc/guix.texi:6346 #, no-wrap msgid "--share=@var{source}[=@var{target}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5926 guix-git/doc/guix.texi:6309 +#: guix-git/doc/guix.texi:5939 guix-git/doc/guix.texi:6352 msgid "For containers, @option{--expose} (resp. @option{--share}) exposes the file system @var{source} from the host system as the read-only (resp. writable) file system @var{target} within the container. If @var{target} is not specified, @var{source} is used as the target mount point in the container." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5930 guix-git/doc/guix.texi:6313 +#: guix-git/doc/guix.texi:5943 guix-git/doc/guix.texi:6356 msgid "The example below spawns a Guile REPL in a container in which the user's home directory is accessible read-only via the @file{/exchange} directory:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5933 +#: guix-git/doc/guix.texi:5946 #, no-wrap msgid "guix shell --container --expose=$HOME=/exchange guile -- guile\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:5935 guix-git/doc/guix.texi:6110 -#: guix-git/doc/guix.texi:6675 guix-git/doc/guix.texi:11575 -#: guix-git/doc/guix.texi:35308 +#: guix-git/doc/guix.texi:5948 +#, fuzzy, no-wrap +#| msgid "--no-build-hook" +msgid "--rebuild-cache" +msgstr "--no-build-hook" + +#. type: cindex +#: guix-git/doc/guix.texi:5949 +#, fuzzy, no-wrap +msgid "caching, of profiles" +msgstr "代码格式化" + +#. type: cindex +#: guix-git/doc/guix.texi:5950 +#, fuzzy, no-wrap +#| msgid "Invoking @command{guix build}" +msgid "caching, in @command{guix shell}" +msgstr "调用@command{guix build}" + +#. type: table +#: guix-git/doc/guix.texi:5956 +msgid "In most cases, @command{guix shell} caches the environment so that subsequent uses are instantaneous. Least-recently used cache entries are periodically removed. The cache is also invalidated, when using @option{--file} or @option{--manifest}, anytime the corresponding file is modified." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:5962 +msgid "The @option{--rebuild-cache} forces the cached environment to be refreshed. This is useful when using @option{--file} or @option{--manifest} and the @command{guix.scm} or @command{manifest.scm} file has external dependencies, or if its behavior depends, say, on environment variables." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:5963 guix-git/doc/guix.texi:6147 +#: guix-git/doc/guix.texi:6718 guix-git/doc/guix.texi:11889 +#: guix-git/doc/guix.texi:35752 #, no-wrap msgid "--root=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:5936 guix-git/doc/guix.texi:6111 -#: guix-git/doc/guix.texi:6676 guix-git/doc/guix.texi:11576 -#: guix-git/doc/guix.texi:35309 +#: guix-git/doc/guix.texi:5964 guix-git/doc/guix.texi:6148 +#: guix-git/doc/guix.texi:6719 guix-git/doc/guix.texi:11890 +#: guix-git/doc/guix.texi:35753 #, no-wrap msgid "-r @var{file}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5937 guix-git/doc/guix.texi:6112 +#: guix-git/doc/guix.texi:5965 guix-git/doc/guix.texi:6149 #, no-wrap msgid "persistent environment" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:5938 guix-git/doc/guix.texi:6113 +#: guix-git/doc/guix.texi:5966 guix-git/doc/guix.texi:6150 #, no-wrap msgid "garbage collector root, for environments" msgstr "" #. type: table -#: guix-git/doc/guix.texi:5941 guix-git/doc/guix.texi:6116 +#: guix-git/doc/guix.texi:5969 guix-git/doc/guix.texi:6153 msgid "Make @var{file} a symlink to the profile for this environment, and register it as a garbage collector root." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5944 guix-git/doc/guix.texi:6119 +#: guix-git/doc/guix.texi:5972 guix-git/doc/guix.texi:6156 msgid "This is useful if you want to protect your environment from garbage collection, to make it ``persistent''." msgstr "" #. type: table -#: guix-git/doc/guix.texi:5950 -msgid "When this option is omitted, the environment is protected from garbage collection only for the duration of the @command{guix shell} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages. @xref{Invoking guix gc}, for more on GC roots." +#: guix-git/doc/guix.texi:5978 +msgid "When this option is omitted, @command{guix shell} caches profiles so that subsequent uses of the same environment are instantaneous---this is comparable to using @option{--root} except that @command{guix shell} takes care of periodically removing the least-recently used garbage collector roots." msgstr "" +#. type: table +#: guix-git/doc/guix.texi:5985 +msgid "In some cases, @command{guix shell} does not cache profiles---e.g., if transformation options such as @option{--with-latest} are used. In those cases, the environment is protected from garbage collection only for the duration of the @command{guix shell} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:5987 +#, fuzzy +msgid "@xref{Invoking guix gc}, for more on GC roots." +msgstr "@xref{Invoking guix pack},了解这个方便的工具。" + #. type: Plain text -#: guix-git/doc/guix.texi:5955 +#: guix-git/doc/guix.texi:5992 msgid "@command{guix shell} also supports all of the common build options that @command{guix build} supports (@pxref{Common Build Options}) as well as package transformation options (@pxref{Package Transformation Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:5957 +#: guix-git/doc/guix.texi:5994 #, no-wrap msgid "Invoking @command{guix environment}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5961 +#: guix-git/doc/guix.texi:5998 msgid "The purpose of @command{guix environment} is to assist in creating development environments." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5962 +#: guix-git/doc/guix.texi:5999 #, no-wrap msgid "Deprecation warning" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5966 +#: guix-git/doc/guix.texi:6003 msgid "The @command{guix environment} command is deprecated in favor of @command{guix shell}, which performs similar functions but is more convenient to use. @xref{Invoking guix shell}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:5971 +#: guix-git/doc/guix.texi:6008 msgid "Being deprecated, @command{guix environment} is slated for eventual removal, but the Guix project is committed to keeping it until May 1st, 2023. Please get in touch with us at @email{guix-devel@@gnu.org} if you would like to discuss it." msgstr "" #. type: example -#: guix-git/doc/guix.texi:5977 +#: guix-git/doc/guix.texi:6014 #, no-wrap msgid "guix environment @var{options} @var{package}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:5981 +#: guix-git/doc/guix.texi:6018 msgid "The following example spawns a new shell set up for the development of GNU@tie{}Guile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:5984 +#: guix-git/doc/guix.texi:6021 #, no-wrap msgid "guix environment guile\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6001 +#: guix-git/doc/guix.texi:6038 msgid "If the needed dependencies are not built yet, @command{guix environment} automatically builds them. The environment of the new shell is an augmented version of the environment that @command{guix environment} was run in. It contains the necessary search paths for building the given package added to the existing environment variables. To create a ``pure'' environment, in which the original environment variables have been unset, use the @option{--pure} option@footnote{Users sometimes wrongfully augment environment variables such as @env{PATH} in their @file{~/.bashrc} file. As a consequence, when @command{guix environment} launches it, Bash may read @file{~/.bashrc}, thereby introducing ``impurities'' in these environment variables. It is an error to define such environment variables in @file{.bashrc}; instead, they should be defined in @file{.bash_profile}, which is sourced only by log-in shells. @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for details on Bash start-up files.}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6007 +#: guix-git/doc/guix.texi:6044 msgid "Exiting from a Guix environment is the same as exiting from the shell, and will place the user back in the old environment before @command{guix environment} was invoked. The next garbage collection (@pxref{Invoking guix gc}) will clean up packages that were installed from within the environment and are no longer used outside of it." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6014 +#: guix-git/doc/guix.texi:6051 msgid "@command{guix environment} defines the @env{GUIX_ENVIRONMENT} variable in the shell it spawns; its value is the file name of the profile of this environment. This allows users to, say, define a specific prompt for development environments in their @file{.bashrc} (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6033 +#: guix-git/doc/guix.texi:6070 msgid "Additionally, more than one package may be specified, in which case the union of the inputs for the given packages are used. For example, the command below spawns a shell where all of the dependencies of both Guile and Emacs are available:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6036 +#: guix-git/doc/guix.texi:6073 #, no-wrap msgid "guix environment guile emacs\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6041 +#: guix-git/doc/guix.texi:6078 msgid "Sometimes an interactive shell session is not desired. An arbitrary command may be invoked by placing the @code{--} token to separate the command from the rest of the arguments:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6044 +#: guix-git/doc/guix.texi:6081 #, no-wrap msgid "guix environment guile -- make -j4\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6050 +#: guix-git/doc/guix.texi:6087 msgid "In other situations, it is more convenient to specify the list of packages needed in the environment. For example, the following command runs @command{python} from an environment containing Python@tie{}3 and NumPy:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6053 +#: guix-git/doc/guix.texi:6090 #, no-wrap msgid "guix environment --ad-hoc python-numpy python -- python3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6064 +#: guix-git/doc/guix.texi:6101 msgid "Furthermore, one might want the dependencies of a package and also some additional packages that are not build-time or runtime dependencies, but are useful when developing nonetheless. Because of this, the @option{--ad-hoc} flag is positional. Packages appearing before @option{--ad-hoc} are interpreted as packages whose dependencies will be added to the environment. Packages appearing after are interpreted as packages that will be added to the environment directly. For example, the following command creates a Guix development environment that additionally includes Git and strace:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6067 +#: guix-git/doc/guix.texi:6104 #, fuzzy, no-wrap msgid "guix environment --pure guix --ad-hoc git strace\n" msgstr "guix environment guix --ad-hoc help2man git strace\n" #. type: Plain text -#: guix-git/doc/guix.texi:6077 +#: guix-git/doc/guix.texi:6114 msgid "Sometimes it is desirable to isolate the environment as much as possible, for maximal purity and reproducibility. In particular, when using Guix on a host distro that is not Guix System, it is desirable to prevent access to @file{/usr/bin} and other system-wide resources from the development environment. For example, the following command spawns a Guile REPL in a ``container'' where only the store and the current working directory are mounted:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6080 +#: guix-git/doc/guix.texi:6117 #, no-wrap msgid "guix environment --ad-hoc --container guile -- guile\n" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6084 +#: guix-git/doc/guix.texi:6121 msgid "The @option{--container} option requires Linux-libre 3.19 or newer." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6086 +#: guix-git/doc/guix.texi:6123 #, fuzzy, no-wrap msgid "certificates" msgstr "X.509证书" #. type: Plain text -#: guix-git/doc/guix.texi:6093 +#: guix-git/doc/guix.texi:6130 msgid "Another typical use case for containers is to run security-sensitive applications such as a web browser. To run Eolie, we must expose and share some files and directories; we include @code{nss-certs} and expose @file{/etc/ssl/certs/} for HTTPS authentication; finally we preserve the @env{DISPLAY} environment variable since containerized graphical applications won't display without it." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6100 +#: guix-git/doc/guix.texi:6137 #, no-wrap msgid "" "guix environment --preserve='^DISPLAY$' --container --network \\\n" @@ -13300,89 +13413,89 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6109 +#: guix-git/doc/guix.texi:6146 msgid "Set up the environment and check whether the shell would clobber environment variables. @xref{Invoking guix shell, @option{--check}}, for more info." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6125 +#: guix-git/doc/guix.texi:6162 msgid "When this option is omitted, the environment is protected from garbage collection only for the duration of the @command{guix environment} session. This means that next time you recreate the same environment, you could have to rebuild or re-download packages. @xref{Invoking guix gc}, for more on GC roots." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6135 +#: guix-git/doc/guix.texi:6172 #, no-wrap msgid "guix environment -e '(@@ (gnu packages maths) petsc-openmpi)'\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6144 +#: guix-git/doc/guix.texi:6181 #, no-wrap msgid "guix environment --ad-hoc -e '(@@ (gnu) %base-packages)'\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6153 +#: guix-git/doc/guix.texi:6190 #, no-wrap msgid "guix environment --ad-hoc -e '(list (@@ (gnu packages bash) bash) \"include\")'\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6155 +#: guix-git/doc/guix.texi:6192 #, no-wrap msgid "--load=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6156 +#: guix-git/doc/guix.texi:6193 #, no-wrap msgid "-l @var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6159 +#: guix-git/doc/guix.texi:6196 msgid "Create an environment for the package or list of packages that the code within @var{file} evaluates to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6177 +#: guix-git/doc/guix.texi:6214 #, no-wrap msgid "--ad-hoc" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6182 +#: guix-git/doc/guix.texi:6219 msgid "Include all specified packages in the resulting environment, as if an @i{ad hoc} package were defined with them as inputs. This option is useful for quickly creating an environment without having to write a package expression to contain the desired inputs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6184 +#: guix-git/doc/guix.texi:6221 msgid "For instance, the command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6187 +#: guix-git/doc/guix.texi:6224 #, no-wrap msgid "guix environment --ad-hoc guile guile-sdl -- guile\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6191 +#: guix-git/doc/guix.texi:6228 msgid "runs @command{guile} in an environment where Guile and Guile-SDL are available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6196 +#: guix-git/doc/guix.texi:6233 msgid "Note that this example implicitly asks for the default output of @code{guile} and @code{guile-sdl}, but it is possible to ask for a specific output---e.g., @code{glib:bin} asks for the @code{bin} output of @code{glib} (@pxref{Packages with Multiple Outputs})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6202 +#: guix-git/doc/guix.texi:6239 msgid "This option may be composed with the default behavior of @command{guix environment}. Packages appearing before @option{--ad-hoc} are interpreted as packages whose dependencies will be added to the environment, the default behavior. Packages appearing after are interpreted as packages that will be added to the environment directly." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6218 +#: guix-git/doc/guix.texi:6261 #, no-wrap msgid "" "guix environment --pure --preserve=^SLURM --ad-hoc openmpi @dots{} \\\n" @@ -13390,12 +13503,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6261 +#: guix-git/doc/guix.texi:6304 msgid "For containers, link the environment profile to @file{~/.guix-profile} within the container and set @code{GUIX_ENVIRONMENT} to that. This is equivalent to making @file{~/.guix-profile} a symlink to the actual profile within the container. Linking will fail and abort the environment if the directory already exists, which will certainly be the case if @command{guix environment} was invoked in the user's home directory." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6288 +#: guix-git/doc/guix.texi:6331 #, no-wrap msgid "" "# will expose paths as /home/foo/wd, /home/foo/test, and /home/foo/target\n" @@ -13406,68 +13519,68 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6316 +#: guix-git/doc/guix.texi:6359 #, no-wrap msgid "guix environment --container --expose=$HOME=/exchange --ad-hoc guile -- guile\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6324 +#: guix-git/doc/guix.texi:6367 msgid "@command{guix environment} also supports all of the common build options that @command{guix build} supports (@pxref{Common Build Options}) as well as package transformation options (@pxref{Package Transformation Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:6326 +#: guix-git/doc/guix.texi:6369 #, no-wrap msgid "Invoking @command{guix pack}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6332 +#: guix-git/doc/guix.texi:6375 msgid "Occasionally you want to pass software to people who are not (yet!) lucky enough to be using Guix. You'd tell them to run @command{guix package -i @var{something}}, but that's not possible in this case. This is where @command{guix pack} comes in." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6337 +#: guix-git/doc/guix.texi:6380 msgid "If you are looking for ways to exchange binaries among machines that already run Guix, @pxref{Invoking guix copy}, @ref{Invoking guix publish}, and @ref{Invoking guix archive}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6339 +#: guix-git/doc/guix.texi:6382 #, no-wrap msgid "pack" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6340 +#: guix-git/doc/guix.texi:6383 #, no-wrap msgid "bundle" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6341 +#: guix-git/doc/guix.texi:6384 #, no-wrap msgid "application bundle" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6342 +#: guix-git/doc/guix.texi:6385 #, no-wrap msgid "software bundle" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6351 +#: guix-git/doc/guix.texi:6394 msgid "The @command{guix pack} command creates a shrink-wrapped @dfn{pack} or @dfn{software bundle}: it creates a tarball or some other archive containing the binaries of the software you're interested in, and all its dependencies. The resulting archive can be used on any machine that does not have Guix, and people can run the exact same binaries as those you have with Guix. The pack itself is created in a bit-reproducible fashion, so anyone can verify that it really contains the build results that you pretend to be shipping." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6354 +#: guix-git/doc/guix.texi:6397 msgid "For example, to create a bundle containing Guile, Emacs, Geiser, and all their dependencies, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6359 +#: guix-git/doc/guix.texi:6402 #, no-wrap msgid "" "$ guix pack guile emacs emacs-geiser\n" @@ -13476,61 +13589,61 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6367 +#: guix-git/doc/guix.texi:6410 msgid "The result here is a tarball containing a @file{/gnu/store} directory with all the relevant packages. The resulting tarball contains a @dfn{profile} with the three packages of interest; the profile is the same as would be created by @command{guix package -i}. It is this mechanism that is used to create Guix's own standalone binary tarball (@pxref{Binary Installation})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6372 +#: guix-git/doc/guix.texi:6415 msgid "Users of this pack would have to run @file{/gnu/store/@dots{}-profile/bin/guile} to run Guile, which you may find inconvenient. To work around it, you can create, say, a @file{/opt/gnu/bin} symlink to the profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6375 +#: guix-git/doc/guix.texi:6418 #, fuzzy, no-wrap msgid "guix pack -S /opt/gnu/bin=bin guile emacs emacs-geiser\n" msgstr "guix package -i emacs guile emacs-geiser\n" #. type: Plain text -#: guix-git/doc/guix.texi:6379 +#: guix-git/doc/guix.texi:6422 msgid "That way, users can happily type @file{/opt/gnu/bin/guile} and enjoy." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6380 +#: guix-git/doc/guix.texi:6423 #, no-wrap msgid "relocatable binaries, with @command{guix pack}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6388 +#: guix-git/doc/guix.texi:6431 msgid "What if the recipient of your pack does not have root privileges on their machine, and thus cannot unpack it in the root file system? In that case, you will want to use the @option{--relocatable} option (see below). This option produces @dfn{relocatable binaries}, meaning they they can be placed anywhere in the file system hierarchy: in the example above, users can unpack your tarball in their home directory and directly run @file{./opt/gnu/bin/guile}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6389 +#: guix-git/doc/guix.texi:6432 #, no-wrap msgid "Docker, build an image with guix pack" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6392 +#: guix-git/doc/guix.texi:6435 msgid "Alternatively, you can produce a pack in the Docker image format using the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6395 +#: guix-git/doc/guix.texi:6438 #, no-wrap msgid "guix pack -f docker -S /bin=bin guile guile-readline\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6400 +#: guix-git/doc/guix.texi:6443 msgid "The result is a tarball that can be passed to the @command{docker load} command, followed by @code{docker run}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6404 +#: guix-git/doc/guix.texi:6447 #, no-wrap msgid "" "docker load < @var{file}\n" @@ -13538,170 +13651,170 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6411 +#: guix-git/doc/guix.texi:6454 msgid "where @var{file} is the image returned by @var{guix pack}, and @code{guile-guile-readline} is its ``image tag''. See the @uref{https://docs.docker.com/engine/reference/commandline/load/, Docker documentation} for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6412 +#: guix-git/doc/guix.texi:6455 #, no-wrap msgid "Singularity, build an image with guix pack" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6413 +#: guix-git/doc/guix.texi:6456 #, no-wrap msgid "SquashFS, build an image with guix pack" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6416 +#: guix-git/doc/guix.texi:6459 msgid "Yet another option is to produce a SquashFS image with the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6419 +#: guix-git/doc/guix.texi:6462 #, fuzzy, no-wrap msgid "guix pack -f squashfs bash guile emacs emacs-geiser\n" msgstr "guix package -i emacs guile emacs-geiser\n" #. type: Plain text -#: guix-git/doc/guix.texi:6427 +#: guix-git/doc/guix.texi:6470 msgid "The result is a SquashFS file system image that can either be mounted or directly be used as a file system container image with the @uref{https://www.sylabs.io/docs/, Singularity container execution environment}, using commands like @command{singularity shell} or @command{singularity exec}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6429 +#: guix-git/doc/guix.texi:6472 msgid "Several command-line options allow you to customize your pack:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6434 +#: guix-git/doc/guix.texi:6477 msgid "Produce a pack in the given @var{format}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6436 +#: guix-git/doc/guix.texi:6479 msgid "The available formats are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6438 +#: guix-git/doc/guix.texi:6481 #, no-wrap msgid "tarball" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6441 +#: guix-git/doc/guix.texi:6484 msgid "This is the default format. It produces a tarball containing all the specified binaries and symlinks." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6442 +#: guix-git/doc/guix.texi:6485 #, no-wrap msgid "docker" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6448 +#: guix-git/doc/guix.texi:6491 msgid "This produces a tarball that follows the @uref{https://github.com/docker/docker/blob/master/image/spec/v1.2.md, Docker Image Specification}. The ``repository name'' as it appears in the output of the @command{docker images} command is computed from package names passed on the command line or in the manifest file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6449 +#: guix-git/doc/guix.texi:6492 #, no-wrap msgid "squashfs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6453 +#: guix-git/doc/guix.texi:6496 msgid "This produces a SquashFS image containing all the specified binaries and symlinks, as well as empty mount points for virtual file systems like procfs." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6459 +#: guix-git/doc/guix.texi:6502 msgid "Singularity @emph{requires} you to provide @file{/bin/sh} in the image. For that reason, @command{guix pack -f squashfs} always implies @code{-S /bin=bin}. Thus, your @command{guix pack} invocation must always start with something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6462 +#: guix-git/doc/guix.texi:6505 #, no-wrap msgid "guix pack -f squashfs bash @dots{}\n" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6467 +#: guix-git/doc/guix.texi:6510 msgid "If you forget the @code{bash} (or similar) package, @command{singularity run} and @command{singularity exec} will fail with an unhelpful ``no such file or directory'' message." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6469 +#: guix-git/doc/guix.texi:6512 #, fuzzy, no-wrap #| msgid "--debug" msgid "deb" msgstr "--debug" #. type: table -#: guix-git/doc/guix.texi:6477 +#: guix-git/doc/guix.texi:6520 msgid "This produces a Debian archive (a package with the @samp{.deb} file extension) containing all the specified binaries and symbolic links, that can be installed on top of any dpkg-based GNU(/Linux) distribution. Advanced options can be revealed via the @option{--help-deb-format} option. They allow embedding control files for more fine-grained control, such as activating specific triggers or providing a maintainer configure script to run arbitrary setup code upon installation." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6480 +#: guix-git/doc/guix.texi:6523 #, no-wrap msgid "guix pack -f deb -C xz -S /usr/bin/hello=bin/hello hello\n" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6487 +#: guix-git/doc/guix.texi:6530 msgid "Because archives produced with @command{guix pack} contain a collection of store items and because each @command{dpkg} package must not have conflicting files, in practice that means you likely won't be able to install more than one such archive on a given system." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6495 +#: guix-git/doc/guix.texi:6538 msgid "@command{dpkg} will assume ownership of any files contained in the pack that it does @emph{not} know about. It is unwise to install Guix-produced @samp{.deb} files on a system where @file{/gnu/store} is shared by other software, such as a Guix installation or other, non-deb packs." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6499 +#: guix-git/doc/guix.texi:6542 #, no-wrap msgid "relocatable binaries" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6500 +#: guix-git/doc/guix.texi:6543 #, no-wrap msgid "--relocatable" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6504 +#: guix-git/doc/guix.texi:6547 msgid "Produce @dfn{relocatable binaries}---i.e., binaries that can be placed anywhere in the file system hierarchy and run from there." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6512 +#: guix-git/doc/guix.texi:6555 msgid "When this option is passed once, the resulting binaries require support for @dfn{user namespaces} in the kernel Linux; when passed @emph{twice}@footnote{Here's a trick to memorize it: @code{-RR}, which adds PRoot support, can be thought of as the abbreviation of ``Really Relocatable''. Neat, isn't it?}, relocatable binaries fall to back to other techniques if user namespaces are unavailable, and essentially work anywhere---see below for the implications." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6514 +#: guix-git/doc/guix.texi:6557 msgid "For example, if you create a pack containing Bash with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6517 +#: guix-git/doc/guix.texi:6560 #, no-wrap msgid "guix pack -RR -S /mybin=bin bash\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6522 +#: guix-git/doc/guix.texi:6565 msgid "...@: you can copy that pack to a machine that lacks Guix, and from your home directory as a normal user, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6526 +#: guix-git/doc/guix.texi:6569 #, no-wrap msgid "" "tar xf pack.tar.gz\n" @@ -13709,121 +13822,121 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6534 +#: guix-git/doc/guix.texi:6577 msgid "In that shell, if you type @code{ls /gnu/store}, you'll notice that @file{/gnu/store} shows up and contains all the dependencies of @code{bash}, even though the machine actually lacks @file{/gnu/store} altogether! That is probably the simplest way to deploy Guix-built software on a non-Guix machine." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6540 +#: guix-git/doc/guix.texi:6583 msgid "By default, relocatable binaries rely on the @dfn{user namespace} feature of the kernel Linux, which allows unprivileged users to mount or change root. Old versions of Linux did not support it, and some GNU/Linux distributions turn it off." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6546 +#: guix-git/doc/guix.texi:6589 msgid "To produce relocatable binaries that work even in the absence of user namespaces, pass @option{--relocatable} or @option{-R} @emph{twice}. In that case, binaries will try user namespace support and fall back to another @dfn{execution engine} if user namespaces are not supported. The following execution engines are supported:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6548 guix-git/doc/guix.texi:17371 +#: guix-git/doc/guix.texi:6591 guix-git/doc/guix.texi:17733 #, no-wrap msgid "default" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6551 +#: guix-git/doc/guix.texi:6594 msgid "Try user namespaces and fall back to PRoot if user namespaces are not supported (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6552 +#: guix-git/doc/guix.texi:6595 #, fuzzy, no-wrap msgid "performance" msgstr "格式化代码" #. type: table -#: guix-git/doc/guix.texi:6555 +#: guix-git/doc/guix.texi:6598 msgid "Try user namespaces and fall back to Fakechroot if user namespaces are not supported (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6556 +#: guix-git/doc/guix.texi:6599 #, fuzzy, no-wrap msgid "userns" msgstr "用户" #. type: table -#: guix-git/doc/guix.texi:6559 +#: guix-git/doc/guix.texi:6602 msgid "Run the program through user namespaces and abort if they are not supported." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6560 +#: guix-git/doc/guix.texi:6603 #, fuzzy, no-wrap msgid "proot" msgstr "chroot" #. type: table -#: guix-git/doc/guix.texi:6567 +#: guix-git/doc/guix.texi:6610 msgid "Run through PRoot. The @uref{https://proot-me.github.io/, PRoot} program provides the necessary support for file system virtualization. It achieves that by using the @code{ptrace} system call on the running program. This approach has the advantage to work without requiring special kernel support, but it incurs run-time overhead every time a system call is made." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6568 +#: guix-git/doc/guix.texi:6611 #, fuzzy, no-wrap msgid "fakechroot" msgstr "chroot" #. type: table -#: guix-git/doc/guix.texi:6576 +#: guix-git/doc/guix.texi:6619 msgid "Run through Fakechroot. @uref{https://github.com/dex4er/fakechroot/, Fakechroot} virtualizes file system accesses by intercepting calls to C library functions such as @code{open}, @code{stat}, @code{exec}, and so on. Unlike PRoot, it incurs very little overhead. However, it does not always work: for example, some file system accesses made from within the C library are not intercepted, and file system accesses made @i{via} direct syscalls are not intercepted either, leading to erratic behavior." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:6578 +#: guix-git/doc/guix.texi:6621 #, no-wrap msgid "GUIX_EXECUTION_ENGINE" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:6582 +#: guix-git/doc/guix.texi:6625 msgid "When running a wrapped program, you can explicitly request one of the execution engines listed above by setting the @env{GUIX_EXECUTION_ENGINE} environment variable accordingly." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6584 +#: guix-git/doc/guix.texi:6627 #, no-wrap msgid "entry point, for Docker images" msgstr "" #. type: item -#: guix-git/doc/guix.texi:6585 +#: guix-git/doc/guix.texi:6628 #, fuzzy, no-wrap msgid "--entry-point=@var{command}" msgstr "--timeout=@var{seconds}" #. type: table -#: guix-git/doc/guix.texi:6590 +#: guix-git/doc/guix.texi:6633 msgid "Use @var{command} as the @dfn{entry point} of the resulting pack, if the pack format supports it---currently @code{docker} and @code{squashfs} (Singularity) support it. @var{command} must be relative to the profile contained in the pack." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6594 +#: guix-git/doc/guix.texi:6637 msgid "The entry point specifies the command that tools like @code{docker run} or @code{singularity run} automatically start by default. For example, you can do:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6597 +#: guix-git/doc/guix.texi:6640 #, no-wrap msgid "guix pack -f docker --entry-point=bin/guile guile\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6601 +#: guix-git/doc/guix.texi:6644 msgid "The resulting pack can easily be loaded and @code{docker run} with no extra arguments will spawn @code{bin/guile}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:6605 +#: guix-git/doc/guix.texi:6648 #, no-wrap msgid "" "docker load -i pack.tar.gz\n" @@ -13831,400 +13944,400 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6610 guix-git/doc/guix.texi:12497 -#: guix-git/doc/guix.texi:13445 +#: guix-git/doc/guix.texi:6653 guix-git/doc/guix.texi:12812 +#: guix-git/doc/guix.texi:13802 msgid "Consider the package @var{expr} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6614 +#: guix-git/doc/guix.texi:6657 msgid "This has the same purpose as the same-named option in @command{guix build} (@pxref{Additional Build Options, @option{--expression} in @command{guix build}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6620 +#: guix-git/doc/guix.texi:6663 msgid "Use the packages contained in the manifest object returned by the Scheme code in @var{file}. This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6628 +#: guix-git/doc/guix.texi:6671 msgid "This has a similar purpose as the same-named option in @command{guix package} (@pxref{profile-manifest, @option{--manifest}}) and uses the same manifest files. It allows you to define a collection of packages once and use it both for creating profiles and for creating archives for use on machines that do not have Guix installed. Note that you can specify @emph{either} a manifest file @emph{or} a list of packages, but not both." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6634 guix-git/doc/guix.texi:11539 +#: guix-git/doc/guix.texi:6677 guix-git/doc/guix.texi:11853 #, no-wrap msgid "--target=@var{triplet}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6635 guix-git/doc/guix.texi:7080 -#: guix-git/doc/guix.texi:11540 +#: guix-git/doc/guix.texi:6678 guix-git/doc/guix.texi:7124 +#: guix-git/doc/guix.texi:11854 #, no-wrap msgid "cross-compilation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6639 +#: guix-git/doc/guix.texi:6682 msgid "Cross-build for @var{triplet}, which must be a valid GNU triplet, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying target triplets, GNU configuration triplets,, autoconf, Autoconf})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6640 +#: guix-git/doc/guix.texi:6683 #, no-wrap msgid "--compression=@var{tool}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6641 +#: guix-git/doc/guix.texi:6684 #, no-wrap msgid "-C @var{tool}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6645 +#: guix-git/doc/guix.texi:6688 #, fuzzy msgid "Compress the resulting tarball using @var{tool}---one of @code{gzip}, @code{zstd}, @code{bzip2}, @code{xz}, @code{lzip}, or @code{none} for no compression." msgstr "以@var{type}方式压缩构建日志,可选的值:@code{gzip},@code{bzip2},@code{none}。" #. type: item -#: guix-git/doc/guix.texi:6646 +#: guix-git/doc/guix.texi:6689 #, no-wrap msgid "--symlink=@var{spec}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6647 +#: guix-git/doc/guix.texi:6690 #, no-wrap msgid "-S @var{spec}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6650 +#: guix-git/doc/guix.texi:6693 msgid "Add the symlinks specified by @var{spec} to the pack. This option can appear several times." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6654 +#: guix-git/doc/guix.texi:6697 msgid "@var{spec} has the form @code{@var{source}=@var{target}}, where @var{source} is the symlink that will be created and @var{target} is the symlink target." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6657 +#: guix-git/doc/guix.texi:6700 msgid "For instance, @code{-S /opt/gnu/bin=bin} creates a @file{/opt/gnu/bin} symlink pointing to the @file{bin} sub-directory of the profile." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6658 guix-git/doc/guix.texi:35262 +#: guix-git/doc/guix.texi:6701 guix-git/doc/guix.texi:35706 #, no-wrap msgid "--save-provenance" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6662 +#: guix-git/doc/guix.texi:6705 msgid "Save provenance information for the packages passed on the command line. Provenance information includes the URL and commit of the channels in use (@pxref{Channels})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6668 +#: guix-git/doc/guix.texi:6711 msgid "Provenance information is saved in the @file{/gnu/store/@dots{}-profile/manifest} file in the pack, along with the usual package metadata---the name and version of each package, their propagated inputs, and so on. It is useful information to the recipient of the pack, who then knows how the pack was (supposedly) obtained." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6674 +#: guix-git/doc/guix.texi:6717 msgid "This option is not enabled by default because, like timestamps, provenance information contributes nothing to the build process. In other words, there is an infinity of channel URLs and commit IDs that can lead to the same pack. Recording such ``silent'' metadata in the output thus potentially breaks the source-to-binary bitwise reproducibility property." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6677 +#: guix-git/doc/guix.texi:6720 #, fuzzy, no-wrap msgid "garbage collector root, for packs" msgstr "垃圾收集的根" #. type: table -#: guix-git/doc/guix.texi:6680 +#: guix-git/doc/guix.texi:6723 msgid "Make @var{file} a symlink to the resulting pack, and register it as a garbage collector root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6681 +#: guix-git/doc/guix.texi:6724 #, no-wrap msgid "--localstatedir" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6682 +#: guix-git/doc/guix.texi:6725 #, no-wrap msgid "--profile-name=@var{name}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6687 +#: guix-git/doc/guix.texi:6730 msgid "Include the ``local state directory'', @file{/var/guix}, in the resulting pack, and notably the @file{/var/guix/profiles/per-user/root/@var{name}} profile---by default @var{name} is @code{guix-profile}, which corresponds to @file{~root/.guix-profile}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6693 +#: guix-git/doc/guix.texi:6736 msgid "@file{/var/guix} contains the store database (@pxref{The Store}) as well as garbage-collector roots (@pxref{Invoking guix gc}). Providing it in the pack means that the store is ``complete'' and manageable by Guix; not providing it pack means that the store is ``dead'': items cannot be added to it or removed from it after extraction of the pack." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6696 +#: guix-git/doc/guix.texi:6739 msgid "One use case for this is the Guix self-contained binary tarball (@pxref{Binary Installation})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6697 guix-git/doc/guix.texi:35256 +#: guix-git/doc/guix.texi:6740 guix-git/doc/guix.texi:35700 #, no-wrap msgid "--derivation" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6698 guix-git/doc/guix.texi:11571 -#: guix-git/doc/guix.texi:35257 +#: guix-git/doc/guix.texi:6741 guix-git/doc/guix.texi:11885 +#: guix-git/doc/guix.texi:35701 #, no-wrap msgid "-d" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6700 +#: guix-git/doc/guix.texi:6743 msgid "Print the name of the derivation that builds the pack." msgstr "" #. type: table -#: guix-git/doc/guix.texi:6704 +#: guix-git/doc/guix.texi:6747 msgid "Use the bootstrap binaries to build the pack. This option is only useful to Guix developers." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6709 +#: guix-git/doc/guix.texi:6752 msgid "In addition, @command{guix pack} supports all the common build options (@pxref{Common Build Options}) and all the package transformation options (@pxref{Package Transformation Options})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6714 +#: guix-git/doc/guix.texi:6757 #, no-wrap msgid "GCC" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6715 +#: guix-git/doc/guix.texi:6758 #, no-wrap msgid "ld-wrapper" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6716 +#: guix-git/doc/guix.texi:6759 #, no-wrap msgid "linker wrapper" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6717 +#: guix-git/doc/guix.texi:6760 #, fuzzy, no-wrap msgid "toolchain, for C development" msgstr "软件开发" #. type: cindex -#: guix-git/doc/guix.texi:6718 +#: guix-git/doc/guix.texi:6761 #, no-wrap msgid "toolchain, for Fortran development" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6725 +#: guix-git/doc/guix.texi:6768 msgid "If you need a complete toolchain for compiling and linking C or C++ source code, use the @code{gcc-toolchain} package. This package provides a complete GCC toolchain for C/C++ development, including GCC itself, the GNU C Library (headers and binaries, plus debugging symbols in the @code{debug} output), Binutils, and a linker wrapper." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6731 +#: guix-git/doc/guix.texi:6774 msgid "The wrapper's purpose is to inspect the @code{-L} and @code{-l} switches passed to the linker, add corresponding @code{-rpath} arguments, and invoke the actual linker with this new set of arguments. You can instruct the wrapper to refuse to link against libraries not in the store by setting the @env{GUIX_LD_WRAPPER_ALLOW_IMPURITIES} environment variable to @code{no}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6735 +#: guix-git/doc/guix.texi:6778 msgid "The package @code{gfortran-toolchain} provides a complete GCC toolchain for Fortran development. For other languages, please use @samp{guix search gcc toolchain} (@pxref{guix-search,, Invoking guix package})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:6738 +#: guix-git/doc/guix.texi:6781 #, fuzzy, no-wrap msgid "Invoking @command{guix git authenticate}" msgstr "调用@command{guix build}" #. type: Plain text -#: guix-git/doc/guix.texi:6746 +#: guix-git/doc/guix.texi:6789 msgid "The @command{guix git authenticate} command authenticates a Git checkout following the same rule as for channels (@pxref{channel-authentication, channel authentication}). That is, starting from a given commit, it ensures that all subsequent commits are signed by an OpenPGP key whose fingerprint appears in the @file{.guix-authorizations} file of its parent commit(s)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6751 +#: guix-git/doc/guix.texi:6794 msgid "You will find this command useful if you maintain a channel. But in fact, this authentication mechanism is useful in a broader context, so you might want to use it for Git repositories that have nothing to do with Guix." msgstr "" #. type: example -#: guix-git/doc/guix.texi:6756 +#: guix-git/doc/guix.texi:6799 #, no-wrap msgid "guix git authenticate @var{commit} @var{signer} [@var{options}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6765 +#: guix-git/doc/guix.texi:6808 msgid "By default, this command authenticates the Git checkout in the current directory; it outputs nothing and exits with exit code zero on success and non-zero on failure. @var{commit} above denotes the first commit where authentication takes place, and @var{signer} is the OpenPGP fingerprint of public key used to sign @var{commit}. Together, they form a ``channel introduction'' (@pxref{channel-authentication, channel introduction}). The options below allow you to fine-tune the process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6767 +#: guix-git/doc/guix.texi:6810 #, fuzzy, no-wrap msgid "--repository=@var{directory}" msgstr "--chroot-directory=@var{dir}" #. type: itemx -#: guix-git/doc/guix.texi:6768 +#: guix-git/doc/guix.texi:6811 #, fuzzy, no-wrap msgid "-r @var{directory}" msgstr "状态文件夹" #. type: table -#: guix-git/doc/guix.texi:6771 +#: guix-git/doc/guix.texi:6814 msgid "Open the Git repository in @var{directory} instead of the current directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6772 +#: guix-git/doc/guix.texi:6815 #, no-wrap msgid "--keyring=@var{reference}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:6773 +#: guix-git/doc/guix.texi:6816 #, fuzzy, no-wrap msgid "-k @var{reference}" msgstr "-c @var{n}" #. type: table -#: guix-git/doc/guix.texi:6779 +#: guix-git/doc/guix.texi:6822 msgid "Load OpenPGP keyring from @var{reference}, the reference of a branch such as @code{origin/keyring} or @code{my-keyring}. The branch must contain OpenPGP public keys in @file{.key} files, either in binary form or ``ASCII-armored''. By default the keyring is loaded from the branch named @code{keyring}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6780 +#: guix-git/doc/guix.texi:6823 #, no-wrap msgid "--stats" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6782 +#: guix-git/doc/guix.texi:6825 msgid "Display commit signing statistics upon completion." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6783 +#: guix-git/doc/guix.texi:6826 #, fuzzy, no-wrap msgid "--cache-key=@var{key}" msgstr "--cores=@var{n}" #. type: table -#: guix-git/doc/guix.texi:6787 +#: guix-git/doc/guix.texi:6830 msgid "Previously-authenticated commits are cached in a file under @file{~/.cache/guix/authentication}. This option forces the cache to be stored in file @var{key} in that directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:6788 +#: guix-git/doc/guix.texi:6831 #, no-wrap msgid "--historical-authorizations=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:6795 +#: guix-git/doc/guix.texi:6838 msgid "By default, any commit whose parent commit(s) lack the @file{.guix-authorizations} file is considered inauthentic. In contrast, this option considers the authorizations in @var{file} for any commit that lacks @file{.guix-authorizations}. The format of @var{file} is the same as that of @file{.guix-authorizations} (@pxref{channel-authorizations, @file{.guix-authorizations} format})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6808 +#: guix-git/doc/guix.texi:6851 msgid "GNU Guix provides several Scheme programming interfaces (APIs) to define, build, and query packages. The first interface allows users to write high-level package definitions. These definitions refer to familiar packaging concepts, such as the name and version of a package, its build system, and its dependencies. These definitions can then be turned into concrete build actions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6814 +#: guix-git/doc/guix.texi:6857 msgid "Build actions are performed by the Guix daemon, on behalf of users. In a standard setup, the daemon has write access to the store---the @file{/gnu/store} directory---whereas users do not. The recommended setup also has the daemon perform builds in chroots, under specific build users, to minimize interference with the rest of the system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6823 +#: guix-git/doc/guix.texi:6866 msgid "Lower-level APIs are available to interact with the daemon and the store. To instruct the daemon to perform a build action, users actually provide it with a @dfn{derivation}. A derivation is a low-level representation of the build actions to be taken, and the environment in which they should occur---derivations are to package definitions what assembly is to C programs. The term ``derivation'' comes from the fact that build results @emph{derive} from them." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6826 +#: guix-git/doc/guix.texi:6869 msgid "This chapter describes all these APIs in turn, starting from high-level package definitions." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:6839 +#: guix-git/doc/guix.texi:6883 #, fuzzy msgid "Programming Guix in Guile" msgstr "编程索引" #. type: Plain text -#: guix-git/doc/guix.texi:6855 +#: guix-git/doc/guix.texi:6899 msgid "From a programming viewpoint, the package definitions of the GNU distribution are provided by Guile modules in the @code{(gnu packages @dots{})} name space@footnote{Note that packages under the @code{(gnu packages @dots{})} module name space are not necessarily ``GNU packages''. This module naming scheme follows the usual Guile module naming convention: @code{gnu} means that these modules are distributed as part of the GNU system, and @code{packages} identifies modules that define packages.} (@pxref{Modules, Guile modules,, guile, GNU Guile Reference Manual}). For instance, the @code{(gnu packages emacs)} module exports a variable named @code{emacs}, which is bound to a @code{} object (@pxref{Defining Packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6862 +#: guix-git/doc/guix.texi:6906 msgid "The @code{(gnu packages @dots{})} module name space is automatically scanned for packages by the command-line tools. For instance, when running @code{guix install emacs}, all the @code{(gnu packages @dots{})} modules are scanned until one that exports a package object whose name is @code{emacs} is found. This package search facility is implemented in the @code{(gnu packages)} module." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6864 +#: guix-git/doc/guix.texi:6908 #, no-wrap msgid "package module search path" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6873 +#: guix-git/doc/guix.texi:6917 msgid "Users can store package definitions in modules with different names---e.g., @code{(my-packages emacs)}@footnote{Note that the file name and module name must match. For instance, the @code{(my-packages emacs)} module must be stored in a @file{my-packages/emacs.scm} file relative to the load path specified with @option{--load-path} or @env{GUIX_PACKAGE_PATH}. @xref{Modules and the File System,,, guile, GNU Guile Reference Manual}, for details.}. There are two ways to make these package definitions visible to the user interfaces:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:6880 +#: guix-git/doc/guix.texi:6924 msgid "By adding the directory containing your package modules to the search path with the @code{-L} flag of @command{guix package} and other commands (@pxref{Common Build Options}), or by setting the @env{GUIX_PACKAGE_PATH} environment variable described below." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:6886 +#: guix-git/doc/guix.texi:6930 msgid "By defining a @dfn{channel} and configuring @command{guix pull} so that it pulls from it. A channel is essentially a Git repository containing package modules. @xref{Channels}, for more information on how to define and use channels." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6889 +#: guix-git/doc/guix.texi:6933 msgid "@env{GUIX_PACKAGE_PATH} works similarly to other search path variables:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:6890 +#: guix-git/doc/guix.texi:6934 #, no-wrap msgid "{Environment Variable} GUIX_PACKAGE_PATH" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:6894 +#: guix-git/doc/guix.texi:6938 msgid "This is a colon-separated list of directories to search for additional package modules. Directories listed in this variable take precedence over the own modules of the distribution." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6902 +#: guix-git/doc/guix.texi:6946 msgid "The distribution is fully @dfn{bootstrapped} and @dfn{self-contained}: each package is built based solely on other packages in the distribution. The root of this dependency graph is a small set of @dfn{bootstrap binaries}, provided by the @code{(gnu packages bootstrap)} module. For more information on bootstrapping, @pxref{Bootstrapping}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6910 +#: guix-git/doc/guix.texi:6954 msgid "The high-level interface to package definitions is implemented in the @code{(guix packages)} and @code{(guix build-system)} modules. As an example, the package definition, or @dfn{recipe}, for the GNU Hello package looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:6918 +#: guix-git/doc/guix.texi:6962 #, no-wrap msgid "" "(define-module (gnu packages hello)\n" @@ -14237,7 +14350,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:6937 +#: guix-git/doc/guix.texi:6981 #, no-wrap msgid "" "(define-public hello\n" @@ -14261,327 +14374,327 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6947 +#: guix-git/doc/guix.texi:6991 msgid "Without being a Scheme expert, the reader may have guessed the meaning of the various fields here. This expression binds the variable @code{hello} to a @code{} object, which is essentially a record (@pxref{SRFI-9, Scheme records,, guile, GNU Guile Reference Manual}). This package object can be inspected using procedures found in the @code{(guix packages)} module; for instance, @code{(package-name hello)} returns---surprise!---@code{\"hello\"}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6951 +#: guix-git/doc/guix.texi:6995 msgid "With luck, you may be able to import part or all of the definition of the package you are interested in from another repository, using the @code{guix import} command (@pxref{Invoking guix import})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6957 +#: guix-git/doc/guix.texi:7001 msgid "In the example above, @code{hello} is defined in a module of its own, @code{(gnu packages hello)}. Technically, this is not strictly necessary, but it is convenient to do so: all the packages defined in modules under @code{(gnu packages @dots{})} are automatically known to the command-line tools (@pxref{Package Modules})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:6959 +#: guix-git/doc/guix.texi:7003 msgid "There are a few points worth noting in the above package definition:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6966 +#: guix-git/doc/guix.texi:7010 msgid "The @code{source} field of the package is an @code{} object (@pxref{origin Reference}, for the complete reference). Here, the @code{url-fetch} method from @code{(guix download)} is used, meaning that the source is a file to be downloaded over FTP or HTTP." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6969 +#: guix-git/doc/guix.texi:7013 msgid "The @code{mirror://gnu} prefix instructs @code{url-fetch} to use one of the GNU mirrors defined in @code{(guix download)}." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6976 +#: guix-git/doc/guix.texi:7020 msgid "The @code{sha256} field specifies the expected SHA256 hash of the file being downloaded. It is mandatory, and allows Guix to check the integrity of the file. The @code{(base32 @dots{})} form introduces the base32 representation of the hash. You can obtain this information with @code{guix download} (@pxref{Invoking guix download}) and @code{guix hash} (@pxref{Invoking guix hash})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6977 +#: guix-git/doc/guix.texi:7021 #, no-wrap msgid "patches" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6981 +#: guix-git/doc/guix.texi:7025 msgid "When needed, the @code{origin} form can also have a @code{patches} field listing patches to be applied, and a @code{snippet} field giving a Scheme expression to modify the source code." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:6983 +#: guix-git/doc/guix.texi:7027 #, no-wrap msgid "GNU Build System" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6989 +#: guix-git/doc/guix.texi:7033 msgid "The @code{build-system} field specifies the procedure to build the package (@pxref{Build Systems}). Here, @code{gnu-build-system} represents the familiar GNU Build System, where packages may be configured, built, and installed with the usual @code{./configure && make && make check && make install} command sequence." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6993 +#: guix-git/doc/guix.texi:7037 msgid "When you start packaging non-trivial software, you may need tools to manipulate those build phases, manipulate files, and so on. @xref{Build Utilities}, for more on this." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:6999 +#: guix-git/doc/guix.texi:7043 msgid "The @code{arguments} field specifies options for the build system (@pxref{Build Systems}). Here it is interpreted by @code{gnu-build-system} as a request run @file{configure} with the @option{--enable-silent-rules} flag." msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7000 guix-git/doc/guix.texi:7003 +#: guix-git/doc/guix.texi:7044 guix-git/doc/guix.texi:7047 #, no-wrap msgid "quote" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7001 +#: guix-git/doc/guix.texi:7045 #, no-wrap msgid "quoting" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7002 +#: guix-git/doc/guix.texi:7046 #, no-wrap msgid "'" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7004 +#: guix-git/doc/guix.texi:7048 #, no-wrap msgid "backquote (quasiquote)" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7005 +#: guix-git/doc/guix.texi:7049 #, no-wrap msgid "`" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7006 +#: guix-git/doc/guix.texi:7050 #, no-wrap msgid "quasiquote" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7007 +#: guix-git/doc/guix.texi:7051 #, no-wrap msgid "comma (unquote)" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7008 +#: guix-git/doc/guix.texi:7052 #, no-wrap msgid "," msgstr "" #. type: findex -#: guix-git/doc/guix.texi:7009 +#: guix-git/doc/guix.texi:7053 #, no-wrap msgid "unquote" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7019 +#: guix-git/doc/guix.texi:7063 msgid "What about these quote (@code{'}) characters? They are Scheme syntax to introduce a literal list; @code{'} is synonymous with @code{quote}. Sometimes you'll also see @code{`} (a backquote, synonymous with @code{quasiquote}) and @code{,} (a comma, synonymous with @code{unquote}). @xref{Expression Syntax, quoting,, guile, GNU Guile Reference Manual}, for details. Here the value of the @code{arguments} field is a list of arguments passed to the build system down the road, as with @code{apply} (@pxref{Fly Evaluation, @code{apply},, guile, GNU Guile Reference Manual})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7025 +#: guix-git/doc/guix.texi:7069 msgid "The hash-colon (@code{#:}) sequence defines a Scheme @dfn{keyword} (@pxref{Keywords,,, guile, GNU Guile Reference Manual}), and @code{#:configure-flags} is a keyword used to pass a keyword argument to the build system (@pxref{Coding With Keywords,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7031 +#: guix-git/doc/guix.texi:7075 msgid "The @code{inputs} field specifies inputs to the build process---i.e., build-time or run-time dependencies of the package. Here, we add an input, a reference to the @code{gawk} variable; @code{gawk} is itself bound to a @code{} object." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7035 +#: guix-git/doc/guix.texi:7079 msgid "Note that GCC, Coreutils, Bash, and other essential tools do not need to be specified as inputs here. Instead, @code{gnu-build-system} takes care of ensuring that they are present (@pxref{Build Systems})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:7039 +#: guix-git/doc/guix.texi:7083 msgid "However, any other dependencies need to be specified in the @code{inputs} field. Any dependency not specified here will simply be unavailable to the build process, possibly leading to a build failure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7042 +#: guix-git/doc/guix.texi:7086 msgid "@xref{package Reference}, for a full description of possible fields." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7053 +#: guix-git/doc/guix.texi:7097 msgid "Once a package definition is in place, the package may actually be built using the @code{guix build} command-line tool (@pxref{Invoking guix build}), troubleshooting any build failures you encounter (@pxref{Debugging Build Failures}). You can easily jump back to the package definition using the @command{guix edit} command (@pxref{Invoking guix edit}). @xref{Packaging Guidelines}, for more information on how to test package definitions, and @ref{Invoking guix lint}, for information on how to check a definition for style conformance." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:7053 +#: guix-git/doc/guix.texi:7097 #, no-wrap msgid "GUIX_PACKAGE_PATH" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7057 +#: guix-git/doc/guix.texi:7101 msgid "Lastly, @pxref{Channels}, for information on how to extend the distribution by adding your own package definitions in a ``channel''." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7061 +#: guix-git/doc/guix.texi:7105 msgid "Finally, updating the package definition to a new upstream version can be partly automated by the @command{guix refresh} command (@pxref{Invoking guix refresh})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7067 +#: guix-git/doc/guix.texi:7111 msgid "Behind the scenes, a derivation corresponding to the @code{} object is first computed by the @code{package-derivation} procedure. That derivation is stored in a @file{.drv} file under @file{/gnu/store}. The build actions it prescribes may then be realized by using the @code{build-derivations} procedure (@pxref{The Store})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7068 +#: guix-git/doc/guix.texi:7112 #, no-wrap msgid "{Scheme Procedure} package-derivation @var{store} @var{package} [@var{system}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7071 +#: guix-git/doc/guix.texi:7115 msgid "Return the @code{} object of @var{package} for @var{system} (@pxref{Derivations})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7077 +#: guix-git/doc/guix.texi:7121 msgid "@var{package} must be a valid @code{} object, and @var{system} must be a string denoting the target system type---e.g., @code{\"x86_64-linux\"} for an x86_64 Linux-based GNU system. @var{store} must be a connection to the daemon, which operates on the store (@pxref{The Store})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7083 +#: guix-git/doc/guix.texi:7127 msgid "Similarly, it is possible to compute a derivation that cross-builds a package for some other system:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7084 +#: guix-git/doc/guix.texi:7128 #, no-wrap msgid "{Scheme Procedure} package-cross-derivation @var{store} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7088 +#: guix-git/doc/guix.texi:7132 msgid "@var{package} @var{target} [@var{system}] Return the @code{} object of @var{package} cross-built from @var{system} to @var{target}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7092 +#: guix-git/doc/guix.texi:7136 msgid "@var{target} must be a valid GNU triplet denoting the target hardware and operating system, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying Target Triplets,,, autoconf, Autoconf})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7096 +#: guix-git/doc/guix.texi:7140 msgid "Once you have package definitions, you can easily define @emph{variants} of those packages. @xref{Defining Package Variants}, for more on that." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:7104 +#: guix-git/doc/guix.texi:7148 #, no-wrap msgid "@code{package} Reference" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7108 +#: guix-git/doc/guix.texi:7152 msgid "This section summarizes all the options available in @code{package} declarations (@pxref{Defining Packages})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7109 +#: guix-git/doc/guix.texi:7153 #, no-wrap msgid "{Data Type} package" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7111 +#: guix-git/doc/guix.texi:7155 msgid "This is the data type representing a package recipe." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7115 +#: guix-git/doc/guix.texi:7159 msgid "The name of the package, as a string." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7116 +#: guix-git/doc/guix.texi:7160 #, no-wrap msgid "version" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7119 +#: guix-git/doc/guix.texi:7163 msgid "The version of the package, as a string. @xref{Version Numbers}, for guidelines." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7120 guix-git/doc/guix.texi:12900 -#: guix-git/doc/guix.texi:15181 guix-git/doc/guix.texi:15790 +#: guix-git/doc/guix.texi:7164 guix-git/doc/guix.texi:13257 +#: guix-git/doc/guix.texi:15538 guix-git/doc/guix.texi:16147 #, no-wrap msgid "source" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7127 +#: guix-git/doc/guix.texi:7171 msgid "An object telling how the source code for the package should be acquired. Most of the time, this is an @code{origin} object, which denotes a file fetched from the Internet (@pxref{origin Reference}). It can also be any other ``file-like'' object such as a @code{local-file}, which denotes a file from the local file system (@pxref{G-Expressions, @code{local-file}})." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7128 +#: guix-git/doc/guix.texi:7172 #, no-wrap msgid "build-system" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7131 +#: guix-git/doc/guix.texi:7175 msgid "The build system that should be used to build the package (@pxref{Build Systems})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7132 guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:7176 guix-git/doc/guix.texi:18315 #, no-wrap msgid "@code{arguments} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7135 +#: guix-git/doc/guix.texi:7179 msgid "The arguments that should be passed to the build system. This is a list, typically containing sequential keyword-value pairs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7136 +#: guix-git/doc/guix.texi:7180 #, no-wrap msgid "@code{inputs} (default: @code{'()})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7137 +#: guix-git/doc/guix.texi:7181 #, no-wrap msgid "@code{native-inputs} (default: @code{'()})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7138 +#: guix-git/doc/guix.texi:7182 #, no-wrap msgid "@code{propagated-inputs} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7139 +#: guix-git/doc/guix.texi:7183 #, no-wrap msgid "inputs, of packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7146 +#: guix-git/doc/guix.texi:7190 msgid "These fields list dependencies of the package. Each element of these lists is either a package, origin, or other ``file-like object'' (@pxref{G-Expressions}); to specify the output of that file-like object that should be used, pass a two-element list where the second element is the output (@pxref{Packages with Multiple Outputs}, for more on package outputs). For example, the list below specifies three inputs:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7150 +#: guix-git/doc/guix.texi:7194 #, no-wrap msgid "" "(list libffi libunistring\n" @@ -14589,24 +14702,24 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7154 +#: guix-git/doc/guix.texi:7198 msgid "In the example above, the @code{\"out\"} output of @code{libffi} and @code{libunistring} is used." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:7155 +#: guix-git/doc/guix.texi:7199 #, fuzzy, no-wrap #| msgid "Nix, compatibility" msgid "Compatibility Note" msgstr "Nix,兼容性" #. type: quotation -#: guix-git/doc/guix.texi:7162 +#: guix-git/doc/guix.texi:7206 msgid "Until version 1.3.0, input lists were a list of tuples, where each tuple has a label for the input (a string) as its first element, a package, origin, or derivation as its second element, and optionally the name of the output thereof that should be used, which defaults to @code{\"out\"}. For example, the list below is equivalent to the one above, but using the @dfn{old input style}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7168 +#: guix-git/doc/guix.texi:7212 #, no-wrap msgid "" ";; Old input style (deprecated).\n" @@ -14616,176 +14729,186 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:7174 +#: guix-git/doc/guix.texi:7218 msgid "This style is now deprecated; it is still supported but support will be removed in a future version. It should not be used for new package definitions. @xref{Invoking guix style}, on how to migrate to the new style." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7176 +#: guix-git/doc/guix.texi:7220 #, no-wrap msgid "cross compilation, package dependencies" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7182 +#: guix-git/doc/guix.texi:7226 msgid "The distinction between @code{native-inputs} and @code{inputs} is necessary when considering cross-compilation. When cross-compiling, dependencies listed in @code{inputs} are built for the @emph{target} architecture; conversely, dependencies listed in @code{native-inputs} are built for the architecture of the @emph{build} machine." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7187 +#: guix-git/doc/guix.texi:7231 msgid "@code{native-inputs} is typically used to list tools needed at build time, but not at run time, such as Autoconf, Automake, pkg-config, Gettext, or Bison. @command{guix lint} can report likely mistakes in this area (@pxref{Invoking guix lint})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:7195 +#: guix-git/doc/guix.texi:7239 msgid "package-propagated-inputs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7195 +#: guix-git/doc/guix.texi:7239 msgid "Lastly, @code{propagated-inputs} is similar to @code{inputs}, but the specified packages will be automatically installed to profiles (@pxref{Features, the role of profiles in Guix}) alongside the package they belong to (@pxref{package-cmd-propagated-inputs, @command{guix package}}, for information on how @command{guix package} deals with propagated inputs)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7199 +#: guix-git/doc/guix.texi:7243 msgid "For example this is necessary when packaging a C/C++ library that needs headers of another library to compile, or when a pkg-config file refers to another one @i{via} its @code{Requires} field." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7206 +#: guix-git/doc/guix.texi:7250 msgid "Another example where @code{propagated-inputs} is useful is for languages that lack a facility to record the run-time search path akin to the @code{RUNPATH} of ELF files; this includes Guile, Python, Perl, and more. When packaging libraries written in those languages, ensure they can find library code they depend on at run time by listing run-time dependencies in @code{propagated-inputs} rather than @code{inputs}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7207 +#: guix-git/doc/guix.texi:7251 #, no-wrap msgid "@code{outputs} (default: @code{'(\"out\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7210 +#: guix-git/doc/guix.texi:7254 msgid "The list of output names of the package. @xref{Packages with Multiple Outputs}, for typical uses of additional outputs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7211 +#: guix-git/doc/guix.texi:7255 #, no-wrap msgid "@code{native-search-paths} (default: @code{'()})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7212 +#: guix-git/doc/guix.texi:7256 #, no-wrap msgid "@code{search-paths} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7215 -msgid "A list of @code{search-path-specification} objects describing search-path environment variables honored by the package." +#: guix-git/doc/guix.texi:7260 +msgid "A list of @code{search-path-specification} objects describing search-path environment variables honored by the package. @xref{Search Paths}, for more on search path specifications." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:7266 +msgid "As for inputs, the distinction between @code{native-search-paths} and @code{search-paths} only matters when cross-compiling. In a cross-compilation context, @code{native-search-paths} applies exclusively to native inputs whereas @code{search-paths} applies only to host inputs." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:7273 +msgid "Packages such as cross-compilers care about target inputs---for instance, our (modified) GCC cross-compiler has @env{CROSS_C_INCLUDE_PATH} in @code{search-paths}, which allows it to pick @file{.h} files for the target system and @emph{not} those of native inputs. For the majority of packages though, only @code{native-search-paths} makes sense." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7216 +#: guix-git/doc/guix.texi:7274 #, no-wrap msgid "@code{replacement} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7220 +#: guix-git/doc/guix.texi:7278 msgid "This must be either @code{#f} or a package object that will be used as a @dfn{replacement} for this package. @xref{Security Updates, grafts}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7221 guix-git/doc/guix.texi:12892 +#: guix-git/doc/guix.texi:7279 guix-git/doc/guix.texi:13249 #, no-wrap msgid "synopsis" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7223 +#: guix-git/doc/guix.texi:7281 msgid "A one-line description of the package." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7224 guix-git/doc/guix.texi:12893 -#: guix-git/doc/guix.texi:35959 guix-git/doc/guix.texi:36119 +#: guix-git/doc/guix.texi:7282 guix-git/doc/guix.texi:13250 +#: guix-git/doc/guix.texi:36449 guix-git/doc/guix.texi:36609 #, no-wrap msgid "description" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7226 +#: guix-git/doc/guix.texi:7284 msgid "A more elaborate description of the package." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7227 +#: guix-git/doc/guix.texi:7285 #, no-wrap msgid "license" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7228 +#: guix-git/doc/guix.texi:7286 #, no-wrap msgid "license, of packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7231 +#: guix-git/doc/guix.texi:7289 msgid "The license of the package; a value from @code{(guix licenses)}, or a list of such values." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7232 guix-git/doc/guix.texi:12901 +#: guix-git/doc/guix.texi:7290 guix-git/doc/guix.texi:13258 #, no-wrap msgid "home-page" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7234 +#: guix-git/doc/guix.texi:7292 msgid "The URL to the home-page of the package, as a string." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7235 +#: guix-git/doc/guix.texi:7293 #, fuzzy, no-wrap msgid "@code{supported-systems} (default: @code{%supported-systems})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:7238 +#: guix-git/doc/guix.texi:7296 msgid "The list of systems supported by the package, as strings of the form @code{architecture-kernel}, for example @code{\"x86_64-linux\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7239 +#: guix-git/doc/guix.texi:7297 #, no-wrap msgid "@code{location} (default: source location of the @code{package} form)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7243 +#: guix-git/doc/guix.texi:7301 msgid "The source location of the package. It is useful to override this when inheriting from another package, in which case this field is not automatically corrected." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7246 +#: guix-git/doc/guix.texi:7304 #, no-wrap msgid "{Scheme Syntax} this-package" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7249 +#: guix-git/doc/guix.texi:7307 msgid "When used in the @emph{lexical scope} of a package field definition, this identifier resolves to the package being defined." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7252 +#: guix-git/doc/guix.texi:7310 msgid "The example below shows how to add a package as a native input of itself when cross-compiling:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7257 +#: guix-git/doc/guix.texi:7315 #, no-wrap msgid "" "(package\n" @@ -14795,7 +14918,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7263 +#: guix-git/doc/guix.texi:7321 #, no-wrap msgid "" " ;; When cross-compiled, Guile, for example, depends on\n" @@ -14806,51 +14929,51 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7266 +#: guix-git/doc/guix.texi:7324 msgid "It is an error to refer to @code{this-package} outside a package definition." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7270 +#: guix-git/doc/guix.texi:7328 msgid "The following helper procedures are provided to help deal with package inputs." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7271 +#: guix-git/doc/guix.texi:7329 #, no-wrap msgid "{Scheme Procedure} lookup-package-input @var{package} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:7272 +#: guix-git/doc/guix.texi:7330 #, no-wrap msgid "{Scheme Procedure} lookup-package-native-input @var{package} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:7273 +#: guix-git/doc/guix.texi:7331 #, no-wrap msgid "{Scheme Procedure} lookup-package-propagated-input @var{package} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:7274 +#: guix-git/doc/guix.texi:7332 #, no-wrap msgid "{Scheme Procedure} lookup-package-direct-input @var{package} @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7277 +#: guix-git/doc/guix.texi:7335 msgid "Look up @var{name} among @var{package}'s inputs (or native, propagated, or direct inputs). Return it if found, @code{#f} otherwise." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7280 +#: guix-git/doc/guix.texi:7338 msgid "@var{name} is the name of a package depended on. Here's how you might use it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7283 +#: guix-git/doc/guix.texi:7341 #, no-wrap msgid "" "(use-modules (guix packages) (gnu packages base))\n" @@ -14858,7 +14981,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7286 +#: guix-git/doc/guix.texi:7344 #, no-wrap msgid "" "(lookup-package-direct-input coreutils \"gmp\")\n" @@ -14866,46 +14989,46 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7290 +#: guix-git/doc/guix.texi:7348 msgid "In this example we obtain the @code{gmp} package that is among the direct inputs of @code{coreutils}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7292 +#: guix-git/doc/guix.texi:7350 #, fuzzy, no-wrap msgid "development inputs, of a package" msgstr "创建软件包的变体。" #. type: cindex -#: guix-git/doc/guix.texi:7293 +#: guix-git/doc/guix.texi:7351 #, fuzzy, no-wrap #| msgid "inputs, for Python packages" msgid "implicit inputs, of a package" msgstr "Python软件包的输入" #. type: Plain text -#: guix-git/doc/guix.texi:7298 +#: guix-git/doc/guix.texi:7356 msgid "Sometimes you will want to obtain the list of inputs needed to @emph{develop} a package---all the inputs that are visible when the package is compiled. This is what the @code{package-development-inputs} procedure returns." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7299 +#: guix-git/doc/guix.texi:7357 #, no-wrap msgid "{Scheme Procedure} package-development-inputs @var{package} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7306 +#: guix-git/doc/guix.texi:7364 msgid "[@var{system}] [#:target #f] Return the list of inputs required by @var{package} for development purposes on @var{system}. When @var{target} is true, return the inputs needed to cross-compile @var{package} from @var{system} to @var{triplet}, where @var{triplet} is a triplet such as @code{\"aarch64-linux-gnu\"}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7310 +#: guix-git/doc/guix.texi:7368 msgid "Note that the result includes both explicit inputs and implicit inputs---inputs automatically added by the build system (@pxref{Build Systems}). Let us take the @code{hello} package to illustrate that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7313 +#: guix-git/doc/guix.texi:7371 #, no-wrap msgid "" "(use-modules (gnu packages base) (guix packages))\n" @@ -14913,7 +15036,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7316 +#: guix-git/doc/guix.texi:7374 #, no-wrap msgid "" "hello\n" @@ -14922,7 +15045,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7319 +#: guix-git/doc/guix.texi:7377 #, no-wrap msgid "" "(package-direct-inputs hello)\n" @@ -14931,7 +15054,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7322 +#: guix-git/doc/guix.texi:7380 #, no-wrap msgid "" "(package-development-inputs hello)\n" @@ -14939,39 +15062,39 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7331 +#: guix-git/doc/guix.texi:7389 msgid "In this example, @code{package-direct-inputs} returns the empty list, because @code{hello} has zero explicit dependencies. Conversely, @code{package-development-inputs} includes inputs implicitly added by @code{gnu-build-system} that are required to build @code{hello}: tar, gzip, GCC, libc, Bash, and more. To visualize it, @command{guix graph hello} would show you explicit inputs, whereas @command{guix graph -t bag hello} would include implicit inputs (@pxref{Invoking guix graph})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7337 +#: guix-git/doc/guix.texi:7395 msgid "Because packages are regular Scheme objects that capture a complete dependency graph and associated build procedures, it is often useful to write procedures that take a package and return a modified version thereof according to some parameters. Below are a few examples." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7338 +#: guix-git/doc/guix.texi:7396 #, no-wrap msgid "tool chain, choosing a package's tool chain" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7339 +#: guix-git/doc/guix.texi:7397 #, no-wrap msgid "{Scheme Procedure} package-with-c-toolchain @var{package} @var{toolchain}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7344 +#: guix-git/doc/guix.texi:7402 msgid "Return a variant of @var{package} that uses @var{toolchain} instead of the default GNU C/C++ toolchain. @var{toolchain} must be a list of inputs (label/package tuples) providing equivalent functionality, such as the @code{gcc-toolchain} package." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7348 +#: guix-git/doc/guix.texi:7406 msgid "The example below returns a variant of the @code{hello} package built with GCC@tie{}10.x and the rest of the GNU tool chain (Binutils and the GNU C Library) instead of the default tool chain:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7352 +#: guix-git/doc/guix.texi:7410 #, no-wrap msgid "" "(let ((toolchain (specification->package \"gcc-toolchain@@10\")))\n" @@ -14979,198 +15102,198 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7360 +#: guix-git/doc/guix.texi:7418 msgid "The build tool chain is part of the @dfn{implicit inputs} of packages---it's usually not listed as part of the various ``inputs'' fields and is instead pulled in by the build system. Consequently, this procedure works by changing the build system of @var{package} so that it pulls in @var{toolchain} instead of the defaults. @ref{Build Systems}, for more on build systems." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:7363 +#: guix-git/doc/guix.texi:7421 #, no-wrap msgid "@code{origin} Reference" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7371 +#: guix-git/doc/guix.texi:7429 msgid "This section documents @dfn{origins}. An @code{origin} declaration specifies data that must be ``produced''---downloaded, usually---and whose content hash is known in advance. Origins are primarily used to represent the source code of packages (@pxref{Defining Packages}). For that reason, the @code{origin} form allows you to declare patches to apply to the original source code as well as code snippets to modify it." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7372 +#: guix-git/doc/guix.texi:7430 #, no-wrap msgid "{Data Type} origin" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7374 +#: guix-git/doc/guix.texi:7432 msgid "This is the data type representing a source code origin." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7376 guix-git/doc/guix.texi:26552 +#: guix-git/doc/guix.texi:7434 guix-git/doc/guix.texi:26889 #, no-wrap msgid "uri" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7381 +#: guix-git/doc/guix.texi:7439 msgid "An object containing the URI of the source. The object type depends on the @code{method} (see below). For example, when using the @var{url-fetch} method of @code{(guix download)}, the valid @code{uri} values are: a URL represented as a string, or a list thereof." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7382 +#: guix-git/doc/guix.texi:7440 #, no-wrap msgid "fixed-output derivations, for download" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7383 +#: guix-git/doc/guix.texi:7441 #, no-wrap msgid "method" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7390 +#: guix-git/doc/guix.texi:7448 msgid "A monadic procedure that handles the given URI@. The procedure must accept at least three arguments: the value of the @code{uri} field and the hash algorithm and hash value specified by the @code{hash} field. It must return a store item or a derivation in the store monad (@pxref{The Store Monad}); most methods return a fixed-output derivation (@pxref{Derivations})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7394 +#: guix-git/doc/guix.texi:7452 msgid "Commonly used methods include @code{url-fetch}, which fetches data from a URL, and @code{git-fetch}, which fetches data from a Git repository (see below)." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7395 +#: guix-git/doc/guix.texi:7453 #, no-wrap msgid "sha256" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7399 +#: guix-git/doc/guix.texi:7457 msgid "A bytevector containing the SHA-256 hash of the source. This is equivalent to providing a @code{content-hash} SHA256 object in the @code{hash} field described below." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7400 +#: guix-git/doc/guix.texi:7458 #, no-wrap msgid "hash" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7403 +#: guix-git/doc/guix.texi:7461 msgid "The @code{content-hash} object of the source---see below for how to use @code{content-hash}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7407 +#: guix-git/doc/guix.texi:7465 msgid "You can obtain this information using @code{guix download} (@pxref{Invoking guix download}) or @code{guix hash} (@pxref{Invoking guix hash})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7408 +#: guix-git/doc/guix.texi:7466 #, no-wrap msgid "@code{file-name} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7414 +#: guix-git/doc/guix.texi:7472 msgid "The file name under which the source code should be saved. When this is @code{#f}, a sensible default value will be used in most cases. In case the source is fetched from a URL, the file name from the URL will be used. For version control checkouts, it is recommended to provide the file name explicitly because the default is not very descriptive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7415 +#: guix-git/doc/guix.texi:7473 #, no-wrap msgid "@code{patches} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7418 +#: guix-git/doc/guix.texi:7476 msgid "A list of file names, origins, or file-like objects (@pxref{G-Expressions, file-like objects}) pointing to patches to be applied to the source." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7422 +#: guix-git/doc/guix.texi:7480 msgid "This list of patches must be unconditional. In particular, it cannot depend on the value of @code{%current-system} or @code{%current-target-system}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7423 +#: guix-git/doc/guix.texi:7481 #, no-wrap msgid "@code{snippet} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7427 +#: guix-git/doc/guix.texi:7485 msgid "A G-expression (@pxref{G-Expressions}) or S-expression that will be run in the source directory. This is a convenient way to modify the source, sometimes more convenient than a patch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7428 +#: guix-git/doc/guix.texi:7486 #, no-wrap msgid "@code{patch-flags} (default: @code{'(\"-p1\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7431 +#: guix-git/doc/guix.texi:7489 msgid "A list of command-line flags that should be passed to the @code{patch} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7432 +#: guix-git/doc/guix.texi:7490 #, no-wrap msgid "@code{patch-inputs} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7436 +#: guix-git/doc/guix.texi:7494 msgid "Input packages or derivations to the patching process. When this is @code{#f}, the usual set of inputs necessary for patching are provided, such as GNU@tie{}Patch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7437 guix-git/doc/guix.texi:26425 +#: guix-git/doc/guix.texi:7495 guix-git/doc/guix.texi:26762 #, no-wrap msgid "@code{modules} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7440 +#: guix-git/doc/guix.texi:7498 msgid "A list of Guile modules that should be loaded during the patching process and while running the code in the @code{snippet} field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7441 +#: guix-git/doc/guix.texi:7499 #, no-wrap msgid "@code{patch-guile} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7444 +#: guix-git/doc/guix.texi:7502 msgid "The Guile package that should be used in the patching process. When this is @code{#f}, a sensible default is used." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7447 +#: guix-git/doc/guix.texi:7505 #, no-wrap msgid "{Data Type} content-hash @var{value} [@var{algorithm}]" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7451 +#: guix-git/doc/guix.texi:7509 msgid "Construct a content hash object for the given @var{algorithm}, and with @var{value} as its hash value. When @var{algorithm} is omitted, assume it is @code{sha256}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7454 +#: guix-git/doc/guix.texi:7512 msgid "@var{value} can be a literal string, in which case it is base32-decoded, or it can be a bytevector." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7456 +#: guix-git/doc/guix.texi:7514 #, fuzzy msgid "The following forms are all equivalent:" msgstr "这些依赖是可选的:" #. type: lisp -#: guix-git/doc/guix.texi:7465 +#: guix-git/doc/guix.texi:7523 #, no-wrap msgid "" "(content-hash \"05zxkyz9bv3j9h0xyid1rhvh3klhsmrpkf3bcs6frvlgyr2gwilj\")\n" @@ -15183,103 +15306,103 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7470 +#: guix-git/doc/guix.texi:7528 msgid "Technically, @code{content-hash} is currently implemented as a macro. It performs sanity checks at macro-expansion time, when possible, such as ensuring that @var{value} has the right size for @var{algorithm}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7476 +#: guix-git/doc/guix.texi:7534 msgid "As we have seen above, how exactly the data an origin refers to is retrieved is determined by its @code{method} field. The @code{(guix download)} module provides the most common method, @code{url-fetch}, described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7477 +#: guix-git/doc/guix.texi:7535 #, no-wrap msgid "{Scheme Procedure} url-fetch @var{url} @var{hash-algo} @var{hash} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7485 +#: guix-git/doc/guix.texi:7543 msgid "[name] [#:executable? #f] Return a fixed-output derivation that fetches data from @var{url} (a string, or a list of strings denoting alternate URLs), which is expected to have hash @var{hash} of type @var{hash-algo} (a symbol). By default, the file name is the base name of URL; optionally, @var{name} can specify a different file name. When @var{executable?} is true, make the downloaded file executable." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7488 +#: guix-git/doc/guix.texi:7546 msgid "When one of the URL starts with @code{mirror://}, then its host part is interpreted as the name of a mirror scheme, taken from @file{%mirror-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7491 +#: guix-git/doc/guix.texi:7549 msgid "Alternatively, when URL starts with @code{file://}, return the corresponding file name in the store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7497 +#: guix-git/doc/guix.texi:7555 msgid "Likewise, the @code{(guix git-download)} module defines the @code{git-fetch} origin method, which fetches data from a Git version control repository, and the @code{git-reference} data type to describe the repository and revision to fetch." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7498 +#: guix-git/doc/guix.texi:7556 #, no-wrap msgid "{Scheme Procedure} git-fetch @var{ref} @var{hash-algo} @var{hash}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7503 +#: guix-git/doc/guix.texi:7561 msgid "Return a fixed-output derivation that fetches @var{ref}, a @code{} object. The output is expected to have recursive hash @var{hash} of type @var{hash-algo} (a symbol). Use @var{name} as the file name, or a generic name if @code{#f}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7505 +#: guix-git/doc/guix.texi:7563 #, fuzzy, no-wrap msgid "{Data Type} git-reference" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:7508 +#: guix-git/doc/guix.texi:7566 msgid "This data type represents a Git reference for @code{git-fetch} to retrieve." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7510 guix-git/doc/guix.texi:24186 +#: guix-git/doc/guix.texi:7568 guix-git/doc/guix.texi:24548 #, no-wrap msgid "url" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7512 +#: guix-git/doc/guix.texi:7570 msgid "The URL of the Git repository to clone." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:7513 +#: guix-git/doc/guix.texi:7571 #, no-wrap msgid "commit" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7518 +#: guix-git/doc/guix.texi:7576 msgid "This string denotes either the commit to fetch (a hexadecimal string), or the tag to fetch. You can also use a ``short'' commit ID or a @command{git describe} style identifier such as @code{v1.0.1-10-g58d7909c97}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7519 +#: guix-git/doc/guix.texi:7577 #, fuzzy, no-wrap msgid "@code{recursive?} (default: @code{#f})" msgstr "@code{max-zone-size}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:7521 +#: guix-git/doc/guix.texi:7579 msgid "This Boolean indicates whether to recursively fetch Git sub-modules." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:7525 +#: guix-git/doc/guix.texi:7583 msgid "The example below denotes the @code{v2.10} tag of the GNU@tie{}Hello repository:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7530 +#: guix-git/doc/guix.texi:7588 #, fuzzy, no-wrap msgid "" "(git-reference\n" @@ -15288,12 +15411,12 @@ msgid "" msgstr "git clone https://git.savannah.gnu.org/git/guix.git\n" #. type: deftp -#: guix-git/doc/guix.texi:7534 +#: guix-git/doc/guix.texi:7592 msgid "This is equivalent to the reference below, which explicitly names the commit:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7539 +#: guix-git/doc/guix.texi:7597 #, no-wrap msgid "" "(git-reference\n" @@ -15302,56 +15425,56 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7545 +#: guix-git/doc/guix.texi:7603 msgid "For Mercurial repositories, the module @code{(guix hg-download)} defines the @code{hg-fetch} origin method and @code{hg-reference} data type for support of the Mercurial version control system." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7546 +#: guix-git/doc/guix.texi:7604 #, no-wrap msgid "{Scheme Procedure} hg-fetch @var{ref} @var{hash-algo} @var{hash} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7552 +#: guix-git/doc/guix.texi:7610 msgid "[name] Return a fixed-output derivation that fetches @var{ref}, a @code{} object. The output is expected to have recursive hash @var{hash} of type @var{hash-algo} (a symbol). Use @var{name} as the file name, or a generic name if @code{#false}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7557 +#: guix-git/doc/guix.texi:7615 #, fuzzy, no-wrap msgid "customizing packages" msgstr "定制软件包" #. type: cindex -#: guix-git/doc/guix.texi:7558 +#: guix-git/doc/guix.texi:7616 #, fuzzy, no-wrap msgid "variants, of packages" msgstr "创建软件包的变体。" #. type: Plain text -#: guix-git/doc/guix.texi:7568 +#: guix-git/doc/guix.texi:7626 msgid "One of the nice things with Guix is that, given a package definition, you can easily @emph{derive} variants of that package---for a different upstream version, with different dependencies, different compilation options, and so on. Some of these custom packages can be defined straight from the command line (@pxref{Package Transformation Options}). This section describes how to define package variants in code. This can be useful in ``manifests'' (@pxref{profile-manifest, @option{--manifest}}) and in your own package collection (@pxref{Creating a Channel}), among others!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7569 +#: guix-git/doc/guix.texi:7627 #, fuzzy, no-wrap msgid "inherit, for package definitions" msgstr "从软件包定义里寻找错误。" #. type: Plain text -#: guix-git/doc/guix.texi:7576 +#: guix-git/doc/guix.texi:7634 msgid "As discussed earlier, packages are first-class objects in the Scheme language. The @code{(guix packages)} module provides the @code{package} construct to define new package objects (@pxref{package Reference}). The easiest way to define a package variant is using the @code{inherit} keyword together with @code{package}. This allows you to inherit from a package definition while overriding the fields you want." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7581 +#: guix-git/doc/guix.texi:7639 msgid "For example, given the @code{hello} variable, which contains a definition for the current version of GNU@tie{}Hello, here's how you would define a variant for version 2.2 (released in 2006, it's vintage!):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7584 +#: guix-git/doc/guix.texi:7642 #, no-wrap msgid "" "(use-modules (gnu packages base)) ;for 'hello'\n" @@ -15359,7 +15482,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7596 +#: guix-git/doc/guix.texi:7654 #, no-wrap msgid "" "(define hello-2.2\n" @@ -15376,17 +15499,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7605 +#: guix-git/doc/guix.texi:7663 msgid "The example above corresponds to what the @option{--with-source} package transformation option does. Essentially @code{hello-2.2} preserves all the fields of @code{hello}, except @code{version} and @code{source}, which it overrides. Note that the original @code{hello} variable is still there, in the @code{(gnu packages base)} module, unchanged. When you define a custom package like this, you are really @emph{adding} a new package definition; the original one remains available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7611 +#: guix-git/doc/guix.texi:7669 msgid "You can just as well define variants with a different set of dependencies than the original package. For example, the default @code{gdb} package depends on @code{guile}, but since that is an optional dependency, you can define a variant that removes that dependency like so:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7614 +#: guix-git/doc/guix.texi:7672 #, no-wrap msgid "" "(use-modules (gnu packages gdb)) ;for 'gdb'\n" @@ -15394,7 +15517,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7620 +#: guix-git/doc/guix.texi:7678 #, no-wrap msgid "" "(define gdb-sans-guile\n" @@ -15405,61 +15528,61 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7626 +#: guix-git/doc/guix.texi:7684 msgid "The @code{modify-inputs} form above removes the @code{\"guile\"} package from the @code{inputs} field of @code{gdb}. The @code{modify-inputs} macro is a helper that can prove useful anytime you want to remove, add, or replace package inputs." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7627 +#: guix-git/doc/guix.texi:7685 #, no-wrap msgid "{Scheme Syntax} modify-inputs @var{inputs} @var{clauses}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7631 +#: guix-git/doc/guix.texi:7689 msgid "Modify the given package inputs, as returned by @code{package-inputs} & co., according to the given clauses. Each clause must have one of the following forms:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:7633 +#: guix-git/doc/guix.texi:7691 #, fuzzy, no-wrap msgid "(delete @var{name}@dots{})" msgstr "--log-compression=@var{type}" #. type: table -#: guix-git/doc/guix.texi:7635 +#: guix-git/doc/guix.texi:7693 msgid "Delete from the inputs packages with the given @var{name}s (strings)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7636 +#: guix-git/doc/guix.texi:7694 #, fuzzy, no-wrap msgid "(append @var{package}@dots{})" msgstr "guix install emacs-guix\n" #. type: table -#: guix-git/doc/guix.texi:7638 +#: guix-git/doc/guix.texi:7696 msgid "Add @var{package}s to the end of the input list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7639 +#: guix-git/doc/guix.texi:7697 #, fuzzy, no-wrap msgid "(prepend @var{package}@dots{})" msgstr "guix install emacs-guix\n" #. type: table -#: guix-git/doc/guix.texi:7641 +#: guix-git/doc/guix.texi:7699 msgid "Add @var{package}s to the front of the input list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7645 +#: guix-git/doc/guix.texi:7703 msgid "The example below removes the GMP and ACL inputs of Coreutils and adds libcap to the back of the input list:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7650 +#: guix-git/doc/guix.texi:7708 #, no-wrap msgid "" "(modify-inputs (package-inputs coreutils)\n" @@ -15468,12 +15591,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7654 +#: guix-git/doc/guix.texi:7712 msgid "The example below replaces the @code{guile} package from the inputs of @code{guile-redis} with @code{guile-2.2}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7658 +#: guix-git/doc/guix.texi:7716 #, no-wrap msgid "" "(modify-inputs (package-inputs guile-redis)\n" @@ -15481,17 +15604,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7662 +#: guix-git/doc/guix.texi:7720 msgid "The last type of clause is @code{prepend}, to add inputs to the front of the list." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7671 +#: guix-git/doc/guix.texi:7729 msgid "In some cases, you may find it useful to write functions (``procedures'', in Scheme parlance) that return a package based on some parameters. For example, consider the @code{luasocket} library for the Lua programming language. We want to create @code{luasocket} packages for major versions of Lua. One way to do that is to define a procedure that takes a Lua package and returns a @code{luasocket} package that depends on it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7681 +#: guix-git/doc/guix.texi:7739 #, no-wrap msgid "" "(define (make-lua-socket name lua)\n" @@ -15506,7 +15629,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7684 +#: guix-git/doc/guix.texi:7742 #, no-wrap msgid "" "(define-public lua5.1-socket\n" @@ -15515,7 +15638,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7687 +#: guix-git/doc/guix.texi:7745 #, no-wrap msgid "" "(define-public lua5.2-socket\n" @@ -15523,34 +15646,34 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7695 +#: guix-git/doc/guix.texi:7753 msgid "Here we have defined packages @code{lua5.1-socket} and @code{lua5.2-socket} by calling @code{make-lua-socket} with different arguments. @xref{Procedures,,, guile, GNU Guile Reference Manual}, for more info on procedures. Having top-level public definitions for these two packages means that they can be referred to from the command line (@pxref{Package Modules})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7696 +#: guix-git/doc/guix.texi:7754 #, no-wrap msgid "package transformations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7701 +#: guix-git/doc/guix.texi:7759 msgid "These are pretty simple package variants. As a convenience, the @code{(guix transformations)} module provides a high-level interface that directly maps to the more sophisticated package transformation options (@pxref{Package Transformation Options}):" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7702 +#: guix-git/doc/guix.texi:7760 #, no-wrap msgid "{Scheme Procedure} options->transformation @var{opts}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7706 +#: guix-git/doc/guix.texi:7764 msgid "Return a procedure that, when passed an object to build (package, derivation, etc.), applies the transformations specified by @var{opts} and returns the resulting objects. @var{opts} must be a list of symbol/string pairs such as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7710 +#: guix-git/doc/guix.texi:7768 #, no-wrap msgid "" "((with-branch . \"guile-gcrypt=master\")\n" @@ -15558,17 +15681,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7714 +#: guix-git/doc/guix.texi:7772 msgid "Each symbol names a transformation and the corresponding string is an argument to that transformation." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7717 +#: guix-git/doc/guix.texi:7775 msgid "For instance, a manifest equivalent to this command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:7722 +#: guix-git/doc/guix.texi:7780 #, no-wrap msgid "" "guix build guix \\\n" @@ -15577,12 +15700,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7726 +#: guix-git/doc/guix.texi:7784 msgid "... would look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7729 +#: guix-git/doc/guix.texi:7787 #, no-wrap msgid "" "(use-modules (guix transformations))\n" @@ -15590,7 +15713,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7735 +#: guix-git/doc/guix.texi:7793 #, no-wrap msgid "" "(define transform\n" @@ -15602,7 +15725,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7738 +#: guix-git/doc/guix.texi:7796 #, no-wrap msgid "" "(packages->manifest\n" @@ -15610,50 +15733,50 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7740 +#: guix-git/doc/guix.texi:7798 #, no-wrap msgid "input rewriting" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7741 +#: guix-git/doc/guix.texi:7799 #, no-wrap msgid "dependency graph rewriting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7748 +#: guix-git/doc/guix.texi:7806 msgid "The @code{options->transformation} procedure is convenient, but it's perhaps also not as flexible as you may like. How is it implemented? The astute reader probably noticed that most package transformation options go beyond the superficial changes shown in the first examples of this section: they involve @dfn{input rewriting}, whereby the dependency graph of a package is rewritten by replacing specific inputs by others." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7752 +#: guix-git/doc/guix.texi:7810 msgid "Dependency graph rewriting, for the purposes of swapping packages in the graph, is what the @code{package-input-rewriting} procedure in @code{(guix packages)} implements." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7753 +#: guix-git/doc/guix.texi:7811 #, no-wrap msgid "{Scheme Procedure} package-input-rewriting @var{replacements} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7760 +#: guix-git/doc/guix.texi:7818 msgid "[@var{rewrite-name}] [#:deep? #t] Return a procedure that, when passed a package, replaces its direct and indirect dependencies, including implicit inputs when @var{deep?} is true, according to @var{replacements}. @var{replacements} is a list of package pairs; the first element of each pair is the package to replace, and the second one is the replacement." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7763 +#: guix-git/doc/guix.texi:7821 msgid "Optionally, @var{rewrite-name} is a one-argument procedure that takes the name of a package and returns its new name after rewrite." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7767 guix-git/doc/guix.texi:11216 +#: guix-git/doc/guix.texi:7825 guix-git/doc/guix.texi:11530 msgid "Consider this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7773 +#: guix-git/doc/guix.texi:7831 #, no-wrap msgid "" "(define libressl-instead-of-openssl\n" @@ -15664,7 +15787,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7776 +#: guix-git/doc/guix.texi:7834 #, no-wrap msgid "" "(define git-with-libressl\n" @@ -15672,33 +15795,33 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7784 +#: guix-git/doc/guix.texi:7842 msgid "Here we first define a rewriting procedure that replaces @var{openssl} with @var{libressl}. Then we use it to define a @dfn{variant} of the @var{git} package that uses @var{libressl} instead of @var{openssl}. This is exactly what the @option{--with-input} command-line option does (@pxref{Package Transformation Options, @option{--with-input}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7787 +#: guix-git/doc/guix.texi:7845 msgid "The following variant of @code{package-input-rewriting} can match packages to be replaced by name rather than by identity." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7788 +#: guix-git/doc/guix.texi:7846 #, no-wrap msgid "{Scheme Procedure} package-input-rewriting/spec @var{replacements} [#:deep? #t]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7795 +#: guix-git/doc/guix.texi:7853 msgid "Return a procedure that, given a package, applies the given @var{replacements} to all the package graph, including implicit inputs unless @var{deep?} is false. @var{replacements} is a list of spec/procedures pair; each spec is a package specification such as @code{\"gcc\"} or @code{\"guile@@2\"}, and each procedure takes a matching package and returns a replacement for that package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7798 +#: guix-git/doc/guix.texi:7856 msgid "The example above could be rewritten this way:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:7803 +#: guix-git/doc/guix.texi:7861 #, no-wrap msgid "" "(define libressl-instead-of-openssl\n" @@ -15707,872 +15830,872 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7808 +#: guix-git/doc/guix.texi:7866 msgid "The key difference here is that, this time, packages are matched by spec and not by identity. In other words, any package in the graph that is called @code{openssl} will be replaced." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7812 +#: guix-git/doc/guix.texi:7870 msgid "A more generic procedure to rewrite a package dependency graph is @code{package-mapping}: it supports arbitrary changes to nodes in the graph." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7813 +#: guix-git/doc/guix.texi:7871 #, no-wrap msgid "{Scheme Procedure} package-mapping @var{proc} [@var{cut?}] [#:deep? #f]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:7818 +#: guix-git/doc/guix.texi:7876 msgid "Return a procedure that, given a package, applies @var{proc} to all the packages depended on and returns the resulting package. The procedure stops recursion when @var{cut?} returns true for a given package. When @var{deep?} is true, @var{proc} is applied to implicit inputs as well." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7824 +#: guix-git/doc/guix.texi:7882 #, no-wrap msgid "build system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7829 +#: guix-git/doc/guix.texi:7887 msgid "Each package definition specifies a @dfn{build system} and arguments for that build system (@pxref{Defining Packages}). This @code{build-system} field represents the build procedure of the package, as well as implicit dependencies of that build procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7833 +#: guix-git/doc/guix.texi:7891 msgid "Build systems are @code{} objects. The interface to create and manipulate them is provided by the @code{(guix build-system)} module, and actual build systems are exported by specific modules." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7834 +#: guix-git/doc/guix.texi:7892 #, no-wrap msgid "bag (low-level package representation)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7844 +#: guix-git/doc/guix.texi:7902 msgid "Under the hood, build systems first compile package objects to @dfn{bags}. A @dfn{bag} is like a package, but with less ornamentation---in other words, a bag is a lower-level representation of a package, which includes all the inputs of that package, including some that were implicitly added by the build system. This intermediate representation is then compiled to a derivation (@pxref{Derivations}). The @code{package-with-c-toolchain} is an example of a way to change the implicit inputs that a package's build system pulls in (@pxref{package Reference, @code{package-with-c-toolchain}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7852 +#: guix-git/doc/guix.texi:7910 msgid "Build systems accept an optional list of @dfn{arguments}. In package definitions, these are passed @i{via} the @code{arguments} field (@pxref{Defining Packages}). They are typically keyword arguments (@pxref{Optional Arguments, keyword arguments in Guile,, guile, GNU Guile Reference Manual}). The value of these arguments is usually evaluated in the @dfn{build stratum}---i.e., by a Guile process launched by the daemon (@pxref{Derivations})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7856 +#: guix-git/doc/guix.texi:7914 msgid "The main build system is @code{gnu-build-system}, which implements the standard build procedure for GNU and many other packages. It is provided by the @code{(guix build-system gnu)} module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7857 +#: guix-git/doc/guix.texi:7915 #, no-wrap msgid "{Scheme Variable} gnu-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7861 +#: guix-git/doc/guix.texi:7919 msgid "@code{gnu-build-system} represents the GNU Build System, and variants thereof (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7862 guix-git/doc/guix.texi:8812 -#: guix-git/doc/guix.texi:9294 +#: guix-git/doc/guix.texi:7920 guix-git/doc/guix.texi:8869 +#: guix-git/doc/guix.texi:9429 #, no-wrap msgid "build phases" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7869 +#: guix-git/doc/guix.texi:7927 msgid "In a nutshell, packages using it are configured, built, and installed with the usual @code{./configure && make && make check && make install} command sequence. In practice, a few additional steps are often needed. All these steps are split up in separate @dfn{phases}. @xref{Build Phases}, for more info on build phases and ways to customize them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7876 +#: guix-git/doc/guix.texi:7934 msgid "In addition, this build system ensures that the ``standard'' environment for GNU packages is available. This includes tools such as GCC, libc, Coreutils, Bash, Make, Diffutils, grep, and sed (see the @code{(guix build-system gnu)} module for a complete list). We call these the @dfn{implicit inputs} of a package, because package definitions do not have to mention them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7880 +#: guix-git/doc/guix.texi:7938 msgid "This build system supports a number of keyword arguments, which can be passed @i{via} the @code{arguments} field of a package. Here are some of the main parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:7882 +#: guix-git/doc/guix.texi:7940 #, no-wrap msgid "#:phases" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7885 +#: guix-git/doc/guix.texi:7943 msgid "This argument specifies build-side code that evaluates to an alist of build phases. @xref{Build Phases}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7886 +#: guix-git/doc/guix.texi:7944 #, fuzzy, no-wrap msgid "#:configure-flags" msgstr "系统配置" #. type: table -#: guix-git/doc/guix.texi:7889 +#: guix-git/doc/guix.texi:7947 msgid "This is a list of flags (strings) passed to the @command{configure} script. @xref{Defining Packages}, for an example." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7890 +#: guix-git/doc/guix.texi:7948 #, no-wrap msgid "#:make-flags" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7894 +#: guix-git/doc/guix.texi:7952 msgid "This list of strings contains flags passed as arguments to @command{make} invocations in the @code{build}, @code{check}, and @code{install} phases." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7895 +#: guix-git/doc/guix.texi:7953 #, no-wrap msgid "#:out-of-source?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7898 +#: guix-git/doc/guix.texi:7956 msgid "This Boolean, @code{#f} by default, indicates whether to run builds in a build directory separate from the source tree." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7903 +#: guix-git/doc/guix.texi:7961 msgid "When it is true, the @code{configure} phase creates a separate build directory, changes to that directory, and runs the @code{configure} script from there. This is useful for packages that require it, such as @code{glibc}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7904 +#: guix-git/doc/guix.texi:7962 #, no-wrap msgid "#:tests?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7907 +#: guix-git/doc/guix.texi:7965 msgid "This Boolean, @code{#t} by default, indicates whether the @code{check} phase should run the package's test suite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7908 +#: guix-git/doc/guix.texi:7966 #, no-wrap msgid "#:test-target" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7911 +#: guix-git/doc/guix.texi:7969 msgid "This string, @code{\"check\"} by default, gives the name of the makefile target used by the @code{check} phase." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7912 +#: guix-git/doc/guix.texi:7970 #, no-wrap msgid "#:parallel-build?" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7913 +#: guix-git/doc/guix.texi:7971 #, no-wrap msgid "#:parallel-tests?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7920 +#: guix-git/doc/guix.texi:7978 msgid "These Boolean values specify whether to build, respectively run the test suite, in parallel, with the @code{-j} flag of @command{make}. When they are true, @code{make} is passed @code{-j@var{n}}, where @var{n} is the number specified as the @option{--cores} option of @command{guix-daemon} or that of the @command{guix} client command (@pxref{Common Build Options, @option{--cores}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7921 +#: guix-git/doc/guix.texi:7979 #, no-wrap msgid "RUNPATH, validation" msgstr "" #. type: item -#: guix-git/doc/guix.texi:7922 +#: guix-git/doc/guix.texi:7980 #, no-wrap msgid "#:validate-runpath?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7926 +#: guix-git/doc/guix.texi:7984 msgid "This Boolean, @code{#t} by default, determines whether to ``validate'' the @code{RUNPATH} of ELF binaries (@code{.so} shared libraries as well as executables) previously installed by the @code{install} phase." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7934 +#: guix-git/doc/guix.texi:7992 msgid "This validation step consists in making sure that all the shared libraries needed by an ELF binary, which are listed as @code{DT_NEEDED} entries in its @code{PT_DYNAMIC} segment, appear in the @code{DT_RUNPATH} entry of that binary. In other words, it ensures that running or using those binaries will not result in a ``file not found'' error at run time. @xref{Options, @option{-rpath},, ld, The GNU Linker}, for more information on @code{RUNPATH}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7935 +#: guix-git/doc/guix.texi:7993 #, fuzzy, no-wrap msgid "#:substitutable?" msgstr "substitutes" #. type: table -#: guix-git/doc/guix.texi:7939 +#: guix-git/doc/guix.texi:7997 msgid "This Boolean, @code{#t} by default, tells whether the package outputs should be substitutable---i.e., whether users should be able to obtain substitutes for them instead of building locally (@pxref{Substitutes})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:7940 +#: guix-git/doc/guix.texi:7998 #, no-wrap msgid "#:allowed-references" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:7941 +#: guix-git/doc/guix.texi:7999 #, no-wrap msgid "#:disallowed-references" msgstr "" #. type: table -#: guix-git/doc/guix.texi:7946 +#: guix-git/doc/guix.texi:8004 msgid "When true, these arguments must be a list of dependencies that must not appear among the references of the build results. If, upon build completion, some of these references are retained, the build process fails." msgstr "" #. type: table -#: guix-git/doc/guix.texi:7951 +#: guix-git/doc/guix.texi:8009 msgid "This is useful to ensure that a package does not erroneously keep a reference to some of it build-time inputs, in cases where doing so would, for example, unnecessarily increase its size (@pxref{Invoking guix size})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7954 +#: guix-git/doc/guix.texi:8012 msgid "Most other build systems support these keyword arguments." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:7961 +#: guix-git/doc/guix.texi:8019 msgid "Other @code{} objects are defined to support other conventions and tools used by free software packages. They inherit most of @code{gnu-build-system}, and differ mainly in the set of inputs implicitly added to the build process, and in the list of phases executed. Some of these build systems are listed below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7962 +#: guix-git/doc/guix.texi:8020 #, no-wrap msgid "{Scheme Variable} ant-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7966 +#: guix-git/doc/guix.texi:8024 msgid "This variable is exported by @code{(guix build-system ant)}. It implements the build procedure for Java packages that can be built with @url{https://ant.apache.org/, Ant build tool}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7971 +#: guix-git/doc/guix.texi:8029 msgid "It adds both @code{ant} and the @dfn{Java Development Kit} (JDK) as provided by the @code{icedtea} package to the set of inputs. Different packages can be specified with the @code{#:ant} and @code{#:jdk} parameters, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7977 +#: guix-git/doc/guix.texi:8035 msgid "When the original package does not provide a suitable Ant build file, the parameter @code{#:jar-name} can be used to generate a minimal Ant build file @file{build.xml} with tasks to build the specified jar archive. In this case the parameter @code{#:source-dir} can be used to specify the source sub-directory, defaulting to ``src''." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7985 +#: guix-git/doc/guix.texi:8043 msgid "The @code{#:main-class} parameter can be used with the minimal ant buildfile to specify the main class of the resulting jar. This makes the jar file executable. The @code{#:test-include} parameter can be used to specify the list of junit tests to run. It defaults to @code{(list \"**/*Test.java\")}. The @code{#:test-exclude} can be used to disable some tests. It defaults to @code{(list \"**/Abstract*.java\")}, because abstract classes cannot be run as tests." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7989 +#: guix-git/doc/guix.texi:8047 msgid "The parameter @code{#:build-target} can be used to specify the Ant task that should be run during the @code{build} phase. By default the ``jar'' task will be run." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7992 +#: guix-git/doc/guix.texi:8050 #, no-wrap msgid "{Scheme Variable} android-ndk-build-system" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7993 +#: guix-git/doc/guix.texi:8051 #, no-wrap msgid "Android distribution" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:7994 +#: guix-git/doc/guix.texi:8052 #, no-wrap msgid "Android NDK build system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:7998 +#: guix-git/doc/guix.texi:8056 msgid "This variable is exported by @code{(guix build-system android-ndk)}. It implements a build procedure for Android NDK (native development kit) packages using a Guix-specific build process." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8002 +#: guix-git/doc/guix.texi:8060 msgid "The build system assumes that packages install their public interface (header) files to the subdirectory @file{include} of the @code{out} output and their libraries to the subdirectory @file{lib} the @code{out} output." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8005 +#: guix-git/doc/guix.texi:8063 msgid "It's also assumed that the union of all the dependencies of a package has no conflicting files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8008 +#: guix-git/doc/guix.texi:8066 msgid "For the time being, cross-compilation is not supported - so right now the libraries and header files are assumed to be host tools." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8011 +#: guix-git/doc/guix.texi:8069 #, no-wrap msgid "{Scheme Variable} asdf-build-system/source" msgstr "" #. type: defvrx -#: guix-git/doc/guix.texi:8012 +#: guix-git/doc/guix.texi:8070 #, no-wrap msgid "{Scheme Variable} asdf-build-system/sbcl" msgstr "" #. type: defvrx -#: guix-git/doc/guix.texi:8013 +#: guix-git/doc/guix.texi:8071 #, no-wrap msgid "{Scheme Variable} asdf-build-system/ecl" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8019 +#: guix-git/doc/guix.texi:8077 msgid "These variables, exported by @code{(guix build-system asdf)}, implement build procedures for Common Lisp packages using @url{https://common-lisp.net/project/asdf/, ``ASDF''}. ASDF is a system definition facility for Common Lisp programs and libraries." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8026 +#: guix-git/doc/guix.texi:8084 msgid "The @code{asdf-build-system/source} system installs the packages in source form, and can be loaded using any common lisp implementation, via ASDF@. The others, such as @code{asdf-build-system/sbcl}, install binary systems in the format which a particular implementation understands. These build systems can also be used to produce executable programs, or lisp images which contain a set of packages pre-loaded." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8030 +#: guix-git/doc/guix.texi:8088 msgid "The build system uses naming conventions. For binary packages, the package name should be prefixed with the lisp implementation, such as @code{sbcl-} for @code{asdf-build-system/sbcl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8034 +#: guix-git/doc/guix.texi:8092 msgid "Additionally, the corresponding source package should be labeled using the same convention as python packages (see @ref{Python Modules}), using the @code{cl-} prefix." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8042 +#: guix-git/doc/guix.texi:8100 msgid "In order to create executable programs and images, the build-side procedures @code{build-program} and @code{build-image} can be used. They should be called in a build phase after the @code{create-asdf-configuration} phase, so that the system which was just built can be used within the resulting image. @code{build-program} requires a list of Common Lisp expressions to be passed as the @code{#:entry-program} argument." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8051 +#: guix-git/doc/guix.texi:8109 msgid "By default, all the @file{.asd} files present in the sources are read to find system definitions. The @code{#:asd-files} parameter can be used to specify the list of @file{.asd} files to read. Furthermore, if the package defines a system for its tests in a separate file, it will be loaded before the tests are run if it is specified by the @code{#:test-asd-file} parameter. If it is not set, the files @code{-tests.asd}, @code{-test.asd}, @code{tests.asd}, and @code{test.asd} will be tried if they exist." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8056 +#: guix-git/doc/guix.texi:8114 msgid "If for some reason the package must be named in a different way than the naming conventions suggest, or if several systems must be compiled, the @code{#:asd-systems} parameter can be used to specify the list of system names." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8059 +#: guix-git/doc/guix.texi:8117 #, no-wrap msgid "{Scheme Variable} cargo-build-system" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8060 +#: guix-git/doc/guix.texi:8118 #, no-wrap msgid "Rust programming language" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8061 +#: guix-git/doc/guix.texi:8119 #, no-wrap msgid "Cargo (Rust build system)" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8065 +#: guix-git/doc/guix.texi:8123 msgid "This variable is exported by @code{(guix build-system cargo)}. It supports builds of packages using Cargo, the build tool of the @uref{https://www.rust-lang.org, Rust programming language}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8068 +#: guix-git/doc/guix.texi:8126 msgid "It adds @code{rustc} and @code{cargo} to the set of inputs. A different Rust package can be specified with the @code{#:rust} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8078 +#: guix-git/doc/guix.texi:8136 msgid "Regular cargo dependencies should be added to the package definition similarly to other packages; those needed only at build time to native-inputs, others to inputs. If you need to add source-only crates then you should add them to via the @code{#:cargo-inputs} parameter as a list of name and spec pairs, where the spec can be a package or a source definition. Note that the spec must evaluate to a path to a gzipped tarball which includes a @code{Cargo.toml} file at its root, or it will be ignored. Similarly, cargo dev-dependencies should be added to the package definition via the @code{#:cargo-development-inputs} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8088 +#: guix-git/doc/guix.texi:8146 msgid "In its @code{configure} phase, this build system will make any source inputs specified in the @code{#:cargo-inputs} and @code{#:cargo-development-inputs} parameters available to cargo. It will also remove an included @code{Cargo.lock} file to be recreated by @code{cargo} during the @code{build} phase. The @code{package} phase will run @code{cargo package} to create a source crate for future use. The @code{install} phase installs the binaries defined by the crate. Unless @code{install-source? #f} is defined it will also install a source crate repository of itself and unpacked sources, to ease in future hacking on rust packages." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8090 +#: guix-git/doc/guix.texi:8148 #, no-wrap msgid "{Scheme Variable} chicken-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8095 +#: guix-git/doc/guix.texi:8153 msgid "This variable is exported by @code{(guix build-system chicken)}. It builds @uref{https://call-cc.org/, CHICKEN Scheme} modules, also called ``eggs'' or ``extensions''. CHICKEN generates C source code, which then gets compiled by a C compiler, in this case GCC." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8098 +#: guix-git/doc/guix.texi:8156 msgid "This build system adds @code{chicken} to the package inputs, as well as the packages of @code{gnu-build-system}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8102 +#: guix-git/doc/guix.texi:8160 msgid "The build system can't (yet) deduce the egg's name automatically, so just like with @code{go-build-system} and its @code{#:import-path}, you should define @code{#:egg-name} in the package's @code{arguments} field." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8104 +#: guix-git/doc/guix.texi:8162 msgid "For example, if you are packaging the @code{srfi-1} egg:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8107 +#: guix-git/doc/guix.texi:8165 #, no-wrap msgid "(arguments '(#:egg-name \"srfi-1\"))\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8112 +#: guix-git/doc/guix.texi:8170 msgid "Egg dependencies must be defined in @code{propagated-inputs}, not @code{inputs} because CHICKEN doesn't embed absolute references in compiled eggs. Test dependencies should go to @code{native-inputs}, as usual." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8114 +#: guix-git/doc/guix.texi:8172 #, no-wrap msgid "{Scheme Variable} copy-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8118 +#: guix-git/doc/guix.texi:8176 msgid "This variable is exported by @code{(guix build-system copy)}. It supports builds of simple packages that don't require much compiling, mostly just moving files around." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8123 +#: guix-git/doc/guix.texi:8181 msgid "It adds much of the @code{gnu-build-system} packages to the set of inputs. Because of this, the @code{copy-build-system} does not require all the boilerplate code often needed for the @code{trivial-build-system}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8128 +#: guix-git/doc/guix.texi:8186 msgid "To further simplify the file installation process, an @code{#:install-plan} argument is exposed to let the packager specify which files go where. The install plan is a list of @code{(@var{source} @var{target} [@var{filters}])}. @var{filters} are optional." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8130 +#: guix-git/doc/guix.texi:8188 #, no-wrap msgid "When @var{source} matches a file or directory without trailing slash, install it to @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8132 +#: guix-git/doc/guix.texi:8190 #, no-wrap msgid "If @var{target} has a trailing slash, install @var{source} basename beneath @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8133 +#: guix-git/doc/guix.texi:8191 #, no-wrap msgid "Otherwise install @var{source} as @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8136 +#: guix-git/doc/guix.texi:8194 #, no-wrap msgid "When @var{source} is a directory with a trailing slash, or when @var{filters} are used," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8139 +#: guix-git/doc/guix.texi:8197 msgid "the trailing slash of @var{target} is implied with the same meaning as above." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8140 +#: guix-git/doc/guix.texi:8198 #, no-wrap msgid "Without @var{filters}, install the full @var{source} @emph{content} to @var{target}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8141 +#: guix-git/doc/guix.texi:8199 #, no-wrap msgid "With @var{filters} among @code{#:include}, @code{#:include-regexp}, @code{#:exclude}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8144 +#: guix-git/doc/guix.texi:8202 msgid "@code{#:exclude-regexp}, only select files are installed depending on the filters. Each filters is specified by a list of strings." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8145 +#: guix-git/doc/guix.texi:8203 #, no-wrap msgid "With @code{#:include}, install all the files which the path suffix matches" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8147 +#: guix-git/doc/guix.texi:8205 msgid "at least one of the elements in the given list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8147 +#: guix-git/doc/guix.texi:8205 #, no-wrap msgid "With @code{#:include-regexp}, install all the files which the" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8150 +#: guix-git/doc/guix.texi:8208 msgid "subpaths match at least one of the regular expressions in the given list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8150 +#: guix-git/doc/guix.texi:8208 #, no-wrap msgid "The @code{#:exclude} and @code{#:exclude-regexp} filters" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8155 +#: guix-git/doc/guix.texi:8213 msgid "are the complement of their inclusion counterpart. Without @code{#:include} flags, install all files but those matching the exclusion filters. If both inclusions and exclusions are specified, the exclusions are done on top of the inclusions." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8159 +#: guix-git/doc/guix.texi:8217 msgid "In all cases, the paths relative to @var{source} are preserved within @var{target}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8162 +#: guix-git/doc/guix.texi:8220 msgid "Examples:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8164 +#: guix-git/doc/guix.texi:8222 #, no-wrap msgid "@code{(\"foo/bar\" \"share/my-app/\")}: Install @file{bar} to @file{share/my-app/bar}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8165 +#: guix-git/doc/guix.texi:8223 #, no-wrap msgid "@code{(\"foo/bar\" \"share/my-app/baz\")}: Install @file{bar} to @file{share/my-app/baz}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8166 +#: guix-git/doc/guix.texi:8224 #, no-wrap msgid "@code{(\"foo/\" \"share/my-app\")}: Install the content of @file{foo} inside @file{share/my-app}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8168 +#: guix-git/doc/guix.texi:8226 msgid "e.g., install @file{foo/sub/file} to @file{share/my-app/sub/file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8168 +#: guix-git/doc/guix.texi:8226 #, no-wrap msgid "@code{(\"foo/\" \"share/my-app\" #:include (\"sub/file\"))}: Install only @file{foo/sub/file} to" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8170 +#: guix-git/doc/guix.texi:8228 msgid "@file{share/my-app/sub/file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8170 +#: guix-git/doc/guix.texi:8228 #, no-wrap msgid "@code{(\"foo/sub\" \"share/my-app\" #:include (\"file\"))}: Install @file{foo/sub/file} to" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:8172 +#: guix-git/doc/guix.texi:8230 msgid "@file{share/my-app/file}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8176 +#: guix-git/doc/guix.texi:8234 #, no-wrap msgid "Clojure (programming language)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8177 +#: guix-git/doc/guix.texi:8235 #, no-wrap msgid "simple Clojure build system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8178 +#: guix-git/doc/guix.texi:8236 #, no-wrap msgid "{Scheme Variable} clojure-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8183 +#: guix-git/doc/guix.texi:8241 msgid "This variable is exported by @code{(guix build-system clojure)}. It implements a simple build procedure for @uref{https://clojure.org/, Clojure} packages using plain old @code{compile} in Clojure. Cross-compilation is not supported yet." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8187 +#: guix-git/doc/guix.texi:8245 msgid "It adds @code{clojure}, @code{icedtea} and @code{zip} to the set of inputs. Different packages can be specified with the @code{#:clojure}, @code{#:jdk} and @code{#:zip} parameters, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8193 +#: guix-git/doc/guix.texi:8251 msgid "A list of source directories, test directories and jar names can be specified with the @code{#:source-dirs}, @code{#:test-dirs} and @code{#:jar-names} parameters, respectively. Compile directory and main class can be specified with the @code{#:compile-dir} and @code{#:main-class} parameters, respectively. Other parameters are documented below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8196 +#: guix-git/doc/guix.texi:8254 msgid "This build system is an extension of @code{ant-build-system}, but with the following phases changed:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8199 guix-git/doc/guix.texi:8773 -#: guix-git/doc/guix.texi:8822 guix-git/doc/guix.texi:8891 -#: guix-git/doc/guix.texi:35042 guix-git/doc/guix.texi:37668 +#: guix-git/doc/guix.texi:8257 guix-git/doc/guix.texi:8830 +#: guix-git/doc/guix.texi:8879 guix-git/doc/guix.texi:8952 +#: guix-git/doc/guix.texi:35481 guix-git/doc/guix.texi:38147 #, no-wrap msgid "build" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8208 +#: guix-git/doc/guix.texi:8266 msgid "This phase calls @code{compile} in Clojure to compile source files and runs @command{jar} to create jars from both source files and compiled files according to the include list and exclude list specified in @code{#:aot-include} and @code{#:aot-exclude}, respectively. The exclude list has priority over the include list. These lists consist of symbols representing Clojure libraries or the special keyword @code{#:all} representing all Clojure libraries found under the source directories. The parameter @code{#:omit-source?} decides if source should be included into the jars." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8209 guix-git/doc/guix.texi:8777 -#: guix-git/doc/guix.texi:8896 +#: guix-git/doc/guix.texi:8267 guix-git/doc/guix.texi:8834 +#: guix-git/doc/guix.texi:8957 #, no-wrap msgid "check" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8216 +#: guix-git/doc/guix.texi:8274 msgid "This phase runs tests according to the include list and exclude list specified in @code{#:test-include} and @code{#:test-exclude}, respectively. Their meanings are analogous to that of @code{#:aot-include} and @code{#:aot-exclude}, except that the special keyword @code{#:all} now stands for all Clojure libraries found under the test directories. The parameter @code{#:tests?} decides if tests should be run." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8217 guix-git/doc/guix.texi:8783 -#: guix-git/doc/guix.texi:8826 guix-git/doc/guix.texi:8902 +#: guix-git/doc/guix.texi:8275 guix-git/doc/guix.texi:8840 +#: guix-git/doc/guix.texi:8883 guix-git/doc/guix.texi:8963 #, no-wrap msgid "install" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8219 +#: guix-git/doc/guix.texi:8277 msgid "This phase installs all jars built previously." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8222 +#: guix-git/doc/guix.texi:8280 msgid "Apart from the above, this build system also contains an additional phase:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8225 +#: guix-git/doc/guix.texi:8283 #, no-wrap msgid "install-doc" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8230 +#: guix-git/doc/guix.texi:8288 msgid "This phase installs all top-level files with base name matching @code{%doc-regex}. A different regex can be specified with the @code{#:doc-regex} parameter. All files (recursively) inside the documentation directories specified in @code{#:doc-dirs} are installed as well." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8233 +#: guix-git/doc/guix.texi:8291 #, no-wrap msgid "{Scheme Variable} cmake-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8237 +#: guix-git/doc/guix.texi:8295 msgid "This variable is exported by @code{(guix build-system cmake)}. It implements the build procedure for packages using the @url{https://www.cmake.org, CMake build tool}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8241 +#: guix-git/doc/guix.texi:8299 msgid "It automatically adds the @code{cmake} package to the set of inputs. Which package is used can be specified with the @code{#:cmake} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8248 +#: guix-git/doc/guix.texi:8306 msgid "The @code{#:configure-flags} parameter is taken as a list of flags passed to the @command{cmake} command. The @code{#:build-type} parameter specifies in abstract terms the flags passed to the compiler; it defaults to @code{\"RelWithDebInfo\"} (short for ``release mode with debugging information''), which roughly means that code is compiled with @code{-O2 -g}, as is the case for Autoconf-based packages by default." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8250 +#: guix-git/doc/guix.texi:8308 #, no-wrap msgid "{Scheme Variable} dune-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8257 +#: guix-git/doc/guix.texi:8315 msgid "This variable is exported by @code{(guix build-system dune)}. It supports builds of packages using @uref{https://dune.build/, Dune}, a build tool for the OCaml programming language. It is implemented as an extension of the @code{ocaml-build-system} which is described below. As such, the @code{#:ocaml} and @code{#:findlib} parameters can be passed to this build system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8261 +#: guix-git/doc/guix.texi:8319 msgid "It automatically adds the @code{dune} package to the set of inputs. Which package is used can be specified with the @code{#:dune} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8265 +#: guix-git/doc/guix.texi:8323 msgid "There is no @code{configure} phase because dune packages typically don't need to be configured. The @code{#:build-flags} parameter is taken as a list of flags passed to the @code{dune} command during the build." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8269 +#: guix-git/doc/guix.texi:8327 msgid "The @code{#:jbuild?} parameter can be passed to use the @code{jbuild} command instead of the more recent @code{dune} command while building a package. Its default value is @code{#f}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8274 +#: guix-git/doc/guix.texi:8332 msgid "The @code{#:package} parameter can be passed to specify a package name, which is useful when a package contains multiple packages and you want to build only one of them. This is equivalent to passing the @code{-p} argument to @code{dune}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8277 +#: guix-git/doc/guix.texi:8335 #, no-wrap msgid "{Scheme Variable} go-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8282 +#: guix-git/doc/guix.texi:8340 msgid "This variable is exported by @code{(guix build-system go)}. It implements a build procedure for Go packages using the standard @url{https://golang.org/cmd/go/#hdr-Compile_packages_and_dependencies, Go build mechanisms}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8293 +#: guix-git/doc/guix.texi:8351 msgid "The user is expected to provide a value for the key @code{#:import-path} and, in some cases, @code{#:unpack-path}. The @url{https://golang.org/doc/code.html#ImportPaths, import path} corresponds to the file system path expected by the package's build scripts and any referring packages, and provides a unique way to refer to a Go package. It is typically based on a combination of the package source code's remote URI and file system hierarchy structure. In some cases, you will need to unpack the package's source code to a different directory structure than the one indicated by the import path, and @code{#:unpack-path} should be used in such cases." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8298 +#: guix-git/doc/guix.texi:8356 msgid "Packages that provide Go libraries should install their source code into the built output. The key @code{#:install-source?}, which defaults to @code{#t}, controls whether or not the source code is installed. It can be set to @code{#f} for packages that only provide executable files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8305 +#: guix-git/doc/guix.texi:8363 msgid "Packages can be cross-built, and if a specific architecture or operating system is desired then the keywords @code{#:goarch} and @code{#:goos} can be used to force the package to be built for that architecture and operating system. The combinations known to Go can be found @url{\"https://golang.org/doc/install/source#environment\", in their documentation}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8307 +#: guix-git/doc/guix.texi:8365 #, no-wrap msgid "{Scheme Variable} glib-or-gtk-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8310 +#: guix-git/doc/guix.texi:8368 msgid "This variable is exported by @code{(guix build-system glib-or-gtk)}. It is intended for use with packages making use of GLib or GTK+." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8313 +#: guix-git/doc/guix.texi:8371 msgid "This build system adds the following two phases to the ones defined by @code{gnu-build-system}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8315 guix-git/doc/guix.texi:8799 +#: guix-git/doc/guix.texi:8373 guix-git/doc/guix.texi:8856 #, no-wrap msgid "glib-or-gtk-wrap" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8322 +#: guix-git/doc/guix.texi:8380 msgid "The phase @code{glib-or-gtk-wrap} ensures that programs in @file{bin/} are able to find GLib ``schemas'' and @uref{https://developer.gnome.org/gtk3/stable/gtk-running.html, GTK+ modules}. This is achieved by wrapping the programs in launch scripts that appropriately set the @env{XDG_DATA_DIRS} and @env{GTK_PATH} environment variables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8329 +#: guix-git/doc/guix.texi:8387 msgid "It is possible to exclude specific package outputs from that wrapping process by listing their names in the @code{#:glib-or-gtk-wrap-excluded-outputs} parameter. This is useful when an output is known not to contain any GLib or GTK+ binaries, and where wrapping would gratuitously add a dependency of that output on GLib and GTK+." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8330 guix-git/doc/guix.texi:8803 +#: guix-git/doc/guix.texi:8388 guix-git/doc/guix.texi:8860 #, no-wrap msgid "glib-or-gtk-compile-schemas" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8338 +#: guix-git/doc/guix.texi:8396 msgid "The phase @code{glib-or-gtk-compile-schemas} makes sure that all @uref{https://developer.gnome.org/gio/stable/glib-compile-schemas.html, GSettings schemas} of GLib are compiled. Compilation is performed by the @command{glib-compile-schemas} program. It is provided by the package @code{glib:bin} which is automatically imported by the build system. The @code{glib} package providing @command{glib-compile-schemas} can be specified with the @code{#:glib} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8341 +#: guix-git/doc/guix.texi:8399 msgid "Both phases are executed after the @code{install} phase." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8343 +#: guix-git/doc/guix.texi:8401 #, no-wrap msgid "{Scheme Variable} guile-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8350 +#: guix-git/doc/guix.texi:8408 msgid "This build system is for Guile packages that consist exclusively of Scheme code and that are so lean that they don't even have a makefile, let alone a @file{configure} script. It compiles Scheme code using @command{guild compile} (@pxref{Compilation,,, guile, GNU Guile Reference Manual}) and installs the @file{.scm} and @file{.go} files in the right place. It also installs documentation." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8353 +#: guix-git/doc/guix.texi:8411 msgid "This build system supports cross-compilation by using the @option{--target} option of @samp{guild compile}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8356 +#: guix-git/doc/guix.texi:8414 msgid "Packages built with @code{guile-build-system} must provide a Guile package in their @code{native-inputs} field." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8358 +#: guix-git/doc/guix.texi:8416 #, no-wrap msgid "{Scheme Variable} julia-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8365 +#: guix-git/doc/guix.texi:8423 msgid "This variable is exported by @code{(guix build-system julia)}. It implements the build procedure used by @uref{https://julialang.org/, julia} packages, which essentially is similar to running @samp{julia -e 'using Pkg; Pkg.add(package)'} in an environment where @env{JULIA_LOAD_PATH} contains the paths to all Julia package inputs. Tests are run by calling @code{/test/runtests.jl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8369 -msgid "The Julia package name is read from the file @file{Project.toml}. This value can be overridden by passing the argument @code{#:julia-package-name} (which must be correctly capitalized)." +#: guix-git/doc/guix.texi:8428 +msgid "The Julia package name and uuid is read from the file @file{Project.toml}. These values can be overridden by passing the argument @code{#:julia-package-name} (which must be correctly capitalized) or @code{#:julia-package-uuid}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8373 +#: guix-git/doc/guix.texi:8432 msgid "Julia packages usually manage their binary dependencies via @code{JLLWrappers.jl}, a Julia package that creates a module (named after the wrapped library followed by @code{_jll.jl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8378 +#: guix-git/doc/guix.texi:8437 msgid "To add the binary path @code{_jll.jl} packages, you need to patch the files under @file{src/wrappers/}, replacing the call to the macro @code{JLLWrappers.@@generate_wrapper_header}, adding as a second argument containing the store path the binary." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8382 +#: guix-git/doc/guix.texi:8441 msgid "As an example, in the MbedTLS Julia package, we add a build phase (@pxref{Build Phases}) to insert the absolute file name of the wrapped MbedTLS package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8394 +#: guix-git/doc/guix.texi:8453 #, no-wrap msgid "" "(add-after 'unpack 'override-binary-path\n" @@ -16588,655 +16711,666 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8402 -msgid "Some older packages that aren't using @file{Package.toml} yet, will require this file to be created, too. The function @code{julia-create-package-toml} helps creating the file. You need to pass the outputs and the source of the package, its name (the same as the @code{file-name} parameter), the package uuid, the package version, and a list of dependencies specified by their name and their uuid." +#: guix-git/doc/guix.texi:8459 +msgid "Some older packages that aren't using @file{Project.toml} yet, will require this file to be created, too. It is internally done if the arguments @code{#:julia-package-name} and @code{#:julia-package-uuid} are provided." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8404 +#: guix-git/doc/guix.texi:8461 #, no-wrap msgid "{Scheme Variable} maven-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8411 +#: guix-git/doc/guix.texi:8468 msgid "This variable is exported by @code{(guix build-system maven)}. It implements a build procedure for @uref{https://maven.apache.org, Maven} packages. Maven is a dependency and lifecycle management tool for Java. A user of Maven specifies dependencies and plugins in a @file{pom.xml} file that Maven reads. When Maven does not have one of the dependencies or plugins in its repository, it will download them and use them to build the package." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8421 +#: guix-git/doc/guix.texi:8478 msgid "The maven build system ensures that maven will not try to download any dependency by running in offline mode. Maven will fail if a dependency is missing. Before running Maven, the @file{pom.xml} (and subprojects) are modified to specify the version of dependencies and plugins that match the versions available in the guix build environment. Dependencies and plugins must be installed in the fake maven repository at @file{lib/m2}, and are symlinked into a proper repository before maven is run. Maven is instructed to use that repository for the build and installs built artifacts there. Changed files are copied to the @file{lib/m2} directory of the package output." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8424 +#: guix-git/doc/guix.texi:8481 msgid "You can specify a @file{pom.xml} file with the @code{#:pom-file} argument, or let the build system use the default @file{pom.xml} file in the sources." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8430 +#: guix-git/doc/guix.texi:8487 msgid "In case you need to specify a dependency's version manually, you can use the @code{#:local-packages} argument. It takes an association list where the key is the groupId of the package and its value is an association list where the key is the artifactId of the package and its value is the version you want to override in the @file{pom.xml}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8436 +#: guix-git/doc/guix.texi:8493 msgid "Some packages use dependencies or plugins that are not useful at runtime nor at build time in Guix. You can alter the @file{pom.xml} file to remove them using the @code{#:exclude} argument. Its value is an association list where the key is the groupId of the plugin or dependency you want to remove, and the value is a list of artifactId you want to remove." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8439 +#: guix-git/doc/guix.texi:8496 msgid "You can override the default @code{jdk} and @code{maven} packages with the corresponding argument, @code{#:jdk} and @code{#:maven}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8444 +#: guix-git/doc/guix.texi:8501 msgid "The @code{#:maven-plugins} argument is a list of maven plugins used during the build, with the same format as the @code{inputs} fields of the package declaration. Its default value is @code{(default-maven-plugins)} which is also exported." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8446 +#: guix-git/doc/guix.texi:8503 #, no-wrap msgid "{Scheme Variable} minetest-mod-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8452 +#: guix-git/doc/guix.texi:8509 msgid "This variable is exported by @code{(guix build-system minetest)}. It implements a build procedure for @uref{https://www.minetest.net, Minetest} mods, which consists of copying Lua code, images and other resources to the location Minetest searches for mods. The build system also minimises PNG images and verifies that Minetest can load the mod without errors." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8454 +#: guix-git/doc/guix.texi:8511 #, no-wrap msgid "{Scheme Variable} minify-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8457 +#: guix-git/doc/guix.texi:8514 msgid "This variable is exported by @code{(guix build-system minify)}. It implements a minification procedure for simple JavaScript packages." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8463 +#: guix-git/doc/guix.texi:8520 msgid "It adds @code{uglify-js} to the set of inputs and uses it to compress all JavaScript files in the @file{src} directory. A different minifier package can be specified with the @code{#:uglify-js} parameter, but it is expected that the package writes the minified code to the standard output." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8467 +#: guix-git/doc/guix.texi:8524 msgid "When the input JavaScript files are not all located in the @file{src} directory, the parameter @code{#:javascript-files} can be used to specify a list of file names to feed to the minifier." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8469 +#: guix-git/doc/guix.texi:8526 #, no-wrap msgid "{Scheme Variable} ocaml-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8475 +#: guix-git/doc/guix.texi:8532 msgid "This variable is exported by @code{(guix build-system ocaml)}. It implements a build procedure for @uref{https://ocaml.org, OCaml} packages, which consists of choosing the correct set of commands to run for each package. OCaml packages can expect many different commands to be run. This build system will try some of them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8485 +#: guix-git/doc/guix.texi:8542 msgid "When the package has a @file{setup.ml} file present at the top-level, it will run @code{ocaml setup.ml -configure}, @code{ocaml setup.ml -build} and @code{ocaml setup.ml -install}. The build system will assume that this file was generated by @uref{http://oasis.forge.ocamlcore.org/, OASIS} and will take care of setting the prefix and enabling tests if they are not disabled. You can pass configure and build flags with the @code{#:configure-flags} and @code{#:build-flags}. The @code{#:test-flags} key can be passed to change the set of flags used to enable tests. The @code{#:use-make?} key can be used to bypass this system in the build and install phases." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8490 +#: guix-git/doc/guix.texi:8547 msgid "When the package has a @file{configure} file, it is assumed that it is a hand-made configure script that requires a different argument format than in the @code{gnu-build-system}. You can add more flags with the @code{#:configure-flags} key." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8494 +#: guix-git/doc/guix.texi:8551 msgid "When the package has a @file{Makefile} file (or @code{#:use-make?} is @code{#t}), it will be used and more flags can be passed to the build and install phases with the @code{#:make-flags} key." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8502 +#: guix-git/doc/guix.texi:8559 msgid "Finally, some packages do not have these files and use a somewhat standard location for its build system. In that case, the build system will run @code{ocaml pkg/pkg.ml} or @code{ocaml pkg/build.ml} and take care of providing the path to the required findlib module. Additional flags can be passed via the @code{#:build-flags} key. Install is taken care of by @command{opam-installer}. In this case, the @code{opam} package must be added to the @code{native-inputs} field of the package definition." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8510 +#: guix-git/doc/guix.texi:8567 msgid "Note that most OCaml packages assume they will be installed in the same directory as OCaml, which is not what we want in guix. In particular, they will install @file{.so} files in their module's directory, which is usually fine because it is in the OCaml compiler directory. In guix though, these libraries cannot be found and we use @env{CAML_LD_LIBRARY_PATH}. This variable points to @file{lib/ocaml/site-lib/stubslibs} and this is where @file{.so} libraries should be installed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8512 +#: guix-git/doc/guix.texi:8569 #, no-wrap msgid "{Scheme Variable} python-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8517 +#: guix-git/doc/guix.texi:8574 msgid "This variable is exported by @code{(guix build-system python)}. It implements the more or less standard build procedure used by Python packages, which consists in running @code{python setup.py build} and then @code{python setup.py install --prefix=/gnu/store/@dots{}}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8522 +#: guix-git/doc/guix.texi:8579 msgid "For packages that install stand-alone Python programs under @code{bin/}, it takes care of wrapping these programs so that their @env{GUIX_PYTHONPATH} environment variable points to all the Python libraries they depend on." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8528 +#: guix-git/doc/guix.texi:8585 msgid "Which Python package is used to perform the build can be specified with the @code{#:python} parameter. This is a useful way to force a package to be built for a specific version of the Python interpreter, which might be necessary if the package is only compatible with a single interpreter version." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8533 +#: guix-git/doc/guix.texi:8590 msgid "By default guix calls @code{setup.py} under control of @code{setuptools}, much like @command{pip} does. Some packages are not compatible with setuptools (and pip), thus you can disable this by setting the @code{#:use-setuptools?} parameter to @code{#f}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8539 +#: guix-git/doc/guix.texi:8596 msgid "If a @code{\"python\"} output is available, the package is installed into it instead of the default @code{\"out\"} output. This is useful for packages that include a Python package as only a part of the software, and thus want to combine the phases of @code{python-build-system} with another build system. Python bindings are a common usecase." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8542 +#: guix-git/doc/guix.texi:8599 #, no-wrap msgid "{Scheme Variable} perl-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8554 +#: guix-git/doc/guix.texi:8611 msgid "This variable is exported by @code{(guix build-system perl)}. It implements the standard build procedure for Perl packages, which either consists in running @code{perl Build.PL --prefix=/gnu/store/@dots{}}, followed by @code{Build} and @code{Build install}; or in running @code{perl Makefile.PL PREFIX=/gnu/store/@dots{}}, followed by @code{make} and @code{make install}, depending on which of @code{Build.PL} or @code{Makefile.PL} is present in the package distribution. Preference is given to the former if both @code{Build.PL} and @code{Makefile.PL} exist in the package distribution. This preference can be reversed by specifying @code{#t} for the @code{#:make-maker?} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8558 +#: guix-git/doc/guix.texi:8615 msgid "The initial @code{perl Makefile.PL} or @code{perl Build.PL} invocation passes flags specified by the @code{#:make-maker-flags} or @code{#:module-build-flags} parameter, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8560 +#: guix-git/doc/guix.texi:8617 msgid "Which Perl package is used can be specified with @code{#:perl}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8562 +#: guix-git/doc/guix.texi:8619 #, no-wrap msgid "{Scheme Variable} renpy-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8566 +#: guix-git/doc/guix.texi:8623 msgid "This variable is exported by @code{(guix build-system renpy)}. It implements the more or less standard build procedure used by Ren'py games, which consists of loading @code{#:game} once, thereby creating bytecode for it." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8569 +#: guix-git/doc/guix.texi:8626 msgid "It further creates a wrapper script in @code{bin/} and a desktop entry in @code{share/applications}, both of which can be used to launch the game." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8573 +#: guix-git/doc/guix.texi:8630 msgid "Which Ren'py package is used can be specified with @code{#:renpy}. Games can also be installed in outputs other than ``out'' by using @code{#:output}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8575 +#: guix-git/doc/guix.texi:8632 #, no-wrap msgid "{Scheme Variable} qt-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8578 +#: guix-git/doc/guix.texi:8635 msgid "This variable is exported by @code{(guix build-system qt)}. It is intended for use with applications using Qt or KDE." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8581 +#: guix-git/doc/guix.texi:8638 msgid "This build system adds the following two phases to the ones defined by @code{cmake-build-system}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8583 +#: guix-git/doc/guix.texi:8640 #, no-wrap msgid "check-setup" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8590 +#: guix-git/doc/guix.texi:8647 msgid "The phase @code{check-setup} prepares the environment for running the checks as commonly used by Qt test programs. For now this only sets some environment variables: @code{QT_QPA_PLATFORM=offscreen}, @code{DBUS_FATAL_WARNINGS=0} and @code{CTEST_OUTPUT_ON_FAILURE=1}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8593 +#: guix-git/doc/guix.texi:8650 msgid "This phase is added before the @code{check} phase. It's a separate phase to ease adjusting if necessary." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8594 +#: guix-git/doc/guix.texi:8651 #, no-wrap msgid "qt-wrap" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8600 +#: guix-git/doc/guix.texi:8657 msgid "The phase @code{qt-wrap} searches for Qt5 plugin paths, QML paths and some XDG in the inputs and output. In case some path is found, all programs in the output's @file{bin/}, @file{sbin/}, @file{libexec/} and @file{lib/libexec/} directories are wrapped in scripts defining the necessary environment variables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8606 +#: guix-git/doc/guix.texi:8663 msgid "It is possible to exclude specific package outputs from that wrapping process by listing their names in the @code{#:qt-wrap-excluded-outputs} parameter. This is useful when an output is known not to contain any Qt binaries, and where wrapping would gratuitously add a dependency of that output on Qt, KDE, or such." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8608 +#: guix-git/doc/guix.texi:8665 msgid "This phase is added after the @code{install} phase." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8611 +#: guix-git/doc/guix.texi:8668 #, no-wrap msgid "{Scheme Variable} r-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8619 +#: guix-git/doc/guix.texi:8676 msgid "This variable is exported by @code{(guix build-system r)}. It implements the build procedure used by @uref{https://r-project.org, R} packages, which essentially is little more than running @samp{R CMD INSTALL --library=/gnu/store/@dots{}} in an environment where @env{R_LIBS_SITE} contains the paths to all R package inputs. Tests are run after installation using the R function @code{tools::testInstalledPackage}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8621 +#: guix-git/doc/guix.texi:8678 #, no-wrap msgid "{Scheme Variable} rakudo-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8629 +#: guix-git/doc/guix.texi:8686 msgid "This variable is exported by @code{(guix build-system rakudo)}. It implements the build procedure used by @uref{https://rakudo.org/, Rakudo} for @uref{https://perl6.org/, Perl6} packages. It installs the package to @code{/gnu/store/@dots{}/NAME-VERSION/share/perl6} and installs the binaries, library files and the resources, as well as wrap the files under the @code{bin/} directory. Tests can be skipped by passing @code{#f} to the @code{tests?} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8637 +#: guix-git/doc/guix.texi:8694 msgid "Which rakudo package is used can be specified with @code{rakudo}. Which perl6-tap-harness package used for the tests can be specified with @code{#:prove6} or removed by passing @code{#f} to the @code{with-prove6?} parameter. Which perl6-zef package used for tests and installing can be specified with @code{#:zef} or removed by passing @code{#f} to the @code{with-zef?} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8639 +#: guix-git/doc/guix.texi:8696 #, no-wrap msgid "{Scheme Variable} texlive-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8644 +#: guix-git/doc/guix.texi:8701 msgid "This variable is exported by @code{(guix build-system texlive)}. It is used to build TeX packages in batch mode with a specified engine. The build system sets the @env{TEXINPUTS} variable to find all TeX source files in the inputs." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8653 +#: guix-git/doc/guix.texi:8710 msgid "By default it runs @code{luatex} on all files ending on @code{ins}. A different engine and format can be specified with the @code{#:tex-format} argument. Different build targets can be specified with the @code{#:build-targets} argument, which expects a list of file names. The build system adds only @code{texlive-bin} and @code{texlive-latex-base} (both from @code{(gnu packages tex}) to the inputs. Both can be overridden with the arguments @code{#:texlive-bin} and @code{#:texlive-latex-base}, respectively." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8656 +#: guix-git/doc/guix.texi:8713 msgid "The @code{#:tex-directory} parameter tells the build system where to install the built files under the texmf tree." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8658 +#: guix-git/doc/guix.texi:8715 #, no-wrap msgid "{Scheme Variable} ruby-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8662 +#: guix-git/doc/guix.texi:8719 msgid "This variable is exported by @code{(guix build-system ruby)}. It implements the RubyGems build procedure used by Ruby packages, which involves running @code{gem build} followed by @code{gem install}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8670 +#: guix-git/doc/guix.texi:8727 msgid "The @code{source} field of a package that uses this build system typically references a gem archive, since this is the format that Ruby developers use when releasing their software. The build system unpacks the gem archive, potentially patches the source, runs the test suite, repackages the gem, and installs it. Additionally, directories and tarballs may be referenced to allow building unreleased gems from Git or a traditional source release tarball." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8674 +#: guix-git/doc/guix.texi:8731 msgid "Which Ruby package is used can be specified with the @code{#:ruby} parameter. A list of additional flags to be passed to the @command{gem} command can be specified with the @code{#:gem-flags} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8676 +#: guix-git/doc/guix.texi:8733 #, no-wrap msgid "{Scheme Variable} waf-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8682 +#: guix-git/doc/guix.texi:8739 msgid "This variable is exported by @code{(guix build-system waf)}. It implements a build procedure around the @code{waf} script. The common phases---@code{configure}, @code{build}, and @code{install}---are implemented by passing their names as arguments to the @code{waf} script." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8686 +#: guix-git/doc/guix.texi:8743 msgid "The @code{waf} script is executed by the Python interpreter. Which Python package is used to run the script can be specified with the @code{#:python} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8688 +#: guix-git/doc/guix.texi:8745 #, no-wrap msgid "{Scheme Variable} scons-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8694 +#: guix-git/doc/guix.texi:8751 msgid "This variable is exported by @code{(guix build-system scons)}. It implements the build procedure used by the SCons software construction tool. This build system runs @code{scons} to build the package, @code{scons test} to run tests, and then @code{scons install} to install the package." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8701 +#: guix-git/doc/guix.texi:8758 msgid "Additional flags to be passed to @code{scons} can be specified with the @code{#:scons-flags} parameter. The default build and install targets can be overridden with @code{#:build-targets} and @code{#:install-targets} respectively. The version of Python used to run SCons can be specified by selecting the appropriate SCons package with the @code{#:scons} parameter." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8703 +#: guix-git/doc/guix.texi:8760 #, no-wrap msgid "{Scheme Variable} haskell-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8717 +#: guix-git/doc/guix.texi:8774 msgid "This variable is exported by @code{(guix build-system haskell)}. It implements the Cabal build procedure used by Haskell packages, which involves running @code{runhaskell Setup.hs configure --prefix=/gnu/store/@dots{}} and @code{runhaskell Setup.hs build}. Instead of installing the package by running @code{runhaskell Setup.hs install}, to avoid trying to register libraries in the read-only compiler store directory, the build system uses @code{runhaskell Setup.hs copy}, followed by @code{runhaskell Setup.hs register}. In addition, the build system generates the package documentation by running @code{runhaskell Setup.hs haddock}, unless @code{#:haddock? #f} is passed. Optional Haddock parameters can be passed with the help of the @code{#:haddock-flags} parameter. If the file @code{Setup.hs} is not found, the build system looks for @code{Setup.lhs} instead." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8720 +#: guix-git/doc/guix.texi:8777 msgid "Which Haskell compiler is used can be specified with the @code{#:haskell} parameter which defaults to @code{ghc}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8722 +#: guix-git/doc/guix.texi:8779 #, no-wrap msgid "{Scheme Variable} dub-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8727 +#: guix-git/doc/guix.texi:8784 msgid "This variable is exported by @code{(guix build-system dub)}. It implements the Dub build procedure used by D packages, which involves running @code{dub build} and @code{dub run}. Installation is done by copying the files manually." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8730 +#: guix-git/doc/guix.texi:8787 msgid "Which D compiler is used can be specified with the @code{#:ldc} parameter which defaults to @code{ldc}." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:8733 +#: guix-git/doc/guix.texi:8790 msgid "emacs-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8733 +#: guix-git/doc/guix.texi:8790 #, no-wrap msgid "{Scheme Variable} emacs-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8737 +#: guix-git/doc/guix.texi:8794 msgid "This variable is exported by @code{(guix build-system emacs)}. It implements an installation procedure similar to the packaging system of Emacs itself (@pxref{Packages,,, emacs, The GNU Emacs Manual})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8743 +#: guix-git/doc/guix.texi:8800 msgid "It first creates the @code{@code{package}-autoloads.el} file, then it byte compiles all Emacs Lisp files. Differently from the Emacs packaging system, the Info documentation files are moved to the standard documentation directory and the @file{dir} file is deleted. The Elisp package files are installed directly under @file{share/emacs/site-lisp}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8745 +#: guix-git/doc/guix.texi:8802 #, no-wrap msgid "{Scheme Variable} font-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8751 +#: guix-git/doc/guix.texi:8808 msgid "This variable is exported by @code{(guix build-system font)}. It implements an installation procedure for font packages where upstream provides pre-compiled TrueType, OpenType, etc.@: font files that merely need to be copied into place. It copies font files to standard locations in the output directory." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8753 +#: guix-git/doc/guix.texi:8810 #, no-wrap msgid "{Scheme Variable} meson-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8757 +#: guix-git/doc/guix.texi:8814 msgid "This variable is exported by @code{(guix build-system meson)}. It implements the build procedure for packages that use @url{https://mesonbuild.com, Meson} as their build system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8761 +#: guix-git/doc/guix.texi:8818 msgid "It adds both Meson and @uref{https://ninja-build.org/, Ninja} to the set of inputs, and they can be changed with the parameters @code{#:meson} and @code{#:ninja} if needed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8764 +#: guix-git/doc/guix.texi:8821 msgid "This build system is an extension of @code{gnu-build-system}, but with the following phases changed to some specific for Meson:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8767 guix-git/doc/guix.texi:8818 -#: guix-git/doc/guix.texi:8886 +#: guix-git/doc/guix.texi:8824 guix-git/doc/guix.texi:8875 +#: guix-git/doc/guix.texi:8947 #, no-wrap msgid "configure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8772 +#: guix-git/doc/guix.texi:8829 msgid "The phase runs @code{meson} with the flags specified in @code{#:configure-flags}. The flag @option{--buildtype} is always set to @code{debugoptimized} unless something else is specified in @code{#:build-type}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8776 +#: guix-git/doc/guix.texi:8833 msgid "The phase runs @code{ninja} to build the package in parallel by default, but this can be changed with @code{#:parallel-build?}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8782 +#: guix-git/doc/guix.texi:8839 msgid "The phase runs @samp{meson test} with a base set of options that cannot be overridden. This base set of options can be extended via the @code{#:test-options} argument, for example to select or skip a specific test suite." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8785 +#: guix-git/doc/guix.texi:8842 msgid "The phase runs @code{ninja install} and can not be changed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8788 +#: guix-git/doc/guix.texi:8845 msgid "Apart from that, the build system also adds the following phases:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8791 +#: guix-git/doc/guix.texi:8848 #, no-wrap msgid "fix-runpath" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8798 +#: guix-git/doc/guix.texi:8855 msgid "This phase ensures that all binaries can find the libraries they need. It searches for required libraries in subdirectories of the package being built, and adds those to @code{RUNPATH} where needed. It also removes references to libraries left over from the build phase by @code{meson}, such as test dependencies, that aren't actually required for the program to run." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8802 guix-git/doc/guix.texi:8806 +#: guix-git/doc/guix.texi:8859 guix-git/doc/guix.texi:8863 msgid "This phase is the phase provided by @code{glib-or-gtk-build-system}, and it is not enabled by default. It can be enabled with @code{#:glib-or-gtk?}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8809 +#: guix-git/doc/guix.texi:8866 #, no-wrap msgid "{Scheme Variable} linux-module-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8811 +#: guix-git/doc/guix.texi:8868 msgid "@code{linux-module-build-system} allows building Linux kernel modules." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8815 +#: guix-git/doc/guix.texi:8872 msgid "This build system is an extension of @code{gnu-build-system}, but with the following phases changed:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8821 +#: guix-git/doc/guix.texi:8878 msgid "This phase configures the environment so that the Linux kernel's Makefile can be used to build the external kernel module." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8825 +#: guix-git/doc/guix.texi:8882 msgid "This phase uses the Linux kernel's Makefile in order to build the external kernel module." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8829 +#: guix-git/doc/guix.texi:8886 msgid "This phase uses the Linux kernel's Makefile in order to install the external kernel module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8834 +#: guix-git/doc/guix.texi:8891 msgid "It is possible and useful to specify the Linux kernel to use for building the module (in the @code{arguments} form of a package using the @code{linux-module-build-system}, use the key @code{#:linux} to specify it)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8836 +#: guix-git/doc/guix.texi:8893 #, no-wrap msgid "{Scheme Variable} node-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8841 +#: guix-git/doc/guix.texi:8898 msgid "This variable is exported by @code{(guix build-system node)}. It implements the build procedure used by @uref{https://nodejs.org, Node.js}, which implements an approximation of the @code{npm install} command, followed by an @code{npm test} command." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8845 +#: guix-git/doc/guix.texi:8902 msgid "Which Node.js package is used to interpret the @code{npm} commands can be specified with the @code{#:node} parameter which defaults to @code{node}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8851 +#: guix-git/doc/guix.texi:8908 msgid "Lastly, for packages that do not need anything as sophisticated, a ``trivial'' build system is provided. It is trivial in the sense that it provides basically no support: it does not pull any implicit inputs, and does not have a notion of build phases." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8852 +#: guix-git/doc/guix.texi:8909 #, no-wrap msgid "{Scheme Variable} trivial-build-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8854 +#: guix-git/doc/guix.texi:8911 msgid "This variable is exported by @code{(guix build-system trivial)}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:8859 +#: guix-git/doc/guix.texi:8916 msgid "This build system requires a @code{#:builder} argument. This argument must be a Scheme expression that builds the package output(s)---as with @code{build-expression->derivation} (@pxref{Derivations, @code{build-expression->derivation}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:8864 +#: guix-git/doc/guix.texi:8921 #, fuzzy, no-wrap msgid "build phases, for packages" msgstr "Python软件包的输入" #. type: Plain text -#: guix-git/doc/guix.texi:8870 +#: guix-git/doc/guix.texi:8927 msgid "Almost all package build systems implement a notion @dfn{build phases}: a sequence of actions that the build system executes, when you build the package, leading to the installed byproducts in the store. A notable exception is the ``bare-bones'' @code{trivial-build-system} (@pxref{Build Systems})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8874 +#: guix-git/doc/guix.texi:8931 msgid "As discussed in the previous section, those build systems provide a standard list of phases. For @code{gnu-build-system}, the main build phases are the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:8876 +#: guix-git/doc/guix.texi:8933 +#, no-wrap +msgid "set-paths" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:8936 +msgid "Define search path environment variables for all the input packages, including @env{PATH} (@pxref{Search Paths})." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:8937 #, no-wrap msgid "unpack" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8880 +#: guix-git/doc/guix.texi:8941 msgid "Unpack the source tarball, and change the current directory to the extracted source tree. If the source is actually a directory, copy it to the build tree, and enter that directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8881 +#: guix-git/doc/guix.texi:8942 #, no-wrap msgid "patch-source-shebangs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8885 +#: guix-git/doc/guix.texi:8946 msgid "Patch shebangs encountered in source files so they refer to the right store file names. For instance, this changes @code{#!/bin/sh} to @code{#!/gnu/store/@dots{}-bash-4.3/bin/sh}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8890 +#: guix-git/doc/guix.texi:8951 msgid "Run the @file{configure} script with a number of default options, such as @option{--prefix=/gnu/store/@dots{}}, as well as the options specified by the @code{#:configure-flags} argument." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8895 +#: guix-git/doc/guix.texi:8956 msgid "Run @code{make} with the list of flags specified with @code{#:make-flags}. If the @code{#:parallel-build?} argument is true (the default), build with @code{make -j}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8901 +#: guix-git/doc/guix.texi:8962 msgid "Run @code{make check}, or some other target specified with @code{#:test-target}, unless @code{#:tests? #f} is passed. If the @code{#:parallel-tests?} argument is true (the default), run @code{make check -j}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:8904 +#: guix-git/doc/guix.texi:8965 msgid "Run @code{make install} with the flags listed in @code{#:make-flags}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8905 +#: guix-git/doc/guix.texi:8966 #, no-wrap msgid "patch-shebangs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8907 +#: guix-git/doc/guix.texi:8968 msgid "Patch shebangs on the installed executable files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:8908 +#: guix-git/doc/guix.texi:8969 #, no-wrap msgid "strip" msgstr "" #. type: table -#: guix-git/doc/guix.texi:8912 +#: guix-git/doc/guix.texi:8973 msgid "Strip debugging symbols from ELF files (unless @code{#:strip-binaries?} is false), copying them to the @code{debug} output when available (@pxref{Installing Debugging Files})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8921 +#: guix-git/doc/guix.texi:8982 msgid "Other build systems have similar phases, with some variations. For example, @code{cmake-build-system} has same-named phases but its @code{configure} phases runs @code{cmake} instead of @code{./configure}. Others, such as @code{python-build-system}, have a wholly different list of standard phases. All this code runs on the @dfn{build side}: it is evaluated when you actually build the package, in a dedicated build process spawned by the build daemon (@pxref{Invoking guix-daemon})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8928 +#: guix-git/doc/guix.texi:8989 msgid "Build phases are represented as association lists or ``alists'' (@pxref{Association Lists,,, guile, GNU Guile Reference Manual}) where each key is a symbol for the name of the phase and the associated value is a procedure that accepts an arbitrary number of arguments. By convention, those procedures receive information about the build in the form of @dfn{keyword parameters}, which they can use or ignore." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:8929 +#: guix-git/doc/guix.texi:8990 #, no-wrap msgid "%standard-phases" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8935 +#: guix-git/doc/guix.texi:8996 msgid "For example, here is how @code{(guix build gnu-build-system)} defines @code{%standard-phases}, the variable holding its alist of build phases@footnote{We present a simplified view of those build phases, but do take a look at @code{(guix build gnu-build-system)} to see all the details!}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8938 +#: guix-git/doc/guix.texi:8999 #, no-wrap msgid "" ";; The build phases of 'gnu-build-system'.\n" @@ -17244,7 +17378,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8942 +#: guix-git/doc/guix.texi:9003 #, no-wrap msgid "" "(define* (unpack #:key source #:allow-other-keys)\n" @@ -17254,7 +17388,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8948 +#: guix-git/doc/guix.texi:9009 #, no-wrap msgid "" "(define* (configure #:key outputs #:allow-other-keys)\n" @@ -17266,7 +17400,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8952 +#: guix-git/doc/guix.texi:9013 #, no-wrap msgid "" "(define* (build #:allow-other-keys)\n" @@ -17276,7 +17410,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8959 +#: guix-git/doc/guix.texi:9020 #, no-wrap msgid "" "(define* (check #:key (test-target \"check\") (tests? #true)\n" @@ -17289,7 +17423,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8963 +#: guix-git/doc/guix.texi:9024 #, no-wrap msgid "" "(define* (install #:allow-other-keys)\n" @@ -17299,7 +17433,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:8972 +#: guix-git/doc/guix.texi:9033 #, no-wrap msgid "" "(define %standard-phases\n" @@ -17313,38 +17447,38 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8982 +#: guix-git/doc/guix.texi:9043 msgid "This shows how @code{%standard-phases} is defined as a list of symbol/procedure pairs (@pxref{Pairs,,, guile, GNU Guile Reference Manual}). The first pair associates the @code{unpack} procedure with the @code{unpack} symbol---a name; the second pair defines the @code{configure} phase similarly, and so on. When building a package that uses @code{gnu-build-system} with its default list of phases, those phases are executed sequentially. You can see the name of each phase started and completed in the build log of packages that you build." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:8988 +#: guix-git/doc/guix.texi:9049 msgid "Let's now look at the procedures themselves. Each one is defined with @code{define*}: @code{#:key} lists keyword parameters the procedure accepts, possibly with a default value, and @code{#:allow-other-keys} specifies that other keyword parameters are ignored (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9004 +#: guix-git/doc/guix.texi:9065 msgid "The @code{unpack} procedure honors the @code{source} parameter, which the build system uses to pass the file name of the source tarball (or version control checkout), and it ignores other parameters. The @code{configure} phase only cares about the @code{outputs} parameter, an alist mapping package output names to their store file name (@pxref{Packages with Multiple Outputs}). It extracts the file name of for @code{out}, the default output, and passes it to @command{./configure} as the installation prefix, meaning that @command{make install} will eventually copy all the files in that directory (@pxref{Configuration, configuration and makefile conventions,, standards, GNU Coding Standards}). @code{build} and @code{install} ignore all their arguments. @code{check} honors the @code{test-target} argument, which specifies the name of the Makefile target to run tests; it prints a message and skips tests when @code{tests?} is false." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9005 +#: guix-git/doc/guix.texi:9066 #, no-wrap msgid "build phases, customizing" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9014 +#: guix-git/doc/guix.texi:9075 msgid "The list of phases used for a particular package can be changed with the @code{#:phases} parameter of the build system. Changing the set of build phases boils down to building a new alist of phases based on the @code{%standard-phases} alist described above. This can be done with standard alist procedures such as @code{alist-delete} (@pxref{SRFI-1 Association Lists,,, guile, GNU Guile Reference Manual}); however, it is more convenient to do so with @code{modify-phases} (@pxref{Build Utilities, @code{modify-phases}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9019 +#: guix-git/doc/guix.texi:9080 msgid "Here is an example of a package definition that removes the @code{configure} phase of @code{%standard-phases} and inserts a new phase before the @code{build} phase, called @code{set-prefix-in-makefile}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9039 +#: guix-git/doc/guix.texi:9100 #, no-wrap msgid "" "(define-public example\n" @@ -17368,44 +17502,44 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9045 +#: guix-git/doc/guix.texi:9106 msgid "The new phase that is inserted is written as an anonymous procedure, introduced with @code{lambda*}; it honors the @code{outputs} parameter we have seen before. @xref{Build Utilities}, for more about the helpers used by this phase, and for more examples of @code{modify-phases}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9046 guix-git/doc/guix.texi:10046 +#: guix-git/doc/guix.texi:9107 guix-git/doc/guix.texi:10360 #, no-wrap msgid "code staging" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9047 guix-git/doc/guix.texi:10047 +#: guix-git/doc/guix.texi:9108 guix-git/doc/guix.texi:10361 #, fuzzy, no-wrap msgid "staging, of code" msgstr "代码格式化" #. type: Plain text -#: guix-git/doc/guix.texi:9054 +#: guix-git/doc/guix.texi:9115 msgid "Keep in mind that build phases are code evaluated at the time the package is actually built. This explains why the whole @code{modify-phases} expression above is quoted (it comes after the @code{'} or apostrophe): it is @dfn{staged} for later execution. @xref{G-Expressions}, for an explanation of code staging and the @dfn{code strata} involved." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9064 +#: guix-git/doc/guix.texi:9125 msgid "As soon as you start writing non-trivial package definitions (@pxref{Defining Packages}) or other build actions (@pxref{G-Expressions}), you will likely start looking for helpers for ``shell-like'' actions---creating directories, copying and deleting files recursively, manipulating build phases, and so on. The @code{(guix build utils)} module provides such utility procedures." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9068 +#: guix-git/doc/guix.texi:9129 msgid "Most build systems load @code{(guix build utils)} (@pxref{Build Systems}). Thus, when writing custom build phases for your package definitions, you can usually assume those procedures are in scope." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9073 +#: guix-git/doc/guix.texi:9134 msgid "When writing G-expressions, you can import @code{(guix build utils)} on the ``build side'' using @code{with-imported-modules} and then put it in scope with the @code{use-modules} form (@pxref{Using Guile Modules,,, guile, GNU Guile Reference Manual}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9080 +#: guix-git/doc/guix.texi:9141 #, no-wrap msgid "" "(with-imported-modules '((guix build utils)) ;import it\n" @@ -17417,7 +17551,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9083 +#: guix-git/doc/guix.texi:9144 #, no-wrap msgid "" " ;; Happily use its 'mkdir-p' procedure.\n" @@ -17425,239 +17559,239 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9087 +#: guix-git/doc/guix.texi:9148 msgid "The remainder of this section is the reference for most of the utility procedures provided by @code{(guix build utils)}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9090 +#: guix-git/doc/guix.texi:9151 #, no-wrap msgid "Dealing with Store File Names" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9093 +#: guix-git/doc/guix.texi:9154 msgid "This section documents procedures that deal with store file names." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9094 +#: guix-git/doc/guix.texi:9155 #, no-wrap msgid "{Scheme Procedure} %store-directory" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9096 +#: guix-git/doc/guix.texi:9157 #, fuzzy msgid "Return the directory name of the store." msgstr "仓库的纯函数式接口。" #. type: deffn -#: guix-git/doc/guix.texi:9098 +#: guix-git/doc/guix.texi:9159 #, no-wrap msgid "{Scheme Procedure} store-file-name? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9100 +#: guix-git/doc/guix.texi:9161 msgid "Return true if @var{file} is in the store." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9102 +#: guix-git/doc/guix.texi:9163 #, no-wrap msgid "{Scheme Procedure} strip-store-file-name @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9105 +#: guix-git/doc/guix.texi:9166 msgid "Strip the @file{/gnu/store} and hash from @var{file}, a store file name. The result is typically a @code{\"@var{package}-@var{version}\"} string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9107 +#: guix-git/doc/guix.texi:9168 #, no-wrap msgid "{Scheme Procedure} package-name->name+version @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9112 +#: guix-git/doc/guix.texi:9173 msgid "Given @var{name}, a package name like @code{\"foo-0.9.1b\"}, return two values: @code{\"foo\"} and @code{\"0.9.1b\"}. When the version part is unavailable, @var{name} and @code{#f} are returned. The first hyphen followed by a digit is considered to introduce the version part." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9114 +#: guix-git/doc/guix.texi:9175 #, fuzzy, no-wrap msgid "File Types" msgstr "文件系统" #. type: Plain text -#: guix-git/doc/guix.texi:9117 +#: guix-git/doc/guix.texi:9178 msgid "The procedures below deal with files and file types." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9118 +#: guix-git/doc/guix.texi:9179 #, no-wrap msgid "{Scheme Procedure} directory-exists? @var{dir}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9120 +#: guix-git/doc/guix.texi:9181 msgid "Return @code{#t} if @var{dir} exists and is a directory." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9122 +#: guix-git/doc/guix.texi:9183 #, no-wrap msgid "{Scheme Procedure} executable-file? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9124 +#: guix-git/doc/guix.texi:9185 msgid "Return @code{#t} if @var{file} exists and is executable." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9126 +#: guix-git/doc/guix.texi:9187 #, no-wrap msgid "{Scheme Procedure} symbolic-link? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9128 +#: guix-git/doc/guix.texi:9189 msgid "Return @code{#t} if @var{file} is a symbolic link (aka. a ``symlink'')." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9130 +#: guix-git/doc/guix.texi:9191 #, no-wrap msgid "{Scheme Procedure} elf-file? @var{file}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9131 +#: guix-git/doc/guix.texi:9192 #, no-wrap msgid "{Scheme Procedure} ar-file? @var{file}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9132 +#: guix-git/doc/guix.texi:9193 #, no-wrap msgid "{Scheme Procedure} gzip-file? @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9135 +#: guix-git/doc/guix.texi:9196 msgid "Return @code{#t} if @var{file} is, respectively, an ELF file, an @code{ar} archive (such as a @file{.a} static library), or a gzip file." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9137 +#: guix-git/doc/guix.texi:9198 #, no-wrap msgid "{Scheme Procedure} reset-gzip-timestamp @var{file} [#:keep-mtime? #t]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9141 +#: guix-git/doc/guix.texi:9202 msgid "If @var{file} is a gzip file, reset its embedded timestamp (as with @command{gzip --no-name}) and return true. Otherwise return @code{#f}. When @var{keep-mtime?} is true, preserve @var{file}'s modification time." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9143 +#: guix-git/doc/guix.texi:9204 #, no-wrap msgid "File Manipulation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9150 +#: guix-git/doc/guix.texi:9211 msgid "The following procedures and macros help create, modify, and delete files. They provide functionality comparable to common shell utilities such as @command{mkdir -p}, @command{cp -r}, @command{rm -r}, and @command{sed}. They complement Guile's extensive, but low-level, file system interface (@pxref{POSIX,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9151 +#: guix-git/doc/guix.texi:9212 #, no-wrap msgid "{Scheme Syntax} with-directory-excursion @var{directory} @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9153 +#: guix-git/doc/guix.texi:9214 msgid "Run @var{body} with @var{directory} as the process's current directory." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9160 +#: guix-git/doc/guix.texi:9221 msgid "Essentially, this macro changes the current directory to @var{directory} before evaluating @var{body}, using @code{chdir} (@pxref{Processes,,, guile, GNU Guile Reference Manual}). It changes back to the initial directory when the dynamic extent of @var{body} is left, be it @i{via} normal procedure return or @i{via} a non-local exit such as an exception." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9162 +#: guix-git/doc/guix.texi:9223 #, no-wrap msgid "{Scheme Procedure} mkdir-p @var{dir}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9164 +#: guix-git/doc/guix.texi:9225 msgid "Create directory @var{dir} and all its ancestors." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9166 +#: guix-git/doc/guix.texi:9227 #, no-wrap msgid "{Scheme Procedure} install-file @var{file} @var{directory}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9169 +#: guix-git/doc/guix.texi:9230 msgid "Create @var{directory} if it does not exist and copy @var{file} in there under the same name." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9171 +#: guix-git/doc/guix.texi:9232 #, no-wrap msgid "{Scheme Procedure} make-file-writable @var{file}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9173 +#: guix-git/doc/guix.texi:9234 msgid "Make @var{file} writable for its owner." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9175 +#: guix-git/doc/guix.texi:9236 #, no-wrap msgid "{Scheme Procedure} copy-recursively @var{source} @var{destination} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9184 +#: guix-git/doc/guix.texi:9245 msgid "[#:log (current-output-port)] [#:follow-symlinks? #f] @ [#:copy-file copy-file] [#:keep-mtime? #f] [#:keep-permissions? #t] Copy @var{source} directory to @var{destination}. Follow symlinks if @var{follow-symlinks?} is true; otherwise, just preserve them. Call @var{copy-file} to copy regular files. When @var{keep-mtime?} is true, keep the modification time of the files in @var{source} on those of @var{destination}. When @var{keep-permissions?} is true, preserve file permissions. Write verbose output to the @var{log} port." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9186 +#: guix-git/doc/guix.texi:9247 #, no-wrap msgid "{Scheme Procedure} delete-file-recursively @var{dir} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9191 +#: guix-git/doc/guix.texi:9252 msgid "[#:follow-mounts? #f] Delete @var{dir} recursively, like @command{rm -rf}, without following symlinks. Don't follow mount points either, unless @var{follow-mounts?} is true. Report but ignore errors." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9193 +#: guix-git/doc/guix.texi:9254 #, no-wrap msgid "{Scheme Syntax} substitute* @var{file} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9198 +#: guix-git/doc/guix.texi:9259 msgid "((@var{regexp} @var{match-var}@dots{}) @var{body}@dots{}) @dots{} Substitute @var{regexp} in @var{file} by the string returned by @var{body}. @var{body} is evaluated with each @var{match-var} bound to the corresponding positional regexp sub-expression. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9205 +#: guix-git/doc/guix.texi:9266 #, no-wrap msgid "" "(substitute* file\n" @@ -17668,71 +17802,71 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9211 +#: guix-git/doc/guix.texi:9272 msgid "Here, anytime a line of @var{file} contains @code{hello}, it is replaced by @code{good morning}. Anytime a line of @var{file} matches the second regexp, @code{all} is bound to the complete match, @code{letters} is bound to the first sub-expression, and @code{end} is bound to the last one." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9214 +#: guix-git/doc/guix.texi:9275 msgid "When one of the @var{match-var} is @code{_}, no variable is bound to the corresponding match substring." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9217 +#: guix-git/doc/guix.texi:9278 msgid "Alternatively, @var{file} may be a list of file names, in which case they are all subject to the substitutions." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9220 +#: guix-git/doc/guix.texi:9281 msgid "Be careful about using @code{$} to match the end of a line; by itself it won't match the terminating newline of a line." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:9222 +#: guix-git/doc/guix.texi:9283 #, fuzzy, no-wrap msgid "File Search" msgstr "文件系统" #. type: cindex -#: guix-git/doc/guix.texi:9224 +#: guix-git/doc/guix.texi:9285 #, no-wrap msgid "file, searching" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9226 +#: guix-git/doc/guix.texi:9287 msgid "This section documents procedures to search and filter files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9227 +#: guix-git/doc/guix.texi:9288 #, no-wrap msgid "{Scheme Procedure} file-name-predicate @var{regexp}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9230 +#: guix-git/doc/guix.texi:9291 msgid "Return a predicate that returns true when passed a file name whose base name matches @var{regexp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9232 +#: guix-git/doc/guix.texi:9293 #, no-wrap msgid "{Scheme Procedure} find-files @var{dir} [@var{pred}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9243 +#: guix-git/doc/guix.texi:9304 msgid "[#:stat lstat] [#:directories? #f] [#:fail-on-error? #f] Return the lexicographically sorted list of files under @var{dir} for which @var{pred} returns true. @var{pred} is passed two arguments: the absolute file name, and its stat buffer; the default predicate always returns true. @var{pred} can also be a regular expression, in which case it is equivalent to @code{(file-name-predicate @var{pred})}. @var{stat} is used to obtain file information; using @code{lstat} means that symlinks are not followed. If @var{directories?} is true, then directories will also be included. If @var{fail-on-error?} is true, raise an exception upon error." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9247 +#: guix-git/doc/guix.texi:9308 msgid "Here are a few examples where we assume that the current directory is the root of the Guix source tree:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9252 +#: guix-git/doc/guix.texi:9313 #, no-wrap msgid "" ";; List all the regular files in the current directory.\n" @@ -17742,7 +17876,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9256 +#: guix-git/doc/guix.texi:9317 #, no-wrap msgid "" ";; List all the .scm files under gnu/services.\n" @@ -17752,7 +17886,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9260 +#: guix-git/doc/guix.texi:9321 #, no-wrap msgid "" ";; List ar files in the current directory.\n" @@ -17761,45 +17895,45 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9262 +#: guix-git/doc/guix.texi:9323 #, no-wrap msgid "{Scheme Procedure} which @var{program}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9265 +#: guix-git/doc/guix.texi:9326 msgid "Return the complete file name for @var{program} as found in @code{$PATH}, or @code{#f} if @var{program} could not be found." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9267 +#: guix-git/doc/guix.texi:9328 #, no-wrap msgid "{Scheme Procedure} search-input-file @var{inputs} @var{name}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9268 +#: guix-git/doc/guix.texi:9329 #, no-wrap msgid "{Scheme Procedure} search-input-directory @var{inputs} @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9273 +#: guix-git/doc/guix.texi:9334 msgid "Return the complete file name for @var{name} as found in @var{inputs}; @code{search-input-file} searches for a regular file and @code{search-input-directory} searches for a directory. If @var{name} could not be found, an exception is raised." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9277 +#: guix-git/doc/guix.texi:9338 msgid "Here, @var{inputs} must be an association list like @code{inputs} and @code{native-inputs} as available to build phases (@pxref{Build Phases})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9281 +#: guix-git/doc/guix.texi:9342 msgid "Here is a (simplified) example of how @code{search-input-file} is used in a build phase of the @code{wireguard-tools} package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9290 +#: guix-git/doc/guix.texi:9351 #, no-wrap msgid "" "(add-after 'install 'wrap-wg-quick\n" @@ -17811,35 +17945,215 @@ msgid "" " `(\"PATH\" \":\" prefix ,(list coreutils))))))\n" msgstr "" +#. type: subsection +#: guix-git/doc/guix.texi:9353 +#, fuzzy, no-wrap +#| msgid "Log Rotation" +msgid "Program Invocation" +msgstr "日志轮替" + +#. type: cindex +#: guix-git/doc/guix.texi:9355 +#, no-wrap +msgid "program invocation, from Scheme" +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:9356 +#, no-wrap +msgid "invoking programs, from Scheme" +msgstr "" + #. type: Plain text -#: guix-git/doc/guix.texi:9301 +#: guix-git/doc/guix.texi:9360 +msgid "You'll find handy procedures to spawn processes in this module, essentially convenient wrappers around Guile's @code{system*} (@pxref{Processes, @code{system*},, guile, GNU Guile Reference Manual})." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9361 +#, no-wrap +msgid "{Scheme Procedure} invoke @var{program} @var{args}@dots{}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9365 +msgid "Invoke @var{program} with the given @var{args}. Raise an @code{&invoke-error} exception if the exit code is non-zero; otherwise return @code{#t}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9369 +msgid "The advantage compared to @code{system*} is that you do not need to check the return value. This reduces boilerplate in shell-script-like snippets for instance in package build phases." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9371 +#, no-wrap +msgid "{Scheme Procedure} invoke-error? @var{c}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9373 +msgid "Return true if @var{c} is an @code{&invoke-error} condition." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9375 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-program @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9376 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-arguments @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9377 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-exit-status @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9378 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-term-signal @var{c}" +msgstr "" + +#. type: deffnx +#: guix-git/doc/guix.texi:9379 +#, no-wrap +msgid "{Scheme Procedure} invoke-error-stop-signal @var{c}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9381 +msgid "Access specific fields of @var{c}, an @code{&invoke-error} condition." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9383 +#, no-wrap +msgid "{Scheme Procedure} report-invoke-error @var{c} [@var{port}]" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9386 +msgid "Report to @var{port} (by default the current error port) about @var{c}, an @code{&invoke-error} condition, in a human-friendly way." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9388 +msgid "Typical usage would look like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9392 +#, no-wrap +msgid "" +"(use-modules (srfi srfi-34) ;for 'guard'\n" +" (guix build utils))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9396 +#, no-wrap +msgid "" +"(guard (c ((invoke-error? c)\n" +" (report-invoke-error c)))\n" +" (invoke \"date\" \"--imaginary-option\"))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9398 +#, no-wrap +msgid "@print{} command \"date\" \"--imaginary-option\" failed with status 1\n" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9401 +#, no-wrap +msgid "{Scheme Procedure} invoke/quiet @var{program} @var{args}@dots{}" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9407 +msgid "Invoke @var{program} with @var{args} and capture @var{program}'s standard output and standard error. If @var{program} succeeds, print nothing and return the unspecified value; otherwise, raise a @code{&message} error condition that includes the status code and the output of @var{program}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9409 +msgid "Here's an example:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9414 +#, no-wrap +msgid "" +"(use-modules (srfi srfi-34) ;for 'guard'\n" +" (srfi srfi-35) ;for 'message-condition?'\n" +" (guix build utils))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9419 +#, no-wrap +msgid "" +"(guard (c ((message-condition? c)\n" +" (display (condition-message c))))\n" +" (invoke/quiet \"date\") ;all is fine\n" +" (invoke/quiet \"date\" \"--imaginary-option\"))\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9421 +#, no-wrap +msgid "" +"@print{} 'date --imaginary-option' exited with status 1; output follows:\n" +"\n" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9424 +#, no-wrap +msgid "" +" date: unrecognized option '--imaginary-option'\n" +" Try 'date --help' for more information.\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9436 msgid "The @code{(guix build utils)} also contains tools to manipulate build phases as used by build systems (@pxref{Build Systems}). Build phases are represented as association lists or ``alists'' (@pxref{Association Lists,,, guile, GNU Guile Reference Manual}) where each key is a symbol naming the phase and the associated value is a procedure (@pxref{Build Phases})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9305 +#: guix-git/doc/guix.texi:9440 msgid "Guile core and the @code{(srfi srfi-1)} module both provide tools to manipulate alists. The @code{(guix build utils)} module complements those with tools written with build phases in mind." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9306 +#: guix-git/doc/guix.texi:9441 #, fuzzy, no-wrap msgid "build phases, modifying" msgstr "构建后台进程" #. type: deffn -#: guix-git/doc/guix.texi:9307 +#: guix-git/doc/guix.texi:9442 #, no-wrap msgid "{Scheme Syntax} modify-phases @var{phases} @var{clause}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9310 +#: guix-git/doc/guix.texi:9445 msgid "Modify @var{phases} sequentially as per each @var{clause}, which may have one of the following forms:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9316 +#: guix-git/doc/guix.texi:9451 #, no-wrap msgid "" "(delete @var{old-phase-name})\n" @@ -17849,17 +18163,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9320 +#: guix-git/doc/guix.texi:9455 msgid "Where every @var{phase-name} above is an expression evaluating to a symbol, and @var{new-phase} an expression evaluating to a procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9331 +#: guix-git/doc/guix.texi:9466 msgid "The example below is taken from the definition of the @code{grep} package. It adds a phase to run after the @code{install} phase, called @code{fix-egrep-and-fgrep}. That phase is a procedure (@code{lambda*} is for anonymous procedures) that takes a @code{#:outputs} keyword argument and ignores extra keyword arguments (@pxref{Optional Arguments,,, guile, GNU Guile Reference Manual}, for more on @code{lambda*} and optional and keyword arguments.) The phase uses @code{substitute*} to modify the installed @file{egrep} and @file{fgrep} scripts so that they refer to @code{grep} by its absolute file name:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9345 +#: guix-git/doc/guix.texi:9480 #, no-wrap msgid "" "(modify-phases %standard-phases\n" @@ -17877,12 +18191,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9352 +#: guix-git/doc/guix.texi:9487 msgid "In the example below, phases are modified in two ways: the standard @code{configure} phase is deleted, presumably because the package does not have a @file{configure} script or anything similar, and the default @code{install} phase is replaced by one that manually copies the executable files to be installed:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9365 +#: guix-git/doc/guix.texi:9500 #, no-wrap msgid "" "(modify-phases %standard-phases\n" @@ -17899,377 +18213,606 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9373 +#: guix-git/doc/guix.texi:9507 +#, no-wrap +msgid "search path" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9514 +msgid "Many programs and libraries look for input data in a @dfn{search path}, a list of directories: shells like Bash look for executables in the command search path, a C compiler looks for @file{.h} files in its header search path, the Python interpreter looks for @file{.py} files in its search path, the spell checker has a search path for dictionaries, and so on." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9522 +msgid "Search paths can usually be defined or overridden @i{via} environment variables (@pxref{Environment Variables,,, libc, The GNU C Library Reference Manual}). For example, the search paths mentioned above can be changed by defining the @env{PATH}, @env{C_INCLUDE_PATH}, @env{PYTHONPATH} (or @env{GUIX_PYTHONPATH}), and @env{DICPATH} environment variables---you know, all these something-PATH variables that you need to get right or things ``won't be found''." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9532 +msgid "You may have noticed from the command line that Guix ``knows'' which search path environment variables should be defined, and how. When you install packages in your default profile, the file @file{~/.guix-profile/etc/profile} is created, which you can ``source'' from the shell to set those variables. Likewise, if you ask @command{guix shell} to create an environment containing Python and NumPy, a Python library, and if you pass it the @option{--search-paths} option, it will tell you about @env{PATH} and @env{GUIX_PYTHONPATH} (@pxref{Invoking guix shell}):" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9537 +#, no-wrap +msgid "" +"$ guix shell python python-numpy --pure --search-paths\n" +"export PATH=\"/gnu/store/@dots{}-profile/bin\"\n" +"export GUIX_PYTHONPATH=\"/gnu/store/@dots{}-profile/lib/python3.9/site-packages\"\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9541 +msgid "When you omit @option{--search-paths}, it defines these environment variables right away, such that Python can readily find NumPy:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9550 +#, no-wrap +msgid "" +"$ guix shell python python-numpy -- python3\n" +"Python 3.9.6 (default, Jan 1 1970, 00:00:01)\n" +"[GCC 10.3.0] on linux\n" +"Type \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n" +">>> import numpy\n" +">>> numpy.version.version\n" +"'1.20.3'\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9555 +msgid "For this to work, the definition of the @code{python} package @emph{declares} the search path it cares about and its associated environment variable, @env{GUIX_PYTHONPATH}. It looks like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9565 +#, no-wrap +msgid "" +"(package\n" +" (name \"python\")\n" +" (version \"3.9.9\")\n" +" ;; some fields omitted...\n" +" (native-search-paths\n" +" (list (search-path-specification\n" +" (variable \"GUIX_PYTHONPATH\")\n" +" (files (list \"lib/python/3.9/site-packages\"))))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9580 +msgid "What this @code{native-search-paths} field says is that, when the @code{python} package is used, the @env{GUIX_PYTHONPATH} environment variable must be defined to include all the @file{lib/python/3.9/site-packages} sub-directories encountered in its environment. (The @code{native-} bit means that, if we are in a cross-compilation environment, only native inputs may be added to the search path; @pxref{package Reference, @code{search-paths}}.) In the NumPy example above, the profile where @code{python} appears contains exactly one such sub-directory, and @env{GUIX_PYTHONPATH} is set to that. When there are several @file{lib/python/3.9/site-packages}---this is the case in package build environments---they are all added to @env{GUIX_PYTHONPATH}, separated by colons (@code{:})." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9587 +msgid "Notice that @env{GUIX_PYTHONPATH} is specified as part of the definition of the @code{python} package, and @emph{not} as part of that of @code{python-numpy}. This is because this environment variable ``belongs'' to Python, not NumPy: Python actually reads the value of that variable and honors it." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9591 +msgid "Corollary: if you create a profile that does not contain @code{python}, @code{GUIX_PYTHONPATH} will @emph{not} be defined, even if it contains packages that provide @file{.py} files:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:9595 +#, no-wrap +msgid "" +"$ guix shell python-numpy --search-paths --pure\n" +"export PATH=\"/gnu/store/@dots{}-profile/bin\"\n" +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:9599 +msgid "This makes a lot of sense if we look at this profile in isolation: no software in this profile would read @env{GUIX_PYTHONPATH}." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9609 +msgid "Of course, there are many variations on that theme: some packages honor more than one search path, some use separators other than colon, some accumulate several directories in their search path, and so on. A more complex example is the search path of libxml2: the value of the @env{XML_CATALOG_FILES} environment variable is space-separated, it must contain a list of @file{catalog.xml} files (not directories), which are to be found in @file{xml} sub-directories---nothing less. The search path specification looks like this:" +msgstr "" + +#. type: lisp +#: guix-git/doc/guix.texi:9621 +#, no-wrap +msgid "" +"(package\n" +" (name \"libxml2\")\n" +" ;; some fields omitted\n" +" (native-search-paths\n" +" (list (search-path-specification\n" +" (variable \"XML_CATALOG_FILES\")\n" +" (separator \" \")\n" +" (files '(\"xml\"))\n" +" (file-pattern \"^catalog\\\\.xml$\")\n" +" (file-type 'regular)))))\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9624 +msgid "Worry not, search path specifications are usually not this tricky." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9628 +msgid "The @code{(guix search-paths)} module defines the data type of search path specifications and a number of helper procedures. Below is the reference of search path specifications." +msgstr "" + +#. type: deftp +#: guix-git/doc/guix.texi:9629 +#, fuzzy, no-wrap +msgid "{Data Type} search-path-specification" +msgstr "管理操作系统配置。" + +#. type: deftp +#: guix-git/doc/guix.texi:9631 +#, fuzzy +msgid "The data type for search path specifications." +msgstr "管理操作系统配置。" + +#. type: code{#1} +#: guix-git/doc/guix.texi:9633 +#, no-wrap +msgid "variable" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9635 +msgid "The name of the environment variable for this search path (a string)." +msgstr "" + +#. type: code{#1} +#: guix-git/doc/guix.texi:9636 guix-git/doc/guix.texi:17482 +#, no-wrap +msgid "files" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9639 +msgid "The list of sub-directories (strings) that should be added to the search path." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9640 +#, fuzzy, no-wrap +msgid "@code{separator} (default: @code{\":\"})" +msgstr "@code{port}(默认值:@code{22})" + +#. type: table +#: guix-git/doc/guix.texi:9642 +msgid "The string used to separate search path components." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9650 +msgid "As a special case, a @code{separator} value of @code{#f} specifies a ``single-component search path''---in other words, a search path that cannot contain more than one element. This is useful in some cases, such as the @code{SSL_CERT_DIR} variable (honored by OpenSSL, cURL, and a few other packages) or the @code{ASPELL_DICT_DIR} variable (honored by the GNU Aspell spell checker), both of which must point to a single directory." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9651 +#, fuzzy, no-wrap +msgid "@code{file-type} (default: @code{'directory})" +msgstr "@code{mate}(默认值:@code{mate})" + +#. type: table +#: guix-git/doc/guix.texi:9655 +msgid "The type of file being matched---@code{'directory} or @code{'regular}, though it can be any symbol returned by @code{stat:type} (@pxref{File System, @code{stat},, guile, GNU Guile Reference Manual})." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9658 +msgid "In the libxml2 example above, we would match regular files; in the Python example, we would match directories." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:9659 +#, fuzzy, no-wrap +msgid "@code{file-pattern} (default: @code{#f})" +msgstr "@code{max-journal-depth}(默认值:@code{#f})" + +#. type: table +#: guix-git/doc/guix.texi:9663 +msgid "This must be either @code{#f} or a regular expression specifying files to be matched @emph{within} the sub-directories specified by the @code{files} field." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:9665 +msgid "Again, the libxml2 example shows a situation where this is needed." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9671 +msgid "How do you turn search path specifications on one hand and a bunch of directories on the other hand in a set of environment variable definitions? That's the job of @code{evaluate-search-paths}." +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9672 +#, no-wrap +msgid "{Scheme Procedure} evaluate-search-paths @var{search-paths} @" +msgstr "" + +#. type: deffn +#: guix-git/doc/guix.texi:9678 +msgid "@var{directories} [@var{getenv}] Evaluate @var{search-paths}, a list of search-path specifications, for @var{directories}, a list of directory names, and return a list of specification/value pairs. Use @var{getenv} to determine the current settings and report only settings not already effective." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:9682 +msgid "The @code{(guix profiles)} provides a higher-level helper procedure, @code{load-profile}, that sets the environment variables of a profile." +msgstr "" + +#. type: cindex +#: guix-git/doc/guix.texi:9687 #, no-wrap msgid "store items" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9374 +#: guix-git/doc/guix.texi:9688 #, no-wrap msgid "store paths" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9385 +#: guix-git/doc/guix.texi:9699 msgid "Conceptually, the @dfn{store} is the place where derivations that have been built successfully are stored---by default, @file{/gnu/store}. Sub-directories in the store are referred to as @dfn{store items} or sometimes @dfn{store paths}. The store has an associated database that contains information such as the store paths referred to by each store path, and the list of @emph{valid} store items---results of successful builds. This database resides in @file{@var{localstatedir}/guix/db}, where @var{localstatedir} is the state directory specified @i{via} @option{--localstatedir} at configure time, usually @file{/var}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9390 +#: guix-git/doc/guix.texi:9704 msgid "The store is @emph{always} accessed by the daemon on behalf of its clients (@pxref{Invoking guix-daemon}). To manipulate the store, clients connect to the daemon over a Unix-domain socket, send requests to it, and read the result---these are remote procedure calls, or RPCs." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:9395 +#: guix-git/doc/guix.texi:9709 msgid "Users must @emph{never} modify files under @file{/gnu/store} directly. This would lead to inconsistencies and break the immutability assumptions of Guix's functional model (@pxref{Introduction})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:9399 +#: guix-git/doc/guix.texi:9713 msgid "@xref{Invoking guix gc, @command{guix gc --verify}}, for information on how to check the integrity of the store and attempt recovery from accidental modifications." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9406 +#: guix-git/doc/guix.texi:9720 msgid "The @code{(guix store)} module provides procedures to connect to the daemon, and to perform RPCs. These are described below. By default, @code{open-connection}, and thus all the @command{guix} commands, connect to the local daemon or to the URI specified by the @env{GUIX_DAEMON_SOCKET} environment variable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9407 +#: guix-git/doc/guix.texi:9721 #, no-wrap msgid "{Environment Variable} GUIX_DAEMON_SOCKET" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9412 +#: guix-git/doc/guix.texi:9726 msgid "When set, the value of this variable should be a file name or a URI designating the daemon endpoint. When it is a file name, it denotes a Unix-domain socket to connect to. In addition to file names, the supported URI schemes are:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:9414 guix-git/doc/guix.texi:26183 +#: guix-git/doc/guix.texi:9728 guix-git/doc/guix.texi:26520 #, no-wrap msgid "file" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:9415 +#: guix-git/doc/guix.texi:9729 #, no-wrap msgid "unix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:9419 +#: guix-git/doc/guix.texi:9733 msgid "These are for Unix-domain sockets. @code{file:///var/guix/daemon-socket/socket} is equivalent to @file{/var/guix/daemon-socket/socket}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:9428 +#: guix-git/doc/guix.texi:9742 msgid "These URIs denote connections over TCP/IP, without encryption nor authentication of the remote host. The URI must specify the host name and optionally a port number (by default port 44146 is used):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9431 +#: guix-git/doc/guix.texi:9745 #, no-wrap msgid "guix://master.guix.example.org:1234\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:9436 +#: guix-git/doc/guix.texi:9750 msgid "This setup is suitable on local networks, such as clusters, where only trusted nodes may connect to the build daemon at @code{master.guix.example.org}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:9440 +#: guix-git/doc/guix.texi:9754 msgid "The @option{--listen} option of @command{guix-daemon} can be used to instruct it to listen for TCP connections (@pxref{Invoking guix-daemon, @option{--listen}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:9441 +#: guix-git/doc/guix.texi:9755 #, no-wrap msgid "ssh" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9442 +#: guix-git/doc/guix.texi:9756 #, no-wrap msgid "SSH access to build daemons" msgstr "" #. type: table -#: guix-git/doc/guix.texi:9448 +#: guix-git/doc/guix.texi:9762 msgid "These URIs allow you to connect to a remote daemon over SSH@. This feature requires Guile-SSH (@pxref{Requirements}) and a working @command{guile} binary in @env{PATH} on the destination machine. It supports public key and GSSAPI authentication. A typical URL might look like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9451 +#: guix-git/doc/guix.texi:9765 #, no-wrap msgid "ssh://charlie@@guix.example.org:22\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:9455 +#: guix-git/doc/guix.texi:9769 msgid "As for @command{guix copy}, the usual OpenSSH client configuration files are honored (@pxref{Invoking guix copy})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9458 +#: guix-git/doc/guix.texi:9772 msgid "Additional URI schemes may be supported in the future." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:9465 +#: guix-git/doc/guix.texi:9779 msgid "The ability to connect to remote build daemons is considered experimental as of @value{VERSION}. Please get in touch with us to share any problems or suggestions you may have (@pxref{Contributing})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9468 +#: guix-git/doc/guix.texi:9782 #, no-wrap msgid "{Scheme Procedure} open-connection [@var{uri}] [#:reserve-space? #t]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9473 +#: guix-git/doc/guix.texi:9787 msgid "Connect to the daemon over the Unix-domain socket at @var{uri} (a string). When @var{reserve-space?} is true, instruct it to reserve a little bit of extra space on the file system so that the garbage collector can still operate should the disk become full. Return a server object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9476 +#: guix-git/doc/guix.texi:9790 msgid "@var{file} defaults to @code{%default-socket-path}, which is the normal location given the options that were passed to @command{configure}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9478 +#: guix-git/doc/guix.texi:9792 #, no-wrap msgid "{Scheme Procedure} close-connection @var{server}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9480 +#: guix-git/doc/guix.texi:9794 msgid "Close the connection to @var{server}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9482 +#: guix-git/doc/guix.texi:9796 #, no-wrap msgid "{Scheme Variable} current-build-output-port" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9485 +#: guix-git/doc/guix.texi:9799 msgid "This variable is bound to a SRFI-39 parameter, which refers to the port where build and error logs sent by the daemon should be written." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9489 +#: guix-git/doc/guix.texi:9803 msgid "Procedures that make RPCs all take a server object as their first argument." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9490 +#: guix-git/doc/guix.texi:9804 #, no-wrap msgid "{Scheme Procedure} valid-path? @var{server} @var{path}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9491 +#: guix-git/doc/guix.texi:9805 #, no-wrap msgid "invalid store items" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9496 +#: guix-git/doc/guix.texi:9810 msgid "Return @code{#t} when @var{path} designates a valid store item and @code{#f} otherwise (an invalid item may exist on disk but still be invalid, for instance because it is the result of an aborted or failed build)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9499 +#: guix-git/doc/guix.texi:9813 msgid "A @code{&store-protocol-error} condition is raised if @var{path} is not prefixed by the store directory (@file{/gnu/store})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9501 +#: guix-git/doc/guix.texi:9815 #, no-wrap msgid "{Scheme Procedure} add-text-to-store @var{server} @var{name} @var{text} [@var{references}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9505 +#: guix-git/doc/guix.texi:9819 msgid "Add @var{text} under file @var{name} in the store, and return its store path. @var{references} is the list of store paths referred to by the resulting store path." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9507 +#: guix-git/doc/guix.texi:9821 #, no-wrap msgid "{Scheme Procedure} build-derivations @var{store} @var{derivations} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9512 +#: guix-git/doc/guix.texi:9826 msgid "[@var{mode}] Build @var{derivations}, a list of @code{} objects, @file{.drv} file names, or derivation/output pairs, using the specified @var{mode}---@code{(build-mode normal)} by default." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9518 +#: guix-git/doc/guix.texi:9832 msgid "Note that the @code{(guix monads)} module provides a monad as well as monadic versions of the above procedures, with the goal of making it more convenient to work with code that accesses the store (@pxref{The Store Monad})." msgstr "" #. type: i{#1} -#: guix-git/doc/guix.texi:9521 +#: guix-git/doc/guix.texi:9835 msgid "This section is currently incomplete." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9525 +#: guix-git/doc/guix.texi:9839 #, no-wrap msgid "derivations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9529 +#: guix-git/doc/guix.texi:9843 msgid "Low-level build actions and the environment in which they are performed are represented by @dfn{derivations}. A derivation contains the following pieces of information:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9534 +#: guix-git/doc/guix.texi:9848 msgid "The outputs of the derivation---derivations produce at least one file or directory in the store, but may produce more." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9536 +#: guix-git/doc/guix.texi:9850 #, no-wrap msgid "build-time dependencies" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9537 +#: guix-git/doc/guix.texi:9851 #, no-wrap msgid "dependencies, build-time" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9541 +#: guix-git/doc/guix.texi:9855 msgid "The inputs of the derivations---i.e., its build-time dependencies---which may be other derivations or plain files in the store (patches, build scripts, etc.)." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9544 +#: guix-git/doc/guix.texi:9858 msgid "The system type targeted by the derivation---e.g., @code{x86_64-linux}." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9548 +#: guix-git/doc/guix.texi:9862 msgid "The file name of a build script in the store, along with the arguments to be passed." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:9551 +#: guix-git/doc/guix.texi:9865 msgid "A list of environment variables to be defined." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9554 +#: guix-git/doc/guix.texi:9868 #, no-wrap msgid "derivation path" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9562 +#: guix-git/doc/guix.texi:9876 msgid "Derivations allow clients of the daemon to communicate build actions to the store. They exist in two forms: as an in-memory representation, both on the client- and daemon-side, and as files in the store whose name end in @file{.drv}---these files are referred to as @dfn{derivation paths}. Derivations paths can be passed to the @code{build-derivations} procedure to perform the build actions they prescribe (@pxref{The Store})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9563 +#: guix-git/doc/guix.texi:9877 #, no-wrap msgid "fixed-output derivations" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9570 +#: guix-git/doc/guix.texi:9884 msgid "Operations such as file downloads and version-control checkouts for which the expected content hash is known in advance are modeled as @dfn{fixed-output derivations}. Unlike regular derivations, the outputs of a fixed-output derivation are independent of its inputs---e.g., a source code download produces the same result regardless of the download method and tools being used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:9571 guix-git/doc/guix.texi:13341 +#: guix-git/doc/guix.texi:9885 guix-git/doc/guix.texi:13698 #, no-wrap msgid "references" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9572 +#: guix-git/doc/guix.texi:9886 #, no-wrap msgid "run-time dependencies" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9573 +#: guix-git/doc/guix.texi:9887 #, no-wrap msgid "dependencies, run-time" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9580 +#: guix-git/doc/guix.texi:9894 msgid "The outputs of derivations---i.e., the build results---have a set of @dfn{references}, as reported by the @code{references} RPC or the @command{guix gc --references} command (@pxref{Invoking guix gc}). References are the set of run-time dependencies of the build results. References are a subset of the inputs of the derivation; this subset is automatically computed by the build daemon by scanning all the files in the outputs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9585 +#: guix-git/doc/guix.texi:9899 msgid "The @code{(guix derivations)} module provides a representation of derivations as Scheme objects, along with procedures to create and otherwise manipulate derivations. The lowest-level primitive to create a derivation is the @code{derivation} procedure:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9586 +#: guix-git/doc/guix.texi:9900 #, no-wrap msgid "{Scheme Procedure} derivation @var{store} @var{name} @var{builder} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9595 +#: guix-git/doc/guix.texi:9909 msgid "@var{args} [#:outputs '(\"out\")] [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:inputs '()] [#:env-vars '()] @ [#:system (%current-system)] [#:references-graphs #f] @ [#:allowed-references #f] [#:disallowed-references #f] @ [#:leaked-env-vars #f] [#:local-build? #f] @ [#:substitutable? #t] [#:properties '()] Build a derivation with the given arguments, and return the resulting @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9602 +#: guix-git/doc/guix.texi:9916 msgid "When @var{hash} and @var{hash-algo} are given, a @dfn{fixed-output derivation} is created---i.e., one whose result is known in advance, such as a file download. If, in addition, @var{recursive?} is true, then that fixed output may be an executable file or a directory and @var{hash} must be the hash of an archive containing this output." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9607 +#: guix-git/doc/guix.texi:9921 msgid "When @var{references-graphs} is true, it must be a list of file name/store path pairs. In that case, the reference graph of each store path is exported in the build environment in the corresponding file, in a simple text format." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9612 +#: guix-git/doc/guix.texi:9926 msgid "When @var{allowed-references} is true, it must be a list of store items or outputs that the derivation's output may refer to. Likewise, @var{disallowed-references}, if true, must be a list of things the outputs may @emph{not} refer to." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9619 +#: guix-git/doc/guix.texi:9933 msgid "When @var{leaked-env-vars} is true, it must be a list of strings denoting environment variables that are allowed to ``leak'' from the daemon's environment to the build environment. This is only applicable to fixed-output derivations---i.e., when @var{hash} is true. The main use is to allow variables such as @code{http_proxy} to be passed to derivations that download files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9624 +#: guix-git/doc/guix.texi:9938 msgid "When @var{local-build?} is true, declare that the derivation is not a good candidate for offloading and should rather be built locally (@pxref{Daemon Offload Setup}). This is the case for small derivations where the costs of data transfers would outweigh the benefits." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9629 +#: guix-git/doc/guix.texi:9943 msgid "When @var{substitutable?} is false, declare that substitutes of the derivation's output should not be used (@pxref{Substitutes}). This is useful, for instance, when building packages that capture details of the host CPU instruction set." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9632 +#: guix-git/doc/guix.texi:9946 msgid "@var{properties} must be an association list describing ``properties'' of the derivation. It is kept as-is, uninterpreted, in the derivation." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9638 +#: guix-git/doc/guix.texi:9952 msgid "Here's an example with a shell script as its builder, assuming @var{store} is an open connection to the daemon, and @var{bash} points to a Bash executable in the store:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9643 +#: guix-git/doc/guix.texi:9957 #, no-wrap msgid "" "(use-modules (guix utils)\n" @@ -18279,7 +18822,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9652 +#: guix-git/doc/guix.texi:9966 #, no-wrap msgid "" "(let ((builder ; add the Bash script to the store\n" @@ -18293,48 +18836,48 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9659 +#: guix-git/doc/guix.texi:9973 msgid "As can be guessed, this primitive is cumbersome to use directly. A better approach is to write build scripts in Scheme, of course! The best course of action for that is to write the build code as a ``G-expression'', and to pass it to @code{gexp->derivation}. For more information, @pxref{G-Expressions}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9664 +#: guix-git/doc/guix.texi:9978 msgid "Once upon a time, @code{gexp->derivation} did not exist and constructing derivations with build code written in Scheme was achieved with @code{build-expression->derivation}, documented below. This procedure is now deprecated in favor of the much nicer @code{gexp->derivation}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9665 +#: guix-git/doc/guix.texi:9979 #, no-wrap msgid "{Scheme Procedure} build-expression->derivation @var{store} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9681 +#: guix-git/doc/guix.texi:9995 msgid "@var{name} @var{exp} @ [#:system (%current-system)] [#:inputs '()] @ [#:outputs '(\"out\")] [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:env-vars '()] [#:modules '()] @ [#:references-graphs #f] [#:allowed-references #f] @ [#:disallowed-references #f] @ [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f] Return a derivation that executes Scheme expression @var{exp} as a builder for derivation @var{name}. @var{inputs} must be a list of @code{(name drv-path sub-drv)} tuples; when @var{sub-drv} is omitted, @code{\"out\"} is assumed. @var{modules} is a list of names of Guile modules from the current search path to be copied in the store, compiled, and made available in the load path during the execution of @var{exp}---e.g., @code{((guix build utils) (guix build gnu-build-system))}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9689 +#: guix-git/doc/guix.texi:10003 msgid "@var{exp} is evaluated in an environment where @code{%outputs} is bound to a list of output/path pairs, and where @code{%build-inputs} is bound to a list of string/output-path pairs made from @var{inputs}. Optionally, @var{env-vars} is a list of string pairs specifying the name and value of environment variables visible to the builder. The builder terminates by passing the result of @var{exp} to @code{exit}; thus, when @var{exp} returns @code{#f}, the build is considered to have failed." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9693 +#: guix-git/doc/guix.texi:10007 msgid "@var{exp} is built using @var{guile-for-build} (a derivation). When @var{guile-for-build} is omitted or is @code{#f}, the value of the @code{%guile-for-build} fluid is used instead." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9698 +#: guix-git/doc/guix.texi:10012 msgid "See the @code{derivation} procedure for the meaning of @var{references-graphs}, @var{allowed-references}, @var{disallowed-references}, @var{local-build?}, and @var{substitutable?}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9703 +#: guix-git/doc/guix.texi:10017 msgid "Here's an example of a single-output derivation that creates a directory containing one file:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9711 +#: guix-git/doc/guix.texi:10025 #, no-wrap msgid "" "(let ((builder '(let ((out (assoc-ref %outputs \"out\")))\n" @@ -18347,51 +18890,51 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9713 +#: guix-git/doc/guix.texi:10027 #, no-wrap msgid "@result{} # @dots{}>\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9719 +#: guix-git/doc/guix.texi:10033 #, no-wrap msgid "monad" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9725 +#: guix-git/doc/guix.texi:10039 msgid "The procedures that operate on the store described in the previous sections all take an open connection to the build daemon as their first argument. Although the underlying model is functional, they either have side effects or depend on the current state of the store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9731 +#: guix-git/doc/guix.texi:10045 msgid "The former is inconvenient: the connection to the build daemon has to be carried around in all those functions, making it impossible to compose functions that do not take that parameter with functions that do. The latter can be problematic: since store operations have side effects and/or depend on external state, they have to be properly sequenced." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9732 +#: guix-git/doc/guix.texi:10046 #, no-wrap msgid "monadic values" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9733 +#: guix-git/doc/guix.texi:10047 #, no-wrap msgid "monadic functions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9743 +#: guix-git/doc/guix.texi:10057 msgid "This is where the @code{(guix monads)} module comes in. This module provides a framework for working with @dfn{monads}, and a particularly useful monad for our uses, the @dfn{store monad}. Monads are a construct that allows two things: associating ``context'' with values (in our case, the context is the store), and building sequences of computations (here computations include accesses to the store). Values in a monad---values that carry this additional context---are called @dfn{monadic values}; procedures that return such values are called @dfn{monadic procedures}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9745 +#: guix-git/doc/guix.texi:10059 msgid "Consider this ``normal'' procedure:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9754 +#: guix-git/doc/guix.texi:10068 #, no-wrap msgid "" "(define (sh-symlink store)\n" @@ -18404,12 +18947,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9758 +#: guix-git/doc/guix.texi:10072 msgid "Using @code{(guix monads)} and @code{(guix gexp)}, it may be rewritten as a monadic function:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9766 +#: guix-git/doc/guix.texi:10080 #, no-wrap msgid "" "(define (sh-symlink)\n" @@ -18421,17 +18964,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9773 +#: guix-git/doc/guix.texi:10087 msgid "There are several things to note in the second version: the @code{store} parameter is now implicit and is ``threaded'' in the calls to the @code{package->derivation} and @code{gexp->derivation} monadic procedures, and the monadic value returned by @code{package->derivation} is @dfn{bound} using @code{mlet} instead of plain @code{let}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9777 +#: guix-git/doc/guix.texi:10091 msgid "As it turns out, the call to @code{package->derivation} can even be omitted since it will take place implicitly, as we will see later (@pxref{G-Expressions}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9783 +#: guix-git/doc/guix.texi:10097 #, no-wrap msgid "" "(define (sh-symlink)\n" @@ -18441,12 +18984,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9792 +#: guix-git/doc/guix.texi:10106 msgid "Calling the monadic @code{sh-symlink} has no effect. As someone once said, ``you exit a monad like you exit a building on fire: by running''. So, to exit the monad and get the desired effect, one must use @code{run-with-store}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9796 +#: guix-git/doc/guix.texi:10110 #, no-wrap msgid "" "(run-with-store (open-connection) (sh-symlink))\n" @@ -18454,12 +18997,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9802 +#: guix-git/doc/guix.texi:10116 msgid "Note that the @code{(guix monad-repl)} module extends the Guile REPL with new ``meta-commands'' to make it easier to deal with monadic procedures: @code{run-in-store}, and @code{enter-store-monad}. The former is used to ``run'' a single monadic value through the store:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9806 +#: guix-git/doc/guix.texi:10120 #, no-wrap msgid "" "scheme@@(guile-user)> ,run-in-store (package->derivation hello)\n" @@ -18467,12 +19010,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9810 +#: guix-git/doc/guix.texi:10124 msgid "The latter enters a recursive REPL, where all the return values are automatically run through the store:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:9819 +#: guix-git/doc/guix.texi:10133 #, no-wrap msgid "" "scheme@@(guile-user)> ,enter-store-monad\n" @@ -18485,50 +19028,50 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9824 +#: guix-git/doc/guix.texi:10138 msgid "Note that non-monadic values cannot be returned in the @code{store-monad} REPL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9827 +#: guix-git/doc/guix.texi:10141 msgid "The main syntactic forms to deal with monads in general are provided by the @code{(guix monads)} module and are described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9828 +#: guix-git/doc/guix.texi:10142 #, no-wrap msgid "{Scheme Syntax} with-monad @var{monad} @var{body} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9831 +#: guix-git/doc/guix.texi:10145 msgid "Evaluate any @code{>>=} or @code{return} forms in @var{body} as being in @var{monad}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9833 +#: guix-git/doc/guix.texi:10147 #, no-wrap msgid "{Scheme Syntax} return @var{val}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9835 +#: guix-git/doc/guix.texi:10149 msgid "Return a monadic value that encapsulates @var{val}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9837 +#: guix-git/doc/guix.texi:10151 #, no-wrap msgid "{Scheme Syntax} >>= @var{mval} @var{mproc} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9844 +#: guix-git/doc/guix.texi:10158 msgid "@dfn{Bind} monadic value @var{mval}, passing its ``contents'' to monadic procedures @var{mproc}@dots{}@footnote{This operation is commonly referred to as ``bind'', but that name denotes an unrelated procedure in Guile. Thus we use this somewhat cryptic symbol inherited from the Haskell language.}. There can be one @var{mproc} or several of them, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9852 +#: guix-git/doc/guix.texi:10166 #, no-wrap msgid "" "(run-with-state\n" @@ -18541,7 +19084,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9855 +#: guix-git/doc/guix.texi:10169 #, no-wrap msgid "" "@result{} 4\n" @@ -18549,99 +19092,99 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9858 +#: guix-git/doc/guix.texi:10172 #, no-wrap msgid "{Scheme Syntax} mlet @var{monad} ((@var{var} @var{mval}) ...) @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9860 +#: guix-git/doc/guix.texi:10174 msgid "@var{body} ..." msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:9860 +#: guix-git/doc/guix.texi:10174 #, no-wrap msgid "{Scheme Syntax} mlet* @var{monad} ((@var{var} @var{mval}) ...) @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9872 +#: guix-git/doc/guix.texi:10186 msgid "@var{body} ... Bind the variables @var{var} to the monadic values @var{mval} in @var{body}, which is a sequence of expressions. As with the bind operator, this can be thought of as ``unpacking'' the raw, non-monadic value ``contained'' in @var{mval} and making @var{var} refer to that raw, non-monadic value within the scope of the @var{body}. The form (@var{var} -> @var{val}) binds @var{var} to the ``normal'' value @var{val}, as per @code{let}. The binding operations occur in sequence from left to right. The last expression of @var{body} must be a monadic expression, and its result will become the result of the @code{mlet} or @code{mlet*} when run in the @var{monad}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9875 +#: guix-git/doc/guix.texi:10189 msgid "@code{mlet*} is to @code{mlet} what @code{let*} is to @code{let} (@pxref{Local Bindings,,, guile, GNU Guile Reference Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9877 +#: guix-git/doc/guix.texi:10191 #, no-wrap msgid "{Scheme System} mbegin @var{monad} @var{mexp} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9881 +#: guix-git/doc/guix.texi:10195 msgid "Bind @var{mexp} and the following monadic expressions in sequence, returning the result of the last expression. Every expression in the sequence must be a monadic expression." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9885 +#: guix-git/doc/guix.texi:10199 msgid "This is akin to @code{mlet}, except that the return values of the monadic expressions are ignored. In that sense, it is analogous to @code{begin}, but applied to monadic expressions." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9887 +#: guix-git/doc/guix.texi:10201 #, no-wrap msgid "{Scheme System} mwhen @var{condition} @var{mexp0} @var{mexp*} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9892 +#: guix-git/doc/guix.texi:10206 msgid "When @var{condition} is true, evaluate the sequence of monadic expressions @var{mexp0}..@var{mexp*} as in an @code{mbegin}. When @var{condition} is false, return @code{*unspecified*} in the current monad. Every expression in the sequence must be a monadic expression." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9894 +#: guix-git/doc/guix.texi:10208 #, no-wrap msgid "{Scheme System} munless @var{condition} @var{mexp0} @var{mexp*} ..." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9899 +#: guix-git/doc/guix.texi:10213 msgid "When @var{condition} is false, evaluate the sequence of monadic expressions @var{mexp0}..@var{mexp*} as in an @code{mbegin}. When @var{condition} is true, return @code{*unspecified*} in the current monad. Every expression in the sequence must be a monadic expression." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:9901 +#: guix-git/doc/guix.texi:10215 #, no-wrap msgid "state monad" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9905 +#: guix-git/doc/guix.texi:10219 msgid "The @code{(guix monads)} module provides the @dfn{state monad}, which allows an additional value---the state---to be @emph{threaded} through monadic procedure calls." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9906 +#: guix-git/doc/guix.texi:10220 #, no-wrap msgid "{Scheme Variable} %state-monad" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9909 +#: guix-git/doc/guix.texi:10223 msgid "The state monad. Procedures in the state monad can access and change the state that is threaded." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9913 +#: guix-git/doc/guix.texi:10227 msgid "Consider the example below. The @code{square} procedure returns a value in the state monad. It returns the square of its argument, but also increments the current state value:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9920 +#: guix-git/doc/guix.texi:10234 #, no-wrap msgid "" "(define (square x)\n" @@ -18653,7 +19196,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:9924 +#: guix-git/doc/guix.texi:10238 #, no-wrap msgid "" "(run-with-state (sequence %state-monad (map square (iota 3))) 0)\n" @@ -18662,147 +19205,147 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9928 +#: guix-git/doc/guix.texi:10242 msgid "When ``run'' through @code{%state-monad}, we obtain that additional state value, which is the number of @code{square} calls." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9930 +#: guix-git/doc/guix.texi:10244 #, no-wrap msgid "{Monadic Procedure} current-state" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9932 +#: guix-git/doc/guix.texi:10246 msgid "Return the current state as a monadic value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9934 +#: guix-git/doc/guix.texi:10248 #, no-wrap msgid "{Monadic Procedure} set-current-state @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9937 +#: guix-git/doc/guix.texi:10251 msgid "Set the current state to @var{value} and return the previous state as a monadic value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9939 +#: guix-git/doc/guix.texi:10253 #, no-wrap msgid "{Monadic Procedure} state-push @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9942 +#: guix-git/doc/guix.texi:10256 msgid "Push @var{value} to the current state, which is assumed to be a list, and return the previous state as a monadic value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9944 +#: guix-git/doc/guix.texi:10258 #, no-wrap msgid "{Monadic Procedure} state-pop" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9947 +#: guix-git/doc/guix.texi:10261 msgid "Pop a value from the current state and return it as a monadic value. The state is assumed to be a list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9949 +#: guix-git/doc/guix.texi:10263 #, no-wrap msgid "{Scheme Procedure} run-with-state @var{mval} [@var{state}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9952 +#: guix-git/doc/guix.texi:10266 msgid "Run monadic value @var{mval} starting with @var{state} as the initial state. Return two values: the resulting value, and the resulting state." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:9956 +#: guix-git/doc/guix.texi:10270 msgid "The main interface to the store monad, provided by the @code{(guix store)} module, is as follows." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9957 +#: guix-git/doc/guix.texi:10271 #, no-wrap msgid "{Scheme Variable} %store-monad" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9959 +#: guix-git/doc/guix.texi:10273 msgid "The store monad---an alias for @code{%state-monad}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:9963 +#: guix-git/doc/guix.texi:10277 msgid "Values in the store monad encapsulate accesses to the store. When its effect is needed, a value of the store monad must be ``evaluated'' by passing it to the @code{run-with-store} procedure (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9965 +#: guix-git/doc/guix.texi:10279 #, no-wrap msgid "{Scheme Procedure} run-with-store @var{store} @var{mval} [#:guile-for-build] [#:system (%current-system)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9968 +#: guix-git/doc/guix.texi:10282 msgid "Run @var{mval}, a monadic value in the store monad, in @var{store}, an open store connection." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9970 +#: guix-git/doc/guix.texi:10284 #, no-wrap msgid "{Monadic Procedure} text-file @var{name} @var{text} [@var{references}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9974 +#: guix-git/doc/guix.texi:10288 msgid "Return as a monadic value the absolute file name in the store of the file containing @var{text}, a string. @var{references} is a list of store items that the resulting text file refers to; it defaults to the empty list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9976 +#: guix-git/doc/guix.texi:10290 #, no-wrap msgid "{Monadic Procedure} binary-file @var{name} @var{data} [@var{references}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9980 +#: guix-git/doc/guix.texi:10294 msgid "Return as a monadic value the absolute file name in the store of the file containing @var{data}, a bytevector. @var{references} is a list of store items that the resulting binary file refers to; it defaults to the empty list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9982 +#: guix-git/doc/guix.texi:10296 #, no-wrap msgid "{Monadic Procedure} interned-file @var{file} [@var{name}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9987 +#: guix-git/doc/guix.texi:10301 msgid "[#:recursive? #t] [#:select? (const #t)] Return the name of @var{file} once interned in the store. Use @var{name} as its store name, or the basename of @var{file} if @var{name} is omitted." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9991 guix-git/doc/guix.texi:10414 +#: guix-git/doc/guix.texi:10305 guix-git/doc/guix.texi:10728 msgid "When @var{recursive?} is true, the contents of @var{file} are added recursively; if @var{file} designates a flat file and @var{recursive?} is true, its contents are added, and its permission bits are kept." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9996 guix-git/doc/guix.texi:10419 +#: guix-git/doc/guix.texi:10310 guix-git/doc/guix.texi:10733 msgid "When @var{recursive?} is true, call @code{(@var{select?} @var{file} @var{stat})} for each directory entry, where @var{file} is the entry's absolute file name and @var{stat} is the result of @code{lstat}; exclude entries for which @var{select?} does not return true." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:9998 +#: guix-git/doc/guix.texi:10312 msgid "The example below adds a file to the store, under two different names:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10004 +#: guix-git/doc/guix.texi:10318 #, no-wrap msgid "" "(run-with-store (open-connection)\n" @@ -18813,120 +19356,120 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10006 +#: guix-git/doc/guix.texi:10320 #, no-wrap msgid "@result{} (\"/gnu/store/rwm@dots{}-README\" \"/gnu/store/44i@dots{}-LEGU-MIN\")\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10012 +#: guix-git/doc/guix.texi:10326 msgid "The @code{(guix packages)} module exports the following package-related monadic procedures:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10013 +#: guix-git/doc/guix.texi:10327 #, no-wrap msgid "{Monadic Procedure} package-file @var{package} [@var{file}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10021 +#: guix-git/doc/guix.texi:10335 msgid "[#:system (%current-system)] [#:target #f] @ [#:output \"out\"] Return as a monadic value in the absolute file name of @var{file} within the @var{output} directory of @var{package}. When @var{file} is omitted, return the name of the @var{output} directory of @var{package}. When @var{target} is true, use it as a cross-compilation target triplet." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10025 +#: guix-git/doc/guix.texi:10339 msgid "Note that this procedure does @emph{not} build @var{package}. Thus, the result might or might not designate an existing file. We recommend not using this procedure unless you know what you are doing." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10027 +#: guix-git/doc/guix.texi:10341 #, no-wrap msgid "{Monadic Procedure} package->derivation @var{package} [@var{system}]" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:10028 +#: guix-git/doc/guix.texi:10342 #, no-wrap msgid "{Monadic Procedure} package->cross-derivation @var{package} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10032 +#: guix-git/doc/guix.texi:10346 msgid "@var{target} [@var{system}] Monadic version of @code{package-derivation} and @code{package-cross-derivation} (@pxref{Defining Packages})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10038 +#: guix-git/doc/guix.texi:10352 #, no-wrap msgid "G-expression" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10039 +#: guix-git/doc/guix.texi:10353 #, no-wrap msgid "build code quoting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10045 +#: guix-git/doc/guix.texi:10359 msgid "So we have ``derivations'', which represent a sequence of build actions to be performed to produce an item in the store (@pxref{Derivations}). These build actions are performed when asking the daemon to actually build the derivations; they are run by the daemon in a container (@pxref{Invoking guix-daemon})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10048 +#: guix-git/doc/guix.texi:10362 #, no-wrap msgid "strata of code" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10060 +#: guix-git/doc/guix.texi:10374 msgid "It should come as no surprise that we like to write these build actions in Scheme. When we do that, we end up with two @dfn{strata} of Scheme code@footnote{The term @dfn{stratum} in this context was coined by Manuel Serrano et al.@: in the context of their work on Hop. Oleg Kiselyov, who has written insightful @url{http://okmij.org/ftp/meta-programming/#meta-scheme, essays and code on this topic}, refers to this kind of code generation as @dfn{staging}.}: the ``host code''---code that defines packages, talks to the daemon, etc.---and the ``build code''---code that actually performs build actions, such as making directories, invoking @command{make}, and so on (@pxref{Build Phases})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10067 +#: guix-git/doc/guix.texi:10381 msgid "To describe a derivation and its build actions, one typically needs to embed build code inside host code. It boils down to manipulating build code as data, and the homoiconicity of Scheme---code has a direct representation as data---comes in handy for that. But we need more than the normal @code{quasiquote} mechanism in Scheme to construct build expressions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10076 +#: guix-git/doc/guix.texi:10390 msgid "The @code{(guix gexp)} module implements @dfn{G-expressions}, a form of S-expressions adapted to build expressions. G-expressions, or @dfn{gexps}, consist essentially of three syntactic forms: @code{gexp}, @code{ungexp}, and @code{ungexp-splicing} (or simply: @code{#~}, @code{#$}, and @code{#$@@}), which are comparable to @code{quasiquote}, @code{unquote}, and @code{unquote-splicing}, respectively (@pxref{Expression Syntax, @code{quasiquote},, guile, GNU Guile Reference Manual}). However, there are major differences:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:10081 +#: guix-git/doc/guix.texi:10395 msgid "Gexps are meant to be written to a file and run or manipulated by other processes." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:10086 +#: guix-git/doc/guix.texi:10400 msgid "When a high-level object such as a package or derivation is unquoted inside a gexp, the result is as if its output file name had been introduced." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:10091 +#: guix-git/doc/guix.texi:10405 msgid "Gexps carry information about the packages or derivations they refer to, and these dependencies are automatically added as inputs to the build processes that use them." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10093 guix-git/doc/guix.texi:10650 +#: guix-git/doc/guix.texi:10407 guix-git/doc/guix.texi:10964 #, no-wrap msgid "lowering, of high-level objects in gexps" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10103 +#: guix-git/doc/guix.texi:10417 msgid "This mechanism is not limited to package and derivation objects: @dfn{compilers} able to ``lower'' other high-level objects to derivations or files in the store can be defined, such that these objects can also be inserted into gexps. For example, a useful type of high-level objects that can be inserted in a gexp is ``file-like objects'', which make it easy to add files to the store and to refer to them in derivations and such (see @code{local-file} and @code{plain-file} below)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10105 +#: guix-git/doc/guix.texi:10419 msgid "To illustrate the idea, here is an example of a gexp:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10113 +#: guix-git/doc/guix.texi:10427 #, no-wrap msgid "" "(define build-exp\n" @@ -18938,34 +19481,34 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10118 +#: guix-git/doc/guix.texi:10432 msgid "This gexp can be passed to @code{gexp->derivation}; we obtain a derivation that builds a directory containing exactly one symlink to @file{/gnu/store/@dots{}-coreutils-8.22/bin/ls}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10121 +#: guix-git/doc/guix.texi:10435 #, no-wrap msgid "(gexp->derivation \"the-thing\" build-exp)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10129 +#: guix-git/doc/guix.texi:10443 msgid "As one would expect, the @code{\"/gnu/store/@dots{}-coreutils-8.22\"} string is substituted to the reference to the @var{coreutils} package in the actual build code, and @var{coreutils} is automatically made an input to the derivation. Likewise, @code{#$output} (equivalent to @code{(ungexp output)}) is replaced by a string containing the directory name of the output of the derivation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10130 +#: guix-git/doc/guix.texi:10444 #, no-wrap msgid "cross compilation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10136 +#: guix-git/doc/guix.texi:10450 msgid "In a cross-compilation context, it is useful to distinguish between references to the @emph{native} build of a package---that can run on the host---versus references to cross builds of a package. To that end, the @code{#+} plays the same role as @code{#$}, but is a reference to a native package build:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10147 +#: guix-git/doc/guix.texi:10461 #, no-wrap msgid "" "(gexp->derivation \"vi\"\n" @@ -18980,29 +19523,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10153 +#: guix-git/doc/guix.texi:10467 msgid "In the example above, the native build of @var{coreutils} is used, so that @command{ln} can actually run on the host; but then the cross-compiled build of @var{emacs} is referenced." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10154 +#: guix-git/doc/guix.texi:10468 #, no-wrap msgid "imported modules, for gexps" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:10155 +#: guix-git/doc/guix.texi:10469 #, no-wrap msgid "with-imported-modules" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10160 +#: guix-git/doc/guix.texi:10474 msgid "Another gexp feature is @dfn{imported modules}: sometimes you want to be able to use certain Guile modules from the ``host environment'' in the gexp, so those modules should be imported in the ``build environment''. The @code{with-imported-modules} form allows you to express that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10171 +#: guix-git/doc/guix.texi:10485 #, no-wrap msgid "" "(let ((build (with-imported-modules '((guix build utils))\n" @@ -19017,29 +19560,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10177 +#: guix-git/doc/guix.texi:10491 msgid "In this example, the @code{(guix build utils)} module is automatically pulled into the isolated build environment of our gexp, such that @code{(use-modules (guix build utils))} works as expected." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10178 +#: guix-git/doc/guix.texi:10492 #, no-wrap msgid "module closure" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:10179 +#: guix-git/doc/guix.texi:10493 #, no-wrap msgid "source-module-closure" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10186 +#: guix-git/doc/guix.texi:10500 msgid "Usually you want the @emph{closure} of the module to be imported---i.e., the module itself and all the modules it depends on---rather than just the module; failing to do that, attempts to use the module will fail because of missing dependent modules. The @code{source-module-closure} procedure computes the closure of a module by looking at its source file headers, which comes in handy in this case:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10189 +#: guix-git/doc/guix.texi:10503 #, no-wrap msgid "" "(use-modules (guix modules)) ;for 'source-module-closure'\n" @@ -19047,7 +19590,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10198 +#: guix-git/doc/guix.texi:10512 #, no-wrap msgid "" "(with-imported-modules (source-module-closure\n" @@ -19061,24 +19604,24 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10200 +#: guix-git/doc/guix.texi:10514 #, no-wrap msgid "extensions, for gexps" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:10201 +#: guix-git/doc/guix.texi:10515 #, no-wrap msgid "with-extensions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10206 +#: guix-git/doc/guix.texi:10520 msgid "In the same vein, sometimes you want to import not just pure-Scheme modules, but also ``extensions'' such as Guile bindings to C libraries or other ``full-blown'' packages. Say you need the @code{guile-json} package available on the build side, here's how you would do it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10209 +#: guix-git/doc/guix.texi:10523 #, no-wrap msgid "" "(use-modules (gnu packages guile)) ;for 'guile-json'\n" @@ -19086,7 +19629,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10215 +#: guix-git/doc/guix.texi:10529 #, no-wrap msgid "" "(with-extensions (list guile-json)\n" @@ -19097,184 +19640,184 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10218 +#: guix-git/doc/guix.texi:10532 msgid "The syntactic form to construct gexps is summarized below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10219 +#: guix-git/doc/guix.texi:10533 #, no-wrap msgid "{Scheme Syntax} #~@var{exp}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:10220 +#: guix-git/doc/guix.texi:10534 #, no-wrap msgid "{Scheme Syntax} (gexp @var{exp})" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10223 +#: guix-git/doc/guix.texi:10537 msgid "Return a G-expression containing @var{exp}. @var{exp} may contain one or more of the following forms:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10225 +#: guix-git/doc/guix.texi:10539 #, no-wrap msgid "#$@var{obj}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10226 +#: guix-git/doc/guix.texi:10540 #, no-wrap msgid "(ungexp @var{obj})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10231 +#: guix-git/doc/guix.texi:10545 msgid "Introduce a reference to @var{obj}. @var{obj} may have one of the supported types, for example a package or a derivation, in which case the @code{ungexp} form is replaced by its output file name---e.g., @code{\"/gnu/store/@dots{}-coreutils-8.22}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10234 +#: guix-git/doc/guix.texi:10548 msgid "If @var{obj} is a list, it is traversed and references to supported objects are substituted similarly." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10237 +#: guix-git/doc/guix.texi:10551 msgid "If @var{obj} is another gexp, its contents are inserted and its dependencies are added to those of the containing gexp." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10239 +#: guix-git/doc/guix.texi:10553 msgid "If @var{obj} is another kind of object, it is inserted as is." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10240 +#: guix-git/doc/guix.texi:10554 #, no-wrap msgid "#$@var{obj}:@var{output}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10241 +#: guix-git/doc/guix.texi:10555 #, no-wrap msgid "(ungexp @var{obj} @var{output})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10245 +#: guix-git/doc/guix.texi:10559 msgid "This is like the form above, but referring explicitly to the @var{output} of @var{obj}---this is useful when @var{obj} produces multiple outputs (@pxref{Packages with Multiple Outputs})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10246 +#: guix-git/doc/guix.texi:10560 #, no-wrap msgid "#+@var{obj}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10247 +#: guix-git/doc/guix.texi:10561 #, no-wrap msgid "#+@var{obj}:output" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10248 +#: guix-git/doc/guix.texi:10562 #, no-wrap msgid "(ungexp-native @var{obj})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10249 +#: guix-git/doc/guix.texi:10563 #, no-wrap msgid "(ungexp-native @var{obj} @var{output})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10252 +#: guix-git/doc/guix.texi:10566 msgid "Same as @code{ungexp}, but produces a reference to the @emph{native} build of @var{obj} when used in a cross compilation context." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10253 +#: guix-git/doc/guix.texi:10567 #, no-wrap msgid "#$output[:@var{output}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10254 +#: guix-git/doc/guix.texi:10568 #, no-wrap msgid "(ungexp output [@var{output}])" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10257 +#: guix-git/doc/guix.texi:10571 msgid "Insert a reference to derivation output @var{output}, or to the main output when @var{output} is omitted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10259 +#: guix-git/doc/guix.texi:10573 msgid "This only makes sense for gexps passed to @code{gexp->derivation}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10260 +#: guix-git/doc/guix.texi:10574 #, no-wrap msgid "#$@@@var{lst}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10261 +#: guix-git/doc/guix.texi:10575 #, no-wrap msgid "(ungexp-splicing @var{lst})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10264 +#: guix-git/doc/guix.texi:10578 msgid "Like the above, but splices the contents of @var{lst} inside the containing list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10265 +#: guix-git/doc/guix.texi:10579 #, no-wrap msgid "#+@@@var{lst}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10266 +#: guix-git/doc/guix.texi:10580 #, no-wrap msgid "(ungexp-native-splicing @var{lst})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10269 +#: guix-git/doc/guix.texi:10583 msgid "Like the above, but refers to native builds of the objects listed in @var{lst}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10274 +#: guix-git/doc/guix.texi:10588 msgid "G-expressions created by @code{gexp} or @code{#~} are run-time objects of the @code{gexp?} type (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10276 +#: guix-git/doc/guix.texi:10590 #, no-wrap msgid "{Scheme Syntax} with-imported-modules @var{modules} @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10279 +#: guix-git/doc/guix.texi:10593 msgid "Mark the gexps defined in @var{body}@dots{} as requiring @var{modules} in their execution environment." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10283 +#: guix-git/doc/guix.texi:10597 msgid "Each item in @var{modules} can be the name of a module, such as @code{(guix build utils)}, or it can be a module name, followed by an arrow, followed by a file-like object:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10289 +#: guix-git/doc/guix.texi:10603 #, no-wrap msgid "" "`((guix build utils)\n" @@ -19284,80 +19827,80 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10294 +#: guix-git/doc/guix.texi:10608 msgid "In the example above, the first two modules are taken from the search path, and the last one is created from the given file-like object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10298 +#: guix-git/doc/guix.texi:10612 msgid "This form has @emph{lexical} scope: it has an effect on the gexps directly defined in @var{body}@dots{}, but not on those defined, say, in procedures called from @var{body}@dots{}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10300 +#: guix-git/doc/guix.texi:10614 #, no-wrap msgid "{Scheme Syntax} with-extensions @var{extensions} @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10305 +#: guix-git/doc/guix.texi:10619 msgid "Mark the gexps defined in @var{body}@dots{} as requiring @var{extensions} in their build and execution environment. @var{extensions} is typically a list of package objects such as those defined in the @code{(gnu packages guile)} module." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10310 +#: guix-git/doc/guix.texi:10624 msgid "Concretely, the packages listed in @var{extensions} are added to the load path while compiling imported modules in @var{body}@dots{}; they are also added to the load path of the gexp returned by @var{body}@dots{}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10312 +#: guix-git/doc/guix.texi:10626 #, no-wrap msgid "{Scheme Procedure} gexp? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10314 +#: guix-git/doc/guix.texi:10628 msgid "Return @code{#t} if @var{obj} is a G-expression." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10320 +#: guix-git/doc/guix.texi:10634 msgid "G-expressions are meant to be written to disk, either as code building some derivation, or as plain files in the store. The monadic procedures below allow you to do that (@pxref{The Store Monad}, for more information about monads)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10321 +#: guix-git/doc/guix.texi:10635 #, no-wrap msgid "{Monadic Procedure} gexp->derivation @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10339 +#: guix-git/doc/guix.texi:10653 msgid "[#:system (%current-system)] [#:target #f] [#:graft? #t] @ [#:hash #f] [#:hash-algo #f] @ [#:recursive? #f] [#:env-vars '()] [#:modules '()] @ [#:module-path @code{%load-path}] @ [#:effective-version \"2.2\"] @ [#:references-graphs #f] [#:allowed-references #f] @ [#:disallowed-references #f] @ [#:leaked-env-vars #f] @ [#:script-name (string-append @var{name} \"-builder\")] @ [#:deprecation-warnings #f] @ [#:local-build? #f] [#:substitutable? #t] @ [#:properties '()] [#:guile-for-build #f] Return a derivation @var{name} that runs @var{exp} (a gexp) with @var{guile-for-build} (a derivation) on @var{system}; @var{exp} is stored in a file called @var{script-name}. When @var{target} is true, it is used as the cross-compilation target triplet for packages referred to by @var{exp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10347 +#: guix-git/doc/guix.texi:10661 msgid "@var{modules} is deprecated in favor of @code{with-imported-modules}. Its meaning is to make @var{modules} available in the evaluation context of @var{exp}; @var{modules} is a list of names of Guile modules searched in @var{module-path} to be copied in the store, compiled, and made available in the load path during the execution of @var{exp}---e.g., @code{((guix build utils) (guix build gnu-build-system))}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10350 +#: guix-git/doc/guix.texi:10664 msgid "@var{effective-version} determines the string to use when adding extensions of @var{exp} (see @code{with-extensions}) to the search path---e.g., @code{\"2.2\"}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10353 +#: guix-git/doc/guix.texi:10667 msgid "@var{graft?} determines whether packages referred to by @var{exp} should be grafted when applicable." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10356 +#: guix-git/doc/guix.texi:10670 msgid "When @var{references-graphs} is true, it must be a list of tuples of one of the following forms:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10363 +#: guix-git/doc/guix.texi:10677 #, no-wrap msgid "" "(@var{file-name} @var{package})\n" @@ -19368,38 +19911,38 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10369 +#: guix-git/doc/guix.texi:10683 msgid "The right-hand-side of each element of @var{references-graphs} is automatically made an input of the build process of @var{exp}. In the build environment, each @var{file-name} contains the reference graph of the corresponding item, in a simple text format." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10375 +#: guix-git/doc/guix.texi:10689 msgid "@var{allowed-references} must be either @code{#f} or a list of output names and packages. In the latter case, the list denotes store items that the result is allowed to refer to. Any reference to another store item will lead to a build error. Similarly for @var{disallowed-references}, which can list items that must not be referenced by the outputs." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10378 +#: guix-git/doc/guix.texi:10692 msgid "@var{deprecation-warnings} determines whether to show deprecation warnings while compiling modules. It can be @code{#f}, @code{#t}, or @code{'detailed}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10380 +#: guix-git/doc/guix.texi:10694 msgid "The other arguments are as for @code{derivation} (@pxref{Derivations})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10382 +#: guix-git/doc/guix.texi:10696 #, no-wrap msgid "file-like objects" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10387 +#: guix-git/doc/guix.texi:10701 msgid "The @code{local-file}, @code{plain-file}, @code{computed-file}, @code{program-file}, and @code{scheme-file} procedures below return @dfn{file-like objects}. That is, when unquoted in a G-expression, these objects lead to a file in the store. Consider this G-expression:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10391 +#: guix-git/doc/guix.texi:10705 #, no-wrap msgid "" "#~(system* #$(file-append glibc \"/sbin/nscd\") \"-f\"\n" @@ -19407,76 +19950,76 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10400 +#: guix-git/doc/guix.texi:10714 msgid "The effect here is to ``intern'' @file{/tmp/my-nscd.conf} by copying it to the store. Once expanded, for instance @i{via} @code{gexp->derivation}, the G-expression refers to that copy under @file{/gnu/store}; thus, modifying or removing the file in @file{/tmp} does not have any effect on what the G-expression does. @code{plain-file} can be used similarly; it differs in that the file content is directly passed as a string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10401 +#: guix-git/doc/guix.texi:10715 #, no-wrap msgid "{Scheme Procedure} local-file @var{file} [@var{name}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10410 +#: guix-git/doc/guix.texi:10724 msgid "[#:recursive? #f] [#:select? (const #t)] Return an object representing local file @var{file} to add to the store; this object can be used in a gexp. If @var{file} is a literal string denoting a relative file name, it is looked up relative to the source file where it appears; if @var{file} is not a literal string, it is looked up relative to the current working directory at run time. @var{file} will be added to the store under @var{name}--by default the base name of @var{file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10422 +#: guix-git/doc/guix.texi:10736 msgid "This is the declarative counterpart of the @code{interned-file} monadic procedure (@pxref{The Store Monad, @code{interned-file}})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10424 +#: guix-git/doc/guix.texi:10738 #, no-wrap msgid "{Scheme Procedure} plain-file @var{name} @var{content}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10427 +#: guix-git/doc/guix.texi:10741 msgid "Return an object representing a text file called @var{name} with the given @var{content} (a string or a bytevector) to be added to the store." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10429 +#: guix-git/doc/guix.texi:10743 msgid "This is the declarative counterpart of @code{text-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10431 +#: guix-git/doc/guix.texi:10745 #, no-wrap msgid "{Scheme Procedure} computed-file @var{name} @var{gexp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10438 +#: guix-git/doc/guix.texi:10752 msgid "[#:local-build? #t] [#:options '()] Return an object representing the store item @var{name}, a file or directory computed by @var{gexp}. When @var{local-build?} is true (the default), the derivation is built locally. @var{options} is a list of additional arguments to pass to @code{gexp->derivation}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10440 +#: guix-git/doc/guix.texi:10754 msgid "This is the declarative counterpart of @code{gexp->derivation}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10442 +#: guix-git/doc/guix.texi:10756 #, no-wrap msgid "{Monadic Procedure} gexp->script @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10448 +#: guix-git/doc/guix.texi:10762 msgid "[#:guile (default-guile)] [#:module-path %load-path] @ [#:system (%current-system)] [#:target #f] Return an executable script @var{name} that runs @var{exp} using @var{guile}, with @var{exp}'s imported modules in its search path. Look up @var{exp}'s modules in @var{module-path}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10451 +#: guix-git/doc/guix.texi:10765 msgid "The example below builds a script that simply invokes the @command{ls} command:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10454 +#: guix-git/doc/guix.texi:10768 #, no-wrap msgid "" "(use-modules (guix gexp) (gnu packages base))\n" @@ -19484,7 +20027,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10458 +#: guix-git/doc/guix.texi:10772 #, no-wrap msgid "" "(gexp->script \"list-files\"\n" @@ -19493,12 +20036,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10463 +#: guix-git/doc/guix.texi:10777 msgid "When ``running'' it through the store (@pxref{The Store Monad, @code{run-with-store}}), we obtain a derivation that produces an executable file @file{/gnu/store/@dots{}-list-files} along these lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10468 +#: guix-git/doc/guix.texi:10782 #, no-wrap msgid "" "#!/gnu/store/@dots{}-guile-2.0.11/bin/guile -ds\n" @@ -19507,76 +20050,76 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10471 +#: guix-git/doc/guix.texi:10785 #, no-wrap msgid "{Scheme Procedure} program-file @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10476 +#: guix-git/doc/guix.texi:10790 msgid "[#:guile #f] [#:module-path %load-path] Return an object representing the executable store item @var{name} that runs @var{gexp}. @var{guile} is the Guile package used to execute that script. Imported modules of @var{gexp} are looked up in @var{module-path}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10478 +#: guix-git/doc/guix.texi:10792 msgid "This is the declarative counterpart of @code{gexp->script}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10480 +#: guix-git/doc/guix.texi:10794 #, no-wrap msgid "{Monadic Procedure} gexp->file @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10487 +#: guix-git/doc/guix.texi:10801 msgid "[#:set-load-path? #t] [#:module-path %load-path] @ [#:splice? #f] @ [#:guile (default-guile)] Return a derivation that builds a file @var{name} containing @var{exp}. When @var{splice?} is true, @var{exp} is considered to be a list of expressions that will be spliced in the resulting file." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10492 +#: guix-git/doc/guix.texi:10806 msgid "When @var{set-load-path?} is true, emit code in the resulting file to set @code{%load-path} and @code{%load-compiled-path} to honor @var{exp}'s imported modules. Look up @var{exp}'s modules in @var{module-path}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10495 +#: guix-git/doc/guix.texi:10809 msgid "The resulting file holds references to all the dependencies of @var{exp} or a subset thereof." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10497 +#: guix-git/doc/guix.texi:10811 #, no-wrap msgid "{Scheme Procedure} scheme-file @var{name} @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10501 +#: guix-git/doc/guix.texi:10815 msgid "[#:splice? #f] [#:set-load-path? #t] Return an object representing the Scheme file @var{name} that contains @var{exp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10503 +#: guix-git/doc/guix.texi:10817 msgid "This is the declarative counterpart of @code{gexp->file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10505 +#: guix-git/doc/guix.texi:10819 #, no-wrap msgid "{Monadic Procedure} text-file* @var{name} @var{text} @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10511 +#: guix-git/doc/guix.texi:10825 msgid "Return as a monadic value a derivation that builds a text file containing all of @var{text}. @var{text} may list, in addition to strings, objects of any type that can be used in a gexp: packages, derivations, local file objects, etc. The resulting store file holds references to all these." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10516 +#: guix-git/doc/guix.texi:10830 msgid "This variant should be preferred over @code{text-file} anytime the file to create will reference items from the store. This is typically the case when building a configuration file that embeds store file names, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10524 +#: guix-git/doc/guix.texi:10838 #, no-wrap msgid "" "(define (profile.sh)\n" @@ -19588,23 +20131,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10529 +#: guix-git/doc/guix.texi:10843 msgid "In this example, the resulting @file{/gnu/store/@dots{}-profile.sh} file will reference @var{coreutils}, @var{grep}, and @var{sed}, thereby preventing them from being garbage-collected during its lifetime." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10531 +#: guix-git/doc/guix.texi:10845 #, no-wrap msgid "{Scheme Procedure} mixed-text-file @var{name} @var{text} @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10535 +#: guix-git/doc/guix.texi:10849 msgid "Return an object representing store file @var{name} containing @var{text}. @var{text} is a sequence of strings and file-like objects, as in:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10539 +#: guix-git/doc/guix.texi:10853 #, no-wrap msgid "" "(mixed-text-file \"profile\"\n" @@ -19612,23 +20155,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10542 +#: guix-git/doc/guix.texi:10856 msgid "This is the declarative counterpart of @code{text-file*}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10544 +#: guix-git/doc/guix.texi:10858 #, no-wrap msgid "{Scheme Procedure} file-union @var{name} @var{files}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10549 +#: guix-git/doc/guix.texi:10863 msgid "Return a @code{} that builds a directory containing all of @var{files}. Each item in @var{files} must be a two-element list where the first element is the file name to use in the new directory, and the second element is a gexp denoting the target file. Here's an example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10556 +#: guix-git/doc/guix.texi:10870 #, no-wrap msgid "" "(file-union \"etc\"\n" @@ -19639,50 +20182,50 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10559 +#: guix-git/doc/guix.texi:10873 msgid "This yields an @code{etc} directory containing these two files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10561 +#: guix-git/doc/guix.texi:10875 #, no-wrap msgid "{Scheme Procedure} directory-union @var{name} @var{things}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10564 +#: guix-git/doc/guix.texi:10878 msgid "Return a directory that is the union of @var{things}, where @var{things} is a list of file-like objects denoting directories. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10567 +#: guix-git/doc/guix.texi:10881 #, no-wrap msgid "(directory-union \"guile+emacs\" (list guile emacs))\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10570 +#: guix-git/doc/guix.texi:10884 msgid "yields a directory that is the union of the @code{guile} and @code{emacs} packages." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10572 +#: guix-git/doc/guix.texi:10886 #, no-wrap msgid "{Scheme Procedure} file-append @var{obj} @var{suffix} @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10576 +#: guix-git/doc/guix.texi:10890 msgid "Return a file-like object that expands to the concatenation of @var{obj} and @var{suffix}, where @var{obj} is a lowerable object and each @var{suffix} is a string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10578 +#: guix-git/doc/guix.texi:10892 msgid "As an example, consider this gexp:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10583 +#: guix-git/doc/guix.texi:10897 #, no-wrap msgid "" "(gexp->script \"run-uname\"\n" @@ -19691,12 +20234,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10586 +#: guix-git/doc/guix.texi:10900 msgid "The same effect could be achieved with:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10591 +#: guix-git/doc/guix.texi:10905 #, no-wrap msgid "" "(gexp->script \"run-uname\"\n" @@ -19705,40 +20248,40 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10597 +#: guix-git/doc/guix.texi:10911 msgid "There is one difference though: in the @code{file-append} case, the resulting script contains the absolute file name as a string, whereas in the second case, the resulting script contains a @code{(string-append @dots{})} expression to construct the file name @emph{at run time}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10599 +#: guix-git/doc/guix.texi:10913 #, no-wrap msgid "{Scheme Syntax} let-system @var{system} @var{body}@dots{}" msgstr "" #. type: deffnx -#: guix-git/doc/guix.texi:10600 +#: guix-git/doc/guix.texi:10914 #, no-wrap msgid "{Scheme Syntax} let-system (@var{system} @var{target}) @var{body}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10603 +#: guix-git/doc/guix.texi:10917 #, fuzzy msgid "Bind @var{system} to the currently targeted system---e.g., @code{\"x86_64-linux\"}---within @var{body}." msgstr "远程机器的系统类型--如,@code{\"x86_64-linux\"}。" #. type: deffn -#: guix-git/doc/guix.texi:10608 +#: guix-git/doc/guix.texi:10922 msgid "In the second case, additionally bind @var{target} to the current cross-compilation target---a GNU triplet such as @code{\"arm-linux-gnueabihf\"}---or @code{#f} if we are not cross-compiling." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10611 +#: guix-git/doc/guix.texi:10925 msgid "@code{let-system} is useful in the occasional case where the object spliced into the gexp depends on the target system, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10622 +#: guix-git/doc/guix.texi:10936 #, no-wrap msgid "" "#~(system*\n" @@ -19753,23 +20296,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10625 +#: guix-git/doc/guix.texi:10939 #, no-wrap msgid "{Scheme Syntax} with-parameters ((@var{parameter} @var{value}) @dots{}) @var{exp}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10631 +#: guix-git/doc/guix.texi:10945 msgid "This macro is similar to the @code{parameterize} form for dynamically-bound @dfn{parameters} (@pxref{Parameters,,, guile, GNU Guile Reference Manual}). The key difference is that it takes effect when the file-like object returned by @var{exp} is lowered to a derivation or store item." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10634 +#: guix-git/doc/guix.texi:10948 msgid "A typical use of @code{with-parameters} is to force the system in effect for a given object:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:10638 +#: guix-git/doc/guix.texi:10952 #, no-wrap msgid "" "(with-parameters ((%current-system \"i686-linux\"))\n" @@ -19777,94 +20320,94 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10642 +#: guix-git/doc/guix.texi:10956 msgid "The example above returns an object that corresponds to the i686 build of Coreutils, regardless of the current value of @code{%current-system}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10649 +#: guix-git/doc/guix.texi:10963 msgid "Of course, in addition to gexps embedded in ``host'' code, there are also modules containing build tools. To make it clear that they are meant to be used in the build stratum, these modules are kept in the @code{(guix build @dots{})} name space." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10655 +#: guix-git/doc/guix.texi:10969 msgid "Internally, high-level objects are @dfn{lowered}, using their compiler, to either derivations or store items. For instance, lowering a package yields a derivation, and lowering a @code{plain-file} yields a store item. This is achieved using the @code{lower-object} monadic procedure." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10656 +#: guix-git/doc/guix.texi:10970 #, no-wrap msgid "{Monadic Procedure} lower-object @var{obj} [@var{system}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10662 +#: guix-git/doc/guix.texi:10976 msgid "[#:target #f] Return as a value in @code{%store-monad} the derivation or store item corresponding to @var{obj} for @var{system}, cross-compiling for @var{target} if @var{target} is true. @var{obj} must be an object that has an associated gexp compiler, such as a @code{}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10664 +#: guix-git/doc/guix.texi:10978 #, no-wrap msgid "{Procedure} gexp->approximate-sexp @var{gexp}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:10672 +#: guix-git/doc/guix.texi:10986 msgid "Sometimes, it may be useful to convert a G-exp into a S-exp. For example, some linters (@pxref{Invoking guix lint}) peek into the build phases of a package to detect potential problems. This conversion can be achieved with this procedure. However, some information can be lost in the process. More specifically, lowerable objects will be silently replaced with some arbitrary object -- currently the list @code{(*approximate*)}, but this may change." msgstr "" #. type: section -#: guix-git/doc/guix.texi:10675 +#: guix-git/doc/guix.texi:10989 #, no-wrap msgid "Invoking @command{guix repl}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10677 +#: guix-git/doc/guix.texi:10991 #, fuzzy, no-wrap msgid "REPL, read-eval-print loop, script" msgstr "read-eval-print loop" #. type: Plain text -#: guix-git/doc/guix.texi:10687 +#: guix-git/doc/guix.texi:11001 msgid "The @command{guix repl} command makes it easier to program Guix in Guile by launching a Guile @dfn{read-eval-print loop} (REPL) for interactive programming (@pxref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}), or by running Guile scripts (@pxref{Running Guile Scripts,,, guile, GNU Guile Reference Manual}). Compared to just launching the @command{guile} command, @command{guix repl} guarantees that all the Guix modules and all its dependencies are available in the search path." msgstr "" #. type: example -#: guix-git/doc/guix.texi:10692 +#: guix-git/doc/guix.texi:11006 #, no-wrap msgid "guix repl @var{options} [@var{file} @var{args}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10696 +#: guix-git/doc/guix.texi:11010 msgid "When a @var{file} argument is provided, @var{file} is executed as a Guile scripts:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10699 +#: guix-git/doc/guix.texi:11013 #, no-wrap msgid "guix repl my-script.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10703 +#: guix-git/doc/guix.texi:11017 msgid "To pass arguments to the script, use @code{--} to prevent them from being interpreted as arguments to @command{guix repl} itself:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10706 +#: guix-git/doc/guix.texi:11020 #, no-wrap msgid "guix repl -- my-script.scm --input=foo.txt\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10711 +#: guix-git/doc/guix.texi:11025 msgid "To make a script executable directly from the shell, using the guix executable that is on the user's search path, add the following two lines at the top of the script:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10715 +#: guix-git/doc/guix.texi:11029 #, no-wrap msgid "" "@code{#!/usr/bin/env -S guix repl --}\n" @@ -19872,12 +20415,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10718 +#: guix-git/doc/guix.texi:11032 msgid "Without a file name argument, a Guile REPL is started:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10724 +#: guix-git/doc/guix.texi:11038 #, no-wrap msgid "" "$ guix repl\n" @@ -19887,169 +20430,169 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10731 +#: guix-git/doc/guix.texi:11045 msgid "In addition, @command{guix repl} implements a simple machine-readable REPL protocol for use by @code{(guix inferior)}, a facility to interact with @dfn{inferiors}, separate processes running a potentially different revision of Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10733 +#: guix-git/doc/guix.texi:11047 msgid "The available options are as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10735 guix-git/doc/guix.texi:13411 +#: guix-git/doc/guix.texi:11049 guix-git/doc/guix.texi:13768 #, no-wrap msgid "--type=@var{type}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10736 guix-git/doc/guix.texi:13412 -#: guix-git/doc/guix.texi:35281 +#: guix-git/doc/guix.texi:11050 guix-git/doc/guix.texi:13769 +#: guix-git/doc/guix.texi:35725 #, no-wrap msgid "-t @var{type}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10738 +#: guix-git/doc/guix.texi:11052 msgid "Start a REPL of the given @var{TYPE}, which can be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10740 +#: guix-git/doc/guix.texi:11054 #, no-wrap msgid "guile" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10742 +#: guix-git/doc/guix.texi:11056 msgid "This is default, and it spawns a standard full-featured Guile REPL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10742 +#: guix-git/doc/guix.texi:11056 #, no-wrap msgid "machine" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10745 +#: guix-git/doc/guix.texi:11059 msgid "Spawn a REPL that uses the machine-readable protocol. This is the protocol that the @code{(guix inferior)} module speaks." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10751 +#: guix-git/doc/guix.texi:11065 msgid "By default, @command{guix repl} reads from standard input and writes to standard output. When this option is passed, it will instead listen for connections on @var{endpoint}. Here are examples of valid options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10753 +#: guix-git/doc/guix.texi:11067 #, no-wrap msgid "--listen=tcp:37146" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10755 +#: guix-git/doc/guix.texi:11069 msgid "Accept connections on localhost on port 37146." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10756 +#: guix-git/doc/guix.texi:11070 #, no-wrap msgid "--listen=unix:/tmp/socket" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10758 +#: guix-git/doc/guix.texi:11072 msgid "Accept connections on the Unix-domain socket @file{/tmp/socket}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10760 guix-git/doc/guix.texi:10865 -#: guix-git/doc/guix.texi:12763 guix-git/doc/guix.texi:12840 -#: guix-git/doc/guix.texi:13046 guix-git/doc/guix.texi:13191 -#: guix-git/doc/guix.texi:13459 +#: guix-git/doc/guix.texi:11074 guix-git/doc/guix.texi:11179 +#: guix-git/doc/guix.texi:13078 guix-git/doc/guix.texi:13196 +#: guix-git/doc/guix.texi:13403 guix-git/doc/guix.texi:13548 +#: guix-git/doc/guix.texi:13816 #, no-wrap msgid "--load-path=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10761 guix-git/doc/guix.texi:10866 -#: guix-git/doc/guix.texi:12841 guix-git/doc/guix.texi:13047 -#: guix-git/doc/guix.texi:13192 guix-git/doc/guix.texi:13460 +#: guix-git/doc/guix.texi:11075 guix-git/doc/guix.texi:11180 +#: guix-git/doc/guix.texi:13197 guix-git/doc/guix.texi:13404 +#: guix-git/doc/guix.texi:13549 guix-git/doc/guix.texi:13817 #, no-wrap msgid "-L @var{directory}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10764 guix-git/doc/guix.texi:10869 -#: guix-git/doc/guix.texi:12766 guix-git/doc/guix.texi:12844 -#: guix-git/doc/guix.texi:13050 guix-git/doc/guix.texi:13195 -#: guix-git/doc/guix.texi:13463 +#: guix-git/doc/guix.texi:11078 guix-git/doc/guix.texi:11183 +#: guix-git/doc/guix.texi:13081 guix-git/doc/guix.texi:13200 +#: guix-git/doc/guix.texi:13407 guix-git/doc/guix.texi:13552 +#: guix-git/doc/guix.texi:13820 msgid "Add @var{directory} to the front of the package module search path (@pxref{Package Modules})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10767 +#: guix-git/doc/guix.texi:11081 msgid "This allows users to define their own packages and make them visible to the script or REPL." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10768 guix-git/doc/guix.texi:11390 +#: guix-git/doc/guix.texi:11082 guix-git/doc/guix.texi:11704 #, no-wrap msgid "-q" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10771 +#: guix-git/doc/guix.texi:11085 msgid "Inhibit loading of the @file{~/.guile} file. By default, that configuration file is loaded when spawning a @code{guile} REPL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10781 +#: guix-git/doc/guix.texi:11095 msgid "This section describes Guix command-line utilities. Some of them are primarily targeted at developers and users who write new package definitions, while others are more generally useful. They complement the Scheme programming interface of Guix in a convenient way." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10804 +#: guix-git/doc/guix.texi:11118 #, no-wrap msgid "package building" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:10805 +#: guix-git/doc/guix.texi:11119 #, no-wrap msgid "guix build" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10811 +#: guix-git/doc/guix.texi:11125 msgid "The @command{guix build} command builds packages or derivations and their dependencies, and prints the resulting store paths. Note that it does not modify the user's profile---this is the job of the @command{guix package} command (@pxref{Invoking guix package}). Thus, it is mainly useful for distribution developers." msgstr "" #. type: example -#: guix-git/doc/guix.texi:10816 +#: guix-git/doc/guix.texi:11130 #, no-wrap msgid "guix build @var{options} @var{package-or-derivation}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10821 +#: guix-git/doc/guix.texi:11135 msgid "As an example, the following command builds the latest versions of Emacs and of Guile, displays their build logs, and finally displays the resulting directories:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10824 +#: guix-git/doc/guix.texi:11138 #, no-wrap msgid "guix build emacs guile\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10827 +#: guix-git/doc/guix.texi:11141 msgid "Similarly, the following command builds all the available packages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:10831 +#: guix-git/doc/guix.texi:11145 #, no-wrap msgid "" "guix build --quiet --keep-going \\\n" @@ -20057,326 +20600,326 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10839 +#: guix-git/doc/guix.texi:11153 msgid "@var{package-or-derivation} may be either the name of a package found in the software distribution such as @code{coreutils} or @code{coreutils@@8.20}, or a derivation such as @file{/gnu/store/@dots{}-coreutils-8.19.drv}. In the former case, a package with the corresponding name (and optionally version) is searched for among the GNU distribution modules (@pxref{Package Modules})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10844 +#: guix-git/doc/guix.texi:11158 msgid "Alternatively, the @option{--expression} option may be used to specify a Scheme expression that evaluates to a package; this is useful when disambiguating among several same-named packages or package variants is needed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10847 +#: guix-git/doc/guix.texi:11161 msgid "There may be zero or more @var{options}. The available options are described in the subsections below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10862 +#: guix-git/doc/guix.texi:11176 msgid "A number of options that control the build process are common to @command{guix build} and other commands that can spawn builds, such as @command{guix package} or @command{guix archive}. These are the following:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10872 guix-git/doc/guix.texi:12769 -#: guix-git/doc/guix.texi:13053 guix-git/doc/guix.texi:13198 -#: guix-git/doc/guix.texi:13466 +#: guix-git/doc/guix.texi:11186 guix-git/doc/guix.texi:13084 +#: guix-git/doc/guix.texi:13410 guix-git/doc/guix.texi:13555 +#: guix-git/doc/guix.texi:13823 msgid "This allows users to define their own packages and make them visible to the command-line tools." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10873 +#: guix-git/doc/guix.texi:11187 #, no-wrap msgid "--keep-failed" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10874 +#: guix-git/doc/guix.texi:11188 #, no-wrap msgid "-K" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10880 +#: guix-git/doc/guix.texi:11194 msgid "Keep the build tree of failed builds. Thus, if a build fails, its build tree is kept under @file{/tmp}, in a directory whose name is shown at the end of the build log. This is useful when debugging build issues. @xref{Debugging Build Failures}, for tips and tricks on how to debug build issues." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10884 +#: guix-git/doc/guix.texi:11198 msgid "This option implies @option{--no-offload}, and it has no effect when connecting to a remote daemon with a @code{guix://} URI (@pxref{The Store, the @env{GUIX_DAEMON_SOCKET} variable})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10885 +#: guix-git/doc/guix.texi:11199 #, no-wrap msgid "--keep-going" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10886 +#: guix-git/doc/guix.texi:11200 #, no-wrap msgid "-k" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10889 +#: guix-git/doc/guix.texi:11203 msgid "Keep going when some of the derivations fail to build; return only once all the builds have either completed or failed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10892 +#: guix-git/doc/guix.texi:11206 msgid "The default behavior is to stop as soon as one of the specified derivations has failed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10896 +#: guix-git/doc/guix.texi:11210 msgid "Do not build the derivations." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:10898 +#: guix-git/doc/guix.texi:11212 msgid "fallback-option" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10898 +#: guix-git/doc/guix.texi:11212 #, no-wrap msgid "--fallback" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10901 +#: guix-git/doc/guix.texi:11215 msgid "When substituting a pre-built binary fails, fall back to building packages locally (@pxref{Substitution Failure})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:10907 +#: guix-git/doc/guix.texi:11221 msgid "client-substitute-urls" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10907 +#: guix-git/doc/guix.texi:11221 msgid "Consider @var{urls} the whitespace-separated list of substitute source URLs, overriding the default list of URLs of @command{guix-daemon} (@pxref{daemon-substitute-urls,, @command{guix-daemon} URLs})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10911 +#: guix-git/doc/guix.texi:11225 msgid "This means that substitutes may be downloaded from @var{urls}, provided they are signed by a key authorized by the system administrator (@pxref{Substitutes})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10914 +#: guix-git/doc/guix.texi:11228 msgid "When @var{urls} is the empty string, substitutes are effectively disabled." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10920 +#: guix-git/doc/guix.texi:11234 #, no-wrap msgid "--no-grafts" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10924 +#: guix-git/doc/guix.texi:11238 msgid "Do not ``graft'' packages. In practice, this means that package updates available as grafts are not applied. @xref{Security Updates}, for more information on grafts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10925 +#: guix-git/doc/guix.texi:11239 #, no-wrap msgid "--rounds=@var{n}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10928 +#: guix-git/doc/guix.texi:11242 msgid "Build each derivation @var{n} times in a row, and raise an error if consecutive build results are not bit-for-bit identical." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10933 +#: guix-git/doc/guix.texi:11247 msgid "This is a useful way to detect non-deterministic builds processes. Non-deterministic build processes are a problem because they make it practically impossible for users to @emph{verify} whether third-party binaries are genuine. @xref{Invoking guix challenge}, for more." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10949 +#: guix-git/doc/guix.texi:11263 msgid "By default, the daemon's setting is honored (@pxref{Invoking guix-daemon, @option{--max-silent-time}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10956 +#: guix-git/doc/guix.texi:11270 msgid "By default, the daemon's setting is honored (@pxref{Invoking guix-daemon, @option{--timeout}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10959 +#: guix-git/doc/guix.texi:11273 #, no-wrap msgid "verbosity, of the command-line tools" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:10960 +#: guix-git/doc/guix.texi:11274 #, no-wrap msgid "build logs, verbosity" msgstr "" #. type: item -#: guix-git/doc/guix.texi:10961 +#: guix-git/doc/guix.texi:11275 #, no-wrap msgid "-v @var{level}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:10962 +#: guix-git/doc/guix.texi:11276 #, no-wrap msgid "--verbosity=@var{level}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10967 +#: guix-git/doc/guix.texi:11281 msgid "Use the given verbosity @var{level}, an integer. Choosing 0 means that no output is produced, 1 is for quiet output; 2 is similar to 1 but it additionally displays download URLs; 3 shows all the build log output on standard error." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10972 +#: guix-git/doc/guix.texi:11286 msgid "Allow the use of up to @var{n} CPU cores for the build. The special value @code{0} means to use as many CPU cores as available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:10978 +#: guix-git/doc/guix.texi:11292 msgid "Allow at most @var{n} build jobs in parallel. @xref{Invoking guix-daemon, @option{--max-jobs}}, for details about this option and the equivalent @command{guix-daemon} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:10979 +#: guix-git/doc/guix.texi:11293 #, no-wrap msgid "--debug=@var{level}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:10983 +#: guix-git/doc/guix.texi:11297 msgid "Produce debugging output coming from the build daemon. @var{level} must be an integer between 0 and 5; higher means more verbose output. Setting a level of 4 or more may be helpful when debugging setup issues with the build daemon." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10990 +#: guix-git/doc/guix.texi:11304 msgid "Behind the scenes, @command{guix build} is essentially an interface to the @code{package-derivation} procedure of the @code{(guix packages)} module, and to the @code{build-derivations} procedure of the @code{(guix derivations)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:10994 +#: guix-git/doc/guix.texi:11308 msgid "In addition to options explicitly passed on the command line, @command{guix build} and other @command{guix} commands that support building honor the @env{GUIX_BUILD_OPTIONS} environment variable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:10995 +#: guix-git/doc/guix.texi:11309 #, no-wrap msgid "{Environment Variable} GUIX_BUILD_OPTIONS" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:11000 +#: guix-git/doc/guix.texi:11314 msgid "Users can define this variable to a list of command line options that will automatically be used by @command{guix build} and other @command{guix} commands that can perform builds, as in the example below:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11003 +#: guix-git/doc/guix.texi:11317 #, no-wrap msgid "$ export GUIX_BUILD_OPTIONS=\"--no-substitutes -c 2 -L /foo/bar\"\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:11007 +#: guix-git/doc/guix.texi:11321 msgid "These options are parsed independently, and the result is appended to the parsed command-line options." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11013 +#: guix-git/doc/guix.texi:11327 #, no-wrap msgid "package variants" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11021 +#: guix-git/doc/guix.texi:11335 msgid "Another set of command-line options supported by @command{guix build} and also @command{guix package} are @dfn{package transformation options}. These are options that make it possible to define @dfn{package variants}---for instance, packages built from different source code. This is a convenient way to create customized packages on the fly without having to type in the definitions of package variants (@pxref{Defining Packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11025 +#: guix-git/doc/guix.texi:11339 msgid "Package transformation options are preserved across upgrades: @command{guix upgrade} attempts to apply transformation options initially used when creating the profile to the upgraded packages." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11030 +#: guix-git/doc/guix.texi:11344 msgid "The available options are listed below. Most commands support them and also support a @option{--help-transform} option that lists all the available options and a synopsis (these options are not shown in the @option{--help} output for brevity)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11033 +#: guix-git/doc/guix.texi:11347 #, fuzzy, no-wrap #| msgid "formatting code" msgid "performance, tuning code" msgstr "格式化代码" #. type: cindex -#: guix-git/doc/guix.texi:11034 +#: guix-git/doc/guix.texi:11348 #, fuzzy, no-wrap #| msgid "customization, of packages" msgid "optimization, of package code" msgstr "定制软件包" #. type: cindex -#: guix-git/doc/guix.texi:11035 +#: guix-git/doc/guix.texi:11349 #, fuzzy, no-wrap msgid "tuning, of package code" msgstr "代码格式化" #. type: cindex -#: guix-git/doc/guix.texi:11036 +#: guix-git/doc/guix.texi:11350 #, no-wrap msgid "SIMD support" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11037 +#: guix-git/doc/guix.texi:11351 #, fuzzy, no-wrap #| msgid "Building packages." msgid "tunable packages" msgstr "构建软件包。" #. type: cindex -#: guix-git/doc/guix.texi:11038 +#: guix-git/doc/guix.texi:11352 #, fuzzy, no-wrap #| msgid "package version" msgid "package multi-versioning" msgstr "软件包版本" #. type: item -#: guix-git/doc/guix.texi:11039 +#: guix-git/doc/guix.texi:11353 #, fuzzy, no-wrap #| msgid "--rounds=@var{N}" msgid "--tune[=@var{cpu}]" msgstr "--rounds=@var{N}" #. type: table -#: guix-git/doc/guix.texi:11043 +#: guix-git/doc/guix.texi:11357 msgid "Use versions of the packages marked as ``tunable'' optimized for @var{cpu}. When @var{cpu} is @code{native}, or when it is omitted, tune for the CPU on which the @command{guix} command is running." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11049 +#: guix-git/doc/guix.texi:11363 msgid "Valid @var{cpu} names are those recognized by the underlying compiler, by default the GNU Compiler Collection. On x86_64 processors, this includes CPU names such as @code{nehalem}, @code{haswell}, and @code{skylake} (@pxref{x86 Options, @code{-march},, gcc, Using the GNU Compiler Collection (GCC)})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11056 +#: guix-git/doc/guix.texi:11370 msgid "As new generations of CPUs come out, they augment the standard instruction set architecture (ISA) with additional instructions, in particular instructions for single-instruction/multiple-data (SIMD) parallel processing. For example, while Core2 and Skylake CPUs both implement the x86_64 ISA, only the latter supports AVX2 SIMD instructions." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11063 +#: guix-git/doc/guix.texi:11377 msgid "The primary gain one can expect from @option{--tune} is for programs that can make use of those SIMD capabilities @emph{and} that do not already have a mechanism to select the right optimized code at run time. Packages that have the @code{tunable?} property set are considered @dfn{tunable packages} by the @option{--tune} option; a package definition with the property set looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:11068 +#: guix-git/doc/guix.texi:11382 #, no-wrap msgid "" "(package\n" @@ -20386,7 +20929,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:11072 +#: guix-git/doc/guix.texi:11386 #, no-wrap msgid "" " ;; This package may benefit from SIMD extensions so\n" @@ -20395,87 +20938,87 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11077 +#: guix-git/doc/guix.texi:11391 msgid "Other packages are not considered tunable. This allows Guix to use generic binaries in the cases where tuning for a specific CPU is unlikely to provide any gain." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11083 +#: guix-git/doc/guix.texi:11397 msgid "Tuned packages are built with @code{-march=@var{CPU}}; under the hood, the @option{-march} option is passed to the actual wrapper by a compiler wrapper. Since the build machine may not be able to run code for the target CPU micro-architecture, the test suite is not run when building a tuned package." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11087 +#: guix-git/doc/guix.texi:11401 msgid "To reduce rebuilds to the minimum, tuned packages are @emph{grafted} onto packages that depend on them (@pxref{Security Updates, grafts}). Thus, using @option{--no-grafts} cancels the effect of @option{--tune}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11093 +#: guix-git/doc/guix.texi:11407 msgid "We call this technique @dfn{package multi-versioning}: several variants of tunable packages may be built, one for each CPU variant. It is the coarse-grain counterpart of @dfn{function multi-versioning} as implemented by the GNU tool chain (@pxref{Function Multiversioning,,, gcc, Using the GNU Compiler Collection (GCC)})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11094 +#: guix-git/doc/guix.texi:11408 #, no-wrap msgid "--with-source=@var{source}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11095 +#: guix-git/doc/guix.texi:11409 #, no-wrap msgid "--with-source=@var{package}=@var{source}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11096 +#: guix-git/doc/guix.texi:11410 #, no-wrap msgid "--with-source=@var{package}@@@var{version}=@var{source}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11101 +#: guix-git/doc/guix.texi:11415 msgid "Use @var{source} as the source of @var{package}, and @var{version} as its version number. @var{source} must be a file name or a URL, as for @command{guix download} (@pxref{Invoking guix download})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11107 +#: guix-git/doc/guix.texi:11421 msgid "When @var{package} is omitted, it is taken to be the package name specified on the command line that matches the base of @var{source}---e.g., if @var{source} is @code{/src/guile-2.0.10.tar.gz}, the corresponding package is @code{guile}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11110 +#: guix-git/doc/guix.texi:11424 msgid "Likewise, when @var{version} is omitted, the version string is inferred from @var{source}; in the previous example, it is @code{2.0.10}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11115 +#: guix-git/doc/guix.texi:11429 msgid "This option allows users to try out versions of packages other than the one provided by the distribution. The example below downloads @file{ed-1.7.tar.gz} from a GNU mirror and uses that as the source for the @code{ed} package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11118 +#: guix-git/doc/guix.texi:11432 #, no-wrap msgid "guix build ed --with-source=mirror://gnu/ed/ed-1.7.tar.gz\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11122 +#: guix-git/doc/guix.texi:11436 msgid "As a developer, @option{--with-source} makes it easy to test release candidates:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11125 +#: guix-git/doc/guix.texi:11439 #, no-wrap msgid "guix build guile --with-source=../guile-2.0.9.219-e1bb7.tar.xz\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11128 +#: guix-git/doc/guix.texi:11442 msgid "@dots{} or to build from a checkout in a pristine environment:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11132 +#: guix-git/doc/guix.texi:11446 #, no-wrap msgid "" "$ git clone git://git.sv.gnu.org/guix.git\n" @@ -20483,126 +21026,126 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11134 +#: guix-git/doc/guix.texi:11448 #, no-wrap msgid "--with-input=@var{package}=@var{replacement}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11139 +#: guix-git/doc/guix.texi:11453 msgid "Replace dependency on @var{package} by a dependency on @var{replacement}. @var{package} must be a package name, and @var{replacement} must be a package specification such as @code{guile} or @code{guile@@1.8}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11143 +#: guix-git/doc/guix.texi:11457 msgid "For instance, the following command builds Guix, but replaces its dependency on the current stable version of Guile with a dependency on the legacy version of Guile, @code{guile@@2.0}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11146 +#: guix-git/doc/guix.texi:11460 #, no-wrap msgid "guix build --with-input=guile=guile@@2.0 guix\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11151 +#: guix-git/doc/guix.texi:11465 msgid "This is a recursive, deep replacement. So in this example, both @code{guix} and its dependency @code{guile-json} (which also depends on @code{guile}) get rebuilt against @code{guile@@2.0}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11154 +#: guix-git/doc/guix.texi:11468 msgid "This is implemented using the @code{package-input-rewriting} Scheme procedure (@pxref{Defining Packages, @code{package-input-rewriting}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11155 +#: guix-git/doc/guix.texi:11469 #, no-wrap msgid "--with-graft=@var{package}=@var{replacement}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11161 +#: guix-git/doc/guix.texi:11475 msgid "This is similar to @option{--with-input} but with an important difference: instead of rebuilding the whole dependency chain, @var{replacement} is built and then @dfn{grafted} onto the binaries that were initially referring to @var{package}. @xref{Security Updates}, for more information on grafts." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11165 +#: guix-git/doc/guix.texi:11479 msgid "For example, the command below grafts version 3.5.4 of GnuTLS onto Wget and all its dependencies, replacing references to the version of GnuTLS they currently refer to:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11168 +#: guix-git/doc/guix.texi:11482 #, no-wrap msgid "guix build --with-graft=gnutls=gnutls@@3.5.4 wget\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11177 +#: guix-git/doc/guix.texi:11491 msgid "This has the advantage of being much faster than rebuilding everything. But there is a caveat: it works if and only if @var{package} and @var{replacement} are strictly compatible---for example, if they provide a library, the application binary interface (ABI) of those libraries must be compatible. If @var{replacement} is somehow incompatible with @var{package}, then the resulting package may be unusable. Use with care!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11178 guix-git/doc/guix.texi:37882 +#: guix-git/doc/guix.texi:11492 guix-git/doc/guix.texi:38371 #, no-wrap msgid "debugging info, rebuilding" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11179 +#: guix-git/doc/guix.texi:11493 #, no-wrap msgid "--with-debug-info=@var{package}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11184 +#: guix-git/doc/guix.texi:11498 msgid "Build @var{package} in a way that preserves its debugging info and graft it onto packages that depend on it. This is useful if @var{package} does not already provide debugging info as a @code{debug} output (@pxref{Installing Debugging Files})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11190 +#: guix-git/doc/guix.texi:11504 msgid "For example, suppose you're experiencing a crash in Inkscape and would like to see what's up in GLib, a library deep down in Inkscape's dependency graph. GLib lacks a @code{debug} output, so debugging is tough. Fortunately, you rebuild GLib with debugging info and tack it on Inkscape:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11193 guix-git/doc/guix.texi:37913 +#: guix-git/doc/guix.texi:11507 guix-git/doc/guix.texi:38402 #, no-wrap msgid "guix install inkscape --with-debug-info=glib\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11197 +#: guix-git/doc/guix.texi:11511 msgid "Only GLib needs to be recompiled so this takes a reasonable amount of time. @xref{Installing Debugging Files}, for more info." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11203 +#: guix-git/doc/guix.texi:11517 msgid "Under the hood, this option works by passing the @samp{#:strip-binaries? #f} to the build system of the package of interest (@pxref{Build Systems}). Most build systems support that option but some do not. In that case, an error is raised." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11207 +#: guix-git/doc/guix.texi:11521 msgid "Likewise, if a C/C++ package is built without @code{-g} (which is rarely the case), debugging info will remain unavailable even when @code{#:strip-binaries?} is false." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11209 +#: guix-git/doc/guix.texi:11523 #, no-wrap msgid "tool chain, changing the build tool chain of a package" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11210 +#: guix-git/doc/guix.texi:11524 #, no-wrap msgid "--with-c-toolchain=@var{package}=@var{toolchain}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11214 +#: guix-git/doc/guix.texi:11528 msgid "This option changes the compilation of @var{package} and everything that depends on it so that they get built with @var{toolchain} instead of the default GNU tool chain for C/C++." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11221 +#: guix-git/doc/guix.texi:11535 #, no-wrap msgid "" "guix build octave-cli \\\n" @@ -20611,17 +21154,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11228 +#: guix-git/doc/guix.texi:11542 msgid "The command above builds a variant of the @code{fftw} and @code{fftwf} packages using version 10 of @code{gcc-toolchain} instead of the default tool chain, and then builds a variant of the GNU@tie{}Octave command-line interface using them. GNU@tie{}Octave itself is also built with @code{gcc-toolchain@@10}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11232 +#: guix-git/doc/guix.texi:11546 msgid "This other example builds the Hardware Locality (@code{hwloc}) library and its dependents up to @code{intel-mpi-benchmarks} with the Clang C compiler:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11236 +#: guix-git/doc/guix.texi:11550 #, no-wrap msgid "" "guix build --with-c-toolchain=hwloc=clang-toolchain \\\n" @@ -20629,40 +21172,40 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11245 +#: guix-git/doc/guix.texi:11559 msgid "There can be application binary interface (ABI) incompatibilities among tool chains. This is particularly true of the C++ standard library and run-time support libraries such as that of OpenMP@. By rebuilding all dependents with the same tool chain, @option{--with-c-toolchain} minimizes the risks of incompatibility but cannot entirely eliminate them. Choose @var{package} wisely." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11247 +#: guix-git/doc/guix.texi:11561 #, no-wrap msgid "--with-git-url=@var{package}=@var{url}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11248 +#: guix-git/doc/guix.texi:11562 #, no-wrap msgid "Git, using the latest commit" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11249 +#: guix-git/doc/guix.texi:11563 #, no-wrap msgid "latest commit, building" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11253 +#: guix-git/doc/guix.texi:11567 msgid "Build @var{package} from the latest commit of the @code{master} branch of the Git repository at @var{url}. Git sub-modules of the repository are fetched, recursively." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11256 +#: guix-git/doc/guix.texi:11570 msgid "For example, the following command builds the NumPy Python library against the latest commit of the master branch of Python itself:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11260 +#: guix-git/doc/guix.texi:11574 #, no-wrap msgid "" "guix build python-numpy \\\n" @@ -20670,318 +21213,318 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11264 +#: guix-git/doc/guix.texi:11578 msgid "This option can also be combined with @option{--with-branch} or @option{--with-commit} (see below)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11265 guix-git/doc/guix.texi:28957 +#: guix-git/doc/guix.texi:11579 guix-git/doc/guix.texi:29294 #, no-wrap msgid "continuous integration" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11271 +#: guix-git/doc/guix.texi:11585 msgid "Obviously, since it uses the latest commit of the given branch, the result of such a command varies over time. Nevertheless it is a convenient way to rebuild entire software stacks against the latest commit of one or more packages. This is particularly useful in the context of continuous integration (CI)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11275 +#: guix-git/doc/guix.texi:11589 msgid "Checkouts are kept in a cache under @file{~/.cache/guix/checkouts} to speed up consecutive accesses to the same repository. You may want to clean it up once in a while to save disk space." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11276 +#: guix-git/doc/guix.texi:11590 #, no-wrap msgid "--with-branch=@var{package}=@var{branch}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11282 +#: guix-git/doc/guix.texi:11596 msgid "Build @var{package} from the latest commit of @var{branch}. If the @code{source} field of @var{package} is an origin with the @code{git-fetch} method (@pxref{origin Reference}) or a @code{git-checkout} object, the repository URL is taken from that @code{source}. Otherwise you have to use @option{--with-git-url} to specify the URL of the Git repository." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11287 +#: guix-git/doc/guix.texi:11601 msgid "For instance, the following command builds @code{guile-sqlite3} from the latest commit of its @code{master} branch, and then builds @code{guix} (which depends on it) and @code{cuirass} (which depends on @code{guix}) against this specific @code{guile-sqlite3} build:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11290 +#: guix-git/doc/guix.texi:11604 #, no-wrap msgid "guix build --with-branch=guile-sqlite3=master cuirass\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11292 +#: guix-git/doc/guix.texi:11606 #, no-wrap msgid "--with-commit=@var{package}=@var{commit}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11297 +#: guix-git/doc/guix.texi:11611 msgid "This is similar to @option{--with-branch}, except that it builds from @var{commit} rather than the tip of a branch. @var{commit} must be a valid Git commit SHA1 identifier, a tag, or a @command{git describe} style identifier such as @code{1.0-3-gabc123}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11298 +#: guix-git/doc/guix.texi:11612 #, no-wrap msgid "--with-patch=@var{package}=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11305 +#: guix-git/doc/guix.texi:11619 msgid "Add @var{file} to the list of patches applied to @var{package}, where @var{package} is a spec such as @code{python@@3.8} or @code{glibc}. @var{file} must contain a patch; it is applied with the flags specified in the @code{origin} of @var{package} (@pxref{origin Reference}), which by default includes @code{-p1} (@pxref{patch Directories,,, diffutils, Comparing and Merging Files})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11308 +#: guix-git/doc/guix.texi:11622 msgid "As an example, the command below rebuilds Coreutils with the GNU C Library (glibc) patched with the given patch:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11311 +#: guix-git/doc/guix.texi:11625 #, no-wrap msgid "guix build coreutils --with-patch=glibc=./glibc-frob.patch\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11315 +#: guix-git/doc/guix.texi:11629 msgid "In this example, glibc itself as well as everything that leads to Coreutils in the dependency graph is rebuilt." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11316 +#: guix-git/doc/guix.texi:11630 #, fuzzy, no-wrap msgid "upstream, latest version" msgstr "软件包版本" #. type: item -#: guix-git/doc/guix.texi:11317 +#: guix-git/doc/guix.texi:11631 #, fuzzy, no-wrap msgid "--with-latest=@var{package}" msgstr "--log-compression=@var{type}" #. type: table -#: guix-git/doc/guix.texi:11322 +#: guix-git/doc/guix.texi:11636 msgid "So you like living on the bleeding edge? This option is for you! It replaces occurrences of @var{package} in the dependency graph with its latest upstream version, as reported by @command{guix refresh} (@pxref{Invoking guix refresh})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11326 +#: guix-git/doc/guix.texi:11640 msgid "It does so by determining the latest upstream release of @var{package} (if possible), downloading it, and authenticating it @emph{if} it comes with an OpenPGP signature." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11329 +#: guix-git/doc/guix.texi:11643 msgid "As an example, the command below builds Guix against the latest version of Guile-JSON:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11332 +#: guix-git/doc/guix.texi:11646 #, no-wrap msgid "guix build guix --with-latest=guile-json\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11341 +#: guix-git/doc/guix.texi:11655 msgid "There are limitations. First, in cases where the tool cannot or does not know how to authenticate source code, you are at risk of running malicious code; a warning is emitted in this case. Second, this option simply changes the source used in the existing package definitions, which is not always sufficient: there might be additional dependencies that need to be added, patches to apply, and more generally the quality assurance work that Guix developers normally do will be missing." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11346 +#: guix-git/doc/guix.texi:11660 msgid "You've been warned! In all the other cases, it's a snappy way to stay on top. We encourage you to submit patches updating the actual package definitions once you have successfully tested an upgrade (@pxref{Contributing})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11347 +#: guix-git/doc/guix.texi:11661 #, fuzzy, no-wrap msgid "test suite, skipping" msgstr "测试套件" #. type: item -#: guix-git/doc/guix.texi:11348 +#: guix-git/doc/guix.texi:11662 #, no-wrap msgid "--without-tests=@var{package}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11354 +#: guix-git/doc/guix.texi:11668 msgid "Build @var{package} without running its tests. This can be useful in situations where you want to skip the lengthy test suite of a intermediate package, or if a package's test suite fails in a non-deterministic fashion. It should be used with care because running the test suite is a good way to ensure a package is working as intended." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11358 +#: guix-git/doc/guix.texi:11672 msgid "Turning off tests leads to a different store item. Consequently, when using this option, anything that depends on @var{package} must be rebuilt, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11361 +#: guix-git/doc/guix.texi:11675 #, no-wrap msgid "guix install --without-tests=python python-notebook\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11367 +#: guix-git/doc/guix.texi:11681 msgid "The command above installs @code{python-notebook} on top of @code{python} built without running its test suite. To do so, it also rebuilds everything that depends on @code{python}, including @code{python-notebook} itself." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11373 +#: guix-git/doc/guix.texi:11687 msgid "Internally, @option{--without-tests} relies on changing the @code{#:tests?} option of a package's @code{check} phase (@pxref{Build Systems}). Note that some packages use a customized @code{check} phase that does not respect a @code{#:tests? #f} setting. Therefore, @option{--without-tests} has no effect on these packages." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11380 +#: guix-git/doc/guix.texi:11694 msgid "Wondering how to achieve the same effect using Scheme code, for example in your manifest, or how to write your own package transformation? @xref{Defining Package Variants}, for an overview of the programming interfaces available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11386 +#: guix-git/doc/guix.texi:11700 msgid "The command-line options presented below are specific to @command{guix build}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11389 +#: guix-git/doc/guix.texi:11703 #, no-wrap msgid "--quiet" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11394 +#: guix-git/doc/guix.texi:11708 msgid "Build quietly, without displaying the build log; this is equivalent to @option{--verbosity=0}. Upon completion, the build log is kept in @file{/var} (or similar) and can always be retrieved using the @option{--log-file} option." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11399 +#: guix-git/doc/guix.texi:11713 msgid "Build the package, derivation, or other file-like object that the code within @var{file} evaluates to (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11402 +#: guix-git/doc/guix.texi:11716 msgid "As an example, @var{file} might contain a package definition like this (@pxref{Defining Packages}):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11411 +#: guix-git/doc/guix.texi:11725 msgid "The @var{file} may also contain a JSON representation of one or more package definitions. Running @code{guix build -f} on @file{hello.json} with the following contents would result in building the packages @code{myhello} and @code{greeter}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11416 +#: guix-git/doc/guix.texi:11730 #, fuzzy, no-wrap msgid "--manifest=@var{manifest}" msgstr "--listen=@var{endpoint}" #. type: itemx -#: guix-git/doc/guix.texi:11417 +#: guix-git/doc/guix.texi:11731 #, fuzzy, no-wrap msgid "-m @var{manifest}" msgstr "-c @var{n}" #. type: table -#: guix-git/doc/guix.texi:11420 +#: guix-git/doc/guix.texi:11734 msgid "Build all packages listed in the given @var{manifest} (@pxref{profile-manifest, @option{--manifest}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11424 +#: guix-git/doc/guix.texi:11738 msgid "Build the package or derivation @var{expr} evaluates to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11428 +#: guix-git/doc/guix.texi:11742 msgid "For example, @var{expr} may be @code{(@@ (gnu packages guile) guile-1.8)}, which unambiguously designates this specific variant of version 1.8 of Guile." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11432 +#: guix-git/doc/guix.texi:11746 msgid "Alternatively, @var{expr} may be a G-expression, in which case it is used as a build program passed to @code{gexp->derivation} (@pxref{G-Expressions})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11436 +#: guix-git/doc/guix.texi:11750 msgid "Lastly, @var{expr} may refer to a zero-argument monadic procedure (@pxref{The Store Monad}). The procedure must return a derivation as a monadic value, which is then passed through @code{run-with-store}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11437 +#: guix-git/doc/guix.texi:11751 #, no-wrap msgid "--source" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11438 guix-git/doc/guix.texi:11835 +#: guix-git/doc/guix.texi:11752 #, no-wrap msgid "-S" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11441 +#: guix-git/doc/guix.texi:11755 msgid "Build the source derivations of the packages, rather than the packages themselves." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11445 +#: guix-git/doc/guix.texi:11759 msgid "For instance, @code{guix build -S gcc} returns something like @file{/gnu/store/@dots{}-gcc-4.7.2.tar.bz2}, which is the GCC source tarball." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11449 +#: guix-git/doc/guix.texi:11763 msgid "The returned source tarball is the result of applying any patches and code snippets specified in the package @code{origin} (@pxref{Defining Packages})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11450 +#: guix-git/doc/guix.texi:11764 #, no-wrap msgid "source, verification" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11456 +#: guix-git/doc/guix.texi:11770 msgid "As with other derivations, the result of building a source derivation can be verified using the @option{--check} option (@pxref{build-check}). This is useful to validate that a (potentially already built or substituted, thus cached) package source matches against its declared hash." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11461 +#: guix-git/doc/guix.texi:11775 msgid "Note that @command{guix build -S} compiles the sources only of the specified packages. They do not include the sources of statically linked dependencies and by themselves are insufficient for reproducing the packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11462 +#: guix-git/doc/guix.texi:11776 #, no-wrap msgid "--sources" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11469 +#: guix-git/doc/guix.texi:11783 msgid "Fetch and return the source of @var{package-or-derivation} and all their dependencies, recursively. This is a handy way to obtain a local copy of all the source code needed to build @var{packages}, allowing you to eventually build them even without network access. It is an extension of the @option{--source} option and can accept one of the following optional argument values:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11471 guix-git/doc/guix.texi:13252 +#: guix-git/doc/guix.texi:11785 guix-git/doc/guix.texi:13609 #, no-wrap msgid "package" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11474 +#: guix-git/doc/guix.texi:11788 msgid "This value causes the @option{--sources} option to behave in the same way as the @option{--source} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11475 guix-git/doc/guix.texi:19682 +#: guix-git/doc/guix.texi:11789 guix-git/doc/guix.texi:20044 #, no-wrap msgid "all" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11478 +#: guix-git/doc/guix.texi:11792 msgid "Build the source derivations of all packages, including any source that might be listed as @code{inputs}. This is the default value." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11484 +#: guix-git/doc/guix.texi:11798 #, no-wrap msgid "" "$ guix build --sources tzdata\n" @@ -20991,18 +21534,18 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11486 +#: guix-git/doc/guix.texi:11800 #, no-wrap msgid "transitive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11490 +#: guix-git/doc/guix.texi:11804 msgid "Build the source derivations of all packages, as well of all transitive inputs to the packages. This can be used e.g.@: to prefetch package source for later offline building." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11501 +#: guix-git/doc/guix.texi:11815 #, no-wrap msgid "" "$ guix build --sources=transitive tzdata\n" @@ -21017,146 +21560,146 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11511 +#: guix-git/doc/guix.texi:11825 msgid "Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of the system type of the build host. The @command{guix build} command allows you to repeat this option several times, in which case it builds for all the specified systems; other commands ignore extraneous @option{-s} options." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11516 +#: guix-git/doc/guix.texi:11830 msgid "The @option{--system} flag is for @emph{native} compilation and must not be confused with cross-compilation. See @option{--target} below for information on cross-compilation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11523 +#: guix-git/doc/guix.texi:11837 msgid "An example use of this is on Linux-based systems, which can emulate different personalities. For instance, passing @option{--system=i686-linux} on an @code{x86_64-linux} system or @option{--system=armhf-linux} on an @code{aarch64-linux} system allows you to build packages in a complete 32-bit environment." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:11528 +#: guix-git/doc/guix.texi:11842 msgid "Building for an @code{armhf-linux} system is unconditionally enabled on @code{aarch64-linux} machines, although certain aarch64 chipsets do not allow for this functionality, notably the ThunderX." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11534 +#: guix-git/doc/guix.texi:11848 msgid "Similarly, when transparent emulation with QEMU and @code{binfmt_misc} is enabled (@pxref{Virtualization Services, @code{qemu-binfmt-service-type}}), you can build for any system for which a QEMU @code{binfmt_misc} handler is installed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11538 +#: guix-git/doc/guix.texi:11852 msgid "Builds for a system other than that of the machine you are using can also be offloaded to a remote machine of the right architecture. @xref{Daemon Offload Setup}, for more information on offloading." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11544 +#: guix-git/doc/guix.texi:11858 msgid "Cross-build for @var{triplet}, which must be a valid GNU triplet, such as @code{\"aarch64-linux-gnu\"} (@pxref{Specifying Target Triplets, GNU configuration triplets,, autoconf, Autoconf})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:11546 +#: guix-git/doc/guix.texi:11860 msgid "build-check" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11547 +#: guix-git/doc/guix.texi:11861 #, no-wrap msgid "determinism, checking" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11548 +#: guix-git/doc/guix.texi:11862 #, no-wrap msgid "reproducibility, checking" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11552 +#: guix-git/doc/guix.texi:11866 msgid "Rebuild @var{package-or-derivation}, which are already available in the store, and raise an error if the build results are not bit-for-bit identical." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11557 +#: guix-git/doc/guix.texi:11871 msgid "This mechanism allows you to check whether previously installed substitutes are genuine (@pxref{Substitutes}), or whether the build result of a package is deterministic. @xref{Invoking guix challenge}, for more background information and tools." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11562 +#: guix-git/doc/guix.texi:11876 #, no-wrap msgid "--repair" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11563 +#: guix-git/doc/guix.texi:11877 #, no-wrap msgid "repairing store items" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11567 +#: guix-git/doc/guix.texi:11881 msgid "Attempt to repair the specified store items, if they are corrupt, by re-downloading or rebuilding them." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11569 +#: guix-git/doc/guix.texi:11883 msgid "This operation is not atomic and thus restricted to @code{root}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11570 +#: guix-git/doc/guix.texi:11884 #, no-wrap msgid "--derivations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11574 +#: guix-git/doc/guix.texi:11888 msgid "Return the derivation paths, not the output paths, of the given packages." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11577 +#: guix-git/doc/guix.texi:11891 #, no-wrap msgid "GC roots, adding" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11578 +#: guix-git/doc/guix.texi:11892 #, no-wrap msgid "garbage collector roots, adding" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11581 guix-git/doc/guix.texi:35312 +#: guix-git/doc/guix.texi:11895 guix-git/doc/guix.texi:35756 msgid "Make @var{file} a symlink to the result, and register it as a garbage collector root." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11587 +#: guix-git/doc/guix.texi:11901 msgid "Consequently, the results of this @command{guix build} invocation are protected from garbage collection until @var{file} is removed. When that option is omitted, build results are eligible for garbage collection as soon as the build completes. @xref{Invoking guix gc}, for more on GC roots." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11588 +#: guix-git/doc/guix.texi:11902 #, no-wrap msgid "--log-file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11589 +#: guix-git/doc/guix.texi:11903 #, no-wrap msgid "build logs, access" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11593 +#: guix-git/doc/guix.texi:11907 msgid "Return the build log file names or URLs for the given @var{package-or-derivation}, or raise an error if build logs are missing." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11596 +#: guix-git/doc/guix.texi:11910 msgid "This works regardless of how packages or derivations are specified. For instance, the following invocations are equivalent:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11602 +#: guix-git/doc/guix.texi:11916 #, no-wrap msgid "" "guix build --log-file $(guix build -d guile)\n" @@ -21166,17 +21709,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11607 +#: guix-git/doc/guix.texi:11921 msgid "If a log is unavailable locally, and unless @option{--no-substitutes} is passed, the command looks for a corresponding log on one of the substitute servers (as specified with @option{--substitute-urls})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11610 +#: guix-git/doc/guix.texi:11924 msgid "So for instance, imagine you want to see the build log of GDB on MIPS, but you are actually on an @code{x86_64} machine:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11614 +#: guix-git/doc/guix.texi:11928 #, no-wrap msgid "" "$ guix build --log-file gdb -s aarch64-linux\n" @@ -21184,33 +21727,33 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11617 +#: guix-git/doc/guix.texi:11931 msgid "You can freely access a huge library of build logs!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11622 +#: guix-git/doc/guix.texi:11936 #, no-wrap msgid "build failures, debugging" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11628 +#: guix-git/doc/guix.texi:11942 msgid "When defining a new package (@pxref{Defining Packages}), you will probably find yourself spending some time debugging and tweaking the build until it succeeds. To do that, you need to operate the build commands yourself in an environment as close as possible to the one the build daemon uses." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11633 +#: guix-git/doc/guix.texi:11947 msgid "To that end, the first thing to do is to use the @option{--keep-failed} or @option{-K} option of @command{guix build}, which will keep the failed build tree in @file{/tmp} or whatever directory you specified as @env{TMPDIR} (@pxref{Common Build Options, @option{--keep-failed}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11639 +#: guix-git/doc/guix.texi:11953 msgid "From there on, you can @command{cd} to the failed build tree and source the @file{environment-variables} file, which contains all the environment variable definitions that were in place when the build failed. So let's say you're debugging a build failure in package @code{foo}; a typical session would look like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11646 +#: guix-git/doc/guix.texi:11960 #, no-wrap msgid "" "$ guix build foo -K\n" @@ -21221,22 +21764,22 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11650 +#: guix-git/doc/guix.texi:11964 msgid "Now, you can invoke commands as if you were the daemon (almost) and troubleshoot your build process." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11656 +#: guix-git/doc/guix.texi:11970 msgid "Sometimes it happens that, for example, a package's tests pass when you run them manually but they fail when the daemon runs them. This can happen because the daemon runs builds in containers where, unlike in our environment above, network access is missing, @file{/bin/sh} does not exist, etc. (@pxref{Build Environment Setup})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11659 +#: guix-git/doc/guix.texi:11973 msgid "In such cases, you may need to run inspect the build process from within a container similar to the one the build daemon creates:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11667 +#: guix-git/doc/guix.texi:11981 #, no-wrap msgid "" "$ guix build -K foo\n" @@ -21248,708 +21791,715 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11676 +#: guix-git/doc/guix.texi:11990 msgid "Here, @command{guix shell -C} creates a container and spawns a new shell in it (@pxref{Invoking guix shell}). The @command{strace gdb} part adds the @command{strace} and @command{gdb} commands to the container, which you may find handy while debugging. The @option{--no-grafts} option makes sure we get the exact same environment, with ungrafted packages (@pxref{Security Updates}, for more info on grafts)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11679 +#: guix-git/doc/guix.texi:11993 msgid "To get closer to a container like that used by the build daemon, we can remove @file{/bin/sh}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11682 +#: guix-git/doc/guix.texi:11996 #, no-wrap msgid "[env]# rm /bin/sh\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11686 +#: guix-git/doc/guix.texi:12000 msgid "(Don't worry, this is harmless: this is all happening in the throw-away container created by @command{guix shell}.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11689 +#: guix-git/doc/guix.texi:12003 msgid "The @command{strace} command is probably not in the search path, but we can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11692 +#: guix-git/doc/guix.texi:12006 #, no-wrap msgid "[env]# $GUIX_ENVIRONMENT/bin/strace -f -o log make check\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11697 +#: guix-git/doc/guix.texi:12011 msgid "In this way, not only you will have reproduced the environment variables the daemon uses, you will also be running the build process in a container similar to the one the daemon uses." msgstr "" #. type: section -#: guix-git/doc/guix.texi:11700 +#: guix-git/doc/guix.texi:12014 #, no-wrap msgid "Invoking @command{guix edit}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:11702 +#: guix-git/doc/guix.texi:12016 #, no-wrap msgid "guix edit" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11703 +#: guix-git/doc/guix.texi:12017 #, no-wrap msgid "package definition, editing" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11708 +#: guix-git/doc/guix.texi:12022 msgid "So many packages, so many source files! The @command{guix edit} command facilitates the life of users and packagers by pointing their editor at the source file containing the definition of the specified packages. For instance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11711 +#: guix-git/doc/guix.texi:12025 #, no-wrap msgid "guix edit gcc@@4.9 vim\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11717 +#: guix-git/doc/guix.texi:12031 msgid "launches the program specified in the @env{VISUAL} or in the @env{EDITOR} environment variable to view the recipe of GCC@tie{}4.9.3 and that of Vim." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11723 +#: guix-git/doc/guix.texi:12037 msgid "If you are using a Guix Git checkout (@pxref{Building from Git}), or have created your own packages on @env{GUIX_PACKAGE_PATH} (@pxref{Package Modules}), you will be able to edit the package recipes. In other cases, you will be able to examine the read-only recipes for packages currently in the store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11728 +#: guix-git/doc/guix.texi:12042 msgid "Instead of @env{GUIX_PACKAGE_PATH}, the command-line option @option{--load-path=@var{directory}} (or in short @option{-L @var{directory}}) allows you to add @var{directory} to the front of the package module search path and so make your own packages visible." msgstr "" #. type: section -#: guix-git/doc/guix.texi:11730 +#: guix-git/doc/guix.texi:12044 #, no-wrap msgid "Invoking @command{guix download}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:11732 +#: guix-git/doc/guix.texi:12046 #, no-wrap msgid "guix download" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11733 +#: guix-git/doc/guix.texi:12047 #, no-wrap msgid "downloading package sources" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11740 +#: guix-git/doc/guix.texi:12054 msgid "When writing a package definition, developers typically need to download a source tarball, compute its SHA256 hash, and write that hash in the package definition (@pxref{Defining Packages}). The @command{guix download} tool helps with this task: it downloads a file from the given URI, adds it to the store, and prints both its file name in the store and its SHA256 hash." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11747 +#: guix-git/doc/guix.texi:12061 msgid "The fact that the downloaded file is added to the store saves bandwidth: when the developer eventually tries to build the newly defined package with @command{guix build}, the source tarball will not have to be downloaded again because it is already in the store. It is also a convenient way to temporarily stash files, which may be deleted eventually (@pxref{Invoking guix gc})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11755 +#: guix-git/doc/guix.texi:12069 msgid "The @command{guix download} command supports the same URIs as used in package definitions. In particular, it supports @code{mirror://} URIs. @code{https} URIs (HTTP over TLS) are supported @emph{provided} the Guile bindings for GnuTLS are available in the user's environment; when they are not available, an error is raised. @xref{Guile Preparations, how to install the GnuTLS bindings for Guile,, gnutls-guile, GnuTLS-Guile}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11760 +#: guix-git/doc/guix.texi:12074 msgid "@command{guix download} verifies HTTPS server certificates by loading the certificates of X.509 authorities from the directory pointed to by the @env{SSL_CERT_DIR} environment variable (@pxref{X.509 Certificates}), unless @option{--no-check-certificate} is used." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11762 guix-git/doc/guix.texi:13565 +#: guix-git/doc/guix.texi:12076 guix-git/doc/guix.texi:13922 msgid "The following options are available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11764 guix-git/doc/guix.texi:11808 +#: guix-git/doc/guix.texi:12078 guix-git/doc/guix.texi:12122 #, no-wrap msgid "--hash=@var{algorithm}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11765 guix-git/doc/guix.texi:11809 +#: guix-git/doc/guix.texi:12079 guix-git/doc/guix.texi:12123 #, no-wrap msgid "-H @var{algorithm}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11768 +#: guix-git/doc/guix.texi:12082 msgid "Compute a hash using the specified @var{algorithm}. @xref{Invoking guix hash}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11769 guix-git/doc/guix.texi:11818 +#: guix-git/doc/guix.texi:12083 guix-git/doc/guix.texi:12132 #, no-wrap msgid "--format=@var{fmt}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11770 guix-git/doc/guix.texi:11819 +#: guix-git/doc/guix.texi:12084 guix-git/doc/guix.texi:12133 #, no-wrap msgid "-f @var{fmt}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11773 +#: guix-git/doc/guix.texi:12087 msgid "Write the hash in the format specified by @var{fmt}. For more information on the valid values for @var{fmt}, @pxref{Invoking guix hash}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11774 +#: guix-git/doc/guix.texi:12088 #, no-wrap msgid "--no-check-certificate" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11776 +#: guix-git/doc/guix.texi:12090 msgid "Do not validate the X.509 certificates of HTTPS servers." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11780 +#: guix-git/doc/guix.texi:12094 msgid "When using this option, you have @emph{absolutely no guarantee} that you are communicating with the authentic server responsible for the given URL, which makes you vulnerable to ``man-in-the-middle'' attacks." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11781 +#: guix-git/doc/guix.texi:12095 #, no-wrap msgid "--output=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11782 +#: guix-git/doc/guix.texi:12096 #, no-wrap msgid "-o @var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11785 +#: guix-git/doc/guix.texi:12099 msgid "Save the downloaded file to @var{file} instead of adding it to the store." msgstr "" #. type: section -#: guix-git/doc/guix.texi:11788 +#: guix-git/doc/guix.texi:12102 #, no-wrap msgid "Invoking @command{guix hash}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:11790 +#: guix-git/doc/guix.texi:12104 #, no-wrap msgid "guix hash" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11795 +#: guix-git/doc/guix.texi:12109 msgid "The @command{guix hash} command computes the hash of a file. It is primarily a convenience tool for anyone contributing to the distribution: it computes the cryptographic hash of one or more files, which can be used in the definition of a package (@pxref{Defining Packages})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11800 +#: guix-git/doc/guix.texi:12114 #, fuzzy, no-wrap msgid "guix hash @var{option} @var{file} ...\n" msgstr "guix install emacs-guix\n" #. type: Plain text -#: guix-git/doc/guix.texi:11805 +#: guix-git/doc/guix.texi:12119 msgid "When @var{file} is @code{-} (a hyphen), @command{guix hash} computes the hash of data read from standard input. @command{guix hash} has the following options:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11812 +#: guix-git/doc/guix.texi:12126 msgid "Compute a hash using the specified @var{algorithm}, @code{sha256} by default." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11817 -msgid "@var{algorithm} must the name of a cryptographic hash algorithm supported by Libgcrypt @i{via} Guile-Gcrypt---e.g., @code{sha512} or @code{sha3-256} (@pxref{Hash Functions,,, guile-gcrypt, Guile-Gcrypt Reference Manual})." +#: guix-git/doc/guix.texi:12131 +msgid "@var{algorithm} must be the name of a cryptographic hash algorithm supported by Libgcrypt @i{via} Guile-Gcrypt---e.g., @code{sha512} or @code{sha3-256} (@pxref{Hash Functions,,, guile-gcrypt, Guile-Gcrypt Reference Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11821 +#: guix-git/doc/guix.texi:12135 msgid "Write the hash in the format specified by @var{fmt}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11824 +#: guix-git/doc/guix.texi:12138 msgid "Supported formats: @code{base64}, @code{nix-base32}, @code{base32}, @code{base16} (@code{hex} and @code{hexadecimal} can be used as well)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11828 +#: guix-git/doc/guix.texi:12142 msgid "If the @option{--format} option is not specified, @command{guix hash} will output the hash in @code{nix-base32}. This representation is used in the definitions of packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11833 -msgid "This option is deprecated in favor of @option{--serializer}. It is a legacy alias for @var{type} sets to @code{nar}." +#: guix-git/doc/guix.texi:12148 +msgid "The @option{--recursive} option is deprecated in favor of @option{--serializer=nar} (see below); @option{-r} remains accepted as a convenient shorthand." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11834 +#: guix-git/doc/guix.texi:12149 #, fuzzy, no-wrap msgid "--serializer=@var{type}" msgstr "--log-compression=@var{type}" +#. type: itemx +#: guix-git/doc/guix.texi:12150 +#, fuzzy, no-wrap +#| msgid "-c @var{n}" +msgid "-S @var{type}" +msgstr "-c @var{n}" + #. type: table -#: guix-git/doc/guix.texi:11837 +#: guix-git/doc/guix.texi:12152 msgid "Compute the hash on @var{file} using @var{type} serialization." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11839 +#: guix-git/doc/guix.texi:12154 msgid "@var{type} may be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11841 guix-git/doc/guix.texi:13918 -#: guix-git/doc/guix.texi:17405 guix-git/doc/guix.texi:19679 +#: guix-git/doc/guix.texi:12156 guix-git/doc/guix.texi:14275 +#: guix-git/doc/guix.texi:17767 guix-git/doc/guix.texi:20041 #, no-wrap msgid "none" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11843 +#: guix-git/doc/guix.texi:12158 msgid "This is the default: it computes the hash of a file's contents." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11844 +#: guix-git/doc/guix.texi:12159 #, no-wrap msgid "nar" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11854 -msgid "Compute the hash of a ``normalized archive'' (or ``nar'') containing @var{file}, including its children if it is a directory. Some of the metadata of @var{file} is part of the archive; for instance, when @var{file} is a regular file, the hash is different depending on whether @var{file} is executable or not. Metadata such as time stamps has no impact on the hash (@pxref{Invoking guix archive}, for more info on the nar format)." +#: guix-git/doc/guix.texi:12169 +msgid "Compute the hash of a ``normalized archive'' (or ``nar'') containing @var{file}, including its children if it is a directory. Some of the metadata of @var{file} is part of the archive; for instance, when @var{file} is a regular file, the hash is different depending on whether @var{file} is executable or not. Metadata such as time stamps have no impact on the hash (@pxref{Invoking guix archive}, for more info on the nar format)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11855 +#: guix-git/doc/guix.texi:12170 #, no-wrap msgid "git" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11858 -msgid "Compute the has of the file or directory as a Git ``tree'', following the same method as the Git version control system." +#: guix-git/doc/guix.texi:12173 +msgid "Compute the hash of the file or directory as a Git ``tree'', following the same method as the Git version control system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11860 +#: guix-git/doc/guix.texi:12175 #, no-wrap msgid "--exclude-vcs" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:11861 guix-git/doc/guix.texi:13038 +#: guix-git/doc/guix.texi:12176 guix-git/doc/guix.texi:13395 #, no-wrap msgid "-x" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11864 +#: guix-git/doc/guix.texi:12179 msgid "When combined with @option{--recursive}, exclude version control system directories (@file{.bzr}, @file{.git}, @file{.hg}, etc.)." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:11865 +#: guix-git/doc/guix.texi:12180 #, no-wrap msgid "git-fetch" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11869 +#: guix-git/doc/guix.texi:12184 msgid "As an example, here is how you would compute the hash of a Git checkout, which is useful when using the @code{git-fetch} method (@pxref{origin Reference}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11874 +#: guix-git/doc/guix.texi:12189 #, no-wrap msgid "" "$ git clone http://example.org/foo.git\n" "$ cd foo\n" -"$ guix hash -rx .\n" +"$ guix hash -x --serializer=nar .\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11878 guix-git/doc/guix.texi:11883 +#: guix-git/doc/guix.texi:12193 guix-git/doc/guix.texi:12198 #, no-wrap msgid "Invoking @command{guix import}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11880 +#: guix-git/doc/guix.texi:12195 #, no-wrap msgid "importing packages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11881 +#: guix-git/doc/guix.texi:12196 #, no-wrap msgid "package import" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11882 +#: guix-git/doc/guix.texi:12197 #, no-wrap msgid "package conversion" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11890 +#: guix-git/doc/guix.texi:12205 msgid "The @command{guix import} command is useful for people who would like to add a package to the distribution with as little work as possible---a legitimate demand. The command knows of a few repositories from which it can ``import'' package metadata. The result is a package definition, or a template thereof, in the format we know (@pxref{Defining Packages})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:11895 +#: guix-git/doc/guix.texi:12210 #, no-wrap msgid "guix import @var{importer} @var{options}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11900 +#: guix-git/doc/guix.texi:12215 msgid "@var{importer} specifies the source from which to import package metadata, and @var{options} specifies a package identifier and other options specific to @var{importer}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11904 +#: guix-git/doc/guix.texi:12219 msgid "Some of the importers rely on the ability to run the @command{gpgv} command. For these, GnuPG must be installed and in @code{$PATH}; run @code{guix install gnupg} if needed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:11906 +#: guix-git/doc/guix.texi:12221 msgid "Currently, the available ``importers'' are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11908 guix-git/doc/guix.texi:12546 +#: guix-git/doc/guix.texi:12223 guix-git/doc/guix.texi:12861 #, no-wrap msgid "gnu" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11912 +#: guix-git/doc/guix.texi:12227 msgid "Import metadata for the given GNU package. This provides a template for the latest version of that GNU package, including the hash of its source tarball, and its canonical synopsis and description." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11915 +#: guix-git/doc/guix.texi:12230 msgid "Additional information such as the package dependencies and its license needs to be figured out manually." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11918 +#: guix-git/doc/guix.texi:12233 msgid "For example, the following command returns a package definition for GNU@tie{}Hello:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11921 +#: guix-git/doc/guix.texi:12236 #, no-wrap msgid "guix import gnu hello\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11924 guix-git/doc/guix.texi:12165 -#: guix-git/doc/guix.texi:12215 guix-git/doc/guix.texi:12244 +#: guix-git/doc/guix.texi:12239 guix-git/doc/guix.texi:12480 +#: guix-git/doc/guix.texi:12530 guix-git/doc/guix.texi:12559 msgid "Specific command-line options are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:11926 guix-git/doc/guix.texi:12743 +#: guix-git/doc/guix.texi:12241 guix-git/doc/guix.texi:13058 #, no-wrap msgid "--key-download=@var{policy}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11930 +#: guix-git/doc/guix.texi:12245 msgid "As for @command{guix refresh}, specify the policy to handle missing OpenPGP keys when verifying the package signature. @xref{Invoking guix refresh, @option{--key-download}}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11932 guix-git/doc/guix.texi:11933 -#: guix-git/doc/guix.texi:12570 +#: guix-git/doc/guix.texi:12247 guix-git/doc/guix.texi:12248 +#: guix-git/doc/guix.texi:12885 #, no-wrap msgid "pypi" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11940 +#: guix-git/doc/guix.texi:12255 msgid "Import metadata from the @uref{https://pypi.python.org/, Python Package Index}. Information is taken from the JSON-formatted description available at @code{pypi.python.org} and usually includes all the relevant information, including package dependencies. For maximum efficiency, it is recommended to install the @command{unzip} utility, so that the importer can unzip Python wheels and gather data from them." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11943 +#: guix-git/doc/guix.texi:12258 msgid "The command below imports metadata for the latest version of the @code{itsdangerous} Python package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11946 +#: guix-git/doc/guix.texi:12261 #, no-wrap msgid "guix import pypi itsdangerous\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11949 guix-git/doc/guix.texi:12052 -#: guix-git/doc/guix.texi:12393 +#: guix-git/doc/guix.texi:12264 guix-git/doc/guix.texi:12367 +#: guix-git/doc/guix.texi:12708 msgid "You can also ask for a specific version:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11952 +#: guix-git/doc/guix.texi:12267 #, no-wrap msgid "guix import pypi itsdangerous@@1.1.0\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11960 guix-git/doc/guix.texi:11985 -#: guix-git/doc/guix.texi:12017 guix-git/doc/guix.texi:12188 -#: guix-git/doc/guix.texi:12229 guix-git/doc/guix.texi:12280 -#: guix-git/doc/guix.texi:12305 guix-git/doc/guix.texi:12321 -#: guix-git/doc/guix.texi:12369 guix-git/doc/guix.texi:12405 +#: guix-git/doc/guix.texi:12275 guix-git/doc/guix.texi:12300 +#: guix-git/doc/guix.texi:12332 guix-git/doc/guix.texi:12503 +#: guix-git/doc/guix.texi:12544 guix-git/doc/guix.texi:12595 +#: guix-git/doc/guix.texi:12620 guix-git/doc/guix.texi:12636 +#: guix-git/doc/guix.texi:12684 guix-git/doc/guix.texi:12720 msgid "Traverse the dependency graph of the given upstream package recursively and generate package expressions for all those packages that are not yet in Guix." msgstr "" #. type: item -#: guix-git/doc/guix.texi:11962 guix-git/doc/guix.texi:11963 -#: guix-git/doc/guix.texi:12572 +#: guix-git/doc/guix.texi:12277 guix-git/doc/guix.texi:12278 +#: guix-git/doc/guix.texi:12887 #, no-wrap msgid "gem" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11972 +#: guix-git/doc/guix.texi:12287 msgid "Import metadata from @uref{https://rubygems.org/, RubyGems}. Information is taken from the JSON-formatted description available at @code{rubygems.org} and includes most relevant information, including runtime dependencies. There are some caveats, however. The metadata doesn't distinguish between synopses and descriptions, so the same string is used for both fields. Additionally, the details of non-Ruby dependencies required to build native extensions is unavailable and left as an exercise to the packager." msgstr "" #. type: table -#: guix-git/doc/guix.texi:11974 +#: guix-git/doc/guix.texi:12289 msgid "The command below imports metadata for the @code{rails} Ruby package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:11977 +#: guix-git/doc/guix.texi:12292 #, no-wrap msgid "guix import gem rails\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11987 guix-git/doc/guix.texi:11988 +#: guix-git/doc/guix.texi:12302 guix-git/doc/guix.texi:12303 #, no-wrap msgid "minetest" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:11989 +#: guix-git/doc/guix.texi:12304 #, no-wrap msgid "ContentDB" msgstr "" #. type: table -#: guix-git/doc/guix.texi:11998 +#: guix-git/doc/guix.texi:12313 msgid "Import metadata from @uref{https://content.minetest.net, ContentDB}. Information is taken from the JSON-formatted metadata provided through @uref{https://content.minetest.net/help/api/, ContentDB's API} and includes most relevant information, including dependencies. There are some caveats, however. The license information is often incomplete. The commit hash is sometimes missing. The descriptions are in the Markdown format, but Guix uses Texinfo instead. Texture packs and subgames are unsupported." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12000 +#: guix-git/doc/guix.texi:12315 msgid "The command below imports metadata for the Mesecons mod by Jeija:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12003 +#: guix-git/doc/guix.texi:12318 #, no-wrap msgid "guix import minetest Jeija/mesecons\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12006 +#: guix-git/doc/guix.texi:12321 msgid "The author name can also be left out:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12009 +#: guix-git/doc/guix.texi:12324 #, no-wrap msgid "guix import minetest mesecons\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12019 guix-git/doc/guix.texi:12568 +#: guix-git/doc/guix.texi:12334 guix-git/doc/guix.texi:12883 #, no-wrap msgid "cpan" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12020 +#: guix-git/doc/guix.texi:12335 #, no-wrap msgid "CPAN" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12028 +#: guix-git/doc/guix.texi:12343 msgid "Import metadata from @uref{https://www.metacpan.org/, MetaCPAN}. Information is taken from the JSON-formatted metadata provided through @uref{https://fastapi.metacpan.org/, MetaCPAN's API} and includes most relevant information, such as module dependencies. License information should be checked closely. If Perl is available in the store, then the @code{corelist} utility will be used to filter core modules out of the list of dependencies." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12031 +#: guix-git/doc/guix.texi:12346 msgid "The command command below imports metadata for the Acme::Boolean Perl module:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12034 +#: guix-git/doc/guix.texi:12349 #, no-wrap msgid "guix import cpan Acme::Boolean\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12036 guix-git/doc/guix.texi:12564 +#: guix-git/doc/guix.texi:12351 guix-git/doc/guix.texi:12879 #, no-wrap msgid "cran" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12037 +#: guix-git/doc/guix.texi:12352 #, no-wrap msgid "CRAN" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12038 +#: guix-git/doc/guix.texi:12353 #, no-wrap msgid "Bioconductor" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12042 +#: guix-git/doc/guix.texi:12357 msgid "Import metadata from @uref{https://cran.r-project.org/, CRAN}, the central repository for the @uref{https://r-project.org, GNU@tie{}R statistical and graphical environment}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12044 +#: guix-git/doc/guix.texi:12359 msgid "Information is extracted from the @file{DESCRIPTION} file of the package." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12046 +#: guix-git/doc/guix.texi:12361 msgid "The command command below imports metadata for the Cairo R package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12049 +#: guix-git/doc/guix.texi:12364 #, no-wrap msgid "guix import cran Cairo\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12055 +#: guix-git/doc/guix.texi:12370 #, no-wrap msgid "guix import cran rasterVis@@0.50.3\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12060 +#: guix-git/doc/guix.texi:12375 msgid "When @option{--recursive} is added, the importer will traverse the dependency graph of the given upstream package recursively and generate package expressions for all those packages that are not yet in Guix." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12067 +#: guix-git/doc/guix.texi:12382 msgid "When @option{--style=specification} is added, the importer will generate package definitions whose inputs are package specifications instead of references to package variables. This is useful when generated package definitions are to be appended to existing user modules, as the list of used package modules need not be changed. The default is @option{--style=variable}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12072 +#: guix-git/doc/guix.texi:12387 msgid "When @option{--archive=bioconductor} is added, metadata is imported from @uref{https://www.bioconductor.org/, Bioconductor}, a repository of R packages for the analysis and comprehension of high-throughput genomic data in bioinformatics." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12075 +#: guix-git/doc/guix.texi:12390 msgid "Information is extracted from the @file{DESCRIPTION} file contained in the package archive." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12077 +#: guix-git/doc/guix.texi:12392 msgid "The command below imports metadata for the GenomicRanges R package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12080 +#: guix-git/doc/guix.texi:12395 #, no-wrap msgid "guix import cran --archive=bioconductor GenomicRanges\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12085 +#: guix-git/doc/guix.texi:12400 msgid "Finally, you can also import R packages that have not yet been published on CRAN or Bioconductor as long as they are in a git repository. Use @option{--archive=git} followed by the URL of the git repository:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12088 +#: guix-git/doc/guix.texi:12403 #, no-wrap msgid "guix import cran --archive=git https://github.com/immunogenomics/harmony\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12090 +#: guix-git/doc/guix.texi:12405 #, no-wrap msgid "texlive" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12091 +#: guix-git/doc/guix.texi:12406 #, no-wrap msgid "TeX Live" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12092 +#: guix-git/doc/guix.texi:12407 #, no-wrap msgid "CTAN" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12096 +#: guix-git/doc/guix.texi:12411 msgid "Import TeX package information from the TeX Live package database for TeX packages that are part of the @uref{https://www.tug.org/texlive/, TeX Live distribution}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12101 +#: guix-git/doc/guix.texi:12416 msgid "Information about the package is obtained from the TeX Live package database, a plain text file that is included in the @code{texlive-bin} package. The source code is downloaded from possibly multiple locations in the SVN repository of the Tex Live project." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12104 +#: guix-git/doc/guix.texi:12419 msgid "The command command below imports metadata for the @code{fontspec} TeX package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12107 +#: guix-git/doc/guix.texi:12422 #, no-wrap msgid "guix import texlive fontspec\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12110 +#: guix-git/doc/guix.texi:12425 #, no-wrap msgid "JSON, import" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12113 +#: guix-git/doc/guix.texi:12428 msgid "Import package metadata from a local JSON file. Consider the following example package definition in JSON format:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12126 +#: guix-git/doc/guix.texi:12441 #, no-wrap msgid "" "@{\n" @@ -21966,17 +22516,17 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12132 +#: guix-git/doc/guix.texi:12447 msgid "The field names are the same as for the @code{} record (@xref{Defining Packages}). References to other packages are provided as JSON lists of quoted package specification strings such as @code{guile} or @code{guile@@2.0}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12135 +#: guix-git/doc/guix.texi:12450 msgid "The importer also supports a more explicit source definition using the common fields for @code{} records:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12148 +#: guix-git/doc/guix.texi:12463 #, no-wrap msgid "" "@{\n" @@ -21993,384 +22543,384 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12152 +#: guix-git/doc/guix.texi:12467 msgid "The command below reads metadata from the JSON file @code{hello.json} and outputs a package expression:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12155 +#: guix-git/doc/guix.texi:12470 #, no-wrap msgid "guix import json hello.json\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12157 guix-git/doc/guix.texi:12158 -#: guix-git/doc/guix.texi:12576 +#: guix-git/doc/guix.texi:12472 guix-git/doc/guix.texi:12473 +#: guix-git/doc/guix.texi:12891 #, no-wrap msgid "hackage" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12163 +#: guix-git/doc/guix.texi:12478 msgid "Import metadata from the Haskell community's central package archive @uref{https://hackage.haskell.org/, Hackage}. Information is taken from Cabal files and includes all the relevant information, including package dependencies." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12167 +#: guix-git/doc/guix.texi:12482 #, no-wrap msgid "--stdin" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12168 +#: guix-git/doc/guix.texi:12483 #, no-wrap msgid "-s" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12170 +#: guix-git/doc/guix.texi:12485 msgid "Read a Cabal file from standard input." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12170 guix-git/doc/guix.texi:12217 +#: guix-git/doc/guix.texi:12485 guix-git/doc/guix.texi:12532 #, no-wrap msgid "--no-test-dependencies" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12173 guix-git/doc/guix.texi:12220 +#: guix-git/doc/guix.texi:12488 guix-git/doc/guix.texi:12535 msgid "Do not include dependencies required only by the test suites." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12173 +#: guix-git/doc/guix.texi:12488 #, no-wrap msgid "--cabal-environment=@var{alist}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12174 +#: guix-git/doc/guix.texi:12489 #, no-wrap msgid "-e @var{alist}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12183 +#: guix-git/doc/guix.texi:12498 msgid "@var{alist} is a Scheme alist defining the environment in which the Cabal conditionals are evaluated. The accepted keys are: @code{os}, @code{arch}, @code{impl} and a string representing the name of a flag. The value associated with a flag has to be either the symbol @code{true} or @code{false}. The value associated with other keys has to conform to the Cabal file format definition. The default value associated with the keys @code{os}, @code{arch} and @code{impl} is @samp{linux}, @samp{x86_64} and @samp{ghc}, respectively." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12193 +#: guix-git/doc/guix.texi:12508 msgid "The command below imports metadata for the latest version of the HTTP Haskell package without including test dependencies and specifying the value of the flag @samp{network-uri} as @code{false}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12196 +#: guix-git/doc/guix.texi:12511 #, no-wrap msgid "guix import hackage -t -e \"'((\\\"network-uri\\\" . false))\" HTTP\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12200 +#: guix-git/doc/guix.texi:12515 msgid "A specific package version may optionally be specified by following the package name by an at-sign and a version number as in the following example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12203 +#: guix-git/doc/guix.texi:12518 #, no-wrap msgid "guix import hackage mtl@@2.1.3.1\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12205 guix-git/doc/guix.texi:12206 -#: guix-git/doc/guix.texi:12578 +#: guix-git/doc/guix.texi:12520 guix-git/doc/guix.texi:12521 +#: guix-git/doc/guix.texi:12893 #, no-wrap msgid "stackage" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12213 +#: guix-git/doc/guix.texi:12528 msgid "The @code{stackage} importer is a wrapper around the @code{hackage} one. It takes a package name, looks up the package version included in a long-term support (LTS) @uref{https://www.stackage.org, Stackage} release and uses the @code{hackage} importer to retrieve its metadata. Note that it is up to you to select an LTS release compatible with the GHC compiler used by Guix." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12220 +#: guix-git/doc/guix.texi:12535 #, no-wrap msgid "--lts-version=@var{version}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12221 +#: guix-git/doc/guix.texi:12536 #, no-wrap msgid "-l @var{version}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12224 +#: guix-git/doc/guix.texi:12539 msgid "@var{version} is the desired LTS release version. If omitted the latest release is used." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12233 +#: guix-git/doc/guix.texi:12548 msgid "The command below imports metadata for the HTTP Haskell package included in the LTS Stackage release version 7.18:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12236 +#: guix-git/doc/guix.texi:12551 #, no-wrap msgid "guix import stackage --lts-version=7.18 HTTP\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12238 guix-git/doc/guix.texi:12239 -#: guix-git/doc/guix.texi:12562 +#: guix-git/doc/guix.texi:12553 guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12877 #, no-wrap msgid "elpa" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12242 +#: guix-git/doc/guix.texi:12557 msgid "Import metadata from an Emacs Lisp Package Archive (ELPA) package repository (@pxref{Packages,,, emacs, The GNU Emacs Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12246 +#: guix-git/doc/guix.texi:12561 #, no-wrap msgid "--archive=@var{repo}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12247 +#: guix-git/doc/guix.texi:12562 #, no-wrap msgid "-a @var{repo}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12251 +#: guix-git/doc/guix.texi:12566 msgid "@var{repo} identifies the archive repository from which to retrieve the information. Currently the supported repositories and their identifiers are:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12255 +#: guix-git/doc/guix.texi:12570 msgid "@uref{https://elpa.gnu.org/packages, GNU}, selected by the @code{gnu} identifier. This is the default." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12261 +#: guix-git/doc/guix.texi:12576 msgid "Packages from @code{elpa.gnu.org} are signed with one of the keys contained in the GnuPG keyring at @file{share/emacs/25.1/etc/package-keyring.gpg} (or similar) in the @code{emacs} package (@pxref{Package Installation, ELPA package signatures,, emacs, The GNU Emacs Manual})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12265 +#: guix-git/doc/guix.texi:12580 msgid "@uref{https://elpa.nongnu.org/nongnu/, NonGNU}, selected by the @code{nongnu} identifier." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12269 +#: guix-git/doc/guix.texi:12584 msgid "@uref{https://stable.melpa.org/packages, MELPA-Stable}, selected by the @code{melpa-stable} identifier." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12273 +#: guix-git/doc/guix.texi:12588 msgid "@uref{https://melpa.org/packages, MELPA}, selected by the @code{melpa} identifier." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12282 guix-git/doc/guix.texi:12283 -#: guix-git/doc/guix.texi:12580 +#: guix-git/doc/guix.texi:12597 guix-git/doc/guix.texi:12598 +#: guix-git/doc/guix.texi:12895 #, no-wrap msgid "crate" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12286 +#: guix-git/doc/guix.texi:12601 msgid "Import metadata from the crates.io Rust package repository @uref{https://crates.io, crates.io}, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12289 +#: guix-git/doc/guix.texi:12604 #, no-wrap msgid "guix import crate blake2-rfc\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12292 +#: guix-git/doc/guix.texi:12607 msgid "The crate importer also allows you to specify a version string:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12295 +#: guix-git/doc/guix.texi:12610 #, no-wrap msgid "guix import crate constant-time-eq@@0.1.0\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12298 guix-git/doc/guix.texi:12314 -#: guix-git/doc/guix.texi:12362 guix-git/doc/guix.texi:12399 +#: guix-git/doc/guix.texi:12613 guix-git/doc/guix.texi:12629 +#: guix-git/doc/guix.texi:12677 guix-git/doc/guix.texi:12714 #, fuzzy msgid "Additional options include:" msgstr "额外的构建选项" #. type: item -#: guix-git/doc/guix.texi:12307 +#: guix-git/doc/guix.texi:12622 #, no-wrap msgid "opam" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12308 +#: guix-git/doc/guix.texi:12623 #, no-wrap msgid "OPAM" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12309 +#: guix-git/doc/guix.texi:12624 #, no-wrap msgid "OCaml" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12312 +#: guix-git/doc/guix.texi:12627 msgid "Import metadata from the @uref{https://opam.ocaml.org/, OPAM} package repository used by the OCaml community." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12321 +#: guix-git/doc/guix.texi:12636 #, no-wrap msgid "--repo" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12325 +#: guix-git/doc/guix.texi:12640 msgid "By default, packages are searched in the official OPAM repository. This option, which can be used more than once, lets you add other repositories which will be searched for packages. It accepts as valid arguments:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12327 +#: guix-git/doc/guix.texi:12642 #, no-wrap msgid "the name of a known repository - can be one of @code{opam}," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12330 +#: guix-git/doc/guix.texi:12645 msgid "@code{coq} (equivalent to @code{coq-released}), @code{coq-core-dev}, @code{coq-extra-dev} or @code{grew}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12330 +#: guix-git/doc/guix.texi:12645 #, no-wrap msgid "the URL of a repository as expected by the" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12334 +#: guix-git/doc/guix.texi:12649 msgid "@code{opam repository add} command (for instance, the URL equivalent of the above @code{opam} name would be @uref{https://opam.ocaml.org})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12334 +#: guix-git/doc/guix.texi:12649 #, no-wrap msgid "the path to a local copy of a repository (a directory containing a" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12336 +#: guix-git/doc/guix.texi:12651 #, fuzzy msgid "@file{packages/} sub-directory)." msgstr "软件包模块" #. type: table -#: guix-git/doc/guix.texi:12341 +#: guix-git/doc/guix.texi:12656 msgid "Repositories are assumed to be passed to this option by order of preference. The additional repositories will not replace the default @code{opam} repository, which is always kept as a fallback." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12346 +#: guix-git/doc/guix.texi:12661 msgid "Also, please note that versions are not compared across repositories. The first repository (from left to right) that has at least one version of a given package will prevail over any others, and the version imported will be the latest one found @emph{in this repository only}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12349 guix-git/doc/guix.texi:12350 +#: guix-git/doc/guix.texi:12664 guix-git/doc/guix.texi:12665 #, no-wrap msgid "go" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12353 +#: guix-git/doc/guix.texi:12668 msgid "Import metadata for a Go module using @uref{https://proxy.golang.org, proxy.golang.org}." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12356 +#: guix-git/doc/guix.texi:12671 #, no-wrap msgid "guix import go gopkg.in/yaml.v2\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12360 +#: guix-git/doc/guix.texi:12675 msgid "It is possible to use a package specification with a @code{@@VERSION} suffix to import a specific version." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12369 +#: guix-git/doc/guix.texi:12684 #, no-wrap msgid "--pin-versions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12377 +#: guix-git/doc/guix.texi:12692 msgid "When using this option, the importer preserves the exact versions of the Go modules dependencies instead of using their latest available versions. This can be useful when attempting to import packages that recursively depend on former versions of themselves to build. When using this mode, the symbol of the package is made by appending the version to its name, so that multiple versions of the same package can coexist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12379 guix-git/doc/guix.texi:12380 -#: guix-git/doc/guix.texi:12560 +#: guix-git/doc/guix.texi:12694 guix-git/doc/guix.texi:12695 +#: guix-git/doc/guix.texi:12875 #, no-wrap msgid "egg" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12387 +#: guix-git/doc/guix.texi:12702 msgid "Import metadata for @uref{https://wiki.call-cc.org/eggs, CHICKEN eggs}. The information is taken from @file{PACKAGE.egg} files found in the @uref{git://code.call-cc.org/eggs-5-all, eggs-5-all} Git repository. However, it does not provide all the information that we need, there is no ``description'' field, and the licenses used are not always precise (BSD is often used instead of BSD-N)." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12390 +#: guix-git/doc/guix.texi:12705 #, no-wrap msgid "guix import egg sourcehut\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12396 +#: guix-git/doc/guix.texi:12711 #, no-wrap msgid "guix import egg arrays@@1.0\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12411 +#: guix-git/doc/guix.texi:12726 msgid "The structure of the @command{guix import} code is modular. It would be useful to have more importers for other package formats, and your help is welcome here (@pxref{Contributing})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:12413 +#: guix-git/doc/guix.texi:12728 #, no-wrap msgid "Invoking @command{guix refresh}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:12415 +#: guix-git/doc/guix.texi:12730 #, no-wrap msgid "guix refresh" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12423 +#: guix-git/doc/guix.texi:12738 msgid "The primary audience of the @command{guix refresh} command is packagers. As a user, you may be interested in the @option{--with-latest} option, which can bring you package update superpowers built upon @command{guix refresh} (@pxref{Package Transformation Options, @option{--with-latest}}). By default, @command{guix refresh} reports any packages provided by the distribution that are outdated compared to the latest upstream version, like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12428 +#: guix-git/doc/guix.texi:12743 #, no-wrap msgid "" "$ guix refresh\n" @@ -22379,12 +22929,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12432 +#: guix-git/doc/guix.texi:12747 msgid "Alternatively, one can specify packages to consider, in which case a warning is emitted for packages that lack an updater:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12437 +#: guix-git/doc/guix.texi:12752 #, no-wrap msgid "" "$ guix refresh coreutils guile guile-ssh\n" @@ -22393,17 +22943,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12446 +#: guix-git/doc/guix.texi:12761 msgid "@command{guix refresh} browses the upstream repository of each package and determines the highest version number of the releases therein. The command knows how to update specific types of packages: GNU packages, ELPA packages, etc.---see the documentation for @option{--type} below. There are many packages, though, for which it lacks a method to determine whether a new upstream release is available. However, the mechanism is extensible, so feel free to get in touch with us to add a new method!" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12451 +#: guix-git/doc/guix.texi:12766 msgid "Consider the packages specified, and all the packages upon which they depend." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12459 +#: guix-git/doc/guix.texi:12774 #, no-wrap msgid "" "$ guix refresh --recursive coreutils\n" @@ -22415,12 +22965,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12467 +#: guix-git/doc/guix.texi:12782 msgid "Sometimes the upstream name differs from the package name used in Guix, and @command{guix refresh} needs a little help. Most updaters honor the @code{upstream-name} property in package definitions, which can be used to that effect:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12474 +#: guix-git/doc/guix.texi:12789 #, no-wrap msgid "" "(define-public network-manager\n" @@ -22431,326 +22981,326 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12483 +#: guix-git/doc/guix.texi:12798 msgid "When passed @option{--update}, it modifies distribution source files to update the version numbers and source tarball hashes of those package recipes (@pxref{Defining Packages}). This is achieved by downloading each package's latest source tarball and its associated OpenPGP signature, authenticating the downloaded tarball against its signature using @command{gpgv}, and finally computing its hash---note that GnuPG must be installed and in @code{$PATH}; run @code{guix install gnupg} if needed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12489 +#: guix-git/doc/guix.texi:12804 msgid "When the public key used to sign the tarball is missing from the user's keyring, an attempt is made to automatically retrieve it from a public key server; when this is successful, the key is added to the user's keyring; otherwise, @command{guix refresh} reports an error." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12491 +#: guix-git/doc/guix.texi:12806 msgid "The following options are supported:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12499 guix-git/doc/guix.texi:13447 +#: guix-git/doc/guix.texi:12814 guix-git/doc/guix.texi:13804 msgid "This is useful to precisely refer to a package, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12502 +#: guix-git/doc/guix.texi:12817 #, no-wrap msgid "guix refresh -l -e '(@@@@ (gnu packages commencement) glibc-final)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12506 +#: guix-git/doc/guix.texi:12821 msgid "This command lists the dependents of the ``final'' libc (essentially all the packages)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12507 +#: guix-git/doc/guix.texi:12822 #, no-wrap msgid "--update" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12508 +#: guix-git/doc/guix.texi:12823 #, no-wrap msgid "-u" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12512 +#: guix-git/doc/guix.texi:12827 msgid "Update distribution source files (package recipes) in place. This is usually run from a checkout of the Guix source tree (@pxref{Running Guix Before It Is Installed}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12515 +#: guix-git/doc/guix.texi:12830 #, no-wrap msgid "$ ./pre-inst-env guix refresh -s non-core -u\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12518 +#: guix-git/doc/guix.texi:12833 msgid "@xref{Defining Packages}, for more information on package definitions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12519 +#: guix-git/doc/guix.texi:12834 #, no-wrap msgid "--select=[@var{subset}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12520 +#: guix-git/doc/guix.texi:12835 #, no-wrap msgid "-s @var{subset}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12523 +#: guix-git/doc/guix.texi:12838 msgid "Select all the packages in @var{subset}, one of @code{core} or @code{non-core}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12530 +#: guix-git/doc/guix.texi:12845 msgid "The @code{core} subset refers to all the packages at the core of the distribution---i.e., packages that are used to build ``everything else''. This includes GCC, libc, Binutils, Bash, etc. Usually, changing one of these packages in the distribution entails a rebuild of all the others. Thus, such updates are an inconvenience to users in terms of build time or bandwidth used to achieve the upgrade." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12534 +#: guix-git/doc/guix.texi:12849 msgid "The @code{non-core} subset refers to the remaining packages. It is typically useful in cases where an update of the core packages would be inconvenient." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12539 +#: guix-git/doc/guix.texi:12854 msgid "Select all the packages from the manifest in @var{file}. This is useful to check if any packages of the user manifest can be updated." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12540 +#: guix-git/doc/guix.texi:12855 #, no-wrap msgid "--type=@var{updater}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12541 +#: guix-git/doc/guix.texi:12856 #, no-wrap msgid "-t @var{updater}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12544 +#: guix-git/doc/guix.texi:12859 msgid "Select only packages handled by @var{updater} (may be a comma-separated list of updaters). Currently, @var{updater} may be one of:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12548 +#: guix-git/doc/guix.texi:12863 msgid "the updater for GNU packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12548 +#: guix-git/doc/guix.texi:12863 #, no-wrap msgid "savannah" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12550 +#: guix-git/doc/guix.texi:12865 msgid "the updater for packages hosted at @uref{https://savannah.gnu.org, Savannah};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12550 +#: guix-git/doc/guix.texi:12865 #, no-wrap msgid "sourceforge" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12552 +#: guix-git/doc/guix.texi:12867 msgid "the updater for packages hosted at @uref{https://sourceforge.net, SourceForge};" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12552 +#: guix-git/doc/guix.texi:12867 #, no-wrap msgid "gnome" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12869 msgid "the updater for GNOME packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12554 +#: guix-git/doc/guix.texi:12869 #, no-wrap msgid "kde" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12556 +#: guix-git/doc/guix.texi:12871 msgid "the updater for KDE packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12556 +#: guix-git/doc/guix.texi:12871 #, no-wrap msgid "xorg" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12558 +#: guix-git/doc/guix.texi:12873 msgid "the updater for X.org packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12558 +#: guix-git/doc/guix.texi:12873 #, no-wrap msgid "kernel.org" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12560 +#: guix-git/doc/guix.texi:12875 msgid "the updater for packages hosted on kernel.org;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12562 +#: guix-git/doc/guix.texi:12877 msgid "the updater for @uref{https://wiki.call-cc.org/eggs/, Egg} packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12564 +#: guix-git/doc/guix.texi:12879 msgid "the updater for @uref{https://elpa.gnu.org/, ELPA} packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12566 +#: guix-git/doc/guix.texi:12881 msgid "the updater for @uref{https://cran.r-project.org/, CRAN} packages;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12566 +#: guix-git/doc/guix.texi:12881 #, no-wrap msgid "bioconductor" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12568 +#: guix-git/doc/guix.texi:12883 msgid "the updater for @uref{https://www.bioconductor.org/, Bioconductor} R packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12570 +#: guix-git/doc/guix.texi:12885 msgid "the updater for @uref{https://www.cpan.org/, CPAN} packages;" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12572 +#: guix-git/doc/guix.texi:12887 msgid "the updater for @uref{https://pypi.python.org, PyPI} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12574 +#: guix-git/doc/guix.texi:12889 msgid "the updater for @uref{https://rubygems.org, RubyGems} packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12574 +#: guix-git/doc/guix.texi:12889 #, no-wrap msgid "github" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12576 +#: guix-git/doc/guix.texi:12891 msgid "the updater for @uref{https://github.com, GitHub} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12578 +#: guix-git/doc/guix.texi:12893 msgid "the updater for @uref{https://hackage.haskell.org, Hackage} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12580 +#: guix-git/doc/guix.texi:12895 msgid "the updater for @uref{https://www.stackage.org, Stackage} packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12582 +#: guix-git/doc/guix.texi:12897 msgid "the updater for @uref{https://crates.io, Crates} packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12582 +#: guix-git/doc/guix.texi:12897 #, no-wrap msgid "launchpad" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12584 +#: guix-git/doc/guix.texi:12899 msgid "the updater for @uref{https://launchpad.net, Launchpad} packages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12584 +#: guix-git/doc/guix.texi:12899 #, no-wrap msgid "generic-html" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12587 +#: guix-git/doc/guix.texi:12902 msgid "a generic updater that crawls the HTML page where the source tarball of the package is hosted, when applicable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12588 +#: guix-git/doc/guix.texi:12903 #, no-wrap msgid "generic-git" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12593 +#: guix-git/doc/guix.texi:12908 msgid "a generic updater for packages hosted on Git repositories. It tries to be smart about parsing Git tag names, but if it is not able to parse the tag name and compare tags correctly, users can define the following properties for a package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12595 +#: guix-git/doc/guix.texi:12910 #, no-wrap msgid "@code{release-tag-prefix}: a regular expression for matching a prefix of" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12597 guix-git/doc/guix.texi:12600 +#: guix-git/doc/guix.texi:12912 guix-git/doc/guix.texi:12915 #, fuzzy msgid "the tag name." msgstr "仓库monad" #. type: item -#: guix-git/doc/guix.texi:12598 +#: guix-git/doc/guix.texi:12913 #, no-wrap msgid "@code{release-tag-suffix}: a regular expression for matching a suffix of" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12601 +#: guix-git/doc/guix.texi:12916 #, no-wrap msgid "@code{release-tag-version-delimiter}: a string used as the delimiter in" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12603 +#: guix-git/doc/guix.texi:12918 msgid "the tag name for separating the numbers of the version." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12604 +#: guix-git/doc/guix.texi:12919 #, no-wrap msgid "@code{accept-pre-releases}: by default, the updater will ignore" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:12607 +#: guix-git/doc/guix.texi:12922 msgid "pre-releases; to make it also look for pre-releases, set the this property to @code{#t}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12618 +#: guix-git/doc/guix.texi:12933 #, no-wrap msgid "" "(package\n" @@ -22763,12 +23313,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12625 +#: guix-git/doc/guix.texi:12940 msgid "For instance, the following command only checks for updates of Emacs packages hosted at @code{elpa.gnu.org} and for updates of CRAN packages:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12630 +#: guix-git/doc/guix.texi:12945 #, no-wrap msgid "" "$ guix refresh --type=elpa,cran\n" @@ -22777,45 +23327,45 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12632 +#: guix-git/doc/guix.texi:12947 #, no-wrap msgid "--list-updaters" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12633 +#: guix-git/doc/guix.texi:12948 #, no-wrap msgid "-L" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12635 +#: guix-git/doc/guix.texi:12950 msgid "List available updaters and exit (see @option{--type} above)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12638 +#: guix-git/doc/guix.texi:12953 msgid "For each updater, display the fraction of packages it covers; at the end, display the fraction of packages covered by all these updaters." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12642 +#: guix-git/doc/guix.texi:12957 msgid "In addition, @command{guix refresh} can be passed one or more package names, as in this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12645 +#: guix-git/doc/guix.texi:12960 #, no-wrap msgid "$ ./pre-inst-env guix refresh -u emacs idutils gcc@@4.8\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12652 +#: guix-git/doc/guix.texi:12967 msgid "The command above specifically updates the @code{emacs} and @code{idutils} packages. The @option{--select} option would have no effect in this case. You might also want to update definitions that correspond to the packages installed in your profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12656 +#: guix-git/doc/guix.texi:12971 #, no-wrap msgid "" "$ ./pre-inst-env guix refresh -u \\\n" @@ -22823,39 +23373,39 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12662 +#: guix-git/doc/guix.texi:12977 msgid "When considering whether to upgrade a package, it is sometimes convenient to know which packages would be affected by the upgrade and should be checked for compatibility. For this the following option may be used when passing @command{guix refresh} one or more package names:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12665 +#: guix-git/doc/guix.texi:12980 #, no-wrap msgid "--list-dependent" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12666 guix-git/doc/guix.texi:13028 +#: guix-git/doc/guix.texi:12981 guix-git/doc/guix.texi:13385 #, no-wrap msgid "-l" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12669 +#: guix-git/doc/guix.texi:12984 msgid "List top-level dependent packages that would need to be rebuilt as a result of upgrading one or more packages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12673 +#: guix-git/doc/guix.texi:12988 msgid "@xref{Invoking guix graph, the @code{reverse-package} type of @command{guix graph}}, for information on how to visualize the list of dependents of a package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12679 +#: guix-git/doc/guix.texi:12994 msgid "Be aware that the @option{--list-dependent} option only @emph{approximates} the rebuilds that would be required as a result of an upgrade. More rebuilds might be required under some circumstances." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12684 +#: guix-git/doc/guix.texi:12999 #, no-wrap msgid "" "$ guix refresh --list-dependent flex\n" @@ -22864,23 +23414,23 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12688 +#: guix-git/doc/guix.texi:13003 msgid "The command above lists a set of packages that could be built to check for compatibility with an upgraded @code{flex} package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12691 +#: guix-git/doc/guix.texi:13006 #, no-wrap msgid "--list-transitive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12693 +#: guix-git/doc/guix.texi:13008 msgid "List all the packages which one or more packages depend upon." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12698 +#: guix-git/doc/guix.texi:13013 #, no-wrap msgid "" "$ guix refresh --list-transitive flex\n" @@ -22889,60 +23439,60 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12704 +#: guix-git/doc/guix.texi:13019 msgid "The command above lists a set of packages which, when changed, would cause @code{flex} to be rebuilt." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12706 +#: guix-git/doc/guix.texi:13021 msgid "The following options can be used to customize GnuPG operation:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12709 +#: guix-git/doc/guix.texi:13024 #, no-wrap msgid "--gpg=@var{command}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12712 +#: guix-git/doc/guix.texi:13027 msgid "Use @var{command} as the GnuPG 2.x command. @var{command} is searched for in @code{$PATH}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12713 +#: guix-git/doc/guix.texi:13028 #, no-wrap msgid "--keyring=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12719 +#: guix-git/doc/guix.texi:13034 msgid "Use @var{file} as the keyring for upstream keys. @var{file} must be in the @dfn{keybox format}. Keybox files usually have a name ending in @file{.kbx} and the GNU@tie{}Privacy Guard (GPG) can manipulate these files (@pxref{kbxutil, @command{kbxutil},, gnupg, Using the GNU Privacy Guard}, for information on a tool to manipulate keybox files)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12725 +#: guix-git/doc/guix.texi:13040 msgid "When this option is omitted, @command{guix refresh} uses @file{~/.config/guix/upstream/trustedkeys.kbx} as the keyring for upstream signing keys. OpenPGP signatures are checked against keys from this keyring; missing keys are downloaded to this keyring as well (see @option{--key-download} below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12728 +#: guix-git/doc/guix.texi:13043 msgid "You can export keys from your default GPG keyring into a keybox file using commands like this one:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12731 +#: guix-git/doc/guix.texi:13046 #, no-wrap msgid "gpg --export rms@@gnu.org | kbxutil --import-openpgp >> mykeyring.kbx\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12734 +#: guix-git/doc/guix.texi:13049 msgid "Likewise, you can fetch keys to a specific keybox file like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:12738 +#: guix-git/doc/guix.texi:13053 #, no-wrap msgid "" "gpg --no-default-keyring --keyring mykeyring.kbx \\\n" @@ -22952,84 +23502,94 @@ msgstr "" " --recv-keys @value{OPENPGP-SIGNING-KEY-ID}\n" #. type: table -#: guix-git/doc/guix.texi:12742 +#: guix-git/doc/guix.texi:13057 msgid "@xref{GPG Configuration Options, @option{--keyring},, gnupg, Using the GNU Privacy Guard}, for more information on GPG's @option{--keyring} option." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12746 +#: guix-git/doc/guix.texi:13061 msgid "Handle missing OpenPGP keys according to @var{policy}, which may be one of:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12748 guix-git/doc/guix.texi:12871 -#: guix-git/doc/guix.texi:22249 +#: guix-git/doc/guix.texi:13063 guix-git/doc/guix.texi:13228 +#: guix-git/doc/guix.texi:22611 #, no-wrap msgid "always" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12751 +#: guix-git/doc/guix.texi:13066 msgid "Always download missing OpenPGP keys from the key server, and add them to the user's GnuPG keyring." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12752 guix-git/doc/guix.texi:22251 +#: guix-git/doc/guix.texi:13067 guix-git/doc/guix.texi:22613 #, no-wrap msgid "never" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12754 +#: guix-git/doc/guix.texi:13069 msgid "Never try to download missing OpenPGP keys. Instead just bail out." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12755 +#: guix-git/doc/guix.texi:13070 #, no-wrap msgid "interactive" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12758 +#: guix-git/doc/guix.texi:13073 msgid "When a package signed with an unknown OpenPGP key is encountered, ask the user whether to download it or not. This is the default behavior." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12760 +#: guix-git/doc/guix.texi:13075 #, no-wrap msgid "--key-server=@var{host}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12762 +#: guix-git/doc/guix.texi:13077 msgid "Use @var{host} as the OpenPGP key server when importing a public key." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12782 +#: guix-git/doc/guix.texi:13097 msgid "The @code{github} updater uses the @uref{https://developer.github.com/v3/, GitHub API} to query for new releases. When used repeatedly e.g.@: when refreshing all packages, GitHub will eventually refuse to answer any further API requests. By default 60 API requests per hour are allowed, and a full refresh on all GitHub packages in Guix requires more than this. Authentication with GitHub through the use of an API token alleviates these limits. To use an API token, set the environment variable @env{GUIX_GITHUB_TOKEN} to a token procured from @uref{https://github.com/settings/tokens} or otherwise." msgstr "" #. type: section -#: guix-git/doc/guix.texi:12785 +#: guix-git/doc/guix.texi:13100 #, fuzzy, no-wrap #| msgid "Invoking @command{guix build}" msgid "Invoking @command{guix style}" msgstr "调用@command{guix build}" #. type: Plain text -#: guix-git/doc/guix.texi:12791 -msgid "The @command{guix style} command helps packagers style their package definitions according to the latest fashionable trends. The command currently focuses on one aspect: the style of package inputs. It may eventually be extended to handle other stylistic matters." +#: guix-git/doc/guix.texi:13105 +msgid "The @command{guix style} command helps packagers style their package definitions according to the latest fashionable trends. The command currently provides the following styling rules:" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix.texi:13110 +msgid "formatting package definitions according to the project's conventions (@pxref{Formatting Code});" +msgstr "" + +#. type: itemize +#: guix-git/doc/guix.texi:13113 +msgid "rewriting package inputs to the ``new style'', as explained below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12796 +#: guix-git/doc/guix.texi:13119 msgid "The way package inputs are written is going through a transition (@pxref{package Reference}, for more on package inputs). Until version 1.3.0, package inputs were written using the ``old style'', where each input was given an explicit label, most of the time the package name:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12803 +#: guix-git/doc/guix.texi:13126 #, no-wrap msgid "" "(package\n" @@ -23040,12 +23600,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12807 +#: guix-git/doc/guix.texi:13130 msgid "Today, the old style is deprecated and the preferred style looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12813 +#: guix-git/doc/guix.texi:13136 #, no-wrap msgid "" "(package\n" @@ -23055,269 +23615,334 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12818 +#: guix-git/doc/guix.texi:13141 msgid "Likewise, uses of @code{alist-delete} and friends to manipulate inputs is now deprecated in favor of @code{modify-inputs} (@pxref{Defining Package Variants}, for more info on @code{modify-inputs})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12823 -msgid "In the vast majority of cases, this is a purely mechanical change on the surface syntax that does not even incur a package rebuild. Running @command{guix style} can do that for you, whether you're working on packages in Guix proper or in an external channel." +#: guix-git/doc/guix.texi:13146 +msgid "In the vast majority of cases, this is a purely mechanical change on the surface syntax that does not even incur a package rebuild. Running @command{guix style -S inputs} can do that for you, whether you're working on packages in Guix proper or in an external channel." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12828 +#: guix-git/doc/guix.texi:13151 #, fuzzy, no-wrap msgid "guix style [@var{options}] @var{package}@dots{}\n" msgstr "guix install emacs-guix\n" #. type: Plain text -#: guix-git/doc/guix.texi:12834 -msgid "This causes @command{guix style} to analyze and rewrite the definition of @var{package}@dots{}. It does so in a conservative way: preserving comments and bailing out if it cannot make sense of the code that appears in an inputs field. The available options are listed below." +#: guix-git/doc/guix.texi:13158 +msgid "This causes @command{guix style} to analyze and rewrite the definition of @var{package}@dots{} or, when @var{package} is omitted, of @emph{all} the packages. The @option{--styling} or @option{-S} option allows you to select the style rule, the default rule being @code{format}---see below." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:13160 guix-git/doc/guix.texi:14479 +msgid "The available options are listed below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12839 +#: guix-git/doc/guix.texi:13165 msgid "Show source file locations that would be edited but do not modify them." msgstr "" +#. type: item +#: guix-git/doc/guix.texi:13166 +#, fuzzy, no-wrap +#| msgid "--rounds=@var{N}" +msgid "--styling=@var{rule}" +msgstr "--rounds=@var{N}" + +#. type: itemx +#: guix-git/doc/guix.texi:13167 +#, fuzzy, no-wrap +#| msgid "-c @var{n}" +msgid "-S @var{rule}" +msgstr "-c @var{n}" + +#. type: table +#: guix-git/doc/guix.texi:13169 +#, fuzzy +#| msgid "Packages are currently available on the following platforms:" +msgid "Apply @var{rule}, one of the following styling rules:" +msgstr "目前这些平台提供软件包:" + +#. type: item +#: guix-git/doc/guix.texi:13171 +#, no-wrap +msgid "format" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:13176 +msgid "Format the given package definition(s)---this is the default styling rule. For example, a packager running Guix on a checkout (@pxref{Running Guix Before It Is Installed}) might want to reformat the definition of the Coreutils package like so:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:13179 +#, fuzzy, no-wrap +msgid "./pre-inst-env guix style coreutils\n" +msgstr "./pre-inst-env guix build gnew --keep-failed\n" + +#. type: item +#: guix-git/doc/guix.texi:13181 +#, no-wrap +msgid "inputs" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:13185 +msgid "Rewrite package inputs to the ``new style'', as described above. This is how you would rewrite inputs of package @code{whatnot} in your own channel:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:13188 +#, no-wrap +msgid "guix style -L ~/my/channel -S inputs whatnot\n" +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:13194 +msgid "Rewriting is done in a conservative way: preserving comments and bailing out if it cannot make sense of the code that appears in an inputs field. The @option{--input-simplification} option described below provides fine-grain control over when inputs should be simplified." +msgstr "" + #. type: table -#: guix-git/doc/guix.texi:12848 +#: guix-git/doc/guix.texi:13204 msgid "Style the package @var{expr} evaluates to." msgstr "" #. type: example -#: guix-git/doc/guix.texi:12853 +#: guix-git/doc/guix.texi:13209 #, no-wrap msgid "guix style -e '(@@ (gnu packages gcc) gcc-5)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12856 +#: guix-git/doc/guix.texi:13212 #, fuzzy #| msgid "Updating the Guix package definition." msgid "styles the @code{gcc-5} package definition." msgstr "更新Guix的软件包定义。" #. type: item -#: guix-git/doc/guix.texi:12857 +#: guix-git/doc/guix.texi:13213 #, no-wrap msgid "--input-simplification=@var{policy}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12861 -msgid "Specify the package input simplification policy for cases where an input label does not match the corresponding package name. @var{policy} may be one of the following:" +#: guix-git/doc/guix.texi:13218 +msgid "When using the @code{inputs} styling rule, with @samp{-S inputs}, this option specifies the package input simplification policy for cases where an input label does not match the corresponding package name. @var{policy} may be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:12863 +#: guix-git/doc/guix.texi:13220 #, no-wrap msgid "silent" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12866 +#: guix-git/doc/guix.texi:13223 msgid "Simplify inputs only when the change is ``silent'', meaning that the package does not need to be rebuilt (its derivation is unchanged)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12867 +#: guix-git/doc/guix.texi:13224 #, no-wrap msgid "safe" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12870 +#: guix-git/doc/guix.texi:13227 msgid "Simplify inputs only when that is ``safe'' to do: the package might need to be rebuilt, but the change is known to have no observable effect." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12874 +#: guix-git/doc/guix.texi:13231 msgid "Simplify inputs even when input labels do not match package names, and even if that might have an observable effect." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12878 +#: guix-git/doc/guix.texi:13235 msgid "The default is @code{silent}, meaning that input simplifications do not trigger any package rebuild." msgstr "" #. type: section -#: guix-git/doc/guix.texi:12881 +#: guix-git/doc/guix.texi:13238 #, no-wrap msgid "Invoking @command{guix lint}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:12883 +#: guix-git/doc/guix.texi:13240 #, no-wrap msgid "guix lint" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12884 +#: guix-git/doc/guix.texi:13241 #, no-wrap msgid "package, checking for errors" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:12890 +#: guix-git/doc/guix.texi:13247 msgid "The @command{guix lint} command is meant to help package developers avoid common errors and use a consistent style. It runs a number of checks on a given set of packages in order to find common mistakes in their definitions. Available @dfn{checkers} include (see @option{--list-checkers} for a complete list):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12896 +#: guix-git/doc/guix.texi:13253 msgid "Validate certain typographical and stylistic rules about package descriptions and synopses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12897 +#: guix-git/doc/guix.texi:13254 #, no-wrap msgid "inputs-should-be-native" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12899 +#: guix-git/doc/guix.texi:13256 msgid "Identify inputs that should most likely be native inputs." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12902 +#: guix-git/doc/guix.texi:13259 #, no-wrap msgid "mirror-url" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12903 +#: guix-git/doc/guix.texi:13260 #, no-wrap msgid "github-url" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:12904 +#: guix-git/doc/guix.texi:13261 #, no-wrap msgid "source-file-name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12911 +#: guix-git/doc/guix.texi:13268 msgid "Probe @code{home-page} and @code{source} URLs and report those that are invalid. Suggest a @code{mirror://} URL when applicable. If the @code{source} URL redirects to a GitHub URL, recommend usage of the GitHub URL@. Check that the source file name is meaningful, e.g.@: is not just a version number or ``git-checkout'', without a declared @code{file-name} (@pxref{origin Reference})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12912 +#: guix-git/doc/guix.texi:13269 #, no-wrap msgid "source-unstable-tarball" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12916 +#: guix-git/doc/guix.texi:13273 msgid "Parse the @code{source} URL to determine if a tarball from GitHub is autogenerated or if it is a release tarball. Unfortunately GitHub's autogenerated tarballs are sometimes regenerated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12920 +#: guix-git/doc/guix.texi:13277 msgid "Check that the derivation of the given packages can be successfully computed for all the supported systems (@pxref{Derivations})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12921 +#: guix-git/doc/guix.texi:13278 #, no-wrap msgid "profile-collisions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12927 +#: guix-git/doc/guix.texi:13284 msgid "Check whether installing the given packages in a profile would lead to collisions. Collisions occur when several packages with the same name but a different version or a different store file name are propagated. @xref{package Reference, @code{propagated-inputs}}, for more information on propagated inputs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12928 +#: guix-git/doc/guix.texi:13285 #, no-wrap msgid "archival" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12929 +#: guix-git/doc/guix.texi:13286 #, no-wrap msgid "Software Heritage, source code archive" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12930 +#: guix-git/doc/guix.texi:13287 #, no-wrap msgid "archival of source code, Software Heritage" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12933 +#: guix-git/doc/guix.texi:13290 msgid "Checks whether the package's source code is archived at @uref{https://www.softwareheritage.org, Software Heritage}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12941 +#: guix-git/doc/guix.texi:13298 msgid "When the source code that is not archived comes from a version-control system (VCS)---e.g., it's obtained with @code{git-fetch}, send Software Heritage a ``save'' request so that it eventually archives it. This ensures that the source will remain available in the long term, and that Guix can fall back to Software Heritage should the source code disappear from its original host. The status of recent ``save'' requests can be @uref{https://archive.softwareheritage.org/save/#requests, viewed on-line}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12946 +#: guix-git/doc/guix.texi:13303 msgid "When source code is a tarball obtained with @code{url-fetch}, simply print a message when it is not archived. As of this writing, Software Heritage does not allow requests to save arbitrary tarballs; we are working on ways to ensure that non-VCS source code is also archived." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12952 +#: guix-git/doc/guix.texi:13309 msgid "Software Heritage @uref{https://archive.softwareheritage.org/api/#rate-limiting, limits the request rate per IP address}. When the limit is reached, @command{guix lint} prints a message and the @code{archival} checker stops doing anything until that limit has been reset." msgstr "" #. type: item -#: guix-git/doc/guix.texi:12953 +#: guix-git/doc/guix.texi:13310 #, no-wrap msgid "cve" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12954 guix-git/doc/guix.texi:37946 +#: guix-git/doc/guix.texi:13311 guix-git/doc/guix.texi:38435 #, no-wrap msgid "security vulnerabilities" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:12955 +#: guix-git/doc/guix.texi:13312 #, no-wrap msgid "CVE, Common Vulnerabilities and Exposures" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12960 +#: guix-git/doc/guix.texi:13317 msgid "Report known vulnerabilities found in the Common Vulnerabilities and Exposures (CVE) databases of the current and past year @uref{https://nvd.nist.gov/vuln/data-feeds, published by the US NIST}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12962 +#: guix-git/doc/guix.texi:13319 msgid "To view information about a particular vulnerability, visit pages such as:" msgstr "" #. type: indicateurl{#1} -#: guix-git/doc/guix.texi:12966 +#: guix-git/doc/guix.texi:13323 msgid "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-YYYY-ABCD" msgstr "" #. type: indicateurl{#1} -#: guix-git/doc/guix.texi:12968 +#: guix-git/doc/guix.texi:13325 msgid "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-YYYY-ABCD" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12973 +#: guix-git/doc/guix.texi:13330 msgid "where @code{CVE-YYYY-ABCD} is the CVE identifier---e.g., @code{CVE-2015-7554}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:12978 +#: guix-git/doc/guix.texi:13335 msgid "Package developers can specify in package recipes the @uref{https://nvd.nist.gov/products/cpe,Common Platform Enumeration (CPE)} name and version of the package when they differ from the name or version that Guix uses, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:12986 +#: guix-git/doc/guix.texi:13343 #, no-wrap msgid "" "(package\n" @@ -23329,12 +23954,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:12993 +#: guix-git/doc/guix.texi:13350 msgid "Some entries in the CVE database do not specify which version of a package they apply to, and would thus ``stick around'' forever. Package developers who found CVE alerts and verified they can be ignored can declare them as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:13003 +#: guix-git/doc/guix.texi:13360 #, no-wrap msgid "" "(package\n" @@ -23348,124 +23973,124 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13005 +#: guix-git/doc/guix.texi:13362 #, no-wrap msgid "formatting" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13008 +#: guix-git/doc/guix.texi:13365 msgid "Warn about obvious source code formatting issues: trailing white space, use of tabulations, etc." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13009 +#: guix-git/doc/guix.texi:13366 #, no-wrap msgid "input-labels" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13015 +#: guix-git/doc/guix.texi:13372 msgid "Report old-style input labels that do not match the name of the corresponding package. This aims to help migrate from the ``old input style''. @xref{package Reference}, for more information on package inputs and input styles. @xref{Invoking guix style}, on how to migrate to the new style." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13021 +#: guix-git/doc/guix.texi:13378 #, no-wrap msgid "guix lint @var{options} @var{package}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13025 +#: guix-git/doc/guix.texi:13382 msgid "If no package is given on the command line, then all packages are checked. The @var{options} may be zero or more of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13027 +#: guix-git/doc/guix.texi:13384 #, no-wrap msgid "--list-checkers" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13031 +#: guix-git/doc/guix.texi:13388 msgid "List and describe all the available checkers that will be run on packages and exit." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13032 +#: guix-git/doc/guix.texi:13389 #, no-wrap msgid "--checkers" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13033 +#: guix-git/doc/guix.texi:13390 #, no-wrap msgid "-c" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13036 +#: guix-git/doc/guix.texi:13393 msgid "Only enable the checkers specified in a comma-separated list using the names returned by @option{--list-checkers}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13037 +#: guix-git/doc/guix.texi:13394 #, no-wrap msgid "--exclude" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13041 +#: guix-git/doc/guix.texi:13398 msgid "Only disable the checkers specified in a comma-separated list using the names returned by @option{--list-checkers}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13042 +#: guix-git/doc/guix.texi:13399 #, no-wrap msgid "--no-network" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13045 +#: guix-git/doc/guix.texi:13402 msgid "Only enable the checkers that do not depend on Internet access." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13057 +#: guix-git/doc/guix.texi:13414 #, no-wrap msgid "Invoking @command{guix size}" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:13059 guix-git/doc/guix.texi:35624 +#: guix-git/doc/guix.texi:13416 guix-git/doc/guix.texi:36114 #, no-wrap msgid "size" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13060 +#: guix-git/doc/guix.texi:13417 #, no-wrap msgid "package size" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13062 +#: guix-git/doc/guix.texi:13419 #, no-wrap msgid "guix size" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13069 +#: guix-git/doc/guix.texi:13426 msgid "The @command{guix size} command helps package developers profile the disk usage of packages. It is easy to overlook the impact of an additional dependency added to a package, or the impact of using a single output for a package that could easily be split (@pxref{Packages with Multiple Outputs}). Such are the typical issues that @command{guix size} can highlight." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13074 +#: guix-git/doc/guix.texi:13431 msgid "The command can be passed one or more package specifications such as @code{gcc@@4.8} or @code{guile:debug}, or a file name in the store. Consider this example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13087 +#: guix-git/doc/guix.texi:13444 #, no-wrap msgid "" "$ guix size coreutils\n" @@ -23482,54 +24107,54 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13093 +#: guix-git/doc/guix.texi:13450 msgid "The store items listed here constitute the @dfn{transitive closure} of Coreutils---i.e., Coreutils and all its dependencies, recursively---as would be returned by:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13096 +#: guix-git/doc/guix.texi:13453 #, no-wrap msgid "$ guix gc -R /gnu/store/@dots{}-coreutils-8.23\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13104 +#: guix-git/doc/guix.texi:13461 msgid "Here the output shows three columns next to store items. The first column, labeled ``total'', shows the size in mebibytes (MiB) of the closure of the store item---that is, its own size plus the size of all its dependencies. The next column, labeled ``self'', shows the size of the item itself. The last column shows the ratio of the size of the item itself to the space occupied by all the items listed here." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13110 +#: guix-git/doc/guix.texi:13467 msgid "In this example, we see that the closure of Coreutils weighs in at 79@tie{}MiB, most of which is taken by libc and GCC's run-time support libraries. (That libc and GCC's libraries represent a large fraction of the closure is not a problem @i{per se} because they are always available on the system anyway.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13113 +#: guix-git/doc/guix.texi:13470 msgid "Since the command also accepts store file names, assessing the size of a build result is straightforward:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13116 +#: guix-git/doc/guix.texi:13473 #, no-wrap msgid "guix size $(guix system build config.scm)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13126 +#: guix-git/doc/guix.texi:13483 msgid "When the package(s) passed to @command{guix size} are available in the store@footnote{More precisely, @command{guix size} looks for the @emph{ungrafted} variant of the given package(s), as returned by @code{guix build @var{package} --no-grafts}. @xref{Security Updates}, for information on grafts.}, @command{guix size} queries the daemon to determine its dependencies, and measures its size in the store, similar to @command{du -ms --apparent-size} (@pxref{du invocation,,, coreutils, GNU Coreutils})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13131 +#: guix-git/doc/guix.texi:13488 msgid "When the given packages are @emph{not} in the store, @command{guix size} reports information based on the available substitutes (@pxref{Substitutes}). This makes it possible it to profile disk usage of store items that are not even on disk, only available remotely." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13133 +#: guix-git/doc/guix.texi:13490 msgid "You can also specify several package names:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13143 +#: guix-git/doc/guix.texi:13500 #, no-wrap msgid "" "$ guix size coreutils grep sed bash\n" @@ -23543,365 +24168,365 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13149 +#: guix-git/doc/guix.texi:13506 msgid "In this example we see that the combination of the four packages takes 102.3@tie{}MiB in total, which is much less than the sum of each closure since they have a lot of dependencies in common." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13155 +#: guix-git/doc/guix.texi:13512 msgid "When looking at the profile returned by @command{guix size}, you may find yourself wondering why a given package shows up in the profile at all. To understand it, you can use @command{guix graph --path -t references} to display the shortest path between the two packages (@pxref{Invoking guix graph})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13157 +#: guix-git/doc/guix.texi:13514 msgid "The available options are:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13163 +#: guix-git/doc/guix.texi:13520 msgid "Use substitute information from @var{urls}. @xref{client-substitute-urls, the same option for @code{guix build}}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13164 +#: guix-git/doc/guix.texi:13521 #, no-wrap msgid "--sort=@var{key}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13166 +#: guix-git/doc/guix.texi:13523 msgid "Sort lines according to @var{key}, one of the following options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13168 +#: guix-git/doc/guix.texi:13525 #, no-wrap msgid "self" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13170 +#: guix-git/doc/guix.texi:13527 msgid "the size of each item (the default);" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13172 +#: guix-git/doc/guix.texi:13529 msgid "the total size of the item's closure." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13174 +#: guix-git/doc/guix.texi:13531 #, no-wrap msgid "--map-file=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13176 +#: guix-git/doc/guix.texi:13533 msgid "Write a graphical map of disk usage in PNG format to @var{file}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13178 +#: guix-git/doc/guix.texi:13535 msgid "For the example above, the map looks like this:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13181 +#: guix-git/doc/guix.texi:13538 msgid "@image{images/coreutils-size-map,5in,, map of Coreutils disk usage produced by @command{guix size}}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13186 +#: guix-git/doc/guix.texi:13543 msgid "This option requires that @uref{https://wingolog.org/software/guile-charting/, Guile-Charting} be installed and visible in Guile's module search path. When that is not the case, @command{guix size} fails as it tries to load it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13190 +#: guix-git/doc/guix.texi:13547 msgid "Consider packages for @var{system}---e.g., @code{x86_64-linux}." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13201 +#: guix-git/doc/guix.texi:13558 #, no-wrap msgid "Invoking @command{guix graph}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13203 +#: guix-git/doc/guix.texi:13560 #, no-wrap msgid "DAG" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13204 +#: guix-git/doc/guix.texi:13561 #, no-wrap msgid "guix graph" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13219 +#: guix-git/doc/guix.texi:13576 msgid "Packages and their dependencies form a @dfn{graph}, specifically a directed acyclic graph (DAG). It can quickly become difficult to have a mental model of the package DAG, so the @command{guix graph} command provides a visual representation of the DAG@. By default, @command{guix graph} emits a DAG representation in the input format of @uref{https://www.graphviz.org/, Graphviz}, so its output can be passed directly to the @command{dot} command of Graphviz. It can also emit an HTML page with embedded JavaScript code to display a ``chord diagram'' in a Web browser, using the @uref{https://d3js.org/, d3.js} library, or emit Cypher queries to construct a graph in a graph database supporting the @uref{https://www.opencypher.org/, openCypher} query language. With @option{--path}, it simply displays the shortest path between two packages. The general syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13222 +#: guix-git/doc/guix.texi:13579 #, no-wrap msgid "guix graph @var{options} @var{package}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13227 +#: guix-git/doc/guix.texi:13584 msgid "For example, the following command generates a PDF file representing the package DAG for the GNU@tie{}Core Utilities, showing its build-time dependencies:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13230 +#: guix-git/doc/guix.texi:13587 #, no-wrap msgid "guix graph coreutils | dot -Tpdf > dag.pdf\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13233 +#: guix-git/doc/guix.texi:13590 msgid "The output looks like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13235 +#: guix-git/doc/guix.texi:13592 msgid "@image{images/coreutils-graph,2in,,Dependency graph of the GNU Coreutils}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13237 +#: guix-git/doc/guix.texi:13594 msgid "Nice little graph, no?" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13240 +#: guix-git/doc/guix.texi:13597 msgid "You may find it more pleasant to navigate the graph interactively with @command{xdot} (from the @code{xdot} package):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13243 +#: guix-git/doc/guix.texi:13600 #, no-wrap msgid "guix graph coreutils | xdot -\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13250 +#: guix-git/doc/guix.texi:13607 msgid "But there is more than one graph! The one above is concise: it is the graph of package objects, omitting implicit inputs such as GCC, libc, grep, etc. It is often useful to have such a concise graph, but sometimes one may want to see more details. @command{guix graph} supports several types of graphs, allowing you to choose the level of detail:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13256 +#: guix-git/doc/guix.texi:13613 msgid "This is the default type used in the example above. It shows the DAG of package objects, excluding implicit dependencies. It is concise, but filters out many details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13257 +#: guix-git/doc/guix.texi:13614 #, no-wrap msgid "reverse-package" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13259 +#: guix-git/doc/guix.texi:13616 msgid "This shows the @emph{reverse} DAG of packages. For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13262 +#: guix-git/doc/guix.texi:13619 #, no-wrap msgid "guix graph --type=reverse-package ocaml\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13267 +#: guix-git/doc/guix.texi:13624 msgid "...@: yields the graph of packages that @emph{explicitly} depend on OCaml (if you are also interested in cases where OCaml is an implicit dependency, see @code{reverse-bag} below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13272 +#: guix-git/doc/guix.texi:13629 msgid "Note that for core packages this can yield huge graphs. If all you want is to know the number of packages that depend on a given package, use @command{guix refresh --list-dependent} (@pxref{Invoking guix refresh, @option{--list-dependent}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13273 +#: guix-git/doc/guix.texi:13630 #, no-wrap msgid "bag-emerged" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13275 +#: guix-git/doc/guix.texi:13632 msgid "This is the package DAG, @emph{including} implicit inputs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13277 +#: guix-git/doc/guix.texi:13634 msgid "For instance, the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13280 +#: guix-git/doc/guix.texi:13637 #, no-wrap msgid "guix graph --type=bag-emerged coreutils\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13283 +#: guix-git/doc/guix.texi:13640 msgid "...@: yields this bigger graph:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13285 +#: guix-git/doc/guix.texi:13642 msgid "@image{images/coreutils-bag-graph,,5in,Detailed dependency graph of the GNU Coreutils}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13288 +#: guix-git/doc/guix.texi:13645 msgid "At the bottom of the graph, we see all the implicit inputs of @var{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13292 +#: guix-git/doc/guix.texi:13649 msgid "Now, note that the dependencies of these implicit inputs---that is, the @dfn{bootstrap dependencies} (@pxref{Bootstrapping})---are not shown here, for conciseness." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13293 +#: guix-git/doc/guix.texi:13650 #, no-wrap msgid "bag" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13296 +#: guix-git/doc/guix.texi:13653 msgid "Similar to @code{bag-emerged}, but this time including all the bootstrap dependencies." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13297 +#: guix-git/doc/guix.texi:13654 #, no-wrap msgid "bag-with-origins" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13299 +#: guix-git/doc/guix.texi:13656 msgid "Similar to @code{bag}, but also showing origins and their dependencies." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13300 +#: guix-git/doc/guix.texi:13657 #, no-wrap msgid "reverse-bag" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13303 +#: guix-git/doc/guix.texi:13660 msgid "This shows the @emph{reverse} DAG of packages. Unlike @code{reverse-package}, it also takes implicit dependencies into account. For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13306 +#: guix-git/doc/guix.texi:13663 #, no-wrap msgid "guix graph -t reverse-bag dune\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13313 +#: guix-git/doc/guix.texi:13670 msgid "...@: yields the graph of all packages that depend on Dune, directly or indirectly. Since Dune is an @emph{implicit} dependency of many packages @i{via} @code{dune-build-system}, this shows a large number of packages, whereas @code{reverse-package} would show very few if any." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13319 +#: guix-git/doc/guix.texi:13676 msgid "This is the most detailed representation: It shows the DAG of derivations (@pxref{Derivations}) and plain store items. Compared to the above representation, many additional nodes are visible, including build scripts, patches, Guile modules, etc." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13322 +#: guix-git/doc/guix.texi:13679 msgid "For this type of graph, it is also possible to pass a @file{.drv} file name instead of a package name, as in:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13325 +#: guix-git/doc/guix.texi:13682 #, no-wrap msgid "guix graph -t derivation $(guix system build -d my-config.scm)\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13327 +#: guix-git/doc/guix.texi:13684 #, no-wrap msgid "module" msgstr "模块" #. type: table -#: guix-git/doc/guix.texi:13331 +#: guix-git/doc/guix.texi:13688 msgid "This is the graph of @dfn{package modules} (@pxref{Package Modules}). For example, the following command shows the graph for the package module that defines the @code{guile} package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13334 +#: guix-git/doc/guix.texi:13691 #, no-wrap msgid "guix graph -t module guile | xdot -\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13339 +#: guix-git/doc/guix.texi:13696 msgid "All the types above correspond to @emph{build-time dependencies}. The following graph type represents the @emph{run-time dependencies}:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13344 +#: guix-git/doc/guix.texi:13701 msgid "This is the graph of @dfn{references} of a package output, as returned by @command{guix gc --references} (@pxref{Invoking guix gc})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13347 +#: guix-git/doc/guix.texi:13704 msgid "If the given package output is not available in the store, @command{guix graph} attempts to obtain dependency information from substitutes." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13351 +#: guix-git/doc/guix.texi:13708 msgid "Here you can also pass a store file name instead of a package name. For example, the command below produces the reference graph of your profile (which can be big!):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13354 +#: guix-git/doc/guix.texi:13711 #, no-wrap msgid "guix graph -t references $(readlink -f ~/.guix-profile)\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13356 +#: guix-git/doc/guix.texi:13713 #, no-wrap msgid "referrers" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13359 +#: guix-git/doc/guix.texi:13716 msgid "This is the graph of the @dfn{referrers} of a store item, as returned by @command{guix gc --referrers} (@pxref{Invoking guix gc})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13365 +#: guix-git/doc/guix.texi:13722 msgid "This relies exclusively on local information from your store. For instance, let us suppose that the current Inkscape is available in 10 profiles on your machine; @command{guix graph -t referrers inkscape} will show a graph rooted at Inkscape and with those 10 profiles linked to it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13368 +#: guix-git/doc/guix.texi:13725 msgid "It can help determine what is preventing a store item from being garbage collected." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13371 +#: guix-git/doc/guix.texi:13728 #, fuzzy, no-wrap msgid "shortest path, between packages" msgstr "超过1200个受影响的软件包" #. type: Plain text -#: guix-git/doc/guix.texi:13378 +#: guix-git/doc/guix.texi:13735 msgid "Often, the graph of the package you are interested in does not fit on your screen, and anyway all you want to know is @emph{why} that package actually depends on some seemingly unrelated package. The @option{--path} option instructs @command{guix graph} to display the shortest path between two packages (or derivations, or store items, etc.):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13392 +#: guix-git/doc/guix.texi:13749 #, no-wrap msgid "" "$ guix graph --path emacs libunistring\n" @@ -23919,88 +24544,88 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13400 +#: guix-git/doc/guix.texi:13757 msgid "Sometimes you still want to visualize the graph but would like to trim it so it can actually be displayed. One way to do it is via the @option{--max-depth} (or @option{-M}) option, which lets you specify the maximum depth of the graph. In the example below, we visualize only @code{libreoffice} and the nodes whose distance to @code{libreoffice} is at most 2:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13403 +#: guix-git/doc/guix.texi:13760 #, no-wrap msgid "guix graph -M 2 libreoffice | xdot -f fdp -\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13407 +#: guix-git/doc/guix.texi:13764 msgid "Mind you, that's still a big ball of spaghetti, but at least @command{dot} can render it quickly and it can be browsed somewhat." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13409 +#: guix-git/doc/guix.texi:13766 msgid "The available options are the following:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13415 +#: guix-git/doc/guix.texi:13772 msgid "Produce a graph output of @var{type}, where @var{type} must be one of the values listed above." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13416 +#: guix-git/doc/guix.texi:13773 #, no-wrap msgid "--list-types" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13418 +#: guix-git/doc/guix.texi:13775 msgid "List the supported graph types." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13419 +#: guix-git/doc/guix.texi:13776 #, no-wrap msgid "--backend=@var{backend}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13420 +#: guix-git/doc/guix.texi:13777 #, no-wrap msgid "-b @var{backend}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13422 +#: guix-git/doc/guix.texi:13779 msgid "Produce a graph using the selected @var{backend}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13423 +#: guix-git/doc/guix.texi:13780 #, no-wrap msgid "--list-backends" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13425 +#: guix-git/doc/guix.texi:13782 msgid "List the supported graph backends." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13427 +#: guix-git/doc/guix.texi:13784 msgid "Currently, the available backends are Graphviz and d3.js." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13428 +#: guix-git/doc/guix.texi:13785 #, no-wrap msgid "--path" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13433 +#: guix-git/doc/guix.texi:13790 msgid "Display the shortest path between two nodes of the type specified by @option{--type}. The example below shows the shortest path between @code{libreoffice} and @code{llvm} according to the references of @code{libreoffice}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13440 +#: guix-git/doc/guix.texi:13797 #, no-wrap msgid "" "$ guix graph --path -t references libreoffice llvm\n" @@ -24011,398 +24636,398 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13450 +#: guix-git/doc/guix.texi:13807 #, no-wrap msgid "guix graph -e '(@@@@ (gnu packages commencement) gnu-make-final)'\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13455 +#: guix-git/doc/guix.texi:13812 msgid "Display the graph for @var{system}---e.g., @code{i686-linux}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13458 +#: guix-git/doc/guix.texi:13815 msgid "The package dependency graph is largely architecture-independent, but there are some architecture-dependent bits that this option allows you to visualize." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13474 +#: guix-git/doc/guix.texi:13831 msgid "On top of that, @command{guix graph} supports all the usual package transformation options (@pxref{Package Transformation Options}). This makes it easy to view the effect of a graph-rewriting transformation such as @option{--with-input}. For example, the command below outputs the graph of @code{git} once @code{openssl} has been replaced by @code{libressl} everywhere in the graph:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13477 +#: guix-git/doc/guix.texi:13834 #, no-wrap msgid "guix graph git --with-input=openssl=libressl\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13480 +#: guix-git/doc/guix.texi:13837 msgid "So many possibilities, so much fun!" msgstr "" #. type: section -#: guix-git/doc/guix.texi:13482 +#: guix-git/doc/guix.texi:13839 #, no-wrap msgid "Invoking @command{guix publish}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13484 +#: guix-git/doc/guix.texi:13841 #, no-wrap msgid "guix publish" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13488 +#: guix-git/doc/guix.texi:13845 msgid "The purpose of @command{guix publish} is to enable users to easily share their store with others, who can then use it as a substitute server (@pxref{Substitutes})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13494 +#: guix-git/doc/guix.texi:13851 msgid "When @command{guix publish} runs, it spawns an HTTP server which allows anyone with network access to obtain substitutes from it. This means that any machine running Guix can also act as if it were a build farm, since the HTTP interface is compatible with Cuirass, the software behind the @code{@value{SUBSTITUTE-SERVER-1}} build farm." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13500 +#: guix-git/doc/guix.texi:13857 msgid "For security, each substitute is signed, allowing recipients to check their authenticity and integrity (@pxref{Substitutes}). Because @command{guix publish} uses the signing key of the system, which is only readable by the system administrator, it must be started as root; the @option{--user} option makes it drop root privileges early on." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13504 +#: guix-git/doc/guix.texi:13861 msgid "The signing key pair must be generated before @command{guix publish} is launched, using @command{guix archive --generate-key} (@pxref{Invoking guix archive})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13509 +#: guix-git/doc/guix.texi:13866 msgid "When the @option{--advertise} option is passed, the server advertises its availability on the local network using multicast DNS (mDNS) and DNS service discovery (DNS-SD), currently @i{via} Guile-Avahi (@pxref{Top,,, guile-avahi, Using Avahi in Guile Scheme Programs})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13514 +#: guix-git/doc/guix.texi:13871 #, no-wrap msgid "guix publish @var{options}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13518 +#: guix-git/doc/guix.texi:13875 msgid "Running @command{guix publish} without any additional arguments will spawn an HTTP server on port 8080:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13521 +#: guix-git/doc/guix.texi:13878 #, no-wrap msgid "guix publish\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13525 +#: guix-git/doc/guix.texi:13882 msgid "Once a publishing server has been authorized, the daemon may download substitutes from it. @xref{Getting Substitutes from Other Servers}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13533 +#: guix-git/doc/guix.texi:13890 msgid "By default, @command{guix publish} compresses archives on the fly as it serves them. This ``on-the-fly'' mode is convenient in that it requires no setup and is immediately available. However, when serving lots of clients, we recommend using the @option{--cache} option, which enables caching of the archives before they are sent to clients---see below for details. The @command{guix weather} command provides a handy way to check what a server provides (@pxref{Invoking guix weather})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13540 +#: guix-git/doc/guix.texi:13897 msgid "As a bonus, @command{guix publish} also serves as a content-addressed mirror for source files referenced in @code{origin} records (@pxref{origin Reference}). For instance, assuming @command{guix publish} is running on @code{example.org}, the following URL returns the raw @file{hello-2.10.tar.gz} file with the given SHA256 hash (represented in @code{nix-base32} format, @pxref{Invoking guix hash}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13543 +#: guix-git/doc/guix.texi:13900 #, no-wrap msgid "http://example.org/file/hello-2.10.tar.gz/sha256/0ssi1@dots{}ndq1i\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13547 +#: guix-git/doc/guix.texi:13904 msgid "Obviously, these URLs only work for files that are in the store; in other cases, they return 404 (``Not Found'')." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13548 +#: guix-git/doc/guix.texi:13905 #, no-wrap msgid "build logs, publication" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13550 +#: guix-git/doc/guix.texi:13907 msgid "Build logs are available from @code{/log} URLs like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13553 +#: guix-git/doc/guix.texi:13910 #, no-wrap msgid "http://example.org/log/gwspk@dots{}-guile-2.2.3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13563 +#: guix-git/doc/guix.texi:13920 msgid "When @command{guix-daemon} is configured to save compressed build logs, as is the case by default (@pxref{Invoking guix-daemon}), @code{/log} URLs return the compressed log as-is, with an appropriate @code{Content-Type} and/or @code{Content-Encoding} header. We recommend running @command{guix-daemon} with @option{--log-compression=gzip} since Web browsers can automatically decompress it, which is not the case with Bzip2 compression." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13567 +#: guix-git/doc/guix.texi:13924 #, no-wrap msgid "--port=@var{port}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13568 +#: guix-git/doc/guix.texi:13925 #, no-wrap msgid "-p @var{port}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13570 +#: guix-git/doc/guix.texi:13927 msgid "Listen for HTTP requests on @var{port}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13571 +#: guix-git/doc/guix.texi:13928 #, no-wrap msgid "--listen=@var{host}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13574 +#: guix-git/doc/guix.texi:13931 msgid "Listen on the network interface for @var{host}. The default is to accept connections from any interface." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13579 +#: guix-git/doc/guix.texi:13936 msgid "Change privileges to @var{user} as soon as possible---i.e., once the server socket is open and the signing key has been read." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13580 +#: guix-git/doc/guix.texi:13937 #, fuzzy, no-wrap msgid "--compression[=@var{method}[:@var{level}]]" msgstr "--log-compression=@var{type}" #. type: itemx -#: guix-git/doc/guix.texi:13581 +#: guix-git/doc/guix.texi:13938 #, no-wrap msgid "-C [@var{method}[:@var{level}]]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13585 +#: guix-git/doc/guix.texi:13942 msgid "Compress data using the given @var{method} and @var{level}. @var{method} is one of @code{lzip}, @code{zstd}, and @code{gzip}; when @var{method} is omitted, @code{gzip} is used." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13589 +#: guix-git/doc/guix.texi:13946 msgid "When @var{level} is zero, disable compression. The range 1 to 9 corresponds to different compression levels: 1 is the fastest, and 9 is the best (CPU-intensive). The default is 3." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13596 +#: guix-git/doc/guix.texi:13953 msgid "Usually, @code{lzip} compresses noticeably better than @code{gzip} for a small increase in CPU usage; see @uref{https://nongnu.org/lzip/lzip_benchmark.html,benchmarks on the lzip Web page}. However, @code{lzip} achieves low decompression throughput (on the order of 50@tie{}MiB/s on modern hardware), which can be a bottleneck for someone who downloads over a fast network connection." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13600 +#: guix-git/doc/guix.texi:13957 msgid "The compression ratio of @code{zstd} is between that of @code{lzip} and that of @code{gzip}; its main advantage is a @uref{https://facebook.github.io/zstd/,high decompression speed}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13609 +#: guix-git/doc/guix.texi:13966 msgid "Unless @option{--cache} is used, compression occurs on the fly and the compressed streams are not cached. Thus, to reduce load on the machine that runs @command{guix publish}, it may be a good idea to choose a low compression level, to run @command{guix publish} behind a caching proxy, or to use @option{--cache}. Using @option{--cache} has the advantage that it allows @command{guix publish} to add @code{Content-Length} HTTP header to its responses." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13614 +#: guix-git/doc/guix.texi:13971 msgid "This option can be repeated, in which case every substitute gets compressed using all the selected methods, and all of them are advertised. This is useful when users may not support all the compression methods: they can select the one they support." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13615 +#: guix-git/doc/guix.texi:13972 #, no-wrap msgid "--cache=@var{directory}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13616 +#: guix-git/doc/guix.texi:13973 #, no-wrap msgid "-c @var{directory}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13619 +#: guix-git/doc/guix.texi:13976 msgid "Cache archives and meta-data (@code{.narinfo} URLs) to @var{directory} and only serve archives that are in cache." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13627 +#: guix-git/doc/guix.texi:13984 msgid "When this option is omitted, archives and meta-data are created on-the-fly. This can reduce the available bandwidth, especially when compression is enabled, since this may become CPU-bound. Another drawback of the default mode is that the length of archives is not known in advance, so @command{guix publish} does not add a @code{Content-Length} HTTP header to its responses, which in turn prevents clients from knowing the amount of data being downloaded." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13635 +#: guix-git/doc/guix.texi:13992 msgid "Conversely, when @option{--cache} is used, the first request for a store item (@i{via} a @code{.narinfo} URL) triggers a background process to @dfn{bake} the archive---computing its @code{.narinfo} and compressing the archive, if needed. Once the archive is cached in @var{directory}, subsequent requests succeed and are served directly from the cache, which guarantees that clients get the best possible bandwidth." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13642 +#: guix-git/doc/guix.texi:13999 msgid "That first @code{.narinfo} request nonetheless returns 200, provided the requested store item is ``small enough'', below the cache bypass threshold---see @option{--cache-bypass-threshold} below. That way, clients do not have to wait until the archive is baked. For larger store items, the first @code{.narinfo} request returns 404, meaning that clients have to wait until the archive is baked." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13646 +#: guix-git/doc/guix.texi:14003 msgid "The ``baking'' process is performed by worker threads. By default, one thread per CPU core is created, but this can be customized. See @option{--workers} below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13649 +#: guix-git/doc/guix.texi:14006 msgid "When @option{--ttl} is used, cached entries are automatically deleted when they have expired." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13650 +#: guix-git/doc/guix.texi:14007 #, no-wrap msgid "--workers=@var{N}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13653 +#: guix-git/doc/guix.texi:14010 msgid "When @option{--cache} is used, request the allocation of @var{N} worker threads to ``bake'' archives." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13654 +#: guix-git/doc/guix.texi:14011 #, no-wrap msgid "--ttl=@var{ttl}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13658 +#: guix-git/doc/guix.texi:14015 msgid "Produce @code{Cache-Control} HTTP headers that advertise a time-to-live (TTL) of @var{ttl}. @var{ttl} must denote a duration: @code{5d} means 5 days, @code{1m} means 1 month, and so on." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13663 +#: guix-git/doc/guix.texi:14020 msgid "This allows the user's Guix to keep substitute information in cache for @var{ttl}. However, note that @code{guix publish} does not itself guarantee that the store items it provides will indeed remain available for as long as @var{ttl}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13667 +#: guix-git/doc/guix.texi:14024 msgid "Additionally, when @option{--cache} is used, cached entries that have not been accessed for @var{ttl} and that no longer have a corresponding item in the store, may be deleted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13668 +#: guix-git/doc/guix.texi:14025 #, no-wrap msgid "--negative-ttl=@var{ttl}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13673 +#: guix-git/doc/guix.texi:14030 msgid "Similarly produce @code{Cache-Control} HTTP headers to advertise the time-to-live (TTL) of @emph{negative} lookups---missing store items, for which the HTTP 404 code is returned. By default, no negative TTL is advertised." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13677 +#: guix-git/doc/guix.texi:14034 msgid "This parameter can help adjust server load and substitute latency by instructing cooperating clients to be more or less patient when a store item is missing." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13678 +#: guix-git/doc/guix.texi:14035 #, no-wrap msgid "--cache-bypass-threshold=@var{size}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13683 +#: guix-git/doc/guix.texi:14040 msgid "When used in conjunction with @option{--cache}, store items smaller than @var{size} are immediately available, even when they are not yet in cache. @var{size} is a size in bytes, or it can be suffixed by @code{M} for megabytes and so on. The default is @code{10M}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13688 +#: guix-git/doc/guix.texi:14045 msgid "``Cache bypass'' allows you to reduce the publication delay for clients at the expense of possibly additional I/O and CPU use on the server side: depending on the client access patterns, those store items can end up being baked several times until a copy is available in cache." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13692 +#: guix-git/doc/guix.texi:14049 msgid "Increasing the threshold may be useful for sites that have few users, or to guarantee that users get substitutes even for store items that are not popular." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13693 +#: guix-git/doc/guix.texi:14050 #, no-wrap msgid "--nar-path=@var{path}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13696 +#: guix-git/doc/guix.texi:14053 msgid "Use @var{path} as the prefix for the URLs of ``nar'' files (@pxref{Invoking guix archive, normalized archives})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13700 +#: guix-git/doc/guix.texi:14057 msgid "By default, nars are served at a URL such as @code{/nar/gzip/@dots{}-coreutils-8.25}. This option allows you to change the @code{/nar} part to @var{path}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13701 +#: guix-git/doc/guix.texi:14058 #, no-wrap msgid "--public-key=@var{file}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13702 +#: guix-git/doc/guix.texi:14059 #, no-wrap msgid "--private-key=@var{file}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13705 guix-git/doc/guix.texi:29141 -#: guix-git/doc/guix.texi:29178 +#: guix-git/doc/guix.texi:14062 guix-git/doc/guix.texi:29478 +#: guix-git/doc/guix.texi:29515 msgid "Use the specific @var{file}s as the public/private key pair used to sign the store items being published." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13712 +#: guix-git/doc/guix.texi:14069 msgid "The files must correspond to the same key pair (the private key is used for signing and the public key is merely advertised in the signature metadata). They must contain keys in the canonical s-expression format as produced by @command{guix archive --generate-key} (@pxref{Invoking guix archive}). By default, @file{/etc/guix/signing-key.pub} and @file{/etc/guix/signing-key.sec} are used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13713 +#: guix-git/doc/guix.texi:14070 #, no-wrap msgid "--repl[=@var{port}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13714 +#: guix-git/doc/guix.texi:14071 #, no-wrap msgid "-r [@var{port}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13718 +#: guix-git/doc/guix.texi:14075 msgid "Spawn a Guile REPL server (@pxref{REPL Servers,,, guile, GNU Guile Reference Manual}) on @var{port} (37146 by default). This is used primarily for debugging a running @command{guix publish} server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13724 +#: guix-git/doc/guix.texi:14081 msgid "Enabling @command{guix publish} on Guix System is a one-liner: just instantiate a @code{guix-publish-service-type} service in the @code{services} field of the @code{operating-system} declaration (@pxref{guix-publish-service-type, @code{guix-publish-service-type}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13727 +#: guix-git/doc/guix.texi:14084 msgid "If you are instead running Guix on a ``foreign distro'', follow these instructions:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:13731 +#: guix-git/doc/guix.texi:14088 msgid "If your host distro uses the systemd init system:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13736 +#: guix-git/doc/guix.texi:14093 #, no-wrap msgid "" "# ln -s ~root/.guix-profile/lib/systemd/system/guix-publish.service \\\n" @@ -24411,7 +25036,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13744 +#: guix-git/doc/guix.texi:14101 #, no-wrap msgid "" "# ln -s ~root/.guix-profile/lib/upstart/system/guix-publish.conf /etc/init/\n" @@ -24419,56 +25044,56 @@ msgid "" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:13748 +#: guix-git/doc/guix.texi:14105 msgid "Otherwise, proceed similarly with your distro's init system." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13751 +#: guix-git/doc/guix.texi:14108 #, no-wrap msgid "Invoking @command{guix challenge}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13754 +#: guix-git/doc/guix.texi:14111 #, no-wrap msgid "verifiable builds" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13755 +#: guix-git/doc/guix.texi:14112 #, no-wrap msgid "guix challenge" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13756 +#: guix-git/doc/guix.texi:14113 #, no-wrap msgid "challenge" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13761 +#: guix-git/doc/guix.texi:14118 msgid "Do the binaries provided by this server really correspond to the source code it claims to build? Is a package build process deterministic? These are the questions the @command{guix challenge} command attempts to answer." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13769 +#: guix-git/doc/guix.texi:14126 msgid "The former is obviously an important question: Before using a substitute server (@pxref{Substitutes}), one had better @emph{verify} that it provides the right binaries, and thus @emph{challenge} it. The latter is what enables the former: If package builds are deterministic, then independent builds of the package should yield the exact same result, bit for bit; if a server provides a binary different from the one obtained locally, it may be either corrupt or malicious." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13778 +#: guix-git/doc/guix.texi:14135 msgid "We know that the hash that shows up in @file{/gnu/store} file names is the hash of all the inputs of the process that built the file or directory---compilers, libraries, build scripts, etc. (@pxref{Introduction}). Assuming deterministic build processes, one store file name should map to exactly one build output. @command{guix challenge} checks whether there is, indeed, a single mapping by comparing the build outputs of several independent builds of any given store item." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13780 +#: guix-git/doc/guix.texi:14137 msgid "The command output looks like this:" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13792 +#: guix-git/doc/guix.texi:14149 #, no-wrap msgid "" "$ guix challenge --substitute-urls=\"https://@value{SUBSTITUTE-SERVER-1} https://guix.example.org\"\n" @@ -24485,7 +25110,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13799 +#: guix-git/doc/guix.texi:14156 #, no-wrap msgid "" "/gnu/store/@dots{}-git-2.5.0 contents differ:\n" @@ -24498,7 +25123,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13806 +#: guix-git/doc/guix.texi:14163 #, no-wrap msgid "" "/gnu/store/@dots{}-pius-2.1.1 contents differ:\n" @@ -24511,7 +25136,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13808 +#: guix-git/doc/guix.texi:14165 #, no-wrap msgid "" "@dots{}\n" @@ -24519,7 +25144,7 @@ msgid "" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:13813 +#: guix-git/doc/guix.texi:14170 #, no-wrap msgid "" "6,406 store items were analyzed:\n" @@ -24529,28 +25154,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13821 +#: guix-git/doc/guix.texi:14178 msgid "In this example, @command{guix challenge} first scans the store to determine the set of locally-built derivations---as opposed to store items that were downloaded from a substitute server---and then queries all the substitute servers. It then reports those store items for which the servers obtained a result different from the local build." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13822 +#: guix-git/doc/guix.texi:14179 #, no-wrap msgid "non-determinism, in package builds" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13833 +#: guix-git/doc/guix.texi:14190 msgid "As an example, @code{guix.example.org} always gets a different answer. Conversely, @code{@value{SUBSTITUTE-SERVER-1}} agrees with local builds, except in the case of Git. This might indicate that the build process of Git is non-deterministic, meaning that its output varies as a function of various things that Guix does not fully control, in spite of building packages in isolated environments (@pxref{Features}). Most common sources of non-determinism include the addition of timestamps in build results, the inclusion of random numbers, and directory listings sorted by inode number. See @uref{https://reproducible-builds.org/docs/}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13836 +#: guix-git/doc/guix.texi:14193 msgid "To find out what is wrong with this Git binary, the easiest approach is to run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13841 +#: guix-git/doc/guix.texi:14198 #, no-wrap msgid "" "guix challenge git \\\n" @@ -24559,17 +25184,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13845 +#: guix-git/doc/guix.texi:14202 msgid "This automatically invokes @command{diffoscope}, which displays detailed information about files that differ." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13848 +#: guix-git/doc/guix.texi:14205 msgid "Alternatively, we can do something along these lines (@pxref{Invoking guix archive}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13853 +#: guix-git/doc/guix.texi:14210 #, no-wrap msgid "" "$ wget -q -O - https://@value{SUBSTITUTE-SERVER-1}/nar/lzip/@dots{}-git-2.5.0 \\\n" @@ -24578,160 +25203,160 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13862 +#: guix-git/doc/guix.texi:14219 msgid "This command shows the difference between the files resulting from the local build, and the files resulting from the build on @code{@value{SUBSTITUTE-SERVER-1}} (@pxref{Overview, Comparing and Merging Files,, diffutils, Comparing and Merging Files}). The @command{diff} command works great for text files. When binary files differ, a better option is @uref{https://diffoscope.org/, Diffoscope}, a tool that helps visualize differences for all kinds of files." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13870 +#: guix-git/doc/guix.texi:14227 msgid "Once you have done that work, you can tell whether the differences are due to a non-deterministic build process or to a malicious server. We try hard to remove sources of non-determinism in packages to make it easier to verify substitutes, but of course, this is a process that involves not just Guix, but a large part of the free software community. In the meantime, @command{guix challenge} is one tool to help address the problem." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13874 +#: guix-git/doc/guix.texi:14231 msgid "If you are writing packages for Guix, you are encouraged to check whether @code{@value{SUBSTITUTE-SERVER-1}} and other substitute servers obtain the same build result as you did with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13877 +#: guix-git/doc/guix.texi:14234 #, no-wrap msgid "$ guix challenge @var{package}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13882 +#: guix-git/doc/guix.texi:14239 msgid "where @var{package} is a package specification such as @code{guile@@2.0} or @code{glibc:debug}." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13887 +#: guix-git/doc/guix.texi:14244 #, no-wrap msgid "guix challenge @var{options} [@var{packages}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13894 +#: guix-git/doc/guix.texi:14251 msgid "When a difference is found between the hash of a locally-built item and that of a server-provided substitute, or among substitutes provided by different servers, the command displays it as in the example above and its exit code is 2 (other non-zero exit codes denote other kinds of errors)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13896 +#: guix-git/doc/guix.texi:14253 msgid "The one option that matters is:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13902 +#: guix-git/doc/guix.texi:14259 msgid "Consider @var{urls} the whitespace-separated list of substitute source URLs to compare to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13903 +#: guix-git/doc/guix.texi:14260 #, fuzzy, no-wrap msgid "--diff=@var{mode}" msgstr "--rounds=@var{N}" #. type: table -#: guix-git/doc/guix.texi:13905 +#: guix-git/doc/guix.texi:14262 msgid "Upon mismatches, show differences according to @var{mode}, one of:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13907 +#: guix-git/doc/guix.texi:14264 #, fuzzy, no-wrap msgid "@code{simple} (the default)" msgstr "@code{speed}(默认值:@code{1.0})" #. type: table -#: guix-git/doc/guix.texi:13909 +#: guix-git/doc/guix.texi:14266 msgid "Show the list of files that differ." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:13910 +#: guix-git/doc/guix.texi:14267 #, no-wrap msgid "diffoscope" msgstr "" #. type: var{#1} -#: guix-git/doc/guix.texi:13911 +#: guix-git/doc/guix.texi:14268 #, no-wrap msgid "command" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13914 +#: guix-git/doc/guix.texi:14271 msgid "Invoke @uref{https://diffoscope.org/, Diffoscope}, passing it two directories whose contents do not match." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13917 +#: guix-git/doc/guix.texi:14274 msgid "When @var{command} is an absolute file name, run @var{command} instead of Diffoscope." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13920 +#: guix-git/doc/guix.texi:14277 msgid "Do not show further details about the differences." msgstr "" #. type: table -#: guix-git/doc/guix.texi:13925 +#: guix-git/doc/guix.texi:14282 msgid "Thus, unless @option{--diff=none} is passed, @command{guix challenge} downloads the store items from the given substitute servers so that it can compare them." msgstr "" #. type: item -#: guix-git/doc/guix.texi:13926 +#: guix-git/doc/guix.texi:14283 #, no-wrap msgid "--verbose" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13927 +#: guix-git/doc/guix.texi:14284 #, no-wrap msgid "-v" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13930 +#: guix-git/doc/guix.texi:14287 msgid "Show details about matches (identical contents) in addition to information about mismatches." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13934 +#: guix-git/doc/guix.texi:14291 #, no-wrap msgid "Invoking @command{guix copy}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13936 +#: guix-git/doc/guix.texi:14293 #, no-wrap msgid "copy, of store items, over SSH" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13937 +#: guix-git/doc/guix.texi:14294 #, no-wrap msgid "SSH, copy of store items" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13938 +#: guix-git/doc/guix.texi:14295 #, no-wrap msgid "sharing store items across machines" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:13939 +#: guix-git/doc/guix.texi:14296 #, no-wrap msgid "transferring store items across machines" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13946 +#: guix-git/doc/guix.texi:14303 msgid "The @command{guix copy} command copies items from the store of one machine to that of another machine over a secure shell (SSH) connection@footnote{This command is available only when Guile-SSH was found. @xref{Requirements}, for details.}. For example, the following command copies the @code{coreutils} package, the user's profile, and all their dependencies over to @var{host}, logged in as @var{user}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13950 +#: guix-git/doc/guix.texi:14307 #, no-wrap msgid "" "guix copy --to=@var{user}@@@var{host} \\\n" @@ -24739,192 +25364,192 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13954 +#: guix-git/doc/guix.texi:14311 msgid "If some of the items to be copied are already present on @var{host}, they are not actually sent." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13957 +#: guix-git/doc/guix.texi:14314 msgid "The command below retrieves @code{libreoffice} and @code{gimp} from @var{host}, assuming they are available there:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:13960 +#: guix-git/doc/guix.texi:14317 #, no-wrap msgid "guix copy --from=@var{host} libreoffice gimp\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13965 +#: guix-git/doc/guix.texi:14322 msgid "The SSH connection is established using the Guile-SSH client, which is compatible with OpenSSH: it honors @file{~/.ssh/known_hosts} and @file{~/.ssh/config}, and uses the SSH agent for authentication." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13971 +#: guix-git/doc/guix.texi:14328 msgid "The key used to sign items that are sent must be accepted by the remote machine. Likewise, the key used by the remote machine to sign items you are retrieving must be in @file{/etc/guix/acl} so it is accepted by your own daemon. @xref{Invoking guix archive}, for more information about store item authentication." msgstr "" #. type: example -#: guix-git/doc/guix.texi:13976 +#: guix-git/doc/guix.texi:14333 #, no-wrap msgid "guix copy [--to=@var{spec}|--from=@var{spec}] @var{items}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13979 +#: guix-git/doc/guix.texi:14336 msgid "You must always specify one of the following options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:13981 +#: guix-git/doc/guix.texi:14338 #, no-wrap msgid "--to=@var{spec}" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:13982 +#: guix-git/doc/guix.texi:14339 #, no-wrap msgid "--from=@var{spec}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:13986 +#: guix-git/doc/guix.texi:14343 msgid "Specify the host to send to or receive from. @var{spec} must be an SSH spec such as @code{example.org}, @code{charlie@@example.org}, or @code{charlie@@example.org:2222}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13990 +#: guix-git/doc/guix.texi:14347 msgid "The @var{items} can be either package names, such as @code{gimp}, or store items, such as @file{/gnu/store/@dots{}-idutils-4.6}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:13994 +#: guix-git/doc/guix.texi:14351 msgid "When specifying the name of a package to send, it is first built if needed, unless @option{--dry-run} was specified. Common build options are supported (@pxref{Common Build Options})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:13997 +#: guix-git/doc/guix.texi:14354 #, no-wrap msgid "Invoking @command{guix container}" msgstr "" #. type: command{#1} -#: guix-git/doc/guix.texi:13999 +#: guix-git/doc/guix.texi:14356 #, no-wrap msgid "guix container" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:14003 +#: guix-git/doc/guix.texi:14360 msgid "As of version @value{VERSION}, this tool is experimental. The interface is subject to radical change in the future." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14010 +#: guix-git/doc/guix.texi:14367 msgid "The purpose of @command{guix container} is to manipulate processes running within an isolated environment, commonly known as a ``container'', typically created by the @command{guix shell} (@pxref{Invoking guix shell}) and @command{guix system container} (@pxref{Invoking guix system}) commands." msgstr "" #. type: example -#: guix-git/doc/guix.texi:14015 +#: guix-git/doc/guix.texi:14372 #, no-wrap msgid "guix container @var{action} @var{options}@dots{}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14019 +#: guix-git/doc/guix.texi:14376 msgid "@var{action} specifies the operation to perform with a container, and @var{options} specifies the context-specific arguments for the action." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14021 +#: guix-git/doc/guix.texi:14378 msgid "The following actions are available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14023 +#: guix-git/doc/guix.texi:14380 #, no-wrap msgid "exec" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14025 +#: guix-git/doc/guix.texi:14382 msgid "Execute a command within the context of a running container." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14027 +#: guix-git/doc/guix.texi:14384 msgid "The syntax is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14030 +#: guix-git/doc/guix.texi:14387 #, no-wrap msgid "guix container exec @var{pid} @var{program} @var{arguments}@dots{}\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14036 +#: guix-git/doc/guix.texi:14393 msgid "@var{pid} specifies the process ID of the running container. @var{program} specifies an executable file name within the root file system of the container. @var{arguments} are the additional options that will be passed to @var{program}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14040 +#: guix-git/doc/guix.texi:14397 msgid "The following command launches an interactive login shell inside a Guix system container, started by @command{guix system container}, and whose process ID is 9001:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14043 +#: guix-git/doc/guix.texi:14400 #, no-wrap msgid "guix container exec 9001 /run/current-system/profile/bin/bash --login\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14047 +#: guix-git/doc/guix.texi:14404 msgid "Note that the @var{pid} cannot be the parent process of a container. It must be PID 1 of the container or one of its child processes." msgstr "" #. type: section -#: guix-git/doc/guix.texi:14051 +#: guix-git/doc/guix.texi:14408 #, no-wrap msgid "Invoking @command{guix weather}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14060 +#: guix-git/doc/guix.texi:14417 msgid "Occasionally you're grumpy because substitutes are lacking and you end up building packages by yourself (@pxref{Substitutes}). The @command{guix weather} command reports on substitute availability on the specified servers so you can have an idea of whether you'll be grumpy today. It can sometimes be useful info as a user, but it is primarily useful to people running @command{guix publish} (@pxref{Invoking guix publish})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14061 +#: guix-git/doc/guix.texi:14418 #, no-wrap msgid "statistics, for substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14062 +#: guix-git/doc/guix.texi:14419 #, no-wrap msgid "availability of substitutes" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14063 +#: guix-git/doc/guix.texi:14420 #, no-wrap msgid "substitute availability" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14064 +#: guix-git/doc/guix.texi:14421 #, no-wrap msgid "weather, substitute availability" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14066 +#: guix-git/doc/guix.texi:14423 msgid "Here's a sample run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14078 +#: guix-git/doc/guix.texi:14435 #, no-wrap msgid "" "$ guix weather --substitute-urls=https://guix.example.org\n" @@ -24941,7 +25566,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14088 +#: guix-git/doc/guix.texi:14445 #, no-wrap msgid "" " 9.8% (342 out of 3,470) of the missing items are queued\n" @@ -24956,76 +25581,71 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14090 +#: guix-git/doc/guix.texi:14447 #, no-wrap msgid "continuous integration, statistics" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14101 +#: guix-git/doc/guix.texi:14458 msgid "As you can see, it reports the fraction of all the packages for which substitutes are available on the server---regardless of whether substitutes are enabled, and regardless of whether this server's signing key is authorized. It also reports the size of the compressed archives (``nars'') provided by the server, the size the corresponding store items occupy in the store (assuming deduplication is turned off), and the server's throughput. The second part gives continuous integration (CI) statistics, if the server supports it. In addition, using the @option{--coverage} option, @command{guix weather} can list ``important'' package substitutes missing on the server (see below)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14107 +#: guix-git/doc/guix.texi:14464 msgid "To achieve that, @command{guix weather} queries over HTTP(S) meta-data (@dfn{narinfos}) for all the relevant store items. Like @command{guix challenge}, it ignores signatures on those substitutes, which is innocuous since the command only gathers statistics and cannot install those substitutes." msgstr "" #. type: example -#: guix-git/doc/guix.texi:14112 +#: guix-git/doc/guix.texi:14469 #, no-wrap msgid "guix weather @var{options}@dots{} [@var{packages}@dots{}]\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14120 +#: guix-git/doc/guix.texi:14477 msgid "When @var{packages} is omitted, @command{guix weather} checks the availability of substitutes for @emph{all} the packages, or for those specified with @option{--manifest}; otherwise it only considers the specified packages. It is also possible to query specific system types with @option{--system}. @command{guix weather} exits with a non-zero code when the fraction of available substitutes is below 100%." msgstr "" -#. type: Plain text -#: guix-git/doc/guix.texi:14122 -msgid "The available options are listed below." -msgstr "" - #. type: table -#: guix-git/doc/guix.texi:14128 +#: guix-git/doc/guix.texi:14485 msgid "@var{urls} is the space-separated list of substitute server URLs to query. When this option is omitted, the default set of substitute servers is queried." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14134 +#: guix-git/doc/guix.texi:14491 msgid "Query substitutes for @var{system}---e.g., @code{aarch64-linux}. This option can be repeated, in which case @command{guix weather} will query substitutes for several system types." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14140 +#: guix-git/doc/guix.texi:14497 msgid "Instead of querying substitutes for all the packages, only ask for those specified in @var{file}. @var{file} must contain a @dfn{manifest}, as with the @code{-m} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14143 +#: guix-git/doc/guix.texi:14500 msgid "This option can be repeated several times, in which case the manifests are concatenated." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14144 +#: guix-git/doc/guix.texi:14501 #, no-wrap msgid "--coverage[=@var{count}]" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:14145 +#: guix-git/doc/guix.texi:14502 #, no-wrap msgid "-c [@var{count}]" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14151 +#: guix-git/doc/guix.texi:14508 msgid "Report on substitute coverage for packages: list packages with at least @var{count} dependents (zero by default) for which substitutes are unavailable. Dependent packages themselves are not listed: if @var{b} depends on @var{a} and @var{a} has no substitutes, only @var{a} is listed, even though @var{b} usually lacks substitutes as well. The result looks like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14165 +#: guix-git/doc/guix.texi:14522 #, no-wrap msgid "" "$ guix weather --substitute-urls=@value{SUBSTITUTE-URLS} -c 10\n" @@ -25043,39 +25663,39 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14171 +#: guix-git/doc/guix.texi:14528 msgid "What this example shows is that @code{kcoreaddons} and presumably the 58 packages that depend on it have no substitutes at @code{@value{SUBSTITUTE-SERVER-1}}; likewise for @code{qgpgme} and the 46 packages that depend on it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14175 +#: guix-git/doc/guix.texi:14532 msgid "If you are a Guix developer, or if you are taking care of this build farm, you'll probably want to have a closer look at these packages: they may simply fail to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14176 +#: guix-git/doc/guix.texi:14533 #, no-wrap msgid "--display-missing" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14178 +#: guix-git/doc/guix.texi:14535 msgid "Display the list of store items for which substitutes are missing." msgstr "" #. type: section -#: guix-git/doc/guix.texi:14181 +#: guix-git/doc/guix.texi:14538 #, no-wrap msgid "Invoking @command{guix processes}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14189 +#: guix-git/doc/guix.texi:14546 msgid "The @command{guix processes} command can be useful to developers and system administrators, especially on multi-user machines and on build farms: it lists the current sessions (connections to the daemon), as well as information about the processes involved@footnote{Remote sessions, when @command{guix-daemon} is started with @option{--listen} specifying a TCP endpoint, are @emph{not} listed.}. Here's an example of the information it returns:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14195 +#: guix-git/doc/guix.texi:14552 #, no-wrap msgid "" "$ sudo guix processes\n" @@ -25086,7 +25706,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14199 +#: guix-git/doc/guix.texi:14556 #, no-wrap msgid "" "SessionPID: 19402\n" @@ -25096,7 +25716,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14212 +#: guix-git/doc/guix.texi:14569 #, no-wrap msgid "" "SessionPID: 19444\n" @@ -25114,22 +25734,22 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14219 +#: guix-git/doc/guix.texi:14576 msgid "In this example we see that @command{guix-daemon} has three clients: @command{guix environment}, @command{guix publish}, and the Cuirass continuous integration tool; their process identifier (PID) is given by the @code{ClientPID} field. The @code{SessionPID} field gives the PID of the @command{guix-daemon} sub-process of this particular session." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14226 +#: guix-git/doc/guix.texi:14583 msgid "The @code{LockHeld} fields show which store items are currently locked by this session, which corresponds to store items being built or substituted (the @code{LockHeld} field is not displayed when @command{guix processes} is not running as root). Last, by looking at the @code{ChildPID} and @code{ChildCommand} fields, we understand that these three builds are being offloaded (@pxref{Daemon Offload Setup})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14231 +#: guix-git/doc/guix.texi:14588 msgid "The output is in Recutils format so we can use the handy @command{recsel} command to select sessions of interest (@pxref{Selection Expressions,,, recutils, GNU recutils manual}). As an example, the command shows the command line and PID of the client that triggered the build of a Perl package:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14237 +#: guix-git/doc/guix.texi:14594 #, no-wrap msgid "" "$ sudo guix processes | \\\n" @@ -25139,29 +25759,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14240 +#: guix-git/doc/guix.texi:14597 #, fuzzy msgid "Additional options are listed below." msgstr "额外的构建选项" #. type: table -#: guix-git/doc/guix.texi:14250 +#: guix-git/doc/guix.texi:14607 msgid "The default option. It outputs a set of Session recutils records that include each @code{ChildProcess} as a field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14251 +#: guix-git/doc/guix.texi:14608 #, no-wrap msgid "normalized" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14258 +#: guix-git/doc/guix.texi:14615 msgid "Normalize the output records into record sets (@pxref{Record Sets,,, recutils, GNU recutils manual}). Normalizing into record sets allows joins across record types. The example below lists the PID of each @code{ChildProcess} and the associated PID for @code{Session} that spawned the @code{ChildProcess} where the @code{Session} was started using @command{guix build}." msgstr "" #. type: example -#: guix-git/doc/guix.texi:14268 +#: guix-git/doc/guix.texi:14625 #, no-wrap msgid "" "$ guix processes --format=normalized | \\\n" @@ -25176,7 +25796,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14271 +#: guix-git/doc/guix.texi:14628 #, no-wrap msgid "" "PID: 4554\n" @@ -25185,7 +25805,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:14274 +#: guix-git/doc/guix.texi:14631 #, no-wrap msgid "" "PID: 4646\n" @@ -25193,90 +25813,90 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14281 +#: guix-git/doc/guix.texi:14638 #, no-wrap msgid "system configuration" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14287 +#: guix-git/doc/guix.texi:14644 msgid "Guix System supports a consistent whole-system configuration mechanism. By that we mean that all aspects of the global system configuration---such as the available system services, timezone and locale settings, user accounts---are declared in a single place. Such a @dfn{system configuration} can be @dfn{instantiated}---i.e., effected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14297 +#: guix-git/doc/guix.texi:14654 msgid "One of the advantages of putting all the system configuration under the control of Guix is that it supports transactional system upgrades, and makes it possible to roll back to a previous system instantiation, should something go wrong with the new one (@pxref{Features}). Another advantage is that it makes it easy to replicate the exact same configuration across different machines, or at different points in time, without having to resort to additional administration tools layered on top of the own tools of the system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14302 +#: guix-git/doc/guix.texi:14659 msgid "This section describes this mechanism. First we focus on the system administrator's viewpoint---explaining how the system is configured and instantiated. Then we show how this mechanism can be extended, for instance to support new system services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14332 +#: guix-git/doc/guix.texi:14689 msgid "The operating system is configured by providing an @code{operating-system} declaration in a file that can then be passed to the @command{guix system} command (@pxref{Invoking guix system}). A simple setup, with the default system services, the default Linux-Libre kernel, initial RAM disk, and boot loader looks like this:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14333 guix-git/doc/guix.texi:35553 +#: guix-git/doc/guix.texi:14690 guix-git/doc/guix.texi:36033 #, no-wrap msgid "operating-system" msgstr "" #. type: include -#: guix-git/doc/guix.texi:14335 +#: guix-git/doc/guix.texi:14692 #, no-wrap msgid "os-config-bare-bones.texi" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14342 +#: guix-git/doc/guix.texi:14699 msgid "This example should be self-describing. Some of the fields defined above, such as @code{host-name} and @code{bootloader}, are mandatory. Others, such as @code{packages} and @code{services}, can be omitted, in which case they get a default value." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14347 +#: guix-git/doc/guix.texi:14704 msgid "Below we discuss the effect of some of the most important fields (@pxref{operating-system Reference}, for details about all the available fields), and how to @dfn{instantiate} the operating system using @command{guix system}." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14348 +#: guix-git/doc/guix.texi:14705 #, no-wrap msgid "Bootloader" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14350 +#: guix-git/doc/guix.texi:14707 #, no-wrap msgid "legacy boot, on Intel machines" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14351 +#: guix-git/doc/guix.texi:14708 #, no-wrap msgid "BIOS boot, on Intel machines" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14352 +#: guix-git/doc/guix.texi:14709 #, no-wrap msgid "UEFI boot" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14353 +#: guix-git/doc/guix.texi:14710 #, no-wrap msgid "EFI boot" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14359 +#: guix-git/doc/guix.texi:14716 msgid "The @code{bootloader} field describes the method that will be used to boot your system. Machines based on Intel processors can boot in ``legacy'' BIOS mode, as in the example above. However, more recent machines rely instead on the @dfn{Unified Extensible Firmware Interface} (UEFI) to boot. In that case, the @code{bootloader} field should contain something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14364 +#: guix-git/doc/guix.texi:14721 #, no-wrap msgid "" "(bootloader-configuration\n" @@ -25285,29 +25905,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14368 +#: guix-git/doc/guix.texi:14725 msgid "@xref{Bootloader Configuration}, for more information on the available configuration options." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14369 +#: guix-git/doc/guix.texi:14726 #, no-wrap msgid "Globally-Visible Packages" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:14371 +#: guix-git/doc/guix.texi:14728 #, no-wrap msgid "%base-packages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14384 +#: guix-git/doc/guix.texi:14741 msgid "The @code{packages} field lists packages that will be globally visible on the system, for all user accounts---i.e., in every user's @env{PATH} environment variable---in addition to the per-user profiles (@pxref{Invoking guix package}). The @code{%base-packages} variable provides all the tools one would expect for basic user and administrator tasks---including the GNU Core Utilities, the GNU Networking Utilities, the @command{mg} lightweight text editor, @command{find}, @command{grep}, etc. The example above adds GNU@tie{}Screen to those, taken from the @code{(gnu packages screen)} module (@pxref{Package Modules}). The @code{(list package output)} syntax can be used to add a specific output of a package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14388 +#: guix-git/doc/guix.texi:14745 #, no-wrap msgid "" "(use-modules (gnu packages))\n" @@ -25316,7 +25936,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14393 +#: guix-git/doc/guix.texi:14750 #, no-wrap msgid "" "(operating-system\n" @@ -25326,18 +25946,18 @@ msgid "" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:14395 +#: guix-git/doc/guix.texi:14752 #, no-wrap msgid "specification->package" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14404 +#: guix-git/doc/guix.texi:14761 msgid "Referring to packages by variable name, like @code{isc-bind} above, has the advantage of being unambiguous; it also allows typos and such to be diagnosed right away as ``unbound variables''. The downside is that one needs to know which module defines which package, and to augment the @code{use-package-modules} line accordingly. To avoid that, one can use the @code{specification->package} procedure of the @code{(gnu packages)} module, which returns the best package for a given name or name and version:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14407 +#: guix-git/doc/guix.texi:14764 #, no-wrap msgid "" "(use-modules (gnu packages))\n" @@ -25345,7 +25965,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14413 +#: guix-git/doc/guix.texi:14770 #, no-wrap msgid "" "(operating-system\n" @@ -25356,58 +25976,58 @@ msgid "" msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14415 +#: guix-git/doc/guix.texi:14772 #, no-wrap msgid "System Services" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14417 guix-git/doc/guix.texi:34307 -#: guix-git/doc/guix.texi:35783 +#: guix-git/doc/guix.texi:14774 guix-git/doc/guix.texi:34746 +#: guix-git/doc/guix.texi:36273 #, no-wrap msgid "services" msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:14418 +#: guix-git/doc/guix.texi:14775 #, no-wrap msgid "%base-services" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14428 +#: guix-git/doc/guix.texi:14785 msgid "The @code{services} field lists @dfn{system services} to be made available when the system starts (@pxref{Services}). The @code{operating-system} declaration above specifies that, in addition to the basic services, we want the OpenSSH secure shell daemon listening on port 2222 (@pxref{Networking Services, @code{openssh-service-type}}). Under the hood, @code{openssh-service-type} arranges so that @command{sshd} is started with the right command-line options, possibly with supporting configuration files generated as needed (@pxref{Defining Services})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14429 +#: guix-git/doc/guix.texi:14786 #, no-wrap msgid "customization, of services" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:14430 +#: guix-git/doc/guix.texi:14787 #, no-wrap msgid "modify-services" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14434 +#: guix-git/doc/guix.texi:14791 msgid "Occasionally, instead of using the base services as is, you will want to customize them. To do this, use @code{modify-services} (@pxref{Service Reference, @code{modify-services}}) to modify the list." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:14440 +#: guix-git/doc/guix.texi:14797 msgid "auto-login to TTY" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14440 +#: guix-git/doc/guix.texi:14797 msgid "For example, suppose you want to modify @code{guix-daemon} and Mingetty (the console log-in) in the @code{%base-services} list (@pxref{Base Services, @code{%base-services}}). To do that, you can write the following in your operating system declaration:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14457 +#: guix-git/doc/guix.texi:14814 #, no-wrap msgid "" "(define %my-services\n" @@ -25423,13 +26043,13 @@ msgid "" " (mingetty-service-type config =>\n" " (mingetty-configuration\n" " (inherit config)\n" -" ;; Automatially log in as \"guest\".\n" +" ;; Automatically log in as \"guest\".\n" " (auto-login \"guest\")))))\n" "\n" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14461 +#: guix-git/doc/guix.texi:14818 #, no-wrap msgid "" "(operating-system\n" @@ -25438,49 +26058,49 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14474 +#: guix-git/doc/guix.texi:14831 msgid "This changes the configuration---i.e., the service parameters---of the @code{guix-service-type} instance, and that of all the @code{mingetty-service-type} instances in the @code{%base-services} list (@pxref{Auto-Login to a Specific TTY, see the cookbook for how to auto-login one user to a specific TTY,, guix-cookbook, GNU Guix Cookbook})). Observe how this is accomplished: first, we arrange for the original configuration to be bound to the identifier @code{config} in the @var{body}, and then we write the @var{body} so that it evaluates to the desired configuration. In particular, notice how we use @code{inherit} to create a new configuration which has the same values as the old configuration, but with a few modifications." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14481 +#: guix-git/doc/guix.texi:14838 msgid "The configuration for a typical ``desktop'' usage, with an encrypted root partition, a swap file on the root partition, the X11 display server, GNOME and Xfce (users can choose which of these desktop environments to use at the log-in screen by pressing @kbd{F1}), network management, power management, and more, would look like this:" msgstr "" #. type: include -#: guix-git/doc/guix.texi:14483 +#: guix-git/doc/guix.texi:14840 #, no-wrap msgid "os-config-desktop.texi" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14488 +#: guix-git/doc/guix.texi:14845 msgid "A graphical system with a choice of lightweight window managers instead of full-blown desktop environments would look like this:" msgstr "" #. type: include -#: guix-git/doc/guix.texi:14490 +#: guix-git/doc/guix.texi:14847 #, no-wrap msgid "os-config-lightweight-desktop.texi" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14496 +#: guix-git/doc/guix.texi:14853 msgid "This example refers to the @file{/boot/efi} file system by its UUID, @code{1234-ABCD}. Replace this UUID with the right UUID on your system, as returned by the @command{blkid} command." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14500 +#: guix-git/doc/guix.texi:14857 msgid "@xref{Desktop Services}, for the exact list of services provided by @code{%desktop-services}. @xref{X.509 Certificates}, for background information about the @code{nss-certs} package that is used here." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14507 +#: guix-git/doc/guix.texi:14864 msgid "Again, @code{%desktop-services} is just a list of service objects. If you want to remove services from there, you can do so using the procedures for list filtering (@pxref{SRFI-1 Filtering and Partitioning,,, guile, GNU Guile Reference Manual}). For instance, the following expression returns a list that contains all the services in @code{%desktop-services} minus the Avahi service:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14512 +#: guix-git/doc/guix.texi:14869 #, no-wrap msgid "" "(remove (lambda (service)\n" @@ -25489,12 +26109,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14515 +#: guix-git/doc/guix.texi:14872 msgid "Alternatively, the @code{modify-services} macro can be used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14519 +#: guix-git/doc/guix.texi:14876 #, no-wrap msgid "" "(modify-services %desktop-services\n" @@ -25502,356 +26122,356 @@ msgid "" msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14522 +#: guix-git/doc/guix.texi:14879 #, no-wrap msgid "Instantiating the System" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14529 +#: guix-git/doc/guix.texi:14886 msgid "Assuming the @code{operating-system} declaration is stored in the @file{my-system-config.scm} file, the @command{guix system reconfigure my-system-config.scm} command instantiates that configuration, and makes it the default GRUB boot entry (@pxref{Invoking guix system})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14537 +#: guix-git/doc/guix.texi:14894 msgid "The normal way to change the system configuration is by updating this file and re-running @command{guix system reconfigure}. One should never have to touch files in @file{/etc} or to run commands that modify the system state such as @command{useradd} or @command{grub-install}. In fact, you must avoid that since that would not only void your warranty but also prevent you from rolling back to previous versions of your system, should you ever need to." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14538 +#: guix-git/doc/guix.texi:14895 #, no-wrap msgid "roll-back, of the operating system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14548 +#: guix-git/doc/guix.texi:14905 msgid "Speaking of roll-back, each time you run @command{guix system reconfigure}, a new @dfn{generation} of the system is created---without modifying or deleting previous generations. Old system generations get an entry in the bootloader boot menu, allowing you to boot them in case something went wrong with the latest generation. Reassuring, no? The @command{guix system list-generations} command lists the system generations available on disk. It is also possible to roll back the system via the commands @command{guix system roll-back} and @command{guix system switch-generation}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14554 +#: guix-git/doc/guix.texi:14911 msgid "Although the @command{guix system reconfigure} command will not modify previous generations, you must take care when the current generation is not the latest (e.g., after invoking @command{guix system roll-back}), since the operation might overwrite a later generation (@pxref{Invoking guix system})." msgstr "" #. type: unnumberedsubsec -#: guix-git/doc/guix.texi:14555 +#: guix-git/doc/guix.texi:14912 #, no-wrap msgid "The Programming Interface" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14560 +#: guix-git/doc/guix.texi:14917 msgid "At the Scheme level, the bulk of an @code{operating-system} declaration is instantiated with the following monadic procedure (@pxref{The Store Monad}):" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14561 +#: guix-git/doc/guix.texi:14918 #, no-wrap msgid "{Monadic Procedure} operating-system-derivation os" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14564 +#: guix-git/doc/guix.texi:14921 msgid "Return a derivation that builds @var{os}, an @code{operating-system} object (@pxref{Derivations})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14568 +#: guix-git/doc/guix.texi:14925 msgid "The output of the derivation is a single directory that refers to all the packages, configuration files, and other supporting files needed to instantiate @var{os}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14573 +#: guix-git/doc/guix.texi:14930 msgid "This procedure is provided by the @code{(gnu system)} module. Along with @code{(gnu services)} (@pxref{Services}), this module contains the guts of Guix System. Make sure to visit it!" msgstr "" #. type: section -#: guix-git/doc/guix.texi:14576 +#: guix-git/doc/guix.texi:14933 #, no-wrap msgid "@code{operating-system} Reference" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14581 +#: guix-git/doc/guix.texi:14938 msgid "This section summarizes all the options available in @code{operating-system} declarations (@pxref{Using the Configuration System})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14582 +#: guix-git/doc/guix.texi:14939 #, no-wrap msgid "{Data Type} operating-system" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14586 +#: guix-git/doc/guix.texi:14943 msgid "This is the data type representing an operating system configuration. By that, we mean all the global system configuration, not per-user configuration (@pxref{Using the Configuration System})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14588 +#: guix-git/doc/guix.texi:14945 #, fuzzy, no-wrap msgid "@code{kernel} (default: @code{linux-libre})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: table -#: guix-git/doc/guix.texi:14593 +#: guix-git/doc/guix.texi:14950 msgid "The package object of the operating system kernel to use@footnote{Currently only the Linux-libre kernel is fully supported. Using GNU@tie{}mach with the GNU@tie{}Hurd is experimental and only available when building a virtual machine disk image.}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14594 guix-git/doc/guix.texi:30733 +#: guix-git/doc/guix.texi:14951 guix-git/doc/guix.texi:31098 #, no-wrap msgid "hurd" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14595 +#: guix-git/doc/guix.texi:14952 #, fuzzy, no-wrap msgid "@code{hurd} (default: @code{#f})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:14600 +#: guix-git/doc/guix.texi:14957 msgid "The package object of the Hurd to be started by the kernel. When this field is set, produce a GNU/Hurd operating system. In that case, @code{kernel} must also be set to the @code{gnumach} package---the microkernel the Hurd runs on." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:14603 +#: guix-git/doc/guix.texi:14960 msgid "This feature is experimental and only supported for disk images." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14605 +#: guix-git/doc/guix.texi:14962 #, fuzzy, no-wrap msgid "@code{kernel-loadable-modules} (default: '())" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:14608 +#: guix-git/doc/guix.texi:14965 msgid "A list of objects (usually packages) to collect loadable kernel modules from--e.g. @code{(list ddcci-driver-linux)}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14609 +#: guix-git/doc/guix.texi:14966 #, fuzzy, no-wrap msgid "@code{kernel-arguments} (default: @code{%default-kernel-arguments})" msgstr "@code{enlightenment}(默认值:@code{enlightenment})" #. type: table -#: guix-git/doc/guix.texi:14612 +#: guix-git/doc/guix.texi:14969 msgid "List of strings or gexps representing additional arguments to pass on the command-line of the kernel---e.g., @code{(\"console=ttyS0\")}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14613 guix-git/doc/guix.texi:34539 -#: guix-git/doc/guix.texi:34558 +#: guix-git/doc/guix.texi:14970 guix-git/doc/guix.texi:34978 +#: guix-git/doc/guix.texi:34997 #, no-wrap msgid "bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14615 +#: guix-git/doc/guix.texi:14972 msgid "The system bootloader configuration object. @xref{Bootloader Configuration}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14616 guix-git/doc/guix.texi:34732 +#: guix-git/doc/guix.texi:14973 guix-git/doc/guix.texi:35171 #, no-wrap msgid "label" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14619 +#: guix-git/doc/guix.texi:14976 msgid "This is the label (a string) as it appears in the bootloader's menu entry. The default label includes the kernel name and version." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14620 guix-git/doc/guix.texi:16318 -#: guix-git/doc/guix.texi:19503 guix-git/doc/guix.texi:34662 +#: guix-git/doc/guix.texi:14977 guix-git/doc/guix.texi:16675 +#: guix-git/doc/guix.texi:19865 guix-git/doc/guix.texi:35101 #, no-wrap msgid "@code{keyboard-layout} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14625 +#: guix-git/doc/guix.texi:14982 msgid "This field specifies the keyboard layout to use in the console. It can be either @code{#f}, in which case the default keyboard layout is used (usually US English), or a @code{} record. @xref{Keyboard Layout}, for more information." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14630 +#: guix-git/doc/guix.texi:14987 msgid "This keyboard layout is in effect as soon as the kernel has booted. For instance, it is the keyboard layout in effect when you type a passphrase if your root file system is on a @code{luks-device-mapping} mapped device (@pxref{Mapped Devices})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:14637 +#: guix-git/doc/guix.texi:14994 msgid "This does @emph{not} specify the keyboard layout used by the bootloader, nor that used by the graphical display server. @xref{Bootloader Configuration}, for information on how to specify the bootloader's keyboard layout. @xref{X Window}, for information on how to specify the keyboard layout used by the X Window System." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14639 +#: guix-git/doc/guix.texi:14996 #, no-wrap msgid "@code{initrd-modules} (default: @code{%base-initrd-modules})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14640 guix-git/doc/guix.texi:34344 -#: guix-git/doc/guix.texi:34467 +#: guix-git/doc/guix.texi:14997 guix-git/doc/guix.texi:34783 +#: guix-git/doc/guix.texi:34906 #, no-wrap msgid "initrd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14641 guix-git/doc/guix.texi:34345 -#: guix-git/doc/guix.texi:34468 +#: guix-git/doc/guix.texi:14998 guix-git/doc/guix.texi:34784 +#: guix-git/doc/guix.texi:34907 #, no-wrap msgid "initial RAM disk" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14644 +#: guix-git/doc/guix.texi:15001 msgid "The list of Linux kernel modules that need to be available in the initial RAM disk. @xref{Initial RAM Disk}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14645 +#: guix-git/doc/guix.texi:15002 #, no-wrap msgid "@code{initrd} (default: @code{base-initrd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14649 +#: guix-git/doc/guix.texi:15006 msgid "A procedure that returns an initial RAM disk for the Linux kernel. This field is provided to support low-level customization and should rarely be needed for casual use. @xref{Initial RAM Disk}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14650 +#: guix-git/doc/guix.texi:15007 #, fuzzy, no-wrap msgid "@code{firmware} (default: @code{%base-firmware})" msgstr "@code{mate}(默认值:@code{mate})" #. type: cindex -#: guix-git/doc/guix.texi:14651 +#: guix-git/doc/guix.texi:15008 #, no-wrap msgid "firmware" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14653 +#: guix-git/doc/guix.texi:15010 msgid "List of firmware packages loadable by the operating system kernel." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14658 +#: guix-git/doc/guix.texi:15015 msgid "The default includes firmware needed for Atheros- and Broadcom-based WiFi devices (Linux-libre modules @code{ath9k} and @code{b43-open}, respectively). @xref{Hardware Considerations}, for more info on supported hardware." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14659 guix-git/doc/guix.texi:35572 +#: guix-git/doc/guix.texi:15016 guix-git/doc/guix.texi:36052 #, no-wrap msgid "host-name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14661 +#: guix-git/doc/guix.texi:15018 msgid "The host name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14662 +#: guix-git/doc/guix.texi:15019 #, no-wrap msgid "hosts-file" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14663 +#: guix-git/doc/guix.texi:15020 #, no-wrap msgid "hosts file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14668 +#: guix-git/doc/guix.texi:15025 msgid "A file-like object (@pxref{G-Expressions, file-like objects}) for use as @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). The default is a file with entries for @code{localhost} and @var{host-name}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14669 +#: guix-git/doc/guix.texi:15026 #, no-wrap msgid "@code{mapped-devices} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14671 +#: guix-git/doc/guix.texi:15028 msgid "A list of mapped devices. @xref{Mapped Devices}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14672 +#: guix-git/doc/guix.texi:15029 #, no-wrap msgid "file-systems" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14674 +#: guix-git/doc/guix.texi:15031 msgid "A list of file systems. @xref{File Systems}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14675 +#: guix-git/doc/guix.texi:15032 #, no-wrap msgid "@code{swap-devices} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14676 +#: guix-git/doc/guix.texi:15033 #, no-wrap msgid "swap devices" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14678 +#: guix-git/doc/guix.texi:15035 msgid "A list of swap spaces. @xref{Swap Space}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14679 +#: guix-git/doc/guix.texi:15036 #, no-wrap msgid "@code{users} (default: @code{%base-user-accounts})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:14680 +#: guix-git/doc/guix.texi:15037 #, fuzzy, no-wrap msgid "@code{groups} (default: @code{%base-groups})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: table -#: guix-git/doc/guix.texi:14682 +#: guix-git/doc/guix.texi:15039 msgid "List of user accounts and groups. @xref{User Accounts}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14685 +#: guix-git/doc/guix.texi:15042 msgid "If the @code{users} list lacks a user account with UID@tie{}0, a ``root'' account with UID@tie{}0 is automatically added." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14686 +#: guix-git/doc/guix.texi:15043 #, no-wrap msgid "@code{skeletons} (default: @code{(default-skeletons)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14690 +#: guix-git/doc/guix.texi:15047 msgid "A list of target file name/file-like object tuples (@pxref{G-Expressions, file-like objects}). These are the skeleton files that will be added to the home directory of newly-created user accounts." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14692 +#: guix-git/doc/guix.texi:15049 msgid "For instance, a valid value may look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14698 +#: guix-git/doc/guix.texi:15055 #, no-wrap msgid "" "`((\".bashrc\" ,(plain-file \"bashrc\" \"echo Hello\\n\"))\n" @@ -25861,29 +26481,29 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14700 +#: guix-git/doc/guix.texi:15057 #, fuzzy, no-wrap msgid "@code{issue} (default: @code{%default-issue})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:14703 +#: guix-git/doc/guix.texi:15060 msgid "A string denoting the contents of the @file{/etc/issue} file, which is displayed when users log in on a text console." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14704 +#: guix-git/doc/guix.texi:15061 #, fuzzy, no-wrap msgid "@code{packages} (default: @code{%base-packages})" msgstr "@code{xfce}(默认值:@code{xfce})" #. type: table -#: guix-git/doc/guix.texi:14708 +#: guix-git/doc/guix.texi:15065 msgid "A list of packages to be installed in the global profile, which is accessible at @file{/run/current-system/profile}. Each element is either a package variable or a package/output tuple. Here's a simple example of both:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14713 +#: guix-git/doc/guix.texi:15070 #, no-wrap msgid "" "(cons* git ; the default \"out\" output\n" @@ -25892,172 +26512,172 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14718 +#: guix-git/doc/guix.texi:15075 msgid "The default set includes core utilities and it is good practice to install non-core utilities in user profiles (@pxref{Invoking guix package})." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14719 +#: guix-git/doc/guix.texi:15076 #, no-wrap msgid "timezone" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14721 +#: guix-git/doc/guix.texi:15078 msgid "A timezone identifying string---e.g., @code{\"Europe/Paris\"}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14725 +#: guix-git/doc/guix.texi:15082 msgid "You can run the @command{tzselect} command to find out which timezone string corresponds to your region. Choosing an invalid timezone name causes @command{guix system} to fail." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14726 guix-git/doc/guix.texi:21115 +#: guix-git/doc/guix.texi:15083 guix-git/doc/guix.texi:21477 #, no-wrap msgid "@code{locale} (default: @code{\"en_US.utf8\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14729 +#: guix-git/doc/guix.texi:15086 msgid "The name of the default locale (@pxref{Locale Names,,, libc, The GNU C Library Reference Manual}). @xref{Locales}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14730 +#: guix-git/doc/guix.texi:15087 #, fuzzy, no-wrap msgid "@code{locale-definitions} (default: @code{%default-locale-definitions})" msgstr "@code{enlightenment}(默认值:@code{enlightenment})" #. type: table -#: guix-git/doc/guix.texi:14733 +#: guix-git/doc/guix.texi:15090 msgid "The list of locale definitions to be compiled and that may be used at run time. @xref{Locales}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14734 +#: guix-git/doc/guix.texi:15091 #, no-wrap msgid "@code{locale-libcs} (default: @code{(list @var{glibc})})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14738 +#: guix-git/doc/guix.texi:15095 msgid "The list of GNU@tie{}libc packages whose locale data and tools are used to build the locale definitions. @xref{Locales}, for compatibility considerations that justify this option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14739 +#: guix-git/doc/guix.texi:15096 #, fuzzy, no-wrap msgid "@code{name-service-switch} (default: @code{%default-nss})" msgstr "@code{dnssec-policy}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:14743 +#: guix-git/doc/guix.texi:15100 msgid "Configuration of the libc name service switch (NSS)---a @code{} object. @xref{Name Service Switch}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14744 +#: guix-git/doc/guix.texi:15101 #, fuzzy, no-wrap msgid "@code{services} (default: @code{%base-services})" msgstr "@code{xfce}(默认值:@code{xfce})" #. type: table -#: guix-git/doc/guix.texi:14746 +#: guix-git/doc/guix.texi:15103 msgid "A list of service objects denoting system services. @xref{Services}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14747 +#: guix-git/doc/guix.texi:15104 #, no-wrap msgid "essential services" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14748 +#: guix-git/doc/guix.texi:15105 #, no-wrap msgid "@code{essential-services} (default: ...)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14753 +#: guix-git/doc/guix.texi:15110 msgid "The list of ``essential services''---i.e., things like instances of @code{system-service-type} and @code{host-name-service-type} (@pxref{Service Reference}), which are derived from the operating system definition itself. As a user you should @emph{never} need to touch this field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14754 +#: guix-git/doc/guix.texi:15111 #, no-wrap msgid "@code{pam-services} (default: @code{(base-pam-services)})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14755 +#: guix-git/doc/guix.texi:15112 #, no-wrap msgid "PAM" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:14756 +#: guix-git/doc/guix.texi:15113 #, no-wrap msgid "pluggable authentication modules" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14759 +#: guix-git/doc/guix.texi:15116 msgid "Linux @dfn{pluggable authentication module} (PAM) services." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14760 +#: guix-git/doc/guix.texi:15117 #, fuzzy, no-wrap msgid "@code{setuid-programs} (default: @code{%setuid-programs})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:14763 +#: guix-git/doc/guix.texi:15120 msgid "List of @code{}. @xref{Setuid Programs}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14764 +#: guix-git/doc/guix.texi:15121 #, fuzzy, no-wrap msgid "@code{sudoers-file} (default: @code{%sudoers-specification})" msgstr "@code{zonefile-load}(默认值:@code{#f})" #. type: cindex -#: guix-git/doc/guix.texi:14765 +#: guix-git/doc/guix.texi:15122 #, no-wrap msgid "sudoers file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14768 +#: guix-git/doc/guix.texi:15125 msgid "The contents of the @file{/etc/sudoers} file as a file-like object (@pxref{G-Expressions, @code{local-file} and @code{plain-file}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14773 +#: guix-git/doc/guix.texi:15130 msgid "This file specifies which users can use the @command{sudo} command, what they are allowed to do, and what privileges they may gain. The default is that only @code{root} and members of the @code{wheel} group may use @code{sudo}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14776 +#: guix-git/doc/guix.texi:15133 #, no-wrap msgid "{Scheme Syntax} this-operating-system" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14779 +#: guix-git/doc/guix.texi:15136 msgid "When used in the @emph{lexical scope} of an operating system field definition, this identifier resolves to the operating system being defined." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14782 +#: guix-git/doc/guix.texi:15139 msgid "The example below shows how to refer to the operating system being defined in the definition of the @code{label} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14785 guix-git/doc/guix.texi:18711 +#: guix-git/doc/guix.texi:15142 guix-git/doc/guix.texi:19073 #, no-wrap msgid "" "(use-modules (gnu) (guix))\n" @@ -26065,7 +26685,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14790 +#: guix-git/doc/guix.texi:15147 #, no-wrap msgid "" "(operating-system\n" @@ -26075,17 +26695,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14794 +#: guix-git/doc/guix.texi:15151 msgid "It is an error to refer to @code{this-operating-system} outside an operating system definition." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14805 +#: guix-git/doc/guix.texi:15162 msgid "The list of file systems to be mounted is specified in the @code{file-systems} field of the operating system declaration (@pxref{Using the Configuration System}). Each file system is declared using the @code{file-system} form, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14811 +#: guix-git/doc/guix.texi:15168 #, no-wrap msgid "" "(file-system\n" @@ -26095,68 +26715,68 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14815 +#: guix-git/doc/guix.texi:15172 msgid "As usual, some of the fields are mandatory---those shown in the example above---while others can be omitted. These are described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14816 +#: guix-git/doc/guix.texi:15173 #, no-wrap msgid "{Data Type} file-system" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:14819 +#: guix-git/doc/guix.texi:15176 msgid "Objects of this type represent file systems to be mounted. They contain the following members:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:14821 guix-git/doc/guix.texi:15201 -#: guix-git/doc/guix.texi:17317 +#: guix-git/doc/guix.texi:15178 guix-git/doc/guix.texi:15558 +#: guix-git/doc/guix.texi:17679 #, no-wrap msgid "type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14824 +#: guix-git/doc/guix.texi:15181 msgid "This is a string specifying the type of the file system---e.g., @code{\"ext4\"}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14825 +#: guix-git/doc/guix.texi:15182 #, no-wrap msgid "mount-point" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14827 +#: guix-git/doc/guix.texi:15184 msgid "This designates the place where the file system is to be mounted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14828 guix-git/doc/guix.texi:17267 +#: guix-git/doc/guix.texi:15185 guix-git/doc/guix.texi:17629 #, no-wrap msgid "device" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14838 +#: guix-git/doc/guix.texi:15195 msgid "This names the ``source'' of the file system. It can be one of three things: a file system label, a file system UUID, or the name of a @file{/dev} node. Labels and UUIDs offer a way to refer to file systems without having to hard-code their actual device name@footnote{Note that, while it is tempting to use @file{/dev/disk/by-uuid} and similar device names to achieve the same result, this is not recommended: These special device nodes are created by the udev daemon and may be unavailable at the time the device is mounted.}." msgstr "" #. type: findex -#: guix-git/doc/guix.texi:14839 +#: guix-git/doc/guix.texi:15196 #, no-wrap msgid "file-system-label" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14844 +#: guix-git/doc/guix.texi:15201 msgid "File system labels are created using the @code{file-system-label} procedure, UUIDs are created using @code{uuid}, and @file{/dev} node are plain strings. Here's an example of a file system referred to by its label, as shown by the @command{e2label} command:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14850 +#: guix-git/doc/guix.texi:15207 #, no-wrap msgid "" "(file-system\n" @@ -26166,19 +26786,19 @@ msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:14852 guix-git/doc/guix.texi:33130 -#: guix-git/doc/guix.texi:33146 +#: guix-git/doc/guix.texi:15209 guix-git/doc/guix.texi:33495 +#: guix-git/doc/guix.texi:33511 #, no-wrap msgid "uuid" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14860 +#: guix-git/doc/guix.texi:15217 msgid "UUIDs are converted from their string representation (as shown by the @command{tune2fs -l} command) using the @code{uuid} form@footnote{The @code{uuid} form expects 16-byte UUIDs as defined in @uref{https://tools.ietf.org/html/rfc4122, RFC@tie{}4122}. This is the form of UUID used by the ext2 family of file systems and others, but it is different from ``UUIDs'' found in FAT file systems, for instance.}, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14866 +#: guix-git/doc/guix.texi:15223 #, no-wrap msgid "" "(file-system\n" @@ -26188,168 +26808,168 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14874 +#: guix-git/doc/guix.texi:15231 msgid "When the source of a file system is a mapped device (@pxref{Mapped Devices}), its @code{device} field @emph{must} refer to the mapped device name---e.g., @file{\"/dev/mapper/root-partition\"}. This is required so that the system knows that mounting the file system depends on having the corresponding device mapping established." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14875 +#: guix-git/doc/guix.texi:15232 #, no-wrap msgid "@code{flags} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14885 +#: guix-git/doc/guix.texi:15242 msgid "This is a list of symbols denoting mount flags. Recognized flags include @code{read-only}, @code{bind-mount}, @code{no-dev} (disallow access to special files), @code{no-suid} (ignore setuid and setgid bits), @code{no-atime} (do not update file access times), @code{strict-atime} (update file access time), @code{lazy-time} (only update time on the in-memory version of the file inode), and @code{no-exec} (disallow program execution). @xref{Mount-Unmount-Remount,,, libc, The GNU C Library Reference Manual}, for more information on these flags." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14886 +#: guix-git/doc/guix.texi:15243 #, no-wrap msgid "@code{options} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14895 +#: guix-git/doc/guix.texi:15252 msgid "This is either @code{#f}, or a string denoting mount options passed to the file system driver. @xref{Mount-Unmount-Remount,,, libc, The GNU C Library Reference Manual}, for details and run @command{man 8 mount} for options for various file systems. Note that the @code{file-system-options->alist} and @code{alist->file-system-options} procedures from @code{(gnu system file-systems)} can be used to convert file system options given as an association list to the string representation, and vice-versa." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14896 +#: guix-git/doc/guix.texi:15253 #, no-wrap msgid "@code{mount?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14901 +#: guix-git/doc/guix.texi:15258 msgid "This value indicates whether to automatically mount the file system when the system is brought up. When set to @code{#f}, the file system gets an entry in @file{/etc/fstab} (read by the @command{mount} command) but is not automatically mounted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14902 +#: guix-git/doc/guix.texi:15259 #, no-wrap msgid "@code{needed-for-boot?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14907 +#: guix-git/doc/guix.texi:15264 msgid "This Boolean value indicates whether the file system is needed when booting. If that is true, then the file system is mounted when the initial RAM disk (initrd) is loaded. This is always the case, for instance, for the root file system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14908 +#: guix-git/doc/guix.texi:15265 #, no-wrap msgid "@code{check?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14912 +#: guix-git/doc/guix.texi:15269 msgid "This Boolean indicates whether the file system should be checked for errors before being mounted. How and when this happens can be further adjusted with the following options." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14913 +#: guix-git/doc/guix.texi:15270 #, fuzzy, no-wrap msgid "@code{skip-check-if-clean?} (default: @code{#t})" msgstr "@code{dnssec-policy}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:14918 +#: guix-git/doc/guix.texi:15275 msgid "When true, this Boolean indicates that a file system check triggered by @code{check?} may exit early if the file system is marked as ``clean'', meaning that it was previously correctly unmounted and should not contain errors." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14922 +#: guix-git/doc/guix.texi:15279 msgid "Setting this to false will always force a full consistency check when @code{check?} is true. This may take a very long time and is not recommended on healthy systems---in fact, it may reduce reliability!" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14926 +#: guix-git/doc/guix.texi:15283 msgid "Conversely, some primitive file systems like @code{fat} do not keep track of clean shutdowns and will perform a full scan regardless of the value of this option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14927 +#: guix-git/doc/guix.texi:15284 #, fuzzy, no-wrap msgid "@code{repair} (default: @code{'preen})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:14930 +#: guix-git/doc/guix.texi:15287 msgid "When @code{check?} finds errors, it can (try to) repair them and continue booting. This option controls when and how to do so." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14934 +#: guix-git/doc/guix.texi:15291 msgid "If false, try not to modify the file system at all. Checking certain file systems like @code{jfs} may still write to the device to replay the journal. No repairs will be attempted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14937 +#: guix-git/doc/guix.texi:15294 msgid "If @code{#t}, try to repair any errors found and assume ``yes'' to all questions. This will fix the most errors, but may be risky." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14941 +#: guix-git/doc/guix.texi:15298 msgid "If @code{'preen}, repair only errors that are safe to fix without human interaction. What that means is left up to the developers of each file system and may be equivalent to ``none'' or ``all''." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14942 +#: guix-git/doc/guix.texi:15299 #, no-wrap msgid "@code{create-mount-point?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14944 +#: guix-git/doc/guix.texi:15301 msgid "When true, the mount point is created if it does not exist yet." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14945 +#: guix-git/doc/guix.texi:15302 #, fuzzy, no-wrap msgid "@code{mount-may-fail?} (default: @code{#f})" msgstr "@code{max-journal-usage}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:14950 +#: guix-git/doc/guix.texi:15307 msgid "When true, this indicates that mounting this file system can fail but that should not be considered an error. This is useful in unusual cases; an example of this is @code{efivarfs}, a file system that can only be mounted on EFI/UEFI systems." msgstr "" #. type: item -#: guix-git/doc/guix.texi:14951 guix-git/doc/guix.texi:15347 +#: guix-git/doc/guix.texi:15308 guix-git/doc/guix.texi:15704 #, no-wrap msgid "@code{dependencies} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:14955 +#: guix-git/doc/guix.texi:15312 msgid "This is a list of @code{} or @code{} objects representing file systems that must be mounted or mapped devices that must be opened before (and unmounted or closed after) this one." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14959 +#: guix-git/doc/guix.texi:15316 msgid "As an example, consider a hierarchy of mounts: @file{/sys/fs/cgroup} is a dependency of @file{/sys/fs/cgroup/cpu} and @file{/sys/fs/cgroup/memory}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:14962 +#: guix-git/doc/guix.texi:15319 msgid "Another example is a file system that depends on a mapped device, for example for an encrypted partition (@pxref{Mapped Devices})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14965 +#: guix-git/doc/guix.texi:15322 #, no-wrap msgid "{Scheme Procedure} file-system-label @var{str}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14968 +#: guix-git/doc/guix.texi:15325 msgid "This procedure returns an opaque file system label from @var{str}, a string:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:14972 +#: guix-git/doc/guix.texi:15329 #, no-wrap msgid "" "(file-system-label \"home\")\n" @@ -26357,104 +26977,104 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:14976 +#: guix-git/doc/guix.texi:15333 msgid "File system labels are used to refer to file systems by label rather than by device name. See above for examples." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:14980 +#: guix-git/doc/guix.texi:15337 msgid "The @code{(gnu system file-systems)} exports the following useful variables." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14981 +#: guix-git/doc/guix.texi:15338 #, no-wrap msgid "{Scheme Variable} %base-file-systems" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14986 +#: guix-git/doc/guix.texi:15343 msgid "These are essential file systems that are required on normal systems, such as @code{%pseudo-terminal-file-system} and @code{%immutable-store} (see below). Operating system declarations should always contain at least these." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14988 +#: guix-git/doc/guix.texi:15345 #, no-wrap msgid "{Scheme Variable} %pseudo-terminal-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14994 +#: guix-git/doc/guix.texi:15351 msgid "This is the file system to be mounted as @file{/dev/pts}. It supports @dfn{pseudo-terminals} created @i{via} @code{openpty} and similar functions (@pxref{Pseudo-Terminals,,, libc, The GNU C Library Reference Manual}). Pseudo-terminals are used by terminal emulators such as @command{xterm}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:14996 +#: guix-git/doc/guix.texi:15353 #, no-wrap msgid "{Scheme Variable} %shared-memory-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15000 +#: guix-git/doc/guix.texi:15357 msgid "This file system is mounted as @file{/dev/shm} and is used to support memory sharing across processes (@pxref{Memory-mapped I/O, @code{shm_open},, libc, The GNU C Library Reference Manual})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15002 +#: guix-git/doc/guix.texi:15359 #, no-wrap msgid "{Scheme Variable} %immutable-store" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15007 +#: guix-git/doc/guix.texi:15364 msgid "This file system performs a read-only ``bind mount'' of @file{/gnu/store}, making it read-only for all the users including @code{root}. This prevents against accidental modification by software running as @code{root} or by system administrators." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15010 +#: guix-git/doc/guix.texi:15367 msgid "The daemon itself is still able to write to the store: it remounts it read-write in its own ``name space.''" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15012 +#: guix-git/doc/guix.texi:15369 #, no-wrap msgid "{Scheme Variable} %binary-format-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15016 +#: guix-git/doc/guix.texi:15373 msgid "The @code{binfmt_misc} file system, which allows handling of arbitrary executable file types to be delegated to user space. This requires the @code{binfmt.ko} kernel module to be loaded." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15018 +#: guix-git/doc/guix.texi:15375 #, no-wrap msgid "{Scheme Variable} %fuse-control-file-system" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15022 +#: guix-git/doc/guix.texi:15379 msgid "The @code{fusectl} file system, which allows unprivileged users to mount and unmount user-space FUSE file systems. This requires the @code{fuse.ko} kernel module to be loaded." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15026 +#: guix-git/doc/guix.texi:15383 msgid "The @code{(gnu system uuid)} module provides tools to deal with file system ``unique identifiers'' (UUIDs)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15027 +#: guix-git/doc/guix.texi:15384 #, no-wrap msgid "{Scheme Procedure} uuid @var{str} [@var{type}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15030 +#: guix-git/doc/guix.texi:15387 msgid "Return an opaque UUID (unique identifier) object of the given @var{type} (a symbol) by parsing @var{str} (a string):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15034 +#: guix-git/doc/guix.texi:15391 #, no-wrap msgid "" "(uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\")\n" @@ -26463,7 +27083,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15037 +#: guix-git/doc/guix.texi:15394 #, no-wrap msgid "" "(uuid \"1234-ABCD\" 'fat)\n" @@ -26471,33 +27091,33 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15041 +#: guix-git/doc/guix.texi:15398 msgid "@var{type} may be one of @code{dce}, @code{iso9660}, @code{fat}, @code{ntfs}, or one of the commonly found synonyms for these." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15044 +#: guix-git/doc/guix.texi:15401 msgid "UUIDs are another way to unambiguously refer to file systems in operating system configuration. See the examples above." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:15047 guix-git/doc/guix.texi:15048 +#: guix-git/doc/guix.texi:15404 guix-git/doc/guix.texi:15405 #, fuzzy, no-wrap msgid "Btrfs file system" msgstr "网络文件系统" #. type: Plain text -#: guix-git/doc/guix.texi:15054 +#: guix-git/doc/guix.texi:15411 msgid "The Btrfs has special features, such as subvolumes, that merit being explained in more details. The following section attempts to cover basic as well as complex uses of a Btrfs file system with the Guix System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15057 +#: guix-git/doc/guix.texi:15414 msgid "In its simplest usage, a Btrfs file system can be described, for example, by:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15063 +#: guix-git/doc/guix.texi:15420 #, no-wrap msgid "" "(file-system\n" @@ -26507,12 +27127,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15069 +#: guix-git/doc/guix.texi:15426 msgid "The example below is more complex, as it makes use of a Btrfs subvolume, named @code{rootfs}. The parent Btrfs file system is labeled @code{my-btrfs-pool}, and is located on an encrypted device (hence the dependency on @code{mapped-devices}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15077 +#: guix-git/doc/guix.texi:15434 #, no-wrap msgid "" "(file-system\n" @@ -26524,17 +27144,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15088 +#: guix-git/doc/guix.texi:15445 msgid "Some bootloaders, for example GRUB, only mount a Btrfs partition at its top level during the early boot, and rely on their configuration to refer to the correct subvolume path within that top level. The bootloaders operating in this way typically produce their configuration on a running system where the Btrfs partitions are already mounted and where the subvolume information is readily available. As an example, @command{grub-mkconfig}, the configuration generator command shipped with GRUB, reads @file{/proc/self/mountinfo} to determine the top-level path of a subvolume." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15096 +#: guix-git/doc/guix.texi:15453 msgid "The Guix System produces a bootloader configuration using the operating system configuration as its sole input; it is therefore necessary to extract the subvolume name on which @file{/gnu/store} lives (if any) from that operating system configuration. To better illustrate, consider a subvolume named 'rootfs' which contains the root file system data. In such situation, the GRUB bootloader would only see the top level of the root Btrfs partition, e.g.:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15103 +#: guix-git/doc/guix.texi:15460 #, no-wrap msgid "" "/ (top level)\n" @@ -26545,17 +27165,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15108 +#: guix-git/doc/guix.texi:15465 msgid "Thus, the subvolume name must be prepended to the @file{/gnu/store} path of the kernel, initrd binaries and any other files referred to in the GRUB configuration that must be found during the early boot." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15111 +#: guix-git/doc/guix.texi:15468 msgid "The next example shows a nested hierarchy of subvolumes and directories:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15118 +#: guix-git/doc/guix.texi:15475 #, no-wrap msgid "" "/ (top level)\n" @@ -26566,17 +27186,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15125 +#: guix-git/doc/guix.texi:15482 msgid "This scenario would work without mounting the 'store' subvolume. Mounting 'rootfs' is sufficient, since the subvolume name matches its intended mount point in the file system hierarchy. Alternatively, the 'store' subvolume could be referred to by setting the @code{subvol} option to either @code{/rootfs/gnu/store} or @code{rootfs/gnu/store}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15127 +#: guix-git/doc/guix.texi:15484 msgid "Finally, a more contrived example of nested subvolumes:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15134 +#: guix-git/doc/guix.texi:15491 #, no-wrap msgid "" "/ (top level)\n" @@ -26587,12 +27207,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15141 +#: guix-git/doc/guix.texi:15498 msgid "Here, the 'guix-store' subvolume doesn't match its intended mount point, so it is necessary to mount it. The subvolume must be fully specified, by passing its file name to the @code{subvol} option. To illustrate, the 'guix-store' subvolume could be mounted on @file{/gnu/store} by using a file system declaration such as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15149 +#: guix-git/doc/guix.texi:15506 #, no-wrap msgid "" "(file-system\n" @@ -26604,128 +27224,128 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15154 +#: guix-git/doc/guix.texi:15511 #, no-wrap msgid "device mapping" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15155 +#: guix-git/doc/guix.texi:15512 #, no-wrap msgid "mapped devices" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15172 +#: guix-git/doc/guix.texi:15529 msgid "The Linux kernel has a notion of @dfn{device mapping}: a block device, such as a hard disk partition, can be @dfn{mapped} into another device, usually in @code{/dev/mapper/}, with additional processing over the data that flows through it@footnote{Note that the GNU@tie{}Hurd makes no difference between the concept of a ``mapped device'' and that of a file system: both boil down to @emph{translating} input/output operations made on a file to operations on its backing store. Thus, the Hurd implements mapped devices, like file systems, using the generic @dfn{translator} mechanism (@pxref{Translators,,, hurd, The GNU Hurd Reference Manual}).}. A typical example is encryption device mapping: all writes to the mapped device are encrypted, and all reads are deciphered, transparently. Guix extends this notion by considering any device or set of devices that are @dfn{transformed} in some way to create a new device; for instance, RAID devices are obtained by @dfn{assembling} several other devices, such as hard disks or partitions, into a new one that behaves as one partition." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15175 +#: guix-git/doc/guix.texi:15532 msgid "Mapped devices are declared using the @code{mapped-device} form, defined as follows; for examples, see below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15176 +#: guix-git/doc/guix.texi:15533 #, no-wrap msgid "{Data Type} mapped-device" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15179 +#: guix-git/doc/guix.texi:15536 msgid "Objects of this type represent device mappings that will be made when the system boots up." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15186 +#: guix-git/doc/guix.texi:15543 msgid "This is either a string specifying the name of the block device to be mapped, such as @code{\"/dev/sda3\"}, or a list of such strings when several devices need to be assembled for creating a new one. In case of LVM this is a string specifying name of the volume group to be mapped." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:15187 guix-git/doc/guix.texi:15342 +#: guix-git/doc/guix.texi:15544 guix-git/doc/guix.texi:15699 #, no-wrap msgid "target" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15196 +#: guix-git/doc/guix.texi:15553 msgid "This string specifies the name of the resulting mapped device. For kernel mappers such as encrypted devices of type @code{luks-device-mapping}, specifying @code{\"my-partition\"} leads to the creation of the @code{\"/dev/mapper/my-partition\"} device. For RAID devices of type @code{raid-device-mapping}, the full device name such as @code{\"/dev/md0\"} needs to be given. LVM logical volumes of type @code{lvm-device-mapping} need to be specified as @code{\"VGNAME-LVNAME\"}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:15197 guix-git/doc/guix.texi:34634 +#: guix-git/doc/guix.texi:15554 guix-git/doc/guix.texi:35073 #, no-wrap msgid "targets" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15200 +#: guix-git/doc/guix.texi:15557 msgid "This list of strings specifies names of the resulting mapped devices in case there are several. The format is identical to @var{target}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15204 +#: guix-git/doc/guix.texi:15561 msgid "This must be a @code{mapped-device-kind} object, which specifies how @var{source} is mapped to @var{target}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15207 +#: guix-git/doc/guix.texi:15564 #, no-wrap msgid "{Scheme Variable} luks-device-mapping" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15211 +#: guix-git/doc/guix.texi:15568 msgid "This defines LUKS block device encryption using the @command{cryptsetup} command from the package with the same name. It relies on the @code{dm-crypt} Linux kernel module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15213 +#: guix-git/doc/guix.texi:15570 #, no-wrap msgid "{Scheme Variable} raid-device-mapping" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15218 +#: guix-git/doc/guix.texi:15575 msgid "This defines a RAID device, which is assembled using the @code{mdadm} command from the package with the same name. It requires a Linux kernel module for the appropriate RAID level to be loaded, such as @code{raid456} for RAID-4, RAID-5 or RAID-6, or @code{raid10} for RAID-10." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15220 +#: guix-git/doc/guix.texi:15577 #, no-wrap msgid "LVM, logical volume manager" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15221 +#: guix-git/doc/guix.texi:15578 #, no-wrap msgid "{Scheme Variable} lvm-device-mapping" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15226 +#: guix-git/doc/guix.texi:15583 msgid "This defines one or more logical volumes for the Linux @uref{https://www.sourceware.org/lvm2/, Logical Volume Manager (LVM)}. The volume group is activated by the @command{vgchange} command from the @code{lvm2} package." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15228 +#: guix-git/doc/guix.texi:15585 #, no-wrap msgid "disk encryption" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15229 +#: guix-git/doc/guix.texi:15586 #, no-wrap msgid "LUKS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15237 +#: guix-git/doc/guix.texi:15594 msgid "The following example specifies a mapping from @file{/dev/sda3} to @file{/dev/mapper/home} using LUKS---the @url{https://gitlab.com/cryptsetup/cryptsetup,Linux Unified Key Setup}, a standard mechanism for disk encryption. The @file{/dev/mapper/home} device can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15243 +#: guix-git/doc/guix.texi:15600 #, no-wrap msgid "" "(mapped-device\n" @@ -26735,23 +27355,23 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15248 +#: guix-git/doc/guix.texi:15605 msgid "Alternatively, to become independent of device numbering, one may obtain the LUKS UUID (@dfn{unique identifier}) of the source device by a command like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15251 +#: guix-git/doc/guix.texi:15608 #, no-wrap msgid "cryptsetup luksUUID /dev/sda3\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15254 +#: guix-git/doc/guix.texi:15611 msgid "and use it as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15260 +#: guix-git/doc/guix.texi:15617 #, no-wrap msgid "" "(mapped-device\n" @@ -26761,23 +27381,23 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15262 +#: guix-git/doc/guix.texi:15619 #, no-wrap msgid "swap encryption" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15269 +#: guix-git/doc/guix.texi:15626 msgid "It is also desirable to encrypt swap space, since swap space may contain sensitive data. One way to accomplish that is to use a swap file in a file system on a device mapped via LUKS encryption. In this way, the swap file is encrypted because the entire device is encrypted. @xref{Swap Space}, or @xref{Preparing for Installation,,Disk Partitioning}, for an example." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15272 +#: guix-git/doc/guix.texi:15629 msgid "A RAID device formed of the partitions @file{/dev/sda1} and @file{/dev/sdb1} may be declared as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15278 +#: guix-git/doc/guix.texi:15635 #, no-wrap msgid "" "(mapped-device\n" @@ -26787,17 +27407,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15285 +#: guix-git/doc/guix.texi:15642 msgid "The @file{/dev/md0} device can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems}). Note that the RAID level need not be given; it is chosen during the initial creation and formatting of the RAID device and is determined automatically later." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15288 +#: guix-git/doc/guix.texi:15645 msgid "LVM logical volumes ``alpha'' and ``beta'' from volume group ``vg0'' can be declared as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15294 +#: guix-git/doc/guix.texi:15651 #, no-wrap msgid "" "(mapped-device\n" @@ -26807,102 +27427,102 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15299 +#: guix-git/doc/guix.texi:15656 msgid "Devices @file{/dev/mapper/vg0-alpha} and @file{/dev/mapper/vg0-beta} can then be used as the @code{device} of a @code{file-system} declaration (@pxref{File Systems})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15302 +#: guix-git/doc/guix.texi:15659 #, no-wrap msgid "swap space" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15312 +#: guix-git/doc/guix.texi:15669 msgid "Swap space, as it is commonly called, is a disk area specifically designated for paging: the process in charge of memory management (the Linux kernel or Hurd's default pager) can decide that some memory pages stored in RAM which belong to a running program but are unused should be stored on disk instead. It unloads those from the RAM, freeing up precious fast memory, and writes them to the swap space. If the program tries to access that very page, the memory management process loads it back into memory for the program to use." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15318 +#: guix-git/doc/guix.texi:15675 msgid "A common misconception about swap is that it is only useful when small amounts of RAM are available to the system. However, it should be noted that kernels often use all available RAM for disk access caching to make I/O faster, and thus paging out unused portions of program memory will expand the RAM available for such caching." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15322 +#: guix-git/doc/guix.texi:15679 msgid "For a more detailed description of how memory is managed from the viewpoint of a monolithic kernel, @xref{Memory Concepts,,, libc, The GNU C Library Reference Manual}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15331 +#: guix-git/doc/guix.texi:15688 msgid "The Linux kernel has support for swap partitions and swap files: the former uses a whole disk partition for paging, whereas the second uses a file on a file system for that (the file system driver needs to support it). On a comparable setup, both have the same performance, so one should consider ease of use when deciding between them. Partitions are ``simpler'' and do not need file system support, but need to be allocated at disk formatting time (logical volumes notwithstanding), whereas files can be allocated and deallocated at any time." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15336 +#: guix-git/doc/guix.texi:15693 msgid "Note that swap space is not zeroed on shutdown, so sensitive data (such as passwords) may linger on it if it was paged out. As such, you should consider having your swap reside on an encrypted device (@pxref{Mapped Devices})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15337 +#: guix-git/doc/guix.texi:15694 #, fuzzy, no-wrap msgid "{Data Type} swap-space" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:15340 +#: guix-git/doc/guix.texi:15697 msgid "Objects of this type represent swap spaces. They contain the following members:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15346 +#: guix-git/doc/guix.texi:15703 msgid "The device or file to use, either a UUID, a @code{file-system-label} or a string, as in the definition of a @code{file-system} (@pxref{File Systems})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15353 +#: guix-git/doc/guix.texi:15710 msgid "A list of @code{file-system} or @code{mapped-device} objects, upon which the availability of the space depends. Note that just like for @code{file-system} objects, dependencies which are needed for boot and mounted in early userspace are not managed by the Shepherd, and so automatically filtered out for you." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15354 +#: guix-git/doc/guix.texi:15711 #, fuzzy, no-wrap msgid "@code{priority} (default: @code{#f})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:15361 +#: guix-git/doc/guix.texi:15718 msgid "Only supported by the Linux kernel. Either @code{#f} to disable swap priority, or an integer between 0 and 32767. The kernel will first use swap spaces of higher priority when paging, and use same priority spaces on a round-robin basis. The kernel will use swap spaces without a set priority after prioritized spaces, and in the order that they appeared in (not round-robin)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15362 +#: guix-git/doc/guix.texi:15719 #, fuzzy, no-wrap msgid "@code{discard?} (default: @code{#f})" msgstr "@code{speed}(默认值:@code{1.0})" #. type: table -#: guix-git/doc/guix.texi:15366 +#: guix-git/doc/guix.texi:15723 msgid "Only supported by the Linux kernel. When true, the kernel will notify the disk controller of discarded pages, for example with the TRIM operation on Solid State Drives." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15371 +#: guix-git/doc/guix.texi:15728 msgid "Here are some examples:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15374 +#: guix-git/doc/guix.texi:15731 #, no-wrap msgid "(swap-space (target (uuid \"4dab5feb-d176-45de-b287-9b0a6e4c01cb\")))\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15379 +#: guix-git/doc/guix.texi:15736 msgid "Use the swap partition with the given UUID@. You can learn the UUID of a Linux swap partition by running @command{swaplabel @var{device}}, where @var{device} is the @file{/dev} file name of that partition." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15384 +#: guix-git/doc/guix.texi:15741 #, no-wrap msgid "" "(swap-space\n" @@ -26911,12 +27531,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15390 +#: guix-git/doc/guix.texi:15747 msgid "Use the partition with label @code{swap}, which can be found after the @var{lvm-device} mapped device has been opened. Again, the @command{swaplabel} command allows you to view and change the label of a Linux swap partition." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15395 +#: guix-git/doc/guix.texi:15752 #, no-wrap msgid "" "(swap-space\n" @@ -26925,35 +27545,35 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15399 +#: guix-git/doc/guix.texi:15756 msgid "Use the file @file{/btrfs/swapfile} as swap space, which is present on the @var{btrfs-fs} filesystem." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15403 +#: guix-git/doc/guix.texi:15760 #, no-wrap msgid "users" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15404 +#: guix-git/doc/guix.texi:15761 #, no-wrap msgid "accounts" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15405 +#: guix-git/doc/guix.texi:15762 #, no-wrap msgid "user accounts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15409 +#: guix-git/doc/guix.texi:15766 msgid "User accounts and groups are entirely managed through the @code{operating-system} declaration. They are specified with the @code{user-account} and @code{user-group} forms:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15419 +#: guix-git/doc/guix.texi:15776 #, no-wrap msgid "" "(user-account\n" @@ -26967,12 +27587,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15423 +#: guix-git/doc/guix.texi:15780 msgid "Here's a user account that uses a different shell and a custom home directory (the default would be @file{\"/home/bob\"}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15431 +#: guix-git/doc/guix.texi:15788 #, no-wrap msgid "" "(user-account\n" @@ -26984,171 +27604,171 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15440 +#: guix-git/doc/guix.texi:15797 msgid "When booting or upon completion of @command{guix system reconfigure}, the system ensures that only the user accounts and groups specified in the @code{operating-system} declaration exist, and with the specified properties. Thus, account or group creations or modifications made by directly invoking commands such as @command{useradd} are lost upon reconfiguration or reboot. This ensures that the system remains exactly as declared." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15441 +#: guix-git/doc/guix.texi:15798 #, no-wrap msgid "{Data Type} user-account" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15444 +#: guix-git/doc/guix.texi:15801 msgid "Objects of this type represent user accounts. The following members may be specified:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15448 +#: guix-git/doc/guix.texi:15805 msgid "The name of the user account." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:15449 guix-git/doc/guix.texi:34298 +#: guix-git/doc/guix.texi:15806 guix-git/doc/guix.texi:34737 #, no-wrap msgid "group" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15450 guix-git/doc/guix.texi:15534 +#: guix-git/doc/guix.texi:15807 guix-git/doc/guix.texi:15891 #, no-wrap msgid "groups" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15453 +#: guix-git/doc/guix.texi:15810 msgid "This is the name (a string) or identifier (a number) of the user group this account belongs to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15454 +#: guix-git/doc/guix.texi:15811 #, no-wrap msgid "@code{supplementary-groups} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15457 +#: guix-git/doc/guix.texi:15814 msgid "Optionally, this can be defined as a list of group names that this account belongs to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15458 +#: guix-git/doc/guix.texi:15815 #, no-wrap msgid "@code{uid} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15462 +#: guix-git/doc/guix.texi:15819 msgid "This is the user ID for this account (a number), or @code{#f}. In the latter case, a number is automatically chosen by the system when the account is created." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15463 guix-git/doc/guix.texi:18217 +#: guix-git/doc/guix.texi:15820 guix-git/doc/guix.texi:18579 #, no-wrap msgid "@code{comment} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15465 +#: guix-git/doc/guix.texi:15822 msgid "A comment about the account, such as the account owner's full name." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15470 +#: guix-git/doc/guix.texi:15827 msgid "Note that, for non-system accounts, users are free to change their real name as it appears in @file{/etc/passwd} using the @command{chfn} command. When they do, their choice prevails over the system administrator's choice; reconfiguring does @emph{not} change their name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:15471 +#: guix-git/doc/guix.texi:15828 #, no-wrap msgid "home-directory" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15473 +#: guix-git/doc/guix.texi:15830 msgid "This is the name of the home directory for the account." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15474 +#: guix-git/doc/guix.texi:15831 #, no-wrap msgid "@code{create-home-directory?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15477 +#: guix-git/doc/guix.texi:15834 msgid "Indicates whether the home directory of this account should be created if it does not exist yet." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15478 +#: guix-git/doc/guix.texi:15835 #, no-wrap msgid "@code{shell} (default: Bash)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15482 +#: guix-git/doc/guix.texi:15839 msgid "This is a G-expression denoting the file name of a program to be used as the shell (@pxref{G-Expressions}). For example, you would refer to the Bash executable like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15485 +#: guix-git/doc/guix.texi:15842 #, no-wrap msgid "(file-append bash \"/bin/bash\")\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15489 +#: guix-git/doc/guix.texi:15846 msgid "... and to the Zsh executable like that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15492 +#: guix-git/doc/guix.texi:15849 #, no-wrap msgid "(file-append zsh \"/bin/zsh\")\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:15494 guix-git/doc/guix.texi:15552 +#: guix-git/doc/guix.texi:15851 guix-git/doc/guix.texi:15909 #, no-wrap msgid "@code{system?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15498 +#: guix-git/doc/guix.texi:15855 msgid "This Boolean value indicates whether the account is a ``system'' account. System accounts are sometimes treated specially; for instance, graphical login managers do not list them." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:15500 +#: guix-git/doc/guix.texi:15857 msgid "user-account-password" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15500 +#: guix-git/doc/guix.texi:15857 #, no-wrap msgid "password, for user accounts" msgstr "" #. type: item -#: guix-git/doc/guix.texi:15501 guix-git/doc/guix.texi:15556 +#: guix-git/doc/guix.texi:15858 guix-git/doc/guix.texi:15913 #, no-wrap msgid "@code{password} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15507 +#: guix-git/doc/guix.texi:15864 msgid "You would normally leave this field to @code{#f}, initialize user passwords as @code{root} with the @command{passwd} command, and then let users change it with @command{passwd}. Passwords set with @command{passwd} are of course preserved across reboot and reconfiguration." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15511 +#: guix-git/doc/guix.texi:15868 msgid "If you @emph{do} want to set an initial password for an account, then this field must contain the encrypted password, as a string. You can use the @code{crypt} procedure for this purpose:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15516 +#: guix-git/doc/guix.texi:15873 #, no-wrap msgid "" "(user-account\n" @@ -27158,7 +27778,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15519 +#: guix-git/doc/guix.texi:15876 #, no-wrap msgid "" " ;; Specify a SHA-512-hashed initial password.\n" @@ -27166,171 +27786,171 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:15525 +#: guix-git/doc/guix.texi:15882 msgid "The hash of this initial password will be available in a file in @file{/gnu/store}, readable by all the users, so this method must be used with care." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15530 +#: guix-git/doc/guix.texi:15887 msgid "@xref{Passphrase Storage,,, libc, The GNU C Library Reference Manual}, for more information on password encryption, and @ref{Encryption,,, guile, GNU Guile Reference Manual}, for information on Guile's @code{crypt} procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15536 +#: guix-git/doc/guix.texi:15893 msgid "User group declarations are even simpler:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15539 +#: guix-git/doc/guix.texi:15896 #, no-wrap msgid "(user-group (name \"students\"))\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15541 +#: guix-git/doc/guix.texi:15898 #, no-wrap msgid "{Data Type} user-group" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15543 +#: guix-git/doc/guix.texi:15900 msgid "This type is for, well, user groups. There are just a few fields:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15547 +#: guix-git/doc/guix.texi:15904 msgid "The name of the group." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15548 guix-git/doc/guix.texi:30819 +#: guix-git/doc/guix.texi:15905 guix-git/doc/guix.texi:31184 #, no-wrap msgid "@code{id} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15551 +#: guix-git/doc/guix.texi:15908 msgid "The group identifier (a number). If @code{#f}, a new number is automatically allocated when the group is created." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15555 +#: guix-git/doc/guix.texi:15912 msgid "This Boolean value indicates whether the group is a ``system'' group. System groups have low numerical IDs." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15559 +#: guix-git/doc/guix.texi:15916 msgid "What, user groups can have a password? Well, apparently yes. Unless @code{#f}, this field specifies the password of the group." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15565 +#: guix-git/doc/guix.texi:15922 msgid "For convenience, a variable lists all the basic user groups one may expect:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15566 +#: guix-git/doc/guix.texi:15923 #, no-wrap msgid "{Scheme Variable} %base-groups" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15571 +#: guix-git/doc/guix.texi:15928 msgid "This is the list of basic user groups that users and/or packages expect to be present on the system. This includes groups such as ``root'', ``wheel'', and ``users'', as well as groups used to control access to specific devices such as ``audio'', ``disk'', and ``cdrom''." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15573 +#: guix-git/doc/guix.texi:15930 #, no-wrap msgid "{Scheme Variable} %base-user-accounts" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15576 +#: guix-git/doc/guix.texi:15933 msgid "This is the list of basic system accounts that programs may expect to find on a GNU/Linux system, such as the ``nobody'' account." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15579 +#: guix-git/doc/guix.texi:15936 msgid "Note that the ``root'' account is not included here. It is a special-case and is automatically added whether or not it is specified." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15585 +#: guix-git/doc/guix.texi:15942 #, no-wrap msgid "keymap" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15593 +#: guix-git/doc/guix.texi:15950 msgid "To specify what each key of your keyboard does, you need to tell the operating system what @dfn{keyboard layout} you want to use. The default, when nothing is specified, is the US English QWERTY layout for 105-key PC keyboards. However, German speakers will usually prefer the German QWERTZ layout, French speakers will want the AZERTY layout, and so on; hackers might prefer Dvorak or bépo, and they might even want to further customize the effect of some of the keys. This section explains how to get that done." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15594 +#: guix-git/doc/guix.texi:15951 #, no-wrap msgid "keyboard layout, definition" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15596 +#: guix-git/doc/guix.texi:15953 msgid "There are three components that will want to know about your keyboard layout:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15603 +#: guix-git/doc/guix.texi:15960 msgid "The @emph{bootloader} may want to know what keyboard layout you want to use (@pxref{Bootloader Configuration, @code{keyboard-layout}}). This is useful if you want, for instance, to make sure that you can type the passphrase of your encrypted root partition using the right layout." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15608 +#: guix-git/doc/guix.texi:15965 msgid "The @emph{operating system kernel}, Linux, will need that so that the console is properly configured (@pxref{operating-system Reference, @code{keyboard-layout}})." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15612 +#: guix-git/doc/guix.texi:15969 msgid "The @emph{graphical display server}, usually Xorg, also has its own idea of the keyboard layout (@pxref{X Window, @code{keyboard-layout}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15616 +#: guix-git/doc/guix.texi:15973 msgid "Guix allows you to configure all three separately but, fortunately, it allows you to share the same keyboard layout for all three components." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15617 +#: guix-git/doc/guix.texi:15974 #, no-wrap msgid "XKB, keyboard layouts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15625 +#: guix-git/doc/guix.texi:15982 msgid "Keyboard layouts are represented by records created by the @code{keyboard-layout} procedure of @code{(gnu system keyboard)}. Following the X Keyboard extension (XKB), each layout has four attributes: a name (often a language code such as ``fi'' for Finnish or ``jp'' for Japanese), an optional variant name, an optional keyboard model name, and a possibly empty list of additional options. In most cases the layout name is all you care about." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15626 +#: guix-git/doc/guix.texi:15983 #, no-wrap msgid "{Scheme Procedure} keyboard-layout @var{name} [@var{variant}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15629 +#: guix-git/doc/guix.texi:15986 msgid "[#:model] [#:options '()] Return a new keyboard layout with the given @var{name} and @var{variant}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:15633 +#: guix-git/doc/guix.texi:15990 msgid "@var{name} must be a string such as @code{\"fr\"}; @var{variant} must be a string such as @code{\"bepo\"} or @code{\"nodeadkeys\"}. See the @code{xkeyboard-config} package for valid options." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15636 +#: guix-git/doc/guix.texi:15993 msgid "Here are a few examples:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15641 +#: guix-git/doc/guix.texi:15998 #, no-wrap msgid "" ";; The German QWERTZ layout. Here we assume a standard\n" @@ -27340,7 +27960,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15644 +#: guix-git/doc/guix.texi:16001 #, no-wrap msgid "" ";; The bépo variant of the French layout.\n" @@ -27349,7 +27969,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15647 +#: guix-git/doc/guix.texi:16004 #, no-wrap msgid "" ";; The Catalan layout.\n" @@ -27358,7 +27978,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15650 +#: guix-git/doc/guix.texi:16007 #, no-wrap msgid "" ";; Arabic layout with \"Alt-Shift\" to switch to US layout.\n" @@ -27367,7 +27987,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15657 +#: guix-git/doc/guix.texi:16014 #, no-wrap msgid "" ";; The Latin American Spanish layout. In addition, the\n" @@ -27380,7 +28000,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15660 +#: guix-git/doc/guix.texi:16017 #, no-wrap msgid "" ";; The Russian layout for a ThinkPad keyboard.\n" @@ -27389,7 +28009,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15665 +#: guix-git/doc/guix.texi:16022 #, no-wrap msgid "" ";; The \"US international\" layout, which is the US layout plus\n" @@ -27399,29 +28019,29 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15669 +#: guix-git/doc/guix.texi:16026 msgid "See the @file{share/X11/xkb} directory of the @code{xkeyboard-config} package for a complete list of supported layouts, variants, and models." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15670 +#: guix-git/doc/guix.texi:16027 #, no-wrap msgid "keyboard layout, configuration" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15674 +#: guix-git/doc/guix.texi:16031 msgid "Let's say you want your system to use the Turkish keyboard layout throughout your system---bootloader, console, and Xorg. Here's what your system configuration would look like:" msgstr "" #. type: findex -#: guix-git/doc/guix.texi:15675 +#: guix-git/doc/guix.texi:16032 #, no-wrap msgid "set-xorg-configuration" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15679 +#: guix-git/doc/guix.texi:16036 #, no-wrap msgid "" ";; Using the Turkish layout for the bootloader, the console,\n" @@ -27430,7 +28050,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15691 +#: guix-git/doc/guix.texi:16048 #, no-wrap msgid "" "(operating-system\n" @@ -27447,76 +28067,76 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15698 +#: guix-git/doc/guix.texi:16055 msgid "In the example above, for GRUB and for Xorg, we just refer to the @code{keyboard-layout} field defined above, but we could just as well refer to a different layout. The @code{set-xorg-configuration} procedure communicates the desired Xorg configuration to the graphical log-in manager, by default GDM." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15701 +#: guix-git/doc/guix.texi:16058 msgid "We've discussed how to specify the @emph{default} keyboard layout of your system when it starts, but you can also adjust it at run time:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15706 +#: guix-git/doc/guix.texi:16063 msgid "If you're using GNOME, its settings panel has a ``Region & Language'' entry where you can select one or more keyboard layouts." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15711 +#: guix-git/doc/guix.texi:16068 msgid "Under Xorg, the @command{setxkbmap} command (from the same-named package) allows you to change the current layout. For example, this is how you would change the layout to US Dvorak:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15714 +#: guix-git/doc/guix.texi:16071 #, no-wrap msgid "setxkbmap us dvorak\n" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:15721 +#: guix-git/doc/guix.texi:16078 msgid "The @code{loadkeys} command changes the keyboard layout in effect in the Linux console. However, note that @code{loadkeys} does @emph{not} use the XKB keyboard layout categorization described above. The command below loads the French bépo layout:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15724 +#: guix-git/doc/guix.texi:16081 #, no-wrap msgid "loadkeys fr-bepo\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15730 +#: guix-git/doc/guix.texi:16087 #, no-wrap msgid "locale" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15737 +#: guix-git/doc/guix.texi:16094 msgid "A @dfn{locale} defines cultural conventions for a particular language and region of the world (@pxref{Locales,,, libc, The GNU C Library Reference Manual}). Each locale has a name that typically has the form @code{@var{language}_@var{territory}.@var{codeset}}---e.g., @code{fr_LU.utf8} designates the locale for the French language, with cultural conventions from Luxembourg, and using the UTF-8 encoding." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15738 +#: guix-git/doc/guix.texi:16095 #, no-wrap msgid "locale definition" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15742 +#: guix-git/doc/guix.texi:16099 msgid "Usually, you will want to specify the default locale for the machine using the @code{locale} field of the @code{operating-system} declaration (@pxref{operating-system Reference, @code{locale}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15751 +#: guix-git/doc/guix.texi:16108 msgid "The selected locale is automatically added to the @dfn{locale definitions} known to the system if needed, with its codeset inferred from its name---e.g., @code{bo_CN.utf8} will be assumed to use the @code{UTF-8} codeset. Additional locale definitions can be specified in the @code{locale-definitions} slot of @code{operating-system}---this is useful, for instance, if the codeset could not be inferred from the locale name. The default set of locale definitions includes some widely used locales, but not all the available locales, in order to save space." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15754 +#: guix-git/doc/guix.texi:16111 msgid "For instance, to add the North Frisian locale for Germany, the value of that field may be:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15759 +#: guix-git/doc/guix.texi:16116 #, no-wrap msgid "" "(cons (locale-definition\n" @@ -27525,12 +28145,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15763 +#: guix-git/doc/guix.texi:16120 msgid "Likewise, to save space, one might want @code{locale-definitions} to list only the locales that are actually used, as in:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15768 +#: guix-git/doc/guix.texi:16125 #, no-wrap msgid "" "(list (locale-definition\n" @@ -27539,114 +28159,114 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15777 +#: guix-git/doc/guix.texi:16134 msgid "The compiled locale definitions are available at @file{/run/current-system/locale/X.Y}, where @code{X.Y} is the libc version, which is the default location where the GNU@tie{}libc provided by Guix looks for locale data. This can be overridden using the @env{LOCPATH} environment variable (@pxref{locales-and-locpath, @env{LOCPATH} and locale packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15780 +#: guix-git/doc/guix.texi:16137 msgid "The @code{locale-definition} form is provided by the @code{(gnu system locale)} module. Details are given below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15781 +#: guix-git/doc/guix.texi:16138 #, no-wrap msgid "{Data Type} locale-definition" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:15783 +#: guix-git/doc/guix.texi:16140 msgid "This is the data type of a locale definition." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15789 +#: guix-git/doc/guix.texi:16146 msgid "The name of the locale. @xref{Locale Names,,, libc, The GNU C Library Reference Manual}, for more information on locale names." msgstr "" #. type: table -#: guix-git/doc/guix.texi:15793 +#: guix-git/doc/guix.texi:16150 msgid "The name of the source for that locale. This is typically the @code{@var{language}_@var{territory}} part of the locale name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:15794 +#: guix-git/doc/guix.texi:16151 #, no-wrap msgid "@code{charset} (default: @code{\"UTF-8\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:15798 +#: guix-git/doc/guix.texi:16155 msgid "The ``character set'' or ``code set'' for that locale, @uref{https://www.iana.org/assignments/character-sets, as defined by IANA}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15802 +#: guix-git/doc/guix.texi:16159 #, no-wrap msgid "{Scheme Variable} %default-locale-definitions" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15806 +#: guix-git/doc/guix.texi:16163 msgid "A list of commonly used UTF-8 locales, used as the default value of the @code{locale-definitions} field of @code{operating-system} declarations." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15807 +#: guix-git/doc/guix.texi:16164 #, no-wrap msgid "locale name" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15808 +#: guix-git/doc/guix.texi:16165 #, no-wrap msgid "normalized codeset in locale names" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15814 +#: guix-git/doc/guix.texi:16171 msgid "These locale definitions use the @dfn{normalized codeset} for the part that follows the dot in the name (@pxref{Using gettextized software, normalized codeset,, libc, The GNU C Library Reference Manual}). So for instance it has @code{uk_UA.utf8} but @emph{not}, say, @code{uk_UA.UTF-8}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:15816 +#: guix-git/doc/guix.texi:16173 #, no-wrap msgid "Locale Data Compatibility Considerations" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15818 +#: guix-git/doc/guix.texi:16175 #, no-wrap msgid "incompatibility, of locale data" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15825 +#: guix-git/doc/guix.texi:16182 msgid "@code{operating-system} declarations provide a @code{locale-libcs} field to specify the GNU@tie{}libc packages that are used to compile locale declarations (@pxref{operating-system Reference}). ``Why would I care?'', you may ask. Well, it turns out that the binary format of locale data is occasionally incompatible from one libc version to another." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15837 +#: guix-git/doc/guix.texi:16194 msgid "For instance, a program linked against libc version 2.21 is unable to read locale data produced with libc 2.22; worse, that program @emph{aborts} instead of simply ignoring the incompatible locale data@footnote{Versions 2.23 and later of GNU@tie{}libc will simply skip the incompatible locale data, which is already an improvement.}. Similarly, a program linked against libc 2.22 can read most, but not all, of the locale data from libc 2.21 (specifically, @env{LC_COLLATE} data is incompatible); thus calls to @code{setlocale} may fail, but programs will not abort." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15842 +#: guix-git/doc/guix.texi:16199 msgid "The ``problem'' with Guix is that users have a lot of freedom: They can choose whether and when to upgrade software in their profiles, and might be using a libc version different from the one the system administrator used to build the system-wide locale data." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15846 +#: guix-git/doc/guix.texi:16203 msgid "Fortunately, unprivileged users can also install their own locale data and define @env{GUIX_LOCPATH} accordingly (@pxref{locales-and-locpath, @env{GUIX_LOCPATH} and locale packages})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15853 +#: guix-git/doc/guix.texi:16210 msgid "Still, it is best if the system-wide locale data at @file{/run/current-system/locale} is built for all the libc versions actually in use on the system, so that all the programs can access it---this is especially crucial on a multi-user system. To do that, the administrator can specify several libc packages in the @code{locale-libcs} field of @code{operating-system}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15856 +#: guix-git/doc/guix.texi:16213 #, no-wrap msgid "" "(use-package-modules base)\n" @@ -27654,7 +28274,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15860 +#: guix-git/doc/guix.texi:16217 #, no-wrap msgid "" "(operating-system\n" @@ -27663,39 +28283,39 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15865 +#: guix-git/doc/guix.texi:16222 msgid "This example would lead to a system containing locale definitions for both libc 2.21 and the current version of libc in @file{/run/current-system/locale}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15870 +#: guix-git/doc/guix.texi:16227 #, no-wrap msgid "system services" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15876 +#: guix-git/doc/guix.texi:16233 msgid "An important part of preparing an @code{operating-system} declaration is listing @dfn{system services} and their configuration (@pxref{Using the Configuration System}). System services are typically daemons launched when the system boots, or other actions needed at that time---e.g., configuring network access." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15883 +#: guix-git/doc/guix.texi:16240 msgid "Guix has a broad definition of ``service'' (@pxref{Service Composition}), but many services are managed by the GNU@tie{}Shepherd (@pxref{Shepherd Services}). On a running system, the @command{herd} command allows you to list the available services, show their status, start and stop them, or do other specific operations (@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}). For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15886 +#: guix-git/doc/guix.texi:16243 #, no-wrap msgid "# herd status\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15891 +#: guix-git/doc/guix.texi:16248 msgid "The above command, run as @code{root}, lists the currently defined services. The @command{herd doc} command shows a synopsis of the given service and its associated actions:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15895 +#: guix-git/doc/guix.texi:16252 #, no-wrap msgid "" "# herd doc nscd\n" @@ -27704,7 +28324,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15898 +#: guix-git/doc/guix.texi:16255 #, no-wrap msgid "" "# herd doc nscd action invalidate\n" @@ -27712,12 +28332,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15903 +#: guix-git/doc/guix.texi:16260 msgid "The @command{start}, @command{stop}, and @command{restart} sub-commands have the effect you would expect. For instance, the commands below stop the nscd service and restart the Xorg display server:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:15910 +#: guix-git/doc/guix.texi:16267 #, no-wrap msgid "" "# herd stop nscd\n" @@ -27728,46 +28348,46 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:15915 +#: guix-git/doc/guix.texi:16272 msgid "The following sections document the available services, starting with the core services, that may be used in an @code{operating-system} declaration." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:15951 guix-git/doc/guix.texi:24198 -#: guix-git/doc/guix.texi:24199 +#: guix-git/doc/guix.texi:16308 guix-git/doc/guix.texi:24560 +#: guix-git/doc/guix.texi:24561 #, fuzzy, no-wrap msgid "File-Sharing Services" msgstr "消息服务" #. type: menuentry -#: guix-git/doc/guix.texi:15951 +#: guix-git/doc/guix.texi:16308 #, fuzzy msgid "File-sharing services." msgstr "消息服务。" #. type: Plain text -#: guix-git/doc/guix.texi:15959 +#: guix-git/doc/guix.texi:16316 msgid "The @code{(gnu services base)} module provides definitions for the basic services that one expects from the system. The services exported by this module are listed below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15960 +#: guix-git/doc/guix.texi:16317 #, no-wrap msgid "{Scheme Variable} %base-services" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15966 +#: guix-git/doc/guix.texi:16323 msgid "This variable contains a list of basic services (@pxref{Service Types and Services}, for more information on service objects) one would expect from the system: a login service (mingetty) on each tty, syslogd, the libc name service cache daemon (nscd), the udev device manager, and more." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15971 +#: guix-git/doc/guix.texi:16328 msgid "This is the default value of the @code{services} field of @code{operating-system} declarations. Usually, when customizing a system, you will want to append services to @code{%base-services}, like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15976 +#: guix-git/doc/guix.texi:16333 #, no-wrap msgid "" "(append (list (service avahi-service-type)\n" @@ -27776,58 +28396,58 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15979 +#: guix-git/doc/guix.texi:16336 #, no-wrap msgid "{Scheme Variable} special-files-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15982 +#: guix-git/doc/guix.texi:16339 msgid "This is the service that sets up ``special files'' such as @file{/bin/sh}; an instance of it is part of @code{%base-services}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15986 +#: guix-git/doc/guix.texi:16343 msgid "The value associated with @code{special-files-service-type} services must be a list of tuples where the first element is the ``special file'' and the second element is its target. By default it is:" msgstr "" #. type: file{#1} -#: guix-git/doc/guix.texi:15987 +#: guix-git/doc/guix.texi:16344 #, no-wrap msgid "/bin/sh" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15988 +#: guix-git/doc/guix.texi:16345 #, no-wrap msgid "@file{sh}, in @file{/bin}" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:15991 +#: guix-git/doc/guix.texi:16348 #, no-wrap msgid "`((\"/bin/sh\" ,(file-append bash \"/bin/sh\")))\n" msgstr "" #. type: file{#1} -#: guix-git/doc/guix.texi:15993 +#: guix-git/doc/guix.texi:16350 #, no-wrap msgid "/usr/bin/env" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:15994 +#: guix-git/doc/guix.texi:16351 #, no-wrap msgid "@file{env}, in @file{/usr/bin}" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:15997 +#: guix-git/doc/guix.texi:16354 msgid "If you want to add, say, @code{/usr/bin/env} to your system, you can change it to:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16001 +#: guix-git/doc/guix.texi:16358 #, no-wrap msgid "" "`((\"/bin/sh\" ,(file-append bash \"/bin/sh\"))\n" @@ -27835,28 +28455,28 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16008 +#: guix-git/doc/guix.texi:16365 msgid "Since this is part of @code{%base-services}, you can use @code{modify-services} to customize the set of special files (@pxref{Service Reference, @code{modify-services}}). But the simple way to add a special file is @i{via} the @code{extra-special-file} procedure (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16010 +#: guix-git/doc/guix.texi:16367 #, no-wrap msgid "{Scheme Procedure} extra-special-file @var{file} @var{target}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16012 +#: guix-git/doc/guix.texi:16369 msgid "Use @var{target} as the ``special file'' @var{file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16016 +#: guix-git/doc/guix.texi:16373 msgid "For example, adding the following lines to the @code{services} field of your operating system declaration leads to a @file{/usr/bin/env} symlink:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16020 +#: guix-git/doc/guix.texi:16377 #, no-wrap msgid "" "(extra-special-file \"/usr/bin/env\"\n" @@ -27864,29 +28484,29 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16023 +#: guix-git/doc/guix.texi:16380 #, no-wrap msgid "{Scheme Procedure} host-name-service @var{name}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16025 +#: guix-git/doc/guix.texi:16382 msgid "Return a service that sets the host name to @var{name}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16027 +#: guix-git/doc/guix.texi:16384 #, no-wrap msgid "{Scheme Variable} console-font-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16032 +#: guix-git/doc/guix.texi:16389 msgid "Install the given fonts on the specified ttys (fonts are per virtual console on the kernel Linux). The value of this service is a list of tty/font pairs. The font can be the name of a font provided by the @code{kbd} package or any valid argument to @command{setfont}, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16041 +#: guix-git/doc/guix.texi:16398 #, no-wrap msgid "" "`((\"tty1\" . \"LatGrkCyr-8x16\")\n" @@ -27899,1109 +28519,1109 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16044 +#: guix-git/doc/guix.texi:16401 #, no-wrap msgid "{Scheme Procedure} login-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16048 +#: guix-git/doc/guix.texi:16405 msgid "Return a service to run login according to @var{config}, a @code{} object, which specifies the message of the day, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16050 +#: guix-git/doc/guix.texi:16407 #, no-wrap msgid "{Data Type} login-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16052 +#: guix-git/doc/guix.texi:16409 msgid "This is the data type representing the configuration of login." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16055 +#: guix-git/doc/guix.texi:16412 #, no-wrap msgid "motd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16056 +#: guix-git/doc/guix.texi:16413 #, no-wrap msgid "message of the day" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16058 +#: guix-git/doc/guix.texi:16415 msgid "A file-like object containing the ``message of the day''." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16059 guix-git/doc/guix.texi:19280 +#: guix-git/doc/guix.texi:16416 guix-git/doc/guix.texi:19642 #, no-wrap msgid "@code{allow-empty-passwords?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16062 +#: guix-git/doc/guix.texi:16419 msgid "Allow empty passwords by default so that first-time users can log in when the 'root' account has just been created." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16066 +#: guix-git/doc/guix.texi:16423 #, no-wrap msgid "{Scheme Procedure} mingetty-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16070 +#: guix-git/doc/guix.texi:16427 msgid "Return a service to run mingetty according to @var{config}, a @code{} object, which specifies the tty to run, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16072 +#: guix-git/doc/guix.texi:16429 #, no-wrap msgid "{Data Type} mingetty-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16075 +#: guix-git/doc/guix.texi:16432 msgid "This is the data type representing the configuration of Mingetty, which provides the default implementation of virtual console log-in." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16078 guix-git/doc/guix.texi:16117 -#: guix-git/doc/guix.texi:33550 +#: guix-git/doc/guix.texi:16435 guix-git/doc/guix.texi:16474 +#: guix-git/doc/guix.texi:33987 #, no-wrap msgid "tty" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16080 +#: guix-git/doc/guix.texi:16437 msgid "The name of the console this Mingetty runs on---e.g., @code{\"tty1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16081 guix-git/doc/guix.texi:16146 -#: guix-git/doc/guix.texi:16305 +#: guix-git/doc/guix.texi:16438 guix-git/doc/guix.texi:16503 +#: guix-git/doc/guix.texi:16662 #, no-wrap msgid "@code{auto-login} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16085 +#: guix-git/doc/guix.texi:16442 msgid "When true, this field must be a string denoting the user name under which the system automatically logs in. When it is @code{#f}, a user name and password must be entered to log in." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16086 +#: guix-git/doc/guix.texi:16443 #, no-wrap msgid "@code{login-program} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16090 +#: guix-git/doc/guix.texi:16447 msgid "This must be either @code{#f}, in which case the default log-in program is used (@command{login} from the Shadow tool suite), or a gexp denoting the name of the log-in program." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16091 +#: guix-git/doc/guix.texi:16448 #, no-wrap msgid "@code{login-pause?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16094 +#: guix-git/doc/guix.texi:16451 msgid "When set to @code{#t} in conjunction with @var{auto-login}, the user will have to press a key before the log-in shell is launched." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16095 +#: guix-git/doc/guix.texi:16452 #, fuzzy, no-wrap msgid "@code{clear-on-logout?} (default: @code{#t})" msgstr "@code{cleanup-hook}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:16097 +#: guix-git/doc/guix.texi:16454 msgid "When set to @code{#t}, the screen will be cleared after logout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16098 +#: guix-git/doc/guix.texi:16455 #, no-wrap msgid "@code{mingetty} (default: @var{mingetty})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16100 +#: guix-git/doc/guix.texi:16457 msgid "The Mingetty package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16104 +#: guix-git/doc/guix.texi:16461 #, no-wrap msgid "{Scheme Procedure} agetty-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16108 +#: guix-git/doc/guix.texi:16465 msgid "Return a service to run agetty according to @var{config}, an @code{} object, which specifies the tty to run, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16110 +#: guix-git/doc/guix.texi:16467 #, no-wrap msgid "{Data Type} agetty-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16114 +#: guix-git/doc/guix.texi:16471 msgid "This is the data type representing the configuration of agetty, which implements virtual and serial console log-in. See the @code{agetty(8)} man page for more information." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16121 +#: guix-git/doc/guix.texi:16478 msgid "The name of the console this agetty runs on, as a string---e.g., @code{\"ttyS0\"}. This argument is optional, it will default to a reasonable default serial port used by the kernel Linux." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16125 +#: guix-git/doc/guix.texi:16482 msgid "For this, if there is a value for an option @code{agetty.tty} in the kernel command line, agetty will extract the device name of the serial port from it and use that." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16129 +#: guix-git/doc/guix.texi:16486 msgid "If not and if there is a value for an option @code{console} with a tty in the Linux command line, agetty will extract the device name of the serial port from it and use that." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16133 +#: guix-git/doc/guix.texi:16490 msgid "In both cases, agetty will leave the other serial device settings (baud rate etc.)@: alone---in the hope that Linux pinned them to the correct values." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16134 guix-git/doc/guix.texi:33711 +#: guix-git/doc/guix.texi:16491 guix-git/doc/guix.texi:34148 #, no-wrap msgid "@code{baud-rate} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16137 +#: guix-git/doc/guix.texi:16494 msgid "A string containing a comma-separated list of one or more baud rates, in descending order." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16138 +#: guix-git/doc/guix.texi:16495 #, no-wrap msgid "@code{term} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16141 +#: guix-git/doc/guix.texi:16498 msgid "A string containing the value used for the @env{TERM} environment variable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16142 +#: guix-git/doc/guix.texi:16499 #, no-wrap msgid "@code{eight-bits?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16145 +#: guix-git/doc/guix.texi:16502 msgid "When @code{#t}, the tty is assumed to be 8-bit clean, and parity detection is disabled." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16149 guix-git/doc/guix.texi:16308 +#: guix-git/doc/guix.texi:16506 guix-git/doc/guix.texi:16665 msgid "When passed a login name, as a string, the specified user will be logged in automatically without prompting for their login name or password." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16150 +#: guix-git/doc/guix.texi:16507 #, no-wrap msgid "@code{no-reset?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16152 +#: guix-git/doc/guix.texi:16509 msgid "When @code{#t}, don't reset terminal cflags (control modes)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16153 +#: guix-git/doc/guix.texi:16510 #, no-wrap msgid "@code{host} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16156 +#: guix-git/doc/guix.texi:16513 msgid "This accepts a string containing the ``login_host'', which will be written into the @file{/var/run/utmpx} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16157 +#: guix-git/doc/guix.texi:16514 #, no-wrap msgid "@code{remote?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16161 +#: guix-git/doc/guix.texi:16518 msgid "When set to @code{#t} in conjunction with @var{host}, this will add an @code{-r} fakehost option to the command line of the login program specified in @var{login-program}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16162 +#: guix-git/doc/guix.texi:16519 #, no-wrap msgid "@code{flow-control?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16164 +#: guix-git/doc/guix.texi:16521 msgid "When set to @code{#t}, enable hardware (RTS/CTS) flow control." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16165 +#: guix-git/doc/guix.texi:16522 #, no-wrap msgid "@code{no-issue?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16168 +#: guix-git/doc/guix.texi:16525 msgid "When set to @code{#t}, the contents of the @file{/etc/issue} file will not be displayed before presenting the login prompt." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16169 +#: guix-git/doc/guix.texi:16526 #, no-wrap msgid "@code{init-string} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16172 +#: guix-git/doc/guix.texi:16529 msgid "This accepts a string that will be sent to the tty or modem before sending anything else. It can be used to initialize a modem." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16173 +#: guix-git/doc/guix.texi:16530 #, no-wrap msgid "@code{no-clear?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16176 +#: guix-git/doc/guix.texi:16533 msgid "When set to @code{#t}, agetty will not clear the screen before showing the login prompt." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16177 +#: guix-git/doc/guix.texi:16534 #, no-wrap msgid "@code{login-program} (default: (file-append shadow \"/bin/login\"))" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16181 +#: guix-git/doc/guix.texi:16538 msgid "This must be either a gexp denoting the name of a log-in program, or unset, in which case the default value is the @command{login} from the Shadow tool suite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16182 +#: guix-git/doc/guix.texi:16539 #, no-wrap msgid "@code{local-line} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16186 +#: guix-git/doc/guix.texi:16543 msgid "Control the CLOCAL line flag. This accepts one of three symbols as arguments, @code{'auto}, @code{'always}, or @code{'never}. If @code{#f}, the default value chosen by agetty is @code{'auto}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16187 +#: guix-git/doc/guix.texi:16544 #, no-wrap msgid "@code{extract-baud?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16190 +#: guix-git/doc/guix.texi:16547 msgid "When set to @code{#t}, instruct agetty to try to extract the baud rate from the status messages produced by certain types of modems." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16191 +#: guix-git/doc/guix.texi:16548 #, no-wrap msgid "@code{skip-login?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16195 +#: guix-git/doc/guix.texi:16552 msgid "When set to @code{#t}, do not prompt the user for a login name. This can be used with @var{login-program} field to use non-standard login systems." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16196 +#: guix-git/doc/guix.texi:16553 #, no-wrap msgid "@code{no-newline?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16199 +#: guix-git/doc/guix.texi:16556 msgid "When set to @code{#t}, do not print a newline before printing the @file{/etc/issue} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16201 +#: guix-git/doc/guix.texi:16558 #, no-wrap msgid "@code{login-options} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16206 +#: guix-git/doc/guix.texi:16563 msgid "This option accepts a string containing options that are passed to the login program. When used with the @var{login-program}, be aware that a malicious user could try to enter a login name containing embedded options that could be parsed by the login program." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16207 +#: guix-git/doc/guix.texi:16564 #, no-wrap msgid "@code{login-pause} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16211 +#: guix-git/doc/guix.texi:16568 msgid "When set to @code{#t}, wait for any key before showing the login prompt. This can be used in conjunction with @var{auto-login} to save memory by lazily spawning shells." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16212 +#: guix-git/doc/guix.texi:16569 #, no-wrap msgid "@code{chroot} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16215 +#: guix-git/doc/guix.texi:16572 msgid "Change root to the specified directory. This option accepts a directory path as a string." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16216 +#: guix-git/doc/guix.texi:16573 #, no-wrap msgid "@code{hangup?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16219 +#: guix-git/doc/guix.texi:16576 msgid "Use the Linux system call @code{vhangup} to do a virtual hangup of the specified terminal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16220 +#: guix-git/doc/guix.texi:16577 #, no-wrap msgid "@code{keep-baud?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16224 +#: guix-git/doc/guix.texi:16581 msgid "When set to @code{#t}, try to keep the existing baud rate. The baud rates from @var{baud-rate} are used when agetty receives a @key{BREAK} character." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16225 +#: guix-git/doc/guix.texi:16582 #, no-wrap msgid "@code{timeout} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16228 +#: guix-git/doc/guix.texi:16585 msgid "When set to an integer value, terminate if no user name could be read within @var{timeout} seconds." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16229 +#: guix-git/doc/guix.texi:16586 #, no-wrap msgid "@code{detect-case?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16235 +#: guix-git/doc/guix.texi:16592 msgid "When set to @code{#t}, turn on support for detecting an uppercase-only terminal. This setting will detect a login name containing only uppercase letters as indicating an uppercase-only terminal and turn on some upper-to-lower case conversions. Note that this will not support Unicode characters." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16236 +#: guix-git/doc/guix.texi:16593 #, no-wrap msgid "@code{wait-cr?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16241 +#: guix-git/doc/guix.texi:16598 msgid "When set to @code{#t}, wait for the user or modem to send a carriage-return or linefeed character before displaying @file{/etc/issue} or login prompt. This is typically used with the @var{init-string} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16242 +#: guix-git/doc/guix.texi:16599 #, no-wrap msgid "@code{no-hints?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16245 +#: guix-git/doc/guix.texi:16602 msgid "When set to @code{#t}, do not print hints about Num, Caps, and Scroll locks." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16246 +#: guix-git/doc/guix.texi:16603 #, no-wrap msgid "@code{no-hostname?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16249 +#: guix-git/doc/guix.texi:16606 msgid "By default, the hostname is printed. When this option is set to @code{#t}, no hostname will be shown at all." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16250 +#: guix-git/doc/guix.texi:16607 #, no-wrap msgid "@code{long-hostname?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16254 +#: guix-git/doc/guix.texi:16611 msgid "By default, the hostname is only printed until the first dot. When this option is set to @code{#t}, the fully qualified hostname by @code{gethostname} or @code{getaddrinfo} is shown." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16255 +#: guix-git/doc/guix.texi:16612 #, no-wrap msgid "@code{erase-characters} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16258 +#: guix-git/doc/guix.texi:16615 msgid "This option accepts a string of additional characters that should be interpreted as backspace when the user types their login name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16259 +#: guix-git/doc/guix.texi:16616 #, no-wrap msgid "@code{kill-characters} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16263 +#: guix-git/doc/guix.texi:16620 msgid "This option accepts a string that should be interpreted to mean ``ignore all previous characters'' (also called a ``kill'' character) when the user types their login name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16264 +#: guix-git/doc/guix.texi:16621 #, no-wrap msgid "@code{chdir} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16267 +#: guix-git/doc/guix.texi:16624 msgid "This option accepts, as a string, a directory path that will be changed to before login." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16268 +#: guix-git/doc/guix.texi:16625 #, no-wrap msgid "@code{delay} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16271 +#: guix-git/doc/guix.texi:16628 msgid "This options accepts, as an integer, the number of seconds to sleep before opening the tty and displaying the login prompt." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16272 +#: guix-git/doc/guix.texi:16629 #, no-wrap msgid "@code{nice} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16275 +#: guix-git/doc/guix.texi:16632 msgid "This option accepts, as an integer, the nice value with which to run the @command{login} program." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16276 guix-git/doc/guix.texi:16564 -#: guix-git/doc/guix.texi:17478 guix-git/doc/guix.texi:25181 -#: guix-git/doc/guix.texi:26658 guix-git/doc/guix.texi:29074 -#: guix-git/doc/guix.texi:29869 guix-git/doc/guix.texi:31622 -#: guix-git/doc/guix.texi:34051 +#: guix-git/doc/guix.texi:16633 guix-git/doc/guix.texi:16921 +#: guix-git/doc/guix.texi:17840 guix-git/doc/guix.texi:25543 +#: guix-git/doc/guix.texi:26995 guix-git/doc/guix.texi:29411 +#: guix-git/doc/guix.texi:30234 guix-git/doc/guix.texi:31987 +#: guix-git/doc/guix.texi:34488 #, no-wrap msgid "@code{extra-options} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16279 +#: guix-git/doc/guix.texi:16636 msgid "This option provides an ``escape hatch'' for the user to provide arbitrary command-line arguments to @command{agetty} as a list of strings." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16283 +#: guix-git/doc/guix.texi:16640 #, no-wrap msgid "{Scheme Procedure} kmscon-service-type @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16287 +#: guix-git/doc/guix.texi:16644 msgid "Return a service to run @uref{https://www.freedesktop.org/wiki/Software/kmscon,kmscon} according to @var{config}, a @code{} object, which specifies the tty to run, among other things." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16289 +#: guix-git/doc/guix.texi:16646 #, no-wrap msgid "{Data Type} kmscon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16292 +#: guix-git/doc/guix.texi:16649 msgid "This is the data type representing the configuration of Kmscon, which implements virtual console log-in." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16295 +#: guix-git/doc/guix.texi:16652 #, no-wrap msgid "virtual-terminal" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16297 +#: guix-git/doc/guix.texi:16654 msgid "The name of the console this Kmscon runs on---e.g., @code{\"tty1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16298 +#: guix-git/doc/guix.texi:16655 #, no-wrap msgid "@code{login-program} (default: @code{#~(string-append #$shadow \"/bin/login\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16301 +#: guix-git/doc/guix.texi:16658 msgid "A gexp denoting the name of the log-in program. The default log-in program is @command{login} from the Shadow tool suite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16302 +#: guix-git/doc/guix.texi:16659 #, no-wrap msgid "@code{login-arguments} (default: @code{'(\"-p\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16304 +#: guix-git/doc/guix.texi:16661 msgid "A list of arguments to pass to @command{login}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16309 +#: guix-git/doc/guix.texi:16666 #, no-wrap msgid "@code{hardware-acceleration?} (default: #f)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16311 +#: guix-git/doc/guix.texi:16668 msgid "Whether to use hardware acceleration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16312 +#: guix-git/doc/guix.texi:16669 #, fuzzy, no-wrap msgid "@code{font-engine} (default: @code{\"pango\"})" msgstr "@code{journal-content}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:16314 +#: guix-git/doc/guix.texi:16671 msgid "Font engine used in Kmscon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16315 +#: guix-git/doc/guix.texi:16672 #, fuzzy, no-wrap msgid "@code{font-size} (default: @code{12})" msgstr "@code{max-zone-size}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:16317 +#: guix-git/doc/guix.texi:16674 msgid "Font size used in Kmscon." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16321 +#: guix-git/doc/guix.texi:16678 msgid "If this is @code{#f}, Kmscon uses the default keyboard layout---usually US English (``qwerty'') for a 105-key PC keyboard." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16325 +#: guix-git/doc/guix.texi:16682 msgid "Otherwise this must be a @code{keyboard-layout} object specifying the keyboard layout. @xref{Keyboard Layout}, for more information on how to specify the keyboard layout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16326 +#: guix-git/doc/guix.texi:16683 #, no-wrap msgid "@code{kmscon} (default: @var{kmscon})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16328 +#: guix-git/doc/guix.texi:16685 msgid "The Kmscon package to use." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16332 +#: guix-git/doc/guix.texi:16689 #, no-wrap msgid "name service cache daemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16333 +#: guix-git/doc/guix.texi:16690 #, no-wrap msgid "nscd" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16334 +#: guix-git/doc/guix.texi:16691 #, no-wrap msgid "{Scheme Procedure} nscd-service [@var{config}] [#:glibc glibc] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16339 +#: guix-git/doc/guix.texi:16696 msgid "[#:name-services '()] Return a service that runs the libc name service cache daemon (nscd) with the given @var{config}---an @code{} object. @xref{Name Service Switch}, for an example." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16341 +#: guix-git/doc/guix.texi:16698 msgid "For convenience, the Shepherd service for nscd provides the following actions:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16343 +#: guix-git/doc/guix.texi:16700 #, no-wrap msgid "invalidate" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16344 +#: guix-git/doc/guix.texi:16701 #, no-wrap msgid "cache invalidation, nscd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16345 +#: guix-git/doc/guix.texi:16702 #, no-wrap msgid "nscd, cache invalidation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16347 +#: guix-git/doc/guix.texi:16704 msgid "This invalidate the given cache. For instance, running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16350 +#: guix-git/doc/guix.texi:16707 #, no-wrap msgid "herd invalidate nscd hosts\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16354 +#: guix-git/doc/guix.texi:16711 msgid "invalidates the host name lookup cache of nscd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16355 +#: guix-git/doc/guix.texi:16712 #, no-wrap msgid "statistics" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16358 +#: guix-git/doc/guix.texi:16715 msgid "Running @command{herd statistics nscd} displays information about nscd usage and caches." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16362 +#: guix-git/doc/guix.texi:16719 #, no-wrap msgid "{Scheme Variable} %nscd-default-configuration" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16366 +#: guix-git/doc/guix.texi:16723 msgid "This is the default @code{} value (see below) used by @code{nscd-service}. It uses the caches defined by @code{%nscd-default-caches}; see below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16368 +#: guix-git/doc/guix.texi:16725 #, no-wrap msgid "{Data Type} nscd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16371 +#: guix-git/doc/guix.texi:16728 msgid "This is the data type representing the name service cache daemon (nscd) configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16374 +#: guix-git/doc/guix.texi:16731 #, no-wrap msgid "@code{name-services} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16377 +#: guix-git/doc/guix.texi:16734 msgid "List of packages denoting @dfn{name services} that must be visible to the nscd---e.g., @code{(list @var{nss-mdns})}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16378 +#: guix-git/doc/guix.texi:16735 #, no-wrap msgid "@code{glibc} (default: @var{glibc})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16381 +#: guix-git/doc/guix.texi:16738 msgid "Package object denoting the GNU C Library providing the @command{nscd} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16382 +#: guix-git/doc/guix.texi:16739 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/nscd.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16385 +#: guix-git/doc/guix.texi:16742 msgid "Name of the nscd log file. This is where debugging output goes when @code{debug-level} is strictly positive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16386 +#: guix-git/doc/guix.texi:16743 #, no-wrap msgid "@code{debug-level} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16389 +#: guix-git/doc/guix.texi:16746 msgid "Integer denoting the debugging levels. Higher numbers mean that more debugging output is logged." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16390 +#: guix-git/doc/guix.texi:16747 #, fuzzy, no-wrap msgid "@code{caches} (default: @code{%nscd-default-caches})" msgstr "@code{xfce}(默认值:@code{xfce})" #. type: table -#: guix-git/doc/guix.texi:16393 +#: guix-git/doc/guix.texi:16750 msgid "List of @code{} objects denoting things to be cached; see below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16397 +#: guix-git/doc/guix.texi:16754 #, no-wrap msgid "{Data Type} nscd-cache" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16399 +#: guix-git/doc/guix.texi:16756 msgid "Data type representing a cache database of nscd and its parameters." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16402 guix-git/doc/guix.texi:21071 +#: guix-git/doc/guix.texi:16759 guix-git/doc/guix.texi:21433 #, no-wrap msgid "database" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16407 +#: guix-git/doc/guix.texi:16764 msgid "This is a symbol representing the name of the database to be cached. Valid values are @code{passwd}, @code{group}, @code{hosts}, and @code{services}, which designate the corresponding NSS database (@pxref{NSS Basics,,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:16408 +#: guix-git/doc/guix.texi:16765 #, no-wrap msgid "positive-time-to-live" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:16409 +#: guix-git/doc/guix.texi:16766 #, no-wrap msgid "@code{negative-time-to-live} (default: @code{20})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16412 +#: guix-git/doc/guix.texi:16769 msgid "A number representing the number of seconds during which a positive or negative lookup result remains in cache." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16413 +#: guix-git/doc/guix.texi:16770 #, no-wrap msgid "@code{check-files?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16416 +#: guix-git/doc/guix.texi:16773 msgid "Whether to check for updates of the files corresponding to @var{database}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16420 +#: guix-git/doc/guix.texi:16777 msgid "For instance, when @var{database} is @code{hosts}, setting this flag instructs nscd to check for updates in @file{/etc/hosts} and to take them into account." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16421 +#: guix-git/doc/guix.texi:16778 #, no-wrap msgid "@code{persistent?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16423 +#: guix-git/doc/guix.texi:16780 msgid "Whether the cache should be stored persistently on disk." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16424 +#: guix-git/doc/guix.texi:16781 #, no-wrap msgid "@code{shared?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16426 +#: guix-git/doc/guix.texi:16783 msgid "Whether the cache should be shared among users." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16427 +#: guix-git/doc/guix.texi:16784 #, no-wrap msgid "@code{max-database-size} (default: 32@tie{}MiB)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16429 +#: guix-git/doc/guix.texi:16786 msgid "Maximum size in bytes of the database cache." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16436 +#: guix-git/doc/guix.texi:16793 #, no-wrap msgid "{Scheme Variable} %nscd-default-caches" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16439 +#: guix-git/doc/guix.texi:16796 msgid "List of @code{} objects used by default by @code{nscd-configuration} (see above)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16445 +#: guix-git/doc/guix.texi:16802 msgid "It enables persistent and aggressive caching of service and host name lookups. The latter provides better host name lookup performance, resilience in the face of unreliable name servers, and also better privacy---often the result of host name lookups is in local cache, so external name servers do not even need to be queried." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16448 +#: guix-git/doc/guix.texi:16805 msgid "syslog-configuration-type" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16448 guix-git/doc/guix.texi:16464 +#: guix-git/doc/guix.texi:16805 guix-git/doc/guix.texi:16821 #, no-wrap msgid "syslog" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16449 guix-git/doc/guix.texi:17035 +#: guix-git/doc/guix.texi:16806 guix-git/doc/guix.texi:17397 #, no-wrap msgid "logging" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16450 +#: guix-git/doc/guix.texi:16807 #, no-wrap msgid "{Data Type} syslog-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16452 +#: guix-git/doc/guix.texi:16809 msgid "This data type represents the configuration of the syslog daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16454 +#: guix-git/doc/guix.texi:16811 #, no-wrap msgid "@code{syslogd} (default: @code{#~(string-append #$inetutils \"/libexec/syslogd\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16456 +#: guix-git/doc/guix.texi:16813 msgid "The syslog daemon to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16457 +#: guix-git/doc/guix.texi:16814 #, no-wrap msgid "@code{config-file} (default: @code{%default-syslog.conf})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16459 +#: guix-git/doc/guix.texi:16816 msgid "The syslog configuration file to use." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16464 +#: guix-git/doc/guix.texi:16821 msgid "syslog-service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16465 +#: guix-git/doc/guix.texi:16822 #, no-wrap msgid "{Scheme Procedure} syslog-service @var{config}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16467 +#: guix-git/doc/guix.texi:16824 msgid "Return a service that runs a syslog daemon according to @var{config}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16470 +#: guix-git/doc/guix.texi:16827 msgid "@xref{syslogd invocation,,, inetutils, GNU Inetutils}, for more information on the configuration file syntax." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16472 +#: guix-git/doc/guix.texi:16829 #, no-wrap msgid "{Scheme Variable} guix-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16476 +#: guix-git/doc/guix.texi:16833 msgid "This is the type of the service that runs the build daemon, @command{guix-daemon} (@pxref{Invoking guix-daemon}). Its value must be a @code{guix-configuration} record as described below." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16479 +#: guix-git/doc/guix.texi:16836 msgid "guix-configuration-type" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16479 +#: guix-git/doc/guix.texi:16836 #, no-wrap msgid "{Data Type} guix-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16482 +#: guix-git/doc/guix.texi:16839 msgid "This data type represents the configuration of the Guix build daemon. @xref{Invoking guix-daemon}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16484 +#: guix-git/doc/guix.texi:16841 #, no-wrap msgid "@code{guix} (default: @var{guix})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16486 guix-git/doc/guix.texi:16763 +#: guix-git/doc/guix.texi:16843 guix-git/doc/guix.texi:17120 msgid "The Guix package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16487 +#: guix-git/doc/guix.texi:16844 #, no-wrap msgid "@code{build-group} (default: @code{\"guixbuild\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16489 +#: guix-git/doc/guix.texi:16846 msgid "Name of the group for build user accounts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16490 +#: guix-git/doc/guix.texi:16847 #, no-wrap msgid "@code{build-accounts} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16492 +#: guix-git/doc/guix.texi:16849 msgid "Number of build user accounts to create." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16493 +#: guix-git/doc/guix.texi:16850 #, no-wrap msgid "@code{authorize-key?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16500 +#: guix-git/doc/guix.texi:16857 msgid "Whether to authorize the substitute keys listed in @code{authorized-keys}---by default that of @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} (@pxref{Substitutes})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16506 +#: guix-git/doc/guix.texi:16863 msgid "When @code{authorize-key?} is true, @file{/etc/guix/acl} cannot be changed by invoking @command{guix archive --authorize}. You must instead adjust @code{guix-configuration} as you wish and reconfigure the system. This ensures that your operating system configuration file is self-contained." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:16513 +#: guix-git/doc/guix.texi:16870 msgid "When booting or reconfiguring to a system where @code{authorize-key?} is true, the existing @file{/etc/guix/acl} file is backed up as @file{/etc/guix/acl.bak} if it was determined to be a manually modified file. This is to facilitate migration from earlier versions, which allowed for in-place modifications to @file{/etc/guix/acl}." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:16515 +#: guix-git/doc/guix.texi:16872 #, no-wrap msgid "%default-authorized-guix-keys" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16516 +#: guix-git/doc/guix.texi:16873 #, fuzzy, no-wrap msgid "@code{authorized-keys} (default: @code{%default-authorized-guix-keys})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:16522 +#: guix-git/doc/guix.texi:16879 msgid "The list of authorized key files for archive imports, as a list of string-valued gexps (@pxref{Invoking guix archive}). By default, it contains that of @code{@value{SUBSTITUTE-SERVER-1}} and @code{@value{SUBSTITUTE-SERVER-2}} (@pxref{Substitutes}). See @code{substitute-urls} below for an example on how to change it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16523 +#: guix-git/doc/guix.texi:16880 #, no-wrap msgid "@code{use-substitutes?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16525 +#: guix-git/doc/guix.texi:16882 msgid "Whether to use substitutes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16526 guix-git/doc/guix.texi:29171 +#: guix-git/doc/guix.texi:16883 guix-git/doc/guix.texi:29508 #, fuzzy, no-wrap msgid "@code{substitute-urls} (default: @code{%default-substitute-urls})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:16528 guix-git/doc/guix.texi:29173 +#: guix-git/doc/guix.texi:16885 guix-git/doc/guix.texi:29510 msgid "The list of URLs where to look for substitutes by default." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16535 +#: guix-git/doc/guix.texi:16892 msgid "Suppose you would like to fetch substitutes from @code{guix.example.org} in addition to @code{@value{SUBSTITUTE-SERVER-1}}. You will need to do two things: (1) add @code{guix.example.org} to @code{substitute-urls}, and (2) authorize its signing key, having done appropriate checks (@pxref{Substitute Server Authorization}). The configuration below does exactly that:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16544 +#: guix-git/doc/guix.texi:16901 #, no-wrap msgid "" "(guix-configuration\n" @@ -29014,150 +29634,151 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16549 +#: guix-git/doc/guix.texi:16906 msgid "This example assumes that the file @file{./guix.example.org-key.pub} contains the public key that @code{guix.example.org} uses to sign substitutes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16550 +#: guix-git/doc/guix.texi:16907 #, no-wrap msgid "@code{max-silent-time} (default: @code{0})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:16551 +#: guix-git/doc/guix.texi:16908 #, no-wrap msgid "@code{timeout} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16555 +#: guix-git/doc/guix.texi:16912 msgid "The number of seconds of silence and the number of seconds of activity, respectively, after which a build process times out. A value of zero disables the timeout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16556 -#, no-wrap -msgid "@code{log-compression} (default: @code{'bzip2})" -msgstr "" +#: guix-git/doc/guix.texi:16913 +#, fuzzy, no-wrap +#| msgid "@code{compression-level} (default: @code{3})" +msgid "@code{log-compression} (default: @code{'gzip})" +msgstr "@code{compression-level}(默认值:@code{3})" #. type: table -#: guix-git/doc/guix.texi:16559 +#: guix-git/doc/guix.texi:16916 msgid "The type of compression used for build logs---one of @code{gzip}, @code{bzip2}, or @code{none}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16560 +#: guix-git/doc/guix.texi:16917 #, fuzzy, no-wrap msgid "@code{discover?} (default: @code{#f})" msgstr "@code{speed}(默认值:@code{1.0})" #. type: table -#: guix-git/doc/guix.texi:16566 +#: guix-git/doc/guix.texi:16923 msgid "List of extra command-line options for @command{guix-daemon}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16567 +#: guix-git/doc/guix.texi:16924 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/guix-daemon.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16570 +#: guix-git/doc/guix.texi:16927 msgid "File where @command{guix-daemon}'s standard output and standard error are written." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16571 +#: guix-git/doc/guix.texi:16928 #, no-wrap msgid "HTTP proxy, for @code{guix-daemon}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16572 +#: guix-git/doc/guix.texi:16929 #, no-wrap msgid "proxy, for @code{guix-daemon} HTTP access" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16573 +#: guix-git/doc/guix.texi:16930 #, no-wrap msgid "@code{http-proxy} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16576 +#: guix-git/doc/guix.texi:16933 msgid "The URL of the HTTP and HTTPS proxy used for downloading fixed-output derivations and substitutes." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16579 +#: guix-git/doc/guix.texi:16936 msgid "It is also possible to change the daemon's proxy at run time through the @code{set-http-proxy} action, which restarts it:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16582 +#: guix-git/doc/guix.texi:16939 #, no-wrap msgid "herd set-http-proxy guix-daemon http://localhost:8118\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16585 +#: guix-git/doc/guix.texi:16942 msgid "To clear the proxy settings, run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16588 +#: guix-git/doc/guix.texi:16945 #, fuzzy, no-wrap msgid "herd set-http-proxy guix-daemon\n" msgstr "安全,guix-daemon" #. type: item -#: guix-git/doc/guix.texi:16590 +#: guix-git/doc/guix.texi:16947 #, no-wrap msgid "@code{tmpdir} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16592 +#: guix-git/doc/guix.texi:16949 msgid "A directory path where the @command{guix-daemon} will perform builds." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16596 +#: guix-git/doc/guix.texi:16953 #, no-wrap msgid "{Scheme Procedure} udev-service [#:udev @var{eudev} #:rules @code{'()}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16602 +#: guix-git/doc/guix.texi:16959 msgid "Run @var{udev}, which populates the @file{/dev} directory dynamically. udev rules can be provided as a list of files through the @var{rules} variable. The procedures @code{udev-rule}, @code{udev-rules-service} and @code{file->udev-rule} from @code{(gnu services base)} simplify the creation of such rule files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16605 +#: guix-git/doc/guix.texi:16962 msgid "The @command{herd rules udev} command, as root, returns the name of the directory containing all the active udev rules." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16607 +#: guix-git/doc/guix.texi:16964 #, no-wrap msgid "{Scheme Procedure} udev-rule [@var{file-name} @var{contents}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16610 +#: guix-git/doc/guix.texi:16967 msgid "Return a udev-rule file named @var{file-name} containing the rules defined by the @var{contents} literal." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16614 +#: guix-git/doc/guix.texi:16971 msgid "In the following example, a rule for a USB device is defined to be stored in the file @file{90-usb-thing.rules}. The rule runs a script upon detecting a USB device with a given product identifier." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16622 +#: guix-git/doc/guix.texi:16979 #, no-wrap msgid "" "(define %example-udev-rule\n" @@ -29169,23 +29790,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16625 +#: guix-git/doc/guix.texi:16982 #, no-wrap msgid "{Scheme Procedure} udev-rules-service [@var{name} @var{rules}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16632 +#: guix-git/doc/guix.texi:16989 msgid "[#:groups @var{groups}] Return a service that extends @code{udev-service-type } with @var{rules} and @code{account-service-type} with @var{groups} as system groups. This works by creating a singleton service type @code{@var{name}-udev-rules}, of which the returned service is an instance." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16635 +#: guix-git/doc/guix.texi:16992 msgid "Here we show how it can be used to extend @code{udev-service-type} with the previously defined rule @code{%example-udev-rule}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16642 +#: guix-git/doc/guix.texi:16999 #, no-wrap msgid "" "(operating-system\n" @@ -29196,23 +29817,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16645 +#: guix-git/doc/guix.texi:17002 #, no-wrap msgid "{Scheme Procedure} file->udev-rule [@var{file-name} @var{file}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16648 +#: guix-git/doc/guix.texi:17005 msgid "Return a udev file named @var{file-name} containing the rules defined within @var{file}, a file-like object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16650 +#: guix-git/doc/guix.texi:17007 msgid "The following example showcases how we can use an existing rule file." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16655 +#: guix-git/doc/guix.texi:17012 #, no-wrap msgid "" "(use-modules (guix download) ;for url-fetch\n" @@ -29222,7 +29843,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16666 +#: guix-git/doc/guix.texi:17023 #, no-wrap msgid "" "(define %android-udev-rules\n" @@ -29238,17 +29859,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16675 +#: guix-git/doc/guix.texi:17032 msgid "Additionally, Guix package definitions can be included in @var{rules} in order to extend the udev rules with the definitions found under their @file{lib/udev/rules.d} sub-directory. In lieu of the previous @var{file->udev-rule} example, we could have used the @var{android-udev-rules} package which exists in Guix in the @code{(gnu packages android)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16684 +#: guix-git/doc/guix.texi:17041 msgid "The following example shows how to use the @var{android-udev-rules} package so that the Android tool @command{adb} can detect devices without root privileges. It also details how to create the @code{adbusers} group, which is required for the proper functioning of the rules defined within the @code{android-udev-rules} package. To create such a group, we must define it both as part of the @code{supplementary-groups} of our @code{user-account} declaration, as well as in the @var{groups} of the @code{udev-rules-service} procedure." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16689 +#: guix-git/doc/guix.texi:17046 #, no-wrap msgid "" "(use-modules (gnu packages android) ;for android-udev-rules\n" @@ -29258,7 +29879,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16702 +#: guix-git/doc/guix.texi:17059 #, no-wrap msgid "" "(operating-system\n" @@ -29276,328 +29897,339 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16704 +#: guix-git/doc/guix.texi:17061 #, no-wrap msgid "{Scheme Variable} urandom-seed-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16709 +#: guix-git/doc/guix.texi:17066 msgid "Save some entropy in @code{%random-seed-file} to seed @file{/dev/urandom} when rebooting. It also tries to seed @file{/dev/urandom} from @file{/dev/hwrng} while booting, if @file{/dev/hwrng} exists and is readable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16711 +#: guix-git/doc/guix.texi:17068 #, no-wrap msgid "{Scheme Variable} %random-seed-file" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16715 +#: guix-git/doc/guix.texi:17072 msgid "This is the name of the file where some random bytes are saved by @var{urandom-seed-service} to seed @file{/dev/urandom} when rebooting. It defaults to @file{/var/lib/random-seed}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16717 +#: guix-git/doc/guix.texi:17074 #, no-wrap msgid "mouse" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16718 +#: guix-git/doc/guix.texi:17075 #, no-wrap msgid "gpm" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16719 +#: guix-git/doc/guix.texi:17076 #, no-wrap msgid "{Scheme Variable} gpm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16724 +#: guix-git/doc/guix.texi:17081 msgid "This is the type of the service that runs GPM, the @dfn{general-purpose mouse daemon}, which provides mouse support to the Linux console. GPM allows users to use the mouse in the console, notably to select, copy, and paste text." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:16727 +#: guix-git/doc/guix.texi:17084 msgid "The value for services of this type must be a @code{gpm-configuration} (see below). This service is not part of @code{%base-services}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16729 +#: guix-git/doc/guix.texi:17086 #, no-wrap msgid "{Data Type} gpm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16731 +#: guix-git/doc/guix.texi:17088 msgid "Data type representing the configuration of GPM." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16733 +#: guix-git/doc/guix.texi:17090 #, no-wrap msgid "@code{options} (default: @code{%default-gpm-options})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16738 +#: guix-git/doc/guix.texi:17095 msgid "Command-line options passed to @command{gpm}. The default set of options instruct @command{gpm} to listen to mouse events on @file{/dev/input/mice}. @xref{Command Line,,, gpm, gpm manual}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16739 +#: guix-git/doc/guix.texi:17096 #, no-wrap msgid "@code{gpm} (default: @code{gpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16741 +#: guix-git/doc/guix.texi:17098 msgid "The GPM package to use." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16746 +#: guix-git/doc/guix.texi:17103 msgid "guix-publish-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16746 +#: guix-git/doc/guix.texi:17103 #, no-wrap msgid "{Scheme Variable} guix-publish-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16750 +#: guix-git/doc/guix.texi:17107 msgid "This is the service type for @command{guix publish} (@pxref{Invoking guix publish}). Its value must be a @code{guix-publish-configuration} object, as described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16754 +#: guix-git/doc/guix.texi:17111 msgid "This assumes that @file{/etc/guix} already contains a signing key pair as created by @command{guix archive --generate-key} (@pxref{Invoking guix archive}). If that is not the case, the service will fail to start." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16756 +#: guix-git/doc/guix.texi:17113 #, no-wrap msgid "{Data Type} guix-publish-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:16759 +#: guix-git/doc/guix.texi:17116 msgid "Data type representing the configuration of the @code{guix publish} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16761 +#: guix-git/doc/guix.texi:17118 #, no-wrap msgid "@code{guix} (default: @code{guix})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:16764 guix-git/doc/guix.texi:31477 +#: guix-git/doc/guix.texi:17121 guix-git/doc/guix.texi:31842 #, no-wrap msgid "@code{port} (default: @code{80})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16766 +#: guix-git/doc/guix.texi:17123 msgid "The TCP port to listen for connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16767 guix-git/doc/guix.texi:29054 -#: guix-git/doc/guix.texi:32858 +#: guix-git/doc/guix.texi:17124 guix-git/doc/guix.texi:29391 +#: guix-git/doc/guix.texi:33223 #, no-wrap msgid "@code{host} (default: @code{\"localhost\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16770 +#: guix-git/doc/guix.texi:17127 msgid "The host (and thus, network interface) to listen to. Use @code{\"0.0.0.0\"} to listen on all the network interfaces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16771 +#: guix-git/doc/guix.texi:17128 #, fuzzy, no-wrap msgid "@code{advertise?} (default: @code{#f})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:16774 +#: guix-git/doc/guix.texi:17131 msgid "When true, advertise the service on the local network @i{via} the DNS-SD protocol, using Avahi." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16778 +#: guix-git/doc/guix.texi:17135 msgid "This allows neighboring Guix devices with discovery on (see @code{guix-configuration} above) to discover this @command{guix publish} instance and to automatically download substitutes from it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16779 +#: guix-git/doc/guix.texi:17136 #, fuzzy, no-wrap msgid "@code{compression} (default: @code{'((\"gzip\" 3) (\"zstd\" 3))})" msgstr "@code{compression-level}(默认值:@code{3})" #. type: table -#: guix-git/doc/guix.texi:16783 +#: guix-git/doc/guix.texi:17140 msgid "This is a list of compression method/level tuple used when compressing substitutes. For example, to compress all substitutes with @emph{both} lzip at level 7 and gzip at level 9, write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16786 +#: guix-git/doc/guix.texi:17143 #, no-wrap msgid "'((\"lzip\" 7) (\"gzip\" 9))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16792 +#: guix-git/doc/guix.texi:17149 msgid "Level 9 achieves the best compression ratio at the expense of increased CPU usage, whereas level 1 achieves fast compression. @xref{Invoking guix publish}, for more information on the available compression methods and the tradeoffs involved." msgstr "" #. type: table -#: guix-git/doc/guix.texi:16794 +#: guix-git/doc/guix.texi:17151 msgid "An empty list disables compression altogether." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16795 +#: guix-git/doc/guix.texi:17152 #, no-wrap msgid "@code{nar-path} (default: @code{\"nar\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16798 +#: guix-git/doc/guix.texi:17155 msgid "The URL path at which ``nars'' can be fetched. @xref{Invoking guix publish, @option{--nar-path}}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16799 +#: guix-git/doc/guix.texi:17156 #, no-wrap msgid "@code{cache} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16805 +#: guix-git/doc/guix.texi:17162 msgid "When it is @code{#f}, disable caching and instead generate archives on demand. Otherwise, this should be the name of a directory---e.g., @code{\"/var/cache/guix/publish\"}---where @command{guix publish} caches archives and meta-data ready to be sent. @xref{Invoking guix publish, @option{--cache}}, for more information on the tradeoffs involved." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16806 +#: guix-git/doc/guix.texi:17163 #, no-wrap msgid "@code{workers} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16810 +#: guix-git/doc/guix.texi:17167 msgid "When it is an integer, this is the number of worker threads used for caching; when @code{#f}, the number of processors is used. @xref{Invoking guix publish, @option{--workers}}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16811 +#: guix-git/doc/guix.texi:17168 #, no-wrap msgid "@code{cache-bypass-threshold} (default: 10 MiB)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16816 +#: guix-git/doc/guix.texi:17173 msgid "When @code{cache} is true, this is the maximum size in bytes of a store item for which @command{guix publish} may bypass its cache in case of a cache miss. @xref{Invoking guix publish, @option{--cache-bypass-threshold}}, for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:16817 +#: guix-git/doc/guix.texi:17174 #, no-wrap msgid "@code{ttl} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:16821 +#: guix-git/doc/guix.texi:17178 msgid "When it is an integer, this denotes the @dfn{time-to-live} in seconds of the published archives. @xref{Invoking guix publish, @option{--ttl}}, for more information." msgstr "" +#. type: item +#: guix-git/doc/guix.texi:17179 +#, fuzzy, no-wrap +msgid "@code{negative-ttl} (default: @code{#f})" +msgstr "@code{challenge}(默认值:@code{#f})" + +#. type: table +#: guix-git/doc/guix.texi:17183 +msgid "When it is an integer, this denotes the @dfn{time-to-live} in seconds for the negative lookups. @xref{Invoking guix publish, @option{--negative-ttl}}, for more information." +msgstr "" + #. type: anchor{#1} -#: guix-git/doc/guix.texi:16825 +#: guix-git/doc/guix.texi:17187 msgid "rngd-service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16825 +#: guix-git/doc/guix.texi:17187 #, no-wrap msgid "{Scheme Procedure} rngd-service [#:rng-tools @var{rng-tools}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16830 +#: guix-git/doc/guix.texi:17192 msgid "[#:device \"/dev/hwrng\"] Return a service that runs the @command{rngd} program from @var{rng-tools} to add @var{device} to the kernel's entropy pool. The service will fail if @var{device} does not exist." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:16833 +#: guix-git/doc/guix.texi:17195 msgid "pam-limits-service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16833 +#: guix-git/doc/guix.texi:17195 #, no-wrap msgid "session limits" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16834 +#: guix-git/doc/guix.texi:17196 #, no-wrap msgid "ulimit" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16835 +#: guix-git/doc/guix.texi:17197 #, no-wrap msgid "priority" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16836 +#: guix-git/doc/guix.texi:17198 #, no-wrap msgid "realtime" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16837 +#: guix-git/doc/guix.texi:17199 #, no-wrap msgid "jackd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16838 +#: guix-git/doc/guix.texi:17200 #, no-wrap msgid "nofile" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16839 +#: guix-git/doc/guix.texi:17201 #, fuzzy, no-wrap msgid "open file descriptors" msgstr "简介和描述" #. type: deffn -#: guix-git/doc/guix.texi:16840 +#: guix-git/doc/guix.texi:17202 #, no-wrap msgid "{Scheme Procedure} pam-limits-service [#:limits @code{'()}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16847 +#: guix-git/doc/guix.texi:17209 msgid "Return a service that installs a configuration file for the @uref{http://linux-pam.org/Linux-PAM-html/sag-pam_limits.html, @code{pam_limits} module}. The procedure optionally takes a list of @code{pam-limits-entry} values, which can be used to specify @code{ulimit} limits and @code{nice} priority limits to user sessions." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16850 +#: guix-git/doc/guix.texi:17212 msgid "The following limits definition sets two hard and soft limits for all login sessions of users in the @code{realtime} group:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16856 +#: guix-git/doc/guix.texi:17218 #, no-wrap msgid "" "(pam-limits-service\n" @@ -29607,17 +30239,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16862 +#: guix-git/doc/guix.texi:17224 msgid "The first entry increases the maximum realtime priority for non-privileged processes; the second entry lifts any restriction of the maximum address space that can be locked in memory. These settings are commonly used for real-time audio systems." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16865 +#: guix-git/doc/guix.texi:17227 msgid "Another useful example is raising the maximum number of open file descriptors that can be used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16870 +#: guix-git/doc/guix.texi:17232 #, no-wrap msgid "" "(pam-limits-service\n" @@ -29626,40 +30258,40 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:16878 +#: guix-git/doc/guix.texi:17240 msgid "In the above example, the asterisk means the limit should apply to any user. It is important to ensure the chosen value doesn't exceed the maximum system value visible in the @file{/proc/sys/fs/file-max} file, else the users would be prevented from login in. For more information about the Pluggable Authentication Module (PAM) limits, refer to the @samp{pam_limits} man page from the @code{linux-pam} package." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16883 guix-git/doc/guix.texi:37407 +#: guix-git/doc/guix.texi:17245 guix-git/doc/guix.texi:37897 #, no-wrap msgid "cron" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16884 guix-git/doc/guix.texi:37408 +#: guix-git/doc/guix.texi:17246 guix-git/doc/guix.texi:37898 #, no-wrap msgid "mcron" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:16885 guix-git/doc/guix.texi:37409 +#: guix-git/doc/guix.texi:17247 guix-git/doc/guix.texi:37899 #, no-wrap msgid "scheduling jobs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16892 +#: guix-git/doc/guix.texi:17254 msgid "The @code{(gnu services mcron)} module provides an interface to GNU@tie{}mcron, a daemon to run jobs at scheduled times (@pxref{Top,,, mcron, GNU@tie{}mcron}). GNU@tie{}mcron is similar to the traditional Unix @command{cron} daemon; the main difference is that it is implemented in Guile Scheme, which provides a lot of flexibility when specifying the scheduling of jobs and their actions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16900 +#: guix-git/doc/guix.texi:17262 msgid "The example below defines an operating system that runs the @command{updatedb} (@pxref{Invoking updatedb,,, find, Finding Files}) and the @command{guix gc} commands (@pxref{Invoking guix gc}) daily, as well as the @command{mkid} command on behalf of an unprivileged user (@pxref{mkid invocation,,, idutils, ID Database Utilities}). It uses gexps to introduce job definitions that are passed to mcron (@pxref{G-Expressions})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16904 +#: guix-git/doc/guix.texi:17266 #, no-wrap msgid "" "(use-modules (guix) (gnu) (gnu services mcron))\n" @@ -29668,7 +30300,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16914 +#: guix-git/doc/guix.texi:17276 #, no-wrap msgid "" "(define updatedb-job\n" @@ -29684,7 +30316,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16920 +#: guix-git/doc/guix.texi:17282 #, no-wrap msgid "" "(define garbage-collector-job\n" @@ -29696,7 +30328,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16927 +#: guix-git/doc/guix.texi:17289 #, no-wrap msgid "" "(define idutils-job\n" @@ -29709,7 +30341,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16930 +#: guix-git/doc/guix.texi:17292 #, no-wrap msgid "" "(operating-system\n" @@ -29718,7 +30350,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16940 +#: guix-git/doc/guix.texi:17302 #, no-wrap msgid "" " ;; %BASE-SERVICES already includes an instance of\n" @@ -29733,24 +30365,24 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:16942 +#: guix-git/doc/guix.texi:17304 #, fuzzy, no-wrap #| msgid "Top" msgid "Tip" msgstr "Top" #. type: quotation -#: guix-git/doc/guix.texi:16948 +#: guix-git/doc/guix.texi:17310 msgid "When providing the action of a job specification as a procedure, you should provide an explicit name for the job via the optional 3rd argument as done in the @code{updatedb-job} example above. Otherwise, the job would appear as ``Lambda function'' in the output of @command{herd schedule mcron}, which is not nearly descriptive enough!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16955 +#: guix-git/doc/guix.texi:17317 msgid "For more complex jobs defined in Scheme where you need control over the top level, for instance to introduce a @code{use-modules} form, you can move your code to a separate program using the @code{program-file} procedure of the @code{(guix gexp)} module (@pxref{G-Expressions}). The example below illustrates that." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16971 +#: guix-git/doc/guix.texi:17333 #, no-wrap msgid "" "(define %battery-alert-job\n" @@ -29771,7 +30403,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16973 +#: guix-git/doc/guix.texi:17335 #, no-wrap msgid "" " (define %min-level 20)\n" @@ -29779,7 +30411,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:16984 +#: guix-git/doc/guix.texi:17346 #, no-wrap msgid "" " (setenv \"LC_ALL\" \"C\") ;ensure English output\n" @@ -29795,106 +30427,106 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16989 +#: guix-git/doc/guix.texi:17351 msgid "@xref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron}, for more information on mcron job specifications. Below is the reference of the mcron service." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:16992 +#: guix-git/doc/guix.texi:17354 msgid "On a running system, you can use the @code{schedule} action of the service to visualize the mcron jobs that will be executed next:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:16995 +#: guix-git/doc/guix.texi:17357 #, no-wrap msgid "# herd schedule mcron\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17000 +#: guix-git/doc/guix.texi:17362 msgid "The example above lists the next five tasks that will be executed, but you can also specify the number of tasks to display:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:17003 +#: guix-git/doc/guix.texi:17365 #, no-wrap msgid "# herd schedule mcron 10\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17005 +#: guix-git/doc/guix.texi:17367 #, no-wrap msgid "{Scheme Variable} mcron-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17008 +#: guix-git/doc/guix.texi:17370 msgid "This is the type of the @code{mcron} service, whose value is an @code{mcron-configuration} object." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17013 guix-git/doc/guix.texi:37428 +#: guix-git/doc/guix.texi:17375 guix-git/doc/guix.texi:37918 msgid "This service type can be the target of a service extension that provides additional job specifications (@pxref{Service Composition}). In other words, it is possible to define services that provide additional mcron jobs to run." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17015 +#: guix-git/doc/guix.texi:17377 #, no-wrap msgid "{Data Type} mcron-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17017 guix-git/doc/guix.texi:37432 +#: guix-git/doc/guix.texi:17379 guix-git/doc/guix.texi:37922 msgid "Data type representing the configuration of mcron." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17019 guix-git/doc/guix.texi:37434 +#: guix-git/doc/guix.texi:17381 guix-git/doc/guix.texi:37924 #, no-wrap msgid "@code{mcron} (default: @var{mcron})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17021 guix-git/doc/guix.texi:37436 +#: guix-git/doc/guix.texi:17383 guix-git/doc/guix.texi:37926 msgid "The mcron package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17022 guix-git/doc/guix.texi:17091 -#: guix-git/doc/guix.texi:37437 +#: guix-git/doc/guix.texi:17384 guix-git/doc/guix.texi:17453 +#: guix-git/doc/guix.texi:37927 #, no-wrap msgid "jobs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17026 guix-git/doc/guix.texi:37441 +#: guix-git/doc/guix.texi:17388 guix-git/doc/guix.texi:37931 msgid "This is a list of gexps (@pxref{G-Expressions}), where each gexp corresponds to an mcron job specification (@pxref{Syntax, mcron job specifications,, mcron, GNU@tie{}mcron})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17033 +#: guix-git/doc/guix.texi:17395 #, no-wrap msgid "rottlog" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17034 +#: guix-git/doc/guix.texi:17396 #, no-wrap msgid "log rotation" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17041 +#: guix-git/doc/guix.texi:17403 msgid "Log files such as those found in @file{/var/log} tend to grow endlessly, so it's a good idea to @dfn{rotate} them once in a while---i.e., archive their contents in separate files, possibly compressed. The @code{(gnu services admin)} module provides an interface to GNU@tie{}Rot[t]log, a log rotation tool (@pxref{Top,,, rottlog, GNU Rot[t]log Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17047 +#: guix-git/doc/guix.texi:17409 msgid "This service is part of @code{%base-services}, and thus enabled by default, with the default settings, for commonly encountered log files. The example below shows how to extend it with an additional @dfn{rotation}, should you need to do that (usually, services that produce log files already take care of that):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17051 +#: guix-git/doc/guix.texi:17413 #, no-wrap msgid "" "(use-modules (guix) (gnu))\n" @@ -29903,7 +30535,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17055 +#: guix-git/doc/guix.texi:17417 #, no-wrap msgid "" "(define my-log-files\n" @@ -29913,7 +30545,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17064 +#: guix-git/doc/guix.texi:17426 #, no-wrap msgid "" "(operating-system\n" @@ -29927,93 +30559,93 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17066 +#: guix-git/doc/guix.texi:17428 #, no-wrap msgid "{Scheme Variable} rottlog-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17069 +#: guix-git/doc/guix.texi:17431 msgid "This is the type of the Rottlog service, whose value is a @code{rottlog-configuration} object." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17072 +#: guix-git/doc/guix.texi:17434 msgid "Other services can extend this one with new @code{log-rotation} objects (see below), thereby augmenting the set of files to be rotated." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17075 +#: guix-git/doc/guix.texi:17437 msgid "This service type can define mcron jobs (@pxref{Scheduled Job Execution}) to run the rottlog service." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17077 +#: guix-git/doc/guix.texi:17439 #, no-wrap msgid "{Data Type} rottlog-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17079 +#: guix-git/doc/guix.texi:17441 msgid "Data type representing the configuration of rottlog." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17081 +#: guix-git/doc/guix.texi:17443 #, no-wrap msgid "@code{rottlog} (default: @code{rottlog})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17083 +#: guix-git/doc/guix.texi:17445 msgid "The Rottlog package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17084 +#: guix-git/doc/guix.texi:17446 #, no-wrap msgid "@code{rc-file} (default: @code{(file-append rottlog \"/etc/rc\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17087 +#: guix-git/doc/guix.texi:17449 msgid "The Rottlog configuration file to use (@pxref{Mandatory RC Variables,,, rottlog, GNU Rot[t]log Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17088 +#: guix-git/doc/guix.texi:17450 #, no-wrap msgid "@code{rotations} (default: @code{%default-rotations})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17090 +#: guix-git/doc/guix.texi:17452 msgid "A list of @code{log-rotation} objects as defined below." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17094 +#: guix-git/doc/guix.texi:17456 msgid "This is a list of gexps where each gexp corresponds to an mcron job specification (@pxref{Scheduled Job Execution})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17097 +#: guix-git/doc/guix.texi:17459 #, no-wrap msgid "{Data Type} log-rotation" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17099 +#: guix-git/doc/guix.texi:17461 msgid "Data type representing the rotation of a group of log files." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17103 +#: guix-git/doc/guix.texi:17465 msgid "Taking an example from the Rottlog manual (@pxref{Period Related File Examples,,, rottlog, GNU Rot[t]log Manual}), a log rotation might be defined like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17112 +#: guix-git/doc/guix.texi:17474 #, no-wrap msgid "" "(log-rotation\n" @@ -30026,121 +30658,115 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17115 +#: guix-git/doc/guix.texi:17477 msgid "The list of fields is as follows:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17117 +#: guix-git/doc/guix.texi:17479 #, no-wrap msgid "@code{frequency} (default: @code{'weekly})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17119 +#: guix-git/doc/guix.texi:17481 msgid "The log rotation frequency, a symbol." msgstr "" -#. type: code{#1} -#: guix-git/doc/guix.texi:17120 -#, no-wrap -msgid "files" -msgstr "" - #. type: table -#: guix-git/doc/guix.texi:17122 +#: guix-git/doc/guix.texi:17484 msgid "The list of files or file glob patterns to rotate." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17123 +#: guix-git/doc/guix.texi:17485 #, no-wrap msgid "@code{options} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17126 +#: guix-git/doc/guix.texi:17488 msgid "The list of rottlog options for this rotation (@pxref{Configuration parameters,,, rottlog, GNU Rot[t]lg Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17127 +#: guix-git/doc/guix.texi:17489 #, no-wrap msgid "@code{post-rotate} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17129 +#: guix-git/doc/guix.texi:17491 msgid "Either @code{#f} or a gexp to execute once the rotation has completed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17132 +#: guix-git/doc/guix.texi:17494 #, no-wrap msgid "{Scheme Variable} %default-rotations" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17135 +#: guix-git/doc/guix.texi:17497 msgid "Specifies weekly rotation of @code{%rotated-files} and of @file{/var/log/guix-daemon.log}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17137 +#: guix-git/doc/guix.texi:17499 #, no-wrap msgid "{Scheme Variable} %rotated-files" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17141 +#: guix-git/doc/guix.texi:17503 msgid "The list of syslog-controlled files to be rotated. By default it is: @code{'(\"/var/log/messages\" \"/var/log/secure\" \"/var/log/debug\" \\ \"/var/log/maillog\")}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17154 +#: guix-git/doc/guix.texi:17516 msgid "The @code{(gnu services networking)} module provides services to configure network interfaces and set up networking on your machine. Those services provide different ways for you to set up your machine: by declaring a static network configuration, by running a Dynamic Host Configuration Protocol (DHCP) client, or by running daemons such as NetworkManager and Connman that automate the whole process, automatically adapt to connectivity changes, and provide a high-level user interface." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17160 +#: guix-git/doc/guix.texi:17522 msgid "On a laptop, NetworkManager and Connman are by far the most convenient options, which is why the default desktop services include NetworkManager (@pxref{Desktop Services, @code{%desktop-services}}). For a server, or for a virtual machine or a container, static network configuration or a simple DHCP client are often more appropriate." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17163 +#: guix-git/doc/guix.texi:17525 msgid "This section describes the various network setup services available, starting with static network configuration." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17164 +#: guix-git/doc/guix.texi:17526 #, no-wrap msgid "{Scheme Variable} static-networking-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17169 +#: guix-git/doc/guix.texi:17531 msgid "This is the type for statically-configured network interfaces. Its value must be a list of @code{static-networking} records. Each of them declares a set of @dfn{addresses}, @dfn{routes}, and @dfn{links}, as show below." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17170 +#: guix-git/doc/guix.texi:17532 #, no-wrap msgid "network interface controller (NIC)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17171 +#: guix-git/doc/guix.texi:17533 #, no-wrap msgid "NIC, networking interface controller" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17174 +#: guix-git/doc/guix.texi:17536 msgid "Here is the simplest configuration, with only one network interface controller (NIC) and only IPv4 connectivity:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17188 +#: guix-git/doc/guix.texi:17550 #, no-wrap msgid "" ";; Static networking for one NIC, IPv4-only.\n" @@ -30158,29 +30784,29 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17197 +#: guix-git/doc/guix.texi:17559 msgid "The snippet above can be added to the @code{services} field of your operating system configuration (@pxref{Using the Configuration System}). It will configure your machine to have 10.0.2.15 as its IP address, with a 24-bit netmask for the local network---meaning that any 10.0.2.@var{x} address is on the local area network (LAN). Traffic to addresses outside the local network is routed @i{via} 10.0.2.2. Host names are resolved by sending domain name system (DNS) queries to 10.0.2.3." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17199 +#: guix-git/doc/guix.texi:17561 #, fuzzy, no-wrap msgid "{Data Type} static-networking" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:17201 +#: guix-git/doc/guix.texi:17563 #, fuzzy msgid "This is the data type representing a static network configuration." msgstr "管理操作系统配置。" #. type: deftp -#: guix-git/doc/guix.texi:17205 +#: guix-git/doc/guix.texi:17567 msgid "As an example, here is how you would declare the configuration of a machine with a single network interface controller (NIC) available as @code{eno1}, and with one IPv4 and one IPv6 address:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17222 +#: guix-git/doc/guix.texi:17584 #, no-wrap msgid "" ";; Network configuration for one NIC, IPv4 + IPv6.\n" @@ -30201,12 +30827,12 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17228 +#: guix-git/doc/guix.texi:17590 msgid "If you are familiar with the @command{ip} command of the @uref{https://wiki.linuxfoundation.org/networking/iproute2, @code{iproute2} package} found on Linux-based systems, the declaration above is equivalent to typing:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:17234 +#: guix-git/doc/guix.texi:17596 #, no-wrap msgid "" "ip address add 10.0.2.15/24 dev eno1\n" @@ -30216,358 +30842,358 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17239 +#: guix-git/doc/guix.texi:17601 msgid "Run @command{man 8 ip} for more info. Venerable GNU/Linux users will certainly know how to do it with @command{ifconfig} and @command{route}, but we'll spare you that." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17241 +#: guix-git/doc/guix.texi:17603 msgid "The available fields of this data type are as follows:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17243 +#: guix-git/doc/guix.texi:17605 #, no-wrap msgid "addresses" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:17244 +#: guix-git/doc/guix.texi:17606 #, fuzzy, no-wrap msgid "@code{links} (default: @code{'()})" msgstr "@code{features} (@code{'()})" #. type: itemx -#: guix-git/doc/guix.texi:17245 +#: guix-git/doc/guix.texi:17607 #, fuzzy, no-wrap msgid "@code{routes} (default: @code{'()})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:17248 +#: guix-git/doc/guix.texi:17610 msgid "The list of @code{network-address}, @code{network-link}, and @code{network-route} records for this network (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17249 +#: guix-git/doc/guix.texi:17611 #, fuzzy, no-wrap msgid "@code{name-servers} (default: @code{'()})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:17252 +#: guix-git/doc/guix.texi:17614 msgid "The list of IP addresses (strings) of domain name servers. These IP addresses go to @file{/etc/resolv.conf}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17253 +#: guix-git/doc/guix.texi:17615 #, fuzzy, no-wrap msgid "@code{provision} (default: @code{'(networking)})" msgstr "@code{includes}(默认值:@code{'()})" #. type: table -#: guix-git/doc/guix.texi:17256 +#: guix-git/doc/guix.texi:17618 msgid "If true, this should be a list of symbols for the Shepherd service corresponding to this network configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17257 +#: guix-git/doc/guix.texi:17619 #, fuzzy, no-wrap msgid "@code{requirement} (default @code{'()})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:17259 +#: guix-git/doc/guix.texi:17621 msgid "The list of Shepherd services depended on." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17262 +#: guix-git/doc/guix.texi:17624 #, fuzzy, no-wrap msgid "{Data Type} network-address" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:17265 +#: guix-git/doc/guix.texi:17627 #, fuzzy msgid "This is the data type representing the IP address of a network interface." msgstr "管理操作系统配置。" #. type: table -#: guix-git/doc/guix.texi:17270 +#: guix-git/doc/guix.texi:17632 msgid "The name of the network interface for this address---e.g., @code{\"eno1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17271 +#: guix-git/doc/guix.texi:17633 #, no-wrap msgid "value" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17275 +#: guix-git/doc/guix.texi:17637 msgid "The actual IP address and network mask, in @uref{https://en.wikipedia.org/wiki/CIDR#CIDR_notation, @acronym{CIDR, Classless Inter-Domain Routing} notation}, as a string." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17279 +#: guix-git/doc/guix.texi:17641 msgid "For example, @code{\"10.0.2.15/24\"} denotes IPv4 address 10.0.2.15 on a 24-bit sub-network---all 10.0.2.@var{x} addresses are on the same local network." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17280 +#: guix-git/doc/guix.texi:17642 #, no-wrap msgid "ipv6?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17283 +#: guix-git/doc/guix.texi:17645 msgid "Whether @code{value} denotes an IPv6 address. By default this is automatically determined." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17286 +#: guix-git/doc/guix.texi:17648 #, fuzzy, no-wrap msgid "{Data Type} network-route" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:17288 +#: guix-git/doc/guix.texi:17650 #, fuzzy msgid "This is the data type representing a network route." msgstr "管理操作系统配置。" #. type: code{#1} -#: guix-git/doc/guix.texi:17290 +#: guix-git/doc/guix.texi:17652 #, fuzzy, no-wrap #| msgid "deduplication" msgid "destination" msgstr "去重" #. type: table -#: guix-git/doc/guix.texi:17293 +#: guix-git/doc/guix.texi:17655 msgid "The route destination (a string), either an IP address or @code{\"default\"} to denote the default route." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17294 +#: guix-git/doc/guix.texi:17656 #, fuzzy, no-wrap msgid "@code{source} (default: @code{#f})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:17296 +#: guix-git/doc/guix.texi:17658 #, fuzzy #| msgid "The rottlog service." msgid "The route source." msgstr "rottlog服务。" #. type: item -#: guix-git/doc/guix.texi:17297 guix-git/doc/guix.texi:34761 +#: guix-git/doc/guix.texi:17659 guix-git/doc/guix.texi:35200 #, no-wrap msgid "@code{device} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17299 +#: guix-git/doc/guix.texi:17661 msgid "The device used for this route---e.g., @code{\"eno2\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17300 +#: guix-git/doc/guix.texi:17662 #, fuzzy, no-wrap msgid "@code{ipv6?} (default: auto)" msgstr "@code{dnssec-policy}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:17303 +#: guix-git/doc/guix.texi:17665 msgid "Whether this is an IPv6 route. By default this is automatically determined based on @code{destination} or @code{gateway}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17304 +#: guix-git/doc/guix.texi:17666 #, fuzzy, no-wrap msgid "@code{gateway} (default: @code{#f})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:17306 +#: guix-git/doc/guix.texi:17668 msgid "IP address (a string) through which traffic is routed." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17309 +#: guix-git/doc/guix.texi:17671 #, fuzzy, no-wrap msgid "{Data Type} network-link" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:17312 +#: guix-git/doc/guix.texi:17674 msgid "Data type for a network link (@pxref{Link,,, guile-netlink, Guile-Netlink Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17316 +#: guix-git/doc/guix.texi:17678 msgid "The name of the link---e.g., @code{\"v0p0\"}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17319 +#: guix-git/doc/guix.texi:17681 msgid "A symbol denoting the type of the link---e.g., @code{'veth}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17320 +#: guix-git/doc/guix.texi:17682 #, no-wrap msgid "arguments" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17322 +#: guix-git/doc/guix.texi:17684 msgid "List of arguments for this type of link." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17325 +#: guix-git/doc/guix.texi:17687 #, no-wrap msgid "loopback device" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17326 +#: guix-git/doc/guix.texi:17688 #, no-wrap msgid "{Scheme Variable} %loopback-static-networking" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17330 +#: guix-git/doc/guix.texi:17692 msgid "This is the @code{static-networking} record representing the ``loopback device'', @code{lo}, for IP addresses 127.0.0.1 and ::1, and providing the @code{loopback} Shepherd service." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17332 +#: guix-git/doc/guix.texi:17694 #, no-wrap msgid "networking, with QEMU" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17333 +#: guix-git/doc/guix.texi:17695 #, no-wrap msgid "QEMU, networking" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17334 +#: guix-git/doc/guix.texi:17696 #, no-wrap msgid "{Scheme Variable} %qemu-static-networking" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17338 +#: guix-git/doc/guix.texi:17700 msgid "This is the @code{static-networking} record representing network setup when using QEMU's user-mode network stack on @code{eth0} (@pxref{Using the user mode network stack,,, QEMU, QEMU Documentation})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17340 +#: guix-git/doc/guix.texi:17702 #, no-wrap msgid "DHCP, networking service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17341 +#: guix-git/doc/guix.texi:17703 #, no-wrap msgid "{Scheme Variable} dhcp-client-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17345 +#: guix-git/doc/guix.texi:17707 msgid "This is the type of services that run @var{dhcp}, a Dynamic Host Configuration Protocol (DHCP) client, on all the non-loopback network interfaces. Its value is the DHCP client package to use, @code{isc-dhcp} by default." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17347 +#: guix-git/doc/guix.texi:17709 #, no-wrap msgid "NetworkManager" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17349 +#: guix-git/doc/guix.texi:17711 #, no-wrap msgid "{Scheme Variable} network-manager-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17354 +#: guix-git/doc/guix.texi:17716 msgid "This is the service type for the @uref{https://wiki.gnome.org/Projects/NetworkManager, NetworkManager} service. The value for this service type is a @code{network-manager-configuration} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17357 guix-git/doc/guix.texi:17509 -#: guix-git/doc/guix.texi:17538 +#: guix-git/doc/guix.texi:17719 guix-git/doc/guix.texi:17871 +#: guix-git/doc/guix.texi:17900 msgid "This service is part of @code{%desktop-services} (@pxref{Desktop Services})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17359 +#: guix-git/doc/guix.texi:17721 #, no-wrap msgid "{Data Type} network-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17361 +#: guix-git/doc/guix.texi:17723 msgid "Data type representing the configuration of NetworkManager." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17363 +#: guix-git/doc/guix.texi:17725 #, no-wrap msgid "@code{network-manager} (default: @code{network-manager})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17365 +#: guix-git/doc/guix.texi:17727 msgid "The NetworkManager package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17366 +#: guix-git/doc/guix.texi:17728 #, no-wrap msgid "@code{dns} (default: @code{\"default\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17369 +#: guix-git/doc/guix.texi:17731 msgid "Processing mode for DNS, which affects how NetworkManager uses the @code{resolv.conf} configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17374 +#: guix-git/doc/guix.texi:17736 msgid "NetworkManager will update @code{resolv.conf} to reflect the nameservers provided by currently active connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17375 +#: guix-git/doc/guix.texi:17737 #, no-wrap msgid "dnsmasq" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17379 +#: guix-git/doc/guix.texi:17741 msgid "NetworkManager will run @code{dnsmasq} as a local caching nameserver, using a @dfn{conditional forwarding} configuration if you are connected to a VPN, and then update @code{resolv.conf} to point to the local nameserver." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17385 +#: guix-git/doc/guix.texi:17747 msgid "With this setting, you can share your network connection. For example when you want to share your network connection to another laptop @i{via} an Ethernet cable, you can open @command{nm-connection-editor} and configure the Wired connection's method for IPv4 and IPv6 to be ``Shared to other computers'' and reestablish the connection (or reboot)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17392 +#: guix-git/doc/guix.texi:17754 msgid "You can also set up a @dfn{host-to-guest connection} to QEMU VMs (@pxref{Installing Guix in a VM}). With a host-to-guest connection, you can e.g.@: access a Web server running on the VM (@pxref{Web Services}) from a Web browser on your host system, or connect to the VM @i{via} SSH (@pxref{Networking Services, @code{openssh-service-type}}). To set up a host-to-guest connection, run this command once:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:17399 +#: guix-git/doc/guix.texi:17761 #, no-wrap msgid "" "nmcli connection add type tun \\\n" @@ -30578,50 +31204,50 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17404 +#: guix-git/doc/guix.texi:17766 msgid "Then each time you launch your QEMU VM (@pxref{Running Guix in a VM}), pass @option{-nic tap,ifname=tap0,script=no,downscript=no} to @command{qemu-system-...}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17407 +#: guix-git/doc/guix.texi:17769 msgid "NetworkManager will not modify @code{resolv.conf}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17409 +#: guix-git/doc/guix.texi:17771 #, no-wrap msgid "@code{vpn-plugins} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17413 +#: guix-git/doc/guix.texi:17775 msgid "This is the list of available plugins for virtual private networks (VPNs). An example of this is the @code{network-manager-openvpn} package, which allows NetworkManager to manage VPNs @i{via} OpenVPN." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17417 +#: guix-git/doc/guix.texi:17779 #, no-wrap msgid "Connman" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17418 +#: guix-git/doc/guix.texi:17780 #, no-wrap msgid "{Scheme Variable} connman-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17421 +#: guix-git/doc/guix.texi:17783 msgid "This is the service type to run @url{https://01.org/connman,Connman}, a network connection manager." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17424 +#: guix-git/doc/guix.texi:17786 msgid "Its value must be an @code{connman-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17429 +#: guix-git/doc/guix.texi:17791 #, no-wrap msgid "" "(service connman-service-type\n" @@ -30630,311 +31256,311 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17432 +#: guix-git/doc/guix.texi:17794 msgid "See below for details about @code{connman-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17434 +#: guix-git/doc/guix.texi:17796 #, no-wrap msgid "{Data Type} connman-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17436 +#: guix-git/doc/guix.texi:17798 msgid "Data Type representing the configuration of connman." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17438 +#: guix-git/doc/guix.texi:17800 #, no-wrap msgid "@code{connman} (default: @var{connman})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17440 +#: guix-git/doc/guix.texi:17802 msgid "The connman package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17441 +#: guix-git/doc/guix.texi:17803 #, no-wrap msgid "@code{disable-vpn?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17443 +#: guix-git/doc/guix.texi:17805 msgid "When true, disable connman's vpn plugin." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17446 +#: guix-git/doc/guix.texi:17808 #, no-wrap msgid "WPA Supplicant" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17447 +#: guix-git/doc/guix.texi:17809 #, no-wrap msgid "{Scheme Variable} wpa-supplicant-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17451 +#: guix-git/doc/guix.texi:17813 msgid "This is the service type to run @url{https://w1.fi/wpa_supplicant/,WPA supplicant}, an authentication daemon required to authenticate against encrypted WiFi or ethernet networks." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17453 +#: guix-git/doc/guix.texi:17815 #, no-wrap msgid "{Data Type} wpa-supplicant-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17455 +#: guix-git/doc/guix.texi:17817 msgid "Data type representing the configuration of WPA Supplicant." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17457 guix-git/doc/guix.texi:32945 +#: guix-git/doc/guix.texi:17819 guix-git/doc/guix.texi:33310 msgid "It takes the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17459 +#: guix-git/doc/guix.texi:17821 #, no-wrap msgid "@code{wpa-supplicant} (default: @code{wpa-supplicant})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17461 +#: guix-git/doc/guix.texi:17823 msgid "The WPA Supplicant package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17462 +#: guix-git/doc/guix.texi:17824 #, no-wrap msgid "@code{requirement} (default: @code{'(user-processes loopback syslogd)}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17464 +#: guix-git/doc/guix.texi:17826 msgid "List of services that should be started before WPA Supplicant starts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17465 +#: guix-git/doc/guix.texi:17827 #, no-wrap msgid "@code{dbus?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17467 +#: guix-git/doc/guix.texi:17829 msgid "Whether to listen for requests on D-Bus." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17468 +#: guix-git/doc/guix.texi:17830 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/wpa_supplicant.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17470 +#: guix-git/doc/guix.texi:17832 msgid "Where to store the PID file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17471 guix-git/doc/guix.texi:31246 -#: guix-git/doc/guix.texi:31388 +#: guix-git/doc/guix.texi:17833 guix-git/doc/guix.texi:31611 +#: guix-git/doc/guix.texi:31753 #, no-wrap msgid "@code{interface} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17474 +#: guix-git/doc/guix.texi:17836 msgid "If this is set, it must specify the name of a network interface that WPA supplicant will control." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17475 guix-git/doc/guix.texi:17591 -#: guix-git/doc/guix.texi:22879 +#: guix-git/doc/guix.texi:17837 guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:23241 #, no-wrap msgid "@code{config-file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17477 +#: guix-git/doc/guix.texi:17839 msgid "Optional configuration file to use." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17480 +#: guix-git/doc/guix.texi:17842 msgid "List of additional command-line arguments to pass to the daemon." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17483 +#: guix-git/doc/guix.texi:17845 #, no-wrap msgid "wicd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17486 +#: guix-git/doc/guix.texi:17848 #, no-wrap msgid "network management" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17487 +#: guix-git/doc/guix.texi:17849 #, no-wrap msgid "{Scheme Procedure} wicd-service [#:wicd @var{wicd}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17490 +#: guix-git/doc/guix.texi:17852 msgid "Return a service that runs @url{https://launchpad.net/wicd,Wicd}, a network management daemon that aims to simplify wired and wireless networking." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17495 +#: guix-git/doc/guix.texi:17857 msgid "This service adds the @var{wicd} package to the global profile, providing several commands to interact with the daemon and configure networking: @command{wicd-client}, a graphical user interface, and the @command{wicd-cli} and @command{wicd-curses} user interfaces." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17497 +#: guix-git/doc/guix.texi:17859 #, no-wrap msgid "ModemManager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17500 +#: guix-git/doc/guix.texi:17862 msgid "Some networking devices such as modems require special care, and this is what the services below focus on." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17501 +#: guix-git/doc/guix.texi:17863 #, no-wrap msgid "{Scheme Variable} modem-manager-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17506 +#: guix-git/doc/guix.texi:17868 msgid "This is the service type for the @uref{https://wiki.gnome.org/Projects/ModemManager, ModemManager} service. The value for this service type is a @code{modem-manager-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17511 +#: guix-git/doc/guix.texi:17873 #, no-wrap msgid "{Data Type} modem-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17513 +#: guix-git/doc/guix.texi:17875 msgid "Data type representing the configuration of ModemManager." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17515 +#: guix-git/doc/guix.texi:17877 #, no-wrap msgid "@code{modem-manager} (default: @code{modem-manager})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17517 +#: guix-git/doc/guix.texi:17879 msgid "The ModemManager package to use." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17521 +#: guix-git/doc/guix.texi:17883 #, no-wrap msgid "USB_ModeSwitch" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17522 +#: guix-git/doc/guix.texi:17884 #, no-wrap msgid "Modeswitching" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17524 +#: guix-git/doc/guix.texi:17886 #, no-wrap msgid "{Scheme Variable} usb-modeswitch-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17529 +#: guix-git/doc/guix.texi:17891 msgid "This is the service type for the @uref{https://www.draisberghof.de/usb_modeswitch/, USB_ModeSwitch} service. The value for this service type is a @code{usb-modeswitch-configuration} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17535 +#: guix-git/doc/guix.texi:17897 msgid "When plugged in, some USB modems (and other USB devices) initially present themselves as a read-only storage medium and not as a modem. They need to be @dfn{modeswitched} before they are usable. The USB_ModeSwitch service type installs udev rules to automatically modeswitch these devices when they are plugged in." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17540 +#: guix-git/doc/guix.texi:17902 #, no-wrap msgid "{Data Type} usb-modeswitch-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17542 +#: guix-git/doc/guix.texi:17904 msgid "Data type representing the configuration of USB_ModeSwitch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17544 +#: guix-git/doc/guix.texi:17906 #, fuzzy, no-wrap msgid "@code{usb-modeswitch} (default: @code{usb-modeswitch})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:17546 +#: guix-git/doc/guix.texi:17908 msgid "The USB_ModeSwitch package providing the binaries for modeswitching." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17547 +#: guix-git/doc/guix.texi:17909 #, fuzzy, no-wrap msgid "@code{usb-modeswitch-data} (default: @code{usb-modeswitch-data})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:17550 +#: guix-git/doc/guix.texi:17912 msgid "The package providing the device data and udev rules file used by USB_ModeSwitch." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17551 +#: guix-git/doc/guix.texi:17913 #, no-wrap msgid "@code{config-file} (default: @code{#~(string-append #$usb-modeswitch:dispatcher \"/etc/usb_modeswitch.conf\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17556 +#: guix-git/doc/guix.texi:17918 msgid "Which config file to use for the USB_ModeSwitch dispatcher. By default the config file shipped with USB_ModeSwitch is used which disables logging to @file{/var/log} among other default settings. If set to @code{#f}, no config file is used." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:17570 +#: guix-git/doc/guix.texi:17932 msgid "The @code{(gnu services networking)} module discussed in the previous section provides services for more advanced setups: providing a DHCP service for others to use, filtering packets with iptables or nftables, running a WiFi access point with @command{hostapd}, running the @command{inetd} ``superdaemon'', and more. This section describes those." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17571 +#: guix-git/doc/guix.texi:17933 #, no-wrap msgid "{Scheme Procedure} dhcpd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17575 +#: guix-git/doc/guix.texi:17937 msgid "This type defines a service that runs a DHCP daemon. To create a service of this type, you must supply a @code{}. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17581 +#: guix-git/doc/guix.texi:17943 #, no-wrap msgid "" "(service dhcpd-service-type\n" @@ -30944,96 +31570,96 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17584 +#: guix-git/doc/guix.texi:17946 #, no-wrap msgid "{Data Type} dhcpd-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17586 +#: guix-git/doc/guix.texi:17948 #, no-wrap msgid "@code{package} (default: @code{isc-dhcp})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17591 +#: guix-git/doc/guix.texi:17953 msgid "The package that provides the DHCP daemon. This package is expected to provide the daemon at @file{sbin/dhcpd} relative to its output directory. The default package is the @uref{https://www.isc.org/products/DHCP, ISC's DHCP server}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17596 +#: guix-git/doc/guix.texi:17958 msgid "The configuration file to use. This is required. It will be passed to @code{dhcpd} via its @code{-cf} option. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). See @code{man dhcpd.conf} for details on the configuration file syntax." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17596 +#: guix-git/doc/guix.texi:17958 #, no-wrap msgid "@code{version} (default: @code{\"4\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17601 +#: guix-git/doc/guix.texi:17963 msgid "The DHCP version to use. The ISC DHCP server supports the values ``4'', ``6'', and ``4o6''. These correspond to the @code{dhcpd} program options @code{-4}, @code{-6}, and @code{-4o6}. See @code{man dhcpd} for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17601 +#: guix-git/doc/guix.texi:17963 #, no-wrap msgid "@code{run-directory} (default: @code{\"/run/dhcpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17604 +#: guix-git/doc/guix.texi:17966 msgid "The run directory to use. At service activation time, this directory will be created if it does not exist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17604 +#: guix-git/doc/guix.texi:17966 #, no-wrap msgid "@code{pid-file} (default: @code{\"/run/dhcpd/dhcpd.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17607 +#: guix-git/doc/guix.texi:17969 msgid "The PID file to use. This corresponds to the @code{-pf} option of @code{dhcpd}. See @code{man dhcpd} for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17607 +#: guix-git/doc/guix.texi:17969 #, no-wrap msgid "@code{interfaces} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17613 +#: guix-git/doc/guix.texi:17975 msgid "The names of the network interfaces on which dhcpd should listen for broadcasts. If this list is not empty, then its elements (which must be strings) will be appended to the @code{dhcpd} invocation when starting the daemon. It may not be necessary to explicitly specify any interfaces here; see @code{man dhcpd} for details." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17616 +#: guix-git/doc/guix.texi:17978 #, no-wrap msgid "hostapd service, for Wi-Fi access points" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17617 +#: guix-git/doc/guix.texi:17979 #, no-wrap msgid "Wi-Fi access points, hostapd service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17618 +#: guix-git/doc/guix.texi:17980 #, no-wrap msgid "{Scheme Variable} hostapd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17623 +#: guix-git/doc/guix.texi:17985 msgid "This is the service type to run the @uref{https://w1.fi/hostapd/, hostapd} daemon to set up WiFi (IEEE 802.11) access points and authentication servers. Its associated value must be a @code{hostapd-configuration} as shown below:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17631 +#: guix-git/doc/guix.texi:17993 #, no-wrap msgid "" ";; Use wlan1 to run the access point for \"My Network\".\n" @@ -31045,130 +31671,130 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17634 +#: guix-git/doc/guix.texi:17996 #, no-wrap msgid "{Data Type} hostapd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17637 +#: guix-git/doc/guix.texi:17999 msgid "This data type represents the configuration of the hostapd service, with the following fields:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17639 +#: guix-git/doc/guix.texi:18001 #, fuzzy, no-wrap msgid "@code{package} (default: @code{hostapd})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:17641 +#: guix-git/doc/guix.texi:18003 #, fuzzy msgid "The hostapd package to use." msgstr "软件包数据类型。" #. type: item -#: guix-git/doc/guix.texi:17642 +#: guix-git/doc/guix.texi:18004 #, fuzzy, no-wrap msgid "@code{interface} (default: @code{\"wlan0\"})" msgstr "@code{display}(默认值:@code{\":0\"})" #. type: table -#: guix-git/doc/guix.texi:17644 +#: guix-git/doc/guix.texi:18006 msgid "The network interface to run the WiFi access point." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17645 +#: guix-git/doc/guix.texi:18007 #, no-wrap msgid "ssid" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17648 +#: guix-git/doc/guix.texi:18010 msgid "The SSID (@dfn{service set identifier}), a string that identifies this network." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17649 +#: guix-git/doc/guix.texi:18011 #, fuzzy, no-wrap msgid "@code{broadcast-ssid?} (default: @code{#t})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:17651 +#: guix-git/doc/guix.texi:18013 msgid "Whether to broadcast this SSID." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17652 +#: guix-git/doc/guix.texi:18014 #, fuzzy, no-wrap msgid "@code{channel} (default: @code{1})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:17654 +#: guix-git/doc/guix.texi:18016 msgid "The WiFi channel to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17655 +#: guix-git/doc/guix.texi:18017 #, fuzzy, no-wrap msgid "@code{driver} (default: @code{\"nl80211\"})" msgstr "@code{display}(默认值:@code{\":0\"})" #. type: table -#: guix-git/doc/guix.texi:17659 +#: guix-git/doc/guix.texi:18021 msgid "The driver interface type. @code{\"nl80211\"} is used with all Linux mac80211 drivers. Use @code{\"none\"} if building hostapd as a standalone RADIUS server that does # not control any wireless/wired driver." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17660 guix-git/doc/guix.texi:23728 -#: guix-git/doc/guix.texi:26807 +#: guix-git/doc/guix.texi:18022 guix-git/doc/guix.texi:24090 +#: guix-git/doc/guix.texi:27144 #, no-wrap msgid "@code{extra-settings} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17664 +#: guix-git/doc/guix.texi:18026 msgid "Extra settings to append as-is to the hostapd configuration file. See @uref{https://w1.fi/cgit/hostap/plain/hostapd/hostapd.conf} for the configuration file reference." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17667 +#: guix-git/doc/guix.texi:18029 #, no-wrap msgid "{Scheme Variable} simulated-wifi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17674 +#: guix-git/doc/guix.texi:18036 msgid "This is the type of a service to simulate WiFi networking, which can be useful in virtual machines for testing purposes. The service loads the Linux kernel @uref{https://www.kernel.org/doc/html/latest/networking/mac80211_hwsim/mac80211_hwsim.html, @code{mac80211_hwsim} module} and starts hostapd to create a pseudo WiFi network that can be seen on @code{wlan0}, by default." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17676 +#: guix-git/doc/guix.texi:18038 msgid "The service's value is a @code{hostapd-configuration} record." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17679 +#: guix-git/doc/guix.texi:18041 #, no-wrap msgid "iptables" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17680 +#: guix-git/doc/guix.texi:18042 #, no-wrap msgid "{Scheme Variable} iptables-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17686 +#: guix-git/doc/guix.texi:18048 msgid "This is the service type to set up an iptables configuration. iptables is a packet filtering framework supported by the Linux kernel. This service supports configuring iptables for both IPv4 and IPv6. A simple example configuration rejecting all incoming connections except those to the ssh port 22 is shown below." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17708 +#: guix-git/doc/guix.texi:18070 #, no-wrap msgid "" "(service iptables-service-type\n" @@ -31194,242 +31820,242 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17711 +#: guix-git/doc/guix.texi:18073 #, no-wrap msgid "{Data Type} iptables-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17713 +#: guix-git/doc/guix.texi:18075 msgid "The data type representing the configuration of iptables." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17715 +#: guix-git/doc/guix.texi:18077 #, no-wrap msgid "@code{iptables} (default: @code{iptables})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17718 +#: guix-git/doc/guix.texi:18080 msgid "The iptables package that provides @code{iptables-restore} and @code{ip6tables-restore}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17718 +#: guix-git/doc/guix.texi:18080 #, no-wrap msgid "@code{ipv4-rules} (default: @code{%iptables-accept-all-rules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17722 +#: guix-git/doc/guix.texi:18084 msgid "The iptables rules to use. It will be passed to @code{iptables-restore}. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17722 +#: guix-git/doc/guix.texi:18084 #, no-wrap msgid "@code{ipv6-rules} (default: @code{%iptables-accept-all-rules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17726 +#: guix-git/doc/guix.texi:18088 msgid "The ip6tables rules to use. It will be passed to @code{ip6tables-restore}. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17729 +#: guix-git/doc/guix.texi:18091 #, no-wrap msgid "nftables" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17730 +#: guix-git/doc/guix.texi:18092 #, no-wrap msgid "{Scheme Variable} nftables-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17738 +#: guix-git/doc/guix.texi:18100 msgid "This is the service type to set up a nftables configuration. nftables is a netfilter project that aims to replace the existing iptables, ip6tables, arptables and ebtables framework. It provides a new packet filtering framework, a new user-space utility @command{nft}, and a compatibility layer for iptables. This service comes with a default ruleset @code{%default-nftables-ruleset} that rejecting all incoming connections except those to the ssh port 22. To use it, simply write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17741 +#: guix-git/doc/guix.texi:18103 #, no-wrap msgid "(service nftables-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17744 +#: guix-git/doc/guix.texi:18106 #, fuzzy, no-wrap msgid "{Data Type} nftables-configuration" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:17746 +#: guix-git/doc/guix.texi:18108 #, fuzzy msgid "The data type representing the configuration of nftables." msgstr "管理操作系统配置。" #. type: item -#: guix-git/doc/guix.texi:17748 +#: guix-git/doc/guix.texi:18110 #, fuzzy, no-wrap msgid "@code{package} (default: @code{nftables})" msgstr "@code{xfce}(默认值:@code{xfce})" #. type: table -#: guix-git/doc/guix.texi:17750 +#: guix-git/doc/guix.texi:18112 msgid "The nftables package that provides @command{nft}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17750 +#: guix-git/doc/guix.texi:18112 #, fuzzy, no-wrap msgid "@code{ruleset} (default: @code{%default-nftables-ruleset})" msgstr "@code{enlightenment}(默认值:@code{enlightenment})" #. type: table -#: guix-git/doc/guix.texi:17753 +#: guix-git/doc/guix.texi:18115 msgid "The nftables ruleset to use. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17756 +#: guix-git/doc/guix.texi:18118 #, no-wrap msgid "NTP (Network Time Protocol), service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17757 +#: guix-git/doc/guix.texi:18119 #, no-wrap msgid "ntpd, service for the Network Time Protocol daemon" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17758 +#: guix-git/doc/guix.texi:18120 #, no-wrap msgid "real time clock" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17759 +#: guix-git/doc/guix.texi:18121 #, no-wrap msgid "{Scheme Variable} ntp-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17763 +#: guix-git/doc/guix.texi:18125 msgid "This is the type of the service running the @uref{https://www.ntp.org, Network Time Protocol (NTP)} daemon, @command{ntpd}. The daemon will keep the system clock synchronized with that of the specified NTP servers." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17766 +#: guix-git/doc/guix.texi:18128 msgid "The value of this service is an @code{ntpd-configuration} object, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17768 +#: guix-git/doc/guix.texi:18130 #, no-wrap msgid "{Data Type} ntp-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17770 +#: guix-git/doc/guix.texi:18132 msgid "This is the data type for the NTP service configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17772 +#: guix-git/doc/guix.texi:18134 #, no-wrap msgid "@code{servers} (default: @code{%ntp-servers})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17776 +#: guix-git/doc/guix.texi:18138 msgid "This is the list of servers (@code{} records) with which @command{ntpd} will be synchronized. See the @code{ntp-server} data type definition below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17777 +#: guix-git/doc/guix.texi:18139 #, fuzzy, no-wrap msgid "@code{allow-large-adjustment?} (default: @code{#t})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:17780 +#: guix-git/doc/guix.texi:18142 msgid "This determines whether @command{ntpd} is allowed to make an initial adjustment of more than 1,000 seconds." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17781 +#: guix-git/doc/guix.texi:18143 #, no-wrap msgid "@code{ntp} (default: @code{ntp})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17783 +#: guix-git/doc/guix.texi:18145 msgid "The NTP package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17786 +#: guix-git/doc/guix.texi:18148 #, no-wrap msgid "{Scheme Variable} %ntp-servers" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17789 +#: guix-git/doc/guix.texi:18151 msgid "List of host names used as the default NTP servers. These are servers of the @uref{https://www.ntppool.org/en/, NTP Pool Project}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17791 +#: guix-git/doc/guix.texi:18153 #, no-wrap msgid "{Data Type} ntp-server" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17793 +#: guix-git/doc/guix.texi:18155 msgid "The data type representing the configuration of a NTP server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17795 +#: guix-git/doc/guix.texi:18157 #, fuzzy, no-wrap msgid "@code{type} (default: @code{'server})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:17798 +#: guix-git/doc/guix.texi:18160 msgid "The type of the NTP server, given as a symbol. One of @code{'pool}, @code{'server}, @code{'peer}, @code{'broadcast} or @code{'manycastclient}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17799 +#: guix-git/doc/guix.texi:18161 #, no-wrap msgid "address" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17801 +#: guix-git/doc/guix.texi:18163 msgid "The address of the server, as a string." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17802 guix-git/doc/guix.texi:33774 -#: guix-git/doc/guix.texi:33794 +#: guix-git/doc/guix.texi:18164 guix-git/doc/guix.texi:34211 +#: guix-git/doc/guix.texi:34231 #, no-wrap msgid "options" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17807 +#: guix-git/doc/guix.texi:18169 msgid "NTPD options to use with that specific server, given as a list of option names and/or of option names and values tuples. The following example define a server to use with the options @option{iburst} and @option{prefer}, as well as @option{version} 3 and a @option{maxpoll} time of 16 seconds." msgstr "" #. type: example -#: guix-git/doc/guix.texi:17813 +#: guix-git/doc/guix.texi:18175 #, no-wrap msgid "" "(ntp-server\n" @@ -31439,24 +32065,24 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17817 +#: guix-git/doc/guix.texi:18179 #, no-wrap msgid "OpenNTPD" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17818 +#: guix-git/doc/guix.texi:18180 #, no-wrap msgid "{Scheme Procedure} openntpd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17822 +#: guix-git/doc/guix.texi:18184 msgid "Run the @command{ntpd}, the Network Time Protocol (NTP) daemon, as implemented by @uref{http://www.openntpd.org, OpenNTPD}. The daemon will keep the system clock synchronized with that of the given servers." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17831 +#: guix-git/doc/guix.texi:18193 #, no-wrap msgid "" "(service\n" @@ -31470,134 +32096,134 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17835 +#: guix-git/doc/guix.texi:18197 #, no-wrap msgid "{Scheme Variable} %openntpd-servers" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17838 +#: guix-git/doc/guix.texi:18200 msgid "This variable is a list of the server addresses defined in @code{%ntp-servers}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17840 +#: guix-git/doc/guix.texi:18202 #, no-wrap msgid "{Data Type} openntpd-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:17842 +#: guix-git/doc/guix.texi:18204 #, no-wrap msgid "@code{openntpd} (default: @code{(file-append openntpd \"/sbin/ntpd\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17844 +#: guix-git/doc/guix.texi:18206 msgid "The openntpd executable to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17844 +#: guix-git/doc/guix.texi:18206 #, no-wrap msgid "@code{listen-on} (default: @code{'(\"127.0.0.1\" \"::1\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17846 +#: guix-git/doc/guix.texi:18208 msgid "A list of local IP addresses or hostnames the ntpd daemon should listen on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17846 +#: guix-git/doc/guix.texi:18208 #, no-wrap msgid "@code{query-from} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17848 +#: guix-git/doc/guix.texi:18210 msgid "A list of local IP address the ntpd daemon should use for outgoing queries." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17848 +#: guix-git/doc/guix.texi:18210 #, no-wrap msgid "@code{sensor} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17853 +#: guix-git/doc/guix.texi:18215 msgid "Specify a list of timedelta sensor devices ntpd should use. @code{ntpd} will listen to each sensor that actually exists and ignore non-existent ones. See @uref{https://man.openbsd.org/ntpd.conf, upstream documentation} for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17853 +#: guix-git/doc/guix.texi:18215 #, fuzzy, no-wrap msgid "@code{server} (default: @code{'()})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:17855 +#: guix-git/doc/guix.texi:18217 msgid "Specify a list of IP addresses or hostnames of NTP servers to synchronize to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17855 +#: guix-git/doc/guix.texi:18217 #, fuzzy, no-wrap msgid "@code{servers} (default: @code{%openntp-servers})" msgstr "@code{speed}(默认值:@code{1.0})" #. type: table -#: guix-git/doc/guix.texi:17857 +#: guix-git/doc/guix.texi:18219 msgid "Specify a list of IP addresses or hostnames of NTP pools to synchronize to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17857 +#: guix-git/doc/guix.texi:18219 #, no-wrap msgid "@code{constraint-from} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17864 +#: guix-git/doc/guix.texi:18226 msgid "@code{ntpd} can be configured to query the ‘Date’ from trusted HTTPS servers via TLS. This time information is not used for precision but acts as an authenticated constraint, thereby reducing the impact of unauthenticated NTP man-in-the-middle attacks. Specify a list of URLs, IP addresses or hostnames of HTTPS servers to provide a constraint." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17864 +#: guix-git/doc/guix.texi:18226 #, no-wrap msgid "@code{constraints-from} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17868 +#: guix-git/doc/guix.texi:18230 msgid "As with constraint from, specify a list of URLs, IP addresses or hostnames of HTTPS servers to provide a constraint. Should the hostname resolve to multiple IP addresses, @code{ntpd} will calculate a median constraint from all of them." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17871 +#: guix-git/doc/guix.texi:18233 #, no-wrap msgid "inetd" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17872 +#: guix-git/doc/guix.texi:18234 #, no-wrap msgid "{Scheme variable} inetd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17877 +#: guix-git/doc/guix.texi:18239 msgid "This service runs the @command{inetd} (@pxref{inetd invocation,,, inetutils, GNU Inetutils}) daemon. @command{inetd} listens for connections on internet sockets, and lazily starts the specified server program when a connection is made on one of these sockets." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17883 +#: guix-git/doc/guix.texi:18245 msgid "The value of this service is an @code{inetd-configuration} object. The following example configures the @command{inetd} daemon to provide the built-in @command{echo} service, as well as an smtp service which forwards smtp traffic over ssh to a server @code{smtp-server} behind a gateway @code{hostname}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:17906 +#: guix-git/doc/guix.texi:18268 #, no-wrap msgid "" "(service\n" @@ -31624,465 +32250,467 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:17909 +#: guix-git/doc/guix.texi:18271 msgid "See below for more details about @code{inetd-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17911 +#: guix-git/doc/guix.texi:18273 #, no-wrap msgid "{Data Type} inetd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17913 +#: guix-git/doc/guix.texi:18275 msgid "Data type representing the configuration of @command{inetd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17915 +#: guix-git/doc/guix.texi:18277 #, no-wrap msgid "@code{program} (default: @code{(file-append inetutils \"/libexec/inetd\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17917 +#: guix-git/doc/guix.texi:18279 msgid "The @command{inetd} executable to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17918 guix-git/doc/guix.texi:27655 +#: guix-git/doc/guix.texi:18280 guix-git/doc/guix.texi:27992 #, no-wrap msgid "@code{entries} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17921 +#: guix-git/doc/guix.texi:18283 msgid "A list of @command{inetd} service entries. Each entry should be created by the @code{inetd-entry} constructor." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17924 +#: guix-git/doc/guix.texi:18286 #, no-wrap msgid "{Data Type} inetd-entry" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17928 +#: guix-git/doc/guix.texi:18290 msgid "Data type representing an entry in the @command{inetd} configuration. Each entry corresponds to a socket where @command{inetd} will listen for requests." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17930 +#: guix-git/doc/guix.texi:18292 #, no-wrap msgid "@code{node} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17935 +#: guix-git/doc/guix.texi:18297 msgid "Optional string, a comma-separated list of local addresses @command{inetd} should use when listening for this service. @xref{Configuration file,,, inetutils, GNU Inetutils} for a complete description of all options." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17937 +#: guix-git/doc/guix.texi:18299 msgid "A string, the name must correspond to an entry in @code{/etc/services}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17937 +#: guix-git/doc/guix.texi:18299 #, no-wrap msgid "socket-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17940 +#: guix-git/doc/guix.texi:18302 msgid "One of @code{'stream}, @code{'dgram}, @code{'raw}, @code{'rdm} or @code{'seqpacket}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:17940 +#: guix-git/doc/guix.texi:18302 #, no-wrap msgid "protocol" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17942 +#: guix-git/doc/guix.texi:18304 msgid "A string, must correspond to an entry in @code{/etc/protocols}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17942 +#: guix-git/doc/guix.texi:18304 #, no-wrap msgid "@code{wait?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17945 +#: guix-git/doc/guix.texi:18307 msgid "Whether @command{inetd} should wait for the server to exit before listening to new service requests." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17950 +#: guix-git/doc/guix.texi:18312 msgid "A string containing the user (and, optionally, group) name of the user as whom the server should run. The group name can be specified in a suffix, separated by a colon or period, i.e.@: @code{\"user\"}, @code{\"user:group\"} or @code{\"user.group\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:17950 +#: guix-git/doc/guix.texi:18312 #, no-wrap msgid "@code{program} (default: @code{\"internal\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:17953 +#: guix-git/doc/guix.texi:18315 msgid "The server program which will serve the requests, or @code{\"internal\"} if @command{inetd} should use a built-in service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:17958 +#: guix-git/doc/guix.texi:18320 msgid "A list strings or file-like objects, which are the server program's arguments, starting with the zeroth argument, i.e.@: the name of the program itself. For @command{inetd}'s internal services, this entry must be @code{'()} or @code{'(\"internal\")}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17962 +#: guix-git/doc/guix.texi:18324 msgid "@xref{Configuration file,,, inetutils, GNU Inetutils} for a more detailed discussion of each configuration field." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17964 +#: guix-git/doc/guix.texi:18326 #, no-wrap msgid "opendht, distributed hash table network service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:17965 +#: guix-git/doc/guix.texi:18327 #, no-wrap msgid "dhtproxy, for use with jami" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17966 +#: guix-git/doc/guix.texi:18328 #, no-wrap msgid "{Scheme Variable} opendht-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17971 +#: guix-git/doc/guix.texi:18333 msgid "This is the type of the service running a @uref{https://opendht.net, OpenDHT} node, @command{dhtnode}. The daemon can be used to host your own proxy service to the distributed hash table (DHT), for example to connect to with Jami, among other applications." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:17981 +#: guix-git/doc/guix.texi:18343 msgid "When using the OpenDHT proxy server, the IP addresses it ``sees'' from the clients should be addresses reachable from other peers. In practice this means that a publicly reachable address is best suited for a proxy server, outside of your private network. For example, hosting the proxy server on a IPv4 private local network and exposing it via port forwarding could work for external peers, but peers local to the proxy would have their private addresses shared with the external peers, leading to connectivity problems." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:17985 +#: guix-git/doc/guix.texi:18347 msgid "The value of this service is a @code{opendht-configuration} object, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:17987 +#: guix-git/doc/guix.texi:18349 #, fuzzy, no-wrap msgid "{Data Type} opendht-configuration" msgstr "系统配置" #. type: deftp -#: guix-git/doc/guix.texi:17989 +#: guix-git/doc/guix.texi:18351 #, fuzzy msgid "This is the data type for the OpenDHT service configuration." msgstr "管理操作系统配置。" #. type: deftp -#: guix-git/doc/guix.texi:17994 +#: guix-git/doc/guix.texi:18356 msgid "Available @code{opendht-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:17995 +#: guix-git/doc/guix.texi:18357 #, no-wrap msgid "{@code{opendht-configuration} parameter} package opendht" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:17997 +#: guix-git/doc/guix.texi:18359 #, fuzzy msgid "The @code{opendht} package to use." msgstr "软件包数据类型。" #. type: deftypevr -#: guix-git/doc/guix.texi:18000 +#: guix-git/doc/guix.texi:18362 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean peer-discovery?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18002 +#: guix-git/doc/guix.texi:18364 msgid "Whether to enable the multicast local peer discovery mechanism." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18004 guix-git/doc/guix.texi:18012 -#: guix-git/doc/guix.texi:18020 guix-git/doc/guix.texi:19712 -#: guix-git/doc/guix.texi:19788 guix-git/doc/guix.texi:19830 -#: guix-git/doc/guix.texi:19850 guix-git/doc/guix.texi:19856 -#: guix-git/doc/guix.texi:19872 guix-git/doc/guix.texi:19960 -#: guix-git/doc/guix.texi:20048 guix-git/doc/guix.texi:20361 -#: guix-git/doc/guix.texi:20374 guix-git/doc/guix.texi:21492 -#: guix-git/doc/guix.texi:22970 guix-git/doc/guix.texi:23076 -#: guix-git/doc/guix.texi:23141 guix-git/doc/guix.texi:23150 -#: guix-git/doc/guix.texi:24383 guix-git/doc/guix.texi:24427 -#: guix-git/doc/guix.texi:24444 guix-git/doc/guix.texi:24452 -#: guix-git/doc/guix.texi:24467 guix-git/doc/guix.texi:24485 -#: guix-git/doc/guix.texi:24509 guix-git/doc/guix.texi:24562 -#: guix-git/doc/guix.texi:24695 guix-git/doc/guix.texi:24729 -#: guix-git/doc/guix.texi:24765 guix-git/doc/guix.texi:24781 -#: guix-git/doc/guix.texi:24809 guix-git/doc/guix.texi:24870 -#: guix-git/doc/guix.texi:24953 guix-git/doc/guix.texi:28367 -#: guix-git/doc/guix.texi:28381 guix-git/doc/guix.texi:28403 -#: guix-git/doc/guix.texi:28522 guix-git/doc/guix.texi:28536 -#: guix-git/doc/guix.texi:28557 guix-git/doc/guix.texi:28578 -#: guix-git/doc/guix.texi:28585 guix-git/doc/guix.texi:28630 -#: guix-git/doc/guix.texi:28637 guix-git/doc/guix.texi:29426 -#: guix-git/doc/guix.texi:29440 guix-git/doc/guix.texi:29612 -#: guix-git/doc/guix.texi:29657 guix-git/doc/guix.texi:29744 -#: guix-git/doc/guix.texi:29946 guix-git/doc/guix.texi:29979 -#: guix-git/doc/guix.texi:30119 guix-git/doc/guix.texi:30130 -#: guix-git/doc/guix.texi:30381 guix-git/doc/guix.texi:31900 -#: guix-git/doc/guix.texi:31909 guix-git/doc/guix.texi:31917 -#: guix-git/doc/guix.texi:31925 guix-git/doc/guix.texi:31941 -#: guix-git/doc/guix.texi:31957 guix-git/doc/guix.texi:31965 -#: guix-git/doc/guix.texi:31973 guix-git/doc/guix.texi:31982 -#: guix-git/doc/guix.texi:31991 guix-git/doc/guix.texi:32007 -#: guix-git/doc/guix.texi:32071 guix-git/doc/guix.texi:32177 -#: guix-git/doc/guix.texi:32185 guix-git/doc/guix.texi:32193 -#: guix-git/doc/guix.texi:32218 guix-git/doc/guix.texi:32272 -#: guix-git/doc/guix.texi:32320 guix-git/doc/guix.texi:32521 -#: guix-git/doc/guix.texi:32528 +#: guix-git/doc/guix.texi:18366 guix-git/doc/guix.texi:18374 +#: guix-git/doc/guix.texi:18382 guix-git/doc/guix.texi:20074 +#: guix-git/doc/guix.texi:20150 guix-git/doc/guix.texi:20192 +#: guix-git/doc/guix.texi:20212 guix-git/doc/guix.texi:20218 +#: guix-git/doc/guix.texi:20234 guix-git/doc/guix.texi:20322 +#: guix-git/doc/guix.texi:20410 guix-git/doc/guix.texi:20723 +#: guix-git/doc/guix.texi:20736 guix-git/doc/guix.texi:21854 +#: guix-git/doc/guix.texi:23332 guix-git/doc/guix.texi:23438 +#: guix-git/doc/guix.texi:23503 guix-git/doc/guix.texi:23512 +#: guix-git/doc/guix.texi:24745 guix-git/doc/guix.texi:24789 +#: guix-git/doc/guix.texi:24806 guix-git/doc/guix.texi:24814 +#: guix-git/doc/guix.texi:24829 guix-git/doc/guix.texi:24847 +#: guix-git/doc/guix.texi:24871 guix-git/doc/guix.texi:24924 +#: guix-git/doc/guix.texi:25057 guix-git/doc/guix.texi:25091 +#: guix-git/doc/guix.texi:25127 guix-git/doc/guix.texi:25143 +#: guix-git/doc/guix.texi:25171 guix-git/doc/guix.texi:25232 +#: guix-git/doc/guix.texi:25315 guix-git/doc/guix.texi:28704 +#: guix-git/doc/guix.texi:28718 guix-git/doc/guix.texi:28740 +#: guix-git/doc/guix.texi:28859 guix-git/doc/guix.texi:28873 +#: guix-git/doc/guix.texi:28894 guix-git/doc/guix.texi:28915 +#: guix-git/doc/guix.texi:28922 guix-git/doc/guix.texi:28967 +#: guix-git/doc/guix.texi:28974 guix-git/doc/guix.texi:29763 +#: guix-git/doc/guix.texi:29777 guix-git/doc/guix.texi:29977 +#: guix-git/doc/guix.texi:30022 guix-git/doc/guix.texi:30109 +#: guix-git/doc/guix.texi:30311 guix-git/doc/guix.texi:30344 +#: guix-git/doc/guix.texi:30484 guix-git/doc/guix.texi:30495 +#: guix-git/doc/guix.texi:30746 guix-git/doc/guix.texi:32265 +#: guix-git/doc/guix.texi:32274 guix-git/doc/guix.texi:32282 +#: guix-git/doc/guix.texi:32290 guix-git/doc/guix.texi:32306 +#: guix-git/doc/guix.texi:32322 guix-git/doc/guix.texi:32330 +#: guix-git/doc/guix.texi:32338 guix-git/doc/guix.texi:32347 +#: guix-git/doc/guix.texi:32356 guix-git/doc/guix.texi:32372 +#: guix-git/doc/guix.texi:32436 guix-git/doc/guix.texi:32542 +#: guix-git/doc/guix.texi:32550 guix-git/doc/guix.texi:32558 +#: guix-git/doc/guix.texi:32583 guix-git/doc/guix.texi:32637 +#: guix-git/doc/guix.texi:32685 guix-git/doc/guix.texi:32886 +#: guix-git/doc/guix.texi:32893 msgid "Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18007 +#: guix-git/doc/guix.texi:18369 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean enable-logging?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18010 +#: guix-git/doc/guix.texi:18372 msgid "Whether to enable logging messages to syslog. It is disabled by default as it is rather verbose." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18015 +#: guix-git/doc/guix.texi:18377 #, no-wrap msgid "{@code{opendht-configuration} parameter} boolean debug?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18018 +#: guix-git/doc/guix.texi:18380 msgid "Whether to enable debug-level logging messages. This has no effect if logging is disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18023 +#: guix-git/doc/guix.texi:18385 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-string bootstrap-host" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18029 +#: guix-git/doc/guix.texi:18391 msgid "The node host name that is used to make the first connection to the network. A specific port value can be provided by appending the @code{:PORT} suffix. By default, it uses the Jami bootstrap nodes, but any host can be specified here. It's also possible to disable bootsrapping by setting this to the @code{'disabled} symbol." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18031 +#: guix-git/doc/guix.texi:18393 msgid "Defaults to @samp{\"bootstrap.jami.net:4222\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18034 +#: guix-git/doc/guix.texi:18396 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18037 +#: guix-git/doc/guix.texi:18399 msgid "The UDP port to bind to. When set to @code{'disabled}, an available port is automatically selected." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18039 +#: guix-git/doc/guix.texi:18401 msgid "Defaults to @samp{4222}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18042 +#: guix-git/doc/guix.texi:18404 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number proxy-server-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18044 +#: guix-git/doc/guix.texi:18406 msgid "Spawn a proxy server listening on the specified port." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18046 guix-git/doc/guix.texi:18053 -#: guix-git/doc/guix.texi:24391 guix-git/doc/guix.texi:24435 -#: guix-git/doc/guix.texi:24648 guix-git/doc/guix.texi:24704 -#: guix-git/doc/guix.texi:24878 guix-git/doc/guix.texi:24889 -#: guix-git/doc/guix.texi:24962 guix-git/doc/guix.texi:25687 -#: guix-git/doc/guix.texi:25730 guix-git/doc/guix.texi:25738 -#: guix-git/doc/guix.texi:25746 guix-git/doc/guix.texi:25754 -#: guix-git/doc/guix.texi:25763 guix-git/doc/guix.texi:25771 -#: guix-git/doc/guix.texi:25778 guix-git/doc/guix.texi:25786 -#: guix-git/doc/guix.texi:25794 guix-git/doc/guix.texi:25804 -#: guix-git/doc/guix.texi:25811 guix-git/doc/guix.texi:25835 -#: guix-git/doc/guix.texi:25843 guix-git/doc/guix.texi:25869 -#: guix-git/doc/guix.texi:25878 guix-git/doc/guix.texi:25887 -#: guix-git/doc/guix.texi:25896 guix-git/doc/guix.texi:25905 -#: guix-git/doc/guix.texi:25914 guix-git/doc/guix.texi:25922 -#: guix-git/doc/guix.texi:25930 guix-git/doc/guix.texi:25937 -#: guix-git/doc/guix.texi:25945 guix-git/doc/guix.texi:25952 -#: guix-git/doc/guix.texi:25960 guix-git/doc/guix.texi:25968 -#: guix-git/doc/guix.texi:25977 guix-git/doc/guix.texi:25986 -#: guix-git/doc/guix.texi:25994 guix-git/doc/guix.texi:26002 -#: guix-git/doc/guix.texi:26010 guix-git/doc/guix.texi:26021 -#: guix-git/doc/guix.texi:26031 guix-git/doc/guix.texi:26042 -#: guix-git/doc/guix.texi:26051 guix-git/doc/guix.texi:26061 -#: guix-git/doc/guix.texi:26069 guix-git/doc/guix.texi:26080 -#: guix-git/doc/guix.texi:26089 guix-git/doc/guix.texi:26099 -#: guix-git/doc/guix.texi:29339 guix-git/doc/guix.texi:29346 -#: guix-git/doc/guix.texi:29353 guix-git/doc/guix.texi:29360 -#: guix-git/doc/guix.texi:29367 guix-git/doc/guix.texi:29374 -#: guix-git/doc/guix.texi:29382 guix-git/doc/guix.texi:29390 -#: guix-git/doc/guix.texi:29397 guix-git/doc/guix.texi:29404 -#: guix-git/doc/guix.texi:29411 guix-git/doc/guix.texi:29418 -#: guix-git/doc/guix.texi:29448 guix-git/doc/guix.texi:29486 -#: guix-git/doc/guix.texi:29493 guix-git/doc/guix.texi:29502 -#: guix-git/doc/guix.texi:29524 guix-git/doc/guix.texi:29532 -#: guix-git/doc/guix.texi:29539 guix-git/doc/guix.texi:29694 -#: guix-git/doc/guix.texi:29714 guix-git/doc/guix.texi:29729 -#: guix-git/doc/guix.texi:29736 guix-git/doc/guix.texi:32473 -#: guix-git/doc/guix.texi:32481 guix-git/doc/guix.texi:32489 -#: guix-git/doc/guix.texi:32497 guix-git/doc/guix.texi:32505 -#: guix-git/doc/guix.texi:32513 +#: guix-git/doc/guix.texi:18408 guix-git/doc/guix.texi:18415 +#: guix-git/doc/guix.texi:24753 guix-git/doc/guix.texi:24797 +#: guix-git/doc/guix.texi:25010 guix-git/doc/guix.texi:25066 +#: guix-git/doc/guix.texi:25240 guix-git/doc/guix.texi:25251 +#: guix-git/doc/guix.texi:25324 guix-git/doc/guix.texi:26024 +#: guix-git/doc/guix.texi:26067 guix-git/doc/guix.texi:26075 +#: guix-git/doc/guix.texi:26083 guix-git/doc/guix.texi:26091 +#: guix-git/doc/guix.texi:26100 guix-git/doc/guix.texi:26108 +#: guix-git/doc/guix.texi:26115 guix-git/doc/guix.texi:26123 +#: guix-git/doc/guix.texi:26131 guix-git/doc/guix.texi:26141 +#: guix-git/doc/guix.texi:26148 guix-git/doc/guix.texi:26172 +#: guix-git/doc/guix.texi:26180 guix-git/doc/guix.texi:26206 +#: guix-git/doc/guix.texi:26215 guix-git/doc/guix.texi:26224 +#: guix-git/doc/guix.texi:26233 guix-git/doc/guix.texi:26242 +#: guix-git/doc/guix.texi:26251 guix-git/doc/guix.texi:26259 +#: guix-git/doc/guix.texi:26267 guix-git/doc/guix.texi:26274 +#: guix-git/doc/guix.texi:26282 guix-git/doc/guix.texi:26289 +#: guix-git/doc/guix.texi:26297 guix-git/doc/guix.texi:26305 +#: guix-git/doc/guix.texi:26314 guix-git/doc/guix.texi:26323 +#: guix-git/doc/guix.texi:26331 guix-git/doc/guix.texi:26339 +#: guix-git/doc/guix.texi:26347 guix-git/doc/guix.texi:26358 +#: guix-git/doc/guix.texi:26368 guix-git/doc/guix.texi:26379 +#: guix-git/doc/guix.texi:26388 guix-git/doc/guix.texi:26398 +#: guix-git/doc/guix.texi:26406 guix-git/doc/guix.texi:26417 +#: guix-git/doc/guix.texi:26426 guix-git/doc/guix.texi:26436 +#: guix-git/doc/guix.texi:29676 guix-git/doc/guix.texi:29683 +#: guix-git/doc/guix.texi:29690 guix-git/doc/guix.texi:29697 +#: guix-git/doc/guix.texi:29704 guix-git/doc/guix.texi:29711 +#: guix-git/doc/guix.texi:29719 guix-git/doc/guix.texi:29727 +#: guix-git/doc/guix.texi:29734 guix-git/doc/guix.texi:29741 +#: guix-git/doc/guix.texi:29748 guix-git/doc/guix.texi:29755 +#: guix-git/doc/guix.texi:29785 guix-git/doc/guix.texi:29823 +#: guix-git/doc/guix.texi:29830 guix-git/doc/guix.texi:29839 +#: guix-git/doc/guix.texi:29861 guix-git/doc/guix.texi:29869 +#: guix-git/doc/guix.texi:29876 guix-git/doc/guix.texi:29905 +#: guix-git/doc/guix.texi:29912 guix-git/doc/guix.texi:29919 +#: guix-git/doc/guix.texi:29926 guix-git/doc/guix.texi:30059 +#: guix-git/doc/guix.texi:30079 guix-git/doc/guix.texi:30094 +#: guix-git/doc/guix.texi:30101 guix-git/doc/guix.texi:32838 +#: guix-git/doc/guix.texi:32846 guix-git/doc/guix.texi:32854 +#: guix-git/doc/guix.texi:32862 guix-git/doc/guix.texi:32870 +#: guix-git/doc/guix.texi:32878 msgid "Defaults to @samp{disabled}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18049 +#: guix-git/doc/guix.texi:18411 #, no-wrap msgid "{@code{opendht-configuration} parameter} maybe-number proxy-server-port-tls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:18051 +#: guix-git/doc/guix.texi:18413 msgid "Spawn a proxy server listening to TLS connections on the specified port." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18057 +#: guix-git/doc/guix.texi:18419 #, no-wrap msgid "Tor" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18058 +#: guix-git/doc/guix.texi:18420 #, no-wrap msgid "{Scheme Variable} tor-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18063 +#: guix-git/doc/guix.texi:18425 msgid "This is the type for a service that runs the @uref{https://torproject.org, Tor} anonymous networking daemon. The service is configured using a @code{} record. By default, the Tor daemon runs as the @code{tor} unprivileged user, which is a member of the @code{tor} group." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18066 +#: guix-git/doc/guix.texi:18428 #, no-wrap msgid "{Data Type} tor-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18068 +#: guix-git/doc/guix.texi:18430 #, no-wrap msgid "@code{tor} (default: @code{tor})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18073 +#: guix-git/doc/guix.texi:18435 msgid "The package that provides the Tor daemon. This package is expected to provide the daemon at @file{bin/tor} relative to its output directory. The default package is the @uref{https://www.torproject.org, Tor Project's} implementation." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18074 +#: guix-git/doc/guix.texi:18436 #, no-wrap msgid "@code{config-file} (default: @code{(plain-file \"empty\" \"\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18080 +#: guix-git/doc/guix.texi:18442 msgid "The configuration file to use. It will be appended to a default configuration file, and the final configuration file will be passed to @code{tor} via its @code{-f} option. This may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). See @code{man tor} for details on the configuration file syntax." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18081 +#: guix-git/doc/guix.texi:18443 #, no-wrap msgid "@code{hidden-services} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18087 +#: guix-git/doc/guix.texi:18449 msgid "The list of @code{} records to use. For any hidden service you include in this list, appropriate configuration to enable the hidden service will be automatically added to the default configuration file. You may conveniently create @code{} records using the @code{tor-hidden-service} procedure described below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18088 +#: guix-git/doc/guix.texi:18450 #, no-wrap msgid "@code{socks-socket-type} (default: @code{'tcp})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18095 +#: guix-git/doc/guix.texi:18457 msgid "The default socket type that Tor should use for its SOCKS socket. This must be either @code{'tcp} or @code{'unix}. If it is @code{'tcp}, then by default Tor will listen on TCP port 9050 on the loopback interface (i.e., localhost). If it is @code{'unix}, then Tor will listen on the UNIX domain socket @file{/var/run/tor/socks-sock}, which will be made writable by members of the @code{tor} group." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18100 +#: guix-git/doc/guix.texi:18462 msgid "If you want to customize the SOCKS socket in more detail, leave @code{socks-socket-type} at its default value of @code{'tcp} and use @code{config-file} to override the default by providing your own @code{SocksPort} option." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18101 +#: guix-git/doc/guix.texi:18463 #, fuzzy, no-wrap msgid "@code{control-socket?} (default: @code{#f})" msgstr "@code{journal-content}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:18107 +#: guix-git/doc/guix.texi:18469 msgid "Whether or not to provide a ``control socket'' by which Tor can be controlled to, for instance, dynamically instantiate tor onion services. If @code{#t}, Tor will listen for control commands on the UNIX domain socket @file{/var/run/tor/control-sock}, which will be made writable by members of the @code{tor} group." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18111 +#: guix-git/doc/guix.texi:18473 #, no-wrap msgid "hidden service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18112 +#: guix-git/doc/guix.texi:18474 #, no-wrap msgid "{Scheme Procedure} tor-hidden-service @var{name} @var{mapping}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18115 +#: guix-git/doc/guix.texi:18477 msgid "Define a new Tor @dfn{hidden service} called @var{name} and implementing @var{mapping}. @var{mapping} is a list of port/host tuples, such as:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18119 +#: guix-git/doc/guix.texi:18481 #, no-wrap msgid "" " '((22 \"127.0.0.1:22\")\n" @@ -32090,43 +32718,43 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18123 +#: guix-git/doc/guix.texi:18485 msgid "In this example, port 22 of the hidden service is mapped to local port 22, and port 80 is mapped to local port 8080." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18127 +#: guix-git/doc/guix.texi:18489 msgid "This creates a @file{/var/lib/tor/hidden-services/@var{name}} directory, where the @file{hostname} file contains the @code{.onion} host name for the hidden service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18130 +#: guix-git/doc/guix.texi:18492 msgid "See @uref{https://www.torproject.org/docs/tor-hidden-service.html.en, the Tor project's documentation} for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18133 +#: guix-git/doc/guix.texi:18495 msgid "The @code{(gnu services rsync)} module provides the following services:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18137 +#: guix-git/doc/guix.texi:18499 msgid "You might want an rsync daemon if you have files that you want available so anyone (or just yourself) can download existing files or upload new files." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18138 +#: guix-git/doc/guix.texi:18500 #, no-wrap msgid "{Scheme Variable} rsync-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18142 +#: guix-git/doc/guix.texi:18504 msgid "This is the service type for the @uref{https://rsync.samba.org, rsync} daemon, The value for this service type is a @command{rsync-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18155 +#: guix-git/doc/guix.texi:18517 #, no-wrap msgid "" ";; Export two directories over rsync. By default rsync listens on\n" @@ -32143,237 +32771,237 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18158 +#: guix-git/doc/guix.texi:18520 msgid "See below for details about @code{rsync-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18160 +#: guix-git/doc/guix.texi:18522 #, no-wrap msgid "{Data Type} rsync-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18162 +#: guix-git/doc/guix.texi:18524 msgid "Data type representing the configuration for @code{rsync-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18164 +#: guix-git/doc/guix.texi:18526 #, no-wrap msgid "@code{package} (default: @var{rsync})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18166 +#: guix-git/doc/guix.texi:18528 msgid "@code{rsync} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18167 guix-git/doc/guix.texi:31480 +#: guix-git/doc/guix.texi:18529 guix-git/doc/guix.texi:31845 #, fuzzy, no-wrap msgid "@code{address} (default: @code{#f})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:18170 +#: guix-git/doc/guix.texi:18532 msgid "IP address on which @command{rsync} listens for incoming connections. If unspecified, it defaults to listening on all available addresses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18171 +#: guix-git/doc/guix.texi:18533 #, no-wrap msgid "@code{port-number} (default: @code{873})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18175 +#: guix-git/doc/guix.texi:18537 msgid "TCP port on which @command{rsync} listens for incoming connections. If port is less than @code{1024} @command{rsync} needs to be started as the @code{root} user and group." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18176 +#: guix-git/doc/guix.texi:18538 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/rsyncd/rsyncd.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18178 +#: guix-git/doc/guix.texi:18540 msgid "Name of the file where @command{rsync} writes its PID." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18179 +#: guix-git/doc/guix.texi:18541 #, no-wrap msgid "@code{lock-file} (default: @code{\"/var/run/rsyncd/rsyncd.lock\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18181 +#: guix-git/doc/guix.texi:18543 msgid "Name of the file where @command{rsync} writes its lock file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18182 +#: guix-git/doc/guix.texi:18544 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/rsyncd.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18184 +#: guix-git/doc/guix.texi:18546 msgid "Name of the file where @command{rsync} writes its log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18185 guix-git/doc/guix.texi:35582 +#: guix-git/doc/guix.texi:18547 guix-git/doc/guix.texi:36062 #, fuzzy, no-wrap msgid "@code{user} (default: @code{\"root\"})" msgstr "@code{vt}(默认值:@code{\"vt7\"})" #. type: table -#: guix-git/doc/guix.texi:18187 +#: guix-git/doc/guix.texi:18549 msgid "Owner of the @code{rsync} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18188 +#: guix-git/doc/guix.texi:18550 #, fuzzy, no-wrap msgid "@code{group} (default: @code{\"root\"})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: table -#: guix-git/doc/guix.texi:18190 +#: guix-git/doc/guix.texi:18552 msgid "Group of the @code{rsync} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18191 +#: guix-git/doc/guix.texi:18553 #, fuzzy, no-wrap msgid "@code{uid} (default: @code{\"rsyncd\"})" msgstr "@code{vt}(默认值:@code{\"vt7\"})" #. type: table -#: guix-git/doc/guix.texi:18194 +#: guix-git/doc/guix.texi:18556 msgid "User name or user ID that file transfers to and from that module should take place as when the daemon was run as @code{root}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18195 +#: guix-git/doc/guix.texi:18557 #, fuzzy, no-wrap msgid "@code{gid} (default: @code{\"rsyncd\"})" msgstr "@code{speed}(默认值:@code{1.0})" #. type: table -#: guix-git/doc/guix.texi:18197 guix-git/doc/guix.texi:18676 +#: guix-git/doc/guix.texi:18559 guix-git/doc/guix.texi:19038 msgid "Group name or group ID that will be used when accessing the module." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18198 guix-git/doc/guix.texi:36378 +#: guix-git/doc/guix.texi:18560 guix-git/doc/guix.texi:36868 #, no-wrap msgid "@code{modules} (default: @code{%default-modules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18201 +#: guix-git/doc/guix.texi:18563 msgid "List of ``modules''---i.e., directories exported over rsync. Each element must be a @code{rsync-module} record, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18204 +#: guix-git/doc/guix.texi:18566 #, fuzzy, no-wrap msgid "{Data Type} rsync-module" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:18207 +#: guix-git/doc/guix.texi:18569 msgid "This is the data type for rsync ``modules''. A module is a directory exported over the rsync protocol. The available fields are as follows:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18213 +#: guix-git/doc/guix.texi:18575 msgid "The module name. This is the name that shows up in URLs. For example, if the module is called @code{music}, the corresponding URL will be @code{rsync://host.example.org/music}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18214 +#: guix-git/doc/guix.texi:18576 #, fuzzy, no-wrap msgid "file-name" msgstr "通道" #. type: table -#: guix-git/doc/guix.texi:18216 +#: guix-git/doc/guix.texi:18578 #, fuzzy msgid "Name of the directory being exported." msgstr "仓库的纯函数式接口。" #. type: table -#: guix-git/doc/guix.texi:18220 +#: guix-git/doc/guix.texi:18582 msgid "Comment associated with the module. Client user interfaces may display it when they obtain the list of available modules." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18221 +#: guix-git/doc/guix.texi:18583 #, fuzzy, no-wrap msgid "@code{read-only?} (default: @code{#t})" msgstr "@code{speed}(默认值:@code{1.0})" #. type: table -#: guix-git/doc/guix.texi:18225 +#: guix-git/doc/guix.texi:18587 msgid "Whether or not client will be able to upload files. If this is false, the uploads will be authorized if permissions on the daemon side permit it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18226 +#: guix-git/doc/guix.texi:18588 #, fuzzy, no-wrap msgid "@code{chroot?} (default: @code{#t})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:18230 +#: guix-git/doc/guix.texi:18592 msgid "When this is true, the rsync daemon changes root to the module's directory before starting file transfers with the client. This improves security, but requires rsync to run as root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18231 +#: guix-git/doc/guix.texi:18593 #, no-wrap msgid "@code{timeout} (default: @code{300})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18234 +#: guix-git/doc/guix.texi:18596 msgid "Idle time in seconds after which the daemon closes a connection with the client." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18238 +#: guix-git/doc/guix.texi:18600 msgid "The @code{(gnu services syncthing)} module provides the following services:" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18238 +#: guix-git/doc/guix.texi:18600 #, no-wrap msgid "syncthing" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18243 +#: guix-git/doc/guix.texi:18605 msgid "You might want a syncthing daemon if you have files between two or more computers and want to sync them in real time, safely protected from prying eyes." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18244 +#: guix-git/doc/guix.texi:18606 #, no-wrap msgid "{Scheme Variable} syncthing-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18248 +#: guix-git/doc/guix.texi:18610 msgid "This is the service type for the @uref{https://syncthing.net/, syncthing} daemon, The value for this service type is a @command{syncthing-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18252 +#: guix-git/doc/guix.texi:18614 #, no-wrap msgid "" "(service syncthing-service-type\n" @@ -32381,162 +33009,162 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18255 +#: guix-git/doc/guix.texi:18617 msgid "See below for details about @code{syncthing-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18256 +#: guix-git/doc/guix.texi:18618 #, fuzzy, no-wrap msgid "{Data Type} syncthing-configuration" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:18258 +#: guix-git/doc/guix.texi:18620 #, fuzzy msgid "Data type representing the configuration for @code{syncthing-service-type}." msgstr "管理操作系统配置。" #. type: item -#: guix-git/doc/guix.texi:18260 +#: guix-git/doc/guix.texi:18622 #, fuzzy, no-wrap msgid "@code{syncthing} (default: @var{syncthing})" msgstr "@code{xfce}(默认值:@code{xfce})" #. type: table -#: guix-git/doc/guix.texi:18262 +#: guix-git/doc/guix.texi:18624 #, fuzzy msgid "@code{syncthing} package to use." msgstr "软件包数据类型。" #. type: item -#: guix-git/doc/guix.texi:18263 +#: guix-git/doc/guix.texi:18625 #, fuzzy, no-wrap msgid "@code{arguments} (default: @var{'()})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:18265 +#: guix-git/doc/guix.texi:18627 msgid "List of command-line arguments passing to @code{syncthing} binary." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18266 +#: guix-git/doc/guix.texi:18628 #, fuzzy, no-wrap msgid "@code{logflags} (default: @var{0})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:18269 +#: guix-git/doc/guix.texi:18631 msgid "Sum of logging flags, see @uref{https://docs.syncthing.net/users/syncthing.html#cmdoption-logflags, Syncthing documentation logflags}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18270 +#: guix-git/doc/guix.texi:18632 #, fuzzy, no-wrap msgid "@code{user} (default: @var{#f})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:18273 +#: guix-git/doc/guix.texi:18635 msgid "The user as which the Syncthing service is to be run. This assumes that the specified user exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18274 +#: guix-git/doc/guix.texi:18636 #, fuzzy, no-wrap msgid "@code{group} (default: @var{\"users\"})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: table -#: guix-git/doc/guix.texi:18277 +#: guix-git/doc/guix.texi:18639 msgid "The group as which the Syncthing service is to be run. This assumes that the specified group exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18278 +#: guix-git/doc/guix.texi:18640 #, fuzzy, no-wrap msgid "@code{home} (default: @var{#f})" msgstr "@code{dnssec-policy}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:18281 +#: guix-git/doc/guix.texi:18643 msgid "Common configuration and data directory. The default configuration directory is @file{$HOME} of the specified Syncthing @code{user}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18287 +#: guix-git/doc/guix.texi:18649 msgid "Furthermore, @code{(gnu services ssh)} provides the following services." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18287 guix-git/doc/guix.texi:18326 -#: guix-git/doc/guix.texi:35715 +#: guix-git/doc/guix.texi:18649 guix-git/doc/guix.texi:18688 +#: guix-git/doc/guix.texi:36205 #, no-wrap msgid "SSH" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18288 guix-git/doc/guix.texi:18327 -#: guix-git/doc/guix.texi:35716 +#: guix-git/doc/guix.texi:18650 guix-git/doc/guix.texi:18689 +#: guix-git/doc/guix.texi:36206 #, no-wrap msgid "SSH server" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18290 +#: guix-git/doc/guix.texi:18652 #, no-wrap msgid "{Scheme Procedure} lsh-service [#:host-key \"/etc/lsh/host-key\"] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18299 +#: guix-git/doc/guix.texi:18661 msgid "[#:daemonic? #t] [#:interfaces '()] [#:port-number 22] @ [#:allow-empty-passwords? #f] [#:root-login? #f] @ [#:syslog-output? #t] [#:x11-forwarding? #t] @ [#:tcp/ip-forwarding? #t] [#:password-authentication? #t] @ [#:public-key-authentication? #t] [#:initialize? #t] Run the @command{lshd} program from @var{lsh} to listen on port @var{port-number}. @var{host-key} must designate a file containing the host key, and readable only by root." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18305 +#: guix-git/doc/guix.texi:18667 msgid "When @var{daemonic?} is true, @command{lshd} will detach from the controlling terminal and log its output to syslogd, unless one sets @var{syslog-output?} to false. Obviously, it also makes lsh-service depend on existence of syslogd service. When @var{pid-file?} is true, @command{lshd} writes its PID to the file called @var{pid-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18309 +#: guix-git/doc/guix.texi:18671 msgid "When @var{initialize?} is true, automatically create the seed and host key upon service activation if they do not exist yet. This may take long and require interaction." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18314 +#: guix-git/doc/guix.texi:18676 msgid "When @var{initialize?} is false, it is up to the user to initialize the randomness generator (@pxref{lsh-make-seed,,, lsh, LSH Manual}), and to create a key pair with the private key stored in file @var{host-key} (@pxref{lshd basics,,, lsh, LSH Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18318 +#: guix-git/doc/guix.texi:18680 msgid "When @var{interfaces} is empty, lshd listens for connections on all the network interfaces; otherwise, @var{interfaces} must be a list of host names or addresses." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18322 +#: guix-git/doc/guix.texi:18684 msgid "@var{allow-empty-passwords?} specifies whether to accept log-ins with empty passwords, and @var{root-login?} specifies whether to accept log-ins as root." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18324 +#: guix-git/doc/guix.texi:18686 msgid "The other options should be self-descriptive." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18328 +#: guix-git/doc/guix.texi:18690 #, no-wrap msgid "{Scheme Variable} openssh-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18332 +#: guix-git/doc/guix.texi:18694 msgid "This is the type for the @uref{http://www.openssh.org, OpenSSH} secure shell daemon, @command{sshd}. Its value must be an @code{openssh-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18341 +#: guix-git/doc/guix.texi:18703 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -32549,17 +33177,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18344 +#: guix-git/doc/guix.texi:18706 msgid "See below for details about @code{openssh-configuration}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18347 +#: guix-git/doc/guix.texi:18709 msgid "This service can be extended with extra authorized keys, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18352 +#: guix-git/doc/guix.texi:18714 #, no-wrap msgid "" "(service-extension openssh-service-type\n" @@ -32568,204 +33196,204 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18355 +#: guix-git/doc/guix.texi:18717 #, no-wrap msgid "{Data Type} openssh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18357 +#: guix-git/doc/guix.texi:18719 msgid "This is the configuration record for OpenSSH's @command{sshd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18359 +#: guix-git/doc/guix.texi:18721 #, fuzzy, no-wrap msgid "@code{openssh} (default @var{openssh})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: table -#: guix-git/doc/guix.texi:18361 +#: guix-git/doc/guix.texi:18723 #, fuzzy msgid "The Openssh package to use." msgstr "软件包数据类型。" #. type: item -#: guix-git/doc/guix.texi:18362 +#: guix-git/doc/guix.texi:18724 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/sshd.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18364 +#: guix-git/doc/guix.texi:18726 msgid "Name of the file where @command{sshd} writes its PID." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18365 +#: guix-git/doc/guix.texi:18727 #, no-wrap msgid "@code{port-number} (default: @code{22})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18367 +#: guix-git/doc/guix.texi:18729 msgid "TCP port on which @command{sshd} listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18368 +#: guix-git/doc/guix.texi:18730 #, no-wrap msgid "@code{permit-root-login} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18373 +#: guix-git/doc/guix.texi:18735 msgid "This field determines whether and when to allow logins as root. If @code{#f}, root logins are disallowed; if @code{#t}, they are allowed. If it's the symbol @code{'prohibit-password}, then root logins are permitted but not with password-based authentication." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18374 guix-git/doc/guix.texi:18535 +#: guix-git/doc/guix.texi:18736 guix-git/doc/guix.texi:18897 #, no-wrap msgid "@code{allow-empty-passwords?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18377 +#: guix-git/doc/guix.texi:18739 msgid "When true, users with empty passwords may log in. When false, they may not." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18378 guix-git/doc/guix.texi:18538 +#: guix-git/doc/guix.texi:18740 guix-git/doc/guix.texi:18900 #, no-wrap msgid "@code{password-authentication?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18381 +#: guix-git/doc/guix.texi:18743 msgid "When true, users may log in with their password. When false, they have other authentication methods." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18382 +#: guix-git/doc/guix.texi:18744 #, no-wrap msgid "@code{public-key-authentication?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18385 +#: guix-git/doc/guix.texi:18747 msgid "When true, users may log in using public key authentication. When false, users have to use other authentication method." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18388 +#: guix-git/doc/guix.texi:18750 msgid "Authorized public keys are stored in @file{~/.ssh/authorized_keys}. This is used only by protocol version 2." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18389 +#: guix-git/doc/guix.texi:18751 #, no-wrap msgid "@code{x11-forwarding?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18393 +#: guix-git/doc/guix.texi:18755 msgid "When true, forwarding of X11 graphical client connections is enabled---in other words, @command{ssh} options @option{-X} and @option{-Y} will work." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18394 +#: guix-git/doc/guix.texi:18756 #, no-wrap msgid "@code{allow-agent-forwarding?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18396 +#: guix-git/doc/guix.texi:18758 msgid "Whether to allow agent forwarding." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18397 +#: guix-git/doc/guix.texi:18759 #, no-wrap msgid "@code{allow-tcp-forwarding?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18399 +#: guix-git/doc/guix.texi:18761 msgid "Whether to allow TCP forwarding." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18400 +#: guix-git/doc/guix.texi:18762 #, no-wrap msgid "@code{gateway-ports?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18402 +#: guix-git/doc/guix.texi:18764 msgid "Whether to allow gateway ports." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18403 +#: guix-git/doc/guix.texi:18765 #, no-wrap msgid "@code{challenge-response-authentication?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18406 +#: guix-git/doc/guix.texi:18768 msgid "Specifies whether challenge response authentication is allowed (e.g.@: via PAM)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18407 +#: guix-git/doc/guix.texi:18769 #, no-wrap msgid "@code{use-pam?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18413 +#: guix-git/doc/guix.texi:18775 msgid "Enables the Pluggable Authentication Module interface. If set to @code{#t}, this will enable PAM authentication using @code{challenge-response-authentication?} and @code{password-authentication?}, in addition to PAM account and session module processing for all authentication types." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18418 +#: guix-git/doc/guix.texi:18780 msgid "Because PAM challenge response authentication usually serves an equivalent role to password authentication, you should disable either @code{challenge-response-authentication?} or @code{password-authentication?}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18419 +#: guix-git/doc/guix.texi:18781 #, no-wrap msgid "@code{print-last-log?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18422 +#: guix-git/doc/guix.texi:18784 msgid "Specifies whether @command{sshd} should print the date and time of the last user login when a user logs in interactively." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18423 +#: guix-git/doc/guix.texi:18785 #, no-wrap msgid "@code{subsystems} (default: @code{'((\"sftp\" \"internal-sftp\"))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18425 +#: guix-git/doc/guix.texi:18787 msgid "Configures external subsystems (e.g.@: file transfer daemon)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18429 +#: guix-git/doc/guix.texi:18791 msgid "This is a list of two-element lists, each of which containing the subsystem name and a command (with optional arguments) to execute upon subsystem request." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18432 +#: guix-git/doc/guix.texi:18794 msgid "The command @command{internal-sftp} implements an in-process SFTP server. Alternatively, one can specify the @command{sftp-server} command:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18437 +#: guix-git/doc/guix.texi:18799 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -32775,28 +33403,28 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18439 +#: guix-git/doc/guix.texi:18801 #, no-wrap msgid "@code{accepted-environment} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18441 +#: guix-git/doc/guix.texi:18803 msgid "List of strings describing which environment variables may be exported." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18444 +#: guix-git/doc/guix.texi:18806 msgid "Each string gets on its own line. See the @code{AcceptEnv} option in @code{man sshd_config}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18449 +#: guix-git/doc/guix.texi:18811 msgid "This example allows ssh-clients to export the @env{COLORTERM} variable. It is set by terminal emulators, which support colors. You can use it in your shell's resource file to enable colors for the prompt and commands if this variable is set." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18454 +#: guix-git/doc/guix.texi:18816 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -32805,30 +33433,30 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18456 +#: guix-git/doc/guix.texi:18818 #, no-wrap msgid "@code{authorized-keys} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18457 +#: guix-git/doc/guix.texi:18819 #, no-wrap msgid "authorized keys, SSH" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18458 +#: guix-git/doc/guix.texi:18820 #, no-wrap msgid "SSH authorized keys" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18462 +#: guix-git/doc/guix.texi:18824 msgid "This is the list of authorized keys. Each element of the list is a user name followed by one or more file-like objects that represent SSH public keys. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18469 +#: guix-git/doc/guix.texi:18831 #, no-wrap msgid "" "(openssh-configuration\n" @@ -32839,45 +33467,45 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18474 +#: guix-git/doc/guix.texi:18836 msgid "registers the specified public keys for user accounts @code{rekado}, @code{chris}, and @code{root}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18477 +#: guix-git/doc/guix.texi:18839 msgid "Additional authorized keys can be specified @i{via} @code{service-extension}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18480 +#: guix-git/doc/guix.texi:18842 msgid "Note that this does @emph{not} interfere with the use of @file{~/.ssh/authorized_keys}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18481 guix-git/doc/guix.texi:18912 +#: guix-git/doc/guix.texi:18843 guix-git/doc/guix.texi:19274 #, no-wrap msgid "@code{log-level} (default: @code{'info})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18485 +#: guix-git/doc/guix.texi:18847 msgid "This is a symbol specifying the logging level: @code{quiet}, @code{fatal}, @code{error}, @code{info}, @code{verbose}, @code{debug}, etc. See the man page for @file{sshd_config} for the full list of level names." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18486 guix-git/doc/guix.texi:21328 -#: guix-git/doc/guix.texi:26469 +#: guix-git/doc/guix.texi:18848 guix-git/doc/guix.texi:21690 +#: guix-git/doc/guix.texi:26806 #, no-wrap msgid "@code{extra-content} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18491 +#: guix-git/doc/guix.texi:18853 msgid "This field can be used to append arbitrary text to the configuration file. It is especially useful for elaborate configurations that cannot be expressed otherwise. This configuration, for example, would generally disable root logins, but permit them from one specific IP address:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18497 +#: guix-git/doc/guix.texi:18859 #, no-wrap msgid "" "(openssh-configuration\n" @@ -32887,23 +33515,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18502 +#: guix-git/doc/guix.texi:18864 #, no-wrap msgid "{Scheme Procedure} dropbear-service [@var{config}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18506 +#: guix-git/doc/guix.texi:18868 msgid "Run the @uref{https://matt.ucc.asn.au/dropbear/dropbear.html,Dropbear SSH daemon} with the given @var{config}, a @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18509 +#: guix-git/doc/guix.texi:18871 msgid "For example, to specify a Dropbear service listening on port 1234, add this call to the operating system's @code{services} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18513 +#: guix-git/doc/guix.texi:18875 #, no-wrap msgid "" "(dropbear-service (dropbear-configuration\n" @@ -32911,110 +33539,110 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18516 +#: guix-git/doc/guix.texi:18878 #, no-wrap msgid "{Data Type} dropbear-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18518 +#: guix-git/doc/guix.texi:18880 msgid "This data type represents the configuration of a Dropbear SSH daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18520 +#: guix-git/doc/guix.texi:18882 #, no-wrap msgid "@code{dropbear} (default: @var{dropbear})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18522 +#: guix-git/doc/guix.texi:18884 msgid "The Dropbear package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18523 +#: guix-git/doc/guix.texi:18885 #, no-wrap msgid "@code{port-number} (default: 22)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18525 +#: guix-git/doc/guix.texi:18887 msgid "The TCP port where the daemon waits for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18526 +#: guix-git/doc/guix.texi:18888 #, no-wrap msgid "@code{syslog-output?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18528 +#: guix-git/doc/guix.texi:18890 msgid "Whether to enable syslog output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18529 +#: guix-git/doc/guix.texi:18891 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/dropbear.pid\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18531 +#: guix-git/doc/guix.texi:18893 msgid "File name of the daemon's PID file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18532 +#: guix-git/doc/guix.texi:18894 #, no-wrap msgid "@code{root-login?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18534 +#: guix-git/doc/guix.texi:18896 msgid "Whether to allow @code{root} logins." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18537 +#: guix-git/doc/guix.texi:18899 msgid "Whether to allow empty passwords." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18540 +#: guix-git/doc/guix.texi:18902 msgid "Whether to enable password-based authentication." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18543 +#: guix-git/doc/guix.texi:18905 #, no-wrap msgid "AutoSSH" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18544 +#: guix-git/doc/guix.texi:18906 #, no-wrap msgid "{Scheme Variable} autossh-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18552 +#: guix-git/doc/guix.texi:18914 msgid "This is the type for the @uref{https://www.harding.motd.ca/autossh, AutoSSH} program that runs a copy of @command{ssh} and monitors it, restarting it as necessary should it die or stop passing traffic. AutoSSH can be run manually from the command-line by passing arguments to the binary @command{autossh} from the package @code{autossh}, but it can also be run as a Guix service. This latter use case is documented here." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18556 +#: guix-git/doc/guix.texi:18918 msgid "AutoSSH can be used to forward local traffic to a remote machine using an SSH tunnel, and it respects the @file{~/.ssh/config} of the user it is run as." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18561 +#: guix-git/doc/guix.texi:18923 msgid "For example, to specify a service running autossh as the user @code{pino} and forwarding all local connections to port @code{8081} to @code{remote:8081} using an SSH tunnel, add this call to the operating system's @code{services} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18567 +#: guix-git/doc/guix.texi:18929 #, no-wrap msgid "" "(service autossh-service-type\n" @@ -33024,139 +33652,139 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18570 +#: guix-git/doc/guix.texi:18932 #, no-wrap msgid "{Data Type} autossh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18572 +#: guix-git/doc/guix.texi:18934 msgid "This data type represents the configuration of an AutoSSH service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18575 +#: guix-git/doc/guix.texi:18937 #, fuzzy, no-wrap msgid "@code{user} (default @code{\"autossh\"})" msgstr "@code{vt}(默认值:@code{\"vt7\"})" #. type: table -#: guix-git/doc/guix.texi:18578 +#: guix-git/doc/guix.texi:18940 msgid "The user as which the AutoSSH service is to be run. This assumes that the specified user exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18579 +#: guix-git/doc/guix.texi:18941 #, fuzzy, no-wrap msgid "@code{poll} (default @code{600})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:18581 +#: guix-git/doc/guix.texi:18943 msgid "Specifies the connection poll time in seconds." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18582 +#: guix-git/doc/guix.texi:18944 #, fuzzy, no-wrap msgid "@code{first-poll} (default @code{#f})" msgstr "@code{dnssec-policy}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:18588 +#: guix-git/doc/guix.texi:18950 msgid "Specifies how many seconds AutoSSH waits before the first connection test. After this first test, polling is resumed at the pace defined in @code{poll}. When set to @code{#f}, the first poll is not treated specially and will also use the connection poll specified in @code{poll}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18589 +#: guix-git/doc/guix.texi:18951 #, fuzzy, no-wrap msgid "@code{gate-time} (default @code{30})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:18592 +#: guix-git/doc/guix.texi:18954 msgid "Specifies how many seconds an SSH connection must be active before it is considered successful." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18593 +#: guix-git/doc/guix.texi:18955 #, fuzzy, no-wrap msgid "@code{log-level} (default @code{1})" msgstr "@code{speed}(默认值:@code{1.0})" #. type: table -#: guix-git/doc/guix.texi:18596 +#: guix-git/doc/guix.texi:18958 msgid "The log level, corresponding to the levels used by syslog---so @code{0} is the most silent while @code{7} is the chattiest." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18597 +#: guix-git/doc/guix.texi:18959 #, fuzzy, no-wrap msgid "@code{max-start} (default @code{#f})" msgstr "@code{max-zone-size}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:18600 +#: guix-git/doc/guix.texi:18962 msgid "The maximum number of times SSH may be (re)started before AutoSSH exits. When set to @code{#f}, no maximum is configured and AutoSSH may restart indefinitely." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18601 +#: guix-git/doc/guix.texi:18963 #, fuzzy, no-wrap msgid "@code{message} (default @code{\"\"})" msgstr "@code{display}(默认值:@code{\":0\"})" #. type: table -#: guix-git/doc/guix.texi:18603 +#: guix-git/doc/guix.texi:18965 msgid "The message to append to the echo message sent when testing connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18604 +#: guix-git/doc/guix.texi:18966 #, fuzzy, no-wrap msgid "@code{port} (default @code{\"0\"})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:18614 +#: guix-git/doc/guix.texi:18976 msgid "The ports used for monitoring the connection. When set to @code{\"0\"}, monitoring is disabled. When set to @code{\"@var{n}\"} where @var{n} is a positive integer, ports @var{n} and @var{n}+1 are used for monitoring the connection, such that port @var{n} is the base monitoring port and @code{n+1} is the echo port. When set to @code{\"@var{n}:@var{m}\"} where @var{n} and @var{m} are positive integers, the ports @var{n} and @var{m} are used for monitoring the connection, such that port @var{n} is the base monitoring port and @var{m} is the echo port." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18615 +#: guix-git/doc/guix.texi:18977 #, fuzzy, no-wrap msgid "@code{ssh-options} (default @code{'()})" msgstr "@code{includes}(默认值:@code{'()})" #. type: table -#: guix-git/doc/guix.texi:18619 +#: guix-git/doc/guix.texi:18981 msgid "The list of command-line arguments to pass to @command{ssh} when it is run. Options @option{-f} and @option{-M} are reserved for AutoSSH and may cause undefined behaviour." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18623 +#: guix-git/doc/guix.texi:18985 #, no-wrap msgid "WebSSH" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18624 +#: guix-git/doc/guix.texi:18986 #, no-wrap msgid "{Scheme Variable} webssh-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18630 +#: guix-git/doc/guix.texi:18992 msgid "This is the type for the @uref{https://webssh.huashengdun.org/, WebSSH} program that runs a web SSH client. WebSSH can be run manually from the command-line by passing arguments to the binary @command{wssh} from the package @code{webssh}, but it can also be run as a Guix service. This latter use case is documented here." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18636 +#: guix-git/doc/guix.texi:18998 msgid "For example, to specify a service running WebSSH on loopback interface on port @code{8888} with reject policy with a list of allowed to connection hosts, and NGINX as a reverse-proxy to this service listening for HTTPS connection, add this call to the operating system's @code{services} field:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18644 +#: guix-git/doc/guix.texi:19006 #, no-wrap msgid "" "(service webssh-service-type\n" @@ -33169,7 +33797,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18660 +#: guix-git/doc/guix.texi:19022 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -33190,128 +33818,128 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18663 +#: guix-git/doc/guix.texi:19025 #, no-wrap msgid "{Data Type} webssh-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18665 +#: guix-git/doc/guix.texi:19027 msgid "Data type representing the configuration for @code{webssh-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18667 +#: guix-git/doc/guix.texi:19029 #, fuzzy, no-wrap msgid "@code{package} (default: @var{webssh})" msgstr "@code{xfce}(默认值:@code{xfce})" #. type: table -#: guix-git/doc/guix.texi:18669 +#: guix-git/doc/guix.texi:19031 msgid "@code{webssh} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18670 +#: guix-git/doc/guix.texi:19032 #, fuzzy, no-wrap msgid "@code{user-name} (default: @var{\"webssh\"})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: table -#: guix-git/doc/guix.texi:18673 +#: guix-git/doc/guix.texi:19035 msgid "User name or user ID that file transfers to and from that module should take place." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18674 +#: guix-git/doc/guix.texi:19036 #, fuzzy, no-wrap msgid "@code{group-name} (default: @var{\"webssh\"})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: item -#: guix-git/doc/guix.texi:18677 +#: guix-git/doc/guix.texi:19039 #, fuzzy, no-wrap msgid "@code{address} (default: @var{#f})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:18679 +#: guix-git/doc/guix.texi:19041 msgid "IP address on which @command{webssh} listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18680 +#: guix-git/doc/guix.texi:19042 #, fuzzy, no-wrap msgid "@code{port} (default: @var{8888})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:18682 +#: guix-git/doc/guix.texi:19044 msgid "TCP port on which @command{webssh} listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18683 +#: guix-git/doc/guix.texi:19045 #, fuzzy, no-wrap msgid "@code{policy} (default: @var{#f})" msgstr "@code{dnssec-policy}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:18685 +#: guix-git/doc/guix.texi:19047 msgid "Connection policy. @var{reject} policy requires to specify @var{known-hosts}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18686 +#: guix-git/doc/guix.texi:19048 #, fuzzy, no-wrap msgid "@code{known-hosts} (default: @var{'()})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:18688 +#: guix-git/doc/guix.texi:19050 msgid "List of hosts which allowed for SSH connection from @command{webssh}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18689 +#: guix-git/doc/guix.texi:19051 #, fuzzy, no-wrap msgid "@code{log-file} (default: @file{\"/var/log/webssh.log\"})" msgstr "@code{private-key}(默认值:@file{~root/.ssh/id_rsa})" #. type: table -#: guix-git/doc/guix.texi:18691 +#: guix-git/doc/guix.texi:19053 msgid "Name of the file where @command{webssh} writes its log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18692 +#: guix-git/doc/guix.texi:19054 #, fuzzy, no-wrap msgid "@code{log-level} (default: @var{#f})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:18694 +#: guix-git/doc/guix.texi:19056 msgid "Logging level." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18698 +#: guix-git/doc/guix.texi:19060 #, no-wrap msgid "{Scheme Variable} %facebook-host-aliases" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18704 +#: guix-git/doc/guix.texi:19066 msgid "This variable contains a string for use in @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). Each line contains a entry that maps a known server name of the Facebook on-line service---e.g., @code{www.facebook.com}---to the local host---@code{127.0.0.1} or its IPv6 equivalent, @code{::1}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18708 +#: guix-git/doc/guix.texi:19070 msgid "This variable is typically used in the @code{hosts-file} field of an @code{operating-system} declaration (@pxref{operating-system Reference, @file{/etc/hosts}}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18721 +#: guix-git/doc/guix.texi:19083 #, no-wrap msgid "" "(operating-system\n" @@ -33326,176 +33954,176 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18725 +#: guix-git/doc/guix.texi:19087 msgid "This mechanism can prevent programs running locally, such as Web browsers, from accessing Facebook." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:18728 +#: guix-git/doc/guix.texi:19090 msgid "The @code{(gnu services avahi)} provides the following definition." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18729 +#: guix-git/doc/guix.texi:19091 #, no-wrap msgid "{Scheme Variable} avahi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18734 +#: guix-git/doc/guix.texi:19096 msgid "This is the service that runs @command{avahi-daemon}, a system-wide mDNS/DNS-SD responder that allows for service discovery and ``zero-configuration'' host name lookups (see @uref{https://avahi.org/}). Its value must be an @code{avahi-configuration} record---see below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18739 +#: guix-git/doc/guix.texi:19101 msgid "This service extends the name service cache daemon (nscd) so that it can resolve @code{.local} host names using @uref{https://0pointer.de/lennart/projects/nss-mdns/, nss-mdns}. @xref{Name Service Switch}, for information on host name resolution." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18742 +#: guix-git/doc/guix.texi:19104 msgid "Additionally, add the @var{avahi} package to the system profile so that commands such as @command{avahi-browse} are directly usable." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18744 +#: guix-git/doc/guix.texi:19106 #, no-wrap msgid "{Data Type} avahi-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18746 +#: guix-git/doc/guix.texi:19108 msgid "Data type representation the configuration for Avahi." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18749 +#: guix-git/doc/guix.texi:19111 #, no-wrap msgid "@code{host-name} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18752 +#: guix-git/doc/guix.texi:19114 msgid "If different from @code{#f}, use that as the host name to publish for this machine; otherwise, use the machine's actual host name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18753 guix-git/doc/guix.texi:29132 +#: guix-git/doc/guix.texi:19115 guix-git/doc/guix.texi:29469 #, no-wrap msgid "@code{publish?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18756 +#: guix-git/doc/guix.texi:19118 msgid "When true, allow host names and services to be published (broadcast) over the network." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18757 +#: guix-git/doc/guix.texi:19119 #, no-wrap msgid "@code{publish-workstation?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18761 +#: guix-git/doc/guix.texi:19123 msgid "When true, @command{avahi-daemon} publishes the machine's host name and IP address via mDNS on the local network. To view the host names published on your local network, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18764 +#: guix-git/doc/guix.texi:19126 #, no-wrap msgid "avahi-browse _workstation._tcp\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:18766 +#: guix-git/doc/guix.texi:19128 #, no-wrap msgid "@code{wide-area?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18768 +#: guix-git/doc/guix.texi:19130 msgid "When true, DNS-SD over unicast DNS is enabled." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18769 +#: guix-git/doc/guix.texi:19131 #, no-wrap msgid "@code{ipv4?} (default: @code{#t})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:18770 +#: guix-git/doc/guix.texi:19132 #, no-wrap msgid "@code{ipv6?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18772 +#: guix-git/doc/guix.texi:19134 msgid "These fields determine whether to use IPv4/IPv6 sockets." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18773 +#: guix-git/doc/guix.texi:19135 #, no-wrap msgid "@code{domains-to-browse} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18775 +#: guix-git/doc/guix.texi:19137 msgid "This is a list of domains to browse." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18778 +#: guix-git/doc/guix.texi:19140 #, no-wrap msgid "{Scheme Variable} openvswitch-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18782 +#: guix-git/doc/guix.texi:19144 msgid "This is the type of the @uref{https://www.openvswitch.org, Open vSwitch} service, whose value should be an @code{openvswitch-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18784 +#: guix-git/doc/guix.texi:19146 #, no-wrap msgid "{Data Type} openvswitch-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18788 +#: guix-git/doc/guix.texi:19150 msgid "Data type representing the configuration of Open vSwitch, a multilayer virtual switch which is designed to enable massive network automation through programmatic extension." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18790 +#: guix-git/doc/guix.texi:19152 #, no-wrap msgid "@code{package} (default: @var{openvswitch})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18792 +#: guix-git/doc/guix.texi:19154 msgid "Package object of the Open vSwitch." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18796 +#: guix-git/doc/guix.texi:19158 #, no-wrap msgid "{Scheme Variable} pagekite-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18801 +#: guix-git/doc/guix.texi:19163 msgid "This is the service type for the @uref{https://pagekite.net, PageKite} service, a tunneling solution for making localhost servers publicly visible, even from behind restrictive firewalls or NAT without forwarded ports. The value for this service type is a @code{pagekite-configuration} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18803 +#: guix-git/doc/guix.texi:19165 msgid "Here's an example exposing the local HTTP and SSH daemons:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18810 +#: guix-git/doc/guix.texi:19172 #, no-wrap msgid "" "(service pagekite-service-type\n" @@ -33506,111 +34134,111 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18813 +#: guix-git/doc/guix.texi:19175 #, fuzzy, no-wrap msgid "{Data Type} pagekite-configuration" msgstr "管理操作系统配置。" #. type: deftp -#: guix-git/doc/guix.texi:18815 +#: guix-git/doc/guix.texi:19177 #, fuzzy msgid "Data type representing the configuration of PageKite." msgstr "管理操作系统配置。" #. type: item -#: guix-git/doc/guix.texi:18817 +#: guix-git/doc/guix.texi:19179 #, fuzzy, no-wrap msgid "@code{package} (default: @var{pagekite})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:18819 +#: guix-git/doc/guix.texi:19181 msgid "Package object of PageKite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18820 +#: guix-git/doc/guix.texi:19182 #, fuzzy, no-wrap msgid "@code{kitename} (default: @code{#f})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:18822 +#: guix-git/doc/guix.texi:19184 msgid "PageKite name for authenticating to the frontend server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18823 +#: guix-git/doc/guix.texi:19185 #, fuzzy, no-wrap msgid "@code{kitesecret} (default: @code{#f})" msgstr "@code{speed}(默认值:@code{1.0})" #. type: table -#: guix-git/doc/guix.texi:18826 +#: guix-git/doc/guix.texi:19188 msgid "Shared secret for authenticating to the frontend server. You should probably put this inside @code{extra-file} instead." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18827 +#: guix-git/doc/guix.texi:19189 #, fuzzy, no-wrap msgid "@code{frontend} (default: @code{#f})" msgstr "@code{journal-content}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:18830 +#: guix-git/doc/guix.texi:19192 msgid "Connect to the named PageKite frontend server instead of the @uref{https://pagekite.net,,pagekite.net} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18831 +#: guix-git/doc/guix.texi:19193 #, no-wrap msgid "@code{kites} (default: @code{'(\"http:@@kitename:localhost:80:@@kitesecret\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:18834 +#: guix-git/doc/guix.texi:19196 msgid "List of service kites to use. Exposes HTTP on port 80 by default. The format is @code{proto:kitename:host:port:secret}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18835 +#: guix-git/doc/guix.texi:19197 #, fuzzy, no-wrap msgid "@code{extra-file} (default: @code{#f})" msgstr "@code{zonefile-load}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:18838 +#: guix-git/doc/guix.texi:19200 msgid "Extra configuration file to read, which you are expected to create manually. Use this to add additional options and manage shared secrets out-of-band." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18842 +#: guix-git/doc/guix.texi:19204 #, no-wrap msgid "{Scheme Variable} yggdrasil-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18846 +#: guix-git/doc/guix.texi:19208 msgid "The service type for connecting to the @uref{https://yggdrasil-network.github.io/, Yggdrasil network}, an early-stage implementation of a fully end-to-end encrypted IPv6 network." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:18853 +#: guix-git/doc/guix.texi:19215 msgid "Yggdrasil provides name-independent routing with cryptographically generated addresses. Static addressing means you can keep the same address as long as you want, even if you move to a new location, or generate a new address (by generating new keys) whenever you want. @uref{https://yggdrasil-network.github.io/2018/07/28/addressing.html}" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18857 +#: guix-git/doc/guix.texi:19219 msgid "Pass it a value of @code{yggdrasil-configuration} to connect it to public peers and/or local peers." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18861 +#: guix-git/doc/guix.texi:19223 msgid "Here is an example using public peers and a static address. The static signing and encryption keys are defined in @file{/etc/yggdrasil-private.conf} (the default value for @code{config-file})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18873 +#: guix-git/doc/guix.texi:19235 #, no-wrap msgid "" ";; part of the operating-system declaration\n" @@ -33626,7 +34254,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18880 +#: guix-git/doc/guix.texi:19242 #, no-wrap msgid "" "# sample content for /etc/yggdrasil-private.conf\n" @@ -33638,7 +34266,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18883 +#: guix-git/doc/guix.texi:19245 #, no-wrap msgid "" " # Your private encryption key. DO NOT share this with anyone!\n" @@ -33647,7 +34275,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18887 +#: guix-git/doc/guix.texi:19249 #, no-wrap msgid "" " # Your public signing key. You should not ordinarily need to share\n" @@ -33657,7 +34285,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18891 +#: guix-git/doc/guix.texi:19253 #, no-wrap msgid "" " # Your private signing key. DO NOT share this with anyone!\n" @@ -33666,125 +34294,125 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18894 +#: guix-git/doc/guix.texi:19256 #, fuzzy, no-wrap msgid "{Data Type} yggdrasil-configuration" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:18896 +#: guix-git/doc/guix.texi:19258 #, fuzzy msgid "Data type representing the configuration of Yggdrasil." msgstr "管理操作系统配置。" #. type: item -#: guix-git/doc/guix.texi:18898 +#: guix-git/doc/guix.texi:19260 #, fuzzy, no-wrap msgid "@code{package} (default: @code{yggdrasil})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:18900 +#: guix-git/doc/guix.texi:19262 msgid "Package object of Yggdrasil." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18901 +#: guix-git/doc/guix.texi:19263 #, fuzzy, no-wrap msgid "@code{json-config} (default: @code{'()})" msgstr "@code{includes}(默认值:@code{'()})" #. type: table -#: guix-git/doc/guix.texi:18907 +#: guix-git/doc/guix.texi:19269 msgid "Contents of @file{/etc/yggdrasil.conf}. Will be merged with @file{/etc/yggdrasil-private.conf}. Note that these settings are stored in the Guix store, which is readable to all users. @strong{Do not store your private keys in it}. See the output of @code{yggdrasil -genconf} for a quick overview of valid keys and their default values." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18908 +#: guix-git/doc/guix.texi:19270 #, fuzzy, no-wrap msgid "@code{autoconf?} (default: @code{#f})" msgstr "@code{cleanup-hook}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:18911 +#: guix-git/doc/guix.texi:19273 msgid "Whether to use automatic mode. Enabling it makes Yggdrasil use adynamic IP and peer with IPv6 neighbors." msgstr "" #. type: table -#: guix-git/doc/guix.texi:18914 +#: guix-git/doc/guix.texi:19276 msgid "How much detail to include in logs. Use @code{'debug} for more detail." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18915 +#: guix-git/doc/guix.texi:19277 #, fuzzy, no-wrap msgid "@code{log-to} (default: @code{'stdout})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:18919 +#: guix-git/doc/guix.texi:19281 msgid "Where to send logs. By default, the service logs standard output to @file{/var/log/yggdrasil.log}. The alternative is @code{'syslog}, which sends output to the running syslog service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18920 +#: guix-git/doc/guix.texi:19282 #, fuzzy, no-wrap msgid "@code{config-file} (default: @code{\"/etc/yggdrasil-private.conf\"})" msgstr "@code{zonefile-load}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:18927 +#: guix-git/doc/guix.texi:19289 msgid "What HJSON file to load sensitive data from. This is where private keys should be stored, which are necessary to specify if you don't want a randomized address after each restart. Use @code{#f} to disable. Options defined in this file take precedence over @code{json-config}. Use the output of @code{yggdrasil -genconf} as a starting point. To configure a static address, delete everything except these options:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18929 +#: guix-git/doc/guix.texi:19291 #, no-wrap msgid "EncryptionPublicKey" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18930 +#: guix-git/doc/guix.texi:19292 #, no-wrap msgid "EncryptionPrivateKey" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18931 +#: guix-git/doc/guix.texi:19293 #, no-wrap msgid "SigningPublicKey" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:18932 +#: guix-git/doc/guix.texi:19294 #, no-wrap msgid "SigningPrivateKey" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18937 +#: guix-git/doc/guix.texi:19299 #, no-wrap msgid "IPFS" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18938 +#: guix-git/doc/guix.texi:19300 #, no-wrap msgid "{Scheme Variable} ipfs-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18942 +#: guix-git/doc/guix.texi:19304 msgid "The service type for connecting to the @uref{https://ipfs.io,IPFS network}, a global, versioned, peer-to-peer file system. Pass it a @code{ipfs-configuration} to change the ports used for the gateway and API." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:18944 +#: guix-git/doc/guix.texi:19306 msgid "Here's an example configuration, using some non-standard ports:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18950 +#: guix-git/doc/guix.texi:19312 #, no-wrap msgid "" "(service ipfs-service-type\n" @@ -33794,69 +34422,69 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:18953 +#: guix-git/doc/guix.texi:19315 #, fuzzy, no-wrap msgid "{Data Type} ipfs-configuration" msgstr "系统配置" #. type: deftp -#: guix-git/doc/guix.texi:18955 +#: guix-git/doc/guix.texi:19317 #, fuzzy msgid "Data type representing the configuration of IPFS." msgstr "管理操作系统配置。" #. type: item -#: guix-git/doc/guix.texi:18957 +#: guix-git/doc/guix.texi:19319 #, fuzzy, no-wrap msgid "@code{package} (default: @code{go-ipfs})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:18959 +#: guix-git/doc/guix.texi:19321 msgid "Package object of IPFS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18960 +#: guix-git/doc/guix.texi:19322 #, fuzzy, no-wrap msgid "@code{gateway} (default: @code{\"/ip4/127.0.0.1/tcp/8082\"})" msgstr "@code{speed}(默认值:@code{1.0})" #. type: table -#: guix-git/doc/guix.texi:18962 +#: guix-git/doc/guix.texi:19324 msgid "Address of the gateway, in ‘multiaddress’ format." msgstr "" #. type: item -#: guix-git/doc/guix.texi:18963 +#: guix-git/doc/guix.texi:19325 #, fuzzy, no-wrap msgid "@code{api} (default: @code{\"/ip4/127.0.0.1/tcp/5001\"})" msgstr "@code{speed}(默认值:@code{1.0})" #. type: table -#: guix-git/doc/guix.texi:18965 +#: guix-git/doc/guix.texi:19327 msgid "Address of the API endpoint, in ‘multiaddress’ format." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:18968 +#: guix-git/doc/guix.texi:19330 #, no-wrap msgid "keepalived" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18969 +#: guix-git/doc/guix.texi:19331 #, no-wrap msgid "{Scheme Variable} keepalived-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18974 +#: guix-git/doc/guix.texi:19336 msgid "This is the type for the @uref{https://www.keepalived.org/, Keepalived} routing software, @command{keepalived}. Its value must be an @code{keepalived-configuration} record as in this example for master machine:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:18979 +#: guix-git/doc/guix.texi:19341 #, fuzzy, no-wrap msgid "" "(service keepalived-service-type\n" @@ -33869,12 +34497,12 @@ msgstr "" " (guix-support? #t)))\n" #. type: deffn -#: guix-git/doc/guix.texi:18982 +#: guix-git/doc/guix.texi:19344 msgid "where @file{keepalived-master.conf}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:18994 +#: guix-git/doc/guix.texi:19356 #, no-wrap msgid "" "vrrp_instance my-group @{\n" @@ -33890,12 +34518,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:18997 +#: guix-git/doc/guix.texi:19359 msgid "and for backup machine:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19002 +#: guix-git/doc/guix.texi:19364 #, fuzzy, no-wrap msgid "" "(service keepalived-service-type\n" @@ -33908,12 +34536,12 @@ msgstr "" " (guix-support? #t)))\n" #. type: deffn -#: guix-git/doc/guix.texi:19005 +#: guix-git/doc/guix.texi:19367 msgid "where @file{keepalived-backup.conf}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:19017 +#: guix-git/doc/guix.texi:19379 #, no-wrap msgid "" "vrrp_instance my-group @{\n" @@ -33929,135 +34557,135 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19023 +#: guix-git/doc/guix.texi:19385 #, no-wrap msgid "unattended upgrades" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19024 +#: guix-git/doc/guix.texi:19386 #, no-wrap msgid "upgrades, unattended" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19029 +#: guix-git/doc/guix.texi:19391 msgid "Guix provides a service to perform @emph{unattended upgrades}: periodically, the system automatically reconfigures itself from the latest Guix. Guix System has several properties that make unattended upgrades safe:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19034 +#: guix-git/doc/guix.texi:19396 msgid "upgrades are transactional (either the upgrade succeeds or it fails, but you cannot end up with an ``in-between'' system state);" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19038 +#: guix-git/doc/guix.texi:19400 msgid "the upgrade log is kept---you can view it with @command{guix system list-generations}---and you can roll back to any previous generation, should the upgraded system fail to behave as intended;" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19041 +#: guix-git/doc/guix.texi:19403 msgid "channel code is authenticated so you know you can only run genuine code (@pxref{Channels});" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:19044 +#: guix-git/doc/guix.texi:19406 msgid "@command{guix system reconfigure} prevents downgrades, which makes it immune to @dfn{downgrade attacks}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19049 +#: guix-git/doc/guix.texi:19411 msgid "To set up unattended upgrades, add an instance of @code{unattended-upgrade-service-type} like the one below to the list of your operating system services:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19052 +#: guix-git/doc/guix.texi:19414 #, no-wrap msgid "(service unattended-upgrade-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19059 +#: guix-git/doc/guix.texi:19421 msgid "The defaults above set up weekly upgrades: every Sunday at midnight. You do not need to provide the operating system configuration file: it uses @file{/run/current-system/configuration.scm}, which ensures it always uses your latest configuration---@pxref{provenance-service-type}, for more information about this file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19065 +#: guix-git/doc/guix.texi:19427 msgid "There are several things that can be configured, in particular the periodicity and services (daemons) to be restarted upon completion. When the upgrade is successful, the service takes care of deleting system generations older that some threshold, as per @command{guix system delete-generations}. See the reference below for details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19069 +#: guix-git/doc/guix.texi:19431 msgid "To ensure that upgrades are actually happening, you can run @command{guix system describe}. To investigate upgrade failures, visit the unattended upgrade log file (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19070 +#: guix-git/doc/guix.texi:19432 #, no-wrap msgid "{Scheme Variable} unattended-upgrade-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19074 +#: guix-git/doc/guix.texi:19436 msgid "This is the service type for unattended upgrades. It sets up an mcron job (@pxref{Scheduled Job Execution}) that runs @command{guix system reconfigure} from the latest version of the specified channels." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19077 +#: guix-git/doc/guix.texi:19439 msgid "Its value must be a @code{unattended-upgrade-configuration} record (see below)." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19079 +#: guix-git/doc/guix.texi:19441 #, no-wrap msgid "{Data Type} unattended-upgrade-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19082 +#: guix-git/doc/guix.texi:19444 msgid "This data type represents the configuration of the unattended upgrade service. The following fields are available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19084 +#: guix-git/doc/guix.texi:19446 #, fuzzy, no-wrap msgid "@code{schedule} (default: @code{\"30 01 * * 0\"})" msgstr "@code{speed}(默认值:@code{1.0})" #. type: table -#: guix-git/doc/guix.texi:19088 +#: guix-git/doc/guix.texi:19450 msgid "This is the schedule of upgrades, expressed as a gexp containing an mcron job schedule (@pxref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19089 +#: guix-git/doc/guix.texi:19451 #, fuzzy, no-wrap msgid "@code{channels} (default: @code{#~%default-channels})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:19093 +#: guix-git/doc/guix.texi:19455 msgid "This gexp specifies the channels to use for the upgrade (@pxref{Channels}). By default, the tip of the official @code{guix} channel is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19094 +#: guix-git/doc/guix.texi:19456 #, no-wrap msgid "@code{operating-system-file} (default: @code{\"/run/current-system/configuration.scm\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19097 +#: guix-git/doc/guix.texi:19459 msgid "This field specifies the operating system configuration file to use. The default is to reuse the config file of the current configuration." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19103 +#: guix-git/doc/guix.texi:19465 msgid "There are cases, though, where referring to @file{/run/current-system/configuration.scm} is not enough, for instance because that file refers to extra files (SSH public keys, extra configuration files, etc.) @i{via} @code{local-file} and similar constructs. For those cases, we recommend something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19109 +#: guix-git/doc/guix.texi:19471 #, no-wrap msgid "" "(unattended-upgrade-configuration\n" @@ -34067,312 +34695,312 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19116 +#: guix-git/doc/guix.texi:19478 msgid "The effect here is to import all of the current directory into the store, and to refer to @file{config.scm} within that directory. Therefore, uses of @code{local-file} within @file{config.scm} will work as expected. @xref{G-Expressions}, for information about @code{local-file} and @code{file-append}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19117 +#: guix-git/doc/guix.texi:19479 #, fuzzy, no-wrap msgid "@code{services-to-restart} (default: @code{'(mcron)})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:19120 +#: guix-git/doc/guix.texi:19482 msgid "This field specifies the Shepherd services to restart when the upgrade completes." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19127 +#: guix-git/doc/guix.texi:19489 msgid "Those services are restarted right away upon completion, as with @command{herd restart}, which ensures that the latest version is running---remember that by default @command{guix system reconfigure} only restarts services that are not currently running, which is conservative: it minimizes disruption but leaves outdated services running." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19131 +#: guix-git/doc/guix.texi:19493 msgid "Use @command{herd status} to find out candidates for restarting. @xref{Services}, for general information about services. Common services to restart would include @code{ntpd} and @code{ssh-daemon}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19134 +#: guix-git/doc/guix.texi:19496 msgid "By default, the @code{mcron} service is restarted. This ensures that the latest version of the unattended upgrade job will be used next time." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19135 +#: guix-git/doc/guix.texi:19497 #, fuzzy, no-wrap msgid "@code{system-expiration} (default: @code{(* 3 30 24 3600)})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:19139 +#: guix-git/doc/guix.texi:19501 msgid "This is the expiration time in seconds for system generations. System generations older that this amount of time are deleted with @command{guix system delete-generations} when an upgrade completes." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:19144 +#: guix-git/doc/guix.texi:19506 msgid "The unattended upgrade service does not run the garbage collector. You will probably want to set up your own mcron job to run @command{guix gc} periodically." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19146 +#: guix-git/doc/guix.texi:19508 #, fuzzy, no-wrap msgid "@code{maximum-duration} (default: @code{3600})" msgstr "@code{max-journal-depth}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:19149 +#: guix-git/doc/guix.texi:19511 msgid "Maximum duration in seconds for the upgrade; past that time, the upgrade aborts." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19152 +#: guix-git/doc/guix.texi:19514 msgid "This is primarily useful to ensure the upgrade does not end up rebuilding or re-downloading ``the world''." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19153 +#: guix-git/doc/guix.texi:19515 #, fuzzy, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/unattended-upgrade.log\"})" msgstr "@code{daemon-socket}(默认值:@code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:19155 +#: guix-git/doc/guix.texi:19517 msgid "File where unattended upgrades are logged." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19161 +#: guix-git/doc/guix.texi:19523 #, no-wrap msgid "X11" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19162 +#: guix-git/doc/guix.texi:19524 #, no-wrap msgid "X Window System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19163 guix-git/doc/guix.texi:19436 +#: guix-git/doc/guix.texi:19525 guix-git/doc/guix.texi:19798 #, no-wrap msgid "login manager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19168 +#: guix-git/doc/guix.texi:19530 msgid "Support for the X Window graphical display system---specifically Xorg---is provided by the @code{(gnu services xorg)} module. Note that there is no @code{xorg-service} procedure. Instead, the X server is started by the @dfn{login manager}, by default the GNOME Display Manager (GDM)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19169 +#: guix-git/doc/guix.texi:19531 #, no-wrap msgid "GDM" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19170 +#: guix-git/doc/guix.texi:19532 #, no-wrap msgid "GNOME, login manager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19174 +#: guix-git/doc/guix.texi:19536 msgid "GDM of course allows users to log in into window managers and desktop environments other than GNOME; for those using GNOME, GDM is required for features such as automatic screen locking." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19175 +#: guix-git/doc/guix.texi:19537 #, no-wrap msgid "window manager" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19180 +#: guix-git/doc/guix.texi:19542 msgid "To use X11, you must install at least one @dfn{window manager}---for example the @code{windowmaker} or @code{openbox} packages---preferably by adding it to the @code{packages} field of your operating system definition (@pxref{operating-system Reference, system-wide packages})." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:19186 +#: guix-git/doc/guix.texi:19548 msgid "wayland-gdm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19186 +#: guix-git/doc/guix.texi:19548 msgid "GDM also supports Wayland: it can itself use Wayland instead of X11 for its user interface, and it can also start Wayland sessions. The former is required for the latter, to enable, set @code{wayland?} to @code{#t} in @code{gdm-configuration}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19187 +#: guix-git/doc/guix.texi:19549 #, no-wrap msgid "{Scheme Variable} gdm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19192 +#: guix-git/doc/guix.texi:19554 msgid "This is the type for the @uref{https://wiki.gnome.org/Projects/GDM/, GNOME Desktop Manager} (GDM), a program that manages graphical display servers and handles graphical user logins. Its value must be a @code{gdm-configuration} (see below)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19193 +#: guix-git/doc/guix.texi:19555 #, no-wrap msgid "session types" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19201 +#: guix-git/doc/guix.texi:19563 msgid "GDM looks for @dfn{session types} described by the @file{.desktop} files in @file{/run/current-system/profile/share/xsessions} (for X11 sessions) and @file{/run/current-system/profile/share/wayland-sessions} (for Wayland sessions) and allows users to choose a session from the log-in screen. Packages such as @code{gnome}, @code{xfce}, @code{i3} and @code{sway} provide @file{.desktop} files; adding them to the system-wide set of packages automatically makes them available at the log-in screen." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19205 +#: guix-git/doc/guix.texi:19567 msgid "In addition, @file{~/.xsession} files are honored. When available, @file{~/.xsession} must be an executable that starts a window manager and/or other X clients." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19207 +#: guix-git/doc/guix.texi:19569 #, no-wrap msgid "{Data Type} gdm-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19209 guix-git/doc/guix.texi:19291 +#: guix-git/doc/guix.texi:19571 guix-git/doc/guix.texi:19653 #, no-wrap msgid "@code{auto-login?} (default: @code{#f})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:19210 +#: guix-git/doc/guix.texi:19572 #, no-wrap msgid "@code{default-user} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19212 +#: guix-git/doc/guix.texi:19574 msgid "When @code{auto-login?} is false, GDM presents a log-in screen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19215 +#: guix-git/doc/guix.texi:19577 msgid "When @code{auto-login?} is true, GDM logs in directly as @code{default-user}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19216 guix-git/doc/guix.texi:25077 -#: guix-git/doc/guix.texi:26786 guix-git/doc/guix.texi:31266 -#: guix-git/doc/guix.texi:31295 guix-git/doc/guix.texi:31324 -#: guix-git/doc/guix.texi:31351 guix-git/doc/guix.texi:31406 -#: guix-git/doc/guix.texi:31431 guix-git/doc/guix.texi:31458 -#: guix-git/doc/guix.texi:31484 guix-git/doc/guix.texi:31526 +#: guix-git/doc/guix.texi:19578 guix-git/doc/guix.texi:25439 +#: guix-git/doc/guix.texi:27123 guix-git/doc/guix.texi:31631 +#: guix-git/doc/guix.texi:31660 guix-git/doc/guix.texi:31689 +#: guix-git/doc/guix.texi:31716 guix-git/doc/guix.texi:31771 +#: guix-git/doc/guix.texi:31796 guix-git/doc/guix.texi:31823 +#: guix-git/doc/guix.texi:31849 guix-git/doc/guix.texi:31891 #, no-wrap msgid "@code{debug?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19218 +#: guix-git/doc/guix.texi:19580 msgid "When true, GDM writes debug messages to its log." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19219 +#: guix-git/doc/guix.texi:19581 #, no-wrap msgid "@code{gnome-shell-assets} (default: ...)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19221 +#: guix-git/doc/guix.texi:19583 msgid "List of GNOME Shell assets needed by GDM: icon theme, fonts, etc." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19222 +#: guix-git/doc/guix.texi:19584 #, no-wrap msgid "@code{xorg-configuration} (default: @code{(xorg-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19224 guix-git/doc/guix.texi:19318 -#: guix-git/doc/guix.texi:19402 +#: guix-git/doc/guix.texi:19586 guix-git/doc/guix.texi:19680 +#: guix-git/doc/guix.texi:19764 msgid "Configuration of the Xorg graphical server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19225 +#: guix-git/doc/guix.texi:19587 #, no-wrap msgid "@code{xsession} (default: @code{(xinitrc)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19227 guix-git/doc/guix.texi:19417 +#: guix-git/doc/guix.texi:19589 guix-git/doc/guix.texi:19779 msgid "Script to run before starting a X session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19228 +#: guix-git/doc/guix.texi:19590 #, no-wrap msgid "@code{dbus-daemon} (default: @code{dbus-daemon-wrapper})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19230 +#: guix-git/doc/guix.texi:19592 msgid "File name of the @code{dbus-daemon} executable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19231 +#: guix-git/doc/guix.texi:19593 #, no-wrap msgid "@code{gdm} (default: @code{gdm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19233 +#: guix-git/doc/guix.texi:19595 msgid "The GDM package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19234 +#: guix-git/doc/guix.texi:19596 #, fuzzy, no-wrap msgid "@code{wayland?} (default: @code{#f})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:19236 +#: guix-git/doc/guix.texi:19598 msgid "When true, enables Wayland in GDM, necessary to use Wayland sessions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19237 +#: guix-git/doc/guix.texi:19599 #, fuzzy, no-wrap msgid "@code{wayland-session} (default: @code{gdm-wayland-session-wrapper})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:19240 +#: guix-git/doc/guix.texi:19602 msgid "The Wayland session wrapper to use, needed to setup the environment." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19243 +#: guix-git/doc/guix.texi:19605 #, no-wrap msgid "{Scheme Variable} slim-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19245 +#: guix-git/doc/guix.texi:19607 msgid "This is the type for the SLiM graphical login manager for X11." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19249 +#: guix-git/doc/guix.texi:19611 msgid "Like GDM, SLiM looks for session types described by @file{.desktop} files and allows users to choose a session from the log-in screen using @kbd{F1}. It also honors @file{~/.xsession} files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19256 +#: guix-git/doc/guix.texi:19618 msgid "Unlike GDM, SLiM does not spawn the user session on a different VT after logging in, which means that you can only start one graphical session. If you want to be able to run multiple graphical sessions at the same time you have to add multiple SLiM services to your system services. The following example shows how to replace the default GDM service with two SLiM services on tty7 and tty8." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19261 +#: guix-git/doc/guix.texi:19623 #, no-wrap msgid "" "(use-modules (gnu services)\n" @@ -34382,7 +35010,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19272 +#: guix-git/doc/guix.texi:19634 #, no-wrap msgid "" "(operating-system\n" @@ -34398,491 +35026,491 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19276 +#: guix-git/doc/guix.texi:19638 #, no-wrap msgid "{Data Type} slim-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19278 +#: guix-git/doc/guix.texi:19640 msgid "Data type representing the configuration of @code{slim-service-type}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19282 +#: guix-git/doc/guix.texi:19644 msgid "Whether to allow logins with empty passwords." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19283 +#: guix-git/doc/guix.texi:19645 #, fuzzy, no-wrap msgid "@code{gnupg?} (default: @code{#f})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:19290 +#: guix-git/doc/guix.texi:19652 msgid "If enabled, @code{pam-gnupg} will attempt to automatically unlock the user's GPG keys with the login password via @code{gpg-agent}. The keygrips of all keys to be unlocked should be written to @file{~/.pam-gnupg}, and can be queried with @code{gpg -K --with-keygrip}. Presetting passphrases must be enabled by adding @code{allow-preset-passphrase} in @file{~/.gnupg/gpg-agent.conf}." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:19292 +#: guix-git/doc/guix.texi:19654 #, no-wrap msgid "@code{default-user} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19294 +#: guix-git/doc/guix.texi:19656 msgid "When @code{auto-login?} is false, SLiM presents a log-in screen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19297 +#: guix-git/doc/guix.texi:19659 msgid "When @code{auto-login?} is true, SLiM logs in directly as @code{default-user}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19298 +#: guix-git/doc/guix.texi:19660 #, no-wrap msgid "@code{theme} (default: @code{%default-slim-theme})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:19299 +#: guix-git/doc/guix.texi:19661 #, no-wrap msgid "@code{theme-name} (default: @code{%default-slim-theme-name})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19301 +#: guix-git/doc/guix.texi:19663 msgid "The graphical theme to use and its name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19302 +#: guix-git/doc/guix.texi:19664 #, no-wrap msgid "@code{auto-login-session} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19305 +#: guix-git/doc/guix.texi:19667 msgid "If true, this must be the name of the executable to start as the default session---e.g., @code{(file-append windowmaker \"/bin/windowmaker\")}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19309 +#: guix-git/doc/guix.texi:19671 msgid "If false, a session described by one of the available @file{.desktop} files in @code{/run/current-system/profile} and @code{~/.guix-profile} will be used." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:19314 +#: guix-git/doc/guix.texi:19676 msgid "You must install at least one window manager in the system profile or in your user profile. Failing to do that, if @code{auto-login-session} is false, you will be unable to log in." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19316 guix-git/doc/guix.texi:19400 +#: guix-git/doc/guix.texi:19678 guix-git/doc/guix.texi:19762 #, no-wrap msgid "@code{xorg-configuration} (default @code{(xorg-configuration)})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19319 +#: guix-git/doc/guix.texi:19681 #, no-wrap msgid "@code{display} (default @code{\":0\"})" msgstr "@code{display}(默认值:@code{\":0\"})" #. type: table -#: guix-git/doc/guix.texi:19321 +#: guix-git/doc/guix.texi:19683 msgid "The display on which to start the Xorg graphical server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19322 +#: guix-git/doc/guix.texi:19684 #, no-wrap msgid "@code{vt} (default @code{\"vt7\"})" msgstr "@code{vt}(默认值:@code{\"vt7\"})" #. type: table -#: guix-git/doc/guix.texi:19324 +#: guix-git/doc/guix.texi:19686 msgid "The VT on which to start the Xorg graphical server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19325 +#: guix-git/doc/guix.texi:19687 #, no-wrap msgid "@code{xauth} (default: @code{xauth})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19327 +#: guix-git/doc/guix.texi:19689 msgid "The XAuth package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19328 +#: guix-git/doc/guix.texi:19690 #, no-wrap msgid "@code{shepherd} (default: @code{shepherd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19331 +#: guix-git/doc/guix.texi:19693 msgid "The Shepherd package used when invoking @command{halt} and @command{reboot}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19332 +#: guix-git/doc/guix.texi:19694 #, no-wrap msgid "@code{sessreg} (default: @code{sessreg})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19334 +#: guix-git/doc/guix.texi:19696 msgid "The sessreg package used in order to register the session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19335 +#: guix-git/doc/guix.texi:19697 #, no-wrap msgid "@code{slim} (default: @code{slim})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19337 +#: guix-git/doc/guix.texi:19699 msgid "The SLiM package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19340 +#: guix-git/doc/guix.texi:19702 #, no-wrap msgid "{Scheme Variable} %default-theme" msgstr "" #. type: defvrx -#: guix-git/doc/guix.texi:19341 +#: guix-git/doc/guix.texi:19703 #, no-wrap msgid "{Scheme Variable} %default-theme-name" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19343 +#: guix-git/doc/guix.texi:19705 msgid "The default SLiM theme and its name." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19346 guix-git/doc/guix.texi:19453 +#: guix-git/doc/guix.texi:19708 guix-git/doc/guix.texi:19815 #, no-wrap msgid "{Data Type} sddm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19348 +#: guix-git/doc/guix.texi:19710 msgid "This is the data type representing the SDDM service configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19350 +#: guix-git/doc/guix.texi:19712 #, no-wrap msgid "@code{display-server} (default: \"x11\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19353 +#: guix-git/doc/guix.texi:19715 msgid "Select display server to use for the greeter. Valid values are @samp{\"x11\"} or @samp{\"wayland\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19354 +#: guix-git/doc/guix.texi:19716 #, no-wrap msgid "@code{numlock} (default: \"on\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19356 +#: guix-git/doc/guix.texi:19718 msgid "Valid values are @samp{\"on\"}, @samp{\"off\"} or @samp{\"none\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19357 +#: guix-git/doc/guix.texi:19719 #, no-wrap msgid "@code{halt-command} (default @code{#~(string-apppend #$shepherd \"/sbin/halt\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19359 +#: guix-git/doc/guix.texi:19721 msgid "Command to run when halting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19360 +#: guix-git/doc/guix.texi:19722 #, no-wrap msgid "@code{reboot-command} (default @code{#~(string-append #$shepherd \"/sbin/reboot\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19362 +#: guix-git/doc/guix.texi:19724 msgid "Command to run when rebooting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19363 +#: guix-git/doc/guix.texi:19725 #, no-wrap msgid "@code{theme} (default \"maldives\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19366 +#: guix-git/doc/guix.texi:19728 msgid "Theme to use. Default themes provided by SDDM are @samp{\"elarun\"}, @samp{\"maldives\"} or @samp{\"maya\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19367 +#: guix-git/doc/guix.texi:19729 #, no-wrap msgid "@code{themes-directory} (default \"/run/current-system/profile/share/sddm/themes\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19369 +#: guix-git/doc/guix.texi:19731 msgid "Directory to look for themes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19370 +#: guix-git/doc/guix.texi:19732 #, no-wrap msgid "@code{faces-directory} (default \"/run/current-system/profile/share/sddm/faces\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19372 +#: guix-git/doc/guix.texi:19734 msgid "Directory to look for faces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19373 +#: guix-git/doc/guix.texi:19735 #, no-wrap msgid "@code{default-path} (default \"/run/current-system/profile/bin\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19375 +#: guix-git/doc/guix.texi:19737 msgid "Default PATH to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19376 +#: guix-git/doc/guix.texi:19738 #, fuzzy, no-wrap msgid "@code{minimum-uid} (default: 1000)" msgstr "@code{includes}(默认值:@code{'()})" #. type: table -#: guix-git/doc/guix.texi:19378 +#: guix-git/doc/guix.texi:19740 msgid "Minimum UID displayed in SDDM and allowed for log-in." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19379 +#: guix-git/doc/guix.texi:19741 #, fuzzy, no-wrap msgid "@code{maximum-uid} (default: 2000)" msgstr "@code{max-zone-size}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:19381 +#: guix-git/doc/guix.texi:19743 msgid "Maximum UID to display in SDDM." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19382 +#: guix-git/doc/guix.texi:19744 #, no-wrap msgid "@code{remember-last-user?} (default #t)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19384 +#: guix-git/doc/guix.texi:19746 msgid "Remember last user." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19385 +#: guix-git/doc/guix.texi:19747 #, no-wrap msgid "@code{remember-last-session?} (default #t)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19387 +#: guix-git/doc/guix.texi:19749 msgid "Remember last session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19388 +#: guix-git/doc/guix.texi:19750 #, no-wrap msgid "@code{hide-users} (default \"\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19390 +#: guix-git/doc/guix.texi:19752 msgid "Usernames to hide from SDDM greeter." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19391 +#: guix-git/doc/guix.texi:19753 #, no-wrap msgid "@code{hide-shells} (default @code{#~(string-append #$shadow \"/sbin/nologin\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19393 +#: guix-git/doc/guix.texi:19755 msgid "Users with shells listed will be hidden from the SDDM greeter." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19394 +#: guix-git/doc/guix.texi:19756 #, no-wrap msgid "@code{session-command} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/wayland-session\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19396 +#: guix-git/doc/guix.texi:19758 msgid "Script to run before starting a wayland session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19397 +#: guix-git/doc/guix.texi:19759 #, no-wrap msgid "@code{sessions-directory} (default \"/run/current-system/profile/share/wayland-sessions\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19399 +#: guix-git/doc/guix.texi:19761 msgid "Directory to look for desktop files starting wayland sessions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19403 +#: guix-git/doc/guix.texi:19765 #, no-wrap msgid "@code{xauth-path} (default @code{#~(string-append #$xauth \"/bin/xauth\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19405 +#: guix-git/doc/guix.texi:19767 msgid "Path to xauth." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19406 +#: guix-git/doc/guix.texi:19768 #, no-wrap msgid "@code{xephyr-path} (default @code{#~(string-append #$xorg-server \"/bin/Xephyr\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19408 +#: guix-git/doc/guix.texi:19770 msgid "Path to Xephyr." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19409 +#: guix-git/doc/guix.texi:19771 #, no-wrap msgid "@code{xdisplay-start} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/Xsetup\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19411 +#: guix-git/doc/guix.texi:19773 msgid "Script to run after starting xorg-server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19412 +#: guix-git/doc/guix.texi:19774 #, no-wrap msgid "@code{xdisplay-stop} (default @code{#~(string-append #$sddm \"/share/sddm/scripts/Xstop\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19414 +#: guix-git/doc/guix.texi:19776 msgid "Script to run before stopping xorg-server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19415 +#: guix-git/doc/guix.texi:19777 #, no-wrap msgid "@code{xsession-command} (default: @code{xinitrc})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:19418 +#: guix-git/doc/guix.texi:19780 #, no-wrap msgid "@code{xsessions-directory} (default: \"/run/current-system/profile/share/xsessions\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19420 +#: guix-git/doc/guix.texi:19782 msgid "Directory to look for desktop files starting X sessions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19421 +#: guix-git/doc/guix.texi:19783 #, no-wrap msgid "@code{minimum-vt} (default: 7)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19423 +#: guix-git/doc/guix.texi:19785 msgid "Minimum VT to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19424 +#: guix-git/doc/guix.texi:19786 #, no-wrap msgid "@code{auto-login-user} (default \"\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19426 +#: guix-git/doc/guix.texi:19788 msgid "User to use for auto-login." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19427 +#: guix-git/doc/guix.texi:19789 #, no-wrap msgid "@code{auto-login-session} (default \"\")" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19429 +#: guix-git/doc/guix.texi:19791 msgid "Desktop file to use for auto-login." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19430 +#: guix-git/doc/guix.texi:19792 #, no-wrap msgid "@code{relogin?} (default #f)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19432 +#: guix-git/doc/guix.texi:19794 msgid "Relogin after logout." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19437 +#: guix-git/doc/guix.texi:19799 #, no-wrap msgid "X11 login" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19438 +#: guix-git/doc/guix.texi:19800 #, no-wrap msgid "{Scheme Variable} sddm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19442 +#: guix-git/doc/guix.texi:19804 msgid "This is the type of the service to run the @uref{https://github.com/sddm/sddm,SDDM display manager}. Its value must be a @code{sddm-configuration} record (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:19444 +#: guix-git/doc/guix.texi:19806 msgid "Here's an example use:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19450 +#: guix-git/doc/guix.texi:19812 #, no-wrap msgid "" "(service sddm-service-type\n" @@ -34892,267 +35520,267 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19456 +#: guix-git/doc/guix.texi:19818 #, fuzzy msgid "This data type represents the configuration of the SDDM login manager. The available fields are:" msgstr "这个数据类型表示后台进程可以下发构建任务的构建机器。重要的项有:" #. type: item -#: guix-git/doc/guix.texi:19458 +#: guix-git/doc/guix.texi:19820 #, fuzzy, no-wrap msgid "@code{sddm} (default: @code{sddm})" msgstr "@code{speed}(默认值:@code{1.0})" #. type: table -#: guix-git/doc/guix.texi:19460 +#: guix-git/doc/guix.texi:19822 #, fuzzy msgid "The SDDM package to use." msgstr "软件包数据类型。" #. type: item -#: guix-git/doc/guix.texi:19461 +#: guix-git/doc/guix.texi:19823 #, fuzzy, no-wrap msgid "@code{display-server} (default: @code{\"x11\"})" msgstr "@code{display}(默认值:@code{\":0\"})" #. type: table -#: guix-git/doc/guix.texi:19463 +#: guix-git/doc/guix.texi:19825 msgid "This must be either @code{\"x11\"} or @code{\"wayland\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19466 +#: guix-git/doc/guix.texi:19828 #, fuzzy, no-wrap msgid "@code{auto-login-user} (default: @code{\"\"})" msgstr "@code{max-zone-size}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:19469 +#: guix-git/doc/guix.texi:19831 msgid "If non-empty, this is the user account under which to log in automatically." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19470 +#: guix-git/doc/guix.texi:19832 #, fuzzy, no-wrap msgid "@code{auto-login-session} (default: @code{\"\"})" msgstr "@code{max-zone-size}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:19473 +#: guix-git/doc/guix.texi:19835 msgid "If non-empty, this is the @file{.desktop} file name to use as the auto-login session." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19476 +#: guix-git/doc/guix.texi:19838 #, no-wrap msgid "Xorg, configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19477 +#: guix-git/doc/guix.texi:19839 #, no-wrap msgid "{Data Type} xorg-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:19482 +#: guix-git/doc/guix.texi:19844 msgid "This data type represents the configuration of the Xorg graphical display server. Note that there is no Xorg service; instead, the X server is started by a ``display manager'' such as GDM, SDDM, and SLiM@. Thus, the configuration of these display managers aggregates an @code{xorg-configuration} record." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19484 +#: guix-git/doc/guix.texi:19846 #, no-wrap msgid "@code{modules} (default: @code{%default-xorg-modules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19487 +#: guix-git/doc/guix.texi:19849 msgid "This is a list of @dfn{module packages} loaded by the Xorg server---e.g., @code{xf86-video-vesa}, @code{xf86-input-keyboard}, and so on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19488 +#: guix-git/doc/guix.texi:19850 #, no-wrap msgid "@code{fonts} (default: @code{%default-xorg-fonts})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19490 +#: guix-git/doc/guix.texi:19852 msgid "This is a list of font directories to add to the server's @dfn{font path}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19491 +#: guix-git/doc/guix.texi:19853 #, no-wrap msgid "@code{drivers} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19495 +#: guix-git/doc/guix.texi:19857 msgid "This must be either the empty list, in which case Xorg chooses a graphics driver automatically, or a list of driver names that will be tried in this order---e.g., @code{(\"modesetting\" \"vesa\")}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19496 +#: guix-git/doc/guix.texi:19858 #, no-wrap msgid "@code{resolutions} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19500 +#: guix-git/doc/guix.texi:19862 msgid "When @code{resolutions} is the empty list, Xorg chooses an appropriate screen resolution. Otherwise, it must be a list of resolutions---e.g., @code{((1024 768) (640 480))}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19501 +#: guix-git/doc/guix.texi:19863 #, no-wrap msgid "keyboard layout, for Xorg" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19502 +#: guix-git/doc/guix.texi:19864 #, no-wrap msgid "keymap, for Xorg" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19506 +#: guix-git/doc/guix.texi:19868 msgid "If this is @code{#f}, Xorg uses the default keyboard layout---usually US English (``qwerty'') for a 105-key PC keyboard." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19510 +#: guix-git/doc/guix.texi:19872 msgid "Otherwise this must be a @code{keyboard-layout} object specifying the keyboard layout in use when Xorg is running. @xref{Keyboard Layout}, for more information on how to specify the keyboard layout." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19511 guix-git/doc/guix.texi:21223 -#: guix-git/doc/guix.texi:34046 +#: guix-git/doc/guix.texi:19873 guix-git/doc/guix.texi:21585 +#: guix-git/doc/guix.texi:34483 #, no-wrap msgid "@code{extra-config} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19514 guix-git/doc/guix.texi:34050 +#: guix-git/doc/guix.texi:19876 guix-git/doc/guix.texi:34487 msgid "This is a list of strings or objects appended to the configuration file. It is used to pass extra text to be added verbatim to the configuration file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19515 +#: guix-git/doc/guix.texi:19877 #, no-wrap msgid "@code{server} (default: @code{xorg-server})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19517 +#: guix-git/doc/guix.texi:19879 msgid "This is the package providing the Xorg server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19518 +#: guix-git/doc/guix.texi:19880 #, no-wrap msgid "@code{server-arguments} (default: @code{%default-xorg-server-arguments})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19521 +#: guix-git/doc/guix.texi:19883 msgid "This is the list of command-line arguments to pass to the X server. The default is @code{-nolisten tcp}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19524 +#: guix-git/doc/guix.texi:19886 #, no-wrap msgid "{Scheme Procedure} set-xorg-configuration @var{config} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19528 +#: guix-git/doc/guix.texi:19890 msgid "[@var{login-manager-service-type}] Tell the log-in manager (of type @var{login-manager-service-type}) to use @var{config}, an @code{} record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19532 +#: guix-git/doc/guix.texi:19894 msgid "Since the Xorg configuration is embedded in the log-in manager's configuration---e.g., @code{gdm-configuration}---this procedure provides a shorthand to set the Xorg configuration." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19534 +#: guix-git/doc/guix.texi:19896 #, no-wrap msgid "{Scheme Procedure} xorg-start-command [@var{config}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19538 +#: guix-git/doc/guix.texi:19900 msgid "Return a @code{startx} script in which the modules, fonts, etc. specified in @var{config}, are available. The result should be used in place of @code{startx}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19540 +#: guix-git/doc/guix.texi:19902 msgid "Usually the X server is started by a login manager." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19543 +#: guix-git/doc/guix.texi:19905 #, no-wrap msgid "{Scheme Procedure} screen-locker-service @var{package} [@var{program}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19547 +#: guix-git/doc/guix.texi:19909 msgid "Add @var{package}, a package for a screen locker or screen saver whose command is @var{program}, to the set of setuid programs and add a PAM entry for it. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19550 +#: guix-git/doc/guix.texi:19912 #, no-wrap msgid "(screen-locker-service xlockmore \"xlock\")\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19553 +#: guix-git/doc/guix.texi:19915 msgid "makes the good ol' XlockMore usable." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:19559 +#: guix-git/doc/guix.texi:19921 #, no-wrap msgid "printer support with CUPS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19563 +#: guix-git/doc/guix.texi:19925 msgid "The @code{(gnu services cups)} module provides a Guix service definition for the CUPS printing service. To add printer support to a Guix system, add a @code{cups-service} to the operating system definition:" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19564 +#: guix-git/doc/guix.texi:19926 #, no-wrap msgid "{Scheme Variable} cups-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:19568 +#: guix-git/doc/guix.texi:19930 msgid "The service type for the CUPS print server. Its value should be a valid CUPS configuration (see below). To use the default settings, simply write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19570 +#: guix-git/doc/guix.texi:19932 #, no-wrap msgid "(service cups-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19580 +#: guix-git/doc/guix.texi:19942 msgid "The CUPS configuration controls the basic things about your CUPS installation: what interfaces it listens on, what to do if a print job fails, how much logging to do, and so on. To actually add a printer, you have to visit the @url{http://localhost:631} URL, or use a tool such as GNOME's printer configuration services. By default, configuring a CUPS service will generate a self-signed certificate if needed, for secure connections to the print server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19586 +#: guix-git/doc/guix.texi:19948 msgid "Suppose you want to enable the Web interface of CUPS and also add support for Epson printers @i{via} the @code{epson-inkjet-printer-escpr} package and for HP printers @i{via} the @code{hplip-minimal} package. You can do that directly, like this (you need to use the @code{(gnu packages cups)} module):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:19593 +#: guix-git/doc/guix.texi:19955 #, no-wrap msgid "" "(service cups-service-type\n" @@ -35163,1584 +35791,1582 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19598 +#: guix-git/doc/guix.texi:19960 msgid "Note: If you wish to use the Qt5 based GUI which comes with the hplip package then it is suggested that you install the @code{hplip} package, either in your OS configuration file or as your user." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19605 +#: guix-git/doc/guix.texi:19967 msgid "The available configuration parameters follow. Each parameter definition is preceded by its type; for example, @samp{string-list foo} indicates that the @code{foo} parameter should be specified as a list of strings. There is also a way to specify the configuration as a string, if you have an old @code{cupsd.conf} file that you want to port over from some other system; see the end for more details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:19616 +#: guix-git/doc/guix.texi:19978 msgid "Available @code{cups-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19617 +#: guix-git/doc/guix.texi:19979 #, no-wrap msgid "{@code{cups-configuration} parameter} package cups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19619 guix-git/doc/guix.texi:20387 +#: guix-git/doc/guix.texi:19981 guix-git/doc/guix.texi:20749 msgid "The CUPS package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19621 +#: guix-git/doc/guix.texi:19983 #, no-wrap msgid "{@code{cups-configuration} parameter} package-list extensions (default: @code{(list brlaser cups-filters epson-inkjet-printer-escpr foomatic-filters hplip-minimal splix)})" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19623 +#: guix-git/doc/guix.texi:19985 msgid "Drivers and other extensions to the CUPS package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19625 +#: guix-git/doc/guix.texi:19987 #, no-wrap msgid "{@code{cups-configuration} parameter} files-configuration files-configuration" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19628 +#: guix-git/doc/guix.texi:19990 msgid "Configuration of where to write logs, what directories to use for print spools, and related privileged configuration parameters." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19630 +#: guix-git/doc/guix.texi:19992 msgid "Available @code{files-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19631 +#: guix-git/doc/guix.texi:19993 #, no-wrap msgid "{@code{files-configuration} parameter} log-location access-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19639 +#: guix-git/doc/guix.texi:20001 msgid "Defines the access log filename. Specifying a blank filename disables access log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-access_log}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19641 +#: guix-git/doc/guix.texi:20003 msgid "Defaults to @samp{\"/var/log/cups/access_log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19643 +#: guix-git/doc/guix.texi:20005 #, no-wrap msgid "{@code{files-configuration} parameter} file-name cache-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19645 +#: guix-git/doc/guix.texi:20007 msgid "Where CUPS should cache data." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19647 +#: guix-git/doc/guix.texi:20009 msgid "Defaults to @samp{\"/var/cache/cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19649 +#: guix-git/doc/guix.texi:20011 #, no-wrap msgid "{@code{files-configuration} parameter} string config-file-perm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19652 +#: guix-git/doc/guix.texi:20014 msgid "Specifies the permissions for all configuration files that the scheduler writes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19658 +#: guix-git/doc/guix.texi:20020 msgid "Note that the permissions for the printers.conf file are currently masked to only allow access from the scheduler user (typically root). This is done because printer device URIs sometimes contain sensitive authentication information that should not be generally known on the system. There is no way to disable this security feature." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19660 +#: guix-git/doc/guix.texi:20022 msgid "Defaults to @samp{\"0640\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19662 +#: guix-git/doc/guix.texi:20024 #, no-wrap msgid "{@code{files-configuration} parameter} log-location error-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19670 +#: guix-git/doc/guix.texi:20032 msgid "Defines the error log filename. Specifying a blank filename disables error log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-error_log}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19672 +#: guix-git/doc/guix.texi:20034 msgid "Defaults to @samp{\"/var/log/cups/error_log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19674 +#: guix-git/doc/guix.texi:20036 #, no-wrap msgid "{@code{files-configuration} parameter} string fatal-errors" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19677 +#: guix-git/doc/guix.texi:20039 msgid "Specifies which errors are fatal, causing the scheduler to exit. The kind strings are:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19681 +#: guix-git/doc/guix.texi:20043 msgid "No errors are fatal." msgstr "" #. type: table -#: guix-git/doc/guix.texi:19684 +#: guix-git/doc/guix.texi:20046 msgid "All of the errors below are fatal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19685 +#: guix-git/doc/guix.texi:20047 #, no-wrap msgid "browse" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19688 +#: guix-git/doc/guix.texi:20050 msgid "Browsing initialization errors are fatal, for example failed connections to the DNS-SD daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19689 +#: guix-git/doc/guix.texi:20051 #, no-wrap msgid "config" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19691 +#: guix-git/doc/guix.texi:20053 msgid "Configuration file syntax errors are fatal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19692 +#: guix-git/doc/guix.texi:20054 #, no-wrap msgid "listen" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19695 +#: guix-git/doc/guix.texi:20057 msgid "Listen or Port errors are fatal, except for IPv6 failures on the loopback or @code{any} addresses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19696 +#: guix-git/doc/guix.texi:20058 #, no-wrap msgid "log" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19698 +#: guix-git/doc/guix.texi:20060 msgid "Log file creation or write errors are fatal." msgstr "" #. type: item -#: guix-git/doc/guix.texi:19699 +#: guix-git/doc/guix.texi:20061 #, no-wrap msgid "permissions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:19702 +#: guix-git/doc/guix.texi:20064 msgid "Bad startup file permissions are fatal, for example shared TLS certificate and key files with world-read permissions." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19705 +#: guix-git/doc/guix.texi:20067 msgid "Defaults to @samp{\"all -browse\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19707 +#: guix-git/doc/guix.texi:20069 #, no-wrap msgid "{@code{files-configuration} parameter} boolean file-device?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19710 +#: guix-git/doc/guix.texi:20072 msgid "Specifies whether the file pseudo-device can be used for new printer queues. The URI @uref{file:///dev/null} is always allowed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19714 +#: guix-git/doc/guix.texi:20076 #, no-wrap msgid "{@code{files-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19717 +#: guix-git/doc/guix.texi:20079 msgid "Specifies the group name or ID that will be used when executing external programs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19719 guix-git/doc/guix.texi:19805 +#: guix-git/doc/guix.texi:20081 guix-git/doc/guix.texi:20167 msgid "Defaults to @samp{\"lp\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19721 +#: guix-git/doc/guix.texi:20083 #, no-wrap msgid "{@code{files-configuration} parameter} string log-file-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19723 +#: guix-git/doc/guix.texi:20085 msgid "Specifies the group name or ID that will be used for log files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19725 +#: guix-git/doc/guix.texi:20087 msgid "Defaults to @samp{\"lpadmin\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19727 +#: guix-git/doc/guix.texi:20089 #, no-wrap msgid "{@code{files-configuration} parameter} string log-file-perm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19729 +#: guix-git/doc/guix.texi:20091 msgid "Specifies the permissions for all log files that the scheduler writes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19731 +#: guix-git/doc/guix.texi:20093 msgid "Defaults to @samp{\"0644\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19733 +#: guix-git/doc/guix.texi:20095 #, no-wrap msgid "{@code{files-configuration} parameter} log-location page-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19741 +#: guix-git/doc/guix.texi:20103 msgid "Defines the page log filename. Specifying a blank filename disables page log generation. The value @code{stderr} causes log entries to be sent to the standard error file when the scheduler is running in the foreground, or to the system log daemon when run in the background. The value @code{syslog} causes log entries to be sent to the system log daemon. The server name may be included in filenames using the string @code{%s}, as in @code{/var/log/cups/%s-page_log}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19743 +#: guix-git/doc/guix.texi:20105 msgid "Defaults to @samp{\"/var/log/cups/page_log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19745 +#: guix-git/doc/guix.texi:20107 #, no-wrap msgid "{@code{files-configuration} parameter} string remote-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19748 +#: guix-git/doc/guix.texi:20110 msgid "Specifies the username that is associated with unauthenticated accesses by clients claiming to be the root user. The default is @code{remroot}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19750 +#: guix-git/doc/guix.texi:20112 msgid "Defaults to @samp{\"remroot\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19752 +#: guix-git/doc/guix.texi:20114 #, no-wrap msgid "{@code{files-configuration} parameter} file-name request-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19755 +#: guix-git/doc/guix.texi:20117 msgid "Specifies the directory that contains print jobs and other HTTP request data." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19757 +#: guix-git/doc/guix.texi:20119 msgid "Defaults to @samp{\"/var/spool/cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19759 +#: guix-git/doc/guix.texi:20121 #, no-wrap msgid "{@code{files-configuration} parameter} sandboxing sandboxing" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19764 +#: guix-git/doc/guix.texi:20126 msgid "Specifies the level of security sandboxing that is applied to print filters, backends, and other child processes of the scheduler; either @code{relaxed} or @code{strict}. This directive is currently only used/supported on macOS." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19766 +#: guix-git/doc/guix.texi:20128 msgid "Defaults to @samp{strict}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19768 +#: guix-git/doc/guix.texi:20130 #, no-wrap msgid "{@code{files-configuration} parameter} file-name server-keychain" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19773 +#: guix-git/doc/guix.texi:20135 msgid "Specifies the location of TLS certificates and private keys. CUPS will look for public and private keys in this directory: @file{.crt} files for PEM-encoded certificates and corresponding @file{.key} files for PEM-encoded private keys." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19775 +#: guix-git/doc/guix.texi:20137 msgid "Defaults to @samp{\"/etc/cups/ssl\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19777 +#: guix-git/doc/guix.texi:20139 #, no-wrap msgid "{@code{files-configuration} parameter} file-name server-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19779 +#: guix-git/doc/guix.texi:20141 msgid "Specifies the directory containing the server configuration files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19781 +#: guix-git/doc/guix.texi:20143 msgid "Defaults to @samp{\"/etc/cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19783 +#: guix-git/doc/guix.texi:20145 #, no-wrap msgid "{@code{files-configuration} parameter} boolean sync-on-close?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19786 +#: guix-git/doc/guix.texi:20148 msgid "Specifies whether the scheduler calls fsync(2) after writing configuration or state files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19790 +#: guix-git/doc/guix.texi:20152 #, no-wrap msgid "{@code{files-configuration} parameter} space-separated-string-list system-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19792 +#: guix-git/doc/guix.texi:20154 msgid "Specifies the group(s) to use for @code{@@SYSTEM} group authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19794 +#: guix-git/doc/guix.texi:20156 #, no-wrap msgid "{@code{files-configuration} parameter} file-name temp-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19796 +#: guix-git/doc/guix.texi:20158 msgid "Specifies the directory where temporary files are stored." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19798 +#: guix-git/doc/guix.texi:20160 msgid "Defaults to @samp{\"/var/spool/cups/tmp\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19800 +#: guix-git/doc/guix.texi:20162 #, no-wrap msgid "{@code{files-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19803 +#: guix-git/doc/guix.texi:20165 msgid "Specifies the user name or ID that is used when running external programs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19807 +#: guix-git/doc/guix.texi:20169 #, no-wrap msgid "{@code{files-configuration} parameter} string set-env" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19809 +#: guix-git/doc/guix.texi:20171 msgid "Set the specified environment variable to be passed to child processes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19811 +#: guix-git/doc/guix.texi:20173 msgid "Defaults to @samp{\"variable value\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19814 +#: guix-git/doc/guix.texi:20176 #, no-wrap msgid "{@code{cups-configuration} parameter} access-log-level access-log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19821 +#: guix-git/doc/guix.texi:20183 msgid "Specifies the logging level for the AccessLog file. The @code{config} level logs when printers and classes are added, deleted, or modified and when configuration files are accessed or updated. The @code{actions} level logs when print jobs are submitted, held, released, modified, or canceled, and any of the conditions for @code{config}. The @code{all} level logs all requests." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19823 +#: guix-git/doc/guix.texi:20185 msgid "Defaults to @samp{actions}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19825 +#: guix-git/doc/guix.texi:20187 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean auto-purge-jobs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19828 +#: guix-git/doc/guix.texi:20190 msgid "Specifies whether to purge job history data automatically when it is no longer required for quotas." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19832 +#: guix-git/doc/guix.texi:20194 #, no-wrap msgid "{@code{cups-configuration} parameter} comma-separated-string-list browse-dns-sd-sub-types" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19836 +#: guix-git/doc/guix.texi:20198 msgid "Specifies a list of DNS-SD sub-types to advertise for each shared printer. For example, @samp{\"_cups\" \"_print\"} will tell network clients that both CUPS sharing and IPP Everywhere are supported." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19838 +#: guix-git/doc/guix.texi:20200 msgid "Defaults to @samp{\"_cups\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19840 +#: guix-git/doc/guix.texi:20202 #, no-wrap msgid "{@code{cups-configuration} parameter} browse-local-protocols browse-local-protocols" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19842 +#: guix-git/doc/guix.texi:20204 msgid "Specifies which protocols to use for local printer sharing." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19844 +#: guix-git/doc/guix.texi:20206 msgid "Defaults to @samp{dnssd}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19846 +#: guix-git/doc/guix.texi:20208 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean browse-web-if?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19848 +#: guix-git/doc/guix.texi:20210 msgid "Specifies whether the CUPS web interface is advertised." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19852 +#: guix-git/doc/guix.texi:20214 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean browsing?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19854 +#: guix-git/doc/guix.texi:20216 msgid "Specifies whether shared printers are advertised." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19858 +#: guix-git/doc/guix.texi:20220 #, no-wrap msgid "{@code{cups-configuration} parameter} string classification" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19863 +#: guix-git/doc/guix.texi:20225 msgid "Specifies the security classification of the server. Any valid banner name can be used, including @samp{\"classified\"}, @samp{\"confidential\"}, @samp{\"secret\"}, @samp{\"topsecret\"}, and @samp{\"unclassified\"}, or the banner can be omitted to disable secure printing functions." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19865 guix-git/doc/guix.texi:20196 -#: guix-git/doc/guix.texi:22180 guix-git/doc/guix.texi:22192 -#: guix-git/doc/guix.texi:22220 guix-git/doc/guix.texi:22977 -#: guix-git/doc/guix.texi:22991 guix-git/doc/guix.texi:22998 -#: guix-git/doc/guix.texi:23005 guix-git/doc/guix.texi:23035 -#: guix-git/doc/guix.texi:23133 guix-git/doc/guix.texi:25252 -#: guix-git/doc/guix.texi:25278 guix-git/doc/guix.texi:25314 -#: guix-git/doc/guix.texi:25360 guix-git/doc/guix.texi:25379 -#: guix-git/doc/guix.texi:25418 guix-git/doc/guix.texi:25477 -#: guix-git/doc/guix.texi:25487 guix-git/doc/guix.texi:30085 -#: guix-git/doc/guix.texi:30093 guix-git/doc/guix.texi:30101 -#: guix-git/doc/guix.texi:30109 guix-git/doc/guix.texi:30388 -#: guix-git/doc/guix.texi:31743 guix-git/doc/guix.texi:31751 -#: guix-git/doc/guix.texi:31759 guix-git/doc/guix.texi:31867 -#: guix-git/doc/guix.texi:31892 guix-git/doc/guix.texi:32023 -#: guix-git/doc/guix.texi:32031 guix-git/doc/guix.texi:32039 -#: guix-git/doc/guix.texi:32047 guix-git/doc/guix.texi:32055 -#: guix-git/doc/guix.texi:32063 guix-git/doc/guix.texi:32086 -#: guix-git/doc/guix.texi:32094 guix-git/doc/guix.texi:32146 -#: guix-git/doc/guix.texi:32162 guix-git/doc/guix.texi:32170 -#: guix-git/doc/guix.texi:32209 guix-git/doc/guix.texi:32232 -#: guix-git/doc/guix.texi:32254 guix-git/doc/guix.texi:32261 -#: guix-git/doc/guix.texi:32296 guix-git/doc/guix.texi:32304 -#: guix-git/doc/guix.texi:32328 guix-git/doc/guix.texi:32360 -#: guix-git/doc/guix.texi:32389 guix-git/doc/guix.texi:32396 -#: guix-git/doc/guix.texi:32403 guix-git/doc/guix.texi:32411 -#: guix-git/doc/guix.texi:32425 guix-git/doc/guix.texi:32434 -#: guix-git/doc/guix.texi:32444 guix-git/doc/guix.texi:32451 -#: guix-git/doc/guix.texi:32458 guix-git/doc/guix.texi:32465 -#: guix-git/doc/guix.texi:32536 guix-git/doc/guix.texi:32543 -#: guix-git/doc/guix.texi:32550 guix-git/doc/guix.texi:32559 -#: guix-git/doc/guix.texi:32575 guix-git/doc/guix.texi:32582 -#: guix-git/doc/guix.texi:32589 guix-git/doc/guix.texi:32596 -#: guix-git/doc/guix.texi:32604 guix-git/doc/guix.texi:32612 +#: guix-git/doc/guix.texi:20227 guix-git/doc/guix.texi:20558 +#: guix-git/doc/guix.texi:22542 guix-git/doc/guix.texi:22554 +#: guix-git/doc/guix.texi:22582 guix-git/doc/guix.texi:23339 +#: guix-git/doc/guix.texi:23353 guix-git/doc/guix.texi:23360 +#: guix-git/doc/guix.texi:23367 guix-git/doc/guix.texi:23397 +#: guix-git/doc/guix.texi:23495 guix-git/doc/guix.texi:25614 +#: guix-git/doc/guix.texi:25640 guix-git/doc/guix.texi:25676 +#: guix-git/doc/guix.texi:25722 guix-git/doc/guix.texi:25741 +#: guix-git/doc/guix.texi:25780 guix-git/doc/guix.texi:30450 +#: guix-git/doc/guix.texi:30458 guix-git/doc/guix.texi:30466 +#: guix-git/doc/guix.texi:30474 guix-git/doc/guix.texi:30753 +#: guix-git/doc/guix.texi:32108 guix-git/doc/guix.texi:32116 +#: guix-git/doc/guix.texi:32124 guix-git/doc/guix.texi:32232 +#: guix-git/doc/guix.texi:32257 guix-git/doc/guix.texi:32388 +#: guix-git/doc/guix.texi:32396 guix-git/doc/guix.texi:32404 +#: guix-git/doc/guix.texi:32412 guix-git/doc/guix.texi:32420 +#: guix-git/doc/guix.texi:32428 guix-git/doc/guix.texi:32451 +#: guix-git/doc/guix.texi:32459 guix-git/doc/guix.texi:32511 +#: guix-git/doc/guix.texi:32527 guix-git/doc/guix.texi:32535 +#: guix-git/doc/guix.texi:32574 guix-git/doc/guix.texi:32597 +#: guix-git/doc/guix.texi:32619 guix-git/doc/guix.texi:32626 +#: guix-git/doc/guix.texi:32661 guix-git/doc/guix.texi:32669 +#: guix-git/doc/guix.texi:32693 guix-git/doc/guix.texi:32725 +#: guix-git/doc/guix.texi:32754 guix-git/doc/guix.texi:32761 +#: guix-git/doc/guix.texi:32768 guix-git/doc/guix.texi:32776 +#: guix-git/doc/guix.texi:32790 guix-git/doc/guix.texi:32799 +#: guix-git/doc/guix.texi:32809 guix-git/doc/guix.texi:32816 +#: guix-git/doc/guix.texi:32823 guix-git/doc/guix.texi:32830 +#: guix-git/doc/guix.texi:32901 guix-git/doc/guix.texi:32908 +#: guix-git/doc/guix.texi:32915 guix-git/doc/guix.texi:32924 +#: guix-git/doc/guix.texi:32940 guix-git/doc/guix.texi:32947 +#: guix-git/doc/guix.texi:32954 guix-git/doc/guix.texi:32961 +#: guix-git/doc/guix.texi:32969 guix-git/doc/guix.texi:32977 msgid "Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19867 +#: guix-git/doc/guix.texi:20229 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean classify-override?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19870 +#: guix-git/doc/guix.texi:20232 msgid "Specifies whether users may override the classification (cover page) of individual print jobs using the @code{job-sheets} option." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19874 +#: guix-git/doc/guix.texi:20236 #, no-wrap msgid "{@code{cups-configuration} parameter} default-auth-type default-auth-type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19876 +#: guix-git/doc/guix.texi:20238 msgid "Specifies the default type of authentication to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19878 +#: guix-git/doc/guix.texi:20240 msgid "Defaults to @samp{Basic}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19880 +#: guix-git/doc/guix.texi:20242 #, no-wrap msgid "{@code{cups-configuration} parameter} default-encryption default-encryption" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19882 +#: guix-git/doc/guix.texi:20244 msgid "Specifies whether encryption will be used for authenticated requests." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19884 +#: guix-git/doc/guix.texi:20246 msgid "Defaults to @samp{Required}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19886 +#: guix-git/doc/guix.texi:20248 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-language" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19888 +#: guix-git/doc/guix.texi:20250 msgid "Specifies the default language to use for text and web content." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19890 +#: guix-git/doc/guix.texi:20252 msgid "Defaults to @samp{\"en\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19892 +#: guix-git/doc/guix.texi:20254 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-paper-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19897 +#: guix-git/doc/guix.texi:20259 msgid "Specifies the default paper size for new print queues. @samp{\"Auto\"} uses a locale-specific default, while @samp{\"None\"} specifies there is no default paper size. Specific size names are typically @samp{\"Letter\"} or @samp{\"A4\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19899 +#: guix-git/doc/guix.texi:20261 msgid "Defaults to @samp{\"Auto\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19901 +#: guix-git/doc/guix.texi:20263 #, no-wrap msgid "{@code{cups-configuration} parameter} string default-policy" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19903 +#: guix-git/doc/guix.texi:20265 msgid "Specifies the default access policy to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19905 +#: guix-git/doc/guix.texi:20267 msgid "Defaults to @samp{\"default\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19907 +#: guix-git/doc/guix.texi:20269 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean default-shared?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19909 +#: guix-git/doc/guix.texi:20271 msgid "Specifies whether local printers are shared by default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19911 guix-git/doc/guix.texi:19991 -#: guix-git/doc/guix.texi:20281 guix-git/doc/guix.texi:23067 -#: guix-git/doc/guix.texi:23118 guix-git/doc/guix.texi:23125 -#: guix-git/doc/guix.texi:24407 guix-git/doc/guix.texi:24595 -#: guix-git/doc/guix.texi:24712 guix-git/doc/guix.texi:24748 -#: guix-git/doc/guix.texi:24799 guix-git/doc/guix.texi:24818 -#: guix-git/doc/guix.texi:24828 guix-git/doc/guix.texi:24838 -#: guix-git/doc/guix.texi:24897 guix-git/doc/guix.texi:24919 -#: guix-git/doc/guix.texi:24944 guix-git/doc/guix.texi:24970 -#: guix-git/doc/guix.texi:24988 guix-git/doc/guix.texi:28180 -#: guix-git/doc/guix.texi:28208 guix-git/doc/guix.texi:28344 -#: guix-git/doc/guix.texi:28351 guix-git/doc/guix.texi:28359 -#: guix-git/doc/guix.texi:28396 guix-git/doc/guix.texi:28410 -#: guix-git/doc/guix.texi:28499 guix-git/doc/guix.texi:28506 -#: guix-git/doc/guix.texi:28514 guix-git/doc/guix.texi:29293 -#: guix-git/doc/guix.texi:29433 guix-git/doc/guix.texi:29619 -#: guix-git/doc/guix.texi:29626 guix-git/doc/guix.texi:29648 -#: guix-git/doc/guix.texi:29687 guix-git/doc/guix.texi:29707 -#: guix-git/doc/guix.texi:29721 guix-git/doc/guix.texi:29934 -#: guix-git/doc/guix.texi:31845 guix-git/doc/guix.texi:31933 -#: guix-git/doc/guix.texi:31949 guix-git/doc/guix.texi:31999 +#: guix-git/doc/guix.texi:20273 guix-git/doc/guix.texi:20353 +#: guix-git/doc/guix.texi:20643 guix-git/doc/guix.texi:23429 +#: guix-git/doc/guix.texi:23480 guix-git/doc/guix.texi:23487 +#: guix-git/doc/guix.texi:24769 guix-git/doc/guix.texi:24957 +#: guix-git/doc/guix.texi:25074 guix-git/doc/guix.texi:25110 +#: guix-git/doc/guix.texi:25161 guix-git/doc/guix.texi:25180 +#: guix-git/doc/guix.texi:25190 guix-git/doc/guix.texi:25200 +#: guix-git/doc/guix.texi:25259 guix-git/doc/guix.texi:25281 +#: guix-git/doc/guix.texi:25306 guix-git/doc/guix.texi:25332 +#: guix-git/doc/guix.texi:25350 guix-git/doc/guix.texi:28517 +#: guix-git/doc/guix.texi:28545 guix-git/doc/guix.texi:28681 +#: guix-git/doc/guix.texi:28688 guix-git/doc/guix.texi:28696 +#: guix-git/doc/guix.texi:28733 guix-git/doc/guix.texi:28747 +#: guix-git/doc/guix.texi:28836 guix-git/doc/guix.texi:28843 +#: guix-git/doc/guix.texi:28851 guix-git/doc/guix.texi:29630 +#: guix-git/doc/guix.texi:29770 guix-git/doc/guix.texi:29984 +#: guix-git/doc/guix.texi:29991 guix-git/doc/guix.texi:30013 +#: guix-git/doc/guix.texi:30052 guix-git/doc/guix.texi:30072 +#: guix-git/doc/guix.texi:30086 guix-git/doc/guix.texi:30299 +#: guix-git/doc/guix.texi:32210 guix-git/doc/guix.texi:32298 +#: guix-git/doc/guix.texi:32314 guix-git/doc/guix.texi:32364 msgid "Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19913 +#: guix-git/doc/guix.texi:20275 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer dirty-clean-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19917 +#: guix-git/doc/guix.texi:20279 msgid "Specifies the delay for updating of configuration and state files, in seconds. A value of 0 causes the update to happen as soon as possible, typically within a few milliseconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19919 guix-git/doc/guix.texi:19967 -#: guix-git/doc/guix.texi:19976 guix-git/doc/guix.texi:20288 -#: guix-git/doc/guix.texi:24757 guix-git/doc/guix.texi:24790 +#: guix-git/doc/guix.texi:20281 guix-git/doc/guix.texi:20329 +#: guix-git/doc/guix.texi:20338 guix-git/doc/guix.texi:20650 +#: guix-git/doc/guix.texi:25119 guix-git/doc/guix.texi:25152 msgid "Defaults to @samp{30}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19921 +#: guix-git/doc/guix.texi:20283 #, no-wrap msgid "{@code{cups-configuration} parameter} error-policy error-policy" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19927 +#: guix-git/doc/guix.texi:20289 msgid "Specifies what to do when an error occurs. Possible values are @code{abort-job}, which will discard the failed print job; @code{retry-job}, which will retry the job at a later time; @code{retry-current-job}, which retries the failed job immediately; and @code{stop-printer}, which stops the printer." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19929 +#: guix-git/doc/guix.texi:20291 msgid "Defaults to @samp{stop-printer}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19931 +#: guix-git/doc/guix.texi:20293 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer filter-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19939 +#: guix-git/doc/guix.texi:20301 msgid "Specifies the maximum cost of filters that are run concurrently, which can be used to minimize disk, memory, and CPU resource problems. A limit of 0 disables filter limiting. An average print to a non-PostScript printer needs a filter limit of about 200. A PostScript printer needs about half that (100). Setting the limit below these thresholds will effectively limit the scheduler to printing a single job at any time." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19941 guix-git/doc/guix.texi:19949 -#: guix-git/doc/guix.texi:19998 guix-git/doc/guix.texi:20114 -#: guix-git/doc/guix.texi:20128 guix-git/doc/guix.texi:20135 -#: guix-git/doc/guix.texi:21622 guix-git/doc/guix.texi:21638 -#: guix-git/doc/guix.texi:22295 guix-git/doc/guix.texi:22307 -#: guix-git/doc/guix.texi:23086 guix-git/doc/guix.texi:23095 -#: guix-git/doc/guix.texi:23103 guix-git/doc/guix.texi:23111 -#: guix-git/doc/guix.texi:29309 guix-git/doc/guix.texi:29634 -#: guix-git/doc/guix.texi:31838 guix-git/doc/guix.texi:32138 -#: guix-git/doc/guix.texi:32312 +#: guix-git/doc/guix.texi:20303 guix-git/doc/guix.texi:20311 +#: guix-git/doc/guix.texi:20360 guix-git/doc/guix.texi:20476 +#: guix-git/doc/guix.texi:20490 guix-git/doc/guix.texi:20497 +#: guix-git/doc/guix.texi:21984 guix-git/doc/guix.texi:22000 +#: guix-git/doc/guix.texi:22657 guix-git/doc/guix.texi:22669 +#: guix-git/doc/guix.texi:23448 guix-git/doc/guix.texi:23457 +#: guix-git/doc/guix.texi:23465 guix-git/doc/guix.texi:23473 +#: guix-git/doc/guix.texi:29646 guix-git/doc/guix.texi:29999 +#: guix-git/doc/guix.texi:32203 guix-git/doc/guix.texi:32503 +#: guix-git/doc/guix.texi:32677 msgid "Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19943 +#: guix-git/doc/guix.texi:20305 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer filter-nice" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19947 +#: guix-git/doc/guix.texi:20309 msgid "Specifies the scheduling priority of filters that are run to print a job. The nice value ranges from 0, the highest priority, to 19, the lowest priority." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19951 +#: guix-git/doc/guix.texi:20313 #, no-wrap msgid "{@code{cups-configuration} parameter} host-name-lookups host-name-lookups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19958 +#: guix-git/doc/guix.texi:20320 msgid "Specifies whether to do reverse lookups on connecting clients. The @code{double} setting causes @code{cupsd} to verify that the hostname resolved from the address matches one of the addresses returned for that hostname. Double lookups also prevent clients with unregistered addresses from connecting to your server. Only set this option to @code{#t} or @code{double} if absolutely required." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19962 +#: guix-git/doc/guix.texi:20324 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-kill-delay" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19965 +#: guix-git/doc/guix.texi:20327 msgid "Specifies the number of seconds to wait before killing the filters and backend associated with a canceled or held job." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19969 +#: guix-git/doc/guix.texi:20331 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-retry-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19974 +#: guix-git/doc/guix.texi:20336 msgid "Specifies the interval between retries of jobs in seconds. This is typically used for fax queues but can also be used with normal print queues whose error policy is @code{retry-job} or @code{retry-current-job}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19978 +#: guix-git/doc/guix.texi:20340 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer job-retry-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19983 +#: guix-git/doc/guix.texi:20345 msgid "Specifies the number of retries that are done for jobs. This is typically used for fax queues but can also be used with normal print queues whose error policy is @code{retry-job} or @code{retry-current-job}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19985 guix-git/doc/guix.texi:24721 -#: guix-git/doc/guix.texi:30186 guix-git/doc/guix.texi:30206 -#: guix-git/doc/guix.texi:30222 guix-git/doc/guix.texi:30236 -#: guix-git/doc/guix.texi:30243 guix-git/doc/guix.texi:30250 -#: guix-git/doc/guix.texi:30257 guix-git/doc/guix.texi:30417 -#: guix-git/doc/guix.texi:30433 guix-git/doc/guix.texi:30440 -#: guix-git/doc/guix.texi:30447 guix-git/doc/guix.texi:30458 -#: guix-git/doc/guix.texi:31790 guix-git/doc/guix.texi:31798 -#: guix-git/doc/guix.texi:31806 guix-git/doc/guix.texi:31830 +#: guix-git/doc/guix.texi:20347 guix-git/doc/guix.texi:25083 +#: guix-git/doc/guix.texi:30551 guix-git/doc/guix.texi:30571 +#: guix-git/doc/guix.texi:30587 guix-git/doc/guix.texi:30601 +#: guix-git/doc/guix.texi:30608 guix-git/doc/guix.texi:30615 +#: guix-git/doc/guix.texi:30622 guix-git/doc/guix.texi:30782 +#: guix-git/doc/guix.texi:30798 guix-git/doc/guix.texi:30805 +#: guix-git/doc/guix.texi:30812 guix-git/doc/guix.texi:30823 +#: guix-git/doc/guix.texi:32155 guix-git/doc/guix.texi:32163 +#: guix-git/doc/guix.texi:32171 guix-git/doc/guix.texi:32195 msgid "Defaults to @samp{5}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19987 +#: guix-git/doc/guix.texi:20349 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean keep-alive?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19989 +#: guix-git/doc/guix.texi:20351 msgid "Specifies whether to support HTTP keep-alive connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19993 +#: guix-git/doc/guix.texi:20355 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer limit-request-body" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:19996 +#: guix-git/doc/guix.texi:20358 msgid "Specifies the maximum size of print files, IPP requests, and HTML form data. A limit of 0 disables the limit check." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20000 +#: guix-git/doc/guix.texi:20362 #, no-wrap msgid "{@code{cups-configuration} parameter} multiline-string-list listen" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20007 +#: guix-git/doc/guix.texi:20369 msgid "Listens on the specified interfaces for connections. Valid values are of the form @var{address}:@var{port}, where @var{address} is either an IPv6 address enclosed in brackets, an IPv4 address, or @code{*} to indicate all addresses. Values can also be file names of local UNIX domain sockets. The Listen directive is similar to the Port directive but allows you to restrict access to specific interfaces or networks." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20009 +#: guix-git/doc/guix.texi:20371 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer listen-back-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20016 +#: guix-git/doc/guix.texi:20378 msgid "Specifies the number of pending connections that will be allowed. This normally only affects very busy servers that have reached the MaxClients limit, but can also be triggered by large numbers of simultaneous connections. When the limit is reached, the operating system will refuse additional connections until the scheduler can accept the pending ones." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20018 +#: guix-git/doc/guix.texi:20380 msgid "Defaults to @samp{128}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20020 +#: guix-git/doc/guix.texi:20382 #, no-wrap msgid "{@code{cups-configuration} parameter} location-access-control-list location-access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20022 +#: guix-git/doc/guix.texi:20384 msgid "Specifies a set of additional access controls." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20024 +#: guix-git/doc/guix.texi:20386 msgid "Available @code{location-access-controls} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20025 +#: guix-git/doc/guix.texi:20387 #, no-wrap msgid "{@code{location-access-controls} parameter} file-name path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20027 +#: guix-git/doc/guix.texi:20389 msgid "Specifies the URI path to which the access control applies." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20029 +#: guix-git/doc/guix.texi:20391 #, no-wrap msgid "{@code{location-access-controls} parameter} access-control-list access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20032 +#: guix-git/doc/guix.texi:20394 msgid "Access controls for all access to this path, in the same format as the @code{access-controls} of @code{operation-access-control}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20034 guix-git/doc/guix.texi:20040 -#: guix-git/doc/guix.texi:20054 guix-git/doc/guix.texi:20061 -#: guix-git/doc/guix.texi:20203 guix-git/doc/guix.texi:20262 -#: guix-git/doc/guix.texi:20340 guix-git/doc/guix.texi:20354 -#: guix-git/doc/guix.texi:21502 guix-git/doc/guix.texi:21511 -#: guix-git/doc/guix.texi:22781 guix-git/doc/guix.texi:22984 -#: guix-git/doc/guix.texi:23012 guix-git/doc/guix.texi:23042 -#: guix-git/doc/guix.texi:23157 guix-git/doc/guix.texi:23170 -#: guix-git/doc/guix.texi:23177 guix-git/doc/guix.texi:24927 -#: guix-git/doc/guix.texi:25322 guix-git/doc/guix.texi:25426 -#: guix-git/doc/guix.texi:25853 guix-git/doc/guix.texi:25861 -#: guix-git/doc/guix.texi:26106 guix-git/doc/guix.texi:28239 -#: guix-git/doc/guix.texi:28417 guix-git/doc/guix.texi:28616 -#: guix-git/doc/guix.texi:30077 guix-git/doc/guix.texi:30137 -#: guix-git/doc/guix.texi:30145 guix-git/doc/guix.texi:31853 -#: guix-git/doc/guix.texi:31860 guix-git/doc/guix.texi:32202 -#: guix-git/doc/guix.texi:32280 guix-git/doc/guix.texi:32374 -#: guix-git/doc/guix.texi:32382 guix-git/doc/guix.texi:32418 -#: guix-git/doc/guix.texi:32568 guix-git/doc/guix.texi:32619 -#: guix-git/doc/guix.texi:32628 +#: guix-git/doc/guix.texi:20396 guix-git/doc/guix.texi:20402 +#: guix-git/doc/guix.texi:20416 guix-git/doc/guix.texi:20423 +#: guix-git/doc/guix.texi:20565 guix-git/doc/guix.texi:20624 +#: guix-git/doc/guix.texi:20702 guix-git/doc/guix.texi:20716 +#: guix-git/doc/guix.texi:21864 guix-git/doc/guix.texi:21873 +#: guix-git/doc/guix.texi:23143 guix-git/doc/guix.texi:23346 +#: guix-git/doc/guix.texi:23374 guix-git/doc/guix.texi:23404 +#: guix-git/doc/guix.texi:23519 guix-git/doc/guix.texi:23532 +#: guix-git/doc/guix.texi:23539 guix-git/doc/guix.texi:25289 +#: guix-git/doc/guix.texi:25684 guix-git/doc/guix.texi:25788 +#: guix-git/doc/guix.texi:26190 guix-git/doc/guix.texi:26198 +#: guix-git/doc/guix.texi:26443 guix-git/doc/guix.texi:28576 +#: guix-git/doc/guix.texi:28754 guix-git/doc/guix.texi:28953 +#: guix-git/doc/guix.texi:30442 guix-git/doc/guix.texi:30502 +#: guix-git/doc/guix.texi:30510 guix-git/doc/guix.texi:32218 +#: guix-git/doc/guix.texi:32225 guix-git/doc/guix.texi:32567 +#: guix-git/doc/guix.texi:32645 guix-git/doc/guix.texi:32739 +#: guix-git/doc/guix.texi:32747 guix-git/doc/guix.texi:32783 +#: guix-git/doc/guix.texi:32933 guix-git/doc/guix.texi:32984 +#: guix-git/doc/guix.texi:32993 msgid "Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20036 +#: guix-git/doc/guix.texi:20398 #, no-wrap msgid "{@code{location-access-controls} parameter} method-access-control-list method-access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20038 +#: guix-git/doc/guix.texi:20400 msgid "Access controls for method-specific access to this path." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20042 +#: guix-git/doc/guix.texi:20404 msgid "Available @code{method-access-controls} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20043 +#: guix-git/doc/guix.texi:20405 #, no-wrap msgid "{@code{method-access-controls} parameter} boolean reverse?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20046 +#: guix-git/doc/guix.texi:20408 msgid "If @code{#t}, apply access controls to all methods except the listed methods. Otherwise apply to only the listed methods." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20050 +#: guix-git/doc/guix.texi:20412 #, no-wrap msgid "{@code{method-access-controls} parameter} method-list methods" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20052 +#: guix-git/doc/guix.texi:20414 msgid "Methods to which this access control applies." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20056 +#: guix-git/doc/guix.texi:20418 #, no-wrap msgid "{@code{method-access-controls} parameter} access-control-list access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20059 +#: guix-git/doc/guix.texi:20421 msgid "Access control directives, as a list of strings. Each string should be one directive, such as @samp{\"Order allow,deny\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20065 +#: guix-git/doc/guix.texi:20427 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer log-debug-history" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20069 +#: guix-git/doc/guix.texi:20431 msgid "Specifies the number of debugging messages that are retained for logging if an error occurs in a print job. Debug messages are logged regardless of the LogLevel setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20071 guix-git/doc/guix.texi:20092 -#: guix-git/doc/guix.texi:20099 guix-git/doc/guix.texi:22541 -#: guix-git/doc/guix.texi:24459 guix-git/doc/guix.texi:24474 -#: guix-git/doc/guix.texi:28601 +#: guix-git/doc/guix.texi:20433 guix-git/doc/guix.texi:20454 +#: guix-git/doc/guix.texi:20461 guix-git/doc/guix.texi:22903 +#: guix-git/doc/guix.texi:24821 guix-git/doc/guix.texi:24836 +#: guix-git/doc/guix.texi:28938 msgid "Defaults to @samp{100}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20073 +#: guix-git/doc/guix.texi:20435 #, no-wrap msgid "{@code{cups-configuration} parameter} log-level log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20076 +#: guix-git/doc/guix.texi:20438 msgid "Specifies the level of logging for the ErrorLog file. The value @code{none} stops all logging while @code{debug2} logs everything." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20078 guix-git/doc/guix.texi:24936 +#: guix-git/doc/guix.texi:20440 guix-git/doc/guix.texi:25298 msgid "Defaults to @samp{info}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20080 +#: guix-git/doc/guix.texi:20442 #, no-wrap msgid "{@code{cups-configuration} parameter} log-time-format log-time-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20083 +#: guix-git/doc/guix.texi:20445 msgid "Specifies the format of the date and time in the log files. The value @code{standard} logs whole seconds while @code{usecs} logs microseconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20085 +#: guix-git/doc/guix.texi:20447 msgid "Defaults to @samp{standard}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20087 +#: guix-git/doc/guix.texi:20449 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20090 +#: guix-git/doc/guix.texi:20452 msgid "Specifies the maximum number of simultaneous clients that are allowed by the scheduler." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20094 +#: guix-git/doc/guix.texi:20456 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-clients-per-host" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20097 +#: guix-git/doc/guix.texi:20459 msgid "Specifies the maximum number of simultaneous clients that are allowed from a single address." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20101 +#: guix-git/doc/guix.texi:20463 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-copies" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20104 +#: guix-git/doc/guix.texi:20466 msgid "Specifies the maximum number of copies that a user can print of each job." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20106 +#: guix-git/doc/guix.texi:20468 msgid "Defaults to @samp{9999}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20108 +#: guix-git/doc/guix.texi:20470 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-hold-time" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20112 +#: guix-git/doc/guix.texi:20474 msgid "Specifies the maximum time a job may remain in the @code{indefinite} hold state before it is canceled. A value of 0 disables cancellation of held jobs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20116 +#: guix-git/doc/guix.texi:20478 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20119 +#: guix-git/doc/guix.texi:20481 msgid "Specifies the maximum number of simultaneous jobs that are allowed. Set to 0 to allow an unlimited number of jobs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20121 +#: guix-git/doc/guix.texi:20483 msgid "Defaults to @samp{500}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20123 +#: guix-git/doc/guix.texi:20485 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs-per-printer" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20126 +#: guix-git/doc/guix.texi:20488 msgid "Specifies the maximum number of simultaneous jobs that are allowed per printer. A value of 0 allows up to MaxJobs jobs per printer." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20130 +#: guix-git/doc/guix.texi:20492 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-jobs-per-user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20133 +#: guix-git/doc/guix.texi:20495 msgid "Specifies the maximum number of simultaneous jobs that are allowed per user. A value of 0 allows up to MaxJobs jobs per user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20137 +#: guix-git/doc/guix.texi:20499 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-job-time" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20140 +#: guix-git/doc/guix.texi:20502 msgid "Specifies the maximum time a job may take to print before it is canceled, in seconds. Set to 0 to disable cancellation of ``stuck'' jobs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20142 +#: guix-git/doc/guix.texi:20504 msgid "Defaults to @samp{10800}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20144 +#: guix-git/doc/guix.texi:20506 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer max-log-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20147 +#: guix-git/doc/guix.texi:20509 msgid "Specifies the maximum size of the log files before they are rotated, in bytes. The value 0 disables log rotation." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20149 +#: guix-git/doc/guix.texi:20511 msgid "Defaults to @samp{1048576}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20151 +#: guix-git/doc/guix.texi:20513 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer multiple-operation-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20154 +#: guix-git/doc/guix.texi:20516 msgid "Specifies the maximum amount of time to allow between files in a multiple file print job, in seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20156 guix-git/doc/guix.texi:20367 +#: guix-git/doc/guix.texi:20518 guix-git/doc/guix.texi:20729 msgid "Defaults to @samp{900}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20158 +#: guix-git/doc/guix.texi:20520 #, no-wrap msgid "{@code{cups-configuration} parameter} string page-log-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20163 +#: guix-git/doc/guix.texi:20525 msgid "Specifies the format of PageLog lines. Sequences beginning with percent (@samp{%}) characters are replaced with the corresponding information, while all other characters are copied literally. The following percent sequences are recognized:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20165 +#: guix-git/doc/guix.texi:20527 #, no-wrap msgid "%%" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20167 +#: guix-git/doc/guix.texi:20529 msgid "insert a single percent character" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20168 +#: guix-git/doc/guix.texi:20530 #, no-wrap msgid "%@{name@}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20170 +#: guix-git/doc/guix.texi:20532 msgid "insert the value of the specified IPP attribute" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20171 +#: guix-git/doc/guix.texi:20533 #, no-wrap msgid "%C" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20173 +#: guix-git/doc/guix.texi:20535 msgid "insert the number of copies for the current page" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20174 +#: guix-git/doc/guix.texi:20536 #, no-wrap msgid "%P" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20176 +#: guix-git/doc/guix.texi:20538 msgid "insert the current page number" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20177 +#: guix-git/doc/guix.texi:20539 #, no-wrap msgid "%T" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20179 +#: guix-git/doc/guix.texi:20541 msgid "insert the current date and time in common log format" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20180 +#: guix-git/doc/guix.texi:20542 #, no-wrap msgid "%j" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20182 +#: guix-git/doc/guix.texi:20544 msgid "insert the job ID" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20183 guix-git/doc/guix.texi:22140 +#: guix-git/doc/guix.texi:20545 guix-git/doc/guix.texi:22502 #, no-wrap msgid "%p" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20185 +#: guix-git/doc/guix.texi:20547 msgid "insert the printer name" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20186 guix-git/doc/guix.texi:22163 +#: guix-git/doc/guix.texi:20548 guix-git/doc/guix.texi:22525 #, no-wrap msgid "%u" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20188 +#: guix-git/doc/guix.texi:20550 msgid "insert the username" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20194 +#: guix-git/doc/guix.texi:20556 msgid "A value of the empty string disables page logging. The string @code{%p %u %j %T %P %C %@{job-billing@} %@{job-originating-host-name@} %@{job-name@} %@{media@} %@{sides@}} creates a page log with the standard items." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20198 +#: guix-git/doc/guix.texi:20560 #, no-wrap msgid "{@code{cups-configuration} parameter} environment-variables environment-variables" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20201 +#: guix-git/doc/guix.texi:20563 msgid "Passes the specified environment variable(s) to child processes; a list of strings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20205 +#: guix-git/doc/guix.texi:20567 #, no-wrap msgid "{@code{cups-configuration} parameter} policy-configuration-list policies" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20207 +#: guix-git/doc/guix.texi:20569 msgid "Specifies named access control policies." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20209 +#: guix-git/doc/guix.texi:20571 msgid "Available @code{policy-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20210 +#: guix-git/doc/guix.texi:20572 #, no-wrap msgid "{@code{policy-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20212 +#: guix-git/doc/guix.texi:20574 msgid "Name of the policy." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20214 +#: guix-git/doc/guix.texi:20576 #, no-wrap msgid "{@code{policy-configuration} parameter} string job-private-access" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20224 +#: guix-git/doc/guix.texi:20586 msgid "Specifies an access list for a job's private values. @code{@@ACL} maps to the printer's requesting-user-name-allowed or requesting-user-name-denied values. @code{@@OWNER} maps to the job's owner. @code{@@SYSTEM} maps to the groups listed for the @code{system-group} field of the @code{files-configuration}, which is reified into the @code{cups-files.conf(5)} file. Other possible elements of the access list include specific user names, and @code{@@@var{group}} to indicate members of a specific group. The access list may also be simply @code{all} or @code{default}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20226 guix-git/doc/guix.texi:20248 +#: guix-git/doc/guix.texi:20588 guix-git/doc/guix.texi:20610 msgid "Defaults to @samp{\"@@OWNER @@SYSTEM\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20228 +#: guix-git/doc/guix.texi:20590 #, no-wrap msgid "{@code{policy-configuration} parameter} string job-private-values" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20231 guix-git/doc/guix.texi:20253 +#: guix-git/doc/guix.texi:20593 guix-git/doc/guix.texi:20615 msgid "Specifies the list of job values to make private, or @code{all}, @code{default}, or @code{none}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20234 +#: guix-git/doc/guix.texi:20596 msgid "Defaults to @samp{\"job-name job-originating-host-name job-originating-user-name phone\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20236 +#: guix-git/doc/guix.texi:20598 #, no-wrap msgid "{@code{policy-configuration} parameter} string subscription-private-access" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20246 +#: guix-git/doc/guix.texi:20608 msgid "Specifies an access list for a subscription's private values. @code{@@ACL} maps to the printer's requesting-user-name-allowed or requesting-user-name-denied values. @code{@@OWNER} maps to the job's owner. @code{@@SYSTEM} maps to the groups listed for the @code{system-group} field of the @code{files-configuration}, which is reified into the @code{cups-files.conf(5)} file. Other possible elements of the access list include specific user names, and @code{@@@var{group}} to indicate members of a specific group. The access list may also be simply @code{all} or @code{default}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20250 +#: guix-git/doc/guix.texi:20612 #, no-wrap msgid "{@code{policy-configuration} parameter} string subscription-private-values" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20256 +#: guix-git/doc/guix.texi:20618 msgid "Defaults to @samp{\"notify-events notify-pull-method notify-recipient-uri notify-subscriber-user-name notify-user-data\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20258 +#: guix-git/doc/guix.texi:20620 #, no-wrap msgid "{@code{policy-configuration} parameter} operation-access-control-list access-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20260 +#: guix-git/doc/guix.texi:20622 msgid "Access control by IPP operation." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20265 +#: guix-git/doc/guix.texi:20627 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean-or-non-negative-integer preserve-job-files" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20270 +#: guix-git/doc/guix.texi:20632 msgid "Specifies whether job files (documents) are preserved after a job is printed. If a numeric value is specified, job files are preserved for the indicated number of seconds after printing. Otherwise a boolean value applies indefinitely." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20272 +#: guix-git/doc/guix.texi:20634 msgid "Defaults to @samp{86400}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20274 +#: guix-git/doc/guix.texi:20636 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean-or-non-negative-integer preserve-job-history" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20279 +#: guix-git/doc/guix.texi:20641 msgid "Specifies whether the job history is preserved after a job is printed. If a numeric value is specified, the job history is preserved for the indicated number of seconds after printing. If @code{#t}, the job history is preserved until the MaxJobs limit is reached." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20283 +#: guix-git/doc/guix.texi:20645 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer reload-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20286 +#: guix-git/doc/guix.texi:20648 msgid "Specifies the amount of time to wait for job completion before restarting the scheduler." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20290 +#: guix-git/doc/guix.texi:20652 #, no-wrap msgid "{@code{cups-configuration} parameter} string rip-cache" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20293 +#: guix-git/doc/guix.texi:20655 msgid "Specifies the maximum amount of memory to use when converting documents into bitmaps for a printer." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20295 +#: guix-git/doc/guix.texi:20657 msgid "Defaults to @samp{\"128m\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20297 +#: guix-git/doc/guix.texi:20659 #, no-wrap msgid "{@code{cups-configuration} parameter} string server-admin" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20299 +#: guix-git/doc/guix.texi:20661 msgid "Specifies the email address of the server administrator." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20301 +#: guix-git/doc/guix.texi:20663 msgid "Defaults to @samp{\"root@@localhost.localdomain\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20303 +#: guix-git/doc/guix.texi:20665 #, no-wrap msgid "{@code{cups-configuration} parameter} host-name-list-or-* server-alias" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20311 +#: guix-git/doc/guix.texi:20673 msgid "The ServerAlias directive is used for HTTP Host header validation when clients connect to the scheduler from external interfaces. Using the special name @code{*} can expose your system to known browser-based DNS rebinding attacks, even when accessing sites through a firewall. If the auto-discovery of alternate names does not work, we recommend listing each alternate name with a ServerAlias directive instead of using @code{*}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20313 +#: guix-git/doc/guix.texi:20675 msgid "Defaults to @samp{*}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20315 +#: guix-git/doc/guix.texi:20677 #, no-wrap msgid "{@code{cups-configuration} parameter} string server-name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20317 +#: guix-git/doc/guix.texi:20679 msgid "Specifies the fully-qualified host name of the server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20319 guix-git/doc/guix.texi:25449 -#: guix-git/doc/guix.texi:25494 +#: guix-git/doc/guix.texi:20681 msgid "Defaults to @samp{\"localhost\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20321 +#: guix-git/doc/guix.texi:20683 #, no-wrap msgid "{@code{cups-configuration} parameter} server-tokens server-tokens" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20329 +#: guix-git/doc/guix.texi:20691 msgid "Specifies what information is included in the Server header of HTTP responses. @code{None} disables the Server header. @code{ProductOnly} reports @code{CUPS}. @code{Major} reports @code{CUPS 2}. @code{Minor} reports @code{CUPS 2.0}. @code{Minimal} reports @code{CUPS 2.0.0}. @code{OS} reports @code{CUPS 2.0.0 (@var{uname})} where @var{uname} is the output of the @code{uname} command. @code{Full} reports @code{CUPS 2.0.0 (@var{uname}) IPP/2.0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20331 +#: guix-git/doc/guix.texi:20693 msgid "Defaults to @samp{Minimal}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20333 +#: guix-git/doc/guix.texi:20695 #, no-wrap msgid "{@code{cups-configuration} parameter} multiline-string-list ssl-listen" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20338 +#: guix-git/doc/guix.texi:20700 msgid "Listens on the specified interfaces for encrypted connections. Valid values are of the form @var{address}:@var{port}, where @var{address} is either an IPv6 address enclosed in brackets, an IPv4 address, or @code{*} to indicate all addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20342 +#: guix-git/doc/guix.texi:20704 #, no-wrap msgid "{@code{cups-configuration} parameter} ssl-options ssl-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20352 +#: guix-git/doc/guix.texi:20714 msgid "Sets encryption options. By default, CUPS only supports encryption using TLS v1.0 or higher using known secure cipher suites. Security is reduced when @code{Allow} options are used, and enhanced when @code{Deny} options are used. The @code{AllowRC4} option enables the 128-bit RC4 cipher suites, which are required for some older clients. The @code{AllowSSL3} option enables SSL v3.0, which is required for some older clients that do not support TLS v1.0. The @code{DenyCBC} option disables all CBC cipher suites. The @code{DenyTLS1.0} option disables TLS v1.0 support - this sets the minimum protocol version to TLS v1.1." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20356 +#: guix-git/doc/guix.texi:20718 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean strict-conformance?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20359 +#: guix-git/doc/guix.texi:20721 msgid "Specifies whether the scheduler requires clients to strictly adhere to the IPP specifications." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20363 +#: guix-git/doc/guix.texi:20725 #, no-wrap msgid "{@code{cups-configuration} parameter} non-negative-integer timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20365 +#: guix-git/doc/guix.texi:20727 msgid "Specifies the HTTP request timeout, in seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20370 +#: guix-git/doc/guix.texi:20732 #, no-wrap msgid "{@code{cups-configuration} parameter} boolean web-interface?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20372 +#: guix-git/doc/guix.texi:20734 msgid "Specifies whether the web interface is enabled." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20382 +#: guix-git/doc/guix.texi:20744 msgid "At this point you're probably thinking ``oh dear, Guix manual, I like you but you can stop already with the configuration options''. Indeed. However, one more point: it could be that you have an existing @code{cupsd.conf} that you want to use. In that case, you can pass an @code{opaque-cups-configuration} as the configuration of a @code{cups-service-type}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20384 +#: guix-git/doc/guix.texi:20746 msgid "Available @code{opaque-cups-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20385 +#: guix-git/doc/guix.texi:20747 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} package cups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20389 +#: guix-git/doc/guix.texi:20751 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} string cupsd.conf" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20391 +#: guix-git/doc/guix.texi:20753 msgid "The contents of the @code{cupsd.conf}, as a string." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20393 +#: guix-git/doc/guix.texi:20755 #, no-wrap msgid "{@code{opaque-cups-configuration} parameter} string cups-files.conf" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:20395 +#: guix-git/doc/guix.texi:20757 msgid "The contents of the @code{cups-files.conf} file, as a string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20400 +#: guix-git/doc/guix.texi:20762 msgid "For example, if your @code{cupsd.conf} and @code{cups-files.conf} are in strings of the same name, you could instantiate a CUPS service like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20406 +#: guix-git/doc/guix.texi:20768 #, no-wrap msgid "" "(service cups-service-type\n" @@ -36750,239 +37376,239 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20417 +#: guix-git/doc/guix.texi:20779 msgid "The @code{(gnu services desktop)} module provides services that are usually useful in the context of a ``desktop'' setup---that is, on a machine running a graphical display server, possibly with graphical user interfaces, etc. It also defines services that provide specific desktop environments like GNOME, Xfce or MATE." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20421 +#: guix-git/doc/guix.texi:20783 msgid "To simplify things, the module defines a variable containing the set of services that users typically expect on a machine with a graphical environment and networking:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20422 +#: guix-git/doc/guix.texi:20784 #, no-wrap msgid "{Scheme Variable} %desktop-services" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20425 +#: guix-git/doc/guix.texi:20787 msgid "This is a list of services that builds upon @code{%base-services} and adds or adjusts services for a typical ``desktop'' setup." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20436 +#: guix-git/doc/guix.texi:20798 msgid "In particular, it adds a graphical login manager (@pxref{X Window, @code{gdm-service-type}}), screen lockers, a network management tool (@pxref{Networking Services, @code{network-manager-service-type}}) with modem support (@pxref{Networking Services, @code{modem-manager-service-type}}), energy and color management services, the @code{elogind} login and seat manager, the Polkit privilege service, the GeoClue location service, the AccountsService daemon that allows authorized users change system passwords, an NTP client (@pxref{Networking Services}), the Avahi daemon, and has the name service switch service configured to be able to use @code{nss-mdns} (@pxref{Name Service Switch, mDNS})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20441 +#: guix-git/doc/guix.texi:20803 msgid "The @code{%desktop-services} variable can be used as the @code{services} field of an @code{operating-system} declaration (@pxref{operating-system Reference, @code{services}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20464 +#: guix-git/doc/guix.texi:20826 msgid "Additionally, the @code{gnome-desktop-service-type}, @code{xfce-desktop-service}, @code{mate-desktop-service-type}, @code{lxqt-desktop-service-type} and @code{enlightenment-desktop-service-type} procedures can add GNOME, Xfce, MATE and/or Enlightenment to a system. To ``add GNOME'' means that system-level services like the backlight adjustment helpers and the power management utilities are added to the system, extending @code{polkit} and @code{dbus} appropriately, allowing GNOME to operate with elevated privileges on a limited number of special-purpose system interfaces. Additionally, adding a service made by @code{gnome-desktop-service-type} adds the GNOME metapackage to the system profile. Likewise, adding the Xfce service not only adds the @code{xfce} metapackage to the system profile, but it also gives the Thunar file manager the ability to open a ``root-mode'' file management window, if the user authenticates using the administrator's password via the standard polkit graphical interface. To ``add MATE'' means that @code{polkit} and @code{dbus} are extended appropriately, allowing MATE to operate with elevated privileges on a limited number of special-purpose system interfaces. Additionally, adding a service of type @code{mate-desktop-service-type} adds the MATE metapackage to the system profile. ``Adding Enlightenment'' means that @code{dbus} is extended appropriately, and several of Enlightenment's binaries are set as setuid, allowing Enlightenment's screen locker and other functionality to work as expected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20474 +#: guix-git/doc/guix.texi:20836 msgid "The desktop environments in Guix use the Xorg display server by default. If you'd like to use the newer display server protocol called Wayland, you need to enable Wayland support in GDM (@pxref{wayland-gdm}). Another solution is to use the @code{sddm-service} instead of GDM as the graphical login manager. You should then select the ``GNOME (Wayland)'' session in SDDM@. Alternatively you can also try starting GNOME on Wayland manually from a TTY with the command ``XDG_SESSION_TYPE=wayland exec dbus-run-session gnome-session``. Currently only GNOME has support for Wayland." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20475 +#: guix-git/doc/guix.texi:20837 #, no-wrap msgid "{Scheme Variable} gnome-desktop-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20479 +#: guix-git/doc/guix.texi:20841 msgid "This is the type of the service that adds the @uref{https://www.gnome.org, GNOME} desktop environment. Its value is a @code{gnome-desktop-configuration} object (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20482 +#: guix-git/doc/guix.texi:20844 msgid "This service adds the @code{gnome} package to the system profile, and extends polkit with the actions from @code{gnome-settings-daemon}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20484 +#: guix-git/doc/guix.texi:20846 #, no-wrap msgid "{Data Type} gnome-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20486 +#: guix-git/doc/guix.texi:20848 msgid "Configuration record for the GNOME desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20488 +#: guix-git/doc/guix.texi:20850 #, no-wrap msgid "@code{gnome} (default: @code{gnome})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: table -#: guix-git/doc/guix.texi:20490 +#: guix-git/doc/guix.texi:20852 msgid "The GNOME package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20493 +#: guix-git/doc/guix.texi:20855 #, no-wrap msgid "{Scheme Variable} xfce-desktop-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20497 +#: guix-git/doc/guix.texi:20859 msgid "This is the type of a service to run the @uref{Xfce, https://xfce.org/} desktop environment. Its value is an @code{xfce-desktop-configuration} object (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20502 +#: guix-git/doc/guix.texi:20864 msgid "This service adds the @code{xfce} package to the system profile, and extends polkit with the ability for @code{thunar} to manipulate the file system as root from within a user session, after the user has authenticated with the administrator's password." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20508 +#: guix-git/doc/guix.texi:20870 msgid "Note that @code{xfce4-panel} and its plugin packages should be installed in the same profile to ensure compatibility. When using this service, you should add extra plugins (@code{xfce4-whiskermenu-plugin}, @code{xfce4-weather-plugin}, etc.) to the @code{packages} field of your @code{operating-system}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20510 +#: guix-git/doc/guix.texi:20872 #, no-wrap msgid "{Data Type} xfce-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20512 +#: guix-git/doc/guix.texi:20874 msgid "Configuration record for the Xfce desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20514 +#: guix-git/doc/guix.texi:20876 #, no-wrap msgid "@code{xfce} (default: @code{xfce})" msgstr "@code{xfce}(默认值:@code{xfce})" #. type: table -#: guix-git/doc/guix.texi:20516 +#: guix-git/doc/guix.texi:20878 msgid "The Xfce package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20519 +#: guix-git/doc/guix.texi:20881 #, no-wrap msgid "{Scheme Variable} mate-desktop-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20523 +#: guix-git/doc/guix.texi:20885 msgid "This is the type of the service that runs the @uref{https://mate-desktop.org/, MATE desktop environment}. Its value is a @code{mate-desktop-configuration} object (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20527 +#: guix-git/doc/guix.texi:20889 msgid "This service adds the @code{mate} package to the system profile, and extends polkit with the actions from @code{mate-settings-daemon}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20529 +#: guix-git/doc/guix.texi:20891 #, no-wrap msgid "{Data Type} mate-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20531 +#: guix-git/doc/guix.texi:20893 msgid "Configuration record for the MATE desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20533 +#: guix-git/doc/guix.texi:20895 #, no-wrap msgid "@code{mate} (default: @code{mate})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:20535 +#: guix-git/doc/guix.texi:20897 msgid "The MATE package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20538 +#: guix-git/doc/guix.texi:20900 #, no-wrap msgid "{Scheme Variable} lxqt-desktop-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20542 +#: guix-git/doc/guix.texi:20904 msgid "This is the type of the service that runs the @uref{https://lxqt-project.org, LXQt desktop environment}. Its value is a @code{lxqt-desktop-configuration} object (see below)." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20545 +#: guix-git/doc/guix.texi:20907 msgid "This service adds the @code{lxqt} package to the system profile." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20547 +#: guix-git/doc/guix.texi:20909 #, no-wrap msgid "{Data Type} lxqt-desktop-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20549 +#: guix-git/doc/guix.texi:20911 msgid "Configuration record for the LXQt desktop environment." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20551 +#: guix-git/doc/guix.texi:20913 #, fuzzy, no-wrap msgid "@code{lxqt} (default: @code{lxqt})" msgstr "@code{xfce}(默认值:@code{xfce})" #. type: table -#: guix-git/doc/guix.texi:20553 +#: guix-git/doc/guix.texi:20915 #, fuzzy msgid "The LXQT package to use." msgstr "软件包数据类型。" #. type: deffn -#: guix-git/doc/guix.texi:20556 +#: guix-git/doc/guix.texi:20918 #, no-wrap msgid "{Scheme Variable} enlightenment-desktop-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20559 +#: guix-git/doc/guix.texi:20921 msgid "Return a service that adds the @code{enlightenment} package to the system profile, and extends dbus with actions from @code{efl}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20561 +#: guix-git/doc/guix.texi:20923 #, no-wrap msgid "{Data Type} enlightenment-desktop-service-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20563 +#: guix-git/doc/guix.texi:20925 #, no-wrap msgid "@code{enlightenment} (default: @code{enlightenment})" msgstr "@code{enlightenment}(默认值:@code{enlightenment})" #. type: table -#: guix-git/doc/guix.texi:20565 +#: guix-git/doc/guix.texi:20927 msgid "The enlightenment package to use." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20573 +#: guix-git/doc/guix.texi:20935 msgid "Because the GNOME, Xfce and MATE desktop services pull in so many packages, the default @code{%desktop-services} variable doesn't include any of them by default. To add GNOME, Xfce or MATE, just @code{cons} them onto @code{%desktop-services} in the @code{services} field of your @code{operating-system}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20584 +#: guix-git/doc/guix.texi:20946 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -36997,576 +37623,576 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20588 +#: guix-git/doc/guix.texi:20950 msgid "These desktop environments will then be available as options in the graphical login window." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20592 +#: guix-git/doc/guix.texi:20954 msgid "The actual service definitions included in @code{%desktop-services} and provided by @code{(gnu services dbus)} and @code{(gnu services desktop)} are described below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20593 +#: guix-git/doc/guix.texi:20955 #, no-wrap msgid "{Scheme Procedure} dbus-service [#:dbus @var{dbus}] [#:services '()]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20596 +#: guix-git/doc/guix.texi:20958 msgid "Return a service that runs the ``system bus'', using @var{dbus}, with support for @var{services}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20600 +#: guix-git/doc/guix.texi:20962 msgid "@uref{https://dbus.freedesktop.org/, D-Bus} is an inter-process communication facility. Its system bus is used to allow system services to communicate and to be notified of system-wide events." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20605 +#: guix-git/doc/guix.texi:20967 msgid "@var{services} must be a list of packages that provide an @file{etc/dbus-1/system.d} directory containing additional D-Bus configuration and policy files. For example, to allow avahi-daemon to use the system bus, @var{services} must be equal to @code{(list avahi)}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20607 +#: guix-git/doc/guix.texi:20969 #, no-wrap msgid "{Scheme Procedure} elogind-service [#:config @var{config}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20613 +#: guix-git/doc/guix.texi:20975 msgid "Return a service that runs the @code{elogind} login and seat management daemon. @uref{https://github.com/elogind/elogind, Elogind} exposes a D-Bus interface that can be used to know which users are logged in, know what kind of sessions they have open, suspend the system, inhibit system suspend, reboot the system, and other tasks." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20617 +#: guix-git/doc/guix.texi:20979 msgid "Elogind handles most system-level power events for a computer, for example suspending the system when a lid is closed, or shutting it down when the power button is pressed." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20622 +#: guix-git/doc/guix.texi:20984 msgid "The @var{config} keyword argument specifies the configuration for elogind, and should be the result of an @code{(elogind-configuration (@var{parameter} @var{value})...)} invocation. Available parameters and their default values are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20624 +#: guix-git/doc/guix.texi:20986 #, no-wrap msgid "kill-user-processes?" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20626 guix-git/doc/guix.texi:20646 -#: guix-git/doc/guix.texi:20648 guix-git/doc/guix.texi:20650 -#: guix-git/doc/guix.texi:20662 +#: guix-git/doc/guix.texi:20988 guix-git/doc/guix.texi:21008 +#: guix-git/doc/guix.texi:21010 guix-git/doc/guix.texi:21012 +#: guix-git/doc/guix.texi:21024 msgid "#f" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20626 +#: guix-git/doc/guix.texi:20988 #, no-wrap msgid "kill-only-users" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20628 guix-git/doc/guix.texi:20668 +#: guix-git/doc/guix.texi:20990 guix-git/doc/guix.texi:21030 msgid "()" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20628 +#: guix-git/doc/guix.texi:20990 #, no-wrap msgid "kill-exclude-users" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20630 +#: guix-git/doc/guix.texi:20992 msgid "(\"root\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20630 +#: guix-git/doc/guix.texi:20992 #, no-wrap msgid "inhibit-delay-max-seconds" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20632 +#: guix-git/doc/guix.texi:20994 msgid "5" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20632 +#: guix-git/doc/guix.texi:20994 #, no-wrap msgid "handle-power-key" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20634 +#: guix-git/doc/guix.texi:20996 msgid "poweroff" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20634 +#: guix-git/doc/guix.texi:20996 #, no-wrap msgid "handle-suspend-key" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20636 guix-git/doc/guix.texi:20640 +#: guix-git/doc/guix.texi:20998 guix-git/doc/guix.texi:21002 msgid "suspend" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20636 +#: guix-git/doc/guix.texi:20998 #, no-wrap msgid "handle-hibernate-key" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20638 +#: guix-git/doc/guix.texi:21000 msgid "hibernate" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20638 +#: guix-git/doc/guix.texi:21000 #, no-wrap msgid "handle-lid-switch" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20640 +#: guix-git/doc/guix.texi:21002 #, no-wrap msgid "handle-lid-switch-docked" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20642 guix-git/doc/guix.texi:20644 -#: guix-git/doc/guix.texi:20656 +#: guix-git/doc/guix.texi:21004 guix-git/doc/guix.texi:21006 +#: guix-git/doc/guix.texi:21018 msgid "ignore" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20642 +#: guix-git/doc/guix.texi:21004 #, no-wrap msgid "handle-lid-switch-external-power" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20644 +#: guix-git/doc/guix.texi:21006 #, no-wrap msgid "power-key-ignore-inhibited?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20646 +#: guix-git/doc/guix.texi:21008 #, no-wrap msgid "suspend-key-ignore-inhibited?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20648 +#: guix-git/doc/guix.texi:21010 #, no-wrap msgid "hibernate-key-ignore-inhibited?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20650 +#: guix-git/doc/guix.texi:21012 #, no-wrap msgid "lid-switch-ignore-inhibited?" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20652 guix-git/doc/guix.texi:20664 +#: guix-git/doc/guix.texi:21014 guix-git/doc/guix.texi:21026 msgid "#t" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20652 +#: guix-git/doc/guix.texi:21014 #, no-wrap msgid "holdoff-timeout-seconds" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20654 +#: guix-git/doc/guix.texi:21016 msgid "30" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20654 +#: guix-git/doc/guix.texi:21016 #, no-wrap msgid "idle-action" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20656 +#: guix-git/doc/guix.texi:21018 #, no-wrap msgid "idle-action-seconds" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20658 +#: guix-git/doc/guix.texi:21020 msgid "(* 30 60)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20658 +#: guix-git/doc/guix.texi:21020 #, no-wrap msgid "runtime-directory-size-percent" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20660 +#: guix-git/doc/guix.texi:21022 msgid "10" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20660 +#: guix-git/doc/guix.texi:21022 #, no-wrap msgid "runtime-directory-size" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20662 +#: guix-git/doc/guix.texi:21024 #, no-wrap msgid "remove-ipc?" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20664 +#: guix-git/doc/guix.texi:21026 #, no-wrap msgid "suspend-state" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20666 +#: guix-git/doc/guix.texi:21028 msgid "(\"mem\" \"standby\" \"freeze\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20666 +#: guix-git/doc/guix.texi:21028 #, no-wrap msgid "suspend-mode" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20668 +#: guix-git/doc/guix.texi:21030 #, no-wrap msgid "hibernate-state" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20670 guix-git/doc/guix.texi:20674 +#: guix-git/doc/guix.texi:21032 guix-git/doc/guix.texi:21036 msgid "(\"disk\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20670 +#: guix-git/doc/guix.texi:21032 #, no-wrap msgid "hibernate-mode" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20672 +#: guix-git/doc/guix.texi:21034 msgid "(\"platform\" \"shutdown\")" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20672 +#: guix-git/doc/guix.texi:21034 #, no-wrap msgid "hybrid-sleep-state" msgstr "" #. type: item -#: guix-git/doc/guix.texi:20674 +#: guix-git/doc/guix.texi:21036 #, no-wrap msgid "hybrid-sleep-mode" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20676 +#: guix-git/doc/guix.texi:21038 msgid "(\"suspend\" \"platform\" \"shutdown\")" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20679 +#: guix-git/doc/guix.texi:21041 #, no-wrap msgid "{Scheme Procedure} accountsservice-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20687 +#: guix-git/doc/guix.texi:21049 msgid "[#:accountsservice @var{accountsservice}] Return a service that runs AccountsService, a system service that can list available accounts, change their passwords, and so on. AccountsService integrates with PolicyKit to enable unprivileged users to acquire the capability to modify their system configuration. @uref{https://www.freedesktop.org/wiki/Software/AccountsService/, the accountsservice web site} for more information." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20690 +#: guix-git/doc/guix.texi:21052 msgid "The @var{accountsservice} keyword argument is the @code{accountsservice} package to expose as a service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20692 +#: guix-git/doc/guix.texi:21054 #, no-wrap msgid "{Scheme Procedure} polkit-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20701 +#: guix-git/doc/guix.texi:21063 msgid "[#:polkit @var{polkit}] Return a service that runs the @uref{https://www.freedesktop.org/wiki/Software/polkit/, Polkit privilege management service}, which allows system administrators to grant access to privileged operations in a structured way. By querying the Polkit service, a privileged system component can know when it should grant additional capabilities to ordinary users. For example, an ordinary user can be granted the capability to suspend the system if the user is logged in locally." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20703 +#: guix-git/doc/guix.texi:21065 #, no-wrap msgid "{Scheme Variable} polkit-wheel-service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20708 +#: guix-git/doc/guix.texi:21070 msgid "Service that adds the @code{wheel} group as admins to the Polkit service. This makes it so that users in the @code{wheel} group are queried for their own passwords when performing administrative actions instead of @code{root}'s, similar to the behaviour used by @code{sudo}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20710 +#: guix-git/doc/guix.texi:21072 #, no-wrap msgid "{Scheme Variable} upower-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20714 +#: guix-git/doc/guix.texi:21076 msgid "Service that runs @uref{https://upower.freedesktop.org/, @command{upowerd}}, a system-wide monitor for power consumption and battery levels, with the given configuration settings." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20717 +#: guix-git/doc/guix.texi:21079 msgid "It implements the @code{org.freedesktop.UPower} D-Bus interface, and is notably used by GNOME." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20719 +#: guix-git/doc/guix.texi:21081 #, no-wrap msgid "{Data Type} upower-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20721 +#: guix-git/doc/guix.texi:21083 msgid "Data type representation the configuration for UPower." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20724 +#: guix-git/doc/guix.texi:21086 #, no-wrap msgid "@code{upower} (default: @var{upower})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20726 +#: guix-git/doc/guix.texi:21088 msgid "Package to use for @code{upower}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20727 +#: guix-git/doc/guix.texi:21089 #, no-wrap msgid "@code{watts-up-pro?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20729 +#: guix-git/doc/guix.texi:21091 msgid "Enable the Watts Up Pro device." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20730 +#: guix-git/doc/guix.texi:21092 #, no-wrap msgid "@code{poll-batteries?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20732 +#: guix-git/doc/guix.texi:21094 msgid "Enable polling the kernel for battery level changes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20733 +#: guix-git/doc/guix.texi:21095 #, no-wrap msgid "@code{ignore-lid?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20735 +#: guix-git/doc/guix.texi:21097 msgid "Ignore the lid state, this can be useful if it's incorrect on a device." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20736 +#: guix-git/doc/guix.texi:21098 #, no-wrap msgid "@code{use-percentage-for-policy?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20739 +#: guix-git/doc/guix.texi:21101 msgid "Whether battery percentage based policy should be used. The default is to use the time left, change to @code{#t} to use the percentage." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20740 +#: guix-git/doc/guix.texi:21102 #, no-wrap msgid "@code{percentage-low} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20743 +#: guix-git/doc/guix.texi:21105 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which the battery is considered low." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20744 +#: guix-git/doc/guix.texi:21106 #, no-wrap msgid "@code{percentage-critical} (default: @code{3})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20747 +#: guix-git/doc/guix.texi:21109 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which the battery is considered critical." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20748 +#: guix-git/doc/guix.texi:21110 #, no-wrap msgid "@code{percentage-action} (default: @code{2})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20751 +#: guix-git/doc/guix.texi:21113 msgid "When @code{use-percentage-for-policy?} is @code{#t}, this sets the percentage at which action will be taken." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20752 +#: guix-git/doc/guix.texi:21114 #, no-wrap msgid "@code{time-low} (default: @code{1200})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20755 +#: guix-git/doc/guix.texi:21117 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which the battery is considered low." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20756 +#: guix-git/doc/guix.texi:21118 #, no-wrap msgid "@code{time-critical} (default: @code{300})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20759 +#: guix-git/doc/guix.texi:21121 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which the battery is considered critical." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20760 +#: guix-git/doc/guix.texi:21122 #, no-wrap msgid "@code{time-action} (default: @code{120})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20763 +#: guix-git/doc/guix.texi:21125 msgid "When @code{use-time-for-policy?} is @code{#f}, this sets the time remaining in seconds at which action will be taken." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20764 +#: guix-git/doc/guix.texi:21126 #, no-wrap msgid "@code{critical-power-action} (default: @code{'hybrid-sleep})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20767 +#: guix-git/doc/guix.texi:21129 msgid "The action taken when @code{percentage-action} or @code{time-action} is reached (depending on the configuration of @code{use-percentage-for-policy?})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20769 +#: guix-git/doc/guix.texi:21131 msgid "Possible values are:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20773 +#: guix-git/doc/guix.texi:21135 msgid "'power-off" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20776 +#: guix-git/doc/guix.texi:21138 msgid "'hibernate" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:20779 +#: guix-git/doc/guix.texi:21141 msgid "@code{'hybrid-sleep}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20784 +#: guix-git/doc/guix.texi:21146 #, no-wrap msgid "{Scheme Procedure} udisks-service [#:udisks @var{udisks}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20794 +#: guix-git/doc/guix.texi:21156 msgid "Return a service for @uref{https://udisks.freedesktop.org/docs/latest/, UDisks}, a @dfn{disk management} daemon that provides user interfaces with notifications and ways to mount/unmount disks. Programs that talk to UDisks include the @command{udisksctl} command, part of UDisks, and GNOME Disks. Note that Udisks relies on the @command{mount} command, so it will only be able to use the file-system utilities installed in the system profile. For example if you want to be able to mount NTFS file-systems in read and write fashion, you'll need to have @code{ntfs-3g} installed system-wide." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20796 +#: guix-git/doc/guix.texi:21158 #, no-wrap msgid "{Scheme Variable} colord-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20803 +#: guix-git/doc/guix.texi:21165 msgid "This is the type of the service that runs @command{colord}, a system service with a D-Bus interface to manage the color profiles of input and output devices such as screens and scanners. It is notably used by the GNOME Color Manager graphical tool. See @uref{https://www.freedesktop.org/software/colord/, the colord web site} for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20805 +#: guix-git/doc/guix.texi:21167 #, no-wrap msgid "scanner access" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20806 +#: guix-git/doc/guix.texi:21168 #, no-wrap msgid "{Scheme Variable} sane-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20812 +#: guix-git/doc/guix.texi:21174 msgid "This service provides access to scanners @i{via} @uref{http://www.sane-project.org, SANE} by installing the necessary udev rules. It is included in @code{%desktop-services} (@pxref{Desktop Services}) and relies by default on @code{sane-backends-minimal} package (see below) for hardware support." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20814 +#: guix-git/doc/guix.texi:21176 #, no-wrap msgid "{Scheme Variable} sane-backends-minimal" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20817 +#: guix-git/doc/guix.texi:21179 msgid "The default package which the @code{sane-service-type} installs. It supports many recent scanners." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20819 +#: guix-git/doc/guix.texi:21181 #, no-wrap msgid "{Scheme Variable} sane-backends" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20826 +#: guix-git/doc/guix.texi:21188 msgid "This package includes support for all scanners that @code{sane-backends-minimal} supports, plus older Hewlett-Packard scanners supported by @code{hplip} package. In order to use this on a system which relies on @code{%desktop-services}, you may use @code{modify-services} (@pxref{Service Reference, @code{modify-services}}) as illustrated below:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20835 +#: guix-git/doc/guix.texi:21197 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -37580,7 +38206,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20840 +#: guix-git/doc/guix.texi:21202 #, no-wrap msgid "" "(define %my-desktop-services\n" @@ -37591,7 +38217,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20844 +#: guix-git/doc/guix.texi:21206 #, no-wrap msgid "" "(operating-system\n" @@ -37600,214 +38226,214 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20847 +#: guix-git/doc/guix.texi:21209 #, no-wrap msgid "{Scheme Procedure} geoclue-application name [#:allowed? #t] [#:system? #f] [#:users '()]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20856 +#: guix-git/doc/guix.texi:21218 msgid "Return a configuration allowing an application to access GeoClue location data. @var{name} is the Desktop ID of the application, without the @code{.desktop} part. If @var{allowed?} is true, the application will have access to location information by default. The boolean @var{system?} value indicates whether an application is a system component or not. Finally @var{users} is a list of UIDs of all users for which this application is allowed location info access. An empty users list means that all users are allowed." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20858 +#: guix-git/doc/guix.texi:21220 #, no-wrap msgid "{Scheme Variable} %standard-geoclue-applications" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20865 +#: guix-git/doc/guix.texi:21227 msgid "The standard list of well-known GeoClue application configurations, granting authority to the GNOME date-and-time utility to ask for the current location in order to set the time zone, and allowing the IceCat and Epiphany web browsers to request location information. IceCat and Epiphany both query the user before allowing a web page to know the user's location." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20867 +#: guix-git/doc/guix.texi:21229 #, no-wrap msgid "{Scheme Procedure} geoclue-service [#:colord @var{colord}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20880 +#: guix-git/doc/guix.texi:21242 msgid "[#:whitelist '()] @ [#:wifi-geolocation-url \"https://location.services.mozilla.com/v1/geolocate?key=geoclue\"] @ [#:submit-data? #f] [#:wifi-submission-url \"https://location.services.mozilla.com/v1/submit?key=geoclue\"] @ [#:submission-nick \"geoclue\"] @ [#:applications %standard-geoclue-applications] Return a service that runs the GeoClue location service. This service provides a D-Bus interface to allow applications to request access to a user's physical location, and optionally to add information to online location databases. See @uref{https://wiki.freedesktop.org/www/Software/GeoClue/, the GeoClue web site} for more information." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20882 +#: guix-git/doc/guix.texi:21244 #, no-wrap msgid "{Scheme Procedure} bluetooth-service [#:bluez @var{bluez}] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20889 +#: guix-git/doc/guix.texi:21251 msgid "[@w{#:auto-enable? #f}] Return a service that runs the @command{bluetoothd} daemon, which manages all the Bluetooth devices and provides a number of D-Bus interfaces. When AUTO-ENABLE? is true, the bluetooth controller is powered automatically at boot, which can be useful when using a bluetooth keyboard or mouse." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20891 +#: guix-git/doc/guix.texi:21253 msgid "Users need to be in the @code{lp} group to access the D-Bus service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20893 +#: guix-git/doc/guix.texi:21255 #, no-wrap msgid "{Scheme Variable} gnome-keyring-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20897 +#: guix-git/doc/guix.texi:21259 msgid "This is the type of the service that adds the @uref{https://wiki.gnome.org/Projects/GnomeKeyring, GNOME Keyring}. Its value is a @code{gnome-keyring-configuration} object (see below)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:20901 +#: guix-git/doc/guix.texi:21263 msgid "This service adds the @code{gnome-keyring} package to the system profile and extends PAM with entries using @code{pam_gnome_keyring.so}, unlocking a user's login keyring when they log in or setting its password with passwd." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20903 +#: guix-git/doc/guix.texi:21265 #, no-wrap msgid "{Data Type} gnome-keyring-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20905 +#: guix-git/doc/guix.texi:21267 msgid "Configuration record for the GNOME Keyring service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20907 +#: guix-git/doc/guix.texi:21269 #, fuzzy, no-wrap msgid "@code{keyring} (default: @code{gnome-keyring})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: table -#: guix-git/doc/guix.texi:20909 +#: guix-git/doc/guix.texi:21271 msgid "The GNOME keyring package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:20910 +#: guix-git/doc/guix.texi:21272 #, fuzzy, no-wrap msgid "pam-services" msgstr "基础服务" #. type: table -#: guix-git/doc/guix.texi:20915 +#: guix-git/doc/guix.texi:21277 msgid "A list of @code{(@var{service} . @var{kind})} pairs denoting PAM services to extend, where @var{service} is the name of an existing service to extend and @var{kind} is one of @code{login} or @code{passwd}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20921 +#: guix-git/doc/guix.texi:21283 msgid "If @code{login} is given, it adds an optional @code{pam_gnome_keyring.so} to the auth block without arguments and to the session block with @code{auto_start}. If @code{passwd} is given, it adds an optional @code{pam_gnome_keyring.so} to the password block without arguments." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20924 +#: guix-git/doc/guix.texi:21286 msgid "By default, this field contains ``gdm-password'' with the value @code{login} and ``passwd'' is with the value @code{passwd}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20931 +#: guix-git/doc/guix.texi:21293 #, no-wrap msgid "sound support" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20932 +#: guix-git/doc/guix.texi:21294 #, no-wrap msgid "ALSA" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:20933 +#: guix-git/doc/guix.texi:21295 #, no-wrap msgid "PulseAudio, sound support" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20938 +#: guix-git/doc/guix.texi:21300 msgid "The @code{(gnu services sound)} module provides a service to configure the Advanced Linux Sound Architecture (ALSA) system, which makes PulseAudio the preferred ALSA output driver." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20939 +#: guix-git/doc/guix.texi:21301 #, no-wrap msgid "{Scheme Variable} alsa-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20944 +#: guix-git/doc/guix.texi:21306 msgid "This is the type for the @uref{https://alsa-project.org/, Advanced Linux Sound Architecture} (ALSA) system, which generates the @file{/etc/asound.conf} configuration file. The value for this type is a @command{alsa-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:20947 +#: guix-git/doc/guix.texi:21309 #, no-wrap msgid "(service alsa-service-type)\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:20950 +#: guix-git/doc/guix.texi:21312 msgid "See below for details about @code{alsa-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20952 +#: guix-git/doc/guix.texi:21314 #, no-wrap msgid "{Data Type} alsa-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:20954 +#: guix-git/doc/guix.texi:21316 msgid "Data type representing the configuration for @code{alsa-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20956 +#: guix-git/doc/guix.texi:21318 #, no-wrap msgid "@code{alsa-plugins} (default: @var{alsa-plugins})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20958 +#: guix-git/doc/guix.texi:21320 msgid "@code{alsa-plugins} package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20959 +#: guix-git/doc/guix.texi:21321 #, no-wrap msgid "@code{pulseaudio?} (default: @var{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20962 +#: guix-git/doc/guix.texi:21324 msgid "Whether ALSA applications should transparently be made to use the @uref{https://www.pulseaudio.org/, PulseAudio} sound server." msgstr "" #. type: table -#: guix-git/doc/guix.texi:20966 +#: guix-git/doc/guix.texi:21328 msgid "Using PulseAudio allows you to run several sound-producing applications at the same time and to individual control them @i{via} @command{pavucontrol}, among other things." msgstr "" #. type: item -#: guix-git/doc/guix.texi:20967 +#: guix-git/doc/guix.texi:21329 #, no-wrap msgid "@code{extra-options} (default: @var{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:20969 +#: guix-git/doc/guix.texi:21331 msgid "String to append to the @file{/etc/asound.conf} file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:20975 +#: guix-git/doc/guix.texi:21337 msgid "Individual users who want to override the system configuration of ALSA can do it with the @file{~/.asoundrc} file:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:20981 +#: guix-git/doc/guix.texi:21343 #, no-wrap msgid "" "# In guix, we have to specify the absolute path for plugins.\n" @@ -37818,7 +38444,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:20990 +#: guix-git/doc/guix.texi:21352 #, no-wrap msgid "" "# Routing ALSA to jack:\n" @@ -37833,7 +38459,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:20996 +#: guix-git/doc/guix.texi:21358 #, no-wrap msgid "" " capture_ports @{\n" @@ -37845,7 +38471,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:21003 +#: guix-git/doc/guix.texi:21365 #, no-wrap msgid "" "pcm.!default @{\n" @@ -37857,104 +38483,104 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21007 +#: guix-git/doc/guix.texi:21369 msgid "See @uref{https://www.alsa-project.org/main/index.php/Asoundrc} for the details." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21008 +#: guix-git/doc/guix.texi:21370 #, no-wrap msgid "{Scheme Variable} pulseaudio-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21012 +#: guix-git/doc/guix.texi:21374 msgid "This is the type for the @uref{https://www.pulseaudio.org/, PulseAudio} sound server. It exists to allow system overrides of the default settings via @code{pulseaudio-configuration}, see below." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:21018 +#: guix-git/doc/guix.texi:21380 msgid "This service overrides per-user configuration files. If you want PulseAudio to honor configuration files in @file{~/.config/pulse} you have to unset the environment variables @env{PULSE_CONFIG} and @env{PULSE_CLIENTCONFIG} in your @file{~/.bash_profile}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:21026 +#: guix-git/doc/guix.texi:21388 msgid "This service on its own does not ensure, that the @code{pulseaudio} package exists on your machine. It merely adds configuration files for it, as detailed below. In the (admittedly unlikely) case, that you find yourself without a @code{pulseaudio} package, consider enabling it through the @code{alsa-service-type} above." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21029 +#: guix-git/doc/guix.texi:21391 #, fuzzy, no-wrap msgid "{Data Type} pulseaudio-configuration" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:21031 +#: guix-git/doc/guix.texi:21393 msgid "Data type representing the configuration for @code{pulseaudio-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21033 +#: guix-git/doc/guix.texi:21395 #, fuzzy, no-wrap msgid "@code{client-conf} (default: @code{'()})" msgstr "@code{includes}(默认值:@code{'()})" #. type: table -#: guix-git/doc/guix.texi:21038 -msgid "List of settings to set in @file{client.conf}. Accepts a list of strings or a symbol-value pairs. A string will be inserted as-is with a newline added. A pair will be formatted as ``key = value'', again with a newline added." +#: guix-git/doc/guix.texi:21400 +msgid "List of settings to set in @file{client.conf}. Accepts a list of strings or symbol-value pairs. A string will be inserted as-is with a newline added. A pair will be formatted as ``key = value'', again with a newline added." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21039 +#: guix-git/doc/guix.texi:21401 #, fuzzy, no-wrap msgid "@code{daemon-conf} (default: @code{'((flat-volumes . no))})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:21042 +#: guix-git/doc/guix.texi:21404 msgid "List of settings to set in @file{daemon.conf}, formatted just like @var{client-conf}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21043 +#: guix-git/doc/guix.texi:21405 #, no-wrap msgid "@code{script-file} (default: @code{(file-append pulseaudio \"/etc/pulse/default.pa\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21045 +#: guix-git/doc/guix.texi:21407 msgid "Script file to use as @file{default.pa}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21046 +#: guix-git/doc/guix.texi:21408 #, no-wrap msgid "@code{system-script-file} (default: @code{(file-append pulseaudio \"/etc/pulse/system.pa\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21048 +#: guix-git/doc/guix.texi:21410 msgid "Script file to use as @file{system.pa}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21051 +#: guix-git/doc/guix.texi:21413 #, no-wrap msgid "{Scheme Variable} ladspa-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21054 +#: guix-git/doc/guix.texi:21416 msgid "This service sets the @var{LADSPA_PATH} variable, so that programs, which respect it, e.g. PulseAudio, can load LADSPA plugins." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21057 +#: guix-git/doc/guix.texi:21419 msgid "The following example will setup the service to enable modules from the @code{swh-plugins} package:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21061 +#: guix-git/doc/guix.texi:21423 #, no-wrap msgid "" "(service ladspa-service-type\n" @@ -37962,34 +38588,34 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21065 +#: guix-git/doc/guix.texi:21427 msgid "See @uref{http://plugin.org.uk/ladspa-swh/docs/ladspa-swh.html} for the details." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21072 +#: guix-git/doc/guix.texi:21434 #, no-wrap msgid "SQL" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21074 +#: guix-git/doc/guix.texi:21436 msgid "The @code{(gnu services databases)} module provides the following services." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21075 +#: guix-git/doc/guix.texi:21437 #, no-wrap msgid "PostgreSQL" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21079 +#: guix-git/doc/guix.texi:21441 msgid "The following example describes a PostgreSQL service with the default configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21084 +#: guix-git/doc/guix.texi:21446 #, no-wrap msgid "" "(service postgresql-service-type\n" @@ -37998,17 +38624,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21090 +#: guix-git/doc/guix.texi:21452 msgid "If the services fails to start, it may be due to an incompatible cluster already present in @var{data-directory}. Adjust it (or, if you don't need the cluster anymore, delete @var{data-directory}), then restart the service." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21097 +#: guix-git/doc/guix.texi:21459 msgid "Peer authentication is used by default and the @code{postgres} user account has no shell, which prevents the direct execution of @code{psql} commands as this user. To use @code{psql}, you can temporarily log in as @code{postgres} using a shell, create a PostgreSQL superuser with the same name as one of the system users and then create the associated database." msgstr "" #. type: example -#: guix-git/doc/guix.texi:21102 +#: guix-git/doc/guix.texi:21464 #, no-wrap msgid "" "sudo -u postgres -s /bin/sh\n" @@ -38017,101 +38643,101 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21104 +#: guix-git/doc/guix.texi:21466 #, no-wrap msgid "{Data Type} postgresql-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21107 +#: guix-git/doc/guix.texi:21469 msgid "Data type representing the configuration for the @code{postgresql-service-type}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:21109 +#: guix-git/doc/guix.texi:21471 #, no-wrap msgid "postgresql" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21111 +#: guix-git/doc/guix.texi:21473 msgid "PostgreSQL package to use for the service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21112 +#: guix-git/doc/guix.texi:21474 #, fuzzy, no-wrap msgid "@code{port} (default: @code{5432})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:21114 +#: guix-git/doc/guix.texi:21476 msgid "Port on which PostgreSQL should listen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21117 +#: guix-git/doc/guix.texi:21479 msgid "Locale to use as the default when creating the database cluster." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21118 +#: guix-git/doc/guix.texi:21480 #, fuzzy, no-wrap msgid "@code{config-file} (default: @code{(postgresql-config-file)})" msgstr "@code{zonefile-load}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:21122 +#: guix-git/doc/guix.texi:21484 msgid "The configuration file to use when running PostgreSQL@. The default behaviour uses the postgresql-config-file record with the default values for the fields." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21123 +#: guix-git/doc/guix.texi:21485 #, fuzzy, no-wrap msgid "@code{log-directory} (default: @code{\"/var/log/postgresql\"})" msgstr "@code{daemon-socket}(默认值:@code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:21127 +#: guix-git/doc/guix.texi:21489 msgid "The directory where @command{pg_ctl} output will be written in a file named @code{\"pg_ctl.log\"}. This file can be useful to debug PostgreSQL configuration errors for instance." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21128 +#: guix-git/doc/guix.texi:21490 #, fuzzy, no-wrap msgid "@code{data-directory} (default: @code{\"/var/lib/postgresql/data\"})" msgstr "@code{daemon-socket}(默认值:@code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:21130 +#: guix-git/doc/guix.texi:21492 msgid "Directory in which to store the data." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21131 +#: guix-git/doc/guix.texi:21493 #, fuzzy, no-wrap msgid "@code{extension-packages} (default: @code{'()})" msgstr "@code{includes}(默认值:@code{'()})" #. type: cindex -#: guix-git/doc/guix.texi:21132 +#: guix-git/doc/guix.texi:21494 #, no-wrap msgid "postgresql extension-packages" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21137 +#: guix-git/doc/guix.texi:21499 msgid "Additional extensions are loaded from packages listed in @var{extension-packages}. Extensions are available at runtime. For instance, to create a geographic database using the @code{postgis} extension, a user can configure the postgresql-service as in this example:" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21138 +#: guix-git/doc/guix.texi:21500 #, no-wrap msgid "postgis" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21141 +#: guix-git/doc/guix.texi:21503 #, no-wrap msgid "" "(use-package-modules databases geo)\n" @@ -38119,7 +38745,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21154 +#: guix-git/doc/guix.texi:21516 #, no-wrap msgid "" "(operating-system\n" @@ -38137,12 +38763,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21158 +#: guix-git/doc/guix.texi:21520 msgid "Then the extension becomes visible and you can initialise an empty geographic database in this way:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:21165 +#: guix-git/doc/guix.texi:21527 #, no-wrap msgid "" "psql -U postgres\n" @@ -38153,23 +38779,23 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21170 +#: guix-git/doc/guix.texi:21532 msgid "There is no need to add this field for contrib extensions such as hstore or dblink as they are already loadable by postgresql. This field is only required to add extensions provided by other packages." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21174 +#: guix-git/doc/guix.texi:21536 #, no-wrap msgid "{Data Type} postgresql-config-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21180 +#: guix-git/doc/guix.texi:21542 msgid "Data type representing the PostgreSQL configuration file. As shown in the following example, this can be used to customize the configuration of PostgreSQL@. Note that you can use any G-expression or filename in place of this record, if you already have a configuration file you'd like to use for example." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21200 +#: guix-git/doc/guix.texi:21562 #, no-wrap msgid "" "(service postgresql-service-type\n" @@ -38193,77 +38819,77 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:21203 +#: guix-git/doc/guix.texi:21565 #, fuzzy, no-wrap msgid "@code{log-destination} (default: @code{\"syslog\"})" msgstr "@code{authentication-hook}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:21206 +#: guix-git/doc/guix.texi:21568 msgid "The logging method to use for PostgreSQL@. Multiple values are accepted, separated by commas." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21207 +#: guix-git/doc/guix.texi:21569 #, fuzzy, no-wrap msgid "@code{hba-file} (default: @code{%default-postgres-hba})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:21210 +#: guix-git/doc/guix.texi:21572 msgid "Filename or G-expression for the host-based authentication configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21211 +#: guix-git/doc/guix.texi:21573 #, fuzzy, no-wrap msgid "@code{ident-file} (default: @code{%default-postgres-ident})" msgstr "@code{enlightenment}(默认值:@code{enlightenment})" #. type: table -#: guix-git/doc/guix.texi:21213 +#: guix-git/doc/guix.texi:21575 msgid "Filename or G-expression for the user name mapping configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21214 +#: guix-git/doc/guix.texi:21576 #, fuzzy, no-wrap msgid "@code{socket-directory} (default: @code{\"/var/run/postgresql\"})" msgstr "@code{daemon-socket}(默认值:@code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:21219 +#: guix-git/doc/guix.texi:21581 msgid "Specifies the directory of the Unix-domain socket(s) on which PostgreSQL is to listen for connections from client applications. If set to @code{\"\"} PostgreSQL does not listen on any Unix-domain sockets, in which case only TCP/IP sockets can be used to connect to the server." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21222 +#: guix-git/doc/guix.texi:21584 msgid "By default, the @code{#false} value means the PostgreSQL default value will be used, which is currently @samp{/tmp}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21227 +#: guix-git/doc/guix.texi:21589 msgid "List of additional keys and values to include in the PostgreSQL config file. Each entry in the list should be a list where the first element is the key, and the remaining elements are the values." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21233 +#: guix-git/doc/guix.texi:21595 msgid "The values can be numbers, booleans or strings and will be mapped to PostgreSQL parameters types @code{Boolean}, @code{String}, @code{Numeric}, @code{Numeric with Unit} and @code{Enumerated} described @uref{https://www.postgresql.org/docs/current/config-setting.html, here}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21237 +#: guix-git/doc/guix.texi:21599 #, no-wrap msgid "{Scheme Variable} postgresql-role-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21240 +#: guix-git/doc/guix.texi:21602 msgid "This service allows to create PostgreSQL roles and databases after PostgreSQL service start. Here is an example of its use." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21248 +#: guix-git/doc/guix.texi:21610 #, no-wrap msgid "" "(service postgresql-role-service-type\n" @@ -38275,12 +38901,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21252 +#: guix-git/doc/guix.texi:21614 msgid "This service can be extended with extra roles, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21258 +#: guix-git/doc/guix.texi:21620 #, no-wrap msgid "" "(service-extension postgresql-role-service-type\n" @@ -38290,402 +38916,402 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21261 +#: guix-git/doc/guix.texi:21623 #, fuzzy, no-wrap msgid "{Data Type} postgresql-role" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:21267 +#: guix-git/doc/guix.texi:21629 msgid "PostgreSQL manages database access permissions using the concept of roles. A role can be thought of as either a database user, or a group of database users, depending on how the role is set up. Roles can own database objects (for example, tables) and can assign privileges on those objects to other roles to control who has access to which objects." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21271 +#: guix-git/doc/guix.texi:21633 #, fuzzy msgid "The role name." msgstr "仓库monad" #. type: item -#: guix-git/doc/guix.texi:21272 +#: guix-git/doc/guix.texi:21634 #, fuzzy, no-wrap msgid "@code{permissions} (default: @code{'(createdb login)})" msgstr "@code{includes}(默认值:@code{'()})" #. type: table -#: guix-git/doc/guix.texi:21276 +#: guix-git/doc/guix.texi:21638 msgid "The role permissions list. Supported permissions are @code{bypassrls}, @code{createdb}, @code{createrole}, @code{login}, @code{replication} and @code{superuser}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21277 +#: guix-git/doc/guix.texi:21639 #, fuzzy, no-wrap msgid "@code{create-database?} (default: @code{#f})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:21279 +#: guix-git/doc/guix.texi:21641 msgid "Whether to create a database with the same name as the role." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21283 +#: guix-git/doc/guix.texi:21645 #, fuzzy, no-wrap msgid "{Data Type} postgresql-role-configuration" msgstr "管理操作系统配置。" #. type: deftp -#: guix-git/doc/guix.texi:21286 +#: guix-git/doc/guix.texi:21648 #, fuzzy msgid "Data type representing the configuration of @var{postgresql-role-service-type}." msgstr "管理操作系统配置。" #. type: item -#: guix-git/doc/guix.texi:21288 +#: guix-git/doc/guix.texi:21650 #, fuzzy, no-wrap msgid "@code{host} (default: @code{\"/var/run/postgresql\"})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:21290 +#: guix-git/doc/guix.texi:21652 msgid "The PostgreSQL host to connect to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21291 +#: guix-git/doc/guix.texi:21653 #, fuzzy, no-wrap msgid "@code{log} (default: @code{\"/var/log/postgresql_roles.log\"})" msgstr "@code{private-key}(默认值:@file{~root/.ssh/id_rsa})" #. type: table -#: guix-git/doc/guix.texi:21293 +#: guix-git/doc/guix.texi:21655 #, fuzzy msgid "File name of the log file." msgstr "远程机器的主机名。" #. type: item -#: guix-git/doc/guix.texi:21294 +#: guix-git/doc/guix.texi:21656 #, fuzzy, no-wrap msgid "@code{roles} (default: @code{'()})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:21296 +#: guix-git/doc/guix.texi:21658 msgid "The initial PostgreSQL roles to create." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21299 +#: guix-git/doc/guix.texi:21661 #, no-wrap msgid "MariaDB/MySQL" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21301 +#: guix-git/doc/guix.texi:21663 #, no-wrap msgid "{Scheme Variable} mysql-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21305 +#: guix-git/doc/guix.texi:21667 msgid "This is the service type for a MySQL or MariaDB database server. Its value is a @code{mysql-configuration} object that specifies which package to use, as well as various settings for the @command{mysqld} daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21307 +#: guix-git/doc/guix.texi:21669 #, no-wrap msgid "{Data Type} mysql-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21309 +#: guix-git/doc/guix.texi:21671 #, fuzzy msgid "Data type representing the configuration of @var{mysql-service-type}." msgstr "管理操作系统配置。" #. type: item -#: guix-git/doc/guix.texi:21311 +#: guix-git/doc/guix.texi:21673 #, no-wrap msgid "@code{mysql} (default: @var{mariadb})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21314 +#: guix-git/doc/guix.texi:21676 msgid "Package object of the MySQL database server, can be either @var{mariadb} or @var{mysql}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21317 +#: guix-git/doc/guix.texi:21679 msgid "For MySQL, a temporary root password will be displayed at activation time. For MariaDB, the root password is empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21318 guix-git/doc/guix.texi:25138 +#: guix-git/doc/guix.texi:21680 guix-git/doc/guix.texi:25500 #, no-wrap msgid "@code{bind-address} (default: @code{\"127.0.0.1\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21321 +#: guix-git/doc/guix.texi:21683 msgid "The IP on which to listen for network connections. Use @code{\"0.0.0.0\"} to bind to all available network interfaces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21322 +#: guix-git/doc/guix.texi:21684 #, no-wrap msgid "@code{port} (default: @code{3306})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21324 +#: guix-git/doc/guix.texi:21686 msgid "TCP port on which the database server listens for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21325 +#: guix-git/doc/guix.texi:21687 #, fuzzy, no-wrap msgid "@code{socket} (default: @code{\"/run/mysqld/mysqld.sock\"})" msgstr "@code{daemon-socket}(默认值:@code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:21327 +#: guix-git/doc/guix.texi:21689 msgid "Socket file to use for local (non-network) connections." msgstr "" #. type: table -#: guix-git/doc/guix.texi:21330 +#: guix-git/doc/guix.texi:21692 msgid "Additional settings for the @file{my.cnf} configuration file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21331 +#: guix-git/doc/guix.texi:21693 #, fuzzy, no-wrap msgid "@code{extra-environment} (default: @code{#~'()})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:21333 +#: guix-git/doc/guix.texi:21695 msgid "List of environment variables passed to the @command{mysqld} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21334 +#: guix-git/doc/guix.texi:21696 #, fuzzy, no-wrap msgid "@code{auto-upgrade?} (default: @code{#t})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:21339 +#: guix-git/doc/guix.texi:21701 msgid "Whether to automatically run @command{mysql_upgrade} after starting the service. This is necessary to upgrade the @dfn{system schema} after ``major'' updates (such as switching from MariaDB 10.4 to 10.5), but can be disabled if you would rather do that manually." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21343 +#: guix-git/doc/guix.texi:21705 #, no-wrap msgid "Memcached" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21345 +#: guix-git/doc/guix.texi:21707 #, no-wrap msgid "{Scheme Variable} memcached-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21349 +#: guix-git/doc/guix.texi:21711 msgid "This is the service type for the @uref{https://memcached.org/, Memcached} service, which provides a distributed in memory cache. The value for the service type is a @code{memcached-configuration} object." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21353 +#: guix-git/doc/guix.texi:21715 #, no-wrap msgid "(service memcached-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21355 +#: guix-git/doc/guix.texi:21717 #, no-wrap msgid "{Data Type} memcached-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21357 +#: guix-git/doc/guix.texi:21719 msgid "Data type representing the configuration of memcached." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21359 +#: guix-git/doc/guix.texi:21721 #, no-wrap msgid "@code{memcached} (default: @code{memcached})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21361 +#: guix-git/doc/guix.texi:21723 msgid "The Memcached package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21362 +#: guix-git/doc/guix.texi:21724 #, no-wrap msgid "@code{interfaces} (default: @code{'(\"0.0.0.0\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21364 +#: guix-git/doc/guix.texi:21726 msgid "Network interfaces on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21365 +#: guix-git/doc/guix.texi:21727 #, no-wrap msgid "@code{tcp-port} (default: @code{11211})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21367 +#: guix-git/doc/guix.texi:21729 msgid "Port on which to accept connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21368 +#: guix-git/doc/guix.texi:21730 #, no-wrap msgid "@code{udp-port} (default: @code{11211})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21371 +#: guix-git/doc/guix.texi:21733 msgid "Port on which to accept UDP connections on, a value of 0 will disable listening on a UDP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21372 +#: guix-git/doc/guix.texi:21734 #, no-wrap msgid "@code{additional-options} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21374 +#: guix-git/doc/guix.texi:21736 msgid "Additional command line options to pass to @code{memcached}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21377 +#: guix-git/doc/guix.texi:21739 #, no-wrap msgid "Redis" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21379 +#: guix-git/doc/guix.texi:21741 #, no-wrap msgid "{Scheme Variable} redis-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:21382 +#: guix-git/doc/guix.texi:21744 msgid "This is the service type for the @uref{https://redis.io/, Redis} key/value store, whose value is a @code{redis-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21384 +#: guix-git/doc/guix.texi:21746 #, no-wrap msgid "{Data Type} redis-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:21386 +#: guix-git/doc/guix.texi:21748 msgid "Data type representing the configuration of redis." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21388 +#: guix-git/doc/guix.texi:21750 #, no-wrap msgid "@code{redis} (default: @code{redis})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21390 +#: guix-git/doc/guix.texi:21752 msgid "The Redis package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21391 +#: guix-git/doc/guix.texi:21753 #, no-wrap msgid "@code{bind} (default: @code{\"127.0.0.1\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21393 +#: guix-git/doc/guix.texi:21755 msgid "Network interface on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21394 +#: guix-git/doc/guix.texi:21756 #, no-wrap msgid "@code{port} (default: @code{6379})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21397 +#: guix-git/doc/guix.texi:21759 msgid "Port on which to accept connections on, a value of 0 will disable listening on a TCP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:21398 +#: guix-git/doc/guix.texi:21760 #, no-wrap msgid "@code{working-directory} (default: @code{\"/var/lib/redis\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:21400 +#: guix-git/doc/guix.texi:21762 msgid "Directory in which to store the database and related files." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21406 +#: guix-git/doc/guix.texi:21768 #, no-wrap msgid "mail" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:21407 +#: guix-git/doc/guix.texi:21769 #, no-wrap msgid "email" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21412 +#: guix-git/doc/guix.texi:21774 msgid "The @code{(gnu services mail)} module provides Guix service definitions for email services: IMAP, POP3, and LMTP servers, as well as mail transport agents (MTAs). Lots of acronyms! These services are detailed in the subsections below." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:21413 +#: guix-git/doc/guix.texi:21775 #, no-wrap msgid "Dovecot Service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21415 +#: guix-git/doc/guix.texi:21777 #, no-wrap msgid "{Scheme Procedure} dovecot-service [#:config (dovecot-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:21417 +#: guix-git/doc/guix.texi:21779 msgid "Return a service that runs the Dovecot IMAP/POP3/LMTP mail server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21427 +#: guix-git/doc/guix.texi:21789 msgid "By default, Dovecot does not need much configuration; the default configuration object created by @code{(dovecot-configuration)} will suffice if your mail is delivered to @code{~/Maildir}. A self-signed certificate will be generated for TLS-protected connections, though Dovecot will also listen on cleartext ports by default. There are a number of options, though, which mail administrators might need to change, and as is the case with other services, Guix allows the system administrator to specify these parameters via a uniform Scheme interface." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21430 +#: guix-git/doc/guix.texi:21792 msgid "For example, to specify that mail is located at @code{maildir~/.mail}, one would instantiate the Dovecot service like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:21435 +#: guix-git/doc/guix.texi:21797 #, no-wrap msgid "" "(dovecot-service #:config\n" @@ -38694,2433 +39320,2433 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21443 +#: guix-git/doc/guix.texi:21805 msgid "The available configuration parameters follow. Each parameter definition is preceded by its type; for example, @samp{string-list foo} indicates that the @code{foo} parameter should be specified as a list of strings. There is also a way to specify the configuration as a string, if you have an old @code{dovecot.conf} file that you want to port over from some other system; see the end for more details." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:21453 +#: guix-git/doc/guix.texi:21815 msgid "Available @code{dovecot-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21454 +#: guix-git/doc/guix.texi:21816 #, no-wrap msgid "{@code{dovecot-configuration} parameter} package dovecot" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21456 guix-git/doc/guix.texi:22805 +#: guix-git/doc/guix.texi:21818 guix-git/doc/guix.texi:23167 msgid "The dovecot package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21458 +#: guix-git/doc/guix.texi:21820 #, no-wrap msgid "{@code{dovecot-configuration} parameter} comma-separated-string-list listen" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21464 +#: guix-git/doc/guix.texi:21826 msgid "A list of IPs or hosts where to listen for connections. @samp{*} listens on all IPv4 interfaces, @samp{::} listens on all IPv6 interfaces. If you want to specify non-default ports or anything more complex, customize the address and port fields of the @samp{inet-listener} of the specific services you are interested in." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21466 +#: guix-git/doc/guix.texi:21828 #, no-wrap msgid "{@code{dovecot-configuration} parameter} protocol-configuration-list protocols" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21469 +#: guix-git/doc/guix.texi:21831 msgid "List of protocols we want to serve. Available protocols include @samp{imap}, @samp{pop3}, and @samp{lmtp}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21471 +#: guix-git/doc/guix.texi:21833 msgid "Available @code{protocol-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21472 +#: guix-git/doc/guix.texi:21834 #, no-wrap msgid "{@code{protocol-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21474 +#: guix-git/doc/guix.texi:21836 msgid "The name of the protocol." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21476 +#: guix-git/doc/guix.texi:21838 #, no-wrap msgid "{@code{protocol-configuration} parameter} string auth-socket-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21480 +#: guix-git/doc/guix.texi:21842 msgid "UNIX socket path to the master authentication server to find users. This is used by imap (for shared users) and lda. It defaults to @samp{\"/var/run/dovecot/auth-userdb\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21482 +#: guix-git/doc/guix.texi:21844 #, no-wrap msgid "{@code{protocol-configuration} parameter} boolean imap-metadata?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21487 +#: guix-git/doc/guix.texi:21849 msgid "Whether to enable the @code{IMAP METADATA} extension as defined in @uref{https://tools.ietf.org/html/rfc5464,RFC@tie{}5464}, which provides a means for clients to set and retrieve per-mailbox, per-user metadata and annotations over IMAP." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21490 +#: guix-git/doc/guix.texi:21852 msgid "If this is @samp{#t}, you must also specify a dictionary @i{via} the @code{mail-attribute-dict} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21495 +#: guix-git/doc/guix.texi:21857 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list managesieve-notify-capabilities" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21500 +#: guix-git/doc/guix.texi:21862 msgid "Which NOTIFY capabilities to report to clients that first connect to the ManageSieve service, before authentication. These may differ from the capabilities offered to authenticated users. If this field is left empty, report what the Sieve interpreter supports by default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21504 +#: guix-git/doc/guix.texi:21866 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list managesieve-sieve-capability" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21509 +#: guix-git/doc/guix.texi:21871 msgid "Which SIEVE capabilities to report to clients that first connect to the ManageSieve service, before authentication. These may differ from the capabilities offered to authenticated users. If this field is left empty, report what the Sieve interpreter supports by default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21514 +#: guix-git/doc/guix.texi:21876 #, no-wrap msgid "{@code{protocol-configuration} parameter} space-separated-string-list mail-plugins" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21516 +#: guix-git/doc/guix.texi:21878 msgid "Space separated list of plugins to load." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21518 +#: guix-git/doc/guix.texi:21880 #, no-wrap msgid "{@code{protocol-configuration} parameter} non-negative-integer mail-max-userip-connections" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21522 +#: guix-git/doc/guix.texi:21884 msgid "Maximum number of IMAP connections allowed for a user from each IP address. NOTE: The username is compared case-sensitively. Defaults to @samp{10}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21526 +#: guix-git/doc/guix.texi:21888 #, no-wrap msgid "{@code{dovecot-configuration} parameter} service-configuration-list services" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21530 +#: guix-git/doc/guix.texi:21892 msgid "List of services to enable. Available services include @samp{imap}, @samp{imap-login}, @samp{pop3}, @samp{pop3-login}, @samp{auth}, and @samp{lmtp}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21532 +#: guix-git/doc/guix.texi:21894 msgid "Available @code{service-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21533 +#: guix-git/doc/guix.texi:21895 #, no-wrap msgid "{@code{service-configuration} parameter} string kind" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21538 +#: guix-git/doc/guix.texi:21900 msgid "The service kind. Valid values include @code{director}, @code{imap-login}, @code{pop3-login}, @code{lmtp}, @code{imap}, @code{pop3}, @code{auth}, @code{auth-worker}, @code{dict}, @code{tcpwrap}, @code{quota-warning}, or anything else." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21540 +#: guix-git/doc/guix.texi:21902 #, no-wrap msgid "{@code{service-configuration} parameter} listener-configuration-list listeners" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21545 +#: guix-git/doc/guix.texi:21907 msgid "Listeners for the service. A listener is either a @code{unix-listener-configuration}, a @code{fifo-listener-configuration}, or an @code{inet-listener-configuration}. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21547 +#: guix-git/doc/guix.texi:21909 msgid "Available @code{unix-listener-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21548 +#: guix-git/doc/guix.texi:21910 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21551 guix-git/doc/guix.texi:21574 +#: guix-git/doc/guix.texi:21913 guix-git/doc/guix.texi:21936 msgid "Path to the file, relative to @code{base-dir} field. This is also used as the section name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21553 +#: guix-git/doc/guix.texi:21915 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string mode" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21556 guix-git/doc/guix.texi:21579 +#: guix-git/doc/guix.texi:21918 guix-git/doc/guix.texi:21941 msgid "The access mode for the socket. Defaults to @samp{\"0600\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21558 +#: guix-git/doc/guix.texi:21920 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21561 guix-git/doc/guix.texi:21584 +#: guix-git/doc/guix.texi:21923 guix-git/doc/guix.texi:21946 msgid "The user to own the socket. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21563 +#: guix-git/doc/guix.texi:21925 #, no-wrap msgid "{@code{unix-listener-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21566 guix-git/doc/guix.texi:21589 +#: guix-git/doc/guix.texi:21928 guix-git/doc/guix.texi:21951 msgid "The group to own the socket. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21570 +#: guix-git/doc/guix.texi:21932 msgid "Available @code{fifo-listener-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21571 +#: guix-git/doc/guix.texi:21933 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21576 +#: guix-git/doc/guix.texi:21938 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string mode" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21581 +#: guix-git/doc/guix.texi:21943 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21586 +#: guix-git/doc/guix.texi:21948 #, no-wrap msgid "{@code{fifo-listener-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21593 +#: guix-git/doc/guix.texi:21955 msgid "Available @code{inet-listener-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21594 +#: guix-git/doc/guix.texi:21956 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} string protocol" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21596 +#: guix-git/doc/guix.texi:21958 msgid "The protocol to listen for." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21598 +#: guix-git/doc/guix.texi:21960 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} string address" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21601 +#: guix-git/doc/guix.texi:21963 msgid "The address on which to listen, or empty for all addresses. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21603 +#: guix-git/doc/guix.texi:21965 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} non-negative-integer port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21605 +#: guix-git/doc/guix.texi:21967 msgid "The port on which to listen." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21607 +#: guix-git/doc/guix.texi:21969 #, no-wrap msgid "{@code{inet-listener-configuration} parameter} boolean ssl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21611 +#: guix-git/doc/guix.texi:21973 msgid "Whether to use SSL for this service; @samp{yes}, @samp{no}, or @samp{required}. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21615 +#: guix-git/doc/guix.texi:21977 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer client-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21620 +#: guix-git/doc/guix.texi:21982 msgid "Maximum number of simultaneous client connections per process. Once this number of connections is received, the next incoming connection will prompt Dovecot to spawn another process. If set to 0, @code{default-client-limit} is used instead." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21625 +#: guix-git/doc/guix.texi:21987 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer service-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21630 +#: guix-git/doc/guix.texi:21992 msgid "Number of connections to handle before starting a new process. Typically the only useful values are 0 (unlimited) or 1. 1 is more secure, but 0 is faster. . Defaults to @samp{1}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21633 +#: guix-git/doc/guix.texi:21995 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer process-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21636 +#: guix-git/doc/guix.texi:21998 msgid "Maximum number of processes that can exist for this service. If set to 0, @code{default-process-limit} is used instead." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21641 +#: guix-git/doc/guix.texi:22003 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer process-min-avail" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21644 +#: guix-git/doc/guix.texi:22006 msgid "Number of processes to always keep waiting for more connections. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21646 +#: guix-git/doc/guix.texi:22008 #, no-wrap msgid "{@code{service-configuration} parameter} non-negative-integer vsz-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21650 +#: guix-git/doc/guix.texi:22012 msgid "If you set @samp{service-count 0}, you probably need to grow this. Defaults to @samp{256000000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21654 +#: guix-git/doc/guix.texi:22016 #, no-wrap msgid "{@code{dovecot-configuration} parameter} dict-configuration dict" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21657 +#: guix-git/doc/guix.texi:22019 msgid "Dict configuration, as created by the @code{dict-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21659 +#: guix-git/doc/guix.texi:22021 msgid "Available @code{dict-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21660 +#: guix-git/doc/guix.texi:22022 #, no-wrap msgid "{@code{dict-configuration} parameter} free-form-fields entries" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21663 +#: guix-git/doc/guix.texi:22025 msgid "A list of key-value pairs that this dict should hold. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21667 +#: guix-git/doc/guix.texi:22029 #, no-wrap msgid "{@code{dovecot-configuration} parameter} passdb-configuration-list passdbs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21670 +#: guix-git/doc/guix.texi:22032 msgid "A list of passdb configurations, each one created by the @code{passdb-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21672 +#: guix-git/doc/guix.texi:22034 msgid "Available @code{passdb-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21673 +#: guix-git/doc/guix.texi:22035 #, no-wrap msgid "{@code{passdb-configuration} parameter} string driver" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21678 +#: guix-git/doc/guix.texi:22040 msgid "The driver that the passdb should use. Valid values include @samp{pam}, @samp{passwd}, @samp{shadow}, @samp{bsdauth}, and @samp{static}. Defaults to @samp{\"pam\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21680 +#: guix-git/doc/guix.texi:22042 #, no-wrap msgid "{@code{passdb-configuration} parameter} space-separated-string-list args" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21683 +#: guix-git/doc/guix.texi:22045 msgid "Space separated list of arguments to the passdb driver. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21687 +#: guix-git/doc/guix.texi:22049 #, no-wrap msgid "{@code{dovecot-configuration} parameter} userdb-configuration-list userdbs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21690 +#: guix-git/doc/guix.texi:22052 msgid "List of userdb configurations, each one created by the @code{userdb-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21692 +#: guix-git/doc/guix.texi:22054 msgid "Available @code{userdb-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21693 +#: guix-git/doc/guix.texi:22055 #, no-wrap msgid "{@code{userdb-configuration} parameter} string driver" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21697 +#: guix-git/doc/guix.texi:22059 msgid "The driver that the userdb should use. Valid values include @samp{passwd} and @samp{static}. Defaults to @samp{\"passwd\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21699 +#: guix-git/doc/guix.texi:22061 #, no-wrap msgid "{@code{userdb-configuration} parameter} space-separated-string-list args" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21702 +#: guix-git/doc/guix.texi:22064 msgid "Space separated list of arguments to the userdb driver. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21704 +#: guix-git/doc/guix.texi:22066 #, no-wrap msgid "{@code{userdb-configuration} parameter} free-form-args override-fields" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21707 +#: guix-git/doc/guix.texi:22069 msgid "Override fields from passwd. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21711 +#: guix-git/doc/guix.texi:22073 #, no-wrap msgid "{@code{dovecot-configuration} parameter} plugin-configuration plugin-configuration" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21714 +#: guix-git/doc/guix.texi:22076 msgid "Plug-in configuration, created by the @code{plugin-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21716 +#: guix-git/doc/guix.texi:22078 #, no-wrap msgid "{@code{dovecot-configuration} parameter} list-of-namespace-configuration namespaces" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21719 +#: guix-git/doc/guix.texi:22081 msgid "List of namespaces. Each item in the list is created by the @code{namespace-configuration} constructor." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21721 +#: guix-git/doc/guix.texi:22083 msgid "Available @code{namespace-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21722 +#: guix-git/doc/guix.texi:22084 #, no-wrap msgid "{@code{namespace-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21724 +#: guix-git/doc/guix.texi:22086 msgid "Name for this namespace." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21726 +#: guix-git/doc/guix.texi:22088 #, no-wrap msgid "{@code{namespace-configuration} parameter} string type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21729 +#: guix-git/doc/guix.texi:22091 msgid "Namespace type: @samp{private}, @samp{shared} or @samp{public}. Defaults to @samp{\"private\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21731 +#: guix-git/doc/guix.texi:22093 #, no-wrap msgid "{@code{namespace-configuration} parameter} string separator" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21737 +#: guix-git/doc/guix.texi:22099 msgid "Hierarchy separator to use. You should use the same separator for all namespaces or some clients get confused. @samp{/} is usually a good one. The default however depends on the underlying mail storage format. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21739 +#: guix-git/doc/guix.texi:22101 #, no-wrap msgid "{@code{namespace-configuration} parameter} string prefix" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21743 +#: guix-git/doc/guix.texi:22105 msgid "Prefix required to access this namespace. This needs to be different for all namespaces. For example @samp{Public/}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21745 +#: guix-git/doc/guix.texi:22107 #, no-wrap msgid "{@code{namespace-configuration} parameter} string location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21749 +#: guix-git/doc/guix.texi:22111 msgid "Physical location of the mailbox. This is in the same format as mail_location, which is also the default for it. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21751 +#: guix-git/doc/guix.texi:22113 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean inbox?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21755 +#: guix-git/doc/guix.texi:22117 msgid "There can be only one INBOX, and this setting defines which namespace has it. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21757 +#: guix-git/doc/guix.texi:22119 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean hidden?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21765 +#: guix-git/doc/guix.texi:22127 msgid "If namespace is hidden, it's not advertised to clients via NAMESPACE extension. You'll most likely also want to set @samp{list? #f}. This is mostly useful when converting from another server with different namespaces which you want to deprecate but still keep working. For example you can create hidden namespaces with prefixes @samp{~/mail/}, @samp{~%u/mail/} and @samp{mail/}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21767 +#: guix-git/doc/guix.texi:22129 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean list?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21773 +#: guix-git/doc/guix.texi:22135 msgid "Show the mailboxes under this namespace with the LIST command. This makes the namespace visible for clients that do not support the NAMESPACE extension. The special @code{children} value lists child mailboxes, but hides the namespace prefix. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21775 +#: guix-git/doc/guix.texi:22137 #, no-wrap msgid "{@code{namespace-configuration} parameter} boolean subscriptions?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21780 +#: guix-git/doc/guix.texi:22142 msgid "Namespace handles its own subscriptions. If set to @code{#f}, the parent namespace handles them. The empty prefix should always have this as @code{#t}). Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21782 +#: guix-git/doc/guix.texi:22144 #, no-wrap msgid "{@code{namespace-configuration} parameter} mailbox-configuration-list mailboxes" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21785 +#: guix-git/doc/guix.texi:22147 msgid "List of predefined mailboxes in this namespace. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21787 +#: guix-git/doc/guix.texi:22149 msgid "Available @code{mailbox-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21788 +#: guix-git/doc/guix.texi:22150 #, no-wrap msgid "{@code{mailbox-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21790 +#: guix-git/doc/guix.texi:22152 msgid "Name for this mailbox." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21792 +#: guix-git/doc/guix.texi:22154 #, no-wrap msgid "{@code{mailbox-configuration} parameter} string auto" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21796 +#: guix-git/doc/guix.texi:22158 msgid "@samp{create} will automatically create this mailbox. @samp{subscribe} will both create and subscribe to the mailbox. Defaults to @samp{\"no\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21798 +#: guix-git/doc/guix.texi:22160 #, no-wrap msgid "{@code{mailbox-configuration} parameter} space-separated-string-list special-use" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21803 +#: guix-git/doc/guix.texi:22165 msgid "List of IMAP @code{SPECIAL-USE} attributes as specified by RFC 6154. Valid values are @code{\\All}, @code{\\Archive}, @code{\\Drafts}, @code{\\Flagged}, @code{\\Junk}, @code{\\Sent}, and @code{\\Trash}. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21809 +#: guix-git/doc/guix.texi:22171 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name base-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21812 +#: guix-git/doc/guix.texi:22174 msgid "Base directory where to store runtime data. Defaults to @samp{\"/var/run/dovecot/\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21814 +#: guix-git/doc/guix.texi:22176 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string login-greeting" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21817 +#: guix-git/doc/guix.texi:22179 msgid "Greeting message for clients. Defaults to @samp{\"Dovecot ready.\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21819 +#: guix-git/doc/guix.texi:22181 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-trusted-networks" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21826 +#: guix-git/doc/guix.texi:22188 msgid "List of trusted network ranges. Connections from these IPs are allowed to override their IP addresses and ports (for logging and for authentication checks). @samp{disable-plaintext-auth} is also ignored for these networks. Typically you would specify your IMAP proxy servers here. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21828 +#: guix-git/doc/guix.texi:22190 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-access-sockets" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21831 +#: guix-git/doc/guix.texi:22193 msgid "List of login access check sockets (e.g.@: tcpwrap). Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21833 +#: guix-git/doc/guix.texi:22195 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean verbose-proctitle?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21839 +#: guix-git/doc/guix.texi:22201 msgid "Show more verbose process titles (in ps). Currently shows user name and IP address. Useful for seeing who is actually using the IMAP processes (e.g.@: shared mailboxes or if the same uid is used for multiple accounts). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21841 +#: guix-git/doc/guix.texi:22203 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean shutdown-clients?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21847 +#: guix-git/doc/guix.texi:22209 msgid "Should all processes be killed when Dovecot master process shuts down. Setting this to @code{#f} means that Dovecot can be upgraded without forcing existing client connections to close (although that could also be a problem if the upgrade is e.g.@: due to a security fix). Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21849 +#: guix-git/doc/guix.texi:22211 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer doveadm-worker-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21853 +#: guix-git/doc/guix.texi:22215 msgid "If non-zero, run mail commands via this many connections to doveadm server, instead of running them directly in the same process. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21855 +#: guix-git/doc/guix.texi:22217 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string doveadm-socket-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21858 +#: guix-git/doc/guix.texi:22220 msgid "UNIX socket or host:port used for connecting to doveadm server. Defaults to @samp{\"doveadm-server\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21860 +#: guix-git/doc/guix.texi:22222 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list import-environment" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21864 +#: guix-git/doc/guix.texi:22226 msgid "List of environment variables that are preserved on Dovecot startup and passed down to all of its child processes. You can also give key=value pairs to always set specific settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21866 +#: guix-git/doc/guix.texi:22228 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean disable-plaintext-auth?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21873 +#: guix-git/doc/guix.texi:22235 msgid "Disable LOGIN command and all other plaintext authentications unless SSL/TLS is used (LOGINDISABLED capability). Note that if the remote IP matches the local IP (i.e.@: you're connecting from the same computer), the connection is considered secure and plaintext authentication is allowed. See also ssl=required setting. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21875 +#: guix-git/doc/guix.texi:22237 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer auth-cache-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21880 +#: guix-git/doc/guix.texi:22242 msgid "Authentication cache size (e.g.@: @samp{#e10e6}). 0 means it's disabled. Note that bsdauth, PAM and vpopmail require @samp{cache-key} to be set for caching to be used. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21882 +#: guix-git/doc/guix.texi:22244 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-cache-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21890 +#: guix-git/doc/guix.texi:22252 msgid "Time to live for cached data. After TTL expires the cached record is no longer used, *except* if the main database lookup returns internal failure. We also try to handle password changes automatically: If user's previous authentication was successful, but this one wasn't, the cache isn't used. For now this works only with plaintext authentication. Defaults to @samp{\"1 hour\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21892 +#: guix-git/doc/guix.texi:22254 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-cache-negative-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21896 +#: guix-git/doc/guix.texi:22258 msgid "TTL for negative hits (user not found, password mismatch). 0 disables caching them completely. Defaults to @samp{\"1 hour\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21898 +#: guix-git/doc/guix.texi:22260 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list auth-realms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21904 +#: guix-git/doc/guix.texi:22266 msgid "List of realms for SASL authentication mechanisms that need them. You can leave it empty if you don't want to support multiple realms. Many clients simply use the first one listed here, so keep the default realm first. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21906 +#: guix-git/doc/guix.texi:22268 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-default-realm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21911 +#: guix-git/doc/guix.texi:22273 msgid "Default realm/domain to use if none was specified. This is used for both SASL realms and appending @@domain to username in plaintext logins. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21913 +#: guix-git/doc/guix.texi:22275 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-chars" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21920 +#: guix-git/doc/guix.texi:22282 msgid "List of allowed characters in username. If the user-given username contains a character not listed in here, the login automatically fails. This is just an extra check to make sure user can't exploit any potential quote escaping vulnerabilities with SQL/LDAP databases. If you want to allow all characters, set this value to empty. Defaults to @samp{\"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@@\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21922 +#: guix-git/doc/guix.texi:22284 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-translation" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21928 +#: guix-git/doc/guix.texi:22290 msgid "Username character translations before it's looked up from databases. The value contains series of from -> to characters. For example @samp{#@@/@@} means that @samp{#} and @samp{/} characters are translated to @samp{@@}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21930 +#: guix-git/doc/guix.texi:22292 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-username-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21937 +#: guix-git/doc/guix.texi:22299 msgid "Username formatting before it's looked up from databases. You can use the standard variables here, e.g.@: %Lu would lowercase the username, %n would drop away the domain if it was given, or @samp{%n-AT-%d} would change the @samp{@@} into @samp{-AT-}. This translation is done after @samp{auth-username-translation} changes. Defaults to @samp{\"%Lu\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21939 +#: guix-git/doc/guix.texi:22301 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-master-user-separator" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21947 +#: guix-git/doc/guix.texi:22309 msgid "If you want to allow master users to log in by specifying the master username within the normal username string (i.e.@: not using SASL mechanism's support for it), you can specify the separator character here. The format is then . UW-IMAP uses @samp{*} as the separator, so that could be a good choice. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21949 +#: guix-git/doc/guix.texi:22311 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-anonymous-username" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21953 +#: guix-git/doc/guix.texi:22315 msgid "Username to use for users logging in with ANONYMOUS SASL mechanism. Defaults to @samp{\"anonymous\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21955 +#: guix-git/doc/guix.texi:22317 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer auth-worker-max-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21960 +#: guix-git/doc/guix.texi:22322 msgid "Maximum number of dovecot-auth worker processes. They're used to execute blocking passdb and userdb queries (e.g.@: MySQL and PAM). They're automatically created and destroyed as needed. Defaults to @samp{30}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21962 +#: guix-git/doc/guix.texi:22324 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-gssapi-hostname" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21967 +#: guix-git/doc/guix.texi:22329 msgid "Host name to use in GSSAPI principal names. The default is to use the name returned by gethostname(). Use @samp{$ALL} (with quotes) to allow all keytab entries. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21969 +#: guix-git/doc/guix.texi:22331 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-krb5-keytab" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21975 +#: guix-git/doc/guix.texi:22337 msgid "Kerberos keytab to use for the GSSAPI mechanism. Will use the system default (usually @file{/etc/krb5.keytab}) if not specified. You may need to change the auth service to run as root to be able to read this file. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21977 +#: guix-git/doc/guix.texi:22339 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-use-winbind?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21982 +#: guix-git/doc/guix.texi:22344 msgid "Do NTLM and GSS-SPNEGO authentication using Samba's winbind daemon and @samp{ntlm-auth} helper. . Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21984 +#: guix-git/doc/guix.texi:22346 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name auth-winbind-helper-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21987 +#: guix-git/doc/guix.texi:22349 msgid "Path for Samba's @samp{ntlm-auth} helper binary. Defaults to @samp{\"/usr/bin/ntlm_auth\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21989 +#: guix-git/doc/guix.texi:22351 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-failure-delay" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21992 +#: guix-git/doc/guix.texi:22354 msgid "Time to delay before replying to failed authentications. Defaults to @samp{\"2 secs\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21994 +#: guix-git/doc/guix.texi:22356 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-ssl-require-client-cert?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:21998 +#: guix-git/doc/guix.texi:22360 msgid "Require a valid SSL client certificate or the authentication fails. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22000 +#: guix-git/doc/guix.texi:22362 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-ssl-username-from-cert?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22005 +#: guix-git/doc/guix.texi:22367 msgid "Take the username from client's SSL certificate, using @code{X509_NAME_get_text_by_NID()} which returns the subject's DN's CommonName. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22007 +#: guix-git/doc/guix.texi:22369 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list auth-mechanisms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22013 +#: guix-git/doc/guix.texi:22375 msgid "List of wanted authentication mechanisms. Supported mechanisms are: @samp{plain}, @samp{login}, @samp{digest-md5}, @samp{cram-md5}, @samp{ntlm}, @samp{rpa}, @samp{apop}, @samp{anonymous}, @samp{gssapi}, @samp{otp}, @samp{skey}, and @samp{gss-spnego}. NOTE: See also @samp{disable-plaintext-auth} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22015 +#: guix-git/doc/guix.texi:22377 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list director-servers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22020 +#: guix-git/doc/guix.texi:22382 msgid "List of IPs or hostnames to all director servers, including ourself. Ports can be specified as ip:port. The default port is the same as what director service's @samp{inet-listener} is using. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22022 +#: guix-git/doc/guix.texi:22384 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list director-mail-servers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22026 +#: guix-git/doc/guix.texi:22388 msgid "List of IPs or hostnames to all backend mail servers. Ranges are allowed too, like 10.0.0.10-10.0.0.30. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22028 +#: guix-git/doc/guix.texi:22390 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string director-user-expire" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22032 +#: guix-git/doc/guix.texi:22394 msgid "How long to redirect users to a specific server after it no longer has any connections. Defaults to @samp{\"15 min\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22034 +#: guix-git/doc/guix.texi:22396 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string director-username-hash" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22039 +#: guix-git/doc/guix.texi:22401 msgid "How the username is translated before being hashed. Useful values include %Ln if user can log in with or without @@domain, %Ld if mailboxes are shared within domain. Defaults to @samp{\"%Lu\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22041 +#: guix-git/doc/guix.texi:22403 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string log-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22045 +#: guix-git/doc/guix.texi:22407 msgid "Log file to use for error messages. @samp{syslog} logs to syslog, @samp{/dev/stderr} logs to stderr. Defaults to @samp{\"syslog\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22047 +#: guix-git/doc/guix.texi:22409 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string info-log-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22051 +#: guix-git/doc/guix.texi:22413 msgid "Log file to use for informational messages. Defaults to @samp{log-path}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22053 +#: guix-git/doc/guix.texi:22415 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string debug-log-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22057 +#: guix-git/doc/guix.texi:22419 msgid "Log file to use for debug messages. Defaults to @samp{info-log-path}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22059 +#: guix-git/doc/guix.texi:22421 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string syslog-facility" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22064 +#: guix-git/doc/guix.texi:22426 msgid "Syslog facility to use if you're logging to syslog. Usually if you don't want to use @samp{mail}, you'll use local0..local7. Also other standard facilities are supported. Defaults to @samp{\"mail\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22066 +#: guix-git/doc/guix.texi:22428 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-verbose?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22070 +#: guix-git/doc/guix.texi:22432 msgid "Log unsuccessful authentication attempts and the reasons why they failed. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22072 +#: guix-git/doc/guix.texi:22434 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string auth-verbose-passwords" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22079 +#: guix-git/doc/guix.texi:22441 msgid "In case of password mismatches, log the attempted password. Valid values are no, plain and sha1. sha1 can be useful for detecting brute force password attempts vs. user simply trying the same password over and over again. You can also truncate the value to n chars by appending \":n\" (e.g.@: sha1:6). Defaults to @samp{\"no\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22081 +#: guix-git/doc/guix.texi:22443 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-debug?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22085 +#: guix-git/doc/guix.texi:22447 msgid "Even more verbose logging for debugging purposes. Shows for example SQL queries. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22087 +#: guix-git/doc/guix.texi:22449 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean auth-debug-passwords?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22092 +#: guix-git/doc/guix.texi:22454 msgid "In case of password mismatches, log the passwords and used scheme so the problem can be debugged. Enabling this also enables @samp{auth-debug}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22094 +#: guix-git/doc/guix.texi:22456 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-debug?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22098 +#: guix-git/doc/guix.texi:22460 msgid "Enable mail process debugging. This can help you figure out why Dovecot isn't finding your mails. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22100 +#: guix-git/doc/guix.texi:22462 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean verbose-ssl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22103 +#: guix-git/doc/guix.texi:22465 msgid "Show protocol level SSL errors. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22105 +#: guix-git/doc/guix.texi:22467 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string log-timestamp" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22109 +#: guix-git/doc/guix.texi:22471 msgid "Prefix for each line written to log file. % codes are in strftime(3) format. Defaults to @samp{\"\\\"%b %d %H:%M:%S \\\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22111 +#: guix-git/doc/guix.texi:22473 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list login-log-format-elements" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22115 +#: guix-git/doc/guix.texi:22477 msgid "List of elements we want to log. The elements which have a non-empty variable value are joined together to form a comma-separated string." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22117 +#: guix-git/doc/guix.texi:22479 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string login-log-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22121 +#: guix-git/doc/guix.texi:22483 msgid "Login log format. %s contains @samp{login-log-format-elements} string, %$ contains the data we want to log. Defaults to @samp{\"%$: %s\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22123 +#: guix-git/doc/guix.texi:22485 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-log-prefix" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22127 +#: guix-git/doc/guix.texi:22489 msgid "Log prefix for mail processes. See doc/wiki/Variables.txt for list of possible variables you can use. Defaults to @samp{\"\\\"%s(%u)<%@{pid@}><%@{session@}>: \\\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22129 +#: guix-git/doc/guix.texi:22491 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string deliver-log-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22131 +#: guix-git/doc/guix.texi:22493 msgid "Format to use for logging mail deliveries. You can use variables:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22132 +#: guix-git/doc/guix.texi:22494 #, no-wrap msgid "%$" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22134 +#: guix-git/doc/guix.texi:22496 msgid "Delivery status message (e.g.@: @samp{saved to INBOX})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22134 +#: guix-git/doc/guix.texi:22496 #, no-wrap msgid "%m" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22136 +#: guix-git/doc/guix.texi:22498 msgid "Message-ID" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22136 guix-git/doc/guix.texi:22679 +#: guix-git/doc/guix.texi:22498 guix-git/doc/guix.texi:23041 #, no-wrap msgid "%s" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22138 +#: guix-git/doc/guix.texi:22500 msgid "Subject" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22138 +#: guix-git/doc/guix.texi:22500 #, no-wrap msgid "%f" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22140 +#: guix-git/doc/guix.texi:22502 msgid "From address" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22142 +#: guix-git/doc/guix.texi:22504 msgid "Physical size" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22142 +#: guix-git/doc/guix.texi:22504 #, no-wrap msgid "%w" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22144 +#: guix-git/doc/guix.texi:22506 msgid "Virtual size." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22146 +#: guix-git/doc/guix.texi:22508 msgid "Defaults to @samp{\"msgid=%m: %$\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22148 +#: guix-git/doc/guix.texi:22510 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22153 +#: guix-git/doc/guix.texi:22515 msgid "Location for users' mailboxes. The default is empty, which means that Dovecot tries to find the mailboxes automatically. This won't work if the user doesn't yet have any mail, so you should explicitly tell Dovecot the full location." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22159 +#: guix-git/doc/guix.texi:22521 msgid "If you're using mbox, giving a path to the INBOX file (e.g.@: @file{/var/mail/%u}) isn't enough. You'll also need to tell Dovecot where the other mailboxes are kept. This is called the @emph{root mail directory}, and it must be the first path given in the @samp{mail-location} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22161 +#: guix-git/doc/guix.texi:22523 msgid "There are a few special variables you can use, e.g.:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22165 +#: guix-git/doc/guix.texi:22527 msgid "username" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22165 guix-git/doc/guix.texi:22675 +#: guix-git/doc/guix.texi:22527 guix-git/doc/guix.texi:23037 #, no-wrap msgid "%n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22167 +#: guix-git/doc/guix.texi:22529 msgid "user part in user@@domain, same as %u if there's no domain" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22167 +#: guix-git/doc/guix.texi:22529 #, no-wrap msgid "%d" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22169 +#: guix-git/doc/guix.texi:22531 msgid "domain part in user@@domain, empty if there's no domain" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22169 +#: guix-git/doc/guix.texi:22531 #, no-wrap msgid "%h" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22171 +#: guix-git/doc/guix.texi:22533 msgid "home director" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22174 +#: guix-git/doc/guix.texi:22536 msgid "See doc/wiki/Variables.txt for full list. Some examples:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22175 +#: guix-git/doc/guix.texi:22537 #, no-wrap msgid "maildir:~/Maildir" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22176 +#: guix-git/doc/guix.texi:22538 #, no-wrap msgid "mbox:~/mail:INBOX=/var/mail/%u" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22177 +#: guix-git/doc/guix.texi:22539 #, no-wrap msgid "mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22182 +#: guix-git/doc/guix.texi:22544 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22187 +#: guix-git/doc/guix.texi:22549 msgid "System user and group used to access mails. If you use multiple, userdb can override these by returning uid or gid fields. You can use either numbers or names. . Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22189 +#: guix-git/doc/guix.texi:22551 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22194 +#: guix-git/doc/guix.texi:22556 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-privileged-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22200 +#: guix-git/doc/guix.texi:22562 msgid "Group to enable temporarily for privileged operations. Currently this is used only with INBOX when either its initial creation or dotlocking fails. Typically this is set to @samp{\"mail\"} to give access to @file{/var/mail}. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22202 +#: guix-git/doc/guix.texi:22564 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-access-groups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22210 +#: guix-git/doc/guix.texi:22572 msgid "Grant access to these supplementary groups for mail processes. Typically these are used to set up access to shared mailboxes. Note that it may be dangerous to set these if users can create symlinks (e.g.@: if @samp{mail} group is set here, @code{ln -s /var/mail ~/mail/var} could allow a user to delete others' mailboxes, or @code{ln -s /secret/shared/box ~/mail/mybox} would allow reading it). Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22212 +#: guix-git/doc/guix.texi:22574 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attribute-dict" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22215 +#: guix-git/doc/guix.texi:22577 msgid "The location of a dictionary used to store @code{IMAP METADATA} as defined by @uref{https://tools.ietf.org/html/rfc5464, RFC@tie{}5464}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22218 +#: guix-git/doc/guix.texi:22580 msgid "The IMAP METADATA commands are available only if the ``imap'' protocol configuration's @code{imap-metadata?} field is @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22223 +#: guix-git/doc/guix.texi:22585 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-full-filesystem-access?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22229 +#: guix-git/doc/guix.texi:22591 msgid "Allow full file system access to clients. There's no access checks other than what the operating system does for the active UID/GID@. It works with both maildir and mboxes, allowing you to prefix mailboxes names with e.g.@: @file{/path/} or @file{~user/}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22231 +#: guix-git/doc/guix.texi:22593 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mmap-disable?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22235 +#: guix-git/doc/guix.texi:22597 msgid "Don't use @code{mmap()} at all. This is required if you store indexes to shared file systems (NFS or clustered file system). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22237 +#: guix-git/doc/guix.texi:22599 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean dotlock-use-excl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22242 +#: guix-git/doc/guix.texi:22604 msgid "Rely on @samp{O_EXCL} to work when creating dotlock files. NFS supports @samp{O_EXCL} since version 3, so this should be safe to use nowadays by default. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22244 +#: guix-git/doc/guix.texi:22606 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-fsync" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22246 +#: guix-git/doc/guix.texi:22608 msgid "When to use fsync() or fdatasync() calls:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22247 +#: guix-git/doc/guix.texi:22609 #, no-wrap msgid "optimized" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22249 +#: guix-git/doc/guix.texi:22611 msgid "Whenever necessary to avoid losing important data" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22251 +#: guix-git/doc/guix.texi:22613 msgid "Useful with e.g.@: NFS when @code{write()}s are delayed" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22253 +#: guix-git/doc/guix.texi:22615 msgid "Never use it (best performance, but crashes can lose data)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22255 +#: guix-git/doc/guix.texi:22617 msgid "Defaults to @samp{\"optimized\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22257 +#: guix-git/doc/guix.texi:22619 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-nfs-storage?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22262 +#: guix-git/doc/guix.texi:22624 msgid "Mail storage exists in NFS@. Set this to yes to make Dovecot flush NFS caches whenever needed. If you're using only a single mail server this isn't needed. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22264 +#: guix-git/doc/guix.texi:22626 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-nfs-index?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22268 +#: guix-git/doc/guix.texi:22630 msgid "Mail index files also exist in NFS@. Setting this to yes requires @samp{mmap-disable? #t} and @samp{fsync-disable? #f}. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22270 +#: guix-git/doc/guix.texi:22632 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string lock-method" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22276 +#: guix-git/doc/guix.texi:22638 msgid "Locking method for index files. Alternatives are fcntl, flock and dotlock. Dotlocking uses some tricks which may create more disk I/O than other locking methods. NFS users: flock doesn't work, remember to change @samp{mmap-disable}. Defaults to @samp{\"fcntl\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22278 +#: guix-git/doc/guix.texi:22640 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name mail-temp-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22282 +#: guix-git/doc/guix.texi:22644 msgid "Directory in which LDA/LMTP temporarily stores incoming mails >128 kB. Defaults to @samp{\"/tmp\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22284 +#: guix-git/doc/guix.texi:22646 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer first-valid-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22290 +#: guix-git/doc/guix.texi:22652 msgid "Valid UID range for users. This is mostly to make sure that users can't log in as daemons or other system users. Note that denying root logins is hardcoded to dovecot binary and can't be done even if @samp{first-valid-uid} is set to 0. Defaults to @samp{500}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22292 +#: guix-git/doc/guix.texi:22654 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer last-valid-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22297 +#: guix-git/doc/guix.texi:22659 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer first-valid-gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22302 +#: guix-git/doc/guix.texi:22664 msgid "Valid GID range for users. Users having non-valid GID as primary group ID aren't allowed to log in. If user belongs to supplementary groups with non-valid GIDs, those groups are not set. Defaults to @samp{1}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22304 +#: guix-git/doc/guix.texi:22666 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer last-valid-gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22309 +#: guix-git/doc/guix.texi:22671 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-max-keyword-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22313 +#: guix-git/doc/guix.texi:22675 msgid "Maximum allowed length for mail keyword name. It's only forced when trying to create new keywords. Defaults to @samp{50}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22315 +#: guix-git/doc/guix.texi:22677 #, no-wrap msgid "{@code{dovecot-configuration} parameter} colon-separated-file-name-list valid-chroot-dirs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22325 +#: guix-git/doc/guix.texi:22687 msgid "List of directories under which chrooting is allowed for mail processes (i.e.@: @file{/var/mail} will allow chrooting to @file{/var/mail/foo/bar} too). This setting doesn't affect @samp{login-chroot} @samp{mail-chroot} or auth chroot settings. If this setting is empty, @samp{/./} in home dirs are ignored. WARNING: Never add directories here which local users can modify, that may lead to root exploit. Usually this should be done only if you don't allow shell access for users. . Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22327 +#: guix-git/doc/guix.texi:22689 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-chroot" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22336 +#: guix-git/doc/guix.texi:22698 msgid "Default chroot directory for mail processes. This can be overridden for specific users in user database by giving @samp{/./} in user's home directory (e.g.@: @samp{/home/./user} chroots into @file{/home}). Note that usually there is no real need to do chrooting, Dovecot doesn't allow users to access files outside their mail directory anyway. If your home directories are prefixed with the chroot directory, append @samp{/.} to @samp{mail-chroot}. . Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22338 +#: guix-git/doc/guix.texi:22700 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name auth-socket-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22342 +#: guix-git/doc/guix.texi:22704 msgid "UNIX socket path to master authentication server to find users. This is used by imap (for shared users) and lda. Defaults to @samp{\"/var/run/dovecot/auth-userdb\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22344 +#: guix-git/doc/guix.texi:22706 #, no-wrap msgid "{@code{dovecot-configuration} parameter} file-name mail-plugin-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22347 +#: guix-git/doc/guix.texi:22709 msgid "Directory where to look up mail plugins. Defaults to @samp{\"/usr/lib/dovecot\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22349 +#: guix-git/doc/guix.texi:22711 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mail-plugins" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22353 +#: guix-git/doc/guix.texi:22715 msgid "List of plugins to load for all services. Plugins specific to IMAP, LDA, etc.@: are added to this list in their own .conf files. Defaults to @samp{()}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22355 +#: guix-git/doc/guix.texi:22717 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-cache-min-mail-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22360 +#: guix-git/doc/guix.texi:22722 msgid "The minimum number of mails in a mailbox before updates are done to cache file. This allows optimizing Dovecot's behavior to do less disk writes at the cost of more disk reads. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22362 +#: guix-git/doc/guix.texi:22724 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mailbox-idle-check-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22369 +#: guix-git/doc/guix.texi:22731 msgid "When IDLE command is running, mailbox is checked once in a while to see if there are any new mails or other changes. This setting defines the minimum time to wait between those checks. Dovecot can also use dnotify, inotify and kqueue to find out immediately when changes occur. Defaults to @samp{\"30 secs\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22371 +#: guix-git/doc/guix.texi:22733 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mail-save-crlf?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22378 +#: guix-git/doc/guix.texi:22740 msgid "Save mails with CR+LF instead of plain LF@. This makes sending those mails take less CPU, especially with sendfile() syscall with Linux and FreeBSD@. But it also creates a bit more disk I/O which may just make it slower. Also note that if other software reads the mboxes/maildirs, they may handle the extra CRs wrong and cause problems. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22380 +#: guix-git/doc/guix.texi:22742 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-stat-dirs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22388 +#: guix-git/doc/guix.texi:22750 msgid "By default LIST command returns all entries in maildir beginning with a dot. Enabling this option makes Dovecot return only entries which are directories. This is done by stat()ing each entry, so it causes more disk I/O. (For systems setting struct @samp{dirent->d_type} this check is free and it's done always regardless of this setting). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22390 +#: guix-git/doc/guix.texi:22752 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-copy-with-hardlinks?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22395 +#: guix-git/doc/guix.texi:22757 msgid "When copying a message, do it with hard links whenever possible. This makes the performance much better, and it's unlikely to have any side effects. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22397 +#: guix-git/doc/guix.texi:22759 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean maildir-very-dirty-syncs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22402 +#: guix-git/doc/guix.texi:22764 msgid "Assume Dovecot is the only MUA accessing Maildir: Scan cur/ directory only when its mtime changes unexpectedly or when we can't find the mail otherwise. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22404 +#: guix-git/doc/guix.texi:22766 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mbox-read-locks" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22407 +#: guix-git/doc/guix.texi:22769 msgid "Which locking methods to use for locking mbox. There are four available:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22409 +#: guix-git/doc/guix.texi:22771 #, no-wrap msgid "dotlock" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22413 +#: guix-git/doc/guix.texi:22775 msgid "Create .lock file. This is the oldest and most NFS-safe solution. If you want to use /var/mail/ like directory, the users will need write access to that directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22413 +#: guix-git/doc/guix.texi:22775 #, no-wrap msgid "dotlock-try" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22416 +#: guix-git/doc/guix.texi:22778 msgid "Same as dotlock, but if it fails because of permissions or because there isn't enough disk space, just skip it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22416 +#: guix-git/doc/guix.texi:22778 #, no-wrap msgid "fcntl" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22418 +#: guix-git/doc/guix.texi:22780 msgid "Use this if possible. Works with NFS too if lockd is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22418 +#: guix-git/doc/guix.texi:22780 #, no-wrap msgid "flock" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22420 guix-git/doc/guix.texi:22422 +#: guix-git/doc/guix.texi:22782 guix-git/doc/guix.texi:22784 msgid "May not exist in all systems. Doesn't work with NFS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:22420 +#: guix-git/doc/guix.texi:22782 #, no-wrap msgid "lockf" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22428 +#: guix-git/doc/guix.texi:22790 msgid "You can use multiple locking methods; if you do the order they're declared in is important to avoid deadlocks if other MTAs/MUAs are using multiple locking methods as well. Some operating systems don't allow using some of them simultaneously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22430 +#: guix-git/doc/guix.texi:22792 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list mbox-write-locks" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22434 +#: guix-git/doc/guix.texi:22796 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mbox-lock-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22437 +#: guix-git/doc/guix.texi:22799 msgid "Maximum time to wait for lock (all of them) before aborting. Defaults to @samp{\"5 mins\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22439 +#: guix-git/doc/guix.texi:22801 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mbox-dotlock-change-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22443 +#: guix-git/doc/guix.texi:22805 msgid "If dotlock exists but the mailbox isn't modified in any way, override the lock file after this much time. Defaults to @samp{\"2 mins\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22445 +#: guix-git/doc/guix.texi:22807 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-dirty-syncs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22456 +#: guix-git/doc/guix.texi:22818 msgid "When mbox changes unexpectedly we have to fully read it to find out what changed. If the mbox is large this can take a long time. Since the change is usually just a newly appended mail, it'd be faster to simply read the new mails. If this setting is enabled, Dovecot does this but still safely fallbacks to re-reading the whole mbox file whenever something in mbox isn't how it's expected to be. The only real downside to this setting is that if some other MUA changes message flags, Dovecot doesn't notice it immediately. Note that a full sync is done with SELECT, EXAMINE, EXPUNGE and CHECK commands. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22458 +#: guix-git/doc/guix.texi:22820 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-very-dirty-syncs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22463 +#: guix-git/doc/guix.texi:22825 msgid "Like @samp{mbox-dirty-syncs}, but don't do full syncs even with SELECT, EXAMINE, EXPUNGE or CHECK commands. If this is set, @samp{mbox-dirty-syncs} is ignored. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22465 +#: guix-git/doc/guix.texi:22827 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mbox-lazy-writes?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22471 +#: guix-git/doc/guix.texi:22833 msgid "Delay writing mbox headers until doing a full write sync (EXPUNGE and CHECK commands and when closing the mailbox). This is especially useful for POP3 where clients often delete all mails. The downside is that our changes aren't immediately visible to other MUAs. Defaults to @samp{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22473 +#: guix-git/doc/guix.texi:22835 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mbox-min-index-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22478 +#: guix-git/doc/guix.texi:22840 msgid "If mbox size is smaller than this (e.g.@: 100k), don't write index files. If an index file already exists it's still read, just not updated. Defaults to @samp{0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22480 +#: guix-git/doc/guix.texi:22842 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mdbox-rotate-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22483 +#: guix-git/doc/guix.texi:22845 msgid "Maximum dbox file size until it's rotated. Defaults to @samp{10000000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22485 +#: guix-git/doc/guix.texi:22847 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mdbox-rotate-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22490 +#: guix-git/doc/guix.texi:22852 msgid "Maximum dbox file age until it's rotated. Typically in days. Day begins from midnight, so 1d = today, 2d = yesterday, etc. 0 = check disabled. Defaults to @samp{\"1d\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22492 +#: guix-git/doc/guix.texi:22854 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean mdbox-preallocate-space?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22497 +#: guix-git/doc/guix.texi:22859 msgid "When creating new mdbox files, immediately preallocate their size to @samp{mdbox-rotate-size}. This setting currently works only in Linux with some file systems (ext4, xfs). Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22499 +#: guix-git/doc/guix.texi:22861 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22503 +#: guix-git/doc/guix.texi:22865 msgid "sdbox and mdbox support saving mail attachments to external files, which also allows single instance storage for them. Other backends don't support this for now." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22505 +#: guix-git/doc/guix.texi:22867 msgid "WARNING: This feature hasn't been tested much yet. Use at your own risk." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22508 +#: guix-git/doc/guix.texi:22870 msgid "Directory root where to store mail attachments. Disabled, if empty. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22510 +#: guix-git/doc/guix.texi:22872 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer mail-attachment-min-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22515 +#: guix-git/doc/guix.texi:22877 msgid "Attachments smaller than this aren't saved externally. It's also possible to write a plugin to disable saving specific attachments externally. Defaults to @samp{128000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22517 +#: guix-git/doc/guix.texi:22879 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-fs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22519 +#: guix-git/doc/guix.texi:22881 msgid "File system backend to use for saving attachments:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22520 +#: guix-git/doc/guix.texi:22882 #, no-wrap msgid "posix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22522 +#: guix-git/doc/guix.texi:22884 msgid "No SiS done by Dovecot (but this might help FS's own deduplication)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22522 +#: guix-git/doc/guix.texi:22884 #, no-wrap msgid "sis posix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22524 +#: guix-git/doc/guix.texi:22886 msgid "SiS with immediate byte-by-byte comparison during saving" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22524 +#: guix-git/doc/guix.texi:22886 #, no-wrap msgid "sis-queue posix" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22526 +#: guix-git/doc/guix.texi:22888 msgid "SiS with delayed comparison and deduplication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22528 +#: guix-git/doc/guix.texi:22890 msgid "Defaults to @samp{\"sis posix\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22530 +#: guix-git/doc/guix.texi:22892 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string mail-attachment-hash" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22536 +#: guix-git/doc/guix.texi:22898 msgid "Hash format to use in attachment filenames. You can add any text and variables: @code{%@{md4@}}, @code{%@{md5@}}, @code{%@{sha1@}}, @code{%@{sha256@}}, @code{%@{sha512@}}, @code{%@{size@}}. Variables can be truncated, e.g.@: @code{%@{sha256:80@}} returns only first 80 bits. Defaults to @samp{\"%@{sha1@}\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22538 +#: guix-git/doc/guix.texi:22900 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-process-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22543 +#: guix-git/doc/guix.texi:22905 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-client-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22546 guix-git/doc/guix.texi:30171 +#: guix-git/doc/guix.texi:22908 guix-git/doc/guix.texi:30536 msgid "Defaults to @samp{1000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22548 +#: guix-git/doc/guix.texi:22910 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer default-vsz-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22553 +#: guix-git/doc/guix.texi:22915 msgid "Default VSZ (virtual memory size) limit for service processes. This is mainly intended to catch and kill processes that leak memory before they eat up everything. Defaults to @samp{256000000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22555 +#: guix-git/doc/guix.texi:22917 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string default-login-user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22560 +#: guix-git/doc/guix.texi:22922 msgid "Login user is internally used by login processes. This is the most untrusted user in Dovecot system. It shouldn't have access to anything at all. Defaults to @samp{\"dovenull\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22562 +#: guix-git/doc/guix.texi:22924 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string default-internal-user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22567 +#: guix-git/doc/guix.texi:22929 msgid "Internal user is used by unprivileged processes. It should be separate from login user, so that login processes can't disturb other processes. Defaults to @samp{\"dovecot\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22569 +#: guix-git/doc/guix.texi:22931 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string ssl?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22572 +#: guix-git/doc/guix.texi:22934 msgid "SSL/TLS support: yes, no, required. . Defaults to @samp{\"required\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22574 +#: guix-git/doc/guix.texi:22936 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string ssl-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22577 +#: guix-git/doc/guix.texi:22939 msgid "PEM encoded X.509 SSL/TLS certificate (public key). Defaults to @samp{\" was automatically rejected:%n%r\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22687 +#: guix-git/doc/guix.texi:23049 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string recipient-delimiter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22691 +#: guix-git/doc/guix.texi:23053 msgid "Delimiter character between local-part and detail in email address. Defaults to @samp{\"+\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22693 +#: guix-git/doc/guix.texi:23055 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string lda-original-recipient-header" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22699 +#: guix-git/doc/guix.texi:23061 msgid "Header where the original recipient address (SMTP's RCPT TO: address) is taken from if not available elsewhere. With dovecot-lda -a parameter overrides this. A commonly used header for this is X-Original-To. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22701 +#: guix-git/doc/guix.texi:23063 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean lda-mailbox-autocreate?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22705 +#: guix-git/doc/guix.texi:23067 msgid "Should saving a mail to a nonexistent mailbox automatically create it?. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22707 +#: guix-git/doc/guix.texi:23069 #, no-wrap msgid "{@code{dovecot-configuration} parameter} boolean lda-mailbox-autosubscribe?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22711 +#: guix-git/doc/guix.texi:23073 msgid "Should automatically created mailboxes be also automatically subscribed?. Defaults to @samp{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22713 +#: guix-git/doc/guix.texi:23075 #, no-wrap msgid "{@code{dovecot-configuration} parameter} non-negative-integer imap-max-line-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22719 +#: guix-git/doc/guix.texi:23081 msgid "Maximum IMAP command line length. Some clients generate very long command lines with huge mailboxes, so you may need to raise this if you get \"Too long argument\" or \"IMAP command line too large\" errors often. Defaults to @samp{64000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22721 +#: guix-git/doc/guix.texi:23083 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-logout-format" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22723 +#: guix-git/doc/guix.texi:23085 msgid "IMAP logout format string:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22724 +#: guix-git/doc/guix.texi:23086 #, no-wrap msgid "%i" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22726 +#: guix-git/doc/guix.texi:23088 msgid "total number of bytes read from client" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22726 +#: guix-git/doc/guix.texi:23088 #, no-wrap msgid "%o" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22728 +#: guix-git/doc/guix.texi:23090 msgid "total number of bytes sent to client." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22731 +#: guix-git/doc/guix.texi:23093 msgid "See @file{doc/wiki/Variables.txt} for a list of all the variables you can use. Defaults to @samp{\"in=%i out=%o deleted=%@{deleted@} expunged=%@{expunged@} trashed=%@{trashed@} hdr_count=%@{fetch_hdr_count@} hdr_bytes=%@{fetch_hdr_bytes@} body_count=%@{fetch_body_count@} body_bytes=%@{fetch_body_bytes@}\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22733 +#: guix-git/doc/guix.texi:23095 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-capability" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22737 +#: guix-git/doc/guix.texi:23099 msgid "Override the IMAP CAPABILITY response. If the value begins with '+', add the given capabilities on top of the defaults (e.g.@: +XFOO XBAR). Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22739 +#: guix-git/doc/guix.texi:23101 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-idle-notify-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22743 +#: guix-git/doc/guix.texi:23105 msgid "How long to wait between \"OK Still here\" notifications when client is IDLEing. Defaults to @samp{\"2 mins\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22745 +#: guix-git/doc/guix.texi:23107 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-id-send" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22751 +#: guix-git/doc/guix.texi:23113 msgid "ID field names and values to send to clients. Using * as the value makes Dovecot use the default value. The following fields have default values currently: name, version, os, os-version, support-url, support-email. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22753 +#: guix-git/doc/guix.texi:23115 #, no-wrap msgid "{@code{dovecot-configuration} parameter} string imap-id-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22756 +#: guix-git/doc/guix.texi:23118 msgid "ID fields sent by client to log. * means everything. Defaults to @samp{\"\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22758 +#: guix-git/doc/guix.texi:23120 #, no-wrap msgid "{@code{dovecot-configuration} parameter} space-separated-string-list imap-client-workarounds" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:22760 +#: guix-git/doc/guix.texi:23122 msgid "Workarounds for various client bugs:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:22762 +#: guix-git/doc/guix.texi:23124 #, no-wrap msgid "delay-newmail" msgstr "" #. type: table -#: guix-git/doc/guix.texi:22769 +#: guix-git/doc/guix.texi:23131 msgid "Send EXISTS/RECENT new mail notifications only when replying to NOOP and CHECK commands. Some clients ignore them otherwise, for example OSX Mail (' before setting it here, to get a feel for which cipher suites you will get. After setting this option, it is recommend that you inspect your Murmur log to ensure that Murmur is using the cipher suites that you expected it to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24159 +#: guix-git/doc/guix.texi:24521 msgid "Note: Changing this option may impact the backwards compatibility of your Murmur server, and can remove the ability for older Mumble clients to be able to connect to it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:24160 +#: guix-git/doc/guix.texi:24522 #, no-wrap msgid "@code{public-registration} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:24162 +#: guix-git/doc/guix.texi:24524 msgid "Must be a @code{} record or @code{#f}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24167 +#: guix-git/doc/guix.texi:24529 msgid "You can optionally register your server in the public server list that the @code{mumble} client shows on startup. You cannot register your server if you have set a @code{server-password}, or set @code{allow-ping} to @code{#f}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24169 +#: guix-git/doc/guix.texi:24531 msgid "It might take a few hours until it shows up in the public list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:24170 guix-git/doc/guix.texi:26407 +#: guix-git/doc/guix.texi:24532 guix-git/doc/guix.texi:26744 #, no-wrap msgid "@code{file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:24172 +#: guix-git/doc/guix.texi:24534 msgid "Optional alternative override for this configuration." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24175 +#: guix-git/doc/guix.texi:24537 #, no-wrap msgid "{Data Type} murmur-public-registration-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24177 +#: guix-git/doc/guix.texi:24539 msgid "Configuration for public registration of a murmur service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24181 +#: guix-git/doc/guix.texi:24543 msgid "This is a display name for your server. Not to be confused with the hostname." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:24182 guix-git/doc/guix.texi:33135 -#: guix-git/doc/guix.texi:34304 +#: guix-git/doc/guix.texi:24544 guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:34743 #, no-wrap msgid "password" msgstr "" #. type: table -#: guix-git/doc/guix.texi:24185 +#: guix-git/doc/guix.texi:24547 msgid "A password to identify your registration. Subsequent updates will need the same password. Don't lose your password." msgstr "" #. type: table -#: guix-git/doc/guix.texi:24189 +#: guix-git/doc/guix.texi:24551 msgid "This should be a @code{http://} or @code{https://} link to your web site." msgstr "" #. type: item -#: guix-git/doc/guix.texi:24190 guix-git/doc/guix.texi:27292 +#: guix-git/doc/guix.texi:24552 guix-git/doc/guix.texi:27629 #, no-wrap msgid "@code{hostname} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:24193 +#: guix-git/doc/guix.texi:24555 msgid "By default your server will be listed by its IP address. If it is set your server will be linked by this host name instead." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24203 +#: guix-git/doc/guix.texi:24565 msgid "The @code{(gnu services file-sharing)} module provides services that assist with transferring files over peer-to-peer file-sharing networks." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:24204 +#: guix-git/doc/guix.texi:24566 #, fuzzy, no-wrap msgid "Transmission Daemon Service" msgstr "版本控制服务" #. type: Plain text -#: guix-git/doc/guix.texi:24212 +#: guix-git/doc/guix.texi:24574 msgid "@uref{https://transmissionbt.com/, Transmission} is a flexible BitTorrent client that offers a variety of graphical and command-line interfaces. A @code{transmission-daemon-service-type} service provides Transmission's headless variant, @command{transmission-daemon}, as a system service, allowing users to share files via BitTorrent even when they are not logged in." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24213 +#: guix-git/doc/guix.texi:24575 #, no-wrap msgid "{Scheme Variable} transmission-daemon-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24217 +#: guix-git/doc/guix.texi:24579 msgid "The service type for the Transmission Daemon BitTorrent client. Its value must be a @code{transmission-daemon-configuration} object as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24228 +#: guix-git/doc/guix.texi:24590 #, no-wrap msgid "" "(service transmission-daemon-service-type\n" @@ -43778,7 +44404,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24233 +#: guix-git/doc/guix.texi:24595 #, no-wrap msgid "" " ;; Accept requests from this and other hosts on the\n" @@ -43789,7 +44415,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24237 +#: guix-git/doc/guix.texi:24599 #, no-wrap msgid "" " ;; Limit bandwidth use during work hours\n" @@ -43799,7 +44425,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24244 +#: guix-git/doc/guix.texi:24606 #, no-wrap msgid "" " (alt-speed-time-enabled? #t)\n" @@ -43811,49 +44437,49 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24257 +#: guix-git/doc/guix.texi:24619 msgid "Once the service is started, users can interact with the daemon through its Web interface (at @code{http://localhost:9091/}) or by using the @command{transmission-remote} command-line tool, available in the @code{transmission} package. (Emacs users may want to also consider the @code{emacs-transmission} package.) Both communicate with the daemon through its remote procedure call (RPC) interface, which by default is available to all users on the system; you may wish to change this by assigning values to the @code{rpc-authentication-required?}, @code{rpc-username} and @code{rpc-password} settings, as shown in the example above and documented further below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24265 +#: guix-git/doc/guix.texi:24627 msgid "The value for @code{rpc-password} must be a password hash of the type generated and used by Transmission clients. This can be copied verbatim from an existing @file{settings.json} file, if another Transmission client is already being used. Otherwise, the @code{transmission-password-hash} and @code{transmission-random-salt} procedures provided by this module can be used to obtain a suitable hash value." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24266 +#: guix-git/doc/guix.texi:24628 #, no-wrap msgid "{Scheme Procedure} transmission-password-hash @var{password} @var{salt}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24270 +#: guix-git/doc/guix.texi:24632 msgid "Returns a string containing the result of hashing @var{password} together with @var{salt}, in the format recognized by Transmission clients for their @code{rpc-password} configuration setting." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24274 +#: guix-git/doc/guix.texi:24636 msgid "@var{salt} must be an eight-character string. The @code{transmission-random-salt} procedure can be used to generate a suitable salt value at random." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24276 +#: guix-git/doc/guix.texi:24638 #, no-wrap msgid "{Scheme Procedure} transmission-random-salt" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:24280 +#: guix-git/doc/guix.texi:24642 msgid "Returns a string containing a random, eight-character salt value of the type generated and used by Transmission clients, suitable for passing to the @code{transmission-password-hash} procedure." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24286 +#: guix-git/doc/guix.texi:24648 msgid "These procedures are accessible from within a Guile REPL started with the @command{guix repl} command (@pxref{Invoking guix repl}). This is useful for obtaining a random salt value to provide as the second parameter to `transmission-password-hash`, as in this example session:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:24292 +#: guix-git/doc/guix.texi:24654 #, no-wrap msgid "" "$ guix repl\n" @@ -43863,12 +44489,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24295 +#: guix-git/doc/guix.texi:24657 msgid "Alternatively, a complete password hash can generated in a single step:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:24300 +#: guix-git/doc/guix.texi:24662 #, no-wrap msgid "" "scheme@@(guix-user)> (transmission-password-hash \"transmission\"\n" @@ -43877,481 +44503,481 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24305 +#: guix-git/doc/guix.texi:24667 msgid "The resulting string can be used as-is for the value of @code{rpc-password}, allowing the password to be kept hidden even in the operating-system configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24314 +#: guix-git/doc/guix.texi:24676 msgid "Torrent files downloaded by the daemon are directly accessible only to users in the ``transmission'' user group, who receive read-only access to the directory specified by the @code{download-dir} configuration setting (and also the directory specified by @code{incomplete-dir}, if @code{incomplete-dir-enabled?} is @code{#t}). Downloaded files can be moved to another directory or deleted altogether using @command{transmission-remote} with its @code{--move} and @code{--remove-and-delete} options." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24321 +#: guix-git/doc/guix.texi:24683 msgid "If the @code{watch-dir-enabled?} setting is set to @code{#t}, users in the ``transmission'' group are able also to place @file{.torrent} files in the directory specified by @code{watch-dir} to have the corresponding torrents added by the daemon. (The @code{trash-original-torrent-files?} setting controls whether the daemon deletes these files after processing them.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24326 +#: guix-git/doc/guix.texi:24688 msgid "Some of the daemon's configuration settings can be changed temporarily by @command{transmission-remote} and similar tools. To undo these changes, use the service's @code{reload} action to have the daemon reload its settings from disk:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:24329 +#: guix-git/doc/guix.texi:24691 #, no-wrap msgid "# herd reload transmission-daemon\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24333 +#: guix-git/doc/guix.texi:24695 msgid "The full set of available configuration settings is defined by the @code{transmission-daemon-configuration} data type." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:24334 +#: guix-git/doc/guix.texi:24696 #, fuzzy, no-wrap msgid "{Data Type} transmission-daemon-configuration" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:24338 +#: guix-git/doc/guix.texi:24700 msgid "The data type representing configuration settings for Transmission Daemon. These correspond directly to the settings recognized by Transmission clients in their @file{settings.json} file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:24352 +#: guix-git/doc/guix.texi:24714 msgid "Available @code{transmission-daemon-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24353 +#: guix-git/doc/guix.texi:24715 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} package transmission" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24355 +#: guix-git/doc/guix.texi:24717 #, fuzzy msgid "The Transmission package to use." msgstr "软件包数据类型。" #. type: deftypevr -#: guix-git/doc/guix.texi:24358 +#: guix-git/doc/guix.texi:24720 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer stop-wait-period" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24364 +#: guix-git/doc/guix.texi:24726 msgid "The period, in seconds, to wait when stopping the service for @command{transmission-daemon} to exit before killing its process. This allows the daemon time to complete its housekeeping and send a final update to trackers as it shuts down. On slow hosts, or hosts with a slow network connection, this value may need to be increased." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24366 guix-git/doc/guix.texi:24738 -#: guix-git/doc/guix.texi:32101 guix-git/doc/guix.texi:32336 -#: guix-git/doc/guix.texi:32344 guix-git/doc/guix.texi:32352 +#: guix-git/doc/guix.texi:24728 guix-git/doc/guix.texi:25100 +#: guix-git/doc/guix.texi:32466 guix-git/doc/guix.texi:32701 +#: guix-git/doc/guix.texi:32709 guix-git/doc/guix.texi:32717 msgid "Defaults to @samp{10}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24369 +#: guix-git/doc/guix.texi:24731 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string download-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24371 +#: guix-git/doc/guix.texi:24733 msgid "The directory to which torrent files are downloaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24373 +#: guix-git/doc/guix.texi:24735 msgid "Defaults to @samp{\"/var/lib/transmission-daemon/downloads\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24376 +#: guix-git/doc/guix.texi:24738 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean incomplete-dir-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24381 +#: guix-git/doc/guix.texi:24743 msgid "If @code{#t}, files will be held in @code{incomplete-dir} while their torrent is being downloaded, then moved to @code{download-dir} once the torrent is complete. Otherwise, files for all torrents (including those still being downloaded) will be placed in @code{download-dir}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24386 +#: guix-git/doc/guix.texi:24748 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string incomplete-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24389 +#: guix-git/doc/guix.texi:24751 msgid "The directory in which files from incompletely downloaded torrents will be held when @code{incomplete-dir-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24394 +#: guix-git/doc/guix.texi:24756 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} umask umask" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24397 +#: guix-git/doc/guix.texi:24759 msgid "The file mode creation mask used for downloaded files. (See the @command{umask} man page for more information.)" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24399 +#: guix-git/doc/guix.texi:24761 msgid "Defaults to @samp{18}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24402 +#: guix-git/doc/guix.texi:24764 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rename-partial-files?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24405 +#: guix-git/doc/guix.texi:24767 msgid "When @code{#t}, ``.part'' is appended to the name of partially downloaded files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24410 +#: guix-git/doc/guix.texi:24772 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} preallocation-mode preallocation" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24415 +#: guix-git/doc/guix.texi:24777 msgid "The mode by which space should be preallocated for downloaded files, one of @code{none}, @code{fast} (or @code{sparse}) and @code{full}. Specifying @code{full} will minimize disk fragmentation at a cost to file-creation speed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24417 +#: guix-git/doc/guix.texi:24779 msgid "Defaults to @samp{fast}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24420 +#: guix-git/doc/guix.texi:24782 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean watch-dir-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24425 +#: guix-git/doc/guix.texi:24787 msgid "If @code{#t}, the directory specified by @code{watch-dir} will be watched for new @file{.torrent} files and the torrents they describe added automatically (and the original files removed, if @code{trash-original-torrent-files?} is @code{#t})." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24430 +#: guix-git/doc/guix.texi:24792 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string watch-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24433 +#: guix-git/doc/guix.texi:24795 msgid "The directory to be watched for @file{.torrent} files indicating new torrents to be added, when @code{watch-dir-enabled} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24438 +#: guix-git/doc/guix.texi:24800 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean trash-original-torrent-files?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24442 +#: guix-git/doc/guix.texi:24804 msgid "When @code{#t}, @file{.torrent} files will be deleted from the watch directory once their torrent has been added (see @code{watch-directory-enabled?})." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24447 +#: guix-git/doc/guix.texi:24809 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean speed-limit-down-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24450 +#: guix-git/doc/guix.texi:24812 msgid "When @code{#t}, the daemon's download speed will be limited to the rate specified by @code{speed-limit-down}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24455 +#: guix-git/doc/guix.texi:24817 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer speed-limit-down" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24457 +#: guix-git/doc/guix.texi:24819 msgid "The default global-maximum download speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24462 +#: guix-git/doc/guix.texi:24824 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean speed-limit-up-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24465 +#: guix-git/doc/guix.texi:24827 msgid "When @code{#t}, the daemon's upload speed will be limited to the rate specified by @code{speed-limit-up}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24470 +#: guix-git/doc/guix.texi:24832 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer speed-limit-up" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24472 +#: guix-git/doc/guix.texi:24834 msgid "The default global-maximum upload speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24477 +#: guix-git/doc/guix.texi:24839 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean alt-speed-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24483 +#: guix-git/doc/guix.texi:24845 msgid "When @code{#t}, the alternate speed limits @code{alt-speed-down} and @code{alt-speed-up} are used (in place of @code{speed-limit-down} and @code{speed-limit-up}, if they are enabled) to constrain the daemon's bandwidth usage. This can be scheduled to occur automatically at certain times during the week; see @code{alt-speed-time-enabled?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24488 +#: guix-git/doc/guix.texi:24850 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-down" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24490 +#: guix-git/doc/guix.texi:24852 msgid "The alternate global-maximum download speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24492 guix-git/doc/guix.texi:24499 -#: guix-git/doc/guix.texi:24671 guix-git/doc/guix.texi:32108 -#: guix-git/doc/guix.texi:32123 +#: guix-git/doc/guix.texi:24854 guix-git/doc/guix.texi:24861 +#: guix-git/doc/guix.texi:25033 guix-git/doc/guix.texi:32473 +#: guix-git/doc/guix.texi:32488 msgid "Defaults to @samp{50}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24495 +#: guix-git/doc/guix.texi:24857 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-up" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24497 +#: guix-git/doc/guix.texi:24859 msgid "The alternate global-maximum upload speed, in kilobytes per second." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24502 +#: guix-git/doc/guix.texi:24864 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean alt-speed-time-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24507 +#: guix-git/doc/guix.texi:24869 msgid "When @code{#t}, the alternate speed limits @code{alt-speed-down} and @code{alt-speed-up} will be enabled automatically during the periods specified by @code{alt-speed-time-day}, @code{alt-speed-time-begin} and @code{alt-time-speed-end}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24512 +#: guix-git/doc/guix.texi:24874 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} day-list alt-speed-time-day" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24517 +#: guix-git/doc/guix.texi:24879 msgid "The days of the week on which the alternate-speed schedule should be used, specified either as a list of days (@code{sunday}, @code{monday}, and so on) or using one of the symbols @code{weekdays}, @code{weekends} or @code{all}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24519 +#: guix-git/doc/guix.texi:24881 msgid "Defaults to @samp{all}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24522 +#: guix-git/doc/guix.texi:24884 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-time-begin" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24525 +#: guix-git/doc/guix.texi:24887 msgid "The time of day at which to enable the alternate speed limits, expressed as a number of minutes since midnight." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24527 +#: guix-git/doc/guix.texi:24889 msgid "Defaults to @samp{540}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24530 +#: guix-git/doc/guix.texi:24892 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer alt-speed-time-end" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24533 +#: guix-git/doc/guix.texi:24895 msgid "The time of day at which to disable the alternate speed limits, expressed as a number of minutes since midnight." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24535 +#: guix-git/doc/guix.texi:24897 msgid "Defaults to @samp{1020}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24538 +#: guix-git/doc/guix.texi:24900 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string bind-address-ipv4" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24541 +#: guix-git/doc/guix.texi:24903 msgid "The IP address at which to listen for peer connections, or ``0.0.0.0'' to listen at all available IP addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24543 guix-git/doc/guix.texi:24846 -#: guix-git/doc/guix.texi:29969 +#: guix-git/doc/guix.texi:24905 guix-git/doc/guix.texi:25208 +#: guix-git/doc/guix.texi:30334 msgid "Defaults to @samp{\"0.0.0.0\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24546 +#: guix-git/doc/guix.texi:24908 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string bind-address-ipv6" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24549 +#: guix-git/doc/guix.texi:24911 msgid "The IPv6 address at which to listen for peer connections, or ``::'' to listen at all available IPv6 addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24551 +#: guix-git/doc/guix.texi:24913 msgid "Defaults to @samp{\"::\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24554 +#: guix-git/doc/guix.texi:24916 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean peer-port-random-on-start?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24560 +#: guix-git/doc/guix.texi:24922 msgid "If @code{#t}, when the daemon starts it will select a port at random on which to listen for peer connections, from the range specified (inclusively) by @code{peer-port-random-low} and @code{peer-port-random-high}. Otherwise, it listens on the port specified by @code{peer-port}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24565 +#: guix-git/doc/guix.texi:24927 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port-random-low" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24568 +#: guix-git/doc/guix.texi:24930 msgid "The lowest selectable port number when @code{peer-port-random-on-start?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24570 +#: guix-git/doc/guix.texi:24932 msgid "Defaults to @samp{49152}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24573 +#: guix-git/doc/guix.texi:24935 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port-random-high" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24576 +#: guix-git/doc/guix.texi:24938 msgid "The highest selectable port number when @code{peer-port-random-on-start} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24578 +#: guix-git/doc/guix.texi:24940 msgid "Defaults to @samp{65535}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24581 +#: guix-git/doc/guix.texi:24943 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number peer-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24584 +#: guix-git/doc/guix.texi:24946 msgid "The port on which to listen for peer connections when @code{peer-port-random-on-start?} is @code{#f}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24586 +#: guix-git/doc/guix.texi:24948 msgid "Defaults to @samp{51413}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24589 +#: guix-git/doc/guix.texi:24951 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean port-forwarding-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24593 +#: guix-git/doc/guix.texi:24955 msgid "If @code{#t}, the daemon will attempt to configure port-forwarding on an upstream gateway automatically using @acronym{UPnP} and @acronym{NAT-PMP}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24598 +#: guix-git/doc/guix.texi:24960 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} encryption-mode encryption" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24603 +#: guix-git/doc/guix.texi:24965 msgid "The encryption preference for peer connections, one of @code{prefer-unencrypted-connections}, @code{prefer-encrypted-connections} or @code{require-encrypted-connections}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24605 +#: guix-git/doc/guix.texi:24967 msgid "Defaults to @samp{prefer-encrypted-connections}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24608 +#: guix-git/doc/guix.texi:24970 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string peer-congestion-algorithm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24613 +#: guix-git/doc/guix.texi:24975 msgid "The TCP congestion-control algorithm to use for peer connections, specified using a string recognized by the operating system in calls to @code{setsockopt} (or set to @code{disabled}, in which case the operating-system default is used)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24622 +#: guix-git/doc/guix.texi:24984 msgid "Note that on GNU/Linux systems, the kernel must be configured to allow processes to use a congestion-control algorithm not in the default set; otherwise, it will deny these requests with ``Operation not permitted''. To see which algorithms are available on your system and which are currently permitted for use, look at the contents of the files @file{tcp_available_congestion_control} and @file{tcp_allowed_congestion_control} in the @file{/proc/sys/net/ipv4} directory." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24630 +#: guix-git/doc/guix.texi:24992 msgid "As an example, to have Transmission Daemon use @uref{http://www-ece.rice.edu/networks/TCP-LP/,the TCP Low Priority congestion-control algorithm}, you'll need to modify your kernel configuration to build in support for the algorithm, then update your operating-system configuration to allow its use by adding a @code{sysctl-service-type} service (or updating the existing one's configuration) with lines like the following:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24637 +#: guix-git/doc/guix.texi:24999 #, no-wrap msgid "" "(service sysctl-service-type\n" @@ -44362,529 +44988,529 @@ msgid "" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24640 +#: guix-git/doc/guix.texi:25002 msgid "The Transmission Daemon configuration can then be updated with" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:24643 +#: guix-git/doc/guix.texi:25005 #, no-wrap msgid "(peer-congestion-algorithm \"lp\")\n" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24646 +#: guix-git/doc/guix.texi:25008 msgid "and the system reconfigured to have the changes take effect." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24651 +#: guix-git/doc/guix.texi:25013 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} tcp-type-of-service peer-socket-tos" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24655 +#: guix-git/doc/guix.texi:25017 msgid "The type of service to request in outgoing @acronym{TCP} packets, one of @code{default}, @code{low-cost}, @code{throughput}, @code{low-delay} and @code{reliability}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24657 +#: guix-git/doc/guix.texi:25019 msgid "Defaults to @samp{default}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24660 +#: guix-git/doc/guix.texi:25022 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-limit-global" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24662 +#: guix-git/doc/guix.texi:25024 msgid "The global limit on the number of connected peers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24664 +#: guix-git/doc/guix.texi:25026 msgid "Defaults to @samp{200}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24667 +#: guix-git/doc/guix.texi:25029 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-limit-per-torrent" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24669 +#: guix-git/doc/guix.texi:25031 msgid "The per-torrent limit on the number of connected peers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24674 +#: guix-git/doc/guix.texi:25036 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer upload-slots-per-torrent" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24677 +#: guix-git/doc/guix.texi:25039 msgid "The maximum number of peers to which the daemon will upload data simultaneously for each torrent." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24679 +#: guix-git/doc/guix.texi:25041 msgid "Defaults to @samp{14}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24682 +#: guix-git/doc/guix.texi:25044 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer peer-id-ttl-hours" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24685 +#: guix-git/doc/guix.texi:25047 msgid "The maximum lifespan, in hours, of the peer ID associated with each public torrent before it is regenerated." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24687 +#: guix-git/doc/guix.texi:25049 msgid "Defaults to @samp{6}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24690 +#: guix-git/doc/guix.texi:25052 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean blocklist-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24693 +#: guix-git/doc/guix.texi:25055 msgid "When @code{#t}, the daemon will ignore peers mentioned in the blocklist it has most recently downloaded from @code{blocklist-url}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24698 +#: guix-git/doc/guix.texi:25060 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string blocklist-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24702 +#: guix-git/doc/guix.texi:25064 msgid "The URL of a peer blocklist (in @acronym{P2P}-plaintext or eMule @file{.dat} format) to be periodically downloaded and applied when @code{blocklist-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24707 +#: guix-git/doc/guix.texi:25069 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean download-queue-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24710 +#: guix-git/doc/guix.texi:25072 msgid "If @code{#t}, the daemon will be limited to downloading at most @code{download-queue-size} non-stalled torrents simultaneously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24715 +#: guix-git/doc/guix.texi:25077 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer download-queue-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24719 +#: guix-git/doc/guix.texi:25081 msgid "The size of the daemon's download queue, which limits the number of non-stalled torrents it will download at any one time when @code{download-queue-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24724 +#: guix-git/doc/guix.texi:25086 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean seed-queue-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24727 +#: guix-git/doc/guix.texi:25089 msgid "If @code{#t}, the daemon will be limited to seeding at most @code{seed-queue-size} non-stalled torrents simultaneously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24732 +#: guix-git/doc/guix.texi:25094 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer seed-queue-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24736 +#: guix-git/doc/guix.texi:25098 msgid "The size of the daemon's seed queue, which limits the number of non-stalled torrents it will seed at any one time when @code{seed-queue-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24741 +#: guix-git/doc/guix.texi:25103 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean queue-stalled-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24746 +#: guix-git/doc/guix.texi:25108 msgid "When @code{#t}, the daemon will consider torrents for which it has not shared data in the past @code{queue-stalled-minutes} minutes to be stalled and not count them against its @code{download-queue-size} and @code{seed-queue-size} limits." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24751 +#: guix-git/doc/guix.texi:25113 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer queue-stalled-minutes" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24755 +#: guix-git/doc/guix.texi:25117 msgid "The maximum period, in minutes, a torrent may be idle before it is considered to be stalled, when @code{queue-stalled-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24760 +#: guix-git/doc/guix.texi:25122 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean ratio-limit-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24763 +#: guix-git/doc/guix.texi:25125 msgid "When @code{#t}, a torrent being seeded will automatically be paused once it reaches the ratio specified by @code{ratio-limit}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24768 +#: guix-git/doc/guix.texi:25130 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-rational ratio-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24771 +#: guix-git/doc/guix.texi:25133 msgid "The ratio at which a torrent being seeded will be paused, when @code{ratio-limit-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24773 +#: guix-git/doc/guix.texi:25135 msgid "Defaults to @samp{2.0}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24776 +#: guix-git/doc/guix.texi:25138 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean idle-seeding-limit-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24779 +#: guix-git/doc/guix.texi:25141 msgid "When @code{#t}, a torrent being seeded will automatically be paused once it has been idle for @code{idle-seeding-limit} minutes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24784 +#: guix-git/doc/guix.texi:25146 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer idle-seeding-limit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24788 +#: guix-git/doc/guix.texi:25150 msgid "The maximum period, in minutes, a torrent being seeded may be idle before it is paused, when @code{idle-seeding-limit-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24793 +#: guix-git/doc/guix.texi:25155 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean dht-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24797 +#: guix-git/doc/guix.texi:25159 msgid "Enable @uref{http://bittorrent.org/beps/bep_0005.html,the distributed hash table (@acronym{DHT}) protocol}, which supports the use of trackerless torrents." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24802 +#: guix-git/doc/guix.texi:25164 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean lpd-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24807 +#: guix-git/doc/guix.texi:25169 msgid "Enable @uref{https://en.wikipedia.org/wiki/Local_Peer_Discovery,local peer discovery} (@acronym{LPD}), which allows the discovery of peers on the local network and may reduce the amount of data sent over the public Internet." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24812 +#: guix-git/doc/guix.texi:25174 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean pex-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24816 +#: guix-git/doc/guix.texi:25178 msgid "Enable @uref{https://en.wikipedia.org/wiki/Peer_exchange,peer exchange} (@acronym{PEX}), which reduces the daemon's reliance on external trackers and may improve its performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24821 +#: guix-git/doc/guix.texi:25183 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean utp-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24826 +#: guix-git/doc/guix.texi:25188 msgid "Enable @uref{http://bittorrent.org/beps/bep_0029.html,the micro transport protocol} (@acronym{uTP}), which aims to reduce the impact of BitTorrent traffic on other users of the local network while maintaining full utilization of the available bandwidth." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24831 +#: guix-git/doc/guix.texi:25193 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24836 +#: guix-git/doc/guix.texi:25198 msgid "If @code{#t}, enable the remote procedure call (@acronym{RPC}) interface, which allows remote control of the daemon via its Web interface, the @command{transmission-remote} command-line client, and similar tools." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24841 +#: guix-git/doc/guix.texi:25203 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string rpc-bind-address" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24844 +#: guix-git/doc/guix.texi:25206 msgid "The IP address at which to listen for @acronym{RPC} connections, or ``0.0.0.0'' to listen at all available IP addresses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24849 +#: guix-git/doc/guix.texi:25211 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} port-number rpc-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24851 +#: guix-git/doc/guix.texi:25213 msgid "The port on which to listen for @acronym{RPC} connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24853 +#: guix-git/doc/guix.texi:25215 msgid "Defaults to @samp{9091}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24856 +#: guix-git/doc/guix.texi:25218 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string rpc-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24858 +#: guix-git/doc/guix.texi:25220 msgid "The path prefix to use in the @acronym{RPC}-endpoint @acronym{URL}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24860 +#: guix-git/doc/guix.texi:25222 msgid "Defaults to @samp{\"/transmission/\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24863 +#: guix-git/doc/guix.texi:25225 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-authentication-required?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24868 +#: guix-git/doc/guix.texi:25230 msgid "When @code{#t}, clients must authenticate (see @code{rpc-username} and @code{rpc-password}) when using the @acronym{RPC} interface. Note this has the side effect of disabling host-name whitelisting (see @code{rpc-host-whitelist-enabled?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24873 +#: guix-git/doc/guix.texi:25235 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-string rpc-username" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24876 +#: guix-git/doc/guix.texi:25238 msgid "The username required by clients to access the @acronym{RPC} interface when @code{rpc-authentication-required?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24881 +#: guix-git/doc/guix.texi:25243 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-transmission-password-hash rpc-password" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24887 +#: guix-git/doc/guix.texi:25249 msgid "The password required by clients to access the @acronym{RPC} interface when @code{rpc-authentication-required?} is @code{#t}. This must be specified using a password hash in the format recognized by Transmission clients, either copied from an existing @file{settings.json} file or generated using the @code{transmission-password-hash} procedure." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24892 +#: guix-git/doc/guix.texi:25254 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-whitelist-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24895 +#: guix-git/doc/guix.texi:25257 msgid "When @code{#t}, @acronym{RPC} requests will be accepted only when they originate from an address specified in @code{rpc-whitelist}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24900 +#: guix-git/doc/guix.texi:25262 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string-list rpc-whitelist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24904 +#: guix-git/doc/guix.texi:25266 msgid "The list of IP and IPv6 addresses from which @acronym{RPC} requests will be accepted when @code{rpc-whitelist-enabled?} is @code{#t}. Wildcards may be specified using @samp{*}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24906 +#: guix-git/doc/guix.texi:25268 msgid "Defaults to @samp{(\"127.0.0.1\" \"::1\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24909 +#: guix-git/doc/guix.texi:25271 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean rpc-host-whitelist-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24914 +#: guix-git/doc/guix.texi:25276 msgid "When @code{#t}, @acronym{RPC} requests will be accepted only when they are addressed to a host named in @code{rpc-host-whitelist}. Note that requests to ``localhost'' or ``localhost.'', or to a numeric address, are always accepted regardless of these settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24917 +#: guix-git/doc/guix.texi:25279 msgid "Note also this functionality is disabled when @code{rpc-authentication-required?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24922 +#: guix-git/doc/guix.texi:25284 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} string-list rpc-host-whitelist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24925 +#: guix-git/doc/guix.texi:25287 msgid "The list of host names recognized by the @acronym{RPC} server when @code{rpc-host-whitelist-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24930 +#: guix-git/doc/guix.texi:25292 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} message-level message-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24934 +#: guix-git/doc/guix.texi:25296 msgid "The minimum severity level of messages to be logged (to @file{/var/log/transmission.log}) by the daemon, one of @code{none} (no logging), @code{error}, @code{info} and @code{debug}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24939 +#: guix-git/doc/guix.texi:25301 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean start-added-torrents?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24942 +#: guix-git/doc/guix.texi:25304 msgid "When @code{#t}, torrents are started as soon as they are added; otherwise, they are added in ``paused'' state." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24947 +#: guix-git/doc/guix.texi:25309 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean script-torrent-done-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24951 +#: guix-git/doc/guix.texi:25313 msgid "When @code{#t}, the script specified by @code{script-torrent-done-filename} will be invoked each time a torrent completes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24956 +#: guix-git/doc/guix.texi:25318 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} maybe-file-object script-torrent-done-filename" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24960 +#: guix-git/doc/guix.texi:25322 msgid "A file name or file-like object specifying a script to run each time a torrent completes, when @code{script-torrent-done-enabled?} is @code{#t}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24965 +#: guix-git/doc/guix.texi:25327 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean scrape-paused-torrents-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24968 +#: guix-git/doc/guix.texi:25330 msgid "When @code{#t}, the daemon will scrape trackers for a torrent even when the torrent is paused." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24973 +#: guix-git/doc/guix.texi:25335 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} non-negative-integer cache-size-mb" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24977 +#: guix-git/doc/guix.texi:25339 msgid "The amount of memory, in megabytes, to allocate for the daemon's in-memory cache. A larger value may increase performance by reducing the frequency of disk I/O." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24979 +#: guix-git/doc/guix.texi:25341 msgid "Defaults to @samp{4}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24982 +#: guix-git/doc/guix.texi:25344 #, no-wrap msgid "{@code{transmission-daemon-configuration} parameter} boolean prefetch-enabled?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:24986 +#: guix-git/doc/guix.texi:25348 msgid "When @code{#t}, the daemon will try to improve I/O performance by hinting to the operating system which data is likely to be read next from disk to satisfy requests from peers." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:24999 +#: guix-git/doc/guix.texi:25361 #, no-wrap msgid "Tailon Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25003 +#: guix-git/doc/guix.texi:25365 msgid "@uref{https://tailon.readthedocs.io/, Tailon} is a web application for viewing and searching log files." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25006 +#: guix-git/doc/guix.texi:25368 msgid "The following example will configure the service with default values. By default, Tailon can be accessed on port 8080 (@code{http://localhost:8080})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25009 +#: guix-git/doc/guix.texi:25371 #, no-wrap msgid "(service tailon-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25013 +#: guix-git/doc/guix.texi:25375 msgid "The following example customises more of the Tailon configuration, adding @command{sed} to the list of allowed commands." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25020 +#: guix-git/doc/guix.texi:25382 #, no-wrap msgid "" "(service tailon-service-type\n" @@ -44895,34 +45521,34 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25023 +#: guix-git/doc/guix.texi:25385 #, no-wrap msgid "{Data Type} tailon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25026 +#: guix-git/doc/guix.texi:25388 msgid "Data type representing the configuration of Tailon. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25028 +#: guix-git/doc/guix.texi:25390 #, no-wrap msgid "@code{config-file} (default: @code{(tailon-configuration-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25032 +#: guix-git/doc/guix.texi:25394 msgid "The configuration file to use for Tailon. This can be set to a @dfn{tailon-configuration-file} record value, or any gexp (@pxref{G-Expressions})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25035 +#: guix-git/doc/guix.texi:25397 msgid "For example, to instead use a local file, the @code{local-file} function can be used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25040 +#: guix-git/doc/guix.texi:25402 #, no-wrap msgid "" "(service tailon-service-type\n" @@ -44931,144 +45557,144 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25042 +#: guix-git/doc/guix.texi:25404 #, no-wrap msgid "@code{package} (default: @code{tailon})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25044 +#: guix-git/doc/guix.texi:25406 msgid "The tailon package to use." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25048 +#: guix-git/doc/guix.texi:25410 #, no-wrap msgid "{Data Type} tailon-configuration-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25051 +#: guix-git/doc/guix.texi:25413 msgid "Data type representing the configuration options for Tailon. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25053 +#: guix-git/doc/guix.texi:25415 #, no-wrap msgid "@code{files} (default: @code{(list \"/var/log\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25058 +#: guix-git/doc/guix.texi:25420 msgid "List of files to display. The list can include strings for a single file or directory, or a list, where the first item is the name of a subsection, and the remaining items are the files or directories in that subsection." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25059 +#: guix-git/doc/guix.texi:25421 #, no-wrap msgid "@code{bind} (default: @code{\"localhost:8080\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25061 +#: guix-git/doc/guix.texi:25423 msgid "Address and port to which Tailon should bind on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25062 +#: guix-git/doc/guix.texi:25424 #, no-wrap msgid "@code{relative-root} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25064 +#: guix-git/doc/guix.texi:25426 msgid "URL path to use for Tailon, set to @code{#f} to not use a path." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25065 +#: guix-git/doc/guix.texi:25427 #, no-wrap msgid "@code{allow-transfers?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25067 +#: guix-git/doc/guix.texi:25429 msgid "Allow downloading the log files in the web interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25068 +#: guix-git/doc/guix.texi:25430 #, no-wrap msgid "@code{follow-names?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25070 +#: guix-git/doc/guix.texi:25432 msgid "Allow tailing of not-yet existent files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25071 +#: guix-git/doc/guix.texi:25433 #, no-wrap msgid "@code{tail-lines} (default: @code{200})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25073 +#: guix-git/doc/guix.texi:25435 msgid "Number of lines to read initially from each file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25074 +#: guix-git/doc/guix.texi:25436 #, no-wrap msgid "@code{allowed-commands} (default: @code{(list \"tail\" \"grep\" \"awk\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25076 +#: guix-git/doc/guix.texi:25438 msgid "Commands to allow running. By default, @code{sed} is disabled." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25079 +#: guix-git/doc/guix.texi:25441 msgid "Set @code{debug?} to @code{#t} to show debug messages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25080 +#: guix-git/doc/guix.texi:25442 #, no-wrap msgid "@code{wrap-lines} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25084 +#: guix-git/doc/guix.texi:25446 msgid "Initial line wrapping state in the web interface. Set to @code{#t} to initially wrap lines (the default), or to @code{#f} to initially not wrap lines." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25085 +#: guix-git/doc/guix.texi:25447 #, no-wrap msgid "@code{http-auth} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25089 +#: guix-git/doc/guix.texi:25451 msgid "HTTP authentication type to use. Set to @code{#f} to disable authentication (the default). Supported values are @code{\"digest\"} or @code{\"basic\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25090 +#: guix-git/doc/guix.texi:25452 #, no-wrap msgid "@code{users} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25095 +#: guix-git/doc/guix.texi:25457 msgid "If HTTP authentication is enabled (see @code{http-auth}), access will be restricted to the credentials provided here. To configure users, use a list of pairs, where the first element of the pair is the username, and the 2nd element of the pair is the password." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25101 +#: guix-git/doc/guix.texi:25463 #, no-wrap msgid "" "(tailon-configuration-file\n" @@ -45078,35 +45704,35 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25107 +#: guix-git/doc/guix.texi:25469 #, no-wrap msgid "Darkstat Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25108 +#: guix-git/doc/guix.texi:25470 #, no-wrap msgid "darkstat" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25111 +#: guix-git/doc/guix.texi:25473 msgid "Darkstat is a packet sniffer that captures network traffic, calculates statistics about usage, and serves reports over HTTP." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25112 +#: guix-git/doc/guix.texi:25474 #, no-wrap msgid "{Scheme Variable} darkstat-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25117 +#: guix-git/doc/guix.texi:25479 msgid "This is the service type for the @uref{https://unix4lyfe.org/darkstat/, darkstat} service, its value must be a @code{darkstat-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25122 +#: guix-git/doc/guix.texi:25484 #, no-wrap msgid "" "(service darkstat-service-type\n" @@ -45115,715 +45741,727 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25125 +#: guix-git/doc/guix.texi:25487 #, no-wrap msgid "{Data Type} darkstat-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25127 +#: guix-git/doc/guix.texi:25489 msgid "Data type representing the configuration of @command{darkstat}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25129 +#: guix-git/doc/guix.texi:25491 #, no-wrap msgid "@code{package} (default: @code{darkstat})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25131 +#: guix-git/doc/guix.texi:25493 msgid "The darkstat package to use." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25132 +#: guix-git/doc/guix.texi:25494 #, no-wrap msgid "interface" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25134 +#: guix-git/doc/guix.texi:25496 msgid "Capture traffic on the specified network interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25135 +#: guix-git/doc/guix.texi:25497 #, no-wrap msgid "@code{port} (default: @code{\"667\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25137 +#: guix-git/doc/guix.texi:25499 msgid "Bind the web interface to the specified port." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25140 guix-git/doc/guix.texi:25175 +#: guix-git/doc/guix.texi:25502 guix-git/doc/guix.texi:25537 msgid "Bind the web interface to the specified address." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25141 +#: guix-git/doc/guix.texi:25503 #, no-wrap msgid "@code{base} (default: @code{\"/\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25144 +#: guix-git/doc/guix.texi:25506 msgid "Specify the path of the base URL@. This can be useful if @command{darkstat} is accessed via a reverse proxy." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25148 +#: guix-git/doc/guix.texi:25510 #, no-wrap msgid "Prometheus Node Exporter Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25150 +#: guix-git/doc/guix.texi:25512 #, no-wrap msgid "prometheus-node-exporter" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25155 +#: guix-git/doc/guix.texi:25517 msgid "The Prometheus ``node exporter'' makes hardware and operating system statistics provided by the Linux kernel available for the Prometheus monitoring system. This service should be deployed on all physical nodes and virtual machines, where monitoring these statistics is desirable." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25156 +#: guix-git/doc/guix.texi:25518 #, no-wrap msgid "{Scheme variable} prometheus-node-exporter-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:25160 +#: guix-git/doc/guix.texi:25522 msgid "This is the service type for the @uref{https://github.com/prometheus/node_exporter/, prometheus-node-exporter} service, its value must be a @code{prometheus-node-exporter-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25163 +#: guix-git/doc/guix.texi:25525 #, no-wrap msgid "(service prometheus-node-exporter-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25166 +#: guix-git/doc/guix.texi:25528 #, no-wrap msgid "{Data Type} prometheus-node-exporter-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25168 +#: guix-git/doc/guix.texi:25530 msgid "Data type representing the configuration of @command{node_exporter}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25170 +#: guix-git/doc/guix.texi:25532 #, no-wrap msgid "@code{package} (default: @code{go-github-com-prometheus-node-exporter})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25172 +#: guix-git/doc/guix.texi:25534 msgid "The prometheus-node-exporter package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25173 +#: guix-git/doc/guix.texi:25535 #, no-wrap msgid "@code{web-listen-address} (default: @code{\":9100\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25176 +#: guix-git/doc/guix.texi:25538 #, fuzzy, no-wrap msgid "@code{textfile-directory} (default: @code{\"/var/lib/prometheus/node-exporter\"})" msgstr "@code{daemon-socket}(默认值:@code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:25180 +#: guix-git/doc/guix.texi:25542 msgid "This directory can be used to export metrics specific to this machine. Files containing metrics in the text format, with the filename ending in @code{.prom} should be placed in this directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:25183 +#: guix-git/doc/guix.texi:25545 msgid "Extra options to pass to the Prometheus node exporter." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25187 +#: guix-git/doc/guix.texi:25549 #, no-wrap msgid "Zabbix server" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25188 +#: guix-git/doc/guix.texi:25550 #, no-wrap msgid "zabbix zabbix-server" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25191 +#: guix-git/doc/guix.texi:25553 msgid "Zabbix provides monitoring metrics, among others network utilization, CPU load and disk space consumption:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25193 +#: guix-git/doc/guix.texi:25555 #, no-wrap msgid "High performance, high capacity (able to monitor hundreds of thousands of devices)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25194 +#: guix-git/doc/guix.texi:25556 #, no-wrap msgid "Auto-discovery of servers and network devices and interfaces." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25195 +#: guix-git/doc/guix.texi:25557 #, no-wrap msgid "Low-level discovery, allows to automatically start monitoring new items, file systems or network interfaces among others." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25196 +#: guix-git/doc/guix.texi:25558 #, no-wrap msgid "Distributed monitoring with centralized web administration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25197 +#: guix-git/doc/guix.texi:25559 #, no-wrap msgid "Native high performance agents." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25198 +#: guix-git/doc/guix.texi:25560 #, no-wrap msgid "SLA, and ITIL KPI metrics on reporting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25199 +#: guix-git/doc/guix.texi:25561 #, no-wrap msgid "High-level (business) view of monitored resources through user-defined visual console screens and dashboards." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25200 +#: guix-git/doc/guix.texi:25562 #, no-wrap msgid "Remote command execution through Zabbix proxies." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25206 +#: guix-git/doc/guix.texi:25568 msgid "Available @code{zabbix-server-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25207 +#: guix-git/doc/guix.texi:25569 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} package zabbix-server" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25209 +#: guix-git/doc/guix.texi:25571 msgid "The zabbix-server package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25212 +#: guix-git/doc/guix.texi:25574 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25214 +#: guix-git/doc/guix.texi:25576 msgid "User who will run the Zabbix server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25216 guix-git/doc/guix.texi:25223 -#: guix-git/doc/guix.texi:25237 guix-git/doc/guix.texi:25244 -#: guix-git/doc/guix.texi:25345 guix-git/doc/guix.texi:25352 -#: guix-git/doc/guix.texi:25463 guix-git/doc/guix.texi:25470 +#: guix-git/doc/guix.texi:25578 guix-git/doc/guix.texi:25585 +#: guix-git/doc/guix.texi:25599 guix-git/doc/guix.texi:25606 +#: guix-git/doc/guix.texi:25707 guix-git/doc/guix.texi:25714 msgid "Defaults to @samp{\"zabbix\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25219 +#: guix-git/doc/guix.texi:25581 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} group group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25221 +#: guix-git/doc/guix.texi:25583 msgid "Group who will run the Zabbix server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25226 +#: guix-git/doc/guix.texi:25588 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-host" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25228 guix-git/doc/guix.texi:25447 +#. type: table +#: guix-git/doc/guix.texi:25590 guix-git/doc/guix.texi:25813 msgid "Database host name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25230 +#: guix-git/doc/guix.texi:25592 msgid "Defaults to @samp{\"127.0.0.1\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25233 +#: guix-git/doc/guix.texi:25595 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-name" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25235 guix-git/doc/guix.texi:25461 +#. type: table +#: guix-git/doc/guix.texi:25597 guix-git/doc/guix.texi:25819 msgid "Database name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25240 +#: guix-git/doc/guix.texi:25602 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-user" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25242 guix-git/doc/guix.texi:25468 +#. type: table +#: guix-git/doc/guix.texi:25604 guix-git/doc/guix.texi:25822 msgid "Database user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25247 +#: guix-git/doc/guix.texi:25609 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string db-password" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25250 +#: guix-git/doc/guix.texi:25612 msgid "Database password. Please, use @code{include-files} with @code{DBPassword=SECRET} inside a specified file instead." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25255 +#: guix-git/doc/guix.texi:25617 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} number db-port" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25257 guix-git/doc/guix.texi:25454 +#. type: table +#: guix-git/doc/guix.texi:25619 guix-git/doc/guix.texi:25816 msgid "Database port." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25259 guix-git/doc/guix.texi:25456 +#: guix-git/doc/guix.texi:25621 msgid "Defaults to @samp{5432}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25262 +#: guix-git/doc/guix.texi:25624 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string log-type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25264 guix-git/doc/guix.texi:25365 +#: guix-git/doc/guix.texi:25626 guix-git/doc/guix.texi:25727 msgid "Specifies where log messages are written to:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25268 guix-git/doc/guix.texi:25369 +#: guix-git/doc/guix.texi:25630 guix-git/doc/guix.texi:25731 msgid "@code{system} - syslog." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25271 guix-git/doc/guix.texi:25372 +#: guix-git/doc/guix.texi:25633 guix-git/doc/guix.texi:25734 msgid "@code{file} - file specified with @code{log-file} parameter." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25274 guix-git/doc/guix.texi:25375 +#: guix-git/doc/guix.texi:25636 guix-git/doc/guix.texi:25737 msgid "@code{console} - standard output." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25281 +#: guix-git/doc/guix.texi:25643 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string log-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25283 guix-git/doc/guix.texi:25384 +#: guix-git/doc/guix.texi:25645 guix-git/doc/guix.texi:25746 msgid "Log file name for @code{log-type} @code{file} parameter." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25285 +#: guix-git/doc/guix.texi:25647 msgid "Defaults to @samp{\"/var/log/zabbix/server.log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25288 +#: guix-git/doc/guix.texi:25650 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25290 guix-git/doc/guix.texi:25391 +#: guix-git/doc/guix.texi:25652 guix-git/doc/guix.texi:25753 msgid "Name of PID file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25292 +#: guix-git/doc/guix.texi:25654 msgid "Defaults to @samp{\"/var/run/zabbix/zabbix_server.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25295 +#: guix-git/doc/guix.texi:25657 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string ssl-ca-location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25298 +#: guix-git/doc/guix.texi:25660 msgid "The location of certificate authority (CA) files for SSL server certificate verification." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25300 +#: guix-git/doc/guix.texi:25662 msgid "Defaults to @samp{\"/etc/ssl/certs/ca-certificates.crt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25303 +#: guix-git/doc/guix.texi:25665 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string ssl-cert-location" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25305 +#: guix-git/doc/guix.texi:25667 msgid "Location of SSL client certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25307 +#: guix-git/doc/guix.texi:25669 msgid "Defaults to @samp{\"/etc/ssl/certs\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25310 +#: guix-git/doc/guix.texi:25672 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} string extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25312 guix-git/doc/guix.texi:25416 +#: guix-git/doc/guix.texi:25674 guix-git/doc/guix.texi:25778 msgid "Extra options will be appended to Zabbix server configuration file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25317 +#: guix-git/doc/guix.texi:25679 #, no-wrap msgid "{@code{zabbix-server-configuration} parameter} include-files include-files" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25320 guix-git/doc/guix.texi:25424 +#: guix-git/doc/guix.texi:25682 guix-git/doc/guix.texi:25786 msgid "You may include individual files or all files in a directory in the configuration file." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25327 +#: guix-git/doc/guix.texi:25689 #, no-wrap msgid "Zabbix agent" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25328 +#: guix-git/doc/guix.texi:25690 #, no-wrap msgid "zabbix zabbix-agent" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25331 +#: guix-git/doc/guix.texi:25693 msgid "Zabbix agent gathers information for Zabbix server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25335 +#: guix-git/doc/guix.texi:25697 msgid "Available @code{zabbix-agent-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25336 +#: guix-git/doc/guix.texi:25698 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} package zabbix-agent" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25338 +#: guix-git/doc/guix.texi:25700 msgid "The zabbix-agent package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25341 +#: guix-git/doc/guix.texi:25703 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25343 +#: guix-git/doc/guix.texi:25705 msgid "User who will run the Zabbix agent." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25348 +#: guix-git/doc/guix.texi:25710 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} group group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25350 +#: guix-git/doc/guix.texi:25712 msgid "Group who will run the Zabbix agent." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25355 +#: guix-git/doc/guix.texi:25717 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string hostname" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25358 +#: guix-git/doc/guix.texi:25720 msgid "Unique, case sensitive hostname which is required for active checks and must match hostname as configured on the server." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25363 +#: guix-git/doc/guix.texi:25725 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string log-type" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25382 +#: guix-git/doc/guix.texi:25744 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string log-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25386 +#: guix-git/doc/guix.texi:25748 msgid "Defaults to @samp{\"/var/log/zabbix/agent.log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25389 +#: guix-git/doc/guix.texi:25751 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25393 +#: guix-git/doc/guix.texi:25755 msgid "Defaults to @samp{\"/var/run/zabbix/zabbix_agent.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25396 +#: guix-git/doc/guix.texi:25758 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} list server" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25400 +#: guix-git/doc/guix.texi:25762 msgid "List of IP addresses, optionally in CIDR notation, or hostnames of Zabbix servers and Zabbix proxies. Incoming connections will be accepted only from the hosts listed here." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25402 guix-git/doc/guix.texi:25411 +#: guix-git/doc/guix.texi:25764 guix-git/doc/guix.texi:25773 msgid "Defaults to @samp{(\"127.0.0.1\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25405 +#: guix-git/doc/guix.texi:25767 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} list server-active" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25409 +#: guix-git/doc/guix.texi:25771 msgid "List of IP:port (or hostname:port) pairs of Zabbix servers and Zabbix proxies for active checks. If port is not specified, default port is used. If this parameter is not specified, active checks are disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25414 +#: guix-git/doc/guix.texi:25776 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} string extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25421 +#: guix-git/doc/guix.texi:25783 #, no-wrap msgid "{@code{zabbix-agent-configuration} parameter} include-files include-files" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25431 +#: guix-git/doc/guix.texi:25793 #, no-wrap msgid "Zabbix front-end" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25432 +#: guix-git/doc/guix.texi:25794 #, no-wrap msgid "zabbix zabbix-front-end" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25435 +#: guix-git/doc/guix.texi:25797 msgid "This service provides a WEB interface to Zabbix server." msgstr "" -#. type: Plain text -#: guix-git/doc/guix.texi:25439 +#. type: deftp +#: guix-git/doc/guix.texi:25800 +#, fuzzy, no-wrap +msgid "{Data Type} zabbix-front-end-configuration" +msgstr "{数据类型} build-machine" + +#. type: deftp +#: guix-git/doc/guix.texi:25802 msgid "Available @code{zabbix-front-end-configuration} fields are:" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25440 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} nginx-server-configuration-list nginx" -msgstr "" +#. type: item +#: guix-git/doc/guix.texi:25804 +#, fuzzy, no-wrap +msgid "@code{zabbix-server} (default: @code{zabbix-server}) (type: file-like)" +msgstr "@code{dnssec-policy}(默认值:@code{#f})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25442 guix-git/doc/guix.texi:31735 -msgid "NGINX configuration." -msgstr "" +#. type: table +#: guix-git/doc/guix.texi:25806 +#, fuzzy +msgid "The Zabbix server package to use." +msgstr "软件包数据类型。" -#. type: deftypevr -#: guix-git/doc/guix.texi:25445 +#. type: item +#: guix-git/doc/guix.texi:25807 #, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-host" +msgid "@code{fastcgi-params} (type: list)" msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25452 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} number db-port" +#. type: table +#: guix-git/doc/guix.texi:25810 +msgid "List of FastCGI parameter pairs that will be included in the NGINX configuration." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25459 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-name" -msgstr "" +#. type: item +#: guix-git/doc/guix.texi:25811 +#, fuzzy, no-wrap +msgid "@code{db-host} (default: @code{\\\"localhost\\\"}) (type: string)" +msgstr "@code{xfce}(默认值:@code{xfce})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25466 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-user" -msgstr "" +#. type: item +#: guix-git/doc/guix.texi:25814 +#, fuzzy, no-wrap +msgid "@code{db-port} (default: @code{5432}) (type: number)" +msgstr "@code{port}(默认值:@code{22})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25473 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-password" -msgstr "" +#. type: item +#: guix-git/doc/guix.texi:25817 +#, fuzzy, no-wrap +msgid "@code{db-name} (default: @code{\\\"zabbix\\\"}) (type: string)" +msgstr "@code{dnssec-policy}(默认值:@code{#f})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25475 +#. type: item +#: guix-git/doc/guix.texi:25820 +#, fuzzy, no-wrap +msgid "@code{db-user} (default: @code{\\\"zabbix\\\"}) (type: string)" +msgstr "@code{xfce}(默认值:@code{xfce})" + +#. type: item +#: guix-git/doc/guix.texi:25823 +#, fuzzy, no-wrap +msgid "@code{db-password} (default: @code{\\\"\\\"}) (type: string)" +msgstr "@code{port}(默认值:@code{22})" + +#. type: table +#: guix-git/doc/guix.texi:25825 msgid "Database password. Please, use @code{db-secret-file} instead." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25480 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string db-secret-file" -msgstr "" +#. type: item +#: guix-git/doc/guix.texi:25826 +#, fuzzy, no-wrap +msgid "@code{db-secret-file} (default: @code{\\\"\\\"}) (type: string)" +msgstr "@code{xfce}(默认值:@code{xfce})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25485 -msgid "Secret file containing the credentials for the Zabbix front-end. The value must be a local file name, not a G-expression. You are expected to create this file manually. Its contents will be copied into @file{zabbix.conf.php} as the value of @code{$DB['PASSWORD']}." +#. type: table +#: guix-git/doc/guix.texi:25830 +msgid "Secret file which will be appended to @file{zabbix.conf.php} file. This file contains credentials for use by Zabbix front-end. You are expected to create it manually." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25490 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} string zabbix-host" -msgstr "" +#. type: item +#: guix-git/doc/guix.texi:25831 +#, fuzzy, no-wrap +msgid "@code{zabbix-host} (default: @code{\\\"localhost\\\"}) (type: string)" +msgstr "@code{features} (@code{'()})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25492 +#. type: table +#: guix-git/doc/guix.texi:25833 msgid "Zabbix server hostname." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25497 -#, no-wrap -msgid "{@code{zabbix-front-end-configuration} parameter} number zabbix-port" -msgstr "" +#. type: item +#: guix-git/doc/guix.texi:25834 +#, fuzzy, no-wrap +msgid "@code{zabbix-port} (default: @code{10051}) (type: number)" +msgstr "@code{challenge}(默认值:@code{#f})" -#. type: deftypevr -#: guix-git/doc/guix.texi:25499 +#. type: table +#: guix-git/doc/guix.texi:25836 msgid "Zabbix server port." msgstr "" -#. type: deftypevr -#: guix-git/doc/guix.texi:25501 -msgid "Defaults to @samp{10051}." -msgstr "" - #. type: cindex -#: guix-git/doc/guix.texi:25509 +#: guix-git/doc/guix.texi:25846 #, no-wrap msgid "Kerberos" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25513 +#: guix-git/doc/guix.texi:25850 msgid "The @code{(gnu services kerberos)} module provides services relating to the authentication protocol @dfn{Kerberos}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25514 +#: guix-git/doc/guix.texi:25851 #, no-wrap msgid "Krb5 Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25521 +#: guix-git/doc/guix.texi:25858 msgid "Programs using a Kerberos client library normally expect a configuration file in @file{/etc/krb5.conf}. This service generates such a file from a definition provided in the operating system declaration. It does not cause any daemon to be started." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25525 +#: guix-git/doc/guix.texi:25862 msgid "No ``keytab'' files are provided by this service---you must explicitly create them. This service is known to work with the MIT client library, @code{mit-krb5}. Other implementations have not been tested." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25526 +#: guix-git/doc/guix.texi:25863 #, no-wrap msgid "{Scheme Variable} krb5-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25528 +#: guix-git/doc/guix.texi:25865 msgid "A service type for Kerberos 5 clients." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25532 +#: guix-git/doc/guix.texi:25869 msgid "Here is an example of its use:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25546 +#: guix-git/doc/guix.texi:25883 #, no-wrap msgid "" "(service krb5-service-type\n" @@ -45842,206 +46480,206 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25550 +#: guix-git/doc/guix.texi:25887 msgid "This example provides a Kerberos@tie{}5 client configuration which:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25551 +#: guix-git/doc/guix.texi:25888 #, no-wrap msgid "Recognizes two realms, @i{viz:} ``EXAMPLE.COM'' and ``ARGRX.EDU'', both" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25553 +#: guix-git/doc/guix.texi:25890 msgid "of which have distinct administration servers and key distribution centers;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25553 +#: guix-git/doc/guix.texi:25890 #, no-wrap msgid "Will default to the realm ``EXAMPLE.COM'' if the realm is not explicitly" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:25555 +#: guix-git/doc/guix.texi:25892 msgid "specified by clients;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25555 +#: guix-git/doc/guix.texi:25892 #, no-wrap msgid "Accepts services which only support encryption types known to be weak." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25563 +#: guix-git/doc/guix.texi:25900 msgid "The @code{krb5-realm} and @code{krb5-configuration} types have many fields. Only the most commonly used ones are described here. For a full list, and more detailed explanation of each, see the MIT @uref{https://web.mit.edu/kerberos/krb5-devel/doc/admin/conf_files/krb5_conf.html,,krb5.conf} documentation." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25565 +#: guix-git/doc/guix.texi:25902 #, no-wrap msgid "{Data Type} krb5-realm" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25566 +#: guix-git/doc/guix.texi:25903 #, no-wrap msgid "realm, kerberos" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25572 +#: guix-git/doc/guix.texi:25909 msgid "This field is a string identifying the name of the realm. A common convention is to use the fully qualified DNS name of your organization, converted to upper case." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25573 +#: guix-git/doc/guix.texi:25910 #, no-wrap msgid "admin-server" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25576 +#: guix-git/doc/guix.texi:25913 msgid "This field is a string identifying the host where the administration server is running." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25577 +#: guix-git/doc/guix.texi:25914 #, no-wrap msgid "kdc" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25580 +#: guix-git/doc/guix.texi:25917 msgid "This field is a string identifying the key distribution center for the realm." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25583 +#: guix-git/doc/guix.texi:25920 #, no-wrap msgid "{Data Type} krb5-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25586 +#: guix-git/doc/guix.texi:25923 #, no-wrap msgid "@code{allow-weak-crypto?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25589 +#: guix-git/doc/guix.texi:25926 msgid "If this flag is @code{#t} then services which only offer encryption algorithms known to be weak will be accepted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25590 +#: guix-git/doc/guix.texi:25927 #, no-wrap msgid "@code{default-realm} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25597 +#: guix-git/doc/guix.texi:25934 msgid "This field should be a string identifying the default Kerberos realm for the client. You should set this field to the name of your Kerberos realm. If this value is @code{#f} then a realm must be specified with every Kerberos principal when invoking programs such as @command{kinit}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:25598 +#: guix-git/doc/guix.texi:25935 #, no-wrap msgid "realms" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25603 +#: guix-git/doc/guix.texi:25940 msgid "This should be a non-empty list of @code{krb5-realm} objects, which clients may access. Normally, one of them will have a @code{name} field matching the @code{default-realm} field." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:25607 +#: guix-git/doc/guix.texi:25944 #, no-wrap msgid "PAM krb5 Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25608 +#: guix-git/doc/guix.texi:25945 #, no-wrap msgid "pam-krb5" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25614 +#: guix-git/doc/guix.texi:25951 msgid "The @code{pam-krb5} service allows for login authentication and password management via Kerberos. You will need this service if you want PAM enabled applications to authenticate users using Kerberos." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25615 +#: guix-git/doc/guix.texi:25952 #, no-wrap msgid "{Scheme Variable} pam-krb5-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:25617 +#: guix-git/doc/guix.texi:25954 msgid "A service type for the Kerberos 5 PAM module." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25619 +#: guix-git/doc/guix.texi:25956 #, no-wrap msgid "{Data Type} pam-krb5-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:25622 +#: guix-git/doc/guix.texi:25959 msgid "Data type representing the configuration of the Kerberos 5 PAM module. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:25623 +#: guix-git/doc/guix.texi:25960 #, no-wrap msgid "@code{pam-krb5} (default: @code{pam-krb5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25625 +#: guix-git/doc/guix.texi:25962 msgid "The pam-krb5 package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:25626 +#: guix-git/doc/guix.texi:25963 #, no-wrap msgid "@code{minimum-uid} (default: @code{1000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:25629 +#: guix-git/doc/guix.texi:25966 msgid "The smallest user ID for which Kerberos authentications should be attempted. Local accounts with lower values will silently fail to authenticate." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25635 +#: guix-git/doc/guix.texi:25972 #, no-wrap msgid "LDAP" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:25636 +#: guix-git/doc/guix.texi:25973 #, no-wrap msgid "nslcd, LDAP service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25643 +#: guix-git/doc/guix.texi:25980 msgid "The @code{(gnu services authentication)} module provides the @code{nslcd-service-type}, which can be used to authenticate against an LDAP server. In addition to configuring the service itself, you may want to add @code{ldap} as a name service to the Name Service Switch. @xref{Name Service Switch} for detailed information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25647 +#: guix-git/doc/guix.texi:25984 msgid "Here is a simple operating system declaration with a default configuration of the @code{nslcd-service-type} and a Name Service Switch configuration that consults the @code{ldap} name service last:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:25670 +#: guix-git/doc/guix.texi:26007 #, no-wrap msgid "" "(use-service-modules authentication)\n" @@ -46068,643 +46706,643 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:25675 +#: guix-git/doc/guix.texi:26012 msgid "Available @code{nslcd-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25676 +#: guix-git/doc/guix.texi:26013 #, no-wrap msgid "{@code{nslcd-configuration} parameter} package nss-pam-ldapd" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25678 +#: guix-git/doc/guix.texi:26015 msgid "The @code{nss-pam-ldapd} package to use." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25681 +#: guix-git/doc/guix.texi:26018 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number threads" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25685 +#: guix-git/doc/guix.texi:26022 msgid "The number of threads to start that can handle requests and perform LDAP queries. Each thread opens a separate connection to the LDAP server. The default is to start 5 threads." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25690 +#: guix-git/doc/guix.texi:26027 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25692 +#: guix-git/doc/guix.texi:26029 msgid "This specifies the user id with which the daemon should be run." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25694 guix-git/doc/guix.texi:25701 +#: guix-git/doc/guix.texi:26031 guix-git/doc/guix.texi:26038 msgid "Defaults to @samp{\"nslcd\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25697 +#: guix-git/doc/guix.texi:26034 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string gid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25699 +#: guix-git/doc/guix.texi:26036 msgid "This specifies the group id with which the daemon should be run." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25704 +#: guix-git/doc/guix.texi:26041 #, no-wrap msgid "{@code{nslcd-configuration} parameter} log-option log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25712 +#: guix-git/doc/guix.texi:26049 msgid "This option controls the way logging is done via a list containing SCHEME and LEVEL@. The SCHEME argument may either be the symbols @samp{none} or @samp{syslog}, or an absolute file name. The LEVEL argument is optional and specifies the log level. The log level may be one of the following symbols: @samp{crit}, @samp{error}, @samp{warning}, @samp{notice}, @samp{info} or @samp{debug}. All messages with the specified log level or higher are logged." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25714 +#: guix-git/doc/guix.texi:26051 msgid "Defaults to @samp{(\"/var/log/nslcd\" info)}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25717 +#: guix-git/doc/guix.texi:26054 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list uri" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25720 +#: guix-git/doc/guix.texi:26057 msgid "The list of LDAP server URIs. Normally, only the first server will be used with the following servers as fall-back." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25722 +#: guix-git/doc/guix.texi:26059 msgid "Defaults to @samp{(\"ldap://localhost:389/\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25725 +#: guix-git/doc/guix.texi:26062 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string ldap-version" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25728 +#: guix-git/doc/guix.texi:26065 msgid "The version of the LDAP protocol to use. The default is to use the maximum version supported by the LDAP library." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25733 +#: guix-git/doc/guix.texi:26070 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string binddn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25736 +#: guix-git/doc/guix.texi:26073 msgid "Specifies the distinguished name with which to bind to the directory server for lookups. The default is to bind anonymously." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25741 +#: guix-git/doc/guix.texi:26078 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string bindpw" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25744 +#: guix-git/doc/guix.texi:26081 msgid "Specifies the credentials with which to bind. This option is only applicable when used with binddn." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25749 +#: guix-git/doc/guix.texi:26086 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string rootpwmoddn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25752 +#: guix-git/doc/guix.texi:26089 msgid "Specifies the distinguished name to use when the root user tries to modify a user's password using the PAM module." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25757 +#: guix-git/doc/guix.texi:26094 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string rootpwmodpw" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25761 +#: guix-git/doc/guix.texi:26098 msgid "Specifies the credentials with which to bind if the root user tries to change a user's password. This option is only applicable when used with rootpwmoddn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25766 +#: guix-git/doc/guix.texi:26103 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-mech" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25769 +#: guix-git/doc/guix.texi:26106 msgid "Specifies the SASL mechanism to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25774 +#: guix-git/doc/guix.texi:26111 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-realm" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25776 +#: guix-git/doc/guix.texi:26113 msgid "Specifies the SASL realm to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25781 +#: guix-git/doc/guix.texi:26118 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-authcid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25784 +#: guix-git/doc/guix.texi:26121 msgid "Specifies the authentication identity to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25789 +#: guix-git/doc/guix.texi:26126 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string sasl-authzid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25792 +#: guix-git/doc/guix.texi:26129 msgid "Specifies the authorization identity to be used when performing SASL authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25797 +#: guix-git/doc/guix.texi:26134 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean sasl-canonicalize?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25802 +#: guix-git/doc/guix.texi:26139 msgid "Determines whether the LDAP server host name should be canonicalised. If this is enabled the LDAP library will do a reverse host name lookup. By default, it is left up to the LDAP library whether this check is performed or not." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25807 +#: guix-git/doc/guix.texi:26144 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string krb5-ccname" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25809 +#: guix-git/doc/guix.texi:26146 msgid "Set the name for the GSS-API Kerberos credentials cache." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25814 +#: guix-git/doc/guix.texi:26151 #, no-wrap msgid "{@code{nslcd-configuration} parameter} string base" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25816 +#: guix-git/doc/guix.texi:26153 msgid "The directory search base." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25818 +#: guix-git/doc/guix.texi:26155 msgid "Defaults to @samp{\"dc=example,dc=com\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25821 +#: guix-git/doc/guix.texi:26158 #, no-wrap msgid "{@code{nslcd-configuration} parameter} scope-option scope" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25825 +#: guix-git/doc/guix.texi:26162 msgid "Specifies the search scope (subtree, onelevel, base or children). The default scope is subtree; base scope is almost never useful for name service lookups; children scope is not supported on all servers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25827 +#: guix-git/doc/guix.texi:26164 msgid "Defaults to @samp{(subtree)}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25830 +#: guix-git/doc/guix.texi:26167 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-deref-option deref" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25833 +#: guix-git/doc/guix.texi:26170 msgid "Specifies the policy for dereferencing aliases. The default policy is to never dereference aliases." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25838 +#: guix-git/doc/guix.texi:26175 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean referrals" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25841 +#: guix-git/doc/guix.texi:26178 msgid "Specifies whether automatic referral chasing should be enabled. The default behaviour is to chase referrals." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25846 +#: guix-git/doc/guix.texi:26183 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list-of-map-entries maps" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25851 +#: guix-git/doc/guix.texi:26188 msgid "This option allows for custom attributes to be looked up instead of the default RFC 2307 attributes. It is a list of maps, each consisting of the name of a map, the RFC 2307 attribute to match and the query expression for the attribute as it is available in the directory." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25856 +#: guix-git/doc/guix.texi:26193 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list-of-filter-entries filters" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25859 +#: guix-git/doc/guix.texi:26196 msgid "A list of filters consisting of the name of a map to which the filter applies and an LDAP search filter expression." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25864 +#: guix-git/doc/guix.texi:26201 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number bind-timelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25867 +#: guix-git/doc/guix.texi:26204 msgid "Specifies the time limit in seconds to use when connecting to the directory server. The default value is 10 seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25872 +#: guix-git/doc/guix.texi:26209 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number timelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25876 +#: guix-git/doc/guix.texi:26213 msgid "Specifies the time limit (in seconds) to wait for a response from the LDAP server. A value of zero, which is the default, is to wait indefinitely for searches to be completed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25881 +#: guix-git/doc/guix.texi:26218 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number idle-timelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25885 +#: guix-git/doc/guix.texi:26222 msgid "Specifies the period if inactivity (in seconds) after which the con‐ nection to the LDAP server will be closed. The default is not to time out connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25890 +#: guix-git/doc/guix.texi:26227 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number reconnect-sleeptime" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25894 +#: guix-git/doc/guix.texi:26231 msgid "Specifies the number of seconds to sleep when connecting to all LDAP servers fails. By default one second is waited between the first failure and the first retry." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25899 +#: guix-git/doc/guix.texi:26236 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number reconnect-retrytime" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25903 +#: guix-git/doc/guix.texi:26240 msgid "Specifies the time after which the LDAP server is considered to be permanently unavailable. Once this time is reached retries will be done only once per this time period. The default value is 10 seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25908 +#: guix-git/doc/guix.texi:26245 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-ssl-option ssl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25912 +#: guix-git/doc/guix.texi:26249 msgid "Specifies whether to use SSL/TLS or not (the default is not to). If 'start-tls is specified then StartTLS is used rather than raw LDAP over SSL." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25917 +#: guix-git/doc/guix.texi:26254 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-tls-reqcert-option tls-reqcert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25920 +#: guix-git/doc/guix.texi:26257 msgid "Specifies what checks to perform on a server-supplied certificate. The meaning of the values is described in the ldap.conf(5) manual page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25925 +#: guix-git/doc/guix.texi:26262 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cacertdir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25928 +#: guix-git/doc/guix.texi:26265 msgid "Specifies the directory containing X.509 certificates for peer authen‐ tication. This parameter is ignored when using GnuTLS." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25933 +#: guix-git/doc/guix.texi:26270 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cacertfile" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25935 +#: guix-git/doc/guix.texi:26272 msgid "Specifies the path to the X.509 certificate for peer authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25940 +#: guix-git/doc/guix.texi:26277 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-randfile" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25943 +#: guix-git/doc/guix.texi:26280 msgid "Specifies the path to an entropy source. This parameter is ignored when using GnuTLS." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25948 +#: guix-git/doc/guix.texi:26285 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-ciphers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25950 +#: guix-git/doc/guix.texi:26287 msgid "Specifies the ciphers to use for TLS as a string." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25955 +#: guix-git/doc/guix.texi:26292 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25958 +#: guix-git/doc/guix.texi:26295 msgid "Specifies the path to the file containing the local certificate for client TLS authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25963 +#: guix-git/doc/guix.texi:26300 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string tls-key" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25966 +#: guix-git/doc/guix.texi:26303 msgid "Specifies the path to the file containing the private key for client TLS authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25971 +#: guix-git/doc/guix.texi:26308 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number pagesize" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25975 +#: guix-git/doc/guix.texi:26312 msgid "Set this to a number greater than 0 to request paged results from the LDAP server in accordance with RFC2696. The default (0) is to not request paged results." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25980 +#: guix-git/doc/guix.texi:26317 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-ignore-users-option nss-initgroups-ignoreusers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25984 +#: guix-git/doc/guix.texi:26321 msgid "This option prevents group membership lookups through LDAP for the specified users. Alternatively, the value 'all-local may be used. With that value nslcd builds a full list of non-LDAP users on startup." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25989 +#: guix-git/doc/guix.texi:26326 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-min-uid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25992 +#: guix-git/doc/guix.texi:26329 msgid "This option ensures that LDAP users with a numeric user id lower than the specified value are ignored." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:25997 +#: guix-git/doc/guix.texi:26334 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-uid-offset" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26000 +#: guix-git/doc/guix.texi:26337 msgid "This option specifies an offset that is added to all LDAP numeric user ids. This can be used to avoid user id collisions with local users." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26005 +#: guix-git/doc/guix.texi:26342 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-number nss-gid-offset" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26008 +#: guix-git/doc/guix.texi:26345 msgid "This option specifies an offset that is added to all LDAP numeric group ids. This can be used to avoid user id collisions with local groups." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26013 +#: guix-git/doc/guix.texi:26350 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-nested-groups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26019 +#: guix-git/doc/guix.texi:26356 msgid "If this option is set, the member attribute of a group may point to another group. Members of nested groups are also returned in the higher level group and parent groups are returned when finding groups for a specific user. The default is not to perform extra searches for nested groups." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26024 +#: guix-git/doc/guix.texi:26361 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-getgrent-skipmembers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26029 +#: guix-git/doc/guix.texi:26366 msgid "If this option is set, the group member list is not retrieved when looking up groups. Lookups for finding which groups a user belongs to will remain functional so the user will likely still get the correct groups assigned on login." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26034 +#: guix-git/doc/guix.texi:26371 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean nss-disable-enumeration" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26040 +#: guix-git/doc/guix.texi:26377 msgid "If this option is set, functions which cause all user/group entries to be loaded from the directory will not succeed in doing so. This can dramatically reduce LDAP server load in situations where there are a great number of users and/or groups. This option is not recommended for most configurations." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26045 +#: guix-git/doc/guix.texi:26382 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string validnames" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26049 +#: guix-git/doc/guix.texi:26386 msgid "This option can be used to specify how user and group names are verified within the system. This pattern is used to check all user and group names that are requested and returned from LDAP." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26054 +#: guix-git/doc/guix.texi:26391 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean ignorecase" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26059 +#: guix-git/doc/guix.texi:26396 msgid "This specifies whether or not to perform searches using case-insensitive matching. Enabling this could open up the system to authorization bypass vulnerabilities and introduce nscd cache poisoning vulnerabilities which allow denial of service." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26064 +#: guix-git/doc/guix.texi:26401 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-boolean pam-authc-ppolicy" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26067 +#: guix-git/doc/guix.texi:26404 msgid "This option specifies whether password policy controls are requested and handled from the LDAP server when performing user authentication." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26072 +#: guix-git/doc/guix.texi:26409 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-authc-search" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26078 +#: guix-git/doc/guix.texi:26415 msgid "By default nslcd performs an LDAP search with the user's credentials after BIND (authentication) to ensure that the BIND operation was successful. The default search is a simple check to see if the user's DN exists. A search filter can be specified that will be used instead. It should return at least one entry." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26083 +#: guix-git/doc/guix.texi:26420 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-authz-search" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26087 +#: guix-git/doc/guix.texi:26424 msgid "This option allows flexible fine tuning of the authorisation check that should be performed. The search filter specified is executed and if any entries match, access is granted, otherwise access is denied." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26092 +#: guix-git/doc/guix.texi:26429 #, no-wrap msgid "{@code{nslcd-configuration} parameter} maybe-string pam-password-prohibit-message" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26097 +#: guix-git/doc/guix.texi:26434 msgid "If this option is set password modification using pam_ldap will be denied and the specified message will be presented to the user instead. The message can be used to direct the user to an alternative means of changing their password." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26102 +#: guix-git/doc/guix.texi:26439 #, no-wrap msgid "{@code{nslcd-configuration} parameter} list pam-services" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:26104 +#: guix-git/doc/guix.texi:26441 msgid "List of pam service names for which LDAP authentication should suffice." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26115 +#: guix-git/doc/guix.texi:26452 #, no-wrap msgid "web" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26116 +#: guix-git/doc/guix.texi:26453 #, no-wrap msgid "www" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26117 +#: guix-git/doc/guix.texi:26454 #, no-wrap msgid "HTTP" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26120 +#: guix-git/doc/guix.texi:26457 msgid "The @code{(gnu services web)} module provides the Apache HTTP Server, the nginx web server, and also a fastcgi wrapper daemon." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26121 +#: guix-git/doc/guix.texi:26458 #, no-wrap msgid "Apache HTTP Server" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26123 +#: guix-git/doc/guix.texi:26460 #, no-wrap msgid "{Scheme Variable} httpd-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26127 +#: guix-git/doc/guix.texi:26464 msgid "Service type for the @uref{https://httpd.apache.org/,Apache HTTP} server (@dfn{httpd}). The value for this service type is a @code{httpd-configuration} record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26129 guix-git/doc/guix.texi:26311 +#: guix-git/doc/guix.texi:26466 guix-git/doc/guix.texi:26648 msgid "A simple example configuration is given below." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26137 +#: guix-git/doc/guix.texi:26474 #, no-wrap msgid "" "(service httpd-service-type\n" @@ -46716,12 +47354,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26141 +#: guix-git/doc/guix.texi:26478 msgid "Other services can also extend the @code{httpd-service-type} to add to the configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26150 guix-git/doc/guix.texi:26290 +#: guix-git/doc/guix.texi:26487 guix-git/doc/guix.texi:26627 #, no-wrap msgid "" "(simple-service 'www.example.com-server httpd-service-type\n" @@ -46734,115 +47372,115 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26156 +#: guix-git/doc/guix.texi:26493 msgid "The details for the @code{httpd-configuration}, @code{httpd-module}, @code{httpd-config-file} and @code{httpd-virtualhost} record types are given below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26157 +#: guix-git/doc/guix.texi:26494 #, no-wrap msgid "{Data Type} httpd-configuration" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26159 +#: guix-git/doc/guix.texi:26496 msgid "This data type represents the configuration for the httpd service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26161 +#: guix-git/doc/guix.texi:26498 #, no-wrap msgid "@code{package} (default: @code{httpd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26163 +#: guix-git/doc/guix.texi:26500 msgid "The httpd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26164 guix-git/doc/guix.texi:26253 +#: guix-git/doc/guix.texi:26501 guix-git/doc/guix.texi:26590 #, no-wrap msgid "@code{pid-file} (default: @code{\"/var/run/httpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26166 +#: guix-git/doc/guix.texi:26503 msgid "The pid file used by the shepherd-service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26167 +#: guix-git/doc/guix.texi:26504 #, no-wrap msgid "@code{config} (default: @code{(httpd-config-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26172 +#: guix-git/doc/guix.texi:26509 msgid "The configuration file to use with the httpd service. The default value is a @code{httpd-config-file} record, but this can also be a different G-expression that generates a file, for example a @code{plain-file}. A file outside of the store can also be specified through a string." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26176 +#: guix-git/doc/guix.texi:26513 #, no-wrap msgid "{Data Type} httpd-module" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26178 +#: guix-git/doc/guix.texi:26515 msgid "This data type represents a module for the httpd service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26182 +#: guix-git/doc/guix.texi:26519 msgid "The name of the module." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26188 +#: guix-git/doc/guix.texi:26525 msgid "The file for the module. This can be relative to the httpd package being used, the absolute location of a file, or a G-expression for a file within the store, for example @code{(file-append mod-wsgi \"/modules/mod_wsgi.so\")}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26192 +#: guix-git/doc/guix.texi:26529 #, no-wrap msgid "{Scheme Variable} %default-httpd-modules" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26194 +#: guix-git/doc/guix.texi:26531 msgid "A default list of @code{httpd-module} objects." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26196 +#: guix-git/doc/guix.texi:26533 #, no-wrap msgid "{Data Type} httpd-config-file" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26198 +#: guix-git/doc/guix.texi:26535 msgid "This data type represents a configuration file for the httpd service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26200 +#: guix-git/doc/guix.texi:26537 #, no-wrap msgid "@code{modules} (default: @code{%default-httpd-modules})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26203 +#: guix-git/doc/guix.texi:26540 msgid "The modules to load. Additional modules can be added here, or loaded by additional configuration." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26206 +#: guix-git/doc/guix.texi:26543 msgid "For example, in order to handle requests for PHP files, you can use Apache’s @code{mod_proxy_fcgi} module along with @code{php-fpm-service-type}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26228 +#: guix-git/doc/guix.texi:26565 #, no-wrap msgid "" "(service httpd-service-type\n" @@ -46868,165 +47506,165 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26230 +#: guix-git/doc/guix.texi:26567 #, no-wrap msgid "@code{server-root} (default: @code{httpd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26234 +#: guix-git/doc/guix.texi:26571 msgid "The @code{ServerRoot} in the configuration file, defaults to the httpd package. Directives including @code{Include} and @code{LoadModule} are taken as relative to the server root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26235 +#: guix-git/doc/guix.texi:26572 #, no-wrap msgid "@code{server-name} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26239 +#: guix-git/doc/guix.texi:26576 msgid "The @code{ServerName} in the configuration file, used to specify the request scheme, hostname and port that the server uses to identify itself." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26243 +#: guix-git/doc/guix.texi:26580 msgid "This doesn't need to be set in the server config, and can be specified in virtual hosts. The default is @code{#f} to not specify a @code{ServerName}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26244 +#: guix-git/doc/guix.texi:26581 #, no-wrap msgid "@code{document-root} (default: @code{\"/srv/http\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26246 +#: guix-git/doc/guix.texi:26583 msgid "The @code{DocumentRoot} from which files will be served." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26247 +#: guix-git/doc/guix.texi:26584 #, no-wrap msgid "@code{listen} (default: @code{'(\"80\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26252 +#: guix-git/doc/guix.texi:26589 msgid "The list of values for the @code{Listen} directives in the config file. The value should be a list of strings, when each string can specify the port number to listen on, and optionally the IP address and protocol to use." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26257 +#: guix-git/doc/guix.texi:26594 msgid "The @code{PidFile} to use. This should match the @code{pid-file} set in the @code{httpd-configuration} so that the Shepherd service is configured correctly." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26258 +#: guix-git/doc/guix.texi:26595 #, no-wrap msgid "@code{error-log} (default: @code{\"/var/log/httpd/error_log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26260 +#: guix-git/doc/guix.texi:26597 msgid "The @code{ErrorLog} to which the server will log errors." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26261 guix-git/doc/guix.texi:26823 +#: guix-git/doc/guix.texi:26598 guix-git/doc/guix.texi:27160 #, no-wrap msgid "@code{user} (default: @code{\"httpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26263 +#: guix-git/doc/guix.texi:26600 msgid "The @code{User} which the server will answer requests as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26264 +#: guix-git/doc/guix.texi:26601 #, no-wrap msgid "@code{group} (default: @code{\"httpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26266 +#: guix-git/doc/guix.texi:26603 msgid "The @code{Group} which the server will answer requests as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26267 +#: guix-git/doc/guix.texi:26604 #, no-wrap msgid "@code{extra-config} (default: @code{(list \"TypesConfig etc/httpd/mime.types\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26270 +#: guix-git/doc/guix.texi:26607 msgid "A flat list of strings and G-expressions which will be added to the end of the configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26273 +#: guix-git/doc/guix.texi:26610 msgid "Any values which the service is extended with will be appended to this list." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26277 +#: guix-git/doc/guix.texi:26614 #, no-wrap msgid "{Data Type} httpd-virtualhost" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26279 +#: guix-git/doc/guix.texi:26616 msgid "This data type represents a virtualhost configuration block for the httpd service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26281 +#: guix-git/doc/guix.texi:26618 msgid "These should be added to the extra-config for the httpd-service." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26293 +#: guix-git/doc/guix.texi:26630 #, no-wrap msgid "addresses-and-ports" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26295 +#: guix-git/doc/guix.texi:26632 msgid "The addresses and ports for the @code{VirtualHost} directive." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26296 +#: guix-git/doc/guix.texi:26633 #, no-wrap msgid "contents" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26299 +#: guix-git/doc/guix.texi:26636 msgid "The contents of the @code{VirtualHost} directive, this should be a list of strings and G-expressions." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26304 +#: guix-git/doc/guix.texi:26641 #, no-wrap msgid "NGINX" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26306 +#: guix-git/doc/guix.texi:26643 #, no-wrap msgid "{Scheme Variable} nginx-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26309 +#: guix-git/doc/guix.texi:26646 msgid "Service type for the @uref{https://nginx.org/,NGinx} web server. The value for this service type is a @code{} record." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26319 guix-git/doc/guix.texi:26373 +#: guix-git/doc/guix.texi:26656 guix-git/doc/guix.texi:26710 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -47038,12 +47676,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26324 +#: guix-git/doc/guix.texi:26661 msgid "In addition to adding server blocks to the service configuration directly, this service can be extended by other services to add server blocks, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26330 +#: guix-git/doc/guix.texi:26667 #, no-wrap msgid "" "(simple-service 'my-extra-server nginx-service-type\n" @@ -47053,88 +47691,88 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26341 +#: guix-git/doc/guix.texi:26678 msgid "At startup, @command{nginx} has not yet read its configuration file, so it uses a default file to log error messages. If it fails to load its configuration file, that is where error messages are logged. After the configuration file is loaded, the default error log file changes as per configuration. In our case, startup error messages can be found in @file{/var/run/nginx/logs/error.log}, and after configuration in @file{/var/log/nginx/error.log}. The second location can be changed with the @var{log-directory} configuration option." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26342 +#: guix-git/doc/guix.texi:26679 #, no-wrap msgid "{Data Type} nginx-configuration" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:26346 +#: guix-git/doc/guix.texi:26683 msgid "This data type represents the configuration for NGinx. Some configuration can be done through this and the other provided record types, or alternatively, a config file can be provided." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26348 +#: guix-git/doc/guix.texi:26685 #, no-wrap msgid "@code{nginx} (default: @code{nginx})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26350 +#: guix-git/doc/guix.texi:26687 msgid "The nginx package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26351 +#: guix-git/doc/guix.texi:26688 #, no-wrap msgid "@code{log-directory} (default: @code{\"/var/log/nginx\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26353 +#: guix-git/doc/guix.texi:26690 msgid "The directory to which NGinx will write log files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26354 +#: guix-git/doc/guix.texi:26691 #, no-wrap msgid "@code{run-directory} (default: @code{\"/var/run/nginx\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26357 +#: guix-git/doc/guix.texi:26694 msgid "The directory in which NGinx will create a pid file, and write temporary files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26358 +#: guix-git/doc/guix.texi:26695 #, no-wrap msgid "@code{server-blocks} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26362 +#: guix-git/doc/guix.texi:26699 msgid "A list of @dfn{server blocks} to create in the generated configuration file, the elements should be of type @code{}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26366 +#: guix-git/doc/guix.texi:26703 msgid "The following example would setup NGinx to serve @code{www.example.com} from the @code{/srv/http/www.example.com} directory, without using HTTPS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26375 +#: guix-git/doc/guix.texi:26712 #, no-wrap msgid "@code{upstream-blocks} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26379 +#: guix-git/doc/guix.texi:26716 msgid "A list of @dfn{upstream blocks} to create in the generated configuration file, the elements should be of type @code{}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26386 +#: guix-git/doc/guix.texi:26723 msgid "Configuring upstreams through the @code{upstream-blocks} can be useful when combined with @code{locations} in the @code{} records. The following example creates a server configuration with one location configuration, that will proxy requests to a upstream configuration, which will handle requests with two servers." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26405 +#: guix-git/doc/guix.texi:26742 #, no-wrap msgid "" "(service\n" @@ -47157,44 +47795,44 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26413 +#: guix-git/doc/guix.texi:26750 msgid "If a configuration @var{file} is provided, this will be used, rather than generating a configuration file from the provided @code{log-directory}, @code{run-directory}, @code{server-blocks} and @code{upstream-blocks}. For proper operation, these arguments should match what is in @var{file} to ensure that the directories are created when the service is activated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26417 +#: guix-git/doc/guix.texi:26754 msgid "This can be useful if you have an existing configuration file, or it's not possible to do what is required through the other parts of the nginx-configuration record." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26418 +#: guix-git/doc/guix.texi:26755 #, no-wrap msgid "@code{server-names-hash-bucket-size} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26421 +#: guix-git/doc/guix.texi:26758 msgid "Bucket size for the server names hash tables, defaults to @code{#f} to use the size of the processors cache line." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26422 +#: guix-git/doc/guix.texi:26759 #, no-wrap msgid "@code{server-names-hash-bucket-max-size} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26424 +#: guix-git/doc/guix.texi:26761 msgid "Maximum bucket size for the server names hash tables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26428 +#: guix-git/doc/guix.texi:26765 msgid "List of nginx dynamic modules to load. This should be a list of file names of loadable modules, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26436 +#: guix-git/doc/guix.texi:26773 #, no-wrap msgid "" "(modules\n" @@ -47206,18 +47844,18 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26438 +#: guix-git/doc/guix.texi:26775 #, fuzzy, no-wrap msgid "@code{lua-package-path} (default: @code{'()})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:26441 +#: guix-git/doc/guix.texi:26778 msgid "List of nginx lua packages to load. This should be a list of package names of loadable lua modules, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26448 +#: guix-git/doc/guix.texi:26785 #, no-wrap msgid "" "(lua-package-path (list lua-resty-core\n" @@ -47228,35 +47866,35 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26450 +#: guix-git/doc/guix.texi:26787 #, fuzzy, no-wrap msgid "@code{lua-package-cpath} (default: @code{'()})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:26453 +#: guix-git/doc/guix.texi:26790 msgid "List of nginx lua C packages to load. This should be a list of package names of loadable lua C modules, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26456 +#: guix-git/doc/guix.texi:26793 #, no-wrap msgid "(lua-package-cpath (list lua-resty-signal))\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26458 +#: guix-git/doc/guix.texi:26795 #, fuzzy, no-wrap msgid "@code{global-directives} (default: @code{'((events . ()))})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:26461 +#: guix-git/doc/guix.texi:26798 msgid "Association list of global directives for the top level of the nginx configuration. Values may themselves be association lists." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26467 +#: guix-git/doc/guix.texi:26804 #, no-wrap msgid "" "(global-directives\n" @@ -47266,312 +47904,312 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26472 +#: guix-git/doc/guix.texi:26809 msgid "Extra content for the @code{http} block. Should be string or a string valued G-expression." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26476 +#: guix-git/doc/guix.texi:26813 #, no-wrap msgid "{Data Type} nginx-server-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26479 +#: guix-git/doc/guix.texi:26816 msgid "Data type representing the configuration of an nginx server block. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26481 +#: guix-git/doc/guix.texi:26818 #, no-wrap msgid "@code{listen} (default: @code{'(\"80\" \"443 ssl\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26486 +#: guix-git/doc/guix.texi:26823 msgid "Each @code{listen} directive sets the address and port for IP, or the path for a UNIX-domain socket on which the server will accept requests. Both address and port, or only address or only port can be specified. An address may also be a hostname, for example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26489 +#: guix-git/doc/guix.texi:26826 #, no-wrap msgid "'(\"127.0.0.1:8000\" \"127.0.0.1\" \"8000\" \"*:8000\" \"localhost:8000\")\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26491 +#: guix-git/doc/guix.texi:26828 #, no-wrap msgid "@code{server-name} (default: @code{(list 'default)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26494 +#: guix-git/doc/guix.texi:26831 msgid "A list of server names this server represents. @code{'default} represents the default server for connections matching no other server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26495 +#: guix-git/doc/guix.texi:26832 #, no-wrap msgid "@code{root} (default: @code{\"/srv/http\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26497 +#: guix-git/doc/guix.texi:26834 msgid "Root of the website nginx will serve." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26498 +#: guix-git/doc/guix.texi:26835 #, no-wrap msgid "@code{locations} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26502 +#: guix-git/doc/guix.texi:26839 msgid "A list of @dfn{nginx-location-configuration} or @dfn{nginx-named-location-configuration} records to use within this server block." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26503 +#: guix-git/doc/guix.texi:26840 #, no-wrap msgid "@code{index} (default: @code{(list \"index.html\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26506 +#: guix-git/doc/guix.texi:26843 msgid "Index files to look for when clients ask for a directory. If it cannot be found, Nginx will send the list of files in the directory." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26507 +#: guix-git/doc/guix.texi:26844 #, no-wrap msgid "@code{try-files} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26510 +#: guix-git/doc/guix.texi:26847 msgid "A list of files whose existence is checked in the specified order. @code{nginx} will use the first file it finds to process the request." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26511 +#: guix-git/doc/guix.texi:26848 #, no-wrap msgid "@code{ssl-certificate} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26514 +#: guix-git/doc/guix.texi:26851 msgid "Where to find the certificate for secure connections. Set it to @code{#f} if you don't have a certificate or you don't want to use HTTPS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26515 +#: guix-git/doc/guix.texi:26852 #, no-wrap msgid "@code{ssl-certificate-key} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26518 +#: guix-git/doc/guix.texi:26855 msgid "Where to find the private key for secure connections. Set it to @code{#f} if you don't have a key or you don't want to use HTTPS." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26519 +#: guix-git/doc/guix.texi:26856 #, no-wrap msgid "@code{server-tokens?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26521 +#: guix-git/doc/guix.texi:26858 msgid "Whether the server should add its configuration to response." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26522 +#: guix-git/doc/guix.texi:26859 #, no-wrap msgid "@code{raw-content} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26524 +#: guix-git/doc/guix.texi:26861 msgid "A list of raw lines added to the server block." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26528 +#: guix-git/doc/guix.texi:26865 #, no-wrap msgid "{Data Type} nginx-upstream-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26531 +#: guix-git/doc/guix.texi:26868 msgid "Data type representing the configuration of an nginx @code{upstream} block. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26535 +#: guix-git/doc/guix.texi:26872 msgid "Name for this group of servers." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26536 +#: guix-git/doc/guix.texi:26873 #, no-wrap msgid "servers" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26543 +#: guix-git/doc/guix.texi:26880 msgid "Specify the addresses of the servers in the group. The address can be specified as a IP address (e.g.@: @samp{127.0.0.1}), domain name (e.g.@: @samp{backend1.example.com}) or a path to a UNIX socket using the prefix @samp{unix:}. For addresses using an IP address or domain name, the default port is 80, and a different port can be specified explicitly." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26547 +#: guix-git/doc/guix.texi:26884 #, no-wrap msgid "{Data Type} nginx-location-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26550 +#: guix-git/doc/guix.texi:26887 msgid "Data type representing the configuration of an nginx @code{location} block. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26554 +#: guix-git/doc/guix.texi:26891 msgid "URI which this location block matches." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:26556 +#: guix-git/doc/guix.texi:26893 msgid "nginx-location-configuration body" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26556 guix-git/doc/guix.texi:26577 +#: guix-git/doc/guix.texi:26893 guix-git/doc/guix.texi:26914 #, no-wrap msgid "body" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26563 +#: guix-git/doc/guix.texi:26900 msgid "Body of the location block, specified as a list of strings. This can contain many configuration directives. For example, to pass requests to a upstream server group defined using an @code{nginx-upstream-configuration} block, the following directive would be specified in the body @samp{(list \"proxy_pass http://upstream-name;\")}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26567 +#: guix-git/doc/guix.texi:26904 #, no-wrap msgid "{Data Type} nginx-named-location-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26572 +#: guix-git/doc/guix.texi:26909 msgid "Data type representing the configuration of an nginx named location block. Named location blocks are used for request redirection, and not used for regular request processing. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26576 +#: guix-git/doc/guix.texi:26913 msgid "Name to identify this location block." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26582 +#: guix-git/doc/guix.texi:26919 msgid "@xref{nginx-location-configuration body}, as the body for named location blocks can be used in a similar way to the @code{nginx-location-configuration body}. One restriction is that the body of a named location block cannot contain location blocks." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26586 +#: guix-git/doc/guix.texi:26923 #, no-wrap msgid "Varnish Cache" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26587 +#: guix-git/doc/guix.texi:26924 #, no-wrap msgid "Varnish" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26592 +#: guix-git/doc/guix.texi:26929 msgid "Varnish is a fast cache server that sits in between web applications and end users. It proxies requests from clients and caches the accessed URLs such that multiple requests for the same resource only creates one request to the back-end." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26593 +#: guix-git/doc/guix.texi:26930 #, no-wrap msgid "{Scheme Variable} varnish-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26595 +#: guix-git/doc/guix.texi:26932 msgid "Service type for the Varnish daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26597 +#: guix-git/doc/guix.texi:26934 #, no-wrap msgid "{Data Type} varnish-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26600 +#: guix-git/doc/guix.texi:26937 msgid "Data type representing the @code{varnish} service configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26602 +#: guix-git/doc/guix.texi:26939 #, no-wrap msgid "@code{package} (default: @code{varnish})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26604 +#: guix-git/doc/guix.texi:26941 msgid "The Varnish package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26605 +#: guix-git/doc/guix.texi:26942 #, no-wrap msgid "@code{name} (default: @code{\"default\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26610 +#: guix-git/doc/guix.texi:26947 msgid "A name for this Varnish instance. Varnish will create a directory in @file{/var/varnish/} with this name and keep temporary files there. If the name starts with a forward slash, it is interpreted as an absolute directory name." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26613 +#: guix-git/doc/guix.texi:26950 msgid "Pass the @code{-n} argument to other Varnish programs to connect to the named instance, e.g.@: @command{varnishncsa -n default}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26614 +#: guix-git/doc/guix.texi:26951 #, no-wrap msgid "@code{backend} (default: @code{\"localhost:8080\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26616 +#: guix-git/doc/guix.texi:26953 msgid "The backend to use. This option has no effect if @code{vcl} is set." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26617 +#: guix-git/doc/guix.texi:26954 #, no-wrap msgid "@code{vcl} (default: #f)" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26622 +#: guix-git/doc/guix.texi:26959 msgid "The @dfn{VCL} (Varnish Configuration Language) program to run. If this is @code{#f}, Varnish will proxy @code{backend} using the default configuration. Otherwise this must be a file-like object with valid VCL syntax." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26626 +#: guix-git/doc/guix.texi:26963 msgid "For example, to mirror @url{https://www.gnu.org,www.gnu.org} with VCL you can do something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26632 +#: guix-git/doc/guix.texi:26969 #, no-wrap msgid "" "(define %gnu-mirror\n" @@ -47582,7 +48220,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26640 +#: guix-git/doc/guix.texi:26977 #, no-wrap msgid "" "(operating-system\n" @@ -47595,83 +48233,83 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26644 +#: guix-git/doc/guix.texi:26981 msgid "The configuration of an already running Varnish instance can be inspected and changed using the @command{varnishadm} program." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26648 +#: guix-git/doc/guix.texi:26985 msgid "Consult the @url{https://varnish-cache.org/docs/,Varnish User Guide} and @url{https://book.varnish-software.com/4.0/,Varnish Book} for comprehensive documentation on Varnish and its configuration language." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26649 +#: guix-git/doc/guix.texi:26986 #, no-wrap msgid "@code{listen} (default: @code{'(\"localhost:80\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26651 +#: guix-git/doc/guix.texi:26988 msgid "List of addresses Varnish will listen on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26652 +#: guix-git/doc/guix.texi:26989 #, no-wrap msgid "@code{storage} (default: @code{'(\"malloc,128m\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26654 +#: guix-git/doc/guix.texi:26991 msgid "List of storage backends that will be available in VCL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26655 +#: guix-git/doc/guix.texi:26992 #, no-wrap msgid "@code{parameters} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26657 +#: guix-git/doc/guix.texi:26994 msgid "List of run-time parameters in the form @code{'((\"parameter\" . \"value\"))}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26660 +#: guix-git/doc/guix.texi:26997 msgid "Additional arguments to pass to the @command{varnishd} process." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26664 guix-git/doc/guix.texi:26665 +#: guix-git/doc/guix.texi:27001 guix-git/doc/guix.texi:27002 #, no-wrap msgid "Patchwork" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26668 +#: guix-git/doc/guix.texi:27005 msgid "Patchwork is a patch tracking system. It can collect patches sent to a mailing list, and display them in a web interface." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26669 +#: guix-git/doc/guix.texi:27006 #, no-wrap msgid "{Scheme Variable} patchwork-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26671 +#: guix-git/doc/guix.texi:27008 #, fuzzy msgid "Service type for Patchwork." msgstr "分享你的工作。" #. type: Plain text -#: guix-git/doc/guix.texi:26675 +#: guix-git/doc/guix.texi:27012 msgid "The following example is an example of a minimal service for Patchwork, for the @code{patchwork.example.com} domain." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:26695 +#: guix-git/doc/guix.texi:27032 #, no-wrap msgid "" "(service patchwork-service-type\n" @@ -47696,809 +48334,809 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26701 +#: guix-git/doc/guix.texi:27038 msgid "There are three records for configuring the Patchwork service. The @code{} relates to the configuration for Patchwork within the HTTPD service." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26705 +#: guix-git/doc/guix.texi:27042 msgid "The @code{settings-module} field within the @code{} record can be populated with the @code{} record, which describes a settings module that is generated within the Guix store." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26709 +#: guix-git/doc/guix.texi:27046 msgid "For the @code{database-configuration} field within the @code{}, the @code{} must be used." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26710 +#: guix-git/doc/guix.texi:27047 #, no-wrap msgid "{Data Type} patchwork-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26713 +#: guix-git/doc/guix.texi:27050 msgid "Data type representing the Patchwork service configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26715 +#: guix-git/doc/guix.texi:27052 #, fuzzy, no-wrap msgid "@code{patchwork} (default: @code{patchwork})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:26717 +#: guix-git/doc/guix.texi:27054 #, fuzzy msgid "The Patchwork package to use." msgstr "软件包数据类型。" #. type: code{#1} -#: guix-git/doc/guix.texi:26718 +#: guix-git/doc/guix.texi:27055 #, no-wrap msgid "domain" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26721 +#: guix-git/doc/guix.texi:27058 msgid "The domain to use for Patchwork, this is used in the HTTPD service virtual host." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26722 +#: guix-git/doc/guix.texi:27059 #, no-wrap msgid "settings-module" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26728 +#: guix-git/doc/guix.texi:27065 msgid "The settings module to use for Patchwork. As a Django application, Patchwork is configured with a Python module containing the settings. This can either be an instance of the @code{} record, any other record that represents the settings in the store, or a directory outside of the store." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26729 +#: guix-git/doc/guix.texi:27066 #, fuzzy, no-wrap msgid "@code{static-path} (default: @code{\"/static/\"})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:26731 +#: guix-git/doc/guix.texi:27068 msgid "The path under which the HTTPD service should serve the static files." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26732 +#: guix-git/doc/guix.texi:27069 #, no-wrap msgid "getmail-retriever-config" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26736 +#: guix-git/doc/guix.texi:27073 msgid "The getmail-retriever-configuration record value to use with Patchwork. Getmail will be configured with this value, the messages will be delivered to Patchwork." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26740 +#: guix-git/doc/guix.texi:27077 #, no-wrap msgid "{Data Type} patchwork-settings-module" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26745 +#: guix-git/doc/guix.texi:27082 msgid "Data type representing a settings module for Patchwork. Some of these settings relate directly to Patchwork, but others relate to Django, the web framework used by Patchwork, or the Django Rest Framework library. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26747 +#: guix-git/doc/guix.texi:27084 #, no-wrap msgid "@code{database-configuration} (default: @code{(patchwork-database-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26750 +#: guix-git/doc/guix.texi:27087 msgid "The database connection settings used for Patchwork. See the @code{} record type for more information." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26751 +#: guix-git/doc/guix.texi:27088 #, fuzzy, no-wrap msgid "@code{secret-key-file} (default: @code{\"/etc/patchwork/django-secret-key\"})" msgstr "@code{daemon-socket}(默认值:@code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:26754 +#: guix-git/doc/guix.texi:27091 msgid "Patchwork, as a Django web application uses a secret key for cryptographically signing values. This file should contain a unique unpredictable value." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26757 +#: guix-git/doc/guix.texi:27094 msgid "If this file does not exist, it will be created and populated with a random value by the patchwork-setup shepherd service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26759 +#: guix-git/doc/guix.texi:27096 msgid "This setting relates to Django." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26760 +#: guix-git/doc/guix.texi:27097 #, no-wrap msgid "allowed-hosts" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26763 +#: guix-git/doc/guix.texi:27100 msgid "A list of valid hosts for this Patchwork service. This should at least include the domain specified in the @code{} record." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26765 guix-git/doc/guix.texi:26779 -#: guix-git/doc/guix.texi:26785 guix-git/doc/guix.texi:26791 +#: guix-git/doc/guix.texi:27102 guix-git/doc/guix.texi:27116 +#: guix-git/doc/guix.texi:27122 guix-git/doc/guix.texi:27128 msgid "This is a Django setting." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26766 +#: guix-git/doc/guix.texi:27103 #, no-wrap msgid "default-from-email" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26768 +#: guix-git/doc/guix.texi:27105 msgid "The email address from which Patchwork should send email by default." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26770 guix-git/doc/guix.texi:26796 -#: guix-git/doc/guix.texi:26801 guix-git/doc/guix.texi:26806 +#: guix-git/doc/guix.texi:27107 guix-git/doc/guix.texi:27133 +#: guix-git/doc/guix.texi:27138 guix-git/doc/guix.texi:27143 msgid "This is a Patchwork setting." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26771 +#: guix-git/doc/guix.texi:27108 #, fuzzy, no-wrap msgid "@code{static-url} (default: @code{#f})" msgstr "@code{dnssec-policy}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:26774 +#: guix-git/doc/guix.texi:27111 msgid "The URL to use when serving static assets. It can be part of a URL, or a full URL, but must end in a @code{/}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26777 +#: guix-git/doc/guix.texi:27114 msgid "If the default value is used, the @code{static-path} value from the @code{} record will be used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26780 +#: guix-git/doc/guix.texi:27117 #, fuzzy, no-wrap msgid "@code{admins} (default: @code{'()})" msgstr "@code{includes}(默认值:@code{'()})" #. type: table -#: guix-git/doc/guix.texi:26783 +#: guix-git/doc/guix.texi:27120 msgid "Email addresses to send the details of errors that occur. Each value should be a list containing two elements, the name and then the email address." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26789 +#: guix-git/doc/guix.texi:27126 msgid "Whether to run Patchwork in debug mode. If set to @code{#t}, detailed error messages will be shown." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26792 +#: guix-git/doc/guix.texi:27129 #, fuzzy, no-wrap msgid "@code{enable-rest-api?} (default: @code{#t})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:26794 +#: guix-git/doc/guix.texi:27131 msgid "Whether to enable the Patchwork REST API." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26797 +#: guix-git/doc/guix.texi:27134 #, fuzzy, no-wrap msgid "@code{enable-xmlrpc?} (default: @code{#t})" msgstr "@code{zonefile-load}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:26799 +#: guix-git/doc/guix.texi:27136 msgid "Whether to enable the XML RPC API." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26802 +#: guix-git/doc/guix.texi:27139 #, fuzzy, no-wrap msgid "@code{force-https-links?} (default: @code{#t})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:26804 +#: guix-git/doc/guix.texi:27141 msgid "Whether to use HTTPS links on Patchwork pages." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26809 +#: guix-git/doc/guix.texi:27146 msgid "Extra code to place at the end of the Patchwork settings module." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26813 +#: guix-git/doc/guix.texi:27150 #, no-wrap msgid "{Data Type} patchwork-database-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26815 +#: guix-git/doc/guix.texi:27152 msgid "Data type representing the database configuration for Patchwork." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26817 +#: guix-git/doc/guix.texi:27154 #, fuzzy, no-wrap msgid "@code{engine} (default: @code{\"django.db.backends.postgresql_psycopg2\"})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: table -#: guix-git/doc/guix.texi:26819 +#: guix-git/doc/guix.texi:27156 msgid "The database engine to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26820 +#: guix-git/doc/guix.texi:27157 #, fuzzy, no-wrap msgid "@code{name} (default: @code{\"patchwork\"})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:26822 +#: guix-git/doc/guix.texi:27159 #, fuzzy msgid "The name of the database to use." msgstr "远程机器的主机名。" #. type: table -#: guix-git/doc/guix.texi:26825 +#: guix-git/doc/guix.texi:27162 msgid "The user to connect to the database as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26826 +#: guix-git/doc/guix.texi:27163 #, fuzzy, no-wrap msgid "@code{password} (default: @code{\"\"})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:26828 +#: guix-git/doc/guix.texi:27165 msgid "The password to use when connecting to the database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26829 +#: guix-git/doc/guix.texi:27166 #, fuzzy, no-wrap msgid "@code{host} (default: @code{\"\"})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:26831 +#: guix-git/doc/guix.texi:27168 msgid "The host to make the database connection to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26832 +#: guix-git/doc/guix.texi:27169 #, fuzzy, no-wrap msgid "@code{port} (default: @code{\"\"})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:26834 +#: guix-git/doc/guix.texi:27171 msgid "The port on which to connect to the database." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26838 +#: guix-git/doc/guix.texi:27175 #, no-wrap msgid "Mumi" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26840 +#: guix-git/doc/guix.texi:27177 #, fuzzy, no-wrap msgid "Mumi, Debbugs Web interface" msgstr "用户界面" #. type: cindex -#: guix-git/doc/guix.texi:26841 +#: guix-git/doc/guix.texi:27178 #, fuzzy, no-wrap msgid "Debbugs, Mumi Web interface" msgstr "用户界面" #. type: Plain text -#: guix-git/doc/guix.texi:26846 +#: guix-git/doc/guix.texi:27183 msgid "@uref{https://git.elephly.net/gitweb.cgi?p=software/mumi.git, Mumi} is a Web interface to the Debbugs bug tracker, by default for @uref{https://bugs.gnu.org, the GNU instance}. Mumi is a Web server, but it also fetches and indexes mail retrieved from Debbugs." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26847 +#: guix-git/doc/guix.texi:27184 #, no-wrap msgid "{Scheme Variable} mumi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26849 +#: guix-git/doc/guix.texi:27186 msgid "This is the service type for Mumi." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26851 +#: guix-git/doc/guix.texi:27188 #, fuzzy, no-wrap msgid "{Data Type} mumi-configuration" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:26854 +#: guix-git/doc/guix.texi:27191 msgid "Data type representing the Mumi service configuration. This type has the following fields:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26856 +#: guix-git/doc/guix.texi:27193 #, fuzzy, no-wrap msgid "@code{mumi} (default: @code{mumi})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:26858 +#: guix-git/doc/guix.texi:27195 #, fuzzy msgid "The Mumi package to use." msgstr "软件包数据类型。" #. type: item -#: guix-git/doc/guix.texi:26859 +#: guix-git/doc/guix.texi:27196 #, fuzzy, no-wrap msgid "@code{mailer?} (default: @code{#true})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:26861 +#: guix-git/doc/guix.texi:27198 msgid "Whether to enable or disable the mailer component." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26862 +#: guix-git/doc/guix.texi:27199 #, no-wrap msgid "mumi-configuration-sender" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26864 +#: guix-git/doc/guix.texi:27201 msgid "The email address used as the sender for comments." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26865 +#: guix-git/doc/guix.texi:27202 #, fuzzy, no-wrap msgid "mumi-configuration-smtp" msgstr "系统配置" #. type: table -#: guix-git/doc/guix.texi:26870 +#: guix-git/doc/guix.texi:27207 msgid "A URI to configure the SMTP settings for Mailutils. This could be something like @code{sendmail:///path/to/bin/msmtp} or any other URI supported by Mailutils. @xref{SMTP Mailboxes, SMTP Mailboxes,, mailutils, GNU@tie{}Mailutils}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:26875 +#: guix-git/doc/guix.texi:27212 #, no-wrap msgid "FastCGI" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26876 +#: guix-git/doc/guix.texi:27213 #, no-wrap msgid "fastcgi" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26877 +#: guix-git/doc/guix.texi:27214 #, no-wrap msgid "fcgiwrap" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26884 +#: guix-git/doc/guix.texi:27221 msgid "FastCGI is an interface between the front-end and the back-end of a web service. It is a somewhat legacy facility; new web services should generally just talk HTTP between the front-end and the back-end. However there are a number of back-end services such as PHP or the optimized HTTP Git repository access that use FastCGI, so we have support for it in Guix." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26891 +#: guix-git/doc/guix.texi:27228 msgid "To use FastCGI, you configure the front-end web server (e.g., nginx) to dispatch some subset of its requests to the fastcgi backend, which listens on a local TCP or UNIX socket. There is an intermediary @code{fcgiwrap} program that sits between the actual backend process and the web server. The front-end indicates which backend program to run, passing that information to the @code{fcgiwrap} process." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26892 +#: guix-git/doc/guix.texi:27229 #, no-wrap msgid "{Scheme Variable} fcgiwrap-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26894 +#: guix-git/doc/guix.texi:27231 msgid "A service type for the @code{fcgiwrap} FastCGI proxy." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26896 +#: guix-git/doc/guix.texi:27233 #, no-wrap msgid "{Data Type} fcgiwrap-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26899 +#: guix-git/doc/guix.texi:27236 msgid "Data type representing the configuration of the @code{fcgiwrap} service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26900 +#: guix-git/doc/guix.texi:27237 #, no-wrap msgid "@code{package} (default: @code{fcgiwrap})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26902 +#: guix-git/doc/guix.texi:27239 msgid "The fcgiwrap package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26903 +#: guix-git/doc/guix.texi:27240 #, no-wrap msgid "@code{socket} (default: @code{tcp:127.0.0.1:9000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26909 +#: guix-git/doc/guix.texi:27246 msgid "The socket on which the @code{fcgiwrap} process should listen, as a string. Valid @var{socket} values include @code{unix:@var{/path/to/unix/socket}}, @code{tcp:@var{dot.ted.qu.ad}:@var{port}} and @code{tcp6:[@var{ipv6_addr}]:port}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26910 +#: guix-git/doc/guix.texi:27247 #, no-wrap msgid "@code{user} (default: @code{fcgiwrap})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:26911 +#: guix-git/doc/guix.texi:27248 #, no-wrap msgid "@code{group} (default: @code{fcgiwrap})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26916 +#: guix-git/doc/guix.texi:27253 msgid "The user and group names, as strings, under which to run the @code{fcgiwrap} process. The @code{fastcgi} service will ensure that if the user asks for the specific user or group names @code{fcgiwrap} that the corresponding user and/or group is present on the system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:26923 +#: guix-git/doc/guix.texi:27260 msgid "It is possible to configure a FastCGI-backed web service to pass HTTP authentication information from the front-end to the back-end, and to allow @code{fcgiwrap} to run the back-end process as a corresponding local user. To enable this capability on the back-end, run @code{fcgiwrap} as the @code{root} user and group. Note that this capability also has to be configured on the front-end as well." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:26926 +#: guix-git/doc/guix.texi:27263 #, no-wrap msgid "php-fpm" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26929 +#: guix-git/doc/guix.texi:27266 msgid "PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI implementation with some additional features useful for sites of any size." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26931 +#: guix-git/doc/guix.texi:27268 msgid "These features include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26932 +#: guix-git/doc/guix.texi:27269 #, no-wrap msgid "Adaptive process spawning" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26933 +#: guix-git/doc/guix.texi:27270 #, no-wrap msgid "Basic statistics (similar to Apache's mod_status)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26934 +#: guix-git/doc/guix.texi:27271 #, no-wrap msgid "Advanced process management with graceful stop/start" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26935 +#: guix-git/doc/guix.texi:27272 #, no-wrap msgid "Ability to start workers with different uid/gid/chroot/environment" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:26937 +#: guix-git/doc/guix.texi:27274 msgid "and different php.ini (replaces safe_mode)" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26937 +#: guix-git/doc/guix.texi:27274 #, no-wrap msgid "Stdout & stderr logging" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26938 +#: guix-git/doc/guix.texi:27275 #, no-wrap msgid "Emergency restart in case of accidental opcode cache destruction" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26939 +#: guix-git/doc/guix.texi:27276 #, no-wrap msgid "Accelerated upload support" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26940 +#: guix-git/doc/guix.texi:27277 #, no-wrap msgid "Support for a \"slowlog\"" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26941 +#: guix-git/doc/guix.texi:27278 #, no-wrap msgid "Enhancements to FastCGI, such as fastcgi_finish_request() -" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:26944 +#: guix-git/doc/guix.texi:27281 msgid "a special function to finish request & flush all data while continuing to do something time-consuming (video converting, stats processing, etc.)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:26946 +#: guix-git/doc/guix.texi:27283 msgid "...@: and much more." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26947 +#: guix-git/doc/guix.texi:27284 #, no-wrap msgid "{Scheme Variable} php-fpm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:26949 +#: guix-git/doc/guix.texi:27286 msgid "A Service type for @code{php-fpm}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26951 +#: guix-git/doc/guix.texi:27288 #, no-wrap msgid "{Data Type} php-fpm-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:26953 +#: guix-git/doc/guix.texi:27290 msgid "Data Type for php-fpm service configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26954 +#: guix-git/doc/guix.texi:27291 #, no-wrap msgid "@code{php} (default: @code{php})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26956 +#: guix-git/doc/guix.texi:27293 msgid "The php package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26956 +#: guix-git/doc/guix.texi:27293 #, no-wrap msgid "@code{socket} (default: @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.sock\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26958 +#: guix-git/doc/guix.texi:27295 msgid "The address on which to accept FastCGI requests. Valid syntaxes are:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26959 +#: guix-git/doc/guix.texi:27296 #, no-wrap msgid "\"ip.add.re.ss:port\"" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26961 +#: guix-git/doc/guix.texi:27298 msgid "Listen on a TCP socket to a specific address on a specific port." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26961 +#: guix-git/doc/guix.texi:27298 #, no-wrap msgid "\"port\"" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26963 +#: guix-git/doc/guix.texi:27300 msgid "Listen on a TCP socket to all addresses on a specific port." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26963 +#: guix-git/doc/guix.texi:27300 #, no-wrap msgid "\"/path/to/unix/socket\"" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26965 +#: guix-git/doc/guix.texi:27302 msgid "Listen on a unix socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26967 +#: guix-git/doc/guix.texi:27304 #, no-wrap msgid "@code{user} (default: @code{php-fpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26969 +#: guix-git/doc/guix.texi:27306 msgid "User who will own the php worker processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26969 +#: guix-git/doc/guix.texi:27306 #, no-wrap msgid "@code{group} (default: @code{php-fpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26971 +#: guix-git/doc/guix.texi:27308 msgid "Group of the worker processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26971 +#: guix-git/doc/guix.texi:27308 #, no-wrap msgid "@code{socket-user} (default: @code{php-fpm})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26973 +#: guix-git/doc/guix.texi:27310 msgid "User who can speak to the php-fpm socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26973 +#: guix-git/doc/guix.texi:27310 #, fuzzy, no-wrap msgid "@code{socket-group} (default: @code{nginx})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: table -#: guix-git/doc/guix.texi:26975 +#: guix-git/doc/guix.texi:27312 msgid "Group that can speak to the php-fpm socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26975 +#: guix-git/doc/guix.texi:27312 #, no-wrap msgid "@code{pid-file} (default: @code{(string-append \"/var/run/php\" (version-major (package-version php)) \"-fpm.pid\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26978 +#: guix-git/doc/guix.texi:27315 msgid "The process id of the php-fpm process is written to this file once the service has started." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26978 +#: guix-git/doc/guix.texi:27315 #, no-wrap msgid "@code{log-file} (default: @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.log\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26980 +#: guix-git/doc/guix.texi:27317 msgid "Log for the php-fpm master process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26980 +#: guix-git/doc/guix.texi:27317 #, no-wrap msgid "@code{process-manager} (default: @code{(php-fpm-dynamic-process-manager-configuration)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26983 +#: guix-git/doc/guix.texi:27320 msgid "Detailed settings for the php-fpm process manager. Must be one of:" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26984 +#: guix-git/doc/guix.texi:27321 #, no-wrap msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26985 +#: guix-git/doc/guix.texi:27322 #, no-wrap msgid "" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:26986 +#: guix-git/doc/guix.texi:27323 #, no-wrap msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:26988 +#: guix-git/doc/guix.texi:27325 #, no-wrap msgid "@code{display-errors} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26993 +#: guix-git/doc/guix.texi:27330 msgid "Determines whether php errors and warning should be sent to clients and displayed in their browsers. This is useful for local php development, but a security risk for public sites, as error messages can reveal passwords and personal data." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26993 +#: guix-git/doc/guix.texi:27330 #, no-wrap msgid "@code{timezone} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26995 +#: guix-git/doc/guix.texi:27332 msgid "Specifies @code{php_admin_value[date.timezone]} parameter." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26995 +#: guix-git/doc/guix.texi:27332 #, no-wrap msgid "@code{workers-logfile} (default @code{(string-append \"/var/log/php\" (version-major (package-version php)) \"-fpm.www.log\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:26998 +#: guix-git/doc/guix.texi:27335 msgid "This file will log the @code{stderr} outputs of php worker processes. Can be set to @code{#f} to disable logging." msgstr "" #. type: item -#: guix-git/doc/guix.texi:26998 +#: guix-git/doc/guix.texi:27335 #, no-wrap msgid "@code{file} (default @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27001 +#: guix-git/doc/guix.texi:27338 msgid "An optional override of the whole configuration. You can use the @code{mixed-text-file} function or an absolute filepath for it." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27001 +#: guix-git/doc/guix.texi:27338 #, fuzzy, no-wrap msgid "@code{php-ini-file} (default @code{#f})" msgstr "@code{zonefile-load}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:27005 +#: guix-git/doc/guix.texi:27342 msgid "An optional override of the default php settings. It may be any ``file-like'' object (@pxref{G-Expressions, file-like objects}). You can use the @code{mixed-text-file} function or an absolute filepath for it." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27009 +#: guix-git/doc/guix.texi:27346 msgid "For local development it is useful to set a higher timeout and memory limit for spawned php processes. This be accomplished with the following operating system configuration snippet:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27014 +#: guix-git/doc/guix.texi:27351 #, no-wrap msgid "" "(define %local-php-ini\n" @@ -48509,7 +49147,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27021 +#: guix-git/doc/guix.texi:27358 #, no-wrap msgid "" "(operating-system\n" @@ -48521,118 +49159,118 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27026 +#: guix-git/doc/guix.texi:27363 msgid "Consult the @url{https://www.php.net/manual/en/ini.core.php,core php.ini directives} for comprehensive documentation on the acceptable @file{php.ini} directives." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27029 +#: guix-git/doc/guix.texi:27366 #, no-wrap msgid "{Data type} php-fpm-dynamic-process-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27033 +#: guix-git/doc/guix.texi:27370 msgid "Data Type for the @code{dynamic} php-fpm process manager. With the @code{dynamic} process manager, spare worker processes are kept around based on its configured limits." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27034 guix-git/doc/guix.texi:27050 -#: guix-git/doc/guix.texi:27060 +#: guix-git/doc/guix.texi:27371 guix-git/doc/guix.texi:27387 +#: guix-git/doc/guix.texi:27397 #, no-wrap msgid "@code{max-children} (default: @code{5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27036 guix-git/doc/guix.texi:27052 -#: guix-git/doc/guix.texi:27062 +#: guix-git/doc/guix.texi:27373 guix-git/doc/guix.texi:27389 +#: guix-git/doc/guix.texi:27399 msgid "Maximum of worker processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27036 +#: guix-git/doc/guix.texi:27373 #, no-wrap msgid "@code{start-servers} (default: @code{2})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27038 +#: guix-git/doc/guix.texi:27375 msgid "How many worker processes should be started on start-up." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27038 +#: guix-git/doc/guix.texi:27375 #, no-wrap msgid "@code{min-spare-servers} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27040 +#: guix-git/doc/guix.texi:27377 msgid "How many spare worker processes should be kept around at minimum." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27040 +#: guix-git/doc/guix.texi:27377 #, no-wrap msgid "@code{max-spare-servers} (default: @code{3})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27042 +#: guix-git/doc/guix.texi:27379 msgid "How many spare worker processes should be kept around at maximum." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27045 +#: guix-git/doc/guix.texi:27382 #, no-wrap msgid "{Data type} php-fpm-static-process-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27049 +#: guix-git/doc/guix.texi:27386 msgid "Data Type for the @code{static} php-fpm process manager. With the @code{static} process manager, an unchanging number of worker processes are created." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27055 +#: guix-git/doc/guix.texi:27392 #, no-wrap msgid "{Data type} php-fpm-on-demand-process-manager-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27059 +#: guix-git/doc/guix.texi:27396 msgid "Data Type for the @code{on-demand} php-fpm process manager. With the @code{on-demand} process manager, worker processes are only created as requests arrive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27062 +#: guix-git/doc/guix.texi:27399 #, no-wrap msgid "@code{process-idle-timeout} (default: @code{10})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27064 +#: guix-git/doc/guix.texi:27401 msgid "The time in seconds after which a process with no requests is killed." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27068 +#: guix-git/doc/guix.texi:27405 #, no-wrap msgid "{Scheme Procedure} nginx-php-location @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27074 +#: guix-git/doc/guix.texi:27411 msgid "[#:nginx-package nginx] @ [socket (string-append \"/var/run/php\" @ (version-major (package-version php)) @ \"-fpm.sock\")] A helper function to quickly add php to an @code{nginx-server-configuration}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27077 +#: guix-git/doc/guix.texi:27414 msgid "A simple services setup for nginx with php can look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27090 +#: guix-git/doc/guix.texi:27427 #, no-wrap msgid "" "(services (cons* (service dhcp-client-service-type)\n" @@ -48650,34 +49288,34 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27092 +#: guix-git/doc/guix.texi:27429 #, no-wrap msgid "cat-avatar-generator" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27096 +#: guix-git/doc/guix.texi:27433 msgid "The cat avatar generator is a simple service to demonstrate the use of php-fpm in @code{Nginx}. It is used to generate cat avatar from a seed, for instance the hash of a user's email address." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27097 +#: guix-git/doc/guix.texi:27434 #, no-wrap msgid "{Scheme Procedure} cat-avatar-generator-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27105 +#: guix-git/doc/guix.texi:27442 msgid "[#:cache-dir \"/var/cache/cat-avatar-generator\"] @ [#:package cat-avatar-generator] @ [#:configuration (nginx-server-configuration)] Returns an nginx-server-configuration that inherits @code{configuration}. It extends the nginx configuration to add a server block that serves @code{package}, a version of cat-avatar-generator. During execution, cat-avatar-generator will be able to use @code{cache-dir} as its cache directory." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27108 +#: guix-git/doc/guix.texi:27445 msgid "A simple setup for cat-avatar-generator can look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27115 +#: guix-git/doc/guix.texi:27452 #, no-wrap msgid "" "(services (cons* (cat-avatar-generator-service\n" @@ -48689,177 +49327,177 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27117 +#: guix-git/doc/guix.texi:27454 #, no-wrap msgid "Hpcguix-web" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27119 +#: guix-git/doc/guix.texi:27456 #, no-wrap msgid "hpcguix-web" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27124 +#: guix-git/doc/guix.texi:27461 msgid "The @uref{https://github.com/UMCUGenetics/hpcguix-web/, hpcguix-web} program is a customizable web interface to browse Guix packages, initially designed for users of high-performance computing (HPC) clusters." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27125 +#: guix-git/doc/guix.texi:27462 #, no-wrap msgid "{Scheme Variable} hpcguix-web-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27127 +#: guix-git/doc/guix.texi:27464 msgid "The service type for @code{hpcguix-web}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27129 +#: guix-git/doc/guix.texi:27466 #, no-wrap msgid "{Data Type} hpcguix-web-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27131 +#: guix-git/doc/guix.texi:27468 msgid "Data type for the hpcguix-web service configuration." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:27133 +#: guix-git/doc/guix.texi:27470 #, no-wrap msgid "specs" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27136 +#: guix-git/doc/guix.texi:27473 msgid "A gexp (@pxref{G-Expressions}) specifying the hpcguix-web service configuration. The main items available in this spec are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27138 +#: guix-git/doc/guix.texi:27475 #, no-wrap msgid "@code{title-prefix} (default: @code{\"hpcguix | \"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27140 +#: guix-git/doc/guix.texi:27477 msgid "The page title prefix." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27141 +#: guix-git/doc/guix.texi:27478 #, no-wrap msgid "@code{guix-command} (default: @code{\"guix\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27143 +#: guix-git/doc/guix.texi:27480 msgid "The @command{guix} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27144 +#: guix-git/doc/guix.texi:27481 #, no-wrap msgid "@code{package-filter-proc} (default: @code{(const #t)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27146 +#: guix-git/doc/guix.texi:27483 msgid "A procedure specifying how to filter packages that are displayed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27147 +#: guix-git/doc/guix.texi:27484 #, no-wrap msgid "@code{package-page-extension-proc} (default: @code{(const '())})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27149 +#: guix-git/doc/guix.texi:27486 msgid "Extension package for @code{hpcguix-web}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27150 +#: guix-git/doc/guix.texi:27487 #, no-wrap msgid "@code{menu} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27152 +#: guix-git/doc/guix.texi:27489 msgid "Additional entry in page @code{menu}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27153 +#: guix-git/doc/guix.texi:27490 #, no-wrap msgid "@code{channels} (default: @code{%default-channels})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27155 +#: guix-git/doc/guix.texi:27492 msgid "List of channels from which the package list is built (@pxref{Channels})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27156 +#: guix-git/doc/guix.texi:27493 #, no-wrap msgid "@code{package-list-expiration} (default: @code{(* 12 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27159 +#: guix-git/doc/guix.texi:27496 msgid "The expiration time, in seconds, after which the package list is rebuilt from the latest instances of the given channels." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27164 +#: guix-git/doc/guix.texi:27501 msgid "See the hpcguix-web repository for a @uref{https://github.com/UMCUGenetics/hpcguix-web/blob/master/hpcweb-configuration.scm, complete example}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27165 +#: guix-git/doc/guix.texi:27502 #, no-wrap msgid "@code{package} (default: @code{hpcguix-web})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27167 +#: guix-git/doc/guix.texi:27504 msgid "The hpcguix-web package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27168 +#: guix-git/doc/guix.texi:27505 #, fuzzy, no-wrap msgid "@code{address} (default: @code{\"127.0.0.1\"})" msgstr "@code{display}(默认值:@code{\":0\"})" #. type: table -#: guix-git/doc/guix.texi:27170 +#: guix-git/doc/guix.texi:27507 msgid "The IP address to listen to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27171 +#: guix-git/doc/guix.texi:27508 #, fuzzy, no-wrap msgid "@code{port} (default: @code{5000})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:27173 +#: guix-git/doc/guix.texi:27510 msgid "The port number to listen to." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27177 +#: guix-git/doc/guix.texi:27514 msgid "A typical hpcguix-web service declaration looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27186 +#: guix-git/doc/guix.texi:27523 #, no-wrap msgid "" "(service hpcguix-web-service-type\n" @@ -48872,39 +49510,39 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:27193 +#: guix-git/doc/guix.texi:27530 msgid "The hpcguix-web service periodically updates the package list it publishes by pulling channels from Git. To that end, it needs to access X.509 certificates so that it can authenticate Git servers when communicating over HTTPS, and it assumes that @file{/etc/ssl/certs} contains those certificates." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:27197 +#: guix-git/doc/guix.texi:27534 msgid "Thus, make sure to add @code{nss-certs} or another certificate package to the @code{packages} field of your configuration. @ref{X.509 Certificates}, for more information on X.509 certificates." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27199 guix-git/doc/guix.texi:27201 +#: guix-git/doc/guix.texi:27536 guix-git/doc/guix.texi:27538 #, no-wrap msgid "gmnisrv" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27204 +#: guix-git/doc/guix.texi:27541 msgid "The @uref{https://git.sr.ht/~sircmpwn/gmnisrv, gmnisrv} program is a simple @uref{https://gemini.circumlunar.space/, Gemini} protocol server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27205 +#: guix-git/doc/guix.texi:27542 #, no-wrap msgid "{Scheme Variable} gmnisrv-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27208 +#: guix-git/doc/guix.texi:27545 msgid "This is the type of the gmnisrv service, whose value should be a @code{gmnisrv-configuration} object, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27213 +#: guix-git/doc/guix.texi:27550 #, no-wrap msgid "" "(service gmnisrv-service-type\n" @@ -48913,69 +49551,69 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27216 +#: guix-git/doc/guix.texi:27553 #, no-wrap msgid "{Data Type} gmnisrv-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27218 +#: guix-git/doc/guix.texi:27555 #, fuzzy msgid "Data type representing the configuration of gmnisrv." msgstr "管理操作系统配置。" #. type: item -#: guix-git/doc/guix.texi:27220 +#: guix-git/doc/guix.texi:27557 #, fuzzy, no-wrap msgid "@code{package} (default: @var{gmnisrv})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: table -#: guix-git/doc/guix.texi:27222 +#: guix-git/doc/guix.texi:27559 msgid "Package object of the gmnisrv server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27223 +#: guix-git/doc/guix.texi:27560 #, fuzzy, no-wrap msgid "@code{config-file} (default: @code{%default-gmnisrv-config-file})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: table -#: guix-git/doc/guix.texi:27229 +#: guix-git/doc/guix.texi:27566 msgid "File-like object of the gmnisrv configuration file to use. The default configuration listens on port 1965 and serves files from @file{/srv/gemini}. Certificates are stored in @file{/var/lib/gemini/certs}. For more information, run @command{man gmnisrv} and @command{man gmnisrv.ini}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27233 +#: guix-git/doc/guix.texi:27570 #, no-wrap msgid "Agate" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27235 +#: guix-git/doc/guix.texi:27572 #, no-wrap msgid "agate" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27240 +#: guix-git/doc/guix.texi:27577 msgid "The @uref{gemini://qwertqwefsday.eu/agate.gmi, Agate} (@uref{https://github.com/mbrubeck/agate, GitHub page over HTTPS}) program is a simple @uref{https://gemini.circumlunar.space/, Gemini} protocol server written in Rust." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27241 +#: guix-git/doc/guix.texi:27578 #, no-wrap msgid "{Scheme Variable} agate-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27244 +#: guix-git/doc/guix.texi:27581 msgid "This is the type of the agate service, whose value should be an @code{agate-service-type} object, as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27251 +#: guix-git/doc/guix.texi:27588 #, no-wrap msgid "" "(service agate-service-type\n" @@ -48986,17 +49624,17 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27256 +#: guix-git/doc/guix.texi:27593 msgid "The example above represents the minimal tweaking necessary to get Agate up and running. Specifying the path to the certificate and key is always necessary, as the Gemini protocol requires TLS by default." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27259 +#: guix-git/doc/guix.texi:27596 msgid "To obtain a certificate and a key, you could, for example, use OpenSSL, running a command similar to the following example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:27263 +#: guix-git/doc/guix.texi:27600 #, no-wrap msgid "" "openssl req -x509 -newkey rsa:4096 -keyout key.rsa -out cert.pem \\\n" @@ -49004,222 +49642,222 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27268 +#: guix-git/doc/guix.texi:27605 msgid "Of course, you'll have to replace @i{example.com} with your own domain name, and then point the Agate configuration towards the path of the generated key and certificate." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27271 +#: guix-git/doc/guix.texi:27608 #, fuzzy, no-wrap msgid "{Data Type} agate-configuration" msgstr "管理操作系统配置。" #. type: deftp -#: guix-git/doc/guix.texi:27273 +#: guix-git/doc/guix.texi:27610 #, fuzzy msgid "Data type representing the configuration of Agate." msgstr "管理操作系统配置。" #. type: item -#: guix-git/doc/guix.texi:27275 +#: guix-git/doc/guix.texi:27612 #, fuzzy, no-wrap msgid "@code{package} (default: @code{agate})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:27277 +#: guix-git/doc/guix.texi:27614 #, fuzzy msgid "The package object of the Agate server." msgstr "软件包数据类型。" #. type: item -#: guix-git/doc/guix.texi:27278 +#: guix-git/doc/guix.texi:27615 #, fuzzy, no-wrap msgid "@code{content} (default: @file{\"/srv/gemini\"})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:27280 +#: guix-git/doc/guix.texi:27617 msgid "The directory from which Agate will serve files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27281 +#: guix-git/doc/guix.texi:27618 #, fuzzy, no-wrap msgid "@code{cert} (default: @code{#f})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:27284 +#: guix-git/doc/guix.texi:27621 msgid "The path to the TLS certificate PEM file to be used for encrypted connections. Must be filled in with a value from the user." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27285 guix-git/doc/guix.texi:27721 +#: guix-git/doc/guix.texi:27622 guix-git/doc/guix.texi:28058 #, no-wrap msgid "@code{key} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27288 +#: guix-git/doc/guix.texi:27625 msgid "The path to the PKCS8 private key file to be used for encrypted connections. Must be filled in with a value from the user." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27289 +#: guix-git/doc/guix.texi:27626 #, fuzzy, no-wrap msgid "@code{addr} (default: @code{'(\"0.0.0.0:1965\" \"[::]:1965\")})" msgstr "@code{display}(默认值:@code{\":0\"})" #. type: table -#: guix-git/doc/guix.texi:27291 +#: guix-git/doc/guix.texi:27628 msgid "A list of the addresses to listen on." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27294 +#: guix-git/doc/guix.texi:27631 msgid "The domain name of this Gemini server. Optional." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27295 +#: guix-git/doc/guix.texi:27632 #, fuzzy, no-wrap msgid "@code{lang} (default: @code{#f})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:27297 +#: guix-git/doc/guix.texi:27634 msgid "RFC 4646 language code(s) for text/gemini documents. Optional." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27298 +#: guix-git/doc/guix.texi:27635 #, fuzzy, no-wrap msgid "@code{silent?} (default: @code{#f})" msgstr "@code{dnssec-policy}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:27300 +#: guix-git/doc/guix.texi:27637 msgid "Set to @code{#t} to disable logging output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27301 +#: guix-git/doc/guix.texi:27638 #, fuzzy, no-wrap msgid "@code{serve-secret?} (default: @code{#f})" msgstr "@code{speed}(默认值:@code{1.0})" #. type: table -#: guix-git/doc/guix.texi:27304 +#: guix-git/doc/guix.texi:27641 msgid "Set to @code{#t} to serve secret files (files/directories starting with a dot)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27305 +#: guix-git/doc/guix.texi:27642 #, fuzzy, no-wrap msgid "@code{log-ip?} (default: @code{#t})" msgstr "@code{dnssec-policy}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:27307 +#: guix-git/doc/guix.texi:27644 msgid "Whether or not to output IP addresses when logging." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27308 +#: guix-git/doc/guix.texi:27645 #, fuzzy, no-wrap msgid "@code{user} (default: @code{\"agate\"})" msgstr "@code{vt}(默认值:@code{\"vt7\"})" #. type: table -#: guix-git/doc/guix.texi:27310 +#: guix-git/doc/guix.texi:27647 msgid "Owner of the @code{agate} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27311 +#: guix-git/doc/guix.texi:27648 #, fuzzy, no-wrap msgid "@code{group} (default: @code{\"agate\"})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: table -#: guix-git/doc/guix.texi:27313 +#: guix-git/doc/guix.texi:27650 msgid "Owner's group of the @code{agate} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27314 +#: guix-git/doc/guix.texi:27651 #, fuzzy, no-wrap msgid "@code{log-file} (default: @file{\"/var/log/agate.log\"})" msgstr "@code{private-key}(默认值:@file{~root/.ssh/id_rsa})" #. type: table -#: guix-git/doc/guix.texi:27316 +#: guix-git/doc/guix.texi:27653 msgid "The file which should store the logging output of Agate." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27323 +#: guix-git/doc/guix.texi:27660 #, no-wrap msgid "Web" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27324 +#: guix-git/doc/guix.texi:27661 #, no-wrap msgid "HTTP, HTTPS" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27325 +#: guix-git/doc/guix.texi:27662 #, no-wrap msgid "Let's Encrypt" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27326 +#: guix-git/doc/guix.texi:27663 #, no-wrap msgid "TLS certificates" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27333 +#: guix-git/doc/guix.texi:27670 msgid "The @code{(gnu services certbot)} module provides a service to automatically obtain a valid TLS certificate from the Let's Encrypt certificate authority. These certificates can then be used to serve content securely over HTTPS or other TLS-based protocols, with the knowledge that the client will be able to verify the server's authenticity." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27345 +#: guix-git/doc/guix.texi:27682 msgid "@url{https://letsencrypt.org/, Let's Encrypt} provides the @code{certbot} tool to automate the certification process. This tool first securely generates a key on the server. It then makes a request to the Let's Encrypt certificate authority (CA) to sign the key. The CA checks that the request originates from the host in question by using a challenge-response protocol, requiring the server to provide its response over HTTP@. If that protocol completes successfully, the CA signs the key, resulting in a certificate. That certificate is valid for a limited period of time, and therefore to continue to provide TLS services, the server needs to periodically ask the CA to renew its signature." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27352 +#: guix-git/doc/guix.texi:27689 msgid "The certbot service automates this process: the initial key generation, the initial certification request to the Let's Encrypt service, the web server challenge/response integration, writing the certificate to disk, the automated periodic renewals, and the deployment tasks associated with the renewal (e.g.@: reloading services, copying keys with different permissions)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27358 +#: guix-git/doc/guix.texi:27695 msgid "Certbot is run twice a day, at a random minute within the hour. It won't do anything until your certificates are due for renewal or revoked, but running it regularly would give your service a chance of staying online in case a Let's Encrypt-initiated revocation happened for some reason." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27362 +#: guix-git/doc/guix.texi:27699 msgid "By using this service, you agree to the ACME Subscriber Agreement, which can be found there: @url{https://acme-v01.api.letsencrypt.org/directory}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27363 +#: guix-git/doc/guix.texi:27700 #, no-wrap msgid "{Scheme Variable} certbot-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27366 +#: guix-git/doc/guix.texi:27703 msgid "A service type for the @code{certbot} Let's Encrypt client. Its value must be a @code{certbot-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27373 +#: guix-git/doc/guix.texi:27710 #, no-wrap msgid "" "(define %nginx-deploy-hook\n" @@ -49231,7 +49869,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27384 +#: guix-git/doc/guix.texi:27721 #, no-wrap msgid "" "(service certbot-service-type\n" @@ -49247,241 +49885,241 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:27387 +#: guix-git/doc/guix.texi:27724 msgid "See below for details about @code{certbot-configuration}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27389 +#: guix-git/doc/guix.texi:27726 #, no-wrap msgid "{Data Type} certbot-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27392 +#: guix-git/doc/guix.texi:27729 msgid "Data type representing the configuration of the @code{certbot} service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27394 +#: guix-git/doc/guix.texi:27731 #, no-wrap msgid "@code{package} (default: @code{certbot})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27396 +#: guix-git/doc/guix.texi:27733 msgid "The certbot package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27397 +#: guix-git/doc/guix.texi:27734 #, no-wrap msgid "@code{webroot} (default: @code{/var/www})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27400 +#: guix-git/doc/guix.texi:27737 msgid "The directory from which to serve the Let's Encrypt challenge/response files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27401 +#: guix-git/doc/guix.texi:27738 #, no-wrap msgid "@code{certificates} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27405 +#: guix-git/doc/guix.texi:27742 msgid "A list of @code{certificates-configuration}s for which to generate certificates and request signatures. Each certificate has a @code{name} and several @code{domains}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27406 +#: guix-git/doc/guix.texi:27743 #, fuzzy, no-wrap msgid "@code{email} (default: @code{#f})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:27410 +#: guix-git/doc/guix.texi:27747 msgid "Optional email address used for registration and recovery contact. Setting this is encouraged as it allows you to receive important notifications about the account and issued certificates." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27411 guix-git/doc/guix.texi:29158 +#: guix-git/doc/guix.texi:27748 guix-git/doc/guix.texi:29495 #, fuzzy, no-wrap msgid "@code{server} (default: @code{#f})" msgstr "@code{speed}(默认值:@code{1.0})" #. type: table -#: guix-git/doc/guix.texi:27414 +#: guix-git/doc/guix.texi:27751 msgid "Optional URL of ACME server. Setting this overrides certbot's default, which is the Let's Encrypt server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27415 +#: guix-git/doc/guix.texi:27752 #, no-wrap msgid "@code{rsa-key-size} (default: @code{2048})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27417 +#: guix-git/doc/guix.texi:27754 msgid "Size of the RSA key." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27418 +#: guix-git/doc/guix.texi:27755 #, no-wrap msgid "@code{default-location} (default: @i{see below})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27427 +#: guix-git/doc/guix.texi:27764 msgid "The default @code{nginx-location-configuration}. Because @code{certbot} needs to be able to serve challenges and responses, it needs to be able to run a web server. It does so by extending the @code{nginx} web service with an @code{nginx-server-configuration} listening on the @var{domains} on port 80, and which has a @code{nginx-location-configuration} for the @code{/.well-known/} URI path subspace used by Let's Encrypt. @xref{Web Services}, for more on these nginx configuration data types." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27431 +#: guix-git/doc/guix.texi:27768 msgid "Requests to other URL paths will be matched by the @code{default-location}, which if present is added to all @code{nginx-server-configuration}s." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27435 +#: guix-git/doc/guix.texi:27772 msgid "By default, the @code{default-location} will issue a redirect from @code{http://@var{domain}/...} to @code{https://@var{domain}/...}, leaving you to define what to serve on your site via @code{https}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27437 +#: guix-git/doc/guix.texi:27774 msgid "Pass @code{#f} to not issue a default location." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27440 +#: guix-git/doc/guix.texi:27777 #, no-wrap msgid "{Data Type} certificate-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27443 +#: guix-git/doc/guix.texi:27780 msgid "Data type representing the configuration of a certificate. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27445 +#: guix-git/doc/guix.texi:27782 #, no-wrap msgid "@code{name} (default: @i{see below})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27449 +#: guix-git/doc/guix.texi:27786 msgid "This name is used by Certbot for housekeeping and in file paths; it doesn't affect the content of the certificate itself. To see certificate names, run @code{certbot certificates}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27451 +#: guix-git/doc/guix.texi:27788 msgid "Its default is the first provided domain." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27452 +#: guix-git/doc/guix.texi:27789 #, no-wrap msgid "@code{domains} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27455 +#: guix-git/doc/guix.texi:27792 msgid "The first domain provided will be the subject CN of the certificate, and all domains will be Subject Alternative Names on the certificate." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27456 +#: guix-git/doc/guix.texi:27793 #, no-wrap msgid "@code{challenge} (default: @code{#f})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:27463 +#: guix-git/doc/guix.texi:27800 msgid "The challenge type that has to be run by certbot. If @code{#f} is specified, default to the HTTP challenge. If a value is specified, defaults to the manual plugin (see @code{authentication-hook}, @code{cleanup-hook} and the documentation at @url{https://certbot.eff.org/docs/using.html#hooks}), and gives Let's Encrypt permission to log the public IP address of the requesting machine." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27464 +#: guix-git/doc/guix.texi:27801 #, fuzzy, no-wrap msgid "@code{csr} (default: @code{#f})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:27471 +#: guix-git/doc/guix.texi:27808 msgid "File name of Certificate Signing Request (CSR) in DER or PEM format. If @code{#f} is specified, this argument will not be passed to certbot. If a value is specified, certbot will use it to obtain a certificate, instead of using a self-generated CSR. The domain-name(s) mentioned in @code{domains}, must be consistent with the domain-name(s) mentioned in CSR file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27472 +#: guix-git/doc/guix.texi:27809 #, no-wrap msgid "@code{authentication-hook} (default: @code{#f})" msgstr "@code{authentication-hook}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:27478 +#: guix-git/doc/guix.texi:27815 msgid "Command to be run in a shell once for each certificate challenge to be answered. For this command, the shell variable @code{$CERTBOT_DOMAIN} will contain the domain being authenticated, @code{$CERTBOT_VALIDATION} contains the validation string and @code{$CERTBOT_TOKEN} contains the file name of the resource requested when performing an HTTP-01 challenge." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27479 +#: guix-git/doc/guix.texi:27816 #, no-wrap msgid "@code{cleanup-hook} (default: @code{#f})" msgstr "@code{cleanup-hook}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:27485 +#: guix-git/doc/guix.texi:27822 msgid "Command to be run in a shell once for each certificate challenge that have been answered by the @code{auth-hook}. For this command, the shell variables available in the @code{auth-hook} script are still available, and additionally @code{$CERTBOT_AUTH_OUTPUT} will contain the standard output of the @code{auth-hook} script." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27486 +#: guix-git/doc/guix.texi:27823 #, no-wrap msgid "@code{deploy-hook} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27494 +#: guix-git/doc/guix.texi:27831 msgid "Command to be run in a shell once for each successfully issued certificate. For this command, the shell variable @code{$RENEWED_LINEAGE} will point to the config live subdirectory (for example, @samp{\"/etc/letsencrypt/live/example.com\"}) containing the new certificates and keys; the shell variable @code{$RENEWED_DOMAINS} will contain a space-delimited list of renewed certificate domains (for example, @samp{\"example.com www.example.com\"}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27501 +#: guix-git/doc/guix.texi:27838 msgid "For each @code{certificate-configuration}, the certificate is saved to @code{/etc/letsencrypt/live/@var{name}/fullchain.pem} and the key is saved to @code{/etc/letsencrypt/live/@var{name}/privkey.pem}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27503 +#: guix-git/doc/guix.texi:27840 #, no-wrap msgid "DNS (domain name system)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27504 +#: guix-git/doc/guix.texi:27841 #, no-wrap msgid "domain name system (DNS)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27512 +#: guix-git/doc/guix.texi:27849 msgid "The @code{(gnu services dns)} module provides services related to the @dfn{domain name system} (DNS). It provides a server service for hosting an @emph{authoritative} DNS server for multiple zones, slave or master. This service uses @uref{https://www.knot-dns.cz/, Knot DNS}. And also a caching and forwarding DNS server for the LAN, which uses @uref{http://www.thekelleys.org.uk/dnsmasq/doc.html, dnsmasq}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27513 +#: guix-git/doc/guix.texi:27850 #, no-wrap msgid "Knot Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:27517 +#: guix-git/doc/guix.texi:27854 msgid "An example configuration of an authoritative server for two zones, one master and one slave, is:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27524 +#: guix-git/doc/guix.texi:27861 #, no-wrap msgid "" "(define-zone-entries example.org.zone\n" @@ -49493,7 +50131,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27531 +#: guix-git/doc/guix.texi:27868 #, no-wrap msgid "" "(define master-zone\n" @@ -49506,7 +50144,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27537 +#: guix-git/doc/guix.texi:27874 #, no-wrap msgid "" "(define slave-zone\n" @@ -49518,7 +50156,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27542 +#: guix-git/doc/guix.texi:27879 #, no-wrap msgid "" "(define plop-master\n" @@ -49529,7 +50167,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27551 +#: guix-git/doc/guix.texi:27888 #, no-wrap msgid "" "(operating-system\n" @@ -49543,857 +50181,857 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27553 +#: guix-git/doc/guix.texi:27890 #, no-wrap msgid "{Scheme Variable} knot-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27555 +#: guix-git/doc/guix.texi:27892 msgid "This is the type for the Knot DNS server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27563 +#: guix-git/doc/guix.texi:27900 msgid "Knot DNS is an authoritative DNS server, meaning that it can serve multiple zones, that is to say domain names you would buy from a registrar. This server is not a resolver, meaning that it can only resolve names for which it is authoritative. This server can be configured to serve zones as a master server or a slave server as a per-zone basis. Slave zones will get their data from masters, and will serve it as an authoritative server. From the point of view of a resolver, there is no difference between master and slave." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27565 +#: guix-git/doc/guix.texi:27902 msgid "The following data types are used to configure the Knot DNS server:" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27567 +#: guix-git/doc/guix.texi:27904 #, no-wrap msgid "{Data Type} knot-key-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27570 +#: guix-git/doc/guix.texi:27907 msgid "Data type representing a key. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27572 guix-git/doc/guix.texi:27592 -#: guix-git/doc/guix.texi:27707 guix-git/doc/guix.texi:27733 -#: guix-git/doc/guix.texi:27768 +#: guix-git/doc/guix.texi:27909 guix-git/doc/guix.texi:27929 +#: guix-git/doc/guix.texi:28044 guix-git/doc/guix.texi:28070 +#: guix-git/doc/guix.texi:28105 #, no-wrap msgid "@code{id} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27575 guix-git/doc/guix.texi:27595 +#: guix-git/doc/guix.texi:27912 guix-git/doc/guix.texi:27932 msgid "An identifier for other configuration fields to refer to this key. IDs must be unique and must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27576 +#: guix-git/doc/guix.texi:27913 #, no-wrap msgid "@code{algorithm} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27580 +#: guix-git/doc/guix.texi:27917 msgid "The algorithm to use. Choose between @code{#f}, @code{'hmac-md5}, @code{'hmac-sha1}, @code{'hmac-sha224}, @code{'hmac-sha256}, @code{'hmac-sha384} and @code{'hmac-sha512}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27581 +#: guix-git/doc/guix.texi:27918 #, no-wrap msgid "@code{secret} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27583 +#: guix-git/doc/guix.texi:27920 msgid "The secret key itself." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27587 +#: guix-git/doc/guix.texi:27924 #, no-wrap msgid "{Data Type} knot-acl-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27590 +#: guix-git/doc/guix.texi:27927 msgid "Data type representing an Access Control List (ACL) configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27596 guix-git/doc/guix.texi:27711 +#: guix-git/doc/guix.texi:27933 guix-git/doc/guix.texi:28048 #, no-wrap msgid "@code{address} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27600 +#: guix-git/doc/guix.texi:27937 msgid "An ordered list of IP addresses, network subnets, or network ranges represented with strings. The query must match one of them. Empty value means that address match is not required." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27601 +#: guix-git/doc/guix.texi:27938 #, no-wrap msgid "@code{key} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27605 +#: guix-git/doc/guix.texi:27942 msgid "An ordered list of references to keys represented with strings. The string must match a key ID defined in a @code{knot-key-configuration}. No key means that a key is not require to match that ACL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27606 +#: guix-git/doc/guix.texi:27943 #, no-wrap msgid "@code{action} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27610 +#: guix-git/doc/guix.texi:27947 msgid "An ordered list of actions that are permitted or forbidden by this ACL@. Possible values are lists of zero or more elements from @code{'transfer}, @code{'notify} and @code{'update}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27611 +#: guix-git/doc/guix.texi:27948 #, no-wrap msgid "@code{deny?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27614 +#: guix-git/doc/guix.texi:27951 msgid "When true, the ACL defines restrictions. Listed actions are forbidden. When false, listed actions are allowed." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27618 +#: guix-git/doc/guix.texi:27955 #, no-wrap msgid "{Data Type} zone-entry" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27621 +#: guix-git/doc/guix.texi:27958 msgid "Data type representing a record entry in a zone file. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27623 +#: guix-git/doc/guix.texi:27960 #, no-wrap msgid "@code{name} (default: @code{\"@@\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27629 +#: guix-git/doc/guix.texi:27966 msgid "The name of the record. @code{\"@@\"} refers to the origin of the zone. Names are relative to the origin of the zone. For example, in the @code{example.org} zone, @code{\"ns.example.org\"} actually refers to @code{ns.example.org.example.org}. Names ending with a dot are absolute, which means that @code{\"ns.example.org.\"} refers to @code{ns.example.org}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27630 +#: guix-git/doc/guix.texi:27967 #, no-wrap msgid "@code{ttl} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27632 +#: guix-git/doc/guix.texi:27969 msgid "The Time-To-Live (TTL) of this record. If not set, the default TTL is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27633 +#: guix-git/doc/guix.texi:27970 #, no-wrap msgid "@code{class} (default: @code{\"IN\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27636 +#: guix-git/doc/guix.texi:27973 msgid "The class of the record. Knot currently supports only @code{\"IN\"} and partially @code{\"CH\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27637 +#: guix-git/doc/guix.texi:27974 #, no-wrap msgid "@code{type} (default: @code{\"A\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27641 +#: guix-git/doc/guix.texi:27978 msgid "The type of the record. Common types include A (IPv4 address), AAAA (IPv6 address), NS (Name Server) and MX (Mail eXchange). Many other types are defined." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27642 +#: guix-git/doc/guix.texi:27979 #, no-wrap msgid "@code{data} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27646 +#: guix-git/doc/guix.texi:27983 msgid "The data contained in the record. For instance an IP address associated with an A record, or a domain name associated with an NS record. Remember that domain names are relative to the origin unless they end with a dot." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27650 +#: guix-git/doc/guix.texi:27987 #, no-wrap msgid "{Data Type} zone-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27653 +#: guix-git/doc/guix.texi:27990 msgid "Data type representing the content of a zone file. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27662 +#: guix-git/doc/guix.texi:27999 msgid "The list of entries. The SOA record is taken care of, so you don't need to put it in the list of entries. This list should probably contain an entry for your primary authoritative DNS server. Other than using a list of entries directly, you can use @code{define-zone-entries} to define a object containing the list of entries more easily, that you can later pass to the @code{entries} field of the @code{zone-file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27663 +#: guix-git/doc/guix.texi:28000 #, no-wrap msgid "@code{origin} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27665 +#: guix-git/doc/guix.texi:28002 msgid "The name of your zone. This parameter cannot be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27666 +#: guix-git/doc/guix.texi:28003 #, no-wrap msgid "@code{ns} (default: @code{\"ns\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27671 +#: guix-git/doc/guix.texi:28008 msgid "The domain of your primary authoritative DNS server. The name is relative to the origin, unless it ends with a dot. It is mandatory that this primary DNS server corresponds to an NS record in the zone and that it is associated to an IP address in the list of entries." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27672 +#: guix-git/doc/guix.texi:28009 #, no-wrap msgid "@code{mail} (default: @code{\"hostmaster\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27675 +#: guix-git/doc/guix.texi:28012 msgid "An email address people can contact you at, as the owner of the zone. This is translated as @code{@@}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27676 +#: guix-git/doc/guix.texi:28013 #, no-wrap msgid "@code{serial} (default: @code{1})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27680 +#: guix-git/doc/guix.texi:28017 msgid "The serial number of the zone. As this is used to keep track of changes by both slaves and resolvers, it is mandatory that it @emph{never} decreases. Always increment it when you make a change in your zone." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27681 +#: guix-git/doc/guix.texi:28018 #, no-wrap msgid "@code{refresh} (default: @code{(* 2 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27685 +#: guix-git/doc/guix.texi:28022 msgid "The frequency at which slaves will do a zone transfer. This value is a number of seconds. It can be computed by multiplications or with @code{(string->duration)}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27686 +#: guix-git/doc/guix.texi:28023 #, no-wrap msgid "@code{retry} (default: @code{(* 15 60)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27689 +#: guix-git/doc/guix.texi:28026 msgid "The period after which a slave will retry to contact its master when it fails to do so a first time." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27690 +#: guix-git/doc/guix.texi:28027 #, no-wrap msgid "@code{expiry} (default: @code{(* 14 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27694 +#: guix-git/doc/guix.texi:28031 msgid "Default TTL of records. Existing records are considered correct for at most this amount of time. After this period, resolvers will invalidate their cache and check again that it still exists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27695 +#: guix-git/doc/guix.texi:28032 #, no-wrap msgid "@code{nx} (default: @code{3600})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27698 +#: guix-git/doc/guix.texi:28035 msgid "Default TTL of inexistent records. This delay is usually short because you want your new domains to reach everyone quickly." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27702 +#: guix-git/doc/guix.texi:28039 #, no-wrap msgid "{Data Type} knot-remote-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27705 +#: guix-git/doc/guix.texi:28042 msgid "Data type representing a remote configuration. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27710 +#: guix-git/doc/guix.texi:28047 msgid "An identifier for other configuration fields to refer to this remote. IDs must be unique and must not be empty." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27715 +#: guix-git/doc/guix.texi:28052 msgid "An ordered list of destination IP addresses. Addresses are tried in sequence. An optional port can be given with the @@ separator. For instance: @code{(list \"1.2.3.4\" \"2.3.4.5@@53\")}. Default port is 53." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27716 +#: guix-git/doc/guix.texi:28053 #, no-wrap msgid "@code{via} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27720 +#: guix-git/doc/guix.texi:28057 msgid "An ordered list of source IP addresses. An empty list will have Knot choose an appropriate source IP@. An optional port can be given with the @@ separator. The default is to choose at random." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27724 +#: guix-git/doc/guix.texi:28061 msgid "A reference to a key, that is a string containing the identifier of a key defined in a @code{knot-key-configuration} field." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27728 +#: guix-git/doc/guix.texi:28065 #, no-wrap msgid "{Data Type} knot-keystore-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27731 +#: guix-git/doc/guix.texi:28068 msgid "Data type representing a keystore to hold dnssec keys. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27735 +#: guix-git/doc/guix.texi:28072 msgid "The id of the keystore. It must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27736 +#: guix-git/doc/guix.texi:28073 #, no-wrap msgid "@code{backend} (default: @code{'pem})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27738 +#: guix-git/doc/guix.texi:28075 msgid "The backend to store the keys in. Can be @code{'pem} or @code{'pkcs11}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27739 +#: guix-git/doc/guix.texi:28076 #, no-wrap msgid "@code{config} (default: @code{\"/var/lib/knot/keys/keys\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27743 +#: guix-git/doc/guix.texi:28080 msgid "The configuration string of the backend. An example for the PKCS#11 is: @code{\"pkcs11:token=knot;pin-value=1234 /gnu/store/.../lib/pkcs11/libsofthsm2.so\"}. For the pem backend, the string represents a path in the file system." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27747 +#: guix-git/doc/guix.texi:28084 #, no-wrap msgid "{Data Type} knot-policy-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27751 +#: guix-git/doc/guix.texi:28088 msgid "Data type representing a dnssec policy. Knot DNS is able to automatically sign your zones. It can either generate and manage your keys automatically or use keys that you generate." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27758 +#: guix-git/doc/guix.texi:28095 msgid "Dnssec is usually implemented using two keys: a Key Signing Key (KSK) that is used to sign the second, and a Zone Signing Key (ZSK) that is used to sign the zone. In order to be trusted, the KSK needs to be present in the parent zone (usually a top-level domain). If your registrar supports dnssec, you will have to send them your KSK's hash so they can add a DS record in their zone. This is not automated and need to be done each time you change your KSK." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27764 +#: guix-git/doc/guix.texi:28101 msgid "The policy also defines the lifetime of keys. Usually, ZSK can be changed easily and use weaker cryptographic functions (they use lower parameters) in order to sign records quickly, so they are changed often. The KSK however requires manual interaction with the registrar, so they are changed less often and use stronger parameters because they sign only one record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27766 +#: guix-git/doc/guix.texi:28103 msgid "This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27770 +#: guix-git/doc/guix.texi:28107 msgid "The id of the policy. It must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27771 +#: guix-git/doc/guix.texi:28108 #, no-wrap msgid "@code{keystore} (default: @code{\"default\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27776 +#: guix-git/doc/guix.texi:28113 msgid "A reference to a keystore, that is a string containing the identifier of a keystore defined in a @code{knot-keystore-configuration} field. The @code{\"default\"} identifier means the default keystore (a kasp database that was setup by this service)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27777 +#: guix-git/doc/guix.texi:28114 #, no-wrap msgid "@code{manual?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27779 +#: guix-git/doc/guix.texi:28116 msgid "Whether the key management is manual or automatic." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27780 +#: guix-git/doc/guix.texi:28117 #, no-wrap msgid "@code{single-type-signing?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27782 +#: guix-git/doc/guix.texi:28119 msgid "When @code{#t}, use the Single-Type Signing Scheme." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27783 +#: guix-git/doc/guix.texi:28120 #, no-wrap msgid "@code{algorithm} (default: @code{\"ecdsap256sha256\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27785 +#: guix-git/doc/guix.texi:28122 msgid "An algorithm of signing keys and issued signatures." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27786 +#: guix-git/doc/guix.texi:28123 #, no-wrap msgid "@code{ksk-size} (default: @code{256})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27789 +#: guix-git/doc/guix.texi:28126 msgid "The length of the KSK@. Note that this value is correct for the default algorithm, but would be unsecure for other algorithms." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27790 +#: guix-git/doc/guix.texi:28127 #, no-wrap msgid "@code{zsk-size} (default: @code{256})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27793 +#: guix-git/doc/guix.texi:28130 msgid "The length of the ZSK@. Note that this value is correct for the default algorithm, but would be unsecure for other algorithms." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27794 +#: guix-git/doc/guix.texi:28131 #, no-wrap msgid "@code{dnskey-ttl} (default: @code{'default})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27797 +#: guix-git/doc/guix.texi:28134 msgid "The TTL value for DNSKEY records added into zone apex. The special @code{'default} value means same as the zone SOA TTL." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27798 +#: guix-git/doc/guix.texi:28135 #, no-wrap msgid "@code{zsk-lifetime} (default: @code{(* 30 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27800 +#: guix-git/doc/guix.texi:28137 msgid "The period between ZSK publication and the next rollover initiation." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27801 +#: guix-git/doc/guix.texi:28138 #, no-wrap msgid "@code{propagation-delay} (default: @code{(* 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27804 +#: guix-git/doc/guix.texi:28141 msgid "An extra delay added for each key rollover step. This value should be high enough to cover propagation of data from the master server to all slaves." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27805 +#: guix-git/doc/guix.texi:28142 #, no-wrap msgid "@code{rrsig-lifetime} (default: @code{(* 14 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27807 +#: guix-git/doc/guix.texi:28144 msgid "A validity period of newly issued signatures." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27808 +#: guix-git/doc/guix.texi:28145 #, no-wrap msgid "@code{rrsig-refresh} (default: @code{(* 7 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27810 +#: guix-git/doc/guix.texi:28147 msgid "A period how long before a signature expiration the signature will be refreshed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27811 +#: guix-git/doc/guix.texi:28148 #, no-wrap msgid "@code{nsec3?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27813 +#: guix-git/doc/guix.texi:28150 msgid "When @code{#t}, NSEC3 will be used instead of NSEC." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27814 +#: guix-git/doc/guix.texi:28151 #, no-wrap msgid "@code{nsec3-iterations} (default: @code{5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27816 +#: guix-git/doc/guix.texi:28153 msgid "The number of additional times the hashing is performed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27817 +#: guix-git/doc/guix.texi:28154 #, no-wrap msgid "@code{nsec3-salt-length} (default: @code{8})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27820 +#: guix-git/doc/guix.texi:28157 msgid "The length of a salt field in octets, which is appended to the original owner name before hashing." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27821 +#: guix-git/doc/guix.texi:28158 #, no-wrap msgid "@code{nsec3-salt-lifetime} (default: @code{(* 30 24 3600)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27823 +#: guix-git/doc/guix.texi:28160 msgid "The validity period of newly issued salt field." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27827 +#: guix-git/doc/guix.texi:28164 #, no-wrap msgid "{Data Type} knot-zone-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27830 +#: guix-git/doc/guix.texi:28167 msgid "Data type representing a zone served by Knot. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27832 +#: guix-git/doc/guix.texi:28169 #, no-wrap msgid "@code{domain} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27834 +#: guix-git/doc/guix.texi:28171 msgid "The domain served by this configuration. It must not be empty." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27835 +#: guix-git/doc/guix.texi:28172 #, no-wrap msgid "@code{file} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27838 +#: guix-git/doc/guix.texi:28175 msgid "The file where this zone is saved. This parameter is ignored by master zones. Empty means default location that depends on the domain name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27839 +#: guix-git/doc/guix.texi:28176 #, no-wrap msgid "@code{zone} (default: @code{(zone-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27842 +#: guix-git/doc/guix.texi:28179 msgid "The content of the zone file. This parameter is ignored by slave zones. It must contain a zone-file record." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27843 +#: guix-git/doc/guix.texi:28180 #, no-wrap msgid "@code{master} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27846 +#: guix-git/doc/guix.texi:28183 msgid "A list of master remotes. When empty, this zone is a master. When set, this zone is a slave. This is a list of remotes identifiers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27847 +#: guix-git/doc/guix.texi:28184 #, no-wrap msgid "@code{ddns-master} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27850 +#: guix-git/doc/guix.texi:28187 msgid "The main master. When empty, it defaults to the first master in the list of masters." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27851 +#: guix-git/doc/guix.texi:28188 #, no-wrap msgid "@code{notify} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27853 +#: guix-git/doc/guix.texi:28190 msgid "A list of slave remote identifiers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27854 +#: guix-git/doc/guix.texi:28191 #, no-wrap msgid "@code{acl} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27856 +#: guix-git/doc/guix.texi:28193 msgid "A list of acl identifiers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27857 +#: guix-git/doc/guix.texi:28194 #, no-wrap msgid "@code{semantic-checks?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27859 +#: guix-git/doc/guix.texi:28196 msgid "When set, this adds more semantic checks to the zone." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27860 +#: guix-git/doc/guix.texi:28197 #, no-wrap msgid "@code{zonefile-sync} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27863 +#: guix-git/doc/guix.texi:28200 msgid "The delay between a modification in memory and on disk. 0 means immediate synchronization." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27864 +#: guix-git/doc/guix.texi:28201 #, no-wrap msgid "@code{zonefile-load} (default: @code{#f})" msgstr "@code{zonefile-load}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:27867 +#: guix-git/doc/guix.texi:28204 msgid "The way the zone file contents are applied during zone load. Possible values are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27869 +#: guix-git/doc/guix.texi:28206 #, no-wrap msgid "@code{#f} for using the default value from Knot," msgstr "" #. type: item -#: guix-git/doc/guix.texi:27870 +#: guix-git/doc/guix.texi:28207 #, no-wrap msgid "@code{'none} for not using the zone file at all," msgstr "" #. type: item -#: guix-git/doc/guix.texi:27871 +#: guix-git/doc/guix.texi:28208 #, no-wrap msgid "@code{'difference} for computing the difference between already available" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:27873 +#: guix-git/doc/guix.texi:28210 msgid "contents and zone contents and applying it to the current zone contents," msgstr "" #. type: item -#: guix-git/doc/guix.texi:27873 +#: guix-git/doc/guix.texi:28210 #, no-wrap msgid "@code{'difference-no-serial} for the same as @code{'difference}, but" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:27876 +#: guix-git/doc/guix.texi:28213 msgid "ignoring the SOA serial in the zone file, while the server takes care of it automatically." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27876 +#: guix-git/doc/guix.texi:28213 #, no-wrap msgid "@code{'whole} for loading zone contents from the zone file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27879 +#: guix-git/doc/guix.texi:28216 #, no-wrap msgid "@code{journal-content} (default: @code{#f})" msgstr "@code{journal-content}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:27884 +#: guix-git/doc/guix.texi:28221 msgid "The way the journal is used to store zone and its changes. Possible values are @code{'none} to not use it at all, @code{'changes} to store changes and @code{'all} to store contents. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27885 +#: guix-git/doc/guix.texi:28222 #, no-wrap msgid "@code{max-journal-usage} (default: @code{#f})" msgstr "@code{max-journal-usage}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:27888 +#: guix-git/doc/guix.texi:28225 msgid "The maximum size for the journal on disk. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27889 +#: guix-git/doc/guix.texi:28226 #, no-wrap msgid "@code{max-journal-depth} (default: @code{#f})" msgstr "@code{max-journal-depth}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:27892 +#: guix-git/doc/guix.texi:28229 msgid "The maximum size of the history. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27893 +#: guix-git/doc/guix.texi:28230 #, no-wrap msgid "@code{max-zone-size} (default: @code{#f})" msgstr "@code{max-zone-size}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:27897 +#: guix-git/doc/guix.texi:28234 msgid "The maximum size of the zone file. This limit is enforced for incoming transfer and updates. @code{#f} does not set this option, so the default value from Knot is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27898 +#: guix-git/doc/guix.texi:28235 #, no-wrap msgid "@code{dnssec-policy} (default: @code{#f})" msgstr "@code{dnssec-policy}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:27902 +#: guix-git/doc/guix.texi:28239 msgid "A reference to a @code{knot-policy-configuration} record, or the special name @code{\"default\"}. If the value is @code{#f}, there is no dnssec signing on this zone." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27903 +#: guix-git/doc/guix.texi:28240 #, no-wrap msgid "@code{serial-policy} (default: @code{'increment})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27905 +#: guix-git/doc/guix.texi:28242 msgid "A policy between @code{'increment} and @code{'unixtime}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27909 +#: guix-git/doc/guix.texi:28246 #, no-wrap msgid "{Data Type} knot-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27912 +#: guix-git/doc/guix.texi:28249 msgid "Data type representing the Knot configuration. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27914 +#: guix-git/doc/guix.texi:28251 #, no-wrap msgid "@code{knot} (default: @code{knot})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27916 +#: guix-git/doc/guix.texi:28253 msgid "The Knot package." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27917 +#: guix-git/doc/guix.texi:28254 #, no-wrap msgid "@code{run-directory} (default: @code{\"/var/run/knot\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27919 +#: guix-git/doc/guix.texi:28256 msgid "The run directory. This directory will be used for pid file and sockets." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27920 +#: guix-git/doc/guix.texi:28257 #, no-wrap msgid "@code{includes} (default: @code{'()})" msgstr "@code{includes}(默认值:@code{'()})" #. type: table -#: guix-git/doc/guix.texi:27923 +#: guix-git/doc/guix.texi:28260 msgid "A list of strings or file-like objects denoting other files that must be included at the top of the configuration file." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:27924 +#: guix-git/doc/guix.texi:28261 #, no-wrap msgid "secrets, Knot service" msgstr "秘密,Knot服务。" #. type: table -#: guix-git/doc/guix.texi:27930 +#: guix-git/doc/guix.texi:28267 msgid "This can be used to manage secrets out-of-band. For example, secret keys may be stored in an out-of-band file not managed by Guix, and thus not visible in @file{/gnu/store}---e.g., you could store secret key configuration in @file{/etc/knot/secrets.conf} and add this file to the @code{includes} list." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27935 +#: guix-git/doc/guix.texi:28272 msgid "One can generate a secret tsig key (for nsupdate and zone transfers with the keymgr command from the knot package. Note that the package is not automatically installed by the service. The following example shows how to generate a new tsig key:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:27939 +#: guix-git/doc/guix.texi:28276 #, no-wrap msgid "" "keymgr -t mysecret > /etc/knot/secrets.conf\n" @@ -50401,106 +51039,106 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27945 +#: guix-git/doc/guix.texi:28282 msgid "Also note that the generated key will be named @var{mysecret}, so it is the name that needs to be used in the @var{key} field of the @code{knot-acl-configuration} record and in other places that need to refer to that key." msgstr "" #. type: table -#: guix-git/doc/guix.texi:27947 +#: guix-git/doc/guix.texi:28284 msgid "It can also be used to add configuration not supported by this interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27948 +#: guix-git/doc/guix.texi:28285 #, no-wrap msgid "@code{listen-v4} (default: @code{\"0.0.0.0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27950 guix-git/doc/guix.texi:27953 +#: guix-git/doc/guix.texi:28287 guix-git/doc/guix.texi:28290 msgid "An ip address on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27951 +#: guix-git/doc/guix.texi:28288 #, no-wrap msgid "@code{listen-v6} (default: @code{\"::\"})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:27954 +#: guix-git/doc/guix.texi:28291 #, no-wrap msgid "@code{listen-port} (default: @code{53})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27956 +#: guix-git/doc/guix.texi:28293 msgid "A port on which to listen." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27957 +#: guix-git/doc/guix.texi:28294 #, no-wrap msgid "@code{keys} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27959 +#: guix-git/doc/guix.texi:28296 msgid "The list of knot-key-configuration used by this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27960 +#: guix-git/doc/guix.texi:28297 #, no-wrap msgid "@code{acls} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27962 +#: guix-git/doc/guix.texi:28299 msgid "The list of knot-acl-configuration used by this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27963 +#: guix-git/doc/guix.texi:28300 #, no-wrap msgid "@code{remotes} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27965 +#: guix-git/doc/guix.texi:28302 msgid "The list of knot-remote-configuration used by this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27966 +#: guix-git/doc/guix.texi:28303 #, no-wrap msgid "@code{zones} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:27968 +#: guix-git/doc/guix.texi:28305 msgid "The list of knot-zone-configuration used by this configuration." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:27972 +#: guix-git/doc/guix.texi:28309 #, fuzzy, no-wrap msgid "Knot Resolver Service" msgstr "Kerberos服务" #. type: deffn -#: guix-git/doc/guix.texi:27974 +#: guix-git/doc/guix.texi:28311 #, no-wrap msgid "{Scheme Variable} knot-resolver-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27977 +#: guix-git/doc/guix.texi:28314 msgid "This is the type of the knot resolver service, whose value should be an @code{knot-resolver-configuration} object as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:27987 +#: guix-git/doc/guix.texi:28324 #, no-wrap msgid "" "(service knot-resolver-service-type\n" @@ -50514,74 +51152,74 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:27990 +#: guix-git/doc/guix.texi:28327 msgid "For more information, refer its @url{https://knot-resolver.readthedocs.org/en/stable/daemon.html#configuration, manual}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27992 +#: guix-git/doc/guix.texi:28329 #, no-wrap msgid "{Data Type} knot-resolver-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:27994 +#: guix-git/doc/guix.texi:28331 #, fuzzy msgid "Data type representing the configuration of knot-resolver." msgstr "管理操作系统配置。" #. type: item -#: guix-git/doc/guix.texi:27996 +#: guix-git/doc/guix.texi:28333 #, fuzzy, no-wrap msgid "@code{package} (default: @var{knot-resolver})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: table -#: guix-git/doc/guix.texi:27998 +#: guix-git/doc/guix.texi:28335 msgid "Package object of the knot DNS resolver." msgstr "" #. type: item -#: guix-git/doc/guix.texi:27999 +#: guix-git/doc/guix.texi:28336 #, fuzzy, no-wrap msgid "@code{kresd-config-file} (default: %kresd.conf)" msgstr "@code{compression-level}(默认值:@code{3})" #. type: table -#: guix-git/doc/guix.texi:28002 +#: guix-git/doc/guix.texi:28339 msgid "File-like object of the kresd configuration file to use, by default it will listen on @code{127.0.0.1} and @code{::1}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28003 +#: guix-git/doc/guix.texi:28340 #, fuzzy, no-wrap msgid "@code{garbage-collection-interval} (default: 1000)" msgstr "@code{parallel-builds}(默认值:@code{1})" #. type: table -#: guix-git/doc/guix.texi:28005 +#: guix-git/doc/guix.texi:28342 msgid "Number of milliseconds for @code{kres-cache-gc} to periodically trim the cache." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28010 +#: guix-git/doc/guix.texi:28347 #, no-wrap msgid "Dnsmasq Service" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28012 +#: guix-git/doc/guix.texi:28349 #, no-wrap msgid "{Scheme Variable} dnsmasq-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28015 +#: guix-git/doc/guix.texi:28352 msgid "This is the type of the dnsmasq service, whose value should be an @code{dnsmasq-configuration} object as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28021 +#: guix-git/doc/guix.texi:28358 #, no-wrap msgid "" "(service dnsmasq-service-type\n" @@ -50591,122 +51229,122 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28024 +#: guix-git/doc/guix.texi:28361 #, no-wrap msgid "{Data Type} dnsmasq-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28026 +#: guix-git/doc/guix.texi:28363 msgid "Data type representing the configuration of dnsmasq." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28028 +#: guix-git/doc/guix.texi:28365 #, no-wrap msgid "@code{package} (default: @var{dnsmasq})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28030 +#: guix-git/doc/guix.texi:28367 msgid "Package object of the dnsmasq server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28031 +#: guix-git/doc/guix.texi:28368 #, no-wrap msgid "@code{no-hosts?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28033 +#: guix-git/doc/guix.texi:28370 msgid "When true, don't read the hostnames in /etc/hosts." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28034 +#: guix-git/doc/guix.texi:28371 #, no-wrap msgid "@code{port} (default: @code{53})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28037 +#: guix-git/doc/guix.texi:28374 msgid "The port to listen on. Setting this to zero completely disables DNS responses, leaving only DHCP and/or TFTP functions." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28038 +#: guix-git/doc/guix.texi:28375 #, no-wrap msgid "@code{local-service?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28041 +#: guix-git/doc/guix.texi:28378 msgid "Accept DNS queries only from hosts whose address is on a local subnet, ie a subnet for which an interface exists on the server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28042 +#: guix-git/doc/guix.texi:28379 #, no-wrap msgid "@code{listen-addresses} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28044 +#: guix-git/doc/guix.texi:28381 msgid "Listen on the given IP addresses." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28045 +#: guix-git/doc/guix.texi:28382 #, no-wrap msgid "@code{resolv-file} (default: @code{\"/etc/resolv.conf\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28047 +#: guix-git/doc/guix.texi:28384 msgid "The file to read the IP address of the upstream nameservers from." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28048 +#: guix-git/doc/guix.texi:28385 #, no-wrap msgid "@code{no-resolv?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28050 +#: guix-git/doc/guix.texi:28387 msgid "When true, don't read @var{resolv-file}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28051 +#: guix-git/doc/guix.texi:28388 #, no-wrap msgid "@code{servers} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28053 +#: guix-git/doc/guix.texi:28390 msgid "Specify IP address of upstream servers directly." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28054 +#: guix-git/doc/guix.texi:28391 #, fuzzy, no-wrap msgid "@code{addresses} (default: @code{'()})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:28058 +#: guix-git/doc/guix.texi:28395 msgid "For each entry, specify an IP address to return for any host in the given domains. Queries in the domains are never forwarded and always replied to with the specified IP address." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28060 +#: guix-git/doc/guix.texi:28397 msgid "This is useful for redirecting hosts locally, for example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28069 +#: guix-git/doc/guix.texi:28406 #, no-wrap msgid "" "(service dnsmasq-service-type\n" @@ -50719,1007 +51357,1007 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28072 +#: guix-git/doc/guix.texi:28409 msgid "Note that rules in @file{/etc/hosts} take precedence over this." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28073 +#: guix-git/doc/guix.texi:28410 #, no-wrap msgid "@code{cache-size} (default: @code{150})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28076 +#: guix-git/doc/guix.texi:28413 msgid "Set the size of dnsmasq's cache. Setting the cache size to zero disables caching." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28077 +#: guix-git/doc/guix.texi:28414 #, no-wrap msgid "@code{negative-cache?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28079 +#: guix-git/doc/guix.texi:28416 msgid "When false, disable negative caching." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28080 +#: guix-git/doc/guix.texi:28417 #, fuzzy, no-wrap msgid "@code{tftp-enable?} (default: @code{#f})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:28082 +#: guix-git/doc/guix.texi:28419 msgid "Whether to enable the built-in TFTP server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28083 +#: guix-git/doc/guix.texi:28420 #, fuzzy, no-wrap msgid "@code{tftp-no-fail?} (default: @code{#f})" msgstr "@code{zonefile-load}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:28085 +#: guix-git/doc/guix.texi:28422 msgid "If true, does not fail dnsmasq if the TFTP server could not start up." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28086 +#: guix-git/doc/guix.texi:28423 #, fuzzy, no-wrap msgid "@code{tftp-single-port?} (default: @code{#f})" msgstr "@code{zonefile-load}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:28088 +#: guix-git/doc/guix.texi:28425 msgid "Whether to use only one single port for TFTP." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28089 +#: guix-git/doc/guix.texi:28426 #, fuzzy, no-wrap msgid "@code{tftp-secure?} (default: @code{#f})" msgstr "@code{xfce}(默认值:@code{xfce})" #. type: table -#: guix-git/doc/guix.texi:28091 +#: guix-git/doc/guix.texi:28428 msgid "If true, only files owned by the user running the dnsmasq process are accessible." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28095 +#: guix-git/doc/guix.texi:28432 msgid "If dnsmasq is being run as root, different rules apply: @code{tftp-secure?} has no effect, but only files which have the world-readable bit set are accessible." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28096 +#: guix-git/doc/guix.texi:28433 #, fuzzy, no-wrap msgid "@code{tftp-max} (default: @code{#f})" msgstr "@code{zonefile-load}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:28098 +#: guix-git/doc/guix.texi:28435 msgid "If set, sets the maximal number of concurrent connections allowed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28099 +#: guix-git/doc/guix.texi:28436 #, fuzzy, no-wrap msgid "@code{tftp-mtu} (default: @code{#f})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:28101 +#: guix-git/doc/guix.texi:28438 msgid "If set, sets the MTU for TFTP packets to that value." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28102 +#: guix-git/doc/guix.texi:28439 #, fuzzy, no-wrap msgid "@code{tftp-no-blocksize?} (default: @code{#f})" msgstr "@code{max-zone-size}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:28104 +#: guix-git/doc/guix.texi:28441 msgid "If true, stops the TFTP server from negotiating the blocksize with a client." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28105 +#: guix-git/doc/guix.texi:28442 #, fuzzy, no-wrap msgid "@code{tftp-lowercase?} (default: @code{#f})" msgstr "@code{zonefile-load}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:28107 +#: guix-git/doc/guix.texi:28444 msgid "Whether to convert all filenames in TFTP requests to lowercase." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28108 +#: guix-git/doc/guix.texi:28445 #, fuzzy, no-wrap msgid "@code{tftp-port-range} (default: @code{#f})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:28111 +#: guix-git/doc/guix.texi:28448 msgid "If set, fixes the dynamical ports (one per client) to the given range (@code{\",\"})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28112 +#: guix-git/doc/guix.texi:28449 #, fuzzy, no-wrap msgid "@code{tftp-root} (default: @code{/var/empty,lo})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:28119 +#: guix-git/doc/guix.texi:28456 msgid "Look for files to transfer using TFTP relative to the given directory. When this is set, TFTP paths which include @samp{..} are rejected, to stop clients getting outside the specified root. Absolute paths (starting with @samp{/}) are allowed, but they must be within the TFTP-root. If the optional interface argument is given, the directory is only used for TFTP requests via that interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28120 +#: guix-git/doc/guix.texi:28457 #, fuzzy, no-wrap msgid "@code{tftp-unique-root} (default: @code{#f})" msgstr "@code{cleanup-hook}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:28125 +#: guix-git/doc/guix.texi:28462 msgid "If set, add the IP or hardware address of the TFTP client as a path component on the end of the TFTP-root. Only valid if a TFTP root is set and the directory exists. Defaults to adding IP address (in standard dotted-quad format)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:28134 +#: guix-git/doc/guix.texi:28471 msgid "For instance, if @option{--tftp-root} is @samp{/tftp} and client @samp{1.2.3.4} requests file @file{myfile} then the effective path will be @file{/tftp/1.2.3.4/myfile} if @file{/tftp/1.2.3.4} exists or @file{/tftp/myfile} otherwise. When @samp{=mac} is specified it will append the MAC address instead, using lowercase zero padded digits separated by dashes, e.g.: @samp{01-02-03-04-aa-bb}. Note that resolving MAC addresses is only possible if the client is in the local network or obtained a DHCP lease from dnsmasq." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28138 +#: guix-git/doc/guix.texi:28475 #, no-wrap msgid "ddclient Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28140 +#: guix-git/doc/guix.texi:28477 #, no-wrap msgid "ddclient" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28144 +#: guix-git/doc/guix.texi:28481 msgid "The ddclient service described below runs the ddclient daemon, which takes care of automatically updating DNS entries for service providers such as @uref{https://dyn.com/dns/, Dyn}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28147 +#: guix-git/doc/guix.texi:28484 msgid "The following example show instantiates the service with its default configuration:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28150 +#: guix-git/doc/guix.texi:28487 #, no-wrap msgid "(service ddclient-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28159 +#: guix-git/doc/guix.texi:28496 msgid "Note that ddclient needs to access credentials that are stored in a @dfn{secret file}, by default @file{/etc/ddclient/secrets} (see @code{secret-file} below). You are expected to create this file manually, in an ``out-of-band'' fashion (you @emph{could} make this file part of the service configuration, for instance by using @code{plain-file}, but it will be world-readable @i{via} @file{/gnu/store}). See the examples in the @file{share/ddclient} directory of the @code{ddclient} package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28163 +#: guix-git/doc/guix.texi:28500 msgid "Available @code{ddclient-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28164 +#: guix-git/doc/guix.texi:28501 #, no-wrap msgid "{@code{ddclient-configuration} parameter} package ddclient" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28166 +#: guix-git/doc/guix.texi:28503 msgid "The ddclient package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28169 +#: guix-git/doc/guix.texi:28506 #, no-wrap msgid "{@code{ddclient-configuration} parameter} integer daemon" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28171 +#: guix-git/doc/guix.texi:28508 msgid "The period after which ddclient will retry to check IP and domain name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28173 +#: guix-git/doc/guix.texi:28510 msgid "Defaults to @samp{300}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28176 +#: guix-git/doc/guix.texi:28513 #, no-wrap msgid "{@code{ddclient-configuration} parameter} boolean syslog" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28178 +#: guix-git/doc/guix.texi:28515 msgid "Use syslog for the output." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28183 +#: guix-git/doc/guix.texi:28520 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string mail" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28185 +#: guix-git/doc/guix.texi:28522 msgid "Mail to user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28187 guix-git/doc/guix.texi:28194 -#: guix-git/doc/guix.texi:29996 +#: guix-git/doc/guix.texi:28524 guix-git/doc/guix.texi:28531 +#: guix-git/doc/guix.texi:30361 msgid "Defaults to @samp{\"root\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28190 +#: guix-git/doc/guix.texi:28527 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string mail-failure" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28192 +#: guix-git/doc/guix.texi:28529 msgid "Mail failed update to user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28197 +#: guix-git/doc/guix.texi:28534 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string pid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28199 +#: guix-git/doc/guix.texi:28536 msgid "The ddclient PID file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28201 +#: guix-git/doc/guix.texi:28538 msgid "Defaults to @samp{\"/var/run/ddclient/ddclient.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28204 +#: guix-git/doc/guix.texi:28541 #, no-wrap msgid "{@code{ddclient-configuration} parameter} boolean ssl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28206 +#: guix-git/doc/guix.texi:28543 msgid "Enable SSL support." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28211 +#: guix-git/doc/guix.texi:28548 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string user" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28214 +#: guix-git/doc/guix.texi:28551 msgid "Specifies the user name or ID that is used when running ddclient program." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28216 guix-git/doc/guix.texi:28223 +#: guix-git/doc/guix.texi:28553 guix-git/doc/guix.texi:28560 msgid "Defaults to @samp{\"ddclient\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28219 +#: guix-git/doc/guix.texi:28556 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28221 +#: guix-git/doc/guix.texi:28558 msgid "Group of the user who will run the ddclient program." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28226 +#: guix-git/doc/guix.texi:28563 #, no-wrap msgid "{@code{ddclient-configuration} parameter} string secret-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28230 +#: guix-git/doc/guix.texi:28567 msgid "Secret file which will be appended to @file{ddclient.conf} file. This file contains credentials for use by ddclient. You are expected to create it manually." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28232 +#: guix-git/doc/guix.texi:28569 msgid "Defaults to @samp{\"/etc/ddclient/secrets.conf\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28235 +#: guix-git/doc/guix.texi:28572 #, no-wrap msgid "{@code{ddclient-configuration} parameter} list extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28237 +#: guix-git/doc/guix.texi:28574 msgid "Extra options will be appended to @file{ddclient.conf} file." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28248 +#: guix-git/doc/guix.texi:28585 #, no-wrap msgid "VPN (virtual private network)" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28249 +#: guix-git/doc/guix.texi:28586 #, no-wrap msgid "virtual private network (VPN)" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28253 +#: guix-git/doc/guix.texi:28590 msgid "The @code{(gnu services vpn)} module provides services related to @dfn{virtual private networks} (VPNs)." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28254 +#: guix-git/doc/guix.texi:28591 #, no-wrap msgid "Bitmask" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28256 +#: guix-git/doc/guix.texi:28593 #, no-wrap msgid "{Scheme Variable} bitmask-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28261 +#: guix-git/doc/guix.texi:28598 msgid "A service type for the @uref{https://bitmask.net, Bitmask} VPN client. It makes the client available in the system and loads its polkit policy. Please note that the client expects an active polkit-agent, which is either run by your desktop-environment or should be run manually." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28263 +#: guix-git/doc/guix.texi:28600 #, no-wrap msgid "OpenVPN" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28267 +#: guix-git/doc/guix.texi:28604 msgid "It provides a @emph{client} service for your machine to connect to a VPN, and a @emph{server} service for your machine to host a VPN@." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28268 +#: guix-git/doc/guix.texi:28605 #, no-wrap msgid "{Scheme Procedure} openvpn-client-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28270 +#: guix-git/doc/guix.texi:28607 msgid "[#:config (openvpn-client-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28272 +#: guix-git/doc/guix.texi:28609 msgid "Return a service that runs @command{openvpn}, a VPN daemon, as a client." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28274 +#: guix-git/doc/guix.texi:28611 #, no-wrap msgid "{Scheme Procedure} openvpn-server-service @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28276 +#: guix-git/doc/guix.texi:28613 msgid "[#:config (openvpn-server-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28278 +#: guix-git/doc/guix.texi:28615 msgid "Return a service that runs @command{openvpn}, a VPN daemon, as a server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:28280 +#: guix-git/doc/guix.texi:28617 msgid "Both can be run simultaneously." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28285 +#: guix-git/doc/guix.texi:28622 msgid "Available @code{openvpn-client-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28286 +#: guix-git/doc/guix.texi:28623 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} package openvpn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28288 guix-git/doc/guix.texi:28443 +#: guix-git/doc/guix.texi:28625 guix-git/doc/guix.texi:28780 msgid "The OpenVPN package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28291 +#: guix-git/doc/guix.texi:28628 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28293 guix-git/doc/guix.texi:28448 +#: guix-git/doc/guix.texi:28630 guix-git/doc/guix.texi:28785 msgid "The OpenVPN pid file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28295 guix-git/doc/guix.texi:28450 +#: guix-git/doc/guix.texi:28632 guix-git/doc/guix.texi:28787 msgid "Defaults to @samp{\"/var/run/openvpn/openvpn.pid\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28298 +#: guix-git/doc/guix.texi:28635 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} proto proto" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28301 guix-git/doc/guix.texi:28456 +#: guix-git/doc/guix.texi:28638 guix-git/doc/guix.texi:28793 msgid "The protocol (UDP or TCP) used to open a channel between clients and servers." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28303 guix-git/doc/guix.texi:28458 +#: guix-git/doc/guix.texi:28640 guix-git/doc/guix.texi:28795 msgid "Defaults to @samp{udp}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28306 +#: guix-git/doc/guix.texi:28643 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} dev dev" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28308 guix-git/doc/guix.texi:28463 +#: guix-git/doc/guix.texi:28645 guix-git/doc/guix.texi:28800 msgid "The device type used to represent the VPN connection." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28310 guix-git/doc/guix.texi:28465 +#: guix-git/doc/guix.texi:28647 guix-git/doc/guix.texi:28802 msgid "Defaults to @samp{tun}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28316 guix-git/doc/guix.texi:28471 +#: guix-git/doc/guix.texi:28653 guix-git/doc/guix.texi:28808 msgid "If you do not have some of these files (eg.@: you use a username and password), you can disable any of the following three fields by setting it to @code{'disabled}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28317 +#: guix-git/doc/guix.texi:28654 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string ca" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28319 guix-git/doc/guix.texi:28474 +#: guix-git/doc/guix.texi:28656 guix-git/doc/guix.texi:28811 msgid "The certificate authority to check connections against." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28321 guix-git/doc/guix.texi:28476 +#: guix-git/doc/guix.texi:28658 guix-git/doc/guix.texi:28813 msgid "Defaults to @samp{\"/etc/openvpn/ca.crt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28324 +#: guix-git/doc/guix.texi:28661 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28327 guix-git/doc/guix.texi:28482 +#: guix-git/doc/guix.texi:28664 guix-git/doc/guix.texi:28819 msgid "The certificate of the machine the daemon is running on. It should be signed by the authority given in @code{ca}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28329 guix-git/doc/guix.texi:28484 +#: guix-git/doc/guix.texi:28666 guix-git/doc/guix.texi:28821 msgid "Defaults to @samp{\"/etc/openvpn/client.crt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28332 +#: guix-git/doc/guix.texi:28669 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string key" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28335 guix-git/doc/guix.texi:28490 +#: guix-git/doc/guix.texi:28672 guix-git/doc/guix.texi:28827 msgid "The key of the machine the daemon is running on. It must be the key whose certificate is @code{cert}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28337 guix-git/doc/guix.texi:28492 +#: guix-git/doc/guix.texi:28674 guix-git/doc/guix.texi:28829 msgid "Defaults to @samp{\"/etc/openvpn/client.key\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28340 +#: guix-git/doc/guix.texi:28677 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean comp-lzo?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28342 guix-git/doc/guix.texi:28497 +#: guix-git/doc/guix.texi:28679 guix-git/doc/guix.texi:28834 msgid "Whether to use the lzo compression algorithm." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28347 +#: guix-git/doc/guix.texi:28684 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean persist-key?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28349 guix-git/doc/guix.texi:28504 +#: guix-git/doc/guix.texi:28686 guix-git/doc/guix.texi:28841 msgid "Don't re-read key files across SIGUSR1 or --ping-restart." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28354 +#: guix-git/doc/guix.texi:28691 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean persist-tun?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28357 guix-git/doc/guix.texi:28512 +#: guix-git/doc/guix.texi:28694 guix-git/doc/guix.texi:28849 msgid "Don't close and reopen TUN/TAP device or run up/down scripts across SIGUSR1 or --ping-restart restarts." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28362 +#: guix-git/doc/guix.texi:28699 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} boolean fast-io?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28365 guix-git/doc/guix.texi:28520 +#: guix-git/doc/guix.texi:28702 guix-git/doc/guix.texi:28857 msgid "(Experimental) Optimize TUN/TAP/UDP I/O writes by avoiding a call to poll/epoll/select prior to the write operation." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28369 +#: guix-git/doc/guix.texi:28706 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} number verbosity" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28371 guix-git/doc/guix.texi:28526 +#: guix-git/doc/guix.texi:28708 guix-git/doc/guix.texi:28863 msgid "Verbosity level." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28373 guix-git/doc/guix.texi:28528 -#: guix-git/doc/guix.texi:30264 guix-git/doc/guix.texi:30488 +#: guix-git/doc/guix.texi:28710 guix-git/doc/guix.texi:28865 +#: guix-git/doc/guix.texi:30629 guix-git/doc/guix.texi:30853 msgid "Defaults to @samp{3}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28376 +#: guix-git/doc/guix.texi:28713 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} tls-auth-client tls-auth" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28379 guix-git/doc/guix.texi:28534 +#: guix-git/doc/guix.texi:28716 guix-git/doc/guix.texi:28871 msgid "Add an additional layer of HMAC authentication on top of the TLS control channel to protect against DoS attacks." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28384 +#: guix-git/doc/guix.texi:28721 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} maybe-string auth-user-pass" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28388 +#: guix-git/doc/guix.texi:28725 msgid "Authenticate with server using username/password. The option is a file containing username/password on 2 lines. Do not use a file-like object as it would be added to the store and readable by any user." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28390 +#: guix-git/doc/guix.texi:28727 msgid "Defaults to @samp{'disabled}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28392 +#: guix-git/doc/guix.texi:28729 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} key-usage verify-key-usage?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28394 +#: guix-git/doc/guix.texi:28731 msgid "Whether to check the server certificate has server usage extension." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28399 +#: guix-git/doc/guix.texi:28736 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} bind bind?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28401 +#: guix-git/doc/guix.texi:28738 msgid "Bind to a specific local port number." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28406 +#: guix-git/doc/guix.texi:28743 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} resolv-retry resolv-retry?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28408 +#: guix-git/doc/guix.texi:28745 msgid "Retry resolving server address." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28413 +#: guix-git/doc/guix.texi:28750 #, no-wrap msgid "{@code{openvpn-client-configuration} parameter} openvpn-remote-list remote" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28415 +#: guix-git/doc/guix.texi:28752 msgid "A list of remote servers to connect to." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28419 +#: guix-git/doc/guix.texi:28756 msgid "Available @code{openvpn-remote-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28420 +#: guix-git/doc/guix.texi:28757 #, no-wrap msgid "{@code{openvpn-remote-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28422 +#: guix-git/doc/guix.texi:28759 msgid "Server name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28424 +#: guix-git/doc/guix.texi:28761 msgid "Defaults to @samp{\"my-server\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28427 +#: guix-git/doc/guix.texi:28764 #, no-wrap msgid "{@code{openvpn-remote-configuration} parameter} number port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28429 +#: guix-git/doc/guix.texi:28766 msgid "Port number the server listens to." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28431 guix-git/doc/guix.texi:28543 +#: guix-git/doc/guix.texi:28768 guix-git/doc/guix.texi:28880 msgid "Defaults to @samp{1194}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28440 +#: guix-git/doc/guix.texi:28777 msgid "Available @code{openvpn-server-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28441 +#: guix-git/doc/guix.texi:28778 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} package openvpn" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28446 +#: guix-git/doc/guix.texi:28783 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string pid-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28453 +#: guix-git/doc/guix.texi:28790 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} proto proto" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28461 +#: guix-git/doc/guix.texi:28798 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} dev dev" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28472 +#: guix-git/doc/guix.texi:28809 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string ca" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28479 +#: guix-git/doc/guix.texi:28816 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28487 +#: guix-git/doc/guix.texi:28824 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} maybe-string key" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28495 +#: guix-git/doc/guix.texi:28832 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean comp-lzo?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28502 +#: guix-git/doc/guix.texi:28839 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean persist-key?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28509 +#: guix-git/doc/guix.texi:28846 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean persist-tun?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28517 +#: guix-git/doc/guix.texi:28854 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean fast-io?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28524 +#: guix-git/doc/guix.texi:28861 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number verbosity" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28531 +#: guix-git/doc/guix.texi:28868 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} tls-auth-server tls-auth" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28539 +#: guix-git/doc/guix.texi:28876 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28541 +#: guix-git/doc/guix.texi:28878 msgid "Specifies the port number on which the server listens." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28546 +#: guix-git/doc/guix.texi:28883 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} ip-mask server" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28548 +#: guix-git/doc/guix.texi:28885 msgid "An ip and mask specifying the subnet inside the virtual network." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28550 +#: guix-git/doc/guix.texi:28887 msgid "Defaults to @samp{\"10.8.0.0 255.255.255.0\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28553 +#: guix-git/doc/guix.texi:28890 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} cidr6 server-ipv6" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28555 +#: guix-git/doc/guix.texi:28892 msgid "A CIDR notation specifying the IPv6 subnet inside the virtual network." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28560 +#: guix-git/doc/guix.texi:28897 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string dh" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28562 +#: guix-git/doc/guix.texi:28899 msgid "The Diffie-Hellman parameters file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28564 +#: guix-git/doc/guix.texi:28901 msgid "Defaults to @samp{\"/etc/openvpn/dh2048.pem\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28567 +#: guix-git/doc/guix.texi:28904 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string ifconfig-pool-persist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28569 +#: guix-git/doc/guix.texi:28906 msgid "The file that records client IPs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28571 +#: guix-git/doc/guix.texi:28908 msgid "Defaults to @samp{\"/etc/openvpn/ipp.txt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28574 +#: guix-git/doc/guix.texi:28911 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} gateway redirect-gateway?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28576 +#: guix-git/doc/guix.texi:28913 msgid "When true, the server will act as a gateway for its clients." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28581 +#: guix-git/doc/guix.texi:28918 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} boolean client-to-client?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28583 +#: guix-git/doc/guix.texi:28920 msgid "When true, clients are allowed to talk to each other inside the VPN." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28588 +#: guix-git/doc/guix.texi:28925 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} keepalive keepalive" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28594 +#: guix-git/doc/guix.texi:28931 msgid "Causes ping-like messages to be sent back and forth over the link so that each side knows when the other side has gone down. @code{keepalive} requires a pair. The first element is the period of the ping sending, and the second element is the timeout before considering the other side down." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28597 +#: guix-git/doc/guix.texi:28934 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} number max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28599 +#: guix-git/doc/guix.texi:28936 msgid "The maximum number of clients." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28604 +#: guix-git/doc/guix.texi:28941 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} string status" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28607 +#: guix-git/doc/guix.texi:28944 msgid "The status file. This file shows a small report on current connection. It is truncated and rewritten every minute." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28609 +#: guix-git/doc/guix.texi:28946 msgid "Defaults to @samp{\"/var/run/openvpn/status\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28612 +#: guix-git/doc/guix.texi:28949 #, no-wrap msgid "{@code{openvpn-server-configuration} parameter} openvpn-ccd-list client-config-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28614 +#: guix-git/doc/guix.texi:28951 msgid "The list of configuration for some clients." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28618 +#: guix-git/doc/guix.texi:28955 msgid "Available @code{openvpn-ccd-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28619 +#: guix-git/doc/guix.texi:28956 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28621 +#: guix-git/doc/guix.texi:28958 msgid "Client name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28623 +#: guix-git/doc/guix.texi:28960 msgid "Defaults to @samp{\"client\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28626 +#: guix-git/doc/guix.texi:28963 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} ip-mask iroute" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28628 +#: guix-git/doc/guix.texi:28965 msgid "Client own network" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28633 +#: guix-git/doc/guix.texi:28970 #, no-wrap msgid "{@code{openvpn-ccd-configuration} parameter} ip-mask ifconfig-push" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:28635 +#: guix-git/doc/guix.texi:28972 msgid "Client VPN IP." msgstr "" #. type: subheading -#: guix-git/doc/guix.texi:28644 +#: guix-git/doc/guix.texi:28981 #, no-wrap msgid "strongSwan" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28648 +#: guix-git/doc/guix.texi:28985 msgid "Currently, the strongSwan service only provides legacy-style configuration with @file{ipsec.conf} and @file{ipsec.secrets} files." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28649 +#: guix-git/doc/guix.texi:28986 #, no-wrap msgid "{Scheme Variable} strongswan-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28653 +#: guix-git/doc/guix.texi:28990 msgid "A service type for configuring strongSwan for IPsec @acronym{VPN, Virtual Private Networking}. Its value must be a @code{strongswan-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28659 +#: guix-git/doc/guix.texi:28996 #, no-wrap msgid "" "(service strongswan-service-type\n" @@ -51729,70 +52367,70 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28663 +#: guix-git/doc/guix.texi:29000 #, fuzzy, no-wrap msgid "{Data Type} strongswan-configuration" msgstr "系统配置" #. type: deftp -#: guix-git/doc/guix.texi:28665 +#: guix-git/doc/guix.texi:29002 #, fuzzy msgid "Data type representing the configuration of the StrongSwan service." msgstr "管理操作系统配置。" #. type: code{#1} -#: guix-git/doc/guix.texi:28667 +#: guix-git/doc/guix.texi:29004 #, no-wrap msgid "strongswan" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28669 +#: guix-git/doc/guix.texi:29006 #, fuzzy msgid "The strongSwan package to use for this service." msgstr "软件包数据类型。" #. type: item -#: guix-git/doc/guix.texi:28670 +#: guix-git/doc/guix.texi:29007 #, fuzzy, no-wrap msgid "@code{ipsec-conf} (default: @code{#f})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:28673 +#: guix-git/doc/guix.texi:29010 msgid "The file name of your @file{ipsec.conf}. If not @code{#f}, then this and @code{ipsec-secrets} must both be strings." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28674 +#: guix-git/doc/guix.texi:29011 #, fuzzy, no-wrap msgid "@code{ipsec-secrets} (default @code{#f})" msgstr "@code{speed}(默认值:@code{1.0})" #. type: table -#: guix-git/doc/guix.texi:28677 +#: guix-git/doc/guix.texi:29014 msgid "The file name of your @file{ipsec.secrets}. If not @code{#f}, then this and @code{ipsec-conf} must both be strings." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28681 +#: guix-git/doc/guix.texi:29018 #, no-wrap msgid "Wireguard" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28683 +#: guix-git/doc/guix.texi:29020 #, no-wrap msgid "{Scheme Variable} wireguard-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28686 +#: guix-git/doc/guix.texi:29023 msgid "A service type for a Wireguard tunnel interface. Its value must be a @code{wireguard-configuration} record as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28697 +#: guix-git/doc/guix.texi:29034 #, no-wrap msgid "" "(service wireguard-service-type\n" @@ -51807,256 +52445,256 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28701 +#: guix-git/doc/guix.texi:29038 #, fuzzy, no-wrap msgid "{Data Type} wireguard-configuration" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:28703 +#: guix-git/doc/guix.texi:29040 #, fuzzy msgid "Data type representing the configuration of the Wireguard service." msgstr "管理操作系统配置。" #. type: code{#1} -#: guix-git/doc/guix.texi:28705 +#: guix-git/doc/guix.texi:29042 #, no-wrap msgid "wireguard" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28707 +#: guix-git/doc/guix.texi:29044 #, fuzzy msgid "The wireguard package to use for this service." msgstr "软件包数据类型。" #. type: item -#: guix-git/doc/guix.texi:28708 +#: guix-git/doc/guix.texi:29045 #, fuzzy, no-wrap msgid "@code{interface} (default: @code{\"wg0\"})" msgstr "@code{display}(默认值:@code{\":0\"})" #. type: table -#: guix-git/doc/guix.texi:28710 +#: guix-git/doc/guix.texi:29047 msgid "The interface name for the VPN." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28711 +#: guix-git/doc/guix.texi:29048 #, fuzzy, no-wrap msgid "@code{addresses} (default: @code{'(\"10.0.0.1/32\")})" msgstr "@code{display}(默认值:@code{\":0\"})" #. type: table -#: guix-git/doc/guix.texi:28713 +#: guix-git/doc/guix.texi:29050 msgid "The IP addresses to be assigned to the above interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28714 +#: guix-git/doc/guix.texi:29051 #, fuzzy, no-wrap msgid "@code{port} (default: @code{51820})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:28716 +#: guix-git/doc/guix.texi:29053 msgid "The port on which to listen for incoming connections." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28717 +#: guix-git/doc/guix.texi:29054 #, fuzzy, no-wrap msgid "@code{dns} (default: @code{#f})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:28719 +#: guix-git/doc/guix.texi:29056 msgid "The DNS server(s) to announce to VPN clients via DHCP." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28720 +#: guix-git/doc/guix.texi:29057 #, fuzzy, no-wrap msgid "@code{private-key} (default: @code{\"/etc/wireguard/private.key\"})" msgstr "@code{zonefile-load}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:28723 +#: guix-git/doc/guix.texi:29060 msgid "The private key file for the interface. It is automatically generated if the file does not exist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28724 +#: guix-git/doc/guix.texi:29061 #, fuzzy, no-wrap msgid "@code{peers} (default: @code{'()})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:28727 +#: guix-git/doc/guix.texi:29064 msgid "The authorized peers on this interface. This is a list of @var{wireguard-peer} records." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28731 +#: guix-git/doc/guix.texi:29068 #, fuzzy, no-wrap msgid "{Data Type} wireguard-peer" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:28733 +#: guix-git/doc/guix.texi:29070 #, fuzzy msgid "Data type representing a Wireguard peer attached to a given interface." msgstr "管理操作系统配置。" #. type: table -#: guix-git/doc/guix.texi:28737 +#: guix-git/doc/guix.texi:29074 #, fuzzy msgid "The peer name." msgstr "仓库monad" #. type: item -#: guix-git/doc/guix.texi:28738 +#: guix-git/doc/guix.texi:29075 #, fuzzy, no-wrap msgid "@code{endpoint} (default: @code{#f})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:28741 +#: guix-git/doc/guix.texi:29078 msgid "The optional endpoint for the peer, such as @code{\"demo.wireguard.com:51820\"}." msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:28742 guix-git/doc/guix.texi:29137 -#: guix-git/doc/guix.texi:29174 guix-git/doc/guix.texi:34305 +#: guix-git/doc/guix.texi:29079 guix-git/doc/guix.texi:29474 +#: guix-git/doc/guix.texi:29511 guix-git/doc/guix.texi:34744 #, no-wrap msgid "public-key" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28744 +#: guix-git/doc/guix.texi:29081 msgid "The peer public-key represented as a base64 string." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:28745 +#: guix-git/doc/guix.texi:29082 #, no-wrap msgid "allowed-ips" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28748 +#: guix-git/doc/guix.texi:29085 msgid "A list of IP addresses from which incoming traffic for this peer is allowed and to which incoming traffic for this peer is directed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28749 +#: guix-git/doc/guix.texi:29086 #, fuzzy, no-wrap msgid "@code{keep-alive} (default: @code{#f})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:28754 +#: guix-git/doc/guix.texi:29091 msgid "An optional time interval in seconds. A packet will be sent to the server endpoint once per time interval. This helps receiving incoming connections from this peer when you are behind a NAT or a firewall." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28760 +#: guix-git/doc/guix.texi:29097 #, no-wrap msgid "NFS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28765 +#: guix-git/doc/guix.texi:29102 msgid "The @code{(gnu services nfs)} module provides the following services, which are most commonly used in relation to mounting or exporting directory trees as @dfn{network file systems} (NFS)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28769 +#: guix-git/doc/guix.texi:29106 msgid "While it is possible to use the individual components that together make up a Network File System service, we recommended to configure an NFS server with the @code{nfs-service-type}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28770 +#: guix-git/doc/guix.texi:29107 #, fuzzy, no-wrap msgid "NFS Service" msgstr "DNS服务" #. type: cindex -#: guix-git/doc/guix.texi:28771 +#: guix-git/doc/guix.texi:29108 #, fuzzy, no-wrap msgid "NFS, server" msgstr "Web服务。" #. type: Plain text -#: guix-git/doc/guix.texi:28776 +#: guix-git/doc/guix.texi:29113 msgid "The NFS service takes care of setting up all NFS component services, kernel configuration file systems, and installs configuration files in the locations that NFS expects." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28777 +#: guix-git/doc/guix.texi:29114 #, no-wrap msgid "{Scheme Variable} nfs-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28779 +#: guix-git/doc/guix.texi:29116 msgid "A service type for a complete NFS server." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28781 +#: guix-git/doc/guix.texi:29118 #, fuzzy, no-wrap msgid "{Data Type} nfs-configuration" msgstr "系统配置" #. type: deftp -#: guix-git/doc/guix.texi:28784 +#: guix-git/doc/guix.texi:29121 msgid "This data type represents the configuration of the NFS service and all of its subsystems." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28786 +#: guix-git/doc/guix.texi:29123 #, fuzzy msgid "It has the following parameters:" msgstr "GNU Guix依赖这些软件包:" #. type: item -#: guix-git/doc/guix.texi:28787 guix-git/doc/guix.texi:28912 -#: guix-git/doc/guix.texi:28937 +#: guix-git/doc/guix.texi:29124 guix-git/doc/guix.texi:29249 +#: guix-git/doc/guix.texi:29274 #, no-wrap msgid "@code{nfs-utils} (default: @code{nfs-utils})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28789 +#: guix-git/doc/guix.texi:29126 #, fuzzy msgid "The nfs-utils package to use." msgstr "软件包数据类型。" #. type: item -#: guix-git/doc/guix.texi:28790 +#: guix-git/doc/guix.texi:29127 #, fuzzy, no-wrap msgid "@code{nfs-versions} (default: @code{'(\"4.2\" \"4.1\" \"4.0\")})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:28793 +#: guix-git/doc/guix.texi:29130 msgid "If a list of string values is provided, the @command{rpc.nfsd} daemon will be limited to supporting the given versions of the NFS protocol." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28794 +#: guix-git/doc/guix.texi:29131 #, fuzzy, no-wrap msgid "@code{exports} (default: @code{'()})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:28799 +#: guix-git/doc/guix.texi:29136 msgid "This is a list of directories the NFS server should export. Each entry is a list consisting of two elements: a directory name and a string containing all options. This is an example in which the directory @file{/export} is served to all NFS clients as a read-only share:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28805 +#: guix-git/doc/guix.texi:29142 #, no-wrap msgid "" "(nfs-configuration\n" @@ -52066,385 +52704,385 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28807 +#: guix-git/doc/guix.texi:29144 #, fuzzy, no-wrap msgid "@code{rpcmountd-port} (default: @code{#f})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:28809 +#: guix-git/doc/guix.texi:29146 msgid "The network port that the @command{rpc.mountd} daemon should use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28810 +#: guix-git/doc/guix.texi:29147 #, fuzzy, no-wrap msgid "@code{rpcstatd-port} (default: @code{#f})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:28812 +#: guix-git/doc/guix.texi:29149 msgid "The network port that the @command{rpc.statd} daemon should use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28813 guix-git/doc/guix.texi:28861 +#: guix-git/doc/guix.texi:29150 guix-git/doc/guix.texi:29198 #, no-wrap msgid "@code{rpcbind} (default: @code{rpcbind})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28815 guix-git/doc/guix.texi:28863 +#: guix-git/doc/guix.texi:29152 guix-git/doc/guix.texi:29200 msgid "The rpcbind package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28816 +#: guix-git/doc/guix.texi:29153 #, fuzzy, no-wrap msgid "@code{idmap-domain} (default: @code{\"localdomain\"})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:28818 +#: guix-git/doc/guix.texi:29155 msgid "The local NFSv4 domain name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28819 +#: guix-git/doc/guix.texi:29156 #, fuzzy, no-wrap msgid "@code{nfsd-port} (default: @code{2049})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:28821 +#: guix-git/doc/guix.texi:29158 msgid "The network port that the @command{nfsd} daemon should use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28822 +#: guix-git/doc/guix.texi:29159 #, fuzzy, no-wrap msgid "@code{nfsd-threads} (default: @code{8})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:28824 +#: guix-git/doc/guix.texi:29161 msgid "The number of threads used by the @command{nfsd} daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28825 +#: guix-git/doc/guix.texi:29162 #, fuzzy, no-wrap msgid "@code{nfsd-tcp?} (default: @code{#t})" msgstr "@code{dnssec-policy}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:28827 +#: guix-git/doc/guix.texi:29164 msgid "Whether the @command{nfsd} daemon should listen on a TCP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28828 +#: guix-git/doc/guix.texi:29165 #, fuzzy, no-wrap msgid "@code{nfsd-udp?} (default: @code{#f})" msgstr "@code{zonefile-load}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:28830 +#: guix-git/doc/guix.texi:29167 msgid "Whether the @command{nfsd} daemon should listen on a UDP socket." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28831 guix-git/doc/guix.texi:28915 -#: guix-git/doc/guix.texi:28940 +#: guix-git/doc/guix.texi:29168 guix-git/doc/guix.texi:29252 +#: guix-git/doc/guix.texi:29277 #, no-wrap msgid "@code{pipefs-directory} (default: @code{\"/var/lib/nfs/rpc_pipefs\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28833 guix-git/doc/guix.texi:28917 -#: guix-git/doc/guix.texi:28942 +#: guix-git/doc/guix.texi:29170 guix-git/doc/guix.texi:29254 +#: guix-git/doc/guix.texi:29279 msgid "The directory where the pipefs file system is mounted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28834 +#: guix-git/doc/guix.texi:29171 #, fuzzy, no-wrap msgid "@code{debug} (default: @code{'()\"})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:28838 +#: guix-git/doc/guix.texi:29175 msgid "A list of subsystems for which debugging output should be enabled. This is a list of symbols. Any of these symbols are valid: @code{nfsd}, @code{nfs}, @code{rpc}, @code{idmap}, @code{statd}, or @code{mountd}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28843 +#: guix-git/doc/guix.texi:29180 msgid "If you don't need a complete NFS service or prefer to build it yourself you can use the individual component services that are documented below." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28844 +#: guix-git/doc/guix.texi:29181 #, no-wrap msgid "RPC Bind Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28845 +#: guix-git/doc/guix.texi:29182 #, no-wrap msgid "rpcbind" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28851 +#: guix-git/doc/guix.texi:29188 msgid "The RPC Bind service provides a facility to map program numbers into universal addresses. Many NFS related services use this facility. Hence it is automatically started when a dependent service starts." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28852 +#: guix-git/doc/guix.texi:29189 #, no-wrap msgid "{Scheme Variable} rpcbind-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28854 +#: guix-git/doc/guix.texi:29191 msgid "A service type for the RPC portmapper daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28857 +#: guix-git/doc/guix.texi:29194 #, no-wrap msgid "{Data Type} rpcbind-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28860 +#: guix-git/doc/guix.texi:29197 msgid "Data type representing the configuration of the RPC Bind Service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28864 +#: guix-git/doc/guix.texi:29201 #, no-wrap msgid "@code{warm-start?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28868 +#: guix-git/doc/guix.texi:29205 msgid "If this parameter is @code{#t}, then the daemon will read a state file on startup thus reloading state information saved by a previous instance." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28872 +#: guix-git/doc/guix.texi:29209 #, no-wrap msgid "Pipefs Pseudo File System" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28873 +#: guix-git/doc/guix.texi:29210 #, no-wrap msgid "pipefs" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28874 +#: guix-git/doc/guix.texi:29211 #, no-wrap msgid "rpc_pipefs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28878 +#: guix-git/doc/guix.texi:29215 msgid "The pipefs file system is used to transfer NFS related data between the kernel and user space programs." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28879 +#: guix-git/doc/guix.texi:29216 #, no-wrap msgid "{Scheme Variable} pipefs-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28881 +#: guix-git/doc/guix.texi:29218 msgid "A service type for the pipefs pseudo file system." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28883 +#: guix-git/doc/guix.texi:29220 #, no-wrap msgid "{Data Type} pipefs-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28886 +#: guix-git/doc/guix.texi:29223 msgid "Data type representing the configuration of the pipefs pseudo file system service. This type has the following parameters:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:28887 +#: guix-git/doc/guix.texi:29224 #, no-wrap msgid "@code{mount-point} (default: @code{\"/var/lib/nfs/rpc_pipefs\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28889 +#: guix-git/doc/guix.texi:29226 msgid "The directory to which the file system is to be attached." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28893 +#: guix-git/doc/guix.texi:29230 #, no-wrap msgid "GSS Daemon Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28894 +#: guix-git/doc/guix.texi:29231 #, no-wrap msgid "GSSD" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28895 +#: guix-git/doc/guix.texi:29232 #, no-wrap msgid "GSS" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28896 +#: guix-git/doc/guix.texi:29233 #, no-wrap msgid "global security system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28903 +#: guix-git/doc/guix.texi:29240 msgid "The @dfn{global security system} (GSS) daemon provides strong security for RPC based protocols. Before exchanging RPC requests an RPC client must establish a security context. Typically this is done using the Kerberos command @command{kinit} or automatically at login time using PAM services (@pxref{Kerberos Services})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28904 +#: guix-git/doc/guix.texi:29241 #, no-wrap msgid "{Scheme Variable} gss-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28906 +#: guix-git/doc/guix.texi:29243 msgid "A service type for the Global Security System (GSS) daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28908 +#: guix-git/doc/guix.texi:29245 #, no-wrap msgid "{Data Type} gss-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28911 +#: guix-git/doc/guix.texi:29248 msgid "Data type representing the configuration of the GSS daemon service. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28914 +#: guix-git/doc/guix.texi:29251 msgid "The package in which the @command{rpc.gssd} command is to be found." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:28922 +#: guix-git/doc/guix.texi:29259 #, no-wrap msgid "IDMAP Daemon Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28923 +#: guix-git/doc/guix.texi:29260 #, no-wrap msgid "idmapd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:28924 +#: guix-git/doc/guix.texi:29261 #, no-wrap msgid "name mapper" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28928 +#: guix-git/doc/guix.texi:29265 msgid "The idmap daemon service provides mapping between user IDs and user names. Typically it is required in order to access file systems mounted via NFSv4." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28929 +#: guix-git/doc/guix.texi:29266 #, no-wrap msgid "{Scheme Variable} idmap-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28931 +#: guix-git/doc/guix.texi:29268 msgid "A service type for the Identity Mapper (IDMAP) daemon." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28933 +#: guix-git/doc/guix.texi:29270 #, no-wrap msgid "{Data Type} idmap-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:28936 +#: guix-git/doc/guix.texi:29273 msgid "Data type representing the configuration of the IDMAP daemon service. This type has the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28939 +#: guix-git/doc/guix.texi:29276 msgid "The package in which the @command{rpc.idmapd} command is to be found." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28943 +#: guix-git/doc/guix.texi:29280 #, no-wrap msgid "@code{domain} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:28947 +#: guix-git/doc/guix.texi:29284 msgid "The local NFSv4 domain name. This must be a string or @code{#f}. If it is @code{#f} then the daemon will use the host's fully qualified domain name." msgstr "" #. type: item -#: guix-git/doc/guix.texi:28948 +#: guix-git/doc/guix.texi:29285 #, fuzzy, no-wrap msgid "@code{verbosity} (default: @code{0})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:28950 +#: guix-git/doc/guix.texi:29287 #, fuzzy msgid "The verbosity level of the daemon." msgstr "远程机器的主机名。" #. type: Plain text -#: guix-git/doc/guix.texi:28961 +#: guix-git/doc/guix.texi:29298 msgid "@uref{https://guix.gnu.org/cuirass/, Cuirass} is a continuous integration tool for Guix. It can be used both for development and for providing substitutes to others (@pxref{Substitutes})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28963 +#: guix-git/doc/guix.texi:29300 msgid "The @code{(gnu services cuirass)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28964 +#: guix-git/doc/guix.texi:29301 #, no-wrap msgid "{Scheme Procedure} cuirass-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:28967 +#: guix-git/doc/guix.texi:29304 msgid "The type of the Cuirass service. Its value must be a @code{cuirass-configuration} object, as described below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28972 +#: guix-git/doc/guix.texi:29309 msgid "To add build jobs, you have to set the @code{specifications} field of the configuration. For instance, the following example will build all the packages provided by the @code{my-channel} channel." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28983 +#: guix-git/doc/guix.texi:29320 #, no-wrap msgid "" "(define %cuirass-specs\n" @@ -52460,7 +53098,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28987 guix-git/doc/guix.texi:29001 +#: guix-git/doc/guix.texi:29324 guix-git/doc/guix.texi:29338 #, no-wrap msgid "" "(service cuirass-service-type\n" @@ -52469,12 +53107,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:28991 +#: guix-git/doc/guix.texi:29328 msgid "To build the @code{linux-libre} package defined by the default Guix channel, one can use the following configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:28997 +#: guix-git/doc/guix.texi:29334 #, no-wrap msgid "" "(define %cuirass-specs\n" @@ -52485,577 +53123,577 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29006 +#: guix-git/doc/guix.texi:29343 msgid "The other configuration possibilities, as well as the specification record itself are described in the Cuirass manual (@pxref{Specifications,,, cuirass, Cuirass})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29010 +#: guix-git/doc/guix.texi:29347 msgid "While information related to build jobs is located directly in the specifications, global settings for the @command{cuirass} process are accessible in other @code{cuirass-configuration} fields." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29011 +#: guix-git/doc/guix.texi:29348 #, no-wrap msgid "{Data Type} cuirass-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29013 +#: guix-git/doc/guix.texi:29350 msgid "Data type representing the configuration of Cuirass." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29015 guix-git/doc/guix.texi:29152 +#: guix-git/doc/guix.texi:29352 guix-git/doc/guix.texi:29489 #, no-wrap msgid "@code{cuirass} (default: @code{cuirass})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29017 guix-git/doc/guix.texi:29154 +#: guix-git/doc/guix.texi:29354 guix-git/doc/guix.texi:29491 msgid "The Cuirass package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29018 +#: guix-git/doc/guix.texi:29355 #, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass.log\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29020 guix-git/doc/guix.texi:29124 -#: guix-git/doc/guix.texi:29167 +#: guix-git/doc/guix.texi:29357 guix-git/doc/guix.texi:29461 +#: guix-git/doc/guix.texi:29504 msgid "Location of the log file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29021 +#: guix-git/doc/guix.texi:29358 #, fuzzy, no-wrap msgid "@code{web-log-file} (default: @code{\"/var/log/cuirass-web.log\"})" msgstr "@code{daemon-socket}(默认值:@code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:29023 +#: guix-git/doc/guix.texi:29360 msgid "Location of the log file used by the web interface." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29024 +#: guix-git/doc/guix.texi:29361 #, no-wrap msgid "@code{cache-directory} (default: @code{\"/var/cache/cuirass\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29026 +#: guix-git/doc/guix.texi:29363 msgid "Location of the repository cache." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29027 +#: guix-git/doc/guix.texi:29364 #, no-wrap msgid "@code{user} (default: @code{\"cuirass\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29029 +#: guix-git/doc/guix.texi:29366 msgid "Owner of the @code{cuirass} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29030 +#: guix-git/doc/guix.texi:29367 #, no-wrap msgid "@code{group} (default: @code{\"cuirass\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29032 +#: guix-git/doc/guix.texi:29369 msgid "Owner's group of the @code{cuirass} process." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29033 +#: guix-git/doc/guix.texi:29370 #, no-wrap msgid "@code{interval} (default: @code{60})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29036 +#: guix-git/doc/guix.texi:29373 msgid "Number of seconds between the poll of the repositories followed by the Cuirass jobs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29037 +#: guix-git/doc/guix.texi:29374 #, fuzzy, no-wrap msgid "@code{parameters} (default: @code{#f})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:29040 +#: guix-git/doc/guix.texi:29377 msgid "Read parameters from the given @var{parameters} file. The supported parameters are described here (@pxref{Parameters,,, cuirass, Cuirass})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29041 +#: guix-git/doc/guix.texi:29378 #, fuzzy, no-wrap msgid "@code{remote-server} (default: @code{#f})" msgstr "@code{speed}(默认值:@code{1.0})" #. type: table -#: guix-git/doc/guix.texi:29044 +#: guix-git/doc/guix.texi:29381 msgid "A @code{cuirass-remote-server-configuration} record to use the build remote mechanism or @code{#f} to use the default build mechanism." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29045 +#: guix-git/doc/guix.texi:29382 #, fuzzy, no-wrap msgid "@code{database} (default: @code{\"dbname=cuirass host=/var/run/postgresql\"})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:29050 +#: guix-git/doc/guix.texi:29387 msgid "Use @var{database} as the database containing the jobs and the past build results. Since Cuirass uses PostgreSQL as a database engine, @var{database} must be a string such as @code{\"dbname=cuirass host=localhost\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29051 +#: guix-git/doc/guix.texi:29388 #, no-wrap msgid "@code{port} (default: @code{8081})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29053 +#: guix-git/doc/guix.texi:29390 msgid "Port number used by the HTTP server." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29057 +#: guix-git/doc/guix.texi:29394 msgid "Listen on the network interface for @var{host}. The default is to accept connections from localhost." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29058 +#: guix-git/doc/guix.texi:29395 #, no-wrap msgid "@code{specifications} (default: @code{#~'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29062 +#: guix-git/doc/guix.texi:29399 msgid "A gexp (@pxref{G-Expressions}) that evaluates to a list of specifications records. The specification record is described in the Cuirass manual (@pxref{Specifications,,, cuirass, Cuirass})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29063 +#: guix-git/doc/guix.texi:29400 #, no-wrap msgid "@code{use-substitutes?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29066 +#: guix-git/doc/guix.texi:29403 msgid "This allows using substitutes to avoid building every dependencies of a job from source." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29067 guix-git/doc/guix.texi:36336 +#: guix-git/doc/guix.texi:29404 guix-git/doc/guix.texi:36826 #, no-wrap msgid "@code{one-shot?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29069 +#: guix-git/doc/guix.texi:29406 msgid "Only evaluate specifications and build derivations once." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29070 +#: guix-git/doc/guix.texi:29407 #, no-wrap msgid "@code{fallback?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29073 +#: guix-git/doc/guix.texi:29410 msgid "When substituting a pre-built binary fails, fall back to building packages locally." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29076 +#: guix-git/doc/guix.texi:29413 msgid "Extra options to pass when running the Cuirass processes." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29080 +#: guix-git/doc/guix.texi:29417 #, fuzzy, no-wrap msgid "remote build" msgstr "可复现的构建" #. type: subsubheading -#: guix-git/doc/guix.texi:29081 +#: guix-git/doc/guix.texi:29418 #, no-wrap msgid "Cuirass remote building" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29084 +#: guix-git/doc/guix.texi:29421 msgid "Cuirass supports two mechanisms to build derivations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29086 +#: guix-git/doc/guix.texi:29423 #, fuzzy, no-wrap msgid "Using the local Guix daemon." msgstr "运行“构建后台进程”" #. type: itemize -#: guix-git/doc/guix.texi:29090 +#: guix-git/doc/guix.texi:29427 msgid "This is the default build mechanism. Once the build jobs are evaluated, they are sent to the local Guix daemon. Cuirass then listens to the Guix daemon output to detect the various build events." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29091 +#: guix-git/doc/guix.texi:29428 #, fuzzy, no-wrap msgid "Using the remote build mechanism." msgstr "准备隔离的构建环境。" #. type: itemize -#: guix-git/doc/guix.texi:29095 +#: guix-git/doc/guix.texi:29432 msgid "The build jobs are not submitted to the local Guix daemon. Instead, a remote server dispatches build requests to the connect remote workers, according to the build priorities." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29102 +#: guix-git/doc/guix.texi:29439 msgid "To enable this build mode a @code{cuirass-remote-server-configuration} record must be passed as @code{remote-server} argument of the @code{cuirass-configuration} record. The @code{cuirass-remote-server-configuration} record is described below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29107 +#: guix-git/doc/guix.texi:29444 msgid "This build mode scales way better than the default build mode. This is the build mode that is used on the GNU Guix build farm at @url{https://ci.guix.gnu.org}. It should be preferred when using Cuirass to build large amount of packages." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29108 +#: guix-git/doc/guix.texi:29445 #, fuzzy, no-wrap msgid "{Data Type} cuirass-remote-server-configuration" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:29110 +#: guix-git/doc/guix.texi:29447 #, fuzzy msgid "Data type representing the configuration of the Cuirass remote-server." msgstr "管理操作系统配置。" #. type: item -#: guix-git/doc/guix.texi:29112 +#: guix-git/doc/guix.texi:29449 #, fuzzy, no-wrap msgid "@code{backend-port} (default: @code{5555})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:29115 +#: guix-git/doc/guix.texi:29452 msgid "The TCP port for communicating with @code{remote-worker} processes using ZMQ. It defaults to @code{5555}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29116 +#: guix-git/doc/guix.texi:29453 #, fuzzy, no-wrap msgid "@code{log-port} (default: @code{5556})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:29118 +#: guix-git/doc/guix.texi:29455 msgid "The TCP port of the log server. It defaults to @code{5556}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29119 +#: guix-git/doc/guix.texi:29456 #, fuzzy, no-wrap msgid "@code{publish-port} (default: @code{5557})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:29121 +#: guix-git/doc/guix.texi:29458 msgid "The TCP port of the publish server. It defaults to @code{5557}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29122 +#: guix-git/doc/guix.texi:29459 #, fuzzy, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass-remote-server.log\"})" msgstr "@code{daemon-socket}(默认值:@code{\"/var/guix/daemon-socket/socket\"})" #. type: item -#: guix-git/doc/guix.texi:29125 +#: guix-git/doc/guix.texi:29462 #, fuzzy, no-wrap msgid "@code{cache} (default: @code{\"/var/cache/cuirass/remote\"})" msgstr "@code{daemon-socket}(默认值:@code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:29127 +#: guix-git/doc/guix.texi:29464 msgid "Use @var{cache} directory to cache build log files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29128 +#: guix-git/doc/guix.texi:29465 #, fuzzy, no-wrap msgid "@code{trigger-url} (default: @code{#f})" msgstr "@code{dnssec-policy}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:29131 +#: guix-git/doc/guix.texi:29468 msgid "Once a substitute is successfully fetched, trigger substitute baking at @var{trigger-url}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29136 +#: guix-git/doc/guix.texi:29473 msgid "If set to false, do not start a publish server and ignore the @code{publish-port} argument. This can be useful if there is already a standalone publish server standing next to the remote server." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:29138 guix-git/doc/guix.texi:29175 +#: guix-git/doc/guix.texi:29475 guix-git/doc/guix.texi:29512 #, no-wrap msgid "private-key" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29147 +#: guix-git/doc/guix.texi:29484 msgid "At least one remote worker must also be started on any machine of the local network to actually perform the builds and report their status." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29148 +#: guix-git/doc/guix.texi:29485 #, fuzzy, no-wrap msgid "{Data Type} cuirass-remote-worker-configuration" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:29150 +#: guix-git/doc/guix.texi:29487 #, fuzzy msgid "Data type representing the configuration of the Cuirass remote-worker." msgstr "管理操作系统配置。" #. type: item -#: guix-git/doc/guix.texi:29155 +#: guix-git/doc/guix.texi:29492 #, fuzzy, no-wrap msgid "@code{workers} (default: @code{1})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:29157 +#: guix-git/doc/guix.texi:29494 msgid "Start @var{workers} parallel workers." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29161 +#: guix-git/doc/guix.texi:29498 msgid "Do not use Avahi discovery and connect to the given @code{server} IP address instead." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29162 +#: guix-git/doc/guix.texi:29499 #, fuzzy, no-wrap msgid "@code{systems} (default: @code{(list (%current-system))})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:29164 +#: guix-git/doc/guix.texi:29501 msgid "Only request builds for the given @var{systems}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29165 +#: guix-git/doc/guix.texi:29502 #, fuzzy, no-wrap msgid "@code{log-file} (default: @code{\"/var/log/cuirass-remote-worker.log\"})" msgstr "@code{daemon-socket}(默认值:@code{\"/var/guix/daemon-socket/socket\"})" #. type: item -#: guix-git/doc/guix.texi:29168 +#: guix-git/doc/guix.texi:29505 #, fuzzy, no-wrap msgid "@code{publish-port} (default: @code{5558})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:29170 +#: guix-git/doc/guix.texi:29507 msgid "The TCP port of the publish server. It defaults to @code{5558}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29182 +#: guix-git/doc/guix.texi:29519 #, no-wrap msgid "Laminar" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29187 +#: guix-git/doc/guix.texi:29524 msgid "@uref{https://laminar.ohwg.net/, Laminar} is a lightweight and modular Continuous Integration service. It doesn't have a configuration web UI instead uses version-controllable configuration files and scripts." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29190 +#: guix-git/doc/guix.texi:29527 msgid "Laminar encourages the use of existing tools such as bash and cron instead of reinventing them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29191 +#: guix-git/doc/guix.texi:29528 #, no-wrap msgid "{Scheme Procedure} laminar-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29194 +#: guix-git/doc/guix.texi:29531 msgid "The type of the Laminar service. Its value must be a @code{laminar-configuration} object, as described below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29198 +#: guix-git/doc/guix.texi:29535 msgid "All configuration values have defaults, a minimal configuration to get Laminar running is shown below. By default, the web interface is available on port 8080." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29201 +#: guix-git/doc/guix.texi:29538 #, no-wrap msgid "(service laminar-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29204 +#: guix-git/doc/guix.texi:29541 #, fuzzy, no-wrap msgid "{Data Type} laminar-configuration" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:29206 +#: guix-git/doc/guix.texi:29543 #, fuzzy msgid "Data type representing the configuration of Laminar." msgstr "管理操作系统配置。" #. type: item -#: guix-git/doc/guix.texi:29208 +#: guix-git/doc/guix.texi:29545 #, fuzzy, no-wrap msgid "@code{laminar} (default: @code{laminar})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:29210 +#: guix-git/doc/guix.texi:29547 #, fuzzy msgid "The Laminar package to use." msgstr "软件包数据类型。" #. type: item -#: guix-git/doc/guix.texi:29211 +#: guix-git/doc/guix.texi:29548 #, fuzzy, no-wrap msgid "@code{home-directory} (default: @code{\"/var/lib/laminar\"})" msgstr "@code{daemon-socket}(默认值:@code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:29213 +#: guix-git/doc/guix.texi:29550 msgid "The directory for job configurations and run directories." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29214 +#: guix-git/doc/guix.texi:29551 #, fuzzy, no-wrap msgid "@code{bind-http} (default: @code{\"*:8080\"})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:29217 +#: guix-git/doc/guix.texi:29554 msgid "The interface/port or unix socket on which laminard should listen for incoming connections to the web frontend." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29218 +#: guix-git/doc/guix.texi:29555 #, fuzzy, no-wrap msgid "@code{bind-rpc} (default: @code{\"unix-abstract:laminar\"})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: table -#: guix-git/doc/guix.texi:29221 +#: guix-git/doc/guix.texi:29558 msgid "The interface/port or unix socket on which laminard should listen for incoming commands such as build triggers." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29222 +#: guix-git/doc/guix.texi:29559 #, fuzzy, no-wrap msgid "@code{title} (default: @code{\"Laminar\"})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:29224 +#: guix-git/doc/guix.texi:29561 #, fuzzy msgid "The page title to show in the web frontend." msgstr "rottlog服务。" #. type: item -#: guix-git/doc/guix.texi:29225 +#: guix-git/doc/guix.texi:29562 #, fuzzy, no-wrap msgid "@code{keep-rundirs} (default: @code{0})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:29229 +#: guix-git/doc/guix.texi:29566 msgid "Set to an integer defining how many rundirs to keep per job. The lowest-numbered ones will be deleted. The default is 0, meaning all run dirs will be immediately deleted." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29230 +#: guix-git/doc/guix.texi:29567 #, fuzzy, no-wrap msgid "@code{archive-url} (default: @code{#f})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:29233 +#: guix-git/doc/guix.texi:29570 msgid "The web frontend served by laminard will use this URL to form links to artefacts archived jobs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29234 +#: guix-git/doc/guix.texi:29571 #, fuzzy, no-wrap msgid "@code{base-url} (default: @code{#f})" msgstr "@code{dnssec-policy}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:29236 +#: guix-git/doc/guix.texi:29573 msgid "Base URL to use for links to laminar itself." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29243 +#: guix-git/doc/guix.texi:29580 #, no-wrap msgid "tlp" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29244 +#: guix-git/doc/guix.texi:29581 #, no-wrap msgid "power management with TLP" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29245 +#: guix-git/doc/guix.texi:29582 #, no-wrap msgid "TLP daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29249 +#: guix-git/doc/guix.texi:29586 msgid "The @code{(gnu services pm)} module provides a Guix service definition for the Linux power management tool TLP." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29255 +#: guix-git/doc/guix.texi:29592 msgid "TLP enables various powersaving modes in userspace and kernel. Contrary to @code{upower-service}, it is not a passive, monitoring tool, as it will apply custom settings each time a new power source is detected. More information can be found at @uref{https://linrunner.de/en/tlp/tlp.html, TLP home page}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29256 +#: guix-git/doc/guix.texi:29593 #, no-wrap msgid "{Scheme Variable} tlp-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29260 +#: guix-git/doc/guix.texi:29597 msgid "The service type for the TLP tool. The default settings are optimised for battery life on most systems, but you can tweak them to your heart's content by adding a valid @code{tlp-configuration}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29265 +#: guix-git/doc/guix.texi:29602 #, no-wrap msgid "" "(service tlp-service-type\n" @@ -53065,888 +53703,932 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29273 +#: guix-git/doc/guix.texi:29610 msgid "Each parameter definition is preceded by its type; for example, @samp{boolean foo} indicates that the @code{foo} parameter should be specified as a boolean. Types starting with @code{maybe-} denote parameters that won't show up in TLP config file when their value is @code{'disabled}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29283 +#: guix-git/doc/guix.texi:29620 msgid "Available @code{tlp-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29284 +#: guix-git/doc/guix.texi:29621 #, no-wrap msgid "{@code{tlp-configuration} parameter} package tlp" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29286 +#: guix-git/doc/guix.texi:29623 msgid "The TLP package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29289 +#: guix-git/doc/guix.texi:29626 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean tlp-enable?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29291 +#: guix-git/doc/guix.texi:29628 msgid "Set to true if you wish to enable TLP." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29296 +#: guix-git/doc/guix.texi:29633 #, no-wrap msgid "{@code{tlp-configuration} parameter} string tlp-default-mode" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29299 +#: guix-git/doc/guix.texi:29636 msgid "Default mode when no power supply can be detected. Alternatives are AC and BAT." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29301 +#: guix-git/doc/guix.texi:29638 msgid "Defaults to @samp{\"AC\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29304 +#: guix-git/doc/guix.texi:29641 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer disk-idle-secs-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29307 +#: guix-git/doc/guix.texi:29644 msgid "Number of seconds Linux kernel has to wait after the disk goes idle, before syncing on AC." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29312 +#: guix-git/doc/guix.texi:29649 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer disk-idle-secs-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29314 +#: guix-git/doc/guix.texi:29651 msgid "Same as @code{disk-idle-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29316 +#: guix-git/doc/guix.texi:29653 msgid "Defaults to @samp{2}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29319 +#: guix-git/doc/guix.texi:29656 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer max-lost-work-secs-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29321 +#: guix-git/doc/guix.texi:29658 msgid "Dirty pages flushing periodicity, expressed in seconds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29323 guix-git/doc/guix.texi:29546 -#: guix-git/doc/guix.texi:31814 guix-git/doc/guix.texi:31822 +#: guix-git/doc/guix.texi:29660 guix-git/doc/guix.texi:29883 +#: guix-git/doc/guix.texi:32179 guix-git/doc/guix.texi:32187 msgid "Defaults to @samp{15}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29326 +#: guix-git/doc/guix.texi:29663 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer max-lost-work-secs-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29328 +#: guix-git/doc/guix.texi:29665 msgid "Same as @code{max-lost-work-secs-on-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29330 +#: guix-git/doc/guix.texi:29667 msgid "Defaults to @samp{60}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29333 +#: guix-git/doc/guix.texi:29670 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list cpu-scaling-governor-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29337 +#: guix-git/doc/guix.texi:29674 msgid "CPU frequency scaling governor on AC mode. With intel_pstate driver, alternatives are powersave and performance. With acpi-cpufreq driver, alternatives are ondemand, powersave, performance and conservative." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29342 +#: guix-git/doc/guix.texi:29679 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list cpu-scaling-governor-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29344 +#: guix-git/doc/guix.texi:29681 msgid "Same as @code{cpu-scaling-governor-on-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29349 +#: guix-git/doc/guix.texi:29686 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-min-freq-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29351 +#: guix-git/doc/guix.texi:29688 msgid "Set the min available frequency for the scaling governor on AC." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29356 +#: guix-git/doc/guix.texi:29693 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-max-freq-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29358 +#: guix-git/doc/guix.texi:29695 msgid "Set the max available frequency for the scaling governor on AC." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29363 +#: guix-git/doc/guix.texi:29700 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-min-freq-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29365 +#: guix-git/doc/guix.texi:29702 msgid "Set the min available frequency for the scaling governor on BAT." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29370 +#: guix-git/doc/guix.texi:29707 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-max-freq-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29372 +#: guix-git/doc/guix.texi:29709 msgid "Set the max available frequency for the scaling governor on BAT." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29377 +#: guix-git/doc/guix.texi:29714 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-min-perf-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29380 +#: guix-git/doc/guix.texi:29717 msgid "Limit the min P-state to control the power dissipation of the CPU, in AC mode. Values are stated as a percentage of the available performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29385 +#: guix-git/doc/guix.texi:29722 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29388 +#: guix-git/doc/guix.texi:29725 msgid "Limit the max P-state to control the power dissipation of the CPU, in AC mode. Values are stated as a percentage of the available performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29393 +#: guix-git/doc/guix.texi:29730 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-min-perf-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29395 +#: guix-git/doc/guix.texi:29732 msgid "Same as @code{cpu-min-perf-on-ac} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29400 +#: guix-git/doc/guix.texi:29737 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29402 +#: guix-git/doc/guix.texi:29739 msgid "Same as @code{cpu-max-perf-on-ac} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29407 +#: guix-git/doc/guix.texi:29744 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean cpu-boost-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29409 +#: guix-git/doc/guix.texi:29746 msgid "Enable CPU turbo boost feature on AC mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29414 +#: guix-git/doc/guix.texi:29751 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean cpu-boost-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29416 +#: guix-git/doc/guix.texi:29753 msgid "Same as @code{cpu-boost-on-ac?} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29421 +#: guix-git/doc/guix.texi:29758 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean sched-powersave-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29424 +#: guix-git/doc/guix.texi:29761 msgid "Allow Linux kernel to minimize the number of CPU cores/hyper-threads used under light load conditions." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29429 +#: guix-git/doc/guix.texi:29766 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean sched-powersave-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29431 +#: guix-git/doc/guix.texi:29768 msgid "Same as @code{sched-powersave-on-ac?} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29436 +#: guix-git/doc/guix.texi:29773 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean nmi-watchdog?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29438 +#: guix-git/doc/guix.texi:29775 msgid "Enable Linux kernel NMI watchdog." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29443 +#: guix-git/doc/guix.texi:29780 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string phc-controls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29446 +#: guix-git/doc/guix.texi:29783 msgid "For Linux kernels with PHC patch applied, change CPU voltages. An example value would be @samp{\"F:V F:V F:V F:V\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29451 +#: guix-git/doc/guix.texi:29788 #, no-wrap msgid "{@code{tlp-configuration} parameter} string energy-perf-policy-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29454 +#: guix-git/doc/guix.texi:29791 msgid "Set CPU performance versus energy saving policy on AC@. Alternatives are performance, normal, powersave." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29456 guix-git/doc/guix.texi:29554 -#: guix-git/doc/guix.texi:29584 +#: guix-git/doc/guix.texi:29793 guix-git/doc/guix.texi:29891 +#: guix-git/doc/guix.texi:29949 msgid "Defaults to @samp{\"performance\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29459 +#: guix-git/doc/guix.texi:29796 #, no-wrap msgid "{@code{tlp-configuration} parameter} string energy-perf-policy-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29461 +#: guix-git/doc/guix.texi:29798 msgid "Same as @code{energy-perf-policy-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29463 guix-git/doc/guix.texi:29561 +#: guix-git/doc/guix.texi:29800 guix-git/doc/guix.texi:29898 msgid "Defaults to @samp{\"powersave\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29466 +#: guix-git/doc/guix.texi:29803 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disks-devices" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29468 +#: guix-git/doc/guix.texi:29805 msgid "Hard disk devices." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29471 +#: guix-git/doc/guix.texi:29808 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disk-apm-level-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29473 +#: guix-git/doc/guix.texi:29810 msgid "Hard disk advanced power management level." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29476 +#: guix-git/doc/guix.texi:29813 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list disk-apm-level-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29478 +#: guix-git/doc/guix.texi:29815 msgid "Same as @code{disk-apm-bat} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29481 +#: guix-git/doc/guix.texi:29818 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-spindown-timeout-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29484 +#: guix-git/doc/guix.texi:29821 msgid "Hard disk spin down timeout. One value has to be specified for each declared hard disk." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29489 +#: guix-git/doc/guix.texi:29826 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-spindown-timeout-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29491 +#: guix-git/doc/guix.texi:29828 msgid "Same as @code{disk-spindown-timeout-on-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29496 +#: guix-git/doc/guix.texi:29833 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-iosched" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29500 +#: guix-git/doc/guix.texi:29837 msgid "Select IO scheduler for disk devices. One value has to be specified for each declared hard disk. Example alternatives are cfq, deadline and noop." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29505 +#: guix-git/doc/guix.texi:29842 #, no-wrap msgid "{@code{tlp-configuration} parameter} string sata-linkpwr-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29508 +#: guix-git/doc/guix.texi:29845 msgid "SATA aggressive link power management (ALPM) level. Alternatives are min_power, medium_power, max_performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29510 +#: guix-git/doc/guix.texi:29847 msgid "Defaults to @samp{\"max_performance\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29513 +#: guix-git/doc/guix.texi:29850 #, no-wrap msgid "{@code{tlp-configuration} parameter} string sata-linkpwr-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29515 +#: guix-git/doc/guix.texi:29852 msgid "Same as @code{sata-linkpwr-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29517 +#: guix-git/doc/guix.texi:29854 msgid "Defaults to @samp{\"min_power\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29520 +#: guix-git/doc/guix.texi:29857 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string sata-linkpwr-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29522 +#: guix-git/doc/guix.texi:29859 msgid "Exclude specified SATA host devices for link power management." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29527 +#: guix-git/doc/guix.texi:29864 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-on-off-boolean ahci-runtime-pm-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29530 +#: guix-git/doc/guix.texi:29867 msgid "Enable Runtime Power Management for AHCI controller and disks on AC mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29535 +#: guix-git/doc/guix.texi:29872 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-on-off-boolean ahci-runtime-pm-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29537 +#: guix-git/doc/guix.texi:29874 msgid "Same as @code{ahci-runtime-pm-on-ac} on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29542 +#: guix-git/doc/guix.texi:29879 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer ahci-runtime-pm-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29544 +#: guix-git/doc/guix.texi:29881 msgid "Seconds of inactivity before disk is suspended." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29549 +#: guix-git/doc/guix.texi:29886 #, no-wrap msgid "{@code{tlp-configuration} parameter} string pcie-aspm-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29552 +#: guix-git/doc/guix.texi:29889 msgid "PCI Express Active State Power Management level. Alternatives are default, performance, powersave." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29557 +#: guix-git/doc/guix.texi:29894 #, no-wrap msgid "{@code{tlp-configuration} parameter} string pcie-aspm-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29559 +#: guix-git/doc/guix.texi:29896 msgid "Same as @code{pcie-aspm-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29564 +#: guix-git/doc/guix.texi:29901 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer start-charge-thresh-bat0" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29903 +msgid "Percentage when battery 0 should begin charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29908 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer stop-charge-thresh-bat0" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29910 +msgid "Percentage when battery 0 should stop charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29915 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer start-charge-thresh-bat1" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29917 +msgid "Percentage when battery 1 should begin charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29922 +#, no-wrap +msgid "{@code{tlp-configuration} parameter} maybe-non-negative-integer stop-charge-thresh-bat1" +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29924 +msgid "Percentage when battery 1 should stop charging. Only supported on some laptops." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:29929 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-power-profile-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29567 +#: guix-git/doc/guix.texi:29932 msgid "Radeon graphics clock speed level. Alternatives are low, mid, high, auto, default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29569 +#: guix-git/doc/guix.texi:29934 msgid "Defaults to @samp{\"high\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29572 +#: guix-git/doc/guix.texi:29937 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-power-profile-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29574 +#: guix-git/doc/guix.texi:29939 msgid "Same as @code{radeon-power-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29576 +#: guix-git/doc/guix.texi:29941 msgid "Defaults to @samp{\"low\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29579 +#: guix-git/doc/guix.texi:29944 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-state-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29582 +#: guix-git/doc/guix.texi:29947 msgid "Radeon dynamic power management method (DPM). Alternatives are battery, performance." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29587 +#: guix-git/doc/guix.texi:29952 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-state-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29589 +#: guix-git/doc/guix.texi:29954 msgid "Same as @code{radeon-dpm-state-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29591 +#: guix-git/doc/guix.texi:29956 msgid "Defaults to @samp{\"battery\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29594 +#: guix-git/doc/guix.texi:29959 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-perf-level-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29596 +#: guix-git/doc/guix.texi:29961 msgid "Radeon DPM performance level. Alternatives are auto, low, high." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29598 guix-git/doc/guix.texi:29605 -#: guix-git/doc/guix.texi:29679 +#: guix-git/doc/guix.texi:29963 guix-git/doc/guix.texi:29970 +#: guix-git/doc/guix.texi:30044 msgid "Defaults to @samp{\"auto\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29601 +#: guix-git/doc/guix.texi:29966 #, no-wrap msgid "{@code{tlp-configuration} parameter} string radeon-dpm-perf-level-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29603 +#: guix-git/doc/guix.texi:29968 msgid "Same as @code{radeon-dpm-perf-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29608 +#: guix-git/doc/guix.texi:29973 #, no-wrap msgid "{@code{tlp-configuration} parameter} on-off-boolean wifi-pwr-on-ac?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29610 +#: guix-git/doc/guix.texi:29975 msgid "Wifi power saving mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29615 +#: guix-git/doc/guix.texi:29980 #, no-wrap msgid "{@code{tlp-configuration} parameter} on-off-boolean wifi-pwr-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29617 +#: guix-git/doc/guix.texi:29982 msgid "Same as @code{wifi-power-ac?} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29622 +#: guix-git/doc/guix.texi:29987 #, no-wrap msgid "{@code{tlp-configuration} parameter} y-n-boolean wol-disable?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29624 +#: guix-git/doc/guix.texi:29989 msgid "Disable wake on LAN." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29629 +#: guix-git/doc/guix.texi:29994 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer sound-power-save-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29632 +#: guix-git/doc/guix.texi:29997 msgid "Timeout duration in seconds before activating audio power saving on Intel HDA and AC97 devices. A value of 0 disables power saving." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29637 +#: guix-git/doc/guix.texi:30002 #, no-wrap msgid "{@code{tlp-configuration} parameter} non-negative-integer sound-power-save-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29639 +#: guix-git/doc/guix.texi:30004 msgid "Same as @code{sound-powersave-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29644 +#: guix-git/doc/guix.texi:30009 #, no-wrap msgid "{@code{tlp-configuration} parameter} y-n-boolean sound-power-save-controller?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29646 +#: guix-git/doc/guix.texi:30011 msgid "Disable controller in powersaving mode on Intel HDA devices." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29651 +#: guix-git/doc/guix.texi:30016 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean bay-poweroff-on-bat?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29655 +#: guix-git/doc/guix.texi:30020 msgid "Enable optical drive in UltraBay/MediaBay on BAT mode. Drive can be powered on again by releasing (and reinserting) the eject lever or by pressing the disc eject button on newer models." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29660 +#: guix-git/doc/guix.texi:30025 #, no-wrap msgid "{@code{tlp-configuration} parameter} string bay-device" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29662 +#: guix-git/doc/guix.texi:30027 msgid "Name of the optical drive device to power off." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29664 +#: guix-git/doc/guix.texi:30029 msgid "Defaults to @samp{\"sr0\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29667 +#: guix-git/doc/guix.texi:30032 #, no-wrap msgid "{@code{tlp-configuration} parameter} string runtime-pm-on-ac" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29670 +#: guix-git/doc/guix.texi:30035 msgid "Runtime Power Management for PCI(e) bus devices. Alternatives are on and auto." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29672 +#: guix-git/doc/guix.texi:30037 msgid "Defaults to @samp{\"on\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29675 +#: guix-git/doc/guix.texi:30040 #, no-wrap msgid "{@code{tlp-configuration} parameter} string runtime-pm-on-bat" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29677 +#: guix-git/doc/guix.texi:30042 msgid "Same as @code{runtime-pm-ac} but on BAT mode." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29682 +#: guix-git/doc/guix.texi:30047 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean runtime-pm-all?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29685 +#: guix-git/doc/guix.texi:30050 msgid "Runtime Power Management for all PCI(e) bus devices, except blacklisted ones." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29690 +#: guix-git/doc/guix.texi:30055 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-space-separated-string-list runtime-pm-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29692 +#: guix-git/doc/guix.texi:30057 msgid "Exclude specified PCI(e) device addresses from Runtime Power Management." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29697 +#: guix-git/doc/guix.texi:30062 #, no-wrap msgid "{@code{tlp-configuration} parameter} space-separated-string-list runtime-pm-driver-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29700 +#: guix-git/doc/guix.texi:30065 msgid "Exclude PCI(e) devices assigned to the specified drivers from Runtime Power Management." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29703 +#: guix-git/doc/guix.texi:30068 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean usb-autosuspend?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29705 +#: guix-git/doc/guix.texi:30070 msgid "Enable USB autosuspend feature." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29710 +#: guix-git/doc/guix.texi:30075 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string usb-blacklist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29712 +#: guix-git/doc/guix.texi:30077 msgid "Exclude specified devices from USB autosuspend." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29717 +#: guix-git/doc/guix.texi:30082 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean usb-blacklist-wwan?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29719 +#: guix-git/doc/guix.texi:30084 msgid "Exclude WWAN devices from USB autosuspend." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29724 +#: guix-git/doc/guix.texi:30089 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-string usb-whitelist" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29727 +#: guix-git/doc/guix.texi:30092 msgid "Include specified devices into USB autosuspend, even if they are already excluded by the driver or via @code{usb-blacklist-wwan?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29732 +#: guix-git/doc/guix.texi:30097 #, no-wrap msgid "{@code{tlp-configuration} parameter} maybe-boolean usb-autosuspend-disable-on-shutdown?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29734 +#: guix-git/doc/guix.texi:30099 msgid "Enable USB autosuspend before shutdown." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29739 +#: guix-git/doc/guix.texi:30104 #, no-wrap msgid "{@code{tlp-configuration} parameter} boolean restore-device-state-on-startup?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29742 +#: guix-git/doc/guix.texi:30107 msgid "Restore radio device state (bluetooth, wifi, wwan) from previous shutdown on system startup." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29747 +#: guix-git/doc/guix.texi:30112 #, no-wrap msgid "thermald" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29748 +#: guix-git/doc/guix.texi:30113 #, no-wrap msgid "CPU frequency scaling with thermald" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29749 +#: guix-git/doc/guix.texi:30114 #, no-wrap msgid "Thermald daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29753 +#: guix-git/doc/guix.texi:30118 msgid "The @code{(gnu services pm)} module provides an interface to thermald, a CPU frequency scaling service which helps prevent overheating." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29754 +#: guix-git/doc/guix.texi:30119 #, no-wrap msgid "{Scheme Variable} thermald-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29759 +#: guix-git/doc/guix.texi:30124 msgid "This is the service type for @uref{https://01.org/linux-thermal-daemon/, thermald}, the Linux Thermal Daemon, which is responsible for controlling the thermal state of processors and preventing overheating." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29761 +#: guix-git/doc/guix.texi:30126 #, no-wrap msgid "{Data Type} thermald-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29763 +#: guix-git/doc/guix.texi:30128 msgid "Data type representing the configuration of @code{thermald-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29765 +#: guix-git/doc/guix.texi:30130 #, no-wrap msgid "@code{ignore-cpuid-check?} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29767 +#: guix-git/doc/guix.texi:30132 msgid "Ignore cpuid check for supported CPU models." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29768 +#: guix-git/doc/guix.texi:30133 #, no-wrap msgid "@code{thermald} (default: @var{thermald})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29770 +#: guix-git/doc/guix.texi:30135 msgid "Package object of thermald." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29779 +#: guix-git/doc/guix.texi:30144 msgid "The @code{(gnu services audio)} module provides a service to start MPD (the Music Player Daemon)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:29780 +#: guix-git/doc/guix.texi:30145 #, no-wrap msgid "mpd" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29781 +#: guix-git/doc/guix.texi:30146 #, no-wrap msgid "Music Player Daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29786 +#: guix-git/doc/guix.texi:30151 msgid "The Music Player Daemon (MPD) is a service that can play music while being controlled from the local machine or over the network by a variety of clients." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29789 +#: guix-git/doc/guix.texi:30154 msgid "The following example shows how one might run @code{mpd} as user @code{\"bob\"} on port @code{6666}. It uses pulseaudio for output." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29795 +#: guix-git/doc/guix.texi:30160 #, no-wrap msgid "" "(service mpd-service-type\n" @@ -53956,215 +54638,215 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29797 +#: guix-git/doc/guix.texi:30162 #, no-wrap msgid "{Scheme Variable} mpd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:29799 +#: guix-git/doc/guix.texi:30164 msgid "The service type for @command{mpd}" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29801 +#: guix-git/doc/guix.texi:30166 #, no-wrap msgid "{Data Type} mpd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29803 +#: guix-git/doc/guix.texi:30168 msgid "Data type representing the configuration of @command{mpd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29805 +#: guix-git/doc/guix.texi:30170 #, no-wrap msgid "@code{user} (default: @code{\"mpd\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29807 +#: guix-git/doc/guix.texi:30172 msgid "The user to run mpd as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29808 +#: guix-git/doc/guix.texi:30173 #, no-wrap msgid "@code{music-dir} (default: @code{\"~/Music\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29810 +#: guix-git/doc/guix.texi:30175 msgid "The directory to scan for music files." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29811 +#: guix-git/doc/guix.texi:30176 #, no-wrap msgid "@code{playlist-dir} (default: @code{\"~/.mpd/playlists\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29813 +#: guix-git/doc/guix.texi:30178 msgid "The directory to store playlists." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29814 +#: guix-git/doc/guix.texi:30179 #, no-wrap msgid "@code{db-file} (default: @code{\"~/.mpd/tag_cache\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29816 +#: guix-git/doc/guix.texi:30181 msgid "The location of the music database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29817 +#: guix-git/doc/guix.texi:30182 #, no-wrap msgid "@code{state-file} (default: @code{\"~/.mpd/state\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29819 +#: guix-git/doc/guix.texi:30184 msgid "The location of the file that stores current MPD's state." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29820 +#: guix-git/doc/guix.texi:30185 #, no-wrap msgid "@code{sticker-file} (default: @code{\"~/.mpd/sticker.sql\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29822 +#: guix-git/doc/guix.texi:30187 msgid "The location of the sticker database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29823 +#: guix-git/doc/guix.texi:30188 #, no-wrap msgid "@code{port} (default: @code{\"6600\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29825 +#: guix-git/doc/guix.texi:30190 msgid "The port to run mpd on." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29826 +#: guix-git/doc/guix.texi:30191 #, no-wrap msgid "@code{address} (default: @code{\"any\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29829 +#: guix-git/doc/guix.texi:30194 msgid "The address that mpd will bind to. To use a Unix domain socket, an absolute path can be specified here." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29830 +#: guix-git/doc/guix.texi:30195 #, fuzzy, no-wrap msgid "@code{outputs} (default: @code{\"(list (mpd-output))\"})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:29832 +#: guix-git/doc/guix.texi:30197 msgid "The audio outputs that MPD can use. By default this is a single output using pulseaudio." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29836 +#: guix-git/doc/guix.texi:30201 #, no-wrap msgid "{Data Type} mpd-output" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:29838 +#: guix-git/doc/guix.texi:30203 msgid "Data type representing an @command{mpd} audio output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29840 +#: guix-git/doc/guix.texi:30205 #, fuzzy, no-wrap msgid "@code{name} (default: @code{\"MPD\"})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: table -#: guix-git/doc/guix.texi:29842 +#: guix-git/doc/guix.texi:30207 msgid "The name of the audio output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29843 +#: guix-git/doc/guix.texi:30208 #, fuzzy, no-wrap msgid "@code{type} (default: @code{\"pulse\"})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:29845 +#: guix-git/doc/guix.texi:30210 msgid "The type of audio output." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29846 +#: guix-git/doc/guix.texi:30211 #, fuzzy, no-wrap msgid "@code{enabled?} (default: @code{#t})" msgstr "@code{speed}(默认值:@code{1.0})" #. type: table -#: guix-git/doc/guix.texi:29851 +#: guix-git/doc/guix.texi:30216 msgid "Specifies whether this audio output is enabled when MPD is started. By default, all audio outputs are enabled. This is just the default setting when there is no state file; with a state file, the previous state is restored." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29852 +#: guix-git/doc/guix.texi:30217 #, fuzzy, no-wrap msgid "@code{tags?} (default: @code{#t})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:29856 +#: guix-git/doc/guix.texi:30221 msgid "If set to @code{#f}, then MPD will not send tags to this output. This is only useful for output plugins that can receive tags, for example the @code{httpd} output plugin." msgstr "" #. type: item -#: guix-git/doc/guix.texi:29857 +#: guix-git/doc/guix.texi:30222 #, fuzzy, no-wrap msgid "@code{always-on?} (default: @code{#f})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:29861 +#: guix-git/doc/guix.texi:30226 msgid "If set to @code{#t}, then MPD attempts to keep this audio output always open. This may be useful for streaming servers, when you don’t want to disconnect all listeners even when playback is accidentally stopped." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:29862 +#: guix-git/doc/guix.texi:30227 #, no-wrap msgid "mixer-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:29868 +#: guix-git/doc/guix.texi:30233 msgid "This field accepts a symbol that specifies which mixer should be used for this audio output: the @code{hardware} mixer, the @code{software} mixer, the @code{null} mixer (allows setting the volume, but with no effect; this can be used as a trick to implement an external mixer External Mixer) or no mixer (@code{none})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:29872 +#: guix-git/doc/guix.texi:30237 msgid "An association list of option symbols to string values to be appended to the audio output configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29878 +#: guix-git/doc/guix.texi:30243 msgid "The following example shows a configuration of @code{mpd} that provides an HTTP audio streaming output." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29890 +#: guix-git/doc/guix.texi:30255 #, no-wrap msgid "" "(service mpd-service-type\n" @@ -54180,34 +54862,34 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29899 +#: guix-git/doc/guix.texi:30264 msgid "The @code{(gnu services virtualization)} module provides services for the libvirt and virtlog daemons, as well as other virtualization-related services." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:29900 +#: guix-git/doc/guix.texi:30265 #, no-wrap msgid "Libvirt daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29905 +#: guix-git/doc/guix.texi:30270 msgid "@code{libvirtd} is the server side daemon component of the libvirt virtualization management system. This daemon runs on host servers and performs required management tasks for virtualized guests." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29906 +#: guix-git/doc/guix.texi:30271 #, no-wrap msgid "{Scheme Variable} libvirt-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:29909 +#: guix-git/doc/guix.texi:30274 msgid "This is the type of the @uref{https://libvirt.org, libvirt daemon}. Its value must be a @code{libvirt-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:29915 +#: guix-git/doc/guix.texi:30280 #, no-wrap msgid "" "(service libvirt-service-type\n" @@ -54217,870 +54899,870 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:29920 +#: guix-git/doc/guix.texi:30285 msgid "Available @code{libvirt-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29921 +#: guix-git/doc/guix.texi:30286 #, no-wrap msgid "{@code{libvirt-configuration} parameter} package libvirt" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29923 +#: guix-git/doc/guix.texi:30288 msgid "Libvirt package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29926 +#: guix-git/doc/guix.texi:30291 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean listen-tls?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29929 +#: guix-git/doc/guix.texi:30294 msgid "Flag listening for secure TLS connections on the public TCP/IP port. You must set @code{listen} for this to have any effect." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29932 +#: guix-git/doc/guix.texi:30297 msgid "It is necessary to setup a CA and issue server certificates before using this capability." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29937 +#: guix-git/doc/guix.texi:30302 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean listen-tcp?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29940 +#: guix-git/doc/guix.texi:30305 msgid "Listen for unencrypted TCP connections on the public TCP/IP port. You must set @code{listen} for this to have any effect." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29944 +#: guix-git/doc/guix.texi:30309 msgid "Using the TCP socket requires SASL authentication by default. Only SASL mechanisms which support data encryption are allowed. This is DIGEST_MD5 and GSSAPI (Kerberos5)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29949 +#: guix-git/doc/guix.texi:30314 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tls-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29952 +#: guix-git/doc/guix.texi:30317 msgid "Port for accepting secure TLS connections. This can be a port number, or service name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29954 +#: guix-git/doc/guix.texi:30319 msgid "Defaults to @samp{\"16514\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29957 +#: guix-git/doc/guix.texi:30322 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tcp-port" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29960 +#: guix-git/doc/guix.texi:30325 msgid "Port for accepting insecure TCP connections. This can be a port number, or service name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29962 +#: guix-git/doc/guix.texi:30327 msgid "Defaults to @samp{\"16509\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29965 +#: guix-git/doc/guix.texi:30330 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string listen-addr" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29967 +#: guix-git/doc/guix.texi:30332 msgid "IP address or hostname used for client connections." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29972 +#: guix-git/doc/guix.texi:30337 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean mdns-adv?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29974 +#: guix-git/doc/guix.texi:30339 msgid "Flag toggling mDNS advertisement of the libvirt service." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29977 +#: guix-git/doc/guix.texi:30342 msgid "Alternatively can disable for all services on a host by stopping the Avahi daemon." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29982 +#: guix-git/doc/guix.texi:30347 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string mdns-name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29985 +#: guix-git/doc/guix.texi:30350 msgid "Default mDNS advertisement name. This must be unique on the immediate broadcast network." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29987 +#: guix-git/doc/guix.texi:30352 msgid "Defaults to @samp{\"Virtualization Host \"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29990 +#: guix-git/doc/guix.texi:30355 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-group" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29994 +#: guix-git/doc/guix.texi:30359 msgid "UNIX domain socket group ownership. This can be used to allow a 'trusted' set of users access to management capabilities without becoming root." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:29999 +#: guix-git/doc/guix.texi:30364 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-ro-perms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30002 +#: guix-git/doc/guix.texi:30367 msgid "UNIX socket permissions for the R/O socket. This is used for monitoring VM status only." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30004 guix-git/doc/guix.texi:30022 +#: guix-git/doc/guix.texi:30369 guix-git/doc/guix.texi:30387 msgid "Defaults to @samp{\"0777\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30007 +#: guix-git/doc/guix.texi:30372 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-rw-perms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30011 +#: guix-git/doc/guix.texi:30376 msgid "UNIX socket permissions for the R/W socket. Default allows only root. If PolicyKit is enabled on the socket, the default will change to allow everyone (eg, 0777)" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30013 +#: guix-git/doc/guix.texi:30378 msgid "Defaults to @samp{\"0770\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30016 +#: guix-git/doc/guix.texi:30381 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-admin-perms" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30020 +#: guix-git/doc/guix.texi:30385 msgid "UNIX socket permissions for the admin socket. Default allows only owner (root), do not change it unless you are sure to whom you are exposing the access to." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30025 +#: guix-git/doc/guix.texi:30390 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string unix-sock-dir" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30027 +#: guix-git/doc/guix.texi:30392 msgid "The directory in which sockets will be found/created." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30029 +#: guix-git/doc/guix.texi:30394 msgid "Defaults to @samp{\"/var/run/libvirt\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30032 +#: guix-git/doc/guix.texi:30397 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-unix-ro" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30035 +#: guix-git/doc/guix.texi:30400 msgid "Authentication scheme for UNIX read-only sockets. By default socket permissions allow anyone to connect" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30037 guix-git/doc/guix.texi:30046 +#: guix-git/doc/guix.texi:30402 guix-git/doc/guix.texi:30411 msgid "Defaults to @samp{\"polkit\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30040 +#: guix-git/doc/guix.texi:30405 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-unix-rw" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30044 +#: guix-git/doc/guix.texi:30409 msgid "Authentication scheme for UNIX read-write sockets. By default socket permissions only allow root. If PolicyKit support was compiled into libvirt, the default will be to use 'polkit' auth." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30049 +#: guix-git/doc/guix.texi:30414 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-tcp" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30053 +#: guix-git/doc/guix.texi:30418 msgid "Authentication scheme for TCP sockets. If you don't enable SASL, then all TCP traffic is cleartext. Don't do this outside of a dev/test scenario." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30055 +#: guix-git/doc/guix.texi:30420 msgid "Defaults to @samp{\"sasl\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30058 +#: guix-git/doc/guix.texi:30423 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string auth-tls" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30062 +#: guix-git/doc/guix.texi:30427 msgid "Authentication scheme for TLS sockets. TLS sockets already have encryption provided by the TLS layer, and limited authentication is done by certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30065 +#: guix-git/doc/guix.texi:30430 msgid "It is possible to make use of any SASL authentication mechanism as well, by using 'sasl' for this option" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30067 +#: guix-git/doc/guix.texi:30432 msgid "Defaults to @samp{\"none\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30070 +#: guix-git/doc/guix.texi:30435 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list access-drivers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30072 +#: guix-git/doc/guix.texi:30437 msgid "API access control scheme." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30075 +#: guix-git/doc/guix.texi:30440 msgid "By default an authenticated user is allowed access to all APIs. Access drivers can place restrictions on this." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30080 +#: guix-git/doc/guix.texi:30445 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string key-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30083 +#: guix-git/doc/guix.texi:30448 msgid "Server key file path. If set to an empty string, then no private key is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30088 +#: guix-git/doc/guix.texi:30453 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string cert-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30091 +#: guix-git/doc/guix.texi:30456 msgid "Server key file path. If set to an empty string, then no certificate is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30096 +#: guix-git/doc/guix.texi:30461 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string ca-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30099 +#: guix-git/doc/guix.texi:30464 msgid "Server key file path. If set to an empty string, then no CA certificate is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30104 +#: guix-git/doc/guix.texi:30469 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string crl-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30107 +#: guix-git/doc/guix.texi:30472 msgid "Certificate revocation list path. If set to an empty string, then no CRL is loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30112 +#: guix-git/doc/guix.texi:30477 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean tls-no-sanity-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30114 +#: guix-git/doc/guix.texi:30479 msgid "Disable verification of our own server certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30117 +#: guix-git/doc/guix.texi:30482 msgid "When libvirtd starts it performs some sanity checks against its own certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30122 +#: guix-git/doc/guix.texi:30487 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean tls-no-verify-cert" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30124 +#: guix-git/doc/guix.texi:30489 msgid "Disable verification of client certificates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30128 +#: guix-git/doc/guix.texi:30493 msgid "Client certificate verification is the primary authentication mechanism. Any client which does not present a certificate signed by the CA will be rejected." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30133 +#: guix-git/doc/guix.texi:30498 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list tls-allowed-dn-list" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30135 +#: guix-git/doc/guix.texi:30500 msgid "Whitelist of allowed x509 Distinguished Name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30140 +#: guix-git/doc/guix.texi:30505 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-list sasl-allowed-usernames" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30143 +#: guix-git/doc/guix.texi:30508 msgid "Whitelist of allowed SASL usernames. The format for username depends on the SASL authentication mechanism." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30148 +#: guix-git/doc/guix.texi:30513 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string tls-priority" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30152 +#: guix-git/doc/guix.texi:30517 msgid "Override the compile time default TLS priority string. The default is usually @samp{\"NORMAL\"} unless overridden at build time. Only set this is it is desired for libvirt to deviate from the global default settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30154 +#: guix-git/doc/guix.texi:30519 msgid "Defaults to @samp{\"NORMAL\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30157 +#: guix-git/doc/guix.texi:30522 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30160 guix-git/doc/guix.texi:30584 +#: guix-git/doc/guix.texi:30525 guix-git/doc/guix.texi:30949 msgid "Maximum number of concurrent client connections to allow over all sockets combined." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30162 +#: guix-git/doc/guix.texi:30527 msgid "Defaults to @samp{5000}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30165 +#: guix-git/doc/guix.texi:30530 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-queued-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30169 +#: guix-git/doc/guix.texi:30534 msgid "Maximum length of queue of connections waiting to be accepted by the daemon. Note, that some protocols supporting retransmission may obey this so that a later reattempt at connection succeeds." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30174 +#: guix-git/doc/guix.texi:30539 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-anonymous-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30177 +#: guix-git/doc/guix.texi:30542 msgid "Maximum length of queue of accepted but not yet authenticated clients. Set this to zero to turn this feature off" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30179 guix-git/doc/guix.texi:30197 -#: guix-git/doc/guix.texi:30213 +#: guix-git/doc/guix.texi:30544 guix-git/doc/guix.texi:30562 +#: guix-git/doc/guix.texi:30578 msgid "Defaults to @samp{20}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30182 +#: guix-git/doc/guix.texi:30547 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer min-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30184 +#: guix-git/doc/guix.texi:30549 msgid "Number of workers to start up initially." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30189 +#: guix-git/doc/guix.texi:30554 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30191 +#: guix-git/doc/guix.texi:30556 msgid "Maximum number of worker threads." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30195 +#: guix-git/doc/guix.texi:30560 msgid "If the number of active clients exceeds @code{min-workers}, then more threads are spawned, up to max_workers limit. Typically you'd want max_workers to equal maximum number of clients allowed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30200 +#: guix-git/doc/guix.texi:30565 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer prio-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30204 +#: guix-git/doc/guix.texi:30569 msgid "Number of priority workers. If all workers from above pool are stuck, some calls marked as high priority (notably domainDestroy) can be executed in this pool." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30209 +#: guix-git/doc/guix.texi:30574 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-requests" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30211 +#: guix-git/doc/guix.texi:30576 msgid "Total global limit on concurrent RPC calls." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30216 +#: guix-git/doc/guix.texi:30581 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer max-client-requests" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30220 +#: guix-git/doc/guix.texi:30585 msgid "Limit on concurrent requests from a single client connection. To avoid one client monopolizing the server this should be a small fraction of the global max_requests and max_workers parameter." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30225 +#: guix-git/doc/guix.texi:30590 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-min-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30227 +#: guix-git/doc/guix.texi:30592 msgid "Same as @code{min-workers} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30232 +#: guix-git/doc/guix.texi:30597 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-workers" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30234 +#: guix-git/doc/guix.texi:30599 msgid "Same as @code{max-workers} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30239 +#: guix-git/doc/guix.texi:30604 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30241 +#: guix-git/doc/guix.texi:30606 msgid "Same as @code{max-clients} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30246 +#: guix-git/doc/guix.texi:30611 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-queued-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30248 +#: guix-git/doc/guix.texi:30613 msgid "Same as @code{max-queued-clients} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30253 +#: guix-git/doc/guix.texi:30618 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-max-client-requests" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30255 +#: guix-git/doc/guix.texi:30620 msgid "Same as @code{max-client-requests} but for the admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30260 +#: guix-git/doc/guix.texi:30625 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30262 guix-git/doc/guix.texi:30486 +#: guix-git/doc/guix.texi:30627 guix-git/doc/guix.texi:30851 msgid "Logging level. 4 errors, 3 warnings, 2 information, 1 debug." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30267 +#: guix-git/doc/guix.texi:30632 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string log-filters" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30269 guix-git/doc/guix.texi:30493 +#: guix-git/doc/guix.texi:30634 guix-git/doc/guix.texi:30858 msgid "Logging filters." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30272 +#: guix-git/doc/guix.texi:30637 msgid "A filter allows to select a different logging level for a given category of logs. The format for a filter is one of:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30276 guix-git/doc/guix.texi:30500 +#: guix-git/doc/guix.texi:30641 guix-git/doc/guix.texi:30865 msgid "x:name" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30279 guix-git/doc/guix.texi:30503 +#: guix-git/doc/guix.texi:30644 guix-git/doc/guix.texi:30868 msgid "x:+name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30290 +#: guix-git/doc/guix.texi:30655 msgid "where @code{name} is a string which is matched against the category given in the @code{VIR_LOG_INIT()} at the top of each libvirt source file, e.g., @samp{\"remote\"}, @samp{\"qemu\"}, or @samp{\"util.json\"} (the name in the filter can be a substring of the full category name, in order to match multiple similar categories), the optional @samp{\"+\"} prefix tells libvirt to log stack trace for each message matching name, and @code{x} is the minimal level where matching messages should be logged:" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30294 guix-git/doc/guix.texi:30339 -#: guix-git/doc/guix.texi:30517 guix-git/doc/guix.texi:30562 +#: guix-git/doc/guix.texi:30659 guix-git/doc/guix.texi:30704 +#: guix-git/doc/guix.texi:30882 guix-git/doc/guix.texi:30927 msgid "1: DEBUG" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30297 guix-git/doc/guix.texi:30342 -#: guix-git/doc/guix.texi:30520 guix-git/doc/guix.texi:30565 +#: guix-git/doc/guix.texi:30662 guix-git/doc/guix.texi:30707 +#: guix-git/doc/guix.texi:30885 guix-git/doc/guix.texi:30930 msgid "2: INFO" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30300 guix-git/doc/guix.texi:30345 -#: guix-git/doc/guix.texi:30523 guix-git/doc/guix.texi:30568 +#: guix-git/doc/guix.texi:30665 guix-git/doc/guix.texi:30710 +#: guix-git/doc/guix.texi:30888 guix-git/doc/guix.texi:30933 msgid "3: WARNING" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30303 guix-git/doc/guix.texi:30348 -#: guix-git/doc/guix.texi:30526 guix-git/doc/guix.texi:30571 +#: guix-git/doc/guix.texi:30668 guix-git/doc/guix.texi:30713 +#: guix-git/doc/guix.texi:30891 guix-git/doc/guix.texi:30936 msgid "4: ERROR" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30308 guix-git/doc/guix.texi:30531 +#: guix-git/doc/guix.texi:30673 guix-git/doc/guix.texi:30896 msgid "Multiple filters can be defined in a single filters statement, they just need to be separated by spaces." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30310 guix-git/doc/guix.texi:30533 +#: guix-git/doc/guix.texi:30675 guix-git/doc/guix.texi:30898 msgid "Defaults to @samp{\"3:remote 4:event\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30313 +#: guix-git/doc/guix.texi:30678 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string log-outputs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30315 guix-git/doc/guix.texi:30538 +#: guix-git/doc/guix.texi:30680 guix-git/doc/guix.texi:30903 msgid "Logging outputs." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30318 +#: guix-git/doc/guix.texi:30683 msgid "An output is one of the places to save logging information. The format for an output can be:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30320 guix-git/doc/guix.texi:30543 +#: guix-git/doc/guix.texi:30685 guix-git/doc/guix.texi:30908 #, no-wrap msgid "x:stderr" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30322 guix-git/doc/guix.texi:30545 +#: guix-git/doc/guix.texi:30687 guix-git/doc/guix.texi:30910 msgid "output goes to stderr" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30323 guix-git/doc/guix.texi:30546 +#: guix-git/doc/guix.texi:30688 guix-git/doc/guix.texi:30911 #, no-wrap msgid "x:syslog:name" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30325 guix-git/doc/guix.texi:30548 +#: guix-git/doc/guix.texi:30690 guix-git/doc/guix.texi:30913 msgid "use syslog for the output and use the given name as the ident" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30326 guix-git/doc/guix.texi:30549 +#: guix-git/doc/guix.texi:30691 guix-git/doc/guix.texi:30914 #, no-wrap msgid "x:file:file_path" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30328 guix-git/doc/guix.texi:30551 +#: guix-git/doc/guix.texi:30693 guix-git/doc/guix.texi:30916 msgid "output to a file, with the given filepath" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30329 guix-git/doc/guix.texi:30552 +#: guix-git/doc/guix.texi:30694 guix-git/doc/guix.texi:30917 #, no-wrap msgid "x:journald" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30331 guix-git/doc/guix.texi:30554 +#: guix-git/doc/guix.texi:30696 guix-git/doc/guix.texi:30919 msgid "output to journald logging system" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30335 guix-git/doc/guix.texi:30558 +#: guix-git/doc/guix.texi:30700 guix-git/doc/guix.texi:30923 msgid "In all case the x prefix is the minimal level, acting as a filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30353 guix-git/doc/guix.texi:30576 +#: guix-git/doc/guix.texi:30718 guix-git/doc/guix.texi:30941 msgid "Multiple outputs can be defined, they just need to be separated by spaces." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30355 guix-git/doc/guix.texi:30578 +#: guix-git/doc/guix.texi:30720 guix-git/doc/guix.texi:30943 msgid "Defaults to @samp{\"3:stderr\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30358 +#: guix-git/doc/guix.texi:30723 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer audit-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30360 +#: guix-git/doc/guix.texi:30725 msgid "Allows usage of the auditing subsystem to be altered" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30364 +#: guix-git/doc/guix.texi:30729 msgid "0: disable all auditing" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30367 +#: guix-git/doc/guix.texi:30732 msgid "1: enable auditing, only if enabled on host" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30370 +#: guix-git/doc/guix.texi:30735 msgid "2: enable auditing, and exit if disabled on host." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30377 +#: guix-git/doc/guix.texi:30742 #, no-wrap msgid "{@code{libvirt-configuration} parameter} boolean audit-logging" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30379 +#: guix-git/doc/guix.texi:30744 msgid "Send audit messages via libvirt logging infrastructure." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30384 +#: guix-git/doc/guix.texi:30749 #, no-wrap msgid "{@code{libvirt-configuration} parameter} optional-string host-uuid" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30386 +#: guix-git/doc/guix.texi:30751 msgid "Host UUID@. UUID must not have all digits be the same." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30391 +#: guix-git/doc/guix.texi:30756 #, no-wrap msgid "{@code{libvirt-configuration} parameter} string host-uuid-source" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30393 +#: guix-git/doc/guix.texi:30758 msgid "Source to read host UUID." msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30397 +#: guix-git/doc/guix.texi:30762 msgid "@code{smbios}: fetch the UUID from @code{dmidecode -s system-uuid}" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:30400 +#: guix-git/doc/guix.texi:30765 msgid "@code{machine-id}: fetch the UUID from @code{/etc/machine-id}" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30405 +#: guix-git/doc/guix.texi:30770 msgid "If @code{dmidecode} does not provide a valid UUID a temporary UUID will be generated." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30407 +#: guix-git/doc/guix.texi:30772 msgid "Defaults to @samp{\"smbios\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30410 +#: guix-git/doc/guix.texi:30775 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer keepalive-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30415 +#: guix-git/doc/guix.texi:30780 msgid "A keepalive message is sent to a client after @code{keepalive_interval} seconds of inactivity to check if the client is still responding. If set to -1, libvirtd will never send keepalive requests; however clients can still send them and the daemon will send responses." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30420 +#: guix-git/doc/guix.texi:30785 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer keepalive-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30424 +#: guix-git/doc/guix.texi:30789 msgid "Maximum number of keepalive messages that are allowed to be sent to the client without getting any response before the connection is considered broken." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30431 +#: guix-git/doc/guix.texi:30796 msgid "In other words, the connection is automatically closed approximately after @code{keepalive_interval * (keepalive_count + 1)} seconds since the last message received from the client. When @code{keepalive-count} is set to 0, connections will be automatically closed after @code{keepalive-interval} seconds of inactivity without sending any keepalive messages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30436 +#: guix-git/doc/guix.texi:30801 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-keepalive-interval" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30438 guix-git/doc/guix.texi:30445 +#: guix-git/doc/guix.texi:30803 guix-git/doc/guix.texi:30810 msgid "Same as above but for admin interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30443 +#: guix-git/doc/guix.texi:30808 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer admin-keepalive-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30450 +#: guix-git/doc/guix.texi:30815 #, no-wrap msgid "{@code{libvirt-configuration} parameter} integer ovs-timeout" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30452 +#: guix-git/doc/guix.texi:30817 msgid "Timeout for Open vSwitch calls." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30456 +#: guix-git/doc/guix.texi:30821 msgid "The @code{ovs-vsctl} utility is used for the configuration and its timeout option is set by default to 5 seconds to avoid potential infinite waits blocking libvirt." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30463 +#: guix-git/doc/guix.texi:30828 #, no-wrap msgid "Virtlog daemon" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30466 +#: guix-git/doc/guix.texi:30831 msgid "The virtlogd service is a server side daemon component of libvirt that is used to manage logs from virtual machine consoles." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30472 +#: guix-git/doc/guix.texi:30837 msgid "This daemon is not used directly by libvirt client applications, rather it is called on their behalf by @code{libvirtd}. By maintaining the logs in a standalone daemon, the main @code{libvirtd} daemon can be restarted without risk of losing logs. The @code{virtlogd} daemon has the ability to re-exec() itself upon receiving @code{SIGUSR1}, to allow live upgrades without downtime." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30473 +#: guix-git/doc/guix.texi:30838 #, no-wrap msgid "{Scheme Variable} virtlog-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30476 +#: guix-git/doc/guix.texi:30841 msgid "This is the type of the virtlog daemon. Its value must be a @code{virtlog-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30481 +#: guix-git/doc/guix.texi:30846 #, no-wrap msgid "" "(service virtlog-service-type\n" @@ -55089,122 +55771,122 @@ msgid "" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30484 +#: guix-git/doc/guix.texi:30849 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer log-level" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30491 +#: guix-git/doc/guix.texi:30856 #, no-wrap msgid "{@code{virtlog-configuration} parameter} string log-filters" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30496 +#: guix-git/doc/guix.texi:30861 msgid "A filter allows to select a different logging level for a given category of logs The format for a filter is one of:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30513 +#: guix-git/doc/guix.texi:30878 msgid "where @code{name} is a string which is matched against the category given in the @code{VIR_LOG_INIT()} at the top of each libvirt source file, e.g., \"remote\", \"qemu\", or \"util.json\" (the name in the filter can be a substring of the full category name, in order to match multiple similar categories), the optional \"+\" prefix tells libvirt to log stack trace for each message matching name, and @code{x} is the minimal level where matching messages should be logged:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30536 +#: guix-git/doc/guix.texi:30901 #, no-wrap msgid "{@code{virtlog-configuration} parameter} string log-outputs" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30541 +#: guix-git/doc/guix.texi:30906 msgid "An output is one of the places to save logging information The format for an output can be:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30581 +#: guix-git/doc/guix.texi:30946 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-clients" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30586 +#: guix-git/doc/guix.texi:30951 msgid "Defaults to @samp{1024}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30589 +#: guix-git/doc/guix.texi:30954 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30591 +#: guix-git/doc/guix.texi:30956 msgid "Maximum file size before rolling over." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30593 +#: guix-git/doc/guix.texi:30958 msgid "Defaults to @samp{2MB}" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30596 +#: guix-git/doc/guix.texi:30961 #, no-wrap msgid "{@code{virtlog-configuration} parameter} integer max-backups" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30598 +#: guix-git/doc/guix.texi:30963 msgid "Maximum number of backup files to keep." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:30600 +#: guix-git/doc/guix.texi:30965 msgid "Defaults to @samp{3}" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:30604 +#: guix-git/doc/guix.texi:30969 msgid "transparent-emulation-qemu" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30604 +#: guix-git/doc/guix.texi:30969 #, no-wrap msgid "Transparent Emulation with QEMU" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30606 guix-git/doc/guix.texi:30686 +#: guix-git/doc/guix.texi:30971 guix-git/doc/guix.texi:31051 #, no-wrap msgid "emulation" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:30607 +#: guix-git/doc/guix.texi:30972 #, no-wrap msgid "binfmt_misc" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30615 +#: guix-git/doc/guix.texi:30980 msgid "@code{qemu-binfmt-service-type} provides support for transparent emulation of program binaries built for different architectures---e.g., it allows you to transparently execute an ARMv7 program on an x86_64 machine. It achieves this by combining the @uref{https://www.qemu.org, QEMU} emulator and the @code{binfmt_misc} feature of the kernel Linux. This feature only allows you to emulate GNU/Linux on a different architecture, but see below for GNU/Hurd support." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30616 +#: guix-git/doc/guix.texi:30981 #, no-wrap msgid "{Scheme Variable} qemu-binfmt-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30621 +#: guix-git/doc/guix.texi:30986 msgid "This is the type of the QEMU/binfmt service for transparent emulation. Its value must be a @code{qemu-binfmt-configuration} object, which specifies the QEMU package to use as well as the architecture we want to emulated:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30626 +#: guix-git/doc/guix.texi:30991 #, fuzzy, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -55217,39 +55899,39 @@ msgstr "" " (guix-support? #t)))\n" #. type: defvr -#: guix-git/doc/guix.texi:30632 +#: guix-git/doc/guix.texi:30997 msgid "In this example, we enable transparent emulation for the ARM and aarch64 platforms. Running @code{herd stop qemu-binfmt} turns it off, and running @code{herd start qemu-binfmt} turns it back on (@pxref{Invoking herd, the @command{herd} command,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30634 +#: guix-git/doc/guix.texi:30999 #, no-wrap msgid "{Data Type} qemu-binfmt-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30636 +#: guix-git/doc/guix.texi:31001 msgid "This is the configuration for the @code{qemu-binfmt} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30638 +#: guix-git/doc/guix.texi:31003 #, no-wrap msgid "@code{platforms} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30641 +#: guix-git/doc/guix.texi:31006 msgid "The list of emulated QEMU platforms. Each item must be a @dfn{platform object} as returned by @code{lookup-qemu-platforms} (see below)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30644 +#: guix-git/doc/guix.texi:31009 msgid "For example, let's suppose you're on an x86_64 machine and you have this service:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30649 +#: guix-git/doc/guix.texi:31014 #, fuzzy, no-wrap msgid "" "(service qemu-binfmt-service-type\n" @@ -55262,79 +55944,79 @@ msgstr "" " (guix-support? #t)))\n" #. type: table -#: guix-git/doc/guix.texi:30652 +#: guix-git/doc/guix.texi:31017 msgid "You can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30655 +#: guix-git/doc/guix.texi:31020 #, no-wrap msgid "guix build -s armhf-linux inkscape\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30662 +#: guix-git/doc/guix.texi:31027 msgid "and it will build Inkscape for ARMv7 @emph{as if it were a native build}, transparently using QEMU to emulate the ARMv7 CPU@. Pretty handy if you'd like to test a package build for an architecture you don't have access to!" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30663 +#: guix-git/doc/guix.texi:31028 #, no-wrap msgid "@code{qemu} (default: @code{qemu})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30665 guix-git/doc/guix.texi:30723 -#: guix-git/doc/guix.texi:30805 +#: guix-git/doc/guix.texi:31030 guix-git/doc/guix.texi:31088 +#: guix-git/doc/guix.texi:31170 msgid "The QEMU package to use." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30668 +#: guix-git/doc/guix.texi:31033 #, no-wrap msgid "{Scheme Procedure} lookup-qemu-platforms @var{platforms}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30673 +#: guix-git/doc/guix.texi:31038 msgid "Return the list of QEMU platform objects corresponding to @var{platforms}@dots{}. @var{platforms} must be a list of strings corresponding to platform names, such as @code{\"arm\"}, @code{\"sparc\"}, @code{\"mips64el\"}, and so on." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30675 +#: guix-git/doc/guix.texi:31040 #, no-wrap msgid "{Scheme Procedure} qemu-platform? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30677 +#: guix-git/doc/guix.texi:31042 msgid "Return true if @var{obj} is a platform object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30679 +#: guix-git/doc/guix.texi:31044 #, no-wrap msgid "{Scheme Procedure} qemu-platform-name @var{platform}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:30681 +#: guix-git/doc/guix.texi:31046 msgid "Return the name of @var{platform}---a string such as @code{\"arm\"}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30684 +#: guix-git/doc/guix.texi:31049 #, no-wrap msgid "QEMU Guest Agent" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30692 +#: guix-git/doc/guix.texi:31057 msgid "The QEMU guest agent provides control over the emulated system to the host. The @code{qemu-guest-agent} service runs the agent on Guix guests. To control the agent from the host, open a socket by invoking QEMU with the following arguments:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30699 +#: guix-git/doc/guix.texi:31064 #, no-wrap msgid "" "qemu-system-x86_64 \\\n" @@ -55345,12 +56027,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30703 +#: guix-git/doc/guix.texi:31068 msgid "This creates a socket at @file{/tmp/qga.sock} on the host. Once the guest agent is running, you can issue commands with @code{socat}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30708 +#: guix-git/doc/guix.texi:31073 #, no-wrap msgid "" "$ guix shell socat -- socat unix-connect:/tmp/qga.sock stdio\n" @@ -55359,77 +56041,77 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30712 +#: guix-git/doc/guix.texi:31077 msgid "See @url{https://wiki.qemu.org/Features/GuestAgent,QEMU guest agent documentation} for more options and commands." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30713 +#: guix-git/doc/guix.texi:31078 #, no-wrap msgid "{Scheme Variable} qemu-guest-agent-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30715 +#: guix-git/doc/guix.texi:31080 #, fuzzy #| msgid "Service Types and Services" msgid "Service type for the QEMU guest agent service." msgstr "服务类型和服务" #. type: deftp -#: guix-git/doc/guix.texi:30717 +#: guix-git/doc/guix.texi:31082 #, fuzzy, no-wrap msgid "{Data Type} qemu-guest-agent-configuration" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:30719 +#: guix-git/doc/guix.texi:31084 #, fuzzy msgid "Configuration for the @code{qemu-guest-agent} service." msgstr "管理操作系统配置。" #. type: item -#: guix-git/doc/guix.texi:30721 guix-git/doc/guix.texi:30803 +#: guix-git/doc/guix.texi:31086 guix-git/doc/guix.texi:31168 #, fuzzy, no-wrap msgid "@code{qemu} (default: @code{qemu-minimal})" msgstr "@code{mate}(默认值:@code{mate})" #. type: item -#: guix-git/doc/guix.texi:30724 +#: guix-git/doc/guix.texi:31089 #, fuzzy, no-wrap msgid "@code{device} (default: @code{\"\"})" msgstr "@code{speed}(默认值:@code{1.0})" #. type: table -#: guix-git/doc/guix.texi:30727 +#: guix-git/doc/guix.texi:31092 msgid "File name of the device or socket the agent uses to communicate with the host. If empty, QEMU uses a default file name." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30731 +#: guix-git/doc/guix.texi:31096 #, no-wrap msgid "The Hurd in a Virtual Machine" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30734 +#: guix-git/doc/guix.texi:31099 #, no-wrap msgid "the Hurd" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30735 +#: guix-git/doc/guix.texi:31100 #, no-wrap msgid "childhurd" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30743 +#: guix-git/doc/guix.texi:31108 msgid "Service @code{hurd-vm} provides support for running GNU/Hurd in a virtual machine (VM), a so-called @dfn{childhurd}. This service is meant to be used on GNU/Linux and the given GNU/Hurd operating system configuration is cross-compiled. The virtual machine is a Shepherd service that can be referred to by the names @code{hurd-vm} and @code{childhurd} and be controlled with commands such as:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30747 +#: guix-git/doc/guix.texi:31112 #, no-wrap msgid "" "herd start hurd-vm\n" @@ -55437,50 +56119,50 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30751 +#: guix-git/doc/guix.texi:31116 msgid "When the service is running, you can view its console by connecting to it with a VNC client, for example with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30754 +#: guix-git/doc/guix.texi:31119 #, no-wrap msgid "guix shell tigervnc-client -- vncviewer localhost:5900\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30760 +#: guix-git/doc/guix.texi:31125 msgid "The default configuration (see @code{hurd-vm-configuration} below) spawns a secure shell (SSH) server in your GNU/Hurd system, which QEMU (the virtual machine emulator) redirects to port 10222 on the host. Thus, you can connect over SSH to the childhurd with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30763 +#: guix-git/doc/guix.texi:31128 #, no-wrap msgid "ssh root@@localhost -p 10022\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30772 +#: guix-git/doc/guix.texi:31137 msgid "The childhurd is volatile and stateless: it starts with a fresh root file system every time you restart it. By default though, all the files under @file{/etc/childhurd} on the host are copied as is to the root file system of the childhurd when it boots. This allows you to initialize ``secrets'' inside the VM: SSH host keys, authorized substitute keys, and so on---see the explanation of @code{secret-root} below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30773 +#: guix-git/doc/guix.texi:31138 #, no-wrap msgid "{Scheme Variable} hurd-vm-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30779 +#: guix-git/doc/guix.texi:31144 msgid "This is the type of the Hurd in a Virtual Machine service. Its value must be a @code{hurd-vm-configuration} object, which specifies the operating system (@pxref{operating-system Reference}) and the disk size for the Hurd Virtual Machine, the QEMU package to use as well as the options for running it." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30781 +#: guix-git/doc/guix.texi:31146 msgid "For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30787 +#: guix-git/doc/guix.texi:31152 #, no-wrap msgid "" "(service hurd-vm-service-type\n" @@ -55490,100 +56172,100 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30791 +#: guix-git/doc/guix.texi:31156 msgid "would create a disk image big enough to build GNU@tie{}Hello, with some extra memory." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:30793 +#: guix-git/doc/guix.texi:31158 #, fuzzy, no-wrap msgid "{Data Type} hurd-vm-configuration" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:30796 +#: guix-git/doc/guix.texi:31161 msgid "The data type representing the configuration for @code{hurd-vm-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30798 +#: guix-git/doc/guix.texi:31163 #, fuzzy, no-wrap msgid "@code{os} (default: @var{%hurd-vm-operating-system})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:30802 +#: guix-git/doc/guix.texi:31167 msgid "The operating system to instantiate. This default is bare-bones with a permissive OpenSSH secure shell daemon listening on port 2222 (@pxref{Networking Services, @code{openssh-service-type}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30806 +#: guix-git/doc/guix.texi:31171 #, fuzzy, no-wrap msgid "@code{image} (default: @var{hurd-vm-disk-image})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:30809 +#: guix-git/doc/guix.texi:31174 msgid "The procedure used to build the disk-image built from this configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30810 +#: guix-git/doc/guix.texi:31175 #, fuzzy, no-wrap msgid "@code{disk-size} (default: @code{'guess})" msgstr "@code{max-zone-size}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:30812 +#: guix-git/doc/guix.texi:31177 #, fuzzy msgid "The size of the disk image." msgstr "这个用户手册的许可证。" #. type: item -#: guix-git/doc/guix.texi:30813 +#: guix-git/doc/guix.texi:31178 #, fuzzy, no-wrap msgid "@code{memory-size} (default: @code{512})" msgstr "@code{max-zone-size}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:30815 +#: guix-git/doc/guix.texi:31180 msgid "The memory size of the Virtual Machine in mebibytes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30816 +#: guix-git/doc/guix.texi:31181 #, fuzzy, no-wrap msgid "@code{options} (default: @code{'(\"--snapshot\")})" msgstr "@code{includes}(默认值:@code{'()})" #. type: table -#: guix-git/doc/guix.texi:30818 +#: guix-git/doc/guix.texi:31183 msgid "The extra options for running QEMU." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30823 +#: guix-git/doc/guix.texi:31188 msgid "If set, a non-zero positive integer used to parameterize Childhurd instances. It is appended to the service's name, e.g. @code{childhurd1}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:30824 +#: guix-git/doc/guix.texi:31189 #, no-wrap msgid "@code{net-options} (default: @var{hurd-vm-net-options})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30826 +#: guix-git/doc/guix.texi:31191 msgid "The procedure used to produce the list of QEMU networking options." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30828 +#: guix-git/doc/guix.texi:31193 msgid "By default, it produces" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30836 +#: guix-git/doc/guix.texi:31201 #, no-wrap msgid "" "'(\"--device\" \"rtl8139,netdev=net0\"\n" @@ -55595,12 +56277,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30839 +#: guix-git/doc/guix.texi:31204 msgid "with forwarded ports:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30844 +#: guix-git/doc/guix.texi:31209 #, no-wrap msgid "" "@var{secrets-port}: @code{(+ 11004 (* 1000 @var{ID}))}\n" @@ -55609,28 +56291,28 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:30846 +#: guix-git/doc/guix.texi:31211 #, fuzzy, no-wrap msgid "@code{secret-root} (default: @file{/etc/childhurd})" msgstr "@code{private-key}(默认值:@file{~root/.ssh/id_rsa})" #. type: table -#: guix-git/doc/guix.texi:30851 +#: guix-git/doc/guix.texi:31216 msgid "The root directory with out-of-band secrets to be installed into the childhurd once it runs. Childhurds are volatile which means that on every startup, secrets such as the SSH host keys and Guix signing key are recreated." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30855 +#: guix-git/doc/guix.texi:31220 msgid "If the @file{/etc/childhurd} directory does not exist, the @code{secret-service} running in the Childhurd will be sent an empty list of secrets." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30858 +#: guix-git/doc/guix.texi:31223 msgid "By default, the service automatically populates @file{/etc/childhurd} with the following non-volatile secrets, unless they already exist:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30867 +#: guix-git/doc/guix.texi:31232 #, no-wrap msgid "" "/etc/childhurd/etc/guix/acl\n" @@ -55643,34 +56325,34 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:30871 +#: guix-git/doc/guix.texi:31236 msgid "These files are automatically sent to the guest Hurd VM when it boots, including permissions." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30872 +#: guix-git/doc/guix.texi:31237 #, fuzzy, no-wrap msgid "childhurd, offloading" msgstr "下发" #. type: cindex -#: guix-git/doc/guix.texi:30873 +#: guix-git/doc/guix.texi:31238 #, fuzzy, no-wrap msgid "Hurd, offloading" msgstr "下发" #. type: table -#: guix-git/doc/guix.texi:30877 +#: guix-git/doc/guix.texi:31242 msgid "Having these files in place means that only a couple of things are missing to allow the host to offload @code{i586-gnu} builds to the childhurd:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:30882 +#: guix-git/doc/guix.texi:31247 msgid "Authorizing the childhurd's key on the host so that the host accepts build results coming from the childhurd, which can be done like so:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:30886 +#: guix-git/doc/guix.texi:31251 #, fuzzy, no-wrap msgid "" "guix archive --authorize < \\\n" @@ -55678,22 +56360,22 @@ msgid "" msgstr "# guix archive --authorize < master-public-key.txt\n" #. type: enumerate -#: guix-git/doc/guix.texi:30891 +#: guix-git/doc/guix.texi:31256 msgid "Adding the childhurd to @file{/etc/guix/machines.scm} (@pxref{Daemon Offload Setup})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:30895 +#: guix-git/doc/guix.texi:31260 msgid "We're working towards making that happen automatically---get in touch with us at @email{guix-devel@@gnu.org} to discuss it!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30902 +#: guix-git/doc/guix.texi:31267 msgid "Note that by default the VM image is volatile, i.e., once stopped the contents are lost. If you want a stateful image instead, override the configuration's @code{image} and @code{options} without the @code{--snapshot} flag using something along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30908 +#: guix-git/doc/guix.texi:31273 #, no-wrap msgid "" "(service hurd-vm-service-type\n" @@ -55703,34 +56385,34 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:30910 +#: guix-git/doc/guix.texi:31275 #, no-wrap msgid "Ganeti" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:30912 +#: guix-git/doc/guix.texi:31277 #, no-wrap msgid "ganeti" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:30919 +#: guix-git/doc/guix.texi:31284 msgid "This service is considered experimental. Configuration options may be changed in a backwards-incompatible manner, and not all features have been thorougly tested. Users of this service are encouraged to share their experience at @email{guix-devel@@gnu.org}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30929 +#: guix-git/doc/guix.texi:31294 msgid "Ganeti is a virtual machine management system. It is designed to keep virtual machines running on a cluster of servers even in the event of hardware failures, and to make maintenance and recovery tasks easy. It consists of multiple services which are described later in this section. In addition to the Ganeti service, you will need the OpenSSH service (@pxref{Networking Services, @code{openssh-service-type}}), and update the @file{/etc/hosts} file (@pxref{operating-system Reference, @code{hosts-file}}) with the cluster name and address (or use a DNS server)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30934 +#: guix-git/doc/guix.texi:31299 msgid "All nodes participating in a Ganeti cluster should have the same Ganeti and @file{/etc/hosts} configuration. Here is an example configuration for a Ganeti cluster node that supports multiple storage backends, and installs the @code{debootstrap} and @code{guix} @dfn{OS providers}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30944 +#: guix-git/doc/guix.texi:31309 #, no-wrap msgid "" "(use-package-modules virtualization)\n" @@ -55745,7 +56427,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30949 +#: guix-git/doc/guix.texi:31314 #, no-wrap msgid "" "192.168.1.200 ganeti.example.com\n" @@ -55756,7 +56438,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30970 +#: guix-git/doc/guix.texi:31335 #, no-wrap msgid "" " ;; Install QEMU so we can use KVM-based instances, and LVM, DRBD and Ceph\n" @@ -55783,7 +56465,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30975 +#: guix-git/doc/guix.texi:31340 #, no-wrap msgid "" " ;; Ganeti uses SSH to communicate between nodes.\n" @@ -55794,7 +56476,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:30985 +#: guix-git/doc/guix.texi:31350 #, no-wrap msgid "" " (service ganeti-service-type\n" @@ -55809,120 +56491,120 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:30993 +#: guix-git/doc/guix.texi:31358 msgid "Users are advised to read the @url{http://docs.ganeti.org/ganeti/master/html/admin.html,Ganeti administrators guide} to learn about the various cluster options and day-to-day operations. There is also a @url{https://guix.gnu.org/blog/2020/running-a-ganeti-cluster-on-guix/,blog post} describing how to configure and initialize a small cluster." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30994 +#: guix-git/doc/guix.texi:31359 #, no-wrap msgid "{Scheme Variable} ganeti-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:30997 +#: guix-git/doc/guix.texi:31362 msgid "This is a service type that includes all the various services that Ganeti nodes should run." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31002 +#: guix-git/doc/guix.texi:31367 msgid "Its value is a @code{ganeti-configuration} object that defines the package to use for CLI operations, as well as configuration for the various daemons. Allowed file storage paths and available guest operating systems are also configured through this data type." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31004 +#: guix-git/doc/guix.texi:31369 #, no-wrap msgid "{Data Type} ganeti-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31006 +#: guix-git/doc/guix.texi:31371 msgid "The @code{ganeti} service takes the following configuration options:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31008 guix-git/doc/guix.texi:31236 -#: guix-git/doc/guix.texi:31286 guix-git/doc/guix.texi:31316 -#: guix-git/doc/guix.texi:31343 guix-git/doc/guix.texi:31375 -#: guix-git/doc/guix.texi:31428 guix-git/doc/guix.texi:31448 -#: guix-git/doc/guix.texi:31474 guix-git/doc/guix.texi:31507 -#: guix-git/doc/guix.texi:31547 +#: guix-git/doc/guix.texi:31373 guix-git/doc/guix.texi:31601 +#: guix-git/doc/guix.texi:31651 guix-git/doc/guix.texi:31681 +#: guix-git/doc/guix.texi:31708 guix-git/doc/guix.texi:31740 +#: guix-git/doc/guix.texi:31793 guix-git/doc/guix.texi:31813 +#: guix-git/doc/guix.texi:31839 guix-git/doc/guix.texi:31872 +#: guix-git/doc/guix.texi:31912 #, fuzzy, no-wrap msgid "@code{ganeti} (default: @code{ganeti})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: table -#: guix-git/doc/guix.texi:31013 +#: guix-git/doc/guix.texi:31378 msgid "The @code{ganeti} package to use. It will be installed to the system profile and make @command{gnt-cluster}, @command{gnt-instance}, etc available. Note that the value specified here does not affect the other services as each refer to a specific @code{ganeti} package (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31014 +#: guix-git/doc/guix.texi:31379 #, fuzzy, no-wrap msgid "@code{noded-configuration} (default: @code{(ganeti-noded-configuration)})" msgstr "@code{enlightenment}(默认值:@code{enlightenment})" #. type: itemx -#: guix-git/doc/guix.texi:31015 +#: guix-git/doc/guix.texi:31380 #, fuzzy, no-wrap msgid "@code{confd-configuration} (default: @code{(ganeti-confd-configuration)})" msgstr "@code{journal-content}(默认值:@code{#f})" #. type: itemx -#: guix-git/doc/guix.texi:31016 +#: guix-git/doc/guix.texi:31381 #, no-wrap msgid "@code{wconfd-configuration} (default: @code{(ganeti-wconfd-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31017 +#: guix-git/doc/guix.texi:31382 #, no-wrap msgid "@code{luxid-configuration} (default: @code{(ganeti-luxid-configuration)})" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:31018 +#: guix-git/doc/guix.texi:31383 #, fuzzy, no-wrap msgid "@code{rapi-configuration} (default: @code{(ganeti-rapi-configuration)})" msgstr "@code{journal-content}(默认值:@code{#f})" #. type: itemx -#: guix-git/doc/guix.texi:31019 +#: guix-git/doc/guix.texi:31384 #, fuzzy, no-wrap msgid "@code{kvmd-configuration} (default: @code{(ganeti-kvmd-configuration)})" msgstr "@code{mate}(默认值:@code{mate})" #. type: itemx -#: guix-git/doc/guix.texi:31020 +#: guix-git/doc/guix.texi:31385 #, fuzzy, no-wrap msgid "@code{mond-configuration} (default: @code{(ganeti-mond-configuration)})" msgstr "@code{journal-content}(默认值:@code{#f})" #. type: itemx -#: guix-git/doc/guix.texi:31021 +#: guix-git/doc/guix.texi:31386 #, fuzzy, no-wrap msgid "@code{metad-configuration} (default: @code{(ganeti-metad-configuration)})" msgstr "@code{enlightenment}(默认值:@code{enlightenment})" #. type: itemx -#: guix-git/doc/guix.texi:31022 +#: guix-git/doc/guix.texi:31387 #, fuzzy, no-wrap msgid "@code{watcher-configuration} (default: @code{(ganeti-watcher-configuration)})" msgstr "@code{authentication-hook}(默认值:@code{#f})" #. type: itemx -#: guix-git/doc/guix.texi:31023 +#: guix-git/doc/guix.texi:31388 #, fuzzy, no-wrap msgid "@code{cleaner-configuration} (default: @code{(ganeti-cleaner-configuration)})" msgstr "@code{enlightenment}(默认值:@code{enlightenment})" #. type: table -#: guix-git/doc/guix.texi:31028 +#: guix-git/doc/guix.texi:31393 msgid "These options control the various daemons and cron jobs that are distributed with Ganeti. The possible values for these are described in detail below. To override a setting, you must use the configuration type for that service:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31038 +#: guix-git/doc/guix.texi:31403 #, no-wrap msgid "" "(service ganeti-service-type\n" @@ -55936,34 +56618,34 @@ msgid "" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31040 +#: guix-git/doc/guix.texi:31405 #, fuzzy, no-wrap msgid "@code{file-storage-paths} (default: @code{'()})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:31042 +#: guix-git/doc/guix.texi:31407 msgid "List of allowed directories for file storage backend." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31043 +#: guix-git/doc/guix.texi:31408 #, fuzzy, no-wrap msgid "@code{os} (default: @code{%default-ganeti-os})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: table -#: guix-git/doc/guix.texi:31045 +#: guix-git/doc/guix.texi:31410 msgid "List of @code{} records." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31049 +#: guix-git/doc/guix.texi:31414 msgid "In essence @code{ganeti-service-type} is shorthand for declaring each service individually:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31060 +#: guix-git/doc/guix.texi:31425 #, no-wrap msgid "" "(service ganeti-noded-service-type)\n" @@ -55978,298 +56660,298 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31064 +#: guix-git/doc/guix.texi:31429 msgid "Plus a service extension for @code{etc-service-type} that configures the file storage backend and OS variants." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31067 +#: guix-git/doc/guix.texi:31432 #, fuzzy, no-wrap msgid "{Data Type} ganeti-os" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:31070 +#: guix-git/doc/guix.texi:31435 msgid "This data type is suitable for passing to the @code{os} parameter of @code{ganeti-configuration}. It takes the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31076 +#: guix-git/doc/guix.texi:31441 msgid "The name for this OS provider. It is only used to specify where the configuration ends up. Setting it to ``debootstrap'' will create @file{/etc/ganeti/instance-debootstrap}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:31077 +#: guix-git/doc/guix.texi:31442 #, no-wrap msgid "extension" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31080 +#: guix-git/doc/guix.texi:31445 msgid "The file extension for variants of this OS type. For example @file{.conf} or @file{.scm}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31081 +#: guix-git/doc/guix.texi:31446 #, fuzzy, no-wrap msgid "@code{variants} (default: @code{'()})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:31083 +#: guix-git/doc/guix.texi:31448 msgid "List of @code{ganeti-os-variant} objects for this OS." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31087 +#: guix-git/doc/guix.texi:31452 #, fuzzy, no-wrap msgid "{Data Type} ganeti-os-variant" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:31090 +#: guix-git/doc/guix.texi:31455 msgid "This is the data type for a Ganeti OS variant. It takes the following parameters:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31094 +#: guix-git/doc/guix.texi:31459 #, fuzzy msgid "The name of this variant." msgstr "这个用户手册的许可证。" #. type: code{#1} -#: guix-git/doc/guix.texi:31095 +#: guix-git/doc/guix.texi:31460 #, fuzzy, no-wrap msgid "configuration" msgstr "系统配置" #. type: table -#: guix-git/doc/guix.texi:31097 +#: guix-git/doc/guix.texi:31462 msgid "A configuration file for this variant." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31100 +#: guix-git/doc/guix.texi:31465 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-hooks" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31102 +#: guix-git/doc/guix.texi:31467 msgid "This variable contains hooks to configure networking and the GRUB bootloader." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31104 +#: guix-git/doc/guix.texi:31469 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-extra-pkgs" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31106 +#: guix-git/doc/guix.texi:31471 msgid "This variable contains a list of packages suitable for a fully-virtualized guest." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31108 +#: guix-git/doc/guix.texi:31473 #, no-wrap msgid "{Data Type} debootstrap-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31111 +#: guix-git/doc/guix.texi:31476 msgid "This data type creates configuration files suitable for the debootstrap OS provider." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31113 +#: guix-git/doc/guix.texi:31478 #, fuzzy, no-wrap msgid "@code{hooks} (default: @code{%default-debootstrap-hooks})" msgstr "@code{cleanup-hook}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:31117 +#: guix-git/doc/guix.texi:31482 msgid "When not @code{#f}, this must be a G-expression that specifies a directory with scripts that will run when the OS is installed. It can also be a list of @code{(name . file-like)} pairs. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31120 +#: guix-git/doc/guix.texi:31485 #, no-wrap msgid "`((99-hello-world . ,(plain-file \"#!/bin/sh\\necho Hello, World\")))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31125 +#: guix-git/doc/guix.texi:31490 msgid "That will create a directory with one executable named @code{99-hello-world} and run it every time this variant is installed. If set to @code{#f}, hooks in @file{/etc/ganeti/instance-debootstrap/hooks} will be used, if any." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31125 +#: guix-git/doc/guix.texi:31490 #, fuzzy, no-wrap msgid "@code{proxy} (default: @code{#f})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:31127 +#: guix-git/doc/guix.texi:31492 msgid "Optional HTTP proxy to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31127 +#: guix-git/doc/guix.texi:31492 guix-git/doc/guix.texi:33685 #, fuzzy, no-wrap msgid "@code{mirror} (default: @code{#f})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:31130 +#: guix-git/doc/guix.texi:31495 msgid "The Debian mirror. Typically something like @code{http://ftp.no.debian.org/debian}. The default varies depending on the distribution." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31130 +#: guix-git/doc/guix.texi:31495 #, fuzzy, no-wrap msgid "@code{arch} (default: @code{#f})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:31133 +#: guix-git/doc/guix.texi:31498 msgid "The dpkg architecture. Set to @code{armhf} to debootstrap an ARMv7 instance on an AArch64 host. Default is to use the current system architecture." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31133 +#: guix-git/doc/guix.texi:31498 #, fuzzy, no-wrap msgid "@code{suite} (default: @code{\"stable\"})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:31136 +#: guix-git/doc/guix.texi:31501 msgid "When set, this must be a Debian distribution ``suite'' such as @code{buster} or @code{focal}. If set to @code{#f}, the default for the OS provider is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31136 +#: guix-git/doc/guix.texi:31501 #, no-wrap msgid "@code{extra-pkgs} (default: @code{%default-debootstrap-extra-pkgs})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31139 +#: guix-git/doc/guix.texi:31504 msgid "List of extra packages that will get installed by dpkg in addition to the minimal system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31139 +#: guix-git/doc/guix.texi:31504 #, fuzzy, no-wrap msgid "@code{components} (default: @code{#f})" msgstr "@code{journal-content}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:31142 +#: guix-git/doc/guix.texi:31507 msgid "When set, must be a list of Debian repository ``components''. For example @code{'(\"main\" \"contrib\")}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31142 +#: guix-git/doc/guix.texi:31507 #, fuzzy, no-wrap msgid "@code{generate-cache?} (default: @code{#t})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:31144 +#: guix-git/doc/guix.texi:31509 msgid "Whether to automatically cache the generated debootstrap archive." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31144 +#: guix-git/doc/guix.texi:31509 #, fuzzy, no-wrap msgid "@code{clean-cache} (default: @code{14})" msgstr "@code{cleanup-hook}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:31147 +#: guix-git/doc/guix.texi:31512 msgid "Discard the cache after this amount of days. Use @code{#f} to never clear the cache." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31147 +#: guix-git/doc/guix.texi:31512 #, fuzzy, no-wrap msgid "@code{partition-style} (default: @code{'msdos})" msgstr "@code{compression-level}(默认值:@code{3})" #. type: table -#: guix-git/doc/guix.texi:31150 +#: guix-git/doc/guix.texi:31515 msgid "The type of partition to create. When set, it must be one of @code{'msdos}, @code{'none} or a string." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31150 +#: guix-git/doc/guix.texi:31515 #, fuzzy, no-wrap msgid "@code{partition-alignment} (default: @code{2048})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:31152 +#: guix-git/doc/guix.texi:31517 msgid "Alignment of the partition in sectors." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31155 +#: guix-git/doc/guix.texi:31520 #, no-wrap msgid "{Scheme Procedure} debootstrap-variant @var{name} @var{configuration}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31158 +#: guix-git/doc/guix.texi:31523 msgid "This is a helper procedure that creates a @code{ganeti-os-variant} record. It takes two parameters: a name and a @code{debootstrap-configuration} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31160 +#: guix-git/doc/guix.texi:31525 #, no-wrap msgid "{Scheme Procedure} debootstrap-os @var{variants}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31163 +#: guix-git/doc/guix.texi:31528 msgid "This is a helper procedure that creates a @code{ganeti-os} record. It takes a list of variants created with @code{debootstrap-variant}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31165 +#: guix-git/doc/guix.texi:31530 #, no-wrap msgid "{Scheme Procedure} guix-variant @var{name} @var{configuration}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31170 +#: guix-git/doc/guix.texi:31535 msgid "This is a helper procedure that creates a @code{ganeti-os-variant} record for use with the Guix OS provider. It takes a name and a G-expression that returns a ``file-like'' (@pxref{G-Expressions, file-like objects}) object containing a Guix System configuration." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31172 +#: guix-git/doc/guix.texi:31537 #, no-wrap msgid "{Scheme Procedure} guix-os @var{variants}@dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31175 +#: guix-git/doc/guix.texi:31540 msgid "This is a helper procedure that creates a @code{ganeti-os} record. It takes a list of variants produced by @code{guix-variant}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31177 +#: guix-git/doc/guix.texi:31542 #, no-wrap msgid "{Scheme Variable} %default-debootstrap-variants" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31181 +#: guix-git/doc/guix.texi:31546 msgid "This is a convenience variable to make the debootstrap provider work ``out of the box'' without users having to declare variants manually. It contains a single debootstrap variant with the default configuration:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31186 +#: guix-git/doc/guix.texi:31551 #, no-wrap msgid "" "(list (debootstrap-variant\n" @@ -56278,18 +56960,18 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31189 +#: guix-git/doc/guix.texi:31554 #, no-wrap msgid "{Scheme Variable} %default-guix-variants" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31193 +#: guix-git/doc/guix.texi:31558 msgid "This is a convenience variable to make the Guix OS provider work without additional configuration. It creates a virtual machine that has an SSH server, a serial console, and authorizes the Ganeti hosts SSH keys." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31199 +#: guix-git/doc/guix.texi:31564 #, no-wrap msgid "" "(list (guix-variant\n" @@ -56299,12 +56981,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31205 +#: guix-git/doc/guix.texi:31570 msgid "Users can implement support for OS providers unbeknownst to Guix by extending the @code{ganeti-os} and @code{ganeti-os-variant} records appropriately. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31214 +#: guix-git/doc/guix.texi:31579 #, no-wrap msgid "" "(ganeti-os\n" @@ -56317,727 +56999,727 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31219 +#: guix-git/doc/guix.texi:31584 msgid "That creates @file{/etc/ganeti/instance-custom/variants/foo.conf} which points to a file in the store with contents @code{this is fine}. It also creates @file{/etc/ganeti/instance-custom/variants/variants.list} with contents @code{foo}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31222 +#: guix-git/doc/guix.texi:31587 msgid "Obviously this may not work for all OS providers out there. If you find the interface limiting, please reach out to @email{guix-devel@@gnu.org}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31225 +#: guix-git/doc/guix.texi:31590 msgid "The rest of this section documents the various services that are included by @code{ganeti-service-type}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31226 +#: guix-git/doc/guix.texi:31591 #, no-wrap msgid "{Scheme Variable} ganeti-noded-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31230 +#: guix-git/doc/guix.texi:31595 msgid "@command{ganeti-noded} is the daemon responsible for node-specific functions within the Ganeti system. The value of this service must be a @code{ganeti-noded-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31232 +#: guix-git/doc/guix.texi:31597 #, no-wrap msgid "{Data Type} ganeti-noded-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31234 +#: guix-git/doc/guix.texi:31599 msgid "This is the configuration for the @code{ganeti-noded} service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31238 guix-git/doc/guix.texi:31288 -#: guix-git/doc/guix.texi:31318 guix-git/doc/guix.texi:31345 -#: guix-git/doc/guix.texi:31377 guix-git/doc/guix.texi:31430 -#: guix-git/doc/guix.texi:31450 guix-git/doc/guix.texi:31476 -#: guix-git/doc/guix.texi:31509 +#: guix-git/doc/guix.texi:31603 guix-git/doc/guix.texi:31653 +#: guix-git/doc/guix.texi:31683 guix-git/doc/guix.texi:31710 +#: guix-git/doc/guix.texi:31742 guix-git/doc/guix.texi:31795 +#: guix-git/doc/guix.texi:31815 guix-git/doc/guix.texi:31841 +#: guix-git/doc/guix.texi:31874 msgid "The @code{ganeti} package to use for this service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31239 +#: guix-git/doc/guix.texi:31604 #, fuzzy, no-wrap msgid "@code{port} (default: @code{1811})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:31241 +#: guix-git/doc/guix.texi:31606 msgid "The TCP port on which the node daemon listens for network requests." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31242 guix-git/doc/guix.texi:31292 -#: guix-git/doc/guix.texi:31384 guix-git/doc/guix.texi:31454 +#: guix-git/doc/guix.texi:31607 guix-git/doc/guix.texi:31657 +#: guix-git/doc/guix.texi:31749 guix-git/doc/guix.texi:31819 #, fuzzy, no-wrap msgid "@code{address} (default: @code{\"0.0.0.0\"})" msgstr "@code{display}(默认值:@code{\":0\"})" #. type: table -#: guix-git/doc/guix.texi:31245 +#: guix-git/doc/guix.texi:31610 msgid "The network address that the daemon will bind to. The default address means bind to all available addresses." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31249 +#: guix-git/doc/guix.texi:31614 msgid "When this is set, it must be a specific network interface (e.g.@: @code{eth0}) that the daemon will bind to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31250 guix-git/doc/guix.texi:31392 +#: guix-git/doc/guix.texi:31615 guix-git/doc/guix.texi:31757 #, fuzzy, no-wrap msgid "@code{max-clients} (default: @code{20})" msgstr "@code{max-zone-size}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:31254 +#: guix-git/doc/guix.texi:31619 msgid "This sets a limit on the maximum number of simultaneous client connections that the daemon will handle. Connections above this count are accepted, but no responses will be sent until enough connections have closed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31255 guix-git/doc/guix.texi:31397 +#: guix-git/doc/guix.texi:31620 guix-git/doc/guix.texi:31762 #, fuzzy, no-wrap msgid "@code{ssl?} (default: @code{#t})" msgstr "@code{dnssec-policy}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:31259 +#: guix-git/doc/guix.texi:31624 msgid "Whether to use SSL/TLS to encrypt network communications. The certificate is automatically provisioned by the cluster and can be rotated with @command{gnt-cluster renew-crypto}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31260 guix-git/doc/guix.texi:31400 +#: guix-git/doc/guix.texi:31625 guix-git/doc/guix.texi:31765 #, fuzzy, no-wrap msgid "@code{ssl-key} (default: @file{\"/var/lib/ganeti/server.pem\"})" msgstr "@code{daemon-socket}(默认值:@code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:31262 guix-git/doc/guix.texi:31402 +#: guix-git/doc/guix.texi:31627 guix-git/doc/guix.texi:31767 msgid "This can be used to provide a specific encryption key for TLS communications." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31263 guix-git/doc/guix.texi:31403 +#: guix-git/doc/guix.texi:31628 guix-git/doc/guix.texi:31768 #, fuzzy, no-wrap msgid "@code{ssl-cert} (default: @file{\"/var/lib/ganeti/server.pem\"})" msgstr "@code{daemon-socket}(默认值:@code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:31265 guix-git/doc/guix.texi:31405 +#: guix-git/doc/guix.texi:31630 guix-git/doc/guix.texi:31770 msgid "This can be used to provide a specific certificate for TLS communications." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31269 guix-git/doc/guix.texi:31409 +#: guix-git/doc/guix.texi:31634 guix-git/doc/guix.texi:31774 msgid "When true, the daemon performs additional logging for debugging purposes. Note that this will leak encryption details to the log files, use with caution." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31273 +#: guix-git/doc/guix.texi:31638 #, no-wrap msgid "{Scheme Variable} ganeti-confd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31279 +#: guix-git/doc/guix.texi:31644 msgid "@command{ganeti-confd} answers queries related to the configuration of a Ganeti cluster. The purpose of this daemon is to have a highly available and fast way to query cluster configuration values. It is automatically active on all @dfn{master candidates}. The value of this service must be a @code{ganeti-confd-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31282 +#: guix-git/doc/guix.texi:31647 #, no-wrap msgid "{Data Type} ganeti-confd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31284 +#: guix-git/doc/guix.texi:31649 msgid "This is the configuration for the @code{ganeti-confd} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31289 +#: guix-git/doc/guix.texi:31654 #, fuzzy, no-wrap msgid "@code{port} (default: @code{1814})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:31291 +#: guix-git/doc/guix.texi:31656 msgid "The UDP port on which to listen for network requests." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31294 +#: guix-git/doc/guix.texi:31659 msgid "Network address that the daemon will bind to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31297 guix-git/doc/guix.texi:31326 -#: guix-git/doc/guix.texi:31353 guix-git/doc/guix.texi:31433 -#: guix-git/doc/guix.texi:31460 guix-git/doc/guix.texi:31486 +#: guix-git/doc/guix.texi:31662 guix-git/doc/guix.texi:31691 +#: guix-git/doc/guix.texi:31718 guix-git/doc/guix.texi:31798 +#: guix-git/doc/guix.texi:31825 guix-git/doc/guix.texi:31851 msgid "When true, the daemon performs additional logging for debugging purposes." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31301 +#: guix-git/doc/guix.texi:31666 #, no-wrap msgid "{Scheme Variable} ganeti-wconfd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31307 +#: guix-git/doc/guix.texi:31672 msgid "@command{ganeti-wconfd} is the daemon that has authoritative knowledge about the cluster configuration and is the only entity that can accept changes to it. All jobs that need to modify the configuration will do so by sending appropriate requests to this daemon. It only runs on the @dfn{master node} and will automatically disable itself on other nodes." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31310 +#: guix-git/doc/guix.texi:31675 msgid "The value of this service must be a @code{ganeti-wconfd-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31312 +#: guix-git/doc/guix.texi:31677 #, no-wrap msgid "{Data Type} ganeti-wconfd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31314 +#: guix-git/doc/guix.texi:31679 msgid "This is the configuration for the @code{ganeti-wconfd} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31319 guix-git/doc/guix.texi:31346 +#: guix-git/doc/guix.texi:31684 guix-git/doc/guix.texi:31711 #, fuzzy, no-wrap msgid "@code{no-voting?} (default: @code{#f})" msgstr "@code{journal-content}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:31323 +#: guix-git/doc/guix.texi:31688 msgid "The daemon will refuse to start if the majority of cluster nodes does not agree that it is running on the master node. Set to @code{#t} to start even if a quorum can not be reached (dangerous, use with caution)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31330 +#: guix-git/doc/guix.texi:31695 #, no-wrap msgid "{Scheme Variable} ganeti-luxid-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31335 +#: guix-git/doc/guix.texi:31700 msgid "@command{ganeti-luxid} is a daemon used to answer queries related to the configuration and the current live state of a Ganeti cluster. Additionally, it is the authoritative daemon for the Ganeti job queue. Jobs can be submitted via this daemon and it schedules and starts them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31337 +#: guix-git/doc/guix.texi:31702 msgid "It takes a @code{ganeti-luxid-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31339 +#: guix-git/doc/guix.texi:31704 #, fuzzy, no-wrap msgid "{Data Type} ganeti-luxid-configuration" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:31341 +#: guix-git/doc/guix.texi:31706 #, fuzzy msgid "This is the configuration for the @code{ganeti-luxid} service." msgstr "管理操作系统配置。" #. type: table -#: guix-git/doc/guix.texi:31350 +#: guix-git/doc/guix.texi:31715 msgid "The daemon will refuse to start if it cannot verify that the majority of cluster nodes believes that it is running on the master node. Set to @code{#t} to ignore such checks and start anyway (this can be dangerous)." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31357 +#: guix-git/doc/guix.texi:31722 #, no-wrap msgid "{Scheme Variable} ganeti-rapi-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31361 +#: guix-git/doc/guix.texi:31726 msgid "@command{ganeti-rapi} provides a remote API for Ganeti clusters. It runs on the master node and can be used to perform cluster actions programmatically via a JSON-based RPC protocol." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31367 +#: guix-git/doc/guix.texi:31732 msgid "Most query operations are allowed without authentication (unless @var{require-authentication?} is set), whereas write operations require explicit authorization via the @file{/var/lib/ganeti/rapi/users} file. See the @url{http://docs.ganeti.org/ganeti/master/html/rapi.html, Ganeti Remote API documentation} for more information." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31369 +#: guix-git/doc/guix.texi:31734 msgid "The value of this service must be a @code{ganeti-rapi-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31371 +#: guix-git/doc/guix.texi:31736 #, no-wrap msgid "{Data Type} ganeti-rapi-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31373 +#: guix-git/doc/guix.texi:31738 msgid "This is the configuration for the @code{ganeti-rapi} service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31378 +#: guix-git/doc/guix.texi:31743 #, fuzzy, no-wrap msgid "@code{require-authentication?} (default: @code{#f})" msgstr "@code{authentication-hook}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:31380 +#: guix-git/doc/guix.texi:31745 msgid "Whether to require authentication even for read-only operations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31381 +#: guix-git/doc/guix.texi:31746 #, fuzzy, no-wrap msgid "@code{port} (default: @code{5080})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:31383 +#: guix-git/doc/guix.texi:31748 msgid "The TCP port on which to listen to API requests." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31387 +#: guix-git/doc/guix.texi:31752 msgid "The network address that the service will bind to. By default it listens on all configured addresses." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31391 +#: guix-git/doc/guix.texi:31756 msgid "When set, it must specify a specific network interface such as @code{eth0} that the daemon will bind to." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31396 +#: guix-git/doc/guix.texi:31761 msgid "The maximum number of simultaneous client requests to handle. Further connections are allowed, but no responses are sent until enough connections have closed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31399 +#: guix-git/doc/guix.texi:31764 msgid "Whether to use SSL/TLS encryption on the RAPI port." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31413 +#: guix-git/doc/guix.texi:31778 #, no-wrap msgid "{Scheme Variable} ganeti-kvmd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31421 +#: guix-git/doc/guix.texi:31786 msgid "@command{ganeti-kvmd} is responsible for determining whether a given KVM instance was shut down by an administrator or a user. Normally Ganeti will restart an instance that was not stopped through Ganeti itself. If the cluster option @code{user_shutdown} is true, this daemon monitors the @code{QMP} socket provided by QEMU and listens for shutdown events, and marks the instance as @dfn{USER_down} instead of @dfn{ERROR_down} when it shuts down gracefully by itself." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31423 +#: guix-git/doc/guix.texi:31788 msgid "It takes a @code{ganeti-kvmd-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31425 +#: guix-git/doc/guix.texi:31790 #, no-wrap msgid "{Data Type} ganeti-kvmd-configuration" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31437 +#: guix-git/doc/guix.texi:31802 #, no-wrap msgid "{Scheme Variable} ganeti-mond-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31441 +#: guix-git/doc/guix.texi:31806 msgid "@command{ganeti-mond} is an optional daemon that provides Ganeti monitoring functionality. It is responsible for running data collectors and publish the collected information through a HTTP interface." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31443 +#: guix-git/doc/guix.texi:31808 msgid "It takes a @code{ganeti-mond-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31445 +#: guix-git/doc/guix.texi:31810 #, no-wrap msgid "{Data Type} ganeti-mond-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31451 +#: guix-git/doc/guix.texi:31816 #, fuzzy, no-wrap msgid "@code{port} (default: @code{1815})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:31453 guix-git/doc/guix.texi:31479 +#: guix-git/doc/guix.texi:31818 guix-git/doc/guix.texi:31844 msgid "The port on which the daemon will listen." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31457 +#: guix-git/doc/guix.texi:31822 msgid "The network address that the daemon will bind to. By default it binds to all available interfaces." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31464 +#: guix-git/doc/guix.texi:31829 #, no-wrap msgid "{Scheme Variable} ganeti-metad-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31467 +#: guix-git/doc/guix.texi:31832 msgid "@command{ganeti-metad} is an optional daemon that can be used to provide information about the cluster to instances or OS install scripts." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31469 +#: guix-git/doc/guix.texi:31834 msgid "It takes a @code{ganeti-metad-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31471 +#: guix-git/doc/guix.texi:31836 #, fuzzy, no-wrap msgid "{Data Type} ganeti-metad-configuration" msgstr "{数据类型} build-machine" #. type: table -#: guix-git/doc/guix.texi:31483 +#: guix-git/doc/guix.texi:31848 msgid "If set, the daemon will bind to this address only. If left unset, the behavior depends on the cluster configuration." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31490 +#: guix-git/doc/guix.texi:31855 #, no-wrap msgid "{Scheme Variable} ganeti-watcher-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31498 +#: guix-git/doc/guix.texi:31863 msgid "@command{ganeti-watcher} is a script designed to run periodically and ensure the health of a cluster. It will automatically restart instances that have stopped without Ganeti's consent, and repairs DRBD links in case a node has rebooted. It also archives old cluster jobs and restarts Ganeti daemons that are not running. If the cluster parameter @code{ensure_node_health} is set, the watcher will also shutdown instances and DRBD devices if the node it is running on is declared offline by known master candidates." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31500 +#: guix-git/doc/guix.texi:31865 msgid "It can be paused on all nodes with @command{gnt-cluster watcher pause}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31502 +#: guix-git/doc/guix.texi:31867 msgid "The service takes a @code{ganeti-watcher-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31504 +#: guix-git/doc/guix.texi:31869 #, no-wrap msgid "{Data Type} ganeti-watcher-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31510 +#: guix-git/doc/guix.texi:31875 #, no-wrap msgid "@code{schedule} (default: @code{'(next-second-from (next-minute (range 0 60 5)))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31512 +#: guix-git/doc/guix.texi:31877 msgid "How often to run the script. The default is every five minutes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31513 +#: guix-git/doc/guix.texi:31878 #, fuzzy, no-wrap msgid "@code{rapi-ip} (default: @code{#f})" msgstr "@code{cleanup-hook}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:31516 +#: guix-git/doc/guix.texi:31881 msgid "This option needs to be specified only if the RAPI daemon is configured to use a particular interface or address. By default the cluster address is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31517 +#: guix-git/doc/guix.texi:31882 #, fuzzy, no-wrap msgid "@code{job-age} (default: @code{(* 6 3600)})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:31520 +#: guix-git/doc/guix.texi:31885 msgid "Archive cluster jobs older than this age, specified in seconds. The default is 6 hours. This keeps @command{gnt-job list} manageable." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31521 +#: guix-git/doc/guix.texi:31886 #, fuzzy, no-wrap msgid "@code{verify-disks?} (default: @code{#t})" msgstr "@code{zonefile-load}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:31525 +#: guix-git/doc/guix.texi:31890 msgid "If this is @code{#f}, the watcher will not try to repair broken DRBD links automatically. Administrators will need to use @command{gnt-cluster verify-disks} manually instead." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31528 +#: guix-git/doc/guix.texi:31893 msgid "When @code{#t}, the script performs additional logging for debugging purposes." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31532 +#: guix-git/doc/guix.texi:31897 #, no-wrap msgid "{Scheme Variable} ganeti-cleaner-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31540 +#: guix-git/doc/guix.texi:31905 msgid "@command{ganeti-cleaner} is a script designed to run periodically and remove old files from the cluster. This service type controls two @dfn{cron jobs}: one intended for the master node that permanently purges old cluster jobs, and one intended for every node that removes expired X509 certificates, keys, and outdated @command{ganeti-watcher} information. Like all Ganeti services, it is safe to include even on non-master nodes as it will disable itself as necessary." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:31542 +#: guix-git/doc/guix.texi:31907 msgid "It takes a @code{ganeti-cleaner-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31544 +#: guix-git/doc/guix.texi:31909 #, no-wrap msgid "{Data Type} ganeti-cleaner-configuration" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31549 +#: guix-git/doc/guix.texi:31914 msgid "The @code{ganeti} package to use for the @command{gnt-cleaner} command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31550 +#: guix-git/doc/guix.texi:31915 #, fuzzy, no-wrap msgid "@code{master-schedule} (default: @code{\"45 1 * * *\"})" msgstr "@code{speed}(默认值:@code{1.0})" #. type: table -#: guix-git/doc/guix.texi:31553 +#: guix-git/doc/guix.texi:31918 msgid "How often to run the master cleaning job. The default is once per day, at 01:45:00." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31554 +#: guix-git/doc/guix.texi:31919 #, fuzzy, no-wrap msgid "@code{node-schedule} (default: @code{\"45 2 * * *\"})" msgstr "@code{display}(默认值:@code{\":0\"})" #. type: table -#: guix-git/doc/guix.texi:31557 +#: guix-git/doc/guix.texi:31922 msgid "How often to run the node cleaning job. The default is once per day, at 02:45:00." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31571 +#: guix-git/doc/guix.texi:31936 msgid "The @code{(gnu services version-control)} module provides a service to allow remote access to local Git repositories. There are three options: the @code{git-daemon-service}, which provides access to repositories via the @code{git://} unsecured TCP-based protocol, extending the @code{nginx} web server to proxy some requests to @code{git-http-backend}, or providing a web interface with @code{cgit-service-type}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31572 +#: guix-git/doc/guix.texi:31937 #, no-wrap msgid "{Scheme Procedure} git-daemon-service [#:config (git-daemon-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31576 +#: guix-git/doc/guix.texi:31941 msgid "Return a service that runs @command{git daemon}, a simple TCP server to expose repositories over the Git protocol for anonymous access." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31582 +#: guix-git/doc/guix.texi:31947 msgid "The optional @var{config} argument should be a @code{} object, by default it allows read-only access to exported@footnote{By creating the magic file @file{git-daemon-export-ok} in the repository directory.} repositories under @file{/srv/git}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31585 +#: guix-git/doc/guix.texi:31950 #, no-wrap msgid "{Data Type} git-daemon-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31587 +#: guix-git/doc/guix.texi:31952 msgid "Data type representing the configuration for @code{git-daemon-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31589 +#: guix-git/doc/guix.texi:31954 #, fuzzy, no-wrap msgid "@code{package} (default: @code{git})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:31591 guix-git/doc/guix.texi:31651 +#: guix-git/doc/guix.texi:31956 guix-git/doc/guix.texi:32016 msgid "Package object of the Git distributed version control system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31592 guix-git/doc/guix.texi:31655 +#: guix-git/doc/guix.texi:31957 guix-git/doc/guix.texi:32020 #, fuzzy, no-wrap msgid "@code{export-all?} (default: @code{#f})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:31595 +#: guix-git/doc/guix.texi:31960 msgid "Whether to allow access for all Git repositories, even if they do not have the @file{git-daemon-export-ok} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31596 +#: guix-git/doc/guix.texi:31961 #, no-wrap msgid "@code{base-path} (default: @file{/srv/git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31602 +#: guix-git/doc/guix.texi:31967 msgid "Whether to remap all the path requests as relative to the given path. If you run @command{git daemon} with @code{(base-path \"/srv/git\")} on @samp{example.com}, then if you later try to pull @indicateurl{git://example.com/hello.git}, git daemon will interpret the path as @file{/srv/git/hello.git}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31603 +#: guix-git/doc/guix.texi:31968 #, fuzzy, no-wrap msgid "@code{user-path} (default: @code{#f})" msgstr "@code{max-journal-depth}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:31611 +#: guix-git/doc/guix.texi:31976 msgid "Whether to allow @code{~user} notation to be used in requests. When specified with empty string, requests to @indicateurl{git://host/~alice/foo} is taken as a request to access @code{foo} repository in the home directory of user @code{alice}. If @code{(user-path \"@var{path}\")} is specified, the same request is taken as a request to access @file{@var{path}/foo} repository in the home directory of user @code{alice}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31612 +#: guix-git/doc/guix.texi:31977 #, fuzzy, no-wrap msgid "@code{listen} (default: @code{'()})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:31615 +#: guix-git/doc/guix.texi:31980 msgid "Whether to listen on specific IP addresses or hostnames, defaults to all." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31616 +#: guix-git/doc/guix.texi:31981 #, fuzzy, no-wrap msgid "@code{port} (default: @code{#f})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:31618 +#: guix-git/doc/guix.texi:31983 msgid "Whether to listen on an alternative port, which defaults to 9418." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31619 +#: guix-git/doc/guix.texi:31984 #, fuzzy, no-wrap msgid "@code{whitelist} (default: @code{'()})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:31621 +#: guix-git/doc/guix.texi:31986 msgid "If not empty, only allow access to this list of directories." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31625 +#: guix-git/doc/guix.texi:31990 msgid "Extra options will be passed to @command{git daemon}, please run @command{man git-daemon} for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31639 +#: guix-git/doc/guix.texi:32004 msgid "The @code{git://} protocol lacks authentication. When you pull from a repository fetched via @code{git://}, you don't know whether the data you receive was modified or is even coming from the specified host, and your connection is subject to eavesdropping. It's better to use an authenticated and encrypted transport, such as @code{https}. Although Git allows you to serve repositories using unsophisticated file-based web servers, there is a faster protocol implemented by the @code{git-http-backend} program. This program is the back-end of a proper Git web service. It is designed to sit behind a FastCGI proxy. @xref{Web Services}, for more on running the necessary @code{fcgiwrap} daemon." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31642 +#: guix-git/doc/guix.texi:32007 msgid "Guix has a separate configuration data type for serving Git repositories over HTTP." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31643 +#: guix-git/doc/guix.texi:32008 #, no-wrap msgid "{Data Type} git-http-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:31647 +#: guix-git/doc/guix.texi:32012 msgid "Data type representing the configuration for a future @code{git-http-service-type}; can currently be used to configure Nginx through @code{git-http-nginx-location-configuration}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31649 +#: guix-git/doc/guix.texi:32014 #, no-wrap msgid "@code{package} (default: @var{git})" msgstr "" #. type: item -#: guix-git/doc/guix.texi:31652 +#: guix-git/doc/guix.texi:32017 #, no-wrap msgid "@code{git-root} (default: @file{/srv/git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31654 +#: guix-git/doc/guix.texi:32019 msgid "Directory containing the Git repositories to expose to the world." msgstr "" #. type: table -#: guix-git/doc/guix.texi:31658 +#: guix-git/doc/guix.texi:32023 msgid "Whether to expose access for all Git repositories in @var{git-root}, even if they do not have the @file{git-daemon-export-ok} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31659 +#: guix-git/doc/guix.texi:32024 #, fuzzy, no-wrap msgid "@code{uri-path} (default: @samp{/git/})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:31664 +#: guix-git/doc/guix.texi:32029 msgid "Path prefix for Git access. With the default @samp{/git/} prefix, this will map @indicateurl{http://@var{server}/git/@var{repo}.git} to @file{/srv/git/@var{repo}.git}. Requests whose URI paths do not begin with this prefix are not passed on to this Git instance." msgstr "" #. type: item -#: guix-git/doc/guix.texi:31665 +#: guix-git/doc/guix.texi:32030 #, no-wrap msgid "@code{fcgiwrap-socket} (default: @code{127.0.0.1:9000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:31668 +#: guix-git/doc/guix.texi:32033 msgid "The socket on which the @code{fcgiwrap} daemon is listening. @xref{Web Services}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31675 +#: guix-git/doc/guix.texi:32040 msgid "There is no @code{git-http-service-type}, currently; instead you can create an @code{nginx-location-configuration} from a @code{git-http-configuration} and then add that location to a web server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31676 +#: guix-git/doc/guix.texi:32041 #, no-wrap msgid "{Scheme Procedure} git-http-nginx-location-configuration @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31681 +#: guix-git/doc/guix.texi:32046 msgid "[config=(git-http-configuration)] Compute an @code{nginx-location-configuration} that corresponds to the given Git http configuration. An example nginx service definition to serve the default @file{/srv/git} over HTTPS might be:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31698 +#: guix-git/doc/guix.texi:32063 #, no-wrap msgid "" "(service nginx-service-type\n" @@ -57058,1409 +57740,1414 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:31705 +#: guix-git/doc/guix.texi:32070 msgid "This example assumes that you are using Let's Encrypt to get your TLS certificate. @xref{Certificate Services}. The default @code{certbot} service will redirect all HTTP traffic on @code{git.my-host.org} to HTTPS@. You will also need to add an @code{fcgiwrap} proxy to your system services. @xref{Web Services}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:31707 +#: guix-git/doc/guix.texi:32072 #, no-wrap msgid "Cgit Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:31709 +#: guix-git/doc/guix.texi:32074 #, no-wrap msgid "Cgit service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:31710 +#: guix-git/doc/guix.texi:32075 #, no-wrap msgid "Git, web interface" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31713 +#: guix-git/doc/guix.texi:32078 msgid "@uref{https://git.zx2c4.com/cgit/, Cgit} is a web frontend for Git repositories written in C." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31716 +#: guix-git/doc/guix.texi:32081 msgid "The following example will configure the service with default values. By default, Cgit can be accessed on port 80 (@code{http://localhost:80})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:31719 +#: guix-git/doc/guix.texi:32084 #, no-wrap msgid "(service cgit-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31723 +#: guix-git/doc/guix.texi:32088 msgid "The @code{file-object} type designates either a file-like object (@pxref{G-Expressions, file-like objects}) or a string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:31727 +#: guix-git/doc/guix.texi:32092 msgid "Available @code{cgit-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31728 +#: guix-git/doc/guix.texi:32093 #, no-wrap msgid "{@code{cgit-configuration} parameter} package package" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31730 +#: guix-git/doc/guix.texi:32095 msgid "The CGIT package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31733 +#: guix-git/doc/guix.texi:32098 #, no-wrap msgid "{@code{cgit-configuration} parameter} nginx-server-configuration-list nginx" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31738 +#: guix-git/doc/guix.texi:32100 +msgid "NGINX configuration." +msgstr "" + +#. type: deftypevr +#: guix-git/doc/guix.texi:32103 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object about-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31741 +#: guix-git/doc/guix.texi:32106 msgid "Specifies a command which will be invoked to format the content of about pages (both top-level and for each repository)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31746 +#: guix-git/doc/guix.texi:32111 #, no-wrap msgid "{@code{cgit-configuration} parameter} string agefile" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31749 +#: guix-git/doc/guix.texi:32114 msgid "Specifies a path, relative to each repository path, which can be used to specify the date and time of the youngest commit in the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31754 +#: guix-git/doc/guix.texi:32119 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object auth-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31757 +#: guix-git/doc/guix.texi:32122 msgid "Specifies a command that will be invoked for authenticating repository access." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31762 +#: guix-git/doc/guix.texi:32127 #, no-wrap msgid "{@code{cgit-configuration} parameter} string branch-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31765 +#: guix-git/doc/guix.texi:32130 msgid "Flag which, when set to @samp{age}, enables date ordering in the branch ref list, and when set @samp{name} enables ordering by branch name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31767 +#: guix-git/doc/guix.texi:32132 msgid "Defaults to @samp{\"name\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31770 +#: guix-git/doc/guix.texi:32135 #, no-wrap msgid "{@code{cgit-configuration} parameter} string cache-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31772 +#: guix-git/doc/guix.texi:32137 msgid "Path used to store the cgit cache entries." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31774 +#: guix-git/doc/guix.texi:32139 msgid "Defaults to @samp{\"/var/cache/cgit\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31777 +#: guix-git/doc/guix.texi:32142 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-static-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31780 +#: guix-git/doc/guix.texi:32145 msgid "Number which specifies the time-to-live, in minutes, for the cached version of repository pages accessed with a fixed SHA1." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31782 guix-git/doc/guix.texi:32225 +#: guix-git/doc/guix.texi:32147 guix-git/doc/guix.texi:32590 msgid "Defaults to @samp{-1}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31785 +#: guix-git/doc/guix.texi:32150 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-dynamic-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31788 +#: guix-git/doc/guix.texi:32153 msgid "Number which specifies the time-to-live, in minutes, for the cached version of repository pages accessed without a fixed SHA1." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31793 +#: guix-git/doc/guix.texi:32158 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-repo-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31796 +#: guix-git/doc/guix.texi:32161 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository summary page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31801 +#: guix-git/doc/guix.texi:32166 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-root-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31804 +#: guix-git/doc/guix.texi:32169 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31809 +#: guix-git/doc/guix.texi:32174 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-scanrc-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31812 +#: guix-git/doc/guix.texi:32177 msgid "Number which specifies the time-to-live, in minutes, for the result of scanning a path for Git repositories." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31817 +#: guix-git/doc/guix.texi:32182 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-about-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31820 +#: guix-git/doc/guix.texi:32185 msgid "Number which specifies the time-to-live, in minutes, for the cached version of the repository about page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31825 +#: guix-git/doc/guix.texi:32190 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-snapshot-ttl" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31828 +#: guix-git/doc/guix.texi:32193 msgid "Number which specifies the time-to-live, in minutes, for the cached version of snapshots." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31833 +#: guix-git/doc/guix.texi:32198 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer cache-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31836 +#: guix-git/doc/guix.texi:32201 msgid "The maximum number of entries in the cgit cache. When set to @samp{0}, caching is disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31841 +#: guix-git/doc/guix.texi:32206 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean case-sensitive-sort?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31843 +#: guix-git/doc/guix.texi:32208 msgid "Sort items in the repo list case sensitively." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31848 +#: guix-git/doc/guix.texi:32213 #, no-wrap msgid "{@code{cgit-configuration} parameter} list clone-prefix" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31851 +#: guix-git/doc/guix.texi:32216 msgid "List of common prefixes which, when combined with a repository URL, generates valid clone URLs for the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31856 +#: guix-git/doc/guix.texi:32221 #, no-wrap msgid "{@code{cgit-configuration} parameter} list clone-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31858 +#: guix-git/doc/guix.texi:32223 msgid "List of @code{clone-url} templates." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31863 +#: guix-git/doc/guix.texi:32228 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object commit-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31865 +#: guix-git/doc/guix.texi:32230 msgid "Command which will be invoked to format commit messages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31870 +#: guix-git/doc/guix.texi:32235 #, no-wrap msgid "{@code{cgit-configuration} parameter} string commit-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31874 guix-git/doc/guix.texi:32432 +#: guix-git/doc/guix.texi:32239 guix-git/doc/guix.texi:32797 msgid "Flag which, when set to @samp{date}, enables strict date ordering in the commit log, and when set to @samp{topo} enables strict topological ordering." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31876 +#: guix-git/doc/guix.texi:32241 msgid "Defaults to @samp{\"git log\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31879 +#: guix-git/doc/guix.texi:32244 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object css" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31881 +#: guix-git/doc/guix.texi:32246 msgid "URL which specifies the css document to include in all cgit pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31883 +#: guix-git/doc/guix.texi:32248 msgid "Defaults to @samp{\"/share/cgit/cgit.css\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31886 +#: guix-git/doc/guix.texi:32251 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object email-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31890 +#: guix-git/doc/guix.texi:32255 msgid "Specifies a command which will be invoked to format names and email address of committers, authors, and taggers, as represented in various places throughout the cgit interface." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31895 +#: guix-git/doc/guix.texi:32260 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean embedded?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31898 +#: guix-git/doc/guix.texi:32263 msgid "Flag which, when set to @samp{#t}, will make cgit generate a HTML fragment suitable for embedding in other HTML pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31903 +#: guix-git/doc/guix.texi:32268 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-commit-graph?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31907 +#: guix-git/doc/guix.texi:32272 msgid "Flag which, when set to @samp{#t}, will make cgit print an ASCII-art commit history graph to the left of the commit messages in the repository log page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31912 +#: guix-git/doc/guix.texi:32277 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-filter-overrides?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31915 +#: guix-git/doc/guix.texi:32280 msgid "Flag which, when set to @samp{#t}, allows all filter settings to be overridden in repository-specific cgitrc files." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31920 +#: guix-git/doc/guix.texi:32285 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-follow-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31923 +#: guix-git/doc/guix.texi:32288 msgid "Flag which, when set to @samp{#t}, allows users to follow a file in the log view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31928 +#: guix-git/doc/guix.texi:32293 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-http-clone?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31931 +#: guix-git/doc/guix.texi:32296 msgid "If set to @samp{#t}, cgit will act as an dumb HTTP endpoint for Git clones." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31936 +#: guix-git/doc/guix.texi:32301 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-index-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31939 +#: guix-git/doc/guix.texi:32304 msgid "Flag which, when set to @samp{#t}, will make cgit generate extra links \"summary\", \"commit\", \"tree\" for each repo in the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31944 +#: guix-git/doc/guix.texi:32309 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-index-owner?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31947 +#: guix-git/doc/guix.texi:32312 msgid "Flag which, when set to @samp{#t}, will make cgit display the owner of each repo in the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31952 +#: guix-git/doc/guix.texi:32317 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-log-filecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31955 +#: guix-git/doc/guix.texi:32320 msgid "Flag which, when set to @samp{#t}, will make cgit print the number of modified files for each commit on the repository log page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31960 +#: guix-git/doc/guix.texi:32325 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-log-linecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31963 +#: guix-git/doc/guix.texi:32328 msgid "Flag which, when set to @samp{#t}, will make cgit print the number of added and removed lines for each commit on the repository log page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31968 +#: guix-git/doc/guix.texi:32333 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-remote-branches?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31971 guix-git/doc/guix.texi:32495 +#: guix-git/doc/guix.texi:32336 guix-git/doc/guix.texi:32860 msgid "Flag which, when set to @code{#t}, will make cgit display remote branches in the summary and refs views." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31976 +#: guix-git/doc/guix.texi:32341 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-subject-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31980 +#: guix-git/doc/guix.texi:32345 msgid "Flag which, when set to @code{1}, will make cgit use the subject of the parent commit as link text when generating links to parent commits in commit view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31985 +#: guix-git/doc/guix.texi:32350 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-html-serving?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31989 +#: guix-git/doc/guix.texi:32354 msgid "Flag which, when set to @samp{#t}, will make cgit use the subject of the parent commit as link text when generating links to parent commits in commit view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31994 +#: guix-git/doc/guix.texi:32359 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-tree-linenumbers?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:31997 +#: guix-git/doc/guix.texi:32362 msgid "Flag which, when set to @samp{#t}, will make cgit generate linenumber links for plaintext blobs printed in the tree view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32002 +#: guix-git/doc/guix.texi:32367 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean enable-git-config?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32005 +#: guix-git/doc/guix.texi:32370 msgid "Flag which, when set to @samp{#f}, will allow cgit to use Git config to set any repo specific settings." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32010 +#: guix-git/doc/guix.texi:32375 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object favicon" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32012 +#: guix-git/doc/guix.texi:32377 msgid "URL used as link to a shortcut icon for cgit." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32014 +#: guix-git/doc/guix.texi:32379 msgid "Defaults to @samp{\"/favicon.ico\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32017 +#: guix-git/doc/guix.texi:32382 #, no-wrap msgid "{@code{cgit-configuration} parameter} string footer" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32021 +#: guix-git/doc/guix.texi:32386 msgid "The content of the file specified with this option will be included verbatim at the bottom of all pages (i.e.@: it replaces the standard \"generated by...\"@: message)." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32026 +#: guix-git/doc/guix.texi:32391 #, no-wrap msgid "{@code{cgit-configuration} parameter} string head-include" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32029 +#: guix-git/doc/guix.texi:32394 msgid "The content of the file specified with this option will be included verbatim in the HTML HEAD section on all pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32034 +#: guix-git/doc/guix.texi:32399 #, no-wrap msgid "{@code{cgit-configuration} parameter} string header" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32037 +#: guix-git/doc/guix.texi:32402 msgid "The content of the file specified with this option will be included verbatim at the top of all pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32042 +#: guix-git/doc/guix.texi:32407 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object include" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32045 +#: guix-git/doc/guix.texi:32410 msgid "Name of a configfile to include before the rest of the current config- file is parsed." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32050 +#: guix-git/doc/guix.texi:32415 #, no-wrap msgid "{@code{cgit-configuration} parameter} string index-header" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32053 +#: guix-git/doc/guix.texi:32418 msgid "The content of the file specified with this option will be included verbatim above the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32058 +#: guix-git/doc/guix.texi:32423 #, no-wrap msgid "{@code{cgit-configuration} parameter} string index-info" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32061 +#: guix-git/doc/guix.texi:32426 msgid "The content of the file specified with this option will be included verbatim below the heading on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32066 +#: guix-git/doc/guix.texi:32431 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean local-time?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32069 +#: guix-git/doc/guix.texi:32434 msgid "Flag which, if set to @samp{#t}, makes cgit print commit and tag times in the servers timezone." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32074 +#: guix-git/doc/guix.texi:32439 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object logo" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32077 +#: guix-git/doc/guix.texi:32442 msgid "URL which specifies the source of an image which will be used as a logo on all cgit pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32079 +#: guix-git/doc/guix.texi:32444 msgid "Defaults to @samp{\"/share/cgit/cgit.png\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32082 +#: guix-git/doc/guix.texi:32447 #, no-wrap msgid "{@code{cgit-configuration} parameter} string logo-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32084 guix-git/doc/guix.texi:32541 +#: guix-git/doc/guix.texi:32449 guix-git/doc/guix.texi:32906 msgid "URL loaded when clicking on the cgit logo image." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32089 +#: guix-git/doc/guix.texi:32454 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object owner-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32092 +#: guix-git/doc/guix.texi:32457 msgid "Command which will be invoked to format the Owner column of the main page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32097 +#: guix-git/doc/guix.texi:32462 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-atom-items" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32099 +#: guix-git/doc/guix.texi:32464 msgid "Number of items to display in atom feeds view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32104 +#: guix-git/doc/guix.texi:32469 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-commit-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32106 +#: guix-git/doc/guix.texi:32471 msgid "Number of entries to list per page in \"log\" view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32111 +#: guix-git/doc/guix.texi:32476 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-message-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32113 +#: guix-git/doc/guix.texi:32478 msgid "Number of commit message characters to display in \"log\" view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32115 guix-git/doc/guix.texi:32131 +#: guix-git/doc/guix.texi:32480 guix-git/doc/guix.texi:32496 msgid "Defaults to @samp{80}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32118 +#: guix-git/doc/guix.texi:32483 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-repo-count" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32121 +#: guix-git/doc/guix.texi:32486 msgid "Specifies the number of entries to list per page on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32126 +#: guix-git/doc/guix.texi:32491 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-repodesc-length" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32129 +#: guix-git/doc/guix.texi:32494 msgid "Specifies the maximum number of repo description characters to display on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32134 +#: guix-git/doc/guix.texi:32499 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer max-blob-size" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32136 +#: guix-git/doc/guix.texi:32501 msgid "Specifies the maximum size of a blob to display HTML for in KBytes." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32141 +#: guix-git/doc/guix.texi:32506 #, no-wrap msgid "{@code{cgit-configuration} parameter} string max-stats" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32144 +#: guix-git/doc/guix.texi:32509 msgid "Maximum statistics period. Valid values are @samp{week},@samp{month}, @samp{quarter} and @samp{year}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32149 +#: guix-git/doc/guix.texi:32514 #, no-wrap msgid "{@code{cgit-configuration} parameter} mimetype-alist mimetype" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32151 +#: guix-git/doc/guix.texi:32516 msgid "Mimetype for the specified filename extension." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32155 +#: guix-git/doc/guix.texi:32520 msgid "Defaults to @samp{((gif \"image/gif\") (html \"text/html\") (jpg \"image/jpeg\") (jpeg \"image/jpeg\") (pdf \"application/pdf\") (png \"image/png\") (svg \"image/svg+xml\"))}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32158 +#: guix-git/doc/guix.texi:32523 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object mimetype-file" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32160 +#: guix-git/doc/guix.texi:32525 msgid "Specifies the file to use for automatic mimetype lookup." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32165 +#: guix-git/doc/guix.texi:32530 #, no-wrap msgid "{@code{cgit-configuration} parameter} string module-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32168 +#: guix-git/doc/guix.texi:32533 msgid "Text which will be used as the formatstring for a hyperlink when a submodule is printed in a directory listing." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32173 +#: guix-git/doc/guix.texi:32538 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean nocache?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32175 +#: guix-git/doc/guix.texi:32540 msgid "If set to the value @samp{#t} caching will be disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32180 +#: guix-git/doc/guix.texi:32545 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean noplainemail?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32183 +#: guix-git/doc/guix.texi:32548 msgid "If set to @samp{#t} showing full author email addresses will be disabled." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32188 +#: guix-git/doc/guix.texi:32553 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean noheader?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32191 +#: guix-git/doc/guix.texi:32556 msgid "Flag which, when set to @samp{#t}, will make cgit omit the standard header on all pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32196 +#: guix-git/doc/guix.texi:32561 #, no-wrap msgid "{@code{cgit-configuration} parameter} project-list project-list" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32200 +#: guix-git/doc/guix.texi:32565 msgid "A list of subdirectories inside of @code{repository-directory}, relative to it, that should loaded as Git repositories. An empty list means that all subdirectories will be loaded." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32205 +#: guix-git/doc/guix.texi:32570 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object readme" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32207 +#: guix-git/doc/guix.texi:32572 msgid "Text which will be used as default value for @code{cgit-repo-readme}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32212 +#: guix-git/doc/guix.texi:32577 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean remove-suffix?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32216 +#: guix-git/doc/guix.texi:32581 msgid "If set to @code{#t} and @code{repository-directory} is enabled, if any repositories are found with a suffix of @code{.git}, this suffix will be removed for the URL and name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32221 +#: guix-git/doc/guix.texi:32586 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer renamelimit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32223 +#: guix-git/doc/guix.texi:32588 msgid "Maximum number of files to consider when detecting renames." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32228 +#: guix-git/doc/guix.texi:32593 #, no-wrap msgid "{@code{cgit-configuration} parameter} string repository-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32230 +#: guix-git/doc/guix.texi:32595 msgid "The way in which repositories in each section are sorted." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32235 +#: guix-git/doc/guix.texi:32600 #, no-wrap msgid "{@code{cgit-configuration} parameter} robots-list robots" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32237 +#: guix-git/doc/guix.texi:32602 msgid "Text used as content for the @code{robots} meta-tag." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32239 +#: guix-git/doc/guix.texi:32604 msgid "Defaults to @samp{(\"noindex\" \"nofollow\")}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32242 +#: guix-git/doc/guix.texi:32607 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-desc" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32244 +#: guix-git/doc/guix.texi:32609 msgid "Text printed below the heading on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32246 +#: guix-git/doc/guix.texi:32611 msgid "Defaults to @samp{\"a fast webinterface for the git dscm\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32249 +#: guix-git/doc/guix.texi:32614 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-readme" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32252 +#: guix-git/doc/guix.texi:32617 msgid "The content of the file specified with this option will be included verbatim below the ``about'' link on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32257 +#: guix-git/doc/guix.texi:32622 #, no-wrap msgid "{@code{cgit-configuration} parameter} string root-title" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32259 +#: guix-git/doc/guix.texi:32624 msgid "Text printed as heading on the repository index page." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32264 +#: guix-git/doc/guix.texi:32629 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean scan-hidden-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32270 +#: guix-git/doc/guix.texi:32635 msgid "If set to @samp{#t} and repository-directory is enabled, repository-directory will recurse into directories whose name starts with a period. Otherwise, repository-directory will stay away from such directories, considered as ``hidden''. Note that this does not apply to the @file{.git} directory in non-bare repos." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32275 +#: guix-git/doc/guix.texi:32640 #, no-wrap msgid "{@code{cgit-configuration} parameter} list snapshots" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32278 +#: guix-git/doc/guix.texi:32643 msgid "Text which specifies the default set of snapshot formats that cgit generates links for." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32283 +#: guix-git/doc/guix.texi:32648 #, no-wrap msgid "{@code{cgit-configuration} parameter} repository-directory repository-directory" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32286 +#: guix-git/doc/guix.texi:32651 msgid "Name of the directory to scan for repositories (represents @code{scan-path})." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32288 +#: guix-git/doc/guix.texi:32653 msgid "Defaults to @samp{\"/srv/git\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32291 +#: guix-git/doc/guix.texi:32656 #, no-wrap msgid "{@code{cgit-configuration} parameter} string section" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32294 guix-git/doc/guix.texi:32610 +#: guix-git/doc/guix.texi:32659 guix-git/doc/guix.texi:32975 msgid "The name of the current repository section - all repositories defined after this option will inherit the current section name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32299 +#: guix-git/doc/guix.texi:32664 #, no-wrap msgid "{@code{cgit-configuration} parameter} string section-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32302 +#: guix-git/doc/guix.texi:32667 msgid "Flag which, when set to @samp{1}, will sort the sections on the repository listing by name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32307 +#: guix-git/doc/guix.texi:32672 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer section-from-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32310 +#: guix-git/doc/guix.texi:32675 msgid "A number which, if defined prior to repository-directory, specifies how many path elements from each repo path to use as a default section name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32315 +#: guix-git/doc/guix.texi:32680 #, no-wrap msgid "{@code{cgit-configuration} parameter} boolean side-by-side-diffs?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32318 +#: guix-git/doc/guix.texi:32683 msgid "If set to @samp{#t} shows side-by-side diffs instead of unidiffs per default." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32323 +#: guix-git/doc/guix.texi:32688 #, no-wrap msgid "{@code{cgit-configuration} parameter} file-object source-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32326 +#: guix-git/doc/guix.texi:32691 msgid "Specifies a command which will be invoked to format plaintext blobs in the tree view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32331 +#: guix-git/doc/guix.texi:32696 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-branches" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32334 +#: guix-git/doc/guix.texi:32699 msgid "Specifies the number of branches to display in the repository ``summary'' view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32339 +#: guix-git/doc/guix.texi:32704 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-log" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32342 +#: guix-git/doc/guix.texi:32707 msgid "Specifies the number of log entries to display in the repository ``summary'' view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32347 +#: guix-git/doc/guix.texi:32712 #, no-wrap msgid "{@code{cgit-configuration} parameter} integer summary-tags" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32350 +#: guix-git/doc/guix.texi:32715 msgid "Specifies the number of tags to display in the repository ``summary'' view." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32355 +#: guix-git/doc/guix.texi:32720 #, no-wrap msgid "{@code{cgit-configuration} parameter} string strict-export" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32358 +#: guix-git/doc/guix.texi:32723 msgid "Filename which, if specified, needs to be present within the repository for cgit to allow access to that repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32363 +#: guix-git/doc/guix.texi:32728 #, no-wrap msgid "{@code{cgit-configuration} parameter} string virtual-root" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32365 +#: guix-git/doc/guix.texi:32730 msgid "URL which, if specified, will be used as root for all cgit links." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32367 +#: guix-git/doc/guix.texi:32732 msgid "Defaults to @samp{\"/\"}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32370 +#: guix-git/doc/guix.texi:32735 #, no-wrap msgid "{@code{cgit-configuration} parameter} repository-cgit-configuration-list repositories" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32372 +#: guix-git/doc/guix.texi:32737 msgid "A list of @dfn{cgit-repo} records to use with config." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32376 +#: guix-git/doc/guix.texi:32741 msgid "Available @code{repository-cgit-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32377 +#: guix-git/doc/guix.texi:32742 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list snapshots" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32380 +#: guix-git/doc/guix.texi:32745 msgid "A mask of snapshot formats for this repo that cgit generates links for, restricted by the global @code{snapshots} setting." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32385 +#: guix-git/doc/guix.texi:32750 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object source-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32387 +#: guix-git/doc/guix.texi:32752 msgid "Override the default @code{source-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32392 +#: guix-git/doc/guix.texi:32757 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32394 +#: guix-git/doc/guix.texi:32759 msgid "The relative URL used to access the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32399 +#: guix-git/doc/guix.texi:32764 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object about-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32401 +#: guix-git/doc/guix.texi:32766 msgid "Override the default @code{about-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32406 +#: guix-git/doc/guix.texi:32771 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string branch-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32409 +#: guix-git/doc/guix.texi:32774 msgid "Flag which, when set to @samp{age}, enables date ordering in the branch ref list, and when set to @samp{name} enables ordering by branch name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32414 +#: guix-git/doc/guix.texi:32779 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list clone-url" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32416 +#: guix-git/doc/guix.texi:32781 msgid "A list of URLs which can be used to clone repo." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32421 +#: guix-git/doc/guix.texi:32786 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object commit-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32423 +#: guix-git/doc/guix.texi:32788 msgid "Override the default @code{commit-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32428 +#: guix-git/doc/guix.texi:32793 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string commit-sort" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32437 +#: guix-git/doc/guix.texi:32802 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string defbranch" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32442 +#: guix-git/doc/guix.texi:32807 msgid "The name of the default branch for this repository. If no such branch exists in the repository, the first branch name (when sorted) is used as default instead. By default branch pointed to by HEAD, or ``master'' if there is no suitable HEAD." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32447 +#: guix-git/doc/guix.texi:32812 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string desc" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32449 +#: guix-git/doc/guix.texi:32814 msgid "The value to show as repository description." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32454 +#: guix-git/doc/guix.texi:32819 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string homepage" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32456 +#: guix-git/doc/guix.texi:32821 msgid "The value to show as repository homepage." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32461 +#: guix-git/doc/guix.texi:32826 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object email-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32463 +#: guix-git/doc/guix.texi:32828 msgid "Override the default @code{email-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32468 +#: guix-git/doc/guix.texi:32833 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-commit-graph?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32471 +#: guix-git/doc/guix.texi:32836 msgid "A flag which can be used to disable the global setting @code{enable-commit-graph?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32476 +#: guix-git/doc/guix.texi:32841 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-log-filecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32479 +#: guix-git/doc/guix.texi:32844 msgid "A flag which can be used to disable the global setting @code{enable-log-filecount?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32484 +#: guix-git/doc/guix.texi:32849 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-log-linecount?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32487 +#: guix-git/doc/guix.texi:32852 msgid "A flag which can be used to disable the global setting @code{enable-log-linecount?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32492 +#: guix-git/doc/guix.texi:32857 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-remote-branches?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32500 +#: guix-git/doc/guix.texi:32865 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-subject-links?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32503 +#: guix-git/doc/guix.texi:32868 msgid "A flag which can be used to override the global setting @code{enable-subject-links?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32508 +#: guix-git/doc/guix.texi:32873 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} maybe-repo-boolean enable-html-serving?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32511 +#: guix-git/doc/guix.texi:32876 msgid "A flag which can be used to override the global setting @code{enable-html-serving?}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32516 +#: guix-git/doc/guix.texi:32881 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-boolean hide?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32519 +#: guix-git/doc/guix.texi:32884 msgid "Flag which, when set to @code{#t}, hides the repository from the repository index." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32524 +#: guix-git/doc/guix.texi:32889 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-boolean ignore?" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32526 +#: guix-git/doc/guix.texi:32891 msgid "Flag which, when set to @samp{#t}, ignores the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32531 +#: guix-git/doc/guix.texi:32896 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object logo" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32534 +#: guix-git/doc/guix.texi:32899 msgid "URL which specifies the source of an image which will be used as a logo on this repo’s pages." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32539 +#: guix-git/doc/guix.texi:32904 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string logo-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32546 +#: guix-git/doc/guix.texi:32911 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-file-object owner-filter" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32548 +#: guix-git/doc/guix.texi:32913 msgid "Override the default @code{owner-filter}." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32553 +#: guix-git/doc/guix.texi:32918 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string module-link" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32557 +#: guix-git/doc/guix.texi:32922 msgid "Text which will be used as the formatstring for a hyperlink when a submodule is printed in a directory listing. The arguments for the formatstring are the path and SHA1 of the submodule commit." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32562 +#: guix-git/doc/guix.texi:32927 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} module-link-path module-link-path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32566 +#: guix-git/doc/guix.texi:32931 msgid "Text which will be used as the formatstring for a hyperlink when a submodule with the specified subdirectory path is printed in a directory listing." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32571 +#: guix-git/doc/guix.texi:32936 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string max-stats" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32573 +#: guix-git/doc/guix.texi:32938 msgid "Override the default maximum statistics period." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32578 +#: guix-git/doc/guix.texi:32943 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string name" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32580 +#: guix-git/doc/guix.texi:32945 msgid "The value to show as repository name." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32585 +#: guix-git/doc/guix.texi:32950 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string owner" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32587 +#: guix-git/doc/guix.texi:32952 msgid "A value used to identify the owner of the repository." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32592 +#: guix-git/doc/guix.texi:32957 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string path" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32594 +#: guix-git/doc/guix.texi:32959 msgid "An absolute path to the repository directory." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32599 +#: guix-git/doc/guix.texi:32964 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string readme" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32602 +#: guix-git/doc/guix.texi:32967 msgid "A path (relative to repo) which specifies a file to include verbatim as the ``About'' page for this repo." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32607 +#: guix-git/doc/guix.texi:32972 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-string section" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32615 +#: guix-git/doc/guix.texi:32980 #, no-wrap msgid "{@code{repository-cgit-configuration} parameter} repo-list extra-options" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32617 guix-git/doc/guix.texi:32626 +#: guix-git/doc/guix.texi:32982 guix-git/doc/guix.texi:32991 msgid "Extra options will be appended to cgitrc file." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32624 +#: guix-git/doc/guix.texi:32989 #, no-wrap msgid "{@code{cgit-configuration} parameter} list extra-options" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32638 +#: guix-git/doc/guix.texi:33003 msgid "However, it could be that you just want to get a @code{cgitrc} up and running. In that case, you can pass an @code{opaque-cgit-configuration} as a record to @code{cgit-service-type}. As its name indicates, an opaque configuration does not have easy reflective capabilities." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32640 +#: guix-git/doc/guix.texi:33005 msgid "Available @code{opaque-cgit-configuration} fields are:" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32641 +#: guix-git/doc/guix.texi:33006 #, no-wrap msgid "{@code{opaque-cgit-configuration} parameter} package cgit" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32643 +#: guix-git/doc/guix.texi:33008 msgid "The cgit package." msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32645 +#: guix-git/doc/guix.texi:33010 #, no-wrap msgid "{@code{opaque-cgit-configuration} parameter} string string" msgstr "" #. type: deftypevr -#: guix-git/doc/guix.texi:32647 +#: guix-git/doc/guix.texi:33012 msgid "The contents of the @code{cgitrc}, as a string." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32651 +#: guix-git/doc/guix.texi:33016 msgid "For example, if your @code{cgitrc} is just the empty string, you could instantiate a cgit service like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32656 +#: guix-git/doc/guix.texi:33021 #, no-wrap msgid "" "(service cgit-service-type\n" @@ -58469,40 +59156,40 @@ msgid "" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:32658 +#: guix-git/doc/guix.texi:33023 #, no-wrap msgid "Gitolite Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32660 +#: guix-git/doc/guix.texi:33025 #, no-wrap msgid "Gitolite service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32661 +#: guix-git/doc/guix.texi:33026 #, no-wrap msgid "Git, hosting" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32664 +#: guix-git/doc/guix.texi:33029 msgid "@uref{https://gitolite.com/gitolite/, Gitolite} is a tool for hosting Git repositories on a central server." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32667 +#: guix-git/doc/guix.texi:33032 msgid "Gitolite can handle multiple repositories and users, and supports flexible configuration of the permissions for the users on the repositories." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32670 +#: guix-git/doc/guix.texi:33035 msgid "The following example will configure Gitolite using the default @code{git} user, and the provided SSH public key." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32677 +#: guix-git/doc/guix.texi:33042 #, no-wrap msgid "" "(service gitolite-service-type\n" @@ -58513,220 +59200,220 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32682 +#: guix-git/doc/guix.texi:33047 msgid "Gitolite is configured through a special admin repository which you can clone, for example, if you setup Gitolite on @code{example.com}, you would run the following command to clone the admin repository." msgstr "" #. type: example -#: guix-git/doc/guix.texi:32685 +#: guix-git/doc/guix.texi:33050 #, no-wrap msgid "git clone git@@example.com:gitolite-admin\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32691 +#: guix-git/doc/guix.texi:33056 msgid "When the Gitolite service is activated, the provided @code{admin-pubkey} will be inserted in to the @file{keydir} directory in the gitolite-admin repository. If this results in a change in the repository, it will be committed using the message ``gitolite setup by GNU Guix''." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32692 +#: guix-git/doc/guix.texi:33057 #, no-wrap msgid "{Data Type} gitolite-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32694 +#: guix-git/doc/guix.texi:33059 msgid "Data type representing the configuration for @code{gitolite-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32696 +#: guix-git/doc/guix.texi:33061 #, no-wrap msgid "@code{package} (default: @var{gitolite})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32698 +#: guix-git/doc/guix.texi:33063 msgid "Gitolite package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32699 +#: guix-git/doc/guix.texi:33064 #, no-wrap msgid "@code{user} (default: @var{git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32702 +#: guix-git/doc/guix.texi:33067 msgid "User to use for Gitolite. This will be user that you use when accessing Gitolite over SSH." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32703 +#: guix-git/doc/guix.texi:33068 #, no-wrap msgid "@code{group} (default: @var{git})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32705 +#: guix-git/doc/guix.texi:33070 msgid "Group to use for Gitolite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32706 +#: guix-git/doc/guix.texi:33071 #, no-wrap msgid "@code{home-directory} (default: @var{\"/var/lib/gitolite\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32708 +#: guix-git/doc/guix.texi:33073 msgid "Directory in which to store the Gitolite configuration and repositories." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32709 +#: guix-git/doc/guix.texi:33074 #, no-wrap msgid "@code{rc-file} (default: @var{(gitolite-rc-file)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32712 +#: guix-git/doc/guix.texi:33077 msgid "A ``file-like'' object (@pxref{G-Expressions, file-like objects}), representing the configuration for Gitolite." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32713 +#: guix-git/doc/guix.texi:33078 #, no-wrap msgid "@code{admin-pubkey} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32717 +#: guix-git/doc/guix.texi:33082 msgid "A ``file-like'' object (@pxref{G-Expressions, file-like objects}) used to setup Gitolite. This will be inserted in to the @file{keydir} directory within the gitolite-admin repository." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32719 +#: guix-git/doc/guix.texi:33084 msgid "To specify the SSH key as a string, use the @code{plain-file} function." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32722 +#: guix-git/doc/guix.texi:33087 #, no-wrap msgid "(plain-file \"yourname.pub\" \"ssh-rsa AAAA... guix@@example.com\")\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32727 +#: guix-git/doc/guix.texi:33092 #, no-wrap msgid "{Data Type} gitolite-rc-file" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32729 +#: guix-git/doc/guix.texi:33094 msgid "Data type representing the Gitolite RC file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32731 +#: guix-git/doc/guix.texi:33096 #, no-wrap msgid "@code{umask} (default: @code{#o0077})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32734 +#: guix-git/doc/guix.texi:33099 msgid "This controls the permissions Gitolite sets on the repositories and their contents." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32738 +#: guix-git/doc/guix.texi:33103 msgid "A value like @code{#o0027} will give read access to the group used by Gitolite (by default: @code{git}). This is necessary when using Gitolite with software like cgit or gitweb." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32739 +#: guix-git/doc/guix.texi:33104 #, fuzzy, no-wrap msgid "@code{unsafe-pattern} (default: @code{#f})" msgstr "@code{max-journal-depth}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:32744 +#: guix-git/doc/guix.texi:33109 msgid "An optional Perl regular expression for catching unsafe configurations in the configuration file. See @uref{https://gitolite.com/gitolite/git-config.html#compensating-for-unsafe_patt, Gitolite's documentation} for more information." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32751 +#: guix-git/doc/guix.texi:33116 msgid "When the value is not @code{#f}, it should be a string containing a Perl regular expression, such as @samp{\"[`~#\\$\\&()|;<>]\"}, which is the default value used by gitolite. It rejects any special character in configuration that might be interpreted by a shell, which is useful when sharing the administration burden with other people that do not otherwise have shell access on the server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32752 +#: guix-git/doc/guix.texi:33117 #, no-wrap msgid "@code{git-config-keys} (default: @code{\"\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32755 +#: guix-git/doc/guix.texi:33120 msgid "Gitolite allows you to set git config values using the @samp{config} keyword. This setting allows control over the config keys to accept." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32756 +#: guix-git/doc/guix.texi:33121 #, no-wrap msgid "@code{roles} (default: @code{'((\"READERS\" . 1) (\"WRITERS\" . ))})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32758 +#: guix-git/doc/guix.texi:33123 msgid "Set the role names allowed to be used by users running the perms command." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32759 +#: guix-git/doc/guix.texi:33124 #, no-wrap msgid "@code{enable} (default: @code{'(\"help\" \"desc\" \"info\" \"perms\" \"writable\" \"ssh-authkeys\" \"git-config\" \"daemon\" \"gitweb\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32761 +#: guix-git/doc/guix.texi:33126 msgid "This setting controls the commands and features to enable within Gitolite." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:32766 +#: guix-git/doc/guix.texi:33131 #, fuzzy, no-wrap msgid "Gitile Service" msgstr "邮件服务" #. type: cindex -#: guix-git/doc/guix.texi:32768 +#: guix-git/doc/guix.texi:33133 #, fuzzy, no-wrap msgid "Gitile service" msgstr "邮件服务" #. type: cindex -#: guix-git/doc/guix.texi:32769 +#: guix-git/doc/guix.texi:33134 #, no-wrap msgid "Git, forge" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32772 +#: guix-git/doc/guix.texi:33137 msgid "@uref{https://git.lepiller.eu/gitile, Gitile} is a Git forge for viewing public git repository contents from a web browser." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32778 +#: guix-git/doc/guix.texi:33143 msgid "Gitile works best in collaboration with Gitolite, and will serve the public repositories from Gitolite by default. The service should listen only on a local port, and a webserver should be configured to serve static resources. The gitile service provides an easy way to extend the Nginx service for that purpose (@pxref{NGINX})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32782 +#: guix-git/doc/guix.texi:33147 msgid "The following example will configure Gitile to serve repositories from a custom location, with some default messages for the home page and the footers." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32805 +#: guix-git/doc/guix.texi:33170 #, no-wrap msgid "" "(service gitile-service-type\n" @@ -58753,12 +59440,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32814 +#: guix-git/doc/guix.texi:33179 msgid "In addition to the configuration record, you should configure your git repositories to contain some optional information. First, your public repositories need to contain the @file{git-daemon-export-ok} magic file that allows Git to export the repository. Gitile uses the presence of this file to detect public repositories it should make accessible. To do so with Gitolite for instance, modify your @file{conf/gitolite.conf} to include this in the repositories you want to make public:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:32818 +#: guix-git/doc/guix.texi:33183 #, no-wrap msgid "" "repo foo\n" @@ -58766,12 +59453,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32824 +#: guix-git/doc/guix.texi:33189 msgid "In addition, Gitile can read the repository configuration to display more information on the repository. Gitile uses the gitweb namespace for its configuration. As an example, you can use the following in your @file{conf/gitolite.conf}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:32831 +#: guix-git/doc/guix.texi:33196 #, no-wrap msgid "" "repo foo\n" @@ -58782,12 +59469,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32837 +#: guix-git/doc/guix.texi:33202 msgid "Do not forget to commit and push these changes once you are satisfied. You may need to change your gitolite configuration to allow the previous configuration options to be set. One way to do that is to add the following service definition:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32849 +#: guix-git/doc/guix.texi:33214 #, no-wrap msgid "" "(service gitolite-service-type\n" @@ -58803,247 +59490,247 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32851 +#: guix-git/doc/guix.texi:33216 #, fuzzy, no-wrap msgid "{Data Type} gitile-configuration" msgstr "管理操作系统配置。" #. type: deftp -#: guix-git/doc/guix.texi:32853 +#: guix-git/doc/guix.texi:33218 #, fuzzy msgid "Data type representing the configuration for @code{gitile-service-type}." msgstr "管理操作系统配置。" #. type: item -#: guix-git/doc/guix.texi:32855 +#: guix-git/doc/guix.texi:33220 #, fuzzy, no-wrap msgid "@code{package} (default: @var{gitile})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:32857 +#: guix-git/doc/guix.texi:33222 #, fuzzy msgid "Gitile package to use." msgstr "软件包数据类型。" #. type: table -#: guix-git/doc/guix.texi:32860 +#: guix-git/doc/guix.texi:33225 msgid "The host on which gitile is listening." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32861 +#: guix-git/doc/guix.texi:33226 #, fuzzy, no-wrap msgid "@code{port} (default: @code{8080})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:32863 +#: guix-git/doc/guix.texi:33228 msgid "The port on which gitile is listening." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32864 +#: guix-git/doc/guix.texi:33229 #, fuzzy, no-wrap msgid "@code{database} (default: @code{\"/var/lib/gitile/gitile-db.sql\"})" msgstr "@code{daemon-socket}(默认值:@code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:32866 +#: guix-git/doc/guix.texi:33231 #, fuzzy msgid "The location of the database." msgstr "远程机器的主机名。" #. type: item -#: guix-git/doc/guix.texi:32867 +#: guix-git/doc/guix.texi:33232 #, fuzzy, no-wrap msgid "@code{repositories} (default: @code{\"/var/lib/gitolite/repositories\"})" msgstr "@code{daemon-socket}(默认值:@code{\"/var/guix/daemon-socket/socket\"})" #. type: table -#: guix-git/doc/guix.texi:32871 +#: guix-git/doc/guix.texi:33236 msgid "The location of the repositories. Note that only public repositories will be shown by Gitile. To make a repository public, add an empty @file{git-daemon-export-ok} file at the root of that repository." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:32872 +#: guix-git/doc/guix.texi:33237 #, no-wrap msgid "base-git-url" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32874 +#: guix-git/doc/guix.texi:33239 msgid "The base git url that will be used to show clone commands." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32875 +#: guix-git/doc/guix.texi:33240 #, fuzzy, no-wrap msgid "@code{index-title} (default: @code{\"Index\"})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:32877 +#: guix-git/doc/guix.texi:33242 msgid "The page title for the index page that lists all the available repositories." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32878 +#: guix-git/doc/guix.texi:33243 #, fuzzy, no-wrap msgid "@code{intro} (default: @code{'()})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:32881 +#: guix-git/doc/guix.texi:33246 msgid "The intro content, as a list of sxml expressions. This is shown above the list of repositories, on the index page." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32882 +#: guix-git/doc/guix.texi:33247 #, fuzzy, no-wrap msgid "@code{footer} (default: @code{'()})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:32885 +#: guix-git/doc/guix.texi:33250 msgid "The footer content, as a list of sxml expressions. This is shown on every page served by Gitile." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:32886 +#: guix-git/doc/guix.texi:33251 #, no-wrap msgid "nginx-server-block" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32889 +#: guix-git/doc/guix.texi:33254 msgid "An nginx server block that will be extended and used as a reverse proxy by Gitile to serve its pages, and as a normal web server to serve its assets." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32893 +#: guix-git/doc/guix.texi:33258 msgid "You can use this block to add more custom URLs to your domain, such as a @code{/git/} URL for anonymous clones, or serving any other files you would like to serve." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:32900 +#: guix-git/doc/guix.texi:33265 #, no-wrap msgid "The Battle for Wesnoth Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32901 +#: guix-git/doc/guix.texi:33266 #, no-wrap msgid "wesnothd" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32905 +#: guix-git/doc/guix.texi:33270 msgid "@uref{https://wesnoth.org, The Battle for Wesnoth} is a fantasy, turn based tactical strategy game, with several single player campaigns, and multiplayer games (both networked and local)." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32906 +#: guix-git/doc/guix.texi:33271 #, no-wrap msgid "{Scheme Variable} wesnothd-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32910 +#: guix-git/doc/guix.texi:33275 msgid "Service type for the wesnothd service. Its value must be a @code{wesnothd-configuration} object. To run wesnothd in the default configuration, instantiate it as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32913 +#: guix-git/doc/guix.texi:33278 #, no-wrap msgid "(service wesnothd-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32916 +#: guix-git/doc/guix.texi:33281 #, no-wrap msgid "{Data Type} wesnothd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32918 +#: guix-git/doc/guix.texi:33283 msgid "Data type representing the configuration of @command{wesnothd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32920 +#: guix-git/doc/guix.texi:33285 #, no-wrap msgid "@code{package} (default: @code{wesnoth-server})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32922 +#: guix-git/doc/guix.texi:33287 msgid "The wesnoth server package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:32923 +#: guix-git/doc/guix.texi:33288 #, no-wrap msgid "@code{port} (default: @code{15000})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32925 +#: guix-git/doc/guix.texi:33290 guix-git/doc/guix.texi:33681 msgid "The port to bind the server to." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:32931 +#: guix-git/doc/guix.texi:33296 #, no-wrap msgid "pam-mount" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:32936 +#: guix-git/doc/guix.texi:33301 msgid "The @code{(gnu services pam-mount)} module provides a service allowing users to mount volumes when they log in. It should be able to mount any volume format supported by the system." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32937 +#: guix-git/doc/guix.texi:33302 #, no-wrap msgid "{Scheme Variable} pam-mount-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:32939 +#: guix-git/doc/guix.texi:33304 msgid "Service type for PAM Mount support." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32941 +#: guix-git/doc/guix.texi:33306 #, no-wrap msgid "{Data Type} pam-mount-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:32943 +#: guix-git/doc/guix.texi:33308 #, fuzzy msgid "Data type representing the configuration of PAM Mount." msgstr "管理操作系统配置。" #. type: code{#1} -#: guix-git/doc/guix.texi:32947 +#: guix-git/doc/guix.texi:33312 #, fuzzy, no-wrap msgid "rules" msgstr "模块" #. type: table -#: guix-git/doc/guix.texi:32950 +#: guix-git/doc/guix.texi:33315 msgid "The configuration rules that will be used to generate @file{/etc/security/pam_mount.conf.xml}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:32954 +#: guix-git/doc/guix.texi:33319 msgid "The configuration rules are SXML elements (@pxref{SXML,,, guile, GNU Guile Reference Manual}), and the default ones don't mount anything for anyone at login:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:32969 +#: guix-git/doc/guix.texi:33334 #, no-wrap msgid "" "`((debug (@@ (enable \"0\")))\n" @@ -59062,12 +59749,12 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:32975 +#: guix-git/doc/guix.texi:33340 msgid "Some @code{volume} elements must be added to automatically mount volumes at login. Here's an example allowing the user @code{alice} to mount her encrypted @env{HOME} directory and allowing the user @code{bob} to mount the partition where he stores his data:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33000 +#: guix-git/doc/guix.texi:33365 #, no-wrap msgid "" "(define pam-mount-rules\n" @@ -59097,7 +59784,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33004 +#: guix-git/doc/guix.texi:33369 #, no-wrap msgid "" "(service pam-mount-service-type\n" @@ -59106,776 +59793,917 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33008 +#: guix-git/doc/guix.texi:33373 msgid "The complete list of possible options can be found in the man page for @uref{http://pam-mount.sourceforge.net/pam_mount.conf.5.html, pam_mount.conf}." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33015 +#: guix-git/doc/guix.texi:33380 #, no-wrap msgid "Guix Build Coordinator" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33021 +#: guix-git/doc/guix.texi:33386 msgid "The @uref{https://git.cbaines.net/guix/build-coordinator/,Guix Build Coordinator} aids in distributing derivation builds among machines running an @dfn{agent}. The build daemon is still used to build the derivations, but the Guix Build Coordinator manages allocating builds and working with the results." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33027 +#: guix-git/doc/guix.texi:33392 msgid "The Guix Build Coordinator consists of one @dfn{coordinator}, and one or more connected @dfn{agent} processes. The coordinator process handles clients submitting builds, and allocating builds to agents. The agent processes talk to a build daemon to actually perform the builds, then send the results back to the coordinator." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33031 +#: guix-git/doc/guix.texi:33396 msgid "There is a script to run the coordinator component of the Guix Build Coordinator, but the Guix service uses a custom Guile script instead, to provide better integration with G-expressions used in the configuration." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33032 +#: guix-git/doc/guix.texi:33397 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33035 +#: guix-git/doc/guix.texi:33400 msgid "Service type for the Guix Build Coordinator. Its value must be a @code{guix-build-coordinator-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33037 +#: guix-git/doc/guix.texi:33402 #, fuzzy, no-wrap msgid "{Data Type} guix-build-coordinator-configuration" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:33039 +#: guix-git/doc/guix.texi:33404 msgid "Data type representing the configuration of the Guix Build Coordinator." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33041 guix-git/doc/guix.texi:33211 +#: guix-git/doc/guix.texi:33406 guix-git/doc/guix.texi:33576 #, fuzzy, no-wrap msgid "@code{package} (default: @code{guix-build-coordinator})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: table -#: guix-git/doc/guix.texi:33043 guix-git/doc/guix.texi:33087 -#: guix-git/doc/guix.texi:33213 +#: guix-git/doc/guix.texi:33408 guix-git/doc/guix.texi:33452 +#: guix-git/doc/guix.texi:33578 msgid "The Guix Build Coordinator package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33044 +#: guix-git/doc/guix.texi:33409 #, fuzzy, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator\"})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: table -#: guix-git/doc/guix.texi:33046 guix-git/doc/guix.texi:33090 -#: guix-git/doc/guix.texi:33216 guix-git/doc/guix.texi:33262 +#: guix-git/doc/guix.texi:33411 guix-git/doc/guix.texi:33455 +#: guix-git/doc/guix.texi:33581 guix-git/doc/guix.texi:33627 +#: guix-git/doc/guix.texi:33675 #, fuzzy msgid "The system user to run the service as." msgstr "mcron服务。" #. type: item -#: guix-git/doc/guix.texi:33047 +#: guix-git/doc/guix.texi:33412 #, fuzzy, no-wrap msgid "@code{group} (default: @code{\"guix-build-coordinator\"})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: table -#: guix-git/doc/guix.texi:33049 guix-git/doc/guix.texi:33265 +#: guix-git/doc/guix.texi:33414 guix-git/doc/guix.texi:33630 +#: guix-git/doc/guix.texi:33678 msgid "The system group to run the service as." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33050 +#: guix-git/doc/guix.texi:33415 #, no-wrap msgid "@code{database-uri-string} (default: @code{\"sqlite:///var/lib/guix-build-coordinator/guix_build_coordinator.db\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33052 +#: guix-git/doc/guix.texi:33417 msgid "The URI to use for the database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33053 +#: guix-git/doc/guix.texi:33418 #, fuzzy, no-wrap msgid "@code{agent-communication-uri} (default: @code{\"http://0.0.0.0:8745\"})" msgstr "@code{authentication-hook}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:33055 +#: guix-git/doc/guix.texi:33420 msgid "The URI describing how to listen to requests from agent processes." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33056 +#: guix-git/doc/guix.texi:33421 #, fuzzy, no-wrap msgid "@code{client-communication-uri} (default: @code{\"http://127.0.0.1:8746\"})" msgstr "@code{authentication-hook}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:33060 +#: guix-git/doc/guix.texi:33425 msgid "The URI describing how to listen to requests from clients. The client API allows submitting builds and currently isn't authenticated, so take care when configuring this value." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33061 +#: guix-git/doc/guix.texi:33426 #, no-wrap msgid "@code{allocation-strategy} (default: @code{#~basic-build-allocation-strategy})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33065 +#: guix-git/doc/guix.texi:33430 msgid "A G-expression for the allocation strategy to be used. This is a procedure that takes the datastore as an argument and populates the allocation plan in the database." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33066 +#: guix-git/doc/guix.texi:33431 #, fuzzy, no-wrap msgid "@code{hooks} (default: @var{'()})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:33069 +#: guix-git/doc/guix.texi:33434 msgid "An association list of hooks. These provide a way to execute arbitrary code upon certain events, like a build result being processed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33070 +#: guix-git/doc/guix.texi:33435 #, fuzzy, no-wrap msgid "@code{guile} (default: @code{guile-3.0-latest})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:33072 +#: guix-git/doc/guix.texi:33437 msgid "The Guile package with which to run the Guix Build Coordinator." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33076 +#: guix-git/doc/guix.texi:33441 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-agent-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33079 +#: guix-git/doc/guix.texi:33444 msgid "Service type for a Guix Build Coordinator agent. Its value must be a @code{guix-build-coordinator-agent-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33081 +#: guix-git/doc/guix.texi:33446 #, no-wrap msgid "{Data Type} guix-build-coordinator-agent-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33083 +#: guix-git/doc/guix.texi:33448 msgid "Data type representing the configuration a Guix Build Coordinator agent." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33085 +#: guix-git/doc/guix.texi:33450 #, fuzzy, no-wrap msgid "@code{package} (default: @code{guix-build-coordinator/agent-only})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: item -#: guix-git/doc/guix.texi:33088 +#: guix-git/doc/guix.texi:33453 #, fuzzy, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator-agent\"})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: item -#: guix-git/doc/guix.texi:33091 +#: guix-git/doc/guix.texi:33456 #, fuzzy, no-wrap msgid "@code{coordinator} (default: @code{\"http://localhost:8745\"})" msgstr "@code{vt}(默认值:@code{\"vt7\"})" #. type: table -#: guix-git/doc/guix.texi:33093 guix-git/doc/guix.texi:33219 +#: guix-git/doc/guix.texi:33458 guix-git/doc/guix.texi:33584 msgid "The URI to use when connecting to the coordinator." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33094 +#: guix-git/doc/guix.texi:33459 #, fuzzy, no-wrap msgid "authentication" msgstr "验证substitute" #. type: table -#: guix-git/doc/guix.texi:33097 +#: guix-git/doc/guix.texi:33462 msgid "Record describing how this agent should authenticate with the coordinator. Possible record types are described below." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33098 guix-git/doc/guix.texi:33220 +#: guix-git/doc/guix.texi:33463 guix-git/doc/guix.texi:33585 #, fuzzy, no-wrap msgid "@code{systems} (default: @code{#f})" msgstr "@code{dnssec-policy}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:33101 +#: guix-git/doc/guix.texi:33466 msgid "The systems for which this agent should fetch builds. The agent process will use the current system it's running on as the default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33102 +#: guix-git/doc/guix.texi:33467 #, fuzzy, no-wrap msgid "@code{max-parallel-builds} (default: @code{1})" msgstr "@code{parallel-builds}(默认值:@code{1})" #. type: table -#: guix-git/doc/guix.texi:33104 +#: guix-git/doc/guix.texi:33469 #, fuzzy msgid "The number of builds to perform in parallel." msgstr "那台机器上可以并行运行的构建任务数量。" #. type: item -#: guix-git/doc/guix.texi:33105 +#: guix-git/doc/guix.texi:33470 #, fuzzy, no-wrap #| msgid "@code{max-journal-usage} (default: @code{#f})" msgid "@code{max-1min-load-average} (default: @code{#f})" msgstr "@code{max-journal-usage}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:33109 +#: guix-git/doc/guix.texi:33474 msgid "Load average value to look at when considering starting new builds, if the 1 minute load average exceeds this value, the agent will wait before starting new builds." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33113 +#: guix-git/doc/guix.texi:33478 msgid "This will be unspecified if the value is @code{#f}, and the agent will use the number of cores reported by the system as the max 1 minute load average." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33114 +#: guix-git/doc/guix.texi:33479 #, fuzzy, no-wrap msgid "@code{derivation-substitute-urls} (default: @code{#f})" msgstr "@code{dnssec-policy}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:33117 +#: guix-git/doc/guix.texi:33482 msgid "URLs from which to attempt to fetch substitutes for derivations, if the derivations aren't already available." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33118 +#: guix-git/doc/guix.texi:33483 #, fuzzy, no-wrap msgid "@code{non-derivation-substitute-urls} (default: @code{#f})" msgstr "@code{zonefile-load}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:33121 +#: guix-git/doc/guix.texi:33486 msgid "URLs from which to attempt to fetch substitutes for build inputs, if the input store items aren't already available." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33125 +#: guix-git/doc/guix.texi:33490 #, fuzzy, no-wrap msgid "{Data Type} guix-build-coordinator-agent-password-auth" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:33128 +#: guix-git/doc/guix.texi:33493 msgid "Data type representing an agent authenticating with a coordinator via a UUID and password." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33134 guix-git/doc/guix.texi:33150 +#: guix-git/doc/guix.texi:33499 guix-git/doc/guix.texi:33515 msgid "The UUID of the agent. This should be generated by the coordinator process, stored in the coordinator database, and used by the intended agent." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33137 +#: guix-git/doc/guix.texi:33502 msgid "The password to use when connecting to the coordinator." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33141 +#: guix-git/doc/guix.texi:33506 #, fuzzy, no-wrap msgid "{Data Type} guix-build-coordinator-agent-password-file-auth" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:33144 +#: guix-git/doc/guix.texi:33509 msgid "Data type representing an agent authenticating with a coordinator via a UUID and password read from a file." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33151 +#: guix-git/doc/guix.texi:33516 #, no-wrap msgid "password-file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33154 +#: guix-git/doc/guix.texi:33519 msgid "A file containing the password to use when connecting to the coordinator." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33158 +#: guix-git/doc/guix.texi:33523 #, fuzzy, no-wrap msgid "{Data Type} guix-build-coordinator-agent-dynamic-auth" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:33161 +#: guix-git/doc/guix.texi:33526 msgid "Data type representing an agent authenticating with a coordinator via a dynamic auth token and agent name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33163 guix-git/doc/guix.texi:33180 +#: guix-git/doc/guix.texi:33528 guix-git/doc/guix.texi:33545 #, fuzzy, no-wrap msgid "agent-name" msgstr "通道" #. type: table -#: guix-git/doc/guix.texi:33167 guix-git/doc/guix.texi:33184 +#: guix-git/doc/guix.texi:33532 guix-git/doc/guix.texi:33549 msgid "Name of an agent, this is used to match up to an existing entry in the database if there is one. When no existing entry is found, a new entry is automatically added." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33168 +#: guix-git/doc/guix.texi:33533 #, no-wrap msgid "token" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33171 +#: guix-git/doc/guix.texi:33536 msgid "Dynamic auth token, this is created and stored in the coordinator database, and is used by the agent to authenticate." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33175 +#: guix-git/doc/guix.texi:33540 #, fuzzy, no-wrap msgid "{Data Type} guix-build-coordinator-agent-dynamic-auth-with-file" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:33178 +#: guix-git/doc/guix.texi:33543 msgid "Data type representing an agent authenticating with a coordinator via a dynamic auth token read from a file and agent name." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33185 +#: guix-git/doc/guix.texi:33550 #, no-wrap msgid "token-file" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33188 +#: guix-git/doc/guix.texi:33553 msgid "File containing the dynamic auth token, this is created and stored in the coordinator database, and is used by the agent to authenticate." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33198 +#: guix-git/doc/guix.texi:33563 msgid "The Guix Build Coordinator package contains a script to query an instance of the Guix Data Service for derivations to build, and then submit builds for those derivations to the coordinator. The service type below assists in running this script. This is an additional tool that may be useful when building derivations contained within an instance of the Guix Data Service." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33199 +#: guix-git/doc/guix.texi:33564 #, no-wrap msgid "{Scheme Variable} guix-build-coordinator-queue-builds-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33204 +#: guix-git/doc/guix.texi:33569 msgid "Service type for the guix-build-coordinator-queue-builds-from-guix-data-service script. Its value must be a @code{guix-build-coordinator-queue-builds-configuration} object." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33206 +#: guix-git/doc/guix.texi:33571 #, no-wrap msgid "{Data Type} guix-build-coordinator-queue-builds-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33209 +#: guix-git/doc/guix.texi:33574 msgid "Data type representing the options to the queue builds from guix data service script." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33214 +#: guix-git/doc/guix.texi:33579 #, fuzzy, no-wrap msgid "@code{user} (default: @code{\"guix-build-coordinator-queue-builds\"})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: item -#: guix-git/doc/guix.texi:33217 +#: guix-git/doc/guix.texi:33582 #, fuzzy, no-wrap msgid "@code{coordinator} (default: @code{\"http://localhost:8746\"})" msgstr "@code{vt}(默认值:@code{\"vt7\"})" #. type: table -#: guix-git/doc/guix.texi:33222 +#: guix-git/doc/guix.texi:33587 msgid "The systems for which to fetch derivations to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33223 +#: guix-git/doc/guix.texi:33588 #, fuzzy, no-wrap msgid "@code{systems-and-targets} (default: @code{#f})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:33226 +#: guix-git/doc/guix.texi:33591 msgid "An association list of system and target pairs for which to fetch derivations to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33227 +#: guix-git/doc/guix.texi:33592 #, no-wrap msgid "@code{guix-data-service} (default: @code{\"https://data.guix.gnu.org\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33230 +#: guix-git/doc/guix.texi:33595 msgid "The Guix Data Service instance from which to query to find out about derivations to build." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33231 +#: guix-git/doc/guix.texi:33596 #, no-wrap msgid "@code{processed-commits-file} (default: @code{\"/var/cache/guix-build-coordinator-queue-builds/processed-commits\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33234 +#: guix-git/doc/guix.texi:33599 msgid "A file to record which commits have been processed, to avoid needlessly processing them again if the service is restarted." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33238 +#: guix-git/doc/guix.texi:33603 #, fuzzy, no-wrap msgid "Guix Data Service" msgstr "数据库服务" #. type: Plain text -#: guix-git/doc/guix.texi:33242 +#: guix-git/doc/guix.texi:33607 msgid "The @uref{http://data.guix.gnu.org,Guix Data Service} processes, stores and provides data about GNU Guix. This includes information about packages, derivations and lint warnings." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33245 +#: guix-git/doc/guix.texi:33610 msgid "The data is stored in a PostgreSQL database, and available through a web interface." msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33246 +#: guix-git/doc/guix.texi:33611 #, no-wrap msgid "{Scheme Variable} guix-data-service-type" msgstr "" #. type: defvar -#: guix-git/doc/guix.texi:33251 +#: guix-git/doc/guix.texi:33616 msgid "Service type for the Guix Data Service. Its value must be a @code{guix-data-service-configuration} object. The service optionally extends the getmail service, as the guix-commits mailing list is used to find out about changes in the Guix git repository." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33253 +#: guix-git/doc/guix.texi:33618 #, no-wrap msgid "{Data Type} guix-data-service-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33255 +#: guix-git/doc/guix.texi:33620 guix-git/doc/guix.texi:33668 msgid "Data type representing the configuration of the Guix Data Service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33257 +#: guix-git/doc/guix.texi:33622 #, fuzzy, no-wrap msgid "@code{package} (default: @code{guix-data-service})" msgstr "@code{xfce}(默认值:@code{xfce})" #. type: table -#: guix-git/doc/guix.texi:33259 +#: guix-git/doc/guix.texi:33624 msgid "The Guix Data Service package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33260 +#: guix-git/doc/guix.texi:33625 #, fuzzy, no-wrap msgid "@code{user} (default: @code{\"guix-data-service\"})" msgstr "@code{xfce}(默认值:@code{xfce})" #. type: item -#: guix-git/doc/guix.texi:33263 +#: guix-git/doc/guix.texi:33628 #, fuzzy, no-wrap msgid "@code{group} (default: @code{\"guix-data-service\"})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: item -#: guix-git/doc/guix.texi:33266 +#: guix-git/doc/guix.texi:33631 #, fuzzy, no-wrap msgid "@code{port} (default: @code{8765})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:33268 +#: guix-git/doc/guix.texi:33633 #, fuzzy msgid "The port to bind the web service to." msgstr "rottlog服务。" #. type: item -#: guix-git/doc/guix.texi:33269 +#: guix-git/doc/guix.texi:33634 guix-git/doc/guix.texi:33682 #, fuzzy, no-wrap msgid "@code{host} (default: @code{\"127.0.0.1\"})" msgstr "@code{speed}(默认值:@code{1.0})" #. type: table -#: guix-git/doc/guix.texi:33271 +#: guix-git/doc/guix.texi:33636 #, fuzzy msgid "The host to bind the web service to." msgstr "rottlog服务。" #. type: item -#: guix-git/doc/guix.texi:33272 +#: guix-git/doc/guix.texi:33637 #, fuzzy, no-wrap msgid "@code{getmail-idle-mailboxes} (default: @code{#f})" msgstr "@code{zonefile-load}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:33275 +#: guix-git/doc/guix.texi:33640 msgid "If set, this is the list of mailboxes that the getmail service will be configured to listen to." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33276 +#: guix-git/doc/guix.texi:33641 #, fuzzy, no-wrap msgid "@code{commits-getmail-retriever-configuration} (default: @code{#f})" msgstr "@code{journal-content}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:33280 +#: guix-git/doc/guix.texi:33645 msgid "If set, this is the @code{getmail-retriever-configuration} object with which to configure getmail to fetch mail from the guix-commits mailing list." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33281 +#: guix-git/doc/guix.texi:33646 #, no-wrap msgid "@code{extra-options} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33283 +#: guix-git/doc/guix.texi:33648 msgid "Extra command line options for @code{guix-data-service}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33284 +#: guix-git/doc/guix.texi:33649 #, fuzzy, no-wrap msgid "@code{extra-process-jobs-options} (default: @var{'()})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:33286 +#: guix-git/doc/guix.texi:33651 msgid "Extra command line options for @code{guix-data-service-process-jobs}." msgstr "" +#. type: subsubheading +#: guix-git/doc/guix.texi:33655 +#, no-wrap +msgid "Nar Herder" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:33658 +msgid "The @uref{https://git.cbaines.net/guix/nar-herder/about/,Nar Herder} is a utility for managing a collection of nars." +msgstr "" + +#. type: defvar +#: guix-git/doc/guix.texi:33659 +#, no-wrap +msgid "{Scheme Variable} nar-herder-type" +msgstr "" + +#. type: defvar +#: guix-git/doc/guix.texi:33664 +msgid "Service type for the Guix Data Service. Its value must be a @code{nar-herder-configuration} object. The service optionally extends the getmail service, as the guix-commits mailing list is used to find out about changes in the Guix git repository." +msgstr "" + +#. type: deftp +#: guix-git/doc/guix.texi:33666 +#, fuzzy, no-wrap +msgid "{Data Type} nar-herder-configuration" +msgstr "{数据类型} build-machine" + +#. type: item +#: guix-git/doc/guix.texi:33670 +#, fuzzy, no-wrap +msgid "@code{package} (default: @code{nar-herder})" +msgstr "@code{challenge}(默认值:@code{#f})" + +#. type: table +#: guix-git/doc/guix.texi:33672 +#, fuzzy +msgid "The Nar Herder package to use." +msgstr "软件包数据类型。" + +#. type: item +#: guix-git/doc/guix.texi:33673 +#, fuzzy, no-wrap +msgid "@code{user} (default: @code{\"nar-herder\"})" +msgstr "@code{vt}(默认值:@code{\"vt7\"})" + +#. type: item +#: guix-git/doc/guix.texi:33676 +#, fuzzy, no-wrap +msgid "@code{group} (default: @code{\"nar-herder\"})" +msgstr "@code{gnome}(默认值:@code{gnome})" + +#. type: item +#: guix-git/doc/guix.texi:33679 +#, fuzzy, no-wrap +msgid "@code{port} (default: @code{8734})" +msgstr "@code{port}(默认值:@code{22})" + +#. type: table +#: guix-git/doc/guix.texi:33684 +#, fuzzy +msgid "The host to bind the server to." +msgstr "rottlog服务。" + +#. type: table +#: guix-git/doc/guix.texi:33689 +msgid "Optional URL of the other Nar Herder instance which should be mirrored. This means that this Nar Herder instance will download it's database, and keep it up to date." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33690 +#, fuzzy, no-wrap +msgid "@code{database} (default: @code{\"/var/lib/nar-herder/nar_herder.db\"})" +msgstr "@code{daemon-socket}(默认值:@code{\"/var/guix/daemon-socket/socket\"})" + +#. type: table +#: guix-git/doc/guix.texi:33695 +msgid "Location for the database. If this Nar Herder instance is mirroring another, the database will be downloaded if it doesn't exist. If this Nar Herder instance isn't mirroring another, an empty database will be created." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33696 +#, fuzzy, no-wrap +msgid "@code{database-dump} (default: @code{\"/var/lib/nar-herder/nar_herder_dump.db\"})" +msgstr "@code{daemon-socket}(默认值:@code{\"/var/guix/daemon-socket/socket\"})" + +#. type: table +#: guix-git/doc/guix.texi:33700 +msgid "Location of the database dump. This is created and regularly updated by taking a copy of the database. This is the version of the database that is available to download." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33701 +#, fuzzy, no-wrap +msgid "@code{storage} (default: @code{#f})" +msgstr "@code{port}(默认值:@code{22})" + +#. type: table +#: guix-git/doc/guix.texi:33703 +msgid "Optional location in which to store nars." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33704 +#, fuzzy, no-wrap +msgid "@code{storage-limit} (default: @code{\"none\"})" +msgstr "@code{port}(默认值:@code{22})" + +#. type: table +#: guix-git/doc/guix.texi:33707 +msgid "Limit in bytes for the nars stored in the storage location. This can also be set to ``none'' so that there is no limit." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33710 +msgid "When the storage location exceeds this size, nars are removed according to the nar removal criteria." +msgstr "" + +#. type: item +#: guix-git/doc/guix.texi:33711 +#, fuzzy, no-wrap +msgid "@code{storage-nar-removal-criteria} (default: @code{'()})" +msgstr "@code{features} (@code{'()})" + +#. type: table +#: guix-git/doc/guix.texi:33714 +msgid "Criteria used to remove nars from the storage location. These are used in conjunction with the storage limit." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33719 +msgid "When the storage location exceeds the storage limit size, nars will be checked against the nar removal criteria and if any of the criteria match, they will be removed. This will continue until the storage location is below the storage limit size." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:33723 +msgid "Each criteria is specified by a string, then an equals sign, then another string. Currently, only one criteria is supported, checking if a nar is stored on another Nar Herder instance." +msgstr "" + #. type: cindex -#: guix-git/doc/guix.texi:33293 +#: guix-git/doc/guix.texi:33730 #, no-wrap msgid "oom" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33294 +#: guix-git/doc/guix.texi:33731 #, no-wrap msgid "out of memory killer" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33295 +#: guix-git/doc/guix.texi:33732 #, no-wrap msgid "earlyoom" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33296 +#: guix-git/doc/guix.texi:33733 #, no-wrap msgid "early out of memory daemon" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33297 +#: guix-git/doc/guix.texi:33734 #, fuzzy, no-wrap msgid "Early OOM Service" msgstr "邮件服务" #. type: Plain text -#: guix-git/doc/guix.texi:33304 +#: guix-git/doc/guix.texi:33741 msgid "@uref{https://github.com/rfjakob/earlyoom,Early OOM}, also known as Earlyoom, is a minimalist out of memory (OOM) daemon that runs in user space and provides a more responsive and configurable alternative to the in-kernel OOM killer. It is useful to prevent the system from becoming unresponsive when it runs out of memory." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33305 +#: guix-git/doc/guix.texi:33742 #, no-wrap msgid "{Scheme Variable} earlyoom-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33310 +#: guix-git/doc/guix.texi:33747 msgid "The service type for running @command{earlyoom}, the Early OOM daemon. Its value must be a @code{earlyoom-configuration} object, described below. The service can be instantiated in its default configuration with:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33313 +#: guix-git/doc/guix.texi:33750 #, no-wrap msgid "(service earlyoom-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33316 +#: guix-git/doc/guix.texi:33753 #, no-wrap msgid "{Data Type} earlyoom-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33318 +#: guix-git/doc/guix.texi:33755 msgid "This is the configuration record for the @code{earlyoom-service-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33320 +#: guix-git/doc/guix.texi:33757 #, fuzzy, no-wrap msgid "@code{earlyoom} (default: @var{earlyoom})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: table -#: guix-git/doc/guix.texi:33322 +#: guix-git/doc/guix.texi:33759 #, fuzzy msgid "The Earlyoom package to use." msgstr "软件包数据类型。" #. type: item -#: guix-git/doc/guix.texi:33323 +#: guix-git/doc/guix.texi:33760 #, fuzzy, no-wrap msgid "@code{minimum-available-memory} (default: @code{10})" msgstr "@code{parallel-builds}(默认值:@code{1})" #. type: table -#: guix-git/doc/guix.texi:33325 +#: guix-git/doc/guix.texi:33762 msgid "The threshold for the minimum @emph{available} memory, in percentages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33326 +#: guix-git/doc/guix.texi:33763 #, fuzzy, no-wrap msgid "@code{minimum-free-swap} (default: @code{10})" msgstr "@code{speed}(默认值:@code{1.0})" #. type: table -#: guix-git/doc/guix.texi:33328 +#: guix-git/doc/guix.texi:33765 msgid "The threshold for the minimum free swap memory, in percentages." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33329 +#: guix-git/doc/guix.texi:33766 #, fuzzy, no-wrap msgid "@code{prefer-regexp} (default: @code{#f})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:33332 +#: guix-git/doc/guix.texi:33769 msgid "A regular expression (as a string) to match the names of the processes that should be preferably killed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33333 +#: guix-git/doc/guix.texi:33770 #, fuzzy, no-wrap msgid "@code{avoid-regexp} (default: @code{#f})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:33336 +#: guix-git/doc/guix.texi:33773 msgid "A regular expression (as a string) to match the names of the processes that should @emph{not} be killed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33337 +#: guix-git/doc/guix.texi:33774 #, fuzzy, no-wrap msgid "@code{memory-report-interval} (default: @code{0})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:33340 +#: guix-git/doc/guix.texi:33777 msgid "The interval in seconds at which a memory report is printed. It is disabled by default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33341 +#: guix-git/doc/guix.texi:33778 #, fuzzy, no-wrap msgid "@code{ignore-positive-oom-score-adj?} (default: @code{#f})" msgstr "@code{zonefile-load}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:33344 +#: guix-git/doc/guix.texi:33781 msgid "A boolean indicating whether the positive adjustments set in @file{/proc/*/oom_score_adj} should be ignored." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33345 +#: guix-git/doc/guix.texi:33782 #, fuzzy, no-wrap msgid "@code{show-debug-messages?} (default: @code{#f})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:33348 +#: guix-git/doc/guix.texi:33785 msgid "A boolean indicating whether debug messages should be printed. The logs are saved at @file{/var/log/earlyoom.log}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33349 +#: guix-git/doc/guix.texi:33786 #, fuzzy, no-wrap msgid "@code{send-notification-command} (default: @code{#f})" msgstr "@code{authentication-hook}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:33352 +#: guix-git/doc/guix.texi:33789 msgid "This can be used to provide a custom command used for sending notifications." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33355 +#: guix-git/doc/guix.texi:33792 #, no-wrap msgid "modprobe" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33356 +#: guix-git/doc/guix.texi:33793 #, no-wrap msgid "kernel module loader" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33357 +#: guix-git/doc/guix.texi:33794 #, no-wrap msgid "Kernel Module Loader Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33363 +#: guix-git/doc/guix.texi:33800 msgid "The kernel module loader service allows one to load loadable kernel modules at boot. This is especially useful for modules that don't autoload and need to be manually loaded, as is the case with @code{ddcci}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33364 +#: guix-git/doc/guix.texi:33801 #, no-wrap msgid "{Scheme Variable} kernel-module-loader-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33370 +#: guix-git/doc/guix.texi:33807 msgid "The service type for loading loadable kernel modules at boot with @command{modprobe}. Its value must be a list of strings representing module names. For example loading the drivers provided by @code{ddcci-driver-linux}, in debugging mode by passing some module parameters, can be done as follow:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33375 +#: guix-git/doc/guix.texi:33812 #, no-wrap msgid "" "(use-modules (gnu) (gnu services))\n" @@ -59885,7 +60713,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33379 +#: guix-git/doc/guix.texi:33816 #, no-wrap msgid "" "(define ddcci-config\n" @@ -59895,7 +60723,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33389 +#: guix-git/doc/guix.texi:33826 #, no-wrap msgid "" "(operating-system\n" @@ -59910,414 +60738,414 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33392 +#: guix-git/doc/guix.texi:33829 #, fuzzy, no-wrap #| msgid "daemon" msgid "rasdaemon" msgstr "后台进程" #. type: cindex -#: guix-git/doc/guix.texi:33393 +#: guix-git/doc/guix.texi:33830 #, no-wrap msgid "Platform Reliability, Availability and Serviceability daemon" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33394 +#: guix-git/doc/guix.texi:33831 #, fuzzy, no-wrap msgid "Rasdaemon Service" msgstr "邮件服务" #. type: Plain text -#: guix-git/doc/guix.texi:33399 +#: guix-git/doc/guix.texi:33836 msgid "The Rasdaemon service provides a daemon which monitors platform @acronym{RAS, Reliability@comma{} Availability@comma{} and Serviceability} reports from Linux kernel trace events, logging them to syslogd." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33402 +#: guix-git/doc/guix.texi:33839 msgid "Reliability, Availability and Serviceability is a concept used on servers meant to measure their robustness." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33405 +#: guix-git/doc/guix.texi:33842 msgid "@strong{Relability} is the probability that a system will produce correct outputs:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33407 +#: guix-git/doc/guix.texi:33844 #, no-wrap msgid "Generally measured as Mean Time Between Failures (MTBF), and" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33408 +#: guix-git/doc/guix.texi:33845 #, no-wrap msgid "Enhanced by features that help to avoid, detect and repair hardware" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:33410 +#: guix-git/doc/guix.texi:33847 msgid "faults" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33414 +#: guix-git/doc/guix.texi:33851 msgid "@strong{Availability} is the probability that a system is operational at a given time:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33416 +#: guix-git/doc/guix.texi:33853 #, no-wrap msgid "Generally measured as a percentage of downtime per a period of time, and" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33417 +#: guix-git/doc/guix.texi:33854 #, no-wrap msgid "Often uses mechanisms to detect and correct hardware faults in runtime." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33422 +#: guix-git/doc/guix.texi:33859 msgid "@strong{Serviceability} is the simplicity and speed with which a system can be repaired or maintained:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33424 +#: guix-git/doc/guix.texi:33861 #, no-wrap msgid "Generally measured on Mean Time Between Repair (MTBR)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33429 +#: guix-git/doc/guix.texi:33866 msgid "Among the monitoring measures, the most usual ones include:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33431 +#: guix-git/doc/guix.texi:33868 #, no-wrap msgid "CPU – detect errors at instruction execution and at L1/L2/L3 caches;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33432 +#: guix-git/doc/guix.texi:33869 #, no-wrap msgid "Memory – add error correction logic (ECC) to detect and correct errors;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33433 +#: guix-git/doc/guix.texi:33870 #, no-wrap msgid "I/O – add CRC checksums for transferred data;" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33434 +#: guix-git/doc/guix.texi:33871 #, no-wrap msgid "Storage – RAID, journal file systems, checksums, Self-Monitoring," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:33436 +#: guix-git/doc/guix.texi:33873 msgid "Analysis and Reporting Technology (SMART)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33442 +#: guix-git/doc/guix.texi:33879 msgid "By monitoring the number of occurrences of error detections, it is possible to identify if the probability of hardware errors is increasing, and, on such case, do a preventive maintenance to replace a degraded component while those errors are correctable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33446 +#: guix-git/doc/guix.texi:33883 msgid "For detailed information about the types of error events gathered and how to make sense of them, see the kernel administrator's guide at @url{https://www.kernel.org/doc/html/latest/admin-guide/ras.html}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33447 +#: guix-git/doc/guix.texi:33884 #, no-wrap msgid "{Scheme Variable} rasdaemon-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33450 +#: guix-git/doc/guix.texi:33887 msgid "Service type for the @command{rasdaemon} service. It accepts a @code{rasdaemon-configuration} object. Instantiating like" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33453 +#: guix-git/doc/guix.texi:33890 #, no-wrap msgid "(service rasdaemon-service-type)\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33457 +#: guix-git/doc/guix.texi:33894 msgid "will load with a default configuration, which monitors all events and logs to syslogd." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33459 +#: guix-git/doc/guix.texi:33896 #, fuzzy, no-wrap msgid "{Data Type} rasdaemon-configuration" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:33461 +#: guix-git/doc/guix.texi:33898 #, fuzzy msgid "The data type representing the configuration of @command{rasdaemon}." msgstr "管理操作系统配置。" #. type: item -#: guix-git/doc/guix.texi:33463 +#: guix-git/doc/guix.texi:33900 #, fuzzy, no-wrap msgid "@code{record?} (default: @code{#f})" msgstr "@code{max-zone-size}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:33468 +#: guix-git/doc/guix.texi:33905 msgid "A boolean indicating whether to record the events in an SQLite database. This provides a more structured access to the information contained in the log file. The database location is hard-coded to @file{/var/lib/rasdaemon/ras-mc_event.db}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33472 +#: guix-git/doc/guix.texi:33909 #, no-wrap msgid "zram" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33473 +#: guix-git/doc/guix.texi:33910 #, no-wrap msgid "compressed swap" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33474 +#: guix-git/doc/guix.texi:33911 #, no-wrap msgid "Compressed RAM-based block devices" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33475 +#: guix-git/doc/guix.texi:33912 #, fuzzy, no-wrap msgid "Zram Device Service" msgstr "游戏服务" #. type: Plain text -#: guix-git/doc/guix.texi:33481 +#: guix-git/doc/guix.texi:33918 msgid "The Zram device service provides a compressed swap device in system memory. The Linux Kernel documentation has more information about @uref{https://www.kernel.org/doc/html/latest/admin-guide/blockdev/zram.html,zram} devices." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33482 +#: guix-git/doc/guix.texi:33919 #, no-wrap msgid "{Scheme Variable} zram-device-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33486 +#: guix-git/doc/guix.texi:33923 msgid "This service creates the zram block device, formats it as swap and enables it as a swap device. The service's value is a @code{zram-device-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33487 +#: guix-git/doc/guix.texi:33924 #, no-wrap msgid "{Data Type} zram-device-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33490 +#: guix-git/doc/guix.texi:33927 msgid "This is the data type representing the configuration for the zram-device service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33492 +#: guix-git/doc/guix.texi:33929 #, fuzzy, no-wrap msgid "@code{size} (default @code{\"1G\"})" msgstr "@code{speed}(默认值:@code{1.0})" #. type: table -#: guix-git/doc/guix.texi:33496 +#: guix-git/doc/guix.texi:33933 msgid "This is the amount of space you wish to provide for the zram device. It accepts a string and can be a number of bytes or use a suffix, eg.: @code{\"512M\"} or @code{1024000}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33496 +#: guix-git/doc/guix.texi:33933 #, fuzzy, no-wrap msgid "@code{compression-algorithm} (default @code{'lzo})" msgstr "@code{compression-level}(默认值:@code{3})" #. type: table -#: guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:33937 msgid "This is the compression algorithm you wish to use. It is difficult to list all the possible compression options, but common ones supported by Guix's Linux Libre Kernel include @code{'lzo}, @code{'lz4} and @code{'zstd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33500 +#: guix-git/doc/guix.texi:33937 #, fuzzy, no-wrap msgid "@code{memory-limit} (default @code{0})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:33507 +#: guix-git/doc/guix.texi:33944 msgid "This is the maximum amount of memory which the zram device can use. Setting it to '0' disables the limit. While it is generally expected that compression will be 2:1, it is possible that uncompressable data can be written to swap and this is a method to limit how much memory can be used. It accepts a string and can be a number of bytes or use a suffix, eg.: @code{\"2G\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33507 +#: guix-git/doc/guix.texi:33944 #, fuzzy, no-wrap msgid "@code{priority} (default @code{-1})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:33512 +#: guix-git/doc/guix.texi:33949 msgid "This is the priority of the swap device created from the zram device. @code{swapon} accepts values between -1 and 32767, with higher values indicating higher priority. Higher priority swap will generally be used first." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33520 +#: guix-git/doc/guix.texi:33957 #, no-wrap msgid "{Scheme Variable} hurd-console-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33522 +#: guix-git/doc/guix.texi:33959 msgid "This service starts the fancy @code{VGA} console client on the Hurd." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33524 +#: guix-git/doc/guix.texi:33961 msgid "The service's value is a @code{hurd-console-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33526 +#: guix-git/doc/guix.texi:33963 #, no-wrap msgid "{Data Type} hurd-console-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33529 +#: guix-git/doc/guix.texi:33966 msgid "This is the data type representing the configuration for the hurd-console-service." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33531 guix-git/doc/guix.texi:33547 +#: guix-git/doc/guix.texi:33968 guix-git/doc/guix.texi:33984 #, fuzzy, no-wrap msgid "@code{hurd} (default: @var{hurd})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:33533 guix-git/doc/guix.texi:33549 +#: guix-git/doc/guix.texi:33970 guix-git/doc/guix.texi:33986 #, fuzzy msgid "The Hurd package to use." msgstr "软件包数据类型。" #. type: defvr -#: guix-git/doc/guix.texi:33536 +#: guix-git/doc/guix.texi:33973 #, no-wrap msgid "{Scheme Variable} hurd-getty-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33538 +#: guix-git/doc/guix.texi:33975 msgid "This service starts a tty using the Hurd @code{getty} program." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33540 +#: guix-git/doc/guix.texi:33977 msgid "The service's value is a @code{hurd-getty-configuration} record." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33542 +#: guix-git/doc/guix.texi:33979 #, no-wrap msgid "{Data Type} hurd-getty-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33545 +#: guix-git/doc/guix.texi:33982 msgid "This is the data type representing the configuration for the hurd-getty-service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33552 +#: guix-git/doc/guix.texi:33989 msgid "The name of the console this Getty runs on---e.g., @code{\"tty1\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33553 +#: guix-git/doc/guix.texi:33990 #, fuzzy, no-wrap msgid "@code{baud-rate} (default: @code{38400})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:33555 +#: guix-git/doc/guix.texi:33992 msgid "An integer specifying the baud rate of the tty." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33562 +#: guix-git/doc/guix.texi:33999 #, no-wrap msgid "fingerprint" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33563 +#: guix-git/doc/guix.texi:34000 #, no-wrap msgid "Fingerprint Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33567 +#: guix-git/doc/guix.texi:34004 msgid "The @code{(gnu services authentication)} module provides a DBus service to read and identify fingerprints via a fingerprint sensor." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33568 +#: guix-git/doc/guix.texi:34005 #, no-wrap msgid "{Scheme Variable} fprintd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33571 +#: guix-git/doc/guix.texi:34008 msgid "The service type for @command{fprintd}, which provides the fingerprint reading capability." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33574 +#: guix-git/doc/guix.texi:34011 #, no-wrap msgid "(service fprintd-service-type)\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33577 +#: guix-git/doc/guix.texi:34014 #, no-wrap msgid "sysctl" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33578 +#: guix-git/doc/guix.texi:34015 #, no-wrap msgid "System Control Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33582 +#: guix-git/doc/guix.texi:34019 msgid "The @code{(gnu services sysctl)} provides a service to configure kernel parameters at boot." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33583 +#: guix-git/doc/guix.texi:34020 #, no-wrap msgid "{Scheme Variable} sysctl-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33587 +#: guix-git/doc/guix.texi:34024 msgid "The service type for @command{sysctl}, which modifies kernel parameters under @file{/proc/sys/}. To enable IPv4 forwarding, it can be instantiated as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33592 +#: guix-git/doc/guix.texi:34029 #, no-wrap msgid "" "(service sysctl-service-type\n" @@ -60326,12 +61154,12 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33599 +#: guix-git/doc/guix.texi:34036 msgid "Since @code{sysctl-service-type} is used in the default lists of services, @code{%base-services} and @code{%desktop-services}, you can use @code{modify-services} to change its configuration and add the kernel parameters that you want (@pxref{Service Reference, @code{modify-services}})." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33606 +#: guix-git/doc/guix.texi:34043 #, no-wrap msgid "" "(modify-services %base-services\n" @@ -60342,463 +61170,463 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33610 +#: guix-git/doc/guix.texi:34047 #, no-wrap msgid "{Data Type} sysctl-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33612 +#: guix-git/doc/guix.texi:34049 msgid "The data type representing the configuration of @command{sysctl}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33614 +#: guix-git/doc/guix.texi:34051 #, no-wrap msgid "@code{sysctl} (default: @code{(file-append procps \"/sbin/sysctl\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33616 +#: guix-git/doc/guix.texi:34053 msgid "The @command{sysctl} executable to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33617 +#: guix-git/doc/guix.texi:34054 #, fuzzy, no-wrap msgid "@code{settings} (default: @code{%default-sysctl-settings})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:33619 +#: guix-git/doc/guix.texi:34056 msgid "An association list specifies kernel parameters and their values." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33622 +#: guix-git/doc/guix.texi:34059 #, no-wrap msgid "{Scheme Variable} %default-sysctl-settings" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33625 +#: guix-git/doc/guix.texi:34062 msgid "An association list specifying the default @command{sysctl} parameters on Guix System." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33627 +#: guix-git/doc/guix.texi:34064 #, no-wrap msgid "pcscd" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33628 +#: guix-git/doc/guix.texi:34065 #, no-wrap msgid "PC/SC Smart Card Daemon Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33635 +#: guix-git/doc/guix.texi:34072 msgid "The @code{(gnu services security-token)} module provides the following service to run @command{pcscd}, the PC/SC Smart Card Daemon. @command{pcscd} is the daemon program for pcsc-lite and the MuscleCard framework. It is a resource manager that coordinates communications with smart card readers, smart cards and cryptographic tokens that are connected to the system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33636 +#: guix-git/doc/guix.texi:34073 #, no-wrap msgid "{Scheme Variable} pcscd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33640 +#: guix-git/doc/guix.texi:34077 msgid "Service type for the @command{pcscd} service. Its value must be a @code{pcscd-configuration} object. To run pcscd in the default configuration, instantiate it as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33643 +#: guix-git/doc/guix.texi:34080 #, no-wrap msgid "(service pcscd-service-type)\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33646 +#: guix-git/doc/guix.texi:34083 #, no-wrap msgid "{Data Type} pcscd-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33648 +#: guix-git/doc/guix.texi:34085 msgid "The data type representing the configuration of @command{pcscd}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33650 +#: guix-git/doc/guix.texi:34087 #, no-wrap msgid "@code{pcsc-lite} (default: @code{pcsc-lite})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33652 +#: guix-git/doc/guix.texi:34089 msgid "The pcsc-lite package that provides pcscd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33652 +#: guix-git/doc/guix.texi:34089 #, no-wrap msgid "@code{usb-drivers} (default: @code{(list ccid)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33655 +#: guix-git/doc/guix.texi:34092 msgid "List of packages that provide USB drivers to pcscd. Drivers are expected to be under @file{pcsc/drivers} in the store directory of the package." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33658 +#: guix-git/doc/guix.texi:34095 #, no-wrap msgid "lirc" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33659 +#: guix-git/doc/guix.texi:34096 #, no-wrap msgid "Lirc Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33662 +#: guix-git/doc/guix.texi:34099 msgid "The @code{(gnu services lirc)} module provides the following service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33663 +#: guix-git/doc/guix.texi:34100 #, no-wrap msgid "{Scheme Procedure} lirc-service [#:lirc lirc] @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33668 +#: guix-git/doc/guix.texi:34105 msgid "[#:device #f] [#:driver #f] [#:config-file #f] @ [#:extra-options '()] Return a service that runs @url{http://www.lirc.org,LIRC}, a daemon that decodes infrared signals from remote controls." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33672 +#: guix-git/doc/guix.texi:34109 msgid "Optionally, @var{device}, @var{driver} and @var{config-file} (configuration file name) may be specified. See @command{lircd} manual for details." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33675 +#: guix-git/doc/guix.texi:34112 msgid "Finally, @var{extra-options} is a list of additional command-line options passed to @command{lircd}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33677 +#: guix-git/doc/guix.texi:34114 #, no-wrap msgid "spice" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33678 +#: guix-git/doc/guix.texi:34115 #, no-wrap msgid "Spice Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33681 +#: guix-git/doc/guix.texi:34118 msgid "The @code{(gnu services spice)} module provides the following service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33682 +#: guix-git/doc/guix.texi:34119 #, no-wrap msgid "{Scheme Procedure} spice-vdagent-service [#:spice-vdagent]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33686 +#: guix-git/doc/guix.texi:34123 msgid "Returns a service that runs @url{https://www.spice-space.org,VDAGENT}, a daemon that enables sharing the clipboard with a vm and setting the guest display resolution when the graphical console window resizes." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33688 +#: guix-git/doc/guix.texi:34125 #, no-wrap msgid "inputattach" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33689 +#: guix-git/doc/guix.texi:34126 #, no-wrap msgid "inputattach Service" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33691 +#: guix-git/doc/guix.texi:34128 #, no-wrap msgid "tablet input, for Xorg" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33692 +#: guix-git/doc/guix.texi:34129 #, no-wrap msgid "touchscreen input, for Xorg" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33696 +#: guix-git/doc/guix.texi:34133 msgid "The @uref{https://linuxwacom.github.io/, inputattach} service allows you to use input devices such as Wacom tablets, touchscreens, or joysticks with the Xorg display server." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33697 +#: guix-git/doc/guix.texi:34134 #, no-wrap msgid "{Scheme Variable} inputattach-service-type" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33700 +#: guix-git/doc/guix.texi:34137 msgid "Type of a service that runs @command{inputattach} on a device and dispatches events from it." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33702 +#: guix-git/doc/guix.texi:34139 #, no-wrap msgid "{Data Type} inputattach-configuration" msgstr "" #. type: item -#: guix-git/doc/guix.texi:33704 +#: guix-git/doc/guix.texi:34141 #, no-wrap msgid "@code{device-type} (default: @code{\"wacom\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33707 +#: guix-git/doc/guix.texi:34144 msgid "The type of device to connect to. Run @command{inputattach --help}, from the @code{inputattach} package, to see the list of supported device types." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33708 +#: guix-git/doc/guix.texi:34145 #, no-wrap msgid "@code{device} (default: @code{\"/dev/ttyS0\"})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33710 +#: guix-git/doc/guix.texi:34147 msgid "The device file to connect to the device." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33714 +#: guix-git/doc/guix.texi:34151 msgid "Baud rate to use for the serial connection. Should be a number or @code{#f}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33715 +#: guix-git/doc/guix.texi:34152 #, no-wrap msgid "@code{log-file} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33717 +#: guix-git/doc/guix.texi:34154 msgid "If true, this must be the name of a file to log messages to." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33720 +#: guix-git/doc/guix.texi:34157 #, fuzzy, no-wrap msgid "Dictionary Service" msgstr "定义服务" #. type: cindex -#: guix-git/doc/guix.texi:33721 +#: guix-git/doc/guix.texi:34158 #, no-wrap msgid "dictionary" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33723 +#: guix-git/doc/guix.texi:34160 msgid "The @code{(gnu services dict)} module provides the following service:" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33724 +#: guix-git/doc/guix.texi:34161 #, no-wrap msgid "{Scheme Variable} dicod-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33727 +#: guix-git/doc/guix.texi:34164 msgid "This is the type of the service that runs the @command{dicod} daemon, an implementation of DICT server (@pxref{Dicod,,, dico, GNU Dico Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33729 +#: guix-git/doc/guix.texi:34166 #, no-wrap msgid "{Scheme Procedure} dicod-service [#:config (dicod-configuration)]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33732 +#: guix-git/doc/guix.texi:34169 msgid "Return a service that runs the @command{dicod} daemon, an implementation of DICT server (@pxref{Dicod,,, dico, GNU Dico Manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33736 +#: guix-git/doc/guix.texi:34173 msgid "The optional @var{config} argument specifies the configuration for @command{dicod}, which should be a @code{} object, by default it serves the GNU Collaborative International Dictionary of English." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:33740 +#: guix-git/doc/guix.texi:34177 msgid "You can add @command{open localhost} to your @file{~/.dico} file to make @code{localhost} the default server for @command{dico} client (@pxref{Initialization File,,, dico, GNU Dico Manual})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33742 +#: guix-git/doc/guix.texi:34179 #, no-wrap msgid "{Data Type} dicod-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33744 +#: guix-git/doc/guix.texi:34181 msgid "Data type representing the configuration of dicod." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33746 +#: guix-git/doc/guix.texi:34183 #, no-wrap msgid "@code{dico} (default: @var{dico})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33748 +#: guix-git/doc/guix.texi:34185 msgid "Package object of the GNU Dico dictionary server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33749 +#: guix-git/doc/guix.texi:34186 #, no-wrap msgid "@code{interfaces} (default: @var{'(\"localhost\")})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33753 +#: guix-git/doc/guix.texi:34190 msgid "This is the list of IP addresses and ports and possibly socket file names to listen to (@pxref{Server Settings, @code{listen} directive,, dico, GNU Dico Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33754 +#: guix-git/doc/guix.texi:34191 #, no-wrap msgid "@code{handlers} (default: @var{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33756 +#: guix-git/doc/guix.texi:34193 msgid "List of @code{} objects denoting handlers (module instances)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33757 +#: guix-git/doc/guix.texi:34194 #, no-wrap msgid "@code{databases} (default: @var{(list %dicod-database:gcide)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33759 +#: guix-git/doc/guix.texi:34196 msgid "List of @code{} objects denoting dictionaries to be served." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33762 +#: guix-git/doc/guix.texi:34199 #, no-wrap msgid "{Data Type} dicod-handler" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33764 +#: guix-git/doc/guix.texi:34201 msgid "Data type representing a dictionary handler (module instance)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33768 +#: guix-git/doc/guix.texi:34205 msgid "Name of the handler (module instance)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33769 +#: guix-git/doc/guix.texi:34206 #, no-wrap msgid "@code{module} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33773 +#: guix-git/doc/guix.texi:34210 msgid "Name of the dicod module of the handler (instance). If it is @code{#f}, the module has the same name as the handler. (@pxref{Modules,,, dico, GNU Dico Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33776 +#: guix-git/doc/guix.texi:34213 msgid "List of strings or gexps representing the arguments for the module handler" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33779 +#: guix-git/doc/guix.texi:34216 #, no-wrap msgid "{Data Type} dicod-database" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33781 +#: guix-git/doc/guix.texi:34218 msgid "Data type representing a dictionary database." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33785 +#: guix-git/doc/guix.texi:34222 msgid "Name of the database, will be used in DICT commands." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:33786 +#: guix-git/doc/guix.texi:34223 #, no-wrap msgid "handler" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33789 +#: guix-git/doc/guix.texi:34226 msgid "Name of the dicod handler (module instance) used by this database (@pxref{Handlers,,, dico, GNU Dico Manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33790 +#: guix-git/doc/guix.texi:34227 #, no-wrap msgid "@code{complex?} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33793 +#: guix-git/doc/guix.texi:34230 msgid "Whether the database configuration complex. The complex configuration will need a corresponding @code{} object, otherwise not." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33797 +#: guix-git/doc/guix.texi:34234 msgid "List of strings or gexps representing the arguments for the database (@pxref{Databases,,, dico, GNU Dico Manual})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33800 +#: guix-git/doc/guix.texi:34237 #, no-wrap msgid "{Scheme Variable} %dicod-database:gcide" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33803 +#: guix-git/doc/guix.texi:34240 msgid "A @code{} object serving the GNU Collaborative International Dictionary of English using the @code{gcide} package." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33806 +#: guix-git/doc/guix.texi:34243 msgid "The following is an example @code{dicod-service} configuration." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33821 +#: guix-git/doc/guix.texi:34258 #, no-wrap msgid "" "(dicod-service #:config\n" @@ -60817,140 +61645,140 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33823 +#: guix-git/doc/guix.texi:34260 #, no-wrap msgid "Docker" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33824 +#: guix-git/doc/guix.texi:34261 #, no-wrap msgid "Docker Service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:33827 +#: guix-git/doc/guix.texi:34264 msgid "The @code{(gnu services docker)} module provides the following services." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33828 +#: guix-git/doc/guix.texi:34265 #, no-wrap msgid "{Scheme Variable} docker-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33833 +#: guix-git/doc/guix.texi:34270 msgid "This is the type of the service that runs @url{https://www.docker.com,Docker}, a daemon that can execute application bundles (sometimes referred to as ``containers'') in isolated environments." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33836 +#: guix-git/doc/guix.texi:34273 #, no-wrap msgid "{Data Type} docker-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33838 +#: guix-git/doc/guix.texi:34275 msgid "This is the data type representing the configuration of Docker and Containerd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33841 +#: guix-git/doc/guix.texi:34278 #, fuzzy, no-wrap msgid "@code{docker} (default: @code{docker})" msgstr "@code{xfce}(默认值:@code{xfce})" #. type: table -#: guix-git/doc/guix.texi:33843 +#: guix-git/doc/guix.texi:34280 msgid "The Docker daemon package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33844 +#: guix-git/doc/guix.texi:34281 #, fuzzy, no-wrap msgid "@code{docker-cli} (default: @code{docker-cli})" msgstr "@code{xfce}(默认值:@code{xfce})" #. type: table -#: guix-git/doc/guix.texi:33846 +#: guix-git/doc/guix.texi:34283 msgid "The Docker client package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33847 +#: guix-git/doc/guix.texi:34284 #, no-wrap msgid "@code{containerd} (default: @var{containerd})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33849 +#: guix-git/doc/guix.texi:34286 msgid "The Containerd package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33850 +#: guix-git/doc/guix.texi:34287 #, no-wrap msgid "@code{proxy} (default @var{docker-libnetwork-cmd-proxy})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33852 +#: guix-git/doc/guix.texi:34289 msgid "The Docker user-land networking proxy package to use." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33853 +#: guix-git/doc/guix.texi:34290 #, fuzzy, no-wrap msgid "@code{enable-proxy?} (default @code{#t})" msgstr "@code{dnssec-policy}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:33855 +#: guix-git/doc/guix.texi:34292 msgid "Enable or disable the use of the Docker user-land networking proxy." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33856 +#: guix-git/doc/guix.texi:34293 #, fuzzy, no-wrap msgid "@code{debug?} (default @code{#f})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:33858 +#: guix-git/doc/guix.texi:34295 #, fuzzy msgid "Enable or disable debug output." msgstr "怎么开启或关闭substitute。" #. type: item -#: guix-git/doc/guix.texi:33859 +#: guix-git/doc/guix.texi:34296 #, fuzzy, no-wrap msgid "@code{enable-iptables?} (default @code{#t})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:33861 +#: guix-git/doc/guix.texi:34298 msgid "Enable or disable the addition of iptables rules." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33862 +#: guix-git/doc/guix.texi:34299 #, fuzzy, no-wrap msgid "@code{environment-variables} (default: @code{()})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:33864 +#: guix-git/doc/guix.texi:34301 msgid "List of environment variables to set for @command{dockerd}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33867 +#: guix-git/doc/guix.texi:34304 msgid "This must be a list of strings where each string has the form @samp{@var{key}=@var{value}} as in this example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33871 +#: guix-git/doc/guix.texi:34308 #, no-wrap msgid "" "(list \"LANGUAGE=eo:ca:eu\"\n" @@ -60958,201 +61786,201 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33876 +#: guix-git/doc/guix.texi:34313 #, no-wrap msgid "Singularity, container service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33877 +#: guix-git/doc/guix.texi:34314 #, no-wrap msgid "{Scheme Variable} singularity-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33882 +#: guix-git/doc/guix.texi:34319 msgid "This is the type of the service that allows you to run @url{https://www.sylabs.io/singularity/, Singularity}, a Docker-style tool to create and run application bundles (aka. ``containers''). The value for this service is the Singularity package to use." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33886 +#: guix-git/doc/guix.texi:34323 msgid "The service does not install a daemon; instead, it installs helper programs as setuid-root (@pxref{Setuid Programs}) such that unprivileged users can invoke @command{singularity run} and similar commands." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33888 +#: guix-git/doc/guix.texi:34325 #, no-wrap msgid "Audit" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33889 +#: guix-git/doc/guix.texi:34326 #, fuzzy, no-wrap msgid "Auditd Service" msgstr "音频服务" #. type: Plain text -#: guix-git/doc/guix.texi:33892 +#: guix-git/doc/guix.texi:34329 msgid "The @code{(gnu services auditd)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33893 +#: guix-git/doc/guix.texi:34330 #, no-wrap msgid "{Scheme Variable} auditd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33898 +#: guix-git/doc/guix.texi:34335 msgid "This is the type of the service that runs @url{https://people.redhat.com/sgrubb/audit/,auditd}, a daemon that tracks security-relevant information on your system." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33900 +#: guix-git/doc/guix.texi:34337 msgid "Examples of things that can be tracked:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33904 +#: guix-git/doc/guix.texi:34341 #, fuzzy msgid "File accesses" msgstr "文件系统" #. type: enumerate -#: guix-git/doc/guix.texi:33906 +#: guix-git/doc/guix.texi:34343 #, fuzzy msgid "System calls" msgstr "系统安装" #. type: enumerate -#: guix-git/doc/guix.texi:33908 +#: guix-git/doc/guix.texi:34345 msgid "Invoked commands" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33910 +#: guix-git/doc/guix.texi:34347 msgid "Failed login attempts" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33912 +#: guix-git/doc/guix.texi:34349 msgid "Firewall filtering" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:33914 +#: guix-git/doc/guix.texi:34351 #, fuzzy msgid "Network access" msgstr "网络服务" #. type: defvr -#: guix-git/doc/guix.texi:33925 +#: guix-git/doc/guix.texi:34362 msgid "@command{auditctl} from the @code{audit} package can be used in order to add or remove events to be tracked (until the next reboot). In order to permanently track events, put the command line arguments of auditctl into a file called @code{audit.rules} in the configuration directory (see below). @command{aureport} from the @code{audit} package can be used in order to view a report of all recorded events. The audit daemon by default logs into the file @file{/var/log/audit.log}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33928 +#: guix-git/doc/guix.texi:34365 #, fuzzy, no-wrap msgid "{Data Type} auditd-configuration" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:33930 +#: guix-git/doc/guix.texi:34367 msgid "This is the data type representing the configuration of auditd." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33933 +#: guix-git/doc/guix.texi:34370 #, fuzzy, no-wrap msgid "@code{audit} (default: @code{audit})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:33935 +#: guix-git/doc/guix.texi:34372 #, fuzzy msgid "The audit package to use." msgstr "软件包数据类型。" #. type: item -#: guix-git/doc/guix.texi:33936 +#: guix-git/doc/guix.texi:34373 #, no-wrap msgid "@code{configuration-directory} (default: @code{%default-auditd-configuration-directory})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:33940 +#: guix-git/doc/guix.texi:34377 msgid "The directory containing the configuration file for the audit package, which must be named @code{auditd.conf}, and optionally some audit rules to instantiate on startup." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33944 +#: guix-git/doc/guix.texi:34381 #, no-wrap msgid "rshiny" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33945 +#: guix-git/doc/guix.texi:34382 #, fuzzy, no-wrap msgid "R-Shiny service" msgstr "电话服务。" #. type: Plain text -#: guix-git/doc/guix.texi:33948 +#: guix-git/doc/guix.texi:34385 msgid "The @code{(gnu services science)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33949 +#: guix-git/doc/guix.texi:34386 #, no-wrap msgid "{Scheme Variable} rshiny-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33954 +#: guix-git/doc/guix.texi:34391 msgid "This is a type of service which is used to run a webapp created with @code{r-shiny}. This service sets the @env{R_LIBS_USER} environment variable and runs the provided script to call @code{runApp}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33955 +#: guix-git/doc/guix.texi:34392 #, no-wrap msgid "{Data Type} rshiny-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:33957 +#: guix-git/doc/guix.texi:34394 msgid "This is the data type representing the configuration of rshiny." msgstr "" #. type: item -#: guix-git/doc/guix.texi:33960 +#: guix-git/doc/guix.texi:34397 #, fuzzy, no-wrap msgid "@code{package} (default: @code{r-shiny})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:33962 +#: guix-git/doc/guix.texi:34399 #, fuzzy msgid "The package to use." msgstr "软件包数据类型。" #. type: item -#: guix-git/doc/guix.texi:33963 +#: guix-git/doc/guix.texi:34400 #, fuzzy, no-wrap msgid "@code{binary} (defaunlt @code{\"rshiny\"})" msgstr "@code{display}(默认值:@code{\":0\"})" #. type: table -#: guix-git/doc/guix.texi:33966 +#: guix-git/doc/guix.texi:34403 msgid "The name of the binary or shell script located at @code{package/bin/} to run when the service is run." msgstr "" #. type: table -#: guix-git/doc/guix.texi:33968 +#: guix-git/doc/guix.texi:34405 msgid "The common way to create this file is as follows:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:33985 +#: guix-git/doc/guix.texi:34422 #, no-wrap msgid "" "@dots{}\n" @@ -61173,35 +62001,35 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:33991 +#: guix-git/doc/guix.texi:34428 #, no-wrap msgid "Nix" msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:33992 +#: guix-git/doc/guix.texi:34429 #, fuzzy, no-wrap msgid "Nix service" msgstr "DNS服务" #. type: Plain text -#: guix-git/doc/guix.texi:33995 +#: guix-git/doc/guix.texi:34432 msgid "The @code{(gnu services nix)} module provides the following service." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:33996 +#: guix-git/doc/guix.texi:34433 #, no-wrap msgid "{Scheme Variable} nix-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34001 +#: guix-git/doc/guix.texi:34438 msgid "This is the type of the service that runs build daemon of the @url{https://nixos.org/nix/, Nix} package manager. Here is an example showing how to use it:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34006 +#: guix-git/doc/guix.texi:34443 #, no-wrap msgid "" "(use-modules (gnu))\n" @@ -61211,7 +62039,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34011 +#: guix-git/doc/guix.texi:34448 #, no-wrap msgid "" "(operating-system\n" @@ -61222,7 +62050,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34014 +#: guix-git/doc/guix.texi:34451 #, no-wrap msgid "" " (services (append (list (service nix-service-type))\n" @@ -61230,29 +62058,29 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34017 +#: guix-git/doc/guix.texi:34454 msgid "After @command{guix system reconfigure} configure Nix for your user:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34019 +#: guix-git/doc/guix.texi:34456 #, no-wrap msgid "Add a Nix channel and update it. See" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:34021 +#: guix-git/doc/guix.texi:34458 msgid "@url{https://nixos.org/nix/manual/, Nix Package Manager Guide}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34022 +#: guix-git/doc/guix.texi:34459 #, no-wrap msgid "Create a symlink to your profile and activate Nix profile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34028 +#: guix-git/doc/guix.texi:34465 #, no-wrap msgid "" "$ ln -s \"/nix/var/nix/profiles/per-user/$USER/profile\" ~/.nix-profile\n" @@ -61260,78 +62088,78 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34032 +#: guix-git/doc/guix.texi:34469 #, fuzzy, no-wrap msgid "{Data Type} nix-configuration" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:34034 +#: guix-git/doc/guix.texi:34471 msgid "This data type represents the configuration of the Nix daemon." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34036 +#: guix-git/doc/guix.texi:34473 #, fuzzy, no-wrap msgid "@code{nix} (default: @code{nix})" msgstr "@code{xfce}(默认值:@code{xfce})" #. type: table -#: guix-git/doc/guix.texi:34038 +#: guix-git/doc/guix.texi:34475 #, fuzzy msgid "The Nix package to use." msgstr "软件包数据类型。" #. type: item -#: guix-git/doc/guix.texi:34039 +#: guix-git/doc/guix.texi:34476 #, fuzzy, no-wrap msgid "@code{sandbox} (default: @code{#t})" msgstr "@code{speed}(默认值:@code{1.0})" #. type: table -#: guix-git/doc/guix.texi:34041 +#: guix-git/doc/guix.texi:34478 msgid "Specifies whether builds are sandboxed by default." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34042 +#: guix-git/doc/guix.texi:34479 #, fuzzy, no-wrap msgid "@code{build-sandbox-items} (default: @code{'()})" msgstr "@code{includes}(默认值:@code{'()})" #. type: table -#: guix-git/doc/guix.texi:34045 +#: guix-git/doc/guix.texi:34482 msgid "This is a list of strings or objects appended to the @code{build-sandbox-items} field of the configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34053 +#: guix-git/doc/guix.texi:34490 msgid "Extra command line options for @code{nix-service-type}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34059 +#: guix-git/doc/guix.texi:34496 #, no-wrap msgid "setuid programs" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34069 +#: guix-git/doc/guix.texi:34506 msgid "Some programs need to run with ``root'' privileges, even when they are launched by unprivileged users. A notorious example is the @command{passwd} program, which users can run to change their password, and which needs to access the @file{/etc/passwd} and @file{/etc/shadow} files---something normally restricted to root, for obvious security reasons. To address that, these executables are @dfn{setuid-root}, meaning that they always run with root privileges (@pxref{How Change Persona,,, libc, The GNU C Library Reference Manual}, for more info about the setuid mechanism)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34076 +#: guix-git/doc/guix.texi:34513 msgid "The store itself @emph{cannot} contain setuid programs: that would be a security issue since any user on the system can write derivations that populate the store (@pxref{The Store}). Thus, a different mechanism is used: instead of changing the setuid bit directly on files that are in the store, we let the system administrator @emph{declare} which programs should be setuid root." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34083 +#: guix-git/doc/guix.texi:34520 msgid "The @code{setuid-programs} field of an @code{operating-system} declaration contains a list of @code{} denoting the names of programs to have a setuid or setgid bit set (@pxref{Using the Configuration System}). For instance, the @command{mount.nfs} program, which is part of the nfs-utils package, with a setuid root can be designated like this:" msgstr "" -#. type: example -#: guix-git/doc/guix.texi:34087 +#. type: lisp +#: guix-git/doc/guix.texi:34524 #, no-wrap msgid "" "(setuid-program\n" @@ -61339,163 +62167,165 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34092 +#: guix-git/doc/guix.texi:34529 msgid "And then, to make @command{mount.nfs} setuid on your system, add the previous example to your operating system declaration by appending it to @code{%setuid-programs} like this:" msgstr "" -#. type: example -#: guix-git/doc/guix.texi:34098 +#. type: lisp +#: guix-git/doc/guix.texi:34537 #, no-wrap msgid "" -"(setuid-programs\n" -" (append (list (setuid-program\n" -" (program (file-append nfs-utils \"/sbin/mount.nfs\"))))\n" -" %setuid-programs))\n" +"(operating-system\n" +" ;; Some fields omitted...\n" +" (setuid-programs\n" +" (append (list (setuid-program\n" +" (program (file-append nfs-utils \"/sbin/mount.nfs\")))\n" +" %setuid-programs))))\n" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34100 +#: guix-git/doc/guix.texi:34539 #, fuzzy, no-wrap msgid "{Data Type} setuid-program" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:34102 +#: guix-git/doc/guix.texi:34541 #, fuzzy msgid "This data type represents a program with a setuid or setgid bit set." msgstr "管理操作系统配置。" #. type: code{#1} -#: guix-git/doc/guix.texi:34104 +#: guix-git/doc/guix.texi:34543 #, no-wrap msgid "program" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34106 +#: guix-git/doc/guix.texi:34545 msgid "A file-like object having its setuid and/or setgid bit set." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34107 +#: guix-git/doc/guix.texi:34546 #, fuzzy, no-wrap msgid "@code{setuid?} (default: @code{#t})" msgstr "@code{dnssec-policy}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:34109 +#: guix-git/doc/guix.texi:34548 msgid "Whether to set user setuid bit." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34110 +#: guix-git/doc/guix.texi:34549 #, fuzzy, no-wrap msgid "@code{setgid?} (default: @code{#f})" msgstr "@code{dnssec-policy}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:34112 +#: guix-git/doc/guix.texi:34551 msgid "Whether to set group setgid bit." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34113 +#: guix-git/doc/guix.texi:34552 #, fuzzy, no-wrap msgid "@code{user} (default: @code{0})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:34116 +#: guix-git/doc/guix.texi:34555 msgid "UID (integer) or user name (string) for the user owner of the program, defaults to root." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34117 +#: guix-git/doc/guix.texi:34556 #, fuzzy, no-wrap msgid "@code{group} (default: @code{0})" msgstr "@code{gnome}(默认值:@code{gnome})" #. type: table -#: guix-git/doc/guix.texi:34120 +#: guix-git/doc/guix.texi:34559 msgid "GID (integer) goup name (string) for the group owner of the program, defaults to root." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34126 +#: guix-git/doc/guix.texi:34565 msgid "A default set of setuid programs is defined by the @code{%setuid-programs} variable of the @code{(gnu system)} module." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34127 +#: guix-git/doc/guix.texi:34566 #, no-wrap msgid "{Scheme Variable} %setuid-programs" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34130 +#: guix-git/doc/guix.texi:34569 msgid "A list of @code{} denoting common programs that are setuid-root." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34133 +#: guix-git/doc/guix.texi:34572 msgid "The list includes commands such as @command{passwd}, @command{ping}, @command{su}, and @command{sudo}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34139 +#: guix-git/doc/guix.texi:34578 msgid "Under the hood, the actual setuid programs are created in the @file{/run/setuid-programs} directory at system activation time. The files in this directory refer to the ``real'' binaries, which are in the store." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34143 +#: guix-git/doc/guix.texi:34582 #, no-wrap msgid "HTTPS, certificates" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34144 +#: guix-git/doc/guix.texi:34583 #, no-wrap msgid "X.509 certificates" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34145 +#: guix-git/doc/guix.texi:34584 #, no-wrap msgid "TLS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34152 +#: guix-git/doc/guix.texi:34591 msgid "Web servers available over HTTPS (that is, HTTP over the transport-layer security mechanism, TLS) send client programs an @dfn{X.509 certificate} that the client can then use to @emph{authenticate} the server. To do that, clients verify that the server's certificate is signed by a so-called @dfn{certificate authority} (CA). But to verify the CA's signature, clients must have first acquired the CA's certificate." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34156 +#: guix-git/doc/guix.texi:34595 msgid "Web browsers such as GNU@tie{}IceCat include their own set of CA certificates, such that they are able to verify CA signatures out-of-the-box." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34160 +#: guix-git/doc/guix.texi:34599 msgid "However, most other programs that can talk HTTPS---@command{wget}, @command{git}, @command{w3m}, etc.---need to be told where CA certificates can be found." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34167 +#: guix-git/doc/guix.texi:34606 msgid "In Guix, this is done by adding a package that provides certificates to the @code{packages} field of the @code{operating-system} declaration (@pxref{operating-system Reference}). Guix includes one such package, @code{nss-certs}, which is a set of CA certificates provided as part of Mozilla's Network Security Services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34172 +#: guix-git/doc/guix.texi:34611 msgid "Note that it is @emph{not} part of @code{%base-packages}, so you need to explicitly add it. The @file{/etc/ssl/certs} directory, which is where most applications and libraries look for certificates by default, points to the certificates installed globally." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34182 +#: guix-git/doc/guix.texi:34621 msgid "Unprivileged users, including users of Guix on a foreign distro, can also install their own certificate package in their profile. A number of environment variables need to be defined so that applications and libraries know where to find them. Namely, the OpenSSL library honors the @env{SSL_CERT_DIR} and @env{SSL_CERT_FILE} variables. Some applications add their own environment variables; for instance, the Git version control system honors the certificate bundle pointed to by the @env{GIT_SSL_CAINFO} environment variable. Thus, you would typically run something like:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34188 +#: guix-git/doc/guix.texi:34627 #, no-wrap msgid "" "guix install nss-certs\n" @@ -61505,12 +62335,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34193 +#: guix-git/doc/guix.texi:34632 msgid "As another example, R requires the @env{CURL_CA_BUNDLE} environment variable to point to a certificate bundle, so you would have to run something like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34197 +#: guix-git/doc/guix.texi:34636 #, no-wrap msgid "" "guix install nss-certs\n" @@ -61518,51 +62348,51 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34201 +#: guix-git/doc/guix.texi:34640 msgid "For other applications you may want to look up the required environment variable in the relevant documentation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34206 +#: guix-git/doc/guix.texi:34645 #, no-wrap msgid "name service switch" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34207 +#: guix-git/doc/guix.texi:34646 #, no-wrap msgid "NSS" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34216 +#: guix-git/doc/guix.texi:34655 msgid "The @code{(gnu system nss)} module provides bindings to the configuration file of the libc @dfn{name service switch} or @dfn{NSS} (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference Manual}). In a nutshell, the NSS is a mechanism that allows libc to be extended with new ``name'' lookup methods for system databases, which includes host names, service names, user accounts, and more (@pxref{Name Service Switch, System Databases and Name Service Switch,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34223 +#: guix-git/doc/guix.texi:34662 msgid "The NSS configuration specifies, for each system database, which lookup method is to be used, and how the various methods are chained together---for instance, under which circumstances NSS should try the next method in the list. The NSS configuration is given in the @code{name-service-switch} field of @code{operating-system} declarations (@pxref{operating-system Reference, @code{name-service-switch}})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34224 +#: guix-git/doc/guix.texi:34663 #, no-wrap msgid "nss-mdns" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34225 +#: guix-git/doc/guix.texi:34664 #, no-wrap msgid ".local, host name lookup" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34230 +#: guix-git/doc/guix.texi:34669 msgid "As an example, the declaration below configures the NSS to use the @uref{https://0pointer.de/lennart/projects/nss-mdns/, @code{nss-mdns} back-end}, which supports host name lookups over multicast DNS (mDNS) for host names ending in @code{.local}:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34234 +#: guix-git/doc/guix.texi:34673 #, no-wrap msgid "" "(name-service-switch\n" @@ -61571,7 +62401,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34239 +#: guix-git/doc/guix.texi:34678 #, no-wrap msgid "" " ;; If the above did not succeed, try\n" @@ -61582,7 +62412,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34245 +#: guix-git/doc/guix.texi:34684 #, no-wrap msgid "" " ;; 'mdns_minimal' is authoritative for\n" @@ -61594,7 +62424,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34249 +#: guix-git/doc/guix.texi:34688 #, no-wrap msgid "" " ;; Then fall back to DNS.\n" @@ -61604,7 +62434,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34253 +#: guix-git/doc/guix.texi:34692 #, no-wrap msgid "" " ;; Finally, try with the \"full\" 'mdns'.\n" @@ -61613,151 +62443,151 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34258 +#: guix-git/doc/guix.texi:34697 msgid "Do not worry: the @code{%mdns-host-lookup-nss} variable (see below) contains this configuration, so you will not have to type it if all you want is to have @code{.local} host lookup working." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34266 +#: guix-git/doc/guix.texi:34705 msgid "Note that, in this case, in addition to setting the @code{name-service-switch} of the @code{operating-system} declaration, you also need to use @code{avahi-service-type} (@pxref{Networking Services, @code{avahi-service-type}}), or @code{%desktop-services}, which includes it (@pxref{Desktop Services}). Doing this makes @code{nss-mdns} accessible to the name service cache daemon (@pxref{Base Services, @code{nscd-service}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34269 +#: guix-git/doc/guix.texi:34708 msgid "For convenience, the following variables provide typical NSS configurations." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34270 +#: guix-git/doc/guix.texi:34709 #, no-wrap msgid "{Scheme Variable} %default-nss" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34273 +#: guix-git/doc/guix.texi:34712 msgid "This is the default name service switch configuration, a @code{name-service-switch} object." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34275 +#: guix-git/doc/guix.texi:34714 #, no-wrap msgid "{Scheme Variable} %mdns-host-lookup-nss" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34278 +#: guix-git/doc/guix.texi:34717 msgid "This is the name service switch configuration with support for host name lookup over multicast DNS (mDNS) for host names ending in @code{.local}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34288 +#: guix-git/doc/guix.texi:34727 msgid "The reference for name service switch configuration is given below. It is a direct mapping of the configuration file format of the C library , so please refer to the C library manual for more information (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference Manual}). Compared to the configuration file format of libc NSS, it has the advantage not only of adding this warm parenthetic feel that we like, but also static checks: you will know about syntax errors and typos as soon as you run @command{guix system}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34289 +#: guix-git/doc/guix.texi:34728 #, no-wrap msgid "{Data Type} name-service-switch" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34294 +#: guix-git/doc/guix.texi:34733 msgid "This is the data type representation the configuration of libc's name service switch (NSS). Each field below represents one of the supported system databases." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34296 +#: guix-git/doc/guix.texi:34735 #, no-wrap msgid "aliases" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34297 +#: guix-git/doc/guix.texi:34736 #, no-wrap msgid "ethers" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34299 +#: guix-git/doc/guix.texi:34738 #, no-wrap msgid "gshadow" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34300 +#: guix-git/doc/guix.texi:34739 #, no-wrap msgid "hosts" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34301 +#: guix-git/doc/guix.texi:34740 #, no-wrap msgid "initgroups" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34302 +#: guix-git/doc/guix.texi:34741 #, no-wrap msgid "netgroup" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34303 +#: guix-git/doc/guix.texi:34742 #, no-wrap msgid "networks" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34306 +#: guix-git/doc/guix.texi:34745 #, no-wrap msgid "rpc" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:34308 +#: guix-git/doc/guix.texi:34747 #, no-wrap msgid "shadow" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34311 +#: guix-git/doc/guix.texi:34750 msgid "The system databases handled by the NSS@. Each of these fields must be a list of @code{} objects (see below)." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34314 +#: guix-git/doc/guix.texi:34753 #, no-wrap msgid "{Data Type} name-service" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34318 +#: guix-git/doc/guix.texi:34757 msgid "This is the data type representing an actual name service and the associated lookup action." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34323 +#: guix-git/doc/guix.texi:34762 msgid "A string denoting the name service (@pxref{Services in the NSS configuration,,, libc, The GNU C Library Reference Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34328 +#: guix-git/doc/guix.texi:34767 msgid "Note that name services listed here must be visible to nscd. This is achieved by passing the @code{#:name-services} argument to @code{nscd-service} the list of packages providing the needed name services (@pxref{Base Services, @code{nscd-service}})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34329 +#: guix-git/doc/guix.texi:34768 #, no-wrap msgid "reaction" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34333 +#: guix-git/doc/guix.texi:34772 msgid "An action specified using the @code{lookup-specification} macro (@pxref{Actions in the NSS configuration,,, libc, The GNU C Library Reference Manual}). For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34337 +#: guix-git/doc/guix.texi:34776 #, no-wrap msgid "" "(lookup-specification (unavailable => continue)\n" @@ -61765,17 +62595,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34351 +#: guix-git/doc/guix.texi:34790 msgid "For bootstrapping purposes, the Linux-Libre kernel is passed an @dfn{initial RAM disk}, or @dfn{initrd}. An initrd contains a temporary root file system as well as an initialization script. The latter is responsible for mounting the real root file system, and for loading any kernel modules that may be needed to achieve that." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34360 +#: guix-git/doc/guix.texi:34799 msgid "The @code{initrd-modules} field of an @code{operating-system} declaration allows you to specify Linux-libre kernel modules that must be available in the initrd. In particular, this is where you would list modules needed to actually drive the hard disk where your root partition is---although the default value of @code{initrd-modules} should cover most use cases. For example, assuming you need the @code{megaraid_sas} module in addition to the default modules to be able to access your root file system, you would write:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34365 +#: guix-git/doc/guix.texi:34804 #, no-wrap msgid "" "(operating-system\n" @@ -61784,28 +62614,28 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34367 +#: guix-git/doc/guix.texi:34806 #, no-wrap msgid "{Scheme Variable} %base-initrd-modules" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:34369 +#: guix-git/doc/guix.texi:34808 msgid "This is the list of kernel modules included in the initrd by default." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34377 +#: guix-git/doc/guix.texi:34816 msgid "Furthermore, if you need lower-level customization, the @code{initrd} field of an @code{operating-system} declaration allows you to specify which initrd you would like to use. The @code{(gnu system linux-initrd)} module provides three ways to build an initrd: the high-level @code{base-initrd} procedure and the low-level @code{raw-initrd} and @code{expression->initrd} procedures." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34382 +#: guix-git/doc/guix.texi:34821 msgid "The @code{base-initrd} procedure is intended to cover most common uses. For example, if you want to add a bunch of kernel modules to be loaded at boot time, you can define the @code{initrd} field of the operating system declaration like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34390 +#: guix-git/doc/guix.texi:34829 #, no-wrap msgid "" "(initrd (lambda (file-systems . rest)\n" @@ -61817,447 +62647,447 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34395 +#: guix-git/doc/guix.texi:34834 msgid "The @code{base-initrd} procedure also handles common use cases that involves using the system as a QEMU guest, or as a ``live'' system with volatile root file system." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34402 +#: guix-git/doc/guix.texi:34841 msgid "The @code{base-initrd} procedure is built from @code{raw-initrd} procedure. Unlike @code{base-initrd}, @code{raw-initrd} doesn't do anything high-level, such as trying to guess which kernel modules and packages should be included to the initrd. An example use of @code{raw-initrd} is when a user has a custom Linux kernel configuration and default kernel modules included by @code{base-initrd} are not available." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34407 +#: guix-git/doc/guix.texi:34846 msgid "The initial RAM disk produced by @code{base-initrd} or @code{raw-initrd} honors several options passed on the Linux kernel command line (that is, arguments passed @i{via} the @code{linux} command of GRUB, or the @code{-append} option of QEMU), notably:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34409 +#: guix-git/doc/guix.texi:34848 #, no-wrap msgid "--load=@var{boot}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34412 +#: guix-git/doc/guix.texi:34851 msgid "Tell the initial RAM disk to load @var{boot}, a file containing a Scheme program, once it has mounted the root file system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34416 +#: guix-git/doc/guix.texi:34855 msgid "Guix uses this option to yield control to a boot program that runs the service activation programs and then spawns the GNU@tie{}Shepherd, the initialization system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34417 +#: guix-git/doc/guix.texi:34856 #, no-wrap msgid "--root=@var{root}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34422 +#: guix-git/doc/guix.texi:34861 msgid "Mount @var{root} as the root file system. @var{root} can be a device name like @code{/dev/sda1}, a file system label, or a file system UUID. When unspecified, the device name from the root file system of the operating system declaration is used." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34423 +#: guix-git/doc/guix.texi:34862 #, fuzzy, no-wrap msgid "fsck.mode=@var{mode}" msgstr "--rounds=@var{N}" #. type: table -#: guix-git/doc/guix.texi:34429 +#: guix-git/doc/guix.texi:34868 msgid "Whether to check the @var{root} file system for errors before mounting it. @var{mode} is one of @code{skip} (never check), @code{force} (always check), or @code{auto} to respect the root file-system object's 'check?' setting (@pxref{File Systems}) and run a full scan only if the file system was not cleanly shut down." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34432 +#: guix-git/doc/guix.texi:34871 msgid "@code{auto} is the default if this option is not present or if @var{mode} is not one of the above." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34433 +#: guix-git/doc/guix.texi:34872 #, no-wrap msgid "fsck.repair=@var{level}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34438 +#: guix-git/doc/guix.texi:34877 msgid "The level of repairs to perform automatically if errors are found in the @var{root} file system. @var{level} is one of @code{no} (do not write to @var{root} at all if possible), @code{yes} (repair as much as possible), or @code{preen} to repair problems considered safe to repair automatically." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34441 +#: guix-git/doc/guix.texi:34880 msgid "@code{preen} is the default if this option is not present or if @var{level} is not one of the above." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34445 +#: guix-git/doc/guix.texi:34884 msgid "Have @file{/run/booted-system} and @file{/run/current-system} point to @var{system}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34446 +#: guix-git/doc/guix.texi:34885 #, no-wrap msgid "modprobe.blacklist=@var{modules}@dots{}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34447 +#: guix-git/doc/guix.texi:34886 #, no-wrap msgid "module, black-listing" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34448 +#: guix-git/doc/guix.texi:34887 #, no-wrap msgid "black list, of kernel modules" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34453 +#: guix-git/doc/guix.texi:34892 msgid "Instruct the initial RAM disk as well as the @command{modprobe} command (from the kmod package) to refuse to load @var{modules}. @var{modules} must be a comma-separated list of module names---e.g., @code{usbkbd,9pnet}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34454 +#: guix-git/doc/guix.texi:34893 #, no-wrap msgid "--repl" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34460 +#: guix-git/doc/guix.texi:34899 msgid "Start a read-eval-print loop (REPL) from the initial RAM disk before it tries to load kernel modules and to mount the root file system. Our marketing team calls it @dfn{boot-to-Guile}. The Schemer in you will love it. @xref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}, for more information on Guile's REPL." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34466 +#: guix-git/doc/guix.texi:34905 msgid "Now that you know all the features that initial RAM disks produced by @code{base-initrd} and @code{raw-initrd} provide, here is how to use it and customize it further." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34469 +#: guix-git/doc/guix.texi:34908 #, no-wrap msgid "{Scheme Procedure} raw-initrd @var{file-systems} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34483 +#: guix-git/doc/guix.texi:34922 msgid "[#:linux-modules '()] [#:mapped-devices '()] @ [#:keyboard-layout #f] @ [#:helper-packages '()] [#:qemu-networking? #f] [#:volatile-root? #f] Return a derivation that builds a raw initrd. @var{file-systems} is a list of file systems to be mounted by the initrd, possibly in addition to the root file system specified on the kernel command line via @option{--root}. @var{linux-modules} is a list of kernel modules to be loaded at boot time. @var{mapped-devices} is a list of device mappings to realize before @var{file-systems} are mounted (@pxref{Mapped Devices}). @var{helper-packages} is a list of packages to be copied in the initrd. It may include @code{e2fsck/static} or other packages needed by the initrd to check the root file system." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34489 guix-git/doc/guix.texi:34513 +#: guix-git/doc/guix.texi:34928 guix-git/doc/guix.texi:34952 msgid "When true, @var{keyboard-layout} is a @code{} record denoting the desired console keyboard layout. This is done before @var{mapped-devices} are set up and before @var{file-systems} are mounted such that, should the user need to enter a passphrase or use the REPL, this happens using the intended keyboard layout." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34493 +#: guix-git/doc/guix.texi:34932 msgid "When @var{qemu-networking?} is true, set up networking with the standard QEMU parameters. When @var{virtio?} is true, load additional modules so that the initrd can be used as a QEMU guest with para-virtualized I/O drivers." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34496 +#: guix-git/doc/guix.texi:34935 msgid "When @var{volatile-root?} is true, the root file system is writable but any changes to it are lost." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34498 +#: guix-git/doc/guix.texi:34937 #, no-wrap msgid "{Scheme Procedure} base-initrd @var{file-systems} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34507 +#: guix-git/doc/guix.texi:34946 msgid "[#:mapped-devices '()] [#:keyboard-layout #f] @ [#:qemu-networking? #f] [#:volatile-root? #f] @ [#:linux-modules '()] Return as a file-like object a generic initrd, with kernel modules taken from @var{linux}. @var{file-systems} is a list of file-systems to be mounted by the initrd, possibly in addition to the root file system specified on the kernel command line via @option{--root}. @var{mapped-devices} is a list of device mappings to realize before @var{file-systems} are mounted." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34515 +#: guix-git/doc/guix.texi:34954 msgid "@var{qemu-networking?} and @var{volatile-root?} behaves as in @code{raw-initrd}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34520 +#: guix-git/doc/guix.texi:34959 msgid "The initrd is automatically populated with all the kernel modules necessary for @var{file-systems} and for the given options. Additional kernel modules can be listed in @var{linux-modules}. They will be added to the initrd, and loaded at boot time in the order in which they appear." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34527 +#: guix-git/doc/guix.texi:34966 msgid "Needless to say, the initrds we produce and use embed a statically-linked Guile, and the initialization program is a Guile program. That gives a lot of flexibility. The @code{expression->initrd} procedure builds such an initrd, given the program to run in that initrd." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34528 +#: guix-git/doc/guix.texi:34967 #, no-wrap msgid "{Scheme Procedure} expression->initrd @var{exp} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34534 +#: guix-git/doc/guix.texi:34973 msgid "[#:guile %guile-static-stripped] [#:name \"guile-initrd\"] Return as a file-like object a Linux initrd (a gzipped cpio archive) containing @var{guile} and that evaluates @var{exp}, a G-expression, upon booting. All the derivations referenced by @var{exp} are automatically copied to the initrd." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34540 +#: guix-git/doc/guix.texi:34979 #, no-wrap msgid "boot loader" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34547 +#: guix-git/doc/guix.texi:34986 msgid "The operating system supports multiple bootloaders. The bootloader is configured using @code{bootloader-configuration} declaration. All the fields of this structure are bootloader agnostic except for one field, @code{bootloader} that indicates the bootloader to be configured and installed." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34552 +#: guix-git/doc/guix.texi:34991 msgid "Some of the bootloaders do not honor every field of @code{bootloader-configuration}. For instance, the extlinux bootloader does not support themes and thus ignores the @code{theme} field." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34553 +#: guix-git/doc/guix.texi:34992 #, no-wrap msgid "{Data Type} bootloader-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34555 +#: guix-git/doc/guix.texi:34994 msgid "The type of a bootloader configuration declaration." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34559 +#: guix-git/doc/guix.texi:34998 #, no-wrap msgid "EFI, bootloader" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34560 +#: guix-git/doc/guix.texi:34999 #, no-wrap msgid "UEFI, bootloader" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34561 +#: guix-git/doc/guix.texi:35000 #, no-wrap msgid "BIOS, bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34566 +#: guix-git/doc/guix.texi:35005 msgid "The bootloader to use, as a @code{bootloader} object. For now @code{grub-bootloader}, @code{grub-efi-bootloader}, @code{grub-efi-netboot-bootloader}, @code{extlinux-bootloader} and @code{u-boot-bootloader} are supported." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34567 +#: guix-git/doc/guix.texi:35006 #, no-wrap msgid "ARM, bootloaders" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34568 +#: guix-git/doc/guix.texi:35007 #, no-wrap msgid "AArch64, bootloaders" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34573 +#: guix-git/doc/guix.texi:35012 msgid "Available bootloaders are described in @code{(gnu bootloader @dots{})} modules. In particular, @code{(gnu bootloader u-boot)} contains definitions of bootloaders for a wide range of ARM and AArch64 systems, using the @uref{https://www.denx.de/wiki/U-Boot/, U-Boot bootloader}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34579 +#: guix-git/doc/guix.texi:35018 msgid "@code{grub-efi-bootloader} allows to boot on modern systems using the @dfn{Unified Extensible Firmware Interface} (UEFI). This is what you should use if the installation image contains a @file{/sys/firmware/efi} directory when you boot it on your system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34583 +#: guix-git/doc/guix.texi:35022 msgid "@code{grub-bootloader} allows you to boot in particular Intel-based machines in ``legacy'' BIOS mode." msgstr "" #. type: vindex -#: guix-git/doc/guix.texi:34584 +#: guix-git/doc/guix.texi:35023 #, no-wrap msgid "grub-efi-netboot-bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34588 +#: guix-git/doc/guix.texi:35027 msgid "@code{grub-efi-netboot-bootloader} allows you to boot your system over network through TFTP@. In combination with an NFS root file system this allows you to build a diskless Guix system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34594 +#: guix-git/doc/guix.texi:35033 msgid "The installation of the @code{grub-efi-netboot-bootloader} generates the content of the TFTP root directory at @code{targets} (@pxref{Bootloader Configuration, @code{targets}}), to be served by a TFTP server. You may want to mount your TFTP server directories onto the @code{targets} to move the required files to the TFTP server automatically." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34603 +#: guix-git/doc/guix.texi:35042 msgid "If you plan to use an NFS root file system as well (actually if you mount the store from an NFS share), then the TFTP server needs to serve the file @file{/boot/grub/grub.cfg} and other files from the store (like GRUBs background image, the kernel (@pxref{operating-system Reference, @code{kernel}}) and the initrd (@pxref{operating-system Reference, @code{initrd}})), too. All these files from the store will be accessed by GRUB through TFTP with their normal store path, for example as @file{tftp://tftp-server/gnu/store/…-initrd/initrd.cpio.gz}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34612 +#: guix-git/doc/guix.texi:35051 msgid "Two symlinks are created to make this possible. For each target in the @code{targets} field, the first symlink is @samp{target}@file{/efi/Guix/boot/grub/grub.cfg} pointing to @file{../../../boot/grub/grub.cfg}, where @samp{target} may be @file{/boot}. In this case the link is not leaving the served TFTP root directory, but otherwise it does. The second link is @samp{target}@file{/gnu/store} and points to @file{../gnu/store}. This link is leaving the served TFTP root directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34618 +#: guix-git/doc/guix.texi:35057 msgid "The assumption behind all this is that you have an NFS server exporting the root file system for your Guix system, and additionally a TFTP server exporting your @code{targets} directories—usually a single @file{/boot}—from that same root file system for your Guix system. In this constellation the symlinks will work." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34623 +#: guix-git/doc/guix.texi:35062 msgid "For other constellations you will have to program your own bootloader installer, which then takes care to make necessary files from the store accessible through TFTP, for example by copying them into the TFTP root directory to your @code{targets}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34628 +#: guix-git/doc/guix.texi:35067 msgid "It is important to note that symlinks pointing outside the TFTP root directory may need to be allowed in the configuration of your TFTP server. Further the store link exposes the whole store through TFTP@. Both points need to be considered carefully for security aspects." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34633 +#: guix-git/doc/guix.texi:35072 msgid "Beside the @code{grub-efi-netboot-bootloader}, the already mentioned TFTP and NFS servers, you also need a properly configured DHCP server to make the booting over netboot possible. For all this we can currently only recommend you to look for instructions about @acronym{PXE, Preboot eXecution Environment}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34637 +#: guix-git/doc/guix.texi:35076 msgid "This is a list of strings denoting the targets onto which to install the bootloader." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34647 +#: guix-git/doc/guix.texi:35086 msgid "The interpretation of targets depends on the bootloader in question. For @code{grub-bootloader}, for example, they should be device names understood by the bootloader @command{installer} command, such as @code{/dev/sda} or @code{(hd0)} (@pxref{Invoking grub-install,,, grub, GNU GRUB Manual}). For @code{grub-efi-bootloader}, they should be mount points of the EFI file system, usually @file{/boot/efi}. For @code{grub-efi-netboot-bootloader}, @code{targets} should be the mount points corresponding to TFTP root directories served by your TFTP server." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34648 +#: guix-git/doc/guix.texi:35087 #, no-wrap msgid "@code{menu-entries} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34652 +#: guix-git/doc/guix.texi:35091 msgid "A possibly empty list of @code{menu-entry} objects (see below), denoting entries to appear in the bootloader menu, in addition to the current system entry and the entry pointing to previous system generations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34653 +#: guix-git/doc/guix.texi:35092 #, no-wrap msgid "@code{default-entry} (default: @code{0})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34656 +#: guix-git/doc/guix.texi:35095 msgid "The index of the default boot menu entry. Index 0 is for the entry of the current system." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34657 +#: guix-git/doc/guix.texi:35096 #, no-wrap msgid "@code{timeout} (default: @code{5})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34660 +#: guix-git/doc/guix.texi:35099 msgid "The number of seconds to wait for keyboard input before booting. Set to 0 to boot immediately, and to -1 to wait indefinitely." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34661 +#: guix-git/doc/guix.texi:35100 #, no-wrap msgid "keyboard layout, for the bootloader" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34665 +#: guix-git/doc/guix.texi:35104 msgid "If this is @code{#f}, the bootloader's menu (if any) uses the default keyboard layout, usually US@tie{}English (``qwerty'')." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34668 +#: guix-git/doc/guix.texi:35107 msgid "Otherwise, this must be a @code{keyboard-layout} object (@pxref{Keyboard Layout})." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:34672 +#: guix-git/doc/guix.texi:35111 msgid "This option is currently ignored by bootloaders other than @code{grub} and @code{grub-efi}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34674 +#: guix-git/doc/guix.texi:35113 #, no-wrap msgid "@code{theme} (default: @var{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34678 +#: guix-git/doc/guix.texi:35117 msgid "The bootloader theme object describing the theme to use. If no theme is provided, some bootloaders might use a default theme, that's true for GRUB." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34679 +#: guix-git/doc/guix.texi:35118 #, fuzzy, no-wrap msgid "@code{terminal-outputs} (default: @code{'(gfxterm)})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:34686 +#: guix-git/doc/guix.texi:35125 msgid "The output terminals used for the bootloader boot menu, as a list of symbols. GRUB accepts the values: @code{console}, @code{serial}, @code{serial_@{0-3@}}, @code{gfxterm}, @code{vga_text}, @code{mda_text}, @code{morse}, and @code{pkmodem}. This field corresponds to the GRUB variable @code{GRUB_TERMINAL_OUTPUT} (@pxref{Simple configuration,,, grub,GNU GRUB manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34687 +#: guix-git/doc/guix.texi:35126 #, no-wrap msgid "@code{terminal-inputs} (default: @code{'()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34695 +#: guix-git/doc/guix.texi:35134 msgid "The input terminals used for the bootloader boot menu, as a list of symbols. For GRUB, the default is the native platform terminal as determined at run-time. GRUB accepts the values: @code{console}, @code{serial}, @code{serial_@{0-3@}}, @code{at_keyboard}, and @code{usb_keyboard}. This field corresponds to the GRUB variable @code{GRUB_TERMINAL_INPUT} (@pxref{Simple configuration,,, grub,GNU GRUB manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34696 +#: guix-git/doc/guix.texi:35135 #, no-wrap msgid "@code{serial-unit} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34700 +#: guix-git/doc/guix.texi:35139 msgid "The serial unit used by the bootloader, as an integer from 0 to 3. For GRUB, it is chosen at run-time; currently GRUB chooses 0, which corresponds to COM1 (@pxref{Serial terminal,,, grub,GNU GRUB manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34701 +#: guix-git/doc/guix.texi:35140 #, no-wrap msgid "@code{serial-speed} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34705 +#: guix-git/doc/guix.texi:35144 msgid "The speed of the serial interface, as an integer. For GRUB, the default value is chosen at run-time; currently GRUB chooses 9600@tie{}bps (@pxref{Serial terminal,,, grub,GNU GRUB manual})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34709 +#: guix-git/doc/guix.texi:35148 #, no-wrap msgid "dual boot" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34710 +#: guix-git/doc/guix.texi:35149 #, no-wrap msgid "boot menu" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34716 +#: guix-git/doc/guix.texi:35155 msgid "Should you want to list additional boot menu entries @i{via} the @code{menu-entries} field above, you will need to create them with the @code{menu-entry} form. For example, imagine you want to be able to boot another distro (hard to imagine!), you can define a menu entry along these lines:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34723 +#: guix-git/doc/guix.texi:35162 #, no-wrap msgid "" "(menu-entry\n" @@ -62268,132 +63098,132 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34726 +#: guix-git/doc/guix.texi:35165 msgid "Details below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34727 +#: guix-git/doc/guix.texi:35166 #, no-wrap msgid "{Data Type} menu-entry" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34729 +#: guix-git/doc/guix.texi:35168 msgid "The type of an entry in the bootloader menu." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34734 +#: guix-git/doc/guix.texi:35173 msgid "The label to show in the menu---e.g., @code{\"GNU\"}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34735 +#: guix-git/doc/guix.texi:35174 #, fuzzy, no-wrap msgid "@code{linux} (default: @code{#f})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:34737 +#: guix-git/doc/guix.texi:35176 msgid "The Linux kernel image to boot, for example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34740 +#: guix-git/doc/guix.texi:35179 #, no-wrap msgid "(file-append linux-libre \"/bzImage\")\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34745 +#: guix-git/doc/guix.texi:35184 msgid "For GRUB, it is also possible to specify a device explicitly in the file path using GRUB's device naming convention (@pxref{Naming convention,,, grub, GNU GRUB manual}), for example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34748 +#: guix-git/doc/guix.texi:35187 #, no-wrap msgid "\"(hd0,msdos1)/boot/vmlinuz\"\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34752 +#: guix-git/doc/guix.texi:35191 msgid "If the device is specified explicitly as above, then the @code{device} field is ignored entirely." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34753 +#: guix-git/doc/guix.texi:35192 #, no-wrap msgid "@code{linux-arguments} (default: @code{()})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34756 +#: guix-git/doc/guix.texi:35195 msgid "The list of extra Linux kernel command-line arguments---e.g., @code{(\"console=ttyS0\")}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34757 +#: guix-git/doc/guix.texi:35196 #, fuzzy, no-wrap msgid "@code{initrd} (default: @code{#f})" msgstr "@code{zonefile-load}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:34760 +#: guix-git/doc/guix.texi:35199 msgid "A G-Expression or string denoting the file name of the initial RAM disk to use (@pxref{G-Expressions})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34764 +#: guix-git/doc/guix.texi:35203 msgid "The device where the kernel and initrd are to be found---i.e., for GRUB, @dfn{root} for this menu entry (@pxref{root,,, grub, GNU GRUB manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34770 +#: guix-git/doc/guix.texi:35209 msgid "This may be a file system label (a string), a file system UUID (a bytevector, @pxref{File Systems}), or @code{#f}, in which case the bootloader will search the device containing the file specified by the @code{linux} field (@pxref{search,,, grub, GNU GRUB manual}). It must @emph{not} be an OS device name such as @file{/dev/sda1}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34771 +#: guix-git/doc/guix.texi:35210 #, fuzzy, no-wrap msgid "@code{multiboot-kernel} (default: @code{#f})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:34775 +#: guix-git/doc/guix.texi:35214 msgid "The kernel to boot in Multiboot-mode (@pxref{multiboot,,, grub, GNU GRUB manual}). When this field is set, a Multiboot menu-entry is generated. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34778 +#: guix-git/doc/guix.texi:35217 #, no-wrap msgid "(file-append mach \"/boot/gnumach\")\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34780 +#: guix-git/doc/guix.texi:35219 #, fuzzy, no-wrap msgid "@code{multiboot-arguments} (default: @code{()})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:34782 +#: guix-git/doc/guix.texi:35221 msgid "The list of extra command-line arguments for the multiboot-kernel." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34783 +#: guix-git/doc/guix.texi:35222 #, fuzzy, no-wrap msgid "@code{multiboot-modules} (default: @code{()})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:34785 +#: guix-git/doc/guix.texi:35224 msgid "The list of commands for loading Multiboot modules. For example:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34791 +#: guix-git/doc/guix.texi:35230 #, no-wrap msgid "" "(list (list (file-append hurd \"/hurd/ext2fs.static\") \"ext2fs\"\n" @@ -62403,73 +63233,73 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34796 guix-git/doc/guix.texi:34855 +#: guix-git/doc/guix.texi:35235 guix-git/doc/guix.texi:35294 #, no-wrap msgid "HDPI" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34797 guix-git/doc/guix.texi:34856 +#: guix-git/doc/guix.texi:35236 guix-git/doc/guix.texi:35295 #, no-wrap msgid "HiDPI" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34798 guix-git/doc/guix.texi:34857 +#: guix-git/doc/guix.texi:35237 guix-git/doc/guix.texi:35296 #, fuzzy, no-wrap msgid "resolution" msgstr "隔离" #. type: Plain text -#: guix-git/doc/guix.texi:34802 +#: guix-git/doc/guix.texi:35241 msgid "For now only GRUB has theme support. GRUB themes are created using the @code{grub-theme} form, which is not fully documented yet." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:34803 +#: guix-git/doc/guix.texi:35242 #, fuzzy, no-wrap msgid "{Data Type} grub-theme" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:34805 +#: guix-git/doc/guix.texi:35244 msgid "Data type representing the configuration of the GRUB theme." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34807 +#: guix-git/doc/guix.texi:35246 #, fuzzy, no-wrap msgid "@code{gfxmode} (default: @code{'(\"auto\")})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:34810 +#: guix-git/doc/guix.texi:35249 msgid "The GRUB @code{gfxmode} to set (a list of screen resolution strings, @pxref{gfxmode,,, grub, GNU GRUB manual})." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34813 +#: guix-git/doc/guix.texi:35252 #, no-wrap msgid "{Scheme Procedure} grub-theme" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34817 +#: guix-git/doc/guix.texi:35256 msgid "Return the default GRUB theme used by the operating system if no @code{theme} field is specified in @code{bootloader-configuration} record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:34820 +#: guix-git/doc/guix.texi:35259 msgid "It comes with a fancy background image displaying the GNU and Guix logos." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34824 +#: guix-git/doc/guix.texi:35263 msgid "For example, to override the default resolution, you may use something like" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:34832 +#: guix-git/doc/guix.texi:35271 #, no-wrap msgid "" "(bootloader\n" @@ -62481,40 +63311,40 @@ msgid "" msgstr "" #. type: section -#: guix-git/doc/guix.texi:34835 +#: guix-git/doc/guix.texi:35274 #, no-wrap msgid "Invoking @code{guix system}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34840 +#: guix-git/doc/guix.texi:35279 msgid "Once you have written an operating system declaration as seen in the previous section, it can be @dfn{instantiated} using the @command{guix system} command. The synopsis is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34843 +#: guix-git/doc/guix.texi:35282 #, no-wrap msgid "guix system @var{options}@dots{} @var{action} @var{file}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:34849 +#: guix-git/doc/guix.texi:35288 msgid "@var{file} must be the name of a file containing an @code{operating-system} declaration. @var{action} specifies how the operating system is instantiated. Currently the following values are supported:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:34851 guix-git/doc/guix.texi:37496 +#: guix-git/doc/guix.texi:35290 guix-git/doc/guix.texi:37992 #, no-wrap msgid "search" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34854 +#: guix-git/doc/guix.texi:35293 msgid "Display available service type definitions that match the given regular expressions, sorted by relevance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34876 +#: guix-git/doc/guix.texi:35315 #, no-wrap msgid "" "$ guix system search console\n" @@ -62538,7 +63368,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34882 +#: guix-git/doc/guix.texi:35321 #, no-wrap msgid "" "name: mingetty\n" @@ -62550,7 +63380,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34889 +#: guix-git/doc/guix.texi:35328 #, no-wrap msgid "" "name: login\n" @@ -62563,72 +63393,72 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34891 guix-git/doc/guix.texi:37549 +#: guix-git/doc/guix.texi:35330 guix-git/doc/guix.texi:38028 #, no-wrap msgid "@dots{}\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34896 guix-git/doc/guix.texi:37554 +#: guix-git/doc/guix.texi:35335 msgid "As for @command{guix package --search}, the result is written in @code{recutils} format, which makes it easy to filter the output (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34897 guix-git/doc/guix.texi:37555 +#: guix-git/doc/guix.texi:35336 guix-git/doc/guix.texi:38034 #, no-wrap msgid "reconfigure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34902 +#: guix-git/doc/guix.texi:35341 msgid "Build the operating system described in @var{file}, activate it, and switch to it@footnote{This action (and the related actions @code{switch-generation} and @code{roll-back}) are usable only on systems already running Guix System.}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:34910 +#: guix-git/doc/guix.texi:35349 msgid "It is highly recommended to run @command{guix pull} once before you run @command{guix system reconfigure} for the first time (@pxref{Invoking guix pull}). Failing to do that you would see an older version of Guix once @command{reconfigure} has completed." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34918 +#: guix-git/doc/guix.texi:35357 msgid "This effects all the configuration specified in @var{file}: user accounts, system services, global package list, setuid programs, etc. The command starts system services specified in @var{file} that are not currently running; if a service is currently running this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop X} or @code{herd restart X})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34924 +#: guix-git/doc/guix.texi:35363 msgid "This command creates a new generation whose number is one greater than the current generation (as reported by @command{guix system list-generations}). If that generation already exists, it will be overwritten. This behavior mirrors that of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34929 +#: guix-git/doc/guix.texi:35368 msgid "It also adds a bootloader menu entry for the new OS configuration, ---unless @option{--no-bootloader} is passed. For GRUB, it moves entries for older configurations to a submenu, allowing you to choose an older system generation at boot time should you need it." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:34930 guix-git/doc/guix.texi:35261 -#: guix-git/doc/guix.texi:36223 +#: guix-git/doc/guix.texi:35369 guix-git/doc/guix.texi:35705 +#: guix-git/doc/guix.texi:36713 #, fuzzy, no-wrap msgid "provenance tracking, of the operating system" msgstr "配置操作系统。" #. type: table -#: guix-git/doc/guix.texi:34935 +#: guix-git/doc/guix.texi:35374 msgid "Upon completion, the new system is deployed under @file{/run/current-system}. This directory contains @dfn{provenance meta-data}: the list of channels in use (@pxref{Channels}) and @var{file} itself, when available. You can view it by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34938 +#: guix-git/doc/guix.texi:35377 #, no-wrap msgid "guix system describe\n" msgstr "guix system describe\n" #. type: table -#: guix-git/doc/guix.texi:34944 +#: guix-git/doc/guix.texi:35383 msgid "This information is useful should you later want to inspect how this particular generation was built. In fact, assuming @var{file} is self-contained, you can later rebuild generation @var{n} of your operating system with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34950 +#: guix-git/doc/guix.texi:35389 #, no-wrap msgid "" "guix time-machine \\\n" @@ -62638,233 +63468,238 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34956 +#: guix-git/doc/guix.texi:35395 msgid "You can think of it as some sort of built-in version control! Your system is not just a binary artifact: @emph{it carries its own source}. @xref{Service Reference, @code{provenance-service-type}}, for more information on provenance tracking." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34962 +#: guix-git/doc/guix.texi:35401 msgid "By default, @command{reconfigure} @emph{prevents you from downgrading your system}, which could (re)introduce security vulnerabilities and also cause problems with ``stateful'' services such as database management systems. You can override that behavior by passing @option{--allow-downgrades}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:34963 guix-git/doc/guix.texi:37614 +#: guix-git/doc/guix.texi:35402 guix-git/doc/guix.texi:38093 #, no-wrap msgid "switch-generation" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34972 +#: guix-git/doc/guix.texi:35411 msgid "Switch to an existing system generation. This action atomically switches the system profile to the specified system generation. It also rearranges the system's existing bootloader menu entries. It makes the menu entry for the specified system generation the default, and it moves the entries for the other generations to a submenu, if supported by the bootloader being used. The next time the system boots, it will use the specified system generation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34976 +#: guix-git/doc/guix.texi:35415 msgid "The bootloader itself is not being reinstalled when using this command. Thus, the installed bootloader is used with an updated configuration file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:34980 +#: guix-git/doc/guix.texi:35419 msgid "The target generation can be specified explicitly by its generation number. For example, the following invocation would switch to system generation 7:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34983 +#: guix-git/doc/guix.texi:35422 #, no-wrap msgid "guix system switch-generation 7\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:34991 guix-git/doc/guix.texi:37633 +#: guix-git/doc/guix.texi:35430 guix-git/doc/guix.texi:38112 msgid "The target generation can also be specified relative to the current generation with the form @code{+N} or @code{-N}, where @code{+3} means ``3 generations ahead of the current generation,'' and @code{-1} means ``1 generation prior to the current generation.'' When specifying a negative value such as @code{-1}, you must precede it with @code{--} to prevent it from being parsed as an option. For example:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:34994 +#: guix-git/doc/guix.texi:35433 #, no-wrap msgid "guix system switch-generation -- -1\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35002 +#: guix-git/doc/guix.texi:35441 msgid "Currently, the effect of invoking this action is @emph{only} to switch the system profile to an existing generation and rearrange the bootloader menu entries. To actually start using the target system generation, you must reboot after running this action. In the future, it will be updated to do the same things as @command{reconfigure}, like activating and deactivating services." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35004 guix-git/doc/guix.texi:37639 +#: guix-git/doc/guix.texi:35443 guix-git/doc/guix.texi:38118 msgid "This action will fail if the specified generation does not exist." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35005 guix-git/doc/guix.texi:37640 +#: guix-git/doc/guix.texi:35444 guix-git/doc/guix.texi:38119 #, no-wrap msgid "roll-back" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35011 +#: guix-git/doc/guix.texi:35450 msgid "Switch to the preceding system generation. The next time the system boots, it will use the preceding system generation. This is the inverse of @command{reconfigure}, and it is exactly the same as invoking @command{switch-generation} with an argument of @code{-1}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35015 +#: guix-git/doc/guix.texi:35454 msgid "Currently, as with @command{switch-generation}, you must reboot after running this action to actually start using the preceding system generation." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35016 guix-git/doc/guix.texi:37646 +#: guix-git/doc/guix.texi:35455 guix-git/doc/guix.texi:38125 #, no-wrap msgid "delete-generations" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35017 +#: guix-git/doc/guix.texi:35456 #, no-wrap msgid "deleting system generations" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35018 guix-git/doc/guix.texi:37648 +#: guix-git/doc/guix.texi:35457 guix-git/doc/guix.texi:38127 #, no-wrap msgid "saving space" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35022 +#: guix-git/doc/guix.texi:35461 msgid "Delete system generations, making them candidates for garbage collection (@pxref{Invoking guix gc}, for information on how to run the ``garbage collector'')." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35026 +#: guix-git/doc/guix.texi:35465 msgid "This works in the same way as @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). With no arguments, all system generations but the current one are deleted:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35029 +#: guix-git/doc/guix.texi:35468 #, no-wrap msgid "guix system delete-generations\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35033 +#: guix-git/doc/guix.texi:35472 msgid "You can also select the generations you want to delete. The example below deletes all the system generations that are more than two months old:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35036 +#: guix-git/doc/guix.texi:35475 #, no-wrap msgid "guix system delete-generations 2m\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35041 +#: guix-git/doc/guix.texi:35480 msgid "Running this command automatically reinstalls the bootloader with an updated list of menu entries---e.g., the ``old generations'' sub-menu in GRUB no longer lists the generations that have been deleted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35046 +#: guix-git/doc/guix.texi:35485 msgid "Build the derivation of the operating system, which includes all the configuration files and programs needed to boot and run the system. This action does not actually install anything." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35047 +#: guix-git/doc/guix.texi:35486 #, no-wrap msgid "init" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35051 +#: guix-git/doc/guix.texi:35490 msgid "Populate the given directory with all the files necessary to run the operating system specified in @var{file}. This is useful for first-time installations of Guix System. For instance:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35054 +#: guix-git/doc/guix.texi:35493 #, no-wrap msgid "guix system init my-os-config.scm /mnt\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35061 +#: guix-git/doc/guix.texi:35500 msgid "copies to @file{/mnt} all the store items required by the configuration specified in @file{my-os-config.scm}. This includes configuration files, packages, and so on. It also creates other essential files needed for the system to operate correctly---e.g., the @file{/etc}, @file{/var}, and @file{/run} directories, and the @file{/bin/sh} file." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35065 +#: guix-git/doc/guix.texi:35504 msgid "This command also installs bootloader on the targets specified in @file{my-os-config}, unless the @option{--no-bootloader} option was passed." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35066 +#: guix-git/doc/guix.texi:35505 #, no-wrap msgid "vm" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35067 guix-git/doc/guix.texi:35634 +#: guix-git/doc/guix.texi:35506 guix-git/doc/guix.texi:36124 #, no-wrap msgid "virtual machine" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35068 +#: guix-git/doc/guix.texi:35507 #, no-wrap msgid "VM" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35072 +#: guix-git/doc/guix.texi:35511 msgid "guix system vm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35072 +#: guix-git/doc/guix.texi:35511 msgid "Build a virtual machine (VM) that contains the operating system declared in @var{file}, and return a script to run that VM." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35080 +#: guix-git/doc/guix.texi:35519 msgid "The @code{vm} action and others below can use KVM support in the Linux-libre kernel. Specifically, if the machine has hardware virtualization support, the corresponding KVM kernel module should be loaded, and the @file{/dev/kvm} device node must exist and be readable and writable by the user and by the build users of the daemon (@pxref{Build Environment Setup})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35085 +#: guix-git/doc/guix.texi:35524 msgid "Arguments given to the script are passed to QEMU as in the example below, which enables networking and requests 1@tie{}GiB of RAM for the emulated machine:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35088 +#: guix-git/doc/guix.texi:35527 #, no-wrap msgid "$ /gnu/store/@dots{}-run-vm.sh -m 1024 -smp 2 -nic user,model=virtio-net-pci\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35091 +#: guix-git/doc/guix.texi:35530 msgid "It's possible to combine the two steps into one:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35094 +#: guix-git/doc/guix.texi:35533 #, no-wrap msgid "$ $(guix system vm my-config.scm) -m 1024 -smp 2 -nic user,model=virtio-net-pci\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35097 +#: guix-git/doc/guix.texi:35536 msgid "The VM shares its store with the host system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35102 +#: guix-git/doc/guix.texi:35541 +msgid "By default, the root file system of the VM is mounted volatile; the @option{--persistent} option can be provided to make it persistent instead. In that case, the VM disk-image file will be copied from the store to the @env{TMPDIR} directory to make it writable." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:35546 msgid "Additional file systems can be shared between the host and the VM using the @option{--share} and @option{--expose} command-line options: the former specifies a directory to be shared with write access, while the latter provides read-only access to the shared directory." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35106 +#: guix-git/doc/guix.texi:35550 msgid "The example below creates a VM in which the user's home directory is accessible read-only, and where the @file{/exchange} directory is a read-write mapping of @file{$HOME/tmp} on the host:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35110 +#: guix-git/doc/guix.texi:35554 #, no-wrap msgid "" "guix system vm my-config.scm \\\n" @@ -62872,56 +63707,56 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35115 +#: guix-git/doc/guix.texi:35559 msgid "On GNU/Linux, the default is to boot directly to the kernel; this has the advantage of requiring only a very tiny root disk image since the store of the host can then be mounted." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35120 +#: guix-git/doc/guix.texi:35564 msgid "The @option{--full-boot} option forces a complete boot sequence, starting with the bootloader. This requires more disk space since a root image containing at least the kernel, initrd, and bootloader data files must be created." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35123 +#: guix-git/doc/guix.texi:35567 msgid "The @option{--image-size} option can be used to specify the size of the image." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35130 +#: guix-git/doc/guix.texi:35574 msgid "The @option{--no-graphic} option will instruct @command{guix system} to spawn a headless VM that will use the invoking tty for IO. Among other things, this enables copy-pasting, and scrollback. Use the @kbd{ctrl-a} prefix to issue QEMU commands; e.g. @kbd{ctrl-a h} prints a help, @kbd{ctrl-a x} quits the VM, and @kbd{ctrl-a c} switches between the QEMU monitor and the VM." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35131 +#: guix-git/doc/guix.texi:35575 #, no-wrap msgid "System images, creation in various formats" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35132 +#: guix-git/doc/guix.texi:35576 #, no-wrap msgid "Creating system images in various formats" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35133 +#: guix-git/doc/guix.texi:35577 #, no-wrap msgid "image" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35134 +#: guix-git/doc/guix.texi:35578 #, no-wrap msgid "image, creating disk images" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35146 +#: guix-git/doc/guix.texi:35590 msgid "The @code{image} command can produce various image types. The image type can be selected using the @option{--image-type} option. It defaults to @code{efi-raw}. When its value is @code{iso9660}, the @option{--label} option can be used to specify a volume ID with @code{image}. By default, the root file system of a disk image is mounted non-volatile; the @option{--volatile} option can be provided to make it volatile instead. When using @code{image}, the bootloader installed on the generated image is taken from the provided @code{operating-system} definition. The following example demonstrates how to generate an image that uses the @code{grub-efi-bootloader} bootloader and boot it with QEMU:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35154 +#: guix-git/doc/guix.texi:35598 #, no-wrap msgid "" "image=$(guix system image --image-type=qcow2 \\\n" @@ -62933,45 +63768,45 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35160 +#: guix-git/doc/guix.texi:35604 msgid "When using the @code{efi-raw} image type, a raw disk image is produced; it can be copied as is to a USB stick, for instance. Assuming @code{/dev/sdc} is the device corresponding to a USB stick, one can copy the image to it using the following command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35163 +#: guix-git/doc/guix.texi:35607 #, no-wrap msgid "# dd if=$(guix system image my-os.scm) of=/dev/sdc status=progress\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35167 +#: guix-git/doc/guix.texi:35611 msgid "The @code{--list-image-types} command lists all the available image types." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35168 +#: guix-git/doc/guix.texi:35612 #, no-wrap msgid "creating virtual machine images" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35177 +#: guix-git/doc/guix.texi:35621 msgid "When using the @code{qcow2} image type, the returned image is in qcow2 format, which the QEMU emulator can efficiently use. @xref{Running Guix in a VM}, for more information on how to run the image in a virtual machine. The @code{grub-bootloader} bootloader is always used independently of what is declared in the @code{operating-system} file passed as argument. This is to make it easier to work with QEMU, which uses the SeaBIOS BIOS by default, expecting a bootloader to be installed in the Master Boot Record (MBR)." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35178 +#: guix-git/doc/guix.texi:35622 #, no-wrap msgid "docker-image, creating docker images" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35184 +#: guix-git/doc/guix.texi:35628 msgid "When using the @code{docker} image type, a Docker image is produced. Guix builds the image from scratch, not from a pre-existing Docker base image. As a result, it contains @emph{exactly} what you define in the operating system configuration file. You can then load the image and launch a Docker container using commands like the following:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35189 +#: guix-git/doc/guix.texi:35633 #, no-wrap msgid "" "image_id=\"$(docker load < guix-system-docker-image.tar.gz)\"\n" @@ -62980,43 +63815,43 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35196 +#: guix-git/doc/guix.texi:35640 msgid "This command starts a new Docker container from the specified image. It will boot the Guix system in the usual manner, which means it will start any services you have defined in the operating system configuration. You can get an interactive shell running in the container using @command{docker exec}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35199 +#: guix-git/doc/guix.texi:35643 #, no-wrap msgid "docker exec -ti $container_id /run/current-system/profile/bin/bash --login\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35206 +#: guix-git/doc/guix.texi:35650 msgid "Depending on what you run in the Docker container, it may be necessary to give the container additional permissions. For example, if you intend to build software using Guix inside of the Docker container, you may need to pass the @option{--privileged} option to @code{docker create}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35210 +#: guix-git/doc/guix.texi:35654 msgid "Last, the @option{--network} option applies to @command{guix system docker-image}: it produces an image where network is supposedly shared with the host, and thus without services like nscd or NetworkManager." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35218 +#: guix-git/doc/guix.texi:35662 msgid "Return a script to run the operating system declared in @var{file} within a container. Containers are a set of lightweight isolation mechanisms provided by the kernel Linux-libre. Containers are substantially less resource-demanding than full virtual machines since the kernel, shared objects, and other resources can be shared with the host system; this also means they provide thinner isolation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35222 +#: guix-git/doc/guix.texi:35666 msgid "Currently, the script must be run as root in order to support more than a single user and group. The container shares its store with the host system." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35226 +#: guix-git/doc/guix.texi:35670 msgid "As with the @code{vm} action (@pxref{guix system vm}), additional file systems to be shared between the host and container can be specified using the @option{--share} and @option{--expose} options:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35230 +#: guix-git/doc/guix.texi:35674 #, no-wrap msgid "" "guix system container my-config.scm \\\n" @@ -63024,319 +63859,329 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35234 +#: guix-git/doc/guix.texi:35678 msgid "This option requires Linux-libre 3.19 or newer." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35241 guix-git/doc/guix.texi:37710 +#: guix-git/doc/guix.texi:35685 guix-git/doc/guix.texi:38189 msgid "@var{options} can contain any of the common build options (@pxref{Common Build Options}). In addition, @var{options} can contain one of the following:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35250 +#: guix-git/doc/guix.texi:35694 msgid "Consider the operating-system @var{expr} evaluates to. This is an alternative to specifying a file which evaluates to an operating system. This is used to generate the Guix system installer @pxref{Building the Installation Image})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35255 +#: guix-git/doc/guix.texi:35699 msgid "Attempt to build for @var{system} instead of the host system type. This works as per @command{guix build} (@pxref{Invoking guix build})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35260 +#: guix-git/doc/guix.texi:35704 msgid "Return the derivation file name of the given operating system without building anything." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35269 +#: guix-git/doc/guix.texi:35713 msgid "As discussed above, @command{guix system init} and @command{guix system reconfigure} always save provenance information @i{via} a dedicated service (@pxref{Service Reference, @code{provenance-service-type}}). However, other commands don't do that by default. If you wish to, say, create a virtual machine image that contains provenance information, you can run:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35272 +#: guix-git/doc/guix.texi:35716 #, no-wrap msgid "guix system image -t qcow2 --save-provenance config.scm\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35279 +#: guix-git/doc/guix.texi:35723 msgid "That way, the resulting image will effectively ``embed its own source'' in the form of meta-data in @file{/run/current-system}. With that information, one can rebuild the image to make sure it really contains what it pretends to contain; or they could use that to derive a variant of the image." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35280 +#: guix-git/doc/guix.texi:35724 #, fuzzy, no-wrap msgid "--image-type=@var{type}" msgstr "--log-compression=@var{type}" #. type: table -#: guix-git/doc/guix.texi:35283 +#: guix-git/doc/guix.texi:35727 msgid "For the @code{image} action, create an image with given @var{type}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35286 +#: guix-git/doc/guix.texi:35730 msgid "When this option is omitted, @command{guix system} uses the @code{efi-raw} image type." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35287 +#: guix-git/doc/guix.texi:35731 #, no-wrap msgid "ISO-9660 format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35288 +#: guix-git/doc/guix.texi:35732 #, no-wrap msgid "CD image format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35289 +#: guix-git/doc/guix.texi:35733 #, no-wrap msgid "DVD image format" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35292 +#: guix-git/doc/guix.texi:35736 msgid "@option{--image-type=iso9660} produces an ISO-9660 image, suitable for burning on CDs and DVDs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35293 +#: guix-git/doc/guix.texi:35737 #, no-wrap msgid "--image-size=@var{size}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35298 +#: guix-git/doc/guix.texi:35742 msgid "For the @code{image} action, create an image of the given @var{size}. @var{size} may be a number of bytes, or it may include a unit as a suffix (@pxref{Block size, size specifications,, coreutils, GNU Coreutils})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35302 +#: guix-git/doc/guix.texi:35746 msgid "When this option is omitted, @command{guix system} computes an estimate of the image size as a function of the size of the system declared in @var{file}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35307 +#: guix-git/doc/guix.texi:35751 msgid "For the @code{container} action, allow containers to access the host network, that is, do not create a network namespace." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35313 +#: guix-git/doc/guix.texi:35757 #, no-wrap msgid "--skip-checks" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35315 +#: guix-git/doc/guix.texi:35759 msgid "Skip pre-installation safety checks." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35322 +#: guix-git/doc/guix.texi:35766 msgid "By default, @command{guix system init} and @command{guix system reconfigure} perform safety checks: they make sure the file systems that appear in the @code{operating-system} declaration actually exist (@pxref{File Systems}), and that any Linux kernel modules that may be needed at boot time are listed in @code{initrd-modules} (@pxref{Initial RAM Disk}). Passing this option skips these tests altogether." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35325 +#: guix-git/doc/guix.texi:35769 msgid "Instruct @command{guix system reconfigure} to allow system downgrades." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35333 +#: guix-git/doc/guix.texi:35777 msgid "By default, @command{reconfigure} prevents you from downgrading your system. It achieves that by comparing the provenance info of your system (shown by @command{guix system describe}) with that of your @command{guix} command (shown by @command{guix describe}). If the commits for @command{guix} are not descendants of those used for your system, @command{guix system reconfigure} errors out. Passing @option{--allow-downgrades} allows you to bypass these checks." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35339 +#: guix-git/doc/guix.texi:35783 #, no-wrap msgid "on-error" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35340 +#: guix-git/doc/guix.texi:35784 #, no-wrap msgid "on-error strategy" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35341 +#: guix-git/doc/guix.texi:35785 #, no-wrap msgid "error strategy" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35342 +#: guix-git/doc/guix.texi:35786 #, no-wrap msgid "--on-error=@var{strategy}" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35345 +#: guix-git/doc/guix.texi:35789 msgid "Apply @var{strategy} when an error occurs when reading @var{file}. @var{strategy} may be one of the following:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35347 +#: guix-git/doc/guix.texi:35791 #, no-wrap msgid "nothing-special" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35349 +#: guix-git/doc/guix.texi:35793 msgid "Report the error concisely and exit. This is the default strategy." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35350 +#: guix-git/doc/guix.texi:35794 #, no-wrap msgid "backtrace" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35352 +#: guix-git/doc/guix.texi:35796 msgid "Likewise, but also display a backtrace." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35353 +#: guix-git/doc/guix.texi:35797 #, no-wrap msgid "debug" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35359 +#: guix-git/doc/guix.texi:35803 msgid "Report the error and enter Guile's debugger. From there, you can run commands such as @code{,bt} to get a backtrace, @code{,locals} to display local variable values, and more generally inspect the state of the program. @xref{Debug Commands,,, guile, GNU Guile Reference Manual}, for a list of available debugging commands." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35366 +#: guix-git/doc/guix.texi:35810 msgid "Once you have built, configured, re-configured, and re-re-configured your Guix installation, you may find it useful to list the operating system generations available on disk---and that you can choose from the bootloader boot menu:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35369 guix-git/doc/guix.texi:37673 +#: guix-git/doc/guix.texi:35813 guix-git/doc/guix.texi:38152 #, no-wrap msgid "describe" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35372 -msgid "Describe the current system generation: its file name, the kernel and bootloader used, etc., as well as provenance information when available." +#: guix-git/doc/guix.texi:35816 +msgid "Describe the running system generation: its file name, the kernel and bootloader used, etc., as well as provenance information when available." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:35823 +msgid "The @emph{running} system generation---referred to by @file{/run/current-system}---is not necessarily the @emph{current} system generation---referred to by @file{/var/guix/profiles/system}: it differs when, for instance, you chose from the bootloader menu to boot an older generation." +msgstr "" + +#. type: quotation +#: guix-git/doc/guix.texi:35827 +msgid "It can also differ from the @emph{booted} system generation---referred to by @file{/run/booted-system}---for instance because you reconfigured the system in the meantime." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35373 guix-git/doc/guix.texi:37677 +#: guix-git/doc/guix.texi:35829 guix-git/doc/guix.texi:38156 #, no-wrap msgid "list-generations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35378 +#: guix-git/doc/guix.texi:35834 msgid "List a summary of each generation of the operating system available on disk, in a human-readable way. This is similar to the @option{--list-generations} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35383 guix-git/doc/guix.texi:37687 +#: guix-git/doc/guix.texi:35839 guix-git/doc/guix.texi:38166 msgid "Optionally, one can specify a pattern, with the same syntax that is used in @command{guix package --list-generations}, to restrict the list of generations displayed. For instance, the following command displays generations that are up to 10 days old:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35386 +#: guix-git/doc/guix.texi:35842 #, no-wrap msgid "$ guix system list-generations 10d\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35393 +#: guix-git/doc/guix.texi:35849 msgid "The @command{guix system} command has even more to offer! The following sub-commands allow you to visualize how your system services relate to each other:" msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35395 +#: guix-git/doc/guix.texi:35851 msgid "system-extension-graph" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35397 +#: guix-git/doc/guix.texi:35853 #, no-wrap msgid "extension-graph" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35404 +#: guix-git/doc/guix.texi:35860 msgid "Emit to standard output the @dfn{service extension graph} of the operating system defined in @var{file} (@pxref{Service Composition}, for more information on service extensions). By default the output is in Dot/Graphviz format, but you can choose a different format with @option{--graph-backend}, as with @command{guix graph} (@pxref{Invoking guix graph, @option{--backend}}):" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35406 +#: guix-git/doc/guix.texi:35862 msgid "The command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35409 +#: guix-git/doc/guix.texi:35865 #, no-wrap msgid "$ guix system extension-graph @var{file} | xdot -\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35412 +#: guix-git/doc/guix.texi:35868 msgid "shows the extension relations among services." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:35414 +#: guix-git/doc/guix.texi:35870 msgid "system-shepherd-graph" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35414 +#: guix-git/doc/guix.texi:35870 #, no-wrap msgid "shepherd-graph" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35419 +#: guix-git/doc/guix.texi:35875 msgid "Emit to standard output the @dfn{dependency graph} of shepherd services of the operating system defined in @var{file}. @xref{Shepherd Services}, for more information and for an example graph." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35422 +#: guix-git/doc/guix.texi:35878 msgid "Again, the default output format is Dot/Graphviz, but you can pass @option{--graph-backend} to select a different one." msgstr "" #. type: section -#: guix-git/doc/guix.texi:35426 +#: guix-git/doc/guix.texi:35882 #, fuzzy, no-wrap msgid "Invoking @code{guix deploy}" msgstr "调用@command{guix-daemon}" #. type: Plain text -#: guix-git/doc/guix.texi:35434 +#: guix-git/doc/guix.texi:35890 msgid "We've already seen @code{operating-system} declarations used to manage a machine's configuration locally. Suppose you need to configure multiple machines, though---perhaps you're managing a service on the web that's comprised of several servers. @command{guix deploy} enables you to use those same @code{operating-system} declarations to manage multiple remote hosts at once as a logical ``deployment''." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35439 guix-git/doc/guix.texi:36900 +#: guix-git/doc/guix.texi:35895 guix-git/doc/guix.texi:37390 msgid "The functionality described in this section is still under development and is subject to change. Get in touch with us on @email{guix-devel@@gnu.org}!" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35443 +#: guix-git/doc/guix.texi:35899 #, no-wrap msgid "guix deploy @var{file}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35447 +#: guix-git/doc/guix.texi:35903 msgid "Such an invocation will deploy the machines that the code within @var{file} evaluates to. As an example, @var{file} might contain a definition like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35454 +#: guix-git/doc/guix.texi:35910 #, no-wrap msgid "" ";; This is a Guix deployment of a \"bare bones\" setup, with\n" @@ -63348,7 +64193,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35457 +#: guix-git/doc/guix.texi:35913 #, no-wrap msgid "" "(use-service-modules networking ssh)\n" @@ -63357,7 +64202,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35478 +#: guix-git/doc/guix.texi:35934 #, no-wrap msgid "" "(define %system\n" @@ -63384,7 +64229,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35488 +#: guix-git/doc/guix.texi:35944 #, no-wrap msgid "" "(list (machine\n" @@ -63399,34 +64244,34 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35501 +#: guix-git/doc/guix.texi:35957 msgid "The file should evaluate to a list of @var{machine} objects. This example, upon being deployed, will create a new generation on the remote system realizing the @code{operating-system} declaration @code{%system}. @code{environment} and @code{configuration} specify how the machine should be provisioned---that is, how the computing resources should be created and managed. The above example does not create any resources, as a @code{'managed-host} is a machine that is already running the Guix system and available over the network. This is a particularly simple case; a more complex deployment may involve, for example, starting virtual machines through a Virtual Private Server (VPS) provider. In such a case, a different @var{environment} type would be used." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35506 +#: guix-git/doc/guix.texi:35962 msgid "Do note that you first need to generate a key pair on the coordinator machine to allow the daemon to export signed archives of files from the store (@pxref{Invoking guix archive}), though this step is automatic on Guix System:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35514 +#: guix-git/doc/guix.texi:35970 #, fuzzy msgid "Each target machine must authorize the key of the master machine so that it accepts store items it receives from the coordinator:" msgstr "每台构建机器都必须认证主机器的公钥,从而接收从主机器接收的仓库文件:" #. type: example -#: guix-git/doc/guix.texi:35517 +#: guix-git/doc/guix.texi:35973 #, fuzzy, no-wrap msgid "# guix archive --authorize < coordinator-public-key.txt\n" msgstr "# guix archive --authorize < master-public-key.txt\n" #. type: Plain text -#: guix-git/doc/guix.texi:35528 +#: guix-git/doc/guix.texi:35984 msgid "@code{user}, in this example, specifies the name of the user account to log in as to perform the deployment. Its default value is @code{root}, but root login over SSH may be forbidden in some cases. To work around this, @command{guix deploy} can log in as an unprivileged user and employ @code{sudo} to escalate privileges. This will only work if @code{sudo} is currently installed on the remote and can be invoked non-interactively as @code{user}. That is, the line in @code{sudoers} granting @code{user} the ability to use @code{sudo} must contain the @code{NOPASSWD} tag. This can be accomplished with the following operating system configuration snippet:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35532 +#: guix-git/doc/guix.texi:35988 #, no-wrap msgid "" "(use-modules ...\n" @@ -63435,7 +64280,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35534 +#: guix-git/doc/guix.texi:35990 #, no-wrap msgid "" "(define %user \"username\")\n" @@ -63443,7 +64288,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35542 +#: guix-git/doc/guix.texi:35998 #, no-wrap msgid "" "(operating-system\n" @@ -63457,237 +64302,285 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35547 +#: guix-git/doc/guix.texi:36003 msgid "For more information regarding the format of the @file{sudoers} file, consult @command{man sudoers}." msgstr "" +#. type: Plain text +#: guix-git/doc/guix.texi:36008 +msgid "Once you've deployed a system on a set of machines, you may find it useful to run a command on all of them. The @option{--execute} or @option{-x} option lets you do that; the example below runs @command{uname -a} on all the machines listed in the deployment file:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:36011 +#, no-wrap +msgid "guix deploy @var{file} -x -- uname -a\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36015 +msgid "One thing you may often need to do after deployment is restart specific services on all the machines, which you can do like so:" +msgstr "" + +#. type: example +#: guix-git/doc/guix.texi:36018 +#, no-wrap +msgid "guix deploy @var{file} -x -- herd restart @var{service}\n" +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36022 +msgid "The @command{guix deploy -x} command returns zero if and only if the command succeeded on all the machines." +msgstr "" + +#. type: Plain text +#: guix-git/doc/guix.texi:36027 +msgid "Below are the data types you need to know about when writing a deployment file." +msgstr "" + #. type: deftp -#: guix-git/doc/guix.texi:35548 +#: guix-git/doc/guix.texi:36028 #, fuzzy, no-wrap msgid "{Data Type} machine" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:35551 +#: guix-git/doc/guix.texi:36031 msgid "This is the data type representing a single machine in a heterogeneous Guix deployment." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35555 +#: guix-git/doc/guix.texi:36035 #, fuzzy msgid "The object of the operating system configuration to deploy." msgstr "管理操作系统配置。" #. type: code{#1} -#: guix-git/doc/guix.texi:35556 +#: guix-git/doc/guix.texi:36036 #, fuzzy, no-wrap msgid "environment" msgstr "构建环境" #. type: table -#: guix-git/doc/guix.texi:35558 +#: guix-git/doc/guix.texi:36038 msgid "An @code{environment-type} describing how the machine should be provisioned." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35559 +#: guix-git/doc/guix.texi:36039 #, fuzzy, no-wrap msgid "@code{configuration} (default: @code{#f})" msgstr "@code{journal-content}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:35564 +#: guix-git/doc/guix.texi:36044 msgid "An object describing the configuration for the machine's @code{environment}. If the @code{environment} has a default configuration, @code{#f} may be used. If @code{#f} is used for an environment with no default configuration, however, an error will be thrown." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35567 +#: guix-git/doc/guix.texi:36047 #, fuzzy, no-wrap msgid "{Data Type} machine-ssh-configuration" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:35570 +#: guix-git/doc/guix.texi:36050 msgid "This is the data type representing the SSH client parameters for a machine with an @code{environment} of @code{managed-host-environment-type}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35573 +#: guix-git/doc/guix.texi:36053 #, fuzzy, no-wrap msgid "@code{build-locally?} (default: @code{#t})" msgstr "@code{zonefile-load}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:35575 +#: guix-git/doc/guix.texi:36055 msgid "If false, system derivations will be built on the machine being deployed to." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35575 +#: guix-git/doc/guix.texi:36055 #, no-wrap msgid "system" msgstr "系统" #. type: table -#: guix-git/doc/guix.texi:35578 +#: guix-git/doc/guix.texi:36058 #, fuzzy msgid "The system type describing the architecture of the machine being deployed to---e.g., @code{\"x86_64-linux\"}." msgstr "远程机器的系统类型--如,@code{\"x86_64-linux\"}。" #. type: item -#: guix-git/doc/guix.texi:35578 +#: guix-git/doc/guix.texi:36058 #, fuzzy, no-wrap msgid "@code{authorize?} (default: @code{#t})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:35581 +#: guix-git/doc/guix.texi:36061 msgid "If true, the coordinator's signing key will be added to the remote's ACL keyring." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35583 +#: guix-git/doc/guix.texi:36063 #, fuzzy, no-wrap msgid "@code{identity} (default: @code{#f})" msgstr "@code{dnssec-policy}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:35586 +#: guix-git/doc/guix.texi:36066 msgid "If specified, the path to the SSH private key to use to authenticate with the remote host." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35587 +#: guix-git/doc/guix.texi:36067 #, fuzzy, no-wrap msgid "@code{host-key} (default: @code{#f})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:35589 +#: guix-git/doc/guix.texi:36069 msgid "This should be the SSH host key of the machine, which looks like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35592 +#: guix-git/doc/guix.texi:36072 #, fuzzy, no-wrap msgid "ssh-ed25519 AAAAC3Nz@dots{} root@@example.org\n" msgstr "ssh-ed25519 AAAAC3NzaC@dots{}mde+UhL hint@@example.org\n" #. type: table -#: guix-git/doc/guix.texi:35597 +#: guix-git/doc/guix.texi:36077 msgid "When @code{host-key} is @code{#f}, the server is authenticated against the @file{~/.ssh/known_hosts} file, just like the OpenSSH @command{ssh} client does." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35598 +#: guix-git/doc/guix.texi:36078 #, fuzzy, no-wrap msgid "@code{allow-downgrades?} (default: @code{#f})" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:35600 +#: guix-git/doc/guix.texi:36080 msgid "Whether to allow potential downgrades." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35608 +#: guix-git/doc/guix.texi:36088 msgid "Like @command{guix system reconfigure}, @command{guix deploy} compares the channel commits currently deployed on the remote host (as returned by @command{guix system describe}) to those currently in use (as returned by @command{guix describe}) to determine whether commits currently in use are descendants of those deployed. When this is not the case and @code{allow-downgrades?} is false, it raises an error. This ensures you do not accidentally downgrade remote machines." msgstr "" +#. type: item +#: guix-git/doc/guix.texi:36089 +#, fuzzy, no-wrap +msgid "@code{safety-checks?} (default: @code{#t})" +msgstr "@code{dnssec-policy}(默认值:@code{#f})" + +#. type: table +#: guix-git/doc/guix.texi:36095 +msgid "Whether to perform ``safety checks'' before deployment. This includes verifying that devices and file systems referred to in the operating system configuration actually exist on the target machine, and making sure that Linux modules required to access storage devices at boot time are listed in the @code{initrd-modules} field of the operating system." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:36098 +msgid "These safety checks ensure that you do not inadvertently deploy a system that would fail to boot. Be careful before turning them off!" +msgstr "" + #. type: deftp -#: guix-git/doc/guix.texi:35611 +#: guix-git/doc/guix.texi:36101 #, no-wrap msgid "{Data Type} digital-ocean-configuration" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:35614 +#: guix-git/doc/guix.texi:36104 msgid "This is the data type describing the Droplet that should be created for a machine with an @code{environment} of @code{digital-ocean-environment-type}." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35616 +#: guix-git/doc/guix.texi:36106 #, fuzzy, no-wrap msgid "ssh-key" msgstr "主机公钥" #. type: table -#: guix-git/doc/guix.texi:35619 +#: guix-git/doc/guix.texi:36109 msgid "The path to the SSH private key to use to authenticate with the remote host. In the future, this field may not exist." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35619 +#: guix-git/doc/guix.texi:36109 #, no-wrap msgid "tags" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35622 +#: guix-git/doc/guix.texi:36112 msgid "A list of string ``tags'' that uniquely identify the machine. Must be given such that no two machines in the deployment have the same set of tags." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35622 +#: guix-git/doc/guix.texi:36112 #, no-wrap msgid "region" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35624 +#: guix-git/doc/guix.texi:36114 msgid "A Digital Ocean region slug, such as @code{\"nyc3\"}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35626 +#: guix-git/doc/guix.texi:36116 msgid "A Digital Ocean size slug, such as @code{\"s-1vcpu-1gb\"}" msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:35626 +#: guix-git/doc/guix.texi:36116 #, no-wrap msgid "enable-ipv6?" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35628 +#: guix-git/doc/guix.texi:36118 msgid "Whether or not the droplet should be created with IPv6 networking." msgstr "" #. type: section -#: guix-git/doc/guix.texi:35632 +#: guix-git/doc/guix.texi:36122 #, no-wrap msgid "Running Guix in a Virtual Machine" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35640 +#: guix-git/doc/guix.texi:36130 msgid "To run Guix in a virtual machine (VM), one can use the pre-built Guix VM image distributed at @url{@value{BASE-URL}/guix-system-vm-image-@value{VERSION}.x86_64-linux.qcow2}. This image is a compressed image in QCOW format. You can pass it to an emulator such as @uref{https://qemu.org/, QEMU} (see below for details)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35647 +#: guix-git/doc/guix.texi:36137 msgid "This image boots the Xfce graphical environment and it contains some commonly used tools. You can install more software in the image by running @command{guix package} in a terminal (@pxref{Invoking guix package}). You can also reconfigure the system based on its initial configuration file available as @file{/run/current-system/configuration.scm} (@pxref{Using the Configuration System})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35650 +#: guix-git/doc/guix.texi:36140 msgid "Instead of using this pre-built image, one can also build their own image using @command{guix system image} (@pxref{Invoking guix system})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35651 +#: guix-git/doc/guix.texi:36141 #, no-wrap msgid "QEMU" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35658 +#: guix-git/doc/guix.texi:36148 msgid "If you built your own image, you must copy it out of the store (@pxref{The Store}) and give yourself permission to write to the copy before you can use it. When invoking QEMU, you must choose a system emulator that is suitable for your hardware platform. Here is a minimal QEMU invocation that will boot the result of @command{guix system image -t qcow2} on x86_64 hardware:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35665 +#: guix-git/doc/guix.texi:36155 #, no-wrap msgid "" "$ qemu-system-x86_64 \\\n" @@ -63698,137 +64591,137 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35668 +#: guix-git/doc/guix.texi:36158 msgid "Here is what each of these options means:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35670 +#: guix-git/doc/guix.texi:36160 #, no-wrap msgid "qemu-system-x86_64" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35673 +#: guix-git/doc/guix.texi:36163 msgid "This specifies the hardware platform to emulate. This should match the host." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35674 +#: guix-git/doc/guix.texi:36164 #, no-wrap msgid "-nic user,model=virtio-net-pci" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35682 +#: guix-git/doc/guix.texi:36172 msgid "Enable the unprivileged user-mode network stack. The guest OS can access the host but not vice versa. This is the simplest way to get the guest OS online. @code{model} specifies which network device to emulate: @code{virtio-net-pci} is a special device made for virtualized operating systems and recommended for most uses. Assuming your hardware platform is x86_64, you can get a list of available NIC models by running @command{qemu-system-x86_64 -nic model=help}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35683 +#: guix-git/doc/guix.texi:36173 #, no-wrap msgid "-enable-kvm" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35687 +#: guix-git/doc/guix.texi:36177 msgid "If your system has hardware virtualization extensions, enabling the virtual machine support (KVM) of the Linux kernel will make things run faster." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35689 +#: guix-git/doc/guix.texi:36179 #, no-wrap msgid "-m 1024" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35692 +#: guix-git/doc/guix.texi:36182 msgid "RAM available to the guest OS, in mebibytes. Defaults to 128@tie{}MiB, which may be insufficient for some operations." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35693 +#: guix-git/doc/guix.texi:36183 #, no-wrap msgid "-device virtio-blk,drive=myhd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35698 +#: guix-git/doc/guix.texi:36188 msgid "Create a @code{virtio-blk} drive called ``myhd''. @code{virtio-blk} is a ``paravirtualization'' mechanism for block devices that allows QEMU to achieve better performance than if it were emulating a complete disk drive. See the QEMU and KVM documentation for more info." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35699 +#: guix-git/doc/guix.texi:36189 #, no-wrap msgid "-drive if=none,file=/tmp/qemu-image,id=myhd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35702 +#: guix-git/doc/guix.texi:36192 msgid "Use our QCOW image, the @file{/tmp/qemu-image} file, as the backing store of the ``myhd'' drive." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35712 +#: guix-git/doc/guix.texi:36202 msgid "The default @command{run-vm.sh} script that is returned by an invocation of @command{guix system vm} does not add a @command{-nic user} flag by default. To get network access from within the vm add the @code{(dhcp-client-service)} to your system definition and start the VM using @command{$(guix system vm config.scm) -nic user}. An important caveat of using @command{-nic user} for networking is that @command{ping} will not work, because it uses the ICMP protocol. You'll have to use a different command to check for network connectivity, for example @command{guix download}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:35713 +#: guix-git/doc/guix.texi:36203 #, no-wrap msgid "Connecting Through SSH" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35721 +#: guix-git/doc/guix.texi:36211 msgid "To enable SSH inside a VM you need to add an SSH server like @code{openssh-service-type} to your VM (@pxref{Networking Services, @code{openssh-service-type}}). In addition you need to forward the SSH port, 22 by default, to the host. You can do this with" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35724 +#: guix-git/doc/guix.texi:36214 #, no-wrap msgid "$(guix system vm config.scm) -nic user,model=virtio-net-pci,hostfwd=tcp::10022-:22\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35727 +#: guix-git/doc/guix.texi:36217 msgid "To connect to the VM you can run" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35730 +#: guix-git/doc/guix.texi:36220 #, no-wrap msgid "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 10022 localhost\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35737 +#: guix-git/doc/guix.texi:36227 msgid "The @command{-p} tells @command{ssh} the port you want to connect to. @command{-o UserKnownHostsFile=/dev/null} prevents @command{ssh} from complaining every time you modify your @command{config.scm} file and the @command{-o StrictHostKeyChecking=no} prevents you from having to allow a connection to an unknown host every time you connect." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:35743 +#: guix-git/doc/guix.texi:36233 msgid "If you find the above @samp{hostfwd} example not to be working (e.g., your SSH client hangs attempting to connect to the mapped port of your VM), make sure that your Guix System VM has networking support, such as by using the @code{dhcp-client-service-type} service type." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:35745 +#: guix-git/doc/guix.texi:36235 #, no-wrap msgid "Using @command{virt-viewer} with Spice" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35751 +#: guix-git/doc/guix.texi:36241 msgid "As an alternative to the default @command{qemu} graphical client you can use the @command{remote-viewer} from the @command{virt-viewer} package. To connect pass the @command{-spice port=5930,disable-ticketing} flag to @command{qemu}. See previous section for further information on how to do this." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35754 +#: guix-git/doc/guix.texi:36244 msgid "Spice also allows you to do some nice stuff like share your clipboard with your VM@. To enable that you'll also have to pass the following flags to @command{qemu}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:35760 +#: guix-git/doc/guix.texi:36250 #, no-wrap msgid "" "-device virtio-serial-pci,id=virtio-serial0,max_ports=16,bus=pci.0,addr=0x5\n" @@ -63838,81 +64731,81 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35764 +#: guix-git/doc/guix.texi:36254 msgid "You'll also need to add the @code{(spice-vdagent-service)} to your system definition (@pxref{Miscellaneous Services, Spice service})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35771 +#: guix-git/doc/guix.texi:36261 msgid "The previous sections show the available services and how one can combine them in an @code{operating-system} declaration. But how do we define them in the first place? And what is a service anyway?" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35784 +#: guix-git/doc/guix.texi:36274 #, no-wrap msgid "daemons" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35797 +#: guix-git/doc/guix.texi:36287 msgid "Here we define a @dfn{service} as, broadly, something that extends the functionality of the operating system. Often a service is a process---a @dfn{daemon}---started when the system boots: a secure shell server, a Web server, the Guix build daemon, etc. Sometimes a service is a daemon whose execution can be triggered by another daemon---e.g., an FTP server started by @command{inetd} or a D-Bus service activated by @command{dbus-daemon}. Occasionally, a service does not map to a daemon. For instance, the ``account'' service collects user accounts and makes sure they exist when the system runs; the ``udev'' service collects device management rules and makes them available to the eudev daemon; the @file{/etc} service populates the @file{/etc} directory of the system." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35798 +#: guix-git/doc/guix.texi:36288 #, no-wrap msgid "service extensions" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35810 +#: guix-git/doc/guix.texi:36300 msgid "Guix system services are connected by @dfn{extensions}. For instance, the secure shell service @emph{extends} the Shepherd---the initialization system, running as PID@tie{}1---by giving it the command lines to start and stop the secure shell daemon (@pxref{Networking Services, @code{openssh-service-type}}); the UPower service extends the D-Bus service by passing it its @file{.service} specification, and extends the udev service by passing it device management rules (@pxref{Desktop Services, @code{upower-service}}); the Guix daemon service extends the Shepherd by passing it the command lines to start and stop the daemon, and extends the account service by passing it a list of required build user accounts (@pxref{Base Services})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35814 +#: guix-git/doc/guix.texi:36304 msgid "All in all, services and their ``extends'' relations form a directed acyclic graph (DAG). If we represent services as boxes and extensions as arrows, a typical system might provide something like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35816 +#: guix-git/doc/guix.texi:36306 msgid "@image{images/service-graph,,5in,Typical service extension graph.}" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35817 +#: guix-git/doc/guix.texi:36307 #, no-wrap msgid "system service" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35825 +#: guix-git/doc/guix.texi:36315 msgid "At the bottom, we see the @dfn{system service}, which produces the directory containing everything to run and boot the system, as returned by the @command{guix system build} command. @xref{Service Reference}, to learn about the other service types shown here. @xref{system-extension-graph, the @command{guix system extension-graph} command}, for information on how to generate this representation for a particular operating system definition." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:35826 +#: guix-git/doc/guix.texi:36316 #, no-wrap msgid "service types" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35832 +#: guix-git/doc/guix.texi:36322 msgid "Technically, developers can define @dfn{service types} to express these relations. There can be any number of services of a given type on the system---for instance, a system running two instances of the GNU secure shell server (lsh) has two instances of @code{lsh-service-type}, with different parameters." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35835 +#: guix-git/doc/guix.texi:36325 msgid "The following section describes the programming interface for service types and services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35842 +#: guix-git/doc/guix.texi:36332 msgid "A @dfn{service type} is a node in the DAG described above. Let us start with a simple example, the service type for the Guix build daemon (@pxref{Invoking guix-daemon}):" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35852 +#: guix-git/doc/guix.texi:36342 #, no-wrap msgid "" "(define guix-service-type\n" @@ -63926,75 +64819,75 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35856 +#: guix-git/doc/guix.texi:36346 msgid "It defines three things:" msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35860 +#: guix-git/doc/guix.texi:36350 msgid "A name, whose sole purpose is to make inspection and debugging easier." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35865 +#: guix-git/doc/guix.texi:36355 msgid "A list of @dfn{service extensions}, where each extension designates the target service type and a procedure that, given the parameters of the service, returns a list of objects to extend the service of that type." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35868 +#: guix-git/doc/guix.texi:36358 msgid "Every service type has at least one service extension. The only exception is the @dfn{boot service type}, which is the ultimate service." msgstr "" #. type: enumerate -#: guix-git/doc/guix.texi:35871 +#: guix-git/doc/guix.texi:36361 msgid "Optionally, a default value for instances of this type." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35874 +#: guix-git/doc/guix.texi:36364 msgid "In this example, @code{guix-service-type} extends three services:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35876 +#: guix-git/doc/guix.texi:36366 #, no-wrap msgid "shepherd-root-service-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35881 +#: guix-git/doc/guix.texi:36371 msgid "The @code{guix-shepherd-service} procedure defines how the Shepherd service is extended. Namely, it returns a @code{} object that defines how @command{guix-daemon} is started and stopped (@pxref{Shepherd Services})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35882 +#: guix-git/doc/guix.texi:36372 #, no-wrap msgid "account-service-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35887 +#: guix-git/doc/guix.texi:36377 msgid "This extension for this service is computed by @code{guix-accounts}, which returns a list of @code{user-group} and @code{user-account} objects representing the build user accounts (@pxref{Invoking guix-daemon})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35888 +#: guix-git/doc/guix.texi:36378 #, no-wrap msgid "activation-service-type" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35892 +#: guix-git/doc/guix.texi:36382 msgid "Here @code{guix-activation} is a procedure that returns a gexp, which is a code snippet to run at ``activation time''---e.g., when the service is booted." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35895 +#: guix-git/doc/guix.texi:36385 msgid "A service of this type is instantiated like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35901 +#: guix-git/doc/guix.texi:36391 #, no-wrap msgid "" "(service guix-service-type\n" @@ -64004,28 +64897,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35909 +#: guix-git/doc/guix.texi:36399 msgid "The second argument to the @code{service} form is a value representing the parameters of this specific service instance. @xref{guix-configuration-type, @code{guix-configuration}}, for information about the @code{guix-configuration} data type. When the value is omitted, the default value specified by @code{guix-service-type} is used:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35912 +#: guix-git/doc/guix.texi:36402 #, no-wrap msgid "(service guix-service-type)\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35916 +#: guix-git/doc/guix.texi:36406 msgid "@code{guix-service-type} is quite simple because it extends other services but is not extensible itself." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35920 +#: guix-git/doc/guix.texi:36410 msgid "The service type for an @emph{extensible} service looks like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35927 +#: guix-git/doc/guix.texi:36417 #, no-wrap msgid "" "(define udev-service-type\n" @@ -64037,7 +64930,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35935 +#: guix-git/doc/guix.texi:36425 #, no-wrap msgid "" " (compose concatenate) ;concatenate the list of rules\n" @@ -64050,96 +64943,96 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35941 +#: guix-git/doc/guix.texi:36431 msgid "This is the service type for the @uref{https://wiki.gentoo.org/wiki/Project:Eudev, eudev device management daemon}. Compared to the previous example, in addition to an extension of @code{shepherd-root-service-type}, we see two new fields:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:35943 +#: guix-git/doc/guix.texi:36433 #, no-wrap msgid "compose" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35946 +#: guix-git/doc/guix.texi:36436 msgid "This is the procedure to @dfn{compose} the list of extensions to services of this type." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35949 +#: guix-git/doc/guix.texi:36439 msgid "Services can extend the udev service by passing it lists of rules; we compose those extensions simply by concatenating them." msgstr "" #. type: item -#: guix-git/doc/guix.texi:35950 +#: guix-git/doc/guix.texi:36440 #, no-wrap msgid "extend" msgstr "" #. type: table -#: guix-git/doc/guix.texi:35953 +#: guix-git/doc/guix.texi:36443 msgid "This procedure defines how the value of the service is @dfn{extended} with the composition of the extensions." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35958 +#: guix-git/doc/guix.texi:36448 msgid "Udev extensions are composed into a list of rules, but the udev service value is itself a @code{} record. So here, we extend that record by appending the list of rules it contains to the list of contributed rules." msgstr "" #. type: table -#: guix-git/doc/guix.texi:35964 +#: guix-git/doc/guix.texi:36454 msgid "This is a string giving an overview of the service type. The string can contain Texinfo markup (@pxref{Overview,,, texinfo, GNU Texinfo}). The @command{guix system search} command searches these strings and displays them (@pxref{Invoking guix system})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35969 +#: guix-git/doc/guix.texi:36459 msgid "There can be only one instance of an extensible service type such as @code{udev-service-type}. If there were more, the @code{service-extension} specifications would be ambiguous." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35972 +#: guix-git/doc/guix.texi:36462 msgid "Still here? The next section provides a reference of the programming interface for services." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:35980 +#: guix-git/doc/guix.texi:36470 msgid "We have seen an overview of service types (@pxref{Service Types and Services}). This section provides a reference on how to manipulate services and service types. This interface is provided by the @code{(gnu services)} module." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35981 +#: guix-git/doc/guix.texi:36471 #, no-wrap msgid "{Scheme Procedure} service @var{type} [@var{value}]" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35985 +#: guix-git/doc/guix.texi:36475 msgid "Return a new service of @var{type}, a @code{} object (see below). @var{value} can be any object; it represents the parameters of this particular service instance." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35989 +#: guix-git/doc/guix.texi:36479 msgid "When @var{value} is omitted, the default value specified by @var{type} is used; if @var{type} does not specify a default value, an error is raised." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35991 +#: guix-git/doc/guix.texi:36481 msgid "For instance, this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:35994 +#: guix-git/doc/guix.texi:36484 #, no-wrap msgid "(service openssh-service-type)\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:35998 +#: guix-git/doc/guix.texi:36488 msgid "is equivalent to this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36002 +#: guix-git/doc/guix.texi:36492 #, no-wrap msgid "" "(service openssh-service-type\n" @@ -64147,50 +65040,50 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36006 +#: guix-git/doc/guix.texi:36496 msgid "In both cases the result is an instance of @code{openssh-service-type} with the default configuration." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36008 +#: guix-git/doc/guix.texi:36498 #, no-wrap msgid "{Scheme Procedure} service? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36010 +#: guix-git/doc/guix.texi:36500 msgid "Return true if @var{obj} is a service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36012 +#: guix-git/doc/guix.texi:36502 #, no-wrap msgid "{Scheme Procedure} service-kind @var{service}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36014 +#: guix-git/doc/guix.texi:36504 msgid "Return the type of @var{service}---i.e., a @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36016 +#: guix-git/doc/guix.texi:36506 #, no-wrap msgid "{Scheme Procedure} service-value @var{service}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36019 +#: guix-git/doc/guix.texi:36509 msgid "Return the value associated with @var{service}. It represents its parameters." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36022 +#: guix-git/doc/guix.texi:36512 msgid "Here is an example of how a service is created and manipulated:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36031 +#: guix-git/doc/guix.texi:36521 #, no-wrap msgid "" "(define s\n" @@ -64204,7 +65097,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36034 +#: guix-git/doc/guix.texi:36524 #, no-wrap msgid "" "(service? s)\n" @@ -64213,7 +65106,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36037 +#: guix-git/doc/guix.texi:36527 #, no-wrap msgid "" "(eq? (service-kind s) nginx-service-type)\n" @@ -64221,212 +65114,212 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36047 +#: guix-git/doc/guix.texi:36537 msgid "The @code{modify-services} form provides a handy way to change the parameters of some of the services of a list such as @code{%base-services} (@pxref{Base Services, @code{%base-services}}). It evaluates to a list of services. Of course, you could always use standard list combinators such as @code{map} and @code{fold} to do that (@pxref{SRFI-1, List Library,, guile, GNU Guile Reference Manual}); @code{modify-services} simply provides a more concise form for this common pattern." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36048 +#: guix-git/doc/guix.texi:36538 #, no-wrap msgid "{Scheme Syntax} modify-services @var{services} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36050 +#: guix-git/doc/guix.texi:36540 msgid "(@var{type} @var{variable} => @var{body}) @dots{}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36053 +#: guix-git/doc/guix.texi:36543 msgid "Modify the services listed in @var{services} according to the given clauses. Each clause has the form:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36056 +#: guix-git/doc/guix.texi:36546 #, no-wrap msgid "(@var{type} @var{variable} => @var{body})\n" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36063 +#: guix-git/doc/guix.texi:36553 msgid "where @var{type} is a service type---e.g., @code{guix-service-type}---and @var{variable} is an identifier that is bound within the @var{body} to the service parameters---e.g., a @code{guix-configuration} instance---of the original service of that @var{type}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36070 +#: guix-git/doc/guix.texi:36560 msgid "The @var{body} should evaluate to the new service parameters, which will be used to configure the new service. This new service will replace the original in the resulting list. Because a service's service parameters are created using @code{define-record-type*}, you can write a succinct @var{body} that evaluates to the new service parameters by using the @code{inherit} feature that @code{define-record-type*} provides." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36072 +#: guix-git/doc/guix.texi:36562 #, fuzzy #| msgid "Packages are currently available on the following platforms:" msgid "Clauses can also have the following form:" msgstr "目前这些平台提供软件包:" #. type: lisp -#: guix-git/doc/guix.texi:36075 +#: guix-git/doc/guix.texi:36565 #, fuzzy, no-wrap msgid "(delete @var{type})\n" msgstr "--log-compression=@var{type}" #. type: deffn -#: guix-git/doc/guix.texi:36079 +#: guix-git/doc/guix.texi:36569 msgid "Such a clause removes all services of the given @var{type} from @var{services}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36081 +#: guix-git/doc/guix.texi:36571 msgid "@xref{Using the Configuration System}, for example usage." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36088 +#: guix-git/doc/guix.texi:36578 msgid "Next comes the programming interface for service types. This is something you want to know when writing new service definitions, but not necessarily when simply looking for ways to customize your @code{operating-system} declaration." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36089 +#: guix-git/doc/guix.texi:36579 #, no-wrap msgid "{Data Type} service-type" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36090 +#: guix-git/doc/guix.texi:36580 #, no-wrap msgid "service type" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36093 +#: guix-git/doc/guix.texi:36583 msgid "This is the representation of a @dfn{service type} (@pxref{Service Types and Services})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36097 +#: guix-git/doc/guix.texi:36587 msgid "This is a symbol, used only to simplify inspection and debugging." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:36098 +#: guix-git/doc/guix.texi:36588 #, no-wrap msgid "extensions" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36100 +#: guix-git/doc/guix.texi:36590 msgid "A non-empty list of @code{} objects (see below)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36101 +#: guix-git/doc/guix.texi:36591 #, no-wrap msgid "@code{compose} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36105 +#: guix-git/doc/guix.texi:36595 msgid "If this is @code{#f}, then the service type denotes services that cannot be extended---i.e., services that do not receive ``values'' from other services." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36109 +#: guix-git/doc/guix.texi:36599 msgid "Otherwise, it must be a one-argument procedure. The procedure is called by @code{fold-services} and is passed a list of values collected from extensions. It may return any single value." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36110 +#: guix-git/doc/guix.texi:36600 #, no-wrap msgid "@code{extend} (default: @code{#f})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36112 +#: guix-git/doc/guix.texi:36602 msgid "If this is @code{#f}, services of this type cannot be extended." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36118 +#: guix-git/doc/guix.texi:36608 msgid "Otherwise, it must be a two-argument procedure: @code{fold-services} calls it, passing it the initial value of the service as the first argument and the result of applying @code{compose} to the extension values as the second argument. It must return a value that is a valid parameter value for the service instance." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36124 +#: guix-git/doc/guix.texi:36614 msgid "This is a string, possibly using Texinfo markup, describing in a couple of sentences what the service is about. This string allows users to find about the service through @command{guix system search} (@pxref{Invoking guix system})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36125 +#: guix-git/doc/guix.texi:36615 #, fuzzy, no-wrap msgid "@code{default-value} (default: @code{&no-default-value})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:36128 +#: guix-git/doc/guix.texi:36618 msgid "The default value associated for instances of this service type. This allows users to use the @code{service} form without its second argument:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36131 +#: guix-git/doc/guix.texi:36621 #, no-wrap msgid "(service @var{type})\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36135 +#: guix-git/doc/guix.texi:36625 msgid "The returned service in this case has the default value specified by @var{type}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36138 +#: guix-git/doc/guix.texi:36628 msgid "@xref{Service Types and Services}, for examples." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36140 +#: guix-git/doc/guix.texi:36630 #, no-wrap msgid "{Scheme Procedure} service-extension @var{target-type} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36146 +#: guix-git/doc/guix.texi:36636 msgid "@var{compute} Return a new extension for services of type @var{target-type}. @var{compute} must be a one-argument procedure: @code{fold-services} calls it, passing it the value associated with the service that provides the extension; it must return a valid value for the target service." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36148 +#: guix-git/doc/guix.texi:36638 #, no-wrap msgid "{Scheme Procedure} service-extension? @var{obj}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36150 +#: guix-git/doc/guix.texi:36640 msgid "Return true if @var{obj} is a service extension." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36156 +#: guix-git/doc/guix.texi:36646 msgid "Occasionally, you might want to simply extend an existing service. This involves creating a new service type and specifying the extension of interest, which can be verbose; the @code{simple-service} procedure provides a shorthand for this." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36157 +#: guix-git/doc/guix.texi:36647 #, no-wrap msgid "{Scheme Procedure} simple-service @var{name} @var{target} @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36161 +#: guix-git/doc/guix.texi:36651 msgid "Return a service that extends @var{target} with @var{value}. This works by creating a singleton service type @var{name}, of which the returned service is an instance." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36164 +#: guix-git/doc/guix.texi:36654 msgid "For example, this extends mcron (@pxref{Scheduled Job Execution}) with an additional job:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36168 +#: guix-git/doc/guix.texi:36658 #, no-wrap msgid "" "(simple-service 'my-mcron-job mcron-service-type\n" @@ -64434,185 +65327,185 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36178 +#: guix-git/doc/guix.texi:36668 msgid "At the core of the service abstraction lies the @code{fold-services} procedure, which is responsible for ``compiling'' a list of services down to a single directory that contains everything needed to boot and run the system---the directory shown by the @command{guix system build} command (@pxref{Invoking guix system}). In essence, it propagates service extensions down the service graph, updating each node parameters on the way, until it reaches the root node." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36179 +#: guix-git/doc/guix.texi:36669 #, no-wrap msgid "{Scheme Procedure} fold-services @var{services} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36183 +#: guix-git/doc/guix.texi:36673 msgid "[#:target-type @var{system-service-type}] Fold @var{services} by propagating their extensions down to the root of type @var{target-type}; return the root service adjusted accordingly." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36187 +#: guix-git/doc/guix.texi:36677 msgid "Lastly, the @code{(gnu services)} module also defines several essential service types, some of which are listed below." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36188 +#: guix-git/doc/guix.texi:36678 #, no-wrap msgid "{Scheme Variable} system-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36191 +#: guix-git/doc/guix.texi:36681 msgid "This is the root of the service graph. It produces the system directory as returned by the @command{guix system build} command." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36193 +#: guix-git/doc/guix.texi:36683 #, no-wrap msgid "{Scheme Variable} boot-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36196 +#: guix-git/doc/guix.texi:36686 msgid "The type of the ``boot service'', which produces the @dfn{boot script}. The boot script is what the initial RAM disk runs when booting." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36198 +#: guix-git/doc/guix.texi:36688 #, no-wrap msgid "{Scheme Variable} etc-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36202 +#: guix-git/doc/guix.texi:36692 msgid "The type of the @file{/etc} service. This service is used to create files under @file{/etc} and can be extended by passing it name/file tuples such as:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36205 +#: guix-git/doc/guix.texi:36695 #, no-wrap msgid "(list `(\"issue\" ,(plain-file \"issue\" \"Welcome!\\n\")))\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36209 +#: guix-git/doc/guix.texi:36699 msgid "In this example, the effect would be to add an @file{/etc/issue} file pointing to the given file." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36211 +#: guix-git/doc/guix.texi:36701 #, no-wrap msgid "{Scheme Variable} setuid-program-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36215 +#: guix-git/doc/guix.texi:36705 msgid "Type for the ``setuid-program service''. This service collects lists of executable file names, passed as gexps, and adds them to the set of setuid-root programs on the system (@pxref{Setuid Programs})." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36217 +#: guix-git/doc/guix.texi:36707 #, no-wrap msgid "{Scheme Variable} profile-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36221 +#: guix-git/doc/guix.texi:36711 msgid "Type of the service that populates the @dfn{system profile}---i.e., the programs under @file{/run/current-system/profile}. Other services can extend it by passing it lists of packages to add to the system profile." msgstr "" #. type: anchor{#1} -#: guix-git/doc/guix.texi:36225 +#: guix-git/doc/guix.texi:36715 msgid "provenance-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36225 +#: guix-git/doc/guix.texi:36715 #, no-wrap msgid "{Scheme Variable} provenance-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36229 +#: guix-git/doc/guix.texi:36719 msgid "This is the type of the service that records @dfn{provenance meta-data} in the system itself. It creates several files under @file{/run/current-system}:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36231 +#: guix-git/doc/guix.texi:36721 #, fuzzy, no-wrap msgid "channels.scm" msgstr "通道" #. type: table -#: guix-git/doc/guix.texi:36236 +#: guix-git/doc/guix.texi:36726 msgid "This is a ``channel file'' that can be passed to @command{guix pull -C} or @command{guix time-machine -C}, and which describes the channels used to build the system, if that information was available (@pxref{Channels})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36237 +#: guix-git/doc/guix.texi:36727 #, fuzzy, no-wrap msgid "configuration.scm" msgstr "系统配置" #. type: table -#: guix-git/doc/guix.texi:36242 +#: guix-git/doc/guix.texi:36732 msgid "This is the file that was passed as the value for this @code{provenance-service-type} service. By default, @command{guix system reconfigure} automatically passes the OS configuration file it received on the command line." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36243 +#: guix-git/doc/guix.texi:36733 #, no-wrap msgid "provenance" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36246 +#: guix-git/doc/guix.texi:36736 msgid "This contains the same information as the two other files but in a format that is more readily processable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36250 +#: guix-git/doc/guix.texi:36740 msgid "In general, these two pieces of information (channels and configuration file) are enough to reproduce the operating system ``from source''." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36251 +#: guix-git/doc/guix.texi:36741 #, no-wrap msgid "Caveats" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36258 +#: guix-git/doc/guix.texi:36748 msgid "This information is necessary to rebuild your operating system, but it is not always sufficient. In particular, @file{configuration.scm} itself is insufficient if it is not self-contained---if it refers to external Guile modules or to extra files. If you want @file{configuration.scm} to be self-contained, we recommend that modules or files it refers to be part of a channel." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36266 +#: guix-git/doc/guix.texi:36756 msgid "Besides, provenance meta-data is ``silent'' in the sense that it does not change the bits contained in your system, @emph{except for the meta-data bits themselves}. Two different OS configurations or sets of channels can lead to the same system, bit-for-bit; when @code{provenance-service-type} is used, these two systems will have different meta-data and thus different store file names, which makes comparison less trivial." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36271 +#: guix-git/doc/guix.texi:36761 msgid "This service is automatically added to your operating system configuration when you use @command{guix system reconfigure}, @command{guix system init}, or @command{guix deploy}." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36273 +#: guix-git/doc/guix.texi:36763 #, no-wrap msgid "{Scheme Variable} linux-loadable-module-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36277 +#: guix-git/doc/guix.texi:36767 msgid "Type of the service that collects lists of packages containing kernel-loadable modules, and adds them to the set of kernel-loadable modules." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36280 +#: guix-git/doc/guix.texi:36770 msgid "This service type is intended to be extended by other service types, such as below:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36286 +#: guix-git/doc/guix.texi:36776 #, no-wrap msgid "" "(simple-service 'installing-module\n" @@ -64622,192 +65515,192 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36290 +#: guix-git/doc/guix.texi:36780 msgid "This does not actually load modules at bootup, only adds it to the kernel profile so that it @emph{can} be loaded by other means." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36295 guix-git/doc/guix.texi:37447 +#: guix-git/doc/guix.texi:36785 #, no-wrap msgid "shepherd services" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36296 +#: guix-git/doc/guix.texi:36786 #, no-wrap msgid "PID 1" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36297 +#: guix-git/doc/guix.texi:36787 #, no-wrap msgid "init system" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36303 +#: guix-git/doc/guix.texi:36793 msgid "The @code{(gnu services shepherd)} module provides a way to define services managed by the GNU@tie{}Shepherd, which is the initialization system---the first process that is started when the system boots, also known as PID@tie{}1 (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36309 +#: guix-git/doc/guix.texi:36799 msgid "Services in the Shepherd can depend on each other. For instance, the SSH daemon may need to be started after the syslog daemon has been started, which in turn can only happen once all the file systems have been mounted. The simple operating system defined earlier (@pxref{Using the Configuration System}) results in a service graph like this:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36311 +#: guix-git/doc/guix.texi:36801 msgid "@image{images/shepherd-graph,,5in,Typical shepherd service graph.}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36315 +#: guix-git/doc/guix.texi:36805 msgid "You can actually generate such a graph for any operating system definition using the @command{guix system shepherd-graph} command (@pxref{system-shepherd-graph, @command{guix system shepherd-graph}})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36319 +#: guix-git/doc/guix.texi:36809 msgid "The @code{%shepherd-root-service} is a service object representing PID@tie{}1, of type @code{shepherd-root-service-type}; it can be extended by passing it lists of @code{} objects." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36320 +#: guix-git/doc/guix.texi:36810 #, no-wrap msgid "{Data Type} shepherd-service" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36322 +#: guix-git/doc/guix.texi:36812 msgid "The data type representing a service managed by the Shepherd." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:36324 +#: guix-git/doc/guix.texi:36814 #, no-wrap msgid "provision" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36326 +#: guix-git/doc/guix.texi:36816 msgid "This is a list of symbols denoting what the service provides." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36331 +#: guix-git/doc/guix.texi:36821 msgid "These are the names that may be passed to @command{herd start}, @command{herd status}, and similar commands (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual}). @xref{Slots of services, the @code{provides} slot,, shepherd, The GNU Shepherd Manual}, for details." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36332 +#: guix-git/doc/guix.texi:36822 #, fuzzy, no-wrap msgid "@code{requirement} (default: @code{'()})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:36334 +#: guix-git/doc/guix.texi:36824 msgid "List of symbols denoting the Shepherd services this one depends on." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36335 +#: guix-git/doc/guix.texi:36825 #, no-wrap msgid "one-shot services, for the Shepherd" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36340 +#: guix-git/doc/guix.texi:36830 msgid "Whether this service is @dfn{one-shot}. One-shot services stop immediately after their @code{start} action has completed. @xref{Slots of services,,, shepherd, The GNU Shepherd Manual}, for more info." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36341 +#: guix-git/doc/guix.texi:36831 #, no-wrap msgid "@code{respawn?} (default: @code{#t})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36344 +#: guix-git/doc/guix.texi:36834 msgid "Whether to restart the service when it stops, for instance when the underlying process dies." msgstr "" #. type: code{#1} -#: guix-git/doc/guix.texi:36345 +#: guix-git/doc/guix.texi:36835 #, no-wrap msgid "start" msgstr "" #. type: itemx -#: guix-git/doc/guix.texi:36346 +#: guix-git/doc/guix.texi:36836 #, no-wrap msgid "@code{stop} (default: @code{#~(const #f)})" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36352 +#: guix-git/doc/guix.texi:36842 msgid "The @code{start} and @code{stop} fields refer to the Shepherd's facilities to start and stop processes (@pxref{Service De- and Constructors,,, shepherd, The GNU Shepherd Manual}). They are given as G-expressions that get expanded in the Shepherd configuration file (@pxref{G-Expressions})." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36353 +#: guix-git/doc/guix.texi:36843 #, no-wrap msgid "@code{actions} (default: @code{'()})" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36354 +#: guix-git/doc/guix.texi:36844 #, no-wrap msgid "actions, of Shepherd services" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36359 +#: guix-git/doc/guix.texi:36849 msgid "This is a list of @code{shepherd-action} objects (see below) defining @dfn{actions} supported by the service, in addition to the standard @code{start} and @code{stop} actions. Actions listed here become available as @command{herd} sub-commands:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36362 +#: guix-git/doc/guix.texi:36852 #, no-wrap msgid "herd @var{action} @var{service} [@var{arguments}@dots{}]\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36364 +#: guix-git/doc/guix.texi:36854 #, fuzzy, no-wrap msgid "@code{auto-start?} (default: @code{#t})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:36367 +#: guix-git/doc/guix.texi:36857 msgid "Whether this service should be started automatically by the Shepherd. If it is @code{#f} the service has to be started manually with @code{herd start}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36370 +#: guix-git/doc/guix.texi:36860 msgid "A documentation string, as shown when running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36373 +#: guix-git/doc/guix.texi:36863 #, no-wrap msgid "herd doc @var{service-name}\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36377 +#: guix-git/doc/guix.texi:36867 msgid "where @var{service-name} is one of the symbols in @code{provision} (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36381 +#: guix-git/doc/guix.texi:36871 msgid "This is the list of modules that must be in scope when @code{start} and @code{stop} are evaluated." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36389 +#: guix-git/doc/guix.texi:36879 msgid "The example below defines a Shepherd service that spawns @command{syslogd}, the system logger from the GNU Networking Utilities (@pxref{syslogd invocation, @command{syslogd},, inetutils, GNU Inetutils}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36401 +#: guix-git/doc/guix.texi:36891 #, no-wrap msgid "" "(let ((config (plain-file \"syslogd.conf\" \"@dots{}\")))\n" @@ -64823,55 +65716,55 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36416 +#: guix-git/doc/guix.texi:36906 msgid "Key elements in this example are the @code{start} and @code{stop} fields: they are @dfn{staged} code snippets that use the @code{make-forkexec-constructor} procedure provided by the Shepherd and its dual, @code{make-kill-destructor} (@pxref{Service De- and Constructors,,, shepherd, The GNU Shepherd Manual}). The @code{start} field will have @command{shepherd} spawn @command{syslogd} with the given option; note that we pass @code{config} after @option{--rcfile}, which is a configuration file declared above (contents of this file are omitted). Likewise, the @code{stop} field tells how this service is to be stopped; in this case, it is stopped by making the @code{kill} system call on its PID@. Code staging is achieved using G-expressions: @code{#~} stages code, while @code{#$} ``escapes'' back to host code (@pxref{G-Expressions})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36417 +#: guix-git/doc/guix.texi:36907 #, no-wrap msgid "{Data Type} shepherd-action" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36420 +#: guix-git/doc/guix.texi:36910 msgid "This is the data type that defines additional actions implemented by a Shepherd service (see above)." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36424 +#: guix-git/doc/guix.texi:36914 msgid "Symbol naming the action." msgstr "" #. type: table -#: guix-git/doc/guix.texi:36427 +#: guix-git/doc/guix.texi:36917 msgid "This is a documentation string for the action. It can be viewed by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36430 +#: guix-git/doc/guix.texi:36920 #, no-wrap msgid "herd doc @var{service} action @var{action}\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36432 +#: guix-git/doc/guix.texi:36922 #, no-wrap msgid "procedure" msgstr "" #. type: table -#: guix-git/doc/guix.texi:36436 +#: guix-git/doc/guix.texi:36926 msgid "This should be a gexp that evaluates to a procedure of at least one argument, which is the ``running value'' of the service (@pxref{Slots of services,,, shepherd, The GNU Shepherd Manual})." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36440 +#: guix-git/doc/guix.texi:36930 msgid "The following example defines an action called @code{say-hello} that kindly greets the user:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36449 +#: guix-git/doc/guix.texi:36939 #, no-wrap msgid "" "(shepherd-action\n" @@ -64884,12 +65777,12 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36452 +#: guix-git/doc/guix.texi:36942 msgid "Assuming this action is added to the @code{example} service, then you can do:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36458 +#: guix-git/doc/guix.texi:36948 #, no-wrap msgid "" "# herd say-hello example\n" @@ -64899,68 +65792,68 @@ msgid "" msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36463 +#: guix-git/doc/guix.texi:36953 msgid "This, as you can see, is a fairly sophisticated way to say hello. @xref{Service Convenience,,, shepherd, The GNU Shepherd Manual}, for more info on actions." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36465 +#: guix-git/doc/guix.texi:36955 #, no-wrap msgid "{Scheme Variable} shepherd-root-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36467 +#: guix-git/doc/guix.texi:36957 msgid "The service type for the Shepherd ``root service''---i.e., PID@tie{}1." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36472 +#: guix-git/doc/guix.texi:36962 msgid "This is the service type that extensions target when they want to create shepherd services (@pxref{Service Types and Services}, for an example). Each extension must pass a list of @code{}. Its value must be a @code{shepherd-configuration}, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:36474 +#: guix-git/doc/guix.texi:36964 #, fuzzy, no-wrap msgid "{Data Type} shepherd-configuration" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:36476 guix-git/doc/guix.texi:37463 +#: guix-git/doc/guix.texi:36966 guix-git/doc/guix.texi:37959 #, fuzzy msgid "This data type represents the Shepherd's configuration." msgstr "管理操作系统配置。" #. type: item -#: guix-git/doc/guix.texi:36478 guix-git/doc/guix.texi:37465 +#: guix-git/doc/guix.texi:36968 guix-git/doc/guix.texi:37961 #, fuzzy, no-wrap msgid "shepherd (default: @code{shepherd})" msgstr "@code{mate}(默认值:@code{mate})" #. type: table -#: guix-git/doc/guix.texi:36480 guix-git/doc/guix.texi:37467 +#: guix-git/doc/guix.texi:36970 guix-git/doc/guix.texi:37963 #, fuzzy msgid "The Shepherd package to use." msgstr "软件包数据类型。" #. type: item -#: guix-git/doc/guix.texi:36481 guix-git/doc/guix.texi:37471 +#: guix-git/doc/guix.texi:36971 guix-git/doc/guix.texi:37967 #, fuzzy, no-wrap msgid "services (default: @code{'()})" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:36485 guix-git/doc/guix.texi:37475 +#: guix-git/doc/guix.texi:36975 guix-git/doc/guix.texi:37971 msgid "A list of @code{} to start. You should probably use the service extension mechanism instead (@pxref{Shepherd Services})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36490 +#: guix-git/doc/guix.texi:36980 msgid "The following example specifies the Shepherd package for the operating system:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36505 +#: guix-git/doc/guix.texi:36995 #, no-wrap msgid "" "(operating-system\n" @@ -64979,52 +65872,52 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36507 +#: guix-git/doc/guix.texi:36997 #, no-wrap msgid "{Scheme Variable} %shepherd-root-service" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:36509 +#: guix-git/doc/guix.texi:36999 msgid "This service represents PID@tie{}1." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36513 +#: guix-git/doc/guix.texi:37003 #, fuzzy, no-wrap msgid "complex configurations" msgstr "系统配置" #. type: Plain text -#: guix-git/doc/guix.texi:36518 +#: guix-git/doc/guix.texi:37008 msgid "Some programs might have rather complex configuration files or formats, and to make it easier to create Scheme bindings for these configuration files, you can use the utilities defined in the @code{(gnu services configuration)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36526 +#: guix-git/doc/guix.texi:37016 msgid "The main utility is the @code{define-configuration} macro, which you will use to define a Scheme record type (@pxref{Record Overview,,, guile, GNU Guile Reference Manual}). The Scheme record will be serialized to a configuration file by using @dfn{serializers}, which are procedures that take some kind of Scheme value and returns a G-expression (@pxref{G-Expressions}), which should, once serialized to the disk, return a string. More details are listed below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36527 +#: guix-git/doc/guix.texi:37017 #, no-wrap msgid "{Scheme Syntax} define-configuration @var{name} @var{clause1} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36531 +#: guix-git/doc/guix.texi:37021 msgid "@var{clause2} ... Create a record type named @code{@var{name}} that contains the fields found in the clauses." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36533 +#: guix-git/doc/guix.texi:37023 #, fuzzy #| msgid "Packages are currently available on the following platforms:" msgid "A clause can have one of the following forms:" msgstr "目前这些平台提供软件包:" #. type: example -#: guix-git/doc/guix.texi:36538 +#: guix-git/doc/guix.texi:37028 #, no-wrap msgid "" "(@var{field-name}\n" @@ -65034,7 +65927,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36543 +#: guix-git/doc/guix.texi:37033 #, no-wrap msgid "" "(@var{field-name}\n" @@ -65045,7 +65938,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36547 +#: guix-git/doc/guix.texi:37037 #, no-wrap msgid "" "(@var{field-name}\n" @@ -65055,7 +65948,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36552 +#: guix-git/doc/guix.texi:37042 #, no-wrap msgid "" "(@var{field-name}\n" @@ -65065,37 +65958,37 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36556 +#: guix-git/doc/guix.texi:37046 msgid "@var{field-name} is an identifier that denotes the name of the field in the generated record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36564 +#: guix-git/doc/guix.texi:37054 msgid "@var{type} is the type of the value corresponding to @var{field-name}; since Guile is untyped, a predicate procedure---@code{@var{type}?}---will be called on the value corresponding to the field to ensure that the value is of the correct type. This means that if say, @var{type} is @code{package}, then a procedure named @code{package?} will be applied on the value to make sure that it is indeed a @code{} object." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36568 +#: guix-git/doc/guix.texi:37058 msgid "@var{default-value} is the default value corresponding to the field; if none is specified, the user is forced to provide a value when creating an object of the record type." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36573 +#: guix-git/doc/guix.texi:37063 msgid "@var{documentation} is a string formatted with Texinfo syntax which should provide a description of what setting this field does." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36580 +#: guix-git/doc/guix.texi:37070 msgid "@var{serializer} is the name of a procedure which takes two arguments, the first is the name of the field, and the second is the value corresponding to the field. The procedure should return a string or G-expression (@pxref{G-Expressions}) that represents the content that will be serialized to the configuration file. If none is specified, a procedure of the name @code{serialize-@var{type}} will be used." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36582 +#: guix-git/doc/guix.texi:37072 msgid "A simple serializer procedure could look like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36587 +#: guix-git/doc/guix.texi:37077 #, no-wrap msgid "" "(define (serialize-boolean field-name value)\n" @@ -65104,12 +65997,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36598 +#: guix-git/doc/guix.texi:37088 msgid "In some cases multiple different configuration records might be defined in the same file, but their serializers for the same type might have to be different, because they have different configuration formats. For example, the @code{serialize-boolean} procedure for the Getmail service would have to be different for the one for the Transmission service. To make it easier to deal with this situation, one can specify a serializer prefix by using the @code{prefix} literal in the @code{define-configuration} form. This means that one doesn't have to manually specify a custom @var{serializer} for every field." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36602 +#: guix-git/doc/guix.texi:37092 #, no-wrap msgid "" "(define (foo-serialize-string field-name value)\n" @@ -65118,7 +66011,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36605 +#: guix-git/doc/guix.texi:37095 #, no-wrap msgid "" "(define (bar-serialize-string field-name value)\n" @@ -65127,7 +66020,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36611 +#: guix-git/doc/guix.texi:37101 #, no-wrap msgid "" "(define-configuration foo-configuration\n" @@ -65139,7 +66032,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36617 +#: guix-git/doc/guix.texi:37107 #, no-wrap msgid "" "(define-configuration bar-configuration\n" @@ -65150,12 +66043,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36623 +#: guix-git/doc/guix.texi:37113 msgid "However, in some cases you might not want to serialize any of the values of the record, to do this, you can use the @code{no-serialization} literal. There is also the @code{define-configuration/no-serialization} macro which is a shorthand of this." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36631 +#: guix-git/doc/guix.texi:37121 #, no-wrap msgid "" ";; Nothing will be serialized to disk.\n" @@ -65168,7 +66061,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36637 +#: guix-git/doc/guix.texi:37127 #, no-wrap msgid "" ";; The same thing as above.\n" @@ -65179,23 +66072,23 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36640 +#: guix-git/doc/guix.texi:37130 #, no-wrap msgid "{Scheme Syntax} define-maybe @var{type}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36645 +#: guix-git/doc/guix.texi:37135 msgid "Sometimes a field should not be serialized if the user doesn’t specify a value. To achieve this, you can use the @code{define-maybe} macro to define a ``maybe type''; if the value of a maybe type is set to the @code{disabled}, it will not be serialized." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36652 +#: guix-git/doc/guix.texi:37142 msgid "When defining a ``maybe type'', the corresponding serializer for the regular type will be used by default. For example, a field of type @code{maybe-string} will be serialized using the @code{serialize-string} procedure by default, you can of course change this by specifying a custom serializer procedure. Likewise, the type of the value would have to be a string, unless it is set to the @code{disabled} symbol." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36655 +#: guix-git/doc/guix.texi:37145 #, no-wrap msgid "" "(define-maybe string)\n" @@ -65203,7 +66096,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36658 +#: guix-git/doc/guix.texi:37148 #, no-wrap msgid "" "(define (serialize-string field-name value)\n" @@ -65212,7 +66105,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36665 +#: guix-git/doc/guix.texi:37155 #, no-wrap msgid "" "(define-configuration baz-configuration\n" @@ -65224,12 +66117,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36669 +#: guix-git/doc/guix.texi:37159 msgid "Like with @code{define-configuration}, one can set a prefix for the serializer name by using the @code{prefix} literal." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36673 +#: guix-git/doc/guix.texi:37163 #, no-wrap msgid "" "(define-maybe integer\n" @@ -65238,7 +66131,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36676 +#: guix-git/doc/guix.texi:37166 #, no-wrap msgid "" "(define (baz-serialize-interger field-name value)\n" @@ -65246,12 +66139,12 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36683 +#: guix-git/doc/guix.texi:37173 msgid "There is also the @code{no-serialization} literal, which when set means that no serializer will be defined for the ``maybe type'', regardless of its value is @code{disabled} or not. @code{define-maybe/no-serialization} is a shorthand for specifying the @code{no-serialization} literal." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36686 +#: guix-git/doc/guix.texi:37176 #, no-wrap msgid "" "(define-maybe/no-serialization symbol)\n" @@ -65259,7 +66152,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36691 +#: guix-git/doc/guix.texi:37181 #, no-wrap msgid "" "(define-configuration/no-serialization test-configuration\n" @@ -65269,66 +66162,66 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36694 +#: guix-git/doc/guix.texi:37184 #, no-wrap msgid "{Scheme Procedure} serialize-configuration @var{configuration} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36700 +#: guix-git/doc/guix.texi:37190 msgid "@var{fields} Return a G-expression that contains the values corresponding to the @var{fields} of @var{configuration}, a record that has been generated by @code{define-configuration}. The G-expression can then be serialized to disk by using something like @code{mixed-text-file}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36702 +#: guix-git/doc/guix.texi:37192 #, no-wrap msgid "{Scheme Procedure} validate-configuration @var{configuration}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36706 +#: guix-git/doc/guix.texi:37196 msgid "@var{fields} Type-check @var{fields}, a list of field names of @var{configuration}, a configuration record created by @code{define-configuration}." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36708 +#: guix-git/doc/guix.texi:37198 #, no-wrap msgid "{Scheme Procedure} empty-serializer @var{field-name} @var{value}" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36711 +#: guix-git/doc/guix.texi:37201 msgid "A serializer that just returns an empty string. The @code{serialize-package} procedure is an alias for this." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36716 +#: guix-git/doc/guix.texi:37206 msgid "Once you have defined a configuration record, you will most likely also want to document it so that other people know to use it. To help with that, there are two procedures, both of which are documented below." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36717 +#: guix-git/doc/guix.texi:37207 #, no-wrap msgid "{Scheme Procedure} generate-documentation @var{documentation} @" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36724 +#: guix-git/doc/guix.texi:37214 msgid "@var{documentation-name} Generate a Texinfo fragment from the docstrings in @var{documentation}, a list of @code{(@var{label} @var{fields} @var{sub-documentation} ...)}. @var{label} should be a symbol and should be the name of the configuration record. @var{fields} should be a list of all the fields available for the configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36729 +#: guix-git/doc/guix.texi:37219 msgid "@var{sub-documentation} is a @code{(@var{field-name} @var{configuration-name})} tuple. @var{field-name} is the name of the field which takes another configuration record as its value, and @var{configuration-name} is the name of that configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36736 +#: guix-git/doc/guix.texi:37226 msgid "@var{sub-documentation} is only needed if there are nested configuration records. For example, the @code{getmail-configuration} record (@pxref{Mail Services}) accepts a @code{getmail-configuration-file} record in one of its @code{rcfile} field, therefore documentation for @code{getmail-configuration-file} is nested in @code{getmail-configuration}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36743 +#: guix-git/doc/guix.texi:37233 #, no-wrap msgid "" "(generate-documentation\n" @@ -65339,33 +66232,33 @@ msgid "" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36747 +#: guix-git/doc/guix.texi:37237 msgid "@var{documentation-name} should be a symbol and should be the name of the configuration record." msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36750 +#: guix-git/doc/guix.texi:37240 #, no-wrap msgid "{Scheme Procedure} configuration->documentation" msgstr "" #. type: deffn -#: guix-git/doc/guix.texi:36757 +#: guix-git/doc/guix.texi:37247 msgid "@var{configuration-symbol} Take @var{configuration-symbol}, the symbol corresponding to the name used when defining a configuration record with @code{define-configuration}, and print the Texinfo documentation of its fields. This is useful if there aren’t any nested configuration records since it only prints the documentation for the top-level fields." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36765 +#: guix-git/doc/guix.texi:37255 msgid "As of right now, there is no automated way to generate documentation for configuration records and put them in the manual. Instead, every time you make a change to the docstrings of a configuration record, you have to manually call @code{generate-documentation} or @code{configuration->documentation}, and paste the output into the @file{doc/guix.texi} file." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36769 +#: guix-git/doc/guix.texi:37259 msgid "Below is an example of a record type created using @code{define-configuration} and friends." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36776 +#: guix-git/doc/guix.texi:37266 #, no-wrap msgid "" "(use-modules (gnu services)\n" @@ -65377,7 +66270,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36784 +#: guix-git/doc/guix.texi:37274 #, no-wrap msgid "" ";; Turn field names, which are Scheme symbols into strings\n" @@ -65391,7 +66284,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36787 +#: guix-git/doc/guix.texi:37277 #, no-wrap msgid "" "(define (serialize-string field-name value)\n" @@ -65400,7 +66293,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36790 +#: guix-git/doc/guix.texi:37280 #, no-wrap msgid "" "(define (serialize-integer field-name value)\n" @@ -65409,7 +66302,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36793 +#: guix-git/doc/guix.texi:37283 #, no-wrap msgid "" "(define (serialize-boolean field-name value)\n" @@ -65418,7 +66311,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36796 +#: guix-git/doc/guix.texi:37286 #, no-wrap msgid "" "(define (serialize-contact-name field-name value)\n" @@ -65427,7 +66320,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36799 +#: guix-git/doc/guix.texi:37289 #, no-wrap msgid "" "(define (list-of-contact-configurations? lst)\n" @@ -65436,7 +66329,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36804 +#: guix-git/doc/guix.texi:37294 #, no-wrap msgid "" "(define (serialize-list-of-contact-configurations field-name value)\n" @@ -65447,7 +66340,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36811 +#: guix-git/doc/guix.texi:37301 #, no-wrap msgid "" "(define (serialize-contacts-list-configuration configuration)\n" @@ -65460,7 +66353,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36814 +#: guix-git/doc/guix.texi:37304 #, no-wrap msgid "" "(define-maybe integer)\n" @@ -65469,7 +66362,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36829 +#: guix-git/doc/guix.texi:37319 #, no-wrap msgid "" "(define-configuration contact-configuration\n" @@ -65490,7 +66383,7 @@ msgid "" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36841 +#: guix-git/doc/guix.texi:37331 #, no-wrap msgid "" "(define-configuration contacts-list-configuration\n" @@ -65507,12 +66400,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36844 +#: guix-git/doc/guix.texi:37334 msgid "A contacts list configuration could then be created like this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:36860 +#: guix-git/doc/guix.texi:37350 #, no-wrap msgid "" "(define my-contacts\n" @@ -65532,12 +66425,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36864 +#: guix-git/doc/guix.texi:37354 msgid "After serializing the configuration to disk, the resulting file would look like this:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36869 +#: guix-git/doc/guix.texi:37359 #, no-wrap msgid "" "[owner]\n" @@ -65547,7 +66440,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36874 +#: guix-git/doc/guix.texi:37364 #, no-wrap msgid "" "[Bob]\n" @@ -65558,7 +66451,7 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36878 +#: guix-git/doc/guix.texi:37368 #, no-wrap msgid "" "[Charlie]\n" @@ -65567,213 +66460,213 @@ msgid "" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:36883 +#: guix-git/doc/guix.texi:37373 #, fuzzy, no-wrap msgid "home configuration" msgstr "系统配置" #. type: Plain text -#: guix-git/doc/guix.texi:36895 +#: guix-git/doc/guix.texi:37385 msgid "Guix supports declarative configuration of @dfn{home environments} by utilizing the configuration mechanism described in the previous chapter (@pxref{Defining Services}), but for user's dotfiles and packages. It works both on Guix System and foreign distros and allows users to declare all the packages and services that should be installed and configured for the user. Once a user has written a file containing @code{home-environment} record, such a configuration can be @dfn{instantiated} by an unprivileged user with the @command{guix home} command (@pxref{Invoking guix home})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36912 +#: guix-git/doc/guix.texi:37402 msgid "The user's home environment usually consists of three basic parts: software, configuration, and state. Software in mainstream distros are usually installed system-wide, but with GNU Guix most software packages can be installed on a per-user basis without needing root privileges, and are thus considered part of the user’s @dfn{home environment}. Packages on their own not very useful in many cases, because often they require some additional configuration, usually config files that reside in @env{XDG_CONFIG_HOME} (@file{~/.config} by default) or other directories. Everything else can be considered state, like media files, application databases, and logs." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36915 +#: guix-git/doc/guix.texi:37405 msgid "Using Guix for managing home environments provides a number of advantages:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:36918 +#: guix-git/doc/guix.texi:37408 #, no-wrap msgid "All software can be configured in one language (Guile Scheme)," msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36921 +#: guix-git/doc/guix.texi:37411 msgid "this gives users the ability to share values between configurations of different programs." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36922 +#: guix-git/doc/guix.texi:37412 #, no-wrap msgid "A well-defined home environment is self-contained and can be" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36925 +#: guix-git/doc/guix.texi:37415 msgid "created in a declarative and reproducible way---there is no need to grab external binaries or manually edit some configuration file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36926 +#: guix-git/doc/guix.texi:37416 #, no-wrap msgid "After every @command{guix home reconfigure} invocation, a new home" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36930 +#: guix-git/doc/guix.texi:37420 msgid "environment generation will be created. This means that users can rollback to a previous home environment generation so they don’t have to worry about breaking their configuration." msgstr "" #. type: item -#: guix-git/doc/guix.texi:36931 +#: guix-git/doc/guix.texi:37421 #, no-wrap msgid "It is possible to manage stateful data with Guix Home, this" msgstr "" #. type: itemize -#: guix-git/doc/guix.texi:36936 +#: guix-git/doc/guix.texi:37426 msgid "includes the ability to automatically clone Git repositories on the initial setup of the machine, and periodically running commands like @command{rsync} to sync data with another host. This functionality is still in an experimental stage, though." msgstr "" #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:36946 -#: guix-git/doc/guix.texi:36947 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37436 +#: guix-git/doc/guix.texi:37437 #, fuzzy, no-wrap #| msgid "Preparing the isolated build environment." msgid "Declaring the Home Environment" msgstr "准备隔离的构建环境。" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 #, fuzzy #| msgid "Customizing your GNU system." msgid "Customizing your Home." msgstr "定制你的GNU系统。" #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:37014 -#: guix-git/doc/guix.texi:37015 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37504 +#: guix-git/doc/guix.texi:37505 #, fuzzy, no-wrap #| msgid "Configuring the boot loader." msgid "Configuring the Shell" msgstr "设置引导程序。" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 #, fuzzy #| msgid "Invoking guix environment" msgid "Enabling home environment." msgstr "调用guix environment" #. type: section -#: guix-git/doc/guix.texi:36944 guix-git/doc/guix.texi:37061 -#: guix-git/doc/guix.texi:37062 +#: guix-git/doc/guix.texi:37434 guix-git/doc/guix.texi:37551 +#: guix-git/doc/guix.texi:37552 #, fuzzy, no-wrap #| msgid "Game Services" msgid "Home Services" msgstr "游戏服务" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 #, fuzzy #| msgid "Specifying system services." msgid "Specifying home services." msgstr "指定系统服务。" #. type: menuentry -#: guix-git/doc/guix.texi:36944 +#: guix-git/doc/guix.texi:37434 #, fuzzy #| msgid "Instantiating a system configuration." msgid "Instantiating a home configuration." msgstr "实例化一个系统配置。" #. type: Plain text -#: guix-git/doc/guix.texi:36953 +#: guix-git/doc/guix.texi:37443 msgid "The home environment is configured by providing a @code{home-environment} declaration in a file that can be passed to the @command{guix home} command (@pxref{Invoking guix home}). The easiest way to get started is by generating an initial configuration with @command{guix home import}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:36956 +#: guix-git/doc/guix.texi:37446 #, no-wrap msgid "guix home import ~/src/guix-config\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36964 +#: guix-git/doc/guix.texi:37454 msgid "The @command{guix home import} command reads some of the ``dot files'' such as @file{~/.bashrc} found in your home directory and copies them to the given directory, @file{~/src/guix-config} in this case; it also reads the contents of your profile, @file{~/.guix-profile}, and, based on that, it populates @file{~/src/guix-config/home-configuration.scm} with a Home configuration that resembles your current configuration." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36970 +#: guix-git/doc/guix.texi:37460 msgid "A simple setup can include Bash and a custom text configuration, like in the example below. Don't be afraid to declare home environment parts, which overlaps with your current dot files: before installing any configuration files, Guix Home will back up existing config files to a separate place in the home directory." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:36976 +#: guix-git/doc/guix.texi:37466 msgid "It is highly recommended that you manage your shell or shells with Guix Home, because it will make sure that all the necessary scripts are sourced by the shell configuration file. Otherwise you will need to do it manually. (@pxref{Configuring the Shell})." msgstr "" #. type: findex -#: guix-git/doc/guix.texi:36978 +#: guix-git/doc/guix.texi:37468 #, fuzzy, no-wrap msgid "home-environment" msgstr "构建环境" #. type: include -#: guix-git/doc/guix.texi:36980 +#: guix-git/doc/guix.texi:37470 #, fuzzy, no-wrap msgid "he-config-bare-bones.scm" msgstr "系统配置" #. type: Plain text -#: guix-git/doc/guix.texi:36987 +#: guix-git/doc/guix.texi:37477 msgid "The @code{packages} field should be self-explanatory, it will install the list of packages into the user's profile. The most important field is @code{services}, it contains a list of @dfn{home services}, which are the basic building blocks of a home environment." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36995 +#: guix-git/doc/guix.texi:37485 msgid "There is no daemon (at least not necessarily) related to a home service, a home service is just an element that is used to declare part of home environment and extend other parts of it. The extension mechanism discussed in the previous chapter (@pxref{Defining Services}) should not be confused with Shepherd services (@pxref{Shepherd Services}). Using this extension mechanism and some Scheme code that glues things together gives the user the freedom to declare their own, very custom, home environments." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:36998 +#: guix-git/doc/guix.texi:37488 msgid "Once you have a configuration file that suits your needs, you can reconfigure your home by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37001 +#: guix-git/doc/guix.texi:37491 #, no-wrap msgid "guix home reconfigure config.scm\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37005 +#: guix-git/doc/guix.texi:37495 msgid "This ``builds'' your home environment and creates @file{~/.guix-home} pointing to it. Voilà!" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37012 +#: guix-git/doc/guix.texi:37502 msgid "Make sure the operating system has elogind, systemd, or a similar mechanism to create the XDG run-time directory and has the @env{XDG_RUNTIME_DIR} variable set. Failing that, the @file{on-first-login} script will not execute anything, and processes like user Shepherd and its descendants will not start." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37018 +#: guix-git/doc/guix.texi:37508 msgid "This section is safe to skip if your shell or shells are managed by Guix Home. Otherwise, read it carefully." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37025 +#: guix-git/doc/guix.texi:37515 msgid "There are a few scripts that must be evaluated by a login shell to activate the home environment. The shell startup files only read by login shells often have @code{profile} suffix. For more information about login shells see @ref{Invoking Bash,,, bash, The GNU Bash Reference Manual} and see @ref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37032 +#: guix-git/doc/guix.texi:37522 msgid "The first script that needs to be sourced is @file{setup-environment}, which sets all the necessary environment variables (including variables declared by the user) and the second one is @file{on-first-login}, which starts Shepherd for the current user and performs actions declared by other home services that extends @code{home-run-on-first-login-service-type}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37035 +#: guix-git/doc/guix.texi:37525 msgid "Guix Home will always create @file{~/.profile}, which contains the following lines:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37040 +#: guix-git/doc/guix.texi:37530 #, no-wrap msgid "" "HOME_ENVIRONMENT=$HOME/.guix-home\n" @@ -65782,118 +66675,118 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37050 +#: guix-git/doc/guix.texi:37540 msgid "This makes POSIX compliant login shells activate the home environment. However, in most cases this file won't be read by most modern shells, because they are run in non POSIX mode by default and have their own @file{*profile} startup files. For example Bash will prefer @file{~/.bash_profile} in case it exists and only if it doesn't will it fallback to @file{~/.profile}. Zsh (if no additional options are specified) will ignore @file{~/.profile}, even if @file{~/.zprofile} doesn't exist." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37055 +#: guix-git/doc/guix.texi:37545 msgid "To make your shell respect @file{~/.profile}, add @code{. ~/.profile} or @code{source ~/profile} to the startup file for the login shell. In case of Bash, it is @file{~/.bash_profile}, and in case of Zsh, it is @file{~/.zprofile}." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37059 +#: guix-git/doc/guix.texi:37549 msgid "This step is only required if your shell is NOT managed by Guix Home. Otherwise, everything will be done automatically." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37063 +#: guix-git/doc/guix.texi:37553 #, fuzzy, no-wrap #| msgid "Other services." msgid "home services" msgstr "其它服务。" #. type: Plain text -#: guix-git/doc/guix.texi:37072 +#: guix-git/doc/guix.texi:37562 msgid "A @dfn{home service} is not necessarily something that has a daemon and is managed by Shepherd (@pxref{Jump Start,,, shepherd, The GNU Shepherd Manual}), in most cases it doesn't. It's a simple building block of the home environment, often declaring a set of packages to be installed in the home environment profile, a set of config files to be symlinked into @env{XDG_CONFIG_HOME} (@file{~/.config} by default), and environment variables to be set by a login shell." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37080 +#: guix-git/doc/guix.texi:37570 msgid "There is a service extension mechanism (@pxref{Service Composition}) which allows home services to extend other home services and utilize capabilities they provide; for example: declare mcron jobs (@pxref{Top,,, mcron, GNU@tie{}Mcron}) by extending @ref{Mcron Home Service}; declare daemons by extending @ref{Shepherd Home Service}; add commands, which will be invoked on by the Bash by extending @ref{Shells Home Services, @code{home-bash-service-type}}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37091 -msgid "A good way to discover avaliable home services is using the @command{guix home search} command (@pxref{Invoking guix home}). After the required home services are found, include its module with the @code{use-modules} form (@pxref{use-modules,, Using Guile Modules, guile, The GNU Guile Reference Manual}), or the @code{#:use-modules} directive (@pxref{define-module,, Creating Guile Modules, guile, The GNU Guile Reference Manual}) and declare a home service using the @code{service} function, or extend a service type by declaring a new service with the @code{simple-service} procedure from @code{(gnu services)}." +#: guix-git/doc/guix.texi:37581 +msgid "A good way to discover available home services is using the @command{guix home search} command (@pxref{Invoking guix home}). After the required home services are found, include its module with the @code{use-modules} form (@pxref{use-modules,, Using Guile Modules, guile, The GNU Guile Reference Manual}), or the @code{#:use-modules} directive (@pxref{define-module,, Creating Guile Modules, guile, The GNU Guile Reference Manual}) and declare a home service using the @code{service} function, or extend a service type by declaring a new service with the @code{simple-service} procedure from @code{(gnu services)}." msgstr "" #. type: subsection -#: guix-git/doc/guix.texi:37097 guix-git/doc/guix.texi:37100 -#: guix-git/doc/guix.texi:37101 +#: guix-git/doc/guix.texi:37587 guix-git/doc/guix.texi:37590 +#: guix-git/doc/guix.texi:37591 #, fuzzy, no-wrap #| msgid "Essential system services." msgid "Essential Home Services" msgstr "必要的系统服务。" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "Environment variables, packages, on-* scripts." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 #, fuzzy #| msgid "Shepherd Services" msgid "Shells: Shells Home Services" msgstr "Shepherd服务" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 msgid "POSIX shells, Bash, Zsh." msgstr "" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 #, fuzzy msgid "Mcron: Mcron Home Service" msgstr "声音服务" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 #, fuzzy #| msgid "Scheduled Job Execution" msgid "Scheduled User's Job Execution." msgstr "执行计划任务" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 #, fuzzy #| msgid "Shepherd Services" msgid "Shepherd: Shepherd Home Service" msgstr "Shepherd服务" #. type: menuentry -#: guix-git/doc/guix.texi:37097 +#: guix-git/doc/guix.texi:37587 #, fuzzy #| msgid "Messaging services." msgid "Managing User's Daemons." msgstr "消息服务。" #. type: Plain text -#: guix-git/doc/guix.texi:37106 +#: guix-git/doc/guix.texi:37596 msgid "There are a few essential home services defined in @code{(gnu services)}, they are mostly for internal use and are required to build a home environment, but some of them will be useful for the end user." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37107 +#: guix-git/doc/guix.texi:37597 #, fuzzy, no-wrap msgid "environment variables" msgstr "构建环境" #. type: defvr -#: guix-git/doc/guix.texi:37109 +#: guix-git/doc/guix.texi:37599 #, no-wrap msgid "{Scheme Variable} home-environment-variables-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37114 +#: guix-git/doc/guix.texi:37604 msgid "The service of this type will be instantiated by every home environment automatically by default, there is no need to define it, but someone may want to extend it with a list of pairs to set some environment variables." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37118 +#: guix-git/doc/guix.texi:37608 #, no-wrap msgid "" "(list (\"ENV_VAR1\" . \"value1\")\n" @@ -65901,12 +66794,12 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37123 +#: guix-git/doc/guix.texi:37613 msgid "The easiest way to extend a service type, without defining new service type is to use the @code{simple-service} helper from @code{(gnu services)}." msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37131 +#: guix-git/doc/guix.texi:37621 #, no-wrap msgid "" "(simple-service 'some-useful-env-vars-service\n" @@ -65918,12 +66811,12 @@ msgid "" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37136 +#: guix-git/doc/guix.texi:37626 msgid "If you include such a service in you home environment definition, it will add the following content to the @file{setup-environment} script (which is expected to be sourced by the login shell):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37141 +#: guix-git/doc/guix.texi:37631 #, no-wrap msgid "" "export LESSHISTFILE=$XDG_CACHE_HOME/.lesshst\n" @@ -65932,605 +66825,589 @@ msgid "" msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37148 +#: guix-git/doc/guix.texi:37638 msgid "Make sure that module @code{(gnu packages shells)} is imported with @code{use-modules} or any other way, this namespace contains the definition of the @code{zsh} packages, which is used in the example above." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37161 +#: guix-git/doc/guix.texi:37651 msgid "The association list (@pxref{Association Lists, alists, Association Lists, guile, The GNU Guile Reference manual}) is a data structure containing key-value pairs, for @code{home-environment-variables-service-type} the key is always a string, the value can be a string, string-valued gexp (@pxref{G-Expressions}), file-like object (@pxref{G-Expressions, file-like object}) or boolean. For gexps, the variable will be set to the value of the gexp; for file-like objects, it will be set to the path of the file in the store (@pxref{The Store}); for @code{#t}, it will export the variable without any value; and for @code{#f}, it will omit variable." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37164 +#: guix-git/doc/guix.texi:37654 #, no-wrap msgid "{Scheme Variable} home-profile-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37170 -msgid "The service of this type will be instantiated by every home environment automatically, there is no need to define it, but you may want to extend it with a list of packages if you want to install additional packages into your profile. Other services, which need to make some programs avaliable to the user will also extend this service type." +#: guix-git/doc/guix.texi:37660 +msgid "The service of this type will be instantiated by every home environment automatically, there is no need to define it, but you may want to extend it with a list of packages if you want to install additional packages into your profile. Other services, which need to make some programs available to the user will also extend this service type." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37172 +#: guix-git/doc/guix.texi:37662 msgid "The extension value is just a list of packages:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37175 +#: guix-git/doc/guix.texi:37665 #, no-wrap msgid "(list htop vim emacs)\n" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37185 +#: guix-git/doc/guix.texi:37675 msgid "The same approach as @code{simple-service} (@pxref{Service Reference, simple-service}) for @code{home-environment-variables-service-type} can be used here, too. Make sure that modules containing the specified packages are imported with @code{use-modules}. To find a package or information about its module use @command{guix search} (@pxref{Invoking guix package}). Alternatively, @code{specification->package} can be used to get the package record from string without importing related module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37189 +#: guix-git/doc/guix.texi:37679 msgid "There are few more essential services, but users are not expected to extend them." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37190 +#: guix-git/doc/guix.texi:37680 #, no-wrap msgid "{Scheme Variable} home-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37195 +#: guix-git/doc/guix.texi:37685 msgid "The root of home services DAG, it generates a folder, which later will be symlinked to @file{~/.guix-home}, it contains configurations, profile with binaries and libraries, and some necessary scripts to glue things together." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37197 +#: guix-git/doc/guix.texi:37687 #, no-wrap msgid "{Scheme Variable} home-run-on-first-login-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37202 +#: guix-git/doc/guix.texi:37692 msgid "The service of this type generates a Guile script, which is expected to be executed by the login shell. It is only executed if the special flag file inside @env{XDG_RUNTIME_DIR} hasn't been created, this prevents redundant executions of the script if multiple login shells are spawned." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37208 +#: guix-git/doc/guix.texi:37698 msgid "It can be extended with a gexp. However, to autostart an application, users @emph{should not} use this service, in most cases it's better to extend @code{home-shepherd-service-type} with a Shepherd service (@pxref{Shepherd Services}), or extend the shell's startup file with the required command using the appropriate service type." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37210 +#: guix-git/doc/guix.texi:37700 #, no-wrap msgid "{Scheme Variable} home-activation-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37214 +#: guix-git/doc/guix.texi:37704 msgid "The service of this type generates a guile script, which runs on every @command{guix home reconfigure} invocation or any other action, which leads to the activation of the home environment." msgstr "" #. type: node -#: guix-git/doc/guix.texi:37216 +#: guix-git/doc/guix.texi:37706 #, fuzzy, no-wrap #| msgid "Shepherd Services" msgid "Shells Home Services" msgstr "Shepherd服务" #. type: subsection -#: guix-git/doc/guix.texi:37217 +#: guix-git/doc/guix.texi:37707 #, no-wrap msgid "Shells" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37219 guix-git/doc/guix.texi:37500 +#: guix-git/doc/guix.texi:37709 guix-git/doc/guix.texi:37996 #, no-wrap msgid "shell" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37220 +#: guix-git/doc/guix.texi:37710 #, no-wrap msgid "login shell" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37221 +#: guix-git/doc/guix.texi:37711 #, no-wrap msgid "interactive shell" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37222 guix-git/doc/guix.texi:37502 +#: guix-git/doc/guix.texi:37712 guix-git/doc/guix.texi:37998 #, no-wrap msgid "bash" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37223 guix-git/doc/guix.texi:37503 +#: guix-git/doc/guix.texi:37713 guix-git/doc/guix.texi:37999 #, no-wrap msgid "zsh" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37229 +#: guix-git/doc/guix.texi:37719 msgid "Shells play a quite important role in the environment initialization process, you can configure them manually as described in section @ref{Configuring the Shell}, but the recommended way is to use home services listed below. It's both easier and more reliable." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37239 +#: guix-git/doc/guix.texi:37729 msgid "Each home environment instantiates @code{home-shell-profile-service-type}, which creates a @file{~/.profile} startup file for all POSIX-compatible shells. This file contains all the necessary steps to properly initialize the environment, but many modern shells like Bash or Zsh prefer their own startup files, that's why the respective home services (@code{home-bash-service-type} and @code{home-zsh-service-type}) ensure that @file{~/.profile} is sourced by @file{~/.bash_profile} and @file{~/.zprofile}, respectively." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:37240 +#: guix-git/doc/guix.texi:37730 #, fuzzy, no-wrap #| msgid "Certificate Services" msgid "Shell Profile Service" msgstr "证书服务" #. type: deftp -#: guix-git/doc/guix.texi:37242 +#: guix-git/doc/guix.texi:37732 #, fuzzy, no-wrap msgid "{Data Type} home-shell-profile-configuration" msgstr "管理操作系统配置。" #. type: deftp -#: guix-git/doc/guix.texi:37244 +#: guix-git/doc/guix.texi:37734 msgid "Available @code{home-shell-profile-configuration} fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37246 +#: guix-git/doc/guix.texi:37736 #, fuzzy, no-wrap msgid "@code{profile} (default: @code{()}) (type: text-config)" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:37256 -msgid "@code{home-shell-profile} is instantiated automatically by @code{home-environment}, DO NOT create this service manually, it can only be extended. @code{profile} is a list of file-like objects, which will go to @file{~/.profile}. By default @file{~/.profile} contains the initialization code, which have to be evaluated by login shell to make home-environment's profile avaliable to the user, but other commands can be added to the file if it is really necessary. In most cases shell's configuration files are preferred places for user's customizations. Extend home-shell-profile service only if you really know what you do." +#: guix-git/doc/guix.texi:37746 +msgid "@code{home-shell-profile} is instantiated automatically by @code{home-environment}, DO NOT create this service manually, it can only be extended. @code{profile} is a list of file-like objects, which will go to @file{~/.profile}. By default @file{~/.profile} contains the initialization code which must be evaluated by the login shell to make home-environment's profile available to the user, but other commands can be added to the file if it is really necessary. In most cases shell's configuration files are preferred places for user's customizations. Extend home-shell-profile service only if you really know what you do." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:37261 +#: guix-git/doc/guix.texi:37751 #, fuzzy, no-wrap #| msgid "Base Services" msgid "Bash Home Service" msgstr "基础服务" #. type: anchor{#1} -#: guix-git/doc/guix.texi:37264 +#: guix-git/doc/guix.texi:37754 #, fuzzy msgid "home-bash-configuration" msgstr "系统配置" #. type: deftp -#: guix-git/doc/guix.texi:37264 +#: guix-git/doc/guix.texi:37754 #, fuzzy, no-wrap msgid "{Data Type} home-bash-configuration" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:37266 +#: guix-git/doc/guix.texi:37756 msgid "Available @code{home-bash-configuration} fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37268 +#: guix-git/doc/guix.texi:37758 #, fuzzy, no-wrap msgid "@code{package} (default: @code{bash}) (type: package)" msgstr "@code{xfce}(默认值:@code{xfce})" #. type: table -#: guix-git/doc/guix.texi:37270 +#: guix-git/doc/guix.texi:37760 #, fuzzy msgid "The Bash package to use." msgstr "软件包数据类型。" #. type: item -#: guix-git/doc/guix.texi:37271 +#: guix-git/doc/guix.texi:37761 #, fuzzy, no-wrap msgid "@code{guix-defaults?} (default: @code{#t}) (type: boolean)" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:37274 +#: guix-git/doc/guix.texi:37764 msgid "Add sane defaults like reading @file{/etc/bashrc} and coloring the output of @command{ls} to the end of the @file{.bashrc} file." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37275 guix-git/doc/guix.texi:37329 -#: guix-git/doc/guix.texi:37368 +#: guix-git/doc/guix.texi:37765 guix-git/doc/guix.texi:37819 +#: guix-git/doc/guix.texi:37858 #, fuzzy, no-wrap msgid "@code{environment-variables} (default: @code{()}) (type: alist)" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:37280 +#: guix-git/doc/guix.texi:37770 msgid "Association list of environment variables to set for the Bash session. The rules for the @code{home-environment-variables-service-type} apply here (@pxref{Essential Home Services}). The contents of this field will be added after the contents of the @code{bash-profile} field." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37281 guix-git/doc/guix.texi:37334 +#: guix-git/doc/guix.texi:37771 guix-git/doc/guix.texi:37824 #, fuzzy, no-wrap msgid "@code{aliases} (default: @code{()}) (type: alist)" msgstr "@code{features} (@code{'()})" #. type: table -#: guix-git/doc/guix.texi:37286 +#: guix-git/doc/guix.texi:37776 msgid "Association list of aliases to set for the Bash session. The aliases will be defined after the contents of the @code{bashrc} field has been put in the @file{.bashrc} file. The alias will automatically be quoted, so something line this:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37289 +#: guix-git/doc/guix.texi:37779 #, no-wrap msgid "'((\\\"ls\\\" . \\\"ls -alF\\\"))\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37292 +#: guix-git/doc/guix.texi:37782 msgid "turns into" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37295 +#: guix-git/doc/guix.texi:37785 #, no-wrap msgid "alias ls=\\\"ls -alF\\\"\n" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37297 guix-git/doc/guix.texi:37338 +#: guix-git/doc/guix.texi:37787 guix-git/doc/guix.texi:37828 #, fuzzy, no-wrap msgid "@code{bash-profile} (default: @code{()}) (type: text-config)" msgstr "@code{xfce}(默认值:@code{xfce})" #. type: table -#: guix-git/doc/guix.texi:37302 +#: guix-git/doc/guix.texi:37792 msgid "List of file-like objects, which will be added to @file{.bash_profile}. Used for executing user's commands at start of login shell (In most cases the shell started on tty just after login). @file{.bash_login} won't be ever read, because @file{.bash_profile} always present." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37303 guix-git/doc/guix.texi:37342 +#: guix-git/doc/guix.texi:37793 guix-git/doc/guix.texi:37832 #, fuzzy, no-wrap msgid "@code{bashrc} (default: @code{()}) (type: text-config)" msgstr "@code{xfce}(默认值:@code{xfce})" #. type: table -#: guix-git/doc/guix.texi:37308 +#: guix-git/doc/guix.texi:37798 msgid "List of file-like objects, which will be added to @file{.bashrc}. Used for executing user's commands at start of interactive shell (The shell for interactive usage started by typing @code{bash} or by terminal app or any other program)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37309 guix-git/doc/guix.texi:37346 +#: guix-git/doc/guix.texi:37799 guix-git/doc/guix.texi:37836 #, fuzzy, no-wrap msgid "@code{bash-logout} (default: @code{()}) (type: text-config)" msgstr "@code{xfce}(默认值:@code{xfce})" #. type: table -#: guix-git/doc/guix.texi:37314 +#: guix-git/doc/guix.texi:37804 msgid "List of file-like objects, which will be added to @file{.bash_logout}. Used for executing user's commands at the exit of login shell. It won't be read in some cases (if the shell terminates by exec'ing another process for example)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37324 +#: guix-git/doc/guix.texi:37814 msgid "You can extend the Bash service by using the @code{home-bash-extension} configuration record, whose fields most mirror that of @code{home-bash-configuration} (@pxref{home-bash-configuration}). The contents of the extensions will be added to the end of the corresponding Bash configuration files (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37325 +#: guix-git/doc/guix.texi:37815 #, fuzzy, no-wrap msgid "{Data Type} home-bash-extension" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:37327 +#: guix-git/doc/guix.texi:37817 msgid "Available @code{home-bash-extension} fields are:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37333 +#: guix-git/doc/guix.texi:37823 msgid "Additional environment variables to set. These will be combined with the environment variables from other extensions and the base service to form one coherent block of environment variables." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37337 +#: guix-git/doc/guix.texi:37827 msgid "Additional aliases to set. These will be combined with the aliases from other extensions and the base service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37341 +#: guix-git/doc/guix.texi:37831 msgid "Additional text blocks to add to @file{.bash_profile}, which will be combined with text blocks from other extensions and the base service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37345 +#: guix-git/doc/guix.texi:37835 msgid "Additional text blocks to add to @file{.bashrc}, which will be combined with text blocks from other extensions and the base service." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37349 +#: guix-git/doc/guix.texi:37839 msgid "Additional text blocks to add to @file{.bash_logout}, which will be combined with text blocks from other extensions and the base service." msgstr "" #. type: subsubheading -#: guix-git/doc/guix.texi:37353 +#: guix-git/doc/guix.texi:37843 #, fuzzy, no-wrap #| msgid "Game Services" msgid "Zsh Home Service" msgstr "游戏服务" #. type: deftp -#: guix-git/doc/guix.texi:37355 +#: guix-git/doc/guix.texi:37845 #, fuzzy, no-wrap msgid "{Data Type} home-zsh-configuration" msgstr "{数据类型} build-machine" #. type: deftp -#: guix-git/doc/guix.texi:37357 +#: guix-git/doc/guix.texi:37847 msgid "Available @code{home-zsh-configuration} fields are:" msgstr "" #. type: item -#: guix-git/doc/guix.texi:37359 +#: guix-git/doc/guix.texi:37849 #, fuzzy, no-wrap msgid "@code{package} (default: @code{zsh}) (type: package)" msgstr "@code{xfce}(默认值:@code{xfce})" #. type: table -#: guix-git/doc/guix.texi:37361 +#: guix-git/doc/guix.texi:37851 #, fuzzy msgid "The Zsh package to use." msgstr "软件包数据类型。" #. type: item -#: guix-git/doc/guix.texi:37362 +#: guix-git/doc/guix.texi:37852 #, fuzzy, no-wrap msgid "@code{xdg-flavor?} (default: @code{#t}) (type: boolean)" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:37367 +#: guix-git/doc/guix.texi:37857 msgid "Place all the configs to @file{$XDG_CONFIG_HOME/zsh}. Makes @file{~/.zshenv} to set @env{ZDOTDIR} to @file{$XDG_CONFIG_HOME/zsh}. Shell startup process will continue with @file{$XDG_CONFIG_HOME/zsh/.zshenv}." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37370 +#: guix-git/doc/guix.texi:37860 msgid "Association list of environment variables to set for the Zsh session." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37371 +#: guix-git/doc/guix.texi:37861 #, fuzzy, no-wrap msgid "@code{zshenv} (default: @code{()}) (type: text-config)" msgstr "@code{xfce}(默认值:@code{xfce})" #. type: table -#: guix-git/doc/guix.texi:37376 +#: guix-git/doc/guix.texi:37866 msgid "List of file-like objects, which will be added to @file{.zshenv}. Used for setting user's shell environment variables. Must not contain commands assuming the presence of tty or producing output. Will be read always. Will be read before any other file in @env{ZDOTDIR}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37377 +#: guix-git/doc/guix.texi:37867 #, fuzzy, no-wrap msgid "@code{zprofile} (default: @code{()}) (type: text-config)" msgstr "@code{challenge}(默认值:@code{#f})" #. type: table -#: guix-git/doc/guix.texi:37382 +#: guix-git/doc/guix.texi:37872 msgid "List of file-like objects, which will be added to @file{.zprofile}. Used for executing user's commands at start of login shell (In most cases the shell started on tty just after login). Will be read before @file{.zlogin}." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37383 +#: guix-git/doc/guix.texi:37873 #, fuzzy, no-wrap msgid "@code{zshrc} (default: @code{()}) (type: text-config)" msgstr "@code{xfce}(默认值:@code{xfce})" #. type: table -#: guix-git/doc/guix.texi:37388 +#: guix-git/doc/guix.texi:37878 msgid "List of file-like objects, which will be added to @file{.zshrc}. Used for executing user's commands at start of interactive shell (The shell for interactive usage started by typing @code{zsh} or by terminal app or any other program)." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37389 +#: guix-git/doc/guix.texi:37879 #, fuzzy, no-wrap msgid "@code{zlogin} (default: @code{()}) (type: text-config)" msgstr "@code{speed}(默认值:@code{1.0})" #. type: table -#: guix-git/doc/guix.texi:37393 +#: guix-git/doc/guix.texi:37883 msgid "List of file-like objects, which will be added to @file{.zlogin}. Used for executing user's commands at the end of starting process of login shell." msgstr "" #. type: item -#: guix-git/doc/guix.texi:37394 +#: guix-git/doc/guix.texi:37884 #, fuzzy, no-wrap msgid "@code{zlogout} (default: @code{()}) (type: text-config)" msgstr "@code{xfce}(默认值:@code{xfce})" #. type: table -#: guix-git/doc/guix.texi:37399 +#: guix-git/doc/guix.texi:37889 msgid "List of file-like objects, which will be added to @file{.zlogout}. Used for executing user's commands at the exit of login shell. It won't be read in some cases (if the shell terminates by exec'ing another process for example)." msgstr "" #. type: node -#: guix-git/doc/guix.texi:37404 +#: guix-git/doc/guix.texi:37894 #, fuzzy, no-wrap #| msgid "Monitoring Services" msgid "Mcron Home Service" msgstr "监控服务" #. type: subsection -#: guix-git/doc/guix.texi:37405 +#: guix-git/doc/guix.texi:37895 #, fuzzy, no-wrap #| msgid "Scheduled Job Execution" msgid "Scheduled User's Job Execution" msgstr "执行计划任务" #. type: Plain text -#: guix-git/doc/guix.texi:37418 +#: guix-git/doc/guix.texi:37908 msgid "The @code{(gnu home services mcron)} module provides an interface to GNU@tie{}mcron, a daemon to run jobs at scheduled times (@pxref{Top,,, mcron, GNU@tie{}mcron}). The information about system's mcron is applicable here (@pxref{Scheduled Job Execution}), the only difference for home services is that they have to be declared in a @code{home-envirnoment} record instead of an @code{operating-system} record." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37419 +#: guix-git/doc/guix.texi:37909 #, no-wrap msgid "{Scheme Variable} home-mcron-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37423 +#: guix-git/doc/guix.texi:37913 msgid "This is the type of the @code{mcron} home service, whose value is an @code{home-mcron-configuration} object. It allows to manage scheduled tasks." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37430 +#: guix-git/doc/guix.texi:37920 #, fuzzy, no-wrap msgid "{Data Type} home-mcron-configuration" msgstr "{数据类型} build-machine" #. type: node -#: guix-git/doc/guix.texi:37444 +#: guix-git/doc/guix.texi:37934 #, fuzzy, no-wrap #| msgid "Shepherd Services" msgid "Shepherd Home Service" msgstr "Shepherd服务" #. type: subsection -#: guix-git/doc/guix.texi:37445 -#, no-wrap -msgid "Managing User's Daemons" +#: guix-git/doc/guix.texi:37935 +#, fuzzy, no-wrap +#| msgid "Messaging services." +msgid "Managing User Daemons" +msgstr "消息服务。" + +#. type: cindex +#: guix-git/doc/guix.texi:37937 +#, fuzzy, no-wrap +#| msgid "Shepherd Services" +msgid "shepherd services, for users" +msgstr "Shepherd服务" + +#. type: Plain text +#: guix-git/doc/guix.texi:37944 +msgid "The @code{(gnu home services shepherd)} module supports the definitions of per-user Shepherd services (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}). You extend @code{home-shepherd-service-type} with new services; Guix Home then takes care of starting the @code{shepherd} daemon for you when you log in, which in turns starts the services you asked for." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37449 +#: guix-git/doc/guix.texi:37945 #, no-wrap msgid "{Scheme Variable} home-shepherd-service-type" msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37454 +#: guix-git/doc/guix.texi:37950 msgid "The service type for the userland Shepherd, which allows one to manage long-running processes or one-shot tasks. User's Shepherd is not an init process (PID 1), but almost all other information described in (@pxref{Shepherd Services}) is applicable here too." msgstr "" #. type: defvr -#: guix-git/doc/guix.texi:37459 +#: guix-git/doc/guix.texi:37955 msgid "This is the service type that extensions target when they want to create shepherd services (@pxref{Service Types and Services}, for an example). Each extension must pass a list of @code{}. Its value must be a @code{home-shepherd-configuration}, as described below." msgstr "" #. type: deftp -#: guix-git/doc/guix.texi:37461 +#: guix-git/doc/guix.texi:37957 #, fuzzy, no-wrap msgid "{Data Type} home-shepherd-configuration" msgstr "{数据类型} build-machine" #. type: item -#: guix-git/doc/guix.texi:37468 +#: guix-git/doc/guix.texi:37964 #, fuzzy, no-wrap msgid "auto-start? (default: @code{#t})" msgstr "@code{port}(默认值:@code{22})" #. type: table -#: guix-git/doc/guix.texi:37470 +#: guix-git/doc/guix.texi:37966 msgid "Whether or not to start Shepherd on first login." msgstr "" #. type: section -#: guix-git/doc/guix.texi:37479 +#: guix-git/doc/guix.texi:37975 #, fuzzy, no-wrap msgid "Invoking @code{guix home}" msgstr "调用@command{guix-daemon}" #. type: Plain text -#: guix-git/doc/guix.texi:37484 +#: guix-git/doc/guix.texi:37980 msgid "Once you have written a home environment declaration (@pxref{Declaring the Home Environment,,,,}, it can be @dfn{instantiated} using the @command{guix home} command. The synopsis is:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37487 +#: guix-git/doc/guix.texi:37983 #, no-wrap msgid "guix home @var{options}@dots{} @var{action} @var{file}\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37494 +#: guix-git/doc/guix.texi:37990 msgid "@var{file} must be the name of a file containing a @code{home-environment} declaration. @var{action} specifies how the home environment is instantiated, but there are few auxiliary actions which don't instantiate it. Currently the following values are supported:" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37499 +#: guix-git/doc/guix.texi:37995 msgid "Display available home service type definitions that match the given regular expressions, sorted by relevance:" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37501 +#: guix-git/doc/guix.texi:37997 #, no-wrap msgid "shell-profile" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37513 +#: guix-git/doc/guix.texi:38008 #, no-wrap msgid "" "$ guix home search shell\n" "name: home-shell-profile\n" -"location: gnu/home/services/shells.scm:73:2\n" +"location: gnu/home/services/shells.scm:100:2\n" "extends: home-files\n" -"description: Create `~/.profile', which is used for environment initialization\n" -"+ of POSIX compatible login shells. Can be extended with a list of strings or\n" -"+ gexps.\n" +"description: Create `~/.profile', which is used for environment initialization of POSIX compliant login shells.\n" +"+ This service type can be extended with a list of file-like objects.\n" "relevance: 6\n" "\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37519 -#, no-wrap -msgid "" -"name: home-zsh-plugin-manager\n" -"location: gnu/home/services/shellutils.scm:28:2\n" -"extends: home-zsh home-profile\n" -"description: Install plugins in profile and configure Zsh to load them.\n" -"relevance: 1\n" -"\n" -msgstr "" - -#. type: example -#: guix-git/doc/guix.texi:37526 -#, no-wrap -msgid "" -"name: home-zsh-direnv\n" -"location: gnu/home/services/shellutils.scm:69:2\n" -"extends: home-profile home-zsh\n" -"description: Enables `direnv' for `zsh'. Adds hook to `.zshrc' and installs a\n" -"+ package in the profile.\n" -"relevance: 1\n" -"\n" -msgstr "" - -#. type: example -#: guix-git/doc/guix.texi:37535 +#: guix-git/doc/guix.texi:38014 #, no-wrap msgid "" -"name: home-zsh-autosuggestions\n" -"location: gnu/home/services/shellutils.scm:43:2\n" -"extends: home-zsh-plugin-manager home-zsh\n" -"description: Enables Fish-like fast/unobtrusive autosuggestions for `zsh' and\n" -"+ sets reasonable default values for some plugin's variables to improve perfomance\n" -"+ and adjust behavior: `(history completion)' is set for strategy, manual rebind\n" -"+ and async are enabled.\n" -"relevance: 1\n" +"name: home-fish\n" +"location: gnu/home/services/shells.scm:640:2\n" +"extends: home-files home-profile\n" +"description: Install and configure Fish, the friendly interactive shell.\n" +"relevance: 3\n" "\n" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37541 +#: guix-git/doc/guix.texi:38020 #, no-wrap msgid "" "name: home-zsh\n" -"location: gnu/home/services/shells.scm:236:2\n" +"location: gnu/home/services/shells.scm:290:2\n" "extends: home-files home-profile\n" "description: Install and configure Zsh.\n" "relevance: 1\n" @@ -66538,62 +67415,67 @@ msgid "" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37547 +#: guix-git/doc/guix.texi:38026 #, no-wrap msgid "" "name: home-bash\n" -"location: gnu/home/services/shells.scm:388:2\n" +"location: gnu/home/services/shells.scm:508:2\n" "extends: home-files home-profile\n" -"description: Install and configure Bash.\n" +"description: Install and configure GNU Bash.\n" "relevance: 1\n" "\n" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37563 -msgid "Build the home environment described in @var{file}, and switch to it. Switching means that the activation script will be evaluated and (in basic scenario) symlinks to configuration files generated from @code{home-environment} declaration will be created in @file{~}. If the file with the same path already exists in home folder it will be moved to @file{~/TIMESTAMP-guix-home-legacy-configs-backup}, where TIMESTAMP is a current UNIX epoch time." +#: guix-git/doc/guix.texi:38033 +msgid "As for @command{guix search}, the result is written in @code{recutils} format, which makes it easy to filter the output (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual})." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:38042 +msgid "Build the home environment described in @var{file}, and switch to it. Switching means that the activation script will be evaluated and (in basic scenario) symlinks to configuration files generated from @code{home-environment} declaration will be created in @file{~}. If the file with the same path already exists in home folder it will be moved to @file{~/@var{timestamp}-guix-home-legacy-configs-backup}, where @var{timestamp} is a current UNIX epoch time." msgstr "" #. type: quotation -#: guix-git/doc/guix.texi:37568 +#: guix-git/doc/guix.texi:38047 msgid "It is highly recommended to run @command{guix pull} once before you run @command{guix home reconfigure} for the first time (@pxref{Invoking guix pull})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37575 -msgid "This effects all the configuration specified in @var{file}. The command starts Shepherd services specified in @var{file} that are not currently running; if a service is currently running, this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop X} or @code{herd restart X})." +#: guix-git/doc/guix.texi:38054 +msgid "This effects all the configuration specified in @var{file}. The command starts Shepherd services specified in @var{file} that are not currently running; if a service is currently running, this command will arrange for it to be upgraded the next time it is stopped (e.g.@: by @code{herd stop @var{service}} or @code{herd restart @var{service}})." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37581 +#: guix-git/doc/guix.texi:38060 msgid "This command creates a new generation whose number is one greater than the current generation (as reported by @command{guix home list-generations}). If that generation already exists, it will be overwritten. This behavior mirrors that of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37582 +#: guix-git/doc/guix.texi:38061 #, fuzzy, no-wrap msgid "provenance tracking, of the home environment" msgstr "配置操作系统。" #. type: table -#: guix-git/doc/guix.texi:37587 +#: guix-git/doc/guix.texi:38066 msgid "Upon completion, the new home is deployed under @file{~/.guix-home}. This directory contains @dfn{provenance meta-data}: the list of channels in use (@pxref{Channels}) and @var{file} itself, when available. You can view the provenance information by running:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37590 +#: guix-git/doc/guix.texi:38069 #, fuzzy, no-wrap #| msgid "guix describe\n" msgid "guix home describe\n" msgstr "guix describe\n" #. type: table -#: guix-git/doc/guix.texi:37596 +#: guix-git/doc/guix.texi:38075 msgid "This information is useful should you later want to inspect how this particular generation was built. In fact, assuming @var{file} is self-contained, you can later rebuild generation @var{n} of your home environment with:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37602 +#: guix-git/doc/guix.texi:38081 #, no-wrap msgid "" "guix time-machine \\\n" @@ -66604,111 +67486,111 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37609 +#: guix-git/doc/guix.texi:38088 msgid "You can think of it as some sort of built-in version control! Your home is not just a binary artifact: @emph{it carries its own source}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37615 +#: guix-git/doc/guix.texi:38094 #, fuzzy, no-wrap #| msgid "Documentation" msgid "home generations" msgstr "文档" #. type: table -#: guix-git/doc/guix.texi:37618 +#: guix-git/doc/guix.texi:38097 msgid "Switch to an existing home generation. This action atomically switches the home profile to the specified home generation." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37622 +#: guix-git/doc/guix.texi:38101 msgid "The target generation can be specified explicitly by its generation number. For example, the following invocation would switch to home generation 7:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37625 +#: guix-git/doc/guix.texi:38104 #, fuzzy, no-wrap msgid "guix home switch-generation 7\n" msgstr "guix package --list-available\n" #. type: example -#: guix-git/doc/guix.texi:37636 +#: guix-git/doc/guix.texi:38115 #, fuzzy, no-wrap msgid "guix home switch-generation -- -1\n" msgstr "guix package --list-available\n" #. type: table -#: guix-git/doc/guix.texi:37645 +#: guix-git/doc/guix.texi:38124 msgid "Switch to the preceding home generation. This is the inverse of @command{reconfigure}, and it is exactly the same as invoking @command{switch-generation} with an argument of @code{-1}." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37647 +#: guix-git/doc/guix.texi:38126 #, no-wrap msgid "deleting home generations" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37652 +#: guix-git/doc/guix.texi:38131 msgid "Delete home generations, making them candidates for garbage collection (@pxref{Invoking guix gc}, for information on how to run the ``garbage collector'')." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37656 +#: guix-git/doc/guix.texi:38135 msgid "This works in the same way as @samp{guix package --delete-generations} (@pxref{Invoking guix package, @option{--delete-generations}}). With no arguments, all home generations but the current one are deleted:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37659 +#: guix-git/doc/guix.texi:38138 #, fuzzy, no-wrap msgid "guix home delete-generations\n" msgstr "guix package --list-available\n" #. type: table -#: guix-git/doc/guix.texi:37663 +#: guix-git/doc/guix.texi:38142 msgid "You can also select the generations you want to delete. The example below deletes all the home generations that are more than two months old:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37666 +#: guix-git/doc/guix.texi:38145 #, fuzzy, no-wrap msgid "guix home delete-generations 2m\n" msgstr "guix package --list-available\n" #. type: table -#: guix-git/doc/guix.texi:37672 +#: guix-git/doc/guix.texi:38151 msgid "Build the derivation of the home environment, which includes all the configuration files and programs needed. This action does not actually install anything." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37676 +#: guix-git/doc/guix.texi:38155 msgid "Describe the current home generation: its file name, as well as provenance information when available." msgstr "" #. type: table -#: guix-git/doc/guix.texi:37682 +#: guix-git/doc/guix.texi:38161 msgid "List a summary of each generation of the home environment available on disk, in a human-readable way. This is similar to the @option{--list-generations} option of @command{guix package} (@pxref{Invoking guix package})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:37690 +#: guix-git/doc/guix.texi:38169 #, fuzzy, no-wrap msgid "$ guix home list-generations 10d\n" msgstr "guix package --list-available\n" #. type: item -#: guix-git/doc/guix.texi:37692 +#: guix-git/doc/guix.texi:38171 #, no-wrap msgid "import" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37699 +#: guix-git/doc/guix.texi:38178 msgid "Generate a @dfn{home environment} from the packages in the default profile and configuration files found in the user's home directory. The configuration files will be copied to the specified directory, and a @file{home-configuration.scm} will be populated with the home environment. Note that not every home service that exists is supported (@pxref{Home Services})." msgstr "" #. type: example -#: guix-git/doc/guix.texi:37703 +#: guix-git/doc/guix.texi:38182 #, no-wrap msgid "" "$ guix home import ~/guix-config\n" @@ -66716,52 +67598,62 @@ msgid "" msgstr "" #. type: table -#: guix-git/doc/guix.texi:37718 +#: guix-git/doc/guix.texi:38197 msgid "Consider the home-environment @var{expr} evaluates to. This is an alternative to specifying a file which evaluates to a home environment." msgstr "" +#. type: table +#: guix-git/doc/guix.texi:38200 +msgid "Instruct @command{guix home reconfigure} to allow system downgrades." +msgstr "" + +#. type: table +#: guix-git/doc/guix.texi:38207 +msgid "Just like @command{guix system}, @command{guix home reconfigure}, by default, prevents you from downgrading your home to older or unrelated revisions compared to the channel revisions that were used to deploy it---those shown by @command{guix home describe}. Using @option{--allow-downgrades} allows you to bypass that check, at the risk of downgrading your home---be careful!" +msgstr "" + #. type: cindex -#: guix-git/doc/guix.texi:37724 +#: guix-git/doc/guix.texi:38213 #, no-wrap msgid "documentation, searching for" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37725 +#: guix-git/doc/guix.texi:38214 #, no-wrap msgid "searching for documentation" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37726 +#: guix-git/doc/guix.texi:38215 #, no-wrap msgid "Info, documentation format" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37727 +#: guix-git/doc/guix.texi:38216 #, no-wrap msgid "man pages" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37728 +#: guix-git/doc/guix.texi:38217 #, no-wrap msgid "manual pages" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37735 +#: guix-git/doc/guix.texi:38224 msgid "In most cases packages installed with Guix come with documentation. There are two main documentation formats: ``Info'', a browsable hypertext format used for GNU software, and ``manual pages'' (or ``man pages''), the linear documentation format traditionally found on Unix. Info manuals are accessed with the @command{info} command or with Emacs, and man pages are accessed using @command{man}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37739 +#: guix-git/doc/guix.texi:38228 msgid "You can look for documentation of software installed on your system by keyword. For example, the following command searches for information about ``TLS'' in Info manuals:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37747 +#: guix-git/doc/guix.texi:38236 #, no-wrap msgid "" "$ info -k TLS\n" @@ -66773,12 +67665,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37753 +#: guix-git/doc/guix.texi:38242 msgid "The command below searches for the same keyword in man pages@footnote{The database searched by @command{man -k} is only created in profiles that contain the @code{man-db} package.}:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37759 +#: guix-git/doc/guix.texi:38248 #, no-wrap msgid "" "$ man -k TLS\n" @@ -66788,97 +67680,97 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37765 +#: guix-git/doc/guix.texi:38254 msgid "These searches are purely local to your computer so you have the guarantee that documentation you find corresponds to what you have actually installed, you can access it off-line, and your privacy is respected." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37768 +#: guix-git/doc/guix.texi:38257 msgid "Once you have these results, you can view the relevant documentation by running, say:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37771 +#: guix-git/doc/guix.texi:38260 #, no-wrap msgid "$ info \"(gnutls)Core TLS API\"\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37775 +#: guix-git/doc/guix.texi:38264 msgid "or:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37778 +#: guix-git/doc/guix.texi:38267 #, no-wrap msgid "$ man certtool\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37786 +#: guix-git/doc/guix.texi:38275 msgid "Info manuals contain sections and indices as well as hyperlinks like those found in Web pages. The @command{info} reader (@pxref{Top, Info reader,, info-stnd, Stand-alone GNU Info}) and its Emacs counterpart (@pxref{Misc Help,,, emacs, The GNU Emacs Manual}) provide intuitive key bindings to navigate manuals. @xref{Getting Started,,, info, Info: An Introduction}, for an introduction to Info navigation." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37790 +#: guix-git/doc/guix.texi:38279 #, no-wrap msgid "debugging files" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37796 +#: guix-git/doc/guix.texi:38285 msgid "Program binaries, as produced by the GCC compilers for instance, are typically written in the ELF format, with a section containing @dfn{debugging information}. Debugging information is what allows the debugger, GDB, to map binary code to source code; it is required to debug a compiled program in good conditions." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37800 +#: guix-git/doc/guix.texi:38289 msgid "This chapter explains how to use separate debug info when packages provide it, and how to rebuild packages with debug info when it's missing." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37816 +#: guix-git/doc/guix.texi:38305 msgid "The problem with debugging information is that is takes up a fair amount of disk space. For example, debugging information for the GNU C Library weighs in at more than 60 MiB@. Thus, as a user, keeping all the debugging info of all the installed programs is usually not an option. Yet, space savings should not come at the cost of an impediment to debugging---especially in the GNU system, which should make it easier for users to exert their computing freedom (@pxref{GNU Distribution})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37823 +#: guix-git/doc/guix.texi:38312 msgid "Thankfully, the GNU Binary Utilities (Binutils) and GDB provide a mechanism that allows users to get the best of both worlds: debugging information can be stripped from the binaries and stored in separate files. GDB is then able to load debugging information from those files, when they are available (@pxref{Separate Debug Files,,, gdb, Debugging with GDB})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37831 +#: guix-git/doc/guix.texi:38320 msgid "The GNU distribution takes advantage of this by storing debugging information in the @code{lib/debug} sub-directory of a separate package output unimaginatively called @code{debug} (@pxref{Packages with Multiple Outputs}). Users can choose to install the @code{debug} output of a package when they need it. For instance, the following command installs the debugging information for the GNU C Library and for GNU Guile:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37834 +#: guix-git/doc/guix.texi:38323 #, no-wrap msgid "guix install glibc:debug guile:debug\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37840 +#: guix-git/doc/guix.texi:38329 msgid "GDB must then be told to look for debug files in the user's profile, by setting the @code{debug-file-directory} variable (consider setting it from the @file{~/.gdbinit} file, @pxref{Startup,,, gdb, Debugging with GDB}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37843 +#: guix-git/doc/guix.texi:38332 #, no-wrap msgid "(gdb) set debug-file-directory ~/.guix-profile/lib/debug\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37847 +#: guix-git/doc/guix.texi:38336 msgid "From there on, GDB will pick up debugging information from the @file{.debug} files under @file{~/.guix-profile/lib/debug}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37852 +#: guix-git/doc/guix.texi:38341 msgid "Below is an alternative GDB script which is useful when working with other profiles. It takes advantage of the optional Guile integration in GDB. This snippet is included by default on Guix System in the @file{~/.gdbinit} file." msgstr "" #. type: example -#: guix-git/doc/guix.texi:37860 +#: guix-git/doc/guix.texi:38349 #, no-wrap msgid "" "guile\n" @@ -66890,32 +67782,32 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37868 +#: guix-git/doc/guix.texi:38357 msgid "In addition, you will most likely want GDB to be able to show the source code being debugged. To do that, you will have to unpack the source code of the package of interest (obtained with @code{guix build --source}, @pxref{Invoking guix build}), and to point GDB to that source directory using the @code{directory} command (@pxref{Source Path, @code{directory},, gdb, Debugging with GDB})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37876 +#: guix-git/doc/guix.texi:38365 msgid "The @code{debug} output mechanism in Guix is implemented by the @code{gnu-build-system} (@pxref{Build Systems}). Currently, it is opt-in---debugging information is available only for the packages with definitions explicitly declaring a @code{debug} output. To check whether a package has a @code{debug} output, use @command{guix package --list-available} (@pxref{Invoking guix package})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37878 +#: guix-git/doc/guix.texi:38367 msgid "Read on for how to deal with packages lacking a @code{debug} output." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37890 +#: guix-git/doc/guix.texi:38379 msgid "As we saw above, some packages, but not all, provide debugging info in a @code{debug} output. What can you do when debugging info is missing? The @option{--with-debug-info} option provides a solution to that: it allows you to rebuild the package(s) for which debugging info is missing---and only those---and to graft those onto the application you're debugging. Thus, while it's not as fast as installing a @code{debug} output, it is relatively inexpensive." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37895 +#: guix-git/doc/guix.texi:38384 msgid "Let's illustrate that. Suppose you're experiencing a bug in Inkscape and would like to see what's going on in GLib, a library that's deep down in its dependency graph. As it turns out, GLib does not have a @code{debug} output and the backtrace GDB shows is all sadness:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37906 +#: guix-git/doc/guix.texi:38395 #, no-wrap msgid "" "(gdb) bt\n" @@ -66930,17 +67822,17 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37910 +#: guix-git/doc/guix.texi:38399 msgid "To address that, you install Inkscape linked against a variant GLib that contains debug info:" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37916 +#: guix-git/doc/guix.texi:38405 msgid "This time, debugging will be a whole lot nicer:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:37934 +#: guix-git/doc/guix.texi:38423 #, no-wrap msgid "" "$ gdb --args sh -c 'exec inkscape'\n" @@ -66962,28 +67854,28 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37937 +#: guix-git/doc/guix.texi:38426 msgid "Much better!" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37941 +#: guix-git/doc/guix.texi:38430 msgid "Note that there can be packages for which @option{--with-debug-info} will not have the desired effect. @xref{Package Transformation Options, @option{--with-debug-info}}, for more information." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37945 +#: guix-git/doc/guix.texi:38434 #, no-wrap msgid "security updates" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37954 +#: guix-git/doc/guix.texi:38443 msgid "Occasionally, important security vulnerabilities are discovered in software packages and must be patched. Guix developers try hard to keep track of known vulnerabilities and to apply fixes as soon as possible in the @code{master} branch of Guix (we do not yet provide a ``stable'' branch containing only security updates). The @command{guix lint} tool helps developers find out about vulnerable versions of software packages in the distribution:" msgstr "" #. type: smallexample -#: guix-git/doc/guix.texi:37961 +#: guix-git/doc/guix.texi:38450 #, no-wrap msgid "" "$ guix lint -c cve\n" @@ -66994,39 +67886,39 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37964 +#: guix-git/doc/guix.texi:38453 msgid "@xref{Invoking guix lint}, for more information." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37973 +#: guix-git/doc/guix.texi:38462 msgid "Guix follows a functional package management discipline (@pxref{Introduction}), which implies that, when a package is changed, @emph{every package that depends on it} must be rebuilt. This can significantly slow down the deployment of fixes in core packages such as libc or Bash, since basically the whole distribution would need to be rebuilt. Using pre-built binaries helps (@pxref{Substitutes}), but deployment may still take more time than desired." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37974 +#: guix-git/doc/guix.texi:38463 #, no-wrap msgid "grafts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37982 +#: guix-git/doc/guix.texi:38471 msgid "To address this, Guix implements @dfn{grafts}, a mechanism that allows for fast deployment of critical updates without the costs associated with a whole-distribution rebuild. The idea is to rebuild only the package that needs to be patched, and then to ``graft'' it onto packages explicitly installed by the user and that were previously referring to the original package. The cost of grafting is typically very low, and order of magnitudes lower than a full rebuild of the dependency chain." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:37983 +#: guix-git/doc/guix.texi:38472 #, no-wrap msgid "replacements of packages, for grafts" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:37989 +#: guix-git/doc/guix.texi:38478 msgid "For instance, suppose a security update needs to be applied to Bash. Guix developers will provide a package definition for the ``fixed'' Bash, say @code{bash-fixed}, in the usual way (@pxref{Defining Packages}). Then, the original package definition is augmented with a @code{replacement} field pointing to the package containing the bug fix:" msgstr "" #. type: lisp -#: guix-git/doc/guix.texi:37996 +#: guix-git/doc/guix.texi:38485 #, no-wrap msgid "" "(define bash\n" @@ -67037,190 +67929,190 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38006 +#: guix-git/doc/guix.texi:38495 msgid "From there on, any package depending directly or indirectly on Bash---as reported by @command{guix gc --requisites} (@pxref{Invoking guix gc})---that is installed is automatically ``rewritten'' to refer to @code{bash-fixed} instead of @code{bash}. This grafting process takes time proportional to the size of the package, usually less than a minute for an ``average'' package on a recent machine. Grafting is recursive: when an indirect dependency requires grafting, then grafting ``propagates'' up to the package that the user is installing." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38014 +#: guix-git/doc/guix.texi:38503 msgid "Currently, the length of the name and version of the graft and that of the package it replaces (@code{bash-fixed} and @code{bash} in the example above) must be equal. This restriction mostly comes from the fact that grafting works by patching files, including binary files, directly. Other restrictions may apply: for instance, when adding a graft to a package providing a shared library, the original shared library and its replacement must have the same @code{SONAME} and be binary-compatible." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38018 +#: guix-git/doc/guix.texi:38507 msgid "The @option{--no-grafts} command-line option allows you to forcefully avoid grafting (@pxref{Common Build Options, @option{--no-grafts}}). Thus, the command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38021 +#: guix-git/doc/guix.texi:38510 #, no-wrap msgid "guix build bash --no-grafts\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38025 +#: guix-git/doc/guix.texi:38514 msgid "returns the store file name of the original Bash, whereas:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38028 +#: guix-git/doc/guix.texi:38517 #, no-wrap msgid "guix build bash\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38033 +#: guix-git/doc/guix.texi:38522 msgid "returns the store file name of the ``fixed'', replacement Bash. This allows you to distinguish between the two variants of Bash." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38036 +#: guix-git/doc/guix.texi:38525 msgid "To verify which Bash your whole profile refers to, you can run (@pxref{Invoking guix gc}):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38039 +#: guix-git/doc/guix.texi:38528 #, no-wrap msgid "guix gc -R $(readlink -f ~/.guix-profile) | grep bash\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38044 +#: guix-git/doc/guix.texi:38533 msgid "@dots{} and compare the store file names that you get with those above. Likewise for a complete Guix system generation:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38047 +#: guix-git/doc/guix.texi:38536 #, no-wrap msgid "guix gc -R $(guix system build my-config.scm) | grep bash\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38051 +#: guix-git/doc/guix.texi:38540 msgid "Lastly, to check which Bash running processes are using, you can use the @command{lsof} command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38054 +#: guix-git/doc/guix.texi:38543 #, no-wrap msgid "lsof | grep /gnu/store/.*bash\n" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:38062 +#: guix-git/doc/guix.texi:38551 #, no-wrap msgid "bootstrapping" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38069 +#: guix-git/doc/guix.texi:38558 msgid "Bootstrapping in our context refers to how the distribution gets built ``from nothing''. Remember that the build environment of a derivation contains nothing but its declared inputs (@pxref{Introduction}). So there's an obvious chicken-and-egg problem: how does the first package get built? How does the first compiler get compiled?" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38077 +#: guix-git/doc/guix.texi:38566 msgid "It is tempting to think of this question as one that only die-hard hackers may care about. However, while the answer to that question is technical in nature, its implications are wide-ranging. How the distribution is bootstrapped defines the extent to which we, as individuals and as a collective of users and hackers, can trust the software we run. It is a central concern from the standpoint of @emph{security} and from a @emph{user freedom} viewpoint." msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:38078 guix-git/doc/guix.texi:38290 +#: guix-git/doc/guix.texi:38567 guix-git/doc/guix.texi:38779 #, no-wrap msgid "bootstrap binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38088 +#: guix-git/doc/guix.texi:38577 msgid "The GNU system is primarily made of C code, with libc at its core. The GNU build system itself assumes the availability of a Bourne shell and command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and `grep'. Furthermore, build programs---programs that run @code{./configure}, @code{make}, etc.---are written in Guile Scheme (@pxref{Derivations}). Consequently, to be able to build anything at all, from scratch, Guix relies on pre-built binaries of Guile, GCC, Binutils, libc, and the other packages mentioned above---the @dfn{bootstrap binaries}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38092 +#: guix-git/doc/guix.texi:38581 msgid "These bootstrap binaries are ``taken for granted'', though we can also re-create them if needed (@pxref{Preparing to Use the Bootstrap Binaries})." msgstr "" #. type: section -#: guix-git/doc/guix.texi:38099 +#: guix-git/doc/guix.texi:38588 #, no-wrap msgid "The Reduced Binary Seed Bootstrap" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38106 +#: guix-git/doc/guix.texi:38595 msgid "Guix---like other GNU/Linux distributions---is traditionally bootstrapped from a set of bootstrap binaries: Bourne shell, command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and `grep' and Guile, GCC, Binutils, and the GNU C Library (@pxref{Bootstrapping}). Usually, these bootstrap binaries are ``taken for granted.''" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38112 +#: guix-git/doc/guix.texi:38601 msgid "Taking the bootstrap binaries for granted means that we consider them to be a correct and trustworthy ``seed'' for building the complete system. Therein lies a problem: the combined size of these bootstrap binaries is about 250MB (@pxref{Bootstrappable Builds,,, mes, GNU Mes}). Auditing or even inspecting these is next to impossible." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38117 +#: guix-git/doc/guix.texi:38606 msgid "For @code{i686-linux} and @code{x86_64-linux}, Guix now features a ``Reduced Binary Seed'' bootstrap @footnote{We would like to say: ``Full Source Bootstrap'' and while we are working towards that goal it would be hyperbole to use that term for what we do now.}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38123 +#: guix-git/doc/guix.texi:38612 msgid "The Reduced Binary Seed bootstrap removes the most critical tools---from a trust perspective---from the bootstrap binaries: GCC, Binutils and the GNU C Library are replaced by: @code{bootstrap-mescc-tools} (a tiny assembler and linker) and @code{bootstrap-mes} (a small Scheme Interpreter and a C compiler written in Scheme and the Mes C Library, built for TinyCC and for GCC)." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38128 +#: guix-git/doc/guix.texi:38617 msgid "Using these new binary seeds the ``missing'' Binutils, GCC, and the GNU C Library are built from source. From here on the more traditional bootstrap process resumes. This approach has reduced the bootstrap binaries in size to about 145MB in Guix v1.1." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38136 +#: guix-git/doc/guix.texi:38625 msgid "The next step that Guix has taken is to replace the shell and all its utilities with implementations in Guile Scheme, the @emph{Scheme-only bootstrap}. Gash (@pxref{Gash,,, gash, The Gash manual}) is a POSIX-compatible shell that replaces Bash, and it comes with Gash Utils which has minimalist replacements for Awk, the GNU Core Utilities, Grep, Gzip, Sed, and Tar. The rest of the bootstrap binary seeds that were removed are now built from source." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38146 +#: guix-git/doc/guix.texi:38635 msgid "Building the GNU System from source is currently only possible by adding some historical GNU packages as intermediate steps@footnote{Packages such as @code{gcc-2.95.3}, @code{binutils-2.14}, @code{glibc-2.2.5}, @code{gzip-1.2.4}, @code{tar-1.22}, and some others. For details, see @file{gnu/packages/commencement.scm}.}. As Gash and Gash Utils mature, and GNU packages become more bootstrappable again (e.g., new releases of GNU Sed will also ship as gzipped tarballs again, as alternative to the hard to bootstrap @code{xz}-compression), this set of added packages can hopefully be reduced again." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38150 +#: guix-git/doc/guix.texi:38639 msgid "The graph below shows the resulting dependency graph for @code{gcc-core-mesboot0}, the bootstrap compiler used for the traditional bootstrap of the rest of the Guix System." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38153 +#: guix-git/doc/guix.texi:38642 msgid "@image{images/gcc-core-mesboot0-graph,6in,,Dependency graph of gcc-core-mesboot0}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38160 +#: guix-git/doc/guix.texi:38649 msgid "The only significant binary bootstrap seeds that remain@footnote{ Ignoring the 68KB @code{mescc-tools}; that will be removed later, together with @code{mes}.} are a Scheme interpreter and a Scheme compiler: GNU Mes and GNU Guile@footnote{Not shown in this graph are the static binaries for @file{bash}, @code{tar}, and @code{xz} that are used to get Guile running.}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38163 +#: guix-git/doc/guix.texi:38652 msgid "This further reduction has brought down the size of the binary seed to about 60MB for @code{i686-linux} and @code{x86_64-linux}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38168 +#: guix-git/doc/guix.texi:38657 msgid "Work is ongoing to remove all binary blobs from our free software bootstrap stack, working towards a Full Source Bootstrap. Also ongoing is work to bring these bootstraps to the @code{arm-linux} and @code{aarch64-linux} architectures and to the Hurd." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38172 +#: guix-git/doc/guix.texi:38661 msgid "If you are interested, join us on @samp{#bootstrappable} on the Freenode IRC network or discuss on @email{bug-mes@@gnu.org} or @email{gash-devel@@nongnu.org}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38179 +#: guix-git/doc/guix.texi:38668 msgid "@image{images/bootstrap-graph,6in,,Dependency graph of the early bootstrap derivations}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38184 +#: guix-git/doc/guix.texi:38673 msgid "The figure above shows the very beginning of the dependency graph of the distribution, corresponding to the package definitions of the @code{(gnu packages bootstrap)} module. A similar figure can be generated with @command{guix graph} (@pxref{Invoking guix graph}), along the lines of:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38189 +#: guix-git/doc/guix.texi:38678 #, no-wrap msgid "" "guix graph -t derivation \\\n" @@ -67229,12 +68121,12 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38192 +#: guix-git/doc/guix.texi:38681 msgid "or, for the further Reduced Binary Seed bootstrap" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38197 +#: guix-git/doc/guix.texi:38686 #, no-wrap msgid "" "guix graph -t derivation \\\n" @@ -67243,43 +68135,43 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38206 +#: guix-git/doc/guix.texi:38695 msgid "At this level of detail, things are slightly complex. First, Guile itself consists of an ELF executable, along with many source and compiled Scheme files that are dynamically loaded when it runs. This gets stored in the @file{guile-2.0.7.tar.xz} tarball shown in this graph. This tarball is part of Guix's ``source'' distribution, and gets inserted into the store with @code{add-to-store} (@pxref{The Store})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38215 +#: guix-git/doc/guix.texi:38704 msgid "But how do we write a derivation that unpacks this tarball and adds it to the store? To solve this problem, the @code{guile-bootstrap-2.0.drv} derivation---the first one that gets built---uses @code{bash} as its builder, which runs @code{build-bootstrap-guile.sh}, which in turn calls @code{tar} to unpack the tarball. Thus, @file{bash}, @file{tar}, @file{xz}, and @file{mkdir} are statically-linked binaries, also part of the Guix source distribution, whose sole purpose is to allow the Guile tarball to be unpacked." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38227 +#: guix-git/doc/guix.texi:38716 msgid "Once @code{guile-bootstrap-2.0.drv} is built, we have a functioning Guile that can be used to run subsequent build programs. Its first task is to download tarballs containing the other pre-built binaries---this is what the @file{.tar.xz.drv} derivations do. Guix modules such as @code{ftp-client.scm} are used for this purpose. The @code{module-import.drv} derivations import those modules in a directory in the store, using the original layout. The @code{module-import-compiled.drv} derivations compile those modules, and write them in an output directory with the right layout. This corresponds to the @code{#:modules} argument of @code{build-expression->derivation} (@pxref{Derivations})." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38232 +#: guix-git/doc/guix.texi:38721 msgid "Finally, the various tarballs are unpacked by the derivations @code{gcc-bootstrap-0.drv}, @code{glibc-bootstrap-0.drv}, or @code{bootstrap-mes-0.drv} and @code{bootstrap-mescc-tools-0.drv}, at which point we have a working C tool chain." msgstr "" #. type: unnumberedsec -#: guix-git/doc/guix.texi:38233 +#: guix-git/doc/guix.texi:38722 #, no-wrap msgid "Building the Build Tools" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38242 +#: guix-git/doc/guix.texi:38731 msgid "Bootstrapping is complete when we have a full tool chain that does not depend on the pre-built bootstrap tools discussed above. This no-dependency requirement is verified by checking whether the files of the final tool chain contain references to the @file{/gnu/store} directories of the bootstrap inputs. The process that leads to this ``final'' tool chain is described by the package definitions found in the @code{(gnu packages commencement)} module." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38249 +#: guix-git/doc/guix.texi:38738 msgid "The @command{guix graph} command allows us to ``zoom out'' compared to the graph above, by looking at the level of package objects instead of individual derivations---remember that a package may translate to several derivations, typically one derivation to download its source, one to build the Guile modules it needs, and one to actually build the package from source. The command:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38254 +#: guix-git/doc/guix.texi:38743 #, no-wrap msgid "" "guix graph -t bag \\\n" @@ -67288,168 +68180,177 @@ msgid "" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38261 +#: guix-git/doc/guix.texi:38750 msgid "displays the dependency graph leading to the ``final'' C library@footnote{You may notice the @code{glibc-intermediate} label, suggesting that it is not @emph{quite} final, but as a good approximation, we will consider it final.}, depicted below." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38263 +#: guix-git/doc/guix.texi:38752 msgid "@image{images/bootstrap-packages,6in,,Dependency graph of the early packages}" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38269 +#: guix-git/doc/guix.texi:38758 msgid "The first tool that gets built with the bootstrap binaries is GNU@tie{}Make---noted @code{make-boot0} above---which is a prerequisite for all the following packages. From there Findutils and Diffutils get built." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38274 +#: guix-git/doc/guix.texi:38763 msgid "Then come the first-stage Binutils and GCC, built as pseudo cross tools---i.e., with @option{--target} equal to @option{--host}. They are used to build libc. Thanks to this cross-build trick, this libc is guaranteed not to hold any reference to the initial tool chain." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38280 +#: guix-git/doc/guix.texi:38769 msgid "From there the final Binutils and GCC (not shown above) are built. GCC uses @command{ld} from the final Binutils, and links programs against the just-built libc. This tool chain is used to build the other packages used by Guix and by the GNU Build System: Guile, Bash, Coreutils, etc." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38286 +#: guix-git/doc/guix.texi:38775 msgid "And voilà! At this point we have the complete set of build tools that the GNU Build System expects. These are in the @code{%final-inputs} variable of the @code{(gnu packages commencement)} module, and are implicitly used by any package that uses @code{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}})." msgstr "" #. type: unnumberedsec -#: guix-git/doc/guix.texi:38288 +#: guix-git/doc/guix.texi:38777 #, no-wrap msgid "Building the Bootstrap Binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38295 +#: guix-git/doc/guix.texi:38784 msgid "Because the final tool chain does not depend on the bootstrap binaries, those rarely need to be updated. Nevertheless, it is useful to have an automated way to produce them, should an update occur, and this is what the @code{(gnu packages make-bootstrap)} module provides." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38301 +#: guix-git/doc/guix.texi:38790 msgid "The following command builds the tarballs containing the bootstrap binaries (Binutils, GCC, glibc, for the traditional bootstrap and linux-libre-headers, bootstrap-mescc-tools, bootstrap-mes for the Reduced Binary Seed bootstrap, and Guile, and a tarball containing a mixture of Coreutils and other basic command-line tools):" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38304 +#: guix-git/doc/guix.texi:38793 #, no-wrap msgid "guix build bootstrap-tarballs\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38309 +#: guix-git/doc/guix.texi:38798 msgid "The generated tarballs are those that should be referred to in the @code{(gnu packages bootstrap)} module mentioned at the beginning of this section." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38315 +#: guix-git/doc/guix.texi:38804 msgid "Still here? Then perhaps by now you've started to wonder: when do we reach a fixed point? That is an interesting question! The answer is unknown, but if you would like to investigate further (and have significant computational and storage resources to do so), then let us know." msgstr "" #. type: unnumberedsec -#: guix-git/doc/guix.texi:38316 +#: guix-git/doc/guix.texi:38805 #, no-wrap msgid "Reducing the Set of Bootstrap Binaries" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38324 +#: guix-git/doc/guix.texi:38813 msgid "Our traditional bootstrap includes GCC, GNU Libc, Guile, etc. That's a lot of binary code! Why is that a problem? It's a problem because these big chunks of binary code are practically non-auditable, which makes it hard to establish what source code produced them. Every unauditable binary also leaves us vulnerable to compiler backdoors as described by Ken Thompson in the 1984 paper @emph{Reflections on Trusting Trust}." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38330 +#: guix-git/doc/guix.texi:38819 msgid "This is mitigated by the fact that our bootstrap binaries were generated from an earlier Guix revision. Nevertheless it lacks the level of transparency that we get in the rest of the package dependency graph, where Guix always gives us a source-to-binary mapping. Thus, our goal is to reduce the set of bootstrap binaries to the bare minimum." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38336 +#: guix-git/doc/guix.texi:38825 msgid "The @uref{https://bootstrappable.org, Bootstrappable.org web site} lists on-going projects to do that. One of these is about replacing the bootstrap GCC with a sequence of assemblers, interpreters, and compilers of increasing complexity, which could be built from source starting from a simple and auditable assembler." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38345 +#: guix-git/doc/guix.texi:38834 msgid "Our first major achievement is the replacement of of GCC, the GNU C Library and Binutils by MesCC-Tools (a simple hex linker and macro assembler) and Mes (@pxref{Top, GNU Mes Reference Manual,, mes, GNU Mes}, a Scheme interpreter and C compiler in Scheme). Neither MesCC-Tools nor Mes can be fully bootstrapped yet and thus we inject them as binary seeds. We call this the Reduced Binary Seed bootstrap, as it has halved the size of our bootstrap binaries! Also, it has eliminated the C compiler binary; i686-linux and x86_64-linux Guix packages are now bootstrapped without any binary C compiler." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38348 +#: guix-git/doc/guix.texi:38837 msgid "Work is ongoing to make MesCC-Tools and Mes fully bootstrappable and we are also looking at any other bootstrap binaries. Your help is welcome!" msgstr "" #. type: chapter -#: guix-git/doc/guix.texi:38350 +#: guix-git/doc/guix.texi:38839 #, no-wrap msgid "Porting to a New Platform" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38359 +#: guix-git/doc/guix.texi:38848 msgid "As discussed above, the GNU distribution is self-contained, and self-containment is achieved by relying on pre-built ``bootstrap binaries'' (@pxref{Bootstrapping}). These binaries are specific to an operating system kernel, CPU architecture, and application binary interface (ABI). Thus, to port the distribution to a platform that is not yet supported, one must build those bootstrap binaries, and update the @code{(gnu packages bootstrap)} module to use them on that platform." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38364 +#: guix-git/doc/guix.texi:38853 msgid "Fortunately, Guix can @emph{cross compile} those bootstrap binaries. When everything goes well, and assuming the GNU tool chain supports the target platform, this can be as simple as running a command like this one:" msgstr "" #. type: example -#: guix-git/doc/guix.texi:38367 +#: guix-git/doc/guix.texi:38856 #, no-wrap msgid "guix build --target=armv5tel-linux-gnueabi bootstrap-tarballs\n" msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38374 +#: guix-git/doc/guix.texi:38863 msgid "For this to work, the @code{glibc-dynamic-linker} procedure in @code{(gnu packages bootstrap)} must be augmented to return the right file name for libc's dynamic linker on that platform; likewise, @code{system->linux-architecture} in @code{(gnu packages linux)} must be taught about the new platform." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38383 +#: guix-git/doc/guix.texi:38872 msgid "Once these are built, the @code{(gnu packages bootstrap)} module needs to be updated to refer to these binaries on the target platform. That is, the hashes and URLs of the bootstrap tarballs for the new platform must be added alongside those of the currently supported platforms. The bootstrap Guile tarball is treated specially: it is expected to be available locally, and @file{gnu/local.mk} has rules to download it for the supported architectures; a rule for the new platform must be added as well." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38392 +#: guix-git/doc/guix.texi:38881 msgid "In practice, there may be some complications. First, it may be that the extended GNU triplet that specifies an ABI (like the @code{eabi} suffix above) is not recognized by all the GNU tools. Typically, glibc recognizes some of these, whereas GCC uses an extra @option{--with-abi} configure flag (see @code{gcc.scm} for examples of how to handle this). Second, some of the required packages could fail to build for that platform. Lastly, the generated binaries could be broken for some reason." msgstr "" #. type: include -#: guix-git/doc/guix.texi:38394 +#: guix-git/doc/guix.texi:38883 #, no-wrap msgid "contributing.texi" msgstr "contributing.zh_CN.texi" #. type: Plain text -#: guix-git/doc/guix.texi:38407 +#: guix-git/doc/guix.texi:38896 msgid "Guix is based on the @uref{https://nixos.org/nix/, Nix package manager}, which was designed and implemented by Eelco Dolstra, with contributions from other people (see the @file{nix/AUTHORS} file in Guix). Nix pioneered functional package management, and promoted unprecedented features, such as transactional package upgrades and rollbacks, per-user profiles, and referentially transparent build processes. Without this work, Guix would not exist." msgstr "" #. type: Plain text -#: guix-git/doc/guix.texi:38410 +#: guix-git/doc/guix.texi:38899 msgid "The Nix-based software distributions, Nixpkgs and NixOS, have also been an inspiration for Guix." msgstr "基于 Nix 的软件发行版 Nixpkgs 和 NixOS 也给 Guix 带来了灵感。" #. type: Plain text -#: guix-git/doc/guix.texi:38416 +#: guix-git/doc/guix.texi:38905 msgid "GNU@tie{}Guix itself is a collective work with contributions from a number of people. See the @file{AUTHORS} file in Guix for more information on these fine people. The @file{THANKS} file lists people who have helped by reporting bugs, taking care of the infrastructure, providing artwork and themes, making suggestions, and more---thank you!" msgstr "" #. type: cindex -#: guix-git/doc/guix.texi:38421 +#: guix-git/doc/guix.texi:38910 #, no-wrap msgid "license, GNU Free Documentation License" msgstr "" #. type: include -#: guix-git/doc/guix.texi:38422 +#: guix-git/doc/guix.texi:38911 #, no-wrap msgid "fdl-1.3.texi" msgstr "" +#~ msgid "./etc/indent-code.el gnu/packages/@var{file}.scm @var{package}\n" +#~ msgstr "./etc/indent-code.el gnu/packages/@var{文件}.scm @var{软件包}\n" + +#~ msgid "This automatically indents the definition of @var{package} in @file{gnu/packages/@var{file}.scm} by running Emacs in batch mode. To indent a whole file, omit the second argument:" +#~ msgstr "这会调用Emacs以批处理模式自动地缩进@file{gnu/packages/@var{文件}.scm}里@var{软件包}的定义。如果想缩进整个文件,省略第二个参数:" + +#~ msgid "./etc/indent-code.el gnu/services/@var{file}.scm\n" +#~ msgstr "./etc/indent-code.el gnu/services/@var{文件}.scm\n" + #, fuzzy #~ msgid "" #~ " (build-machine\n" diff --git a/po/doc/local.mk b/po/doc/local.mk index 6a488f291f..9700a984d7 100644 --- a/po/doc/local.mk +++ b/po/doc/local.mk @@ -37,6 +37,7 @@ DOC_COOKBOOK_PO_FILES = \ %D%/guix-cookbook.fi.po \ %D%/guix-cookbook.fr.po \ %D%/guix-cookbook.ko.po \ + %D%/guix-cookbook.pt_BR.po \ %D%/guix-cookbook.ru.po \ %D%/guix-cookbook.sk.po \ %D%/guix-cookbook.zh_Hans.po diff --git a/po/guix/cs.po b/po/guix/cs.po index f274608ab8..a813a7e6da 100644 --- a/po/guix/cs.po +++ b/po/guix/cs.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: guix 0.7-pre1\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" "PO-Revision-Date: 2021-05-14 17:02+0000\n" "Last-Translator: Petr Hodina \n" "Language-Team: Czech \n" @@ -57,37 +57,37 @@ msgstr "" msgid "Try adding @code{(use-service-modules ~a)}." msgstr "" -#: gnu/packages.scm:96 +#: gnu/packages.scm:97 #, fuzzy, scheme-format msgid "~a: patch not found" msgstr "~a: Balíček nenalezen~%" -#: gnu/packages.scm:480 gnu/packages.scm:521 +#: gnu/packages.scm:481 gnu/packages.scm:522 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "" -#: gnu/packages.scm:481 gnu/packages.scm:522 +#: gnu/packages.scm:482 gnu/packages.scm:523 #, scheme-format msgid "choosing ~a@~a from ~a~%" msgstr "" -#: gnu/packages.scm:486 guix/scripts/package.scm:216 +#: gnu/packages.scm:487 guix/scripts/package.scm:218 #, scheme-format msgid "package '~a' has been superseded by '~a'~%" msgstr "" -#: gnu/packages.scm:493 gnu/packages.scm:510 +#: gnu/packages.scm:494 gnu/packages.scm:511 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A: Balíček nenalezen pro verzi ~a~%" -#: gnu/packages.scm:494 gnu/packages.scm:511 +#: gnu/packages.scm:495 gnu/packages.scm:512 #, scheme-format msgid "~A: unknown package~%" msgstr "~A: Neznámý balíček~%" -#: gnu/packages.scm:550 +#: gnu/packages.scm:551 #, scheme-format msgid "package `~a' lacks output `~a'~%" msgstr "" @@ -284,7 +284,7 @@ msgid "" "@code{SIGKILL}." msgstr "" -#: gnu/home/services.scm:127 +#: gnu/home/services.scm:128 #, fuzzy #| msgid "" #| "Build the operating system top-level directory, which in\n" @@ -299,7 +299,7 @@ msgstr "" "který následně referencuje vše co potřebuje: jádro, intrd\n" "systémový profil, bootovací skript a další." -#: gnu/home/services.scm:158 +#: gnu/home/services.scm:159 #, scheme-format msgid "" "This is the @dfn{home profile} and can be found in\n" @@ -308,22 +308,22 @@ msgid "" "@code{home-environment} record." msgstr "" -#: gnu/home/services.scm:180 +#: gnu/home/services.scm:181 #, scheme-format msgid "duplicate definition for `~a' environment variable ~%" msgstr "" -#: gnu/home/services.scm:242 +#: gnu/home/services.scm:243 msgid "Set the environment variables." msgstr "" -#: gnu/home/services.scm:253 +#: gnu/home/services.scm:254 #, fuzzy, scheme-format #| msgid "duplicate '~a' entry for /etc" msgid "duplicate '~a' entry for files/" msgstr "duplicitní '~a' záznam pro /etc" -#: gnu/home/services.scm:277 +#: gnu/home/services.scm:278 #, scheme-format msgid "" "Configuration files for programs that\n" @@ -332,7 +332,7 @@ msgstr "" #. TRANSLATORS: 'on-first-login' is the name of a service and #. shouldn't be translated -#: gnu/home/services.scm:308 +#: gnu/home/services.scm:309 msgid "" "XDG_RUNTIME_DIR doesn't exists, on-first-login script\n" "won't execute anything. You can check if xdg runtime directory exists,\n" @@ -340,13 +340,13 @@ msgid "" "script by running '$HOME/.guix-home/on-first-login'" msgstr "" -#: gnu/home/services.scm:328 +#: gnu/home/services.scm:329 msgid "" "Run gexps on first user login. Can be\n" "extended with one gexp." msgstr "" -#: gnu/home/services.scm:391 +#: gnu/home/services.scm:392 msgid "" "Run gexps to activate the current\n" "generation of home environment and update the state of the home\n" @@ -355,33 +355,33 @@ msgid "" "with one gexp, but many times, and all gexps must be idempotent." msgstr "" -#: gnu/home/services.scm:472 +#: gnu/home/services.scm:473 #, scheme-format msgid "" "Comparing ~a and\n" "~10t~a..." msgstr "" -#: gnu/home/services.scm:474 +#: gnu/home/services.scm:475 #, scheme-format msgid " done (~a)\n" msgstr "" #. TRANSLATORS: 'on-change' is the name of a service type, it #. probably shouldn't be translated. -#: gnu/home/services.scm:483 +#: gnu/home/services.scm:484 msgid "" "Evaluating on-change gexps.\n" "\n" msgstr "" -#: gnu/home/services.scm:485 +#: gnu/home/services.scm:486 msgid "" "On-change gexps evaluation finished.\n" "\n" msgstr "" -#: gnu/home/services.scm:499 +#: gnu/home/services.scm:500 msgid "" "G-expressions to run if the specified files have changed since the\n" "last generation. The extension should be a list of lists where the\n" @@ -389,7 +389,7 @@ msgid "" "changed, and the second element is the G-expression to be evaluated." msgstr "" -#: gnu/home/services.scm:519 +#: gnu/home/services.scm:520 msgid "" "Store provenance information about the home environment in the home\n" "environment itself: the channels used when building the home\n" @@ -645,12 +645,12 @@ msgstr "" msgid "Updater for ELPA packages" msgstr "" -#: guix/import/github.scm:170 +#: guix/import/github.scm:175 #, scheme-format msgid "~a is unreachable (~a)~%" msgstr "" -#: guix/import/github.scm:260 +#: guix/import/github.scm:274 msgid "Updater for GitHub packages" msgstr "" @@ -688,12 +688,22 @@ msgstr "~A: Balíček nenalezen pro verzi ~a~%" msgid "failed to determine latest release of GNU ~a" msgstr "Nepodařilo se vytvořit prázdný profil~%" -#: guix/import/go.scm:569 +#: guix/import/go.scm:571 #, scheme-format msgid "unsupported vcs type '~a' for package '~a'" msgstr "" -#: guix/import/go.scm:647 +#: guix/import/go.scm:594 +#, scheme-format +msgid "version ~a of ~a is not available~%" +msgstr "" + +#: guix/import/go.scm:597 +#, scheme-format +msgid "Pick one of the following available versions:~{ ~a~}." +msgstr "" + +#: guix/import/go.scm:671 #, scheme-format msgid "" "Failed to import package ~s.\n" @@ -701,13 +711,6 @@ msgid "" "This package and its dependencies won't be imported.~%" msgstr "" -#: guix/import/go.scm:656 -#, fuzzy, scheme-format -msgid "" -"Failed to import package ~s.\n" -"reason: ~s.~%" -msgstr "Nepodařilo se spojit s »~a«: ~a~%" - #: guix/import/minetest.scm:178 #, scheme-format msgid "In ~a: author names must consist of at least a single character.~%" @@ -801,77 +804,99 @@ msgstr "Profil »~a« neexistuje~%" msgid "Updater for OPAM packages" msgstr "" -#: guix/import/pypi.scm:230 +#: guix/import/pypi.scm:233 msgid "Could not extract requirement name in spec:" msgstr "" -#: guix/import/pypi.scm:290 +#: guix/import/pypi.scm:293 #, scheme-format msgid "parse-requires.txt reached an unexpected condition on line ~a~%" msgstr "" -#: guix/import/pypi.scm:356 +#: guix/import/pypi.scm:359 #, fuzzy, scheme-format msgid "Failed to extract file: ~a from wheel.~%" msgstr "Nepodařilo se spojit s »~a«: ~a~%" -#: guix/import/pypi.scm:385 +#: guix/import/pypi.scm:388 #, scheme-format msgid "Cannot guess requirements from source archive: no requires.txt file found.~%" msgstr "" -#: guix/import/pypi.scm:390 +#: guix/import/pypi.scm:393 #, scheme-format msgid "Unsupported archive format; cannot determine package dependencies from source archive: ~a~%" msgstr "" -#: guix/import/pypi.scm:489 +#: guix/import/pypi.scm:434 +#, scheme-format +msgid "project name ~a does not appear verbatim in the PyPI URI~%" +msgstr "" + +#: guix/import/pypi.scm:437 +#, scheme-format +msgid "" +"The PyPI URI is: @url{~a}. You should review the\n" +"pypi-uri declaration in the generated package. You may need to replace ~s with\n" +"a substring of the PyPI URI that identifies the package." +msgstr "" + +#: guix/import/pypi.scm:505 #, scheme-format msgid "no source release for pypi package ~a ~a~%" msgstr "" -#: guix/import/pypi.scm:554 +#: guix/import/pypi.scm:509 +#, scheme-format +msgid "" +"This indicates that the\n" +"package is available on PyPI, but only as a \"wheel\" containing binaries, not\n" +"source. To build it from source, refer to the upstream repository at\n" +"@uref{~a}." +msgstr "" + +#: guix/import/pypi.scm:579 msgid "Updater for PyPI packages" msgstr "" -#: gnu/installer.scm:214 +#: gnu/installer.scm:217 msgid "Locale" msgstr "" -#: gnu/installer.scm:230 gnu/installer/newt/timezone.scm:58 +#: gnu/installer.scm:233 gnu/installer/newt/timezone.scm:58 msgid "Timezone" msgstr "" -#: gnu/installer.scm:247 +#: gnu/installer.scm:250 msgid "Keyboard mapping selection" msgstr "" -#: gnu/installer.scm:256 gnu/installer/newt/hostname.scm:26 +#: gnu/installer.scm:259 gnu/installer/newt/hostname.scm:26 msgid "Hostname" msgstr "" -#: gnu/installer.scm:265 +#: gnu/installer.scm:268 msgid "Network selection" msgstr "" -#: gnu/installer.scm:272 +#: gnu/installer.scm:275 msgid "Substitute server discovery" msgstr "" -#: gnu/installer.scm:279 gnu/installer/newt/user.scm:68 -#: gnu/installer/newt/user.scm:205 +#: gnu/installer.scm:282 gnu/installer/newt/user.scm:67 +#: gnu/installer/newt/user.scm:204 msgid "User creation" msgstr "" -#: gnu/installer.scm:287 +#: gnu/installer.scm:290 msgid "Services" msgstr "" -#: gnu/installer.scm:298 +#: gnu/installer.scm:301 msgid "Partitioning" msgstr "" -#: gnu/installer.scm:305 gnu/installer/newt/final.scm:53 +#: gnu/installer.scm:308 gnu/installer/newt/final.scm:53 #, fuzzy msgid "Configuration file" msgstr "Nezadán žádný soubor s nastavením~%" @@ -884,19 +909,78 @@ msgstr "" msgid "Unable to find expected regexp." msgstr "" -#: gnu/installer/newt.scm:52 +#: gnu/installer/newt.scm:58 msgid "Press for installation parameters." msgstr "" -#: gnu/installer/newt.scm:65 -#, scheme-format -msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +#: gnu/installer/newt.scm:68 +msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. You may choose to exit or create a dump archive." msgstr "" -#: gnu/installer/newt.scm:68 +#: gnu/installer/newt.scm:71 msgid "Unexpected problem" msgstr "" +#: gnu/installer/newt.scm:75 +msgid "Dump" +msgstr "" + +#: gnu/installer/newt.scm:76 gnu/installer/newt/ethernet.scm:79 +#: gnu/installer/newt/keymap.scm:56 gnu/installer/newt/locale.scm:43 +#: gnu/installer/newt/network.scm:65 gnu/installer/newt/network.scm:82 +#: gnu/installer/newt/page.scm:315 gnu/installer/newt/page.scm:679 +#: gnu/installer/newt/page.scm:763 gnu/installer/newt/page.scm:828 +#: gnu/installer/newt/partition.scm:54 gnu/installer/newt/partition.scm:90 +#: gnu/installer/newt/partition.scm:125 gnu/installer/newt/partition.scm:140 +#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 +#: gnu/installer/newt/partition.scm:706 gnu/installer/newt/partition.scm:764 +#: gnu/installer/newt/partition.scm:775 gnu/installer/newt/services.scm:124 +#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/wifi.scm:206 +msgid "Exit" +msgstr "" + +#: gnu/installer/newt.scm:82 +#, scheme-format +msgid "The dump archive was created as ~a. Would you like to send this archive to the Guix servers?" +msgstr "" + +#: gnu/installer/newt.scm:84 +msgid "Dump archive created" +msgstr "" + +#: gnu/installer/newt.scm:88 +#, scheme-format +msgid "The dump was uploaded as ~a. Please report it by email to ~a." +msgstr "" + +#: gnu/installer/newt.scm:90 +msgid "The dump could not be uploaded." +msgstr "" + +#: gnu/installer/newt.scm:93 +msgid "Dump upload result" +msgstr "" + +#: gnu/installer/newt.scm:132 +#, scheme-format +msgid "External command ~s exited with code ~a" +msgstr "" + +#: gnu/installer/newt.scm:135 +#, scheme-format +msgid "External command ~s terminated by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:138 +#, scheme-format +msgid "External command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:140 +msgid "External command error" +msgstr "" + #: gnu/installer/newt/ethernet.scm:66 msgid "No ethernet service available, please try again." msgstr "" @@ -905,59 +989,45 @@ msgstr "" msgid "No service" msgstr "" -#: gnu/installer/newt/ethernet.scm:76 +#: gnu/installer/newt/ethernet.scm:74 msgid "Please select an ethernet network." msgstr "" -#: gnu/installer/newt/ethernet.scm:77 +#: gnu/installer/newt/ethernet.scm:75 msgid "Ethernet connection" msgstr "" -#: gnu/installer/newt/ethernet.scm:81 gnu/installer/newt/keymap.scm:56 -#: gnu/installer/newt/locale.scm:43 gnu/installer/newt/network.scm:63 -#: gnu/installer/newt/network.scm:84 gnu/installer/newt/page.scm:309 -#: gnu/installer/newt/page.scm:673 gnu/installer/newt/page.scm:758 -#: gnu/installer/newt/partition.scm:56 gnu/installer/newt/partition.scm:91 -#: gnu/installer/newt/partition.scm:126 gnu/installer/newt/partition.scm:141 -#: gnu/installer/newt/partition.scm:638 gnu/installer/newt/partition.scm:661 -#: gnu/installer/newt/partition.scm:707 gnu/installer/newt/partition.scm:765 -#: gnu/installer/newt/partition.scm:776 gnu/installer/newt/services.scm:130 -#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:204 -#: gnu/installer/newt/wifi.scm:206 -msgid "Exit" -msgstr "" - #: gnu/installer/newt/final.scm:46 #, scheme-format msgid "We're now ready to proceed with the installation! A system configuration file has been generated, it is displayed below. This file will be available as '~a' on the installed system. The new system will be created from this file once you've pressed OK. This will take a few minutes." msgstr "" -#: gnu/installer/newt/final.scm:70 +#: gnu/installer/newt/final.scm:68 msgid "Installation complete" msgstr "" -#: gnu/installer/newt/final.scm:71 gnu/installer/newt/parameters.scm:45 +#: gnu/installer/newt/final.scm:69 gnu/installer/newt/parameters.scm:45 #: gnu/installer/newt/welcome.scm:145 msgid "Reboot" msgstr "" -#: gnu/installer/newt/final.scm:72 +#: gnu/installer/newt/final.scm:70 msgid "Congratulations! Installation is now complete. You may remove the device containing the installation image and press the button to reboot." msgstr "" -#: gnu/installer/newt/final.scm:86 +#: gnu/installer/newt/final.scm:84 msgid "Installation failed" msgstr "" -#: gnu/installer/newt/final.scm:87 +#: gnu/installer/newt/final.scm:85 msgid "Resume" msgstr "" -#: gnu/installer/newt/final.scm:88 +#: gnu/installer/newt/final.scm:86 msgid "Restart the installer" msgstr "" -#: gnu/installer/newt/final.scm:89 +#: gnu/installer/newt/final.scm:87 msgid "The final system installation step failed. You can resume from a specific step, or restart the installer." msgstr "" @@ -985,9 +1055,9 @@ msgstr "" msgid "Installation parameters" msgstr "" -#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:74 -#: gnu/installer/newt/locale.scm:63 gnu/installer/newt/locale.scm:78 -#: gnu/installer/newt/locale.scm:94 gnu/installer/newt/partition.scm:595 +#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:72 +#: gnu/installer/newt/locale.scm:61 gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:88 gnu/installer/newt/partition.scm:594 #: gnu/installer/newt/timezone.scm:64 msgid "Back" msgstr "" @@ -1008,16 +1078,16 @@ msgstr "" msgid "Please choose your keyboard layout. It will be used during the install process, and for the installed system. Non-Latin layouts can be toggled with Alt+Shift. You can switch to a different layout at any time from the parameters menu." msgstr "" -#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:62 -#: gnu/installer/newt/page.scm:308 +#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/page.scm:314 msgid "Continue" msgstr "" -#: gnu/installer/newt/keymap.scm:67 +#: gnu/installer/newt/keymap.scm:65 msgid "Variant" msgstr "" -#: gnu/installer/newt/keymap.scm:70 +#: gnu/installer/newt/keymap.scm:68 msgid "Please choose a variant for your keyboard layout." msgstr "" @@ -1029,37 +1099,37 @@ msgstr "" msgid "Choose the language to use for the installation process and for the installed system." msgstr "" -#: gnu/installer/newt/locale.scm:57 +#: gnu/installer/newt/locale.scm:55 #, fuzzy msgid "Locale location" msgstr "" -#: gnu/installer/newt/locale.scm:60 +#: gnu/installer/newt/locale.scm:58 msgid "Choose a territory for this language." msgstr "" -#: gnu/installer/newt/locale.scm:71 +#: gnu/installer/newt/locale.scm:67 msgid "Locale codeset" msgstr "" -#: gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:70 msgid "Choose the locale encoding." msgstr "" -#: gnu/installer/newt/locale.scm:86 +#: gnu/installer/newt/locale.scm:80 msgid "Locale modifier" msgstr "" -#: gnu/installer/newt/locale.scm:89 +#: gnu/installer/newt/locale.scm:83 msgid "Choose your locale's modifier. The most frequent modifier is euro. It indicates that you want to use Euro as the currency symbol." msgstr "" -#: gnu/installer/newt/locale.scm:190 +#: gnu/installer/newt/locale.scm:181 #, fuzzy msgid "No location" msgstr "" -#: gnu/installer/newt/locale.scm:217 +#: gnu/installer/newt/locale.scm:208 msgid "No modifier" msgstr "" @@ -1075,330 +1145,334 @@ msgstr "" msgid "Abort" msgstr "" -#: gnu/installer/newt/network.scm:61 gnu/installer/newt/network.scm:80 +#: gnu/installer/newt/network.scm:63 gnu/installer/newt/network.scm:78 msgid "Internet access" msgstr "" -#: gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/network.scm:66 msgid "The install process requires Internet access but no network devices were found. Do you want to continue anyway?" msgstr "" -#: gnu/installer/newt/network.scm:78 +#: gnu/installer/newt/network.scm:76 msgid "The install process requires Internet access. Please select a network device." msgstr "" -#: gnu/installer/newt/network.scm:103 +#: gnu/installer/newt/network.scm:99 msgid "Powering technology" msgstr "" -#: gnu/installer/newt/network.scm:104 +#: gnu/installer/newt/network.scm:100 #, scheme-format msgid "Waiting for technology ~a to be powered." msgstr "" -#: gnu/installer/newt/network.scm:128 +#: gnu/installer/newt/network.scm:139 msgid "Checking connectivity" msgstr "" -#: gnu/installer/newt/network.scm:129 +#: gnu/installer/newt/network.scm:140 msgid "Waiting for Internet access establishment..." msgstr "" -#: gnu/installer/newt/network.scm:139 -msgid "The selected network does not provide access to the Internet, please try again." +#: gnu/installer/newt/network.scm:150 +msgid "The selected network does not provide access to the Internet and the Guix substitute server, please try again." msgstr "" -#: gnu/installer/newt/network.scm:141 gnu/installer/newt/wifi.scm:108 +#: gnu/installer/newt/network.scm:152 gnu/installer/newt/wifi.scm:108 msgid "Connection error" msgstr "" -#: gnu/installer/newt/page.scm:198 +#: gnu/installer/newt/page.scm:204 #, fuzzy, scheme-format msgid "Connecting to ~a, please wait." msgstr "Stahuje se. Počkejte, prosím …~%" -#: gnu/installer/newt/page.scm:199 +#: gnu/installer/newt/page.scm:205 msgid "Connection in progress" msgstr "" -#: gnu/installer/newt/page.scm:218 gnu/installer/newt/user.scm:60 +#: gnu/installer/newt/page.scm:224 gnu/installer/newt/user.scm:59 msgid "Show" msgstr "" -#: gnu/installer/newt/page.scm:225 gnu/installer/newt/page.scm:672 -#: gnu/installer/newt/page.scm:757 gnu/installer/newt/partition.scm:458 -#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 -#: gnu/installer/newt/partition.scm:699 gnu/installer/newt/user.scm:66 -#: gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/page.scm:231 gnu/installer/newt/page.scm:678 +#: gnu/installer/newt/page.scm:762 gnu/installer/newt/partition.scm:457 +#: gnu/installer/newt/partition.scm:636 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:698 gnu/installer/newt/user.scm:65 +#: gnu/installer/newt/user.scm:202 msgid "OK" msgstr "" -#: gnu/installer/newt/page.scm:251 +#: gnu/installer/newt/page.scm:257 msgid "Please enter a non empty input." msgstr "" -#: gnu/installer/newt/page.scm:252 gnu/installer/newt/user.scm:123 +#: gnu/installer/newt/page.scm:258 gnu/installer/newt/user.scm:122 msgid "Empty input" msgstr "" -#: gnu/installer/newt/page.scm:760 +#: gnu/installer/newt/page.scm:765 msgid "Edit" msgstr "" -#: gnu/installer/newt/partition.scm:47 +#: gnu/installer/newt/page.scm:825 +msgid "Ok" +msgstr "" + +#: gnu/installer/newt/partition.scm:45 msgid "Everything is one partition" msgstr "" -#: gnu/installer/newt/partition.scm:48 +#: gnu/installer/newt/partition.scm:46 msgid "Separate /home partition" msgstr "" -#: gnu/installer/newt/partition.scm:50 +#: gnu/installer/newt/partition.scm:48 msgid "Please select a partitioning scheme." msgstr "" -#: gnu/installer/newt/partition.scm:51 +#: gnu/installer/newt/partition.scm:49 msgid "Partition scheme" msgstr "" #. TRANSLATORS: The ~{ and ~} format specifiers are used to iterate the list #. of device names of the user partitions that will be formatted. -#: gnu/installer/newt/partition.scm:65 +#: gnu/installer/newt/partition.scm:63 #, scheme-format msgid "We are about to write the configured partition table to the disk and format the partitions listed below. Their data will be lost. Do you wish to continue?~%~%~{ - ~a~%~}" msgstr "" -#: gnu/installer/newt/partition.scm:71 +#: gnu/installer/newt/partition.scm:69 msgid "Format disk?" msgstr "" -#: gnu/installer/newt/partition.scm:74 +#: gnu/installer/newt/partition.scm:72 msgid "Partition formatting is in progress, please wait." msgstr "" -#: gnu/installer/newt/partition.scm:75 +#: gnu/installer/newt/partition.scm:73 msgid "Preparing partitions" msgstr "" -#: gnu/installer/newt/partition.scm:86 -msgid "Please select a disk." +#: gnu/installer/newt/partition.scm:84 +msgid "Please select a disk. The installation device as well as the small devices are filtered." msgstr "" -#: gnu/installer/newt/partition.scm:87 +#: gnu/installer/newt/partition.scm:86 msgid "Disk" msgstr "" -#: gnu/installer/newt/partition.scm:102 +#: gnu/installer/newt/partition.scm:101 msgid "Select a new partition table type. Be careful, all data on the disk will be lost." msgstr "" -#: gnu/installer/newt/partition.scm:104 +#: gnu/installer/newt/partition.scm:103 msgid "Partition table" msgstr "" -#: gnu/installer/newt/partition.scm:121 +#: gnu/installer/newt/partition.scm:120 msgid "Please select a partition type." msgstr "" -#: gnu/installer/newt/partition.scm:122 +#: gnu/installer/newt/partition.scm:121 msgid "Partition type" msgstr "" -#: gnu/installer/newt/partition.scm:132 +#: gnu/installer/newt/partition.scm:131 msgid "Please select the file-system type for this partition." msgstr "" -#: gnu/installer/newt/partition.scm:133 +#: gnu/installer/newt/partition.scm:132 msgid "File-system type" msgstr "" -#: gnu/installer/newt/partition.scm:150 +#: gnu/installer/newt/partition.scm:149 msgid "Primary partitions count exceeded." msgstr "" -#: gnu/installer/newt/partition.scm:151 gnu/installer/newt/partition.scm:156 -#: gnu/installer/newt/partition.scm:161 +#: gnu/installer/newt/partition.scm:150 gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:160 msgid "Creation error" msgstr "" -#: gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:154 msgid "Extended partition creation error." msgstr "" -#: gnu/installer/newt/partition.scm:160 +#: gnu/installer/newt/partition.scm:159 msgid "Logical partition creation error." msgstr "" -#: gnu/installer/newt/partition.scm:174 +#: gnu/installer/newt/partition.scm:173 #, scheme-format msgid "Please enter the password for the encryption of partition ~a (label: ~a)." msgstr "" -#: gnu/installer/newt/partition.scm:176 gnu/installer/newt/wifi.scm:92 +#: gnu/installer/newt/partition.scm:175 gnu/installer/newt/wifi.scm:92 msgid "Password required" msgstr "" -#: gnu/installer/newt/partition.scm:181 +#: gnu/installer/newt/partition.scm:180 #, scheme-format msgid "Please confirm the password for the encryption of partition ~a (label: ~a)." msgstr "" -#: gnu/installer/newt/partition.scm:183 gnu/installer/newt/user.scm:160 +#: gnu/installer/newt/partition.scm:182 gnu/installer/newt/user.scm:159 msgid "Password confirmation required" msgstr "" -#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 +#: gnu/installer/newt/partition.scm:194 gnu/installer/newt/user.scm:167 msgid "Password mismatch, please try again." msgstr "" -#: gnu/installer/newt/partition.scm:196 gnu/installer/newt/user.scm:169 +#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 msgid "Password error" msgstr "" -#: gnu/installer/newt/partition.scm:282 +#: gnu/installer/newt/partition.scm:281 msgid "Please enter the partition gpt name." msgstr "" -#: gnu/installer/newt/partition.scm:283 +#: gnu/installer/newt/partition.scm:282 msgid "Partition name" msgstr "" -#: gnu/installer/newt/partition.scm:313 +#: gnu/installer/newt/partition.scm:312 msgid "Please enter the encrypted label" msgstr "" -#: gnu/installer/newt/partition.scm:314 +#: gnu/installer/newt/partition.scm:313 msgid "Encryption label" msgstr "" -#: gnu/installer/newt/partition.scm:331 +#: gnu/installer/newt/partition.scm:330 #, scheme-format msgid "Please enter the size of the partition. The maximum size is ~a." msgstr "" -#: gnu/installer/newt/partition.scm:333 +#: gnu/installer/newt/partition.scm:332 msgid "Partition size" msgstr "" -#: gnu/installer/newt/partition.scm:351 +#: gnu/installer/newt/partition.scm:350 msgid "The percentage can not be superior to 100." msgstr "" -#: gnu/installer/newt/partition.scm:352 gnu/installer/newt/partition.scm:357 -#: gnu/installer/newt/partition.scm:362 +#: gnu/installer/newt/partition.scm:351 gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:361 msgid "Size error" msgstr "" -#: gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:355 msgid "The requested size is incorrectly formatted, or too large." msgstr "" -#: gnu/installer/newt/partition.scm:361 +#: gnu/installer/newt/partition.scm:360 msgid "The request size is superior to the maximum size." msgstr "" -#: gnu/installer/newt/partition.scm:381 +#: gnu/installer/newt/partition.scm:380 msgid "Please enter the desired mounting point for this partition. Leave this field empty if you don't want to set a mounting point." msgstr "" -#: gnu/installer/newt/partition.scm:383 +#: gnu/installer/newt/partition.scm:382 msgid "Mounting point" msgstr "" -#: gnu/installer/newt/partition.scm:447 +#: gnu/installer/newt/partition.scm:446 #, scheme-format msgid "Creating ~a partition starting at ~a of ~a." msgstr "" -#: gnu/installer/newt/partition.scm:449 +#: gnu/installer/newt/partition.scm:448 #, scheme-format msgid "You are currently editing partition ~a." msgstr "" -#: gnu/installer/newt/partition.scm:452 +#: gnu/installer/newt/partition.scm:451 msgid "Partition creation" msgstr "" -#: gnu/installer/newt/partition.scm:453 +#: gnu/installer/newt/partition.scm:452 msgid "Partition edit" msgstr "" -#: gnu/installer/newt/partition.scm:634 +#: gnu/installer/newt/partition.scm:633 #, scheme-format msgid "Are you sure you want to delete everything on disk ~a?" msgstr "" -#: gnu/installer/newt/partition.scm:636 +#: gnu/installer/newt/partition.scm:635 msgid "Delete disk" msgstr "" -#: gnu/installer/newt/partition.scm:651 +#: gnu/installer/newt/partition.scm:650 msgid "You cannot delete a free space area." msgstr "" -#: gnu/installer/newt/partition.scm:652 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:651 gnu/installer/newt/partition.scm:658 msgid "Delete partition" msgstr "" -#: gnu/installer/newt/partition.scm:657 +#: gnu/installer/newt/partition.scm:656 #, scheme-format msgid "Are you sure you want to delete partition ~a?" msgstr "" -#: gnu/installer/newt/partition.scm:674 +#: gnu/installer/newt/partition.scm:673 msgid "" "You can change a disk's partition table by selecting it and pressing ENTER. You can also edit a partition by selecting it and pressing ENTER, or remove it by pressing DELETE. To create a new partition, select a free space area and press ENTER.\n" "\n" "At least one partition must have its mounting point set to '/'." msgstr "" -#: gnu/installer/newt/partition.scm:680 +#: gnu/installer/newt/partition.scm:679 #, scheme-format msgid "This is the proposed partitioning. It is still possible to edit it or to go back to install menu by pressing the Exit button.~%~%" msgstr "" -#: gnu/installer/newt/partition.scm:690 +#: gnu/installer/newt/partition.scm:689 msgid "Guided partitioning" msgstr "" -#: gnu/installer/newt/partition.scm:691 +#: gnu/installer/newt/partition.scm:690 msgid "Manual partitioning" msgstr "" -#: gnu/installer/newt/partition.scm:716 +#: gnu/installer/newt/partition.scm:715 msgid "No root mount point found." msgstr "" -#: gnu/installer/newt/partition.scm:717 +#: gnu/installer/newt/partition.scm:716 msgid "Missing mount point" msgstr "" -#: gnu/installer/newt/partition.scm:721 +#: gnu/installer/newt/partition.scm:720 #, scheme-format msgid "Cannot read the ~a partition UUID. You may need to format it." msgstr "" -#: gnu/installer/newt/partition.scm:724 +#: gnu/installer/newt/partition.scm:723 msgid "Wrong partition format" msgstr "" -#: gnu/installer/newt/partition.scm:755 +#: gnu/installer/newt/partition.scm:754 msgid "Guided - using the entire disk" msgstr "" -#: gnu/installer/newt/partition.scm:756 +#: gnu/installer/newt/partition.scm:755 msgid "Guided - using the entire disk with encryption" msgstr "" -#: gnu/installer/newt/partition.scm:757 +#: gnu/installer/newt/partition.scm:756 msgid "Manual" msgstr "" -#: gnu/installer/newt/partition.scm:759 +#: gnu/installer/newt/partition.scm:758 msgid "Please select a partitioning method." msgstr "" -#: gnu/installer/newt/partition.scm:760 +#: gnu/installer/newt/partition.scm:759 msgid "Partitioning method" msgstr "" @@ -1410,35 +1484,35 @@ msgstr "" msgid "Desktop environment" msgstr "" -#: gnu/installer/newt/services.scm:59 +#: gnu/installer/newt/services.scm:57 msgid "You can now select networking services to run on your system." msgstr "" -#: gnu/installer/newt/services.scm:61 +#: gnu/installer/newt/services.scm:59 msgid "Network service" msgstr "" -#: gnu/installer/newt/services.scm:79 +#: gnu/installer/newt/services.scm:75 msgid "You can now select the CUPS printing service to run on your system." msgstr "" -#: gnu/installer/newt/services.scm:81 +#: gnu/installer/newt/services.scm:77 msgid "Printing and document services" msgstr "" -#: gnu/installer/newt/services.scm:100 +#: gnu/installer/newt/services.scm:94 msgid "Console services" msgstr "" -#: gnu/installer/newt/services.scm:101 +#: gnu/installer/newt/services.scm:95 msgid "Select miscellaneous services to run on your non-graphical system." msgstr "" -#: gnu/installer/newt/services.scm:115 +#: gnu/installer/newt/services.scm:109 msgid "Network management" msgstr "" -#: gnu/installer/newt/services.scm:118 +#: gnu/installer/newt/services.scm:112 msgid "" "Choose the method to manage network connections.\n" "\n" @@ -1468,57 +1542,57 @@ msgstr "" msgid "Please select a timezone." msgstr "" -#: gnu/installer/newt/user.scm:45 +#: gnu/installer/newt/user.scm:44 msgid "Name" msgstr "" -#: gnu/installer/newt/user.scm:47 +#: gnu/installer/newt/user.scm:46 msgid "Real name" msgstr "" -#: gnu/installer/newt/user.scm:49 +#: gnu/installer/newt/user.scm:48 msgid "Home directory" msgstr "" -#: gnu/installer/newt/user.scm:51 +#: gnu/installer/newt/user.scm:50 msgid "Password" msgstr "" -#: gnu/installer/newt/user.scm:122 +#: gnu/installer/newt/user.scm:121 msgid "Empty inputs are not allowed." msgstr "" -#: gnu/installer/newt/user.scm:159 +#: gnu/installer/newt/user.scm:158 msgid "Please confirm the password." msgstr "" #. TRANSLATORS: Leave "root" untranslated: it refers to the name of the #. system administrator account. -#: gnu/installer/newt/user.scm:176 +#: gnu/installer/newt/user.scm:175 msgid "Please choose a password for the system administrator (\"root\")." msgstr "" -#: gnu/installer/newt/user.scm:178 +#: gnu/installer/newt/user.scm:177 msgid "System administrator password" msgstr "" -#: gnu/installer/newt/user.scm:191 +#: gnu/installer/newt/user.scm:190 msgid "Please add at least one user to system using the 'Add' button." msgstr "" -#: gnu/installer/newt/user.scm:194 +#: gnu/installer/newt/user.scm:193 msgid "Add" msgstr "" -#: gnu/installer/newt/user.scm:195 +#: gnu/installer/newt/user.scm:194 msgid "Delete" msgstr "" -#: gnu/installer/newt/user.scm:255 +#: gnu/installer/newt/user.scm:254 msgid "Please create at least one user." msgstr "" -#: gnu/installer/newt/user.scm:256 +#: gnu/installer/newt/user.scm:255 msgid "No user" msgstr "" @@ -1589,60 +1663,60 @@ msgstr "" msgid "Wifi" msgstr "" -#: gnu/installer/parted.scm:433 gnu/installer/parted.scm:470 +#: gnu/installer/parted.scm:455 gnu/installer/parted.scm:492 msgid "Free space" msgstr "" -#: gnu/installer/parted.scm:559 +#: gnu/installer/parted.scm:581 #, fuzzy, scheme-format msgid "Name: ~a" msgstr "~a: ~a~%" -#: gnu/installer/parted.scm:560 gnu/installer/parted.scm:606 +#: gnu/installer/parted.scm:582 gnu/installer/parted.scm:628 msgid "None" msgstr "" -#: gnu/installer/parted.scm:565 +#: gnu/installer/parted.scm:587 #, scheme-format msgid "Type: ~a" msgstr "" -#: gnu/installer/parted.scm:569 +#: gnu/installer/parted.scm:591 #, scheme-format msgid "File system type: ~a" msgstr "" -#: gnu/installer/parted.scm:575 +#: gnu/installer/parted.scm:597 #, scheme-format msgid "Bootable flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:579 +#: gnu/installer/parted.scm:601 #, scheme-format msgid "ESP flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:585 +#: gnu/installer/parted.scm:607 #, scheme-format msgid "Size: ~a" msgstr "" -#: gnu/installer/parted.scm:591 +#: gnu/installer/parted.scm:613 #, scheme-format msgid "Encryption: ~:[No~a~;Yes (label '~a')~]" msgstr "" -#: gnu/installer/parted.scm:597 +#: gnu/installer/parted.scm:619 #, scheme-format msgid "Format the partition? ~:[No~;Yes~]" msgstr "" -#: gnu/installer/parted.scm:603 +#: gnu/installer/parted.scm:625 #, scheme-format msgid "Mount point: ~a" msgstr "" -#: gnu/installer/parted.scm:1466 +#: gnu/installer/parted.scm:1477 #, scheme-format msgid "Device ~a is still in use." msgstr "" @@ -1686,7 +1760,7 @@ msgstr "" #. TRANSLATORS: This is a comment within a Scheme file. Each line must #. start with ";; " (two semicolons and a space). Please keep line #. length below 60 characters. -#: gnu/installer/steps.scm:252 +#: gnu/installer/steps.scm:242 msgid "" ";; This is an operating system configuration generated\n" ";; by the graphical installer.\n" @@ -1697,98 +1771,117 @@ msgstr "" msgid "Unable to locate path: ~a." msgstr "" -#: gnu/installer/utils.scm:83 +#: gnu/installer/utils.scm:131 #, scheme-format msgid "Press Enter to continue.~%" msgstr "" -#: gnu/installer/utils.scm:108 +#: gnu/installer/utils.scm:150 #, scheme-format -msgid "Command failed with exit code ~a.~%" +msgid "Command ~s exited with value ~a" msgstr "" -#: gnu/machine/ssh.scm:117 +#: gnu/installer/utils.scm:156 +#, scheme-format +msgid "Command ~s killed by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:162 +#, scheme-format +msgid "Command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:167 +#, scheme-format +msgid "Command ~s succeeded" +msgstr "" + +#: gnu/installer/utils.scm:179 +msgid "run-command-in-installer not set" +msgstr "" + +#: gnu/machine/ssh.scm:120 #, scheme-format msgid " without a 'host-key' is deprecated~%" msgstr "" -#: gnu/machine/ssh.scm:192 +#: gnu/machine/ssh.scm:208 #, scheme-format msgid "device '~a' not found: ~a" msgstr "" -#: gnu/machine/ssh.scm:207 +#: gnu/machine/ssh.scm:223 #, scheme-format msgid "no file system with label '~a'" msgstr "" -#: gnu/machine/ssh.scm:226 +#: gnu/machine/ssh.scm:242 #, scheme-format msgid "no file system with UUID '~a'" msgstr "" -#: gnu/machine/ssh.scm:276 +#: gnu/machine/ssh.scm:295 #, scheme-format msgid "missing modules for ~a:~{ ~a~}~%" msgstr "" -#: gnu/machine/ssh.scm:311 +#: gnu/machine/ssh.scm:333 #, scheme-format msgid "incorrect target system ('~a' was given, while the system reports that it is '~a')~%" msgstr "" -#: gnu/machine/ssh.scm:437 +#: gnu/machine/ssh.scm:459 #, scheme-format msgid "no signing key '~a'. have you run 'guix archive --generate-key?'" msgstr "" -#: gnu/machine/ssh.scm:469 +#: gnu/machine/ssh.scm:491 #, scheme-format msgid "failed to switch systems while deploying '~a':~%~{~s ~}" msgstr "" -#: gnu/machine/ssh.scm:477 +#: gnu/machine/ssh.scm:499 #, scheme-format msgid "an error occurred while upgrading services on '~a':~%~{~s ~}~%" msgstr "" -#: gnu/machine/ssh.scm:485 +#: gnu/machine/ssh.scm:507 #, fuzzy, scheme-format msgid "failed to install bootloader on '~a':~%~{~s ~}~%" msgstr "Nepodařilo se spojit s »~a«: ~a~%" -#: gnu/machine/ssh.scm:518 +#: gnu/machine/ssh.scm:540 msgid "could not roll-back machine" msgstr "" -#: gnu/machine/ssh.scm:559 +#: gnu/machine/ssh.scm:581 msgid "" "Provisioning for machines that are accessible over SSH\n" "and have a known host-name. This entails little more than maintaining an SSH\n" "connection to the host." msgstr "" -#: gnu/machine/ssh.scm:569 +#: gnu/machine/ssh.scm:591 #, scheme-format msgid "" "unsupported machine configuration '~a'\n" "for environment of type '~a'" msgstr "" -#: gnu/packages/bootstrap.scm:178 +#: gnu/packages/bootstrap.scm:188 #, scheme-format msgid "could not find bootstrap binary '~a' for system '~a'" msgstr "" -#: gnu/packages/bootstrap.scm:492 +#: gnu/packages/bootstrap.scm:578 msgid "Raw build system with direct store access" msgstr "" -#: gnu/packages/bootstrap.scm:500 +#: gnu/packages/bootstrap.scm:586 msgid "Pre-built Guile for bootstrapping purposes." msgstr "" -#: guix/build/utils.scm:822 +#: guix/build/utils.scm:823 #, scheme-format msgid "'~a~{ ~a~}' exited with status ~a; output follows:~%~%~{ ~a~%~}" msgstr "" @@ -1828,7 +1921,7 @@ msgid "~A: unrecognized option~%" msgstr "~A: Nerozpoznaná volba~%" #: guix/scripts.scm:169 guix/scripts/import.scm:140 -#: guix/scripts/system.scm:1370 +#: guix/scripts/system.scm:1379 #, scheme-format msgid "Did you mean @code{~a}?~%" msgstr "" @@ -1875,7 +1968,7 @@ msgstr "Nepodařilo se vytvořit GC root `~a': ~a~%" #: guix/scripts/build.scm:154 guix/scripts/search.scm:42 #: guix/scripts/show.scm:41 guix/scripts/lint.scm:112 guix/scripts/edit.scm:48 #: guix/scripts/size.scm:246 guix/scripts/graph.scm:553 -#: guix/scripts/repl.scm:80 guix/scripts/style.scm:500 +#: guix/scripts/repl.scm:80 guix/scripts/style.scm:795 msgid "" "\n" " -L, --load-path=DIR prepend DIR to the package module search path" @@ -2030,7 +2123,7 @@ msgid "" " -s, --system=SYSTEM attempt to build for SYSTEM--e.g., \"i686-linux\"" msgstr "" -#: guix/scripts/build.scm:357 guix/scripts/system.scm:1023 +#: guix/scripts/build.scm:357 guix/scripts/system.scm:1026 #: guix/scripts/pack.scm:1329 guix/scripts/archive.scm:97 msgid "" "\n" @@ -2063,13 +2156,13 @@ msgid "" " as a garbage collector root" msgstr "" -#: guix/scripts/build.scm:368 guix/scripts/package.scm:486 +#: guix/scripts/build.scm:368 guix/scripts/package.scm:488 #: guix/scripts/install.scm:37 guix/scripts/remove.scm:36 #: guix/scripts/upgrade.scm:39 guix/scripts/pull.scm:117 -#: guix/scripts/system.scm:1025 guix/scripts/copy.scm:122 -#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:60 +#: guix/scripts/system.scm:1028 guix/scripts/copy.scm:122 +#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:66 #: guix/scripts/archive.scm:99 guix/scripts/environment.scm:123 -#: guix/scripts/home.scm:94 +#: guix/scripts/home.scm:98 msgid "" "\n" " -v, --verbosity=LEVEL use the given verbosity LEVEL" @@ -2091,30 +2184,30 @@ msgid "" msgstr "" #: guix/scripts/build.scm:379 guix/scripts/download.scm:104 -#: guix/scripts/package.scm:504 guix/scripts/install.scm:44 +#: guix/scripts/package.scm:506 guix/scripts/install.scm:44 #: guix/scripts/remove.scm:41 guix/scripts/upgrade.scm:48 #: guix/scripts/search.scm:37 guix/scripts/show.scm:36 guix/scripts/gc.scm:88 #: guix/scripts/git.scm:34 guix/scripts/git/authenticate.scm:110 #: guix/scripts/hash.scm:98 guix/scripts/import.scm:98 #: guix/scripts/import/minetest.scm:46 guix/scripts/import/cran.scm:49 #: guix/scripts/pull.scm:125 guix/scripts/substitute.scm:250 -#: guix/scripts/system.scm:1032 guix/scripts/lint.scm:115 +#: guix/scripts/system.scm:1035 guix/scripts/lint.scm:115 #: guix/scripts/publish.scm:119 guix/scripts/edit.scm:51 #: guix/scripts/size.scm:249 guix/scripts/graph.scm:558 #: guix/scripts/challenge.scm:430 guix/scripts/copy.scm:127 #: guix/scripts/pack.scm:1357 guix/scripts/weather.scm:336 #: guix/scripts/describe.scm:96 guix/scripts/processes.scm:301 -#: guix/scripts/deploy.scm:55 guix/scripts/container.scm:35 +#: guix/scripts/deploy.scm:58 guix/scripts/container.scm:35 #: guix/scripts/container/exec.scm:43 guix/scripts/archive.scm:106 -#: guix/scripts/environment.scm:149 guix/scripts/home.scm:97 +#: guix/scripts/environment.scm:149 guix/scripts/home.scm:101 #: guix/scripts/time-machine.scm:67 guix/scripts/import/cpan.scm:44 #: guix/scripts/import/crate.scm:50 guix/scripts/import/egg.scm:45 #: guix/scripts/import/gem.scm:46 guix/scripts/import/gnu.scm:50 #: guix/scripts/import/go.scm:50 guix/scripts/import/json.scm:52 #: guix/scripts/import/opam.scm:45 guix/scripts/import/pypi.scm:46 #: guix/scripts/import/texlive.scm:45 guix/scripts/refresh.scm:187 -#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:67 -#: guix/scripts/style.scm:509 +#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:69 +#: guix/scripts/style.scm:804 msgid "" "\n" " -h, --help display this help and exit" @@ -2123,29 +2216,29 @@ msgstr "" " -h, --help Ukázat tuto nápovědu a ukončit" #: guix/scripts/build.scm:381 guix/scripts/download.scm:106 -#: guix/scripts/package.scm:506 guix/scripts/install.scm:46 +#: guix/scripts/package.scm:508 guix/scripts/install.scm:46 #: guix/scripts/remove.scm:43 guix/scripts/upgrade.scm:50 #: guix/scripts/search.scm:39 guix/scripts/show.scm:38 guix/scripts/gc.scm:90 #: guix/scripts/git.scm:36 guix/scripts/git/authenticate.scm:112 #: guix/scripts/hash.scm:100 guix/scripts/import.scm:100 #: guix/scripts/import/minetest.scm:50 guix/scripts/import/cran.scm:55 #: guix/scripts/pull.scm:127 guix/scripts/substitute.scm:252 -#: guix/scripts/system.scm:1034 guix/scripts/lint.scm:119 +#: guix/scripts/system.scm:1037 guix/scripts/lint.scm:119 #: guix/scripts/publish.scm:121 guix/scripts/edit.scm:53 #: guix/scripts/size.scm:251 guix/scripts/graph.scm:560 #: guix/scripts/challenge.scm:432 guix/scripts/copy.scm:129 #: guix/scripts/pack.scm:1359 guix/scripts/weather.scm:338 #: guix/scripts/describe.scm:98 guix/scripts/processes.scm:303 -#: guix/scripts/deploy.scm:57 guix/scripts/container.scm:37 +#: guix/scripts/deploy.scm:60 guix/scripts/container.scm:37 #: guix/scripts/container/exec.scm:45 guix/scripts/archive.scm:108 -#: guix/scripts/environment.scm:151 guix/scripts/home.scm:99 +#: guix/scripts/environment.scm:151 guix/scripts/home.scm:103 #: guix/scripts/time-machine.scm:69 guix/scripts/import/cpan.scm:46 #: guix/scripts/import/crate.scm:52 guix/scripts/import/egg.scm:49 #: guix/scripts/import/gem.scm:48 guix/scripts/import/gnu.scm:52 #: guix/scripts/import/json.scm:54 guix/scripts/import/opam.scm:52 #: guix/scripts/import/pypi.scm:50 guix/scripts/import/texlive.scm:47 #: guix/scripts/refresh.scm:189 guix/scripts/repl.scm:85 -#: guix/scripts/shell.scm:69 guix/scripts/style.scm:511 +#: guix/scripts/shell.scm:71 guix/scripts/style.scm:806 msgid "" "\n" " -V, --version display version information and exit" @@ -2383,167 +2476,167 @@ msgstr "Profil »~a« neexistuje~%" msgid "\"bash-minimal\" should be in 'inputs' when '~a' is used" msgstr "" -#: guix/lint.scm:616 +#: guix/lint.scm:614 msgid "no period allowed at the end of the synopsis" msgstr "" -#: guix/lint.scm:630 +#: guix/lint.scm:628 msgid "no article allowed at the beginning of the synopsis" msgstr "" -#: guix/lint.scm:639 +#: guix/lint.scm:637 msgid "synopsis should be less than 80 characters long" msgstr "" -#: guix/lint.scm:648 +#: guix/lint.scm:646 msgid "synopsis should start with an upper-case letter or digit" msgstr "" -#: guix/lint.scm:656 +#: guix/lint.scm:654 msgid "synopsis should not start with the package name" msgstr "" -#: guix/lint.scm:670 +#: guix/lint.scm:668 msgid "Texinfo markup in synopsis is invalid" msgstr "" -#: guix/lint.scm:678 +#: guix/lint.scm:676 msgid "synopsis contains trailing whitespace" msgstr "" -#: guix/lint.scm:695 +#: guix/lint.scm:693 msgid "synopsis should not be empty" msgstr "" -#: guix/lint.scm:705 +#: guix/lint.scm:703 #, fuzzy, scheme-format msgid "invalid synopsis: ~s" msgstr "Neplatná skladba: ~a~%" -#: guix/lint.scm:805 +#: guix/lint.scm:803 #, scheme-format msgid "~a: HTTP GET error for ~a: ~a (~s)~%" msgstr "" -#: guix/lint.scm:815 +#: guix/lint.scm:813 #, fuzzy, scheme-format msgid "~a: host lookup failure: ~a~%" msgstr "~a: Stažení se nezdařilo~%" -#: guix/lint.scm:820 +#: guix/lint.scm:818 #, scheme-format msgid "~a: TLS certificate error: ~a" msgstr "" -#: guix/lint.scm:825 +#: guix/lint.scm:823 #, scheme-format msgid "~a: TLS error in '~a': ~a~%" msgstr "" -#: guix/lint.scm:836 guix/ui.scm:820 guix/scripts/offload.scm:194 +#: guix/lint.scm:834 guix/ui.scm:820 guix/scripts/offload.scm:194 #, scheme-format msgid "~a: ~a~%" msgstr "~a: ~a~%" -#: guix/lint.scm:868 +#: guix/lint.scm:866 #, scheme-format msgid "URI ~a returned suspiciously small file (~a bytes)" msgstr "" -#: guix/lint.scm:877 +#: guix/lint.scm:875 #, scheme-format msgid "permanent redirect from ~a to ~a" msgstr "" -#: guix/lint.scm:883 +#: guix/lint.scm:881 #, scheme-format msgid "invalid permanent redirect from ~a" msgstr "" -#: guix/lint.scm:889 guix/lint.scm:899 +#: guix/lint.scm:887 guix/lint.scm:897 #, scheme-format msgid "URI ~a not reachable: ~a (~s)" msgstr "" -#: guix/lint.scm:905 +#: guix/lint.scm:903 #, fuzzy, scheme-format msgid "URI ~a domain not found: ~a" msgstr "guix: ~a: Příkaz nenalezen~%" -#: guix/lint.scm:911 +#: guix/lint.scm:909 #, scheme-format msgid "URI ~a unreachable: ~a" msgstr "" -#: guix/lint.scm:919 +#: guix/lint.scm:917 #, scheme-format msgid "TLS certificate error: ~a" msgstr "" -#: guix/lint.scm:946 +#: guix/lint.scm:944 #, fuzzy msgid "invalid value for home page" msgstr "Platné hodnoty pro ČINNOST jsou:\n" -#: guix/lint.scm:951 +#: guix/lint.scm:949 #, fuzzy, scheme-format msgid "invalid home page URL: ~s" msgstr "" "\n" "~a stránky: <~a>" -#: guix/lint.scm:988 +#: guix/lint.scm:986 msgid "file names of patches should start with the package name" msgstr "" -#: guix/lint.scm:1008 +#: guix/lint.scm:1006 #, scheme-format msgid "~a: file name is too long, which may break 'make dist'" msgstr "" -#: guix/lint.scm:1029 +#: guix/lint.scm:1027 #, scheme-format msgid "~a: empty patch" msgstr "" -#: guix/lint.scm:1038 +#: guix/lint.scm:1036 #, scheme-format msgid "~a: patch lacks comment and upstream status" msgstr "" -#: guix/lint.scm:1099 +#: guix/lint.scm:1097 #, scheme-format msgid "proposed synopsis: ~s~%" msgstr "" -#: guix/lint.scm:1113 +#: guix/lint.scm:1111 #, scheme-format msgid "proposed description:~% \"~a\"~%" msgstr "" -#: guix/lint.scm:1164 +#: guix/lint.scm:1162 msgid "all the source URIs are unreachable:" msgstr "" -#: guix/lint.scm:1193 +#: guix/lint.scm:1191 msgid "the source file name should contain the package name" msgstr "" -#: guix/lint.scm:1205 +#: guix/lint.scm:1203 msgid "the source URI should not be an autogenerated tarball" msgstr "" -#: guix/lint.scm:1229 +#: guix/lint.scm:1227 #, scheme-format msgid "URL should be 'mirror://~a/~a'" msgstr "" -#: guix/lint.scm:1269 +#: guix/lint.scm:1267 #, fuzzy, scheme-format msgid "while accessing '~a'" msgstr "Nepodařilo se spojit s »~a«: ~a~%" -#: guix/lint.scm:1276 +#: guix/lint.scm:1274 #, scheme-format msgid "URL should be '~a'" msgstr "" @@ -2551,68 +2644,68 @@ msgstr "" #. TRANSLATORS: check and #:tests? are a #. Scheme symbol and keyword respectively #. and should not be translated. -#: guix/lint.scm:1304 +#: guix/lint.scm:1302 msgid "the 'check' phase should respect #:tests?" msgstr "" -#: guix/lint.scm:1322 guix/lint.scm:1333 guix/lint.scm:1341 +#: guix/lint.scm:1320 guix/lint.scm:1331 guix/lint.scm:1339 #, fuzzy, scheme-format msgid "failed to create ~a derivation: ~a" msgstr "Nepodařilo se vytvořit GC root `~a': ~a~%" -#: guix/lint.scm:1327 +#: guix/lint.scm:1325 #, fuzzy, scheme-format msgid "failed to create ~a derivation: ~s" msgstr "Výraz ~s se nepodařilo přečíst: ~s~%" -#: guix/lint.scm:1379 +#: guix/lint.scm:1377 #, scheme-format msgid "propagated inputs ~a and ~a collide" msgstr "" -#: guix/lint.scm:1403 +#: guix/lint.scm:1401 msgid "invalid license field" msgstr "" -#: guix/lint.scm:1410 +#: guix/lint.scm:1408 msgid "while retrieving CVE vulnerabilities" msgstr "" -#: guix/lint.scm:1453 +#: guix/lint.scm:1451 #, scheme-format msgid "probably vulnerable to ~a" msgstr "" -#: guix/lint.scm:1461 +#: guix/lint.scm:1459 #, fuzzy, scheme-format msgid "no updater for ~a" msgstr "Žádný záznam o sestavení pro »~a«~%" -#: guix/lint.scm:1466 guix/lint.scm:1641 +#: guix/lint.scm:1464 guix/lint.scm:1639 #, scheme-format msgid "while retrieving upstream info for '~a'" msgstr "" -#: guix/lint.scm:1475 +#: guix/lint.scm:1473 #, scheme-format msgid "can be upgraded to ~a" msgstr "" -#: guix/lint.scm:1481 +#: guix/lint.scm:1479 #, scheme-format msgid "updater '~a' failed to find upstream releases" msgstr "" -#: guix/lint.scm:1508 +#: guix/lint.scm:1506 #, fuzzy, scheme-format msgid "failed to access Disarchive database at ~a" msgstr "Nepodařilo se spojit s »~a«: ~a~%" -#: guix/lint.scm:1535 +#: guix/lint.scm:1533 msgid "Software Heritage rate limit reached; try again later" msgstr "" -#: guix/lint.scm:1539 +#: guix/lint.scm:1537 #, scheme-format msgid "'~a' returned ~a" msgstr "" @@ -2620,163 +2713,163 @@ msgstr "" #. TRANSLATORS: "Software Heritage" is a proper noun #. that must remain untranslated. See #. . -#: guix/lint.scm:1578 +#: guix/lint.scm:1576 msgid "scheduled Software Heritage archival" msgstr "" -#: guix/lint.scm:1584 +#: guix/lint.scm:1582 msgid "archival rate limit exceeded; try again later" msgstr "" -#: guix/lint.scm:1605 +#: guix/lint.scm:1603 msgid "source not archived on Software Heritage and missing from the Disarchive database" msgstr "" -#: guix/lint.scm:1615 +#: guix/lint.scm:1613 #, scheme-format msgid "Disarchive entry refers to non-existent SWH directory '~a'" msgstr "" -#: guix/lint.scm:1624 +#: guix/lint.scm:1622 #, fuzzy msgid "unsupported source type" msgstr "Nepodporovaný typ souboru" -#: guix/lint.scm:1633 +#: guix/lint.scm:1631 msgid "while connecting to Software Heritage" msgstr "" -#: guix/lint.scm:1650 +#: guix/lint.scm:1648 #, scheme-format msgid "ahead of Stackage LTS version ~a" msgstr "" -#: guix/lint.scm:1667 +#: guix/lint.scm:1665 #, scheme-format msgid "tabulation on line ~a, column ~a" msgstr "" -#: guix/lint.scm:1679 +#: guix/lint.scm:1677 #, scheme-format msgid "trailing white space on line ~a" msgstr "" -#: guix/lint.scm:1693 +#: guix/lint.scm:1691 #, scheme-format msgid "line ~a is way too long (~a characters)" msgstr "" -#: guix/lint.scm:1707 +#: guix/lint.scm:1705 msgid "parentheses feel lonely, move to the previous or next line" msgstr "" -#: guix/lint.scm:1784 +#: guix/lint.scm:1782 msgid "source file not found" msgstr "" -#: guix/lint.scm:1796 +#: guix/lint.scm:1794 msgid "Validate package names" msgstr "" -#: guix/lint.scm:1800 +#: guix/lint.scm:1798 msgid "Check if tests are explicitly enabled" msgstr "" -#: guix/lint.scm:1804 +#: guix/lint.scm:1802 msgid "Validate package descriptions" msgstr "" -#: guix/lint.scm:1808 +#: guix/lint.scm:1806 msgid "Identify inputs that should be native inputs" msgstr "" -#: guix/lint.scm:1812 +#: guix/lint.scm:1810 msgid "Identify inputs that shouldn't be inputs at all" msgstr "" -#: guix/lint.scm:1816 +#: guix/lint.scm:1814 msgid "Identify input labels that do not match package names" msgstr "" -#: guix/lint.scm:1820 +#: guix/lint.scm:1818 msgid "Make sure 'wrap-program' can finds its interpreter." msgstr "" #. TRANSLATORS: is the name of a data type and must not be #. translated. -#: guix/lint.scm:1826 +#: guix/lint.scm:1824 msgid "Make sure the 'license' field is a or a list thereof" msgstr "" -#: guix/lint.scm:1831 +#: guix/lint.scm:1829 msgid "Make sure tests are only run when requested" msgstr "" -#: guix/lint.scm:1835 +#: guix/lint.scm:1833 msgid "Suggest 'mirror://' URLs" msgstr "" -#: guix/lint.scm:1839 +#: guix/lint.scm:1837 msgid "Validate file names of sources" msgstr "" -#: guix/lint.scm:1843 +#: guix/lint.scm:1841 msgid "Check for autogenerated tarballs" msgstr "" -#: guix/lint.scm:1847 +#: guix/lint.scm:1845 msgid "Report failure to compile a package to a derivation" msgstr "" -#: guix/lint.scm:1852 +#: guix/lint.scm:1850 msgid "Report collisions that would occur due to propagated inputs" msgstr "" -#: guix/lint.scm:1857 +#: guix/lint.scm:1855 msgid "Validate file names and availability of patches" msgstr "" -#: guix/lint.scm:1861 +#: guix/lint.scm:1859 msgid "Validate patch headers" msgstr "" -#: guix/lint.scm:1865 +#: guix/lint.scm:1863 msgid "Look for formatting issues in the source" msgstr "" -#: guix/lint.scm:1872 +#: guix/lint.scm:1870 msgid "Validate package synopses" msgstr "" -#: guix/lint.scm:1876 +#: guix/lint.scm:1874 msgid "Validate synopsis & description of GNU packages" msgstr "" -#: guix/lint.scm:1880 +#: guix/lint.scm:1878 msgid "Validate home-page URLs" msgstr "" -#: guix/lint.scm:1884 +#: guix/lint.scm:1882 msgid "Validate source URLs" msgstr "" -#: guix/lint.scm:1888 +#: guix/lint.scm:1886 msgid "Suggest GitHub URLs" msgstr "" -#: guix/lint.scm:1892 +#: guix/lint.scm:1890 msgid "Check the Common Vulnerabilities and Exposures (CVE) database" msgstr "" -#: guix/lint.scm:1897 +#: guix/lint.scm:1895 msgid "Check the package for new upstream releases" msgstr "" -#: guix/lint.scm:1901 +#: guix/lint.scm:1899 msgid "Ensure source code archival on Software Heritage" msgstr "" -#: guix/lint.scm:1905 +#: guix/lint.scm:1903 msgid "Ensure Haskell packages use Stackage LTS versions" msgstr "" @@ -2828,7 +2921,7 @@ msgstr "Nepodporovaný formát kontrolního součtu: ~a~%" msgid "~a: unknown hash algorithm~%" msgstr "~a: Neznámá činnost~%" -#: guix/scripts/download.scm:171 guix/scripts/package.scm:1087 +#: guix/scripts/download.scm:171 guix/scripts/package.scm:1090 #: guix/scripts/pull.scm:758 guix/scripts/publish.scm:1260 #: guix/scripts/discover.scm:136 guix/scripts/time-machine.scm:123 #, scheme-format @@ -2860,17 +2953,17 @@ msgstr "" msgid "no matching generation~%" msgstr "" -#: guix/scripts/package.scm:159 +#: guix/scripts/package.scm:161 #, scheme-format msgid "nothing to be done~%" msgstr "Nic k dělání~%" -#: guix/scripts/package.scm:260 +#: guix/scripts/package.scm:262 #, fuzzy, scheme-format msgid "package '~a' no longer exists~%" msgstr "Profil »~a« neexistuje~%" -#: guix/scripts/package.scm:315 +#: guix/scripts/package.scm:317 #, scheme-format msgid "" "Consider setting the necessary environment\n" @@ -2884,7 +2977,7 @@ msgid "" "Alternately, see @command{guix package --search-paths -p ~s}." msgstr "" -#: guix/scripts/package.scm:361 +#: guix/scripts/package.scm:363 msgid "" ";; This \"manifest\" file can be passed to 'guix package -m' to reproduce\n" ";; the content of your profile. This is \"symbolic\": it only specifies\n" @@ -2893,30 +2986,30 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/package.scm:393 +#: guix/scripts/package.scm:395 #, scheme-format msgid "no provenance information for this profile~%" msgstr "" -#: guix/scripts/package.scm:395 +#: guix/scripts/package.scm:397 msgid "" ";; This channel file can be passed to 'guix pull -C' or to\n" ";; 'guix time-machine -C' to obtain the Guix revision that was\n" ";; used to populate this profile.\n" msgstr "" -#: guix/scripts/package.scm:407 +#: guix/scripts/package.scm:409 #, scheme-format msgid ";; Note: these other commits were also used to install some of the packages in this profile:~%" msgstr "" -#: guix/scripts/package.scm:437 +#: guix/scripts/package.scm:439 msgid "" "Usage: guix package [OPTION]...\n" "Install, remove, or upgrade packages in a single transaction.\n" msgstr "" -#: guix/scripts/package.scm:439 +#: guix/scripts/package.scm:441 #, fuzzy msgid "" "\n" @@ -2926,14 +3019,14 @@ msgstr "" "\n" " -i, --install=PAKET Instalovat BALÍČEK" -#: guix/scripts/package.scm:442 +#: guix/scripts/package.scm:444 msgid "" "\n" " -e, --install-from-expression=EXP\n" " install the package EXP evaluates to" msgstr "" -#: guix/scripts/package.scm:445 +#: guix/scripts/package.scm:447 msgid "" "\n" " -f, --install-from-file=FILE\n" @@ -2941,7 +3034,7 @@ msgid "" " evaluates to" msgstr "" -#: guix/scripts/package.scm:449 +#: guix/scripts/package.scm:451 #, fuzzy msgid "" "\n" @@ -2951,117 +3044,117 @@ msgstr "" "\n" " -r, --remove=PAKET Odstranit BALÍČEK" -#: guix/scripts/package.scm:452 +#: guix/scripts/package.scm:454 msgid "" "\n" " -u, --upgrade[=REGEXP] upgrade all the installed packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:454 +#: guix/scripts/package.scm:456 msgid "" "\n" " -m, --manifest=FILE create a new profile generation with the manifest\n" " from FILE" msgstr "" -#: guix/scripts/package.scm:457 guix/scripts/upgrade.scm:41 +#: guix/scripts/package.scm:459 guix/scripts/upgrade.scm:41 msgid "" "\n" " --do-not-upgrade[=REGEXP] do not upgrade any packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:459 guix/scripts/pull.scm:107 +#: guix/scripts/package.scm:461 guix/scripts/pull.scm:107 msgid "" "\n" " --roll-back roll back to the previous generation" msgstr "" -#: guix/scripts/package.scm:461 +#: guix/scripts/package.scm:463 msgid "" "\n" " --search-paths[=KIND]\n" " display needed environment variable definitions" msgstr "" -#: guix/scripts/package.scm:464 guix/scripts/pull.scm:104 +#: guix/scripts/package.scm:466 guix/scripts/pull.scm:104 msgid "" "\n" " -l, --list-generations[=PATTERN]\n" " list generations matching PATTERN" msgstr "" -#: guix/scripts/package.scm:467 guix/scripts/pull.scm:109 +#: guix/scripts/package.scm:469 guix/scripts/pull.scm:109 msgid "" "\n" " -d, --delete-generations[=PATTERN]\n" " delete generations matching PATTERN" msgstr "" -#: guix/scripts/package.scm:470 guix/scripts/pull.scm:112 +#: guix/scripts/package.scm:472 guix/scripts/pull.scm:112 msgid "" "\n" " -S, --switch-generation=PATTERN\n" " switch to a generation matching PATTERN" msgstr "" -#: guix/scripts/package.scm:473 +#: guix/scripts/package.scm:475 msgid "" "\n" " --export-manifest print a manifest for the chosen profile" msgstr "" -#: guix/scripts/package.scm:475 +#: guix/scripts/package.scm:477 msgid "" "\n" " --export-channels print channels for the chosen profile" msgstr "" -#: guix/scripts/package.scm:477 guix/scripts/install.scm:34 +#: guix/scripts/package.scm:479 guix/scripts/install.scm:34 #: guix/scripts/remove.scm:33 guix/scripts/upgrade.scm:37 msgid "" "\n" " -p, --profile=PROFILE use PROFILE instead of the user's default profile" msgstr "" -#: guix/scripts/package.scm:479 +#: guix/scripts/package.scm:481 msgid "" "\n" " --list-profiles list the user's profiles" msgstr "" -#: guix/scripts/package.scm:482 +#: guix/scripts/package.scm:484 msgid "" "\n" " --allow-collisions do not treat collisions in the profile as an error" msgstr "" -#: guix/scripts/package.scm:484 +#: guix/scripts/package.scm:486 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" msgstr "" -#: guix/scripts/package.scm:489 +#: guix/scripts/package.scm:491 msgid "" "\n" " -s, --search=REGEXP search in synopsis and description using REGEXP" msgstr "" -#: guix/scripts/package.scm:491 +#: guix/scripts/package.scm:493 msgid "" "\n" " -I, --list-installed[=REGEXP]\n" " list installed packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:494 +#: guix/scripts/package.scm:496 msgid "" "\n" " -A, --list-available[=REGEXP]\n" " list available packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:497 +#: guix/scripts/package.scm:499 #, fuzzy msgid "" "\n" @@ -3070,37 +3163,37 @@ msgstr "" "\n" " -i, --install=PAKET Instalovat BALÍČEK" -#: guix/scripts/package.scm:552 +#: guix/scripts/package.scm:554 #, scheme-format msgid "upgrade regexp '~a' looks like a command-line option~%" msgstr "" -#: guix/scripts/package.scm:555 +#: guix/scripts/package.scm:557 #, scheme-format msgid "is this intended?~%" msgstr "" -#: guix/scripts/package.scm:605 +#: guix/scripts/package.scm:607 #, scheme-format msgid "~a: unsupported kind of search path~%" msgstr "" -#: guix/scripts/package.scm:739 +#: guix/scripts/package.scm:741 #, scheme-format msgid "cannot install non-package object: ~s~%" msgstr "" -#: guix/scripts/package.scm:918 +#: guix/scripts/package.scm:920 #, fuzzy, scheme-format msgid "~a~@[@~a~]: package not found~%" msgstr "~a: Balíček nenalezen~%" -#: guix/scripts/package.scm:965 guix/scripts/pull.scm:687 +#: guix/scripts/package.scm:967 guix/scripts/pull.scm:687 #, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "" -#: guix/scripts/package.scm:1060 +#: guix/scripts/package.scm:1062 #, fuzzy, scheme-format #| msgid "nothing to be done~%" msgid "nothing to do~%" @@ -3313,8 +3406,8 @@ msgstr "" "Použití: guix PŘÍKAZ ARGUMENTY …\n" "Spustit PŘÍKAZ s ARGUMENTY.\n" -#: guix/scripts/git.scm:29 guix/scripts/system.scm:945 -#: guix/scripts/container.scm:30 guix/scripts/home.scm:69 +#: guix/scripts/git.scm:29 guix/scripts/system.scm:946 +#: guix/scripts/container.scm:30 guix/scripts/home.scm:70 msgid "The valid values for ACTION are:\n" msgstr "Platné hodnoty pro ČINNOST jsou:\n" @@ -3409,23 +3502,23 @@ msgstr "" "\n" " -r, --recursive Spočítat kontrolní součet SOUBORU rekursivně" -#: guix/scripts/hash.scm:137 +#: guix/scripts/hash.scm:138 #, scheme-format -msgid "'--recursive' is deprecated, use '--serializer' instead~%" +msgid "'--recursive' is deprecated, use '--serializer=nar' instead~%" msgstr "" -#: guix/scripts/hash.scm:152 +#: guix/scripts/hash.scm:153 #, fuzzy, scheme-format msgid "unsupported serializer type: ~a~%" msgstr "Nepodporovaný formát kontrolního součtu: ~a~%" -#: guix/scripts/hash.scm:201 +#: guix/scripts/hash.scm:202 #, fuzzy, scheme-format #| msgid "~a: ~a~%" msgid "~a ~a~%" msgstr "~a: ~a~%" -#: guix/scripts/hash.scm:210 +#: guix/scripts/hash.scm:211 #, fuzzy, scheme-format msgid "no arguments specified~%" msgstr "Nezadán žádný soubor s nastavením~%" @@ -3492,9 +3585,9 @@ msgstr "~a: Neplatné číslo~%" #: guix/scripts/import/minetest.scm:115 guix/scripts/import/cran.scm:120 #: guix/scripts/import/elpa.scm:110 guix/scripts/import/cpan.scm:87 #: guix/scripts/import/crate.scm:103 guix/scripts/import/egg.scm:106 -#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:121 +#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:122 #: guix/scripts/import/hackage.scm:158 guix/scripts/import/json.scm:97 -#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:104 +#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:105 #: guix/scripts/import/stackage.scm:130 guix/scripts/import/texlive.scm:88 #, fuzzy, scheme-format msgid "too few arguments~%" @@ -3503,10 +3596,10 @@ msgstr "Nesprávný počet argumentů~%" #: guix/scripts/import/minetest.scm:117 guix/scripts/import/cran.scm:122 #: guix/scripts/import/elpa.scm:112 guix/scripts/import/cpan.scm:89 #: guix/scripts/import/crate.scm:105 guix/scripts/import/egg.scm:108 -#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:123 +#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:124 #: guix/scripts/import/hackage.scm:149 guix/scripts/import/hackage.scm:160 #: guix/scripts/import/json.scm:99 guix/scripts/import/opam.scm:113 -#: guix/scripts/import/pypi.scm:106 guix/scripts/import/stackage.scm:132 +#: guix/scripts/import/pypi.scm:107 guix/scripts/import/stackage.scm:132 #: guix/scripts/import/texlive.scm:90 #, fuzzy, scheme-format msgid "too many arguments~%" @@ -3530,7 +3623,7 @@ msgid "" " -s, --style=STYLE choose output style, either specification or variable" msgstr "" -#: guix/scripts/import/cran.scm:116 guix/scripts/import/texlive.scm:84 +#: guix/scripts/import/cran.scm:116 #, fuzzy, scheme-format msgid "failed to download description for package '~a'~%" msgstr "Nepodařilo se spojit s »~a«: ~a~%" @@ -3940,27 +4033,27 @@ msgstr "" msgid "the dependency graph of shepherd services" msgstr "" -#: guix/scripts/system.scm:482 guix/scripts/home.scm:453 +#: guix/scripts/system.scm:482 guix/scripts/home.scm:466 #, scheme-format msgid " repository URL: ~a~%" msgstr "" -#: guix/scripts/system.scm:484 guix/scripts/home.scm:455 +#: guix/scripts/system.scm:484 guix/scripts/home.scm:468 #, scheme-format msgid " branch: ~a~%" msgstr "" -#: guix/scripts/system.scm:485 guix/scripts/home.scm:456 +#: guix/scripts/system.scm:485 guix/scripts/home.scm:469 #, scheme-format msgid " commit: ~a~%" msgstr "" -#: guix/scripts/system.scm:505 guix/scripts/home.scm:469 +#: guix/scripts/system.scm:505 guix/scripts/home.scm:482 #, fuzzy, scheme-format msgid " file name: ~a~%" msgstr "Neplatné číslo: ~a~%" -#: guix/scripts/system.scm:506 guix/scripts/home.scm:470 +#: guix/scripts/system.scm:506 guix/scripts/home.scm:483 #, scheme-format msgid " canonical file name: ~a~%" msgstr "" @@ -4001,12 +4094,12 @@ msgstr "" #. TRANSLATORS: Here "channel" is the same terminology as used in #. "guix describe" and "guix pull --channels". -#: guix/scripts/system.scm:536 guix/scripts/home.scm:476 +#: guix/scripts/system.scm:536 guix/scripts/home.scm:489 #, scheme-format msgid " channels:~%" msgstr "" -#: guix/scripts/system.scm:539 guix/scripts/home.scm:479 +#: guix/scripts/system.scm:539 guix/scripts/home.scm:492 #, fuzzy, scheme-format msgid " configuration file: ~a~%" msgstr "Nezadán žádný soubor s nastavením~%" @@ -4058,128 +4151,128 @@ msgstr "" msgid "Failing to do that may downgrade your system!~%" msgstr "" -#: guix/scripts/system.scm:754 guix/scripts/system.scm:863 +#: guix/scripts/system.scm:754 guix/scripts/system.scm:864 #, scheme-format msgid "bootloader successfully installed on '~a'~%" msgstr "" -#: guix/scripts/system.scm:856 +#: guix/scripts/system.scm:857 #, scheme-format msgid "activating system...~%" msgstr "Systém se zapíná …~%" -#: guix/scripts/system.scm:867 +#: guix/scripts/system.scm:868 msgid "" "To complete the upgrade, run 'herd restart SERVICE' to stop,\n" "upgrade, and restart each service that was not automatically restarted.\n" msgstr "" -#: guix/scripts/system.scm:870 +#: guix/scripts/system.scm:871 msgid "Run 'herd status' to view the list of services on your system.\n" msgstr "" -#: guix/scripts/system.scm:874 +#: guix/scripts/system.scm:875 #, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "" -#: guix/scripts/system.scm:894 guix/scripts/graph.scm:437 +#: guix/scripts/system.scm:895 guix/scripts/graph.scm:437 #, fuzzy, scheme-format msgid "~a: unknown backend~%" msgstr "~a: Neznámá činnost~%" -#: guix/scripts/system.scm:931 +#: guix/scripts/system.scm:932 msgid "The available image types are:\n" msgstr "" -#: guix/scripts/system.scm:941 +#: guix/scripts/system.scm:942 msgid "" "Usage: guix system [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the operating system declared in FILE according to ACTION.\n" "Some ACTIONS support additional ARGS.\n" msgstr "" -#: guix/scripts/system.scm:947 +#: guix/scripts/system.scm:948 msgid " search search for existing service types\n" msgstr "" -#: guix/scripts/system.scm:949 +#: guix/scripts/system.scm:950 msgid " reconfigure switch to a new operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:951 +#: guix/scripts/system.scm:952 msgid " roll-back switch to the previous operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:953 +#: guix/scripts/system.scm:954 msgid " describe describe the current system\n" msgstr "" -#: guix/scripts/system.scm:955 +#: guix/scripts/system.scm:956 msgid " list-generations list the system generations\n" msgstr "" -#: guix/scripts/system.scm:957 +#: guix/scripts/system.scm:958 msgid " switch-generation switch to an existing operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:959 +#: guix/scripts/system.scm:960 msgid " delete-generations delete old system generations\n" msgstr "" -#: guix/scripts/system.scm:961 +#: guix/scripts/system.scm:962 msgid " build build the operating system without installing anything\n" msgstr "" -#: guix/scripts/system.scm:963 +#: guix/scripts/system.scm:964 msgid " container build a container that shares the host's store\n" msgstr "" -#: guix/scripts/system.scm:965 +#: guix/scripts/system.scm:966 msgid " vm build a virtual machine image that shares the host's store\n" msgstr "" -#: guix/scripts/system.scm:967 +#: guix/scripts/system.scm:968 msgid " image build a Guix System image\n" msgstr "" -#: guix/scripts/system.scm:969 +#: guix/scripts/system.scm:970 msgid " docker-image build a Docker image\n" msgstr "" -#: guix/scripts/system.scm:971 +#: guix/scripts/system.scm:972 msgid " init initialize a root file system to run GNU\n" msgstr "" -#: guix/scripts/system.scm:973 +#: guix/scripts/system.scm:974 msgid " extension-graph emit the service extension graph in Dot format\n" msgstr "" -#: guix/scripts/system.scm:975 +#: guix/scripts/system.scm:976 msgid " shepherd-graph emit the graph of shepherd services in Dot format\n" msgstr "" -#: guix/scripts/system.scm:979 +#: guix/scripts/system.scm:980 msgid "" "\n" " -d, --derivation return the derivation of the given system" msgstr "" -#: guix/scripts/system.scm:981 +#: guix/scripts/system.scm:982 msgid "" "\n" " -e, --expression=EXPR consider the operating-system EXPR evaluates to\n" " instead of reading FILE, when applicable" msgstr "" -#: guix/scripts/system.scm:984 +#: guix/scripts/system.scm:985 guix/scripts/home.scm:95 msgid "" "\n" " --allow-downgrades for 'reconfigure', allow downgrades to earlier\n" " channel revisions" msgstr "" -#: guix/scripts/system.scm:987 +#: guix/scripts/system.scm:988 msgid "" "\n" " --on-error=STRATEGY\n" @@ -4187,69 +4280,75 @@ msgid "" " or debug) when an error occurs while reading FILE" msgstr "" -#: guix/scripts/system.scm:991 +#: guix/scripts/system.scm:992 msgid "" "\n" " --list-image-types list available image types" msgstr "" -#: guix/scripts/system.scm:993 +#: guix/scripts/system.scm:994 msgid "" "\n" " -t, --image-type=TYPE for 'image', produce an image of TYPE" msgstr "" -#: guix/scripts/system.scm:995 +#: guix/scripts/system.scm:996 msgid "" "\n" " --image-size=SIZE for 'image', produce an image of SIZE" msgstr "" -#: guix/scripts/system.scm:997 +#: guix/scripts/system.scm:998 msgid "" "\n" " --no-bootloader for 'init', do not install a bootloader" msgstr "" -#: guix/scripts/system.scm:999 +#: guix/scripts/system.scm:1000 msgid "" "\n" " --volatile for 'image', make the root file system volatile" msgstr "" -#: guix/scripts/system.scm:1001 +#: guix/scripts/system.scm:1002 +msgid "" +"\n" +" --persistent for 'vm', make the root file system persistent" +msgstr "" + +#: guix/scripts/system.scm:1004 msgid "" "\n" " --label=LABEL for 'image', label disk image with LABEL" msgstr "" -#: guix/scripts/system.scm:1003 guix/scripts/pack.scm:1340 +#: guix/scripts/system.scm:1006 guix/scripts/pack.scm:1340 msgid "" "\n" " --save-provenance save provenance information" msgstr "" -#: guix/scripts/system.scm:1005 +#: guix/scripts/system.scm:1008 msgid "" "\n" " --share=SPEC for 'vm' and 'container', share host file system with\n" " read/write access according to SPEC" msgstr "" -#: guix/scripts/system.scm:1008 +#: guix/scripts/system.scm:1011 msgid "" "\n" " --expose=SPEC for 'vm' and 'container', expose host file system\n" " directory as read-only according to SPEC" msgstr "" -#: guix/scripts/system.scm:1011 +#: guix/scripts/system.scm:1014 msgid "" "\n" " -N, --network for 'container', allow containers to access the network" msgstr "" -#: guix/scripts/system.scm:1013 +#: guix/scripts/system.scm:1016 msgid "" "\n" " -r, --root=FILE for 'vm', 'image', 'container' and 'build',\n" @@ -4257,82 +4356,82 @@ msgid "" " register it as a garbage collector root" msgstr "" -#: guix/scripts/system.scm:1017 +#: guix/scripts/system.scm:1020 msgid "" "\n" " --full-boot for 'vm', make a full boot sequence" msgstr "" -#: guix/scripts/system.scm:1019 +#: guix/scripts/system.scm:1022 msgid "" "\n" " --no-graphic for 'vm', use the tty that we are started in for IO" msgstr "" -#: guix/scripts/system.scm:1021 +#: guix/scripts/system.scm:1024 msgid "" "\n" " --skip-checks skip file system and initrd module safety checks" msgstr "" -#: guix/scripts/system.scm:1028 +#: guix/scripts/system.scm:1031 msgid "" "\n" " --graph-backend=BACKEND\n" " use BACKEND for 'extension-graphs' and 'shepherd-graph'" msgstr "" -#: guix/scripts/system.scm:1180 +#: guix/scripts/system.scm:1187 #, fuzzy, scheme-format msgid "'~a' does not return an operating system or an image~%" msgstr "Profil »~a« neexistuje~%" -#: guix/scripts/system.scm:1204 guix/scripts/home.scm:216 +#: guix/scripts/system.scm:1211 guix/scripts/home.scm:230 #, scheme-format msgid "both file and expression cannot be specified~%" msgstr "" -#: guix/scripts/system.scm:1211 guix/scripts/home.scm:223 +#: guix/scripts/system.scm:1218 guix/scripts/home.scm:237 #, fuzzy, scheme-format msgid "no configuration specified~%" msgstr "Nezadán žádný soubor s nastavením~%" -#: guix/scripts/system.scm:1319 guix/scripts/system.scm:1335 -#: guix/scripts/system.scm:1342 guix/scripts/system.scm:1348 -#: guix/scripts/home.scm:274 guix/scripts/home.scm:296 -#: guix/scripts/home.scm:301 guix/scripts/home.scm:307 -#: guix/scripts/home.scm:314 guix/scripts/import/gnu.scm:100 +#: guix/scripts/system.scm:1328 guix/scripts/system.scm:1344 +#: guix/scripts/system.scm:1351 guix/scripts/system.scm:1357 +#: guix/scripts/home.scm:287 guix/scripts/home.scm:309 +#: guix/scripts/home.scm:314 guix/scripts/home.scm:320 +#: guix/scripts/home.scm:327 guix/scripts/import/gnu.scm:100 #: guix/scripts/offload.scm:836 guix/scripts/offload.scm:848 #, scheme-format msgid "wrong number of arguments~%" msgstr "Nesprávný počet argumentů~%" -#: guix/scripts/system.scm:1324 +#: guix/scripts/system.scm:1333 #, scheme-format msgid "no system generation, nothing to describe~%" msgstr "" -#: guix/scripts/system.scm:1367 guix/scripts/home.scm:337 +#: guix/scripts/system.scm:1376 guix/scripts/home.scm:350 #, scheme-format msgid "~a: unknown action~%" msgstr "~a: Neznámá činnost~%" -#: guix/scripts/system.scm:1387 guix/scripts/home.scm:353 +#: guix/scripts/system.scm:1396 guix/scripts/home.scm:366 #, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "Nesprávný počet argumentů pro činnost »~a«~%" -#: guix/scripts/system.scm:1392 +#: guix/scripts/system.scm:1401 #, fuzzy, scheme-format msgid "guix system: missing command name~%" msgstr "guix: Chybí název příkazu~%" -#: guix/scripts/system.scm:1394 +#: guix/scripts/system.scm:1403 #, fuzzy, scheme-format msgid "Try 'guix system --help' for more information.~%" msgstr "vyvolejte »guix --help« pro obdržení dalších informací.~%" -#: guix/scripts/system/search.scm:93 guix/ui.scm:1541 guix/ui.scm:1559 +#: guix/scripts/system/search.scm:93 guix/ui.scm:1544 guix/ui.scm:1562 msgid "unknown" msgstr "Neznámý" @@ -4732,7 +4831,7 @@ msgstr "" " -h, --help Ukázat tuto nápovědu a ukončit" #: guix/scripts/graph.scm:548 guix/scripts/pack.scm:1325 -#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:502 +#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:797 msgid "" "\n" " -e, --expression=EXPR consider the package EXPR evaluates to" @@ -5335,44 +5434,89 @@ msgid "" " -f, --format=FORMAT display results as normalized record sets" msgstr "" -#: guix/scripts/deploy.scm:51 +#: guix/scripts/deploy.scm:54 msgid "" "Usage: guix deploy [OPTION] FILE...\n" "Perform the deployment specified by FILE.\n" msgstr "" -#: guix/scripts/deploy.scm:108 +#: guix/scripts/deploy.scm:63 +msgid "" +"\n" +" -x, --execute execute the following command on all the machines" +msgstr "" + +#: guix/scripts/deploy.scm:117 #, fuzzy, scheme-format msgid "The following ~d machine will be deployed:~%" msgid_plural "The following ~d machines will be deployed:~%" msgstr[0] "Bude nainstalován následující balíček:~%~{~a~%~}~%" msgstr[1] "Bude nainstalován následující balíček:~%~{~a~%~}~%" -#: guix/scripts/deploy.scm:122 +#: guix/scripts/deploy.scm:131 #, scheme-format msgid "deploying to ~a...~%" msgstr "" -#: guix/scripts/deploy.scm:134 guix/scripts/deploy.scm:138 +#: guix/scripts/deploy.scm:143 guix/scripts/deploy.scm:147 #, fuzzy, scheme-format msgid "failed to deploy ~a: ~a~%" msgstr "Nepodařilo se spojit s »~a«: ~a~%" -#: guix/scripts/deploy.scm:146 +#: guix/scripts/deploy.scm:155 #, scheme-format msgid "rolling back ~a...~%" msgstr "" -#: guix/scripts/deploy.scm:152 +#: guix/scripts/deploy.scm:161 #, scheme-format msgid "successfully deployed ~a~%" msgstr "" -#: guix/scripts/deploy.scm:167 +#: guix/scripts/deploy.scm:212 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command succeeded~%" +msgstr "guix: ~a: Příkaz nenalezen~%" + +#: guix/scripts/deploy.scm:215 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command exited with code ~a~%" +msgstr "guix: ~a: Příkaz nenalezen~%" + +#: guix/scripts/deploy.scm:218 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command stopped with signal ~a~%" +msgstr "guix: ~a: Příkaz nenalezen~%" + +#: guix/scripts/deploy.scm:221 +#, scheme-format +msgid "~a: command terminated with signal ~a~%" +msgstr "" + +#: guix/scripts/deploy.scm:225 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "command output on ~a:~%" +msgstr "guix: ~a: Příkaz nenalezen~%" + +#: guix/scripts/deploy.scm:246 #, scheme-format msgid "missing deployment file argument~%" msgstr "" +#: guix/scripts/deploy.scm:249 +#, scheme-format +msgid "'--' was used by '-x' was not specified~%" +msgstr "" + +#: guix/scripts/deploy.scm:271 +#, scheme-format +msgid "'-x' specified but no command given~%" +msgstr "" + #: guix/gexp.scm:465 #, scheme-format msgid "resolving '~a' relative to current directory~%" @@ -5467,115 +5611,115 @@ msgstr "" msgid "exec failed with status ~d~%" msgstr "" -#: guix/transformations.scm:185 guix/transformations.scm:253 +#: guix/transformations.scm:186 guix/transformations.scm:254 #, scheme-format msgid "invalid replacement specification: ~s" msgstr "" -#: guix/transformations.scm:234 +#: guix/transformations.scm:235 #, scheme-format msgid "the source of ~a is not a Git reference" msgstr "" -#: guix/transformations.scm:337 +#: guix/transformations.scm:338 #, scheme-format msgid "~a: invalid Git URL replacement specification" msgstr "" -#: guix/transformations.scm:415 +#: guix/transformations.scm:416 #, scheme-format msgid "~a: invalid toolchain replacement specification" msgstr "" -#: guix/transformations.scm:517 +#: guix/transformations.scm:518 #, fuzzy msgid "failed to determine which compiler is used" msgstr "Nepodařilo se vytvořit prázdný profil~%" -#: guix/transformations.scm:523 +#: guix/transformations.scm:524 #, fuzzy, scheme-format msgid "failed to determine whether ~a supports ~a" msgstr "Nepodařilo se vytvořit prázdný profil~%" -#: guix/transformations.scm:529 +#: guix/transformations.scm:530 #, scheme-format msgid "compiler ~a does not support micro-architecture ~a" msgstr "" -#: guix/transformations.scm:581 +#: guix/transformations.scm:582 #, fuzzy, scheme-format #| msgid "~a: ~a~%" msgid "tuning ~a for CPU ~a~%" msgstr "~a: ~a~%" -#: guix/transformations.scm:721 +#: guix/transformations.scm:722 #, scheme-format msgid "~a: invalid package patch specification" msgstr "" -#: guix/transformations.scm:744 +#: guix/transformations.scm:745 #, scheme-format msgid "could not determine latest upstream release of '~a'~%" msgstr "" -#: guix/transformations.scm:752 +#: guix/transformations.scm:753 #, scheme-format msgid "cannot authenticate source of '~a', version ~a~%" msgstr "" -#: guix/transformations.scm:833 +#: guix/transformations.scm:840 #, scheme-format msgid "building for ~a instead of ~a, so tuning cannot be guessed~%" msgstr "" -#: guix/transformations.scm:859 +#: guix/transformations.scm:866 #, scheme-format msgid "Available package transformation options:~%" msgstr "" -#: guix/transformations.scm:865 +#: guix/transformations.scm:872 msgid "" "\n" " --with-source=[PACKAGE=]SOURCE\n" " use SOURCE when building the corresponding package" msgstr "" -#: guix/transformations.scm:868 +#: guix/transformations.scm:875 msgid "" "\n" " --with-input=PACKAGE=REPLACEMENT\n" " replace dependency PACKAGE by REPLACEMENT" msgstr "" -#: guix/transformations.scm:871 +#: guix/transformations.scm:878 msgid "" "\n" " --with-graft=PACKAGE=REPLACEMENT\n" " graft REPLACEMENT on packages that refer to PACKAGE" msgstr "" -#: guix/transformations.scm:874 +#: guix/transformations.scm:881 msgid "" "\n" " --with-branch=PACKAGE=BRANCH\n" " build PACKAGE from the latest commit of BRANCH" msgstr "" -#: guix/transformations.scm:877 +#: guix/transformations.scm:884 msgid "" "\n" " --with-commit=PACKAGE=COMMIT\n" " build PACKAGE from COMMIT" msgstr "" -#: guix/transformations.scm:880 +#: guix/transformations.scm:887 msgid "" "\n" " --with-git-url=PACKAGE=URL\n" " build PACKAGE from the repository at URL" msgstr "" -#: guix/transformations.scm:883 +#: guix/transformations.scm:890 #, fuzzy msgid "" "\n" @@ -5585,7 +5729,7 @@ msgstr "" "\n" " -i, --install=PAKET Instalovat BALÍČEK" -#: guix/transformations.scm:886 +#: guix/transformations.scm:893 #, fuzzy msgid "" "\n" @@ -5595,34 +5739,34 @@ msgstr "" "\n" " -i, --install=PAKET Instalovat BALÍČEK" -#: guix/transformations.scm:889 +#: guix/transformations.scm:896 msgid "" "\n" " --with-c-toolchain=PACKAGE=TOOLCHAIN\n" " build PACKAGE and its dependents with TOOLCHAIN" msgstr "" -#: guix/transformations.scm:892 +#: guix/transformations.scm:899 msgid "" "\n" " --with-debug-info=PACKAGE\n" " build PACKAGE and preserve its debug info" msgstr "" -#: guix/transformations.scm:895 +#: guix/transformations.scm:902 msgid "" "\n" " --without-tests=PACKAGE\n" " build PACKAGE without running its tests" msgstr "" -#: guix/transformations.scm:901 +#: guix/transformations.scm:908 msgid "" "\n" " --help-transform list package transformation options not shown here" msgstr "" -#: guix/transformations.scm:950 +#: guix/transformations.scm:957 #, scheme-format msgid "transformation '~a' had no effect on ~a~%" msgstr "" @@ -6119,12 +6263,12 @@ msgstr[1] "Bude nainstalován následující balíček:~%~{~a~%~}~%" msgid "~a: invalid Texinfo markup~%" msgstr "~a: Neplatné číslo~%" -#: guix/ui.scm:1873 +#: guix/ui.scm:1876 #, scheme-format msgid "invalid syntax: ~a~%" msgstr "Neplatná skladba: ~a~%" -#: guix/ui.scm:1882 +#: guix/ui.scm:1885 #, scheme-format msgid "Generation ~a\t~a" msgstr "" @@ -6134,7 +6278,7 @@ msgstr "" #. usual way of presenting dates in your locale. #. See https://www.gnu.org/software/guile/manual/html_node/SRFI_002d19-Date-to-string.html #. for details. -#: guix/ui.scm:1892 +#: guix/ui.scm:1895 #, scheme-format msgid "~b ~d ~Y ~T" msgstr "" @@ -6142,37 +6286,37 @@ msgstr "" #. TRANSLATORS: The word "current" here is an adjective for #. "Generation", as in "current generation". Use the appropriate #. gender where applicable. -#: guix/ui.scm:1898 +#: guix/ui.scm:1901 #, scheme-format msgid "~a\t(current)~%" msgstr "~a\t(aktuální)~%" -#: guix/ui.scm:1932 +#: guix/ui.scm:1935 #, fuzzy, scheme-format msgid "cannot lock profile ~a: ~a~%" msgstr "Nelze přistupovat k »~a«: ~a~%" -#: guix/ui.scm:1934 +#: guix/ui.scm:1937 #, fuzzy, scheme-format msgid "profile ~a is locked by another process~%" msgstr "Profil »~a« neexistuje~%" -#: guix/ui.scm:1963 +#: guix/ui.scm:1966 #, scheme-format msgid "switched from generation ~a to ~a~%" msgstr "" -#: guix/ui.scm:1979 +#: guix/ui.scm:1982 #, scheme-format msgid "deleting ~a~%" msgstr "" -#: guix/ui.scm:2010 +#: guix/ui.scm:2013 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "vyvolejte »guix --help« pro obdržení dalších informací.~%" -#: guix/ui.scm:2102 +#: guix/ui.scm:2105 #, fuzzy #| msgid "" #| "Usage: guix COMMAND ARGS...\n" @@ -6184,7 +6328,7 @@ msgstr "" "Použití: guix PŘÍKAZ ARGUMENTY …\n" "Spustit PŘÍKAZ s ARGUMENTY.\n" -#: guix/ui.scm:2105 +#: guix/ui.scm:2108 #, fuzzy #| msgid "" #| "\n" @@ -6196,7 +6340,7 @@ msgstr "" "\n" " -h, --help Ukázat tuto nápovědu a ukončit" -#: guix/ui.scm:2107 +#: guix/ui.scm:2110 #, fuzzy #| msgid "" #| "\n" @@ -6208,26 +6352,26 @@ msgstr "" "\n" " -V, --version Ukázat informace o verzi a ukončit" -#: guix/ui.scm:2112 +#: guix/ui.scm:2115 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "PŘÍKAZ musí být jeden z níže uvedených podpříkazů:\n" -#: guix/ui.scm:2154 +#: guix/ui.scm:2157 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "guix: ~a: Příkaz nenalezen~%" -#: guix/ui.scm:2156 +#: guix/ui.scm:2159 #, scheme-format msgid "Did you mean @code{~a}?" msgstr "" -#: guix/ui.scm:2190 +#: guix/ui.scm:2193 #, scheme-format msgid "guix: missing command name~%" msgstr "guix: Chybí název příkazu~%" -#: guix/ui.scm:2198 +#: guix/ui.scm:2201 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "guix: Nerozpoznaná volba »~a«~%" @@ -6556,22 +6700,22 @@ msgstr "" msgid "unsupported manifest format" msgstr "Nepodporovaný formát kontrolního součtu: ~a~%" -#: guix/profiles.scm:2242 +#: guix/profiles.scm:2247 #, fuzzy, scheme-format msgid "while creating directory `~a': ~a" msgstr "Adresář s nastavením »~a« se nepodařilo vytvořit: ~a~%" -#: guix/profiles.scm:2247 +#: guix/profiles.scm:2252 #, scheme-format msgid "Please create the @file{~a} directory, with you as the owner." msgstr "" -#: guix/profiles.scm:2256 +#: guix/profiles.scm:2261 #, scheme-format msgid "directory `~a' is not owned by you" msgstr "" -#: guix/profiles.scm:2260 +#: guix/profiles.scm:2265 #, scheme-format msgid "Please change the owner of @file{~a} to user ~s." msgstr "" @@ -7190,11 +7334,16 @@ msgstr "" msgid "'--profile' cannot be used with package options~%" msgstr "" -#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:275 +#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:261 #, scheme-format msgid "no packages specified; creating an empty environment~%" msgstr "" +#: guix/scripts/environment.scm:979 +#, scheme-format +msgid "'--check' is unnecessary when using '--container'; doing nothing~%" +msgstr "" + #: guix/scripts/home/import.scm:179 msgid "" ";; This \"home-environment\" file can be passed to 'guix home reconfigure'\n" @@ -7204,91 +7353,91 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/home.scm:65 +#: guix/scripts/home.scm:66 msgid "" "Usage: guix home [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the home environment declared in FILE according to ACTION.\n" "Some ACTIONS support additional ARGS.\n" msgstr "" -#: guix/scripts/home.scm:71 +#: guix/scripts/home.scm:72 msgid " search search for existing service types\n" msgstr "" -#: guix/scripts/home.scm:73 +#: guix/scripts/home.scm:74 msgid " reconfigure switch to a new home environment configuration\n" msgstr "" -#: guix/scripts/home.scm:75 +#: guix/scripts/home.scm:76 msgid " roll-back switch to the previous home environment configuration\n" msgstr "" -#: guix/scripts/home.scm:77 +#: guix/scripts/home.scm:78 msgid " describe describe the current home environment\n" msgstr "" -#: guix/scripts/home.scm:79 +#: guix/scripts/home.scm:80 msgid " list-generations list the home environment generations\n" msgstr "" -#: guix/scripts/home.scm:81 +#: guix/scripts/home.scm:82 msgid " switch-generation switch to an existing home environment configuration\n" msgstr "" -#: guix/scripts/home.scm:83 +#: guix/scripts/home.scm:84 msgid " delete-generations delete old home environment generations\n" msgstr "" -#: guix/scripts/home.scm:85 +#: guix/scripts/home.scm:86 msgid " build build the home environment without installing anything\n" msgstr "" -#: guix/scripts/home.scm:87 +#: guix/scripts/home.scm:88 msgid " import generates a home environment definition from dotfiles\n" msgstr "" -#: guix/scripts/home.scm:91 +#: guix/scripts/home.scm:92 msgid "" "\n" " -e, --expression=EXPR consider the home-environment EXPR evaluates to\n" " instead of reading FILE, when applicable" msgstr "" -#: guix/scripts/home.scm:196 +#: guix/scripts/home.scm:210 #, fuzzy, scheme-format msgid "'~a' does not return a home environment ~%" msgstr "Profil »~a« neexistuje~%" -#: guix/scripts/home.scm:280 +#: guix/scripts/home.scm:293 #, scheme-format msgid "'~a' populated with all the Home configuration files~%" msgstr "" -#: guix/scripts/home.scm:282 +#: guix/scripts/home.scm:295 #, scheme-format msgid "" "Run @command{guix home reconfigure ~a/home-configuration.scm} to effectively\n" "deploy the home environment described by these files.\n" msgstr "" -#: guix/scripts/home.scm:289 +#: guix/scripts/home.scm:302 #, scheme-format msgid "no home environment generation, nothing to describe~%" msgstr "" -#: guix/scripts/home.scm:358 +#: guix/scripts/home.scm:371 #, fuzzy, scheme-format #| msgid "guix: missing command name~%" msgid "guix home: missing command name~%" msgstr "guix: Chybí název příkazu~%" -#: guix/scripts/home.scm:360 +#: guix/scripts/home.scm:373 #, fuzzy, scheme-format #| msgid "Try `guix --help' for more information.~%" msgid "Try 'guix home --help' for more information.~%" msgstr "vyvolejte »guix --help« pro obdržení dalších informací.~%" -#: guix/scripts/home.scm:528 +#: guix/scripts/home.scm:541 #, scheme-format msgid "cannot switch to home environment generation '~a'~%" msgstr "" @@ -7325,7 +7474,7 @@ msgstr "" #: guix/scripts/import/cpan.scm:83 guix/scripts/import/crate.scm:97 #: guix/scripts/import/egg.scm:100 guix/scripts/import/gem.scm:98 -#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:100 +#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:101 #, scheme-format msgid "failed to download meta-data for package '~a'~%" msgstr "" @@ -7400,7 +7549,7 @@ msgid "" " --pin-versions use the exact versions of a module's dependencies" msgstr "" -#: guix/scripts/import/go.scm:117 +#: guix/scripts/import/go.scm:118 #, fuzzy, scheme-format msgid "failed to download meta-data for module '~a'.~%" msgstr "Jazyk se nepodařilo nainstalovat: ~a~%" @@ -7529,6 +7678,11 @@ msgid "" "Import and convert the Texlive package for PACKAGE-NAME.\n" msgstr "" +#: guix/scripts/import/texlive.scm:84 +#, fuzzy, scheme-format +msgid "failed to import package '~a'~%" +msgstr "Jazyk se nepodařilo nainstalovat: ~a~%" + #: guix/scripts/offload.scm:130 #, scheme-format msgid "The 'system' field is deprecated, please use 'systems' instead.~%" @@ -7968,53 +8122,53 @@ msgstr "" msgid "~a: unknown type of REPL~%" msgstr "~a: Neznámá činnost~%" -#: guix/scripts/shell.scm:46 +#: guix/scripts/shell.scm:48 msgid "" "Usage: guix shell [OPTION] PACKAGES... [-- COMMAND...]\n" "Build an environment that includes PACKAGES and execute COMMAND or an\n" "interactive shell in that environment.\n" msgstr "" -#: guix/scripts/shell.scm:52 +#: guix/scripts/shell.scm:54 msgid "" "\n" " -D, --development include the development inputs of the next package" msgstr "" -#: guix/scripts/shell.scm:54 +#: guix/scripts/shell.scm:56 msgid "" "\n" " -f, --file=FILE add to the environment the package FILE evaluates to" msgstr "" -#: guix/scripts/shell.scm:56 +#: guix/scripts/shell.scm:58 msgid "" "\n" " -q inhibit loading of 'guix.scm' and 'manifest.scm'" msgstr "" -#: guix/scripts/shell.scm:58 +#: guix/scripts/shell.scm:60 msgid "" "\n" " --rebuild-cache rebuild cached environment, if any" msgstr "" -#: guix/scripts/shell.scm:199 +#: guix/scripts/shell.scm:201 #, fuzzy, scheme-format msgid "ignoring invalid file name: '~a'~%" msgstr "Neplatné číslo: ~a~%" -#: guix/scripts/shell.scm:280 +#: guix/scripts/shell.scm:266 #, fuzzy, scheme-format msgid "loading environment from '~a'...~%" msgstr "Stahuje se. Počkejte, prosím …~%" -#: guix/scripts/shell.scm:286 +#: guix/scripts/shell.scm:272 #, scheme-format msgid "not loading '~a' because not authorized to do so~%" msgstr "" -#: guix/scripts/shell.scm:288 +#: guix/scripts/shell.scm:274 #, scheme-format msgid "" "To allow automatic loading of\n" @@ -8026,60 +8180,77 @@ msgid "" "@end example\n" msgstr "" -#: guix/scripts/shell.scm:386 +#: guix/scripts/shell.scm:431 msgid "" "Consider passing the @option{--check} option once\n" "to make sure your shell does not clobber environment variables." msgstr "" -#: guix/scripts/style.scm:241 +#: guix/scripts/style.scm:499 #, fuzzy, scheme-format msgid "~a: complex expression, bailing out~%" msgstr "Podpis není platný s-výraz" -#: guix/scripts/style.scm:259 +#: guix/scripts/style.scm:517 #, scheme-format msgid "~a: input label '~a' does not match package name, bailing out~%" msgstr "" -#: guix/scripts/style.scm:264 +#: guix/scripts/style.scm:522 #, scheme-format msgid "~a: non-trivial input, bailing out~%" msgstr "" -#: guix/scripts/style.scm:288 +#: guix/scripts/style.scm:546 #, fuzzy, scheme-format msgid "~a: input expression is too short~%" msgstr "Podpis není platný s-výraz" -#: guix/scripts/style.scm:380 +#: guix/scripts/style.scm:638 #, fuzzy, scheme-format msgid "~a: unsupported input style, bailing out~%" msgstr "Nepodporovaný formát kontrolního součtu: ~a~%" -#: guix/scripts/style.scm:392 +#: guix/scripts/style.scm:650 #, scheme-format msgid "would be edited~%" msgstr "" -#: guix/scripts/style.scm:482 +#: guix/scripts/style.scm:721 +#, fuzzy, scheme-format +msgid "no definition location for package ~a~%" +msgstr "Nepodařilo se spojit s »~a«: ~a~%" + +#: guix/scripts/style.scm:767 +#, fuzzy, scheme-format +#| msgid "~a: unknown action~%" +msgid "~a: unknown styling~%" +msgstr "~a: Neznámá činnost~%" + +#: guix/scripts/style.scm:774 #, fuzzy, scheme-format msgid "~a: invalid input simplification policy~%" msgstr "~a: Neplatné číslo~%" -#: guix/scripts/style.scm:496 +#: guix/scripts/style.scm:788 msgid "" "Usage: guix style [OPTION]... [PACKAGE]...\n" "Update package definitions to the latest style.\n" msgstr "" -#: guix/scripts/style.scm:498 +#: guix/scripts/style.scm:790 +msgid "" +"\n" +" -S, --styling=RULE apply RULE, a styling rule" +msgstr "" + +#: guix/scripts/style.scm:793 msgid "" "\n" " -n, --dry-run display files that would be edited but do nothing" msgstr "" -#: guix/scripts/style.scm:504 +#: guix/scripts/style.scm:799 msgid "" "\n" " --input-simplification=POLICY\n" @@ -8230,6 +8401,12 @@ msgstr "" msgid "produce debugging output" msgstr "" +#, fuzzy +#~ msgid "" +#~ "Failed to import package ~s.\n" +#~ "reason: ~s.~%" +#~ msgstr "Nepodařilo se spojit s »~a«: ~a~%" + #, fuzzy #~ msgid "Package not found in opam repository: ~a~%" #~ msgstr "~A: Balíček nenalezen pro verzi ~a~%" diff --git a/po/guix/da.po b/po/guix/da.po index 5229d94bcb..e81dc7c456 100644 --- a/po/guix/da.po +++ b/po/guix/da.po @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: guix 1.1.0-pre1\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" "PO-Revision-Date: 2020-03-08 14:10+0200\n" "Last-Translator: joe Hansen \n" "Language-Team: Danish \n" @@ -73,37 +73,37 @@ msgstr "" msgid "Try adding @code{(use-service-modules ~a)}." msgstr "Prøv at tilføje @code{(use-service-modules ~a)}." -#: gnu/packages.scm:96 +#: gnu/packages.scm:97 #, scheme-format msgid "~a: patch not found" msgstr "~a: rettelse blev ikke fundet" -#: gnu/packages.scm:480 gnu/packages.scm:521 +#: gnu/packages.scm:481 gnu/packages.scm:522 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "tvetydig pakkespecifikation »~a«~%" -#: gnu/packages.scm:481 gnu/packages.scm:522 +#: gnu/packages.scm:482 gnu/packages.scm:523 #, scheme-format msgid "choosing ~a@~a from ~a~%" msgstr "vælger ~a@~a fra ~a~%" -#: gnu/packages.scm:486 guix/scripts/package.scm:216 +#: gnu/packages.scm:487 guix/scripts/package.scm:218 #, scheme-format msgid "package '~a' has been superseded by '~a'~%" msgstr "pakken »~a« er blevet efterfulgt af »~a«~%" -#: gnu/packages.scm:493 gnu/packages.scm:510 +#: gnu/packages.scm:494 gnu/packages.scm:511 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A: pakke ikke fundet for version ~a~%" -#: gnu/packages.scm:494 gnu/packages.scm:511 +#: gnu/packages.scm:495 gnu/packages.scm:512 #, scheme-format msgid "~A: unknown package~%" msgstr "~A: ukendt pakke~%" -#: gnu/packages.scm:550 +#: gnu/packages.scm:551 #, scheme-format msgid "package `~a' lacks output `~a'~%" msgstr "pakke »~a« mangler uddata »~a«~%" @@ -318,7 +318,7 @@ msgstr "" # "in turn" skal snarere forstås som "videre" eller "igen". Egentlig # kan det dog udelades -#: gnu/home/services.scm:127 +#: gnu/home/services.scm:128 #, fuzzy #| msgid "" #| "Build the operating system top-level directory, which in\n" @@ -333,7 +333,7 @@ msgstr "" "refererer til alt som operativsystemet behøver: dets kerne,\n" "initrd, systemprofil, opstartsskript og så videre." -#: gnu/home/services.scm:158 +#: gnu/home/services.scm:159 #, scheme-format msgid "" "This is the @dfn{home profile} and can be found in\n" @@ -342,21 +342,21 @@ msgid "" "@code{home-environment} record." msgstr "" -#: gnu/home/services.scm:180 +#: gnu/home/services.scm:181 #, scheme-format msgid "duplicate definition for `~a' environment variable ~%" msgstr "" -#: gnu/home/services.scm:242 +#: gnu/home/services.scm:243 msgid "Set the environment variables." msgstr "" -#: gnu/home/services.scm:253 +#: gnu/home/services.scm:254 #, scheme-format msgid "duplicate '~a' entry for files/" msgstr "" -#: gnu/home/services.scm:277 +#: gnu/home/services.scm:278 #, scheme-format msgid "" "Configuration files for programs that\n" @@ -365,7 +365,7 @@ msgstr "" #. TRANSLATORS: 'on-first-login' is the name of a service and #. shouldn't be translated -#: gnu/home/services.scm:308 +#: gnu/home/services.scm:309 msgid "" "XDG_RUNTIME_DIR doesn't exists, on-first-login script\n" "won't execute anything. You can check if xdg runtime directory exists,\n" @@ -373,13 +373,13 @@ msgid "" "script by running '$HOME/.guix-home/on-first-login'" msgstr "" -#: gnu/home/services.scm:328 +#: gnu/home/services.scm:329 msgid "" "Run gexps on first user login. Can be\n" "extended with one gexp." msgstr "" -#: gnu/home/services.scm:391 +#: gnu/home/services.scm:392 msgid "" "Run gexps to activate the current\n" "generation of home environment and update the state of the home\n" @@ -388,33 +388,33 @@ msgid "" "with one gexp, but many times, and all gexps must be idempotent." msgstr "" -#: gnu/home/services.scm:472 +#: gnu/home/services.scm:473 #, scheme-format msgid "" "Comparing ~a and\n" "~10t~a..." msgstr "" -#: gnu/home/services.scm:474 +#: gnu/home/services.scm:475 #, scheme-format msgid " done (~a)\n" msgstr "" #. TRANSLATORS: 'on-change' is the name of a service type, it #. probably shouldn't be translated. -#: gnu/home/services.scm:483 +#: gnu/home/services.scm:484 msgid "" "Evaluating on-change gexps.\n" "\n" msgstr "" -#: gnu/home/services.scm:485 +#: gnu/home/services.scm:486 msgid "" "On-change gexps evaluation finished.\n" "\n" msgstr "" -#: gnu/home/services.scm:499 +#: gnu/home/services.scm:500 msgid "" "G-expressions to run if the specified files have changed since the\n" "last generation. The extension should be a list of lists where the\n" @@ -422,7 +422,7 @@ msgid "" "changed, and the second element is the G-expression to be evaluated." msgstr "" -#: gnu/home/services.scm:519 +#: gnu/home/services.scm:520 msgid "" "Store provenance information about the home environment in the home\n" "environment itself: the channels used when building the home\n" @@ -705,13 +705,13 @@ msgstr "" msgid "Updater for ELPA packages" msgstr "Opdateringsprogram for OPAM-pakker" -#: guix/import/github.scm:170 +#: guix/import/github.scm:175 #, fuzzy, scheme-format #| msgid "URI ~a unreachable: ~a" msgid "~a is unreachable (~a)~%" msgstr "URI ~a kan ikke nås: ~a" -#: guix/import/github.scm:260 +#: guix/import/github.scm:274 #, fuzzy #| msgid "Updater for GNU packages" msgid "Updater for GitHub packages" @@ -753,13 +753,23 @@ msgstr "~A: pakke ikke fundet for version ~a~%" msgid "failed to determine latest release of GNU ~a" msgstr "kunne ikke bestemme herkomst for pakken ~a~%" -#: guix/import/go.scm:569 +#: guix/import/go.scm:571 #, fuzzy, scheme-format #| msgid "no target of type '~a' for service '~a'" msgid "unsupported vcs type '~a' for package '~a'" msgstr "intet mål af typen »~a« for tjeneste ~a" -#: guix/import/go.scm:647 +#: guix/import/go.scm:594 +#, scheme-format +msgid "version ~a of ~a is not available~%" +msgstr "" + +#: guix/import/go.scm:597 +#, scheme-format +msgid "Pick one of the following available versions:~{ ~a~}." +msgstr "" + +#: guix/import/go.scm:671 #, scheme-format msgid "" "Failed to import package ~s.\n" @@ -767,13 +777,6 @@ msgid "" "This package and its dependencies won't be imported.~%" msgstr "" -#: guix/import/go.scm:656 -#, fuzzy, scheme-format -msgid "" -"Failed to import package ~s.\n" -"reason: ~s.~%" -msgstr "kunne ikke registrere »~a« under »~a«~%" - #: guix/import/minetest.scm:178 #, scheme-format msgid "In ~a: author names must consist of at least a single character.~%" @@ -870,79 +873,101 @@ msgstr "~a: advarsel: pakken »~a« har ingen kilde~%" msgid "Updater for OPAM packages" msgstr "Opdateringsprogram for OPAM-pakker" -#: guix/import/pypi.scm:230 +#: guix/import/pypi.scm:233 msgid "Could not extract requirement name in spec:" msgstr "" -#: guix/import/pypi.scm:290 +#: guix/import/pypi.scm:293 #, scheme-format msgid "parse-requires.txt reached an unexpected condition on line ~a~%" msgstr "" -#: guix/import/pypi.scm:356 +#: guix/import/pypi.scm:359 #, fuzzy, scheme-format msgid "Failed to extract file: ~a from wheel.~%" msgstr "kunne ikke registrere »~a« under »~a«~%" -#: guix/import/pypi.scm:385 +#: guix/import/pypi.scm:388 #, scheme-format msgid "Cannot guess requirements from source archive: no requires.txt file found.~%" msgstr "" -#: guix/import/pypi.scm:390 +#: guix/import/pypi.scm:393 #, scheme-format msgid "Unsupported archive format; cannot determine package dependencies from source archive: ~a~%" msgstr "" -#: guix/import/pypi.scm:489 +#: guix/import/pypi.scm:434 +#, scheme-format +msgid "project name ~a does not appear verbatim in the PyPI URI~%" +msgstr "" + +#: guix/import/pypi.scm:437 +#, scheme-format +msgid "" +"The PyPI URI is: @url{~a}. You should review the\n" +"pypi-uri declaration in the generated package. You may need to replace ~s with\n" +"a substring of the PyPI URI that identifies the package." +msgstr "" + +#: guix/import/pypi.scm:505 #, scheme-format msgid "no source release for pypi package ~a ~a~%" msgstr "" -#: guix/import/pypi.scm:554 +#: guix/import/pypi.scm:509 +#, scheme-format +msgid "" +"This indicates that the\n" +"package is available on PyPI, but only as a \"wheel\" containing binaries, not\n" +"source. To build it from source, refer to the upstream repository at\n" +"@uref{~a}." +msgstr "" + +#: guix/import/pypi.scm:579 #, fuzzy #| msgid "Updater for OPAM packages" msgid "Updater for PyPI packages" msgstr "Opdateringsprogram for OPAM-pakker" -#: gnu/installer.scm:214 +#: gnu/installer.scm:217 msgid "Locale" msgstr "Sprog" -#: gnu/installer.scm:230 gnu/installer/newt/timezone.scm:58 +#: gnu/installer.scm:233 gnu/installer/newt/timezone.scm:58 msgid "Timezone" msgstr "Tidszone" -#: gnu/installer.scm:247 +#: gnu/installer.scm:250 msgid "Keyboard mapping selection" msgstr "Valg af tastaturlayout" -#: gnu/installer.scm:256 gnu/installer/newt/hostname.scm:26 +#: gnu/installer.scm:259 gnu/installer/newt/hostname.scm:26 msgid "Hostname" msgstr "Værtsnavn" -#: gnu/installer.scm:265 +#: gnu/installer.scm:268 msgid "Network selection" msgstr "Netværksvalg" -#: gnu/installer.scm:272 +#: gnu/installer.scm:275 msgid "Substitute server discovery" msgstr "" -#: gnu/installer.scm:279 gnu/installer/newt/user.scm:68 -#: gnu/installer/newt/user.scm:205 +#: gnu/installer.scm:282 gnu/installer/newt/user.scm:67 +#: gnu/installer/newt/user.scm:204 msgid "User creation" msgstr "Brugeroprettelse" -#: gnu/installer.scm:287 +#: gnu/installer.scm:290 msgid "Services" msgstr "Tjenester" -#: gnu/installer.scm:298 +#: gnu/installer.scm:301 msgid "Partitioning" msgstr "Partitionering" -#: gnu/installer.scm:305 gnu/installer/newt/final.scm:53 +#: gnu/installer.scm:308 gnu/installer/newt/final.scm:53 msgid "Configuration file" msgstr "Konfigurationsfil" @@ -954,19 +979,82 @@ msgstr "Kunne ikke bestemme tilstanden for connman." msgid "Unable to find expected regexp." msgstr "Kunne ikke finde forventet regulært udtryk." -#: gnu/installer/newt.scm:52 +#: gnu/installer/newt.scm:58 msgid "Press for installation parameters." msgstr "" -#: gnu/installer/newt.scm:65 -#, scheme-format -msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +#: gnu/installer/newt.scm:68 +#, fuzzy +#| msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. You may choose to exit or create a dump archive." msgstr "Installationsprogrammet har mødt et uventet problem. Tilbageregistreringen er vist nedenfor. Rapport den venligst per e-post til <~a>." -#: gnu/installer/newt.scm:68 +#: gnu/installer/newt.scm:71 msgid "Unexpected problem" msgstr "Der opstod et uventet problem" +#: gnu/installer/newt.scm:75 +msgid "Dump" +msgstr "" + +#: gnu/installer/newt.scm:76 gnu/installer/newt/ethernet.scm:79 +#: gnu/installer/newt/keymap.scm:56 gnu/installer/newt/locale.scm:43 +#: gnu/installer/newt/network.scm:65 gnu/installer/newt/network.scm:82 +#: gnu/installer/newt/page.scm:315 gnu/installer/newt/page.scm:679 +#: gnu/installer/newt/page.scm:763 gnu/installer/newt/page.scm:828 +#: gnu/installer/newt/partition.scm:54 gnu/installer/newt/partition.scm:90 +#: gnu/installer/newt/partition.scm:125 gnu/installer/newt/partition.scm:140 +#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 +#: gnu/installer/newt/partition.scm:706 gnu/installer/newt/partition.scm:764 +#: gnu/installer/newt/partition.scm:775 gnu/installer/newt/services.scm:124 +#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/wifi.scm:206 +msgid "Exit" +msgstr "Afslut" + +#: gnu/installer/newt.scm:82 +#, scheme-format +msgid "The dump archive was created as ~a. Would you like to send this archive to the Guix servers?" +msgstr "" + +#: gnu/installer/newt.scm:84 +msgid "Dump archive created" +msgstr "" + +#: gnu/installer/newt.scm:88 +#, scheme-format +msgid "The dump was uploaded as ~a. Please report it by email to ~a." +msgstr "" + +#: gnu/installer/newt.scm:90 +#, fuzzy +msgid "The dump could not be uploaded." +msgstr "tjensten »~a« blev ikke fundet~%" + +#: gnu/installer/newt.scm:93 +msgid "Dump upload result" +msgstr "" + +#: gnu/installer/newt.scm:132 +#, fuzzy, scheme-format +#| msgid "Command failed with exit code ~a.~%" +msgid "External command ~s exited with code ~a" +msgstr "Kommando mislykkede med afslutningskoden ~a.~%" + +#: gnu/installer/newt.scm:135 +#, scheme-format +msgid "External command ~s terminated by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:138 +#, scheme-format +msgid "External command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:140 +msgid "External command error" +msgstr "" + #: gnu/installer/newt/ethernet.scm:66 msgid "No ethernet service available, please try again." msgstr "Ingen ethernettjeneste tilgængelig, prøv venligst igen." @@ -975,60 +1063,46 @@ msgstr "Ingen ethernettjeneste tilgængelig, prøv venligst igen." msgid "No service" msgstr "Ingen tjeneste" -#: gnu/installer/newt/ethernet.scm:76 +#: gnu/installer/newt/ethernet.scm:74 msgid "Please select an ethernet network." msgstr "Vælg venligst et ethernetnetværk." -#: gnu/installer/newt/ethernet.scm:77 +#: gnu/installer/newt/ethernet.scm:75 msgid "Ethernet connection" msgstr "Ethernetforbindelse" -#: gnu/installer/newt/ethernet.scm:81 gnu/installer/newt/keymap.scm:56 -#: gnu/installer/newt/locale.scm:43 gnu/installer/newt/network.scm:63 -#: gnu/installer/newt/network.scm:84 gnu/installer/newt/page.scm:309 -#: gnu/installer/newt/page.scm:673 gnu/installer/newt/page.scm:758 -#: gnu/installer/newt/partition.scm:56 gnu/installer/newt/partition.scm:91 -#: gnu/installer/newt/partition.scm:126 gnu/installer/newt/partition.scm:141 -#: gnu/installer/newt/partition.scm:638 gnu/installer/newt/partition.scm:661 -#: gnu/installer/newt/partition.scm:707 gnu/installer/newt/partition.scm:765 -#: gnu/installer/newt/partition.scm:776 gnu/installer/newt/services.scm:130 -#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:204 -#: gnu/installer/newt/wifi.scm:206 -msgid "Exit" -msgstr "Afslut" - #: gnu/installer/newt/final.scm:46 #, scheme-format msgid "We're now ready to proceed with the installation! A system configuration file has been generated, it is displayed below. This file will be available as '~a' on the installed system. The new system will be created from this file once you've pressed OK. This will take a few minutes." msgstr "Vi er nu klar til at fortsætte med installationen! En systemkonfigurationsfil er blevet oprettet, den er vist nedenfor. Denne fil vil være tilgængelig som »~a« på det installerede system. Det nye system vil blive oprettet fra denne fil, når du trykker O.k. Dette vil tage nogle få minutter." -#: gnu/installer/newt/final.scm:70 +#: gnu/installer/newt/final.scm:68 msgid "Installation complete" msgstr "Installationen er færdig" -#: gnu/installer/newt/final.scm:71 gnu/installer/newt/parameters.scm:45 +#: gnu/installer/newt/final.scm:69 gnu/installer/newt/parameters.scm:45 #: gnu/installer/newt/welcome.scm:145 msgid "Reboot" msgstr "Genstart" -#: gnu/installer/newt/final.scm:72 +#: gnu/installer/newt/final.scm:70 msgid "Congratulations! Installation is now complete. You may remove the device containing the installation image and press the button to reboot." msgstr "Tillykke! Installationen er nu færdig. Du kan fjerne enheden indeholdende installationsaftrykket og trykke på knappen for at genstarte." -#: gnu/installer/newt/final.scm:86 +#: gnu/installer/newt/final.scm:84 msgid "Installation failed" msgstr "Installation mislykkedes" -#: gnu/installer/newt/final.scm:87 +#: gnu/installer/newt/final.scm:85 msgid "Resume" msgstr "" -#: gnu/installer/newt/final.scm:88 +#: gnu/installer/newt/final.scm:86 #, fuzzy msgid "Restart the installer" msgstr "Genstart installationsprogrammet" -#: gnu/installer/newt/final.scm:89 +#: gnu/installer/newt/final.scm:87 #, fuzzy msgid "The final system installation step failed. You can resume from a specific step, or restart the installer." msgstr "Den sidste trin i systeminstallationen mislykkedes. Du kan prøve det sidste trin, eller genstarte installationsprogrammet." @@ -1060,9 +1134,9 @@ msgstr "" msgid "Installation parameters" msgstr "Installationen er færdig" -#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:74 -#: gnu/installer/newt/locale.scm:63 gnu/installer/newt/locale.scm:78 -#: gnu/installer/newt/locale.scm:94 gnu/installer/newt/partition.scm:595 +#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:72 +#: gnu/installer/newt/locale.scm:61 gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:88 gnu/installer/newt/partition.scm:594 #: gnu/installer/newt/timezone.scm:64 msgid "Back" msgstr "Tilbage" @@ -1083,16 +1157,16 @@ msgstr "" msgid "Please choose your keyboard layout. It will be used during the install process, and for the installed system. Non-Latin layouts can be toggled with Alt+Shift. You can switch to a different layout at any time from the parameters menu." msgstr "" -#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:62 -#: gnu/installer/newt/page.scm:308 +#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/page.scm:314 msgid "Continue" msgstr "Fortsæt" -#: gnu/installer/newt/keymap.scm:67 +#: gnu/installer/newt/keymap.scm:65 msgid "Variant" msgstr "Variant" -#: gnu/installer/newt/keymap.scm:70 +#: gnu/installer/newt/keymap.scm:68 msgid "Please choose a variant for your keyboard layout." msgstr "Vælg venligst en variant for dit tastaturlayout." @@ -1104,35 +1178,35 @@ msgstr "Lokalt sprog" msgid "Choose the language to use for the installation process and for the installed system." msgstr "Vælg sproget til installationsprocessen og for det installerede system." -#: gnu/installer/newt/locale.scm:57 +#: gnu/installer/newt/locale.scm:55 msgid "Locale location" msgstr "Sprogplacering" -#: gnu/installer/newt/locale.scm:60 +#: gnu/installer/newt/locale.scm:58 msgid "Choose a territory for this language." msgstr "Vælg et territorie for dette sprog" -#: gnu/installer/newt/locale.scm:71 +#: gnu/installer/newt/locale.scm:67 msgid "Locale codeset" msgstr "Sprogkodesæt" -#: gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:70 msgid "Choose the locale encoding." msgstr "Vælg sprogkodningen." -#: gnu/installer/newt/locale.scm:86 +#: gnu/installer/newt/locale.scm:80 msgid "Locale modifier" msgstr "Sprogtilvalg" -#: gnu/installer/newt/locale.scm:89 +#: gnu/installer/newt/locale.scm:83 msgid "Choose your locale's modifier. The most frequent modifier is euro. It indicates that you want to use Euro as the currency symbol." msgstr "Vælg dit sprogtilvalg. Det oftest anvendte tilvalg er euro. Det indikerer at du ønsker at bruge Euro som valutasymbol." -#: gnu/installer/newt/locale.scm:190 +#: gnu/installer/newt/locale.scm:181 msgid "No location" msgstr "Ingen placering" -#: gnu/installer/newt/locale.scm:217 +#: gnu/installer/newt/locale.scm:208 msgid "No modifier" msgstr "Intet sprogtilvalg" @@ -1148,277 +1222,283 @@ msgstr "Installationsmenu" msgid "Abort" msgstr "Annuller" -#: gnu/installer/newt/network.scm:61 gnu/installer/newt/network.scm:80 +#: gnu/installer/newt/network.scm:63 gnu/installer/newt/network.scm:78 msgid "Internet access" msgstr "Internetadgang" -#: gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/network.scm:66 msgid "The install process requires Internet access but no network devices were found. Do you want to continue anyway?" msgstr "Installationsprocessen kræver internetadgang men ingen netværksenheder blev fundet. Ønsker du at fortsætte alligevel?" -#: gnu/installer/newt/network.scm:78 +#: gnu/installer/newt/network.scm:76 msgid "The install process requires Internet access. Please select a network device." msgstr "Installationsprocessen kræver internetadgang. Vælg venligt en netværksenhed." -#: gnu/installer/newt/network.scm:103 +#: gnu/installer/newt/network.scm:99 msgid "Powering technology" msgstr "Strømteknologi" -#: gnu/installer/newt/network.scm:104 +#: gnu/installer/newt/network.scm:100 #, scheme-format msgid "Waiting for technology ~a to be powered." msgstr "Venter på at teknologien ~a bliver tændt." -#: gnu/installer/newt/network.scm:128 +#: gnu/installer/newt/network.scm:139 msgid "Checking connectivity" msgstr "Kontroller forbindelse" -#: gnu/installer/newt/network.scm:129 +#: gnu/installer/newt/network.scm:140 msgid "Waiting for Internet access establishment..." msgstr "Venter på at internetadgang etableres ..." -#: gnu/installer/newt/network.scm:139 -msgid "The selected network does not provide access to the Internet, please try again." +#: gnu/installer/newt/network.scm:150 +#, fuzzy +#| msgid "The selected network does not provide access to the Internet, please try again." +msgid "The selected network does not provide access to the Internet and the Guix substitute server, please try again." msgstr "Det valgte netværk tilbyder ikke adgang til internettet, prøv igen." -#: gnu/installer/newt/network.scm:141 gnu/installer/newt/wifi.scm:108 +#: gnu/installer/newt/network.scm:152 gnu/installer/newt/wifi.scm:108 msgid "Connection error" msgstr "Forbindelsesfejl" -#: gnu/installer/newt/page.scm:198 +#: gnu/installer/newt/page.scm:204 #, scheme-format msgid "Connecting to ~a, please wait." msgstr "Forbinder til ~a, vent venligst." -#: gnu/installer/newt/page.scm:199 +#: gnu/installer/newt/page.scm:205 msgid "Connection in progress" msgstr "Forbindelse i gang" -#: gnu/installer/newt/page.scm:218 gnu/installer/newt/user.scm:60 +#: gnu/installer/newt/page.scm:224 gnu/installer/newt/user.scm:59 msgid "Show" msgstr "Vis" -#: gnu/installer/newt/page.scm:225 gnu/installer/newt/page.scm:672 -#: gnu/installer/newt/page.scm:757 gnu/installer/newt/partition.scm:458 -#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 -#: gnu/installer/newt/partition.scm:699 gnu/installer/newt/user.scm:66 -#: gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/page.scm:231 gnu/installer/newt/page.scm:678 +#: gnu/installer/newt/page.scm:762 gnu/installer/newt/partition.scm:457 +#: gnu/installer/newt/partition.scm:636 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:698 gnu/installer/newt/user.scm:65 +#: gnu/installer/newt/user.scm:202 msgid "OK" msgstr "O.k." -#: gnu/installer/newt/page.scm:251 +#: gnu/installer/newt/page.scm:257 msgid "Please enter a non empty input." msgstr "Udfyld venligst" -#: gnu/installer/newt/page.scm:252 gnu/installer/newt/user.scm:123 +#: gnu/installer/newt/page.scm:258 gnu/installer/newt/user.scm:122 msgid "Empty input" msgstr "Tom indtastning" -#: gnu/installer/newt/page.scm:760 +#: gnu/installer/newt/page.scm:765 msgid "Edit" msgstr "Rediger" -#: gnu/installer/newt/partition.scm:47 +#: gnu/installer/newt/page.scm:825 +msgid "Ok" +msgstr "" + +#: gnu/installer/newt/partition.scm:45 msgid "Everything is one partition" msgstr "Alt er på en partition" -#: gnu/installer/newt/partition.scm:48 +#: gnu/installer/newt/partition.scm:46 msgid "Separate /home partition" msgstr "Adskilt /home-partition" -#: gnu/installer/newt/partition.scm:50 +#: gnu/installer/newt/partition.scm:48 msgid "Please select a partitioning scheme." msgstr "Vælg venligst et partitioneringsskema." -#: gnu/installer/newt/partition.scm:51 +#: gnu/installer/newt/partition.scm:49 msgid "Partition scheme" msgstr "Partitioneringsskema" #. TRANSLATORS: The ~{ and ~} format specifiers are used to iterate the list #. of device names of the user partitions that will be formatted. -#: gnu/installer/newt/partition.scm:65 +#: gnu/installer/newt/partition.scm:63 #, fuzzy, scheme-format msgid "We are about to write the configured partition table to the disk and format the partitions listed below. Their data will be lost. Do you wish to continue?~%~%~{ - ~a~%~}" msgstr "Vi er ved at formatere din harddisk. Alle dens data vil gå tabt. Ønsker du at fortsætte?" -#: gnu/installer/newt/partition.scm:71 +#: gnu/installer/newt/partition.scm:69 msgid "Format disk?" msgstr "Formater disk?" -#: gnu/installer/newt/partition.scm:74 +#: gnu/installer/newt/partition.scm:72 msgid "Partition formatting is in progress, please wait." msgstr "Partitioneringsformatering er i gang, vent venligst." -#: gnu/installer/newt/partition.scm:75 +#: gnu/installer/newt/partition.scm:73 msgid "Preparing partitions" msgstr "Forbereder partitioner" -#: gnu/installer/newt/partition.scm:86 -msgid "Please select a disk." -msgstr "Vælg venligst en disk." +#: gnu/installer/newt/partition.scm:84 +msgid "Please select a disk. The installation device as well as the small devices are filtered." +msgstr "" -#: gnu/installer/newt/partition.scm:87 +#: gnu/installer/newt/partition.scm:86 msgid "Disk" msgstr "Disk" -#: gnu/installer/newt/partition.scm:102 +#: gnu/installer/newt/partition.scm:101 msgid "Select a new partition table type. Be careful, all data on the disk will be lost." msgstr "Vælg en ny partitionstabeltype. Vær forsigtig, alle data på disken vil gå tabt." -#: gnu/installer/newt/partition.scm:104 +#: gnu/installer/newt/partition.scm:103 msgid "Partition table" msgstr "Partitionstabel" -#: gnu/installer/newt/partition.scm:121 +#: gnu/installer/newt/partition.scm:120 msgid "Please select a partition type." msgstr "Vælg venligst en partitionstype." -#: gnu/installer/newt/partition.scm:122 +#: gnu/installer/newt/partition.scm:121 msgid "Partition type" msgstr "Partitionstype" -#: gnu/installer/newt/partition.scm:132 +#: gnu/installer/newt/partition.scm:131 msgid "Please select the file-system type for this partition." msgstr "Vælg venligst filsystemtype for denne partition." -#: gnu/installer/newt/partition.scm:133 +#: gnu/installer/newt/partition.scm:132 msgid "File-system type" msgstr "Filsystemtype" -#: gnu/installer/newt/partition.scm:150 +#: gnu/installer/newt/partition.scm:149 msgid "Primary partitions count exceeded." msgstr "Antallet af primære partitioner er for højt." -#: gnu/installer/newt/partition.scm:151 gnu/installer/newt/partition.scm:156 -#: gnu/installer/newt/partition.scm:161 +#: gnu/installer/newt/partition.scm:150 gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:160 msgid "Creation error" msgstr "Oprettelsesfejl" -#: gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:154 msgid "Extended partition creation error." msgstr "Der opstod en fejl ved oprettelse af udvidet partition." -#: gnu/installer/newt/partition.scm:160 +#: gnu/installer/newt/partition.scm:159 msgid "Logical partition creation error." msgstr "Der opstod en fejl ved oprettelse af logisk partition." -#: gnu/installer/newt/partition.scm:174 +#: gnu/installer/newt/partition.scm:173 #, scheme-format msgid "Please enter the password for the encryption of partition ~a (label: ~a)." msgstr "Indtast venligst adgangskoden for krypteringen af partitionen ~a (etiket: ~a)." -#: gnu/installer/newt/partition.scm:176 gnu/installer/newt/wifi.scm:92 +#: gnu/installer/newt/partition.scm:175 gnu/installer/newt/wifi.scm:92 msgid "Password required" msgstr "Adgangskode krævet" -#: gnu/installer/newt/partition.scm:181 +#: gnu/installer/newt/partition.scm:180 #, scheme-format msgid "Please confirm the password for the encryption of partition ~a (label: ~a)." msgstr "Bekræft venligst adgangskoden for krypteringen af partitionen ~a (etiket: ~a)." -#: gnu/installer/newt/partition.scm:183 gnu/installer/newt/user.scm:160 +#: gnu/installer/newt/partition.scm:182 gnu/installer/newt/user.scm:159 msgid "Password confirmation required" msgstr "Adgangskodebekræftelse krævet" -#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 +#: gnu/installer/newt/partition.scm:194 gnu/installer/newt/user.scm:167 msgid "Password mismatch, please try again." msgstr "Forskellige adgangskoder, prøv igen." -#: gnu/installer/newt/partition.scm:196 gnu/installer/newt/user.scm:169 +#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 msgid "Password error" msgstr "Adgangskodefejl" -#: gnu/installer/newt/partition.scm:282 +#: gnu/installer/newt/partition.scm:281 msgid "Please enter the partition gpt name." msgstr "Indtast venligst partitions-gpt-navnet." -#: gnu/installer/newt/partition.scm:283 +#: gnu/installer/newt/partition.scm:282 msgid "Partition name" msgstr "Partitionsnavn" -#: gnu/installer/newt/partition.scm:313 +#: gnu/installer/newt/partition.scm:312 msgid "Please enter the encrypted label" msgstr "Indtast venligst den krypterede etiket" -#: gnu/installer/newt/partition.scm:314 +#: gnu/installer/newt/partition.scm:313 msgid "Encryption label" msgstr "Krypteringsetiket" -#: gnu/installer/newt/partition.scm:331 +#: gnu/installer/newt/partition.scm:330 #, scheme-format msgid "Please enter the size of the partition. The maximum size is ~a." msgstr "Indtast venligst størrelsen for partitionen. Den maksimale størrelse er ~a." -#: gnu/installer/newt/partition.scm:333 +#: gnu/installer/newt/partition.scm:332 msgid "Partition size" msgstr "Partitionsstørrelse" -#: gnu/installer/newt/partition.scm:351 +#: gnu/installer/newt/partition.scm:350 msgid "The percentage can not be superior to 100." msgstr "Procenten kan ikke være større end 100." -#: gnu/installer/newt/partition.scm:352 gnu/installer/newt/partition.scm:357 -#: gnu/installer/newt/partition.scm:362 +#: gnu/installer/newt/partition.scm:351 gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:361 msgid "Size error" msgstr "Størrelsesfejl" -#: gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:355 msgid "The requested size is incorrectly formatted, or too large." msgstr "Den anmodte størrelse er ikke korrekt formateret, eller er for stor." -#: gnu/installer/newt/partition.scm:361 +#: gnu/installer/newt/partition.scm:360 msgid "The request size is superior to the maximum size." msgstr "Den anmodte størrelse er større end tilladt maksimal størrelse." -#: gnu/installer/newt/partition.scm:381 +#: gnu/installer/newt/partition.scm:380 msgid "Please enter the desired mounting point for this partition. Leave this field empty if you don't want to set a mounting point." msgstr "" -#: gnu/installer/newt/partition.scm:383 +#: gnu/installer/newt/partition.scm:382 msgid "Mounting point" msgstr "" -#: gnu/installer/newt/partition.scm:447 +#: gnu/installer/newt/partition.scm:446 #, scheme-format msgid "Creating ~a partition starting at ~a of ~a." msgstr "" -#: gnu/installer/newt/partition.scm:449 +#: gnu/installer/newt/partition.scm:448 #, scheme-format msgid "You are currently editing partition ~a." msgstr "" -#: gnu/installer/newt/partition.scm:452 +#: gnu/installer/newt/partition.scm:451 msgid "Partition creation" msgstr "" -#: gnu/installer/newt/partition.scm:453 +#: gnu/installer/newt/partition.scm:452 msgid "Partition edit" msgstr "" -#: gnu/installer/newt/partition.scm:634 +#: gnu/installer/newt/partition.scm:633 #, scheme-format msgid "Are you sure you want to delete everything on disk ~a?" msgstr "" -#: gnu/installer/newt/partition.scm:636 +#: gnu/installer/newt/partition.scm:635 msgid "Delete disk" msgstr "" -#: gnu/installer/newt/partition.scm:651 +#: gnu/installer/newt/partition.scm:650 msgid "You cannot delete a free space area." msgstr "" -#: gnu/installer/newt/partition.scm:652 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:651 gnu/installer/newt/partition.scm:658 msgid "Delete partition" msgstr "Slet partition" -#: gnu/installer/newt/partition.scm:657 +#: gnu/installer/newt/partition.scm:656 #, scheme-format msgid "Are you sure you want to delete partition ~a?" msgstr "Er du sikker på, at du ønsker at slette partitionen ~a?" -#: gnu/installer/newt/partition.scm:674 +#: gnu/installer/newt/partition.scm:673 msgid "" "You can change a disk's partition table by selecting it and pressing ENTER. You can also edit a partition by selecting it and pressing ENTER, or remove it by pressing DELETE. To create a new partition, select a free space area and press ENTER.\n" "\n" @@ -1428,55 +1508,55 @@ msgstr "" "\n" "Mindst en partition skal have sit monteringspunkt angivet som »/«." -#: gnu/installer/newt/partition.scm:680 +#: gnu/installer/newt/partition.scm:679 #, scheme-format msgid "This is the proposed partitioning. It is still possible to edit it or to go back to install menu by pressing the Exit button.~%~%" msgstr "Dette er den foreslåede partitionering. Det er stadig muligt at redigere den eller gå tilbage til installationsmenuen ved at trykke på Afslut-knappen.~%~%" -#: gnu/installer/newt/partition.scm:690 +#: gnu/installer/newt/partition.scm:689 msgid "Guided partitioning" msgstr "Partitionering med guide" -#: gnu/installer/newt/partition.scm:691 +#: gnu/installer/newt/partition.scm:690 msgid "Manual partitioning" msgstr "Manuel partitionering" -#: gnu/installer/newt/partition.scm:716 +#: gnu/installer/newt/partition.scm:715 msgid "No root mount point found." msgstr "Ingen rodmonteringspunkt fundet." -#: gnu/installer/newt/partition.scm:717 +#: gnu/installer/newt/partition.scm:716 msgid "Missing mount point" msgstr "Manglende monteringspunkt" -#: gnu/installer/newt/partition.scm:721 +#: gnu/installer/newt/partition.scm:720 #, scheme-format msgid "Cannot read the ~a partition UUID. You may need to format it." msgstr "" -#: gnu/installer/newt/partition.scm:724 +#: gnu/installer/newt/partition.scm:723 #, fuzzy #| msgid "Preparing partitions" msgid "Wrong partition format" msgstr "Forbereder partitioner" -#: gnu/installer/newt/partition.scm:755 +#: gnu/installer/newt/partition.scm:754 msgid "Guided - using the entire disk" msgstr "Guide - brug af hele disken" -#: gnu/installer/newt/partition.scm:756 +#: gnu/installer/newt/partition.scm:755 msgid "Guided - using the entire disk with encryption" msgstr "Guide - brug af hele disken med kryptering" -#: gnu/installer/newt/partition.scm:757 +#: gnu/installer/newt/partition.scm:756 msgid "Manual" msgstr "Manuelt" -#: gnu/installer/newt/partition.scm:759 +#: gnu/installer/newt/partition.scm:758 msgid "Please select a partitioning method." msgstr "Vælg venligst en partitioneringsmetode." -#: gnu/installer/newt/partition.scm:760 +#: gnu/installer/newt/partition.scm:759 msgid "Partitioning method" msgstr "Partitioneringsmetode" @@ -1489,41 +1569,41 @@ msgstr "Vælg venligst skrivebordsmiljøerne du ønsker at installere. Hvis du v msgid "Desktop environment" msgstr "Skrivebordsmiljø" -#: gnu/installer/newt/services.scm:59 +#: gnu/installer/newt/services.scm:57 msgid "You can now select networking services to run on your system." msgstr "Du kan nu vælge netværkstjenester for dit system." -#: gnu/installer/newt/services.scm:61 +#: gnu/installer/newt/services.scm:59 msgid "Network service" msgstr "Netværkstjeneste" -#: gnu/installer/newt/services.scm:79 +#: gnu/installer/newt/services.scm:75 #, fuzzy #| msgid "You can now select networking services to run on your system." msgid "You can now select the CUPS printing service to run on your system." msgstr "Du kan nu vælge netværkstjenester for dit system." -#: gnu/installer/newt/services.scm:81 +#: gnu/installer/newt/services.scm:77 msgid "Printing and document services" msgstr "" -#: gnu/installer/newt/services.scm:100 +#: gnu/installer/newt/services.scm:94 #, fuzzy #| msgid "No service" msgid "Console services" msgstr "Ingen tjeneste" -#: gnu/installer/newt/services.scm:101 +#: gnu/installer/newt/services.scm:95 #, fuzzy #| msgid "You can now select networking services to run on your system." msgid "Select miscellaneous services to run on your non-graphical system." msgstr "Du kan nu vælge netværkstjenester for dit system." -#: gnu/installer/newt/services.scm:115 +#: gnu/installer/newt/services.scm:109 msgid "Network management" msgstr "Netværkshåndtering" -#: gnu/installer/newt/services.scm:118 +#: gnu/installer/newt/services.scm:112 msgid "" "Choose the method to manage network connections.\n" "\n" @@ -1556,57 +1636,57 @@ msgstr "" msgid "Please select a timezone." msgstr "Vælg venligst en tidszone." -#: gnu/installer/newt/user.scm:45 +#: gnu/installer/newt/user.scm:44 msgid "Name" msgstr "Kaldenavn" -#: gnu/installer/newt/user.scm:47 +#: gnu/installer/newt/user.scm:46 msgid "Real name" msgstr "Navn" -#: gnu/installer/newt/user.scm:49 +#: gnu/installer/newt/user.scm:48 msgid "Home directory" msgstr "Hjemmemappe" -#: gnu/installer/newt/user.scm:51 +#: gnu/installer/newt/user.scm:50 msgid "Password" msgstr "Adgangskode" -#: gnu/installer/newt/user.scm:122 +#: gnu/installer/newt/user.scm:121 msgid "Empty inputs are not allowed." msgstr "Tomme indtastninger er ikke tilladt" -#: gnu/installer/newt/user.scm:159 +#: gnu/installer/newt/user.scm:158 msgid "Please confirm the password." msgstr "Bekræft venligst adgangskoden." #. TRANSLATORS: Leave "root" untranslated: it refers to the name of the #. system administrator account. -#: gnu/installer/newt/user.scm:176 +#: gnu/installer/newt/user.scm:175 msgid "Please choose a password for the system administrator (\"root\")." msgstr "Vælg venlgist en adgangskode for systemadministratoren (»root«)." -#: gnu/installer/newt/user.scm:178 +#: gnu/installer/newt/user.scm:177 msgid "System administrator password" msgstr "Adgangskode for systemadministratoren" -#: gnu/installer/newt/user.scm:191 +#: gnu/installer/newt/user.scm:190 msgid "Please add at least one user to system using the 'Add' button." msgstr "Tilføj mindst en bruger til systemet via knappen »Tilføj«." -#: gnu/installer/newt/user.scm:194 +#: gnu/installer/newt/user.scm:193 msgid "Add" msgstr "Tilføj" -#: gnu/installer/newt/user.scm:195 +#: gnu/installer/newt/user.scm:194 msgid "Delete" msgstr "Slet" -#: gnu/installer/newt/user.scm:255 +#: gnu/installer/newt/user.scm:254 msgid "Please create at least one user." msgstr "Opret venligst mindst en bruger" -#: gnu/installer/newt/user.scm:256 +#: gnu/installer/newt/user.scm:255 msgid "No user" msgstr "Ingen bruger" @@ -1682,60 +1762,60 @@ msgstr "Intet wifi registreret" msgid "Wifi" msgstr "Wifi" -#: gnu/installer/parted.scm:433 gnu/installer/parted.scm:470 +#: gnu/installer/parted.scm:455 gnu/installer/parted.scm:492 msgid "Free space" msgstr "Ledig plads" -#: gnu/installer/parted.scm:559 +#: gnu/installer/parted.scm:581 #, fuzzy, scheme-format msgid "Name: ~a" msgstr "Kaldenavn" -#: gnu/installer/parted.scm:560 gnu/installer/parted.scm:606 +#: gnu/installer/parted.scm:582 gnu/installer/parted.scm:628 msgid "None" msgstr "" -#: gnu/installer/parted.scm:565 +#: gnu/installer/parted.scm:587 #, scheme-format msgid "Type: ~a" msgstr "" -#: gnu/installer/parted.scm:569 +#: gnu/installer/parted.scm:591 #, fuzzy, scheme-format msgid "File system type: ~a" msgstr "Filsystemtype" -#: gnu/installer/parted.scm:575 +#: gnu/installer/parted.scm:597 #, scheme-format msgid "Bootable flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:579 +#: gnu/installer/parted.scm:601 #, scheme-format msgid "ESP flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:585 +#: gnu/installer/parted.scm:607 #, scheme-format msgid "Size: ~a" msgstr "" -#: gnu/installer/parted.scm:591 +#: gnu/installer/parted.scm:613 #, scheme-format msgid "Encryption: ~:[No~a~;Yes (label '~a')~]" msgstr "" -#: gnu/installer/parted.scm:597 +#: gnu/installer/parted.scm:619 #, scheme-format msgid "Format the partition? ~:[No~;Yes~]" msgstr "" -#: gnu/installer/parted.scm:603 +#: gnu/installer/parted.scm:625 #, fuzzy, scheme-format msgid "Mount point: ~a" msgstr "Manglende monteringspunkt" -#: gnu/installer/parted.scm:1466 +#: gnu/installer/parted.scm:1477 #, scheme-format msgid "Device ~a is still in use." msgstr "Enheden ~a er stadig i brug." @@ -1779,7 +1859,7 @@ msgstr "" #. TRANSLATORS: This is a comment within a Scheme file. Each line must #. start with ";; " (two semicolons and a space). Please keep line #. length below 60 characters. -#: gnu/installer/steps.scm:252 +#: gnu/installer/steps.scm:242 msgid "" ";; This is an operating system configuration generated\n" ";; by the graphical installer.\n" @@ -1790,72 +1870,92 @@ msgstr "" msgid "Unable to locate path: ~a." msgstr "Kan ikke lokalisere stien: ~a." -#: gnu/installer/utils.scm:83 +#: gnu/installer/utils.scm:131 #, scheme-format msgid "Press Enter to continue.~%" msgstr "Tryk Retur for at fortsætte.~%" -#: gnu/installer/utils.scm:108 -#, scheme-format -msgid "Command failed with exit code ~a.~%" +#: gnu/installer/utils.scm:150 +#, fuzzy, scheme-format +#| msgid "Command failed with exit code ~a.~%" +msgid "Command ~s exited with value ~a" msgstr "Kommando mislykkede med afslutningskoden ~a.~%" -#: gnu/machine/ssh.scm:117 +#: gnu/installer/utils.scm:156 +#, scheme-format +msgid "Command ~s killed by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:162 +#, scheme-format +msgid "Command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:167 +#, scheme-format +msgid "Command ~s succeeded" +msgstr "" + +#: gnu/installer/utils.scm:179 +msgid "run-command-in-installer not set" +msgstr "" + +#: gnu/machine/ssh.scm:120 #, scheme-format msgid " without a 'host-key' is deprecated~%" msgstr " uden en »host-key« er forældet~%" -#: gnu/machine/ssh.scm:192 +#: gnu/machine/ssh.scm:208 #, scheme-format msgid "device '~a' not found: ~a" msgstr "enheden »~a« blev ikke fundet: ~a" -#: gnu/machine/ssh.scm:207 +#: gnu/machine/ssh.scm:223 #, scheme-format msgid "no file system with label '~a'" msgstr "intet filsystem med etiketten »~a«" -#: gnu/machine/ssh.scm:226 +#: gnu/machine/ssh.scm:242 #, scheme-format msgid "no file system with UUID '~a'" msgstr "intet filsystem med UUID »~a«" -#: gnu/machine/ssh.scm:276 +#: gnu/machine/ssh.scm:295 #, fuzzy, scheme-format msgid "missing modules for ~a:~{ ~a~}~%" msgstr "~a manglende moduler ~{ ~a~}~%" -#: gnu/machine/ssh.scm:311 +#: gnu/machine/ssh.scm:333 #, scheme-format msgid "incorrect target system ('~a' was given, while the system reports that it is '~a')~%" msgstr "målsystem er ukorrekt (»~a« blev angivet, mens systemet rapporterer at det er »~a«)~%" -#: gnu/machine/ssh.scm:437 +#: gnu/machine/ssh.scm:459 #, scheme-format msgid "no signing key '~a'. have you run 'guix archive --generate-key?'" msgstr "ingen underskriftsnøgle »~a« Har du afviklet »guix archive --generate-key?«" -#: gnu/machine/ssh.scm:469 +#: gnu/machine/ssh.scm:491 #, scheme-format msgid "failed to switch systems while deploying '~a':~%~{~s ~}" msgstr "" -#: gnu/machine/ssh.scm:477 +#: gnu/machine/ssh.scm:499 #, scheme-format msgid "an error occurred while upgrading services on '~a':~%~{~s ~}~%" msgstr "" -#: gnu/machine/ssh.scm:485 +#: gnu/machine/ssh.scm:507 #, fuzzy, scheme-format #| msgid "failed to install bootloader ~a~%" msgid "failed to install bootloader on '~a':~%~{~s ~}~%" msgstr "kunne ikke installere opstartsindlæseren ~a~%" -#: gnu/machine/ssh.scm:518 +#: gnu/machine/ssh.scm:540 msgid "could not roll-back machine" msgstr "kunne ikke rulle maskinen tilbage" -#: gnu/machine/ssh.scm:559 +#: gnu/machine/ssh.scm:581 msgid "" "Provisioning for machines that are accessible over SSH\n" "and have a known host-name. This entails little more than maintaining an SSH\n" @@ -1865,7 +1965,7 @@ msgstr "" "og har et kendt værtsnavn. Dette medfører lidt mere end vedligeholdelse af en\n" "SSH-forbindelse til værten." -#: gnu/machine/ssh.scm:569 +#: gnu/machine/ssh.scm:591 #, scheme-format msgid "" "unsupported machine configuration '~a'\n" @@ -1874,20 +1974,20 @@ msgstr "" "Maskinkonfigurationen »~a« er ikke understøttet\n" "for et miljø af typen »~a«" -#: gnu/packages/bootstrap.scm:178 +#: gnu/packages/bootstrap.scm:188 #, scheme-format msgid "could not find bootstrap binary '~a' for system '~a'" msgstr "kunne ikke finde bootstraps binære »~a« for system »~a«" -#: gnu/packages/bootstrap.scm:492 +#: gnu/packages/bootstrap.scm:578 msgid "Raw build system with direct store access" msgstr "Råt kompileringssystem med direkte lageradgang" -#: gnu/packages/bootstrap.scm:500 +#: gnu/packages/bootstrap.scm:586 msgid "Pre-built Guile for bootstrapping purposes." msgstr "Forhåndskompileret Guile til bootstrapping-formål." -#: guix/build/utils.scm:822 +#: guix/build/utils.scm:823 #, scheme-format msgid "'~a~{ ~a~}' exited with status ~a; output follows:~%~%~{ ~a~%~}" msgstr "»~a~{ ~a~}« afsluttede med status ~a; efterfølgende uddata:~%~%~{ ~a~%~}" @@ -1927,7 +2027,7 @@ msgid "~A: unrecognized option~%" msgstr "~A: ikke genkendt tilvalg~%" #: guix/scripts.scm:169 guix/scripts/import.scm:140 -#: guix/scripts/system.scm:1370 +#: guix/scripts/system.scm:1379 #, fuzzy, scheme-format msgid "Did you mean @code{~a}?~%" msgstr "Glemte du @code{(use-modules ~a)}?" @@ -1982,7 +2082,7 @@ msgstr "kunne ikke oprette GC-root »~a«: ~a~%" #: guix/scripts/build.scm:154 guix/scripts/search.scm:42 #: guix/scripts/show.scm:41 guix/scripts/lint.scm:112 guix/scripts/edit.scm:48 #: guix/scripts/size.scm:246 guix/scripts/graph.scm:553 -#: guix/scripts/repl.scm:80 guix/scripts/style.scm:500 +#: guix/scripts/repl.scm:80 guix/scripts/style.scm:795 msgid "" "\n" " -L, --load-path=DIR prepend DIR to the package module search path" @@ -2193,7 +2293,7 @@ msgstr "" "\n" " -s, --system=SYSTEM forsøger at kompilere for SYSTEM--f.eks. »i686-linux«" -#: guix/scripts/build.scm:357 guix/scripts/system.scm:1023 +#: guix/scripts/build.scm:357 guix/scripts/system.scm:1026 #: guix/scripts/pack.scm:1329 guix/scripts/archive.scm:97 msgid "" "\n" @@ -2238,13 +2338,13 @@ msgstr "" " -r, --root=FIL gør FIL til en symbolsk henvisning for resultatet, og\n" " registrer den som en affaldsindsamlerroot" -#: guix/scripts/build.scm:368 guix/scripts/package.scm:486 +#: guix/scripts/build.scm:368 guix/scripts/package.scm:488 #: guix/scripts/install.scm:37 guix/scripts/remove.scm:36 #: guix/scripts/upgrade.scm:39 guix/scripts/pull.scm:117 -#: guix/scripts/system.scm:1025 guix/scripts/copy.scm:122 -#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:60 +#: guix/scripts/system.scm:1028 guix/scripts/copy.scm:122 +#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:66 #: guix/scripts/archive.scm:99 guix/scripts/environment.scm:123 -#: guix/scripts/home.scm:94 +#: guix/scripts/home.scm:98 msgid "" "\n" " -v, --verbosity=LEVEL use the given verbosity LEVEL" @@ -2269,30 +2369,30 @@ msgstr "" " --log-file returner logfilnavnen for de givne derivater" #: guix/scripts/build.scm:379 guix/scripts/download.scm:104 -#: guix/scripts/package.scm:504 guix/scripts/install.scm:44 +#: guix/scripts/package.scm:506 guix/scripts/install.scm:44 #: guix/scripts/remove.scm:41 guix/scripts/upgrade.scm:48 #: guix/scripts/search.scm:37 guix/scripts/show.scm:36 guix/scripts/gc.scm:88 #: guix/scripts/git.scm:34 guix/scripts/git/authenticate.scm:110 #: guix/scripts/hash.scm:98 guix/scripts/import.scm:98 #: guix/scripts/import/minetest.scm:46 guix/scripts/import/cran.scm:49 #: guix/scripts/pull.scm:125 guix/scripts/substitute.scm:250 -#: guix/scripts/system.scm:1032 guix/scripts/lint.scm:115 +#: guix/scripts/system.scm:1035 guix/scripts/lint.scm:115 #: guix/scripts/publish.scm:119 guix/scripts/edit.scm:51 #: guix/scripts/size.scm:249 guix/scripts/graph.scm:558 #: guix/scripts/challenge.scm:430 guix/scripts/copy.scm:127 #: guix/scripts/pack.scm:1357 guix/scripts/weather.scm:336 #: guix/scripts/describe.scm:96 guix/scripts/processes.scm:301 -#: guix/scripts/deploy.scm:55 guix/scripts/container.scm:35 +#: guix/scripts/deploy.scm:58 guix/scripts/container.scm:35 #: guix/scripts/container/exec.scm:43 guix/scripts/archive.scm:106 -#: guix/scripts/environment.scm:149 guix/scripts/home.scm:97 +#: guix/scripts/environment.scm:149 guix/scripts/home.scm:101 #: guix/scripts/time-machine.scm:67 guix/scripts/import/cpan.scm:44 #: guix/scripts/import/crate.scm:50 guix/scripts/import/egg.scm:45 #: guix/scripts/import/gem.scm:46 guix/scripts/import/gnu.scm:50 #: guix/scripts/import/go.scm:50 guix/scripts/import/json.scm:52 #: guix/scripts/import/opam.scm:45 guix/scripts/import/pypi.scm:46 #: guix/scripts/import/texlive.scm:45 guix/scripts/refresh.scm:187 -#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:67 -#: guix/scripts/style.scm:509 +#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:69 +#: guix/scripts/style.scm:804 msgid "" "\n" " -h, --help display this help and exit" @@ -2301,29 +2401,29 @@ msgstr "" " -h, --help vis denne hjælpetekst og afslut" #: guix/scripts/build.scm:381 guix/scripts/download.scm:106 -#: guix/scripts/package.scm:506 guix/scripts/install.scm:46 +#: guix/scripts/package.scm:508 guix/scripts/install.scm:46 #: guix/scripts/remove.scm:43 guix/scripts/upgrade.scm:50 #: guix/scripts/search.scm:39 guix/scripts/show.scm:38 guix/scripts/gc.scm:90 #: guix/scripts/git.scm:36 guix/scripts/git/authenticate.scm:112 #: guix/scripts/hash.scm:100 guix/scripts/import.scm:100 #: guix/scripts/import/minetest.scm:50 guix/scripts/import/cran.scm:55 #: guix/scripts/pull.scm:127 guix/scripts/substitute.scm:252 -#: guix/scripts/system.scm:1034 guix/scripts/lint.scm:119 +#: guix/scripts/system.scm:1037 guix/scripts/lint.scm:119 #: guix/scripts/publish.scm:121 guix/scripts/edit.scm:53 #: guix/scripts/size.scm:251 guix/scripts/graph.scm:560 #: guix/scripts/challenge.scm:432 guix/scripts/copy.scm:129 #: guix/scripts/pack.scm:1359 guix/scripts/weather.scm:338 #: guix/scripts/describe.scm:98 guix/scripts/processes.scm:303 -#: guix/scripts/deploy.scm:57 guix/scripts/container.scm:37 +#: guix/scripts/deploy.scm:60 guix/scripts/container.scm:37 #: guix/scripts/container/exec.scm:45 guix/scripts/archive.scm:108 -#: guix/scripts/environment.scm:151 guix/scripts/home.scm:99 +#: guix/scripts/environment.scm:151 guix/scripts/home.scm:103 #: guix/scripts/time-machine.scm:69 guix/scripts/import/cpan.scm:46 #: guix/scripts/import/crate.scm:52 guix/scripts/import/egg.scm:49 #: guix/scripts/import/gem.scm:48 guix/scripts/import/gnu.scm:52 #: guix/scripts/import/json.scm:54 guix/scripts/import/opam.scm:52 #: guix/scripts/import/pypi.scm:50 guix/scripts/import/texlive.scm:47 #: guix/scripts/refresh.scm:189 guix/scripts/repl.scm:85 -#: guix/scripts/shell.scm:69 guix/scripts/style.scm:511 +#: guix/scripts/shell.scm:71 guix/scripts/style.scm:806 msgid "" "\n" " -V, --version display version information and exit" @@ -2581,166 +2681,166 @@ msgstr "modulnavnet ~a matcher ikke filnavnet »~a«~%" msgid "\"bash-minimal\" should be in 'inputs' when '~a' is used" msgstr "" -#: guix/lint.scm:616 +#: guix/lint.scm:614 msgid "no period allowed at the end of the synopsis" msgstr "ingen periode er tilladt i slutningen af synopsen" -#: guix/lint.scm:630 +#: guix/lint.scm:628 msgid "no article allowed at the beginning of the synopsis" msgstr "ingen artikel er tilladt i begyndelsen af synopsen" -#: guix/lint.scm:639 +#: guix/lint.scm:637 msgid "synopsis should be less than 80 characters long" msgstr "synopsis skal være mindre end 80 tegn lang" -#: guix/lint.scm:648 +#: guix/lint.scm:646 msgid "synopsis should start with an upper-case letter or digit" msgstr "synopsis skal starte med et stort bogstav eller et tal" -#: guix/lint.scm:656 +#: guix/lint.scm:654 msgid "synopsis should not start with the package name" msgstr "synopsis skal ikke starte med pakkenavnet" -#: guix/lint.scm:670 +#: guix/lint.scm:668 msgid "Texinfo markup in synopsis is invalid" msgstr "Texinfo-opmærkning i synopsis er ugyldig" -#: guix/lint.scm:678 +#: guix/lint.scm:676 msgid "synopsis contains trailing whitespace" msgstr "" -#: guix/lint.scm:695 +#: guix/lint.scm:693 msgid "synopsis should not be empty" msgstr "synopsis skal være udfyldt" -#: guix/lint.scm:705 +#: guix/lint.scm:703 #, scheme-format msgid "invalid synopsis: ~s" msgstr "ugyldig synopsis: ~s" -#: guix/lint.scm:805 +#: guix/lint.scm:803 #, scheme-format msgid "~a: HTTP GET error for ~a: ~a (~s)~%" msgstr "~a: HTTP GET-fejl for ~a: ~a (~s)~%" -#: guix/lint.scm:815 +#: guix/lint.scm:813 #, scheme-format msgid "~a: host lookup failure: ~a~%" msgstr "~a: værtsnavnet kunne ikke slås op: ~a~%" -#: guix/lint.scm:820 +#: guix/lint.scm:818 #, scheme-format msgid "~a: TLS certificate error: ~a" msgstr "~a: TLS-certifikatfejl: ~a" -#: guix/lint.scm:825 +#: guix/lint.scm:823 #, fuzzy, scheme-format #| msgid "TLS error in procedure '~a': ~a~%" msgid "~a: TLS error in '~a': ~a~%" msgstr "TLS-fejl i proceduren »~a«: ~a~%" -#: guix/lint.scm:836 guix/ui.scm:820 guix/scripts/offload.scm:194 +#: guix/lint.scm:834 guix/ui.scm:820 guix/scripts/offload.scm:194 #, scheme-format msgid "~a: ~a~%" msgstr "~a: ~a~%" -#: guix/lint.scm:868 +#: guix/lint.scm:866 #, scheme-format msgid "URI ~a returned suspiciously small file (~a bytes)" msgstr "URI'en ~a returnerede mistænkelig lille fil (~a byte)" -#: guix/lint.scm:877 +#: guix/lint.scm:875 #, scheme-format msgid "permanent redirect from ~a to ~a" msgstr "permanent omdirigering fra ~a til ~a" -#: guix/lint.scm:883 +#: guix/lint.scm:881 #, scheme-format msgid "invalid permanent redirect from ~a" msgstr "ugyldig permanent omdirigering fra ~a" -#: guix/lint.scm:889 guix/lint.scm:899 +#: guix/lint.scm:887 guix/lint.scm:897 #, scheme-format msgid "URI ~a not reachable: ~a (~s)" msgstr "URI ~a kan ikke nås: ~a (~s)" -#: guix/lint.scm:905 +#: guix/lint.scm:903 #, scheme-format msgid "URI ~a domain not found: ~a" msgstr "URI ~a domæne blev ikke fundet: ~a" -#: guix/lint.scm:911 +#: guix/lint.scm:909 #, scheme-format msgid "URI ~a unreachable: ~a" msgstr "URI ~a kan ikke nås: ~a" -#: guix/lint.scm:919 +#: guix/lint.scm:917 #, scheme-format msgid "TLS certificate error: ~a" msgstr "TLS-certifikatfejl: ~a" -#: guix/lint.scm:946 +#: guix/lint.scm:944 msgid "invalid value for home page" msgstr "ugyldig værdi for hjemmeside" -#: guix/lint.scm:951 +#: guix/lint.scm:949 #, scheme-format msgid "invalid home page URL: ~s" msgstr "ugyldig hjemmesideadresse: ~s" -#: guix/lint.scm:988 +#: guix/lint.scm:986 msgid "file names of patches should start with the package name" msgstr "filnavn for rettelser skal starte med pakkenavnet" -#: guix/lint.scm:1008 +#: guix/lint.scm:1006 #, fuzzy, scheme-format #| msgid "~a: file name is too long" msgid "~a: file name is too long, which may break 'make dist'" msgstr "~a: filnavnet er for langt" -#: guix/lint.scm:1029 +#: guix/lint.scm:1027 #, scheme-format msgid "~a: empty patch" msgstr "" -#: guix/lint.scm:1038 +#: guix/lint.scm:1036 #, scheme-format msgid "~a: patch lacks comment and upstream status" msgstr "" -#: guix/lint.scm:1099 +#: guix/lint.scm:1097 #, fuzzy, scheme-format msgid "proposed synopsis: ~s~%" msgstr "~a: ~a: foreslået synopsis: ~s~%" -#: guix/lint.scm:1113 +#: guix/lint.scm:1111 #, fuzzy, scheme-format msgid "proposed description:~% \"~a\"~%" msgstr "~a: ~a: foreslået beskrivelse:~% »~a«~%" -#: guix/lint.scm:1164 +#: guix/lint.scm:1162 msgid "all the source URIs are unreachable:" msgstr "alle kilde-URI'erne kan ikke nås:" -#: guix/lint.scm:1193 +#: guix/lint.scm:1191 msgid "the source file name should contain the package name" msgstr "kildefilnavnet skal indeholde pakkenavnet" -#: guix/lint.scm:1205 +#: guix/lint.scm:1203 msgid "the source URI should not be an autogenerated tarball" msgstr "" -#: guix/lint.scm:1229 +#: guix/lint.scm:1227 #, scheme-format msgid "URL should be 'mirror://~a/~a'" msgstr "Adresse skal være »mirror://~a/~a«" -#: guix/lint.scm:1269 +#: guix/lint.scm:1267 #, fuzzy, scheme-format msgid "while accessing '~a'" msgstr "kunne ikke starte »~a«: ~a~%" -#: guix/lint.scm:1276 +#: guix/lint.scm:1274 #, fuzzy, scheme-format msgid "URL should be '~a'" msgstr "Adresse skal være »mirror://~a/~a«" @@ -2748,68 +2848,68 @@ msgstr "Adresse skal være »mirror://~a/~a«" #. TRANSLATORS: check and #:tests? are a #. Scheme symbol and keyword respectively #. and should not be translated. -#: guix/lint.scm:1304 +#: guix/lint.scm:1302 msgid "the 'check' phase should respect #:tests?" msgstr "" -#: guix/lint.scm:1322 guix/lint.scm:1333 guix/lint.scm:1341 +#: guix/lint.scm:1320 guix/lint.scm:1331 guix/lint.scm:1339 #, scheme-format msgid "failed to create ~a derivation: ~a" msgstr "kunne ikke oprette ~a-derivat: ~a" -#: guix/lint.scm:1327 +#: guix/lint.scm:1325 #, scheme-format msgid "failed to create ~a derivation: ~s" msgstr "kunne ikke oprette ~a-derivat: ~s" -#: guix/lint.scm:1379 +#: guix/lint.scm:1377 #, scheme-format msgid "propagated inputs ~a and ~a collide" msgstr "" -#: guix/lint.scm:1403 +#: guix/lint.scm:1401 msgid "invalid license field" msgstr "ugyldigt licensfelt" -#: guix/lint.scm:1410 +#: guix/lint.scm:1408 msgid "while retrieving CVE vulnerabilities" msgstr "under indhentelse af CVE-sårbarheder" -#: guix/lint.scm:1453 +#: guix/lint.scm:1451 #, scheme-format msgid "probably vulnerable to ~a" msgstr "sandsynligvis sårbar for ~a" -#: guix/lint.scm:1461 +#: guix/lint.scm:1459 #, fuzzy, scheme-format msgid "no updater for ~a" msgstr "ingen kompileringslog for »~a«~%" -#: guix/lint.scm:1466 guix/lint.scm:1641 +#: guix/lint.scm:1464 guix/lint.scm:1639 #, scheme-format msgid "while retrieving upstream info for '~a'" msgstr "under indhentelse af opstrømsinformation for »~a«" -#: guix/lint.scm:1475 +#: guix/lint.scm:1473 #, scheme-format msgid "can be upgraded to ~a" msgstr "kan opgraderes til ~a" -#: guix/lint.scm:1481 +#: guix/lint.scm:1479 #, fuzzy, scheme-format msgid "updater '~a' failed to find upstream releases" msgstr "Kontroller pakken for nye opstrømsudgivelser" -#: guix/lint.scm:1508 +#: guix/lint.scm:1506 #, fuzzy, scheme-format msgid "failed to access Disarchive database at ~a" msgstr "kunne ikke starte »~a«: ~a~%" -#: guix/lint.scm:1535 +#: guix/lint.scm:1533 msgid "Software Heritage rate limit reached; try again later" msgstr "" -#: guix/lint.scm:1539 +#: guix/lint.scm:1537 #, fuzzy, scheme-format msgid "'~a' returned ~a" msgstr " »~a« returnerede ~a (~s)~%" @@ -2817,171 +2917,171 @@ msgstr " »~a« returnerede ~a (~s)~%" #. TRANSLATORS: "Software Heritage" is a proper noun #. that must remain untranslated. See #. . -#: guix/lint.scm:1578 +#: guix/lint.scm:1576 msgid "scheduled Software Heritage archival" msgstr "" -#: guix/lint.scm:1584 +#: guix/lint.scm:1582 msgid "archival rate limit exceeded; try again later" msgstr "" -#: guix/lint.scm:1605 +#: guix/lint.scm:1603 msgid "source not archived on Software Heritage and missing from the Disarchive database" msgstr "" -#: guix/lint.scm:1615 +#: guix/lint.scm:1613 #, scheme-format msgid "Disarchive entry refers to non-existent SWH directory '~a'" msgstr "" -#: guix/lint.scm:1624 +#: guix/lint.scm:1622 #, fuzzy #| msgid "~a: unsupported compression type~%" msgid "unsupported source type" msgstr "~a: ikke understøttet komprimeringstype~%" -#: guix/lint.scm:1633 +#: guix/lint.scm:1631 msgid "while connecting to Software Heritage" msgstr "" -#: guix/lint.scm:1650 +#: guix/lint.scm:1648 #, scheme-format msgid "ahead of Stackage LTS version ~a" msgstr "" -#: guix/lint.scm:1667 +#: guix/lint.scm:1665 #, scheme-format msgid "tabulation on line ~a, column ~a" msgstr "tabulering på linje ~a, kolonne ~a" -#: guix/lint.scm:1679 +#: guix/lint.scm:1677 #, scheme-format msgid "trailing white space on line ~a" msgstr "efterstillet mellemrum på linje ~a" -#: guix/lint.scm:1693 +#: guix/lint.scm:1691 #, scheme-format msgid "line ~a is way too long (~a characters)" msgstr "linjen ~a er alt for lang (~a tegn)" -#: guix/lint.scm:1707 +#: guix/lint.scm:1705 #, fuzzy msgid "parentheses feel lonely, move to the previous or next line" msgstr "linjen ~a: parenteser er ensomme, flyt til den forrige eller næste linje" -#: guix/lint.scm:1784 +#: guix/lint.scm:1782 #, fuzzy msgid "source file not found" msgstr "modulet ~a blev ikke fundet" -#: guix/lint.scm:1796 +#: guix/lint.scm:1794 #, fuzzy msgid "Validate package names" msgstr "Valider pakkesynopser" -#: guix/lint.scm:1800 +#: guix/lint.scm:1798 msgid "Check if tests are explicitly enabled" msgstr "" -#: guix/lint.scm:1804 +#: guix/lint.scm:1802 msgid "Validate package descriptions" msgstr "Valider pakkebeskrivelser" -#: guix/lint.scm:1808 +#: guix/lint.scm:1806 msgid "Identify inputs that should be native inputs" msgstr "Identificer inddata som skal være standarddata" -#: guix/lint.scm:1812 +#: guix/lint.scm:1810 msgid "Identify inputs that shouldn't be inputs at all" msgstr "Identificer inddata som ikke skal være inddata" -#: guix/lint.scm:1816 +#: guix/lint.scm:1814 #, fuzzy #| msgid "Identify inputs that should be native inputs" msgid "Identify input labels that do not match package names" msgstr "Identificer inddata som skal være standarddata" -#: guix/lint.scm:1820 +#: guix/lint.scm:1818 msgid "Make sure 'wrap-program' can finds its interpreter." msgstr "" #. TRANSLATORS: is the name of a data type and must not be #. translated. -#: guix/lint.scm:1826 +#: guix/lint.scm:1824 msgid "Make sure the 'license' field is a or a list thereof" msgstr "Sikr at feltet »license« er en eller en liste deraf" -#: guix/lint.scm:1831 +#: guix/lint.scm:1829 msgid "Make sure tests are only run when requested" msgstr "" -#: guix/lint.scm:1835 +#: guix/lint.scm:1833 msgid "Suggest 'mirror://' URLs" msgstr "Foreslå »mirror://«-adresser" -#: guix/lint.scm:1839 +#: guix/lint.scm:1837 msgid "Validate file names of sources" msgstr "Valider filnavne for kilder" -#: guix/lint.scm:1843 +#: guix/lint.scm:1841 msgid "Check for autogenerated tarballs" msgstr "" -#: guix/lint.scm:1847 +#: guix/lint.scm:1845 msgid "Report failure to compile a package to a derivation" msgstr "Rapporter mislykket kompilering af en pakke til et derivat" -#: guix/lint.scm:1852 +#: guix/lint.scm:1850 msgid "Report collisions that would occur due to propagated inputs" msgstr "" -#: guix/lint.scm:1857 +#: guix/lint.scm:1855 msgid "Validate file names and availability of patches" msgstr "Valider filnavne og tilgængelighed for rettelser" -#: guix/lint.scm:1861 +#: guix/lint.scm:1859 #, fuzzy msgid "Validate patch headers" msgstr "Valider pakkebeskrivelser" -#: guix/lint.scm:1865 +#: guix/lint.scm:1863 msgid "Look for formatting issues in the source" msgstr "Kig efter formateringsproblemstillinger i kilden" -#: guix/lint.scm:1872 +#: guix/lint.scm:1870 msgid "Validate package synopses" msgstr "Valider pakkesynopser" -#: guix/lint.scm:1876 +#: guix/lint.scm:1874 msgid "Validate synopsis & description of GNU packages" msgstr "Valider synopsis og beskrivelse for GNU-pakker" -#: guix/lint.scm:1880 +#: guix/lint.scm:1878 msgid "Validate home-page URLs" msgstr "Valider hjemmesiders adresser" -#: guix/lint.scm:1884 +#: guix/lint.scm:1882 msgid "Validate source URLs" msgstr "Valider kildeadresser" -#: guix/lint.scm:1888 +#: guix/lint.scm:1886 #, fuzzy msgid "Suggest GitHub URLs" msgstr "Foreslå »mirror://«-adresser" -#: guix/lint.scm:1892 +#: guix/lint.scm:1890 msgid "Check the Common Vulnerabilities and Exposures (CVE) database" msgstr "Kontroller databasen Common Vulnerabilities and Exposures (CVE)" -#: guix/lint.scm:1897 +#: guix/lint.scm:1895 msgid "Check the package for new upstream releases" msgstr "Kontroller pakken for nye opstrømsudgivelser" -#: guix/lint.scm:1901 +#: guix/lint.scm:1899 msgid "Ensure source code archival on Software Heritage" msgstr "" -#: guix/lint.scm:1905 +#: guix/lint.scm:1903 msgid "Ensure Haskell packages use Stackage LTS versions" msgstr "" @@ -3053,7 +3153,7 @@ msgstr "ikke understøttet hash-format: ~a~%" msgid "~a: unknown hash algorithm~%" msgstr "~a: ukendt pakkeformat~%" -#: guix/scripts/download.scm:171 guix/scripts/package.scm:1087 +#: guix/scripts/download.scm:171 guix/scripts/package.scm:1090 #: guix/scripts/pull.scm:758 guix/scripts/publish.scm:1260 #: guix/scripts/discover.scm:136 guix/scripts/time-machine.scm:123 #, scheme-format @@ -3085,17 +3185,17 @@ msgstr "fjerner ikke generation ~a, som er nuværende~%" msgid "no matching generation~%" msgstr "ingen matchende generation~%" -#: guix/scripts/package.scm:159 +#: guix/scripts/package.scm:161 #, scheme-format msgid "nothing to be done~%" msgstr "intet at udføre~%" -#: guix/scripts/package.scm:260 +#: guix/scripts/package.scm:262 #, scheme-format msgid "package '~a' no longer exists~%" msgstr "pakken »~a« findes ikke længere~%" -#: guix/scripts/package.scm:315 +#: guix/scripts/package.scm:317 #, scheme-format msgid "" "Consider setting the necessary environment\n" @@ -3109,7 +3209,7 @@ msgid "" "Alternately, see @command{guix package --search-paths -p ~s}." msgstr "" -#: guix/scripts/package.scm:361 +#: guix/scripts/package.scm:363 msgid "" ";; This \"manifest\" file can be passed to 'guix package -m' to reproduce\n" ";; the content of your profile. This is \"symbolic\": it only specifies\n" @@ -3118,24 +3218,24 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/package.scm:393 +#: guix/scripts/package.scm:395 #, scheme-format msgid "no provenance information for this profile~%" msgstr "" -#: guix/scripts/package.scm:395 +#: guix/scripts/package.scm:397 msgid "" ";; This channel file can be passed to 'guix pull -C' or to\n" ";; 'guix time-machine -C' to obtain the Guix revision that was\n" ";; used to populate this profile.\n" msgstr "" -#: guix/scripts/package.scm:407 +#: guix/scripts/package.scm:409 #, scheme-format msgid ";; Note: these other commits were also used to install some of the packages in this profile:~%" msgstr "" -#: guix/scripts/package.scm:437 +#: guix/scripts/package.scm:439 msgid "" "Usage: guix package [OPTION]...\n" "Install, remove, or upgrade packages in a single transaction.\n" @@ -3143,7 +3243,7 @@ msgstr "" "Brug: guix-pakke [TILVALG] ... \n" "Installer, fjern eller opgrader pakker i en enkel transaktion.\n" -#: guix/scripts/package.scm:439 +#: guix/scripts/package.scm:441 msgid "" "\n" " -i, --install PACKAGE ...\n" @@ -3153,7 +3253,7 @@ msgstr "" " -i, --install PAKKE ...\n" " installer PAKKER" -#: guix/scripts/package.scm:442 +#: guix/scripts/package.scm:444 msgid "" "\n" " -e, --install-from-expression=EXP\n" @@ -3163,7 +3263,7 @@ msgstr "" " -e, --install-from-expression=UDTRYK\n" " installer pakken UDTRYK evaluerer til" -#: guix/scripts/package.scm:445 +#: guix/scripts/package.scm:447 msgid "" "\n" " -f, --install-from-file=FILE\n" @@ -3175,7 +3275,7 @@ msgstr "" " installer pakken som koden i FIL evaluerer\n" " til" -#: guix/scripts/package.scm:449 +#: guix/scripts/package.scm:451 msgid "" "\n" " -r, --remove PACKAGE ...\n" @@ -3185,7 +3285,7 @@ msgstr "" " -r, --remove PAKKE ...\n" " fjern PAKKER" -#: guix/scripts/package.scm:452 +#: guix/scripts/package.scm:454 msgid "" "\n" " -u, --upgrade[=REGEXP] upgrade all the installed packages matching REGEXP" @@ -3195,7 +3295,7 @@ msgstr "" " opgrader alle de installerede pakker der matcher\n" " REGUDTRYK" -#: guix/scripts/package.scm:454 +#: guix/scripts/package.scm:456 msgid "" "\n" " -m, --manifest=FILE create a new profile generation with the manifest\n" @@ -3205,7 +3305,7 @@ msgstr "" " -m, --manifest=FIL opret en ny profiloprettelse med manifestet fra\n" " FIL" -#: guix/scripts/package.scm:457 guix/scripts/upgrade.scm:41 +#: guix/scripts/package.scm:459 guix/scripts/upgrade.scm:41 msgid "" "\n" " --do-not-upgrade[=REGEXP] do not upgrade any packages matching REGEXP" @@ -3213,7 +3313,7 @@ msgstr "" "\n" " --do-not-upgrade[=REGUDTRYK] opgrader ikke pakker der matcher REGUDTRYK" -#: guix/scripts/package.scm:459 guix/scripts/pull.scm:107 +#: guix/scripts/package.scm:461 guix/scripts/pull.scm:107 msgid "" "\n" " --roll-back roll back to the previous generation" @@ -3221,7 +3321,7 @@ msgstr "" "\n" " --roll-back rul tilbage til den forrige generation" -#: guix/scripts/package.scm:461 +#: guix/scripts/package.scm:463 msgid "" "\n" " --search-paths[=KIND]\n" @@ -3231,7 +3331,7 @@ msgstr "" " --search-paths[=KIND]\n" " vis krævede miljøvariabeldefinitioner" -#: guix/scripts/package.scm:464 guix/scripts/pull.scm:104 +#: guix/scripts/package.scm:466 guix/scripts/pull.scm:104 msgid "" "\n" " -l, --list-generations[=PATTERN]\n" @@ -3241,7 +3341,7 @@ msgstr "" " -l, --list-generations[=MØNSTER]\n" " vis generationer der matcher MØNSTER" -#: guix/scripts/package.scm:467 guix/scripts/pull.scm:109 +#: guix/scripts/package.scm:469 guix/scripts/pull.scm:109 msgid "" "\n" " -d, --delete-generations[=PATTERN]\n" @@ -3251,7 +3351,7 @@ msgstr "" " -d, --delete-generations[=MØNSTER]\n" " slet generationer der matcher MØNSTER" -#: guix/scripts/package.scm:470 guix/scripts/pull.scm:112 +#: guix/scripts/package.scm:472 guix/scripts/pull.scm:112 msgid "" "\n" " -S, --switch-generation=PATTERN\n" @@ -3261,7 +3361,7 @@ msgstr "" " -S, --switch-generation=MØNSTER\n" " skift til et generationsmatchende MØNSTER" -#: guix/scripts/package.scm:473 +#: guix/scripts/package.scm:475 #, fuzzy msgid "" "\n" @@ -3270,13 +3370,13 @@ msgstr "" "\n" " --list-failures vis mellemlagrede kompileringsfejl" -#: guix/scripts/package.scm:475 +#: guix/scripts/package.scm:477 msgid "" "\n" " --export-channels print channels for the chosen profile" msgstr "" -#: guix/scripts/package.scm:477 guix/scripts/install.scm:34 +#: guix/scripts/package.scm:479 guix/scripts/install.scm:34 #: guix/scripts/remove.scm:33 guix/scripts/upgrade.scm:37 msgid "" "\n" @@ -3285,7 +3385,7 @@ msgstr "" "\n" " -p, --profile=PROFIL brug PROFIL i stedet for brugerens standardprofil" -#: guix/scripts/package.scm:479 +#: guix/scripts/package.scm:481 #, fuzzy msgid "" "\n" @@ -3294,7 +3394,7 @@ msgstr "" "\n" " --list-failures vis mellemlagrede kompileringsfejl" -#: guix/scripts/package.scm:482 +#: guix/scripts/package.scm:484 msgid "" "\n" " --allow-collisions do not treat collisions in the profile as an error" @@ -3302,7 +3402,7 @@ msgstr "" "\n" " --allow-collisions opfat ikke kollisioner i profilen som en fejl" -#: guix/scripts/package.scm:484 +#: guix/scripts/package.scm:486 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" @@ -3310,7 +3410,7 @@ msgstr "" "\n" " --bootstrap brug bootstrap Guile til at kompilere profilen" -#: guix/scripts/package.scm:489 +#: guix/scripts/package.scm:491 msgid "" "\n" " -s, --search=REGEXP search in synopsis and description using REGEXP" @@ -3318,7 +3418,7 @@ msgstr "" "\n" " -s, --search=REGUDTRYK søg i synopsis og beskrivelse via REGUDTRYK" -#: guix/scripts/package.scm:491 +#: guix/scripts/package.scm:493 msgid "" "\n" " -I, --list-installed[=REGEXP]\n" @@ -3328,7 +3428,7 @@ msgstr "" " -I, --list-installed[=REGUDTRYK]\n" " vis installerede pakker der matcher REGUDTRYK" -#: guix/scripts/package.scm:494 +#: guix/scripts/package.scm:496 msgid "" "\n" " -A, --list-available[=REGEXP]\n" @@ -3338,7 +3438,7 @@ msgstr "" " -A, --list-available[=REGUDTRYK]\n" " vis tilgængelige pakker der matcher REGUDTRYK" -#: guix/scripts/package.scm:497 +#: guix/scripts/package.scm:499 msgid "" "\n" " --show=PACKAGE show details about PACKAGE" @@ -3346,37 +3446,37 @@ msgstr "" "\n" " --show=PACKAGE vis detaljer om PAKKE" -#: guix/scripts/package.scm:552 +#: guix/scripts/package.scm:554 #, scheme-format msgid "upgrade regexp '~a' looks like a command-line option~%" msgstr "opgradering af regulært udtryk »~a« ligner et tilvalg for kommandolinjen~%" -#: guix/scripts/package.scm:555 +#: guix/scripts/package.scm:557 #, scheme-format msgid "is this intended?~%" msgstr "er dette med vilje?~%" -#: guix/scripts/package.scm:605 +#: guix/scripts/package.scm:607 #, scheme-format msgid "~a: unsupported kind of search path~%" msgstr "~a: ikke understøttet type af søgesti%" -#: guix/scripts/package.scm:739 +#: guix/scripts/package.scm:741 #, scheme-format msgid "cannot install non-package object: ~s~%" msgstr "" -#: guix/scripts/package.scm:918 +#: guix/scripts/package.scm:920 #, scheme-format msgid "~a~@[@~a~]: package not found~%" msgstr "~a~@[@~a~]: pakke blev ikke fundet~%" -#: guix/scripts/package.scm:965 guix/scripts/pull.scm:687 +#: guix/scripts/package.scm:967 guix/scripts/pull.scm:687 #, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "kan ikke skifte til generation »~a«~%" -#: guix/scripts/package.scm:1060 +#: guix/scripts/package.scm:1062 #, fuzzy, scheme-format #| msgid "nothing to be done~%" msgid "nothing to do~%" @@ -3637,8 +3737,8 @@ msgstr "" "Brug: guix KOMMANDO ARG...\n" "Kør KOMMANDO med ARG.\n" -#: guix/scripts/git.scm:29 guix/scripts/system.scm:945 -#: guix/scripts/container.scm:30 guix/scripts/home.scm:69 +#: guix/scripts/git.scm:29 guix/scripts/system.scm:946 +#: guix/scripts/container.scm:30 guix/scripts/home.scm:70 msgid "The valid values for ACTION are:\n" msgstr "De gyldige værdier for HANDLING er:\n" @@ -3746,23 +3846,23 @@ msgstr "" "\n" " -r, --recursive beregn hashen på FIL rekursivt" -#: guix/scripts/hash.scm:137 +#: guix/scripts/hash.scm:138 #, fuzzy, scheme-format -msgid "'--recursive' is deprecated, use '--serializer' instead~%" +msgid "'--recursive' is deprecated, use '--serializer=nar' instead~%" msgstr "brug af en streng for filen »~a« er forældet; brug »plain-file« i stedet~%" -#: guix/scripts/hash.scm:152 +#: guix/scripts/hash.scm:153 #, fuzzy, scheme-format msgid "unsupported serializer type: ~a~%" msgstr "ikke understøttet hash-format: ~a~%" -#: guix/scripts/hash.scm:201 +#: guix/scripts/hash.scm:202 #, fuzzy, scheme-format #| msgid "~a: ~a~%" msgid "~a ~a~%" msgstr "~a: ~a~%" -#: guix/scripts/hash.scm:210 +#: guix/scripts/hash.scm:211 #, fuzzy, scheme-format #| msgid "no packages specified; building an empty pack~%" msgid "no arguments specified~%" @@ -3831,9 +3931,9 @@ msgstr "~a: ugyldig sorteringsnøgle~%" #: guix/scripts/import/minetest.scm:115 guix/scripts/import/cran.scm:120 #: guix/scripts/import/elpa.scm:110 guix/scripts/import/cpan.scm:87 #: guix/scripts/import/crate.scm:103 guix/scripts/import/egg.scm:106 -#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:121 +#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:122 #: guix/scripts/import/hackage.scm:158 guix/scripts/import/json.scm:97 -#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:104 +#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:105 #: guix/scripts/import/stackage.scm:130 guix/scripts/import/texlive.scm:88 #, scheme-format msgid "too few arguments~%" @@ -3842,10 +3942,10 @@ msgstr "for få argumenter~%" #: guix/scripts/import/minetest.scm:117 guix/scripts/import/cran.scm:122 #: guix/scripts/import/elpa.scm:112 guix/scripts/import/cpan.scm:89 #: guix/scripts/import/crate.scm:105 guix/scripts/import/egg.scm:108 -#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:123 +#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:124 #: guix/scripts/import/hackage.scm:149 guix/scripts/import/hackage.scm:160 #: guix/scripts/import/json.scm:99 guix/scripts/import/opam.scm:113 -#: guix/scripts/import/pypi.scm:106 guix/scripts/import/stackage.scm:132 +#: guix/scripts/import/pypi.scm:107 guix/scripts/import/stackage.scm:132 #: guix/scripts/import/texlive.scm:90 #, scheme-format msgid "too many arguments~%" @@ -3873,7 +3973,7 @@ msgid "" " -s, --style=STYLE choose output style, either specification or variable" msgstr "" -#: guix/scripts/import/cran.scm:116 guix/scripts/import/texlive.scm:84 +#: guix/scripts/import/cran.scm:116 #, scheme-format msgid "failed to download description for package '~a'~%" msgstr "kunne ikke hente beskrivelse for pakke »~a«:~%" @@ -4322,27 +4422,27 @@ msgstr "DAGen for tjenester" msgid "the dependency graph of shepherd services" msgstr "afhængighedsgrafen for shepherd-tjenester" -#: guix/scripts/system.scm:482 guix/scripts/home.scm:453 +#: guix/scripts/system.scm:482 guix/scripts/home.scm:466 #, fuzzy, scheme-format msgid " repository URL: ~a~%" msgstr " arkiv-URL: ~a~%" -#: guix/scripts/system.scm:484 guix/scripts/home.scm:455 +#: guix/scripts/system.scm:484 guix/scripts/home.scm:468 #, fuzzy, scheme-format msgid " branch: ~a~%" msgstr " gren: ~a~%" -#: guix/scripts/system.scm:485 guix/scripts/home.scm:456 +#: guix/scripts/system.scm:485 guix/scripts/home.scm:469 #, fuzzy, scheme-format msgid " commit: ~a~%" msgstr " commit: ~a~%" -#: guix/scripts/system.scm:505 guix/scripts/home.scm:469 +#: guix/scripts/system.scm:505 guix/scripts/home.scm:482 #, scheme-format msgid " file name: ~a~%" msgstr " filnavn: ~a~%" -#: guix/scripts/system.scm:506 guix/scripts/home.scm:470 +#: guix/scripts/system.scm:506 guix/scripts/home.scm:483 #, scheme-format msgid " canonical file name: ~a~%" msgstr " kanonisk filnavn: ~a~%" @@ -4383,12 +4483,12 @@ msgstr " commit: ~a~%" #. TRANSLATORS: Here "channel" is the same terminology as used in #. "guix describe" and "guix pull --channels". -#: guix/scripts/system.scm:536 guix/scripts/home.scm:476 +#: guix/scripts/system.scm:536 guix/scripts/home.scm:489 #, scheme-format msgid " channels:~%" msgstr " kanaler:~%" -#: guix/scripts/system.scm:539 guix/scripts/home.scm:479 +#: guix/scripts/system.scm:539 guix/scripts/home.scm:492 #, scheme-format msgid " configuration file: ~a~%" msgstr " konfigurationsfil: ~a~%" @@ -4442,17 +4542,17 @@ msgstr "Tag i betragtning at køre »guix pull« før »reconfigure«.~%" msgid "Failing to do that may downgrade your system!~%" msgstr "Hvis dette ikke gøres, kan dit system blive nedgraderet!~%" -#: guix/scripts/system.scm:754 guix/scripts/system.scm:863 +#: guix/scripts/system.scm:754 guix/scripts/system.scm:864 #, scheme-format msgid "bootloader successfully installed on '~a'~%" msgstr "" -#: guix/scripts/system.scm:856 +#: guix/scripts/system.scm:857 #, scheme-format msgid "activating system...~%" msgstr "aktiverer system ...~%" -#: guix/scripts/system.scm:867 +#: guix/scripts/system.scm:868 msgid "" "To complete the upgrade, run 'herd restart SERVICE' to stop,\n" "upgrade, and restart each service that was not automatically restarted.\n" @@ -4461,26 +4561,26 @@ msgstr "" "stoppe, opgradere og genstarte hver tjeneste, der ikke blev genstartet\n" "automatisk.\n" -#: guix/scripts/system.scm:870 +#: guix/scripts/system.scm:871 msgid "Run 'herd status' to view the list of services on your system.\n" msgstr "" -#: guix/scripts/system.scm:874 +#: guix/scripts/system.scm:875 #, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "initialiserer operativsystem under »~a«...~%" -#: guix/scripts/system.scm:894 guix/scripts/graph.scm:437 +#: guix/scripts/system.scm:895 guix/scripts/graph.scm:437 #, scheme-format msgid "~a: unknown backend~%" msgstr "~a: ukendt motor~%" -#: guix/scripts/system.scm:931 +#: guix/scripts/system.scm:932 #, fuzzy msgid "The available image types are:\n" msgstr "De gyldige knudetyper er:\n" -#: guix/scripts/system.scm:941 +#: guix/scripts/system.scm:942 msgid "" "Usage: guix system [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the operating system declared in FILE according to ACTION.\n" @@ -4490,68 +4590,68 @@ msgstr "" "Kompiler operativsystemet erklæret i FIL jævnfør HANDLING.\n" "Nogle HANDLINGER understøtter yderligere ARGUMENTER.\n" -#: guix/scripts/system.scm:947 +#: guix/scripts/system.scm:948 msgid " search search for existing service types\n" msgstr " search søg efter eksisterende tjenestetyper\n" -#: guix/scripts/system.scm:949 +#: guix/scripts/system.scm:950 msgid " reconfigure switch to a new operating system configuration\n" msgstr " reconfigure skift til en ny operativsystemkonfiguration\n" -#: guix/scripts/system.scm:951 +#: guix/scripts/system.scm:952 msgid " roll-back switch to the previous operating system configuration\n" msgstr " roll-back skift til den forrige operativsystemkonfiguration\n" -#: guix/scripts/system.scm:953 +#: guix/scripts/system.scm:954 msgid " describe describe the current system\n" msgstr " describe beskriv det nuværende system\n" -#: guix/scripts/system.scm:955 +#: guix/scripts/system.scm:956 msgid " list-generations list the system generations\n" msgstr " list-generations viser systemoprettelserne\n" -#: guix/scripts/system.scm:957 +#: guix/scripts/system.scm:958 msgid " switch-generation switch to an existing operating system configuration\n" msgstr " switch-generation skift til en eksisterende operativsystemkonfiguration\n" -#: guix/scripts/system.scm:959 +#: guix/scripts/system.scm:960 msgid " delete-generations delete old system generations\n" msgstr " delete-generations slet gamle systemoprettelser\n" -#: guix/scripts/system.scm:961 +#: guix/scripts/system.scm:962 msgid " build build the operating system without installing anything\n" msgstr " build kompiler operativsystemet uden at installere noget\n" -#: guix/scripts/system.scm:963 +#: guix/scripts/system.scm:964 msgid " container build a container that shares the host's store\n" msgstr " container kompiler en container som deler værtens lager\n" -#: guix/scripts/system.scm:965 +#: guix/scripts/system.scm:966 msgid " vm build a virtual machine image that shares the host's store\n" msgstr " vm kompiler et virtuelt maskinaftryk som deler værtens lager\n" -#: guix/scripts/system.scm:967 +#: guix/scripts/system.scm:968 #, fuzzy msgid " image build a Guix System image\n" msgstr " docker-image kompiler et Dockeraftryk\n" -#: guix/scripts/system.scm:969 +#: guix/scripts/system.scm:970 msgid " docker-image build a Docker image\n" msgstr " docker-image kompiler et Dockeraftryk\n" -#: guix/scripts/system.scm:971 +#: guix/scripts/system.scm:972 msgid " init initialize a root file system to run GNU\n" msgstr " init initialiser et rootfilsystem til at køre GNU.\n" -#: guix/scripts/system.scm:973 +#: guix/scripts/system.scm:974 msgid " extension-graph emit the service extension graph in Dot format\n" msgstr " extension-graph opret tjenesteudvidelsesgrafen i Dot-format\n" -#: guix/scripts/system.scm:975 +#: guix/scripts/system.scm:976 msgid " shepherd-graph emit the graph of shepherd services in Dot format\n" msgstr " shepherd-graph opret grafen for shepherd-tjenester i Dot-format\n" -#: guix/scripts/system.scm:979 +#: guix/scripts/system.scm:980 msgid "" "\n" " -d, --derivation return the derivation of the given system" @@ -4559,7 +4659,7 @@ msgstr "" "\n" " -d, --derivation returner de derivate stier for det givne system" -#: guix/scripts/system.scm:981 +#: guix/scripts/system.scm:982 msgid "" "\n" " -e, --expression=EXPR consider the operating-system EXPR evaluates to\n" @@ -4570,14 +4670,14 @@ msgstr "" " evaluerer til i stedet for at læse FIL, når\n" " anvendelig" -#: guix/scripts/system.scm:984 +#: guix/scripts/system.scm:985 guix/scripts/home.scm:95 msgid "" "\n" " --allow-downgrades for 'reconfigure', allow downgrades to earlier\n" " channel revisions" msgstr "" -#: guix/scripts/system.scm:987 +#: guix/scripts/system.scm:988 msgid "" "\n" " --on-error=STRATEGY\n" @@ -4590,7 +4690,7 @@ msgstr "" " eller debug) når den opstår en fejl under læsning\n" " af FIL" -#: guix/scripts/system.scm:991 +#: guix/scripts/system.scm:992 #, fuzzy msgid "" "\n" @@ -4599,7 +4699,7 @@ msgstr "" "\n" " --list-types vis de tilgængelige graftyper" -#: guix/scripts/system.scm:993 +#: guix/scripts/system.scm:994 #, fuzzy msgid "" "\n" @@ -4608,7 +4708,7 @@ msgstr "" "\n" " --image-size=STR for »vm-image«, lav et aftryk af STR" -#: guix/scripts/system.scm:995 +#: guix/scripts/system.scm:996 #, fuzzy msgid "" "\n" @@ -4617,7 +4717,7 @@ msgstr "" "\n" " --image-size=STR for »vm-image«, lav et aftryk af STR" -#: guix/scripts/system.scm:997 +#: guix/scripts/system.scm:998 msgid "" "\n" " --no-bootloader for 'init', do not install a bootloader" @@ -4625,7 +4725,7 @@ msgstr "" "\n" " --no-bootloader for »init«, installer ikke en opstartsindlæser" -#: guix/scripts/system.scm:999 +#: guix/scripts/system.scm:1000 #, fuzzy msgid "" "\n" @@ -4634,19 +4734,28 @@ msgstr "" "\n" " --share=SPEC for »vm«, del værtsfilsystem jævnfør SPEC" -#: guix/scripts/system.scm:1001 +#: guix/scripts/system.scm:1002 +#, fuzzy +msgid "" +"\n" +" --persistent for 'vm', make the root file system persistent" +msgstr "" +"\n" +" --share=SPEC for »vm«, del værtsfilsystem jævnfør SPEC" + +#: guix/scripts/system.scm:1004 msgid "" "\n" " --label=LABEL for 'image', label disk image with LABEL" msgstr "" -#: guix/scripts/system.scm:1003 guix/scripts/pack.scm:1340 +#: guix/scripts/system.scm:1006 guix/scripts/pack.scm:1340 msgid "" "\n" " --save-provenance save provenance information" msgstr "" -#: guix/scripts/system.scm:1005 +#: guix/scripts/system.scm:1008 #, fuzzy msgid "" "\n" @@ -4656,7 +4765,7 @@ msgstr "" "\n" " --share=SPEC for »vm«, del værtsfilsystem jævnfør SPEC" -#: guix/scripts/system.scm:1008 +#: guix/scripts/system.scm:1011 #, fuzzy msgid "" "\n" @@ -4666,13 +4775,13 @@ msgstr "" "\n" " --expose=SPEC for »vm«, fremvis værtsfilsystem jævnfør SPEC" -#: guix/scripts/system.scm:1011 +#: guix/scripts/system.scm:1014 msgid "" "\n" " -N, --network for 'container', allow containers to access the network" msgstr "" -#: guix/scripts/system.scm:1013 +#: guix/scripts/system.scm:1016 #, fuzzy msgid "" "\n" @@ -4686,7 +4795,7 @@ msgstr "" " resultatet, og registrer den som en\n" " affaldsindsamlerrod" -#: guix/scripts/system.scm:1017 +#: guix/scripts/system.scm:1020 msgid "" "\n" " --full-boot for 'vm', make a full boot sequence" @@ -4694,13 +4803,13 @@ msgstr "" "\n" " --full-boot for »vm«, lav en fuld opstartssekvens" -#: guix/scripts/system.scm:1019 +#: guix/scripts/system.scm:1022 msgid "" "\n" " --no-graphic for 'vm', use the tty that we are started in for IO" msgstr "" -#: guix/scripts/system.scm:1021 +#: guix/scripts/system.scm:1024 msgid "" "\n" " --skip-checks skip file system and initrd module safety checks" @@ -4708,64 +4817,64 @@ msgstr "" "\n" " --skip-checks udelad sikkerhedskontrol af filsystem og initrd-modul" -#: guix/scripts/system.scm:1028 +#: guix/scripts/system.scm:1031 msgid "" "\n" " --graph-backend=BACKEND\n" " use BACKEND for 'extension-graphs' and 'shepherd-graph'" msgstr "" -#: guix/scripts/system.scm:1180 +#: guix/scripts/system.scm:1187 #, fuzzy, scheme-format msgid "'~a' does not return an operating system or an image~%" msgstr "»~a« returnerer ikke et operativsystem~%" -#: guix/scripts/system.scm:1204 guix/scripts/home.scm:216 +#: guix/scripts/system.scm:1211 guix/scripts/home.scm:230 #, scheme-format msgid "both file and expression cannot be specified~%" msgstr "fil og udtryk kan ikke angives samtidigt~%" -#: guix/scripts/system.scm:1211 guix/scripts/home.scm:223 +#: guix/scripts/system.scm:1218 guix/scripts/home.scm:237 #, scheme-format msgid "no configuration specified~%" msgstr "ingen konfiguration angivet~%" -#: guix/scripts/system.scm:1319 guix/scripts/system.scm:1335 -#: guix/scripts/system.scm:1342 guix/scripts/system.scm:1348 -#: guix/scripts/home.scm:274 guix/scripts/home.scm:296 -#: guix/scripts/home.scm:301 guix/scripts/home.scm:307 -#: guix/scripts/home.scm:314 guix/scripts/import/gnu.scm:100 +#: guix/scripts/system.scm:1328 guix/scripts/system.scm:1344 +#: guix/scripts/system.scm:1351 guix/scripts/system.scm:1357 +#: guix/scripts/home.scm:287 guix/scripts/home.scm:309 +#: guix/scripts/home.scm:314 guix/scripts/home.scm:320 +#: guix/scripts/home.scm:327 guix/scripts/import/gnu.scm:100 #: guix/scripts/offload.scm:836 guix/scripts/offload.scm:848 #, scheme-format msgid "wrong number of arguments~%" msgstr "forkert antal argumenter~%" -#: guix/scripts/system.scm:1324 +#: guix/scripts/system.scm:1333 #, scheme-format msgid "no system generation, nothing to describe~%" msgstr "ingen systemoprettelse, intet at beskrive~%" -#: guix/scripts/system.scm:1367 guix/scripts/home.scm:337 +#: guix/scripts/system.scm:1376 guix/scripts/home.scm:350 #, scheme-format msgid "~a: unknown action~%" msgstr "~a: ukendt handling~%" -#: guix/scripts/system.scm:1387 guix/scripts/home.scm:353 +#: guix/scripts/system.scm:1396 guix/scripts/home.scm:366 #, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "forkert antal argumenter for handling »~a«~%" -#: guix/scripts/system.scm:1392 +#: guix/scripts/system.scm:1401 #, scheme-format msgid "guix system: missing command name~%" msgstr "guix system: mangler kommandonavn~%" -#: guix/scripts/system.scm:1394 +#: guix/scripts/system.scm:1403 #, scheme-format msgid "Try 'guix system --help' for more information.~%" msgstr "Prøv »guix system --help« for yderligere information.~%" -#: guix/scripts/system/search.scm:93 guix/ui.scm:1541 guix/ui.scm:1559 +#: guix/scripts/system/search.scm:93 guix/ui.scm:1544 guix/ui.scm:1562 msgid "unknown" msgstr "ukendt" @@ -5231,7 +5340,7 @@ msgstr "" " -h, --help vis denne hjælpetekst og afslut" #: guix/scripts/graph.scm:548 guix/scripts/pack.scm:1325 -#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:502 +#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:797 msgid "" "\n" " -e, --expression=EXPR consider the package EXPR evaluates to" @@ -5930,7 +6039,7 @@ msgstr "" "\n" " -f, --format=FORMAT vis information i det givne FORMAT" -#: guix/scripts/deploy.scm:51 +#: guix/scripts/deploy.scm:54 msgid "" "Usage: guix deploy [OPTION] FILE...\n" "Perform the deployment specified by FILE.\n" @@ -5938,39 +6047,86 @@ msgstr "" "Brug: guix deploy [TILVALG] FIL ...\n" "Udfør udrulningen angivet af FIL.\n" -#: guix/scripts/deploy.scm:108 +#: guix/scripts/deploy.scm:63 +#, fuzzy +#| msgid " exec execute a command inside of an existing container\n" +msgid "" +"\n" +" -x, --execute execute the following command on all the machines" +msgstr " exec kør en kommando inden i en eksisterende container\n" + +#: guix/scripts/deploy.scm:117 #, fuzzy, scheme-format msgid "The following ~d machine will be deployed:~%" msgid_plural "The following ~d machines will be deployed:~%" msgstr[0] "Den følgende pakke vil blive fjernet:~%~{~a~%~}~%" msgstr[1] "De følgende pakker vil blive fjernet:~%~{~a~%~}~%" -#: guix/scripts/deploy.scm:122 +#: guix/scripts/deploy.scm:131 #, scheme-format msgid "deploying to ~a...~%" msgstr "udruller til »~a«...~%" -#: guix/scripts/deploy.scm:134 guix/scripts/deploy.scm:138 +#: guix/scripts/deploy.scm:143 guix/scripts/deploy.scm:147 #, scheme-format msgid "failed to deploy ~a: ~a~%" msgstr "kunne ikke udrulle »~a«: ~a~%" -#: guix/scripts/deploy.scm:146 +#: guix/scripts/deploy.scm:155 #, scheme-format msgid "rolling back ~a...~%" msgstr "ruller tilbage ~a...~%" -#: guix/scripts/deploy.scm:152 +#: guix/scripts/deploy.scm:161 #, fuzzy, scheme-format msgid "successfully deployed ~a~%" msgstr "kompilering lykkedes ~a" -#: guix/scripts/deploy.scm:167 +#: guix/scripts/deploy.scm:212 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command succeeded~%" +msgstr "guix: ~a: kommando blev ikke fundet~%" + +#: guix/scripts/deploy.scm:215 +#, fuzzy, scheme-format +#| msgid "Command failed with exit code ~a.~%" +msgid "~a: command exited with code ~a~%" +msgstr "Kommando mislykkede med afslutningskoden ~a.~%" + +#: guix/scripts/deploy.scm:218 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command stopped with signal ~a~%" +msgstr "guix: ~a: kommando blev ikke fundet~%" + +#: guix/scripts/deploy.scm:221 +#, scheme-format +msgid "~a: command terminated with signal ~a~%" +msgstr "" + +#: guix/scripts/deploy.scm:225 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "command output on ~a:~%" +msgstr "guix: ~a: kommando blev ikke fundet~%" + +#: guix/scripts/deploy.scm:246 #, fuzzy, scheme-format #| msgid "missing store item argument\n" msgid "missing deployment file argument~%" msgstr "manglende lagerpostargument\n" +#: guix/scripts/deploy.scm:249 +#, scheme-format +msgid "'--' was used by '-x' was not specified~%" +msgstr "" + +#: guix/scripts/deploy.scm:271 +#, scheme-format +msgid "'-x' specified but no command given~%" +msgstr "" + #: guix/gexp.scm:465 #, scheme-format msgid "resolving '~a' relative to current directory~%" @@ -6069,74 +6225,74 @@ msgstr "ingen sådan proces ~d~%" msgid "exec failed with status ~d~%" msgstr "exec mislykkedes med status ~d~%" -#: guix/transformations.scm:185 guix/transformations.scm:253 +#: guix/transformations.scm:186 guix/transformations.scm:254 #, fuzzy, scheme-format msgid "invalid replacement specification: ~s" msgstr "ugyldig erstatningsspecifikation: ~s~%" -#: guix/transformations.scm:234 +#: guix/transformations.scm:235 #, fuzzy, scheme-format msgid "the source of ~a is not a Git reference" msgstr "kilden for ~a er ikke en Git-reference~%" -#: guix/transformations.scm:337 +#: guix/transformations.scm:338 #, fuzzy, scheme-format msgid "~a: invalid Git URL replacement specification" msgstr "~a: ugyldig GIT-adresseerstatningsspecifikation~%" -#: guix/transformations.scm:415 +#: guix/transformations.scm:416 #, fuzzy, scheme-format msgid "~a: invalid toolchain replacement specification" msgstr "~a: ugyldig GIT-adresseerstatningsspecifikation~%" -#: guix/transformations.scm:517 +#: guix/transformations.scm:518 #, fuzzy #| msgid "failed to determine origin~%" msgid "failed to determine which compiler is used" msgstr "kunne ikke bestemme origin~%" -#: guix/transformations.scm:523 +#: guix/transformations.scm:524 #, fuzzy, scheme-format msgid "failed to determine whether ~a supports ~a" msgstr "kunne ikke bestemme herkomst for pakken ~a~%" -#: guix/transformations.scm:529 +#: guix/transformations.scm:530 #, scheme-format msgid "compiler ~a does not support micro-architecture ~a" msgstr "" -#: guix/transformations.scm:581 +#: guix/transformations.scm:582 #, fuzzy, scheme-format #| msgid "~a: error: ~a~%" msgid "tuning ~a for CPU ~a~%" msgstr "~a: fejl: ~a~%" -#: guix/transformations.scm:721 +#: guix/transformations.scm:722 #, fuzzy, scheme-format msgid "~a: invalid package patch specification" msgstr "~a: ugyldig GIT-adresseerstatningsspecifikation~%" -#: guix/transformations.scm:744 +#: guix/transformations.scm:745 #, fuzzy, scheme-format msgid "could not determine latest upstream release of '~a'~%" msgstr "kunne ikke bestemme herkomst for pakken ~a~%" -#: guix/transformations.scm:752 +#: guix/transformations.scm:753 #, scheme-format msgid "cannot authenticate source of '~a', version ~a~%" msgstr "" -#: guix/transformations.scm:833 +#: guix/transformations.scm:840 #, scheme-format msgid "building for ~a instead of ~a, so tuning cannot be guessed~%" msgstr "" -#: guix/transformations.scm:859 +#: guix/transformations.scm:866 #, fuzzy, scheme-format msgid "Available package transformation options:~%" msgstr "Valider pakkebeskrivelser" -#: guix/transformations.scm:865 +#: guix/transformations.scm:872 #, fuzzy msgid "" "\n" @@ -6147,7 +6303,7 @@ msgstr "" " --with-source=KILDE\n" " brug KILDE når den tilsvarende pakke kompileres" -#: guix/transformations.scm:868 +#: guix/transformations.scm:875 msgid "" "\n" " --with-input=PACKAGE=REPLACEMENT\n" @@ -6157,7 +6313,7 @@ msgstr "" " --with-input=PAKKE=ERSTATNING\n" " erstat afhængighedsPAKKE med ERSTATNING" -#: guix/transformations.scm:871 +#: guix/transformations.scm:878 msgid "" "\n" " --with-graft=PACKAGE=REPLACEMENT\n" @@ -6167,7 +6323,7 @@ msgstr "" " --with-graft=PAKKE=ERSTATNING\n" " pod ERSTATNING på pakker som refererer til PAKKE" -#: guix/transformations.scm:874 +#: guix/transformations.scm:881 msgid "" "\n" " --with-branch=PACKAGE=BRANCH\n" @@ -6177,7 +6333,7 @@ msgstr "" " --with-branch=PAKKE=GREN\n" " byg PAKKE fra seneste version af GREN" -#: guix/transformations.scm:877 +#: guix/transformations.scm:884 msgid "" "\n" " --with-commit=PACKAGE=COMMIT\n" @@ -6187,7 +6343,7 @@ msgstr "" " --with-commit=PAKKE=COMMIT\n" " byg PAKKE fra COMMIT" -#: guix/transformations.scm:880 +#: guix/transformations.scm:887 msgid "" "\n" " --with-git-url=PACKAGE=URL\n" @@ -6197,7 +6353,7 @@ msgstr "" " --with-git-url=PAKKE=URL\n" " byg PAKKE fra arkivet på adressen URL" -#: guix/transformations.scm:883 +#: guix/transformations.scm:890 #, fuzzy msgid "" "\n" @@ -6208,7 +6364,7 @@ msgstr "" " --with-branch=PAKKE=GREN\n" " byg PAKKE fra seneste version af GREN" -#: guix/transformations.scm:886 +#: guix/transformations.scm:893 #, fuzzy msgid "" "\n" @@ -6219,7 +6375,7 @@ msgstr "" " --with-branch=PAKKE=GREN\n" " byg PAKKE fra seneste version af GREN" -#: guix/transformations.scm:889 +#: guix/transformations.scm:896 #, fuzzy msgid "" "\n" @@ -6230,7 +6386,7 @@ msgstr "" " --with-git-url=PAKKE=URL\n" " byg PAKKE fra arkivet på adressen URL" -#: guix/transformations.scm:892 +#: guix/transformations.scm:899 #, fuzzy msgid "" "\n" @@ -6241,7 +6397,7 @@ msgstr "" " --with-git-url=PAKKE=URL\n" " byg PAKKE fra arkivet på adressen URL" -#: guix/transformations.scm:895 +#: guix/transformations.scm:902 #, fuzzy msgid "" "\n" @@ -6252,13 +6408,13 @@ msgstr "" " --with-git-url=PAKKE=URL\n" " byg PAKKE fra arkivet på adressen URL" -#: guix/transformations.scm:901 +#: guix/transformations.scm:908 msgid "" "\n" " --help-transform list package transformation options not shown here" msgstr "" -#: guix/transformations.scm:950 +#: guix/transformations.scm:957 #, scheme-format msgid "transformation '~a' had no effect on ~a~%" msgstr "transformation »~a« havde ingen effekt på ~a~%" @@ -6767,12 +6923,12 @@ msgstr[1] "De følgende pakker vil blive installeret:~%~{~a~%~}~%" msgid "~a: invalid Texinfo markup~%" msgstr "~a: ugyldigt nummer~%" -#: guix/ui.scm:1873 +#: guix/ui.scm:1876 #, scheme-format msgid "invalid syntax: ~a~%" msgstr "ugyldig syntaks: ~a~%" -#: guix/ui.scm:1882 +#: guix/ui.scm:1885 #, scheme-format msgid "Generation ~a\t~a" msgstr "Generation ~a\t~a" @@ -6783,7 +6939,7 @@ msgstr "Generation ~a\t~a" #. usual way of presenting dates in your locale. #. See https://www.gnu.org/software/guile/manual/html_node/SRFI_002d19-Date-to-string.html #. for details. -#: guix/ui.scm:1892 +#: guix/ui.scm:1895 #, scheme-format msgid "~b ~d ~Y ~T" msgstr "~b ~d ~Y ~T" @@ -6791,37 +6947,37 @@ msgstr "~b ~d ~Y ~T" #. TRANSLATORS: The word "current" here is an adjective for #. "Generation", as in "current generation". Use the appropriate #. gender where applicable. -#: guix/ui.scm:1898 +#: guix/ui.scm:1901 #, scheme-format msgid "~a\t(current)~%" msgstr "~a\t(nuværende)~%" -#: guix/ui.scm:1932 +#: guix/ui.scm:1935 #, fuzzy, scheme-format msgid "cannot lock profile ~a: ~a~%" msgstr "kan ikke tilgå »~a«: ~a~%" -#: guix/ui.scm:1934 +#: guix/ui.scm:1937 #, fuzzy, scheme-format msgid "profile ~a is locked by another process~%" msgstr "profilen »~a« findes ikke~%" -#: guix/ui.scm:1963 +#: guix/ui.scm:1966 #, scheme-format msgid "switched from generation ~a to ~a~%" msgstr "skiftede fra generation ~a til ~a~%" -#: guix/ui.scm:1979 +#: guix/ui.scm:1982 #, scheme-format msgid "deleting ~a~%" msgstr "sletter ~a~%" -#: guix/ui.scm:2010 +#: guix/ui.scm:2013 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "Prøv »guix --help« for yderligere information.~%" -#: guix/ui.scm:2102 +#: guix/ui.scm:2105 #, fuzzy #| msgid "" #| "Usage: guix COMMAND ARGS...\n" @@ -6833,7 +6989,7 @@ msgstr "" "Brug: guix KOMMANDO ARG...\n" "Kør KOMMANDO med ARG.\n" -#: guix/ui.scm:2105 +#: guix/ui.scm:2108 #, fuzzy #| msgid "" #| "\n" @@ -6845,7 +7001,7 @@ msgstr "" "\n" " -h, --help vis denne hjælpetekst og afslut" -#: guix/ui.scm:2107 +#: guix/ui.scm:2110 #, fuzzy #| msgid "" #| "\n" @@ -6857,26 +7013,26 @@ msgstr "" "\n" " -V, --version vis versioninformation og afslut" -#: guix/ui.scm:2112 +#: guix/ui.scm:2115 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "KOMMANDO skal være en af underkommandoerne vist nedenfor:\n" -#: guix/ui.scm:2154 +#: guix/ui.scm:2157 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "guix: ~a: kommando blev ikke fundet~%" -#: guix/ui.scm:2156 +#: guix/ui.scm:2159 #, fuzzy, scheme-format msgid "Did you mean @code{~a}?" msgstr "Glemte du @code{(use-modules ~a)}?" -#: guix/ui.scm:2190 +#: guix/ui.scm:2193 #, scheme-format msgid "guix: missing command name~%" msgstr "guix: mangler kommandonavn~%" -#: guix/ui.scm:2198 +#: guix/ui.scm:2201 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "guix: ikke genkendt tilvalg »~a«~%" @@ -7209,22 +7365,22 @@ msgstr "" msgid "unsupported manifest format" msgstr "ikke understøttet manifest-format" -#: guix/profiles.scm:2242 +#: guix/profiles.scm:2247 #, scheme-format msgid "while creating directory `~a': ~a" msgstr "under oprettelse af mappen »~a«: ~a" -#: guix/profiles.scm:2247 +#: guix/profiles.scm:2252 #, scheme-format msgid "Please create the @file{~a} directory, with you as the owner." msgstr "Opret venligst mappen @file{~a} med dig som ejer." -#: guix/profiles.scm:2256 +#: guix/profiles.scm:2261 #, scheme-format msgid "directory `~a' is not owned by you" msgstr "mappen »~a« er ikke ejet af dig" -#: guix/profiles.scm:2260 +#: guix/profiles.scm:2265 #, scheme-format msgid "Please change the owner of @file{~a} to user ~s." msgstr "Ændr venligst ejeren af @file{~a} til brugeren ~s." @@ -7906,12 +8062,17 @@ msgstr "" msgid "'--profile' cannot be used with package options~%" msgstr "" -#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:275 +#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:261 #, fuzzy, scheme-format #| msgid "no packages specified; building an empty pack~%" msgid "no packages specified; creating an empty environment~%" msgstr "ingen pakker angivet; bygger en tom pakke~%" +#: guix/scripts/environment.scm:979 +#, scheme-format +msgid "'--check' is unnecessary when using '--container'; doing nothing~%" +msgstr "" + #: guix/scripts/home/import.scm:179 msgid "" ";; This \"home-environment\" file can be passed to 'guix home reconfigure'\n" @@ -7921,7 +8082,7 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/home.scm:65 +#: guix/scripts/home.scm:66 #, fuzzy #| msgid "" #| "Usage: guix system [OPTION ...] ACTION [ARG ...] [FILE]\n" @@ -7936,59 +8097,59 @@ msgstr "" "Kompiler operativsystemet erklæret i FIL jævnfør HANDLING.\n" "Nogle HANDLINGER understøtter yderligere ARGUMENTER.\n" -#: guix/scripts/home.scm:71 +#: guix/scripts/home.scm:72 #, fuzzy #| msgid " search search for existing service types\n" msgid " search search for existing service types\n" msgstr " search søg efter eksisterende tjenestetyper\n" -#: guix/scripts/home.scm:73 +#: guix/scripts/home.scm:74 #, fuzzy #| msgid " reconfigure switch to a new operating system configuration\n" msgid " reconfigure switch to a new home environment configuration\n" msgstr " reconfigure skift til en ny operativsystemkonfiguration\n" -#: guix/scripts/home.scm:75 +#: guix/scripts/home.scm:76 #, fuzzy #| msgid " roll-back switch to the previous operating system configuration\n" msgid " roll-back switch to the previous home environment configuration\n" msgstr " roll-back skift til den forrige operativsystemkonfiguration\n" -#: guix/scripts/home.scm:77 +#: guix/scripts/home.scm:78 #, fuzzy #| msgid " describe describe the current system\n" msgid " describe describe the current home environment\n" msgstr " describe beskriv det nuværende system\n" -#: guix/scripts/home.scm:79 +#: guix/scripts/home.scm:80 #, fuzzy #| msgid " list-generations list the system generations\n" msgid " list-generations list the home environment generations\n" msgstr " list-generations viser systemoprettelserne\n" -#: guix/scripts/home.scm:81 +#: guix/scripts/home.scm:82 #, fuzzy #| msgid " switch-generation switch to an existing operating system configuration\n" msgid " switch-generation switch to an existing home environment configuration\n" msgstr " switch-generation skift til en eksisterende operativsystemkonfiguration\n" -#: guix/scripts/home.scm:83 +#: guix/scripts/home.scm:84 #, fuzzy #| msgid " delete-generations delete old system generations\n" msgid " delete-generations delete old home environment generations\n" msgstr " delete-generations slet gamle systemoprettelser\n" -#: guix/scripts/home.scm:85 +#: guix/scripts/home.scm:86 #, fuzzy #| msgid " build build the operating system without installing anything\n" msgid " build build the home environment without installing anything\n" msgstr " build kompiler operativsystemet uden at installere noget\n" -#: guix/scripts/home.scm:87 +#: guix/scripts/home.scm:88 msgid " import generates a home environment definition from dotfiles\n" msgstr "" -#: guix/scripts/home.scm:91 +#: guix/scripts/home.scm:92 #, fuzzy #| msgid "" #| "\n" @@ -8004,42 +8165,42 @@ msgstr "" " evaluerer til i stedet for at læse FIL, når\n" " anvendelig" -#: guix/scripts/home.scm:196 +#: guix/scripts/home.scm:210 #, fuzzy, scheme-format msgid "'~a' does not return a home environment ~%" msgstr "»~a« returnerer ikke et operativsystem~%" -#: guix/scripts/home.scm:280 +#: guix/scripts/home.scm:293 #, scheme-format msgid "'~a' populated with all the Home configuration files~%" msgstr "" -#: guix/scripts/home.scm:282 +#: guix/scripts/home.scm:295 #, scheme-format msgid "" "Run @command{guix home reconfigure ~a/home-configuration.scm} to effectively\n" "deploy the home environment described by these files.\n" msgstr "" -#: guix/scripts/home.scm:289 +#: guix/scripts/home.scm:302 #, fuzzy, scheme-format #| msgid "no system generation, nothing to describe~%" msgid "no home environment generation, nothing to describe~%" msgstr "ingen systemoprettelse, intet at beskrive~%" -#: guix/scripts/home.scm:358 +#: guix/scripts/home.scm:371 #, fuzzy, scheme-format #| msgid "guix: missing command name~%" msgid "guix home: missing command name~%" msgstr "guix: mangler kommandonavn~%" -#: guix/scripts/home.scm:360 +#: guix/scripts/home.scm:373 #, fuzzy, scheme-format #| msgid "Try `guix --help' for more information.~%" msgid "Try 'guix home --help' for more information.~%" msgstr "Prøv »guix --help« for yderligere information.~%" -#: guix/scripts/home.scm:528 +#: guix/scripts/home.scm:541 #, fuzzy, scheme-format #| msgid "cannot switch to system generation '~a'~%" msgid "cannot switch to home environment generation '~a'~%" @@ -8092,7 +8253,7 @@ msgstr "" #: guix/scripts/import/cpan.scm:83 guix/scripts/import/crate.scm:97 #: guix/scripts/import/egg.scm:100 guix/scripts/import/gem.scm:98 -#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:100 +#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:101 #, fuzzy, scheme-format msgid "failed to download meta-data for package '~a'~%" msgstr "kunne ikke hente beskrivelse for pakke »~a«:~%" @@ -8188,7 +8349,7 @@ msgid "" " --pin-versions use the exact versions of a module's dependencies" msgstr "" -#: guix/scripts/import/go.scm:117 +#: guix/scripts/import/go.scm:118 #, fuzzy, scheme-format msgid "failed to download meta-data for module '~a'.~%" msgstr "kunne ikke hente beskrivelse for pakke »~a«:~%" @@ -8343,6 +8504,12 @@ msgstr "" "Usage: guix import cran PAKKENAVN\n" "Importer og konverter pakken CRAN for PAKKENAVN.\n" +#: guix/scripts/import/texlive.scm:84 +#, fuzzy, scheme-format +#| msgid "failed to download package '~a'~%" +msgid "failed to import package '~a'~%" +msgstr "kunne ikke hente pakken »~a«:~%" + #: guix/scripts/offload.scm:130 #, fuzzy, scheme-format msgid "The 'system' field is deprecated, please use 'systems' instead.~%" @@ -8802,14 +8969,14 @@ msgstr "~a: værtsnavnet kunne ikke slås op: ~a~%" msgid "~a: unknown type of REPL~%" msgstr "~a: ukendt knudetype~%" -#: guix/scripts/shell.scm:46 +#: guix/scripts/shell.scm:48 msgid "" "Usage: guix shell [OPTION] PACKAGES... [-- COMMAND...]\n" "Build an environment that includes PACKAGES and execute COMMAND or an\n" "interactive shell in that environment.\n" msgstr "" -#: guix/scripts/shell.scm:52 +#: guix/scripts/shell.scm:54 #, fuzzy #| msgid "" #| "\n" @@ -8821,7 +8988,7 @@ msgstr "" "\n" " -d, --derivations returner de derivate stier for de givne pakker" -#: guix/scripts/shell.scm:54 +#: guix/scripts/shell.scm:56 #, fuzzy msgid "" "\n" @@ -8831,7 +8998,7 @@ msgstr "" " -f, --file=FIL kompiler pakken eller derivatet som koden i FIL\n" " evaluerer til" -#: guix/scripts/shell.scm:56 +#: guix/scripts/shell.scm:58 #, fuzzy msgid "" "\n" @@ -8840,30 +9007,30 @@ msgstr "" "\n" " -h, --help vis denne hjælpetekst og afslut" -#: guix/scripts/shell.scm:58 +#: guix/scripts/shell.scm:60 msgid "" "\n" " --rebuild-cache rebuild cached environment, if any" msgstr "" -#: guix/scripts/shell.scm:199 +#: guix/scripts/shell.scm:201 #, fuzzy, scheme-format #| msgid " canonical file name: ~a~%" msgid "ignoring invalid file name: '~a'~%" msgstr " kanonisk filnavn: ~a~%" -#: guix/scripts/shell.scm:280 +#: guix/scripts/shell.scm:266 #, fuzzy, scheme-format #| msgid "unloading service '~a'...~%" msgid "loading environment from '~a'...~%" msgstr "afslutter tjeneste »~a« ...~%" -#: guix/scripts/shell.scm:286 +#: guix/scripts/shell.scm:272 #, scheme-format msgid "not loading '~a' because not authorized to do so~%" msgstr "" -#: guix/scripts/shell.scm:288 +#: guix/scripts/shell.scm:274 #, scheme-format msgid "" "To allow automatic loading of\n" @@ -8875,53 +9042,65 @@ msgid "" "@end example\n" msgstr "" -#: guix/scripts/shell.scm:386 +#: guix/scripts/shell.scm:431 msgid "" "Consider passing the @option{--check} option once\n" "to make sure your shell does not clobber environment variables." msgstr "" -#: guix/scripts/style.scm:241 +#: guix/scripts/style.scm:499 #, fuzzy, scheme-format #| msgid "~s: invalid G-expression input~%" msgid "~a: complex expression, bailing out~%" msgstr "~s: ugyldige G-udtryksindata~%" -#: guix/scripts/style.scm:259 +#: guix/scripts/style.scm:517 #, fuzzy, scheme-format #| msgid "module name ~a does not match file name '~a'~%" msgid "~a: input label '~a' does not match package name, bailing out~%" msgstr "modulnavnet ~a matcher ikke filnavnet »~a«~%" -#: guix/scripts/style.scm:264 +#: guix/scripts/style.scm:522 #, scheme-format msgid "~a: non-trivial input, bailing out~%" msgstr "" -#: guix/scripts/style.scm:288 +#: guix/scripts/style.scm:546 #, fuzzy, scheme-format #| msgid "~s: invalid G-expression input~%" msgid "~a: input expression is too short~%" msgstr "~s: ugyldige G-udtryksindata~%" -#: guix/scripts/style.scm:380 +#: guix/scripts/style.scm:638 #, fuzzy, scheme-format #| msgid "~a: unsupported kind of search path~%" msgid "~a: unsupported input style, bailing out~%" msgstr "~a: ikke understøttet type af søgesti%" -#: guix/scripts/style.scm:392 +#: guix/scripts/style.scm:650 #, scheme-format msgid "would be edited~%" msgstr "" -#: guix/scripts/style.scm:482 +#: guix/scripts/style.scm:721 +#, fuzzy, scheme-format +#| msgid "failed to download description for package '~a'~%" +msgid "no definition location for package ~a~%" +msgstr "kunne ikke hente beskrivelse for pakke »~a«:~%" + +#: guix/scripts/style.scm:767 +#, fuzzy, scheme-format +#| msgid "~a: unknown action~%" +msgid "~a: unknown styling~%" +msgstr "~a: ukendt handling~%" + +#: guix/scripts/style.scm:774 #, fuzzy, scheme-format #| msgid "~a: invalid symlink specification~%" msgid "~a: invalid input simplification policy~%" msgstr "~a: ugyldig symbolsk henvisningsspecifikation~%" -#: guix/scripts/style.scm:496 +#: guix/scripts/style.scm:788 #, fuzzy msgid "" "Usage: guix style [OPTION]... [PACKAGE]...\n" @@ -8930,7 +9109,13 @@ msgstr "" "Brug: guix gc [TILVALG]... STIER...\n" "Start affaldsindsamleren.\n" -#: guix/scripts/style.scm:498 +#: guix/scripts/style.scm:790 +msgid "" +"\n" +" -S, --styling=RULE apply RULE, a styling rule" +msgstr "" + +#: guix/scripts/style.scm:793 #, fuzzy #| msgid "" #| "\n" @@ -8942,7 +9127,7 @@ msgstr "" "\n" " -n, --dry-run vis hvad der hentes og bygges" -#: guix/scripts/style.scm:504 +#: guix/scripts/style.scm:799 msgid "" "\n" " --input-simplification=POLICY\n" @@ -9093,6 +9278,15 @@ msgstr "lyt efter forbindelser på SOKKEL" msgid "produce debugging output" msgstr "lav fejlsøgningsinformation" +#~ msgid "Please select a disk." +#~ msgstr "Vælg venligst en disk." + +#, fuzzy +#~ msgid "" +#~ "Failed to import package ~s.\n" +#~ "reason: ~s.~%" +#~ msgstr "kunne ikke registrere »~a« under »~a«~%" + #, fuzzy #~| msgid "the DAG of services" #~ msgid "Other services" diff --git a/po/guix/de.po b/po/guix/de.po index 98b27258a3..62a2279f10 100644 --- a/po/guix/de.po +++ b/po/guix/de.po @@ -2,15 +2,15 @@ # Copyright (C) 2012-2020 the authors of Guix (msgids) and the following authors (msgstr) # This file is distributed under the same license as the guix package. # Mario Blättermann , 2014, 2015, 2016, 2018. -# Florian Pelz , 2018, 2019, 2020, 2021. +# Florian Pelz , 2018, 2019, 2020, 2021, 2022. # Adina Wagner , 2021. #: guix/diagnostics.scm:157 msgid "" msgstr "" "Project-Id-Version: guix 1.2.0-pre3\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" -"PO-Revision-Date: 2021-12-15 16:54+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" +"PO-Revision-Date: 2022-02-03 18:22+0000\n" "Last-Translator: Florian Pelz \n" "Language-Team: German \n" "Language: de\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.9.1\n" +"X-Generator: Weblate 4.10.1\n" "X-Bugs: Report translation errors to the Language-Team address.\n" #: gnu.scm:81 @@ -61,37 +61,37 @@ msgstr "" msgid "Try adding @code{(use-service-modules ~a)}." msgstr "Vielleicht sollten Sie @code{(use-service-modules ~a)} einfügen." -#: gnu/packages.scm:96 +#: gnu/packages.scm:97 #, scheme-format msgid "~a: patch not found" msgstr "~a: Patch nicht gefunden" -#: gnu/packages.scm:480 gnu/packages.scm:521 +#: gnu/packages.scm:481 gnu/packages.scm:522 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "Nicht eindeutige Paketangabe „~a“~%" -#: gnu/packages.scm:481 gnu/packages.scm:522 +#: gnu/packages.scm:482 gnu/packages.scm:523 #, scheme-format msgid "choosing ~a@~a from ~a~%" msgstr "Benutzt wird ~a@~a aus ~a~%" -#: gnu/packages.scm:486 guix/scripts/package.scm:216 +#: gnu/packages.scm:487 guix/scripts/package.scm:218 #, scheme-format msgid "package '~a' has been superseded by '~a'~%" msgstr "Paket „~a“ wurde abgelöst durch „~a“~%" -#: gnu/packages.scm:493 gnu/packages.scm:510 +#: gnu/packages.scm:494 gnu/packages.scm:511 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A: Paket nicht gefunden für Version ~a~%" -#: gnu/packages.scm:494 gnu/packages.scm:511 +#: gnu/packages.scm:495 gnu/packages.scm:512 #, scheme-format msgid "~A: unknown package~%" msgstr "~A: Unbekanntes Paket~%" -#: gnu/packages.scm:550 +#: gnu/packages.scm:551 #, scheme-format msgid "package `~a' lacks output `~a'~%" msgstr "Paket „~a“ fehlt die Ausgabe „~a“~%" @@ -107,9 +107,9 @@ msgid "" "turn refers to everything the operating system needs: its kernel, initrd,\n" "system profile, boot script, and so on." msgstr "" -"Das oberste Verzeichnis des Betriebssystems erstellen, welches um\n" -"alles erweitert wird, was das Betriebssystem braucht: sein Kernel,\n" -"Initrd, Systemprofil, Boot-Skript und so weiter." +"Das oberste Verzeichnis des Betriebssystems erstellen, welches alles\n" +"enthalten wird, was das Betriebssystem braucht: sein Kernel, Initrd,\n" +"Systemprofil, Boot-Skript und so weiter." #: gnu/services.scm:406 msgid "" @@ -327,22 +327,17 @@ msgstr "" "wird. Prozesse, die ein paar Sekunden nach @code{SIGTERM} immer noch laufen,\n" "werden mit @code{SIGKILL} abgewürgt." -#: gnu/home/services.scm:127 -#, fuzzy -#| msgid "" -#| "Build the operating system top-level directory, which in\n" -#| "turn refers to everything the operating system needs: its kernel, initrd,\n" -#| "system profile, boot script, and so on." +#: gnu/home/services.scm:128 msgid "" "Build the home environment top-level directory,\n" "which in turn refers to everything the home environment needs: its\n" "packages, configuration files, activation script, and so on." msgstr "" -"Das oberste Verzeichnis des Betriebssystems erstellen, welches um\n" -"alles erweitert wird, was das Betriebssystem braucht: sein Kernel,\n" -"Initrd, Systemprofil, Boot-Skript und so weiter." +"Das oberste Verzeichnis der Persönlichen Umgebung erstellen, welches\n" +"alles enthalten wird, was die Persönliche Umgebung braucht: ihre Pakete,\n" +"Konfigurationsdateien, Aktivierungs-Skript und so weiter." -#: gnu/home/services.scm:158 +#: gnu/home/services.scm:159 #, scheme-format msgid "" "This is the @dfn{home profile} and can be found in\n" @@ -350,48 +345,57 @@ msgid "" "configuration files that the user has declared in their\n" "@code{home-environment} record." msgstr "" +"Dies ist das @dfn{Persönliche Profil}. Es ist in @file{~/.guix-home/profile}\n" +"zu finden und enthält die Pakete sowie Konfigurationsdateien, die der\n" +"Benutzer in seinem @code{home-environment}-Verbundsobjekt deklariert hat." -#: gnu/home/services.scm:180 +#: gnu/home/services.scm:181 #, scheme-format msgid "duplicate definition for `~a' environment variable ~%" -msgstr "" +msgstr "Doppelte Definition der Umgebungsvariablen „~a“~%" -#: gnu/home/services.scm:242 -#, fuzzy -#| msgid "checking the environment variables visible from shell '~a'...~%" +#: gnu/home/services.scm:243 msgid "Set the environment variables." -msgstr "In der Shell „~a“ sichtbare Umgebungsvariable werden geprüft …~%" +msgstr "Die Umgebungsvariablen festlegen." -#: gnu/home/services.scm:253 -#, fuzzy, scheme-format -#| msgid "duplicate '~a' entry for /etc" +#: gnu/home/services.scm:254 +#, scheme-format msgid "duplicate '~a' entry for files/" -msgstr "Doppelter Eintrag „~a“ für /etc" +msgstr "Doppelter Eintrag „~a“ für files/" -#: gnu/home/services.scm:277 +#: gnu/home/services.scm:278 #, scheme-format msgid "" "Configuration files for programs that\n" "will be put in @file{~/.guix-home/files}." msgstr "" +"Konfigurationsdateien für Programme. Sie werden in @file{~/.guix-home/files}\n" +"platziert." #. TRANSLATORS: 'on-first-login' is the name of a service and #. shouldn't be translated -#: gnu/home/services.scm:308 +#: gnu/home/services.scm:309 msgid "" "XDG_RUNTIME_DIR doesn't exists, on-first-login script\n" "won't execute anything. You can check if xdg runtime directory exists,\n" "XDG_RUNTIME_DIR variable is set to appropriate value and manually execute the\n" "script by running '$HOME/.guix-home/on-first-login'" msgstr "" +"XDG_RUNTIME_DIR existiert nicht, deshalb kann das Skript on-first-login\n" +"nichts ausführen. Sie können prüfen, ob das XDG-Laufzeitverzeichnis\n" +"existiert, ob die Variable XDG_RUNTIME_DIR auf den rechten Wert\n" +"festgelegt wird, oder das Skript von Hand ausführen, indem Sie\n" +"„$HOME/.guix-home/on-first-login“ eingeben" -#: gnu/home/services.scm:328 +#: gnu/home/services.scm:329 msgid "" "Run gexps on first user login. Can be\n" "extended with one gexp." msgstr "" +"G-Ausdrücke bei der ersten Anmeldung ausführen. Dies kann mit einem\n" +"G-Ausdruck erweitert werden." -#: gnu/home/services.scm:391 +#: gnu/home/services.scm:392 msgid "" "Run gexps to activate the current\n" "generation of home environment and update the state of the home\n" @@ -399,61 +403,74 @@ msgid "" "reconfiguration or generation switching. This service can be extended\n" "with one gexp, but many times, and all gexps must be idempotent." msgstr "" +"G-Ausdrücke ausführen, um die aktuelle Generation der Persönlichen\n" +"Umgebung zu aktivieren und den Zustand des Persönlichen Verzeichnisses\n" +"zu aktualisieren. Das Skript @command{activate} wird beim Rekonfigurieren oder\n" +"beim Wechsel der Generation automatisch ausgeführt. Dieser Dienst kann\n" +"mehrmals mit einem G-Ausdruck erweitert werden, welcher idempotent\n" +"sein muss." -#: gnu/home/services.scm:472 +#: gnu/home/services.scm:473 #, scheme-format msgid "" "Comparing ~a and\n" "~10t~a..." msgstr "" +"Vergleich von ~a und\n" +"~10t~a …" -#: gnu/home/services.scm:474 +#: gnu/home/services.scm:475 #, scheme-format msgid " done (~a)\n" -msgstr "" +msgstr " erledigt (~a)\n" #. TRANSLATORS: 'on-change' is the name of a service type, it #. probably shouldn't be translated. -#: gnu/home/services.scm:483 +#: gnu/home/services.scm:484 msgid "" "Evaluating on-change gexps.\n" "\n" msgstr "" +"G-Ausdrücke für on-change werden ausgewertet.\n" +"\n" -#: gnu/home/services.scm:485 +#: gnu/home/services.scm:486 msgid "" "On-change gexps evaluation finished.\n" "\n" msgstr "" +"Die Auswertung der G-Ausdrücke für on-change wurde abgeschlossen.\n" +"\n" -#: gnu/home/services.scm:499 +#: gnu/home/services.scm:500 msgid "" "G-expressions to run if the specified files have changed since the\n" "last generation. The extension should be a list of lists where the\n" "first element is the pattern for file or directory that expected to be\n" "changed, and the second element is the G-expression to be evaluated." msgstr "" +"Die G-Ausdrücke, die ausgeführt werden sollen, wenn sich die\n" +"entsprechenden Dateien seit der letzten Generation geändert haben. Die\n" +"Erweiterung muss aus einer Liste von Listen bestehen, wobei jeweils das\n" +"erste Element das Muster für entsprechende Dateien und Verzeichnisse\n" +"ist, die sich ändern, und das zweite Element der auszuwertende\n" +"G-Ausdruck ist." -#: gnu/home/services.scm:519 -#, fuzzy -#| msgid "" -#| "Store provenance information about the system in the system\n" -#| "itself: the channels used when building the system, and its configuration\n" -#| "file, when available." +#: gnu/home/services.scm:520 msgid "" "Store provenance information about the home environment in the home\n" "environment itself: the channels used when building the home\n" "environment, and its configuration file, when available." msgstr "" -"Provenienzinformationen über das System als Teil des Systems speichern,\n" -"d.h.@: die Kanäle, die zum Erstellen des Systems benutzt wurden, und\n" -"falls verfügbar seine Konfigurationsdatei." +"Provenienzinformationen über die Persönliche Umgebung als Teil der\n" +"Persönlichen Umgebung speichern, d.h.@: die Kanäle, die zum Erstellen\n" +"der Persönlichen Umgebung benutzt wurden, und falls verfügbar ihre\n" +"Konfigurationsdatei." #: gnu/home/services/symlink-manager.scm:144 -#, fuzzy, scheme-format -#| msgid "copying to '~a'..." +#, scheme-format msgid "Backing up ~a..." -msgstr "Nach „~a“ kopieren …" +msgstr "Sicherungskopie von ~a anlegen …" #: gnu/home/services/symlink-manager.scm:147 #: gnu/home/services/symlink-manager.scm:169 @@ -461,40 +478,43 @@ msgstr "Nach „~a“ kopieren …" #: gnu/home/services/symlink-manager.scm:215 #: gnu/home/services/symlink-manager.scm:223 msgid " done\n" -msgstr "" +msgstr " erledigt\n" #: gnu/home/services/symlink-manager.scm:154 msgid "" "Cleaning up symlinks from previous home-environment.\n" "\n" msgstr "" +"Säuberung der symbolischen Verknüpfungen aus der alten Persönlichen Umgebung.\n" +"\n" #: gnu/home/services/symlink-manager.scm:158 msgid "" "Cleanup finished.\n" "\n" msgstr "" +"Säuberung abgeschlossen.\n" +"\n" #: gnu/home/services/symlink-manager.scm:166 #: gnu/home/services/symlink-manager.scm:182 -#, fuzzy, scheme-format -#| msgid "deploying to ~a...~%" +#, scheme-format msgid "Removing ~a..." -msgstr "Nach „~a“ aufspielen …~%" +msgstr "Löschen von ~a …" #: gnu/home/services/symlink-manager.scm:172 #, scheme-format msgid "Skipping ~a (not an empty directory)... done\n" -msgstr "" +msgstr "Wird übersprungen: ~a (Kein leeres Verzeichnis) … erledigt\n" #: gnu/home/services/symlink-manager.scm:187 #, scheme-format msgid "Skipping ~a (not a symlink to store)... done\n" -msgstr "" +msgstr "Wird übersprungen: ~a (Keine symbolische Verknüpfung in den Store) … erledigt\n" #: gnu/home/services/symlink-manager.scm:198 msgid "New symlinks to home-environment will be created soon.\n" -msgstr "" +msgstr "Neue symbolische Verknüpfungen in die Persönliche Umgebung werden bald erzeugt.\n" #: gnu/home/services/symlink-manager.scm:200 #, scheme-format @@ -502,22 +522,23 @@ msgid "" "All conflicting files will go to ~a.\n" "\n" msgstr "" +"Alle im Konflikt stehenden Dateien werden verschoben nach ~a.\n" +"\n" #: gnu/home/services/symlink-manager.scm:210 #, scheme-format msgid "Skipping ~a (directory already exists)... done\n" -msgstr "" +msgstr "Wird übersprungen: ~a (Verzeichnis existiert bereits) … erledigt\n" #: gnu/home/services/symlink-manager.scm:213 -#, fuzzy, scheme-format -#| msgid "deploying to ~a...~%" +#, scheme-format msgid "Creating ~a..." -msgstr "Nach „~a“ aufspielen …~%" +msgstr "Erzeugen von ~a …" #: gnu/home/services/symlink-manager.scm:220 #, scheme-format msgid "Symlinking ~a -> ~a..." -msgstr "" +msgstr "Symbolische Verknüpfung erzeugen ~a -> ~a …" #: gnu/home/services/symlink-manager.scm:234 msgid "" @@ -525,6 +546,9 @@ msgid "" "Finished updating symlinks.\n" "\n" msgstr "" +" erledgt\n" +"Aktualisieren symbolischer Verknüpfungen abgeschlossen.\n" +"\n" #: gnu/home/services/symlink-manager.scm:248 msgid "" @@ -533,6 +557,10 @@ msgid "" "on every activation. If an existing file would be overwritten by a\n" "symlink, backs up that file first." msgstr "" +"Macht ein Skript @code{update-symlinks} verfügbar, das symbolische Verknüpfungen auf\n" +"Konfigurationsdateien und -verzeichnisse bei jeder Aktivierung erzeugt. Wenn\n" +"eine bereits existierende Datei durch eine symbolische Verknüpfung überschrieben\n" +"würde, dann wird zuerst eine Sicherungskopie davon angelegt." #: gnu/system/file-systems.scm:135 #, scheme-format @@ -716,12 +744,12 @@ msgstr "MELPA-Fetcher ~a wird nicht unterstützt. Stattdessen wird das unstabile msgid "Updater for ELPA packages" msgstr "Aktualisierungsprogramm für ELPA-Pakete" -#: guix/import/github.scm:170 +#: guix/import/github.scm:175 #, scheme-format msgid "~a is unreachable (~a)~%" msgstr "~a ist nicht erreichbar (~a)~%" -#: guix/import/github.scm:260 +#: guix/import/github.scm:274 msgid "Updater for GitHub packages" msgstr "Aktualisierungsprogramm für GitHub-Pakete" @@ -757,12 +785,22 @@ msgstr "Kein GNU-Paket für ~a gefunden" msgid "failed to determine latest release of GNU ~a" msgstr "Die neueste Veröffentlichung für GNU ~a konnte nicht festgestellt werden" -#: guix/import/go.scm:569 +#: guix/import/go.scm:571 #, scheme-format msgid "unsupported vcs type '~a' for package '~a'" msgstr "Nicht unterstützter Versionskontrollsystemtyp „~a“ des Pakets „~a“" -#: guix/import/go.scm:647 +#: guix/import/go.scm:594 +#, scheme-format +msgid "version ~a of ~a is not available~%" +msgstr "Version ~a von ~a ist nicht verfügbar~%" + +#: guix/import/go.scm:597 +#, scheme-format +msgid "Pick one of the following available versions:~{ ~a~}." +msgstr "Wählen Sie eine der folgenden verfügbaren Versionen:~{ ~a~}." + +#: guix/import/go.scm:671 #, scheme-format msgid "" "Failed to import package ~s.\n" @@ -773,15 +811,6 @@ msgstr "" "Grund: ~s konnte nicht abgerufen werden: HTTP-Fehler ~a (~s).\n" "Das Paket und dessen Abhängigkeiten werden nicht importiert.~%" -#: guix/import/go.scm:656 -#, scheme-format -msgid "" -"Failed to import package ~s.\n" -"reason: ~s.~%" -msgstr "" -"Paket ~s konnte nicht importiert werden.\n" -"Grund: ~s.~%" - #: guix/import/minetest.scm:178 #, scheme-format msgid "In ~a: author names must consist of at least a single character.~%" @@ -875,77 +904,103 @@ msgstr "opam: Paket „~a“ nicht gefunden~%" msgid "Updater for OPAM packages" msgstr "Aktualisierungsprogramm für OPAM-Pakete" -#: guix/import/pypi.scm:230 +#: guix/import/pypi.scm:233 msgid "Could not extract requirement name in spec:" msgstr "Der Requirement-Name konnte nicht aus der Spezifikation extrahiert werden:" -#: guix/import/pypi.scm:290 +#: guix/import/pypi.scm:293 #, scheme-format msgid "parse-requires.txt reached an unexpected condition on line ~a~%" msgstr "parse-requires.txt ist in einen unerwarteten Zustand gelaufen in Zeile ~a~%" -#: guix/import/pypi.scm:356 +#: guix/import/pypi.scm:359 #, scheme-format msgid "Failed to extract file: ~a from wheel.~%" msgstr "Datei konnte nicht extrahiert werden: ~a aus dem Wheel.~%" -#: guix/import/pypi.scm:385 +#: guix/import/pypi.scm:388 #, scheme-format msgid "Cannot guess requirements from source archive: no requires.txt file found.~%" msgstr "Requirements können nicht aus dem Quellarchiv erraten werden: Keine Datei requires.txt gefunden.~%" -#: guix/import/pypi.scm:390 +#: guix/import/pypi.scm:393 #, scheme-format msgid "Unsupported archive format; cannot determine package dependencies from source archive: ~a~%" msgstr "Nicht unterstütztes Archivformat. Paketabhängigkeiten können nicht anhand des Quellarchivs bestimmt werden: ~a~%" -#: guix/import/pypi.scm:489 +#: guix/import/pypi.scm:434 +#, scheme-format +msgid "project name ~a does not appear verbatim in the PyPI URI~%" +msgstr "Der Projektname ~a kommt nicht wörtlich in der PyPI-URI vor~%" + +#: guix/import/pypi.scm:437 +#, scheme-format +msgid "" +"The PyPI URI is: @url{~a}. You should review the\n" +"pypi-uri declaration in the generated package. You may need to replace ~s with\n" +"a substring of the PyPI URI that identifies the package." +msgstr "" +"Die PyPI-URI ist: @url{~a}.\n" +"Passen Sie auf, ob die pypi-uri-Deklaration im erzeugten Paket stimmt.\n" +"Womöglich müssen Sie anstelle von ~s einen Teil der PyPI-URI\n" +"angeben, der das Paket bezeichnet." + +#: guix/import/pypi.scm:505 #, scheme-format msgid "no source release for pypi package ~a ~a~%" msgstr "Es gibt keine Quellcode-Veröffentlichung für das PyPI-Paket ~a ~a~%" -#: guix/import/pypi.scm:554 +#: guix/import/pypi.scm:509 +#, scheme-format +msgid "" +"This indicates that the\n" +"package is available on PyPI, but only as a \"wheel\" containing binaries, not\n" +"source. To build it from source, refer to the upstream repository at\n" +"@uref{~a}." +msgstr "" + +#: guix/import/pypi.scm:579 msgid "Updater for PyPI packages" msgstr "Aktualisierungsprogramm für PyPI-Pakete" -#: gnu/installer.scm:214 +#: gnu/installer.scm:217 msgid "Locale" msgstr "Locale" -#: gnu/installer.scm:230 gnu/installer/newt/timezone.scm:58 +#: gnu/installer.scm:233 gnu/installer/newt/timezone.scm:58 msgid "Timezone" msgstr "Zeitzone" -#: gnu/installer.scm:247 +#: gnu/installer.scm:250 msgid "Keyboard mapping selection" msgstr "Tastaturbelegung auswählen" -#: gnu/installer.scm:256 gnu/installer/newt/hostname.scm:26 +#: gnu/installer.scm:259 gnu/installer/newt/hostname.scm:26 msgid "Hostname" msgstr "Rechnername" -#: gnu/installer.scm:265 +#: gnu/installer.scm:268 msgid "Network selection" msgstr "Netzwerkanbindung auswählen" -#: gnu/installer.scm:272 +#: gnu/installer.scm:275 msgid "Substitute server discovery" msgstr "Angebotene Substitutserver" -#: gnu/installer.scm:279 gnu/installer/newt/user.scm:68 -#: gnu/installer/newt/user.scm:205 +#: gnu/installer.scm:282 gnu/installer/newt/user.scm:67 +#: gnu/installer/newt/user.scm:204 msgid "User creation" msgstr "Benutzerkonten einrichten" -#: gnu/installer.scm:287 +#: gnu/installer.scm:290 msgid "Services" msgstr "Dienste" -#: gnu/installer.scm:298 +#: gnu/installer.scm:301 msgid "Partitioning" msgstr "Partitionierung" -#: gnu/installer.scm:305 gnu/installer/newt/final.scm:53 +#: gnu/installer.scm:308 gnu/installer/newt/final.scm:53 msgid "Configuration file" msgstr "Konfigurationsdatei" @@ -957,19 +1012,85 @@ msgstr "Der Zustand von Connman konnte nicht festgestellt werden." msgid "Unable to find expected regexp." msgstr "Erwarteter regulärer Ausdruck konnte nicht gefunden werden." -#: gnu/installer/newt.scm:52 +#: gnu/installer/newt.scm:58 msgid "Press for installation parameters." msgstr "Drücken Sie für Installationsparameter." -#: gnu/installer/newt.scm:65 -#, scheme-format -msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +#: gnu/installer/newt.scm:68 +#, fuzzy +#| msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. You may choose to exit or create a dump archive." msgstr "Beim Installationsprogramm ist ein unerwartetes Problem aufgetreten. Unten sehen Sie die Rückverfolgung (Backtrace). Bitte melden Sie dies in einer E-Mail an <~a>." -#: gnu/installer/newt.scm:68 +#: gnu/installer/newt.scm:71 msgid "Unexpected problem" msgstr "Unerwartetes Problem" +#: gnu/installer/newt.scm:75 +msgid "Dump" +msgstr "" + +#: gnu/installer/newt.scm:76 gnu/installer/newt/ethernet.scm:79 +#: gnu/installer/newt/keymap.scm:56 gnu/installer/newt/locale.scm:43 +#: gnu/installer/newt/network.scm:65 gnu/installer/newt/network.scm:82 +#: gnu/installer/newt/page.scm:315 gnu/installer/newt/page.scm:679 +#: gnu/installer/newt/page.scm:763 gnu/installer/newt/page.scm:828 +#: gnu/installer/newt/partition.scm:54 gnu/installer/newt/partition.scm:90 +#: gnu/installer/newt/partition.scm:125 gnu/installer/newt/partition.scm:140 +#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 +#: gnu/installer/newt/partition.scm:706 gnu/installer/newt/partition.scm:764 +#: gnu/installer/newt/partition.scm:775 gnu/installer/newt/services.scm:124 +#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/wifi.scm:206 +msgid "Exit" +msgstr "Verlassen" + +#: gnu/installer/newt.scm:82 +#, scheme-format +msgid "The dump archive was created as ~a. Would you like to send this archive to the Guix servers?" +msgstr "" + +#: gnu/installer/newt.scm:84 +msgid "Dump archive created" +msgstr "" + +#: gnu/installer/newt.scm:88 +#, scheme-format +msgid "The dump was uploaded as ~a. Please report it by email to ~a." +msgstr "" + +#: gnu/installer/newt.scm:90 +#, fuzzy +#| msgid "some services could not be upgraded~%" +msgid "The dump could not be uploaded." +msgstr "Manche Dienste konnten nicht aktualisiert werden~%" + +#: gnu/installer/newt.scm:93 +msgid "Dump upload result" +msgstr "" + +#: gnu/installer/newt.scm:132 +#, fuzzy, scheme-format +#| msgid "Command failed with exit code ~a.~%" +msgid "External command ~s exited with code ~a" +msgstr "Befehl fehlgeschlagen mit Exit-Code ~a.~%" + +#: gnu/installer/newt.scm:135 +#, scheme-format +msgid "External command ~s terminated by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:138 +#, scheme-format +msgid "External command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:140 +#, fuzzy +#| msgid "internal commands" +msgid "External command error" +msgstr "interne Befehle" + #: gnu/installer/newt/ethernet.scm:66 msgid "No ethernet service available, please try again." msgstr "Kein Ethernet-Dienst verfügbar. Bitte versuchen Sie es erneut." @@ -978,59 +1099,45 @@ msgstr "Kein Ethernet-Dienst verfügbar. Bitte versuchen Sie es erneut." msgid "No service" msgstr "Kein Dienst" -#: gnu/installer/newt/ethernet.scm:76 +#: gnu/installer/newt/ethernet.scm:74 msgid "Please select an ethernet network." msgstr "Bitte wählen Sie ein Ethernet-Netzwerk." -#: gnu/installer/newt/ethernet.scm:77 +#: gnu/installer/newt/ethernet.scm:75 msgid "Ethernet connection" msgstr "Ethernet-Verbindung" -#: gnu/installer/newt/ethernet.scm:81 gnu/installer/newt/keymap.scm:56 -#: gnu/installer/newt/locale.scm:43 gnu/installer/newt/network.scm:63 -#: gnu/installer/newt/network.scm:84 gnu/installer/newt/page.scm:309 -#: gnu/installer/newt/page.scm:673 gnu/installer/newt/page.scm:758 -#: gnu/installer/newt/partition.scm:56 gnu/installer/newt/partition.scm:91 -#: gnu/installer/newt/partition.scm:126 gnu/installer/newt/partition.scm:141 -#: gnu/installer/newt/partition.scm:638 gnu/installer/newt/partition.scm:661 -#: gnu/installer/newt/partition.scm:707 gnu/installer/newt/partition.scm:765 -#: gnu/installer/newt/partition.scm:776 gnu/installer/newt/services.scm:130 -#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:204 -#: gnu/installer/newt/wifi.scm:206 -msgid "Exit" -msgstr "Verlassen" - #: gnu/installer/newt/final.scm:46 #, scheme-format msgid "We're now ready to proceed with the installation! A system configuration file has been generated, it is displayed below. This file will be available as '~a' on the installed system. The new system will be created from this file once you've pressed OK. This will take a few minutes." msgstr "Wir sind nun bereit, mit der Installation fortzufahren! Eine Systemkonfigurationsdatei wurde erzeugt und wird unten angezeigt. Diese Datei wird als „~a“ im installierten System verfügbar sein. Sobald Sie auf OK drücken, wird das neue System aus dieser Datei erstellt. Dies wird ein paar Minuten dauern." -#: gnu/installer/newt/final.scm:70 +#: gnu/installer/newt/final.scm:68 msgid "Installation complete" msgstr "Installation abgeschlossen" -#: gnu/installer/newt/final.scm:71 gnu/installer/newt/parameters.scm:45 +#: gnu/installer/newt/final.scm:69 gnu/installer/newt/parameters.scm:45 #: gnu/installer/newt/welcome.scm:145 msgid "Reboot" msgstr "Neustart" -#: gnu/installer/newt/final.scm:72 +#: gnu/installer/newt/final.scm:70 msgid "Congratulations! Installation is now complete. You may remove the device containing the installation image and press the button to reboot." msgstr "Herzlichen Glückwunsch! Die Installation ist nun abgeschlossen. Sie können das Gerät, auf dem sich das Abbild zur Installation befindet, jetzt entfernen und diesen Knopf drücken, um neu zu starten." -#: gnu/installer/newt/final.scm:86 +#: gnu/installer/newt/final.scm:84 msgid "Installation failed" msgstr "Installation fehlgeschlagen" -#: gnu/installer/newt/final.scm:87 +#: gnu/installer/newt/final.scm:85 msgid "Resume" msgstr "Fortsetzen" -#: gnu/installer/newt/final.scm:88 +#: gnu/installer/newt/final.scm:86 msgid "Restart the installer" msgstr "Installationsprogramm neu starten" -#: gnu/installer/newt/final.scm:89 +#: gnu/installer/newt/final.scm:87 msgid "The final system installation step failed. You can resume from a specific step, or restart the installer." msgstr "Der letzte Installationsschritt ist fehlgeschlagen. Sie können ab einem bestimmten Schritt weitermachen oder mit dem Installationsprogramm von vorne beginnen." @@ -1058,9 +1165,9 @@ msgstr "Bitte wählen Sie einen der folgenden Parameter aus oder drücken Sie au msgid "Installation parameters" msgstr "Installationsparameter" -#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:74 -#: gnu/installer/newt/locale.scm:63 gnu/installer/newt/locale.scm:78 -#: gnu/installer/newt/locale.scm:94 gnu/installer/newt/partition.scm:595 +#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:72 +#: gnu/installer/newt/locale.scm:61 gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:88 gnu/installer/newt/partition.scm:594 #: gnu/installer/newt/timezone.scm:64 msgid "Back" msgstr "Zurück" @@ -1081,16 +1188,16 @@ msgstr "Bitte wählen Sie Ihre Tastaturbelegung. Sie bleibt nur während des Ins msgid "Please choose your keyboard layout. It will be used during the install process, and for the installed system. Non-Latin layouts can be toggled with Alt+Shift. You can switch to a different layout at any time from the parameters menu." msgstr "Bitte wählen Sie Ihre Tastaturbelegung. Sie wird sowohl während des Installationsvorgangs als auch für das installierte System verwendet werden. Belegungen für nichtlateinische Schriften können mit Alt+Umschalt gewechselt werden. Mit dem Parametermenü können Sie jederzeit eine andere Belegung auswählen." -#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:62 -#: gnu/installer/newt/page.scm:308 +#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/page.scm:314 msgid "Continue" msgstr "Fortfahren" -#: gnu/installer/newt/keymap.scm:67 +#: gnu/installer/newt/keymap.scm:65 msgid "Variant" msgstr "Variante" -#: gnu/installer/newt/keymap.scm:70 +#: gnu/installer/newt/keymap.scm:68 msgid "Please choose a variant for your keyboard layout." msgstr "Bitte wählen Sie die zu benutzende Variante Ihrer Tastaturbelegung." @@ -1102,35 +1209,35 @@ msgstr "Locale-Sprache" msgid "Choose the language to use for the installation process and for the installed system." msgstr "Wählen Sie die Sprache aus, die für den Installationsvorgang und das installierte System verwendet werden soll." -#: gnu/installer/newt/locale.scm:57 +#: gnu/installer/newt/locale.scm:55 msgid "Locale location" msgstr "Locale-Gebiet" -#: gnu/installer/newt/locale.scm:60 +#: gnu/installer/newt/locale.scm:58 msgid "Choose a territory for this language." msgstr "Wählen Sie das Gebiet für diese Sprache aus." -#: gnu/installer/newt/locale.scm:71 +#: gnu/installer/newt/locale.scm:67 msgid "Locale codeset" msgstr "Locale-Kodierung" -#: gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:70 msgid "Choose the locale encoding." msgstr "Wählen Sie die Kodierung der Locale." -#: gnu/installer/newt/locale.scm:86 +#: gnu/installer/newt/locale.scm:80 msgid "Locale modifier" msgstr "Locale-Modifikator" -#: gnu/installer/newt/locale.scm:89 +#: gnu/installer/newt/locale.scm:83 msgid "Choose your locale's modifier. The most frequent modifier is euro. It indicates that you want to use Euro as the currency symbol." msgstr "Wählen Sie einen Modifikator für Ihre Locale aus. Der häufigste Modifikator ist „euro“, womit Sie angeben, dass Sie das Eurozeichen als Währungssymbol verwenden möchten." -#: gnu/installer/newt/locale.scm:190 +#: gnu/installer/newt/locale.scm:181 msgid "No location" msgstr "Kein Gebiet" -#: gnu/installer/newt/locale.scm:217 +#: gnu/installer/newt/locale.scm:208 msgid "No modifier" msgstr "Kein Modifikator" @@ -1146,277 +1253,281 @@ msgstr "Installationsmenü" msgid "Abort" msgstr "Abbrechen" -#: gnu/installer/newt/network.scm:61 gnu/installer/newt/network.scm:80 +#: gnu/installer/newt/network.scm:63 gnu/installer/newt/network.scm:78 msgid "Internet access" msgstr "Internetzugang" -#: gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/network.scm:66 msgid "The install process requires Internet access but no network devices were found. Do you want to continue anyway?" msgstr "Zum Installieren wird eine Internetverbindung vorausgesetzt, aber keine Netzwerkgeräte wurden gefunden. Möchten Sie dennoch fortfahren?" -#: gnu/installer/newt/network.scm:78 +#: gnu/installer/newt/network.scm:76 msgid "The install process requires Internet access. Please select a network device." msgstr "Zum Installieren wird eine Internetverbindung vorausgesetzt. Bitte wählen Sie ein Netzwerkgerät aus." -#: gnu/installer/newt/network.scm:103 +#: gnu/installer/newt/network.scm:99 msgid "Powering technology" msgstr "Technologie wird eingeschaltet" -#: gnu/installer/newt/network.scm:104 +#: gnu/installer/newt/network.scm:100 #, scheme-format msgid "Waiting for technology ~a to be powered." msgstr "Warten, bis die Technologie ~a eingeschaltet ist." -#: gnu/installer/newt/network.scm:128 +#: gnu/installer/newt/network.scm:139 msgid "Checking connectivity" msgstr "Verbindung wird geprüft" -#: gnu/installer/newt/network.scm:129 +#: gnu/installer/newt/network.scm:140 msgid "Waiting for Internet access establishment..." msgstr "Auf Herstellung des Internetzugangs wird gewartet …" -#: gnu/installer/newt/network.scm:139 -msgid "The selected network does not provide access to the Internet, please try again." -msgstr "Das ausgewählte Netzwerk stellt keinen Zugang zum Internet bereit, bitte versuchen Sie es erneut." +#: gnu/installer/newt/network.scm:150 +msgid "The selected network does not provide access to the Internet and the Guix substitute server, please try again." +msgstr "Das ausgewählte Netzwerk stellt keinen Zugang zum Internet und Guix’ Substitutserver bereit; bitte versuchen Sie es erneut." -#: gnu/installer/newt/network.scm:141 gnu/installer/newt/wifi.scm:108 +#: gnu/installer/newt/network.scm:152 gnu/installer/newt/wifi.scm:108 msgid "Connection error" msgstr "Verbindungsfehler" -#: gnu/installer/newt/page.scm:198 +#: gnu/installer/newt/page.scm:204 #, scheme-format msgid "Connecting to ~a, please wait." msgstr "Verbindung mit ~a wird hergestellt, bitte warten Sie." -#: gnu/installer/newt/page.scm:199 +#: gnu/installer/newt/page.scm:205 msgid "Connection in progress" msgstr "Verbindung wird hergestellt" -#: gnu/installer/newt/page.scm:218 gnu/installer/newt/user.scm:60 +#: gnu/installer/newt/page.scm:224 gnu/installer/newt/user.scm:59 msgid "Show" msgstr "Anzeigen" -#: gnu/installer/newt/page.scm:225 gnu/installer/newt/page.scm:672 -#: gnu/installer/newt/page.scm:757 gnu/installer/newt/partition.scm:458 -#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 -#: gnu/installer/newt/partition.scm:699 gnu/installer/newt/user.scm:66 -#: gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/page.scm:231 gnu/installer/newt/page.scm:678 +#: gnu/installer/newt/page.scm:762 gnu/installer/newt/partition.scm:457 +#: gnu/installer/newt/partition.scm:636 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:698 gnu/installer/newt/user.scm:65 +#: gnu/installer/newt/user.scm:202 msgid "OK" msgstr "OK" -#: gnu/installer/newt/page.scm:251 +#: gnu/installer/newt/page.scm:257 msgid "Please enter a non empty input." msgstr "Bitte lassen Sie das Eingabefeld nicht leer." -#: gnu/installer/newt/page.scm:252 gnu/installer/newt/user.scm:123 +#: gnu/installer/newt/page.scm:258 gnu/installer/newt/user.scm:122 msgid "Empty input" msgstr "Leere Eingabe" -#: gnu/installer/newt/page.scm:760 +#: gnu/installer/newt/page.scm:765 msgid "Edit" msgstr "Bearbeiten" -#: gnu/installer/newt/partition.scm:47 +#: gnu/installer/newt/page.scm:825 +msgid "Ok" +msgstr "" + +#: gnu/installer/newt/partition.scm:45 msgid "Everything is one partition" msgstr "Alles als eine Partition" -#: gnu/installer/newt/partition.scm:48 +#: gnu/installer/newt/partition.scm:46 msgid "Separate /home partition" msgstr "Separate /home-Partition" -#: gnu/installer/newt/partition.scm:50 +#: gnu/installer/newt/partition.scm:48 msgid "Please select a partitioning scheme." msgstr "Bitte wählen Sie, nach welchem Schema Partitionen angelegt werden sollen." -#: gnu/installer/newt/partition.scm:51 +#: gnu/installer/newt/partition.scm:49 msgid "Partition scheme" msgstr "Partitionierungsschema" #. TRANSLATORS: The ~{ and ~} format specifiers are used to iterate the list #. of device names of the user partitions that will be formatted. -#: gnu/installer/newt/partition.scm:65 +#: gnu/installer/newt/partition.scm:63 #, scheme-format msgid "We are about to write the configured partition table to the disk and format the partitions listed below. Their data will be lost. Do you wish to continue?~%~%~{ - ~a~%~}" msgstr "Wir werden nun die eingerichtete Partitionstabelle auf den Datenträger schreiben und die unten aufgelisteten Partitionen formatieren. Alle Daten darauf gehen verloren. Möchten Sie damit fortfahren?~%~%~{ - ~a~%~}" -#: gnu/installer/newt/partition.scm:71 +#: gnu/installer/newt/partition.scm:69 msgid "Format disk?" msgstr "Datenträger formatieren?" -#: gnu/installer/newt/partition.scm:74 +#: gnu/installer/newt/partition.scm:72 msgid "Partition formatting is in progress, please wait." msgstr "Partition wird formatiert, bitte warten." -#: gnu/installer/newt/partition.scm:75 +#: gnu/installer/newt/partition.scm:73 msgid "Preparing partitions" msgstr "Bereite Partitionen vor" -#: gnu/installer/newt/partition.scm:86 -msgid "Please select a disk." -msgstr "Bitte wählen Sie einen Datenträger aus." +#: gnu/installer/newt/partition.scm:84 +msgid "Please select a disk. The installation device as well as the small devices are filtered." +msgstr "Bitte wählen Sie einen Datenträger aus. Das Gerät, von dem installiert wird, und kleine Geräte werden herausgefiltert." -#: gnu/installer/newt/partition.scm:87 +#: gnu/installer/newt/partition.scm:86 msgid "Disk" msgstr "Datenträger" -#: gnu/installer/newt/partition.scm:102 +#: gnu/installer/newt/partition.scm:101 msgid "Select a new partition table type. Be careful, all data on the disk will be lost." msgstr "Wählen Sie einen neuen Partitionstabellentyp. Seien Sie vorsichtig, alle Daten auf der Platte werden verloren gehen!" -#: gnu/installer/newt/partition.scm:104 +#: gnu/installer/newt/partition.scm:103 msgid "Partition table" msgstr "Partitionstabelle" -#: gnu/installer/newt/partition.scm:121 +#: gnu/installer/newt/partition.scm:120 msgid "Please select a partition type." msgstr "Bitte wählen Sie einen Partitionstyp aus." -#: gnu/installer/newt/partition.scm:122 +#: gnu/installer/newt/partition.scm:121 msgid "Partition type" msgstr "Partitionstyp" -#: gnu/installer/newt/partition.scm:132 +#: gnu/installer/newt/partition.scm:131 msgid "Please select the file-system type for this partition." msgstr "Bitte wählen Sie den Dateisystemtyp für diese Partition." -#: gnu/installer/newt/partition.scm:133 +#: gnu/installer/newt/partition.scm:132 msgid "File-system type" msgstr "Dateisystemtyp" -#: gnu/installer/newt/partition.scm:150 +#: gnu/installer/newt/partition.scm:149 msgid "Primary partitions count exceeded." msgstr "Maximalzahl primärer Partitionen überschritten." -#: gnu/installer/newt/partition.scm:151 gnu/installer/newt/partition.scm:156 -#: gnu/installer/newt/partition.scm:161 +#: gnu/installer/newt/partition.scm:150 gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:160 msgid "Creation error" msgstr "Fehler beim Erzeugen" -#: gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:154 msgid "Extended partition creation error." msgstr "Fehler beim Erzeugen einer erweiterten Partition." -#: gnu/installer/newt/partition.scm:160 +#: gnu/installer/newt/partition.scm:159 msgid "Logical partition creation error." msgstr "Fehler beim Erzeugen einer logischen Partition." -#: gnu/installer/newt/partition.scm:174 +#: gnu/installer/newt/partition.scm:173 #, scheme-format msgid "Please enter the password for the encryption of partition ~a (label: ~a)." msgstr "Bitte geben Sie das Passwort zur Verschlüsselung von Partition ~a an (Name: ~a)." -#: gnu/installer/newt/partition.scm:176 gnu/installer/newt/wifi.scm:92 +#: gnu/installer/newt/partition.scm:175 gnu/installer/newt/wifi.scm:92 msgid "Password required" msgstr "Passwort erforderlich" -#: gnu/installer/newt/partition.scm:181 +#: gnu/installer/newt/partition.scm:180 #, scheme-format msgid "Please confirm the password for the encryption of partition ~a (label: ~a)." msgstr "Bitte bestätigen Sie das Passwort zur Verschlüsselung von Partition ~a (Name: ~a)." -#: gnu/installer/newt/partition.scm:183 gnu/installer/newt/user.scm:160 +#: gnu/installer/newt/partition.scm:182 gnu/installer/newt/user.scm:159 msgid "Password confirmation required" msgstr "Bestätigung des Passworts erforderlich" -#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 +#: gnu/installer/newt/partition.scm:194 gnu/installer/newt/user.scm:167 msgid "Password mismatch, please try again." msgstr "Die Passwörter stimmen nicht überein, bitte versuchen Sie es erneut." -#: gnu/installer/newt/partition.scm:196 gnu/installer/newt/user.scm:169 +#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 msgid "Password error" msgstr "Passwortfehler" -#: gnu/installer/newt/partition.scm:282 +#: gnu/installer/newt/partition.scm:281 msgid "Please enter the partition gpt name." msgstr "Bitte geben Sie den GPT-Namen der Partition ein." -#: gnu/installer/newt/partition.scm:283 +#: gnu/installer/newt/partition.scm:282 msgid "Partition name" msgstr "Partitionsname" -#: gnu/installer/newt/partition.scm:313 +#: gnu/installer/newt/partition.scm:312 msgid "Please enter the encrypted label" msgstr "Bitte geben Sie ein, welchen Namen das Gerät mit Verschlüsselung tragen soll." -#: gnu/installer/newt/partition.scm:314 +#: gnu/installer/newt/partition.scm:313 msgid "Encryption label" msgstr "Name mit Verschlüsselung" -#: gnu/installer/newt/partition.scm:331 +#: gnu/installer/newt/partition.scm:330 #, scheme-format msgid "Please enter the size of the partition. The maximum size is ~a." msgstr "Bitte geben Sie die Größe der Partition ein. Die Maximalgröße ist ~a." -#: gnu/installer/newt/partition.scm:333 +#: gnu/installer/newt/partition.scm:332 msgid "Partition size" msgstr "Partitionsgröße" -#: gnu/installer/newt/partition.scm:351 +#: gnu/installer/newt/partition.scm:350 msgid "The percentage can not be superior to 100." msgstr "Der Prozentwert kann nicht größer als 100 sein." -#: gnu/installer/newt/partition.scm:352 gnu/installer/newt/partition.scm:357 -#: gnu/installer/newt/partition.scm:362 +#: gnu/installer/newt/partition.scm:351 gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:361 msgid "Size error" msgstr "Größenfehler" -#: gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:355 msgid "The requested size is incorrectly formatted, or too large." msgstr "Die angeforderte Größe wurde falsch geschrieben oder ist zu groß." -#: gnu/installer/newt/partition.scm:361 +#: gnu/installer/newt/partition.scm:360 msgid "The request size is superior to the maximum size." msgstr "Die angeforderte Größe ist größer als die Maximalgröße." -#: gnu/installer/newt/partition.scm:381 +#: gnu/installer/newt/partition.scm:380 msgid "Please enter the desired mounting point for this partition. Leave this field empty if you don't want to set a mounting point." msgstr "Bitte geben Sie den gewünschten Einhängepunkt für diese Partition ein. Lassen Sie das Feld leer, wenn Sie keinen Einhängepunkt festlegen möchten." -#: gnu/installer/newt/partition.scm:383 +#: gnu/installer/newt/partition.scm:382 msgid "Mounting point" msgstr "Einhängepunkt" -#: gnu/installer/newt/partition.scm:447 +#: gnu/installer/newt/partition.scm:446 #, scheme-format msgid "Creating ~a partition starting at ~a of ~a." msgstr "Erzeuge Partition ~a mit Anfang bei ~a von ~a." -#: gnu/installer/newt/partition.scm:449 +#: gnu/installer/newt/partition.scm:448 #, scheme-format msgid "You are currently editing partition ~a." msgstr "Sie bearbeiten zurzeit Partition ~a." -#: gnu/installer/newt/partition.scm:452 +#: gnu/installer/newt/partition.scm:451 msgid "Partition creation" msgstr "Partition erzeugen" -#: gnu/installer/newt/partition.scm:453 +#: gnu/installer/newt/partition.scm:452 msgid "Partition edit" msgstr "Partition bearbeiten" -#: gnu/installer/newt/partition.scm:634 +#: gnu/installer/newt/partition.scm:633 #, scheme-format msgid "Are you sure you want to delete everything on disk ~a?" msgstr "Sind Sie sicher, dass Sie den gesamten Inhalt von Datenträger ~a löschen möchten?" -#: gnu/installer/newt/partition.scm:636 +#: gnu/installer/newt/partition.scm:635 msgid "Delete disk" msgstr "Datenträger löschen" -#: gnu/installer/newt/partition.scm:651 +#: gnu/installer/newt/partition.scm:650 msgid "You cannot delete a free space area." msgstr "Sie können keinen leeren Speicher löschen." -#: gnu/installer/newt/partition.scm:652 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:651 gnu/installer/newt/partition.scm:658 msgid "Delete partition" msgstr "Partition löschen" -#: gnu/installer/newt/partition.scm:657 +#: gnu/installer/newt/partition.scm:656 #, scheme-format msgid "Are you sure you want to delete partition ~a?" msgstr "Sind Sie sich sicher, dass Sie Partition ~a löschen möchten?" -#: gnu/installer/newt/partition.scm:674 +#: gnu/installer/newt/partition.scm:673 msgid "" "You can change a disk's partition table by selecting it and pressing ENTER. You can also edit a partition by selecting it and pressing ENTER, or remove it by pressing DELETE. To create a new partition, select a free space area and press ENTER.\n" "\n" @@ -1426,53 +1537,53 @@ msgstr "" "\n" "Mindestens eine Partition muss als Einhängepunkt „/“ haben." -#: gnu/installer/newt/partition.scm:680 +#: gnu/installer/newt/partition.scm:679 #, scheme-format msgid "This is the proposed partitioning. It is still possible to edit it or to go back to install menu by pressing the Exit button.~%~%" msgstr "Dies ist die vorgeschlagene Partitionierung. Sie können sie noch ändern oder zum Installationsmenü zurückkehren, indem Sie den Verlassen-Knopf drücken.~%~%" -#: gnu/installer/newt/partition.scm:690 +#: gnu/installer/newt/partition.scm:689 msgid "Guided partitioning" msgstr "Geführte Partitionierung" -#: gnu/installer/newt/partition.scm:691 +#: gnu/installer/newt/partition.scm:690 msgid "Manual partitioning" msgstr "Manuelle Partitionierung" -#: gnu/installer/newt/partition.scm:716 +#: gnu/installer/newt/partition.scm:715 msgid "No root mount point found." msgstr "Kein Einhängepunkt für das Wurzeldateisystem gefunden." -#: gnu/installer/newt/partition.scm:717 +#: gnu/installer/newt/partition.scm:716 msgid "Missing mount point" msgstr "Fehlender Einhängepunkt" -#: gnu/installer/newt/partition.scm:721 +#: gnu/installer/newt/partition.scm:720 #, scheme-format msgid "Cannot read the ~a partition UUID. You may need to format it." msgstr "UUID der Partition ~a nicht lesbar. Vielleicht müssen Sie sie formatieren." -#: gnu/installer/newt/partition.scm:724 +#: gnu/installer/newt/partition.scm:723 msgid "Wrong partition format" msgstr "Falsches Partitionsformat" -#: gnu/installer/newt/partition.scm:755 +#: gnu/installer/newt/partition.scm:754 msgid "Guided - using the entire disk" msgstr "Geführt — nutzt den gesamten Datenträger" -#: gnu/installer/newt/partition.scm:756 +#: gnu/installer/newt/partition.scm:755 msgid "Guided - using the entire disk with encryption" msgstr "Geführt — auf gesamtem Datenträger, verschlüsselt" -#: gnu/installer/newt/partition.scm:757 +#: gnu/installer/newt/partition.scm:756 msgid "Manual" msgstr "Manuell" -#: gnu/installer/newt/partition.scm:759 +#: gnu/installer/newt/partition.scm:758 msgid "Please select a partitioning method." msgstr "Bitte wählen Sie, nach welcher Methode Sie partitionieren möchten." -#: gnu/installer/newt/partition.scm:760 +#: gnu/installer/newt/partition.scm:759 msgid "Partitioning method" msgstr "Partitionierungsmethode" @@ -1484,41 +1595,35 @@ msgstr "Bitte wählen Sie aus, welche Arbeitsumgebung(en) installiert werden sol msgid "Desktop environment" msgstr "Arbeitsumgebung" -#: gnu/installer/newt/services.scm:59 +#: gnu/installer/newt/services.scm:57 msgid "You can now select networking services to run on your system." msgstr "Sie können jetzt Netzwerkdienste auswählen, die auf Ihrem System laufen sollen." -#: gnu/installer/newt/services.scm:61 +#: gnu/installer/newt/services.scm:59 msgid "Network service" msgstr "Netzwerkdienst" -#: gnu/installer/newt/services.scm:79 -#, fuzzy -#| msgid "You can now select other services to run on your system." +#: gnu/installer/newt/services.scm:75 msgid "You can now select the CUPS printing service to run on your system." -msgstr "Sie können jetzt andere Dienste auswählen, die auf Ihrem System laufen sollen." +msgstr "Sie können jetzt den CUPS-Druckerdienst auswählen, der auf Ihrem System laufen soll." -#: gnu/installer/newt/services.scm:81 +#: gnu/installer/newt/services.scm:77 msgid "Printing and document services" -msgstr "" +msgstr "Druck- und Dokumentendienste" -#: gnu/installer/newt/services.scm:100 -#, fuzzy -#| msgid "No service" +#: gnu/installer/newt/services.scm:94 msgid "Console services" -msgstr "Kein Dienst" +msgstr "Konsolendienste" -#: gnu/installer/newt/services.scm:101 -#, fuzzy -#| msgid "You can now select networking services to run on your system." +#: gnu/installer/newt/services.scm:95 msgid "Select miscellaneous services to run on your non-graphical system." -msgstr "Sie können jetzt Netzwerkdienste auswählen, die auf Ihrem System laufen sollen." +msgstr "Wählen Sie jetzt verschiedene Dienste, die auf Ihrem nichtgrafischen System laufen sollen." -#: gnu/installer/newt/services.scm:115 +#: gnu/installer/newt/services.scm:109 msgid "Network management" msgstr "Netzwerkverwaltung" -#: gnu/installer/newt/services.scm:118 +#: gnu/installer/newt/services.scm:112 msgid "" "Choose the method to manage network connections.\n" "\n" @@ -1554,57 +1659,57 @@ msgstr "" msgid "Please select a timezone." msgstr "Bitte wählen Sie eine Zeitzone aus." -#: gnu/installer/newt/user.scm:45 +#: gnu/installer/newt/user.scm:44 msgid "Name" msgstr "Name" -#: gnu/installer/newt/user.scm:47 +#: gnu/installer/newt/user.scm:46 msgid "Real name" msgstr "Echter Name" -#: gnu/installer/newt/user.scm:49 +#: gnu/installer/newt/user.scm:48 msgid "Home directory" msgstr "Persönliches Verzeichnis" -#: gnu/installer/newt/user.scm:51 +#: gnu/installer/newt/user.scm:50 msgid "Password" msgstr "Passwort" -#: gnu/installer/newt/user.scm:122 +#: gnu/installer/newt/user.scm:121 msgid "Empty inputs are not allowed." msgstr "Leere Eingaben sind nicht zulässig." -#: gnu/installer/newt/user.scm:159 +#: gnu/installer/newt/user.scm:158 msgid "Please confirm the password." msgstr "Bitte bestätigen Sie das Passwort." #. TRANSLATORS: Leave "root" untranslated: it refers to the name of the #. system administrator account. -#: gnu/installer/newt/user.scm:176 +#: gnu/installer/newt/user.scm:175 msgid "Please choose a password for the system administrator (\"root\")." msgstr "Bitte wählen Sie ein Passwort für den Systemadministrator („root“)." -#: gnu/installer/newt/user.scm:178 +#: gnu/installer/newt/user.scm:177 msgid "System administrator password" msgstr "Systemadministratorpasswort" -#: gnu/installer/newt/user.scm:191 +#: gnu/installer/newt/user.scm:190 msgid "Please add at least one user to system using the 'Add' button." msgstr "Bitte fügen Sie mindestens ein Benutzerkonto zum System hinzu, indem Sie den Hinzufügen-Knopf benutzen." -#: gnu/installer/newt/user.scm:194 +#: gnu/installer/newt/user.scm:193 msgid "Add" msgstr "Hinzufügen" -#: gnu/installer/newt/user.scm:195 +#: gnu/installer/newt/user.scm:194 msgid "Delete" msgstr "Löschen" -#: gnu/installer/newt/user.scm:255 +#: gnu/installer/newt/user.scm:254 msgid "Please create at least one user." msgstr "Bitte lassen Sie mindestens einen Nutzer erzeugen." -#: gnu/installer/newt/user.scm:256 +#: gnu/installer/newt/user.scm:255 msgid "No user" msgstr "Kein Nutzer" @@ -1680,60 +1785,60 @@ msgstr "Kein WLAN gefunden" msgid "Wifi" msgstr "WLAN" -#: gnu/installer/parted.scm:433 gnu/installer/parted.scm:470 +#: gnu/installer/parted.scm:455 gnu/installer/parted.scm:492 msgid "Free space" msgstr "Freier Speicher" -#: gnu/installer/parted.scm:559 +#: gnu/installer/parted.scm:581 #, scheme-format msgid "Name: ~a" msgstr "Name: ~a" -#: gnu/installer/parted.scm:560 gnu/installer/parted.scm:606 +#: gnu/installer/parted.scm:582 gnu/installer/parted.scm:628 msgid "None" msgstr "Keiner" -#: gnu/installer/parted.scm:565 +#: gnu/installer/parted.scm:587 #, scheme-format msgid "Type: ~a" msgstr "Typ: ~a" -#: gnu/installer/parted.scm:569 +#: gnu/installer/parted.scm:591 #, scheme-format msgid "File system type: ~a" msgstr "Dateisystemtyp: ~a" -#: gnu/installer/parted.scm:575 +#: gnu/installer/parted.scm:597 #, scheme-format msgid "Bootable flag: ~:[off~;on~]" msgstr "Bootfähig-Flag: ~:[aus~;an~]" -#: gnu/installer/parted.scm:579 +#: gnu/installer/parted.scm:601 #, scheme-format msgid "ESP flag: ~:[off~;on~]" msgstr "ESP-Flag: ~:[aus~;an~]" -#: gnu/installer/parted.scm:585 +#: gnu/installer/parted.scm:607 #, scheme-format msgid "Size: ~a" msgstr "Größe: ~a" -#: gnu/installer/parted.scm:591 +#: gnu/installer/parted.scm:613 #, scheme-format msgid "Encryption: ~:[No~a~;Yes (label '~a')~]" msgstr "Verschlüsselt: ~:[Nein~a~;Ja (Bezeichnung '~a')~]" -#: gnu/installer/parted.scm:597 +#: gnu/installer/parted.scm:619 #, scheme-format msgid "Format the partition? ~:[No~;Yes~]" msgstr "Partition formatieren? ~:[Nein~;Ja~]" -#: gnu/installer/parted.scm:603 +#: gnu/installer/parted.scm:625 #, scheme-format msgid "Mount point: ~a" msgstr "Einhängepunkt: ~a" -#: gnu/installer/parted.scm:1466 +#: gnu/installer/parted.scm:1477 #, scheme-format msgid "Device ~a is still in use." msgstr "Gerät ~a wird noch verwendet." @@ -1752,11 +1857,11 @@ msgstr "NSS-Zertifikate von Mozilla, für HTTPS-Zugriffe" #: gnu/installer/services.scm:110 msgid "Network time service (NTP), to set the clock automatically" -msgstr "" +msgstr "NTP-Dienst, um die Uhrzeit automatisch zu synchronisieren" #: gnu/installer/services.scm:115 msgid "GPM mouse daemon, to use the mouse on the console" -msgstr "" +msgstr "GPM-Maus-Daemon, um die Maus auf der Konsole zu nutzen" #: gnu/installer/services.scm:121 msgid "NetworkManager network connection manager" @@ -1777,7 +1882,7 @@ msgstr "CUPS-Druckersystem (ohne Web-Oberfläche voreingestellt)" #. TRANSLATORS: This is a comment within a Scheme file. Each line must #. start with ";; " (two semicolons and a space). Please keep line #. length below 60 characters. -#: gnu/installer/steps.scm:252 +#: gnu/installer/steps.scm:242 msgid "" ";; This is an operating system configuration generated\n" ";; by the graphical installer.\n" @@ -1790,71 +1895,91 @@ msgstr "" msgid "Unable to locate path: ~a." msgstr "Pfad konnte nicht gefunden werden: ~a." -#: gnu/installer/utils.scm:83 +#: gnu/installer/utils.scm:131 #, scheme-format msgid "Press Enter to continue.~%" msgstr "Drücken Sie die Eingabetaste, um fortzufahren.~%" -#: gnu/installer/utils.scm:108 -#, scheme-format -msgid "Command failed with exit code ~a.~%" +#: gnu/installer/utils.scm:150 +#, fuzzy, scheme-format +#| msgid "Command failed with exit code ~a.~%" +msgid "Command ~s exited with value ~a" msgstr "Befehl fehlgeschlagen mit Exit-Code ~a.~%" -#: gnu/machine/ssh.scm:117 +#: gnu/installer/utils.scm:156 +#, scheme-format +msgid "Command ~s killed by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:162 +#, scheme-format +msgid "Command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:167 +#, scheme-format +msgid "Command ~s succeeded" +msgstr "" + +#: gnu/installer/utils.scm:179 +msgid "run-command-in-installer not set" +msgstr "" + +#: gnu/machine/ssh.scm:120 #, scheme-format msgid " without a 'host-key' is deprecated~%" msgstr " ohne „host-key“ ist veraltet~%" -#: gnu/machine/ssh.scm:192 +#: gnu/machine/ssh.scm:208 #, scheme-format msgid "device '~a' not found: ~a" msgstr "Gerät „~a“ nicht gefunden: ~a" -#: gnu/machine/ssh.scm:207 +#: gnu/machine/ssh.scm:223 #, scheme-format msgid "no file system with label '~a'" msgstr "Kein Dateisystem mit Bezeichnung „~a“" -#: gnu/machine/ssh.scm:226 +#: gnu/machine/ssh.scm:242 #, scheme-format msgid "no file system with UUID '~a'" msgstr "Kein Dateisystem mit UUID „~a“" -#: gnu/machine/ssh.scm:276 +#: gnu/machine/ssh.scm:295 #, scheme-format msgid "missing modules for ~a:~{ ~a~}~%" msgstr "Fehlende Module für ~a:~{ ~a~}~%" -#: gnu/machine/ssh.scm:311 +#: gnu/machine/ssh.scm:333 #, scheme-format msgid "incorrect target system ('~a' was given, while the system reports that it is '~a')~%" msgstr "Falsches Zielsystem (angegeben wurde „~a“, aber es wird gemeldet, das System sei „~a“)~%" -#: gnu/machine/ssh.scm:437 +#: gnu/machine/ssh.scm:459 #, scheme-format msgid "no signing key '~a'. have you run 'guix archive --generate-key?'" msgstr "Kein signierender Schlüssel „~a“ liegt vor. Haben Sie „guix archive --generate-key“ ausgeführt?" -#: gnu/machine/ssh.scm:469 +#: gnu/machine/ssh.scm:491 #, scheme-format msgid "failed to switch systems while deploying '~a':~%~{~s ~}" msgstr "Wechsel des Systems gescheitert beim Aufspielen von „~a“:~%~{~s ~}" -#: gnu/machine/ssh.scm:477 +#: gnu/machine/ssh.scm:499 #, scheme-format msgid "an error occurred while upgrading services on '~a':~%~{~s ~}~%" msgstr "Fehler beim Aktualisieren der Dienste auf „~a“:~%~{~s ~}~%" -#: gnu/machine/ssh.scm:485 +#: gnu/machine/ssh.scm:507 #, scheme-format msgid "failed to install bootloader on '~a':~%~{~s ~}~%" msgstr "Bootloader konnte nicht auf „~a“ installiert werden:~%~{~s ~}~%" -#: gnu/machine/ssh.scm:518 +#: gnu/machine/ssh.scm:540 msgid "could not roll-back machine" msgstr "Konnte Maschine nicht zurücksetzen" -#: gnu/machine/ssh.scm:559 +#: gnu/machine/ssh.scm:581 msgid "" "Provisioning for machines that are accessible over SSH\n" "and have a known host-name. This entails little more than maintaining an SSH\n" @@ -1864,7 +1989,7 @@ msgstr "" "setzt kaum mehr voraus, als dass eine SSH-Verbindung zum Rechner\n" "aufrechterhalten werden kann." -#: gnu/machine/ssh.scm:569 +#: gnu/machine/ssh.scm:591 #, scheme-format msgid "" "unsupported machine configuration '~a'\n" @@ -1873,20 +1998,20 @@ msgstr "" "Nicht unterstützte Maschinenkonfiguration „~a“\n" "für eine Umgebung des Typs „~a“" -#: gnu/packages/bootstrap.scm:178 +#: gnu/packages/bootstrap.scm:188 #, scheme-format msgid "could not find bootstrap binary '~a' for system '~a'" msgstr "Die Bootstrap-Binärdatei „~a“ für System „~a“ konnte nicht gefunden werden" -#: gnu/packages/bootstrap.scm:492 +#: gnu/packages/bootstrap.scm:578 msgid "Raw build system with direct store access" msgstr "Rohes Erstellungssystem mit direktem Store-Zugriff" -#: gnu/packages/bootstrap.scm:500 +#: gnu/packages/bootstrap.scm:586 msgid "Pre-built Guile for bootstrapping purposes." msgstr "Vorerstelltes Guile für Bootstrapping-Zwecke." -#: guix/build/utils.scm:822 +#: guix/build/utils.scm:823 #, scheme-format msgid "'~a~{ ~a~}' exited with status ~a; output follows:~%~%~{ ~a~%~}" msgstr "„~a~{ ~a~}“ hat terminiert mit Status ~a, die Ausgabe ist Folgende:~%~%~{ ~a~%~}" @@ -1926,7 +2051,7 @@ msgid "~A: unrecognized option~%" msgstr "~A: Nicht erkannte Option~%" #: guix/scripts.scm:169 guix/scripts/import.scm:140 -#: guix/scripts/system.scm:1370 +#: guix/scripts/system.scm:1379 #, scheme-format msgid "Did you mean @code{~a}?~%" msgstr "Meinten Sie @code{~a}?~%" @@ -1981,7 +2106,7 @@ msgstr "Müllsammler-Wurzel „~a“ konnte nicht erzeugt werden: ~a~%" #: guix/scripts/build.scm:154 guix/scripts/search.scm:42 #: guix/scripts/show.scm:41 guix/scripts/lint.scm:112 guix/scripts/edit.scm:48 #: guix/scripts/size.scm:246 guix/scripts/graph.scm:553 -#: guix/scripts/repl.scm:80 guix/scripts/style.scm:500 +#: guix/scripts/repl.scm:80 guix/scripts/style.scm:795 msgid "" "\n" " -L, --load-path=DIR prepend DIR to the package module search path" @@ -2196,7 +2321,7 @@ msgstr "" " -s, --system=SYSTEM versuchen, für die angegebene Art von SYSTEM zu\n" " erstellen — z.B. „i686-linux“" -#: guix/scripts/build.scm:357 guix/scripts/system.scm:1023 +#: guix/scripts/build.scm:357 guix/scripts/system.scm:1026 #: guix/scripts/pack.scm:1329 guix/scripts/archive.scm:97 msgid "" "\n" @@ -2242,13 +2367,13 @@ msgstr "" " Ergebnis machen und als Müllsammler-Wurzel\n" " registrieren" -#: guix/scripts/build.scm:368 guix/scripts/package.scm:486 +#: guix/scripts/build.scm:368 guix/scripts/package.scm:488 #: guix/scripts/install.scm:37 guix/scripts/remove.scm:36 #: guix/scripts/upgrade.scm:39 guix/scripts/pull.scm:117 -#: guix/scripts/system.scm:1025 guix/scripts/copy.scm:122 -#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:60 +#: guix/scripts/system.scm:1028 guix/scripts/copy.scm:122 +#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:66 #: guix/scripts/archive.scm:99 guix/scripts/environment.scm:123 -#: guix/scripts/home.scm:94 +#: guix/scripts/home.scm:98 msgid "" "\n" " -v, --verbosity=LEVEL use the given verbosity LEVEL" @@ -2274,30 +2399,30 @@ msgstr "" " angegebenen Ableitungen liefern" #: guix/scripts/build.scm:379 guix/scripts/download.scm:104 -#: guix/scripts/package.scm:504 guix/scripts/install.scm:44 +#: guix/scripts/package.scm:506 guix/scripts/install.scm:44 #: guix/scripts/remove.scm:41 guix/scripts/upgrade.scm:48 #: guix/scripts/search.scm:37 guix/scripts/show.scm:36 guix/scripts/gc.scm:88 #: guix/scripts/git.scm:34 guix/scripts/git/authenticate.scm:110 #: guix/scripts/hash.scm:98 guix/scripts/import.scm:98 #: guix/scripts/import/minetest.scm:46 guix/scripts/import/cran.scm:49 #: guix/scripts/pull.scm:125 guix/scripts/substitute.scm:250 -#: guix/scripts/system.scm:1032 guix/scripts/lint.scm:115 +#: guix/scripts/system.scm:1035 guix/scripts/lint.scm:115 #: guix/scripts/publish.scm:119 guix/scripts/edit.scm:51 #: guix/scripts/size.scm:249 guix/scripts/graph.scm:558 #: guix/scripts/challenge.scm:430 guix/scripts/copy.scm:127 #: guix/scripts/pack.scm:1357 guix/scripts/weather.scm:336 #: guix/scripts/describe.scm:96 guix/scripts/processes.scm:301 -#: guix/scripts/deploy.scm:55 guix/scripts/container.scm:35 +#: guix/scripts/deploy.scm:58 guix/scripts/container.scm:35 #: guix/scripts/container/exec.scm:43 guix/scripts/archive.scm:106 -#: guix/scripts/environment.scm:149 guix/scripts/home.scm:97 +#: guix/scripts/environment.scm:149 guix/scripts/home.scm:101 #: guix/scripts/time-machine.scm:67 guix/scripts/import/cpan.scm:44 #: guix/scripts/import/crate.scm:50 guix/scripts/import/egg.scm:45 #: guix/scripts/import/gem.scm:46 guix/scripts/import/gnu.scm:50 #: guix/scripts/import/go.scm:50 guix/scripts/import/json.scm:52 #: guix/scripts/import/opam.scm:45 guix/scripts/import/pypi.scm:46 #: guix/scripts/import/texlive.scm:45 guix/scripts/refresh.scm:187 -#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:67 -#: guix/scripts/style.scm:509 +#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:69 +#: guix/scripts/style.scm:804 msgid "" "\n" " -h, --help display this help and exit" @@ -2306,29 +2431,29 @@ msgstr "" " -h, --help diese Hilfe anzeigen und beenden" #: guix/scripts/build.scm:381 guix/scripts/download.scm:106 -#: guix/scripts/package.scm:506 guix/scripts/install.scm:46 +#: guix/scripts/package.scm:508 guix/scripts/install.scm:46 #: guix/scripts/remove.scm:43 guix/scripts/upgrade.scm:50 #: guix/scripts/search.scm:39 guix/scripts/show.scm:38 guix/scripts/gc.scm:90 #: guix/scripts/git.scm:36 guix/scripts/git/authenticate.scm:112 #: guix/scripts/hash.scm:100 guix/scripts/import.scm:100 #: guix/scripts/import/minetest.scm:50 guix/scripts/import/cran.scm:55 #: guix/scripts/pull.scm:127 guix/scripts/substitute.scm:252 -#: guix/scripts/system.scm:1034 guix/scripts/lint.scm:119 +#: guix/scripts/system.scm:1037 guix/scripts/lint.scm:119 #: guix/scripts/publish.scm:121 guix/scripts/edit.scm:53 #: guix/scripts/size.scm:251 guix/scripts/graph.scm:560 #: guix/scripts/challenge.scm:432 guix/scripts/copy.scm:129 #: guix/scripts/pack.scm:1359 guix/scripts/weather.scm:338 #: guix/scripts/describe.scm:98 guix/scripts/processes.scm:303 -#: guix/scripts/deploy.scm:57 guix/scripts/container.scm:37 +#: guix/scripts/deploy.scm:60 guix/scripts/container.scm:37 #: guix/scripts/container/exec.scm:45 guix/scripts/archive.scm:108 -#: guix/scripts/environment.scm:151 guix/scripts/home.scm:99 +#: guix/scripts/environment.scm:151 guix/scripts/home.scm:103 #: guix/scripts/time-machine.scm:69 guix/scripts/import/cpan.scm:46 #: guix/scripts/import/crate.scm:52 guix/scripts/import/egg.scm:49 #: guix/scripts/import/gem.scm:48 guix/scripts/import/gnu.scm:52 #: guix/scripts/import/json.scm:54 guix/scripts/import/opam.scm:52 #: guix/scripts/import/pypi.scm:50 guix/scripts/import/texlive.scm:47 #: guix/scripts/refresh.scm:189 guix/scripts/repl.scm:85 -#: guix/scripts/shell.scm:69 guix/scripts/style.scm:511 +#: guix/scripts/shell.scm:71 guix/scripts/style.scm:806 msgid "" "\n" " -V, --version display version information and exit" @@ -2582,165 +2707,164 @@ msgstr "Bezeichnung „~a“ passt nicht zum Paketnamen „~a“" msgid "\"bash-minimal\" should be in 'inputs' when '~a' is used" msgstr "\"bash-minimal\" fehlt in „inputs“, aber „~a“ setzt es voraus" -#: guix/lint.scm:616 +#: guix/lint.scm:614 msgid "no period allowed at the end of the synopsis" msgstr "Am Ende der Zusammenfassung darf kein Punkt gesetzt werden" -#: guix/lint.scm:630 +#: guix/lint.scm:628 msgid "no article allowed at the beginning of the synopsis" msgstr "Am Beginn der Zusammenfassung darf kein Artikel stehen" -#: guix/lint.scm:639 +#: guix/lint.scm:637 msgid "synopsis should be less than 80 characters long" msgstr "Die Zusammenfassung sollte nicht länger als 80 Zeichen sein" -#: guix/lint.scm:648 +#: guix/lint.scm:646 msgid "synopsis should start with an upper-case letter or digit" msgstr "Die Zusammenfassung sollte mit einem Großbuchstaben oder einer Zahl beginnen" -#: guix/lint.scm:656 +#: guix/lint.scm:654 msgid "synopsis should not start with the package name" msgstr "Die Zusammenfassung sollte nicht mit dem Paketnamen beginnen" -#: guix/lint.scm:670 +#: guix/lint.scm:668 msgid "Texinfo markup in synopsis is invalid" msgstr "Das Texinfo-Markup in der Zusammenfassung ist ungültig" -#: guix/lint.scm:678 +#: guix/lint.scm:676 msgid "synopsis contains trailing whitespace" msgstr "Die Zusammenfassung endet auf Leerraumzeichen" -#: guix/lint.scm:695 +#: guix/lint.scm:693 msgid "synopsis should not be empty" msgstr "Die Zusammenfassung sollte nicht leer sein" -#: guix/lint.scm:705 +#: guix/lint.scm:703 #, scheme-format msgid "invalid synopsis: ~s" msgstr "Unzulässige Zusammenfassung: ~s" -#: guix/lint.scm:805 +#: guix/lint.scm:803 #, scheme-format msgid "~a: HTTP GET error for ~a: ~a (~s)~%" msgstr "~a: HTTP-GET-Fehler für ~a: ~a (~s)~%" -#: guix/lint.scm:815 +#: guix/lint.scm:813 #, scheme-format msgid "~a: host lookup failure: ~a~%" msgstr "~a: Nachschlagen des Rechners fehlgeschlagen: ~a~%" -#: guix/lint.scm:820 +#: guix/lint.scm:818 #, scheme-format msgid "~a: TLS certificate error: ~a" msgstr "~a: TLS-Zertifikatsfehler: ~a" -#: guix/lint.scm:825 +#: guix/lint.scm:823 #, scheme-format msgid "~a: TLS error in '~a': ~a~%" msgstr "~a: TLS-Fehler in Prozedur „~a“: ~a~%" -#: guix/lint.scm:836 guix/ui.scm:820 guix/scripts/offload.scm:194 +#: guix/lint.scm:834 guix/ui.scm:820 guix/scripts/offload.scm:194 #, scheme-format msgid "~a: ~a~%" msgstr "~a: ~a~%" -#: guix/lint.scm:868 +#: guix/lint.scm:866 #, scheme-format msgid "URI ~a returned suspiciously small file (~a bytes)" msgstr "URI ~a hat eine verdächtig kleine Datei geliefert (~a Bytes)" -#: guix/lint.scm:877 +#: guix/lint.scm:875 #, scheme-format msgid "permanent redirect from ~a to ~a" msgstr "Permanente Weiterleitung von ~a auf ~a" -#: guix/lint.scm:883 +#: guix/lint.scm:881 #, scheme-format msgid "invalid permanent redirect from ~a" msgstr "Ungültige permanente Weiterleitung von ~a" -#: guix/lint.scm:889 guix/lint.scm:899 +#: guix/lint.scm:887 guix/lint.scm:897 #, scheme-format msgid "URI ~a not reachable: ~a (~s)" msgstr "URI ~a nicht erreichbar: ~a (~s)" -#: guix/lint.scm:905 +#: guix/lint.scm:903 #, scheme-format msgid "URI ~a domain not found: ~a" msgstr "Domain der URI ~a nicht gefunden: ~a" -#: guix/lint.scm:911 +#: guix/lint.scm:909 #, scheme-format msgid "URI ~a unreachable: ~a" msgstr "URI ~a ist nicht erreichbar: ~a" -#: guix/lint.scm:919 +#: guix/lint.scm:917 #, scheme-format msgid "TLS certificate error: ~a" msgstr "TLS-Zertifikatsfehler: ~a" -#: guix/lint.scm:946 +#: guix/lint.scm:944 msgid "invalid value for home page" msgstr "Ungültiger Wert für Homepage" -#: guix/lint.scm:951 +#: guix/lint.scm:949 #, scheme-format msgid "invalid home page URL: ~s" msgstr "Ungültige URL für Homepage: ~s" -#: guix/lint.scm:988 +#: guix/lint.scm:986 msgid "file names of patches should start with the package name" msgstr "Dateinamen von Patches sollten mit dem Paketnamen beginnen" -#: guix/lint.scm:1008 -#, fuzzy, scheme-format -#| msgid "~a: file name is too long" +#: guix/lint.scm:1006 +#, scheme-format msgid "~a: file name is too long, which may break 'make dist'" -msgstr "~a: Der Dateiname ist zu lang" +msgstr "~a: Der Dateiname ist zu lang, was 'make dist' stören kann" -#: guix/lint.scm:1029 +#: guix/lint.scm:1027 #, scheme-format msgid "~a: empty patch" msgstr "~a: Leerer Patch" -#: guix/lint.scm:1038 +#: guix/lint.scm:1036 #, scheme-format msgid "~a: patch lacks comment and upstream status" msgstr "~a: Beim Patch fehlt ein Kommentar und sein Status beim Anbieter der Software" -#: guix/lint.scm:1099 +#: guix/lint.scm:1097 #, scheme-format msgid "proposed synopsis: ~s~%" msgstr "Vorgeschlagene Zusammenfassung: ~s~%" -#: guix/lint.scm:1113 +#: guix/lint.scm:1111 #, scheme-format msgid "proposed description:~% \"~a\"~%" msgstr "Vorgeschlagene Beschreibung:~% \"~a\"~%" -#: guix/lint.scm:1164 +#: guix/lint.scm:1162 msgid "all the source URIs are unreachable:" msgstr "Alle Quell-URIs sind nicht erreichbar:" -#: guix/lint.scm:1193 +#: guix/lint.scm:1191 msgid "the source file name should contain the package name" msgstr "Der Name der Quelldatei sollte den Paketnamen enthalten" -#: guix/lint.scm:1205 +#: guix/lint.scm:1203 msgid "the source URI should not be an autogenerated tarball" msgstr "Als Quell-URI sollte kein automatisch erzeugter Tarball verwendet werden" -#: guix/lint.scm:1229 +#: guix/lint.scm:1227 #, scheme-format msgid "URL should be 'mirror://~a/~a'" msgstr "URL sollte „mirror://~a/~a“ lauten" -#: guix/lint.scm:1269 +#: guix/lint.scm:1267 #, scheme-format msgid "while accessing '~a'" msgstr "Beim Zugriff auf „~a“" -#: guix/lint.scm:1276 +#: guix/lint.scm:1274 #, scheme-format msgid "URL should be '~a'" msgstr "URL sollte „~a“ lauten" @@ -2748,68 +2872,68 @@ msgstr "URL sollte „~a“ lauten" #. TRANSLATORS: check and #:tests? are a #. Scheme symbol and keyword respectively #. and should not be translated. -#: guix/lint.scm:1304 +#: guix/lint.scm:1302 msgid "the 'check' phase should respect #:tests?" msgstr "Die „check“-Phase sollte #:tests? berücksichtigen" -#: guix/lint.scm:1322 guix/lint.scm:1333 guix/lint.scm:1341 +#: guix/lint.scm:1320 guix/lint.scm:1331 guix/lint.scm:1339 #, scheme-format msgid "failed to create ~a derivation: ~a" msgstr "Ableitung für ~a konnte nicht erstellt werden: ~a" -#: guix/lint.scm:1327 +#: guix/lint.scm:1325 #, scheme-format msgid "failed to create ~a derivation: ~s" msgstr "Ableitung für ~a konnte nicht erstellt werden: ~s" -#: guix/lint.scm:1379 +#: guix/lint.scm:1377 #, scheme-format msgid "propagated inputs ~a and ~a collide" msgstr "propagierte Eingabgen ~a und ~a stehen im Konflikt" -#: guix/lint.scm:1403 +#: guix/lint.scm:1401 msgid "invalid license field" msgstr "Ungültiges Lizenz-Feld" -#: guix/lint.scm:1410 +#: guix/lint.scm:1408 msgid "while retrieving CVE vulnerabilities" msgstr "Beim Laden der CVE-Sicherheitslücken" -#: guix/lint.scm:1453 +#: guix/lint.scm:1451 #, scheme-format msgid "probably vulnerable to ~a" msgstr "Wahrscheinlich angreifbar durch ~a" -#: guix/lint.scm:1461 +#: guix/lint.scm:1459 #, scheme-format msgid "no updater for ~a" msgstr "Kein Aktualisierungsprogramm für ~a" -#: guix/lint.scm:1466 guix/lint.scm:1641 +#: guix/lint.scm:1464 guix/lint.scm:1639 #, scheme-format msgid "while retrieving upstream info for '~a'" msgstr "Beim Laden der Informationen vom Ursprung für „~a“" -#: guix/lint.scm:1475 +#: guix/lint.scm:1473 #, scheme-format msgid "can be upgraded to ~a" msgstr "Kann aktualisiert werden auf „~a“" -#: guix/lint.scm:1481 +#: guix/lint.scm:1479 #, scheme-format msgid "updater '~a' failed to find upstream releases" msgstr "Aktualisierungsprogramm „~a“ konnte keine Veröffentlichungen beim Anbieter finden" -#: guix/lint.scm:1508 +#: guix/lint.scm:1506 #, scheme-format msgid "failed to access Disarchive database at ~a" msgstr "Kann auf Disarchive-Datenbank unter „~a“ nicht zugreifen" -#: guix/lint.scm:1535 +#: guix/lint.scm:1533 msgid "Software Heritage rate limit reached; try again later" msgstr "Software Heritage wurde zu oft angefragt; versuchen Sie es später" -#: guix/lint.scm:1539 +#: guix/lint.scm:1537 #, scheme-format msgid "'~a' returned ~a" msgstr "„~a“ lieferte ~a" @@ -2817,166 +2941,166 @@ msgstr "„~a“ lieferte ~a" #. TRANSLATORS: "Software Heritage" is a proper noun #. that must remain untranslated. See #. . -#: guix/lint.scm:1578 +#: guix/lint.scm:1576 msgid "scheduled Software Heritage archival" msgstr "geplante Software-Heritage-Archivierung" -#: guix/lint.scm:1584 +#: guix/lint.scm:1582 msgid "archival rate limit exceeded; try again later" msgstr "Archivierung wurde zu oft angefragt; versuchen Sie es später" -#: guix/lint.scm:1605 +#: guix/lint.scm:1603 msgid "source not archived on Software Heritage and missing from the Disarchive database" msgstr "Quelle nicht archiviert auf Software Heritage und nicht in Disarchive-Datenbank" -#: guix/lint.scm:1615 +#: guix/lint.scm:1613 #, scheme-format msgid "Disarchive entry refers to non-existent SWH directory '~a'" msgstr "Disarchive-Eintrag verweist auf nicht existierendes SWH-Verzeichnis „~a“" -#: guix/lint.scm:1624 +#: guix/lint.scm:1622 msgid "unsupported source type" msgstr "Nicht unterstützte Art von source-Eintrag" -#: guix/lint.scm:1633 +#: guix/lint.scm:1631 msgid "while connecting to Software Heritage" msgstr "beim Verbinden mit Software Heritage" -#: guix/lint.scm:1650 +#: guix/lint.scm:1648 #, scheme-format msgid "ahead of Stackage LTS version ~a" msgstr "neuer als Stackage-LTS-Version ~a" -#: guix/lint.scm:1667 +#: guix/lint.scm:1665 #, scheme-format msgid "tabulation on line ~a, column ~a" msgstr "Tabulator in Zeile ~a, Spalte ~a" -#: guix/lint.scm:1679 +#: guix/lint.scm:1677 #, scheme-format msgid "trailing white space on line ~a" msgstr "Leerzeichen am Ende der Zeile ~a" -#: guix/lint.scm:1693 +#: guix/lint.scm:1691 #, scheme-format msgid "line ~a is way too long (~a characters)" msgstr "Zeile ~a ist viel zu lang (~a Zeichen)" -#: guix/lint.scm:1707 +#: guix/lint.scm:1705 msgid "parentheses feel lonely, move to the previous or next line" msgstr "Hier stehen einsame Klammern, setzen Sie sie auf die vorige oder nächste Zeile" -#: guix/lint.scm:1784 +#: guix/lint.scm:1782 msgid "source file not found" msgstr "Quelldatei nicht gefunden" -#: guix/lint.scm:1796 +#: guix/lint.scm:1794 msgid "Validate package names" msgstr "Paketnamen überprüfen" -#: guix/lint.scm:1800 +#: guix/lint.scm:1798 msgid "Check if tests are explicitly enabled" msgstr "Prüfen gegen voreingestelltes Aktivieren der Tests" -#: guix/lint.scm:1804 +#: guix/lint.scm:1802 msgid "Validate package descriptions" msgstr "Paketbeschreibungen überprüfen" -#: guix/lint.scm:1808 +#: guix/lint.scm:1806 msgid "Identify inputs that should be native inputs" msgstr "Eingaben suchen, die native Eingaben sein sollten" -#: guix/lint.scm:1812 +#: guix/lint.scm:1810 msgid "Identify inputs that shouldn't be inputs at all" msgstr "" "Eingaben suchen, die gar keine Eingaben\n" " sein sollten" -#: guix/lint.scm:1816 +#: guix/lint.scm:1814 msgid "Identify input labels that do not match package names" msgstr "Eingabenbezeichnungen suchen, die nicht zu den Paketnamen passen" -#: guix/lint.scm:1820 +#: guix/lint.scm:1818 msgid "Make sure 'wrap-program' can finds its interpreter." msgstr "Sicherstellen, dass der Interpretierer für „wrap-program“ verfügbar ist" #. TRANSLATORS: is the name of a data type and must not be #. translated. -#: guix/lint.scm:1826 +#: guix/lint.scm:1824 msgid "Make sure the 'license' field is a or a list thereof" msgstr "" "Sicherstellen, dass das „license“-Feld eine oder\n" " eine Liste davon ist" -#: guix/lint.scm:1831 +#: guix/lint.scm:1829 msgid "Make sure tests are only run when requested" msgstr "Sicherstellen, dass Tests nur laufen, wenn sie aktiviert sind" -#: guix/lint.scm:1835 +#: guix/lint.scm:1833 msgid "Suggest 'mirror://' URLs" msgstr "„mirror://“-URLs vorschlagen" -#: guix/lint.scm:1839 +#: guix/lint.scm:1837 msgid "Validate file names of sources" msgstr "Dateinamen der Quellorte überprüfen" -#: guix/lint.scm:1843 +#: guix/lint.scm:1841 msgid "Check for autogenerated tarballs" msgstr "Auf automatisch erzeugte Tarballs prüfen" -#: guix/lint.scm:1847 +#: guix/lint.scm:1845 msgid "Report failure to compile a package to a derivation" msgstr "Fehler dabei melden, ein Paket zu einer Ableitung zu kompilieren" -#: guix/lint.scm:1852 +#: guix/lint.scm:1850 msgid "Report collisions that would occur due to propagated inputs" msgstr "Konflikte melden, die sich aus propagierten Eingaben ergeben würden" -#: guix/lint.scm:1857 +#: guix/lint.scm:1855 msgid "Validate file names and availability of patches" msgstr "Dateinamen und Verfügbarkeit der Patches überprüfen" -#: guix/lint.scm:1861 +#: guix/lint.scm:1859 msgid "Validate patch headers" msgstr "Kopfzeilen der Patches überprüfen" -#: guix/lint.scm:1865 +#: guix/lint.scm:1863 msgid "Look for formatting issues in the source" msgstr "Nach Formatierungsfehlern im Quellort schauen" -#: guix/lint.scm:1872 +#: guix/lint.scm:1870 msgid "Validate package synopses" msgstr "Paketzusammenfassungen überprüfen" -#: guix/lint.scm:1876 +#: guix/lint.scm:1874 msgid "Validate synopsis & description of GNU packages" msgstr "GNU-Paketzusammenfassung und -beschreibung überprüfen" -#: guix/lint.scm:1880 +#: guix/lint.scm:1878 msgid "Validate home-page URLs" msgstr "Homepage-URLs überprüfen" -#: guix/lint.scm:1884 +#: guix/lint.scm:1882 msgid "Validate source URLs" msgstr "Quell-URLs überprüfen" -#: guix/lint.scm:1888 +#: guix/lint.scm:1886 msgid "Suggest GitHub URLs" msgstr "GitHub-URLs vorschlagen" -#: guix/lint.scm:1892 +#: guix/lint.scm:1890 msgid "Check the Common Vulnerabilities and Exposures (CVE) database" msgstr "Die Datenbank der Common Vulnerabilities and Exposures (CVE) überprüfen" -#: guix/lint.scm:1897 +#: guix/lint.scm:1895 msgid "Check the package for new upstream releases" msgstr "Den Ursprung des Pakets auf neue Veröffentlichungen hin prüfen" -#: guix/lint.scm:1901 +#: guix/lint.scm:1899 msgid "Ensure source code archival on Software Heritage" msgstr "Sicherstellen, dass Quellcode bei Software Heritage archiviert wird" -#: guix/lint.scm:1905 +#: guix/lint.scm:1903 msgid "Ensure Haskell packages use Stackage LTS versions" msgstr "Sicherstellen, dass Haskell-Pakete Versionen aus Stackage LTS ausliefern" @@ -3042,7 +3166,7 @@ msgstr "Nicht unterstütztes Prüfsummenformat: ~a~%" msgid "~a: unknown hash algorithm~%" msgstr "~a: Unbekannter Hash-Algorithmus~%" -#: guix/scripts/download.scm:171 guix/scripts/package.scm:1087 +#: guix/scripts/download.scm:171 guix/scripts/package.scm:1090 #: guix/scripts/pull.scm:758 guix/scripts/publish.scm:1260 #: guix/scripts/discover.scm:136 guix/scripts/time-machine.scm:123 #, scheme-format @@ -3074,17 +3198,17 @@ msgstr "Entfernung von Generation ~a verweigert, weil sie die aktuelle Generatio msgid "no matching generation~%" msgstr "Keine passende Generation~%" -#: guix/scripts/package.scm:159 +#: guix/scripts/package.scm:161 #, scheme-format msgid "nothing to be done~%" msgstr "Nichts zu tun~%" -#: guix/scripts/package.scm:260 +#: guix/scripts/package.scm:262 #, scheme-format msgid "package '~a' no longer exists~%" msgstr "Paket „~a“ existiert nicht mehr~%" -#: guix/scripts/package.scm:315 +#: guix/scripts/package.scm:317 #, scheme-format msgid "" "Consider setting the necessary environment\n" @@ -3107,7 +3231,7 @@ msgstr "" "\n" "Sie können sie auch mit @command{guix package --search-paths -p ~s} nachlesen." -#: guix/scripts/package.scm:361 +#: guix/scripts/package.scm:363 msgid "" ";; This \"manifest\" file can be passed to 'guix package -m' to reproduce\n" ";; the content of your profile. This is \"symbolic\": it only specifies\n" @@ -3122,12 +3246,12 @@ msgstr "" ";; nachbilden, wie \"guix describe\" sie anzeigt. Siehe den Abschnitt\n" ";; \"Guix nachbilden\" im Handbuch.\n" -#: guix/scripts/package.scm:393 +#: guix/scripts/package.scm:395 #, scheme-format msgid "no provenance information for this profile~%" msgstr "Zu diesem Profil liegen keine Provenienzinformationen vor~%" -#: guix/scripts/package.scm:395 +#: guix/scripts/package.scm:397 msgid "" ";; This channel file can be passed to 'guix pull -C' or to\n" ";; 'guix time-machine -C' to obtain the Guix revision that was\n" @@ -3137,12 +3261,12 @@ msgstr "" ";; 'guix time-machine -C' angeben, um die Guix-Version zu bekommen, mit\n" ";; der der Inhalt dieses Profils erzeugt wurde.\n" -#: guix/scripts/package.scm:407 +#: guix/scripts/package.scm:409 #, scheme-format msgid ";; Note: these other commits were also used to install some of the packages in this profile:~%" msgstr ";; Anmerkung: Manche der Pakete in diesem Profil wurden mit diesen anderen Commits installiert:~%" -#: guix/scripts/package.scm:437 +#: guix/scripts/package.scm:439 msgid "" "Usage: guix package [OPTION]...\n" "Install, remove, or upgrade packages in a single transaction.\n" @@ -3151,7 +3275,7 @@ msgstr "" "Pakete in einer einzigen Transaktion installieren,\n" "entfernen oder aktualisieren.\n" -#: guix/scripts/package.scm:439 +#: guix/scripts/package.scm:441 msgid "" "\n" " -i, --install PACKAGE ...\n" @@ -3160,7 +3284,7 @@ msgstr "" "\n" " -i, --install=PAKET … PAKET oder PAKETE installieren" -#: guix/scripts/package.scm:442 +#: guix/scripts/package.scm:444 msgid "" "\n" " -e, --install-from-expression=EXP\n" @@ -3171,7 +3295,7 @@ msgstr "" " das Paket installieren, zu dem AUSDRUCK ausgewertet\n" " wird" -#: guix/scripts/package.scm:445 +#: guix/scripts/package.scm:447 msgid "" "\n" " -f, --install-from-file=FILE\n" @@ -3183,7 +3307,7 @@ msgstr "" " das Paket installieren, zu dem der Code in der DATEI\n" " ausgewertet wird" -#: guix/scripts/package.scm:449 +#: guix/scripts/package.scm:451 msgid "" "\n" " -r, --remove PACKAGE ...\n" @@ -3192,7 +3316,7 @@ msgstr "" "\n" " -r, --remove=PAKET … PAKET oder PAKETE entfernen" -#: guix/scripts/package.scm:452 +#: guix/scripts/package.scm:454 msgid "" "\n" " -u, --upgrade[=REGEXP] upgrade all the installed packages matching REGEXP" @@ -3202,7 +3326,7 @@ msgstr "" " alle installierten Pakete aktualisieren, die zum\n" " regulären Ausdruck REGEXP passen" -#: guix/scripts/package.scm:454 +#: guix/scripts/package.scm:456 msgid "" "\n" " -m, --manifest=FILE create a new profile generation with the manifest\n" @@ -3212,7 +3336,7 @@ msgstr "" " -m, --manifest=DATEI eine neue Profilgeneration mit dem Manifest\n" " aus DATEI erzeugen" -#: guix/scripts/package.scm:457 guix/scripts/upgrade.scm:41 +#: guix/scripts/package.scm:459 guix/scripts/upgrade.scm:41 msgid "" "\n" " --do-not-upgrade[=REGEXP] do not upgrade any packages matching REGEXP" @@ -3222,7 +3346,7 @@ msgstr "" " keine Pakete aktualisieren, die zum regulären\n" " Ausdruck REGEXP passen" -#: guix/scripts/package.scm:459 guix/scripts/pull.scm:107 +#: guix/scripts/package.scm:461 guix/scripts/pull.scm:107 msgid "" "\n" " --roll-back roll back to the previous generation" @@ -3230,7 +3354,7 @@ msgstr "" "\n" " --roll-back zurück zur vorherigen Generation wechseln" -#: guix/scripts/package.scm:461 +#: guix/scripts/package.scm:463 msgid "" "\n" " --search-paths[=KIND]\n" @@ -3240,7 +3364,7 @@ msgstr "" " --search-paths[=ART]\n" " benötigte Definitionen von Umgebungsvariablen anzeigen" -#: guix/scripts/package.scm:464 guix/scripts/pull.scm:104 +#: guix/scripts/package.scm:466 guix/scripts/pull.scm:104 msgid "" "\n" " -l, --list-generations[=PATTERN]\n" @@ -3250,7 +3374,7 @@ msgstr "" " -l, --list-generations[=MUSTER]\n" " zum MUSTER passende Generationen auflisten" -#: guix/scripts/package.scm:467 guix/scripts/pull.scm:109 +#: guix/scripts/package.scm:469 guix/scripts/pull.scm:109 msgid "" "\n" " -d, --delete-generations[=PATTERN]\n" @@ -3260,7 +3384,7 @@ msgstr "" " -d, --delete-generations[=MUSTER]\n" " zum MUSTER passende Generationen löschen" -#: guix/scripts/package.scm:470 guix/scripts/pull.scm:112 +#: guix/scripts/package.scm:472 guix/scripts/pull.scm:112 msgid "" "\n" " -S, --switch-generation=PATTERN\n" @@ -3270,7 +3394,7 @@ msgstr "" " -S, --switch-generation=MUSTER\n" " zu einer zum MUSTER passenden Generation wechseln" -#: guix/scripts/package.scm:473 +#: guix/scripts/package.scm:475 msgid "" "\n" " --export-manifest print a manifest for the chosen profile" @@ -3278,7 +3402,7 @@ msgstr "" "\n" " --export-manifest ein Manifest für das gewählte Profil ausgeben" -#: guix/scripts/package.scm:475 +#: guix/scripts/package.scm:477 msgid "" "\n" " --export-channels print channels for the chosen profile" @@ -3286,7 +3410,7 @@ msgstr "" "\n" " --export-channels Kanäle für das gewählte Profil ausgeben" -#: guix/scripts/package.scm:477 guix/scripts/install.scm:34 +#: guix/scripts/package.scm:479 guix/scripts/install.scm:34 #: guix/scripts/remove.scm:33 guix/scripts/upgrade.scm:37 msgid "" "\n" @@ -3296,7 +3420,7 @@ msgstr "" " -p, --profile=PROFIL PROFIL benutzen anstelle des Standardprofils\n" " des Nutzers" -#: guix/scripts/package.scm:479 +#: guix/scripts/package.scm:481 msgid "" "\n" " --list-profiles list the user's profiles" @@ -3304,7 +3428,7 @@ msgstr "" "\n" " --list-profiles Profile des Benutzers auflisten" -#: guix/scripts/package.scm:482 +#: guix/scripts/package.scm:484 msgid "" "\n" " --allow-collisions do not treat collisions in the profile as an error" @@ -3313,7 +3437,7 @@ msgstr "" " --allow-collisions\n" " Kollisionen im Profil nicht als Fehler auffassen" -#: guix/scripts/package.scm:484 +#: guix/scripts/package.scm:486 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" @@ -3322,7 +3446,7 @@ msgstr "" " --bootstrap das Bootstrap-Guile benutzen, um das Profil zu\n" " erstellen" -#: guix/scripts/package.scm:489 +#: guix/scripts/package.scm:491 msgid "" "\n" " -s, --search=REGEXP search in synopsis and description using REGEXP" @@ -3330,7 +3454,7 @@ msgstr "" "\n" " -s, --search=REGEXP in Zusammenfassung und Beschreibung mit REGEXP suchen" -#: guix/scripts/package.scm:491 +#: guix/scripts/package.scm:493 msgid "" "\n" " -I, --list-installed[=REGEXP]\n" @@ -3340,7 +3464,7 @@ msgstr "" " -I, --list-installed[=REGEXP]\n" " zu REGEXP passende installierte Pakete auflisten" -#: guix/scripts/package.scm:494 +#: guix/scripts/package.scm:496 msgid "" "\n" " -A, --list-available[=REGEXP]\n" @@ -3350,7 +3474,7 @@ msgstr "" " -A, --list-available[=REGEXP]\n" " zu REGEXP passende verfügbare Pakete auflisten" -#: guix/scripts/package.scm:497 +#: guix/scripts/package.scm:499 msgid "" "\n" " --show=PACKAGE show details about PACKAGE" @@ -3358,37 +3482,37 @@ msgstr "" "\n" " --show=PAKET Details zu PAKET anzeigen" -#: guix/scripts/package.scm:552 +#: guix/scripts/package.scm:554 #, scheme-format msgid "upgrade regexp '~a' looks like a command-line option~%" msgstr "--upgrade: Der reguläre Ausdruck „~a“ sieht wie eine Befehlszeilenoption aus~%" -#: guix/scripts/package.scm:555 +#: guix/scripts/package.scm:557 #, scheme-format msgid "is this intended?~%" msgstr "Ist das gewollt?~%" -#: guix/scripts/package.scm:605 +#: guix/scripts/package.scm:607 #, scheme-format msgid "~a: unsupported kind of search path~%" msgstr "~a: Nicht unterstützte Art von Suchpfad~%" -#: guix/scripts/package.scm:739 +#: guix/scripts/package.scm:741 #, scheme-format msgid "cannot install non-package object: ~s~%" msgstr "Kann Objekt nicht installieren, das kein Paket ist: ~s~%" -#: guix/scripts/package.scm:918 +#: guix/scripts/package.scm:920 #, scheme-format msgid "~a~@[@~a~]: package not found~%" msgstr "~a~@[@~a~]: Paket nicht gefunden~%" -#: guix/scripts/package.scm:965 guix/scripts/pull.scm:687 +#: guix/scripts/package.scm:967 guix/scripts/pull.scm:687 #, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "Zu Generation „~a“ kann nicht gewechselt werden~%" -#: guix/scripts/package.scm:1060 +#: guix/scripts/package.scm:1062 #, scheme-format msgid "nothing to do~%" msgstr "Nichts zu tun~%" @@ -3659,8 +3783,8 @@ msgstr "" "Aufruf: guix git BEFEHL ARGUMENTE …\n" "Operationen auf Git-Repositorys durchführen.\n" -#: guix/scripts/git.scm:29 guix/scripts/system.scm:945 -#: guix/scripts/container.scm:30 guix/scripts/home.scm:69 +#: guix/scripts/git.scm:29 guix/scripts/system.scm:946 +#: guix/scripts/container.scm:30 guix/scripts/home.scm:70 msgid "The valid values for ACTION are:\n" msgstr "Die gültigen Werte für AKTION sind:\n" @@ -3766,40 +3890,32 @@ msgstr "" " -x, --exclude-vcs Verzeichnisse zur Versionsverwaltung ignorieren" #: guix/scripts/hash.scm:95 -#, fuzzy -#| msgid "" -#| "\n" -#| " -r, --recursive compute the hash on FILE recursively" msgid "" "\n" " -S, --serializer=TYPE compute the hash on FILE according to TYPE serialization" msgstr "" "\n" -" -r, --recursive die Prüfsumme der DATEI rekursiv errechnen" +" -S, --serializer=TYP Prüfsumme der DATEI auf Serialisierung TYP errechnen" -#: guix/scripts/hash.scm:137 -#, fuzzy, scheme-format -#| msgid "'--inherit' is deprecated, use '--preserve' instead~%" -msgid "'--recursive' is deprecated, use '--serializer' instead~%" -msgstr "„--inherit“ ist veraltet, benutzen Sie stattdessen „--preserve“~%" +#: guix/scripts/hash.scm:138 +#, scheme-format +msgid "'--recursive' is deprecated, use '--serializer=nar' instead~%" +msgstr "„--recursive“ ist veraltet, benutzen Sie stattdessen „--serializer=nar“~%" -#: guix/scripts/hash.scm:152 -#, fuzzy, scheme-format -#| msgid "Unsupported image type ~a~%." +#: guix/scripts/hash.scm:153 +#, scheme-format msgid "unsupported serializer type: ~a~%" -msgstr "Nicht unterstützter Abbildtyp ~a~%" +msgstr "Nicht unterstützte Art von Serialisierer: ~a~%" -#: guix/scripts/hash.scm:201 -#, fuzzy, scheme-format -#| msgid "~a: ~a~%" +#: guix/scripts/hash.scm:202 +#, scheme-format msgid "~a ~a~%" -msgstr "~a: ~a~%" +msgstr "~a ~a~%" -#: guix/scripts/hash.scm:210 -#, fuzzy, scheme-format -#| msgid "no arguments specified, nothing to do~%" +#: guix/scripts/hash.scm:211 +#, scheme-format msgid "no arguments specified~%" -msgstr "Keine Argumente angegeben; nichts zu tun~%" +msgstr "Keine Argumente angegeben~%" #: guix/scripts/import.scm:92 msgid "" @@ -3867,9 +3983,9 @@ msgstr "~a: Nach diesem Schlüssel kann nicht sortiert werden~%" #: guix/scripts/import/minetest.scm:115 guix/scripts/import/cran.scm:120 #: guix/scripts/import/elpa.scm:110 guix/scripts/import/cpan.scm:87 #: guix/scripts/import/crate.scm:103 guix/scripts/import/egg.scm:106 -#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:121 +#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:122 #: guix/scripts/import/hackage.scm:158 guix/scripts/import/json.scm:97 -#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:104 +#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:105 #: guix/scripts/import/stackage.scm:130 guix/scripts/import/texlive.scm:88 #, scheme-format msgid "too few arguments~%" @@ -3878,10 +3994,10 @@ msgstr "Zu wenige Argumente~%" #: guix/scripts/import/minetest.scm:117 guix/scripts/import/cran.scm:122 #: guix/scripts/import/elpa.scm:112 guix/scripts/import/cpan.scm:89 #: guix/scripts/import/crate.scm:105 guix/scripts/import/egg.scm:108 -#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:123 +#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:124 #: guix/scripts/import/hackage.scm:149 guix/scripts/import/hackage.scm:160 #: guix/scripts/import/json.scm:99 guix/scripts/import/opam.scm:113 -#: guix/scripts/import/pypi.scm:106 guix/scripts/import/stackage.scm:132 +#: guix/scripts/import/pypi.scm:107 guix/scripts/import/stackage.scm:132 #: guix/scripts/import/texlive.scm:90 #, scheme-format msgid "too many arguments~%" @@ -3911,7 +4027,7 @@ msgstr "" "\n" " -s, --style=STIL Ausgabestil auswählen, als Spezifikation oder Variable" -#: guix/scripts/import/cran.scm:116 guix/scripts/import/texlive.scm:84 +#: guix/scripts/import/cran.scm:116 #, scheme-format msgid "failed to download description for package '~a'~%" msgstr "Beschreibung für Paket „~a“ konnte nicht geladen werden~%" @@ -4165,15 +4281,11 @@ msgid "TLS error in procedure '~a': ~a~%" msgstr "TLS-Fehler in Prozedur „~a“: ~a~%" #: guix/scripts/substitute.scm:240 -#, fuzzy -#| msgid "" -#| "Usage: guix substitute [OPTION]...\n" -#| "Internal tool to substitute a pre-built binary to a local build.\n" msgid "" "Usage: guix substitute OPTION [ARGUMENT]...\n" "Internal tool to substitute a pre-built binary to a local build.\n" msgstr "" -"Aufruf: guix substitute [OPTION] …\n" +"Aufruf: guix substitute OPTION [ARGUMENT] …\n" "Internes Werkzeug zum Substituieren einer vorab erstellten Binärdatei zu einer\n" "lokalen Erstellung.\n" @@ -4369,27 +4481,27 @@ msgstr "gerichteter azyklischer Graph der Dienste" msgid "the dependency graph of shepherd services" msgstr "Abhängigkeitsgraph der Shepherd-Dienste" -#: guix/scripts/system.scm:482 guix/scripts/home.scm:453 +#: guix/scripts/system.scm:482 guix/scripts/home.scm:466 #, scheme-format msgid " repository URL: ~a~%" msgstr " Repository-URL: ~a~%" -#: guix/scripts/system.scm:484 guix/scripts/home.scm:455 +#: guix/scripts/system.scm:484 guix/scripts/home.scm:468 #, scheme-format msgid " branch: ~a~%" msgstr " Branch: ~a~%" -#: guix/scripts/system.scm:485 guix/scripts/home.scm:456 +#: guix/scripts/system.scm:485 guix/scripts/home.scm:469 #, scheme-format msgid " commit: ~a~%" msgstr " Commit: ~a~%" -#: guix/scripts/system.scm:505 guix/scripts/home.scm:469 +#: guix/scripts/system.scm:505 guix/scripts/home.scm:482 #, scheme-format msgid " file name: ~a~%" msgstr " Dateiname: ~a~%" -#: guix/scripts/system.scm:506 guix/scripts/home.scm:470 +#: guix/scripts/system.scm:506 guix/scripts/home.scm:483 #, scheme-format msgid " canonical file name: ~a~%" msgstr " kanonischer Dateiname: ~a~%" @@ -4430,12 +4542,12 @@ msgstr " Multiboot: ~a~%" #. TRANSLATORS: Here "channel" is the same terminology as used in #. "guix describe" and "guix pull --channels". -#: guix/scripts/system.scm:536 guix/scripts/home.scm:476 +#: guix/scripts/system.scm:536 guix/scripts/home.scm:489 #, scheme-format msgid " channels:~%" msgstr " Kanäle:~%" -#: guix/scripts/system.scm:539 guix/scripts/home.scm:479 +#: guix/scripts/system.scm:539 guix/scripts/home.scm:492 #, scheme-format msgid " configuration file: ~a~%" msgstr " Konfigurationsdatei: ~a~%" @@ -4475,10 +4587,9 @@ msgid "'vm-image' is deprecated: use 'image' instead~%" msgstr "„vm-image“ ist veraltet, benutzen Sie stattdessen „image“~%" #: guix/scripts/system.scm:722 -#, fuzzy, scheme-format -#| msgid "'disk-image' is deprecated: use 'image' instead~%" +#, scheme-format msgid "'docker-image' is deprecated: use 'image' instead~%" -msgstr "„disk-image“ ist veraltet, benutzen Sie stattdessen „image“~%" +msgstr "„docker-image“ ist veraltet, benutzen Sie stattdessen „image“~%" #: guix/scripts/system.scm:732 #, scheme-format @@ -4490,17 +4601,17 @@ msgstr "Vielleicht möchten Sie „guix pull“ ausführen vor „reconfigure“ msgid "Failing to do that may downgrade your system!~%" msgstr "Andernfalls könnte Ihr System auf einen älteren Stand zurückgesetzt werden!~%" -#: guix/scripts/system.scm:754 guix/scripts/system.scm:863 +#: guix/scripts/system.scm:754 guix/scripts/system.scm:864 #, scheme-format msgid "bootloader successfully installed on '~a'~%" msgstr "Bootloader erfolgreich auf „~a“ installiert~%" -#: guix/scripts/system.scm:856 +#: guix/scripts/system.scm:857 #, scheme-format msgid "activating system...~%" msgstr "System wird aktiviert …~%" -#: guix/scripts/system.scm:867 +#: guix/scripts/system.scm:868 msgid "" "To complete the upgrade, run 'herd restart SERVICE' to stop,\n" "upgrade, and restart each service that was not automatically restarted.\n" @@ -4509,25 +4620,25 @@ msgstr "" "nicht automatisch neu gestartet werden konnte, „herd restart DIENST“\n" "ausführen, um ihn anzuhalten, zu aktualisieren und neu zu starten.\n" -#: guix/scripts/system.scm:870 +#: guix/scripts/system.scm:871 msgid "Run 'herd status' to view the list of services on your system.\n" msgstr "Führen Sie „herd status“ aus, um die Dienste auf Ihrem System zu sehen.\n" -#: guix/scripts/system.scm:874 +#: guix/scripts/system.scm:875 #, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "Betriebssystem unter „~a“ wird initialisiert …~%" -#: guix/scripts/system.scm:894 guix/scripts/graph.scm:437 +#: guix/scripts/system.scm:895 guix/scripts/graph.scm:437 #, scheme-format msgid "~a: unknown backend~%" msgstr "~a: Unbekanntes Backend~%" -#: guix/scripts/system.scm:931 +#: guix/scripts/system.scm:932 msgid "The available image types are:\n" msgstr "Die verfügbaren Abbildtypen sind:\n" -#: guix/scripts/system.scm:941 +#: guix/scripts/system.scm:942 msgid "" "Usage: guix system [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the operating system declared in FILE according to ACTION.\n" @@ -4537,71 +4648,71 @@ msgstr "" "Das in DATEI deklarierte Betriebssystem entsprechend der AKTION erstellen.\n" "Manche AKTION unterstützt weitere ARGUMENTE.\n" -#: guix/scripts/system.scm:947 +#: guix/scripts/system.scm:948 msgid " search search for existing service types\n" msgstr " search suche nach bestehenden Diensttypen\n" -#: guix/scripts/system.scm:949 +#: guix/scripts/system.scm:950 msgid " reconfigure switch to a new operating system configuration\n" msgstr " reconfigure zur neuen Betriebssystemkonfiguration wechseln\n" -#: guix/scripts/system.scm:951 +#: guix/scripts/system.scm:952 msgid " roll-back switch to the previous operating system configuration\n" msgstr " roll-back zur vorherigen Betriebssystemkonfiguration wechseln\n" -#: guix/scripts/system.scm:953 +#: guix/scripts/system.scm:954 msgid " describe describe the current system\n" msgstr " describe das aktuelle System beschreiben\n" -#: guix/scripts/system.scm:955 +#: guix/scripts/system.scm:956 msgid " list-generations list the system generations\n" msgstr " list-generations die Systemgenerationen auflisten\n" -#: guix/scripts/system.scm:957 +#: guix/scripts/system.scm:958 msgid " switch-generation switch to an existing operating system configuration\n" msgstr " switch-generation zu einer bestehenden Betriebssystemkonfiguration wechseln\n" -#: guix/scripts/system.scm:959 +#: guix/scripts/system.scm:960 msgid " delete-generations delete old system generations\n" msgstr " delete-generations alte Systemgenerationen löschen\n" -#: guix/scripts/system.scm:961 +#: guix/scripts/system.scm:962 msgid " build build the operating system without installing anything\n" msgstr " build das Betriebssystem erstellen, ohne etwas zu installieren\n" -#: guix/scripts/system.scm:963 +#: guix/scripts/system.scm:964 msgid " container build a container that shares the host's store\n" msgstr "" " container einen Container erstellen, der den Store mit dem\n" " Wirtssystem teilt\n" -#: guix/scripts/system.scm:965 +#: guix/scripts/system.scm:966 msgid " vm build a virtual machine image that shares the host's store\n" msgstr "" " vm ein Image für eine virtuelle Maschine erstellen, das den\n" " Store mit dem Wirtssystem teilt\n" -#: guix/scripts/system.scm:967 +#: guix/scripts/system.scm:968 msgid " image build a Guix System image\n" msgstr " image ein Abbild mit Guix System erstellen\n" -#: guix/scripts/system.scm:969 +#: guix/scripts/system.scm:970 msgid " docker-image build a Docker image\n" msgstr " docker-image ein Docker-Image z.B. für einen USB-Stick erstellen\n" -#: guix/scripts/system.scm:971 +#: guix/scripts/system.scm:972 msgid " init initialize a root file system to run GNU\n" msgstr " init ein Wurzeldateisystem initialisieren, um GNU auszuführen\n" -#: guix/scripts/system.scm:973 +#: guix/scripts/system.scm:974 msgid " extension-graph emit the service extension graph in Dot format\n" msgstr " extension-graph den Erweiterungsgraphen im Dot-Format ausgeben\n" -#: guix/scripts/system.scm:975 +#: guix/scripts/system.scm:976 msgid " shepherd-graph emit the graph of shepherd services in Dot format\n" msgstr " shepherd-graph den Graphen der Shepherd-Dienste im Dot-Format ausgeben\n" -#: guix/scripts/system.scm:979 +#: guix/scripts/system.scm:980 msgid "" "\n" " -d, --derivation return the derivation of the given system" @@ -4609,7 +4720,7 @@ msgstr "" "\n" " -d, --derivation die Ableitung des gegebenen Systems liefern" -#: guix/scripts/system.scm:981 +#: guix/scripts/system.scm:982 msgid "" "\n" " -e, --expression=EXPR consider the operating-system EXPR evaluates to\n" @@ -4620,7 +4731,7 @@ msgstr "" " das operating-system betrachten, zu dem AUSDRUCK\n" " ausgewertet wird, statt etwa eine DATEI auszulesen" -#: guix/scripts/system.scm:984 +#: guix/scripts/system.scm:985 guix/scripts/home.scm:95 msgid "" "\n" " --allow-downgrades for 'reconfigure', allow downgrades to earlier\n" @@ -4630,7 +4741,7 @@ msgstr "" " --allow-downgrades bei „reconfigure“ Rückstufungen auf frühere\n" " Kanalversionen zulassen" -#: guix/scripts/system.scm:987 +#: guix/scripts/system.scm:988 msgid "" "\n" " --on-error=STRATEGY\n" @@ -4643,7 +4754,7 @@ msgstr "" " debug) anwenden, wenn beim Lesen der DATEI ein\n" " Fehler auftritt" -#: guix/scripts/system.scm:991 +#: guix/scripts/system.scm:992 msgid "" "\n" " --list-image-types list available image types" @@ -4651,7 +4762,7 @@ msgstr "" "\n" " --list-image-types verfügbare Abbildtypen auflisten" -#: guix/scripts/system.scm:993 +#: guix/scripts/system.scm:994 msgid "" "\n" " -t, --image-type=TYPE for 'image', produce an image of TYPE" @@ -4659,7 +4770,7 @@ msgstr "" "\n" " -t, --image-type=TYP bei „image“ ein Abbild des TYPs erstellen" -#: guix/scripts/system.scm:995 +#: guix/scripts/system.scm:996 msgid "" "\n" " --image-size=SIZE for 'image', produce an image of SIZE" @@ -4668,7 +4779,7 @@ msgstr "" " --image-size=GRÖSSE\n" " bei „image“ ein Image der GRÖSSE erstellen" -#: guix/scripts/system.scm:997 +#: guix/scripts/system.scm:998 msgid "" "\n" " --no-bootloader for 'init', do not install a bootloader" @@ -4676,7 +4787,7 @@ msgstr "" "\n" " --no-bootloader bei „init“ keinen Bootloader installieren" -#: guix/scripts/system.scm:999 +#: guix/scripts/system.scm:1000 msgid "" "\n" " --volatile for 'image', make the root file system volatile" @@ -4685,7 +4796,15 @@ msgstr "" " --volatile bei „image“ Änderungen am Wurzeldateisystem\n" " nicht dauerhaft speichern (sie bleiben „flüchtig“)" -#: guix/scripts/system.scm:1001 +#: guix/scripts/system.scm:1002 +msgid "" +"\n" +" --persistent for 'vm', make the root file system persistent" +msgstr "" +"\n" +" --persistent bei „vm“ das Wurzeldateisystem dauerhaft speichern" + +#: guix/scripts/system.scm:1004 msgid "" "\n" " --label=LABEL for 'image', label disk image with LABEL" @@ -4695,7 +4814,7 @@ msgstr "" " bei „image“ wird das Abbild mit\n" " der BEZEICHNUNG versehen" -#: guix/scripts/system.scm:1003 guix/scripts/pack.scm:1340 +#: guix/scripts/system.scm:1006 guix/scripts/pack.scm:1340 msgid "" "\n" " --save-provenance save provenance information" @@ -4703,7 +4822,7 @@ msgstr "" "\n" " --save-provenance Provenienzinformationen speichern" -#: guix/scripts/system.scm:1005 +#: guix/scripts/system.scm:1008 msgid "" "\n" " --share=SPEC for 'vm' and 'container', share host file system with\n" @@ -4715,7 +4834,7 @@ msgstr "" " entsprechend der SPEZIFIKATION mit\n" " Lese-/Schreibzugriff teilen" -#: guix/scripts/system.scm:1008 +#: guix/scripts/system.scm:1011 msgid "" "\n" " --expose=SPEC for 'vm' and 'container', expose host file system\n" @@ -4727,7 +4846,7 @@ msgstr "" " entsprechend der SPEZIFIKATION nur mit\n" " Lesezugriff zugänglich machen" -#: guix/scripts/system.scm:1011 +#: guix/scripts/system.scm:1014 msgid "" "\n" " -N, --network for 'container', allow containers to access the network" @@ -4736,7 +4855,7 @@ msgstr "" " -N, --network bei Nutzung von „container“, Containern\n" " Netzwerkzugriff erlauben" -#: guix/scripts/system.scm:1013 +#: guix/scripts/system.scm:1016 msgid "" "\n" " -r, --root=FILE for 'vm', 'image', 'container' and 'build',\n" @@ -4748,7 +4867,7 @@ msgstr "" " einer symbolischen Verknüpfung auf das Ergebnis\n" " machen und als Müllsammler-Wurzel registrieren" -#: guix/scripts/system.scm:1017 +#: guix/scripts/system.scm:1020 msgid "" "\n" " --full-boot for 'vm', make a full boot sequence" @@ -4756,7 +4875,7 @@ msgstr "" "\n" " --full-boot bei „vm“ einen vollständigen Bootvorgang simulieren" -#: guix/scripts/system.scm:1019 +#: guix/scripts/system.scm:1022 msgid "" "\n" " --no-graphic for 'vm', use the tty that we are started in for IO" @@ -4765,7 +4884,7 @@ msgstr "" " --no-graphic bei „vm“ die Konsole des Befehls für Ein-/Ausgabe\n" " nutzen" -#: guix/scripts/system.scm:1021 +#: guix/scripts/system.scm:1024 msgid "" "\n" " --skip-checks skip file system and initrd module safety checks" @@ -4774,7 +4893,7 @@ msgstr "" " --skip-checks Dateisystem- und Initrd-Modul-Fehlerprüfung\n" " überspringen" -#: guix/scripts/system.scm:1028 +#: guix/scripts/system.scm:1031 msgid "" "\n" " --graph-backend=BACKEND\n" @@ -4785,57 +4904,57 @@ msgstr "" " BACKEND für 'extension-graphs' und 'shepherd-graph'\n" " benutzen" -#: guix/scripts/system.scm:1180 +#: guix/scripts/system.scm:1187 #, scheme-format msgid "'~a' does not return an operating system or an image~%" msgstr "„~a“ liefert kein Betriebssystem oder image-Objekt~%" -#: guix/scripts/system.scm:1204 guix/scripts/home.scm:216 +#: guix/scripts/system.scm:1211 guix/scripts/home.scm:230 #, scheme-format msgid "both file and expression cannot be specified~%" msgstr "Es können nicht sowohl Datei als auch Ausdruck angegeben werden~%" -#: guix/scripts/system.scm:1211 guix/scripts/home.scm:223 +#: guix/scripts/system.scm:1218 guix/scripts/home.scm:237 #, scheme-format msgid "no configuration specified~%" msgstr "Keine Konfiguration angegeben~%" -#: guix/scripts/system.scm:1319 guix/scripts/system.scm:1335 -#: guix/scripts/system.scm:1342 guix/scripts/system.scm:1348 -#: guix/scripts/home.scm:274 guix/scripts/home.scm:296 -#: guix/scripts/home.scm:301 guix/scripts/home.scm:307 -#: guix/scripts/home.scm:314 guix/scripts/import/gnu.scm:100 +#: guix/scripts/system.scm:1328 guix/scripts/system.scm:1344 +#: guix/scripts/system.scm:1351 guix/scripts/system.scm:1357 +#: guix/scripts/home.scm:287 guix/scripts/home.scm:309 +#: guix/scripts/home.scm:314 guix/scripts/home.scm:320 +#: guix/scripts/home.scm:327 guix/scripts/import/gnu.scm:100 #: guix/scripts/offload.scm:836 guix/scripts/offload.scm:848 #, scheme-format msgid "wrong number of arguments~%" msgstr "Falsche Argumentanzahl~%" -#: guix/scripts/system.scm:1324 +#: guix/scripts/system.scm:1333 #, scheme-format msgid "no system generation, nothing to describe~%" msgstr "Keine Systemgeneration angegeben; kann nicht beschrieben werden~%" -#: guix/scripts/system.scm:1367 guix/scripts/home.scm:337 +#: guix/scripts/system.scm:1376 guix/scripts/home.scm:350 #, scheme-format msgid "~a: unknown action~%" msgstr "~a: Unbekannte Aktion~%" -#: guix/scripts/system.scm:1387 guix/scripts/home.scm:353 +#: guix/scripts/system.scm:1396 guix/scripts/home.scm:366 #, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "Falsche Anzahl an Argumenten für Aktion „~a“~%" -#: guix/scripts/system.scm:1392 +#: guix/scripts/system.scm:1401 #, scheme-format msgid "guix system: missing command name~%" msgstr "guix system: Befehlsname fehlt~%" -#: guix/scripts/system.scm:1394 +#: guix/scripts/system.scm:1403 #, scheme-format msgid "Try 'guix system --help' for more information.~%" msgstr "Rufen Sie „guix system --help“ auf, um weitere Informationen zu erhalten.~%" -#: guix/scripts/system/search.scm:93 guix/ui.scm:1541 guix/ui.scm:1559 +#: guix/scripts/system/search.scm:93 guix/ui.scm:1544 guix/ui.scm:1562 msgid "unknown" msgstr "unbekannt" @@ -5316,7 +5435,7 @@ msgstr "" " Knoten zeigen" #: guix/scripts/graph.scm:548 guix/scripts/pack.scm:1325 -#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:502 +#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:797 msgid "" "\n" " -e, --expression=EXPR consider the package EXPR evaluates to" @@ -6011,7 +6130,7 @@ msgstr "" "\n" " -f, --format=FORMAT Ergebnisse normalisiert mit Datensatztypen anzeigen" -#: guix/scripts/deploy.scm:51 +#: guix/scripts/deploy.scm:54 msgid "" "Usage: guix deploy [OPTION] FILE...\n" "Perform the deployment specified by FILE.\n" @@ -6019,38 +6138,86 @@ msgstr "" "Aufruf: guix deploy [OPTION] DATEI …\n" "Das in der DATEI angegebene Deployment erwirken.\n" -#: guix/scripts/deploy.scm:108 +#: guix/scripts/deploy.scm:63 +#, fuzzy +#| msgid " exec execute a command inside of an existing container\n" +msgid "" +"\n" +" -x, --execute execute the following command on all the machines" +msgstr " exec einen Befehl innerhalb eines vorhandenen Containers ausführen\n" + +#: guix/scripts/deploy.scm:117 #, scheme-format msgid "The following ~d machine will be deployed:~%" msgid_plural "The following ~d machines will be deployed:~%" msgstr[0] "Auf folgende ~d Maschine wird aufgespielt:~%" msgstr[1] "Auf folgende ~d Maschinen wird aufgespielt:~%" -#: guix/scripts/deploy.scm:122 +#: guix/scripts/deploy.scm:131 #, scheme-format msgid "deploying to ~a...~%" msgstr "Nach „~a“ aufspielen …~%" -#: guix/scripts/deploy.scm:134 guix/scripts/deploy.scm:138 +#: guix/scripts/deploy.scm:143 guix/scripts/deploy.scm:147 #, scheme-format msgid "failed to deploy ~a: ~a~%" msgstr "~a konnte nicht aufgespielt werden: ~a~%" -#: guix/scripts/deploy.scm:146 +#: guix/scripts/deploy.scm:155 #, scheme-format msgid "rolling back ~a...~%" msgstr "~a wird zurückgesetzt …~%" -#: guix/scripts/deploy.scm:152 +#: guix/scripts/deploy.scm:161 #, scheme-format msgid "successfully deployed ~a~%" msgstr "~a erfolgreich aufgespielt~%" -#: guix/scripts/deploy.scm:167 +#: guix/scripts/deploy.scm:212 +#, fuzzy, scheme-format +#| msgid "~a: command not found~%" +msgid "~a: command succeeded~%" +msgstr "~a: Befehl nicht gefunden~%" + +#: guix/scripts/deploy.scm:215 +#, fuzzy, scheme-format +#| msgid "Command failed with exit code ~a.~%" +msgid "~a: command exited with code ~a~%" +msgstr "Befehl fehlgeschlagen mit Exit-Code ~a.~%" + +#: guix/scripts/deploy.scm:218 +#, fuzzy, scheme-format +#| msgid "~a: command not found~%" +msgid "~a: command stopped with signal ~a~%" +msgstr "~a: Befehl nicht gefunden~%" + +#: guix/scripts/deploy.scm:221 +#, fuzzy, scheme-format +#| msgid "~a: consider removing this input: ~a~%" +msgid "~a: command terminated with signal ~a~%" +msgstr "~a: Vielleicht möchten Sie diese Eingabe („input“) entfernen: ~a~%" + +#: guix/scripts/deploy.scm:225 +#, fuzzy, scheme-format +#| msgid "~a: command not found~%" +msgid "command output on ~a:~%" +msgstr "~a: Befehl nicht gefunden~%" + +#: guix/scripts/deploy.scm:246 #, scheme-format msgid "missing deployment file argument~%" msgstr "Keine Maschinendatei als Argument angegeben~%" +#: guix/scripts/deploy.scm:249 +#, scheme-format +msgid "'--' was used by '-x' was not specified~%" +msgstr "" + +#: guix/scripts/deploy.scm:271 +#, scheme-format +msgid "'-x' specified but no command given~%" +msgstr "" + #: guix/gexp.scm:465 #, scheme-format msgid "resolving '~a' relative to current directory~%" @@ -6146,75 +6313,71 @@ msgstr "Kein solcher Prozess ~d~%" msgid "exec failed with status ~d~%" msgstr "exec fehlgeschlagen mit Status ~d~%" -#: guix/transformations.scm:185 guix/transformations.scm:253 +#: guix/transformations.scm:186 guix/transformations.scm:254 #, scheme-format msgid "invalid replacement specification: ~s" msgstr "Ungültige Ersatzspezifikation: ~s" -#: guix/transformations.scm:234 +#: guix/transformations.scm:235 #, scheme-format msgid "the source of ~a is not a Git reference" msgstr "Die Quelle von ~a ist keine Git-Referenz" -#: guix/transformations.scm:337 +#: guix/transformations.scm:338 #, scheme-format msgid "~a: invalid Git URL replacement specification" msgstr "~a: Ungültige Git-URL-Ersatzspezifikation" -#: guix/transformations.scm:415 +#: guix/transformations.scm:416 #, scheme-format msgid "~a: invalid toolchain replacement specification" msgstr "~a: Ungültige Toolchain-Ersatzspezifikation" -#: guix/transformations.scm:517 -#, fuzzy -#| msgid "failed to determine origin~%" +#: guix/transformations.scm:518 msgid "failed to determine which compiler is used" -msgstr "Konnte Ursprung nicht finden~%" +msgstr "Der zu nutzende Compiler konnte nicht festgestellt werden~%" -#: guix/transformations.scm:523 -#, fuzzy, scheme-format -#| msgid "failed to determine latest release of GNU ~a" +#: guix/transformations.scm:524 +#, scheme-format msgid "failed to determine whether ~a supports ~a" -msgstr "Die neueste Veröffentlichung für GNU ~a konnte nicht festgestellt werden" +msgstr "Ob ~a Unterstützung für ~a bietet, konnte nicht festgestellt werden" -#: guix/transformations.scm:529 +#: guix/transformations.scm:530 #, scheme-format msgid "compiler ~a does not support micro-architecture ~a" -msgstr "" +msgstr "Compiler ~a bietet keine Unterstützung für Mikroarchitektur ~a" -#: guix/transformations.scm:581 -#, fuzzy, scheme-format -#| msgid "~a for ~a~%" +#: guix/transformations.scm:582 +#, scheme-format msgid "tuning ~a for CPU ~a~%" -msgstr "~a für ~a gefunden~%" +msgstr "Optimiert wird ~a für CPU ~a~%" -#: guix/transformations.scm:721 +#: guix/transformations.scm:722 #, scheme-format msgid "~a: invalid package patch specification" msgstr "~a: Ungültige Paketpatch-Spezifikation" -#: guix/transformations.scm:744 +#: guix/transformations.scm:745 #, scheme-format msgid "could not determine latest upstream release of '~a'~%" msgstr "Die neueste Veröffentlichung des Anbieters für ~a konnte nicht festgestellt werden~%" -#: guix/transformations.scm:752 +#: guix/transformations.scm:753 #, scheme-format msgid "cannot authenticate source of '~a', version ~a~%" msgstr "Die Authentizität der Quelle von „~a“, Version ~a, kann nicht geprüft werden~%" -#: guix/transformations.scm:833 +#: guix/transformations.scm:840 #, scheme-format msgid "building for ~a instead of ~a, so tuning cannot be guessed~%" -msgstr "" +msgstr "Erstellt wird für ~a und nicht ~a; die zu optimierende CPU kann nicht ermittelt werden~%" -#: guix/transformations.scm:859 +#: guix/transformations.scm:866 #, scheme-format msgid "Available package transformation options:~%" msgstr "Verfügbare Paketumwandlungsoptionen:~%" -#: guix/transformations.scm:865 +#: guix/transformations.scm:872 msgid "" "\n" " --with-source=[PACKAGE=]SOURCE\n" @@ -6225,7 +6388,7 @@ msgstr "" " beim Erstellen des entsprechenden Pakets QUELLE\n" " benutzen" -#: guix/transformations.scm:868 +#: guix/transformations.scm:875 msgid "" "\n" " --with-input=PACKAGE=REPLACEMENT\n" @@ -6235,7 +6398,7 @@ msgstr "" " --with-input=PAKET=ERSATZ\n" " Abhängigkeit PAKET durch ERSATZ ersetzen" -#: guix/transformations.scm:871 +#: guix/transformations.scm:878 msgid "" "\n" " --with-graft=PACKAGE=REPLACEMENT\n" @@ -6245,7 +6408,7 @@ msgstr "" " --with-graft=PAKET=ERSATZ\n" " mit ERSATZ jedes PAKET referenzierende Paket veredeln" -#: guix/transformations.scm:874 +#: guix/transformations.scm:881 msgid "" "\n" " --with-branch=PACKAGE=BRANCH\n" @@ -6255,7 +6418,7 @@ msgstr "" " --with-branch=PAKET=BRANCH\n" " das PAKET aus dem neusten Commit auf BRANCH erstellen" -#: guix/transformations.scm:877 +#: guix/transformations.scm:884 msgid "" "\n" " --with-commit=PACKAGE=COMMIT\n" @@ -6265,7 +6428,7 @@ msgstr "" " --with-commit=PAKET=COMMIT\n" " den angegebenen COMMIT des PAKETs erstellen" -#: guix/transformations.scm:880 +#: guix/transformations.scm:887 msgid "" "\n" " --with-git-url=PACKAGE=URL\n" @@ -6276,7 +6439,7 @@ msgstr "" " das PAKET aus dem von der URL bezeichneten Repository\n" " erstellen" -#: guix/transformations.scm:883 +#: guix/transformations.scm:890 msgid "" "\n" " --with-patch=PACKAGE=FILE\n" @@ -6287,7 +6450,7 @@ msgstr "" " DATEI zur Liste auf PAKET anzuwendender Patches\n" " hinzufügen" -#: guix/transformations.scm:886 +#: guix/transformations.scm:893 msgid "" "\n" " --with-latest=PACKAGE\n" @@ -6298,7 +6461,7 @@ msgstr "" " die neueste Veröffentlichung des Anbieters\n" " von PAKET benutzen" -#: guix/transformations.scm:889 +#: guix/transformations.scm:896 msgid "" "\n" " --with-c-toolchain=PACKAGE=TOOLCHAIN\n" @@ -6309,7 +6472,7 @@ msgstr "" " das PAKET und was davon abhängt mit der\n" " TOOLCHAIN erstellen" -#: guix/transformations.scm:892 +#: guix/transformations.scm:899 msgid "" "\n" " --with-debug-info=PACKAGE\n" @@ -6320,7 +6483,7 @@ msgstr "" " PAKET erstellen und dabei Informationen zur\n" " Fehlersuche behalten" -#: guix/transformations.scm:895 +#: guix/transformations.scm:902 msgid "" "\n" " --without-tests=PACKAGE\n" @@ -6330,7 +6493,7 @@ msgstr "" " --without-tests=PAKET\n" " PAKET erstellen ohne Testkatalog auszuführen" -#: guix/transformations.scm:901 +#: guix/transformations.scm:908 msgid "" "\n" " --help-transform list package transformation options not shown here" @@ -6339,7 +6502,7 @@ msgstr "" " --help-transform die hier nicht angezeigten\n" " Paketumwandlungsoptionen auflisten" -#: guix/transformations.scm:950 +#: guix/transformations.scm:957 #, scheme-format msgid "transformation '~a' had no effect on ~a~%" msgstr "Transformation „~a“ wirkte sich nicht aus auf ~a~%" @@ -6848,12 +7011,12 @@ msgstr[1] "Die folgenden Pakete werden installiert:~%~{~a~%~}~%" msgid "~a: invalid Texinfo markup~%" msgstr "~a: Ungültige Texinfo-Auszeichnung~%" -#: guix/ui.scm:1873 +#: guix/ui.scm:1876 #, scheme-format msgid "invalid syntax: ~a~%" msgstr "Unzulässige Syntax: ~a~%" -#: guix/ui.scm:1882 +#: guix/ui.scm:1885 #, scheme-format msgid "Generation ~a\t~a" msgstr "Generation ~a\t~a" @@ -6863,7 +7026,7 @@ msgstr "Generation ~a\t~a" #. usual way of presenting dates in your locale. #. See https://www.gnu.org/software/guile/manual/html_node/SRFI_002d19-Date-to-string.html #. for details. -#: guix/ui.scm:1892 +#: guix/ui.scm:1895 #, scheme-format msgid "~b ~d ~Y ~T" msgstr "~d. ~B ~Y ~T" @@ -6871,37 +7034,37 @@ msgstr "~d. ~B ~Y ~T" #. TRANSLATORS: The word "current" here is an adjective for #. "Generation", as in "current generation". Use the appropriate #. gender where applicable. -#: guix/ui.scm:1898 +#: guix/ui.scm:1901 #, scheme-format msgid "~a\t(current)~%" msgstr "~a\t(aktuell)~%" -#: guix/ui.scm:1932 +#: guix/ui.scm:1935 #, scheme-format msgid "cannot lock profile ~a: ~a~%" msgstr "Kann Profil ~a nicht sperren: ~a~%" -#: guix/ui.scm:1934 +#: guix/ui.scm:1937 #, scheme-format msgid "profile ~a is locked by another process~%" msgstr "Profil ~a wird durch einen anderen Prozess gesperrt~%" -#: guix/ui.scm:1963 +#: guix/ui.scm:1966 #, scheme-format msgid "switched from generation ~a to ~a~%" msgstr "Von Generation „~a“ zu „~a“ gewechselt~%" -#: guix/ui.scm:1979 +#: guix/ui.scm:1982 #, scheme-format msgid "deleting ~a~%" msgstr "~a wird gelöscht~%" -#: guix/ui.scm:2010 +#: guix/ui.scm:2013 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "Rufen Sie „guix --help“ auf, um weitere Informationen zu erhalten.~%" -#: guix/ui.scm:2102 +#: guix/ui.scm:2105 msgid "" "Usage: guix OPTION | COMMAND ARGS...\n" "Run COMMAND with ARGS, if given.\n" @@ -6909,7 +7072,7 @@ msgstr "" "Aufruf: guix OPTION | BEFEHL ARGUMENTE …\n" "BEFEHL mit ARGUMENTE ausführen.\n" -#: guix/ui.scm:2105 +#: guix/ui.scm:2108 msgid "" "\n" " -h, --help display this helpful text again and exit" @@ -6917,7 +7080,7 @@ msgstr "" "\n" " -h, --help diesen hilfreichen Text nochmal anzeigen und beenden" -#: guix/ui.scm:2107 +#: guix/ui.scm:2110 msgid "" "\n" " -V, --version display version and copyright information and exit" @@ -6926,26 +7089,26 @@ msgstr "" " -V, --version Versions- und Urheberrechtsinformationen\n" " anzeigen und beenden" -#: guix/ui.scm:2112 +#: guix/ui.scm:2115 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "BEFEHL muss einer der unten aufgelisteten Unterbefehle sein:\n" -#: guix/ui.scm:2154 +#: guix/ui.scm:2157 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "guix: ~a: Befehl nicht gefunden~%" -#: guix/ui.scm:2156 +#: guix/ui.scm:2159 #, scheme-format msgid "Did you mean @code{~a}?" msgstr "Meinten Sie @code{~a}?" -#: guix/ui.scm:2190 +#: guix/ui.scm:2193 #, scheme-format msgid "guix: missing command name~%" msgstr "guix: Befehlsname fehlt~%" -#: guix/ui.scm:2198 +#: guix/ui.scm:2201 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "guix: Nicht erkannte Option „~a“~%" @@ -7104,7 +7267,7 @@ msgstr "" #: guix/status.scm:583 #, scheme-format msgid "offloading build of ~a to '~a'" -msgstr "Lagere Erstellung von ~a an „~a“ aus" +msgstr "Auslagern der Erstellung von ~a an „~a“" #: guix/http-client.scm:134 #, scheme-format @@ -7282,22 +7445,22 @@ msgstr "Paketursprung hat keinen SHA256-Hash" msgid "unsupported manifest format" msgstr "Nicht unterstütztes Manifest-Format" -#: guix/profiles.scm:2242 +#: guix/profiles.scm:2247 #, scheme-format msgid "while creating directory `~a': ~a" msgstr "Beim Anlegen des Verzeichnisses „~a“: ~a" -#: guix/profiles.scm:2247 +#: guix/profiles.scm:2252 #, scheme-format msgid "Please create the @file{~a} directory, with you as the owner." msgstr "Bitte legen Sie das Verzeichnis @file{~a} mit Ihnen als Eigentümer an." -#: guix/profiles.scm:2256 +#: guix/profiles.scm:2261 #, scheme-format msgid "directory `~a' is not owned by you" msgstr "Das Verzeichnis „~a“ gehört Ihnen nicht." -#: guix/profiles.scm:2260 +#: guix/profiles.scm:2265 #, scheme-format msgid "Please change the owner of @file{~a} to user ~s." msgstr "Bitte ändern Sie den Eigentümer von @file{~a} in Benutzer ~s." @@ -8028,11 +8191,16 @@ msgstr "„--no-cwd“ kann nur mit „--container“ benutzt werden~%" msgid "'--profile' cannot be used with package options~%" msgstr "„--profile“ kann nicht zusammen mit Paketoptionen angegeben werden~%" -#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:275 +#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:261 #, scheme-format msgid "no packages specified; creating an empty environment~%" msgstr "Keine Pakete angegeben; leere Umgebung wird erstellt~%" +#: guix/scripts/environment.scm:979 +#, scheme-format +msgid "'--check' is unnecessary when using '--container'; doing nothing~%" +msgstr "Sie brauchen kein „--check“, wenn Sie „--container“ angeben; nichts wird geprüft~%" + #: guix/scripts/home/import.scm:179 msgid "" ";; This \"home-environment\" file can be passed to 'guix home reconfigure'\n" @@ -8048,7 +8216,7 @@ msgstr "" ";; wie \"guix describe\" sie anzeigt. Siehe den Abschnitt \"Guix nachbilden\"\n" ";; im Handbuch.\n" -#: guix/scripts/home.scm:65 +#: guix/scripts/home.scm:66 msgid "" "Usage: guix home [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the home environment declared in FILE according to ACTION.\n" @@ -8058,53 +8226,53 @@ msgstr "" "Die in DATEI deklarierte Persönliche Umgebung entsprechend der AKTION erstellen.\n" "Manche AKTION unterstützt weitere ARGUMENTE.\n" -#: guix/scripts/home.scm:71 +#: guix/scripts/home.scm:72 msgid " search search for existing service types\n" msgstr " search suche nach bestehenden Diensttypen\n" -#: guix/scripts/home.scm:73 +#: guix/scripts/home.scm:74 msgid " reconfigure switch to a new home environment configuration\n" msgstr "" " reconfigure zur neuen Konfiguration der\n" " Persönlichen Umgebung wechseln\n" -#: guix/scripts/home.scm:75 +#: guix/scripts/home.scm:76 msgid " roll-back switch to the previous home environment configuration\n" msgstr "" " roll-back zur vorherigen Konfiguration der Persönlichen Umgebung\n" " wechseln\n" -#: guix/scripts/home.scm:77 +#: guix/scripts/home.scm:78 msgid " describe describe the current home environment\n" msgstr " describe die aktuelle Persönliche Umgebung beschreiben\n" -#: guix/scripts/home.scm:79 +#: guix/scripts/home.scm:80 msgid " list-generations list the home environment generations\n" msgstr " list-generations die Generationen der Persönlichen Umgebung auflisten\n" -#: guix/scripts/home.scm:81 +#: guix/scripts/home.scm:82 msgid " switch-generation switch to an existing home environment configuration\n" msgstr "" " switch-generation zu einer bestehenden Konfiguration der\n" " Persönlichen Umgebung wechseln\n" -#: guix/scripts/home.scm:83 +#: guix/scripts/home.scm:84 msgid " delete-generations delete old home environment generations\n" msgstr " delete-generations alte Generationen der Persönlichen Umgebung löschen\n" -#: guix/scripts/home.scm:85 +#: guix/scripts/home.scm:86 msgid " build build the home environment without installing anything\n" msgstr "" " build die Persönliche Umgebung erstellen, ohne etwas\n" " zu installieren\n" -#: guix/scripts/home.scm:87 +#: guix/scripts/home.scm:88 msgid " import generates a home environment definition from dotfiles\n" msgstr "" " import eine Definition der Persönlichen Umgebung anhand\n" " bestehender Konfigurationsdateien (Dotfiles) erzeugen\n" -#: guix/scripts/home.scm:91 +#: guix/scripts/home.scm:92 msgid "" "\n" " -e, --expression=EXPR consider the home-environment EXPR evaluates to\n" @@ -8115,17 +8283,17 @@ msgstr "" " das home-environment-Objekt betrachten, zu dem AUSDRUCK\n" " ausgewertet wird, statt etwa eine DATEI auszulesen" -#: guix/scripts/home.scm:196 +#: guix/scripts/home.scm:210 #, scheme-format msgid "'~a' does not return a home environment ~%" msgstr "„~a“ liefert keine Persönliche Umgebung~%" -#: guix/scripts/home.scm:280 +#: guix/scripts/home.scm:293 #, scheme-format msgid "'~a' populated with all the Home configuration files~%" msgstr "Alle Konfigurationsdateien für die Persönliche Umgebung wurden in „~a“ geschrieben~%" -#: guix/scripts/home.scm:282 +#: guix/scripts/home.scm:295 #, scheme-format msgid "" "Run @command{guix home reconfigure ~a/home-configuration.scm} to effectively\n" @@ -8134,22 +8302,22 @@ msgstr "" "Führen Sie @command{guix home reconfigure ~a/home-configuration.scm} aus,\n" "um die Persönliche Umgebung einzurichten, die diese Dateien beschreiben.\n" -#: guix/scripts/home.scm:289 +#: guix/scripts/home.scm:302 #, scheme-format msgid "no home environment generation, nothing to describe~%" msgstr "Keine Generation einer Persönlichen Umgebung angegeben; kann nicht beschrieben werden~%" -#: guix/scripts/home.scm:358 +#: guix/scripts/home.scm:371 #, scheme-format msgid "guix home: missing command name~%" msgstr "guix home: Befehlsname fehlt~%" -#: guix/scripts/home.scm:360 +#: guix/scripts/home.scm:373 #, scheme-format msgid "Try 'guix home --help' for more information.~%" msgstr "Rufen Sie „guix home --help“ auf, um weitere Informationen zu erhalten.~%" -#: guix/scripts/home.scm:528 +#: guix/scripts/home.scm:541 #, scheme-format msgid "cannot switch to home environment generation '~a'~%" msgstr "Zur Generation „~a“ der Persönlichen Umgebung kann nicht gewechselt werden~%" @@ -8196,7 +8364,7 @@ msgstr "" #: guix/scripts/import/cpan.scm:83 guix/scripts/import/crate.scm:97 #: guix/scripts/import/egg.scm:100 guix/scripts/import/gem.scm:98 -#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:100 +#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:101 #, scheme-format msgid "failed to download meta-data for package '~a'~%" msgstr "Metadaten für Paket „~a“ konnten nicht geladen werden~%" @@ -8300,7 +8468,7 @@ msgstr "" " --pin-versions genau die Versionen benutzen, die in den\n" " Abhängigkeiten des Moduls stehen" -#: guix/scripts/import/go.scm:117 +#: guix/scripts/import/go.scm:118 #, scheme-format msgid "failed to download meta-data for module '~a'.~%" msgstr "Metadaten für Modul „~a“ konnten nicht geladen werden.~%" @@ -8453,6 +8621,11 @@ msgstr "" "Aufruf: guix import texlive PAKETNAME\n" "Das Texlive-Paket für PAKETNAME importieren und umwandeln.\n" +#: guix/scripts/import/texlive.scm:84 +#, scheme-format +msgid "failed to import package '~a'~%" +msgstr "Paket „~a“ konnte nicht importiert werden~%" + #: guix/scripts/offload.scm:130 #, scheme-format msgid "The 'system' field is deprecated, please use 'systems' instead.~%" @@ -8944,7 +9117,7 @@ msgstr "Verbindung geschlossen~%" msgid "~a: unknown type of REPL~%" msgstr "~a: Unbekannter REPL-Typ~%" -#: guix/scripts/shell.scm:46 +#: guix/scripts/shell.scm:48 msgid "" "Usage: guix shell [OPTION] PACKAGES... [-- COMMAND...]\n" "Build an environment that includes PACKAGES and execute COMMAND or an\n" @@ -8954,7 +9127,7 @@ msgstr "" "Eine Umgebung erstellen, die PAKETE enthält, und den\n" "BEFEHL oder eine interaktive Shell darin ausführen.\n" -#: guix/scripts/shell.scm:52 +#: guix/scripts/shell.scm:54 msgid "" "\n" " -D, --development include the development inputs of the next package" @@ -8962,7 +9135,7 @@ msgstr "" "\n" " -D, --development die Entwicklungseingaben des folgenden Pakets aufnehmen" -#: guix/scripts/shell.scm:54 +#: guix/scripts/shell.scm:56 msgid "" "\n" " -f, --file=FILE add to the environment the package FILE evaluates to" @@ -8971,7 +9144,7 @@ msgstr "" " -f, --file=DATEI zur Umgebung das Paket hinzunehmen, zu dem die\n" " DATEI ausgewertet wird" -#: guix/scripts/shell.scm:56 +#: guix/scripts/shell.scm:58 msgid "" "\n" " -q inhibit loading of 'guix.scm' and 'manifest.scm'" @@ -8979,7 +9152,7 @@ msgstr "" "\n" " -q Laden von „guix.scm“ und „manifest.scm“ unterdrücken" -#: guix/scripts/shell.scm:58 +#: guix/scripts/shell.scm:60 msgid "" "\n" " --rebuild-cache rebuild cached environment, if any" @@ -8987,22 +9160,22 @@ msgstr "" "\n" " --rebuild-cache zwischengespeicherte Umgebung neu erstellen" -#: guix/scripts/shell.scm:199 +#: guix/scripts/shell.scm:201 #, scheme-format msgid "ignoring invalid file name: '~a'~%" msgstr "Ungültiger Dateiname wird ignoriert: „~a“~%" -#: guix/scripts/shell.scm:280 +#: guix/scripts/shell.scm:266 #, scheme-format msgid "loading environment from '~a'...~%" msgstr "Umgebung aus „~a“ wird geladen …~%" -#: guix/scripts/shell.scm:286 +#: guix/scripts/shell.scm:272 #, scheme-format msgid "not loading '~a' because not authorized to do so~%" msgstr "„~a“ wird nicht geladen, denn es wurde nicht autorisiert~%" -#: guix/scripts/shell.scm:288 +#: guix/scripts/shell.scm:274 #, scheme-format msgid "" "To allow automatic loading of\n" @@ -9021,7 +9194,7 @@ msgstr "" "echo ~a >> ~a\n" "@end example\n" -#: guix/scripts/shell.scm:386 +#: guix/scripts/shell.scm:431 msgid "" "Consider passing the @option{--check} option once\n" "to make sure your shell does not clobber environment variables." @@ -9030,42 +9203,52 @@ msgstr "" "übergeben, wodurch gemeldet wird, falls Ihre Shell Umgebungsvariable\n" "überschreibt." -#: guix/scripts/style.scm:241 +#: guix/scripts/style.scm:499 #, scheme-format msgid "~a: complex expression, bailing out~%" msgstr "~a: Ausdruck ist komplex; abgebrochen~%" -#: guix/scripts/style.scm:259 +#: guix/scripts/style.scm:517 #, scheme-format msgid "~a: input label '~a' does not match package name, bailing out~%" msgstr "~a: Eingabenbezeichnung „~a“ passt nicht zum Paketnamen; abgebrochen~%" -#: guix/scripts/style.scm:264 +#: guix/scripts/style.scm:522 #, scheme-format msgid "~a: non-trivial input, bailing out~%" msgstr "~a: Nichttriviale Eingabe; abgebrochen~%" -#: guix/scripts/style.scm:288 +#: guix/scripts/style.scm:546 #, scheme-format msgid "~a: input expression is too short~%" msgstr "~a: Eingabeausdruck ist zu kurz~%" -#: guix/scripts/style.scm:380 +#: guix/scripts/style.scm:638 #, scheme-format msgid "~a: unsupported input style, bailing out~%" msgstr "~a: Eingaben in nicht unterstütztem Stil; abgebrochen~%" -#: guix/scripts/style.scm:392 +#: guix/scripts/style.scm:650 #, scheme-format msgid "would be edited~%" msgstr "würde bearbeitet~%" -#: guix/scripts/style.scm:482 +#: guix/scripts/style.scm:721 +#, scheme-format +msgid "no definition location for package ~a~%" +msgstr "Es gibt keine Stelle im Quellcode, wo Paket „~a“ definiert ist~%" + +#: guix/scripts/style.scm:767 +#, scheme-format +msgid "~a: unknown styling~%" +msgstr "~a: Unbekannte Stilregel~%" + +#: guix/scripts/style.scm:774 #, scheme-format msgid "~a: invalid input simplification policy~%" msgstr "~a: Ungültige Richtlinie zur Eingabenvereinfachung~%" -#: guix/scripts/style.scm:496 +#: guix/scripts/style.scm:788 msgid "" "Usage: guix style [OPTION]... [PACKAGE]...\n" "Update package definitions to the latest style.\n" @@ -9073,7 +9256,15 @@ msgstr "" "Aufruf: guix style [OPTION] … PAKET …\n" "Paketdefinitionen auf den neuesten Stil aktualisieren.\n" -#: guix/scripts/style.scm:498 +#: guix/scripts/style.scm:790 +msgid "" +"\n" +" -S, --styling=RULE apply RULE, a styling rule" +msgstr "" +"\n" +" -S, --styling=REGEL die Stilregel REGEL anwenden" + +#: guix/scripts/style.scm:793 msgid "" "\n" " -n, --dry-run display files that would be edited but do nothing" @@ -9081,7 +9272,7 @@ msgstr "" "\n" " -n, --dry-run anzeigen, was bearbeitet würde, aber nichts tun" -#: guix/scripts/style.scm:504 +#: guix/scripts/style.scm:799 msgid "" "\n" " --input-simplification=POLICY\n" @@ -9238,6 +9429,16 @@ msgstr "auf Verbindungen an SOCKET lauschen" msgid "produce debugging output" msgstr "Debug-Ausgabe zur Fehlersuche erzeugen" +#~ msgid "Please select a disk." +#~ msgstr "Bitte wählen Sie einen Datenträger aus." + +#~ msgid "" +#~ "Failed to import package ~s.\n" +#~ "reason: ~s.~%" +#~ msgstr "" +#~ "Paket ~s konnte nicht importiert werden.\n" +#~ "Grund: ~s.~%" + #~ msgid "Other services" #~ msgstr "Andere Dienste" diff --git a/po/guix/eo.po b/po/guix/eo.po index 7882475c73..ff7e3a85f1 100644 --- a/po/guix/eo.po +++ b/po/guix/eo.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: guix 1.2.0-pre1\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" "PO-Revision-Date: 2021-08-28 14:43+0000\n" "Last-Translator: Julien Lepiller \n" "Language-Team: Esperanto \n" @@ -60,37 +60,37 @@ msgstr "" msgid "Try adding @code{(use-service-modules ~a)}." msgstr "Provu aldoni @code{(use-service-modules ~a)}." -#: gnu/packages.scm:96 +#: gnu/packages.scm:97 #, scheme-format msgid "~a: patch not found" msgstr "~a: flikaĵo ne trovita" -#: gnu/packages.scm:480 gnu/packages.scm:521 +#: gnu/packages.scm:481 gnu/packages.scm:522 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "plursenca pak-specifigo '~a'~%" -#: gnu/packages.scm:481 gnu/packages.scm:522 +#: gnu/packages.scm:482 gnu/packages.scm:523 #, scheme-format msgid "choosing ~a@~a from ~a~%" msgstr "ni elektas ~a@~a el ~a~%" -#: gnu/packages.scm:486 guix/scripts/package.scm:216 +#: gnu/packages.scm:487 guix/scripts/package.scm:218 #, scheme-format msgid "package '~a' has been superseded by '~a'~%" msgstr "pako '~a' estas ĝisdatiginda per '~a'~%" -#: gnu/packages.scm:493 gnu/packages.scm:510 +#: gnu/packages.scm:494 gnu/packages.scm:511 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A: pako ne trovita por versio ~a~%" -#: gnu/packages.scm:494 gnu/packages.scm:511 +#: gnu/packages.scm:495 gnu/packages.scm:512 #, scheme-format msgid "~A: unknown package~%" msgstr "~A: nekonata pako~%" -#: gnu/packages.scm:550 +#: gnu/packages.scm:551 #, scheme-format msgid "package `~a' lacks output `~a'~%" msgstr "pako '~a' malhavas eligon '~a'~%" @@ -292,7 +292,7 @@ msgid "" "@code{SIGKILL}." msgstr "" -#: gnu/home/services.scm:127 +#: gnu/home/services.scm:128 #, fuzzy #| msgid "" #| "Build the operating system top-level directory, which in\n" @@ -307,7 +307,7 @@ msgstr "" "referencas ĉiun, kion la operaciumo necesas: sian kernon, initrd,\n" "sistema profilo, praŝarga skripto, ktp." -#: gnu/home/services.scm:158 +#: gnu/home/services.scm:159 #, scheme-format msgid "" "This is the @dfn{home profile} and can be found in\n" @@ -316,22 +316,22 @@ msgid "" "@code{home-environment} record." msgstr "" -#: gnu/home/services.scm:180 +#: gnu/home/services.scm:181 #, scheme-format msgid "duplicate definition for `~a' environment variable ~%" msgstr "" -#: gnu/home/services.scm:242 +#: gnu/home/services.scm:243 msgid "Set the environment variables." msgstr "" -#: gnu/home/services.scm:253 +#: gnu/home/services.scm:254 #, fuzzy, scheme-format #| msgid "duplicate '~a' entry for /etc" msgid "duplicate '~a' entry for files/" msgstr "duobla '~a' ero por /etc" -#: gnu/home/services.scm:277 +#: gnu/home/services.scm:278 #, scheme-format msgid "" "Configuration files for programs that\n" @@ -340,7 +340,7 @@ msgstr "" #. TRANSLATORS: 'on-first-login' is the name of a service and #. shouldn't be translated -#: gnu/home/services.scm:308 +#: gnu/home/services.scm:309 msgid "" "XDG_RUNTIME_DIR doesn't exists, on-first-login script\n" "won't execute anything. You can check if xdg runtime directory exists,\n" @@ -348,13 +348,13 @@ msgid "" "script by running '$HOME/.guix-home/on-first-login'" msgstr "" -#: gnu/home/services.scm:328 +#: gnu/home/services.scm:329 msgid "" "Run gexps on first user login. Can be\n" "extended with one gexp." msgstr "" -#: gnu/home/services.scm:391 +#: gnu/home/services.scm:392 msgid "" "Run gexps to activate the current\n" "generation of home environment and update the state of the home\n" @@ -363,33 +363,33 @@ msgid "" "with one gexp, but many times, and all gexps must be idempotent." msgstr "" -#: gnu/home/services.scm:472 +#: gnu/home/services.scm:473 #, scheme-format msgid "" "Comparing ~a and\n" "~10t~a..." msgstr "" -#: gnu/home/services.scm:474 +#: gnu/home/services.scm:475 #, scheme-format msgid " done (~a)\n" msgstr "" #. TRANSLATORS: 'on-change' is the name of a service type, it #. probably shouldn't be translated. -#: gnu/home/services.scm:483 +#: gnu/home/services.scm:484 msgid "" "Evaluating on-change gexps.\n" "\n" msgstr "" -#: gnu/home/services.scm:485 +#: gnu/home/services.scm:486 msgid "" "On-change gexps evaluation finished.\n" "\n" msgstr "" -#: gnu/home/services.scm:499 +#: gnu/home/services.scm:500 msgid "" "G-expressions to run if the specified files have changed since the\n" "last generation. The extension should be a list of lists where the\n" @@ -397,7 +397,7 @@ msgid "" "changed, and the second element is the G-expression to be evaluated." msgstr "" -#: gnu/home/services.scm:519 +#: gnu/home/services.scm:520 #, fuzzy #| msgid "" #| "Store provenance information about the system in the system\n" @@ -663,13 +663,13 @@ msgstr "" msgid "Updater for ELPA packages" msgstr "" -#: guix/import/github.scm:170 +#: guix/import/github.scm:175 #, fuzzy, scheme-format #| msgid "URI ~a unreachable: ~a" msgid "~a is unreachable (~a)~%" msgstr "URI ~a nealirebla: ~a" -#: guix/import/github.scm:260 +#: guix/import/github.scm:274 msgid "Updater for GitHub packages" msgstr "" @@ -707,12 +707,23 @@ msgstr "~A: pako ne trovita por versio ~a~%" msgid "failed to determine latest release of GNU ~a" msgstr "fiasko dum kreo de derivaĵo: ~s~%" -#: guix/import/go.scm:569 +#: guix/import/go.scm:571 #, scheme-format msgid "unsupported vcs type '~a' for package '~a'" msgstr "" -#: guix/import/go.scm:647 +#: guix/import/go.scm:594 +#, fuzzy, scheme-format +#| msgid "~a: note: using ~a but ~a is available upstream~%" +msgid "version ~a of ~a is not available~%" +msgstr "~a: rimarko: ni uzas ~a sed ~a disponeblas unuanivele~%" + +#: guix/import/go.scm:597 +#, scheme-format +msgid "Pick one of the following available versions:~{ ~a~}." +msgstr "" + +#: guix/import/go.scm:671 #, scheme-format msgid "" "Failed to import package ~s.\n" @@ -720,13 +731,6 @@ msgid "" "This package and its dependencies won't be imported.~%" msgstr "" -#: guix/import/go.scm:656 -#, fuzzy, scheme-format -msgid "" -"Failed to import package ~s.\n" -"reason: ~s.~%" -msgstr "fiasko dum registro de '~a' sub '~a'~%" - #: guix/import/minetest.scm:178 #, scheme-format msgid "In ~a: author names must consist of at least a single character.~%" @@ -820,77 +824,99 @@ msgstr "pako '~a' havas neniun fonton~%" msgid "Updater for OPAM packages" msgstr "" -#: guix/import/pypi.scm:230 +#: guix/import/pypi.scm:233 msgid "Could not extract requirement name in spec:" msgstr "" -#: guix/import/pypi.scm:290 +#: guix/import/pypi.scm:293 #, scheme-format msgid "parse-requires.txt reached an unexpected condition on line ~a~%" msgstr "" -#: guix/import/pypi.scm:356 +#: guix/import/pypi.scm:359 #, fuzzy, scheme-format msgid "Failed to extract file: ~a from wheel.~%" msgstr "fiasko dum registro de '~a' sub '~a'~%" -#: guix/import/pypi.scm:385 +#: guix/import/pypi.scm:388 #, scheme-format msgid "Cannot guess requirements from source archive: no requires.txt file found.~%" msgstr "" -#: guix/import/pypi.scm:390 +#: guix/import/pypi.scm:393 #, scheme-format msgid "Unsupported archive format; cannot determine package dependencies from source archive: ~a~%" msgstr "" -#: guix/import/pypi.scm:489 +#: guix/import/pypi.scm:434 +#, scheme-format +msgid "project name ~a does not appear verbatim in the PyPI URI~%" +msgstr "" + +#: guix/import/pypi.scm:437 +#, scheme-format +msgid "" +"The PyPI URI is: @url{~a}. You should review the\n" +"pypi-uri declaration in the generated package. You may need to replace ~s with\n" +"a substring of the PyPI URI that identifies the package." +msgstr "" + +#: guix/import/pypi.scm:505 #, scheme-format msgid "no source release for pypi package ~a ~a~%" msgstr "" -#: guix/import/pypi.scm:554 +#: guix/import/pypi.scm:509 +#, scheme-format +msgid "" +"This indicates that the\n" +"package is available on PyPI, but only as a \"wheel\" containing binaries, not\n" +"source. To build it from source, refer to the upstream repository at\n" +"@uref{~a}." +msgstr "" + +#: guix/import/pypi.scm:579 msgid "Updater for PyPI packages" msgstr "" -#: gnu/installer.scm:214 +#: gnu/installer.scm:217 msgid "Locale" msgstr "Lokaĵaroj" -#: gnu/installer.scm:230 gnu/installer/newt/timezone.scm:58 +#: gnu/installer.scm:233 gnu/installer/newt/timezone.scm:58 msgid "Timezone" msgstr "" -#: gnu/installer.scm:247 +#: gnu/installer.scm:250 msgid "Keyboard mapping selection" msgstr "" -#: gnu/installer.scm:256 gnu/installer/newt/hostname.scm:26 +#: gnu/installer.scm:259 gnu/installer/newt/hostname.scm:26 msgid "Hostname" msgstr "" -#: gnu/installer.scm:265 +#: gnu/installer.scm:268 msgid "Network selection" msgstr "" -#: gnu/installer.scm:272 +#: gnu/installer.scm:275 msgid "Substitute server discovery" msgstr "" -#: gnu/installer.scm:279 gnu/installer/newt/user.scm:68 -#: gnu/installer/newt/user.scm:205 +#: gnu/installer.scm:282 gnu/installer/newt/user.scm:67 +#: gnu/installer/newt/user.scm:204 msgid "User creation" msgstr "Kreo de uzanto" -#: gnu/installer.scm:287 +#: gnu/installer.scm:290 msgid "Services" msgstr "" -#: gnu/installer.scm:298 +#: gnu/installer.scm:301 msgid "Partitioning" msgstr "" -#: gnu/installer.scm:305 gnu/installer/newt/final.scm:53 +#: gnu/installer.scm:308 gnu/installer/newt/final.scm:53 msgid "Configuration file" msgstr "Agorda dosiero" @@ -902,19 +928,78 @@ msgstr "" msgid "Unable to find expected regexp." msgstr "" -#: gnu/installer/newt.scm:52 +#: gnu/installer/newt.scm:58 msgid "Press for installation parameters." msgstr "" -#: gnu/installer/newt.scm:65 -#, scheme-format -msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +#: gnu/installer/newt.scm:68 +msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. You may choose to exit or create a dump archive." msgstr "" -#: gnu/installer/newt.scm:68 +#: gnu/installer/newt.scm:71 msgid "Unexpected problem" msgstr "" +#: gnu/installer/newt.scm:75 +msgid "Dump" +msgstr "" + +#: gnu/installer/newt.scm:76 gnu/installer/newt/ethernet.scm:79 +#: gnu/installer/newt/keymap.scm:56 gnu/installer/newt/locale.scm:43 +#: gnu/installer/newt/network.scm:65 gnu/installer/newt/network.scm:82 +#: gnu/installer/newt/page.scm:315 gnu/installer/newt/page.scm:679 +#: gnu/installer/newt/page.scm:763 gnu/installer/newt/page.scm:828 +#: gnu/installer/newt/partition.scm:54 gnu/installer/newt/partition.scm:90 +#: gnu/installer/newt/partition.scm:125 gnu/installer/newt/partition.scm:140 +#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 +#: gnu/installer/newt/partition.scm:706 gnu/installer/newt/partition.scm:764 +#: gnu/installer/newt/partition.scm:775 gnu/installer/newt/services.scm:124 +#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/wifi.scm:206 +msgid "Exit" +msgstr "" + +#: gnu/installer/newt.scm:82 +#, scheme-format +msgid "The dump archive was created as ~a. Would you like to send this archive to the Guix servers?" +msgstr "" + +#: gnu/installer/newt.scm:84 +msgid "Dump archive created" +msgstr "" + +#: gnu/installer/newt.scm:88 +#, scheme-format +msgid "The dump was uploaded as ~a. Please report it by email to ~a." +msgstr "" + +#: gnu/installer/newt.scm:90 +msgid "The dump could not be uploaded." +msgstr "" + +#: gnu/installer/newt.scm:93 +msgid "Dump upload result" +msgstr "" + +#: gnu/installer/newt.scm:132 +#, scheme-format +msgid "External command ~s exited with code ~a" +msgstr "" + +#: gnu/installer/newt.scm:135 +#, scheme-format +msgid "External command ~s terminated by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:138 +#, scheme-format +msgid "External command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:140 +msgid "External command error" +msgstr "" + #: gnu/installer/newt/ethernet.scm:66 msgid "No ethernet service available, please try again." msgstr "" @@ -923,59 +1008,45 @@ msgstr "" msgid "No service" msgstr "" -#: gnu/installer/newt/ethernet.scm:76 +#: gnu/installer/newt/ethernet.scm:74 msgid "Please select an ethernet network." msgstr "" -#: gnu/installer/newt/ethernet.scm:77 +#: gnu/installer/newt/ethernet.scm:75 msgid "Ethernet connection" msgstr "" -#: gnu/installer/newt/ethernet.scm:81 gnu/installer/newt/keymap.scm:56 -#: gnu/installer/newt/locale.scm:43 gnu/installer/newt/network.scm:63 -#: gnu/installer/newt/network.scm:84 gnu/installer/newt/page.scm:309 -#: gnu/installer/newt/page.scm:673 gnu/installer/newt/page.scm:758 -#: gnu/installer/newt/partition.scm:56 gnu/installer/newt/partition.scm:91 -#: gnu/installer/newt/partition.scm:126 gnu/installer/newt/partition.scm:141 -#: gnu/installer/newt/partition.scm:638 gnu/installer/newt/partition.scm:661 -#: gnu/installer/newt/partition.scm:707 gnu/installer/newt/partition.scm:765 -#: gnu/installer/newt/partition.scm:776 gnu/installer/newt/services.scm:130 -#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:204 -#: gnu/installer/newt/wifi.scm:206 -msgid "Exit" -msgstr "" - #: gnu/installer/newt/final.scm:46 #, scheme-format msgid "We're now ready to proceed with the installation! A system configuration file has been generated, it is displayed below. This file will be available as '~a' on the installed system. The new system will be created from this file once you've pressed OK. This will take a few minutes." msgstr "" -#: gnu/installer/newt/final.scm:70 +#: gnu/installer/newt/final.scm:68 msgid "Installation complete" msgstr "Instalado plenumita" -#: gnu/installer/newt/final.scm:71 gnu/installer/newt/parameters.scm:45 +#: gnu/installer/newt/final.scm:69 gnu/installer/newt/parameters.scm:45 #: gnu/installer/newt/welcome.scm:145 msgid "Reboot" msgstr "" -#: gnu/installer/newt/final.scm:72 +#: gnu/installer/newt/final.scm:70 msgid "Congratulations! Installation is now complete. You may remove the device containing the installation image and press the button to reboot." msgstr "" -#: gnu/installer/newt/final.scm:86 +#: gnu/installer/newt/final.scm:84 msgid "Installation failed" msgstr "" -#: gnu/installer/newt/final.scm:87 +#: gnu/installer/newt/final.scm:85 msgid "Resume" msgstr "" -#: gnu/installer/newt/final.scm:88 +#: gnu/installer/newt/final.scm:86 msgid "Restart the installer" msgstr "" -#: gnu/installer/newt/final.scm:89 +#: gnu/installer/newt/final.scm:87 msgid "The final system installation step failed. You can resume from a specific step, or restart the installer." msgstr "" @@ -1003,9 +1074,9 @@ msgstr "" msgid "Installation parameters" msgstr "" -#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:74 -#: gnu/installer/newt/locale.scm:63 gnu/installer/newt/locale.scm:78 -#: gnu/installer/newt/locale.scm:94 gnu/installer/newt/partition.scm:595 +#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:72 +#: gnu/installer/newt/locale.scm:61 gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:88 gnu/installer/newt/partition.scm:594 #: gnu/installer/newt/timezone.scm:64 msgid "Back" msgstr "" @@ -1026,16 +1097,16 @@ msgstr "" msgid "Please choose your keyboard layout. It will be used during the install process, and for the installed system. Non-Latin layouts can be toggled with Alt+Shift. You can switch to a different layout at any time from the parameters menu." msgstr "" -#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:62 -#: gnu/installer/newt/page.scm:308 +#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/page.scm:314 msgid "Continue" msgstr "Daŭrigi" -#: gnu/installer/newt/keymap.scm:67 +#: gnu/installer/newt/keymap.scm:65 msgid "Variant" msgstr "" -#: gnu/installer/newt/keymap.scm:70 +#: gnu/installer/newt/keymap.scm:68 msgid "Please choose a variant for your keyboard layout." msgstr "" @@ -1047,37 +1118,37 @@ msgstr "" msgid "Choose the language to use for the installation process and for the installed system." msgstr "" -#: gnu/installer/newt/locale.scm:57 +#: gnu/installer/newt/locale.scm:55 #, fuzzy msgid "Locale location" msgstr "" -#: gnu/installer/newt/locale.scm:60 +#: gnu/installer/newt/locale.scm:58 msgid "Choose a territory for this language." msgstr "" -#: gnu/installer/newt/locale.scm:71 +#: gnu/installer/newt/locale.scm:67 msgid "Locale codeset" msgstr "" -#: gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:70 msgid "Choose the locale encoding." msgstr "" -#: gnu/installer/newt/locale.scm:86 +#: gnu/installer/newt/locale.scm:80 msgid "Locale modifier" msgstr "" -#: gnu/installer/newt/locale.scm:89 +#: gnu/installer/newt/locale.scm:83 msgid "Choose your locale's modifier. The most frequent modifier is euro. It indicates that you want to use Euro as the currency symbol." msgstr "" -#: gnu/installer/newt/locale.scm:190 +#: gnu/installer/newt/locale.scm:181 #, fuzzy msgid "No location" msgstr "" -#: gnu/installer/newt/locale.scm:217 +#: gnu/installer/newt/locale.scm:208 msgid "No modifier" msgstr "" @@ -1093,330 +1164,334 @@ msgstr "" msgid "Abort" msgstr "" -#: gnu/installer/newt/network.scm:61 gnu/installer/newt/network.scm:80 +#: gnu/installer/newt/network.scm:63 gnu/installer/newt/network.scm:78 msgid "Internet access" msgstr "" -#: gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/network.scm:66 msgid "The install process requires Internet access but no network devices were found. Do you want to continue anyway?" msgstr "" -#: gnu/installer/newt/network.scm:78 +#: gnu/installer/newt/network.scm:76 msgid "The install process requires Internet access. Please select a network device." msgstr "" -#: gnu/installer/newt/network.scm:103 +#: gnu/installer/newt/network.scm:99 msgid "Powering technology" msgstr "" -#: gnu/installer/newt/network.scm:104 +#: gnu/installer/newt/network.scm:100 #, scheme-format msgid "Waiting for technology ~a to be powered." msgstr "" -#: gnu/installer/newt/network.scm:128 +#: gnu/installer/newt/network.scm:139 msgid "Checking connectivity" msgstr "" -#: gnu/installer/newt/network.scm:129 +#: gnu/installer/newt/network.scm:140 msgid "Waiting for Internet access establishment..." msgstr "" -#: gnu/installer/newt/network.scm:139 -msgid "The selected network does not provide access to the Internet, please try again." +#: gnu/installer/newt/network.scm:150 +msgid "The selected network does not provide access to the Internet and the Guix substitute server, please try again." msgstr "" -#: gnu/installer/newt/network.scm:141 gnu/installer/newt/wifi.scm:108 +#: gnu/installer/newt/network.scm:152 gnu/installer/newt/wifi.scm:108 msgid "Connection error" msgstr "" -#: gnu/installer/newt/page.scm:198 +#: gnu/installer/newt/page.scm:204 #, fuzzy, scheme-format msgid "Connecting to ~a, please wait." msgstr "Ni elŝutas, bonvolu atendi...~%" -#: gnu/installer/newt/page.scm:199 +#: gnu/installer/newt/page.scm:205 msgid "Connection in progress" msgstr "" -#: gnu/installer/newt/page.scm:218 gnu/installer/newt/user.scm:60 +#: gnu/installer/newt/page.scm:224 gnu/installer/newt/user.scm:59 msgid "Show" msgstr "" -#: gnu/installer/newt/page.scm:225 gnu/installer/newt/page.scm:672 -#: gnu/installer/newt/page.scm:757 gnu/installer/newt/partition.scm:458 -#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 -#: gnu/installer/newt/partition.scm:699 gnu/installer/newt/user.scm:66 -#: gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/page.scm:231 gnu/installer/newt/page.scm:678 +#: gnu/installer/newt/page.scm:762 gnu/installer/newt/partition.scm:457 +#: gnu/installer/newt/partition.scm:636 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:698 gnu/installer/newt/user.scm:65 +#: gnu/installer/newt/user.scm:202 msgid "OK" msgstr "BONE" -#: gnu/installer/newt/page.scm:251 +#: gnu/installer/newt/page.scm:257 msgid "Please enter a non empty input." msgstr "" -#: gnu/installer/newt/page.scm:252 gnu/installer/newt/user.scm:123 +#: gnu/installer/newt/page.scm:258 gnu/installer/newt/user.scm:122 msgid "Empty input" msgstr "" -#: gnu/installer/newt/page.scm:760 +#: gnu/installer/newt/page.scm:765 msgid "Edit" msgstr "" -#: gnu/installer/newt/partition.scm:47 +#: gnu/installer/newt/page.scm:825 +msgid "Ok" +msgstr "" + +#: gnu/installer/newt/partition.scm:45 msgid "Everything is one partition" msgstr "" -#: gnu/installer/newt/partition.scm:48 +#: gnu/installer/newt/partition.scm:46 msgid "Separate /home partition" msgstr "" -#: gnu/installer/newt/partition.scm:50 +#: gnu/installer/newt/partition.scm:48 msgid "Please select a partitioning scheme." msgstr "" -#: gnu/installer/newt/partition.scm:51 +#: gnu/installer/newt/partition.scm:49 msgid "Partition scheme" msgstr "" #. TRANSLATORS: The ~{ and ~} format specifiers are used to iterate the list #. of device names of the user partitions that will be formatted. -#: gnu/installer/newt/partition.scm:65 +#: gnu/installer/newt/partition.scm:63 #, scheme-format msgid "We are about to write the configured partition table to the disk and format the partitions listed below. Their data will be lost. Do you wish to continue?~%~%~{ - ~a~%~}" msgstr "" -#: gnu/installer/newt/partition.scm:71 +#: gnu/installer/newt/partition.scm:69 msgid "Format disk?" msgstr "" -#: gnu/installer/newt/partition.scm:74 +#: gnu/installer/newt/partition.scm:72 msgid "Partition formatting is in progress, please wait." msgstr "" -#: gnu/installer/newt/partition.scm:75 +#: gnu/installer/newt/partition.scm:73 msgid "Preparing partitions" msgstr "" -#: gnu/installer/newt/partition.scm:86 -msgid "Please select a disk." +#: gnu/installer/newt/partition.scm:84 +msgid "Please select a disk. The installation device as well as the small devices are filtered." msgstr "" -#: gnu/installer/newt/partition.scm:87 +#: gnu/installer/newt/partition.scm:86 msgid "Disk" msgstr "Disko" -#: gnu/installer/newt/partition.scm:102 +#: gnu/installer/newt/partition.scm:101 msgid "Select a new partition table type. Be careful, all data on the disk will be lost." msgstr "" -#: gnu/installer/newt/partition.scm:104 +#: gnu/installer/newt/partition.scm:103 msgid "Partition table" msgstr "" -#: gnu/installer/newt/partition.scm:121 +#: gnu/installer/newt/partition.scm:120 msgid "Please select a partition type." msgstr "" -#: gnu/installer/newt/partition.scm:122 +#: gnu/installer/newt/partition.scm:121 msgid "Partition type" msgstr "" -#: gnu/installer/newt/partition.scm:132 +#: gnu/installer/newt/partition.scm:131 msgid "Please select the file-system type for this partition." msgstr "" -#: gnu/installer/newt/partition.scm:133 +#: gnu/installer/newt/partition.scm:132 msgid "File-system type" msgstr "" -#: gnu/installer/newt/partition.scm:150 +#: gnu/installer/newt/partition.scm:149 msgid "Primary partitions count exceeded." msgstr "" -#: gnu/installer/newt/partition.scm:151 gnu/installer/newt/partition.scm:156 -#: gnu/installer/newt/partition.scm:161 +#: gnu/installer/newt/partition.scm:150 gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:160 msgid "Creation error" msgstr "" -#: gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:154 msgid "Extended partition creation error." msgstr "" -#: gnu/installer/newt/partition.scm:160 +#: gnu/installer/newt/partition.scm:159 msgid "Logical partition creation error." msgstr "" -#: gnu/installer/newt/partition.scm:174 +#: gnu/installer/newt/partition.scm:173 #, scheme-format msgid "Please enter the password for the encryption of partition ~a (label: ~a)." msgstr "" -#: gnu/installer/newt/partition.scm:176 gnu/installer/newt/wifi.scm:92 +#: gnu/installer/newt/partition.scm:175 gnu/installer/newt/wifi.scm:92 msgid "Password required" msgstr "" -#: gnu/installer/newt/partition.scm:181 +#: gnu/installer/newt/partition.scm:180 #, scheme-format msgid "Please confirm the password for the encryption of partition ~a (label: ~a)." msgstr "" -#: gnu/installer/newt/partition.scm:183 gnu/installer/newt/user.scm:160 +#: gnu/installer/newt/partition.scm:182 gnu/installer/newt/user.scm:159 msgid "Password confirmation required" msgstr "" -#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 +#: gnu/installer/newt/partition.scm:194 gnu/installer/newt/user.scm:167 msgid "Password mismatch, please try again." msgstr "" -#: gnu/installer/newt/partition.scm:196 gnu/installer/newt/user.scm:169 +#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 msgid "Password error" msgstr "" -#: gnu/installer/newt/partition.scm:282 +#: gnu/installer/newt/partition.scm:281 msgid "Please enter the partition gpt name." msgstr "" -#: gnu/installer/newt/partition.scm:283 +#: gnu/installer/newt/partition.scm:282 msgid "Partition name" msgstr "" -#: gnu/installer/newt/partition.scm:313 +#: gnu/installer/newt/partition.scm:312 msgid "Please enter the encrypted label" msgstr "" -#: gnu/installer/newt/partition.scm:314 +#: gnu/installer/newt/partition.scm:313 msgid "Encryption label" msgstr "" -#: gnu/installer/newt/partition.scm:331 +#: gnu/installer/newt/partition.scm:330 #, scheme-format msgid "Please enter the size of the partition. The maximum size is ~a." msgstr "" -#: gnu/installer/newt/partition.scm:333 +#: gnu/installer/newt/partition.scm:332 msgid "Partition size" msgstr "" -#: gnu/installer/newt/partition.scm:351 +#: gnu/installer/newt/partition.scm:350 msgid "The percentage can not be superior to 100." msgstr "" -#: gnu/installer/newt/partition.scm:352 gnu/installer/newt/partition.scm:357 -#: gnu/installer/newt/partition.scm:362 +#: gnu/installer/newt/partition.scm:351 gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:361 msgid "Size error" msgstr "" -#: gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:355 msgid "The requested size is incorrectly formatted, or too large." msgstr "" -#: gnu/installer/newt/partition.scm:361 +#: gnu/installer/newt/partition.scm:360 msgid "The request size is superior to the maximum size." msgstr "" -#: gnu/installer/newt/partition.scm:381 +#: gnu/installer/newt/partition.scm:380 msgid "Please enter the desired mounting point for this partition. Leave this field empty if you don't want to set a mounting point." msgstr "" -#: gnu/installer/newt/partition.scm:383 +#: gnu/installer/newt/partition.scm:382 msgid "Mounting point" msgstr "" -#: gnu/installer/newt/partition.scm:447 +#: gnu/installer/newt/partition.scm:446 #, scheme-format msgid "Creating ~a partition starting at ~a of ~a." msgstr "" -#: gnu/installer/newt/partition.scm:449 +#: gnu/installer/newt/partition.scm:448 #, scheme-format msgid "You are currently editing partition ~a." msgstr "" -#: gnu/installer/newt/partition.scm:452 +#: gnu/installer/newt/partition.scm:451 msgid "Partition creation" msgstr "" -#: gnu/installer/newt/partition.scm:453 +#: gnu/installer/newt/partition.scm:452 msgid "Partition edit" msgstr "" -#: gnu/installer/newt/partition.scm:634 +#: gnu/installer/newt/partition.scm:633 #, scheme-format msgid "Are you sure you want to delete everything on disk ~a?" msgstr "" -#: gnu/installer/newt/partition.scm:636 +#: gnu/installer/newt/partition.scm:635 msgid "Delete disk" msgstr "" -#: gnu/installer/newt/partition.scm:651 +#: gnu/installer/newt/partition.scm:650 msgid "You cannot delete a free space area." msgstr "" -#: gnu/installer/newt/partition.scm:652 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:651 gnu/installer/newt/partition.scm:658 msgid "Delete partition" msgstr "" -#: gnu/installer/newt/partition.scm:657 +#: gnu/installer/newt/partition.scm:656 #, scheme-format msgid "Are you sure you want to delete partition ~a?" msgstr "" -#: gnu/installer/newt/partition.scm:674 +#: gnu/installer/newt/partition.scm:673 msgid "" "You can change a disk's partition table by selecting it and pressing ENTER. You can also edit a partition by selecting it and pressing ENTER, or remove it by pressing DELETE. To create a new partition, select a free space area and press ENTER.\n" "\n" "At least one partition must have its mounting point set to '/'." msgstr "" -#: gnu/installer/newt/partition.scm:680 +#: gnu/installer/newt/partition.scm:679 #, scheme-format msgid "This is the proposed partitioning. It is still possible to edit it or to go back to install menu by pressing the Exit button.~%~%" msgstr "" -#: gnu/installer/newt/partition.scm:690 +#: gnu/installer/newt/partition.scm:689 msgid "Guided partitioning" msgstr "" -#: gnu/installer/newt/partition.scm:691 +#: gnu/installer/newt/partition.scm:690 msgid "Manual partitioning" msgstr "" -#: gnu/installer/newt/partition.scm:716 +#: gnu/installer/newt/partition.scm:715 msgid "No root mount point found." msgstr "" -#: gnu/installer/newt/partition.scm:717 +#: gnu/installer/newt/partition.scm:716 msgid "Missing mount point" msgstr "" -#: gnu/installer/newt/partition.scm:721 +#: gnu/installer/newt/partition.scm:720 #, scheme-format msgid "Cannot read the ~a partition UUID. You may need to format it." msgstr "" -#: gnu/installer/newt/partition.scm:724 +#: gnu/installer/newt/partition.scm:723 msgid "Wrong partition format" msgstr "" -#: gnu/installer/newt/partition.scm:755 +#: gnu/installer/newt/partition.scm:754 msgid "Guided - using the entire disk" msgstr "" -#: gnu/installer/newt/partition.scm:756 +#: gnu/installer/newt/partition.scm:755 msgid "Guided - using the entire disk with encryption" msgstr "" -#: gnu/installer/newt/partition.scm:757 +#: gnu/installer/newt/partition.scm:756 msgid "Manual" msgstr "" -#: gnu/installer/newt/partition.scm:759 +#: gnu/installer/newt/partition.scm:758 msgid "Please select a partitioning method." msgstr "" -#: gnu/installer/newt/partition.scm:760 +#: gnu/installer/newt/partition.scm:759 msgid "Partitioning method" msgstr "" @@ -1428,35 +1503,35 @@ msgstr "" msgid "Desktop environment" msgstr "" -#: gnu/installer/newt/services.scm:59 +#: gnu/installer/newt/services.scm:57 msgid "You can now select networking services to run on your system." msgstr "" -#: gnu/installer/newt/services.scm:61 +#: gnu/installer/newt/services.scm:59 msgid "Network service" msgstr "" -#: gnu/installer/newt/services.scm:79 +#: gnu/installer/newt/services.scm:75 msgid "You can now select the CUPS printing service to run on your system." msgstr "" -#: gnu/installer/newt/services.scm:81 +#: gnu/installer/newt/services.scm:77 msgid "Printing and document services" msgstr "" -#: gnu/installer/newt/services.scm:100 +#: gnu/installer/newt/services.scm:94 msgid "Console services" msgstr "" -#: gnu/installer/newt/services.scm:101 +#: gnu/installer/newt/services.scm:95 msgid "Select miscellaneous services to run on your non-graphical system." msgstr "" -#: gnu/installer/newt/services.scm:115 +#: gnu/installer/newt/services.scm:109 msgid "Network management" msgstr "" -#: gnu/installer/newt/services.scm:118 +#: gnu/installer/newt/services.scm:112 msgid "" "Choose the method to manage network connections.\n" "\n" @@ -1486,57 +1561,57 @@ msgstr "" msgid "Please select a timezone." msgstr "" -#: gnu/installer/newt/user.scm:45 +#: gnu/installer/newt/user.scm:44 msgid "Name" msgstr "" -#: gnu/installer/newt/user.scm:47 +#: gnu/installer/newt/user.scm:46 msgid "Real name" msgstr "" -#: gnu/installer/newt/user.scm:49 +#: gnu/installer/newt/user.scm:48 msgid "Home directory" msgstr "" -#: gnu/installer/newt/user.scm:51 +#: gnu/installer/newt/user.scm:50 msgid "Password" msgstr "" -#: gnu/installer/newt/user.scm:122 +#: gnu/installer/newt/user.scm:121 msgid "Empty inputs are not allowed." msgstr "" -#: gnu/installer/newt/user.scm:159 +#: gnu/installer/newt/user.scm:158 msgid "Please confirm the password." msgstr "" #. TRANSLATORS: Leave "root" untranslated: it refers to the name of the #. system administrator account. -#: gnu/installer/newt/user.scm:176 +#: gnu/installer/newt/user.scm:175 msgid "Please choose a password for the system administrator (\"root\")." msgstr "" -#: gnu/installer/newt/user.scm:178 +#: gnu/installer/newt/user.scm:177 msgid "System administrator password" msgstr "" -#: gnu/installer/newt/user.scm:191 +#: gnu/installer/newt/user.scm:190 msgid "Please add at least one user to system using the 'Add' button." msgstr "" -#: gnu/installer/newt/user.scm:194 +#: gnu/installer/newt/user.scm:193 msgid "Add" msgstr "" -#: gnu/installer/newt/user.scm:195 +#: gnu/installer/newt/user.scm:194 msgid "Delete" msgstr "" -#: gnu/installer/newt/user.scm:255 +#: gnu/installer/newt/user.scm:254 msgid "Please create at least one user." msgstr "" -#: gnu/installer/newt/user.scm:256 +#: gnu/installer/newt/user.scm:255 msgid "No user" msgstr "" @@ -1607,60 +1682,60 @@ msgstr "" msgid "Wifi" msgstr "" -#: gnu/installer/parted.scm:433 gnu/installer/parted.scm:470 +#: gnu/installer/parted.scm:455 gnu/installer/parted.scm:492 msgid "Free space" msgstr "" -#: gnu/installer/parted.scm:559 +#: gnu/installer/parted.scm:581 #, fuzzy, scheme-format msgid "Name: ~a" msgstr "~a: ~a~%" -#: gnu/installer/parted.scm:560 gnu/installer/parted.scm:606 +#: gnu/installer/parted.scm:582 gnu/installer/parted.scm:628 msgid "None" msgstr "" -#: gnu/installer/parted.scm:565 +#: gnu/installer/parted.scm:587 #, scheme-format msgid "Type: ~a" msgstr "" -#: gnu/installer/parted.scm:569 +#: gnu/installer/parted.scm:591 #, scheme-format msgid "File system type: ~a" msgstr "" -#: gnu/installer/parted.scm:575 +#: gnu/installer/parted.scm:597 #, scheme-format msgid "Bootable flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:579 +#: gnu/installer/parted.scm:601 #, scheme-format msgid "ESP flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:585 +#: gnu/installer/parted.scm:607 #, scheme-format msgid "Size: ~a" msgstr "" -#: gnu/installer/parted.scm:591 +#: gnu/installer/parted.scm:613 #, scheme-format msgid "Encryption: ~:[No~a~;Yes (label '~a')~]" msgstr "" -#: gnu/installer/parted.scm:597 +#: gnu/installer/parted.scm:619 #, scheme-format msgid "Format the partition? ~:[No~;Yes~]" msgstr "" -#: gnu/installer/parted.scm:603 +#: gnu/installer/parted.scm:625 #, scheme-format msgid "Mount point: ~a" msgstr "" -#: gnu/installer/parted.scm:1466 +#: gnu/installer/parted.scm:1477 #, scheme-format msgid "Device ~a is still in use." msgstr "" @@ -1704,7 +1779,7 @@ msgstr "" #. TRANSLATORS: This is a comment within a Scheme file. Each line must #. start with ";; " (two semicolons and a space). Please keep line #. length below 60 characters. -#: gnu/installer/steps.scm:252 +#: gnu/installer/steps.scm:242 msgid "" ";; This is an operating system configuration generated\n" ";; by the graphical installer.\n" @@ -1715,99 +1790,118 @@ msgstr "" msgid "Unable to locate path: ~a." msgstr "fiasko dum kreo de derivaĵo: ~a" -#: gnu/installer/utils.scm:83 +#: gnu/installer/utils.scm:131 #, scheme-format msgid "Press Enter to continue.~%" msgstr "" -#: gnu/installer/utils.scm:108 +#: gnu/installer/utils.scm:150 +#, scheme-format +msgid "Command ~s exited with value ~a" +msgstr "" + +#: gnu/installer/utils.scm:156 +#, scheme-format +msgid "Command ~s killed by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:162 #, scheme-format -msgid "Command failed with exit code ~a.~%" +msgid "Command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:167 +#, scheme-format +msgid "Command ~s succeeded" +msgstr "" + +#: gnu/installer/utils.scm:179 +msgid "run-command-in-installer not set" msgstr "" -#: gnu/machine/ssh.scm:117 +#: gnu/machine/ssh.scm:120 #, scheme-format msgid " without a 'host-key' is deprecated~%" msgstr "" -#: gnu/machine/ssh.scm:192 +#: gnu/machine/ssh.scm:208 #, fuzzy, scheme-format msgid "device '~a' not found: ~a" msgstr "URI ~a domajno ne trovita: ~a" -#: gnu/machine/ssh.scm:207 +#: gnu/machine/ssh.scm:223 #, scheme-format msgid "no file system with label '~a'" msgstr "" -#: gnu/machine/ssh.scm:226 +#: gnu/machine/ssh.scm:242 #, scheme-format msgid "no file system with UUID '~a'" msgstr "" -#: gnu/machine/ssh.scm:276 +#: gnu/machine/ssh.scm:295 #, scheme-format msgid "missing modules for ~a:~{ ~a~}~%" msgstr "" -#: gnu/machine/ssh.scm:311 +#: gnu/machine/ssh.scm:333 #, scheme-format msgid "incorrect target system ('~a' was given, while the system reports that it is '~a')~%" msgstr "" -#: gnu/machine/ssh.scm:437 +#: gnu/machine/ssh.scm:459 #, scheme-format msgid "no signing key '~a'. have you run 'guix archive --generate-key?'" msgstr "" -#: gnu/machine/ssh.scm:469 +#: gnu/machine/ssh.scm:491 #, scheme-format msgid "failed to switch systems while deploying '~a':~%~{~s ~}" msgstr "" -#: gnu/machine/ssh.scm:477 +#: gnu/machine/ssh.scm:499 #, scheme-format msgid "an error occurred while upgrading services on '~a':~%~{~s ~}~%" msgstr "" -#: gnu/machine/ssh.scm:485 +#: gnu/machine/ssh.scm:507 #, fuzzy, scheme-format #| msgid "failed to install locale: ~a~%" msgid "failed to install bootloader on '~a':~%~{~s ~}~%" msgstr "fiasko dum instalo de lokaĵaro: ~a~%" -#: gnu/machine/ssh.scm:518 +#: gnu/machine/ssh.scm:540 msgid "could not roll-back machine" msgstr "" -#: gnu/machine/ssh.scm:559 +#: gnu/machine/ssh.scm:581 msgid "" "Provisioning for machines that are accessible over SSH\n" "and have a known host-name. This entails little more than maintaining an SSH\n" "connection to the host." msgstr "" -#: gnu/machine/ssh.scm:569 +#: gnu/machine/ssh.scm:591 #, scheme-format msgid "" "unsupported machine configuration '~a'\n" "for environment of type '~a'" msgstr "" -#: gnu/packages/bootstrap.scm:178 +#: gnu/packages/bootstrap.scm:188 #, scheme-format msgid "could not find bootstrap binary '~a' for system '~a'" msgstr "ne eblis trovi ekŝargilan ciferec-dosieron '~a' por la sistemo '~a'" -#: gnu/packages/bootstrap.scm:492 +#: gnu/packages/bootstrap.scm:578 msgid "Raw build system with direct store access" msgstr "" -#: gnu/packages/bootstrap.scm:500 +#: gnu/packages/bootstrap.scm:586 msgid "Pre-built Guile for bootstrapping purposes." msgstr "" -#: guix/build/utils.scm:822 +#: guix/build/utils.scm:823 #, scheme-format msgid "'~a~{ ~a~}' exited with status ~a; output follows:~%~%~{ ~a~%~}" msgstr "" @@ -1847,7 +1941,7 @@ msgid "~A: unrecognized option~%" msgstr "~A: nerekonita elekto~%" #: guix/scripts.scm:169 guix/scripts/import.scm:140 -#: guix/scripts/system.scm:1370 +#: guix/scripts/system.scm:1379 #, scheme-format msgid "Did you mean @code{~a}?~%" msgstr "" @@ -1894,7 +1988,7 @@ msgstr "fiasko dum kreo de radiko GC '~a': ~a~%" #: guix/scripts/build.scm:154 guix/scripts/search.scm:42 #: guix/scripts/show.scm:41 guix/scripts/lint.scm:112 guix/scripts/edit.scm:48 #: guix/scripts/size.scm:246 guix/scripts/graph.scm:553 -#: guix/scripts/repl.scm:80 guix/scripts/style.scm:500 +#: guix/scripts/repl.scm:80 guix/scripts/style.scm:795 msgid "" "\n" " -L, --load-path=DIR prepend DIR to the package module search path" @@ -2091,7 +2185,7 @@ msgstr "" "\n" " -s, --system=SISTEMO provi konstrui por SISTEMO--ekz., \"i686-linux\"" -#: guix/scripts/build.scm:357 guix/scripts/system.scm:1023 +#: guix/scripts/build.scm:357 guix/scripts/system.scm:1026 #: guix/scripts/pack.scm:1329 guix/scripts/archive.scm:97 msgid "" "\n" @@ -2131,13 +2225,13 @@ msgstr "" " -r, --root=DOSIERO igi DOSIEROn simbola ligo al la rezulto, kaj registri\n" " ĝin kiel radikon de rubaĵ-kolektanto" -#: guix/scripts/build.scm:368 guix/scripts/package.scm:486 +#: guix/scripts/build.scm:368 guix/scripts/package.scm:488 #: guix/scripts/install.scm:37 guix/scripts/remove.scm:36 #: guix/scripts/upgrade.scm:39 guix/scripts/pull.scm:117 -#: guix/scripts/system.scm:1025 guix/scripts/copy.scm:122 -#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:60 +#: guix/scripts/system.scm:1028 guix/scripts/copy.scm:122 +#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:66 #: guix/scripts/archive.scm:99 guix/scripts/environment.scm:123 -#: guix/scripts/home.scm:94 +#: guix/scripts/home.scm:98 #, fuzzy msgid "" "\n" @@ -2164,30 +2258,30 @@ msgstr "" " --log-file liveri la protokol-dosierajn nomojn por la indikitaj derivaĵoj" #: guix/scripts/build.scm:379 guix/scripts/download.scm:104 -#: guix/scripts/package.scm:504 guix/scripts/install.scm:44 +#: guix/scripts/package.scm:506 guix/scripts/install.scm:44 #: guix/scripts/remove.scm:41 guix/scripts/upgrade.scm:48 #: guix/scripts/search.scm:37 guix/scripts/show.scm:36 guix/scripts/gc.scm:88 #: guix/scripts/git.scm:34 guix/scripts/git/authenticate.scm:110 #: guix/scripts/hash.scm:98 guix/scripts/import.scm:98 #: guix/scripts/import/minetest.scm:46 guix/scripts/import/cran.scm:49 #: guix/scripts/pull.scm:125 guix/scripts/substitute.scm:250 -#: guix/scripts/system.scm:1032 guix/scripts/lint.scm:115 +#: guix/scripts/system.scm:1035 guix/scripts/lint.scm:115 #: guix/scripts/publish.scm:119 guix/scripts/edit.scm:51 #: guix/scripts/size.scm:249 guix/scripts/graph.scm:558 #: guix/scripts/challenge.scm:430 guix/scripts/copy.scm:127 #: guix/scripts/pack.scm:1357 guix/scripts/weather.scm:336 #: guix/scripts/describe.scm:96 guix/scripts/processes.scm:301 -#: guix/scripts/deploy.scm:55 guix/scripts/container.scm:35 +#: guix/scripts/deploy.scm:58 guix/scripts/container.scm:35 #: guix/scripts/container/exec.scm:43 guix/scripts/archive.scm:106 -#: guix/scripts/environment.scm:149 guix/scripts/home.scm:97 +#: guix/scripts/environment.scm:149 guix/scripts/home.scm:101 #: guix/scripts/time-machine.scm:67 guix/scripts/import/cpan.scm:44 #: guix/scripts/import/crate.scm:50 guix/scripts/import/egg.scm:45 #: guix/scripts/import/gem.scm:46 guix/scripts/import/gnu.scm:50 #: guix/scripts/import/go.scm:50 guix/scripts/import/json.scm:52 #: guix/scripts/import/opam.scm:45 guix/scripts/import/pypi.scm:46 #: guix/scripts/import/texlive.scm:45 guix/scripts/refresh.scm:187 -#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:67 -#: guix/scripts/style.scm:509 +#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:69 +#: guix/scripts/style.scm:804 msgid "" "\n" " -h, --help display this help and exit" @@ -2196,29 +2290,29 @@ msgstr "" " -h, --help montri ĉi tiun helpon kaj eliri" #: guix/scripts/build.scm:381 guix/scripts/download.scm:106 -#: guix/scripts/package.scm:506 guix/scripts/install.scm:46 +#: guix/scripts/package.scm:508 guix/scripts/install.scm:46 #: guix/scripts/remove.scm:43 guix/scripts/upgrade.scm:50 #: guix/scripts/search.scm:39 guix/scripts/show.scm:38 guix/scripts/gc.scm:90 #: guix/scripts/git.scm:36 guix/scripts/git/authenticate.scm:112 #: guix/scripts/hash.scm:100 guix/scripts/import.scm:100 #: guix/scripts/import/minetest.scm:50 guix/scripts/import/cran.scm:55 #: guix/scripts/pull.scm:127 guix/scripts/substitute.scm:252 -#: guix/scripts/system.scm:1034 guix/scripts/lint.scm:119 +#: guix/scripts/system.scm:1037 guix/scripts/lint.scm:119 #: guix/scripts/publish.scm:121 guix/scripts/edit.scm:53 #: guix/scripts/size.scm:251 guix/scripts/graph.scm:560 #: guix/scripts/challenge.scm:432 guix/scripts/copy.scm:129 #: guix/scripts/pack.scm:1359 guix/scripts/weather.scm:338 #: guix/scripts/describe.scm:98 guix/scripts/processes.scm:303 -#: guix/scripts/deploy.scm:57 guix/scripts/container.scm:37 +#: guix/scripts/deploy.scm:60 guix/scripts/container.scm:37 #: guix/scripts/container/exec.scm:45 guix/scripts/archive.scm:108 -#: guix/scripts/environment.scm:151 guix/scripts/home.scm:99 +#: guix/scripts/environment.scm:151 guix/scripts/home.scm:103 #: guix/scripts/time-machine.scm:69 guix/scripts/import/cpan.scm:46 #: guix/scripts/import/crate.scm:52 guix/scripts/import/egg.scm:49 #: guix/scripts/import/gem.scm:48 guix/scripts/import/gnu.scm:52 #: guix/scripts/import/json.scm:54 guix/scripts/import/opam.scm:52 #: guix/scripts/import/pypi.scm:50 guix/scripts/import/texlive.scm:47 #: guix/scripts/refresh.scm:189 guix/scripts/repl.scm:85 -#: guix/scripts/shell.scm:69 guix/scripts/style.scm:511 +#: guix/scripts/shell.scm:71 guix/scripts/style.scm:806 msgid "" "\n" " -V, --version display version information and exit" @@ -2465,166 +2559,166 @@ msgstr "profilo '~a' ne ekzistas~%" msgid "\"bash-minimal\" should be in 'inputs' when '~a' is used" msgstr "" -#: guix/lint.scm:616 +#: guix/lint.scm:614 msgid "no period allowed at the end of the synopsis" msgstr "punkto ne estas permesata ĉe la fino de la resumo" -#: guix/lint.scm:630 +#: guix/lint.scm:628 msgid "no article allowed at the beginning of the synopsis" msgstr "artikolo ne estas permesata ĉe komenco de la resumo" -#: guix/lint.scm:639 +#: guix/lint.scm:637 msgid "synopsis should be less than 80 characters long" msgstr "resumo devos havi malpli ol 80 signoj" -#: guix/lint.scm:648 +#: guix/lint.scm:646 msgid "synopsis should start with an upper-case letter or digit" msgstr "resumo devos komenci per majuskla litero aŭ cifero" -#: guix/lint.scm:656 +#: guix/lint.scm:654 msgid "synopsis should not start with the package name" msgstr "resumo ne devos komenci per la pak-nomo" -#: guix/lint.scm:670 +#: guix/lint.scm:668 msgid "Texinfo markup in synopsis is invalid" msgstr "" -#: guix/lint.scm:678 +#: guix/lint.scm:676 msgid "synopsis contains trailing whitespace" msgstr "" -#: guix/lint.scm:695 +#: guix/lint.scm:693 msgid "synopsis should not be empty" msgstr "resumo ne devos esti malplena" -#: guix/lint.scm:705 +#: guix/lint.scm:703 #, fuzzy, scheme-format msgid "invalid synopsis: ~s" msgstr "malvalida sintakso: ~a~%" -#: guix/lint.scm:805 +#: guix/lint.scm:803 #, scheme-format msgid "~a: HTTP GET error for ~a: ~a (~s)~%" msgstr "" -#: guix/lint.scm:815 +#: guix/lint.scm:813 #, fuzzy, scheme-format msgid "~a: host lookup failure: ~a~%" msgstr "eraro en serĉado de gastigant-nomo: ~a~%" -#: guix/lint.scm:820 +#: guix/lint.scm:818 #, scheme-format msgid "~a: TLS certificate error: ~a" msgstr "" -#: guix/lint.scm:825 +#: guix/lint.scm:823 #, fuzzy, scheme-format msgid "~a: TLS error in '~a': ~a~%" msgstr "eraro: dum kreo de dosierujo '~a': ~a~%" -#: guix/lint.scm:836 guix/ui.scm:820 guix/scripts/offload.scm:194 +#: guix/lint.scm:834 guix/ui.scm:820 guix/scripts/offload.scm:194 #, scheme-format msgid "~a: ~a~%" msgstr "~a: ~a~%" -#: guix/lint.scm:868 +#: guix/lint.scm:866 #, scheme-format msgid "URI ~a returned suspiciously small file (~a bytes)" msgstr "" -#: guix/lint.scm:877 +#: guix/lint.scm:875 #, scheme-format msgid "permanent redirect from ~a to ~a" msgstr "" -#: guix/lint.scm:883 +#: guix/lint.scm:881 #, scheme-format msgid "invalid permanent redirect from ~a" msgstr "" -#: guix/lint.scm:889 guix/lint.scm:899 +#: guix/lint.scm:887 guix/lint.scm:897 #, scheme-format msgid "URI ~a not reachable: ~a (~s)" msgstr "URI ~a ne estas alirebla: ~a (~s)" -#: guix/lint.scm:905 +#: guix/lint.scm:903 #, scheme-format msgid "URI ~a domain not found: ~a" msgstr "URI ~a domajno ne trovita: ~a" -#: guix/lint.scm:911 +#: guix/lint.scm:909 #, scheme-format msgid "URI ~a unreachable: ~a" msgstr "URI ~a nealirebla: ~a" -#: guix/lint.scm:919 +#: guix/lint.scm:917 #, scheme-format msgid "TLS certificate error: ~a" msgstr "" -#: guix/lint.scm:946 +#: guix/lint.scm:944 msgid "invalid value for home page" msgstr "malvalida valoroj por hejmpaĝo" -#: guix/lint.scm:951 +#: guix/lint.scm:949 #, scheme-format msgid "invalid home page URL: ~s" msgstr "malvalida hejmpaĝa URL: ~s" -#: guix/lint.scm:988 +#: guix/lint.scm:986 msgid "file names of patches should start with the package name" msgstr "dosiernomoj de flikaĵoj devos komenci per la pak-nomo" -#: guix/lint.scm:1008 +#: guix/lint.scm:1006 #, scheme-format msgid "~a: file name is too long, which may break 'make dist'" msgstr "" -#: guix/lint.scm:1029 +#: guix/lint.scm:1027 #, scheme-format msgid "~a: empty patch" msgstr "" -#: guix/lint.scm:1038 +#: guix/lint.scm:1036 #, scheme-format msgid "~a: patch lacks comment and upstream status" msgstr "" -#: guix/lint.scm:1099 +#: guix/lint.scm:1097 #, fuzzy, scheme-format msgid "proposed synopsis: ~s~%" msgstr "~a: ~a: proponita resumo: ~s~%" -#: guix/lint.scm:1113 +#: guix/lint.scm:1111 #, fuzzy, scheme-format msgid "proposed description:~% \"~a\"~%" msgstr "~a: ~a: proponita priskribo:~% \"~a\"~%" -#: guix/lint.scm:1164 +#: guix/lint.scm:1162 #, fuzzy msgid "all the source URIs are unreachable:" msgstr "URI ~a nealirebla: ~a" -#: guix/lint.scm:1193 +#: guix/lint.scm:1191 #, fuzzy msgid "the source file name should contain the package name" msgstr "dosiernomoj de flikaĵoj devos komenci per la pak-nomo" -#: guix/lint.scm:1205 +#: guix/lint.scm:1203 msgid "the source URI should not be an autogenerated tarball" msgstr "" -#: guix/lint.scm:1229 +#: guix/lint.scm:1227 #, scheme-format msgid "URL should be 'mirror://~a/~a'" msgstr "" -#: guix/lint.scm:1269 +#: guix/lint.scm:1267 #, fuzzy, scheme-format msgid "while accessing '~a'" msgstr "fiasko dum ŝargo de '~a': ~a~%" -#: guix/lint.scm:1276 +#: guix/lint.scm:1274 #, scheme-format msgid "URL should be '~a'" msgstr "" @@ -2632,69 +2726,69 @@ msgstr "" #. TRANSLATORS: check and #:tests? are a #. Scheme symbol and keyword respectively #. and should not be translated. -#: guix/lint.scm:1304 +#: guix/lint.scm:1302 msgid "the 'check' phase should respect #:tests?" msgstr "" -#: guix/lint.scm:1322 guix/lint.scm:1333 guix/lint.scm:1341 +#: guix/lint.scm:1320 guix/lint.scm:1331 guix/lint.scm:1339 #, fuzzy, scheme-format msgid "failed to create ~a derivation: ~a" msgstr "fiasko dum kreo de derivaĵo: ~a" -#: guix/lint.scm:1327 +#: guix/lint.scm:1325 #, fuzzy, scheme-format msgid "failed to create ~a derivation: ~s" msgstr "fiasko dum kreo de derivaĵo: ~s~%" -#: guix/lint.scm:1379 +#: guix/lint.scm:1377 #, scheme-format msgid "propagated inputs ~a and ~a collide" msgstr "" -#: guix/lint.scm:1403 +#: guix/lint.scm:1401 #, fuzzy msgid "invalid license field" msgstr "malvalidaj simbol-ligaj ĵetonoj" -#: guix/lint.scm:1410 +#: guix/lint.scm:1408 msgid "while retrieving CVE vulnerabilities" msgstr "" -#: guix/lint.scm:1453 +#: guix/lint.scm:1451 #, scheme-format msgid "probably vulnerable to ~a" msgstr "" -#: guix/lint.scm:1461 +#: guix/lint.scm:1459 #, fuzzy, scheme-format msgid "no updater for ~a" msgstr "neniu konstruita protokolo por '~a'~%" -#: guix/lint.scm:1466 guix/lint.scm:1641 +#: guix/lint.scm:1464 guix/lint.scm:1639 #, scheme-format msgid "while retrieving upstream info for '~a'" msgstr "" -#: guix/lint.scm:1475 +#: guix/lint.scm:1473 #, scheme-format msgid "can be upgraded to ~a" msgstr "" -#: guix/lint.scm:1481 +#: guix/lint.scm:1479 #, scheme-format msgid "updater '~a' failed to find upstream releases" msgstr "" -#: guix/lint.scm:1508 +#: guix/lint.scm:1506 #, fuzzy, scheme-format msgid "failed to access Disarchive database at ~a" msgstr "fiasko dum ŝargo de '~a': ~a~%" -#: guix/lint.scm:1535 +#: guix/lint.scm:1533 msgid "Software Heritage rate limit reached; try again later" msgstr "" -#: guix/lint.scm:1539 +#: guix/lint.scm:1537 #, scheme-format msgid "'~a' returned ~a" msgstr "" @@ -2702,169 +2796,169 @@ msgstr "" #. TRANSLATORS: "Software Heritage" is a proper noun #. that must remain untranslated. See #. . -#: guix/lint.scm:1578 +#: guix/lint.scm:1576 msgid "scheduled Software Heritage archival" msgstr "" -#: guix/lint.scm:1584 +#: guix/lint.scm:1582 msgid "archival rate limit exceeded; try again later" msgstr "" -#: guix/lint.scm:1605 +#: guix/lint.scm:1603 msgid "source not archived on Software Heritage and missing from the Disarchive database" msgstr "" -#: guix/lint.scm:1615 +#: guix/lint.scm:1613 #, scheme-format msgid "Disarchive entry refers to non-existent SWH directory '~a'" msgstr "" -#: guix/lint.scm:1624 +#: guix/lint.scm:1622 #, fuzzy #| msgid "unsupported nar file type" msgid "unsupported source type" msgstr "nesubtenata dosier-tipo nar" -#: guix/lint.scm:1633 +#: guix/lint.scm:1631 msgid "while connecting to Software Heritage" msgstr "" -#: guix/lint.scm:1650 +#: guix/lint.scm:1648 #, scheme-format msgid "ahead of Stackage LTS version ~a" msgstr "" -#: guix/lint.scm:1667 +#: guix/lint.scm:1665 #, scheme-format msgid "tabulation on line ~a, column ~a" msgstr "" -#: guix/lint.scm:1679 +#: guix/lint.scm:1677 #, scheme-format msgid "trailing white space on line ~a" msgstr "" -#: guix/lint.scm:1693 +#: guix/lint.scm:1691 #, scheme-format msgid "line ~a is way too long (~a characters)" msgstr "" -#: guix/lint.scm:1707 +#: guix/lint.scm:1705 msgid "parentheses feel lonely, move to the previous or next line" msgstr "" -#: guix/lint.scm:1784 +#: guix/lint.scm:1782 msgid "source file not found" msgstr "" -#: guix/lint.scm:1796 +#: guix/lint.scm:1794 msgid "Validate package names" msgstr "Validigi pak-nomojn" -#: guix/lint.scm:1800 +#: guix/lint.scm:1798 msgid "Check if tests are explicitly enabled" msgstr "" -#: guix/lint.scm:1804 +#: guix/lint.scm:1802 msgid "Validate package descriptions" msgstr "Validigi pak-priskribojn" -#: guix/lint.scm:1808 +#: guix/lint.scm:1806 msgid "Identify inputs that should be native inputs" msgstr "Identigi enigojn kiuj devus esti originalaj enigoj" -#: guix/lint.scm:1812 +#: guix/lint.scm:1810 #, fuzzy msgid "Identify inputs that shouldn't be inputs at all" msgstr "Identigi enigojn kiuj devus esti originalaj enigoj" -#: guix/lint.scm:1816 +#: guix/lint.scm:1814 #, fuzzy #| msgid "Identify inputs that should be native inputs" msgid "Identify input labels that do not match package names" msgstr "Identigi enigojn kiuj devus esti originalaj enigoj" -#: guix/lint.scm:1820 +#: guix/lint.scm:1818 msgid "Make sure 'wrap-program' can finds its interpreter." msgstr "" #. TRANSLATORS: is the name of a data type and must not be #. translated. -#: guix/lint.scm:1826 +#: guix/lint.scm:1824 msgid "Make sure the 'license' field is a or a list thereof" msgstr "" -#: guix/lint.scm:1831 +#: guix/lint.scm:1829 msgid "Make sure tests are only run when requested" msgstr "" -#: guix/lint.scm:1835 +#: guix/lint.scm:1833 msgid "Suggest 'mirror://' URLs" msgstr "" -#: guix/lint.scm:1839 +#: guix/lint.scm:1837 #, fuzzy msgid "Validate file names of sources" msgstr "Validigi dosiernomojn kaj disponeblon de flikaĵoj" -#: guix/lint.scm:1843 +#: guix/lint.scm:1841 msgid "Check for autogenerated tarballs" msgstr "" -#: guix/lint.scm:1847 +#: guix/lint.scm:1845 msgid "Report failure to compile a package to a derivation" msgstr "Raporti fiaskon kompili pakon al derivaĵo" -#: guix/lint.scm:1852 +#: guix/lint.scm:1850 msgid "Report collisions that would occur due to propagated inputs" msgstr "" -#: guix/lint.scm:1857 +#: guix/lint.scm:1855 msgid "Validate file names and availability of patches" msgstr "Validigi dosiernomojn kaj disponeblon de flikaĵoj" -#: guix/lint.scm:1861 +#: guix/lint.scm:1859 #, fuzzy msgid "Validate patch headers" msgstr "Validigi pak-priskribojn" -#: guix/lint.scm:1865 +#: guix/lint.scm:1863 msgid "Look for formatting issues in the source" msgstr "" -#: guix/lint.scm:1872 +#: guix/lint.scm:1870 msgid "Validate package synopses" msgstr "Validigi pak-resumojn" -#: guix/lint.scm:1876 +#: guix/lint.scm:1874 msgid "Validate synopsis & description of GNU packages" msgstr "Validigi resumon kaj priskribon de GNU-pakoj" -#: guix/lint.scm:1880 +#: guix/lint.scm:1878 msgid "Validate home-page URLs" msgstr "Validigi heimpaĝajn URL" -#: guix/lint.scm:1884 +#: guix/lint.scm:1882 msgid "Validate source URLs" msgstr "Validigi fontajn URL" -#: guix/lint.scm:1888 +#: guix/lint.scm:1886 msgid "Suggest GitHub URLs" msgstr "" -#: guix/lint.scm:1892 +#: guix/lint.scm:1890 msgid "Check the Common Vulnerabilities and Exposures (CVE) database" msgstr "" -#: guix/lint.scm:1897 +#: guix/lint.scm:1895 msgid "Check the package for new upstream releases" msgstr "" -#: guix/lint.scm:1901 +#: guix/lint.scm:1899 msgid "Ensure source code archival on Software Heritage" msgstr "" -#: guix/lint.scm:1905 +#: guix/lint.scm:1903 msgid "Ensure Haskell packages use Stackage LTS versions" msgstr "" @@ -2924,7 +3018,7 @@ msgstr "nesubtenata haket-formo: ~a~%" msgid "~a: unknown hash algorithm~%" msgstr "~a: nekonata pako~%" -#: guix/scripts/download.scm:171 guix/scripts/package.scm:1087 +#: guix/scripts/download.scm:171 guix/scripts/package.scm:1090 #: guix/scripts/pull.scm:758 guix/scripts/publish.scm:1260 #: guix/scripts/discover.scm:136 guix/scripts/time-machine.scm:123 #, scheme-format @@ -2956,17 +3050,17 @@ msgstr "ni ne forigas generacion ~a, kiu estas la nuna~%" msgid "no matching generation~%" msgstr "neniu kongrua generacio~%" -#: guix/scripts/package.scm:159 +#: guix/scripts/package.scm:161 #, scheme-format msgid "nothing to be done~%" msgstr "nenio por fari~%" -#: guix/scripts/package.scm:260 +#: guix/scripts/package.scm:262 #, scheme-format msgid "package '~a' no longer exists~%" msgstr "pako '~a' ne plu ekzistas~%" -#: guix/scripts/package.scm:315 +#: guix/scripts/package.scm:317 #, scheme-format msgid "" "Consider setting the necessary environment\n" @@ -2980,7 +3074,7 @@ msgid "" "Alternately, see @command{guix package --search-paths -p ~s}." msgstr "" -#: guix/scripts/package.scm:361 +#: guix/scripts/package.scm:363 msgid "" ";; This \"manifest\" file can be passed to 'guix package -m' to reproduce\n" ";; the content of your profile. This is \"symbolic\": it only specifies\n" @@ -2989,24 +3083,24 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/package.scm:393 +#: guix/scripts/package.scm:395 #, scheme-format msgid "no provenance information for this profile~%" msgstr "" -#: guix/scripts/package.scm:395 +#: guix/scripts/package.scm:397 msgid "" ";; This channel file can be passed to 'guix pull -C' or to\n" ";; 'guix time-machine -C' to obtain the Guix revision that was\n" ";; used to populate this profile.\n" msgstr "" -#: guix/scripts/package.scm:407 +#: guix/scripts/package.scm:409 #, scheme-format msgid ";; Note: these other commits were also used to install some of the packages in this profile:~%" msgstr "" -#: guix/scripts/package.scm:437 +#: guix/scripts/package.scm:439 msgid "" "Usage: guix package [OPTION]...\n" "Install, remove, or upgrade packages in a single transaction.\n" @@ -3014,7 +3108,7 @@ msgstr "" "Uzmaniero: guix package [ELEKTO]...\n" "Instalas, forigas, aŭ ĝisdatigas pakojn en ununura transakcio.\n" -#: guix/scripts/package.scm:439 +#: guix/scripts/package.scm:441 #, fuzzy msgid "" "\n" @@ -3024,7 +3118,7 @@ msgstr "" "\n" " -i, --install=PAKO instali PAKOn" -#: guix/scripts/package.scm:442 +#: guix/scripts/package.scm:444 msgid "" "\n" " -e, --install-from-expression=EXP\n" @@ -3034,7 +3128,7 @@ msgstr "" " -e, --install-from-expression=ESP\n" " instali la pakon ESP rezultas al" -#: guix/scripts/package.scm:445 +#: guix/scripts/package.scm:447 #, fuzzy msgid "" "\n" @@ -3046,7 +3140,7 @@ msgstr "" " -e, --install-from-expression=ESP\n" " instali la pakon ESP rezultas al" -#: guix/scripts/package.scm:449 +#: guix/scripts/package.scm:451 #, fuzzy msgid "" "\n" @@ -3056,7 +3150,7 @@ msgstr "" "\n" " -r, --remove=PAKO forigi PAKOn" -#: guix/scripts/package.scm:452 +#: guix/scripts/package.scm:454 msgid "" "\n" " -u, --upgrade[=REGEXP] upgrade all the installed packages matching REGEXP" @@ -3064,14 +3158,14 @@ msgstr "" "\n" " -u, --upgrade[=REGESP] ĝisdatigi ĉiujn instalitajn pakojn kongruantajn al REGESP" -#: guix/scripts/package.scm:454 +#: guix/scripts/package.scm:456 msgid "" "\n" " -m, --manifest=FILE create a new profile generation with the manifest\n" " from FILE" msgstr "" -#: guix/scripts/package.scm:457 guix/scripts/upgrade.scm:41 +#: guix/scripts/package.scm:459 guix/scripts/upgrade.scm:41 msgid "" "\n" " --do-not-upgrade[=REGEXP] do not upgrade any packages matching REGEXP" @@ -3079,7 +3173,7 @@ msgstr "" "\n" " --do-not-upgrade[=REGESP] ne ĝisdatigi iun ajn instalitan pakon kongruantan al REGESP" -#: guix/scripts/package.scm:459 guix/scripts/pull.scm:107 +#: guix/scripts/package.scm:461 guix/scripts/pull.scm:107 msgid "" "\n" " --roll-back roll back to the previous generation" @@ -3087,7 +3181,7 @@ msgstr "" "\n" " --roll-back retropaŝi al la antaŭa generacio" -#: guix/scripts/package.scm:461 +#: guix/scripts/package.scm:463 #, fuzzy msgid "" "\n" @@ -3097,7 +3191,7 @@ msgstr "" "\n" " --search-paths montri necesajn medi-variablajn difinojn" -#: guix/scripts/package.scm:464 guix/scripts/pull.scm:104 +#: guix/scripts/package.scm:466 guix/scripts/pull.scm:104 msgid "" "\n" " -l, --list-generations[=PATTERN]\n" @@ -3107,7 +3201,7 @@ msgstr "" " -I, --list-generations[=ŜABLONO]\n" " listigi generaciojn kongruantajn al ŜABLONO" -#: guix/scripts/package.scm:467 guix/scripts/pull.scm:109 +#: guix/scripts/package.scm:469 guix/scripts/pull.scm:109 msgid "" "\n" " -d, --delete-generations[=PATTERN]\n" @@ -3117,7 +3211,7 @@ msgstr "" " -d, --delete-generations[=ŜABLONO]\n" " forigi generaciojn kongruantajn al ŜABLONO" -#: guix/scripts/package.scm:470 guix/scripts/pull.scm:112 +#: guix/scripts/package.scm:472 guix/scripts/pull.scm:112 msgid "" "\n" " -S, --switch-generation=PATTERN\n" @@ -3127,7 +3221,7 @@ msgstr "" " -S, --switch-generations=ŜABLONO\n" " ŝalti al generacio kongruanta al ŜABLONO" -#: guix/scripts/package.scm:473 +#: guix/scripts/package.scm:475 msgid "" "\n" " --export-manifest print a manifest for the chosen profile" @@ -3135,13 +3229,13 @@ msgstr "" "\n" " --export-manifest montri manifesto por la indikita profilo" -#: guix/scripts/package.scm:475 +#: guix/scripts/package.scm:477 msgid "" "\n" " --export-channels print channels for the chosen profile" msgstr "" -#: guix/scripts/package.scm:477 guix/scripts/install.scm:34 +#: guix/scripts/package.scm:479 guix/scripts/install.scm:34 #: guix/scripts/remove.scm:33 guix/scripts/upgrade.scm:37 msgid "" "\n" @@ -3150,7 +3244,7 @@ msgstr "" "\n" " -p, --profile=PROFILO uzi PROFILOn anstataŭ la apriora profilo de la uzanto" -#: guix/scripts/package.scm:479 +#: guix/scripts/package.scm:481 msgid "" "\n" " --list-profiles list the user's profiles" @@ -3158,13 +3252,13 @@ msgstr "" "\n" " --list-profiles listigi la uzantajn profilojn" -#: guix/scripts/package.scm:482 +#: guix/scripts/package.scm:484 msgid "" "\n" " --allow-collisions do not treat collisions in the profile as an error" msgstr "" -#: guix/scripts/package.scm:484 +#: guix/scripts/package.scm:486 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" @@ -3172,7 +3266,7 @@ msgstr "" "\n" " --bootstrap uzi la praŝargilon Guile por konstrui la profilon" -#: guix/scripts/package.scm:489 +#: guix/scripts/package.scm:491 msgid "" "\n" " -s, --search=REGEXP search in synopsis and description using REGEXP" @@ -3180,7 +3274,7 @@ msgstr "" "\n" " -s, --search=REGESP serĉi en resumo kaj priskribo uzante REGESP" -#: guix/scripts/package.scm:491 +#: guix/scripts/package.scm:493 msgid "" "\n" " -I, --list-installed[=REGEXP]\n" @@ -3190,7 +3284,7 @@ msgstr "" " -I, --list-installed[=REGESP]\n" " listigi instalitajn pakojn kongruantajn al REGESP" -#: guix/scripts/package.scm:494 +#: guix/scripts/package.scm:496 msgid "" "\n" " -A, --list-available[=REGEXP]\n" @@ -3200,7 +3294,7 @@ msgstr "" " -A, --list-available[=REGESP]\n" " listigi disponeblajn pakojn kongruantajn al REGESP" -#: guix/scripts/package.scm:497 +#: guix/scripts/package.scm:499 #, fuzzy msgid "" "\n" @@ -3209,37 +3303,37 @@ msgstr "" "\n" " --show=PAKO montri detalojn pri PAKO" -#: guix/scripts/package.scm:552 +#: guix/scripts/package.scm:554 #, scheme-format msgid "upgrade regexp '~a' looks like a command-line option~%" msgstr "" -#: guix/scripts/package.scm:555 +#: guix/scripts/package.scm:557 #, scheme-format msgid "is this intended?~%" msgstr "" -#: guix/scripts/package.scm:605 +#: guix/scripts/package.scm:607 #, fuzzy, scheme-format msgid "~a: unsupported kind of search path~%" msgstr "~s: nesubtenata URI-skemo de servo~%" -#: guix/scripts/package.scm:739 +#: guix/scripts/package.scm:741 #, scheme-format msgid "cannot install non-package object: ~s~%" msgstr "" -#: guix/scripts/package.scm:918 +#: guix/scripts/package.scm:920 #, fuzzy, scheme-format msgid "~a~@[@~a~]: package not found~%" msgstr "~a: pako ne trovita~%" -#: guix/scripts/package.scm:965 guix/scripts/pull.scm:687 +#: guix/scripts/package.scm:967 guix/scripts/pull.scm:687 #, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "ne eblas ŝalti al generacio '~a'~%" -#: guix/scripts/package.scm:1060 +#: guix/scripts/package.scm:1062 #, fuzzy, scheme-format #| msgid "nothing to be done~%" msgid "nothing to do~%" @@ -3491,8 +3585,8 @@ msgstr "" "Uzmaniero: guix KOMANDO ARGj...\n" "Lanĉas KOMANDOn kun ARGj.\n" -#: guix/scripts/git.scm:29 guix/scripts/system.scm:945 -#: guix/scripts/container.scm:30 guix/scripts/home.scm:69 +#: guix/scripts/git.scm:29 guix/scripts/system.scm:946 +#: guix/scripts/container.scm:30 guix/scripts/home.scm:70 msgid "The valid values for ACTION are:\n" msgstr "La validaj valoroj por AGO estas:\n" @@ -3591,23 +3685,23 @@ msgstr "" "\n" " -r, --recursive komputi la haketon ĉe DOSIERO rikure" -#: guix/scripts/hash.scm:137 +#: guix/scripts/hash.scm:138 #, scheme-format -msgid "'--recursive' is deprecated, use '--serializer' instead~%" +msgid "'--recursive' is deprecated, use '--serializer=nar' instead~%" msgstr "" -#: guix/scripts/hash.scm:152 +#: guix/scripts/hash.scm:153 #, fuzzy, scheme-format msgid "unsupported serializer type: ~a~%" msgstr "nesubtenata haket-formo: ~a~%" -#: guix/scripts/hash.scm:201 +#: guix/scripts/hash.scm:202 #, fuzzy, scheme-format #| msgid "~a: ~a~%" msgid "~a ~a~%" msgstr "~a: ~a~%" -#: guix/scripts/hash.scm:210 +#: guix/scripts/hash.scm:211 #, fuzzy, scheme-format msgid "no arguments specified~%" msgstr "neniu agorda dosiero estis indikata~%" @@ -3672,9 +3766,9 @@ msgstr "~a: malvalida numero~%" #: guix/scripts/import/minetest.scm:115 guix/scripts/import/cran.scm:120 #: guix/scripts/import/elpa.scm:110 guix/scripts/import/cpan.scm:87 #: guix/scripts/import/crate.scm:103 guix/scripts/import/egg.scm:106 -#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:121 +#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:122 #: guix/scripts/import/hackage.scm:158 guix/scripts/import/json.scm:97 -#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:104 +#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:105 #: guix/scripts/import/stackage.scm:130 guix/scripts/import/texlive.scm:88 #, fuzzy, scheme-format msgid "too few arguments~%" @@ -3683,10 +3777,10 @@ msgstr "malĝusta nombro da argumentoj~%" #: guix/scripts/import/minetest.scm:117 guix/scripts/import/cran.scm:122 #: guix/scripts/import/elpa.scm:112 guix/scripts/import/cpan.scm:89 #: guix/scripts/import/crate.scm:105 guix/scripts/import/egg.scm:108 -#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:123 +#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:124 #: guix/scripts/import/hackage.scm:149 guix/scripts/import/hackage.scm:160 #: guix/scripts/import/json.scm:99 guix/scripts/import/opam.scm:113 -#: guix/scripts/import/pypi.scm:106 guix/scripts/import/stackage.scm:132 +#: guix/scripts/import/pypi.scm:107 guix/scripts/import/stackage.scm:132 #: guix/scripts/import/texlive.scm:90 #, fuzzy, scheme-format msgid "too many arguments~%" @@ -3710,7 +3804,7 @@ msgid "" " -s, --style=STYLE choose output style, either specification or variable" msgstr "" -#: guix/scripts/import/cran.scm:116 guix/scripts/import/texlive.scm:84 +#: guix/scripts/import/cran.scm:116 #, fuzzy, scheme-format msgid "failed to download description for package '~a'~%" msgstr "fiasko dum ŝargo je operaci-sistema dosiero '~a':~%" @@ -4146,27 +4240,27 @@ msgstr "" msgid "the dependency graph of shepherd services" msgstr "" -#: guix/scripts/system.scm:482 guix/scripts/home.scm:453 +#: guix/scripts/system.scm:482 guix/scripts/home.scm:466 #, scheme-format msgid " repository URL: ~a~%" msgstr "" -#: guix/scripts/system.scm:484 guix/scripts/home.scm:455 +#: guix/scripts/system.scm:484 guix/scripts/home.scm:468 #, scheme-format msgid " branch: ~a~%" msgstr "" -#: guix/scripts/system.scm:485 guix/scripts/home.scm:456 +#: guix/scripts/system.scm:485 guix/scripts/home.scm:469 #, scheme-format msgid " commit: ~a~%" msgstr "" -#: guix/scripts/system.scm:505 guix/scripts/home.scm:469 +#: guix/scripts/system.scm:505 guix/scripts/home.scm:482 #, fuzzy, scheme-format msgid " file name: ~a~%" msgstr "malvalida numero: ~a~%" -#: guix/scripts/system.scm:506 guix/scripts/home.scm:470 +#: guix/scripts/system.scm:506 guix/scripts/home.scm:483 #, scheme-format msgid " canonical file name: ~a~%" msgstr "" @@ -4207,12 +4301,12 @@ msgstr "" #. TRANSLATORS: Here "channel" is the same terminology as used in #. "guix describe" and "guix pull --channels". -#: guix/scripts/system.scm:536 guix/scripts/home.scm:476 +#: guix/scripts/system.scm:536 guix/scripts/home.scm:489 #, scheme-format msgid " channels:~%" msgstr "" -#: guix/scripts/system.scm:539 guix/scripts/home.scm:479 +#: guix/scripts/system.scm:539 guix/scripts/home.scm:492 #, fuzzy, scheme-format msgid " configuration file: ~a~%" msgstr "neniu agorda dosiero estis indikata~%" @@ -4264,41 +4358,41 @@ msgstr "" msgid "Failing to do that may downgrade your system!~%" msgstr "" -#: guix/scripts/system.scm:754 guix/scripts/system.scm:863 +#: guix/scripts/system.scm:754 guix/scripts/system.scm:864 #, fuzzy, scheme-format msgid "bootloader successfully installed on '~a'~%" msgstr "ni ĝisdatigis ~a sukcese, liverita sur '~a'~%" -#: guix/scripts/system.scm:856 +#: guix/scripts/system.scm:857 #, scheme-format msgid "activating system...~%" msgstr "ni aktivas la sistemon...~%" -#: guix/scripts/system.scm:867 +#: guix/scripts/system.scm:868 msgid "" "To complete the upgrade, run 'herd restart SERVICE' to stop,\n" "upgrade, and restart each service that was not automatically restarted.\n" msgstr "" -#: guix/scripts/system.scm:870 +#: guix/scripts/system.scm:871 msgid "Run 'herd status' to view the list of services on your system.\n" msgstr "" -#: guix/scripts/system.scm:874 +#: guix/scripts/system.scm:875 #, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "ni ekigas la operaci-sistemon sub '~a'...~%" -#: guix/scripts/system.scm:894 guix/scripts/graph.scm:437 +#: guix/scripts/system.scm:895 guix/scripts/graph.scm:437 #, fuzzy, scheme-format msgid "~a: unknown backend~%" msgstr "~a: nekonata pako~%" -#: guix/scripts/system.scm:931 +#: guix/scripts/system.scm:932 msgid "The available image types are:\n" msgstr "" -#: guix/scripts/system.scm:941 +#: guix/scripts/system.scm:942 msgid "" "Usage: guix system [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the operating system declared in FILE according to ACTION.\n" @@ -4308,73 +4402,73 @@ msgstr "" "Konstrui la operaciumo deklarita en DOSIERO akorde al AGO.\n" "Kelkaj AGOj subtenas kromajn ARGumentojn\n" -#: guix/scripts/system.scm:947 +#: guix/scripts/system.scm:948 msgid " search search for existing service types\n" msgstr "" -#: guix/scripts/system.scm:949 +#: guix/scripts/system.scm:950 #, fuzzy msgid " reconfigure switch to a new operating system configuration\n" msgstr " - 'reconfigure', alterni al nova operaci-sistema agordaro\n" -#: guix/scripts/system.scm:951 +#: guix/scripts/system.scm:952 #, fuzzy msgid " roll-back switch to the previous operating system configuration\n" msgstr " - 'reconfigure', alterni al nova operaci-sistema agordaro\n" -#: guix/scripts/system.scm:953 +#: guix/scripts/system.scm:954 msgid " describe describe the current system\n" msgstr "" -#: guix/scripts/system.scm:955 +#: guix/scripts/system.scm:956 msgid " list-generations list the system generations\n" msgstr "" -#: guix/scripts/system.scm:957 +#: guix/scripts/system.scm:958 #, fuzzy msgid " switch-generation switch to an existing operating system configuration\n" msgstr " - 'reconfigure', alterni al nova operaci-sistema agordaro\n" -#: guix/scripts/system.scm:959 +#: guix/scripts/system.scm:960 msgid " delete-generations delete old system generations\n" msgstr "" -#: guix/scripts/system.scm:961 +#: guix/scripts/system.scm:962 #, fuzzy msgid " build build the operating system without installing anything\n" msgstr " - 'build', konstrui la operaci-sistemon sen instali ion ajn\n" -#: guix/scripts/system.scm:963 +#: guix/scripts/system.scm:964 #, fuzzy msgid " container build a container that shares the host's store\n" msgstr " - 'vm', konstrui virtual-maŝinan bildon kiu kundividas la gastigantan memoron\n" -#: guix/scripts/system.scm:965 +#: guix/scripts/system.scm:966 msgid " vm build a virtual machine image that shares the host's store\n" msgstr " vm munti virtualan maŝinan kopion kiu kundividas la gastigantan konservejo\n" -#: guix/scripts/system.scm:967 +#: guix/scripts/system.scm:968 msgid " image build a Guix System image\n" msgstr " image konstrui Guix System kopion\n" -#: guix/scripts/system.scm:969 +#: guix/scripts/system.scm:970 msgid " docker-image build a Docker image\n" msgstr " docker-image konstrui Docker kopion\n" -#: guix/scripts/system.scm:971 +#: guix/scripts/system.scm:972 #, fuzzy msgid " init initialize a root file system to run GNU\n" msgstr " - 'init', ekigi radikan dosiersistemon por lanĉi GNU-on.\n" -#: guix/scripts/system.scm:973 +#: guix/scripts/system.scm:974 msgid " extension-graph emit the service extension graph in Dot format\n" msgstr "" -#: guix/scripts/system.scm:975 +#: guix/scripts/system.scm:976 msgid " shepherd-graph emit the graph of shepherd services in Dot format\n" msgstr "" -#: guix/scripts/system.scm:979 +#: guix/scripts/system.scm:980 msgid "" "\n" " -d, --derivation return the derivation of the given system" @@ -4382,21 +4476,21 @@ msgstr "" "\n" " -d, --derivation liveri la derivaĵo de la indikita operaciumo" -#: guix/scripts/system.scm:981 +#: guix/scripts/system.scm:982 msgid "" "\n" " -e, --expression=EXPR consider the operating-system EXPR evaluates to\n" " instead of reading FILE, when applicable" msgstr "" -#: guix/scripts/system.scm:984 +#: guix/scripts/system.scm:985 guix/scripts/home.scm:95 msgid "" "\n" " --allow-downgrades for 'reconfigure', allow downgrades to earlier\n" " channel revisions" msgstr "" -#: guix/scripts/system.scm:987 +#: guix/scripts/system.scm:988 msgid "" "\n" " --on-error=STRATEGY\n" @@ -4404,7 +4498,7 @@ msgid "" " or debug) when an error occurs while reading FILE" msgstr "" -#: guix/scripts/system.scm:991 +#: guix/scripts/system.scm:992 msgid "" "\n" " --list-image-types list available image types" @@ -4412,7 +4506,7 @@ msgstr "" "\n" " --list-image-types listigi disponeblajn kopispecojn" -#: guix/scripts/system.scm:993 +#: guix/scripts/system.scm:994 msgid "" "\n" " -t, --image-type=TYPE for 'image', produce an image of TYPE" @@ -4420,7 +4514,7 @@ msgstr "" "\n" " -t, --image-type=SPECO por 'image', produkti SPECAn kipion" -#: guix/scripts/system.scm:995 +#: guix/scripts/system.scm:996 msgid "" "\n" " --image-size=SIZE for 'image', produce an image of SIZE" @@ -4429,7 +4523,7 @@ msgstr "" " --image-size=GRANDO\n" " por 'image', produkti kipion je GRANDO" -#: guix/scripts/system.scm:997 +#: guix/scripts/system.scm:998 #, fuzzy msgid "" "\n" @@ -4438,7 +4532,7 @@ msgstr "" "\n" " --no-grub por 'init', ne instali GRUB" -#: guix/scripts/system.scm:999 +#: guix/scripts/system.scm:1000 msgid "" "\n" " --volatile for 'image', make the root file system volatile" @@ -4446,19 +4540,31 @@ msgstr "" "\n" " --volatile por 'image', nepermanentigi la supran dosiersistemon" -#: guix/scripts/system.scm:1001 +#: guix/scripts/system.scm:1002 +#, fuzzy +#| msgid "" +#| "\n" +#| " --volatile for 'image', make the root file system volatile" +msgid "" +"\n" +" --persistent for 'vm', make the root file system persistent" +msgstr "" +"\n" +" --volatile por 'image', nepermanentigi la supran dosiersistemon" + +#: guix/scripts/system.scm:1004 msgid "" "\n" " --label=LABEL for 'image', label disk image with LABEL" msgstr "" -#: guix/scripts/system.scm:1003 guix/scripts/pack.scm:1340 +#: guix/scripts/system.scm:1006 guix/scripts/pack.scm:1340 msgid "" "\n" " --save-provenance save provenance information" msgstr "" -#: guix/scripts/system.scm:1005 +#: guix/scripts/system.scm:1008 #, fuzzy msgid "" "\n" @@ -4468,7 +4574,7 @@ msgstr "" "\n" " --share=SPEC por 'vm', kundividi gastigan dosiersistemon akorde al SPEC" -#: guix/scripts/system.scm:1008 +#: guix/scripts/system.scm:1011 #, fuzzy msgid "" "\n" @@ -4478,13 +4584,13 @@ msgstr "" "\n" " --expose=SPEC for 'vm', elmontri gastigan dosiersistemon akorde al SPEC" -#: guix/scripts/system.scm:1011 +#: guix/scripts/system.scm:1014 msgid "" "\n" " -N, --network for 'container', allow containers to access the network" msgstr "" -#: guix/scripts/system.scm:1013 +#: guix/scripts/system.scm:1016 msgid "" "\n" " -r, --root=FILE for 'vm', 'image', 'container' and 'build',\n" @@ -4496,7 +4602,7 @@ msgstr "" " igi DOSIEROn simbola ligilo al la rezulto, kaj\n" " registri ĝin kiel radikon de senrubigilo" -#: guix/scripts/system.scm:1017 +#: guix/scripts/system.scm:1020 msgid "" "\n" " --full-boot for 'vm', make a full boot sequence" @@ -4504,76 +4610,76 @@ msgstr "" "\n" " --full-boot por 'vm', fari kompletan ekŝargan sekvon" -#: guix/scripts/system.scm:1019 +#: guix/scripts/system.scm:1022 msgid "" "\n" " --no-graphic for 'vm', use the tty that we are started in for IO" msgstr "" -#: guix/scripts/system.scm:1021 +#: guix/scripts/system.scm:1024 msgid "" "\n" " --skip-checks skip file system and initrd module safety checks" msgstr "" -#: guix/scripts/system.scm:1028 +#: guix/scripts/system.scm:1031 msgid "" "\n" " --graph-backend=BACKEND\n" " use BACKEND for 'extension-graphs' and 'shepherd-graph'" msgstr "" -#: guix/scripts/system.scm:1180 +#: guix/scripts/system.scm:1187 #, scheme-format msgid "'~a' does not return an operating system or an image~%" msgstr "'~a' ne liveras operaciumon nek kopion~%" -#: guix/scripts/system.scm:1204 guix/scripts/home.scm:216 +#: guix/scripts/system.scm:1211 guix/scripts/home.scm:230 #, scheme-format msgid "both file and expression cannot be specified~%" msgstr "" -#: guix/scripts/system.scm:1211 guix/scripts/home.scm:223 +#: guix/scripts/system.scm:1218 guix/scripts/home.scm:237 #, fuzzy, scheme-format msgid "no configuration specified~%" msgstr "neniu agorda dosiero estis indikata~%" -#: guix/scripts/system.scm:1319 guix/scripts/system.scm:1335 -#: guix/scripts/system.scm:1342 guix/scripts/system.scm:1348 -#: guix/scripts/home.scm:274 guix/scripts/home.scm:296 -#: guix/scripts/home.scm:301 guix/scripts/home.scm:307 -#: guix/scripts/home.scm:314 guix/scripts/import/gnu.scm:100 +#: guix/scripts/system.scm:1328 guix/scripts/system.scm:1344 +#: guix/scripts/system.scm:1351 guix/scripts/system.scm:1357 +#: guix/scripts/home.scm:287 guix/scripts/home.scm:309 +#: guix/scripts/home.scm:314 guix/scripts/home.scm:320 +#: guix/scripts/home.scm:327 guix/scripts/import/gnu.scm:100 #: guix/scripts/offload.scm:836 guix/scripts/offload.scm:848 #, scheme-format msgid "wrong number of arguments~%" msgstr "malĝusta nombro da argumentoj~%" -#: guix/scripts/system.scm:1324 +#: guix/scripts/system.scm:1333 #, fuzzy, scheme-format msgid "no system generation, nothing to describe~%" msgstr "ni ne forigas generacion ~a, kiu estas la nuna~%" -#: guix/scripts/system.scm:1367 guix/scripts/home.scm:337 +#: guix/scripts/system.scm:1376 guix/scripts/home.scm:350 #, scheme-format msgid "~a: unknown action~%" msgstr "~a: nekonata pako~%" -#: guix/scripts/system.scm:1387 guix/scripts/home.scm:353 +#: guix/scripts/system.scm:1396 guix/scripts/home.scm:366 #, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "malĝusta nombro da argumentoj por la ago '~a'~%" -#: guix/scripts/system.scm:1392 +#: guix/scripts/system.scm:1401 #, fuzzy, scheme-format msgid "guix system: missing command name~%" msgstr "guix: mankas komanda nomo~%" -#: guix/scripts/system.scm:1394 +#: guix/scripts/system.scm:1403 #, fuzzy, scheme-format msgid "Try 'guix system --help' for more information.~%" msgstr "Provu 'guix --help' por pli da informo.~%" -#: guix/scripts/system/search.scm:93 guix/ui.scm:1541 guix/ui.scm:1559 +#: guix/scripts/system/search.scm:93 guix/ui.scm:1544 guix/ui.scm:1562 msgid "unknown" msgstr "nekonata" @@ -5005,7 +5111,7 @@ msgstr "" " -h, --help montri ĉi tiun helpon kaj eliri" #: guix/scripts/graph.scm:548 guix/scripts/pack.scm:1325 -#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:502 +#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:797 #, fuzzy msgid "" "\n" @@ -5658,44 +5764,89 @@ msgstr "" "\n" " -f, --format=FRM skribi la haketon laŭ la indikita formo" -#: guix/scripts/deploy.scm:51 +#: guix/scripts/deploy.scm:54 msgid "" "Usage: guix deploy [OPTION] FILE...\n" "Perform the deployment specified by FILE.\n" msgstr "" -#: guix/scripts/deploy.scm:108 +#: guix/scripts/deploy.scm:63 +msgid "" +"\n" +" -x, --execute execute the following command on all the machines" +msgstr "" + +#: guix/scripts/deploy.scm:117 #, fuzzy, scheme-format msgid "The following ~d machine will be deployed:~%" msgid_plural "The following ~d machines will be deployed:~%" msgstr[0] "La jena pako estos forigata:~%~{~a~%~}~%" msgstr[1] "La jenaj pakoj estos forigataj:~%~{~a~%~}~%" -#: guix/scripts/deploy.scm:122 +#: guix/scripts/deploy.scm:131 #, fuzzy, scheme-format msgid "deploying to ~a...~%" msgstr "ni forigas ~a~%" -#: guix/scripts/deploy.scm:134 guix/scripts/deploy.scm:138 +#: guix/scripts/deploy.scm:143 guix/scripts/deploy.scm:147 #, fuzzy, scheme-format msgid "failed to deploy ~a: ~a~%" msgstr "fiasko dum ŝargo de '~a': ~a~%" -#: guix/scripts/deploy.scm:146 +#: guix/scripts/deploy.scm:155 #, fuzzy, scheme-format msgid "rolling back ~a...~%" msgstr "malpakado de '~a'...~%" -#: guix/scripts/deploy.scm:152 +#: guix/scripts/deploy.scm:161 #, fuzzy, scheme-format msgid "successfully deployed ~a~%" msgstr "ni ĝisdatigis ~a sukcese, liverita sur '~a'~%" -#: guix/scripts/deploy.scm:167 +#: guix/scripts/deploy.scm:212 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command succeeded~%" +msgstr "guix: ~a: komando ne trovita~%" + +#: guix/scripts/deploy.scm:215 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command exited with code ~a~%" +msgstr "guix: ~a: komando ne trovita~%" + +#: guix/scripts/deploy.scm:218 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command stopped with signal ~a~%" +msgstr "guix: ~a: komando ne trovita~%" + +#: guix/scripts/deploy.scm:221 +#, scheme-format +msgid "~a: command terminated with signal ~a~%" +msgstr "" + +#: guix/scripts/deploy.scm:225 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "command output on ~a:~%" +msgstr "guix: ~a: komando ne trovita~%" + +#: guix/scripts/deploy.scm:246 #, scheme-format msgid "missing deployment file argument~%" msgstr "" +#: guix/scripts/deploy.scm:249 +#, scheme-format +msgid "'--' was used by '-x' was not specified~%" +msgstr "" + +#: guix/scripts/deploy.scm:271 +#, scheme-format +msgid "'-x' specified but no command given~%" +msgstr "" + #: guix/gexp.scm:465 #, scheme-format msgid "resolving '~a' relative to current directory~%" @@ -5790,73 +5941,73 @@ msgstr "" msgid "exec failed with status ~d~%" msgstr "" -#: guix/transformations.scm:185 guix/transformations.scm:253 +#: guix/transformations.scm:186 guix/transformations.scm:254 #, fuzzy, scheme-format msgid "invalid replacement specification: ~s" msgstr "plursenca pak-specifigo '~a'~%" -#: guix/transformations.scm:234 +#: guix/transformations.scm:235 #, scheme-format msgid "the source of ~a is not a Git reference" msgstr "" -#: guix/transformations.scm:337 +#: guix/transformations.scm:338 #, fuzzy, scheme-format msgid "~a: invalid Git URL replacement specification" msgstr "plursenca pak-specifigo '~a'~%" -#: guix/transformations.scm:415 +#: guix/transformations.scm:416 #, fuzzy, scheme-format msgid "~a: invalid toolchain replacement specification" msgstr "plursenca pak-specifigo '~a'~%" -#: guix/transformations.scm:517 +#: guix/transformations.scm:518 #, fuzzy msgid "failed to determine which compiler is used" msgstr "fiasko dum kreo de derivaĵo: ~s~%" -#: guix/transformations.scm:523 +#: guix/transformations.scm:524 #, fuzzy, scheme-format msgid "failed to determine whether ~a supports ~a" msgstr "fiasko dum kreo de derivaĵo: ~s~%" -#: guix/transformations.scm:529 +#: guix/transformations.scm:530 #, scheme-format msgid "compiler ~a does not support micro-architecture ~a" msgstr "" -#: guix/transformations.scm:581 +#: guix/transformations.scm:582 #, fuzzy, scheme-format #| msgid "~a: ~a~%" msgid "tuning ~a for CPU ~a~%" msgstr "~a: ~a~%" -#: guix/transformations.scm:721 +#: guix/transformations.scm:722 #, fuzzy, scheme-format msgid "~a: invalid package patch specification" msgstr "~a: malvalida kontrolilo~%" -#: guix/transformations.scm:744 +#: guix/transformations.scm:745 #, scheme-format msgid "could not determine latest upstream release of '~a'~%" msgstr "" -#: guix/transformations.scm:752 +#: guix/transformations.scm:753 #, scheme-format msgid "cannot authenticate source of '~a', version ~a~%" msgstr "" -#: guix/transformations.scm:833 +#: guix/transformations.scm:840 #, scheme-format msgid "building for ~a instead of ~a, so tuning cannot be guessed~%" msgstr "" -#: guix/transformations.scm:859 +#: guix/transformations.scm:866 #, scheme-format msgid "Available package transformation options:~%" msgstr "Disponeblaj pak-transformaj elktoj:~%" -#: guix/transformations.scm:865 +#: guix/transformations.scm:872 #, fuzzy msgid "" "\n" @@ -5867,35 +6018,35 @@ msgstr "" " --with-source=FONTO\n" " uzi FONTOn dum konstruo de la koresponda pako" -#: guix/transformations.scm:868 +#: guix/transformations.scm:875 msgid "" "\n" " --with-input=PACKAGE=REPLACEMENT\n" " replace dependency PACKAGE by REPLACEMENT" msgstr "" -#: guix/transformations.scm:871 +#: guix/transformations.scm:878 msgid "" "\n" " --with-graft=PACKAGE=REPLACEMENT\n" " graft REPLACEMENT on packages that refer to PACKAGE" msgstr "" -#: guix/transformations.scm:874 +#: guix/transformations.scm:881 msgid "" "\n" " --with-branch=PACKAGE=BRANCH\n" " build PACKAGE from the latest commit of BRANCH" msgstr "" -#: guix/transformations.scm:877 +#: guix/transformations.scm:884 msgid "" "\n" " --with-commit=PACKAGE=COMMIT\n" " build PACKAGE from COMMIT" msgstr "" -#: guix/transformations.scm:880 +#: guix/transformations.scm:887 #, fuzzy msgid "" "\n" @@ -5906,7 +6057,7 @@ msgstr "" " --with-source=FONTO\n" " uzi FONTOn dum konstruo de la koresponda pako" -#: guix/transformations.scm:883 +#: guix/transformations.scm:890 #, fuzzy msgid "" "\n" @@ -5917,7 +6068,7 @@ msgstr "" " --with-source=FONTO\n" " uzi FONTOn dum konstruo de la koresponda pako" -#: guix/transformations.scm:886 +#: guix/transformations.scm:893 #, fuzzy msgid "" "\n" @@ -5928,7 +6079,7 @@ msgstr "" " --with-source=FONTO\n" " uzi FONTOn dum konstruo de la koresponda pako" -#: guix/transformations.scm:889 +#: guix/transformations.scm:896 #, fuzzy msgid "" "\n" @@ -5939,7 +6090,7 @@ msgstr "" " --with-source=FONTO\n" " uzi FONTOn dum konstruo de la koresponda pako" -#: guix/transformations.scm:892 +#: guix/transformations.scm:899 #, fuzzy msgid "" "\n" @@ -5950,7 +6101,7 @@ msgstr "" " --with-source=FONTO\n" " uzi FONTOn dum konstruo de la koresponda pako" -#: guix/transformations.scm:895 +#: guix/transformations.scm:902 #, fuzzy msgid "" "\n" @@ -5961,13 +6112,13 @@ msgstr "" " --with-source=FONTO\n" " uzi FONTOn dum konstruo de la koresponda pako" -#: guix/transformations.scm:901 +#: guix/transformations.scm:908 msgid "" "\n" " --help-transform list package transformation options not shown here" msgstr "" -#: guix/transformations.scm:950 +#: guix/transformations.scm:957 #, scheme-format msgid "transformation '~a' had no effect on ~a~%" msgstr "" @@ -6463,12 +6614,12 @@ msgstr[1] "La jenaj pakoj estos instalataj:~% ~{~a~%~}~%" msgid "~a: invalid Texinfo markup~%" msgstr "~a: malvalida numero~%" -#: guix/ui.scm:1873 +#: guix/ui.scm:1876 #, scheme-format msgid "invalid syntax: ~a~%" msgstr "malvalida sintakso: ~a~%" -#: guix/ui.scm:1882 +#: guix/ui.scm:1885 #, scheme-format msgid "Generation ~a\t~a" msgstr "Generacio ~a\t~a" @@ -6478,7 +6629,7 @@ msgstr "Generacio ~a\t~a" #. usual way of presenting dates in your locale. #. See https://www.gnu.org/software/guile/manual/html_node/SRFI_002d19-Date-to-string.html #. for details. -#: guix/ui.scm:1892 +#: guix/ui.scm:1895 #, scheme-format msgid "~b ~d ~Y ~T" msgstr "" @@ -6486,37 +6637,37 @@ msgstr "" #. TRANSLATORS: The word "current" here is an adjective for #. "Generation", as in "current generation". Use the appropriate #. gender where applicable. -#: guix/ui.scm:1898 +#: guix/ui.scm:1901 #, scheme-format msgid "~a\t(current)~%" msgstr "~a\t(nuna)~%" -#: guix/ui.scm:1932 +#: guix/ui.scm:1935 #, fuzzy, scheme-format msgid "cannot lock profile ~a: ~a~%" msgstr "ne eblas atingi '~a': ~a~%" -#: guix/ui.scm:1934 +#: guix/ui.scm:1937 #, fuzzy, scheme-format msgid "profile ~a is locked by another process~%" msgstr "profilo '~a' ne ekzistas~%" -#: guix/ui.scm:1963 +#: guix/ui.scm:1966 #, fuzzy, scheme-format msgid "switched from generation ~a to ~a~%" msgstr "alterno el generacio ~a al ~a~%" -#: guix/ui.scm:1979 +#: guix/ui.scm:1982 #, scheme-format msgid "deleting ~a~%" msgstr "ni forigas ~a~%" -#: guix/ui.scm:2010 +#: guix/ui.scm:2013 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "Provu 'guix --help' por pli da informo.~%" -#: guix/ui.scm:2102 +#: guix/ui.scm:2105 #, fuzzy #| msgid "" #| "Usage: guix COMMAND ARGS...\n" @@ -6528,7 +6679,7 @@ msgstr "" "Uzmaniero: guix KOMANDO ARGj...\n" "Lanĉas KOMANDOn kun ARGj.\n" -#: guix/ui.scm:2105 +#: guix/ui.scm:2108 #, fuzzy #| msgid "" #| "\n" @@ -6540,7 +6691,7 @@ msgstr "" "\n" " -h, --help montri ĉi tiun helpon kaj eliri" -#: guix/ui.scm:2107 +#: guix/ui.scm:2110 #, fuzzy #| msgid "" #| "\n" @@ -6552,26 +6703,26 @@ msgstr "" "\n" " -V, --version montri informon pri versio kaj eliri" -#: guix/ui.scm:2112 +#: guix/ui.scm:2115 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "KOMANDO devas esti unu el la sub-komandoj sube listataj:\n" -#: guix/ui.scm:2154 +#: guix/ui.scm:2157 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "guix: ~a: komando ne trovita~%" -#: guix/ui.scm:2156 +#: guix/ui.scm:2159 #, scheme-format msgid "Did you mean @code{~a}?" msgstr "" -#: guix/ui.scm:2190 +#: guix/ui.scm:2193 #, scheme-format msgid "guix: missing command name~%" msgstr "guix: mankas komanda nomo~%" -#: guix/ui.scm:2198 +#: guix/ui.scm:2201 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "guix: nerekonita elekto: '~a'~%" @@ -6900,22 +7051,22 @@ msgstr "" msgid "unsupported manifest format" msgstr "nesubtenata haket-formo: ~a~%" -#: guix/profiles.scm:2242 +#: guix/profiles.scm:2247 #, fuzzy, scheme-format msgid "while creating directory `~a': ~a" msgstr "eraro: dum kreo de dosierujo '~a': ~a~%" -#: guix/profiles.scm:2247 +#: guix/profiles.scm:2252 #, fuzzy, scheme-format msgid "Please create the @file{~a} directory, with you as the owner." msgstr "Bonvolu krei la dosierujon '~a', kun vi kiel posedanto.~%" -#: guix/profiles.scm:2256 +#: guix/profiles.scm:2261 #, fuzzy, scheme-format msgid "directory `~a' is not owned by you" msgstr "eraro: dosierujo '~a' ne estas posedata de vi~%" -#: guix/profiles.scm:2260 +#: guix/profiles.scm:2265 #, fuzzy, scheme-format msgid "Please change the owner of @file{~a} to user ~s." msgstr "Bonvole ŝanĝu la posedanton de '~a' al la uzanto ~s.~%" @@ -7572,11 +7723,16 @@ msgstr "" msgid "'--profile' cannot be used with package options~%" msgstr "" -#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:275 +#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:261 #, scheme-format msgid "no packages specified; creating an empty environment~%" msgstr "" +#: guix/scripts/environment.scm:979 +#, scheme-format +msgid "'--check' is unnecessary when using '--container'; doing nothing~%" +msgstr "" + #: guix/scripts/home/import.scm:179 msgid "" ";; This \"home-environment\" file can be passed to 'guix home reconfigure'\n" @@ -7586,7 +7742,7 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/home.scm:65 +#: guix/scripts/home.scm:66 #, fuzzy #| msgid "" #| "Usage: guix system [OPTION ...] ACTION [ARG ...] [FILE]\n" @@ -7601,50 +7757,50 @@ msgstr "" "Konstrui la operaciumo deklarita en DOSIERO akorde al AGO.\n" "Kelkaj AGOj subtenas kromajn ARGumentojn\n" -#: guix/scripts/home.scm:71 +#: guix/scripts/home.scm:72 #, fuzzy msgid " search search for existing service types\n" msgstr "" "\n" " --search-paths montri necesajn medi-variablajn difinojn" -#: guix/scripts/home.scm:73 +#: guix/scripts/home.scm:74 #, fuzzy msgid " reconfigure switch to a new home environment configuration\n" msgstr " - 'reconfigure', alterni al nova operaci-sistema agordaro\n" -#: guix/scripts/home.scm:75 +#: guix/scripts/home.scm:76 #, fuzzy msgid " roll-back switch to the previous home environment configuration\n" msgstr " - 'reconfigure', alterni al nova operaci-sistema agordaro\n" -#: guix/scripts/home.scm:77 +#: guix/scripts/home.scm:78 msgid " describe describe the current home environment\n" msgstr "" -#: guix/scripts/home.scm:79 +#: guix/scripts/home.scm:80 msgid " list-generations list the home environment generations\n" msgstr "" -#: guix/scripts/home.scm:81 +#: guix/scripts/home.scm:82 #, fuzzy msgid " switch-generation switch to an existing home environment configuration\n" msgstr " - 'reconfigure', alterni al nova operaci-sistema agordaro\n" -#: guix/scripts/home.scm:83 +#: guix/scripts/home.scm:84 msgid " delete-generations delete old home environment generations\n" msgstr "" -#: guix/scripts/home.scm:85 +#: guix/scripts/home.scm:86 #, fuzzy msgid " build build the home environment without installing anything\n" msgstr " - 'build', konstrui la operaci-sistemon sen instali ion ajn\n" -#: guix/scripts/home.scm:87 +#: guix/scripts/home.scm:88 msgid " import generates a home environment definition from dotfiles\n" msgstr "" -#: guix/scripts/home.scm:91 +#: guix/scripts/home.scm:92 #, fuzzy msgid "" "\n" @@ -7654,42 +7810,42 @@ msgstr "" "\n" " -e, --expression=ESPR konstrui la pakon aŭ derivaĵon kiu rezultas de ESPR" -#: guix/scripts/home.scm:196 +#: guix/scripts/home.scm:210 #, fuzzy, scheme-format #| msgid "'~a' does not return an operating system or an image~%" msgid "'~a' does not return a home environment ~%" msgstr "'~a' ne liveras operaciumon nek kopion~%" -#: guix/scripts/home.scm:280 +#: guix/scripts/home.scm:293 #, scheme-format msgid "'~a' populated with all the Home configuration files~%" msgstr "" -#: guix/scripts/home.scm:282 +#: guix/scripts/home.scm:295 #, scheme-format msgid "" "Run @command{guix home reconfigure ~a/home-configuration.scm} to effectively\n" "deploy the home environment described by these files.\n" msgstr "" -#: guix/scripts/home.scm:289 +#: guix/scripts/home.scm:302 #, fuzzy, scheme-format msgid "no home environment generation, nothing to describe~%" msgstr "ni ne forigas generacion ~a, kiu estas la nuna~%" -#: guix/scripts/home.scm:358 +#: guix/scripts/home.scm:371 #, fuzzy, scheme-format #| msgid "guix: missing command name~%" msgid "guix home: missing command name~%" msgstr "guix: mankas komanda nomo~%" -#: guix/scripts/home.scm:360 +#: guix/scripts/home.scm:373 #, fuzzy, scheme-format #| msgid "Try `guix --help' for more information.~%" msgid "Try 'guix home --help' for more information.~%" msgstr "Provu 'guix --help' por pli da informo.~%" -#: guix/scripts/home.scm:528 +#: guix/scripts/home.scm:541 #, fuzzy, scheme-format msgid "cannot switch to home environment generation '~a'~%" msgstr "ne eblas ŝalti al generacio '~a'~%" @@ -7731,7 +7887,7 @@ msgstr "" #: guix/scripts/import/cpan.scm:83 guix/scripts/import/crate.scm:97 #: guix/scripts/import/egg.scm:100 guix/scripts/import/gem.scm:98 -#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:100 +#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:101 #, fuzzy, scheme-format msgid "failed to download meta-data for package '~a'~%" msgstr "fiasko dum ŝargo je operaci-sistema dosiero '~a':~%" @@ -7806,7 +7962,7 @@ msgid "" " --pin-versions use the exact versions of a module's dependencies" msgstr "" -#: guix/scripts/import/go.scm:117 +#: guix/scripts/import/go.scm:118 #, fuzzy, scheme-format msgid "failed to download meta-data for module '~a'.~%" msgstr "fiasko dum ŝargo je operaci-sistema dosiero '~a':~%" @@ -7945,6 +8101,11 @@ msgid "" "Import and convert the Texlive package for PACKAGE-NAME.\n" msgstr "" +#: guix/scripts/import/texlive.scm:84 +#, fuzzy, scheme-format +msgid "failed to import package '~a'~%" +msgstr "fiasko dum ŝargo de '~a':~%" + #: guix/scripts/offload.scm:130 #, scheme-format msgid "The 'system' field is deprecated, please use 'systems' instead.~%" @@ -8399,14 +8560,14 @@ msgstr "~a: elŝuto fiaskis~%" msgid "~a: unknown type of REPL~%" msgstr "~a: nekonata pako~%" -#: guix/scripts/shell.scm:46 +#: guix/scripts/shell.scm:48 msgid "" "Usage: guix shell [OPTION] PACKAGES... [-- COMMAND...]\n" "Build an environment that includes PACKAGES and execute COMMAND or an\n" "interactive shell in that environment.\n" msgstr "" -#: guix/scripts/shell.scm:52 +#: guix/scripts/shell.scm:54 #, fuzzy #| msgid "" #| "\n" @@ -8418,7 +8579,7 @@ msgstr "" "\n" " -d, --derivations liveri la derivaĵajn dosierindikojn de la indikitaj pakoj" -#: guix/scripts/shell.scm:54 +#: guix/scripts/shell.scm:56 #, fuzzy msgid "" "\n" @@ -8427,7 +8588,7 @@ msgstr "" "\n" " -e, --expression=ESPR konstrui la pakon aŭ derivaĵon kiu rezultas de ESPR" -#: guix/scripts/shell.scm:56 +#: guix/scripts/shell.scm:58 #, fuzzy msgid "" "\n" @@ -8436,29 +8597,29 @@ msgstr "" "\n" " -h, --help montri ĉi tiun helpon kaj eliri" -#: guix/scripts/shell.scm:58 +#: guix/scripts/shell.scm:60 msgid "" "\n" " --rebuild-cache rebuild cached environment, if any" msgstr "" -#: guix/scripts/shell.scm:199 +#: guix/scripts/shell.scm:201 #, fuzzy, scheme-format msgid "ignoring invalid file name: '~a'~%" msgstr "malvalida numero: ~a~%" -#: guix/scripts/shell.scm:280 +#: guix/scripts/shell.scm:266 #, fuzzy, scheme-format #| msgid "following redirection to `~a'...~%" msgid "loading environment from '~a'...~%" msgstr "ni sekvas la redirektigon al '~a'...~%" -#: guix/scripts/shell.scm:286 +#: guix/scripts/shell.scm:272 #, scheme-format msgid "not loading '~a' because not authorized to do so~%" msgstr "" -#: guix/scripts/shell.scm:288 +#: guix/scripts/shell.scm:274 #, scheme-format msgid "" "To allow automatic loading of\n" @@ -8470,48 +8631,59 @@ msgid "" "@end example\n" msgstr "" -#: guix/scripts/shell.scm:386 +#: guix/scripts/shell.scm:431 msgid "" "Consider passing the @option{--check} option once\n" "to make sure your shell does not clobber environment variables." msgstr "" -#: guix/scripts/style.scm:241 +#: guix/scripts/style.scm:499 #, fuzzy, scheme-format msgid "~a: complex expression, bailing out~%" msgstr "subskribo ne estas valida s-esprimo: ~s~%" -#: guix/scripts/style.scm:259 +#: guix/scripts/style.scm:517 #, scheme-format msgid "~a: input label '~a' does not match package name, bailing out~%" msgstr "" -#: guix/scripts/style.scm:264 +#: guix/scripts/style.scm:522 #, scheme-format msgid "~a: non-trivial input, bailing out~%" msgstr "" -#: guix/scripts/style.scm:288 +#: guix/scripts/style.scm:546 #, fuzzy, scheme-format msgid "~a: input expression is too short~%" msgstr "subskribo ne estas valida s-esprimo: ~s~%" -#: guix/scripts/style.scm:380 +#: guix/scripts/style.scm:638 #, fuzzy, scheme-format msgid "~a: unsupported input style, bailing out~%" msgstr "~s: nesubtenata URI-skemo de servo~%" -#: guix/scripts/style.scm:392 +#: guix/scripts/style.scm:650 #, scheme-format msgid "would be edited~%" msgstr "" -#: guix/scripts/style.scm:482 +#: guix/scripts/style.scm:721 +#, fuzzy, scheme-format +msgid "no definition location for package ~a~%" +msgstr "fiasko dum ŝargo je operaci-sistema dosiero '~a':~%" + +#: guix/scripts/style.scm:767 +#, fuzzy, scheme-format +#| msgid "~a: unknown action~%" +msgid "~a: unknown styling~%" +msgstr "~a: nekonata pako~%" + +#: guix/scripts/style.scm:774 #, fuzzy, scheme-format msgid "~a: invalid input simplification policy~%" msgstr "malvalidaj simbol-ligaj ĵetonoj" -#: guix/scripts/style.scm:496 +#: guix/scripts/style.scm:788 #, fuzzy #| msgid "" #| "Usage: guix archive [OPTION]... PACKAGE...\n" @@ -8523,7 +8695,13 @@ msgstr "" "Uzmaniero: guix archive [ELEKTO]... PAKO...\n" "Eksportas/importas unu aŭ pli da PAKOj al/el la konservejo.\n" -#: guix/scripts/style.scm:498 +#: guix/scripts/style.scm:790 +msgid "" +"\n" +" -S, --styling=RULE apply RULE, a styling rule" +msgstr "" + +#: guix/scripts/style.scm:793 #, fuzzy #| msgid "" #| "\n" @@ -8535,7 +8713,7 @@ msgstr "" "\n" " -n, --dry-run montri kion estus farita sen fakte fari ĝin" -#: guix/scripts/style.scm:504 +#: guix/scripts/style.scm:799 msgid "" "\n" " --input-simplification=POLICY\n" @@ -8695,6 +8873,12 @@ msgstr "" msgid "produce debugging output" msgstr "" +#, fuzzy +#~ msgid "" +#~ "Failed to import package ~s.\n" +#~ "reason: ~s.~%" +#~ msgstr "fiasko dum registro de '~a' sub '~a'~%" + #, fuzzy #~ msgid "Package not found in opam repository: ~a~%" #~ msgstr "~A: pako ne trovita por versio ~a~%" @@ -8709,9 +8893,6 @@ msgstr "" #~ msgid " disk-image build a disk image, suitable for a USB stick\n" #~ msgstr " - 'disk-image', konstrui disk-bildon, taŭga por USB-memoro\n" -#~ msgid "~a: note: using ~a but ~a is available upstream~%" -#~ msgstr "~a: rimarko: ni uzas ~a sed ~a disponeblas unuanivele~%" - #~ msgid "system locale lacks a definition" #~ msgstr "sistema lokaĵaro malhavas difinon" diff --git a/po/guix/es.po b/po/guix/es.po index 0910ad1c8d..9cf681c6b0 100644 --- a/po/guix/es.po +++ b/po/guix/es.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the guix package. # Jorge Maldonado Ventura , 2018. # Miguel Ángel Arruga Vivas , 2019, 2020. -# Emilio Herrera , 2021. +# Emilio Herrera , 2021, 2022. # Jorge Javier Araya Navarro , 2021. -# Luis Felipe López Acevedo , 2021. +# Luis Felipe López Acevedo , 2021, 2022. #: guix/diagnostics.scm:157 msgid "" msgstr "" "Project-Id-Version: guix 1.2.0-pre3\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" -"PO-Revision-Date: 2021-12-27 00:16+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" +"PO-Revision-Date: 2022-02-01 06:16+0000\n" "Last-Translator: Emilio Herrera \n" "Language-Team: Spanish \n" "Language: es\n" @@ -64,38 +64,38 @@ msgstr "" msgid "Try adding @code{(use-service-modules ~a)}." msgstr "Intente añadir @code{(use-package-modules ~a)}." -#: gnu/packages.scm:96 +#: gnu/packages.scm:97 #, scheme-format msgid "~a: patch not found" msgstr "~a: parche no encontrado" -#: gnu/packages.scm:480 gnu/packages.scm:521 +#: gnu/packages.scm:481 gnu/packages.scm:522 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "especificación de paquete ambigua `~a'~%" -#: gnu/packages.scm:481 gnu/packages.scm:522 +#: gnu/packages.scm:482 gnu/packages.scm:523 #, scheme-format msgid "choosing ~a@~a from ~a~%" msgstr "seleccionando ~a@~a de ~a~%" # FUZZY -#: gnu/packages.scm:486 guix/scripts/package.scm:216 +#: gnu/packages.scm:487 guix/scripts/package.scm:218 #, scheme-format msgid "package '~a' has been superseded by '~a'~%" msgstr "el paquete '~a' ha sido reemplazado por '~a'~%" -#: gnu/packages.scm:493 gnu/packages.scm:510 +#: gnu/packages.scm:494 gnu/packages.scm:511 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A: paquete no encontrado para versión ~a~%" -#: gnu/packages.scm:494 gnu/packages.scm:511 +#: gnu/packages.scm:495 gnu/packages.scm:512 #, scheme-format msgid "~A: unknown package~%" msgstr "~A: paquete desconocido~%" -#: gnu/packages.scm:550 +#: gnu/packages.scm:551 #, scheme-format msgid "package `~a' lacks output `~a'~%" msgstr "el paquete '~a' carece de la salida '~a'~%" @@ -187,8 +187,7 @@ msgid "" msgstr "" "Este es el @dfn{perfil del sistema}, disponible como\n" "@file{/run/current-system/profile}. Contiene paquetes que la\n" -"administradora del sistema desea que estén disponibles globalmente a\n" -"todos los usuarios del sistema." +"administradora del sistema desea que estén disponibles globalmente a todos los usuarios del sistema." #: gnu/services.scm:892 msgid "" @@ -327,30 +326,23 @@ msgid "" "@code{SIGKILL}." msgstr "" "El servicio @code{user-processes} es responsable\n" -"de terminar todos los procesos de modo que el sistema de archivos raíz\n" -"pueda montarse en modo de solo-lectura, justo antes de reiniciar/parar\n" -"la máquina. Los procesos que todavía permanezcan en ejecución tras\n" -"pasar algunos segundos desde el envíode la señal @code{SIGTERM} se\n" +"de terminar todos los procesos de modo que el sistema de archivos raíz pueda montarse\n" +"en modo de solo-lectura, justo antes de reiniciar/parar. Los procesos que todavía permanezcan en ejecución tras\n" +"pasar algunos segundos desde el envío de la señal @code{SIGTERM} se\n" "finalizan con la señal @code{SIGKILL}." # FUZZY -#: gnu/home/services.scm:127 -#, fuzzy -#| msgid "" -#| "Build the operating system top-level directory, which in\n" -#| "turn refers to everything the operating system needs: its kernel, initrd,\n" -#| "system profile, boot script, and so on." +#: gnu/home/services.scm:128 msgid "" "Build the home environment top-level directory,\n" "which in turn refers to everything the home environment needs: its\n" "packages, configuration files, activation script, and so on." msgstr "" -"Construye el directorio de nivel superior del sistema\n" -"operativo, el cual a su vez hace referencia a todo lo que el sistema\n" -"operativo necesita: su núcleo, disco inicial en RAM (initrd), perfil\n" -"del sistema, guión de arranque y demás." +"Construye el directorio de nivel superior del entorno home,\n" +"el cual a su vez hace referencia a todo lo que el entorno home necesita: sus\n" +"paquetes, archivos de configuración, guión de arranque y demás." -#: gnu/home/services.scm:158 +#: gnu/home/services.scm:159 #, scheme-format msgid "" "This is the @dfn{home profile} and can be found in\n" @@ -358,48 +350,57 @@ msgid "" "configuration files that the user has declared in their\n" "@code{home-environment} record." msgstr "" +"Este es el @dfn{home profile} y se puede encontrar en\n" +"@file{~/.guix-home/profile}. Contiene paquetes y\n" +"archivos de configuración que el usuario ha declarado en su\n" +"registro @code{home-environment}." -#: gnu/home/services.scm:180 +#: gnu/home/services.scm:181 #, scheme-format msgid "duplicate definition for `~a' environment variable ~%" -msgstr "" +msgstr "definición duplicada para la variable de entorno `~a' ~%" -#: gnu/home/services.scm:242 -#, fuzzy -#| msgid "checking the environment variables visible from shell '~a'...~%" +#: gnu/home/services.scm:243 msgid "Set the environment variables." -msgstr "comprobando las variables de entorno visibles desde el shell '~a'...~%" +msgstr "Establecer las variables de entorno." -#: gnu/home/services.scm:253 -#, fuzzy, scheme-format -#| msgid "duplicate '~a' entry for /etc" +#: gnu/home/services.scm:254 +#, scheme-format msgid "duplicate '~a' entry for files/" -msgstr "la entrada '~a' está por duplicado en /etc" +msgstr "la entrada '~a' está por duplicado para archivos/" -#: gnu/home/services.scm:277 +#: gnu/home/services.scm:278 #, scheme-format msgid "" "Configuration files for programs that\n" "will be put in @file{~/.guix-home/files}." msgstr "" +"Archivos de configuración para programas que\n" +"se pondrán en @file{~/.guix-home/files}." #. TRANSLATORS: 'on-first-login' is the name of a service and #. shouldn't be translated -#: gnu/home/services.scm:308 +#: gnu/home/services.scm:309 msgid "" "XDG_RUNTIME_DIR doesn't exists, on-first-login script\n" "won't execute anything. You can check if xdg runtime directory exists,\n" "XDG_RUNTIME_DIR variable is set to appropriate value and manually execute the\n" "script by running '$HOME/.guix-home/on-first-login'" msgstr "" +"XDG_RUNTIME_DIR no existe, en la secuencia de comandos de primer acceso\n" +"no ejecutará nada. Puede comprobar si el directorio de tiempo de ejecución xdg existe,\n" +"la variable XDG_RUNTIME_DIR está establecida con un valor apropiado y ejecute manualmente la manually execute the\n" +"secuencia de comandos ejecutando '$HOME/.guix-home/on-first-login'" -#: gnu/home/services.scm:328 +#: gnu/home/services.scm:329 msgid "" "Run gexps on first user login. Can be\n" "extended with one gexp." msgstr "" +"Corre gexps en el primer acceso de usuario. Se puede\n" +"extender con un gexp." -#: gnu/home/services.scm:391 +#: gnu/home/services.scm:392 msgid "" "Run gexps to activate the current\n" "generation of home environment and update the state of the home\n" @@ -407,61 +408,70 @@ msgid "" "reconfiguration or generation switching. This service can be extended\n" "with one gexp, but many times, and all gexps must be idempotent." msgstr "" +"Corra gexps para activar la generación\n" +"actual del entorno home y actualizar el estado del directorio\n" +"home. @command{activate} secuencia de comandos llamada automáticamente durante\n" +"reconfiguración o conmutación de generación. Este servicio se puede extender\n" +"con un gexp, pero muchas veces y todos los gexps deben ser idempotentes." -#: gnu/home/services.scm:472 +#: gnu/home/services.scm:473 #, scheme-format msgid "" "Comparing ~a and\n" "~10t~a..." msgstr "" +"Comparando ~a y\n" +"~10t~a..." -#: gnu/home/services.scm:474 +#: gnu/home/services.scm:475 #, scheme-format msgid " done (~a)\n" -msgstr "" +msgstr " hecho (~a)\n" #. TRANSLATORS: 'on-change' is the name of a service type, it #. probably shouldn't be translated. -#: gnu/home/services.scm:483 +#: gnu/home/services.scm:484 msgid "" "Evaluating on-change gexps.\n" "\n" msgstr "" +"Evaluando cambiar gexps.\n" +"\n" -#: gnu/home/services.scm:485 +#: gnu/home/services.scm:486 msgid "" "On-change gexps evaluation finished.\n" "\n" msgstr "" +"Evaluación de cambio de gexps terminada.\n" +"\n" -#: gnu/home/services.scm:499 +#: gnu/home/services.scm:500 msgid "" "G-expressions to run if the specified files have changed since the\n" "last generation. The extension should be a list of lists where the\n" "first element is the pattern for file or directory that expected to be\n" "changed, and the second element is the G-expression to be evaluated." msgstr "" +"Expresiones G a ejecutar si los archivos especificados han sido cambiados desde la\n" +"última generación. La extensión debería ser una lista donde el\n" +"primer elemento es el patrón para el archivo o directorio que espera ser\n" +"cambiado y el segundo elemento es la expresión G a evaluar." -#: gnu/home/services.scm:519 -#, fuzzy -#| msgid "" -#| "Store provenance information about the system in the system\n" -#| "itself: the channels used when building the system, and its configuration\n" -#| "file, when available." +#: gnu/home/services.scm:520 msgid "" "Store provenance information about the home environment in the home\n" "environment itself: the channels used when building the home\n" "environment, and its configuration file, when available." msgstr "" -"Almacena información de proveniencia acerca del sistema en el\n" -"sistema mismo: los canales que se usaron al construir el sistema, y su\n" -"archivo de configuración, cuando estén disponibles." +"Almacena información de proveniencia acerca del entorno home en el entorno\n" +"home mismo: los canales que se usaron al construir el entorno\n" +"home y su archivo de configuración, cuando estén disponibles." #: gnu/home/services/symlink-manager.scm:144 -#, fuzzy, scheme-format -#| msgid "copying to '~a'..." +#, scheme-format msgid "Backing up ~a..." -msgstr "copiando a '~a'..." +msgstr "Retrocediendo a '~a'..." #: gnu/home/services/symlink-manager.scm:147 #: gnu/home/services/symlink-manager.scm:169 @@ -469,40 +479,43 @@ msgstr "copiando a '~a'..." #: gnu/home/services/symlink-manager.scm:215 #: gnu/home/services/symlink-manager.scm:223 msgid " done\n" -msgstr "" +msgstr " hecho.\n" #: gnu/home/services/symlink-manager.scm:154 msgid "" "Cleaning up symlinks from previous home-environment.\n" "\n" msgstr "" +"Limpiando los enlaces simbólicos de los anteriores entornos home.\n" +"\n" #: gnu/home/services/symlink-manager.scm:158 msgid "" "Cleanup finished.\n" "\n" msgstr "" +"Limpieza terminada.\n" +"\n" #: gnu/home/services/symlink-manager.scm:166 #: gnu/home/services/symlink-manager.scm:182 -#, fuzzy, scheme-format -#| msgid "deploying to ~a...~%" +#, scheme-format msgid "Removing ~a..." -msgstr "desplegando a ~a...~%" +msgstr "Quitando ~a..." #: gnu/home/services/symlink-manager.scm:172 #, scheme-format msgid "Skipping ~a (not an empty directory)... done\n" -msgstr "" +msgstr "Saltando ~a (no es un directorio vacío)... hecho\n" #: gnu/home/services/symlink-manager.scm:187 #, scheme-format msgid "Skipping ~a (not a symlink to store)... done\n" -msgstr "" +msgstr "Saltando ~a (no es un enlace simbólico a almacenar)... hecho\n" #: gnu/home/services/symlink-manager.scm:198 msgid "New symlinks to home-environment will be created soon.\n" -msgstr "" +msgstr "Los nuevos enlaces simbólicos para el entorno home serán creados pronto.\n" #: gnu/home/services/symlink-manager.scm:200 #, scheme-format @@ -510,22 +523,23 @@ msgid "" "All conflicting files will go to ~a.\n" "\n" msgstr "" +"Todos los archivos conflictivos irán a ~a.\n" +"\n" #: gnu/home/services/symlink-manager.scm:210 #, scheme-format msgid "Skipping ~a (directory already exists)... done\n" -msgstr "" +msgstr "Saltando ~a (el directorio ya existe)... hecho\n" #: gnu/home/services/symlink-manager.scm:213 -#, fuzzy, scheme-format -#| msgid "deploying to ~a...~%" +#, scheme-format msgid "Creating ~a..." -msgstr "desplegando a ~a...~%" +msgstr "Creando ~a..." #: gnu/home/services/symlink-manager.scm:220 #, scheme-format msgid "Symlinking ~a -> ~a..." -msgstr "" +msgstr "Enlazando simbólicamente ~a -> ~a..." #: gnu/home/services/symlink-manager.scm:234 msgid "" @@ -533,6 +547,9 @@ msgid "" "Finished updating symlinks.\n" "\n" msgstr "" +" hecho\n" +"Actualización de enlaces simbólicos finalizada.\n" +"\n" #: gnu/home/services/symlink-manager.scm:248 msgid "" @@ -541,6 +558,10 @@ msgid "" "on every activation. If an existing file would be overwritten by a\n" "symlink, backs up that file first." msgstr "" +"Provee una secuencia de comandos\n" +"@code{update-symlinks}, que crea enlaces simbólicos para la configuración de archivos y directorios\n" +"en cada activación. Si un archivos existente debería ser sobreescrito por un\n" +"enlace simbólico, hará copia de seguridad de ese archivo primero." # FUZZY #: gnu/system/file-systems.scm:135 @@ -727,12 +748,12 @@ msgstr "Captador MELPA no soportado: ~a, cayendo a una fuente MELPA inestable.~% msgid "Updater for ELPA packages" msgstr "Actualizador para paquetes ELPA" -#: guix/import/github.scm:170 +#: guix/import/github.scm:175 #, scheme-format msgid "~a is unreachable (~a)~%" msgstr "~a es inalcanzable (~a)~%" -#: guix/import/github.scm:260 +#: guix/import/github.scm:274 msgid "Updater for GitHub packages" msgstr "Actualizador para paquetes GitHub" @@ -769,12 +790,22 @@ msgid "failed to determine latest release of GNU ~a" msgstr "fallo al determinar la última versión de GNU ~a" # FUZZY -#: guix/import/go.scm:569 +#: guix/import/go.scm:571 #, scheme-format msgid "unsupported vcs type '~a' for package '~a'" msgstr "tipo vcs no soportado '~a' para paquete '~a'" -#: guix/import/go.scm:647 +#: guix/import/go.scm:594 +#, scheme-format +msgid "version ~a of ~a is not available~%" +msgstr "versión ~a de ~a no está disponible~%" + +#: guix/import/go.scm:597 +#, scheme-format +msgid "Pick one of the following available versions:~{ ~a~}." +msgstr "Elija una de las siguientes versiones disponibles:~{ ~a~}." + +#: guix/import/go.scm:671 #, scheme-format msgid "" "Failed to import package ~s.\n" @@ -785,15 +816,6 @@ msgstr "" "razón: ~s no se pudo recuperar: error HTTP ~a (~s).\n" "Este paquete y sus dependencias no se importarán.~%" -#: guix/import/go.scm:656 -#, scheme-format -msgid "" -"Failed to import package ~s.\n" -"reason: ~s.~%" -msgstr "" -"Fallo al importar paquete ~s.\n" -"razón: ~s.~%" - #: guix/import/minetest.scm:178 #, scheme-format msgid "In ~a: author names must consist of at least a single character.~%" @@ -887,77 +909,102 @@ msgstr "opam: paquete '~a' no encontrado~%" msgid "Updater for OPAM packages" msgstr "Actualizador para paquetes OPAM" -#: guix/import/pypi.scm:230 +#: guix/import/pypi.scm:233 msgid "Could not extract requirement name in spec:" msgstr "No se pudo extraer el nombre del requisito en la especificación:" -#: guix/import/pypi.scm:290 +#: guix/import/pypi.scm:293 #, scheme-format msgid "parse-requires.txt reached an unexpected condition on line ~a~%" msgstr "parse-requires.txt alcanzó una condición inesperada en la línea ~a~%" -#: guix/import/pypi.scm:356 +#: guix/import/pypi.scm:359 #, scheme-format msgid "Failed to extract file: ~a from wheel.~%" msgstr "Fallo al extraer archivo: ~a de la rueda.~%" -#: guix/import/pypi.scm:385 +#: guix/import/pypi.scm:388 #, scheme-format msgid "Cannot guess requirements from source archive: no requires.txt file found.~%" msgstr "No puede adivinar los requisitos del archivo fuente: no se encuentra archivo requires.txt.~%" -#: guix/import/pypi.scm:390 +#: guix/import/pypi.scm:393 #, scheme-format msgid "Unsupported archive format; cannot determine package dependencies from source archive: ~a~%" msgstr "Formato de archivo no soportado; no puede determinar las dependencias del paquete desde el archivo fuente: ~a~%" -#: guix/import/pypi.scm:489 +#: guix/import/pypi.scm:434 +#, scheme-format +msgid "project name ~a does not appear verbatim in the PyPI URI~%" +msgstr "el nombre de proyecto ~a no aparece literal en la PyPI URI~%" + +#: guix/import/pypi.scm:437 +#, scheme-format +msgid "" +"The PyPI URI is: @url{~a}. You should review the\n" +"pypi-uri declaration in the generated package. You may need to replace ~s with\n" +"a substring of the PyPI URI that identifies the package." +msgstr "" +"La PyPI URI es: @url{~a}. Debería revisar la \n" +"declaración de pypi-uri en el paquete generado. Puede que necesite reemplazar ~s con\n" +"una subcadena de la PyPI URI que identifique el paquete." + +#: guix/import/pypi.scm:505 #, scheme-format msgid "no source release for pypi package ~a ~a~%" msgstr "sin versión de fuente para el paquete pypi ~a ~a~%" -#: guix/import/pypi.scm:554 +#: guix/import/pypi.scm:509 +#, scheme-format +msgid "" +"This indicates that the\n" +"package is available on PyPI, but only as a \"wheel\" containing binaries, not\n" +"source. To build it from source, refer to the upstream repository at\n" +"@uref{~a}." +msgstr "" + +#: guix/import/pypi.scm:579 msgid "Updater for PyPI packages" msgstr "Actualizador para paquetes PyPI" -#: gnu/installer.scm:214 +#: gnu/installer.scm:217 msgid "Locale" msgstr "Localización" -#: gnu/installer.scm:230 gnu/installer/newt/timezone.scm:58 +#: gnu/installer.scm:233 gnu/installer/newt/timezone.scm:58 msgid "Timezone" msgstr "Zona horaria" -#: gnu/installer.scm:247 +#: gnu/installer.scm:250 msgid "Keyboard mapping selection" msgstr "Selección de distribución de teclado" -#: gnu/installer.scm:256 gnu/installer/newt/hostname.scm:26 +#: gnu/installer.scm:259 gnu/installer/newt/hostname.scm:26 msgid "Hostname" msgstr "Nombre de máquina" -#: gnu/installer.scm:265 +#: gnu/installer.scm:268 msgid "Network selection" msgstr "Selección de red" -#: gnu/installer.scm:272 +#: gnu/installer.scm:275 msgid "Substitute server discovery" msgstr "Descubrimiento de servidor sustituto" -#: gnu/installer.scm:279 gnu/installer/newt/user.scm:68 -#: gnu/installer/newt/user.scm:205 +#: gnu/installer.scm:282 gnu/installer/newt/user.scm:67 +#: gnu/installer/newt/user.scm:204 msgid "User creation" msgstr "Creación de cuentas de usuarios" -#: gnu/installer.scm:287 +#: gnu/installer.scm:290 msgid "Services" msgstr "Servicios" -#: gnu/installer.scm:298 +#: gnu/installer.scm:301 msgid "Partitioning" msgstr "Particionamiento" -#: gnu/installer.scm:305 gnu/installer/newt/final.scm:53 +#: gnu/installer.scm:308 gnu/installer/newt/final.scm:53 msgid "Configuration file" msgstr "Archivo de configuración" @@ -970,19 +1017,86 @@ msgstr "No se pudo determinar el estado de connman." msgid "Unable to find expected regexp." msgstr "No se pudo encontrar la expresión regular esperada." -#: gnu/installer/newt.scm:52 +#: gnu/installer/newt.scm:58 msgid "Press for installation parameters." msgstr "Pulse para los parámetros de instalación." -#: gnu/installer/newt.scm:65 -#, scheme-format -msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +#: gnu/installer/newt.scm:68 +#, fuzzy +#| msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. You may choose to exit or create a dump archive." msgstr "El instalador ha encontrado un problema inesperado. La pila de llamadas se muestra a continuación. Por favor, informe del error por correo electrónico a <~a>." -#: gnu/installer/newt.scm:68 +#: gnu/installer/newt.scm:71 msgid "Unexpected problem" msgstr "Problema inesperado" +#: gnu/installer/newt.scm:75 +msgid "Dump" +msgstr "" + +#: gnu/installer/newt.scm:76 gnu/installer/newt/ethernet.scm:79 +#: gnu/installer/newt/keymap.scm:56 gnu/installer/newt/locale.scm:43 +#: gnu/installer/newt/network.scm:65 gnu/installer/newt/network.scm:82 +#: gnu/installer/newt/page.scm:315 gnu/installer/newt/page.scm:679 +#: gnu/installer/newt/page.scm:763 gnu/installer/newt/page.scm:828 +#: gnu/installer/newt/partition.scm:54 gnu/installer/newt/partition.scm:90 +#: gnu/installer/newt/partition.scm:125 gnu/installer/newt/partition.scm:140 +#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 +#: gnu/installer/newt/partition.scm:706 gnu/installer/newt/partition.scm:764 +#: gnu/installer/newt/partition.scm:775 gnu/installer/newt/services.scm:124 +#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/wifi.scm:206 +msgid "Exit" +msgstr "Salir" + +#: gnu/installer/newt.scm:82 +#, scheme-format +msgid "The dump archive was created as ~a. Would you like to send this archive to the Guix servers?" +msgstr "" + +#: gnu/installer/newt.scm:84 +msgid "Dump archive created" +msgstr "" + +#: gnu/installer/newt.scm:88 +#, scheme-format +msgid "The dump was uploaded as ~a. Please report it by email to ~a." +msgstr "" + +#: gnu/installer/newt.scm:90 +#, fuzzy +#| msgid "some services could not be upgraded~%" +msgid "The dump could not be uploaded." +msgstr "no se pudo actualizar algunos servicios~%" + +#: gnu/installer/newt.scm:93 +msgid "Dump upload result" +msgstr "" + +# FUZZY +#: gnu/installer/newt.scm:132 +#, fuzzy, scheme-format +#| msgid "Command failed with exit code ~a.~%" +msgid "External command ~s exited with code ~a" +msgstr "La orden ha fallado con código de salida ~a.~%" + +#: gnu/installer/newt.scm:135 +#, scheme-format +msgid "External command ~s terminated by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:138 +#, scheme-format +msgid "External command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:140 +#, fuzzy +#| msgid "internal commands" +msgid "External command error" +msgstr "órdenes internas" + #: gnu/installer/newt/ethernet.scm:66 msgid "No ethernet service available, please try again." msgstr "No hay un servicio ethernet disponible, por favor, intentelo de nuevo." @@ -991,60 +1105,46 @@ msgstr "No hay un servicio ethernet disponible, por favor, intentelo de nuevo." msgid "No service" msgstr "Ningún servicio" -#: gnu/installer/newt/ethernet.scm:76 +#: gnu/installer/newt/ethernet.scm:74 msgid "Please select an ethernet network." msgstr "Por favor, seleccione una red ethernet." -#: gnu/installer/newt/ethernet.scm:77 +#: gnu/installer/newt/ethernet.scm:75 msgid "Ethernet connection" msgstr "Conexión ethernet" -#: gnu/installer/newt/ethernet.scm:81 gnu/installer/newt/keymap.scm:56 -#: gnu/installer/newt/locale.scm:43 gnu/installer/newt/network.scm:63 -#: gnu/installer/newt/network.scm:84 gnu/installer/newt/page.scm:309 -#: gnu/installer/newt/page.scm:673 gnu/installer/newt/page.scm:758 -#: gnu/installer/newt/partition.scm:56 gnu/installer/newt/partition.scm:91 -#: gnu/installer/newt/partition.scm:126 gnu/installer/newt/partition.scm:141 -#: gnu/installer/newt/partition.scm:638 gnu/installer/newt/partition.scm:661 -#: gnu/installer/newt/partition.scm:707 gnu/installer/newt/partition.scm:765 -#: gnu/installer/newt/partition.scm:776 gnu/installer/newt/services.scm:130 -#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:204 -#: gnu/installer/newt/wifi.scm:206 -msgid "Exit" -msgstr "Salir" - # FUZZY #: gnu/installer/newt/final.scm:46 #, scheme-format msgid "We're now ready to proceed with the installation! A system configuration file has been generated, it is displayed below. This file will be available as '~a' on the installed system. The new system will be created from this file once you've pressed OK. This will take a few minutes." msgstr "¡Estamos preparadas para continuar con la instalación! Se ha generado un archivo de configuración del sistema, el cual se muestra a continuación. Este archivo estará disponible como '~a' en el sistema instalado. El nuevo sistema se creará desde este archivo una vez haya pulsado «Aceptar». Tardará algunos minutos." -#: gnu/installer/newt/final.scm:70 +#: gnu/installer/newt/final.scm:68 msgid "Installation complete" msgstr "Instalación completada" -#: gnu/installer/newt/final.scm:71 gnu/installer/newt/parameters.scm:45 +#: gnu/installer/newt/final.scm:69 gnu/installer/newt/parameters.scm:45 #: gnu/installer/newt/welcome.scm:145 msgid "Reboot" msgstr "Reiniciar" -#: gnu/installer/newt/final.scm:72 +#: gnu/installer/newt/final.scm:70 msgid "Congratulations! Installation is now complete. You may remove the device containing the installation image and press the button to reboot." msgstr "¡Enhorabuena! La instalación se ha completado. Puede retirar el dispositivo que contiene la imagen de instalación y pulsar el botón para reiniciar." -#: gnu/installer/newt/final.scm:86 +#: gnu/installer/newt/final.scm:84 msgid "Installation failed" msgstr "Fallo en la instalación" -#: gnu/installer/newt/final.scm:87 +#: gnu/installer/newt/final.scm:85 msgid "Resume" msgstr "Volver a empezar" -#: gnu/installer/newt/final.scm:88 +#: gnu/installer/newt/final.scm:86 msgid "Restart the installer" msgstr "Reiniciar el instalador" -#: gnu/installer/newt/final.scm:89 +#: gnu/installer/newt/final.scm:87 msgid "The final system installation step failed. You can resume from a specific step, or restart the installer." msgstr "Falló el paso final de la instalación del sistema. Puede volver a empezar desde un paso específico o reiniciar el instalador." @@ -1073,9 +1173,9 @@ msgstr "Por favor, seleccione uno de los siguientes parámetros o pulse «Atrás msgid "Installation parameters" msgstr "Parámetros de la instalación" -#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:74 -#: gnu/installer/newt/locale.scm:63 gnu/installer/newt/locale.scm:78 -#: gnu/installer/newt/locale.scm:94 gnu/installer/newt/partition.scm:595 +#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:72 +#: gnu/installer/newt/locale.scm:61 gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:88 gnu/installer/newt/partition.scm:594 #: gnu/installer/newt/timezone.scm:64 msgid "Back" msgstr "Atrás" @@ -1097,18 +1197,18 @@ msgstr "Por favor, seleccione su distribución de teclado. Se usará únicamente msgid "Please choose your keyboard layout. It will be used during the install process, and for the installed system. Non-Latin layouts can be toggled with Alt+Shift. You can switch to a different layout at any time from the parameters menu." msgstr "Por favor, seleccione su distribución de teclado. Se usará durante el proceso de instalación y en el sistema instalado. Las distribuciones no-latinas pueden seleccionarse con Alt+Shift. Puede cambiar a una distribución diferente en cualquier momento mediante el menú de parámetros." -#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:62 -#: gnu/installer/newt/page.scm:308 +#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/page.scm:314 msgid "Continue" msgstr "Continuar" # FUZZY -#: gnu/installer/newt/keymap.scm:67 +#: gnu/installer/newt/keymap.scm:65 msgid "Variant" msgstr "Variante" # FUZZY -#: gnu/installer/newt/keymap.scm:70 +#: gnu/installer/newt/keymap.scm:68 msgid "Please choose a variant for your keyboard layout." msgstr "Por favor, seleccione la variante de su distribución del teclado." @@ -1121,35 +1221,35 @@ msgid "Choose the language to use for the installation process and for the insta msgstr "Seleccione la lengua a usar en el proceso de instalación y para el sistema instalado." # FUZZY -#: gnu/installer/newt/locale.scm:57 +#: gnu/installer/newt/locale.scm:55 msgid "Locale location" msgstr "Localización física" -#: gnu/installer/newt/locale.scm:60 +#: gnu/installer/newt/locale.scm:58 msgid "Choose a territory for this language." msgstr "Seleccione un territorio para esta lengua." -#: gnu/installer/newt/locale.scm:71 +#: gnu/installer/newt/locale.scm:67 msgid "Locale codeset" msgstr "Conjunto de códigos de la localización" -#: gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:70 msgid "Choose the locale encoding." msgstr "Seleccione la codificación de la localización." -#: gnu/installer/newt/locale.scm:86 +#: gnu/installer/newt/locale.scm:80 msgid "Locale modifier" msgstr "Modificadores de la localización" -#: gnu/installer/newt/locale.scm:89 +#: gnu/installer/newt/locale.scm:83 msgid "Choose your locale's modifier. The most frequent modifier is euro. It indicates that you want to use Euro as the currency symbol." msgstr "Seleccione los modificadores de su localización. El más frecuente es euro. Indica que desea usar Euro como símbolo de la moneda." -#: gnu/installer/newt/locale.scm:190 +#: gnu/installer/newt/locale.scm:181 msgid "No location" msgstr "Ninguna localización" -#: gnu/installer/newt/locale.scm:217 +#: gnu/installer/newt/locale.scm:208 msgid "No modifier" msgstr "Ningún modificador" @@ -1166,289 +1266,293 @@ msgstr "Menú de instalación" msgid "Abort" msgstr "Abortar" -#: gnu/installer/newt/network.scm:61 gnu/installer/newt/network.scm:80 +#: gnu/installer/newt/network.scm:63 gnu/installer/newt/network.scm:78 msgid "Internet access" msgstr "Acceso a internet" -#: gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/network.scm:66 msgid "The install process requires Internet access but no network devices were found. Do you want to continue anyway?" msgstr "El proceso de instalación necesita acceso a internet pero no se ha encontrado ningún dispositivo de red. ¿Desea continuar de todos modos?" -#: gnu/installer/newt/network.scm:78 +#: gnu/installer/newt/network.scm:76 msgid "The install process requires Internet access. Please select a network device." msgstr "El proceso de instalación necesita acceso a internet. Por favor, seleccione un dispositivo de red." # FUZZY -#: gnu/installer/newt/network.scm:103 +#: gnu/installer/newt/network.scm:99 msgid "Powering technology" msgstr "Tecnología de alimentación" # FUZZY -#: gnu/installer/newt/network.scm:104 +#: gnu/installer/newt/network.scm:100 #, scheme-format msgid "Waiting for technology ~a to be powered." msgstr "Esperando al encendido de la tecnología ~a." -#: gnu/installer/newt/network.scm:128 +#: gnu/installer/newt/network.scm:139 msgid "Checking connectivity" msgstr "Comprobando la conectividad" -#: gnu/installer/newt/network.scm:129 +#: gnu/installer/newt/network.scm:140 msgid "Waiting for Internet access establishment..." msgstr "Esperando al establecimiento del acceso a internet..." -#: gnu/installer/newt/network.scm:139 -msgid "The selected network does not provide access to the Internet, please try again." -msgstr "La red seleccionada no proporciona acceso a internet, por favor, intente de nuevo." +#: gnu/installer/newt/network.scm:150 +msgid "The selected network does not provide access to the Internet and the Guix substitute server, please try again." +msgstr "La red seleccionada no proporciona acceso a internet y al servidor sustituto Guix, por favor inténtelo de nuevo." -#: gnu/installer/newt/network.scm:141 gnu/installer/newt/wifi.scm:108 +#: gnu/installer/newt/network.scm:152 gnu/installer/newt/wifi.scm:108 msgid "Connection error" msgstr "Error de conexión" -#: gnu/installer/newt/page.scm:198 +#: gnu/installer/newt/page.scm:204 #, scheme-format msgid "Connecting to ~a, please wait." msgstr "Conectando a ~a, por favor, espere." -#: gnu/installer/newt/page.scm:199 +#: gnu/installer/newt/page.scm:205 msgid "Connection in progress" msgstr "Conexión en progreso" -#: gnu/installer/newt/page.scm:218 gnu/installer/newt/user.scm:60 +#: gnu/installer/newt/page.scm:224 gnu/installer/newt/user.scm:59 msgid "Show" msgstr "Mostrar" # FUZZY -#: gnu/installer/newt/page.scm:225 gnu/installer/newt/page.scm:672 -#: gnu/installer/newt/page.scm:757 gnu/installer/newt/partition.scm:458 -#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 -#: gnu/installer/newt/partition.scm:699 gnu/installer/newt/user.scm:66 -#: gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/page.scm:231 gnu/installer/newt/page.scm:678 +#: gnu/installer/newt/page.scm:762 gnu/installer/newt/partition.scm:457 +#: gnu/installer/newt/partition.scm:636 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:698 gnu/installer/newt/user.scm:65 +#: gnu/installer/newt/user.scm:202 msgid "OK" msgstr "Aceptar" -#: gnu/installer/newt/page.scm:251 +#: gnu/installer/newt/page.scm:257 msgid "Please enter a non empty input." msgstr "Por favor, proporcione una entrada no vacía." -#: gnu/installer/newt/page.scm:252 gnu/installer/newt/user.scm:123 +#: gnu/installer/newt/page.scm:258 gnu/installer/newt/user.scm:122 msgid "Empty input" msgstr "Entrada vacía" -#: gnu/installer/newt/page.scm:760 +#: gnu/installer/newt/page.scm:765 msgid "Edit" msgstr "Editar" +#: gnu/installer/newt/page.scm:825 +msgid "Ok" +msgstr "" + # TODO (MAAV): Revisar -#: gnu/installer/newt/partition.scm:47 +#: gnu/installer/newt/partition.scm:45 msgid "Everything is one partition" msgstr "Todo en una partición" # TODO (MAAV): Revisar -#: gnu/installer/newt/partition.scm:48 +#: gnu/installer/newt/partition.scm:46 msgid "Separate /home partition" msgstr "Partición separada para /home" -#: gnu/installer/newt/partition.scm:50 +#: gnu/installer/newt/partition.scm:48 msgid "Please select a partitioning scheme." msgstr "Por favor, seleccione un esquema de particionado." -#: gnu/installer/newt/partition.scm:51 +#: gnu/installer/newt/partition.scm:49 msgid "Partition scheme" msgstr "Esquema de particionado" #. TRANSLATORS: The ~{ and ~} format specifiers are used to iterate the list #. of device names of the user partitions that will be formatted. -#: gnu/installer/newt/partition.scm:65 +#: gnu/installer/newt/partition.scm:63 #, scheme-format msgid "We are about to write the configured partition table to the disk and format the partitions listed below. Their data will be lost. Do you wish to continue?~%~%~{ - ~a~%~}" msgstr "Se va a escribir al disco la tabla de particiones configurada y se dará formato a las particiones mostradas a continuación. Sus datos se perderán. ¿Desea continuar?~%~%~{ - ~a~%~}" -#: gnu/installer/newt/partition.scm:71 +#: gnu/installer/newt/partition.scm:69 msgid "Format disk?" msgstr "¿Dar formato al disco?" -#: gnu/installer/newt/partition.scm:74 +#: gnu/installer/newt/partition.scm:72 msgid "Partition formatting is in progress, please wait." msgstr "El formato de la partición está en progreso, por favor, espere." -#: gnu/installer/newt/partition.scm:75 +#: gnu/installer/newt/partition.scm:73 msgid "Preparing partitions" msgstr "Preparando las particiones" -#: gnu/installer/newt/partition.scm:86 -msgid "Please select a disk." -msgstr "Por favor, seleccione un disco." +#: gnu/installer/newt/partition.scm:84 +msgid "Please select a disk. The installation device as well as the small devices are filtered." +msgstr "Por favor seleccione un disco. Se filtran tanto el dispositivo de instalación como los pequeños dispositivos." -#: gnu/installer/newt/partition.scm:87 +#: gnu/installer/newt/partition.scm:86 msgid "Disk" msgstr "Disco" -#: gnu/installer/newt/partition.scm:102 +#: gnu/installer/newt/partition.scm:101 msgid "Select a new partition table type. Be careful, all data on the disk will be lost." msgstr "Seleccione un nuevo tipo de tabla de particiones. Tenga cuidado, se perderán todos los datos en el disco." -#: gnu/installer/newt/partition.scm:104 +#: gnu/installer/newt/partition.scm:103 msgid "Partition table" msgstr "Tabla de particiones" -#: gnu/installer/newt/partition.scm:121 +#: gnu/installer/newt/partition.scm:120 msgid "Please select a partition type." msgstr "Por favor, seleccione un tipo de partición." -#: gnu/installer/newt/partition.scm:122 +#: gnu/installer/newt/partition.scm:121 msgid "Partition type" msgstr "Tipo de partición" -#: gnu/installer/newt/partition.scm:132 +#: gnu/installer/newt/partition.scm:131 msgid "Please select the file-system type for this partition." msgstr "Por favor, seleccione el tipo de sistema de archivos para esta partición." -#: gnu/installer/newt/partition.scm:133 +#: gnu/installer/newt/partition.scm:132 msgid "File-system type" msgstr "Tipo del sistema de archivos" -#: gnu/installer/newt/partition.scm:150 +#: gnu/installer/newt/partition.scm:149 msgid "Primary partitions count exceeded." msgstr "Se excedió el número posible de particiones primarias." -#: gnu/installer/newt/partition.scm:151 gnu/installer/newt/partition.scm:156 -#: gnu/installer/newt/partition.scm:161 +#: gnu/installer/newt/partition.scm:150 gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:160 msgid "Creation error" msgstr "Error de creación" -#: gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:154 msgid "Extended partition creation error." msgstr "Error al crear la partición extendida." -#: gnu/installer/newt/partition.scm:160 +#: gnu/installer/newt/partition.scm:159 msgid "Logical partition creation error." msgstr "Error al crear la partición lógica." -#: gnu/installer/newt/partition.scm:174 +#: gnu/installer/newt/partition.scm:173 #, scheme-format msgid "Please enter the password for the encryption of partition ~a (label: ~a)." msgstr "Por favor, introduzca la contraseña para el cifrado de la partición ~a (etiqueta: ~a)." -#: gnu/installer/newt/partition.scm:176 gnu/installer/newt/wifi.scm:92 +#: gnu/installer/newt/partition.scm:175 gnu/installer/newt/wifi.scm:92 msgid "Password required" msgstr "Contraseña necesaria" -#: gnu/installer/newt/partition.scm:181 +#: gnu/installer/newt/partition.scm:180 #, scheme-format msgid "Please confirm the password for the encryption of partition ~a (label: ~a)." msgstr "Por favor, confirme la contraseña para el cifrado de la partición ~a (etiqueta: ~a)." -#: gnu/installer/newt/partition.scm:183 gnu/installer/newt/user.scm:160 +#: gnu/installer/newt/partition.scm:182 gnu/installer/newt/user.scm:159 msgid "Password confirmation required" msgstr "Se necesita la confirmación de la contraseña" -#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 +#: gnu/installer/newt/partition.scm:194 gnu/installer/newt/user.scm:167 msgid "Password mismatch, please try again." msgstr "Las contraseñas no coinciden, por favor, intentelo de nuevo." -#: gnu/installer/newt/partition.scm:196 gnu/installer/newt/user.scm:169 +#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 msgid "Password error" msgstr "Error de contraseña" -#: gnu/installer/newt/partition.scm:282 +#: gnu/installer/newt/partition.scm:281 msgid "Please enter the partition gpt name." msgstr "Por favor, introduzca el nombre de gpt de la partición." -#: gnu/installer/newt/partition.scm:283 +#: gnu/installer/newt/partition.scm:282 msgid "Partition name" msgstr "Nombre de la partición" -#: gnu/installer/newt/partition.scm:313 +#: gnu/installer/newt/partition.scm:312 msgid "Please enter the encrypted label" msgstr "Por favor, introduzca la etiqueta de cifrado" -#: gnu/installer/newt/partition.scm:314 +#: gnu/installer/newt/partition.scm:313 msgid "Encryption label" msgstr "Etiqueta de cifrado" -#: gnu/installer/newt/partition.scm:331 +#: gnu/installer/newt/partition.scm:330 #, scheme-format msgid "Please enter the size of the partition. The maximum size is ~a." msgstr "Por favor, introduzca el tamaño de la partición. El tamaño máximo es ~a." -#: gnu/installer/newt/partition.scm:333 +#: gnu/installer/newt/partition.scm:332 msgid "Partition size" msgstr "Tamaño de la partición" -#: gnu/installer/newt/partition.scm:351 +#: gnu/installer/newt/partition.scm:350 msgid "The percentage can not be superior to 100." msgstr "El porcentaje no puede ser superior a 100." -#: gnu/installer/newt/partition.scm:352 gnu/installer/newt/partition.scm:357 -#: gnu/installer/newt/partition.scm:362 +#: gnu/installer/newt/partition.scm:351 gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:361 msgid "Size error" msgstr "Error en el tamaño" -#: gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:355 msgid "The requested size is incorrectly formatted, or too large." msgstr "El tamaño solicitado no tiene un formato correcto, o es demasiado grande." -#: gnu/installer/newt/partition.scm:361 +#: gnu/installer/newt/partition.scm:360 msgid "The request size is superior to the maximum size." msgstr "El tamaño solicitado es superior al tamaño máximo." # FUZZY -#: gnu/installer/newt/partition.scm:381 +#: gnu/installer/newt/partition.scm:380 msgid "Please enter the desired mounting point for this partition. Leave this field empty if you don't want to set a mounting point." msgstr "Por favor, introduzca el punto de montaje deseado para esta partición. Deje este campo vacío si no desea establecer un punto de montaje." # FUZZY -#: gnu/installer/newt/partition.scm:383 +#: gnu/installer/newt/partition.scm:382 msgid "Mounting point" msgstr "Punto de montaje" # TODO (MAAV): Mejorar mensaje -#: gnu/installer/newt/partition.scm:447 +#: gnu/installer/newt/partition.scm:446 #, scheme-format msgid "Creating ~a partition starting at ~a of ~a." msgstr "Creando partición de tipo ~a que comienza en ~a de ~a." # FUZZY # TODO (MAAV): Mejorar mensaje, entender mejor contexto. -#: gnu/installer/newt/partition.scm:449 +#: gnu/installer/newt/partition.scm:448 #, scheme-format msgid "You are currently editing partition ~a." msgstr "Actualmente se encuentra editando la partición ~a." # FUZZY -#: gnu/installer/newt/partition.scm:452 +#: gnu/installer/newt/partition.scm:451 msgid "Partition creation" msgstr "Creación de particiones" # FUZZY -#: gnu/installer/newt/partition.scm:453 +#: gnu/installer/newt/partition.scm:452 msgid "Partition edit" msgstr "Edición de particiones" -#: gnu/installer/newt/partition.scm:634 +#: gnu/installer/newt/partition.scm:633 #, scheme-format msgid "Are you sure you want to delete everything on disk ~a?" msgstr "¿Está segura de que desea borrar todo en el disco ~a?" -#: gnu/installer/newt/partition.scm:636 +#: gnu/installer/newt/partition.scm:635 msgid "Delete disk" msgstr "Borrar disco" -#: gnu/installer/newt/partition.scm:651 +#: gnu/installer/newt/partition.scm:650 msgid "You cannot delete a free space area." msgstr "No puede borrar un área de espacio libre." -#: gnu/installer/newt/partition.scm:652 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:651 gnu/installer/newt/partition.scm:658 msgid "Delete partition" msgstr "Borrar partición" -#: gnu/installer/newt/partition.scm:657 +#: gnu/installer/newt/partition.scm:656 #, scheme-format msgid "Are you sure you want to delete partition ~a?" msgstr "¿Está segura de que desea borrar la partición ~a?" -#: gnu/installer/newt/partition.scm:674 +#: gnu/installer/newt/partition.scm:673 msgid "" "You can change a disk's partition table by selecting it and pressing ENTER. You can also edit a partition by selecting it and pressing ENTER, or remove it by pressing DELETE. To create a new partition, select a free space area and press ENTER.\n" "\n" @@ -1458,53 +1562,53 @@ msgstr "" "\n" "Al menos una partición debe tener '/' como su punto de montaje." -#: gnu/installer/newt/partition.scm:680 +#: gnu/installer/newt/partition.scm:679 #, scheme-format msgid "This is the proposed partitioning. It is still possible to edit it or to go back to install menu by pressing the Exit button.~%~%" msgstr "Estas son las particiones propuestas. Todavía es posible editarlas o volver al menú de instalación presionando el botón Salir.~%~%" -#: gnu/installer/newt/partition.scm:690 +#: gnu/installer/newt/partition.scm:689 msgid "Guided partitioning" msgstr "Particionado guiado" -#: gnu/installer/newt/partition.scm:691 +#: gnu/installer/newt/partition.scm:690 msgid "Manual partitioning" msgstr "Particionado manual" -#: gnu/installer/newt/partition.scm:716 +#: gnu/installer/newt/partition.scm:715 msgid "No root mount point found." msgstr "No se ha encontrado un punto de montaje para la raíz." -#: gnu/installer/newt/partition.scm:717 +#: gnu/installer/newt/partition.scm:716 msgid "Missing mount point" msgstr "Falta el punto de montaje" -#: gnu/installer/newt/partition.scm:721 +#: gnu/installer/newt/partition.scm:720 #, scheme-format msgid "Cannot read the ~a partition UUID. You may need to format it." msgstr "No puede leer la UUID de la partición ~a . Es posible que deba formatearla." -#: gnu/installer/newt/partition.scm:724 +#: gnu/installer/newt/partition.scm:723 msgid "Wrong partition format" msgstr "Formato de partición equivocado" -#: gnu/installer/newt/partition.scm:755 +#: gnu/installer/newt/partition.scm:754 msgid "Guided - using the entire disk" msgstr "Guíado - uso del disco completo" -#: gnu/installer/newt/partition.scm:756 +#: gnu/installer/newt/partition.scm:755 msgid "Guided - using the entire disk with encryption" msgstr "Guíado - uso del disco completo con cifrado" -#: gnu/installer/newt/partition.scm:757 +#: gnu/installer/newt/partition.scm:756 msgid "Manual" msgstr "Manual" -#: gnu/installer/newt/partition.scm:759 +#: gnu/installer/newt/partition.scm:758 msgid "Please select a partitioning method." msgstr "Por favor, seleccione un método de particionamiento." -#: gnu/installer/newt/partition.scm:760 +#: gnu/installer/newt/partition.scm:759 msgid "Partitioning method" msgstr "Método de particionamiento" @@ -1516,41 +1620,35 @@ msgstr "Por favor, seleccione el o los entornos de escritorio que desea instalar msgid "Desktop environment" msgstr "Entorno de escritorio" -#: gnu/installer/newt/services.scm:59 +#: gnu/installer/newt/services.scm:57 msgid "You can now select networking services to run on your system." msgstr "Ahora puede seleccionar los servicios de red a ejecutar en su sistema." -#: gnu/installer/newt/services.scm:61 +#: gnu/installer/newt/services.scm:59 msgid "Network service" msgstr "Servicio de red" -#: gnu/installer/newt/services.scm:79 -#, fuzzy -#| msgid "You can now select other services to run on your system." +#: gnu/installer/newt/services.scm:75 msgid "You can now select the CUPS printing service to run on your system." -msgstr "Ahora puede seleccionar otros servicios a ejecutar en su sistema." +msgstr "Ahora puede seleccionar el servicio de impresión CUPS a ejecutar en su sistema." -#: gnu/installer/newt/services.scm:81 +#: gnu/installer/newt/services.scm:77 msgid "Printing and document services" -msgstr "" +msgstr "Imprimir y documentar servicios" -#: gnu/installer/newt/services.scm:100 -#, fuzzy -#| msgid "No service" +#: gnu/installer/newt/services.scm:94 msgid "Console services" -msgstr "Ningún servicio" +msgstr "Servicios de consola" -#: gnu/installer/newt/services.scm:101 -#, fuzzy -#| msgid "You can now select networking services to run on your system." +#: gnu/installer/newt/services.scm:95 msgid "Select miscellaneous services to run on your non-graphical system." -msgstr "Ahora puede seleccionar los servicios de red a ejecutar en su sistema." +msgstr "Seleccione servicios varios para ejecutar en su sistema no gráfico." -#: gnu/installer/newt/services.scm:115 +#: gnu/installer/newt/services.scm:109 msgid "Network management" msgstr "Gestión de red" -#: gnu/installer/newt/services.scm:118 +#: gnu/installer/newt/services.scm:112 msgid "" "Choose the method to manage network connections.\n" "\n" @@ -1586,57 +1684,57 @@ msgstr "" msgid "Please select a timezone." msgstr "Por favor, seleccione una zona horaria." -#: gnu/installer/newt/user.scm:45 +#: gnu/installer/newt/user.scm:44 msgid "Name" msgstr "Nombre" -#: gnu/installer/newt/user.scm:47 +#: gnu/installer/newt/user.scm:46 msgid "Real name" msgstr "Nombre real" -#: gnu/installer/newt/user.scm:49 +#: gnu/installer/newt/user.scm:48 msgid "Home directory" msgstr "Directorio de la cuenta de usuario" -#: gnu/installer/newt/user.scm:51 +#: gnu/installer/newt/user.scm:50 msgid "Password" msgstr "Contraseña" -#: gnu/installer/newt/user.scm:122 +#: gnu/installer/newt/user.scm:121 msgid "Empty inputs are not allowed." msgstr "No se permiten entradas vacías." -#: gnu/installer/newt/user.scm:159 +#: gnu/installer/newt/user.scm:158 msgid "Please confirm the password." msgstr "Por favor, confirme la contraseña." #. TRANSLATORS: Leave "root" untranslated: it refers to the name of the #. system administrator account. -#: gnu/installer/newt/user.scm:176 +#: gnu/installer/newt/user.scm:175 msgid "Please choose a password for the system administrator (\"root\")." msgstr "Por favor, seleccione una contraseña para cuenta de administración del sistema (\"root\")." -#: gnu/installer/newt/user.scm:178 +#: gnu/installer/newt/user.scm:177 msgid "System administrator password" msgstr "Contraseña de administración del sistema" -#: gnu/installer/newt/user.scm:191 +#: gnu/installer/newt/user.scm:190 msgid "Please add at least one user to system using the 'Add' button." msgstr "Por favor, añada al menos una cuenta de usuario al sistema mediante el botón 'Añadir'." -#: gnu/installer/newt/user.scm:194 +#: gnu/installer/newt/user.scm:193 msgid "Add" msgstr "Añadir" -#: gnu/installer/newt/user.scm:195 +#: gnu/installer/newt/user.scm:194 msgid "Delete" msgstr "Borrar" -#: gnu/installer/newt/user.scm:255 +#: gnu/installer/newt/user.scm:254 msgid "Please create at least one user." msgstr "Por favor, cree al menos una cuenta de usuario." -#: gnu/installer/newt/user.scm:256 +#: gnu/installer/newt/user.scm:255 msgid "No user" msgstr "Ninguna cuenta de usuario" @@ -1713,61 +1811,61 @@ msgstr "No se detectó wifi" msgid "Wifi" msgstr "Wifi" -#: gnu/installer/parted.scm:433 gnu/installer/parted.scm:470 +#: gnu/installer/parted.scm:455 gnu/installer/parted.scm:492 msgid "Free space" msgstr "Espacio libre" -#: gnu/installer/parted.scm:559 +#: gnu/installer/parted.scm:581 #, scheme-format msgid "Name: ~a" msgstr "Nombre: ~a" -#: gnu/installer/parted.scm:560 gnu/installer/parted.scm:606 +#: gnu/installer/parted.scm:582 gnu/installer/parted.scm:628 msgid "None" msgstr "No proporcionado" -#: gnu/installer/parted.scm:565 +#: gnu/installer/parted.scm:587 #, scheme-format msgid "Type: ~a" msgstr "Tipo: ~a" -#: gnu/installer/parted.scm:569 +#: gnu/installer/parted.scm:591 #, scheme-format msgid "File system type: ~a" msgstr "Tipo de sistema de archivos: ~a" -#: gnu/installer/parted.scm:575 +#: gnu/installer/parted.scm:597 #, scheme-format msgid "Bootable flag: ~:[off~;on~]" msgstr "Marca «boot»: ~:[desactivada~;activada~]" -#: gnu/installer/parted.scm:579 +#: gnu/installer/parted.scm:601 #, scheme-format msgid "ESP flag: ~:[off~;on~]" msgstr "Marca ESP: ~:[desactivada~;activada~]" -#: gnu/installer/parted.scm:585 +#: gnu/installer/parted.scm:607 #, scheme-format msgid "Size: ~a" msgstr "Tamaño: ~a" -#: gnu/installer/parted.scm:591 +#: gnu/installer/parted.scm:613 #, scheme-format msgid "Encryption: ~:[No~a~;Yes (label '~a')~]" msgstr "Cifrado: ~:[No~a~;Sí (etiqueta '~a')~]" -#: gnu/installer/parted.scm:597 +#: gnu/installer/parted.scm:619 #, scheme-format msgid "Format the partition? ~:[No~;Yes~]" msgstr "¿Se dará formato a la partición? ~:[No~;Sí~]" # FUZZY -#: gnu/installer/parted.scm:603 +#: gnu/installer/parted.scm:625 #, scheme-format msgid "Mount point: ~a" msgstr "Punto de montaje: ~a" -#: gnu/installer/parted.scm:1466 +#: gnu/installer/parted.scm:1477 #, scheme-format msgid "Device ~a is still in use." msgstr "El dispositivo ~a está todavía en uso." @@ -1787,11 +1885,11 @@ msgstr "Certificados NSS de Mozilla, para acceso HTTPS" #: gnu/installer/services.scm:110 msgid "Network time service (NTP), to set the clock automatically" -msgstr "" +msgstr "Servicio de hora en red (NTP), para establecer el reloj automáticamente" #: gnu/installer/services.scm:115 msgid "GPM mouse daemon, to use the mouse on the console" -msgstr "" +msgstr "Demonio de ratón GPM, para usar el ratón en la consola" #: gnu/installer/services.scm:121 msgid "NetworkManager network connection manager" @@ -1812,7 +1910,7 @@ msgstr "Sistema de impresión CUPS (no hay interfaz Web predeterminada)" #. TRANSLATORS: This is a comment within a Scheme file. Each line must #. start with ";; " (two semicolons and a space). Please keep line #. length below 60 characters. -#: gnu/installer/steps.scm:252 +#: gnu/installer/steps.scm:242 msgid "" ";; This is an operating system configuration generated\n" ";; by the graphical installer.\n" @@ -1825,73 +1923,93 @@ msgstr "" msgid "Unable to locate path: ~a." msgstr "No se pudo encontrar la ruta: ~a." -#: gnu/installer/utils.scm:83 +#: gnu/installer/utils.scm:131 #, scheme-format msgid "Press Enter to continue.~%" msgstr "Presione Intro para continuar.~%" # FUZZY -#: gnu/installer/utils.scm:108 -#, scheme-format -msgid "Command failed with exit code ~a.~%" +#: gnu/installer/utils.scm:150 +#, fuzzy, scheme-format +#| msgid "Command failed with exit code ~a.~%" +msgid "Command ~s exited with value ~a" msgstr "La orden ha fallado con código de salida ~a.~%" -#: gnu/machine/ssh.scm:117 +#: gnu/installer/utils.scm:156 +#, scheme-format +msgid "Command ~s killed by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:162 +#, scheme-format +msgid "Command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:167 +#, scheme-format +msgid "Command ~s succeeded" +msgstr "" + +#: gnu/installer/utils.scm:179 +msgid "run-command-in-installer not set" +msgstr "" + +#: gnu/machine/ssh.scm:120 #, scheme-format msgid " without a 'host-key' is deprecated~%" msgstr " sin 'host-key' está obsoleto~%" -#: gnu/machine/ssh.scm:192 +#: gnu/machine/ssh.scm:208 #, scheme-format msgid "device '~a' not found: ~a" -msgstr "dispositivo '~a' no encontrado: ~a~%" +msgstr "dispositivo '~a' no encontrado: ~a" -#: gnu/machine/ssh.scm:207 +#: gnu/machine/ssh.scm:223 #, scheme-format msgid "no file system with label '~a'" msgstr "no se ha encontrado ningún sistema de archivos con etiqueta '~a'" -#: gnu/machine/ssh.scm:226 +#: gnu/machine/ssh.scm:242 #, scheme-format msgid "no file system with UUID '~a'" msgstr "no se ha encontrado ningún sistema de archivos con UUID '~a'" -#: gnu/machine/ssh.scm:276 +#: gnu/machine/ssh.scm:295 #, scheme-format msgid "missing modules for ~a:~{ ~a~}~%" msgstr "módulos de ~a no encontrados:~{ ~a~}~%" # FUZZY -#: gnu/machine/ssh.scm:311 +#: gnu/machine/ssh.scm:333 #, scheme-format msgid "incorrect target system ('~a' was given, while the system reports that it is '~a')~%" msgstr "sistema destino incorrecto (se proporcionó '~a', mientras que el sistema informa ser '~a')~%" -#: gnu/machine/ssh.scm:437 +#: gnu/machine/ssh.scm:459 #, scheme-format msgid "no signing key '~a'. have you run 'guix archive --generate-key?'" msgstr "no existe la clave de firma '~a'. ¿Ha ejecutado 'guix archive --generate-key'?" -#: gnu/machine/ssh.scm:469 +#: gnu/machine/ssh.scm:491 #, scheme-format msgid "failed to switch systems while deploying '~a':~%~{~s ~}" msgstr "fallo al conmutar sistema mientras se despliegan '~a':~%~{~s ~}" -#: gnu/machine/ssh.scm:477 +#: gnu/machine/ssh.scm:499 #, scheme-format msgid "an error occurred while upgrading services on '~a':~%~{~s ~}~%" msgstr "ha ocurrido un error mientras se actualizan servicios sobre '~a':~%~{~s ~}~%" -#: gnu/machine/ssh.scm:485 +#: gnu/machine/ssh.scm:507 #, scheme-format msgid "failed to install bootloader on '~a':~%~{~s ~}~%" msgstr "fallo al instalar el cargador de arranque sobre '~a':~%~{~s ~}~%" -#: gnu/machine/ssh.scm:518 +#: gnu/machine/ssh.scm:540 msgid "could not roll-back machine" msgstr "no se pudo volver a la generación previa en la máquina" -#: gnu/machine/ssh.scm:559 +#: gnu/machine/ssh.scm:581 msgid "" "Provisioning for machines that are accessible over SSH\n" "and have a known host-name. This entails little more than maintaining an SSH\n" @@ -1901,7 +2019,7 @@ msgstr "" "y con nombre de máquina conocido. Esto implica poco más que mantener una\n" "conexión SSH con la máquina." -#: gnu/machine/ssh.scm:569 +#: gnu/machine/ssh.scm:591 #, scheme-format msgid "" "unsupported machine configuration '~a'\n" @@ -1910,21 +2028,21 @@ msgstr "" "configuración de máquina '~a' no implementada\n" "para el entorno de tipo '~a'" -#: gnu/packages/bootstrap.scm:178 +#: gnu/packages/bootstrap.scm:188 #, scheme-format msgid "could not find bootstrap binary '~a' for system '~a'" msgstr "no se pudo encontrar el binario del lanzamiento inicial '~a' para el sistema '~a'" # FUZZY -#: gnu/packages/bootstrap.scm:492 +#: gnu/packages/bootstrap.scm:578 msgid "Raw build system with direct store access" msgstr "Sistema de construcción básico con acceso directo al almacén" -#: gnu/packages/bootstrap.scm:500 +#: gnu/packages/bootstrap.scm:586 msgid "Pre-built Guile for bootstrapping purposes." msgstr "Guile pre-construido para el lanzamiento inicial." -#: guix/build/utils.scm:822 +#: guix/build/utils.scm:823 #, scheme-format msgid "'~a~{ ~a~}' exited with status ~a; output follows:~%~%~{ ~a~%~}" msgstr "'~a~{ ~a~}' salió con estado ~a; la salida fue la siguiente:~%~%~{ ~a~%~}" @@ -1964,7 +2082,7 @@ msgid "~A: unrecognized option~%" msgstr "~A: opción no reconocida~%" #: guix/scripts.scm:169 guix/scripts/import.scm:140 -#: guix/scripts/system.scm:1370 +#: guix/scripts/system.scm:1379 #, scheme-format msgid "Did you mean @code{~a}?~%" msgstr "¿Quería decir @code{~a}?~%" @@ -2022,14 +2140,13 @@ msgstr "no se pudo crear la raíz recolector de basura «~a»: ~a~%" #: guix/scripts/build.scm:154 guix/scripts/search.scm:42 #: guix/scripts/show.scm:41 guix/scripts/lint.scm:112 guix/scripts/edit.scm:48 #: guix/scripts/size.scm:246 guix/scripts/graph.scm:553 -#: guix/scripts/repl.scm:80 guix/scripts/style.scm:500 +#: guix/scripts/repl.scm:80 guix/scripts/style.scm:795 msgid "" "\n" " -L, --load-path=DIR prepend DIR to the package module search path" msgstr "" "\n" -" -L, --load-path=DIR añade DIR al inicio de la ruta de búsqueda de\n" -" módulos de paquetes" +" -L, --load-path=DIR antepone DIR a la ruta de búsqueda del módulo del paquete" #: guix/scripts/build.scm:156 msgid "" @@ -2037,8 +2154,7 @@ msgid "" " -K, --keep-failed keep build tree of failed builds" msgstr "" "\n" -" -K, --keep-failed mantiene el árbol de construcción de las\n" -" construcciones fallidas" +" -K, --keep-failed mantiene el árbol de construcción de las construcciones fallidas" #: guix/scripts/build.scm:158 msgid "" @@ -2046,8 +2162,7 @@ msgid "" " -k, --keep-going keep going when some of the derivations fail" msgstr "" "\n" -" -k, --keep-going sigue adelante cuando falla alguna de\n" -" las derivaciones" +" -k, --keep-going sigue adelante cuando falla alguna de las derivaciones" #: guix/scripts/build.scm:160 msgid "" @@ -2066,8 +2181,7 @@ msgid "" " --fallback fall back to building when the substituter fails" msgstr "" "\n" -" --fallback intenta la construcción cuando las sustituciones\n" -" fallen" +" --fallback vuelve a construir cuando el sustituto falla" # FUZZY #: guix/scripts/build.scm:164 @@ -2076,8 +2190,7 @@ msgid "" " --no-substitutes build instead of resorting to pre-built substitutes" msgstr "" "\n" -" --no-substitutes construye en vez de obtener sustituciones\n" -" preconstruídas" +" --no-substitutes construye en vez de obtener sustituciones preconstruídas" #: guix/scripts/build.scm:166 guix/scripts/size.scm:235 msgid "" @@ -2116,8 +2229,7 @@ msgid "" msgstr "" "\n" " --max-silent-time=SEGUNDOS\n" -" marca la construcción como fallida tras SEGUNDOS\n" -" de silencio" +" marca la construcción como fallida tras SEGUNDOS de silencio" #: guix/scripts/build.scm:176 msgid "" @@ -2125,8 +2237,7 @@ msgid "" " --timeout=SECONDS mark the build as failed after SECONDS of activity" msgstr "" "\n" -" --timeout=SEGUNDOS marca la construcción como fallida tras SEGUNDOS\n" -" de actividad" +" --timeout=SEGUNDOS marca la construcción como fallida tras SEGUNDOS de actividad" #: guix/scripts/build.scm:178 msgid "" @@ -2134,8 +2245,7 @@ msgid "" " --rounds=N build N times in a row to detect non-determinism" msgstr "" "\n" -" --rounds=N construye N veces seguidas para detectar\n" -" no-determinismo" +" --rounds=N construye N veces seguidas en una fila para detectar no-determinismo" #: guix/scripts/build.scm:180 msgid "" @@ -2189,8 +2299,7 @@ msgid "" " -e, --expression=EXPR build the package or derivation EXPR evaluates to" msgstr "" "\n" -" -e, --expression=EXPR construye el paquete o la derivación a la que\n" -" EXPR evalúa" +" -e, --expression=EXPR construye el paquete o la derivación a la que EXPR evalúa" #: guix/scripts/build.scm:344 msgid "" @@ -2218,8 +2327,7 @@ msgid "" " -S, --source build the packages' source derivations" msgstr "" "\n" -" -S, --source construye las derivaciones de fuentes de\n" -" los paquetes" +" -S, --source construye las derivaciones de fuentes de los paquetes" #: guix/scripts/build.scm:352 msgid "" @@ -2228,9 +2336,8 @@ msgid "" " of \"package\", \"all\" (default), or \"transitive\"" msgstr "" "\n" -" --sources[=TIPO] construye las derivaciones de fuentes; TIPO puede\n" -" ser de manera opcional \"package\",\n" -" \"all\" (predeterminado) o \"transitive\"" +" --sources[=TIPO] construye las derivaciones de fuentes; TIPO puede ser de manera opcional\n" +" \"package\", \"all\" (predeterminado) o \"transitive\"" #: guix/scripts/build.scm:355 guix/scripts/pull.scm:119 #: guix/scripts/pack.scm:1327 guix/scripts/archive.scm:95 @@ -2240,18 +2347,16 @@ msgid "" " -s, --system=SYSTEM attempt to build for SYSTEM--e.g., \"i686-linux\"" msgstr "" "\n" -" -s, --system=SISTEMA intenta la construcción para el SISTEMA--por\n" -" ejemplo, \"i686-linux\"" +" -s, --system=SISTEMA intenta la construcción para el SISTEMA--por ejemplo, \"i686-linux\"" -#: guix/scripts/build.scm:357 guix/scripts/system.scm:1023 +#: guix/scripts/build.scm:357 guix/scripts/system.scm:1026 #: guix/scripts/pack.scm:1329 guix/scripts/archive.scm:97 msgid "" "\n" " --target=TRIPLET cross-build for TRIPLET--e.g., \"armel-linux-gnu\"" msgstr "" "\n" -" --target=TRIPLETA construcción cruzada para la TRIPLETA--por\n" -" ejemplo, \"armel-linux-gnu\"" +" --target=TRIPLETA construcción cruzada para la TRIPLETA--por ejemplo, \"armel-linux-gnu\"" #: guix/scripts/build.scm:359 msgid "" @@ -2259,8 +2364,7 @@ msgid "" " -d, --derivations return the derivation paths of the given packages" msgstr "" "\n" -" -d, --derivations devuelve las rutas de las derivaciones de los\n" -" paquetes proporcionados" +" -d, --derivations devuelve las rutas de las derivaciones de los paquetes proporcionados" #: guix/scripts/build.scm:361 msgid "" @@ -2268,8 +2372,7 @@ msgid "" " --check rebuild items to check for non-determinism issues" msgstr "" "\n" -" --check reconstruye elementos para comprobar problemas\n" -" de no-determinismo" +" --check reconstruye elementos para comprobar problemas de no-determinismo" #: guix/scripts/build.scm:363 msgid "" @@ -2292,13 +2395,13 @@ msgstr "" # FUZZY # MAAV: No es literal, pero me parece adecuado. -#: guix/scripts/build.scm:368 guix/scripts/package.scm:486 +#: guix/scripts/build.scm:368 guix/scripts/package.scm:488 #: guix/scripts/install.scm:37 guix/scripts/remove.scm:36 #: guix/scripts/upgrade.scm:39 guix/scripts/pull.scm:117 -#: guix/scripts/system.scm:1025 guix/scripts/copy.scm:122 -#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:60 +#: guix/scripts/system.scm:1028 guix/scripts/copy.scm:122 +#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:66 #: guix/scripts/archive.scm:99 guix/scripts/environment.scm:123 -#: guix/scripts/home.scm:94 +#: guix/scripts/home.scm:98 msgid "" "\n" " -v, --verbosity=LEVEL use the given verbosity LEVEL" @@ -2321,34 +2424,33 @@ msgid "" " --log-file return the log file names for the given derivations" msgstr "" "\n" -" --log-file devuelve los nombres de archivo de los registros\n" -" de las derivaciones proporcionadas" +" --log-file devuelve los nombres de los archivo de registros de las derivaciones proporcionadas" #: guix/scripts/build.scm:379 guix/scripts/download.scm:104 -#: guix/scripts/package.scm:504 guix/scripts/install.scm:44 +#: guix/scripts/package.scm:506 guix/scripts/install.scm:44 #: guix/scripts/remove.scm:41 guix/scripts/upgrade.scm:48 #: guix/scripts/search.scm:37 guix/scripts/show.scm:36 guix/scripts/gc.scm:88 #: guix/scripts/git.scm:34 guix/scripts/git/authenticate.scm:110 #: guix/scripts/hash.scm:98 guix/scripts/import.scm:98 #: guix/scripts/import/minetest.scm:46 guix/scripts/import/cran.scm:49 #: guix/scripts/pull.scm:125 guix/scripts/substitute.scm:250 -#: guix/scripts/system.scm:1032 guix/scripts/lint.scm:115 +#: guix/scripts/system.scm:1035 guix/scripts/lint.scm:115 #: guix/scripts/publish.scm:119 guix/scripts/edit.scm:51 #: guix/scripts/size.scm:249 guix/scripts/graph.scm:558 #: guix/scripts/challenge.scm:430 guix/scripts/copy.scm:127 #: guix/scripts/pack.scm:1357 guix/scripts/weather.scm:336 #: guix/scripts/describe.scm:96 guix/scripts/processes.scm:301 -#: guix/scripts/deploy.scm:55 guix/scripts/container.scm:35 +#: guix/scripts/deploy.scm:58 guix/scripts/container.scm:35 #: guix/scripts/container/exec.scm:43 guix/scripts/archive.scm:106 -#: guix/scripts/environment.scm:149 guix/scripts/home.scm:97 +#: guix/scripts/environment.scm:149 guix/scripts/home.scm:101 #: guix/scripts/time-machine.scm:67 guix/scripts/import/cpan.scm:44 #: guix/scripts/import/crate.scm:50 guix/scripts/import/egg.scm:45 #: guix/scripts/import/gem.scm:46 guix/scripts/import/gnu.scm:50 #: guix/scripts/import/go.scm:50 guix/scripts/import/json.scm:52 #: guix/scripts/import/opam.scm:45 guix/scripts/import/pypi.scm:46 #: guix/scripts/import/texlive.scm:45 guix/scripts/refresh.scm:187 -#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:67 -#: guix/scripts/style.scm:509 +#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:69 +#: guix/scripts/style.scm:804 msgid "" "\n" " -h, --help display this help and exit" @@ -2357,29 +2459,29 @@ msgstr "" " -h, --help muestra este mensaje de ayuda y termina" #: guix/scripts/build.scm:381 guix/scripts/download.scm:106 -#: guix/scripts/package.scm:506 guix/scripts/install.scm:46 +#: guix/scripts/package.scm:508 guix/scripts/install.scm:46 #: guix/scripts/remove.scm:43 guix/scripts/upgrade.scm:50 #: guix/scripts/search.scm:39 guix/scripts/show.scm:38 guix/scripts/gc.scm:90 #: guix/scripts/git.scm:36 guix/scripts/git/authenticate.scm:112 #: guix/scripts/hash.scm:100 guix/scripts/import.scm:100 #: guix/scripts/import/minetest.scm:50 guix/scripts/import/cran.scm:55 #: guix/scripts/pull.scm:127 guix/scripts/substitute.scm:252 -#: guix/scripts/system.scm:1034 guix/scripts/lint.scm:119 +#: guix/scripts/system.scm:1037 guix/scripts/lint.scm:119 #: guix/scripts/publish.scm:121 guix/scripts/edit.scm:53 #: guix/scripts/size.scm:251 guix/scripts/graph.scm:560 #: guix/scripts/challenge.scm:432 guix/scripts/copy.scm:129 #: guix/scripts/pack.scm:1359 guix/scripts/weather.scm:338 #: guix/scripts/describe.scm:98 guix/scripts/processes.scm:303 -#: guix/scripts/deploy.scm:57 guix/scripts/container.scm:37 +#: guix/scripts/deploy.scm:60 guix/scripts/container.scm:37 #: guix/scripts/container/exec.scm:45 guix/scripts/archive.scm:108 -#: guix/scripts/environment.scm:151 guix/scripts/home.scm:99 +#: guix/scripts/environment.scm:151 guix/scripts/home.scm:103 #: guix/scripts/time-machine.scm:69 guix/scripts/import/cpan.scm:46 #: guix/scripts/import/crate.scm:52 guix/scripts/import/egg.scm:49 #: guix/scripts/import/gem.scm:48 guix/scripts/import/gnu.scm:52 #: guix/scripts/import/json.scm:54 guix/scripts/import/opam.scm:52 #: guix/scripts/import/pypi.scm:50 guix/scripts/import/texlive.scm:47 #: guix/scripts/refresh.scm:189 guix/scripts/repl.scm:85 -#: guix/scripts/shell.scm:69 guix/scripts/style.scm:511 +#: guix/scripts/shell.scm:71 guix/scripts/style.scm:806 msgid "" "\n" " -V, --version display version information and exit" @@ -2641,167 +2743,167 @@ msgstr "la etiqueta '~a' no coincide con el nombre del paquete '~a'" msgid "\"bash-minimal\" should be in 'inputs' when '~a' is used" msgstr "\"bash-minimal\" deberia estar en 'inputs' cuando se usa '~a'" -#: guix/lint.scm:616 +#: guix/lint.scm:614 msgid "no period allowed at the end of the synopsis" msgstr "no se permite un punto al final de la sinopsis" -#: guix/lint.scm:630 +#: guix/lint.scm:628 msgid "no article allowed at the beginning of the synopsis" msgstr "no se permite un artículo al inicio de la sinopsis" -#: guix/lint.scm:639 +#: guix/lint.scm:637 msgid "synopsis should be less than 80 characters long" msgstr "la sinopsis debe tener menos de 80 caracteres" -#: guix/lint.scm:648 +#: guix/lint.scm:646 msgid "synopsis should start with an upper-case letter or digit" msgstr "la sinopsis debe empezar con una letra mayúscula o un dígito" -#: guix/lint.scm:656 +#: guix/lint.scm:654 msgid "synopsis should not start with the package name" msgstr "la sinopsis no debe empezar con el nombre del paquete" -#: guix/lint.scm:670 +#: guix/lint.scm:668 msgid "Texinfo markup in synopsis is invalid" msgstr "el marcado Texinfo de la sinopsis no es válido" -#: guix/lint.scm:678 +#: guix/lint.scm:676 msgid "synopsis contains trailing whitespace" msgstr "la sinopsis contiene espacios blancos al final" -#: guix/lint.scm:695 +#: guix/lint.scm:693 msgid "synopsis should not be empty" msgstr "la sinopsis no debe estar vacía" -#: guix/lint.scm:705 +#: guix/lint.scm:703 #, scheme-format msgid "invalid synopsis: ~s" msgstr "sinopsis no válida: ~s" -#: guix/lint.scm:805 +#: guix/lint.scm:803 #, scheme-format msgid "~a: HTTP GET error for ~a: ~a (~s)~%" msgstr "~a: error HTTP GET para ~a: ~a (~s)~%" -#: guix/lint.scm:815 +#: guix/lint.scm:813 #, scheme-format msgid "~a: host lookup failure: ~a~%" msgstr "~a: fallo en la búsqueda de máquinas: ~a~%" # FUZZY -#: guix/lint.scm:820 +#: guix/lint.scm:818 #, scheme-format msgid "~a: TLS certificate error: ~a" msgstr "~a: error de certificado TLS: ~a" -#: guix/lint.scm:825 +#: guix/lint.scm:823 #, scheme-format msgid "~a: TLS error in '~a': ~a~%" msgstr "~a: error TLS en '~a': ~a~%" -#: guix/lint.scm:836 guix/ui.scm:820 guix/scripts/offload.scm:194 +#: guix/lint.scm:834 guix/ui.scm:820 guix/scripts/offload.scm:194 #, scheme-format msgid "~a: ~a~%" msgstr "~a: ~a~%" # FUZZY -#: guix/lint.scm:868 +#: guix/lint.scm:866 #, scheme-format msgid "URI ~a returned suspiciously small file (~a bytes)" msgstr "la URI ~a devolvió un archivo sospechosamente pequeño (~a bytes)" -#: guix/lint.scm:877 +#: guix/lint.scm:875 #, scheme-format msgid "permanent redirect from ~a to ~a" msgstr "redirección permanente de ~a a ~a" -#: guix/lint.scm:883 +#: guix/lint.scm:881 #, scheme-format msgid "invalid permanent redirect from ~a" msgstr "redirección permanente no válida de ~a" # FUZZY -#: guix/lint.scm:889 guix/lint.scm:899 +#: guix/lint.scm:887 guix/lint.scm:897 #, scheme-format msgid "URI ~a not reachable: ~a (~s)" msgstr "URI ~a no alcanzable: ~a (~s)" -#: guix/lint.scm:905 +#: guix/lint.scm:903 #, scheme-format msgid "URI ~a domain not found: ~a" msgstr "dominio de URI ~a no encontrado: ~a" -#: guix/lint.scm:911 +#: guix/lint.scm:909 #, scheme-format msgid "URI ~a unreachable: ~a" msgstr "URI ~a no alcanzable: ~a" -#: guix/lint.scm:919 +#: guix/lint.scm:917 #, scheme-format msgid "TLS certificate error: ~a" msgstr "error en el certificado TLS: ~a" -#: guix/lint.scm:946 +#: guix/lint.scm:944 msgid "invalid value for home page" msgstr "valor no válido en página Web del paquete" -#: guix/lint.scm:951 +#: guix/lint.scm:949 #, scheme-format msgid "invalid home page URL: ~s" msgstr "URL de la página Web del paquete no válida: ~s" -#: guix/lint.scm:988 +#: guix/lint.scm:986 msgid "file names of patches should start with the package name" msgstr "los nombres de archivos de los parches deben empezar con el nombre del paquete" -#: guix/lint.scm:1008 +#: guix/lint.scm:1006 #, scheme-format msgid "~a: file name is too long, which may break 'make dist'" msgstr "~a: el nombre de archivo es demasiado largo, que puede romperse con 'make dist'" -#: guix/lint.scm:1029 +#: guix/lint.scm:1027 #, scheme-format msgid "~a: empty patch" msgstr "~a: parche vacío" -#: guix/lint.scm:1038 +#: guix/lint.scm:1036 #, scheme-format msgid "~a: patch lacks comment and upstream status" msgstr "~a: el parche carece de comentario y estado anterior" -#: guix/lint.scm:1099 +#: guix/lint.scm:1097 #, scheme-format msgid "proposed synopsis: ~s~%" msgstr "sinopsis propuesta: ~s~%" -#: guix/lint.scm:1113 +#: guix/lint.scm:1111 #, scheme-format msgid "proposed description:~% \"~a\"~%" msgstr "descripción propuesta:~% \"~a\"~%" -#: guix/lint.scm:1164 +#: guix/lint.scm:1162 msgid "all the source URIs are unreachable:" msgstr "ninguna URI de fuentes es alcanzable:" -#: guix/lint.scm:1193 +#: guix/lint.scm:1191 msgid "the source file name should contain the package name" msgstr "el nombre de archivo de las fuentes debe contener el nombre del paquete" -#: guix/lint.scm:1205 +#: guix/lint.scm:1203 msgid "the source URI should not be an autogenerated tarball" msgstr "la URI de las fuentes no debe ser un archivador tar autogenerado" -#: guix/lint.scm:1229 +#: guix/lint.scm:1227 #, scheme-format msgid "URL should be 'mirror://~a/~a'" msgstr "la URL debe ser 'mirror://~a/~a'" -#: guix/lint.scm:1269 +#: guix/lint.scm:1267 #, scheme-format msgid "while accessing '~a'" msgstr "mientras se accede '~a'" -#: guix/lint.scm:1276 +#: guix/lint.scm:1274 #, scheme-format msgid "URL should be '~a'" msgstr "la URL debe ser '~a'" @@ -2809,238 +2911,238 @@ msgstr "la URL debe ser '~a'" #. TRANSLATORS: check and #:tests? are a #. Scheme symbol and keyword respectively #. and should not be translated. -#: guix/lint.scm:1304 +#: guix/lint.scm:1302 msgid "the 'check' phase should respect #:tests?" msgstr "la fase 'check' debería respetar #:tests?" -#: guix/lint.scm:1322 guix/lint.scm:1333 guix/lint.scm:1341 +#: guix/lint.scm:1320 guix/lint.scm:1331 guix/lint.scm:1339 #, scheme-format msgid "failed to create ~a derivation: ~a" msgstr "no se pudo crear derivación para ~a: ~a" -#: guix/lint.scm:1327 +#: guix/lint.scm:1325 #, scheme-format msgid "failed to create ~a derivation: ~s" msgstr "no se pudo crear la derivación para ~a: ~s" -#: guix/lint.scm:1379 +#: guix/lint.scm:1377 #, scheme-format msgid "propagated inputs ~a and ~a collide" msgstr "las entradas propagadas ~a y ~a colisionan" -#: guix/lint.scm:1403 +#: guix/lint.scm:1401 msgid "invalid license field" msgstr "campo license no válido" -#: guix/lint.scm:1410 +#: guix/lint.scm:1408 msgid "while retrieving CVE vulnerabilities" msgstr "durante la obtención de vulnerabilidades CVE" -#: guix/lint.scm:1453 +#: guix/lint.scm:1451 #, scheme-format msgid "probably vulnerable to ~a" msgstr "probablemente vulnerable a ~a" # FUZZY -#: guix/lint.scm:1461 +#: guix/lint.scm:1459 #, scheme-format msgid "no updater for ~a" msgstr "sin actualizador para ~a" # FUZZY -#: guix/lint.scm:1466 guix/lint.scm:1641 +#: guix/lint.scm:1464 guix/lint.scm:1639 #, scheme-format msgid "while retrieving upstream info for '~a'" msgstr "durante la obtención de información oficial para '~a'" -#: guix/lint.scm:1475 +#: guix/lint.scm:1473 #, scheme-format msgid "can be upgraded to ~a" msgstr "puede actualizarse a ~a" # FUZZY -#: guix/lint.scm:1481 +#: guix/lint.scm:1479 #, scheme-format msgid "updater '~a' failed to find upstream releases" msgstr "el actualizador '~a' falló para encontrar versiones anteriores" -#: guix/lint.scm:1508 +#: guix/lint.scm:1506 #, scheme-format msgid "failed to access Disarchive database at ~a" msgstr "falló el acceso a la base de datos Disarchive en ~a" # FUZZY -#: guix/lint.scm:1535 +#: guix/lint.scm:1533 msgid "Software Heritage rate limit reached; try again later" msgstr "límite de la tasa de Software Heritage alcanzado; pruebe de nuevo más tarde" -#: guix/lint.scm:1539 +#: guix/lint.scm:1537 #, scheme-format msgid "'~a' returned ~a" -msgstr "'~a' devolvió ~a~%" +msgstr "'~a' devolvió ~a" #. TRANSLATORS: "Software Heritage" is a proper noun #. that must remain untranslated. See #. . -#: guix/lint.scm:1578 +#: guix/lint.scm:1576 msgid "scheduled Software Heritage archival" msgstr "archivo planificado en Software Heritage" # FUZZY -#: guix/lint.scm:1584 +#: guix/lint.scm:1582 msgid "archival rate limit exceeded; try again later" msgstr "límite de la tasa de archivo superado; pruebe de nuevo más tarde" -#: guix/lint.scm:1605 +#: guix/lint.scm:1603 msgid "source not archived on Software Heritage and missing from the Disarchive database" msgstr "fuente no archivada en Software Heritage y desaparecida de la base de datos Disarchive" -#: guix/lint.scm:1615 +#: guix/lint.scm:1613 #, scheme-format msgid "Disarchive entry refers to non-existent SWH directory '~a'" msgstr "La entrada Disarchive se refiere a un directorio SWH que no existe '~a'" -#: guix/lint.scm:1624 +#: guix/lint.scm:1622 msgid "unsupported source type" msgstr "tipo de fuente no soportado" -#: guix/lint.scm:1633 +#: guix/lint.scm:1631 msgid "while connecting to Software Heritage" msgstr "durante la conexión a Software Heritage" -#: guix/lint.scm:1650 +#: guix/lint.scm:1648 #, scheme-format msgid "ahead of Stackage LTS version ~a" msgstr "por delante de Stackage LTS versión ~a" -#: guix/lint.scm:1667 +#: guix/lint.scm:1665 #, scheme-format msgid "tabulation on line ~a, column ~a" msgstr "tabulador en línea ~a, columna ~a" -#: guix/lint.scm:1679 +#: guix/lint.scm:1677 #, scheme-format msgid "trailing white space on line ~a" msgstr "espacio en blanco al final de la línea ~a" -#: guix/lint.scm:1693 +#: guix/lint.scm:1691 #, scheme-format msgid "line ~a is way too long (~a characters)" msgstr "la línea ~a es demasiado larga (~a caracteres)" # FUZZY -#: guix/lint.scm:1707 +#: guix/lint.scm:1705 msgid "parentheses feel lonely, move to the previous or next line" msgstr "el paréntesis se siente solo, muevalo a la línea anterior o posterior" -#: guix/lint.scm:1784 +#: guix/lint.scm:1782 msgid "source file not found" msgstr "archivo de fuentes no encontrado" -#: guix/lint.scm:1796 +#: guix/lint.scm:1794 msgid "Validate package names" msgstr "Validar sinopsis de paquete" -#: guix/lint.scm:1800 +#: guix/lint.scm:1798 msgid "Check if tests are explicitly enabled" msgstr "Comprobar si las pruebas están explícitamente habilitadas" -#: guix/lint.scm:1804 +#: guix/lint.scm:1802 msgid "Validate package descriptions" msgstr "Valida descripciones de paquete" -#: guix/lint.scm:1808 +#: guix/lint.scm:1806 msgid "Identify inputs that should be native inputs" msgstr "Identifica entradas que deberían ser entradas nativas" -#: guix/lint.scm:1812 +#: guix/lint.scm:1810 msgid "Identify inputs that shouldn't be inputs at all" msgstr "Identifica entradas que no deberían ser entradas en absoluto" -#: guix/lint.scm:1816 +#: guix/lint.scm:1814 msgid "Identify input labels that do not match package names" msgstr "Identifica etiquetas de entradas que no coinciden con nombres de paquete" -#: guix/lint.scm:1820 +#: guix/lint.scm:1818 msgid "Make sure 'wrap-program' can finds its interpreter." msgstr "Asegurarse que 'wrap-program' puede encontrar su intérprete." #. TRANSLATORS: is the name of a data type and must not be #. translated. -#: guix/lint.scm:1826 +#: guix/lint.scm:1824 msgid "Make sure the 'license' field is a or a list thereof" msgstr "Asegura que el campo 'license' es un objeto o una lista de ellos" -#: guix/lint.scm:1831 +#: guix/lint.scm:1829 msgid "Make sure tests are only run when requested" msgstr "Asegurarse de que las pruebas sólo se ejecutarán cuando se pida" -#: guix/lint.scm:1835 +#: guix/lint.scm:1833 msgid "Suggest 'mirror://' URLs" msgstr "Sugiere URL 'mirror://'" -#: guix/lint.scm:1839 +#: guix/lint.scm:1837 msgid "Validate file names of sources" msgstr "Valida nombres de archivo de fuentes" -#: guix/lint.scm:1843 +#: guix/lint.scm:1841 msgid "Check for autogenerated tarballs" msgstr "Comprueba archivadores tar autogenerados" -#: guix/lint.scm:1847 +#: guix/lint.scm:1845 msgid "Report failure to compile a package to a derivation" msgstr "Informa fallos al compilar un paquete en una derivación" -#: guix/lint.scm:1852 +#: guix/lint.scm:1850 msgid "Report collisions that would occur due to propagated inputs" msgstr "Informa de colisiones que puedan ocurrir debido a entradas propagadas" -#: guix/lint.scm:1857 +#: guix/lint.scm:1855 msgid "Validate file names and availability of patches" msgstr "Valida nombres de archivo y disponibilidad de parches" -#: guix/lint.scm:1861 +#: guix/lint.scm:1859 msgid "Validate patch headers" msgstr "Validar cabeceras de parche" -#: guix/lint.scm:1865 +#: guix/lint.scm:1863 msgid "Look for formatting issues in the source" msgstr "Busca problemas en el formato de las fuentes" -#: guix/lint.scm:1872 +#: guix/lint.scm:1870 msgid "Validate package synopses" msgstr "Valida sinopsis de paquete" -#: guix/lint.scm:1876 +#: guix/lint.scm:1874 msgid "Validate synopsis & description of GNU packages" msgstr "Valida sinopsis y descripciones de paquetes GNU" -#: guix/lint.scm:1880 +#: guix/lint.scm:1878 msgid "Validate home-page URLs" msgstr "Valida URL de las páginas Web del paquete" -#: guix/lint.scm:1884 +#: guix/lint.scm:1882 msgid "Validate source URLs" msgstr "Valida las URL de las fuentes" -#: guix/lint.scm:1888 +#: guix/lint.scm:1886 msgid "Suggest GitHub URLs" msgstr "Sugiere URL de GitHub" -#: guix/lint.scm:1892 +#: guix/lint.scm:1890 msgid "Check the Common Vulnerabilities and Exposures (CVE) database" msgstr "Comprueba la base de datos de vulnerabilidades y exposiciones comunes (CVE)" # FUZZY -#: guix/lint.scm:1897 +#: guix/lint.scm:1895 msgid "Check the package for new upstream releases" msgstr "Comprueba el paquete en busca de nuevas publicaciones oficiales" -#: guix/lint.scm:1901 +#: guix/lint.scm:1899 msgid "Ensure source code archival on Software Heritage" msgstr "Asegura el archivado del código fuente en Software Heritage" -#: guix/lint.scm:1905 +#: guix/lint.scm:1903 msgid "Ensure Haskell packages use Stackage LTS versions" msgstr "Garantizar que los paquetes Haskell usan versiones Stackage LTS" @@ -3107,7 +3209,7 @@ msgid "~a: unknown hash algorithm~%" msgstr "~a: algoritmo de hash desconocido~%" # FUZZY -#: guix/scripts/download.scm:171 guix/scripts/package.scm:1087 +#: guix/scripts/download.scm:171 guix/scripts/package.scm:1090 #: guix/scripts/pull.scm:758 guix/scripts/publish.scm:1260 #: guix/scripts/discover.scm:136 guix/scripts/time-machine.scm:123 #, scheme-format @@ -3141,17 +3243,17 @@ msgstr "no se borra la generación ~a, que es la actual~%" msgid "no matching generation~%" msgstr "ninguna generación corresponde con el patrón~%" -#: guix/scripts/package.scm:159 +#: guix/scripts/package.scm:161 #, scheme-format msgid "nothing to be done~%" msgstr "nada que hacer~%" -#: guix/scripts/package.scm:260 +#: guix/scripts/package.scm:262 #, scheme-format msgid "package '~a' no longer exists~%" msgstr "paquete '~a' ya no existe~%" -#: guix/scripts/package.scm:315 +#: guix/scripts/package.scm:317 #, scheme-format msgid "" "Consider setting the necessary environment\n" @@ -3174,7 +3276,7 @@ msgstr "" "\n" "Alternativamente, véase @command{guix package --search-paths -p ~s}." -#: guix/scripts/package.scm:361 +#: guix/scripts/package.scm:363 msgid "" ";; This \"manifest\" file can be passed to 'guix package -m' to reproduce\n" ";; the content of your profile. This is \"symbolic\": it only specifies\n" @@ -3188,12 +3290,12 @@ msgstr "" ";; capturar los canales que se están usando, devueltos por \"guix describe\".\n" ";; Vea la sección \"Replicando Guix\" en el manual.\n" -#: guix/scripts/package.scm:393 +#: guix/scripts/package.scm:395 #, scheme-format msgid "no provenance information for this profile~%" msgstr "no hay información de procedencia para este perfil~%" -#: guix/scripts/package.scm:395 +#: guix/scripts/package.scm:397 msgid "" ";; This channel file can be passed to 'guix pull -C' or to\n" ";; 'guix time-machine -C' to obtain the Guix revision that was\n" @@ -3203,12 +3305,12 @@ msgstr "" ";; 'guix time-machine -C' para obtener la revisión Guix que se\n" ";; uso para propagar este perfil.\n" -#: guix/scripts/package.scm:407 +#: guix/scripts/package.scm:409 #, scheme-format msgid ";; Note: these other commits were also used to install some of the packages in this profile:~%" msgstr ";; Aviso: estas otras confirmaciones también se usaron para instalar algunos de los paquetes en este perfil:~%" -#: guix/scripts/package.scm:437 +#: guix/scripts/package.scm:439 msgid "" "Usage: guix package [OPTION]...\n" "Install, remove, or upgrade packages in a single transaction.\n" @@ -3216,7 +3318,7 @@ msgstr "" "Uso: guix package [OPCIÓN]...\n" "Instala, elimina o actualiza paquetes en una única transacción.\n" -#: guix/scripts/package.scm:439 +#: guix/scripts/package.scm:441 msgid "" "\n" " -i, --install PACKAGE ...\n" @@ -3226,7 +3328,7 @@ msgstr "" " -i, --install PAQUETE ...\n" " instala PAQUETE" -#: guix/scripts/package.scm:442 +#: guix/scripts/package.scm:444 msgid "" "\n" " -e, --install-from-expression=EXP\n" @@ -3236,7 +3338,7 @@ msgstr "" " -e, --install-from-expression=EXP\n" " instala el paquete al que EXP evalúa" -#: guix/scripts/package.scm:445 +#: guix/scripts/package.scm:447 msgid "" "\n" " -f, --install-from-file=FILE\n" @@ -3248,7 +3350,7 @@ msgstr "" " instala el paquete al que el código en\n" " ARCHIVO evalúa" -#: guix/scripts/package.scm:449 +#: guix/scripts/package.scm:451 msgid "" "\n" " -r, --remove PACKAGE ...\n" @@ -3258,16 +3360,15 @@ msgstr "" " -r, --remove PAQUETE ...\n" " elimina PAQUETE" -#: guix/scripts/package.scm:452 +#: guix/scripts/package.scm:454 msgid "" "\n" " -u, --upgrade[=REGEXP] upgrade all the installed packages matching REGEXP" msgstr "" "\n" -" -u, --upgrade[=REGEXP] actualiza todos los paquetes instalados cuyo nombre\n" -" acepta REGEXP" +" -u, --upgrade[=REGEXP] actualiza todos los paquetes instalados cuyo nombre coincida con REGEXP" -#: guix/scripts/package.scm:454 +#: guix/scripts/package.scm:456 msgid "" "\n" " -m, --manifest=FILE create a new profile generation with the manifest\n" @@ -3278,7 +3379,7 @@ msgstr "" " manifiesto del ARCHIVO" # FUZZY -#: guix/scripts/package.scm:457 guix/scripts/upgrade.scm:41 +#: guix/scripts/package.scm:459 guix/scripts/upgrade.scm:41 msgid "" "\n" " --do-not-upgrade[=REGEXP] do not upgrade any packages matching REGEXP" @@ -3286,7 +3387,7 @@ msgstr "" "\n" " --do-not-upgrade[=REGEXP] no actualiza ningún paquete que REGEXP acepte" -#: guix/scripts/package.scm:459 guix/scripts/pull.scm:107 +#: guix/scripts/package.scm:461 guix/scripts/pull.scm:107 msgid "" "\n" " --roll-back roll back to the previous generation" @@ -3294,18 +3395,17 @@ msgstr "" "\n" " --roll-back vuelve a la generación previa" -#: guix/scripts/package.scm:461 +#: guix/scripts/package.scm:463 msgid "" "\n" " --search-paths[=KIND]\n" " display needed environment variable definitions" msgstr "" "\n" -" --search-paths[=TIPO]\n" -" muestra las definiciones de variables de entorno\n" -" necesarias" +" --search-paths[=CLASE]\n" +" muestra las definiciones de variables de entorno necesarias" -#: guix/scripts/package.scm:464 guix/scripts/pull.scm:104 +#: guix/scripts/package.scm:466 guix/scripts/pull.scm:104 msgid "" "\n" " -l, --list-generations[=PATTERN]\n" @@ -3315,7 +3415,7 @@ msgstr "" " -l, --list-generations[=PATRÓN]\n" " enumera las generaciones que correspondan con PATRÓN" -#: guix/scripts/package.scm:467 guix/scripts/pull.scm:109 +#: guix/scripts/package.scm:469 guix/scripts/pull.scm:109 msgid "" "\n" " -d, --delete-generations[=PATTERN]\n" @@ -3325,7 +3425,7 @@ msgstr "" " -d, --delete-generations[=PATRÓN]\n" " borra las generaciones que correspondan con PATRÓN" -#: guix/scripts/package.scm:470 guix/scripts/pull.scm:112 +#: guix/scripts/package.scm:472 guix/scripts/pull.scm:112 msgid "" "\n" " -S, --switch-generation=PATTERN\n" @@ -3335,7 +3435,7 @@ msgstr "" " -S, --switch-generation=PATRÓN\n" " cambia a una generación que corresponda con PATRÓN" -#: guix/scripts/package.scm:473 +#: guix/scripts/package.scm:475 msgid "" "\n" " --export-manifest print a manifest for the chosen profile" @@ -3343,7 +3443,7 @@ msgstr "" "\n" " --export-manifest imprime un manifiesto para el perfil elegido" -#: guix/scripts/package.scm:475 +#: guix/scripts/package.scm:477 msgid "" "\n" " --export-channels print channels for the chosen profile" @@ -3351,17 +3451,16 @@ msgstr "" "\n" " --export-channels imprime canales para el perfil elegido" -#: guix/scripts/package.scm:477 guix/scripts/install.scm:34 +#: guix/scripts/package.scm:479 guix/scripts/install.scm:34 #: guix/scripts/remove.scm:33 guix/scripts/upgrade.scm:37 msgid "" "\n" " -p, --profile=PROFILE use PROFILE instead of the user's default profile" msgstr "" "\n" -" -p, --profile=PERFIL usa PERFIL en vez del perfil predeterminado de\n" -" la cuenta de usuario" +" -p, --profile=PERFIL usa PERFIL en vez del perfil predeterminado del usuario" -#: guix/scripts/package.scm:479 +#: guix/scripts/package.scm:481 msgid "" "\n" " --list-profiles list the user's profiles" @@ -3369,7 +3468,7 @@ msgstr "" "\n" " --list-profiles enumera los perfiles del usuario" -#: guix/scripts/package.scm:482 +#: guix/scripts/package.scm:484 msgid "" "\n" " --allow-collisions do not treat collisions in the profile as an error" @@ -3378,17 +3477,16 @@ msgstr "" " --allow-collisions no toma las colisiones en el perfil como errores" # FUZZY -#: guix/scripts/package.scm:484 +#: guix/scripts/package.scm:486 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" msgstr "" "\n" -" --bootstrap usa Guile del lanzamiento inicial para construir\n" -" el perfil" +" --bootstrap usa la oreja Guile para construir el perfil" # FUZZY -#: guix/scripts/package.scm:489 +#: guix/scripts/package.scm:491 msgid "" "\n" " -s, --search=REGEXP search in synopsis and description using REGEXP" @@ -3396,7 +3494,7 @@ msgstr "" "\n" " -s, --search=REGEXP busca en las sinopsis y descripciones usando REGEXP" -#: guix/scripts/package.scm:491 +#: guix/scripts/package.scm:493 msgid "" "\n" " -I, --list-installed[=REGEXP]\n" @@ -3406,7 +3504,7 @@ msgstr "" " -I, --list-installed[=REGEXP]\n" " enumera los paquetes instalados que REGEXP acepte" -#: guix/scripts/package.scm:494 +#: guix/scripts/package.scm:496 msgid "" "\n" " -A, --list-available[=REGEXP]\n" @@ -3416,7 +3514,7 @@ msgstr "" " -A, --list-available[=REGEXP]\n" " enumera los paquetes disponibles que REGEXP acepte" -#: guix/scripts/package.scm:497 +#: guix/scripts/package.scm:499 msgid "" "\n" " --show=PACKAGE show details about PACKAGE" @@ -3424,40 +3522,40 @@ msgstr "" "\n" " --show=PAQUETE muestra los detalles de PAQUETE" -#: guix/scripts/package.scm:552 +#: guix/scripts/package.scm:554 #, scheme-format msgid "upgrade regexp '~a' looks like a command-line option~%" msgstr "la expresión regular de actualización '~a' parece una opción de línea de ordenes~%" # FUZZY -#: guix/scripts/package.scm:555 +#: guix/scripts/package.scm:557 #, scheme-format msgid "is this intended?~%" msgstr "¿es lo que deseaba?~%" -#: guix/scripts/package.scm:605 +#: guix/scripts/package.scm:607 #, scheme-format msgid "~a: unsupported kind of search path~%" msgstr "~a: tipo de ruta de búsqueda no implementado~%" # FUZZY -#: guix/scripts/package.scm:739 +#: guix/scripts/package.scm:741 #, scheme-format msgid "cannot install non-package object: ~s~%" msgstr "no se puede instalar el objeto ya que no es un paquete: ~s~%" -#: guix/scripts/package.scm:918 +#: guix/scripts/package.scm:920 #, scheme-format msgid "~a~@[@~a~]: package not found~%" msgstr "~a~@[@~a~]: paquete no encontrado~%" # FUZZY -#: guix/scripts/package.scm:965 guix/scripts/pull.scm:687 +#: guix/scripts/package.scm:967 guix/scripts/pull.scm:687 #, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "no se pudo pasar a la generación '~a'~%" -#: guix/scripts/package.scm:1060 +#: guix/scripts/package.scm:1062 #, scheme-format msgid "nothing to do~%" msgstr "nada que hacer~%" @@ -3562,8 +3660,7 @@ msgid "" " -F, --free-space=FREE attempt to reach FREE available space in the store" msgstr "" "\n" -" -F, --free-space=LIBRE intenta alcanzar un espacio disponible LIBRE en\n" -" el almacén" +" -F, --free-space=LIBRE intenta alcanzar un espacio disponible LIBRE en el almacén" #: guix/scripts/gc.scm:54 msgid "" @@ -3573,8 +3670,7 @@ msgid "" msgstr "" "\n" " -d, --delete-generations[=PATRÓN]\n" -" borra las generaciones del perfil que\n" -" correspondan con el PATRÓN" +" borra las generaciones del perfil que correspondan con el PATRÓN" #: guix/scripts/gc.scm:57 msgid "" @@ -3590,8 +3686,7 @@ msgid "" " --list-roots list the user's garbage collector roots" msgstr "" "\n" -" --list-roots enumera las raíces del recolector de basura\n" -" del usuario" +" --list-roots enumera las raíces del recolector de basura del usuario" #: guix/scripts/gc.scm:61 msgid "" @@ -3599,8 +3694,7 @@ msgid "" " --list-busy list store items used by running processes" msgstr "" "\n" -" --list-busy enumera elementos del almacén en uso por\n" -" procesos en ejecución" +" --list-busy enumera elementos del almacén en uso por procesos en ejecución" #: guix/scripts/gc.scm:63 msgid "" @@ -3608,8 +3702,7 @@ msgid "" " --optimize optimize the store by deduplicating identical files" msgstr "" "\n" -" --optimize optimiza el almacén mediante la deduplicación de\n" -" archivos idénticos" +" --optimize optimiza el almacén mediante la deduplicación de archivos idénticos" #: guix/scripts/gc.scm:65 msgid "" @@ -3736,8 +3829,8 @@ msgstr "" "Uso: guix git ORDEN PARÁMETROS...\n" "Opera en repositorios de Git.\n" -#: guix/scripts/git.scm:29 guix/scripts/system.scm:945 -#: guix/scripts/container.scm:30 guix/scripts/home.scm:69 +#: guix/scripts/git.scm:29 guix/scripts/system.scm:946 +#: guix/scripts/container.scm:30 guix/scripts/home.scm:70 msgid "The valid values for ACTION are:\n" msgstr "Los valores permitidos para ACCIÓN son:\n" @@ -3786,8 +3879,7 @@ msgid "" msgstr "" "\n" " -k, --keyring=REFERENCIA\n" -" carga el anillo de claves de REFERENCIA,\n" -" una rama de Git" +" carga el llavero de claves de REFERENCIA, una rama de Git" #: guix/scripts/git/authenticate.scm:102 msgid "" @@ -3803,8 +3895,7 @@ msgid "" " --cache-key=KEY cache authenticated commits under KEY" msgstr "" "\n" -" --cache-key=CLAVE almacena en caché las revisiones\n" -" validadas por CLAVE" +" --cache-key=CLAVE almacena en caché las confirmaciones autenticadas por CLAVE" #: guix/scripts/git/authenticate.scm:106 msgid "" @@ -3850,22 +3941,22 @@ msgstr "" "\n" " -S, --serializer=TIPO calcula el hash sobre ARCHIVO de acuerdo a la serialización TIPO" -#: guix/scripts/hash.scm:137 +#: guix/scripts/hash.scm:138 #, scheme-format -msgid "'--recursive' is deprecated, use '--serializer' instead~%" -msgstr "'--recursive' está obsoleto, use en su lugar '--serializer'~%" +msgid "'--recursive' is deprecated, use '--serializer=nar' instead~%" +msgstr "'--recursive' está obsoleto, use en su lugar '--serializer=nar'~%" -#: guix/scripts/hash.scm:152 +#: guix/scripts/hash.scm:153 #, scheme-format msgid "unsupported serializer type: ~a~%" msgstr "tipo de serializador no soportado: ~a~%" -#: guix/scripts/hash.scm:201 +#: guix/scripts/hash.scm:202 #, scheme-format msgid "~a ~a~%" msgstr "~a: ~a~%" -#: guix/scripts/hash.scm:210 +#: guix/scripts/hash.scm:211 #, scheme-format msgid "no arguments specified~%" msgstr "no hay argumentos especificados~%" @@ -3936,9 +4027,9 @@ msgstr "~a: no hay clave válida para ordenar por~%" #: guix/scripts/import/minetest.scm:115 guix/scripts/import/cran.scm:120 #: guix/scripts/import/elpa.scm:110 guix/scripts/import/cpan.scm:87 #: guix/scripts/import/crate.scm:103 guix/scripts/import/egg.scm:106 -#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:121 +#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:122 #: guix/scripts/import/hackage.scm:158 guix/scripts/import/json.scm:97 -#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:104 +#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:105 #: guix/scripts/import/stackage.scm:130 guix/scripts/import/texlive.scm:88 #, scheme-format msgid "too few arguments~%" @@ -3947,10 +4038,10 @@ msgstr "muy pocos parámetros~%" #: guix/scripts/import/minetest.scm:117 guix/scripts/import/cran.scm:122 #: guix/scripts/import/elpa.scm:112 guix/scripts/import/cpan.scm:89 #: guix/scripts/import/crate.scm:105 guix/scripts/import/egg.scm:108 -#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:123 +#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:124 #: guix/scripts/import/hackage.scm:149 guix/scripts/import/hackage.scm:160 #: guix/scripts/import/json.scm:99 guix/scripts/import/opam.scm:113 -#: guix/scripts/import/pypi.scm:106 guix/scripts/import/stackage.scm:132 +#: guix/scripts/import/pypi.scm:107 guix/scripts/import/stackage.scm:132 #: guix/scripts/import/texlive.scm:90 #, scheme-format msgid "too many arguments~%" @@ -3980,7 +4071,7 @@ msgstr "" "\n" " -s, --style=STYLE elige estilo de salida, bien especificación o variable" -#: guix/scripts/import/cran.scm:116 guix/scripts/import/texlive.scm:84 +#: guix/scripts/import/cran.scm:116 #, scheme-format msgid "failed to download description for package '~a'~%" msgstr "no se pudo descargar la descripción para el paquete '~a'~%" @@ -4077,8 +4168,7 @@ msgid "" " --allow-downgrades allow downgrades to earlier channel revisions" msgstr "" "\n" -" --allow-downgrades permite la vuelta a revisiones del\n" -" canal previas" +" --allow-downgrades permite la vuelta a revisiones del canal previas" #: guix/scripts/pull.scm:99 guix/scripts/time-machine.scm:61 msgid "" @@ -4113,8 +4203,7 @@ msgid "" " --bootstrap use the bootstrap Guile to build the new Guix" msgstr "" "\n" -" --bootstrap usa Guile del lanzamiento inicial para construir\n" -" la nueva versión de Guix" +" --bootstrap usa la oreja Guile para construir la nueva versión de Guix" # FUZZY #: guix/scripts/pull.scm:210 guix/scripts/system/reconfigure.scm:333 @@ -4237,16 +4326,12 @@ msgstr "error TLS en el procedimiento '~a': ~a~%" # FUZZY #: guix/scripts/substitute.scm:240 -#, fuzzy -#| msgid "" -#| "Usage: guix substitute [OPTION]...\n" -#| "Internal tool to substitute a pre-built binary to a local build.\n" msgid "" "Usage: guix substitute OPTION [ARGUMENT]...\n" "Internal tool to substitute a pre-built binary to a local build.\n" msgstr "" -"Uso: guix substitute [OPCIÓN]...\n" -"Herramienta interna para sustituir con un binario una construcción local.\n" +"Usage: guix substitute OPCIÓN [ARGUMENTO]...\n" +"Herramienta interna para sustituir un binario precompilado por una compilación local.\n" #: guix/scripts/substitute.scm:242 msgid "" @@ -4255,9 +4340,8 @@ msgid "" " store file names passed on the standard input" msgstr "" "\n" -" --query informa de la disponibilidad de sustituciones para\n" -" los nombres de archivo proporcionados por la\n" -" entrada estándar" +" --query informa de la disponibilidad de sustituciones para el\n" +" almacén de nombres de archivo pasados por la entrada estándar" #: guix/scripts/substitute.scm:245 msgid "" @@ -4310,9 +4394,7 @@ msgstr "Descargando ~a...~%" #: guix/scripts/substitute.scm:610 msgid "ACL for archive imports seems to be uninitialized, substitutes may be unavailable\n" -msgstr "" -"El control de acceso (ACL) para las importaciones de archivos parece no estar\n" -"inicializado, las sustituciones pueden no estar disponibles\n" +msgstr "El control de acceso (ACL) para las importaciones de archivos parece no estar inicializado, las sustituciones pueden no estar disponibles\n" #: guix/scripts/substitute.scm:696 #, scheme-format @@ -4443,27 +4525,27 @@ msgstr "el GAD de servicios" msgid "the dependency graph of shepherd services" msgstr "el grafo de dependencias de los servicios de shepherd" -#: guix/scripts/system.scm:482 guix/scripts/home.scm:453 +#: guix/scripts/system.scm:482 guix/scripts/home.scm:466 #, scheme-format msgid " repository URL: ~a~%" msgstr " URL del repositorio: ~a~%" -#: guix/scripts/system.scm:484 guix/scripts/home.scm:455 +#: guix/scripts/system.scm:484 guix/scripts/home.scm:468 #, scheme-format msgid " branch: ~a~%" msgstr " rama: ~a~%" -#: guix/scripts/system.scm:485 guix/scripts/home.scm:456 +#: guix/scripts/system.scm:485 guix/scripts/home.scm:469 #, scheme-format msgid " commit: ~a~%" msgstr " revisión: ~a~%" -#: guix/scripts/system.scm:505 guix/scripts/home.scm:469 +#: guix/scripts/system.scm:505 guix/scripts/home.scm:482 #, scheme-format msgid " file name: ~a~%" msgstr " nombre de archivo: ~a~%" -#: guix/scripts/system.scm:506 guix/scripts/home.scm:470 +#: guix/scripts/system.scm:506 guix/scripts/home.scm:483 #, scheme-format msgid " canonical file name: ~a~%" msgstr " nombre canónico de archivo: ~a~%" @@ -4504,12 +4586,12 @@ msgstr " multiboot: ~a~%" #. TRANSLATORS: Here "channel" is the same terminology as used in #. "guix describe" and "guix pull --channels". -#: guix/scripts/system.scm:536 guix/scripts/home.scm:476 +#: guix/scripts/system.scm:536 guix/scripts/home.scm:489 #, scheme-format msgid " channels:~%" msgstr " canales:~%" -#: guix/scripts/system.scm:539 guix/scripts/home.scm:479 +#: guix/scripts/system.scm:539 guix/scripts/home.scm:492 #, scheme-format msgid " configuration file: ~a~%" msgstr " archivo de configuración: ~a~%" @@ -4565,17 +4647,17 @@ msgstr "Considere ejecutar 'guix pull' antes de 'reconfigure'.~%" msgid "Failing to do that may downgrade your system!~%" msgstr "¡En caso de no hacerlo puede desactualizar su sistema!~%" -#: guix/scripts/system.scm:754 guix/scripts/system.scm:863 +#: guix/scripts/system.scm:754 guix/scripts/system.scm:864 #, scheme-format msgid "bootloader successfully installed on '~a'~%" msgstr "cargador de arranque instalado satisfactoriamente en '~a'~%" -#: guix/scripts/system.scm:856 +#: guix/scripts/system.scm:857 #, scheme-format msgid "activating system...~%" msgstr "activando sistema...~%" -#: guix/scripts/system.scm:867 +#: guix/scripts/system.scm:868 msgid "" "To complete the upgrade, run 'herd restart SERVICE' to stop,\n" "upgrade, and restart each service that was not automatically restarted.\n" @@ -4583,26 +4665,26 @@ msgstr "" "Para completar la actualización, ejecute 'herd restart SERVICIO' para parar,\n" "actualizar y reiniciar cada servicio que no se reinició automáticamente.\n" -#: guix/scripts/system.scm:870 +#: guix/scripts/system.scm:871 msgid "Run 'herd status' to view the list of services on your system.\n" msgstr "Ejecute 'herd status' para ver la lista de servicios en su sistema.\n" # FUZZY -#: guix/scripts/system.scm:874 +#: guix/scripts/system.scm:875 #, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "inicializando el sistema operativo en '~a'...~%" -#: guix/scripts/system.scm:894 guix/scripts/graph.scm:437 +#: guix/scripts/system.scm:895 guix/scripts/graph.scm:437 #, scheme-format msgid "~a: unknown backend~%" msgstr "~a: motor desconocido~%" -#: guix/scripts/system.scm:931 +#: guix/scripts/system.scm:932 msgid "The available image types are:\n" msgstr "Los tipos de imagen disponibles son:\n" -#: guix/scripts/system.scm:941 +#: guix/scripts/system.scm:942 msgid "" "Usage: guix system [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the operating system declared in FILE according to ACTION.\n" @@ -4612,71 +4694,67 @@ msgstr "" "Construye el sistema operativo declarado en ARCHIVO de acuerdo con ACCIÓN.\n" "Algunas ACCIONES permiten PARÁMETROS adicionales.\n" -#: guix/scripts/system.scm:947 +#: guix/scripts/system.scm:948 msgid " search search for existing service types\n" msgstr " search busca tipos de servicio existentes\n" -#: guix/scripts/system.scm:949 +#: guix/scripts/system.scm:950 msgid " reconfigure switch to a new operating system configuration\n" msgstr " reconfigure cambia a una configuración nueva de sistema operativo\n" -#: guix/scripts/system.scm:951 +#: guix/scripts/system.scm:952 msgid " roll-back switch to the previous operating system configuration\n" msgstr " roll-back cambia a la configuración previa del sistema operativo\n" -#: guix/scripts/system.scm:953 +#: guix/scripts/system.scm:954 msgid " describe describe the current system\n" msgstr " describe describe el sistema actual\n" -#: guix/scripts/system.scm:955 +#: guix/scripts/system.scm:956 msgid " list-generations list the system generations\n" msgstr " list-generations enumera las generaciones del sistema\n" -#: guix/scripts/system.scm:957 +#: guix/scripts/system.scm:958 msgid " switch-generation switch to an existing operating system configuration\n" msgstr " switch-generation cambia a configuración existente del sistema operativo\n" -#: guix/scripts/system.scm:959 +#: guix/scripts/system.scm:960 msgid " delete-generations delete old system generations\n" msgstr " delete-generations borra generaciones antiguas del sistema\n" -#: guix/scripts/system.scm:961 +#: guix/scripts/system.scm:962 msgid " build build the operating system without installing anything\n" msgstr " build construye el sistema operativo sin instalar nada\n" -#: guix/scripts/system.scm:963 +#: guix/scripts/system.scm:964 msgid " container build a container that shares the host's store\n" -msgstr "" -" container construye un contenedor que comparte el almacén\n" -" de la máquina anfitriona\n" +msgstr " container construye un contenedor que comparte el almacén de la máquina anfitriona\n" -#: guix/scripts/system.scm:965 +#: guix/scripts/system.scm:966 msgid " vm build a virtual machine image that shares the host's store\n" -msgstr "" -" vm construye una imagen de máquina virtual que comparte el\n" -" almacén de la máquina anfitriona\n" +msgstr " vm construye una imagen de máquina virtual que comparte el almacén de la máquina anfitriona\n" -#: guix/scripts/system.scm:967 +#: guix/scripts/system.scm:968 msgid " image build a Guix System image\n" msgstr " image construye una imagen Guix System\n" -#: guix/scripts/system.scm:969 +#: guix/scripts/system.scm:970 msgid " docker-image build a Docker image\n" msgstr " docker-image construye una imagen Docker\n" -#: guix/scripts/system.scm:971 +#: guix/scripts/system.scm:972 msgid " init initialize a root file system to run GNU\n" msgstr " init inicializa un sistema de archivos raíz para ejecutar GNU\n" -#: guix/scripts/system.scm:973 +#: guix/scripts/system.scm:974 msgid " extension-graph emit the service extension graph in Dot format\n" msgstr " extension-graph emite el grafo de extensiones de servicios en formato Dot\n" -#: guix/scripts/system.scm:975 +#: guix/scripts/system.scm:976 msgid " shepherd-graph emit the graph of shepherd services in Dot format\n" msgstr " shepherd-graph emite el grafo de servicios de shepherd en formato Dot\n" -#: guix/scripts/system.scm:979 +#: guix/scripts/system.scm:980 msgid "" "\n" " -d, --derivation return the derivation of the given system" @@ -4684,7 +4762,7 @@ msgstr "" "\n" " -d, --derivation devuelve la derivación del sistema proporcionado" -#: guix/scripts/system.scm:981 +#: guix/scripts/system.scm:982 msgid "" "\n" " -e, --expression=EXPR consider the operating-system EXPR evaluates to\n" @@ -4694,7 +4772,7 @@ msgstr "" " -e, --expression=EXPR considera el sistema operativo al cual EXPR evalúa\n" " en vez de leer ARCHIVO, cuando sea posible" -#: guix/scripts/system.scm:984 +#: guix/scripts/system.scm:985 guix/scripts/home.scm:95 msgid "" "\n" " --allow-downgrades for 'reconfigure', allow downgrades to earlier\n" @@ -4704,7 +4782,7 @@ msgstr "" " --allow-downgrades con 'reconfigure', permite la vuelta\n" " a revisiones previas del canal" -#: guix/scripts/system.scm:987 +#: guix/scripts/system.scm:988 msgid "" "\n" " --on-error=STRATEGY\n" @@ -4714,10 +4792,9 @@ msgstr "" "\n" " --on-error=ESTRATEGIA\n" " aplica ESTRATEGIA (o bien 'nothing-special',\n" -" 'backtrace' o 'debug') cuando suceda un error\n" -" durante la lectura de ARCHIVO" +" 'backtrace' o 'debug') cuando suceda un error durante la lectura de ARCHIVO" -#: guix/scripts/system.scm:991 +#: guix/scripts/system.scm:992 msgid "" "\n" " --list-image-types list available image types" @@ -4725,7 +4802,7 @@ msgstr "" "\n" " --list-image-types enumera los tipos de imagen disponibles" -#: guix/scripts/system.scm:993 +#: guix/scripts/system.scm:994 msgid "" "\n" " -t, --image-type=TYPE for 'image', produce an image of TYPE" @@ -4733,7 +4810,7 @@ msgstr "" "\n" " -t, --image-type=TYPE para 'image', produce una imagen de TYPE" -#: guix/scripts/system.scm:995 +#: guix/scripts/system.scm:996 msgid "" "\n" " --image-size=SIZE for 'image', produce an image of SIZE" @@ -4741,7 +4818,7 @@ msgstr "" "\n" " --image-size=TAMAÑO para 'image', produce una imagen de produce an image of TAMAÑO" -#: guix/scripts/system.scm:997 +#: guix/scripts/system.scm:998 msgid "" "\n" " --no-bootloader for 'init', do not install a bootloader" @@ -4749,7 +4826,7 @@ msgstr "" "\n" " --no-bootloader con 'init', no instala un cargador de arranque" -#: guix/scripts/system.scm:999 +#: guix/scripts/system.scm:1000 msgid "" "\n" " --volatile for 'image', make the root file system volatile" @@ -4757,7 +4834,15 @@ msgstr "" "\n" " --volatile para 'image', hace el sistema de archivos root volátil" -#: guix/scripts/system.scm:1001 +#: guix/scripts/system.scm:1002 +msgid "" +"\n" +" --persistent for 'vm', make the root file system persistent" +msgstr "" +"\n" +" --persistent para 'vm', hace el sistema de archivos root persistente" + +#: guix/scripts/system.scm:1004 msgid "" "\n" " --label=LABEL for 'image', label disk image with LABEL" @@ -4765,7 +4850,7 @@ msgstr "" "\n" " --label=ETIQUETA para 'image', etiqueta la imagen de disco con ETIQUETA" -#: guix/scripts/system.scm:1003 guix/scripts/pack.scm:1340 +#: guix/scripts/system.scm:1006 guix/scripts/pack.scm:1340 msgid "" "\n" " --save-provenance save provenance information" @@ -4774,7 +4859,7 @@ msgstr "" " --save-provenance almacena información de la proveniencia" # FUZZY -#: guix/scripts/system.scm:1005 +#: guix/scripts/system.scm:1008 msgid "" "\n" " --share=SPEC for 'vm' and 'container', share host file system with\n" @@ -4782,11 +4867,10 @@ msgid "" msgstr "" "\n" " --share=SPEC con 'vm' y 'container', comparte acceso de\n" -" lectura/escritura al sistema de archivos del\n" -" sistema anfitrión según SPEC" +" lectura/escritura al sistema de archivos del sistema anfitrión según SPEC" # FUZZY -#: guix/scripts/system.scm:1008 +#: guix/scripts/system.scm:1011 msgid "" "\n" " --expose=SPEC for 'vm' and 'container', expose host file system\n" @@ -4794,19 +4878,17 @@ msgid "" msgstr "" "\n" " --expose=SPEC con 'vm' y 'container', expone el directorio\n" -" del sistema de archivos del anfitrión con\n" -" acceso de solo-lectura según SPEC" +" del sistema de archivos del anfitrión con acceso de sólo-lectura según SPEC" -#: guix/scripts/system.scm:1011 +#: guix/scripts/system.scm:1014 msgid "" "\n" " -N, --network for 'container', allow containers to access the network" msgstr "" "\n" -" -N, --network para 'container', permite el acceso a la red a los\n" -" contenedores" +" -N, --network para 'container', permite el acceso a la red a los contenedores" -#: guix/scripts/system.scm:1013 +#: guix/scripts/system.scm:1016 msgid "" "\n" " -r, --root=FILE for 'vm', 'image', 'container' and 'build',\n" @@ -4818,7 +4900,7 @@ msgstr "" " crea ARCHIVO como un enlace simbólico al resultado y\n" " lo registra como recolector de basura de root" -#: guix/scripts/system.scm:1017 +#: guix/scripts/system.scm:1020 msgid "" "\n" " --full-boot for 'vm', make a full boot sequence" @@ -4826,7 +4908,7 @@ msgstr "" "\n" " --full-boot con 'vm', genera una secuencia de arranque completa" -#: guix/scripts/system.scm:1019 +#: guix/scripts/system.scm:1022 msgid "" "\n" " --no-graphic for 'vm', use the tty that we are started in for IO" @@ -4834,16 +4916,15 @@ msgstr "" "\n" " --no-graphic para 'vm', use la tty por la que empezamos la IO" -#: guix/scripts/system.scm:1021 +#: guix/scripts/system.scm:1024 msgid "" "\n" " --skip-checks skip file system and initrd module safety checks" msgstr "" "\n" -" --skip-checks omite las comprobaciones de seguridad del sistema\n" -" de archivos y de módulos de initrd" +" --skip-checks omite las comprobaciones de seguridad del sistema de archivos y de módulos de initrd" -#: guix/scripts/system.scm:1028 +#: guix/scripts/system.scm:1031 msgid "" "\n" " --graph-backend=BACKEND\n" @@ -4853,57 +4934,57 @@ msgstr "" " --graph-backend=BACKEND\n" " usar BACKEND para 'extension-graph' y 'shepherd-graph'" -#: guix/scripts/system.scm:1180 +#: guix/scripts/system.scm:1187 #, scheme-format msgid "'~a' does not return an operating system or an image~%" msgstr "'~a' no devuelve ni un sistema operativo ni una imagen~%" -#: guix/scripts/system.scm:1204 guix/scripts/home.scm:216 +#: guix/scripts/system.scm:1211 guix/scripts/home.scm:230 #, scheme-format msgid "both file and expression cannot be specified~%" msgstr "no se pueden especificar tanto el archivo como la expresión~%" -#: guix/scripts/system.scm:1211 guix/scripts/home.scm:223 +#: guix/scripts/system.scm:1218 guix/scripts/home.scm:237 #, scheme-format msgid "no configuration specified~%" msgstr "ninguna configuración especificada~%" -#: guix/scripts/system.scm:1319 guix/scripts/system.scm:1335 -#: guix/scripts/system.scm:1342 guix/scripts/system.scm:1348 -#: guix/scripts/home.scm:274 guix/scripts/home.scm:296 -#: guix/scripts/home.scm:301 guix/scripts/home.scm:307 -#: guix/scripts/home.scm:314 guix/scripts/import/gnu.scm:100 +#: guix/scripts/system.scm:1328 guix/scripts/system.scm:1344 +#: guix/scripts/system.scm:1351 guix/scripts/system.scm:1357 +#: guix/scripts/home.scm:287 guix/scripts/home.scm:309 +#: guix/scripts/home.scm:314 guix/scripts/home.scm:320 +#: guix/scripts/home.scm:327 guix/scripts/import/gnu.scm:100 #: guix/scripts/offload.scm:836 guix/scripts/offload.scm:848 #, scheme-format msgid "wrong number of arguments~%" msgstr "número de parámetros incorrecto~%" -#: guix/scripts/system.scm:1324 +#: guix/scripts/system.scm:1333 #, scheme-format msgid "no system generation, nothing to describe~%" msgstr "ninguna generación del sistema, nada que describir~%" -#: guix/scripts/system.scm:1367 guix/scripts/home.scm:337 +#: guix/scripts/system.scm:1376 guix/scripts/home.scm:350 #, scheme-format msgid "~a: unknown action~%" msgstr "~a: acción desconocida~%" -#: guix/scripts/system.scm:1387 guix/scripts/home.scm:353 +#: guix/scripts/system.scm:1396 guix/scripts/home.scm:366 #, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "número de parámetros incorrecto para la acción '~a'~%" -#: guix/scripts/system.scm:1392 +#: guix/scripts/system.scm:1401 #, scheme-format msgid "guix system: missing command name~%" msgstr "guix system: falta el nombre de la orden~%" -#: guix/scripts/system.scm:1394 +#: guix/scripts/system.scm:1403 #, scheme-format msgid "Try 'guix system --help' for more information.~%" msgstr "Pruebe 'guix system --help' para más información.~%" -#: guix/scripts/system/search.scm:93 guix/ui.scm:1541 guix/ui.scm:1559 +#: guix/scripts/system/search.scm:93 guix/ui.scm:1544 guix/ui.scm:1562 msgid "unknown" msgstr "desconocida" @@ -5002,8 +5083,7 @@ msgid "" " -u, --user=USER change privileges to USER as soon as possible" msgstr "" "\n" -" -u, --user=CUENTA cambia los privilegios a los de CUENTA tan pronto\n" -" como sea posible" +" -u, --user=USUARIO cambia los privilegios a los de USUARIO tan pronto como sea posible" #: guix/scripts/publish.scm:94 msgid "" @@ -5021,8 +5101,7 @@ msgid "" msgstr "" "\n" " -C, --compression[=MÉTODO:NIVEL]\n" -" comprime los archivos con MÉTODO al NIVEL\n" -" especificado" +" comprime los archivos con MÉTODO al NIVEL" #: guix/scripts/publish.scm:99 msgid "" @@ -5030,8 +5109,7 @@ msgid "" " -c, --cache=DIRECTORY cache published items to DIRECTORY" msgstr "" "\n" -" -c, --cache=DIRECTORIO almacena los elementos publicados en caché en\n" -" el DIRECTORIO" +" -c, --cache=DIRECTORIO almacena los elementos publicados en caché en el DIRECTORIO" #: guix/scripts/publish.scm:101 msgid "" @@ -5040,9 +5118,8 @@ msgid "" " serve store items below SIZE even when not cached" msgstr "" "\n" -" --cache-bypass-threshold=LÍMITE\n" -" proporciona elementos del almacén con tamaño menor\n" -" a LÍMITE incluso cuando no están en la caché" +" --cache-bypass-threshold=TAMAÑO\n" +" proporciona elementos del almacén con tamaño menor a TAMAÑO incluso cuando no están en la caché" # FUZZY #: guix/scripts/publish.scm:104 @@ -5059,8 +5136,7 @@ msgid "" " --ttl=TTL announce narinfos can be cached for TTL seconds" msgstr "" "\n" -" --ttl=TTL anuncia que los archivos narinfo pueden estar en caché\n" -" durante TTL segundos" +" --ttl=TTL anuncia que los archivos narinfo pueden estar en caché durante TTL segundos" #: guix/scripts/publish.scm:108 msgid "" @@ -5084,8 +5160,7 @@ msgid "" " --public-key=FILE use FILE as the public key for signatures" msgstr "" "\n" -" --public-key=ARCHIVO\n" -" usa ARCHIVO como clave pública para firmas" +" --public-key=ARCHIVO usa ARCHIVO como clave pública para firmas" #: guix/scripts/publish.scm:114 msgid "" @@ -5093,8 +5168,7 @@ msgid "" " --private-key=FILE use FILE as the private key for signatures" msgstr "" "\n" -" --private-key=ARCHIVO\n" -" usa ARCHIVO como clave privada para firmas" +" --private-key=ARCHIVO usa ARCHIVO como clave privada para firmas" # FUZZY #: guix/scripts/publish.scm:116 @@ -5188,7 +5262,7 @@ msgstr "total" #: guix/scripts/size.scm:93 msgid "self" -msgstr "self" +msgstr "propio" #: guix/scripts/size.scm:101 #, scheme-format @@ -5208,8 +5282,7 @@ msgid "" "Report the size of the PACKAGE or STORE-ITEM, with its dependencies.\n" msgstr "" "Uso: guix size [OPCIÓN]... PAQUETE|ELEMENTO-DEL-ALMACÉN\n" -"Informa del tamaño de PAQUETE o del ELEMENTO-DEL-ALMACÉN, incluyendo\n" -"sus dependencias.\n" +"Informa del tamaño de PAQUETE o del ELEMENTO-DEL-ALMACÉN, incluyendo sus dependencias.\n" #: guix/scripts/size.scm:238 msgid "" @@ -5217,8 +5290,7 @@ msgid "" " -s, --system=SYSTEM consider packages for SYSTEM--e.g., \"i686-linux\"" msgstr "" "\n" -" -s, --system=SISTEMA considera paquetes para SISTEMA---por\n" -" ejemplo, \"i686-linux\"" +" -s, --system=SISTEMA considera paquetes para SISTEMA---por ejemplo, \"i686-linux\"" #. TRANSLATORS: "closure" and "self" must not be translated. #: guix/scripts/size.scm:241 @@ -5382,11 +5454,10 @@ msgid "" " --path display the shortest path between the given nodes" msgstr "" "\n" -" --path muestra la ruta más corta entre los nodos\n" -" proporcionados" +" --path muestra la ruta más corta entre los nodos proporcionados" #: guix/scripts/graph.scm:548 guix/scripts/pack.scm:1325 -#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:502 +#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:797 msgid "" "\n" " -e, --expression=EXPR consider the package EXPR evaluates to" @@ -5476,8 +5547,7 @@ msgid "" "Challenge the substitutes for PACKAGE... provided by one or more servers.\n" msgstr "" "Uso: guix challenge [PAQUETE...]\n" -"Pone a prueba las sustituciones para PAQUETE... proporcionadas por uno o\n" -"más servidores.\n" +"Pone a prueba las sustituciones para PAQUETE... proporcionadas por uno o más servidores.\n" #: guix/scripts/challenge.scm:422 msgid "" @@ -5590,8 +5660,7 @@ msgid "" " tarball Self-contained tarball, ready to run on another machine" msgstr "" "\n" -" tarball Archivador tar autocontenido, preparado para ejecutarse\n" -" en otra máquina" +" tarball Archivador tar autocontenido, preparado para ejecutarse en otra máquina" #: guix/scripts/pack.scm:1173 msgid "" @@ -5707,8 +5776,7 @@ msgid "" " -C, --compression=TOOL compress using TOOL--e.g., \"lzip\"" msgstr "" "\n" -" -C, --compression=HERRAMIENTA\n" -" comprime con HERRAMIENTA--por ejemplo, \"lzip\"" +" -C, --compression=HERRAMIENTA comprime con HERRAMIENTA--por ejemplo, \"lzip\"" #: guix/scripts/pack.scm:1333 msgid "" @@ -5734,8 +5802,7 @@ msgid "" msgstr "" "\n" " --entry-point=PROGRAMA\n" -" usa PROGRAMA como punto de entrada del\n" -" empaquetado" +" usa PROGRAMA como punto de entrada del empaquetado" #: guix/scripts/pack.scm:1342 msgid "" @@ -5769,8 +5836,7 @@ msgid "" " --bootstrap use the bootstrap binaries to build the pack" msgstr "" "\n" -" --bootstrap usa los binarios del lanzamiento inicial para\n" -" construir el empaquetado" +" --bootstrap usa los binarios del lanzamiento inicial para construir el empaquetado" #: guix/scripts/pack.scm:1408 #, scheme-format @@ -5918,8 +5984,7 @@ msgid "" msgstr "" "\n" " -m, --manifest=MANIFIESTO\n" -" busca sustituciones para paquetes especificados\n" -" en MANIFIESTO" +" busca sustituciones para paquetes especificados en MANIFIESTO" #: guix/scripts/weather.scm:327 msgid "" @@ -5947,8 +6012,7 @@ msgid "" " -s, --system=SYSTEM consider substitutes for SYSTEM--e.g., \"i686-linux\"" msgstr "" "\n" -" -s, --system=SISTEMA considera sustituciones para SISTEMA--por\n" -" ejemplo, \"i686-linux\"" +" -s, --system=SISTEMA considera sustituciones para SISTEMA--por ejemplo, \"i686-linux\"" #: guix/scripts/weather.scm:357 #, scheme-format @@ -6035,7 +6099,10 @@ msgid "" "Perhaps this\n" "@command{guix} command was not obtained with @command{guix pull}? Its version\n" "string is ~a.~%" -msgstr "¿Es posible que este ejecutable @command{guix} no se obtuviese con @command{guix pull}? Su cadena de versión es ~a.~%" +msgstr "" +"¿Es posible que\n" +" este comando @command{guix} no se obtuviese con @command{guix pull}? Su cadena\n" +"de versión es ~a.~%" #: guix/scripts/describe.scm:166 #, scheme-format @@ -6089,7 +6156,7 @@ msgstr "" "\n" " -f, --format=FORMATO muestra resultados como conjuntos de registros normalizados" -#: guix/scripts/deploy.scm:51 +#: guix/scripts/deploy.scm:54 msgid "" "Usage: guix deploy [OPTION] FILE...\n" "Perform the deployment specified by FILE.\n" @@ -6097,38 +6164,87 @@ msgstr "" "Uso: guix deploy [OPCIÓN] ARCHIVO...\n" "Realiza el despliegue especificado en ARCHIVO.\n" -#: guix/scripts/deploy.scm:108 +#: guix/scripts/deploy.scm:63 +#, fuzzy +#| msgid " exec execute a command inside of an existing container\n" +msgid "" +"\n" +" -x, --execute execute the following command on all the machines" +msgstr " exec ejecuta una orden dentro de un contenedor existente\n" + +#: guix/scripts/deploy.scm:117 #, scheme-format msgid "The following ~d machine will be deployed:~%" msgid_plural "The following ~d machines will be deployed:~%" msgstr[0] "Se desplegará ~d máquina mostrada a continuación:~%" msgstr[1] "Se desplegarán ~d máquinas mostradas a continuación:~%" -#: guix/scripts/deploy.scm:122 +#: guix/scripts/deploy.scm:131 #, scheme-format msgid "deploying to ~a...~%" msgstr "desplegando a ~a...~%" -#: guix/scripts/deploy.scm:134 guix/scripts/deploy.scm:138 +#: guix/scripts/deploy.scm:143 guix/scripts/deploy.scm:147 #, scheme-format msgid "failed to deploy ~a: ~a~%" msgstr "no se pudo desplegar ~a: ~a~%" # FUZZY -#: guix/scripts/deploy.scm:146 +#: guix/scripts/deploy.scm:155 #, scheme-format msgid "rolling back ~a...~%" msgstr "volviendo a la generación previa en ~a...~%" -#: guix/scripts/deploy.scm:152 +#: guix/scripts/deploy.scm:161 #, scheme-format msgid "successfully deployed ~a~%" msgstr "~a desplegada satisfactoriamente~%" -#: guix/scripts/deploy.scm:167 +#: guix/scripts/deploy.scm:212 +#, fuzzy, scheme-format +#| msgid "~a: command not found~%" +msgid "~a: command succeeded~%" +msgstr "~a: comando no encontrado~%" + +# FUZZY +#: guix/scripts/deploy.scm:215 +#, fuzzy, scheme-format +#| msgid "Command failed with exit code ~a.~%" +msgid "~a: command exited with code ~a~%" +msgstr "La orden ha fallado con código de salida ~a.~%" + +#: guix/scripts/deploy.scm:218 +#, fuzzy, scheme-format +#| msgid "~a: command not found~%" +msgid "~a: command stopped with signal ~a~%" +msgstr "~a: comando no encontrado~%" + +#: guix/scripts/deploy.scm:221 +#, fuzzy, scheme-format +#| msgid "~a: consider removing this input: ~a~%" +msgid "~a: command terminated with signal ~a~%" +msgstr "~a: considere quitar esta entrada: ~a~%" + +#: guix/scripts/deploy.scm:225 +#, fuzzy, scheme-format +#| msgid "~a: command not found~%" +msgid "command output on ~a:~%" +msgstr "~a: comando no encontrado~%" + +#: guix/scripts/deploy.scm:246 #, scheme-format msgid "missing deployment file argument~%" -msgstr "falta el parámetro de archivo de despliegue~%" +msgstr "faltan argumentos para el archivo de despliegue~%" + +#: guix/scripts/deploy.scm:249 +#, scheme-format +msgid "'--' was used by '-x' was not specified~%" +msgstr "" + +#: guix/scripts/deploy.scm:271 +#, scheme-format +msgid "'-x' specified but no command given~%" +msgstr "" #: guix/gexp.scm:465 #, scheme-format @@ -6225,78 +6341,74 @@ msgstr "no existe el proceso ~d~%" msgid "exec failed with status ~d~%" msgstr "exec ha fallado con estado ~d~%" -#: guix/transformations.scm:185 guix/transformations.scm:253 +#: guix/transformations.scm:186 guix/transformations.scm:254 #, scheme-format msgid "invalid replacement specification: ~s" msgstr "especificación de reemplazo no válida: ~s" -#: guix/transformations.scm:234 +#: guix/transformations.scm:235 #, scheme-format msgid "the source of ~a is not a Git reference" msgstr "la fuente de ~a no es una referencia Git" # FUZZY -#: guix/transformations.scm:337 +#: guix/transformations.scm:338 #, scheme-format msgid "~a: invalid Git URL replacement specification" msgstr "~a: especificación de URL de Git de reemplazo no válida" # FUZZY -#: guix/transformations.scm:415 +#: guix/transformations.scm:416 #, scheme-format msgid "~a: invalid toolchain replacement specification" msgstr "~a: especificación de cadena de construcción de reemplazo no válida" -#: guix/transformations.scm:517 -#, fuzzy -#| msgid "failed to determine origin~%" +#: guix/transformations.scm:518 msgid "failed to determine which compiler is used" -msgstr "no se pudo determinar el origen~%" +msgstr "no se pudo determinar que compilador se usa" -#: guix/transformations.scm:523 -#, fuzzy, scheme-format -#| msgid "failed to determine latest release of GNU ~a" +#: guix/transformations.scm:524 +#, scheme-format msgid "failed to determine whether ~a supports ~a" -msgstr "fallo al determinar la última versión de GNU ~a" +msgstr "fallo para determinar si ~a soporta ~a" -#: guix/transformations.scm:529 +#: guix/transformations.scm:530 #, scheme-format msgid "compiler ~a does not support micro-architecture ~a" -msgstr "" +msgstr "el compilador ~a no soporta la micro arquitectura ~a" -#: guix/transformations.scm:581 -#, fuzzy, scheme-format -#| msgid "~a for ~a~%" +#: guix/transformations.scm:582 +#, scheme-format msgid "tuning ~a for CPU ~a~%" -msgstr "~a para ~a~%" +msgstr "ajustando ~a para CPU ~a~%" # FUZZY -#: guix/transformations.scm:721 +#: guix/transformations.scm:722 #, scheme-format msgid "~a: invalid package patch specification" msgstr "~a: especificación de parche de paquete no válido" -#: guix/transformations.scm:744 +#: guix/transformations.scm:745 #, scheme-format msgid "could not determine latest upstream release of '~a'~%" msgstr "no se pudo determinar la última versión anterior de ~a~%" -#: guix/transformations.scm:752 +#: guix/transformations.scm:753 #, scheme-format msgid "cannot authenticate source of '~a', version ~a~%" msgstr "no se puede autenticar la fuente de '~a', versión ~a~%" -#: guix/transformations.scm:833 +#: guix/transformations.scm:840 #, scheme-format msgid "building for ~a instead of ~a, so tuning cannot be guessed~%" -msgstr "" +msgstr "compilando para ~a en lugar de para ~a, de modo que no se puede adivinar la afinación~%" -#: guix/transformations.scm:859 +#: guix/transformations.scm:866 #, scheme-format msgid "Available package transformation options:~%" msgstr "Opciones de transformación de paquetes disponibles:~%" -#: guix/transformations.scm:865 +#: guix/transformations.scm:872 msgid "" "\n" " --with-source=[PACKAGE=]SOURCE\n" @@ -6304,10 +6416,9 @@ msgid "" msgstr "" "\n" " --with-source=[PAQUETE=]FUENTE\n" -" usa FUENTE para la construcción del paquete\n" -" correspondiente" +" usa FUENTE para la construcción del paquete correspondiente" -#: guix/transformations.scm:868 +#: guix/transformations.scm:875 msgid "" "\n" " --with-input=PACKAGE=REPLACEMENT\n" @@ -6317,7 +6428,7 @@ msgstr "" " --with-input=PAQUETE=REEMPLAZO\n" " reemplaza la dependencia de PAQUETE por REEMPLAZO" -#: guix/transformations.scm:871 +#: guix/transformations.scm:878 msgid "" "\n" " --with-graft=PACKAGE=REPLACEMENT\n" @@ -6325,10 +6436,9 @@ msgid "" msgstr "" "\n" " --with-graft=PAQUETE=REEMPLAZO\n" -" injerta REEMPLAZO en paquetes que hacen referencia\n" -" a PAQUETE" +" injerta REEMPLAZO en paquetes que hacen referencia a PAQUETE" -#: guix/transformations.scm:874 +#: guix/transformations.scm:881 msgid "" "\n" " --with-branch=PACKAGE=BRANCH\n" @@ -6338,7 +6448,7 @@ msgstr "" " --with-branch=PAQUETE=RAMA\n" " construye PAQUETE desde la última revisión de RAMA" -#: guix/transformations.scm:877 +#: guix/transformations.scm:884 msgid "" "\n" " --with-commit=PACKAGE=COMMIT\n" @@ -6348,7 +6458,7 @@ msgstr "" " --with-commit=PAQUETE=REVISIÓN\n" " construye PAQUETE desde REVISIÓN" -#: guix/transformations.scm:880 +#: guix/transformations.scm:887 msgid "" "\n" " --with-git-url=PACKAGE=URL\n" @@ -6358,7 +6468,7 @@ msgstr "" " --with-git-url=PAQUETE=URL\n" " construye el PAQUETE del repositorio en URL" -#: guix/transformations.scm:883 +#: guix/transformations.scm:890 msgid "" "\n" " --with-patch=PACKAGE=FILE\n" @@ -6368,7 +6478,7 @@ msgstr "" " --with-patch=PAQUETE=ARCHIVO\n" " añadir ARCHIVO a la lista de parches del PAQUETE" -#: guix/transformations.scm:886 +#: guix/transformations.scm:893 msgid "" "\n" " --with-latest=PACKAGE\n" @@ -6378,7 +6488,7 @@ msgstr "" " --with-latest=PAQUETE\n" " utilice la última versión anterior de PAQUETE" -#: guix/transformations.scm:889 +#: guix/transformations.scm:896 msgid "" "\n" " --with-c-toolchain=PACKAGE=TOOLCHAIN\n" @@ -6386,10 +6496,9 @@ msgid "" msgstr "" "\n" " --with-c-toolchain=PAQUETE=CADENA_DE_CONSTRUCCIÓN\n" -" construye PAQUETE y quienes dependan de él\n" -" con CADENA_DE_CONSTRUCCIÓN" +" construye PAQUETE y quienes dependan de él con CADENA_DE_CONSTRUCCIÓN" -#: guix/transformations.scm:892 +#: guix/transformations.scm:899 msgid "" "\n" " --with-debug-info=PACKAGE\n" @@ -6397,10 +6506,9 @@ msgid "" msgstr "" "\n" " --with-debug-info=PAQUETE\n" -" construye PAQUETE y conserva su información\n" -" de depuración" +" construye PAQUETE y conserva su información de depuración" -#: guix/transformations.scm:895 +#: guix/transformations.scm:902 msgid "" "\n" " --without-tests=PACKAGE\n" @@ -6410,16 +6518,15 @@ msgstr "" " --without-tests=PAQUETE\n" " construye PAQUETE sin ejecutar sus pruebas" -#: guix/transformations.scm:901 +#: guix/transformations.scm:908 msgid "" "\n" " --help-transform list package transformation options not shown here" msgstr "" "\n" -" --help-transform enumera las opciones de transformación no\n" -" mostradas aquí" +" --help-transform enumera las opciones de transformación no mostradas aquí" -#: guix/transformations.scm:950 +#: guix/transformations.scm:957 #, scheme-format msgid "transformation '~a' had no effect on ~a~%" msgstr "la transformación '~a' no tuvo efecto en ~a~%" @@ -6932,12 +7039,12 @@ msgid "~a: invalid Texinfo markup~%" msgstr "~a: margen de Texinfo no válido~%" # FUZZY -#: guix/ui.scm:1873 +#: guix/ui.scm:1876 #, scheme-format msgid "invalid syntax: ~a~%" msgstr "sintaxis erronea: ~a~%" -#: guix/ui.scm:1882 +#: guix/ui.scm:1885 #, scheme-format msgid "Generation ~a\t~a" msgstr "Generación ~a\t~a" @@ -6947,7 +7054,7 @@ msgstr "Generación ~a\t~a" #. usual way of presenting dates in your locale. #. See https://www.gnu.org/software/guile/manual/html_node/SRFI_002d19-Date-to-string.html #. for details. -#: guix/ui.scm:1892 +#: guix/ui.scm:1895 #, scheme-format msgid "~b ~d ~Y ~T" msgstr "~d ~b ~Y ~T" @@ -6955,38 +7062,38 @@ msgstr "~d ~b ~Y ~T" #. TRANSLATORS: The word "current" here is an adjective for #. "Generation", as in "current generation". Use the appropriate #. gender where applicable. -#: guix/ui.scm:1898 +#: guix/ui.scm:1901 #, scheme-format msgid "~a\t(current)~%" msgstr "~a\t(actual)~%" # FUZZY -#: guix/ui.scm:1932 +#: guix/ui.scm:1935 #, scheme-format msgid "cannot lock profile ~a: ~a~%" msgstr "no se puede bloquear el perfil ~a: ~a~%" -#: guix/ui.scm:1934 +#: guix/ui.scm:1937 #, scheme-format msgid "profile ~a is locked by another process~%" msgstr "el perfil '~a' está bloqueado por otro proceso~%" -#: guix/ui.scm:1963 +#: guix/ui.scm:1966 #, scheme-format msgid "switched from generation ~a to ~a~%" msgstr "se pasó de la generación ~a a la ~a~%" -#: guix/ui.scm:1979 +#: guix/ui.scm:1982 #, scheme-format msgid "deleting ~a~%" msgstr "borrando ~a~%" -#: guix/ui.scm:2010 +#: guix/ui.scm:2013 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "Pruebe «guix --help» para obtener más información.~%" -#: guix/ui.scm:2102 +#: guix/ui.scm:2105 msgid "" "Usage: guix OPTION | COMMAND ARGS...\n" "Run COMMAND with ARGS, if given.\n" @@ -6994,7 +7101,7 @@ msgstr "" "Utilización: guix OPCIÓN | ARGUMENTOS DE COMANDO...\n" "Ejecuta COMANDO con ARGUMENTOS, si se dan.\n" -#: guix/ui.scm:2105 +#: guix/ui.scm:2108 msgid "" "\n" " -h, --help display this helpful text again and exit" @@ -7002,7 +7109,7 @@ msgstr "" "\n" " -h, --help muestra este texto de ayuda otra vez y sale" -#: guix/ui.scm:2107 +#: guix/ui.scm:2110 msgid "" "\n" " -V, --version display version and copyright information and exit" @@ -7011,26 +7118,26 @@ msgstr "" " -V, --version muestra información de la versión y del copyright y sale" # FUZZY -#: guix/ui.scm:2112 +#: guix/ui.scm:2115 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "ORDEN debe ser una de las enumeradas a continuación:\n" -#: guix/ui.scm:2154 +#: guix/ui.scm:2157 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "guix: ~a: orden no encontrada~%" -#: guix/ui.scm:2156 +#: guix/ui.scm:2159 #, scheme-format msgid "Did you mean @code{~a}?" msgstr "¿Quería decir @code{~a}?" -#: guix/ui.scm:2190 +#: guix/ui.scm:2193 #, scheme-format msgid "guix: missing command name~%" msgstr "guix: falta el nombre de la orden~%" -#: guix/ui.scm:2198 +#: guix/ui.scm:2201 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "guix: opción '~a' no reconocida~%" @@ -7301,16 +7408,15 @@ msgid "" "@option{--disable-authentication}, at the risk of running unauthenticated and\n" "thus potentially malicious code." msgstr "" -"Añada la presentación (introduction)\n" +"Añada la presentación perdida\n" "en su archivo de canales para corregir la incidencia. De manera\n" -"alternativa, puede proporcionar la opcion @option{--disable-authentication},\n" -"con el riesgo de ejecutar código sin verificar y por lo tanto\n" -"potencialmente malicioso." +"alternativa, puede proporcionar la opción @option{--disable-authentication}, con el riesgo de ejecutar código sin verificar\n" +" y por lo tanto potencialmente malicioso." #: guix/channels.scm:414 #, scheme-format msgid "channel authentication disabled~%" -msgstr "verificación de canales desactivada" +msgstr "verificación de canales desactivada~%" #: guix/channels.scm:439 #, scheme-format @@ -7381,22 +7487,22 @@ msgstr "no hay hash SHA256 para el origen" msgid "unsupported manifest format" msgstr "formato de manifiesto no disponible" -#: guix/profiles.scm:2242 +#: guix/profiles.scm:2247 #, scheme-format msgid "while creating directory `~a': ~a" msgstr "durante la creación del directorio «~a»: ~a" -#: guix/profiles.scm:2247 +#: guix/profiles.scm:2252 #, scheme-format msgid "Please create the @file{~a} directory, with you as the owner." msgstr "Por favor cree el directorio @file{~a}, siendo usted la propietaria." -#: guix/profiles.scm:2256 +#: guix/profiles.scm:2261 #, scheme-format msgid "directory `~a' is not owned by you" msgstr "usted no es la propietaria del directorio «~a»" -#: guix/profiles.scm:2260 +#: guix/profiles.scm:2265 #, scheme-format msgid "Please change the owner of @file{~a} to user ~s." msgstr "Por favor, asigne la propiedad de @file{~a} a la cuenta ~s." @@ -8114,11 +8220,16 @@ msgstr "--no-cwd no se puede usar sin --container~%" msgid "'--profile' cannot be used with package options~%" msgstr "'--profile' no se puede usar con opciones de paquete~%" -#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:275 +#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:261 #, scheme-format msgid "no packages specified; creating an empty environment~%" msgstr "no se especificó ningún paquete; creando un entorno vacío~%" +#: guix/scripts/environment.scm:979 +#, scheme-format +msgid "'--check' is unnecessary when using '--container'; doing nothing~%" +msgstr "'--check' no es necesario cuando se utiliza '--container'; no hacer nada~%" + #: guix/scripts/home/import.scm:179 msgid "" ";; This \"home-environment\" file can be passed to 'guix home reconfigure'\n" @@ -8133,7 +8244,7 @@ msgstr "" ";; necesita capturar los canales que están siendo usados, como son devueltos por \"guix describe\".\n" ";; Vea la sección \"Replicando Guix\" en el manual.\n" -#: guix/scripts/home.scm:65 +#: guix/scripts/home.scm:66 msgid "" "Usage: guix home [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the home environment declared in FILE according to ACTION.\n" @@ -8143,43 +8254,43 @@ msgstr "" "Construye el sistema operativo declarado en ARCHIVO de acuerdo con ACCIÓN.\n" "Algunas ACCIONES permiten PARÁMETROS adicionales.\n" -#: guix/scripts/home.scm:71 +#: guix/scripts/home.scm:72 msgid " search search for existing service types\n" msgstr " search busca tipos de servicio existentes\n" -#: guix/scripts/home.scm:73 +#: guix/scripts/home.scm:74 msgid " reconfigure switch to a new home environment configuration\n" msgstr " reconfigure cambia a una nueva configuración de entorno home\n" -#: guix/scripts/home.scm:75 +#: guix/scripts/home.scm:76 msgid " roll-back switch to the previous home environment configuration\n" msgstr " roll-back cambia a la configuración previa del entorno home\n" -#: guix/scripts/home.scm:77 +#: guix/scripts/home.scm:78 msgid " describe describe the current home environment\n" msgstr " describe describe el entorno home actual\n" -#: guix/scripts/home.scm:79 +#: guix/scripts/home.scm:80 msgid " list-generations list the home environment generations\n" msgstr " list-generations lista las generaciones de entorno home\n" -#: guix/scripts/home.scm:81 +#: guix/scripts/home.scm:82 msgid " switch-generation switch to an existing home environment configuration\n" msgstr " switch-generation conmuta a una configuración de entorno home existente\n" -#: guix/scripts/home.scm:83 +#: guix/scripts/home.scm:84 msgid " delete-generations delete old home environment generations\n" msgstr " delete-generations borra generaciones antiguas del entorno home\n" -#: guix/scripts/home.scm:85 +#: guix/scripts/home.scm:86 msgid " build build the home environment without installing anything\n" msgstr " build construye el entorno home sin instalar nada\n" -#: guix/scripts/home.scm:87 +#: guix/scripts/home.scm:88 msgid " import generates a home environment definition from dotfiles\n" msgstr " import genera una definición de entorno home desde archivos de puntos\n" -#: guix/scripts/home.scm:91 +#: guix/scripts/home.scm:92 msgid "" "\n" " -e, --expression=EXPR consider the home-environment EXPR evaluates to\n" @@ -8189,17 +8300,17 @@ msgstr "" " -e, --expression=EXPR considera evaluar EXPR del entorno home\n" " en lugar de leer ARCHIVO cuando es aplicable" -#: guix/scripts/home.scm:196 +#: guix/scripts/home.scm:210 #, scheme-format msgid "'~a' does not return a home environment ~%" msgstr "'~a' no devuelve un entorno home~%" -#: guix/scripts/home.scm:280 +#: guix/scripts/home.scm:293 #, scheme-format msgid "'~a' populated with all the Home configuration files~%" msgstr "'~a' poblado con todos los archivos de configuración Home~%" -#: guix/scripts/home.scm:282 +#: guix/scripts/home.scm:295 #, scheme-format msgid "" "Run @command{guix home reconfigure ~a/home-configuration.scm} to effectively\n" @@ -8208,22 +8319,22 @@ msgstr "" "Ejecuta @command{guix home reconfigure ~a/home-configuration.scm} para desplegar\n" "efectivamente el entorno home descrito por esos archivos.\n" -#: guix/scripts/home.scm:289 +#: guix/scripts/home.scm:302 #, scheme-format msgid "no home environment generation, nothing to describe~%" msgstr "ninguna generación del entorno home, nada que describir~%" -#: guix/scripts/home.scm:358 +#: guix/scripts/home.scm:371 #, scheme-format msgid "guix home: missing command name~%" msgstr "guix home: falta el nombre del comando~%" -#: guix/scripts/home.scm:360 +#: guix/scripts/home.scm:373 #, scheme-format msgid "Try 'guix home --help' for more information.~%" msgstr "Pruebe 'guix home --help' para más información.~%" -#: guix/scripts/home.scm:528 +#: guix/scripts/home.scm:541 #, scheme-format msgid "cannot switch to home environment generation '~a'~%" msgstr "no se pudo conmutar a la generación del entorno home'~a'~%" @@ -8271,7 +8382,7 @@ msgstr "" #: guix/scripts/import/cpan.scm:83 guix/scripts/import/crate.scm:97 #: guix/scripts/import/egg.scm:100 guix/scripts/import/gem.scm:98 -#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:100 +#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:101 #, scheme-format msgid "failed to download meta-data for package '~a'~%" msgstr "falló al descargar los metadatos para el paquete '~a'~%" @@ -8371,7 +8482,7 @@ msgstr "" "\n" " --pin-versions utiliza la versión exacta de las dependencias de un módulo" -#: guix/scripts/import/go.scm:117 +#: guix/scripts/import/go.scm:118 #, scheme-format msgid "failed to download meta-data for module '~a'.~%" msgstr "falló al descargar los metadatos para el módulo '~a'.~%" @@ -8433,180 +8544,182 @@ msgid "" "\n" " -t, --no-test-dependencies don't include test-only dependencies" msgstr "" +"\n" +" -t, --no-test-dependencies no incluye las dependencias de sólo prueba" #: guix/scripts/import/hackage.scm:67 guix/scripts/import/stackage.scm:56 -#, fuzzy msgid "" "\n" " -V, --version display version information and exit" msgstr "" "\n" -" -V, --version muestra información de la versión y termina" +" -V, --version muestra información de la versión y sale" #: guix/scripts/import/hackage.scm:146 #, scheme-format msgid "failed to import cabal file from standard input~%" -msgstr "" +msgstr "fallo al importar el archivo cabal desde la entrada estándar~%" #: guix/scripts/import/hackage.scm:154 guix/scripts/import/stackage.scm:126 -#, fuzzy, scheme-format +#, scheme-format msgid "failed to download cabal file for package '~a'~%" -msgstr "no se pudo descargar la descripción para el paquete '~a'~%" +msgstr "fallo al descargar el archivo cabal para el paquete '~a'~%" #: guix/scripts/import/json.scm:50 -#, fuzzy msgid "" "Usage: guix import json PACKAGE-FILE\n" "Import and convert the JSON package definition in PACKAGE-FILE.\n" msgstr "" -"Uso: guix import cran NOMBRE-DE-PAQUETE\n" -"Importa y convierte el paquete CRAN con NOMBRE-DE-PAQUETE.\n" +"Uso: guix import cran ARCHIVO-PAQUETE\n" +"Importa y convierte la definición del paquete JSON en ARCHIVO-PAQUETE.\n" #: guix/scripts/import/json.scm:92 -#, fuzzy, scheme-format +#, scheme-format msgid "invalid JSON in file '~a'~%" -msgstr "firma no válida para '~a'~%" +msgstr "JSON no válido en archivo '~a'~%" #: guix/scripts/import/json.scm:94 -#, fuzzy, scheme-format +#, scheme-format msgid "failed to access '~a': ~a~%" -msgstr "no se pudo ejecutar '~a': ~a~%" +msgstr "fallo al acceder '~a': ~a~%" #: guix/scripts/import/opam.scm:43 -#, fuzzy msgid "" "Usage: guix import opam PACKAGE-NAME\n" "Import and convert the opam package for PACKAGE-NAME.\n" msgstr "" -"Uso: guix import cran NOMBRE-DE-PAQUETE\n" -"Importa y convierte el paquete CRAN con NOMBRE-DE-PAQUETE.\n" +"Uso: guix import opam NOMBRE-DE-PAQUETE\n" +"Importa y convierte el paquete opam para NOMBRE-DE-PAQUETE.\n" #: guix/scripts/import/opam.scm:49 -#, fuzzy msgid "" "\n" " --repo import packages from this opam repository (name, URL or local path)\n" " can be used more than once" msgstr "" "\n" -" -r, --recursive importa paquetes recursivamente" +" --repo importa paquetes desde este repositorio opam (nombre, URL o ruta local)\n" +" se puede usar más de una vez" #: guix/scripts/import/pypi.scm:44 -#, fuzzy msgid "" "Usage: guix import pypi PACKAGE-NAME\n" "Import and convert the PyPI package for PACKAGE-NAME.\n" msgstr "" -"Uso: guix import cran NOMBRE-DE-PAQUETE\n" -"Importa y convierte el paquete CRAN con NOMBRE-DE-PAQUETE.\n" +"Uso: guix import pypi NOMBRE-DE-PAQUETE\n" +"Importa y convierte el paquete PyPI para NOMBRE-DE-PAQUETE.\n" #: guix/scripts/import/stackage.scm:45 -#, fuzzy msgid "" "Usage: guix import stackage PACKAGE-NAME\n" "Import and convert the LTS Stackage package for PACKAGE-NAME.\n" msgstr "" -"Uso: guix import cran NOMBRE-DE-PAQUETE\n" -"Importa y convierte el paquete CRAN con NOMBRE-DE-PAQUETE.\n" +"Uso: guix import opam NOMBRE-DE-PAQUETE\n" +"Importa y convierte el paquete LTS Stackage para NOMBRE-DE-PAQUETE.\n" #: guix/scripts/import/stackage.scm:47 -#, fuzzy msgid "" "\n" " -l VERSION, --lts-version=VERSION\n" " specify the LTS version to use" msgstr "" "\n" -" -S, --switch-generation=PATRÓN\n" -" cambia a una generación que corresponda con PATRÓN" +" -l VERSION, --lts-version=VERSION\n" +" especifica la versión LTS a usar" #: guix/scripts/import/texlive.scm:43 -#, fuzzy msgid "" "Usage: guix import texlive PACKAGE-NAME\n" "Import and convert the Texlive package for PACKAGE-NAME.\n" msgstr "" -"Uso: guix import cran NOMBRE-DE-PAQUETE\n" -"Importa y convierte el paquete CRAN con NOMBRE-DE-PAQUETE.\n" +"Uso: guix import texlive NOMBRE-DE-PAQUETE\n" +"Importa y convierte el paquete Texlive para NOMBRE-DE-PAQUETE.\n" + +#: guix/scripts/import/texlive.scm:84 +#, scheme-format +msgid "failed to import package '~a'~%" +msgstr "fallo al importar el paquete '~a'~%" #: guix/scripts/offload.scm:130 -#, fuzzy, scheme-format +#, scheme-format msgid "The 'system' field is deprecated, please use 'systems' instead.~%" -msgstr "'~a' está obsoleto, use '~a'~%" +msgstr "El campo 'system' es obsoleto, use en su lugar 'systems'.~%" #: guix/scripts/offload.scm:138 msgid "" "The build-machine object lacks a value for its 'systems'\n" "field." msgstr "" +"El objeto de la máquina de construcción carece de un valor para su campo \n" +"'systems'." #: guix/scripts/offload.scm:179 -#, fuzzy, scheme-format +#, scheme-format msgid "'~a' did not return a list of build machines; ignoring it~%" -msgstr "'~a' no ha devuelto una lista de canales~%" +msgstr "'~a' no ha devuelto una lista de las máquinas de construcción; ignorarlo~%" #: guix/scripts/offload.scm:190 -#, fuzzy, scheme-format +#, scheme-format msgid "failed to open machine file '~a': ~a~%" -msgstr "no se pudo ejecutar '~a': ~a~%" +msgstr "fallo al abrir el archivo máquina '~a': ~a~%" #: guix/scripts/offload.scm:197 -#, fuzzy, scheme-format +#, scheme-format msgid "failed to load machine file '~a': ~s~%" -msgstr "no se pudo cargar '~a': ~a~%" +msgstr "fallo al cargar el archivo máquina '~a': ~s~%" #: guix/scripts/offload.scm:207 -#, fuzzy, scheme-format +#, scheme-format msgid "failed to load SSH private key from '~a': ~a" -msgstr "no se pudo cargar el par de claves en '~a': ~a~%" +msgstr "fallo al cargar la clave privada SSH desde '~a': ~a" #: guix/scripts/offload.scm:251 -#, fuzzy, scheme-format +#, scheme-format msgid "SSH public key authentication failed for '~a': ~a~%" -msgstr "la verificación de la firma ha fallado para '~a' (clave: ~a)~%" +msgstr "fallo la autenticación de la clave pública SSH por '~a': ~a~%" #: guix/scripts/offload.scm:262 -#, fuzzy, scheme-format +#, scheme-format msgid "failed to connect to '~a': ~a~%" -msgstr "no se pudo conectar a «~a»: ~a~%" +msgstr "fallo al conectar a '~a': ~a~%" #: guix/scripts/offload.scm:371 -#, fuzzy, scheme-format +#, scheme-format msgid "derivation '~a' offloaded to '~a' failed: ~a~%" -msgstr "la descarga desde '~a' ha fallado: ~a, ~s~%" +msgstr "derivación '~a' descargada a '~a' fallo: ~a~%" #: guix/scripts/offload.scm:387 #, scheme-format msgid "build failure may have been caused by lack of free disk space on '~a'~%" -msgstr "" +msgstr "el fallo en la construcción puede estar causado por la falta de espacio de disco libre en '~a'~%" #: guix/scripts/offload.scm:556 #, scheme-format msgid "timeout expired while offloading '~a'~%" -msgstr "" +msgstr "el tiempo de espera expiró mientras se descargaba '~a'~%" #: guix/scripts/offload.scm:574 msgid "Guile-SSH lacks zlib support" -msgstr "" +msgstr "Guile-SSH carece de soporte zlib" #: guix/scripts/offload.scm:575 msgid "data transfers will *not* be compressed!" -msgstr "" +msgstr "¡los datos transferidos *no* serán comprimidos!" #: guix/scripts/offload.scm:640 #, scheme-format msgid "'~a' is running GNU Guile ~a~%" -msgstr "" +msgstr "'~a' está ejecutando GNU Guile ~a~%" #: guix/scripts/offload.scm:647 -#, fuzzy, scheme-format +#, scheme-format msgid "failed to run 'guix repl' on '~a'~%" -msgstr "no se pudo registrar '~a' bajo '~a'~%" +msgstr "fallo al ejecutar 'guix repl' sobre '~a'~%" #: guix/scripts/offload.scm:654 #, scheme-format msgid "(guix) module not usable on remote host '~a'" -msgstr "" +msgstr "(guix) módulo no utilizable sobre el host remoto '~a'" #: guix/scripts/offload.scm:664 #, scheme-format @@ -8616,52 +8729,52 @@ msgstr "Guix se puede usar en '~a' (la prueba devolvió ~s)~%" #: guix/scripts/offload.scm:667 #, scheme-format msgid "failed to talk to guix-daemon on '~a' (test returned ~s)~%" -msgstr "" +msgstr "fallo al hablar con el demonio guix sobre '~a' (prueba devuelta ~s)~%" #: guix/scripts/offload.scm:687 -#, fuzzy, scheme-format +#, scheme-format msgid "'~a' successfully imported '~a'~%" -msgstr "~a desplegada satisfactoriamente~%" +msgstr "'~a' importado con éxito '~a'~%" #: guix/scripts/offload.scm:689 #, scheme-format msgid "'~a' was not properly imported on '~a'~%" -msgstr "" +msgstr "'~a' no se importó apropiadamente sobre '~a'~%" #: guix/scripts/offload.scm:699 -#, fuzzy, scheme-format +#, scheme-format msgid "successfully imported '~a' from '~a'~%" -msgstr "~a desplegada satisfactoriamente~%" +msgstr "importado con éxito '~a' desde '~a'~%" #: guix/scripts/offload.scm:701 -#, fuzzy, scheme-format +#, scheme-format msgid "failed to import '~a' from '~a'~%" -msgstr "no se pudo registrar '~a' bajo '~a'~%" +msgstr "fallo al importar '~a' desde '~a'~%" #: guix/scripts/offload.scm:716 #, scheme-format msgid "testing ~a build machines defined in '~a'...~%" -msgstr "" +msgstr "probando ~a máquinas de construcción definidas en '~a'...~%" #: guix/scripts/offload.scm:740 #, scheme-format msgid "getting status of ~a build machines defined in '~a'...~%" -msgstr "" +msgstr "obteniendo estatus de ~a máquinas de construcción definidas en '~a'...~%" #: guix/scripts/offload.scm:748 -#, fuzzy, scheme-format +#, scheme-format msgid "failed to run 'guix repl' on machine '~a'~%" -msgstr "no se pudo registrar '~a' bajo '~a'~%" +msgstr "fallo para ejecutar 'guix repl' sobre máquina '~a'~%" #: guix/scripts/offload.scm:759 #, scheme-format msgid "machine '~a' is ~a seconds behind~%" -msgstr "" +msgstr "la máquina '~a' está ~a segundos detrás~%" #: guix/scripts/offload.scm:824 -#, fuzzy, scheme-format +#, scheme-format msgid "invalid request line: ~s~%" -msgstr "parámetro no válido: ~a~%" +msgstr "línea de petición no válida: ~a~%" #: guix/scripts/offload.scm:853 #, scheme-format @@ -8670,6 +8783,9 @@ msgid "" "Process build offload requests written on the standard input, possibly\n" "offloading builds to the machines listed in '~a'.~%" msgstr "" +"Uso: guix offload SYSTEM MAX-SILENT-TIME PRINT-BUILD-TRACE? BUILD-TIMEOUT\n" +"Procesa las peticiones de descarga de construcción escritas en la entrada estándar, posiblemente\n" +"descargando construcciones a las máquinas listadas en '~a'.~%" # FUZZY #: guix/scripts/offload.scm:858 @@ -8681,35 +8797,35 @@ msgstr "" "Esta herramienta está hecha para uso interno en 'guix-daemon'.\n" #: guix/scripts/offload.scm:862 -#, fuzzy, scheme-format +#, scheme-format msgid "invalid arguments: ~{~s ~}~%" -msgstr "parámetro no válido: ~a~%" +msgstr "argumentos no válidos: ~{~s ~}~%" #: guix/scripts/perform-download.scm:60 -#, fuzzy, scheme-format +#, scheme-format msgid "~a: missing URL~%" -msgstr "~a: URL no válida~%" +msgstr "~a: URL desaparecida~%" # FUZZY #: guix/scripts/perform-download.scm:68 -#, fuzzy, scheme-format +#, scheme-format msgid "~a is not a fixed-output derivation~%" -msgstr "~s no denota una duración~%" +msgstr "~a no es una derivación de salida fija~%" #: guix/scripts/perform-download.scm:97 #, scheme-format msgid "refusing to run with elevated privileges (UID ~a)~%" -msgstr "" +msgstr "rechazando ejecutar con privilegios elevados (UID ~a)~%" #: guix/scripts/perform-download.scm:134 #, scheme-format msgid "fixed-output derivation and output file name expected~%" -msgstr "" +msgstr "se esperan derivación de salida fija y nombre de archivo de salida~%" #: guix/scripts/refresh.scm:76 #, scheme-format msgid "~a: invalid selection; expected `core' or `non-core'~%" -msgstr "" +msgstr "~a: selección no válida; se espera `core' o `non-core'~%" #: guix/scripts/refresh.scm:144 msgid "" @@ -8720,16 +8836,20 @@ msgid "" "update all the packages of the distribution, or the subset thereof\n" "specified with `--select'.\n" msgstr "" +"Uso: guix refresh [OPCIÓN]... [PAQUETE]...\n" +"Actualiza las definiciones de paquete para coincidir con la última versión anterior.\n" +"\n" +"Cuando se da PAQUETE..., actualiza sólo los paquetes especificados. De otro modo\n" +"actualiza todos los paquetes de la distribución o el subconjunto de la misma\n" +"especificado con `--select'.\n" #: guix/scripts/refresh.scm:152 -#, fuzzy msgid "" "\n" " -u, --update update source files in place" msgstr "" "\n" -" -S, --source construye las derivaciones de fuentes de\n" -" los paquetes" +" -u, --update actualiza los archivos fuente en su lugar" #: guix/scripts/refresh.scm:154 msgid "" @@ -8737,15 +8857,17 @@ msgid "" " -s, --select=SUBSET select all the packages in SUBSET, one of\n" " `core' or `non-core'" msgstr "" +"\n" +" -s, --select=SUBCONJUNTO selecciona todos los paquetes en el SUBCONJUNTO, uno de\n" +" `core' o `non-core'" #: guix/scripts/refresh.scm:157 -#, fuzzy msgid "" "\n" " -m, --manifest=FILE select all the packages from the manifest in FILE" msgstr "" "\n" -" -m, --manifest=ARCHIVO crea un empaquetado con el manifiesto de ARCHIVO" +" -m, --manifest=ARCHIVO selecciona todos los paquetes desde el manifiesto en ARCHIVO" #: guix/scripts/refresh.scm:159 msgid "" @@ -8753,15 +8875,17 @@ msgid "" " -t, --type=UPDATER,... restrict to updates from the specified updaters\n" " (e.g., 'gnu')" msgstr "" +"\n" +" -t, --type=ACTUALIZADOR,... restringe las actualizaciones desde los actualizadores especificados\n" +" (e.g., 'gnu')" #: guix/scripts/refresh.scm:162 -#, fuzzy msgid "" "\n" " -L, --list-updaters list available updaters and exit" msgstr "" "\n" -" --list-backends enumera los motores de grafo disponibles" +" -L, --list-updaters lista los actualizadores disponibles y sale" #: guix/scripts/refresh.scm:164 msgid "" @@ -8769,63 +8893,67 @@ msgid "" " -l, --list-dependent list top-level dependent packages that would need to\n" " be rebuilt as a result of upgrading PACKAGE..." msgstr "" +"\n" +" -l, --list-dependent lista los paquetes dependientes de alto nivel que sería necesario\n" +" reconstruir como resultado de la actualización de PAQUETE..." #: guix/scripts/refresh.scm:167 -#, fuzzy msgid "" "\n" " -r, --recursive check the PACKAGE and its inputs for upgrades" msgstr "" "\n" -" -r, --recursive calcula recursivamente el hash en ARCHIVO" +" -r, --recursive comprueba el PAQUETE y sus entradas para actualizaciones" #: guix/scripts/refresh.scm:169 msgid "" "\n" " --list-transitive list all the packages that PACKAGE depends on" msgstr "" +"\n" +" --list-transitive lista todos los paquetes de los que depende este PAQUETE" #: guix/scripts/refresh.scm:172 -#, fuzzy msgid "" "\n" " --keyring=FILE use FILE as the keyring of upstream OpenPGP keys" msgstr "" "\n" -" --public-key=ARCHIVO\n" -" usa ARCHIVO como clave pública para firmas" +" --keyring=ARCHIVO utiliza ARCHIVO como el llavero de las claves OpenPGP anteriores" #: guix/scripts/refresh.scm:174 msgid "" "\n" " --key-server=HOST use HOST as the OpenPGP key server" msgstr "" +"\n" +" --key-server=HOST utiliza HOST como el servidor de clave OpenPGP" #: guix/scripts/refresh.scm:176 msgid "" "\n" " --gpg=COMMAND use COMMAND as the GnuPG 2.x command" msgstr "" +"\n" +" --gpg=COMANDO utiliza COMANDO como el comando GnuPG 2.x" #: guix/scripts/refresh.scm:184 -#, fuzzy msgid "" "\n" " --load-path=DIR prepend DIR to the package module search path" msgstr "" "\n" -" -L, --load-path=DIR añade DIR al inicio de la ruta de búsqueda de\n" -" módulos de paquetes" +" --load-path=DIR antepone DIR a la ruta de búsqueda del módulo de paquete" #: guix/scripts/refresh.scm:277 #, scheme-format msgid "~a: no such updater~%" -msgstr "" +msgstr "~a: no hay tal actualizador~%" #: guix/scripts/refresh.scm:281 -#, fuzzy, scheme-format +#, scheme-format msgid "Available updaters:~%" -msgstr "Comprobaciones disponibles:~%" +msgstr "Actualizadores disponibles:~%" #. TRANSLATORS: The parenthetical expression here is rendered #. like "(42% coverage)" and denotes the fraction of packages @@ -8838,80 +8966,80 @@ msgstr " - ~a: ~a (~2,1f% de cobertura)~%" #: guix/scripts/refresh.scm:302 #, scheme-format msgid "~2,1f% of the packages are covered by these updaters.~%" -msgstr "" +msgstr "~2,1f% de los paquetes están cubiertos por estos actualizadores.~%" # FUZZY #: guix/scripts/refresh.scm:308 -#, fuzzy, scheme-format +#, scheme-format msgid "no updater for ~a~%" -msgstr "ningún registro de construcción para '~a'~%" +msgstr "sin actualizador para ~a~%" #: guix/scripts/refresh.scm:328 -#, fuzzy, scheme-format +#, scheme-format msgid "~a: updating from version ~a to version ~a...~%" -msgstr "~A: paquete no encontrado para versión ~a~%" +msgstr "~a: actualizado de versión ~a a versión ~a...~%" #: guix/scripts/refresh.scm:349 #, scheme-format msgid "~a: consider adding this input: ~a~%" -msgstr "" +msgstr "~a: considere añadir esta entrada: ~a~%" #: guix/scripts/refresh.scm:352 #, scheme-format msgid "~a: consider adding this native input: ~a~%" -msgstr "" +msgstr "~a: considere añadir está entrada nativa: ~a~%" #: guix/scripts/refresh.scm:355 #, scheme-format msgid "~a: consider adding this propagated input: ~a~%" -msgstr "" +msgstr "~a: considere añadir esta entrada propagada:~a~%" #: guix/scripts/refresh.scm:358 #, scheme-format msgid "~a: consider removing this input: ~a~%" -msgstr "" +msgstr "~a: considere quitar esta entrada: ~a~%" #: guix/scripts/refresh.scm:361 #, scheme-format msgid "~a: consider removing this native input: ~a~%" -msgstr "" +msgstr "~a: considere quitar esta entrada nativa: ~a~%" #: guix/scripts/refresh.scm:364 #, scheme-format msgid "~a: consider removing this propagated input: ~a~%" -msgstr "" +msgstr "~a: considere quitar esta entrada propagada: ~a~%" #: guix/scripts/refresh.scm:369 #, scheme-format msgid "~a: version ~a could not be downloaded and authenticated; not updating~%" -msgstr "" +msgstr "~a: versión ~a no pudo ser descargada y autenticada; no se actualizó~%" #: guix/scripts/refresh.scm:386 -#, fuzzy, scheme-format +#, scheme-format msgid "~a would be upgraded from ~a to ~a~%" -msgstr "puede actualizarse a ~a" +msgstr "~a se actualizaría de ~a a ~a~%" #: guix/scripts/refresh.scm:392 -#, fuzzy, scheme-format +#, scheme-format msgid "~a is already the latest version of ~a~%" -msgstr "no se pudo evaluar la expresión '~a':~%" +msgstr "~a ya es la última versión de ~a~%" #: guix/scripts/refresh.scm:398 #, scheme-format msgid "~a is greater than the latest known version of ~a (~a)~%" -msgstr "" +msgstr "~a es más grande que la última versión conocida de ~a (~a)~%" #: guix/scripts/refresh.scm:409 #, scheme-format msgid "'~a' updater failed to determine available releases for ~a~%" -msgstr "" +msgstr "'~a' fallo en el actualizador para determinar las versiones disponibles para ~a~%" #: guix/scripts/refresh.scm:448 #, scheme-format msgid "No dependents other than itself: ~{~a~}~%" msgid_plural "No dependents other than themselves: ~{~a~^ ~}~%" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Sin dependiente aparte de si mismo: ~{~a~}~%" +msgstr[1] "Sin dependientes aparte de ellos mismos: ~{~a~^ ~}~%" #: guix/scripts/refresh.scm:455 #, scheme-format @@ -8922,18 +9050,18 @@ msgstr "Un solo paquete dependiente: ~a~%" #, scheme-format msgid "Building the following ~d package would ensure ~d dependent packages are rebuilt: ~{~a~^ ~}~%" msgid_plural "Building the following ~d packages would ensure ~d dependent packages are rebuilt: ~{~a~^ ~}~%" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Construyendo el siguiente ~d paquete aseguraría que ~d paquetes dependientes son reconstruidos: ~{~a~^ ~}~%" +msgstr[1] "Construyendo los siguientes ~d paquetes aseguraría que ~d paquetes dependientes son reconstruidos: ~{~a~^ ~}~%" #: guix/scripts/refresh.scm:483 #, scheme-format msgid "~a depends on the following ~d packages: ~{~a~^ ~}~%." -msgstr "" +msgstr "~a depende de los siguientes ~d paquetes: ~{~a~^ ~}~%." #: guix/scripts/refresh.scm:487 -#, fuzzy, scheme-format +#, scheme-format msgid "The following ~d packages all are dependent packages: ~{~a~^ ~}~%" -msgstr "Se instalará el siguiente paquete:~%~{~a~%~}~%" +msgstr "Los siguientes ~d paquetes son todos paquetes dependientes: ~{~a~^ ~}~%" #: guix/scripts/repl.scm:70 msgid "" @@ -8941,30 +9069,34 @@ msgid "" "In the Guix execution environment, run FILE as a Guile script with\n" "command-line arguments ARGS. If no FILE is given, start a Guile REPL.\n" msgstr "" +"Uso: guix repl [OPCIONES...] [-- ARCHIVO ARGUMENTOS...]\n" +"En el entorno de ejecución Guix, ejecuta ARCHIVO como secuencia de comandos Guile con\n" +"los argumentos de línea de comandos ARGUMENTOS. Si no se da ARCHIVO, inicia un Guile REPL.\n" #: guix/scripts/repl.scm:73 -#, fuzzy msgid "" "\n" " -t, --type=TYPE start a REPL of the given TYPE" msgstr "" "\n" -" -t, --type=TIPO representa nodos del TIPO proporcionado" +" -t, --type=TIPO inicia un REPL del TIPO proporcionado" #: guix/scripts/repl.scm:75 msgid "" "\n" " --listen=ENDPOINT listen to ENDPOINT instead of standard input" msgstr "" +"\n" +" --listen=ENDPOINT escucha en ENDPOINT en lugar de en la entrada estándar" #: guix/scripts/repl.scm:77 -#, fuzzy, scheme-format +#, scheme-format msgid "" "\n" " -q inhibit loading of ~/.guile" msgstr "" "\n" -" -h, --help muestra este mensaje de ayuda y termina" +" -q inhibe la carga de ~/.guile" #: guix/scripts/repl.scm:106 #, scheme-format @@ -8977,9 +9109,9 @@ msgid "~A: unsupported protocol family~%" msgstr "~A: familia de protocolos no implementada~%" #: guix/scripts/repl.scm:125 -#, fuzzy, scheme-format +#, scheme-format msgid "accepted connection~%" -msgstr "aceptada conexión desde ~a~%" +msgstr "aceptada conexión desde~%" #: guix/scripts/repl.scm:126 #, scheme-format @@ -8987,78 +9119,74 @@ msgid "accepted connection from ~a~%" msgstr "aceptada conexión desde ~a~%" #: guix/scripts/repl.scm:137 -#, fuzzy, scheme-format +#, scheme-format msgid "connection closed~%" -msgstr "~a: la conexión ha fallado: ~a~%" +msgstr "conexión cerrada~%" #: guix/scripts/repl.scm:210 #, scheme-format msgid "~a: unknown type of REPL~%" msgstr "~a: tipo de REPL desconocido~%" -#: guix/scripts/shell.scm:46 +#: guix/scripts/shell.scm:48 msgid "" "Usage: guix shell [OPTION] PACKAGES... [-- COMMAND...]\n" "Build an environment that includes PACKAGES and execute COMMAND or an\n" "interactive shell in that environment.\n" msgstr "" +"Uso: guix environment [OPCIÓN]... PAQUETES... [-- COMANDO...]\n" +"Construye un entorno que incluye PAQUETES y ejecuta\n" +"COMANDO o un shell interactivo en ese entorno.\n" -#: guix/scripts/shell.scm:52 -#, fuzzy -#| msgid "" -#| "\n" -#| " -d, --derivations return the derivation paths of the given packages" +#: guix/scripts/shell.scm:54 msgid "" "\n" " -D, --development include the development inputs of the next package" msgstr "" "\n" -" -d, --derivations devuelve las rutas de las derivaciones de los\n" -" paquetes proporcionados" +" -D, --development incluye el desarrollo de entrada del siguiente paquete" -#: guix/scripts/shell.scm:54 -#, fuzzy +#: guix/scripts/shell.scm:56 msgid "" "\n" " -f, --file=FILE add to the environment the package FILE evaluates to" msgstr "" "\n" -" -f, --file=ARCHIVO construye el paquete o la derivación a la que el\n" -" código en ARCHIVO evalúa" +" -f, --file=ARCHIVO añade al entorno el paquete ARCHIVO para evaluar" -#: guix/scripts/shell.scm:56 -#, fuzzy +#: guix/scripts/shell.scm:58 msgid "" "\n" " -q inhibit loading of 'guix.scm' and 'manifest.scm'" msgstr "" "\n" -" -h, --help muestra este mensaje de ayuda y termina" +" -q inhibe la carga de 'guix.scm' y 'manifest.scm'" -#: guix/scripts/shell.scm:58 +#: guix/scripts/shell.scm:60 msgid "" "\n" " --rebuild-cache rebuild cached environment, if any" msgstr "" +"\n" +" --rebuild-cache reconstruye el entorno almacenado en caché, si lo hay" -#: guix/scripts/shell.scm:199 +#: guix/scripts/shell.scm:201 #, scheme-format msgid "ignoring invalid file name: '~a'~%" msgstr "ignorando nombre de archivo no válido: '~a'~%" # FUZZY -#: guix/scripts/shell.scm:280 -#, fuzzy, scheme-format -#| msgid "unloading service '~a'...~%" +#: guix/scripts/shell.scm:266 +#, scheme-format msgid "loading environment from '~a'...~%" -msgstr "descargando servicio '~a'...~%" +msgstr "cargando entorno desde '~a'...~%" -#: guix/scripts/shell.scm:286 +#: guix/scripts/shell.scm:272 #, scheme-format msgid "not loading '~a' because not authorized to do so~%" -msgstr "" +msgstr "no se carga '~a' porque no está autorizado para hacerlo~%" -#: guix/scripts/shell.scm:288 +#: guix/scripts/shell.scm:274 #, scheme-format msgid "" "To allow automatic loading of\n" @@ -9069,99 +9197,117 @@ msgid "" "echo ~a >> ~a\n" "@end example\n" msgstr "" +"Para permitir la carga automática de\n" +"@file{~a} cuando ejecuta @command{guix shell}, debe autorizar explícitamente su\n" +"directorio, al igual que:\n" +"\n" +"@example\n" +"echo ~a >> ~a\n" +"@end example\n" -#: guix/scripts/shell.scm:386 +#: guix/scripts/shell.scm:431 msgid "" "Consider passing the @option{--check} option once\n" "to make sure your shell does not clobber environment variables." msgstr "" +"Considere pasar la opción @option{--check} una vez que\n" +"asegure que su shell no choque con las variables de entorno." -#: guix/scripts/style.scm:241 -#, fuzzy, scheme-format -#| msgid "~s: invalid G-expression input~%" +#: guix/scripts/style.scm:499 +#, scheme-format msgid "~a: complex expression, bailing out~%" -msgstr "~s: entrada de expresión-G no válida~%" +msgstr "~a: expresión compleja, rescatando~%" -#: guix/scripts/style.scm:259 -#, fuzzy, scheme-format -#| msgid "module name ~a does not match file name '~a'~%" +#: guix/scripts/style.scm:517 +#, scheme-format msgid "~a: input label '~a' does not match package name, bailing out~%" -msgstr "el nombre de módulo ~a no corresponde con el nombre de archivo '~a'~%" +msgstr "~a: etiqueta de entrada '~a' no coincide con nombre de paquete, rescatando~%" -#: guix/scripts/style.scm:264 +#: guix/scripts/style.scm:522 #, scheme-format msgid "~a: non-trivial input, bailing out~%" -msgstr "" +msgstr "~a: entrada no trivial, rescatando~%" -#: guix/scripts/style.scm:288 -#, fuzzy, scheme-format -#| msgid "~s: invalid G-expression input~%" +#: guix/scripts/style.scm:546 +#, scheme-format msgid "~a: input expression is too short~%" -msgstr "~s: entrada de expresión-G no válida~%" +msgstr "~a: expresión de entrada demasiado corta~%" -#: guix/scripts/style.scm:380 -#, fuzzy, scheme-format -#| msgid "~a: unsupported kind of search path~%" +#: guix/scripts/style.scm:638 +#, scheme-format msgid "~a: unsupported input style, bailing out~%" -msgstr "~a: tipo de ruta de búsqueda no implementado~%" +msgstr "~a: estilo de entrada no soportado, rescatando~%" -#: guix/scripts/style.scm:392 +#: guix/scripts/style.scm:650 #, scheme-format msgid "would be edited~%" -msgstr "" +msgstr "seria editado~%" -#: guix/scripts/style.scm:482 -#, fuzzy, scheme-format -#| msgid "~a: invalid symlink specification~%" +#: guix/scripts/style.scm:721 +#, scheme-format +msgid "no definition location for package ~a~%" +msgstr "sin ubicación de definición para el paquete ~a~%" + +#: guix/scripts/style.scm:767 +#, scheme-format +msgid "~a: unknown styling~%" +msgstr "~a: estilismo desconocido~%" + +#: guix/scripts/style.scm:774 +#, scheme-format msgid "~a: invalid input simplification policy~%" -msgstr "~a: especificación de enlace simbólico no válida~%" +msgstr "~a: entrada de simplificación de política no válida~%" -#: guix/scripts/style.scm:496 -#, fuzzy -#| msgid "" -#| "Usage: guix archive [OPTION]... PACKAGE...\n" -#| "Export/import one or more packages from/to the store.\n" +#: guix/scripts/style.scm:788 msgid "" "Usage: guix style [OPTION]... [PACKAGE]...\n" "Update package definitions to the latest style.\n" msgstr "" -"Uso: guix archive [OPCIÓN]... PAQUETE...\n" -"Exportar/importar uno o mas paquetes desde/a el almacen.\n" +"Uso: guix style [OPCIÓN]... PAQUETE...\n" +"Actualiza las definiciones de paquete al último estilo.\n" -#: guix/scripts/style.scm:498 -#, fuzzy -#| msgid "" -#| "\n" -#| " -n, --dry-run show what would be pulled and built" +#: guix/scripts/style.scm:790 +msgid "" +"\n" +" -S, --styling=RULE apply RULE, a styling rule" +msgstr "" +"\n" +" -S, --styling=REGLA aplica REGLA, una regla de estilismo" + +#: guix/scripts/style.scm:793 msgid "" "\n" " -n, --dry-run display files that would be edited but do nothing" msgstr "" "\n" -" -n, --dry-run muestra qué sería obtenido y construido" +" -n, --dry-run muestra archivos que serían editados pero no hace nada" -#: guix/scripts/style.scm:504 +#: guix/scripts/style.scm:799 msgid "" "\n" " --input-simplification=POLICY\n" " follow POLICY for package input simplification, one\n" " of 'silent', 'safe', or 'always'" msgstr "" +"\n" +" --input-simplification=POLÍTICA\n" +" sigue POLÍTICA para simplificación de entrada del paquete, una\n" +" de 'silent', 'safe' o 'always'" #: guix/scripts/system/reconfigure.scm:317 -#, fuzzy, scheme-format +#, scheme-format msgid "aborting reconfiguration because commit ~a of channel '~a' is not a descendant of ~a" -msgstr "abortando la actualización del canal '~a' a la revisión ~a, la cual no desciende de ~a" +msgstr "abortando la reconfiguración porque acometer '~a' de canal ~a, no desciende de ~a" #: guix/scripts/system/reconfigure.scm:377 -#, fuzzy, scheme-format +#, scheme-format msgid "cannot determine provenance for current system~%" -msgstr "no se pudo determinar la proveniencia del paquete ~a~%" +msgstr "no se pudo determinar la proveniencia para el sistema actual~%" #: guix/scripts/system/reconfigure.scm:379 -#, fuzzy, scheme-format +#, scheme-format msgid "cannot determine provenance of ~a~%" -msgstr "no se pudo determinar la proveniencia del paquete ~a~%" +msgstr "no se pudo determinar la proveniencia de ~a~%" #: nix/nix-daemon/guix-daemon.cc:66 msgid "guix-daemon -- perform derivation builds and store accesses" @@ -9267,7 +9413,7 @@ msgstr "usa el tipo de compresión especificado para los registros de construcci #: nix/nix-daemon/guix-daemon.cc:134 msgid "use substitute servers discovered on the local network" -msgstr "" +msgstr "usar los servidores sustitutos descubiertos en la red local" #: nix/nix-daemon/guix-daemon.cc:139 msgid "disable automatic file \"deduplication\" in the store" @@ -9298,6 +9444,16 @@ msgstr "escucha conexiones en SOCKET" msgid "produce debugging output" msgstr "produce salida de depuración" +#~ msgid "Please select a disk." +#~ msgstr "Por favor, seleccione un disco." + +#~ msgid "" +#~ "Failed to import package ~s.\n" +#~ "reason: ~s.~%" +#~ msgstr "" +#~ "Fallo al importar paquete ~s.\n" +#~ "razón: ~s.~%" + #~ msgid "Other services" #~ msgstr "Otros servicios" diff --git a/po/guix/fi.po b/po/guix/fi.po index 8c32d79e4e..06e602a8c4 100644 --- a/po/guix/fi.po +++ b/po/guix/fi.po @@ -2,14 +2,14 @@ # Copyright (C) YEAR the authors of Guix (msgids) and the following authors (msgstr) # This file is distributed under the same license as the GNU guix package. # Nikolay Korotkiy , 2021. -# Jan Kuparinen , 2021. +# Jan Kuparinen , 2021, 2022. #: guix/diagnostics.scm:157 msgid "" msgstr "" "Project-Id-Version: GNU guix\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" -"PO-Revision-Date: 2021-12-23 17:16+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" +"PO-Revision-Date: 2022-01-25 15:16+0000\n" "Last-Translator: Jan Kuparinen \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -51,37 +51,37 @@ msgstr "" msgid "Try adding @code{(use-service-modules ~a)}." msgstr "" -#: gnu/packages.scm:96 +#: gnu/packages.scm:97 #, scheme-format msgid "~a: patch not found" msgstr "" -#: gnu/packages.scm:480 gnu/packages.scm:521 +#: gnu/packages.scm:481 gnu/packages.scm:522 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "" -#: gnu/packages.scm:481 gnu/packages.scm:522 +#: gnu/packages.scm:482 gnu/packages.scm:523 #, scheme-format msgid "choosing ~a@~a from ~a~%" msgstr "" -#: gnu/packages.scm:486 guix/scripts/package.scm:216 +#: gnu/packages.scm:487 guix/scripts/package.scm:218 #, scheme-format msgid "package '~a' has been superseded by '~a'~%" msgstr "" -#: gnu/packages.scm:493 gnu/packages.scm:510 +#: gnu/packages.scm:494 gnu/packages.scm:511 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "" -#: gnu/packages.scm:494 gnu/packages.scm:511 +#: gnu/packages.scm:495 gnu/packages.scm:512 #, scheme-format msgid "~A: unknown package~%" msgstr "~A: tuntematon paketti~%" -#: gnu/packages.scm:550 +#: gnu/packages.scm:551 #, scheme-format msgid "package `~a' lacks output `~a'~%" msgstr "" @@ -269,14 +269,14 @@ msgid "" "@code{SIGKILL}." msgstr "" -#: gnu/home/services.scm:127 +#: gnu/home/services.scm:128 msgid "" "Build the home environment top-level directory,\n" "which in turn refers to everything the home environment needs: its\n" "packages, configuration files, activation script, and so on." msgstr "" -#: gnu/home/services.scm:158 +#: gnu/home/services.scm:159 #, scheme-format msgid "" "This is the @dfn{home profile} and can be found in\n" @@ -285,21 +285,21 @@ msgid "" "@code{home-environment} record." msgstr "" -#: gnu/home/services.scm:180 +#: gnu/home/services.scm:181 #, scheme-format msgid "duplicate definition for `~a' environment variable ~%" msgstr "" -#: gnu/home/services.scm:242 +#: gnu/home/services.scm:243 msgid "Set the environment variables." msgstr "" -#: gnu/home/services.scm:253 +#: gnu/home/services.scm:254 #, scheme-format msgid "duplicate '~a' entry for files/" msgstr "" -#: gnu/home/services.scm:277 +#: gnu/home/services.scm:278 #, scheme-format msgid "" "Configuration files for programs that\n" @@ -308,7 +308,7 @@ msgstr "" #. TRANSLATORS: 'on-first-login' is the name of a service and #. shouldn't be translated -#: gnu/home/services.scm:308 +#: gnu/home/services.scm:309 msgid "" "XDG_RUNTIME_DIR doesn't exists, on-first-login script\n" "won't execute anything. You can check if xdg runtime directory exists,\n" @@ -316,13 +316,13 @@ msgid "" "script by running '$HOME/.guix-home/on-first-login'" msgstr "" -#: gnu/home/services.scm:328 +#: gnu/home/services.scm:329 msgid "" "Run gexps on first user login. Can be\n" "extended with one gexp." msgstr "" -#: gnu/home/services.scm:391 +#: gnu/home/services.scm:392 msgid "" "Run gexps to activate the current\n" "generation of home environment and update the state of the home\n" @@ -331,33 +331,33 @@ msgid "" "with one gexp, but many times, and all gexps must be idempotent." msgstr "" -#: gnu/home/services.scm:472 +#: gnu/home/services.scm:473 #, scheme-format msgid "" "Comparing ~a and\n" "~10t~a..." msgstr "" -#: gnu/home/services.scm:474 +#: gnu/home/services.scm:475 #, scheme-format msgid " done (~a)\n" msgstr "" #. TRANSLATORS: 'on-change' is the name of a service type, it #. probably shouldn't be translated. -#: gnu/home/services.scm:483 +#: gnu/home/services.scm:484 msgid "" "Evaluating on-change gexps.\n" "\n" msgstr "" -#: gnu/home/services.scm:485 +#: gnu/home/services.scm:486 msgid "" "On-change gexps evaluation finished.\n" "\n" msgstr "" -#: gnu/home/services.scm:499 +#: gnu/home/services.scm:500 msgid "" "G-expressions to run if the specified files have changed since the\n" "last generation. The extension should be a list of lists where the\n" @@ -365,7 +365,7 @@ msgid "" "changed, and the second element is the G-expression to be evaluated." msgstr "" -#: gnu/home/services.scm:519 +#: gnu/home/services.scm:520 msgid "" "Store provenance information about the home environment in the home\n" "environment itself: the channels used when building the home\n" @@ -383,7 +383,7 @@ msgstr "" #: gnu/home/services/symlink-manager.scm:215 #: gnu/home/services/symlink-manager.scm:223 msgid " done\n" -msgstr "" +msgstr " valmis\n" #: gnu/home/services/symlink-manager.scm:154 msgid "" @@ -618,12 +618,12 @@ msgstr "" msgid "Updater for ELPA packages" msgstr "" -#: guix/import/github.scm:170 +#: guix/import/github.scm:175 #, scheme-format msgid "~a is unreachable (~a)~%" msgstr "" -#: guix/import/github.scm:260 +#: guix/import/github.scm:274 msgid "Updater for GitHub packages" msgstr "" @@ -659,24 +659,27 @@ msgstr "" msgid "failed to determine latest release of GNU ~a" msgstr "" -#: guix/import/go.scm:569 +#: guix/import/go.scm:571 #, scheme-format msgid "unsupported vcs type '~a' for package '~a'" msgstr "" -#: guix/import/go.scm:647 +#: guix/import/go.scm:594 #, scheme-format -msgid "" -"Failed to import package ~s.\n" -"reason: ~s could not be fetched: HTTP error ~a (~s).\n" -"This package and its dependencies won't be imported.~%" +msgid "version ~a of ~a is not available~%" +msgstr "" + +#: guix/import/go.scm:597 +#, scheme-format +msgid "Pick one of the following available versions:~{ ~a~}." msgstr "" -#: guix/import/go.scm:656 +#: guix/import/go.scm:671 #, scheme-format msgid "" "Failed to import package ~s.\n" -"reason: ~s.~%" +"reason: ~s could not be fetched: HTTP error ~a (~s).\n" +"This package and its dependencies won't be imported.~%" msgstr "" #: guix/import/minetest.scm:178 @@ -772,77 +775,99 @@ msgstr "" msgid "Updater for OPAM packages" msgstr "" -#: guix/import/pypi.scm:230 +#: guix/import/pypi.scm:233 msgid "Could not extract requirement name in spec:" msgstr "" -#: guix/import/pypi.scm:290 +#: guix/import/pypi.scm:293 #, scheme-format msgid "parse-requires.txt reached an unexpected condition on line ~a~%" msgstr "" -#: guix/import/pypi.scm:356 +#: guix/import/pypi.scm:359 #, scheme-format msgid "Failed to extract file: ~a from wheel.~%" msgstr "" -#: guix/import/pypi.scm:385 +#: guix/import/pypi.scm:388 #, scheme-format msgid "Cannot guess requirements from source archive: no requires.txt file found.~%" msgstr "" -#: guix/import/pypi.scm:390 +#: guix/import/pypi.scm:393 #, scheme-format msgid "Unsupported archive format; cannot determine package dependencies from source archive: ~a~%" msgstr "" -#: guix/import/pypi.scm:489 +#: guix/import/pypi.scm:434 +#, scheme-format +msgid "project name ~a does not appear verbatim in the PyPI URI~%" +msgstr "" + +#: guix/import/pypi.scm:437 +#, scheme-format +msgid "" +"The PyPI URI is: @url{~a}. You should review the\n" +"pypi-uri declaration in the generated package. You may need to replace ~s with\n" +"a substring of the PyPI URI that identifies the package." +msgstr "" + +#: guix/import/pypi.scm:505 #, scheme-format msgid "no source release for pypi package ~a ~a~%" msgstr "" -#: guix/import/pypi.scm:554 +#: guix/import/pypi.scm:509 +#, scheme-format +msgid "" +"This indicates that the\n" +"package is available on PyPI, but only as a \"wheel\" containing binaries, not\n" +"source. To build it from source, refer to the upstream repository at\n" +"@uref{~a}." +msgstr "" + +#: guix/import/pypi.scm:579 msgid "Updater for PyPI packages" msgstr "" -#: gnu/installer.scm:214 +#: gnu/installer.scm:217 msgid "Locale" msgstr "Maa-asetus" -#: gnu/installer.scm:230 gnu/installer/newt/timezone.scm:58 +#: gnu/installer.scm:233 gnu/installer/newt/timezone.scm:58 msgid "Timezone" msgstr "Aikavyöhyke" -#: gnu/installer.scm:247 +#: gnu/installer.scm:250 msgid "Keyboard mapping selection" msgstr "" -#: gnu/installer.scm:256 gnu/installer/newt/hostname.scm:26 +#: gnu/installer.scm:259 gnu/installer/newt/hostname.scm:26 msgid "Hostname" msgstr "Koneen nimi" -#: gnu/installer.scm:265 +#: gnu/installer.scm:268 msgid "Network selection" msgstr "Verkon valinta" -#: gnu/installer.scm:272 +#: gnu/installer.scm:275 msgid "Substitute server discovery" msgstr "" -#: gnu/installer.scm:279 gnu/installer/newt/user.scm:68 -#: gnu/installer/newt/user.scm:205 +#: gnu/installer.scm:282 gnu/installer/newt/user.scm:67 +#: gnu/installer/newt/user.scm:204 msgid "User creation" msgstr "Käyttäjän luominen" -#: gnu/installer.scm:287 +#: gnu/installer.scm:290 msgid "Services" msgstr "Palvelut" -#: gnu/installer.scm:298 +#: gnu/installer.scm:301 msgid "Partitioning" msgstr "Osiointi" -#: gnu/installer.scm:305 gnu/installer/newt/final.scm:53 +#: gnu/installer.scm:308 gnu/installer/newt/final.scm:53 msgid "Configuration file" msgstr "Asetustiedosto" @@ -854,19 +879,78 @@ msgstr "" msgid "Unable to find expected regexp." msgstr "" -#: gnu/installer/newt.scm:52 +#: gnu/installer/newt.scm:58 msgid "Press for installation parameters." msgstr "" -#: gnu/installer/newt.scm:65 -#, scheme-format -msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +#: gnu/installer/newt.scm:68 +msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. You may choose to exit or create a dump archive." msgstr "" -#: gnu/installer/newt.scm:68 +#: gnu/installer/newt.scm:71 msgid "Unexpected problem" msgstr "" +#: gnu/installer/newt.scm:75 +msgid "Dump" +msgstr "" + +#: gnu/installer/newt.scm:76 gnu/installer/newt/ethernet.scm:79 +#: gnu/installer/newt/keymap.scm:56 gnu/installer/newt/locale.scm:43 +#: gnu/installer/newt/network.scm:65 gnu/installer/newt/network.scm:82 +#: gnu/installer/newt/page.scm:315 gnu/installer/newt/page.scm:679 +#: gnu/installer/newt/page.scm:763 gnu/installer/newt/page.scm:828 +#: gnu/installer/newt/partition.scm:54 gnu/installer/newt/partition.scm:90 +#: gnu/installer/newt/partition.scm:125 gnu/installer/newt/partition.scm:140 +#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 +#: gnu/installer/newt/partition.scm:706 gnu/installer/newt/partition.scm:764 +#: gnu/installer/newt/partition.scm:775 gnu/installer/newt/services.scm:124 +#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/wifi.scm:206 +msgid "Exit" +msgstr "Lopeta" + +#: gnu/installer/newt.scm:82 +#, scheme-format +msgid "The dump archive was created as ~a. Would you like to send this archive to the Guix servers?" +msgstr "" + +#: gnu/installer/newt.scm:84 +msgid "Dump archive created" +msgstr "" + +#: gnu/installer/newt.scm:88 +#, scheme-format +msgid "The dump was uploaded as ~a. Please report it by email to ~a." +msgstr "" + +#: gnu/installer/newt.scm:90 +msgid "The dump could not be uploaded." +msgstr "" + +#: gnu/installer/newt.scm:93 +msgid "Dump upload result" +msgstr "" + +#: gnu/installer/newt.scm:132 +#, scheme-format +msgid "External command ~s exited with code ~a" +msgstr "" + +#: gnu/installer/newt.scm:135 +#, scheme-format +msgid "External command ~s terminated by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:138 +#, scheme-format +msgid "External command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:140 +msgid "External command error" +msgstr "" + #: gnu/installer/newt/ethernet.scm:66 msgid "No ethernet service available, please try again." msgstr "" @@ -875,59 +959,45 @@ msgstr "" msgid "No service" msgstr "" -#: gnu/installer/newt/ethernet.scm:76 +#: gnu/installer/newt/ethernet.scm:74 msgid "Please select an ethernet network." msgstr "" -#: gnu/installer/newt/ethernet.scm:77 +#: gnu/installer/newt/ethernet.scm:75 msgid "Ethernet connection" msgstr "" -#: gnu/installer/newt/ethernet.scm:81 gnu/installer/newt/keymap.scm:56 -#: gnu/installer/newt/locale.scm:43 gnu/installer/newt/network.scm:63 -#: gnu/installer/newt/network.scm:84 gnu/installer/newt/page.scm:309 -#: gnu/installer/newt/page.scm:673 gnu/installer/newt/page.scm:758 -#: gnu/installer/newt/partition.scm:56 gnu/installer/newt/partition.scm:91 -#: gnu/installer/newt/partition.scm:126 gnu/installer/newt/partition.scm:141 -#: gnu/installer/newt/partition.scm:638 gnu/installer/newt/partition.scm:661 -#: gnu/installer/newt/partition.scm:707 gnu/installer/newt/partition.scm:765 -#: gnu/installer/newt/partition.scm:776 gnu/installer/newt/services.scm:130 -#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:204 -#: gnu/installer/newt/wifi.scm:206 -msgid "Exit" -msgstr "Lopeta" - #: gnu/installer/newt/final.scm:46 #, scheme-format msgid "We're now ready to proceed with the installation! A system configuration file has been generated, it is displayed below. This file will be available as '~a' on the installed system. The new system will be created from this file once you've pressed OK. This will take a few minutes." msgstr "" -#: gnu/installer/newt/final.scm:70 +#: gnu/installer/newt/final.scm:68 msgid "Installation complete" msgstr "Asennus valmistui" -#: gnu/installer/newt/final.scm:71 gnu/installer/newt/parameters.scm:45 +#: gnu/installer/newt/final.scm:69 gnu/installer/newt/parameters.scm:45 #: gnu/installer/newt/welcome.scm:145 msgid "Reboot" msgstr "Käynnistä uudelleen" -#: gnu/installer/newt/final.scm:72 +#: gnu/installer/newt/final.scm:70 msgid "Congratulations! Installation is now complete. You may remove the device containing the installation image and press the button to reboot." msgstr "" -#: gnu/installer/newt/final.scm:86 +#: gnu/installer/newt/final.scm:84 msgid "Installation failed" msgstr "Asennus epäonnistui" -#: gnu/installer/newt/final.scm:87 +#: gnu/installer/newt/final.scm:85 msgid "Resume" msgstr "Jatka" -#: gnu/installer/newt/final.scm:88 +#: gnu/installer/newt/final.scm:86 msgid "Restart the installer" msgstr "" -#: gnu/installer/newt/final.scm:89 +#: gnu/installer/newt/final.scm:87 msgid "The final system installation step failed. You can resume from a specific step, or restart the installer." msgstr "" @@ -955,9 +1025,9 @@ msgstr "" msgid "Installation parameters" msgstr "" -#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:74 -#: gnu/installer/newt/locale.scm:63 gnu/installer/newt/locale.scm:78 -#: gnu/installer/newt/locale.scm:94 gnu/installer/newt/partition.scm:595 +#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:72 +#: gnu/installer/newt/locale.scm:61 gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:88 gnu/installer/newt/partition.scm:594 #: gnu/installer/newt/timezone.scm:64 msgid "Back" msgstr "Takaisin" @@ -978,16 +1048,16 @@ msgstr "" msgid "Please choose your keyboard layout. It will be used during the install process, and for the installed system. Non-Latin layouts can be toggled with Alt+Shift. You can switch to a different layout at any time from the parameters menu." msgstr "" -#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:62 -#: gnu/installer/newt/page.scm:308 +#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/page.scm:314 msgid "Continue" msgstr "Jatka" -#: gnu/installer/newt/keymap.scm:67 +#: gnu/installer/newt/keymap.scm:65 msgid "Variant" msgstr "" -#: gnu/installer/newt/keymap.scm:70 +#: gnu/installer/newt/keymap.scm:68 msgid "Please choose a variant for your keyboard layout." msgstr "" @@ -999,35 +1069,35 @@ msgstr "" msgid "Choose the language to use for the installation process and for the installed system." msgstr "" -#: gnu/installer/newt/locale.scm:57 +#: gnu/installer/newt/locale.scm:55 msgid "Locale location" msgstr "" -#: gnu/installer/newt/locale.scm:60 +#: gnu/installer/newt/locale.scm:58 msgid "Choose a territory for this language." msgstr "" -#: gnu/installer/newt/locale.scm:71 +#: gnu/installer/newt/locale.scm:67 msgid "Locale codeset" msgstr "" -#: gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:70 msgid "Choose the locale encoding." msgstr "" -#: gnu/installer/newt/locale.scm:86 +#: gnu/installer/newt/locale.scm:80 msgid "Locale modifier" msgstr "" -#: gnu/installer/newt/locale.scm:89 +#: gnu/installer/newt/locale.scm:83 msgid "Choose your locale's modifier. The most frequent modifier is euro. It indicates that you want to use Euro as the currency symbol." msgstr "" -#: gnu/installer/newt/locale.scm:190 +#: gnu/installer/newt/locale.scm:181 msgid "No location" msgstr "" -#: gnu/installer/newt/locale.scm:217 +#: gnu/installer/newt/locale.scm:208 msgid "No modifier" msgstr "" @@ -1043,330 +1113,334 @@ msgstr "" msgid "Abort" msgstr "" -#: gnu/installer/newt/network.scm:61 gnu/installer/newt/network.scm:80 +#: gnu/installer/newt/network.scm:63 gnu/installer/newt/network.scm:78 msgid "Internet access" msgstr "" -#: gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/network.scm:66 msgid "The install process requires Internet access but no network devices were found. Do you want to continue anyway?" msgstr "" -#: gnu/installer/newt/network.scm:78 +#: gnu/installer/newt/network.scm:76 msgid "The install process requires Internet access. Please select a network device." msgstr "" -#: gnu/installer/newt/network.scm:103 +#: gnu/installer/newt/network.scm:99 msgid "Powering technology" msgstr "" -#: gnu/installer/newt/network.scm:104 +#: gnu/installer/newt/network.scm:100 #, scheme-format msgid "Waiting for technology ~a to be powered." msgstr "" -#: gnu/installer/newt/network.scm:128 +#: gnu/installer/newt/network.scm:139 msgid "Checking connectivity" msgstr "" -#: gnu/installer/newt/network.scm:129 +#: gnu/installer/newt/network.scm:140 msgid "Waiting for Internet access establishment..." msgstr "" -#: gnu/installer/newt/network.scm:139 -msgid "The selected network does not provide access to the Internet, please try again." +#: gnu/installer/newt/network.scm:150 +msgid "The selected network does not provide access to the Internet and the Guix substitute server, please try again." msgstr "" -#: gnu/installer/newt/network.scm:141 gnu/installer/newt/wifi.scm:108 +#: gnu/installer/newt/network.scm:152 gnu/installer/newt/wifi.scm:108 msgid "Connection error" msgstr "Yhteysvirhe" -#: gnu/installer/newt/page.scm:198 +#: gnu/installer/newt/page.scm:204 #, scheme-format msgid "Connecting to ~a, please wait." msgstr "" -#: gnu/installer/newt/page.scm:199 +#: gnu/installer/newt/page.scm:205 msgid "Connection in progress" msgstr "" -#: gnu/installer/newt/page.scm:218 gnu/installer/newt/user.scm:60 +#: gnu/installer/newt/page.scm:224 gnu/installer/newt/user.scm:59 msgid "Show" msgstr "Näytä" -#: gnu/installer/newt/page.scm:225 gnu/installer/newt/page.scm:672 -#: gnu/installer/newt/page.scm:757 gnu/installer/newt/partition.scm:458 -#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 -#: gnu/installer/newt/partition.scm:699 gnu/installer/newt/user.scm:66 -#: gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/page.scm:231 gnu/installer/newt/page.scm:678 +#: gnu/installer/newt/page.scm:762 gnu/installer/newt/partition.scm:457 +#: gnu/installer/newt/partition.scm:636 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:698 gnu/installer/newt/user.scm:65 +#: gnu/installer/newt/user.scm:202 msgid "OK" msgstr "OK" -#: gnu/installer/newt/page.scm:251 +#: gnu/installer/newt/page.scm:257 msgid "Please enter a non empty input." msgstr "" -#: gnu/installer/newt/page.scm:252 gnu/installer/newt/user.scm:123 +#: gnu/installer/newt/page.scm:258 gnu/installer/newt/user.scm:122 msgid "Empty input" msgstr "" -#: gnu/installer/newt/page.scm:760 +#: gnu/installer/newt/page.scm:765 msgid "Edit" msgstr "Muokkaa" -#: gnu/installer/newt/partition.scm:47 +#: gnu/installer/newt/page.scm:825 +msgid "Ok" +msgstr "" + +#: gnu/installer/newt/partition.scm:45 msgid "Everything is one partition" msgstr "" -#: gnu/installer/newt/partition.scm:48 +#: gnu/installer/newt/partition.scm:46 msgid "Separate /home partition" msgstr "" -#: gnu/installer/newt/partition.scm:50 +#: gnu/installer/newt/partition.scm:48 msgid "Please select a partitioning scheme." msgstr "" -#: gnu/installer/newt/partition.scm:51 +#: gnu/installer/newt/partition.scm:49 msgid "Partition scheme" msgstr "" #. TRANSLATORS: The ~{ and ~} format specifiers are used to iterate the list #. of device names of the user partitions that will be formatted. -#: gnu/installer/newt/partition.scm:65 +#: gnu/installer/newt/partition.scm:63 #, scheme-format msgid "We are about to write the configured partition table to the disk and format the partitions listed below. Their data will be lost. Do you wish to continue?~%~%~{ - ~a~%~}" msgstr "" -#: gnu/installer/newt/partition.scm:71 +#: gnu/installer/newt/partition.scm:69 msgid "Format disk?" msgstr "" -#: gnu/installer/newt/partition.scm:74 +#: gnu/installer/newt/partition.scm:72 msgid "Partition formatting is in progress, please wait." msgstr "" -#: gnu/installer/newt/partition.scm:75 +#: gnu/installer/newt/partition.scm:73 msgid "Preparing partitions" msgstr "" -#: gnu/installer/newt/partition.scm:86 -msgid "Please select a disk." -msgstr "Valitse levyasema." +#: gnu/installer/newt/partition.scm:84 +msgid "Please select a disk. The installation device as well as the small devices are filtered." +msgstr "" -#: gnu/installer/newt/partition.scm:87 +#: gnu/installer/newt/partition.scm:86 msgid "Disk" msgstr "Levy" -#: gnu/installer/newt/partition.scm:102 +#: gnu/installer/newt/partition.scm:101 msgid "Select a new partition table type. Be careful, all data on the disk will be lost." msgstr "" -#: gnu/installer/newt/partition.scm:104 +#: gnu/installer/newt/partition.scm:103 msgid "Partition table" msgstr "Osiotaulukko" -#: gnu/installer/newt/partition.scm:121 +#: gnu/installer/newt/partition.scm:120 msgid "Please select a partition type." msgstr "" -#: gnu/installer/newt/partition.scm:122 +#: gnu/installer/newt/partition.scm:121 msgid "Partition type" msgstr "Osion tyyppi" -#: gnu/installer/newt/partition.scm:132 +#: gnu/installer/newt/partition.scm:131 msgid "Please select the file-system type for this partition." msgstr "" -#: gnu/installer/newt/partition.scm:133 +#: gnu/installer/newt/partition.scm:132 msgid "File-system type" msgstr "Tiedostojärjestelmän tyyppi" -#: gnu/installer/newt/partition.scm:150 +#: gnu/installer/newt/partition.scm:149 msgid "Primary partitions count exceeded." msgstr "" -#: gnu/installer/newt/partition.scm:151 gnu/installer/newt/partition.scm:156 -#: gnu/installer/newt/partition.scm:161 +#: gnu/installer/newt/partition.scm:150 gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:160 msgid "Creation error" msgstr "" -#: gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:154 msgid "Extended partition creation error." msgstr "" -#: gnu/installer/newt/partition.scm:160 +#: gnu/installer/newt/partition.scm:159 msgid "Logical partition creation error." msgstr "" -#: gnu/installer/newt/partition.scm:174 +#: gnu/installer/newt/partition.scm:173 #, scheme-format msgid "Please enter the password for the encryption of partition ~a (label: ~a)." msgstr "" -#: gnu/installer/newt/partition.scm:176 gnu/installer/newt/wifi.scm:92 +#: gnu/installer/newt/partition.scm:175 gnu/installer/newt/wifi.scm:92 msgid "Password required" msgstr "" -#: gnu/installer/newt/partition.scm:181 +#: gnu/installer/newt/partition.scm:180 #, scheme-format msgid "Please confirm the password for the encryption of partition ~a (label: ~a)." msgstr "" -#: gnu/installer/newt/partition.scm:183 gnu/installer/newt/user.scm:160 +#: gnu/installer/newt/partition.scm:182 gnu/installer/newt/user.scm:159 msgid "Password confirmation required" msgstr "" -#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 +#: gnu/installer/newt/partition.scm:194 gnu/installer/newt/user.scm:167 msgid "Password mismatch, please try again." msgstr "" -#: gnu/installer/newt/partition.scm:196 gnu/installer/newt/user.scm:169 +#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 msgid "Password error" msgstr "" -#: gnu/installer/newt/partition.scm:282 +#: gnu/installer/newt/partition.scm:281 msgid "Please enter the partition gpt name." msgstr "" -#: gnu/installer/newt/partition.scm:283 +#: gnu/installer/newt/partition.scm:282 msgid "Partition name" msgstr "" -#: gnu/installer/newt/partition.scm:313 +#: gnu/installer/newt/partition.scm:312 msgid "Please enter the encrypted label" msgstr "" -#: gnu/installer/newt/partition.scm:314 +#: gnu/installer/newt/partition.scm:313 msgid "Encryption label" msgstr "" -#: gnu/installer/newt/partition.scm:331 +#: gnu/installer/newt/partition.scm:330 #, scheme-format msgid "Please enter the size of the partition. The maximum size is ~a." msgstr "" -#: gnu/installer/newt/partition.scm:333 +#: gnu/installer/newt/partition.scm:332 msgid "Partition size" msgstr "" -#: gnu/installer/newt/partition.scm:351 +#: gnu/installer/newt/partition.scm:350 msgid "The percentage can not be superior to 100." msgstr "" -#: gnu/installer/newt/partition.scm:352 gnu/installer/newt/partition.scm:357 -#: gnu/installer/newt/partition.scm:362 +#: gnu/installer/newt/partition.scm:351 gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:361 msgid "Size error" msgstr "" -#: gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:355 msgid "The requested size is incorrectly formatted, or too large." msgstr "" -#: gnu/installer/newt/partition.scm:361 +#: gnu/installer/newt/partition.scm:360 msgid "The request size is superior to the maximum size." msgstr "" -#: gnu/installer/newt/partition.scm:381 +#: gnu/installer/newt/partition.scm:380 msgid "Please enter the desired mounting point for this partition. Leave this field empty if you don't want to set a mounting point." msgstr "" -#: gnu/installer/newt/partition.scm:383 +#: gnu/installer/newt/partition.scm:382 msgid "Mounting point" msgstr "" -#: gnu/installer/newt/partition.scm:447 +#: gnu/installer/newt/partition.scm:446 #, scheme-format msgid "Creating ~a partition starting at ~a of ~a." msgstr "" -#: gnu/installer/newt/partition.scm:449 +#: gnu/installer/newt/partition.scm:448 #, scheme-format msgid "You are currently editing partition ~a." msgstr "" -#: gnu/installer/newt/partition.scm:452 +#: gnu/installer/newt/partition.scm:451 msgid "Partition creation" msgstr "" -#: gnu/installer/newt/partition.scm:453 +#: gnu/installer/newt/partition.scm:452 msgid "Partition edit" msgstr "" -#: gnu/installer/newt/partition.scm:634 +#: gnu/installer/newt/partition.scm:633 #, scheme-format msgid "Are you sure you want to delete everything on disk ~a?" msgstr "" -#: gnu/installer/newt/partition.scm:636 +#: gnu/installer/newt/partition.scm:635 msgid "Delete disk" msgstr "" -#: gnu/installer/newt/partition.scm:651 +#: gnu/installer/newt/partition.scm:650 msgid "You cannot delete a free space area." msgstr "" -#: gnu/installer/newt/partition.scm:652 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:651 gnu/installer/newt/partition.scm:658 msgid "Delete partition" msgstr "" -#: gnu/installer/newt/partition.scm:657 +#: gnu/installer/newt/partition.scm:656 #, scheme-format msgid "Are you sure you want to delete partition ~a?" msgstr "" -#: gnu/installer/newt/partition.scm:674 +#: gnu/installer/newt/partition.scm:673 msgid "" "You can change a disk's partition table by selecting it and pressing ENTER. You can also edit a partition by selecting it and pressing ENTER, or remove it by pressing DELETE. To create a new partition, select a free space area and press ENTER.\n" "\n" "At least one partition must have its mounting point set to '/'." msgstr "" -#: gnu/installer/newt/partition.scm:680 +#: gnu/installer/newt/partition.scm:679 #, scheme-format msgid "This is the proposed partitioning. It is still possible to edit it or to go back to install menu by pressing the Exit button.~%~%" msgstr "" -#: gnu/installer/newt/partition.scm:690 +#: gnu/installer/newt/partition.scm:689 msgid "Guided partitioning" msgstr "" -#: gnu/installer/newt/partition.scm:691 +#: gnu/installer/newt/partition.scm:690 msgid "Manual partitioning" msgstr "" -#: gnu/installer/newt/partition.scm:716 +#: gnu/installer/newt/partition.scm:715 msgid "No root mount point found." msgstr "" -#: gnu/installer/newt/partition.scm:717 +#: gnu/installer/newt/partition.scm:716 msgid "Missing mount point" msgstr "" -#: gnu/installer/newt/partition.scm:721 +#: gnu/installer/newt/partition.scm:720 #, scheme-format msgid "Cannot read the ~a partition UUID. You may need to format it." msgstr "" -#: gnu/installer/newt/partition.scm:724 +#: gnu/installer/newt/partition.scm:723 msgid "Wrong partition format" msgstr "" -#: gnu/installer/newt/partition.scm:755 +#: gnu/installer/newt/partition.scm:754 msgid "Guided - using the entire disk" msgstr "" -#: gnu/installer/newt/partition.scm:756 +#: gnu/installer/newt/partition.scm:755 msgid "Guided - using the entire disk with encryption" msgstr "" -#: gnu/installer/newt/partition.scm:757 +#: gnu/installer/newt/partition.scm:756 msgid "Manual" msgstr "Käsikirja" -#: gnu/installer/newt/partition.scm:759 +#: gnu/installer/newt/partition.scm:758 msgid "Please select a partitioning method." msgstr "" -#: gnu/installer/newt/partition.scm:760 +#: gnu/installer/newt/partition.scm:759 msgid "Partitioning method" msgstr "" @@ -1378,37 +1452,35 @@ msgstr "" msgid "Desktop environment" msgstr "Työpöytäympäristö" -#: gnu/installer/newt/services.scm:59 +#: gnu/installer/newt/services.scm:57 msgid "You can now select networking services to run on your system." msgstr "" -#: gnu/installer/newt/services.scm:61 +#: gnu/installer/newt/services.scm:59 msgid "Network service" msgstr "Verkkopalvelut" -#: gnu/installer/newt/services.scm:79 +#: gnu/installer/newt/services.scm:75 msgid "You can now select the CUPS printing service to run on your system." msgstr "" -#: gnu/installer/newt/services.scm:81 +#: gnu/installer/newt/services.scm:77 msgid "Printing and document services" msgstr "" -#: gnu/installer/newt/services.scm:100 -#, fuzzy -#| msgid "Other services" +#: gnu/installer/newt/services.scm:94 msgid "Console services" -msgstr "Muut palvelut" +msgstr "Konsolipalvelut" -#: gnu/installer/newt/services.scm:101 +#: gnu/installer/newt/services.scm:95 msgid "Select miscellaneous services to run on your non-graphical system." msgstr "" -#: gnu/installer/newt/services.scm:115 +#: gnu/installer/newt/services.scm:109 msgid "Network management" msgstr "" -#: gnu/installer/newt/services.scm:118 +#: gnu/installer/newt/services.scm:112 msgid "" "Choose the method to manage network connections.\n" "\n" @@ -1438,57 +1510,57 @@ msgstr "" msgid "Please select a timezone." msgstr "" -#: gnu/installer/newt/user.scm:45 +#: gnu/installer/newt/user.scm:44 msgid "Name" msgstr "Nimi" -#: gnu/installer/newt/user.scm:47 +#: gnu/installer/newt/user.scm:46 msgid "Real name" msgstr "" -#: gnu/installer/newt/user.scm:49 +#: gnu/installer/newt/user.scm:48 msgid "Home directory" msgstr "Kotihakemisto" -#: gnu/installer/newt/user.scm:51 +#: gnu/installer/newt/user.scm:50 msgid "Password" msgstr "Salasana" -#: gnu/installer/newt/user.scm:122 +#: gnu/installer/newt/user.scm:121 msgid "Empty inputs are not allowed." msgstr "" -#: gnu/installer/newt/user.scm:159 +#: gnu/installer/newt/user.scm:158 msgid "Please confirm the password." msgstr "" #. TRANSLATORS: Leave "root" untranslated: it refers to the name of the #. system administrator account. -#: gnu/installer/newt/user.scm:176 +#: gnu/installer/newt/user.scm:175 msgid "Please choose a password for the system administrator (\"root\")." msgstr "" -#: gnu/installer/newt/user.scm:178 +#: gnu/installer/newt/user.scm:177 msgid "System administrator password" msgstr "" -#: gnu/installer/newt/user.scm:191 +#: gnu/installer/newt/user.scm:190 msgid "Please add at least one user to system using the 'Add' button." msgstr "" -#: gnu/installer/newt/user.scm:194 +#: gnu/installer/newt/user.scm:193 msgid "Add" msgstr "Lisää" -#: gnu/installer/newt/user.scm:195 +#: gnu/installer/newt/user.scm:194 msgid "Delete" msgstr "Poista" -#: gnu/installer/newt/user.scm:255 +#: gnu/installer/newt/user.scm:254 msgid "Please create at least one user." msgstr "" -#: gnu/installer/newt/user.scm:256 +#: gnu/installer/newt/user.scm:255 msgid "No user" msgstr "" @@ -1559,60 +1631,60 @@ msgstr "" msgid "Wifi" msgstr "" -#: gnu/installer/parted.scm:433 gnu/installer/parted.scm:470 +#: gnu/installer/parted.scm:455 gnu/installer/parted.scm:492 msgid "Free space" msgstr "Vapaa tila" -#: gnu/installer/parted.scm:559 +#: gnu/installer/parted.scm:581 #, scheme-format msgid "Name: ~a" msgstr "" -#: gnu/installer/parted.scm:560 gnu/installer/parted.scm:606 +#: gnu/installer/parted.scm:582 gnu/installer/parted.scm:628 msgid "None" msgstr "Ei mitään" -#: gnu/installer/parted.scm:565 +#: gnu/installer/parted.scm:587 #, scheme-format msgid "Type: ~a" msgstr "" -#: gnu/installer/parted.scm:569 +#: gnu/installer/parted.scm:591 #, scheme-format msgid "File system type: ~a" msgstr "" -#: gnu/installer/parted.scm:575 +#: gnu/installer/parted.scm:597 #, scheme-format msgid "Bootable flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:579 +#: gnu/installer/parted.scm:601 #, scheme-format msgid "ESP flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:585 +#: gnu/installer/parted.scm:607 #, scheme-format msgid "Size: ~a" msgstr "" -#: gnu/installer/parted.scm:591 +#: gnu/installer/parted.scm:613 #, scheme-format msgid "Encryption: ~:[No~a~;Yes (label '~a')~]" msgstr "" -#: gnu/installer/parted.scm:597 +#: gnu/installer/parted.scm:619 #, scheme-format msgid "Format the partition? ~:[No~;Yes~]" msgstr "" -#: gnu/installer/parted.scm:603 +#: gnu/installer/parted.scm:625 #, scheme-format msgid "Mount point: ~a" msgstr "" -#: gnu/installer/parted.scm:1466 +#: gnu/installer/parted.scm:1477 #, scheme-format msgid "Device ~a is still in use." msgstr "" @@ -1656,7 +1728,7 @@ msgstr "" #. TRANSLATORS: This is a comment within a Scheme file. Each line must #. start with ";; " (two semicolons and a space). Please keep line #. length below 60 characters. -#: gnu/installer/steps.scm:252 +#: gnu/installer/steps.scm:242 msgid "" ";; This is an operating system configuration generated\n" ";; by the graphical installer.\n" @@ -1667,98 +1739,117 @@ msgstr "" msgid "Unable to locate path: ~a." msgstr "" -#: gnu/installer/utils.scm:83 +#: gnu/installer/utils.scm:131 #, scheme-format msgid "Press Enter to continue.~%" msgstr "" -#: gnu/installer/utils.scm:108 +#: gnu/installer/utils.scm:150 +#, scheme-format +msgid "Command ~s exited with value ~a" +msgstr "" + +#: gnu/installer/utils.scm:156 #, scheme-format -msgid "Command failed with exit code ~a.~%" +msgid "Command ~s killed by signal ~a" msgstr "" -#: gnu/machine/ssh.scm:117 +#: gnu/installer/utils.scm:162 +#, scheme-format +msgid "Command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:167 +#, scheme-format +msgid "Command ~s succeeded" +msgstr "" + +#: gnu/installer/utils.scm:179 +msgid "run-command-in-installer not set" +msgstr "" + +#: gnu/machine/ssh.scm:120 #, scheme-format msgid " without a 'host-key' is deprecated~%" msgstr "" -#: gnu/machine/ssh.scm:192 +#: gnu/machine/ssh.scm:208 #, scheme-format msgid "device '~a' not found: ~a" msgstr "" -#: gnu/machine/ssh.scm:207 +#: gnu/machine/ssh.scm:223 #, scheme-format msgid "no file system with label '~a'" msgstr "" -#: gnu/machine/ssh.scm:226 +#: gnu/machine/ssh.scm:242 #, scheme-format msgid "no file system with UUID '~a'" msgstr "" -#: gnu/machine/ssh.scm:276 +#: gnu/machine/ssh.scm:295 #, scheme-format msgid "missing modules for ~a:~{ ~a~}~%" msgstr "" -#: gnu/machine/ssh.scm:311 +#: gnu/machine/ssh.scm:333 #, scheme-format msgid "incorrect target system ('~a' was given, while the system reports that it is '~a')~%" msgstr "" -#: gnu/machine/ssh.scm:437 +#: gnu/machine/ssh.scm:459 #, scheme-format msgid "no signing key '~a'. have you run 'guix archive --generate-key?'" msgstr "" -#: gnu/machine/ssh.scm:469 +#: gnu/machine/ssh.scm:491 #, scheme-format msgid "failed to switch systems while deploying '~a':~%~{~s ~}" msgstr "" -#: gnu/machine/ssh.scm:477 +#: gnu/machine/ssh.scm:499 #, scheme-format msgid "an error occurred while upgrading services on '~a':~%~{~s ~}~%" msgstr "" -#: gnu/machine/ssh.scm:485 +#: gnu/machine/ssh.scm:507 #, scheme-format msgid "failed to install bootloader on '~a':~%~{~s ~}~%" msgstr "" -#: gnu/machine/ssh.scm:518 +#: gnu/machine/ssh.scm:540 msgid "could not roll-back machine" msgstr "" -#: gnu/machine/ssh.scm:559 +#: gnu/machine/ssh.scm:581 msgid "" "Provisioning for machines that are accessible over SSH\n" "and have a known host-name. This entails little more than maintaining an SSH\n" "connection to the host." msgstr "" -#: gnu/machine/ssh.scm:569 +#: gnu/machine/ssh.scm:591 #, scheme-format msgid "" "unsupported machine configuration '~a'\n" "for environment of type '~a'" msgstr "" -#: gnu/packages/bootstrap.scm:178 +#: gnu/packages/bootstrap.scm:188 #, scheme-format msgid "could not find bootstrap binary '~a' for system '~a'" msgstr "" -#: gnu/packages/bootstrap.scm:492 +#: gnu/packages/bootstrap.scm:578 msgid "Raw build system with direct store access" msgstr "" -#: gnu/packages/bootstrap.scm:500 +#: gnu/packages/bootstrap.scm:586 msgid "Pre-built Guile for bootstrapping purposes." msgstr "" -#: guix/build/utils.scm:822 +#: guix/build/utils.scm:823 #, scheme-format msgid "'~a~{ ~a~}' exited with status ~a; output follows:~%~%~{ ~a~%~}" msgstr "" @@ -1798,7 +1889,7 @@ msgid "~A: unrecognized option~%" msgstr "" #: guix/scripts.scm:169 guix/scripts/import.scm:140 -#: guix/scripts/system.scm:1370 +#: guix/scripts/system.scm:1379 #, scheme-format msgid "Did you mean @code{~a}?~%" msgstr "" @@ -1845,7 +1936,7 @@ msgstr "" #: guix/scripts/build.scm:154 guix/scripts/search.scm:42 #: guix/scripts/show.scm:41 guix/scripts/lint.scm:112 guix/scripts/edit.scm:48 #: guix/scripts/size.scm:246 guix/scripts/graph.scm:553 -#: guix/scripts/repl.scm:80 guix/scripts/style.scm:500 +#: guix/scripts/repl.scm:80 guix/scripts/style.scm:795 msgid "" "\n" " -L, --load-path=DIR prepend DIR to the package module search path" @@ -1998,7 +2089,7 @@ msgid "" " -s, --system=SYSTEM attempt to build for SYSTEM--e.g., \"i686-linux\"" msgstr "" -#: guix/scripts/build.scm:357 guix/scripts/system.scm:1023 +#: guix/scripts/build.scm:357 guix/scripts/system.scm:1026 #: guix/scripts/pack.scm:1329 guix/scripts/archive.scm:97 msgid "" "\n" @@ -2031,13 +2122,13 @@ msgid "" " as a garbage collector root" msgstr "" -#: guix/scripts/build.scm:368 guix/scripts/package.scm:486 +#: guix/scripts/build.scm:368 guix/scripts/package.scm:488 #: guix/scripts/install.scm:37 guix/scripts/remove.scm:36 #: guix/scripts/upgrade.scm:39 guix/scripts/pull.scm:117 -#: guix/scripts/system.scm:1025 guix/scripts/copy.scm:122 -#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:60 +#: guix/scripts/system.scm:1028 guix/scripts/copy.scm:122 +#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:66 #: guix/scripts/archive.scm:99 guix/scripts/environment.scm:123 -#: guix/scripts/home.scm:94 +#: guix/scripts/home.scm:98 msgid "" "\n" " -v, --verbosity=LEVEL use the given verbosity LEVEL" @@ -2056,59 +2147,59 @@ msgid "" msgstr "" #: guix/scripts/build.scm:379 guix/scripts/download.scm:104 -#: guix/scripts/package.scm:504 guix/scripts/install.scm:44 +#: guix/scripts/package.scm:506 guix/scripts/install.scm:44 #: guix/scripts/remove.scm:41 guix/scripts/upgrade.scm:48 #: guix/scripts/search.scm:37 guix/scripts/show.scm:36 guix/scripts/gc.scm:88 #: guix/scripts/git.scm:34 guix/scripts/git/authenticate.scm:110 #: guix/scripts/hash.scm:98 guix/scripts/import.scm:98 #: guix/scripts/import/minetest.scm:46 guix/scripts/import/cran.scm:49 #: guix/scripts/pull.scm:125 guix/scripts/substitute.scm:250 -#: guix/scripts/system.scm:1032 guix/scripts/lint.scm:115 +#: guix/scripts/system.scm:1035 guix/scripts/lint.scm:115 #: guix/scripts/publish.scm:119 guix/scripts/edit.scm:51 #: guix/scripts/size.scm:249 guix/scripts/graph.scm:558 #: guix/scripts/challenge.scm:430 guix/scripts/copy.scm:127 #: guix/scripts/pack.scm:1357 guix/scripts/weather.scm:336 #: guix/scripts/describe.scm:96 guix/scripts/processes.scm:301 -#: guix/scripts/deploy.scm:55 guix/scripts/container.scm:35 +#: guix/scripts/deploy.scm:58 guix/scripts/container.scm:35 #: guix/scripts/container/exec.scm:43 guix/scripts/archive.scm:106 -#: guix/scripts/environment.scm:149 guix/scripts/home.scm:97 +#: guix/scripts/environment.scm:149 guix/scripts/home.scm:101 #: guix/scripts/time-machine.scm:67 guix/scripts/import/cpan.scm:44 #: guix/scripts/import/crate.scm:50 guix/scripts/import/egg.scm:45 #: guix/scripts/import/gem.scm:46 guix/scripts/import/gnu.scm:50 #: guix/scripts/import/go.scm:50 guix/scripts/import/json.scm:52 #: guix/scripts/import/opam.scm:45 guix/scripts/import/pypi.scm:46 #: guix/scripts/import/texlive.scm:45 guix/scripts/refresh.scm:187 -#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:67 -#: guix/scripts/style.scm:509 +#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:69 +#: guix/scripts/style.scm:804 msgid "" "\n" " -h, --help display this help and exit" msgstr "" #: guix/scripts/build.scm:381 guix/scripts/download.scm:106 -#: guix/scripts/package.scm:506 guix/scripts/install.scm:46 +#: guix/scripts/package.scm:508 guix/scripts/install.scm:46 #: guix/scripts/remove.scm:43 guix/scripts/upgrade.scm:50 #: guix/scripts/search.scm:39 guix/scripts/show.scm:38 guix/scripts/gc.scm:90 #: guix/scripts/git.scm:36 guix/scripts/git/authenticate.scm:112 #: guix/scripts/hash.scm:100 guix/scripts/import.scm:100 #: guix/scripts/import/minetest.scm:50 guix/scripts/import/cran.scm:55 #: guix/scripts/pull.scm:127 guix/scripts/substitute.scm:252 -#: guix/scripts/system.scm:1034 guix/scripts/lint.scm:119 +#: guix/scripts/system.scm:1037 guix/scripts/lint.scm:119 #: guix/scripts/publish.scm:121 guix/scripts/edit.scm:53 #: guix/scripts/size.scm:251 guix/scripts/graph.scm:560 #: guix/scripts/challenge.scm:432 guix/scripts/copy.scm:129 #: guix/scripts/pack.scm:1359 guix/scripts/weather.scm:338 #: guix/scripts/describe.scm:98 guix/scripts/processes.scm:303 -#: guix/scripts/deploy.scm:57 guix/scripts/container.scm:37 +#: guix/scripts/deploy.scm:60 guix/scripts/container.scm:37 #: guix/scripts/container/exec.scm:45 guix/scripts/archive.scm:108 -#: guix/scripts/environment.scm:151 guix/scripts/home.scm:99 +#: guix/scripts/environment.scm:151 guix/scripts/home.scm:103 #: guix/scripts/time-machine.scm:69 guix/scripts/import/cpan.scm:46 #: guix/scripts/import/crate.scm:52 guix/scripts/import/egg.scm:49 #: guix/scripts/import/gem.scm:48 guix/scripts/import/gnu.scm:52 #: guix/scripts/import/json.scm:54 guix/scripts/import/opam.scm:52 #: guix/scripts/import/pypi.scm:50 guix/scripts/import/texlive.scm:47 #: guix/scripts/refresh.scm:189 guix/scripts/repl.scm:85 -#: guix/scripts/shell.scm:69 guix/scripts/style.scm:511 +#: guix/scripts/shell.scm:71 guix/scripts/style.scm:806 msgid "" "\n" " -V, --version display version information and exit" @@ -2338,164 +2429,164 @@ msgstr "" msgid "\"bash-minimal\" should be in 'inputs' when '~a' is used" msgstr "" -#: guix/lint.scm:616 +#: guix/lint.scm:614 msgid "no period allowed at the end of the synopsis" msgstr "" -#: guix/lint.scm:630 +#: guix/lint.scm:628 msgid "no article allowed at the beginning of the synopsis" msgstr "" -#: guix/lint.scm:639 +#: guix/lint.scm:637 msgid "synopsis should be less than 80 characters long" msgstr "" -#: guix/lint.scm:648 +#: guix/lint.scm:646 msgid "synopsis should start with an upper-case letter or digit" msgstr "" -#: guix/lint.scm:656 +#: guix/lint.scm:654 msgid "synopsis should not start with the package name" msgstr "" -#: guix/lint.scm:670 +#: guix/lint.scm:668 msgid "Texinfo markup in synopsis is invalid" msgstr "" -#: guix/lint.scm:678 +#: guix/lint.scm:676 msgid "synopsis contains trailing whitespace" msgstr "" -#: guix/lint.scm:695 +#: guix/lint.scm:693 msgid "synopsis should not be empty" msgstr "" -#: guix/lint.scm:705 +#: guix/lint.scm:703 #, scheme-format msgid "invalid synopsis: ~s" msgstr "" -#: guix/lint.scm:805 +#: guix/lint.scm:803 #, scheme-format msgid "~a: HTTP GET error for ~a: ~a (~s)~%" msgstr "" -#: guix/lint.scm:815 +#: guix/lint.scm:813 #, scheme-format msgid "~a: host lookup failure: ~a~%" msgstr "" -#: guix/lint.scm:820 +#: guix/lint.scm:818 #, scheme-format msgid "~a: TLS certificate error: ~a" msgstr "" -#: guix/lint.scm:825 +#: guix/lint.scm:823 #, scheme-format msgid "~a: TLS error in '~a': ~a~%" msgstr "" -#: guix/lint.scm:836 guix/ui.scm:820 guix/scripts/offload.scm:194 +#: guix/lint.scm:834 guix/ui.scm:820 guix/scripts/offload.scm:194 #, scheme-format msgid "~a: ~a~%" msgstr "" -#: guix/lint.scm:868 +#: guix/lint.scm:866 #, scheme-format msgid "URI ~a returned suspiciously small file (~a bytes)" msgstr "" -#: guix/lint.scm:877 +#: guix/lint.scm:875 #, scheme-format msgid "permanent redirect from ~a to ~a" msgstr "" -#: guix/lint.scm:883 +#: guix/lint.scm:881 #, scheme-format msgid "invalid permanent redirect from ~a" msgstr "" -#: guix/lint.scm:889 guix/lint.scm:899 +#: guix/lint.scm:887 guix/lint.scm:897 #, scheme-format msgid "URI ~a not reachable: ~a (~s)" msgstr "" -#: guix/lint.scm:905 +#: guix/lint.scm:903 #, scheme-format msgid "URI ~a domain not found: ~a" msgstr "" -#: guix/lint.scm:911 +#: guix/lint.scm:909 #, scheme-format msgid "URI ~a unreachable: ~a" msgstr "" -#: guix/lint.scm:919 +#: guix/lint.scm:917 #, scheme-format msgid "TLS certificate error: ~a" msgstr "" -#: guix/lint.scm:946 +#: guix/lint.scm:944 msgid "invalid value for home page" msgstr "" -#: guix/lint.scm:951 +#: guix/lint.scm:949 #, scheme-format msgid "invalid home page URL: ~s" msgstr "" -#: guix/lint.scm:988 +#: guix/lint.scm:986 msgid "file names of patches should start with the package name" msgstr "" -#: guix/lint.scm:1008 +#: guix/lint.scm:1006 #, scheme-format msgid "~a: file name is too long, which may break 'make dist'" msgstr "" -#: guix/lint.scm:1029 +#: guix/lint.scm:1027 #, scheme-format msgid "~a: empty patch" msgstr "" -#: guix/lint.scm:1038 +#: guix/lint.scm:1036 #, scheme-format msgid "~a: patch lacks comment and upstream status" msgstr "" -#: guix/lint.scm:1099 +#: guix/lint.scm:1097 #, scheme-format msgid "proposed synopsis: ~s~%" msgstr "" -#: guix/lint.scm:1113 +#: guix/lint.scm:1111 #, scheme-format msgid "proposed description:~% \"~a\"~%" msgstr "" -#: guix/lint.scm:1164 +#: guix/lint.scm:1162 msgid "all the source URIs are unreachable:" msgstr "" -#: guix/lint.scm:1193 +#: guix/lint.scm:1191 msgid "the source file name should contain the package name" msgstr "" -#: guix/lint.scm:1205 +#: guix/lint.scm:1203 msgid "the source URI should not be an autogenerated tarball" msgstr "" -#: guix/lint.scm:1229 +#: guix/lint.scm:1227 #, scheme-format msgid "URL should be 'mirror://~a/~a'" msgstr "" -#: guix/lint.scm:1269 +#: guix/lint.scm:1267 #, scheme-format msgid "while accessing '~a'" msgstr "" -#: guix/lint.scm:1276 +#: guix/lint.scm:1274 #, scheme-format msgid "URL should be '~a'" msgstr "" @@ -2503,68 +2594,68 @@ msgstr "" #. TRANSLATORS: check and #:tests? are a #. Scheme symbol and keyword respectively #. and should not be translated. -#: guix/lint.scm:1304 +#: guix/lint.scm:1302 msgid "the 'check' phase should respect #:tests?" msgstr "" -#: guix/lint.scm:1322 guix/lint.scm:1333 guix/lint.scm:1341 +#: guix/lint.scm:1320 guix/lint.scm:1331 guix/lint.scm:1339 #, scheme-format msgid "failed to create ~a derivation: ~a" msgstr "" -#: guix/lint.scm:1327 +#: guix/lint.scm:1325 #, scheme-format msgid "failed to create ~a derivation: ~s" msgstr "" -#: guix/lint.scm:1379 +#: guix/lint.scm:1377 #, scheme-format msgid "propagated inputs ~a and ~a collide" msgstr "" -#: guix/lint.scm:1403 +#: guix/lint.scm:1401 msgid "invalid license field" msgstr "" -#: guix/lint.scm:1410 +#: guix/lint.scm:1408 msgid "while retrieving CVE vulnerabilities" msgstr "" -#: guix/lint.scm:1453 +#: guix/lint.scm:1451 #, scheme-format msgid "probably vulnerable to ~a" msgstr "" -#: guix/lint.scm:1461 +#: guix/lint.scm:1459 #, scheme-format msgid "no updater for ~a" msgstr "" -#: guix/lint.scm:1466 guix/lint.scm:1641 +#: guix/lint.scm:1464 guix/lint.scm:1639 #, scheme-format msgid "while retrieving upstream info for '~a'" msgstr "" -#: guix/lint.scm:1475 +#: guix/lint.scm:1473 #, scheme-format msgid "can be upgraded to ~a" msgstr "" -#: guix/lint.scm:1481 +#: guix/lint.scm:1479 #, scheme-format msgid "updater '~a' failed to find upstream releases" msgstr "" -#: guix/lint.scm:1508 +#: guix/lint.scm:1506 #, scheme-format msgid "failed to access Disarchive database at ~a" msgstr "" -#: guix/lint.scm:1535 +#: guix/lint.scm:1533 msgid "Software Heritage rate limit reached; try again later" msgstr "" -#: guix/lint.scm:1539 +#: guix/lint.scm:1537 #, scheme-format msgid "'~a' returned ~a" msgstr "" @@ -2572,162 +2663,162 @@ msgstr "" #. TRANSLATORS: "Software Heritage" is a proper noun #. that must remain untranslated. See #. . -#: guix/lint.scm:1578 +#: guix/lint.scm:1576 msgid "scheduled Software Heritage archival" msgstr "" -#: guix/lint.scm:1584 +#: guix/lint.scm:1582 msgid "archival rate limit exceeded; try again later" msgstr "" -#: guix/lint.scm:1605 +#: guix/lint.scm:1603 msgid "source not archived on Software Heritage and missing from the Disarchive database" msgstr "" -#: guix/lint.scm:1615 +#: guix/lint.scm:1613 #, scheme-format msgid "Disarchive entry refers to non-existent SWH directory '~a'" msgstr "" -#: guix/lint.scm:1624 +#: guix/lint.scm:1622 msgid "unsupported source type" msgstr "lähdetyyppi ei tuettu" -#: guix/lint.scm:1633 +#: guix/lint.scm:1631 msgid "while connecting to Software Heritage" msgstr "" -#: guix/lint.scm:1650 +#: guix/lint.scm:1648 #, scheme-format msgid "ahead of Stackage LTS version ~a" msgstr "" -#: guix/lint.scm:1667 +#: guix/lint.scm:1665 #, scheme-format msgid "tabulation on line ~a, column ~a" msgstr "" -#: guix/lint.scm:1679 +#: guix/lint.scm:1677 #, scheme-format msgid "trailing white space on line ~a" msgstr "" -#: guix/lint.scm:1693 +#: guix/lint.scm:1691 #, scheme-format msgid "line ~a is way too long (~a characters)" msgstr "" -#: guix/lint.scm:1707 +#: guix/lint.scm:1705 msgid "parentheses feel lonely, move to the previous or next line" msgstr "" -#: guix/lint.scm:1784 +#: guix/lint.scm:1782 msgid "source file not found" msgstr "" -#: guix/lint.scm:1796 +#: guix/lint.scm:1794 msgid "Validate package names" msgstr "" -#: guix/lint.scm:1800 +#: guix/lint.scm:1798 msgid "Check if tests are explicitly enabled" msgstr "" -#: guix/lint.scm:1804 +#: guix/lint.scm:1802 msgid "Validate package descriptions" msgstr "" -#: guix/lint.scm:1808 +#: guix/lint.scm:1806 msgid "Identify inputs that should be native inputs" msgstr "" -#: guix/lint.scm:1812 +#: guix/lint.scm:1810 msgid "Identify inputs that shouldn't be inputs at all" msgstr "" -#: guix/lint.scm:1816 +#: guix/lint.scm:1814 msgid "Identify input labels that do not match package names" msgstr "" -#: guix/lint.scm:1820 +#: guix/lint.scm:1818 msgid "Make sure 'wrap-program' can finds its interpreter." msgstr "" #. TRANSLATORS: is the name of a data type and must not be #. translated. -#: guix/lint.scm:1826 +#: guix/lint.scm:1824 msgid "Make sure the 'license' field is a or a list thereof" msgstr "" -#: guix/lint.scm:1831 +#: guix/lint.scm:1829 msgid "Make sure tests are only run when requested" msgstr "" -#: guix/lint.scm:1835 +#: guix/lint.scm:1833 msgid "Suggest 'mirror://' URLs" msgstr "" -#: guix/lint.scm:1839 +#: guix/lint.scm:1837 msgid "Validate file names of sources" msgstr "" -#: guix/lint.scm:1843 +#: guix/lint.scm:1841 msgid "Check for autogenerated tarballs" msgstr "" -#: guix/lint.scm:1847 +#: guix/lint.scm:1845 msgid "Report failure to compile a package to a derivation" msgstr "" -#: guix/lint.scm:1852 +#: guix/lint.scm:1850 msgid "Report collisions that would occur due to propagated inputs" msgstr "" -#: guix/lint.scm:1857 +#: guix/lint.scm:1855 msgid "Validate file names and availability of patches" msgstr "" -#: guix/lint.scm:1861 +#: guix/lint.scm:1859 msgid "Validate patch headers" msgstr "" -#: guix/lint.scm:1865 +#: guix/lint.scm:1863 msgid "Look for formatting issues in the source" msgstr "" -#: guix/lint.scm:1872 +#: guix/lint.scm:1870 msgid "Validate package synopses" msgstr "" -#: guix/lint.scm:1876 +#: guix/lint.scm:1874 msgid "Validate synopsis & description of GNU packages" msgstr "" -#: guix/lint.scm:1880 +#: guix/lint.scm:1878 msgid "Validate home-page URLs" msgstr "" -#: guix/lint.scm:1884 +#: guix/lint.scm:1882 msgid "Validate source URLs" msgstr "" -#: guix/lint.scm:1888 +#: guix/lint.scm:1886 msgid "Suggest GitHub URLs" msgstr "" -#: guix/lint.scm:1892 +#: guix/lint.scm:1890 msgid "Check the Common Vulnerabilities and Exposures (CVE) database" msgstr "" -#: guix/lint.scm:1897 +#: guix/lint.scm:1895 msgid "Check the package for new upstream releases" msgstr "" -#: guix/lint.scm:1901 +#: guix/lint.scm:1899 msgid "Ensure source code archival on Software Heritage" msgstr "" -#: guix/lint.scm:1905 +#: guix/lint.scm:1903 msgid "Ensure Haskell packages use Stackage LTS versions" msgstr "" @@ -2779,7 +2870,7 @@ msgstr "" msgid "~a: unknown hash algorithm~%" msgstr "" -#: guix/scripts/download.scm:171 guix/scripts/package.scm:1087 +#: guix/scripts/download.scm:171 guix/scripts/package.scm:1090 #: guix/scripts/pull.scm:758 guix/scripts/publish.scm:1260 #: guix/scripts/discover.scm:136 guix/scripts/time-machine.scm:123 #, scheme-format @@ -2811,17 +2902,17 @@ msgstr "" msgid "no matching generation~%" msgstr "" -#: guix/scripts/package.scm:159 +#: guix/scripts/package.scm:161 #, scheme-format msgid "nothing to be done~%" msgstr "" -#: guix/scripts/package.scm:260 +#: guix/scripts/package.scm:262 #, scheme-format msgid "package '~a' no longer exists~%" msgstr "" -#: guix/scripts/package.scm:315 +#: guix/scripts/package.scm:317 #, scheme-format msgid "" "Consider setting the necessary environment\n" @@ -2835,7 +2926,7 @@ msgid "" "Alternately, see @command{guix package --search-paths -p ~s}." msgstr "" -#: guix/scripts/package.scm:361 +#: guix/scripts/package.scm:363 msgid "" ";; This \"manifest\" file can be passed to 'guix package -m' to reproduce\n" ";; the content of your profile. This is \"symbolic\": it only specifies\n" @@ -2844,44 +2935,44 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/package.scm:393 +#: guix/scripts/package.scm:395 #, scheme-format msgid "no provenance information for this profile~%" msgstr "" -#: guix/scripts/package.scm:395 +#: guix/scripts/package.scm:397 msgid "" ";; This channel file can be passed to 'guix pull -C' or to\n" ";; 'guix time-machine -C' to obtain the Guix revision that was\n" ";; used to populate this profile.\n" msgstr "" -#: guix/scripts/package.scm:407 +#: guix/scripts/package.scm:409 #, scheme-format msgid ";; Note: these other commits were also used to install some of the packages in this profile:~%" msgstr "" -#: guix/scripts/package.scm:437 +#: guix/scripts/package.scm:439 msgid "" "Usage: guix package [OPTION]...\n" "Install, remove, or upgrade packages in a single transaction.\n" msgstr "" -#: guix/scripts/package.scm:439 +#: guix/scripts/package.scm:441 msgid "" "\n" " -i, --install PACKAGE ...\n" " install PACKAGEs" msgstr "" -#: guix/scripts/package.scm:442 +#: guix/scripts/package.scm:444 msgid "" "\n" " -e, --install-from-expression=EXP\n" " install the package EXP evaluates to" msgstr "" -#: guix/scripts/package.scm:445 +#: guix/scripts/package.scm:447 msgid "" "\n" " -f, --install-from-file=FILE\n" @@ -2889,160 +2980,160 @@ msgid "" " evaluates to" msgstr "" -#: guix/scripts/package.scm:449 +#: guix/scripts/package.scm:451 msgid "" "\n" " -r, --remove PACKAGE ...\n" " remove PACKAGEs" msgstr "" -#: guix/scripts/package.scm:452 +#: guix/scripts/package.scm:454 msgid "" "\n" " -u, --upgrade[=REGEXP] upgrade all the installed packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:454 +#: guix/scripts/package.scm:456 msgid "" "\n" " -m, --manifest=FILE create a new profile generation with the manifest\n" " from FILE" msgstr "" -#: guix/scripts/package.scm:457 guix/scripts/upgrade.scm:41 +#: guix/scripts/package.scm:459 guix/scripts/upgrade.scm:41 msgid "" "\n" " --do-not-upgrade[=REGEXP] do not upgrade any packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:459 guix/scripts/pull.scm:107 +#: guix/scripts/package.scm:461 guix/scripts/pull.scm:107 msgid "" "\n" " --roll-back roll back to the previous generation" msgstr "" -#: guix/scripts/package.scm:461 +#: guix/scripts/package.scm:463 msgid "" "\n" " --search-paths[=KIND]\n" " display needed environment variable definitions" msgstr "" -#: guix/scripts/package.scm:464 guix/scripts/pull.scm:104 +#: guix/scripts/package.scm:466 guix/scripts/pull.scm:104 msgid "" "\n" " -l, --list-generations[=PATTERN]\n" " list generations matching PATTERN" msgstr "" -#: guix/scripts/package.scm:467 guix/scripts/pull.scm:109 +#: guix/scripts/package.scm:469 guix/scripts/pull.scm:109 msgid "" "\n" " -d, --delete-generations[=PATTERN]\n" " delete generations matching PATTERN" msgstr "" -#: guix/scripts/package.scm:470 guix/scripts/pull.scm:112 +#: guix/scripts/package.scm:472 guix/scripts/pull.scm:112 msgid "" "\n" " -S, --switch-generation=PATTERN\n" " switch to a generation matching PATTERN" msgstr "" -#: guix/scripts/package.scm:473 +#: guix/scripts/package.scm:475 msgid "" "\n" " --export-manifest print a manifest for the chosen profile" msgstr "" -#: guix/scripts/package.scm:475 +#: guix/scripts/package.scm:477 msgid "" "\n" " --export-channels print channels for the chosen profile" msgstr "" -#: guix/scripts/package.scm:477 guix/scripts/install.scm:34 +#: guix/scripts/package.scm:479 guix/scripts/install.scm:34 #: guix/scripts/remove.scm:33 guix/scripts/upgrade.scm:37 msgid "" "\n" " -p, --profile=PROFILE use PROFILE instead of the user's default profile" msgstr "" -#: guix/scripts/package.scm:479 +#: guix/scripts/package.scm:481 msgid "" "\n" " --list-profiles list the user's profiles" msgstr "" -#: guix/scripts/package.scm:482 +#: guix/scripts/package.scm:484 msgid "" "\n" " --allow-collisions do not treat collisions in the profile as an error" msgstr "" -#: guix/scripts/package.scm:484 +#: guix/scripts/package.scm:486 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" msgstr "" -#: guix/scripts/package.scm:489 +#: guix/scripts/package.scm:491 msgid "" "\n" " -s, --search=REGEXP search in synopsis and description using REGEXP" msgstr "" -#: guix/scripts/package.scm:491 +#: guix/scripts/package.scm:493 msgid "" "\n" " -I, --list-installed[=REGEXP]\n" " list installed packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:494 +#: guix/scripts/package.scm:496 msgid "" "\n" " -A, --list-available[=REGEXP]\n" " list available packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:497 +#: guix/scripts/package.scm:499 msgid "" "\n" " --show=PACKAGE show details about PACKAGE" msgstr "" -#: guix/scripts/package.scm:552 +#: guix/scripts/package.scm:554 #, scheme-format msgid "upgrade regexp '~a' looks like a command-line option~%" msgstr "" -#: guix/scripts/package.scm:555 +#: guix/scripts/package.scm:557 #, scheme-format msgid "is this intended?~%" msgstr "" -#: guix/scripts/package.scm:605 +#: guix/scripts/package.scm:607 #, scheme-format msgid "~a: unsupported kind of search path~%" msgstr "" -#: guix/scripts/package.scm:739 +#: guix/scripts/package.scm:741 #, scheme-format msgid "cannot install non-package object: ~s~%" msgstr "" -#: guix/scripts/package.scm:918 +#: guix/scripts/package.scm:920 #, scheme-format msgid "~a~@[@~a~]: package not found~%" msgstr "" -#: guix/scripts/package.scm:965 guix/scripts/pull.scm:687 +#: guix/scripts/package.scm:967 guix/scripts/pull.scm:687 #, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "" -#: guix/scripts/package.scm:1060 +#: guix/scripts/package.scm:1062 #, scheme-format msgid "nothing to do~%" msgstr "Ei mitään tehtävää~%" @@ -3251,8 +3342,8 @@ msgid "" "Operate on Git repositories.\n" msgstr "" -#: guix/scripts/git.scm:29 guix/scripts/system.scm:945 -#: guix/scripts/container.scm:30 guix/scripts/home.scm:69 +#: guix/scripts/git.scm:29 guix/scripts/system.scm:946 +#: guix/scripts/container.scm:30 guix/scripts/home.scm:70 msgid "The valid values for ACTION are:\n" msgstr "" @@ -3341,22 +3432,22 @@ msgid "" " -S, --serializer=TYPE compute the hash on FILE according to TYPE serialization" msgstr "" -#: guix/scripts/hash.scm:137 +#: guix/scripts/hash.scm:138 #, scheme-format -msgid "'--recursive' is deprecated, use '--serializer' instead~%" +msgid "'--recursive' is deprecated, use '--serializer=nar' instead~%" msgstr "" -#: guix/scripts/hash.scm:152 +#: guix/scripts/hash.scm:153 #, scheme-format msgid "unsupported serializer type: ~a~%" msgstr "" -#: guix/scripts/hash.scm:201 +#: guix/scripts/hash.scm:202 #, scheme-format msgid "~a ~a~%" msgstr "" -#: guix/scripts/hash.scm:210 +#: guix/scripts/hash.scm:211 #, scheme-format msgid "no arguments specified~%" msgstr "" @@ -3416,9 +3507,9 @@ msgstr "" #: guix/scripts/import/minetest.scm:115 guix/scripts/import/cran.scm:120 #: guix/scripts/import/elpa.scm:110 guix/scripts/import/cpan.scm:87 #: guix/scripts/import/crate.scm:103 guix/scripts/import/egg.scm:106 -#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:121 +#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:122 #: guix/scripts/import/hackage.scm:158 guix/scripts/import/json.scm:97 -#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:104 +#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:105 #: guix/scripts/import/stackage.scm:130 guix/scripts/import/texlive.scm:88 #, scheme-format msgid "too few arguments~%" @@ -3427,10 +3518,10 @@ msgstr "Liian vähän argumentteja~%" #: guix/scripts/import/minetest.scm:117 guix/scripts/import/cran.scm:122 #: guix/scripts/import/elpa.scm:112 guix/scripts/import/cpan.scm:89 #: guix/scripts/import/crate.scm:105 guix/scripts/import/egg.scm:108 -#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:123 +#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:124 #: guix/scripts/import/hackage.scm:149 guix/scripts/import/hackage.scm:160 #: guix/scripts/import/json.scm:99 guix/scripts/import/opam.scm:113 -#: guix/scripts/import/pypi.scm:106 guix/scripts/import/stackage.scm:132 +#: guix/scripts/import/pypi.scm:107 guix/scripts/import/stackage.scm:132 #: guix/scripts/import/texlive.scm:90 #, scheme-format msgid "too many arguments~%" @@ -3454,7 +3545,7 @@ msgid "" " -s, --style=STYLE choose output style, either specification or variable" msgstr "" -#: guix/scripts/import/cran.scm:116 guix/scripts/import/texlive.scm:84 +#: guix/scripts/import/cran.scm:116 #, scheme-format msgid "failed to download description for package '~a'~%" msgstr "" @@ -3850,27 +3941,27 @@ msgstr "" msgid "the dependency graph of shepherd services" msgstr "" -#: guix/scripts/system.scm:482 guix/scripts/home.scm:453 +#: guix/scripts/system.scm:482 guix/scripts/home.scm:466 #, scheme-format msgid " repository URL: ~a~%" msgstr "" -#: guix/scripts/system.scm:484 guix/scripts/home.scm:455 +#: guix/scripts/system.scm:484 guix/scripts/home.scm:468 #, scheme-format msgid " branch: ~a~%" msgstr "" -#: guix/scripts/system.scm:485 guix/scripts/home.scm:456 +#: guix/scripts/system.scm:485 guix/scripts/home.scm:469 #, scheme-format msgid " commit: ~a~%" msgstr "" -#: guix/scripts/system.scm:505 guix/scripts/home.scm:469 +#: guix/scripts/system.scm:505 guix/scripts/home.scm:482 #, scheme-format msgid " file name: ~a~%" msgstr "" -#: guix/scripts/system.scm:506 guix/scripts/home.scm:470 +#: guix/scripts/system.scm:506 guix/scripts/home.scm:483 #, scheme-format msgid " canonical file name: ~a~%" msgstr "" @@ -3911,12 +4002,12 @@ msgstr "" #. TRANSLATORS: Here "channel" is the same terminology as used in #. "guix describe" and "guix pull --channels". -#: guix/scripts/system.scm:536 guix/scripts/home.scm:476 +#: guix/scripts/system.scm:536 guix/scripts/home.scm:489 #, scheme-format msgid " channels:~%" msgstr "" -#: guix/scripts/system.scm:539 guix/scripts/home.scm:479 +#: guix/scripts/system.scm:539 guix/scripts/home.scm:492 #, scheme-format msgid " configuration file: ~a~%" msgstr "" @@ -3968,128 +4059,128 @@ msgstr "" msgid "Failing to do that may downgrade your system!~%" msgstr "" -#: guix/scripts/system.scm:754 guix/scripts/system.scm:863 +#: guix/scripts/system.scm:754 guix/scripts/system.scm:864 #, scheme-format msgid "bootloader successfully installed on '~a'~%" msgstr "" -#: guix/scripts/system.scm:856 +#: guix/scripts/system.scm:857 #, scheme-format msgid "activating system...~%" msgstr "" -#: guix/scripts/system.scm:867 +#: guix/scripts/system.scm:868 msgid "" "To complete the upgrade, run 'herd restart SERVICE' to stop,\n" "upgrade, and restart each service that was not automatically restarted.\n" msgstr "" -#: guix/scripts/system.scm:870 +#: guix/scripts/system.scm:871 msgid "Run 'herd status' to view the list of services on your system.\n" msgstr "" -#: guix/scripts/system.scm:874 +#: guix/scripts/system.scm:875 #, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "" -#: guix/scripts/system.scm:894 guix/scripts/graph.scm:437 +#: guix/scripts/system.scm:895 guix/scripts/graph.scm:437 #, scheme-format msgid "~a: unknown backend~%" msgstr "" -#: guix/scripts/system.scm:931 +#: guix/scripts/system.scm:932 msgid "The available image types are:\n" msgstr "" -#: guix/scripts/system.scm:941 +#: guix/scripts/system.scm:942 msgid "" "Usage: guix system [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the operating system declared in FILE according to ACTION.\n" "Some ACTIONS support additional ARGS.\n" msgstr "" -#: guix/scripts/system.scm:947 +#: guix/scripts/system.scm:948 msgid " search search for existing service types\n" msgstr "" -#: guix/scripts/system.scm:949 +#: guix/scripts/system.scm:950 msgid " reconfigure switch to a new operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:951 +#: guix/scripts/system.scm:952 msgid " roll-back switch to the previous operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:953 +#: guix/scripts/system.scm:954 msgid " describe describe the current system\n" msgstr "" -#: guix/scripts/system.scm:955 +#: guix/scripts/system.scm:956 msgid " list-generations list the system generations\n" msgstr "" -#: guix/scripts/system.scm:957 +#: guix/scripts/system.scm:958 msgid " switch-generation switch to an existing operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:959 +#: guix/scripts/system.scm:960 msgid " delete-generations delete old system generations\n" msgstr "" -#: guix/scripts/system.scm:961 +#: guix/scripts/system.scm:962 msgid " build build the operating system without installing anything\n" msgstr "" -#: guix/scripts/system.scm:963 +#: guix/scripts/system.scm:964 msgid " container build a container that shares the host's store\n" msgstr "" -#: guix/scripts/system.scm:965 +#: guix/scripts/system.scm:966 msgid " vm build a virtual machine image that shares the host's store\n" msgstr "" -#: guix/scripts/system.scm:967 +#: guix/scripts/system.scm:968 msgid " image build a Guix System image\n" msgstr "" -#: guix/scripts/system.scm:969 +#: guix/scripts/system.scm:970 msgid " docker-image build a Docker image\n" msgstr "" -#: guix/scripts/system.scm:971 +#: guix/scripts/system.scm:972 msgid " init initialize a root file system to run GNU\n" msgstr "" -#: guix/scripts/system.scm:973 +#: guix/scripts/system.scm:974 msgid " extension-graph emit the service extension graph in Dot format\n" msgstr "" -#: guix/scripts/system.scm:975 +#: guix/scripts/system.scm:976 msgid " shepherd-graph emit the graph of shepherd services in Dot format\n" msgstr "" -#: guix/scripts/system.scm:979 +#: guix/scripts/system.scm:980 msgid "" "\n" " -d, --derivation return the derivation of the given system" msgstr "" -#: guix/scripts/system.scm:981 +#: guix/scripts/system.scm:982 msgid "" "\n" " -e, --expression=EXPR consider the operating-system EXPR evaluates to\n" " instead of reading FILE, when applicable" msgstr "" -#: guix/scripts/system.scm:984 +#: guix/scripts/system.scm:985 guix/scripts/home.scm:95 msgid "" "\n" " --allow-downgrades for 'reconfigure', allow downgrades to earlier\n" " channel revisions" msgstr "" -#: guix/scripts/system.scm:987 +#: guix/scripts/system.scm:988 msgid "" "\n" " --on-error=STRATEGY\n" @@ -4097,69 +4188,75 @@ msgid "" " or debug) when an error occurs while reading FILE" msgstr "" -#: guix/scripts/system.scm:991 +#: guix/scripts/system.scm:992 msgid "" "\n" " --list-image-types list available image types" msgstr "" -#: guix/scripts/system.scm:993 +#: guix/scripts/system.scm:994 msgid "" "\n" " -t, --image-type=TYPE for 'image', produce an image of TYPE" msgstr "" -#: guix/scripts/system.scm:995 +#: guix/scripts/system.scm:996 msgid "" "\n" " --image-size=SIZE for 'image', produce an image of SIZE" msgstr "" -#: guix/scripts/system.scm:997 +#: guix/scripts/system.scm:998 msgid "" "\n" " --no-bootloader for 'init', do not install a bootloader" msgstr "" -#: guix/scripts/system.scm:999 +#: guix/scripts/system.scm:1000 msgid "" "\n" " --volatile for 'image', make the root file system volatile" msgstr "" -#: guix/scripts/system.scm:1001 +#: guix/scripts/system.scm:1002 +msgid "" +"\n" +" --persistent for 'vm', make the root file system persistent" +msgstr "" + +#: guix/scripts/system.scm:1004 msgid "" "\n" " --label=LABEL for 'image', label disk image with LABEL" msgstr "" -#: guix/scripts/system.scm:1003 guix/scripts/pack.scm:1340 +#: guix/scripts/system.scm:1006 guix/scripts/pack.scm:1340 msgid "" "\n" " --save-provenance save provenance information" msgstr "" -#: guix/scripts/system.scm:1005 +#: guix/scripts/system.scm:1008 msgid "" "\n" " --share=SPEC for 'vm' and 'container', share host file system with\n" " read/write access according to SPEC" msgstr "" -#: guix/scripts/system.scm:1008 +#: guix/scripts/system.scm:1011 msgid "" "\n" " --expose=SPEC for 'vm' and 'container', expose host file system\n" " directory as read-only according to SPEC" msgstr "" -#: guix/scripts/system.scm:1011 +#: guix/scripts/system.scm:1014 msgid "" "\n" " -N, --network for 'container', allow containers to access the network" msgstr "" -#: guix/scripts/system.scm:1013 +#: guix/scripts/system.scm:1016 msgid "" "\n" " -r, --root=FILE for 'vm', 'image', 'container' and 'build',\n" @@ -4167,82 +4264,82 @@ msgid "" " register it as a garbage collector root" msgstr "" -#: guix/scripts/system.scm:1017 +#: guix/scripts/system.scm:1020 msgid "" "\n" " --full-boot for 'vm', make a full boot sequence" msgstr "" -#: guix/scripts/system.scm:1019 +#: guix/scripts/system.scm:1022 msgid "" "\n" " --no-graphic for 'vm', use the tty that we are started in for IO" msgstr "" -#: guix/scripts/system.scm:1021 +#: guix/scripts/system.scm:1024 msgid "" "\n" " --skip-checks skip file system and initrd module safety checks" msgstr "" -#: guix/scripts/system.scm:1028 +#: guix/scripts/system.scm:1031 msgid "" "\n" " --graph-backend=BACKEND\n" " use BACKEND for 'extension-graphs' and 'shepherd-graph'" msgstr "" -#: guix/scripts/system.scm:1180 +#: guix/scripts/system.scm:1187 #, scheme-format msgid "'~a' does not return an operating system or an image~%" msgstr "" -#: guix/scripts/system.scm:1204 guix/scripts/home.scm:216 +#: guix/scripts/system.scm:1211 guix/scripts/home.scm:230 #, scheme-format msgid "both file and expression cannot be specified~%" msgstr "" -#: guix/scripts/system.scm:1211 guix/scripts/home.scm:223 +#: guix/scripts/system.scm:1218 guix/scripts/home.scm:237 #, scheme-format msgid "no configuration specified~%" msgstr "" -#: guix/scripts/system.scm:1319 guix/scripts/system.scm:1335 -#: guix/scripts/system.scm:1342 guix/scripts/system.scm:1348 -#: guix/scripts/home.scm:274 guix/scripts/home.scm:296 -#: guix/scripts/home.scm:301 guix/scripts/home.scm:307 -#: guix/scripts/home.scm:314 guix/scripts/import/gnu.scm:100 +#: guix/scripts/system.scm:1328 guix/scripts/system.scm:1344 +#: guix/scripts/system.scm:1351 guix/scripts/system.scm:1357 +#: guix/scripts/home.scm:287 guix/scripts/home.scm:309 +#: guix/scripts/home.scm:314 guix/scripts/home.scm:320 +#: guix/scripts/home.scm:327 guix/scripts/import/gnu.scm:100 #: guix/scripts/offload.scm:836 guix/scripts/offload.scm:848 #, scheme-format msgid "wrong number of arguments~%" msgstr "" -#: guix/scripts/system.scm:1324 +#: guix/scripts/system.scm:1333 #, scheme-format msgid "no system generation, nothing to describe~%" msgstr "" -#: guix/scripts/system.scm:1367 guix/scripts/home.scm:337 +#: guix/scripts/system.scm:1376 guix/scripts/home.scm:350 #, scheme-format msgid "~a: unknown action~%" msgstr "" -#: guix/scripts/system.scm:1387 guix/scripts/home.scm:353 +#: guix/scripts/system.scm:1396 guix/scripts/home.scm:366 #, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "" -#: guix/scripts/system.scm:1392 +#: guix/scripts/system.scm:1401 #, scheme-format msgid "guix system: missing command name~%" msgstr "" -#: guix/scripts/system.scm:1394 +#: guix/scripts/system.scm:1403 #, scheme-format msgid "Try 'guix system --help' for more information.~%" msgstr "" -#: guix/scripts/system/search.scm:93 guix/ui.scm:1541 guix/ui.scm:1559 +#: guix/scripts/system/search.scm:93 guix/ui.scm:1544 guix/ui.scm:1562 msgid "unknown" msgstr "tuntematon" @@ -4637,7 +4734,7 @@ msgid "" msgstr "" #: guix/scripts/graph.scm:548 guix/scripts/pack.scm:1325 -#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:502 +#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:797 msgid "" "\n" " -e, --expression=EXPR consider the package EXPR evaluates to" @@ -5227,44 +5324,85 @@ msgid "" " -f, --format=FORMAT display results as normalized record sets" msgstr "" -#: guix/scripts/deploy.scm:51 +#: guix/scripts/deploy.scm:54 msgid "" "Usage: guix deploy [OPTION] FILE...\n" "Perform the deployment specified by FILE.\n" msgstr "" -#: guix/scripts/deploy.scm:108 +#: guix/scripts/deploy.scm:63 +msgid "" +"\n" +" -x, --execute execute the following command on all the machines" +msgstr "" + +#: guix/scripts/deploy.scm:117 #, scheme-format msgid "The following ~d machine will be deployed:~%" msgid_plural "The following ~d machines will be deployed:~%" msgstr[0] "" msgstr[1] "" -#: guix/scripts/deploy.scm:122 +#: guix/scripts/deploy.scm:131 #, scheme-format msgid "deploying to ~a...~%" msgstr "" -#: guix/scripts/deploy.scm:134 guix/scripts/deploy.scm:138 +#: guix/scripts/deploy.scm:143 guix/scripts/deploy.scm:147 #, scheme-format msgid "failed to deploy ~a: ~a~%" msgstr "" -#: guix/scripts/deploy.scm:146 +#: guix/scripts/deploy.scm:155 #, scheme-format msgid "rolling back ~a...~%" msgstr "" -#: guix/scripts/deploy.scm:152 +#: guix/scripts/deploy.scm:161 #, scheme-format msgid "successfully deployed ~a~%" msgstr "" -#: guix/scripts/deploy.scm:167 +#: guix/scripts/deploy.scm:212 +#, scheme-format +msgid "~a: command succeeded~%" +msgstr "" + +#: guix/scripts/deploy.scm:215 +#, scheme-format +msgid "~a: command exited with code ~a~%" +msgstr "" + +#: guix/scripts/deploy.scm:218 +#, scheme-format +msgid "~a: command stopped with signal ~a~%" +msgstr "" + +#: guix/scripts/deploy.scm:221 +#, scheme-format +msgid "~a: command terminated with signal ~a~%" +msgstr "" + +#: guix/scripts/deploy.scm:225 +#, scheme-format +msgid "command output on ~a:~%" +msgstr "" + +#: guix/scripts/deploy.scm:246 #, scheme-format msgid "missing deployment file argument~%" msgstr "" +#: guix/scripts/deploy.scm:249 +#, scheme-format +msgid "'--' was used by '-x' was not specified~%" +msgstr "" + +#: guix/scripts/deploy.scm:271 +#, scheme-format +msgid "'-x' specified but no command given~%" +msgstr "" + #: guix/gexp.scm:465 #, scheme-format msgid "resolving '~a' relative to current directory~%" @@ -5356,154 +5494,154 @@ msgstr "" msgid "exec failed with status ~d~%" msgstr "" -#: guix/transformations.scm:185 guix/transformations.scm:253 +#: guix/transformations.scm:186 guix/transformations.scm:254 #, scheme-format msgid "invalid replacement specification: ~s" msgstr "" -#: guix/transformations.scm:234 +#: guix/transformations.scm:235 #, scheme-format msgid "the source of ~a is not a Git reference" msgstr "" -#: guix/transformations.scm:337 +#: guix/transformations.scm:338 #, scheme-format msgid "~a: invalid Git URL replacement specification" msgstr "" -#: guix/transformations.scm:415 +#: guix/transformations.scm:416 #, scheme-format msgid "~a: invalid toolchain replacement specification" msgstr "" -#: guix/transformations.scm:517 +#: guix/transformations.scm:518 msgid "failed to determine which compiler is used" msgstr "" -#: guix/transformations.scm:523 +#: guix/transformations.scm:524 #, scheme-format msgid "failed to determine whether ~a supports ~a" msgstr "" -#: guix/transformations.scm:529 +#: guix/transformations.scm:530 #, scheme-format msgid "compiler ~a does not support micro-architecture ~a" msgstr "" -#: guix/transformations.scm:581 +#: guix/transformations.scm:582 #, scheme-format msgid "tuning ~a for CPU ~a~%" msgstr "" -#: guix/transformations.scm:721 +#: guix/transformations.scm:722 #, scheme-format msgid "~a: invalid package patch specification" msgstr "" -#: guix/transformations.scm:744 +#: guix/transformations.scm:745 #, scheme-format msgid "could not determine latest upstream release of '~a'~%" msgstr "" -#: guix/transformations.scm:752 +#: guix/transformations.scm:753 #, scheme-format msgid "cannot authenticate source of '~a', version ~a~%" msgstr "" -#: guix/transformations.scm:833 +#: guix/transformations.scm:840 #, scheme-format msgid "building for ~a instead of ~a, so tuning cannot be guessed~%" msgstr "" -#: guix/transformations.scm:859 +#: guix/transformations.scm:866 #, scheme-format msgid "Available package transformation options:~%" msgstr "" -#: guix/transformations.scm:865 +#: guix/transformations.scm:872 msgid "" "\n" " --with-source=[PACKAGE=]SOURCE\n" " use SOURCE when building the corresponding package" msgstr "" -#: guix/transformations.scm:868 +#: guix/transformations.scm:875 msgid "" "\n" " --with-input=PACKAGE=REPLACEMENT\n" " replace dependency PACKAGE by REPLACEMENT" msgstr "" -#: guix/transformations.scm:871 +#: guix/transformations.scm:878 msgid "" "\n" " --with-graft=PACKAGE=REPLACEMENT\n" " graft REPLACEMENT on packages that refer to PACKAGE" msgstr "" -#: guix/transformations.scm:874 +#: guix/transformations.scm:881 msgid "" "\n" " --with-branch=PACKAGE=BRANCH\n" " build PACKAGE from the latest commit of BRANCH" msgstr "" -#: guix/transformations.scm:877 +#: guix/transformations.scm:884 msgid "" "\n" " --with-commit=PACKAGE=COMMIT\n" " build PACKAGE from COMMIT" msgstr "" -#: guix/transformations.scm:880 +#: guix/transformations.scm:887 msgid "" "\n" " --with-git-url=PACKAGE=URL\n" " build PACKAGE from the repository at URL" msgstr "" -#: guix/transformations.scm:883 +#: guix/transformations.scm:890 msgid "" "\n" " --with-patch=PACKAGE=FILE\n" " add FILE to the list of patches of PACKAGE" msgstr "" -#: guix/transformations.scm:886 +#: guix/transformations.scm:893 msgid "" "\n" " --with-latest=PACKAGE\n" " use the latest upstream release of PACKAGE" msgstr "" -#: guix/transformations.scm:889 +#: guix/transformations.scm:896 msgid "" "\n" " --with-c-toolchain=PACKAGE=TOOLCHAIN\n" " build PACKAGE and its dependents with TOOLCHAIN" msgstr "" -#: guix/transformations.scm:892 +#: guix/transformations.scm:899 msgid "" "\n" " --with-debug-info=PACKAGE\n" " build PACKAGE and preserve its debug info" msgstr "" -#: guix/transformations.scm:895 +#: guix/transformations.scm:902 msgid "" "\n" " --without-tests=PACKAGE\n" " build PACKAGE without running its tests" msgstr "" -#: guix/transformations.scm:901 +#: guix/transformations.scm:908 msgid "" "\n" " --help-transform list package transformation options not shown here" msgstr "" -#: guix/transformations.scm:950 +#: guix/transformations.scm:957 #, scheme-format msgid "transformation '~a' had no effect on ~a~%" msgstr "" @@ -5983,12 +6121,12 @@ msgstr[1] "" msgid "~a: invalid Texinfo markup~%" msgstr "" -#: guix/ui.scm:1873 +#: guix/ui.scm:1876 #, scheme-format msgid "invalid syntax: ~a~%" msgstr "" -#: guix/ui.scm:1882 +#: guix/ui.scm:1885 #, scheme-format msgid "Generation ~a\t~a" msgstr "" @@ -5998,7 +6136,7 @@ msgstr "" #. usual way of presenting dates in your locale. #. See https://www.gnu.org/software/guile/manual/html_node/SRFI_002d19-Date-to-string.html #. for details. -#: guix/ui.scm:1892 +#: guix/ui.scm:1895 #, scheme-format msgid "~b ~d ~Y ~T" msgstr "" @@ -6006,74 +6144,74 @@ msgstr "" #. TRANSLATORS: The word "current" here is an adjective for #. "Generation", as in "current generation". Use the appropriate #. gender where applicable. -#: guix/ui.scm:1898 +#: guix/ui.scm:1901 #, scheme-format msgid "~a\t(current)~%" msgstr "" -#: guix/ui.scm:1932 +#: guix/ui.scm:1935 #, scheme-format msgid "cannot lock profile ~a: ~a~%" msgstr "" -#: guix/ui.scm:1934 +#: guix/ui.scm:1937 #, scheme-format msgid "profile ~a is locked by another process~%" msgstr "" -#: guix/ui.scm:1963 +#: guix/ui.scm:1966 #, scheme-format msgid "switched from generation ~a to ~a~%" msgstr "" -#: guix/ui.scm:1979 +#: guix/ui.scm:1982 #, scheme-format msgid "deleting ~a~%" msgstr "" -#: guix/ui.scm:2010 +#: guix/ui.scm:2013 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "" -#: guix/ui.scm:2102 +#: guix/ui.scm:2105 msgid "" "Usage: guix OPTION | COMMAND ARGS...\n" "Run COMMAND with ARGS, if given.\n" msgstr "" -#: guix/ui.scm:2105 +#: guix/ui.scm:2108 msgid "" "\n" " -h, --help display this helpful text again and exit" msgstr "" -#: guix/ui.scm:2107 +#: guix/ui.scm:2110 msgid "" "\n" " -V, --version display version and copyright information and exit" msgstr "" -#: guix/ui.scm:2112 +#: guix/ui.scm:2115 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "" -#: guix/ui.scm:2154 +#: guix/ui.scm:2157 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "" -#: guix/ui.scm:2156 +#: guix/ui.scm:2159 #, scheme-format msgid "Did you mean @code{~a}?" msgstr "" -#: guix/ui.scm:2190 +#: guix/ui.scm:2193 #, scheme-format msgid "guix: missing command name~%" msgstr "" -#: guix/ui.scm:2198 +#: guix/ui.scm:2201 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "" @@ -6398,22 +6536,22 @@ msgstr "" msgid "unsupported manifest format" msgstr "" -#: guix/profiles.scm:2242 +#: guix/profiles.scm:2247 #, scheme-format msgid "while creating directory `~a': ~a" msgstr "" -#: guix/profiles.scm:2247 +#: guix/profiles.scm:2252 #, scheme-format msgid "Please create the @file{~a} directory, with you as the owner." msgstr "" -#: guix/profiles.scm:2256 +#: guix/profiles.scm:2261 #, scheme-format msgid "directory `~a' is not owned by you" msgstr "" -#: guix/profiles.scm:2260 +#: guix/profiles.scm:2265 #, scheme-format msgid "Please change the owner of @file{~a} to user ~s." msgstr "" @@ -7014,11 +7152,16 @@ msgstr "" msgid "'--profile' cannot be used with package options~%" msgstr "" -#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:275 +#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:261 #, scheme-format msgid "no packages specified; creating an empty environment~%" msgstr "" +#: guix/scripts/environment.scm:979 +#, scheme-format +msgid "'--check' is unnecessary when using '--container'; doing nothing~%" +msgstr "" + #: guix/scripts/home/import.scm:179 msgid "" ";; This \"home-environment\" file can be passed to 'guix home reconfigure'\n" @@ -7028,89 +7171,89 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/home.scm:65 +#: guix/scripts/home.scm:66 msgid "" "Usage: guix home [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the home environment declared in FILE according to ACTION.\n" "Some ACTIONS support additional ARGS.\n" msgstr "" -#: guix/scripts/home.scm:71 +#: guix/scripts/home.scm:72 msgid " search search for existing service types\n" msgstr "" -#: guix/scripts/home.scm:73 +#: guix/scripts/home.scm:74 msgid " reconfigure switch to a new home environment configuration\n" msgstr "" -#: guix/scripts/home.scm:75 +#: guix/scripts/home.scm:76 msgid " roll-back switch to the previous home environment configuration\n" msgstr "" -#: guix/scripts/home.scm:77 +#: guix/scripts/home.scm:78 msgid " describe describe the current home environment\n" msgstr "" -#: guix/scripts/home.scm:79 +#: guix/scripts/home.scm:80 msgid " list-generations list the home environment generations\n" msgstr "" -#: guix/scripts/home.scm:81 +#: guix/scripts/home.scm:82 msgid " switch-generation switch to an existing home environment configuration\n" msgstr "" -#: guix/scripts/home.scm:83 +#: guix/scripts/home.scm:84 msgid " delete-generations delete old home environment generations\n" msgstr "" -#: guix/scripts/home.scm:85 +#: guix/scripts/home.scm:86 msgid " build build the home environment without installing anything\n" msgstr "" -#: guix/scripts/home.scm:87 +#: guix/scripts/home.scm:88 msgid " import generates a home environment definition from dotfiles\n" msgstr "" -#: guix/scripts/home.scm:91 +#: guix/scripts/home.scm:92 msgid "" "\n" " -e, --expression=EXPR consider the home-environment EXPR evaluates to\n" " instead of reading FILE, when applicable" msgstr "" -#: guix/scripts/home.scm:196 +#: guix/scripts/home.scm:210 #, scheme-format msgid "'~a' does not return a home environment ~%" msgstr "" -#: guix/scripts/home.scm:280 +#: guix/scripts/home.scm:293 #, scheme-format msgid "'~a' populated with all the Home configuration files~%" msgstr "" -#: guix/scripts/home.scm:282 +#: guix/scripts/home.scm:295 #, scheme-format msgid "" "Run @command{guix home reconfigure ~a/home-configuration.scm} to effectively\n" "deploy the home environment described by these files.\n" msgstr "" -#: guix/scripts/home.scm:289 +#: guix/scripts/home.scm:302 #, scheme-format msgid "no home environment generation, nothing to describe~%" msgstr "" -#: guix/scripts/home.scm:358 +#: guix/scripts/home.scm:371 #, scheme-format msgid "guix home: missing command name~%" msgstr "" -#: guix/scripts/home.scm:360 +#: guix/scripts/home.scm:373 #, scheme-format msgid "Try 'guix home --help' for more information.~%" msgstr "" -#: guix/scripts/home.scm:528 +#: guix/scripts/home.scm:541 #, scheme-format msgid "cannot switch to home environment generation '~a'~%" msgstr "" @@ -7147,7 +7290,7 @@ msgstr "" #: guix/scripts/import/cpan.scm:83 guix/scripts/import/crate.scm:97 #: guix/scripts/import/egg.scm:100 guix/scripts/import/gem.scm:98 -#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:100 +#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:101 #, scheme-format msgid "failed to download meta-data for package '~a'~%" msgstr "" @@ -7222,7 +7365,7 @@ msgid "" " --pin-versions use the exact versions of a module's dependencies" msgstr "" -#: guix/scripts/import/go.scm:117 +#: guix/scripts/import/go.scm:118 #, scheme-format msgid "failed to download meta-data for module '~a'.~%" msgstr "" @@ -7339,6 +7482,11 @@ msgid "" "Import and convert the Texlive package for PACKAGE-NAME.\n" msgstr "" +#: guix/scripts/import/texlive.scm:84 +#, scheme-format +msgid "failed to import package '~a'~%" +msgstr "" + #: guix/scripts/offload.scm:130 #, scheme-format msgid "The 'system' field is deprecated, please use 'systems' instead.~%" @@ -7775,53 +7923,53 @@ msgstr "" msgid "~a: unknown type of REPL~%" msgstr "" -#: guix/scripts/shell.scm:46 +#: guix/scripts/shell.scm:48 msgid "" "Usage: guix shell [OPTION] PACKAGES... [-- COMMAND...]\n" "Build an environment that includes PACKAGES and execute COMMAND or an\n" "interactive shell in that environment.\n" msgstr "" -#: guix/scripts/shell.scm:52 +#: guix/scripts/shell.scm:54 msgid "" "\n" " -D, --development include the development inputs of the next package" msgstr "" -#: guix/scripts/shell.scm:54 +#: guix/scripts/shell.scm:56 msgid "" "\n" " -f, --file=FILE add to the environment the package FILE evaluates to" msgstr "" -#: guix/scripts/shell.scm:56 +#: guix/scripts/shell.scm:58 msgid "" "\n" " -q inhibit loading of 'guix.scm' and 'manifest.scm'" msgstr "" -#: guix/scripts/shell.scm:58 +#: guix/scripts/shell.scm:60 msgid "" "\n" " --rebuild-cache rebuild cached environment, if any" msgstr "" -#: guix/scripts/shell.scm:199 +#: guix/scripts/shell.scm:201 #, scheme-format msgid "ignoring invalid file name: '~a'~%" msgstr "" -#: guix/scripts/shell.scm:280 +#: guix/scripts/shell.scm:266 #, scheme-format msgid "loading environment from '~a'...~%" msgstr "" -#: guix/scripts/shell.scm:286 +#: guix/scripts/shell.scm:272 #, scheme-format msgid "not loading '~a' because not authorized to do so~%" msgstr "" -#: guix/scripts/shell.scm:288 +#: guix/scripts/shell.scm:274 #, scheme-format msgid "" "To allow automatic loading of\n" @@ -7833,60 +7981,76 @@ msgid "" "@end example\n" msgstr "" -#: guix/scripts/shell.scm:386 +#: guix/scripts/shell.scm:431 msgid "" "Consider passing the @option{--check} option once\n" "to make sure your shell does not clobber environment variables." msgstr "" -#: guix/scripts/style.scm:241 +#: guix/scripts/style.scm:499 #, scheme-format msgid "~a: complex expression, bailing out~%" msgstr "" -#: guix/scripts/style.scm:259 +#: guix/scripts/style.scm:517 #, scheme-format msgid "~a: input label '~a' does not match package name, bailing out~%" msgstr "" -#: guix/scripts/style.scm:264 +#: guix/scripts/style.scm:522 #, scheme-format msgid "~a: non-trivial input, bailing out~%" msgstr "" -#: guix/scripts/style.scm:288 +#: guix/scripts/style.scm:546 #, scheme-format msgid "~a: input expression is too short~%" msgstr "" -#: guix/scripts/style.scm:380 +#: guix/scripts/style.scm:638 #, scheme-format msgid "~a: unsupported input style, bailing out~%" msgstr "" -#: guix/scripts/style.scm:392 +#: guix/scripts/style.scm:650 #, scheme-format msgid "would be edited~%" msgstr "" -#: guix/scripts/style.scm:482 +#: guix/scripts/style.scm:721 +#, scheme-format +msgid "no definition location for package ~a~%" +msgstr "" + +#: guix/scripts/style.scm:767 +#, scheme-format +msgid "~a: unknown styling~%" +msgstr "~a: tuntematon muotoilu~%" + +#: guix/scripts/style.scm:774 #, scheme-format msgid "~a: invalid input simplification policy~%" msgstr "" -#: guix/scripts/style.scm:496 +#: guix/scripts/style.scm:788 msgid "" "Usage: guix style [OPTION]... [PACKAGE]...\n" "Update package definitions to the latest style.\n" msgstr "" -#: guix/scripts/style.scm:498 +#: guix/scripts/style.scm:790 +msgid "" +"\n" +" -S, --styling=RULE apply RULE, a styling rule" +msgstr "" + +#: guix/scripts/style.scm:793 msgid "" "\n" " -n, --dry-run display files that would be edited but do nothing" msgstr "" -#: guix/scripts/style.scm:504 +#: guix/scripts/style.scm:799 msgid "" "\n" " --input-simplification=POLICY\n" @@ -8036,3 +8200,6 @@ msgstr "" #: nix/nix-daemon/guix-daemon.cc:162 msgid "produce debugging output" msgstr "" + +#~ msgid "Please select a disk." +#~ msgstr "Valitse levyasema." diff --git a/po/guix/fr.po b/po/guix/fr.po index 2baa22c96c..a90692e38d 100644 --- a/po/guix/fr.po +++ b/po/guix/fr.po @@ -4,9 +4,10 @@ # Rémy Chevalier , 2013, 2014. # Frédéric Marchal , 2017. # Julien Lepiller , 2017-2020, 2021. -# Julien Lepiller , 2021. +# Julien Lepiller , 2021, 2022. # Marek Felšöci , 2021. # Philippe SWARTVAGHER , 2021. +# Aurelien Coussat , 2022. # # Note de Frédéric Marchal: Le nom « shepherd » est le nom d'un démon (voir # https://www.gnu.org/software/shepherd/). Je ne l'ai pas traduit dans les @@ -21,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: guix 1.2.0-pre3\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" -"PO-Revision-Date: 2021-12-25 14:16+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" +"PO-Revision-Date: 2022-01-30 10:16+0000\n" "Last-Translator: Julien Lepiller \n" "Language-Team: French \n" "Language: fr\n" @@ -73,37 +74,37 @@ msgstr "" msgid "Try adding @code{(use-service-modules ~a)}." msgstr "Essayez d'ajouter @code{(use-service-modules ~a)}." -#: gnu/packages.scm:96 +#: gnu/packages.scm:97 #, scheme-format msgid "~a: patch not found" msgstr "~a : correctif introuvable" -#: gnu/packages.scm:480 gnu/packages.scm:521 +#: gnu/packages.scm:481 gnu/packages.scm:522 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "spécification du paquet « ~a » ambiguë~%" -#: gnu/packages.scm:481 gnu/packages.scm:522 +#: gnu/packages.scm:482 gnu/packages.scm:523 #, scheme-format msgid "choosing ~a@~a from ~a~%" msgstr "choix de ~a@~a à l'emplacement ~a~%" -#: gnu/packages.scm:486 guix/scripts/package.scm:216 +#: gnu/packages.scm:487 guix/scripts/package.scm:218 #, scheme-format msgid "package '~a' has been superseded by '~a'~%" msgstr "le paquet « ~a » a été remplacé par « ~a »~%" -#: gnu/packages.scm:493 gnu/packages.scm:510 +#: gnu/packages.scm:494 gnu/packages.scm:511 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A : paquet introuvable pour la version ~a~%" -#: gnu/packages.scm:494 gnu/packages.scm:511 +#: gnu/packages.scm:495 gnu/packages.scm:512 #, scheme-format msgid "~A: unknown package~%" msgstr "~A : paquet inconnu~%" -#: gnu/packages.scm:550 +#: gnu/packages.scm:551 #, scheme-format msgid "package `~a' lacks output `~a'~%" msgstr "le paquet « ~a » requiert la sortie « ~a »~%" @@ -120,7 +121,7 @@ msgid "" "system profile, boot script, and so on." msgstr "" "Construit le répertoire de plus haut niveau du système d'exploitation,\n" -"qui se réfère à son tour à tout ce que le système d'exploitation a\n" +"qui se réfère à son tour à tout ce dont le système d'exploitation a\n" "besoin : son noyau, l'image de démarrage, le profil du système, le script\n" "de démarrage, etc." @@ -334,23 +335,17 @@ msgstr "" "processus qui tournent encore quelques secondes après l'envoie du\n" "@code{SIGTERM} sont terminés avec @code{SIGKILL}." -#: gnu/home/services.scm:127 -#, fuzzy -#| msgid "" -#| "Build the operating system top-level directory, which in\n" -#| "turn refers to everything the operating system needs: its kernel, initrd,\n" -#| "system profile, boot script, and so on." +#: gnu/home/services.scm:128 msgid "" "Build the home environment top-level directory,\n" "which in turn refers to everything the home environment needs: its\n" "packages, configuration files, activation script, and so on." msgstr "" -"Construit le répertoire de plus haut niveau du système d'exploitation,\n" -"qui se réfère à son tour à tout ce que le système d'exploitation a\n" -"besoin : son noyau, l'image de démarrage, le profil du système, le script\n" -"de démarrage, etc." +"Construit le répertoire de plus haut niveau de l'environnement personnel,\n" +"qui se réfère à son tour à tout ce dont l'environnement personnel a\n" +"besoin : ses paquets, ses fichiers de configuration, le script d'activation, etc." -#: gnu/home/services.scm:158 +#: gnu/home/services.scm:159 #, scheme-format msgid "" "This is the @dfn{home profile} and can be found in\n" @@ -358,48 +353,57 @@ msgid "" "configuration files that the user has declared in their\n" "@code{home-environment} record." msgstr "" +"C'est le @dfn{profil personnel} et il se trouve dans\n" +"@file{~/.guix-home/profile}. Il contient les paquets et\n" +"les fichiers de configuration que vous avez déclarés dans votre\n" +"enregistrement @code{home-environment}." -#: gnu/home/services.scm:180 +#: gnu/home/services.scm:181 #, scheme-format msgid "duplicate definition for `~a' environment variable ~%" -msgstr "" +msgstr "définition en double pour la variable d'environnement « ~a »~%" -#: gnu/home/services.scm:242 -#, fuzzy -#| msgid "checking the environment variables visible from shell '~a'...~%" +#: gnu/home/services.scm:243 msgid "Set the environment variables." -msgstr "vérification des variables d'environnement visibles depuis le shell « ~a »…~%" +msgstr "Définit les variables d'environnement." -#: gnu/home/services.scm:253 -#, fuzzy, scheme-format -#| msgid "duplicate '~a' entry for /etc" +#: gnu/home/services.scm:254 +#, scheme-format msgid "duplicate '~a' entry for files/" -msgstr "entrée « ~a » dupliquée dans /etc" +msgstr "entrée « ~a » dupliquée dans files/" -#: gnu/home/services.scm:277 +#: gnu/home/services.scm:278 #, scheme-format msgid "" "Configuration files for programs that\n" "will be put in @file{~/.guix-home/files}." msgstr "" +"Fichiers de configuration pour les programmes qui\n" +"se retrouveront dans @file{~/.guix-home/files}." #. TRANSLATORS: 'on-first-login' is the name of a service and #. shouldn't be translated -#: gnu/home/services.scm:308 +#: gnu/home/services.scm:309 msgid "" "XDG_RUNTIME_DIR doesn't exists, on-first-login script\n" "won't execute anything. You can check if xdg runtime directory exists,\n" "XDG_RUNTIME_DIR variable is set to appropriate value and manually execute the\n" "script by running '$HOME/.guix-home/on-first-login'" msgstr "" +"XDG_RUNTIME_DIR n'existe pas, le script on-first-login n'exécutera\n" +"rien. Vous pouvez vérifier si le répertoire xdg à l'exécution existe, que la\n" +"variable XDG_RUNTIME_DIR est définie à la bonne valeur et exécuter\n" +"manuellement le script en lançant « $HOME/.guix-home/on-first-login »" -#: gnu/home/services.scm:328 +#: gnu/home/services.scm:329 msgid "" "Run gexps on first user login. Can be\n" "extended with one gexp." msgstr "" +"Lance des gexps à la première connexion. Il peut\n" +"être étendu avec une gexp." -#: gnu/home/services.scm:391 +#: gnu/home/services.scm:392 msgid "" "Run gexps to activate the current\n" "generation of home environment and update the state of the home\n" @@ -407,61 +411,70 @@ msgid "" "reconfiguration or generation switching. This service can be extended\n" "with one gexp, but many times, and all gexps must be idempotent." msgstr "" +"Lance des gexps pour activer la génération actuelle de l'environnement personnel\n" +"et met à jour l'état du répertoire personnel. Le script @command{activate} est\n" +"automatiquement appelé à la reconfiguration ou au changement de génération.\n" +"Ce service peut être étendu avec une gexp, mais plusieurs fois, et toutes les gexps\n" +"doivent être idempotentes." -#: gnu/home/services.scm:472 +#: gnu/home/services.scm:473 #, scheme-format msgid "" "Comparing ~a and\n" "~10t~a..." msgstr "" +"Comparaison entre ~a et\n" +"~10t~a…" -#: gnu/home/services.scm:474 +#: gnu/home/services.scm:475 #, scheme-format msgid " done (~a)\n" -msgstr "" +msgstr " terminé (~a)\n" #. TRANSLATORS: 'on-change' is the name of a service type, it #. probably shouldn't be translated. -#: gnu/home/services.scm:483 +#: gnu/home/services.scm:484 msgid "" "Evaluating on-change gexps.\n" "\n" msgstr "" +"Évaluation des gexps on-change\n" +"\n" -#: gnu/home/services.scm:485 +#: gnu/home/services.scm:486 msgid "" "On-change gexps evaluation finished.\n" "\n" msgstr "" +"Évaluation des gexps on-change terminée.\n" +"\n" -#: gnu/home/services.scm:499 +#: gnu/home/services.scm:500 msgid "" "G-expressions to run if the specified files have changed since the\n" "last generation. The extension should be a list of lists where the\n" "first element is the pattern for file or directory that expected to be\n" "changed, and the second element is the G-expression to be evaluated." msgstr "" +"Les G-expressions à lancer si les fichiers spécifiés ont changé depuis la\n" +"dernière génération. L'extension devrait être une liste de listes où le premier\n" +"élément est le motif de fichier ou de répertoire qui a changé, et le second\n" +"élément est la G-expression à évaluer." -#: gnu/home/services.scm:519 -#, fuzzy -#| msgid "" -#| "Store provenance information about the system in the system\n" -#| "itself: the channels used when building the system, and its configuration\n" -#| "file, when available." +#: gnu/home/services.scm:520 msgid "" "Store provenance information about the home environment in the home\n" "environment itself: the channels used when building the home\n" "environment, and its configuration file, when available." msgstr "" -"Enregistre les informations de provenance du système dans le système\n" -"lui-même : les canaux utilisés lors de la construction du système et son fichier\n" -"de configuration, s'il est disponible." +"Enregistre les informations de provenance de l'environnement personnel dans l'environnement\n" +"personnel lui-même : les canaux utilisés lors de la construction de l’environnement personnel\n" +"et son fichier de configuration, s'il est disponible." #: gnu/home/services/symlink-manager.scm:144 -#, fuzzy, scheme-format -#| msgid "copying to '~a'..." +#, scheme-format msgid "Backing up ~a..." -msgstr "copie vers « ~a »..." +msgstr "Sauvegarde de ~a..." #: gnu/home/services/symlink-manager.scm:147 #: gnu/home/services/symlink-manager.scm:169 @@ -469,40 +482,43 @@ msgstr "copie vers « ~a »..." #: gnu/home/services/symlink-manager.scm:215 #: gnu/home/services/symlink-manager.scm:223 msgid " done\n" -msgstr "" +msgstr " fait\n" #: gnu/home/services/symlink-manager.scm:154 msgid "" "Cleaning up symlinks from previous home-environment.\n" "\n" msgstr "" +"Nettoyage des liens symboliques des environnements personnels précédents.\n" +"\n" #: gnu/home/services/symlink-manager.scm:158 msgid "" "Cleanup finished.\n" "\n" msgstr "" +"Nettoyage terminé.\n" +"\n" #: gnu/home/services/symlink-manager.scm:166 #: gnu/home/services/symlink-manager.scm:182 -#, fuzzy, scheme-format -#| msgid "deploying to ~a...~%" +#, scheme-format msgid "Removing ~a..." -msgstr "déploiement vers ~a...~%" +msgstr "Suppression de ~a..." #: gnu/home/services/symlink-manager.scm:172 #, scheme-format msgid "Skipping ~a (not an empty directory)... done\n" -msgstr "" +msgstr "~a ignoré (n'est pas un répertoire vide)… terminé\n" #: gnu/home/services/symlink-manager.scm:187 #, scheme-format msgid "Skipping ~a (not a symlink to store)... done\n" -msgstr "" +msgstr "~a ignoré (n'est pas un lien symbolique vers le dépôt)… terminé\n" #: gnu/home/services/symlink-manager.scm:198 msgid "New symlinks to home-environment will be created soon.\n" -msgstr "" +msgstr "Les nouveaux liens symboliques vers l'environnement personnel vont bientôt être créés.\n" #: gnu/home/services/symlink-manager.scm:200 #, scheme-format @@ -510,22 +526,23 @@ msgid "" "All conflicting files will go to ~a.\n" "\n" msgstr "" +"Tous les fichiers en conflit iront dans ~a.\n" +"\n" #: gnu/home/services/symlink-manager.scm:210 #, scheme-format msgid "Skipping ~a (directory already exists)... done\n" -msgstr "" +msgstr "~a ignoré (le répertoire existe déja)… terminé\n" #: gnu/home/services/symlink-manager.scm:213 -#, fuzzy, scheme-format -#| msgid "deploying to ~a...~%" +#, scheme-format msgid "Creating ~a..." -msgstr "déploiement vers ~a...~%" +msgstr "Création de ~a..." #: gnu/home/services/symlink-manager.scm:220 #, scheme-format msgid "Symlinking ~a -> ~a..." -msgstr "" +msgstr "Création du lien symbolique ~a -> ~a…" #: gnu/home/services/symlink-manager.scm:234 msgid "" @@ -533,6 +550,9 @@ msgid "" "Finished updating symlinks.\n" "\n" msgstr "" +" terminé\n" +"Fin de la mise à jour des liens symboliques.\n" +"\n" #: gnu/home/services/symlink-manager.scm:248 msgid "" @@ -541,6 +561,10 @@ msgid "" "on every activation. If an existing file would be overwritten by a\n" "symlink, backs up that file first." msgstr "" +"Fournit un script @code{update-symlinks}, qui crée des liens symboliques\n" +"vers les fichiers de configuration et les répertoires à chaque activation. Si\n" +"un fichier existant doit être remplacé par un lien symbolique, sauvegarde\n" +"ce fichier avant." #: gnu/system/file-systems.scm:135 #, scheme-format @@ -723,12 +747,12 @@ msgstr "Outil de téléchargement MELPA non pris en charge : ~a, utilisation de msgid "Updater for ELPA packages" msgstr "Logiciel de mise à jour des paquets ELPA" -#: guix/import/github.scm:170 +#: guix/import/github.scm:175 #, scheme-format msgid "~a is unreachable (~a)~%" msgstr "~a n'a pu être atteint (~a)~%" -#: guix/import/github.scm:260 +#: guix/import/github.scm:274 msgid "Updater for GitHub packages" msgstr "Logiciel de mise à jour des paquets GitHub" @@ -764,12 +788,22 @@ msgstr "paquet GNU introuvable pour ~a" msgid "failed to determine latest release of GNU ~a" msgstr "impossible de déterminer la dernière version de GNU ~a" -#: guix/import/go.scm:569 +#: guix/import/go.scm:571 #, scheme-format msgid "unsupported vcs type '~a' for package '~a'" msgstr "type de gestion de version « ~a » non pris en charge pour « ~a »" -#: guix/import/go.scm:647 +#: guix/import/go.scm:594 +#, scheme-format +msgid "version ~a of ~a is not available~%" +msgstr "La version ~a de ~a n'est pas disponible~%" + +#: guix/import/go.scm:597 +#, scheme-format +msgid "Pick one of the following available versions:~{ ~a~}." +msgstr "Choisissez une des versions suivantes disponibles : ~{~a~}." + +#: guix/import/go.scm:671 #, scheme-format msgid "" "Failed to import package ~s.\n" @@ -780,15 +814,6 @@ msgstr "" "raison : ~s n'a pas pu être récupéré : erreur HTTP ~a (~s).\n" "Ce paquet et ses dépendances ne seront pas importés.~%" -#: guix/import/go.scm:656 -#, scheme-format -msgid "" -"Failed to import package ~s.\n" -"reason: ~s.~%" -msgstr "" -"Échec de l'import du paquet ~s.\n" -"raison : ~s.~%" - #: guix/import/minetest.scm:178 #, scheme-format msgid "In ~a: author names must consist of at least a single character.~%" @@ -882,77 +907,102 @@ msgstr "opam : le paquet « ~a » est introuvable~%" msgid "Updater for OPAM packages" msgstr "Logiciel de mise à jour des paquets OPAM" -#: guix/import/pypi.scm:230 +#: guix/import/pypi.scm:233 msgid "Could not extract requirement name in spec:" msgstr "Impossible d'extraire le nom du prérequis dans la spécification :" -#: guix/import/pypi.scm:290 +#: guix/import/pypi.scm:293 #, scheme-format msgid "parse-requires.txt reached an unexpected condition on line ~a~%" msgstr "parse-requires.txt a atteint une erreur inattendue à la ligne ~a~%" -#: guix/import/pypi.scm:356 +#: guix/import/pypi.scm:359 #, scheme-format msgid "Failed to extract file: ~a from wheel.~%" msgstr "Impossible d'extraire le fichier : ~a à partir de l'archive wheel.~%" -#: guix/import/pypi.scm:385 +#: guix/import/pypi.scm:388 #, scheme-format msgid "Cannot guess requirements from source archive: no requires.txt file found.~%" msgstr "Impossible de deviner les prérequis à partir de l'archive source : aucun fichier requires.txt n'a été trouvé.~%" -#: guix/import/pypi.scm:390 +#: guix/import/pypi.scm:393 #, scheme-format msgid "Unsupported archive format; cannot determine package dependencies from source archive: ~a~%" msgstr "Format d'archive non pris en charge ; impossible de déterminer les dépendances du paquet à partir de l'archive des sources : ~a~%" -#: guix/import/pypi.scm:489 +#: guix/import/pypi.scm:434 +#, scheme-format +msgid "project name ~a does not appear verbatim in the PyPI URI~%" +msgstr "le nom de projet ~a n'apparaît pas tel-quel dans l'URI PyPI~%" + +#: guix/import/pypi.scm:437 +#, scheme-format +msgid "" +"The PyPI URI is: @url{~a}. You should review the\n" +"pypi-uri declaration in the generated package. You may need to replace ~s with\n" +"a substring of the PyPI URI that identifies the package." +msgstr "" +"L'URI PyPI est : @url{~a}. Vous devriez vérifier la déclaration\n" +"pypi-uri dans le paquet généré. Vous devrez peut-être remplacer ~s par\n" +"une sous-chaîne de l'URI PyPI qui identifie le paquet." + +#: guix/import/pypi.scm:505 #, scheme-format msgid "no source release for pypi package ~a ~a~%" msgstr "aucune version source publiée pour le paquet pypi ~a ~a~%" -#: guix/import/pypi.scm:554 +#: guix/import/pypi.scm:509 +#, scheme-format +msgid "" +"This indicates that the\n" +"package is available on PyPI, but only as a \"wheel\" containing binaries, not\n" +"source. To build it from source, refer to the upstream repository at\n" +"@uref{~a}." +msgstr "" + +#: guix/import/pypi.scm:579 msgid "Updater for PyPI packages" msgstr "Logiciel de mise à jour des paquets PyPI" -#: gnu/installer.scm:214 +#: gnu/installer.scm:217 msgid "Locale" msgstr "Paramètres régionaux" -#: gnu/installer.scm:230 gnu/installer/newt/timezone.scm:58 +#: gnu/installer.scm:233 gnu/installer/newt/timezone.scm:58 msgid "Timezone" msgstr "Fuseau horaire" -#: gnu/installer.scm:247 +#: gnu/installer.scm:250 msgid "Keyboard mapping selection" msgstr "Sélection de la disposition du clavier" -#: gnu/installer.scm:256 gnu/installer/newt/hostname.scm:26 +#: gnu/installer.scm:259 gnu/installer/newt/hostname.scm:26 msgid "Hostname" msgstr "Nom d'hôte" -#: gnu/installer.scm:265 +#: gnu/installer.scm:268 msgid "Network selection" msgstr "Sélection du réseau" -#: gnu/installer.scm:272 +#: gnu/installer.scm:275 msgid "Substitute server discovery" msgstr "Découverte de serveurs de substituts" -#: gnu/installer.scm:279 gnu/installer/newt/user.scm:68 -#: gnu/installer/newt/user.scm:205 +#: gnu/installer.scm:282 gnu/installer/newt/user.scm:67 +#: gnu/installer/newt/user.scm:204 msgid "User creation" msgstr "Création de l'utilisateur" -#: gnu/installer.scm:287 +#: gnu/installer.scm:290 msgid "Services" msgstr "Services" -#: gnu/installer.scm:298 +#: gnu/installer.scm:301 msgid "Partitioning" msgstr "Partitionnement" -#: gnu/installer.scm:305 gnu/installer/newt/final.scm:53 +#: gnu/installer.scm:308 gnu/installer/newt/final.scm:53 msgid "Configuration file" msgstr "Fichier de configuration" @@ -964,19 +1014,85 @@ msgstr "Impossible de déterminer l'état de connman." msgid "Unable to find expected regexp." msgstr "Impossible de trouver l'expression régulière attendue." -#: gnu/installer/newt.scm:52 +#: gnu/installer/newt.scm:58 msgid "Press for installation parameters." msgstr "Appuyez sur pour voir les paramètres d'installation." -#: gnu/installer/newt.scm:65 -#, scheme-format -msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +#: gnu/installer/newt.scm:68 +#, fuzzy +#| msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. You may choose to exit or create a dump archive." msgstr "L'installateur a rencontré un problème inattendu. La trace de débogage est affichée ci-dessous. Merci de l'envoyer par courriel à <~a>." -#: gnu/installer/newt.scm:68 +#: gnu/installer/newt.scm:71 msgid "Unexpected problem" msgstr "Problème inattendu" +#: gnu/installer/newt.scm:75 +msgid "Dump" +msgstr "" + +#: gnu/installer/newt.scm:76 gnu/installer/newt/ethernet.scm:79 +#: gnu/installer/newt/keymap.scm:56 gnu/installer/newt/locale.scm:43 +#: gnu/installer/newt/network.scm:65 gnu/installer/newt/network.scm:82 +#: gnu/installer/newt/page.scm:315 gnu/installer/newt/page.scm:679 +#: gnu/installer/newt/page.scm:763 gnu/installer/newt/page.scm:828 +#: gnu/installer/newt/partition.scm:54 gnu/installer/newt/partition.scm:90 +#: gnu/installer/newt/partition.scm:125 gnu/installer/newt/partition.scm:140 +#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 +#: gnu/installer/newt/partition.scm:706 gnu/installer/newt/partition.scm:764 +#: gnu/installer/newt/partition.scm:775 gnu/installer/newt/services.scm:124 +#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/wifi.scm:206 +msgid "Exit" +msgstr "Sortir" + +#: gnu/installer/newt.scm:82 +#, scheme-format +msgid "The dump archive was created as ~a. Would you like to send this archive to the Guix servers?" +msgstr "" + +#: gnu/installer/newt.scm:84 +msgid "Dump archive created" +msgstr "" + +#: gnu/installer/newt.scm:88 +#, scheme-format +msgid "The dump was uploaded as ~a. Please report it by email to ~a." +msgstr "" + +#: gnu/installer/newt.scm:90 +#, fuzzy +#| msgid "some services could not be upgraded~%" +msgid "The dump could not be uploaded." +msgstr "certains services n'ont pas pu être mis à jour~%" + +#: gnu/installer/newt.scm:93 +msgid "Dump upload result" +msgstr "" + +#: gnu/installer/newt.scm:132 +#, fuzzy, scheme-format +#| msgid "Command failed with exit code ~a.~%" +msgid "External command ~s exited with code ~a" +msgstr "La commande a échouée avec le code ~a.~%" + +#: gnu/installer/newt.scm:135 +#, scheme-format +msgid "External command ~s terminated by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:138 +#, scheme-format +msgid "External command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:140 +#, fuzzy +#| msgid "internal commands" +msgid "External command error" +msgstr "commandes internes" + #: gnu/installer/newt/ethernet.scm:66 msgid "No ethernet service available, please try again." msgstr "Aucun service de réseau filaire disponible, réessayez." @@ -985,59 +1101,45 @@ msgstr "Aucun service de réseau filaire disponible, réessayez." msgid "No service" msgstr "Aucun service" -#: gnu/installer/newt/ethernet.scm:76 +#: gnu/installer/newt/ethernet.scm:74 msgid "Please select an ethernet network." msgstr "Sélectionnez un réseau filaire." -#: gnu/installer/newt/ethernet.scm:77 +#: gnu/installer/newt/ethernet.scm:75 msgid "Ethernet connection" msgstr "Connexion filaire" -#: gnu/installer/newt/ethernet.scm:81 gnu/installer/newt/keymap.scm:56 -#: gnu/installer/newt/locale.scm:43 gnu/installer/newt/network.scm:63 -#: gnu/installer/newt/network.scm:84 gnu/installer/newt/page.scm:309 -#: gnu/installer/newt/page.scm:673 gnu/installer/newt/page.scm:758 -#: gnu/installer/newt/partition.scm:56 gnu/installer/newt/partition.scm:91 -#: gnu/installer/newt/partition.scm:126 gnu/installer/newt/partition.scm:141 -#: gnu/installer/newt/partition.scm:638 gnu/installer/newt/partition.scm:661 -#: gnu/installer/newt/partition.scm:707 gnu/installer/newt/partition.scm:765 -#: gnu/installer/newt/partition.scm:776 gnu/installer/newt/services.scm:130 -#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:204 -#: gnu/installer/newt/wifi.scm:206 -msgid "Exit" -msgstr "Sortir" - #: gnu/installer/newt/final.scm:46 #, scheme-format msgid "We're now ready to proceed with the installation! A system configuration file has been generated, it is displayed below. This file will be available as '~a' on the installed system. The new system will be created from this file once you've pressed OK. This will take a few minutes." msgstr "Nous sommes maintenant prêts à commencer l'installation ! Un fichier de configuration du système a été généré, il est affiché plus bas. Ce fichier sera disponible dans « ~a » sur le système une fois installé. Le nouveau système sera créé à partir de ce fichier une fois que vous aurez appuyé sur OK. Cela prendra quelques minutes." -#: gnu/installer/newt/final.scm:70 +#: gnu/installer/newt/final.scm:68 msgid "Installation complete" msgstr "Installation terminée" -#: gnu/installer/newt/final.scm:71 gnu/installer/newt/parameters.scm:45 +#: gnu/installer/newt/final.scm:69 gnu/installer/newt/parameters.scm:45 #: gnu/installer/newt/welcome.scm:145 msgid "Reboot" msgstr "Redémarrer" -#: gnu/installer/newt/final.scm:72 +#: gnu/installer/newt/final.scm:70 msgid "Congratulations! Installation is now complete. You may remove the device containing the installation image and press the button to reboot." msgstr "Félicitations ! L'installation est maintenant terminée. Vous pouvez retirer le périphérique contenant l'image d'installation et appuyer sur le bouton pour redémarrer." -#: gnu/installer/newt/final.scm:86 +#: gnu/installer/newt/final.scm:84 msgid "Installation failed" msgstr "Installation échouée" -#: gnu/installer/newt/final.scm:87 +#: gnu/installer/newt/final.scm:85 msgid "Resume" msgstr "Reprendre" -#: gnu/installer/newt/final.scm:88 +#: gnu/installer/newt/final.scm:86 msgid "Restart the installer" msgstr "Redémarrer l'installateur" -#: gnu/installer/newt/final.scm:89 +#: gnu/installer/newt/final.scm:87 msgid "The final system installation step failed. You can resume from a specific step, or restart the installer." msgstr "La dernière étape de l'installation du système a échouée. Vous pouvez reprendre à une étape spécifique ou redémarrer l'installateur." @@ -1065,9 +1167,9 @@ msgstr "Choisissez l'un des paramètres suivants ou appuyez sur « Retour » pou msgid "Installation parameters" msgstr "Paramètres d'installation" -#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:74 -#: gnu/installer/newt/locale.scm:63 gnu/installer/newt/locale.scm:78 -#: gnu/installer/newt/locale.scm:94 gnu/installer/newt/partition.scm:595 +#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:72 +#: gnu/installer/newt/locale.scm:61 gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:88 gnu/installer/newt/partition.scm:594 #: gnu/installer/newt/timezone.scm:64 msgid "Back" msgstr "Retour" @@ -1088,16 +1190,16 @@ msgstr "Choisissez votre disposition de clavier. Cela ne sera utilisé que penda msgid "Please choose your keyboard layout. It will be used during the install process, and for the installed system. Non-Latin layouts can be toggled with Alt+Shift. You can switch to a different layout at any time from the parameters menu." msgstr "Choisissez votre disposition de clavier. Elle sera utilisée pour le processus d'installation et pour le système installé. Les dispositions Non-Latin sont accessibles avec Alt+Shift. Vous pouvez passer à une autre disposition à tout moment à partir du menu des paramètres." -#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:62 -#: gnu/installer/newt/page.scm:308 +#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/page.scm:314 msgid "Continue" msgstr "Continuer" -#: gnu/installer/newt/keymap.scm:67 +#: gnu/installer/newt/keymap.scm:65 msgid "Variant" msgstr "Variante" -#: gnu/installer/newt/keymap.scm:70 +#: gnu/installer/newt/keymap.scm:68 msgid "Please choose a variant for your keyboard layout." msgstr "Choisissez une variante pour la disposition de votre clavier." @@ -1109,35 +1211,35 @@ msgstr "Paramètres linguistiques" msgid "Choose the language to use for the installation process and for the installed system." msgstr "Choisissez la langue à utiliser pour le processus d'installation et le système installé." -#: gnu/installer/newt/locale.scm:57 +#: gnu/installer/newt/locale.scm:55 msgid "Locale location" msgstr "Situation géographique" -#: gnu/installer/newt/locale.scm:60 +#: gnu/installer/newt/locale.scm:58 msgid "Choose a territory for this language." msgstr "Choisissez votre situation géographique." -#: gnu/installer/newt/locale.scm:71 +#: gnu/installer/newt/locale.scm:67 msgid "Locale codeset" msgstr "Jeu de caractères" -#: gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:70 msgid "Choose the locale encoding." msgstr "Choisissez l'encodage de la langue." -#: gnu/installer/newt/locale.scm:86 +#: gnu/installer/newt/locale.scm:80 msgid "Locale modifier" msgstr "Modificateur régional" -#: gnu/installer/newt/locale.scm:89 +#: gnu/installer/newt/locale.scm:83 msgid "Choose your locale's modifier. The most frequent modifier is euro. It indicates that you want to use Euro as the currency symbol." msgstr "Choisissez le modificateur pour vos paramètres linguistiques. Le plus courant est « euro ». Cela indique que vous voulez utiliser l'Euro comme symbole monétaire." -#: gnu/installer/newt/locale.scm:190 +#: gnu/installer/newt/locale.scm:181 msgid "No location" msgstr "Pas de situation géographique" -#: gnu/installer/newt/locale.scm:217 +#: gnu/installer/newt/locale.scm:208 msgid "No modifier" msgstr "Pas de modificateur" @@ -1153,277 +1255,281 @@ msgstr "Menu d'installation" msgid "Abort" msgstr "Annuler" -#: gnu/installer/newt/network.scm:61 gnu/installer/newt/network.scm:80 +#: gnu/installer/newt/network.scm:63 gnu/installer/newt/network.scm:78 msgid "Internet access" msgstr "Accès internet" -#: gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/network.scm:66 msgid "The install process requires Internet access but no network devices were found. Do you want to continue anyway?" msgstr "Le processus d'installation a besoin d'un accès à internet mais aucun périphérique réseau n'a été trouvé. Voulez-vous tout de même continuer ?" -#: gnu/installer/newt/network.scm:78 +#: gnu/installer/newt/network.scm:76 msgid "The install process requires Internet access. Please select a network device." msgstr "Le processus d'installation a besoin d'une connexion internet. Sélectionnez un périphérique réseau." -#: gnu/installer/newt/network.scm:103 +#: gnu/installer/newt/network.scm:99 msgid "Powering technology" msgstr "Démarrage de la technologie" -#: gnu/installer/newt/network.scm:104 +#: gnu/installer/newt/network.scm:100 #, scheme-format msgid "Waiting for technology ~a to be powered." msgstr "En attente du démarrage de ~a." -#: gnu/installer/newt/network.scm:128 +#: gnu/installer/newt/network.scm:139 msgid "Checking connectivity" msgstr "Vérification de la connexion" -#: gnu/installer/newt/network.scm:129 +#: gnu/installer/newt/network.scm:140 msgid "Waiting for Internet access establishment..." msgstr "Attente de l'accès internet…" -#: gnu/installer/newt/network.scm:139 -msgid "The selected network does not provide access to the Internet, please try again." -msgstr "Le réseau sélectionné ne fournit pas d'accès à internet, réessayez." +#: gnu/installer/newt/network.scm:150 +msgid "The selected network does not provide access to the Internet and the Guix substitute server, please try again." +msgstr "Le réseau sélectionné ne fournit pas d'accès à internet et au serveur de substituts de Guix, réessayez." -#: gnu/installer/newt/network.scm:141 gnu/installer/newt/wifi.scm:108 +#: gnu/installer/newt/network.scm:152 gnu/installer/newt/wifi.scm:108 msgid "Connection error" msgstr "Erreur à la connexion" -#: gnu/installer/newt/page.scm:198 +#: gnu/installer/newt/page.scm:204 #, scheme-format msgid "Connecting to ~a, please wait." msgstr "Connexion à ~a, patientez." -#: gnu/installer/newt/page.scm:199 +#: gnu/installer/newt/page.scm:205 msgid "Connection in progress" msgstr "Connexion en cours" -#: gnu/installer/newt/page.scm:218 gnu/installer/newt/user.scm:60 +#: gnu/installer/newt/page.scm:224 gnu/installer/newt/user.scm:59 msgid "Show" msgstr "Montrer" -#: gnu/installer/newt/page.scm:225 gnu/installer/newt/page.scm:672 -#: gnu/installer/newt/page.scm:757 gnu/installer/newt/partition.scm:458 -#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 -#: gnu/installer/newt/partition.scm:699 gnu/installer/newt/user.scm:66 -#: gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/page.scm:231 gnu/installer/newt/page.scm:678 +#: gnu/installer/newt/page.scm:762 gnu/installer/newt/partition.scm:457 +#: gnu/installer/newt/partition.scm:636 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:698 gnu/installer/newt/user.scm:65 +#: gnu/installer/newt/user.scm:202 msgid "OK" msgstr "OK" -#: gnu/installer/newt/page.scm:251 +#: gnu/installer/newt/page.scm:257 msgid "Please enter a non empty input." msgstr "Saisissez une valeur non vide." -#: gnu/installer/newt/page.scm:252 gnu/installer/newt/user.scm:123 +#: gnu/installer/newt/page.scm:258 gnu/installer/newt/user.scm:122 msgid "Empty input" msgstr "Valeur vide" -#: gnu/installer/newt/page.scm:760 +#: gnu/installer/newt/page.scm:765 msgid "Edit" msgstr "Modifier" -#: gnu/installer/newt/partition.scm:47 +#: gnu/installer/newt/page.scm:825 +msgid "Ok" +msgstr "" + +#: gnu/installer/newt/partition.scm:45 msgid "Everything is one partition" msgstr "Tout sur une partition" -#: gnu/installer/newt/partition.scm:48 +#: gnu/installer/newt/partition.scm:46 msgid "Separate /home partition" msgstr "Partition /home séparée" -#: gnu/installer/newt/partition.scm:50 +#: gnu/installer/newt/partition.scm:48 msgid "Please select a partitioning scheme." msgstr "Sélectionnez un schéma de partitionnement." -#: gnu/installer/newt/partition.scm:51 +#: gnu/installer/newt/partition.scm:49 msgid "Partition scheme" msgstr "Schéma de partitionnement" #. TRANSLATORS: The ~{ and ~} format specifiers are used to iterate the list #. of device names of the user partitions that will be formatted. -#: gnu/installer/newt/partition.scm:65 +#: gnu/installer/newt/partition.scm:63 #, scheme-format msgid "We are about to write the configured partition table to the disk and format the partitions listed below. Their data will be lost. Do you wish to continue?~%~%~{ - ~a~%~}" msgstr "Nous allons écrire la table de partitions configurée sur le disque et formater les partitions indiquées ci-dessous. Leurs données seront perdues. Voulez-vous continuer ?~%~%~{ - ~a~%~}" -#: gnu/installer/newt/partition.scm:71 +#: gnu/installer/newt/partition.scm:69 msgid "Format disk?" msgstr "Formater le disque ?" -#: gnu/installer/newt/partition.scm:74 +#: gnu/installer/newt/partition.scm:72 msgid "Partition formatting is in progress, please wait." msgstr "Formatage du disque en cours, patientez." -#: gnu/installer/newt/partition.scm:75 +#: gnu/installer/newt/partition.scm:73 msgid "Preparing partitions" msgstr "Préparation des partitions" -#: gnu/installer/newt/partition.scm:86 -msgid "Please select a disk." -msgstr "Sélectionnez un disque." +#: gnu/installer/newt/partition.scm:84 +msgid "Please select a disk. The installation device as well as the small devices are filtered." +msgstr "Choisissez un disque. Le périphérique d'installation et les petits périphériques ne sont pas affichés." -#: gnu/installer/newt/partition.scm:87 +#: gnu/installer/newt/partition.scm:86 msgid "Disk" msgstr "Disque" -#: gnu/installer/newt/partition.scm:102 +#: gnu/installer/newt/partition.scm:101 msgid "Select a new partition table type. Be careful, all data on the disk will be lost." msgstr "Sélectionnez un nouveau type de table des partitions. Soyez prudent, toutes les données sur le disque seront perdues." -#: gnu/installer/newt/partition.scm:104 +#: gnu/installer/newt/partition.scm:103 msgid "Partition table" msgstr "Table des partitions" -#: gnu/installer/newt/partition.scm:121 +#: gnu/installer/newt/partition.scm:120 msgid "Please select a partition type." msgstr "Sélectionnez un type de partition." -#: gnu/installer/newt/partition.scm:122 +#: gnu/installer/newt/partition.scm:121 msgid "Partition type" msgstr "Type de partition" -#: gnu/installer/newt/partition.scm:132 +#: gnu/installer/newt/partition.scm:131 msgid "Please select the file-system type for this partition." msgstr "Sélectionnez le type de système de fichier pour cette partition." -#: gnu/installer/newt/partition.scm:133 +#: gnu/installer/newt/partition.scm:132 msgid "File-system type" msgstr "Type de système de fichier" -#: gnu/installer/newt/partition.scm:150 +#: gnu/installer/newt/partition.scm:149 msgid "Primary partitions count exceeded." msgstr "Nombre maximal de partitions primaires dépassé." -#: gnu/installer/newt/partition.scm:151 gnu/installer/newt/partition.scm:156 -#: gnu/installer/newt/partition.scm:161 +#: gnu/installer/newt/partition.scm:150 gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:160 msgid "Creation error" msgstr "Erreur à la création" -#: gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:154 msgid "Extended partition creation error." msgstr "Erreur à la création d'une partition étendue." -#: gnu/installer/newt/partition.scm:160 +#: gnu/installer/newt/partition.scm:159 msgid "Logical partition creation error." msgstr "Erreur à la création d'une partition logique." -#: gnu/installer/newt/partition.scm:174 +#: gnu/installer/newt/partition.scm:173 #, scheme-format msgid "Please enter the password for the encryption of partition ~a (label: ~a)." msgstr "Saisissez le mot de passe pour le chiffrement de la partition ~a (étiquette : ~a)." -#: gnu/installer/newt/partition.scm:176 gnu/installer/newt/wifi.scm:92 +#: gnu/installer/newt/partition.scm:175 gnu/installer/newt/wifi.scm:92 msgid "Password required" msgstr "Mot de passe requis" -#: gnu/installer/newt/partition.scm:181 +#: gnu/installer/newt/partition.scm:180 #, scheme-format msgid "Please confirm the password for the encryption of partition ~a (label: ~a)." msgstr "Confirmez le mot de passe pour le chiffrement de la partition ~a (étiquette : ~a)." -#: gnu/installer/newt/partition.scm:183 gnu/installer/newt/user.scm:160 +#: gnu/installer/newt/partition.scm:182 gnu/installer/newt/user.scm:159 msgid "Password confirmation required" msgstr "Confirmation du mot de passe requise" -#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 +#: gnu/installer/newt/partition.scm:194 gnu/installer/newt/user.scm:167 msgid "Password mismatch, please try again." msgstr "Les mots de passe sont différents, réessayez." -#: gnu/installer/newt/partition.scm:196 gnu/installer/newt/user.scm:169 +#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 msgid "Password error" msgstr "Erreur de mot de passe" -#: gnu/installer/newt/partition.scm:282 +#: gnu/installer/newt/partition.scm:281 msgid "Please enter the partition gpt name." msgstr "Saisissez le nom gpt de la partition." -#: gnu/installer/newt/partition.scm:283 +#: gnu/installer/newt/partition.scm:282 msgid "Partition name" msgstr "Nom de la partition" -#: gnu/installer/newt/partition.scm:313 +#: gnu/installer/newt/partition.scm:312 msgid "Please enter the encrypted label" msgstr "Saisissez l'étiquette chiffrée" -#: gnu/installer/newt/partition.scm:314 +#: gnu/installer/newt/partition.scm:313 msgid "Encryption label" msgstr "Étiquette de chiffrement" -#: gnu/installer/newt/partition.scm:331 +#: gnu/installer/newt/partition.scm:330 #, scheme-format msgid "Please enter the size of the partition. The maximum size is ~a." msgstr "Saisissez la taille de la partition. La taille maximale est de ~a." -#: gnu/installer/newt/partition.scm:333 +#: gnu/installer/newt/partition.scm:332 msgid "Partition size" msgstr "Taille de la partition" -#: gnu/installer/newt/partition.scm:351 +#: gnu/installer/newt/partition.scm:350 msgid "The percentage can not be superior to 100." msgstr "Le pourcentage ne peut être supérieur à 100." -#: gnu/installer/newt/partition.scm:352 gnu/installer/newt/partition.scm:357 -#: gnu/installer/newt/partition.scm:362 +#: gnu/installer/newt/partition.scm:351 gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:361 msgid "Size error" msgstr "Erreur de taille" -#: gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:355 msgid "The requested size is incorrectly formatted, or too large." msgstr "La taille demandée est mal formatée ou trop grande." -#: gnu/installer/newt/partition.scm:361 +#: gnu/installer/newt/partition.scm:360 msgid "The request size is superior to the maximum size." msgstr "La taille demandée est supérieure à la taille maximale." -#: gnu/installer/newt/partition.scm:381 +#: gnu/installer/newt/partition.scm:380 msgid "Please enter the desired mounting point for this partition. Leave this field empty if you don't want to set a mounting point." msgstr "Saisissez le point de montage souhaité pour cette partition. Laissez ce champ vide si vous ne voulez pas indiquer de point de montage." -#: gnu/installer/newt/partition.scm:383 +#: gnu/installer/newt/partition.scm:382 msgid "Mounting point" msgstr "Point de montage" -#: gnu/installer/newt/partition.scm:447 +#: gnu/installer/newt/partition.scm:446 #, scheme-format msgid "Creating ~a partition starting at ~a of ~a." msgstr "Création d'une partition de type ~a qui commence à ~a octets sur ~a." -#: gnu/installer/newt/partition.scm:449 +#: gnu/installer/newt/partition.scm:448 #, scheme-format msgid "You are currently editing partition ~a." msgstr "Vous modifiez actuellement la partition ~a." -#: gnu/installer/newt/partition.scm:452 +#: gnu/installer/newt/partition.scm:451 msgid "Partition creation" msgstr "Création de la partition" -#: gnu/installer/newt/partition.scm:453 +#: gnu/installer/newt/partition.scm:452 msgid "Partition edit" msgstr "Modification de la partition" -#: gnu/installer/newt/partition.scm:634 +#: gnu/installer/newt/partition.scm:633 #, scheme-format msgid "Are you sure you want to delete everything on disk ~a?" msgstr "Voulez-vous vraiment tout supprimer sur le disque ~a ?" -#: gnu/installer/newt/partition.scm:636 +#: gnu/installer/newt/partition.scm:635 msgid "Delete disk" msgstr "Supprimer le disque" -#: gnu/installer/newt/partition.scm:651 +#: gnu/installer/newt/partition.scm:650 msgid "You cannot delete a free space area." msgstr "Vous ne pouvez pas supprimer un espace libre." -#: gnu/installer/newt/partition.scm:652 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:651 gnu/installer/newt/partition.scm:658 msgid "Delete partition" msgstr "Supprimer la partition" -#: gnu/installer/newt/partition.scm:657 +#: gnu/installer/newt/partition.scm:656 #, scheme-format msgid "Are you sure you want to delete partition ~a?" msgstr "Voulez-vous vraiment supprimer la partition ~a ?" -#: gnu/installer/newt/partition.scm:674 +#: gnu/installer/newt/partition.scm:673 msgid "" "You can change a disk's partition table by selecting it and pressing ENTER. You can also edit a partition by selecting it and pressing ENTER, or remove it by pressing DELETE. To create a new partition, select a free space area and press ENTER.\n" "\n" @@ -1433,53 +1539,53 @@ msgstr "" "\n" "Au moins une partition doit avoir « / » comme point de montage." -#: gnu/installer/newt/partition.scm:680 +#: gnu/installer/newt/partition.scm:679 #, scheme-format msgid "This is the proposed partitioning. It is still possible to edit it or to go back to install menu by pressing the Exit button.~%~%" msgstr "Voici une proposition de partitionnement. Vous pouvez toujours la modifier ou revenir au menu de l'installateur en appuyant sur le bouton « Quitter ».~%~%" -#: gnu/installer/newt/partition.scm:690 +#: gnu/installer/newt/partition.scm:689 msgid "Guided partitioning" msgstr "Partitionnement guidé" -#: gnu/installer/newt/partition.scm:691 +#: gnu/installer/newt/partition.scm:690 msgid "Manual partitioning" msgstr "Partitionnement manuel" -#: gnu/installer/newt/partition.scm:716 +#: gnu/installer/newt/partition.scm:715 msgid "No root mount point found." msgstr "Pas de point de montage pour la racine." -#: gnu/installer/newt/partition.scm:717 +#: gnu/installer/newt/partition.scm:716 msgid "Missing mount point" msgstr "Point de montage absent" -#: gnu/installer/newt/partition.scm:721 +#: gnu/installer/newt/partition.scm:720 #, scheme-format msgid "Cannot read the ~a partition UUID. You may need to format it." msgstr "Impossible de lire l'UUID de la partition ~a. Vous devez peut-être la formater." -#: gnu/installer/newt/partition.scm:724 +#: gnu/installer/newt/partition.scm:723 msgid "Wrong partition format" msgstr "Format de partition incorrect" -#: gnu/installer/newt/partition.scm:755 +#: gnu/installer/newt/partition.scm:754 msgid "Guided - using the entire disk" msgstr "Guidée — utilise le disque complet" -#: gnu/installer/newt/partition.scm:756 +#: gnu/installer/newt/partition.scm:755 msgid "Guided - using the entire disk with encryption" msgstr "Guidée — utiliser le disque complet avec chiffrement" -#: gnu/installer/newt/partition.scm:757 +#: gnu/installer/newt/partition.scm:756 msgid "Manual" msgstr "Manuelle" -#: gnu/installer/newt/partition.scm:759 +#: gnu/installer/newt/partition.scm:758 msgid "Please select a partitioning method." msgstr "Sélectionnez une méthode de partitionnement." -#: gnu/installer/newt/partition.scm:760 +#: gnu/installer/newt/partition.scm:759 msgid "Partitioning method" msgstr "Méthode de partitionnement" @@ -1491,41 +1597,35 @@ msgstr "Sélectionnez les environnements de bureau que vous souhaitez installer. msgid "Desktop environment" msgstr "Environnement de bureau" -#: gnu/installer/newt/services.scm:59 +#: gnu/installer/newt/services.scm:57 msgid "You can now select networking services to run on your system." msgstr "Vous pouvez maintenant sélectionner les services réseau à exécuter sur votre système." -#: gnu/installer/newt/services.scm:61 +#: gnu/installer/newt/services.scm:59 msgid "Network service" msgstr "Service réseau" -#: gnu/installer/newt/services.scm:79 -#, fuzzy -#| msgid "You can now select other services to run on your system." +#: gnu/installer/newt/services.scm:75 msgid "You can now select the CUPS printing service to run on your system." -msgstr "Vous pouvez maintenant choisir l'autres services réseau à exécuter sur votre système." +msgstr "Vous pouvez maintenant choisir le service d'impression CUPS à exécuter sur votre système." -#: gnu/installer/newt/services.scm:81 +#: gnu/installer/newt/services.scm:77 msgid "Printing and document services" -msgstr "" +msgstr "Services d'impression et de documents" -#: gnu/installer/newt/services.scm:100 -#, fuzzy -#| msgid "No service" +#: gnu/installer/newt/services.scm:94 msgid "Console services" -msgstr "Aucun service" +msgstr "Services console" -#: gnu/installer/newt/services.scm:101 -#, fuzzy -#| msgid "You can now select networking services to run on your system." +#: gnu/installer/newt/services.scm:95 msgid "Select miscellaneous services to run on your non-graphical system." -msgstr "Vous pouvez maintenant sélectionner les services réseau à exécuter sur votre système." +msgstr "Choisissez les services divers à exécuter sur votre système non graphique." -#: gnu/installer/newt/services.scm:115 +#: gnu/installer/newt/services.scm:109 msgid "Network management" msgstr "Gestion du réseau" -#: gnu/installer/newt/services.scm:118 +#: gnu/installer/newt/services.scm:112 msgid "" "Choose the method to manage network connections.\n" "\n" @@ -1561,57 +1661,57 @@ msgstr "" msgid "Please select a timezone." msgstr "Sélectionnez un fuseau horaire." -#: gnu/installer/newt/user.scm:45 +#: gnu/installer/newt/user.scm:44 msgid "Name" msgstr "Nom" -#: gnu/installer/newt/user.scm:47 +#: gnu/installer/newt/user.scm:46 msgid "Real name" msgstr "Nom réel" -#: gnu/installer/newt/user.scm:49 +#: gnu/installer/newt/user.scm:48 msgid "Home directory" msgstr "Répertoire personnel" -#: gnu/installer/newt/user.scm:51 +#: gnu/installer/newt/user.scm:50 msgid "Password" msgstr "Mot de passe" -#: gnu/installer/newt/user.scm:122 +#: gnu/installer/newt/user.scm:121 msgid "Empty inputs are not allowed." msgstr "Les valeurs vides ne sont pas permises." -#: gnu/installer/newt/user.scm:159 +#: gnu/installer/newt/user.scm:158 msgid "Please confirm the password." msgstr "Confirmez le mot de passe." #. TRANSLATORS: Leave "root" untranslated: it refers to the name of the #. system administrator account. -#: gnu/installer/newt/user.scm:176 +#: gnu/installer/newt/user.scm:175 msgid "Please choose a password for the system administrator (\"root\")." msgstr "Sélectionnez un mot de passe pour l'administrateur système (« root »)." -#: gnu/installer/newt/user.scm:178 +#: gnu/installer/newt/user.scm:177 msgid "System administrator password" msgstr "Mot de passe de l'administrateur système" -#: gnu/installer/newt/user.scm:191 +#: gnu/installer/newt/user.scm:190 msgid "Please add at least one user to system using the 'Add' button." msgstr "Ajoutez au moins un utilisateur au système avec le bouton « Ajouter »." -#: gnu/installer/newt/user.scm:194 +#: gnu/installer/newt/user.scm:193 msgid "Add" msgstr "Ajouter" -#: gnu/installer/newt/user.scm:195 +#: gnu/installer/newt/user.scm:194 msgid "Delete" msgstr "Supprimer" -#: gnu/installer/newt/user.scm:255 +#: gnu/installer/newt/user.scm:254 msgid "Please create at least one user." msgstr "Définissez au moins un utilisateur." -#: gnu/installer/newt/user.scm:256 +#: gnu/installer/newt/user.scm:255 msgid "No user" msgstr "Aucun utilisateur" @@ -1687,60 +1787,60 @@ msgstr "Aucun réseau wifi détecté" msgid "Wifi" msgstr "Wifi" -#: gnu/installer/parted.scm:433 gnu/installer/parted.scm:470 +#: gnu/installer/parted.scm:455 gnu/installer/parted.scm:492 msgid "Free space" msgstr "Espace libre" -#: gnu/installer/parted.scm:559 +#: gnu/installer/parted.scm:581 #, scheme-format msgid "Name: ~a" msgstr "Nom : ~a" -#: gnu/installer/parted.scm:560 gnu/installer/parted.scm:606 +#: gnu/installer/parted.scm:582 gnu/installer/parted.scm:628 msgid "None" msgstr "Aucun" -#: gnu/installer/parted.scm:565 +#: gnu/installer/parted.scm:587 #, scheme-format msgid "Type: ~a" msgstr "Type : ~a" -#: gnu/installer/parted.scm:569 +#: gnu/installer/parted.scm:591 #, scheme-format msgid "File system type: ~a" msgstr "Type de système de fichier : ~a" -#: gnu/installer/parted.scm:575 +#: gnu/installer/parted.scm:597 #, scheme-format msgid "Bootable flag: ~:[off~;on~]" msgstr "Amorçable : ~:[non~;oui~]" -#: gnu/installer/parted.scm:579 +#: gnu/installer/parted.scm:601 #, scheme-format msgid "ESP flag: ~:[off~;on~]" msgstr "ESP : ~:[non~;oui~]" -#: gnu/installer/parted.scm:585 +#: gnu/installer/parted.scm:607 #, scheme-format msgid "Size: ~a" msgstr "Taille : ~a" -#: gnu/installer/parted.scm:591 +#: gnu/installer/parted.scm:613 #, scheme-format msgid "Encryption: ~:[No~a~;Yes (label '~a')~]" msgstr "Chiffrement : ~:[Non~a~;Oui (étiquette « ~a »)~]" -#: gnu/installer/parted.scm:597 +#: gnu/installer/parted.scm:619 #, scheme-format msgid "Format the partition? ~:[No~;Yes~]" msgstr "Formater la partition ? ~:[Non~;Oui~]" -#: gnu/installer/parted.scm:603 +#: gnu/installer/parted.scm:625 #, scheme-format msgid "Mount point: ~a" msgstr "Point de montage : ~a" -#: gnu/installer/parted.scm:1466 +#: gnu/installer/parted.scm:1477 #, scheme-format msgid "Device ~a is still in use." msgstr "Le périphérique ~a est toujours utilisé." @@ -1759,11 +1859,11 @@ msgstr "Certificats NSS de Mozilla, pour l'accès HTTPS" #: gnu/installer/services.scm:110 msgid "Network time service (NTP), to set the clock automatically" -msgstr "" +msgstr "Service de temps réseau (NTP), pour automatiquement gérer l'horloge" #: gnu/installer/services.scm:115 msgid "GPM mouse daemon, to use the mouse on the console" -msgstr "" +msgstr "Démon de souris GPM, pour utiliser la souris sur la console" #: gnu/installer/services.scm:121 msgid "NetworkManager network connection manager" @@ -1784,7 +1884,7 @@ msgstr "Système d'impression CUPS (pas d'interface Web par défaut)" #. TRANSLATORS: This is a comment within a Scheme file. Each line must #. start with ";; " (two semicolons and a space). Please keep line #. length below 60 characters. -#: gnu/installer/steps.scm:252 +#: gnu/installer/steps.scm:242 msgid "" ";; This is an operating system configuration generated\n" ";; by the graphical installer.\n" @@ -1797,71 +1897,91 @@ msgstr "" msgid "Unable to locate path: ~a." msgstr "Impossible de trouver le chemin : ~a." -#: gnu/installer/utils.scm:83 +#: gnu/installer/utils.scm:131 #, scheme-format msgid "Press Enter to continue.~%" msgstr "Appuyez sur Entrée pour continuer.~%" -#: gnu/installer/utils.scm:108 -#, scheme-format -msgid "Command failed with exit code ~a.~%" +#: gnu/installer/utils.scm:150 +#, fuzzy, scheme-format +#| msgid "Command failed with exit code ~a.~%" +msgid "Command ~s exited with value ~a" msgstr "La commande a échouée avec le code ~a.~%" -#: gnu/machine/ssh.scm:117 +#: gnu/installer/utils.scm:156 +#, scheme-format +msgid "Command ~s killed by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:162 +#, scheme-format +msgid "Command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:167 +#, scheme-format +msgid "Command ~s succeeded" +msgstr "" + +#: gnu/installer/utils.scm:179 +msgid "run-command-in-installer not set" +msgstr "" + +#: gnu/machine/ssh.scm:120 #, scheme-format msgid " without a 'host-key' is deprecated~%" msgstr " sans « host-key » est obsolète~%" -#: gnu/machine/ssh.scm:192 +#: gnu/machine/ssh.scm:208 #, scheme-format msgid "device '~a' not found: ~a" msgstr "périphérique « ~a » non trouvé : ~a" -#: gnu/machine/ssh.scm:207 +#: gnu/machine/ssh.scm:223 #, scheme-format msgid "no file system with label '~a'" msgstr "aucun système de fichier étiqueté « ~a »" -#: gnu/machine/ssh.scm:226 +#: gnu/machine/ssh.scm:242 #, scheme-format msgid "no file system with UUID '~a'" msgstr "aucun système de fichier avec l'UUID « ~a »" -#: gnu/machine/ssh.scm:276 +#: gnu/machine/ssh.scm:295 #, scheme-format msgid "missing modules for ~a:~{ ~a~}~%" msgstr "modules manquants pour ~a : ~{ ~a~}~%" -#: gnu/machine/ssh.scm:311 +#: gnu/machine/ssh.scm:333 #, scheme-format msgid "incorrect target system ('~a' was given, while the system reports that it is '~a')~%" msgstr "système cible incorrect (« ~a » donné, alors que le système rapporte qu'il est un « ~a »)~%" -#: gnu/machine/ssh.scm:437 +#: gnu/machine/ssh.scm:459 #, scheme-format msgid "no signing key '~a'. have you run 'guix archive --generate-key?'" msgstr "pas de clef de signature « ~a ». Avez--vous lancé « guix archive --generate-key » ?" -#: gnu/machine/ssh.scm:469 +#: gnu/machine/ssh.scm:491 #, scheme-format msgid "failed to switch systems while deploying '~a':~%~{~s ~}" msgstr "échec au changement de système lors du déploiement de « ~a » : ~%~{~s~}" -#: gnu/machine/ssh.scm:477 +#: gnu/machine/ssh.scm:499 #, scheme-format msgid "an error occurred while upgrading services on '~a':~%~{~s ~}~%" msgstr "une erreur a eu lieu lors de la mise à jour des services sur « ~a » : ~%~{~s ~}~%" -#: gnu/machine/ssh.scm:485 +#: gnu/machine/ssh.scm:507 #, scheme-format msgid "failed to install bootloader on '~a':~%~{~s ~}~%" msgstr "impossible d'installer le chargeur de démarrage sur « ~a » :~%~{~s ~}~%" -#: gnu/machine/ssh.scm:518 +#: gnu/machine/ssh.scm:540 msgid "could not roll-back machine" msgstr "impossible de faire revenir la machine en arrière" -#: gnu/machine/ssh.scm:559 +#: gnu/machine/ssh.scm:581 msgid "" "Provisioning for machines that are accessible over SSH\n" "and have a known host-name. This entails little more than maintaining an SSH\n" @@ -1871,7 +1991,7 @@ msgstr "" "ont un nom d'hôte connu. Cela nécessite à peine plus que de\n" "maintenir une connexion SSH à l'hôte." -#: gnu/machine/ssh.scm:569 +#: gnu/machine/ssh.scm:591 #, scheme-format msgid "" "unsupported machine configuration '~a'\n" @@ -1880,20 +2000,20 @@ msgstr "" "configuration de machine « ~a » non prise en charge\n" "pour l'environnement de type « ~a »" -#: gnu/packages/bootstrap.scm:178 +#: gnu/packages/bootstrap.scm:188 #, scheme-format msgid "could not find bootstrap binary '~a' for system '~a'" msgstr "impossible de trouver le binaire d'initialisation « ~a » pour le système « ~a »" -#: gnu/packages/bootstrap.scm:492 +#: gnu/packages/bootstrap.scm:578 msgid "Raw build system with direct store access" msgstr "Système de construction brut avec un accès direct au dépôt" -#: gnu/packages/bootstrap.scm:500 +#: gnu/packages/bootstrap.scm:586 msgid "Pre-built Guile for bootstrapping purposes." msgstr "Guile pré-construit pour le bootstrap." -#: guix/build/utils.scm:822 +#: guix/build/utils.scm:823 #, scheme-format msgid "'~a~{ ~a~}' exited with status ~a; output follows:~%~%~{ ~a~%~}" msgstr "« ~a~{ ~a~} » a quitté avec le statut ~a ; la sortie est la suivante :~%~%~{ ~a~%~}" @@ -1933,7 +2053,7 @@ msgid "~A: unrecognized option~%" msgstr "~A : option non reconnue~%" #: guix/scripts.scm:169 guix/scripts/import.scm:140 -#: guix/scripts/system.scm:1370 +#: guix/scripts/system.scm:1379 #, scheme-format msgid "Did you mean @code{~a}?~%" msgstr "Vouliez-vous dire @code{~a} ?~%" @@ -1988,7 +2108,7 @@ msgstr "impossible de créer la racine du GC « ~a » : ~a~%" #: guix/scripts/build.scm:154 guix/scripts/search.scm:42 #: guix/scripts/show.scm:41 guix/scripts/lint.scm:112 guix/scripts/edit.scm:48 #: guix/scripts/size.scm:246 guix/scripts/graph.scm:553 -#: guix/scripts/repl.scm:80 guix/scripts/style.scm:500 +#: guix/scripts/repl.scm:80 guix/scripts/style.scm:795 msgid "" "\n" " -L, --load-path=DIR prepend DIR to the package module search path" @@ -2190,7 +2310,7 @@ msgstr "" "\n" " -s, --system=SYSTÈME essayer de compiler pour le SYSTÈME donné, par exemple « i686-linux »" -#: guix/scripts/build.scm:357 guix/scripts/system.scm:1023 +#: guix/scripts/build.scm:357 guix/scripts/system.scm:1026 #: guix/scripts/pack.scm:1329 guix/scripts/archive.scm:97 msgid "" "\n" @@ -2234,13 +2354,13 @@ msgstr "" " -r, --root=FICHIER faire de FICHIER un lien symbolique pointant sur le résultat\n" " et l'enregistrer en tant que racine du garbage collector" -#: guix/scripts/build.scm:368 guix/scripts/package.scm:486 +#: guix/scripts/build.scm:368 guix/scripts/package.scm:488 #: guix/scripts/install.scm:37 guix/scripts/remove.scm:36 #: guix/scripts/upgrade.scm:39 guix/scripts/pull.scm:117 -#: guix/scripts/system.scm:1025 guix/scripts/copy.scm:122 -#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:60 +#: guix/scripts/system.scm:1028 guix/scripts/copy.scm:122 +#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:66 #: guix/scripts/archive.scm:99 guix/scripts/environment.scm:123 -#: guix/scripts/home.scm:94 +#: guix/scripts/home.scm:98 msgid "" "\n" " -v, --verbosity=LEVEL use the given verbosity LEVEL" @@ -2265,30 +2385,30 @@ msgstr "" " --log-file retourner les fichiers de journalisation pour les dérivations données" #: guix/scripts/build.scm:379 guix/scripts/download.scm:104 -#: guix/scripts/package.scm:504 guix/scripts/install.scm:44 +#: guix/scripts/package.scm:506 guix/scripts/install.scm:44 #: guix/scripts/remove.scm:41 guix/scripts/upgrade.scm:48 #: guix/scripts/search.scm:37 guix/scripts/show.scm:36 guix/scripts/gc.scm:88 #: guix/scripts/git.scm:34 guix/scripts/git/authenticate.scm:110 #: guix/scripts/hash.scm:98 guix/scripts/import.scm:98 #: guix/scripts/import/minetest.scm:46 guix/scripts/import/cran.scm:49 #: guix/scripts/pull.scm:125 guix/scripts/substitute.scm:250 -#: guix/scripts/system.scm:1032 guix/scripts/lint.scm:115 +#: guix/scripts/system.scm:1035 guix/scripts/lint.scm:115 #: guix/scripts/publish.scm:119 guix/scripts/edit.scm:51 #: guix/scripts/size.scm:249 guix/scripts/graph.scm:558 #: guix/scripts/challenge.scm:430 guix/scripts/copy.scm:127 #: guix/scripts/pack.scm:1357 guix/scripts/weather.scm:336 #: guix/scripts/describe.scm:96 guix/scripts/processes.scm:301 -#: guix/scripts/deploy.scm:55 guix/scripts/container.scm:35 +#: guix/scripts/deploy.scm:58 guix/scripts/container.scm:35 #: guix/scripts/container/exec.scm:43 guix/scripts/archive.scm:106 -#: guix/scripts/environment.scm:149 guix/scripts/home.scm:97 +#: guix/scripts/environment.scm:149 guix/scripts/home.scm:101 #: guix/scripts/time-machine.scm:67 guix/scripts/import/cpan.scm:44 #: guix/scripts/import/crate.scm:50 guix/scripts/import/egg.scm:45 #: guix/scripts/import/gem.scm:46 guix/scripts/import/gnu.scm:50 #: guix/scripts/import/go.scm:50 guix/scripts/import/json.scm:52 #: guix/scripts/import/opam.scm:45 guix/scripts/import/pypi.scm:46 #: guix/scripts/import/texlive.scm:45 guix/scripts/refresh.scm:187 -#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:67 -#: guix/scripts/style.scm:509 +#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:69 +#: guix/scripts/style.scm:804 msgid "" "\n" " -h, --help display this help and exit" @@ -2297,29 +2417,29 @@ msgstr "" " -h, --help afficher cette aide et quitter" #: guix/scripts/build.scm:381 guix/scripts/download.scm:106 -#: guix/scripts/package.scm:506 guix/scripts/install.scm:46 +#: guix/scripts/package.scm:508 guix/scripts/install.scm:46 #: guix/scripts/remove.scm:43 guix/scripts/upgrade.scm:50 #: guix/scripts/search.scm:39 guix/scripts/show.scm:38 guix/scripts/gc.scm:90 #: guix/scripts/git.scm:36 guix/scripts/git/authenticate.scm:112 #: guix/scripts/hash.scm:100 guix/scripts/import.scm:100 #: guix/scripts/import/minetest.scm:50 guix/scripts/import/cran.scm:55 #: guix/scripts/pull.scm:127 guix/scripts/substitute.scm:252 -#: guix/scripts/system.scm:1034 guix/scripts/lint.scm:119 +#: guix/scripts/system.scm:1037 guix/scripts/lint.scm:119 #: guix/scripts/publish.scm:121 guix/scripts/edit.scm:53 #: guix/scripts/size.scm:251 guix/scripts/graph.scm:560 #: guix/scripts/challenge.scm:432 guix/scripts/copy.scm:129 #: guix/scripts/pack.scm:1359 guix/scripts/weather.scm:338 #: guix/scripts/describe.scm:98 guix/scripts/processes.scm:303 -#: guix/scripts/deploy.scm:57 guix/scripts/container.scm:37 +#: guix/scripts/deploy.scm:60 guix/scripts/container.scm:37 #: guix/scripts/container/exec.scm:45 guix/scripts/archive.scm:108 -#: guix/scripts/environment.scm:151 guix/scripts/home.scm:99 +#: guix/scripts/environment.scm:151 guix/scripts/home.scm:103 #: guix/scripts/time-machine.scm:69 guix/scripts/import/cpan.scm:46 #: guix/scripts/import/crate.scm:52 guix/scripts/import/egg.scm:49 #: guix/scripts/import/gem.scm:48 guix/scripts/import/gnu.scm:52 #: guix/scripts/import/json.scm:54 guix/scripts/import/opam.scm:52 #: guix/scripts/import/pypi.scm:50 guix/scripts/import/texlive.scm:47 #: guix/scripts/refresh.scm:189 guix/scripts/repl.scm:85 -#: guix/scripts/shell.scm:69 guix/scripts/style.scm:511 +#: guix/scripts/shell.scm:71 guix/scripts/style.scm:806 msgid "" "\n" " -V, --version display version information and exit" @@ -2574,164 +2694,164 @@ msgstr "l'étiquette « ~a » ne correspond pas au nom du paquet « ~a »" msgid "\"bash-minimal\" should be in 'inputs' when '~a' is used" msgstr "« bash-minimal » devrait être dans « inputs » si vous utilisez « ~a »" -#: guix/lint.scm:616 +#: guix/lint.scm:614 msgid "no period allowed at the end of the synopsis" msgstr "un point n'est pas autorisé à la fin du synopsis" -#: guix/lint.scm:630 +#: guix/lint.scm:628 msgid "no article allowed at the beginning of the synopsis" msgstr "les articles ne sont pas permis au début du synopsis" -#: guix/lint.scm:639 +#: guix/lint.scm:637 msgid "synopsis should be less than 80 characters long" msgstr "le synopsis devrait être plus court que 80 caractères" -#: guix/lint.scm:648 +#: guix/lint.scm:646 msgid "synopsis should start with an upper-case letter or digit" msgstr "le synopsis devrait commencer par une majuscule ou un chiffre" -#: guix/lint.scm:656 +#: guix/lint.scm:654 msgid "synopsis should not start with the package name" msgstr "le synopsis ne devrait pas commencer par un nom de paquet" -#: guix/lint.scm:670 +#: guix/lint.scm:668 msgid "Texinfo markup in synopsis is invalid" msgstr "La balise Texinfo dans le synopsis est invalide" -#: guix/lint.scm:678 +#: guix/lint.scm:676 msgid "synopsis contains trailing whitespace" msgstr "le synopsis contient des espaces en fin de chaîne" -#: guix/lint.scm:695 +#: guix/lint.scm:693 msgid "synopsis should not be empty" msgstr "le synopsis ne devrait pas être vide" -#: guix/lint.scm:705 +#: guix/lint.scm:703 #, scheme-format msgid "invalid synopsis: ~s" msgstr "synopsis non valide : ~s" -#: guix/lint.scm:805 +#: guix/lint.scm:803 #, scheme-format msgid "~a: HTTP GET error for ~a: ~a (~s)~%" msgstr "~a : erreur HTTP GET pour ~a : ~a (~s)~%" -#: guix/lint.scm:815 +#: guix/lint.scm:813 #, scheme-format msgid "~a: host lookup failure: ~a~%" msgstr "~a : erreur lors de la consultation du nom d'hôte : ~a~%" -#: guix/lint.scm:820 +#: guix/lint.scm:818 #, scheme-format msgid "~a: TLS certificate error: ~a" msgstr "~a : erreur de certificat TLS : ~a" -#: guix/lint.scm:825 +#: guix/lint.scm:823 #, scheme-format msgid "~a: TLS error in '~a': ~a~%" msgstr "~a : erreur TLS dans « ~a » : ~a~%" -#: guix/lint.scm:836 guix/ui.scm:820 guix/scripts/offload.scm:194 +#: guix/lint.scm:834 guix/ui.scm:820 guix/scripts/offload.scm:194 #, scheme-format msgid "~a: ~a~%" msgstr "~a : ~a~%" -#: guix/lint.scm:868 +#: guix/lint.scm:866 #, scheme-format msgid "URI ~a returned suspiciously small file (~a bytes)" msgstr "L'URI ~a a renvoyé un fichier étrangement petit (~a octets)" -#: guix/lint.scm:877 +#: guix/lint.scm:875 #, scheme-format msgid "permanent redirect from ~a to ~a" msgstr "redirection permanente de ~a vers ~a" -#: guix/lint.scm:883 +#: guix/lint.scm:881 #, scheme-format msgid "invalid permanent redirect from ~a" msgstr "redirection permanente invalide : ~a" -#: guix/lint.scm:889 guix/lint.scm:899 +#: guix/lint.scm:887 guix/lint.scm:897 #, scheme-format msgid "URI ~a not reachable: ~a (~s)" msgstr "L'URI ~a n'a pu être atteinte : ~a (~s)" -#: guix/lint.scm:905 +#: guix/lint.scm:903 #, scheme-format msgid "URI ~a domain not found: ~a" msgstr "Le domaine de l'URI ~a n'a pas été trouvé : ~a" -#: guix/lint.scm:911 +#: guix/lint.scm:909 #, scheme-format msgid "URI ~a unreachable: ~a" msgstr "L'URI ~a n'a pu être atteinte : ~a" -#: guix/lint.scm:919 +#: guix/lint.scm:917 #, scheme-format msgid "TLS certificate error: ~a" msgstr "Erreur de certificat TLS : ~a" -#: guix/lint.scm:946 +#: guix/lint.scm:944 msgid "invalid value for home page" msgstr "valeur invalide pour la page d'accueil" -#: guix/lint.scm:951 +#: guix/lint.scm:949 #, scheme-format msgid "invalid home page URL: ~s" msgstr "URL de la page d'accueil invalide : ~s" -#: guix/lint.scm:988 +#: guix/lint.scm:986 msgid "file names of patches should start with the package name" msgstr "les noms de fichiers des correctifs devraient commencer par le nom du paquet" -#: guix/lint.scm:1008 +#: guix/lint.scm:1006 #, scheme-format msgid "~a: file name is too long, which may break 'make dist'" msgstr "~a : le nom de fichier est trop long, ce qui peut casser « make dist »" -#: guix/lint.scm:1029 +#: guix/lint.scm:1027 #, scheme-format msgid "~a: empty patch" msgstr "~a : correctif vide" -#: guix/lint.scm:1038 +#: guix/lint.scm:1036 #, scheme-format msgid "~a: patch lacks comment and upstream status" msgstr "~a : le correctif n'a pas de commentaire et de statut en amont" -#: guix/lint.scm:1099 +#: guix/lint.scm:1097 #, scheme-format msgid "proposed synopsis: ~s~%" msgstr "synopsis proposé : ~s~%" -#: guix/lint.scm:1113 +#: guix/lint.scm:1111 #, scheme-format msgid "proposed description:~% \"~a\"~%" msgstr "description proposée :~% « ~a »~%" -#: guix/lint.scm:1164 +#: guix/lint.scm:1162 msgid "all the source URIs are unreachable:" msgstr "toutes les URI sources sont inatteignables :" -#: guix/lint.scm:1193 +#: guix/lint.scm:1191 msgid "the source file name should contain the package name" msgstr "le nom du fichier source devrait contenir le nom du paquet" -#: guix/lint.scm:1205 +#: guix/lint.scm:1203 msgid "the source URI should not be an autogenerated tarball" msgstr "l'URI de la source ne devrait pas être une archive auto-générée" -#: guix/lint.scm:1229 +#: guix/lint.scm:1227 #, scheme-format msgid "URL should be 'mirror://~a/~a'" msgstr "L'URL devrait être « mirror://~a/~a »" -#: guix/lint.scm:1269 +#: guix/lint.scm:1267 #, scheme-format msgid "while accessing '~a'" msgstr "en tentant d'accéder à « ~a »" -#: guix/lint.scm:1276 +#: guix/lint.scm:1274 #, scheme-format msgid "URL should be '~a'" msgstr "L'URL devrait être « ~a »" @@ -2739,68 +2859,68 @@ msgstr "L'URL devrait être « ~a »" #. TRANSLATORS: check and #:tests? are a #. Scheme symbol and keyword respectively #. and should not be translated. -#: guix/lint.scm:1304 +#: guix/lint.scm:1302 msgid "the 'check' phase should respect #:tests?" msgstr "la phase « check » devrait respecter #:tests?" -#: guix/lint.scm:1322 guix/lint.scm:1333 guix/lint.scm:1341 +#: guix/lint.scm:1320 guix/lint.scm:1331 guix/lint.scm:1339 #, scheme-format msgid "failed to create ~a derivation: ~a" msgstr "échec à la création de la dérivation pour ~a : ~a" -#: guix/lint.scm:1327 +#: guix/lint.scm:1325 #, scheme-format msgid "failed to create ~a derivation: ~s" msgstr "échec à la création de la dérivation pour ~a : ~s" -#: guix/lint.scm:1379 +#: guix/lint.scm:1377 #, scheme-format msgid "propagated inputs ~a and ~a collide" msgstr "collision des entrées propagées ~a et ~a" -#: guix/lint.scm:1403 +#: guix/lint.scm:1401 msgid "invalid license field" msgstr "champ de licence invalide" -#: guix/lint.scm:1410 +#: guix/lint.scm:1408 msgid "while retrieving CVE vulnerabilities" msgstr "pendant la récupération des vulnérabilités CVE" -#: guix/lint.scm:1453 +#: guix/lint.scm:1451 #, scheme-format msgid "probably vulnerable to ~a" msgstr "probablement vulnérable à ~a" -#: guix/lint.scm:1461 +#: guix/lint.scm:1459 #, scheme-format msgid "no updater for ~a" msgstr "aucun programme de mise à jour pour ~a" -#: guix/lint.scm:1466 guix/lint.scm:1641 +#: guix/lint.scm:1464 guix/lint.scm:1639 #, scheme-format msgid "while retrieving upstream info for '~a'" msgstr "pendant la récupération des informations en amont de « ~a »" -#: guix/lint.scm:1475 +#: guix/lint.scm:1473 #, scheme-format msgid "can be upgraded to ~a" msgstr "peut être mis à jour vers ~a" -#: guix/lint.scm:1481 +#: guix/lint.scm:1479 #, scheme-format msgid "updater '~a' failed to find upstream releases" msgstr "le logiciel de mise à jour «~a» n'a pas réussi à trouver des versions disponibles en amont" -#: guix/lint.scm:1508 +#: guix/lint.scm:1506 #, scheme-format msgid "failed to access Disarchive database at ~a" msgstr "impossible d'accéder la base de données Disarchive sur ~a" -#: guix/lint.scm:1535 +#: guix/lint.scm:1533 msgid "Software Heritage rate limit reached; try again later" msgstr "Limite de requêtes à Software Heritage atteinte ; essayez plus tard" -#: guix/lint.scm:1539 +#: guix/lint.scm:1537 #, scheme-format msgid "'~a' returned ~a" msgstr "« ~a » a renvoyé ~a" @@ -2808,162 +2928,162 @@ msgstr "« ~a » a renvoyé ~a" #. TRANSLATORS: "Software Heritage" is a proper noun #. that must remain untranslated. See #. . -#: guix/lint.scm:1578 +#: guix/lint.scm:1576 msgid "scheduled Software Heritage archival" msgstr "archivage dans Software Heritage programmé" -#: guix/lint.scm:1584 +#: guix/lint.scm:1582 msgid "archival rate limit exceeded; try again later" msgstr "limite du nombre d'archivage atteinte ; essayez plus tard" -#: guix/lint.scm:1605 +#: guix/lint.scm:1603 msgid "source not archived on Software Heritage and missing from the Disarchive database" msgstr "la source n'est pas archivée dans Software Heritage et ne se trouve pas dans la base de données Disarchive" -#: guix/lint.scm:1615 +#: guix/lint.scm:1613 #, scheme-format msgid "Disarchive entry refers to non-existent SWH directory '~a'" msgstr "L'entrée Disarchive fait référence à un répertoire SWH inexistant « ~a »" -#: guix/lint.scm:1624 +#: guix/lint.scm:1622 msgid "unsupported source type" msgstr "type de source non pris en charge" -#: guix/lint.scm:1633 +#: guix/lint.scm:1631 msgid "while connecting to Software Heritage" msgstr "lors de la connexion à Software Heritage" -#: guix/lint.scm:1650 +#: guix/lint.scm:1648 #, scheme-format msgid "ahead of Stackage LTS version ~a" msgstr "en avance sur la version ~a de Stackage LTS" -#: guix/lint.scm:1667 +#: guix/lint.scm:1665 #, scheme-format msgid "tabulation on line ~a, column ~a" msgstr "tabulation à la ligne ~a, colonne ~a" -#: guix/lint.scm:1679 +#: guix/lint.scm:1677 #, scheme-format msgid "trailing white space on line ~a" msgstr "espace à la fin de la ligne ~a" -#: guix/lint.scm:1693 +#: guix/lint.scm:1691 #, scheme-format msgid "line ~a is way too long (~a characters)" msgstr "la ligne ~a est beaucoup trop longue (~a caractères)" -#: guix/lint.scm:1707 +#: guix/lint.scm:1705 msgid "parentheses feel lonely, move to the previous or next line" msgstr "des parenthèses se sentent seules. À déplacer à la ligne suivante ou précédente" -#: guix/lint.scm:1784 +#: guix/lint.scm:1782 msgid "source file not found" msgstr "fichier source introuvable" -#: guix/lint.scm:1796 +#: guix/lint.scm:1794 msgid "Validate package names" msgstr "Valide le nom des paquets" -#: guix/lint.scm:1800 +#: guix/lint.scm:1798 msgid "Check if tests are explicitly enabled" msgstr "Vérifie si les tests sont explicitement activés" -#: guix/lint.scm:1804 +#: guix/lint.scm:1802 msgid "Validate package descriptions" msgstr "Valide les descriptions des paquets" -#: guix/lint.scm:1808 +#: guix/lint.scm:1806 msgid "Identify inputs that should be native inputs" msgstr "Identifie les entrées qui devraient être natives" -#: guix/lint.scm:1812 +#: guix/lint.scm:1810 msgid "Identify inputs that shouldn't be inputs at all" msgstr "Identifie les entrées qui ne devraient pas être des entrées du tout" -#: guix/lint.scm:1816 +#: guix/lint.scm:1814 msgid "Identify input labels that do not match package names" msgstr "Identifie les étiquettes d'entrées qui ne correspondent pas aux noms du paquet" -#: guix/lint.scm:1820 +#: guix/lint.scm:1818 msgid "Make sure 'wrap-program' can finds its interpreter." msgstr "S'assure que « wrap-program » peut trouver son interpréteur." #. TRANSLATORS: is the name of a data type and must not be #. translated. -#: guix/lint.scm:1826 +#: guix/lint.scm:1824 msgid "Make sure the 'license' field is a or a list thereof" msgstr "S'assure que le champ « licence » est une ou une telle liste" -#: guix/lint.scm:1831 +#: guix/lint.scm:1829 msgid "Make sure tests are only run when requested" msgstr "S'assure que les tests ne sont lancés que s'ils sont demandés" -#: guix/lint.scm:1835 +#: guix/lint.scm:1833 msgid "Suggest 'mirror://' URLs" msgstr "Suggére des URL « mirror:// »" -#: guix/lint.scm:1839 +#: guix/lint.scm:1837 msgid "Validate file names of sources" msgstr "Valide les noms de fichier des sources" -#: guix/lint.scm:1843 +#: guix/lint.scm:1841 msgid "Check for autogenerated tarballs" msgstr "Vérifie qu'il n'y a pas d'archive auto-générée" -#: guix/lint.scm:1847 +#: guix/lint.scm:1845 msgid "Report failure to compile a package to a derivation" msgstr "Signale l'échec de la compilation d'un paquet en une dérivation" -#: guix/lint.scm:1852 +#: guix/lint.scm:1850 msgid "Report collisions that would occur due to propagated inputs" msgstr "Rapporte les collisions qui auraient lieux à cause des entrées propagées" -#: guix/lint.scm:1857 +#: guix/lint.scm:1855 msgid "Validate file names and availability of patches" msgstr "Valide les noms de fichiers et la disponibilité des correctifs" -#: guix/lint.scm:1861 +#: guix/lint.scm:1859 msgid "Validate patch headers" msgstr "Valide les en-têtes des correctifs" -#: guix/lint.scm:1865 +#: guix/lint.scm:1863 msgid "Look for formatting issues in the source" msgstr "Recherche des problèmes de format dans la source" -#: guix/lint.scm:1872 +#: guix/lint.scm:1870 msgid "Validate package synopses" msgstr "Valide le synopsis des paquets" -#: guix/lint.scm:1876 +#: guix/lint.scm:1874 msgid "Validate synopsis & description of GNU packages" msgstr "Valide le synopsis et la description de paquets GNU" -#: guix/lint.scm:1880 +#: guix/lint.scm:1878 msgid "Validate home-page URLs" msgstr "Valide l'URL des pages d'accueil" -#: guix/lint.scm:1884 +#: guix/lint.scm:1882 msgid "Validate source URLs" msgstr "Valide les URL des sources" -#: guix/lint.scm:1888 +#: guix/lint.scm:1886 msgid "Suggest GitHub URLs" msgstr "Suggère des URL GitHub" -#: guix/lint.scm:1892 +#: guix/lint.scm:1890 msgid "Check the Common Vulnerabilities and Exposures (CVE) database" msgstr "Vérifie la base de données des vulnérabilités et failles connues (CVE)" -#: guix/lint.scm:1897 +#: guix/lint.scm:1895 msgid "Check the package for new upstream releases" msgstr "Vérifie s'il y a une nouvelle version en amont pour le paquet" -#: guix/lint.scm:1901 +#: guix/lint.scm:1899 msgid "Ensure source code archival on Software Heritage" msgstr "S'assure que le code source est archivé dans Software Heritage" -#: guix/lint.scm:1905 +#: guix/lint.scm:1903 msgid "Ensure Haskell packages use Stackage LTS versions" msgstr "S'assure que les paquets Haskell utilisent les versions de Stackage LTS" @@ -3029,7 +3149,7 @@ msgstr "format d'empreinte non pris en charge : ~a~%" msgid "~a: unknown hash algorithm~%" msgstr "~a : algorithme de hashage inconnu~%" -#: guix/scripts/download.scm:171 guix/scripts/package.scm:1087 +#: guix/scripts/download.scm:171 guix/scripts/package.scm:1090 #: guix/scripts/pull.scm:758 guix/scripts/publish.scm:1260 #: guix/scripts/discover.scm:136 guix/scripts/time-machine.scm:123 #, scheme-format @@ -3061,17 +3181,17 @@ msgstr "la génération ~a n'est pas supprimée car elle est actuelle~%" msgid "no matching generation~%" msgstr "aucune génération correspondante~%" -#: guix/scripts/package.scm:159 +#: guix/scripts/package.scm:161 #, scheme-format msgid "nothing to be done~%" msgstr "aucune action à faire~%" -#: guix/scripts/package.scm:260 +#: guix/scripts/package.scm:262 #, scheme-format msgid "package '~a' no longer exists~%" msgstr "le paquet « ~a » n'existe plus~%" -#: guix/scripts/package.scm:315 +#: guix/scripts/package.scm:317 #, scheme-format msgid "" "Consider setting the necessary environment\n" @@ -3094,7 +3214,7 @@ msgstr "" "\n" "Autrement, regardez @command{guix package --search-paths -p ~s}." -#: guix/scripts/package.scm:361 +#: guix/scripts/package.scm:363 msgid "" ";; This \"manifest\" file can be passed to 'guix package -m' to reproduce\n" ";; the content of your profile. This is \"symbolic\": it only specifies\n" @@ -3108,12 +3228,12 @@ msgstr "" ";; retenir les canaux utilisés, ceux renvoyés par « guix describe ».\n" ";; Voir la section « Répliquer Guix » dans le manuel.\n" -#: guix/scripts/package.scm:393 +#: guix/scripts/package.scm:395 #, scheme-format msgid "no provenance information for this profile~%" msgstr "pas d'information de provenance pour ce profil~%" -#: guix/scripts/package.scm:395 +#: guix/scripts/package.scm:397 msgid "" ";; This channel file can be passed to 'guix pull -C' or to\n" ";; 'guix time-machine -C' to obtain the Guix revision that was\n" @@ -3123,12 +3243,12 @@ msgstr "" ";; « guix time-machine -C » pour obtenir la révision de Guix qui était\n" ";; utilisée pour remplir ce profil.\n" -#: guix/scripts/package.scm:407 +#: guix/scripts/package.scm:409 #, scheme-format msgid ";; Note: these other commits were also used to install some of the packages in this profile:~%" msgstr ";; Remarque : ces autres commits ont aussi été utilisés pour installer certains des paquets de ce profil :~%" -#: guix/scripts/package.scm:437 +#: guix/scripts/package.scm:439 msgid "" "Usage: guix package [OPTION]...\n" "Install, remove, or upgrade packages in a single transaction.\n" @@ -3136,7 +3256,7 @@ msgstr "" "Utilisation : guix package [OPTION]...\n" "Installer, supprimer ou mettre à jour les paquets en une seule transaction.\n" -#: guix/scripts/package.scm:439 +#: guix/scripts/package.scm:441 msgid "" "\n" " -i, --install PACKAGE ...\n" @@ -3146,7 +3266,7 @@ msgstr "" " -i, --install=PAQUET ...\n" " installer les PAQUETs" -#: guix/scripts/package.scm:442 +#: guix/scripts/package.scm:444 msgid "" "\n" " -e, --install-from-expression=EXP\n" @@ -3156,7 +3276,7 @@ msgstr "" " -e, --install-from-expression=EXP\n" " installer le paquet évalué par EXP" -#: guix/scripts/package.scm:445 +#: guix/scripts/package.scm:447 msgid "" "\n" " -f, --install-from-file=FILE\n" @@ -3168,7 +3288,7 @@ msgstr "" " installer le paquet évalué par le code dans\n" " FICHIER" -#: guix/scripts/package.scm:449 +#: guix/scripts/package.scm:451 msgid "" "\n" " -r, --remove PACKAGE ...\n" @@ -3178,7 +3298,7 @@ msgstr "" " -r, --remove=PAQUET ...\n" " supprimer les PAQUETs" -#: guix/scripts/package.scm:452 +#: guix/scripts/package.scm:454 msgid "" "\n" " -u, --upgrade[=REGEXP] upgrade all the installed packages matching REGEXP" @@ -3186,7 +3306,7 @@ msgstr "" "\n" " -u, --upgrade[=REGEXP] mettre à jour tous les paquets installés correspondant à REGEXP" -#: guix/scripts/package.scm:454 +#: guix/scripts/package.scm:456 msgid "" "\n" " -m, --manifest=FILE create a new profile generation with the manifest\n" @@ -3196,7 +3316,7 @@ msgstr "" " -m, --manifest=FICHIER créer une nouvelle génération de profil avec le\n" " manifeste dans FICHIER" -#: guix/scripts/package.scm:457 guix/scripts/upgrade.scm:41 +#: guix/scripts/package.scm:459 guix/scripts/upgrade.scm:41 msgid "" "\n" " --do-not-upgrade[=REGEXP] do not upgrade any packages matching REGEXP" @@ -3204,7 +3324,7 @@ msgstr "" "\n" " --do-not-upgrade[=REGEXP] ne pas mettre à jour les paquets correspondant à REGEXP" -#: guix/scripts/package.scm:459 guix/scripts/pull.scm:107 +#: guix/scripts/package.scm:461 guix/scripts/pull.scm:107 msgid "" "\n" " --roll-back roll back to the previous generation" @@ -3212,7 +3332,7 @@ msgstr "" "\n" " --roll-back revenir à la génération antérieure" -#: guix/scripts/package.scm:461 +#: guix/scripts/package.scm:463 msgid "" "\n" " --search-paths[=KIND]\n" @@ -3222,7 +3342,7 @@ msgstr "" " --search-paths=[GENRE]\n" " afficher les définitions de variables d'environnement requises" -#: guix/scripts/package.scm:464 guix/scripts/pull.scm:104 +#: guix/scripts/package.scm:466 guix/scripts/pull.scm:104 msgid "" "\n" " -l, --list-generations[=PATTERN]\n" @@ -3232,7 +3352,7 @@ msgstr "" " -l, --list-generations[=MOTIF]\n" " lister les générations correspondant à MOTIF" -#: guix/scripts/package.scm:467 guix/scripts/pull.scm:109 +#: guix/scripts/package.scm:469 guix/scripts/pull.scm:109 msgid "" "\n" " -d, --delete-generations[=PATTERN]\n" @@ -3242,7 +3362,7 @@ msgstr "" " -d, --delete-generations[=MOTIF]\n" " supprimer les générations correspondant à MOTIF" -#: guix/scripts/package.scm:470 guix/scripts/pull.scm:112 +#: guix/scripts/package.scm:472 guix/scripts/pull.scm:112 msgid "" "\n" " -S, --switch-generation=PATTERN\n" @@ -3252,7 +3372,7 @@ msgstr "" " -S, --switch-generation=MOTIF\n" " basculer vers une génération correspondant à MOTIF" -#: guix/scripts/package.scm:473 +#: guix/scripts/package.scm:475 msgid "" "\n" " --export-manifest print a manifest for the chosen profile" @@ -3260,7 +3380,7 @@ msgstr "" "\n" " --export-manifest afficher un manifeste pour le profil choisi" -#: guix/scripts/package.scm:475 +#: guix/scripts/package.scm:477 msgid "" "\n" " --export-channels print channels for the chosen profile" @@ -3268,7 +3388,7 @@ msgstr "" "\n" " --export-channels afficher les canaux pour le profil choisi" -#: guix/scripts/package.scm:477 guix/scripts/install.scm:34 +#: guix/scripts/package.scm:479 guix/scripts/install.scm:34 #: guix/scripts/remove.scm:33 guix/scripts/upgrade.scm:37 msgid "" "\n" @@ -3277,7 +3397,7 @@ msgstr "" "\n" " -p, --profile=PROFIL utiliser PROFIL au lieu du profil par défaut de l'utilisateur" -#: guix/scripts/package.scm:479 +#: guix/scripts/package.scm:481 msgid "" "\n" " --list-profiles list the user's profiles" @@ -3285,7 +3405,7 @@ msgstr "" "\n" " --list-profiles lister les profils de l'utilisateur" -#: guix/scripts/package.scm:482 +#: guix/scripts/package.scm:484 msgid "" "\n" " --allow-collisions do not treat collisions in the profile as an error" @@ -3293,7 +3413,7 @@ msgstr "" "\n" " --allow-collisions ne pas traiter les collisions dans le profil comme une erreur" -#: guix/scripts/package.scm:484 +#: guix/scripts/package.scm:486 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" @@ -3301,7 +3421,7 @@ msgstr "" "\n" " --bootstrap utiliser le programme d'amorçage Guile pour compiler le profil" -#: guix/scripts/package.scm:489 +#: guix/scripts/package.scm:491 msgid "" "\n" " -s, --search=REGEXP search in synopsis and description using REGEXP" @@ -3309,7 +3429,7 @@ msgstr "" "\n" " -s, --search=REGEXP chercher dans le synopsis et la description en utilisant REGEXP" -#: guix/scripts/package.scm:491 +#: guix/scripts/package.scm:493 msgid "" "\n" " -I, --list-installed[=REGEXP]\n" @@ -3319,7 +3439,7 @@ msgstr "" " -I, --list-installed[=REGEXP]\n" " lister les paquets installés correspondant à REGEXP" -#: guix/scripts/package.scm:494 +#: guix/scripts/package.scm:496 msgid "" "\n" " -A, --list-available[=REGEXP]\n" @@ -3329,7 +3449,7 @@ msgstr "" " -A, --list-available[=REGEXP]\n" " lister les paquets disponibles correspondant à REGEXP" -#: guix/scripts/package.scm:497 +#: guix/scripts/package.scm:499 msgid "" "\n" " --show=PACKAGE show details about PACKAGE" @@ -3337,37 +3457,37 @@ msgstr "" "\n" " --show=PAQUET montrer des détails du PAQUET" -#: guix/scripts/package.scm:552 +#: guix/scripts/package.scm:554 #, scheme-format msgid "upgrade regexp '~a' looks like a command-line option~%" msgstr "l'expression régulière « ~a » ressemble à une option de la ligne de commande~%" -#: guix/scripts/package.scm:555 +#: guix/scripts/package.scm:557 #, scheme-format msgid "is this intended?~%" msgstr "est-ce intentionnel ?~%" -#: guix/scripts/package.scm:605 +#: guix/scripts/package.scm:607 #, scheme-format msgid "~a: unsupported kind of search path~%" msgstr "~a : type de chemin de recherche non pris en charge~%" -#: guix/scripts/package.scm:739 +#: guix/scripts/package.scm:741 #, scheme-format msgid "cannot install non-package object: ~s~%" msgstr "impossible d'installer un objet qui n'est pas un paquet : ~s~%" -#: guix/scripts/package.scm:918 +#: guix/scripts/package.scm:920 #, scheme-format msgid "~a~@[@~a~]: package not found~%" msgstr "~a~@[@~a~] : paquet introuvable~%" -#: guix/scripts/package.scm:965 guix/scripts/pull.scm:687 +#: guix/scripts/package.scm:967 guix/scripts/pull.scm:687 #, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "impossible de passer à la génération « ~a »~%" -#: guix/scripts/package.scm:1060 +#: guix/scripts/package.scm:1062 #, scheme-format msgid "nothing to do~%" msgstr "rien à faire~%" @@ -3633,8 +3753,8 @@ msgstr "" "Utilisation : guix git COMMANDE ARGS...\n" "Effectue des opérations sur des dépôts git.\n" -#: guix/scripts/git.scm:29 guix/scripts/system.scm:945 -#: guix/scripts/container.scm:30 guix/scripts/home.scm:69 +#: guix/scripts/git.scm:29 guix/scripts/system.scm:946 +#: guix/scripts/container.scm:30 guix/scripts/home.scm:70 msgid "The valid values for ACTION are:\n" msgstr "Les valeurs possibles pour ACTION sont :\n" @@ -3744,22 +3864,22 @@ msgstr "" "\n" " -S, --serializer=TYPE calculer l'empreinte du FICHIER en fonction du TYPE de sérialisation" -#: guix/scripts/hash.scm:137 +#: guix/scripts/hash.scm:138 #, scheme-format -msgid "'--recursive' is deprecated, use '--serializer' instead~%" -msgstr "« --recursive » est obsolète, utilisez plutôt « serializer »~%" +msgid "'--recursive' is deprecated, use '--serializer=nar' instead~%" +msgstr "« --recursive » est obsolète, utilisez plutôt « --serializer=nar »~%" -#: guix/scripts/hash.scm:152 +#: guix/scripts/hash.scm:153 #, scheme-format msgid "unsupported serializer type: ~a~%" msgstr "type de sérialiseur non pris en charge : ~a~%" -#: guix/scripts/hash.scm:201 +#: guix/scripts/hash.scm:202 #, scheme-format msgid "~a ~a~%" msgstr "~a ~a~%" -#: guix/scripts/hash.scm:210 +#: guix/scripts/hash.scm:211 #, scheme-format msgid "no arguments specified~%" msgstr "aucun argument spécifié~%" @@ -3829,9 +3949,9 @@ msgstr "~a : clé de tri invalide~%" #: guix/scripts/import/minetest.scm:115 guix/scripts/import/cran.scm:120 #: guix/scripts/import/elpa.scm:110 guix/scripts/import/cpan.scm:87 #: guix/scripts/import/crate.scm:103 guix/scripts/import/egg.scm:106 -#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:121 +#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:122 #: guix/scripts/import/hackage.scm:158 guix/scripts/import/json.scm:97 -#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:104 +#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:105 #: guix/scripts/import/stackage.scm:130 guix/scripts/import/texlive.scm:88 #, scheme-format msgid "too few arguments~%" @@ -3840,10 +3960,10 @@ msgstr "trop peu d'arguments~%" #: guix/scripts/import/minetest.scm:117 guix/scripts/import/cran.scm:122 #: guix/scripts/import/elpa.scm:112 guix/scripts/import/cpan.scm:89 #: guix/scripts/import/crate.scm:105 guix/scripts/import/egg.scm:108 -#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:123 +#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:124 #: guix/scripts/import/hackage.scm:149 guix/scripts/import/hackage.scm:160 #: guix/scripts/import/json.scm:99 guix/scripts/import/opam.scm:113 -#: guix/scripts/import/pypi.scm:106 guix/scripts/import/stackage.scm:132 +#: guix/scripts/import/pypi.scm:107 guix/scripts/import/stackage.scm:132 #: guix/scripts/import/texlive.scm:90 #, scheme-format msgid "too many arguments~%" @@ -3873,7 +3993,7 @@ msgstr "" "\n" " -s, --style=STYLE choisir le style de la sortie, soit « specification », soit « variable »" -#: guix/scripts/import/cran.scm:116 guix/scripts/import/texlive.scm:84 +#: guix/scripts/import/cran.scm:116 #, scheme-format msgid "failed to download description for package '~a'~%" msgstr "échec lors du téléchargement de la description du paquet « ~a »~%" @@ -4124,15 +4244,11 @@ msgid "TLS error in procedure '~a': ~a~%" msgstr "Erreur TLS dans la procédure « ~a » : ~a~%" #: guix/scripts/substitute.scm:240 -#, fuzzy -#| msgid "" -#| "Usage: guix substitute [OPTION]...\n" -#| "Internal tool to substitute a pre-built binary to a local build.\n" msgid "" "Usage: guix substitute OPTION [ARGUMENT]...\n" "Internal tool to substitute a pre-built binary to a local build.\n" msgstr "" -"Utilisation : guix substitute [OPTION]...\n" +"Utilisation : guix substitute OPTION [ARGUMENT]…\n" "Outil interne pour substituer un binaire pré-compilé à une compilation locale.\n" #: guix/scripts/substitute.scm:242 @@ -4323,27 +4439,27 @@ msgstr "le graphe orienté acyclique (DAG) des services" msgid "the dependency graph of shepherd services" msgstr "le graphique des dépendances des services du shepherd" -#: guix/scripts/system.scm:482 guix/scripts/home.scm:453 +#: guix/scripts/system.scm:482 guix/scripts/home.scm:466 #, scheme-format msgid " repository URL: ~a~%" msgstr " URL du dépôt : ~a~%" -#: guix/scripts/system.scm:484 guix/scripts/home.scm:455 +#: guix/scripts/system.scm:484 guix/scripts/home.scm:468 #, scheme-format msgid " branch: ~a~%" msgstr " branche : ~a~%" -#: guix/scripts/system.scm:485 guix/scripts/home.scm:456 +#: guix/scripts/system.scm:485 guix/scripts/home.scm:469 #, scheme-format msgid " commit: ~a~%" msgstr " commit : ~a~%" -#: guix/scripts/system.scm:505 guix/scripts/home.scm:469 +#: guix/scripts/system.scm:505 guix/scripts/home.scm:482 #, scheme-format msgid " file name: ~a~%" msgstr " nom de fichier : ~a~%" -#: guix/scripts/system.scm:506 guix/scripts/home.scm:470 +#: guix/scripts/system.scm:506 guix/scripts/home.scm:483 #, scheme-format msgid " canonical file name: ~a~%" msgstr " nom de fichier canonique : ~a~%" @@ -4384,12 +4500,12 @@ msgstr " multiboot : ~a~%" #. TRANSLATORS: Here "channel" is the same terminology as used in #. "guix describe" and "guix pull --channels". -#: guix/scripts/system.scm:536 guix/scripts/home.scm:476 +#: guix/scripts/system.scm:536 guix/scripts/home.scm:489 #, scheme-format msgid " channels:~%" msgstr " canaux :~%" -#: guix/scripts/system.scm:539 guix/scripts/home.scm:479 +#: guix/scripts/system.scm:539 guix/scripts/home.scm:492 #, scheme-format msgid " configuration file: ~a~%" msgstr " fichier de configuration : ~a~%" @@ -4443,17 +4559,17 @@ msgstr "Envisagez d'exécuter « guix pull » avant « reconfigure ».~%" msgid "Failing to do that may downgrade your system!~%" msgstr "Si vous ne le faites pas, votre système pourrait être amené à une version inférieure !~%" -#: guix/scripts/system.scm:754 guix/scripts/system.scm:863 +#: guix/scripts/system.scm:754 guix/scripts/system.scm:864 #, scheme-format msgid "bootloader successfully installed on '~a'~%" msgstr "chargeur d'amorçage correctement installé sur « ~a »~%" -#: guix/scripts/system.scm:856 +#: guix/scripts/system.scm:857 #, scheme-format msgid "activating system...~%" msgstr "activation du système...~%" -#: guix/scripts/system.scm:867 +#: guix/scripts/system.scm:868 msgid "" "To complete the upgrade, run 'herd restart SERVICE' to stop,\n" "upgrade, and restart each service that was not automatically restarted.\n" @@ -4462,25 +4578,25 @@ msgstr "" "mettre à jour et redémarrer tous les services qui n'ont pas été redémarrés\n" "automatiquement.\n" -#: guix/scripts/system.scm:870 +#: guix/scripts/system.scm:871 msgid "Run 'herd status' to view the list of services on your system.\n" msgstr "Lancez « herd status » pour visualiser la liste des services de votre système.\n" -#: guix/scripts/system.scm:874 +#: guix/scripts/system.scm:875 #, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "initialisation du système d'exploitation sous « ~a »...~%" -#: guix/scripts/system.scm:894 guix/scripts/graph.scm:437 +#: guix/scripts/system.scm:895 guix/scripts/graph.scm:437 #, scheme-format msgid "~a: unknown backend~%" msgstr "~a : moteur de graphe inconnu~%" -#: guix/scripts/system.scm:931 +#: guix/scripts/system.scm:932 msgid "The available image types are:\n" msgstr "Les types d'image disponibles sont :\n" -#: guix/scripts/system.scm:941 +#: guix/scripts/system.scm:942 msgid "" "Usage: guix system [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the operating system declared in FILE according to ACTION.\n" @@ -4490,67 +4606,67 @@ msgstr "" "Compiler le système d'exploitation déclaré dans FICHER en suivant ACTION.\n" "Certaines ACTIONS prennent en charge des ARGUMENTS supplémentaires.\n" -#: guix/scripts/system.scm:947 +#: guix/scripts/system.scm:948 msgid " search search for existing service types\n" msgstr " search chercher des types de services existants\n" -#: guix/scripts/system.scm:949 +#: guix/scripts/system.scm:950 msgid " reconfigure switch to a new operating system configuration\n" msgstr " reconfigure basculer vers une nouvelle configuration du système d'exploitation\n" -#: guix/scripts/system.scm:951 +#: guix/scripts/system.scm:952 msgid " roll-back switch to the previous operating system configuration\n" msgstr " roll-back basculer vers la configuration du système d'exploitation précédente\n" -#: guix/scripts/system.scm:953 +#: guix/scripts/system.scm:954 msgid " describe describe the current system\n" msgstr " describe décrit le système actuel\n" -#: guix/scripts/system.scm:955 +#: guix/scripts/system.scm:956 msgid " list-generations list the system generations\n" msgstr " list-generations lister les générations du système\n" -#: guix/scripts/system.scm:957 +#: guix/scripts/system.scm:958 msgid " switch-generation switch to an existing operating system configuration\n" msgstr " switch-generation basculer vers une configuration du système d'exploitation existante\n" -#: guix/scripts/system.scm:959 +#: guix/scripts/system.scm:960 msgid " delete-generations delete old system generations\n" msgstr " delete-generations supprimer les anciennes générations du système\n" -#: guix/scripts/system.scm:961 +#: guix/scripts/system.scm:962 msgid " build build the operating system without installing anything\n" msgstr " build compiler le système d'exploitation sans rien installer\n" -#: guix/scripts/system.scm:963 +#: guix/scripts/system.scm:964 msgid " container build a container that shares the host's store\n" msgstr " container compiler un conteneur qui partage le dépôt de l'hôte\n" -#: guix/scripts/system.scm:965 +#: guix/scripts/system.scm:966 msgid " vm build a virtual machine image that shares the host's store\n" msgstr " vm compiler une machine virtuelle partageant le dépôt de l'hôte\n" -#: guix/scripts/system.scm:967 +#: guix/scripts/system.scm:968 msgid " image build a Guix System image\n" msgstr " image construit une image du Système Guix\n" -#: guix/scripts/system.scm:969 +#: guix/scripts/system.scm:970 msgid " docker-image build a Docker image\n" msgstr " docker-image compiler une image Docker\n" -#: guix/scripts/system.scm:971 +#: guix/scripts/system.scm:972 msgid " init initialize a root file system to run GNU\n" msgstr " init initialiser un système de fichier racine pour lancer GNU.\n" -#: guix/scripts/system.scm:973 +#: guix/scripts/system.scm:974 msgid " extension-graph emit the service extension graph in Dot format\n" msgstr " extension-graph produire le graphique des extensions de service au format Dot\n" -#: guix/scripts/system.scm:975 +#: guix/scripts/system.scm:976 msgid " shepherd-graph emit the graph of shepherd services in Dot format\n" msgstr " shepherd-graph produire le graphique des services du shepherd au format Dot\n" -#: guix/scripts/system.scm:979 +#: guix/scripts/system.scm:980 msgid "" "\n" " -d, --derivation return the derivation of the given system" @@ -4558,7 +4674,7 @@ msgstr "" "\n" " -d, --derivation retourner les dérivations pour le système donné" -#: guix/scripts/system.scm:981 +#: guix/scripts/system.scm:982 msgid "" "\n" " -e, --expression=EXPR consider the operating-system EXPR evaluates to\n" @@ -4568,7 +4684,7 @@ msgstr "" " -e, --expression=EXPR considère le paquet évalué par EXPR\n" " au lieu de lire FICHIER, lorsque c'est possible" -#: guix/scripts/system.scm:984 +#: guix/scripts/system.scm:985 guix/scripts/home.scm:95 msgid "" "\n" " --allow-downgrades for 'reconfigure', allow downgrades to earlier\n" @@ -4578,7 +4694,7 @@ msgstr "" " --allow-downgrades pour « reconfigure », permet de revenir aux révisions antérieures\n" " des canaux" -#: guix/scripts/system.scm:987 +#: guix/scripts/system.scm:988 msgid "" "\n" " --on-error=STRATEGY\n" @@ -4590,7 +4706,7 @@ msgstr "" " appliquer la STRATÉGIE (nothing-special, backtrace ou debug)\n" " quand une erreur survient en lisant le FICHIER" -#: guix/scripts/system.scm:991 +#: guix/scripts/system.scm:992 msgid "" "\n" " --list-image-types list available image types" @@ -4598,7 +4714,7 @@ msgstr "" "\n" " --list-image-types lister les types d'image disponibles" -#: guix/scripts/system.scm:993 +#: guix/scripts/system.scm:994 msgid "" "\n" " -t, --image-type=TYPE for 'image', produce an image of TYPE" @@ -4606,7 +4722,7 @@ msgstr "" "\n" " -t, --image-type=TYPE pour « image », produit une image de type TYPE" -#: guix/scripts/system.scm:995 +#: guix/scripts/system.scm:996 msgid "" "\n" " --image-size=SIZE for 'image', produce an image of SIZE" @@ -4615,7 +4731,7 @@ msgstr "" " --image-size=TAILLE\n" " pour « image », produire une image de TAILLE" -#: guix/scripts/system.scm:997 +#: guix/scripts/system.scm:998 msgid "" "\n" " --no-bootloader for 'init', do not install a bootloader" @@ -4623,7 +4739,7 @@ msgstr "" "\n" " --no-bootloader pour « init », ne pas installer un chargeur de démarrage" -#: guix/scripts/system.scm:999 +#: guix/scripts/system.scm:1000 msgid "" "\n" " --volatile for 'image', make the root file system volatile" @@ -4631,7 +4747,15 @@ msgstr "" "\n" " --volatile pour « image », rend le système de fichiers racine volatile" -#: guix/scripts/system.scm:1001 +#: guix/scripts/system.scm:1002 +msgid "" +"\n" +" --persistent for 'vm', make the root file system persistent" +msgstr "" +"\n" +" --persistent pour « vm », rend le système de fichiers racine persistant" + +#: guix/scripts/system.scm:1004 msgid "" "\n" " --label=LABEL for 'image', label disk image with LABEL" @@ -4639,7 +4763,7 @@ msgstr "" "\n" " --label=LABEL pour « image », utilise l'étiquette LABEL pour l'image disque" -#: guix/scripts/system.scm:1003 guix/scripts/pack.scm:1340 +#: guix/scripts/system.scm:1006 guix/scripts/pack.scm:1340 msgid "" "\n" " --save-provenance save provenance information" @@ -4647,7 +4771,7 @@ msgstr "" "\n" " --save-provenance sauvegarder les informations de provenance" -#: guix/scripts/system.scm:1005 +#: guix/scripts/system.scm:1008 msgid "" "\n" " --share=SPEC for 'vm' and 'container', share host file system with\n" @@ -4657,7 +4781,7 @@ msgstr "" " --share=SPEC pour « vm » et « container », partager le système de fichiers\n" " hôte en lecture-écriture selon SPEC" -#: guix/scripts/system.scm:1008 +#: guix/scripts/system.scm:1011 msgid "" "\n" " --expose=SPEC for 'vm' and 'container', expose host file system\n" @@ -4667,7 +4791,7 @@ msgstr "" " --expose=SPEC pour « vm » et « container », exposer le système de fichiers\n" " hôte en lecture-seule selon SPEC" -#: guix/scripts/system.scm:1011 +#: guix/scripts/system.scm:1014 msgid "" "\n" " -N, --network for 'container', allow containers to access the network" @@ -4675,7 +4799,7 @@ msgstr "" "\n" " -N, --network pour « container », permet l'accès au réseau des conteneurs" -#: guix/scripts/system.scm:1013 +#: guix/scripts/system.scm:1016 msgid "" "\n" " -r, --root=FILE for 'vm', 'image', 'container' and 'build',\n" @@ -4688,7 +4812,7 @@ msgstr "" " sur le résultat et l'enregistrer en tant que racine du\n" "
 ramasse-miettes" -#: guix/scripts/system.scm:1017 +#: guix/scripts/system.scm:1020 msgid "" "\n" " --full-boot for 'vm', make a full boot sequence" @@ -4696,7 +4820,7 @@ msgstr "" "\n" " --full-boot pour « vm », accomplir une séquence complète de démarrage" -#: guix/scripts/system.scm:1019 +#: guix/scripts/system.scm:1022 msgid "" "\n" " --no-graphic for 'vm', use the tty that we are started in for IO" @@ -4704,7 +4828,7 @@ msgstr "" "\n" " --no-graphic pour « vm », utilise le tty actuel pour les entrées-sorties" -#: guix/scripts/system.scm:1021 +#: guix/scripts/system.scm:1024 msgid "" "\n" " --skip-checks skip file system and initrd module safety checks" @@ -4713,7 +4837,7 @@ msgstr "" " --skip-checks ignorer les tests de sécurité des systèmes de fichiers et\n" " des modules de l'initrd" -#: guix/scripts/system.scm:1028 +#: guix/scripts/system.scm:1031 msgid "" "\n" " --graph-backend=BACKEND\n" @@ -4723,57 +4847,57 @@ msgstr "" " --graph-backend=BACKEND
\n" " utilise BACKEND poun « extension-graphs » et « shepherd-graph »" -#: guix/scripts/system.scm:1180 +#: guix/scripts/system.scm:1187 #, scheme-format msgid "'~a' does not return an operating system or an image~%" msgstr "« ~a » ne renvoie pas un système d'exploitation ni une image~%" -#: guix/scripts/system.scm:1204 guix/scripts/home.scm:216 +#: guix/scripts/system.scm:1211 guix/scripts/home.scm:230 #, scheme-format msgid "both file and expression cannot be specified~%" msgstr "on ne peut pas spécifier à la fois un fichier et une expression~%" -#: guix/scripts/system.scm:1211 guix/scripts/home.scm:223 +#: guix/scripts/system.scm:1218 guix/scripts/home.scm:237 #, scheme-format msgid "no configuration specified~%" msgstr "aucune configuration spécifiée~%" -#: guix/scripts/system.scm:1319 guix/scripts/system.scm:1335 -#: guix/scripts/system.scm:1342 guix/scripts/system.scm:1348 -#: guix/scripts/home.scm:274 guix/scripts/home.scm:296 -#: guix/scripts/home.scm:301 guix/scripts/home.scm:307 -#: guix/scripts/home.scm:314 guix/scripts/import/gnu.scm:100 +#: guix/scripts/system.scm:1328 guix/scripts/system.scm:1344 +#: guix/scripts/system.scm:1351 guix/scripts/system.scm:1357 +#: guix/scripts/home.scm:287 guix/scripts/home.scm:309 +#: guix/scripts/home.scm:314 guix/scripts/home.scm:320 +#: guix/scripts/home.scm:327 guix/scripts/import/gnu.scm:100 #: guix/scripts/offload.scm:836 guix/scripts/offload.scm:848 #, scheme-format msgid "wrong number of arguments~%" msgstr "nombre d'arguments incorrect~%" -#: guix/scripts/system.scm:1324 +#: guix/scripts/system.scm:1333 #, scheme-format msgid "no system generation, nothing to describe~%" msgstr "pas de génération du système, il n'y a rien à décrire~%" -#: guix/scripts/system.scm:1367 guix/scripts/home.scm:337 +#: guix/scripts/system.scm:1376 guix/scripts/home.scm:350 #, scheme-format msgid "~a: unknown action~%" msgstr "~a : action inconnue~%" -#: guix/scripts/system.scm:1387 guix/scripts/home.scm:353 +#: guix/scripts/system.scm:1396 guix/scripts/home.scm:366 #, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "nombre d'arguments incorrect pour l'action « ~a »~%" -#: guix/scripts/system.scm:1392 +#: guix/scripts/system.scm:1401 #, scheme-format msgid "guix system: missing command name~%" msgstr "guix system : nom de commande manquant~%" -#: guix/scripts/system.scm:1394 +#: guix/scripts/system.scm:1403 #, scheme-format msgid "Try 'guix system --help' for more information.~%" msgstr "Essayez « guix system --help » pour plus d'informations.~%" -#: guix/scripts/system/search.scm:93 guix/ui.scm:1541 guix/ui.scm:1559 +#: guix/scripts/system/search.scm:93 guix/ui.scm:1544 guix/ui.scm:1562 msgid "unknown" msgstr "inconnu" @@ -5243,7 +5367,7 @@ msgstr "" " --path affiche le plus court chemin entre les nœuds donnés" #: guix/scripts/graph.scm:548 guix/scripts/pack.scm:1325 -#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:502 +#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:797 msgid "" "\n" " -e, --expression=EXPR consider the package EXPR evaluates to" @@ -5930,7 +6054,7 @@ msgstr "" "\n" " -f, --format=FORMAT montrer les résultats comme des ensembles d'enregistrement normalisés" -#: guix/scripts/deploy.scm:51 +#: guix/scripts/deploy.scm:54 msgid "" "Usage: guix deploy [OPTION] FILE...\n" "Perform the deployment specified by FILE.\n" @@ -5938,38 +6062,86 @@ msgstr "" "Utilisation : guix debloy [OPTION] FICHIER...\n" "Effectue le déploiement spécifié par FICHIER.\n" -#: guix/scripts/deploy.scm:108 +#: guix/scripts/deploy.scm:63 +#, fuzzy +#| msgid " exec execute a command inside of an existing container\n" +msgid "" +"\n" +" -x, --execute execute the following command on all the machines" +msgstr " exec exécuter une commande dans un container existant\n" + +#: guix/scripts/deploy.scm:117 #, scheme-format msgid "The following ~d machine will be deployed:~%" msgid_plural "The following ~d machines will be deployed:~%" msgstr[0] "La (~d) machine suivante sera déployée :~%" msgstr[1] "Les ~d machines suivantes seront déployées :~%" -#: guix/scripts/deploy.scm:122 +#: guix/scripts/deploy.scm:131 #, scheme-format msgid "deploying to ~a...~%" msgstr "déploiement vers ~a...~%" -#: guix/scripts/deploy.scm:134 guix/scripts/deploy.scm:138 +#: guix/scripts/deploy.scm:143 guix/scripts/deploy.scm:147 #, scheme-format msgid "failed to deploy ~a: ~a~%" msgstr "impossible de déployer ~a : ~a~%" -#: guix/scripts/deploy.scm:146 +#: guix/scripts/deploy.scm:155 #, scheme-format msgid "rolling back ~a...~%" msgstr "Retour en arrière de ~a...~%" -#: guix/scripts/deploy.scm:152 +#: guix/scripts/deploy.scm:161 #, scheme-format msgid "successfully deployed ~a~%" msgstr "déploiement de ~a réussi~%" -#: guix/scripts/deploy.scm:167 +#: guix/scripts/deploy.scm:212 +#, fuzzy, scheme-format +#| msgid "~a: command not found~%" +msgid "~a: command succeeded~%" +msgstr "~a : commande introuvable~%" + +#: guix/scripts/deploy.scm:215 +#, fuzzy, scheme-format +#| msgid "Command failed with exit code ~a.~%" +msgid "~a: command exited with code ~a~%" +msgstr "La commande a échouée avec le code ~a.~%" + +#: guix/scripts/deploy.scm:218 +#, fuzzy, scheme-format +#| msgid "~a: command not found~%" +msgid "~a: command stopped with signal ~a~%" +msgstr "~a : commande introuvable~%" + +#: guix/scripts/deploy.scm:221 +#, fuzzy, scheme-format +#| msgid "~a: consider removing this input: ~a~%" +msgid "~a: command terminated with signal ~a~%" +msgstr "~a : considérez la suppression de cette entrée : ~a~%" + +#: guix/scripts/deploy.scm:225 +#, fuzzy, scheme-format +#| msgid "~a: command not found~%" +msgid "command output on ~a:~%" +msgstr "~a : commande introuvable~%" + +#: guix/scripts/deploy.scm:246 #, scheme-format msgid "missing deployment file argument~%" msgstr "argument du fichier de déploiement manquant~%" +#: guix/scripts/deploy.scm:249 +#, scheme-format +msgid "'--' was used by '-x' was not specified~%" +msgstr "" + +#: guix/scripts/deploy.scm:271 +#, scheme-format +msgid "'-x' specified but no command given~%" +msgstr "" + #: guix/gexp.scm:465 #, scheme-format msgid "resolving '~a' relative to current directory~%" @@ -6065,75 +6237,71 @@ msgstr "aucun processus ~d~%" msgid "exec failed with status ~d~%" msgstr "exec a échoué avec le statut ~d~%" -#: guix/transformations.scm:185 guix/transformations.scm:253 +#: guix/transformations.scm:186 guix/transformations.scm:254 #, scheme-format msgid "invalid replacement specification: ~s" msgstr "spécification de remplacement invalide : ~s" -#: guix/transformations.scm:234 +#: guix/transformations.scm:235 #, scheme-format msgid "the source of ~a is not a Git reference" msgstr "la source de ~a n'est pas une référence Git" -#: guix/transformations.scm:337 +#: guix/transformations.scm:338 #, scheme-format msgid "~a: invalid Git URL replacement specification" msgstr "~a : spécification d'URL Git de remplacement invalide" -#: guix/transformations.scm:415 +#: guix/transformations.scm:416 #, scheme-format msgid "~a: invalid toolchain replacement specification" msgstr "~a : spécification de remplacement de la chaine d'outils invalide" -#: guix/transformations.scm:517 -#, fuzzy -#| msgid "failed to determine origin~%" +#: guix/transformations.scm:518 msgid "failed to determine which compiler is used" -msgstr "échec à la détection de l'origine~%" +msgstr "échec à la détection du compilateur utilisé" -#: guix/transformations.scm:523 -#, fuzzy, scheme-format -#| msgid "failed to determine latest release of GNU ~a" +#: guix/transformations.scm:524 +#, scheme-format msgid "failed to determine whether ~a supports ~a" -msgstr "impossible de déterminer la dernière version de GNU ~a" +msgstr "impossible de déterminer si ~a prend en charge ~a" -#: guix/transformations.scm:529 +#: guix/transformations.scm:530 #, scheme-format msgid "compiler ~a does not support micro-architecture ~a" -msgstr "" +msgstr "le compilateur ~a ne prend pas en charge la micro-architecture ~a" -#: guix/transformations.scm:581 -#, fuzzy, scheme-format -#| msgid "~a for ~a~%" +#: guix/transformations.scm:582 +#, scheme-format msgid "tuning ~a for CPU ~a~%" -msgstr "~a pour ~a~%" +msgstr "paramétrage de ~a pour les CPU ~a~%" -#: guix/transformations.scm:721 +#: guix/transformations.scm:722 #, scheme-format msgid "~a: invalid package patch specification" msgstr "~a : spécification de correctif de paquet invalide" -#: guix/transformations.scm:744 +#: guix/transformations.scm:745 #, scheme-format msgid "could not determine latest upstream release of '~a'~%" msgstr "impossible de déterminer la dernière version en amont de « ~a »~%" -#: guix/transformations.scm:752 +#: guix/transformations.scm:753 #, scheme-format msgid "cannot authenticate source of '~a', version ~a~%" msgstr "impossible d'authentifier la source de « ~a », version ~a~%" -#: guix/transformations.scm:833 +#: guix/transformations.scm:840 #, scheme-format msgid "building for ~a instead of ~a, so tuning cannot be guessed~%" -msgstr "" +msgstr "construction pour ~a au lieu de ~a, donc le paramétrage ne peut pas être trouvé~%" -#: guix/transformations.scm:859 +#: guix/transformations.scm:866 #, scheme-format msgid "Available package transformation options:~%" msgstr "Options de transformation des paquets disponibles :~%" -#: guix/transformations.scm:865 +#: guix/transformations.scm:872 msgid "" "\n" " --with-source=[PACKAGE=]SOURCE\n" @@ -6143,7 +6311,7 @@ msgstr "" " --with-source=[PAQUET=]SOURCE\n" " utiliser la SOURCE donnée pour compiler le paquet correspondant" -#: guix/transformations.scm:868 +#: guix/transformations.scm:875 msgid "" "\n" " --with-input=PACKAGE=REPLACEMENT\n" @@ -6153,7 +6321,7 @@ msgstr "" " --with-input=PAQUET=REMPLACEMENT\n" " remplacer le paquet de dépendance PAQUET par REMPLACEMENT" -#: guix/transformations.scm:871 +#: guix/transformations.scm:878 msgid "" "\n" " --with-graft=PACKAGE=REPLACEMENT\n" @@ -6163,7 +6331,7 @@ msgstr "" " --with-graft=PAQUET=REMPLACEMENT\n" " greffer le paquet REMPLACEMENT sur les paquets qui font référence à PAQUET" -#: guix/transformations.scm:874 +#: guix/transformations.scm:881 msgid "" "\n" " --with-branch=PACKAGE=BRANCH\n" @@ -6173,7 +6341,7 @@ msgstr "" " --with-branch=PAQUET=BRANCHE\n" " construit le PAQUET à partir du dernier commit de la BRANCHE" -#: guix/transformations.scm:877 +#: guix/transformations.scm:884 msgid "" "\n" " --with-commit=PACKAGE=COMMIT\n" @@ -6183,7 +6351,7 @@ msgstr "" " --with-commit=PAQUET=COMMIT\n" " construit le PAQUET à partir du COMMIT" -#: guix/transformations.scm:880 +#: guix/transformations.scm:887 msgid "" "\n" " --with-git-url=PACKAGE=URL\n" @@ -6193,7 +6361,7 @@ msgstr "" " --with-git-url=PAQUET=URL\n" " construit le PAQUET à partir de l'URL du dépôt" -#: guix/transformations.scm:883 +#: guix/transformations.scm:890 msgid "" "\n" " --with-patch=PACKAGE=FILE\n" @@ -6203,7 +6371,7 @@ msgstr "" " --with-patch=PAQUET=FICHIER\n" " ajoute le FICHIER à la liste des correctifs de PAQUET" -#: guix/transformations.scm:886 +#: guix/transformations.scm:893 msgid "" "\n" " --with-latest=PACKAGE\n" @@ -6212,7 +6380,7 @@ msgstr "" "\n" " --with-latest=PAQUET
 utilise la dernière version en amont de PAQUET" -#: guix/transformations.scm:889 +#: guix/transformations.scm:896 msgid "" "\n" " --with-c-toolchain=PACKAGE=TOOLCHAIN\n" @@ -6222,7 +6390,7 @@ msgstr "" " --with-c-toolchain=PAQUET=CHAÎNE D'OUTILS\n" " construit le PAQUET et ses dépendances avec CHAÎNE D'OUTILS" -#: guix/transformations.scm:892 +#: guix/transformations.scm:899 msgid "" "\n" " --with-debug-info=PACKAGE\n" @@ -6232,7 +6400,7 @@ msgstr "" " --with-debug-info=PAQUET\n" " construit le PAQUET en préservant ses informations de débogage" -#: guix/transformations.scm:895 +#: guix/transformations.scm:902 msgid "" "\n" " --without-tests=PACKAGE\n" @@ -6242,7 +6410,7 @@ msgstr "" " --without-tests=PAQUET\n" " construit le PAQUET sans lancer ses tests" -#: guix/transformations.scm:901 +#: guix/transformations.scm:908 msgid "" "\n" " --help-transform list package transformation options not shown here" @@ -6250,7 +6418,7 @@ msgstr "" "\n" " --help-transform affiche les options de transformation des paquets qui ne sont pas affichées ici" -#: guix/transformations.scm:950 +#: guix/transformations.scm:957 #, scheme-format msgid "transformation '~a' had no effect on ~a~%" msgstr "la transformation « ~a » n'a pas d'effet sur ~a~%" @@ -6758,12 +6926,12 @@ msgstr[1] "Les paquets suivants seront installés :~%~{~a~%~}~%" msgid "~a: invalid Texinfo markup~%" msgstr "~a : balisage Texinfo non valide~%" -#: guix/ui.scm:1873 +#: guix/ui.scm:1876 #, scheme-format msgid "invalid syntax: ~a~%" msgstr "syntaxe non valide : ~a~%" -#: guix/ui.scm:1882 +#: guix/ui.scm:1885 #, scheme-format msgid "Generation ~a\t~a" msgstr "Génération ~a\t~a" @@ -6773,7 +6941,7 @@ msgstr "Génération ~a\t~a" #. usual way of presenting dates in your locale. #. See https://www.gnu.org/software/guile/manual/html_node/SRFI_002d19-Date-to-string.html #. for details. -#: guix/ui.scm:1892 +#: guix/ui.scm:1895 #, scheme-format msgid "~b ~d ~Y ~T" msgstr "~d ~b ~Y ~T" @@ -6781,37 +6949,37 @@ msgstr "~d ~b ~Y ~T" #. TRANSLATORS: The word "current" here is an adjective for #. "Generation", as in "current generation". Use the appropriate #. gender where applicable. -#: guix/ui.scm:1898 +#: guix/ui.scm:1901 #, scheme-format msgid "~a\t(current)~%" msgstr "~a\t(actuelle)~%" -#: guix/ui.scm:1932 +#: guix/ui.scm:1935 #, scheme-format msgid "cannot lock profile ~a: ~a~%" msgstr "impossible de verrouiller le profil ~a : ~a~%" -#: guix/ui.scm:1934 +#: guix/ui.scm:1937 #, scheme-format msgid "profile ~a is locked by another process~%" msgstr "le profil ~a est verrouillé par un autre processus~%" -#: guix/ui.scm:1963 +#: guix/ui.scm:1966 #, scheme-format msgid "switched from generation ~a to ~a~%" msgstr "passé de la génération ~a à ~a~%" -#: guix/ui.scm:1979 +#: guix/ui.scm:1982 #, scheme-format msgid "deleting ~a~%" msgstr "suppression de ~a~%" -#: guix/ui.scm:2010 +#: guix/ui.scm:2013 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "Essayez « guix --help » pour plus d'informations.~%" -#: guix/ui.scm:2102 +#: guix/ui.scm:2105 msgid "" "Usage: guix OPTION | COMMAND ARGS...\n" "Run COMMAND with ARGS, if given.\n" @@ -6819,7 +6987,7 @@ msgstr "" "Utilisation : guix OPTION | COMMANDE ARGS...\n" "Lance la COMMANDE avec les arguments ARGS, le cas échéant.\n" -#: guix/ui.scm:2105 +#: guix/ui.scm:2108 msgid "" "\n" " -h, --help display this helpful text again and exit" @@ -6827,7 +6995,7 @@ msgstr "" "\n" " -h, --help afficher de nouveau ce texte d'aide et quitter" -#: guix/ui.scm:2107 +#: guix/ui.scm:2110 msgid "" "\n" " -V, --version display version and copyright information and exit" @@ -6835,26 +7003,26 @@ msgstr "" "\n" " -V, --version afficher les informations sur la version les droits d'auteur et quitter" -#: guix/ui.scm:2112 +#: guix/ui.scm:2115 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "COMMANDE doit être une des sous-commandes listées ci-dessous :\n" -#: guix/ui.scm:2154 +#: guix/ui.scm:2157 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "guix : ~a : commande introuvable~%" -#: guix/ui.scm:2156 +#: guix/ui.scm:2159 #, scheme-format msgid "Did you mean @code{~a}?" msgstr "Vouliez-vous dire @code{~a} ?" -#: guix/ui.scm:2190 +#: guix/ui.scm:2193 #, scheme-format msgid "guix: missing command name~%" msgstr "guix : nom de commande manquant~%" -#: guix/ui.scm:2198 +#: guix/ui.scm:2201 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "guix : option « ~a » non reconnue ~%" @@ -7192,22 +7360,22 @@ msgstr "pas de hash SHA256 pour l'origine" msgid "unsupported manifest format" msgstr "format de manifeste non pris en charge" -#: guix/profiles.scm:2242 +#: guix/profiles.scm:2247 #, scheme-format msgid "while creating directory `~a': ~a" msgstr "pendant la création du répertoire « ~a » : ~a" -#: guix/profiles.scm:2247 +#: guix/profiles.scm:2252 #, scheme-format msgid "Please create the @file{~a} directory, with you as the owner." msgstr "Veuillez créer le répertoire @file{~a} dont vous êtes le propriétaire." -#: guix/profiles.scm:2256 +#: guix/profiles.scm:2261 #, scheme-format msgid "directory `~a' is not owned by you" msgstr "vous ne possédez pas le répertoire « ~a »" -#: guix/profiles.scm:2260 +#: guix/profiles.scm:2265 #, scheme-format msgid "Please change the owner of @file{~a} to user ~s." msgstr "Veuillez définir le propriétaire de @file{~a} comme étant ~s." @@ -7917,11 +8085,16 @@ msgstr "--no-cwd ne peut pas être utilisé sans --container~%" msgid "'--profile' cannot be used with package options~%" msgstr "« --profile » ne peut pas être utilisé avec des options de paquets~%" -#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:275 +#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:261 #, scheme-format msgid "no packages specified; creating an empty environment~%" msgstr "aucun paquet spécifié ; création d'un environnement vide~%" +#: guix/scripts/environment.scm:979 +#, scheme-format +msgid "'--check' is unnecessary when using '--container'; doing nothing~%" +msgstr "« --check » n'est pas utile avec « --container » ; ne rien faire~%" + #: guix/scripts/home/import.scm:179 msgid "" ";; This \"home-environment\" file can be passed to 'guix home reconfigure'\n" @@ -7936,7 +8109,7 @@ msgstr "" ";; retenir les canaux utilisés, ceux renvoyés par « guix describe ».\n" ";; Voir la section « Répliquer Guix » dans le manuel.\n" -#: guix/scripts/home.scm:65 +#: guix/scripts/home.scm:66 msgid "" "Usage: guix home [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the home environment declared in FILE according to ACTION.\n" @@ -7946,43 +8119,43 @@ msgstr "" "Compiler l'environnement personnel déclaré dans FICHER en suivant ACTION.\n" "Certaines ACTIONS prennent en charge des ARGUMENTS supplémentaires.\n" -#: guix/scripts/home.scm:71 +#: guix/scripts/home.scm:72 msgid " search search for existing service types\n" msgstr " search chercher des types de services existants\n" -#: guix/scripts/home.scm:73 +#: guix/scripts/home.scm:74 msgid " reconfigure switch to a new home environment configuration\n" msgstr " reconfigure basculer vers une nouvelle configuration de l'environnement personnel\n" -#: guix/scripts/home.scm:75 +#: guix/scripts/home.scm:76 msgid " roll-back switch to the previous home environment configuration\n" msgstr " roll-back basculer vers la configuration précédente de l'environnement personnel\n" -#: guix/scripts/home.scm:77 +#: guix/scripts/home.scm:78 msgid " describe describe the current home environment\n" msgstr " describe décrit l'environnement personnel actuel\n" -#: guix/scripts/home.scm:79 +#: guix/scripts/home.scm:80 msgid " list-generations list the home environment generations\n" msgstr " list-generations lister les générations de l'environnement personnel\n" -#: guix/scripts/home.scm:81 +#: guix/scripts/home.scm:82 msgid " switch-generation switch to an existing home environment configuration\n" msgstr " switch-generation basculer vers une configuration existante de l'environnement personnel\n" -#: guix/scripts/home.scm:83 +#: guix/scripts/home.scm:84 msgid " delete-generations delete old home environment generations\n" msgstr " delete-generations supprimer les anciennes générations de l'environnement personnel\n" -#: guix/scripts/home.scm:85 +#: guix/scripts/home.scm:86 msgid " build build the home environment without installing anything\n" msgstr " build compiler l'environnement personnel sans rien installer\n" -#: guix/scripts/home.scm:87 +#: guix/scripts/home.scm:88 msgid " import generates a home environment definition from dotfiles\n" msgstr " import génère une définition d'environnement personnel à partir de fichiers de configuration\n" -#: guix/scripts/home.scm:91 +#: guix/scripts/home.scm:92 msgid "" "\n" " -e, --expression=EXPR consider the home-environment EXPR evaluates to\n" @@ -7992,17 +8165,17 @@ msgstr "" " -e, --expression=EXPR considère l'environnement personnel évalué par EXPR\n" " au lieu de lire FICHIER, lorsque c'est possible" -#: guix/scripts/home.scm:196 +#: guix/scripts/home.scm:210 #, scheme-format msgid "'~a' does not return a home environment ~%" msgstr "« ~a » ne renvoie pas un environnement personnel~%" -#: guix/scripts/home.scm:280 +#: guix/scripts/home.scm:293 #, scheme-format msgid "'~a' populated with all the Home configuration files~%" msgstr "« ~a » rempli avec tous les fichiers de configuration du dossier personnel~%" -#: guix/scripts/home.scm:282 +#: guix/scripts/home.scm:295 #, scheme-format msgid "" "Run @command{guix home reconfigure ~a/home-configuration.scm} to effectively\n" @@ -8011,22 +8184,22 @@ msgstr "" "Lancez @command{guix home reconfigure ~a/home-configuration.scm} pour effectivement\n" "déployer l'environnement personnel décrit par ces fichiers.\n" -#: guix/scripts/home.scm:289 +#: guix/scripts/home.scm:302 #, scheme-format msgid "no home environment generation, nothing to describe~%" msgstr "pas de génération de l'environnement personnel, il n'y a rien à décrire~%" -#: guix/scripts/home.scm:358 +#: guix/scripts/home.scm:371 #, scheme-format msgid "guix home: missing command name~%" msgstr "guix home : nom de commande manquant~%" -#: guix/scripts/home.scm:360 +#: guix/scripts/home.scm:373 #, scheme-format msgid "Try 'guix home --help' for more information.~%" msgstr "Essayez « guix home --help » pour plus d'informations.~%" -#: guix/scripts/home.scm:528 +#: guix/scripts/home.scm:541 #, scheme-format msgid "cannot switch to home environment generation '~a'~%" msgstr "impossible de passer à la génération « ~a » de l'environnement personnel~%" @@ -8073,7 +8246,7 @@ msgstr "" #: guix/scripts/import/cpan.scm:83 guix/scripts/import/crate.scm:97 #: guix/scripts/import/egg.scm:100 guix/scripts/import/gem.scm:98 -#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:100 +#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:101 #, scheme-format msgid "failed to download meta-data for package '~a'~%" msgstr "échec lors du téléchargement des métadonnées du paquet « ~a »~%" @@ -8173,7 +8346,7 @@ msgstr "" "\n" " --pin-versions utiliser les versions extactes des dépendances de module" -#: guix/scripts/import/go.scm:117 +#: guix/scripts/import/go.scm:118 #, scheme-format msgid "failed to download meta-data for module '~a'.~%" msgstr "échec lors du téléchargement des métadonnées du module « ~a ».~%" @@ -8325,6 +8498,11 @@ msgstr "" "Utilisation : guix import texlive NOM-DU-PAQUET
\n" "Importer et convertir le paquet Texlive pour NOM-DU-PAQUET.\n" +#: guix/scripts/import/texlive.scm:84 +#, scheme-format +msgid "failed to import package '~a'~%" +msgstr "échec lors de l'import du paquet « ~a »~%" + #: guix/scripts/offload.scm:130 #, scheme-format msgid "The 'system' field is deprecated, please use 'systems' instead.~%" @@ -8810,7 +8988,7 @@ msgstr "connexion fermée~%" msgid "~a: unknown type of REPL~%" msgstr "~a : type de REPL inconnu~%" -#: guix/scripts/shell.scm:46 +#: guix/scripts/shell.scm:48 msgid "" "Usage: guix shell [OPTION] PACKAGES... [-- COMMAND...]\n" "Build an environment that includes PACKAGES and execute COMMAND or an\n" @@ -8820,7 +8998,7 @@ msgstr "" "Construit un environnement qui inclus les PAQUETS et exécute
\n" "COMMANDE ou un shell interactif dans cet environnement.\n" -#: guix/scripts/shell.scm:52 +#: guix/scripts/shell.scm:54 msgid "" "\n" " -D, --development include the development inputs of the next package" @@ -8828,7 +9006,7 @@ msgstr "" "\n" " -D, --development inclus les entrées de développement du paquet suivant" -#: guix/scripts/shell.scm:54 +#: guix/scripts/shell.scm:56 msgid "" "\n" " -f, --file=FILE add to the environment the package FILE evaluates to" @@ -8836,7 +9014,7 @@ msgstr "" "\n" " -f, --file=FICHIER ajoute le paquet en lequel FICHIER s'évalue à l'environnement" -#: guix/scripts/shell.scm:56 +#: guix/scripts/shell.scm:58 msgid "" "\n" " -q inhibit loading of 'guix.scm' and 'manifest.scm'" @@ -8844,7 +9022,7 @@ msgstr "" "\n" " -q empêche le chargement de « guix.scm » et « manifest.scm »" -#: guix/scripts/shell.scm:58 +#: guix/scripts/shell.scm:60 msgid "" "\n" " --rebuild-cache rebuild cached environment, if any" @@ -8852,22 +9030,22 @@ msgstr "" "\n" " --rebuild-cache reconstruit l'environnement en cache, s'il existe" -#: guix/scripts/shell.scm:199 +#: guix/scripts/shell.scm:201 #, scheme-format msgid "ignoring invalid file name: '~a'~%" msgstr "nom de fichier invalide ignoré : « ~a »~%" -#: guix/scripts/shell.scm:280 +#: guix/scripts/shell.scm:266 #, scheme-format msgid "loading environment from '~a'...~%" msgstr "chargement de l'environnement à partir de « ~a »...~%" -#: guix/scripts/shell.scm:286 +#: guix/scripts/shell.scm:272 #, scheme-format msgid "not loading '~a' because not authorized to do so~%" msgstr "on ne chargera pas « ~a » car on n'y est pas autorisé~%" -#: guix/scripts/shell.scm:288 +#: guix/scripts/shell.scm:274 #, scheme-format msgid "" "To allow automatic loading of\n" @@ -8886,7 +9064,7 @@ msgstr "" "echo ~a >> ~a\n" "@end example\n" -#: guix/scripts/shell.scm:386 +#: guix/scripts/shell.scm:431 msgid "" "Consider passing the @option{--check} option once\n" "to make sure your shell does not clobber environment variables." @@ -8894,42 +9072,52 @@ msgstr "" "Vous devriez passer l'option @option{--check} une fois pour vous\n" "assurer que votre shell n'écrase pas les variables d'environnement." -#: guix/scripts/style.scm:241 +#: guix/scripts/style.scm:499 #, scheme-format msgid "~a: complex expression, bailing out~%" msgstr "~a : expression complexe, ignorée ~%" -#: guix/scripts/style.scm:259 +#: guix/scripts/style.scm:517 #, scheme-format msgid "~a: input label '~a' does not match package name, bailing out~%" msgstr "~a : l'étiquette d'entrée « ~a » ne correspond pas au nom du paquet, ignorée~%" -#: guix/scripts/style.scm:264 +#: guix/scripts/style.scm:522 #, scheme-format msgid "~a: non-trivial input, bailing out~%" msgstr "~a : entrée non triviale, ignorée~%" -#: guix/scripts/style.scm:288 +#: guix/scripts/style.scm:546 #, scheme-format msgid "~a: input expression is too short~%" msgstr "~a : l'expression d'entrée est trop courte~%" -#: guix/scripts/style.scm:380 +#: guix/scripts/style.scm:638 #, scheme-format msgid "~a: unsupported input style, bailing out~%" msgstr "~a : style d'entrée non pris en charge, ignorée~%" -#: guix/scripts/style.scm:392 +#: guix/scripts/style.scm:650 #, scheme-format msgid "would be edited~%" msgstr "serait modifié~%" -#: guix/scripts/style.scm:482 +#: guix/scripts/style.scm:721 +#, scheme-format +msgid "no definition location for package ~a~%" +msgstr "pas d'emplacement de définition du paquet ~a~%" + +#: guix/scripts/style.scm:767 +#, scheme-format +msgid "~a: unknown styling~%" +msgstr "~a : style inconnu~%" + +#: guix/scripts/style.scm:774 #, scheme-format msgid "~a: invalid input simplification policy~%" msgstr "~a : politique de simplification des entrées invalide~%" -#: guix/scripts/style.scm:496 +#: guix/scripts/style.scm:788 msgid "" "Usage: guix style [OPTION]... [PACKAGE]...\n" "Update package definitions to the latest style.\n" @@ -8937,7 +9125,15 @@ msgstr "" "Utilisation : guix style [OPTION]... [PAQUET]...\n" "Met à jour des définition des paquets vers le style le plus récent.\n" -#: guix/scripts/style.scm:498 +#: guix/scripts/style.scm:790 +msgid "" +"\n" +" -S, --styling=RULE apply RULE, a styling rule" +msgstr "" +"\n" +" -S, --styling=RÈGLE applique la RÈGLE, une règle de style" + +#: guix/scripts/style.scm:793 msgid "" "\n" " -n, --dry-run display files that would be edited but do nothing" @@ -8945,7 +9141,7 @@ msgstr "" "\n" " -n, --dry-run montrer les fichiers qui seraient modifiés sans rien faire" -#: guix/scripts/style.scm:504 +#: guix/scripts/style.scm:799 msgid "" "\n" " --input-simplification=POLICY\n" @@ -9100,6 +9296,16 @@ msgstr "écoute sur SOCKET pour des connexions" msgid "produce debugging output" msgstr "produit une sortie de déboguage" +#~ msgid "Please select a disk." +#~ msgstr "Sélectionnez un disque." + +#~ msgid "" +#~ "Failed to import package ~s.\n" +#~ "reason: ~s.~%" +#~ msgstr "" +#~ "Échec de l'import du paquet ~s.\n" +#~ "raison : ~s.~%" + #~ msgid "Other services" #~ msgstr "Autres services" @@ -9432,9 +9638,6 @@ msgstr "produit une sortie de déboguage" #~ msgid "unsupported argument for reference graph" #~ msgstr "argument non supporté pour le graphe de référence" -#~ msgid "~a: note: using ~a but ~a is available upstream~%" -#~ msgstr "~a: note: utilisation de ~a mais ~a est disponible en amont~%" - #~ msgid "sources do not match any package:~{ ~a~}~%" #~ msgstr "les sources ne correspondent à aucun paquet:~{ ~a~}~%" diff --git a/po/guix/hu.po b/po/guix/hu.po index c9010c0450..790c6ccc20 100644 --- a/po/guix/hu.po +++ b/po/guix/hu.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: guix 0.8\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" "PO-Revision-Date: 2021-05-12 11:49+0000\n" "Last-Translator: blob pats \n" "Language-Team: Hungarian \n" @@ -54,37 +54,37 @@ msgstr "" msgid "Try adding @code{(use-service-modules ~a)}." msgstr "Próbáld meg ezt hozzáadni: @code{(use-service-modules ~a)}." -#: gnu/packages.scm:96 +#: gnu/packages.scm:97 #, scheme-format msgid "~a: patch not found" msgstr "~a: a javítás nem található~%" -#: gnu/packages.scm:480 gnu/packages.scm:521 +#: gnu/packages.scm:481 gnu/packages.scm:522 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "nem egyértelmű csomag specifikáció: „~a”~%" -#: gnu/packages.scm:481 gnu/packages.scm:522 +#: gnu/packages.scm:482 gnu/packages.scm:523 #, scheme-format msgid "choosing ~a@~a from ~a~%" msgstr "~a@~a választása innen: ~a~%" -#: gnu/packages.scm:486 guix/scripts/package.scm:216 +#: gnu/packages.scm:487 guix/scripts/package.scm:218 #, scheme-format msgid "package '~a' has been superseded by '~a'~%" msgstr "a(z) „~a” csomagot helyettesíti: „~a”~%" -#: gnu/packages.scm:493 gnu/packages.scm:510 +#: gnu/packages.scm:494 gnu/packages.scm:511 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A: nem található csomag ehhez a verzióhoz: ~a~%" -#: gnu/packages.scm:494 gnu/packages.scm:511 +#: gnu/packages.scm:495 gnu/packages.scm:512 #, scheme-format msgid "~A: unknown package~%" msgstr "~A: ismeretlen csomag~%" -#: gnu/packages.scm:550 +#: gnu/packages.scm:551 #, scheme-format msgid "package `~a' lacks output `~a'~%" msgstr "a(z) „~a” csomag hiányolja a kimenetet: „~a”~%" @@ -273,14 +273,14 @@ msgid "" "@code{SIGKILL}." msgstr "" -#: gnu/home/services.scm:127 +#: gnu/home/services.scm:128 msgid "" "Build the home environment top-level directory,\n" "which in turn refers to everything the home environment needs: its\n" "packages, configuration files, activation script, and so on." msgstr "" -#: gnu/home/services.scm:158 +#: gnu/home/services.scm:159 #, scheme-format msgid "" "This is the @dfn{home profile} and can be found in\n" @@ -289,21 +289,21 @@ msgid "" "@code{home-environment} record." msgstr "" -#: gnu/home/services.scm:180 +#: gnu/home/services.scm:181 #, scheme-format msgid "duplicate definition for `~a' environment variable ~%" msgstr "" -#: gnu/home/services.scm:242 +#: gnu/home/services.scm:243 msgid "Set the environment variables." msgstr "" -#: gnu/home/services.scm:253 +#: gnu/home/services.scm:254 #, scheme-format msgid "duplicate '~a' entry for files/" msgstr "" -#: gnu/home/services.scm:277 +#: gnu/home/services.scm:278 #, scheme-format msgid "" "Configuration files for programs that\n" @@ -312,7 +312,7 @@ msgstr "" #. TRANSLATORS: 'on-first-login' is the name of a service and #. shouldn't be translated -#: gnu/home/services.scm:308 +#: gnu/home/services.scm:309 msgid "" "XDG_RUNTIME_DIR doesn't exists, on-first-login script\n" "won't execute anything. You can check if xdg runtime directory exists,\n" @@ -320,13 +320,13 @@ msgid "" "script by running '$HOME/.guix-home/on-first-login'" msgstr "" -#: gnu/home/services.scm:328 +#: gnu/home/services.scm:329 msgid "" "Run gexps on first user login. Can be\n" "extended with one gexp." msgstr "" -#: gnu/home/services.scm:391 +#: gnu/home/services.scm:392 msgid "" "Run gexps to activate the current\n" "generation of home environment and update the state of the home\n" @@ -335,33 +335,33 @@ msgid "" "with one gexp, but many times, and all gexps must be idempotent." msgstr "" -#: gnu/home/services.scm:472 +#: gnu/home/services.scm:473 #, scheme-format msgid "" "Comparing ~a and\n" "~10t~a..." msgstr "" -#: gnu/home/services.scm:474 +#: gnu/home/services.scm:475 #, scheme-format msgid " done (~a)\n" msgstr "" #. TRANSLATORS: 'on-change' is the name of a service type, it #. probably shouldn't be translated. -#: gnu/home/services.scm:483 +#: gnu/home/services.scm:484 msgid "" "Evaluating on-change gexps.\n" "\n" msgstr "" -#: gnu/home/services.scm:485 +#: gnu/home/services.scm:486 msgid "" "On-change gexps evaluation finished.\n" "\n" msgstr "" -#: gnu/home/services.scm:499 +#: gnu/home/services.scm:500 msgid "" "G-expressions to run if the specified files have changed since the\n" "last generation. The extension should be a list of lists where the\n" @@ -369,7 +369,7 @@ msgid "" "changed, and the second element is the G-expression to be evaluated." msgstr "" -#: gnu/home/services.scm:519 +#: gnu/home/services.scm:520 msgid "" "Store provenance information about the home environment in the home\n" "environment itself: the channels used when building the home\n" @@ -627,12 +627,12 @@ msgstr "" msgid "Updater for ELPA packages" msgstr "" -#: guix/import/github.scm:170 +#: guix/import/github.scm:175 #, scheme-format msgid "~a is unreachable (~a)~%" msgstr "" -#: guix/import/github.scm:260 +#: guix/import/github.scm:274 msgid "Updater for GitHub packages" msgstr "" @@ -670,12 +670,23 @@ msgstr "~A: nem található csomag ehhez a verzióhoz: ~a~%" msgid "failed to determine latest release of GNU ~a" msgstr "az üres profil összeállítása sikertelen~%" -#: guix/import/go.scm:569 +#: guix/import/go.scm:571 #, scheme-format msgid "unsupported vcs type '~a' for package '~a'" msgstr "" -#: guix/import/go.scm:647 +#: guix/import/go.scm:594 +#, fuzzy, scheme-format +#| msgid "~a: note: using ~a but ~a is available upstream~%" +msgid "version ~a of ~a is not available~%" +msgstr "~a: megjegyzés: ~a használata, de ~a elérhető a tárolóban~%" + +#: guix/import/go.scm:597 +#, scheme-format +msgid "Pick one of the following available versions:~{ ~a~}." +msgstr "" + +#: guix/import/go.scm:671 #, scheme-format msgid "" "Failed to import package ~s.\n" @@ -683,13 +694,6 @@ msgid "" "This package and its dependencies won't be imported.~%" msgstr "" -#: guix/import/go.scm:656 -#, fuzzy, scheme-format -msgid "" -"Failed to import package ~s.\n" -"reason: ~s.~%" -msgstr "a(z) „~a” regisztrálása sikertelen ez alá: „~a”~%" - #: guix/import/minetest.scm:178 #, scheme-format msgid "In ~a: author names must consist of at least a single character.~%" @@ -783,77 +787,99 @@ msgstr "a(z) „~a” csomag hiányolja a kimenetet: „~a”~%" msgid "Updater for OPAM packages" msgstr "" -#: guix/import/pypi.scm:230 +#: guix/import/pypi.scm:233 msgid "Could not extract requirement name in spec:" msgstr "" -#: guix/import/pypi.scm:290 +#: guix/import/pypi.scm:293 #, scheme-format msgid "parse-requires.txt reached an unexpected condition on line ~a~%" msgstr "" -#: guix/import/pypi.scm:356 +#: guix/import/pypi.scm:359 #, fuzzy, scheme-format msgid "Failed to extract file: ~a from wheel.~%" msgstr "a(z) „~a” regisztrálása sikertelen ez alá: „~a”~%" -#: guix/import/pypi.scm:385 +#: guix/import/pypi.scm:388 #, scheme-format msgid "Cannot guess requirements from source archive: no requires.txt file found.~%" msgstr "" -#: guix/import/pypi.scm:390 +#: guix/import/pypi.scm:393 #, scheme-format msgid "Unsupported archive format; cannot determine package dependencies from source archive: ~a~%" msgstr "" -#: guix/import/pypi.scm:489 +#: guix/import/pypi.scm:434 +#, scheme-format +msgid "project name ~a does not appear verbatim in the PyPI URI~%" +msgstr "" + +#: guix/import/pypi.scm:437 +#, scheme-format +msgid "" +"The PyPI URI is: @url{~a}. You should review the\n" +"pypi-uri declaration in the generated package. You may need to replace ~s with\n" +"a substring of the PyPI URI that identifies the package." +msgstr "" + +#: guix/import/pypi.scm:505 #, scheme-format msgid "no source release for pypi package ~a ~a~%" msgstr "" -#: guix/import/pypi.scm:554 +#: guix/import/pypi.scm:509 +#, scheme-format +msgid "" +"This indicates that the\n" +"package is available on PyPI, but only as a \"wheel\" containing binaries, not\n" +"source. To build it from source, refer to the upstream repository at\n" +"@uref{~a}." +msgstr "" + +#: guix/import/pypi.scm:579 msgid "Updater for PyPI packages" msgstr "" -#: gnu/installer.scm:214 +#: gnu/installer.scm:217 msgid "Locale" msgstr "Honosítás" -#: gnu/installer.scm:230 gnu/installer/newt/timezone.scm:58 +#: gnu/installer.scm:233 gnu/installer/newt/timezone.scm:58 msgid "Timezone" msgstr "" -#: gnu/installer.scm:247 +#: gnu/installer.scm:250 msgid "Keyboard mapping selection" msgstr "" -#: gnu/installer.scm:256 gnu/installer/newt/hostname.scm:26 +#: gnu/installer.scm:259 gnu/installer/newt/hostname.scm:26 msgid "Hostname" msgstr "Gépnév" -#: gnu/installer.scm:265 +#: gnu/installer.scm:268 msgid "Network selection" msgstr "Hálózat választása" -#: gnu/installer.scm:272 +#: gnu/installer.scm:275 msgid "Substitute server discovery" msgstr "" -#: gnu/installer.scm:279 gnu/installer/newt/user.scm:68 -#: gnu/installer/newt/user.scm:205 +#: gnu/installer.scm:282 gnu/installer/newt/user.scm:67 +#: gnu/installer/newt/user.scm:204 msgid "User creation" msgstr "Felhasználó létrehozása" -#: gnu/installer.scm:287 +#: gnu/installer.scm:290 msgid "Services" msgstr "Szolgáltatások" -#: gnu/installer.scm:298 +#: gnu/installer.scm:301 msgid "Partitioning" msgstr "Particionálás" -#: gnu/installer.scm:305 gnu/installer/newt/final.scm:53 +#: gnu/installer.scm:308 gnu/installer/newt/final.scm:53 msgid "Configuration file" msgstr "Konfigurációs fájl" @@ -865,19 +891,78 @@ msgstr "" msgid "Unable to find expected regexp." msgstr "" -#: gnu/installer/newt.scm:52 +#: gnu/installer/newt.scm:58 msgid "Press for installation parameters." msgstr "" -#: gnu/installer/newt.scm:65 -#, scheme-format -msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +#: gnu/installer/newt.scm:68 +msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. You may choose to exit or create a dump archive." msgstr "" -#: gnu/installer/newt.scm:68 +#: gnu/installer/newt.scm:71 msgid "Unexpected problem" msgstr "" +#: gnu/installer/newt.scm:75 +msgid "Dump" +msgstr "" + +#: gnu/installer/newt.scm:76 gnu/installer/newt/ethernet.scm:79 +#: gnu/installer/newt/keymap.scm:56 gnu/installer/newt/locale.scm:43 +#: gnu/installer/newt/network.scm:65 gnu/installer/newt/network.scm:82 +#: gnu/installer/newt/page.scm:315 gnu/installer/newt/page.scm:679 +#: gnu/installer/newt/page.scm:763 gnu/installer/newt/page.scm:828 +#: gnu/installer/newt/partition.scm:54 gnu/installer/newt/partition.scm:90 +#: gnu/installer/newt/partition.scm:125 gnu/installer/newt/partition.scm:140 +#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 +#: gnu/installer/newt/partition.scm:706 gnu/installer/newt/partition.scm:764 +#: gnu/installer/newt/partition.scm:775 gnu/installer/newt/services.scm:124 +#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/wifi.scm:206 +msgid "Exit" +msgstr "Kilépés" + +#: gnu/installer/newt.scm:82 +#, scheme-format +msgid "The dump archive was created as ~a. Would you like to send this archive to the Guix servers?" +msgstr "" + +#: gnu/installer/newt.scm:84 +msgid "Dump archive created" +msgstr "" + +#: gnu/installer/newt.scm:88 +#, scheme-format +msgid "The dump was uploaded as ~a. Please report it by email to ~a." +msgstr "" + +#: gnu/installer/newt.scm:90 +msgid "The dump could not be uploaded." +msgstr "" + +#: gnu/installer/newt.scm:93 +msgid "Dump upload result" +msgstr "" + +#: gnu/installer/newt.scm:132 +#, scheme-format +msgid "External command ~s exited with code ~a" +msgstr "" + +#: gnu/installer/newt.scm:135 +#, scheme-format +msgid "External command ~s terminated by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:138 +#, scheme-format +msgid "External command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:140 +msgid "External command error" +msgstr "" + #: gnu/installer/newt/ethernet.scm:66 msgid "No ethernet service available, please try again." msgstr "" @@ -886,59 +971,45 @@ msgstr "" msgid "No service" msgstr "" -#: gnu/installer/newt/ethernet.scm:76 +#: gnu/installer/newt/ethernet.scm:74 msgid "Please select an ethernet network." msgstr "" -#: gnu/installer/newt/ethernet.scm:77 +#: gnu/installer/newt/ethernet.scm:75 msgid "Ethernet connection" msgstr "" -#: gnu/installer/newt/ethernet.scm:81 gnu/installer/newt/keymap.scm:56 -#: gnu/installer/newt/locale.scm:43 gnu/installer/newt/network.scm:63 -#: gnu/installer/newt/network.scm:84 gnu/installer/newt/page.scm:309 -#: gnu/installer/newt/page.scm:673 gnu/installer/newt/page.scm:758 -#: gnu/installer/newt/partition.scm:56 gnu/installer/newt/partition.scm:91 -#: gnu/installer/newt/partition.scm:126 gnu/installer/newt/partition.scm:141 -#: gnu/installer/newt/partition.scm:638 gnu/installer/newt/partition.scm:661 -#: gnu/installer/newt/partition.scm:707 gnu/installer/newt/partition.scm:765 -#: gnu/installer/newt/partition.scm:776 gnu/installer/newt/services.scm:130 -#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:204 -#: gnu/installer/newt/wifi.scm:206 -msgid "Exit" -msgstr "Kilépés" - #: gnu/installer/newt/final.scm:46 #, scheme-format msgid "We're now ready to proceed with the installation! A system configuration file has been generated, it is displayed below. This file will be available as '~a' on the installed system. The new system will be created from this file once you've pressed OK. This will take a few minutes." msgstr "" -#: gnu/installer/newt/final.scm:70 +#: gnu/installer/newt/final.scm:68 msgid "Installation complete" msgstr "Telepítés kész" -#: gnu/installer/newt/final.scm:71 gnu/installer/newt/parameters.scm:45 +#: gnu/installer/newt/final.scm:69 gnu/installer/newt/parameters.scm:45 #: gnu/installer/newt/welcome.scm:145 msgid "Reboot" msgstr "Újraindítás" -#: gnu/installer/newt/final.scm:72 +#: gnu/installer/newt/final.scm:70 msgid "Congratulations! Installation is now complete. You may remove the device containing the installation image and press the button to reboot." msgstr "" -#: gnu/installer/newt/final.scm:86 +#: gnu/installer/newt/final.scm:84 msgid "Installation failed" msgstr "" -#: gnu/installer/newt/final.scm:87 +#: gnu/installer/newt/final.scm:85 msgid "Resume" msgstr "Folytatás" -#: gnu/installer/newt/final.scm:88 +#: gnu/installer/newt/final.scm:86 msgid "Restart the installer" msgstr "" -#: gnu/installer/newt/final.scm:89 +#: gnu/installer/newt/final.scm:87 msgid "The final system installation step failed. You can resume from a specific step, or restart the installer." msgstr "" @@ -966,9 +1037,9 @@ msgstr "" msgid "Installation parameters" msgstr "" -#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:74 -#: gnu/installer/newt/locale.scm:63 gnu/installer/newt/locale.scm:78 -#: gnu/installer/newt/locale.scm:94 gnu/installer/newt/partition.scm:595 +#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:72 +#: gnu/installer/newt/locale.scm:61 gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:88 gnu/installer/newt/partition.scm:594 #: gnu/installer/newt/timezone.scm:64 msgid "Back" msgstr "Vissza" @@ -989,16 +1060,16 @@ msgstr "" msgid "Please choose your keyboard layout. It will be used during the install process, and for the installed system. Non-Latin layouts can be toggled with Alt+Shift. You can switch to a different layout at any time from the parameters menu." msgstr "" -#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:62 -#: gnu/installer/newt/page.scm:308 +#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/page.scm:314 msgid "Continue" msgstr "Folytatás" -#: gnu/installer/newt/keymap.scm:67 +#: gnu/installer/newt/keymap.scm:65 msgid "Variant" msgstr "" -#: gnu/installer/newt/keymap.scm:70 +#: gnu/installer/newt/keymap.scm:68 msgid "Please choose a variant for your keyboard layout." msgstr "" @@ -1010,37 +1081,37 @@ msgstr "" msgid "Choose the language to use for the installation process and for the installed system." msgstr "" -#: gnu/installer/newt/locale.scm:57 +#: gnu/installer/newt/locale.scm:55 #, fuzzy msgid "Locale location" msgstr "" -#: gnu/installer/newt/locale.scm:60 +#: gnu/installer/newt/locale.scm:58 msgid "Choose a territory for this language." msgstr "" -#: gnu/installer/newt/locale.scm:71 +#: gnu/installer/newt/locale.scm:67 msgid "Locale codeset" msgstr "" -#: gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:70 msgid "Choose the locale encoding." msgstr "" -#: gnu/installer/newt/locale.scm:86 +#: gnu/installer/newt/locale.scm:80 msgid "Locale modifier" msgstr "" -#: gnu/installer/newt/locale.scm:89 +#: gnu/installer/newt/locale.scm:83 msgid "Choose your locale's modifier. The most frequent modifier is euro. It indicates that you want to use Euro as the currency symbol." msgstr "" -#: gnu/installer/newt/locale.scm:190 +#: gnu/installer/newt/locale.scm:181 #, fuzzy msgid "No location" msgstr "" -#: gnu/installer/newt/locale.scm:217 +#: gnu/installer/newt/locale.scm:208 msgid "No modifier" msgstr "" @@ -1056,330 +1127,334 @@ msgstr "" msgid "Abort" msgstr "" -#: gnu/installer/newt/network.scm:61 gnu/installer/newt/network.scm:80 +#: gnu/installer/newt/network.scm:63 gnu/installer/newt/network.scm:78 msgid "Internet access" msgstr "" -#: gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/network.scm:66 msgid "The install process requires Internet access but no network devices were found. Do you want to continue anyway?" msgstr "" -#: gnu/installer/newt/network.scm:78 +#: gnu/installer/newt/network.scm:76 msgid "The install process requires Internet access. Please select a network device." msgstr "" -#: gnu/installer/newt/network.scm:103 +#: gnu/installer/newt/network.scm:99 msgid "Powering technology" msgstr "" -#: gnu/installer/newt/network.scm:104 +#: gnu/installer/newt/network.scm:100 #, scheme-format msgid "Waiting for technology ~a to be powered." msgstr "" -#: gnu/installer/newt/network.scm:128 +#: gnu/installer/newt/network.scm:139 msgid "Checking connectivity" msgstr "" -#: gnu/installer/newt/network.scm:129 +#: gnu/installer/newt/network.scm:140 msgid "Waiting for Internet access establishment..." msgstr "" -#: gnu/installer/newt/network.scm:139 -msgid "The selected network does not provide access to the Internet, please try again." +#: gnu/installer/newt/network.scm:150 +msgid "The selected network does not provide access to the Internet and the Guix substitute server, please try again." msgstr "" -#: gnu/installer/newt/network.scm:141 gnu/installer/newt/wifi.scm:108 +#: gnu/installer/newt/network.scm:152 gnu/installer/newt/wifi.scm:108 msgid "Connection error" msgstr "" -#: gnu/installer/newt/page.scm:198 +#: gnu/installer/newt/page.scm:204 #, fuzzy, scheme-format msgid "Connecting to ~a, please wait." msgstr "Letöltés, kérem várjon…~%" -#: gnu/installer/newt/page.scm:199 +#: gnu/installer/newt/page.scm:205 msgid "Connection in progress" msgstr "" -#: gnu/installer/newt/page.scm:218 gnu/installer/newt/user.scm:60 +#: gnu/installer/newt/page.scm:224 gnu/installer/newt/user.scm:59 msgid "Show" msgstr "Megjelenítés" -#: gnu/installer/newt/page.scm:225 gnu/installer/newt/page.scm:672 -#: gnu/installer/newt/page.scm:757 gnu/installer/newt/partition.scm:458 -#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 -#: gnu/installer/newt/partition.scm:699 gnu/installer/newt/user.scm:66 -#: gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/page.scm:231 gnu/installer/newt/page.scm:678 +#: gnu/installer/newt/page.scm:762 gnu/installer/newt/partition.scm:457 +#: gnu/installer/newt/partition.scm:636 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:698 gnu/installer/newt/user.scm:65 +#: gnu/installer/newt/user.scm:202 msgid "OK" msgstr "OK" -#: gnu/installer/newt/page.scm:251 +#: gnu/installer/newt/page.scm:257 msgid "Please enter a non empty input." msgstr "" -#: gnu/installer/newt/page.scm:252 gnu/installer/newt/user.scm:123 +#: gnu/installer/newt/page.scm:258 gnu/installer/newt/user.scm:122 msgid "Empty input" msgstr "" -#: gnu/installer/newt/page.scm:760 +#: gnu/installer/newt/page.scm:765 msgid "Edit" msgstr "Szerkesztés" -#: gnu/installer/newt/partition.scm:47 +#: gnu/installer/newt/page.scm:825 +msgid "Ok" +msgstr "" + +#: gnu/installer/newt/partition.scm:45 msgid "Everything is one partition" msgstr "" -#: gnu/installer/newt/partition.scm:48 +#: gnu/installer/newt/partition.scm:46 msgid "Separate /home partition" msgstr "" -#: gnu/installer/newt/partition.scm:50 +#: gnu/installer/newt/partition.scm:48 msgid "Please select a partitioning scheme." msgstr "" -#: gnu/installer/newt/partition.scm:51 +#: gnu/installer/newt/partition.scm:49 msgid "Partition scheme" msgstr "" #. TRANSLATORS: The ~{ and ~} format specifiers are used to iterate the list #. of device names of the user partitions that will be formatted. -#: gnu/installer/newt/partition.scm:65 +#: gnu/installer/newt/partition.scm:63 #, scheme-format msgid "We are about to write the configured partition table to the disk and format the partitions listed below. Their data will be lost. Do you wish to continue?~%~%~{ - ~a~%~}" msgstr "" -#: gnu/installer/newt/partition.scm:71 +#: gnu/installer/newt/partition.scm:69 msgid "Format disk?" msgstr "" -#: gnu/installer/newt/partition.scm:74 +#: gnu/installer/newt/partition.scm:72 msgid "Partition formatting is in progress, please wait." msgstr "" -#: gnu/installer/newt/partition.scm:75 +#: gnu/installer/newt/partition.scm:73 msgid "Preparing partitions" msgstr "" -#: gnu/installer/newt/partition.scm:86 -msgid "Please select a disk." -msgstr "Válasszon egy lemezt." +#: gnu/installer/newt/partition.scm:84 +msgid "Please select a disk. The installation device as well as the small devices are filtered." +msgstr "" -#: gnu/installer/newt/partition.scm:87 +#: gnu/installer/newt/partition.scm:86 msgid "Disk" msgstr "Lemez" -#: gnu/installer/newt/partition.scm:102 +#: gnu/installer/newt/partition.scm:101 msgid "Select a new partition table type. Be careful, all data on the disk will be lost." msgstr "" -#: gnu/installer/newt/partition.scm:104 +#: gnu/installer/newt/partition.scm:103 msgid "Partition table" msgstr "Partíciós tábla" -#: gnu/installer/newt/partition.scm:121 +#: gnu/installer/newt/partition.scm:120 msgid "Please select a partition type." msgstr "" -#: gnu/installer/newt/partition.scm:122 +#: gnu/installer/newt/partition.scm:121 msgid "Partition type" msgstr "Partíció típus:" -#: gnu/installer/newt/partition.scm:132 +#: gnu/installer/newt/partition.scm:131 msgid "Please select the file-system type for this partition." msgstr "" -#: gnu/installer/newt/partition.scm:133 +#: gnu/installer/newt/partition.scm:132 msgid "File-system type" msgstr "" -#: gnu/installer/newt/partition.scm:150 +#: gnu/installer/newt/partition.scm:149 msgid "Primary partitions count exceeded." msgstr "" -#: gnu/installer/newt/partition.scm:151 gnu/installer/newt/partition.scm:156 -#: gnu/installer/newt/partition.scm:161 +#: gnu/installer/newt/partition.scm:150 gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:160 msgid "Creation error" msgstr "" -#: gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:154 msgid "Extended partition creation error." msgstr "" -#: gnu/installer/newt/partition.scm:160 +#: gnu/installer/newt/partition.scm:159 msgid "Logical partition creation error." msgstr "" -#: gnu/installer/newt/partition.scm:174 +#: gnu/installer/newt/partition.scm:173 #, scheme-format msgid "Please enter the password for the encryption of partition ~a (label: ~a)." msgstr "" -#: gnu/installer/newt/partition.scm:176 gnu/installer/newt/wifi.scm:92 +#: gnu/installer/newt/partition.scm:175 gnu/installer/newt/wifi.scm:92 msgid "Password required" msgstr "" -#: gnu/installer/newt/partition.scm:181 +#: gnu/installer/newt/partition.scm:180 #, scheme-format msgid "Please confirm the password for the encryption of partition ~a (label: ~a)." msgstr "" -#: gnu/installer/newt/partition.scm:183 gnu/installer/newt/user.scm:160 +#: gnu/installer/newt/partition.scm:182 gnu/installer/newt/user.scm:159 msgid "Password confirmation required" msgstr "" -#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 +#: gnu/installer/newt/partition.scm:194 gnu/installer/newt/user.scm:167 msgid "Password mismatch, please try again." msgstr "" -#: gnu/installer/newt/partition.scm:196 gnu/installer/newt/user.scm:169 +#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 msgid "Password error" msgstr "" -#: gnu/installer/newt/partition.scm:282 +#: gnu/installer/newt/partition.scm:281 msgid "Please enter the partition gpt name." msgstr "" -#: gnu/installer/newt/partition.scm:283 +#: gnu/installer/newt/partition.scm:282 msgid "Partition name" msgstr "" -#: gnu/installer/newt/partition.scm:313 +#: gnu/installer/newt/partition.scm:312 msgid "Please enter the encrypted label" msgstr "" -#: gnu/installer/newt/partition.scm:314 +#: gnu/installer/newt/partition.scm:313 msgid "Encryption label" msgstr "" -#: gnu/installer/newt/partition.scm:331 +#: gnu/installer/newt/partition.scm:330 #, scheme-format msgid "Please enter the size of the partition. The maximum size is ~a." msgstr "" -#: gnu/installer/newt/partition.scm:333 +#: gnu/installer/newt/partition.scm:332 msgid "Partition size" msgstr "" -#: gnu/installer/newt/partition.scm:351 +#: gnu/installer/newt/partition.scm:350 msgid "The percentage can not be superior to 100." msgstr "" -#: gnu/installer/newt/partition.scm:352 gnu/installer/newt/partition.scm:357 -#: gnu/installer/newt/partition.scm:362 +#: gnu/installer/newt/partition.scm:351 gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:361 msgid "Size error" msgstr "" -#: gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:355 msgid "The requested size is incorrectly formatted, or too large." msgstr "" -#: gnu/installer/newt/partition.scm:361 +#: gnu/installer/newt/partition.scm:360 msgid "The request size is superior to the maximum size." msgstr "" -#: gnu/installer/newt/partition.scm:381 +#: gnu/installer/newt/partition.scm:380 msgid "Please enter the desired mounting point for this partition. Leave this field empty if you don't want to set a mounting point." msgstr "" -#: gnu/installer/newt/partition.scm:383 +#: gnu/installer/newt/partition.scm:382 msgid "Mounting point" msgstr "" -#: gnu/installer/newt/partition.scm:447 +#: gnu/installer/newt/partition.scm:446 #, scheme-format msgid "Creating ~a partition starting at ~a of ~a." msgstr "" -#: gnu/installer/newt/partition.scm:449 +#: gnu/installer/newt/partition.scm:448 #, scheme-format msgid "You are currently editing partition ~a." msgstr "" -#: gnu/installer/newt/partition.scm:452 +#: gnu/installer/newt/partition.scm:451 msgid "Partition creation" msgstr "" -#: gnu/installer/newt/partition.scm:453 +#: gnu/installer/newt/partition.scm:452 msgid "Partition edit" msgstr "" -#: gnu/installer/newt/partition.scm:634 +#: gnu/installer/newt/partition.scm:633 #, scheme-format msgid "Are you sure you want to delete everything on disk ~a?" msgstr "" -#: gnu/installer/newt/partition.scm:636 +#: gnu/installer/newt/partition.scm:635 msgid "Delete disk" msgstr "" -#: gnu/installer/newt/partition.scm:651 +#: gnu/installer/newt/partition.scm:650 msgid "You cannot delete a free space area." msgstr "" -#: gnu/installer/newt/partition.scm:652 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:651 gnu/installer/newt/partition.scm:658 msgid "Delete partition" msgstr "" -#: gnu/installer/newt/partition.scm:657 +#: gnu/installer/newt/partition.scm:656 #, scheme-format msgid "Are you sure you want to delete partition ~a?" msgstr "" -#: gnu/installer/newt/partition.scm:674 +#: gnu/installer/newt/partition.scm:673 msgid "" "You can change a disk's partition table by selecting it and pressing ENTER. You can also edit a partition by selecting it and pressing ENTER, or remove it by pressing DELETE. To create a new partition, select a free space area and press ENTER.\n" "\n" "At least one partition must have its mounting point set to '/'." msgstr "" -#: gnu/installer/newt/partition.scm:680 +#: gnu/installer/newt/partition.scm:679 #, scheme-format msgid "This is the proposed partitioning. It is still possible to edit it or to go back to install menu by pressing the Exit button.~%~%" msgstr "" -#: gnu/installer/newt/partition.scm:690 +#: gnu/installer/newt/partition.scm:689 msgid "Guided partitioning" msgstr "" -#: gnu/installer/newt/partition.scm:691 +#: gnu/installer/newt/partition.scm:690 msgid "Manual partitioning" msgstr "" -#: gnu/installer/newt/partition.scm:716 +#: gnu/installer/newt/partition.scm:715 msgid "No root mount point found." msgstr "" -#: gnu/installer/newt/partition.scm:717 +#: gnu/installer/newt/partition.scm:716 msgid "Missing mount point" msgstr "" -#: gnu/installer/newt/partition.scm:721 +#: gnu/installer/newt/partition.scm:720 #, scheme-format msgid "Cannot read the ~a partition UUID. You may need to format it." msgstr "" -#: gnu/installer/newt/partition.scm:724 +#: gnu/installer/newt/partition.scm:723 msgid "Wrong partition format" msgstr "" -#: gnu/installer/newt/partition.scm:755 +#: gnu/installer/newt/partition.scm:754 msgid "Guided - using the entire disk" msgstr "" -#: gnu/installer/newt/partition.scm:756 +#: gnu/installer/newt/partition.scm:755 msgid "Guided - using the entire disk with encryption" msgstr "" -#: gnu/installer/newt/partition.scm:757 +#: gnu/installer/newt/partition.scm:756 msgid "Manual" msgstr "" -#: gnu/installer/newt/partition.scm:759 +#: gnu/installer/newt/partition.scm:758 msgid "Please select a partitioning method." msgstr "" -#: gnu/installer/newt/partition.scm:760 +#: gnu/installer/newt/partition.scm:759 msgid "Partitioning method" msgstr "" @@ -1391,37 +1466,37 @@ msgstr "" msgid "Desktop environment" msgstr "Asztali környezetek" -#: gnu/installer/newt/services.scm:59 +#: gnu/installer/newt/services.scm:57 msgid "You can now select networking services to run on your system." msgstr "" -#: gnu/installer/newt/services.scm:61 +#: gnu/installer/newt/services.scm:59 msgid "Network service" msgstr "" -#: gnu/installer/newt/services.scm:79 +#: gnu/installer/newt/services.scm:75 msgid "You can now select the CUPS printing service to run on your system." msgstr "" -#: gnu/installer/newt/services.scm:81 +#: gnu/installer/newt/services.scm:77 msgid "Printing and document services" msgstr "" -#: gnu/installer/newt/services.scm:100 +#: gnu/installer/newt/services.scm:94 #, fuzzy #| msgid "Services" msgid "Console services" msgstr "Szolgáltatások" -#: gnu/installer/newt/services.scm:101 +#: gnu/installer/newt/services.scm:95 msgid "Select miscellaneous services to run on your non-graphical system." msgstr "" -#: gnu/installer/newt/services.scm:115 +#: gnu/installer/newt/services.scm:109 msgid "Network management" msgstr "" -#: gnu/installer/newt/services.scm:118 +#: gnu/installer/newt/services.scm:112 msgid "" "Choose the method to manage network connections.\n" "\n" @@ -1451,57 +1526,57 @@ msgstr "" msgid "Please select a timezone." msgstr "" -#: gnu/installer/newt/user.scm:45 +#: gnu/installer/newt/user.scm:44 msgid "Name" msgstr "Név" -#: gnu/installer/newt/user.scm:47 +#: gnu/installer/newt/user.scm:46 msgid "Real name" msgstr "" -#: gnu/installer/newt/user.scm:49 +#: gnu/installer/newt/user.scm:48 msgid "Home directory" msgstr "Saját könyvtár" -#: gnu/installer/newt/user.scm:51 +#: gnu/installer/newt/user.scm:50 msgid "Password" msgstr "Jelszó" -#: gnu/installer/newt/user.scm:122 +#: gnu/installer/newt/user.scm:121 msgid "Empty inputs are not allowed." msgstr "" -#: gnu/installer/newt/user.scm:159 +#: gnu/installer/newt/user.scm:158 msgid "Please confirm the password." msgstr "" #. TRANSLATORS: Leave "root" untranslated: it refers to the name of the #. system administrator account. -#: gnu/installer/newt/user.scm:176 +#: gnu/installer/newt/user.scm:175 msgid "Please choose a password for the system administrator (\"root\")." msgstr "" -#: gnu/installer/newt/user.scm:178 +#: gnu/installer/newt/user.scm:177 msgid "System administrator password" msgstr "" -#: gnu/installer/newt/user.scm:191 +#: gnu/installer/newt/user.scm:190 msgid "Please add at least one user to system using the 'Add' button." msgstr "" -#: gnu/installer/newt/user.scm:194 +#: gnu/installer/newt/user.scm:193 msgid "Add" msgstr "Hozzáadás" -#: gnu/installer/newt/user.scm:195 +#: gnu/installer/newt/user.scm:194 msgid "Delete" msgstr "Törlés" -#: gnu/installer/newt/user.scm:255 +#: gnu/installer/newt/user.scm:254 msgid "Please create at least one user." msgstr "" -#: gnu/installer/newt/user.scm:256 +#: gnu/installer/newt/user.scm:255 msgid "No user" msgstr "" @@ -1572,60 +1647,60 @@ msgstr "" msgid "Wifi" msgstr "" -#: gnu/installer/parted.scm:433 gnu/installer/parted.scm:470 +#: gnu/installer/parted.scm:455 gnu/installer/parted.scm:492 msgid "Free space" msgstr "Szabad hely" -#: gnu/installer/parted.scm:559 +#: gnu/installer/parted.scm:581 #, fuzzy, scheme-format msgid "Name: ~a" msgstr "~a: ~a~%" -#: gnu/installer/parted.scm:560 gnu/installer/parted.scm:606 +#: gnu/installer/parted.scm:582 gnu/installer/parted.scm:628 msgid "None" msgstr "Nincs" -#: gnu/installer/parted.scm:565 +#: gnu/installer/parted.scm:587 #, scheme-format msgid "Type: ~a" msgstr "" -#: gnu/installer/parted.scm:569 +#: gnu/installer/parted.scm:591 #, scheme-format msgid "File system type: ~a" msgstr "" -#: gnu/installer/parted.scm:575 +#: gnu/installer/parted.scm:597 #, scheme-format msgid "Bootable flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:579 +#: gnu/installer/parted.scm:601 #, scheme-format msgid "ESP flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:585 +#: gnu/installer/parted.scm:607 #, scheme-format msgid "Size: ~a" msgstr "" -#: gnu/installer/parted.scm:591 +#: gnu/installer/parted.scm:613 #, scheme-format msgid "Encryption: ~:[No~a~;Yes (label '~a')~]" msgstr "" -#: gnu/installer/parted.scm:597 +#: gnu/installer/parted.scm:619 #, scheme-format msgid "Format the partition? ~:[No~;Yes~]" msgstr "" -#: gnu/installer/parted.scm:603 +#: gnu/installer/parted.scm:625 #, scheme-format msgid "Mount point: ~a" msgstr "" -#: gnu/installer/parted.scm:1466 +#: gnu/installer/parted.scm:1477 #, scheme-format msgid "Device ~a is still in use." msgstr "" @@ -1669,7 +1744,7 @@ msgstr "" #. TRANSLATORS: This is a comment within a Scheme file. Each line must #. start with ";; " (two semicolons and a space). Please keep line #. length below 60 characters. -#: gnu/installer/steps.scm:252 +#: gnu/installer/steps.scm:242 msgid "" ";; This is an operating system configuration generated\n" ";; by the graphical installer.\n" @@ -1680,98 +1755,117 @@ msgstr "" msgid "Unable to locate path: ~a." msgstr "" -#: gnu/installer/utils.scm:83 +#: gnu/installer/utils.scm:131 #, scheme-format msgid "Press Enter to continue.~%" msgstr "" -#: gnu/installer/utils.scm:108 +#: gnu/installer/utils.scm:150 +#, scheme-format +msgid "Command ~s exited with value ~a" +msgstr "" + +#: gnu/installer/utils.scm:156 +#, scheme-format +msgid "Command ~s killed by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:162 #, scheme-format -msgid "Command failed with exit code ~a.~%" +msgid "Command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:167 +#, scheme-format +msgid "Command ~s succeeded" +msgstr "" + +#: gnu/installer/utils.scm:179 +msgid "run-command-in-installer not set" msgstr "" -#: gnu/machine/ssh.scm:117 +#: gnu/machine/ssh.scm:120 #, scheme-format msgid " without a 'host-key' is deprecated~%" msgstr "" -#: gnu/machine/ssh.scm:192 +#: gnu/machine/ssh.scm:208 #, scheme-format msgid "device '~a' not found: ~a" msgstr "" -#: gnu/machine/ssh.scm:207 +#: gnu/machine/ssh.scm:223 #, scheme-format msgid "no file system with label '~a'" msgstr "" -#: gnu/machine/ssh.scm:226 +#: gnu/machine/ssh.scm:242 #, scheme-format msgid "no file system with UUID '~a'" msgstr "" -#: gnu/machine/ssh.scm:276 +#: gnu/machine/ssh.scm:295 #, scheme-format msgid "missing modules for ~a:~{ ~a~}~%" msgstr "" -#: gnu/machine/ssh.scm:311 +#: gnu/machine/ssh.scm:333 #, scheme-format msgid "incorrect target system ('~a' was given, while the system reports that it is '~a')~%" msgstr "" -#: gnu/machine/ssh.scm:437 +#: gnu/machine/ssh.scm:459 #, scheme-format msgid "no signing key '~a'. have you run 'guix archive --generate-key?'" msgstr "" -#: gnu/machine/ssh.scm:469 +#: gnu/machine/ssh.scm:491 #, scheme-format msgid "failed to switch systems while deploying '~a':~%~{~s ~}" msgstr "" -#: gnu/machine/ssh.scm:477 +#: gnu/machine/ssh.scm:499 #, scheme-format msgid "an error occurred while upgrading services on '~a':~%~{~s ~}~%" msgstr "" -#: gnu/machine/ssh.scm:485 +#: gnu/machine/ssh.scm:507 #, fuzzy, scheme-format msgid "failed to install bootloader on '~a':~%~{~s ~}~%" msgstr "sikertelen csatlakozás ehhez: „~a”: ~a~%" -#: gnu/machine/ssh.scm:518 +#: gnu/machine/ssh.scm:540 msgid "could not roll-back machine" msgstr "" -#: gnu/machine/ssh.scm:559 +#: gnu/machine/ssh.scm:581 msgid "" "Provisioning for machines that are accessible over SSH\n" "and have a known host-name. This entails little more than maintaining an SSH\n" "connection to the host." msgstr "" -#: gnu/machine/ssh.scm:569 +#: gnu/machine/ssh.scm:591 #, scheme-format msgid "" "unsupported machine configuration '~a'\n" "for environment of type '~a'" msgstr "" -#: gnu/packages/bootstrap.scm:178 +#: gnu/packages/bootstrap.scm:188 #, scheme-format msgid "could not find bootstrap binary '~a' for system '~a'" msgstr "" -#: gnu/packages/bootstrap.scm:492 +#: gnu/packages/bootstrap.scm:578 msgid "Raw build system with direct store access" msgstr "" -#: gnu/packages/bootstrap.scm:500 +#: gnu/packages/bootstrap.scm:586 msgid "Pre-built Guile for bootstrapping purposes." msgstr "" -#: guix/build/utils.scm:822 +#: guix/build/utils.scm:823 #, scheme-format msgid "'~a~{ ~a~}' exited with status ~a; output follows:~%~%~{ ~a~%~}" msgstr "" @@ -1811,7 +1905,7 @@ msgid "~A: unrecognized option~%" msgstr "~A: ismeretlen kapcsoló~%" #: guix/scripts.scm:169 guix/scripts/import.scm:140 -#: guix/scripts/system.scm:1370 +#: guix/scripts/system.scm:1379 #, scheme-format msgid "Did you mean @code{~a}?~%" msgstr "" @@ -1858,7 +1952,7 @@ msgstr "nem sikerült a GC gyökér létrehozása: „~a”: ~a~%" #: guix/scripts/build.scm:154 guix/scripts/search.scm:42 #: guix/scripts/show.scm:41 guix/scripts/lint.scm:112 guix/scripts/edit.scm:48 #: guix/scripts/size.scm:246 guix/scripts/graph.scm:553 -#: guix/scripts/repl.scm:80 guix/scripts/style.scm:500 +#: guix/scripts/repl.scm:80 guix/scripts/style.scm:795 msgid "" "\n" " -L, --load-path=DIR prepend DIR to the package module search path" @@ -2061,7 +2155,7 @@ msgstr "" " -s, --system=RENDSZER kísérlet a RENDSZERRE történő összeállításra,\n" " például „i686-linux”" -#: guix/scripts/build.scm:357 guix/scripts/system.scm:1023 +#: guix/scripts/build.scm:357 guix/scripts/system.scm:1026 #: guix/scripts/pack.scm:1329 guix/scripts/archive.scm:97 msgid "" "\n" @@ -2102,13 +2196,13 @@ msgstr "" " -r, --root=FÁJL a FÁJL az eredmény egy szimbolikus linkje legyen,\n" " és regisztrálja gyökér szemétgyűjtőként" -#: guix/scripts/build.scm:368 guix/scripts/package.scm:486 +#: guix/scripts/build.scm:368 guix/scripts/package.scm:488 #: guix/scripts/install.scm:37 guix/scripts/remove.scm:36 #: guix/scripts/upgrade.scm:39 guix/scripts/pull.scm:117 -#: guix/scripts/system.scm:1025 guix/scripts/copy.scm:122 -#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:60 +#: guix/scripts/system.scm:1028 guix/scripts/copy.scm:122 +#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:66 #: guix/scripts/archive.scm:99 guix/scripts/environment.scm:123 -#: guix/scripts/home.scm:94 +#: guix/scripts/home.scm:98 #, fuzzy msgid "" "\n" @@ -2135,30 +2229,30 @@ msgstr "" " --log-file a megadott származékok naplófájl-neveinek visszaadása" #: guix/scripts/build.scm:379 guix/scripts/download.scm:104 -#: guix/scripts/package.scm:504 guix/scripts/install.scm:44 +#: guix/scripts/package.scm:506 guix/scripts/install.scm:44 #: guix/scripts/remove.scm:41 guix/scripts/upgrade.scm:48 #: guix/scripts/search.scm:37 guix/scripts/show.scm:36 guix/scripts/gc.scm:88 #: guix/scripts/git.scm:34 guix/scripts/git/authenticate.scm:110 #: guix/scripts/hash.scm:98 guix/scripts/import.scm:98 #: guix/scripts/import/minetest.scm:46 guix/scripts/import/cran.scm:49 #: guix/scripts/pull.scm:125 guix/scripts/substitute.scm:250 -#: guix/scripts/system.scm:1032 guix/scripts/lint.scm:115 +#: guix/scripts/system.scm:1035 guix/scripts/lint.scm:115 #: guix/scripts/publish.scm:119 guix/scripts/edit.scm:51 #: guix/scripts/size.scm:249 guix/scripts/graph.scm:558 #: guix/scripts/challenge.scm:430 guix/scripts/copy.scm:127 #: guix/scripts/pack.scm:1357 guix/scripts/weather.scm:336 #: guix/scripts/describe.scm:96 guix/scripts/processes.scm:301 -#: guix/scripts/deploy.scm:55 guix/scripts/container.scm:35 +#: guix/scripts/deploy.scm:58 guix/scripts/container.scm:35 #: guix/scripts/container/exec.scm:43 guix/scripts/archive.scm:106 -#: guix/scripts/environment.scm:149 guix/scripts/home.scm:97 +#: guix/scripts/environment.scm:149 guix/scripts/home.scm:101 #: guix/scripts/time-machine.scm:67 guix/scripts/import/cpan.scm:44 #: guix/scripts/import/crate.scm:50 guix/scripts/import/egg.scm:45 #: guix/scripts/import/gem.scm:46 guix/scripts/import/gnu.scm:50 #: guix/scripts/import/go.scm:50 guix/scripts/import/json.scm:52 #: guix/scripts/import/opam.scm:45 guix/scripts/import/pypi.scm:46 #: guix/scripts/import/texlive.scm:45 guix/scripts/refresh.scm:187 -#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:67 -#: guix/scripts/style.scm:509 +#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:69 +#: guix/scripts/style.scm:804 msgid "" "\n" " -h, --help display this help and exit" @@ -2167,29 +2261,29 @@ msgstr "" " -h, --help ezen súgó megjelenítése és kilépés" #: guix/scripts/build.scm:381 guix/scripts/download.scm:106 -#: guix/scripts/package.scm:506 guix/scripts/install.scm:46 +#: guix/scripts/package.scm:508 guix/scripts/install.scm:46 #: guix/scripts/remove.scm:43 guix/scripts/upgrade.scm:50 #: guix/scripts/search.scm:39 guix/scripts/show.scm:38 guix/scripts/gc.scm:90 #: guix/scripts/git.scm:36 guix/scripts/git/authenticate.scm:112 #: guix/scripts/hash.scm:100 guix/scripts/import.scm:100 #: guix/scripts/import/minetest.scm:50 guix/scripts/import/cran.scm:55 #: guix/scripts/pull.scm:127 guix/scripts/substitute.scm:252 -#: guix/scripts/system.scm:1034 guix/scripts/lint.scm:119 +#: guix/scripts/system.scm:1037 guix/scripts/lint.scm:119 #: guix/scripts/publish.scm:121 guix/scripts/edit.scm:53 #: guix/scripts/size.scm:251 guix/scripts/graph.scm:560 #: guix/scripts/challenge.scm:432 guix/scripts/copy.scm:129 #: guix/scripts/pack.scm:1359 guix/scripts/weather.scm:338 #: guix/scripts/describe.scm:98 guix/scripts/processes.scm:303 -#: guix/scripts/deploy.scm:57 guix/scripts/container.scm:37 +#: guix/scripts/deploy.scm:60 guix/scripts/container.scm:37 #: guix/scripts/container/exec.scm:45 guix/scripts/archive.scm:108 -#: guix/scripts/environment.scm:151 guix/scripts/home.scm:99 +#: guix/scripts/environment.scm:151 guix/scripts/home.scm:103 #: guix/scripts/time-machine.scm:69 guix/scripts/import/cpan.scm:46 #: guix/scripts/import/crate.scm:52 guix/scripts/import/egg.scm:49 #: guix/scripts/import/gem.scm:48 guix/scripts/import/gnu.scm:52 #: guix/scripts/import/json.scm:54 guix/scripts/import/opam.scm:52 #: guix/scripts/import/pypi.scm:50 guix/scripts/import/texlive.scm:47 #: guix/scripts/refresh.scm:189 guix/scripts/repl.scm:85 -#: guix/scripts/shell.scm:69 guix/scripts/style.scm:511 +#: guix/scripts/shell.scm:71 guix/scripts/style.scm:806 msgid "" "\n" " -V, --version display version information and exit" @@ -2430,167 +2524,167 @@ msgstr "a(z) „~a” profil nem létezik~%" msgid "\"bash-minimal\" should be in 'inputs' when '~a' is used" msgstr "" -#: guix/lint.scm:616 +#: guix/lint.scm:614 msgid "no period allowed at the end of the synopsis" msgstr "" -#: guix/lint.scm:630 +#: guix/lint.scm:628 msgid "no article allowed at the beginning of the synopsis" msgstr "" -#: guix/lint.scm:639 +#: guix/lint.scm:637 msgid "synopsis should be less than 80 characters long" msgstr "" -#: guix/lint.scm:648 +#: guix/lint.scm:646 msgid "synopsis should start with an upper-case letter or digit" msgstr "" -#: guix/lint.scm:656 +#: guix/lint.scm:654 msgid "synopsis should not start with the package name" msgstr "" -#: guix/lint.scm:670 +#: guix/lint.scm:668 msgid "Texinfo markup in synopsis is invalid" msgstr "" -#: guix/lint.scm:678 +#: guix/lint.scm:676 msgid "synopsis contains trailing whitespace" msgstr "" -#: guix/lint.scm:695 +#: guix/lint.scm:693 msgid "synopsis should not be empty" msgstr "" -#: guix/lint.scm:705 +#: guix/lint.scm:703 #, fuzzy, scheme-format msgid "invalid synopsis: ~s" msgstr "érvénytelen szintaxis: ~a~%" -#: guix/lint.scm:805 +#: guix/lint.scm:803 #, scheme-format msgid "~a: HTTP GET error for ~a: ~a (~s)~%" msgstr "" -#: guix/lint.scm:815 +#: guix/lint.scm:813 #, fuzzy, scheme-format msgid "~a: host lookup failure: ~a~%" msgstr "gépnév keresési hiba: ~a~%" -#: guix/lint.scm:820 +#: guix/lint.scm:818 #, scheme-format msgid "~a: TLS certificate error: ~a" msgstr "" -#: guix/lint.scm:825 +#: guix/lint.scm:823 #, fuzzy, scheme-format msgid "~a: TLS error in '~a': ~a~%" msgstr "hiba: a(z) „~a” könyvtár létrehozása közben: ~a~%" -#: guix/lint.scm:836 guix/ui.scm:820 guix/scripts/offload.scm:194 +#: guix/lint.scm:834 guix/ui.scm:820 guix/scripts/offload.scm:194 #, scheme-format msgid "~a: ~a~%" msgstr "~a: ~a~%" -#: guix/lint.scm:868 +#: guix/lint.scm:866 #, scheme-format msgid "URI ~a returned suspiciously small file (~a bytes)" msgstr "" -#: guix/lint.scm:877 +#: guix/lint.scm:875 #, scheme-format msgid "permanent redirect from ~a to ~a" msgstr "" -#: guix/lint.scm:883 +#: guix/lint.scm:881 #, scheme-format msgid "invalid permanent redirect from ~a" msgstr "" -#: guix/lint.scm:889 guix/lint.scm:899 +#: guix/lint.scm:887 guix/lint.scm:897 #, scheme-format msgid "URI ~a not reachable: ~a (~s)" msgstr "" -#: guix/lint.scm:905 +#: guix/lint.scm:903 #, fuzzy, scheme-format msgid "URI ~a domain not found: ~a" msgstr "guix: ~a: a parancs nem található~%" -#: guix/lint.scm:911 +#: guix/lint.scm:909 #, scheme-format msgid "URI ~a unreachable: ~a" msgstr "" -#: guix/lint.scm:919 +#: guix/lint.scm:917 #, scheme-format msgid "TLS certificate error: ~a" msgstr "" -#: guix/lint.scm:946 +#: guix/lint.scm:944 #, fuzzy msgid "invalid value for home page" msgstr "A MŰVELET érvényes értékei a következők:\n" -#: guix/lint.scm:951 +#: guix/lint.scm:949 #, fuzzy, scheme-format msgid "invalid home page URL: ~s" msgstr "" "\n" "~a honlap: <~a>" -#: guix/lint.scm:988 +#: guix/lint.scm:986 msgid "file names of patches should start with the package name" msgstr "" -#: guix/lint.scm:1008 +#: guix/lint.scm:1006 #, scheme-format msgid "~a: file name is too long, which may break 'make dist'" msgstr "" -#: guix/lint.scm:1029 +#: guix/lint.scm:1027 #, scheme-format msgid "~a: empty patch" msgstr "" -#: guix/lint.scm:1038 +#: guix/lint.scm:1036 #, scheme-format msgid "~a: patch lacks comment and upstream status" msgstr "" -#: guix/lint.scm:1099 +#: guix/lint.scm:1097 #, scheme-format msgid "proposed synopsis: ~s~%" msgstr "" -#: guix/lint.scm:1113 +#: guix/lint.scm:1111 #, scheme-format msgid "proposed description:~% \"~a\"~%" msgstr "" -#: guix/lint.scm:1164 +#: guix/lint.scm:1162 msgid "all the source URIs are unreachable:" msgstr "" -#: guix/lint.scm:1193 +#: guix/lint.scm:1191 msgid "the source file name should contain the package name" msgstr "" -#: guix/lint.scm:1205 +#: guix/lint.scm:1203 msgid "the source URI should not be an autogenerated tarball" msgstr "" -#: guix/lint.scm:1229 +#: guix/lint.scm:1227 #, scheme-format msgid "URL should be 'mirror://~a/~a'" msgstr "" -#: guix/lint.scm:1269 +#: guix/lint.scm:1267 #, fuzzy, scheme-format msgid "while accessing '~a'" msgstr "sikertelen csatlakozás ehhez: „~a”: ~a~%" -#: guix/lint.scm:1276 +#: guix/lint.scm:1274 #, scheme-format msgid "URL should be '~a'" msgstr "" @@ -2598,69 +2692,69 @@ msgstr "" #. TRANSLATORS: check and #:tests? are a #. Scheme symbol and keyword respectively #. and should not be translated. -#: guix/lint.scm:1304 +#: guix/lint.scm:1302 msgid "the 'check' phase should respect #:tests?" msgstr "" -#: guix/lint.scm:1322 guix/lint.scm:1333 guix/lint.scm:1341 +#: guix/lint.scm:1320 guix/lint.scm:1331 guix/lint.scm:1339 #, fuzzy, scheme-format msgid "failed to create ~a derivation: ~a" msgstr "nem sikerült a GC gyökér létrehozása: „~a”: ~a~%" -#: guix/lint.scm:1327 +#: guix/lint.scm:1325 #, fuzzy, scheme-format msgid "failed to create ~a derivation: ~s" msgstr "a(z) ~s kifejezés olvasása sikertelen: ~s~%" -#: guix/lint.scm:1379 +#: guix/lint.scm:1377 #, scheme-format msgid "propagated inputs ~a and ~a collide" msgstr "" -#: guix/lint.scm:1403 +#: guix/lint.scm:1401 #, fuzzy msgid "invalid license field" msgstr "érvénytelen szimbolikus link jelsorok" -#: guix/lint.scm:1410 +#: guix/lint.scm:1408 msgid "while retrieving CVE vulnerabilities" msgstr "" -#: guix/lint.scm:1453 +#: guix/lint.scm:1451 #, scheme-format msgid "probably vulnerable to ~a" msgstr "" -#: guix/lint.scm:1461 +#: guix/lint.scm:1459 #, fuzzy, scheme-format msgid "no updater for ~a" msgstr "nincs összeállítási napló ehhez: „~a”~%" -#: guix/lint.scm:1466 guix/lint.scm:1641 +#: guix/lint.scm:1464 guix/lint.scm:1639 #, scheme-format msgid "while retrieving upstream info for '~a'" msgstr "" -#: guix/lint.scm:1475 +#: guix/lint.scm:1473 #, scheme-format msgid "can be upgraded to ~a" msgstr "" -#: guix/lint.scm:1481 +#: guix/lint.scm:1479 #, scheme-format msgid "updater '~a' failed to find upstream releases" msgstr "" -#: guix/lint.scm:1508 +#: guix/lint.scm:1506 #, fuzzy, scheme-format msgid "failed to access Disarchive database at ~a" msgstr "sikertelen csatlakozás ehhez: „~a”: ~a~%" -#: guix/lint.scm:1535 +#: guix/lint.scm:1533 msgid "Software Heritage rate limit reached; try again later" msgstr "" -#: guix/lint.scm:1539 +#: guix/lint.scm:1537 #, scheme-format msgid "'~a' returned ~a" msgstr "" @@ -2668,171 +2762,171 @@ msgstr "" #. TRANSLATORS: "Software Heritage" is a proper noun #. that must remain untranslated. See #. . -#: guix/lint.scm:1578 +#: guix/lint.scm:1576 msgid "scheduled Software Heritage archival" msgstr "" -#: guix/lint.scm:1584 +#: guix/lint.scm:1582 msgid "archival rate limit exceeded; try again later" msgstr "" -#: guix/lint.scm:1605 +#: guix/lint.scm:1603 msgid "source not archived on Software Heritage and missing from the Disarchive database" msgstr "" -#: guix/lint.scm:1615 +#: guix/lint.scm:1613 #, scheme-format msgid "Disarchive entry refers to non-existent SWH directory '~a'" msgstr "" -#: guix/lint.scm:1624 +#: guix/lint.scm:1622 #, fuzzy msgid "unsupported source type" msgstr "nem támogatott nar bejegyzéstípus" -#: guix/lint.scm:1633 +#: guix/lint.scm:1631 msgid "while connecting to Software Heritage" msgstr "" -#: guix/lint.scm:1650 +#: guix/lint.scm:1648 #, scheme-format msgid "ahead of Stackage LTS version ~a" msgstr "" -#: guix/lint.scm:1667 +#: guix/lint.scm:1665 #, scheme-format msgid "tabulation on line ~a, column ~a" msgstr "" -#: guix/lint.scm:1679 +#: guix/lint.scm:1677 #, scheme-format msgid "trailing white space on line ~a" msgstr "" -#: guix/lint.scm:1693 +#: guix/lint.scm:1691 #, scheme-format msgid "line ~a is way too long (~a characters)" msgstr "" -#: guix/lint.scm:1707 +#: guix/lint.scm:1705 msgid "parentheses feel lonely, move to the previous or next line" msgstr "" -#: guix/lint.scm:1784 +#: guix/lint.scm:1782 msgid "source file not found" msgstr "" -#: guix/lint.scm:1796 +#: guix/lint.scm:1794 #, fuzzy msgid "Validate package names" msgstr "Csomagáttekintés ellenőrzése" -#: guix/lint.scm:1800 +#: guix/lint.scm:1798 msgid "Check if tests are explicitly enabled" msgstr "" -#: guix/lint.scm:1804 +#: guix/lint.scm:1802 msgid "Validate package descriptions" msgstr "Csomagleírások ellenőrzése" -#: guix/lint.scm:1808 +#: guix/lint.scm:1806 msgid "Identify inputs that should be native inputs" msgstr "Bemenetek azonosítása, amelyek natív bemenetek lehetnek" -#: guix/lint.scm:1812 +#: guix/lint.scm:1810 #, fuzzy msgid "Identify inputs that shouldn't be inputs at all" msgstr "Bemenetek azonosítása, amelyek natív bemenetek lehetnek" -#: guix/lint.scm:1816 +#: guix/lint.scm:1814 #, fuzzy #| msgid "Identify inputs that should be native inputs" msgid "Identify input labels that do not match package names" msgstr "Bemenetek azonosítása, amelyek natív bemenetek lehetnek" -#: guix/lint.scm:1820 +#: guix/lint.scm:1818 msgid "Make sure 'wrap-program' can finds its interpreter." msgstr "" #. TRANSLATORS: is the name of a data type and must not be #. translated. -#: guix/lint.scm:1826 +#: guix/lint.scm:1824 msgid "Make sure the 'license' field is a or a list thereof" msgstr "" -#: guix/lint.scm:1831 +#: guix/lint.scm:1829 msgid "Make sure tests are only run when requested" msgstr "" -#: guix/lint.scm:1835 +#: guix/lint.scm:1833 msgid "Suggest 'mirror://' URLs" msgstr "" -#: guix/lint.scm:1839 +#: guix/lint.scm:1837 msgid "Validate file names of sources" msgstr "Források fájlneveinek ellenőrzése" -#: guix/lint.scm:1843 +#: guix/lint.scm:1841 msgid "Check for autogenerated tarballs" msgstr "" -#: guix/lint.scm:1847 +#: guix/lint.scm:1845 msgid "Report failure to compile a package to a derivation" msgstr "" -#: guix/lint.scm:1852 +#: guix/lint.scm:1850 msgid "Report collisions that would occur due to propagated inputs" msgstr "" -#: guix/lint.scm:1857 +#: guix/lint.scm:1855 #, fuzzy msgid "Validate file names and availability of patches" msgstr "Javítócsomagok fájlneveinek ellenőrzése" -#: guix/lint.scm:1861 +#: guix/lint.scm:1859 #, fuzzy msgid "Validate patch headers" msgstr "Csomagleírások ellenőrzése" -#: guix/lint.scm:1865 +#: guix/lint.scm:1863 msgid "Look for formatting issues in the source" msgstr "" -#: guix/lint.scm:1872 +#: guix/lint.scm:1870 msgid "Validate package synopses" msgstr "Csomagáttekintés ellenőrzése" -#: guix/lint.scm:1876 +#: guix/lint.scm:1874 #, fuzzy msgid "Validate synopsis & description of GNU packages" msgstr "Csomagleírások ellenőrzése" -#: guix/lint.scm:1880 +#: guix/lint.scm:1878 #, fuzzy msgid "Validate home-page URLs" msgstr "Csomagáttekintés ellenőrzése" -#: guix/lint.scm:1884 +#: guix/lint.scm:1882 msgid "Validate source URLs" msgstr "" -#: guix/lint.scm:1888 +#: guix/lint.scm:1886 msgid "Suggest GitHub URLs" msgstr "" -#: guix/lint.scm:1892 +#: guix/lint.scm:1890 msgid "Check the Common Vulnerabilities and Exposures (CVE) database" msgstr "" -#: guix/lint.scm:1897 +#: guix/lint.scm:1895 msgid "Check the package for new upstream releases" msgstr "" -#: guix/lint.scm:1901 +#: guix/lint.scm:1899 msgid "Ensure source code archival on Software Heritage" msgstr "" -#: guix/lint.scm:1905 +#: guix/lint.scm:1903 msgid "Ensure Haskell packages use Stackage LTS versions" msgstr "" @@ -2892,7 +2986,7 @@ msgstr "nem támogatott hash-formátum: ~a~%" msgid "~a: unknown hash algorithm~%" msgstr "~a: ismeretlen művelet~%" -#: guix/scripts/download.scm:171 guix/scripts/package.scm:1087 +#: guix/scripts/download.scm:171 guix/scripts/package.scm:1090 #: guix/scripts/pull.scm:758 guix/scripts/publish.scm:1260 #: guix/scripts/discover.scm:136 guix/scripts/time-machine.scm:123 #, scheme-format @@ -2924,17 +3018,17 @@ msgstr "" msgid "no matching generation~%" msgstr "nem sikerült átváltani erre a generációra: „~a”~%" -#: guix/scripts/package.scm:159 +#: guix/scripts/package.scm:161 #, scheme-format msgid "nothing to be done~%" msgstr "nincs mit tenni~%" -#: guix/scripts/package.scm:260 +#: guix/scripts/package.scm:262 #, fuzzy, scheme-format msgid "package '~a' no longer exists~%" msgstr "a(z) „~a” profil nem létezik~%" -#: guix/scripts/package.scm:315 +#: guix/scripts/package.scm:317 #, scheme-format msgid "" "Consider setting the necessary environment\n" @@ -2948,7 +3042,7 @@ msgid "" "Alternately, see @command{guix package --search-paths -p ~s}." msgstr "" -#: guix/scripts/package.scm:361 +#: guix/scripts/package.scm:363 msgid "" ";; This \"manifest\" file can be passed to 'guix package -m' to reproduce\n" ";; the content of your profile. This is \"symbolic\": it only specifies\n" @@ -2957,24 +3051,24 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/package.scm:393 +#: guix/scripts/package.scm:395 #, scheme-format msgid "no provenance information for this profile~%" msgstr "" -#: guix/scripts/package.scm:395 +#: guix/scripts/package.scm:397 msgid "" ";; This channel file can be passed to 'guix pull -C' or to\n" ";; 'guix time-machine -C' to obtain the Guix revision that was\n" ";; used to populate this profile.\n" msgstr "" -#: guix/scripts/package.scm:407 +#: guix/scripts/package.scm:409 #, scheme-format msgid ";; Note: these other commits were also used to install some of the packages in this profile:~%" msgstr "" -#: guix/scripts/package.scm:437 +#: guix/scripts/package.scm:439 msgid "" "Usage: guix package [OPTION]...\n" "Install, remove, or upgrade packages in a single transaction.\n" @@ -2982,7 +3076,7 @@ msgstr "" "Használat: guix package [KAPCSOLÓ]…\n" "Csomagok telepítése, eltávolítása vagy frissítése egyetlen tranzakcióban.\n" -#: guix/scripts/package.scm:439 +#: guix/scripts/package.scm:441 #, fuzzy msgid "" "\n" @@ -2992,7 +3086,7 @@ msgstr "" "\n" " -i, --install=CSOMAG CSOMAG telepítése" -#: guix/scripts/package.scm:442 +#: guix/scripts/package.scm:444 msgid "" "\n" " -e, --install-from-expression=EXP\n" @@ -3002,7 +3096,7 @@ msgstr "" " -e, --install-from-expression=KIF\n" " a kiértékelt KIF csomag telepítése" -#: guix/scripts/package.scm:445 +#: guix/scripts/package.scm:447 #, fuzzy msgid "" "\n" @@ -3014,7 +3108,7 @@ msgstr "" " -e, --install-from-expression=KIF\n" " a kiértékelt KIF csomag telepítése" -#: guix/scripts/package.scm:449 +#: guix/scripts/package.scm:451 #, fuzzy msgid "" "\n" @@ -3024,7 +3118,7 @@ msgstr "" "\n" " -r, --remove=CSOMAG CSOMAG eltávolítása" -#: guix/scripts/package.scm:452 +#: guix/scripts/package.scm:454 msgid "" "\n" " -u, --upgrade[=REGEXP] upgrade all the installed packages matching REGEXP" @@ -3033,14 +3127,14 @@ msgstr "" " -u, --upgrade[=REGKIF] az összes REGKIF-re illeszkedő telepített csomag\n" " frissítése" -#: guix/scripts/package.scm:454 +#: guix/scripts/package.scm:456 msgid "" "\n" " -m, --manifest=FILE create a new profile generation with the manifest\n" " from FILE" msgstr "" -#: guix/scripts/package.scm:457 guix/scripts/upgrade.scm:41 +#: guix/scripts/package.scm:459 guix/scripts/upgrade.scm:41 #, fuzzy msgid "" "\n" @@ -3050,7 +3144,7 @@ msgstr "" " -u, --upgrade[=REGKIF] az összes REGKIF-re illeszkedő telepített csomag\n" " frissítése" -#: guix/scripts/package.scm:459 guix/scripts/pull.scm:107 +#: guix/scripts/package.scm:461 guix/scripts/pull.scm:107 msgid "" "\n" " --roll-back roll back to the previous generation" @@ -3058,7 +3152,7 @@ msgstr "" "\n" " --roll-back visszagörgetés az előző generációra" -#: guix/scripts/package.scm:461 +#: guix/scripts/package.scm:463 #, fuzzy msgid "" "\n" @@ -3069,7 +3163,7 @@ msgstr "" " --search-paths a szükséges környezeti változó meghatározások\n" " megjelenítése" -#: guix/scripts/package.scm:464 guix/scripts/pull.scm:104 +#: guix/scripts/package.scm:466 guix/scripts/pull.scm:104 msgid "" "\n" " -l, --list-generations[=PATTERN]\n" @@ -3079,7 +3173,7 @@ msgstr "" " -l, --list-generations[=MINTA]\n" " a MINTÁRA illeszkedő generációk listázása" -#: guix/scripts/package.scm:467 guix/scripts/pull.scm:109 +#: guix/scripts/package.scm:469 guix/scripts/pull.scm:109 msgid "" "\n" " -d, --delete-generations[=PATTERN]\n" @@ -3089,7 +3183,7 @@ msgstr "" " -d, --delete-generations[=MINTA]\n" " a MINTÁRA illeszkedő generációk törlése" -#: guix/scripts/package.scm:470 guix/scripts/pull.scm:112 +#: guix/scripts/package.scm:472 guix/scripts/pull.scm:112 msgid "" "\n" " -S, --switch-generation=PATTERN\n" @@ -3099,7 +3193,7 @@ msgstr "" " -S, --switch-generation=MINTA\n" " átváltás a MINTÁRA illeszkedő generációra" -#: guix/scripts/package.scm:473 +#: guix/scripts/package.scm:475 #, fuzzy msgid "" "\n" @@ -3108,13 +3202,13 @@ msgstr "" "\n" " --list-live élő útvonalak listázása" -#: guix/scripts/package.scm:475 +#: guix/scripts/package.scm:477 msgid "" "\n" " --export-channels print channels for the chosen profile" msgstr "" -#: guix/scripts/package.scm:477 guix/scripts/install.scm:34 +#: guix/scripts/package.scm:479 guix/scripts/install.scm:34 #: guix/scripts/remove.scm:33 guix/scripts/upgrade.scm:37 msgid "" "\n" @@ -3124,7 +3218,7 @@ msgstr "" " -p, --profile=PROFIL a PROFIL használata a felhasználó alapértelmezett\n" " profilja helyett" -#: guix/scripts/package.scm:479 +#: guix/scripts/package.scm:481 #, fuzzy msgid "" "\n" @@ -3133,13 +3227,13 @@ msgstr "" "\n" " --list-live élő útvonalak listázása" -#: guix/scripts/package.scm:482 +#: guix/scripts/package.scm:484 msgid "" "\n" " --allow-collisions do not treat collisions in the profile as an error" msgstr "" -#: guix/scripts/package.scm:484 +#: guix/scripts/package.scm:486 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" @@ -3148,7 +3242,7 @@ msgstr "" " --bootstrap a Guile rendszertöltő használata a profil\n" " összeállításához" -#: guix/scripts/package.scm:489 +#: guix/scripts/package.scm:491 msgid "" "\n" " -s, --search=REGEXP search in synopsis and description using REGEXP" @@ -3157,7 +3251,7 @@ msgstr "" " -s, --search=REGKIF keresés az összegzésben és a leírásban REGKIF\n" " használatával" -#: guix/scripts/package.scm:491 +#: guix/scripts/package.scm:493 msgid "" "\n" " -I, --list-installed[=REGEXP]\n" @@ -3167,7 +3261,7 @@ msgstr "" " -I, --list-installed[=REGKIF]\n" " a REGKIF-re illeszkedő telepített csomagok listázása" -#: guix/scripts/package.scm:494 +#: guix/scripts/package.scm:496 msgid "" "\n" " -A, --list-available[=REGEXP]\n" @@ -3177,7 +3271,7 @@ msgstr "" " -A, --list-available[=REGKIF]\n" " a REGKIF-re illeszkedő elérhető csomagok listázása" -#: guix/scripts/package.scm:497 +#: guix/scripts/package.scm:499 #, fuzzy msgid "" "\n" @@ -3186,37 +3280,37 @@ msgstr "" "\n" " --show=CSOMAG a CSOMAG részleteinek megjelenítése" -#: guix/scripts/package.scm:552 +#: guix/scripts/package.scm:554 #, scheme-format msgid "upgrade regexp '~a' looks like a command-line option~%" msgstr "" -#: guix/scripts/package.scm:555 +#: guix/scripts/package.scm:557 #, scheme-format msgid "is this intended?~%" msgstr "" -#: guix/scripts/package.scm:605 +#: guix/scripts/package.scm:607 #, scheme-format msgid "~a: unsupported kind of search path~%" msgstr "" -#: guix/scripts/package.scm:739 +#: guix/scripts/package.scm:741 #, scheme-format msgid "cannot install non-package object: ~s~%" msgstr "" -#: guix/scripts/package.scm:918 +#: guix/scripts/package.scm:920 #, fuzzy, scheme-format msgid "~a~@[@~a~]: package not found~%" msgstr "~a: a csomag nem található~%" -#: guix/scripts/package.scm:965 guix/scripts/pull.scm:687 +#: guix/scripts/package.scm:967 guix/scripts/pull.scm:687 #, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "nem sikerült átváltani erre a generációra: „~a”~%" -#: guix/scripts/package.scm:1060 +#: guix/scripts/package.scm:1062 #, fuzzy, scheme-format #| msgid "nothing to be done~%" msgid "nothing to do~%" @@ -3466,8 +3560,8 @@ msgstr "" "Használat: guix PARANCS ARGUMENTUMOK…\n" "A PARANCS futtatása ARGUMENTUMOKKAL.\n" -#: guix/scripts/git.scm:29 guix/scripts/system.scm:945 -#: guix/scripts/container.scm:30 guix/scripts/home.scm:69 +#: guix/scripts/git.scm:29 guix/scripts/system.scm:946 +#: guix/scripts/container.scm:30 guix/scripts/home.scm:70 msgid "The valid values for ACTION are:\n" msgstr "A MŰVELET érvényes értékei a következők:\n" @@ -3566,23 +3660,23 @@ msgstr "" "\n" " -r, --recursive a FILE hash-ének rekurzív számítása" -#: guix/scripts/hash.scm:137 +#: guix/scripts/hash.scm:138 #, scheme-format -msgid "'--recursive' is deprecated, use '--serializer' instead~%" +msgid "'--recursive' is deprecated, use '--serializer=nar' instead~%" msgstr "" -#: guix/scripts/hash.scm:152 +#: guix/scripts/hash.scm:153 #, fuzzy, scheme-format msgid "unsupported serializer type: ~a~%" msgstr "nem támogatott hash-formátum: ~a~%" -#: guix/scripts/hash.scm:201 +#: guix/scripts/hash.scm:202 #, fuzzy, scheme-format #| msgid "~a: ~a~%" msgid "~a ~a~%" msgstr "~a: ~a~%" -#: guix/scripts/hash.scm:210 +#: guix/scripts/hash.scm:211 #, fuzzy, scheme-format msgid "no arguments specified~%" msgstr "nincs beállítófájl megadva~%" @@ -3649,9 +3743,9 @@ msgstr "~a: érvénytelen szám~%" #: guix/scripts/import/minetest.scm:115 guix/scripts/import/cran.scm:120 #: guix/scripts/import/elpa.scm:110 guix/scripts/import/cpan.scm:87 #: guix/scripts/import/crate.scm:103 guix/scripts/import/egg.scm:106 -#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:121 +#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:122 #: guix/scripts/import/hackage.scm:158 guix/scripts/import/json.scm:97 -#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:104 +#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:105 #: guix/scripts/import/stackage.scm:130 guix/scripts/import/texlive.scm:88 #, fuzzy, scheme-format msgid "too few arguments~%" @@ -3660,10 +3754,10 @@ msgstr "nem megfelelő számú argumentum~%" #: guix/scripts/import/minetest.scm:117 guix/scripts/import/cran.scm:122 #: guix/scripts/import/elpa.scm:112 guix/scripts/import/cpan.scm:89 #: guix/scripts/import/crate.scm:105 guix/scripts/import/egg.scm:108 -#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:123 +#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:124 #: guix/scripts/import/hackage.scm:149 guix/scripts/import/hackage.scm:160 #: guix/scripts/import/json.scm:99 guix/scripts/import/opam.scm:113 -#: guix/scripts/import/pypi.scm:106 guix/scripts/import/stackage.scm:132 +#: guix/scripts/import/pypi.scm:107 guix/scripts/import/stackage.scm:132 #: guix/scripts/import/texlive.scm:90 #, fuzzy, scheme-format msgid "too many arguments~%" @@ -3687,7 +3781,7 @@ msgid "" " -s, --style=STYLE choose output style, either specification or variable" msgstr "" -#: guix/scripts/import/cran.scm:116 guix/scripts/import/texlive.scm:84 +#: guix/scripts/import/cran.scm:116 #, fuzzy, scheme-format msgid "failed to download description for package '~a'~%" msgstr "a(z) „~a” operációs rendszer fájl betöltése sikertelen: ~s~%" @@ -4125,27 +4219,27 @@ msgstr "" msgid "the dependency graph of shepherd services" msgstr "" -#: guix/scripts/system.scm:482 guix/scripts/home.scm:453 +#: guix/scripts/system.scm:482 guix/scripts/home.scm:466 #, scheme-format msgid " repository URL: ~a~%" msgstr "" -#: guix/scripts/system.scm:484 guix/scripts/home.scm:455 +#: guix/scripts/system.scm:484 guix/scripts/home.scm:468 #, scheme-format msgid " branch: ~a~%" msgstr "" -#: guix/scripts/system.scm:485 guix/scripts/home.scm:456 +#: guix/scripts/system.scm:485 guix/scripts/home.scm:469 #, scheme-format msgid " commit: ~a~%" msgstr "" -#: guix/scripts/system.scm:505 guix/scripts/home.scm:469 +#: guix/scripts/system.scm:505 guix/scripts/home.scm:482 #, fuzzy, scheme-format msgid " file name: ~a~%" msgstr "érvénytelen szám: ~a~%" -#: guix/scripts/system.scm:506 guix/scripts/home.scm:470 +#: guix/scripts/system.scm:506 guix/scripts/home.scm:483 #, scheme-format msgid " canonical file name: ~a~%" msgstr "" @@ -4186,12 +4280,12 @@ msgstr "" #. TRANSLATORS: Here "channel" is the same terminology as used in #. "guix describe" and "guix pull --channels". -#: guix/scripts/system.scm:536 guix/scripts/home.scm:476 +#: guix/scripts/system.scm:536 guix/scripts/home.scm:489 #, scheme-format msgid " channels:~%" msgstr "" -#: guix/scripts/system.scm:539 guix/scripts/home.scm:479 +#: guix/scripts/system.scm:539 guix/scripts/home.scm:492 #, fuzzy, scheme-format msgid " configuration file: ~a~%" msgstr "nincs beállítófájl megadva~%" @@ -4243,41 +4337,41 @@ msgstr "" msgid "Failing to do that may downgrade your system!~%" msgstr "" -#: guix/scripts/system.scm:754 guix/scripts/system.scm:863 +#: guix/scripts/system.scm:754 guix/scripts/system.scm:864 #, fuzzy, scheme-format msgid "bootloader successfully installed on '~a'~%" msgstr "a(z) ~a frissítése sikeresen telepítve ez alá: „~a”~%" -#: guix/scripts/system.scm:856 +#: guix/scripts/system.scm:857 #, scheme-format msgid "activating system...~%" msgstr "a rendszer aktiválása…~%" -#: guix/scripts/system.scm:867 +#: guix/scripts/system.scm:868 msgid "" "To complete the upgrade, run 'herd restart SERVICE' to stop,\n" "upgrade, and restart each service that was not automatically restarted.\n" msgstr "" -#: guix/scripts/system.scm:870 +#: guix/scripts/system.scm:871 msgid "Run 'herd status' to view the list of services on your system.\n" msgstr "" -#: guix/scripts/system.scm:874 +#: guix/scripts/system.scm:875 #, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "az operációs rendszer előkészítése „~a” alá…~%" -#: guix/scripts/system.scm:894 guix/scripts/graph.scm:437 +#: guix/scripts/system.scm:895 guix/scripts/graph.scm:437 #, fuzzy, scheme-format msgid "~a: unknown backend~%" msgstr "~a: ismeretlen művelet~%" -#: guix/scripts/system.scm:931 +#: guix/scripts/system.scm:932 msgid "The available image types are:\n" msgstr "" -#: guix/scripts/system.scm:941 +#: guix/scripts/system.scm:942 #, fuzzy msgid "" "Usage: guix system [OPTION ...] ACTION [ARG ...] [FILE]\n" @@ -4287,79 +4381,79 @@ msgstr "" "Használat: guix system [KAPCSOLÓ] MŰVELET FÁJL\n" "A FÁJLBAN meghatározott operációs rendszer összeállítása a MŰVELET szerint.\n" -#: guix/scripts/system.scm:947 +#: guix/scripts/system.scm:948 msgid " search search for existing service types\n" msgstr "" -#: guix/scripts/system.scm:949 +#: guix/scripts/system.scm:950 #, fuzzy msgid " reconfigure switch to a new operating system configuration\n" msgstr " - „reconfigure”, átváltás egy új operációs rendszer beállításra\n" -#: guix/scripts/system.scm:951 +#: guix/scripts/system.scm:952 #, fuzzy msgid " roll-back switch to the previous operating system configuration\n" msgstr " - „reconfigure”, átváltás egy új operációs rendszer beállításra\n" -#: guix/scripts/system.scm:953 +#: guix/scripts/system.scm:954 msgid " describe describe the current system\n" msgstr "" -#: guix/scripts/system.scm:955 +#: guix/scripts/system.scm:956 msgid " list-generations list the system generations\n" msgstr "" -#: guix/scripts/system.scm:957 +#: guix/scripts/system.scm:958 #, fuzzy msgid " switch-generation switch to an existing operating system configuration\n" msgstr " - „reconfigure”, átváltás egy új operációs rendszer beállításra\n" -#: guix/scripts/system.scm:959 +#: guix/scripts/system.scm:960 msgid " delete-generations delete old system generations\n" msgstr "" -#: guix/scripts/system.scm:961 +#: guix/scripts/system.scm:962 #, fuzzy msgid " build build the operating system without installing anything\n" msgstr " - „build”, az operációs rendszer összeállítása bármi telepítése nélkül\n" -#: guix/scripts/system.scm:963 +#: guix/scripts/system.scm:964 #, fuzzy msgid " container build a container that shares the host's store\n" msgstr "" " - „vm”, egy virtuális gép lemezkép összeállítása, amely megosztja a gazda\n" " tárolóját\n" -#: guix/scripts/system.scm:965 +#: guix/scripts/system.scm:966 #, fuzzy msgid " vm build a virtual machine image that shares the host's store\n" msgstr "" " - „vm”, egy virtuális gép lemezkép összeállítása, amely megosztja a gazda\n" " tárolóját\n" -#: guix/scripts/system.scm:967 +#: guix/scripts/system.scm:968 #, fuzzy msgid " image build a Guix System image\n" msgstr " - „vm-image”, egy szabadon álló virtuális gép lemezkép összeállítása\n" -#: guix/scripts/system.scm:969 +#: guix/scripts/system.scm:970 msgid " docker-image build a Docker image\n" msgstr "" -#: guix/scripts/system.scm:971 +#: guix/scripts/system.scm:972 #, fuzzy msgid " init initialize a root file system to run GNU\n" msgstr " - „init”, a gyökér fájlrendszer előkészítése a GNU futtatásához.\n" -#: guix/scripts/system.scm:973 +#: guix/scripts/system.scm:974 msgid " extension-graph emit the service extension graph in Dot format\n" msgstr "" -#: guix/scripts/system.scm:975 +#: guix/scripts/system.scm:976 msgid " shepherd-graph emit the graph of shepherd services in Dot format\n" msgstr "" -#: guix/scripts/system.scm:979 +#: guix/scripts/system.scm:980 #, fuzzy msgid "" "\n" @@ -4368,21 +4462,21 @@ msgstr "" "\n" " -d, --derivations a megadott csomagok származék-útvonalának visszaadása" -#: guix/scripts/system.scm:981 +#: guix/scripts/system.scm:982 msgid "" "\n" " -e, --expression=EXPR consider the operating-system EXPR evaluates to\n" " instead of reading FILE, when applicable" msgstr "" -#: guix/scripts/system.scm:984 +#: guix/scripts/system.scm:985 guix/scripts/home.scm:95 msgid "" "\n" " --allow-downgrades for 'reconfigure', allow downgrades to earlier\n" " channel revisions" msgstr "" -#: guix/scripts/system.scm:987 +#: guix/scripts/system.scm:988 msgid "" "\n" " --on-error=STRATEGY\n" @@ -4390,7 +4484,7 @@ msgid "" " or debug) when an error occurs while reading FILE" msgstr "" -#: guix/scripts/system.scm:991 +#: guix/scripts/system.scm:992 #, fuzzy msgid "" "\n" @@ -4399,7 +4493,7 @@ msgstr "" "\n" " --list-live élő útvonalak listázása" -#: guix/scripts/system.scm:993 +#: guix/scripts/system.scm:994 #, fuzzy msgid "" "\n" @@ -4408,7 +4502,7 @@ msgstr "" "\n" " --image-size=MÉRET a „vm-image”-hez, adott MÉRETŰ lemezkép előállítása" -#: guix/scripts/system.scm:995 +#: guix/scripts/system.scm:996 #, fuzzy msgid "" "\n" @@ -4417,7 +4511,7 @@ msgstr "" "\n" " --image-size=MÉRET a „vm-image”-hez, adott MÉRETŰ lemezkép előállítása" -#: guix/scripts/system.scm:997 +#: guix/scripts/system.scm:998 #, fuzzy msgid "" "\n" @@ -4426,7 +4520,7 @@ msgstr "" "\n" " --no-grub az „init”-hez, ne telepítse a GRUB rendszerbetöltőt" -#: guix/scripts/system.scm:999 +#: guix/scripts/system.scm:1000 #, fuzzy msgid "" "\n" @@ -4435,39 +4529,48 @@ msgstr "" "\n" " --full-boot „vm” esetén, teljes indítási sorozat készítése" -#: guix/scripts/system.scm:1001 +#: guix/scripts/system.scm:1002 +#, fuzzy +msgid "" +"\n" +" --persistent for 'vm', make the root file system persistent" +msgstr "" +"\n" +" --full-boot „vm” esetén, teljes indítási sorozat készítése" + +#: guix/scripts/system.scm:1004 msgid "" "\n" " --label=LABEL for 'image', label disk image with LABEL" msgstr "" -#: guix/scripts/system.scm:1003 guix/scripts/pack.scm:1340 +#: guix/scripts/system.scm:1006 guix/scripts/pack.scm:1340 msgid "" "\n" " --save-provenance save provenance information" msgstr "" -#: guix/scripts/system.scm:1005 +#: guix/scripts/system.scm:1008 msgid "" "\n" " --share=SPEC for 'vm' and 'container', share host file system with\n" " read/write access according to SPEC" msgstr "" -#: guix/scripts/system.scm:1008 +#: guix/scripts/system.scm:1011 msgid "" "\n" " --expose=SPEC for 'vm' and 'container', expose host file system\n" " directory as read-only according to SPEC" msgstr "" -#: guix/scripts/system.scm:1011 +#: guix/scripts/system.scm:1014 msgid "" "\n" " -N, --network for 'container', allow containers to access the network" msgstr "" -#: guix/scripts/system.scm:1013 +#: guix/scripts/system.scm:1016 #, fuzzy msgid "" "\n" @@ -4479,7 +4582,7 @@ msgstr "" " -r, --root=FÁJL a FÁJL az eredmény egy szimbolikus linkje legyen,\n" " és regisztrálja gyökér szemétgyűjtőként" -#: guix/scripts/system.scm:1017 +#: guix/scripts/system.scm:1020 msgid "" "\n" " --full-boot for 'vm', make a full boot sequence" @@ -4487,76 +4590,76 @@ msgstr "" "\n" " --full-boot „vm” esetén, teljes indítási sorozat készítése" -#: guix/scripts/system.scm:1019 +#: guix/scripts/system.scm:1022 msgid "" "\n" " --no-graphic for 'vm', use the tty that we are started in for IO" msgstr "" -#: guix/scripts/system.scm:1021 +#: guix/scripts/system.scm:1024 msgid "" "\n" " --skip-checks skip file system and initrd module safety checks" msgstr "" -#: guix/scripts/system.scm:1028 +#: guix/scripts/system.scm:1031 msgid "" "\n" " --graph-backend=BACKEND\n" " use BACKEND for 'extension-graphs' and 'shepherd-graph'" msgstr "" -#: guix/scripts/system.scm:1180 +#: guix/scripts/system.scm:1187 #, fuzzy, scheme-format msgid "'~a' does not return an operating system or an image~%" msgstr "a(z) „~a” profil nem létezik~%" -#: guix/scripts/system.scm:1204 guix/scripts/home.scm:216 +#: guix/scripts/system.scm:1211 guix/scripts/home.scm:230 #, scheme-format msgid "both file and expression cannot be specified~%" msgstr "" -#: guix/scripts/system.scm:1211 guix/scripts/home.scm:223 +#: guix/scripts/system.scm:1218 guix/scripts/home.scm:237 #, fuzzy, scheme-format msgid "no configuration specified~%" msgstr "nincs beállítófájl megadva~%" -#: guix/scripts/system.scm:1319 guix/scripts/system.scm:1335 -#: guix/scripts/system.scm:1342 guix/scripts/system.scm:1348 -#: guix/scripts/home.scm:274 guix/scripts/home.scm:296 -#: guix/scripts/home.scm:301 guix/scripts/home.scm:307 -#: guix/scripts/home.scm:314 guix/scripts/import/gnu.scm:100 +#: guix/scripts/system.scm:1328 guix/scripts/system.scm:1344 +#: guix/scripts/system.scm:1351 guix/scripts/system.scm:1357 +#: guix/scripts/home.scm:287 guix/scripts/home.scm:309 +#: guix/scripts/home.scm:314 guix/scripts/home.scm:320 +#: guix/scripts/home.scm:327 guix/scripts/import/gnu.scm:100 #: guix/scripts/offload.scm:836 guix/scripts/offload.scm:848 #, scheme-format msgid "wrong number of arguments~%" msgstr "nem megfelelő számú argumentum~%" -#: guix/scripts/system.scm:1324 +#: guix/scripts/system.scm:1333 #, scheme-format msgid "no system generation, nothing to describe~%" msgstr "" -#: guix/scripts/system.scm:1367 guix/scripts/home.scm:337 +#: guix/scripts/system.scm:1376 guix/scripts/home.scm:350 #, scheme-format msgid "~a: unknown action~%" msgstr "~a: ismeretlen művelet~%" -#: guix/scripts/system.scm:1387 guix/scripts/home.scm:353 +#: guix/scripts/system.scm:1396 guix/scripts/home.scm:366 #, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "nem megfelelő számú argumentum a(z) „~a” művelethez~%" -#: guix/scripts/system.scm:1392 +#: guix/scripts/system.scm:1401 #, fuzzy, scheme-format msgid "guix system: missing command name~%" msgstr "guix: hiányzó parancsnév~%" -#: guix/scripts/system.scm:1394 +#: guix/scripts/system.scm:1403 #, fuzzy, scheme-format msgid "Try 'guix system --help' for more information.~%" msgstr "További információkért próbálja a „guix --help” parancsot.~%" -#: guix/scripts/system/search.scm:93 guix/ui.scm:1541 guix/ui.scm:1559 +#: guix/scripts/system/search.scm:93 guix/ui.scm:1544 guix/ui.scm:1562 msgid "unknown" msgstr "ismeretlen" @@ -4986,7 +5089,7 @@ msgstr "" " -h, --help ezen súgó megjelenítése és kilépés" #: guix/scripts/graph.scm:548 guix/scripts/pack.scm:1325 -#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:502 +#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:797 #, fuzzy msgid "" "\n" @@ -5641,44 +5744,89 @@ msgstr "" "\n" " -f, --format=FMT a hash kiírása a megadott formátumban" -#: guix/scripts/deploy.scm:51 +#: guix/scripts/deploy.scm:54 msgid "" "Usage: guix deploy [OPTION] FILE...\n" "Perform the deployment specified by FILE.\n" msgstr "" -#: guix/scripts/deploy.scm:108 +#: guix/scripts/deploy.scm:63 +msgid "" +"\n" +" -x, --execute execute the following command on all the machines" +msgstr "" + +#: guix/scripts/deploy.scm:117 #, fuzzy, scheme-format msgid "The following ~d machine will be deployed:~%" msgid_plural "The following ~d machines will be deployed:~%" msgstr[0] "A következő csomag el lesz távolítva:~%~{~a~%~}~%" msgstr[1] "A következő csomagok el lesznek távolítva:~%~{~a~%~}~%" -#: guix/scripts/deploy.scm:122 +#: guix/scripts/deploy.scm:131 #, fuzzy, scheme-format msgid "deploying to ~a...~%" msgstr "~a törlése~%" -#: guix/scripts/deploy.scm:134 guix/scripts/deploy.scm:138 +#: guix/scripts/deploy.scm:143 guix/scripts/deploy.scm:147 #, fuzzy, scheme-format msgid "failed to deploy ~a: ~a~%" msgstr "sikertelen csatlakozás ehhez: „~a”: ~a~%" -#: guix/scripts/deploy.scm:146 +#: guix/scripts/deploy.scm:155 #, fuzzy, scheme-format msgid "rolling back ~a...~%" msgstr "kibontás: „~a”...~%" -#: guix/scripts/deploy.scm:152 +#: guix/scripts/deploy.scm:161 #, fuzzy, scheme-format msgid "successfully deployed ~a~%" msgstr "a(z) ~a frissítése sikeresen telepítve ez alá: „~a”~%" -#: guix/scripts/deploy.scm:167 +#: guix/scripts/deploy.scm:212 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command succeeded~%" +msgstr "guix: ~a: a parancs nem található~%" + +#: guix/scripts/deploy.scm:215 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command exited with code ~a~%" +msgstr "guix: ~a: a parancs nem található~%" + +#: guix/scripts/deploy.scm:218 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command stopped with signal ~a~%" +msgstr "guix: ~a: a parancs nem található~%" + +#: guix/scripts/deploy.scm:221 +#, scheme-format +msgid "~a: command terminated with signal ~a~%" +msgstr "" + +#: guix/scripts/deploy.scm:225 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "command output on ~a:~%" +msgstr "guix: ~a: a parancs nem található~%" + +#: guix/scripts/deploy.scm:246 #, scheme-format msgid "missing deployment file argument~%" msgstr "" +#: guix/scripts/deploy.scm:249 +#, scheme-format +msgid "'--' was used by '-x' was not specified~%" +msgstr "" + +#: guix/scripts/deploy.scm:271 +#, scheme-format +msgid "'-x' specified but no command given~%" +msgstr "" + #: guix/gexp.scm:465 #, scheme-format msgid "resolving '~a' relative to current directory~%" @@ -5773,73 +5921,73 @@ msgstr "" msgid "exec failed with status ~d~%" msgstr "" -#: guix/transformations.scm:185 guix/transformations.scm:253 +#: guix/transformations.scm:186 guix/transformations.scm:254 #, fuzzy, scheme-format msgid "invalid replacement specification: ~s" msgstr "nem egyértelmű csomag specifikáció: „~a”~%" -#: guix/transformations.scm:234 +#: guix/transformations.scm:235 #, scheme-format msgid "the source of ~a is not a Git reference" msgstr "" -#: guix/transformations.scm:337 +#: guix/transformations.scm:338 #, scheme-format msgid "~a: invalid Git URL replacement specification" msgstr "" -#: guix/transformations.scm:415 +#: guix/transformations.scm:416 #, scheme-format msgid "~a: invalid toolchain replacement specification" msgstr "" -#: guix/transformations.scm:517 +#: guix/transformations.scm:518 #, fuzzy msgid "failed to determine which compiler is used" msgstr "az üres profil összeállítása sikertelen~%" -#: guix/transformations.scm:523 +#: guix/transformations.scm:524 #, fuzzy, scheme-format msgid "failed to determine whether ~a supports ~a" msgstr "az üres profil összeállítása sikertelen~%" -#: guix/transformations.scm:529 +#: guix/transformations.scm:530 #, scheme-format msgid "compiler ~a does not support micro-architecture ~a" msgstr "" -#: guix/transformations.scm:581 +#: guix/transformations.scm:582 #, fuzzy, scheme-format #| msgid "~a: ~a~%" msgid "tuning ~a for CPU ~a~%" msgstr "~a: ~a~%" -#: guix/transformations.scm:721 +#: guix/transformations.scm:722 #, fuzzy, scheme-format msgid "~a: invalid package patch specification" msgstr "érvénytelen szimbolikus link jelsorok" -#: guix/transformations.scm:744 +#: guix/transformations.scm:745 #, scheme-format msgid "could not determine latest upstream release of '~a'~%" msgstr "" -#: guix/transformations.scm:752 +#: guix/transformations.scm:753 #, scheme-format msgid "cannot authenticate source of '~a', version ~a~%" msgstr "" -#: guix/transformations.scm:833 +#: guix/transformations.scm:840 #, scheme-format msgid "building for ~a instead of ~a, so tuning cannot be guessed~%" msgstr "" -#: guix/transformations.scm:859 +#: guix/transformations.scm:866 #, fuzzy, scheme-format msgid "Available package transformation options:~%" msgstr "Csomagleírások ellenőrzése" -#: guix/transformations.scm:865 +#: guix/transformations.scm:872 #, fuzzy msgid "" "\n" @@ -5850,35 +5998,35 @@ msgstr "" " --with-source=FORRÁS\n" " FORRÁS használata a megfelelő csomag összeállításakor" -#: guix/transformations.scm:868 +#: guix/transformations.scm:875 msgid "" "\n" " --with-input=PACKAGE=REPLACEMENT\n" " replace dependency PACKAGE by REPLACEMENT" msgstr "" -#: guix/transformations.scm:871 +#: guix/transformations.scm:878 msgid "" "\n" " --with-graft=PACKAGE=REPLACEMENT\n" " graft REPLACEMENT on packages that refer to PACKAGE" msgstr "" -#: guix/transformations.scm:874 +#: guix/transformations.scm:881 msgid "" "\n" " --with-branch=PACKAGE=BRANCH\n" " build PACKAGE from the latest commit of BRANCH" msgstr "" -#: guix/transformations.scm:877 +#: guix/transformations.scm:884 msgid "" "\n" " --with-commit=PACKAGE=COMMIT\n" " build PACKAGE from COMMIT" msgstr "" -#: guix/transformations.scm:880 +#: guix/transformations.scm:887 #, fuzzy msgid "" "\n" @@ -5889,7 +6037,7 @@ msgstr "" " --with-source=FORRÁS\n" " FORRÁS használata a megfelelő csomag összeállításakor" -#: guix/transformations.scm:883 +#: guix/transformations.scm:890 #, fuzzy msgid "" "\n" @@ -5900,7 +6048,7 @@ msgstr "" " --with-source=FORRÁS\n" " FORRÁS használata a megfelelő csomag összeállításakor" -#: guix/transformations.scm:886 +#: guix/transformations.scm:893 #, fuzzy msgid "" "\n" @@ -5911,21 +6059,21 @@ msgstr "" " --with-source=FORRÁS\n" " FORRÁS használata a megfelelő csomag összeállításakor" -#: guix/transformations.scm:889 +#: guix/transformations.scm:896 msgid "" "\n" " --with-c-toolchain=PACKAGE=TOOLCHAIN\n" " build PACKAGE and its dependents with TOOLCHAIN" msgstr "" -#: guix/transformations.scm:892 +#: guix/transformations.scm:899 msgid "" "\n" " --with-debug-info=PACKAGE\n" " build PACKAGE and preserve its debug info" msgstr "" -#: guix/transformations.scm:895 +#: guix/transformations.scm:902 #, fuzzy msgid "" "\n" @@ -5936,13 +6084,13 @@ msgstr "" " --with-source=FORRÁS\n" " FORRÁS használata a megfelelő csomag összeállításakor" -#: guix/transformations.scm:901 +#: guix/transformations.scm:908 msgid "" "\n" " --help-transform list package transformation options not shown here" msgstr "" -#: guix/transformations.scm:950 +#: guix/transformations.scm:957 #, scheme-format msgid "transformation '~a' had no effect on ~a~%" msgstr "" @@ -6441,12 +6589,12 @@ msgstr[1] "A következő csomagok lesznek telepítve:~%~{~a~%~}~%" msgid "~a: invalid Texinfo markup~%" msgstr "~a: érvénytelen szám~%" -#: guix/ui.scm:1873 +#: guix/ui.scm:1876 #, scheme-format msgid "invalid syntax: ~a~%" msgstr "érvénytelen szintaxis: ~a~%" -#: guix/ui.scm:1882 +#: guix/ui.scm:1885 #, scheme-format msgid "Generation ~a\t~a" msgstr "~a generáció\t~a" @@ -6456,7 +6604,7 @@ msgstr "~a generáció\t~a" #. usual way of presenting dates in your locale. #. See https://www.gnu.org/software/guile/manual/html_node/SRFI_002d19-Date-to-string.html #. for details. -#: guix/ui.scm:1892 +#: guix/ui.scm:1895 #, scheme-format msgid "~b ~d ~Y ~T" msgstr "" @@ -6464,37 +6612,37 @@ msgstr "" #. TRANSLATORS: The word "current" here is an adjective for #. "Generation", as in "current generation". Use the appropriate #. gender where applicable. -#: guix/ui.scm:1898 +#: guix/ui.scm:1901 #, scheme-format msgid "~a\t(current)~%" msgstr "~a\t(jelenlegi)~%" -#: guix/ui.scm:1932 +#: guix/ui.scm:1935 #, fuzzy, scheme-format msgid "cannot lock profile ~a: ~a~%" msgstr "nem sikerült elérni: „~a”: ~a~%" -#: guix/ui.scm:1934 +#: guix/ui.scm:1937 #, fuzzy, scheme-format msgid "profile ~a is locked by another process~%" msgstr "a(z) „~a” profil nem létezik~%" -#: guix/ui.scm:1963 +#: guix/ui.scm:1966 #, fuzzy, scheme-format msgid "switched from generation ~a to ~a~%" msgstr "átváltás a(z) ~a generációról erre: ~a~%" -#: guix/ui.scm:1979 +#: guix/ui.scm:1982 #, scheme-format msgid "deleting ~a~%" msgstr "~a törlése~%" -#: guix/ui.scm:2010 +#: guix/ui.scm:2013 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "További információkért próbálja a „guix --help” parancsot.~%" -#: guix/ui.scm:2102 +#: guix/ui.scm:2105 #, fuzzy #| msgid "" #| "Usage: guix COMMAND ARGS...\n" @@ -6506,7 +6654,7 @@ msgstr "" "Használat: guix PARANCS ARGUMENTUMOK…\n" "A PARANCS futtatása ARGUMENTUMOKKAL.\n" -#: guix/ui.scm:2105 +#: guix/ui.scm:2108 #, fuzzy #| msgid "" #| "\n" @@ -6518,7 +6666,7 @@ msgstr "" "\n" " -h, --help ezen súgó megjelenítése és kilépés" -#: guix/ui.scm:2107 +#: guix/ui.scm:2110 #, fuzzy #| msgid "" #| "\n" @@ -6530,26 +6678,26 @@ msgstr "" "\n" " -V, --version verzióinformációk megjelenítése és kilépés" -#: guix/ui.scm:2112 +#: guix/ui.scm:2115 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "A PARANCSNAK a lenti listában lévő alparancsok egyikének kell lennie:\n" -#: guix/ui.scm:2154 +#: guix/ui.scm:2157 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "guix: ~a: a parancs nem található~%" -#: guix/ui.scm:2156 +#: guix/ui.scm:2159 #, scheme-format msgid "Did you mean @code{~a}?" msgstr "" -#: guix/ui.scm:2190 +#: guix/ui.scm:2193 #, scheme-format msgid "guix: missing command name~%" msgstr "guix: hiányzó parancsnév~%" -#: guix/ui.scm:2198 +#: guix/ui.scm:2201 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "guix: ismeretlen kapcsoló: „~a”~%" @@ -6878,22 +7026,22 @@ msgstr "" msgid "unsupported manifest format" msgstr "nem támogatott hash-formátum: ~a~%" -#: guix/profiles.scm:2242 +#: guix/profiles.scm:2247 #, fuzzy, scheme-format msgid "while creating directory `~a': ~a" msgstr "hiba: a(z) „~a” könyvtár létrehozása közben: ~a~%" -#: guix/profiles.scm:2247 +#: guix/profiles.scm:2252 #, fuzzy, scheme-format msgid "Please create the @file{~a} directory, with you as the owner." msgstr "Hozza létre a(z) „~a” könyvtárat az ön nevében, tulajdonosként.~%" -#: guix/profiles.scm:2256 +#: guix/profiles.scm:2261 #, fuzzy, scheme-format msgid "directory `~a' is not owned by you" msgstr "hiba: a(z) „~a” könyvtárnak nem ön a tulajdonosa~%" -#: guix/profiles.scm:2260 +#: guix/profiles.scm:2265 #, fuzzy, scheme-format msgid "Please change the owner of @file{~a} to user ~s." msgstr "Változtassa meg a(z) „~a” tulajdonosát erre a felhasználóra: ~s.~%" @@ -7549,11 +7697,16 @@ msgstr "" msgid "'--profile' cannot be used with package options~%" msgstr "" -#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:275 +#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:261 #, scheme-format msgid "no packages specified; creating an empty environment~%" msgstr "" +#: guix/scripts/environment.scm:979 +#, scheme-format +msgid "'--check' is unnecessary when using '--container'; doing nothing~%" +msgstr "" + #: guix/scripts/home/import.scm:179 msgid "" ";; This \"home-environment\" file can be passed to 'guix home reconfigure'\n" @@ -7563,7 +7716,7 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/home.scm:65 +#: guix/scripts/home.scm:66 #, fuzzy msgid "" "Usage: guix home [OPTION ...] ACTION [ARG ...] [FILE]\n" @@ -7573,7 +7726,7 @@ msgstr "" "Használat: guix system [KAPCSOLÓ] MŰVELET FÁJL\n" "A FÁJLBAN meghatározott operációs rendszer összeállítása a MŰVELET szerint.\n" -#: guix/scripts/home.scm:71 +#: guix/scripts/home.scm:72 #, fuzzy msgid " search search for existing service types\n" msgstr "" @@ -7581,43 +7734,43 @@ msgstr "" " --search-paths a szükséges környezeti változó meghatározások\n" " megjelenítése" -#: guix/scripts/home.scm:73 +#: guix/scripts/home.scm:74 #, fuzzy msgid " reconfigure switch to a new home environment configuration\n" msgstr " - „reconfigure”, átváltás egy új operációs rendszer beállításra\n" -#: guix/scripts/home.scm:75 +#: guix/scripts/home.scm:76 #, fuzzy msgid " roll-back switch to the previous home environment configuration\n" msgstr " - „reconfigure”, átváltás egy új operációs rendszer beállításra\n" -#: guix/scripts/home.scm:77 +#: guix/scripts/home.scm:78 msgid " describe describe the current home environment\n" msgstr "" -#: guix/scripts/home.scm:79 +#: guix/scripts/home.scm:80 msgid " list-generations list the home environment generations\n" msgstr "" -#: guix/scripts/home.scm:81 +#: guix/scripts/home.scm:82 #, fuzzy msgid " switch-generation switch to an existing home environment configuration\n" msgstr " - „reconfigure”, átváltás egy új operációs rendszer beállításra\n" -#: guix/scripts/home.scm:83 +#: guix/scripts/home.scm:84 msgid " delete-generations delete old home environment generations\n" msgstr "" -#: guix/scripts/home.scm:85 +#: guix/scripts/home.scm:86 #, fuzzy msgid " build build the home environment without installing anything\n" msgstr " - „build”, az operációs rendszer összeállítása bármi telepítése nélkül\n" -#: guix/scripts/home.scm:87 +#: guix/scripts/home.scm:88 msgid " import generates a home environment definition from dotfiles\n" msgstr "" -#: guix/scripts/home.scm:91 +#: guix/scripts/home.scm:92 #, fuzzy msgid "" "\n" @@ -7628,41 +7781,41 @@ msgstr "" " -e, --expression=KIF a csomag vagy a kiértékelt származtatott KIF\n" " összeállítása" -#: guix/scripts/home.scm:196 +#: guix/scripts/home.scm:210 #, fuzzy, scheme-format msgid "'~a' does not return a home environment ~%" msgstr "a(z) „~a” profil nem létezik~%" -#: guix/scripts/home.scm:280 +#: guix/scripts/home.scm:293 #, scheme-format msgid "'~a' populated with all the Home configuration files~%" msgstr "" -#: guix/scripts/home.scm:282 +#: guix/scripts/home.scm:295 #, scheme-format msgid "" "Run @command{guix home reconfigure ~a/home-configuration.scm} to effectively\n" "deploy the home environment described by these files.\n" msgstr "" -#: guix/scripts/home.scm:289 +#: guix/scripts/home.scm:302 #, scheme-format msgid "no home environment generation, nothing to describe~%" msgstr "" -#: guix/scripts/home.scm:358 +#: guix/scripts/home.scm:371 #, fuzzy, scheme-format #| msgid "guix: missing command name~%" msgid "guix home: missing command name~%" msgstr "guix: hiányzó parancsnév~%" -#: guix/scripts/home.scm:360 +#: guix/scripts/home.scm:373 #, fuzzy, scheme-format #| msgid "Try `guix --help' for more information.~%" msgid "Try 'guix home --help' for more information.~%" msgstr "További információkért próbálja a „guix --help” parancsot.~%" -#: guix/scripts/home.scm:528 +#: guix/scripts/home.scm:541 #, fuzzy, scheme-format msgid "cannot switch to home environment generation '~a'~%" msgstr "nem sikerült átváltani erre a generációra: „~a”~%" @@ -7702,7 +7855,7 @@ msgstr "" #: guix/scripts/import/cpan.scm:83 guix/scripts/import/crate.scm:97 #: guix/scripts/import/egg.scm:100 guix/scripts/import/gem.scm:98 -#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:100 +#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:101 #, fuzzy, scheme-format msgid "failed to download meta-data for package '~a'~%" msgstr "a legfrissebb forrás letöltése sikertelen, kilépés\n" @@ -7777,7 +7930,7 @@ msgid "" " --pin-versions use the exact versions of a module's dependencies" msgstr "" -#: guix/scripts/import/go.scm:117 +#: guix/scripts/import/go.scm:118 #, fuzzy, scheme-format msgid "failed to download meta-data for module '~a'.~%" msgstr "a legfrissebb forrás letöltése sikertelen, kilépés\n" @@ -7910,6 +8063,11 @@ msgid "" "Import and convert the Texlive package for PACKAGE-NAME.\n" msgstr "" +#: guix/scripts/import/texlive.scm:84 +#, fuzzy, scheme-format +msgid "failed to import package '~a'~%" +msgstr "a területi beállítás telepítése sikertelen: ~a~%" + #: guix/scripts/offload.scm:130 #, scheme-format msgid "The 'system' field is deprecated, please use 'systems' instead.~%" @@ -8358,14 +8516,14 @@ msgstr "" msgid "~a: unknown type of REPL~%" msgstr "~a: ismeretlen művelet~%" -#: guix/scripts/shell.scm:46 +#: guix/scripts/shell.scm:48 msgid "" "Usage: guix shell [OPTION] PACKAGES... [-- COMMAND...]\n" "Build an environment that includes PACKAGES and execute COMMAND or an\n" "interactive shell in that environment.\n" msgstr "" -#: guix/scripts/shell.scm:52 +#: guix/scripts/shell.scm:54 #, fuzzy #| msgid "" #| "\n" @@ -8377,7 +8535,7 @@ msgstr "" "\n" " -d, --derivations a megadott csomagok származék-útvonalának visszaadása" -#: guix/scripts/shell.scm:54 +#: guix/scripts/shell.scm:56 #, fuzzy msgid "" "\n" @@ -8387,35 +8545,35 @@ msgstr "" " -r, --root=FÁJL a FÁJL az eredmény egy szimbolikus linkje legyen,\n" " és regisztrálja gyökér szemétgyűjtőként" -#: guix/scripts/shell.scm:56 +#: guix/scripts/shell.scm:58 msgid "" "\n" " -q inhibit loading of 'guix.scm' and 'manifest.scm'" msgstr "" -#: guix/scripts/shell.scm:58 +#: guix/scripts/shell.scm:60 msgid "" "\n" " --rebuild-cache rebuild cached environment, if any" msgstr "" -#: guix/scripts/shell.scm:199 +#: guix/scripts/shell.scm:201 #, fuzzy, scheme-format msgid "ignoring invalid file name: '~a'~%" msgstr "érvénytelen szám: ~a~%" -#: guix/scripts/shell.scm:280 +#: guix/scripts/shell.scm:266 #, fuzzy, scheme-format #| msgid "following redirection to `~a'...~%" msgid "loading environment from '~a'...~%" msgstr "átirányítás követése ide: „~a”…~%" -#: guix/scripts/shell.scm:286 +#: guix/scripts/shell.scm:272 #, scheme-format msgid "not loading '~a' because not authorized to do so~%" msgstr "" -#: guix/scripts/shell.scm:288 +#: guix/scripts/shell.scm:274 #, scheme-format msgid "" "To allow automatic loading of\n" @@ -8427,48 +8585,59 @@ msgid "" "@end example\n" msgstr "" -#: guix/scripts/shell.scm:386 +#: guix/scripts/shell.scm:431 msgid "" "Consider passing the @option{--check} option once\n" "to make sure your shell does not clobber environment variables." msgstr "" -#: guix/scripts/style.scm:241 +#: guix/scripts/style.scm:499 #, fuzzy, scheme-format msgid "~a: complex expression, bailing out~%" msgstr "az aláírás nem érvényes s-kifejezés: ~s~%" -#: guix/scripts/style.scm:259 +#: guix/scripts/style.scm:517 #, scheme-format msgid "~a: input label '~a' does not match package name, bailing out~%" msgstr "" -#: guix/scripts/style.scm:264 +#: guix/scripts/style.scm:522 #, scheme-format msgid "~a: non-trivial input, bailing out~%" msgstr "" -#: guix/scripts/style.scm:288 +#: guix/scripts/style.scm:546 #, fuzzy, scheme-format msgid "~a: input expression is too short~%" msgstr "az aláírás nem érvényes s-kifejezés: ~s~%" -#: guix/scripts/style.scm:380 +#: guix/scripts/style.scm:638 #, fuzzy, scheme-format msgid "~a: unsupported input style, bailing out~%" msgstr "nem támogatott hash-formátum: ~a~%" -#: guix/scripts/style.scm:392 +#: guix/scripts/style.scm:650 #, scheme-format msgid "would be edited~%" msgstr "" -#: guix/scripts/style.scm:482 +#: guix/scripts/style.scm:721 +#, fuzzy, scheme-format +msgid "no definition location for package ~a~%" +msgstr "a(z) „~a” operációs rendszer fájl betöltése sikertelen: ~s~%" + +#: guix/scripts/style.scm:767 +#, fuzzy, scheme-format +#| msgid "~a: unknown action~%" +msgid "~a: unknown styling~%" +msgstr "~a: ismeretlen művelet~%" + +#: guix/scripts/style.scm:774 #, fuzzy, scheme-format msgid "~a: invalid input simplification policy~%" msgstr "érvénytelen szimbolikus link jelsorok" -#: guix/scripts/style.scm:496 +#: guix/scripts/style.scm:788 #, fuzzy msgid "" "Usage: guix style [OPTION]... [PACKAGE]...\n" @@ -8477,7 +8646,13 @@ msgstr "" "Használat: guix gc [KAPCSOLÓ]… ÚTVONALAK…\n" "A szemétgyűjtő meghívása.\n" -#: guix/scripts/style.scm:498 +#: guix/scripts/style.scm:790 +msgid "" +"\n" +" -S, --styling=RULE apply RULE, a styling rule" +msgstr "" + +#: guix/scripts/style.scm:793 #, fuzzy #| msgid "" #| "\n" @@ -8489,7 +8664,7 @@ msgstr "" "\n" " -n, --dry-run ne állítsa össze a származékokat" -#: guix/scripts/style.scm:504 +#: guix/scripts/style.scm:799 msgid "" "\n" " --input-simplification=POLICY\n" @@ -8648,6 +8823,15 @@ msgstr "" msgid "produce debugging output" msgstr "" +#~ msgid "Please select a disk." +#~ msgstr "Válasszon egy lemezt." + +#, fuzzy +#~ msgid "" +#~ "Failed to import package ~s.\n" +#~ "reason: ~s.~%" +#~ msgstr "a(z) „~a” regisztrálása sikertelen ez alá: „~a”~%" + #, fuzzy #~ msgid "Package not found in opam repository: ~a~%" #~ msgstr "~A: nem található csomag ehhez a verzióhoz: ~a~%" @@ -8665,9 +8849,6 @@ msgstr "" #~ msgid "failed to register '~a' under '~a'~%" #~ msgstr "a(z) „~a” regisztrálása sikertelen ez alá: „~a”~%" -#~ msgid "~a: note: using ~a but ~a is available upstream~%" -#~ msgstr "~a: megjegyzés: ~a használata, de ~a elérhető a tárolóban~%" - #~ msgid "sources do not match any package:~{ ~a~}~%" #~ msgstr "a források nem illeszkednek semmilyen csomagra:~{ ~a~}~%" diff --git a/po/guix/it.po b/po/guix/it.po index cac9fee2ec..419592eb68 100644 --- a/po/guix/it.po +++ b/po/guix/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: GNU guix\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" "PO-Revision-Date: 2021-04-13 11:23+0000\n" "Last-Translator: Nicolo Balzarotti \n" "Language-Team: Italian \n" @@ -54,37 +54,37 @@ msgstr "" msgid "Try adding @code{(use-service-modules ~a)}." msgstr "Prova ad aggiungere @code{(use-service-modules ~a)}." -#: gnu/packages.scm:96 +#: gnu/packages.scm:97 #, scheme-format msgid "~a: patch not found" msgstr "~a: patch non trovata" -#: gnu/packages.scm:480 gnu/packages.scm:521 +#: gnu/packages.scm:481 gnu/packages.scm:522 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "specifica del pacchetto ambigua `~a'~%" -#: gnu/packages.scm:481 gnu/packages.scm:522 +#: gnu/packages.scm:482 gnu/packages.scm:523 #, scheme-format msgid "choosing ~a@~a from ~a~%" msgstr "scegliendo ~a@~a da ~a~%" -#: gnu/packages.scm:486 guix/scripts/package.scm:216 +#: gnu/packages.scm:487 guix/scripts/package.scm:218 #, scheme-format msgid "package '~a' has been superseded by '~a'~%" msgstr "il pacchetto '~a' è stato sostituito da '~a'~%" -#: gnu/packages.scm:493 gnu/packages.scm:510 +#: gnu/packages.scm:494 gnu/packages.scm:511 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A: pacchetto non trovato per la versione ~a~%" -#: gnu/packages.scm:494 gnu/packages.scm:511 +#: gnu/packages.scm:495 gnu/packages.scm:512 #, scheme-format msgid "~A: unknown package~%" msgstr "~A: pacchetto sconosciuto~%" -#: gnu/packages.scm:550 +#: gnu/packages.scm:551 #, scheme-format msgid "package `~a' lacks output `~a'~%" msgstr "il pacchetto `~a' non possiede l'output `~a'~%" @@ -303,7 +303,7 @@ msgstr "" "secondi che un @code{SIGTERM} è stato inviato saranno terminati usando\n" "@code{SIGKILL}." -#: gnu/home/services.scm:127 +#: gnu/home/services.scm:128 #, fuzzy #| msgid "" #| "Build the operating system top-level directory, which in\n" @@ -318,7 +318,7 @@ msgstr "" "si riferisce a sua volta a tutto ciò di cui il sistema operativo ha bisogno:\n" "il suo kernel, initrd, il profilo di sistema, script di avvio, e così via." -#: gnu/home/services.scm:158 +#: gnu/home/services.scm:159 #, scheme-format msgid "" "This is the @dfn{home profile} and can be found in\n" @@ -327,22 +327,22 @@ msgid "" "@code{home-environment} record." msgstr "" -#: gnu/home/services.scm:180 +#: gnu/home/services.scm:181 #, scheme-format msgid "duplicate definition for `~a' environment variable ~%" msgstr "" -#: gnu/home/services.scm:242 +#: gnu/home/services.scm:243 msgid "Set the environment variables." msgstr "" -#: gnu/home/services.scm:253 +#: gnu/home/services.scm:254 #, fuzzy, scheme-format #| msgid "duplicate '~a' entry for /etc" msgid "duplicate '~a' entry for files/" msgstr "voce '~a' duplicata per /etc" -#: gnu/home/services.scm:277 +#: gnu/home/services.scm:278 #, scheme-format msgid "" "Configuration files for programs that\n" @@ -351,7 +351,7 @@ msgstr "" #. TRANSLATORS: 'on-first-login' is the name of a service and #. shouldn't be translated -#: gnu/home/services.scm:308 +#: gnu/home/services.scm:309 msgid "" "XDG_RUNTIME_DIR doesn't exists, on-first-login script\n" "won't execute anything. You can check if xdg runtime directory exists,\n" @@ -359,13 +359,13 @@ msgid "" "script by running '$HOME/.guix-home/on-first-login'" msgstr "" -#: gnu/home/services.scm:328 +#: gnu/home/services.scm:329 msgid "" "Run gexps on first user login. Can be\n" "extended with one gexp." msgstr "" -#: gnu/home/services.scm:391 +#: gnu/home/services.scm:392 msgid "" "Run gexps to activate the current\n" "generation of home environment and update the state of the home\n" @@ -374,33 +374,33 @@ msgid "" "with one gexp, but many times, and all gexps must be idempotent." msgstr "" -#: gnu/home/services.scm:472 +#: gnu/home/services.scm:473 #, scheme-format msgid "" "Comparing ~a and\n" "~10t~a..." msgstr "" -#: gnu/home/services.scm:474 +#: gnu/home/services.scm:475 #, scheme-format msgid " done (~a)\n" msgstr "" #. TRANSLATORS: 'on-change' is the name of a service type, it #. probably shouldn't be translated. -#: gnu/home/services.scm:483 +#: gnu/home/services.scm:484 msgid "" "Evaluating on-change gexps.\n" "\n" msgstr "" -#: gnu/home/services.scm:485 +#: gnu/home/services.scm:486 msgid "" "On-change gexps evaluation finished.\n" "\n" msgstr "" -#: gnu/home/services.scm:499 +#: gnu/home/services.scm:500 msgid "" "G-expressions to run if the specified files have changed since the\n" "last generation. The extension should be a list of lists where the\n" @@ -408,7 +408,7 @@ msgid "" "changed, and the second element is the G-expression to be evaluated." msgstr "" -#: gnu/home/services.scm:519 +#: gnu/home/services.scm:520 #, fuzzy #| msgid "" #| "Store provenance information about the system in the system\n" @@ -681,12 +681,12 @@ msgstr "" msgid "Updater for ELPA packages" msgstr "Aggiorna i pacchetti OPAM" -#: guix/import/github.scm:170 +#: guix/import/github.scm:175 #, scheme-format msgid "~a is unreachable (~a)~%" msgstr "" -#: guix/import/github.scm:260 +#: guix/import/github.scm:274 #, fuzzy #| msgid "Updater for OPAM packages" msgid "Updater for GitHub packages" @@ -726,25 +726,28 @@ msgstr "~A: pacchetto non trovato per la versione ~a~%" msgid "failed to determine latest release of GNU ~a" msgstr "impossibile determinare l'ultima release di '~a'~%" -#: guix/import/go.scm:569 +#: guix/import/go.scm:571 #, fuzzy, scheme-format #| msgid "no target of type '~a' for service '~a'" msgid "unsupported vcs type '~a' for package '~a'" msgstr "nessun bersaglio di tipo '~a' per il servizio '~a'" -#: guix/import/go.scm:647 +#: guix/import/go.scm:594 #, scheme-format -msgid "" -"Failed to import package ~s.\n" -"reason: ~s could not be fetched: HTTP error ~a (~s).\n" -"This package and its dependencies won't be imported.~%" +msgid "version ~a of ~a is not available~%" +msgstr "" + +#: guix/import/go.scm:597 +#, scheme-format +msgid "Pick one of the following available versions:~{ ~a~}." msgstr "" -#: guix/import/go.scm:656 +#: guix/import/go.scm:671 #, scheme-format msgid "" "Failed to import package ~s.\n" -"reason: ~s.~%" +"reason: ~s could not be fetched: HTTP error ~a (~s).\n" +"This package and its dependencies won't be imported.~%" msgstr "" #: guix/import/minetest.scm:178 @@ -843,79 +846,101 @@ msgstr "dispositivo '~a' non trovato: ~a" msgid "Updater for OPAM packages" msgstr "Aggiorna i pacchetti OPAM" -#: guix/import/pypi.scm:230 +#: guix/import/pypi.scm:233 msgid "Could not extract requirement name in spec:" msgstr "" -#: guix/import/pypi.scm:290 +#: guix/import/pypi.scm:293 #, scheme-format msgid "parse-requires.txt reached an unexpected condition on line ~a~%" msgstr "" -#: guix/import/pypi.scm:356 +#: guix/import/pypi.scm:359 #, scheme-format msgid "Failed to extract file: ~a from wheel.~%" msgstr "" -#: guix/import/pypi.scm:385 +#: guix/import/pypi.scm:388 #, scheme-format msgid "Cannot guess requirements from source archive: no requires.txt file found.~%" msgstr "" -#: guix/import/pypi.scm:390 +#: guix/import/pypi.scm:393 #, scheme-format msgid "Unsupported archive format; cannot determine package dependencies from source archive: ~a~%" msgstr "" -#: guix/import/pypi.scm:489 +#: guix/import/pypi.scm:434 +#, scheme-format +msgid "project name ~a does not appear verbatim in the PyPI URI~%" +msgstr "" + +#: guix/import/pypi.scm:437 +#, scheme-format +msgid "" +"The PyPI URI is: @url{~a}. You should review the\n" +"pypi-uri declaration in the generated package. You may need to replace ~s with\n" +"a substring of the PyPI URI that identifies the package." +msgstr "" + +#: guix/import/pypi.scm:505 #, scheme-format msgid "no source release for pypi package ~a ~a~%" msgstr "" -#: guix/import/pypi.scm:554 +#: guix/import/pypi.scm:509 +#, scheme-format +msgid "" +"This indicates that the\n" +"package is available on PyPI, but only as a \"wheel\" containing binaries, not\n" +"source. To build it from source, refer to the upstream repository at\n" +"@uref{~a}." +msgstr "" + +#: guix/import/pypi.scm:579 #, fuzzy #| msgid "Updater for OPAM packages" msgid "Updater for PyPI packages" msgstr "Aggiorna i pacchetti OPAM" -#: gnu/installer.scm:214 +#: gnu/installer.scm:217 msgid "Locale" msgstr "Linguaggio" -#: gnu/installer.scm:230 gnu/installer/newt/timezone.scm:58 +#: gnu/installer.scm:233 gnu/installer/newt/timezone.scm:58 msgid "Timezone" msgstr "Fuso orario" -#: gnu/installer.scm:247 +#: gnu/installer.scm:250 msgid "Keyboard mapping selection" msgstr "Selezione configurazione tastiera" -#: gnu/installer.scm:256 gnu/installer/newt/hostname.scm:26 +#: gnu/installer.scm:259 gnu/installer/newt/hostname.scm:26 msgid "Hostname" msgstr "Nome host" -#: gnu/installer.scm:265 +#: gnu/installer.scm:268 msgid "Network selection" msgstr "Selezione rete" -#: gnu/installer.scm:272 +#: gnu/installer.scm:275 msgid "Substitute server discovery" msgstr "Scoperta dei server per i sostituti" -#: gnu/installer.scm:279 gnu/installer/newt/user.scm:68 -#: gnu/installer/newt/user.scm:205 +#: gnu/installer.scm:282 gnu/installer/newt/user.scm:67 +#: gnu/installer/newt/user.scm:204 msgid "User creation" msgstr "Creazione utente" -#: gnu/installer.scm:287 +#: gnu/installer.scm:290 msgid "Services" msgstr "Servizi" -#: gnu/installer.scm:298 +#: gnu/installer.scm:301 msgid "Partitioning" msgstr "Partizioni" -#: gnu/installer.scm:305 gnu/installer/newt/final.scm:53 +#: gnu/installer.scm:308 gnu/installer/newt/final.scm:53 msgid "Configuration file" msgstr "File di configurazione" @@ -927,19 +952,83 @@ msgstr "Impossibile determinare lo stato di connman." msgid "Unable to find expected regexp." msgstr "Impossibile trovare il regexp atteso." -#: gnu/installer/newt.scm:52 +#: gnu/installer/newt.scm:58 msgid "Press for installation parameters." msgstr "Premi per i parametri di installazione." -#: gnu/installer/newt.scm:65 -#, scheme-format -msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +#: gnu/installer/newt.scm:68 +#, fuzzy +#| msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. You may choose to exit or create a dump archive." msgstr "Il programma di installazione ha incontrato un problema inatteso. Il backtrace è mostrato sotto. Per favore riportalo via email a <~a>." -#: gnu/installer/newt.scm:68 +#: gnu/installer/newt.scm:71 msgid "Unexpected problem" msgstr "Problema inatteso" +#: gnu/installer/newt.scm:75 +msgid "Dump" +msgstr "" + +#: gnu/installer/newt.scm:76 gnu/installer/newt/ethernet.scm:79 +#: gnu/installer/newt/keymap.scm:56 gnu/installer/newt/locale.scm:43 +#: gnu/installer/newt/network.scm:65 gnu/installer/newt/network.scm:82 +#: gnu/installer/newt/page.scm:315 gnu/installer/newt/page.scm:679 +#: gnu/installer/newt/page.scm:763 gnu/installer/newt/page.scm:828 +#: gnu/installer/newt/partition.scm:54 gnu/installer/newt/partition.scm:90 +#: gnu/installer/newt/partition.scm:125 gnu/installer/newt/partition.scm:140 +#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 +#: gnu/installer/newt/partition.scm:706 gnu/installer/newt/partition.scm:764 +#: gnu/installer/newt/partition.scm:775 gnu/installer/newt/services.scm:124 +#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/wifi.scm:206 +msgid "Exit" +msgstr "Esci" + +#: gnu/installer/newt.scm:82 +#, scheme-format +msgid "The dump archive was created as ~a. Would you like to send this archive to the Guix servers?" +msgstr "" + +#: gnu/installer/newt.scm:84 +msgid "Dump archive created" +msgstr "" + +#: gnu/installer/newt.scm:88 +#, scheme-format +msgid "The dump was uploaded as ~a. Please report it by email to ~a." +msgstr "" + +#: gnu/installer/newt.scm:90 +msgid "The dump could not be uploaded." +msgstr "" + +#: gnu/installer/newt.scm:93 +msgid "Dump upload result" +msgstr "" + +#: gnu/installer/newt.scm:132 +#, fuzzy, scheme-format +#| msgid "Command failed with exit code ~a.~%" +msgid "External command ~s exited with code ~a" +msgstr "Comando fallito con valore di uscita ~a.~%" + +#: gnu/installer/newt.scm:135 +#, scheme-format +msgid "External command ~s terminated by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:138 +#, scheme-format +msgid "External command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:140 +#, fuzzy +#| msgid "internal commands" +msgid "External command error" +msgstr "comandi interni" + #: gnu/installer/newt/ethernet.scm:66 msgid "No ethernet service available, please try again." msgstr "Nessun servizio ethernet disponibile, riprova per favore." @@ -948,59 +1037,45 @@ msgstr "Nessun servizio ethernet disponibile, riprova per favore." msgid "No service" msgstr "Nessun servizio" -#: gnu/installer/newt/ethernet.scm:76 +#: gnu/installer/newt/ethernet.scm:74 msgid "Please select an ethernet network." msgstr "Seleziona una rete ethernet per favore." -#: gnu/installer/newt/ethernet.scm:77 +#: gnu/installer/newt/ethernet.scm:75 msgid "Ethernet connection" msgstr "Connessione ethernet" -#: gnu/installer/newt/ethernet.scm:81 gnu/installer/newt/keymap.scm:56 -#: gnu/installer/newt/locale.scm:43 gnu/installer/newt/network.scm:63 -#: gnu/installer/newt/network.scm:84 gnu/installer/newt/page.scm:309 -#: gnu/installer/newt/page.scm:673 gnu/installer/newt/page.scm:758 -#: gnu/installer/newt/partition.scm:56 gnu/installer/newt/partition.scm:91 -#: gnu/installer/newt/partition.scm:126 gnu/installer/newt/partition.scm:141 -#: gnu/installer/newt/partition.scm:638 gnu/installer/newt/partition.scm:661 -#: gnu/installer/newt/partition.scm:707 gnu/installer/newt/partition.scm:765 -#: gnu/installer/newt/partition.scm:776 gnu/installer/newt/services.scm:130 -#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:204 -#: gnu/installer/newt/wifi.scm:206 -msgid "Exit" -msgstr "Esci" - #: gnu/installer/newt/final.scm:46 #, scheme-format msgid "We're now ready to proceed with the installation! A system configuration file has been generated, it is displayed below. This file will be available as '~a' on the installed system. The new system will be created from this file once you've pressed OK. This will take a few minutes." msgstr "Siamo pronti per procedere con l'installazione! Un file di configurazione è stato generato, ed è mostrato sotto. Questo file sarà disponibile come '~a' nel sistema installato. Il nuovo sistema verrà creato a partire da questo file una volta che premerai OK. Questo richiederà qualche minuto." -#: gnu/installer/newt/final.scm:70 +#: gnu/installer/newt/final.scm:68 msgid "Installation complete" msgstr "Installazione completata" -#: gnu/installer/newt/final.scm:71 gnu/installer/newt/parameters.scm:45 +#: gnu/installer/newt/final.scm:69 gnu/installer/newt/parameters.scm:45 #: gnu/installer/newt/welcome.scm:145 msgid "Reboot" msgstr "Riavvia" -#: gnu/installer/newt/final.scm:72 +#: gnu/installer/newt/final.scm:70 msgid "Congratulations! Installation is now complete. You may remove the device containing the installation image and press the button to reboot." msgstr "Congraturazioni! L'installazione è ora completata. Puoi rimuovere il dispositivo che contiene l'immagine di installazione e premere il tasto di riavvio." -#: gnu/installer/newt/final.scm:86 +#: gnu/installer/newt/final.scm:84 msgid "Installation failed" msgstr "Installazione fallita" -#: gnu/installer/newt/final.scm:87 +#: gnu/installer/newt/final.scm:85 msgid "Resume" msgstr "Riprendi" -#: gnu/installer/newt/final.scm:88 +#: gnu/installer/newt/final.scm:86 msgid "Restart the installer" msgstr "Riavvia il programma di installazione" -#: gnu/installer/newt/final.scm:89 +#: gnu/installer/newt/final.scm:87 msgid "The final system installation step failed. You can resume from a specific step, or restart the installer." msgstr "L'ultimo passaggio di installazione del sistema è fallito. Puoi riprendere da un passo specifico, o riavviare il programma di installazione." @@ -1028,9 +1103,9 @@ msgstr "Scegli uno dei seguenti parametri per favore, o premi 'Indietro' per tor msgid "Installation parameters" msgstr "Parametri di installazione" -#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:74 -#: gnu/installer/newt/locale.scm:63 gnu/installer/newt/locale.scm:78 -#: gnu/installer/newt/locale.scm:94 gnu/installer/newt/partition.scm:595 +#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:72 +#: gnu/installer/newt/locale.scm:61 gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:88 gnu/installer/newt/partition.scm:594 #: gnu/installer/newt/timezone.scm:64 msgid "Back" msgstr "Indietro" @@ -1051,16 +1126,16 @@ msgstr "Inserisci il layout della tua tastiera. Sarà usato solo durante il proc msgid "Please choose your keyboard layout. It will be used during the install process, and for the installed system. Non-Latin layouts can be toggled with Alt+Shift. You can switch to a different layout at any time from the parameters menu." msgstr "Per favore, scegli la configurazione della tua tastiera. Sarà usata durante il processo di installazione, e sistema installato. Configurazioni non-latine possono essere attivate con il tasto Alt+Shift. Puoi cambiare configurazione in qualsiasi momento dal menu dei parametri." -#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:62 -#: gnu/installer/newt/page.scm:308 +#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/page.scm:314 msgid "Continue" msgstr "Continua" -#: gnu/installer/newt/keymap.scm:67 +#: gnu/installer/newt/keymap.scm:65 msgid "Variant" msgstr "Variante" -#: gnu/installer/newt/keymap.scm:70 +#: gnu/installer/newt/keymap.scm:68 msgid "Please choose a variant for your keyboard layout." msgstr "Scegli la viariante del layout della tua tastiera per favore." @@ -1072,35 +1147,35 @@ msgstr "Scegli linguaggio" msgid "Choose the language to use for the installation process and for the installed system." msgstr "Scegli il linguaggio da usare per il processo di installazione e per il sistema che verrà installato." -#: gnu/installer/newt/locale.scm:57 +#: gnu/installer/newt/locale.scm:55 msgid "Locale location" msgstr "" -#: gnu/installer/newt/locale.scm:60 +#: gnu/installer/newt/locale.scm:58 msgid "Choose a territory for this language." msgstr "Scegli un area geografica per questo linguaggio." -#: gnu/installer/newt/locale.scm:71 +#: gnu/installer/newt/locale.scm:67 msgid "Locale codeset" msgstr "" -#: gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:70 msgid "Choose the locale encoding." msgstr "Scegli la codifica del linguaggio." -#: gnu/installer/newt/locale.scm:86 +#: gnu/installer/newt/locale.scm:80 msgid "Locale modifier" msgstr "Modificatore linguaggio" -#: gnu/installer/newt/locale.scm:89 +#: gnu/installer/newt/locale.scm:83 msgid "Choose your locale's modifier. The most frequent modifier is euro. It indicates that you want to use Euro as the currency symbol." msgstr "Scegli un modificatore del tuo linguaggio. Quello usato più frequentemente è euro. Indica che vuoi usare l'Euro come simbolo di valuta." -#: gnu/installer/newt/locale.scm:190 +#: gnu/installer/newt/locale.scm:181 msgid "No location" msgstr "Nessuna zona geografica" -#: gnu/installer/newt/locale.scm:217 +#: gnu/installer/newt/locale.scm:208 msgid "No modifier" msgstr "Nessun modificatore" @@ -1116,332 +1191,338 @@ msgstr "Menu di installazione" msgid "Abort" msgstr "Annulla" -#: gnu/installer/newt/network.scm:61 gnu/installer/newt/network.scm:80 +#: gnu/installer/newt/network.scm:63 gnu/installer/newt/network.scm:78 msgid "Internet access" msgstr "Accesso ad internet" -#: gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/network.scm:66 msgid "The install process requires Internet access but no network devices were found. Do you want to continue anyway?" msgstr "Il processo di installazione richiede accesso ad internet, ma nessun dispositivo di rete è stato trovato. Vuoi continuare comunque?" -#: gnu/installer/newt/network.scm:78 +#: gnu/installer/newt/network.scm:76 msgid "The install process requires Internet access. Please select a network device." msgstr "Il processo di installazione richiede l'accesso ad internet. Per favore, seleziona un dispositivo di rete." -#: gnu/installer/newt/network.scm:103 +#: gnu/installer/newt/network.scm:99 msgid "Powering technology" msgstr "" -#: gnu/installer/newt/network.scm:104 +#: gnu/installer/newt/network.scm:100 #, scheme-format msgid "Waiting for technology ~a to be powered." msgstr "" -#: gnu/installer/newt/network.scm:128 +#: gnu/installer/newt/network.scm:139 msgid "Checking connectivity" msgstr "Controllo connettività" -#: gnu/installer/newt/network.scm:129 +#: gnu/installer/newt/network.scm:140 msgid "Waiting for Internet access establishment..." msgstr "Attendendo che l'accesso ad internet viene effettuato..." -#: gnu/installer/newt/network.scm:139 -msgid "The selected network does not provide access to the Internet, please try again." +#: gnu/installer/newt/network.scm:150 +#, fuzzy +#| msgid "The selected network does not provide access to the Internet, please try again." +msgid "The selected network does not provide access to the Internet and the Guix substitute server, please try again." msgstr "La rete selezionata non fornisce un accesso ad Internet, prova di nuovo per favore." -#: gnu/installer/newt/network.scm:141 gnu/installer/newt/wifi.scm:108 +#: gnu/installer/newt/network.scm:152 gnu/installer/newt/wifi.scm:108 msgid "Connection error" msgstr "Problema di connessione" -#: gnu/installer/newt/page.scm:198 +#: gnu/installer/newt/page.scm:204 #, scheme-format msgid "Connecting to ~a, please wait." msgstr "Connettendo a ~a, attendi per favore." -#: gnu/installer/newt/page.scm:199 +#: gnu/installer/newt/page.scm:205 msgid "Connection in progress" msgstr "Connessione in corso" -#: gnu/installer/newt/page.scm:218 gnu/installer/newt/user.scm:60 +#: gnu/installer/newt/page.scm:224 gnu/installer/newt/user.scm:59 msgid "Show" msgstr "Mostra" -#: gnu/installer/newt/page.scm:225 gnu/installer/newt/page.scm:672 -#: gnu/installer/newt/page.scm:757 gnu/installer/newt/partition.scm:458 -#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 -#: gnu/installer/newt/partition.scm:699 gnu/installer/newt/user.scm:66 -#: gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/page.scm:231 gnu/installer/newt/page.scm:678 +#: gnu/installer/newt/page.scm:762 gnu/installer/newt/partition.scm:457 +#: gnu/installer/newt/partition.scm:636 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:698 gnu/installer/newt/user.scm:65 +#: gnu/installer/newt/user.scm:202 msgid "OK" msgstr "OK" -#: gnu/installer/newt/page.scm:251 +#: gnu/installer/newt/page.scm:257 msgid "Please enter a non empty input." msgstr "Per favore inserisci un input non vuoto." -#: gnu/installer/newt/page.scm:252 gnu/installer/newt/user.scm:123 +#: gnu/installer/newt/page.scm:258 gnu/installer/newt/user.scm:122 msgid "Empty input" msgstr "Input vuoto" -#: gnu/installer/newt/page.scm:760 +#: gnu/installer/newt/page.scm:765 msgid "Edit" msgstr "Modifica" -#: gnu/installer/newt/partition.scm:47 +#: gnu/installer/newt/page.scm:825 +msgid "Ok" +msgstr "" + +#: gnu/installer/newt/partition.scm:45 msgid "Everything is one partition" msgstr "Tutto su un unica partizione" -#: gnu/installer/newt/partition.scm:48 +#: gnu/installer/newt/partition.scm:46 msgid "Separate /home partition" msgstr "Separa la partizione /home" -#: gnu/installer/newt/partition.scm:50 +#: gnu/installer/newt/partition.scm:48 msgid "Please select a partitioning scheme." msgstr "Seleziona uno schema di partizionamento per favore." -#: gnu/installer/newt/partition.scm:51 +#: gnu/installer/newt/partition.scm:49 msgid "Partition scheme" msgstr "Schema di partizionamento" #. TRANSLATORS: The ~{ and ~} format specifiers are used to iterate the list #. of device names of the user partitions that will be formatted. -#: gnu/installer/newt/partition.scm:65 +#: gnu/installer/newt/partition.scm:63 #, scheme-format msgid "We are about to write the configured partition table to the disk and format the partitions listed below. Their data will be lost. Do you wish to continue?~%~%~{ - ~a~%~}" msgstr "Stiamo per scrivere la tabella delle partizioni sul disco, e formattarlo con le partizioni elencate qui sotto. I dati contenuti saranno persi. Vuoi continuare?~%~%~{ - ~a~%~}" -#: gnu/installer/newt/partition.scm:71 +#: gnu/installer/newt/partition.scm:69 msgid "Format disk?" msgstr "Formattare il disco?" -#: gnu/installer/newt/partition.scm:74 +#: gnu/installer/newt/partition.scm:72 msgid "Partition formatting is in progress, please wait." msgstr "Formattazione disco in corso, attendi per favore." -#: gnu/installer/newt/partition.scm:75 +#: gnu/installer/newt/partition.scm:73 msgid "Preparing partitions" msgstr "Preparazione delle partizioni" -#: gnu/installer/newt/partition.scm:86 -msgid "Please select a disk." -msgstr "Seleziona un disco per favore." +#: gnu/installer/newt/partition.scm:84 +msgid "Please select a disk. The installation device as well as the small devices are filtered." +msgstr "" -#: gnu/installer/newt/partition.scm:87 +#: gnu/installer/newt/partition.scm:86 msgid "Disk" msgstr "Disco" -#: gnu/installer/newt/partition.scm:102 +#: gnu/installer/newt/partition.scm:101 msgid "Select a new partition table type. Be careful, all data on the disk will be lost." msgstr "Seleziona una nuova tipo di tabella delle partizioni. Stai attento, tutti i dati sul disco saranno persi." -#: gnu/installer/newt/partition.scm:104 +#: gnu/installer/newt/partition.scm:103 msgid "Partition table" msgstr "Tabella partizioni" -#: gnu/installer/newt/partition.scm:121 +#: gnu/installer/newt/partition.scm:120 msgid "Please select a partition type." msgstr "Seleziona un tipo di partizione per favore." -#: gnu/installer/newt/partition.scm:122 +#: gnu/installer/newt/partition.scm:121 msgid "Partition type" msgstr "Tipo partizione" -#: gnu/installer/newt/partition.scm:132 +#: gnu/installer/newt/partition.scm:131 msgid "Please select the file-system type for this partition." msgstr "Seleziona il tipo di filesystem per questa partizione." -#: gnu/installer/newt/partition.scm:133 +#: gnu/installer/newt/partition.scm:132 msgid "File-system type" msgstr "Tipo di filesystem" -#: gnu/installer/newt/partition.scm:150 +#: gnu/installer/newt/partition.scm:149 msgid "Primary partitions count exceeded." msgstr "Numero di partizioni primarie superato." -#: gnu/installer/newt/partition.scm:151 gnu/installer/newt/partition.scm:156 -#: gnu/installer/newt/partition.scm:161 +#: gnu/installer/newt/partition.scm:150 gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:160 msgid "Creation error" msgstr "Errore di creazione" -#: gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:154 msgid "Extended partition creation error." msgstr "Errore di creazione della partizione estesa." -#: gnu/installer/newt/partition.scm:160 +#: gnu/installer/newt/partition.scm:159 msgid "Logical partition creation error." msgstr "Errore di creazione della partizione logica." -#: gnu/installer/newt/partition.scm:174 +#: gnu/installer/newt/partition.scm:173 #, scheme-format msgid "Please enter the password for the encryption of partition ~a (label: ~a)." msgstr "Per favore, inserisci la password per criptare la partizione ~a (etichetta: ~a)." -#: gnu/installer/newt/partition.scm:176 gnu/installer/newt/wifi.scm:92 +#: gnu/installer/newt/partition.scm:175 gnu/installer/newt/wifi.scm:92 msgid "Password required" msgstr "Password richiesta" -#: gnu/installer/newt/partition.scm:181 +#: gnu/installer/newt/partition.scm:180 #, scheme-format msgid "Please confirm the password for the encryption of partition ~a (label: ~a)." msgstr "Per favore, conferma la password per criptare la partizione ~a (etichetta: ~a)." -#: gnu/installer/newt/partition.scm:183 gnu/installer/newt/user.scm:160 +#: gnu/installer/newt/partition.scm:182 gnu/installer/newt/user.scm:159 msgid "Password confirmation required" msgstr "Conferma della password richiesta" -#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 +#: gnu/installer/newt/partition.scm:194 gnu/installer/newt/user.scm:167 msgid "Password mismatch, please try again." msgstr "Le password non corrispondono, riprova per favore." -#: gnu/installer/newt/partition.scm:196 gnu/installer/newt/user.scm:169 +#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 msgid "Password error" msgstr "Errore password" -#: gnu/installer/newt/partition.scm:282 +#: gnu/installer/newt/partition.scm:281 msgid "Please enter the partition gpt name." msgstr "Inserisci il nome della partizione gpt per favore." -#: gnu/installer/newt/partition.scm:283 +#: gnu/installer/newt/partition.scm:282 msgid "Partition name" msgstr "Nome partizione" -#: gnu/installer/newt/partition.scm:313 +#: gnu/installer/newt/partition.scm:312 msgid "Please enter the encrypted label" msgstr "" -#: gnu/installer/newt/partition.scm:314 +#: gnu/installer/newt/partition.scm:313 msgid "Encryption label" msgstr "" -#: gnu/installer/newt/partition.scm:331 +#: gnu/installer/newt/partition.scm:330 #, scheme-format msgid "Please enter the size of the partition. The maximum size is ~a." msgstr "Inserisci la dimensione della partizione per favore. La dimensione massima è ~a." -#: gnu/installer/newt/partition.scm:333 +#: gnu/installer/newt/partition.scm:332 msgid "Partition size" msgstr "Dimensione partizione" -#: gnu/installer/newt/partition.scm:351 +#: gnu/installer/newt/partition.scm:350 msgid "The percentage can not be superior to 100." msgstr "La percentuale non può essere superiore a 100." -#: gnu/installer/newt/partition.scm:352 gnu/installer/newt/partition.scm:357 -#: gnu/installer/newt/partition.scm:362 +#: gnu/installer/newt/partition.scm:351 gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:361 msgid "Size error" msgstr "Errore dimensione" -#: gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:355 msgid "The requested size is incorrectly formatted, or too large." msgstr "La dimensione richiesta è formattata incorrettamente, o è troppo grande." -#: gnu/installer/newt/partition.scm:361 +#: gnu/installer/newt/partition.scm:360 msgid "The request size is superior to the maximum size." msgstr "La dimensione richiesta è superiore alla dimensione massima." -#: gnu/installer/newt/partition.scm:381 +#: gnu/installer/newt/partition.scm:380 msgid "Please enter the desired mounting point for this partition. Leave this field empty if you don't want to set a mounting point." msgstr "" -#: gnu/installer/newt/partition.scm:383 +#: gnu/installer/newt/partition.scm:382 msgid "Mounting point" msgstr "" -#: gnu/installer/newt/partition.scm:447 +#: gnu/installer/newt/partition.scm:446 #, scheme-format msgid "Creating ~a partition starting at ~a of ~a." msgstr "Creando la partizione ~a a partire da ~a di ~a." -#: gnu/installer/newt/partition.scm:449 +#: gnu/installer/newt/partition.scm:448 #, scheme-format msgid "You are currently editing partition ~a." msgstr "Stai attualmente modificando la partizione ~a." -#: gnu/installer/newt/partition.scm:452 +#: gnu/installer/newt/partition.scm:451 msgid "Partition creation" msgstr "Crea partizione" -#: gnu/installer/newt/partition.scm:453 +#: gnu/installer/newt/partition.scm:452 msgid "Partition edit" msgstr "Modifica partizione" -#: gnu/installer/newt/partition.scm:634 +#: gnu/installer/newt/partition.scm:633 #, scheme-format msgid "Are you sure you want to delete everything on disk ~a?" msgstr "Sei sicuro di voler cancellare tutto sul disco ~a?" -#: gnu/installer/newt/partition.scm:636 +#: gnu/installer/newt/partition.scm:635 msgid "Delete disk" msgstr "Elimina disco" -#: gnu/installer/newt/partition.scm:651 +#: gnu/installer/newt/partition.scm:650 msgid "You cannot delete a free space area." msgstr "Non puoi eliminare l'area libera." -#: gnu/installer/newt/partition.scm:652 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:651 gnu/installer/newt/partition.scm:658 msgid "Delete partition" msgstr "Elimina partizione" -#: gnu/installer/newt/partition.scm:657 +#: gnu/installer/newt/partition.scm:656 #, scheme-format msgid "Are you sure you want to delete partition ~a?" msgstr "Sei sicuro di voler eliminare la partizione ~a?" -#: gnu/installer/newt/partition.scm:674 +#: gnu/installer/newt/partition.scm:673 msgid "" "You can change a disk's partition table by selecting it and pressing ENTER. You can also edit a partition by selecting it and pressing ENTER, or remove it by pressing DELETE. To create a new partition, select a free space area and press ENTER.\n" "\n" "At least one partition must have its mounting point set to '/'." msgstr "" -#: gnu/installer/newt/partition.scm:680 +#: gnu/installer/newt/partition.scm:679 #, scheme-format msgid "This is the proposed partitioning. It is still possible to edit it or to go back to install menu by pressing the Exit button.~%~%" msgstr "" -#: gnu/installer/newt/partition.scm:690 +#: gnu/installer/newt/partition.scm:689 msgid "Guided partitioning" msgstr "Partizionamento guidato" -#: gnu/installer/newt/partition.scm:691 +#: gnu/installer/newt/partition.scm:690 msgid "Manual partitioning" msgstr "Partizionamento manuale" -#: gnu/installer/newt/partition.scm:716 +#: gnu/installer/newt/partition.scm:715 msgid "No root mount point found." msgstr "" -#: gnu/installer/newt/partition.scm:717 +#: gnu/installer/newt/partition.scm:716 msgid "Missing mount point" msgstr "" -#: gnu/installer/newt/partition.scm:721 +#: gnu/installer/newt/partition.scm:720 #, scheme-format msgid "Cannot read the ~a partition UUID. You may need to format it." msgstr "" -#: gnu/installer/newt/partition.scm:724 +#: gnu/installer/newt/partition.scm:723 #, fuzzy #| msgid "Preparing partitions" msgid "Wrong partition format" msgstr "Preparazione delle partizioni" -#: gnu/installer/newt/partition.scm:755 +#: gnu/installer/newt/partition.scm:754 msgid "Guided - using the entire disk" msgstr "Guidata - usa l'intero disco" -#: gnu/installer/newt/partition.scm:756 +#: gnu/installer/newt/partition.scm:755 msgid "Guided - using the entire disk with encryption" msgstr "Guidata - usa l'intero disco con crittografia" -#: gnu/installer/newt/partition.scm:757 +#: gnu/installer/newt/partition.scm:756 msgid "Manual" msgstr "Manuale" -#: gnu/installer/newt/partition.scm:759 +#: gnu/installer/newt/partition.scm:758 msgid "Please select a partitioning method." msgstr "Seleziona il metodo di partizionamento per favore." -#: gnu/installer/newt/partition.scm:760 +#: gnu/installer/newt/partition.scm:759 msgid "Partitioning method" msgstr "Metodo di partizionamento" @@ -1453,41 +1534,41 @@ msgstr "" msgid "Desktop environment" msgstr "Ambiente desktop" -#: gnu/installer/newt/services.scm:59 +#: gnu/installer/newt/services.scm:57 msgid "You can now select networking services to run on your system." msgstr "Puoi selezionare ora i servizi di rete da eseguire sul tuo sistema." -#: gnu/installer/newt/services.scm:61 +#: gnu/installer/newt/services.scm:59 msgid "Network service" msgstr "Servizi di rete" -#: gnu/installer/newt/services.scm:79 +#: gnu/installer/newt/services.scm:75 #, fuzzy #| msgid "You can now select networking services to run on your system." msgid "You can now select the CUPS printing service to run on your system." msgstr "Puoi selezionare ora i servizi di rete da eseguire sul tuo sistema." -#: gnu/installer/newt/services.scm:81 +#: gnu/installer/newt/services.scm:77 msgid "Printing and document services" msgstr "" -#: gnu/installer/newt/services.scm:100 +#: gnu/installer/newt/services.scm:94 #, fuzzy #| msgid "No service" msgid "Console services" msgstr "Nessun servizio" -#: gnu/installer/newt/services.scm:101 +#: gnu/installer/newt/services.scm:95 #, fuzzy #| msgid "You can now select networking services to run on your system." msgid "Select miscellaneous services to run on your non-graphical system." msgstr "Puoi selezionare ora i servizi di rete da eseguire sul tuo sistema." -#: gnu/installer/newt/services.scm:115 +#: gnu/installer/newt/services.scm:109 msgid "Network management" msgstr "Gestione rete" -#: gnu/installer/newt/services.scm:118 +#: gnu/installer/newt/services.scm:112 msgid "" "Choose the method to manage network connections.\n" "\n" @@ -1517,57 +1598,57 @@ msgstr "" msgid "Please select a timezone." msgstr "Inserisci un fuso orario." -#: gnu/installer/newt/user.scm:45 +#: gnu/installer/newt/user.scm:44 msgid "Name" msgstr "Nome" -#: gnu/installer/newt/user.scm:47 +#: gnu/installer/newt/user.scm:46 msgid "Real name" msgstr "Vero nome" -#: gnu/installer/newt/user.scm:49 +#: gnu/installer/newt/user.scm:48 msgid "Home directory" msgstr "" -#: gnu/installer/newt/user.scm:51 +#: gnu/installer/newt/user.scm:50 msgid "Password" msgstr "Password" -#: gnu/installer/newt/user.scm:122 +#: gnu/installer/newt/user.scm:121 msgid "Empty inputs are not allowed." msgstr "Input vuoto non ammesso." -#: gnu/installer/newt/user.scm:159 +#: gnu/installer/newt/user.scm:158 msgid "Please confirm the password." msgstr "Conferma la password per favore." #. TRANSLATORS: Leave "root" untranslated: it refers to the name of the #. system administrator account. -#: gnu/installer/newt/user.scm:176 +#: gnu/installer/newt/user.scm:175 msgid "Please choose a password for the system administrator (\"root\")." msgstr "Inserisci la password per l'amministratore di sistema (\"root\"), per favore." -#: gnu/installer/newt/user.scm:178 +#: gnu/installer/newt/user.scm:177 msgid "System administrator password" msgstr "Password amministratore di sistema" -#: gnu/installer/newt/user.scm:191 +#: gnu/installer/newt/user.scm:190 msgid "Please add at least one user to system using the 'Add' button." msgstr "Aggiungi al sistema almeno un utente usando il tasto 'Aggiungi' per favore." -#: gnu/installer/newt/user.scm:194 +#: gnu/installer/newt/user.scm:193 msgid "Add" msgstr "Aggiungi" -#: gnu/installer/newt/user.scm:195 +#: gnu/installer/newt/user.scm:194 msgid "Delete" msgstr "Rimuovi" -#: gnu/installer/newt/user.scm:255 +#: gnu/installer/newt/user.scm:254 msgid "Please create at least one user." msgstr "Crea almeno un utente per favore." -#: gnu/installer/newt/user.scm:256 +#: gnu/installer/newt/user.scm:255 msgid "No user" msgstr "Nessun utente" @@ -1643,60 +1724,60 @@ msgstr "Nessun wifi rilevato" msgid "Wifi" msgstr "Wifi" -#: gnu/installer/parted.scm:433 gnu/installer/parted.scm:470 +#: gnu/installer/parted.scm:455 gnu/installer/parted.scm:492 msgid "Free space" msgstr "Spazio libero" -#: gnu/installer/parted.scm:559 +#: gnu/installer/parted.scm:581 #, scheme-format msgid "Name: ~a" msgstr "Nome: ~a" -#: gnu/installer/parted.scm:560 gnu/installer/parted.scm:606 +#: gnu/installer/parted.scm:582 gnu/installer/parted.scm:628 msgid "None" msgstr "Niente" -#: gnu/installer/parted.scm:565 +#: gnu/installer/parted.scm:587 #, scheme-format msgid "Type: ~a" msgstr "Tipo: ~a" -#: gnu/installer/parted.scm:569 +#: gnu/installer/parted.scm:591 #, scheme-format msgid "File system type: ~a" msgstr "Tipo filesystem: ~a" -#: gnu/installer/parted.scm:575 +#: gnu/installer/parted.scm:597 #, scheme-format msgid "Bootable flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:579 +#: gnu/installer/parted.scm:601 #, scheme-format msgid "ESP flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:585 +#: gnu/installer/parted.scm:607 #, scheme-format msgid "Size: ~a" msgstr "Dimensione: ~a" -#: gnu/installer/parted.scm:591 +#: gnu/installer/parted.scm:613 #, scheme-format msgid "Encryption: ~:[No~a~;Yes (label '~a')~]" msgstr "" -#: gnu/installer/parted.scm:597 +#: gnu/installer/parted.scm:619 #, scheme-format msgid "Format the partition? ~:[No~;Yes~]" msgstr "" -#: gnu/installer/parted.scm:603 +#: gnu/installer/parted.scm:625 #, scheme-format msgid "Mount point: ~a" msgstr "" -#: gnu/installer/parted.scm:1466 +#: gnu/installer/parted.scm:1477 #, scheme-format msgid "Device ~a is still in use." msgstr "Il dispositivo ~a è ancora in uso." @@ -1740,7 +1821,7 @@ msgstr "" #. TRANSLATORS: This is a comment within a Scheme file. Each line must #. start with ";; " (two semicolons and a space). Please keep line #. length below 60 characters. -#: gnu/installer/steps.scm:252 +#: gnu/installer/steps.scm:242 msgid "" ";; This is an operating system configuration generated\n" ";; by the graphical installer.\n" @@ -1751,98 +1832,118 @@ msgstr "" msgid "Unable to locate path: ~a." msgstr "Impossibile trovare il percorso: ~a." -#: gnu/installer/utils.scm:83 +#: gnu/installer/utils.scm:131 #, scheme-format msgid "Press Enter to continue.~%" msgstr "Premi Invio per continuare.~%" -#: gnu/installer/utils.scm:108 -#, scheme-format -msgid "Command failed with exit code ~a.~%" +#: gnu/installer/utils.scm:150 +#, fuzzy, scheme-format +#| msgid "Command failed with exit code ~a.~%" +msgid "Command ~s exited with value ~a" msgstr "Comando fallito con valore di uscita ~a.~%" -#: gnu/machine/ssh.scm:117 +#: gnu/installer/utils.scm:156 +#, scheme-format +msgid "Command ~s killed by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:162 +#, scheme-format +msgid "Command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:167 +#, scheme-format +msgid "Command ~s succeeded" +msgstr "" + +#: gnu/installer/utils.scm:179 +msgid "run-command-in-installer not set" +msgstr "" + +#: gnu/machine/ssh.scm:120 #, scheme-format msgid " without a 'host-key' is deprecated~%" msgstr "" -#: gnu/machine/ssh.scm:192 +#: gnu/machine/ssh.scm:208 #, scheme-format msgid "device '~a' not found: ~a" msgstr "dispositivo '~a' non trovato: ~a" -#: gnu/machine/ssh.scm:207 +#: gnu/machine/ssh.scm:223 #, scheme-format msgid "no file system with label '~a'" msgstr "" -#: gnu/machine/ssh.scm:226 +#: gnu/machine/ssh.scm:242 #, scheme-format msgid "no file system with UUID '~a'" msgstr "" -#: gnu/machine/ssh.scm:276 +#: gnu/machine/ssh.scm:295 #, scheme-format msgid "missing modules for ~a:~{ ~a~}~%" msgstr "" -#: gnu/machine/ssh.scm:311 +#: gnu/machine/ssh.scm:333 #, scheme-format msgid "incorrect target system ('~a' was given, while the system reports that it is '~a')~%" msgstr "" -#: gnu/machine/ssh.scm:437 +#: gnu/machine/ssh.scm:459 #, scheme-format msgid "no signing key '~a'. have you run 'guix archive --generate-key?'" msgstr "" -#: gnu/machine/ssh.scm:469 +#: gnu/machine/ssh.scm:491 #, scheme-format msgid "failed to switch systems while deploying '~a':~%~{~s ~}" msgstr "" -#: gnu/machine/ssh.scm:477 +#: gnu/machine/ssh.scm:499 #, scheme-format msgid "an error occurred while upgrading services on '~a':~%~{~s ~}~%" msgstr "" -#: gnu/machine/ssh.scm:485 +#: gnu/machine/ssh.scm:507 #, scheme-format msgid "failed to install bootloader on '~a':~%~{~s ~}~%" msgstr "" -#: gnu/machine/ssh.scm:518 +#: gnu/machine/ssh.scm:540 msgid "could not roll-back machine" msgstr "" -#: gnu/machine/ssh.scm:559 +#: gnu/machine/ssh.scm:581 msgid "" "Provisioning for machines that are accessible over SSH\n" "and have a known host-name. This entails little more than maintaining an SSH\n" "connection to the host." msgstr "" -#: gnu/machine/ssh.scm:569 +#: gnu/machine/ssh.scm:591 #, scheme-format msgid "" "unsupported machine configuration '~a'\n" "for environment of type '~a'" msgstr "" -#: gnu/packages/bootstrap.scm:178 +#: gnu/packages/bootstrap.scm:188 #, scheme-format msgid "could not find bootstrap binary '~a' for system '~a'" msgstr "" -#: gnu/packages/bootstrap.scm:492 +#: gnu/packages/bootstrap.scm:578 msgid "Raw build system with direct store access" msgstr "" -#: gnu/packages/bootstrap.scm:500 +#: gnu/packages/bootstrap.scm:586 msgid "Pre-built Guile for bootstrapping purposes." msgstr "" -#: guix/build/utils.scm:822 +#: guix/build/utils.scm:823 #, scheme-format msgid "'~a~{ ~a~}' exited with status ~a; output follows:~%~%~{ ~a~%~}" msgstr "" @@ -1882,7 +1983,7 @@ msgid "~A: unrecognized option~%" msgstr "~A: opzione non riconosciuta~%" #: guix/scripts.scm:169 guix/scripts/import.scm:140 -#: guix/scripts/system.scm:1370 +#: guix/scripts/system.scm:1379 #, scheme-format msgid "Did you mean @code{~a}?~%" msgstr "Intendevi @code{~a}?~%" @@ -1931,7 +2032,7 @@ msgstr "" #: guix/scripts/build.scm:154 guix/scripts/search.scm:42 #: guix/scripts/show.scm:41 guix/scripts/lint.scm:112 guix/scripts/edit.scm:48 #: guix/scripts/size.scm:246 guix/scripts/graph.scm:553 -#: guix/scripts/repl.scm:80 guix/scripts/style.scm:500 +#: guix/scripts/repl.scm:80 guix/scripts/style.scm:795 msgid "" "\n" " -L, --load-path=DIR prepend DIR to the package module search path" @@ -2084,7 +2185,7 @@ msgid "" " -s, --system=SYSTEM attempt to build for SYSTEM--e.g., \"i686-linux\"" msgstr "" -#: guix/scripts/build.scm:357 guix/scripts/system.scm:1023 +#: guix/scripts/build.scm:357 guix/scripts/system.scm:1026 #: guix/scripts/pack.scm:1329 guix/scripts/archive.scm:97 msgid "" "\n" @@ -2117,13 +2218,13 @@ msgid "" " as a garbage collector root" msgstr "" -#: guix/scripts/build.scm:368 guix/scripts/package.scm:486 +#: guix/scripts/build.scm:368 guix/scripts/package.scm:488 #: guix/scripts/install.scm:37 guix/scripts/remove.scm:36 #: guix/scripts/upgrade.scm:39 guix/scripts/pull.scm:117 -#: guix/scripts/system.scm:1025 guix/scripts/copy.scm:122 -#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:60 +#: guix/scripts/system.scm:1028 guix/scripts/copy.scm:122 +#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:66 #: guix/scripts/archive.scm:99 guix/scripts/environment.scm:123 -#: guix/scripts/home.scm:94 +#: guix/scripts/home.scm:98 msgid "" "\n" " -v, --verbosity=LEVEL use the given verbosity LEVEL" @@ -2142,59 +2243,59 @@ msgid "" msgstr "" #: guix/scripts/build.scm:379 guix/scripts/download.scm:104 -#: guix/scripts/package.scm:504 guix/scripts/install.scm:44 +#: guix/scripts/package.scm:506 guix/scripts/install.scm:44 #: guix/scripts/remove.scm:41 guix/scripts/upgrade.scm:48 #: guix/scripts/search.scm:37 guix/scripts/show.scm:36 guix/scripts/gc.scm:88 #: guix/scripts/git.scm:34 guix/scripts/git/authenticate.scm:110 #: guix/scripts/hash.scm:98 guix/scripts/import.scm:98 #: guix/scripts/import/minetest.scm:46 guix/scripts/import/cran.scm:49 #: guix/scripts/pull.scm:125 guix/scripts/substitute.scm:250 -#: guix/scripts/system.scm:1032 guix/scripts/lint.scm:115 +#: guix/scripts/system.scm:1035 guix/scripts/lint.scm:115 #: guix/scripts/publish.scm:119 guix/scripts/edit.scm:51 #: guix/scripts/size.scm:249 guix/scripts/graph.scm:558 #: guix/scripts/challenge.scm:430 guix/scripts/copy.scm:127 #: guix/scripts/pack.scm:1357 guix/scripts/weather.scm:336 #: guix/scripts/describe.scm:96 guix/scripts/processes.scm:301 -#: guix/scripts/deploy.scm:55 guix/scripts/container.scm:35 +#: guix/scripts/deploy.scm:58 guix/scripts/container.scm:35 #: guix/scripts/container/exec.scm:43 guix/scripts/archive.scm:106 -#: guix/scripts/environment.scm:149 guix/scripts/home.scm:97 +#: guix/scripts/environment.scm:149 guix/scripts/home.scm:101 #: guix/scripts/time-machine.scm:67 guix/scripts/import/cpan.scm:44 #: guix/scripts/import/crate.scm:50 guix/scripts/import/egg.scm:45 #: guix/scripts/import/gem.scm:46 guix/scripts/import/gnu.scm:50 #: guix/scripts/import/go.scm:50 guix/scripts/import/json.scm:52 #: guix/scripts/import/opam.scm:45 guix/scripts/import/pypi.scm:46 #: guix/scripts/import/texlive.scm:45 guix/scripts/refresh.scm:187 -#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:67 -#: guix/scripts/style.scm:509 +#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:69 +#: guix/scripts/style.scm:804 msgid "" "\n" " -h, --help display this help and exit" msgstr "" #: guix/scripts/build.scm:381 guix/scripts/download.scm:106 -#: guix/scripts/package.scm:506 guix/scripts/install.scm:46 +#: guix/scripts/package.scm:508 guix/scripts/install.scm:46 #: guix/scripts/remove.scm:43 guix/scripts/upgrade.scm:50 #: guix/scripts/search.scm:39 guix/scripts/show.scm:38 guix/scripts/gc.scm:90 #: guix/scripts/git.scm:36 guix/scripts/git/authenticate.scm:112 #: guix/scripts/hash.scm:100 guix/scripts/import.scm:100 #: guix/scripts/import/minetest.scm:50 guix/scripts/import/cran.scm:55 #: guix/scripts/pull.scm:127 guix/scripts/substitute.scm:252 -#: guix/scripts/system.scm:1034 guix/scripts/lint.scm:119 +#: guix/scripts/system.scm:1037 guix/scripts/lint.scm:119 #: guix/scripts/publish.scm:121 guix/scripts/edit.scm:53 #: guix/scripts/size.scm:251 guix/scripts/graph.scm:560 #: guix/scripts/challenge.scm:432 guix/scripts/copy.scm:129 #: guix/scripts/pack.scm:1359 guix/scripts/weather.scm:338 #: guix/scripts/describe.scm:98 guix/scripts/processes.scm:303 -#: guix/scripts/deploy.scm:57 guix/scripts/container.scm:37 +#: guix/scripts/deploy.scm:60 guix/scripts/container.scm:37 #: guix/scripts/container/exec.scm:45 guix/scripts/archive.scm:108 -#: guix/scripts/environment.scm:151 guix/scripts/home.scm:99 +#: guix/scripts/environment.scm:151 guix/scripts/home.scm:103 #: guix/scripts/time-machine.scm:69 guix/scripts/import/cpan.scm:46 #: guix/scripts/import/crate.scm:52 guix/scripts/import/egg.scm:49 #: guix/scripts/import/gem.scm:48 guix/scripts/import/gnu.scm:52 #: guix/scripts/import/json.scm:54 guix/scripts/import/opam.scm:52 #: guix/scripts/import/pypi.scm:50 guix/scripts/import/texlive.scm:47 #: guix/scripts/refresh.scm:189 guix/scripts/repl.scm:85 -#: guix/scripts/shell.scm:69 guix/scripts/style.scm:511 +#: guix/scripts/shell.scm:71 guix/scripts/style.scm:806 msgid "" "\n" " -V, --version display version information and exit" @@ -2428,164 +2529,164 @@ msgstr "" msgid "\"bash-minimal\" should be in 'inputs' when '~a' is used" msgstr "" -#: guix/lint.scm:616 +#: guix/lint.scm:614 msgid "no period allowed at the end of the synopsis" msgstr "" -#: guix/lint.scm:630 +#: guix/lint.scm:628 msgid "no article allowed at the beginning of the synopsis" msgstr "" -#: guix/lint.scm:639 +#: guix/lint.scm:637 msgid "synopsis should be less than 80 characters long" msgstr "" -#: guix/lint.scm:648 +#: guix/lint.scm:646 msgid "synopsis should start with an upper-case letter or digit" msgstr "" -#: guix/lint.scm:656 +#: guix/lint.scm:654 msgid "synopsis should not start with the package name" msgstr "" -#: guix/lint.scm:670 +#: guix/lint.scm:668 msgid "Texinfo markup in synopsis is invalid" msgstr "" -#: guix/lint.scm:678 +#: guix/lint.scm:676 msgid "synopsis contains trailing whitespace" msgstr "" -#: guix/lint.scm:695 +#: guix/lint.scm:693 msgid "synopsis should not be empty" msgstr "" -#: guix/lint.scm:705 +#: guix/lint.scm:703 #, scheme-format msgid "invalid synopsis: ~s" msgstr "" -#: guix/lint.scm:805 +#: guix/lint.scm:803 #, scheme-format msgid "~a: HTTP GET error for ~a: ~a (~s)~%" msgstr "" -#: guix/lint.scm:815 +#: guix/lint.scm:813 #, scheme-format msgid "~a: host lookup failure: ~a~%" msgstr "" -#: guix/lint.scm:820 +#: guix/lint.scm:818 #, scheme-format msgid "~a: TLS certificate error: ~a" msgstr "" -#: guix/lint.scm:825 +#: guix/lint.scm:823 #, scheme-format msgid "~a: TLS error in '~a': ~a~%" msgstr "" -#: guix/lint.scm:836 guix/ui.scm:820 guix/scripts/offload.scm:194 +#: guix/lint.scm:834 guix/ui.scm:820 guix/scripts/offload.scm:194 #, scheme-format msgid "~a: ~a~%" msgstr "" -#: guix/lint.scm:868 +#: guix/lint.scm:866 #, scheme-format msgid "URI ~a returned suspiciously small file (~a bytes)" msgstr "" -#: guix/lint.scm:877 +#: guix/lint.scm:875 #, scheme-format msgid "permanent redirect from ~a to ~a" msgstr "" -#: guix/lint.scm:883 +#: guix/lint.scm:881 #, scheme-format msgid "invalid permanent redirect from ~a" msgstr "" -#: guix/lint.scm:889 guix/lint.scm:899 +#: guix/lint.scm:887 guix/lint.scm:897 #, scheme-format msgid "URI ~a not reachable: ~a (~s)" msgstr "" -#: guix/lint.scm:905 +#: guix/lint.scm:903 #, scheme-format msgid "URI ~a domain not found: ~a" msgstr "" -#: guix/lint.scm:911 +#: guix/lint.scm:909 #, scheme-format msgid "URI ~a unreachable: ~a" msgstr "" -#: guix/lint.scm:919 +#: guix/lint.scm:917 #, scheme-format msgid "TLS certificate error: ~a" msgstr "" -#: guix/lint.scm:946 +#: guix/lint.scm:944 msgid "invalid value for home page" msgstr "" -#: guix/lint.scm:951 +#: guix/lint.scm:949 #, scheme-format msgid "invalid home page URL: ~s" msgstr "" -#: guix/lint.scm:988 +#: guix/lint.scm:986 msgid "file names of patches should start with the package name" msgstr "" -#: guix/lint.scm:1008 +#: guix/lint.scm:1006 #, scheme-format msgid "~a: file name is too long, which may break 'make dist'" msgstr "" -#: guix/lint.scm:1029 +#: guix/lint.scm:1027 #, scheme-format msgid "~a: empty patch" msgstr "" -#: guix/lint.scm:1038 +#: guix/lint.scm:1036 #, scheme-format msgid "~a: patch lacks comment and upstream status" msgstr "" -#: guix/lint.scm:1099 +#: guix/lint.scm:1097 #, scheme-format msgid "proposed synopsis: ~s~%" msgstr "" -#: guix/lint.scm:1113 +#: guix/lint.scm:1111 #, scheme-format msgid "proposed description:~% \"~a\"~%" msgstr "" -#: guix/lint.scm:1164 +#: guix/lint.scm:1162 msgid "all the source URIs are unreachable:" msgstr "" -#: guix/lint.scm:1193 +#: guix/lint.scm:1191 msgid "the source file name should contain the package name" msgstr "" -#: guix/lint.scm:1205 +#: guix/lint.scm:1203 msgid "the source URI should not be an autogenerated tarball" msgstr "" -#: guix/lint.scm:1229 +#: guix/lint.scm:1227 #, scheme-format msgid "URL should be 'mirror://~a/~a'" msgstr "" -#: guix/lint.scm:1269 +#: guix/lint.scm:1267 #, scheme-format msgid "while accessing '~a'" msgstr "" -#: guix/lint.scm:1276 +#: guix/lint.scm:1274 #, scheme-format msgid "URL should be '~a'" msgstr "" @@ -2593,68 +2694,68 @@ msgstr "" #. TRANSLATORS: check and #:tests? are a #. Scheme symbol and keyword respectively #. and should not be translated. -#: guix/lint.scm:1304 +#: guix/lint.scm:1302 msgid "the 'check' phase should respect #:tests?" msgstr "" -#: guix/lint.scm:1322 guix/lint.scm:1333 guix/lint.scm:1341 +#: guix/lint.scm:1320 guix/lint.scm:1331 guix/lint.scm:1339 #, scheme-format msgid "failed to create ~a derivation: ~a" msgstr "" -#: guix/lint.scm:1327 +#: guix/lint.scm:1325 #, scheme-format msgid "failed to create ~a derivation: ~s" msgstr "" -#: guix/lint.scm:1379 +#: guix/lint.scm:1377 #, scheme-format msgid "propagated inputs ~a and ~a collide" msgstr "" -#: guix/lint.scm:1403 +#: guix/lint.scm:1401 msgid "invalid license field" msgstr "" -#: guix/lint.scm:1410 +#: guix/lint.scm:1408 msgid "while retrieving CVE vulnerabilities" msgstr "" -#: guix/lint.scm:1453 +#: guix/lint.scm:1451 #, scheme-format msgid "probably vulnerable to ~a" msgstr "" -#: guix/lint.scm:1461 +#: guix/lint.scm:1459 #, scheme-format msgid "no updater for ~a" msgstr "" -#: guix/lint.scm:1466 guix/lint.scm:1641 +#: guix/lint.scm:1464 guix/lint.scm:1639 #, scheme-format msgid "while retrieving upstream info for '~a'" msgstr "" -#: guix/lint.scm:1475 +#: guix/lint.scm:1473 #, scheme-format msgid "can be upgraded to ~a" msgstr "" -#: guix/lint.scm:1481 +#: guix/lint.scm:1479 #, scheme-format msgid "updater '~a' failed to find upstream releases" msgstr "" -#: guix/lint.scm:1508 +#: guix/lint.scm:1506 #, scheme-format msgid "failed to access Disarchive database at ~a" msgstr "" -#: guix/lint.scm:1535 +#: guix/lint.scm:1533 msgid "Software Heritage rate limit reached; try again later" msgstr "" -#: guix/lint.scm:1539 +#: guix/lint.scm:1537 #, scheme-format msgid "'~a' returned ~a" msgstr "" @@ -2662,162 +2763,162 @@ msgstr "" #. TRANSLATORS: "Software Heritage" is a proper noun #. that must remain untranslated. See #. . -#: guix/lint.scm:1578 +#: guix/lint.scm:1576 msgid "scheduled Software Heritage archival" msgstr "" -#: guix/lint.scm:1584 +#: guix/lint.scm:1582 msgid "archival rate limit exceeded; try again later" msgstr "" -#: guix/lint.scm:1605 +#: guix/lint.scm:1603 msgid "source not archived on Software Heritage and missing from the Disarchive database" msgstr "" -#: guix/lint.scm:1615 +#: guix/lint.scm:1613 #, scheme-format msgid "Disarchive entry refers to non-existent SWH directory '~a'" msgstr "" -#: guix/lint.scm:1624 +#: guix/lint.scm:1622 msgid "unsupported source type" msgstr "" -#: guix/lint.scm:1633 +#: guix/lint.scm:1631 msgid "while connecting to Software Heritage" msgstr "" -#: guix/lint.scm:1650 +#: guix/lint.scm:1648 #, scheme-format msgid "ahead of Stackage LTS version ~a" msgstr "" -#: guix/lint.scm:1667 +#: guix/lint.scm:1665 #, scheme-format msgid "tabulation on line ~a, column ~a" msgstr "" -#: guix/lint.scm:1679 +#: guix/lint.scm:1677 #, scheme-format msgid "trailing white space on line ~a" msgstr "" -#: guix/lint.scm:1693 +#: guix/lint.scm:1691 #, scheme-format msgid "line ~a is way too long (~a characters)" msgstr "" -#: guix/lint.scm:1707 +#: guix/lint.scm:1705 msgid "parentheses feel lonely, move to the previous or next line" msgstr "" -#: guix/lint.scm:1784 +#: guix/lint.scm:1782 msgid "source file not found" msgstr "" -#: guix/lint.scm:1796 +#: guix/lint.scm:1794 msgid "Validate package names" msgstr "" -#: guix/lint.scm:1800 +#: guix/lint.scm:1798 msgid "Check if tests are explicitly enabled" msgstr "" -#: guix/lint.scm:1804 +#: guix/lint.scm:1802 msgid "Validate package descriptions" msgstr "" -#: guix/lint.scm:1808 +#: guix/lint.scm:1806 msgid "Identify inputs that should be native inputs" msgstr "" -#: guix/lint.scm:1812 +#: guix/lint.scm:1810 msgid "Identify inputs that shouldn't be inputs at all" msgstr "" -#: guix/lint.scm:1816 +#: guix/lint.scm:1814 msgid "Identify input labels that do not match package names" msgstr "" -#: guix/lint.scm:1820 +#: guix/lint.scm:1818 msgid "Make sure 'wrap-program' can finds its interpreter." msgstr "" #. TRANSLATORS: is the name of a data type and must not be #. translated. -#: guix/lint.scm:1826 +#: guix/lint.scm:1824 msgid "Make sure the 'license' field is a or a list thereof" msgstr "" -#: guix/lint.scm:1831 +#: guix/lint.scm:1829 msgid "Make sure tests are only run when requested" msgstr "" -#: guix/lint.scm:1835 +#: guix/lint.scm:1833 msgid "Suggest 'mirror://' URLs" msgstr "" -#: guix/lint.scm:1839 +#: guix/lint.scm:1837 msgid "Validate file names of sources" msgstr "" -#: guix/lint.scm:1843 +#: guix/lint.scm:1841 msgid "Check for autogenerated tarballs" msgstr "" -#: guix/lint.scm:1847 +#: guix/lint.scm:1845 msgid "Report failure to compile a package to a derivation" msgstr "" -#: guix/lint.scm:1852 +#: guix/lint.scm:1850 msgid "Report collisions that would occur due to propagated inputs" msgstr "" -#: guix/lint.scm:1857 +#: guix/lint.scm:1855 msgid "Validate file names and availability of patches" msgstr "" -#: guix/lint.scm:1861 +#: guix/lint.scm:1859 msgid "Validate patch headers" msgstr "" -#: guix/lint.scm:1865 +#: guix/lint.scm:1863 msgid "Look for formatting issues in the source" msgstr "" -#: guix/lint.scm:1872 +#: guix/lint.scm:1870 msgid "Validate package synopses" msgstr "" -#: guix/lint.scm:1876 +#: guix/lint.scm:1874 msgid "Validate synopsis & description of GNU packages" msgstr "" -#: guix/lint.scm:1880 +#: guix/lint.scm:1878 msgid "Validate home-page URLs" msgstr "" -#: guix/lint.scm:1884 +#: guix/lint.scm:1882 msgid "Validate source URLs" msgstr "" -#: guix/lint.scm:1888 +#: guix/lint.scm:1886 msgid "Suggest GitHub URLs" msgstr "" -#: guix/lint.scm:1892 +#: guix/lint.scm:1890 msgid "Check the Common Vulnerabilities and Exposures (CVE) database" msgstr "" -#: guix/lint.scm:1897 +#: guix/lint.scm:1895 msgid "Check the package for new upstream releases" msgstr "" -#: guix/lint.scm:1901 +#: guix/lint.scm:1899 msgid "Ensure source code archival on Software Heritage" msgstr "" -#: guix/lint.scm:1905 +#: guix/lint.scm:1903 msgid "Ensure Haskell packages use Stackage LTS versions" msgstr "" @@ -2869,7 +2970,7 @@ msgstr "" msgid "~a: unknown hash algorithm~%" msgstr "" -#: guix/scripts/download.scm:171 guix/scripts/package.scm:1087 +#: guix/scripts/download.scm:171 guix/scripts/package.scm:1090 #: guix/scripts/pull.scm:758 guix/scripts/publish.scm:1260 #: guix/scripts/discover.scm:136 guix/scripts/time-machine.scm:123 #, scheme-format @@ -2901,17 +3002,17 @@ msgstr "" msgid "no matching generation~%" msgstr "" -#: guix/scripts/package.scm:159 +#: guix/scripts/package.scm:161 #, scheme-format msgid "nothing to be done~%" msgstr "" -#: guix/scripts/package.scm:260 +#: guix/scripts/package.scm:262 #, scheme-format msgid "package '~a' no longer exists~%" msgstr "" -#: guix/scripts/package.scm:315 +#: guix/scripts/package.scm:317 #, scheme-format msgid "" "Consider setting the necessary environment\n" @@ -2925,7 +3026,7 @@ msgid "" "Alternately, see @command{guix package --search-paths -p ~s}." msgstr "" -#: guix/scripts/package.scm:361 +#: guix/scripts/package.scm:363 msgid "" ";; This \"manifest\" file can be passed to 'guix package -m' to reproduce\n" ";; the content of your profile. This is \"symbolic\": it only specifies\n" @@ -2934,44 +3035,44 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/package.scm:393 +#: guix/scripts/package.scm:395 #, scheme-format msgid "no provenance information for this profile~%" msgstr "" -#: guix/scripts/package.scm:395 +#: guix/scripts/package.scm:397 msgid "" ";; This channel file can be passed to 'guix pull -C' or to\n" ";; 'guix time-machine -C' to obtain the Guix revision that was\n" ";; used to populate this profile.\n" msgstr "" -#: guix/scripts/package.scm:407 +#: guix/scripts/package.scm:409 #, scheme-format msgid ";; Note: these other commits were also used to install some of the packages in this profile:~%" msgstr "" -#: guix/scripts/package.scm:437 +#: guix/scripts/package.scm:439 msgid "" "Usage: guix package [OPTION]...\n" "Install, remove, or upgrade packages in a single transaction.\n" msgstr "" -#: guix/scripts/package.scm:439 +#: guix/scripts/package.scm:441 msgid "" "\n" " -i, --install PACKAGE ...\n" " install PACKAGEs" msgstr "" -#: guix/scripts/package.scm:442 +#: guix/scripts/package.scm:444 msgid "" "\n" " -e, --install-from-expression=EXP\n" " install the package EXP evaluates to" msgstr "" -#: guix/scripts/package.scm:445 +#: guix/scripts/package.scm:447 msgid "" "\n" " -f, --install-from-file=FILE\n" @@ -2979,160 +3080,160 @@ msgid "" " evaluates to" msgstr "" -#: guix/scripts/package.scm:449 +#: guix/scripts/package.scm:451 msgid "" "\n" " -r, --remove PACKAGE ...\n" " remove PACKAGEs" msgstr "" -#: guix/scripts/package.scm:452 +#: guix/scripts/package.scm:454 msgid "" "\n" " -u, --upgrade[=REGEXP] upgrade all the installed packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:454 +#: guix/scripts/package.scm:456 msgid "" "\n" " -m, --manifest=FILE create a new profile generation with the manifest\n" " from FILE" msgstr "" -#: guix/scripts/package.scm:457 guix/scripts/upgrade.scm:41 +#: guix/scripts/package.scm:459 guix/scripts/upgrade.scm:41 msgid "" "\n" " --do-not-upgrade[=REGEXP] do not upgrade any packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:459 guix/scripts/pull.scm:107 +#: guix/scripts/package.scm:461 guix/scripts/pull.scm:107 msgid "" "\n" " --roll-back roll back to the previous generation" msgstr "" -#: guix/scripts/package.scm:461 +#: guix/scripts/package.scm:463 msgid "" "\n" " --search-paths[=KIND]\n" " display needed environment variable definitions" msgstr "" -#: guix/scripts/package.scm:464 guix/scripts/pull.scm:104 +#: guix/scripts/package.scm:466 guix/scripts/pull.scm:104 msgid "" "\n" " -l, --list-generations[=PATTERN]\n" " list generations matching PATTERN" msgstr "" -#: guix/scripts/package.scm:467 guix/scripts/pull.scm:109 +#: guix/scripts/package.scm:469 guix/scripts/pull.scm:109 msgid "" "\n" " -d, --delete-generations[=PATTERN]\n" " delete generations matching PATTERN" msgstr "" -#: guix/scripts/package.scm:470 guix/scripts/pull.scm:112 +#: guix/scripts/package.scm:472 guix/scripts/pull.scm:112 msgid "" "\n" " -S, --switch-generation=PATTERN\n" " switch to a generation matching PATTERN" msgstr "" -#: guix/scripts/package.scm:473 +#: guix/scripts/package.scm:475 msgid "" "\n" " --export-manifest print a manifest for the chosen profile" msgstr "" -#: guix/scripts/package.scm:475 +#: guix/scripts/package.scm:477 msgid "" "\n" " --export-channels print channels for the chosen profile" msgstr "" -#: guix/scripts/package.scm:477 guix/scripts/install.scm:34 +#: guix/scripts/package.scm:479 guix/scripts/install.scm:34 #: guix/scripts/remove.scm:33 guix/scripts/upgrade.scm:37 msgid "" "\n" " -p, --profile=PROFILE use PROFILE instead of the user's default profile" msgstr "" -#: guix/scripts/package.scm:479 +#: guix/scripts/package.scm:481 msgid "" "\n" " --list-profiles list the user's profiles" msgstr "" -#: guix/scripts/package.scm:482 +#: guix/scripts/package.scm:484 msgid "" "\n" " --allow-collisions do not treat collisions in the profile as an error" msgstr "" -#: guix/scripts/package.scm:484 +#: guix/scripts/package.scm:486 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" msgstr "" -#: guix/scripts/package.scm:489 +#: guix/scripts/package.scm:491 msgid "" "\n" " -s, --search=REGEXP search in synopsis and description using REGEXP" msgstr "" -#: guix/scripts/package.scm:491 +#: guix/scripts/package.scm:493 msgid "" "\n" " -I, --list-installed[=REGEXP]\n" " list installed packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:494 +#: guix/scripts/package.scm:496 msgid "" "\n" " -A, --list-available[=REGEXP]\n" " list available packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:497 +#: guix/scripts/package.scm:499 msgid "" "\n" " --show=PACKAGE show details about PACKAGE" msgstr "" -#: guix/scripts/package.scm:552 +#: guix/scripts/package.scm:554 #, scheme-format msgid "upgrade regexp '~a' looks like a command-line option~%" msgstr "" -#: guix/scripts/package.scm:555 +#: guix/scripts/package.scm:557 #, scheme-format msgid "is this intended?~%" msgstr "" -#: guix/scripts/package.scm:605 +#: guix/scripts/package.scm:607 #, scheme-format msgid "~a: unsupported kind of search path~%" msgstr "" -#: guix/scripts/package.scm:739 +#: guix/scripts/package.scm:741 #, scheme-format msgid "cannot install non-package object: ~s~%" msgstr "" -#: guix/scripts/package.scm:918 +#: guix/scripts/package.scm:920 #, scheme-format msgid "~a~@[@~a~]: package not found~%" msgstr "" -#: guix/scripts/package.scm:965 guix/scripts/pull.scm:687 +#: guix/scripts/package.scm:967 guix/scripts/pull.scm:687 #, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "" -#: guix/scripts/package.scm:1060 +#: guix/scripts/package.scm:1062 #, scheme-format msgid "nothing to do~%" msgstr "" @@ -3341,8 +3442,8 @@ msgid "" "Operate on Git repositories.\n" msgstr "" -#: guix/scripts/git.scm:29 guix/scripts/system.scm:945 -#: guix/scripts/container.scm:30 guix/scripts/home.scm:69 +#: guix/scripts/git.scm:29 guix/scripts/system.scm:946 +#: guix/scripts/container.scm:30 guix/scripts/home.scm:70 msgid "The valid values for ACTION are:\n" msgstr "" @@ -3431,22 +3532,22 @@ msgid "" " -S, --serializer=TYPE compute the hash on FILE according to TYPE serialization" msgstr "" -#: guix/scripts/hash.scm:137 +#: guix/scripts/hash.scm:138 #, fuzzy, scheme-format -msgid "'--recursive' is deprecated, use '--serializer' instead~%" +msgid "'--recursive' is deprecated, use '--serializer=nar' instead~%" msgstr "è deprecato l'uso di 'disk-image': usa invece 'image'~%" -#: guix/scripts/hash.scm:152 +#: guix/scripts/hash.scm:153 #, scheme-format msgid "unsupported serializer type: ~a~%" msgstr "" -#: guix/scripts/hash.scm:201 +#: guix/scripts/hash.scm:202 #, scheme-format msgid "~a ~a~%" msgstr "" -#: guix/scripts/hash.scm:210 +#: guix/scripts/hash.scm:211 #, scheme-format msgid "no arguments specified~%" msgstr "" @@ -3506,9 +3607,9 @@ msgstr "" #: guix/scripts/import/minetest.scm:115 guix/scripts/import/cran.scm:120 #: guix/scripts/import/elpa.scm:110 guix/scripts/import/cpan.scm:87 #: guix/scripts/import/crate.scm:103 guix/scripts/import/egg.scm:106 -#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:121 +#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:122 #: guix/scripts/import/hackage.scm:158 guix/scripts/import/json.scm:97 -#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:104 +#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:105 #: guix/scripts/import/stackage.scm:130 guix/scripts/import/texlive.scm:88 #, scheme-format msgid "too few arguments~%" @@ -3517,10 +3618,10 @@ msgstr "" #: guix/scripts/import/minetest.scm:117 guix/scripts/import/cran.scm:122 #: guix/scripts/import/elpa.scm:112 guix/scripts/import/cpan.scm:89 #: guix/scripts/import/crate.scm:105 guix/scripts/import/egg.scm:108 -#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:123 +#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:124 #: guix/scripts/import/hackage.scm:149 guix/scripts/import/hackage.scm:160 #: guix/scripts/import/json.scm:99 guix/scripts/import/opam.scm:113 -#: guix/scripts/import/pypi.scm:106 guix/scripts/import/stackage.scm:132 +#: guix/scripts/import/pypi.scm:107 guix/scripts/import/stackage.scm:132 #: guix/scripts/import/texlive.scm:90 #, scheme-format msgid "too many arguments~%" @@ -3544,7 +3645,7 @@ msgid "" " -s, --style=STYLE choose output style, either specification or variable" msgstr "" -#: guix/scripts/import/cran.scm:116 guix/scripts/import/texlive.scm:84 +#: guix/scripts/import/cran.scm:116 #, scheme-format msgid "failed to download description for package '~a'~%" msgstr "" @@ -3940,27 +4041,27 @@ msgstr "" msgid "the dependency graph of shepherd services" msgstr "" -#: guix/scripts/system.scm:482 guix/scripts/home.scm:453 +#: guix/scripts/system.scm:482 guix/scripts/home.scm:466 #, scheme-format msgid " repository URL: ~a~%" msgstr "" -#: guix/scripts/system.scm:484 guix/scripts/home.scm:455 +#: guix/scripts/system.scm:484 guix/scripts/home.scm:468 #, scheme-format msgid " branch: ~a~%" msgstr "" -#: guix/scripts/system.scm:485 guix/scripts/home.scm:456 +#: guix/scripts/system.scm:485 guix/scripts/home.scm:469 #, scheme-format msgid " commit: ~a~%" msgstr "" -#: guix/scripts/system.scm:505 guix/scripts/home.scm:469 +#: guix/scripts/system.scm:505 guix/scripts/home.scm:482 #, scheme-format msgid " file name: ~a~%" msgstr "" -#: guix/scripts/system.scm:506 guix/scripts/home.scm:470 +#: guix/scripts/system.scm:506 guix/scripts/home.scm:483 #, scheme-format msgid " canonical file name: ~a~%" msgstr "" @@ -4001,12 +4102,12 @@ msgstr "" #. TRANSLATORS: Here "channel" is the same terminology as used in #. "guix describe" and "guix pull --channels". -#: guix/scripts/system.scm:536 guix/scripts/home.scm:476 +#: guix/scripts/system.scm:536 guix/scripts/home.scm:489 #, scheme-format msgid " channels:~%" msgstr "" -#: guix/scripts/system.scm:539 guix/scripts/home.scm:479 +#: guix/scripts/system.scm:539 guix/scripts/home.scm:492 #, scheme-format msgid " configuration file: ~a~%" msgstr "" @@ -4059,128 +4160,128 @@ msgstr "" msgid "Failing to do that may downgrade your system!~%" msgstr "" -#: guix/scripts/system.scm:754 guix/scripts/system.scm:863 +#: guix/scripts/system.scm:754 guix/scripts/system.scm:864 #, scheme-format msgid "bootloader successfully installed on '~a'~%" msgstr "" -#: guix/scripts/system.scm:856 +#: guix/scripts/system.scm:857 #, scheme-format msgid "activating system...~%" msgstr "" -#: guix/scripts/system.scm:867 +#: guix/scripts/system.scm:868 msgid "" "To complete the upgrade, run 'herd restart SERVICE' to stop,\n" "upgrade, and restart each service that was not automatically restarted.\n" msgstr "" -#: guix/scripts/system.scm:870 +#: guix/scripts/system.scm:871 msgid "Run 'herd status' to view the list of services on your system.\n" msgstr "" -#: guix/scripts/system.scm:874 +#: guix/scripts/system.scm:875 #, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "" -#: guix/scripts/system.scm:894 guix/scripts/graph.scm:437 +#: guix/scripts/system.scm:895 guix/scripts/graph.scm:437 #, scheme-format msgid "~a: unknown backend~%" msgstr "" -#: guix/scripts/system.scm:931 +#: guix/scripts/system.scm:932 msgid "The available image types are:\n" msgstr "" -#: guix/scripts/system.scm:941 +#: guix/scripts/system.scm:942 msgid "" "Usage: guix system [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the operating system declared in FILE according to ACTION.\n" "Some ACTIONS support additional ARGS.\n" msgstr "" -#: guix/scripts/system.scm:947 +#: guix/scripts/system.scm:948 msgid " search search for existing service types\n" msgstr "" -#: guix/scripts/system.scm:949 +#: guix/scripts/system.scm:950 msgid " reconfigure switch to a new operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:951 +#: guix/scripts/system.scm:952 msgid " roll-back switch to the previous operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:953 +#: guix/scripts/system.scm:954 msgid " describe describe the current system\n" msgstr "" -#: guix/scripts/system.scm:955 +#: guix/scripts/system.scm:956 msgid " list-generations list the system generations\n" msgstr "" -#: guix/scripts/system.scm:957 +#: guix/scripts/system.scm:958 msgid " switch-generation switch to an existing operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:959 +#: guix/scripts/system.scm:960 msgid " delete-generations delete old system generations\n" msgstr "" -#: guix/scripts/system.scm:961 +#: guix/scripts/system.scm:962 msgid " build build the operating system without installing anything\n" msgstr "" -#: guix/scripts/system.scm:963 +#: guix/scripts/system.scm:964 msgid " container build a container that shares the host's store\n" msgstr "" -#: guix/scripts/system.scm:965 +#: guix/scripts/system.scm:966 msgid " vm build a virtual machine image that shares the host's store\n" msgstr "" -#: guix/scripts/system.scm:967 +#: guix/scripts/system.scm:968 msgid " image build a Guix System image\n" msgstr "" -#: guix/scripts/system.scm:969 +#: guix/scripts/system.scm:970 msgid " docker-image build a Docker image\n" msgstr "" -#: guix/scripts/system.scm:971 +#: guix/scripts/system.scm:972 msgid " init initialize a root file system to run GNU\n" msgstr "" -#: guix/scripts/system.scm:973 +#: guix/scripts/system.scm:974 msgid " extension-graph emit the service extension graph in Dot format\n" msgstr "" -#: guix/scripts/system.scm:975 +#: guix/scripts/system.scm:976 msgid " shepherd-graph emit the graph of shepherd services in Dot format\n" msgstr "" -#: guix/scripts/system.scm:979 +#: guix/scripts/system.scm:980 msgid "" "\n" " -d, --derivation return the derivation of the given system" msgstr "" -#: guix/scripts/system.scm:981 +#: guix/scripts/system.scm:982 msgid "" "\n" " -e, --expression=EXPR consider the operating-system EXPR evaluates to\n" " instead of reading FILE, when applicable" msgstr "" -#: guix/scripts/system.scm:984 +#: guix/scripts/system.scm:985 guix/scripts/home.scm:95 msgid "" "\n" " --allow-downgrades for 'reconfigure', allow downgrades to earlier\n" " channel revisions" msgstr "" -#: guix/scripts/system.scm:987 +#: guix/scripts/system.scm:988 msgid "" "\n" " --on-error=STRATEGY\n" @@ -4188,69 +4289,75 @@ msgid "" " or debug) when an error occurs while reading FILE" msgstr "" -#: guix/scripts/system.scm:991 +#: guix/scripts/system.scm:992 msgid "" "\n" " --list-image-types list available image types" msgstr "" -#: guix/scripts/system.scm:993 +#: guix/scripts/system.scm:994 msgid "" "\n" " -t, --image-type=TYPE for 'image', produce an image of TYPE" msgstr "" -#: guix/scripts/system.scm:995 +#: guix/scripts/system.scm:996 msgid "" "\n" " --image-size=SIZE for 'image', produce an image of SIZE" msgstr "" -#: guix/scripts/system.scm:997 +#: guix/scripts/system.scm:998 msgid "" "\n" " --no-bootloader for 'init', do not install a bootloader" msgstr "" -#: guix/scripts/system.scm:999 +#: guix/scripts/system.scm:1000 msgid "" "\n" " --volatile for 'image', make the root file system volatile" msgstr "" -#: guix/scripts/system.scm:1001 +#: guix/scripts/system.scm:1002 +msgid "" +"\n" +" --persistent for 'vm', make the root file system persistent" +msgstr "" + +#: guix/scripts/system.scm:1004 msgid "" "\n" " --label=LABEL for 'image', label disk image with LABEL" msgstr "" -#: guix/scripts/system.scm:1003 guix/scripts/pack.scm:1340 +#: guix/scripts/system.scm:1006 guix/scripts/pack.scm:1340 msgid "" "\n" " --save-provenance save provenance information" msgstr "" -#: guix/scripts/system.scm:1005 +#: guix/scripts/system.scm:1008 msgid "" "\n" " --share=SPEC for 'vm' and 'container', share host file system with\n" " read/write access according to SPEC" msgstr "" -#: guix/scripts/system.scm:1008 +#: guix/scripts/system.scm:1011 msgid "" "\n" " --expose=SPEC for 'vm' and 'container', expose host file system\n" " directory as read-only according to SPEC" msgstr "" -#: guix/scripts/system.scm:1011 +#: guix/scripts/system.scm:1014 msgid "" "\n" " -N, --network for 'container', allow containers to access the network" msgstr "" -#: guix/scripts/system.scm:1013 +#: guix/scripts/system.scm:1016 msgid "" "\n" " -r, --root=FILE for 'vm', 'image', 'container' and 'build',\n" @@ -4258,82 +4365,82 @@ msgid "" " register it as a garbage collector root" msgstr "" -#: guix/scripts/system.scm:1017 +#: guix/scripts/system.scm:1020 msgid "" "\n" " --full-boot for 'vm', make a full boot sequence" msgstr "" -#: guix/scripts/system.scm:1019 +#: guix/scripts/system.scm:1022 msgid "" "\n" " --no-graphic for 'vm', use the tty that we are started in for IO" msgstr "" -#: guix/scripts/system.scm:1021 +#: guix/scripts/system.scm:1024 msgid "" "\n" " --skip-checks skip file system and initrd module safety checks" msgstr "" -#: guix/scripts/system.scm:1028 +#: guix/scripts/system.scm:1031 msgid "" "\n" " --graph-backend=BACKEND\n" " use BACKEND for 'extension-graphs' and 'shepherd-graph'" msgstr "" -#: guix/scripts/system.scm:1180 +#: guix/scripts/system.scm:1187 #, scheme-format msgid "'~a' does not return an operating system or an image~%" msgstr "" -#: guix/scripts/system.scm:1204 guix/scripts/home.scm:216 +#: guix/scripts/system.scm:1211 guix/scripts/home.scm:230 #, scheme-format msgid "both file and expression cannot be specified~%" msgstr "" -#: guix/scripts/system.scm:1211 guix/scripts/home.scm:223 +#: guix/scripts/system.scm:1218 guix/scripts/home.scm:237 #, scheme-format msgid "no configuration specified~%" msgstr "" -#: guix/scripts/system.scm:1319 guix/scripts/system.scm:1335 -#: guix/scripts/system.scm:1342 guix/scripts/system.scm:1348 -#: guix/scripts/home.scm:274 guix/scripts/home.scm:296 -#: guix/scripts/home.scm:301 guix/scripts/home.scm:307 -#: guix/scripts/home.scm:314 guix/scripts/import/gnu.scm:100 +#: guix/scripts/system.scm:1328 guix/scripts/system.scm:1344 +#: guix/scripts/system.scm:1351 guix/scripts/system.scm:1357 +#: guix/scripts/home.scm:287 guix/scripts/home.scm:309 +#: guix/scripts/home.scm:314 guix/scripts/home.scm:320 +#: guix/scripts/home.scm:327 guix/scripts/import/gnu.scm:100 #: guix/scripts/offload.scm:836 guix/scripts/offload.scm:848 #, scheme-format msgid "wrong number of arguments~%" msgstr "" -#: guix/scripts/system.scm:1324 +#: guix/scripts/system.scm:1333 #, scheme-format msgid "no system generation, nothing to describe~%" msgstr "" -#: guix/scripts/system.scm:1367 guix/scripts/home.scm:337 +#: guix/scripts/system.scm:1376 guix/scripts/home.scm:350 #, scheme-format msgid "~a: unknown action~%" msgstr "" -#: guix/scripts/system.scm:1387 guix/scripts/home.scm:353 +#: guix/scripts/system.scm:1396 guix/scripts/home.scm:366 #, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "" -#: guix/scripts/system.scm:1392 +#: guix/scripts/system.scm:1401 #, scheme-format msgid "guix system: missing command name~%" msgstr "" -#: guix/scripts/system.scm:1394 +#: guix/scripts/system.scm:1403 #, scheme-format msgid "Try 'guix system --help' for more information.~%" msgstr "" -#: guix/scripts/system/search.scm:93 guix/ui.scm:1541 guix/ui.scm:1559 +#: guix/scripts/system/search.scm:93 guix/ui.scm:1544 guix/ui.scm:1562 msgid "unknown" msgstr "" @@ -4728,7 +4835,7 @@ msgid "" msgstr "" #: guix/scripts/graph.scm:548 guix/scripts/pack.scm:1325 -#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:502 +#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:797 msgid "" "\n" " -e, --expression=EXPR consider the package EXPR evaluates to" @@ -5318,44 +5425,89 @@ msgid "" " -f, --format=FORMAT display results as normalized record sets" msgstr "" -#: guix/scripts/deploy.scm:51 +#: guix/scripts/deploy.scm:54 msgid "" "Usage: guix deploy [OPTION] FILE...\n" "Perform the deployment specified by FILE.\n" msgstr "" -#: guix/scripts/deploy.scm:108 +#: guix/scripts/deploy.scm:63 +msgid "" +"\n" +" -x, --execute execute the following command on all the machines" +msgstr "" + +#: guix/scripts/deploy.scm:117 #, scheme-format msgid "The following ~d machine will be deployed:~%" msgid_plural "The following ~d machines will be deployed:~%" msgstr[0] "" msgstr[1] "" -#: guix/scripts/deploy.scm:122 +#: guix/scripts/deploy.scm:131 #, scheme-format msgid "deploying to ~a...~%" msgstr "" -#: guix/scripts/deploy.scm:134 guix/scripts/deploy.scm:138 +#: guix/scripts/deploy.scm:143 guix/scripts/deploy.scm:147 #, scheme-format msgid "failed to deploy ~a: ~a~%" msgstr "" -#: guix/scripts/deploy.scm:146 +#: guix/scripts/deploy.scm:155 #, scheme-format msgid "rolling back ~a...~%" msgstr "" -#: guix/scripts/deploy.scm:152 +#: guix/scripts/deploy.scm:161 #, scheme-format msgid "successfully deployed ~a~%" msgstr "" -#: guix/scripts/deploy.scm:167 +#: guix/scripts/deploy.scm:212 +#, fuzzy, scheme-format +#| msgid "~a: patch not found" +msgid "~a: command succeeded~%" +msgstr "~a: patch non trovata" + +#: guix/scripts/deploy.scm:215 +#, fuzzy, scheme-format +#| msgid "Command failed with exit code ~a.~%" +msgid "~a: command exited with code ~a~%" +msgstr "Comando fallito con valore di uscita ~a.~%" + +#: guix/scripts/deploy.scm:218 +#, fuzzy, scheme-format +#| msgid "~a: patch not found" +msgid "~a: command stopped with signal ~a~%" +msgstr "~a: patch non trovata" + +#: guix/scripts/deploy.scm:221 +#, scheme-format +msgid "~a: command terminated with signal ~a~%" +msgstr "" + +#: guix/scripts/deploy.scm:225 +#, fuzzy, scheme-format +#| msgid "~a: patch not found" +msgid "command output on ~a:~%" +msgstr "~a: patch non trovata" + +#: guix/scripts/deploy.scm:246 #, scheme-format msgid "missing deployment file argument~%" msgstr "" +#: guix/scripts/deploy.scm:249 +#, scheme-format +msgid "'--' was used by '-x' was not specified~%" +msgstr "" + +#: guix/scripts/deploy.scm:271 +#, scheme-format +msgid "'-x' specified but no command given~%" +msgstr "" + #: guix/gexp.scm:465 #, scheme-format msgid "resolving '~a' relative to current directory~%" @@ -5448,158 +5600,158 @@ msgstr "" msgid "exec failed with status ~d~%" msgstr "" -#: guix/transformations.scm:185 guix/transformations.scm:253 +#: guix/transformations.scm:186 guix/transformations.scm:254 #, scheme-format msgid "invalid replacement specification: ~s" msgstr "" -#: guix/transformations.scm:234 +#: guix/transformations.scm:235 #, scheme-format msgid "the source of ~a is not a Git reference" msgstr "" -#: guix/transformations.scm:337 +#: guix/transformations.scm:338 #, scheme-format msgid "~a: invalid Git URL replacement specification" msgstr "" -#: guix/transformations.scm:415 +#: guix/transformations.scm:416 #, scheme-format msgid "~a: invalid toolchain replacement specification" msgstr "" -#: guix/transformations.scm:517 +#: guix/transformations.scm:518 #, fuzzy #| msgid "could not determine latest upstream release of '~a'~%" msgid "failed to determine which compiler is used" msgstr "impossibile determinare l'ultima release di '~a'~%" -#: guix/transformations.scm:523 +#: guix/transformations.scm:524 #, fuzzy, scheme-format #| msgid "could not determine latest upstream release of '~a'~%" msgid "failed to determine whether ~a supports ~a" msgstr "impossibile determinare l'ultima release di '~a'~%" -#: guix/transformations.scm:529 +#: guix/transformations.scm:530 #, scheme-format msgid "compiler ~a does not support micro-architecture ~a" msgstr "" -#: guix/transformations.scm:581 +#: guix/transformations.scm:582 #, fuzzy, scheme-format #| msgid "choosing ~a@~a from ~a~%" msgid "tuning ~a for CPU ~a~%" msgstr "scegliendo ~a@~a da ~a~%" -#: guix/transformations.scm:721 +#: guix/transformations.scm:722 #, scheme-format msgid "~a: invalid package patch specification" msgstr "" -#: guix/transformations.scm:744 +#: guix/transformations.scm:745 #, scheme-format msgid "could not determine latest upstream release of '~a'~%" msgstr "impossibile determinare l'ultima release di '~a'~%" -#: guix/transformations.scm:752 +#: guix/transformations.scm:753 #, scheme-format msgid "cannot authenticate source of '~a', version ~a~%" msgstr "" -#: guix/transformations.scm:833 +#: guix/transformations.scm:840 #, scheme-format msgid "building for ~a instead of ~a, so tuning cannot be guessed~%" msgstr "" -#: guix/transformations.scm:859 +#: guix/transformations.scm:866 #, scheme-format msgid "Available package transformation options:~%" msgstr "" -#: guix/transformations.scm:865 +#: guix/transformations.scm:872 msgid "" "\n" " --with-source=[PACKAGE=]SOURCE\n" " use SOURCE when building the corresponding package" msgstr "" -#: guix/transformations.scm:868 +#: guix/transformations.scm:875 msgid "" "\n" " --with-input=PACKAGE=REPLACEMENT\n" " replace dependency PACKAGE by REPLACEMENT" msgstr "" -#: guix/transformations.scm:871 +#: guix/transformations.scm:878 msgid "" "\n" " --with-graft=PACKAGE=REPLACEMENT\n" " graft REPLACEMENT on packages that refer to PACKAGE" msgstr "" -#: guix/transformations.scm:874 +#: guix/transformations.scm:881 msgid "" "\n" " --with-branch=PACKAGE=BRANCH\n" " build PACKAGE from the latest commit of BRANCH" msgstr "" -#: guix/transformations.scm:877 +#: guix/transformations.scm:884 msgid "" "\n" " --with-commit=PACKAGE=COMMIT\n" " build PACKAGE from COMMIT" msgstr "" -#: guix/transformations.scm:880 +#: guix/transformations.scm:887 msgid "" "\n" " --with-git-url=PACKAGE=URL\n" " build PACKAGE from the repository at URL" msgstr "" -#: guix/transformations.scm:883 +#: guix/transformations.scm:890 msgid "" "\n" " --with-patch=PACKAGE=FILE\n" " add FILE to the list of patches of PACKAGE" msgstr "" -#: guix/transformations.scm:886 +#: guix/transformations.scm:893 msgid "" "\n" " --with-latest=PACKAGE\n" " use the latest upstream release of PACKAGE" msgstr "" -#: guix/transformations.scm:889 +#: guix/transformations.scm:896 msgid "" "\n" " --with-c-toolchain=PACKAGE=TOOLCHAIN\n" " build PACKAGE and its dependents with TOOLCHAIN" msgstr "" -#: guix/transformations.scm:892 +#: guix/transformations.scm:899 msgid "" "\n" " --with-debug-info=PACKAGE\n" " build PACKAGE and preserve its debug info" msgstr "" -#: guix/transformations.scm:895 +#: guix/transformations.scm:902 msgid "" "\n" " --without-tests=PACKAGE\n" " build PACKAGE without running its tests" msgstr "" -#: guix/transformations.scm:901 +#: guix/transformations.scm:908 msgid "" "\n" " --help-transform list package transformation options not shown here" msgstr "" -#: guix/transformations.scm:950 +#: guix/transformations.scm:957 #, scheme-format msgid "transformation '~a' had no effect on ~a~%" msgstr "" @@ -6079,12 +6231,12 @@ msgstr[1] "" msgid "~a: invalid Texinfo markup~%" msgstr "" -#: guix/ui.scm:1873 +#: guix/ui.scm:1876 #, scheme-format msgid "invalid syntax: ~a~%" msgstr "" -#: guix/ui.scm:1882 +#: guix/ui.scm:1885 #, scheme-format msgid "Generation ~a\t~a" msgstr "" @@ -6094,7 +6246,7 @@ msgstr "" #. usual way of presenting dates in your locale. #. See https://www.gnu.org/software/guile/manual/html_node/SRFI_002d19-Date-to-string.html #. for details. -#: guix/ui.scm:1892 +#: guix/ui.scm:1895 #, scheme-format msgid "~b ~d ~Y ~T" msgstr "" @@ -6102,74 +6254,74 @@ msgstr "" #. TRANSLATORS: The word "current" here is an adjective for #. "Generation", as in "current generation". Use the appropriate #. gender where applicable. -#: guix/ui.scm:1898 +#: guix/ui.scm:1901 #, scheme-format msgid "~a\t(current)~%" msgstr "" -#: guix/ui.scm:1932 +#: guix/ui.scm:1935 #, scheme-format msgid "cannot lock profile ~a: ~a~%" msgstr "" -#: guix/ui.scm:1934 +#: guix/ui.scm:1937 #, scheme-format msgid "profile ~a is locked by another process~%" msgstr "" -#: guix/ui.scm:1963 +#: guix/ui.scm:1966 #, scheme-format msgid "switched from generation ~a to ~a~%" msgstr "" -#: guix/ui.scm:1979 +#: guix/ui.scm:1982 #, scheme-format msgid "deleting ~a~%" msgstr "" -#: guix/ui.scm:2010 +#: guix/ui.scm:2013 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "" -#: guix/ui.scm:2102 +#: guix/ui.scm:2105 msgid "" "Usage: guix OPTION | COMMAND ARGS...\n" "Run COMMAND with ARGS, if given.\n" msgstr "" -#: guix/ui.scm:2105 +#: guix/ui.scm:2108 msgid "" "\n" " -h, --help display this helpful text again and exit" msgstr "" -#: guix/ui.scm:2107 +#: guix/ui.scm:2110 msgid "" "\n" " -V, --version display version and copyright information and exit" msgstr "" -#: guix/ui.scm:2112 +#: guix/ui.scm:2115 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "" -#: guix/ui.scm:2154 +#: guix/ui.scm:2157 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "" -#: guix/ui.scm:2156 +#: guix/ui.scm:2159 #, scheme-format msgid "Did you mean @code{~a}?" msgstr "" -#: guix/ui.scm:2190 +#: guix/ui.scm:2193 #, scheme-format msgid "guix: missing command name~%" msgstr "" -#: guix/ui.scm:2198 +#: guix/ui.scm:2201 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "" @@ -6494,22 +6646,22 @@ msgstr "" msgid "unsupported manifest format" msgstr "" -#: guix/profiles.scm:2242 +#: guix/profiles.scm:2247 #, scheme-format msgid "while creating directory `~a': ~a" msgstr "" -#: guix/profiles.scm:2247 +#: guix/profiles.scm:2252 #, scheme-format msgid "Please create the @file{~a} directory, with you as the owner." msgstr "" -#: guix/profiles.scm:2256 +#: guix/profiles.scm:2261 #, scheme-format msgid "directory `~a' is not owned by you" msgstr "" -#: guix/profiles.scm:2260 +#: guix/profiles.scm:2265 #, scheme-format msgid "Please change the owner of @file{~a} to user ~s." msgstr "" @@ -7116,11 +7268,16 @@ msgstr "" msgid "'--profile' cannot be used with package options~%" msgstr "" -#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:275 +#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:261 #, scheme-format msgid "no packages specified; creating an empty environment~%" msgstr "" +#: guix/scripts/environment.scm:979 +#, scheme-format +msgid "'--check' is unnecessary when using '--container'; doing nothing~%" +msgstr "" + #: guix/scripts/home/import.scm:179 msgid "" ";; This \"home-environment\" file can be passed to 'guix home reconfigure'\n" @@ -7130,89 +7287,89 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/home.scm:65 +#: guix/scripts/home.scm:66 msgid "" "Usage: guix home [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the home environment declared in FILE according to ACTION.\n" "Some ACTIONS support additional ARGS.\n" msgstr "" -#: guix/scripts/home.scm:71 +#: guix/scripts/home.scm:72 msgid " search search for existing service types\n" msgstr "" -#: guix/scripts/home.scm:73 +#: guix/scripts/home.scm:74 msgid " reconfigure switch to a new home environment configuration\n" msgstr "" -#: guix/scripts/home.scm:75 +#: guix/scripts/home.scm:76 msgid " roll-back switch to the previous home environment configuration\n" msgstr "" -#: guix/scripts/home.scm:77 +#: guix/scripts/home.scm:78 msgid " describe describe the current home environment\n" msgstr "" -#: guix/scripts/home.scm:79 +#: guix/scripts/home.scm:80 msgid " list-generations list the home environment generations\n" msgstr "" -#: guix/scripts/home.scm:81 +#: guix/scripts/home.scm:82 msgid " switch-generation switch to an existing home environment configuration\n" msgstr "" -#: guix/scripts/home.scm:83 +#: guix/scripts/home.scm:84 msgid " delete-generations delete old home environment generations\n" msgstr "" -#: guix/scripts/home.scm:85 +#: guix/scripts/home.scm:86 msgid " build build the home environment without installing anything\n" msgstr "" -#: guix/scripts/home.scm:87 +#: guix/scripts/home.scm:88 msgid " import generates a home environment definition from dotfiles\n" msgstr "" -#: guix/scripts/home.scm:91 +#: guix/scripts/home.scm:92 msgid "" "\n" " -e, --expression=EXPR consider the home-environment EXPR evaluates to\n" " instead of reading FILE, when applicable" msgstr "" -#: guix/scripts/home.scm:196 +#: guix/scripts/home.scm:210 #, scheme-format msgid "'~a' does not return a home environment ~%" msgstr "" -#: guix/scripts/home.scm:280 +#: guix/scripts/home.scm:293 #, scheme-format msgid "'~a' populated with all the Home configuration files~%" msgstr "" -#: guix/scripts/home.scm:282 +#: guix/scripts/home.scm:295 #, scheme-format msgid "" "Run @command{guix home reconfigure ~a/home-configuration.scm} to effectively\n" "deploy the home environment described by these files.\n" msgstr "" -#: guix/scripts/home.scm:289 +#: guix/scripts/home.scm:302 #, scheme-format msgid "no home environment generation, nothing to describe~%" msgstr "" -#: guix/scripts/home.scm:358 +#: guix/scripts/home.scm:371 #, scheme-format msgid "guix home: missing command name~%" msgstr "" -#: guix/scripts/home.scm:360 +#: guix/scripts/home.scm:373 #, scheme-format msgid "Try 'guix home --help' for more information.~%" msgstr "" -#: guix/scripts/home.scm:528 +#: guix/scripts/home.scm:541 #, scheme-format msgid "cannot switch to home environment generation '~a'~%" msgstr "" @@ -7249,7 +7406,7 @@ msgstr "" #: guix/scripts/import/cpan.scm:83 guix/scripts/import/crate.scm:97 #: guix/scripts/import/egg.scm:100 guix/scripts/import/gem.scm:98 -#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:100 +#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:101 #, scheme-format msgid "failed to download meta-data for package '~a'~%" msgstr "" @@ -7324,7 +7481,7 @@ msgid "" " --pin-versions use the exact versions of a module's dependencies" msgstr "" -#: guix/scripts/import/go.scm:117 +#: guix/scripts/import/go.scm:118 #, scheme-format msgid "failed to download meta-data for module '~a'.~%" msgstr "" @@ -7441,6 +7598,11 @@ msgid "" "Import and convert the Texlive package for PACKAGE-NAME.\n" msgstr "" +#: guix/scripts/import/texlive.scm:84 +#, scheme-format +msgid "failed to import package '~a'~%" +msgstr "" + #: guix/scripts/offload.scm:130 #, scheme-format msgid "The 'system' field is deprecated, please use 'systems' instead.~%" @@ -7877,53 +8039,53 @@ msgstr "" msgid "~a: unknown type of REPL~%" msgstr "" -#: guix/scripts/shell.scm:46 +#: guix/scripts/shell.scm:48 msgid "" "Usage: guix shell [OPTION] PACKAGES... [-- COMMAND...]\n" "Build an environment that includes PACKAGES and execute COMMAND or an\n" "interactive shell in that environment.\n" msgstr "" -#: guix/scripts/shell.scm:52 +#: guix/scripts/shell.scm:54 msgid "" "\n" " -D, --development include the development inputs of the next package" msgstr "" -#: guix/scripts/shell.scm:54 +#: guix/scripts/shell.scm:56 msgid "" "\n" " -f, --file=FILE add to the environment the package FILE evaluates to" msgstr "" -#: guix/scripts/shell.scm:56 +#: guix/scripts/shell.scm:58 msgid "" "\n" " -q inhibit loading of 'guix.scm' and 'manifest.scm'" msgstr "" -#: guix/scripts/shell.scm:58 +#: guix/scripts/shell.scm:60 msgid "" "\n" " --rebuild-cache rebuild cached environment, if any" msgstr "" -#: guix/scripts/shell.scm:199 +#: guix/scripts/shell.scm:201 #, scheme-format msgid "ignoring invalid file name: '~a'~%" msgstr "" -#: guix/scripts/shell.scm:280 +#: guix/scripts/shell.scm:266 #, scheme-format msgid "loading environment from '~a'...~%" msgstr "" -#: guix/scripts/shell.scm:286 +#: guix/scripts/shell.scm:272 #, scheme-format msgid "not loading '~a' because not authorized to do so~%" msgstr "" -#: guix/scripts/shell.scm:288 +#: guix/scripts/shell.scm:274 #, scheme-format msgid "" "To allow automatic loading of\n" @@ -7935,60 +8097,77 @@ msgid "" "@end example\n" msgstr "" -#: guix/scripts/shell.scm:386 +#: guix/scripts/shell.scm:431 msgid "" "Consider passing the @option{--check} option once\n" "to make sure your shell does not clobber environment variables." msgstr "" -#: guix/scripts/style.scm:241 +#: guix/scripts/style.scm:499 #, scheme-format msgid "~a: complex expression, bailing out~%" msgstr "" -#: guix/scripts/style.scm:259 +#: guix/scripts/style.scm:517 #, scheme-format msgid "~a: input label '~a' does not match package name, bailing out~%" msgstr "" -#: guix/scripts/style.scm:264 +#: guix/scripts/style.scm:522 #, scheme-format msgid "~a: non-trivial input, bailing out~%" msgstr "" -#: guix/scripts/style.scm:288 +#: guix/scripts/style.scm:546 #, scheme-format msgid "~a: input expression is too short~%" msgstr "" -#: guix/scripts/style.scm:380 +#: guix/scripts/style.scm:638 #, scheme-format msgid "~a: unsupported input style, bailing out~%" msgstr "" -#: guix/scripts/style.scm:392 +#: guix/scripts/style.scm:650 #, scheme-format msgid "would be edited~%" msgstr "" -#: guix/scripts/style.scm:482 +#: guix/scripts/style.scm:721 +#, scheme-format +msgid "no definition location for package ~a~%" +msgstr "" + +#: guix/scripts/style.scm:767 +#, fuzzy, scheme-format +#| msgid "~A: unknown package~%" +msgid "~a: unknown styling~%" +msgstr "~A: pacchetto sconosciuto~%" + +#: guix/scripts/style.scm:774 #, scheme-format msgid "~a: invalid input simplification policy~%" msgstr "" -#: guix/scripts/style.scm:496 +#: guix/scripts/style.scm:788 msgid "" "Usage: guix style [OPTION]... [PACKAGE]...\n" "Update package definitions to the latest style.\n" msgstr "" -#: guix/scripts/style.scm:498 +#: guix/scripts/style.scm:790 +msgid "" +"\n" +" -S, --styling=RULE apply RULE, a styling rule" +msgstr "" + +#: guix/scripts/style.scm:793 msgid "" "\n" " -n, --dry-run display files that would be edited but do nothing" msgstr "" -#: guix/scripts/style.scm:504 +#: guix/scripts/style.scm:799 msgid "" "\n" " --input-simplification=POLICY\n" @@ -8139,6 +8318,9 @@ msgstr "" msgid "produce debugging output" msgstr "" +#~ msgid "Please select a disk." +#~ msgstr "Seleziona un disco per favore." + #, fuzzy #~| msgid "Network service" #~ msgid "Other services" diff --git a/po/guix/ko.po b/po/guix/ko.po index 04df0775ea..321d783afa 100644 --- a/po/guix/ko.po +++ b/po/guix/ko.po @@ -2,14 +2,14 @@ # Copyright (C) 2021 the authors of Guix (msgids) and the following authors (msgstr) # This file is distributed under the same license as the GNU guix package. # la snesne , 2021. -# simmon , 2021. +# simmon , 2021, 2022. #: guix/diagnostics.scm:157 msgid "" msgstr "" "Project-Id-Version: GNU guix\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" -"PO-Revision-Date: 2021-11-21 02:16+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" +"PO-Revision-Date: 2022-02-01 06:16+0000\n" "Last-Translator: simmon \n" "Language-Team: Korean \n" "Language: ko\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.9\n" +"X-Generator: Weblate 4.10.1\n" #: gnu.scm:81 #, scheme-format @@ -55,37 +55,37 @@ msgstr "" msgid "Try adding @code{(use-service-modules ~a)}." msgstr "@code{(use-service-modules ~a)}를 추가해 주세요." -#: gnu/packages.scm:96 +#: gnu/packages.scm:97 #, scheme-format msgid "~a: patch not found" msgstr "~a: 패치를 찾지 못함" -#: gnu/packages.scm:480 gnu/packages.scm:521 +#: gnu/packages.scm:481 gnu/packages.scm:522 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "모호한 꾸러미(package) 사양 `~a'~%" -#: gnu/packages.scm:481 gnu/packages.scm:522 +#: gnu/packages.scm:482 gnu/packages.scm:523 #, scheme-format msgid "choosing ~a@~a from ~a~%" msgstr "선택하기 ~a@~a from ~a~%" -#: gnu/packages.scm:486 guix/scripts/package.scm:216 +#: gnu/packages.scm:487 guix/scripts/package.scm:218 #, scheme-format msgid "package '~a' has been superseded by '~a'~%" msgstr "꾸러미(package) '~a'는'~a'~%에 의해 대체되었습니다" -#: gnu/packages.scm:493 gnu/packages.scm:510 +#: gnu/packages.scm:494 gnu/packages.scm:511 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A: 버전 ~a~%에 대한 꾸러미를 찾지 못함" -#: gnu/packages.scm:494 gnu/packages.scm:511 +#: gnu/packages.scm:495 gnu/packages.scm:512 #, scheme-format msgid "~A: unknown package~%" msgstr "~A: 알려지지 않은 꾸러미(package)~%" -#: gnu/packages.scm:550 +#: gnu/packages.scm:551 #, scheme-format msgid "package `~a' lacks output `~a'~%" msgstr "꾸러미(package) `~a'에는 출력 `~a'~%가 없습니다" @@ -273,14 +273,14 @@ msgid "" "@code{SIGKILL}." msgstr "" -#: gnu/home/services.scm:127 +#: gnu/home/services.scm:128 msgid "" "Build the home environment top-level directory,\n" "which in turn refers to everything the home environment needs: its\n" "packages, configuration files, activation script, and so on." msgstr "" -#: gnu/home/services.scm:158 +#: gnu/home/services.scm:159 #, scheme-format msgid "" "This is the @dfn{home profile} and can be found in\n" @@ -289,21 +289,21 @@ msgid "" "@code{home-environment} record." msgstr "" -#: gnu/home/services.scm:180 +#: gnu/home/services.scm:181 #, scheme-format msgid "duplicate definition for `~a' environment variable ~%" msgstr "" -#: gnu/home/services.scm:242 +#: gnu/home/services.scm:243 msgid "Set the environment variables." msgstr "" -#: gnu/home/services.scm:253 +#: gnu/home/services.scm:254 #, scheme-format msgid "duplicate '~a' entry for files/" msgstr "" -#: gnu/home/services.scm:277 +#: gnu/home/services.scm:278 #, scheme-format msgid "" "Configuration files for programs that\n" @@ -312,7 +312,7 @@ msgstr "" #. TRANSLATORS: 'on-first-login' is the name of a service and #. shouldn't be translated -#: gnu/home/services.scm:308 +#: gnu/home/services.scm:309 msgid "" "XDG_RUNTIME_DIR doesn't exists, on-first-login script\n" "won't execute anything. You can check if xdg runtime directory exists,\n" @@ -320,13 +320,13 @@ msgid "" "script by running '$HOME/.guix-home/on-first-login'" msgstr "" -#: gnu/home/services.scm:328 +#: gnu/home/services.scm:329 msgid "" "Run gexps on first user login. Can be\n" "extended with one gexp." msgstr "" -#: gnu/home/services.scm:391 +#: gnu/home/services.scm:392 msgid "" "Run gexps to activate the current\n" "generation of home environment and update the state of the home\n" @@ -335,33 +335,33 @@ msgid "" "with one gexp, but many times, and all gexps must be idempotent." msgstr "" -#: gnu/home/services.scm:472 +#: gnu/home/services.scm:473 #, scheme-format msgid "" "Comparing ~a and\n" "~10t~a..." msgstr "" -#: gnu/home/services.scm:474 +#: gnu/home/services.scm:475 #, scheme-format msgid " done (~a)\n" msgstr "" #. TRANSLATORS: 'on-change' is the name of a service type, it #. probably shouldn't be translated. -#: gnu/home/services.scm:483 +#: gnu/home/services.scm:484 msgid "" "Evaluating on-change gexps.\n" "\n" msgstr "" -#: gnu/home/services.scm:485 +#: gnu/home/services.scm:486 msgid "" "On-change gexps evaluation finished.\n" "\n" msgstr "" -#: gnu/home/services.scm:499 +#: gnu/home/services.scm:500 msgid "" "G-expressions to run if the specified files have changed since the\n" "last generation. The extension should be a list of lists where the\n" @@ -369,7 +369,7 @@ msgid "" "changed, and the second element is the G-expression to be evaluated." msgstr "" -#: gnu/home/services.scm:519 +#: gnu/home/services.scm:520 msgid "" "Store provenance information about the home environment in the home\n" "environment itself: the channels used when building the home\n" @@ -387,7 +387,7 @@ msgstr "" #: gnu/home/services/symlink-manager.scm:215 #: gnu/home/services/symlink-manager.scm:223 msgid " done\n" -msgstr "" +msgstr " 완료\n" #: gnu/home/services/symlink-manager.scm:154 msgid "" @@ -623,12 +623,12 @@ msgstr "" msgid "Updater for ELPA packages" msgstr "ELPA 꾸러미를 위한 업데이터" -#: guix/import/github.scm:170 +#: guix/import/github.scm:175 #, scheme-format msgid "~a is unreachable (~a)~%" msgstr "" -#: guix/import/github.scm:260 +#: guix/import/github.scm:274 msgid "Updater for GitHub packages" msgstr "깃허브(GitHub) 꾸러미를 위한 업데이터" @@ -664,24 +664,27 @@ msgstr "~a를 위한 GNU 꾸러미를 찾지 못함" msgid "failed to determine latest release of GNU ~a" msgstr "" -#: guix/import/go.scm:569 +#: guix/import/go.scm:571 #, scheme-format msgid "unsupported vcs type '~a' for package '~a'" msgstr "" -#: guix/import/go.scm:647 +#: guix/import/go.scm:594 #, scheme-format -msgid "" -"Failed to import package ~s.\n" -"reason: ~s could not be fetched: HTTP error ~a (~s).\n" -"This package and its dependencies won't be imported.~%" +msgid "version ~a of ~a is not available~%" +msgstr "" + +#: guix/import/go.scm:597 +#, scheme-format +msgid "Pick one of the following available versions:~{ ~a~}." msgstr "" -#: guix/import/go.scm:656 +#: guix/import/go.scm:671 #, scheme-format msgid "" "Failed to import package ~s.\n" -"reason: ~s.~%" +"reason: ~s could not be fetched: HTTP error ~a (~s).\n" +"This package and its dependencies won't be imported.~%" msgstr "" #: guix/import/minetest.scm:178 @@ -779,77 +782,99 @@ msgstr "opam: 꾸러미 ~a는 ~%를 찾을 수 없음" msgid "Updater for OPAM packages" msgstr "OPAM 꾸러미를 위한 업데이터" -#: guix/import/pypi.scm:230 +#: guix/import/pypi.scm:233 msgid "Could not extract requirement name in spec:" msgstr "" -#: guix/import/pypi.scm:290 +#: guix/import/pypi.scm:293 #, scheme-format msgid "parse-requires.txt reached an unexpected condition on line ~a~%" msgstr "" -#: guix/import/pypi.scm:356 +#: guix/import/pypi.scm:359 #, scheme-format msgid "Failed to extract file: ~a from wheel.~%" msgstr "" -#: guix/import/pypi.scm:385 +#: guix/import/pypi.scm:388 #, scheme-format msgid "Cannot guess requirements from source archive: no requires.txt file found.~%" msgstr "" -#: guix/import/pypi.scm:390 +#: guix/import/pypi.scm:393 #, scheme-format msgid "Unsupported archive format; cannot determine package dependencies from source archive: ~a~%" msgstr "" -#: guix/import/pypi.scm:489 +#: guix/import/pypi.scm:434 +#, scheme-format +msgid "project name ~a does not appear verbatim in the PyPI URI~%" +msgstr "" + +#: guix/import/pypi.scm:437 +#, scheme-format +msgid "" +"The PyPI URI is: @url{~a}. You should review the\n" +"pypi-uri declaration in the generated package. You may need to replace ~s with\n" +"a substring of the PyPI URI that identifies the package." +msgstr "" + +#: guix/import/pypi.scm:505 #, scheme-format msgid "no source release for pypi package ~a ~a~%" msgstr "" -#: guix/import/pypi.scm:554 +#: guix/import/pypi.scm:509 +#, scheme-format +msgid "" +"This indicates that the\n" +"package is available on PyPI, but only as a \"wheel\" containing binaries, not\n" +"source. To build it from source, refer to the upstream repository at\n" +"@uref{~a}." +msgstr "" + +#: guix/import/pypi.scm:579 msgid "Updater for PyPI packages" msgstr "PyPI 꾸러미를 위한 업데이터" -#: gnu/installer.scm:214 +#: gnu/installer.scm:217 msgid "Locale" msgstr "지역" -#: gnu/installer.scm:230 gnu/installer/newt/timezone.scm:58 +#: gnu/installer.scm:233 gnu/installer/newt/timezone.scm:58 msgid "Timezone" msgstr "시간대" -#: gnu/installer.scm:247 +#: gnu/installer.scm:250 msgid "Keyboard mapping selection" msgstr "키보드 맵핑 선택" -#: gnu/installer.scm:256 gnu/installer/newt/hostname.scm:26 +#: gnu/installer.scm:259 gnu/installer/newt/hostname.scm:26 msgid "Hostname" msgstr "호스트 이름" -#: gnu/installer.scm:265 +#: gnu/installer.scm:268 msgid "Network selection" msgstr "네트워크 선택" -#: gnu/installer.scm:272 +#: gnu/installer.scm:275 msgid "Substitute server discovery" msgstr "대체 서버 검색" -#: gnu/installer.scm:279 gnu/installer/newt/user.scm:68 -#: gnu/installer/newt/user.scm:205 +#: gnu/installer.scm:282 gnu/installer/newt/user.scm:67 +#: gnu/installer/newt/user.scm:204 msgid "User creation" msgstr "사용자 생성" -#: gnu/installer.scm:287 +#: gnu/installer.scm:290 msgid "Services" msgstr "서비스" -#: gnu/installer.scm:298 +#: gnu/installer.scm:301 msgid "Partitioning" msgstr "구획설정" -#: gnu/installer.scm:305 gnu/installer/newt/final.scm:53 +#: gnu/installer.scm:308 gnu/installer/newt/final.scm:53 msgid "Configuration file" msgstr "설정 파일" @@ -861,19 +886,78 @@ msgstr "" msgid "Unable to find expected regexp." msgstr "" -#: gnu/installer/newt.scm:52 +#: gnu/installer/newt.scm:58 msgid "Press for installation parameters." msgstr "" -#: gnu/installer/newt.scm:65 -#, scheme-format -msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +#: gnu/installer/newt.scm:68 +msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. You may choose to exit or create a dump archive." msgstr "" -#: gnu/installer/newt.scm:68 +#: gnu/installer/newt.scm:71 msgid "Unexpected problem" msgstr "예상치 못한 문제" +#: gnu/installer/newt.scm:75 +msgid "Dump" +msgstr "" + +#: gnu/installer/newt.scm:76 gnu/installer/newt/ethernet.scm:79 +#: gnu/installer/newt/keymap.scm:56 gnu/installer/newt/locale.scm:43 +#: gnu/installer/newt/network.scm:65 gnu/installer/newt/network.scm:82 +#: gnu/installer/newt/page.scm:315 gnu/installer/newt/page.scm:679 +#: gnu/installer/newt/page.scm:763 gnu/installer/newt/page.scm:828 +#: gnu/installer/newt/partition.scm:54 gnu/installer/newt/partition.scm:90 +#: gnu/installer/newt/partition.scm:125 gnu/installer/newt/partition.scm:140 +#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 +#: gnu/installer/newt/partition.scm:706 gnu/installer/newt/partition.scm:764 +#: gnu/installer/newt/partition.scm:775 gnu/installer/newt/services.scm:124 +#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/wifi.scm:206 +msgid "Exit" +msgstr "종료" + +#: gnu/installer/newt.scm:82 +#, scheme-format +msgid "The dump archive was created as ~a. Would you like to send this archive to the Guix servers?" +msgstr "" + +#: gnu/installer/newt.scm:84 +msgid "Dump archive created" +msgstr "" + +#: gnu/installer/newt.scm:88 +#, scheme-format +msgid "The dump was uploaded as ~a. Please report it by email to ~a." +msgstr "" + +#: gnu/installer/newt.scm:90 +msgid "The dump could not be uploaded." +msgstr "" + +#: gnu/installer/newt.scm:93 +msgid "Dump upload result" +msgstr "" + +#: gnu/installer/newt.scm:132 +#, scheme-format +msgid "External command ~s exited with code ~a" +msgstr "" + +#: gnu/installer/newt.scm:135 +#, scheme-format +msgid "External command ~s terminated by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:138 +#, scheme-format +msgid "External command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:140 +msgid "External command error" +msgstr "" + #: gnu/installer/newt/ethernet.scm:66 msgid "No ethernet service available, please try again." msgstr "" @@ -882,59 +966,45 @@ msgstr "" msgid "No service" msgstr "" -#: gnu/installer/newt/ethernet.scm:76 +#: gnu/installer/newt/ethernet.scm:74 msgid "Please select an ethernet network." msgstr "" -#: gnu/installer/newt/ethernet.scm:77 +#: gnu/installer/newt/ethernet.scm:75 msgid "Ethernet connection" msgstr "" -#: gnu/installer/newt/ethernet.scm:81 gnu/installer/newt/keymap.scm:56 -#: gnu/installer/newt/locale.scm:43 gnu/installer/newt/network.scm:63 -#: gnu/installer/newt/network.scm:84 gnu/installer/newt/page.scm:309 -#: gnu/installer/newt/page.scm:673 gnu/installer/newt/page.scm:758 -#: gnu/installer/newt/partition.scm:56 gnu/installer/newt/partition.scm:91 -#: gnu/installer/newt/partition.scm:126 gnu/installer/newt/partition.scm:141 -#: gnu/installer/newt/partition.scm:638 gnu/installer/newt/partition.scm:661 -#: gnu/installer/newt/partition.scm:707 gnu/installer/newt/partition.scm:765 -#: gnu/installer/newt/partition.scm:776 gnu/installer/newt/services.scm:130 -#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:204 -#: gnu/installer/newt/wifi.scm:206 -msgid "Exit" -msgstr "종료" - #: gnu/installer/newt/final.scm:46 #, scheme-format msgid "We're now ready to proceed with the installation! A system configuration file has been generated, it is displayed below. This file will be available as '~a' on the installed system. The new system will be created from this file once you've pressed OK. This will take a few minutes." msgstr "" -#: gnu/installer/newt/final.scm:70 +#: gnu/installer/newt/final.scm:68 msgid "Installation complete" msgstr "설치 완료" -#: gnu/installer/newt/final.scm:71 gnu/installer/newt/parameters.scm:45 +#: gnu/installer/newt/final.scm:69 gnu/installer/newt/parameters.scm:45 #: gnu/installer/newt/welcome.scm:145 msgid "Reboot" msgstr "다시 시작" -#: gnu/installer/newt/final.scm:72 +#: gnu/installer/newt/final.scm:70 msgid "Congratulations! Installation is now complete. You may remove the device containing the installation image and press the button to reboot." msgstr "" -#: gnu/installer/newt/final.scm:86 +#: gnu/installer/newt/final.scm:84 msgid "Installation failed" msgstr "설치에 실패했습니다" -#: gnu/installer/newt/final.scm:87 +#: gnu/installer/newt/final.scm:85 msgid "Resume" msgstr "다시 시작" -#: gnu/installer/newt/final.scm:88 +#: gnu/installer/newt/final.scm:86 msgid "Restart the installer" msgstr "" -#: gnu/installer/newt/final.scm:89 +#: gnu/installer/newt/final.scm:87 msgid "The final system installation step failed. You can resume from a specific step, or restart the installer." msgstr "" @@ -962,9 +1032,9 @@ msgstr "" msgid "Installation parameters" msgstr "" -#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:74 -#: gnu/installer/newt/locale.scm:63 gnu/installer/newt/locale.scm:78 -#: gnu/installer/newt/locale.scm:94 gnu/installer/newt/partition.scm:595 +#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:72 +#: gnu/installer/newt/locale.scm:61 gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:88 gnu/installer/newt/partition.scm:594 #: gnu/installer/newt/timezone.scm:64 msgid "Back" msgstr "돌아가기" @@ -985,16 +1055,16 @@ msgstr "" msgid "Please choose your keyboard layout. It will be used during the install process, and for the installed system. Non-Latin layouts can be toggled with Alt+Shift. You can switch to a different layout at any time from the parameters menu." msgstr "" -#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:62 -#: gnu/installer/newt/page.scm:308 +#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/page.scm:314 msgid "Continue" msgstr "진행" -#: gnu/installer/newt/keymap.scm:67 +#: gnu/installer/newt/keymap.scm:65 msgid "Variant" msgstr "" -#: gnu/installer/newt/keymap.scm:70 +#: gnu/installer/newt/keymap.scm:68 msgid "Please choose a variant for your keyboard layout." msgstr "" @@ -1006,35 +1076,35 @@ msgstr "지역(로케일) 언어" msgid "Choose the language to use for the installation process and for the installed system." msgstr "" -#: gnu/installer/newt/locale.scm:57 +#: gnu/installer/newt/locale.scm:55 msgid "Locale location" msgstr "" -#: gnu/installer/newt/locale.scm:60 +#: gnu/installer/newt/locale.scm:58 msgid "Choose a territory for this language." msgstr "" -#: gnu/installer/newt/locale.scm:71 +#: gnu/installer/newt/locale.scm:67 msgid "Locale codeset" msgstr "" -#: gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:70 msgid "Choose the locale encoding." msgstr "" -#: gnu/installer/newt/locale.scm:86 +#: gnu/installer/newt/locale.scm:80 msgid "Locale modifier" msgstr "" -#: gnu/installer/newt/locale.scm:89 +#: gnu/installer/newt/locale.scm:83 msgid "Choose your locale's modifier. The most frequent modifier is euro. It indicates that you want to use Euro as the currency symbol." msgstr "" -#: gnu/installer/newt/locale.scm:190 +#: gnu/installer/newt/locale.scm:181 msgid "No location" msgstr "" -#: gnu/installer/newt/locale.scm:217 +#: gnu/installer/newt/locale.scm:208 msgid "No modifier" msgstr "" @@ -1050,330 +1120,334 @@ msgstr "" msgid "Abort" msgstr "" -#: gnu/installer/newt/network.scm:61 gnu/installer/newt/network.scm:80 +#: gnu/installer/newt/network.scm:63 gnu/installer/newt/network.scm:78 msgid "Internet access" msgstr "" -#: gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/network.scm:66 msgid "The install process requires Internet access but no network devices were found. Do you want to continue anyway?" msgstr "" -#: gnu/installer/newt/network.scm:78 +#: gnu/installer/newt/network.scm:76 msgid "The install process requires Internet access. Please select a network device." msgstr "" -#: gnu/installer/newt/network.scm:103 +#: gnu/installer/newt/network.scm:99 msgid "Powering technology" msgstr "" -#: gnu/installer/newt/network.scm:104 +#: gnu/installer/newt/network.scm:100 #, scheme-format msgid "Waiting for technology ~a to be powered." msgstr "" -#: gnu/installer/newt/network.scm:128 +#: gnu/installer/newt/network.scm:139 msgid "Checking connectivity" msgstr "" -#: gnu/installer/newt/network.scm:129 +#: gnu/installer/newt/network.scm:140 msgid "Waiting for Internet access establishment..." msgstr "" -#: gnu/installer/newt/network.scm:139 -msgid "The selected network does not provide access to the Internet, please try again." +#: gnu/installer/newt/network.scm:150 +msgid "The selected network does not provide access to the Internet and the Guix substitute server, please try again." msgstr "" -#: gnu/installer/newt/network.scm:141 gnu/installer/newt/wifi.scm:108 +#: gnu/installer/newt/network.scm:152 gnu/installer/newt/wifi.scm:108 msgid "Connection error" msgstr "연결 오류" -#: gnu/installer/newt/page.scm:198 +#: gnu/installer/newt/page.scm:204 #, scheme-format msgid "Connecting to ~a, please wait." msgstr "" -#: gnu/installer/newt/page.scm:199 +#: gnu/installer/newt/page.scm:205 msgid "Connection in progress" msgstr "연결 진행 중" -#: gnu/installer/newt/page.scm:218 gnu/installer/newt/user.scm:60 +#: gnu/installer/newt/page.scm:224 gnu/installer/newt/user.scm:59 msgid "Show" msgstr "보기" -#: gnu/installer/newt/page.scm:225 gnu/installer/newt/page.scm:672 -#: gnu/installer/newt/page.scm:757 gnu/installer/newt/partition.scm:458 -#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 -#: gnu/installer/newt/partition.scm:699 gnu/installer/newt/user.scm:66 -#: gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/page.scm:231 gnu/installer/newt/page.scm:678 +#: gnu/installer/newt/page.scm:762 gnu/installer/newt/partition.scm:457 +#: gnu/installer/newt/partition.scm:636 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:698 gnu/installer/newt/user.scm:65 +#: gnu/installer/newt/user.scm:202 msgid "OK" msgstr "확인" -#: gnu/installer/newt/page.scm:251 +#: gnu/installer/newt/page.scm:257 msgid "Please enter a non empty input." msgstr "" -#: gnu/installer/newt/page.scm:252 gnu/installer/newt/user.scm:123 +#: gnu/installer/newt/page.scm:258 gnu/installer/newt/user.scm:122 msgid "Empty input" msgstr "공백 입력" -#: gnu/installer/newt/page.scm:760 +#: gnu/installer/newt/page.scm:765 msgid "Edit" msgstr "편집" -#: gnu/installer/newt/partition.scm:47 +#: gnu/installer/newt/page.scm:825 +msgid "Ok" +msgstr "" + +#: gnu/installer/newt/partition.scm:45 msgid "Everything is one partition" msgstr "" -#: gnu/installer/newt/partition.scm:48 +#: gnu/installer/newt/partition.scm:46 msgid "Separate /home partition" msgstr "" -#: gnu/installer/newt/partition.scm:50 +#: gnu/installer/newt/partition.scm:48 msgid "Please select a partitioning scheme." msgstr "" -#: gnu/installer/newt/partition.scm:51 +#: gnu/installer/newt/partition.scm:49 msgid "Partition scheme" msgstr "파티션 계획" #. TRANSLATORS: The ~{ and ~} format specifiers are used to iterate the list #. of device names of the user partitions that will be formatted. -#: gnu/installer/newt/partition.scm:65 +#: gnu/installer/newt/partition.scm:63 #, scheme-format msgid "We are about to write the configured partition table to the disk and format the partitions listed below. Their data will be lost. Do you wish to continue?~%~%~{ - ~a~%~}" msgstr "" -#: gnu/installer/newt/partition.scm:71 +#: gnu/installer/newt/partition.scm:69 msgid "Format disk?" msgstr "" -#: gnu/installer/newt/partition.scm:74 +#: gnu/installer/newt/partition.scm:72 msgid "Partition formatting is in progress, please wait." msgstr "" -#: gnu/installer/newt/partition.scm:75 +#: gnu/installer/newt/partition.scm:73 msgid "Preparing partitions" msgstr "" -#: gnu/installer/newt/partition.scm:86 -msgid "Please select a disk." -msgstr "디스크를 선택해주세요." +#: gnu/installer/newt/partition.scm:84 +msgid "Please select a disk. The installation device as well as the small devices are filtered." +msgstr "" -#: gnu/installer/newt/partition.scm:87 +#: gnu/installer/newt/partition.scm:86 msgid "Disk" msgstr "디스크" -#: gnu/installer/newt/partition.scm:102 +#: gnu/installer/newt/partition.scm:101 msgid "Select a new partition table type. Be careful, all data on the disk will be lost." msgstr "" -#: gnu/installer/newt/partition.scm:104 +#: gnu/installer/newt/partition.scm:103 msgid "Partition table" msgstr "구획설정 테이블" -#: gnu/installer/newt/partition.scm:121 +#: gnu/installer/newt/partition.scm:120 msgid "Please select a partition type." msgstr "" -#: gnu/installer/newt/partition.scm:122 +#: gnu/installer/newt/partition.scm:121 msgid "Partition type" msgstr "파티션 유형" -#: gnu/installer/newt/partition.scm:132 +#: gnu/installer/newt/partition.scm:131 msgid "Please select the file-system type for this partition." msgstr "" -#: gnu/installer/newt/partition.scm:133 +#: gnu/installer/newt/partition.scm:132 msgid "File-system type" msgstr "파일 시스템 유형" -#: gnu/installer/newt/partition.scm:150 +#: gnu/installer/newt/partition.scm:149 msgid "Primary partitions count exceeded." msgstr "" -#: gnu/installer/newt/partition.scm:151 gnu/installer/newt/partition.scm:156 -#: gnu/installer/newt/partition.scm:161 +#: gnu/installer/newt/partition.scm:150 gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:160 msgid "Creation error" msgstr "생성 오류" -#: gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:154 msgid "Extended partition creation error." msgstr "확장 파티션 생성 오류." -#: gnu/installer/newt/partition.scm:160 +#: gnu/installer/newt/partition.scm:159 msgid "Logical partition creation error." msgstr "논리 파티션 생성 오류." -#: gnu/installer/newt/partition.scm:174 +#: gnu/installer/newt/partition.scm:173 #, scheme-format msgid "Please enter the password for the encryption of partition ~a (label: ~a)." msgstr "" -#: gnu/installer/newt/partition.scm:176 gnu/installer/newt/wifi.scm:92 +#: gnu/installer/newt/partition.scm:175 gnu/installer/newt/wifi.scm:92 msgid "Password required" msgstr "비밀번호가 필요합니다" -#: gnu/installer/newt/partition.scm:181 +#: gnu/installer/newt/partition.scm:180 #, scheme-format msgid "Please confirm the password for the encryption of partition ~a (label: ~a)." msgstr "" -#: gnu/installer/newt/partition.scm:183 gnu/installer/newt/user.scm:160 +#: gnu/installer/newt/partition.scm:182 gnu/installer/newt/user.scm:159 msgid "Password confirmation required" msgstr "" -#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 +#: gnu/installer/newt/partition.scm:194 gnu/installer/newt/user.scm:167 msgid "Password mismatch, please try again." msgstr "" -#: gnu/installer/newt/partition.scm:196 gnu/installer/newt/user.scm:169 +#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 msgid "Password error" msgstr "비밀번호 오류" -#: gnu/installer/newt/partition.scm:282 +#: gnu/installer/newt/partition.scm:281 msgid "Please enter the partition gpt name." msgstr "" -#: gnu/installer/newt/partition.scm:283 +#: gnu/installer/newt/partition.scm:282 msgid "Partition name" msgstr "" -#: gnu/installer/newt/partition.scm:313 +#: gnu/installer/newt/partition.scm:312 msgid "Please enter the encrypted label" msgstr "" -#: gnu/installer/newt/partition.scm:314 +#: gnu/installer/newt/partition.scm:313 msgid "Encryption label" msgstr "" -#: gnu/installer/newt/partition.scm:331 +#: gnu/installer/newt/partition.scm:330 #, scheme-format msgid "Please enter the size of the partition. The maximum size is ~a." msgstr "" -#: gnu/installer/newt/partition.scm:333 +#: gnu/installer/newt/partition.scm:332 msgid "Partition size" msgstr "" -#: gnu/installer/newt/partition.scm:351 +#: gnu/installer/newt/partition.scm:350 msgid "The percentage can not be superior to 100." msgstr "" -#: gnu/installer/newt/partition.scm:352 gnu/installer/newt/partition.scm:357 -#: gnu/installer/newt/partition.scm:362 +#: gnu/installer/newt/partition.scm:351 gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:361 msgid "Size error" msgstr "" -#: gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:355 msgid "The requested size is incorrectly formatted, or too large." msgstr "" -#: gnu/installer/newt/partition.scm:361 +#: gnu/installer/newt/partition.scm:360 msgid "The request size is superior to the maximum size." msgstr "" -#: gnu/installer/newt/partition.scm:381 +#: gnu/installer/newt/partition.scm:380 msgid "Please enter the desired mounting point for this partition. Leave this field empty if you don't want to set a mounting point." msgstr "" -#: gnu/installer/newt/partition.scm:383 +#: gnu/installer/newt/partition.scm:382 msgid "Mounting point" msgstr "" -#: gnu/installer/newt/partition.scm:447 +#: gnu/installer/newt/partition.scm:446 #, scheme-format msgid "Creating ~a partition starting at ~a of ~a." msgstr "" -#: gnu/installer/newt/partition.scm:449 +#: gnu/installer/newt/partition.scm:448 #, scheme-format msgid "You are currently editing partition ~a." msgstr "" -#: gnu/installer/newt/partition.scm:452 +#: gnu/installer/newt/partition.scm:451 msgid "Partition creation" msgstr "" -#: gnu/installer/newt/partition.scm:453 +#: gnu/installer/newt/partition.scm:452 msgid "Partition edit" msgstr "파티션 편집" -#: gnu/installer/newt/partition.scm:634 +#: gnu/installer/newt/partition.scm:633 #, scheme-format msgid "Are you sure you want to delete everything on disk ~a?" msgstr "" -#: gnu/installer/newt/partition.scm:636 +#: gnu/installer/newt/partition.scm:635 msgid "Delete disk" msgstr "디스크 삭제" -#: gnu/installer/newt/partition.scm:651 +#: gnu/installer/newt/partition.scm:650 msgid "You cannot delete a free space area." msgstr "빈 공간 영역은 지울 수 없습니다." -#: gnu/installer/newt/partition.scm:652 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:651 gnu/installer/newt/partition.scm:658 msgid "Delete partition" msgstr "파티션 삭제" -#: gnu/installer/newt/partition.scm:657 +#: gnu/installer/newt/partition.scm:656 #, scheme-format msgid "Are you sure you want to delete partition ~a?" msgstr "" -#: gnu/installer/newt/partition.scm:674 +#: gnu/installer/newt/partition.scm:673 msgid "" "You can change a disk's partition table by selecting it and pressing ENTER. You can also edit a partition by selecting it and pressing ENTER, or remove it by pressing DELETE. To create a new partition, select a free space area and press ENTER.\n" "\n" "At least one partition must have its mounting point set to '/'." msgstr "" -#: gnu/installer/newt/partition.scm:680 +#: gnu/installer/newt/partition.scm:679 #, scheme-format msgid "This is the proposed partitioning. It is still possible to edit it or to go back to install menu by pressing the Exit button.~%~%" msgstr "" -#: gnu/installer/newt/partition.scm:690 +#: gnu/installer/newt/partition.scm:689 msgid "Guided partitioning" msgstr "" -#: gnu/installer/newt/partition.scm:691 +#: gnu/installer/newt/partition.scm:690 msgid "Manual partitioning" msgstr "" -#: gnu/installer/newt/partition.scm:716 +#: gnu/installer/newt/partition.scm:715 msgid "No root mount point found." msgstr "" -#: gnu/installer/newt/partition.scm:717 +#: gnu/installer/newt/partition.scm:716 msgid "Missing mount point" msgstr "" -#: gnu/installer/newt/partition.scm:721 +#: gnu/installer/newt/partition.scm:720 #, scheme-format msgid "Cannot read the ~a partition UUID. You may need to format it." msgstr "" -#: gnu/installer/newt/partition.scm:724 +#: gnu/installer/newt/partition.scm:723 msgid "Wrong partition format" msgstr "" -#: gnu/installer/newt/partition.scm:755 +#: gnu/installer/newt/partition.scm:754 msgid "Guided - using the entire disk" msgstr "" -#: gnu/installer/newt/partition.scm:756 +#: gnu/installer/newt/partition.scm:755 msgid "Guided - using the entire disk with encryption" msgstr "" -#: gnu/installer/newt/partition.scm:757 +#: gnu/installer/newt/partition.scm:756 msgid "Manual" msgstr "수동" -#: gnu/installer/newt/partition.scm:759 +#: gnu/installer/newt/partition.scm:758 msgid "Please select a partitioning method." msgstr "" -#: gnu/installer/newt/partition.scm:760 +#: gnu/installer/newt/partition.scm:759 msgid "Partitioning method" msgstr "" @@ -1385,37 +1459,37 @@ msgstr "" msgid "Desktop environment" msgstr "데스크탑 환경" -#: gnu/installer/newt/services.scm:59 +#: gnu/installer/newt/services.scm:57 msgid "You can now select networking services to run on your system." msgstr "" -#: gnu/installer/newt/services.scm:61 +#: gnu/installer/newt/services.scm:59 msgid "Network service" msgstr "" -#: gnu/installer/newt/services.scm:79 +#: gnu/installer/newt/services.scm:75 msgid "You can now select the CUPS printing service to run on your system." msgstr "" -#: gnu/installer/newt/services.scm:81 +#: gnu/installer/newt/services.scm:77 msgid "Printing and document services" msgstr "" -#: gnu/installer/newt/services.scm:100 +#: gnu/installer/newt/services.scm:94 #, fuzzy #| msgid "Other services" msgid "Console services" msgstr "기타 서비스" -#: gnu/installer/newt/services.scm:101 +#: gnu/installer/newt/services.scm:95 msgid "Select miscellaneous services to run on your non-graphical system." msgstr "" -#: gnu/installer/newt/services.scm:115 +#: gnu/installer/newt/services.scm:109 msgid "Network management" msgstr "네트워크 관리" -#: gnu/installer/newt/services.scm:118 +#: gnu/installer/newt/services.scm:112 msgid "" "Choose the method to manage network connections.\n" "\n" @@ -1445,57 +1519,57 @@ msgstr "" msgid "Please select a timezone." msgstr "" -#: gnu/installer/newt/user.scm:45 +#: gnu/installer/newt/user.scm:44 msgid "Name" msgstr "이름" -#: gnu/installer/newt/user.scm:47 +#: gnu/installer/newt/user.scm:46 msgid "Real name" msgstr "" -#: gnu/installer/newt/user.scm:49 +#: gnu/installer/newt/user.scm:48 msgid "Home directory" msgstr "홈 디렉토리" -#: gnu/installer/newt/user.scm:51 +#: gnu/installer/newt/user.scm:50 msgid "Password" msgstr "비밀번호" -#: gnu/installer/newt/user.scm:122 +#: gnu/installer/newt/user.scm:121 msgid "Empty inputs are not allowed." msgstr "" -#: gnu/installer/newt/user.scm:159 +#: gnu/installer/newt/user.scm:158 msgid "Please confirm the password." msgstr "" #. TRANSLATORS: Leave "root" untranslated: it refers to the name of the #. system administrator account. -#: gnu/installer/newt/user.scm:176 +#: gnu/installer/newt/user.scm:175 msgid "Please choose a password for the system administrator (\"root\")." msgstr "" -#: gnu/installer/newt/user.scm:178 +#: gnu/installer/newt/user.scm:177 msgid "System administrator password" msgstr "" -#: gnu/installer/newt/user.scm:191 +#: gnu/installer/newt/user.scm:190 msgid "Please add at least one user to system using the 'Add' button." msgstr "" -#: gnu/installer/newt/user.scm:194 +#: gnu/installer/newt/user.scm:193 msgid "Add" msgstr "추가" -#: gnu/installer/newt/user.scm:195 +#: gnu/installer/newt/user.scm:194 msgid "Delete" msgstr "삭제" -#: gnu/installer/newt/user.scm:255 +#: gnu/installer/newt/user.scm:254 msgid "Please create at least one user." msgstr "" -#: gnu/installer/newt/user.scm:256 +#: gnu/installer/newt/user.scm:255 msgid "No user" msgstr "" @@ -1566,60 +1640,60 @@ msgstr "" msgid "Wifi" msgstr "" -#: gnu/installer/parted.scm:433 gnu/installer/parted.scm:470 +#: gnu/installer/parted.scm:455 gnu/installer/parted.scm:492 msgid "Free space" msgstr "여유공간" -#: gnu/installer/parted.scm:559 +#: gnu/installer/parted.scm:581 #, scheme-format msgid "Name: ~a" msgstr "" -#: gnu/installer/parted.scm:560 gnu/installer/parted.scm:606 +#: gnu/installer/parted.scm:582 gnu/installer/parted.scm:628 msgid "None" msgstr "없음" -#: gnu/installer/parted.scm:565 +#: gnu/installer/parted.scm:587 #, scheme-format msgid "Type: ~a" msgstr "" -#: gnu/installer/parted.scm:569 +#: gnu/installer/parted.scm:591 #, scheme-format msgid "File system type: ~a" msgstr "" -#: gnu/installer/parted.scm:575 +#: gnu/installer/parted.scm:597 #, scheme-format msgid "Bootable flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:579 +#: gnu/installer/parted.scm:601 #, scheme-format msgid "ESP flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:585 +#: gnu/installer/parted.scm:607 #, scheme-format msgid "Size: ~a" msgstr "" -#: gnu/installer/parted.scm:591 +#: gnu/installer/parted.scm:613 #, scheme-format msgid "Encryption: ~:[No~a~;Yes (label '~a')~]" msgstr "" -#: gnu/installer/parted.scm:597 +#: gnu/installer/parted.scm:619 #, scheme-format msgid "Format the partition? ~:[No~;Yes~]" msgstr "" -#: gnu/installer/parted.scm:603 +#: gnu/installer/parted.scm:625 #, scheme-format msgid "Mount point: ~a" msgstr "" -#: gnu/installer/parted.scm:1466 +#: gnu/installer/parted.scm:1477 #, scheme-format msgid "Device ~a is still in use." msgstr "" @@ -1663,7 +1737,7 @@ msgstr "" #. TRANSLATORS: This is a comment within a Scheme file. Each line must #. start with ";; " (two semicolons and a space). Please keep line #. length below 60 characters. -#: gnu/installer/steps.scm:252 +#: gnu/installer/steps.scm:242 msgid "" ";; This is an operating system configuration generated\n" ";; by the graphical installer.\n" @@ -1674,98 +1748,117 @@ msgstr "" msgid "Unable to locate path: ~a." msgstr "" -#: gnu/installer/utils.scm:83 +#: gnu/installer/utils.scm:131 #, scheme-format msgid "Press Enter to continue.~%" msgstr "" -#: gnu/installer/utils.scm:108 +#: gnu/installer/utils.scm:150 +#, scheme-format +msgid "Command ~s exited with value ~a" +msgstr "" + +#: gnu/installer/utils.scm:156 #, scheme-format -msgid "Command failed with exit code ~a.~%" +msgid "Command ~s killed by signal ~a" msgstr "" -#: gnu/machine/ssh.scm:117 +#: gnu/installer/utils.scm:162 +#, scheme-format +msgid "Command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:167 +#, scheme-format +msgid "Command ~s succeeded" +msgstr "" + +#: gnu/installer/utils.scm:179 +msgid "run-command-in-installer not set" +msgstr "" + +#: gnu/machine/ssh.scm:120 #, scheme-format msgid " without a 'host-key' is deprecated~%" msgstr "" -#: gnu/machine/ssh.scm:192 +#: gnu/machine/ssh.scm:208 #, scheme-format msgid "device '~a' not found: ~a" msgstr "" -#: gnu/machine/ssh.scm:207 +#: gnu/machine/ssh.scm:223 #, scheme-format msgid "no file system with label '~a'" msgstr "" -#: gnu/machine/ssh.scm:226 +#: gnu/machine/ssh.scm:242 #, scheme-format msgid "no file system with UUID '~a'" msgstr "" -#: gnu/machine/ssh.scm:276 +#: gnu/machine/ssh.scm:295 #, scheme-format msgid "missing modules for ~a:~{ ~a~}~%" msgstr "" -#: gnu/machine/ssh.scm:311 +#: gnu/machine/ssh.scm:333 #, scheme-format msgid "incorrect target system ('~a' was given, while the system reports that it is '~a')~%" msgstr "" -#: gnu/machine/ssh.scm:437 +#: gnu/machine/ssh.scm:459 #, scheme-format msgid "no signing key '~a'. have you run 'guix archive --generate-key?'" msgstr "" -#: gnu/machine/ssh.scm:469 +#: gnu/machine/ssh.scm:491 #, scheme-format msgid "failed to switch systems while deploying '~a':~%~{~s ~}" msgstr "" -#: gnu/machine/ssh.scm:477 +#: gnu/machine/ssh.scm:499 #, scheme-format msgid "an error occurred while upgrading services on '~a':~%~{~s ~}~%" msgstr "" -#: gnu/machine/ssh.scm:485 +#: gnu/machine/ssh.scm:507 #, scheme-format msgid "failed to install bootloader on '~a':~%~{~s ~}~%" msgstr "" -#: gnu/machine/ssh.scm:518 +#: gnu/machine/ssh.scm:540 msgid "could not roll-back machine" msgstr "" -#: gnu/machine/ssh.scm:559 +#: gnu/machine/ssh.scm:581 msgid "" "Provisioning for machines that are accessible over SSH\n" "and have a known host-name. This entails little more than maintaining an SSH\n" "connection to the host." msgstr "" -#: gnu/machine/ssh.scm:569 +#: gnu/machine/ssh.scm:591 #, scheme-format msgid "" "unsupported machine configuration '~a'\n" "for environment of type '~a'" msgstr "" -#: gnu/packages/bootstrap.scm:178 +#: gnu/packages/bootstrap.scm:188 #, scheme-format msgid "could not find bootstrap binary '~a' for system '~a'" msgstr "" -#: gnu/packages/bootstrap.scm:492 +#: gnu/packages/bootstrap.scm:578 msgid "Raw build system with direct store access" msgstr "" -#: gnu/packages/bootstrap.scm:500 +#: gnu/packages/bootstrap.scm:586 msgid "Pre-built Guile for bootstrapping purposes." msgstr "" -#: guix/build/utils.scm:822 +#: guix/build/utils.scm:823 #, scheme-format msgid "'~a~{ ~a~}' exited with status ~a; output follows:~%~%~{ ~a~%~}" msgstr "" @@ -1805,7 +1898,7 @@ msgid "~A: unrecognized option~%" msgstr "" #: guix/scripts.scm:169 guix/scripts/import.scm:140 -#: guix/scripts/system.scm:1370 +#: guix/scripts/system.scm:1379 #, scheme-format msgid "Did you mean @code{~a}?~%" msgstr "" @@ -1851,7 +1944,7 @@ msgstr "" #: guix/scripts/build.scm:154 guix/scripts/search.scm:42 #: guix/scripts/show.scm:41 guix/scripts/lint.scm:112 guix/scripts/edit.scm:48 #: guix/scripts/size.scm:246 guix/scripts/graph.scm:553 -#: guix/scripts/repl.scm:80 guix/scripts/style.scm:500 +#: guix/scripts/repl.scm:80 guix/scripts/style.scm:795 msgid "" "\n" " -L, --load-path=DIR prepend DIR to the package module search path" @@ -2004,7 +2097,7 @@ msgid "" " -s, --system=SYSTEM attempt to build for SYSTEM--e.g., \"i686-linux\"" msgstr "" -#: guix/scripts/build.scm:357 guix/scripts/system.scm:1023 +#: guix/scripts/build.scm:357 guix/scripts/system.scm:1026 #: guix/scripts/pack.scm:1329 guix/scripts/archive.scm:97 msgid "" "\n" @@ -2037,13 +2130,13 @@ msgid "" " as a garbage collector root" msgstr "" -#: guix/scripts/build.scm:368 guix/scripts/package.scm:486 +#: guix/scripts/build.scm:368 guix/scripts/package.scm:488 #: guix/scripts/install.scm:37 guix/scripts/remove.scm:36 #: guix/scripts/upgrade.scm:39 guix/scripts/pull.scm:117 -#: guix/scripts/system.scm:1025 guix/scripts/copy.scm:122 -#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:60 +#: guix/scripts/system.scm:1028 guix/scripts/copy.scm:122 +#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:66 #: guix/scripts/archive.scm:99 guix/scripts/environment.scm:123 -#: guix/scripts/home.scm:94 +#: guix/scripts/home.scm:98 msgid "" "\n" " -v, --verbosity=LEVEL use the given verbosity LEVEL" @@ -2062,59 +2155,59 @@ msgid "" msgstr "" #: guix/scripts/build.scm:379 guix/scripts/download.scm:104 -#: guix/scripts/package.scm:504 guix/scripts/install.scm:44 +#: guix/scripts/package.scm:506 guix/scripts/install.scm:44 #: guix/scripts/remove.scm:41 guix/scripts/upgrade.scm:48 #: guix/scripts/search.scm:37 guix/scripts/show.scm:36 guix/scripts/gc.scm:88 #: guix/scripts/git.scm:34 guix/scripts/git/authenticate.scm:110 #: guix/scripts/hash.scm:98 guix/scripts/import.scm:98 #: guix/scripts/import/minetest.scm:46 guix/scripts/import/cran.scm:49 #: guix/scripts/pull.scm:125 guix/scripts/substitute.scm:250 -#: guix/scripts/system.scm:1032 guix/scripts/lint.scm:115 +#: guix/scripts/system.scm:1035 guix/scripts/lint.scm:115 #: guix/scripts/publish.scm:119 guix/scripts/edit.scm:51 #: guix/scripts/size.scm:249 guix/scripts/graph.scm:558 #: guix/scripts/challenge.scm:430 guix/scripts/copy.scm:127 #: guix/scripts/pack.scm:1357 guix/scripts/weather.scm:336 #: guix/scripts/describe.scm:96 guix/scripts/processes.scm:301 -#: guix/scripts/deploy.scm:55 guix/scripts/container.scm:35 +#: guix/scripts/deploy.scm:58 guix/scripts/container.scm:35 #: guix/scripts/container/exec.scm:43 guix/scripts/archive.scm:106 -#: guix/scripts/environment.scm:149 guix/scripts/home.scm:97 +#: guix/scripts/environment.scm:149 guix/scripts/home.scm:101 #: guix/scripts/time-machine.scm:67 guix/scripts/import/cpan.scm:44 #: guix/scripts/import/crate.scm:50 guix/scripts/import/egg.scm:45 #: guix/scripts/import/gem.scm:46 guix/scripts/import/gnu.scm:50 #: guix/scripts/import/go.scm:50 guix/scripts/import/json.scm:52 #: guix/scripts/import/opam.scm:45 guix/scripts/import/pypi.scm:46 #: guix/scripts/import/texlive.scm:45 guix/scripts/refresh.scm:187 -#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:67 -#: guix/scripts/style.scm:509 +#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:69 +#: guix/scripts/style.scm:804 msgid "" "\n" " -h, --help display this help and exit" msgstr "" #: guix/scripts/build.scm:381 guix/scripts/download.scm:106 -#: guix/scripts/package.scm:506 guix/scripts/install.scm:46 +#: guix/scripts/package.scm:508 guix/scripts/install.scm:46 #: guix/scripts/remove.scm:43 guix/scripts/upgrade.scm:50 #: guix/scripts/search.scm:39 guix/scripts/show.scm:38 guix/scripts/gc.scm:90 #: guix/scripts/git.scm:36 guix/scripts/git/authenticate.scm:112 #: guix/scripts/hash.scm:100 guix/scripts/import.scm:100 #: guix/scripts/import/minetest.scm:50 guix/scripts/import/cran.scm:55 #: guix/scripts/pull.scm:127 guix/scripts/substitute.scm:252 -#: guix/scripts/system.scm:1034 guix/scripts/lint.scm:119 +#: guix/scripts/system.scm:1037 guix/scripts/lint.scm:119 #: guix/scripts/publish.scm:121 guix/scripts/edit.scm:53 #: guix/scripts/size.scm:251 guix/scripts/graph.scm:560 #: guix/scripts/challenge.scm:432 guix/scripts/copy.scm:129 #: guix/scripts/pack.scm:1359 guix/scripts/weather.scm:338 #: guix/scripts/describe.scm:98 guix/scripts/processes.scm:303 -#: guix/scripts/deploy.scm:57 guix/scripts/container.scm:37 +#: guix/scripts/deploy.scm:60 guix/scripts/container.scm:37 #: guix/scripts/container/exec.scm:45 guix/scripts/archive.scm:108 -#: guix/scripts/environment.scm:151 guix/scripts/home.scm:99 +#: guix/scripts/environment.scm:151 guix/scripts/home.scm:103 #: guix/scripts/time-machine.scm:69 guix/scripts/import/cpan.scm:46 #: guix/scripts/import/crate.scm:52 guix/scripts/import/egg.scm:49 #: guix/scripts/import/gem.scm:48 guix/scripts/import/gnu.scm:52 #: guix/scripts/import/json.scm:54 guix/scripts/import/opam.scm:52 #: guix/scripts/import/pypi.scm:50 guix/scripts/import/texlive.scm:47 #: guix/scripts/refresh.scm:189 guix/scripts/repl.scm:85 -#: guix/scripts/shell.scm:69 guix/scripts/style.scm:511 +#: guix/scripts/shell.scm:71 guix/scripts/style.scm:806 msgid "" "\n" " -V, --version display version information and exit" @@ -2344,164 +2437,164 @@ msgstr "" msgid "\"bash-minimal\" should be in 'inputs' when '~a' is used" msgstr "" -#: guix/lint.scm:616 +#: guix/lint.scm:614 msgid "no period allowed at the end of the synopsis" msgstr "" -#: guix/lint.scm:630 +#: guix/lint.scm:628 msgid "no article allowed at the beginning of the synopsis" msgstr "" -#: guix/lint.scm:639 +#: guix/lint.scm:637 msgid "synopsis should be less than 80 characters long" msgstr "" -#: guix/lint.scm:648 +#: guix/lint.scm:646 msgid "synopsis should start with an upper-case letter or digit" msgstr "" -#: guix/lint.scm:656 +#: guix/lint.scm:654 msgid "synopsis should not start with the package name" msgstr "" -#: guix/lint.scm:670 +#: guix/lint.scm:668 msgid "Texinfo markup in synopsis is invalid" msgstr "" -#: guix/lint.scm:678 +#: guix/lint.scm:676 msgid "synopsis contains trailing whitespace" msgstr "" -#: guix/lint.scm:695 +#: guix/lint.scm:693 msgid "synopsis should not be empty" msgstr "" -#: guix/lint.scm:705 +#: guix/lint.scm:703 #, scheme-format msgid "invalid synopsis: ~s" msgstr "" -#: guix/lint.scm:805 +#: guix/lint.scm:803 #, scheme-format msgid "~a: HTTP GET error for ~a: ~a (~s)~%" msgstr "" -#: guix/lint.scm:815 +#: guix/lint.scm:813 #, scheme-format msgid "~a: host lookup failure: ~a~%" msgstr "" -#: guix/lint.scm:820 +#: guix/lint.scm:818 #, scheme-format msgid "~a: TLS certificate error: ~a" msgstr "" -#: guix/lint.scm:825 +#: guix/lint.scm:823 #, scheme-format msgid "~a: TLS error in '~a': ~a~%" msgstr "" -#: guix/lint.scm:836 guix/ui.scm:820 guix/scripts/offload.scm:194 +#: guix/lint.scm:834 guix/ui.scm:820 guix/scripts/offload.scm:194 #, scheme-format msgid "~a: ~a~%" msgstr "" -#: guix/lint.scm:868 +#: guix/lint.scm:866 #, scheme-format msgid "URI ~a returned suspiciously small file (~a bytes)" msgstr "" -#: guix/lint.scm:877 +#: guix/lint.scm:875 #, scheme-format msgid "permanent redirect from ~a to ~a" msgstr "" -#: guix/lint.scm:883 +#: guix/lint.scm:881 #, scheme-format msgid "invalid permanent redirect from ~a" msgstr "" -#: guix/lint.scm:889 guix/lint.scm:899 +#: guix/lint.scm:887 guix/lint.scm:897 #, scheme-format msgid "URI ~a not reachable: ~a (~s)" msgstr "" -#: guix/lint.scm:905 +#: guix/lint.scm:903 #, scheme-format msgid "URI ~a domain not found: ~a" msgstr "" -#: guix/lint.scm:911 +#: guix/lint.scm:909 #, scheme-format msgid "URI ~a unreachable: ~a" msgstr "" -#: guix/lint.scm:919 +#: guix/lint.scm:917 #, scheme-format msgid "TLS certificate error: ~a" msgstr "" -#: guix/lint.scm:946 +#: guix/lint.scm:944 msgid "invalid value for home page" msgstr "" -#: guix/lint.scm:951 +#: guix/lint.scm:949 #, scheme-format msgid "invalid home page URL: ~s" msgstr "" -#: guix/lint.scm:988 +#: guix/lint.scm:986 msgid "file names of patches should start with the package name" msgstr "" -#: guix/lint.scm:1008 +#: guix/lint.scm:1006 #, scheme-format msgid "~a: file name is too long, which may break 'make dist'" msgstr "" -#: guix/lint.scm:1029 +#: guix/lint.scm:1027 #, scheme-format msgid "~a: empty patch" msgstr "" -#: guix/lint.scm:1038 +#: guix/lint.scm:1036 #, scheme-format msgid "~a: patch lacks comment and upstream status" msgstr "" -#: guix/lint.scm:1099 +#: guix/lint.scm:1097 #, scheme-format msgid "proposed synopsis: ~s~%" msgstr "" -#: guix/lint.scm:1113 +#: guix/lint.scm:1111 #, scheme-format msgid "proposed description:~% \"~a\"~%" msgstr "" -#: guix/lint.scm:1164 +#: guix/lint.scm:1162 msgid "all the source URIs are unreachable:" msgstr "" -#: guix/lint.scm:1193 +#: guix/lint.scm:1191 msgid "the source file name should contain the package name" msgstr "" -#: guix/lint.scm:1205 +#: guix/lint.scm:1203 msgid "the source URI should not be an autogenerated tarball" msgstr "" -#: guix/lint.scm:1229 +#: guix/lint.scm:1227 #, scheme-format msgid "URL should be 'mirror://~a/~a'" msgstr "" -#: guix/lint.scm:1269 +#: guix/lint.scm:1267 #, scheme-format msgid "while accessing '~a'" msgstr "" -#: guix/lint.scm:1276 +#: guix/lint.scm:1274 #, scheme-format msgid "URL should be '~a'" msgstr "" @@ -2509,68 +2602,68 @@ msgstr "" #. TRANSLATORS: check and #:tests? are a #. Scheme symbol and keyword respectively #. and should not be translated. -#: guix/lint.scm:1304 +#: guix/lint.scm:1302 msgid "the 'check' phase should respect #:tests?" msgstr "" -#: guix/lint.scm:1322 guix/lint.scm:1333 guix/lint.scm:1341 +#: guix/lint.scm:1320 guix/lint.scm:1331 guix/lint.scm:1339 #, scheme-format msgid "failed to create ~a derivation: ~a" msgstr "" -#: guix/lint.scm:1327 +#: guix/lint.scm:1325 #, scheme-format msgid "failed to create ~a derivation: ~s" msgstr "" -#: guix/lint.scm:1379 +#: guix/lint.scm:1377 #, scheme-format msgid "propagated inputs ~a and ~a collide" msgstr "" -#: guix/lint.scm:1403 +#: guix/lint.scm:1401 msgid "invalid license field" msgstr "" -#: guix/lint.scm:1410 +#: guix/lint.scm:1408 msgid "while retrieving CVE vulnerabilities" msgstr "" -#: guix/lint.scm:1453 +#: guix/lint.scm:1451 #, scheme-format msgid "probably vulnerable to ~a" msgstr "" -#: guix/lint.scm:1461 +#: guix/lint.scm:1459 #, scheme-format msgid "no updater for ~a" msgstr "" -#: guix/lint.scm:1466 guix/lint.scm:1641 +#: guix/lint.scm:1464 guix/lint.scm:1639 #, scheme-format msgid "while retrieving upstream info for '~a'" msgstr "" -#: guix/lint.scm:1475 +#: guix/lint.scm:1473 #, scheme-format msgid "can be upgraded to ~a" msgstr "" -#: guix/lint.scm:1481 +#: guix/lint.scm:1479 #, scheme-format msgid "updater '~a' failed to find upstream releases" msgstr "" -#: guix/lint.scm:1508 +#: guix/lint.scm:1506 #, scheme-format msgid "failed to access Disarchive database at ~a" msgstr "" -#: guix/lint.scm:1535 +#: guix/lint.scm:1533 msgid "Software Heritage rate limit reached; try again later" msgstr "" -#: guix/lint.scm:1539 +#: guix/lint.scm:1537 #, scheme-format msgid "'~a' returned ~a" msgstr "" @@ -2578,162 +2671,162 @@ msgstr "" #. TRANSLATORS: "Software Heritage" is a proper noun #. that must remain untranslated. See #. . -#: guix/lint.scm:1578 +#: guix/lint.scm:1576 msgid "scheduled Software Heritage archival" msgstr "" -#: guix/lint.scm:1584 +#: guix/lint.scm:1582 msgid "archival rate limit exceeded; try again later" msgstr "" -#: guix/lint.scm:1605 +#: guix/lint.scm:1603 msgid "source not archived on Software Heritage and missing from the Disarchive database" msgstr "" -#: guix/lint.scm:1615 +#: guix/lint.scm:1613 #, scheme-format msgid "Disarchive entry refers to non-existent SWH directory '~a'" msgstr "" -#: guix/lint.scm:1624 +#: guix/lint.scm:1622 msgid "unsupported source type" msgstr "" -#: guix/lint.scm:1633 +#: guix/lint.scm:1631 msgid "while connecting to Software Heritage" msgstr "" -#: guix/lint.scm:1650 +#: guix/lint.scm:1648 #, scheme-format msgid "ahead of Stackage LTS version ~a" msgstr "" -#: guix/lint.scm:1667 +#: guix/lint.scm:1665 #, scheme-format msgid "tabulation on line ~a, column ~a" msgstr "" -#: guix/lint.scm:1679 +#: guix/lint.scm:1677 #, scheme-format msgid "trailing white space on line ~a" msgstr "" -#: guix/lint.scm:1693 +#: guix/lint.scm:1691 #, scheme-format msgid "line ~a is way too long (~a characters)" msgstr "" -#: guix/lint.scm:1707 +#: guix/lint.scm:1705 msgid "parentheses feel lonely, move to the previous or next line" msgstr "" -#: guix/lint.scm:1784 +#: guix/lint.scm:1782 msgid "source file not found" msgstr "" -#: guix/lint.scm:1796 +#: guix/lint.scm:1794 msgid "Validate package names" msgstr "" -#: guix/lint.scm:1800 +#: guix/lint.scm:1798 msgid "Check if tests are explicitly enabled" msgstr "" -#: guix/lint.scm:1804 +#: guix/lint.scm:1802 msgid "Validate package descriptions" msgstr "" -#: guix/lint.scm:1808 +#: guix/lint.scm:1806 msgid "Identify inputs that should be native inputs" msgstr "" -#: guix/lint.scm:1812 +#: guix/lint.scm:1810 msgid "Identify inputs that shouldn't be inputs at all" msgstr "" -#: guix/lint.scm:1816 +#: guix/lint.scm:1814 msgid "Identify input labels that do not match package names" msgstr "" -#: guix/lint.scm:1820 +#: guix/lint.scm:1818 msgid "Make sure 'wrap-program' can finds its interpreter." msgstr "" #. TRANSLATORS: is the name of a data type and must not be #. translated. -#: guix/lint.scm:1826 +#: guix/lint.scm:1824 msgid "Make sure the 'license' field is a or a list thereof" msgstr "" -#: guix/lint.scm:1831 +#: guix/lint.scm:1829 msgid "Make sure tests are only run when requested" msgstr "" -#: guix/lint.scm:1835 +#: guix/lint.scm:1833 msgid "Suggest 'mirror://' URLs" msgstr "" -#: guix/lint.scm:1839 +#: guix/lint.scm:1837 msgid "Validate file names of sources" msgstr "" -#: guix/lint.scm:1843 +#: guix/lint.scm:1841 msgid "Check for autogenerated tarballs" msgstr "" -#: guix/lint.scm:1847 +#: guix/lint.scm:1845 msgid "Report failure to compile a package to a derivation" msgstr "" -#: guix/lint.scm:1852 +#: guix/lint.scm:1850 msgid "Report collisions that would occur due to propagated inputs" msgstr "" -#: guix/lint.scm:1857 +#: guix/lint.scm:1855 msgid "Validate file names and availability of patches" msgstr "" -#: guix/lint.scm:1861 +#: guix/lint.scm:1859 msgid "Validate patch headers" msgstr "" -#: guix/lint.scm:1865 +#: guix/lint.scm:1863 msgid "Look for formatting issues in the source" msgstr "" -#: guix/lint.scm:1872 +#: guix/lint.scm:1870 msgid "Validate package synopses" msgstr "" -#: guix/lint.scm:1876 +#: guix/lint.scm:1874 msgid "Validate synopsis & description of GNU packages" msgstr "" -#: guix/lint.scm:1880 +#: guix/lint.scm:1878 msgid "Validate home-page URLs" msgstr "" -#: guix/lint.scm:1884 +#: guix/lint.scm:1882 msgid "Validate source URLs" msgstr "" -#: guix/lint.scm:1888 +#: guix/lint.scm:1886 msgid "Suggest GitHub URLs" msgstr "" -#: guix/lint.scm:1892 +#: guix/lint.scm:1890 msgid "Check the Common Vulnerabilities and Exposures (CVE) database" msgstr "" -#: guix/lint.scm:1897 +#: guix/lint.scm:1895 msgid "Check the package for new upstream releases" msgstr "" -#: guix/lint.scm:1901 +#: guix/lint.scm:1899 msgid "Ensure source code archival on Software Heritage" msgstr "" -#: guix/lint.scm:1905 +#: guix/lint.scm:1903 msgid "Ensure Haskell packages use Stackage LTS versions" msgstr "" @@ -2785,7 +2878,7 @@ msgstr "" msgid "~a: unknown hash algorithm~%" msgstr "" -#: guix/scripts/download.scm:171 guix/scripts/package.scm:1087 +#: guix/scripts/download.scm:171 guix/scripts/package.scm:1090 #: guix/scripts/pull.scm:758 guix/scripts/publish.scm:1260 #: guix/scripts/discover.scm:136 guix/scripts/time-machine.scm:123 #, scheme-format @@ -2817,17 +2910,17 @@ msgstr "" msgid "no matching generation~%" msgstr "" -#: guix/scripts/package.scm:159 +#: guix/scripts/package.scm:161 #, scheme-format msgid "nothing to be done~%" msgstr "" -#: guix/scripts/package.scm:260 +#: guix/scripts/package.scm:262 #, scheme-format msgid "package '~a' no longer exists~%" msgstr "" -#: guix/scripts/package.scm:315 +#: guix/scripts/package.scm:317 #, scheme-format msgid "" "Consider setting the necessary environment\n" @@ -2841,7 +2934,7 @@ msgid "" "Alternately, see @command{guix package --search-paths -p ~s}." msgstr "" -#: guix/scripts/package.scm:361 +#: guix/scripts/package.scm:363 msgid "" ";; This \"manifest\" file can be passed to 'guix package -m' to reproduce\n" ";; the content of your profile. This is \"symbolic\": it only specifies\n" @@ -2850,30 +2943,30 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/package.scm:393 +#: guix/scripts/package.scm:395 #, scheme-format msgid "no provenance information for this profile~%" msgstr "" -#: guix/scripts/package.scm:395 +#: guix/scripts/package.scm:397 msgid "" ";; This channel file can be passed to 'guix pull -C' or to\n" ";; 'guix time-machine -C' to obtain the Guix revision that was\n" ";; used to populate this profile.\n" msgstr "" -#: guix/scripts/package.scm:407 +#: guix/scripts/package.scm:409 #, scheme-format msgid ";; Note: these other commits were also used to install some of the packages in this profile:~%" msgstr "" -#: guix/scripts/package.scm:437 +#: guix/scripts/package.scm:439 msgid "" "Usage: guix package [OPTION]...\n" "Install, remove, or upgrade packages in a single transaction.\n" msgstr "" -#: guix/scripts/package.scm:439 +#: guix/scripts/package.scm:441 msgid "" "\n" " -i, --install PACKAGE ...\n" @@ -2883,14 +2976,14 @@ msgstr "" " -i, --install PACKAGE ...\n" " install PACKAGEs" -#: guix/scripts/package.scm:442 +#: guix/scripts/package.scm:444 msgid "" "\n" " -e, --install-from-expression=EXP\n" " install the package EXP evaluates to" msgstr "" -#: guix/scripts/package.scm:445 +#: guix/scripts/package.scm:447 msgid "" "\n" " -f, --install-from-file=FILE\n" @@ -2898,160 +2991,160 @@ msgid "" " evaluates to" msgstr "" -#: guix/scripts/package.scm:449 +#: guix/scripts/package.scm:451 msgid "" "\n" " -r, --remove PACKAGE ...\n" " remove PACKAGEs" msgstr "" -#: guix/scripts/package.scm:452 +#: guix/scripts/package.scm:454 msgid "" "\n" " -u, --upgrade[=REGEXP] upgrade all the installed packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:454 +#: guix/scripts/package.scm:456 msgid "" "\n" " -m, --manifest=FILE create a new profile generation with the manifest\n" " from FILE" msgstr "" -#: guix/scripts/package.scm:457 guix/scripts/upgrade.scm:41 +#: guix/scripts/package.scm:459 guix/scripts/upgrade.scm:41 msgid "" "\n" " --do-not-upgrade[=REGEXP] do not upgrade any packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:459 guix/scripts/pull.scm:107 +#: guix/scripts/package.scm:461 guix/scripts/pull.scm:107 msgid "" "\n" " --roll-back roll back to the previous generation" msgstr "" -#: guix/scripts/package.scm:461 +#: guix/scripts/package.scm:463 msgid "" "\n" " --search-paths[=KIND]\n" " display needed environment variable definitions" msgstr "" -#: guix/scripts/package.scm:464 guix/scripts/pull.scm:104 +#: guix/scripts/package.scm:466 guix/scripts/pull.scm:104 msgid "" "\n" " -l, --list-generations[=PATTERN]\n" " list generations matching PATTERN" msgstr "" -#: guix/scripts/package.scm:467 guix/scripts/pull.scm:109 +#: guix/scripts/package.scm:469 guix/scripts/pull.scm:109 msgid "" "\n" " -d, --delete-generations[=PATTERN]\n" " delete generations matching PATTERN" msgstr "" -#: guix/scripts/package.scm:470 guix/scripts/pull.scm:112 +#: guix/scripts/package.scm:472 guix/scripts/pull.scm:112 msgid "" "\n" " -S, --switch-generation=PATTERN\n" " switch to a generation matching PATTERN" msgstr "" -#: guix/scripts/package.scm:473 +#: guix/scripts/package.scm:475 msgid "" "\n" " --export-manifest print a manifest for the chosen profile" msgstr "" -#: guix/scripts/package.scm:475 +#: guix/scripts/package.scm:477 msgid "" "\n" " --export-channels print channels for the chosen profile" msgstr "" -#: guix/scripts/package.scm:477 guix/scripts/install.scm:34 +#: guix/scripts/package.scm:479 guix/scripts/install.scm:34 #: guix/scripts/remove.scm:33 guix/scripts/upgrade.scm:37 msgid "" "\n" " -p, --profile=PROFILE use PROFILE instead of the user's default profile" msgstr "" -#: guix/scripts/package.scm:479 +#: guix/scripts/package.scm:481 msgid "" "\n" " --list-profiles list the user's profiles" msgstr "" -#: guix/scripts/package.scm:482 +#: guix/scripts/package.scm:484 msgid "" "\n" " --allow-collisions do not treat collisions in the profile as an error" msgstr "" -#: guix/scripts/package.scm:484 +#: guix/scripts/package.scm:486 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" msgstr "" -#: guix/scripts/package.scm:489 +#: guix/scripts/package.scm:491 msgid "" "\n" " -s, --search=REGEXP search in synopsis and description using REGEXP" msgstr "" -#: guix/scripts/package.scm:491 +#: guix/scripts/package.scm:493 msgid "" "\n" " -I, --list-installed[=REGEXP]\n" " list installed packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:494 +#: guix/scripts/package.scm:496 msgid "" "\n" " -A, --list-available[=REGEXP]\n" " list available packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:497 +#: guix/scripts/package.scm:499 msgid "" "\n" " --show=PACKAGE show details about PACKAGE" msgstr "" -#: guix/scripts/package.scm:552 +#: guix/scripts/package.scm:554 #, scheme-format msgid "upgrade regexp '~a' looks like a command-line option~%" msgstr "" -#: guix/scripts/package.scm:555 +#: guix/scripts/package.scm:557 #, scheme-format msgid "is this intended?~%" msgstr "" -#: guix/scripts/package.scm:605 +#: guix/scripts/package.scm:607 #, scheme-format msgid "~a: unsupported kind of search path~%" msgstr "" -#: guix/scripts/package.scm:739 +#: guix/scripts/package.scm:741 #, scheme-format msgid "cannot install non-package object: ~s~%" msgstr "" -#: guix/scripts/package.scm:918 +#: guix/scripts/package.scm:920 #, scheme-format msgid "~a~@[@~a~]: package not found~%" msgstr "" -#: guix/scripts/package.scm:965 guix/scripts/pull.scm:687 +#: guix/scripts/package.scm:967 guix/scripts/pull.scm:687 #, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "" -#: guix/scripts/package.scm:1060 +#: guix/scripts/package.scm:1062 #, scheme-format msgid "nothing to do~%" msgstr "처리가 필요하지 않습니다~%" @@ -3260,8 +3353,8 @@ msgid "" "Operate on Git repositories.\n" msgstr "" -#: guix/scripts/git.scm:29 guix/scripts/system.scm:945 -#: guix/scripts/container.scm:30 guix/scripts/home.scm:69 +#: guix/scripts/git.scm:29 guix/scripts/system.scm:946 +#: guix/scripts/container.scm:30 guix/scripts/home.scm:70 msgid "The valid values for ACTION are:\n" msgstr "" @@ -3350,22 +3443,22 @@ msgid "" " -S, --serializer=TYPE compute the hash on FILE according to TYPE serialization" msgstr "" -#: guix/scripts/hash.scm:137 +#: guix/scripts/hash.scm:138 #, scheme-format -msgid "'--recursive' is deprecated, use '--serializer' instead~%" +msgid "'--recursive' is deprecated, use '--serializer=nar' instead~%" msgstr "" -#: guix/scripts/hash.scm:152 +#: guix/scripts/hash.scm:153 #, scheme-format msgid "unsupported serializer type: ~a~%" msgstr "" -#: guix/scripts/hash.scm:201 +#: guix/scripts/hash.scm:202 #, scheme-format msgid "~a ~a~%" msgstr "" -#: guix/scripts/hash.scm:210 +#: guix/scripts/hash.scm:211 #, scheme-format msgid "no arguments specified~%" msgstr "" @@ -3425,9 +3518,9 @@ msgstr "" #: guix/scripts/import/minetest.scm:115 guix/scripts/import/cran.scm:120 #: guix/scripts/import/elpa.scm:110 guix/scripts/import/cpan.scm:87 #: guix/scripts/import/crate.scm:103 guix/scripts/import/egg.scm:106 -#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:121 +#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:122 #: guix/scripts/import/hackage.scm:158 guix/scripts/import/json.scm:97 -#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:104 +#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:105 #: guix/scripts/import/stackage.scm:130 guix/scripts/import/texlive.scm:88 #, scheme-format msgid "too few arguments~%" @@ -3436,10 +3529,10 @@ msgstr "" #: guix/scripts/import/minetest.scm:117 guix/scripts/import/cran.scm:122 #: guix/scripts/import/elpa.scm:112 guix/scripts/import/cpan.scm:89 #: guix/scripts/import/crate.scm:105 guix/scripts/import/egg.scm:108 -#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:123 +#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:124 #: guix/scripts/import/hackage.scm:149 guix/scripts/import/hackage.scm:160 #: guix/scripts/import/json.scm:99 guix/scripts/import/opam.scm:113 -#: guix/scripts/import/pypi.scm:106 guix/scripts/import/stackage.scm:132 +#: guix/scripts/import/pypi.scm:107 guix/scripts/import/stackage.scm:132 #: guix/scripts/import/texlive.scm:90 #, scheme-format msgid "too many arguments~%" @@ -3463,7 +3556,7 @@ msgid "" " -s, --style=STYLE choose output style, either specification or variable" msgstr "" -#: guix/scripts/import/cran.scm:116 guix/scripts/import/texlive.scm:84 +#: guix/scripts/import/cran.scm:116 #, scheme-format msgid "failed to download description for package '~a'~%" msgstr "" @@ -3854,27 +3947,27 @@ msgstr "" msgid "the dependency graph of shepherd services" msgstr "" -#: guix/scripts/system.scm:482 guix/scripts/home.scm:453 +#: guix/scripts/system.scm:482 guix/scripts/home.scm:466 #, scheme-format msgid " repository URL: ~a~%" msgstr "" -#: guix/scripts/system.scm:484 guix/scripts/home.scm:455 +#: guix/scripts/system.scm:484 guix/scripts/home.scm:468 #, scheme-format msgid " branch: ~a~%" msgstr "" -#: guix/scripts/system.scm:485 guix/scripts/home.scm:456 +#: guix/scripts/system.scm:485 guix/scripts/home.scm:469 #, scheme-format msgid " commit: ~a~%" msgstr "" -#: guix/scripts/system.scm:505 guix/scripts/home.scm:469 +#: guix/scripts/system.scm:505 guix/scripts/home.scm:482 #, scheme-format msgid " file name: ~a~%" msgstr "" -#: guix/scripts/system.scm:506 guix/scripts/home.scm:470 +#: guix/scripts/system.scm:506 guix/scripts/home.scm:483 #, scheme-format msgid " canonical file name: ~a~%" msgstr "" @@ -3915,12 +4008,12 @@ msgstr "" #. TRANSLATORS: Here "channel" is the same terminology as used in #. "guix describe" and "guix pull --channels". -#: guix/scripts/system.scm:536 guix/scripts/home.scm:476 +#: guix/scripts/system.scm:536 guix/scripts/home.scm:489 #, scheme-format msgid " channels:~%" msgstr "" -#: guix/scripts/system.scm:539 guix/scripts/home.scm:479 +#: guix/scripts/system.scm:539 guix/scripts/home.scm:492 #, scheme-format msgid " configuration file: ~a~%" msgstr "" @@ -3972,128 +4065,128 @@ msgstr "" msgid "Failing to do that may downgrade your system!~%" msgstr "" -#: guix/scripts/system.scm:754 guix/scripts/system.scm:863 +#: guix/scripts/system.scm:754 guix/scripts/system.scm:864 #, scheme-format msgid "bootloader successfully installed on '~a'~%" msgstr "" -#: guix/scripts/system.scm:856 +#: guix/scripts/system.scm:857 #, scheme-format msgid "activating system...~%" msgstr "" -#: guix/scripts/system.scm:867 +#: guix/scripts/system.scm:868 msgid "" "To complete the upgrade, run 'herd restart SERVICE' to stop,\n" "upgrade, and restart each service that was not automatically restarted.\n" msgstr "" -#: guix/scripts/system.scm:870 +#: guix/scripts/system.scm:871 msgid "Run 'herd status' to view the list of services on your system.\n" msgstr "" -#: guix/scripts/system.scm:874 +#: guix/scripts/system.scm:875 #, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "" -#: guix/scripts/system.scm:894 guix/scripts/graph.scm:437 +#: guix/scripts/system.scm:895 guix/scripts/graph.scm:437 #, scheme-format msgid "~a: unknown backend~%" msgstr "" -#: guix/scripts/system.scm:931 +#: guix/scripts/system.scm:932 msgid "The available image types are:\n" msgstr "" -#: guix/scripts/system.scm:941 +#: guix/scripts/system.scm:942 msgid "" "Usage: guix system [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the operating system declared in FILE according to ACTION.\n" "Some ACTIONS support additional ARGS.\n" msgstr "" -#: guix/scripts/system.scm:947 +#: guix/scripts/system.scm:948 msgid " search search for existing service types\n" msgstr "" -#: guix/scripts/system.scm:949 +#: guix/scripts/system.scm:950 msgid " reconfigure switch to a new operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:951 +#: guix/scripts/system.scm:952 msgid " roll-back switch to the previous operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:953 +#: guix/scripts/system.scm:954 msgid " describe describe the current system\n" msgstr "" -#: guix/scripts/system.scm:955 +#: guix/scripts/system.scm:956 msgid " list-generations list the system generations\n" msgstr "" -#: guix/scripts/system.scm:957 +#: guix/scripts/system.scm:958 msgid " switch-generation switch to an existing operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:959 +#: guix/scripts/system.scm:960 msgid " delete-generations delete old system generations\n" msgstr "" -#: guix/scripts/system.scm:961 +#: guix/scripts/system.scm:962 msgid " build build the operating system without installing anything\n" msgstr "" -#: guix/scripts/system.scm:963 +#: guix/scripts/system.scm:964 msgid " container build a container that shares the host's store\n" msgstr "" -#: guix/scripts/system.scm:965 +#: guix/scripts/system.scm:966 msgid " vm build a virtual machine image that shares the host's store\n" msgstr "" -#: guix/scripts/system.scm:967 +#: guix/scripts/system.scm:968 msgid " image build a Guix System image\n" msgstr "" -#: guix/scripts/system.scm:969 +#: guix/scripts/system.scm:970 msgid " docker-image build a Docker image\n" msgstr "" -#: guix/scripts/system.scm:971 +#: guix/scripts/system.scm:972 msgid " init initialize a root file system to run GNU\n" msgstr "" -#: guix/scripts/system.scm:973 +#: guix/scripts/system.scm:974 msgid " extension-graph emit the service extension graph in Dot format\n" msgstr "" -#: guix/scripts/system.scm:975 +#: guix/scripts/system.scm:976 msgid " shepherd-graph emit the graph of shepherd services in Dot format\n" msgstr "" -#: guix/scripts/system.scm:979 +#: guix/scripts/system.scm:980 msgid "" "\n" " -d, --derivation return the derivation of the given system" msgstr "" -#: guix/scripts/system.scm:981 +#: guix/scripts/system.scm:982 msgid "" "\n" " -e, --expression=EXPR consider the operating-system EXPR evaluates to\n" " instead of reading FILE, when applicable" msgstr "" -#: guix/scripts/system.scm:984 +#: guix/scripts/system.scm:985 guix/scripts/home.scm:95 msgid "" "\n" " --allow-downgrades for 'reconfigure', allow downgrades to earlier\n" " channel revisions" msgstr "" -#: guix/scripts/system.scm:987 +#: guix/scripts/system.scm:988 msgid "" "\n" " --on-error=STRATEGY\n" @@ -4101,69 +4194,75 @@ msgid "" " or debug) when an error occurs while reading FILE" msgstr "" -#: guix/scripts/system.scm:991 +#: guix/scripts/system.scm:992 msgid "" "\n" " --list-image-types list available image types" msgstr "" -#: guix/scripts/system.scm:993 +#: guix/scripts/system.scm:994 msgid "" "\n" " -t, --image-type=TYPE for 'image', produce an image of TYPE" msgstr "" -#: guix/scripts/system.scm:995 +#: guix/scripts/system.scm:996 msgid "" "\n" " --image-size=SIZE for 'image', produce an image of SIZE" msgstr "" -#: guix/scripts/system.scm:997 +#: guix/scripts/system.scm:998 msgid "" "\n" " --no-bootloader for 'init', do not install a bootloader" msgstr "" -#: guix/scripts/system.scm:999 +#: guix/scripts/system.scm:1000 msgid "" "\n" " --volatile for 'image', make the root file system volatile" msgstr "" -#: guix/scripts/system.scm:1001 +#: guix/scripts/system.scm:1002 +msgid "" +"\n" +" --persistent for 'vm', make the root file system persistent" +msgstr "" + +#: guix/scripts/system.scm:1004 msgid "" "\n" " --label=LABEL for 'image', label disk image with LABEL" msgstr "" -#: guix/scripts/system.scm:1003 guix/scripts/pack.scm:1340 +#: guix/scripts/system.scm:1006 guix/scripts/pack.scm:1340 msgid "" "\n" " --save-provenance save provenance information" msgstr "" -#: guix/scripts/system.scm:1005 +#: guix/scripts/system.scm:1008 msgid "" "\n" " --share=SPEC for 'vm' and 'container', share host file system with\n" " read/write access according to SPEC" msgstr "" -#: guix/scripts/system.scm:1008 +#: guix/scripts/system.scm:1011 msgid "" "\n" " --expose=SPEC for 'vm' and 'container', expose host file system\n" " directory as read-only according to SPEC" msgstr "" -#: guix/scripts/system.scm:1011 +#: guix/scripts/system.scm:1014 msgid "" "\n" " -N, --network for 'container', allow containers to access the network" msgstr "" -#: guix/scripts/system.scm:1013 +#: guix/scripts/system.scm:1016 msgid "" "\n" " -r, --root=FILE for 'vm', 'image', 'container' and 'build',\n" @@ -4171,82 +4270,82 @@ msgid "" " register it as a garbage collector root" msgstr "" -#: guix/scripts/system.scm:1017 +#: guix/scripts/system.scm:1020 msgid "" "\n" " --full-boot for 'vm', make a full boot sequence" msgstr "" -#: guix/scripts/system.scm:1019 +#: guix/scripts/system.scm:1022 msgid "" "\n" " --no-graphic for 'vm', use the tty that we are started in for IO" msgstr "" -#: guix/scripts/system.scm:1021 +#: guix/scripts/system.scm:1024 msgid "" "\n" " --skip-checks skip file system and initrd module safety checks" msgstr "" -#: guix/scripts/system.scm:1028 +#: guix/scripts/system.scm:1031 msgid "" "\n" " --graph-backend=BACKEND\n" " use BACKEND for 'extension-graphs' and 'shepherd-graph'" msgstr "" -#: guix/scripts/system.scm:1180 +#: guix/scripts/system.scm:1187 #, scheme-format msgid "'~a' does not return an operating system or an image~%" msgstr "" -#: guix/scripts/system.scm:1204 guix/scripts/home.scm:216 +#: guix/scripts/system.scm:1211 guix/scripts/home.scm:230 #, scheme-format msgid "both file and expression cannot be specified~%" msgstr "" -#: guix/scripts/system.scm:1211 guix/scripts/home.scm:223 +#: guix/scripts/system.scm:1218 guix/scripts/home.scm:237 #, scheme-format msgid "no configuration specified~%" msgstr "" -#: guix/scripts/system.scm:1319 guix/scripts/system.scm:1335 -#: guix/scripts/system.scm:1342 guix/scripts/system.scm:1348 -#: guix/scripts/home.scm:274 guix/scripts/home.scm:296 -#: guix/scripts/home.scm:301 guix/scripts/home.scm:307 -#: guix/scripts/home.scm:314 guix/scripts/import/gnu.scm:100 +#: guix/scripts/system.scm:1328 guix/scripts/system.scm:1344 +#: guix/scripts/system.scm:1351 guix/scripts/system.scm:1357 +#: guix/scripts/home.scm:287 guix/scripts/home.scm:309 +#: guix/scripts/home.scm:314 guix/scripts/home.scm:320 +#: guix/scripts/home.scm:327 guix/scripts/import/gnu.scm:100 #: guix/scripts/offload.scm:836 guix/scripts/offload.scm:848 #, scheme-format msgid "wrong number of arguments~%" msgstr "" -#: guix/scripts/system.scm:1324 +#: guix/scripts/system.scm:1333 #, scheme-format msgid "no system generation, nothing to describe~%" msgstr "" -#: guix/scripts/system.scm:1367 guix/scripts/home.scm:337 +#: guix/scripts/system.scm:1376 guix/scripts/home.scm:350 #, scheme-format msgid "~a: unknown action~%" msgstr "" -#: guix/scripts/system.scm:1387 guix/scripts/home.scm:353 +#: guix/scripts/system.scm:1396 guix/scripts/home.scm:366 #, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "" -#: guix/scripts/system.scm:1392 +#: guix/scripts/system.scm:1401 #, scheme-format msgid "guix system: missing command name~%" msgstr "" -#: guix/scripts/system.scm:1394 +#: guix/scripts/system.scm:1403 #, scheme-format msgid "Try 'guix system --help' for more information.~%" msgstr "" -#: guix/scripts/system/search.scm:93 guix/ui.scm:1541 guix/ui.scm:1559 +#: guix/scripts/system/search.scm:93 guix/ui.scm:1544 guix/ui.scm:1562 msgid "unknown" msgstr "알 수 없음" @@ -4641,7 +4740,7 @@ msgid "" msgstr "" #: guix/scripts/graph.scm:548 guix/scripts/pack.scm:1325 -#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:502 +#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:797 msgid "" "\n" " -e, --expression=EXPR consider the package EXPR evaluates to" @@ -5228,43 +5327,88 @@ msgid "" " -f, --format=FORMAT display results as normalized record sets" msgstr "" -#: guix/scripts/deploy.scm:51 +#: guix/scripts/deploy.scm:54 msgid "" "Usage: guix deploy [OPTION] FILE...\n" "Perform the deployment specified by FILE.\n" msgstr "" -#: guix/scripts/deploy.scm:108 +#: guix/scripts/deploy.scm:63 +msgid "" +"\n" +" -x, --execute execute the following command on all the machines" +msgstr "" + +#: guix/scripts/deploy.scm:117 #, scheme-format msgid "The following ~d machine will be deployed:~%" msgid_plural "The following ~d machines will be deployed:~%" msgstr[0] "" -#: guix/scripts/deploy.scm:122 +#: guix/scripts/deploy.scm:131 #, scheme-format msgid "deploying to ~a...~%" msgstr "" -#: guix/scripts/deploy.scm:134 guix/scripts/deploy.scm:138 +#: guix/scripts/deploy.scm:143 guix/scripts/deploy.scm:147 #, scheme-format msgid "failed to deploy ~a: ~a~%" msgstr "" -#: guix/scripts/deploy.scm:146 +#: guix/scripts/deploy.scm:155 #, scheme-format msgid "rolling back ~a...~%" msgstr "" -#: guix/scripts/deploy.scm:152 +#: guix/scripts/deploy.scm:161 #, scheme-format msgid "successfully deployed ~a~%" msgstr "" -#: guix/scripts/deploy.scm:167 +#: guix/scripts/deploy.scm:212 +#, fuzzy, scheme-format +#| msgid "~a: command not found~%" +msgid "~a: command succeeded~%" +msgstr "~a: 명령을 찾지 못함~%" + +#: guix/scripts/deploy.scm:215 +#, fuzzy, scheme-format +#| msgid "~a: command not found~%" +msgid "~a: command exited with code ~a~%" +msgstr "~a: 명령을 찾지 못함~%" + +#: guix/scripts/deploy.scm:218 +#, fuzzy, scheme-format +#| msgid "~a: command not found~%" +msgid "~a: command stopped with signal ~a~%" +msgstr "~a: 명령을 찾지 못함~%" + +#: guix/scripts/deploy.scm:221 +#, scheme-format +msgid "~a: command terminated with signal ~a~%" +msgstr "" + +#: guix/scripts/deploy.scm:225 +#, fuzzy, scheme-format +#| msgid "~a: command not found~%" +msgid "command output on ~a:~%" +msgstr "~a: 명령을 찾지 못함~%" + +#: guix/scripts/deploy.scm:246 #, scheme-format msgid "missing deployment file argument~%" msgstr "" +#: guix/scripts/deploy.scm:249 +#, scheme-format +msgid "'--' was used by '-x' was not specified~%" +msgstr "" + +#: guix/scripts/deploy.scm:271 +#, scheme-format +msgid "'-x' specified but no command given~%" +msgstr "" + #: guix/gexp.scm:465 #, scheme-format msgid "resolving '~a' relative to current directory~%" @@ -5355,155 +5499,155 @@ msgstr "" msgid "exec failed with status ~d~%" msgstr "" -#: guix/transformations.scm:185 guix/transformations.scm:253 +#: guix/transformations.scm:186 guix/transformations.scm:254 #, scheme-format msgid "invalid replacement specification: ~s" msgstr "" -#: guix/transformations.scm:234 +#: guix/transformations.scm:235 #, scheme-format msgid "the source of ~a is not a Git reference" msgstr "" -#: guix/transformations.scm:337 +#: guix/transformations.scm:338 #, scheme-format msgid "~a: invalid Git URL replacement specification" msgstr "" -#: guix/transformations.scm:415 +#: guix/transformations.scm:416 #, scheme-format msgid "~a: invalid toolchain replacement specification" msgstr "" -#: guix/transformations.scm:517 +#: guix/transformations.scm:518 msgid "failed to determine which compiler is used" msgstr "" -#: guix/transformations.scm:523 +#: guix/transformations.scm:524 #, scheme-format msgid "failed to determine whether ~a supports ~a" msgstr "" -#: guix/transformations.scm:529 +#: guix/transformations.scm:530 #, scheme-format msgid "compiler ~a does not support micro-architecture ~a" msgstr "" -#: guix/transformations.scm:581 +#: guix/transformations.scm:582 #, fuzzy, scheme-format #| msgid "choosing ~a@~a from ~a~%" msgid "tuning ~a for CPU ~a~%" msgstr "선택하기 ~a@~a from ~a~%" -#: guix/transformations.scm:721 +#: guix/transformations.scm:722 #, scheme-format msgid "~a: invalid package patch specification" msgstr "" -#: guix/transformations.scm:744 +#: guix/transformations.scm:745 #, scheme-format msgid "could not determine latest upstream release of '~a'~%" msgstr "" -#: guix/transformations.scm:752 +#: guix/transformations.scm:753 #, scheme-format msgid "cannot authenticate source of '~a', version ~a~%" msgstr "" -#: guix/transformations.scm:833 +#: guix/transformations.scm:840 #, scheme-format msgid "building for ~a instead of ~a, so tuning cannot be guessed~%" msgstr "" -#: guix/transformations.scm:859 +#: guix/transformations.scm:866 #, scheme-format msgid "Available package transformation options:~%" msgstr "" -#: guix/transformations.scm:865 +#: guix/transformations.scm:872 msgid "" "\n" " --with-source=[PACKAGE=]SOURCE\n" " use SOURCE when building the corresponding package" msgstr "" -#: guix/transformations.scm:868 +#: guix/transformations.scm:875 msgid "" "\n" " --with-input=PACKAGE=REPLACEMENT\n" " replace dependency PACKAGE by REPLACEMENT" msgstr "" -#: guix/transformations.scm:871 +#: guix/transformations.scm:878 msgid "" "\n" " --with-graft=PACKAGE=REPLACEMENT\n" " graft REPLACEMENT on packages that refer to PACKAGE" msgstr "" -#: guix/transformations.scm:874 +#: guix/transformations.scm:881 msgid "" "\n" " --with-branch=PACKAGE=BRANCH\n" " build PACKAGE from the latest commit of BRANCH" msgstr "" -#: guix/transformations.scm:877 +#: guix/transformations.scm:884 msgid "" "\n" " --with-commit=PACKAGE=COMMIT\n" " build PACKAGE from COMMIT" msgstr "" -#: guix/transformations.scm:880 +#: guix/transformations.scm:887 msgid "" "\n" " --with-git-url=PACKAGE=URL\n" " build PACKAGE from the repository at URL" msgstr "" -#: guix/transformations.scm:883 +#: guix/transformations.scm:890 msgid "" "\n" " --with-patch=PACKAGE=FILE\n" " add FILE to the list of patches of PACKAGE" msgstr "" -#: guix/transformations.scm:886 +#: guix/transformations.scm:893 msgid "" "\n" " --with-latest=PACKAGE\n" " use the latest upstream release of PACKAGE" msgstr "" -#: guix/transformations.scm:889 +#: guix/transformations.scm:896 msgid "" "\n" " --with-c-toolchain=PACKAGE=TOOLCHAIN\n" " build PACKAGE and its dependents with TOOLCHAIN" msgstr "" -#: guix/transformations.scm:892 +#: guix/transformations.scm:899 msgid "" "\n" " --with-debug-info=PACKAGE\n" " build PACKAGE and preserve its debug info" msgstr "" -#: guix/transformations.scm:895 +#: guix/transformations.scm:902 msgid "" "\n" " --without-tests=PACKAGE\n" " build PACKAGE without running its tests" msgstr "" -#: guix/transformations.scm:901 +#: guix/transformations.scm:908 msgid "" "\n" " --help-transform list package transformation options not shown here" msgstr "" -#: guix/transformations.scm:950 +#: guix/transformations.scm:957 #, scheme-format msgid "transformation '~a' had no effect on ~a~%" msgstr "" @@ -5965,12 +6109,12 @@ msgstr[0] "" msgid "~a: invalid Texinfo markup~%" msgstr "" -#: guix/ui.scm:1873 +#: guix/ui.scm:1876 #, scheme-format msgid "invalid syntax: ~a~%" msgstr "" -#: guix/ui.scm:1882 +#: guix/ui.scm:1885 #, scheme-format msgid "Generation ~a\t~a" msgstr "" @@ -5980,7 +6124,7 @@ msgstr "" #. usual way of presenting dates in your locale. #. See https://www.gnu.org/software/guile/manual/html_node/SRFI_002d19-Date-to-string.html #. for details. -#: guix/ui.scm:1892 +#: guix/ui.scm:1895 #, scheme-format msgid "~b ~d ~Y ~T" msgstr "" @@ -5988,74 +6132,74 @@ msgstr "" #. TRANSLATORS: The word "current" here is an adjective for #. "Generation", as in "current generation". Use the appropriate #. gender where applicable. -#: guix/ui.scm:1898 +#: guix/ui.scm:1901 #, scheme-format msgid "~a\t(current)~%" msgstr "" -#: guix/ui.scm:1932 +#: guix/ui.scm:1935 #, scheme-format msgid "cannot lock profile ~a: ~a~%" msgstr "" -#: guix/ui.scm:1934 +#: guix/ui.scm:1937 #, scheme-format msgid "profile ~a is locked by another process~%" msgstr "" -#: guix/ui.scm:1963 +#: guix/ui.scm:1966 #, scheme-format msgid "switched from generation ~a to ~a~%" msgstr "" -#: guix/ui.scm:1979 +#: guix/ui.scm:1982 #, scheme-format msgid "deleting ~a~%" msgstr "" -#: guix/ui.scm:2010 +#: guix/ui.scm:2013 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "" -#: guix/ui.scm:2102 +#: guix/ui.scm:2105 msgid "" "Usage: guix OPTION | COMMAND ARGS...\n" "Run COMMAND with ARGS, if given.\n" msgstr "" -#: guix/ui.scm:2105 +#: guix/ui.scm:2108 msgid "" "\n" " -h, --help display this helpful text again and exit" msgstr "" -#: guix/ui.scm:2107 +#: guix/ui.scm:2110 msgid "" "\n" " -V, --version display version and copyright information and exit" msgstr "" -#: guix/ui.scm:2112 +#: guix/ui.scm:2115 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "" -#: guix/ui.scm:2154 +#: guix/ui.scm:2157 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "" -#: guix/ui.scm:2156 +#: guix/ui.scm:2159 #, scheme-format msgid "Did you mean @code{~a}?" msgstr "" -#: guix/ui.scm:2190 +#: guix/ui.scm:2193 #, scheme-format msgid "guix: missing command name~%" msgstr "" -#: guix/ui.scm:2198 +#: guix/ui.scm:2201 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "" @@ -6377,22 +6521,22 @@ msgstr "" msgid "unsupported manifest format" msgstr "" -#: guix/profiles.scm:2242 +#: guix/profiles.scm:2247 #, scheme-format msgid "while creating directory `~a': ~a" msgstr "" -#: guix/profiles.scm:2247 +#: guix/profiles.scm:2252 #, scheme-format msgid "Please create the @file{~a} directory, with you as the owner." msgstr "" -#: guix/profiles.scm:2256 +#: guix/profiles.scm:2261 #, scheme-format msgid "directory `~a' is not owned by you" msgstr "" -#: guix/profiles.scm:2260 +#: guix/profiles.scm:2265 #, scheme-format msgid "Please change the owner of @file{~a} to user ~s." msgstr "" @@ -6992,11 +7136,16 @@ msgstr "" msgid "'--profile' cannot be used with package options~%" msgstr "" -#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:275 +#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:261 #, scheme-format msgid "no packages specified; creating an empty environment~%" msgstr "" +#: guix/scripts/environment.scm:979 +#, scheme-format +msgid "'--check' is unnecessary when using '--container'; doing nothing~%" +msgstr "" + #: guix/scripts/home/import.scm:179 msgid "" ";; This \"home-environment\" file can be passed to 'guix home reconfigure'\n" @@ -7006,89 +7155,89 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/home.scm:65 +#: guix/scripts/home.scm:66 msgid "" "Usage: guix home [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the home environment declared in FILE according to ACTION.\n" "Some ACTIONS support additional ARGS.\n" msgstr "" -#: guix/scripts/home.scm:71 +#: guix/scripts/home.scm:72 msgid " search search for existing service types\n" msgstr "" -#: guix/scripts/home.scm:73 +#: guix/scripts/home.scm:74 msgid " reconfigure switch to a new home environment configuration\n" msgstr "" -#: guix/scripts/home.scm:75 +#: guix/scripts/home.scm:76 msgid " roll-back switch to the previous home environment configuration\n" msgstr "" -#: guix/scripts/home.scm:77 +#: guix/scripts/home.scm:78 msgid " describe describe the current home environment\n" msgstr "" -#: guix/scripts/home.scm:79 +#: guix/scripts/home.scm:80 msgid " list-generations list the home environment generations\n" msgstr "" -#: guix/scripts/home.scm:81 +#: guix/scripts/home.scm:82 msgid " switch-generation switch to an existing home environment configuration\n" msgstr "" -#: guix/scripts/home.scm:83 +#: guix/scripts/home.scm:84 msgid " delete-generations delete old home environment generations\n" msgstr "" -#: guix/scripts/home.scm:85 +#: guix/scripts/home.scm:86 msgid " build build the home environment without installing anything\n" msgstr "" -#: guix/scripts/home.scm:87 +#: guix/scripts/home.scm:88 msgid " import generates a home environment definition from dotfiles\n" msgstr "" -#: guix/scripts/home.scm:91 +#: guix/scripts/home.scm:92 msgid "" "\n" " -e, --expression=EXPR consider the home-environment EXPR evaluates to\n" " instead of reading FILE, when applicable" msgstr "" -#: guix/scripts/home.scm:196 +#: guix/scripts/home.scm:210 #, scheme-format msgid "'~a' does not return a home environment ~%" msgstr "" -#: guix/scripts/home.scm:280 +#: guix/scripts/home.scm:293 #, scheme-format msgid "'~a' populated with all the Home configuration files~%" msgstr "" -#: guix/scripts/home.scm:282 +#: guix/scripts/home.scm:295 #, scheme-format msgid "" "Run @command{guix home reconfigure ~a/home-configuration.scm} to effectively\n" "deploy the home environment described by these files.\n" msgstr "" -#: guix/scripts/home.scm:289 +#: guix/scripts/home.scm:302 #, scheme-format msgid "no home environment generation, nothing to describe~%" msgstr "" -#: guix/scripts/home.scm:358 +#: guix/scripts/home.scm:371 #, scheme-format msgid "guix home: missing command name~%" msgstr "" -#: guix/scripts/home.scm:360 +#: guix/scripts/home.scm:373 #, scheme-format msgid "Try 'guix home --help' for more information.~%" msgstr "" -#: guix/scripts/home.scm:528 +#: guix/scripts/home.scm:541 #, scheme-format msgid "cannot switch to home environment generation '~a'~%" msgstr "" @@ -7125,7 +7274,7 @@ msgstr "" #: guix/scripts/import/cpan.scm:83 guix/scripts/import/crate.scm:97 #: guix/scripts/import/egg.scm:100 guix/scripts/import/gem.scm:98 -#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:100 +#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:101 #, scheme-format msgid "failed to download meta-data for package '~a'~%" msgstr "" @@ -7200,7 +7349,7 @@ msgid "" " --pin-versions use the exact versions of a module's dependencies" msgstr "" -#: guix/scripts/import/go.scm:117 +#: guix/scripts/import/go.scm:118 #, scheme-format msgid "failed to download meta-data for module '~a'.~%" msgstr "" @@ -7317,6 +7466,11 @@ msgid "" "Import and convert the Texlive package for PACKAGE-NAME.\n" msgstr "" +#: guix/scripts/import/texlive.scm:84 +#, scheme-format +msgid "failed to import package '~a'~%" +msgstr "" + #: guix/scripts/offload.scm:130 #, scheme-format msgid "The 'system' field is deprecated, please use 'systems' instead.~%" @@ -7751,54 +7905,54 @@ msgstr "" msgid "~a: unknown type of REPL~%" msgstr "" -#: guix/scripts/shell.scm:46 +#: guix/scripts/shell.scm:48 msgid "" "Usage: guix shell [OPTION] PACKAGES... [-- COMMAND...]\n" "Build an environment that includes PACKAGES and execute COMMAND or an\n" "interactive shell in that environment.\n" msgstr "" -#: guix/scripts/shell.scm:52 +#: guix/scripts/shell.scm:54 msgid "" "\n" " -D, --development include the development inputs of the next package" msgstr "" -#: guix/scripts/shell.scm:54 +#: guix/scripts/shell.scm:56 msgid "" "\n" " -f, --file=FILE add to the environment the package FILE evaluates to" msgstr "" -#: guix/scripts/shell.scm:56 +#: guix/scripts/shell.scm:58 msgid "" "\n" " -q inhibit loading of 'guix.scm' and 'manifest.scm'" msgstr "" -#: guix/scripts/shell.scm:58 +#: guix/scripts/shell.scm:60 msgid "" "\n" " --rebuild-cache rebuild cached environment, if any" msgstr "" -#: guix/scripts/shell.scm:199 +#: guix/scripts/shell.scm:201 #, fuzzy, scheme-format #| msgid "invalid argument: ~a~%" msgid "ignoring invalid file name: '~a'~%" msgstr "잘못된 인수: ~a~%" -#: guix/scripts/shell.scm:280 +#: guix/scripts/shell.scm:266 #, scheme-format msgid "loading environment from '~a'...~%" msgstr "" -#: guix/scripts/shell.scm:286 +#: guix/scripts/shell.scm:272 #, scheme-format msgid "not loading '~a' because not authorized to do so~%" msgstr "" -#: guix/scripts/shell.scm:288 +#: guix/scripts/shell.scm:274 #, scheme-format msgid "" "To allow automatic loading of\n" @@ -7810,60 +7964,76 @@ msgid "" "@end example\n" msgstr "" -#: guix/scripts/shell.scm:386 +#: guix/scripts/shell.scm:431 msgid "" "Consider passing the @option{--check} option once\n" "to make sure your shell does not clobber environment variables." msgstr "" -#: guix/scripts/style.scm:241 +#: guix/scripts/style.scm:499 #, scheme-format msgid "~a: complex expression, bailing out~%" msgstr "" -#: guix/scripts/style.scm:259 +#: guix/scripts/style.scm:517 #, scheme-format msgid "~a: input label '~a' does not match package name, bailing out~%" msgstr "" -#: guix/scripts/style.scm:264 +#: guix/scripts/style.scm:522 #, scheme-format msgid "~a: non-trivial input, bailing out~%" msgstr "" -#: guix/scripts/style.scm:288 +#: guix/scripts/style.scm:546 #, scheme-format msgid "~a: input expression is too short~%" msgstr "" -#: guix/scripts/style.scm:380 +#: guix/scripts/style.scm:638 #, scheme-format msgid "~a: unsupported input style, bailing out~%" msgstr "" -#: guix/scripts/style.scm:392 +#: guix/scripts/style.scm:650 #, scheme-format msgid "would be edited~%" msgstr "" -#: guix/scripts/style.scm:482 +#: guix/scripts/style.scm:721 +#, scheme-format +msgid "no definition location for package ~a~%" +msgstr "" + +#: guix/scripts/style.scm:767 +#, scheme-format +msgid "~a: unknown styling~%" +msgstr "~a: 알려지지 않은 스타일링~%" + +#: guix/scripts/style.scm:774 #, scheme-format msgid "~a: invalid input simplification policy~%" msgstr "" -#: guix/scripts/style.scm:496 +#: guix/scripts/style.scm:788 msgid "" "Usage: guix style [OPTION]... [PACKAGE]...\n" "Update package definitions to the latest style.\n" msgstr "" -#: guix/scripts/style.scm:498 +#: guix/scripts/style.scm:790 +msgid "" +"\n" +" -S, --styling=RULE apply RULE, a styling rule" +msgstr "" + +#: guix/scripts/style.scm:793 msgid "" "\n" " -n, --dry-run display files that would be edited but do nothing" msgstr "" -#: guix/scripts/style.scm:504 +#: guix/scripts/style.scm:799 msgid "" "\n" " --input-simplification=POLICY\n" @@ -8013,3 +8183,6 @@ msgstr "" #: nix/nix-daemon/guix-daemon.cc:162 msgid "produce debugging output" msgstr "" + +#~ msgid "Please select a disk." +#~ msgstr "디스크를 선택해주세요." diff --git a/po/guix/nl.po b/po/guix/nl.po index 6b6b6fa7b9..452b3ecdfd 100644 --- a/po/guix/nl.po +++ b/po/guix/nl.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: GNU guix\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" "PO-Revision-Date: 2021-09-28 18:05+0000\n" "Last-Translator: Maxime Devos \n" "Language-Team: Dutch \n" @@ -60,37 +60,37 @@ msgstr "" msgid "Try adding @code{(use-service-modules ~a)}." msgstr "Probeer @code{(use-service-modules ~a)} toe te voegen." -#: gnu/packages.scm:96 +#: gnu/packages.scm:97 #, scheme-format msgid "~a: patch not found" msgstr "~a: pleister niet gevonden" -#: gnu/packages.scm:480 gnu/packages.scm:521 +#: gnu/packages.scm:481 gnu/packages.scm:522 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "dubbelzinnige pakketomschrijving ‘~a’~%" -#: gnu/packages.scm:481 gnu/packages.scm:522 +#: gnu/packages.scm:482 gnu/packages.scm:523 #, scheme-format msgid "choosing ~a@~a from ~a~%" msgstr "~a@~a gekozen uit ~a~%" -#: gnu/packages.scm:486 guix/scripts/package.scm:216 +#: gnu/packages.scm:487 guix/scripts/package.scm:218 #, scheme-format msgid "package '~a' has been superseded by '~a'~%" msgstr "pakket ‘~a’ is vervangen door ‘~a’~%" -#: gnu/packages.scm:493 gnu/packages.scm:510 +#: gnu/packages.scm:494 gnu/packages.scm:511 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A: pakket niet gevonden voor versie ~a~%" -#: gnu/packages.scm:494 gnu/packages.scm:511 +#: gnu/packages.scm:495 gnu/packages.scm:512 #, scheme-format msgid "~A: unknown package~%" msgstr "~A: onbekend pakket~%" -#: gnu/packages.scm:550 +#: gnu/packages.scm:551 #, scheme-format msgid "package `~a' lacks output `~a'~%" msgstr "pakket ‘~a’ heeft geen ‘~a’-uitvoer~%" @@ -312,7 +312,7 @@ msgstr "" "die nog steeds aan het draaien zijn een aantal seconden nadat het @code{SIGTERM} signaal\n" "verzonden is, worden beëindigd met @code{SIGKILL}." -#: gnu/home/services.scm:127 +#: gnu/home/services.scm:128 #, fuzzy #| msgid "" #| "Build the operating system top-level directory, which in\n" @@ -324,7 +324,7 @@ msgid "" "packages, configuration files, activation script, and so on." msgstr "Bouw de buitenste map van een besturingssysteem dat verwijst naar alles wat het besturingssysteem nodig heeft: de kernel, initrd, het systeemprofiel, het opstartscript en zo voort." -#: gnu/home/services.scm:158 +#: gnu/home/services.scm:159 #, scheme-format msgid "" "This is the @dfn{home profile} and can be found in\n" @@ -333,22 +333,22 @@ msgid "" "@code{home-environment} record." msgstr "" -#: gnu/home/services.scm:180 +#: gnu/home/services.scm:181 #, scheme-format msgid "duplicate definition for `~a' environment variable ~%" msgstr "" -#: gnu/home/services.scm:242 +#: gnu/home/services.scm:243 msgid "Set the environment variables." msgstr "" -#: gnu/home/services.scm:253 +#: gnu/home/services.scm:254 #, fuzzy, scheme-format #| msgid "duplicate '~a' entry for /etc" msgid "duplicate '~a' entry for files/" msgstr "‘~a’ meermaals gegeven voor /etc" -#: gnu/home/services.scm:277 +#: gnu/home/services.scm:278 #, scheme-format msgid "" "Configuration files for programs that\n" @@ -357,7 +357,7 @@ msgstr "" #. TRANSLATORS: 'on-first-login' is the name of a service and #. shouldn't be translated -#: gnu/home/services.scm:308 +#: gnu/home/services.scm:309 msgid "" "XDG_RUNTIME_DIR doesn't exists, on-first-login script\n" "won't execute anything. You can check if xdg runtime directory exists,\n" @@ -365,13 +365,13 @@ msgid "" "script by running '$HOME/.guix-home/on-first-login'" msgstr "" -#: gnu/home/services.scm:328 +#: gnu/home/services.scm:329 msgid "" "Run gexps on first user login. Can be\n" "extended with one gexp." msgstr "" -#: gnu/home/services.scm:391 +#: gnu/home/services.scm:392 msgid "" "Run gexps to activate the current\n" "generation of home environment and update the state of the home\n" @@ -380,33 +380,33 @@ msgid "" "with one gexp, but many times, and all gexps must be idempotent." msgstr "" -#: gnu/home/services.scm:472 +#: gnu/home/services.scm:473 #, scheme-format msgid "" "Comparing ~a and\n" "~10t~a..." msgstr "" -#: gnu/home/services.scm:474 +#: gnu/home/services.scm:475 #, scheme-format msgid " done (~a)\n" msgstr "" #. TRANSLATORS: 'on-change' is the name of a service type, it #. probably shouldn't be translated. -#: gnu/home/services.scm:483 +#: gnu/home/services.scm:484 msgid "" "Evaluating on-change gexps.\n" "\n" msgstr "" -#: gnu/home/services.scm:485 +#: gnu/home/services.scm:486 msgid "" "On-change gexps evaluation finished.\n" "\n" msgstr "" -#: gnu/home/services.scm:499 +#: gnu/home/services.scm:500 msgid "" "G-expressions to run if the specified files have changed since the\n" "last generation. The extension should be a list of lists where the\n" @@ -414,7 +414,7 @@ msgid "" "changed, and the second element is the G-expression to be evaluated." msgstr "" -#: gnu/home/services.scm:519 +#: gnu/home/services.scm:520 #, fuzzy #| msgid "" #| "Store provenance information about the system in the system\n" @@ -709,13 +709,13 @@ msgstr "" msgid "Updater for ELPA packages" msgstr "Bijwerker voor OPAM-pakketten" -#: guix/import/github.scm:170 +#: guix/import/github.scm:175 #, fuzzy, scheme-format #| msgid "URI ~a unreachable: ~a" msgid "~a is unreachable (~a)~%" msgstr "URI ~a niet bereikbaar: ~a" -#: guix/import/github.scm:260 +#: guix/import/github.scm:274 #, fuzzy #| msgid "Updater for GNU packages" msgid "Updater for GitHub packages" @@ -759,13 +759,23 @@ msgstr "~A: pakket niet gevonden voor versie ~a~%" msgid "failed to determine latest release of GNU ~a" msgstr "kon de laatste bovenstroomse uitgave van ‘~a’ niet vinden~%" -#: guix/import/go.scm:569 +#: guix/import/go.scm:571 #, fuzzy, scheme-format #| msgid "no target of type '~a' for service '~a'" msgid "unsupported vcs type '~a' for package '~a'" msgstr "geen doelwit van type ‘~a’ voor dienst ‘~a’" -#: guix/import/go.scm:647 +#: guix/import/go.scm:594 +#, scheme-format +msgid "version ~a of ~a is not available~%" +msgstr "" + +#: guix/import/go.scm:597 +#, scheme-format +msgid "Pick one of the following available versions:~{ ~a~}." +msgstr "" + +#: guix/import/go.scm:671 #, scheme-format msgid "" "Failed to import package ~s.\n" @@ -773,14 +783,6 @@ msgid "" "This package and its dependencies won't be imported.~%" msgstr "" -#: guix/import/go.scm:656 -#, fuzzy, scheme-format -#| msgid "failed to import '~a' from '~a'~%" -msgid "" -"Failed to import package ~s.\n" -"reason: ~s.~%" -msgstr "invoeren van ‘~a’ vanaf ‘~a’ mislukt~%" - #: guix/import/minetest.scm:178 #, scheme-format msgid "In ~a: author names must consist of at least a single character.~%" @@ -879,80 +881,102 @@ msgstr "pakket ‘~a’ kon niet gevonden worden~%" msgid "Updater for OPAM packages" msgstr "Bijwerker voor OPAM-pakketten" -#: guix/import/pypi.scm:230 +#: guix/import/pypi.scm:233 msgid "Could not extract requirement name in spec:" msgstr "" -#: guix/import/pypi.scm:290 +#: guix/import/pypi.scm:293 #, scheme-format msgid "parse-requires.txt reached an unexpected condition on line ~a~%" msgstr "" -#: guix/import/pypi.scm:356 +#: guix/import/pypi.scm:359 #, fuzzy, scheme-format #| msgid "failed to import '~a' from '~a'~%" msgid "Failed to extract file: ~a from wheel.~%" msgstr "invoeren van ‘~a’ vanaf ‘~a’ mislukt~%" -#: guix/import/pypi.scm:385 +#: guix/import/pypi.scm:388 #, scheme-format msgid "Cannot guess requirements from source archive: no requires.txt file found.~%" msgstr "" -#: guix/import/pypi.scm:390 +#: guix/import/pypi.scm:393 #, scheme-format msgid "Unsupported archive format; cannot determine package dependencies from source archive: ~a~%" msgstr "" -#: guix/import/pypi.scm:489 +#: guix/import/pypi.scm:434 +#, scheme-format +msgid "project name ~a does not appear verbatim in the PyPI URI~%" +msgstr "" + +#: guix/import/pypi.scm:437 +#, scheme-format +msgid "" +"The PyPI URI is: @url{~a}. You should review the\n" +"pypi-uri declaration in the generated package. You may need to replace ~s with\n" +"a substring of the PyPI URI that identifies the package." +msgstr "" + +#: guix/import/pypi.scm:505 #, scheme-format msgid "no source release for pypi package ~a ~a~%" msgstr "" -#: guix/import/pypi.scm:554 +#: guix/import/pypi.scm:509 +#, scheme-format +msgid "" +"This indicates that the\n" +"package is available on PyPI, but only as a \"wheel\" containing binaries, not\n" +"source. To build it from source, refer to the upstream repository at\n" +"@uref{~a}." +msgstr "" + +#: guix/import/pypi.scm:579 #, fuzzy #| msgid "Updater for OPAM packages" msgid "Updater for PyPI packages" msgstr "Bijwerker voor OPAM-pakketten" -#: gnu/installer.scm:214 +#: gnu/installer.scm:217 msgid "Locale" msgstr "Taalgebied" -#: gnu/installer.scm:230 gnu/installer/newt/timezone.scm:58 +#: gnu/installer.scm:233 gnu/installer/newt/timezone.scm:58 msgid "Timezone" msgstr "Tijdzone" -#: gnu/installer.scm:247 +#: gnu/installer.scm:250 msgid "Keyboard mapping selection" msgstr "Toetsenbordindeling kiezen" -#: gnu/installer.scm:256 gnu/installer/newt/hostname.scm:26 +#: gnu/installer.scm:259 gnu/installer/newt/hostname.scm:26 msgid "Hostname" msgstr "Hostnaam" -#: gnu/installer.scm:265 +#: gnu/installer.scm:268 msgid "Network selection" msgstr "Netwerkverbinding kiezen" -#: gnu/installer.scm:272 +#: gnu/installer.scm:275 msgid "Substitute server discovery" msgstr "Ontdekking van vervangingsservers" -#: gnu/installer.scm:279 gnu/installer/newt/user.scm:68 -#: gnu/installer/newt/user.scm:205 +#: gnu/installer.scm:282 gnu/installer/newt/user.scm:67 +#: gnu/installer/newt/user.scm:204 msgid "User creation" msgstr "Gebruikers aanmaken" -#: gnu/installer.scm:287 +#: gnu/installer.scm:290 msgid "Services" msgstr "Diensten" -#: gnu/installer.scm:298 +#: gnu/installer.scm:301 msgid "Partitioning" msgstr "Partitioneren" -#: gnu/installer.scm:305 gnu/installer/newt/final.scm:53 +#: gnu/installer.scm:308 gnu/installer/newt/final.scm:53 msgid "Configuration file" msgstr "Configuratiebestand" @@ -964,19 +988,85 @@ msgstr "Kon de staat van Connman niet vaststellen." msgid "Unable to find expected regexp." msgstr "Kon de verwachte reguliere expressie niet terugvinden." -#: gnu/installer/newt.scm:52 +#: gnu/installer/newt.scm:58 msgid "Press for installation parameters." msgstr "Druk op voor installatieparameters." -#: gnu/installer/newt.scm:65 -#, scheme-format -msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +#: gnu/installer/newt.scm:68 +#, fuzzy +#| msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. You may choose to exit or create a dump archive." msgstr "Tijdens de installatie trad een onverwachte fout op. Hieronder zijn de stappen (‘backtrace’) die daartoe hebben geleid. Gelieve dit via e-mail te melden aan <~a>." -#: gnu/installer/newt.scm:68 +#: gnu/installer/newt.scm:71 msgid "Unexpected problem" msgstr "Onverwacht probleem" +#: gnu/installer/newt.scm:75 +msgid "Dump" +msgstr "" + +#: gnu/installer/newt.scm:76 gnu/installer/newt/ethernet.scm:79 +#: gnu/installer/newt/keymap.scm:56 gnu/installer/newt/locale.scm:43 +#: gnu/installer/newt/network.scm:65 gnu/installer/newt/network.scm:82 +#: gnu/installer/newt/page.scm:315 gnu/installer/newt/page.scm:679 +#: gnu/installer/newt/page.scm:763 gnu/installer/newt/page.scm:828 +#: gnu/installer/newt/partition.scm:54 gnu/installer/newt/partition.scm:90 +#: gnu/installer/newt/partition.scm:125 gnu/installer/newt/partition.scm:140 +#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 +#: gnu/installer/newt/partition.scm:706 gnu/installer/newt/partition.scm:764 +#: gnu/installer/newt/partition.scm:775 gnu/installer/newt/services.scm:124 +#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/wifi.scm:206 +msgid "Exit" +msgstr "Sluit af" + +#: gnu/installer/newt.scm:82 +#, scheme-format +msgid "The dump archive was created as ~a. Would you like to send this archive to the Guix servers?" +msgstr "" + +#: gnu/installer/newt.scm:84 +msgid "Dump archive created" +msgstr "" + +#: gnu/installer/newt.scm:88 +#, scheme-format +msgid "The dump was uploaded as ~a. Please report it by email to ~a." +msgstr "" + +#: gnu/installer/newt.scm:90 +#, fuzzy +#| msgid "some services could not be upgraded~%" +msgid "The dump could not be uploaded." +msgstr "enkele diensten konden niet bijgewerkt worden~%" + +#: gnu/installer/newt.scm:93 +msgid "Dump upload result" +msgstr "" + +#: gnu/installer/newt.scm:132 +#, fuzzy, scheme-format +#| msgid "Command failed with exit code ~a.~%" +msgid "External command ~s exited with code ~a" +msgstr "Opdracht mislukt met afsluitcode ~a.~%" + +#: gnu/installer/newt.scm:135 +#, scheme-format +msgid "External command ~s terminated by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:138 +#, scheme-format +msgid "External command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:140 +#, fuzzy +#| msgid "internal commands" +msgid "External command error" +msgstr "opdrachten voor intern gebruik" + #: gnu/installer/newt/ethernet.scm:66 msgid "No ethernet service available, please try again." msgstr "Geen dienst voor bedrade netwerken beschikbaar. Probeer opnieuw." @@ -985,59 +1075,45 @@ msgstr "Geen dienst voor bedrade netwerken beschikbaar. Probeer opnieuw." msgid "No service" msgstr "Geen dienst" -#: gnu/installer/newt/ethernet.scm:76 +#: gnu/installer/newt/ethernet.scm:74 msgid "Please select an ethernet network." msgstr "Kies een bedraad netwerk." -#: gnu/installer/newt/ethernet.scm:77 +#: gnu/installer/newt/ethernet.scm:75 msgid "Ethernet connection" msgstr "Bedrade verbinding" -#: gnu/installer/newt/ethernet.scm:81 gnu/installer/newt/keymap.scm:56 -#: gnu/installer/newt/locale.scm:43 gnu/installer/newt/network.scm:63 -#: gnu/installer/newt/network.scm:84 gnu/installer/newt/page.scm:309 -#: gnu/installer/newt/page.scm:673 gnu/installer/newt/page.scm:758 -#: gnu/installer/newt/partition.scm:56 gnu/installer/newt/partition.scm:91 -#: gnu/installer/newt/partition.scm:126 gnu/installer/newt/partition.scm:141 -#: gnu/installer/newt/partition.scm:638 gnu/installer/newt/partition.scm:661 -#: gnu/installer/newt/partition.scm:707 gnu/installer/newt/partition.scm:765 -#: gnu/installer/newt/partition.scm:776 gnu/installer/newt/services.scm:130 -#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:204 -#: gnu/installer/newt/wifi.scm:206 -msgid "Exit" -msgstr "Sluit af" - #: gnu/installer/newt/final.scm:46 #, scheme-format msgid "We're now ready to proceed with the installation! A system configuration file has been generated, it is displayed below. This file will be available as '~a' on the installed system. The new system will be created from this file once you've pressed OK. This will take a few minutes." msgstr "We zijn nu klaar om te beginnen met de installatie! Hieronder wordt de aangemaakte systeemconfiguratie getoond die als “~a” beschikbaar zijn op het geïnstalleerde systeem. Klik op OK om op basis van dit bestand het nieuwe systeem aan te maken. Dit zal enkele minuten duren." -#: gnu/installer/newt/final.scm:70 +#: gnu/installer/newt/final.scm:68 msgid "Installation complete" msgstr "Installatie voltooid" -#: gnu/installer/newt/final.scm:71 gnu/installer/newt/parameters.scm:45 +#: gnu/installer/newt/final.scm:69 gnu/installer/newt/parameters.scm:45 #: gnu/installer/newt/welcome.scm:145 msgid "Reboot" msgstr "Opnieuw opstarten" -#: gnu/installer/newt/final.scm:72 +#: gnu/installer/newt/final.scm:70 msgid "Congratulations! Installation is now complete. You may remove the device containing the installation image and press the button to reboot." msgstr "Gefeliciteerd! De installatie is nu voltooid. Verwijder het apparaat met het installatiemedium en start opnieuw op door op deze knop te drukken." -#: gnu/installer/newt/final.scm:86 +#: gnu/installer/newt/final.scm:84 msgid "Installation failed" msgstr "Installatie mislukt" -#: gnu/installer/newt/final.scm:87 +#: gnu/installer/newt/final.scm:85 msgid "Resume" msgstr "Herneem" -#: gnu/installer/newt/final.scm:88 +#: gnu/installer/newt/final.scm:86 msgid "Restart the installer" msgstr "Herbegin met de installatie" -#: gnu/installer/newt/final.scm:89 +#: gnu/installer/newt/final.scm:87 msgid "The final system installation step failed. You can resume from a specific step, or restart the installer." msgstr "De laatste stap in de installatie van het systeem is mislukt. Je kan de installatie vanaf een gekozen stap hernemen of volledig opnieuw beginnen." @@ -1065,9 +1141,9 @@ msgstr "Kies een van de volgende parameters of druk op “Terug” om terug te k msgid "Installation parameters" msgstr "Installatieparameters" -#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:74 -#: gnu/installer/newt/locale.scm:63 gnu/installer/newt/locale.scm:78 -#: gnu/installer/newt/locale.scm:94 gnu/installer/newt/partition.scm:595 +#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:72 +#: gnu/installer/newt/locale.scm:61 gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:88 gnu/installer/newt/partition.scm:594 #: gnu/installer/newt/timezone.scm:64 msgid "Back" msgstr "Terug" @@ -1088,16 +1164,16 @@ msgstr "Kies je toetsenbordindeling. Het zal enkel gebruikt worden tijdens de in msgid "Please choose your keyboard layout. It will be used during the install process, and for the installed system. Non-Latin layouts can be toggled with Alt+Shift. You can switch to a different layout at any time from the parameters menu." msgstr "Kies je toetsenbordindeling. Het zal zowel tijdens de installatie als voor het geïnstalleerde systeem gebruikt worden. Wisselen tussen andere alfabetten dan het Latijnse kan met Alt+Shift. Vanuit het parametermenu kan je op elk moment van indeling wisselen." -#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:62 -#: gnu/installer/newt/page.scm:308 +#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/page.scm:314 msgid "Continue" msgstr "Ga verder" -#: gnu/installer/newt/keymap.scm:67 +#: gnu/installer/newt/keymap.scm:65 msgid "Variant" msgstr "Variant" -#: gnu/installer/newt/keymap.scm:70 +#: gnu/installer/newt/keymap.scm:68 msgid "Please choose a variant for your keyboard layout." msgstr "Kies de variant van je toetsenbordindeling." @@ -1109,35 +1185,35 @@ msgstr "Taal" msgid "Choose the language to use for the installation process and for the installed system." msgstr "Kies de taal die door zowel de installatie als het geïnstalleerde systeem gebruikt zal worden." -#: gnu/installer/newt/locale.scm:57 +#: gnu/installer/newt/locale.scm:55 msgid "Locale location" msgstr "Plaats" -#: gnu/installer/newt/locale.scm:60 +#: gnu/installer/newt/locale.scm:58 msgid "Choose a territory for this language." msgstr "Kies het taalgebied voor deze taal." -#: gnu/installer/newt/locale.scm:71 +#: gnu/installer/newt/locale.scm:67 msgid "Locale codeset" msgstr "Tekenset" -#: gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:70 msgid "Choose the locale encoding." msgstr "Kies de tekenset voor deze taal." -#: gnu/installer/newt/locale.scm:86 +#: gnu/installer/newt/locale.scm:80 msgid "Locale modifier" msgstr "Regionale wijziging" -#: gnu/installer/newt/locale.scm:89 +#: gnu/installer/newt/locale.scm:83 msgid "Choose your locale's modifier. The most frequent modifier is euro. It indicates that you want to use Euro as the currency symbol." msgstr "Kies de aanpassing van je landsinstellingen. De meestgebruikte landsinstelling is euro. Dat duidt aan dat je de euro als munteenheid wilt gebruiken." -#: gnu/installer/newt/locale.scm:190 +#: gnu/installer/newt/locale.scm:181 msgid "No location" msgstr "Geen gebied" -#: gnu/installer/newt/locale.scm:217 +#: gnu/installer/newt/locale.scm:208 msgid "No modifier" msgstr "Geen variant" @@ -1153,277 +1229,283 @@ msgstr "Installatiemenu" msgid "Abort" msgstr "Stop" -#: gnu/installer/newt/network.scm:61 gnu/installer/newt/network.scm:80 +#: gnu/installer/newt/network.scm:63 gnu/installer/newt/network.scm:78 msgid "Internet access" msgstr "internettoegang" -#: gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/network.scm:66 msgid "The install process requires Internet access but no network devices were found. Do you want to continue anyway?" msgstr "Het intallatieprocess heeft internettoegang nodig, maar er werden geen netwerkapparaten gevonden. Wil je toch voortgaan?" -#: gnu/installer/newt/network.scm:78 +#: gnu/installer/newt/network.scm:76 msgid "The install process requires Internet access. Please select a network device." msgstr "Het installatieproces heeft internettoegang nodig. Gelieve een netwerkadapter te kiezen." -#: gnu/installer/newt/network.scm:103 +#: gnu/installer/newt/network.scm:99 msgid "Powering technology" msgstr "Technologie aan het opstarten" -#: gnu/installer/newt/network.scm:104 +#: gnu/installer/newt/network.scm:100 #, scheme-format msgid "Waiting for technology ~a to be powered." msgstr "Wachten tot technologie ~a is opgestart ..." -#: gnu/installer/newt/network.scm:128 +#: gnu/installer/newt/network.scm:139 msgid "Checking connectivity" msgstr "De verbinding wordt nagekeken" -#: gnu/installer/newt/network.scm:129 +#: gnu/installer/newt/network.scm:140 msgid "Waiting for Internet access establishment..." msgstr "Aan het wachten tot dat we met het internet verbonden zijn ..." -#: gnu/installer/newt/network.scm:139 -msgid "The selected network does not provide access to the Internet, please try again." +#: gnu/installer/newt/network.scm:150 +#, fuzzy +#| msgid "The selected network does not provide access to the Internet, please try again." +msgid "The selected network does not provide access to the Internet and the Guix substitute server, please try again." msgstr "Het gekozen netwerk biedt geen toegang tot het Internet; probeer opnieuw." -#: gnu/installer/newt/network.scm:141 gnu/installer/newt/wifi.scm:108 +#: gnu/installer/newt/network.scm:152 gnu/installer/newt/wifi.scm:108 msgid "Connection error" msgstr "Verbindingsfout" -#: gnu/installer/newt/page.scm:198 +#: gnu/installer/newt/page.scm:204 #, scheme-format msgid "Connecting to ~a, please wait." msgstr "Aan het verbinden met ~a, even wachten." -#: gnu/installer/newt/page.scm:199 +#: gnu/installer/newt/page.scm:205 msgid "Connection in progress" msgstr "Bezig met verbinden" -#: gnu/installer/newt/page.scm:218 gnu/installer/newt/user.scm:60 +#: gnu/installer/newt/page.scm:224 gnu/installer/newt/user.scm:59 msgid "Show" msgstr "Toon" -#: gnu/installer/newt/page.scm:225 gnu/installer/newt/page.scm:672 -#: gnu/installer/newt/page.scm:757 gnu/installer/newt/partition.scm:458 -#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 -#: gnu/installer/newt/partition.scm:699 gnu/installer/newt/user.scm:66 -#: gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/page.scm:231 gnu/installer/newt/page.scm:678 +#: gnu/installer/newt/page.scm:762 gnu/installer/newt/partition.scm:457 +#: gnu/installer/newt/partition.scm:636 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:698 gnu/installer/newt/user.scm:65 +#: gnu/installer/newt/user.scm:202 msgid "OK" msgstr "OK" -#: gnu/installer/newt/page.scm:251 +#: gnu/installer/newt/page.scm:257 msgid "Please enter a non empty input." msgstr "Gelieve geen lege invoer in te geven." -#: gnu/installer/newt/page.scm:252 gnu/installer/newt/user.scm:123 +#: gnu/installer/newt/page.scm:258 gnu/installer/newt/user.scm:122 msgid "Empty input" msgstr "Lege invoer" -#: gnu/installer/newt/page.scm:760 +#: gnu/installer/newt/page.scm:765 msgid "Edit" msgstr "Bewerken" -#: gnu/installer/newt/partition.scm:47 +#: gnu/installer/newt/page.scm:825 +msgid "Ok" +msgstr "" + +#: gnu/installer/newt/partition.scm:45 msgid "Everything is one partition" msgstr "Alles op één partitie" -#: gnu/installer/newt/partition.scm:48 +#: gnu/installer/newt/partition.scm:46 msgid "Separate /home partition" msgstr "Aparte /home-partitie" -#: gnu/installer/newt/partition.scm:50 +#: gnu/installer/newt/partition.scm:48 msgid "Please select a partitioning scheme." msgstr "Kies een partitiemethode." -#: gnu/installer/newt/partition.scm:51 +#: gnu/installer/newt/partition.scm:49 msgid "Partition scheme" msgstr "Partitieschema" #. TRANSLATORS: The ~{ and ~} format specifiers are used to iterate the list #. of device names of the user partitions that will be formatted. -#: gnu/installer/newt/partition.scm:65 +#: gnu/installer/newt/partition.scm:63 #, scheme-format msgid "We are about to write the configured partition table to the disk and format the partitions listed below. Their data will be lost. Do you wish to continue?~%~%~{ - ~a~%~}" msgstr "We gaan de geconfigureerde partitietabel naar de schijf schrijven en de partities formatteren zoals hieronder neergelijst. Hun oude gegevens zullen verloren gaan. Wil je verdergaan? ~%~%~{ - ~a~%~}" -#: gnu/installer/newt/partition.scm:71 +#: gnu/installer/newt/partition.scm:69 msgid "Format disk?" msgstr "Schijf formatteren?" -#: gnu/installer/newt/partition.scm:74 +#: gnu/installer/newt/partition.scm:72 msgid "Partition formatting is in progress, please wait." msgstr "Even geduld, de partities worden geformatteerd." -#: gnu/installer/newt/partition.scm:75 +#: gnu/installer/newt/partition.scm:73 msgid "Preparing partitions" msgstr "Partities aan het voorbereiden" -#: gnu/installer/newt/partition.scm:86 -msgid "Please select a disk." -msgstr "Kies een opslagapparaat." +#: gnu/installer/newt/partition.scm:84 +msgid "Please select a disk. The installation device as well as the small devices are filtered." +msgstr "" -#: gnu/installer/newt/partition.scm:87 +#: gnu/installer/newt/partition.scm:86 msgid "Disk" msgstr "Opslagapparaat" -#: gnu/installer/newt/partition.scm:102 +#: gnu/installer/newt/partition.scm:101 msgid "Select a new partition table type. Be careful, all data on the disk will be lost." msgstr "Kies een nieuwe partitietabeltype. Wees voorzichting; alle oude gegevens op de schijf zal verloren gaan." -#: gnu/installer/newt/partition.scm:104 +#: gnu/installer/newt/partition.scm:103 msgid "Partition table" msgstr "Partitietabel" -#: gnu/installer/newt/partition.scm:121 +#: gnu/installer/newt/partition.scm:120 msgid "Please select a partition type." msgstr "Kies een partitietype." -#: gnu/installer/newt/partition.scm:122 +#: gnu/installer/newt/partition.scm:121 msgid "Partition type" msgstr "Partitietype" -#: gnu/installer/newt/partition.scm:132 +#: gnu/installer/newt/partition.scm:131 msgid "Please select the file-system type for this partition." msgstr "Kies een bestandssysteemtype voor deze partitie." -#: gnu/installer/newt/partition.scm:133 +#: gnu/installer/newt/partition.scm:132 msgid "File-system type" msgstr "Bestandssysteemtype" -#: gnu/installer/newt/partition.scm:150 +#: gnu/installer/newt/partition.scm:149 msgid "Primary partitions count exceeded." msgstr "Het maximaal aantal primaire partities is overschreden." -#: gnu/installer/newt/partition.scm:151 gnu/installer/newt/partition.scm:156 -#: gnu/installer/newt/partition.scm:161 +#: gnu/installer/newt/partition.scm:150 gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:160 msgid "Creation error" msgstr "Aanmaakfout" -#: gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:154 msgid "Extended partition creation error." msgstr "Fout bij aanmaak van uitgebreide partitie." -#: gnu/installer/newt/partition.scm:160 +#: gnu/installer/newt/partition.scm:159 msgid "Logical partition creation error." msgstr "Fout bij het aanmaken van een logische partitie." -#: gnu/installer/newt/partition.scm:174 +#: gnu/installer/newt/partition.scm:173 #, scheme-format msgid "Please enter the password for the encryption of partition ~a (label: ~a)." msgstr "Voer het wachtwoord voor de versleuteling van partitie ~a (label: ~a) in." -#: gnu/installer/newt/partition.scm:176 gnu/installer/newt/wifi.scm:92 +#: gnu/installer/newt/partition.scm:175 gnu/installer/newt/wifi.scm:92 msgid "Password required" msgstr "Wachtwoord is vereist" -#: gnu/installer/newt/partition.scm:181 +#: gnu/installer/newt/partition.scm:180 #, scheme-format msgid "Please confirm the password for the encryption of partition ~a (label: ~a)." msgstr "Bevestig het wachtwoord voor de versleuteling van de partitie ~a (label: ~a)." -#: gnu/installer/newt/partition.scm:183 gnu/installer/newt/user.scm:160 +#: gnu/installer/newt/partition.scm:182 gnu/installer/newt/user.scm:159 msgid "Password confirmation required" msgstr "Het wachtwoord moet bevestigd worden" -#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 +#: gnu/installer/newt/partition.scm:194 gnu/installer/newt/user.scm:167 msgid "Password mismatch, please try again." msgstr "De wachtwoorden komen niet overeen. Probeer eens opnieuw." -#: gnu/installer/newt/partition.scm:196 gnu/installer/newt/user.scm:169 +#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 msgid "Password error" msgstr "Wachtwoordfout" -#: gnu/installer/newt/partition.scm:282 +#: gnu/installer/newt/partition.scm:281 msgid "Please enter the partition gpt name." msgstr "Voer de naam van de gpt-partitie in." -#: gnu/installer/newt/partition.scm:283 +#: gnu/installer/newt/partition.scm:282 msgid "Partition name" msgstr "Naam van de partitie" -#: gnu/installer/newt/partition.scm:313 +#: gnu/installer/newt/partition.scm:312 msgid "Please enter the encrypted label" msgstr "Voer het label van de versleutelde schijf in" -#: gnu/installer/newt/partition.scm:314 +#: gnu/installer/newt/partition.scm:313 msgid "Encryption label" msgstr "Versleutellabel" -#: gnu/installer/newt/partition.scm:331 +#: gnu/installer/newt/partition.scm:330 #, scheme-format msgid "Please enter the size of the partition. The maximum size is ~a." msgstr "Kies de grootte van de partitie in. De maximumgrootte is ~a." -#: gnu/installer/newt/partition.scm:333 +#: gnu/installer/newt/partition.scm:332 msgid "Partition size" msgstr "Partitiegrootte" -#: gnu/installer/newt/partition.scm:351 +#: gnu/installer/newt/partition.scm:350 msgid "The percentage can not be superior to 100." msgstr "Het percentage mag 100% niet overschrijden." -#: gnu/installer/newt/partition.scm:352 gnu/installer/newt/partition.scm:357 -#: gnu/installer/newt/partition.scm:362 +#: gnu/installer/newt/partition.scm:351 gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:361 msgid "Size error" msgstr "Fout in grootte" -#: gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:355 msgid "The requested size is incorrectly formatted, or too large." msgstr "De ingegeven grootte is niet in het juiste formaat of te groot." -#: gnu/installer/newt/partition.scm:361 +#: gnu/installer/newt/partition.scm:360 msgid "The request size is superior to the maximum size." msgstr "De ingegeven grootte is groter dan de maximumgrootte." -#: gnu/installer/newt/partition.scm:381 +#: gnu/installer/newt/partition.scm:380 msgid "Please enter the desired mounting point for this partition. Leave this field empty if you don't want to set a mounting point." msgstr "Voer het gewenste aankoppelpunt voor deze partitie in. Laat dit veld leeg als je deze partitie niet wilt aankoppelen." -#: gnu/installer/newt/partition.scm:383 +#: gnu/installer/newt/partition.scm:382 msgid "Mounting point" msgstr "Aankoppelpunt" -#: gnu/installer/newt/partition.scm:447 +#: gnu/installer/newt/partition.scm:446 #, scheme-format msgid "Creating ~a partition starting at ~a of ~a." msgstr "Een ~a-partitie wordt aangemaakt op ~a van het begin van ~a." -#: gnu/installer/newt/partition.scm:449 +#: gnu/installer/newt/partition.scm:448 #, scheme-format msgid "You are currently editing partition ~a." msgstr "Je bent nu de partitie ~a aan het bewerken." -#: gnu/installer/newt/partition.scm:452 +#: gnu/installer/newt/partition.scm:451 msgid "Partition creation" msgstr "Aanmaak van partities" -#: gnu/installer/newt/partition.scm:453 +#: gnu/installer/newt/partition.scm:452 msgid "Partition edit" msgstr "Partitiebewerking" -#: gnu/installer/newt/partition.scm:634 +#: gnu/installer/newt/partition.scm:633 #, scheme-format msgid "Are you sure you want to delete everything on disk ~a?" msgstr "Weet je zeker dat je alles op de schijf ~a wilt wissen?" -#: gnu/installer/newt/partition.scm:636 +#: gnu/installer/newt/partition.scm:635 msgid "Delete disk" msgstr "Opslagapparaat verwijderen" -#: gnu/installer/newt/partition.scm:651 +#: gnu/installer/newt/partition.scm:650 msgid "You cannot delete a free space area." msgstr "Je kan geen lege ruimte verwijderen." -#: gnu/installer/newt/partition.scm:652 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:651 gnu/installer/newt/partition.scm:658 msgid "Delete partition" msgstr "Verwijder partitie" -#: gnu/installer/newt/partition.scm:657 +#: gnu/installer/newt/partition.scm:656 #, scheme-format msgid "Are you sure you want to delete partition ~a?" msgstr "Weet je zeker dat je de partitie ~a wilt verwijderen?" -#: gnu/installer/newt/partition.scm:674 +#: gnu/installer/newt/partition.scm:673 msgid "" "You can change a disk's partition table by selecting it and pressing ENTER. You can also edit a partition by selecting it and pressing ENTER, or remove it by pressing DELETE. To create a new partition, select a free space area and press ENTER.\n" "\n" @@ -1433,53 +1515,53 @@ msgstr "" "\n" "Er moet ten minste één partitie bestaan met als aankoppelpunt '/'." -#: gnu/installer/newt/partition.scm:680 +#: gnu/installer/newt/partition.scm:679 #, scheme-format msgid "This is the proposed partitioning. It is still possible to edit it or to go back to install menu by pressing the Exit button.~%~%" msgstr "Dit is de voorgestelde partitionering. Het is nog steeds mogelijk de schijven anders te partitioneren of terug te keren naar het installatiemenu door op de verlaatknop te drukken.~%~%" -#: gnu/installer/newt/partition.scm:690 +#: gnu/installer/newt/partition.scm:689 msgid "Guided partitioning" msgstr "Geassisteerde configuratie van partities" -#: gnu/installer/newt/partition.scm:691 +#: gnu/installer/newt/partition.scm:690 msgid "Manual partitioning" msgstr "Handmatig verdelen in partities" -#: gnu/installer/newt/partition.scm:716 +#: gnu/installer/newt/partition.scm:715 msgid "No root mount point found." msgstr "Er werd geen wortelaankoppelpunt gevonden." -#: gnu/installer/newt/partition.scm:717 +#: gnu/installer/newt/partition.scm:716 msgid "Missing mount point" msgstr "Aankoppelpunt ontbreekt" -#: gnu/installer/newt/partition.scm:721 +#: gnu/installer/newt/partition.scm:720 #, scheme-format msgid "Cannot read the ~a partition UUID. You may need to format it." msgstr "Kan de ~a partitie UUID niet lezen. Je moet het misschien formatteren." -#: gnu/installer/newt/partition.scm:724 +#: gnu/installer/newt/partition.scm:723 msgid "Wrong partition format" msgstr "Foutief partitieformaat" -#: gnu/installer/newt/partition.scm:755 +#: gnu/installer/newt/partition.scm:754 msgid "Guided - using the entire disk" msgstr "Geassisteerd – gebruik de volledige schijf" -#: gnu/installer/newt/partition.scm:756 +#: gnu/installer/newt/partition.scm:755 msgid "Guided - using the entire disk with encryption" msgstr "Geassisteerd – gebruik de volledige schijf met versleuteling" -#: gnu/installer/newt/partition.scm:757 +#: gnu/installer/newt/partition.scm:756 msgid "Manual" msgstr "Handmatig" -#: gnu/installer/newt/partition.scm:759 +#: gnu/installer/newt/partition.scm:758 msgid "Please select a partitioning method." msgstr "Kies een partitiemethode." -#: gnu/installer/newt/partition.scm:760 +#: gnu/installer/newt/partition.scm:759 msgid "Partitioning method" msgstr "Partitiemethode" @@ -1491,41 +1573,41 @@ msgstr "Kies de bureaubladomgeving(en) die je wil installeren. Als je meerdere b msgid "Desktop environment" msgstr "Bureaubladomgeving" -#: gnu/installer/newt/services.scm:59 +#: gnu/installer/newt/services.scm:57 msgid "You can now select networking services to run on your system." msgstr "Je kunt nu netwerkdiensten kiezen om uit te voeren op je systeem." -#: gnu/installer/newt/services.scm:61 +#: gnu/installer/newt/services.scm:59 msgid "Network service" msgstr "Netwerkdienst" -#: gnu/installer/newt/services.scm:79 +#: gnu/installer/newt/services.scm:75 #, fuzzy #| msgid "You can now select other services to run on your system." msgid "You can now select the CUPS printing service to run on your system." msgstr "Je kunt nu andere services op je systeem uitvoeren." -#: gnu/installer/newt/services.scm:81 +#: gnu/installer/newt/services.scm:77 msgid "Printing and document services" msgstr "" -#: gnu/installer/newt/services.scm:100 +#: gnu/installer/newt/services.scm:94 #, fuzzy #| msgid "No service" msgid "Console services" msgstr "Geen dienst" -#: gnu/installer/newt/services.scm:101 +#: gnu/installer/newt/services.scm:95 #, fuzzy #| msgid "You can now select networking services to run on your system." msgid "Select miscellaneous services to run on your non-graphical system." msgstr "Je kunt nu netwerkdiensten kiezen om uit te voeren op je systeem." -#: gnu/installer/newt/services.scm:115 +#: gnu/installer/newt/services.scm:109 msgid "Network management" msgstr "Netwerkbeheer" -#: gnu/installer/newt/services.scm:118 +#: gnu/installer/newt/services.scm:112 msgid "" "Choose the method to manage network connections.\n" "\n" @@ -1561,57 +1643,57 @@ msgstr "" msgid "Please select a timezone." msgstr "Selecteer een tijdzone." -#: gnu/installer/newt/user.scm:45 +#: gnu/installer/newt/user.scm:44 msgid "Name" msgstr "Naam" -#: gnu/installer/newt/user.scm:47 +#: gnu/installer/newt/user.scm:46 msgid "Real name" msgstr "Echte naam" -#: gnu/installer/newt/user.scm:49 +#: gnu/installer/newt/user.scm:48 msgid "Home directory" msgstr "Persoonlijke map" -#: gnu/installer/newt/user.scm:51 +#: gnu/installer/newt/user.scm:50 msgid "Password" msgstr "Wachtwoord" -#: gnu/installer/newt/user.scm:122 +#: gnu/installer/newt/user.scm:121 msgid "Empty inputs are not allowed." msgstr "Lege invoer is niet toegestaan." -#: gnu/installer/newt/user.scm:159 +#: gnu/installer/newt/user.scm:158 msgid "Please confirm the password." msgstr "Bevestig je wachtwoord." #. TRANSLATORS: Leave "root" untranslated: it refers to the name of the #. system administrator account. -#: gnu/installer/newt/user.scm:176 +#: gnu/installer/newt/user.scm:175 msgid "Please choose a password for the system administrator (\"root\")." msgstr "Kies een wachtwoord voor de systeembeheerder (\"root\")." -#: gnu/installer/newt/user.scm:178 +#: gnu/installer/newt/user.scm:177 msgid "System administrator password" msgstr "Wachtwoord van systeembeheerder" -#: gnu/installer/newt/user.scm:191 +#: gnu/installer/newt/user.scm:190 msgid "Please add at least one user to system using the 'Add' button." msgstr "Voer ten minste één gebruiken aan het systeem toe met de 'Voeg toe'-knop." -#: gnu/installer/newt/user.scm:194 +#: gnu/installer/newt/user.scm:193 msgid "Add" msgstr "Voeg toe" -#: gnu/installer/newt/user.scm:195 +#: gnu/installer/newt/user.scm:194 msgid "Delete" msgstr "Verwijder" -#: gnu/installer/newt/user.scm:255 +#: gnu/installer/newt/user.scm:254 msgid "Please create at least one user." msgstr "Maak ten minste één gebruiker aan." -#: gnu/installer/newt/user.scm:256 +#: gnu/installer/newt/user.scm:255 msgid "No user" msgstr "Geen gebruiker" @@ -1687,60 +1769,60 @@ msgstr "Geen WiFi gedetecteerd" msgid "Wifi" msgstr "WiFi" -#: gnu/installer/parted.scm:433 gnu/installer/parted.scm:470 +#: gnu/installer/parted.scm:455 gnu/installer/parted.scm:492 msgid "Free space" msgstr "Vrije ruimte" -#: gnu/installer/parted.scm:559 +#: gnu/installer/parted.scm:581 #, scheme-format msgid "Name: ~a" msgstr "Naam: ~a" -#: gnu/installer/parted.scm:560 gnu/installer/parted.scm:606 +#: gnu/installer/parted.scm:582 gnu/installer/parted.scm:628 msgid "None" msgstr "Geen" -#: gnu/installer/parted.scm:565 +#: gnu/installer/parted.scm:587 #, scheme-format msgid "Type: ~a" msgstr "Type: ~a" -#: gnu/installer/parted.scm:569 +#: gnu/installer/parted.scm:591 #, scheme-format msgid "File system type: ~a" msgstr "Bestandssysteemtype: ~a" -#: gnu/installer/parted.scm:575 +#: gnu/installer/parted.scm:597 #, scheme-format msgid "Bootable flag: ~:[off~;on~]" msgstr "Opstartbaarheidsvlagje: ~:[uit~;aan~]" -#: gnu/installer/parted.scm:579 +#: gnu/installer/parted.scm:601 #, scheme-format msgid "ESP flag: ~:[off~;on~]" msgstr "ESP-vlagje: ~:[uit~;aan~]" -#: gnu/installer/parted.scm:585 +#: gnu/installer/parted.scm:607 #, scheme-format msgid "Size: ~a" msgstr "Grootte: ~a" -#: gnu/installer/parted.scm:591 +#: gnu/installer/parted.scm:613 #, scheme-format msgid "Encryption: ~:[No~a~;Yes (label '~a')~]" msgstr "Versleuteling: ~:[Uit~a~;Aan (etiket '~a')~]" -#: gnu/installer/parted.scm:597 +#: gnu/installer/parted.scm:619 #, scheme-format msgid "Format the partition? ~:[No~;Yes~]" msgstr "Partitie formatteren? ~:[Nee~;Ja~]" -#: gnu/installer/parted.scm:603 +#: gnu/installer/parted.scm:625 #, scheme-format msgid "Mount point: ~a" msgstr "Aankoppelpunt: ~a" -#: gnu/installer/parted.scm:1466 +#: gnu/installer/parted.scm:1477 #, scheme-format msgid "Device ~a is still in use." msgstr "Apparaat ~a is nog in gebruik." @@ -1784,7 +1866,7 @@ msgstr "CUPS afdruksysteem (standaard geen webinterface)" #. TRANSLATORS: This is a comment within a Scheme file. Each line must #. start with ";; " (two semicolons and a space). Please keep line #. length below 60 characters. -#: gnu/installer/steps.scm:252 +#: gnu/installer/steps.scm:242 msgid "" ";; This is an operating system configuration generated\n" ";; by the graphical installer.\n" @@ -1797,71 +1879,91 @@ msgstr "" msgid "Unable to locate path: ~a." msgstr "Kon niet de plaats ~a vinden." -#: gnu/installer/utils.scm:83 +#: gnu/installer/utils.scm:131 #, scheme-format msgid "Press Enter to continue.~%" msgstr "Druk op de entertoets om verder te gaan.~%" -#: gnu/installer/utils.scm:108 -#, scheme-format -msgid "Command failed with exit code ~a.~%" +#: gnu/installer/utils.scm:150 +#, fuzzy, scheme-format +#| msgid "Command failed with exit code ~a.~%" +msgid "Command ~s exited with value ~a" msgstr "Opdracht mislukt met afsluitcode ~a.~%" -#: gnu/machine/ssh.scm:117 +#: gnu/installer/utils.scm:156 +#, scheme-format +msgid "Command ~s killed by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:162 +#, scheme-format +msgid "Command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:167 +#, scheme-format +msgid "Command ~s succeeded" +msgstr "" + +#: gnu/installer/utils.scm:179 +msgid "run-command-in-installer not set" +msgstr "" + +#: gnu/machine/ssh.scm:120 #, scheme-format msgid " without a 'host-key' is deprecated~%" msgstr " zonder een ‘host-key’ is verouderd.~%" -#: gnu/machine/ssh.scm:192 +#: gnu/machine/ssh.scm:208 #, scheme-format msgid "device '~a' not found: ~a" msgstr "toestel '~a' werd niet gevonden: ~a" -#: gnu/machine/ssh.scm:207 +#: gnu/machine/ssh.scm:223 #, scheme-format msgid "no file system with label '~a'" msgstr "een bestandssysteem met etiket '~a'" -#: gnu/machine/ssh.scm:226 +#: gnu/machine/ssh.scm:242 #, scheme-format msgid "no file system with UUID '~a'" msgstr "geen bestandssysteem met UUID '~a'" -#: gnu/machine/ssh.scm:276 +#: gnu/machine/ssh.scm:295 #, scheme-format msgid "missing modules for ~a:~{ ~a~}~%" msgstr "ontbrekende modules voor ~a:~{ ~a~}~%" -#: gnu/machine/ssh.scm:311 +#: gnu/machine/ssh.scm:333 #, scheme-format msgid "incorrect target system ('~a' was given, while the system reports that it is '~a')~%" msgstr "fout doelsysteem (‘~a’ was opgegeven terwijl het systeem mededeeld dat het ‘~a’ is)~%" -#: gnu/machine/ssh.scm:437 +#: gnu/machine/ssh.scm:459 #, scheme-format msgid "no signing key '~a'. have you run 'guix archive --generate-key?'" msgstr "geen sleutel '~a' voor ondertekening. Heb je ‘guix archive --generate-key’ uitgevoerd?" -#: gnu/machine/ssh.scm:469 +#: gnu/machine/ssh.scm:491 #, scheme-format msgid "failed to switch systems while deploying '~a':~%~{~s ~}" msgstr "kon niet van systeem wisselen tijdens de implementatie '~a':~%~{~s ~}" -#: gnu/machine/ssh.scm:477 +#: gnu/machine/ssh.scm:499 #, scheme-format msgid "an error occurred while upgrading services on '~a':~%~{~s ~}~%" msgstr "er trad een fout op bij het upgraden van services op '~a':~%~{~s ~}~%" -#: gnu/machine/ssh.scm:485 +#: gnu/machine/ssh.scm:507 #, scheme-format msgid "failed to install bootloader on '~a':~%~{~s ~}~%" msgstr "installeren van bootlader mislukte op '~a':~%~{~s ~}~%" -#: gnu/machine/ssh.scm:518 +#: gnu/machine/ssh.scm:540 msgid "could not roll-back machine" msgstr "kon de machine niet terugzetten" -#: gnu/machine/ssh.scm:559 +#: gnu/machine/ssh.scm:581 msgid "" "Provisioning for machines that are accessible over SSH\n" "and have a known host-name. This entails little more than maintaining an SSH\n" @@ -1871,7 +1973,7 @@ msgstr "" "over SSH en een bekende domeinnaam hebben. Hiervoor is niet veel meer dan\n" "slechts een SSH-verbinding tot de machine nodig." -#: gnu/machine/ssh.scm:569 +#: gnu/machine/ssh.scm:591 #, scheme-format msgid "" "unsupported machine configuration '~a'\n" @@ -1880,20 +1982,20 @@ msgstr "" "niet ondersteunde configuration ‘~a’\n" "voor een omgeving van type ‘~a’" -#: gnu/packages/bootstrap.scm:178 +#: gnu/packages/bootstrap.scm:188 #, scheme-format msgid "could not find bootstrap binary '~a' for system '~a'" msgstr "kon het kiembestand ‘~a’ voor systeem ‘~a’ niet vinden" -#: gnu/packages/bootstrap.scm:492 +#: gnu/packages/bootstrap.scm:578 msgid "Raw build system with direct store access" msgstr "Ongeraffineerd bouwsysteem met directe toegang tot het depot" -#: gnu/packages/bootstrap.scm:500 +#: gnu/packages/bootstrap.scm:586 msgid "Pre-built Guile for bootstrapping purposes." msgstr "Voorgebouwde Guile voor ontkiemingsdoeleinden." -#: guix/build/utils.scm:822 +#: guix/build/utils.scm:823 #, scheme-format msgid "'~a~{ ~a~}' exited with status ~a; output follows:~%~%~{ ~a~%~}" msgstr "‘~a~{ ~a~}’ beëindigd met status ~a, met uitvoer:~%~%~{ ~a~%~}" @@ -1933,7 +2035,7 @@ msgid "~A: unrecognized option~%" msgstr "~A: optie is niet herkend~%" #: guix/scripts.scm:169 guix/scripts/import.scm:140 -#: guix/scripts/system.scm:1370 +#: guix/scripts/system.scm:1379 #, scheme-format msgid "Did you mean @code{~a}?~%" msgstr "Bedoelde je @code{~a}?~%" @@ -1988,7 +2090,7 @@ msgstr "kon geen wortel ‘~a’ aanmaken voor de afvalophaler: ~a~%" #: guix/scripts/build.scm:154 guix/scripts/search.scm:42 #: guix/scripts/show.scm:41 guix/scripts/lint.scm:112 guix/scripts/edit.scm:48 #: guix/scripts/size.scm:246 guix/scripts/graph.scm:553 -#: guix/scripts/repl.scm:80 guix/scripts/style.scm:500 +#: guix/scripts/repl.scm:80 guix/scripts/style.scm:795 msgid "" "\n" " -L, --load-path=DIR prepend DIR to the package module search path" @@ -2190,7 +2292,7 @@ msgstr "" "\n" " -s, --system=SYSTEEM probeer te bouwen voor SYSTEEM, bv. \"i686-linux\"" -#: guix/scripts/build.scm:357 guix/scripts/system.scm:1023 +#: guix/scripts/build.scm:357 guix/scripts/system.scm:1026 #: guix/scripts/pack.scm:1329 guix/scripts/archive.scm:97 msgid "" "\n" @@ -2234,13 +2336,13 @@ msgstr "" " -r, --root=FILE laat FILE een symbolische verwijzing naar het eindresultaat zijn\n" " en leg het vast als wortel voor de afvalophaler" -#: guix/scripts/build.scm:368 guix/scripts/package.scm:486 +#: guix/scripts/build.scm:368 guix/scripts/package.scm:488 #: guix/scripts/install.scm:37 guix/scripts/remove.scm:36 #: guix/scripts/upgrade.scm:39 guix/scripts/pull.scm:117 -#: guix/scripts/system.scm:1025 guix/scripts/copy.scm:122 -#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:60 +#: guix/scripts/system.scm:1028 guix/scripts/copy.scm:122 +#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:66 #: guix/scripts/archive.scm:99 guix/scripts/environment.scm:123 -#: guix/scripts/home.scm:94 +#: guix/scripts/home.scm:98 msgid "" "\n" " -v, --verbosity=LEVEL use the given verbosity LEVEL" @@ -2265,30 +2367,30 @@ msgstr "" " --log-file geef de bestandsnaam van de logboeken terug voor de opgegeven distillaties" #: guix/scripts/build.scm:379 guix/scripts/download.scm:104 -#: guix/scripts/package.scm:504 guix/scripts/install.scm:44 +#: guix/scripts/package.scm:506 guix/scripts/install.scm:44 #: guix/scripts/remove.scm:41 guix/scripts/upgrade.scm:48 #: guix/scripts/search.scm:37 guix/scripts/show.scm:36 guix/scripts/gc.scm:88 #: guix/scripts/git.scm:34 guix/scripts/git/authenticate.scm:110 #: guix/scripts/hash.scm:98 guix/scripts/import.scm:98 #: guix/scripts/import/minetest.scm:46 guix/scripts/import/cran.scm:49 #: guix/scripts/pull.scm:125 guix/scripts/substitute.scm:250 -#: guix/scripts/system.scm:1032 guix/scripts/lint.scm:115 +#: guix/scripts/system.scm:1035 guix/scripts/lint.scm:115 #: guix/scripts/publish.scm:119 guix/scripts/edit.scm:51 #: guix/scripts/size.scm:249 guix/scripts/graph.scm:558 #: guix/scripts/challenge.scm:430 guix/scripts/copy.scm:127 #: guix/scripts/pack.scm:1357 guix/scripts/weather.scm:336 #: guix/scripts/describe.scm:96 guix/scripts/processes.scm:301 -#: guix/scripts/deploy.scm:55 guix/scripts/container.scm:35 +#: guix/scripts/deploy.scm:58 guix/scripts/container.scm:35 #: guix/scripts/container/exec.scm:43 guix/scripts/archive.scm:106 -#: guix/scripts/environment.scm:149 guix/scripts/home.scm:97 +#: guix/scripts/environment.scm:149 guix/scripts/home.scm:101 #: guix/scripts/time-machine.scm:67 guix/scripts/import/cpan.scm:44 #: guix/scripts/import/crate.scm:50 guix/scripts/import/egg.scm:45 #: guix/scripts/import/gem.scm:46 guix/scripts/import/gnu.scm:50 #: guix/scripts/import/go.scm:50 guix/scripts/import/json.scm:52 #: guix/scripts/import/opam.scm:45 guix/scripts/import/pypi.scm:46 #: guix/scripts/import/texlive.scm:45 guix/scripts/refresh.scm:187 -#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:67 -#: guix/scripts/style.scm:509 +#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:69 +#: guix/scripts/style.scm:804 msgid "" "\n" " -h, --help display this help and exit" @@ -2297,29 +2399,29 @@ msgstr "" " -h, --help toon deze hulp en sluit af" #: guix/scripts/build.scm:381 guix/scripts/download.scm:106 -#: guix/scripts/package.scm:506 guix/scripts/install.scm:46 +#: guix/scripts/package.scm:508 guix/scripts/install.scm:46 #: guix/scripts/remove.scm:43 guix/scripts/upgrade.scm:50 #: guix/scripts/search.scm:39 guix/scripts/show.scm:38 guix/scripts/gc.scm:90 #: guix/scripts/git.scm:36 guix/scripts/git/authenticate.scm:112 #: guix/scripts/hash.scm:100 guix/scripts/import.scm:100 #: guix/scripts/import/minetest.scm:50 guix/scripts/import/cran.scm:55 #: guix/scripts/pull.scm:127 guix/scripts/substitute.scm:252 -#: guix/scripts/system.scm:1034 guix/scripts/lint.scm:119 +#: guix/scripts/system.scm:1037 guix/scripts/lint.scm:119 #: guix/scripts/publish.scm:121 guix/scripts/edit.scm:53 #: guix/scripts/size.scm:251 guix/scripts/graph.scm:560 #: guix/scripts/challenge.scm:432 guix/scripts/copy.scm:129 #: guix/scripts/pack.scm:1359 guix/scripts/weather.scm:338 #: guix/scripts/describe.scm:98 guix/scripts/processes.scm:303 -#: guix/scripts/deploy.scm:57 guix/scripts/container.scm:37 +#: guix/scripts/deploy.scm:60 guix/scripts/container.scm:37 #: guix/scripts/container/exec.scm:45 guix/scripts/archive.scm:108 -#: guix/scripts/environment.scm:151 guix/scripts/home.scm:99 +#: guix/scripts/environment.scm:151 guix/scripts/home.scm:103 #: guix/scripts/time-machine.scm:69 guix/scripts/import/cpan.scm:46 #: guix/scripts/import/crate.scm:52 guix/scripts/import/egg.scm:49 #: guix/scripts/import/gem.scm:48 guix/scripts/import/gnu.scm:52 #: guix/scripts/import/json.scm:54 guix/scripts/import/opam.scm:52 #: guix/scripts/import/pypi.scm:50 guix/scripts/import/texlive.scm:47 #: guix/scripts/refresh.scm:189 guix/scripts/repl.scm:85 -#: guix/scripts/shell.scm:69 guix/scripts/style.scm:511 +#: guix/scripts/shell.scm:71 guix/scripts/style.scm:806 msgid "" "\n" " -V, --version display version information and exit" @@ -2580,165 +2682,165 @@ msgstr "modulenaam ~a komt niet overeen met bestandsnaam ‘~a’~%" msgid "\"bash-minimal\" should be in 'inputs' when '~a' is used" msgstr "\"bash-minimal\" moet in 'inputs' zijn als '~a' wordt gebruikt" -#: guix/lint.scm:616 +#: guix/lint.scm:614 msgid "no period allowed at the end of the synopsis" msgstr "geen punt toegestaan aan het einde van de synopsis" -#: guix/lint.scm:630 +#: guix/lint.scm:628 msgid "no article allowed at the beginning of the synopsis" msgstr "geen lidwoord toegestaan aan het begin van de synopsis" -#: guix/lint.scm:639 +#: guix/lint.scm:637 msgid "synopsis should be less than 80 characters long" msgstr "synopsis zou korter dan 80 tekens moeten zijn" -#: guix/lint.scm:648 +#: guix/lint.scm:646 msgid "synopsis should start with an upper-case letter or digit" msgstr "synopsis zou moeten beginnen met een hoofdletter of cijfer" -#: guix/lint.scm:656 +#: guix/lint.scm:654 msgid "synopsis should not start with the package name" msgstr "synopsis mag niet beginnen met de pakketnaam" -#: guix/lint.scm:670 +#: guix/lint.scm:668 msgid "Texinfo markup in synopsis is invalid" msgstr "Texinfo-opmaak in synopsis klopt niet" -#: guix/lint.scm:678 +#: guix/lint.scm:676 msgid "synopsis contains trailing whitespace" msgstr "synopsis achterliggende witruimte" -#: guix/lint.scm:695 +#: guix/lint.scm:693 msgid "synopsis should not be empty" msgstr "synopsis hoort niet leeg te zijn" -#: guix/lint.scm:705 +#: guix/lint.scm:703 #, scheme-format msgid "invalid synopsis: ~s" msgstr "ongeldige synopsis: ~s" -#: guix/lint.scm:805 +#: guix/lint.scm:803 #, scheme-format msgid "~a: HTTP GET error for ~a: ~a (~s)~%" msgstr "~a: HTTP GET fout voor ~a: ~a (~s)~%" -#: guix/lint.scm:815 +#: guix/lint.scm:813 #, scheme-format msgid "~a: host lookup failure: ~a~%" msgstr "~a: fout bij opzoeken van domein: ~a~%" -#: guix/lint.scm:820 +#: guix/lint.scm:818 #, scheme-format msgid "~a: TLS certificate error: ~a" msgstr "~a: TLS-certificaatfout: ~a" -#: guix/lint.scm:825 +#: guix/lint.scm:823 #, scheme-format msgid "~a: TLS error in '~a': ~a~%" msgstr "~a: TLS-fout in '~a': ~a~%" -#: guix/lint.scm:836 guix/ui.scm:820 guix/scripts/offload.scm:194 +#: guix/lint.scm:834 guix/ui.scm:820 guix/scripts/offload.scm:194 #, scheme-format msgid "~a: ~a~%" msgstr "~a: ~a~%" -#: guix/lint.scm:868 +#: guix/lint.scm:866 #, scheme-format msgid "URI ~a returned suspiciously small file (~a bytes)" msgstr "URI ~a verwijst naar een verdacht klein bestand (~a bytes)" -#: guix/lint.scm:877 +#: guix/lint.scm:875 #, scheme-format msgid "permanent redirect from ~a to ~a" msgstr "permanente omwijzing van ~a naar ~a" -#: guix/lint.scm:883 +#: guix/lint.scm:881 #, scheme-format msgid "invalid permanent redirect from ~a" msgstr "ongeldige permanente omwijzing van ~a" -#: guix/lint.scm:889 guix/lint.scm:899 +#: guix/lint.scm:887 guix/lint.scm:897 #, scheme-format msgid "URI ~a not reachable: ~a (~s)" msgstr "URI ~a kon niet bereikt worden: ~a (~s)" -#: guix/lint.scm:905 +#: guix/lint.scm:903 #, scheme-format msgid "URI ~a domain not found: ~a" msgstr "URI ~a domein niet gevonden: ~a" -#: guix/lint.scm:911 +#: guix/lint.scm:909 #, scheme-format msgid "URI ~a unreachable: ~a" msgstr "URI ~a niet bereikbaar: ~a" -#: guix/lint.scm:919 +#: guix/lint.scm:917 #, scheme-format msgid "TLS certificate error: ~a" msgstr "TLS-certificaatfout: ~a" -#: guix/lint.scm:946 +#: guix/lint.scm:944 msgid "invalid value for home page" msgstr "ongeldige waarde voor thuispagina" -#: guix/lint.scm:951 +#: guix/lint.scm:949 #, scheme-format msgid "invalid home page URL: ~s" msgstr "ongeldige URL voor thuispagina: ~s" -#: guix/lint.scm:988 +#: guix/lint.scm:986 msgid "file names of patches should start with the package name" msgstr "bestandsnamen van pleisters zouden moeten starten met de pakketnaam" -#: guix/lint.scm:1008 +#: guix/lint.scm:1006 #, fuzzy, scheme-format #| msgid "~a: file name is too long" msgid "~a: file name is too long, which may break 'make dist'" msgstr "~a: bestandsnaam is te lang" -#: guix/lint.scm:1029 +#: guix/lint.scm:1027 #, scheme-format msgid "~a: empty patch" msgstr "~a: pleisterbestand is leeg" -#: guix/lint.scm:1038 +#: guix/lint.scm:1036 #, scheme-format msgid "~a: patch lacks comment and upstream status" msgstr "~a: pleister heeft geen commentaar en geen informatie over bovenenstrooms" -#: guix/lint.scm:1099 +#: guix/lint.scm:1097 #, scheme-format msgid "proposed synopsis: ~s~%" msgstr "voorgestelde synopsis: ~s~%" -#: guix/lint.scm:1113 +#: guix/lint.scm:1111 #, scheme-format msgid "proposed description:~% \"~a\"~%" msgstr "voorgestelde beschrijving:~% \"~a\"~%" -#: guix/lint.scm:1164 +#: guix/lint.scm:1162 msgid "all the source URIs are unreachable:" msgstr "al deze broncode URI's zijn onreikbaar:" -#: guix/lint.scm:1193 +#: guix/lint.scm:1191 msgid "the source file name should contain the package name" msgstr "de bestandsnaam van de bron zou de pakketnaam moeten bevatten" -#: guix/lint.scm:1205 +#: guix/lint.scm:1203 msgid "the source URI should not be an autogenerated tarball" msgstr "de URI van de broncode zou geen automatisch aangemaakt archief mogen zijn" -#: guix/lint.scm:1229 +#: guix/lint.scm:1227 #, scheme-format msgid "URL should be 'mirror://~a/~a'" msgstr "URL zou ‘mirror://~a/~a’ moeten zijn" -#: guix/lint.scm:1269 +#: guix/lint.scm:1267 #, scheme-format msgid "while accessing '~a'" msgstr "tijdens het toegang tot '~a'" -#: guix/lint.scm:1276 +#: guix/lint.scm:1274 #, scheme-format msgid "URL should be '~a'" msgstr "URL zou ‘~a’ moeten zijn" @@ -2746,68 +2848,68 @@ msgstr "URL zou ‘~a’ moeten zijn" #. TRANSLATORS: check and #:tests? are a #. Scheme symbol and keyword respectively #. and should not be translated. -#: guix/lint.scm:1304 +#: guix/lint.scm:1302 msgid "the 'check' phase should respect #:tests?" msgstr "de 'check' fase moet #:tests? respecteren" -#: guix/lint.scm:1322 guix/lint.scm:1333 guix/lint.scm:1341 +#: guix/lint.scm:1320 guix/lint.scm:1331 guix/lint.scm:1339 #, scheme-format msgid "failed to create ~a derivation: ~a" msgstr "het aanmaken van de distillatie ~a mislukte: ~a" -#: guix/lint.scm:1327 +#: guix/lint.scm:1325 #, scheme-format msgid "failed to create ~a derivation: ~s" msgstr "maken van de distillatie ~a mislukte: ~s" -#: guix/lint.scm:1379 +#: guix/lint.scm:1377 #, scheme-format msgid "propagated inputs ~a and ~a collide" msgstr "herkauwd voer ~a en ~a staan in conflict" -#: guix/lint.scm:1403 +#: guix/lint.scm:1401 msgid "invalid license field" msgstr "ongeldig licentieveld" -#: guix/lint.scm:1410 +#: guix/lint.scm:1408 msgid "while retrieving CVE vulnerabilities" msgstr "bij het binnenhalen van CVE-zwaktes" -#: guix/lint.scm:1453 +#: guix/lint.scm:1451 #, scheme-format msgid "probably vulnerable to ~a" msgstr "waarschijnlijk onderhevig aan de zwakte ~a" -#: guix/lint.scm:1461 +#: guix/lint.scm:1459 #, scheme-format msgid "no updater for ~a" msgstr "geen updater voor ~a" -#: guix/lint.scm:1466 guix/lint.scm:1641 +#: guix/lint.scm:1464 guix/lint.scm:1639 #, scheme-format msgid "while retrieving upstream info for '~a'" msgstr "bij het ophalen van bovenstroomse informatie over ‘~a’" -#: guix/lint.scm:1475 +#: guix/lint.scm:1473 #, scheme-format msgid "can be upgraded to ~a" msgstr "kan geüpgraded worden tot ~a" -#: guix/lint.scm:1481 +#: guix/lint.scm:1479 #, scheme-format msgid "updater '~a' failed to find upstream releases" msgstr "updater ‘~a’ kon niet de bovenstroomse uitgaves vinden" -#: guix/lint.scm:1508 +#: guix/lint.scm:1506 #, scheme-format msgid "failed to access Disarchive database at ~a" msgstr "toegang tot de Disarchive-database op ~a mislukte" -#: guix/lint.scm:1535 +#: guix/lint.scm:1533 msgid "Software Heritage rate limit reached; try again later" msgstr "De beperking op het aantal verzoeken aan Software Heritage is overschreden; probeer later opnieuw" -#: guix/lint.scm:1539 +#: guix/lint.scm:1537 #, scheme-format msgid "'~a' returned ~a" msgstr "‘~a’ gaf ~a terug" @@ -2815,19 +2917,19 @@ msgstr "‘~a’ gaf ~a terug" #. TRANSLATORS: "Software Heritage" is a proper noun #. that must remain untranslated. See #. . -#: guix/lint.scm:1578 +#: guix/lint.scm:1576 msgid "scheduled Software Heritage archival" msgstr "afspraak gemaakt voor deponering in Software Heritage" -#: guix/lint.scm:1584 +#: guix/lint.scm:1582 msgid "archival rate limit exceeded; try again later" msgstr "het limiet op verzoeken voor deponering is overschreden; probeer later opnieuw" -#: guix/lint.scm:1605 +#: guix/lint.scm:1603 msgid "source not archived on Software Heritage and missing from the Disarchive database" msgstr "broncode is niet gearchiveerd op Software Heritage en ontbreekt in de Disarchive-database" -#: guix/lint.scm:1615 +#: guix/lint.scm:1613 #, fuzzy, scheme-format #| msgid "" #| "\n" @@ -2837,147 +2939,147 @@ msgstr "" "\n" "Disarchive ingang verwijst naar een niet-bestaande SWH map '~a'" -#: guix/lint.scm:1624 +#: guix/lint.scm:1622 msgid "unsupported source type" msgstr "niet-ondersteund type broncode" -#: guix/lint.scm:1633 +#: guix/lint.scm:1631 msgid "while connecting to Software Heritage" msgstr "bij het verbinden met Software Heritage" -#: guix/lint.scm:1650 +#: guix/lint.scm:1648 #, scheme-format msgid "ahead of Stackage LTS version ~a" msgstr "loopt voor op de versie ~a op Stackage LTS" -#: guix/lint.scm:1667 +#: guix/lint.scm:1665 #, scheme-format msgid "tabulation on line ~a, column ~a" msgstr "tabulator op lijn ~a, kolom ~a" -#: guix/lint.scm:1679 +#: guix/lint.scm:1677 #, scheme-format msgid "trailing white space on line ~a" msgstr "spatie aan het begin van de lijn ~a" -#: guix/lint.scm:1693 +#: guix/lint.scm:1691 #, scheme-format msgid "line ~a is way too long (~a characters)" msgstr "lijn ~a is veel te lang (~a tekens)" -#: guix/lint.scm:1707 +#: guix/lint.scm:1705 msgid "parentheses feel lonely, move to the previous or next line" msgstr "haakjes voelen zich eenzaam, verplaats ze naar de vorige of volgende lijn" -#: guix/lint.scm:1784 +#: guix/lint.scm:1782 msgid "source file not found" msgstr "bronbestand niet gevonden" -#: guix/lint.scm:1796 +#: guix/lint.scm:1794 msgid "Validate package names" msgstr "Controleer pakketnamen" -#: guix/lint.scm:1800 +#: guix/lint.scm:1798 msgid "Check if tests are explicitly enabled" msgstr "Controleer of tests expliciet zijn ingeschakeld" -#: guix/lint.scm:1804 +#: guix/lint.scm:1802 msgid "Validate package descriptions" msgstr "Controleer pakketbeschrijvingen" -#: guix/lint.scm:1808 +#: guix/lint.scm:1806 msgid "Identify inputs that should be native inputs" msgstr "Identificeer het voer dat inheems zou moeten zijn" -#: guix/lint.scm:1812 +#: guix/lint.scm:1810 msgid "Identify inputs that shouldn't be inputs at all" msgstr "Identificeer voer dat helemaal geen voer moet zijn" -#: guix/lint.scm:1816 +#: guix/lint.scm:1814 #, fuzzy #| msgid "Identify inputs that should be native inputs" msgid "Identify input labels that do not match package names" msgstr "Identificeer het voer dat inheems zou moeten zijn" -#: guix/lint.scm:1820 +#: guix/lint.scm:1818 msgid "Make sure 'wrap-program' can finds its interpreter." msgstr "Zorg ervoor dat 'wrap-program' zijn interpreter kan vinden." #. TRANSLATORS: is the name of a data type and must not be #. translated. -#: guix/lint.scm:1826 +#: guix/lint.scm:1824 msgid "Make sure the 'license' field is a or a list thereof" msgstr "Zorg ervoor dat het ‘license’-veld een is of een lijst van " -#: guix/lint.scm:1831 +#: guix/lint.scm:1829 msgid "Make sure tests are only run when requested" msgstr "Zorg ervoor dat tests alleen worden uitgevoerd op verzoek" -#: guix/lint.scm:1835 +#: guix/lint.scm:1833 msgid "Suggest 'mirror://' URLs" msgstr "Stel ‘mirror://’ URL's voor" -#: guix/lint.scm:1839 +#: guix/lint.scm:1837 msgid "Validate file names of sources" msgstr "Controleer bestandsnamen van bronnen" -#: guix/lint.scm:1843 +#: guix/lint.scm:1841 msgid "Check for autogenerated tarballs" msgstr "Controleer of er geen automatisch aangemaakte archieven gebruikt worden" -#: guix/lint.scm:1847 +#: guix/lint.scm:1845 msgid "Report failure to compile a package to a derivation" msgstr "Meld het mislukken van het opstellen van een distillatie voor een pakket" -#: guix/lint.scm:1852 +#: guix/lint.scm:1850 msgid "Report collisions that would occur due to propagated inputs" msgstr "Meld botsingen die zouden voorkomen wegens herkauwd voer" -#: guix/lint.scm:1857 +#: guix/lint.scm:1855 msgid "Validate file names and availability of patches" msgstr "Controleer bestandsnamen en de toegankelijkheid van pleisters" -#: guix/lint.scm:1861 +#: guix/lint.scm:1859 msgid "Validate patch headers" msgstr "Controleer de koppen van pleisters" -#: guix/lint.scm:1865 +#: guix/lint.scm:1863 msgid "Look for formatting issues in the source" msgstr "Controleer op opmaakfouten in de broncode" -#: guix/lint.scm:1872 +#: guix/lint.scm:1870 msgid "Validate package synopses" msgstr "Controleer de synopsissen van pakketten" -#: guix/lint.scm:1876 +#: guix/lint.scm:1874 msgid "Validate synopsis & description of GNU packages" msgstr "Controleer de synopsis en beschrijving van GNU-pakketten" -#: guix/lint.scm:1880 +#: guix/lint.scm:1878 msgid "Validate home-page URLs" msgstr "Controleer URL's van startpagina's" -#: guix/lint.scm:1884 +#: guix/lint.scm:1882 msgid "Validate source URLs" msgstr "Controleer URL's van bronnen" -#: guix/lint.scm:1888 +#: guix/lint.scm:1886 msgid "Suggest GitHub URLs" msgstr "Stel GitHub URL's voor" -#: guix/lint.scm:1892 +#: guix/lint.scm:1890 msgid "Check the Common Vulnerabilities and Exposures (CVE) database" msgstr "Controleer de Common Vulnerabilities and Exposures (CVE) database" -#: guix/lint.scm:1897 +#: guix/lint.scm:1895 msgid "Check the package for new upstream releases" msgstr "Controleer het pakket op nieuwe bovenstroomse uitgaves" -#: guix/lint.scm:1901 +#: guix/lint.scm:1899 msgid "Ensure source code archival on Software Heritage" msgstr "Zorg ervoor dat de broncode gearchiveerd is op Software Heritage" -#: guix/lint.scm:1905 +#: guix/lint.scm:1903 msgid "Ensure Haskell packages use Stackage LTS versions" msgstr "Zorg ervoor dat Haskell-pakketten versies van Stackage LTS gebruiken" @@ -3043,7 +3145,7 @@ msgstr "niet-ondersteund controlesomformaat: ~a~%" msgid "~a: unknown hash algorithm~%" msgstr "~a: onbekend controlesomalgoritme~%" -#: guix/scripts/download.scm:171 guix/scripts/package.scm:1087 +#: guix/scripts/download.scm:171 guix/scripts/package.scm:1090 #: guix/scripts/pull.scm:758 guix/scripts/publish.scm:1260 #: guix/scripts/discover.scm:136 guix/scripts/time-machine.scm:123 #, scheme-format @@ -3075,17 +3177,17 @@ msgstr "ga de generatie ~a niet verwijderen want ze is de huidige~%" msgid "no matching generation~%" msgstr "geen overeenkomende generatie~%" -#: guix/scripts/package.scm:159 +#: guix/scripts/package.scm:161 #, scheme-format msgid "nothing to be done~%" msgstr "er hoeft niets gedaan te worden~%" -#: guix/scripts/package.scm:260 +#: guix/scripts/package.scm:262 #, scheme-format msgid "package '~a' no longer exists~%" msgstr "pakket ‘~a’ bestaat niet meer~%" -#: guix/scripts/package.scm:315 +#: guix/scripts/package.scm:317 #, scheme-format msgid "" "Consider setting the necessary environment\n" @@ -3108,7 +3210,7 @@ msgstr "" "\n" "Voor een andere mogelijkheid, zie @command{guix package --search-paths -p ~s}." -#: guix/scripts/package.scm:361 +#: guix/scripts/package.scm:363 msgid "" ";; This \"manifest\" file can be passed to 'guix package -m' to reproduce\n" ";; the content of your profile. This is \"symbolic\": it only specifies\n" @@ -3122,12 +3224,12 @@ msgstr "" ";; je ook de lijst van gebruikte kanalen bewaren, zoals teruggegeven door ‘guix describe’.\n" ";; Zie de sectie ‘Guix reproduceren’ in de handleiding.\n" -#: guix/scripts/package.scm:393 +#: guix/scripts/package.scm:395 #, scheme-format msgid "no provenance information for this profile~%" msgstr "geen informatie over de herkomst van dit profiel~%" -#: guix/scripts/package.scm:395 +#: guix/scripts/package.scm:397 msgid "" ";; This channel file can be passed to 'guix pull -C' or to\n" ";; 'guix time-machine -C' to obtain the Guix revision that was\n" @@ -3137,14 +3239,14 @@ msgstr "" ";; ‘guix time-machine -C’ gevoerd worden om de versie van Guix\n" ";; te bekomen die gebruikt was om dit profiel in te vullen.\n" -#: guix/scripts/package.scm:407 +#: guix/scripts/package.scm:409 #, scheme-format msgid ";; Note: these other commits were also used to install some of the packages in this profile:~%" msgstr "" ";; Opmerking: deze andere commits werden ook gebruikt om enkele pakketten in dit profiel\n" ";; te installeren: ~%" -#: guix/scripts/package.scm:437 +#: guix/scripts/package.scm:439 msgid "" "Usage: guix package [OPTION]...\n" "Install, remove, or upgrade packages in a single transaction.\n" @@ -3152,7 +3254,7 @@ msgstr "" "Gebruik: guix package [OPTIE]...\n" "Installeer, verwijder of werk pakketten bij in één enkele transactie.\n" -#: guix/scripts/package.scm:439 +#: guix/scripts/package.scm:441 msgid "" "\n" " -i, --install PACKAGE ...\n" @@ -3162,7 +3264,7 @@ msgstr "" " -i, --install PAKKET ...\n" " installeer de PAKKETen" -#: guix/scripts/package.scm:442 +#: guix/scripts/package.scm:444 msgid "" "\n" " -e, --install-from-expression=EXP\n" @@ -3172,7 +3274,7 @@ msgstr "" " -e, --install-from-expression=EXP\n" " installeer het pakket waar de uitdrukking EXP naar verwijst" -#: guix/scripts/package.scm:445 +#: guix/scripts/package.scm:447 msgid "" "\n" " -f, --install-from-file=FILE\n" @@ -3184,7 +3286,7 @@ msgstr "" " installeer het pakket waar de uitdrukking in BESTAND\n" " naar verwijst" -#: guix/scripts/package.scm:449 +#: guix/scripts/package.scm:451 msgid "" "\n" " -r, --remove PACKAGE ...\n" @@ -3194,7 +3296,7 @@ msgstr "" " -r, --remove PAKKET ...\n" " verwijder PAKKETten" -#: guix/scripts/package.scm:452 +#: guix/scripts/package.scm:454 msgid "" "\n" " -u, --upgrade[=REGEXP] upgrade all the installed packages matching REGEXP" @@ -3202,7 +3304,7 @@ msgstr "" "\n" " -u, --upgrade[=REGEXP] werk alle geïnstalleerde pakketten die overeenkomen met REGEXP bij" -#: guix/scripts/package.scm:454 +#: guix/scripts/package.scm:456 msgid "" "\n" " -m, --manifest=FILE create a new profile generation with the manifest\n" @@ -3212,7 +3314,7 @@ msgstr "" " -m, --manifest=BESTAND maak een nieuwe profielgeneratie gebaseerd op de paklijst in\n" " BESTAND aan" -#: guix/scripts/package.scm:457 guix/scripts/upgrade.scm:41 +#: guix/scripts/package.scm:459 guix/scripts/upgrade.scm:41 msgid "" "\n" " --do-not-upgrade[=REGEXP] do not upgrade any packages matching REGEXP" @@ -3220,7 +3322,7 @@ msgstr "" "\n" " --do-not-upgrade[=REGEXP] werk de pakketten die overeenkomen met REGEXP niet bij" -#: guix/scripts/package.scm:459 guix/scripts/pull.scm:107 +#: guix/scripts/package.scm:461 guix/scripts/pull.scm:107 msgid "" "\n" " --roll-back roll back to the previous generation" @@ -3228,7 +3330,7 @@ msgstr "" "\n" " --roll-back keer terug naar de vorige generatie" -#: guix/scripts/package.scm:461 +#: guix/scripts/package.scm:463 msgid "" "\n" " --search-paths[=KIND]\n" @@ -3238,7 +3340,7 @@ msgstr "" " --search-paths[=SOORT]\n" " toon de vereiste definities van omgevingsvariabelen" -#: guix/scripts/package.scm:464 guix/scripts/pull.scm:104 +#: guix/scripts/package.scm:466 guix/scripts/pull.scm:104 msgid "" "\n" " -l, --list-generations[=PATTERN]\n" @@ -3248,7 +3350,7 @@ msgstr "" " -l, --list-generations[=PATROON]\n" " lijst de generaties die overeenkomen met PATROON op" -#: guix/scripts/package.scm:467 guix/scripts/pull.scm:109 +#: guix/scripts/package.scm:469 guix/scripts/pull.scm:109 msgid "" "\n" " -d, --delete-generations[=PATTERN]\n" @@ -3258,7 +3360,7 @@ msgstr "" " -d, --delete-generations[=PATROON]\n" " verwijder generaties die overeenkomen met PATROON" -#: guix/scripts/package.scm:470 guix/scripts/pull.scm:112 +#: guix/scripts/package.scm:472 guix/scripts/pull.scm:112 msgid "" "\n" " -S, --switch-generation=PATTERN\n" @@ -3268,7 +3370,7 @@ msgstr "" " -S, --switch-generation=PATROON\n" " ga over op een generatie die overeenkomt met PATROON" -#: guix/scripts/package.scm:473 +#: guix/scripts/package.scm:475 msgid "" "\n" " --export-manifest print a manifest for the chosen profile" @@ -3276,7 +3378,7 @@ msgstr "" "\n" " --export-manifest toon de paklijst van het gekozen profiel" -#: guix/scripts/package.scm:475 +#: guix/scripts/package.scm:477 msgid "" "\n" " --export-channels print channels for the chosen profile" @@ -3284,7 +3386,7 @@ msgstr "" "\n" " --export-channels toon de kanalen van het gekozen profiel" -#: guix/scripts/package.scm:477 guix/scripts/install.scm:34 +#: guix/scripts/package.scm:479 guix/scripts/install.scm:34 #: guix/scripts/remove.scm:33 guix/scripts/upgrade.scm:37 msgid "" "\n" @@ -3293,7 +3395,7 @@ msgstr "" "\n" " -p, --profile=PROFIEL gebruik PROFIEL in plaats van het standaardprofiel van de gebruiker" -#: guix/scripts/package.scm:479 +#: guix/scripts/package.scm:481 msgid "" "\n" " --list-profiles list the user's profiles" @@ -3301,7 +3403,7 @@ msgstr "" "\n" " --list-profiles lijst de profielen van de gebruiker op" -#: guix/scripts/package.scm:482 +#: guix/scripts/package.scm:484 msgid "" "\n" " --allow-collisions do not treat collisions in the profile as an error" @@ -3309,7 +3411,7 @@ msgstr "" "\n" " --allow-collisions beschouw botsingen in het profiel niet als een fout" -#: guix/scripts/package.scm:484 +#: guix/scripts/package.scm:486 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" @@ -3317,7 +3419,7 @@ msgstr "" "\n" " --bootstrap gebruik de Oerguile om het profiel te bouwen" -#: guix/scripts/package.scm:489 +#: guix/scripts/package.scm:491 msgid "" "\n" " -s, --search=REGEXP search in synopsis and description using REGEXP" @@ -3325,7 +3427,7 @@ msgstr "" "\n" " -s, --search=REGEXP zoek in de synopsis en beschrijving met REGEXP" -#: guix/scripts/package.scm:491 +#: guix/scripts/package.scm:493 msgid "" "\n" " -I, --list-installed[=REGEXP]\n" @@ -3335,7 +3437,7 @@ msgstr "" " -I, --list-installed[=REGEXP]\n" " lijst de geïnstalleerde pakketten die overeenkomen met REGEXP op" -#: guix/scripts/package.scm:494 +#: guix/scripts/package.scm:496 msgid "" "\n" " -A, --list-available[=REGEXP]\n" @@ -3345,7 +3447,7 @@ msgstr "" " -A, --list-available[=REGEXP]\n" " lijst de beschikbare pakketten die overeenkomen met REGEXP op" -#: guix/scripts/package.scm:497 +#: guix/scripts/package.scm:499 msgid "" "\n" " --show=PACKAGE show details about PACKAGE" @@ -3353,37 +3455,37 @@ msgstr "" "\n" " --show=PAKKET toon gedetailleerde informatie over PAKKET" -#: guix/scripts/package.scm:552 +#: guix/scripts/package.scm:554 #, scheme-format msgid "upgrade regexp '~a' looks like a command-line option~%" msgstr "de reguliere expressie ‘~a’ voor bijwerken lijkt op een opdrachtlijnoptie~%" -#: guix/scripts/package.scm:555 +#: guix/scripts/package.scm:557 #, scheme-format msgid "is this intended?~%" msgstr "was dit de bedoeling?~%" -#: guix/scripts/package.scm:605 +#: guix/scripts/package.scm:607 #, scheme-format msgid "~a: unsupported kind of search path~%" msgstr "~a: dit soort zoekpad wordt niet ondersteund~%" -#: guix/scripts/package.scm:739 +#: guix/scripts/package.scm:741 #, scheme-format msgid "cannot install non-package object: ~s~%" msgstr "het is niet mogelijk objecten te installeren die geen pakket zijn: ~s~%" -#: guix/scripts/package.scm:918 +#: guix/scripts/package.scm:920 #, scheme-format msgid "~a~@[@~a~]: package not found~%" msgstr "~a~@[@~a~]: pakket niet gevonden~%" -#: guix/scripts/package.scm:965 guix/scripts/pull.scm:687 +#: guix/scripts/package.scm:967 guix/scripts/pull.scm:687 #, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "kan niet overschakelen op generatie ‘~a’~%" -#: guix/scripts/package.scm:1060 +#: guix/scripts/package.scm:1062 #, scheme-format msgid "nothing to do~%" msgstr "er is niets te doen~%" @@ -3649,8 +3751,8 @@ msgstr "" "Gebruikt: guix git OPDRACHT ARGS...\n" "Voer bewerkingen uit op gitbewaarplaatsen.\n" -#: guix/scripts/git.scm:29 guix/scripts/system.scm:945 -#: guix/scripts/container.scm:30 guix/scripts/home.scm:69 +#: guix/scripts/git.scm:29 guix/scripts/system.scm:946 +#: guix/scripts/container.scm:30 guix/scripts/home.scm:70 msgid "The valid values for ACTION are:\n" msgstr "De geldige waarde voor ACTIE zijn:\n" @@ -3764,25 +3866,25 @@ msgstr "" "\n" " -r, --recursive bereken het controlegetal van BESTAND recursief" -#: guix/scripts/hash.scm:137 +#: guix/scripts/hash.scm:138 #, fuzzy, scheme-format #| msgid "'--inherit' is deprecated, use '--preserve' instead~%" -msgid "'--recursive' is deprecated, use '--serializer' instead~%" +msgid "'--recursive' is deprecated, use '--serializer=nar' instead~%" msgstr "‘--inherit’ is verouderd, gebruik nu ‘--preserve’~%" -#: guix/scripts/hash.scm:152 +#: guix/scripts/hash.scm:153 #, fuzzy, scheme-format #| msgid "unsupported policy: ~a~%" msgid "unsupported serializer type: ~a~%" msgstr "niet-ondersteund beleid: ~a~%" -#: guix/scripts/hash.scm:201 +#: guix/scripts/hash.scm:202 #, fuzzy, scheme-format #| msgid "~a: ~a~%" msgid "~a ~a~%" msgstr "~a: ~a~%" -#: guix/scripts/hash.scm:210 +#: guix/scripts/hash.scm:211 #, fuzzy, scheme-format #| msgid "no arguments specified, nothing to do~%" msgid "no arguments specified~%" @@ -3853,9 +3955,9 @@ msgstr "~a: ongeldige sorteersleutel~%" #: guix/scripts/import/minetest.scm:115 guix/scripts/import/cran.scm:120 #: guix/scripts/import/elpa.scm:110 guix/scripts/import/cpan.scm:87 #: guix/scripts/import/crate.scm:103 guix/scripts/import/egg.scm:106 -#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:121 +#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:122 #: guix/scripts/import/hackage.scm:158 guix/scripts/import/json.scm:97 -#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:104 +#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:105 #: guix/scripts/import/stackage.scm:130 guix/scripts/import/texlive.scm:88 #, scheme-format msgid "too few arguments~%" @@ -3864,10 +3966,10 @@ msgstr "te weinig argumenten~%" #: guix/scripts/import/minetest.scm:117 guix/scripts/import/cran.scm:122 #: guix/scripts/import/elpa.scm:112 guix/scripts/import/cpan.scm:89 #: guix/scripts/import/crate.scm:105 guix/scripts/import/egg.scm:108 -#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:123 +#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:124 #: guix/scripts/import/hackage.scm:149 guix/scripts/import/hackage.scm:160 #: guix/scripts/import/json.scm:99 guix/scripts/import/opam.scm:113 -#: guix/scripts/import/pypi.scm:106 guix/scripts/import/stackage.scm:132 +#: guix/scripts/import/pypi.scm:107 guix/scripts/import/stackage.scm:132 #: guix/scripts/import/texlive.scm:90 #, scheme-format msgid "too many arguments~%" @@ -3897,7 +3999,7 @@ msgstr "" "\n" " -s, --style=STIJL kies een uitvoerstijl, ofwel ‘specification’ ofwel ‘variable’" -#: guix/scripts/import/cran.scm:116 guix/scripts/import/texlive.scm:84 +#: guix/scripts/import/cran.scm:116 #, scheme-format msgid "failed to download description for package '~a'~%" msgstr "kon de beschrijving voor pakket ‘~a’ niet binnenhalen~%" @@ -4347,27 +4449,27 @@ msgstr "de gerichte acyclische graaf (‘DAG’) van de diensten" msgid "the dependency graph of shepherd services" msgstr "de afhankelijkhedengraaf van shepherddiensten" -#: guix/scripts/system.scm:482 guix/scripts/home.scm:453 +#: guix/scripts/system.scm:482 guix/scripts/home.scm:466 #, scheme-format msgid " repository URL: ~a~%" msgstr " URL van bewaarplaats: ~a~%" -#: guix/scripts/system.scm:484 guix/scripts/home.scm:455 +#: guix/scripts/system.scm:484 guix/scripts/home.scm:468 #, scheme-format msgid " branch: ~a~%" msgstr " vertakking: ~a~%" -#: guix/scripts/system.scm:485 guix/scripts/home.scm:456 +#: guix/scripts/system.scm:485 guix/scripts/home.scm:469 #, scheme-format msgid " commit: ~a~%" msgstr " commit: ~a~%" -#: guix/scripts/system.scm:505 guix/scripts/home.scm:469 +#: guix/scripts/system.scm:505 guix/scripts/home.scm:482 #, scheme-format msgid " file name: ~a~%" msgstr " bestandsnaam: ~a~%" -#: guix/scripts/system.scm:506 guix/scripts/home.scm:470 +#: guix/scripts/system.scm:506 guix/scripts/home.scm:483 #, scheme-format msgid " canonical file name: ~a~%" msgstr " canonieke bestandsnaam: ~a~%" @@ -4408,12 +4510,12 @@ msgstr " multiboot: ~a~%" #. TRANSLATORS: Here "channel" is the same terminology as used in #. "guix describe" and "guix pull --channels". -#: guix/scripts/system.scm:536 guix/scripts/home.scm:476 +#: guix/scripts/system.scm:536 guix/scripts/home.scm:489 #, scheme-format msgid " channels:~%" msgstr " kanalen: ~%" -#: guix/scripts/system.scm:539 guix/scripts/home.scm:479 +#: guix/scripts/system.scm:539 guix/scripts/home.scm:492 #, scheme-format msgid " configuration file: ~a~%" msgstr " configuratiebestand: ~a~%" @@ -4468,17 +4570,17 @@ msgstr "Overweeg ‘guix pull’ uit te voeren voor ‘reconfigure’.~%" msgid "Failing to do that may downgrade your system!~%" msgstr "Als je dat niet doet, dan zou je systeem naar een oudere/slechtere versie gebracht kunnen worden!~%" -#: guix/scripts/system.scm:754 guix/scripts/system.scm:863 +#: guix/scripts/system.scm:754 guix/scripts/system.scm:864 #, scheme-format msgid "bootloader successfully installed on '~a'~%" msgstr "opstartlader is successvol geïnstalleerd op ‘~a’~%" -#: guix/scripts/system.scm:856 +#: guix/scripts/system.scm:857 #, scheme-format msgid "activating system...~%" msgstr "systeem aan het activeren...~%" -#: guix/scripts/system.scm:867 +#: guix/scripts/system.scm:868 msgid "" "To complete the upgrade, run 'herd restart SERVICE' to stop,\n" "upgrade, and restart each service that was not automatically restarted.\n" @@ -4486,25 +4588,25 @@ msgstr "" "Om het bijwerken af te ronden, voer je ‘herd restart DIENST’ uit\n" "om elke dient die niet automatisch herstart was te stoppen, bij te werken en herstarten.\n" -#: guix/scripts/system.scm:870 +#: guix/scripts/system.scm:871 msgid "Run 'herd status' to view the list of services on your system.\n" msgstr "Voer ‘herd status’ uit om de lijst van diensten op je systeem te zien.\n" -#: guix/scripts/system.scm:874 +#: guix/scripts/system.scm:875 #, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "besturingssysteem wordt geinitialiseerd onder ‘~a’...~%" -#: guix/scripts/system.scm:894 guix/scripts/graph.scm:437 +#: guix/scripts/system.scm:895 guix/scripts/graph.scm:437 #, scheme-format msgid "~a: unknown backend~%" msgstr "~a: onbekende methode voor productie van graaf~%" -#: guix/scripts/system.scm:931 +#: guix/scripts/system.scm:932 msgid "The available image types are:\n" msgstr "De beschikbare systeemafbeeldingstypes zijn:\n" -#: guix/scripts/system.scm:941 +#: guix/scripts/system.scm:942 msgid "" "Usage: guix system [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the operating system declared in FILE according to ACTION.\n" @@ -4514,69 +4616,69 @@ msgstr "" "Bouw het besturingssysteem gedeclareerd in BESTAND met ACTIE.\n" "Sommige ACTIES ondersteunen bijkomende ARGS.\n" -#: guix/scripts/system.scm:947 +#: guix/scripts/system.scm:948 msgid " search search for existing service types\n" msgstr " search zoek naar reeds bestaande dienstsoorten\n" -#: guix/scripts/system.scm:949 +#: guix/scripts/system.scm:950 msgid " reconfigure switch to a new operating system configuration\n" msgstr " reconfigure schakel over naar een nieuwe besturingssysteemconfiguratie\n" -#: guix/scripts/system.scm:951 +#: guix/scripts/system.scm:952 msgid " roll-back switch to the previous operating system configuration\n" msgstr " roll-back keer terug naar een vorige configuratie van het besturingssysteem\n" -#: guix/scripts/system.scm:953 +#: guix/scripts/system.scm:954 msgid " describe describe the current system\n" msgstr " describe beschrijf het huidige systeem\n" -#: guix/scripts/system.scm:955 +#: guix/scripts/system.scm:956 msgid " list-generations list the system generations\n" msgstr " list-generations lijst de systeemgeneraties op\n" -#: guix/scripts/system.scm:957 +#: guix/scripts/system.scm:958 msgid " switch-generation switch to an existing operating system configuration\n" msgstr " switch-generation schakel over op een reeds bestaande besturingssysteemconfiguratie\n" -#: guix/scripts/system.scm:959 +#: guix/scripts/system.scm:960 msgid " delete-generations delete old system generations\n" msgstr " delete-generations verwijder oude systeemgeneraties\n" -#: guix/scripts/system.scm:961 +#: guix/scripts/system.scm:962 msgid " build build the operating system without installing anything\n" msgstr " build bouw het besturingssysteem zonder iets te installeren\n" -#: guix/scripts/system.scm:963 +#: guix/scripts/system.scm:964 msgid " container build a container that shares the host's store\n" msgstr " container bouw een container dat het depot met het huidig systeem deelt\n" -#: guix/scripts/system.scm:965 +#: guix/scripts/system.scm:966 msgid " vm build a virtual machine image that shares the host's store\n" msgstr "" " vm bouw een systeemafbeelding voor een virtuele machine\n" " die het depot met het huidig systeem deelt\n" -#: guix/scripts/system.scm:967 +#: guix/scripts/system.scm:968 msgid " image build a Guix System image\n" msgstr " image bouw een Guix System-afbeelding\n" -#: guix/scripts/system.scm:969 +#: guix/scripts/system.scm:970 msgid " docker-image build a Docker image\n" msgstr " docker-image bouw een Docker-afbeelding\n" -#: guix/scripts/system.scm:971 +#: guix/scripts/system.scm:972 msgid " init initialize a root file system to run GNU\n" msgstr " init initialiseer het wortelbestandssysteem om GNU in uit te voeren\n" -#: guix/scripts/system.scm:973 +#: guix/scripts/system.scm:974 msgid " extension-graph emit the service extension graph in Dot format\n" msgstr " extension-graph produceer de graaf dienstenuitbreidingen in het formaat ‘Dot’\n" -#: guix/scripts/system.scm:975 +#: guix/scripts/system.scm:976 msgid " shepherd-graph emit the graph of shepherd services in Dot format\n" msgstr " shepherd-graph produceer de graaf van shepherdiensten in het formaat ‘Dot’\n" -#: guix/scripts/system.scm:979 +#: guix/scripts/system.scm:980 msgid "" "\n" " -d, --derivation return the derivation of the given system" @@ -4584,7 +4686,7 @@ msgstr "" "\n" " -d, --derivation geef de distillatie van het opgegeven systeem terug" -#: guix/scripts/system.scm:981 +#: guix/scripts/system.scm:982 msgid "" "\n" " -e, --expression=EXPR consider the operating-system EXPR evaluates to\n" @@ -4594,7 +4696,7 @@ msgstr "" " -e, --expression=EXPR beschouw het besturingssysteem waaraan EXPR gelijk is\n" " in plaats van BESTAND te lezen, wanneer dit van toepassing is" -#: guix/scripts/system.scm:984 +#: guix/scripts/system.scm:985 guix/scripts/home.scm:95 msgid "" "\n" " --allow-downgrades for 'reconfigure', allow downgrades to earlier\n" @@ -4604,7 +4706,7 @@ msgstr "" " --allow-downgrades voor ‘reconfigure’, sta toe terug te keren naar vroegere\n" " kanaalrevisies" -#: guix/scripts/system.scm:987 +#: guix/scripts/system.scm:988 msgid "" "\n" " --on-error=STRATEGY\n" @@ -4616,7 +4718,7 @@ msgstr "" " pas STRATEGIE toe (‘nothing-special’, ‘backtrace’\n" " of ‘debug’) wanneer een fout plaatsvindt bij het inlezen van BESTAND" -#: guix/scripts/system.scm:991 +#: guix/scripts/system.scm:992 msgid "" "\n" " --list-image-types list available image types" @@ -4624,7 +4726,7 @@ msgstr "" "\n" " --list-image-types lijst beschikbare systeemafbeeldingstypes op" -#: guix/scripts/system.scm:993 +#: guix/scripts/system.scm:994 msgid "" "\n" " -t, --image-type=TYPE for 'image', produce an image of TYPE" @@ -4632,7 +4734,7 @@ msgstr "" "\n" " -t, --image-type=TYPE voor ‘image’, produceer een systeemafbeelding van type TYPE" -#: guix/scripts/system.scm:995 +#: guix/scripts/system.scm:996 msgid "" "\n" " --image-size=SIZE for 'image', produce an image of SIZE" @@ -4641,7 +4743,7 @@ msgstr "" " --image-size=SGROOTTE voor ‘image’, produceer een systeemafbeelding\n" " van GROOTTE" -#: guix/scripts/system.scm:997 +#: guix/scripts/system.scm:998 msgid "" "\n" " --no-bootloader for 'init', do not install a bootloader" @@ -4649,7 +4751,7 @@ msgstr "" "\n" " --no-bootloader voor ‘init’, installeer geen opstartlader" -#: guix/scripts/system.scm:999 +#: guix/scripts/system.scm:1000 msgid "" "\n" " --volatile for 'image', make the root file system volatile" @@ -4658,7 +4760,20 @@ msgstr "" " --volatile voor ‘image’, maak de wortel van het bestandssysteem\n" " vergankelijk" -#: guix/scripts/system.scm:1001 +#: guix/scripts/system.scm:1002 +#, fuzzy +#| msgid "" +#| "\n" +#| " --volatile for 'image', make the root file system volatile" +msgid "" +"\n" +" --persistent for 'vm', make the root file system persistent" +msgstr "" +"\n" +" --volatile voor ‘image’, maak de wortel van het bestandssysteem\n" +" vergankelijk" + +#: guix/scripts/system.scm:1004 msgid "" "\n" " --label=LABEL for 'image', label disk image with LABEL" @@ -4666,7 +4781,7 @@ msgstr "" "\n" " --label=ETIKET voor ‘image’, gebruik het etiket ETIKET voor de schijfafbeelding" -#: guix/scripts/system.scm:1003 guix/scripts/pack.scm:1340 +#: guix/scripts/system.scm:1006 guix/scripts/pack.scm:1340 msgid "" "\n" " --save-provenance save provenance information" @@ -4674,7 +4789,7 @@ msgstr "" "\n" " --save-provenance sla herkomstinformatie op" -#: guix/scripts/system.scm:1005 +#: guix/scripts/system.scm:1008 msgid "" "\n" " --share=SPEC for 'vm' and 'container', share host file system with\n" @@ -4684,7 +4799,7 @@ msgstr "" " --share=SPEC voor ‘vm’ en ‘container’, deel het bestandssysteem\n" " van de computer met lees-schrijftoegang volgens SPEC" -#: guix/scripts/system.scm:1008 +#: guix/scripts/system.scm:1011 msgid "" "\n" " --expose=SPEC for 'vm' and 'container', expose host file system\n" @@ -4694,7 +4809,7 @@ msgstr "" " --expose=SPEC voor ‘vm’ en 'container', stel de bestandssysteemmap bloot\n" " als alleen-lezen volgens SPEC" -#: guix/scripts/system.scm:1011 +#: guix/scripts/system.scm:1014 msgid "" "\n" " -N, --network for 'container', allow containers to access the network" @@ -4702,7 +4817,7 @@ msgstr "" "\n" " -N, --network voor ‘container', geef containers toegang tot het netwerk" -#: guix/scripts/system.scm:1013 +#: guix/scripts/system.scm:1016 msgid "" "\n" " -r, --root=FILE for 'vm', 'image', 'container' and 'build',\n" @@ -4714,7 +4829,7 @@ msgstr "" " laat BESTAND een symlink zijn naar het resultaat en\n" " registreer het als een afvalverzameleerswortel" -#: guix/scripts/system.scm:1017 +#: guix/scripts/system.scm:1020 msgid "" "\n" " --full-boot for 'vm', make a full boot sequence" @@ -4722,13 +4837,13 @@ msgstr "" "\n" " --full-boot voor ‘vm’, doe de volledige opstartdans" -#: guix/scripts/system.scm:1019 +#: guix/scripts/system.scm:1022 msgid "" "\n" " --no-graphic for 'vm', use the tty that we are started in for IO" msgstr "" -#: guix/scripts/system.scm:1021 +#: guix/scripts/system.scm:1024 msgid "" "\n" " --skip-checks skip file system and initrd module safety checks" @@ -4737,7 +4852,7 @@ msgstr "" " --skip-checks sla veiligheidscontroles van bestandssystemen en\n" " initrdmodules over" -#: guix/scripts/system.scm:1028 +#: guix/scripts/system.scm:1031 msgid "" "\n" " --graph-backend=BACKEND\n" @@ -4747,57 +4862,57 @@ msgstr "" " --graph-backend=METHODE\n" " gebruik METHODE voor ‘extension-graphs’ en ‘shepherd-graph’" -#: guix/scripts/system.scm:1180 +#: guix/scripts/system.scm:1187 #, scheme-format msgid "'~a' does not return an operating system or an image~%" msgstr "‘~a’ gaf geen besturingssysteem of een systeemafbeelding terug~%" -#: guix/scripts/system.scm:1204 guix/scripts/home.scm:216 +#: guix/scripts/system.scm:1211 guix/scripts/home.scm:230 #, scheme-format msgid "both file and expression cannot be specified~%" msgstr "er kunnen niet zowel bestanden als uitdrukkingen gekozen worden~%" -#: guix/scripts/system.scm:1211 guix/scripts/home.scm:223 +#: guix/scripts/system.scm:1218 guix/scripts/home.scm:237 #, scheme-format msgid "no configuration specified~%" msgstr "geen configuratie opgegeven~%" -#: guix/scripts/system.scm:1319 guix/scripts/system.scm:1335 -#: guix/scripts/system.scm:1342 guix/scripts/system.scm:1348 -#: guix/scripts/home.scm:274 guix/scripts/home.scm:296 -#: guix/scripts/home.scm:301 guix/scripts/home.scm:307 -#: guix/scripts/home.scm:314 guix/scripts/import/gnu.scm:100 +#: guix/scripts/system.scm:1328 guix/scripts/system.scm:1344 +#: guix/scripts/system.scm:1351 guix/scripts/system.scm:1357 +#: guix/scripts/home.scm:287 guix/scripts/home.scm:309 +#: guix/scripts/home.scm:314 guix/scripts/home.scm:320 +#: guix/scripts/home.scm:327 guix/scripts/import/gnu.scm:100 #: guix/scripts/offload.scm:836 guix/scripts/offload.scm:848 #, scheme-format msgid "wrong number of arguments~%" msgstr "verkeerd aantal argumenten~%" -#: guix/scripts/system.scm:1324 +#: guix/scripts/system.scm:1333 #, scheme-format msgid "no system generation, nothing to describe~%" msgstr "geen systeemgeneratie, er is niets te beschrijven~%" -#: guix/scripts/system.scm:1367 guix/scripts/home.scm:337 +#: guix/scripts/system.scm:1376 guix/scripts/home.scm:350 #, scheme-format msgid "~a: unknown action~%" msgstr "~a: onbekende actie~%" -#: guix/scripts/system.scm:1387 guix/scripts/home.scm:353 +#: guix/scripts/system.scm:1396 guix/scripts/home.scm:366 #, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "verkeerd aantal argumenten voor actie ‘~a’~%" -#: guix/scripts/system.scm:1392 +#: guix/scripts/system.scm:1401 #, scheme-format msgid "guix system: missing command name~%" msgstr "guix system: ontbrekende opdrachtnaam~%" -#: guix/scripts/system.scm:1394 +#: guix/scripts/system.scm:1403 #, scheme-format msgid "Try 'guix system --help' for more information.~%" msgstr "Probeer ‘guix system --help’ voor meer informatie.~%" -#: guix/scripts/system/search.scm:93 guix/ui.scm:1541 guix/ui.scm:1559 +#: guix/scripts/system/search.scm:93 guix/ui.scm:1544 guix/ui.scm:1562 msgid "unknown" msgstr "onbekend" @@ -5264,7 +5379,7 @@ msgstr "" " --path toon het kortste pad tussen de twee opgegeven knopen" #: guix/scripts/graph.scm:548 guix/scripts/pack.scm:1325 -#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:502 +#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:797 msgid "" "\n" " -e, --expression=EXPR consider the package EXPR evaluates to" @@ -5951,7 +6066,7 @@ msgstr "" "\n" " -f, --format=FORMAAT toont resultaten als genormaliseerde recordsets" -#: guix/scripts/deploy.scm:51 +#: guix/scripts/deploy.scm:54 msgid "" "Usage: guix deploy [OPTION] FILE...\n" "Perform the deployment specified by FILE.\n" @@ -5959,38 +6074,86 @@ msgstr "" "Usage: guix deploy [OPTIE] BESTAND…\n" "Rol het door BESTAND omschreven systeem uit.\n" -#: guix/scripts/deploy.scm:108 +#: guix/scripts/deploy.scm:63 +#, fuzzy +#| msgid " exec execute a command inside of an existing container\n" +msgid "" +"\n" +" -x, --execute execute the following command on all the machines" +msgstr " exec voer een opdracht uit in een bestaande container\n" + +#: guix/scripts/deploy.scm:117 #, scheme-format msgid "The following ~d machine will be deployed:~%" msgid_plural "The following ~d machines will be deployed:~%" msgstr[0] "Deze (~d) machine zal uitgerold worden:~%" msgstr[1] "Deze ~d machines zullen uitgerold worden:~%" -#: guix/scripts/deploy.scm:122 +#: guix/scripts/deploy.scm:131 #, scheme-format msgid "deploying to ~a...~%" msgstr "~a wordt uitgerold...~%" -#: guix/scripts/deploy.scm:134 guix/scripts/deploy.scm:138 +#: guix/scripts/deploy.scm:143 guix/scripts/deploy.scm:147 #, scheme-format msgid "failed to deploy ~a: ~a~%" msgstr "kon ~a niet uitrollen: ~a~%" -#: guix/scripts/deploy.scm:146 +#: guix/scripts/deploy.scm:155 #, scheme-format msgid "rolling back ~a...~%" msgstr "~a wordt teruggedraaid…~%" -#: guix/scripts/deploy.scm:152 +#: guix/scripts/deploy.scm:161 #, scheme-format msgid "successfully deployed ~a~%" msgstr "~a succesvol uitgerold~%" -#: guix/scripts/deploy.scm:167 +#: guix/scripts/deploy.scm:212 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command succeeded~%" +msgstr "guix: ~a: commando niet gevonden~%" + +#: guix/scripts/deploy.scm:215 +#, fuzzy, scheme-format +#| msgid "Command failed with exit code ~a.~%" +msgid "~a: command exited with code ~a~%" +msgstr "Opdracht mislukt met afsluitcode ~a.~%" + +#: guix/scripts/deploy.scm:218 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command stopped with signal ~a~%" +msgstr "guix: ~a: commando niet gevonden~%" + +#: guix/scripts/deploy.scm:221 +#, fuzzy, scheme-format +#| msgid "~a: consider removing this input: ~a~%" +msgid "~a: command terminated with signal ~a~%" +msgstr "~a: overweeg het verwijderen van deze input: ~a~%" + +#: guix/scripts/deploy.scm:225 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "command output on ~a:~%" +msgstr "guix: ~a: commando niet gevonden~%" + +#: guix/scripts/deploy.scm:246 #, scheme-format msgid "missing deployment file argument~%" msgstr "argument voor ontbrekend implementatiebestand ontbreekt~%" +#: guix/scripts/deploy.scm:249 +#, scheme-format +msgid "'--' was used by '-x' was not specified~%" +msgstr "" + +#: guix/scripts/deploy.scm:271 +#, scheme-format +msgid "'-x' specified but no command given~%" +msgstr "" + #: guix/gexp.scm:465 #, scheme-format msgid "resolving '~a' relative to current directory~%" @@ -6086,75 +6249,75 @@ msgstr "geen proces ~d~%" msgid "exec failed with status ~d~%" msgstr "exec mislukt met status ~d~%" -#: guix/transformations.scm:185 guix/transformations.scm:253 +#: guix/transformations.scm:186 guix/transformations.scm:254 #, scheme-format msgid "invalid replacement specification: ~s" msgstr "vervangingsopgave is ongeldig: ~s" -#: guix/transformations.scm:234 +#: guix/transformations.scm:235 #, scheme-format msgid "the source of ~a is not a Git reference" msgstr "de bron van ~a is geen Git-referentie" -#: guix/transformations.scm:337 +#: guix/transformations.scm:338 #, scheme-format msgid "~a: invalid Git URL replacement specification" msgstr "~a: ongeldige vervangingsopgave voor Git-URL" -#: guix/transformations.scm:415 +#: guix/transformations.scm:416 #, scheme-format msgid "~a: invalid toolchain replacement specification" msgstr "~a: ongeldige vervangingsopdracht voor toolchain" -#: guix/transformations.scm:517 +#: guix/transformations.scm:518 #, fuzzy #| msgid "failed to determine origin~%" msgid "failed to determine which compiler is used" msgstr "kon herkomst niet bepalen~%" -#: guix/transformations.scm:523 +#: guix/transformations.scm:524 #, fuzzy, scheme-format #| msgid "could not determine latest upstream release of '~a'~%" msgid "failed to determine whether ~a supports ~a" msgstr "kon de laatste bovenstroomse uitgave van ‘~a’ niet vinden~%" -#: guix/transformations.scm:529 +#: guix/transformations.scm:530 #, scheme-format msgid "compiler ~a does not support micro-architecture ~a" msgstr "" -#: guix/transformations.scm:581 +#: guix/transformations.scm:582 #, fuzzy, scheme-format #| msgid "~a: ~a~%" msgid "tuning ~a for CPU ~a~%" msgstr "~a: ~a~%" -#: guix/transformations.scm:721 +#: guix/transformations.scm:722 #, scheme-format msgid "~a: invalid package patch specification" msgstr "~a: ongeldige vervangingsopdracht voor pakketpleister" -#: guix/transformations.scm:744 +#: guix/transformations.scm:745 #, scheme-format msgid "could not determine latest upstream release of '~a'~%" msgstr "kon de laatste bovenstroomse uitgave van ‘~a’ niet vinden~%" -#: guix/transformations.scm:752 +#: guix/transformations.scm:753 #, scheme-format msgid "cannot authenticate source of '~a', version ~a~%" msgstr "kan de authenticiteit van de bron van ‘~a’, versie ~a, niet controleren~%" -#: guix/transformations.scm:833 +#: guix/transformations.scm:840 #, scheme-format msgid "building for ~a instead of ~a, so tuning cannot be guessed~%" msgstr "" -#: guix/transformations.scm:859 +#: guix/transformations.scm:866 #, scheme-format msgid "Available package transformation options:~%" msgstr "Beschikbare pakkettransformatieopties:~%" -#: guix/transformations.scm:865 +#: guix/transformations.scm:872 msgid "" "\n" " --with-source=[PACKAGE=]SOURCE\n" @@ -6164,7 +6327,7 @@ msgstr "" " --with-source=[PAKKET=]BRON\n" " gebruik BRON bij het bouwen van het PAKKET" -#: guix/transformations.scm:868 +#: guix/transformations.scm:875 msgid "" "\n" " --with-input=PACKAGE=REPLACEMENT\n" @@ -6174,7 +6337,7 @@ msgstr "" " --with-input=PAKKET=VERVANGING\n" " vervang afhankelijkheid PAKKET door VERVANGING" -#: guix/transformations.scm:871 +#: guix/transformations.scm:878 msgid "" "\n" " --with-graft=PACKAGE=REPLACEMENT\n" @@ -6184,7 +6347,7 @@ msgstr "" " --with-graft=PAKKET=VERVANGING\n" " ent VERVANGING op pakketten die verwijzen naar PAKKET" -#: guix/transformations.scm:874 +#: guix/transformations.scm:881 msgid "" "\n" " --with-branch=PACKAGE=BRANCH\n" @@ -6194,7 +6357,7 @@ msgstr "" " --with-branch=PAKKET=TAK\n" " bouw PAKKET van de nieuwste commit op TAK" -#: guix/transformations.scm:877 +#: guix/transformations.scm:884 msgid "" "\n" " --with-commit=PACKAGE=COMMIT\n" @@ -6204,7 +6367,7 @@ msgstr "" " --with-commit=PAKKET=COMMIT\n" " bouw PAKKET vanop COMMIT" -#: guix/transformations.scm:880 +#: guix/transformations.scm:887 msgid "" "\n" " --with-git-url=PACKAGE=URL\n" @@ -6214,7 +6377,7 @@ msgstr "" " --with-git-url=PAKKET=URL\n" " bouw PAKKET vanuit de bewaarplaats te URL" -#: guix/transformations.scm:883 +#: guix/transformations.scm:890 msgid "" "\n" " --with-patch=PACKAGE=FILE\n" @@ -6224,7 +6387,7 @@ msgstr "" " --with-patch=PAKKET=BESTAND\n" " voeg BESTAND toe aan de lijst met pleisters voor PAKKET" -#: guix/transformations.scm:886 +#: guix/transformations.scm:893 msgid "" "\n" " --with-latest=PACKAGE\n" @@ -6234,7 +6397,7 @@ msgstr "" " --with-latest=PAKKET\n" " gebruik de nieuwste bovenstroomse uitgave van PAKKET" -#: guix/transformations.scm:889 +#: guix/transformations.scm:896 msgid "" "\n" " --with-c-toolchain=PACKAGE=TOOLCHAIN\n" @@ -6244,7 +6407,7 @@ msgstr "" " --with-c-toolchain=PAKKET=GEREEDSCHAP\n" " bouw PAKKET en zijn afhankelijkheden met GEREEDSCHAP" -#: guix/transformations.scm:892 +#: guix/transformations.scm:899 msgid "" "\n" " --with-debug-info=PACKAGE\n" @@ -6254,7 +6417,7 @@ msgstr "" " --with-debug-info=PAKKET\n" " bouw PAKKET en bewaar zijn foutopsporingsinformatie" -#: guix/transformations.scm:895 +#: guix/transformations.scm:902 msgid "" "\n" " --without-tests=PACKAGE\n" @@ -6264,7 +6427,7 @@ msgstr "" " --without-tests=PAKKET\n" " bouw PAKKET zonder zijn controles uit te voeren" -#: guix/transformations.scm:901 +#: guix/transformations.scm:908 msgid "" "\n" " --help-transform list package transformation options not shown here" @@ -6272,7 +6435,7 @@ msgstr "" "\n" " --help-transform lijst hier niet getoonde opties op voor het omvormen van pakketten" -#: guix/transformations.scm:950 +#: guix/transformations.scm:957 #, scheme-format msgid "transformation '~a' had no effect on ~a~%" msgstr "omvorming ‘~a’ had geen uitwerking op ~a~%" @@ -6781,12 +6944,12 @@ msgstr[1] "De volgende pakketten zullen worden geïnstalleerd:~%~{~a~%~}~%" msgid "~a: invalid Texinfo markup~%" msgstr "~a: ongeldig getal~%" -#: guix/ui.scm:1873 +#: guix/ui.scm:1876 #, scheme-format msgid "invalid syntax: ~a~%" msgstr "ongeldige syntaxis: ~a~%" -#: guix/ui.scm:1882 +#: guix/ui.scm:1885 #, scheme-format msgid "Generation ~a\t~a" msgstr "Generatie ~a\t~a" @@ -6796,7 +6959,7 @@ msgstr "Generatie ~a\t~a" #. usual way of presenting dates in your locale. #. See https://www.gnu.org/software/guile/manual/html_node/SRFI_002d19-Date-to-string.html #. for details. -#: guix/ui.scm:1892 +#: guix/ui.scm:1895 #, scheme-format msgid "~b ~d ~Y ~T" msgstr "~T ~d ~b ~Y" @@ -6804,37 +6967,37 @@ msgstr "~T ~d ~b ~Y" #. TRANSLATORS: The word "current" here is an adjective for #. "Generation", as in "current generation". Use the appropriate #. gender where applicable. -#: guix/ui.scm:1898 +#: guix/ui.scm:1901 #, scheme-format msgid "~a\t(current)~%" msgstr "~a\t(huidig)~%" -#: guix/ui.scm:1932 +#: guix/ui.scm:1935 #, scheme-format msgid "cannot lock profile ~a: ~a~%" msgstr "kan profiel ~a niet vergrendelen: ~a~%" -#: guix/ui.scm:1934 +#: guix/ui.scm:1937 #, scheme-format msgid "profile ~a is locked by another process~%" msgstr "profiel ~a is vergrendeld door een ander proces~%" -#: guix/ui.scm:1963 +#: guix/ui.scm:1966 #, scheme-format msgid "switched from generation ~a to ~a~%" msgstr "omgeschakeld van generatie ~a naar ~a~%" -#: guix/ui.scm:1979 +#: guix/ui.scm:1982 #, scheme-format msgid "deleting ~a~%" msgstr "~a~% verwijderen" -#: guix/ui.scm:2010 +#: guix/ui.scm:2013 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "Probeer `guix --help' voor meer informatie.~%" -#: guix/ui.scm:2102 +#: guix/ui.scm:2105 #, fuzzy #| msgid "" #| "Usage: guix COMMAND ARGS...\n" @@ -6846,7 +7009,7 @@ msgstr "" "Gebruik: guix COMMANDO ARGS...\n" "Voer COMMANDO uit met ARGS.\n" -#: guix/ui.scm:2105 +#: guix/ui.scm:2108 #, fuzzy #| msgid "" #| "\n" @@ -6858,7 +7021,7 @@ msgstr "" "\n" " -h, --help toon deze hulp en sluit af" -#: guix/ui.scm:2107 +#: guix/ui.scm:2110 #, fuzzy #| msgid "" #| "\n" @@ -6870,26 +7033,26 @@ msgstr "" "\n" " -V, --version toen versieinformatie en sluit af" -#: guix/ui.scm:2112 +#: guix/ui.scm:2115 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "COMMANDO moet een van de sub-commando's zijn hieronder getoond:\n" -#: guix/ui.scm:2154 +#: guix/ui.scm:2157 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "guix: ~a: commando niet gevonden~%" -#: guix/ui.scm:2156 +#: guix/ui.scm:2159 #, scheme-format msgid "Did you mean @code{~a}?" msgstr "Bedoelde je @code{~a}?" -#: guix/ui.scm:2190 +#: guix/ui.scm:2193 #, scheme-format msgid "guix: missing command name~%" msgstr "guix: ontbrekende commandonaam~%" -#: guix/ui.scm:2198 +#: guix/ui.scm:2201 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "guix: niet-herkende optie '~a'~%" @@ -7230,22 +7393,22 @@ msgstr "" msgid "unsupported manifest format" msgstr "indeling van paklijst wordt niet ondersteund" -#: guix/profiles.scm:2242 +#: guix/profiles.scm:2247 #, scheme-format msgid "while creating directory `~a': ~a" msgstr "bij het aanmaken van map ‘~a’: ~a" -#: guix/profiles.scm:2247 +#: guix/profiles.scm:2252 #, scheme-format msgid "Please create the @file{~a} directory, with you as the owner." msgstr "Maak de map @file{~a} aan met jezelf als eigenaar." -#: guix/profiles.scm:2256 +#: guix/profiles.scm:2261 #, scheme-format msgid "directory `~a' is not owned by you" msgstr "map ‘~a’ behoort niet aan jou toe" -#: guix/profiles.scm:2260 +#: guix/profiles.scm:2265 #, scheme-format msgid "Please change the owner of @file{~a} to user ~s." msgstr "Wijzig de eigenaar van @file{~a} in gebruiker ~s." @@ -7959,11 +8122,16 @@ msgstr "‘--no-cwd’ kan niet zonder ‘--container’ gebruikt worden~%" msgid "'--profile' cannot be used with package options~%" msgstr "‘--profile’ kan niet samen met pakketopties gebruikt worden~%" -#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:275 +#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:261 #, scheme-format msgid "no packages specified; creating an empty environment~%" msgstr "geen pakketten opgegeven; zal een lege omgeving aanmaken~%" +#: guix/scripts/environment.scm:979 +#, scheme-format +msgid "'--check' is unnecessary when using '--container'; doing nothing~%" +msgstr "" + #: guix/scripts/home/import.scm:179 #, fuzzy #| msgid "" @@ -7985,7 +8153,7 @@ msgstr "" ";; je ook de lijst van gebruikte kanalen bewaren, zoals teruggegeven door ‘guix describe’.\n" ";; Zie de sectie ‘Guix reproduceren’ in de handleiding.\n" -#: guix/scripts/home.scm:65 +#: guix/scripts/home.scm:66 #, fuzzy #| msgid "" #| "Usage: guix system [OPTION ...] ACTION [ARG ...] [FILE]\n" @@ -8000,59 +8168,59 @@ msgstr "" "Bouw het besturingssysteem gedeclareerd in BESTAND met ACTIE.\n" "Sommige ACTIES ondersteunen bijkomende ARGS.\n" -#: guix/scripts/home.scm:71 +#: guix/scripts/home.scm:72 #, fuzzy #| msgid " search search for existing service types\n" msgid " search search for existing service types\n" msgstr " search zoek naar reeds bestaande dienstsoorten\n" -#: guix/scripts/home.scm:73 +#: guix/scripts/home.scm:74 #, fuzzy #| msgid " reconfigure switch to a new operating system configuration\n" msgid " reconfigure switch to a new home environment configuration\n" msgstr " reconfigure schakel over naar een nieuwe besturingssysteemconfiguratie\n" -#: guix/scripts/home.scm:75 +#: guix/scripts/home.scm:76 #, fuzzy #| msgid " roll-back switch to the previous operating system configuration\n" msgid " roll-back switch to the previous home environment configuration\n" msgstr " roll-back keer terug naar een vorige configuratie van het besturingssysteem\n" -#: guix/scripts/home.scm:77 +#: guix/scripts/home.scm:78 #, fuzzy #| msgid " describe describe the current system\n" msgid " describe describe the current home environment\n" msgstr " describe beschrijf het huidige systeem\n" -#: guix/scripts/home.scm:79 +#: guix/scripts/home.scm:80 #, fuzzy #| msgid " list-generations list the system generations\n" msgid " list-generations list the home environment generations\n" msgstr " list-generations lijst de systeemgeneraties op\n" -#: guix/scripts/home.scm:81 +#: guix/scripts/home.scm:82 #, fuzzy #| msgid " switch-generation switch to an existing operating system configuration\n" msgid " switch-generation switch to an existing home environment configuration\n" msgstr " switch-generation schakel over op een reeds bestaande besturingssysteemconfiguratie\n" -#: guix/scripts/home.scm:83 +#: guix/scripts/home.scm:84 #, fuzzy #| msgid " delete-generations delete old system generations\n" msgid " delete-generations delete old home environment generations\n" msgstr " delete-generations verwijder oude systeemgeneraties\n" -#: guix/scripts/home.scm:85 +#: guix/scripts/home.scm:86 #, fuzzy #| msgid " build build the operating system without installing anything\n" msgid " build build the home environment without installing anything\n" msgstr " build bouw het besturingssysteem zonder iets te installeren\n" -#: guix/scripts/home.scm:87 +#: guix/scripts/home.scm:88 msgid " import generates a home environment definition from dotfiles\n" msgstr "" -#: guix/scripts/home.scm:91 +#: guix/scripts/home.scm:92 #, fuzzy #| msgid "" #| "\n" @@ -8067,43 +8235,43 @@ msgstr "" " -e, --expression=EXPR beschouw het besturingssysteem waaraan EXPR gelijk is\n" " in plaats van BESTAND te lezen, wanneer dit van toepassing is" -#: guix/scripts/home.scm:196 +#: guix/scripts/home.scm:210 #, fuzzy, scheme-format #| msgid "'~a' does not return an operating system or an image~%" msgid "'~a' does not return a home environment ~%" msgstr "‘~a’ gaf geen besturingssysteem of een systeemafbeelding terug~%" -#: guix/scripts/home.scm:280 +#: guix/scripts/home.scm:293 #, scheme-format msgid "'~a' populated with all the Home configuration files~%" msgstr "" -#: guix/scripts/home.scm:282 +#: guix/scripts/home.scm:295 #, scheme-format msgid "" "Run @command{guix home reconfigure ~a/home-configuration.scm} to effectively\n" "deploy the home environment described by these files.\n" msgstr "" -#: guix/scripts/home.scm:289 +#: guix/scripts/home.scm:302 #, fuzzy, scheme-format #| msgid "no system generation, nothing to describe~%" msgid "no home environment generation, nothing to describe~%" msgstr "geen systeemgeneratie, er is niets te beschrijven~%" -#: guix/scripts/home.scm:358 +#: guix/scripts/home.scm:371 #, fuzzy, scheme-format #| msgid "guix: missing command name~%" msgid "guix home: missing command name~%" msgstr "guix: ontbrekende commandonaam~%" -#: guix/scripts/home.scm:360 +#: guix/scripts/home.scm:373 #, fuzzy, scheme-format #| msgid "Try `guix --help' for more information.~%" msgid "Try 'guix home --help' for more information.~%" msgstr "Probeer `guix --help' voor meer informatie.~%" -#: guix/scripts/home.scm:528 +#: guix/scripts/home.scm:541 #, fuzzy, scheme-format #| msgid "cannot switch to system generation '~a'~%" msgid "cannot switch to home environment generation '~a'~%" @@ -8151,7 +8319,7 @@ msgstr "" #: guix/scripts/import/cpan.scm:83 guix/scripts/import/crate.scm:97 #: guix/scripts/import/egg.scm:100 guix/scripts/import/gem.scm:98 -#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:100 +#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:101 #, scheme-format msgid "failed to download meta-data for package '~a'~%" msgstr "downloaden van metagegevens over pakket ‘~a’ mislukt~%" @@ -8252,7 +8420,7 @@ msgstr "" "\n" " --pin-versions gebruik de exacte versies van de afhankelijkheden van een module" -#: guix/scripts/import/go.scm:117 +#: guix/scripts/import/go.scm:118 #, scheme-format msgid "failed to download meta-data for module '~a'.~%" msgstr "het downloaden van meta-data voor module '~a' is mislukt.~%" @@ -8405,6 +8573,12 @@ msgstr "" "Gebruik: guix import texlive PAKKETNAAM\n" "Voer het Texlive-pakket met PAKKETNAAM in en vorm het om.\n" +#: guix/scripts/import/texlive.scm:84 +#, fuzzy, scheme-format +#| msgid "failed to download package '~a'~%" +msgid "failed to import package '~a'~%" +msgstr "kon het pakket ‘~a’ niet binnenhalen~%" + #: guix/scripts/offload.scm:130 #, scheme-format msgid "The 'system' field is deprecated, please use 'systems' instead.~%" @@ -8890,7 +9064,7 @@ msgstr "verbinding afgesloten~%" msgid "~a: unknown type of REPL~%" msgstr "~a: onbekend type voor REPL~%" -#: guix/scripts/shell.scm:46 +#: guix/scripts/shell.scm:48 #, fuzzy #| msgid "" #| "Usage: guix environment [OPTION]... PACKAGE... [-- COMMAND...]\n" @@ -8905,7 +9079,7 @@ msgstr "" "Bouw een omgeving met de vereisten voor PAKKET en voer daarin OPDRACHT\n" "of een interactieve shell uit.\n" -#: guix/scripts/shell.scm:52 +#: guix/scripts/shell.scm:54 #, fuzzy #| msgid "" #| "\n" @@ -8917,7 +9091,7 @@ msgstr "" "\n" " -d, --derivations geef de distillatiepaden van de opgegeven pakketten weer" -#: guix/scripts/shell.scm:54 +#: guix/scripts/shell.scm:56 #, fuzzy #| msgid "" #| "\n" @@ -8931,7 +9105,7 @@ msgstr "" " -l, --load=BESTAND maak omgeving aan voor het pakket dat de code in\n" " BESTAND evalueert naar" -#: guix/scripts/shell.scm:56 +#: guix/scripts/shell.scm:58 #, fuzzy #| msgid "" #| "\n" @@ -8943,30 +9117,30 @@ msgstr "" "\n" " -q belemmer het laden van ~/.guile" -#: guix/scripts/shell.scm:58 +#: guix/scripts/shell.scm:60 msgid "" "\n" " --rebuild-cache rebuild cached environment, if any" msgstr "" -#: guix/scripts/shell.scm:199 +#: guix/scripts/shell.scm:201 #, fuzzy, scheme-format #| msgid " canonical file name: ~a~%" msgid "ignoring invalid file name: '~a'~%" msgstr " canonieke bestandsnaam: ~a~%" -#: guix/scripts/shell.scm:280 +#: guix/scripts/shell.scm:266 #, fuzzy, scheme-format #| msgid "following redirection to `~a'...~%" msgid "loading environment from '~a'...~%" msgstr "omleiding naar ‘~a’ wordt gevolgd…~%" -#: guix/scripts/shell.scm:286 +#: guix/scripts/shell.scm:272 #, scheme-format msgid "not loading '~a' because not authorized to do so~%" msgstr "" -#: guix/scripts/shell.scm:288 +#: guix/scripts/shell.scm:274 #, scheme-format msgid "" "To allow automatic loading of\n" @@ -8978,53 +9152,65 @@ msgid "" "@end example\n" msgstr "" -#: guix/scripts/shell.scm:386 +#: guix/scripts/shell.scm:431 msgid "" "Consider passing the @option{--check} option once\n" "to make sure your shell does not clobber environment variables." msgstr "" -#: guix/scripts/style.scm:241 +#: guix/scripts/style.scm:499 #, fuzzy, scheme-format #| msgid "~s: invalid G-expression input~%" msgid "~a: complex expression, bailing out~%" msgstr "~s: ongeldige invoer voor G-uitdrukking~%" -#: guix/scripts/style.scm:259 +#: guix/scripts/style.scm:517 #, fuzzy, scheme-format #| msgid "module name ~a does not match file name '~a'~%" msgid "~a: input label '~a' does not match package name, bailing out~%" msgstr "modulenaam ~a komt niet overeen met bestandsnaam ‘~a’~%" -#: guix/scripts/style.scm:264 +#: guix/scripts/style.scm:522 #, scheme-format msgid "~a: non-trivial input, bailing out~%" msgstr "" -#: guix/scripts/style.scm:288 +#: guix/scripts/style.scm:546 #, fuzzy, scheme-format #| msgid "~s: invalid G-expression input~%" msgid "~a: input expression is too short~%" msgstr "~s: ongeldige invoer voor G-uitdrukking~%" -#: guix/scripts/style.scm:380 +#: guix/scripts/style.scm:638 #, fuzzy, scheme-format #| msgid "~a: unsupported kind of search path~%" msgid "~a: unsupported input style, bailing out~%" msgstr "~a: dit soort zoekpad wordt niet ondersteund~%" -#: guix/scripts/style.scm:392 +#: guix/scripts/style.scm:650 #, scheme-format msgid "would be edited~%" msgstr "" -#: guix/scripts/style.scm:482 +#: guix/scripts/style.scm:721 +#, fuzzy, scheme-format +#| msgid "failed to download description for package '~a'~%" +msgid "no definition location for package ~a~%" +msgstr "kon de beschrijving voor pakket ‘~a’ niet binnenhalen~%" + +#: guix/scripts/style.scm:767 +#, fuzzy, scheme-format +#| msgid "~a: unknown action~%" +msgid "~a: unknown styling~%" +msgstr "~a: onbekende actie~%" + +#: guix/scripts/style.scm:774 #, fuzzy, scheme-format #| msgid "~a: invalid symlink specification~%" msgid "~a: invalid input simplification policy~%" msgstr "~a: ongeldige specificatie voor symbolische verwijzing~%" -#: guix/scripts/style.scm:496 +#: guix/scripts/style.scm:788 #, fuzzy #| msgid "" #| "Usage: guix archive [OPTION]... PACKAGE...\n" @@ -9036,7 +9222,13 @@ msgstr "" "Gebruik: guix archive [OPTIE]... PAKKET...\n" "Een of meer pakketten uit de store uitvoeren of erin invoeren.\n" -#: guix/scripts/style.scm:498 +#: guix/scripts/style.scm:790 +msgid "" +"\n" +" -S, --styling=RULE apply RULE, a styling rule" +msgstr "" + +#: guix/scripts/style.scm:793 #, fuzzy #| msgid "" #| "\n" @@ -9048,7 +9240,7 @@ msgstr "" "\n" " -n, --dry-run voer de distillaties niet uit" -#: guix/scripts/style.scm:504 +#: guix/scripts/style.scm:799 msgid "" "\n" " --input-simplification=POLICY\n" @@ -9199,6 +9391,16 @@ msgstr "luister op SOCKET voor verbindingen" msgid "produce debugging output" msgstr "geef foutopsporingsinformatie weer" +#~ msgid "Please select a disk." +#~ msgstr "Kies een opslagapparaat." + +#, fuzzy +#~| msgid "failed to import '~a' from '~a'~%" +#~ msgid "" +#~ "Failed to import package ~s.\n" +#~ "reason: ~s.~%" +#~ msgstr "invoeren van ‘~a’ vanaf ‘~a’ mislukt~%" + #~ msgid "Other services" #~ msgstr "Andere services" diff --git a/po/guix/oc.po b/po/guix/oc.po index 2fbbe9db60..23b2fb9a02 100644 --- a/po/guix/oc.po +++ b/po/guix/oc.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: GNU guix\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" "PO-Revision-Date: 2021-05-03 02:58+0000\n" "Last-Translator: Quentin PAGÈS \n" "Language-Team: Occitan \n" @@ -50,37 +50,37 @@ msgstr "" msgid "Try adding @code{(use-service-modules ~a)}." msgstr "" -#: gnu/packages.scm:96 +#: gnu/packages.scm:97 #, scheme-format msgid "~a: patch not found" msgstr "" -#: gnu/packages.scm:480 gnu/packages.scm:521 +#: gnu/packages.scm:481 gnu/packages.scm:522 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "" -#: gnu/packages.scm:481 gnu/packages.scm:522 +#: gnu/packages.scm:482 gnu/packages.scm:523 #, scheme-format msgid "choosing ~a@~a from ~a~%" msgstr "" -#: gnu/packages.scm:486 guix/scripts/package.scm:216 +#: gnu/packages.scm:487 guix/scripts/package.scm:218 #, scheme-format msgid "package '~a' has been superseded by '~a'~%" msgstr "" -#: gnu/packages.scm:493 gnu/packages.scm:510 +#: gnu/packages.scm:494 gnu/packages.scm:511 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A : paquet pas trobat per la version ~a~%" -#: gnu/packages.scm:494 gnu/packages.scm:511 +#: gnu/packages.scm:495 gnu/packages.scm:512 #, scheme-format msgid "~A: unknown package~%" msgstr "~A : paquet desconegut~%" -#: gnu/packages.scm:550 +#: gnu/packages.scm:551 #, scheme-format msgid "package `~a' lacks output `~a'~%" msgstr "" @@ -268,14 +268,14 @@ msgid "" "@code{SIGKILL}." msgstr "" -#: gnu/home/services.scm:127 +#: gnu/home/services.scm:128 msgid "" "Build the home environment top-level directory,\n" "which in turn refers to everything the home environment needs: its\n" "packages, configuration files, activation script, and so on." msgstr "" -#: gnu/home/services.scm:158 +#: gnu/home/services.scm:159 #, scheme-format msgid "" "This is the @dfn{home profile} and can be found in\n" @@ -284,21 +284,21 @@ msgid "" "@code{home-environment} record." msgstr "" -#: gnu/home/services.scm:180 +#: gnu/home/services.scm:181 #, scheme-format msgid "duplicate definition for `~a' environment variable ~%" msgstr "" -#: gnu/home/services.scm:242 +#: gnu/home/services.scm:243 msgid "Set the environment variables." msgstr "" -#: gnu/home/services.scm:253 +#: gnu/home/services.scm:254 #, scheme-format msgid "duplicate '~a' entry for files/" msgstr "" -#: gnu/home/services.scm:277 +#: gnu/home/services.scm:278 #, scheme-format msgid "" "Configuration files for programs that\n" @@ -307,7 +307,7 @@ msgstr "" #. TRANSLATORS: 'on-first-login' is the name of a service and #. shouldn't be translated -#: gnu/home/services.scm:308 +#: gnu/home/services.scm:309 msgid "" "XDG_RUNTIME_DIR doesn't exists, on-first-login script\n" "won't execute anything. You can check if xdg runtime directory exists,\n" @@ -315,13 +315,13 @@ msgid "" "script by running '$HOME/.guix-home/on-first-login'" msgstr "" -#: gnu/home/services.scm:328 +#: gnu/home/services.scm:329 msgid "" "Run gexps on first user login. Can be\n" "extended with one gexp." msgstr "" -#: gnu/home/services.scm:391 +#: gnu/home/services.scm:392 msgid "" "Run gexps to activate the current\n" "generation of home environment and update the state of the home\n" @@ -330,33 +330,33 @@ msgid "" "with one gexp, but many times, and all gexps must be idempotent." msgstr "" -#: gnu/home/services.scm:472 +#: gnu/home/services.scm:473 #, scheme-format msgid "" "Comparing ~a and\n" "~10t~a..." msgstr "" -#: gnu/home/services.scm:474 +#: gnu/home/services.scm:475 #, scheme-format msgid " done (~a)\n" msgstr "" #. TRANSLATORS: 'on-change' is the name of a service type, it #. probably shouldn't be translated. -#: gnu/home/services.scm:483 +#: gnu/home/services.scm:484 msgid "" "Evaluating on-change gexps.\n" "\n" msgstr "" -#: gnu/home/services.scm:485 +#: gnu/home/services.scm:486 msgid "" "On-change gexps evaluation finished.\n" "\n" msgstr "" -#: gnu/home/services.scm:499 +#: gnu/home/services.scm:500 msgid "" "G-expressions to run if the specified files have changed since the\n" "last generation. The extension should be a list of lists where the\n" @@ -364,7 +364,7 @@ msgid "" "changed, and the second element is the G-expression to be evaluated." msgstr "" -#: gnu/home/services.scm:519 +#: gnu/home/services.scm:520 msgid "" "Store provenance information about the home environment in the home\n" "environment itself: the channels used when building the home\n" @@ -617,12 +617,12 @@ msgstr "" msgid "Updater for ELPA packages" msgstr "" -#: guix/import/github.scm:170 +#: guix/import/github.scm:175 #, scheme-format msgid "~a is unreachable (~a)~%" msgstr "" -#: guix/import/github.scm:260 +#: guix/import/github.scm:274 msgid "Updater for GitHub packages" msgstr "" @@ -659,24 +659,27 @@ msgstr "~A : paquet pas trobat per la version ~a~%" msgid "failed to determine latest release of GNU ~a" msgstr "" -#: guix/import/go.scm:569 +#: guix/import/go.scm:571 #, scheme-format msgid "unsupported vcs type '~a' for package '~a'" msgstr "" -#: guix/import/go.scm:647 +#: guix/import/go.scm:594 #, scheme-format -msgid "" -"Failed to import package ~s.\n" -"reason: ~s could not be fetched: HTTP error ~a (~s).\n" -"This package and its dependencies won't be imported.~%" +msgid "version ~a of ~a is not available~%" +msgstr "" + +#: guix/import/go.scm:597 +#, scheme-format +msgid "Pick one of the following available versions:~{ ~a~}." msgstr "" -#: guix/import/go.scm:656 +#: guix/import/go.scm:671 #, scheme-format msgid "" "Failed to import package ~s.\n" -"reason: ~s.~%" +"reason: ~s could not be fetched: HTTP error ~a (~s).\n" +"This package and its dependencies won't be imported.~%" msgstr "" #: guix/import/minetest.scm:178 @@ -773,77 +776,99 @@ msgstr "modul ~a pas trobat" msgid "Updater for OPAM packages" msgstr "" -#: guix/import/pypi.scm:230 +#: guix/import/pypi.scm:233 msgid "Could not extract requirement name in spec:" msgstr "" -#: guix/import/pypi.scm:290 +#: guix/import/pypi.scm:293 #, scheme-format msgid "parse-requires.txt reached an unexpected condition on line ~a~%" msgstr "" -#: guix/import/pypi.scm:356 +#: guix/import/pypi.scm:359 #, scheme-format msgid "Failed to extract file: ~a from wheel.~%" msgstr "" -#: guix/import/pypi.scm:385 +#: guix/import/pypi.scm:388 #, scheme-format msgid "Cannot guess requirements from source archive: no requires.txt file found.~%" msgstr "" -#: guix/import/pypi.scm:390 +#: guix/import/pypi.scm:393 #, scheme-format msgid "Unsupported archive format; cannot determine package dependencies from source archive: ~a~%" msgstr "" -#: guix/import/pypi.scm:489 +#: guix/import/pypi.scm:434 +#, scheme-format +msgid "project name ~a does not appear verbatim in the PyPI URI~%" +msgstr "" + +#: guix/import/pypi.scm:437 +#, scheme-format +msgid "" +"The PyPI URI is: @url{~a}. You should review the\n" +"pypi-uri declaration in the generated package. You may need to replace ~s with\n" +"a substring of the PyPI URI that identifies the package." +msgstr "" + +#: guix/import/pypi.scm:505 #, scheme-format msgid "no source release for pypi package ~a ~a~%" msgstr "" -#: guix/import/pypi.scm:554 +#: guix/import/pypi.scm:509 +#, scheme-format +msgid "" +"This indicates that the\n" +"package is available on PyPI, but only as a \"wheel\" containing binaries, not\n" +"source. To build it from source, refer to the upstream repository at\n" +"@uref{~a}." +msgstr "" + +#: guix/import/pypi.scm:579 msgid "Updater for PyPI packages" msgstr "" -#: gnu/installer.scm:214 +#: gnu/installer.scm:217 msgid "Locale" msgstr "" -#: gnu/installer.scm:230 gnu/installer/newt/timezone.scm:58 +#: gnu/installer.scm:233 gnu/installer/newt/timezone.scm:58 msgid "Timezone" msgstr "" -#: gnu/installer.scm:247 +#: gnu/installer.scm:250 msgid "Keyboard mapping selection" msgstr "" -#: gnu/installer.scm:256 gnu/installer/newt/hostname.scm:26 +#: gnu/installer.scm:259 gnu/installer/newt/hostname.scm:26 msgid "Hostname" msgstr "" -#: gnu/installer.scm:265 +#: gnu/installer.scm:268 msgid "Network selection" msgstr "" -#: gnu/installer.scm:272 +#: gnu/installer.scm:275 msgid "Substitute server discovery" msgstr "" -#: gnu/installer.scm:279 gnu/installer/newt/user.scm:68 -#: gnu/installer/newt/user.scm:205 +#: gnu/installer.scm:282 gnu/installer/newt/user.scm:67 +#: gnu/installer/newt/user.scm:204 msgid "User creation" msgstr "" -#: gnu/installer.scm:287 +#: gnu/installer.scm:290 msgid "Services" msgstr "" -#: gnu/installer.scm:298 +#: gnu/installer.scm:301 msgid "Partitioning" msgstr "" -#: gnu/installer.scm:305 gnu/installer/newt/final.scm:53 +#: gnu/installer.scm:308 gnu/installer/newt/final.scm:53 msgid "Configuration file" msgstr "" @@ -855,19 +880,78 @@ msgstr "" msgid "Unable to find expected regexp." msgstr "" -#: gnu/installer/newt.scm:52 +#: gnu/installer/newt.scm:58 msgid "Press for installation parameters." msgstr "" -#: gnu/installer/newt.scm:65 -#, scheme-format -msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +#: gnu/installer/newt.scm:68 +msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. You may choose to exit or create a dump archive." msgstr "" -#: gnu/installer/newt.scm:68 +#: gnu/installer/newt.scm:71 msgid "Unexpected problem" msgstr "" +#: gnu/installer/newt.scm:75 +msgid "Dump" +msgstr "" + +#: gnu/installer/newt.scm:76 gnu/installer/newt/ethernet.scm:79 +#: gnu/installer/newt/keymap.scm:56 gnu/installer/newt/locale.scm:43 +#: gnu/installer/newt/network.scm:65 gnu/installer/newt/network.scm:82 +#: gnu/installer/newt/page.scm:315 gnu/installer/newt/page.scm:679 +#: gnu/installer/newt/page.scm:763 gnu/installer/newt/page.scm:828 +#: gnu/installer/newt/partition.scm:54 gnu/installer/newt/partition.scm:90 +#: gnu/installer/newt/partition.scm:125 gnu/installer/newt/partition.scm:140 +#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 +#: gnu/installer/newt/partition.scm:706 gnu/installer/newt/partition.scm:764 +#: gnu/installer/newt/partition.scm:775 gnu/installer/newt/services.scm:124 +#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/wifi.scm:206 +msgid "Exit" +msgstr "" + +#: gnu/installer/newt.scm:82 +#, scheme-format +msgid "The dump archive was created as ~a. Would you like to send this archive to the Guix servers?" +msgstr "" + +#: gnu/installer/newt.scm:84 +msgid "Dump archive created" +msgstr "" + +#: gnu/installer/newt.scm:88 +#, scheme-format +msgid "The dump was uploaded as ~a. Please report it by email to ~a." +msgstr "" + +#: gnu/installer/newt.scm:90 +msgid "The dump could not be uploaded." +msgstr "" + +#: gnu/installer/newt.scm:93 +msgid "Dump upload result" +msgstr "" + +#: gnu/installer/newt.scm:132 +#, scheme-format +msgid "External command ~s exited with code ~a" +msgstr "" + +#: gnu/installer/newt.scm:135 +#, scheme-format +msgid "External command ~s terminated by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:138 +#, scheme-format +msgid "External command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:140 +msgid "External command error" +msgstr "" + #: gnu/installer/newt/ethernet.scm:66 msgid "No ethernet service available, please try again." msgstr "" @@ -876,59 +960,45 @@ msgstr "" msgid "No service" msgstr "" -#: gnu/installer/newt/ethernet.scm:76 +#: gnu/installer/newt/ethernet.scm:74 msgid "Please select an ethernet network." msgstr "" -#: gnu/installer/newt/ethernet.scm:77 +#: gnu/installer/newt/ethernet.scm:75 msgid "Ethernet connection" msgstr "" -#: gnu/installer/newt/ethernet.scm:81 gnu/installer/newt/keymap.scm:56 -#: gnu/installer/newt/locale.scm:43 gnu/installer/newt/network.scm:63 -#: gnu/installer/newt/network.scm:84 gnu/installer/newt/page.scm:309 -#: gnu/installer/newt/page.scm:673 gnu/installer/newt/page.scm:758 -#: gnu/installer/newt/partition.scm:56 gnu/installer/newt/partition.scm:91 -#: gnu/installer/newt/partition.scm:126 gnu/installer/newt/partition.scm:141 -#: gnu/installer/newt/partition.scm:638 gnu/installer/newt/partition.scm:661 -#: gnu/installer/newt/partition.scm:707 gnu/installer/newt/partition.scm:765 -#: gnu/installer/newt/partition.scm:776 gnu/installer/newt/services.scm:130 -#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:204 -#: gnu/installer/newt/wifi.scm:206 -msgid "Exit" -msgstr "" - #: gnu/installer/newt/final.scm:46 #, scheme-format msgid "We're now ready to proceed with the installation! A system configuration file has been generated, it is displayed below. This file will be available as '~a' on the installed system. The new system will be created from this file once you've pressed OK. This will take a few minutes." msgstr "" -#: gnu/installer/newt/final.scm:70 +#: gnu/installer/newt/final.scm:68 msgid "Installation complete" msgstr "" -#: gnu/installer/newt/final.scm:71 gnu/installer/newt/parameters.scm:45 +#: gnu/installer/newt/final.scm:69 gnu/installer/newt/parameters.scm:45 #: gnu/installer/newt/welcome.scm:145 msgid "Reboot" msgstr "" -#: gnu/installer/newt/final.scm:72 +#: gnu/installer/newt/final.scm:70 msgid "Congratulations! Installation is now complete. You may remove the device containing the installation image and press the button to reboot." msgstr "" -#: gnu/installer/newt/final.scm:86 +#: gnu/installer/newt/final.scm:84 msgid "Installation failed" msgstr "" -#: gnu/installer/newt/final.scm:87 +#: gnu/installer/newt/final.scm:85 msgid "Resume" msgstr "" -#: gnu/installer/newt/final.scm:88 +#: gnu/installer/newt/final.scm:86 msgid "Restart the installer" msgstr "" -#: gnu/installer/newt/final.scm:89 +#: gnu/installer/newt/final.scm:87 msgid "The final system installation step failed. You can resume from a specific step, or restart the installer." msgstr "" @@ -956,9 +1026,9 @@ msgstr "" msgid "Installation parameters" msgstr "" -#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:74 -#: gnu/installer/newt/locale.scm:63 gnu/installer/newt/locale.scm:78 -#: gnu/installer/newt/locale.scm:94 gnu/installer/newt/partition.scm:595 +#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:72 +#: gnu/installer/newt/locale.scm:61 gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:88 gnu/installer/newt/partition.scm:594 #: gnu/installer/newt/timezone.scm:64 msgid "Back" msgstr "" @@ -979,16 +1049,16 @@ msgstr "" msgid "Please choose your keyboard layout. It will be used during the install process, and for the installed system. Non-Latin layouts can be toggled with Alt+Shift. You can switch to a different layout at any time from the parameters menu." msgstr "" -#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:62 -#: gnu/installer/newt/page.scm:308 +#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/page.scm:314 msgid "Continue" msgstr "" -#: gnu/installer/newt/keymap.scm:67 +#: gnu/installer/newt/keymap.scm:65 msgid "Variant" msgstr "" -#: gnu/installer/newt/keymap.scm:70 +#: gnu/installer/newt/keymap.scm:68 msgid "Please choose a variant for your keyboard layout." msgstr "" @@ -1000,35 +1070,35 @@ msgstr "" msgid "Choose the language to use for the installation process and for the installed system." msgstr "" -#: gnu/installer/newt/locale.scm:57 +#: gnu/installer/newt/locale.scm:55 msgid "Locale location" msgstr "" -#: gnu/installer/newt/locale.scm:60 +#: gnu/installer/newt/locale.scm:58 msgid "Choose a territory for this language." msgstr "" -#: gnu/installer/newt/locale.scm:71 +#: gnu/installer/newt/locale.scm:67 msgid "Locale codeset" msgstr "" -#: gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:70 msgid "Choose the locale encoding." msgstr "" -#: gnu/installer/newt/locale.scm:86 +#: gnu/installer/newt/locale.scm:80 msgid "Locale modifier" msgstr "" -#: gnu/installer/newt/locale.scm:89 +#: gnu/installer/newt/locale.scm:83 msgid "Choose your locale's modifier. The most frequent modifier is euro. It indicates that you want to use Euro as the currency symbol." msgstr "" -#: gnu/installer/newt/locale.scm:190 +#: gnu/installer/newt/locale.scm:181 msgid "No location" msgstr "" -#: gnu/installer/newt/locale.scm:217 +#: gnu/installer/newt/locale.scm:208 msgid "No modifier" msgstr "" @@ -1044,330 +1114,334 @@ msgstr "" msgid "Abort" msgstr "" -#: gnu/installer/newt/network.scm:61 gnu/installer/newt/network.scm:80 +#: gnu/installer/newt/network.scm:63 gnu/installer/newt/network.scm:78 msgid "Internet access" msgstr "" -#: gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/network.scm:66 msgid "The install process requires Internet access but no network devices were found. Do you want to continue anyway?" msgstr "" -#: gnu/installer/newt/network.scm:78 +#: gnu/installer/newt/network.scm:76 msgid "The install process requires Internet access. Please select a network device." msgstr "" -#: gnu/installer/newt/network.scm:103 +#: gnu/installer/newt/network.scm:99 msgid "Powering technology" msgstr "" -#: gnu/installer/newt/network.scm:104 +#: gnu/installer/newt/network.scm:100 #, scheme-format msgid "Waiting for technology ~a to be powered." msgstr "" -#: gnu/installer/newt/network.scm:128 +#: gnu/installer/newt/network.scm:139 msgid "Checking connectivity" msgstr "" -#: gnu/installer/newt/network.scm:129 +#: gnu/installer/newt/network.scm:140 msgid "Waiting for Internet access establishment..." msgstr "" -#: gnu/installer/newt/network.scm:139 -msgid "The selected network does not provide access to the Internet, please try again." +#: gnu/installer/newt/network.scm:150 +msgid "The selected network does not provide access to the Internet and the Guix substitute server, please try again." msgstr "" -#: gnu/installer/newt/network.scm:141 gnu/installer/newt/wifi.scm:108 +#: gnu/installer/newt/network.scm:152 gnu/installer/newt/wifi.scm:108 msgid "Connection error" msgstr "" -#: gnu/installer/newt/page.scm:198 +#: gnu/installer/newt/page.scm:204 #, scheme-format msgid "Connecting to ~a, please wait." msgstr "" -#: gnu/installer/newt/page.scm:199 +#: gnu/installer/newt/page.scm:205 msgid "Connection in progress" msgstr "" -#: gnu/installer/newt/page.scm:218 gnu/installer/newt/user.scm:60 +#: gnu/installer/newt/page.scm:224 gnu/installer/newt/user.scm:59 msgid "Show" msgstr "" -#: gnu/installer/newt/page.scm:225 gnu/installer/newt/page.scm:672 -#: gnu/installer/newt/page.scm:757 gnu/installer/newt/partition.scm:458 -#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 -#: gnu/installer/newt/partition.scm:699 gnu/installer/newt/user.scm:66 -#: gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/page.scm:231 gnu/installer/newt/page.scm:678 +#: gnu/installer/newt/page.scm:762 gnu/installer/newt/partition.scm:457 +#: gnu/installer/newt/partition.scm:636 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:698 gnu/installer/newt/user.scm:65 +#: gnu/installer/newt/user.scm:202 msgid "OK" msgstr "" -#: gnu/installer/newt/page.scm:251 +#: gnu/installer/newt/page.scm:257 msgid "Please enter a non empty input." msgstr "" -#: gnu/installer/newt/page.scm:252 gnu/installer/newt/user.scm:123 +#: gnu/installer/newt/page.scm:258 gnu/installer/newt/user.scm:122 msgid "Empty input" msgstr "" -#: gnu/installer/newt/page.scm:760 +#: gnu/installer/newt/page.scm:765 msgid "Edit" msgstr "" -#: gnu/installer/newt/partition.scm:47 +#: gnu/installer/newt/page.scm:825 +msgid "Ok" +msgstr "" + +#: gnu/installer/newt/partition.scm:45 msgid "Everything is one partition" msgstr "" -#: gnu/installer/newt/partition.scm:48 +#: gnu/installer/newt/partition.scm:46 msgid "Separate /home partition" msgstr "" -#: gnu/installer/newt/partition.scm:50 +#: gnu/installer/newt/partition.scm:48 msgid "Please select a partitioning scheme." msgstr "" -#: gnu/installer/newt/partition.scm:51 +#: gnu/installer/newt/partition.scm:49 msgid "Partition scheme" msgstr "" #. TRANSLATORS: The ~{ and ~} format specifiers are used to iterate the list #. of device names of the user partitions that will be formatted. -#: gnu/installer/newt/partition.scm:65 +#: gnu/installer/newt/partition.scm:63 #, scheme-format msgid "We are about to write the configured partition table to the disk and format the partitions listed below. Their data will be lost. Do you wish to continue?~%~%~{ - ~a~%~}" msgstr "" -#: gnu/installer/newt/partition.scm:71 +#: gnu/installer/newt/partition.scm:69 msgid "Format disk?" msgstr "" -#: gnu/installer/newt/partition.scm:74 +#: gnu/installer/newt/partition.scm:72 msgid "Partition formatting is in progress, please wait." msgstr "" -#: gnu/installer/newt/partition.scm:75 +#: gnu/installer/newt/partition.scm:73 msgid "Preparing partitions" msgstr "" -#: gnu/installer/newt/partition.scm:86 -msgid "Please select a disk." +#: gnu/installer/newt/partition.scm:84 +msgid "Please select a disk. The installation device as well as the small devices are filtered." msgstr "" -#: gnu/installer/newt/partition.scm:87 +#: gnu/installer/newt/partition.scm:86 msgid "Disk" msgstr "" -#: gnu/installer/newt/partition.scm:102 +#: gnu/installer/newt/partition.scm:101 msgid "Select a new partition table type. Be careful, all data on the disk will be lost." msgstr "" -#: gnu/installer/newt/partition.scm:104 +#: gnu/installer/newt/partition.scm:103 msgid "Partition table" msgstr "" -#: gnu/installer/newt/partition.scm:121 +#: gnu/installer/newt/partition.scm:120 msgid "Please select a partition type." msgstr "" -#: gnu/installer/newt/partition.scm:122 +#: gnu/installer/newt/partition.scm:121 msgid "Partition type" msgstr "" -#: gnu/installer/newt/partition.scm:132 +#: gnu/installer/newt/partition.scm:131 msgid "Please select the file-system type for this partition." msgstr "" -#: gnu/installer/newt/partition.scm:133 +#: gnu/installer/newt/partition.scm:132 msgid "File-system type" msgstr "" -#: gnu/installer/newt/partition.scm:150 +#: gnu/installer/newt/partition.scm:149 msgid "Primary partitions count exceeded." msgstr "" -#: gnu/installer/newt/partition.scm:151 gnu/installer/newt/partition.scm:156 -#: gnu/installer/newt/partition.scm:161 +#: gnu/installer/newt/partition.scm:150 gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:160 msgid "Creation error" msgstr "" -#: gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:154 msgid "Extended partition creation error." msgstr "" -#: gnu/installer/newt/partition.scm:160 +#: gnu/installer/newt/partition.scm:159 msgid "Logical partition creation error." msgstr "" -#: gnu/installer/newt/partition.scm:174 +#: gnu/installer/newt/partition.scm:173 #, scheme-format msgid "Please enter the password for the encryption of partition ~a (label: ~a)." msgstr "" -#: gnu/installer/newt/partition.scm:176 gnu/installer/newt/wifi.scm:92 +#: gnu/installer/newt/partition.scm:175 gnu/installer/newt/wifi.scm:92 msgid "Password required" msgstr "" -#: gnu/installer/newt/partition.scm:181 +#: gnu/installer/newt/partition.scm:180 #, scheme-format msgid "Please confirm the password for the encryption of partition ~a (label: ~a)." msgstr "" -#: gnu/installer/newt/partition.scm:183 gnu/installer/newt/user.scm:160 +#: gnu/installer/newt/partition.scm:182 gnu/installer/newt/user.scm:159 msgid "Password confirmation required" msgstr "" -#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 +#: gnu/installer/newt/partition.scm:194 gnu/installer/newt/user.scm:167 msgid "Password mismatch, please try again." msgstr "" -#: gnu/installer/newt/partition.scm:196 gnu/installer/newt/user.scm:169 +#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 msgid "Password error" msgstr "" -#: gnu/installer/newt/partition.scm:282 +#: gnu/installer/newt/partition.scm:281 msgid "Please enter the partition gpt name." msgstr "" -#: gnu/installer/newt/partition.scm:283 +#: gnu/installer/newt/partition.scm:282 msgid "Partition name" msgstr "" -#: gnu/installer/newt/partition.scm:313 +#: gnu/installer/newt/partition.scm:312 msgid "Please enter the encrypted label" msgstr "" -#: gnu/installer/newt/partition.scm:314 +#: gnu/installer/newt/partition.scm:313 msgid "Encryption label" msgstr "" -#: gnu/installer/newt/partition.scm:331 +#: gnu/installer/newt/partition.scm:330 #, scheme-format msgid "Please enter the size of the partition. The maximum size is ~a." msgstr "" -#: gnu/installer/newt/partition.scm:333 +#: gnu/installer/newt/partition.scm:332 msgid "Partition size" msgstr "" -#: gnu/installer/newt/partition.scm:351 +#: gnu/installer/newt/partition.scm:350 msgid "The percentage can not be superior to 100." msgstr "" -#: gnu/installer/newt/partition.scm:352 gnu/installer/newt/partition.scm:357 -#: gnu/installer/newt/partition.scm:362 +#: gnu/installer/newt/partition.scm:351 gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:361 msgid "Size error" msgstr "" -#: gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:355 msgid "The requested size is incorrectly formatted, or too large." msgstr "" -#: gnu/installer/newt/partition.scm:361 +#: gnu/installer/newt/partition.scm:360 msgid "The request size is superior to the maximum size." msgstr "" -#: gnu/installer/newt/partition.scm:381 +#: gnu/installer/newt/partition.scm:380 msgid "Please enter the desired mounting point for this partition. Leave this field empty if you don't want to set a mounting point." msgstr "" -#: gnu/installer/newt/partition.scm:383 +#: gnu/installer/newt/partition.scm:382 msgid "Mounting point" msgstr "" -#: gnu/installer/newt/partition.scm:447 +#: gnu/installer/newt/partition.scm:446 #, scheme-format msgid "Creating ~a partition starting at ~a of ~a." msgstr "" -#: gnu/installer/newt/partition.scm:449 +#: gnu/installer/newt/partition.scm:448 #, scheme-format msgid "You are currently editing partition ~a." msgstr "" -#: gnu/installer/newt/partition.scm:452 +#: gnu/installer/newt/partition.scm:451 msgid "Partition creation" msgstr "" -#: gnu/installer/newt/partition.scm:453 +#: gnu/installer/newt/partition.scm:452 msgid "Partition edit" msgstr "" -#: gnu/installer/newt/partition.scm:634 +#: gnu/installer/newt/partition.scm:633 #, scheme-format msgid "Are you sure you want to delete everything on disk ~a?" msgstr "" -#: gnu/installer/newt/partition.scm:636 +#: gnu/installer/newt/partition.scm:635 msgid "Delete disk" msgstr "" -#: gnu/installer/newt/partition.scm:651 +#: gnu/installer/newt/partition.scm:650 msgid "You cannot delete a free space area." msgstr "" -#: gnu/installer/newt/partition.scm:652 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:651 gnu/installer/newt/partition.scm:658 msgid "Delete partition" msgstr "" -#: gnu/installer/newt/partition.scm:657 +#: gnu/installer/newt/partition.scm:656 #, scheme-format msgid "Are you sure you want to delete partition ~a?" msgstr "" -#: gnu/installer/newt/partition.scm:674 +#: gnu/installer/newt/partition.scm:673 msgid "" "You can change a disk's partition table by selecting it and pressing ENTER. You can also edit a partition by selecting it and pressing ENTER, or remove it by pressing DELETE. To create a new partition, select a free space area and press ENTER.\n" "\n" "At least one partition must have its mounting point set to '/'." msgstr "" -#: gnu/installer/newt/partition.scm:680 +#: gnu/installer/newt/partition.scm:679 #, scheme-format msgid "This is the proposed partitioning. It is still possible to edit it or to go back to install menu by pressing the Exit button.~%~%" msgstr "" -#: gnu/installer/newt/partition.scm:690 +#: gnu/installer/newt/partition.scm:689 msgid "Guided partitioning" msgstr "" -#: gnu/installer/newt/partition.scm:691 +#: gnu/installer/newt/partition.scm:690 msgid "Manual partitioning" msgstr "" -#: gnu/installer/newt/partition.scm:716 +#: gnu/installer/newt/partition.scm:715 msgid "No root mount point found." msgstr "" -#: gnu/installer/newt/partition.scm:717 +#: gnu/installer/newt/partition.scm:716 msgid "Missing mount point" msgstr "" -#: gnu/installer/newt/partition.scm:721 +#: gnu/installer/newt/partition.scm:720 #, scheme-format msgid "Cannot read the ~a partition UUID. You may need to format it." msgstr "" -#: gnu/installer/newt/partition.scm:724 +#: gnu/installer/newt/partition.scm:723 msgid "Wrong partition format" msgstr "" -#: gnu/installer/newt/partition.scm:755 +#: gnu/installer/newt/partition.scm:754 msgid "Guided - using the entire disk" msgstr "" -#: gnu/installer/newt/partition.scm:756 +#: gnu/installer/newt/partition.scm:755 msgid "Guided - using the entire disk with encryption" msgstr "" -#: gnu/installer/newt/partition.scm:757 +#: gnu/installer/newt/partition.scm:756 msgid "Manual" msgstr "" -#: gnu/installer/newt/partition.scm:759 +#: gnu/installer/newt/partition.scm:758 msgid "Please select a partitioning method." msgstr "" -#: gnu/installer/newt/partition.scm:760 +#: gnu/installer/newt/partition.scm:759 msgid "Partitioning method" msgstr "" @@ -1379,35 +1453,35 @@ msgstr "" msgid "Desktop environment" msgstr "" -#: gnu/installer/newt/services.scm:59 +#: gnu/installer/newt/services.scm:57 msgid "You can now select networking services to run on your system." msgstr "" -#: gnu/installer/newt/services.scm:61 +#: gnu/installer/newt/services.scm:59 msgid "Network service" msgstr "" -#: gnu/installer/newt/services.scm:79 +#: gnu/installer/newt/services.scm:75 msgid "You can now select the CUPS printing service to run on your system." msgstr "" -#: gnu/installer/newt/services.scm:81 +#: gnu/installer/newt/services.scm:77 msgid "Printing and document services" msgstr "" -#: gnu/installer/newt/services.scm:100 +#: gnu/installer/newt/services.scm:94 msgid "Console services" msgstr "" -#: gnu/installer/newt/services.scm:101 +#: gnu/installer/newt/services.scm:95 msgid "Select miscellaneous services to run on your non-graphical system." msgstr "" -#: gnu/installer/newt/services.scm:115 +#: gnu/installer/newt/services.scm:109 msgid "Network management" msgstr "" -#: gnu/installer/newt/services.scm:118 +#: gnu/installer/newt/services.scm:112 msgid "" "Choose the method to manage network connections.\n" "\n" @@ -1437,57 +1511,57 @@ msgstr "" msgid "Please select a timezone." msgstr "" -#: gnu/installer/newt/user.scm:45 +#: gnu/installer/newt/user.scm:44 msgid "Name" msgstr "" -#: gnu/installer/newt/user.scm:47 +#: gnu/installer/newt/user.scm:46 msgid "Real name" msgstr "" -#: gnu/installer/newt/user.scm:49 +#: gnu/installer/newt/user.scm:48 msgid "Home directory" msgstr "" -#: gnu/installer/newt/user.scm:51 +#: gnu/installer/newt/user.scm:50 msgid "Password" msgstr "" -#: gnu/installer/newt/user.scm:122 +#: gnu/installer/newt/user.scm:121 msgid "Empty inputs are not allowed." msgstr "" -#: gnu/installer/newt/user.scm:159 +#: gnu/installer/newt/user.scm:158 msgid "Please confirm the password." msgstr "" #. TRANSLATORS: Leave "root" untranslated: it refers to the name of the #. system administrator account. -#: gnu/installer/newt/user.scm:176 +#: gnu/installer/newt/user.scm:175 msgid "Please choose a password for the system administrator (\"root\")." msgstr "" -#: gnu/installer/newt/user.scm:178 +#: gnu/installer/newt/user.scm:177 msgid "System administrator password" msgstr "" -#: gnu/installer/newt/user.scm:191 +#: gnu/installer/newt/user.scm:190 msgid "Please add at least one user to system using the 'Add' button." msgstr "" -#: gnu/installer/newt/user.scm:194 +#: gnu/installer/newt/user.scm:193 msgid "Add" msgstr "" -#: gnu/installer/newt/user.scm:195 +#: gnu/installer/newt/user.scm:194 msgid "Delete" msgstr "" -#: gnu/installer/newt/user.scm:255 +#: gnu/installer/newt/user.scm:254 msgid "Please create at least one user." msgstr "" -#: gnu/installer/newt/user.scm:256 +#: gnu/installer/newt/user.scm:255 msgid "No user" msgstr "" @@ -1558,60 +1632,60 @@ msgstr "" msgid "Wifi" msgstr "" -#: gnu/installer/parted.scm:433 gnu/installer/parted.scm:470 +#: gnu/installer/parted.scm:455 gnu/installer/parted.scm:492 msgid "Free space" msgstr "" -#: gnu/installer/parted.scm:559 +#: gnu/installer/parted.scm:581 #, scheme-format msgid "Name: ~a" msgstr "" -#: gnu/installer/parted.scm:560 gnu/installer/parted.scm:606 +#: gnu/installer/parted.scm:582 gnu/installer/parted.scm:628 msgid "None" msgstr "" -#: gnu/installer/parted.scm:565 +#: gnu/installer/parted.scm:587 #, scheme-format msgid "Type: ~a" msgstr "" -#: gnu/installer/parted.scm:569 +#: gnu/installer/parted.scm:591 #, scheme-format msgid "File system type: ~a" msgstr "" -#: gnu/installer/parted.scm:575 +#: gnu/installer/parted.scm:597 #, scheme-format msgid "Bootable flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:579 +#: gnu/installer/parted.scm:601 #, scheme-format msgid "ESP flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:585 +#: gnu/installer/parted.scm:607 #, scheme-format msgid "Size: ~a" msgstr "" -#: gnu/installer/parted.scm:591 +#: gnu/installer/parted.scm:613 #, scheme-format msgid "Encryption: ~:[No~a~;Yes (label '~a')~]" msgstr "" -#: gnu/installer/parted.scm:597 +#: gnu/installer/parted.scm:619 #, scheme-format msgid "Format the partition? ~:[No~;Yes~]" msgstr "" -#: gnu/installer/parted.scm:603 +#: gnu/installer/parted.scm:625 #, scheme-format msgid "Mount point: ~a" msgstr "" -#: gnu/installer/parted.scm:1466 +#: gnu/installer/parted.scm:1477 #, scheme-format msgid "Device ~a is still in use." msgstr "" @@ -1655,7 +1729,7 @@ msgstr "" #. TRANSLATORS: This is a comment within a Scheme file. Each line must #. start with ";; " (two semicolons and a space). Please keep line #. length below 60 characters. -#: gnu/installer/steps.scm:252 +#: gnu/installer/steps.scm:242 msgid "" ";; This is an operating system configuration generated\n" ";; by the graphical installer.\n" @@ -1666,98 +1740,117 @@ msgstr "" msgid "Unable to locate path: ~a." msgstr "" -#: gnu/installer/utils.scm:83 +#: gnu/installer/utils.scm:131 #, scheme-format msgid "Press Enter to continue.~%" msgstr "" -#: gnu/installer/utils.scm:108 +#: gnu/installer/utils.scm:150 #, scheme-format -msgid "Command failed with exit code ~a.~%" +msgid "Command ~s exited with value ~a" msgstr "" -#: gnu/machine/ssh.scm:117 +#: gnu/installer/utils.scm:156 +#, scheme-format +msgid "Command ~s killed by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:162 +#, scheme-format +msgid "Command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:167 +#, scheme-format +msgid "Command ~s succeeded" +msgstr "" + +#: gnu/installer/utils.scm:179 +msgid "run-command-in-installer not set" +msgstr "" + +#: gnu/machine/ssh.scm:120 #, scheme-format msgid " without a 'host-key' is deprecated~%" msgstr "" -#: gnu/machine/ssh.scm:192 +#: gnu/machine/ssh.scm:208 #, scheme-format msgid "device '~a' not found: ~a" msgstr "" -#: gnu/machine/ssh.scm:207 +#: gnu/machine/ssh.scm:223 #, scheme-format msgid "no file system with label '~a'" msgstr "" -#: gnu/machine/ssh.scm:226 +#: gnu/machine/ssh.scm:242 #, scheme-format msgid "no file system with UUID '~a'" msgstr "" -#: gnu/machine/ssh.scm:276 +#: gnu/machine/ssh.scm:295 #, scheme-format msgid "missing modules for ~a:~{ ~a~}~%" msgstr "" -#: gnu/machine/ssh.scm:311 +#: gnu/machine/ssh.scm:333 #, scheme-format msgid "incorrect target system ('~a' was given, while the system reports that it is '~a')~%" msgstr "" -#: gnu/machine/ssh.scm:437 +#: gnu/machine/ssh.scm:459 #, scheme-format msgid "no signing key '~a'. have you run 'guix archive --generate-key?'" msgstr "" -#: gnu/machine/ssh.scm:469 +#: gnu/machine/ssh.scm:491 #, scheme-format msgid "failed to switch systems while deploying '~a':~%~{~s ~}" msgstr "" -#: gnu/machine/ssh.scm:477 +#: gnu/machine/ssh.scm:499 #, scheme-format msgid "an error occurred while upgrading services on '~a':~%~{~s ~}~%" msgstr "" -#: gnu/machine/ssh.scm:485 +#: gnu/machine/ssh.scm:507 #, scheme-format msgid "failed to install bootloader on '~a':~%~{~s ~}~%" msgstr "" -#: gnu/machine/ssh.scm:518 +#: gnu/machine/ssh.scm:540 msgid "could not roll-back machine" msgstr "" -#: gnu/machine/ssh.scm:559 +#: gnu/machine/ssh.scm:581 msgid "" "Provisioning for machines that are accessible over SSH\n" "and have a known host-name. This entails little more than maintaining an SSH\n" "connection to the host." msgstr "" -#: gnu/machine/ssh.scm:569 +#: gnu/machine/ssh.scm:591 #, scheme-format msgid "" "unsupported machine configuration '~a'\n" "for environment of type '~a'" msgstr "" -#: gnu/packages/bootstrap.scm:178 +#: gnu/packages/bootstrap.scm:188 #, scheme-format msgid "could not find bootstrap binary '~a' for system '~a'" msgstr "" -#: gnu/packages/bootstrap.scm:492 +#: gnu/packages/bootstrap.scm:578 msgid "Raw build system with direct store access" msgstr "" -#: gnu/packages/bootstrap.scm:500 +#: gnu/packages/bootstrap.scm:586 msgid "Pre-built Guile for bootstrapping purposes." msgstr "" -#: guix/build/utils.scm:822 +#: guix/build/utils.scm:823 #, scheme-format msgid "'~a~{ ~a~}' exited with status ~a; output follows:~%~%~{ ~a~%~}" msgstr "" @@ -1797,7 +1890,7 @@ msgid "~A: unrecognized option~%" msgstr "" #: guix/scripts.scm:169 guix/scripts/import.scm:140 -#: guix/scripts/system.scm:1370 +#: guix/scripts/system.scm:1379 #, scheme-format msgid "Did you mean @code{~a}?~%" msgstr "" @@ -1844,7 +1937,7 @@ msgstr "" #: guix/scripts/build.scm:154 guix/scripts/search.scm:42 #: guix/scripts/show.scm:41 guix/scripts/lint.scm:112 guix/scripts/edit.scm:48 #: guix/scripts/size.scm:246 guix/scripts/graph.scm:553 -#: guix/scripts/repl.scm:80 guix/scripts/style.scm:500 +#: guix/scripts/repl.scm:80 guix/scripts/style.scm:795 msgid "" "\n" " -L, --load-path=DIR prepend DIR to the package module search path" @@ -1997,7 +2090,7 @@ msgid "" " -s, --system=SYSTEM attempt to build for SYSTEM--e.g., \"i686-linux\"" msgstr "" -#: guix/scripts/build.scm:357 guix/scripts/system.scm:1023 +#: guix/scripts/build.scm:357 guix/scripts/system.scm:1026 #: guix/scripts/pack.scm:1329 guix/scripts/archive.scm:97 msgid "" "\n" @@ -2030,13 +2123,13 @@ msgid "" " as a garbage collector root" msgstr "" -#: guix/scripts/build.scm:368 guix/scripts/package.scm:486 +#: guix/scripts/build.scm:368 guix/scripts/package.scm:488 #: guix/scripts/install.scm:37 guix/scripts/remove.scm:36 #: guix/scripts/upgrade.scm:39 guix/scripts/pull.scm:117 -#: guix/scripts/system.scm:1025 guix/scripts/copy.scm:122 -#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:60 +#: guix/scripts/system.scm:1028 guix/scripts/copy.scm:122 +#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:66 #: guix/scripts/archive.scm:99 guix/scripts/environment.scm:123 -#: guix/scripts/home.scm:94 +#: guix/scripts/home.scm:98 msgid "" "\n" " -v, --verbosity=LEVEL use the given verbosity LEVEL" @@ -2055,59 +2148,59 @@ msgid "" msgstr "" #: guix/scripts/build.scm:379 guix/scripts/download.scm:104 -#: guix/scripts/package.scm:504 guix/scripts/install.scm:44 +#: guix/scripts/package.scm:506 guix/scripts/install.scm:44 #: guix/scripts/remove.scm:41 guix/scripts/upgrade.scm:48 #: guix/scripts/search.scm:37 guix/scripts/show.scm:36 guix/scripts/gc.scm:88 #: guix/scripts/git.scm:34 guix/scripts/git/authenticate.scm:110 #: guix/scripts/hash.scm:98 guix/scripts/import.scm:98 #: guix/scripts/import/minetest.scm:46 guix/scripts/import/cran.scm:49 #: guix/scripts/pull.scm:125 guix/scripts/substitute.scm:250 -#: guix/scripts/system.scm:1032 guix/scripts/lint.scm:115 +#: guix/scripts/system.scm:1035 guix/scripts/lint.scm:115 #: guix/scripts/publish.scm:119 guix/scripts/edit.scm:51 #: guix/scripts/size.scm:249 guix/scripts/graph.scm:558 #: guix/scripts/challenge.scm:430 guix/scripts/copy.scm:127 #: guix/scripts/pack.scm:1357 guix/scripts/weather.scm:336 #: guix/scripts/describe.scm:96 guix/scripts/processes.scm:301 -#: guix/scripts/deploy.scm:55 guix/scripts/container.scm:35 +#: guix/scripts/deploy.scm:58 guix/scripts/container.scm:35 #: guix/scripts/container/exec.scm:43 guix/scripts/archive.scm:106 -#: guix/scripts/environment.scm:149 guix/scripts/home.scm:97 +#: guix/scripts/environment.scm:149 guix/scripts/home.scm:101 #: guix/scripts/time-machine.scm:67 guix/scripts/import/cpan.scm:44 #: guix/scripts/import/crate.scm:50 guix/scripts/import/egg.scm:45 #: guix/scripts/import/gem.scm:46 guix/scripts/import/gnu.scm:50 #: guix/scripts/import/go.scm:50 guix/scripts/import/json.scm:52 #: guix/scripts/import/opam.scm:45 guix/scripts/import/pypi.scm:46 #: guix/scripts/import/texlive.scm:45 guix/scripts/refresh.scm:187 -#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:67 -#: guix/scripts/style.scm:509 +#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:69 +#: guix/scripts/style.scm:804 msgid "" "\n" " -h, --help display this help and exit" msgstr "" #: guix/scripts/build.scm:381 guix/scripts/download.scm:106 -#: guix/scripts/package.scm:506 guix/scripts/install.scm:46 +#: guix/scripts/package.scm:508 guix/scripts/install.scm:46 #: guix/scripts/remove.scm:43 guix/scripts/upgrade.scm:50 #: guix/scripts/search.scm:39 guix/scripts/show.scm:38 guix/scripts/gc.scm:90 #: guix/scripts/git.scm:36 guix/scripts/git/authenticate.scm:112 #: guix/scripts/hash.scm:100 guix/scripts/import.scm:100 #: guix/scripts/import/minetest.scm:50 guix/scripts/import/cran.scm:55 #: guix/scripts/pull.scm:127 guix/scripts/substitute.scm:252 -#: guix/scripts/system.scm:1034 guix/scripts/lint.scm:119 +#: guix/scripts/system.scm:1037 guix/scripts/lint.scm:119 #: guix/scripts/publish.scm:121 guix/scripts/edit.scm:53 #: guix/scripts/size.scm:251 guix/scripts/graph.scm:560 #: guix/scripts/challenge.scm:432 guix/scripts/copy.scm:129 #: guix/scripts/pack.scm:1359 guix/scripts/weather.scm:338 #: guix/scripts/describe.scm:98 guix/scripts/processes.scm:303 -#: guix/scripts/deploy.scm:57 guix/scripts/container.scm:37 +#: guix/scripts/deploy.scm:60 guix/scripts/container.scm:37 #: guix/scripts/container/exec.scm:45 guix/scripts/archive.scm:108 -#: guix/scripts/environment.scm:151 guix/scripts/home.scm:99 +#: guix/scripts/environment.scm:151 guix/scripts/home.scm:103 #: guix/scripts/time-machine.scm:69 guix/scripts/import/cpan.scm:46 #: guix/scripts/import/crate.scm:52 guix/scripts/import/egg.scm:49 #: guix/scripts/import/gem.scm:48 guix/scripts/import/gnu.scm:52 #: guix/scripts/import/json.scm:54 guix/scripts/import/opam.scm:52 #: guix/scripts/import/pypi.scm:50 guix/scripts/import/texlive.scm:47 #: guix/scripts/refresh.scm:189 guix/scripts/repl.scm:85 -#: guix/scripts/shell.scm:69 guix/scripts/style.scm:511 +#: guix/scripts/shell.scm:71 guix/scripts/style.scm:806 msgid "" "\n" " -V, --version display version information and exit" @@ -2337,164 +2430,164 @@ msgstr "" msgid "\"bash-minimal\" should be in 'inputs' when '~a' is used" msgstr "" -#: guix/lint.scm:616 +#: guix/lint.scm:614 msgid "no period allowed at the end of the synopsis" msgstr "" -#: guix/lint.scm:630 +#: guix/lint.scm:628 msgid "no article allowed at the beginning of the synopsis" msgstr "" -#: guix/lint.scm:639 +#: guix/lint.scm:637 msgid "synopsis should be less than 80 characters long" msgstr "" -#: guix/lint.scm:648 +#: guix/lint.scm:646 msgid "synopsis should start with an upper-case letter or digit" msgstr "" -#: guix/lint.scm:656 +#: guix/lint.scm:654 msgid "synopsis should not start with the package name" msgstr "" -#: guix/lint.scm:670 +#: guix/lint.scm:668 msgid "Texinfo markup in synopsis is invalid" msgstr "" -#: guix/lint.scm:678 +#: guix/lint.scm:676 msgid "synopsis contains trailing whitespace" msgstr "" -#: guix/lint.scm:695 +#: guix/lint.scm:693 msgid "synopsis should not be empty" msgstr "" -#: guix/lint.scm:705 +#: guix/lint.scm:703 #, scheme-format msgid "invalid synopsis: ~s" msgstr "" -#: guix/lint.scm:805 +#: guix/lint.scm:803 #, scheme-format msgid "~a: HTTP GET error for ~a: ~a (~s)~%" msgstr "" -#: guix/lint.scm:815 +#: guix/lint.scm:813 #, scheme-format msgid "~a: host lookup failure: ~a~%" msgstr "" -#: guix/lint.scm:820 +#: guix/lint.scm:818 #, scheme-format msgid "~a: TLS certificate error: ~a" msgstr "" -#: guix/lint.scm:825 +#: guix/lint.scm:823 #, scheme-format msgid "~a: TLS error in '~a': ~a~%" msgstr "" -#: guix/lint.scm:836 guix/ui.scm:820 guix/scripts/offload.scm:194 +#: guix/lint.scm:834 guix/ui.scm:820 guix/scripts/offload.scm:194 #, scheme-format msgid "~a: ~a~%" msgstr "" -#: guix/lint.scm:868 +#: guix/lint.scm:866 #, scheme-format msgid "URI ~a returned suspiciously small file (~a bytes)" msgstr "" -#: guix/lint.scm:877 +#: guix/lint.scm:875 #, scheme-format msgid "permanent redirect from ~a to ~a" msgstr "" -#: guix/lint.scm:883 +#: guix/lint.scm:881 #, scheme-format msgid "invalid permanent redirect from ~a" msgstr "" -#: guix/lint.scm:889 guix/lint.scm:899 +#: guix/lint.scm:887 guix/lint.scm:897 #, scheme-format msgid "URI ~a not reachable: ~a (~s)" msgstr "" -#: guix/lint.scm:905 +#: guix/lint.scm:903 #, scheme-format msgid "URI ~a domain not found: ~a" msgstr "" -#: guix/lint.scm:911 +#: guix/lint.scm:909 #, scheme-format msgid "URI ~a unreachable: ~a" msgstr "" -#: guix/lint.scm:919 +#: guix/lint.scm:917 #, scheme-format msgid "TLS certificate error: ~a" msgstr "" -#: guix/lint.scm:946 +#: guix/lint.scm:944 msgid "invalid value for home page" msgstr "" -#: guix/lint.scm:951 +#: guix/lint.scm:949 #, scheme-format msgid "invalid home page URL: ~s" msgstr "" -#: guix/lint.scm:988 +#: guix/lint.scm:986 msgid "file names of patches should start with the package name" msgstr "" -#: guix/lint.scm:1008 +#: guix/lint.scm:1006 #, scheme-format msgid "~a: file name is too long, which may break 'make dist'" msgstr "" -#: guix/lint.scm:1029 +#: guix/lint.scm:1027 #, scheme-format msgid "~a: empty patch" msgstr "" -#: guix/lint.scm:1038 +#: guix/lint.scm:1036 #, scheme-format msgid "~a: patch lacks comment and upstream status" msgstr "" -#: guix/lint.scm:1099 +#: guix/lint.scm:1097 #, scheme-format msgid "proposed synopsis: ~s~%" msgstr "" -#: guix/lint.scm:1113 +#: guix/lint.scm:1111 #, scheme-format msgid "proposed description:~% \"~a\"~%" msgstr "" -#: guix/lint.scm:1164 +#: guix/lint.scm:1162 msgid "all the source URIs are unreachable:" msgstr "" -#: guix/lint.scm:1193 +#: guix/lint.scm:1191 msgid "the source file name should contain the package name" msgstr "" -#: guix/lint.scm:1205 +#: guix/lint.scm:1203 msgid "the source URI should not be an autogenerated tarball" msgstr "" -#: guix/lint.scm:1229 +#: guix/lint.scm:1227 #, scheme-format msgid "URL should be 'mirror://~a/~a'" msgstr "" -#: guix/lint.scm:1269 +#: guix/lint.scm:1267 #, scheme-format msgid "while accessing '~a'" msgstr "" -#: guix/lint.scm:1276 +#: guix/lint.scm:1274 #, scheme-format msgid "URL should be '~a'" msgstr "" @@ -2502,68 +2595,68 @@ msgstr "" #. TRANSLATORS: check and #:tests? are a #. Scheme symbol and keyword respectively #. and should not be translated. -#: guix/lint.scm:1304 +#: guix/lint.scm:1302 msgid "the 'check' phase should respect #:tests?" msgstr "" -#: guix/lint.scm:1322 guix/lint.scm:1333 guix/lint.scm:1341 +#: guix/lint.scm:1320 guix/lint.scm:1331 guix/lint.scm:1339 #, scheme-format msgid "failed to create ~a derivation: ~a" msgstr "" -#: guix/lint.scm:1327 +#: guix/lint.scm:1325 #, scheme-format msgid "failed to create ~a derivation: ~s" msgstr "" -#: guix/lint.scm:1379 +#: guix/lint.scm:1377 #, scheme-format msgid "propagated inputs ~a and ~a collide" msgstr "" -#: guix/lint.scm:1403 +#: guix/lint.scm:1401 msgid "invalid license field" msgstr "" -#: guix/lint.scm:1410 +#: guix/lint.scm:1408 msgid "while retrieving CVE vulnerabilities" msgstr "" -#: guix/lint.scm:1453 +#: guix/lint.scm:1451 #, scheme-format msgid "probably vulnerable to ~a" msgstr "" -#: guix/lint.scm:1461 +#: guix/lint.scm:1459 #, scheme-format msgid "no updater for ~a" msgstr "" -#: guix/lint.scm:1466 guix/lint.scm:1641 +#: guix/lint.scm:1464 guix/lint.scm:1639 #, scheme-format msgid "while retrieving upstream info for '~a'" msgstr "" -#: guix/lint.scm:1475 +#: guix/lint.scm:1473 #, scheme-format msgid "can be upgraded to ~a" msgstr "" -#: guix/lint.scm:1481 +#: guix/lint.scm:1479 #, scheme-format msgid "updater '~a' failed to find upstream releases" msgstr "" -#: guix/lint.scm:1508 +#: guix/lint.scm:1506 #, scheme-format msgid "failed to access Disarchive database at ~a" msgstr "" -#: guix/lint.scm:1535 +#: guix/lint.scm:1533 msgid "Software Heritage rate limit reached; try again later" msgstr "" -#: guix/lint.scm:1539 +#: guix/lint.scm:1537 #, scheme-format msgid "'~a' returned ~a" msgstr "" @@ -2571,162 +2664,162 @@ msgstr "" #. TRANSLATORS: "Software Heritage" is a proper noun #. that must remain untranslated. See #. . -#: guix/lint.scm:1578 +#: guix/lint.scm:1576 msgid "scheduled Software Heritage archival" msgstr "" -#: guix/lint.scm:1584 +#: guix/lint.scm:1582 msgid "archival rate limit exceeded; try again later" msgstr "" -#: guix/lint.scm:1605 +#: guix/lint.scm:1603 msgid "source not archived on Software Heritage and missing from the Disarchive database" msgstr "" -#: guix/lint.scm:1615 +#: guix/lint.scm:1613 #, scheme-format msgid "Disarchive entry refers to non-existent SWH directory '~a'" msgstr "" -#: guix/lint.scm:1624 +#: guix/lint.scm:1622 msgid "unsupported source type" msgstr "" -#: guix/lint.scm:1633 +#: guix/lint.scm:1631 msgid "while connecting to Software Heritage" msgstr "" -#: guix/lint.scm:1650 +#: guix/lint.scm:1648 #, scheme-format msgid "ahead of Stackage LTS version ~a" msgstr "" -#: guix/lint.scm:1667 +#: guix/lint.scm:1665 #, scheme-format msgid "tabulation on line ~a, column ~a" msgstr "" -#: guix/lint.scm:1679 +#: guix/lint.scm:1677 #, scheme-format msgid "trailing white space on line ~a" msgstr "" -#: guix/lint.scm:1693 +#: guix/lint.scm:1691 #, scheme-format msgid "line ~a is way too long (~a characters)" msgstr "" -#: guix/lint.scm:1707 +#: guix/lint.scm:1705 msgid "parentheses feel lonely, move to the previous or next line" msgstr "" -#: guix/lint.scm:1784 +#: guix/lint.scm:1782 msgid "source file not found" msgstr "" -#: guix/lint.scm:1796 +#: guix/lint.scm:1794 msgid "Validate package names" msgstr "" -#: guix/lint.scm:1800 +#: guix/lint.scm:1798 msgid "Check if tests are explicitly enabled" msgstr "" -#: guix/lint.scm:1804 +#: guix/lint.scm:1802 msgid "Validate package descriptions" msgstr "" -#: guix/lint.scm:1808 +#: guix/lint.scm:1806 msgid "Identify inputs that should be native inputs" msgstr "" -#: guix/lint.scm:1812 +#: guix/lint.scm:1810 msgid "Identify inputs that shouldn't be inputs at all" msgstr "" -#: guix/lint.scm:1816 +#: guix/lint.scm:1814 msgid "Identify input labels that do not match package names" msgstr "" -#: guix/lint.scm:1820 +#: guix/lint.scm:1818 msgid "Make sure 'wrap-program' can finds its interpreter." msgstr "" #. TRANSLATORS: is the name of a data type and must not be #. translated. -#: guix/lint.scm:1826 +#: guix/lint.scm:1824 msgid "Make sure the 'license' field is a or a list thereof" msgstr "" -#: guix/lint.scm:1831 +#: guix/lint.scm:1829 msgid "Make sure tests are only run when requested" msgstr "" -#: guix/lint.scm:1835 +#: guix/lint.scm:1833 msgid "Suggest 'mirror://' URLs" msgstr "" -#: guix/lint.scm:1839 +#: guix/lint.scm:1837 msgid "Validate file names of sources" msgstr "" -#: guix/lint.scm:1843 +#: guix/lint.scm:1841 msgid "Check for autogenerated tarballs" msgstr "" -#: guix/lint.scm:1847 +#: guix/lint.scm:1845 msgid "Report failure to compile a package to a derivation" msgstr "" -#: guix/lint.scm:1852 +#: guix/lint.scm:1850 msgid "Report collisions that would occur due to propagated inputs" msgstr "" -#: guix/lint.scm:1857 +#: guix/lint.scm:1855 msgid "Validate file names and availability of patches" msgstr "" -#: guix/lint.scm:1861 +#: guix/lint.scm:1859 msgid "Validate patch headers" msgstr "" -#: guix/lint.scm:1865 +#: guix/lint.scm:1863 msgid "Look for formatting issues in the source" msgstr "" -#: guix/lint.scm:1872 +#: guix/lint.scm:1870 msgid "Validate package synopses" msgstr "" -#: guix/lint.scm:1876 +#: guix/lint.scm:1874 msgid "Validate synopsis & description of GNU packages" msgstr "" -#: guix/lint.scm:1880 +#: guix/lint.scm:1878 msgid "Validate home-page URLs" msgstr "" -#: guix/lint.scm:1884 +#: guix/lint.scm:1882 msgid "Validate source URLs" msgstr "" -#: guix/lint.scm:1888 +#: guix/lint.scm:1886 msgid "Suggest GitHub URLs" msgstr "" -#: guix/lint.scm:1892 +#: guix/lint.scm:1890 msgid "Check the Common Vulnerabilities and Exposures (CVE) database" msgstr "" -#: guix/lint.scm:1897 +#: guix/lint.scm:1895 msgid "Check the package for new upstream releases" msgstr "" -#: guix/lint.scm:1901 +#: guix/lint.scm:1899 msgid "Ensure source code archival on Software Heritage" msgstr "" -#: guix/lint.scm:1905 +#: guix/lint.scm:1903 msgid "Ensure Haskell packages use Stackage LTS versions" msgstr "" @@ -2778,7 +2871,7 @@ msgstr "" msgid "~a: unknown hash algorithm~%" msgstr "" -#: guix/scripts/download.scm:171 guix/scripts/package.scm:1087 +#: guix/scripts/download.scm:171 guix/scripts/package.scm:1090 #: guix/scripts/pull.scm:758 guix/scripts/publish.scm:1260 #: guix/scripts/discover.scm:136 guix/scripts/time-machine.scm:123 #, scheme-format @@ -2810,17 +2903,17 @@ msgstr "" msgid "no matching generation~%" msgstr "" -#: guix/scripts/package.scm:159 +#: guix/scripts/package.scm:161 #, scheme-format msgid "nothing to be done~%" msgstr "" -#: guix/scripts/package.scm:260 +#: guix/scripts/package.scm:262 #, scheme-format msgid "package '~a' no longer exists~%" msgstr "" -#: guix/scripts/package.scm:315 +#: guix/scripts/package.scm:317 #, scheme-format msgid "" "Consider setting the necessary environment\n" @@ -2834,7 +2927,7 @@ msgid "" "Alternately, see @command{guix package --search-paths -p ~s}." msgstr "" -#: guix/scripts/package.scm:361 +#: guix/scripts/package.scm:363 msgid "" ";; This \"manifest\" file can be passed to 'guix package -m' to reproduce\n" ";; the content of your profile. This is \"symbolic\": it only specifies\n" @@ -2843,44 +2936,44 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/package.scm:393 +#: guix/scripts/package.scm:395 #, scheme-format msgid "no provenance information for this profile~%" msgstr "" -#: guix/scripts/package.scm:395 +#: guix/scripts/package.scm:397 msgid "" ";; This channel file can be passed to 'guix pull -C' or to\n" ";; 'guix time-machine -C' to obtain the Guix revision that was\n" ";; used to populate this profile.\n" msgstr "" -#: guix/scripts/package.scm:407 +#: guix/scripts/package.scm:409 #, scheme-format msgid ";; Note: these other commits were also used to install some of the packages in this profile:~%" msgstr "" -#: guix/scripts/package.scm:437 +#: guix/scripts/package.scm:439 msgid "" "Usage: guix package [OPTION]...\n" "Install, remove, or upgrade packages in a single transaction.\n" msgstr "" -#: guix/scripts/package.scm:439 +#: guix/scripts/package.scm:441 msgid "" "\n" " -i, --install PACKAGE ...\n" " install PACKAGEs" msgstr "" -#: guix/scripts/package.scm:442 +#: guix/scripts/package.scm:444 msgid "" "\n" " -e, --install-from-expression=EXP\n" " install the package EXP evaluates to" msgstr "" -#: guix/scripts/package.scm:445 +#: guix/scripts/package.scm:447 msgid "" "\n" " -f, --install-from-file=FILE\n" @@ -2888,160 +2981,160 @@ msgid "" " evaluates to" msgstr "" -#: guix/scripts/package.scm:449 +#: guix/scripts/package.scm:451 msgid "" "\n" " -r, --remove PACKAGE ...\n" " remove PACKAGEs" msgstr "" -#: guix/scripts/package.scm:452 +#: guix/scripts/package.scm:454 msgid "" "\n" " -u, --upgrade[=REGEXP] upgrade all the installed packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:454 +#: guix/scripts/package.scm:456 msgid "" "\n" " -m, --manifest=FILE create a new profile generation with the manifest\n" " from FILE" msgstr "" -#: guix/scripts/package.scm:457 guix/scripts/upgrade.scm:41 +#: guix/scripts/package.scm:459 guix/scripts/upgrade.scm:41 msgid "" "\n" " --do-not-upgrade[=REGEXP] do not upgrade any packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:459 guix/scripts/pull.scm:107 +#: guix/scripts/package.scm:461 guix/scripts/pull.scm:107 msgid "" "\n" " --roll-back roll back to the previous generation" msgstr "" -#: guix/scripts/package.scm:461 +#: guix/scripts/package.scm:463 msgid "" "\n" " --search-paths[=KIND]\n" " display needed environment variable definitions" msgstr "" -#: guix/scripts/package.scm:464 guix/scripts/pull.scm:104 +#: guix/scripts/package.scm:466 guix/scripts/pull.scm:104 msgid "" "\n" " -l, --list-generations[=PATTERN]\n" " list generations matching PATTERN" msgstr "" -#: guix/scripts/package.scm:467 guix/scripts/pull.scm:109 +#: guix/scripts/package.scm:469 guix/scripts/pull.scm:109 msgid "" "\n" " -d, --delete-generations[=PATTERN]\n" " delete generations matching PATTERN" msgstr "" -#: guix/scripts/package.scm:470 guix/scripts/pull.scm:112 +#: guix/scripts/package.scm:472 guix/scripts/pull.scm:112 msgid "" "\n" " -S, --switch-generation=PATTERN\n" " switch to a generation matching PATTERN" msgstr "" -#: guix/scripts/package.scm:473 +#: guix/scripts/package.scm:475 msgid "" "\n" " --export-manifest print a manifest for the chosen profile" msgstr "" -#: guix/scripts/package.scm:475 +#: guix/scripts/package.scm:477 msgid "" "\n" " --export-channels print channels for the chosen profile" msgstr "" -#: guix/scripts/package.scm:477 guix/scripts/install.scm:34 +#: guix/scripts/package.scm:479 guix/scripts/install.scm:34 #: guix/scripts/remove.scm:33 guix/scripts/upgrade.scm:37 msgid "" "\n" " -p, --profile=PROFILE use PROFILE instead of the user's default profile" msgstr "" -#: guix/scripts/package.scm:479 +#: guix/scripts/package.scm:481 msgid "" "\n" " --list-profiles list the user's profiles" msgstr "" -#: guix/scripts/package.scm:482 +#: guix/scripts/package.scm:484 msgid "" "\n" " --allow-collisions do not treat collisions in the profile as an error" msgstr "" -#: guix/scripts/package.scm:484 +#: guix/scripts/package.scm:486 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" msgstr "" -#: guix/scripts/package.scm:489 +#: guix/scripts/package.scm:491 msgid "" "\n" " -s, --search=REGEXP search in synopsis and description using REGEXP" msgstr "" -#: guix/scripts/package.scm:491 +#: guix/scripts/package.scm:493 msgid "" "\n" " -I, --list-installed[=REGEXP]\n" " list installed packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:494 +#: guix/scripts/package.scm:496 msgid "" "\n" " -A, --list-available[=REGEXP]\n" " list available packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:497 +#: guix/scripts/package.scm:499 msgid "" "\n" " --show=PACKAGE show details about PACKAGE" msgstr "" -#: guix/scripts/package.scm:552 +#: guix/scripts/package.scm:554 #, scheme-format msgid "upgrade regexp '~a' looks like a command-line option~%" msgstr "" -#: guix/scripts/package.scm:555 +#: guix/scripts/package.scm:557 #, scheme-format msgid "is this intended?~%" msgstr "" -#: guix/scripts/package.scm:605 +#: guix/scripts/package.scm:607 #, scheme-format msgid "~a: unsupported kind of search path~%" msgstr "" -#: guix/scripts/package.scm:739 +#: guix/scripts/package.scm:741 #, scheme-format msgid "cannot install non-package object: ~s~%" msgstr "" -#: guix/scripts/package.scm:918 +#: guix/scripts/package.scm:920 #, scheme-format msgid "~a~@[@~a~]: package not found~%" msgstr "" -#: guix/scripts/package.scm:965 guix/scripts/pull.scm:687 +#: guix/scripts/package.scm:967 guix/scripts/pull.scm:687 #, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "" -#: guix/scripts/package.scm:1060 +#: guix/scripts/package.scm:1062 #, scheme-format msgid "nothing to do~%" msgstr "" @@ -3250,8 +3343,8 @@ msgid "" "Operate on Git repositories.\n" msgstr "" -#: guix/scripts/git.scm:29 guix/scripts/system.scm:945 -#: guix/scripts/container.scm:30 guix/scripts/home.scm:69 +#: guix/scripts/git.scm:29 guix/scripts/system.scm:946 +#: guix/scripts/container.scm:30 guix/scripts/home.scm:70 msgid "The valid values for ACTION are:\n" msgstr "" @@ -3340,22 +3433,22 @@ msgid "" " -S, --serializer=TYPE compute the hash on FILE according to TYPE serialization" msgstr "" -#: guix/scripts/hash.scm:137 +#: guix/scripts/hash.scm:138 #, scheme-format -msgid "'--recursive' is deprecated, use '--serializer' instead~%" +msgid "'--recursive' is deprecated, use '--serializer=nar' instead~%" msgstr "" -#: guix/scripts/hash.scm:152 +#: guix/scripts/hash.scm:153 #, scheme-format msgid "unsupported serializer type: ~a~%" msgstr "" -#: guix/scripts/hash.scm:201 +#: guix/scripts/hash.scm:202 #, scheme-format msgid "~a ~a~%" msgstr "" -#: guix/scripts/hash.scm:210 +#: guix/scripts/hash.scm:211 #, scheme-format msgid "no arguments specified~%" msgstr "" @@ -3415,9 +3508,9 @@ msgstr "" #: guix/scripts/import/minetest.scm:115 guix/scripts/import/cran.scm:120 #: guix/scripts/import/elpa.scm:110 guix/scripts/import/cpan.scm:87 #: guix/scripts/import/crate.scm:103 guix/scripts/import/egg.scm:106 -#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:121 +#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:122 #: guix/scripts/import/hackage.scm:158 guix/scripts/import/json.scm:97 -#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:104 +#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:105 #: guix/scripts/import/stackage.scm:130 guix/scripts/import/texlive.scm:88 #, scheme-format msgid "too few arguments~%" @@ -3426,10 +3519,10 @@ msgstr "" #: guix/scripts/import/minetest.scm:117 guix/scripts/import/cran.scm:122 #: guix/scripts/import/elpa.scm:112 guix/scripts/import/cpan.scm:89 #: guix/scripts/import/crate.scm:105 guix/scripts/import/egg.scm:108 -#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:123 +#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:124 #: guix/scripts/import/hackage.scm:149 guix/scripts/import/hackage.scm:160 #: guix/scripts/import/json.scm:99 guix/scripts/import/opam.scm:113 -#: guix/scripts/import/pypi.scm:106 guix/scripts/import/stackage.scm:132 +#: guix/scripts/import/pypi.scm:107 guix/scripts/import/stackage.scm:132 #: guix/scripts/import/texlive.scm:90 #, scheme-format msgid "too many arguments~%" @@ -3453,7 +3546,7 @@ msgid "" " -s, --style=STYLE choose output style, either specification or variable" msgstr "" -#: guix/scripts/import/cran.scm:116 guix/scripts/import/texlive.scm:84 +#: guix/scripts/import/cran.scm:116 #, scheme-format msgid "failed to download description for package '~a'~%" msgstr "" @@ -3849,27 +3942,27 @@ msgstr "" msgid "the dependency graph of shepherd services" msgstr "" -#: guix/scripts/system.scm:482 guix/scripts/home.scm:453 +#: guix/scripts/system.scm:482 guix/scripts/home.scm:466 #, scheme-format msgid " repository URL: ~a~%" msgstr "" -#: guix/scripts/system.scm:484 guix/scripts/home.scm:455 +#: guix/scripts/system.scm:484 guix/scripts/home.scm:468 #, scheme-format msgid " branch: ~a~%" msgstr "" -#: guix/scripts/system.scm:485 guix/scripts/home.scm:456 +#: guix/scripts/system.scm:485 guix/scripts/home.scm:469 #, scheme-format msgid " commit: ~a~%" msgstr "" -#: guix/scripts/system.scm:505 guix/scripts/home.scm:469 +#: guix/scripts/system.scm:505 guix/scripts/home.scm:482 #, scheme-format msgid " file name: ~a~%" msgstr "" -#: guix/scripts/system.scm:506 guix/scripts/home.scm:470 +#: guix/scripts/system.scm:506 guix/scripts/home.scm:483 #, scheme-format msgid " canonical file name: ~a~%" msgstr "" @@ -3910,12 +4003,12 @@ msgstr "" #. TRANSLATORS: Here "channel" is the same terminology as used in #. "guix describe" and "guix pull --channels". -#: guix/scripts/system.scm:536 guix/scripts/home.scm:476 +#: guix/scripts/system.scm:536 guix/scripts/home.scm:489 #, scheme-format msgid " channels:~%" msgstr "" -#: guix/scripts/system.scm:539 guix/scripts/home.scm:479 +#: guix/scripts/system.scm:539 guix/scripts/home.scm:492 #, scheme-format msgid " configuration file: ~a~%" msgstr "" @@ -3967,128 +4060,128 @@ msgstr "" msgid "Failing to do that may downgrade your system!~%" msgstr "" -#: guix/scripts/system.scm:754 guix/scripts/system.scm:863 +#: guix/scripts/system.scm:754 guix/scripts/system.scm:864 #, scheme-format msgid "bootloader successfully installed on '~a'~%" msgstr "" -#: guix/scripts/system.scm:856 +#: guix/scripts/system.scm:857 #, scheme-format msgid "activating system...~%" msgstr "" -#: guix/scripts/system.scm:867 +#: guix/scripts/system.scm:868 msgid "" "To complete the upgrade, run 'herd restart SERVICE' to stop,\n" "upgrade, and restart each service that was not automatically restarted.\n" msgstr "" -#: guix/scripts/system.scm:870 +#: guix/scripts/system.scm:871 msgid "Run 'herd status' to view the list of services on your system.\n" msgstr "" -#: guix/scripts/system.scm:874 +#: guix/scripts/system.scm:875 #, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "" -#: guix/scripts/system.scm:894 guix/scripts/graph.scm:437 +#: guix/scripts/system.scm:895 guix/scripts/graph.scm:437 #, scheme-format msgid "~a: unknown backend~%" msgstr "" -#: guix/scripts/system.scm:931 +#: guix/scripts/system.scm:932 msgid "The available image types are:\n" msgstr "" -#: guix/scripts/system.scm:941 +#: guix/scripts/system.scm:942 msgid "" "Usage: guix system [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the operating system declared in FILE according to ACTION.\n" "Some ACTIONS support additional ARGS.\n" msgstr "" -#: guix/scripts/system.scm:947 +#: guix/scripts/system.scm:948 msgid " search search for existing service types\n" msgstr "" -#: guix/scripts/system.scm:949 +#: guix/scripts/system.scm:950 msgid " reconfigure switch to a new operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:951 +#: guix/scripts/system.scm:952 msgid " roll-back switch to the previous operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:953 +#: guix/scripts/system.scm:954 msgid " describe describe the current system\n" msgstr "" -#: guix/scripts/system.scm:955 +#: guix/scripts/system.scm:956 msgid " list-generations list the system generations\n" msgstr "" -#: guix/scripts/system.scm:957 +#: guix/scripts/system.scm:958 msgid " switch-generation switch to an existing operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:959 +#: guix/scripts/system.scm:960 msgid " delete-generations delete old system generations\n" msgstr "" -#: guix/scripts/system.scm:961 +#: guix/scripts/system.scm:962 msgid " build build the operating system without installing anything\n" msgstr "" -#: guix/scripts/system.scm:963 +#: guix/scripts/system.scm:964 msgid " container build a container that shares the host's store\n" msgstr "" -#: guix/scripts/system.scm:965 +#: guix/scripts/system.scm:966 msgid " vm build a virtual machine image that shares the host's store\n" msgstr "" -#: guix/scripts/system.scm:967 +#: guix/scripts/system.scm:968 msgid " image build a Guix System image\n" msgstr "" -#: guix/scripts/system.scm:969 +#: guix/scripts/system.scm:970 msgid " docker-image build a Docker image\n" msgstr "" -#: guix/scripts/system.scm:971 +#: guix/scripts/system.scm:972 msgid " init initialize a root file system to run GNU\n" msgstr "" -#: guix/scripts/system.scm:973 +#: guix/scripts/system.scm:974 msgid " extension-graph emit the service extension graph in Dot format\n" msgstr "" -#: guix/scripts/system.scm:975 +#: guix/scripts/system.scm:976 msgid " shepherd-graph emit the graph of shepherd services in Dot format\n" msgstr "" -#: guix/scripts/system.scm:979 +#: guix/scripts/system.scm:980 msgid "" "\n" " -d, --derivation return the derivation of the given system" msgstr "" -#: guix/scripts/system.scm:981 +#: guix/scripts/system.scm:982 msgid "" "\n" " -e, --expression=EXPR consider the operating-system EXPR evaluates to\n" " instead of reading FILE, when applicable" msgstr "" -#: guix/scripts/system.scm:984 +#: guix/scripts/system.scm:985 guix/scripts/home.scm:95 msgid "" "\n" " --allow-downgrades for 'reconfigure', allow downgrades to earlier\n" " channel revisions" msgstr "" -#: guix/scripts/system.scm:987 +#: guix/scripts/system.scm:988 msgid "" "\n" " --on-error=STRATEGY\n" @@ -4096,69 +4189,75 @@ msgid "" " or debug) when an error occurs while reading FILE" msgstr "" -#: guix/scripts/system.scm:991 +#: guix/scripts/system.scm:992 msgid "" "\n" " --list-image-types list available image types" msgstr "" -#: guix/scripts/system.scm:993 +#: guix/scripts/system.scm:994 msgid "" "\n" " -t, --image-type=TYPE for 'image', produce an image of TYPE" msgstr "" -#: guix/scripts/system.scm:995 +#: guix/scripts/system.scm:996 msgid "" "\n" " --image-size=SIZE for 'image', produce an image of SIZE" msgstr "" -#: guix/scripts/system.scm:997 +#: guix/scripts/system.scm:998 msgid "" "\n" " --no-bootloader for 'init', do not install a bootloader" msgstr "" -#: guix/scripts/system.scm:999 +#: guix/scripts/system.scm:1000 msgid "" "\n" " --volatile for 'image', make the root file system volatile" msgstr "" -#: guix/scripts/system.scm:1001 +#: guix/scripts/system.scm:1002 +msgid "" +"\n" +" --persistent for 'vm', make the root file system persistent" +msgstr "" + +#: guix/scripts/system.scm:1004 msgid "" "\n" " --label=LABEL for 'image', label disk image with LABEL" msgstr "" -#: guix/scripts/system.scm:1003 guix/scripts/pack.scm:1340 +#: guix/scripts/system.scm:1006 guix/scripts/pack.scm:1340 msgid "" "\n" " --save-provenance save provenance information" msgstr "" -#: guix/scripts/system.scm:1005 +#: guix/scripts/system.scm:1008 msgid "" "\n" " --share=SPEC for 'vm' and 'container', share host file system with\n" " read/write access according to SPEC" msgstr "" -#: guix/scripts/system.scm:1008 +#: guix/scripts/system.scm:1011 msgid "" "\n" " --expose=SPEC for 'vm' and 'container', expose host file system\n" " directory as read-only according to SPEC" msgstr "" -#: guix/scripts/system.scm:1011 +#: guix/scripts/system.scm:1014 msgid "" "\n" " -N, --network for 'container', allow containers to access the network" msgstr "" -#: guix/scripts/system.scm:1013 +#: guix/scripts/system.scm:1016 msgid "" "\n" " -r, --root=FILE for 'vm', 'image', 'container' and 'build',\n" @@ -4166,82 +4265,82 @@ msgid "" " register it as a garbage collector root" msgstr "" -#: guix/scripts/system.scm:1017 +#: guix/scripts/system.scm:1020 msgid "" "\n" " --full-boot for 'vm', make a full boot sequence" msgstr "" -#: guix/scripts/system.scm:1019 +#: guix/scripts/system.scm:1022 msgid "" "\n" " --no-graphic for 'vm', use the tty that we are started in for IO" msgstr "" -#: guix/scripts/system.scm:1021 +#: guix/scripts/system.scm:1024 msgid "" "\n" " --skip-checks skip file system and initrd module safety checks" msgstr "" -#: guix/scripts/system.scm:1028 +#: guix/scripts/system.scm:1031 msgid "" "\n" " --graph-backend=BACKEND\n" " use BACKEND for 'extension-graphs' and 'shepherd-graph'" msgstr "" -#: guix/scripts/system.scm:1180 +#: guix/scripts/system.scm:1187 #, scheme-format msgid "'~a' does not return an operating system or an image~%" msgstr "" -#: guix/scripts/system.scm:1204 guix/scripts/home.scm:216 +#: guix/scripts/system.scm:1211 guix/scripts/home.scm:230 #, scheme-format msgid "both file and expression cannot be specified~%" msgstr "" -#: guix/scripts/system.scm:1211 guix/scripts/home.scm:223 +#: guix/scripts/system.scm:1218 guix/scripts/home.scm:237 #, scheme-format msgid "no configuration specified~%" msgstr "" -#: guix/scripts/system.scm:1319 guix/scripts/system.scm:1335 -#: guix/scripts/system.scm:1342 guix/scripts/system.scm:1348 -#: guix/scripts/home.scm:274 guix/scripts/home.scm:296 -#: guix/scripts/home.scm:301 guix/scripts/home.scm:307 -#: guix/scripts/home.scm:314 guix/scripts/import/gnu.scm:100 +#: guix/scripts/system.scm:1328 guix/scripts/system.scm:1344 +#: guix/scripts/system.scm:1351 guix/scripts/system.scm:1357 +#: guix/scripts/home.scm:287 guix/scripts/home.scm:309 +#: guix/scripts/home.scm:314 guix/scripts/home.scm:320 +#: guix/scripts/home.scm:327 guix/scripts/import/gnu.scm:100 #: guix/scripts/offload.scm:836 guix/scripts/offload.scm:848 #, scheme-format msgid "wrong number of arguments~%" msgstr "" -#: guix/scripts/system.scm:1324 +#: guix/scripts/system.scm:1333 #, scheme-format msgid "no system generation, nothing to describe~%" msgstr "" -#: guix/scripts/system.scm:1367 guix/scripts/home.scm:337 +#: guix/scripts/system.scm:1376 guix/scripts/home.scm:350 #, scheme-format msgid "~a: unknown action~%" msgstr "" -#: guix/scripts/system.scm:1387 guix/scripts/home.scm:353 +#: guix/scripts/system.scm:1396 guix/scripts/home.scm:366 #, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "" -#: guix/scripts/system.scm:1392 +#: guix/scripts/system.scm:1401 #, scheme-format msgid "guix system: missing command name~%" msgstr "" -#: guix/scripts/system.scm:1394 +#: guix/scripts/system.scm:1403 #, scheme-format msgid "Try 'guix system --help' for more information.~%" msgstr "" -#: guix/scripts/system/search.scm:93 guix/ui.scm:1541 guix/ui.scm:1559 +#: guix/scripts/system/search.scm:93 guix/ui.scm:1544 guix/ui.scm:1562 msgid "unknown" msgstr "" @@ -4636,7 +4735,7 @@ msgid "" msgstr "" #: guix/scripts/graph.scm:548 guix/scripts/pack.scm:1325 -#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:502 +#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:797 msgid "" "\n" " -e, --expression=EXPR consider the package EXPR evaluates to" @@ -5226,44 +5325,89 @@ msgid "" " -f, --format=FORMAT display results as normalized record sets" msgstr "" -#: guix/scripts/deploy.scm:51 +#: guix/scripts/deploy.scm:54 msgid "" "Usage: guix deploy [OPTION] FILE...\n" "Perform the deployment specified by FILE.\n" msgstr "" -#: guix/scripts/deploy.scm:108 +#: guix/scripts/deploy.scm:63 +msgid "" +"\n" +" -x, --execute execute the following command on all the machines" +msgstr "" + +#: guix/scripts/deploy.scm:117 #, scheme-format msgid "The following ~d machine will be deployed:~%" msgid_plural "The following ~d machines will be deployed:~%" msgstr[0] "" msgstr[1] "" -#: guix/scripts/deploy.scm:122 +#: guix/scripts/deploy.scm:131 #, scheme-format msgid "deploying to ~a...~%" msgstr "" -#: guix/scripts/deploy.scm:134 guix/scripts/deploy.scm:138 +#: guix/scripts/deploy.scm:143 guix/scripts/deploy.scm:147 #, scheme-format msgid "failed to deploy ~a: ~a~%" msgstr "" -#: guix/scripts/deploy.scm:146 +#: guix/scripts/deploy.scm:155 #, scheme-format msgid "rolling back ~a...~%" msgstr "" -#: guix/scripts/deploy.scm:152 +#: guix/scripts/deploy.scm:161 #, scheme-format msgid "successfully deployed ~a~%" msgstr "" -#: guix/scripts/deploy.scm:167 +#: guix/scripts/deploy.scm:212 +#, fuzzy, scheme-format +#| msgid "module ~a not found" +msgid "~a: command succeeded~%" +msgstr "modul ~a pas trobat" + +#: guix/scripts/deploy.scm:215 +#, fuzzy, scheme-format +#| msgid "module ~a not found" +msgid "~a: command exited with code ~a~%" +msgstr "modul ~a pas trobat" + +#: guix/scripts/deploy.scm:218 +#, fuzzy, scheme-format +#| msgid "module ~a not found" +msgid "~a: command stopped with signal ~a~%" +msgstr "modul ~a pas trobat" + +#: guix/scripts/deploy.scm:221 +#, scheme-format +msgid "~a: command terminated with signal ~a~%" +msgstr "" + +#: guix/scripts/deploy.scm:225 +#, fuzzy, scheme-format +#| msgid "module ~a not found" +msgid "command output on ~a:~%" +msgstr "modul ~a pas trobat" + +#: guix/scripts/deploy.scm:246 #, scheme-format msgid "missing deployment file argument~%" msgstr "" +#: guix/scripts/deploy.scm:249 +#, scheme-format +msgid "'--' was used by '-x' was not specified~%" +msgstr "" + +#: guix/scripts/deploy.scm:271 +#, scheme-format +msgid "'-x' specified but no command given~%" +msgstr "" + #: guix/gexp.scm:465 #, scheme-format msgid "resolving '~a' relative to current directory~%" @@ -5355,154 +5499,154 @@ msgstr "" msgid "exec failed with status ~d~%" msgstr "" -#: guix/transformations.scm:185 guix/transformations.scm:253 +#: guix/transformations.scm:186 guix/transformations.scm:254 #, scheme-format msgid "invalid replacement specification: ~s" msgstr "" -#: guix/transformations.scm:234 +#: guix/transformations.scm:235 #, scheme-format msgid "the source of ~a is not a Git reference" msgstr "" -#: guix/transformations.scm:337 +#: guix/transformations.scm:338 #, scheme-format msgid "~a: invalid Git URL replacement specification" msgstr "" -#: guix/transformations.scm:415 +#: guix/transformations.scm:416 #, scheme-format msgid "~a: invalid toolchain replacement specification" msgstr "" -#: guix/transformations.scm:517 +#: guix/transformations.scm:518 msgid "failed to determine which compiler is used" msgstr "" -#: guix/transformations.scm:523 +#: guix/transformations.scm:524 #, scheme-format msgid "failed to determine whether ~a supports ~a" msgstr "" -#: guix/transformations.scm:529 +#: guix/transformations.scm:530 #, scheme-format msgid "compiler ~a does not support micro-architecture ~a" msgstr "" -#: guix/transformations.scm:581 +#: guix/transformations.scm:582 #, scheme-format msgid "tuning ~a for CPU ~a~%" msgstr "" -#: guix/transformations.scm:721 +#: guix/transformations.scm:722 #, scheme-format msgid "~a: invalid package patch specification" msgstr "" -#: guix/transformations.scm:744 +#: guix/transformations.scm:745 #, scheme-format msgid "could not determine latest upstream release of '~a'~%" msgstr "" -#: guix/transformations.scm:752 +#: guix/transformations.scm:753 #, scheme-format msgid "cannot authenticate source of '~a', version ~a~%" msgstr "" -#: guix/transformations.scm:833 +#: guix/transformations.scm:840 #, scheme-format msgid "building for ~a instead of ~a, so tuning cannot be guessed~%" msgstr "" -#: guix/transformations.scm:859 +#: guix/transformations.scm:866 #, scheme-format msgid "Available package transformation options:~%" msgstr "" -#: guix/transformations.scm:865 +#: guix/transformations.scm:872 msgid "" "\n" " --with-source=[PACKAGE=]SOURCE\n" " use SOURCE when building the corresponding package" msgstr "" -#: guix/transformations.scm:868 +#: guix/transformations.scm:875 msgid "" "\n" " --with-input=PACKAGE=REPLACEMENT\n" " replace dependency PACKAGE by REPLACEMENT" msgstr "" -#: guix/transformations.scm:871 +#: guix/transformations.scm:878 msgid "" "\n" " --with-graft=PACKAGE=REPLACEMENT\n" " graft REPLACEMENT on packages that refer to PACKAGE" msgstr "" -#: guix/transformations.scm:874 +#: guix/transformations.scm:881 msgid "" "\n" " --with-branch=PACKAGE=BRANCH\n" " build PACKAGE from the latest commit of BRANCH" msgstr "" -#: guix/transformations.scm:877 +#: guix/transformations.scm:884 msgid "" "\n" " --with-commit=PACKAGE=COMMIT\n" " build PACKAGE from COMMIT" msgstr "" -#: guix/transformations.scm:880 +#: guix/transformations.scm:887 msgid "" "\n" " --with-git-url=PACKAGE=URL\n" " build PACKAGE from the repository at URL" msgstr "" -#: guix/transformations.scm:883 +#: guix/transformations.scm:890 msgid "" "\n" " --with-patch=PACKAGE=FILE\n" " add FILE to the list of patches of PACKAGE" msgstr "" -#: guix/transformations.scm:886 +#: guix/transformations.scm:893 msgid "" "\n" " --with-latest=PACKAGE\n" " use the latest upstream release of PACKAGE" msgstr "" -#: guix/transformations.scm:889 +#: guix/transformations.scm:896 msgid "" "\n" " --with-c-toolchain=PACKAGE=TOOLCHAIN\n" " build PACKAGE and its dependents with TOOLCHAIN" msgstr "" -#: guix/transformations.scm:892 +#: guix/transformations.scm:899 msgid "" "\n" " --with-debug-info=PACKAGE\n" " build PACKAGE and preserve its debug info" msgstr "" -#: guix/transformations.scm:895 +#: guix/transformations.scm:902 msgid "" "\n" " --without-tests=PACKAGE\n" " build PACKAGE without running its tests" msgstr "" -#: guix/transformations.scm:901 +#: guix/transformations.scm:908 msgid "" "\n" " --help-transform list package transformation options not shown here" msgstr "" -#: guix/transformations.scm:950 +#: guix/transformations.scm:957 #, scheme-format msgid "transformation '~a' had no effect on ~a~%" msgstr "" @@ -5982,12 +6126,12 @@ msgstr[1] "" msgid "~a: invalid Texinfo markup~%" msgstr "" -#: guix/ui.scm:1873 +#: guix/ui.scm:1876 #, scheme-format msgid "invalid syntax: ~a~%" msgstr "" -#: guix/ui.scm:1882 +#: guix/ui.scm:1885 #, scheme-format msgid "Generation ~a\t~a" msgstr "" @@ -5997,7 +6141,7 @@ msgstr "" #. usual way of presenting dates in your locale. #. See https://www.gnu.org/software/guile/manual/html_node/SRFI_002d19-Date-to-string.html #. for details. -#: guix/ui.scm:1892 +#: guix/ui.scm:1895 #, scheme-format msgid "~b ~d ~Y ~T" msgstr "" @@ -6005,74 +6149,74 @@ msgstr "" #. TRANSLATORS: The word "current" here is an adjective for #. "Generation", as in "current generation". Use the appropriate #. gender where applicable. -#: guix/ui.scm:1898 +#: guix/ui.scm:1901 #, scheme-format msgid "~a\t(current)~%" msgstr "" -#: guix/ui.scm:1932 +#: guix/ui.scm:1935 #, scheme-format msgid "cannot lock profile ~a: ~a~%" msgstr "" -#: guix/ui.scm:1934 +#: guix/ui.scm:1937 #, scheme-format msgid "profile ~a is locked by another process~%" msgstr "" -#: guix/ui.scm:1963 +#: guix/ui.scm:1966 #, scheme-format msgid "switched from generation ~a to ~a~%" msgstr "" -#: guix/ui.scm:1979 +#: guix/ui.scm:1982 #, scheme-format msgid "deleting ~a~%" msgstr "" -#: guix/ui.scm:2010 +#: guix/ui.scm:2013 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "" -#: guix/ui.scm:2102 +#: guix/ui.scm:2105 msgid "" "Usage: guix OPTION | COMMAND ARGS...\n" "Run COMMAND with ARGS, if given.\n" msgstr "" -#: guix/ui.scm:2105 +#: guix/ui.scm:2108 msgid "" "\n" " -h, --help display this helpful text again and exit" msgstr "" -#: guix/ui.scm:2107 +#: guix/ui.scm:2110 msgid "" "\n" " -V, --version display version and copyright information and exit" msgstr "" -#: guix/ui.scm:2112 +#: guix/ui.scm:2115 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "" -#: guix/ui.scm:2154 +#: guix/ui.scm:2157 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "" -#: guix/ui.scm:2156 +#: guix/ui.scm:2159 #, scheme-format msgid "Did you mean @code{~a}?" msgstr "" -#: guix/ui.scm:2190 +#: guix/ui.scm:2193 #, scheme-format msgid "guix: missing command name~%" msgstr "" -#: guix/ui.scm:2198 +#: guix/ui.scm:2201 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "" @@ -6397,22 +6541,22 @@ msgstr "" msgid "unsupported manifest format" msgstr "" -#: guix/profiles.scm:2242 +#: guix/profiles.scm:2247 #, scheme-format msgid "while creating directory `~a': ~a" msgstr "" -#: guix/profiles.scm:2247 +#: guix/profiles.scm:2252 #, scheme-format msgid "Please create the @file{~a} directory, with you as the owner." msgstr "" -#: guix/profiles.scm:2256 +#: guix/profiles.scm:2261 #, scheme-format msgid "directory `~a' is not owned by you" msgstr "" -#: guix/profiles.scm:2260 +#: guix/profiles.scm:2265 #, scheme-format msgid "Please change the owner of @file{~a} to user ~s." msgstr "" @@ -7014,11 +7158,16 @@ msgstr "" msgid "'--profile' cannot be used with package options~%" msgstr "" -#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:275 +#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:261 #, scheme-format msgid "no packages specified; creating an empty environment~%" msgstr "" +#: guix/scripts/environment.scm:979 +#, scheme-format +msgid "'--check' is unnecessary when using '--container'; doing nothing~%" +msgstr "" + #: guix/scripts/home/import.scm:179 msgid "" ";; This \"home-environment\" file can be passed to 'guix home reconfigure'\n" @@ -7028,89 +7177,89 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/home.scm:65 +#: guix/scripts/home.scm:66 msgid "" "Usage: guix home [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the home environment declared in FILE according to ACTION.\n" "Some ACTIONS support additional ARGS.\n" msgstr "" -#: guix/scripts/home.scm:71 +#: guix/scripts/home.scm:72 msgid " search search for existing service types\n" msgstr "" -#: guix/scripts/home.scm:73 +#: guix/scripts/home.scm:74 msgid " reconfigure switch to a new home environment configuration\n" msgstr "" -#: guix/scripts/home.scm:75 +#: guix/scripts/home.scm:76 msgid " roll-back switch to the previous home environment configuration\n" msgstr "" -#: guix/scripts/home.scm:77 +#: guix/scripts/home.scm:78 msgid " describe describe the current home environment\n" msgstr "" -#: guix/scripts/home.scm:79 +#: guix/scripts/home.scm:80 msgid " list-generations list the home environment generations\n" msgstr "" -#: guix/scripts/home.scm:81 +#: guix/scripts/home.scm:82 msgid " switch-generation switch to an existing home environment configuration\n" msgstr "" -#: guix/scripts/home.scm:83 +#: guix/scripts/home.scm:84 msgid " delete-generations delete old home environment generations\n" msgstr "" -#: guix/scripts/home.scm:85 +#: guix/scripts/home.scm:86 msgid " build build the home environment without installing anything\n" msgstr "" -#: guix/scripts/home.scm:87 +#: guix/scripts/home.scm:88 msgid " import generates a home environment definition from dotfiles\n" msgstr "" -#: guix/scripts/home.scm:91 +#: guix/scripts/home.scm:92 msgid "" "\n" " -e, --expression=EXPR consider the home-environment EXPR evaluates to\n" " instead of reading FILE, when applicable" msgstr "" -#: guix/scripts/home.scm:196 +#: guix/scripts/home.scm:210 #, scheme-format msgid "'~a' does not return a home environment ~%" msgstr "" -#: guix/scripts/home.scm:280 +#: guix/scripts/home.scm:293 #, scheme-format msgid "'~a' populated with all the Home configuration files~%" msgstr "" -#: guix/scripts/home.scm:282 +#: guix/scripts/home.scm:295 #, scheme-format msgid "" "Run @command{guix home reconfigure ~a/home-configuration.scm} to effectively\n" "deploy the home environment described by these files.\n" msgstr "" -#: guix/scripts/home.scm:289 +#: guix/scripts/home.scm:302 #, scheme-format msgid "no home environment generation, nothing to describe~%" msgstr "" -#: guix/scripts/home.scm:358 +#: guix/scripts/home.scm:371 #, scheme-format msgid "guix home: missing command name~%" msgstr "" -#: guix/scripts/home.scm:360 +#: guix/scripts/home.scm:373 #, scheme-format msgid "Try 'guix home --help' for more information.~%" msgstr "" -#: guix/scripts/home.scm:528 +#: guix/scripts/home.scm:541 #, scheme-format msgid "cannot switch to home environment generation '~a'~%" msgstr "" @@ -7147,7 +7296,7 @@ msgstr "" #: guix/scripts/import/cpan.scm:83 guix/scripts/import/crate.scm:97 #: guix/scripts/import/egg.scm:100 guix/scripts/import/gem.scm:98 -#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:100 +#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:101 #, scheme-format msgid "failed to download meta-data for package '~a'~%" msgstr "" @@ -7222,7 +7371,7 @@ msgid "" " --pin-versions use the exact versions of a module's dependencies" msgstr "" -#: guix/scripts/import/go.scm:117 +#: guix/scripts/import/go.scm:118 #, scheme-format msgid "failed to download meta-data for module '~a'.~%" msgstr "" @@ -7339,6 +7488,11 @@ msgid "" "Import and convert the Texlive package for PACKAGE-NAME.\n" msgstr "" +#: guix/scripts/import/texlive.scm:84 +#, scheme-format +msgid "failed to import package '~a'~%" +msgstr "" + #: guix/scripts/offload.scm:130 #, scheme-format msgid "The 'system' field is deprecated, please use 'systems' instead.~%" @@ -7775,53 +7929,53 @@ msgstr "" msgid "~a: unknown type of REPL~%" msgstr "" -#: guix/scripts/shell.scm:46 +#: guix/scripts/shell.scm:48 msgid "" "Usage: guix shell [OPTION] PACKAGES... [-- COMMAND...]\n" "Build an environment that includes PACKAGES and execute COMMAND or an\n" "interactive shell in that environment.\n" msgstr "" -#: guix/scripts/shell.scm:52 +#: guix/scripts/shell.scm:54 msgid "" "\n" " -D, --development include the development inputs of the next package" msgstr "" -#: guix/scripts/shell.scm:54 +#: guix/scripts/shell.scm:56 msgid "" "\n" " -f, --file=FILE add to the environment the package FILE evaluates to" msgstr "" -#: guix/scripts/shell.scm:56 +#: guix/scripts/shell.scm:58 msgid "" "\n" " -q inhibit loading of 'guix.scm' and 'manifest.scm'" msgstr "" -#: guix/scripts/shell.scm:58 +#: guix/scripts/shell.scm:60 msgid "" "\n" " --rebuild-cache rebuild cached environment, if any" msgstr "" -#: guix/scripts/shell.scm:199 +#: guix/scripts/shell.scm:201 #, scheme-format msgid "ignoring invalid file name: '~a'~%" msgstr "" -#: guix/scripts/shell.scm:280 +#: guix/scripts/shell.scm:266 #, scheme-format msgid "loading environment from '~a'...~%" msgstr "" -#: guix/scripts/shell.scm:286 +#: guix/scripts/shell.scm:272 #, scheme-format msgid "not loading '~a' because not authorized to do so~%" msgstr "" -#: guix/scripts/shell.scm:288 +#: guix/scripts/shell.scm:274 #, scheme-format msgid "" "To allow automatic loading of\n" @@ -7833,60 +7987,77 @@ msgid "" "@end example\n" msgstr "" -#: guix/scripts/shell.scm:386 +#: guix/scripts/shell.scm:431 msgid "" "Consider passing the @option{--check} option once\n" "to make sure your shell does not clobber environment variables." msgstr "" -#: guix/scripts/style.scm:241 +#: guix/scripts/style.scm:499 #, scheme-format msgid "~a: complex expression, bailing out~%" msgstr "" -#: guix/scripts/style.scm:259 +#: guix/scripts/style.scm:517 #, scheme-format msgid "~a: input label '~a' does not match package name, bailing out~%" msgstr "" -#: guix/scripts/style.scm:264 +#: guix/scripts/style.scm:522 #, scheme-format msgid "~a: non-trivial input, bailing out~%" msgstr "" -#: guix/scripts/style.scm:288 +#: guix/scripts/style.scm:546 #, scheme-format msgid "~a: input expression is too short~%" msgstr "" -#: guix/scripts/style.scm:380 +#: guix/scripts/style.scm:638 #, scheme-format msgid "~a: unsupported input style, bailing out~%" msgstr "" -#: guix/scripts/style.scm:392 +#: guix/scripts/style.scm:650 #, scheme-format msgid "would be edited~%" msgstr "" -#: guix/scripts/style.scm:482 +#: guix/scripts/style.scm:721 +#, scheme-format +msgid "no definition location for package ~a~%" +msgstr "" + +#: guix/scripts/style.scm:767 +#, fuzzy, scheme-format +#| msgid "~A: unknown package~%" +msgid "~a: unknown styling~%" +msgstr "~A : paquet desconegut~%" + +#: guix/scripts/style.scm:774 #, scheme-format msgid "~a: invalid input simplification policy~%" msgstr "" -#: guix/scripts/style.scm:496 +#: guix/scripts/style.scm:788 msgid "" "Usage: guix style [OPTION]... [PACKAGE]...\n" "Update package definitions to the latest style.\n" msgstr "" -#: guix/scripts/style.scm:498 +#: guix/scripts/style.scm:790 +msgid "" +"\n" +" -S, --styling=RULE apply RULE, a styling rule" +msgstr "" + +#: guix/scripts/style.scm:793 msgid "" "\n" " -n, --dry-run display files that would be edited but do nothing" msgstr "" -#: guix/scripts/style.scm:504 +#: guix/scripts/style.scm:799 msgid "" "\n" " --input-simplification=POLICY\n" diff --git a/po/guix/pl.po b/po/guix/pl.po index 5e2740277c..20ea59520e 100644 --- a/po/guix/pl.po +++ b/po/guix/pl.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: guix 0.11.0\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" "PO-Revision-Date: 2021-11-14 02:05+0000\n" "Last-Translator: Silicius \n" "Language-Team: Polish \n" @@ -53,37 +53,37 @@ msgstr "" msgid "Try adding @code{(use-service-modules ~a)}." msgstr "Spróbuj dodać @code{(use-service-modules ~a)}." -#: gnu/packages.scm:96 +#: gnu/packages.scm:97 #, scheme-format msgid "~a: patch not found" msgstr "~a: nie znaleziono łatki" -#: gnu/packages.scm:480 gnu/packages.scm:521 +#: gnu/packages.scm:481 gnu/packages.scm:522 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "niejasna specyfikacja pakietu `~a'~%" -#: gnu/packages.scm:481 gnu/packages.scm:522 +#: gnu/packages.scm:482 gnu/packages.scm:523 #, scheme-format msgid "choosing ~a@~a from ~a~%" msgstr "wybieranie ~a@~a z ~a~%" -#: gnu/packages.scm:486 guix/scripts/package.scm:216 +#: gnu/packages.scm:487 guix/scripts/package.scm:218 #, scheme-format msgid "package '~a' has been superseded by '~a'~%" msgstr "" -#: gnu/packages.scm:493 gnu/packages.scm:510 +#: gnu/packages.scm:494 gnu/packages.scm:511 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A: nie znalezino pakietu w wersji ~a~%" -#: gnu/packages.scm:494 gnu/packages.scm:511 +#: gnu/packages.scm:495 gnu/packages.scm:512 #, scheme-format msgid "~A: unknown package~%" msgstr "~A: nieznany pakiet~%" -#: gnu/packages.scm:550 +#: gnu/packages.scm:551 #, scheme-format msgid "package `~a' lacks output `~a'~%" msgstr "pakiet `~a' nie posiada wyjścia `~a'~%" @@ -271,14 +271,14 @@ msgid "" "@code{SIGKILL}." msgstr "" -#: gnu/home/services.scm:127 +#: gnu/home/services.scm:128 msgid "" "Build the home environment top-level directory,\n" "which in turn refers to everything the home environment needs: its\n" "packages, configuration files, activation script, and so on." msgstr "" -#: gnu/home/services.scm:158 +#: gnu/home/services.scm:159 #, scheme-format msgid "" "This is the @dfn{home profile} and can be found in\n" @@ -287,21 +287,21 @@ msgid "" "@code{home-environment} record." msgstr "" -#: gnu/home/services.scm:180 +#: gnu/home/services.scm:181 #, scheme-format msgid "duplicate definition for `~a' environment variable ~%" msgstr "" -#: gnu/home/services.scm:242 +#: gnu/home/services.scm:243 msgid "Set the environment variables." msgstr "" -#: gnu/home/services.scm:253 +#: gnu/home/services.scm:254 #, scheme-format msgid "duplicate '~a' entry for files/" msgstr "" -#: gnu/home/services.scm:277 +#: gnu/home/services.scm:278 #, scheme-format msgid "" "Configuration files for programs that\n" @@ -310,7 +310,7 @@ msgstr "" #. TRANSLATORS: 'on-first-login' is the name of a service and #. shouldn't be translated -#: gnu/home/services.scm:308 +#: gnu/home/services.scm:309 msgid "" "XDG_RUNTIME_DIR doesn't exists, on-first-login script\n" "won't execute anything. You can check if xdg runtime directory exists,\n" @@ -318,13 +318,13 @@ msgid "" "script by running '$HOME/.guix-home/on-first-login'" msgstr "" -#: gnu/home/services.scm:328 +#: gnu/home/services.scm:329 msgid "" "Run gexps on first user login. Can be\n" "extended with one gexp." msgstr "" -#: gnu/home/services.scm:391 +#: gnu/home/services.scm:392 msgid "" "Run gexps to activate the current\n" "generation of home environment and update the state of the home\n" @@ -333,33 +333,33 @@ msgid "" "with one gexp, but many times, and all gexps must be idempotent." msgstr "" -#: gnu/home/services.scm:472 +#: gnu/home/services.scm:473 #, scheme-format msgid "" "Comparing ~a and\n" "~10t~a..." msgstr "" -#: gnu/home/services.scm:474 +#: gnu/home/services.scm:475 #, scheme-format msgid " done (~a)\n" msgstr "" #. TRANSLATORS: 'on-change' is the name of a service type, it #. probably shouldn't be translated. -#: gnu/home/services.scm:483 +#: gnu/home/services.scm:484 msgid "" "Evaluating on-change gexps.\n" "\n" msgstr "" -#: gnu/home/services.scm:485 +#: gnu/home/services.scm:486 msgid "" "On-change gexps evaluation finished.\n" "\n" msgstr "" -#: gnu/home/services.scm:499 +#: gnu/home/services.scm:500 msgid "" "G-expressions to run if the specified files have changed since the\n" "last generation. The extension should be a list of lists where the\n" @@ -367,7 +367,7 @@ msgid "" "changed, and the second element is the G-expression to be evaluated." msgstr "" -#: gnu/home/services.scm:519 +#: gnu/home/services.scm:520 msgid "" "Store provenance information about the home environment in the home\n" "environment itself: the channels used when building the home\n" @@ -625,12 +625,12 @@ msgstr "" msgid "Updater for ELPA packages" msgstr "" -#: guix/import/github.scm:170 +#: guix/import/github.scm:175 #, scheme-format msgid "~a is unreachable (~a)~%" msgstr "" -#: guix/import/github.scm:260 +#: guix/import/github.scm:274 msgid "Updater for GitHub packages" msgstr "" @@ -668,12 +668,23 @@ msgstr "~A: nie znalezino pakietu w wersji ~a~%" msgid "failed to determine latest release of GNU ~a" msgstr "" -#: guix/import/go.scm:569 +#: guix/import/go.scm:571 #, scheme-format msgid "unsupported vcs type '~a' for package '~a'" msgstr "" -#: guix/import/go.scm:647 +#: guix/import/go.scm:594 +#, fuzzy, scheme-format +#| msgid " ~50a: unavailable~%" +msgid "version ~a of ~a is not available~%" +msgstr " ~50a: niedostępne~%" + +#: guix/import/go.scm:597 +#, scheme-format +msgid "Pick one of the following available versions:~{ ~a~}." +msgstr "" + +#: guix/import/go.scm:671 #, scheme-format msgid "" "Failed to import package ~s.\n" @@ -681,13 +692,6 @@ msgid "" "This package and its dependencies won't be imported.~%" msgstr "" -#: guix/import/go.scm:656 -#, fuzzy, scheme-format -msgid "" -"Failed to import package ~s.\n" -"reason: ~s.~%" -msgstr "instalacja tłumaczeń nie powiodła się: ~a~%" - #: guix/import/minetest.scm:178 #, scheme-format msgid "In ~a: author names must consist of at least a single character.~%" @@ -781,77 +785,99 @@ msgstr "użytkownik '~a' nie znaleziony: ~a~%" msgid "Updater for OPAM packages" msgstr "" -#: guix/import/pypi.scm:230 +#: guix/import/pypi.scm:233 msgid "Could not extract requirement name in spec:" msgstr "" -#: guix/import/pypi.scm:290 +#: guix/import/pypi.scm:293 #, scheme-format msgid "parse-requires.txt reached an unexpected condition on line ~a~%" msgstr "" -#: guix/import/pypi.scm:356 +#: guix/import/pypi.scm:359 #, fuzzy, scheme-format msgid "Failed to extract file: ~a from wheel.~%" msgstr "instalacja tłumaczeń nie powiodła się: ~a~%" -#: guix/import/pypi.scm:385 +#: guix/import/pypi.scm:388 #, scheme-format msgid "Cannot guess requirements from source archive: no requires.txt file found.~%" msgstr "" -#: guix/import/pypi.scm:390 +#: guix/import/pypi.scm:393 #, scheme-format msgid "Unsupported archive format; cannot determine package dependencies from source archive: ~a~%" msgstr "" -#: guix/import/pypi.scm:489 +#: guix/import/pypi.scm:434 +#, scheme-format +msgid "project name ~a does not appear verbatim in the PyPI URI~%" +msgstr "" + +#: guix/import/pypi.scm:437 +#, scheme-format +msgid "" +"The PyPI URI is: @url{~a}. You should review the\n" +"pypi-uri declaration in the generated package. You may need to replace ~s with\n" +"a substring of the PyPI URI that identifies the package." +msgstr "" + +#: guix/import/pypi.scm:505 #, scheme-format msgid "no source release for pypi package ~a ~a~%" msgstr "" -#: guix/import/pypi.scm:554 +#: guix/import/pypi.scm:509 +#, scheme-format +msgid "" +"This indicates that the\n" +"package is available on PyPI, but only as a \"wheel\" containing binaries, not\n" +"source. To build it from source, refer to the upstream repository at\n" +"@uref{~a}." +msgstr "" + +#: guix/import/pypi.scm:579 msgid "Updater for PyPI packages" msgstr "" -#: gnu/installer.scm:214 +#: gnu/installer.scm:217 msgid "Locale" msgstr "" -#: gnu/installer.scm:230 gnu/installer/newt/timezone.scm:58 +#: gnu/installer.scm:233 gnu/installer/newt/timezone.scm:58 msgid "Timezone" msgstr "" -#: gnu/installer.scm:247 +#: gnu/installer.scm:250 msgid "Keyboard mapping selection" msgstr "" -#: gnu/installer.scm:256 gnu/installer/newt/hostname.scm:26 +#: gnu/installer.scm:259 gnu/installer/newt/hostname.scm:26 msgid "Hostname" msgstr "" -#: gnu/installer.scm:265 +#: gnu/installer.scm:268 msgid "Network selection" msgstr "" -#: gnu/installer.scm:272 +#: gnu/installer.scm:275 msgid "Substitute server discovery" msgstr "" -#: gnu/installer.scm:279 gnu/installer/newt/user.scm:68 -#: gnu/installer/newt/user.scm:205 +#: gnu/installer.scm:282 gnu/installer/newt/user.scm:67 +#: gnu/installer/newt/user.scm:204 msgid "User creation" msgstr "" -#: gnu/installer.scm:287 +#: gnu/installer.scm:290 msgid "Services" msgstr "" -#: gnu/installer.scm:298 +#: gnu/installer.scm:301 msgid "Partitioning" msgstr "" -#: gnu/installer.scm:305 gnu/installer/newt/final.scm:53 +#: gnu/installer.scm:308 gnu/installer/newt/final.scm:53 msgid "Configuration file" msgstr "Plik konfiguracji" @@ -863,19 +889,78 @@ msgstr "" msgid "Unable to find expected regexp." msgstr "" -#: gnu/installer/newt.scm:52 +#: gnu/installer/newt.scm:58 msgid "Press for installation parameters." msgstr "" -#: gnu/installer/newt.scm:65 -#, scheme-format -msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +#: gnu/installer/newt.scm:68 +msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. You may choose to exit or create a dump archive." msgstr "" -#: gnu/installer/newt.scm:68 +#: gnu/installer/newt.scm:71 msgid "Unexpected problem" msgstr "" +#: gnu/installer/newt.scm:75 +msgid "Dump" +msgstr "" + +#: gnu/installer/newt.scm:76 gnu/installer/newt/ethernet.scm:79 +#: gnu/installer/newt/keymap.scm:56 gnu/installer/newt/locale.scm:43 +#: gnu/installer/newt/network.scm:65 gnu/installer/newt/network.scm:82 +#: gnu/installer/newt/page.scm:315 gnu/installer/newt/page.scm:679 +#: gnu/installer/newt/page.scm:763 gnu/installer/newt/page.scm:828 +#: gnu/installer/newt/partition.scm:54 gnu/installer/newt/partition.scm:90 +#: gnu/installer/newt/partition.scm:125 gnu/installer/newt/partition.scm:140 +#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 +#: gnu/installer/newt/partition.scm:706 gnu/installer/newt/partition.scm:764 +#: gnu/installer/newt/partition.scm:775 gnu/installer/newt/services.scm:124 +#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/wifi.scm:206 +msgid "Exit" +msgstr "" + +#: gnu/installer/newt.scm:82 +#, scheme-format +msgid "The dump archive was created as ~a. Would you like to send this archive to the Guix servers?" +msgstr "" + +#: gnu/installer/newt.scm:84 +msgid "Dump archive created" +msgstr "" + +#: gnu/installer/newt.scm:88 +#, scheme-format +msgid "The dump was uploaded as ~a. Please report it by email to ~a." +msgstr "" + +#: gnu/installer/newt.scm:90 +msgid "The dump could not be uploaded." +msgstr "" + +#: gnu/installer/newt.scm:93 +msgid "Dump upload result" +msgstr "" + +#: gnu/installer/newt.scm:132 +#, scheme-format +msgid "External command ~s exited with code ~a" +msgstr "" + +#: gnu/installer/newt.scm:135 +#, scheme-format +msgid "External command ~s terminated by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:138 +#, scheme-format +msgid "External command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:140 +msgid "External command error" +msgstr "" + #: gnu/installer/newt/ethernet.scm:66 msgid "No ethernet service available, please try again." msgstr "" @@ -884,59 +969,45 @@ msgstr "" msgid "No service" msgstr "" -#: gnu/installer/newt/ethernet.scm:76 +#: gnu/installer/newt/ethernet.scm:74 msgid "Please select an ethernet network." msgstr "" -#: gnu/installer/newt/ethernet.scm:77 +#: gnu/installer/newt/ethernet.scm:75 msgid "Ethernet connection" msgstr "" -#: gnu/installer/newt/ethernet.scm:81 gnu/installer/newt/keymap.scm:56 -#: gnu/installer/newt/locale.scm:43 gnu/installer/newt/network.scm:63 -#: gnu/installer/newt/network.scm:84 gnu/installer/newt/page.scm:309 -#: gnu/installer/newt/page.scm:673 gnu/installer/newt/page.scm:758 -#: gnu/installer/newt/partition.scm:56 gnu/installer/newt/partition.scm:91 -#: gnu/installer/newt/partition.scm:126 gnu/installer/newt/partition.scm:141 -#: gnu/installer/newt/partition.scm:638 gnu/installer/newt/partition.scm:661 -#: gnu/installer/newt/partition.scm:707 gnu/installer/newt/partition.scm:765 -#: gnu/installer/newt/partition.scm:776 gnu/installer/newt/services.scm:130 -#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:204 -#: gnu/installer/newt/wifi.scm:206 -msgid "Exit" -msgstr "" - #: gnu/installer/newt/final.scm:46 #, scheme-format msgid "We're now ready to proceed with the installation! A system configuration file has been generated, it is displayed below. This file will be available as '~a' on the installed system. The new system will be created from this file once you've pressed OK. This will take a few minutes." msgstr "" -#: gnu/installer/newt/final.scm:70 +#: gnu/installer/newt/final.scm:68 msgid "Installation complete" msgstr "Ukończono instalację" -#: gnu/installer/newt/final.scm:71 gnu/installer/newt/parameters.scm:45 +#: gnu/installer/newt/final.scm:69 gnu/installer/newt/parameters.scm:45 #: gnu/installer/newt/welcome.scm:145 msgid "Reboot" msgstr "" -#: gnu/installer/newt/final.scm:72 +#: gnu/installer/newt/final.scm:70 msgid "Congratulations! Installation is now complete. You may remove the device containing the installation image and press the button to reboot." msgstr "" -#: gnu/installer/newt/final.scm:86 +#: gnu/installer/newt/final.scm:84 msgid "Installation failed" msgstr "instalacja się nie powiodła" -#: gnu/installer/newt/final.scm:87 +#: gnu/installer/newt/final.scm:85 msgid "Resume" msgstr "Wznów" -#: gnu/installer/newt/final.scm:88 +#: gnu/installer/newt/final.scm:86 msgid "Restart the installer" msgstr "" -#: gnu/installer/newt/final.scm:89 +#: gnu/installer/newt/final.scm:87 msgid "The final system installation step failed. You can resume from a specific step, or restart the installer." msgstr "" @@ -964,9 +1035,9 @@ msgstr "" msgid "Installation parameters" msgstr "" -#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:74 -#: gnu/installer/newt/locale.scm:63 gnu/installer/newt/locale.scm:78 -#: gnu/installer/newt/locale.scm:94 gnu/installer/newt/partition.scm:595 +#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:72 +#: gnu/installer/newt/locale.scm:61 gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:88 gnu/installer/newt/partition.scm:594 #: gnu/installer/newt/timezone.scm:64 msgid "Back" msgstr "Wstecz" @@ -987,16 +1058,16 @@ msgstr "" msgid "Please choose your keyboard layout. It will be used during the install process, and for the installed system. Non-Latin layouts can be toggled with Alt+Shift. You can switch to a different layout at any time from the parameters menu." msgstr "" -#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:62 -#: gnu/installer/newt/page.scm:308 +#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/page.scm:314 msgid "Continue" msgstr "Kontynuuj" -#: gnu/installer/newt/keymap.scm:67 +#: gnu/installer/newt/keymap.scm:65 msgid "Variant" msgstr "" -#: gnu/installer/newt/keymap.scm:70 +#: gnu/installer/newt/keymap.scm:68 msgid "Please choose a variant for your keyboard layout." msgstr "" @@ -1008,37 +1079,37 @@ msgstr "" msgid "Choose the language to use for the installation process and for the installed system." msgstr "" -#: gnu/installer/newt/locale.scm:57 +#: gnu/installer/newt/locale.scm:55 #, fuzzy msgid "Locale location" msgstr "" -#: gnu/installer/newt/locale.scm:60 +#: gnu/installer/newt/locale.scm:58 msgid "Choose a territory for this language." msgstr "" -#: gnu/installer/newt/locale.scm:71 +#: gnu/installer/newt/locale.scm:67 msgid "Locale codeset" msgstr "" -#: gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:70 msgid "Choose the locale encoding." msgstr "" -#: gnu/installer/newt/locale.scm:86 +#: gnu/installer/newt/locale.scm:80 msgid "Locale modifier" msgstr "" -#: gnu/installer/newt/locale.scm:89 +#: gnu/installer/newt/locale.scm:83 msgid "Choose your locale's modifier. The most frequent modifier is euro. It indicates that you want to use Euro as the currency symbol." msgstr "" -#: gnu/installer/newt/locale.scm:190 +#: gnu/installer/newt/locale.scm:181 #, fuzzy msgid "No location" msgstr "" -#: gnu/installer/newt/locale.scm:217 +#: gnu/installer/newt/locale.scm:208 msgid "No modifier" msgstr "" @@ -1054,330 +1125,334 @@ msgstr "" msgid "Abort" msgstr "" -#: gnu/installer/newt/network.scm:61 gnu/installer/newt/network.scm:80 +#: gnu/installer/newt/network.scm:63 gnu/installer/newt/network.scm:78 msgid "Internet access" msgstr "" -#: gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/network.scm:66 msgid "The install process requires Internet access but no network devices were found. Do you want to continue anyway?" msgstr "" -#: gnu/installer/newt/network.scm:78 +#: gnu/installer/newt/network.scm:76 msgid "The install process requires Internet access. Please select a network device." msgstr "" -#: gnu/installer/newt/network.scm:103 +#: gnu/installer/newt/network.scm:99 msgid "Powering technology" msgstr "" -#: gnu/installer/newt/network.scm:104 +#: gnu/installer/newt/network.scm:100 #, scheme-format msgid "Waiting for technology ~a to be powered." msgstr "" -#: gnu/installer/newt/network.scm:128 +#: gnu/installer/newt/network.scm:139 msgid "Checking connectivity" msgstr "" -#: gnu/installer/newt/network.scm:129 +#: gnu/installer/newt/network.scm:140 msgid "Waiting for Internet access establishment..." msgstr "" -#: gnu/installer/newt/network.scm:139 -msgid "The selected network does not provide access to the Internet, please try again." +#: gnu/installer/newt/network.scm:150 +msgid "The selected network does not provide access to the Internet and the Guix substitute server, please try again." msgstr "" -#: gnu/installer/newt/network.scm:141 gnu/installer/newt/wifi.scm:108 +#: gnu/installer/newt/network.scm:152 gnu/installer/newt/wifi.scm:108 msgid "Connection error" msgstr "Błąd połączenia" -#: gnu/installer/newt/page.scm:198 +#: gnu/installer/newt/page.scm:204 #, scheme-format msgid "Connecting to ~a, please wait." msgstr "" -#: gnu/installer/newt/page.scm:199 +#: gnu/installer/newt/page.scm:205 msgid "Connection in progress" msgstr "" -#: gnu/installer/newt/page.scm:218 gnu/installer/newt/user.scm:60 +#: gnu/installer/newt/page.scm:224 gnu/installer/newt/user.scm:59 msgid "Show" msgstr "" -#: gnu/installer/newt/page.scm:225 gnu/installer/newt/page.scm:672 -#: gnu/installer/newt/page.scm:757 gnu/installer/newt/partition.scm:458 -#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 -#: gnu/installer/newt/partition.scm:699 gnu/installer/newt/user.scm:66 -#: gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/page.scm:231 gnu/installer/newt/page.scm:678 +#: gnu/installer/newt/page.scm:762 gnu/installer/newt/partition.scm:457 +#: gnu/installer/newt/partition.scm:636 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:698 gnu/installer/newt/user.scm:65 +#: gnu/installer/newt/user.scm:202 msgid "OK" msgstr "OK" -#: gnu/installer/newt/page.scm:251 +#: gnu/installer/newt/page.scm:257 msgid "Please enter a non empty input." msgstr "" -#: gnu/installer/newt/page.scm:252 gnu/installer/newt/user.scm:123 +#: gnu/installer/newt/page.scm:258 gnu/installer/newt/user.scm:122 msgid "Empty input" msgstr "" -#: gnu/installer/newt/page.scm:760 +#: gnu/installer/newt/page.scm:765 msgid "Edit" msgstr "Modyfikuj" -#: gnu/installer/newt/partition.scm:47 +#: gnu/installer/newt/page.scm:825 +msgid "Ok" +msgstr "" + +#: gnu/installer/newt/partition.scm:45 msgid "Everything is one partition" msgstr "" -#: gnu/installer/newt/partition.scm:48 +#: gnu/installer/newt/partition.scm:46 msgid "Separate /home partition" msgstr "" -#: gnu/installer/newt/partition.scm:50 +#: gnu/installer/newt/partition.scm:48 msgid "Please select a partitioning scheme." msgstr "" -#: gnu/installer/newt/partition.scm:51 +#: gnu/installer/newt/partition.scm:49 msgid "Partition scheme" msgstr "" #. TRANSLATORS: The ~{ and ~} format specifiers are used to iterate the list #. of device names of the user partitions that will be formatted. -#: gnu/installer/newt/partition.scm:65 +#: gnu/installer/newt/partition.scm:63 #, scheme-format msgid "We are about to write the configured partition table to the disk and format the partitions listed below. Their data will be lost. Do you wish to continue?~%~%~{ - ~a~%~}" msgstr "" -#: gnu/installer/newt/partition.scm:71 +#: gnu/installer/newt/partition.scm:69 msgid "Format disk?" msgstr "" -#: gnu/installer/newt/partition.scm:74 +#: gnu/installer/newt/partition.scm:72 msgid "Partition formatting is in progress, please wait." msgstr "" -#: gnu/installer/newt/partition.scm:75 +#: gnu/installer/newt/partition.scm:73 msgid "Preparing partitions" msgstr "" -#: gnu/installer/newt/partition.scm:86 -msgid "Please select a disk." -msgstr "Proszę wybrać plik." +#: gnu/installer/newt/partition.scm:84 +msgid "Please select a disk. The installation device as well as the small devices are filtered." +msgstr "" -#: gnu/installer/newt/partition.scm:87 +#: gnu/installer/newt/partition.scm:86 msgid "Disk" msgstr "Dysk" -#: gnu/installer/newt/partition.scm:102 +#: gnu/installer/newt/partition.scm:101 msgid "Select a new partition table type. Be careful, all data on the disk will be lost." msgstr "" -#: gnu/installer/newt/partition.scm:104 +#: gnu/installer/newt/partition.scm:103 msgid "Partition table" msgstr "Tablica partycji" -#: gnu/installer/newt/partition.scm:121 +#: gnu/installer/newt/partition.scm:120 msgid "Please select a partition type." msgstr "" -#: gnu/installer/newt/partition.scm:122 +#: gnu/installer/newt/partition.scm:121 msgid "Partition type" msgstr "Typ partycji:" -#: gnu/installer/newt/partition.scm:132 +#: gnu/installer/newt/partition.scm:131 msgid "Please select the file-system type for this partition." msgstr "" -#: gnu/installer/newt/partition.scm:133 +#: gnu/installer/newt/partition.scm:132 msgid "File-system type" msgstr "" -#: gnu/installer/newt/partition.scm:150 +#: gnu/installer/newt/partition.scm:149 msgid "Primary partitions count exceeded." msgstr "" -#: gnu/installer/newt/partition.scm:151 gnu/installer/newt/partition.scm:156 -#: gnu/installer/newt/partition.scm:161 +#: gnu/installer/newt/partition.scm:150 gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:160 msgid "Creation error" msgstr "" -#: gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:154 msgid "Extended partition creation error." msgstr "" -#: gnu/installer/newt/partition.scm:160 +#: gnu/installer/newt/partition.scm:159 msgid "Logical partition creation error." msgstr "" -#: gnu/installer/newt/partition.scm:174 +#: gnu/installer/newt/partition.scm:173 #, scheme-format msgid "Please enter the password for the encryption of partition ~a (label: ~a)." msgstr "" -#: gnu/installer/newt/partition.scm:176 gnu/installer/newt/wifi.scm:92 +#: gnu/installer/newt/partition.scm:175 gnu/installer/newt/wifi.scm:92 msgid "Password required" msgstr "" -#: gnu/installer/newt/partition.scm:181 +#: gnu/installer/newt/partition.scm:180 #, scheme-format msgid "Please confirm the password for the encryption of partition ~a (label: ~a)." msgstr "" -#: gnu/installer/newt/partition.scm:183 gnu/installer/newt/user.scm:160 +#: gnu/installer/newt/partition.scm:182 gnu/installer/newt/user.scm:159 msgid "Password confirmation required" msgstr "" -#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 +#: gnu/installer/newt/partition.scm:194 gnu/installer/newt/user.scm:167 msgid "Password mismatch, please try again." msgstr "" -#: gnu/installer/newt/partition.scm:196 gnu/installer/newt/user.scm:169 +#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 msgid "Password error" msgstr "" -#: gnu/installer/newt/partition.scm:282 +#: gnu/installer/newt/partition.scm:281 msgid "Please enter the partition gpt name." msgstr "" -#: gnu/installer/newt/partition.scm:283 +#: gnu/installer/newt/partition.scm:282 msgid "Partition name" msgstr "" -#: gnu/installer/newt/partition.scm:313 +#: gnu/installer/newt/partition.scm:312 msgid "Please enter the encrypted label" msgstr "" -#: gnu/installer/newt/partition.scm:314 +#: gnu/installer/newt/partition.scm:313 msgid "Encryption label" msgstr "" -#: gnu/installer/newt/partition.scm:331 +#: gnu/installer/newt/partition.scm:330 #, scheme-format msgid "Please enter the size of the partition. The maximum size is ~a." msgstr "" -#: gnu/installer/newt/partition.scm:333 +#: gnu/installer/newt/partition.scm:332 msgid "Partition size" msgstr "" -#: gnu/installer/newt/partition.scm:351 +#: gnu/installer/newt/partition.scm:350 msgid "The percentage can not be superior to 100." msgstr "" -#: gnu/installer/newt/partition.scm:352 gnu/installer/newt/partition.scm:357 -#: gnu/installer/newt/partition.scm:362 +#: gnu/installer/newt/partition.scm:351 gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:361 msgid "Size error" msgstr "" -#: gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:355 msgid "The requested size is incorrectly formatted, or too large." msgstr "" -#: gnu/installer/newt/partition.scm:361 +#: gnu/installer/newt/partition.scm:360 msgid "The request size is superior to the maximum size." msgstr "" -#: gnu/installer/newt/partition.scm:381 +#: gnu/installer/newt/partition.scm:380 msgid "Please enter the desired mounting point for this partition. Leave this field empty if you don't want to set a mounting point." msgstr "" -#: gnu/installer/newt/partition.scm:383 +#: gnu/installer/newt/partition.scm:382 msgid "Mounting point" msgstr "" -#: gnu/installer/newt/partition.scm:447 +#: gnu/installer/newt/partition.scm:446 #, scheme-format msgid "Creating ~a partition starting at ~a of ~a." msgstr "" -#: gnu/installer/newt/partition.scm:449 +#: gnu/installer/newt/partition.scm:448 #, scheme-format msgid "You are currently editing partition ~a." msgstr "" -#: gnu/installer/newt/partition.scm:452 +#: gnu/installer/newt/partition.scm:451 msgid "Partition creation" msgstr "" -#: gnu/installer/newt/partition.scm:453 +#: gnu/installer/newt/partition.scm:452 msgid "Partition edit" msgstr "" -#: gnu/installer/newt/partition.scm:634 +#: gnu/installer/newt/partition.scm:633 #, scheme-format msgid "Are you sure you want to delete everything on disk ~a?" msgstr "" -#: gnu/installer/newt/partition.scm:636 +#: gnu/installer/newt/partition.scm:635 msgid "Delete disk" msgstr "" -#: gnu/installer/newt/partition.scm:651 +#: gnu/installer/newt/partition.scm:650 msgid "You cannot delete a free space area." msgstr "" -#: gnu/installer/newt/partition.scm:652 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:651 gnu/installer/newt/partition.scm:658 msgid "Delete partition" msgstr "" -#: gnu/installer/newt/partition.scm:657 +#: gnu/installer/newt/partition.scm:656 #, scheme-format msgid "Are you sure you want to delete partition ~a?" msgstr "" -#: gnu/installer/newt/partition.scm:674 +#: gnu/installer/newt/partition.scm:673 msgid "" "You can change a disk's partition table by selecting it and pressing ENTER. You can also edit a partition by selecting it and pressing ENTER, or remove it by pressing DELETE. To create a new partition, select a free space area and press ENTER.\n" "\n" "At least one partition must have its mounting point set to '/'." msgstr "" -#: gnu/installer/newt/partition.scm:680 +#: gnu/installer/newt/partition.scm:679 #, scheme-format msgid "This is the proposed partitioning. It is still possible to edit it or to go back to install menu by pressing the Exit button.~%~%" msgstr "" -#: gnu/installer/newt/partition.scm:690 +#: gnu/installer/newt/partition.scm:689 msgid "Guided partitioning" msgstr "" -#: gnu/installer/newt/partition.scm:691 +#: gnu/installer/newt/partition.scm:690 msgid "Manual partitioning" msgstr "" -#: gnu/installer/newt/partition.scm:716 +#: gnu/installer/newt/partition.scm:715 msgid "No root mount point found." msgstr "" -#: gnu/installer/newt/partition.scm:717 +#: gnu/installer/newt/partition.scm:716 msgid "Missing mount point" msgstr "" -#: gnu/installer/newt/partition.scm:721 +#: gnu/installer/newt/partition.scm:720 #, scheme-format msgid "Cannot read the ~a partition UUID. You may need to format it." msgstr "" -#: gnu/installer/newt/partition.scm:724 +#: gnu/installer/newt/partition.scm:723 msgid "Wrong partition format" msgstr "" -#: gnu/installer/newt/partition.scm:755 +#: gnu/installer/newt/partition.scm:754 msgid "Guided - using the entire disk" msgstr "" -#: gnu/installer/newt/partition.scm:756 +#: gnu/installer/newt/partition.scm:755 msgid "Guided - using the entire disk with encryption" msgstr "" -#: gnu/installer/newt/partition.scm:757 +#: gnu/installer/newt/partition.scm:756 msgid "Manual" msgstr "" -#: gnu/installer/newt/partition.scm:759 +#: gnu/installer/newt/partition.scm:758 msgid "Please select a partitioning method." msgstr "" -#: gnu/installer/newt/partition.scm:760 +#: gnu/installer/newt/partition.scm:759 msgid "Partitioning method" msgstr "" @@ -1389,36 +1464,36 @@ msgstr "" msgid "Desktop environment" msgstr "" -#: gnu/installer/newt/services.scm:59 +#: gnu/installer/newt/services.scm:57 msgid "You can now select networking services to run on your system." msgstr "" -#: gnu/installer/newt/services.scm:61 +#: gnu/installer/newt/services.scm:59 msgid "Network service" msgstr "" -#: gnu/installer/newt/services.scm:79 +#: gnu/installer/newt/services.scm:75 msgid "You can now select the CUPS printing service to run on your system." msgstr "" -#: gnu/installer/newt/services.scm:81 +#: gnu/installer/newt/services.scm:77 msgid "Printing and document services" msgstr "" -#: gnu/installer/newt/services.scm:100 +#: gnu/installer/newt/services.scm:94 msgid "Console services" msgstr "" -#: gnu/installer/newt/services.scm:101 +#: gnu/installer/newt/services.scm:95 msgid "Select miscellaneous services to run on your non-graphical system." msgstr "" -#: gnu/installer/newt/services.scm:115 +#: gnu/installer/newt/services.scm:109 #, fuzzy msgid "Network management" msgstr "za dużo argumentów~%" -#: gnu/installer/newt/services.scm:118 +#: gnu/installer/newt/services.scm:112 msgid "" "Choose the method to manage network connections.\n" "\n" @@ -1448,57 +1523,57 @@ msgstr "" msgid "Please select a timezone." msgstr "" -#: gnu/installer/newt/user.scm:45 +#: gnu/installer/newt/user.scm:44 msgid "Name" msgstr "" -#: gnu/installer/newt/user.scm:47 +#: gnu/installer/newt/user.scm:46 msgid "Real name" msgstr "" -#: gnu/installer/newt/user.scm:49 +#: gnu/installer/newt/user.scm:48 msgid "Home directory" msgstr "" -#: gnu/installer/newt/user.scm:51 +#: gnu/installer/newt/user.scm:50 msgid "Password" msgstr "" -#: gnu/installer/newt/user.scm:122 +#: gnu/installer/newt/user.scm:121 msgid "Empty inputs are not allowed." msgstr "" -#: gnu/installer/newt/user.scm:159 +#: gnu/installer/newt/user.scm:158 msgid "Please confirm the password." msgstr "" #. TRANSLATORS: Leave "root" untranslated: it refers to the name of the #. system administrator account. -#: gnu/installer/newt/user.scm:176 +#: gnu/installer/newt/user.scm:175 msgid "Please choose a password for the system administrator (\"root\")." msgstr "" -#: gnu/installer/newt/user.scm:178 +#: gnu/installer/newt/user.scm:177 msgid "System administrator password" msgstr "" -#: gnu/installer/newt/user.scm:191 +#: gnu/installer/newt/user.scm:190 msgid "Please add at least one user to system using the 'Add' button." msgstr "" -#: gnu/installer/newt/user.scm:194 +#: gnu/installer/newt/user.scm:193 msgid "Add" msgstr "" -#: gnu/installer/newt/user.scm:195 +#: gnu/installer/newt/user.scm:194 msgid "Delete" msgstr "" -#: gnu/installer/newt/user.scm:255 +#: gnu/installer/newt/user.scm:254 msgid "Please create at least one user." msgstr "" -#: gnu/installer/newt/user.scm:256 +#: gnu/installer/newt/user.scm:255 msgid "No user" msgstr "" @@ -1569,60 +1644,60 @@ msgstr "" msgid "Wifi" msgstr "" -#: gnu/installer/parted.scm:433 gnu/installer/parted.scm:470 +#: gnu/installer/parted.scm:455 gnu/installer/parted.scm:492 msgid "Free space" msgstr "" -#: gnu/installer/parted.scm:559 +#: gnu/installer/parted.scm:581 #, fuzzy, scheme-format msgid "Name: ~a" msgstr "~a: ~a~%" -#: gnu/installer/parted.scm:560 gnu/installer/parted.scm:606 +#: gnu/installer/parted.scm:582 gnu/installer/parted.scm:628 msgid "None" msgstr "" -#: gnu/installer/parted.scm:565 +#: gnu/installer/parted.scm:587 #, scheme-format msgid "Type: ~a" msgstr "" -#: gnu/installer/parted.scm:569 +#: gnu/installer/parted.scm:591 #, scheme-format msgid "File system type: ~a" msgstr "" -#: gnu/installer/parted.scm:575 +#: gnu/installer/parted.scm:597 #, scheme-format msgid "Bootable flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:579 +#: gnu/installer/parted.scm:601 #, scheme-format msgid "ESP flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:585 +#: gnu/installer/parted.scm:607 #, scheme-format msgid "Size: ~a" msgstr "" -#: gnu/installer/parted.scm:591 +#: gnu/installer/parted.scm:613 #, scheme-format msgid "Encryption: ~:[No~a~;Yes (label '~a')~]" msgstr "" -#: gnu/installer/parted.scm:597 +#: gnu/installer/parted.scm:619 #, scheme-format msgid "Format the partition? ~:[No~;Yes~]" msgstr "" -#: gnu/installer/parted.scm:603 +#: gnu/installer/parted.scm:625 #, scheme-format msgid "Mount point: ~a" msgstr "" -#: gnu/installer/parted.scm:1466 +#: gnu/installer/parted.scm:1477 #, scheme-format msgid "Device ~a is still in use." msgstr "" @@ -1666,7 +1741,7 @@ msgstr "" #. TRANSLATORS: This is a comment within a Scheme file. Each line must #. start with ";; " (two semicolons and a space). Please keep line #. length below 60 characters. -#: gnu/installer/steps.scm:252 +#: gnu/installer/steps.scm:242 msgid "" ";; This is an operating system configuration generated\n" ";; by the graphical installer.\n" @@ -1677,99 +1752,118 @@ msgstr "" msgid "Unable to locate path: ~a." msgstr "" -#: gnu/installer/utils.scm:83 +#: gnu/installer/utils.scm:131 #, scheme-format msgid "Press Enter to continue.~%" msgstr "" -#: gnu/installer/utils.scm:108 +#: gnu/installer/utils.scm:150 +#, scheme-format +msgid "Command ~s exited with value ~a" +msgstr "" + +#: gnu/installer/utils.scm:156 +#, scheme-format +msgid "Command ~s killed by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:162 #, scheme-format -msgid "Command failed with exit code ~a.~%" +msgid "Command ~s stopped by signal ~a" msgstr "" -#: gnu/machine/ssh.scm:117 +#: gnu/installer/utils.scm:167 +#, scheme-format +msgid "Command ~s succeeded" +msgstr "" + +#: gnu/installer/utils.scm:179 +msgid "run-command-in-installer not set" +msgstr "" + +#: gnu/machine/ssh.scm:120 #, scheme-format msgid " without a 'host-key' is deprecated~%" msgstr "" -#: gnu/machine/ssh.scm:192 +#: gnu/machine/ssh.scm:208 #, fuzzy, scheme-format msgid "device '~a' not found: ~a" msgstr "użytkownik '~a' nie znaleziony: ~a~%" -#: gnu/machine/ssh.scm:207 +#: gnu/machine/ssh.scm:223 #, scheme-format msgid "no file system with label '~a'" msgstr "" -#: gnu/machine/ssh.scm:226 +#: gnu/machine/ssh.scm:242 #, scheme-format msgid "no file system with UUID '~a'" msgstr "" -#: gnu/machine/ssh.scm:276 +#: gnu/machine/ssh.scm:295 #, scheme-format msgid "missing modules for ~a:~{ ~a~}~%" msgstr "" -#: gnu/machine/ssh.scm:311 +#: gnu/machine/ssh.scm:333 #, scheme-format msgid "incorrect target system ('~a' was given, while the system reports that it is '~a')~%" msgstr "" -#: gnu/machine/ssh.scm:437 +#: gnu/machine/ssh.scm:459 #, scheme-format msgid "no signing key '~a'. have you run 'guix archive --generate-key?'" msgstr "" -#: gnu/machine/ssh.scm:469 +#: gnu/machine/ssh.scm:491 #, scheme-format msgid "failed to switch systems while deploying '~a':~%~{~s ~}" msgstr "" -#: gnu/machine/ssh.scm:477 +#: gnu/machine/ssh.scm:499 #, scheme-format msgid "an error occurred while upgrading services on '~a':~%~{~s ~}~%" msgstr "" -#: gnu/machine/ssh.scm:485 +#: gnu/machine/ssh.scm:507 #, fuzzy, scheme-format #| msgid "failed to install locale: ~a~%" msgid "failed to install bootloader on '~a':~%~{~s ~}~%" msgstr "instalacja tłumaczeń nie powiodła się: ~a~%" -#: gnu/machine/ssh.scm:518 +#: gnu/machine/ssh.scm:540 msgid "could not roll-back machine" msgstr "" -#: gnu/machine/ssh.scm:559 +#: gnu/machine/ssh.scm:581 msgid "" "Provisioning for machines that are accessible over SSH\n" "and have a known host-name. This entails little more than maintaining an SSH\n" "connection to the host." msgstr "" -#: gnu/machine/ssh.scm:569 +#: gnu/machine/ssh.scm:591 #, scheme-format msgid "" "unsupported machine configuration '~a'\n" "for environment of type '~a'" msgstr "" -#: gnu/packages/bootstrap.scm:178 +#: gnu/packages/bootstrap.scm:188 #, scheme-format msgid "could not find bootstrap binary '~a' for system '~a'" msgstr "" -#: gnu/packages/bootstrap.scm:492 +#: gnu/packages/bootstrap.scm:578 msgid "Raw build system with direct store access" msgstr "" -#: gnu/packages/bootstrap.scm:500 +#: gnu/packages/bootstrap.scm:586 msgid "Pre-built Guile for bootstrapping purposes." msgstr "" -#: guix/build/utils.scm:822 +#: guix/build/utils.scm:823 #, scheme-format msgid "'~a~{ ~a~}' exited with status ~a; output follows:~%~%~{ ~a~%~}" msgstr "" @@ -1809,7 +1903,7 @@ msgid "~A: unrecognized option~%" msgstr "~A: nieznana opcja~%" #: guix/scripts.scm:169 guix/scripts/import.scm:140 -#: guix/scripts/system.scm:1370 +#: guix/scripts/system.scm:1379 #, scheme-format msgid "Did you mean @code{~a}?~%" msgstr "" @@ -1857,7 +1951,7 @@ msgstr "" #: guix/scripts/build.scm:154 guix/scripts/search.scm:42 #: guix/scripts/show.scm:41 guix/scripts/lint.scm:112 guix/scripts/edit.scm:48 #: guix/scripts/size.scm:246 guix/scripts/graph.scm:553 -#: guix/scripts/repl.scm:80 guix/scripts/style.scm:500 +#: guix/scripts/repl.scm:80 guix/scripts/style.scm:795 msgid "" "\n" " -L, --load-path=DIR prepend DIR to the package module search path" @@ -2010,7 +2104,7 @@ msgid "" " -s, --system=SYSTEM attempt to build for SYSTEM--e.g., \"i686-linux\"" msgstr "" -#: guix/scripts/build.scm:357 guix/scripts/system.scm:1023 +#: guix/scripts/build.scm:357 guix/scripts/system.scm:1026 #: guix/scripts/pack.scm:1329 guix/scripts/archive.scm:97 msgid "" "\n" @@ -2043,13 +2137,13 @@ msgid "" " as a garbage collector root" msgstr "" -#: guix/scripts/build.scm:368 guix/scripts/package.scm:486 +#: guix/scripts/build.scm:368 guix/scripts/package.scm:488 #: guix/scripts/install.scm:37 guix/scripts/remove.scm:36 #: guix/scripts/upgrade.scm:39 guix/scripts/pull.scm:117 -#: guix/scripts/system.scm:1025 guix/scripts/copy.scm:122 -#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:60 +#: guix/scripts/system.scm:1028 guix/scripts/copy.scm:122 +#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:66 #: guix/scripts/archive.scm:99 guix/scripts/environment.scm:123 -#: guix/scripts/home.scm:94 +#: guix/scripts/home.scm:98 msgid "" "\n" " -v, --verbosity=LEVEL use the given verbosity LEVEL" @@ -2068,59 +2162,59 @@ msgid "" msgstr "" #: guix/scripts/build.scm:379 guix/scripts/download.scm:104 -#: guix/scripts/package.scm:504 guix/scripts/install.scm:44 +#: guix/scripts/package.scm:506 guix/scripts/install.scm:44 #: guix/scripts/remove.scm:41 guix/scripts/upgrade.scm:48 #: guix/scripts/search.scm:37 guix/scripts/show.scm:36 guix/scripts/gc.scm:88 #: guix/scripts/git.scm:34 guix/scripts/git/authenticate.scm:110 #: guix/scripts/hash.scm:98 guix/scripts/import.scm:98 #: guix/scripts/import/minetest.scm:46 guix/scripts/import/cran.scm:49 #: guix/scripts/pull.scm:125 guix/scripts/substitute.scm:250 -#: guix/scripts/system.scm:1032 guix/scripts/lint.scm:115 +#: guix/scripts/system.scm:1035 guix/scripts/lint.scm:115 #: guix/scripts/publish.scm:119 guix/scripts/edit.scm:51 #: guix/scripts/size.scm:249 guix/scripts/graph.scm:558 #: guix/scripts/challenge.scm:430 guix/scripts/copy.scm:127 #: guix/scripts/pack.scm:1357 guix/scripts/weather.scm:336 #: guix/scripts/describe.scm:96 guix/scripts/processes.scm:301 -#: guix/scripts/deploy.scm:55 guix/scripts/container.scm:35 +#: guix/scripts/deploy.scm:58 guix/scripts/container.scm:35 #: guix/scripts/container/exec.scm:43 guix/scripts/archive.scm:106 -#: guix/scripts/environment.scm:149 guix/scripts/home.scm:97 +#: guix/scripts/environment.scm:149 guix/scripts/home.scm:101 #: guix/scripts/time-machine.scm:67 guix/scripts/import/cpan.scm:44 #: guix/scripts/import/crate.scm:50 guix/scripts/import/egg.scm:45 #: guix/scripts/import/gem.scm:46 guix/scripts/import/gnu.scm:50 #: guix/scripts/import/go.scm:50 guix/scripts/import/json.scm:52 #: guix/scripts/import/opam.scm:45 guix/scripts/import/pypi.scm:46 #: guix/scripts/import/texlive.scm:45 guix/scripts/refresh.scm:187 -#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:67 -#: guix/scripts/style.scm:509 +#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:69 +#: guix/scripts/style.scm:804 msgid "" "\n" " -h, --help display this help and exit" msgstr "" #: guix/scripts/build.scm:381 guix/scripts/download.scm:106 -#: guix/scripts/package.scm:506 guix/scripts/install.scm:46 +#: guix/scripts/package.scm:508 guix/scripts/install.scm:46 #: guix/scripts/remove.scm:43 guix/scripts/upgrade.scm:50 #: guix/scripts/search.scm:39 guix/scripts/show.scm:38 guix/scripts/gc.scm:90 #: guix/scripts/git.scm:36 guix/scripts/git/authenticate.scm:112 #: guix/scripts/hash.scm:100 guix/scripts/import.scm:100 #: guix/scripts/import/minetest.scm:50 guix/scripts/import/cran.scm:55 #: guix/scripts/pull.scm:127 guix/scripts/substitute.scm:252 -#: guix/scripts/system.scm:1034 guix/scripts/lint.scm:119 +#: guix/scripts/system.scm:1037 guix/scripts/lint.scm:119 #: guix/scripts/publish.scm:121 guix/scripts/edit.scm:53 #: guix/scripts/size.scm:251 guix/scripts/graph.scm:560 #: guix/scripts/challenge.scm:432 guix/scripts/copy.scm:129 #: guix/scripts/pack.scm:1359 guix/scripts/weather.scm:338 #: guix/scripts/describe.scm:98 guix/scripts/processes.scm:303 -#: guix/scripts/deploy.scm:57 guix/scripts/container.scm:37 +#: guix/scripts/deploy.scm:60 guix/scripts/container.scm:37 #: guix/scripts/container/exec.scm:45 guix/scripts/archive.scm:108 -#: guix/scripts/environment.scm:151 guix/scripts/home.scm:99 +#: guix/scripts/environment.scm:151 guix/scripts/home.scm:103 #: guix/scripts/time-machine.scm:69 guix/scripts/import/cpan.scm:46 #: guix/scripts/import/crate.scm:52 guix/scripts/import/egg.scm:49 #: guix/scripts/import/gem.scm:48 guix/scripts/import/gnu.scm:52 #: guix/scripts/import/json.scm:54 guix/scripts/import/opam.scm:52 #: guix/scripts/import/pypi.scm:50 guix/scripts/import/texlive.scm:47 #: guix/scripts/refresh.scm:189 guix/scripts/repl.scm:85 -#: guix/scripts/shell.scm:69 guix/scripts/style.scm:511 +#: guix/scripts/shell.scm:71 guix/scripts/style.scm:806 msgid "" "\n" " -V, --version display version information and exit" @@ -2359,164 +2453,164 @@ msgstr "" msgid "\"bash-minimal\" should be in 'inputs' when '~a' is used" msgstr "" -#: guix/lint.scm:616 +#: guix/lint.scm:614 msgid "no period allowed at the end of the synopsis" msgstr "" -#: guix/lint.scm:630 +#: guix/lint.scm:628 msgid "no article allowed at the beginning of the synopsis" msgstr "" -#: guix/lint.scm:639 +#: guix/lint.scm:637 msgid "synopsis should be less than 80 characters long" msgstr "" -#: guix/lint.scm:648 +#: guix/lint.scm:646 msgid "synopsis should start with an upper-case letter or digit" msgstr "" -#: guix/lint.scm:656 +#: guix/lint.scm:654 msgid "synopsis should not start with the package name" msgstr "" -#: guix/lint.scm:670 +#: guix/lint.scm:668 msgid "Texinfo markup in synopsis is invalid" msgstr "" -#: guix/lint.scm:678 +#: guix/lint.scm:676 msgid "synopsis contains trailing whitespace" msgstr "" -#: guix/lint.scm:695 +#: guix/lint.scm:693 msgid "synopsis should not be empty" msgstr "" -#: guix/lint.scm:705 +#: guix/lint.scm:703 #, scheme-format msgid "invalid synopsis: ~s" msgstr "" -#: guix/lint.scm:805 +#: guix/lint.scm:803 #, scheme-format msgid "~a: HTTP GET error for ~a: ~a (~s)~%" msgstr "" -#: guix/lint.scm:815 +#: guix/lint.scm:813 #, fuzzy, scheme-format msgid "~a: host lookup failure: ~a~%" msgstr "~a: pobieranie nie powiodło się~%" -#: guix/lint.scm:820 +#: guix/lint.scm:818 #, scheme-format msgid "~a: TLS certificate error: ~a" msgstr "" -#: guix/lint.scm:825 +#: guix/lint.scm:823 #, scheme-format msgid "~a: TLS error in '~a': ~a~%" msgstr "" -#: guix/lint.scm:836 guix/ui.scm:820 guix/scripts/offload.scm:194 +#: guix/lint.scm:834 guix/ui.scm:820 guix/scripts/offload.scm:194 #, scheme-format msgid "~a: ~a~%" msgstr "~a: ~a~%" -#: guix/lint.scm:868 +#: guix/lint.scm:866 #, scheme-format msgid "URI ~a returned suspiciously small file (~a bytes)" msgstr "" -#: guix/lint.scm:877 +#: guix/lint.scm:875 #, scheme-format msgid "permanent redirect from ~a to ~a" msgstr "" -#: guix/lint.scm:883 +#: guix/lint.scm:881 #, scheme-format msgid "invalid permanent redirect from ~a" msgstr "" -#: guix/lint.scm:889 guix/lint.scm:899 +#: guix/lint.scm:887 guix/lint.scm:897 #, scheme-format msgid "URI ~a not reachable: ~a (~s)" msgstr "" -#: guix/lint.scm:905 +#: guix/lint.scm:903 #, scheme-format msgid "URI ~a domain not found: ~a" msgstr "" -#: guix/lint.scm:911 +#: guix/lint.scm:909 #, scheme-format msgid "URI ~a unreachable: ~a" msgstr "" -#: guix/lint.scm:919 +#: guix/lint.scm:917 #, scheme-format msgid "TLS certificate error: ~a" msgstr "" -#: guix/lint.scm:946 +#: guix/lint.scm:944 msgid "invalid value for home page" msgstr "nieprawidłowa wartość dla strony domowej" -#: guix/lint.scm:951 +#: guix/lint.scm:949 #, scheme-format msgid "invalid home page URL: ~s" msgstr "nieprawidłowy adres strony domowej: ~s" -#: guix/lint.scm:988 +#: guix/lint.scm:986 msgid "file names of patches should start with the package name" msgstr "" -#: guix/lint.scm:1008 +#: guix/lint.scm:1006 #, scheme-format msgid "~a: file name is too long, which may break 'make dist'" msgstr "" -#: guix/lint.scm:1029 +#: guix/lint.scm:1027 #, scheme-format msgid "~a: empty patch" msgstr "" -#: guix/lint.scm:1038 +#: guix/lint.scm:1036 #, scheme-format msgid "~a: patch lacks comment and upstream status" msgstr "" -#: guix/lint.scm:1099 +#: guix/lint.scm:1097 #, scheme-format msgid "proposed synopsis: ~s~%" msgstr "" -#: guix/lint.scm:1113 +#: guix/lint.scm:1111 #, scheme-format msgid "proposed description:~% \"~a\"~%" msgstr "" -#: guix/lint.scm:1164 +#: guix/lint.scm:1162 msgid "all the source URIs are unreachable:" msgstr "" -#: guix/lint.scm:1193 +#: guix/lint.scm:1191 msgid "the source file name should contain the package name" msgstr "" -#: guix/lint.scm:1205 +#: guix/lint.scm:1203 msgid "the source URI should not be an autogenerated tarball" msgstr "" -#: guix/lint.scm:1229 +#: guix/lint.scm:1227 #, scheme-format msgid "URL should be 'mirror://~a/~a'" msgstr "" -#: guix/lint.scm:1269 +#: guix/lint.scm:1267 #, fuzzy, scheme-format msgid "while accessing '~a'" msgstr "instalacja tłumaczeń nie powiodła się: ~a~%" -#: guix/lint.scm:1276 +#: guix/lint.scm:1274 #, scheme-format msgid "URL should be '~a'" msgstr "" @@ -2524,68 +2618,68 @@ msgstr "" #. TRANSLATORS: check and #:tests? are a #. Scheme symbol and keyword respectively #. and should not be translated. -#: guix/lint.scm:1304 +#: guix/lint.scm:1302 msgid "the 'check' phase should respect #:tests?" msgstr "" -#: guix/lint.scm:1322 guix/lint.scm:1333 guix/lint.scm:1341 +#: guix/lint.scm:1320 guix/lint.scm:1331 guix/lint.scm:1339 #, scheme-format msgid "failed to create ~a derivation: ~a" msgstr "" -#: guix/lint.scm:1327 +#: guix/lint.scm:1325 #, scheme-format msgid "failed to create ~a derivation: ~s" msgstr "" -#: guix/lint.scm:1379 +#: guix/lint.scm:1377 #, scheme-format msgid "propagated inputs ~a and ~a collide" msgstr "" -#: guix/lint.scm:1403 +#: guix/lint.scm:1401 msgid "invalid license field" msgstr "nieprawidłowe pole licencji" -#: guix/lint.scm:1410 +#: guix/lint.scm:1408 msgid "while retrieving CVE vulnerabilities" msgstr "" -#: guix/lint.scm:1453 +#: guix/lint.scm:1451 #, scheme-format msgid "probably vulnerable to ~a" msgstr "" -#: guix/lint.scm:1461 +#: guix/lint.scm:1459 #, scheme-format msgid "no updater for ~a" msgstr "" -#: guix/lint.scm:1466 guix/lint.scm:1641 +#: guix/lint.scm:1464 guix/lint.scm:1639 #, scheme-format msgid "while retrieving upstream info for '~a'" msgstr "" -#: guix/lint.scm:1475 +#: guix/lint.scm:1473 #, scheme-format msgid "can be upgraded to ~a" msgstr "" -#: guix/lint.scm:1481 +#: guix/lint.scm:1479 #, scheme-format msgid "updater '~a' failed to find upstream releases" msgstr "" -#: guix/lint.scm:1508 +#: guix/lint.scm:1506 #, fuzzy, scheme-format msgid "failed to access Disarchive database at ~a" msgstr "instalacja tłumaczeń nie powiodła się: ~a~%" -#: guix/lint.scm:1535 +#: guix/lint.scm:1533 msgid "Software Heritage rate limit reached; try again later" msgstr "" -#: guix/lint.scm:1539 +#: guix/lint.scm:1537 #, scheme-format msgid "'~a' returned ~a" msgstr "" @@ -2593,162 +2687,162 @@ msgstr "" #. TRANSLATORS: "Software Heritage" is a proper noun #. that must remain untranslated. See #. . -#: guix/lint.scm:1578 +#: guix/lint.scm:1576 msgid "scheduled Software Heritage archival" msgstr "" -#: guix/lint.scm:1584 +#: guix/lint.scm:1582 msgid "archival rate limit exceeded; try again later" msgstr "" -#: guix/lint.scm:1605 +#: guix/lint.scm:1603 msgid "source not archived on Software Heritage and missing from the Disarchive database" msgstr "" -#: guix/lint.scm:1615 +#: guix/lint.scm:1613 #, scheme-format msgid "Disarchive entry refers to non-existent SWH directory '~a'" msgstr "" -#: guix/lint.scm:1624 +#: guix/lint.scm:1622 msgid "unsupported source type" msgstr "" -#: guix/lint.scm:1633 +#: guix/lint.scm:1631 msgid "while connecting to Software Heritage" msgstr "" -#: guix/lint.scm:1650 +#: guix/lint.scm:1648 #, scheme-format msgid "ahead of Stackage LTS version ~a" msgstr "" -#: guix/lint.scm:1667 +#: guix/lint.scm:1665 #, scheme-format msgid "tabulation on line ~a, column ~a" msgstr "" -#: guix/lint.scm:1679 +#: guix/lint.scm:1677 #, scheme-format msgid "trailing white space on line ~a" msgstr "" -#: guix/lint.scm:1693 +#: guix/lint.scm:1691 #, scheme-format msgid "line ~a is way too long (~a characters)" msgstr "" -#: guix/lint.scm:1707 +#: guix/lint.scm:1705 msgid "parentheses feel lonely, move to the previous or next line" msgstr "" -#: guix/lint.scm:1784 +#: guix/lint.scm:1782 msgid "source file not found" msgstr "" -#: guix/lint.scm:1796 +#: guix/lint.scm:1794 msgid "Validate package names" msgstr "" -#: guix/lint.scm:1800 +#: guix/lint.scm:1798 msgid "Check if tests are explicitly enabled" msgstr "" -#: guix/lint.scm:1804 +#: guix/lint.scm:1802 msgid "Validate package descriptions" msgstr "" -#: guix/lint.scm:1808 +#: guix/lint.scm:1806 msgid "Identify inputs that should be native inputs" msgstr "" -#: guix/lint.scm:1812 +#: guix/lint.scm:1810 msgid "Identify inputs that shouldn't be inputs at all" msgstr "" -#: guix/lint.scm:1816 +#: guix/lint.scm:1814 msgid "Identify input labels that do not match package names" msgstr "" -#: guix/lint.scm:1820 +#: guix/lint.scm:1818 msgid "Make sure 'wrap-program' can finds its interpreter." msgstr "" #. TRANSLATORS: is the name of a data type and must not be #. translated. -#: guix/lint.scm:1826 +#: guix/lint.scm:1824 msgid "Make sure the 'license' field is a or a list thereof" msgstr "" -#: guix/lint.scm:1831 +#: guix/lint.scm:1829 msgid "Make sure tests are only run when requested" msgstr "" -#: guix/lint.scm:1835 +#: guix/lint.scm:1833 msgid "Suggest 'mirror://' URLs" msgstr "" -#: guix/lint.scm:1839 +#: guix/lint.scm:1837 msgid "Validate file names of sources" msgstr "" -#: guix/lint.scm:1843 +#: guix/lint.scm:1841 msgid "Check for autogenerated tarballs" msgstr "" -#: guix/lint.scm:1847 +#: guix/lint.scm:1845 msgid "Report failure to compile a package to a derivation" msgstr "" -#: guix/lint.scm:1852 +#: guix/lint.scm:1850 msgid "Report collisions that would occur due to propagated inputs" msgstr "" -#: guix/lint.scm:1857 +#: guix/lint.scm:1855 msgid "Validate file names and availability of patches" msgstr "" -#: guix/lint.scm:1861 +#: guix/lint.scm:1859 msgid "Validate patch headers" msgstr "" -#: guix/lint.scm:1865 +#: guix/lint.scm:1863 msgid "Look for formatting issues in the source" msgstr "" -#: guix/lint.scm:1872 +#: guix/lint.scm:1870 msgid "Validate package synopses" msgstr "" -#: guix/lint.scm:1876 +#: guix/lint.scm:1874 msgid "Validate synopsis & description of GNU packages" msgstr "" -#: guix/lint.scm:1880 +#: guix/lint.scm:1878 msgid "Validate home-page URLs" msgstr "" -#: guix/lint.scm:1884 +#: guix/lint.scm:1882 msgid "Validate source URLs" msgstr "" -#: guix/lint.scm:1888 +#: guix/lint.scm:1886 msgid "Suggest GitHub URLs" msgstr "" -#: guix/lint.scm:1892 +#: guix/lint.scm:1890 msgid "Check the Common Vulnerabilities and Exposures (CVE) database" msgstr "" -#: guix/lint.scm:1897 +#: guix/lint.scm:1895 msgid "Check the package for new upstream releases" msgstr "" -#: guix/lint.scm:1901 +#: guix/lint.scm:1899 msgid "Ensure source code archival on Software Heritage" msgstr "" -#: guix/lint.scm:1905 +#: guix/lint.scm:1903 msgid "Ensure Haskell packages use Stackage LTS versions" msgstr "" @@ -2800,7 +2894,7 @@ msgstr "" msgid "~a: unknown hash algorithm~%" msgstr "~A: nieznany pakiet~%" -#: guix/scripts/download.scm:171 guix/scripts/package.scm:1087 +#: guix/scripts/download.scm:171 guix/scripts/package.scm:1090 #: guix/scripts/pull.scm:758 guix/scripts/publish.scm:1260 #: guix/scripts/discover.scm:136 guix/scripts/time-machine.scm:123 #, scheme-format @@ -2832,17 +2926,17 @@ msgstr "" msgid "no matching generation~%" msgstr "" -#: guix/scripts/package.scm:159 +#: guix/scripts/package.scm:161 #, scheme-format msgid "nothing to be done~%" msgstr "nie ma nic do zrobienia~%" -#: guix/scripts/package.scm:260 +#: guix/scripts/package.scm:262 #, fuzzy, scheme-format msgid "package '~a' no longer exists~%" msgstr "profil '~a' nie istnieje~%" -#: guix/scripts/package.scm:315 +#: guix/scripts/package.scm:317 #, scheme-format msgid "" "Consider setting the necessary environment\n" @@ -2856,7 +2950,7 @@ msgid "" "Alternately, see @command{guix package --search-paths -p ~s}." msgstr "" -#: guix/scripts/package.scm:361 +#: guix/scripts/package.scm:363 msgid "" ";; This \"manifest\" file can be passed to 'guix package -m' to reproduce\n" ";; the content of your profile. This is \"symbolic\": it only specifies\n" @@ -2865,44 +2959,44 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/package.scm:393 +#: guix/scripts/package.scm:395 #, scheme-format msgid "no provenance information for this profile~%" msgstr "" -#: guix/scripts/package.scm:395 +#: guix/scripts/package.scm:397 msgid "" ";; This channel file can be passed to 'guix pull -C' or to\n" ";; 'guix time-machine -C' to obtain the Guix revision that was\n" ";; used to populate this profile.\n" msgstr "" -#: guix/scripts/package.scm:407 +#: guix/scripts/package.scm:409 #, scheme-format msgid ";; Note: these other commits were also used to install some of the packages in this profile:~%" msgstr "" -#: guix/scripts/package.scm:437 +#: guix/scripts/package.scm:439 msgid "" "Usage: guix package [OPTION]...\n" "Install, remove, or upgrade packages in a single transaction.\n" msgstr "" -#: guix/scripts/package.scm:439 +#: guix/scripts/package.scm:441 msgid "" "\n" " -i, --install PACKAGE ...\n" " install PACKAGEs" msgstr "" -#: guix/scripts/package.scm:442 +#: guix/scripts/package.scm:444 msgid "" "\n" " -e, --install-from-expression=EXP\n" " install the package EXP evaluates to" msgstr "" -#: guix/scripts/package.scm:445 +#: guix/scripts/package.scm:447 msgid "" "\n" " -f, --install-from-file=FILE\n" @@ -2910,160 +3004,160 @@ msgid "" " evaluates to" msgstr "" -#: guix/scripts/package.scm:449 +#: guix/scripts/package.scm:451 msgid "" "\n" " -r, --remove PACKAGE ...\n" " remove PACKAGEs" msgstr "" -#: guix/scripts/package.scm:452 +#: guix/scripts/package.scm:454 msgid "" "\n" " -u, --upgrade[=REGEXP] upgrade all the installed packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:454 +#: guix/scripts/package.scm:456 msgid "" "\n" " -m, --manifest=FILE create a new profile generation with the manifest\n" " from FILE" msgstr "" -#: guix/scripts/package.scm:457 guix/scripts/upgrade.scm:41 +#: guix/scripts/package.scm:459 guix/scripts/upgrade.scm:41 msgid "" "\n" " --do-not-upgrade[=REGEXP] do not upgrade any packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:459 guix/scripts/pull.scm:107 +#: guix/scripts/package.scm:461 guix/scripts/pull.scm:107 msgid "" "\n" " --roll-back roll back to the previous generation" msgstr "" -#: guix/scripts/package.scm:461 +#: guix/scripts/package.scm:463 msgid "" "\n" " --search-paths[=KIND]\n" " display needed environment variable definitions" msgstr "" -#: guix/scripts/package.scm:464 guix/scripts/pull.scm:104 +#: guix/scripts/package.scm:466 guix/scripts/pull.scm:104 msgid "" "\n" " -l, --list-generations[=PATTERN]\n" " list generations matching PATTERN" msgstr "" -#: guix/scripts/package.scm:467 guix/scripts/pull.scm:109 +#: guix/scripts/package.scm:469 guix/scripts/pull.scm:109 msgid "" "\n" " -d, --delete-generations[=PATTERN]\n" " delete generations matching PATTERN" msgstr "" -#: guix/scripts/package.scm:470 guix/scripts/pull.scm:112 +#: guix/scripts/package.scm:472 guix/scripts/pull.scm:112 msgid "" "\n" " -S, --switch-generation=PATTERN\n" " switch to a generation matching PATTERN" msgstr "" -#: guix/scripts/package.scm:473 +#: guix/scripts/package.scm:475 msgid "" "\n" " --export-manifest print a manifest for the chosen profile" msgstr "" -#: guix/scripts/package.scm:475 +#: guix/scripts/package.scm:477 msgid "" "\n" " --export-channels print channels for the chosen profile" msgstr "" -#: guix/scripts/package.scm:477 guix/scripts/install.scm:34 +#: guix/scripts/package.scm:479 guix/scripts/install.scm:34 #: guix/scripts/remove.scm:33 guix/scripts/upgrade.scm:37 msgid "" "\n" " -p, --profile=PROFILE use PROFILE instead of the user's default profile" msgstr "" -#: guix/scripts/package.scm:479 +#: guix/scripts/package.scm:481 msgid "" "\n" " --list-profiles list the user's profiles" msgstr "" -#: guix/scripts/package.scm:482 +#: guix/scripts/package.scm:484 msgid "" "\n" " --allow-collisions do not treat collisions in the profile as an error" msgstr "" -#: guix/scripts/package.scm:484 +#: guix/scripts/package.scm:486 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" msgstr "" -#: guix/scripts/package.scm:489 +#: guix/scripts/package.scm:491 msgid "" "\n" " -s, --search=REGEXP search in synopsis and description using REGEXP" msgstr "" -#: guix/scripts/package.scm:491 +#: guix/scripts/package.scm:493 msgid "" "\n" " -I, --list-installed[=REGEXP]\n" " list installed packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:494 +#: guix/scripts/package.scm:496 msgid "" "\n" " -A, --list-available[=REGEXP]\n" " list available packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:497 +#: guix/scripts/package.scm:499 msgid "" "\n" " --show=PACKAGE show details about PACKAGE" msgstr "" -#: guix/scripts/package.scm:552 +#: guix/scripts/package.scm:554 #, scheme-format msgid "upgrade regexp '~a' looks like a command-line option~%" msgstr "" -#: guix/scripts/package.scm:555 +#: guix/scripts/package.scm:557 #, scheme-format msgid "is this intended?~%" msgstr "" -#: guix/scripts/package.scm:605 +#: guix/scripts/package.scm:607 #, scheme-format msgid "~a: unsupported kind of search path~%" msgstr "" -#: guix/scripts/package.scm:739 +#: guix/scripts/package.scm:741 #, scheme-format msgid "cannot install non-package object: ~s~%" msgstr "" -#: guix/scripts/package.scm:918 +#: guix/scripts/package.scm:920 #, fuzzy, scheme-format msgid "~a~@[@~a~]: package not found~%" msgstr "~a: nie znaleziono łatki" -#: guix/scripts/package.scm:965 guix/scripts/pull.scm:687 +#: guix/scripts/package.scm:967 guix/scripts/pull.scm:687 #, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "" -#: guix/scripts/package.scm:1060 +#: guix/scripts/package.scm:1062 #, fuzzy, scheme-format #| msgid "nothing to be done~%" msgid "nothing to do~%" @@ -3278,8 +3372,8 @@ msgstr "" "Użycie: guix POLECENIE ARGUMENTY...\n" "Podaj POLECENIE i jego ARGUMENTY.\n" -#: guix/scripts/git.scm:29 guix/scripts/system.scm:945 -#: guix/scripts/container.scm:30 guix/scripts/home.scm:69 +#: guix/scripts/git.scm:29 guix/scripts/system.scm:946 +#: guix/scripts/container.scm:30 guix/scripts/home.scm:70 msgid "The valid values for ACTION are:\n" msgstr "" @@ -3368,23 +3462,23 @@ msgid "" " -S, --serializer=TYPE compute the hash on FILE according to TYPE serialization" msgstr "" -#: guix/scripts/hash.scm:137 +#: guix/scripts/hash.scm:138 #, scheme-format -msgid "'--recursive' is deprecated, use '--serializer' instead~%" +msgid "'--recursive' is deprecated, use '--serializer=nar' instead~%" msgstr "" -#: guix/scripts/hash.scm:152 +#: guix/scripts/hash.scm:153 #, scheme-format msgid "unsupported serializer type: ~a~%" msgstr "" -#: guix/scripts/hash.scm:201 +#: guix/scripts/hash.scm:202 #, fuzzy, scheme-format #| msgid "~a: ~a~%" msgid "~a ~a~%" msgstr "~a: ~a~%" -#: guix/scripts/hash.scm:210 +#: guix/scripts/hash.scm:211 #, fuzzy, scheme-format #| msgid "no command specified~%" msgid "no arguments specified~%" @@ -3445,9 +3539,9 @@ msgstr "~a: nieprawidłowa liczba~%" #: guix/scripts/import/minetest.scm:115 guix/scripts/import/cran.scm:120 #: guix/scripts/import/elpa.scm:110 guix/scripts/import/cpan.scm:87 #: guix/scripts/import/crate.scm:103 guix/scripts/import/egg.scm:106 -#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:121 +#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:122 #: guix/scripts/import/hackage.scm:158 guix/scripts/import/json.scm:97 -#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:104 +#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:105 #: guix/scripts/import/stackage.scm:130 guix/scripts/import/texlive.scm:88 #, scheme-format msgid "too few arguments~%" @@ -3456,10 +3550,10 @@ msgstr "za mało argumentów~%" #: guix/scripts/import/minetest.scm:117 guix/scripts/import/cran.scm:122 #: guix/scripts/import/elpa.scm:112 guix/scripts/import/cpan.scm:89 #: guix/scripts/import/crate.scm:105 guix/scripts/import/egg.scm:108 -#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:123 +#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:124 #: guix/scripts/import/hackage.scm:149 guix/scripts/import/hackage.scm:160 #: guix/scripts/import/json.scm:99 guix/scripts/import/opam.scm:113 -#: guix/scripts/import/pypi.scm:106 guix/scripts/import/stackage.scm:132 +#: guix/scripts/import/pypi.scm:107 guix/scripts/import/stackage.scm:132 #: guix/scripts/import/texlive.scm:90 #, scheme-format msgid "too many arguments~%" @@ -3483,7 +3577,7 @@ msgid "" " -s, --style=STYLE choose output style, either specification or variable" msgstr "" -#: guix/scripts/import/cran.scm:116 guix/scripts/import/texlive.scm:84 +#: guix/scripts/import/cran.scm:116 #, scheme-format msgid "failed to download description for package '~a'~%" msgstr "nie udało się pobrać opisu dla pakietu '~a'~%" @@ -3890,27 +3984,27 @@ msgstr "" msgid "the dependency graph of shepherd services" msgstr "" -#: guix/scripts/system.scm:482 guix/scripts/home.scm:453 +#: guix/scripts/system.scm:482 guix/scripts/home.scm:466 #, scheme-format msgid " repository URL: ~a~%" msgstr "" -#: guix/scripts/system.scm:484 guix/scripts/home.scm:455 +#: guix/scripts/system.scm:484 guix/scripts/home.scm:468 #, fuzzy, scheme-format msgid " branch: ~a~%" msgstr " jądro: ~a~%" -#: guix/scripts/system.scm:485 guix/scripts/home.scm:456 +#: guix/scripts/system.scm:485 guix/scripts/home.scm:469 #, scheme-format msgid " commit: ~a~%" msgstr "" -#: guix/scripts/system.scm:505 guix/scripts/home.scm:469 +#: guix/scripts/system.scm:505 guix/scripts/home.scm:482 #, scheme-format msgid " file name: ~a~%" msgstr " nazwa pliku: ~a~%" -#: guix/scripts/system.scm:506 guix/scripts/home.scm:470 +#: guix/scripts/system.scm:506 guix/scripts/home.scm:483 #, scheme-format msgid " canonical file name: ~a~%" msgstr " kanoniczna nazwa pliku: ~a~%" @@ -3951,12 +4045,12 @@ msgstr " etykieta: ~a~%" #. TRANSLATORS: Here "channel" is the same terminology as used in #. "guix describe" and "guix pull --channels". -#: guix/scripts/system.scm:536 guix/scripts/home.scm:476 +#: guix/scripts/system.scm:536 guix/scripts/home.scm:489 #, scheme-format msgid " channels:~%" msgstr " kanały:~%" -#: guix/scripts/system.scm:539 guix/scripts/home.scm:479 +#: guix/scripts/system.scm:539 guix/scripts/home.scm:492 #, scheme-format msgid " configuration file: ~a~%" msgstr " plik konfiguracji: ~a~%" @@ -4008,128 +4102,128 @@ msgstr "" msgid "Failing to do that may downgrade your system!~%" msgstr "" -#: guix/scripts/system.scm:754 guix/scripts/system.scm:863 +#: guix/scripts/system.scm:754 guix/scripts/system.scm:864 #, scheme-format msgid "bootloader successfully installed on '~a'~%" msgstr "" -#: guix/scripts/system.scm:856 +#: guix/scripts/system.scm:857 #, scheme-format msgid "activating system...~%" msgstr "uruchamianie systemu...~%" -#: guix/scripts/system.scm:867 +#: guix/scripts/system.scm:868 msgid "" "To complete the upgrade, run 'herd restart SERVICE' to stop,\n" "upgrade, and restart each service that was not automatically restarted.\n" msgstr "" -#: guix/scripts/system.scm:870 +#: guix/scripts/system.scm:871 msgid "Run 'herd status' to view the list of services on your system.\n" msgstr "" -#: guix/scripts/system.scm:874 +#: guix/scripts/system.scm:875 #, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "" -#: guix/scripts/system.scm:894 guix/scripts/graph.scm:437 +#: guix/scripts/system.scm:895 guix/scripts/graph.scm:437 #, fuzzy, scheme-format msgid "~a: unknown backend~%" msgstr "~A: nieznany pakiet~%" -#: guix/scripts/system.scm:931 +#: guix/scripts/system.scm:932 msgid "The available image types are:\n" msgstr "" -#: guix/scripts/system.scm:941 +#: guix/scripts/system.scm:942 msgid "" "Usage: guix system [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the operating system declared in FILE according to ACTION.\n" "Some ACTIONS support additional ARGS.\n" msgstr "" -#: guix/scripts/system.scm:947 +#: guix/scripts/system.scm:948 msgid " search search for existing service types\n" msgstr "" -#: guix/scripts/system.scm:949 +#: guix/scripts/system.scm:950 msgid " reconfigure switch to a new operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:951 +#: guix/scripts/system.scm:952 msgid " roll-back switch to the previous operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:953 +#: guix/scripts/system.scm:954 msgid " describe describe the current system\n" msgstr "" -#: guix/scripts/system.scm:955 +#: guix/scripts/system.scm:956 msgid " list-generations list the system generations\n" msgstr "" -#: guix/scripts/system.scm:957 +#: guix/scripts/system.scm:958 msgid " switch-generation switch to an existing operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:959 +#: guix/scripts/system.scm:960 msgid " delete-generations delete old system generations\n" msgstr "" -#: guix/scripts/system.scm:961 +#: guix/scripts/system.scm:962 msgid " build build the operating system without installing anything\n" msgstr "" -#: guix/scripts/system.scm:963 +#: guix/scripts/system.scm:964 msgid " container build a container that shares the host's store\n" msgstr "" -#: guix/scripts/system.scm:965 +#: guix/scripts/system.scm:966 msgid " vm build a virtual machine image that shares the host's store\n" msgstr "" -#: guix/scripts/system.scm:967 +#: guix/scripts/system.scm:968 msgid " image build a Guix System image\n" msgstr "" -#: guix/scripts/system.scm:969 +#: guix/scripts/system.scm:970 msgid " docker-image build a Docker image\n" msgstr "" -#: guix/scripts/system.scm:971 +#: guix/scripts/system.scm:972 msgid " init initialize a root file system to run GNU\n" msgstr "" -#: guix/scripts/system.scm:973 +#: guix/scripts/system.scm:974 msgid " extension-graph emit the service extension graph in Dot format\n" msgstr "" -#: guix/scripts/system.scm:975 +#: guix/scripts/system.scm:976 msgid " shepherd-graph emit the graph of shepherd services in Dot format\n" msgstr "" -#: guix/scripts/system.scm:979 +#: guix/scripts/system.scm:980 msgid "" "\n" " -d, --derivation return the derivation of the given system" msgstr "" -#: guix/scripts/system.scm:981 +#: guix/scripts/system.scm:982 msgid "" "\n" " -e, --expression=EXPR consider the operating-system EXPR evaluates to\n" " instead of reading FILE, when applicable" msgstr "" -#: guix/scripts/system.scm:984 +#: guix/scripts/system.scm:985 guix/scripts/home.scm:95 msgid "" "\n" " --allow-downgrades for 'reconfigure', allow downgrades to earlier\n" " channel revisions" msgstr "" -#: guix/scripts/system.scm:987 +#: guix/scripts/system.scm:988 msgid "" "\n" " --on-error=STRATEGY\n" @@ -4137,69 +4231,75 @@ msgid "" " or debug) when an error occurs while reading FILE" msgstr "" -#: guix/scripts/system.scm:991 +#: guix/scripts/system.scm:992 msgid "" "\n" " --list-image-types list available image types" msgstr "" -#: guix/scripts/system.scm:993 +#: guix/scripts/system.scm:994 msgid "" "\n" " -t, --image-type=TYPE for 'image', produce an image of TYPE" msgstr "" -#: guix/scripts/system.scm:995 +#: guix/scripts/system.scm:996 msgid "" "\n" " --image-size=SIZE for 'image', produce an image of SIZE" msgstr "" -#: guix/scripts/system.scm:997 +#: guix/scripts/system.scm:998 msgid "" "\n" " --no-bootloader for 'init', do not install a bootloader" msgstr "" -#: guix/scripts/system.scm:999 +#: guix/scripts/system.scm:1000 msgid "" "\n" " --volatile for 'image', make the root file system volatile" msgstr "" -#: guix/scripts/system.scm:1001 +#: guix/scripts/system.scm:1002 +msgid "" +"\n" +" --persistent for 'vm', make the root file system persistent" +msgstr "" + +#: guix/scripts/system.scm:1004 msgid "" "\n" " --label=LABEL for 'image', label disk image with LABEL" msgstr "" -#: guix/scripts/system.scm:1003 guix/scripts/pack.scm:1340 +#: guix/scripts/system.scm:1006 guix/scripts/pack.scm:1340 msgid "" "\n" " --save-provenance save provenance information" msgstr "" -#: guix/scripts/system.scm:1005 +#: guix/scripts/system.scm:1008 msgid "" "\n" " --share=SPEC for 'vm' and 'container', share host file system with\n" " read/write access according to SPEC" msgstr "" -#: guix/scripts/system.scm:1008 +#: guix/scripts/system.scm:1011 msgid "" "\n" " --expose=SPEC for 'vm' and 'container', expose host file system\n" " directory as read-only according to SPEC" msgstr "" -#: guix/scripts/system.scm:1011 +#: guix/scripts/system.scm:1014 msgid "" "\n" " -N, --network for 'container', allow containers to access the network" msgstr "" -#: guix/scripts/system.scm:1013 +#: guix/scripts/system.scm:1016 msgid "" "\n" " -r, --root=FILE for 'vm', 'image', 'container' and 'build',\n" @@ -4207,82 +4307,82 @@ msgid "" " register it as a garbage collector root" msgstr "" -#: guix/scripts/system.scm:1017 +#: guix/scripts/system.scm:1020 msgid "" "\n" " --full-boot for 'vm', make a full boot sequence" msgstr "" -#: guix/scripts/system.scm:1019 +#: guix/scripts/system.scm:1022 msgid "" "\n" " --no-graphic for 'vm', use the tty that we are started in for IO" msgstr "" -#: guix/scripts/system.scm:1021 +#: guix/scripts/system.scm:1024 msgid "" "\n" " --skip-checks skip file system and initrd module safety checks" msgstr "" -#: guix/scripts/system.scm:1028 +#: guix/scripts/system.scm:1031 msgid "" "\n" " --graph-backend=BACKEND\n" " use BACKEND for 'extension-graphs' and 'shepherd-graph'" msgstr "" -#: guix/scripts/system.scm:1180 +#: guix/scripts/system.scm:1187 #, scheme-format msgid "'~a' does not return an operating system or an image~%" msgstr "" -#: guix/scripts/system.scm:1204 guix/scripts/home.scm:216 +#: guix/scripts/system.scm:1211 guix/scripts/home.scm:230 #, scheme-format msgid "both file and expression cannot be specified~%" msgstr "" -#: guix/scripts/system.scm:1211 guix/scripts/home.scm:223 +#: guix/scripts/system.scm:1218 guix/scripts/home.scm:237 #, fuzzy, scheme-format msgid "no configuration specified~%" msgstr "nie podano pliku konfiguracji~%" -#: guix/scripts/system.scm:1319 guix/scripts/system.scm:1335 -#: guix/scripts/system.scm:1342 guix/scripts/system.scm:1348 -#: guix/scripts/home.scm:274 guix/scripts/home.scm:296 -#: guix/scripts/home.scm:301 guix/scripts/home.scm:307 -#: guix/scripts/home.scm:314 guix/scripts/import/gnu.scm:100 +#: guix/scripts/system.scm:1328 guix/scripts/system.scm:1344 +#: guix/scripts/system.scm:1351 guix/scripts/system.scm:1357 +#: guix/scripts/home.scm:287 guix/scripts/home.scm:309 +#: guix/scripts/home.scm:314 guix/scripts/home.scm:320 +#: guix/scripts/home.scm:327 guix/scripts/import/gnu.scm:100 #: guix/scripts/offload.scm:836 guix/scripts/offload.scm:848 #, scheme-format msgid "wrong number of arguments~%" msgstr "nieprawidłowa liczba argumentów~%" -#: guix/scripts/system.scm:1324 +#: guix/scripts/system.scm:1333 #, scheme-format msgid "no system generation, nothing to describe~%" msgstr "" -#: guix/scripts/system.scm:1367 guix/scripts/home.scm:337 +#: guix/scripts/system.scm:1376 guix/scripts/home.scm:350 #, scheme-format msgid "~a: unknown action~%" msgstr "" -#: guix/scripts/system.scm:1387 guix/scripts/home.scm:353 +#: guix/scripts/system.scm:1396 guix/scripts/home.scm:366 #, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "" -#: guix/scripts/system.scm:1392 +#: guix/scripts/system.scm:1401 #, scheme-format msgid "guix system: missing command name~%" msgstr "" -#: guix/scripts/system.scm:1394 +#: guix/scripts/system.scm:1403 #, scheme-format msgid "Try 'guix system --help' for more information.~%" msgstr "Wpisz 'guix system --help' aby uzyskać więcej informacji.~%" -#: guix/scripts/system/search.scm:93 guix/ui.scm:1541 guix/ui.scm:1559 +#: guix/scripts/system/search.scm:93 guix/ui.scm:1544 guix/ui.scm:1562 msgid "unknown" msgstr "nieznane" @@ -4677,7 +4777,7 @@ msgid "" msgstr "" #: guix/scripts/graph.scm:548 guix/scripts/pack.scm:1325 -#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:502 +#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:797 msgid "" "\n" " -e, --expression=EXPR consider the package EXPR evaluates to" @@ -5272,13 +5372,19 @@ msgid "" " -f, --format=FORMAT display results as normalized record sets" msgstr "" -#: guix/scripts/deploy.scm:51 +#: guix/scripts/deploy.scm:54 msgid "" "Usage: guix deploy [OPTION] FILE...\n" "Perform the deployment specified by FILE.\n" msgstr "" -#: guix/scripts/deploy.scm:108 +#: guix/scripts/deploy.scm:63 +msgid "" +"\n" +" -x, --execute execute the following command on all the machines" +msgstr "" + +#: guix/scripts/deploy.scm:117 #, scheme-format msgid "The following ~d machine will be deployed:~%" msgid_plural "The following ~d machines will be deployed:~%" @@ -5286,31 +5392,71 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: guix/scripts/deploy.scm:122 +#: guix/scripts/deploy.scm:131 #, fuzzy, scheme-format msgid "deploying to ~a...~%" msgstr "usuwanie ~a~%" -#: guix/scripts/deploy.scm:134 guix/scripts/deploy.scm:138 +#: guix/scripts/deploy.scm:143 guix/scripts/deploy.scm:147 #, fuzzy, scheme-format msgid "failed to deploy ~a: ~a~%" msgstr "instalacja tłumaczeń nie powiodła się: ~a~%" -#: guix/scripts/deploy.scm:146 +#: guix/scripts/deploy.scm:155 #, fuzzy, scheme-format msgid "rolling back ~a...~%" msgstr "rozpakowywanie '~a'...~%" -#: guix/scripts/deploy.scm:152 +#: guix/scripts/deploy.scm:161 #, scheme-format msgid "successfully deployed ~a~%" msgstr "" -#: guix/scripts/deploy.scm:167 +#: guix/scripts/deploy.scm:212 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command succeeded~%" +msgstr "guix: ~a: nie znaleziono polecenia~%" + +#: guix/scripts/deploy.scm:215 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command exited with code ~a~%" +msgstr "guix: ~a: nie znaleziono polecenia~%" + +#: guix/scripts/deploy.scm:218 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command stopped with signal ~a~%" +msgstr "guix: ~a: nie znaleziono polecenia~%" + +#: guix/scripts/deploy.scm:221 +#, fuzzy, scheme-format +#| msgid "~a: consider adding this input: ~a~%" +msgid "~a: command terminated with signal ~a~%" +msgstr "~a: rozważ dodanie tego elementu: ~a~%" + +#: guix/scripts/deploy.scm:225 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "command output on ~a:~%" +msgstr "guix: ~a: nie znaleziono polecenia~%" + +#: guix/scripts/deploy.scm:246 #, scheme-format msgid "missing deployment file argument~%" msgstr "" +#: guix/scripts/deploy.scm:249 +#, scheme-format +msgid "'--' was used by '-x' was not specified~%" +msgstr "" + +#: guix/scripts/deploy.scm:271 +#, scheme-format +msgid "'-x' specified but no command given~%" +msgstr "" + #: guix/gexp.scm:465 #, scheme-format msgid "resolving '~a' relative to current directory~%" @@ -5406,156 +5552,156 @@ msgstr "nie ma takiego procesu ~d~%" msgid "exec failed with status ~d~%" msgstr "" -#: guix/transformations.scm:185 guix/transformations.scm:253 +#: guix/transformations.scm:186 guix/transformations.scm:254 #, fuzzy, scheme-format msgid "invalid replacement specification: ~s" msgstr "nieprawidłowy opis: ~s" -#: guix/transformations.scm:234 +#: guix/transformations.scm:235 #, scheme-format msgid "the source of ~a is not a Git reference" msgstr "" -#: guix/transformations.scm:337 +#: guix/transformations.scm:338 #, scheme-format msgid "~a: invalid Git URL replacement specification" msgstr "" -#: guix/transformations.scm:415 +#: guix/transformations.scm:416 #, scheme-format msgid "~a: invalid toolchain replacement specification" msgstr "" -#: guix/transformations.scm:517 +#: guix/transformations.scm:518 #, fuzzy msgid "failed to determine which compiler is used" msgstr "nie udało się pobrać pakietu '~a'~%" -#: guix/transformations.scm:523 +#: guix/transformations.scm:524 #, fuzzy, scheme-format msgid "failed to determine whether ~a supports ~a" msgstr "nie udało się pobrać pakietu '~a'~%" -#: guix/transformations.scm:529 +#: guix/transformations.scm:530 #, scheme-format msgid "compiler ~a does not support micro-architecture ~a" msgstr "" -#: guix/transformations.scm:581 +#: guix/transformations.scm:582 #, fuzzy, scheme-format #| msgid "~a: ~a~%" msgid "tuning ~a for CPU ~a~%" msgstr "~a: ~a~%" -#: guix/transformations.scm:721 +#: guix/transformations.scm:722 #, fuzzy, scheme-format msgid "~a: invalid package patch specification" msgstr "nieprawidłowy opis: ~s" -#: guix/transformations.scm:744 +#: guix/transformations.scm:745 #, scheme-format msgid "could not determine latest upstream release of '~a'~%" msgstr "" -#: guix/transformations.scm:752 +#: guix/transformations.scm:753 #, scheme-format msgid "cannot authenticate source of '~a', version ~a~%" msgstr "" -#: guix/transformations.scm:833 +#: guix/transformations.scm:840 #, scheme-format msgid "building for ~a instead of ~a, so tuning cannot be guessed~%" msgstr "" -#: guix/transformations.scm:859 +#: guix/transformations.scm:866 #, scheme-format msgid "Available package transformation options:~%" msgstr "" -#: guix/transformations.scm:865 +#: guix/transformations.scm:872 msgid "" "\n" " --with-source=[PACKAGE=]SOURCE\n" " use SOURCE when building the corresponding package" msgstr "" -#: guix/transformations.scm:868 +#: guix/transformations.scm:875 msgid "" "\n" " --with-input=PACKAGE=REPLACEMENT\n" " replace dependency PACKAGE by REPLACEMENT" msgstr "" -#: guix/transformations.scm:871 +#: guix/transformations.scm:878 msgid "" "\n" " --with-graft=PACKAGE=REPLACEMENT\n" " graft REPLACEMENT on packages that refer to PACKAGE" msgstr "" -#: guix/transformations.scm:874 +#: guix/transformations.scm:881 msgid "" "\n" " --with-branch=PACKAGE=BRANCH\n" " build PACKAGE from the latest commit of BRANCH" msgstr "" -#: guix/transformations.scm:877 +#: guix/transformations.scm:884 msgid "" "\n" " --with-commit=PACKAGE=COMMIT\n" " build PACKAGE from COMMIT" msgstr "" -#: guix/transformations.scm:880 +#: guix/transformations.scm:887 msgid "" "\n" " --with-git-url=PACKAGE=URL\n" " build PACKAGE from the repository at URL" msgstr "" -#: guix/transformations.scm:883 +#: guix/transformations.scm:890 msgid "" "\n" " --with-patch=PACKAGE=FILE\n" " add FILE to the list of patches of PACKAGE" msgstr "" -#: guix/transformations.scm:886 +#: guix/transformations.scm:893 msgid "" "\n" " --with-latest=PACKAGE\n" " use the latest upstream release of PACKAGE" msgstr "" -#: guix/transformations.scm:889 +#: guix/transformations.scm:896 msgid "" "\n" " --with-c-toolchain=PACKAGE=TOOLCHAIN\n" " build PACKAGE and its dependents with TOOLCHAIN" msgstr "" -#: guix/transformations.scm:892 +#: guix/transformations.scm:899 msgid "" "\n" " --with-debug-info=PACKAGE\n" " build PACKAGE and preserve its debug info" msgstr "" -#: guix/transformations.scm:895 +#: guix/transformations.scm:902 msgid "" "\n" " --without-tests=PACKAGE\n" " build PACKAGE without running its tests" msgstr "" -#: guix/transformations.scm:901 +#: guix/transformations.scm:908 msgid "" "\n" " --help-transform list package transformation options not shown here" msgstr "" -#: guix/transformations.scm:950 +#: guix/transformations.scm:957 #, scheme-format msgid "transformation '~a' had no effect on ~a~%" msgstr "" @@ -6062,12 +6208,12 @@ msgstr[2] "" msgid "~a: invalid Texinfo markup~%" msgstr "~a: nieprawidłowa liczba~%" -#: guix/ui.scm:1873 +#: guix/ui.scm:1876 #, scheme-format msgid "invalid syntax: ~a~%" msgstr "nieprawidłowa składnia: ~a~%" -#: guix/ui.scm:1882 +#: guix/ui.scm:1885 #, scheme-format msgid "Generation ~a\t~a" msgstr "" @@ -6077,7 +6223,7 @@ msgstr "" #. usual way of presenting dates in your locale. #. See https://www.gnu.org/software/guile/manual/html_node/SRFI_002d19-Date-to-string.html #. for details. -#: guix/ui.scm:1892 +#: guix/ui.scm:1895 #, scheme-format msgid "~b ~d ~Y ~T" msgstr "" @@ -6085,37 +6231,37 @@ msgstr "" #. TRANSLATORS: The word "current" here is an adjective for #. "Generation", as in "current generation". Use the appropriate #. gender where applicable. -#: guix/ui.scm:1898 +#: guix/ui.scm:1901 #, scheme-format msgid "~a\t(current)~%" msgstr "" -#: guix/ui.scm:1932 +#: guix/ui.scm:1935 #, fuzzy, scheme-format msgid "cannot lock profile ~a: ~a~%" msgstr "brak dostępu do `~a': ~a~%" -#: guix/ui.scm:1934 +#: guix/ui.scm:1937 #, fuzzy, scheme-format msgid "profile ~a is locked by another process~%" msgstr "profil '~a' nie istnieje~%" -#: guix/ui.scm:1963 +#: guix/ui.scm:1966 #, scheme-format msgid "switched from generation ~a to ~a~%" msgstr "" -#: guix/ui.scm:1979 +#: guix/ui.scm:1982 #, scheme-format msgid "deleting ~a~%" msgstr "usuwanie ~a~%" -#: guix/ui.scm:2010 +#: guix/ui.scm:2013 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "Wpisz `guix --help' aby dowiedzieć się więcej.~%" -#: guix/ui.scm:2102 +#: guix/ui.scm:2105 #, fuzzy #| msgid "" #| "Usage: guix COMMAND ARGS...\n" @@ -6127,7 +6273,7 @@ msgstr "" "Użycie: guix POLECENIE ARGUMENTY...\n" "Podaj POLECENIE i jego ARGUMENTY.\n" -#: guix/ui.scm:2105 +#: guix/ui.scm:2108 #, fuzzy #| msgid "" #| "\n" @@ -6139,7 +6285,7 @@ msgstr "" "\n" " -h, --help pokaż pomoc i wyjdź" -#: guix/ui.scm:2107 +#: guix/ui.scm:2110 #, fuzzy #| msgid "" #| "\n" @@ -6151,26 +6297,26 @@ msgstr "" "\n" " -V, --version pokaż informacje o wersji i wyjdź" -#: guix/ui.scm:2112 +#: guix/ui.scm:2115 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "POLECENIE musi być jednym z poniżej podanych:\n" -#: guix/ui.scm:2154 +#: guix/ui.scm:2157 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "guix: ~a: nie znaleziono polecenia~%" -#: guix/ui.scm:2156 +#: guix/ui.scm:2159 #, scheme-format msgid "Did you mean @code{~a}?" msgstr "" -#: guix/ui.scm:2190 +#: guix/ui.scm:2193 #, scheme-format msgid "guix: missing command name~%" msgstr "guix: brakująca nazwa polecenia~%" -#: guix/ui.scm:2198 +#: guix/ui.scm:2201 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "guix: nieznana opcja '~a'~%" @@ -6500,22 +6646,22 @@ msgstr "" msgid "unsupported manifest format" msgstr "" -#: guix/profiles.scm:2242 +#: guix/profiles.scm:2247 #, fuzzy, scheme-format msgid "while creating directory `~a': ~a" msgstr "błąd: podczas tworzenia katalogu `~a': ~a~%" -#: guix/profiles.scm:2247 +#: guix/profiles.scm:2252 #, scheme-format msgid "Please create the @file{~a} directory, with you as the owner." msgstr "" -#: guix/profiles.scm:2256 +#: guix/profiles.scm:2261 #, fuzzy, scheme-format msgid "directory `~a' is not owned by you" msgstr "błąd: katalog `~a' nie należy do ciebie~%" -#: guix/profiles.scm:2260 +#: guix/profiles.scm:2265 #, scheme-format msgid "Please change the owner of @file{~a} to user ~s." msgstr "" @@ -7137,11 +7283,16 @@ msgstr "" msgid "'--profile' cannot be used with package options~%" msgstr "" -#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:275 +#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:261 #, scheme-format msgid "no packages specified; creating an empty environment~%" msgstr "" +#: guix/scripts/environment.scm:979 +#, scheme-format +msgid "'--check' is unnecessary when using '--container'; doing nothing~%" +msgstr "" + #: guix/scripts/home/import.scm:179 msgid "" ";; This \"home-environment\" file can be passed to 'guix home reconfigure'\n" @@ -7151,91 +7302,91 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/home.scm:65 +#: guix/scripts/home.scm:66 msgid "" "Usage: guix home [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the home environment declared in FILE according to ACTION.\n" "Some ACTIONS support additional ARGS.\n" msgstr "" -#: guix/scripts/home.scm:71 +#: guix/scripts/home.scm:72 msgid " search search for existing service types\n" msgstr "" -#: guix/scripts/home.scm:73 +#: guix/scripts/home.scm:74 msgid " reconfigure switch to a new home environment configuration\n" msgstr "" -#: guix/scripts/home.scm:75 +#: guix/scripts/home.scm:76 msgid " roll-back switch to the previous home environment configuration\n" msgstr "" -#: guix/scripts/home.scm:77 +#: guix/scripts/home.scm:78 msgid " describe describe the current home environment\n" msgstr "" -#: guix/scripts/home.scm:79 +#: guix/scripts/home.scm:80 msgid " list-generations list the home environment generations\n" msgstr "" -#: guix/scripts/home.scm:81 +#: guix/scripts/home.scm:82 msgid " switch-generation switch to an existing home environment configuration\n" msgstr "" -#: guix/scripts/home.scm:83 +#: guix/scripts/home.scm:84 msgid " delete-generations delete old home environment generations\n" msgstr "" -#: guix/scripts/home.scm:85 +#: guix/scripts/home.scm:86 msgid " build build the home environment without installing anything\n" msgstr "" -#: guix/scripts/home.scm:87 +#: guix/scripts/home.scm:88 msgid " import generates a home environment definition from dotfiles\n" msgstr "" -#: guix/scripts/home.scm:91 +#: guix/scripts/home.scm:92 msgid "" "\n" " -e, --expression=EXPR consider the home-environment EXPR evaluates to\n" " instead of reading FILE, when applicable" msgstr "" -#: guix/scripts/home.scm:196 +#: guix/scripts/home.scm:210 #, scheme-format msgid "'~a' does not return a home environment ~%" msgstr "" -#: guix/scripts/home.scm:280 +#: guix/scripts/home.scm:293 #, scheme-format msgid "'~a' populated with all the Home configuration files~%" msgstr "" -#: guix/scripts/home.scm:282 +#: guix/scripts/home.scm:295 #, scheme-format msgid "" "Run @command{guix home reconfigure ~a/home-configuration.scm} to effectively\n" "deploy the home environment described by these files.\n" msgstr "" -#: guix/scripts/home.scm:289 +#: guix/scripts/home.scm:302 #, scheme-format msgid "no home environment generation, nothing to describe~%" msgstr "" -#: guix/scripts/home.scm:358 +#: guix/scripts/home.scm:371 #, fuzzy, scheme-format #| msgid "guix: missing command name~%" msgid "guix home: missing command name~%" msgstr "guix: brakująca nazwa polecenia~%" -#: guix/scripts/home.scm:360 +#: guix/scripts/home.scm:373 #, fuzzy, scheme-format #| msgid "Try `guix --help' for more information.~%" msgid "Try 'guix home --help' for more information.~%" msgstr "Wpisz `guix --help' aby dowiedzieć się więcej.~%" -#: guix/scripts/home.scm:528 +#: guix/scripts/home.scm:541 #, scheme-format msgid "cannot switch to home environment generation '~a'~%" msgstr "" @@ -7272,7 +7423,7 @@ msgstr "" #: guix/scripts/import/cpan.scm:83 guix/scripts/import/crate.scm:97 #: guix/scripts/import/egg.scm:100 guix/scripts/import/gem.scm:98 -#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:100 +#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:101 #, fuzzy, scheme-format msgid "failed to download meta-data for package '~a'~%" msgstr "nie udało się pobrać opisu dla pakietu '~a'~%" @@ -7347,7 +7498,7 @@ msgid "" " --pin-versions use the exact versions of a module's dependencies" msgstr "" -#: guix/scripts/import/go.scm:117 +#: guix/scripts/import/go.scm:118 #, fuzzy, scheme-format msgid "failed to download meta-data for module '~a'.~%" msgstr "nie udało się pobrać opisu dla pakietu '~a'~%" @@ -7464,6 +7615,12 @@ msgid "" "Import and convert the Texlive package for PACKAGE-NAME.\n" msgstr "" +#: guix/scripts/import/texlive.scm:84 +#, fuzzy, scheme-format +#| msgid "failed to download package '~a'~%" +msgid "failed to import package '~a'~%" +msgstr "nie udało się pobrać pakietu '~a'~%" + #: guix/scripts/offload.scm:130 #, scheme-format msgid "The 'system' field is deprecated, please use 'systems' instead.~%" @@ -7902,54 +8059,54 @@ msgstr "zamknięto połączenie~%" msgid "~a: unknown type of REPL~%" msgstr "~a: nieznany rodzaj REPL~%" -#: guix/scripts/shell.scm:46 +#: guix/scripts/shell.scm:48 msgid "" "Usage: guix shell [OPTION] PACKAGES... [-- COMMAND...]\n" "Build an environment that includes PACKAGES and execute COMMAND or an\n" "interactive shell in that environment.\n" msgstr "" -#: guix/scripts/shell.scm:52 +#: guix/scripts/shell.scm:54 msgid "" "\n" " -D, --development include the development inputs of the next package" msgstr "" -#: guix/scripts/shell.scm:54 +#: guix/scripts/shell.scm:56 msgid "" "\n" " -f, --file=FILE add to the environment the package FILE evaluates to" msgstr "" -#: guix/scripts/shell.scm:56 +#: guix/scripts/shell.scm:58 msgid "" "\n" " -q inhibit loading of 'guix.scm' and 'manifest.scm'" msgstr "" -#: guix/scripts/shell.scm:58 +#: guix/scripts/shell.scm:60 msgid "" "\n" " --rebuild-cache rebuild cached environment, if any" msgstr "" -#: guix/scripts/shell.scm:199 +#: guix/scripts/shell.scm:201 #, fuzzy, scheme-format #| msgid " canonical file name: ~a~%" msgid "ignoring invalid file name: '~a'~%" msgstr " kanoniczna nazwa pliku: ~a~%" -#: guix/scripts/shell.scm:280 +#: guix/scripts/shell.scm:266 #, fuzzy, scheme-format msgid "loading environment from '~a'...~%" msgstr "rozpakowywanie '~a'...~%" -#: guix/scripts/shell.scm:286 +#: guix/scripts/shell.scm:272 #, scheme-format msgid "not loading '~a' because not authorized to do so~%" msgstr "" -#: guix/scripts/shell.scm:288 +#: guix/scripts/shell.scm:274 #, scheme-format msgid "" "To allow automatic loading of\n" @@ -7961,60 +8118,77 @@ msgid "" "@end example\n" msgstr "" -#: guix/scripts/shell.scm:386 +#: guix/scripts/shell.scm:431 msgid "" "Consider passing the @option{--check} option once\n" "to make sure your shell does not clobber environment variables." msgstr "" -#: guix/scripts/style.scm:241 +#: guix/scripts/style.scm:499 #, fuzzy, scheme-format msgid "~a: complex expression, bailing out~%" msgstr "guix: ~a: nie znaleziono polecenia~%" -#: guix/scripts/style.scm:259 +#: guix/scripts/style.scm:517 #, scheme-format msgid "~a: input label '~a' does not match package name, bailing out~%" msgstr "" -#: guix/scripts/style.scm:264 +#: guix/scripts/style.scm:522 #, scheme-format msgid "~a: non-trivial input, bailing out~%" msgstr "" -#: guix/scripts/style.scm:288 +#: guix/scripts/style.scm:546 #, scheme-format msgid "~a: input expression is too short~%" msgstr "" -#: guix/scripts/style.scm:380 +#: guix/scripts/style.scm:638 #, scheme-format msgid "~a: unsupported input style, bailing out~%" msgstr "" -#: guix/scripts/style.scm:392 +#: guix/scripts/style.scm:650 #, scheme-format msgid "would be edited~%" msgstr "" -#: guix/scripts/style.scm:482 +#: guix/scripts/style.scm:721 +#, fuzzy, scheme-format +#| msgid "failed to download description for package '~a'~%" +msgid "no definition location for package ~a~%" +msgstr "nie udało się pobrać opisu dla pakietu '~a'~%" + +#: guix/scripts/style.scm:767 +#, fuzzy, scheme-format +msgid "~a: unknown styling~%" +msgstr "~A: nieznany pakiet~%" + +#: guix/scripts/style.scm:774 #, fuzzy, scheme-format msgid "~a: invalid input simplification policy~%" msgstr "nieprawidłowy opis: ~s" -#: guix/scripts/style.scm:496 +#: guix/scripts/style.scm:788 msgid "" "Usage: guix style [OPTION]... [PACKAGE]...\n" "Update package definitions to the latest style.\n" msgstr "" -#: guix/scripts/style.scm:498 +#: guix/scripts/style.scm:790 +msgid "" +"\n" +" -S, --styling=RULE apply RULE, a styling rule" +msgstr "" + +#: guix/scripts/style.scm:793 msgid "" "\n" " -n, --dry-run display files that would be edited but do nothing" msgstr "" -#: guix/scripts/style.scm:504 +#: guix/scripts/style.scm:799 msgid "" "\n" " --input-simplification=POLICY\n" @@ -8165,6 +8339,15 @@ msgstr "" msgid "produce debugging output" msgstr "" +#~ msgid "Please select a disk." +#~ msgstr "Proszę wybrać plik." + +#, fuzzy +#~ msgid "" +#~ "Failed to import package ~s.\n" +#~ "reason: ~s.~%" +#~ msgstr "instalacja tłumaczeń nie powiodła się: ~a~%" + #, fuzzy #~ msgid "Package not found in opam repository: ~a~%" #~ msgstr "~A: nie znalezino pakietu w wersji ~a~%" @@ -8204,9 +8387,6 @@ msgstr "" #~ msgid "zlib support is missing; compression disabled~%" #~ msgstr "zlib jest niedostępne; wyłączono kompresję~%" -#~ msgid " ~50a: unavailable~%" -#~ msgstr " ~50a: niedostępne~%" - #~ msgid "gz" #~ msgstr "gz" diff --git a/po/guix/pt_BR.po b/po/guix/pt_BR.po index 4b0804ae76..ce98a5cf68 100644 --- a/po/guix/pt_BR.po +++ b/po/guix/pt_BR.po @@ -5,21 +5,22 @@ # Wellton Costa de Oliveira , 2021. # Thiago Jung Bauermann , 2021. # Fernando Almeida , 2021. +# Fábio Rodrigues Ribeiro , 2022. #: guix/diagnostics.scm:157 msgid "" msgstr "" "Project-Id-Version: guix 1.2.0-pre1\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" -"PO-Revision-Date: 2021-11-14 18:03+0000\n" -"Last-Translator: Fernando Almeida \n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" +"PO-Revision-Date: 2022-01-25 15:16+0000\n" +"Last-Translator: Fábio Rodrigues Ribeiro \n" "Language-Team: Portuguese (Brazil) \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.9\n" +"X-Generator: Weblate 4.10.1\n" "X-Bugs: Report translation errors to the Language-Team address.\n" #: gnu.scm:81 @@ -62,37 +63,37 @@ msgstr "" msgid "Try adding @code{(use-service-modules ~a)}." msgstr "Tente adicionar @code{(use-service-modules ~a)}." -#: gnu/packages.scm:96 +#: gnu/packages.scm:97 #, scheme-format msgid "~a: patch not found" msgstr "~a: patch não localizado" -#: gnu/packages.scm:480 gnu/packages.scm:521 +#: gnu/packages.scm:481 gnu/packages.scm:522 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "especificação ambígua de pacote \"~a\"~%" -#: gnu/packages.scm:481 gnu/packages.scm:522 +#: gnu/packages.scm:482 gnu/packages.scm:523 #, scheme-format msgid "choosing ~a@~a from ~a~%" msgstr "escolhendo ~a@~a de ~a~%" -#: gnu/packages.scm:486 guix/scripts/package.scm:216 +#: gnu/packages.scm:487 guix/scripts/package.scm:218 #, scheme-format msgid "package '~a' has been superseded by '~a'~%" msgstr "pacote \"~a\" foi substituído por \"~a\"~%" -#: gnu/packages.scm:493 gnu/packages.scm:510 +#: gnu/packages.scm:494 gnu/packages.scm:511 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A: pacote não encontrado para versão ~a~%" -#: gnu/packages.scm:494 gnu/packages.scm:511 +#: gnu/packages.scm:495 gnu/packages.scm:512 #, scheme-format msgid "~A: unknown package~%" msgstr "~A: pacote desconhecido~%" -#: gnu/packages.scm:550 +#: gnu/packages.scm:551 #, scheme-format msgid "package `~a' lacks output `~a'~%" msgstr "pacote \"~a\" carece de mensagem de saída \"~a\"~%" @@ -205,7 +206,11 @@ msgid "" "the kernel itself and any linux-loadable kernel modules. This can be extended\n" "with a function that accepts the current configuration and returns a new\n" "configuration." -msgstr "Kernel" +msgstr "" +"Constrói o perfil do kernel linux-libre, contendo\n" +"o próprio kernel e quaisquer módulos de kernel carregáveis pelo linux. Isso pode ser estendido\n" +"com uma função que aceita a configuração atual e retorna um novo\n" +"configuração." #: gnu/services.scm:1003 msgid "" @@ -313,7 +318,7 @@ msgstr "" "que ainda estão em execução após alguns segundos após o envio de @code{SIGTERM}\n" "são encerrados com @code{SIGKILL}." -#: gnu/home/services.scm:127 +#: gnu/home/services.scm:128 #, fuzzy #| msgid "" #| "Build the operating system top-level directory, which in\n" @@ -328,7 +333,7 @@ msgstr "" "se refere a tudo que o sistema operacional precisa: seu kernel, initrd,\n" "perfil do sistema, script de inicialização e assim por diante." -#: gnu/home/services.scm:158 +#: gnu/home/services.scm:159 #, scheme-format msgid "" "This is the @dfn{home profile} and can be found in\n" @@ -337,22 +342,22 @@ msgid "" "@code{home-environment} record." msgstr "" -#: gnu/home/services.scm:180 +#: gnu/home/services.scm:181 #, scheme-format msgid "duplicate definition for `~a' environment variable ~%" msgstr "" -#: gnu/home/services.scm:242 +#: gnu/home/services.scm:243 msgid "Set the environment variables." msgstr "" -#: gnu/home/services.scm:253 +#: gnu/home/services.scm:254 #, fuzzy, scheme-format #| msgid "duplicate '~a' entry for /etc" msgid "duplicate '~a' entry for files/" msgstr "entrada duplicada \"~a\" para /etc" -#: gnu/home/services.scm:277 +#: gnu/home/services.scm:278 #, scheme-format msgid "" "Configuration files for programs that\n" @@ -361,7 +366,7 @@ msgstr "" #. TRANSLATORS: 'on-first-login' is the name of a service and #. shouldn't be translated -#: gnu/home/services.scm:308 +#: gnu/home/services.scm:309 msgid "" "XDG_RUNTIME_DIR doesn't exists, on-first-login script\n" "won't execute anything. You can check if xdg runtime directory exists,\n" @@ -369,13 +374,13 @@ msgid "" "script by running '$HOME/.guix-home/on-first-login'" msgstr "" -#: gnu/home/services.scm:328 +#: gnu/home/services.scm:329 msgid "" "Run gexps on first user login. Can be\n" "extended with one gexp." msgstr "" -#: gnu/home/services.scm:391 +#: gnu/home/services.scm:392 msgid "" "Run gexps to activate the current\n" "generation of home environment and update the state of the home\n" @@ -384,33 +389,33 @@ msgid "" "with one gexp, but many times, and all gexps must be idempotent." msgstr "" -#: gnu/home/services.scm:472 +#: gnu/home/services.scm:473 #, scheme-format msgid "" "Comparing ~a and\n" "~10t~a..." msgstr "" -#: gnu/home/services.scm:474 +#: gnu/home/services.scm:475 #, scheme-format msgid " done (~a)\n" msgstr "" #. TRANSLATORS: 'on-change' is the name of a service type, it #. probably shouldn't be translated. -#: gnu/home/services.scm:483 +#: gnu/home/services.scm:484 msgid "" "Evaluating on-change gexps.\n" "\n" msgstr "" -#: gnu/home/services.scm:485 +#: gnu/home/services.scm:486 msgid "" "On-change gexps evaluation finished.\n" "\n" msgstr "" -#: gnu/home/services.scm:499 +#: gnu/home/services.scm:500 msgid "" "G-expressions to run if the specified files have changed since the\n" "last generation. The extension should be a list of lists where the\n" @@ -418,7 +423,7 @@ msgid "" "changed, and the second element is the G-expression to be evaluated." msgstr "" -#: gnu/home/services.scm:519 +#: gnu/home/services.scm:520 #, fuzzy #| msgid "" #| "Store provenance information about the system in the system\n" @@ -716,13 +721,13 @@ msgstr "" msgid "Updater for ELPA packages" msgstr "Atualizador para pacotes OPAM" -#: guix/import/github.scm:170 +#: guix/import/github.scm:175 #, fuzzy, scheme-format #| msgid "URI ~a unreachable: ~a" msgid "~a is unreachable (~a)~%" msgstr "URI ~a inalcançável: ~a" -#: guix/import/github.scm:260 +#: guix/import/github.scm:274 #, fuzzy #| msgid "Updater for GNU packages" msgid "Updater for GitHub packages" @@ -766,13 +771,24 @@ msgstr "~A: pacote não encontrado para versão ~a~%" msgid "failed to determine latest release of GNU ~a" msgstr "não foi possível determinar a versão upstream mais recente de \"~a\"~%" -#: guix/import/go.scm:569 +#: guix/import/go.scm:571 #, fuzzy, scheme-format #| msgid "no target of type '~a' for service '~a'" msgid "unsupported vcs type '~a' for package '~a'" msgstr "nenhum alvo do tipo \"~a\" para o serviço \"~a\"" -#: guix/import/go.scm:647 +#: guix/import/go.scm:594 +#, fuzzy, scheme-format +#| msgid "~a: note: using ~a but ~a is available upstream~%" +msgid "version ~a of ~a is not available~%" +msgstr "~a: nota: usando ~a, mas ~a está disponível no upstream~%" + +#: guix/import/go.scm:597 +#, scheme-format +msgid "Pick one of the following available versions:~{ ~a~}." +msgstr "" + +#: guix/import/go.scm:671 #, scheme-format msgid "" "Failed to import package ~s.\n" @@ -780,14 +796,6 @@ msgid "" "This package and its dependencies won't be imported.~%" msgstr "" -#: guix/import/go.scm:656 -#, fuzzy, scheme-format -#| msgid "failed to import '~a' from '~a'~%" -msgid "" -"Failed to import package ~s.\n" -"reason: ~s.~%" -msgstr "falha ao importar \"~a\" de \"~a\"~%" - #: guix/import/minetest.scm:178 #, scheme-format msgid "In ~a: author names must consist of at least a single character.~%" @@ -887,80 +895,102 @@ msgstr "pacote \"~a\" não possui fontes~%" msgid "Updater for OPAM packages" msgstr "Atualizador para pacotes OPAM" -#: guix/import/pypi.scm:230 +#: guix/import/pypi.scm:233 msgid "Could not extract requirement name in spec:" msgstr "" -#: guix/import/pypi.scm:290 +#: guix/import/pypi.scm:293 #, scheme-format msgid "parse-requires.txt reached an unexpected condition on line ~a~%" msgstr "" -#: guix/import/pypi.scm:356 +#: guix/import/pypi.scm:359 #, fuzzy, scheme-format #| msgid "failed to import '~a' from '~a'~%" msgid "Failed to extract file: ~a from wheel.~%" msgstr "falha ao importar \"~a\" de \"~a\"~%" -#: guix/import/pypi.scm:385 +#: guix/import/pypi.scm:388 #, scheme-format msgid "Cannot guess requirements from source archive: no requires.txt file found.~%" msgstr "" -#: guix/import/pypi.scm:390 +#: guix/import/pypi.scm:393 #, scheme-format msgid "Unsupported archive format; cannot determine package dependencies from source archive: ~a~%" msgstr "" -#: guix/import/pypi.scm:489 +#: guix/import/pypi.scm:434 +#, scheme-format +msgid "project name ~a does not appear verbatim in the PyPI URI~%" +msgstr "" + +#: guix/import/pypi.scm:437 +#, scheme-format +msgid "" +"The PyPI URI is: @url{~a}. You should review the\n" +"pypi-uri declaration in the generated package. You may need to replace ~s with\n" +"a substring of the PyPI URI that identifies the package." +msgstr "" + +#: guix/import/pypi.scm:505 #, scheme-format msgid "no source release for pypi package ~a ~a~%" msgstr "" -#: guix/import/pypi.scm:554 +#: guix/import/pypi.scm:509 +#, scheme-format +msgid "" +"This indicates that the\n" +"package is available on PyPI, but only as a \"wheel\" containing binaries, not\n" +"source. To build it from source, refer to the upstream repository at\n" +"@uref{~a}." +msgstr "" + +#: guix/import/pypi.scm:579 #, fuzzy #| msgid "Updater for OPAM packages" msgid "Updater for PyPI packages" msgstr "Atualizador para pacotes OPAM" -#: gnu/installer.scm:214 +#: gnu/installer.scm:217 msgid "Locale" msgstr "Localidade" -#: gnu/installer.scm:230 gnu/installer/newt/timezone.scm:58 +#: gnu/installer.scm:233 gnu/installer/newt/timezone.scm:58 msgid "Timezone" msgstr "Fuso horário" -#: gnu/installer.scm:247 +#: gnu/installer.scm:250 msgid "Keyboard mapping selection" msgstr "Seleção do mapeamento de teclado" -#: gnu/installer.scm:256 gnu/installer/newt/hostname.scm:26 +#: gnu/installer.scm:259 gnu/installer/newt/hostname.scm:26 msgid "Hostname" msgstr "Nome da máquina" -#: gnu/installer.scm:265 +#: gnu/installer.scm:268 msgid "Network selection" msgstr "Seleção de rede" -#: gnu/installer.scm:272 +#: gnu/installer.scm:275 msgid "Substitute server discovery" msgstr "Descoberta de servidor substituto" -#: gnu/installer.scm:279 gnu/installer/newt/user.scm:68 -#: gnu/installer/newt/user.scm:205 +#: gnu/installer.scm:282 gnu/installer/newt/user.scm:67 +#: gnu/installer/newt/user.scm:204 msgid "User creation" msgstr "Criação de usuário" -#: gnu/installer.scm:287 +#: gnu/installer.scm:290 msgid "Services" msgstr "Serviços" -#: gnu/installer.scm:298 +#: gnu/installer.scm:301 msgid "Partitioning" msgstr "Particionamento" -#: gnu/installer.scm:305 gnu/installer/newt/final.scm:53 +#: gnu/installer.scm:308 gnu/installer/newt/final.scm:53 msgid "Configuration file" msgstr "Arquivo de configuração" @@ -972,19 +1002,85 @@ msgstr "Não foi possível determinar o estado do connman." msgid "Unable to find expected regexp." msgstr "Não foi possível localizar o regexp esperado." -#: gnu/installer/newt.scm:52 +#: gnu/installer/newt.scm:58 msgid "Press for installation parameters." msgstr "Pressione para os parâmetros de instalação." -#: gnu/installer/newt.scm:65 -#, scheme-format -msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +#: gnu/installer/newt.scm:68 +#, fuzzy +#| msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. You may choose to exit or create a dump archive." msgstr "O instalador encontrou um problema inesperado. O backtrace é exibido abaixo. Por favor, relate por e-mail para <~a>." -#: gnu/installer/newt.scm:68 +#: gnu/installer/newt.scm:71 msgid "Unexpected problem" msgstr "Problema inesperado" +#: gnu/installer/newt.scm:75 +msgid "Dump" +msgstr "" + +#: gnu/installer/newt.scm:76 gnu/installer/newt/ethernet.scm:79 +#: gnu/installer/newt/keymap.scm:56 gnu/installer/newt/locale.scm:43 +#: gnu/installer/newt/network.scm:65 gnu/installer/newt/network.scm:82 +#: gnu/installer/newt/page.scm:315 gnu/installer/newt/page.scm:679 +#: gnu/installer/newt/page.scm:763 gnu/installer/newt/page.scm:828 +#: gnu/installer/newt/partition.scm:54 gnu/installer/newt/partition.scm:90 +#: gnu/installer/newt/partition.scm:125 gnu/installer/newt/partition.scm:140 +#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 +#: gnu/installer/newt/partition.scm:706 gnu/installer/newt/partition.scm:764 +#: gnu/installer/newt/partition.scm:775 gnu/installer/newt/services.scm:124 +#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/wifi.scm:206 +msgid "Exit" +msgstr "Sair" + +#: gnu/installer/newt.scm:82 +#, scheme-format +msgid "The dump archive was created as ~a. Would you like to send this archive to the Guix servers?" +msgstr "" + +#: gnu/installer/newt.scm:84 +msgid "Dump archive created" +msgstr "" + +#: gnu/installer/newt.scm:88 +#, scheme-format +msgid "The dump was uploaded as ~a. Please report it by email to ~a." +msgstr "" + +#: gnu/installer/newt.scm:90 +#, fuzzy +#| msgid "some services could not be upgraded~%" +msgid "The dump could not be uploaded." +msgstr "alguns serviços não puderam ser atualizados~%" + +#: gnu/installer/newt.scm:93 +msgid "Dump upload result" +msgstr "" + +#: gnu/installer/newt.scm:132 +#, fuzzy, scheme-format +#| msgid "Command failed with exit code ~a.~%" +msgid "External command ~s exited with code ~a" +msgstr "O comando falhou com código de saída ~a.~%" + +#: gnu/installer/newt.scm:135 +#, scheme-format +msgid "External command ~s terminated by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:138 +#, scheme-format +msgid "External command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:140 +#, fuzzy +#| msgid "internal commands" +msgid "External command error" +msgstr "comandos internos" + #: gnu/installer/newt/ethernet.scm:66 msgid "No ethernet service available, please try again." msgstr "Nenhuma serviço ethernet disponível. Por favor, tente novamente." @@ -993,59 +1089,45 @@ msgstr "Nenhuma serviço ethernet disponível. Por favor, tente novamente." msgid "No service" msgstr "Nenhum serviço" -#: gnu/installer/newt/ethernet.scm:76 +#: gnu/installer/newt/ethernet.scm:74 msgid "Please select an ethernet network." msgstr "Por favor, selecione uma rede ethernet." -#: gnu/installer/newt/ethernet.scm:77 +#: gnu/installer/newt/ethernet.scm:75 msgid "Ethernet connection" msgstr "Conexão ethernet" -#: gnu/installer/newt/ethernet.scm:81 gnu/installer/newt/keymap.scm:56 -#: gnu/installer/newt/locale.scm:43 gnu/installer/newt/network.scm:63 -#: gnu/installer/newt/network.scm:84 gnu/installer/newt/page.scm:309 -#: gnu/installer/newt/page.scm:673 gnu/installer/newt/page.scm:758 -#: gnu/installer/newt/partition.scm:56 gnu/installer/newt/partition.scm:91 -#: gnu/installer/newt/partition.scm:126 gnu/installer/newt/partition.scm:141 -#: gnu/installer/newt/partition.scm:638 gnu/installer/newt/partition.scm:661 -#: gnu/installer/newt/partition.scm:707 gnu/installer/newt/partition.scm:765 -#: gnu/installer/newt/partition.scm:776 gnu/installer/newt/services.scm:130 -#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:204 -#: gnu/installer/newt/wifi.scm:206 -msgid "Exit" -msgstr "Sair" - #: gnu/installer/newt/final.scm:46 #, scheme-format msgid "We're now ready to proceed with the installation! A system configuration file has been generated, it is displayed below. This file will be available as '~a' on the installed system. The new system will be created from this file once you've pressed OK. This will take a few minutes." msgstr "Agora estamos prontos para prosseguir com a instalação! Um arquivo de configuração do sistema foi gerado e está exibido abaixo. Este arquivo estará disponível como \"~a\" no sistema instalado. O novo sistema será criado a partir desse arquivo depois que você pressionar OK. Isto levará alguns minutos." -#: gnu/installer/newt/final.scm:70 +#: gnu/installer/newt/final.scm:68 msgid "Installation complete" msgstr "Instalação concluída" -#: gnu/installer/newt/final.scm:71 gnu/installer/newt/parameters.scm:45 +#: gnu/installer/newt/final.scm:69 gnu/installer/newt/parameters.scm:45 #: gnu/installer/newt/welcome.scm:145 msgid "Reboot" msgstr "Reiniciar" -#: gnu/installer/newt/final.scm:72 +#: gnu/installer/newt/final.scm:70 msgid "Congratulations! Installation is now complete. You may remove the device containing the installation image and press the button to reboot." msgstr "Parabéns! A instalação foi concluída. Você pode remover o dispositivo que contém a imagem de instalação e pressionar o botão para reinicializar." -#: gnu/installer/newt/final.scm:86 +#: gnu/installer/newt/final.scm:84 msgid "Installation failed" msgstr "Instalação falhou" -#: gnu/installer/newt/final.scm:87 +#: gnu/installer/newt/final.scm:85 msgid "Resume" msgstr "Continuar" -#: gnu/installer/newt/final.scm:88 +#: gnu/installer/newt/final.scm:86 msgid "Restart the installer" msgstr "Reiniciar o instalador" -#: gnu/installer/newt/final.scm:89 +#: gnu/installer/newt/final.scm:87 msgid "The final system installation step failed. You can resume from a specific step, or restart the installer." msgstr "A etapa final de instalação do sistema falhou. Você pode continuar de uma etapa específica ou reiniciar o instalador." @@ -1073,9 +1155,9 @@ msgstr "Por favor, escolha um dos seguintes parâmetros ou pressione \"Voltar\" msgid "Installation parameters" msgstr "Parâmetros de instalação" -#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:74 -#: gnu/installer/newt/locale.scm:63 gnu/installer/newt/locale.scm:78 -#: gnu/installer/newt/locale.scm:94 gnu/installer/newt/partition.scm:595 +#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:72 +#: gnu/installer/newt/locale.scm:61 gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:88 gnu/installer/newt/partition.scm:594 #: gnu/installer/newt/timezone.scm:64 msgid "Back" msgstr "Voltar" @@ -1096,16 +1178,16 @@ msgstr "Por favor, escolha sua disposição de teclado. Ela será usada durante msgid "Please choose your keyboard layout. It will be used during the install process, and for the installed system. Non-Latin layouts can be toggled with Alt+Shift. You can switch to a different layout at any time from the parameters menu." msgstr "Por favor, escolha sua disposição de teclado. Ela será usada durante o processo de instalação e para o sistema instalado. As disposições diferente do latim pode ser ativado ou desativado com Alt+Shift. Você pode alternar para uma disposição diferente a qualquer momento a partir do menu de parâmetros." -#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:62 -#: gnu/installer/newt/page.scm:308 +#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/page.scm:314 msgid "Continue" msgstr "Continuar" -#: gnu/installer/newt/keymap.scm:67 +#: gnu/installer/newt/keymap.scm:65 msgid "Variant" msgstr "Variação" -#: gnu/installer/newt/keymap.scm:70 +#: gnu/installer/newt/keymap.scm:68 msgid "Please choose a variant for your keyboard layout." msgstr "Por favor, escolha a variação para a disposição do seu teclado." @@ -1117,35 +1199,35 @@ msgstr "Idioma da localidade" msgid "Choose the language to use for the installation process and for the installed system." msgstr "Escolha o idioma para usar para o processo de instalação e para o sistema instalado." -#: gnu/installer/newt/locale.scm:57 +#: gnu/installer/newt/locale.scm:55 msgid "Locale location" msgstr "Local da localidade" -#: gnu/installer/newt/locale.scm:60 +#: gnu/installer/newt/locale.scm:58 msgid "Choose a territory for this language." msgstr "Escolha um território para esse idioma." -#: gnu/installer/newt/locale.scm:71 +#: gnu/installer/newt/locale.scm:67 msgid "Locale codeset" msgstr "Conjunto de codificação da localidade" -#: gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:70 msgid "Choose the locale encoding." msgstr "Escolha a codificação da localidade." -#: gnu/installer/newt/locale.scm:86 +#: gnu/installer/newt/locale.scm:80 msgid "Locale modifier" msgstr "Modificador da localidade" -#: gnu/installer/newt/locale.scm:89 +#: gnu/installer/newt/locale.scm:83 msgid "Choose your locale's modifier. The most frequent modifier is euro. It indicates that you want to use Euro as the currency symbol." msgstr "Escolha o modificador da sua localidade. O modificador mais frequente é \"euro\". Ele indica que você deseja usar o Euro como o símbolo de moeda." -#: gnu/installer/newt/locale.scm:190 +#: gnu/installer/newt/locale.scm:181 msgid "No location" msgstr "Nenhuma local" -#: gnu/installer/newt/locale.scm:217 +#: gnu/installer/newt/locale.scm:208 msgid "No modifier" msgstr "Nenhum modificador" @@ -1161,277 +1243,283 @@ msgstr "Menu de instalação" msgid "Abort" msgstr "Abortar" -#: gnu/installer/newt/network.scm:61 gnu/installer/newt/network.scm:80 +#: gnu/installer/newt/network.scm:63 gnu/installer/newt/network.scm:78 msgid "Internet access" msgstr "Acesso à Internet" -#: gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/network.scm:66 msgid "The install process requires Internet access but no network devices were found. Do you want to continue anyway?" msgstr "O processo de instalação requer acesso à Internet, mas nenhum dispositivo de rede foi encontrado. Você deseja continuar mesmo assim?" -#: gnu/installer/newt/network.scm:78 +#: gnu/installer/newt/network.scm:76 msgid "The install process requires Internet access. Please select a network device." msgstr "O processo de instalação requer acesso à Internet. Por favor, selecione um dispositivo de rede." -#: gnu/installer/newt/network.scm:103 +#: gnu/installer/newt/network.scm:99 msgid "Powering technology" msgstr "Ativando a tecnologia" -#: gnu/installer/newt/network.scm:104 +#: gnu/installer/newt/network.scm:100 #, scheme-format msgid "Waiting for technology ~a to be powered." msgstr "Esperando pela tecnologia ~a ser ativa." -#: gnu/installer/newt/network.scm:128 +#: gnu/installer/newt/network.scm:139 msgid "Checking connectivity" msgstr "Verificando conectividade" -#: gnu/installer/newt/network.scm:129 +#: gnu/installer/newt/network.scm:140 msgid "Waiting for Internet access establishment..." msgstr "Aguardando o estabelecimento de acesso à Internet..." -#: gnu/installer/newt/network.scm:139 -msgid "The selected network does not provide access to the Internet, please try again." +#: gnu/installer/newt/network.scm:150 +#, fuzzy +#| msgid "The selected network does not provide access to the Internet, please try again." +msgid "The selected network does not provide access to the Internet and the Guix substitute server, please try again." msgstr "A rede selecionada não fornece o acesso à Internet, por favor tente novamente." -#: gnu/installer/newt/network.scm:141 gnu/installer/newt/wifi.scm:108 +#: gnu/installer/newt/network.scm:152 gnu/installer/newt/wifi.scm:108 msgid "Connection error" msgstr "Erro de conexão" -#: gnu/installer/newt/page.scm:198 +#: gnu/installer/newt/page.scm:204 #, scheme-format msgid "Connecting to ~a, please wait." msgstr "Conectando a ~a. Por favor, aguarde." -#: gnu/installer/newt/page.scm:199 +#: gnu/installer/newt/page.scm:205 msgid "Connection in progress" msgstr "Conexão em progresso" -#: gnu/installer/newt/page.scm:218 gnu/installer/newt/user.scm:60 +#: gnu/installer/newt/page.scm:224 gnu/installer/newt/user.scm:59 msgid "Show" msgstr "Mostrar" -#: gnu/installer/newt/page.scm:225 gnu/installer/newt/page.scm:672 -#: gnu/installer/newt/page.scm:757 gnu/installer/newt/partition.scm:458 -#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 -#: gnu/installer/newt/partition.scm:699 gnu/installer/newt/user.scm:66 -#: gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/page.scm:231 gnu/installer/newt/page.scm:678 +#: gnu/installer/newt/page.scm:762 gnu/installer/newt/partition.scm:457 +#: gnu/installer/newt/partition.scm:636 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:698 gnu/installer/newt/user.scm:65 +#: gnu/installer/newt/user.scm:202 msgid "OK" msgstr "OK" -#: gnu/installer/newt/page.scm:251 +#: gnu/installer/newt/page.scm:257 msgid "Please enter a non empty input." msgstr "Por favor, insira uma entrada não vazia." -#: gnu/installer/newt/page.scm:252 gnu/installer/newt/user.scm:123 +#: gnu/installer/newt/page.scm:258 gnu/installer/newt/user.scm:122 msgid "Empty input" msgstr "Entrada vazia" -#: gnu/installer/newt/page.scm:760 +#: gnu/installer/newt/page.scm:765 msgid "Edit" msgstr "Editar" -#: gnu/installer/newt/partition.scm:47 +#: gnu/installer/newt/page.scm:825 +msgid "Ok" +msgstr "" + +#: gnu/installer/newt/partition.scm:45 msgid "Everything is one partition" msgstr "Tudo é uma partição" -#: gnu/installer/newt/partition.scm:48 +#: gnu/installer/newt/partition.scm:46 msgid "Separate /home partition" msgstr "Separar partição /home" -#: gnu/installer/newt/partition.scm:50 +#: gnu/installer/newt/partition.scm:48 msgid "Please select a partitioning scheme." msgstr "Por favor, selecione um esquema de particionamento." -#: gnu/installer/newt/partition.scm:51 +#: gnu/installer/newt/partition.scm:49 msgid "Partition scheme" msgstr "Esquema de partição" #. TRANSLATORS: The ~{ and ~} format specifiers are used to iterate the list #. of device names of the user partitions that will be formatted. -#: gnu/installer/newt/partition.scm:65 +#: gnu/installer/newt/partition.scm:63 #, scheme-format msgid "We are about to write the configured partition table to the disk and format the partitions listed below. Their data will be lost. Do you wish to continue?~%~%~{ - ~a~%~}" msgstr "Estamos prestes a escrever no disco a tabela de partições configurada e a formatar as partições listadas abaixo. Os dados contidos nelas serão perdidos. Deseja continuar?~%~%~{ - ~a~%~}" -#: gnu/installer/newt/partition.scm:71 +#: gnu/installer/newt/partition.scm:69 msgid "Format disk?" msgstr "Formatar o disco?" -#: gnu/installer/newt/partition.scm:74 +#: gnu/installer/newt/partition.scm:72 msgid "Partition formatting is in progress, please wait." msgstr "A formatação da partição está em andamento. Por favor, aguarde." -#: gnu/installer/newt/partition.scm:75 +#: gnu/installer/newt/partition.scm:73 msgid "Preparing partitions" msgstr "Preparando partições" -#: gnu/installer/newt/partition.scm:86 -msgid "Please select a disk." -msgstr "Por favor, selecione um disco." +#: gnu/installer/newt/partition.scm:84 +msgid "Please select a disk. The installation device as well as the small devices are filtered." +msgstr "" -#: gnu/installer/newt/partition.scm:87 +#: gnu/installer/newt/partition.scm:86 msgid "Disk" msgstr "Disco" -#: gnu/installer/newt/partition.scm:102 +#: gnu/installer/newt/partition.scm:101 msgid "Select a new partition table type. Be careful, all data on the disk will be lost." msgstr "Selecione um novo tipo de tabela de partição. Tenha cuidado, todos os dados no disco serão perdidos." -#: gnu/installer/newt/partition.scm:104 +#: gnu/installer/newt/partition.scm:103 msgid "Partition table" msgstr "Tabela de partição" -#: gnu/installer/newt/partition.scm:121 +#: gnu/installer/newt/partition.scm:120 msgid "Please select a partition type." msgstr "Por favor, selecione um tipo de partição." -#: gnu/installer/newt/partition.scm:122 +#: gnu/installer/newt/partition.scm:121 msgid "Partition type" msgstr "Tipo de partição" -#: gnu/installer/newt/partition.scm:132 +#: gnu/installer/newt/partition.scm:131 msgid "Please select the file-system type for this partition." msgstr "Por favor, selecione o tipo de sistema de arquivos para esta partição." -#: gnu/installer/newt/partition.scm:133 +#: gnu/installer/newt/partition.scm:132 msgid "File-system type" msgstr "Tipo do sistema de arquivos" -#: gnu/installer/newt/partition.scm:150 +#: gnu/installer/newt/partition.scm:149 msgid "Primary partitions count exceeded." msgstr "Contagem de partições primárias excedida." -#: gnu/installer/newt/partition.scm:151 gnu/installer/newt/partition.scm:156 -#: gnu/installer/newt/partition.scm:161 +#: gnu/installer/newt/partition.scm:150 gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:160 msgid "Creation error" msgstr "Erro de criação" -#: gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:154 msgid "Extended partition creation error." msgstr "Erro de criação de partição estendida." -#: gnu/installer/newt/partition.scm:160 +#: gnu/installer/newt/partition.scm:159 msgid "Logical partition creation error." msgstr "Erro de criação de partição lógica." -#: gnu/installer/newt/partition.scm:174 +#: gnu/installer/newt/partition.scm:173 #, scheme-format msgid "Please enter the password for the encryption of partition ~a (label: ~a)." msgstr "Por favor, insira a senha para a criptografia da partição ~a (rótulo: ~a)." -#: gnu/installer/newt/partition.scm:176 gnu/installer/newt/wifi.scm:92 +#: gnu/installer/newt/partition.scm:175 gnu/installer/newt/wifi.scm:92 msgid "Password required" msgstr "Senha requerida" -#: gnu/installer/newt/partition.scm:181 +#: gnu/installer/newt/partition.scm:180 #, scheme-format msgid "Please confirm the password for the encryption of partition ~a (label: ~a)." msgstr "Por favor, confirme a senha para a criptografia da partição ~a (rótulo: ~a)." -#: gnu/installer/newt/partition.scm:183 gnu/installer/newt/user.scm:160 +#: gnu/installer/newt/partition.scm:182 gnu/installer/newt/user.scm:159 msgid "Password confirmation required" msgstr "Confirmação de senha requerida" -#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 +#: gnu/installer/newt/partition.scm:194 gnu/installer/newt/user.scm:167 msgid "Password mismatch, please try again." msgstr "As senhas são diferentes. Por favor, tente novamente." -#: gnu/installer/newt/partition.scm:196 gnu/installer/newt/user.scm:169 +#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 msgid "Password error" msgstr "Erro na senha" -#: gnu/installer/newt/partition.scm:282 +#: gnu/installer/newt/partition.scm:281 msgid "Please enter the partition gpt name." msgstr "Por favor, insira o nome gpt da partição." -#: gnu/installer/newt/partition.scm:283 +#: gnu/installer/newt/partition.scm:282 msgid "Partition name" msgstr "Nome da partição" -#: gnu/installer/newt/partition.scm:313 +#: gnu/installer/newt/partition.scm:312 msgid "Please enter the encrypted label" msgstr "Por favor, insira o rótulo criptografado" -#: gnu/installer/newt/partition.scm:314 +#: gnu/installer/newt/partition.scm:313 msgid "Encryption label" msgstr "Rótulo de criptografia" -#: gnu/installer/newt/partition.scm:331 +#: gnu/installer/newt/partition.scm:330 #, scheme-format msgid "Please enter the size of the partition. The maximum size is ~a." msgstr "Por favor, digite o tamanho da partição. O tamanho máximo é ~a." -#: gnu/installer/newt/partition.scm:333 +#: gnu/installer/newt/partition.scm:332 msgid "Partition size" msgstr "Tamanho da partição" -#: gnu/installer/newt/partition.scm:351 +#: gnu/installer/newt/partition.scm:350 msgid "The percentage can not be superior to 100." msgstr "A porcentagem não pode ser superior a 100." -#: gnu/installer/newt/partition.scm:352 gnu/installer/newt/partition.scm:357 -#: gnu/installer/newt/partition.scm:362 +#: gnu/installer/newt/partition.scm:351 gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:361 msgid "Size error" msgstr "Erro de tamanho" -#: gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:355 msgid "The requested size is incorrectly formatted, or too large." msgstr "O tamanho solicitado está formatado incorretamente ou é muito grande." -#: gnu/installer/newt/partition.scm:361 +#: gnu/installer/newt/partition.scm:360 msgid "The request size is superior to the maximum size." msgstr "O tamanho da solicitação é superior ao tamanho máximo." -#: gnu/installer/newt/partition.scm:381 +#: gnu/installer/newt/partition.scm:380 msgid "Please enter the desired mounting point for this partition. Leave this field empty if you don't want to set a mounting point." msgstr "Por favor, digite o ponto de montagem desejado para esta partição. Deixe este campo vazio se não quiser definir um ponto de montagem." -#: gnu/installer/newt/partition.scm:383 +#: gnu/installer/newt/partition.scm:382 msgid "Mounting point" msgstr "Ponto de montagem" -#: gnu/installer/newt/partition.scm:447 +#: gnu/installer/newt/partition.scm:446 #, scheme-format msgid "Creating ~a partition starting at ~a of ~a." msgstr "Criando a partição ~a iniciando em ~a de ~a." -#: gnu/installer/newt/partition.scm:449 +#: gnu/installer/newt/partition.scm:448 #, scheme-format msgid "You are currently editing partition ~a." msgstr "Você está editando a partição ~a." -#: gnu/installer/newt/partition.scm:452 +#: gnu/installer/newt/partition.scm:451 msgid "Partition creation" msgstr "Criação de partição" -#: gnu/installer/newt/partition.scm:453 +#: gnu/installer/newt/partition.scm:452 msgid "Partition edit" msgstr "Editar partição" -#: gnu/installer/newt/partition.scm:634 +#: gnu/installer/newt/partition.scm:633 #, scheme-format msgid "Are you sure you want to delete everything on disk ~a?" msgstr "Tem certeza de que deseja excluir tudo no disco ~a?" -#: gnu/installer/newt/partition.scm:636 +#: gnu/installer/newt/partition.scm:635 msgid "Delete disk" msgstr "Excluir disco" -#: gnu/installer/newt/partition.scm:651 +#: gnu/installer/newt/partition.scm:650 msgid "You cannot delete a free space area." msgstr "Você não pode excluir uma área de espaço livre." -#: gnu/installer/newt/partition.scm:652 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:651 gnu/installer/newt/partition.scm:658 msgid "Delete partition" msgstr "Excluir partição" -#: gnu/installer/newt/partition.scm:657 +#: gnu/installer/newt/partition.scm:656 #, scheme-format msgid "Are you sure you want to delete partition ~a?" msgstr "Tem certeza de que deseja excluir a partição ~a?" -#: gnu/installer/newt/partition.scm:674 +#: gnu/installer/newt/partition.scm:673 msgid "" "You can change a disk's partition table by selecting it and pressing ENTER. You can also edit a partition by selecting it and pressing ENTER, or remove it by pressing DELETE. To create a new partition, select a free space area and press ENTER.\n" "\n" @@ -1441,55 +1529,55 @@ msgstr "" "\n" "Pelo menos uma partição deve ter seu ponto de montagem definido como \"/\"." -#: gnu/installer/newt/partition.scm:680 +#: gnu/installer/newt/partition.scm:679 #, scheme-format msgid "This is the proposed partitioning. It is still possible to edit it or to go back to install menu by pressing the Exit button.~%~%" msgstr "Este é o particionamento proposto. Ainda é possível editá-lo ou voltar ao menu de instalação pressionando o botão Sair.~%~%" -#: gnu/installer/newt/partition.scm:690 +#: gnu/installer/newt/partition.scm:689 msgid "Guided partitioning" msgstr "Particionamento guiado" -#: gnu/installer/newt/partition.scm:691 +#: gnu/installer/newt/partition.scm:690 msgid "Manual partitioning" msgstr "Particionamento manual" -#: gnu/installer/newt/partition.scm:716 +#: gnu/installer/newt/partition.scm:715 msgid "No root mount point found." msgstr "Nenhuma ponto de montagem raiz encontrado." -#: gnu/installer/newt/partition.scm:717 +#: gnu/installer/newt/partition.scm:716 msgid "Missing mount point" msgstr "Faltando ponto de montagem" -#: gnu/installer/newt/partition.scm:721 +#: gnu/installer/newt/partition.scm:720 #, scheme-format msgid "Cannot read the ~a partition UUID. You may need to format it." msgstr "" -#: gnu/installer/newt/partition.scm:724 +#: gnu/installer/newt/partition.scm:723 #, fuzzy #| msgid "Preparing partitions" msgid "Wrong partition format" msgstr "Preparando partições" -#: gnu/installer/newt/partition.scm:755 +#: gnu/installer/newt/partition.scm:754 msgid "Guided - using the entire disk" msgstr "Guiado - usando todo o disco" -#: gnu/installer/newt/partition.scm:756 +#: gnu/installer/newt/partition.scm:755 msgid "Guided - using the entire disk with encryption" msgstr "Guiado - usando todo o disco com criptografia" -#: gnu/installer/newt/partition.scm:757 +#: gnu/installer/newt/partition.scm:756 msgid "Manual" msgstr "Manual" -#: gnu/installer/newt/partition.scm:759 +#: gnu/installer/newt/partition.scm:758 msgid "Please select a partitioning method." msgstr "Por favor, selecione um método de particionamento." -#: gnu/installer/newt/partition.scm:760 +#: gnu/installer/newt/partition.scm:759 msgid "Partitioning method" msgstr "Método de particionamento" @@ -1501,41 +1589,41 @@ msgstr "Por favor, selecione o(s) ambiente(s) de desktop que você deseja instal msgid "Desktop environment" msgstr "Ambiente de desktop" -#: gnu/installer/newt/services.scm:59 +#: gnu/installer/newt/services.scm:57 msgid "You can now select networking services to run on your system." msgstr "Agora você pode selecionar serviços de rede para executar no seu sistema." -#: gnu/installer/newt/services.scm:61 +#: gnu/installer/newt/services.scm:59 msgid "Network service" msgstr "Serviço de rede" -#: gnu/installer/newt/services.scm:79 +#: gnu/installer/newt/services.scm:75 #, fuzzy #| msgid "You can now select networking services to run on your system." msgid "You can now select the CUPS printing service to run on your system." msgstr "Agora você pode selecionar serviços de rede para executar no seu sistema." -#: gnu/installer/newt/services.scm:81 +#: gnu/installer/newt/services.scm:77 msgid "Printing and document services" msgstr "" -#: gnu/installer/newt/services.scm:100 +#: gnu/installer/newt/services.scm:94 #, fuzzy #| msgid "No service" msgid "Console services" msgstr "Nenhum serviço" -#: gnu/installer/newt/services.scm:101 +#: gnu/installer/newt/services.scm:95 #, fuzzy #| msgid "You can now select networking services to run on your system." msgid "Select miscellaneous services to run on your non-graphical system." msgstr "Agora você pode selecionar serviços de rede para executar no seu sistema." -#: gnu/installer/newt/services.scm:115 +#: gnu/installer/newt/services.scm:109 msgid "Network management" msgstr "Gerenciamento de rede" -#: gnu/installer/newt/services.scm:118 +#: gnu/installer/newt/services.scm:112 msgid "" "Choose the method to manage network connections.\n" "\n" @@ -1571,57 +1659,57 @@ msgstr "" msgid "Please select a timezone." msgstr "Por favor, selecione um fuso horário." -#: gnu/installer/newt/user.scm:45 +#: gnu/installer/newt/user.scm:44 msgid "Name" msgstr "Nome" -#: gnu/installer/newt/user.scm:47 +#: gnu/installer/newt/user.scm:46 msgid "Real name" msgstr "Nome real" -#: gnu/installer/newt/user.scm:49 +#: gnu/installer/newt/user.scm:48 msgid "Home directory" msgstr "Pasta pessoal" -#: gnu/installer/newt/user.scm:51 +#: gnu/installer/newt/user.scm:50 msgid "Password" msgstr "Senha" -#: gnu/installer/newt/user.scm:122 +#: gnu/installer/newt/user.scm:121 msgid "Empty inputs are not allowed." msgstr "Entradas vazias não são permitidas." -#: gnu/installer/newt/user.scm:159 +#: gnu/installer/newt/user.scm:158 msgid "Please confirm the password." msgstr "Por favor, confirme a senha." #. TRANSLATORS: Leave "root" untranslated: it refers to the name of the #. system administrator account. -#: gnu/installer/newt/user.scm:176 +#: gnu/installer/newt/user.scm:175 msgid "Please choose a password for the system administrator (\"root\")." msgstr "Por favor, escolha uma senha para o administrador do sistema (\"root\")." -#: gnu/installer/newt/user.scm:178 +#: gnu/installer/newt/user.scm:177 msgid "System administrator password" msgstr "Senha do administrador do sistema" -#: gnu/installer/newt/user.scm:191 +#: gnu/installer/newt/user.scm:190 msgid "Please add at least one user to system using the 'Add' button." msgstr "Por favor, adicione pelo menos um usuário para o sistema usando o botão \"Adicionar\"." -#: gnu/installer/newt/user.scm:194 +#: gnu/installer/newt/user.scm:193 msgid "Add" msgstr "Adicionar" -#: gnu/installer/newt/user.scm:195 +#: gnu/installer/newt/user.scm:194 msgid "Delete" msgstr "Excluir" -#: gnu/installer/newt/user.scm:255 +#: gnu/installer/newt/user.scm:254 msgid "Please create at least one user." msgstr "Por favor, crie pelo menos um usuário." -#: gnu/installer/newt/user.scm:256 +#: gnu/installer/newt/user.scm:255 msgid "No user" msgstr "Nenhum usuário" @@ -1697,60 +1785,60 @@ msgstr "Nenhum WiFi detectado" msgid "Wifi" msgstr "WiFi" -#: gnu/installer/parted.scm:433 gnu/installer/parted.scm:470 +#: gnu/installer/parted.scm:455 gnu/installer/parted.scm:492 msgid "Free space" msgstr "Espaço livre" -#: gnu/installer/parted.scm:559 +#: gnu/installer/parted.scm:581 #, scheme-format msgid "Name: ~a" msgstr "Nome: ~a" -#: gnu/installer/parted.scm:560 gnu/installer/parted.scm:606 +#: gnu/installer/parted.scm:582 gnu/installer/parted.scm:628 msgid "None" msgstr "Nenhum" -#: gnu/installer/parted.scm:565 +#: gnu/installer/parted.scm:587 #, scheme-format msgid "Type: ~a" msgstr "Tipo: ~a" -#: gnu/installer/parted.scm:569 +#: gnu/installer/parted.scm:591 #, scheme-format msgid "File system type: ~a" msgstr "Tipo do sistema de arquivos: ~a" -#: gnu/installer/parted.scm:575 +#: gnu/installer/parted.scm:597 #, scheme-format msgid "Bootable flag: ~:[off~;on~]" msgstr "Sinalizador inicializável: ~:[desligado~;ligado~]" -#: gnu/installer/parted.scm:579 +#: gnu/installer/parted.scm:601 #, scheme-format msgid "ESP flag: ~:[off~;on~]" msgstr "Sinalizador ESP: ~:[desligado~;ligado~]" -#: gnu/installer/parted.scm:585 +#: gnu/installer/parted.scm:607 #, scheme-format msgid "Size: ~a" msgstr "Tamanho: ~a" -#: gnu/installer/parted.scm:591 +#: gnu/installer/parted.scm:613 #, scheme-format msgid "Encryption: ~:[No~a~;Yes (label '~a')~]" msgstr "Criptografia: ~:[Não~a~;Sim (rótulo \"~a\")~]" -#: gnu/installer/parted.scm:597 +#: gnu/installer/parted.scm:619 #, scheme-format msgid "Format the partition? ~:[No~;Yes~]" msgstr "Formatar a partição? ~:[Não~;Sim~]" -#: gnu/installer/parted.scm:603 +#: gnu/installer/parted.scm:625 #, scheme-format msgid "Mount point: ~a" msgstr "Ponto de montagem: ~a" -#: gnu/installer/parted.scm:1466 +#: gnu/installer/parted.scm:1477 #, scheme-format msgid "Device ~a is still in use." msgstr "O dispositivo ~a ainda está em uso." @@ -1794,7 +1882,7 @@ msgstr "" #. TRANSLATORS: This is a comment within a Scheme file. Each line must #. start with ";; " (two semicolons and a space). Please keep line #. length below 60 characters. -#: gnu/installer/steps.scm:252 +#: gnu/installer/steps.scm:242 msgid "" ";; This is an operating system configuration generated\n" ";; by the graphical installer.\n" @@ -1807,72 +1895,92 @@ msgstr "" msgid "Unable to locate path: ~a." msgstr "Não foi possível localizar o caminho: ~a." -#: gnu/installer/utils.scm:83 +#: gnu/installer/utils.scm:131 #, scheme-format msgid "Press Enter to continue.~%" msgstr "Pressione Enter para continuar.~%" -#: gnu/installer/utils.scm:108 -#, scheme-format -msgid "Command failed with exit code ~a.~%" +#: gnu/installer/utils.scm:150 +#, fuzzy, scheme-format +#| msgid "Command failed with exit code ~a.~%" +msgid "Command ~s exited with value ~a" msgstr "O comando falhou com código de saída ~a.~%" -#: gnu/machine/ssh.scm:117 +#: gnu/installer/utils.scm:156 +#, scheme-format +msgid "Command ~s killed by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:162 +#, scheme-format +msgid "Command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:167 +#, scheme-format +msgid "Command ~s succeeded" +msgstr "" + +#: gnu/installer/utils.scm:179 +msgid "run-command-in-installer not set" +msgstr "" + +#: gnu/machine/ssh.scm:120 #, scheme-format msgid " without a 'host-key' is deprecated~%" msgstr " sem uma \"host-key\" está descontinuado~%" -#: gnu/machine/ssh.scm:192 +#: gnu/machine/ssh.scm:208 #, scheme-format msgid "device '~a' not found: ~a" msgstr "dispositivo \"~a\" não localizado: ~a" -#: gnu/machine/ssh.scm:207 +#: gnu/machine/ssh.scm:223 #, scheme-format msgid "no file system with label '~a'" msgstr "nenhum sistema de arquivos com rótulo \"~a\"" -#: gnu/machine/ssh.scm:226 +#: gnu/machine/ssh.scm:242 #, scheme-format msgid "no file system with UUID '~a'" msgstr "nenhum sistema de arquivos com UUID \"~a\"" -#: gnu/machine/ssh.scm:276 +#: gnu/machine/ssh.scm:295 #, scheme-format msgid "missing modules for ~a:~{ ~a~}~%" msgstr "faltando módulos para ~a:~{ ~a~}~%" -#: gnu/machine/ssh.scm:311 +#: gnu/machine/ssh.scm:333 #, scheme-format msgid "incorrect target system ('~a' was given, while the system reports that it is '~a')~%" msgstr "sistema alvo incorreto (\"~a\" foi fornecido, enquanto os relatórios de sistema que é \"~a\")~%" -#: gnu/machine/ssh.scm:437 +#: gnu/machine/ssh.scm:459 #, scheme-format msgid "no signing key '~a'. have you run 'guix archive --generate-key?'" msgstr "nenhuma chave de assinatura \"~a\". Você executou \"guix archive --generate-key\"?" -#: gnu/machine/ssh.scm:469 +#: gnu/machine/ssh.scm:491 #, scheme-format msgid "failed to switch systems while deploying '~a':~%~{~s ~}" msgstr "" -#: gnu/machine/ssh.scm:477 +#: gnu/machine/ssh.scm:499 #, scheme-format msgid "an error occurred while upgrading services on '~a':~%~{~s ~}~%" msgstr "" -#: gnu/machine/ssh.scm:485 +#: gnu/machine/ssh.scm:507 #, fuzzy, scheme-format #| msgid "failed to install bootloader ~a~%" msgid "failed to install bootloader on '~a':~%~{~s ~}~%" msgstr "falha ao instalar carregador de inicialização ~a~%" -#: gnu/machine/ssh.scm:518 +#: gnu/machine/ssh.scm:540 msgid "could not roll-back machine" msgstr "não foi possível reverter a máquina" -#: gnu/machine/ssh.scm:559 +#: gnu/machine/ssh.scm:581 msgid "" "Provisioning for machines that are accessible over SSH\n" "and have a known host-name. This entails little more than maintaining an SSH\n" @@ -1882,7 +1990,7 @@ msgstr "" "um nome de máquina conhecido. Isso envolve pouco mais do que manter uma conexão\n" "SSH com a máquina." -#: gnu/machine/ssh.scm:569 +#: gnu/machine/ssh.scm:591 #, scheme-format msgid "" "unsupported machine configuration '~a'\n" @@ -1891,20 +1999,20 @@ msgstr "" "configuração de máquina não suportada \"~a\"\n" "para ambiente do tipo \"~a\"" -#: gnu/packages/bootstrap.scm:178 +#: gnu/packages/bootstrap.scm:188 #, scheme-format msgid "could not find bootstrap binary '~a' for system '~a'" msgstr "não foi possível localizar binário de inicialização \"~a\" para o sistema \"~a\"" -#: gnu/packages/bootstrap.scm:492 +#: gnu/packages/bootstrap.scm:578 msgid "Raw build system with direct store access" msgstr "Sistema de compilação bruto com acesso direto ao armazém" -#: gnu/packages/bootstrap.scm:500 +#: gnu/packages/bootstrap.scm:586 msgid "Pre-built Guile for bootstrapping purposes." msgstr "Guile pré-compilado para o propósito de inicialização." -#: guix/build/utils.scm:822 +#: guix/build/utils.scm:823 #, scheme-format msgid "'~a~{ ~a~}' exited with status ~a; output follows:~%~%~{ ~a~%~}" msgstr "\"~a~{ ~a~}\" saiu com status ~a; saída a seguir:~%~%~{ ~a~%~}" @@ -1944,7 +2052,7 @@ msgid "~A: unrecognized option~%" msgstr "~A: opção não reconhecida~%" #: guix/scripts.scm:169 guix/scripts/import.scm:140 -#: guix/scripts/system.scm:1370 +#: guix/scripts/system.scm:1379 #, scheme-format msgid "Did you mean @code{~a}?~%" msgstr "Você quis dizer @code{~a}?~%" @@ -1999,7 +2107,7 @@ msgstr "falha ao criar raiz de GC \"~a\": ~a~%" #: guix/scripts/build.scm:154 guix/scripts/search.scm:42 #: guix/scripts/show.scm:41 guix/scripts/lint.scm:112 guix/scripts/edit.scm:48 #: guix/scripts/size.scm:246 guix/scripts/graph.scm:553 -#: guix/scripts/repl.scm:80 guix/scripts/style.scm:500 +#: guix/scripts/repl.scm:80 guix/scripts/style.scm:795 msgid "" "\n" " -L, --load-path=DIR prepend DIR to the package module search path" @@ -2207,7 +2315,7 @@ msgstr "" "\n" " -s, --system=SISTEMA tenta compilar para SISTEMA (ex.: \"i686-linux\")" -#: guix/scripts/build.scm:357 guix/scripts/system.scm:1023 +#: guix/scripts/build.scm:357 guix/scripts/system.scm:1026 #: guix/scripts/pack.scm:1329 guix/scripts/archive.scm:97 msgid "" "\n" @@ -2252,13 +2360,13 @@ msgstr "" " -r, --root=ARQUIVO faz do ARQUIVO um link simbólico para o resultado\n" " e o registra, como um coletor de lixo" -#: guix/scripts/build.scm:368 guix/scripts/package.scm:486 +#: guix/scripts/build.scm:368 guix/scripts/package.scm:488 #: guix/scripts/install.scm:37 guix/scripts/remove.scm:36 #: guix/scripts/upgrade.scm:39 guix/scripts/pull.scm:117 -#: guix/scripts/system.scm:1025 guix/scripts/copy.scm:122 -#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:60 +#: guix/scripts/system.scm:1028 guix/scripts/copy.scm:122 +#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:66 #: guix/scripts/archive.scm:99 guix/scripts/environment.scm:123 -#: guix/scripts/home.scm:94 +#: guix/scripts/home.scm:98 msgid "" "\n" " -v, --verbosity=LEVEL use the given verbosity LEVEL" @@ -2284,30 +2392,30 @@ msgstr "" " derivações fornecidas" #: guix/scripts/build.scm:379 guix/scripts/download.scm:104 -#: guix/scripts/package.scm:504 guix/scripts/install.scm:44 +#: guix/scripts/package.scm:506 guix/scripts/install.scm:44 #: guix/scripts/remove.scm:41 guix/scripts/upgrade.scm:48 #: guix/scripts/search.scm:37 guix/scripts/show.scm:36 guix/scripts/gc.scm:88 #: guix/scripts/git.scm:34 guix/scripts/git/authenticate.scm:110 #: guix/scripts/hash.scm:98 guix/scripts/import.scm:98 #: guix/scripts/import/minetest.scm:46 guix/scripts/import/cran.scm:49 #: guix/scripts/pull.scm:125 guix/scripts/substitute.scm:250 -#: guix/scripts/system.scm:1032 guix/scripts/lint.scm:115 +#: guix/scripts/system.scm:1035 guix/scripts/lint.scm:115 #: guix/scripts/publish.scm:119 guix/scripts/edit.scm:51 #: guix/scripts/size.scm:249 guix/scripts/graph.scm:558 #: guix/scripts/challenge.scm:430 guix/scripts/copy.scm:127 #: guix/scripts/pack.scm:1357 guix/scripts/weather.scm:336 #: guix/scripts/describe.scm:96 guix/scripts/processes.scm:301 -#: guix/scripts/deploy.scm:55 guix/scripts/container.scm:35 +#: guix/scripts/deploy.scm:58 guix/scripts/container.scm:35 #: guix/scripts/container/exec.scm:43 guix/scripts/archive.scm:106 -#: guix/scripts/environment.scm:149 guix/scripts/home.scm:97 +#: guix/scripts/environment.scm:149 guix/scripts/home.scm:101 #: guix/scripts/time-machine.scm:67 guix/scripts/import/cpan.scm:44 #: guix/scripts/import/crate.scm:50 guix/scripts/import/egg.scm:45 #: guix/scripts/import/gem.scm:46 guix/scripts/import/gnu.scm:50 #: guix/scripts/import/go.scm:50 guix/scripts/import/json.scm:52 #: guix/scripts/import/opam.scm:45 guix/scripts/import/pypi.scm:46 #: guix/scripts/import/texlive.scm:45 guix/scripts/refresh.scm:187 -#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:67 -#: guix/scripts/style.scm:509 +#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:69 +#: guix/scripts/style.scm:804 msgid "" "\n" " -h, --help display this help and exit" @@ -2316,29 +2424,29 @@ msgstr "" " -h, --help exibe esta ajuda e sai" #: guix/scripts/build.scm:381 guix/scripts/download.scm:106 -#: guix/scripts/package.scm:506 guix/scripts/install.scm:46 +#: guix/scripts/package.scm:508 guix/scripts/install.scm:46 #: guix/scripts/remove.scm:43 guix/scripts/upgrade.scm:50 #: guix/scripts/search.scm:39 guix/scripts/show.scm:38 guix/scripts/gc.scm:90 #: guix/scripts/git.scm:36 guix/scripts/git/authenticate.scm:112 #: guix/scripts/hash.scm:100 guix/scripts/import.scm:100 #: guix/scripts/import/minetest.scm:50 guix/scripts/import/cran.scm:55 #: guix/scripts/pull.scm:127 guix/scripts/substitute.scm:252 -#: guix/scripts/system.scm:1034 guix/scripts/lint.scm:119 +#: guix/scripts/system.scm:1037 guix/scripts/lint.scm:119 #: guix/scripts/publish.scm:121 guix/scripts/edit.scm:53 #: guix/scripts/size.scm:251 guix/scripts/graph.scm:560 #: guix/scripts/challenge.scm:432 guix/scripts/copy.scm:129 #: guix/scripts/pack.scm:1359 guix/scripts/weather.scm:338 #: guix/scripts/describe.scm:98 guix/scripts/processes.scm:303 -#: guix/scripts/deploy.scm:57 guix/scripts/container.scm:37 +#: guix/scripts/deploy.scm:60 guix/scripts/container.scm:37 #: guix/scripts/container/exec.scm:45 guix/scripts/archive.scm:108 -#: guix/scripts/environment.scm:151 guix/scripts/home.scm:99 +#: guix/scripts/environment.scm:151 guix/scripts/home.scm:103 #: guix/scripts/time-machine.scm:69 guix/scripts/import/cpan.scm:46 #: guix/scripts/import/crate.scm:52 guix/scripts/import/egg.scm:49 #: guix/scripts/import/gem.scm:48 guix/scripts/import/gnu.scm:52 #: guix/scripts/import/json.scm:54 guix/scripts/import/opam.scm:52 #: guix/scripts/import/pypi.scm:50 guix/scripts/import/texlive.scm:47 #: guix/scripts/refresh.scm:189 guix/scripts/repl.scm:85 -#: guix/scripts/shell.scm:69 guix/scripts/style.scm:511 +#: guix/scripts/shell.scm:71 guix/scripts/style.scm:806 msgid "" "\n" " -V, --version display version information and exit" @@ -2604,167 +2712,167 @@ msgstr "o nome do módulo \"~a\" não corresponde a um nome de arquivo \"~a\"~%" msgid "\"bash-minimal\" should be in 'inputs' when '~a' is used" msgstr "" -#: guix/lint.scm:616 +#: guix/lint.scm:614 msgid "no period allowed at the end of the synopsis" msgstr "nenhum ponto permitido ao final da sinopse" -#: guix/lint.scm:630 +#: guix/lint.scm:628 msgid "no article allowed at the beginning of the synopsis" msgstr "nenhum artigo permitido no início da sinopse" -#: guix/lint.scm:639 +#: guix/lint.scm:637 msgid "synopsis should be less than 80 characters long" msgstr "a sinopse deve ser menor que 80 caracteres" -#: guix/lint.scm:648 +#: guix/lint.scm:646 msgid "synopsis should start with an upper-case letter or digit" msgstr "a sinopse deve iniciar com uma letra maiúscula ou dígito" -#: guix/lint.scm:656 +#: guix/lint.scm:654 msgid "synopsis should not start with the package name" msgstr "a sinopse deve não iniciar com o nome do pacote" -#: guix/lint.scm:670 +#: guix/lint.scm:668 msgid "Texinfo markup in synopsis is invalid" msgstr "Marcação Texinfo na sinopse é inválida" -#: guix/lint.scm:678 +#: guix/lint.scm:676 msgid "synopsis contains trailing whitespace" msgstr "" -#: guix/lint.scm:695 +#: guix/lint.scm:693 msgid "synopsis should not be empty" msgstr "a sinopse deve não estar vazia" -#: guix/lint.scm:705 +#: guix/lint.scm:703 #, scheme-format msgid "invalid synopsis: ~s" msgstr "sinopse inválida: ~s" -#: guix/lint.scm:805 +#: guix/lint.scm:803 #, scheme-format msgid "~a: HTTP GET error for ~a: ~a (~s)~%" msgstr "~a: erro HTTP GET para ~a: ~a (~s)~%" -#: guix/lint.scm:815 +#: guix/lint.scm:813 #, scheme-format msgid "~a: host lookup failure: ~a~%" msgstr "~a: falha ao procurar a máquina: ~a~%" -#: guix/lint.scm:820 +#: guix/lint.scm:818 #, scheme-format msgid "~a: TLS certificate error: ~a" msgstr "~a: erro de certificado TLS: ~a" -#: guix/lint.scm:825 +#: guix/lint.scm:823 #, fuzzy, scheme-format #| msgid "TLS error in procedure '~a': ~a~%" msgid "~a: TLS error in '~a': ~a~%" msgstr "erro TLS no procedimento \"~a\": ~a~%" -#: guix/lint.scm:836 guix/ui.scm:820 guix/scripts/offload.scm:194 +#: guix/lint.scm:834 guix/ui.scm:820 guix/scripts/offload.scm:194 #, scheme-format msgid "~a: ~a~%" msgstr "~a: ~a~%" -#: guix/lint.scm:868 +#: guix/lint.scm:866 #, scheme-format msgid "URI ~a returned suspiciously small file (~a bytes)" msgstr "a URI ~a retornou um arquivo suspeitosamente pequeno (~a bytes)" -#: guix/lint.scm:877 +#: guix/lint.scm:875 #, scheme-format msgid "permanent redirect from ~a to ~a" msgstr "redirecionamento permanente de ~a para ~a" -#: guix/lint.scm:883 +#: guix/lint.scm:881 #, scheme-format msgid "invalid permanent redirect from ~a" msgstr "redirecionamento permanente inválido de ~a" -#: guix/lint.scm:889 guix/lint.scm:899 +#: guix/lint.scm:887 guix/lint.scm:897 #, scheme-format msgid "URI ~a not reachable: ~a (~s)" msgstr "a URI ~a não é alcançável: ~a (~s)" -#: guix/lint.scm:905 +#: guix/lint.scm:903 #, scheme-format msgid "URI ~a domain not found: ~a" msgstr "o domínio da URI ~a não foi localizado: ~a" -#: guix/lint.scm:911 +#: guix/lint.scm:909 #, scheme-format msgid "URI ~a unreachable: ~a" msgstr "URI ~a inalcançável: ~a" -#: guix/lint.scm:919 +#: guix/lint.scm:917 #, scheme-format msgid "TLS certificate error: ~a" msgstr "erro de certificado TLS: ~a" -#: guix/lint.scm:946 +#: guix/lint.scm:944 msgid "invalid value for home page" msgstr "valor inválido para página inicial" -#: guix/lint.scm:951 +#: guix/lint.scm:949 #, scheme-format msgid "invalid home page URL: ~s" msgstr "URL de página inicial inválida: ~s" -#: guix/lint.scm:988 +#: guix/lint.scm:986 msgid "file names of patches should start with the package name" msgstr "nomes de arquivos de patches devem iniciar com o nome do pacote" -#: guix/lint.scm:1008 +#: guix/lint.scm:1006 #, fuzzy, scheme-format #| msgid "~a: file name is too long" msgid "~a: file name is too long, which may break 'make dist'" msgstr "~a: o nome de arquivo é longo demais" -#: guix/lint.scm:1029 +#: guix/lint.scm:1027 #, scheme-format msgid "~a: empty patch" msgstr "~a: patch vazio" -#: guix/lint.scm:1038 +#: guix/lint.scm:1036 #, scheme-format msgid "~a: patch lacks comment and upstream status" msgstr "~a: o patch não tem comentário nem estado upstream" -#: guix/lint.scm:1099 +#: guix/lint.scm:1097 #, scheme-format msgid "proposed synopsis: ~s~%" msgstr "sinopse proposta: ~s~%" -#: guix/lint.scm:1113 +#: guix/lint.scm:1111 #, scheme-format msgid "proposed description:~% \"~a\"~%" msgstr "descrição proposta:~% \"~a\"~%" -#: guix/lint.scm:1164 +#: guix/lint.scm:1162 msgid "all the source URIs are unreachable:" msgstr "todas as URIs fontes estão inalcançáveis:" -#: guix/lint.scm:1193 +#: guix/lint.scm:1191 msgid "the source file name should contain the package name" msgstr "o nome de arquivo fonte deve conter o nome do pacote" -#: guix/lint.scm:1205 +#: guix/lint.scm:1203 msgid "the source URI should not be an autogenerated tarball" msgstr "a URI fonte não deve ser um tarball gerado automaticamente" -#: guix/lint.scm:1229 +#: guix/lint.scm:1227 #, scheme-format msgid "URL should be 'mirror://~a/~a'" msgstr "a URL deve ser \"mirror://~a/~a\"" -#: guix/lint.scm:1269 +#: guix/lint.scm:1267 #, fuzzy, scheme-format #| msgid "failed to access '~a': ~a~%" msgid "while accessing '~a'" msgstr "falha ao acessar \"~a\": ~a~%" -#: guix/lint.scm:1276 +#: guix/lint.scm:1274 #, scheme-format msgid "URL should be '~a'" msgstr "a URL deve ser \"~a\"" @@ -2772,69 +2880,69 @@ msgstr "a URL deve ser \"~a\"" #. TRANSLATORS: check and #:tests? are a #. Scheme symbol and keyword respectively #. and should not be translated. -#: guix/lint.scm:1304 +#: guix/lint.scm:1302 msgid "the 'check' phase should respect #:tests?" msgstr "" -#: guix/lint.scm:1322 guix/lint.scm:1333 guix/lint.scm:1341 +#: guix/lint.scm:1320 guix/lint.scm:1331 guix/lint.scm:1339 #, scheme-format msgid "failed to create ~a derivation: ~a" msgstr "falha ao criar a derivação de ~a: ~a" -#: guix/lint.scm:1327 +#: guix/lint.scm:1325 #, scheme-format msgid "failed to create ~a derivation: ~s" msgstr "falha ao criar a derivação de ~a: ~s" -#: guix/lint.scm:1379 +#: guix/lint.scm:1377 #, scheme-format msgid "propagated inputs ~a and ~a collide" msgstr "as entradas propagadas ~a e ~a colidem" -#: guix/lint.scm:1403 +#: guix/lint.scm:1401 msgid "invalid license field" msgstr "campo de licença inválido" -#: guix/lint.scm:1410 +#: guix/lint.scm:1408 msgid "while retrieving CVE vulnerabilities" msgstr "ao obter vulnerabilidades CVE" -#: guix/lint.scm:1453 +#: guix/lint.scm:1451 #, scheme-format msgid "probably vulnerable to ~a" msgstr "provavelmente vulnerável a ~a" -#: guix/lint.scm:1461 +#: guix/lint.scm:1459 #, scheme-format msgid "no updater for ~a" msgstr "nenhum atualizador para ~a" -#: guix/lint.scm:1466 guix/lint.scm:1641 +#: guix/lint.scm:1464 guix/lint.scm:1639 #, scheme-format msgid "while retrieving upstream info for '~a'" msgstr "ao obter informações do upstream para \"~a\"" -#: guix/lint.scm:1475 +#: guix/lint.scm:1473 #, scheme-format msgid "can be upgraded to ~a" msgstr "pode ser atualizado para ~a" -#: guix/lint.scm:1481 +#: guix/lint.scm:1479 #, scheme-format msgid "updater '~a' failed to find upstream releases" msgstr "Atualizador para '~a' não encontrou lançamentos upstream" -#: guix/lint.scm:1508 +#: guix/lint.scm:1506 #, fuzzy, scheme-format #| msgid "failed to access '~a': ~a~%" msgid "failed to access Disarchive database at ~a" msgstr "falha ao acessar \"~a\": ~a~%" -#: guix/lint.scm:1535 +#: guix/lint.scm:1533 msgid "Software Heritage rate limit reached; try again later" msgstr "Limite de taxa de Software Heritage atingido; tente novamente mais tarde" -#: guix/lint.scm:1539 +#: guix/lint.scm:1537 #, scheme-format msgid "'~a' returned ~a" msgstr "\"~a\" retornou ~a" @@ -2842,168 +2950,168 @@ msgstr "\"~a\" retornou ~a" #. TRANSLATORS: "Software Heritage" is a proper noun #. that must remain untranslated. See #. . -#: guix/lint.scm:1578 +#: guix/lint.scm:1576 msgid "scheduled Software Heritage archival" msgstr "arquivamento Software Heritage agendado" -#: guix/lint.scm:1584 +#: guix/lint.scm:1582 msgid "archival rate limit exceeded; try again later" msgstr "taxa limite de arquivamento excedida; tente novamente mais tarde" -#: guix/lint.scm:1605 +#: guix/lint.scm:1603 #, fuzzy #| msgid "source not archived on Software Heritage" msgid "source not archived on Software Heritage and missing from the Disarchive database" msgstr "fonte não arquivada no Software Heritage" -#: guix/lint.scm:1615 +#: guix/lint.scm:1613 #, scheme-format msgid "Disarchive entry refers to non-existent SWH directory '~a'" msgstr "" -#: guix/lint.scm:1624 +#: guix/lint.scm:1622 #, fuzzy #| msgid "~a: unsupported compression type~%" msgid "unsupported source type" msgstr "~a: sem suporte ao tipo de compressão~%" -#: guix/lint.scm:1633 +#: guix/lint.scm:1631 msgid "while connecting to Software Heritage" msgstr "enquanto conectava ao Software Heritage" -#: guix/lint.scm:1650 +#: guix/lint.scm:1648 #, scheme-format msgid "ahead of Stackage LTS version ~a" msgstr "à frente da versão Stackage LTS ~a" -#: guix/lint.scm:1667 +#: guix/lint.scm:1665 #, scheme-format msgid "tabulation on line ~a, column ~a" msgstr "tabulação na linha ~a, coluna ~a" -#: guix/lint.scm:1679 +#: guix/lint.scm:1677 #, scheme-format msgid "trailing white space on line ~a" msgstr "espaço ao final da linha ~a" -#: guix/lint.scm:1693 +#: guix/lint.scm:1691 #, scheme-format msgid "line ~a is way too long (~a characters)" msgstr "a linha ~a está grande demais (~a caracteres)" -#: guix/lint.scm:1707 +#: guix/lint.scm:1705 msgid "parentheses feel lonely, move to the previous or next line" msgstr "parênteses se sentem sozinhos, mova para a linha anterior ou a seguinte" -#: guix/lint.scm:1784 +#: guix/lint.scm:1782 msgid "source file not found" msgstr "arquivo fonte não encontrado" -#: guix/lint.scm:1796 +#: guix/lint.scm:1794 msgid "Validate package names" msgstr "Valida nomes do pacotes" -#: guix/lint.scm:1800 +#: guix/lint.scm:1798 msgid "Check if tests are explicitly enabled" msgstr "" -#: guix/lint.scm:1804 +#: guix/lint.scm:1802 msgid "Validate package descriptions" msgstr "Valida descrições dos pacotes" -#: guix/lint.scm:1808 +#: guix/lint.scm:1806 msgid "Identify inputs that should be native inputs" msgstr "Identifica entradas que devem ser nativas" -#: guix/lint.scm:1812 +#: guix/lint.scm:1810 msgid "Identify inputs that shouldn't be inputs at all" msgstr "Identifica entradas que podem ser entradas" -#: guix/lint.scm:1816 +#: guix/lint.scm:1814 #, fuzzy #| msgid "Identify inputs that should be native inputs" msgid "Identify input labels that do not match package names" msgstr "Identifica entradas que devem ser nativas" -#: guix/lint.scm:1820 +#: guix/lint.scm:1818 msgid "Make sure 'wrap-program' can finds its interpreter." msgstr "" #. TRANSLATORS: is the name of a data type and must not be #. translated. -#: guix/lint.scm:1826 +#: guix/lint.scm:1824 msgid "Make sure the 'license' field is a or a list thereof" msgstr "Certifica que o campo \"license\" é um ou uma lista disto" -#: guix/lint.scm:1831 +#: guix/lint.scm:1829 msgid "Make sure tests are only run when requested" msgstr "" -#: guix/lint.scm:1835 +#: guix/lint.scm:1833 msgid "Suggest 'mirror://' URLs" msgstr "Sugere URLs \"mirror://\"" -#: guix/lint.scm:1839 +#: guix/lint.scm:1837 msgid "Validate file names of sources" msgstr "Valida nomes de arquivos dos fontes" -#: guix/lint.scm:1843 +#: guix/lint.scm:1841 msgid "Check for autogenerated tarballs" msgstr "Verifica para tarballs gerados automaticamente" -#: guix/lint.scm:1847 +#: guix/lint.scm:1845 msgid "Report failure to compile a package to a derivation" msgstr "Relata falha ao compilar um pacote para uma derivação" -#: guix/lint.scm:1852 +#: guix/lint.scm:1850 msgid "Report collisions that would occur due to propagated inputs" msgstr "Reporta colisões que iriam ocorrer devido a entradas propagadas" -#: guix/lint.scm:1857 +#: guix/lint.scm:1855 msgid "Validate file names and availability of patches" msgstr "Valida nomes de arquivos e disponibilidade de patches" -#: guix/lint.scm:1861 +#: guix/lint.scm:1859 msgid "Validate patch headers" msgstr "Valida cabeçalhos do patch" -#: guix/lint.scm:1865 +#: guix/lint.scm:1863 msgid "Look for formatting issues in the source" msgstr "Procura por problemas de formatação no fonte" -#: guix/lint.scm:1872 +#: guix/lint.scm:1870 msgid "Validate package synopses" msgstr "Valida sinopses do pacotes" -#: guix/lint.scm:1876 +#: guix/lint.scm:1874 msgid "Validate synopsis & description of GNU packages" msgstr "Valida sinopse & descrição de pacotes GNU" -#: guix/lint.scm:1880 +#: guix/lint.scm:1878 msgid "Validate home-page URLs" msgstr "Valida URLs de site" -#: guix/lint.scm:1884 +#: guix/lint.scm:1882 msgid "Validate source URLs" msgstr "Valida URLs fonte" -#: guix/lint.scm:1888 +#: guix/lint.scm:1886 msgid "Suggest GitHub URLs" msgstr "Sugere URLs do GitHub" -#: guix/lint.scm:1892 +#: guix/lint.scm:1890 msgid "Check the Common Vulnerabilities and Exposures (CVE) database" msgstr "Verifica o banco de dados de Vulnerabilidades e Exposições Comuns (CVE)" -#: guix/lint.scm:1897 +#: guix/lint.scm:1895 msgid "Check the package for new upstream releases" msgstr "Verifica o pacote por novos lançamentos do upstream" -#: guix/lint.scm:1901 +#: guix/lint.scm:1899 msgid "Ensure source code archival on Software Heritage" msgstr "Força arquivamento do código-fonte no Software Heritage" -#: guix/lint.scm:1905 +#: guix/lint.scm:1903 msgid "Ensure Haskell packages use Stackage LTS versions" msgstr "Assegura que pacotes Haskell usam versões do Stackage LTS" @@ -3069,7 +3177,7 @@ msgstr "sem suporte ao formato de hash: ~a~%" msgid "~a: unknown hash algorithm~%" msgstr "~a: algoritmo de hash desconhecido~%" -#: guix/scripts/download.scm:171 guix/scripts/package.scm:1087 +#: guix/scripts/download.scm:171 guix/scripts/package.scm:1090 #: guix/scripts/pull.scm:758 guix/scripts/publish.scm:1260 #: guix/scripts/discover.scm:136 guix/scripts/time-machine.scm:123 #, scheme-format @@ -3102,17 +3210,17 @@ msgstr "não será removida a geração ~a, que é o atual~%" msgid "no matching generation~%" msgstr "nenhuma geração correspondente~%" -#: guix/scripts/package.scm:159 +#: guix/scripts/package.scm:161 #, scheme-format msgid "nothing to be done~%" msgstr "nada para ser feito~%" -#: guix/scripts/package.scm:260 +#: guix/scripts/package.scm:262 #, scheme-format msgid "package '~a' no longer exists~%" msgstr "o pacote \"~a\" não existe mais~%" -#: guix/scripts/package.scm:315 +#: guix/scripts/package.scm:317 #, scheme-format msgid "" "Consider setting the necessary environment\n" @@ -3135,7 +3243,7 @@ msgstr "" "\n" "Alternativamente, consulte @command{guix package --search-paths -p ~s}." -#: guix/scripts/package.scm:361 +#: guix/scripts/package.scm:363 msgid "" ";; This \"manifest\" file can be passed to 'guix package -m' to reproduce\n" ";; the content of your profile. This is \"symbolic\": it only specifies\n" @@ -3149,12 +3257,12 @@ msgstr "" ";; você também precisa capturar os canais sendo usados, conforme\n" ";; retornado por \"guix describe\". Veja a seção \"Replicating Guix\" no manual.\n" -#: guix/scripts/package.scm:393 +#: guix/scripts/package.scm:395 #, scheme-format msgid "no provenance information for this profile~%" msgstr "nenhuma informação de proveniência para este perfil~%" -#: guix/scripts/package.scm:395 +#: guix/scripts/package.scm:397 msgid "" ";; This channel file can be passed to 'guix pull -C' or to\n" ";; 'guix time-machine -C' to obtain the Guix revision that was\n" @@ -3164,12 +3272,12 @@ msgstr "" ";; para \"guix time-machine -C\" para obter a revisão do Guix que foi\n" ";; usada para popular este perfil.\n" -#: guix/scripts/package.scm:407 +#: guix/scripts/package.scm:409 #, scheme-format msgid ";; Note: these other commits were also used to install some of the packages in this profile:~%" msgstr ";; Nota: estes outros commits também foram usados para instalar alguns dos pacotes neste perfil:~%" -#: guix/scripts/package.scm:437 +#: guix/scripts/package.scm:439 msgid "" "Usage: guix package [OPTION]...\n" "Install, remove, or upgrade packages in a single transaction.\n" @@ -3177,7 +3285,7 @@ msgstr "" "Uso: guix package [OPÇÃO]...\n" "Instala, remove ou atualiza pacotes em uma única transação.\n" -#: guix/scripts/package.scm:439 +#: guix/scripts/package.scm:441 msgid "" "\n" " -i, --install PACKAGE ...\n" @@ -3187,7 +3295,7 @@ msgstr "" " -i, --install PACOTE ...\n" " instala PACOTEs" -#: guix/scripts/package.scm:442 +#: guix/scripts/package.scm:444 msgid "" "\n" " -e, --install-from-expression=EXP\n" @@ -3197,7 +3305,7 @@ msgstr "" " -e, --install-from-expression=EXP\n" " instala o pacote para o qual EXPR avalia" -#: guix/scripts/package.scm:445 +#: guix/scripts/package.scm:447 msgid "" "\n" " -f, --install-from-file=FILE\n" @@ -3209,7 +3317,7 @@ msgstr "" " instala o pacote para o qual o código\n" " dentro do ARQUIVO avalia" -#: guix/scripts/package.scm:449 +#: guix/scripts/package.scm:451 msgid "" "\n" " -r, --remove PACKAGE ...\n" @@ -3219,7 +3327,7 @@ msgstr "" " -r, --remove PACOTE ...\n" " remove PACOTEs" -#: guix/scripts/package.scm:452 +#: guix/scripts/package.scm:454 msgid "" "\n" " -u, --upgrade[=REGEXP] upgrade all the installed packages matching REGEXP" @@ -3228,7 +3336,7 @@ msgstr "" " -u, --upgrade[=REGEXP] atualiza todos os pacotes instalados correspondendo\n" " à REGEXP" -#: guix/scripts/package.scm:454 +#: guix/scripts/package.scm:456 msgid "" "\n" " -m, --manifest=FILE create a new profile generation with the manifest\n" @@ -3238,7 +3346,7 @@ msgstr "" " -m, --manifest=ARQUIVO cria a geração de um novo perfil com o manifesto\n" " do ARQUIVO" -#: guix/scripts/package.scm:457 guix/scripts/upgrade.scm:41 +#: guix/scripts/package.scm:459 guix/scripts/upgrade.scm:41 msgid "" "\n" " --do-not-upgrade[=REGEXP] do not upgrade any packages matching REGEXP" @@ -3246,7 +3354,7 @@ msgstr "" "\n" " --do-not-upgrade[=REGEXP] não atualiza pacotes correspondente a REGEXP" -#: guix/scripts/package.scm:459 guix/scripts/pull.scm:107 +#: guix/scripts/package.scm:461 guix/scripts/pull.scm:107 msgid "" "\n" " --roll-back roll back to the previous generation" @@ -3254,7 +3362,7 @@ msgstr "" "\n" " --roll-back reverte para a geração anterior" -#: guix/scripts/package.scm:461 +#: guix/scripts/package.scm:463 msgid "" "\n" " --search-paths[=KIND]\n" @@ -3264,7 +3372,7 @@ msgstr "" " --search-paths[=TIPO]\n" " exibe definições necessárias de variável de ambiente" -#: guix/scripts/package.scm:464 guix/scripts/pull.scm:104 +#: guix/scripts/package.scm:466 guix/scripts/pull.scm:104 msgid "" "\n" " -l, --list-generations[=PATTERN]\n" @@ -3274,7 +3382,7 @@ msgstr "" " -l, --list-generations[=PADRÃO]\n" " lista criações correspondendo a PADRÃO" -#: guix/scripts/package.scm:467 guix/scripts/pull.scm:109 +#: guix/scripts/package.scm:469 guix/scripts/pull.scm:109 msgid "" "\n" " -d, --delete-generations[=PATTERN]\n" @@ -3284,7 +3392,7 @@ msgstr "" " -d, --delete-generations[=PADRÃO]\n" " exclui gerações correspondendo a PADRÃO" -#: guix/scripts/package.scm:470 guix/scripts/pull.scm:112 +#: guix/scripts/package.scm:472 guix/scripts/pull.scm:112 msgid "" "\n" " -S, --switch-generation=PATTERN\n" @@ -3294,7 +3402,7 @@ msgstr "" " -S, --switch-generations=PADRÃO\n" " alterna para a geração correspondendo a PADRÃO" -#: guix/scripts/package.scm:473 +#: guix/scripts/package.scm:475 msgid "" "\n" " --export-manifest print a manifest for the chosen profile" @@ -3302,7 +3410,7 @@ msgstr "" "\n" " --export-manifest exibe um manifesto para o perfil escolhido" -#: guix/scripts/package.scm:475 +#: guix/scripts/package.scm:477 msgid "" "\n" " --export-channels print channels for the chosen profile" @@ -3310,7 +3418,7 @@ msgstr "" "\n" " --export-channels exibe canais para o perfil escolhido" -#: guix/scripts/package.scm:477 guix/scripts/install.scm:34 +#: guix/scripts/package.scm:479 guix/scripts/install.scm:34 #: guix/scripts/remove.scm:33 guix/scripts/upgrade.scm:37 msgid "" "\n" @@ -3319,7 +3427,7 @@ msgstr "" "\n" " -p, --profile=PERFIL usa PERFIL em vez do perfil padrão do usuário" -#: guix/scripts/package.scm:479 +#: guix/scripts/package.scm:481 msgid "" "\n" " --list-profiles list the user's profiles" @@ -3327,7 +3435,7 @@ msgstr "" "\n" " --list-profiles lista os perfis do usuário" -#: guix/scripts/package.scm:482 +#: guix/scripts/package.scm:484 msgid "" "\n" " --allow-collisions do not treat collisions in the profile as an error" @@ -3335,7 +3443,7 @@ msgstr "" "\n" " --allow-collisions não trata colisões no perfil como um erro" -#: guix/scripts/package.scm:484 +#: guix/scripts/package.scm:486 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" @@ -3343,7 +3451,7 @@ msgstr "" "\n" " --bootstrap usa a inicialização do Guile para compilar o perfil" -#: guix/scripts/package.scm:489 +#: guix/scripts/package.scm:491 msgid "" "\n" " -s, --search=REGEXP search in synopsis and description using REGEXP" @@ -3351,7 +3459,7 @@ msgstr "" "\n" " -s, --search=REGEXP pesquisa na sinopse e descrição usando REGEXP" -#: guix/scripts/package.scm:491 +#: guix/scripts/package.scm:493 msgid "" "\n" " -I, --list-installed[=REGEXP]\n" @@ -3361,7 +3469,7 @@ msgstr "" " -I, --list-installed[=REGEXP]\n" " lista pacotes instalados correspondentes a REGEXP" -#: guix/scripts/package.scm:494 +#: guix/scripts/package.scm:496 msgid "" "\n" " -A, --list-available[=REGEXP]\n" @@ -3371,7 +3479,7 @@ msgstr "" " -A, --list-available[=REGEXP]\n" " lista pacotes disponíveis correspondentes a REGEXP" -#: guix/scripts/package.scm:497 +#: guix/scripts/package.scm:499 msgid "" "\n" " --show=PACKAGE show details about PACKAGE" @@ -3379,38 +3487,38 @@ msgstr "" "\n" " --show=PACOTE mostra detalhes sobre o PACOTE" -#: guix/scripts/package.scm:552 +#: guix/scripts/package.scm:554 #, scheme-format msgid "upgrade regexp '~a' looks like a command-line option~%" msgstr "a regexp de atualização \"~a\" se parece com uma opção de linha de comando~%" -#: guix/scripts/package.scm:555 +#: guix/scripts/package.scm:557 #, scheme-format msgid "is this intended?~%" msgstr "isso é intencional?~%" -#: guix/scripts/package.scm:605 +#: guix/scripts/package.scm:607 #, scheme-format msgid "~a: unsupported kind of search path~%" msgstr "~a: sem suporte ao tipo de caminho de pesquisa~%" -#: guix/scripts/package.scm:739 +#: guix/scripts/package.scm:741 #, scheme-format msgid "cannot install non-package object: ~s~%" msgstr "não é possível instalar o objeto não-pacote: ~s~%" -#: guix/scripts/package.scm:918 +#: guix/scripts/package.scm:920 #, scheme-format msgid "~a~@[@~a~]: package not found~%" msgstr "~a~@[@~a~]: pacote não localizado~%" # geração, criação? -#: guix/scripts/package.scm:965 guix/scripts/pull.scm:687 +#: guix/scripts/package.scm:967 guix/scripts/pull.scm:687 #, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "não foi possível alternar para a geração \"~a\"~%" -#: guix/scripts/package.scm:1060 +#: guix/scripts/package.scm:1062 #, fuzzy, scheme-format #| msgid "nothing to be done~%" msgid "nothing to do~%" @@ -3680,8 +3788,8 @@ msgstr "" "Uso: guix git COMANDO ARGUMENTOS...\n" "Opera em repositórios Git.\n" -#: guix/scripts/git.scm:29 guix/scripts/system.scm:945 -#: guix/scripts/container.scm:30 guix/scripts/home.scm:69 +#: guix/scripts/git.scm:29 guix/scripts/system.scm:946 +#: guix/scripts/container.scm:30 guix/scripts/home.scm:70 msgid "The valid values for ACTION are:\n" msgstr "Os valores válidos para AÇÃO são:\n" @@ -3795,25 +3903,25 @@ msgstr "" "\n" " -r, --recursive computa o hash no AQUIVO recursivamente" -#: guix/scripts/hash.scm:137 +#: guix/scripts/hash.scm:138 #, fuzzy, scheme-format #| msgid "'--inherit' is deprecated, use '--preserve' instead~%" -msgid "'--recursive' is deprecated, use '--serializer' instead~%" +msgid "'--recursive' is deprecated, use '--serializer=nar' instead~%" msgstr "\"--inherit\" foi descontinuado, use \"--preserve\" em vez disso~%" -#: guix/scripts/hash.scm:152 +#: guix/scripts/hash.scm:153 #, fuzzy, scheme-format #| msgid "unsupported policy: ~a~%" msgid "unsupported serializer type: ~a~%" msgstr "sem suporte à política: ~a~%" -#: guix/scripts/hash.scm:201 +#: guix/scripts/hash.scm:202 #, fuzzy, scheme-format #| msgid "~a: ~a~%" msgid "~a ~a~%" msgstr "~a: ~a~%" -#: guix/scripts/hash.scm:210 +#: guix/scripts/hash.scm:211 #, fuzzy, scheme-format #| msgid "no packages specified; building an empty pack~%" msgid "no arguments specified~%" @@ -3885,9 +3993,9 @@ msgstr "~a: chave de ordenação inválida~%" #: guix/scripts/import/minetest.scm:115 guix/scripts/import/cran.scm:120 #: guix/scripts/import/elpa.scm:110 guix/scripts/import/cpan.scm:87 #: guix/scripts/import/crate.scm:103 guix/scripts/import/egg.scm:106 -#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:121 +#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:122 #: guix/scripts/import/hackage.scm:158 guix/scripts/import/json.scm:97 -#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:104 +#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:105 #: guix/scripts/import/stackage.scm:130 guix/scripts/import/texlive.scm:88 #, scheme-format msgid "too few arguments~%" @@ -3896,10 +4004,10 @@ msgstr "poucos argumentos~%" #: guix/scripts/import/minetest.scm:117 guix/scripts/import/cran.scm:122 #: guix/scripts/import/elpa.scm:112 guix/scripts/import/cpan.scm:89 #: guix/scripts/import/crate.scm:105 guix/scripts/import/egg.scm:108 -#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:123 +#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:124 #: guix/scripts/import/hackage.scm:149 guix/scripts/import/hackage.scm:160 #: guix/scripts/import/json.scm:99 guix/scripts/import/opam.scm:113 -#: guix/scripts/import/pypi.scm:106 guix/scripts/import/stackage.scm:132 +#: guix/scripts/import/pypi.scm:107 guix/scripts/import/stackage.scm:132 #: guix/scripts/import/texlive.scm:90 #, scheme-format msgid "too many arguments~%" @@ -3929,7 +4037,7 @@ msgstr "" "\n" " -s, --style=ESTILO escolha o estilo de saída, com uma especificação ou variável" -#: guix/scripts/import/cran.scm:116 guix/scripts/import/texlive.scm:84 +#: guix/scripts/import/cran.scm:116 #, scheme-format msgid "failed to download description for package '~a'~%" msgstr "falha ao baixar descrição para o pacote \"~a\"~%" @@ -4180,17 +4288,12 @@ msgid "TLS error in procedure '~a': ~a~%" msgstr "erro TLS no procedimento \"~a\": ~a~%" #: guix/scripts/substitute.scm:240 -#, fuzzy -#| msgid "" -#| "Usage: guix substitute [OPTION]...\n" -#| "Internal tool to substitute a pre-built binary to a local build.\n" msgid "" "Usage: guix substitute OPTION [ARGUMENT]...\n" "Internal tool to substitute a pre-built binary to a local build.\n" msgstr "" -"Uso: guix substitute [OPÇÃO]...\n" -"Ferramenta interna para substituir um binário pré-compilado para\n" -"uma compilação local.\n" +"Uso: guix substitute OPÇÃO [ARGUMENTO]...\n" +"Ferramenta interna para substituir um binário pré-construído por uma compilação local.\n" #: guix/scripts/substitute.scm:242 msgid "" @@ -4382,27 +4485,27 @@ msgstr "o DAG de serviços" msgid "the dependency graph of shepherd services" msgstr "o grafo de dependência de serviços do shepherd" -#: guix/scripts/system.scm:482 guix/scripts/home.scm:453 +#: guix/scripts/system.scm:482 guix/scripts/home.scm:466 #, scheme-format msgid " repository URL: ~a~%" msgstr " URL do repositório: ~a~%" -#: guix/scripts/system.scm:484 guix/scripts/home.scm:455 +#: guix/scripts/system.scm:484 guix/scripts/home.scm:468 #, scheme-format msgid " branch: ~a~%" msgstr " ramo: ~a~%" -#: guix/scripts/system.scm:485 guix/scripts/home.scm:456 +#: guix/scripts/system.scm:485 guix/scripts/home.scm:469 #, scheme-format msgid " commit: ~a~%" msgstr " commit: ~a~%" -#: guix/scripts/system.scm:505 guix/scripts/home.scm:469 +#: guix/scripts/system.scm:505 guix/scripts/home.scm:482 #, scheme-format msgid " file name: ~a~%" msgstr " nome de arquivo: ~a~%" -#: guix/scripts/system.scm:506 guix/scripts/home.scm:470 +#: guix/scripts/system.scm:506 guix/scripts/home.scm:483 #, scheme-format msgid " canonical file name: ~a~%" msgstr " nome de arquivo canônico: ~a~%" @@ -4443,12 +4546,12 @@ msgstr " multiboot: ~a~%" #. TRANSLATORS: Here "channel" is the same terminology as used in #. "guix describe" and "guix pull --channels". -#: guix/scripts/system.scm:536 guix/scripts/home.scm:476 +#: guix/scripts/system.scm:536 guix/scripts/home.scm:489 #, scheme-format msgid " channels:~%" msgstr " canais:~%" -#: guix/scripts/system.scm:539 guix/scripts/home.scm:479 +#: guix/scripts/system.scm:539 guix/scripts/home.scm:492 #, scheme-format msgid " configuration file: ~a~%" msgstr " arquivo de configuração: ~a~%" @@ -4503,17 +4606,17 @@ msgstr "Considere executar \"guix pull\" antes de \"reconfigure\".~%" msgid "Failing to do that may downgrade your system!~%" msgstr "Falhar em fazer isso pode fazer um downgrade de seu sistema!~%" -#: guix/scripts/system.scm:754 guix/scripts/system.scm:863 +#: guix/scripts/system.scm:754 guix/scripts/system.scm:864 #, scheme-format msgid "bootloader successfully installed on '~a'~%" msgstr "o carregador de inicialização foi instalado com sucesso sob \"~a\"~%" -#: guix/scripts/system.scm:856 +#: guix/scripts/system.scm:857 #, scheme-format msgid "activating system...~%" msgstr "ativando sistema...~%" -#: guix/scripts/system.scm:867 +#: guix/scripts/system.scm:868 msgid "" "To complete the upgrade, run 'herd restart SERVICE' to stop,\n" "upgrade, and restart each service that was not automatically restarted.\n" @@ -4521,25 +4624,25 @@ msgstr "" "Para concluir a atualização, execute \"herd restart SERVIÇO\" para parar,\n" "atualizar, reiniciar cada serviço que não foi reiniciado automaticamente.\n" -#: guix/scripts/system.scm:870 +#: guix/scripts/system.scm:871 msgid "Run 'herd status' to view the list of services on your system.\n" msgstr "Execute \"herd status\" para ver a lista de serviços em seu sistema.\n" -#: guix/scripts/system.scm:874 +#: guix/scripts/system.scm:875 #, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "inicializando sistema operacional sob \"~a\"...~%" -#: guix/scripts/system.scm:894 guix/scripts/graph.scm:437 +#: guix/scripts/system.scm:895 guix/scripts/graph.scm:437 #, scheme-format msgid "~a: unknown backend~%" msgstr "~a: backend desconhecido~%" -#: guix/scripts/system.scm:931 +#: guix/scripts/system.scm:932 msgid "The available image types are:\n" msgstr "Os tipos de imagem disponíveis são:\n" -#: guix/scripts/system.scm:941 +#: guix/scripts/system.scm:942 msgid "" "Usage: guix system [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the operating system declared in FILE according to ACTION.\n" @@ -4549,71 +4652,71 @@ msgstr "" "Compilação do sistema operacional declarado em ARQUIVO de acordo com AÇÃO.\n" "Algumas AÇÕES fornecem suporte adicional a ARGUMENTOS.\n" -#: guix/scripts/system.scm:947 +#: guix/scripts/system.scm:948 msgid " search search for existing service types\n" msgstr " search pesquisa por tipos de serviços existentes\n" -#: guix/scripts/system.scm:949 +#: guix/scripts/system.scm:950 msgid " reconfigure switch to a new operating system configuration\n" msgstr " reconfigure alterna para configuração de um novo sistema operacional\n" -#: guix/scripts/system.scm:951 +#: guix/scripts/system.scm:952 msgid " roll-back switch to the previous operating system configuration\n" msgstr " roll-back alterna para a configuração de sistema operacional anterior\n" -#: guix/scripts/system.scm:953 +#: guix/scripts/system.scm:954 msgid " describe describe the current system\n" msgstr " describe descreve o sistema atual\n" -#: guix/scripts/system.scm:955 +#: guix/scripts/system.scm:956 msgid " list-generations list the system generations\n" msgstr " list-generations lista as gerações do sistema\n" -#: guix/scripts/system.scm:957 +#: guix/scripts/system.scm:958 msgid " switch-generation switch to an existing operating system configuration\n" msgstr " switch-generation alterna para uma configuração de sistema operacional existente\n" -#: guix/scripts/system.scm:959 +#: guix/scripts/system.scm:960 msgid " delete-generations delete old system generations\n" msgstr " delete-generations excluir as gerações antigas do sistema\n" -#: guix/scripts/system.scm:961 +#: guix/scripts/system.scm:962 msgid " build build the operating system without installing anything\n" msgstr " build compila o sistema operacional sem instalador nada\n" -#: guix/scripts/system.scm:963 +#: guix/scripts/system.scm:964 msgid " container build a container that shares the host's store\n" msgstr "" " container compila um contêiner que compartilha\n" " o armazém do hospedeiro\n" -#: guix/scripts/system.scm:965 +#: guix/scripts/system.scm:966 msgid " vm build a virtual machine image that shares the host's store\n" msgstr "" " vm compila uma imagem de máquina virtual que compartilha\n" " o armazém do hospedeiro\n" -#: guix/scripts/system.scm:967 +#: guix/scripts/system.scm:968 msgid " image build a Guix System image\n" msgstr " image compila uma imagem de Guix System\n" -#: guix/scripts/system.scm:969 +#: guix/scripts/system.scm:970 msgid " docker-image build a Docker image\n" msgstr " docker-image compila uma imagem de Docker\n" -#: guix/scripts/system.scm:971 +#: guix/scripts/system.scm:972 msgid " init initialize a root file system to run GNU\n" msgstr " init inicializa um sistema de arquivos raiz para executar GNU\n" -#: guix/scripts/system.scm:973 +#: guix/scripts/system.scm:974 msgid " extension-graph emit the service extension graph in Dot format\n" msgstr " extension-graph emite o grafo da extensão de serviço no formato Dot\n" -#: guix/scripts/system.scm:975 +#: guix/scripts/system.scm:976 msgid " shepherd-graph emit the graph of shepherd services in Dot format\n" msgstr " shepherd-graph emite o grafo de serviços do shepherd no formato Dot\n" -#: guix/scripts/system.scm:979 +#: guix/scripts/system.scm:980 msgid "" "\n" " -d, --derivation return the derivation of the given system" @@ -4621,7 +4724,7 @@ msgstr "" "\n" " -d, --derivation retorna a derivação do sistema dado" -#: guix/scripts/system.scm:981 +#: guix/scripts/system.scm:982 msgid "" "\n" " -e, --expression=EXPR consider the operating-system EXPR evaluates to\n" @@ -4631,7 +4734,7 @@ msgstr "" " -e, --expression=EXPR considera o sistema operacional para o qual EXPR\n" " avalia em vez de ler ARQUIVO, quando aplicável" -#: guix/scripts/system.scm:984 +#: guix/scripts/system.scm:985 guix/scripts/home.scm:95 msgid "" "\n" " --allow-downgrades for 'reconfigure', allow downgrades to earlier\n" @@ -4641,7 +4744,7 @@ msgstr "" " --allow-downgrades para \"reconfigure\", permite desatualizar para\n" " revisões de canal anteriores" -#: guix/scripts/system.scm:987 +#: guix/scripts/system.scm:988 msgid "" "\n" " --on-error=STRATEGY\n" @@ -4653,7 +4756,7 @@ msgstr "" " aplica ESTRATÉGIA (podendo ser nothing-special,\n" " backtrace ou debug) ocorrer um erro ao ler ARQUIVO" -#: guix/scripts/system.scm:991 +#: guix/scripts/system.scm:992 msgid "" "\n" " --list-image-types list available image types" @@ -4661,7 +4764,7 @@ msgstr "" "\n" " --list-image-types lista os tipos de imagem disponíveis" -#: guix/scripts/system.scm:993 +#: guix/scripts/system.scm:994 msgid "" "\n" " -t, --image-type=TYPE for 'image', produce an image of TYPE" @@ -4669,7 +4772,7 @@ msgstr "" "\n" " --image-type=TIPO para \"image\", produz uma imagem de TIPO" -#: guix/scripts/system.scm:995 +#: guix/scripts/system.scm:996 msgid "" "\n" " --image-size=SIZE for 'image', produce an image of SIZE" @@ -4677,7 +4780,7 @@ msgstr "" "\n" " --image-size=TAM para \"image\", produz uma imagem de TAM" -#: guix/scripts/system.scm:997 +#: guix/scripts/system.scm:998 msgid "" "\n" " --no-bootloader for 'init', do not install a bootloader" @@ -4685,7 +4788,7 @@ msgstr "" "\n" " --no-bootloader para \"init\", não instala um carregador de inic." -#: guix/scripts/system.scm:999 +#: guix/scripts/system.scm:1000 msgid "" "\n" " --volatile for 'image', make the root file system volatile" @@ -4693,7 +4796,19 @@ msgstr "" "\n" " --volatile para \"image\", torna o sistema de arquivos raiz volátil" -#: guix/scripts/system.scm:1001 +#: guix/scripts/system.scm:1002 +#, fuzzy +#| msgid "" +#| "\n" +#| " --volatile for 'image', make the root file system volatile" +msgid "" +"\n" +" --persistent for 'vm', make the root file system persistent" +msgstr "" +"\n" +" --volatile para \"image\", torna o sistema de arquivos raiz volátil" + +#: guix/scripts/system.scm:1004 msgid "" "\n" " --label=LABEL for 'image', label disk image with LABEL" @@ -4701,7 +4816,7 @@ msgstr "" "\n" " --label=RÓTULO para \"image\", rotula a imagem de disco com RÓTULO" -#: guix/scripts/system.scm:1003 guix/scripts/pack.scm:1340 +#: guix/scripts/system.scm:1006 guix/scripts/pack.scm:1340 msgid "" "\n" " --save-provenance save provenance information" @@ -4709,7 +4824,7 @@ msgstr "" "\n" " --save-provenance salva informações proveniência" -#: guix/scripts/system.scm:1005 +#: guix/scripts/system.scm:1008 msgid "" "\n" " --share=SPEC for 'vm' and 'container', share host file system with\n" @@ -4719,7 +4834,7 @@ msgstr "" " --share=ESPEC para \"vm\" e \"container\", compartilha o sistema de arquivos do\n" " hospedeiro com acesso de leitura/escrita de acordo com ESPEC" -#: guix/scripts/system.scm:1008 +#: guix/scripts/system.scm:1011 msgid "" "\n" " --expose=SPEC for 'vm' and 'container', expose host file system\n" @@ -4730,7 +4845,7 @@ msgstr "" " sistema de arquivos do hospedeiro como somente leitura\n" " de acordo com ESPEC" -#: guix/scripts/system.scm:1011 +#: guix/scripts/system.scm:1014 msgid "" "\n" " -N, --network for 'container', allow containers to access the network" @@ -4738,7 +4853,7 @@ msgstr "" "\n" " -N, --network para \"container\", permite que contêineres acessem a rede" -#: guix/scripts/system.scm:1013 +#: guix/scripts/system.scm:1016 msgid "" "\n" " -r, --root=FILE for 'vm', 'image', 'container' and 'build',\n" @@ -4750,7 +4865,7 @@ msgstr "" " faz do ARQUIVO um link simbólico para o resultado\n" " e o registra como uma raiz do coletor de lixo" -#: guix/scripts/system.scm:1017 +#: guix/scripts/system.scm:1020 msgid "" "\n" " --full-boot for 'vm', make a full boot sequence" @@ -4759,13 +4874,13 @@ msgstr "" " --full-boot para \"vm\", faz uma sequência completa de\n" " inicialização" -#: guix/scripts/system.scm:1019 +#: guix/scripts/system.scm:1022 msgid "" "\n" " --no-graphic for 'vm', use the tty that we are started in for IO" msgstr "" -#: guix/scripts/system.scm:1021 +#: guix/scripts/system.scm:1024 msgid "" "\n" " --skip-checks skip file system and initrd module safety checks" @@ -4774,7 +4889,7 @@ msgstr "" " --skip-checks ignora verificações de segurança do sistema de\n" " arquivos e de módulo de initrd" -#: guix/scripts/system.scm:1028 +#: guix/scripts/system.scm:1031 msgid "" "\n" " --graph-backend=BACKEND\n" @@ -4784,57 +4899,57 @@ msgstr "" " --graph-backend=BACKEND\n" " usa BACKEND para \"extension-graphs\" e \"shepherd-graph\"" -#: guix/scripts/system.scm:1180 +#: guix/scripts/system.scm:1187 #, scheme-format msgid "'~a' does not return an operating system or an image~%" msgstr "\"~a\" não retorna um sistema operacional ou uma imagem~%" -#: guix/scripts/system.scm:1204 guix/scripts/home.scm:216 +#: guix/scripts/system.scm:1211 guix/scripts/home.scm:230 #, scheme-format msgid "both file and expression cannot be specified~%" msgstr "não podem ser especificados arquivo e expressão~%" -#: guix/scripts/system.scm:1211 guix/scripts/home.scm:223 +#: guix/scripts/system.scm:1218 guix/scripts/home.scm:237 #, scheme-format msgid "no configuration specified~%" msgstr "nenhuma configuração especificada~%" -#: guix/scripts/system.scm:1319 guix/scripts/system.scm:1335 -#: guix/scripts/system.scm:1342 guix/scripts/system.scm:1348 -#: guix/scripts/home.scm:274 guix/scripts/home.scm:296 -#: guix/scripts/home.scm:301 guix/scripts/home.scm:307 -#: guix/scripts/home.scm:314 guix/scripts/import/gnu.scm:100 +#: guix/scripts/system.scm:1328 guix/scripts/system.scm:1344 +#: guix/scripts/system.scm:1351 guix/scripts/system.scm:1357 +#: guix/scripts/home.scm:287 guix/scripts/home.scm:309 +#: guix/scripts/home.scm:314 guix/scripts/home.scm:320 +#: guix/scripts/home.scm:327 guix/scripts/import/gnu.scm:100 #: guix/scripts/offload.scm:836 guix/scripts/offload.scm:848 #, scheme-format msgid "wrong number of arguments~%" msgstr "número errado de argumentos~%" -#: guix/scripts/system.scm:1324 +#: guix/scripts/system.scm:1333 #, scheme-format msgid "no system generation, nothing to describe~%" msgstr "nenhuma geração de sistema, nada para descrever~%" -#: guix/scripts/system.scm:1367 guix/scripts/home.scm:337 +#: guix/scripts/system.scm:1376 guix/scripts/home.scm:350 #, scheme-format msgid "~a: unknown action~%" msgstr "~a: ação desconhecida~%" -#: guix/scripts/system.scm:1387 guix/scripts/home.scm:353 +#: guix/scripts/system.scm:1396 guix/scripts/home.scm:366 #, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "número errado de argumentos para a ação \"~a\"~%" -#: guix/scripts/system.scm:1392 +#: guix/scripts/system.scm:1401 #, scheme-format msgid "guix system: missing command name~%" msgstr "guix system: faltando um nome de comando~%" -#: guix/scripts/system.scm:1394 +#: guix/scripts/system.scm:1403 #, scheme-format msgid "Try 'guix system --help' for more information.~%" msgstr "Tente \"guix system --help\" para mais informações.~%" -#: guix/scripts/system/search.scm:93 guix/ui.scm:1541 guix/ui.scm:1559 +#: guix/scripts/system/search.scm:93 guix/ui.scm:1544 guix/ui.scm:1562 msgid "unknown" msgstr "desconhecido" @@ -5303,7 +5418,7 @@ msgstr "" " --path mostra o caminho mais curto entre os nós dados" #: guix/scripts/graph.scm:548 guix/scripts/pack.scm:1325 -#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:502 +#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:797 msgid "" "\n" " -e, --expression=EXPR consider the package EXPR evaluates to" @@ -6008,7 +6123,7 @@ msgstr "" "\n" " -f, --format=FORMATO exibe resultados como conjuntos de registros normalizados" -#: guix/scripts/deploy.scm:51 +#: guix/scripts/deploy.scm:54 msgid "" "Usage: guix deploy [OPTION] FILE...\n" "Perform the deployment specified by FILE.\n" @@ -6016,38 +6131,85 @@ msgstr "" "Uso: guix deploy [OPÇÃO] ARQUIVO...\n" "Realiza a implantação especificada por ARQUIVO.\n" -#: guix/scripts/deploy.scm:108 +#: guix/scripts/deploy.scm:63 +#, fuzzy +#| msgid " exec execute a command inside of an existing container\n" +msgid "" +"\n" +" -x, --execute execute the following command on all the machines" +msgstr " exec executa comando dentro de um contêiner existente\n" + +#: guix/scripts/deploy.scm:117 #, scheme-format msgid "The following ~d machine will be deployed:~%" msgid_plural "The following ~d machines will be deployed:~%" msgstr[0] "A seguinte ~d máquina será removida:~%" msgstr[1] "As seguintes ~d máquinas serão removidas:~%" -#: guix/scripts/deploy.scm:122 +#: guix/scripts/deploy.scm:131 #, scheme-format msgid "deploying to ~a...~%" msgstr "implantando em ~a...~%" -#: guix/scripts/deploy.scm:134 guix/scripts/deploy.scm:138 +#: guix/scripts/deploy.scm:143 guix/scripts/deploy.scm:147 #, scheme-format msgid "failed to deploy ~a: ~a~%" msgstr "falha ao implantar ~a: ~a~%" -#: guix/scripts/deploy.scm:146 +#: guix/scripts/deploy.scm:155 #, scheme-format msgid "rolling back ~a...~%" msgstr "revertendo ~a...~%" -#: guix/scripts/deploy.scm:152 +#: guix/scripts/deploy.scm:161 #, scheme-format msgid "successfully deployed ~a~%" msgstr "implantado com sucesso ~a~%" -#: guix/scripts/deploy.scm:167 +#: guix/scripts/deploy.scm:212 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command succeeded~%" +msgstr "guix: ~a: comando não encontrado~%" + +#: guix/scripts/deploy.scm:215 +#, fuzzy, scheme-format +#| msgid "Command failed with exit code ~a.~%" +msgid "~a: command exited with code ~a~%" +msgstr "O comando falhou com código de saída ~a.~%" + +#: guix/scripts/deploy.scm:218 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command stopped with signal ~a~%" +msgstr "guix: ~a: comando não encontrado~%" + +#: guix/scripts/deploy.scm:221 +#, fuzzy, scheme-format +#| msgid "~a: consider removing this input: ~a~%" +msgid "~a: command terminated with signal ~a~%" +msgstr "~a: considere remover esta entrada: ~a~%" + +#: guix/scripts/deploy.scm:225 #, fuzzy, scheme-format -#| msgid "missing store item argument\n" +#| msgid "guix: ~a: command not found~%" +msgid "command output on ~a:~%" +msgstr "guix: ~a: comando não encontrado~%" + +#: guix/scripts/deploy.scm:246 +#, scheme-format msgid "missing deployment file argument~%" -msgstr "faltando item do armazém como argumento\n" +msgstr "argumento de arquivo de implantação ausente~%" + +#: guix/scripts/deploy.scm:249 +#, scheme-format +msgid "'--' was used by '-x' was not specified~%" +msgstr "" + +#: guix/scripts/deploy.scm:271 +#, scheme-format +msgid "'-x' specified but no command given~%" +msgstr "" #: guix/gexp.scm:465 #, scheme-format @@ -6145,75 +6307,75 @@ msgstr "processo inexistente ~d~%" msgid "exec failed with status ~d~%" msgstr "execução falhou com status ~d~%" -#: guix/transformations.scm:185 guix/transformations.scm:253 +#: guix/transformations.scm:186 guix/transformations.scm:254 #, scheme-format msgid "invalid replacement specification: ~s" msgstr "especificação de substituição inválida: ~s" -#: guix/transformations.scm:234 +#: guix/transformations.scm:235 #, scheme-format msgid "the source of ~a is not a Git reference" msgstr "a fonte de ~a não é uma referência Git" -#: guix/transformations.scm:337 +#: guix/transformations.scm:338 #, scheme-format msgid "~a: invalid Git URL replacement specification" msgstr "~a: especificação de substituição de URL Git inválida" -#: guix/transformations.scm:415 +#: guix/transformations.scm:416 #, scheme-format msgid "~a: invalid toolchain replacement specification" msgstr "~a: especificação de substituição de conjunto de ferramentas (toolchain) inválida" -#: guix/transformations.scm:517 +#: guix/transformations.scm:518 #, fuzzy #| msgid "failed to determine origin~%" msgid "failed to determine which compiler is used" msgstr "falha ao determinar a origem~%" -#: guix/transformations.scm:523 +#: guix/transformations.scm:524 #, fuzzy, scheme-format #| msgid "could not determine latest upstream release of '~a'~%" msgid "failed to determine whether ~a supports ~a" msgstr "não foi possível determinar a versão upstream mais recente de \"~a\"~%" -#: guix/transformations.scm:529 +#: guix/transformations.scm:530 #, scheme-format msgid "compiler ~a does not support micro-architecture ~a" msgstr "" -#: guix/transformations.scm:581 +#: guix/transformations.scm:582 #, fuzzy, scheme-format #| msgid "~a: error: ~a~%" msgid "tuning ~a for CPU ~a~%" msgstr "~a: erro: ~a~%" -#: guix/transformations.scm:721 +#: guix/transformations.scm:722 #, scheme-format msgid "~a: invalid package patch specification" msgstr "~a: especificação de patch de pacote inválida" -#: guix/transformations.scm:744 +#: guix/transformations.scm:745 #, scheme-format msgid "could not determine latest upstream release of '~a'~%" msgstr "não foi possível determinar a versão upstream mais recente de \"~a\"~%" -#: guix/transformations.scm:752 +#: guix/transformations.scm:753 #, scheme-format msgid "cannot authenticate source of '~a', version ~a~%" msgstr "não foi possível autenticar origem de \"~a\", versão ~a~%" -#: guix/transformations.scm:833 +#: guix/transformations.scm:840 #, scheme-format msgid "building for ~a instead of ~a, so tuning cannot be guessed~%" msgstr "" -#: guix/transformations.scm:859 +#: guix/transformations.scm:866 #, scheme-format msgid "Available package transformation options:~%" msgstr "Opções de transformação de pacotes disponíveis:~%" -#: guix/transformations.scm:865 +#: guix/transformations.scm:872 msgid "" "\n" " --with-source=[PACKAGE=]SOURCE\n" @@ -6223,7 +6385,7 @@ msgstr "" " --with-source=[PACOTE=]FONTE\n" " usa FONTE ao compilar o pacote correspondente" -#: guix/transformations.scm:868 +#: guix/transformations.scm:875 msgid "" "\n" " --with-input=PACKAGE=REPLACEMENT\n" @@ -6233,7 +6395,7 @@ msgstr "" " --with-input=PACOTE=SUBSTITUIÇÃO\n" " substitui a dependência PACOTE por SUBSTITUIÇÃO" -#: guix/transformations.scm:871 +#: guix/transformations.scm:878 msgid "" "\n" " --with-graft=PACKAGE=REPLACEMENT\n" @@ -6243,7 +6405,7 @@ msgstr "" " --with-graft=PACOTE=SUBSTITUIÇÃO\n" " enxerta SUBSTITUIÇÃO em pacotes referindo-se a PACOTE" -#: guix/transformations.scm:874 +#: guix/transformations.scm:881 msgid "" "\n" " --with-branch=PACKAGE=BRANCH\n" @@ -6253,7 +6415,7 @@ msgstr "" " --with-branch=PACOTE=RAMO\n" " compila PACOTE do último commit de BRANCH" -#: guix/transformations.scm:877 +#: guix/transformations.scm:884 msgid "" "\n" " --with-commit=PACKAGE=COMMIT\n" @@ -6263,7 +6425,7 @@ msgstr "" " --with-commit=PACOTE=COMMIT\n" " compila PACOTE do COMMIT" -#: guix/transformations.scm:880 +#: guix/transformations.scm:887 msgid "" "\n" " --with-git-url=PACKAGE=URL\n" @@ -6273,7 +6435,7 @@ msgstr "" " --with-git-url=PACKAGE=URL\n" " compila PACOTE de repositório na URL" -#: guix/transformations.scm:883 +#: guix/transformations.scm:890 msgid "" "\n" " --with-patch=PACKAGE=FILE\n" @@ -6283,7 +6445,7 @@ msgstr "" " --with-patch=PACOTE=ARQUIVO\n" " adiciona ARQUIVO à lista de patches de PACOTE" -#: guix/transformations.scm:886 +#: guix/transformations.scm:893 msgid "" "\n" " --with-latest=PACKAGE\n" @@ -6293,7 +6455,7 @@ msgstr "" " --with-latest=PACOTE\n" " usa a versão upstream mais recente de PACOTE" -#: guix/transformations.scm:889 +#: guix/transformations.scm:896 msgid "" "\n" " --with-c-toolchain=PACKAGE=TOOLCHAIN\n" @@ -6303,7 +6465,7 @@ msgstr "" " --with-c-toolchain=PACOTE=CONJUNTO-DE-FERRAMENTAS\n" " compila PACOTE e seus dependentes com CONJUNTO-DE-FERRAMENTAS" -#: guix/transformations.scm:892 +#: guix/transformations.scm:899 msgid "" "\n" " --with-debug-info=PACKAGE\n" @@ -6313,7 +6475,7 @@ msgstr "" " --with-debug-info=PACOTE\n" " compila PACOTE e preserva suas informações de depuração" -#: guix/transformations.scm:895 +#: guix/transformations.scm:902 msgid "" "\n" " --without-tests=PACKAGE\n" @@ -6323,7 +6485,7 @@ msgstr "" " --without-tests=PACKAGE\n" " compila PACOTE sem rodar seus testes" -#: guix/transformations.scm:901 +#: guix/transformations.scm:908 msgid "" "\n" " --help-transform list package transformation options not shown here" @@ -6331,7 +6493,7 @@ msgstr "" "\n" " --help-transform lista opções de transformação de pacote não mostradas aqui" -#: guix/transformations.scm:950 +#: guix/transformations.scm:957 #, scheme-format msgid "transformation '~a' had no effect on ~a~%" msgstr "a transformação \"~a\" não obteve efeito em ~a~%" @@ -6461,7 +6623,6 @@ msgid "failed to load '~a': exception thrown: ~s~%" msgstr "falha ao carregar \"~a\": exceção lançada: ~s~%" #: guix/ui.scm:487 -#, fuzzy msgid "" "Consider installing the @code{glibc-locales} package\n" "and defining @code{GUIX_LOCPATH}, along these lines:\n" @@ -6473,16 +6634,15 @@ msgid "" "\n" "See the \"Application Setup\" section in the manual, for more info.\n" msgstr "" -"Considere instalar o pacote @code{glibc-utf8-locales} ou\n" -"@code{glibc-locales} e definir @code{GUIX_LOCPATH},\n" -"algo como o seguinte:\n" +"Considere instalar o pacote @code{glibc-locales}\n" +"e definindo @code{GUIX_LOCPATH}, seguindo estas linhas:\n" "\n" "@example\n" -"guix install glibc-utf8-locales\n" +"guix instalar glibc-locales\n" "export GUIX_LOCPATH=\"$HOME/.guix-profile/lib/locale\"\n" "@end example\n" "\n" -"Veja a seção \"Application Setup\" no manual para mais informações.\n" +"Consulte a seção \"Configuração do aplicativo\" no manual para obter mais informações.\n" #. TRANSLATORS: Translate "(C)" to the copyright symbol #. (C-in-a-circle), if this symbol is available in the user's @@ -6843,12 +7003,12 @@ msgstr[1] "Os seguintes pacotes serão instalados:~%~{~a~%~}~%" msgid "~a: invalid Texinfo markup~%" msgstr "~a: número inválido~%" -#: guix/ui.scm:1873 +#: guix/ui.scm:1876 #, scheme-format msgid "invalid syntax: ~a~%" msgstr "sintaxe inválida: ~a~%" -#: guix/ui.scm:1882 +#: guix/ui.scm:1885 #, scheme-format msgid "Generation ~a\t~a" msgstr "Geração ~a\t~a" @@ -6858,7 +7018,7 @@ msgstr "Geração ~a\t~a" #. usual way of presenting dates in your locale. #. See https://www.gnu.org/software/guile/manual/html_node/SRFI_002d19-Date-to-string.html #. for details. -#: guix/ui.scm:1892 +#: guix/ui.scm:1895 #, scheme-format msgid "~b ~d ~Y ~T" msgstr "~d ~b ~Y ~T" @@ -6866,38 +7026,38 @@ msgstr "~d ~b ~Y ~T" #. TRANSLATORS: The word "current" here is an adjective for #. "Generation", as in "current generation". Use the appropriate #. gender where applicable. -#: guix/ui.scm:1898 +#: guix/ui.scm:1901 #, scheme-format msgid "~a\t(current)~%" msgstr "~a\t(atual)~%" -#: guix/ui.scm:1932 +#: guix/ui.scm:1935 #, scheme-format msgid "cannot lock profile ~a: ~a~%" msgstr "não foi possível bloquear o perfil ~a: ~a~%" -#: guix/ui.scm:1934 +#: guix/ui.scm:1937 #, scheme-format msgid "profile ~a is locked by another process~%" msgstr "o perfil ~a está bloqueado por outro processo~%" # geração, criação? -#: guix/ui.scm:1963 +#: guix/ui.scm:1966 #, scheme-format msgid "switched from generation ~a to ~a~%" msgstr "trocado da geração ~a para ~a~%" -#: guix/ui.scm:1979 +#: guix/ui.scm:1982 #, scheme-format msgid "deleting ~a~%" msgstr "excluindo ~a~%" -#: guix/ui.scm:2010 +#: guix/ui.scm:2013 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "Tente \"guix --help\" para mais informações.~%" -#: guix/ui.scm:2102 +#: guix/ui.scm:2105 #, fuzzy #| msgid "" #| "Usage: guix COMMAND ARGS...\n" @@ -6909,7 +7069,7 @@ msgstr "" "Uso: guix COMANDO ARGUMENTOS...\n" "Executa COMANDO com ARGUMENTOS.\n" -#: guix/ui.scm:2105 +#: guix/ui.scm:2108 #, fuzzy #| msgid "" #| "\n" @@ -6921,7 +7081,7 @@ msgstr "" "\n" " -h, --help exibe esta ajuda e sai" -#: guix/ui.scm:2107 +#: guix/ui.scm:2110 #, fuzzy #| msgid "" #| "\n" @@ -6933,26 +7093,26 @@ msgstr "" "\n" " -V, --version exibe informações da versão e sai" -#: guix/ui.scm:2112 +#: guix/ui.scm:2115 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "COMANDO deve ser um dos subcomandos listados abaixo:\n" -#: guix/ui.scm:2154 +#: guix/ui.scm:2157 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "guix: ~a: comando não encontrado~%" -#: guix/ui.scm:2156 +#: guix/ui.scm:2159 #, scheme-format msgid "Did you mean @code{~a}?" msgstr "Você quis dizer @code{~a}?" -#: guix/ui.scm:2190 +#: guix/ui.scm:2193 #, scheme-format msgid "guix: missing command name~%" msgstr "guix: faltando um nome de comando~%" -#: guix/ui.scm:2198 +#: guix/ui.scm:2201 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "guix: opção \"~a\" desconhecida~%" @@ -7294,22 +7454,22 @@ msgstr "" msgid "unsupported manifest format" msgstr "sem suporte ao formato de manifesto" -#: guix/profiles.scm:2242 +#: guix/profiles.scm:2247 #, scheme-format msgid "while creating directory `~a': ~a" msgstr "ao criar diretório \"~a\": ~a" -#: guix/profiles.scm:2247 +#: guix/profiles.scm:2252 #, scheme-format msgid "Please create the @file{~a} directory, with you as the owner." msgstr "Por favor, crie o diretório @file{~a}, com você sendo o proprietário." -#: guix/profiles.scm:2256 +#: guix/profiles.scm:2261 #, scheme-format msgid "directory `~a' is not owned by you" msgstr "diretório \"~a\" não tem você como proprietário" -#: guix/profiles.scm:2260 +#: guix/profiles.scm:2265 #, scheme-format msgid "Please change the owner of @file{~a} to user ~s." msgstr "Por favor, altere o proprietário d @file{~a} para o usuário ~s." @@ -8024,12 +8184,17 @@ msgstr "\"--no-cwd\" não pode ser usado sem \"--container\"~%" msgid "'--profile' cannot be used with package options~%" msgstr "\"--profile\" não pode ser usado com opções de pacote~%" -#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:275 +#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:261 #, fuzzy, scheme-format #| msgid "no packages specified; building an empty pack~%" msgid "no packages specified; creating an empty environment~%" msgstr "nenhum pacote especificado; compilando um pacote vazio~%" +#: guix/scripts/environment.scm:979 +#, scheme-format +msgid "'--check' is unnecessary when using '--container'; doing nothing~%" +msgstr "" + #: guix/scripts/home/import.scm:179 #, fuzzy #| msgid "" @@ -8051,7 +8216,7 @@ msgstr "" ";; você também precisa capturar os canais sendo usados, conforme\n" ";; retornado por \"guix describe\". Veja a seção \"Replicating Guix\" no manual.\n" -#: guix/scripts/home.scm:65 +#: guix/scripts/home.scm:66 #, fuzzy #| msgid "" #| "Usage: guix system [OPTION ...] ACTION [ARG ...] [FILE]\n" @@ -8066,59 +8231,59 @@ msgstr "" "Compilação do sistema operacional declarado em ARQUIVO de acordo com AÇÃO.\n" "Algumas AÇÕES fornecem suporte adicional a ARGUMENTOS.\n" -#: guix/scripts/home.scm:71 +#: guix/scripts/home.scm:72 #, fuzzy #| msgid " search search for existing service types\n" msgid " search search for existing service types\n" msgstr " search pesquisa por tipos de serviços existentes\n" -#: guix/scripts/home.scm:73 +#: guix/scripts/home.scm:74 #, fuzzy #| msgid " reconfigure switch to a new operating system configuration\n" msgid " reconfigure switch to a new home environment configuration\n" msgstr " reconfigure alterna para configuração de um novo sistema operacional\n" -#: guix/scripts/home.scm:75 +#: guix/scripts/home.scm:76 #, fuzzy #| msgid " roll-back switch to the previous operating system configuration\n" msgid " roll-back switch to the previous home environment configuration\n" msgstr " roll-back alterna para a configuração de sistema operacional anterior\n" -#: guix/scripts/home.scm:77 +#: guix/scripts/home.scm:78 #, fuzzy #| msgid " describe describe the current system\n" msgid " describe describe the current home environment\n" msgstr " describe descreve o sistema atual\n" -#: guix/scripts/home.scm:79 +#: guix/scripts/home.scm:80 #, fuzzy #| msgid " list-generations list the system generations\n" msgid " list-generations list the home environment generations\n" msgstr " list-generations lista as gerações do sistema\n" -#: guix/scripts/home.scm:81 +#: guix/scripts/home.scm:82 #, fuzzy #| msgid " switch-generation switch to an existing operating system configuration\n" msgid " switch-generation switch to an existing home environment configuration\n" msgstr " switch-generation alterna para uma configuração de sistema operacional existente\n" -#: guix/scripts/home.scm:83 +#: guix/scripts/home.scm:84 #, fuzzy #| msgid " delete-generations delete old system generations\n" msgid " delete-generations delete old home environment generations\n" msgstr " delete-generations excluir as gerações antigas do sistema\n" -#: guix/scripts/home.scm:85 +#: guix/scripts/home.scm:86 #, fuzzy #| msgid " build build the operating system without installing anything\n" msgid " build build the home environment without installing anything\n" msgstr " build compila o sistema operacional sem instalador nada\n" -#: guix/scripts/home.scm:87 +#: guix/scripts/home.scm:88 msgid " import generates a home environment definition from dotfiles\n" msgstr "" -#: guix/scripts/home.scm:91 +#: guix/scripts/home.scm:92 #, fuzzy #| msgid "" #| "\n" @@ -8133,45 +8298,45 @@ msgstr "" " -e, --expression=EXPR considera o sistema operacional para o qual EXPR\n" " avalia em vez de ler ARQUIVO, quando aplicável" -#: guix/scripts/home.scm:196 +#: guix/scripts/home.scm:210 #, fuzzy, scheme-format #| msgid "'~a' does not return an operating system or an image~%" msgid "'~a' does not return a home environment ~%" msgstr "\"~a\" não retorna um sistema operacional ou uma imagem~%" -#: guix/scripts/home.scm:280 +#: guix/scripts/home.scm:293 #, fuzzy, scheme-format #| msgid "failed to re-install GRUB configuration file: '~a'~%" msgid "'~a' populated with all the Home configuration files~%" msgstr "falha ao reinstalar o arquivo de configuração do GRUB: \"~a\"~%" -#: guix/scripts/home.scm:282 +#: guix/scripts/home.scm:295 #, scheme-format msgid "" "Run @command{guix home reconfigure ~a/home-configuration.scm} to effectively\n" "deploy the home environment described by these files.\n" msgstr "" -#: guix/scripts/home.scm:289 +#: guix/scripts/home.scm:302 #, fuzzy, scheme-format #| msgid "no system generation, nothing to describe~%" msgid "no home environment generation, nothing to describe~%" msgstr "nenhuma geração de sistema, nada para descrever~%" -#: guix/scripts/home.scm:358 +#: guix/scripts/home.scm:371 #, fuzzy, scheme-format #| msgid "guix: missing command name~%" msgid "guix home: missing command name~%" msgstr "guix: faltando um nome de comando~%" -#: guix/scripts/home.scm:360 +#: guix/scripts/home.scm:373 #, fuzzy, scheme-format #| msgid "Try `guix --help' for more information.~%" msgid "Try 'guix home --help' for more information.~%" msgstr "Tente \"guix --help\" para mais informações.~%" # geração, criação? -#: guix/scripts/home.scm:528 +#: guix/scripts/home.scm:541 #, fuzzy, scheme-format #| msgid "cannot switch to system generation '~a'~%" msgid "cannot switch to home environment generation '~a'~%" @@ -8219,7 +8384,7 @@ msgstr "" #: guix/scripts/import/cpan.scm:83 guix/scripts/import/crate.scm:97 #: guix/scripts/import/egg.scm:100 guix/scripts/import/gem.scm:98 -#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:100 +#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:101 #, scheme-format msgid "failed to download meta-data for package '~a'~%" msgstr "falha ao baixar metadados para o pacote \"~a\"~%" @@ -8323,7 +8488,7 @@ msgstr "" "\n" " --pin-versions usa as versões exatas das dependências de um módulo" -#: guix/scripts/import/go.scm:117 +#: guix/scripts/import/go.scm:118 #, fuzzy, scheme-format #| msgid "failed to download meta-data for module '~a'~%" msgid "failed to download meta-data for module '~a'.~%" @@ -8433,17 +8598,14 @@ msgstr "" "Importa e converte o pacote opam para NOME-DO-PACOTE.\n" #: guix/scripts/import/opam.scm:49 -#, fuzzy -#| msgid "" -#| "\n" -#| " --repo import packages from this opam repository" msgid "" "\n" " --repo import packages from this opam repository (name, URL or local path)\n" " can be used more than once" msgstr "" "\n" -" --repo importa pacotes deste repositório opam" +" --repo importa pacotes deste repositório opam (nome, URL ou caminho local)\n" +" pode ser usado mais de uma vez" #: guix/scripts/import/pypi.scm:44 msgid "" @@ -8479,6 +8641,12 @@ msgstr "" "Uso: guix import texlive NOME-DO-PACOTE\n" "Importa e converte o pacote Texlive para NOME-DO-PACOTE.\n" +#: guix/scripts/import/texlive.scm:84 +#, fuzzy, scheme-format +#| msgid "failed to download package '~a'~%" +msgid "failed to import package '~a'~%" +msgstr "falha ao baixar localidade: \"~a\"~%" + #: guix/scripts/offload.scm:130 #, scheme-format msgid "The 'system' field is deprecated, please use 'systems' instead.~%" @@ -8965,7 +9133,7 @@ msgstr "conexão fechada~%" msgid "~a: unknown type of REPL~%" msgstr "~a: tipo de REPL desconhecido~%" -#: guix/scripts/shell.scm:46 +#: guix/scripts/shell.scm:48 #, fuzzy #| msgid "" #| "Usage: guix environment [OPTION]... PACKAGE... [-- COMMAND...]\n" @@ -8980,7 +9148,7 @@ msgstr "" "Constrói um ambiente que inclui as dependências do PACOTE e executa\n" "COMANDO ou um shell interativo nesse ambiente.\n" -#: guix/scripts/shell.scm:52 +#: guix/scripts/shell.scm:54 #, fuzzy #| msgid "" #| "\n" @@ -8992,21 +9160,15 @@ msgstr "" "\n" " -d, --derivations retorna os caminhos de derivação dos pacotes dados" -#: guix/scripts/shell.scm:54 -#, fuzzy -#| msgid "" -#| "\n" -#| " -l, --load=FILE create environment for the package that the code within\n" -#| " FILE evaluates to" +#: guix/scripts/shell.scm:56 msgid "" "\n" " -f, --file=FILE add to the environment the package FILE evaluates to" msgstr "" "\n" -" -l, --load=ARQUIVO cria um ambiente para o pacote para o qual o código\n" -" dentro de ARQUIVO avalia" +" -f, --file=FILE adicionar ao ambiente o pacote FILE avalia" -#: guix/scripts/shell.scm:56 +#: guix/scripts/shell.scm:58 #, fuzzy #| msgid "" #| "\n" @@ -9018,30 +9180,29 @@ msgstr "" "\n" " -q inibe a carga de ~/.guile" -#: guix/scripts/shell.scm:58 +#: guix/scripts/shell.scm:60 msgid "" "\n" " --rebuild-cache rebuild cached environment, if any" msgstr "" -#: guix/scripts/shell.scm:199 -#, fuzzy, scheme-format -#| msgid " canonical file name: ~a~%" +#: guix/scripts/shell.scm:201 +#, scheme-format msgid "ignoring invalid file name: '~a'~%" -msgstr " nome de arquivo canônico: ~a~%" +msgstr "nome de arquivo canônico: ~a~%" -#: guix/scripts/shell.scm:280 +#: guix/scripts/shell.scm:266 #, fuzzy, scheme-format #| msgid "unloading service '~a'...~%" msgid "loading environment from '~a'...~%" msgstr "descarregando serviço \"~a\"...~%" -#: guix/scripts/shell.scm:286 +#: guix/scripts/shell.scm:272 #, scheme-format msgid "not loading '~a' because not authorized to do so~%" msgstr "" -#: guix/scripts/shell.scm:288 +#: guix/scripts/shell.scm:274 #, scheme-format msgid "" "To allow automatic loading of\n" @@ -9053,53 +9214,65 @@ msgid "" "@end example\n" msgstr "" -#: guix/scripts/shell.scm:386 +#: guix/scripts/shell.scm:431 msgid "" "Consider passing the @option{--check} option once\n" "to make sure your shell does not clobber environment variables." msgstr "" -#: guix/scripts/style.scm:241 +#: guix/scripts/style.scm:499 #, fuzzy, scheme-format #| msgid "~s: invalid G-expression input~%" msgid "~a: complex expression, bailing out~%" msgstr "~s: entrada de expressão G inválida~%" -#: guix/scripts/style.scm:259 +#: guix/scripts/style.scm:517 #, fuzzy, scheme-format #| msgid "module name ~a does not match file name '~a'~%" msgid "~a: input label '~a' does not match package name, bailing out~%" msgstr "o nome do módulo \"~a\" não corresponde a um nome de arquivo \"~a\"~%" -#: guix/scripts/style.scm:264 +#: guix/scripts/style.scm:522 #, scheme-format msgid "~a: non-trivial input, bailing out~%" msgstr "" -#: guix/scripts/style.scm:288 +#: guix/scripts/style.scm:546 #, fuzzy, scheme-format #| msgid "~s: invalid G-expression input~%" msgid "~a: input expression is too short~%" msgstr "~s: entrada de expressão G inválida~%" -#: guix/scripts/style.scm:380 +#: guix/scripts/style.scm:638 #, fuzzy, scheme-format #| msgid "~a: unsupported kind of search path~%" msgid "~a: unsupported input style, bailing out~%" msgstr "~a: sem suporte ao tipo de caminho de pesquisa~%" -#: guix/scripts/style.scm:392 +#: guix/scripts/style.scm:650 #, scheme-format msgid "would be edited~%" msgstr "" -#: guix/scripts/style.scm:482 +#: guix/scripts/style.scm:721 +#, fuzzy, scheme-format +#| msgid "failed to download description for package '~a'~%" +msgid "no definition location for package ~a~%" +msgstr "falha ao baixar descrição para o pacote \"~a\"~%" + +#: guix/scripts/style.scm:767 +#, fuzzy, scheme-format +#| msgid "~a: unknown action~%" +msgid "~a: unknown styling~%" +msgstr "~a: ação desconhecida~%" + +#: guix/scripts/style.scm:774 #, fuzzy, scheme-format #| msgid "~a: invalid symlink specification~%" msgid "~a: invalid input simplification policy~%" msgstr "~a: especificação de link simbólico inválida~%" -#: guix/scripts/style.scm:496 +#: guix/scripts/style.scm:788 #, fuzzy #| msgid "" #| "Usage: guix archive [OPTION]... PACKAGE...\n" @@ -9111,7 +9284,13 @@ msgstr "" "Uso: guix archive [OPÇÃO]... PACOTE...\n" "Exporta/importa um ou mais pacotes de/para o armazém.\n" -#: guix/scripts/style.scm:498 +#: guix/scripts/style.scm:790 +msgid "" +"\n" +" -S, --styling=RULE apply RULE, a styling rule" +msgstr "" + +#: guix/scripts/style.scm:793 #, fuzzy #| msgid "" #| "\n" @@ -9123,7 +9302,7 @@ msgstr "" "\n" " -n, --dry-run mostra o que seria feito sem fazê-lo" -#: guix/scripts/style.scm:504 +#: guix/scripts/style.scm:799 msgid "" "\n" " --input-simplification=POLICY\n" @@ -9274,6 +9453,16 @@ msgstr "ouve conexões no SOQUETE" msgid "produce debugging output" msgstr "produz saída de depuração" +#~ msgid "Please select a disk." +#~ msgstr "Por favor, selecione um disco." + +#, fuzzy +#~| msgid "failed to import '~a' from '~a'~%" +#~ msgid "" +#~ "Failed to import package ~s.\n" +#~ "reason: ~s.~%" +#~ msgstr "falha ao importar \"~a\" de \"~a\"~%" + #, fuzzy #~| msgid "the DAG of services" #~ msgid "Other services" @@ -9907,9 +10096,6 @@ msgstr "produz saída de depuração" #~ msgid "failed to build the empty profile~%" #~ msgstr "falha ao compilar o perfil vazio~%" -#~ msgid "~a: note: using ~a but ~a is available upstream~%" -#~ msgstr "~a: nota: usando ~a, mas ~a está disponível no upstream~%" - #~ msgid "(Please consider upgrading Guile to get proper progress report.)~%" #~ msgstr "(Por favor, considere atualizar o Guile para obter o relatório adequado do progresso.)~%" diff --git a/po/guix/ru.po b/po/guix/ru.po index fed517cd4f..32f3eb31e4 100644 --- a/po/guix/ru.po +++ b/po/guix/ru.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: GNU guix\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" "PO-Revision-Date: 2021-12-23 17:16+0000\n" "Last-Translator: Adam Kandur \n" "Language-Team: Russian \n" @@ -63,37 +63,37 @@ msgstr "" msgid "Try adding @code{(use-service-modules ~a)}." msgstr "Попробуйте добавить @code{(use-service-modules ~a)}." -#: gnu/packages.scm:96 +#: gnu/packages.scm:97 #, scheme-format msgid "~a: patch not found" msgstr "~a: патч не найден" -#: gnu/packages.scm:480 gnu/packages.scm:521 +#: gnu/packages.scm:481 gnu/packages.scm:522 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "двусмысленная спецификация пакета `~a'~%" -#: gnu/packages.scm:481 gnu/packages.scm:522 +#: gnu/packages.scm:482 gnu/packages.scm:523 #, scheme-format msgid "choosing ~a@~a from ~a~%" msgstr "выбираю ~a@~a из ~a~%" -#: gnu/packages.scm:486 guix/scripts/package.scm:216 +#: gnu/packages.scm:487 guix/scripts/package.scm:218 #, scheme-format msgid "package '~a' has been superseded by '~a'~%" msgstr "пакет '~a' был замещен на '~a'~%" -#: gnu/packages.scm:493 gnu/packages.scm:510 +#: gnu/packages.scm:494 gnu/packages.scm:511 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A: для пакета не найдена версия ~a~%" -#: gnu/packages.scm:494 gnu/packages.scm:511 +#: gnu/packages.scm:495 gnu/packages.scm:512 #, scheme-format msgid "~A: unknown package~%" msgstr "~A: неизвестный пакет~%" -#: gnu/packages.scm:550 +#: gnu/packages.scm:551 #, scheme-format msgid "package `~a' lacks output `~a'~%" msgstr "для пакета '~a' не найден результат '~a'~%" @@ -322,7 +322,7 @@ msgstr "" "Процессы, не прекратившиеся через несколько секунд после подачи сигнала\n" "@code{SIGTERM}, останавливают командой @code(SIGKILL)." -#: gnu/home/services.scm:127 +#: gnu/home/services.scm:128 #, fuzzy #| msgid "" #| "Build the operating system top-level directory, which in\n" @@ -338,7 +338,7 @@ msgstr "" "операционной системе: ядро, initrd, системные профили, скрипт\n" "автозапуска и так далее." -#: gnu/home/services.scm:158 +#: gnu/home/services.scm:159 #, scheme-format msgid "" "This is the @dfn{home profile} and can be found in\n" @@ -347,22 +347,22 @@ msgid "" "@code{home-environment} record." msgstr "" -#: gnu/home/services.scm:180 +#: gnu/home/services.scm:181 #, scheme-format msgid "duplicate definition for `~a' environment variable ~%" msgstr "" -#: gnu/home/services.scm:242 +#: gnu/home/services.scm:243 msgid "Set the environment variables." msgstr "" -#: gnu/home/services.scm:253 +#: gnu/home/services.scm:254 #, fuzzy, scheme-format #| msgid "duplicate '~a' entry for /etc" msgid "duplicate '~a' entry for files/" msgstr "дубликат записи '~a' для /etc" -#: gnu/home/services.scm:277 +#: gnu/home/services.scm:278 #, scheme-format msgid "" "Configuration files for programs that\n" @@ -371,7 +371,7 @@ msgstr "" #. TRANSLATORS: 'on-first-login' is the name of a service and #. shouldn't be translated -#: gnu/home/services.scm:308 +#: gnu/home/services.scm:309 msgid "" "XDG_RUNTIME_DIR doesn't exists, on-first-login script\n" "won't execute anything. You can check if xdg runtime directory exists,\n" @@ -379,13 +379,13 @@ msgid "" "script by running '$HOME/.guix-home/on-first-login'" msgstr "" -#: gnu/home/services.scm:328 +#: gnu/home/services.scm:329 msgid "" "Run gexps on first user login. Can be\n" "extended with one gexp." msgstr "" -#: gnu/home/services.scm:391 +#: gnu/home/services.scm:392 msgid "" "Run gexps to activate the current\n" "generation of home environment and update the state of the home\n" @@ -394,33 +394,33 @@ msgid "" "with one gexp, but many times, and all gexps must be idempotent." msgstr "" -#: gnu/home/services.scm:472 +#: gnu/home/services.scm:473 #, scheme-format msgid "" "Comparing ~a and\n" "~10t~a..." msgstr "" -#: gnu/home/services.scm:474 +#: gnu/home/services.scm:475 #, scheme-format msgid " done (~a)\n" msgstr "" #. TRANSLATORS: 'on-change' is the name of a service type, it #. probably shouldn't be translated. -#: gnu/home/services.scm:483 +#: gnu/home/services.scm:484 msgid "" "Evaluating on-change gexps.\n" "\n" msgstr "" -#: gnu/home/services.scm:485 +#: gnu/home/services.scm:486 msgid "" "On-change gexps evaluation finished.\n" "\n" msgstr "" -#: gnu/home/services.scm:499 +#: gnu/home/services.scm:500 msgid "" "G-expressions to run if the specified files have changed since the\n" "last generation. The extension should be a list of lists where the\n" @@ -428,7 +428,7 @@ msgid "" "changed, and the second element is the G-expression to be evaluated." msgstr "" -#: gnu/home/services.scm:519 +#: gnu/home/services.scm:520 #, fuzzy #| msgid "" #| "Store provenance information about the system in the system\n" @@ -707,12 +707,12 @@ msgstr "Загрузчик MELPA не поддерживается: ~a, возв msgid "Updater for ELPA packages" msgstr "Утилита обновления пакетов ELPA" -#: guix/import/github.scm:170 +#: guix/import/github.scm:175 #, scheme-format msgid "~a is unreachable (~a)~%" msgstr "~a недоступен (~a)~%" -#: guix/import/github.scm:260 +#: guix/import/github.scm:274 msgid "Updater for GitHub packages" msgstr "Утилита обновления пакетов GitHub" @@ -748,12 +748,23 @@ msgstr "не найден пакет GNU для ~a" msgid "failed to determine latest release of GNU ~a" msgstr "не удалось определить последний выпуск GNU ~a" -#: guix/import/go.scm:569 +#: guix/import/go.scm:571 #, scheme-format msgid "unsupported vcs type '~a' for package '~a'" msgstr "неподдерживаемый тип vcs '~a' для пакета '~a'" -#: guix/import/go.scm:647 +#: guix/import/go.scm:594 +#, fuzzy, scheme-format +#| msgid "input '~a' of ~a is in Perl core~%" +msgid "version ~a of ~a is not available~%" +msgstr "ввод «~a» из ~a находится в ядре Perl ~%" + +#: guix/import/go.scm:597 +#, scheme-format +msgid "Pick one of the following available versions:~{ ~a~}." +msgstr "" + +#: guix/import/go.scm:671 #, scheme-format msgid "" "Failed to import package ~s.\n" @@ -764,15 +775,6 @@ msgstr "" "причина: ~s не удалось получить: ошибка HTTP ~a (~s).\n" "Этот пакет и его зависимости не будут импортированы.~%" -#: guix/import/go.scm:656 -#, scheme-format -msgid "" -"Failed to import package ~s.\n" -"reason: ~s.~%" -msgstr "" -"Не удалось импортировать пакет ~s.\n" -"причина: ~s.~%" - #: guix/import/minetest.scm:178 #, scheme-format msgid "In ~a: author names must consist of at least a single character.~%" @@ -867,77 +869,99 @@ msgstr "пакет «~a» не найден: ~a" msgid "Updater for OPAM packages" msgstr "Обновитель пакетов OPAM" -#: guix/import/pypi.scm:230 +#: guix/import/pypi.scm:233 msgid "Could not extract requirement name in spec:" msgstr "Не удалось извлечь имя требования в спецификации:" -#: guix/import/pypi.scm:290 +#: guix/import/pypi.scm:293 #, scheme-format msgid "parse-requires.txt reached an unexpected condition on line ~a~%" msgstr "parse-requires.txt достиг непредвиденного состояния в строке ~a~%" -#: guix/import/pypi.scm:356 +#: guix/import/pypi.scm:359 #, scheme-format msgid "Failed to extract file: ~a from wheel.~%" msgstr "" -#: guix/import/pypi.scm:385 +#: guix/import/pypi.scm:388 #, scheme-format msgid "Cannot guess requirements from source archive: no requires.txt file found.~%" msgstr "Не удается распознать требования из исходного архива: файл requires.txt не найден.~%" -#: guix/import/pypi.scm:390 +#: guix/import/pypi.scm:393 #, scheme-format msgid "Unsupported archive format; cannot determine package dependencies from source archive: ~a~%" msgstr "Неподдерживаемый формат архива; не удается определить зависимости пакетов из исходного архива: ~a~%" -#: guix/import/pypi.scm:489 +#: guix/import/pypi.scm:434 +#, scheme-format +msgid "project name ~a does not appear verbatim in the PyPI URI~%" +msgstr "" + +#: guix/import/pypi.scm:437 +#, scheme-format +msgid "" +"The PyPI URI is: @url{~a}. You should review the\n" +"pypi-uri declaration in the generated package. You may need to replace ~s with\n" +"a substring of the PyPI URI that identifies the package." +msgstr "" + +#: guix/import/pypi.scm:505 #, scheme-format msgid "no source release for pypi package ~a ~a~%" msgstr "нет исходной версии для пакета pypi ~a ~a~%" -#: guix/import/pypi.scm:554 +#: guix/import/pypi.scm:509 +#, scheme-format +msgid "" +"This indicates that the\n" +"package is available on PyPI, but only as a \"wheel\" containing binaries, not\n" +"source. To build it from source, refer to the upstream repository at\n" +"@uref{~a}." +msgstr "" + +#: guix/import/pypi.scm:579 msgid "Updater for PyPI packages" msgstr "Утилита обновления пакетов PyPI" -#: gnu/installer.scm:214 +#: gnu/installer.scm:217 msgid "Locale" msgstr "Локаль" -#: gnu/installer.scm:230 gnu/installer/newt/timezone.scm:58 +#: gnu/installer.scm:233 gnu/installer/newt/timezone.scm:58 msgid "Timezone" msgstr "Часовой пояс" -#: gnu/installer.scm:247 +#: gnu/installer.scm:250 msgid "Keyboard mapping selection" msgstr "Раскладка клавиатуры" -#: gnu/installer.scm:256 gnu/installer/newt/hostname.scm:26 +#: gnu/installer.scm:259 gnu/installer/newt/hostname.scm:26 msgid "Hostname" msgstr "Имя хоста" -#: gnu/installer.scm:265 +#: gnu/installer.scm:268 msgid "Network selection" msgstr "Выбор сети" -#: gnu/installer.scm:272 +#: gnu/installer.scm:275 msgid "Substitute server discovery" msgstr "Обнаружение сервера подстановок" -#: gnu/installer.scm:279 gnu/installer/newt/user.scm:68 -#: gnu/installer/newt/user.scm:205 +#: gnu/installer.scm:282 gnu/installer/newt/user.scm:67 +#: gnu/installer/newt/user.scm:204 msgid "User creation" msgstr "Создание пользователя" -#: gnu/installer.scm:287 +#: gnu/installer.scm:290 msgid "Services" msgstr "Сервисы" -#: gnu/installer.scm:298 +#: gnu/installer.scm:301 msgid "Partitioning" msgstr "Разбиение на разделы" -#: gnu/installer.scm:305 gnu/installer/newt/final.scm:53 +#: gnu/installer.scm:308 gnu/installer/newt/final.scm:53 msgid "Configuration file" msgstr "Файл конфигурации" @@ -949,19 +973,83 @@ msgstr "Не получается определить состояние connma msgid "Unable to find expected regexp." msgstr "Не получается найти ожидаемое регулярное выражение." -#: gnu/installer/newt.scm:52 +#: gnu/installer/newt.scm:58 msgid "Press for installation parameters." msgstr "Нажмите для параметров установки." -#: gnu/installer/newt.scm:65 -#, scheme-format -msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +#: gnu/installer/newt.scm:68 +#, fuzzy +#| msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. You may choose to exit or create a dump archive." msgstr "Установщик столкнулся с неожиданной проблемой. Трассировка отображена ниже. Пожалуйста, отправьте его по электронной почте на <~a>." -#: gnu/installer/newt.scm:68 +#: gnu/installer/newt.scm:71 msgid "Unexpected problem" msgstr "Непредвиденная проблема" +#: gnu/installer/newt.scm:75 +msgid "Dump" +msgstr "" + +#: gnu/installer/newt.scm:76 gnu/installer/newt/ethernet.scm:79 +#: gnu/installer/newt/keymap.scm:56 gnu/installer/newt/locale.scm:43 +#: gnu/installer/newt/network.scm:65 gnu/installer/newt/network.scm:82 +#: gnu/installer/newt/page.scm:315 gnu/installer/newt/page.scm:679 +#: gnu/installer/newt/page.scm:763 gnu/installer/newt/page.scm:828 +#: gnu/installer/newt/partition.scm:54 gnu/installer/newt/partition.scm:90 +#: gnu/installer/newt/partition.scm:125 gnu/installer/newt/partition.scm:140 +#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 +#: gnu/installer/newt/partition.scm:706 gnu/installer/newt/partition.scm:764 +#: gnu/installer/newt/partition.scm:775 gnu/installer/newt/services.scm:124 +#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/wifi.scm:206 +msgid "Exit" +msgstr "Выход" + +#: gnu/installer/newt.scm:82 +#, scheme-format +msgid "The dump archive was created as ~a. Would you like to send this archive to the Guix servers?" +msgstr "" + +#: gnu/installer/newt.scm:84 +msgid "Dump archive created" +msgstr "" + +#: gnu/installer/newt.scm:88 +#, scheme-format +msgid "The dump was uploaded as ~a. Please report it by email to ~a." +msgstr "" + +#: gnu/installer/newt.scm:90 +msgid "The dump could not be uploaded." +msgstr "" + +#: gnu/installer/newt.scm:93 +msgid "Dump upload result" +msgstr "" + +#: gnu/installer/newt.scm:132 +#, fuzzy, scheme-format +#| msgid "Command failed with exit code ~a.~%" +msgid "External command ~s exited with code ~a" +msgstr "Команда завершилась неуспешно с кодом возврата ~a.~%" + +#: gnu/installer/newt.scm:135 +#, scheme-format +msgid "External command ~s terminated by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:138 +#, scheme-format +msgid "External command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:140 +#, fuzzy +#| msgid "internal commands" +msgid "External command error" +msgstr "внутренние команды" + #: gnu/installer/newt/ethernet.scm:66 msgid "No ethernet service available, please try again." msgstr "Нет доступных ethernet сервисов, пожалуйста, попробуйте снова." @@ -970,59 +1058,45 @@ msgstr "Нет доступных ethernet сервисов, пожалуйст msgid "No service" msgstr "Нет сервиса" -#: gnu/installer/newt/ethernet.scm:76 +#: gnu/installer/newt/ethernet.scm:74 msgid "Please select an ethernet network." msgstr "Пожалуйста, выберите сеть ethernet." -#: gnu/installer/newt/ethernet.scm:77 +#: gnu/installer/newt/ethernet.scm:75 msgid "Ethernet connection" msgstr "Соединение ethernet" -#: gnu/installer/newt/ethernet.scm:81 gnu/installer/newt/keymap.scm:56 -#: gnu/installer/newt/locale.scm:43 gnu/installer/newt/network.scm:63 -#: gnu/installer/newt/network.scm:84 gnu/installer/newt/page.scm:309 -#: gnu/installer/newt/page.scm:673 gnu/installer/newt/page.scm:758 -#: gnu/installer/newt/partition.scm:56 gnu/installer/newt/partition.scm:91 -#: gnu/installer/newt/partition.scm:126 gnu/installer/newt/partition.scm:141 -#: gnu/installer/newt/partition.scm:638 gnu/installer/newt/partition.scm:661 -#: gnu/installer/newt/partition.scm:707 gnu/installer/newt/partition.scm:765 -#: gnu/installer/newt/partition.scm:776 gnu/installer/newt/services.scm:130 -#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:204 -#: gnu/installer/newt/wifi.scm:206 -msgid "Exit" -msgstr "Выход" - #: gnu/installer/newt/final.scm:46 #, scheme-format msgid "We're now ready to proceed with the installation! A system configuration file has been generated, it is displayed below. This file will be available as '~a' on the installed system. The new system will be created from this file once you've pressed OK. This will take a few minutes." msgstr "Сейчас мы готовы продолжить установку! Файл конфигурации системы был сгенерирован, он отображен ниже. Этот файл будет доступен как '~a' на установленной системе. Новая система будет создана из этого файла, когда вы нажмете OK. Это займет несколько минут." -#: gnu/installer/newt/final.scm:70 +#: gnu/installer/newt/final.scm:68 msgid "Installation complete" msgstr "Установка завершена" -#: gnu/installer/newt/final.scm:71 gnu/installer/newt/parameters.scm:45 +#: gnu/installer/newt/final.scm:69 gnu/installer/newt/parameters.scm:45 #: gnu/installer/newt/welcome.scm:145 msgid "Reboot" msgstr "Перезагрузка" -#: gnu/installer/newt/final.scm:72 +#: gnu/installer/newt/final.scm:70 msgid "Congratulations! Installation is now complete. You may remove the device containing the installation image and press the button to reboot." msgstr "Поздравляем! Установка завершена. Вы можете извлечь устройство с установочным образом и нажать кнопку для перезагрузки." -#: gnu/installer/newt/final.scm:86 +#: gnu/installer/newt/final.scm:84 msgid "Installation failed" msgstr "Установка не удалась" -#: gnu/installer/newt/final.scm:87 +#: gnu/installer/newt/final.scm:85 msgid "Resume" msgstr "Продолжить" -#: gnu/installer/newt/final.scm:88 +#: gnu/installer/newt/final.scm:86 msgid "Restart the installer" msgstr "Перезапустить установщик" -#: gnu/installer/newt/final.scm:89 +#: gnu/installer/newt/final.scm:87 msgid "The final system installation step failed. You can resume from a specific step, or restart the installer." msgstr "Заключительный этап установки системы не удался. Вы можете продолжить с определенного этапа или перезапустить установщик." @@ -1050,9 +1124,9 @@ msgstr "Пожалуйста, выберите один из следующих msgid "Installation parameters" msgstr "Параметры установки" -#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:74 -#: gnu/installer/newt/locale.scm:63 gnu/installer/newt/locale.scm:78 -#: gnu/installer/newt/locale.scm:94 gnu/installer/newt/partition.scm:595 +#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:72 +#: gnu/installer/newt/locale.scm:61 gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:88 gnu/installer/newt/partition.scm:594 #: gnu/installer/newt/timezone.scm:64 msgid "Back" msgstr "Назад" @@ -1073,16 +1147,16 @@ msgstr "Пожалуйста, выберите раскладку клавиат msgid "Please choose your keyboard layout. It will be used during the install process, and for the installed system. Non-Latin layouts can be toggled with Alt+Shift. You can switch to a different layout at any time from the parameters menu." msgstr "Пожалуйста, выберите раскладку клавиатуры. Она будет использована время процесса установки и для установленной системы. Не латинские раскладки могут быть переключены с помощью Alt+Shift. Вы можете переключиться на другую раскладку в любой момент через меню параметров." -#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:62 -#: gnu/installer/newt/page.scm:308 +#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/page.scm:314 msgid "Continue" msgstr "Продолжить" -#: gnu/installer/newt/keymap.scm:67 +#: gnu/installer/newt/keymap.scm:65 msgid "Variant" msgstr "Вариант" -#: gnu/installer/newt/keymap.scm:70 +#: gnu/installer/newt/keymap.scm:68 msgid "Please choose a variant for your keyboard layout." msgstr "Пожалуйста, выберите вариант вашей раскладки клавиатуры." @@ -1094,35 +1168,35 @@ msgstr "Язык локали" msgid "Choose the language to use for the installation process and for the installed system." msgstr "Выберите язык, который будет использован во время процесса установки и для установленной системы." -#: gnu/installer/newt/locale.scm:57 +#: gnu/installer/newt/locale.scm:55 msgid "Locale location" msgstr "Региональные настройки" -#: gnu/installer/newt/locale.scm:60 +#: gnu/installer/newt/locale.scm:58 msgid "Choose a territory for this language." msgstr "Выберите местность для этого языка." -#: gnu/installer/newt/locale.scm:71 +#: gnu/installer/newt/locale.scm:67 msgid "Locale codeset" msgstr "Кодировка" -#: gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:70 msgid "Choose the locale encoding." msgstr "Выберите кодировку локали." -#: gnu/installer/newt/locale.scm:86 +#: gnu/installer/newt/locale.scm:80 msgid "Locale modifier" msgstr "Региональный модификатор" -#: gnu/installer/newt/locale.scm:89 +#: gnu/installer/newt/locale.scm:83 msgid "Choose your locale's modifier. The most frequent modifier is euro. It indicates that you want to use Euro as the currency symbol." msgstr "Выберите ваш региональный модификатор. Наиболее часто используемый модификатор – это евро. Это означает, что символом денежной единицы будет евро." -#: gnu/installer/newt/locale.scm:190 +#: gnu/installer/newt/locale.scm:181 msgid "No location" msgstr "Неизвестная территория" -#: gnu/installer/newt/locale.scm:217 +#: gnu/installer/newt/locale.scm:208 msgid "No modifier" msgstr "Нет модификатора" @@ -1138,277 +1212,283 @@ msgstr "Меню установки" msgid "Abort" msgstr "Прервать" -#: gnu/installer/newt/network.scm:61 gnu/installer/newt/network.scm:80 +#: gnu/installer/newt/network.scm:63 gnu/installer/newt/network.scm:78 msgid "Internet access" msgstr "Доступ к Интернету" -#: gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/network.scm:66 msgid "The install process requires Internet access but no network devices were found. Do you want to continue anyway?" msgstr "Процесс установки требует доступа к Интернету, но не было найдено сетевых устройств. Вы все равно хотите продолжить?" -#: gnu/installer/newt/network.scm:78 +#: gnu/installer/newt/network.scm:76 msgid "The install process requires Internet access. Please select a network device." msgstr "Процесс установки требует доступа к Интернету. Пожалуйста, выберите сетевое устройство." -#: gnu/installer/newt/network.scm:103 +#: gnu/installer/newt/network.scm:99 msgid "Powering technology" msgstr "Включение сетевого устройства" -#: gnu/installer/newt/network.scm:104 +#: gnu/installer/newt/network.scm:100 #, scheme-format msgid "Waiting for technology ~a to be powered." msgstr "Ожидание включения сетевого устройства ~a." -#: gnu/installer/newt/network.scm:128 +#: gnu/installer/newt/network.scm:139 msgid "Checking connectivity" msgstr "Проверка соединения" -#: gnu/installer/newt/network.scm:129 +#: gnu/installer/newt/network.scm:140 msgid "Waiting for Internet access establishment..." msgstr "Ожидание установки Интернет соединения..." -#: gnu/installer/newt/network.scm:139 -msgid "The selected network does not provide access to the Internet, please try again." +#: gnu/installer/newt/network.scm:150 +#, fuzzy +#| msgid "The selected network does not provide access to the Internet, please try again." +msgid "The selected network does not provide access to the Internet and the Guix substitute server, please try again." msgstr "Выбранная сеть не предоставляет доступа в Интернет, пожалуйста, попробуйте снова." -#: gnu/installer/newt/network.scm:141 gnu/installer/newt/wifi.scm:108 +#: gnu/installer/newt/network.scm:152 gnu/installer/newt/wifi.scm:108 msgid "Connection error" msgstr "Ошибка подключения" -#: gnu/installer/newt/page.scm:198 +#: gnu/installer/newt/page.scm:204 #, scheme-format msgid "Connecting to ~a, please wait." msgstr "Подключение к ~a, пожалуйста, подождите." -#: gnu/installer/newt/page.scm:199 +#: gnu/installer/newt/page.scm:205 msgid "Connection in progress" msgstr "Ведется подключение" -#: gnu/installer/newt/page.scm:218 gnu/installer/newt/user.scm:60 +#: gnu/installer/newt/page.scm:224 gnu/installer/newt/user.scm:59 msgid "Show" msgstr "Показать" -#: gnu/installer/newt/page.scm:225 gnu/installer/newt/page.scm:672 -#: gnu/installer/newt/page.scm:757 gnu/installer/newt/partition.scm:458 -#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 -#: gnu/installer/newt/partition.scm:699 gnu/installer/newt/user.scm:66 -#: gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/page.scm:231 gnu/installer/newt/page.scm:678 +#: gnu/installer/newt/page.scm:762 gnu/installer/newt/partition.scm:457 +#: gnu/installer/newt/partition.scm:636 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:698 gnu/installer/newt/user.scm:65 +#: gnu/installer/newt/user.scm:202 msgid "OK" msgstr "OK" -#: gnu/installer/newt/page.scm:251 +#: gnu/installer/newt/page.scm:257 msgid "Please enter a non empty input." msgstr "Пожалуйста, введите непустой ввод." -#: gnu/installer/newt/page.scm:252 gnu/installer/newt/user.scm:123 +#: gnu/installer/newt/page.scm:258 gnu/installer/newt/user.scm:122 msgid "Empty input" msgstr "Пустой ввод" -#: gnu/installer/newt/page.scm:760 +#: gnu/installer/newt/page.scm:765 msgid "Edit" msgstr "Редактировать" -#: gnu/installer/newt/partition.scm:47 +#: gnu/installer/newt/page.scm:825 +msgid "Ok" +msgstr "" + +#: gnu/installer/newt/partition.scm:45 msgid "Everything is one partition" msgstr "Все на одном разделе" -#: gnu/installer/newt/partition.scm:48 +#: gnu/installer/newt/partition.scm:46 msgid "Separate /home partition" msgstr "Отдельный раздел /home" -#: gnu/installer/newt/partition.scm:50 +#: gnu/installer/newt/partition.scm:48 msgid "Please select a partitioning scheme." msgstr "Пожалуйста, выберите схему разделов." -#: gnu/installer/newt/partition.scm:51 +#: gnu/installer/newt/partition.scm:49 msgid "Partition scheme" msgstr "Схема разделов" #. TRANSLATORS: The ~{ and ~} format specifiers are used to iterate the list #. of device names of the user partitions that will be formatted. -#: gnu/installer/newt/partition.scm:65 +#: gnu/installer/newt/partition.scm:63 #, scheme-format msgid "We are about to write the configured partition table to the disk and format the partitions listed below. Their data will be lost. Do you wish to continue?~%~%~{ - ~a~%~}" msgstr "Мы готовы записать настроенные таблицы разделов на носитель и отформатировать указанные разделы. Данные на них будут потеряны. Вы готовы продолжить?~%~%~{ - ~a~%~}" -#: gnu/installer/newt/partition.scm:71 +#: gnu/installer/newt/partition.scm:69 msgid "Format disk?" msgstr "Форматировать диск?" -#: gnu/installer/newt/partition.scm:74 +#: gnu/installer/newt/partition.scm:72 msgid "Partition formatting is in progress, please wait." msgstr "Происходит форматирование разделов, пожалуйста, подождите." -#: gnu/installer/newt/partition.scm:75 +#: gnu/installer/newt/partition.scm:73 msgid "Preparing partitions" msgstr "Подготовка разделов" -#: gnu/installer/newt/partition.scm:86 -msgid "Please select a disk." -msgstr "Пожалуйста, выберите носитель." +#: gnu/installer/newt/partition.scm:84 +msgid "Please select a disk. The installation device as well as the small devices are filtered." +msgstr "" -#: gnu/installer/newt/partition.scm:87 +#: gnu/installer/newt/partition.scm:86 msgid "Disk" msgstr "Диск" -#: gnu/installer/newt/partition.scm:102 +#: gnu/installer/newt/partition.scm:101 msgid "Select a new partition table type. Be careful, all data on the disk will be lost." msgstr "Выберите тип новой таблицы разделов. Будьте осторожны, все данные на диске будут потеряны." -#: gnu/installer/newt/partition.scm:104 +#: gnu/installer/newt/partition.scm:103 msgid "Partition table" msgstr "Таблица разделов" -#: gnu/installer/newt/partition.scm:121 +#: gnu/installer/newt/partition.scm:120 msgid "Please select a partition type." msgstr "Пожалуйста, выберите тип раздела." -#: gnu/installer/newt/partition.scm:122 +#: gnu/installer/newt/partition.scm:121 msgid "Partition type" msgstr "Тип раздела" -#: gnu/installer/newt/partition.scm:132 +#: gnu/installer/newt/partition.scm:131 msgid "Please select the file-system type for this partition." msgstr "Пожалуйста, выберите тип файловой системы для этого раздела." -#: gnu/installer/newt/partition.scm:133 +#: gnu/installer/newt/partition.scm:132 msgid "File-system type" msgstr "Тип файловой системы" -#: gnu/installer/newt/partition.scm:150 +#: gnu/installer/newt/partition.scm:149 msgid "Primary partitions count exceeded." msgstr "Превышено число первичных разделов." -#: gnu/installer/newt/partition.scm:151 gnu/installer/newt/partition.scm:156 -#: gnu/installer/newt/partition.scm:161 +#: gnu/installer/newt/partition.scm:150 gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:160 msgid "Creation error" msgstr "Ошибка создания" -#: gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:154 msgid "Extended partition creation error." msgstr "Ошибка создания расширенного раздела." -#: gnu/installer/newt/partition.scm:160 +#: gnu/installer/newt/partition.scm:159 msgid "Logical partition creation error." msgstr "Ошибка создания локального раздела." -#: gnu/installer/newt/partition.scm:174 +#: gnu/installer/newt/partition.scm:173 #, scheme-format msgid "Please enter the password for the encryption of partition ~a (label: ~a)." msgstr "Пожалуйста, введите пароль для шифрования раздела ~a (метка: ~a)." -#: gnu/installer/newt/partition.scm:176 gnu/installer/newt/wifi.scm:92 +#: gnu/installer/newt/partition.scm:175 gnu/installer/newt/wifi.scm:92 msgid "Password required" msgstr "Требуется пароль" -#: gnu/installer/newt/partition.scm:181 +#: gnu/installer/newt/partition.scm:180 #, scheme-format msgid "Please confirm the password for the encryption of partition ~a (label: ~a)." msgstr "Пожалуйста, подтвердите пароль для шифрования раздела ~a (метка: ~a)." -#: gnu/installer/newt/partition.scm:183 gnu/installer/newt/user.scm:160 +#: gnu/installer/newt/partition.scm:182 gnu/installer/newt/user.scm:159 msgid "Password confirmation required" msgstr "Требуется подтверждение пароля" -#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 +#: gnu/installer/newt/partition.scm:194 gnu/installer/newt/user.scm:167 msgid "Password mismatch, please try again." msgstr "Пароли не совпадают, пожалуйста, попробуйте снова." -#: gnu/installer/newt/partition.scm:196 gnu/installer/newt/user.scm:169 +#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 msgid "Password error" msgstr "Ошибка пароля" -#: gnu/installer/newt/partition.scm:282 +#: gnu/installer/newt/partition.scm:281 msgid "Please enter the partition gpt name." msgstr "Пожалуйста, введите имя раздела gpt." -#: gnu/installer/newt/partition.scm:283 +#: gnu/installer/newt/partition.scm:282 msgid "Partition name" msgstr "Имя раздела" -#: gnu/installer/newt/partition.scm:313 +#: gnu/installer/newt/partition.scm:312 msgid "Please enter the encrypted label" msgstr "Пожалуйста, введите название для зашифрованной метки" -#: gnu/installer/newt/partition.scm:314 +#: gnu/installer/newt/partition.scm:313 msgid "Encryption label" msgstr "Зашифрованная метка" -#: gnu/installer/newt/partition.scm:331 +#: gnu/installer/newt/partition.scm:330 #, scheme-format msgid "Please enter the size of the partition. The maximum size is ~a." msgstr "Пожалуйста, введите размер раздела. Максимальный размер ~a." -#: gnu/installer/newt/partition.scm:333 +#: gnu/installer/newt/partition.scm:332 msgid "Partition size" msgstr "Размер раздела" -#: gnu/installer/newt/partition.scm:351 +#: gnu/installer/newt/partition.scm:350 msgid "The percentage can not be superior to 100." msgstr "Проценты не могут быть более 100." -#: gnu/installer/newt/partition.scm:352 gnu/installer/newt/partition.scm:357 -#: gnu/installer/newt/partition.scm:362 +#: gnu/installer/newt/partition.scm:351 gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:361 msgid "Size error" msgstr "Ошибка размера" -#: gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:355 msgid "The requested size is incorrectly formatted, or too large." msgstr "Запрошенный размер неправильно форматирован или слишком велик." -#: gnu/installer/newt/partition.scm:361 +#: gnu/installer/newt/partition.scm:360 msgid "The request size is superior to the maximum size." msgstr "Запрошенный размер больше максимального размера." -#: gnu/installer/newt/partition.scm:381 +#: gnu/installer/newt/partition.scm:380 msgid "Please enter the desired mounting point for this partition. Leave this field empty if you don't want to set a mounting point." msgstr "Пожалуйста, введите предпочитаемую точку монтирования для этого раздела. Оставьте поле пустым, если вы не хотите устанавливать точку монтирования." -#: gnu/installer/newt/partition.scm:383 +#: gnu/installer/newt/partition.scm:382 msgid "Mounting point" msgstr "Точка монтирования" -#: gnu/installer/newt/partition.scm:447 +#: gnu/installer/newt/partition.scm:446 #, scheme-format msgid "Creating ~a partition starting at ~a of ~a." msgstr "Создается раздел ~a, начинающийся с ~a файла ~a." -#: gnu/installer/newt/partition.scm:449 +#: gnu/installer/newt/partition.scm:448 #, scheme-format msgid "You are currently editing partition ~a." msgstr "Сейчас вы редактируете раздел ~a." -#: gnu/installer/newt/partition.scm:452 +#: gnu/installer/newt/partition.scm:451 msgid "Partition creation" msgstr "Создание раздела" -#: gnu/installer/newt/partition.scm:453 +#: gnu/installer/newt/partition.scm:452 msgid "Partition edit" msgstr "Редактирование раздела" -#: gnu/installer/newt/partition.scm:634 +#: gnu/installer/newt/partition.scm:633 #, scheme-format msgid "Are you sure you want to delete everything on disk ~a?" msgstr "Вы уверены, что вы хотите удалить все на диске ~a?" -#: gnu/installer/newt/partition.scm:636 +#: gnu/installer/newt/partition.scm:635 msgid "Delete disk" msgstr "Удалить диск" -#: gnu/installer/newt/partition.scm:651 +#: gnu/installer/newt/partition.scm:650 msgid "You cannot delete a free space area." msgstr "Вы не можете удалить область свободного пространства." -#: gnu/installer/newt/partition.scm:652 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:651 gnu/installer/newt/partition.scm:658 msgid "Delete partition" msgstr "Удалить раздел" -#: gnu/installer/newt/partition.scm:657 +#: gnu/installer/newt/partition.scm:656 #, scheme-format msgid "Are you sure you want to delete partition ~a?" msgstr "Вы уверены, что вы хотите удалить раздел ~a?" -#: gnu/installer/newt/partition.scm:674 +#: gnu/installer/newt/partition.scm:673 msgid "" "You can change a disk's partition table by selecting it and pressing ENTER. You can also edit a partition by selecting it and pressing ENTER, or remove it by pressing DELETE. To create a new partition, select a free space area and press ENTER.\n" "\n" @@ -1418,53 +1498,53 @@ msgstr "" "\n" "Как минимум один раздел должен иметь точку монтирования, установленную в '/'." -#: gnu/installer/newt/partition.scm:680 +#: gnu/installer/newt/partition.scm:679 #, scheme-format msgid "This is the proposed partitioning. It is still possible to edit it or to go back to install menu by pressing the Exit button.~%~%" msgstr "Это предложенная разметка. Можно редактировать ее или перейти назад в меню установки, нажав кнопку Выход.~%~%" -#: gnu/installer/newt/partition.scm:690 +#: gnu/installer/newt/partition.scm:689 msgid "Guided partitioning" msgstr "Мастер разбиения диска" -#: gnu/installer/newt/partition.scm:691 +#: gnu/installer/newt/partition.scm:690 msgid "Manual partitioning" msgstr "Ручное разбиение" -#: gnu/installer/newt/partition.scm:716 +#: gnu/installer/newt/partition.scm:715 msgid "No root mount point found." msgstr "Не найдена корневая точка монтирования." -#: gnu/installer/newt/partition.scm:717 +#: gnu/installer/newt/partition.scm:716 msgid "Missing mount point" msgstr "Отсутствует точка монтирования" -#: gnu/installer/newt/partition.scm:721 +#: gnu/installer/newt/partition.scm:720 #, scheme-format msgid "Cannot read the ~a partition UUID. You may need to format it." msgstr "Не удается прочитать ~a UUID раздела. Возможно, вам придется его отформатировать." -#: gnu/installer/newt/partition.scm:724 +#: gnu/installer/newt/partition.scm:723 msgid "Wrong partition format" msgstr "Неправильный формат раздела" -#: gnu/installer/newt/partition.scm:755 +#: gnu/installer/newt/partition.scm:754 msgid "Guided - using the entire disk" msgstr "Мастер – использовать весь диск" -#: gnu/installer/newt/partition.scm:756 +#: gnu/installer/newt/partition.scm:755 msgid "Guided - using the entire disk with encryption" msgstr "Мастер – использовать полный диск с шифрованием" -#: gnu/installer/newt/partition.scm:757 +#: gnu/installer/newt/partition.scm:756 msgid "Manual" msgstr "Вручную" -#: gnu/installer/newt/partition.scm:759 +#: gnu/installer/newt/partition.scm:758 msgid "Please select a partitioning method." msgstr "Пожалуйста, выберите метод разбиения." -#: gnu/installer/newt/partition.scm:760 +#: gnu/installer/newt/partition.scm:759 msgid "Partitioning method" msgstr "Метод разбиения" @@ -1476,41 +1556,41 @@ msgstr "Пожалуйста, выберите окружения рабочег msgid "Desktop environment" msgstr "Окружение рабочего стола" -#: gnu/installer/newt/services.scm:59 +#: gnu/installer/newt/services.scm:57 msgid "You can now select networking services to run on your system." msgstr "Сейчас вы можете выбрать сетевые сервисы, которые будут работать на вашей системе." -#: gnu/installer/newt/services.scm:61 +#: gnu/installer/newt/services.scm:59 msgid "Network service" msgstr "Сетевые сервисы" -#: gnu/installer/newt/services.scm:79 +#: gnu/installer/newt/services.scm:75 #, fuzzy #| msgid "You can now select other services to run on your system." msgid "You can now select the CUPS printing service to run on your system." msgstr "Сейчас вы можете выбрать другие сервисы, которые будут работать на вашей системе." -#: gnu/installer/newt/services.scm:81 +#: gnu/installer/newt/services.scm:77 msgid "Printing and document services" msgstr "" -#: gnu/installer/newt/services.scm:100 +#: gnu/installer/newt/services.scm:94 #, fuzzy #| msgid "No service" msgid "Console services" msgstr "Нет сервиса" -#: gnu/installer/newt/services.scm:101 +#: gnu/installer/newt/services.scm:95 #, fuzzy #| msgid "You can now select networking services to run on your system." msgid "Select miscellaneous services to run on your non-graphical system." msgstr "Сейчас вы можете выбрать сетевые сервисы, которые будут работать на вашей системе." -#: gnu/installer/newt/services.scm:115 +#: gnu/installer/newt/services.scm:109 msgid "Network management" msgstr "Управление сетями" -#: gnu/installer/newt/services.scm:118 +#: gnu/installer/newt/services.scm:112 msgid "" "Choose the method to manage network connections.\n" "\n" @@ -1546,57 +1626,57 @@ msgstr "" msgid "Please select a timezone." msgstr "Пожалуйста, выберите часовой пояс." -#: gnu/installer/newt/user.scm:45 +#: gnu/installer/newt/user.scm:44 msgid "Name" msgstr "Имя" -#: gnu/installer/newt/user.scm:47 +#: gnu/installer/newt/user.scm:46 msgid "Real name" msgstr "Настоящее имя" -#: gnu/installer/newt/user.scm:49 +#: gnu/installer/newt/user.scm:48 msgid "Home directory" msgstr "Домашний каталог" -#: gnu/installer/newt/user.scm:51 +#: gnu/installer/newt/user.scm:50 msgid "Password" msgstr "Пароль" -#: gnu/installer/newt/user.scm:122 +#: gnu/installer/newt/user.scm:121 msgid "Empty inputs are not allowed." msgstr "Пустые поля не разрешены." -#: gnu/installer/newt/user.scm:159 +#: gnu/installer/newt/user.scm:158 msgid "Please confirm the password." msgstr "Пожалуйста, подтвердите пароль." #. TRANSLATORS: Leave "root" untranslated: it refers to the name of the #. system administrator account. -#: gnu/installer/newt/user.scm:176 +#: gnu/installer/newt/user.scm:175 msgid "Please choose a password for the system administrator (\"root\")." msgstr "Пожалуйста, выберите пароль для системного администратора (\"root\")." -#: gnu/installer/newt/user.scm:178 +#: gnu/installer/newt/user.scm:177 msgid "System administrator password" msgstr "Пароль системного администратора" -#: gnu/installer/newt/user.scm:191 +#: gnu/installer/newt/user.scm:190 msgid "Please add at least one user to system using the 'Add' button." msgstr "Пожалуйста, добавьте как минимум одного пользователя используя кнопку 'Добавить'." -#: gnu/installer/newt/user.scm:194 +#: gnu/installer/newt/user.scm:193 msgid "Add" msgstr "Добавить" -#: gnu/installer/newt/user.scm:195 +#: gnu/installer/newt/user.scm:194 msgid "Delete" msgstr "Удалить" -#: gnu/installer/newt/user.scm:255 +#: gnu/installer/newt/user.scm:254 msgid "Please create at least one user." msgstr "Пожалуйста, создайте как минимум одного пользователя." -#: gnu/installer/newt/user.scm:256 +#: gnu/installer/newt/user.scm:255 msgid "No user" msgstr "Нет пользователя" @@ -1672,60 +1752,60 @@ msgstr "Не найден wifi" msgid "Wifi" msgstr "Wifi" -#: gnu/installer/parted.scm:433 gnu/installer/parted.scm:470 +#: gnu/installer/parted.scm:455 gnu/installer/parted.scm:492 msgid "Free space" msgstr "Свободное пространство" -#: gnu/installer/parted.scm:559 +#: gnu/installer/parted.scm:581 #, scheme-format msgid "Name: ~a" msgstr "Имя: ~a" -#: gnu/installer/parted.scm:560 gnu/installer/parted.scm:606 +#: gnu/installer/parted.scm:582 gnu/installer/parted.scm:628 msgid "None" msgstr "Нет" -#: gnu/installer/parted.scm:565 +#: gnu/installer/parted.scm:587 #, scheme-format msgid "Type: ~a" msgstr "Тип: ~a" -#: gnu/installer/parted.scm:569 +#: gnu/installer/parted.scm:591 #, scheme-format msgid "File system type: ~a" msgstr "Тип файловой системы: ~a" -#: gnu/installer/parted.scm:575 +#: gnu/installer/parted.scm:597 #, scheme-format msgid "Bootable flag: ~:[off~;on~]" msgstr "Загрузочный флаг: ~:[выкл~;вкл~]" -#: gnu/installer/parted.scm:579 +#: gnu/installer/parted.scm:601 #, scheme-format msgid "ESP flag: ~:[off~;on~]" msgstr "Флаг ESP: ~:[выкл~;вкл~]" -#: gnu/installer/parted.scm:585 +#: gnu/installer/parted.scm:607 #, scheme-format msgid "Size: ~a" msgstr "Размер: ~a" -#: gnu/installer/parted.scm:591 +#: gnu/installer/parted.scm:613 #, scheme-format msgid "Encryption: ~:[No~a~;Yes (label '~a')~]" msgstr "Шифрование: ~:[Нет~a~;Да (метка '~a')~]" -#: gnu/installer/parted.scm:597 +#: gnu/installer/parted.scm:619 #, scheme-format msgid "Format the partition? ~:[No~;Yes~]" msgstr "Форматировать раздел? ~:[Нет~;Да~]" -#: gnu/installer/parted.scm:603 +#: gnu/installer/parted.scm:625 #, scheme-format msgid "Mount point: ~a" msgstr "Точка монтирования: ~a" -#: gnu/installer/parted.scm:1466 +#: gnu/installer/parted.scm:1477 #, scheme-format msgid "Device ~a is still in use." msgstr "Устройство ~a все еще используется." @@ -1769,7 +1849,7 @@ msgstr "Система печати CUPS (по умолчанию без веб- #. TRANSLATORS: This is a comment within a Scheme file. Each line must #. start with ";; " (two semicolons and a space). Please keep line #. length below 60 characters. -#: gnu/installer/steps.scm:252 +#: gnu/installer/steps.scm:242 msgid "" ";; This is an operating system configuration generated\n" ";; by the graphical installer.\n" @@ -1782,71 +1862,91 @@ msgstr "" msgid "Unable to locate path: ~a." msgstr "Не получается найти путь: ~a." -#: gnu/installer/utils.scm:83 +#: gnu/installer/utils.scm:131 #, scheme-format msgid "Press Enter to continue.~%" msgstr "Нажмите Enter для продолжения.~%" -#: gnu/installer/utils.scm:108 -#, scheme-format -msgid "Command failed with exit code ~a.~%" +#: gnu/installer/utils.scm:150 +#, fuzzy, scheme-format +#| msgid "Command failed with exit code ~a.~%" +msgid "Command ~s exited with value ~a" msgstr "Команда завершилась неуспешно с кодом возврата ~a.~%" -#: gnu/machine/ssh.scm:117 +#: gnu/installer/utils.scm:156 +#, scheme-format +msgid "Command ~s killed by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:162 +#, scheme-format +msgid "Command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:167 +#, scheme-format +msgid "Command ~s succeeded" +msgstr "" + +#: gnu/installer/utils.scm:179 +msgid "run-command-in-installer not set" +msgstr "" + +#: gnu/machine/ssh.scm:120 #, scheme-format msgid " without a 'host-key' is deprecated~%" msgstr " без 'host-key' не больше поддерживается~%" -#: gnu/machine/ssh.scm:192 +#: gnu/machine/ssh.scm:208 #, scheme-format msgid "device '~a' not found: ~a" msgstr "устройство '~a' не найдено: ~a" -#: gnu/machine/ssh.scm:207 +#: gnu/machine/ssh.scm:223 #, scheme-format msgid "no file system with label '~a'" msgstr "нет файловой системы с меткой '~a'" -#: gnu/machine/ssh.scm:226 +#: gnu/machine/ssh.scm:242 #, scheme-format msgid "no file system with UUID '~a'" msgstr "нет файловой системы с UUID '~a'" -#: gnu/machine/ssh.scm:276 +#: gnu/machine/ssh.scm:295 #, scheme-format msgid "missing modules for ~a:~{ ~a~}~%" msgstr "отсутствующие модули для ~a:~{ ~a~}~%" -#: gnu/machine/ssh.scm:311 +#: gnu/machine/ssh.scm:333 #, scheme-format msgid "incorrect target system ('~a' was given, while the system reports that it is '~a')~%" msgstr "некорректная целевая система (было получено '~a', хотя система сообщает что это '~a')~%" -#: gnu/machine/ssh.scm:437 +#: gnu/machine/ssh.scm:459 #, scheme-format msgid "no signing key '~a'. have you run 'guix archive --generate-key?'" msgstr "нет цифровой подписи '~a'. вы запускали 'guix archive --generate-key?'" -#: gnu/machine/ssh.scm:469 +#: gnu/machine/ssh.scm:491 #, scheme-format msgid "failed to switch systems while deploying '~a':~%~{~s ~}" msgstr "не удалось переключить системы при развертывании «~a»:~%~{~s ~}" -#: gnu/machine/ssh.scm:477 +#: gnu/machine/ssh.scm:499 #, scheme-format msgid "an error occurred while upgrading services on '~a':~%~{~s ~}~%" msgstr "произошла ошибка при обновлении служб на «~a»:~%~{~s ~}~%" -#: gnu/machine/ssh.scm:485 +#: gnu/machine/ssh.scm:507 #, scheme-format msgid "failed to install bootloader on '~a':~%~{~s ~}~%" msgstr "не удалось установить загрузчик на «~a»:~%~{~s ~}~%" -#: gnu/machine/ssh.scm:518 +#: gnu/machine/ssh.scm:540 msgid "could not roll-back machine" msgstr "откат системы не удался" -#: gnu/machine/ssh.scm:559 +#: gnu/machine/ssh.scm:581 msgid "" "Provisioning for machines that are accessible over SSH\n" "and have a known host-name. This entails little more than maintaining an SSH\n" @@ -1856,7 +1956,7 @@ msgstr "" "известный имя узла. Для этого требуется немного больше,\n" "чем поддержание SSH соединения с узлом." -#: gnu/machine/ssh.scm:569 +#: gnu/machine/ssh.scm:591 #, scheme-format msgid "" "unsupported machine configuration '~a'\n" @@ -1865,20 +1965,20 @@ msgstr "" "неподдерживаемая конфигурация машины '~a'\n" "для окружения типа '~a'" -#: gnu/packages/bootstrap.scm:178 +#: gnu/packages/bootstrap.scm:188 #, scheme-format msgid "could not find bootstrap binary '~a' for system '~a'" msgstr "не получилось найти загрузочный код '~a' для системы '~a'" -#: gnu/packages/bootstrap.scm:492 +#: gnu/packages/bootstrap.scm:578 msgid "Raw build system with direct store access" msgstr "Начальная система сборки с прямым доступом к хранилищу" -#: gnu/packages/bootstrap.scm:500 +#: gnu/packages/bootstrap.scm:586 msgid "Pre-built Guile for bootstrapping purposes." msgstr "Заранее собранный Guile для начальной загрузки." -#: guix/build/utils.scm:822 +#: guix/build/utils.scm:823 #, scheme-format msgid "'~a~{ ~a~}' exited with status ~a; output follows:~%~%~{ ~a~%~}" msgstr "'~a~{ ~a~}' завершилось с кодом возврата ~a; вывело:~%~%~{ ~a~%~}" @@ -1918,7 +2018,7 @@ msgid "~A: unrecognized option~%" msgstr "~A: нераспознанная опция~%" #: guix/scripts.scm:169 guix/scripts/import.scm:140 -#: guix/scripts/system.scm:1370 +#: guix/scripts/system.scm:1379 #, scheme-format msgid "Did you mean @code{~a}?~%" msgstr "Возможно, вы имели в виду @code{~a}?~%" @@ -1968,7 +2068,7 @@ msgstr "" #: guix/scripts/build.scm:154 guix/scripts/search.scm:42 #: guix/scripts/show.scm:41 guix/scripts/lint.scm:112 guix/scripts/edit.scm:48 #: guix/scripts/size.scm:246 guix/scripts/graph.scm:553 -#: guix/scripts/repl.scm:80 guix/scripts/style.scm:500 +#: guix/scripts/repl.scm:80 guix/scripts/style.scm:795 msgid "" "\n" " -L, --load-path=DIR prepend DIR to the package module search path" @@ -2121,7 +2221,7 @@ msgid "" " -s, --system=SYSTEM attempt to build for SYSTEM--e.g., \"i686-linux\"" msgstr "" -#: guix/scripts/build.scm:357 guix/scripts/system.scm:1023 +#: guix/scripts/build.scm:357 guix/scripts/system.scm:1026 #: guix/scripts/pack.scm:1329 guix/scripts/archive.scm:97 msgid "" "\n" @@ -2154,13 +2254,13 @@ msgid "" " as a garbage collector root" msgstr "" -#: guix/scripts/build.scm:368 guix/scripts/package.scm:486 +#: guix/scripts/build.scm:368 guix/scripts/package.scm:488 #: guix/scripts/install.scm:37 guix/scripts/remove.scm:36 #: guix/scripts/upgrade.scm:39 guix/scripts/pull.scm:117 -#: guix/scripts/system.scm:1025 guix/scripts/copy.scm:122 -#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:60 +#: guix/scripts/system.scm:1028 guix/scripts/copy.scm:122 +#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:66 #: guix/scripts/archive.scm:99 guix/scripts/environment.scm:123 -#: guix/scripts/home.scm:94 +#: guix/scripts/home.scm:98 msgid "" "\n" " -v, --verbosity=LEVEL use the given verbosity LEVEL" @@ -2179,59 +2279,59 @@ msgid "" msgstr "" #: guix/scripts/build.scm:379 guix/scripts/download.scm:104 -#: guix/scripts/package.scm:504 guix/scripts/install.scm:44 +#: guix/scripts/package.scm:506 guix/scripts/install.scm:44 #: guix/scripts/remove.scm:41 guix/scripts/upgrade.scm:48 #: guix/scripts/search.scm:37 guix/scripts/show.scm:36 guix/scripts/gc.scm:88 #: guix/scripts/git.scm:34 guix/scripts/git/authenticate.scm:110 #: guix/scripts/hash.scm:98 guix/scripts/import.scm:98 #: guix/scripts/import/minetest.scm:46 guix/scripts/import/cran.scm:49 #: guix/scripts/pull.scm:125 guix/scripts/substitute.scm:250 -#: guix/scripts/system.scm:1032 guix/scripts/lint.scm:115 +#: guix/scripts/system.scm:1035 guix/scripts/lint.scm:115 #: guix/scripts/publish.scm:119 guix/scripts/edit.scm:51 #: guix/scripts/size.scm:249 guix/scripts/graph.scm:558 #: guix/scripts/challenge.scm:430 guix/scripts/copy.scm:127 #: guix/scripts/pack.scm:1357 guix/scripts/weather.scm:336 #: guix/scripts/describe.scm:96 guix/scripts/processes.scm:301 -#: guix/scripts/deploy.scm:55 guix/scripts/container.scm:35 +#: guix/scripts/deploy.scm:58 guix/scripts/container.scm:35 #: guix/scripts/container/exec.scm:43 guix/scripts/archive.scm:106 -#: guix/scripts/environment.scm:149 guix/scripts/home.scm:97 +#: guix/scripts/environment.scm:149 guix/scripts/home.scm:101 #: guix/scripts/time-machine.scm:67 guix/scripts/import/cpan.scm:44 #: guix/scripts/import/crate.scm:50 guix/scripts/import/egg.scm:45 #: guix/scripts/import/gem.scm:46 guix/scripts/import/gnu.scm:50 #: guix/scripts/import/go.scm:50 guix/scripts/import/json.scm:52 #: guix/scripts/import/opam.scm:45 guix/scripts/import/pypi.scm:46 #: guix/scripts/import/texlive.scm:45 guix/scripts/refresh.scm:187 -#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:67 -#: guix/scripts/style.scm:509 +#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:69 +#: guix/scripts/style.scm:804 msgid "" "\n" " -h, --help display this help and exit" msgstr "" #: guix/scripts/build.scm:381 guix/scripts/download.scm:106 -#: guix/scripts/package.scm:506 guix/scripts/install.scm:46 +#: guix/scripts/package.scm:508 guix/scripts/install.scm:46 #: guix/scripts/remove.scm:43 guix/scripts/upgrade.scm:50 #: guix/scripts/search.scm:39 guix/scripts/show.scm:38 guix/scripts/gc.scm:90 #: guix/scripts/git.scm:36 guix/scripts/git/authenticate.scm:112 #: guix/scripts/hash.scm:100 guix/scripts/import.scm:100 #: guix/scripts/import/minetest.scm:50 guix/scripts/import/cran.scm:55 #: guix/scripts/pull.scm:127 guix/scripts/substitute.scm:252 -#: guix/scripts/system.scm:1034 guix/scripts/lint.scm:119 +#: guix/scripts/system.scm:1037 guix/scripts/lint.scm:119 #: guix/scripts/publish.scm:121 guix/scripts/edit.scm:53 #: guix/scripts/size.scm:251 guix/scripts/graph.scm:560 #: guix/scripts/challenge.scm:432 guix/scripts/copy.scm:129 #: guix/scripts/pack.scm:1359 guix/scripts/weather.scm:338 #: guix/scripts/describe.scm:98 guix/scripts/processes.scm:303 -#: guix/scripts/deploy.scm:57 guix/scripts/container.scm:37 +#: guix/scripts/deploy.scm:60 guix/scripts/container.scm:37 #: guix/scripts/container/exec.scm:45 guix/scripts/archive.scm:108 -#: guix/scripts/environment.scm:151 guix/scripts/home.scm:99 +#: guix/scripts/environment.scm:151 guix/scripts/home.scm:103 #: guix/scripts/time-machine.scm:69 guix/scripts/import/cpan.scm:46 #: guix/scripts/import/crate.scm:52 guix/scripts/import/egg.scm:49 #: guix/scripts/import/gem.scm:48 guix/scripts/import/gnu.scm:52 #: guix/scripts/import/json.scm:54 guix/scripts/import/opam.scm:52 #: guix/scripts/import/pypi.scm:50 guix/scripts/import/texlive.scm:47 #: guix/scripts/refresh.scm:189 guix/scripts/repl.scm:85 -#: guix/scripts/shell.scm:69 guix/scripts/style.scm:511 +#: guix/scripts/shell.scm:71 guix/scripts/style.scm:806 msgid "" "\n" " -V, --version display version information and exit" @@ -2465,164 +2565,164 @@ msgstr "" msgid "\"bash-minimal\" should be in 'inputs' when '~a' is used" msgstr "" -#: guix/lint.scm:616 +#: guix/lint.scm:614 msgid "no period allowed at the end of the synopsis" msgstr "" -#: guix/lint.scm:630 +#: guix/lint.scm:628 msgid "no article allowed at the beginning of the synopsis" msgstr "" -#: guix/lint.scm:639 +#: guix/lint.scm:637 msgid "synopsis should be less than 80 characters long" msgstr "" -#: guix/lint.scm:648 +#: guix/lint.scm:646 msgid "synopsis should start with an upper-case letter or digit" msgstr "" -#: guix/lint.scm:656 +#: guix/lint.scm:654 msgid "synopsis should not start with the package name" msgstr "" -#: guix/lint.scm:670 +#: guix/lint.scm:668 msgid "Texinfo markup in synopsis is invalid" msgstr "" -#: guix/lint.scm:678 +#: guix/lint.scm:676 msgid "synopsis contains trailing whitespace" msgstr "" -#: guix/lint.scm:695 +#: guix/lint.scm:693 msgid "synopsis should not be empty" msgstr "" -#: guix/lint.scm:705 +#: guix/lint.scm:703 #, scheme-format msgid "invalid synopsis: ~s" msgstr "" -#: guix/lint.scm:805 +#: guix/lint.scm:803 #, scheme-format msgid "~a: HTTP GET error for ~a: ~a (~s)~%" msgstr "" -#: guix/lint.scm:815 +#: guix/lint.scm:813 #, scheme-format msgid "~a: host lookup failure: ~a~%" msgstr "" -#: guix/lint.scm:820 +#: guix/lint.scm:818 #, scheme-format msgid "~a: TLS certificate error: ~a" msgstr "" -#: guix/lint.scm:825 +#: guix/lint.scm:823 #, scheme-format msgid "~a: TLS error in '~a': ~a~%" msgstr "" -#: guix/lint.scm:836 guix/ui.scm:820 guix/scripts/offload.scm:194 +#: guix/lint.scm:834 guix/ui.scm:820 guix/scripts/offload.scm:194 #, scheme-format msgid "~a: ~a~%" msgstr "" -#: guix/lint.scm:868 +#: guix/lint.scm:866 #, scheme-format msgid "URI ~a returned suspiciously small file (~a bytes)" msgstr "" -#: guix/lint.scm:877 +#: guix/lint.scm:875 #, scheme-format msgid "permanent redirect from ~a to ~a" msgstr "" -#: guix/lint.scm:883 +#: guix/lint.scm:881 #, scheme-format msgid "invalid permanent redirect from ~a" msgstr "" -#: guix/lint.scm:889 guix/lint.scm:899 +#: guix/lint.scm:887 guix/lint.scm:897 #, scheme-format msgid "URI ~a not reachable: ~a (~s)" msgstr "" -#: guix/lint.scm:905 +#: guix/lint.scm:903 #, scheme-format msgid "URI ~a domain not found: ~a" msgstr "" -#: guix/lint.scm:911 +#: guix/lint.scm:909 #, scheme-format msgid "URI ~a unreachable: ~a" msgstr "" -#: guix/lint.scm:919 +#: guix/lint.scm:917 #, scheme-format msgid "TLS certificate error: ~a" msgstr "" -#: guix/lint.scm:946 +#: guix/lint.scm:944 msgid "invalid value for home page" msgstr "" -#: guix/lint.scm:951 +#: guix/lint.scm:949 #, scheme-format msgid "invalid home page URL: ~s" msgstr "" -#: guix/lint.scm:988 +#: guix/lint.scm:986 msgid "file names of patches should start with the package name" msgstr "" -#: guix/lint.scm:1008 +#: guix/lint.scm:1006 #, scheme-format msgid "~a: file name is too long, which may break 'make dist'" msgstr "" -#: guix/lint.scm:1029 +#: guix/lint.scm:1027 #, scheme-format msgid "~a: empty patch" msgstr "" -#: guix/lint.scm:1038 +#: guix/lint.scm:1036 #, scheme-format msgid "~a: patch lacks comment and upstream status" msgstr "" -#: guix/lint.scm:1099 +#: guix/lint.scm:1097 #, scheme-format msgid "proposed synopsis: ~s~%" msgstr "" -#: guix/lint.scm:1113 +#: guix/lint.scm:1111 #, scheme-format msgid "proposed description:~% \"~a\"~%" msgstr "" -#: guix/lint.scm:1164 +#: guix/lint.scm:1162 msgid "all the source URIs are unreachable:" msgstr "" -#: guix/lint.scm:1193 +#: guix/lint.scm:1191 msgid "the source file name should contain the package name" msgstr "" -#: guix/lint.scm:1205 +#: guix/lint.scm:1203 msgid "the source URI should not be an autogenerated tarball" msgstr "" -#: guix/lint.scm:1229 +#: guix/lint.scm:1227 #, scheme-format msgid "URL should be 'mirror://~a/~a'" msgstr "" -#: guix/lint.scm:1269 +#: guix/lint.scm:1267 #, scheme-format msgid "while accessing '~a'" msgstr "" -#: guix/lint.scm:1276 +#: guix/lint.scm:1274 #, scheme-format msgid "URL should be '~a'" msgstr "" @@ -2630,68 +2730,68 @@ msgstr "" #. TRANSLATORS: check and #:tests? are a #. Scheme symbol and keyword respectively #. and should not be translated. -#: guix/lint.scm:1304 +#: guix/lint.scm:1302 msgid "the 'check' phase should respect #:tests?" msgstr "" -#: guix/lint.scm:1322 guix/lint.scm:1333 guix/lint.scm:1341 +#: guix/lint.scm:1320 guix/lint.scm:1331 guix/lint.scm:1339 #, scheme-format msgid "failed to create ~a derivation: ~a" msgstr "" -#: guix/lint.scm:1327 +#: guix/lint.scm:1325 #, scheme-format msgid "failed to create ~a derivation: ~s" msgstr "" -#: guix/lint.scm:1379 +#: guix/lint.scm:1377 #, scheme-format msgid "propagated inputs ~a and ~a collide" msgstr "" -#: guix/lint.scm:1403 +#: guix/lint.scm:1401 msgid "invalid license field" msgstr "" -#: guix/lint.scm:1410 +#: guix/lint.scm:1408 msgid "while retrieving CVE vulnerabilities" msgstr "" -#: guix/lint.scm:1453 +#: guix/lint.scm:1451 #, scheme-format msgid "probably vulnerable to ~a" msgstr "" -#: guix/lint.scm:1461 +#: guix/lint.scm:1459 #, scheme-format msgid "no updater for ~a" msgstr "" -#: guix/lint.scm:1466 guix/lint.scm:1641 +#: guix/lint.scm:1464 guix/lint.scm:1639 #, scheme-format msgid "while retrieving upstream info for '~a'" msgstr "" -#: guix/lint.scm:1475 +#: guix/lint.scm:1473 #, scheme-format msgid "can be upgraded to ~a" msgstr "" -#: guix/lint.scm:1481 +#: guix/lint.scm:1479 #, scheme-format msgid "updater '~a' failed to find upstream releases" msgstr "" -#: guix/lint.scm:1508 +#: guix/lint.scm:1506 #, scheme-format msgid "failed to access Disarchive database at ~a" msgstr "" -#: guix/lint.scm:1535 +#: guix/lint.scm:1533 msgid "Software Heritage rate limit reached; try again later" msgstr "" -#: guix/lint.scm:1539 +#: guix/lint.scm:1537 #, scheme-format msgid "'~a' returned ~a" msgstr "" @@ -2699,162 +2799,162 @@ msgstr "" #. TRANSLATORS: "Software Heritage" is a proper noun #. that must remain untranslated. See #. . -#: guix/lint.scm:1578 +#: guix/lint.scm:1576 msgid "scheduled Software Heritage archival" msgstr "" -#: guix/lint.scm:1584 +#: guix/lint.scm:1582 msgid "archival rate limit exceeded; try again later" msgstr "" -#: guix/lint.scm:1605 +#: guix/lint.scm:1603 msgid "source not archived on Software Heritage and missing from the Disarchive database" msgstr "" -#: guix/lint.scm:1615 +#: guix/lint.scm:1613 #, scheme-format msgid "Disarchive entry refers to non-existent SWH directory '~a'" msgstr "" -#: guix/lint.scm:1624 +#: guix/lint.scm:1622 msgid "unsupported source type" msgstr "" -#: guix/lint.scm:1633 +#: guix/lint.scm:1631 msgid "while connecting to Software Heritage" msgstr "" -#: guix/lint.scm:1650 +#: guix/lint.scm:1648 #, scheme-format msgid "ahead of Stackage LTS version ~a" msgstr "" -#: guix/lint.scm:1667 +#: guix/lint.scm:1665 #, scheme-format msgid "tabulation on line ~a, column ~a" msgstr "" -#: guix/lint.scm:1679 +#: guix/lint.scm:1677 #, scheme-format msgid "trailing white space on line ~a" msgstr "" -#: guix/lint.scm:1693 +#: guix/lint.scm:1691 #, scheme-format msgid "line ~a is way too long (~a characters)" msgstr "" -#: guix/lint.scm:1707 +#: guix/lint.scm:1705 msgid "parentheses feel lonely, move to the previous or next line" msgstr "" -#: guix/lint.scm:1784 +#: guix/lint.scm:1782 msgid "source file not found" msgstr "" -#: guix/lint.scm:1796 +#: guix/lint.scm:1794 msgid "Validate package names" msgstr "" -#: guix/lint.scm:1800 +#: guix/lint.scm:1798 msgid "Check if tests are explicitly enabled" msgstr "" -#: guix/lint.scm:1804 +#: guix/lint.scm:1802 msgid "Validate package descriptions" msgstr "" -#: guix/lint.scm:1808 +#: guix/lint.scm:1806 msgid "Identify inputs that should be native inputs" msgstr "" -#: guix/lint.scm:1812 +#: guix/lint.scm:1810 msgid "Identify inputs that shouldn't be inputs at all" msgstr "" -#: guix/lint.scm:1816 +#: guix/lint.scm:1814 msgid "Identify input labels that do not match package names" msgstr "" -#: guix/lint.scm:1820 +#: guix/lint.scm:1818 msgid "Make sure 'wrap-program' can finds its interpreter." msgstr "" #. TRANSLATORS: is the name of a data type and must not be #. translated. -#: guix/lint.scm:1826 +#: guix/lint.scm:1824 msgid "Make sure the 'license' field is a or a list thereof" msgstr "" -#: guix/lint.scm:1831 +#: guix/lint.scm:1829 msgid "Make sure tests are only run when requested" msgstr "" -#: guix/lint.scm:1835 +#: guix/lint.scm:1833 msgid "Suggest 'mirror://' URLs" msgstr "" -#: guix/lint.scm:1839 +#: guix/lint.scm:1837 msgid "Validate file names of sources" msgstr "" -#: guix/lint.scm:1843 +#: guix/lint.scm:1841 msgid "Check for autogenerated tarballs" msgstr "" -#: guix/lint.scm:1847 +#: guix/lint.scm:1845 msgid "Report failure to compile a package to a derivation" msgstr "" -#: guix/lint.scm:1852 +#: guix/lint.scm:1850 msgid "Report collisions that would occur due to propagated inputs" msgstr "" -#: guix/lint.scm:1857 +#: guix/lint.scm:1855 msgid "Validate file names and availability of patches" msgstr "" -#: guix/lint.scm:1861 +#: guix/lint.scm:1859 msgid "Validate patch headers" msgstr "" -#: guix/lint.scm:1865 +#: guix/lint.scm:1863 msgid "Look for formatting issues in the source" msgstr "" -#: guix/lint.scm:1872 +#: guix/lint.scm:1870 msgid "Validate package synopses" msgstr "" -#: guix/lint.scm:1876 +#: guix/lint.scm:1874 msgid "Validate synopsis & description of GNU packages" msgstr "" -#: guix/lint.scm:1880 +#: guix/lint.scm:1878 msgid "Validate home-page URLs" msgstr "" -#: guix/lint.scm:1884 +#: guix/lint.scm:1882 msgid "Validate source URLs" msgstr "" -#: guix/lint.scm:1888 +#: guix/lint.scm:1886 msgid "Suggest GitHub URLs" msgstr "" -#: guix/lint.scm:1892 +#: guix/lint.scm:1890 msgid "Check the Common Vulnerabilities and Exposures (CVE) database" msgstr "" -#: guix/lint.scm:1897 +#: guix/lint.scm:1895 msgid "Check the package for new upstream releases" msgstr "" -#: guix/lint.scm:1901 +#: guix/lint.scm:1899 msgid "Ensure source code archival on Software Heritage" msgstr "" -#: guix/lint.scm:1905 +#: guix/lint.scm:1903 msgid "Ensure Haskell packages use Stackage LTS versions" msgstr "" @@ -2906,7 +3006,7 @@ msgstr "" msgid "~a: unknown hash algorithm~%" msgstr "" -#: guix/scripts/download.scm:171 guix/scripts/package.scm:1087 +#: guix/scripts/download.scm:171 guix/scripts/package.scm:1090 #: guix/scripts/pull.scm:758 guix/scripts/publish.scm:1260 #: guix/scripts/discover.scm:136 guix/scripts/time-machine.scm:123 #, scheme-format @@ -2938,17 +3038,17 @@ msgstr "" msgid "no matching generation~%" msgstr "" -#: guix/scripts/package.scm:159 +#: guix/scripts/package.scm:161 #, scheme-format msgid "nothing to be done~%" msgstr "" -#: guix/scripts/package.scm:260 +#: guix/scripts/package.scm:262 #, scheme-format msgid "package '~a' no longer exists~%" msgstr "" -#: guix/scripts/package.scm:315 +#: guix/scripts/package.scm:317 #, scheme-format msgid "" "Consider setting the necessary environment\n" @@ -2962,7 +3062,7 @@ msgid "" "Alternately, see @command{guix package --search-paths -p ~s}." msgstr "" -#: guix/scripts/package.scm:361 +#: guix/scripts/package.scm:363 msgid "" ";; This \"manifest\" file can be passed to 'guix package -m' to reproduce\n" ";; the content of your profile. This is \"symbolic\": it only specifies\n" @@ -2971,44 +3071,44 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/package.scm:393 +#: guix/scripts/package.scm:395 #, scheme-format msgid "no provenance information for this profile~%" msgstr "" -#: guix/scripts/package.scm:395 +#: guix/scripts/package.scm:397 msgid "" ";; This channel file can be passed to 'guix pull -C' or to\n" ";; 'guix time-machine -C' to obtain the Guix revision that was\n" ";; used to populate this profile.\n" msgstr "" -#: guix/scripts/package.scm:407 +#: guix/scripts/package.scm:409 #, scheme-format msgid ";; Note: these other commits were also used to install some of the packages in this profile:~%" msgstr "" -#: guix/scripts/package.scm:437 +#: guix/scripts/package.scm:439 msgid "" "Usage: guix package [OPTION]...\n" "Install, remove, or upgrade packages in a single transaction.\n" msgstr "" -#: guix/scripts/package.scm:439 +#: guix/scripts/package.scm:441 msgid "" "\n" " -i, --install PACKAGE ...\n" " install PACKAGEs" msgstr "" -#: guix/scripts/package.scm:442 +#: guix/scripts/package.scm:444 msgid "" "\n" " -e, --install-from-expression=EXP\n" " install the package EXP evaluates to" msgstr "" -#: guix/scripts/package.scm:445 +#: guix/scripts/package.scm:447 msgid "" "\n" " -f, --install-from-file=FILE\n" @@ -3016,160 +3116,160 @@ msgid "" " evaluates to" msgstr "" -#: guix/scripts/package.scm:449 +#: guix/scripts/package.scm:451 msgid "" "\n" " -r, --remove PACKAGE ...\n" " remove PACKAGEs" msgstr "" -#: guix/scripts/package.scm:452 +#: guix/scripts/package.scm:454 msgid "" "\n" " -u, --upgrade[=REGEXP] upgrade all the installed packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:454 +#: guix/scripts/package.scm:456 msgid "" "\n" " -m, --manifest=FILE create a new profile generation with the manifest\n" " from FILE" msgstr "" -#: guix/scripts/package.scm:457 guix/scripts/upgrade.scm:41 +#: guix/scripts/package.scm:459 guix/scripts/upgrade.scm:41 msgid "" "\n" " --do-not-upgrade[=REGEXP] do not upgrade any packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:459 guix/scripts/pull.scm:107 +#: guix/scripts/package.scm:461 guix/scripts/pull.scm:107 msgid "" "\n" " --roll-back roll back to the previous generation" msgstr "" -#: guix/scripts/package.scm:461 +#: guix/scripts/package.scm:463 msgid "" "\n" " --search-paths[=KIND]\n" " display needed environment variable definitions" msgstr "" -#: guix/scripts/package.scm:464 guix/scripts/pull.scm:104 +#: guix/scripts/package.scm:466 guix/scripts/pull.scm:104 msgid "" "\n" " -l, --list-generations[=PATTERN]\n" " list generations matching PATTERN" msgstr "" -#: guix/scripts/package.scm:467 guix/scripts/pull.scm:109 +#: guix/scripts/package.scm:469 guix/scripts/pull.scm:109 msgid "" "\n" " -d, --delete-generations[=PATTERN]\n" " delete generations matching PATTERN" msgstr "" -#: guix/scripts/package.scm:470 guix/scripts/pull.scm:112 +#: guix/scripts/package.scm:472 guix/scripts/pull.scm:112 msgid "" "\n" " -S, --switch-generation=PATTERN\n" " switch to a generation matching PATTERN" msgstr "" -#: guix/scripts/package.scm:473 +#: guix/scripts/package.scm:475 msgid "" "\n" " --export-manifest print a manifest for the chosen profile" msgstr "" -#: guix/scripts/package.scm:475 +#: guix/scripts/package.scm:477 msgid "" "\n" " --export-channels print channels for the chosen profile" msgstr "" -#: guix/scripts/package.scm:477 guix/scripts/install.scm:34 +#: guix/scripts/package.scm:479 guix/scripts/install.scm:34 #: guix/scripts/remove.scm:33 guix/scripts/upgrade.scm:37 msgid "" "\n" " -p, --profile=PROFILE use PROFILE instead of the user's default profile" msgstr "" -#: guix/scripts/package.scm:479 +#: guix/scripts/package.scm:481 msgid "" "\n" " --list-profiles list the user's profiles" msgstr "" -#: guix/scripts/package.scm:482 +#: guix/scripts/package.scm:484 msgid "" "\n" " --allow-collisions do not treat collisions in the profile as an error" msgstr "" -#: guix/scripts/package.scm:484 +#: guix/scripts/package.scm:486 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" msgstr "" -#: guix/scripts/package.scm:489 +#: guix/scripts/package.scm:491 msgid "" "\n" " -s, --search=REGEXP search in synopsis and description using REGEXP" msgstr "" -#: guix/scripts/package.scm:491 +#: guix/scripts/package.scm:493 msgid "" "\n" " -I, --list-installed[=REGEXP]\n" " list installed packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:494 +#: guix/scripts/package.scm:496 msgid "" "\n" " -A, --list-available[=REGEXP]\n" " list available packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:497 +#: guix/scripts/package.scm:499 msgid "" "\n" " --show=PACKAGE show details about PACKAGE" msgstr "" -#: guix/scripts/package.scm:552 +#: guix/scripts/package.scm:554 #, scheme-format msgid "upgrade regexp '~a' looks like a command-line option~%" msgstr "" -#: guix/scripts/package.scm:555 +#: guix/scripts/package.scm:557 #, scheme-format msgid "is this intended?~%" msgstr "" -#: guix/scripts/package.scm:605 +#: guix/scripts/package.scm:607 #, scheme-format msgid "~a: unsupported kind of search path~%" msgstr "" -#: guix/scripts/package.scm:739 +#: guix/scripts/package.scm:741 #, scheme-format msgid "cannot install non-package object: ~s~%" msgstr "" -#: guix/scripts/package.scm:918 +#: guix/scripts/package.scm:920 #, scheme-format msgid "~a~@[@~a~]: package not found~%" msgstr "" -#: guix/scripts/package.scm:965 guix/scripts/pull.scm:687 +#: guix/scripts/package.scm:967 guix/scripts/pull.scm:687 #, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "" -#: guix/scripts/package.scm:1060 +#: guix/scripts/package.scm:1062 #, scheme-format msgid "nothing to do~%" msgstr "" @@ -3378,8 +3478,8 @@ msgid "" "Operate on Git repositories.\n" msgstr "" -#: guix/scripts/git.scm:29 guix/scripts/system.scm:945 -#: guix/scripts/container.scm:30 guix/scripts/home.scm:69 +#: guix/scripts/git.scm:29 guix/scripts/system.scm:946 +#: guix/scripts/container.scm:30 guix/scripts/home.scm:70 msgid "The valid values for ACTION are:\n" msgstr "" @@ -3470,25 +3570,25 @@ msgid "" " -S, --serializer=TYPE compute the hash on FILE according to TYPE serialization" msgstr "" -#: guix/scripts/hash.scm:137 +#: guix/scripts/hash.scm:138 #, fuzzy, scheme-format #| msgid "using a monadic value for '~a' is deprecated; use 'plain-file' instead~%" -msgid "'--recursive' is deprecated, use '--serializer' instead~%" +msgid "'--recursive' is deprecated, use '--serializer=nar' instead~%" msgstr "описание '~a' монадным значением устарело; используйте вместо этого 'plain-file'~%" -#: guix/scripts/hash.scm:152 +#: guix/scripts/hash.scm:153 #, fuzzy, scheme-format #| msgid "Unsupported image type ~a~%." msgid "unsupported serializer type: ~a~%" msgstr "Неподдерживаемый тип образа ~a~%." -#: guix/scripts/hash.scm:201 +#: guix/scripts/hash.scm:202 #, fuzzy, scheme-format #| msgid "~a for ~a~%" msgid "~a ~a~%" msgstr "~a для ~a~%" -#: guix/scripts/hash.scm:210 +#: guix/scripts/hash.scm:211 #, scheme-format msgid "no arguments specified~%" msgstr "" @@ -3548,9 +3648,9 @@ msgstr "" #: guix/scripts/import/minetest.scm:115 guix/scripts/import/cran.scm:120 #: guix/scripts/import/elpa.scm:110 guix/scripts/import/cpan.scm:87 #: guix/scripts/import/crate.scm:103 guix/scripts/import/egg.scm:106 -#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:121 +#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:122 #: guix/scripts/import/hackage.scm:158 guix/scripts/import/json.scm:97 -#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:104 +#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:105 #: guix/scripts/import/stackage.scm:130 guix/scripts/import/texlive.scm:88 #, scheme-format msgid "too few arguments~%" @@ -3559,10 +3659,10 @@ msgstr "" #: guix/scripts/import/minetest.scm:117 guix/scripts/import/cran.scm:122 #: guix/scripts/import/elpa.scm:112 guix/scripts/import/cpan.scm:89 #: guix/scripts/import/crate.scm:105 guix/scripts/import/egg.scm:108 -#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:123 +#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:124 #: guix/scripts/import/hackage.scm:149 guix/scripts/import/hackage.scm:160 #: guix/scripts/import/json.scm:99 guix/scripts/import/opam.scm:113 -#: guix/scripts/import/pypi.scm:106 guix/scripts/import/stackage.scm:132 +#: guix/scripts/import/pypi.scm:107 guix/scripts/import/stackage.scm:132 #: guix/scripts/import/texlive.scm:90 #, scheme-format msgid "too many arguments~%" @@ -3586,7 +3686,7 @@ msgid "" " -s, --style=STYLE choose output style, either specification or variable" msgstr "" -#: guix/scripts/import/cran.scm:116 guix/scripts/import/texlive.scm:84 +#: guix/scripts/import/cran.scm:116 #, scheme-format msgid "failed to download description for package '~a'~%" msgstr "" @@ -3987,27 +4087,27 @@ msgstr "" msgid "the dependency graph of shepherd services" msgstr "" -#: guix/scripts/system.scm:482 guix/scripts/home.scm:453 +#: guix/scripts/system.scm:482 guix/scripts/home.scm:466 #, scheme-format msgid " repository URL: ~a~%" msgstr "" -#: guix/scripts/system.scm:484 guix/scripts/home.scm:455 +#: guix/scripts/system.scm:484 guix/scripts/home.scm:468 #, scheme-format msgid " branch: ~a~%" msgstr "" -#: guix/scripts/system.scm:485 guix/scripts/home.scm:456 +#: guix/scripts/system.scm:485 guix/scripts/home.scm:469 #, scheme-format msgid " commit: ~a~%" msgstr "" -#: guix/scripts/system.scm:505 guix/scripts/home.scm:469 +#: guix/scripts/system.scm:505 guix/scripts/home.scm:482 #, scheme-format msgid " file name: ~a~%" msgstr "" -#: guix/scripts/system.scm:506 guix/scripts/home.scm:470 +#: guix/scripts/system.scm:506 guix/scripts/home.scm:483 #, scheme-format msgid " canonical file name: ~a~%" msgstr "" @@ -4048,12 +4148,12 @@ msgstr "" #. TRANSLATORS: Here "channel" is the same terminology as used in #. "guix describe" and "guix pull --channels". -#: guix/scripts/system.scm:536 guix/scripts/home.scm:476 +#: guix/scripts/system.scm:536 guix/scripts/home.scm:489 #, scheme-format msgid " channels:~%" msgstr "" -#: guix/scripts/system.scm:539 guix/scripts/home.scm:479 +#: guix/scripts/system.scm:539 guix/scripts/home.scm:492 #, scheme-format msgid " configuration file: ~a~%" msgstr "" @@ -4106,128 +4206,128 @@ msgstr "" msgid "Failing to do that may downgrade your system!~%" msgstr "" -#: guix/scripts/system.scm:754 guix/scripts/system.scm:863 +#: guix/scripts/system.scm:754 guix/scripts/system.scm:864 #, scheme-format msgid "bootloader successfully installed on '~a'~%" msgstr "" -#: guix/scripts/system.scm:856 +#: guix/scripts/system.scm:857 #, scheme-format msgid "activating system...~%" msgstr "" -#: guix/scripts/system.scm:867 +#: guix/scripts/system.scm:868 msgid "" "To complete the upgrade, run 'herd restart SERVICE' to stop,\n" "upgrade, and restart each service that was not automatically restarted.\n" msgstr "" -#: guix/scripts/system.scm:870 +#: guix/scripts/system.scm:871 msgid "Run 'herd status' to view the list of services on your system.\n" msgstr "" -#: guix/scripts/system.scm:874 +#: guix/scripts/system.scm:875 #, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "" -#: guix/scripts/system.scm:894 guix/scripts/graph.scm:437 +#: guix/scripts/system.scm:895 guix/scripts/graph.scm:437 #, scheme-format msgid "~a: unknown backend~%" msgstr "" -#: guix/scripts/system.scm:931 +#: guix/scripts/system.scm:932 msgid "The available image types are:\n" msgstr "" -#: guix/scripts/system.scm:941 +#: guix/scripts/system.scm:942 msgid "" "Usage: guix system [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the operating system declared in FILE according to ACTION.\n" "Some ACTIONS support additional ARGS.\n" msgstr "" -#: guix/scripts/system.scm:947 +#: guix/scripts/system.scm:948 msgid " search search for existing service types\n" msgstr "" -#: guix/scripts/system.scm:949 +#: guix/scripts/system.scm:950 msgid " reconfigure switch to a new operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:951 +#: guix/scripts/system.scm:952 msgid " roll-back switch to the previous operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:953 +#: guix/scripts/system.scm:954 msgid " describe describe the current system\n" msgstr "" -#: guix/scripts/system.scm:955 +#: guix/scripts/system.scm:956 msgid " list-generations list the system generations\n" msgstr "" -#: guix/scripts/system.scm:957 +#: guix/scripts/system.scm:958 msgid " switch-generation switch to an existing operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:959 +#: guix/scripts/system.scm:960 msgid " delete-generations delete old system generations\n" msgstr "" -#: guix/scripts/system.scm:961 +#: guix/scripts/system.scm:962 msgid " build build the operating system without installing anything\n" msgstr "" -#: guix/scripts/system.scm:963 +#: guix/scripts/system.scm:964 msgid " container build a container that shares the host's store\n" msgstr "" -#: guix/scripts/system.scm:965 +#: guix/scripts/system.scm:966 msgid " vm build a virtual machine image that shares the host's store\n" msgstr "" -#: guix/scripts/system.scm:967 +#: guix/scripts/system.scm:968 msgid " image build a Guix System image\n" msgstr "" -#: guix/scripts/system.scm:969 +#: guix/scripts/system.scm:970 msgid " docker-image build a Docker image\n" msgstr "" -#: guix/scripts/system.scm:971 +#: guix/scripts/system.scm:972 msgid " init initialize a root file system to run GNU\n" msgstr "" -#: guix/scripts/system.scm:973 +#: guix/scripts/system.scm:974 msgid " extension-graph emit the service extension graph in Dot format\n" msgstr "" -#: guix/scripts/system.scm:975 +#: guix/scripts/system.scm:976 msgid " shepherd-graph emit the graph of shepherd services in Dot format\n" msgstr "" -#: guix/scripts/system.scm:979 +#: guix/scripts/system.scm:980 msgid "" "\n" " -d, --derivation return the derivation of the given system" msgstr "" -#: guix/scripts/system.scm:981 +#: guix/scripts/system.scm:982 msgid "" "\n" " -e, --expression=EXPR consider the operating-system EXPR evaluates to\n" " instead of reading FILE, when applicable" msgstr "" -#: guix/scripts/system.scm:984 +#: guix/scripts/system.scm:985 guix/scripts/home.scm:95 msgid "" "\n" " --allow-downgrades for 'reconfigure', allow downgrades to earlier\n" " channel revisions" msgstr "" -#: guix/scripts/system.scm:987 +#: guix/scripts/system.scm:988 msgid "" "\n" " --on-error=STRATEGY\n" @@ -4235,69 +4335,75 @@ msgid "" " or debug) when an error occurs while reading FILE" msgstr "" -#: guix/scripts/system.scm:991 +#: guix/scripts/system.scm:992 msgid "" "\n" " --list-image-types list available image types" msgstr "" -#: guix/scripts/system.scm:993 +#: guix/scripts/system.scm:994 msgid "" "\n" " -t, --image-type=TYPE for 'image', produce an image of TYPE" msgstr "" -#: guix/scripts/system.scm:995 +#: guix/scripts/system.scm:996 msgid "" "\n" " --image-size=SIZE for 'image', produce an image of SIZE" msgstr "" -#: guix/scripts/system.scm:997 +#: guix/scripts/system.scm:998 msgid "" "\n" " --no-bootloader for 'init', do not install a bootloader" msgstr "" -#: guix/scripts/system.scm:999 +#: guix/scripts/system.scm:1000 msgid "" "\n" " --volatile for 'image', make the root file system volatile" msgstr "" -#: guix/scripts/system.scm:1001 +#: guix/scripts/system.scm:1002 +msgid "" +"\n" +" --persistent for 'vm', make the root file system persistent" +msgstr "" + +#: guix/scripts/system.scm:1004 msgid "" "\n" " --label=LABEL for 'image', label disk image with LABEL" msgstr "" -#: guix/scripts/system.scm:1003 guix/scripts/pack.scm:1340 +#: guix/scripts/system.scm:1006 guix/scripts/pack.scm:1340 msgid "" "\n" " --save-provenance save provenance information" msgstr "" -#: guix/scripts/system.scm:1005 +#: guix/scripts/system.scm:1008 msgid "" "\n" " --share=SPEC for 'vm' and 'container', share host file system with\n" " read/write access according to SPEC" msgstr "" -#: guix/scripts/system.scm:1008 +#: guix/scripts/system.scm:1011 msgid "" "\n" " --expose=SPEC for 'vm' and 'container', expose host file system\n" " directory as read-only according to SPEC" msgstr "" -#: guix/scripts/system.scm:1011 +#: guix/scripts/system.scm:1014 msgid "" "\n" " -N, --network for 'container', allow containers to access the network" msgstr "" -#: guix/scripts/system.scm:1013 +#: guix/scripts/system.scm:1016 msgid "" "\n" " -r, --root=FILE for 'vm', 'image', 'container' and 'build',\n" @@ -4305,82 +4411,82 @@ msgid "" " register it as a garbage collector root" msgstr "" -#: guix/scripts/system.scm:1017 +#: guix/scripts/system.scm:1020 msgid "" "\n" " --full-boot for 'vm', make a full boot sequence" msgstr "" -#: guix/scripts/system.scm:1019 +#: guix/scripts/system.scm:1022 msgid "" "\n" " --no-graphic for 'vm', use the tty that we are started in for IO" msgstr "" -#: guix/scripts/system.scm:1021 +#: guix/scripts/system.scm:1024 msgid "" "\n" " --skip-checks skip file system and initrd module safety checks" msgstr "" -#: guix/scripts/system.scm:1028 +#: guix/scripts/system.scm:1031 msgid "" "\n" " --graph-backend=BACKEND\n" " use BACKEND for 'extension-graphs' and 'shepherd-graph'" msgstr "" -#: guix/scripts/system.scm:1180 +#: guix/scripts/system.scm:1187 #, scheme-format msgid "'~a' does not return an operating system or an image~%" msgstr "" -#: guix/scripts/system.scm:1204 guix/scripts/home.scm:216 +#: guix/scripts/system.scm:1211 guix/scripts/home.scm:230 #, scheme-format msgid "both file and expression cannot be specified~%" msgstr "" -#: guix/scripts/system.scm:1211 guix/scripts/home.scm:223 +#: guix/scripts/system.scm:1218 guix/scripts/home.scm:237 #, scheme-format msgid "no configuration specified~%" msgstr "" -#: guix/scripts/system.scm:1319 guix/scripts/system.scm:1335 -#: guix/scripts/system.scm:1342 guix/scripts/system.scm:1348 -#: guix/scripts/home.scm:274 guix/scripts/home.scm:296 -#: guix/scripts/home.scm:301 guix/scripts/home.scm:307 -#: guix/scripts/home.scm:314 guix/scripts/import/gnu.scm:100 +#: guix/scripts/system.scm:1328 guix/scripts/system.scm:1344 +#: guix/scripts/system.scm:1351 guix/scripts/system.scm:1357 +#: guix/scripts/home.scm:287 guix/scripts/home.scm:309 +#: guix/scripts/home.scm:314 guix/scripts/home.scm:320 +#: guix/scripts/home.scm:327 guix/scripts/import/gnu.scm:100 #: guix/scripts/offload.scm:836 guix/scripts/offload.scm:848 #, scheme-format msgid "wrong number of arguments~%" msgstr "" -#: guix/scripts/system.scm:1324 +#: guix/scripts/system.scm:1333 #, scheme-format msgid "no system generation, nothing to describe~%" msgstr "" -#: guix/scripts/system.scm:1367 guix/scripts/home.scm:337 +#: guix/scripts/system.scm:1376 guix/scripts/home.scm:350 #, scheme-format msgid "~a: unknown action~%" msgstr "" -#: guix/scripts/system.scm:1387 guix/scripts/home.scm:353 +#: guix/scripts/system.scm:1396 guix/scripts/home.scm:366 #, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "" -#: guix/scripts/system.scm:1392 +#: guix/scripts/system.scm:1401 #, scheme-format msgid "guix system: missing command name~%" msgstr "" -#: guix/scripts/system.scm:1394 +#: guix/scripts/system.scm:1403 #, scheme-format msgid "Try 'guix system --help' for more information.~%" msgstr "" -#: guix/scripts/system/search.scm:93 guix/ui.scm:1541 guix/ui.scm:1559 +#: guix/scripts/system/search.scm:93 guix/ui.scm:1544 guix/ui.scm:1562 msgid "unknown" msgstr "" @@ -4775,7 +4881,7 @@ msgid "" msgstr "" #: guix/scripts/graph.scm:548 guix/scripts/pack.scm:1325 -#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:502 +#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:797 msgid "" "\n" " -e, --expression=EXPR consider the package EXPR evaluates to" @@ -5368,13 +5474,19 @@ msgid "" " -f, --format=FORMAT display results as normalized record sets" msgstr "" -#: guix/scripts/deploy.scm:51 +#: guix/scripts/deploy.scm:54 msgid "" "Usage: guix deploy [OPTION] FILE...\n" "Perform the deployment specified by FILE.\n" msgstr "" -#: guix/scripts/deploy.scm:108 +#: guix/scripts/deploy.scm:63 +msgid "" +"\n" +" -x, --execute execute the following command on all the machines" +msgstr "" + +#: guix/scripts/deploy.scm:117 #, scheme-format msgid "The following ~d machine will be deployed:~%" msgid_plural "The following ~d machines will be deployed:~%" @@ -5382,31 +5494,70 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: guix/scripts/deploy.scm:122 +#: guix/scripts/deploy.scm:131 #, scheme-format msgid "deploying to ~a...~%" msgstr "" -#: guix/scripts/deploy.scm:134 guix/scripts/deploy.scm:138 +#: guix/scripts/deploy.scm:143 guix/scripts/deploy.scm:147 #, scheme-format msgid "failed to deploy ~a: ~a~%" msgstr "" -#: guix/scripts/deploy.scm:146 +#: guix/scripts/deploy.scm:155 #, scheme-format msgid "rolling back ~a...~%" msgstr "" -#: guix/scripts/deploy.scm:152 +#: guix/scripts/deploy.scm:161 #, scheme-format msgid "successfully deployed ~a~%" msgstr "" -#: guix/scripts/deploy.scm:167 +#: guix/scripts/deploy.scm:212 +#, fuzzy, scheme-format +#| msgid "~a: patch not found" +msgid "~a: command succeeded~%" +msgstr "~a: патч не найден" + +#: guix/scripts/deploy.scm:215 +#, fuzzy, scheme-format +#| msgid "Command failed with exit code ~a.~%" +msgid "~a: command exited with code ~a~%" +msgstr "Команда завершилась неуспешно с кодом возврата ~a.~%" + +#: guix/scripts/deploy.scm:218 +#, fuzzy, scheme-format +#| msgid "~a: patch not found" +msgid "~a: command stopped with signal ~a~%" +msgstr "~a: патч не найден" + +#: guix/scripts/deploy.scm:221 +#, scheme-format +msgid "~a: command terminated with signal ~a~%" +msgstr "" + +#: guix/scripts/deploy.scm:225 +#, fuzzy, scheme-format +#| msgid "~a: patch not found" +msgid "command output on ~a:~%" +msgstr "~a: патч не найден" + +#: guix/scripts/deploy.scm:246 #, scheme-format msgid "missing deployment file argument~%" msgstr "" +#: guix/scripts/deploy.scm:249 +#, scheme-format +msgid "'--' was used by '-x' was not specified~%" +msgstr "" + +#: guix/scripts/deploy.scm:271 +#, scheme-format +msgid "'-x' specified but no command given~%" +msgstr "" + #: guix/gexp.scm:465 #, scheme-format msgid "resolving '~a' relative to current directory~%" @@ -5499,158 +5650,158 @@ msgstr "" msgid "exec failed with status ~d~%" msgstr "" -#: guix/transformations.scm:185 guix/transformations.scm:253 +#: guix/transformations.scm:186 guix/transformations.scm:254 #, scheme-format msgid "invalid replacement specification: ~s" msgstr "" -#: guix/transformations.scm:234 +#: guix/transformations.scm:235 #, scheme-format msgid "the source of ~a is not a Git reference" msgstr "" -#: guix/transformations.scm:337 +#: guix/transformations.scm:338 #, scheme-format msgid "~a: invalid Git URL replacement specification" msgstr "" -#: guix/transformations.scm:415 +#: guix/transformations.scm:416 #, scheme-format msgid "~a: invalid toolchain replacement specification" msgstr "" -#: guix/transformations.scm:517 +#: guix/transformations.scm:518 #, fuzzy #| msgid "failed to determine latest release of GNU ~a" msgid "failed to determine which compiler is used" msgstr "не удалось определить последний выпуск GNU ~a" -#: guix/transformations.scm:523 +#: guix/transformations.scm:524 #, fuzzy, scheme-format #| msgid "failed to determine latest release of GNU ~a" msgid "failed to determine whether ~a supports ~a" msgstr "не удалось определить последний выпуск GNU ~a" -#: guix/transformations.scm:529 +#: guix/transformations.scm:530 #, scheme-format msgid "compiler ~a does not support micro-architecture ~a" msgstr "" -#: guix/transformations.scm:581 +#: guix/transformations.scm:582 #, fuzzy, scheme-format #| msgid "~a for ~a~%" msgid "tuning ~a for CPU ~a~%" msgstr "~a для ~a~%" -#: guix/transformations.scm:721 +#: guix/transformations.scm:722 #, scheme-format msgid "~a: invalid package patch specification" msgstr "" -#: guix/transformations.scm:744 +#: guix/transformations.scm:745 #, scheme-format msgid "could not determine latest upstream release of '~a'~%" msgstr "" -#: guix/transformations.scm:752 +#: guix/transformations.scm:753 #, scheme-format msgid "cannot authenticate source of '~a', version ~a~%" msgstr "" -#: guix/transformations.scm:833 +#: guix/transformations.scm:840 #, scheme-format msgid "building for ~a instead of ~a, so tuning cannot be guessed~%" msgstr "" -#: guix/transformations.scm:859 +#: guix/transformations.scm:866 #, scheme-format msgid "Available package transformation options:~%" msgstr "" -#: guix/transformations.scm:865 +#: guix/transformations.scm:872 msgid "" "\n" " --with-source=[PACKAGE=]SOURCE\n" " use SOURCE when building the corresponding package" msgstr "" -#: guix/transformations.scm:868 +#: guix/transformations.scm:875 msgid "" "\n" " --with-input=PACKAGE=REPLACEMENT\n" " replace dependency PACKAGE by REPLACEMENT" msgstr "" -#: guix/transformations.scm:871 +#: guix/transformations.scm:878 msgid "" "\n" " --with-graft=PACKAGE=REPLACEMENT\n" " graft REPLACEMENT on packages that refer to PACKAGE" msgstr "" -#: guix/transformations.scm:874 +#: guix/transformations.scm:881 msgid "" "\n" " --with-branch=PACKAGE=BRANCH\n" " build PACKAGE from the latest commit of BRANCH" msgstr "" -#: guix/transformations.scm:877 +#: guix/transformations.scm:884 msgid "" "\n" " --with-commit=PACKAGE=COMMIT\n" " build PACKAGE from COMMIT" msgstr "" -#: guix/transformations.scm:880 +#: guix/transformations.scm:887 msgid "" "\n" " --with-git-url=PACKAGE=URL\n" " build PACKAGE from the repository at URL" msgstr "" -#: guix/transformations.scm:883 +#: guix/transformations.scm:890 msgid "" "\n" " --with-patch=PACKAGE=FILE\n" " add FILE to the list of patches of PACKAGE" msgstr "" -#: guix/transformations.scm:886 +#: guix/transformations.scm:893 msgid "" "\n" " --with-latest=PACKAGE\n" " use the latest upstream release of PACKAGE" msgstr "" -#: guix/transformations.scm:889 +#: guix/transformations.scm:896 msgid "" "\n" " --with-c-toolchain=PACKAGE=TOOLCHAIN\n" " build PACKAGE and its dependents with TOOLCHAIN" msgstr "" -#: guix/transformations.scm:892 +#: guix/transformations.scm:899 msgid "" "\n" " --with-debug-info=PACKAGE\n" " build PACKAGE and preserve its debug info" msgstr "" -#: guix/transformations.scm:895 +#: guix/transformations.scm:902 msgid "" "\n" " --without-tests=PACKAGE\n" " build PACKAGE without running its tests" msgstr "" -#: guix/transformations.scm:901 +#: guix/transformations.scm:908 msgid "" "\n" " --help-transform list package transformation options not shown here" msgstr "" -#: guix/transformations.scm:950 +#: guix/transformations.scm:957 #, scheme-format msgid "transformation '~a' had no effect on ~a~%" msgstr "" @@ -6148,12 +6299,12 @@ msgstr[2] "" msgid "~a: invalid Texinfo markup~%" msgstr "" -#: guix/ui.scm:1873 +#: guix/ui.scm:1876 #, scheme-format msgid "invalid syntax: ~a~%" msgstr "" -#: guix/ui.scm:1882 +#: guix/ui.scm:1885 #, scheme-format msgid "Generation ~a\t~a" msgstr "" @@ -6163,7 +6314,7 @@ msgstr "" #. usual way of presenting dates in your locale. #. See https://www.gnu.org/software/guile/manual/html_node/SRFI_002d19-Date-to-string.html #. for details. -#: guix/ui.scm:1892 +#: guix/ui.scm:1895 #, scheme-format msgid "~b ~d ~Y ~T" msgstr "" @@ -6171,74 +6322,74 @@ msgstr "" #. TRANSLATORS: The word "current" here is an adjective for #. "Generation", as in "current generation". Use the appropriate #. gender where applicable. -#: guix/ui.scm:1898 +#: guix/ui.scm:1901 #, scheme-format msgid "~a\t(current)~%" msgstr "" -#: guix/ui.scm:1932 +#: guix/ui.scm:1935 #, scheme-format msgid "cannot lock profile ~a: ~a~%" msgstr "" -#: guix/ui.scm:1934 +#: guix/ui.scm:1937 #, scheme-format msgid "profile ~a is locked by another process~%" msgstr "" -#: guix/ui.scm:1963 +#: guix/ui.scm:1966 #, scheme-format msgid "switched from generation ~a to ~a~%" msgstr "" -#: guix/ui.scm:1979 +#: guix/ui.scm:1982 #, scheme-format msgid "deleting ~a~%" msgstr "" -#: guix/ui.scm:2010 +#: guix/ui.scm:2013 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "" -#: guix/ui.scm:2102 +#: guix/ui.scm:2105 msgid "" "Usage: guix OPTION | COMMAND ARGS...\n" "Run COMMAND with ARGS, if given.\n" msgstr "" -#: guix/ui.scm:2105 +#: guix/ui.scm:2108 msgid "" "\n" " -h, --help display this helpful text again and exit" msgstr "" -#: guix/ui.scm:2107 +#: guix/ui.scm:2110 msgid "" "\n" " -V, --version display version and copyright information and exit" msgstr "" -#: guix/ui.scm:2112 +#: guix/ui.scm:2115 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "" -#: guix/ui.scm:2154 +#: guix/ui.scm:2157 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "" -#: guix/ui.scm:2156 +#: guix/ui.scm:2159 #, scheme-format msgid "Did you mean @code{~a}?" msgstr "" -#: guix/ui.scm:2190 +#: guix/ui.scm:2193 #, scheme-format msgid "guix: missing command name~%" msgstr "" -#: guix/ui.scm:2198 +#: guix/ui.scm:2201 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "" @@ -6566,22 +6717,22 @@ msgstr "" msgid "unsupported manifest format" msgstr "" -#: guix/profiles.scm:2242 +#: guix/profiles.scm:2247 #, scheme-format msgid "while creating directory `~a': ~a" msgstr "" -#: guix/profiles.scm:2247 +#: guix/profiles.scm:2252 #, scheme-format msgid "Please create the @file{~a} directory, with you as the owner." msgstr "" -#: guix/profiles.scm:2256 +#: guix/profiles.scm:2261 #, scheme-format msgid "directory `~a' is not owned by you" msgstr "" -#: guix/profiles.scm:2260 +#: guix/profiles.scm:2265 #, scheme-format msgid "Please change the owner of @file{~a} to user ~s." msgstr "" @@ -7191,11 +7342,16 @@ msgstr "" msgid "'--profile' cannot be used with package options~%" msgstr "" -#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:275 +#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:261 #, scheme-format msgid "no packages specified; creating an empty environment~%" msgstr "" +#: guix/scripts/environment.scm:979 +#, scheme-format +msgid "'--check' is unnecessary when using '--container'; doing nothing~%" +msgstr "" + #: guix/scripts/home/import.scm:179 msgid "" ";; This \"home-environment\" file can be passed to 'guix home reconfigure'\n" @@ -7205,89 +7361,89 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/home.scm:65 +#: guix/scripts/home.scm:66 msgid "" "Usage: guix home [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the home environment declared in FILE according to ACTION.\n" "Some ACTIONS support additional ARGS.\n" msgstr "" -#: guix/scripts/home.scm:71 +#: guix/scripts/home.scm:72 msgid " search search for existing service types\n" msgstr "" -#: guix/scripts/home.scm:73 +#: guix/scripts/home.scm:74 msgid " reconfigure switch to a new home environment configuration\n" msgstr "" -#: guix/scripts/home.scm:75 +#: guix/scripts/home.scm:76 msgid " roll-back switch to the previous home environment configuration\n" msgstr "" -#: guix/scripts/home.scm:77 +#: guix/scripts/home.scm:78 msgid " describe describe the current home environment\n" msgstr "" -#: guix/scripts/home.scm:79 +#: guix/scripts/home.scm:80 msgid " list-generations list the home environment generations\n" msgstr "" -#: guix/scripts/home.scm:81 +#: guix/scripts/home.scm:82 msgid " switch-generation switch to an existing home environment configuration\n" msgstr "" -#: guix/scripts/home.scm:83 +#: guix/scripts/home.scm:84 msgid " delete-generations delete old home environment generations\n" msgstr "" -#: guix/scripts/home.scm:85 +#: guix/scripts/home.scm:86 msgid " build build the home environment without installing anything\n" msgstr "" -#: guix/scripts/home.scm:87 +#: guix/scripts/home.scm:88 msgid " import generates a home environment definition from dotfiles\n" msgstr "" -#: guix/scripts/home.scm:91 +#: guix/scripts/home.scm:92 msgid "" "\n" " -e, --expression=EXPR consider the home-environment EXPR evaluates to\n" " instead of reading FILE, when applicable" msgstr "" -#: guix/scripts/home.scm:196 +#: guix/scripts/home.scm:210 #, scheme-format msgid "'~a' does not return a home environment ~%" msgstr "" -#: guix/scripts/home.scm:280 +#: guix/scripts/home.scm:293 #, scheme-format msgid "'~a' populated with all the Home configuration files~%" msgstr "" -#: guix/scripts/home.scm:282 +#: guix/scripts/home.scm:295 #, scheme-format msgid "" "Run @command{guix home reconfigure ~a/home-configuration.scm} to effectively\n" "deploy the home environment described by these files.\n" msgstr "" -#: guix/scripts/home.scm:289 +#: guix/scripts/home.scm:302 #, scheme-format msgid "no home environment generation, nothing to describe~%" msgstr "" -#: guix/scripts/home.scm:358 +#: guix/scripts/home.scm:371 #, scheme-format msgid "guix home: missing command name~%" msgstr "" -#: guix/scripts/home.scm:360 +#: guix/scripts/home.scm:373 #, scheme-format msgid "Try 'guix home --help' for more information.~%" msgstr "" -#: guix/scripts/home.scm:528 +#: guix/scripts/home.scm:541 #, scheme-format msgid "cannot switch to home environment generation '~a'~%" msgstr "" @@ -7324,7 +7480,7 @@ msgstr "" #: guix/scripts/import/cpan.scm:83 guix/scripts/import/crate.scm:97 #: guix/scripts/import/egg.scm:100 guix/scripts/import/gem.scm:98 -#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:100 +#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:101 #, scheme-format msgid "failed to download meta-data for package '~a'~%" msgstr "" @@ -7399,7 +7555,7 @@ msgid "" " --pin-versions use the exact versions of a module's dependencies" msgstr "" -#: guix/scripts/import/go.scm:117 +#: guix/scripts/import/go.scm:118 #, scheme-format msgid "failed to download meta-data for module '~a'.~%" msgstr "" @@ -7516,6 +7672,16 @@ msgid "" "Import and convert the Texlive package for PACKAGE-NAME.\n" msgstr "" +#: guix/scripts/import/texlive.scm:84 +#, fuzzy, scheme-format +#| msgid "" +#| "Failed to import package ~s.\n" +#| "reason: ~s.~%" +msgid "failed to import package '~a'~%" +msgstr "" +"Не удалось импортировать пакет ~s.\n" +"причина: ~s.~%" + #: guix/scripts/offload.scm:130 #, scheme-format msgid "The 'system' field is deprecated, please use 'systems' instead.~%" @@ -7954,54 +8120,54 @@ msgstr "" msgid "~a: unknown type of REPL~%" msgstr "" -#: guix/scripts/shell.scm:46 +#: guix/scripts/shell.scm:48 msgid "" "Usage: guix shell [OPTION] PACKAGES... [-- COMMAND...]\n" "Build an environment that includes PACKAGES and execute COMMAND or an\n" "interactive shell in that environment.\n" msgstr "" -#: guix/scripts/shell.scm:52 +#: guix/scripts/shell.scm:54 msgid "" "\n" " -D, --development include the development inputs of the next package" msgstr "" -#: guix/scripts/shell.scm:54 +#: guix/scripts/shell.scm:56 msgid "" "\n" " -f, --file=FILE add to the environment the package FILE evaluates to" msgstr "" -#: guix/scripts/shell.scm:56 +#: guix/scripts/shell.scm:58 msgid "" "\n" " -q inhibit loading of 'guix.scm' and 'manifest.scm'" msgstr "" -#: guix/scripts/shell.scm:58 +#: guix/scripts/shell.scm:60 msgid "" "\n" " --rebuild-cache rebuild cached environment, if any" msgstr "" -#: guix/scripts/shell.scm:199 +#: guix/scripts/shell.scm:201 #, fuzzy, scheme-format #| msgid "invalid argument: ~a~%" msgid "ignoring invalid file name: '~a'~%" msgstr "недопустимый аргумент: ~a~%" -#: guix/scripts/shell.scm:280 +#: guix/scripts/shell.scm:266 #, scheme-format msgid "loading environment from '~a'...~%" msgstr "" -#: guix/scripts/shell.scm:286 +#: guix/scripts/shell.scm:272 #, scheme-format msgid "not loading '~a' because not authorized to do so~%" msgstr "" -#: guix/scripts/shell.scm:288 +#: guix/scripts/shell.scm:274 #, scheme-format msgid "" "To allow automatic loading of\n" @@ -8013,60 +8179,77 @@ msgid "" "@end example\n" msgstr "" -#: guix/scripts/shell.scm:386 +#: guix/scripts/shell.scm:431 msgid "" "Consider passing the @option{--check} option once\n" "to make sure your shell does not clobber environment variables." msgstr "" -#: guix/scripts/style.scm:241 +#: guix/scripts/style.scm:499 #, scheme-format msgid "~a: complex expression, bailing out~%" msgstr "" -#: guix/scripts/style.scm:259 +#: guix/scripts/style.scm:517 #, scheme-format msgid "~a: input label '~a' does not match package name, bailing out~%" msgstr "" -#: guix/scripts/style.scm:264 +#: guix/scripts/style.scm:522 #, scheme-format msgid "~a: non-trivial input, bailing out~%" msgstr "" -#: guix/scripts/style.scm:288 +#: guix/scripts/style.scm:546 #, scheme-format msgid "~a: input expression is too short~%" msgstr "" -#: guix/scripts/style.scm:380 +#: guix/scripts/style.scm:638 #, scheme-format msgid "~a: unsupported input style, bailing out~%" msgstr "" -#: guix/scripts/style.scm:392 +#: guix/scripts/style.scm:650 #, scheme-format msgid "would be edited~%" msgstr "" -#: guix/scripts/style.scm:482 +#: guix/scripts/style.scm:721 +#, scheme-format +msgid "no definition location for package ~a~%" +msgstr "" + +#: guix/scripts/style.scm:767 +#, fuzzy, scheme-format +#| msgid "~A: unknown package~%" +msgid "~a: unknown styling~%" +msgstr "~A: неизвестный пакет~%" + +#: guix/scripts/style.scm:774 #, scheme-format msgid "~a: invalid input simplification policy~%" msgstr "" -#: guix/scripts/style.scm:496 +#: guix/scripts/style.scm:788 msgid "" "Usage: guix style [OPTION]... [PACKAGE]...\n" "Update package definitions to the latest style.\n" msgstr "" -#: guix/scripts/style.scm:498 +#: guix/scripts/style.scm:790 +msgid "" +"\n" +" -S, --styling=RULE apply RULE, a styling rule" +msgstr "" + +#: guix/scripts/style.scm:793 msgid "" "\n" " -n, --dry-run display files that would be edited but do nothing" msgstr "" -#: guix/scripts/style.scm:504 +#: guix/scripts/style.scm:799 msgid "" "\n" " --input-simplification=POLICY\n" @@ -8217,6 +8400,9 @@ msgstr "" msgid "produce debugging output" msgstr "" +#~ msgid "Please select a disk." +#~ msgstr "Пожалуйста, выберите носитель." + #~ msgid "Other services" #~ msgstr "Другие сервисы" diff --git a/po/guix/si.po b/po/guix/si.po index e69aef7887..bf53ab8c12 100644 --- a/po/guix/si.po +++ b/po/guix/si.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: GNU guix\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" "PO-Revision-Date: 2021-05-05 03:02+0000\n" "Last-Translator: Hela Basa \n" "Language-Team: Sinhala \n" @@ -50,37 +50,37 @@ msgstr "" msgid "Try adding @code{(use-service-modules ~a)}." msgstr "" -#: gnu/packages.scm:96 +#: gnu/packages.scm:97 #, scheme-format msgid "~a: patch not found" msgstr "" -#: gnu/packages.scm:480 gnu/packages.scm:521 +#: gnu/packages.scm:481 gnu/packages.scm:522 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "" -#: gnu/packages.scm:481 gnu/packages.scm:522 +#: gnu/packages.scm:482 gnu/packages.scm:523 #, scheme-format msgid "choosing ~a@~a from ~a~%" msgstr "" -#: gnu/packages.scm:486 guix/scripts/package.scm:216 +#: gnu/packages.scm:487 guix/scripts/package.scm:218 #, scheme-format msgid "package '~a' has been superseded by '~a'~%" msgstr "" -#: gnu/packages.scm:493 gnu/packages.scm:510 +#: gnu/packages.scm:494 gnu/packages.scm:511 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "" -#: gnu/packages.scm:494 gnu/packages.scm:511 +#: gnu/packages.scm:495 gnu/packages.scm:512 #, scheme-format msgid "~A: unknown package~%" msgstr "" -#: gnu/packages.scm:550 +#: gnu/packages.scm:551 #, scheme-format msgid "package `~a' lacks output `~a'~%" msgstr "" @@ -268,14 +268,14 @@ msgid "" "@code{SIGKILL}." msgstr "" -#: gnu/home/services.scm:127 +#: gnu/home/services.scm:128 msgid "" "Build the home environment top-level directory,\n" "which in turn refers to everything the home environment needs: its\n" "packages, configuration files, activation script, and so on." msgstr "" -#: gnu/home/services.scm:158 +#: gnu/home/services.scm:159 #, scheme-format msgid "" "This is the @dfn{home profile} and can be found in\n" @@ -284,21 +284,21 @@ msgid "" "@code{home-environment} record." msgstr "" -#: gnu/home/services.scm:180 +#: gnu/home/services.scm:181 #, scheme-format msgid "duplicate definition for `~a' environment variable ~%" msgstr "" -#: gnu/home/services.scm:242 +#: gnu/home/services.scm:243 msgid "Set the environment variables." msgstr "" -#: gnu/home/services.scm:253 +#: gnu/home/services.scm:254 #, scheme-format msgid "duplicate '~a' entry for files/" msgstr "" -#: gnu/home/services.scm:277 +#: gnu/home/services.scm:278 #, scheme-format msgid "" "Configuration files for programs that\n" @@ -307,7 +307,7 @@ msgstr "" #. TRANSLATORS: 'on-first-login' is the name of a service and #. shouldn't be translated -#: gnu/home/services.scm:308 +#: gnu/home/services.scm:309 msgid "" "XDG_RUNTIME_DIR doesn't exists, on-first-login script\n" "won't execute anything. You can check if xdg runtime directory exists,\n" @@ -315,13 +315,13 @@ msgid "" "script by running '$HOME/.guix-home/on-first-login'" msgstr "" -#: gnu/home/services.scm:328 +#: gnu/home/services.scm:329 msgid "" "Run gexps on first user login. Can be\n" "extended with one gexp." msgstr "" -#: gnu/home/services.scm:391 +#: gnu/home/services.scm:392 msgid "" "Run gexps to activate the current\n" "generation of home environment and update the state of the home\n" @@ -330,33 +330,33 @@ msgid "" "with one gexp, but many times, and all gexps must be idempotent." msgstr "" -#: gnu/home/services.scm:472 +#: gnu/home/services.scm:473 #, scheme-format msgid "" "Comparing ~a and\n" "~10t~a..." msgstr "" -#: gnu/home/services.scm:474 +#: gnu/home/services.scm:475 #, scheme-format msgid " done (~a)\n" msgstr "" #. TRANSLATORS: 'on-change' is the name of a service type, it #. probably shouldn't be translated. -#: gnu/home/services.scm:483 +#: gnu/home/services.scm:484 msgid "" "Evaluating on-change gexps.\n" "\n" msgstr "" -#: gnu/home/services.scm:485 +#: gnu/home/services.scm:486 msgid "" "On-change gexps evaluation finished.\n" "\n" msgstr "" -#: gnu/home/services.scm:499 +#: gnu/home/services.scm:500 msgid "" "G-expressions to run if the specified files have changed since the\n" "last generation. The extension should be a list of lists where the\n" @@ -364,7 +364,7 @@ msgid "" "changed, and the second element is the G-expression to be evaluated." msgstr "" -#: gnu/home/services.scm:519 +#: gnu/home/services.scm:520 msgid "" "Store provenance information about the home environment in the home\n" "environment itself: the channels used when building the home\n" @@ -617,12 +617,12 @@ msgstr "" msgid "Updater for ELPA packages" msgstr "" -#: guix/import/github.scm:170 +#: guix/import/github.scm:175 #, scheme-format msgid "~a is unreachable (~a)~%" msgstr "" -#: guix/import/github.scm:260 +#: guix/import/github.scm:274 msgid "Updater for GitHub packages" msgstr "" @@ -658,24 +658,27 @@ msgstr "" msgid "failed to determine latest release of GNU ~a" msgstr "" -#: guix/import/go.scm:569 +#: guix/import/go.scm:571 #, scheme-format msgid "unsupported vcs type '~a' for package '~a'" msgstr "" -#: guix/import/go.scm:647 +#: guix/import/go.scm:594 #, scheme-format -msgid "" -"Failed to import package ~s.\n" -"reason: ~s could not be fetched: HTTP error ~a (~s).\n" -"This package and its dependencies won't be imported.~%" +msgid "version ~a of ~a is not available~%" +msgstr "" + +#: guix/import/go.scm:597 +#, scheme-format +msgid "Pick one of the following available versions:~{ ~a~}." msgstr "" -#: guix/import/go.scm:656 +#: guix/import/go.scm:671 #, scheme-format msgid "" "Failed to import package ~s.\n" -"reason: ~s.~%" +"reason: ~s could not be fetched: HTTP error ~a (~s).\n" +"This package and its dependencies won't be imported.~%" msgstr "" #: guix/import/minetest.scm:178 @@ -771,77 +774,99 @@ msgstr "" msgid "Updater for OPAM packages" msgstr "" -#: guix/import/pypi.scm:230 +#: guix/import/pypi.scm:233 msgid "Could not extract requirement name in spec:" msgstr "" -#: guix/import/pypi.scm:290 +#: guix/import/pypi.scm:293 #, scheme-format msgid "parse-requires.txt reached an unexpected condition on line ~a~%" msgstr "" -#: guix/import/pypi.scm:356 +#: guix/import/pypi.scm:359 #, scheme-format msgid "Failed to extract file: ~a from wheel.~%" msgstr "" -#: guix/import/pypi.scm:385 +#: guix/import/pypi.scm:388 #, scheme-format msgid "Cannot guess requirements from source archive: no requires.txt file found.~%" msgstr "" -#: guix/import/pypi.scm:390 +#: guix/import/pypi.scm:393 #, scheme-format msgid "Unsupported archive format; cannot determine package dependencies from source archive: ~a~%" msgstr "" -#: guix/import/pypi.scm:489 +#: guix/import/pypi.scm:434 +#, scheme-format +msgid "project name ~a does not appear verbatim in the PyPI URI~%" +msgstr "" + +#: guix/import/pypi.scm:437 +#, scheme-format +msgid "" +"The PyPI URI is: @url{~a}. You should review the\n" +"pypi-uri declaration in the generated package. You may need to replace ~s with\n" +"a substring of the PyPI URI that identifies the package." +msgstr "" + +#: guix/import/pypi.scm:505 #, scheme-format msgid "no source release for pypi package ~a ~a~%" msgstr "" -#: guix/import/pypi.scm:554 +#: guix/import/pypi.scm:509 +#, scheme-format +msgid "" +"This indicates that the\n" +"package is available on PyPI, but only as a \"wheel\" containing binaries, not\n" +"source. To build it from source, refer to the upstream repository at\n" +"@uref{~a}." +msgstr "" + +#: guix/import/pypi.scm:579 msgid "Updater for PyPI packages" msgstr "" -#: gnu/installer.scm:214 +#: gnu/installer.scm:217 msgid "Locale" msgstr "" -#: gnu/installer.scm:230 gnu/installer/newt/timezone.scm:58 +#: gnu/installer.scm:233 gnu/installer/newt/timezone.scm:58 msgid "Timezone" msgstr "" -#: gnu/installer.scm:247 +#: gnu/installer.scm:250 msgid "Keyboard mapping selection" msgstr "" -#: gnu/installer.scm:256 gnu/installer/newt/hostname.scm:26 +#: gnu/installer.scm:259 gnu/installer/newt/hostname.scm:26 msgid "Hostname" msgstr "ධාරකනාමය" -#: gnu/installer.scm:265 +#: gnu/installer.scm:268 msgid "Network selection" msgstr "ජාල තේරීම" -#: gnu/installer.scm:272 +#: gnu/installer.scm:275 msgid "Substitute server discovery" msgstr "" -#: gnu/installer.scm:279 gnu/installer/newt/user.scm:68 -#: gnu/installer/newt/user.scm:205 +#: gnu/installer.scm:282 gnu/installer/newt/user.scm:67 +#: gnu/installer/newt/user.scm:204 msgid "User creation" msgstr "" -#: gnu/installer.scm:287 +#: gnu/installer.scm:290 msgid "Services" msgstr "" -#: gnu/installer.scm:298 +#: gnu/installer.scm:301 msgid "Partitioning" msgstr "" -#: gnu/installer.scm:305 gnu/installer/newt/final.scm:53 +#: gnu/installer.scm:308 gnu/installer/newt/final.scm:53 msgid "Configuration file" msgstr "" @@ -853,19 +878,78 @@ msgstr "" msgid "Unable to find expected regexp." msgstr "" -#: gnu/installer/newt.scm:52 +#: gnu/installer/newt.scm:58 msgid "Press for installation parameters." msgstr "" -#: gnu/installer/newt.scm:65 -#, scheme-format -msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +#: gnu/installer/newt.scm:68 +msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. You may choose to exit or create a dump archive." msgstr "" -#: gnu/installer/newt.scm:68 +#: gnu/installer/newt.scm:71 msgid "Unexpected problem" msgstr "" +#: gnu/installer/newt.scm:75 +msgid "Dump" +msgstr "" + +#: gnu/installer/newt.scm:76 gnu/installer/newt/ethernet.scm:79 +#: gnu/installer/newt/keymap.scm:56 gnu/installer/newt/locale.scm:43 +#: gnu/installer/newt/network.scm:65 gnu/installer/newt/network.scm:82 +#: gnu/installer/newt/page.scm:315 gnu/installer/newt/page.scm:679 +#: gnu/installer/newt/page.scm:763 gnu/installer/newt/page.scm:828 +#: gnu/installer/newt/partition.scm:54 gnu/installer/newt/partition.scm:90 +#: gnu/installer/newt/partition.scm:125 gnu/installer/newt/partition.scm:140 +#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 +#: gnu/installer/newt/partition.scm:706 gnu/installer/newt/partition.scm:764 +#: gnu/installer/newt/partition.scm:775 gnu/installer/newt/services.scm:124 +#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/wifi.scm:206 +msgid "Exit" +msgstr "" + +#: gnu/installer/newt.scm:82 +#, scheme-format +msgid "The dump archive was created as ~a. Would you like to send this archive to the Guix servers?" +msgstr "" + +#: gnu/installer/newt.scm:84 +msgid "Dump archive created" +msgstr "" + +#: gnu/installer/newt.scm:88 +#, scheme-format +msgid "The dump was uploaded as ~a. Please report it by email to ~a." +msgstr "" + +#: gnu/installer/newt.scm:90 +msgid "The dump could not be uploaded." +msgstr "" + +#: gnu/installer/newt.scm:93 +msgid "Dump upload result" +msgstr "" + +#: gnu/installer/newt.scm:132 +#, scheme-format +msgid "External command ~s exited with code ~a" +msgstr "" + +#: gnu/installer/newt.scm:135 +#, scheme-format +msgid "External command ~s terminated by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:138 +#, scheme-format +msgid "External command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:140 +msgid "External command error" +msgstr "" + #: gnu/installer/newt/ethernet.scm:66 msgid "No ethernet service available, please try again." msgstr "" @@ -874,59 +958,45 @@ msgstr "" msgid "No service" msgstr "" -#: gnu/installer/newt/ethernet.scm:76 +#: gnu/installer/newt/ethernet.scm:74 msgid "Please select an ethernet network." msgstr "" -#: gnu/installer/newt/ethernet.scm:77 +#: gnu/installer/newt/ethernet.scm:75 msgid "Ethernet connection" msgstr "" -#: gnu/installer/newt/ethernet.scm:81 gnu/installer/newt/keymap.scm:56 -#: gnu/installer/newt/locale.scm:43 gnu/installer/newt/network.scm:63 -#: gnu/installer/newt/network.scm:84 gnu/installer/newt/page.scm:309 -#: gnu/installer/newt/page.scm:673 gnu/installer/newt/page.scm:758 -#: gnu/installer/newt/partition.scm:56 gnu/installer/newt/partition.scm:91 -#: gnu/installer/newt/partition.scm:126 gnu/installer/newt/partition.scm:141 -#: gnu/installer/newt/partition.scm:638 gnu/installer/newt/partition.scm:661 -#: gnu/installer/newt/partition.scm:707 gnu/installer/newt/partition.scm:765 -#: gnu/installer/newt/partition.scm:776 gnu/installer/newt/services.scm:130 -#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:204 -#: gnu/installer/newt/wifi.scm:206 -msgid "Exit" -msgstr "" - #: gnu/installer/newt/final.scm:46 #, scheme-format msgid "We're now ready to proceed with the installation! A system configuration file has been generated, it is displayed below. This file will be available as '~a' on the installed system. The new system will be created from this file once you've pressed OK. This will take a few minutes." msgstr "" -#: gnu/installer/newt/final.scm:70 +#: gnu/installer/newt/final.scm:68 msgid "Installation complete" msgstr "" -#: gnu/installer/newt/final.scm:71 gnu/installer/newt/parameters.scm:45 +#: gnu/installer/newt/final.scm:69 gnu/installer/newt/parameters.scm:45 #: gnu/installer/newt/welcome.scm:145 msgid "Reboot" msgstr "" -#: gnu/installer/newt/final.scm:72 +#: gnu/installer/newt/final.scm:70 msgid "Congratulations! Installation is now complete. You may remove the device containing the installation image and press the button to reboot." msgstr "" -#: gnu/installer/newt/final.scm:86 +#: gnu/installer/newt/final.scm:84 msgid "Installation failed" msgstr "" -#: gnu/installer/newt/final.scm:87 +#: gnu/installer/newt/final.scm:85 msgid "Resume" msgstr "" -#: gnu/installer/newt/final.scm:88 +#: gnu/installer/newt/final.scm:86 msgid "Restart the installer" msgstr "" -#: gnu/installer/newt/final.scm:89 +#: gnu/installer/newt/final.scm:87 msgid "The final system installation step failed. You can resume from a specific step, or restart the installer." msgstr "" @@ -954,9 +1024,9 @@ msgstr "" msgid "Installation parameters" msgstr "" -#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:74 -#: gnu/installer/newt/locale.scm:63 gnu/installer/newt/locale.scm:78 -#: gnu/installer/newt/locale.scm:94 gnu/installer/newt/partition.scm:595 +#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:72 +#: gnu/installer/newt/locale.scm:61 gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:88 gnu/installer/newt/partition.scm:594 #: gnu/installer/newt/timezone.scm:64 msgid "Back" msgstr "" @@ -977,16 +1047,16 @@ msgstr "" msgid "Please choose your keyboard layout. It will be used during the install process, and for the installed system. Non-Latin layouts can be toggled with Alt+Shift. You can switch to a different layout at any time from the parameters menu." msgstr "" -#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:62 -#: gnu/installer/newt/page.scm:308 +#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/page.scm:314 msgid "Continue" msgstr "" -#: gnu/installer/newt/keymap.scm:67 +#: gnu/installer/newt/keymap.scm:65 msgid "Variant" msgstr "" -#: gnu/installer/newt/keymap.scm:70 +#: gnu/installer/newt/keymap.scm:68 msgid "Please choose a variant for your keyboard layout." msgstr "" @@ -998,35 +1068,35 @@ msgstr "" msgid "Choose the language to use for the installation process and for the installed system." msgstr "" -#: gnu/installer/newt/locale.scm:57 +#: gnu/installer/newt/locale.scm:55 msgid "Locale location" msgstr "" -#: gnu/installer/newt/locale.scm:60 +#: gnu/installer/newt/locale.scm:58 msgid "Choose a territory for this language." msgstr "" -#: gnu/installer/newt/locale.scm:71 +#: gnu/installer/newt/locale.scm:67 msgid "Locale codeset" msgstr "" -#: gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:70 msgid "Choose the locale encoding." msgstr "" -#: gnu/installer/newt/locale.scm:86 +#: gnu/installer/newt/locale.scm:80 msgid "Locale modifier" msgstr "" -#: gnu/installer/newt/locale.scm:89 +#: gnu/installer/newt/locale.scm:83 msgid "Choose your locale's modifier. The most frequent modifier is euro. It indicates that you want to use Euro as the currency symbol." msgstr "" -#: gnu/installer/newt/locale.scm:190 +#: gnu/installer/newt/locale.scm:181 msgid "No location" msgstr "" -#: gnu/installer/newt/locale.scm:217 +#: gnu/installer/newt/locale.scm:208 msgid "No modifier" msgstr "" @@ -1042,330 +1112,334 @@ msgstr "" msgid "Abort" msgstr "" -#: gnu/installer/newt/network.scm:61 gnu/installer/newt/network.scm:80 +#: gnu/installer/newt/network.scm:63 gnu/installer/newt/network.scm:78 msgid "Internet access" msgstr "" -#: gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/network.scm:66 msgid "The install process requires Internet access but no network devices were found. Do you want to continue anyway?" msgstr "" -#: gnu/installer/newt/network.scm:78 +#: gnu/installer/newt/network.scm:76 msgid "The install process requires Internet access. Please select a network device." msgstr "" -#: gnu/installer/newt/network.scm:103 +#: gnu/installer/newt/network.scm:99 msgid "Powering technology" msgstr "" -#: gnu/installer/newt/network.scm:104 +#: gnu/installer/newt/network.scm:100 #, scheme-format msgid "Waiting for technology ~a to be powered." msgstr "" -#: gnu/installer/newt/network.scm:128 +#: gnu/installer/newt/network.scm:139 msgid "Checking connectivity" msgstr "" -#: gnu/installer/newt/network.scm:129 +#: gnu/installer/newt/network.scm:140 msgid "Waiting for Internet access establishment..." msgstr "" -#: gnu/installer/newt/network.scm:139 -msgid "The selected network does not provide access to the Internet, please try again." +#: gnu/installer/newt/network.scm:150 +msgid "The selected network does not provide access to the Internet and the Guix substitute server, please try again." msgstr "" -#: gnu/installer/newt/network.scm:141 gnu/installer/newt/wifi.scm:108 +#: gnu/installer/newt/network.scm:152 gnu/installer/newt/wifi.scm:108 msgid "Connection error" msgstr "" -#: gnu/installer/newt/page.scm:198 +#: gnu/installer/newt/page.scm:204 #, scheme-format msgid "Connecting to ~a, please wait." msgstr "" -#: gnu/installer/newt/page.scm:199 +#: gnu/installer/newt/page.scm:205 msgid "Connection in progress" msgstr "" -#: gnu/installer/newt/page.scm:218 gnu/installer/newt/user.scm:60 +#: gnu/installer/newt/page.scm:224 gnu/installer/newt/user.scm:59 msgid "Show" msgstr "" -#: gnu/installer/newt/page.scm:225 gnu/installer/newt/page.scm:672 -#: gnu/installer/newt/page.scm:757 gnu/installer/newt/partition.scm:458 -#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 -#: gnu/installer/newt/partition.scm:699 gnu/installer/newt/user.scm:66 -#: gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/page.scm:231 gnu/installer/newt/page.scm:678 +#: gnu/installer/newt/page.scm:762 gnu/installer/newt/partition.scm:457 +#: gnu/installer/newt/partition.scm:636 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:698 gnu/installer/newt/user.scm:65 +#: gnu/installer/newt/user.scm:202 msgid "OK" msgstr "" -#: gnu/installer/newt/page.scm:251 +#: gnu/installer/newt/page.scm:257 msgid "Please enter a non empty input." msgstr "" -#: gnu/installer/newt/page.scm:252 gnu/installer/newt/user.scm:123 +#: gnu/installer/newt/page.scm:258 gnu/installer/newt/user.scm:122 msgid "Empty input" msgstr "" -#: gnu/installer/newt/page.scm:760 +#: gnu/installer/newt/page.scm:765 msgid "Edit" msgstr "" -#: gnu/installer/newt/partition.scm:47 +#: gnu/installer/newt/page.scm:825 +msgid "Ok" +msgstr "" + +#: gnu/installer/newt/partition.scm:45 msgid "Everything is one partition" msgstr "" -#: gnu/installer/newt/partition.scm:48 +#: gnu/installer/newt/partition.scm:46 msgid "Separate /home partition" msgstr "" -#: gnu/installer/newt/partition.scm:50 +#: gnu/installer/newt/partition.scm:48 msgid "Please select a partitioning scheme." msgstr "" -#: gnu/installer/newt/partition.scm:51 +#: gnu/installer/newt/partition.scm:49 msgid "Partition scheme" msgstr "" #. TRANSLATORS: The ~{ and ~} format specifiers are used to iterate the list #. of device names of the user partitions that will be formatted. -#: gnu/installer/newt/partition.scm:65 +#: gnu/installer/newt/partition.scm:63 #, scheme-format msgid "We are about to write the configured partition table to the disk and format the partitions listed below. Their data will be lost. Do you wish to continue?~%~%~{ - ~a~%~}" msgstr "" -#: gnu/installer/newt/partition.scm:71 +#: gnu/installer/newt/partition.scm:69 msgid "Format disk?" msgstr "" -#: gnu/installer/newt/partition.scm:74 +#: gnu/installer/newt/partition.scm:72 msgid "Partition formatting is in progress, please wait." msgstr "" -#: gnu/installer/newt/partition.scm:75 +#: gnu/installer/newt/partition.scm:73 msgid "Preparing partitions" msgstr "" -#: gnu/installer/newt/partition.scm:86 -msgid "Please select a disk." +#: gnu/installer/newt/partition.scm:84 +msgid "Please select a disk. The installation device as well as the small devices are filtered." msgstr "" -#: gnu/installer/newt/partition.scm:87 +#: gnu/installer/newt/partition.scm:86 msgid "Disk" msgstr "" -#: gnu/installer/newt/partition.scm:102 +#: gnu/installer/newt/partition.scm:101 msgid "Select a new partition table type. Be careful, all data on the disk will be lost." msgstr "" -#: gnu/installer/newt/partition.scm:104 +#: gnu/installer/newt/partition.scm:103 msgid "Partition table" msgstr "" -#: gnu/installer/newt/partition.scm:121 +#: gnu/installer/newt/partition.scm:120 msgid "Please select a partition type." msgstr "" -#: gnu/installer/newt/partition.scm:122 +#: gnu/installer/newt/partition.scm:121 msgid "Partition type" msgstr "" -#: gnu/installer/newt/partition.scm:132 +#: gnu/installer/newt/partition.scm:131 msgid "Please select the file-system type for this partition." msgstr "" -#: gnu/installer/newt/partition.scm:133 +#: gnu/installer/newt/partition.scm:132 msgid "File-system type" msgstr "" -#: gnu/installer/newt/partition.scm:150 +#: gnu/installer/newt/partition.scm:149 msgid "Primary partitions count exceeded." msgstr "" -#: gnu/installer/newt/partition.scm:151 gnu/installer/newt/partition.scm:156 -#: gnu/installer/newt/partition.scm:161 +#: gnu/installer/newt/partition.scm:150 gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:160 msgid "Creation error" msgstr "" -#: gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:154 msgid "Extended partition creation error." msgstr "" -#: gnu/installer/newt/partition.scm:160 +#: gnu/installer/newt/partition.scm:159 msgid "Logical partition creation error." msgstr "" -#: gnu/installer/newt/partition.scm:174 +#: gnu/installer/newt/partition.scm:173 #, scheme-format msgid "Please enter the password for the encryption of partition ~a (label: ~a)." msgstr "" -#: gnu/installer/newt/partition.scm:176 gnu/installer/newt/wifi.scm:92 +#: gnu/installer/newt/partition.scm:175 gnu/installer/newt/wifi.scm:92 msgid "Password required" msgstr "" -#: gnu/installer/newt/partition.scm:181 +#: gnu/installer/newt/partition.scm:180 #, scheme-format msgid "Please confirm the password for the encryption of partition ~a (label: ~a)." msgstr "" -#: gnu/installer/newt/partition.scm:183 gnu/installer/newt/user.scm:160 +#: gnu/installer/newt/partition.scm:182 gnu/installer/newt/user.scm:159 msgid "Password confirmation required" msgstr "" -#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 +#: gnu/installer/newt/partition.scm:194 gnu/installer/newt/user.scm:167 msgid "Password mismatch, please try again." msgstr "" -#: gnu/installer/newt/partition.scm:196 gnu/installer/newt/user.scm:169 +#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 msgid "Password error" msgstr "" -#: gnu/installer/newt/partition.scm:282 +#: gnu/installer/newt/partition.scm:281 msgid "Please enter the partition gpt name." msgstr "" -#: gnu/installer/newt/partition.scm:283 +#: gnu/installer/newt/partition.scm:282 msgid "Partition name" msgstr "" -#: gnu/installer/newt/partition.scm:313 +#: gnu/installer/newt/partition.scm:312 msgid "Please enter the encrypted label" msgstr "" -#: gnu/installer/newt/partition.scm:314 +#: gnu/installer/newt/partition.scm:313 msgid "Encryption label" msgstr "" -#: gnu/installer/newt/partition.scm:331 +#: gnu/installer/newt/partition.scm:330 #, scheme-format msgid "Please enter the size of the partition. The maximum size is ~a." msgstr "" -#: gnu/installer/newt/partition.scm:333 +#: gnu/installer/newt/partition.scm:332 msgid "Partition size" msgstr "" -#: gnu/installer/newt/partition.scm:351 +#: gnu/installer/newt/partition.scm:350 msgid "The percentage can not be superior to 100." msgstr "" -#: gnu/installer/newt/partition.scm:352 gnu/installer/newt/partition.scm:357 -#: gnu/installer/newt/partition.scm:362 +#: gnu/installer/newt/partition.scm:351 gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:361 msgid "Size error" msgstr "" -#: gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:355 msgid "The requested size is incorrectly formatted, or too large." msgstr "" -#: gnu/installer/newt/partition.scm:361 +#: gnu/installer/newt/partition.scm:360 msgid "The request size is superior to the maximum size." msgstr "" -#: gnu/installer/newt/partition.scm:381 +#: gnu/installer/newt/partition.scm:380 msgid "Please enter the desired mounting point for this partition. Leave this field empty if you don't want to set a mounting point." msgstr "" -#: gnu/installer/newt/partition.scm:383 +#: gnu/installer/newt/partition.scm:382 msgid "Mounting point" msgstr "" -#: gnu/installer/newt/partition.scm:447 +#: gnu/installer/newt/partition.scm:446 #, scheme-format msgid "Creating ~a partition starting at ~a of ~a." msgstr "" -#: gnu/installer/newt/partition.scm:449 +#: gnu/installer/newt/partition.scm:448 #, scheme-format msgid "You are currently editing partition ~a." msgstr "" -#: gnu/installer/newt/partition.scm:452 +#: gnu/installer/newt/partition.scm:451 msgid "Partition creation" msgstr "" -#: gnu/installer/newt/partition.scm:453 +#: gnu/installer/newt/partition.scm:452 msgid "Partition edit" msgstr "" -#: gnu/installer/newt/partition.scm:634 +#: gnu/installer/newt/partition.scm:633 #, scheme-format msgid "Are you sure you want to delete everything on disk ~a?" msgstr "" -#: gnu/installer/newt/partition.scm:636 +#: gnu/installer/newt/partition.scm:635 msgid "Delete disk" msgstr "" -#: gnu/installer/newt/partition.scm:651 +#: gnu/installer/newt/partition.scm:650 msgid "You cannot delete a free space area." msgstr "" -#: gnu/installer/newt/partition.scm:652 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:651 gnu/installer/newt/partition.scm:658 msgid "Delete partition" msgstr "" -#: gnu/installer/newt/partition.scm:657 +#: gnu/installer/newt/partition.scm:656 #, scheme-format msgid "Are you sure you want to delete partition ~a?" msgstr "" -#: gnu/installer/newt/partition.scm:674 +#: gnu/installer/newt/partition.scm:673 msgid "" "You can change a disk's partition table by selecting it and pressing ENTER. You can also edit a partition by selecting it and pressing ENTER, or remove it by pressing DELETE. To create a new partition, select a free space area and press ENTER.\n" "\n" "At least one partition must have its mounting point set to '/'." msgstr "" -#: gnu/installer/newt/partition.scm:680 +#: gnu/installer/newt/partition.scm:679 #, scheme-format msgid "This is the proposed partitioning. It is still possible to edit it or to go back to install menu by pressing the Exit button.~%~%" msgstr "" -#: gnu/installer/newt/partition.scm:690 +#: gnu/installer/newt/partition.scm:689 msgid "Guided partitioning" msgstr "" -#: gnu/installer/newt/partition.scm:691 +#: gnu/installer/newt/partition.scm:690 msgid "Manual partitioning" msgstr "" -#: gnu/installer/newt/partition.scm:716 +#: gnu/installer/newt/partition.scm:715 msgid "No root mount point found." msgstr "" -#: gnu/installer/newt/partition.scm:717 +#: gnu/installer/newt/partition.scm:716 msgid "Missing mount point" msgstr "" -#: gnu/installer/newt/partition.scm:721 +#: gnu/installer/newt/partition.scm:720 #, scheme-format msgid "Cannot read the ~a partition UUID. You may need to format it." msgstr "" -#: gnu/installer/newt/partition.scm:724 +#: gnu/installer/newt/partition.scm:723 msgid "Wrong partition format" msgstr "" -#: gnu/installer/newt/partition.scm:755 +#: gnu/installer/newt/partition.scm:754 msgid "Guided - using the entire disk" msgstr "" -#: gnu/installer/newt/partition.scm:756 +#: gnu/installer/newt/partition.scm:755 msgid "Guided - using the entire disk with encryption" msgstr "" -#: gnu/installer/newt/partition.scm:757 +#: gnu/installer/newt/partition.scm:756 msgid "Manual" msgstr "" -#: gnu/installer/newt/partition.scm:759 +#: gnu/installer/newt/partition.scm:758 msgid "Please select a partitioning method." msgstr "" -#: gnu/installer/newt/partition.scm:760 +#: gnu/installer/newt/partition.scm:759 msgid "Partitioning method" msgstr "" @@ -1377,35 +1451,35 @@ msgstr "" msgid "Desktop environment" msgstr "" -#: gnu/installer/newt/services.scm:59 +#: gnu/installer/newt/services.scm:57 msgid "You can now select networking services to run on your system." msgstr "" -#: gnu/installer/newt/services.scm:61 +#: gnu/installer/newt/services.scm:59 msgid "Network service" msgstr "" -#: gnu/installer/newt/services.scm:79 +#: gnu/installer/newt/services.scm:75 msgid "You can now select the CUPS printing service to run on your system." msgstr "" -#: gnu/installer/newt/services.scm:81 +#: gnu/installer/newt/services.scm:77 msgid "Printing and document services" msgstr "" -#: gnu/installer/newt/services.scm:100 +#: gnu/installer/newt/services.scm:94 msgid "Console services" msgstr "" -#: gnu/installer/newt/services.scm:101 +#: gnu/installer/newt/services.scm:95 msgid "Select miscellaneous services to run on your non-graphical system." msgstr "" -#: gnu/installer/newt/services.scm:115 +#: gnu/installer/newt/services.scm:109 msgid "Network management" msgstr "" -#: gnu/installer/newt/services.scm:118 +#: gnu/installer/newt/services.scm:112 msgid "" "Choose the method to manage network connections.\n" "\n" @@ -1435,57 +1509,57 @@ msgstr "" msgid "Please select a timezone." msgstr "" -#: gnu/installer/newt/user.scm:45 +#: gnu/installer/newt/user.scm:44 msgid "Name" msgstr "" -#: gnu/installer/newt/user.scm:47 +#: gnu/installer/newt/user.scm:46 msgid "Real name" msgstr "" -#: gnu/installer/newt/user.scm:49 +#: gnu/installer/newt/user.scm:48 msgid "Home directory" msgstr "" -#: gnu/installer/newt/user.scm:51 +#: gnu/installer/newt/user.scm:50 msgid "Password" msgstr "" -#: gnu/installer/newt/user.scm:122 +#: gnu/installer/newt/user.scm:121 msgid "Empty inputs are not allowed." msgstr "" -#: gnu/installer/newt/user.scm:159 +#: gnu/installer/newt/user.scm:158 msgid "Please confirm the password." msgstr "" #. TRANSLATORS: Leave "root" untranslated: it refers to the name of the #. system administrator account. -#: gnu/installer/newt/user.scm:176 +#: gnu/installer/newt/user.scm:175 msgid "Please choose a password for the system administrator (\"root\")." msgstr "" -#: gnu/installer/newt/user.scm:178 +#: gnu/installer/newt/user.scm:177 msgid "System administrator password" msgstr "" -#: gnu/installer/newt/user.scm:191 +#: gnu/installer/newt/user.scm:190 msgid "Please add at least one user to system using the 'Add' button." msgstr "" -#: gnu/installer/newt/user.scm:194 +#: gnu/installer/newt/user.scm:193 msgid "Add" msgstr "" -#: gnu/installer/newt/user.scm:195 +#: gnu/installer/newt/user.scm:194 msgid "Delete" msgstr "" -#: gnu/installer/newt/user.scm:255 +#: gnu/installer/newt/user.scm:254 msgid "Please create at least one user." msgstr "" -#: gnu/installer/newt/user.scm:256 +#: gnu/installer/newt/user.scm:255 msgid "No user" msgstr "" @@ -1556,60 +1630,60 @@ msgstr "" msgid "Wifi" msgstr "" -#: gnu/installer/parted.scm:433 gnu/installer/parted.scm:470 +#: gnu/installer/parted.scm:455 gnu/installer/parted.scm:492 msgid "Free space" msgstr "" -#: gnu/installer/parted.scm:559 +#: gnu/installer/parted.scm:581 #, scheme-format msgid "Name: ~a" msgstr "" -#: gnu/installer/parted.scm:560 gnu/installer/parted.scm:606 +#: gnu/installer/parted.scm:582 gnu/installer/parted.scm:628 msgid "None" msgstr "" -#: gnu/installer/parted.scm:565 +#: gnu/installer/parted.scm:587 #, scheme-format msgid "Type: ~a" msgstr "" -#: gnu/installer/parted.scm:569 +#: gnu/installer/parted.scm:591 #, scheme-format msgid "File system type: ~a" msgstr "" -#: gnu/installer/parted.scm:575 +#: gnu/installer/parted.scm:597 #, scheme-format msgid "Bootable flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:579 +#: gnu/installer/parted.scm:601 #, scheme-format msgid "ESP flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:585 +#: gnu/installer/parted.scm:607 #, scheme-format msgid "Size: ~a" msgstr "" -#: gnu/installer/parted.scm:591 +#: gnu/installer/parted.scm:613 #, scheme-format msgid "Encryption: ~:[No~a~;Yes (label '~a')~]" msgstr "" -#: gnu/installer/parted.scm:597 +#: gnu/installer/parted.scm:619 #, scheme-format msgid "Format the partition? ~:[No~;Yes~]" msgstr "" -#: gnu/installer/parted.scm:603 +#: gnu/installer/parted.scm:625 #, scheme-format msgid "Mount point: ~a" msgstr "" -#: gnu/installer/parted.scm:1466 +#: gnu/installer/parted.scm:1477 #, scheme-format msgid "Device ~a is still in use." msgstr "" @@ -1653,7 +1727,7 @@ msgstr "" #. TRANSLATORS: This is a comment within a Scheme file. Each line must #. start with ";; " (two semicolons and a space). Please keep line #. length below 60 characters. -#: gnu/installer/steps.scm:252 +#: gnu/installer/steps.scm:242 msgid "" ";; This is an operating system configuration generated\n" ";; by the graphical installer.\n" @@ -1664,98 +1738,117 @@ msgstr "" msgid "Unable to locate path: ~a." msgstr "" -#: gnu/installer/utils.scm:83 +#: gnu/installer/utils.scm:131 #, scheme-format msgid "Press Enter to continue.~%" msgstr "" -#: gnu/installer/utils.scm:108 +#: gnu/installer/utils.scm:150 +#, scheme-format +msgid "Command ~s exited with value ~a" +msgstr "" + +#: gnu/installer/utils.scm:156 +#, scheme-format +msgid "Command ~s killed by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:162 #, scheme-format -msgid "Command failed with exit code ~a.~%" +msgid "Command ~s stopped by signal ~a" msgstr "" -#: gnu/machine/ssh.scm:117 +#: gnu/installer/utils.scm:167 +#, scheme-format +msgid "Command ~s succeeded" +msgstr "" + +#: gnu/installer/utils.scm:179 +msgid "run-command-in-installer not set" +msgstr "" + +#: gnu/machine/ssh.scm:120 #, scheme-format msgid " without a 'host-key' is deprecated~%" msgstr "" -#: gnu/machine/ssh.scm:192 +#: gnu/machine/ssh.scm:208 #, scheme-format msgid "device '~a' not found: ~a" msgstr "" -#: gnu/machine/ssh.scm:207 +#: gnu/machine/ssh.scm:223 #, scheme-format msgid "no file system with label '~a'" msgstr "" -#: gnu/machine/ssh.scm:226 +#: gnu/machine/ssh.scm:242 #, scheme-format msgid "no file system with UUID '~a'" msgstr "" -#: gnu/machine/ssh.scm:276 +#: gnu/machine/ssh.scm:295 #, scheme-format msgid "missing modules for ~a:~{ ~a~}~%" msgstr "" -#: gnu/machine/ssh.scm:311 +#: gnu/machine/ssh.scm:333 #, scheme-format msgid "incorrect target system ('~a' was given, while the system reports that it is '~a')~%" msgstr "" -#: gnu/machine/ssh.scm:437 +#: gnu/machine/ssh.scm:459 #, scheme-format msgid "no signing key '~a'. have you run 'guix archive --generate-key?'" msgstr "" -#: gnu/machine/ssh.scm:469 +#: gnu/machine/ssh.scm:491 #, scheme-format msgid "failed to switch systems while deploying '~a':~%~{~s ~}" msgstr "" -#: gnu/machine/ssh.scm:477 +#: gnu/machine/ssh.scm:499 #, scheme-format msgid "an error occurred while upgrading services on '~a':~%~{~s ~}~%" msgstr "" -#: gnu/machine/ssh.scm:485 +#: gnu/machine/ssh.scm:507 #, scheme-format msgid "failed to install bootloader on '~a':~%~{~s ~}~%" msgstr "" -#: gnu/machine/ssh.scm:518 +#: gnu/machine/ssh.scm:540 msgid "could not roll-back machine" msgstr "" -#: gnu/machine/ssh.scm:559 +#: gnu/machine/ssh.scm:581 msgid "" "Provisioning for machines that are accessible over SSH\n" "and have a known host-name. This entails little more than maintaining an SSH\n" "connection to the host." msgstr "" -#: gnu/machine/ssh.scm:569 +#: gnu/machine/ssh.scm:591 #, scheme-format msgid "" "unsupported machine configuration '~a'\n" "for environment of type '~a'" msgstr "" -#: gnu/packages/bootstrap.scm:178 +#: gnu/packages/bootstrap.scm:188 #, scheme-format msgid "could not find bootstrap binary '~a' for system '~a'" msgstr "" -#: gnu/packages/bootstrap.scm:492 +#: gnu/packages/bootstrap.scm:578 msgid "Raw build system with direct store access" msgstr "" -#: gnu/packages/bootstrap.scm:500 +#: gnu/packages/bootstrap.scm:586 msgid "Pre-built Guile for bootstrapping purposes." msgstr "" -#: guix/build/utils.scm:822 +#: guix/build/utils.scm:823 #, scheme-format msgid "'~a~{ ~a~}' exited with status ~a; output follows:~%~%~{ ~a~%~}" msgstr "" @@ -1795,7 +1888,7 @@ msgid "~A: unrecognized option~%" msgstr "" #: guix/scripts.scm:169 guix/scripts/import.scm:140 -#: guix/scripts/system.scm:1370 +#: guix/scripts/system.scm:1379 #, scheme-format msgid "Did you mean @code{~a}?~%" msgstr "" @@ -1842,7 +1935,7 @@ msgstr "" #: guix/scripts/build.scm:154 guix/scripts/search.scm:42 #: guix/scripts/show.scm:41 guix/scripts/lint.scm:112 guix/scripts/edit.scm:48 #: guix/scripts/size.scm:246 guix/scripts/graph.scm:553 -#: guix/scripts/repl.scm:80 guix/scripts/style.scm:500 +#: guix/scripts/repl.scm:80 guix/scripts/style.scm:795 msgid "" "\n" " -L, --load-path=DIR prepend DIR to the package module search path" @@ -1995,7 +2088,7 @@ msgid "" " -s, --system=SYSTEM attempt to build for SYSTEM--e.g., \"i686-linux\"" msgstr "" -#: guix/scripts/build.scm:357 guix/scripts/system.scm:1023 +#: guix/scripts/build.scm:357 guix/scripts/system.scm:1026 #: guix/scripts/pack.scm:1329 guix/scripts/archive.scm:97 msgid "" "\n" @@ -2028,13 +2121,13 @@ msgid "" " as a garbage collector root" msgstr "" -#: guix/scripts/build.scm:368 guix/scripts/package.scm:486 +#: guix/scripts/build.scm:368 guix/scripts/package.scm:488 #: guix/scripts/install.scm:37 guix/scripts/remove.scm:36 #: guix/scripts/upgrade.scm:39 guix/scripts/pull.scm:117 -#: guix/scripts/system.scm:1025 guix/scripts/copy.scm:122 -#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:60 +#: guix/scripts/system.scm:1028 guix/scripts/copy.scm:122 +#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:66 #: guix/scripts/archive.scm:99 guix/scripts/environment.scm:123 -#: guix/scripts/home.scm:94 +#: guix/scripts/home.scm:98 msgid "" "\n" " -v, --verbosity=LEVEL use the given verbosity LEVEL" @@ -2053,59 +2146,59 @@ msgid "" msgstr "" #: guix/scripts/build.scm:379 guix/scripts/download.scm:104 -#: guix/scripts/package.scm:504 guix/scripts/install.scm:44 +#: guix/scripts/package.scm:506 guix/scripts/install.scm:44 #: guix/scripts/remove.scm:41 guix/scripts/upgrade.scm:48 #: guix/scripts/search.scm:37 guix/scripts/show.scm:36 guix/scripts/gc.scm:88 #: guix/scripts/git.scm:34 guix/scripts/git/authenticate.scm:110 #: guix/scripts/hash.scm:98 guix/scripts/import.scm:98 #: guix/scripts/import/minetest.scm:46 guix/scripts/import/cran.scm:49 #: guix/scripts/pull.scm:125 guix/scripts/substitute.scm:250 -#: guix/scripts/system.scm:1032 guix/scripts/lint.scm:115 +#: guix/scripts/system.scm:1035 guix/scripts/lint.scm:115 #: guix/scripts/publish.scm:119 guix/scripts/edit.scm:51 #: guix/scripts/size.scm:249 guix/scripts/graph.scm:558 #: guix/scripts/challenge.scm:430 guix/scripts/copy.scm:127 #: guix/scripts/pack.scm:1357 guix/scripts/weather.scm:336 #: guix/scripts/describe.scm:96 guix/scripts/processes.scm:301 -#: guix/scripts/deploy.scm:55 guix/scripts/container.scm:35 +#: guix/scripts/deploy.scm:58 guix/scripts/container.scm:35 #: guix/scripts/container/exec.scm:43 guix/scripts/archive.scm:106 -#: guix/scripts/environment.scm:149 guix/scripts/home.scm:97 +#: guix/scripts/environment.scm:149 guix/scripts/home.scm:101 #: guix/scripts/time-machine.scm:67 guix/scripts/import/cpan.scm:44 #: guix/scripts/import/crate.scm:50 guix/scripts/import/egg.scm:45 #: guix/scripts/import/gem.scm:46 guix/scripts/import/gnu.scm:50 #: guix/scripts/import/go.scm:50 guix/scripts/import/json.scm:52 #: guix/scripts/import/opam.scm:45 guix/scripts/import/pypi.scm:46 #: guix/scripts/import/texlive.scm:45 guix/scripts/refresh.scm:187 -#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:67 -#: guix/scripts/style.scm:509 +#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:69 +#: guix/scripts/style.scm:804 msgid "" "\n" " -h, --help display this help and exit" msgstr "" #: guix/scripts/build.scm:381 guix/scripts/download.scm:106 -#: guix/scripts/package.scm:506 guix/scripts/install.scm:46 +#: guix/scripts/package.scm:508 guix/scripts/install.scm:46 #: guix/scripts/remove.scm:43 guix/scripts/upgrade.scm:50 #: guix/scripts/search.scm:39 guix/scripts/show.scm:38 guix/scripts/gc.scm:90 #: guix/scripts/git.scm:36 guix/scripts/git/authenticate.scm:112 #: guix/scripts/hash.scm:100 guix/scripts/import.scm:100 #: guix/scripts/import/minetest.scm:50 guix/scripts/import/cran.scm:55 #: guix/scripts/pull.scm:127 guix/scripts/substitute.scm:252 -#: guix/scripts/system.scm:1034 guix/scripts/lint.scm:119 +#: guix/scripts/system.scm:1037 guix/scripts/lint.scm:119 #: guix/scripts/publish.scm:121 guix/scripts/edit.scm:53 #: guix/scripts/size.scm:251 guix/scripts/graph.scm:560 #: guix/scripts/challenge.scm:432 guix/scripts/copy.scm:129 #: guix/scripts/pack.scm:1359 guix/scripts/weather.scm:338 #: guix/scripts/describe.scm:98 guix/scripts/processes.scm:303 -#: guix/scripts/deploy.scm:57 guix/scripts/container.scm:37 +#: guix/scripts/deploy.scm:60 guix/scripts/container.scm:37 #: guix/scripts/container/exec.scm:45 guix/scripts/archive.scm:108 -#: guix/scripts/environment.scm:151 guix/scripts/home.scm:99 +#: guix/scripts/environment.scm:151 guix/scripts/home.scm:103 #: guix/scripts/time-machine.scm:69 guix/scripts/import/cpan.scm:46 #: guix/scripts/import/crate.scm:52 guix/scripts/import/egg.scm:49 #: guix/scripts/import/gem.scm:48 guix/scripts/import/gnu.scm:52 #: guix/scripts/import/json.scm:54 guix/scripts/import/opam.scm:52 #: guix/scripts/import/pypi.scm:50 guix/scripts/import/texlive.scm:47 #: guix/scripts/refresh.scm:189 guix/scripts/repl.scm:85 -#: guix/scripts/shell.scm:69 guix/scripts/style.scm:511 +#: guix/scripts/shell.scm:71 guix/scripts/style.scm:806 msgid "" "\n" " -V, --version display version information and exit" @@ -2335,164 +2428,164 @@ msgstr "" msgid "\"bash-minimal\" should be in 'inputs' when '~a' is used" msgstr "" -#: guix/lint.scm:616 +#: guix/lint.scm:614 msgid "no period allowed at the end of the synopsis" msgstr "" -#: guix/lint.scm:630 +#: guix/lint.scm:628 msgid "no article allowed at the beginning of the synopsis" msgstr "" -#: guix/lint.scm:639 +#: guix/lint.scm:637 msgid "synopsis should be less than 80 characters long" msgstr "" -#: guix/lint.scm:648 +#: guix/lint.scm:646 msgid "synopsis should start with an upper-case letter or digit" msgstr "" -#: guix/lint.scm:656 +#: guix/lint.scm:654 msgid "synopsis should not start with the package name" msgstr "" -#: guix/lint.scm:670 +#: guix/lint.scm:668 msgid "Texinfo markup in synopsis is invalid" msgstr "" -#: guix/lint.scm:678 +#: guix/lint.scm:676 msgid "synopsis contains trailing whitespace" msgstr "" -#: guix/lint.scm:695 +#: guix/lint.scm:693 msgid "synopsis should not be empty" msgstr "" -#: guix/lint.scm:705 +#: guix/lint.scm:703 #, scheme-format msgid "invalid synopsis: ~s" msgstr "" -#: guix/lint.scm:805 +#: guix/lint.scm:803 #, scheme-format msgid "~a: HTTP GET error for ~a: ~a (~s)~%" msgstr "" -#: guix/lint.scm:815 +#: guix/lint.scm:813 #, scheme-format msgid "~a: host lookup failure: ~a~%" msgstr "" -#: guix/lint.scm:820 +#: guix/lint.scm:818 #, scheme-format msgid "~a: TLS certificate error: ~a" msgstr "" -#: guix/lint.scm:825 +#: guix/lint.scm:823 #, scheme-format msgid "~a: TLS error in '~a': ~a~%" msgstr "" -#: guix/lint.scm:836 guix/ui.scm:820 guix/scripts/offload.scm:194 +#: guix/lint.scm:834 guix/ui.scm:820 guix/scripts/offload.scm:194 #, scheme-format msgid "~a: ~a~%" msgstr "" -#: guix/lint.scm:868 +#: guix/lint.scm:866 #, scheme-format msgid "URI ~a returned suspiciously small file (~a bytes)" msgstr "" -#: guix/lint.scm:877 +#: guix/lint.scm:875 #, scheme-format msgid "permanent redirect from ~a to ~a" msgstr "" -#: guix/lint.scm:883 +#: guix/lint.scm:881 #, scheme-format msgid "invalid permanent redirect from ~a" msgstr "" -#: guix/lint.scm:889 guix/lint.scm:899 +#: guix/lint.scm:887 guix/lint.scm:897 #, scheme-format msgid "URI ~a not reachable: ~a (~s)" msgstr "" -#: guix/lint.scm:905 +#: guix/lint.scm:903 #, scheme-format msgid "URI ~a domain not found: ~a" msgstr "" -#: guix/lint.scm:911 +#: guix/lint.scm:909 #, scheme-format msgid "URI ~a unreachable: ~a" msgstr "" -#: guix/lint.scm:919 +#: guix/lint.scm:917 #, scheme-format msgid "TLS certificate error: ~a" msgstr "" -#: guix/lint.scm:946 +#: guix/lint.scm:944 msgid "invalid value for home page" msgstr "" -#: guix/lint.scm:951 +#: guix/lint.scm:949 #, scheme-format msgid "invalid home page URL: ~s" msgstr "" -#: guix/lint.scm:988 +#: guix/lint.scm:986 msgid "file names of patches should start with the package name" msgstr "" -#: guix/lint.scm:1008 +#: guix/lint.scm:1006 #, scheme-format msgid "~a: file name is too long, which may break 'make dist'" msgstr "" -#: guix/lint.scm:1029 +#: guix/lint.scm:1027 #, scheme-format msgid "~a: empty patch" msgstr "" -#: guix/lint.scm:1038 +#: guix/lint.scm:1036 #, scheme-format msgid "~a: patch lacks comment and upstream status" msgstr "" -#: guix/lint.scm:1099 +#: guix/lint.scm:1097 #, scheme-format msgid "proposed synopsis: ~s~%" msgstr "" -#: guix/lint.scm:1113 +#: guix/lint.scm:1111 #, scheme-format msgid "proposed description:~% \"~a\"~%" msgstr "" -#: guix/lint.scm:1164 +#: guix/lint.scm:1162 msgid "all the source URIs are unreachable:" msgstr "" -#: guix/lint.scm:1193 +#: guix/lint.scm:1191 msgid "the source file name should contain the package name" msgstr "" -#: guix/lint.scm:1205 +#: guix/lint.scm:1203 msgid "the source URI should not be an autogenerated tarball" msgstr "" -#: guix/lint.scm:1229 +#: guix/lint.scm:1227 #, scheme-format msgid "URL should be 'mirror://~a/~a'" msgstr "" -#: guix/lint.scm:1269 +#: guix/lint.scm:1267 #, scheme-format msgid "while accessing '~a'" msgstr "" -#: guix/lint.scm:1276 +#: guix/lint.scm:1274 #, scheme-format msgid "URL should be '~a'" msgstr "" @@ -2500,68 +2593,68 @@ msgstr "" #. TRANSLATORS: check and #:tests? are a #. Scheme symbol and keyword respectively #. and should not be translated. -#: guix/lint.scm:1304 +#: guix/lint.scm:1302 msgid "the 'check' phase should respect #:tests?" msgstr "" -#: guix/lint.scm:1322 guix/lint.scm:1333 guix/lint.scm:1341 +#: guix/lint.scm:1320 guix/lint.scm:1331 guix/lint.scm:1339 #, scheme-format msgid "failed to create ~a derivation: ~a" msgstr "" -#: guix/lint.scm:1327 +#: guix/lint.scm:1325 #, scheme-format msgid "failed to create ~a derivation: ~s" msgstr "" -#: guix/lint.scm:1379 +#: guix/lint.scm:1377 #, scheme-format msgid "propagated inputs ~a and ~a collide" msgstr "" -#: guix/lint.scm:1403 +#: guix/lint.scm:1401 msgid "invalid license field" msgstr "" -#: guix/lint.scm:1410 +#: guix/lint.scm:1408 msgid "while retrieving CVE vulnerabilities" msgstr "" -#: guix/lint.scm:1453 +#: guix/lint.scm:1451 #, scheme-format msgid "probably vulnerable to ~a" msgstr "" -#: guix/lint.scm:1461 +#: guix/lint.scm:1459 #, scheme-format msgid "no updater for ~a" msgstr "" -#: guix/lint.scm:1466 guix/lint.scm:1641 +#: guix/lint.scm:1464 guix/lint.scm:1639 #, scheme-format msgid "while retrieving upstream info for '~a'" msgstr "" -#: guix/lint.scm:1475 +#: guix/lint.scm:1473 #, scheme-format msgid "can be upgraded to ~a" msgstr "" -#: guix/lint.scm:1481 +#: guix/lint.scm:1479 #, scheme-format msgid "updater '~a' failed to find upstream releases" msgstr "" -#: guix/lint.scm:1508 +#: guix/lint.scm:1506 #, scheme-format msgid "failed to access Disarchive database at ~a" msgstr "" -#: guix/lint.scm:1535 +#: guix/lint.scm:1533 msgid "Software Heritage rate limit reached; try again later" msgstr "" -#: guix/lint.scm:1539 +#: guix/lint.scm:1537 #, scheme-format msgid "'~a' returned ~a" msgstr "" @@ -2569,162 +2662,162 @@ msgstr "" #. TRANSLATORS: "Software Heritage" is a proper noun #. that must remain untranslated. See #. . -#: guix/lint.scm:1578 +#: guix/lint.scm:1576 msgid "scheduled Software Heritage archival" msgstr "" -#: guix/lint.scm:1584 +#: guix/lint.scm:1582 msgid "archival rate limit exceeded; try again later" msgstr "" -#: guix/lint.scm:1605 +#: guix/lint.scm:1603 msgid "source not archived on Software Heritage and missing from the Disarchive database" msgstr "" -#: guix/lint.scm:1615 +#: guix/lint.scm:1613 #, scheme-format msgid "Disarchive entry refers to non-existent SWH directory '~a'" msgstr "" -#: guix/lint.scm:1624 +#: guix/lint.scm:1622 msgid "unsupported source type" msgstr "" -#: guix/lint.scm:1633 +#: guix/lint.scm:1631 msgid "while connecting to Software Heritage" msgstr "" -#: guix/lint.scm:1650 +#: guix/lint.scm:1648 #, scheme-format msgid "ahead of Stackage LTS version ~a" msgstr "" -#: guix/lint.scm:1667 +#: guix/lint.scm:1665 #, scheme-format msgid "tabulation on line ~a, column ~a" msgstr "" -#: guix/lint.scm:1679 +#: guix/lint.scm:1677 #, scheme-format msgid "trailing white space on line ~a" msgstr "" -#: guix/lint.scm:1693 +#: guix/lint.scm:1691 #, scheme-format msgid "line ~a is way too long (~a characters)" msgstr "" -#: guix/lint.scm:1707 +#: guix/lint.scm:1705 msgid "parentheses feel lonely, move to the previous or next line" msgstr "" -#: guix/lint.scm:1784 +#: guix/lint.scm:1782 msgid "source file not found" msgstr "" -#: guix/lint.scm:1796 +#: guix/lint.scm:1794 msgid "Validate package names" msgstr "" -#: guix/lint.scm:1800 +#: guix/lint.scm:1798 msgid "Check if tests are explicitly enabled" msgstr "" -#: guix/lint.scm:1804 +#: guix/lint.scm:1802 msgid "Validate package descriptions" msgstr "" -#: guix/lint.scm:1808 +#: guix/lint.scm:1806 msgid "Identify inputs that should be native inputs" msgstr "" -#: guix/lint.scm:1812 +#: guix/lint.scm:1810 msgid "Identify inputs that shouldn't be inputs at all" msgstr "" -#: guix/lint.scm:1816 +#: guix/lint.scm:1814 msgid "Identify input labels that do not match package names" msgstr "" -#: guix/lint.scm:1820 +#: guix/lint.scm:1818 msgid "Make sure 'wrap-program' can finds its interpreter." msgstr "" #. TRANSLATORS: is the name of a data type and must not be #. translated. -#: guix/lint.scm:1826 +#: guix/lint.scm:1824 msgid "Make sure the 'license' field is a or a list thereof" msgstr "" -#: guix/lint.scm:1831 +#: guix/lint.scm:1829 msgid "Make sure tests are only run when requested" msgstr "" -#: guix/lint.scm:1835 +#: guix/lint.scm:1833 msgid "Suggest 'mirror://' URLs" msgstr "" -#: guix/lint.scm:1839 +#: guix/lint.scm:1837 msgid "Validate file names of sources" msgstr "" -#: guix/lint.scm:1843 +#: guix/lint.scm:1841 msgid "Check for autogenerated tarballs" msgstr "" -#: guix/lint.scm:1847 +#: guix/lint.scm:1845 msgid "Report failure to compile a package to a derivation" msgstr "" -#: guix/lint.scm:1852 +#: guix/lint.scm:1850 msgid "Report collisions that would occur due to propagated inputs" msgstr "" -#: guix/lint.scm:1857 +#: guix/lint.scm:1855 msgid "Validate file names and availability of patches" msgstr "" -#: guix/lint.scm:1861 +#: guix/lint.scm:1859 msgid "Validate patch headers" msgstr "" -#: guix/lint.scm:1865 +#: guix/lint.scm:1863 msgid "Look for formatting issues in the source" msgstr "" -#: guix/lint.scm:1872 +#: guix/lint.scm:1870 msgid "Validate package synopses" msgstr "" -#: guix/lint.scm:1876 +#: guix/lint.scm:1874 msgid "Validate synopsis & description of GNU packages" msgstr "" -#: guix/lint.scm:1880 +#: guix/lint.scm:1878 msgid "Validate home-page URLs" msgstr "" -#: guix/lint.scm:1884 +#: guix/lint.scm:1882 msgid "Validate source URLs" msgstr "" -#: guix/lint.scm:1888 +#: guix/lint.scm:1886 msgid "Suggest GitHub URLs" msgstr "" -#: guix/lint.scm:1892 +#: guix/lint.scm:1890 msgid "Check the Common Vulnerabilities and Exposures (CVE) database" msgstr "" -#: guix/lint.scm:1897 +#: guix/lint.scm:1895 msgid "Check the package for new upstream releases" msgstr "" -#: guix/lint.scm:1901 +#: guix/lint.scm:1899 msgid "Ensure source code archival on Software Heritage" msgstr "" -#: guix/lint.scm:1905 +#: guix/lint.scm:1903 msgid "Ensure Haskell packages use Stackage LTS versions" msgstr "" @@ -2776,7 +2869,7 @@ msgstr "" msgid "~a: unknown hash algorithm~%" msgstr "" -#: guix/scripts/download.scm:171 guix/scripts/package.scm:1087 +#: guix/scripts/download.scm:171 guix/scripts/package.scm:1090 #: guix/scripts/pull.scm:758 guix/scripts/publish.scm:1260 #: guix/scripts/discover.scm:136 guix/scripts/time-machine.scm:123 #, scheme-format @@ -2808,17 +2901,17 @@ msgstr "" msgid "no matching generation~%" msgstr "" -#: guix/scripts/package.scm:159 +#: guix/scripts/package.scm:161 #, scheme-format msgid "nothing to be done~%" msgstr "" -#: guix/scripts/package.scm:260 +#: guix/scripts/package.scm:262 #, scheme-format msgid "package '~a' no longer exists~%" msgstr "" -#: guix/scripts/package.scm:315 +#: guix/scripts/package.scm:317 #, scheme-format msgid "" "Consider setting the necessary environment\n" @@ -2832,7 +2925,7 @@ msgid "" "Alternately, see @command{guix package --search-paths -p ~s}." msgstr "" -#: guix/scripts/package.scm:361 +#: guix/scripts/package.scm:363 msgid "" ";; This \"manifest\" file can be passed to 'guix package -m' to reproduce\n" ";; the content of your profile. This is \"symbolic\": it only specifies\n" @@ -2841,44 +2934,44 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/package.scm:393 +#: guix/scripts/package.scm:395 #, scheme-format msgid "no provenance information for this profile~%" msgstr "" -#: guix/scripts/package.scm:395 +#: guix/scripts/package.scm:397 msgid "" ";; This channel file can be passed to 'guix pull -C' or to\n" ";; 'guix time-machine -C' to obtain the Guix revision that was\n" ";; used to populate this profile.\n" msgstr "" -#: guix/scripts/package.scm:407 +#: guix/scripts/package.scm:409 #, scheme-format msgid ";; Note: these other commits were also used to install some of the packages in this profile:~%" msgstr "" -#: guix/scripts/package.scm:437 +#: guix/scripts/package.scm:439 msgid "" "Usage: guix package [OPTION]...\n" "Install, remove, or upgrade packages in a single transaction.\n" msgstr "" -#: guix/scripts/package.scm:439 +#: guix/scripts/package.scm:441 msgid "" "\n" " -i, --install PACKAGE ...\n" " install PACKAGEs" msgstr "" -#: guix/scripts/package.scm:442 +#: guix/scripts/package.scm:444 msgid "" "\n" " -e, --install-from-expression=EXP\n" " install the package EXP evaluates to" msgstr "" -#: guix/scripts/package.scm:445 +#: guix/scripts/package.scm:447 msgid "" "\n" " -f, --install-from-file=FILE\n" @@ -2886,160 +2979,160 @@ msgid "" " evaluates to" msgstr "" -#: guix/scripts/package.scm:449 +#: guix/scripts/package.scm:451 msgid "" "\n" " -r, --remove PACKAGE ...\n" " remove PACKAGEs" msgstr "" -#: guix/scripts/package.scm:452 +#: guix/scripts/package.scm:454 msgid "" "\n" " -u, --upgrade[=REGEXP] upgrade all the installed packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:454 +#: guix/scripts/package.scm:456 msgid "" "\n" " -m, --manifest=FILE create a new profile generation with the manifest\n" " from FILE" msgstr "" -#: guix/scripts/package.scm:457 guix/scripts/upgrade.scm:41 +#: guix/scripts/package.scm:459 guix/scripts/upgrade.scm:41 msgid "" "\n" " --do-not-upgrade[=REGEXP] do not upgrade any packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:459 guix/scripts/pull.scm:107 +#: guix/scripts/package.scm:461 guix/scripts/pull.scm:107 msgid "" "\n" " --roll-back roll back to the previous generation" msgstr "" -#: guix/scripts/package.scm:461 +#: guix/scripts/package.scm:463 msgid "" "\n" " --search-paths[=KIND]\n" " display needed environment variable definitions" msgstr "" -#: guix/scripts/package.scm:464 guix/scripts/pull.scm:104 +#: guix/scripts/package.scm:466 guix/scripts/pull.scm:104 msgid "" "\n" " -l, --list-generations[=PATTERN]\n" " list generations matching PATTERN" msgstr "" -#: guix/scripts/package.scm:467 guix/scripts/pull.scm:109 +#: guix/scripts/package.scm:469 guix/scripts/pull.scm:109 msgid "" "\n" " -d, --delete-generations[=PATTERN]\n" " delete generations matching PATTERN" msgstr "" -#: guix/scripts/package.scm:470 guix/scripts/pull.scm:112 +#: guix/scripts/package.scm:472 guix/scripts/pull.scm:112 msgid "" "\n" " -S, --switch-generation=PATTERN\n" " switch to a generation matching PATTERN" msgstr "" -#: guix/scripts/package.scm:473 +#: guix/scripts/package.scm:475 msgid "" "\n" " --export-manifest print a manifest for the chosen profile" msgstr "" -#: guix/scripts/package.scm:475 +#: guix/scripts/package.scm:477 msgid "" "\n" " --export-channels print channels for the chosen profile" msgstr "" -#: guix/scripts/package.scm:477 guix/scripts/install.scm:34 +#: guix/scripts/package.scm:479 guix/scripts/install.scm:34 #: guix/scripts/remove.scm:33 guix/scripts/upgrade.scm:37 msgid "" "\n" " -p, --profile=PROFILE use PROFILE instead of the user's default profile" msgstr "" -#: guix/scripts/package.scm:479 +#: guix/scripts/package.scm:481 msgid "" "\n" " --list-profiles list the user's profiles" msgstr "" -#: guix/scripts/package.scm:482 +#: guix/scripts/package.scm:484 msgid "" "\n" " --allow-collisions do not treat collisions in the profile as an error" msgstr "" -#: guix/scripts/package.scm:484 +#: guix/scripts/package.scm:486 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" msgstr "" -#: guix/scripts/package.scm:489 +#: guix/scripts/package.scm:491 msgid "" "\n" " -s, --search=REGEXP search in synopsis and description using REGEXP" msgstr "" -#: guix/scripts/package.scm:491 +#: guix/scripts/package.scm:493 msgid "" "\n" " -I, --list-installed[=REGEXP]\n" " list installed packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:494 +#: guix/scripts/package.scm:496 msgid "" "\n" " -A, --list-available[=REGEXP]\n" " list available packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:497 +#: guix/scripts/package.scm:499 msgid "" "\n" " --show=PACKAGE show details about PACKAGE" msgstr "" -#: guix/scripts/package.scm:552 +#: guix/scripts/package.scm:554 #, scheme-format msgid "upgrade regexp '~a' looks like a command-line option~%" msgstr "" -#: guix/scripts/package.scm:555 +#: guix/scripts/package.scm:557 #, scheme-format msgid "is this intended?~%" msgstr "" -#: guix/scripts/package.scm:605 +#: guix/scripts/package.scm:607 #, scheme-format msgid "~a: unsupported kind of search path~%" msgstr "" -#: guix/scripts/package.scm:739 +#: guix/scripts/package.scm:741 #, scheme-format msgid "cannot install non-package object: ~s~%" msgstr "" -#: guix/scripts/package.scm:918 +#: guix/scripts/package.scm:920 #, scheme-format msgid "~a~@[@~a~]: package not found~%" msgstr "" -#: guix/scripts/package.scm:965 guix/scripts/pull.scm:687 +#: guix/scripts/package.scm:967 guix/scripts/pull.scm:687 #, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "" -#: guix/scripts/package.scm:1060 +#: guix/scripts/package.scm:1062 #, scheme-format msgid "nothing to do~%" msgstr "" @@ -3248,8 +3341,8 @@ msgid "" "Operate on Git repositories.\n" msgstr "" -#: guix/scripts/git.scm:29 guix/scripts/system.scm:945 -#: guix/scripts/container.scm:30 guix/scripts/home.scm:69 +#: guix/scripts/git.scm:29 guix/scripts/system.scm:946 +#: guix/scripts/container.scm:30 guix/scripts/home.scm:70 msgid "The valid values for ACTION are:\n" msgstr "" @@ -3338,22 +3431,22 @@ msgid "" " -S, --serializer=TYPE compute the hash on FILE according to TYPE serialization" msgstr "" -#: guix/scripts/hash.scm:137 +#: guix/scripts/hash.scm:138 #, scheme-format -msgid "'--recursive' is deprecated, use '--serializer' instead~%" +msgid "'--recursive' is deprecated, use '--serializer=nar' instead~%" msgstr "" -#: guix/scripts/hash.scm:152 +#: guix/scripts/hash.scm:153 #, scheme-format msgid "unsupported serializer type: ~a~%" msgstr "" -#: guix/scripts/hash.scm:201 +#: guix/scripts/hash.scm:202 #, scheme-format msgid "~a ~a~%" msgstr "" -#: guix/scripts/hash.scm:210 +#: guix/scripts/hash.scm:211 #, scheme-format msgid "no arguments specified~%" msgstr "" @@ -3413,9 +3506,9 @@ msgstr "" #: guix/scripts/import/minetest.scm:115 guix/scripts/import/cran.scm:120 #: guix/scripts/import/elpa.scm:110 guix/scripts/import/cpan.scm:87 #: guix/scripts/import/crate.scm:103 guix/scripts/import/egg.scm:106 -#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:121 +#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:122 #: guix/scripts/import/hackage.scm:158 guix/scripts/import/json.scm:97 -#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:104 +#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:105 #: guix/scripts/import/stackage.scm:130 guix/scripts/import/texlive.scm:88 #, scheme-format msgid "too few arguments~%" @@ -3424,10 +3517,10 @@ msgstr "" #: guix/scripts/import/minetest.scm:117 guix/scripts/import/cran.scm:122 #: guix/scripts/import/elpa.scm:112 guix/scripts/import/cpan.scm:89 #: guix/scripts/import/crate.scm:105 guix/scripts/import/egg.scm:108 -#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:123 +#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:124 #: guix/scripts/import/hackage.scm:149 guix/scripts/import/hackage.scm:160 #: guix/scripts/import/json.scm:99 guix/scripts/import/opam.scm:113 -#: guix/scripts/import/pypi.scm:106 guix/scripts/import/stackage.scm:132 +#: guix/scripts/import/pypi.scm:107 guix/scripts/import/stackage.scm:132 #: guix/scripts/import/texlive.scm:90 #, scheme-format msgid "too many arguments~%" @@ -3451,7 +3544,7 @@ msgid "" " -s, --style=STYLE choose output style, either specification or variable" msgstr "" -#: guix/scripts/import/cran.scm:116 guix/scripts/import/texlive.scm:84 +#: guix/scripts/import/cran.scm:116 #, scheme-format msgid "failed to download description for package '~a'~%" msgstr "" @@ -3847,27 +3940,27 @@ msgstr "" msgid "the dependency graph of shepherd services" msgstr "" -#: guix/scripts/system.scm:482 guix/scripts/home.scm:453 +#: guix/scripts/system.scm:482 guix/scripts/home.scm:466 #, scheme-format msgid " repository URL: ~a~%" msgstr "" -#: guix/scripts/system.scm:484 guix/scripts/home.scm:455 +#: guix/scripts/system.scm:484 guix/scripts/home.scm:468 #, scheme-format msgid " branch: ~a~%" msgstr "" -#: guix/scripts/system.scm:485 guix/scripts/home.scm:456 +#: guix/scripts/system.scm:485 guix/scripts/home.scm:469 #, scheme-format msgid " commit: ~a~%" msgstr "" -#: guix/scripts/system.scm:505 guix/scripts/home.scm:469 +#: guix/scripts/system.scm:505 guix/scripts/home.scm:482 #, scheme-format msgid " file name: ~a~%" msgstr "" -#: guix/scripts/system.scm:506 guix/scripts/home.scm:470 +#: guix/scripts/system.scm:506 guix/scripts/home.scm:483 #, scheme-format msgid " canonical file name: ~a~%" msgstr "" @@ -3908,12 +4001,12 @@ msgstr "" #. TRANSLATORS: Here "channel" is the same terminology as used in #. "guix describe" and "guix pull --channels". -#: guix/scripts/system.scm:536 guix/scripts/home.scm:476 +#: guix/scripts/system.scm:536 guix/scripts/home.scm:489 #, scheme-format msgid " channels:~%" msgstr "" -#: guix/scripts/system.scm:539 guix/scripts/home.scm:479 +#: guix/scripts/system.scm:539 guix/scripts/home.scm:492 #, scheme-format msgid " configuration file: ~a~%" msgstr "" @@ -3965,128 +4058,128 @@ msgstr "" msgid "Failing to do that may downgrade your system!~%" msgstr "" -#: guix/scripts/system.scm:754 guix/scripts/system.scm:863 +#: guix/scripts/system.scm:754 guix/scripts/system.scm:864 #, scheme-format msgid "bootloader successfully installed on '~a'~%" msgstr "" -#: guix/scripts/system.scm:856 +#: guix/scripts/system.scm:857 #, scheme-format msgid "activating system...~%" msgstr "" -#: guix/scripts/system.scm:867 +#: guix/scripts/system.scm:868 msgid "" "To complete the upgrade, run 'herd restart SERVICE' to stop,\n" "upgrade, and restart each service that was not automatically restarted.\n" msgstr "" -#: guix/scripts/system.scm:870 +#: guix/scripts/system.scm:871 msgid "Run 'herd status' to view the list of services on your system.\n" msgstr "" -#: guix/scripts/system.scm:874 +#: guix/scripts/system.scm:875 #, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "" -#: guix/scripts/system.scm:894 guix/scripts/graph.scm:437 +#: guix/scripts/system.scm:895 guix/scripts/graph.scm:437 #, scheme-format msgid "~a: unknown backend~%" msgstr "" -#: guix/scripts/system.scm:931 +#: guix/scripts/system.scm:932 msgid "The available image types are:\n" msgstr "" -#: guix/scripts/system.scm:941 +#: guix/scripts/system.scm:942 msgid "" "Usage: guix system [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the operating system declared in FILE according to ACTION.\n" "Some ACTIONS support additional ARGS.\n" msgstr "" -#: guix/scripts/system.scm:947 +#: guix/scripts/system.scm:948 msgid " search search for existing service types\n" msgstr "" -#: guix/scripts/system.scm:949 +#: guix/scripts/system.scm:950 msgid " reconfigure switch to a new operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:951 +#: guix/scripts/system.scm:952 msgid " roll-back switch to the previous operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:953 +#: guix/scripts/system.scm:954 msgid " describe describe the current system\n" msgstr "" -#: guix/scripts/system.scm:955 +#: guix/scripts/system.scm:956 msgid " list-generations list the system generations\n" msgstr "" -#: guix/scripts/system.scm:957 +#: guix/scripts/system.scm:958 msgid " switch-generation switch to an existing operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:959 +#: guix/scripts/system.scm:960 msgid " delete-generations delete old system generations\n" msgstr "" -#: guix/scripts/system.scm:961 +#: guix/scripts/system.scm:962 msgid " build build the operating system without installing anything\n" msgstr "" -#: guix/scripts/system.scm:963 +#: guix/scripts/system.scm:964 msgid " container build a container that shares the host's store\n" msgstr "" -#: guix/scripts/system.scm:965 +#: guix/scripts/system.scm:966 msgid " vm build a virtual machine image that shares the host's store\n" msgstr "" -#: guix/scripts/system.scm:967 +#: guix/scripts/system.scm:968 msgid " image build a Guix System image\n" msgstr "" -#: guix/scripts/system.scm:969 +#: guix/scripts/system.scm:970 msgid " docker-image build a Docker image\n" msgstr "" -#: guix/scripts/system.scm:971 +#: guix/scripts/system.scm:972 msgid " init initialize a root file system to run GNU\n" msgstr "" -#: guix/scripts/system.scm:973 +#: guix/scripts/system.scm:974 msgid " extension-graph emit the service extension graph in Dot format\n" msgstr "" -#: guix/scripts/system.scm:975 +#: guix/scripts/system.scm:976 msgid " shepherd-graph emit the graph of shepherd services in Dot format\n" msgstr "" -#: guix/scripts/system.scm:979 +#: guix/scripts/system.scm:980 msgid "" "\n" " -d, --derivation return the derivation of the given system" msgstr "" -#: guix/scripts/system.scm:981 +#: guix/scripts/system.scm:982 msgid "" "\n" " -e, --expression=EXPR consider the operating-system EXPR evaluates to\n" " instead of reading FILE, when applicable" msgstr "" -#: guix/scripts/system.scm:984 +#: guix/scripts/system.scm:985 guix/scripts/home.scm:95 msgid "" "\n" " --allow-downgrades for 'reconfigure', allow downgrades to earlier\n" " channel revisions" msgstr "" -#: guix/scripts/system.scm:987 +#: guix/scripts/system.scm:988 msgid "" "\n" " --on-error=STRATEGY\n" @@ -4094,69 +4187,75 @@ msgid "" " or debug) when an error occurs while reading FILE" msgstr "" -#: guix/scripts/system.scm:991 +#: guix/scripts/system.scm:992 msgid "" "\n" " --list-image-types list available image types" msgstr "" -#: guix/scripts/system.scm:993 +#: guix/scripts/system.scm:994 msgid "" "\n" " -t, --image-type=TYPE for 'image', produce an image of TYPE" msgstr "" -#: guix/scripts/system.scm:995 +#: guix/scripts/system.scm:996 msgid "" "\n" " --image-size=SIZE for 'image', produce an image of SIZE" msgstr "" -#: guix/scripts/system.scm:997 +#: guix/scripts/system.scm:998 msgid "" "\n" " --no-bootloader for 'init', do not install a bootloader" msgstr "" -#: guix/scripts/system.scm:999 +#: guix/scripts/system.scm:1000 msgid "" "\n" " --volatile for 'image', make the root file system volatile" msgstr "" -#: guix/scripts/system.scm:1001 +#: guix/scripts/system.scm:1002 +msgid "" +"\n" +" --persistent for 'vm', make the root file system persistent" +msgstr "" + +#: guix/scripts/system.scm:1004 msgid "" "\n" " --label=LABEL for 'image', label disk image with LABEL" msgstr "" -#: guix/scripts/system.scm:1003 guix/scripts/pack.scm:1340 +#: guix/scripts/system.scm:1006 guix/scripts/pack.scm:1340 msgid "" "\n" " --save-provenance save provenance information" msgstr "" -#: guix/scripts/system.scm:1005 +#: guix/scripts/system.scm:1008 msgid "" "\n" " --share=SPEC for 'vm' and 'container', share host file system with\n" " read/write access according to SPEC" msgstr "" -#: guix/scripts/system.scm:1008 +#: guix/scripts/system.scm:1011 msgid "" "\n" " --expose=SPEC for 'vm' and 'container', expose host file system\n" " directory as read-only according to SPEC" msgstr "" -#: guix/scripts/system.scm:1011 +#: guix/scripts/system.scm:1014 msgid "" "\n" " -N, --network for 'container', allow containers to access the network" msgstr "" -#: guix/scripts/system.scm:1013 +#: guix/scripts/system.scm:1016 msgid "" "\n" " -r, --root=FILE for 'vm', 'image', 'container' and 'build',\n" @@ -4164,82 +4263,82 @@ msgid "" " register it as a garbage collector root" msgstr "" -#: guix/scripts/system.scm:1017 +#: guix/scripts/system.scm:1020 msgid "" "\n" " --full-boot for 'vm', make a full boot sequence" msgstr "" -#: guix/scripts/system.scm:1019 +#: guix/scripts/system.scm:1022 msgid "" "\n" " --no-graphic for 'vm', use the tty that we are started in for IO" msgstr "" -#: guix/scripts/system.scm:1021 +#: guix/scripts/system.scm:1024 msgid "" "\n" " --skip-checks skip file system and initrd module safety checks" msgstr "" -#: guix/scripts/system.scm:1028 +#: guix/scripts/system.scm:1031 msgid "" "\n" " --graph-backend=BACKEND\n" " use BACKEND for 'extension-graphs' and 'shepherd-graph'" msgstr "" -#: guix/scripts/system.scm:1180 +#: guix/scripts/system.scm:1187 #, scheme-format msgid "'~a' does not return an operating system or an image~%" msgstr "" -#: guix/scripts/system.scm:1204 guix/scripts/home.scm:216 +#: guix/scripts/system.scm:1211 guix/scripts/home.scm:230 #, scheme-format msgid "both file and expression cannot be specified~%" msgstr "" -#: guix/scripts/system.scm:1211 guix/scripts/home.scm:223 +#: guix/scripts/system.scm:1218 guix/scripts/home.scm:237 #, scheme-format msgid "no configuration specified~%" msgstr "" -#: guix/scripts/system.scm:1319 guix/scripts/system.scm:1335 -#: guix/scripts/system.scm:1342 guix/scripts/system.scm:1348 -#: guix/scripts/home.scm:274 guix/scripts/home.scm:296 -#: guix/scripts/home.scm:301 guix/scripts/home.scm:307 -#: guix/scripts/home.scm:314 guix/scripts/import/gnu.scm:100 +#: guix/scripts/system.scm:1328 guix/scripts/system.scm:1344 +#: guix/scripts/system.scm:1351 guix/scripts/system.scm:1357 +#: guix/scripts/home.scm:287 guix/scripts/home.scm:309 +#: guix/scripts/home.scm:314 guix/scripts/home.scm:320 +#: guix/scripts/home.scm:327 guix/scripts/import/gnu.scm:100 #: guix/scripts/offload.scm:836 guix/scripts/offload.scm:848 #, scheme-format msgid "wrong number of arguments~%" msgstr "" -#: guix/scripts/system.scm:1324 +#: guix/scripts/system.scm:1333 #, scheme-format msgid "no system generation, nothing to describe~%" msgstr "" -#: guix/scripts/system.scm:1367 guix/scripts/home.scm:337 +#: guix/scripts/system.scm:1376 guix/scripts/home.scm:350 #, scheme-format msgid "~a: unknown action~%" msgstr "" -#: guix/scripts/system.scm:1387 guix/scripts/home.scm:353 +#: guix/scripts/system.scm:1396 guix/scripts/home.scm:366 #, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "" -#: guix/scripts/system.scm:1392 +#: guix/scripts/system.scm:1401 #, scheme-format msgid "guix system: missing command name~%" msgstr "" -#: guix/scripts/system.scm:1394 +#: guix/scripts/system.scm:1403 #, scheme-format msgid "Try 'guix system --help' for more information.~%" msgstr "" -#: guix/scripts/system/search.scm:93 guix/ui.scm:1541 guix/ui.scm:1559 +#: guix/scripts/system/search.scm:93 guix/ui.scm:1544 guix/ui.scm:1562 msgid "unknown" msgstr "" @@ -4634,7 +4733,7 @@ msgid "" msgstr "" #: guix/scripts/graph.scm:548 guix/scripts/pack.scm:1325 -#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:502 +#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:797 msgid "" "\n" " -e, --expression=EXPR consider the package EXPR evaluates to" @@ -5224,44 +5323,85 @@ msgid "" " -f, --format=FORMAT display results as normalized record sets" msgstr "" -#: guix/scripts/deploy.scm:51 +#: guix/scripts/deploy.scm:54 msgid "" "Usage: guix deploy [OPTION] FILE...\n" "Perform the deployment specified by FILE.\n" msgstr "" -#: guix/scripts/deploy.scm:108 +#: guix/scripts/deploy.scm:63 +msgid "" +"\n" +" -x, --execute execute the following command on all the machines" +msgstr "" + +#: guix/scripts/deploy.scm:117 #, scheme-format msgid "The following ~d machine will be deployed:~%" msgid_plural "The following ~d machines will be deployed:~%" msgstr[0] "" msgstr[1] "" -#: guix/scripts/deploy.scm:122 +#: guix/scripts/deploy.scm:131 #, scheme-format msgid "deploying to ~a...~%" msgstr "" -#: guix/scripts/deploy.scm:134 guix/scripts/deploy.scm:138 +#: guix/scripts/deploy.scm:143 guix/scripts/deploy.scm:147 #, scheme-format msgid "failed to deploy ~a: ~a~%" msgstr "" -#: guix/scripts/deploy.scm:146 +#: guix/scripts/deploy.scm:155 #, scheme-format msgid "rolling back ~a...~%" msgstr "" -#: guix/scripts/deploy.scm:152 +#: guix/scripts/deploy.scm:161 #, scheme-format msgid "successfully deployed ~a~%" msgstr "" -#: guix/scripts/deploy.scm:167 +#: guix/scripts/deploy.scm:212 +#, scheme-format +msgid "~a: command succeeded~%" +msgstr "" + +#: guix/scripts/deploy.scm:215 +#, scheme-format +msgid "~a: command exited with code ~a~%" +msgstr "" + +#: guix/scripts/deploy.scm:218 +#, scheme-format +msgid "~a: command stopped with signal ~a~%" +msgstr "" + +#: guix/scripts/deploy.scm:221 +#, scheme-format +msgid "~a: command terminated with signal ~a~%" +msgstr "" + +#: guix/scripts/deploy.scm:225 +#, scheme-format +msgid "command output on ~a:~%" +msgstr "" + +#: guix/scripts/deploy.scm:246 #, scheme-format msgid "missing deployment file argument~%" msgstr "" +#: guix/scripts/deploy.scm:249 +#, scheme-format +msgid "'--' was used by '-x' was not specified~%" +msgstr "" + +#: guix/scripts/deploy.scm:271 +#, scheme-format +msgid "'-x' specified but no command given~%" +msgstr "" + #: guix/gexp.scm:465 #, scheme-format msgid "resolving '~a' relative to current directory~%" @@ -5353,154 +5493,154 @@ msgstr "" msgid "exec failed with status ~d~%" msgstr "" -#: guix/transformations.scm:185 guix/transformations.scm:253 +#: guix/transformations.scm:186 guix/transformations.scm:254 #, scheme-format msgid "invalid replacement specification: ~s" msgstr "" -#: guix/transformations.scm:234 +#: guix/transformations.scm:235 #, scheme-format msgid "the source of ~a is not a Git reference" msgstr "" -#: guix/transformations.scm:337 +#: guix/transformations.scm:338 #, scheme-format msgid "~a: invalid Git URL replacement specification" msgstr "" -#: guix/transformations.scm:415 +#: guix/transformations.scm:416 #, scheme-format msgid "~a: invalid toolchain replacement specification" msgstr "" -#: guix/transformations.scm:517 +#: guix/transformations.scm:518 msgid "failed to determine which compiler is used" msgstr "" -#: guix/transformations.scm:523 +#: guix/transformations.scm:524 #, scheme-format msgid "failed to determine whether ~a supports ~a" msgstr "" -#: guix/transformations.scm:529 +#: guix/transformations.scm:530 #, scheme-format msgid "compiler ~a does not support micro-architecture ~a" msgstr "" -#: guix/transformations.scm:581 +#: guix/transformations.scm:582 #, scheme-format msgid "tuning ~a for CPU ~a~%" msgstr "" -#: guix/transformations.scm:721 +#: guix/transformations.scm:722 #, scheme-format msgid "~a: invalid package patch specification" msgstr "" -#: guix/transformations.scm:744 +#: guix/transformations.scm:745 #, scheme-format msgid "could not determine latest upstream release of '~a'~%" msgstr "" -#: guix/transformations.scm:752 +#: guix/transformations.scm:753 #, scheme-format msgid "cannot authenticate source of '~a', version ~a~%" msgstr "" -#: guix/transformations.scm:833 +#: guix/transformations.scm:840 #, scheme-format msgid "building for ~a instead of ~a, so tuning cannot be guessed~%" msgstr "" -#: guix/transformations.scm:859 +#: guix/transformations.scm:866 #, scheme-format msgid "Available package transformation options:~%" msgstr "" -#: guix/transformations.scm:865 +#: guix/transformations.scm:872 msgid "" "\n" " --with-source=[PACKAGE=]SOURCE\n" " use SOURCE when building the corresponding package" msgstr "" -#: guix/transformations.scm:868 +#: guix/transformations.scm:875 msgid "" "\n" " --with-input=PACKAGE=REPLACEMENT\n" " replace dependency PACKAGE by REPLACEMENT" msgstr "" -#: guix/transformations.scm:871 +#: guix/transformations.scm:878 msgid "" "\n" " --with-graft=PACKAGE=REPLACEMENT\n" " graft REPLACEMENT on packages that refer to PACKAGE" msgstr "" -#: guix/transformations.scm:874 +#: guix/transformations.scm:881 msgid "" "\n" " --with-branch=PACKAGE=BRANCH\n" " build PACKAGE from the latest commit of BRANCH" msgstr "" -#: guix/transformations.scm:877 +#: guix/transformations.scm:884 msgid "" "\n" " --with-commit=PACKAGE=COMMIT\n" " build PACKAGE from COMMIT" msgstr "" -#: guix/transformations.scm:880 +#: guix/transformations.scm:887 msgid "" "\n" " --with-git-url=PACKAGE=URL\n" " build PACKAGE from the repository at URL" msgstr "" -#: guix/transformations.scm:883 +#: guix/transformations.scm:890 msgid "" "\n" " --with-patch=PACKAGE=FILE\n" " add FILE to the list of patches of PACKAGE" msgstr "" -#: guix/transformations.scm:886 +#: guix/transformations.scm:893 msgid "" "\n" " --with-latest=PACKAGE\n" " use the latest upstream release of PACKAGE" msgstr "" -#: guix/transformations.scm:889 +#: guix/transformations.scm:896 msgid "" "\n" " --with-c-toolchain=PACKAGE=TOOLCHAIN\n" " build PACKAGE and its dependents with TOOLCHAIN" msgstr "" -#: guix/transformations.scm:892 +#: guix/transformations.scm:899 msgid "" "\n" " --with-debug-info=PACKAGE\n" " build PACKAGE and preserve its debug info" msgstr "" -#: guix/transformations.scm:895 +#: guix/transformations.scm:902 msgid "" "\n" " --without-tests=PACKAGE\n" " build PACKAGE without running its tests" msgstr "" -#: guix/transformations.scm:901 +#: guix/transformations.scm:908 msgid "" "\n" " --help-transform list package transformation options not shown here" msgstr "" -#: guix/transformations.scm:950 +#: guix/transformations.scm:957 #, scheme-format msgid "transformation '~a' had no effect on ~a~%" msgstr "" @@ -5980,12 +6120,12 @@ msgstr[1] "" msgid "~a: invalid Texinfo markup~%" msgstr "" -#: guix/ui.scm:1873 +#: guix/ui.scm:1876 #, scheme-format msgid "invalid syntax: ~a~%" msgstr "" -#: guix/ui.scm:1882 +#: guix/ui.scm:1885 #, scheme-format msgid "Generation ~a\t~a" msgstr "" @@ -5995,7 +6135,7 @@ msgstr "" #. usual way of presenting dates in your locale. #. See https://www.gnu.org/software/guile/manual/html_node/SRFI_002d19-Date-to-string.html #. for details. -#: guix/ui.scm:1892 +#: guix/ui.scm:1895 #, scheme-format msgid "~b ~d ~Y ~T" msgstr "" @@ -6003,74 +6143,74 @@ msgstr "" #. TRANSLATORS: The word "current" here is an adjective for #. "Generation", as in "current generation". Use the appropriate #. gender where applicable. -#: guix/ui.scm:1898 +#: guix/ui.scm:1901 #, scheme-format msgid "~a\t(current)~%" msgstr "" -#: guix/ui.scm:1932 +#: guix/ui.scm:1935 #, scheme-format msgid "cannot lock profile ~a: ~a~%" msgstr "" -#: guix/ui.scm:1934 +#: guix/ui.scm:1937 #, scheme-format msgid "profile ~a is locked by another process~%" msgstr "" -#: guix/ui.scm:1963 +#: guix/ui.scm:1966 #, scheme-format msgid "switched from generation ~a to ~a~%" msgstr "" -#: guix/ui.scm:1979 +#: guix/ui.scm:1982 #, scheme-format msgid "deleting ~a~%" msgstr "" -#: guix/ui.scm:2010 +#: guix/ui.scm:2013 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "" -#: guix/ui.scm:2102 +#: guix/ui.scm:2105 msgid "" "Usage: guix OPTION | COMMAND ARGS...\n" "Run COMMAND with ARGS, if given.\n" msgstr "" -#: guix/ui.scm:2105 +#: guix/ui.scm:2108 msgid "" "\n" " -h, --help display this helpful text again and exit" msgstr "" -#: guix/ui.scm:2107 +#: guix/ui.scm:2110 msgid "" "\n" " -V, --version display version and copyright information and exit" msgstr "" -#: guix/ui.scm:2112 +#: guix/ui.scm:2115 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "" -#: guix/ui.scm:2154 +#: guix/ui.scm:2157 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "" -#: guix/ui.scm:2156 +#: guix/ui.scm:2159 #, scheme-format msgid "Did you mean @code{~a}?" msgstr "" -#: guix/ui.scm:2190 +#: guix/ui.scm:2193 #, scheme-format msgid "guix: missing command name~%" msgstr "" -#: guix/ui.scm:2198 +#: guix/ui.scm:2201 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "" @@ -6395,22 +6535,22 @@ msgstr "" msgid "unsupported manifest format" msgstr "" -#: guix/profiles.scm:2242 +#: guix/profiles.scm:2247 #, scheme-format msgid "while creating directory `~a': ~a" msgstr "" -#: guix/profiles.scm:2247 +#: guix/profiles.scm:2252 #, scheme-format msgid "Please create the @file{~a} directory, with you as the owner." msgstr "" -#: guix/profiles.scm:2256 +#: guix/profiles.scm:2261 #, scheme-format msgid "directory `~a' is not owned by you" msgstr "" -#: guix/profiles.scm:2260 +#: guix/profiles.scm:2265 #, scheme-format msgid "Please change the owner of @file{~a} to user ~s." msgstr "" @@ -7011,11 +7151,16 @@ msgstr "" msgid "'--profile' cannot be used with package options~%" msgstr "" -#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:275 +#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:261 #, scheme-format msgid "no packages specified; creating an empty environment~%" msgstr "" +#: guix/scripts/environment.scm:979 +#, scheme-format +msgid "'--check' is unnecessary when using '--container'; doing nothing~%" +msgstr "" + #: guix/scripts/home/import.scm:179 msgid "" ";; This \"home-environment\" file can be passed to 'guix home reconfigure'\n" @@ -7025,89 +7170,89 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/home.scm:65 +#: guix/scripts/home.scm:66 msgid "" "Usage: guix home [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the home environment declared in FILE according to ACTION.\n" "Some ACTIONS support additional ARGS.\n" msgstr "" -#: guix/scripts/home.scm:71 +#: guix/scripts/home.scm:72 msgid " search search for existing service types\n" msgstr "" -#: guix/scripts/home.scm:73 +#: guix/scripts/home.scm:74 msgid " reconfigure switch to a new home environment configuration\n" msgstr "" -#: guix/scripts/home.scm:75 +#: guix/scripts/home.scm:76 msgid " roll-back switch to the previous home environment configuration\n" msgstr "" -#: guix/scripts/home.scm:77 +#: guix/scripts/home.scm:78 msgid " describe describe the current home environment\n" msgstr "" -#: guix/scripts/home.scm:79 +#: guix/scripts/home.scm:80 msgid " list-generations list the home environment generations\n" msgstr "" -#: guix/scripts/home.scm:81 +#: guix/scripts/home.scm:82 msgid " switch-generation switch to an existing home environment configuration\n" msgstr "" -#: guix/scripts/home.scm:83 +#: guix/scripts/home.scm:84 msgid " delete-generations delete old home environment generations\n" msgstr "" -#: guix/scripts/home.scm:85 +#: guix/scripts/home.scm:86 msgid " build build the home environment without installing anything\n" msgstr "" -#: guix/scripts/home.scm:87 +#: guix/scripts/home.scm:88 msgid " import generates a home environment definition from dotfiles\n" msgstr "" -#: guix/scripts/home.scm:91 +#: guix/scripts/home.scm:92 msgid "" "\n" " -e, --expression=EXPR consider the home-environment EXPR evaluates to\n" " instead of reading FILE, when applicable" msgstr "" -#: guix/scripts/home.scm:196 +#: guix/scripts/home.scm:210 #, scheme-format msgid "'~a' does not return a home environment ~%" msgstr "" -#: guix/scripts/home.scm:280 +#: guix/scripts/home.scm:293 #, scheme-format msgid "'~a' populated with all the Home configuration files~%" msgstr "" -#: guix/scripts/home.scm:282 +#: guix/scripts/home.scm:295 #, scheme-format msgid "" "Run @command{guix home reconfigure ~a/home-configuration.scm} to effectively\n" "deploy the home environment described by these files.\n" msgstr "" -#: guix/scripts/home.scm:289 +#: guix/scripts/home.scm:302 #, scheme-format msgid "no home environment generation, nothing to describe~%" msgstr "" -#: guix/scripts/home.scm:358 +#: guix/scripts/home.scm:371 #, scheme-format msgid "guix home: missing command name~%" msgstr "" -#: guix/scripts/home.scm:360 +#: guix/scripts/home.scm:373 #, scheme-format msgid "Try 'guix home --help' for more information.~%" msgstr "" -#: guix/scripts/home.scm:528 +#: guix/scripts/home.scm:541 #, scheme-format msgid "cannot switch to home environment generation '~a'~%" msgstr "" @@ -7144,7 +7289,7 @@ msgstr "" #: guix/scripts/import/cpan.scm:83 guix/scripts/import/crate.scm:97 #: guix/scripts/import/egg.scm:100 guix/scripts/import/gem.scm:98 -#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:100 +#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:101 #, scheme-format msgid "failed to download meta-data for package '~a'~%" msgstr "" @@ -7219,7 +7364,7 @@ msgid "" " --pin-versions use the exact versions of a module's dependencies" msgstr "" -#: guix/scripts/import/go.scm:117 +#: guix/scripts/import/go.scm:118 #, scheme-format msgid "failed to download meta-data for module '~a'.~%" msgstr "" @@ -7336,6 +7481,11 @@ msgid "" "Import and convert the Texlive package for PACKAGE-NAME.\n" msgstr "" +#: guix/scripts/import/texlive.scm:84 +#, scheme-format +msgid "failed to import package '~a'~%" +msgstr "" + #: guix/scripts/offload.scm:130 #, scheme-format msgid "The 'system' field is deprecated, please use 'systems' instead.~%" @@ -7772,53 +7922,53 @@ msgstr "" msgid "~a: unknown type of REPL~%" msgstr "" -#: guix/scripts/shell.scm:46 +#: guix/scripts/shell.scm:48 msgid "" "Usage: guix shell [OPTION] PACKAGES... [-- COMMAND...]\n" "Build an environment that includes PACKAGES and execute COMMAND or an\n" "interactive shell in that environment.\n" msgstr "" -#: guix/scripts/shell.scm:52 +#: guix/scripts/shell.scm:54 msgid "" "\n" " -D, --development include the development inputs of the next package" msgstr "" -#: guix/scripts/shell.scm:54 +#: guix/scripts/shell.scm:56 msgid "" "\n" " -f, --file=FILE add to the environment the package FILE evaluates to" msgstr "" -#: guix/scripts/shell.scm:56 +#: guix/scripts/shell.scm:58 msgid "" "\n" " -q inhibit loading of 'guix.scm' and 'manifest.scm'" msgstr "" -#: guix/scripts/shell.scm:58 +#: guix/scripts/shell.scm:60 msgid "" "\n" " --rebuild-cache rebuild cached environment, if any" msgstr "" -#: guix/scripts/shell.scm:199 +#: guix/scripts/shell.scm:201 #, scheme-format msgid "ignoring invalid file name: '~a'~%" msgstr "" -#: guix/scripts/shell.scm:280 +#: guix/scripts/shell.scm:266 #, scheme-format msgid "loading environment from '~a'...~%" msgstr "" -#: guix/scripts/shell.scm:286 +#: guix/scripts/shell.scm:272 #, scheme-format msgid "not loading '~a' because not authorized to do so~%" msgstr "" -#: guix/scripts/shell.scm:288 +#: guix/scripts/shell.scm:274 #, scheme-format msgid "" "To allow automatic loading of\n" @@ -7830,60 +7980,76 @@ msgid "" "@end example\n" msgstr "" -#: guix/scripts/shell.scm:386 +#: guix/scripts/shell.scm:431 msgid "" "Consider passing the @option{--check} option once\n" "to make sure your shell does not clobber environment variables." msgstr "" -#: guix/scripts/style.scm:241 +#: guix/scripts/style.scm:499 #, scheme-format msgid "~a: complex expression, bailing out~%" msgstr "" -#: guix/scripts/style.scm:259 +#: guix/scripts/style.scm:517 #, scheme-format msgid "~a: input label '~a' does not match package name, bailing out~%" msgstr "" -#: guix/scripts/style.scm:264 +#: guix/scripts/style.scm:522 #, scheme-format msgid "~a: non-trivial input, bailing out~%" msgstr "" -#: guix/scripts/style.scm:288 +#: guix/scripts/style.scm:546 #, scheme-format msgid "~a: input expression is too short~%" msgstr "" -#: guix/scripts/style.scm:380 +#: guix/scripts/style.scm:638 #, scheme-format msgid "~a: unsupported input style, bailing out~%" msgstr "" -#: guix/scripts/style.scm:392 +#: guix/scripts/style.scm:650 #, scheme-format msgid "would be edited~%" msgstr "" -#: guix/scripts/style.scm:482 +#: guix/scripts/style.scm:721 +#, scheme-format +msgid "no definition location for package ~a~%" +msgstr "" + +#: guix/scripts/style.scm:767 +#, scheme-format +msgid "~a: unknown styling~%" +msgstr "" + +#: guix/scripts/style.scm:774 #, scheme-format msgid "~a: invalid input simplification policy~%" msgstr "" -#: guix/scripts/style.scm:496 +#: guix/scripts/style.scm:788 msgid "" "Usage: guix style [OPTION]... [PACKAGE]...\n" "Update package definitions to the latest style.\n" msgstr "" -#: guix/scripts/style.scm:498 +#: guix/scripts/style.scm:790 +msgid "" +"\n" +" -S, --styling=RULE apply RULE, a styling rule" +msgstr "" + +#: guix/scripts/style.scm:793 msgid "" "\n" " -n, --dry-run display files that would be edited but do nothing" msgstr "" -#: guix/scripts/style.scm:504 +#: guix/scripts/style.scm:799 msgid "" "\n" " --input-simplification=POLICY\n" diff --git a/po/guix/sk.po b/po/guix/sk.po index d2d07d5399..fef7806382 100644 --- a/po/guix/sk.po +++ b/po/guix/sk.po @@ -1,14 +1,14 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) 2021 the authors of Guix (msgids) and the following authors (msgstr) # This file is distributed under the same license as the GNU guix package. -# Marek Felšöci , 2021. +# Marek Felšöci , 2021, 2022. #: guix/diagnostics.scm:157 msgid "" msgstr "" "Project-Id-Version: GNU guix\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" -"PO-Revision-Date: 2021-12-13 01:16+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" +"PO-Revision-Date: 2022-01-19 22:16+0000\n" "Last-Translator: Marek Felšöci \n" "Language-Team: Slovak \n" "Language: sk\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 4.9.1\n" +"X-Generator: Weblate 4.10.1\n" #: gnu.scm:81 #, scheme-format @@ -58,37 +58,37 @@ msgstr "" msgid "Try adding @code{(use-service-modules ~a)}." msgstr "Skúste pridať @code{(use-service-modules ~a)}." -#: gnu/packages.scm:96 +#: gnu/packages.scm:97 #, scheme-format msgid "~a: patch not found" msgstr "~a: záplata sa nenašla" -#: gnu/packages.scm:480 gnu/packages.scm:521 +#: gnu/packages.scm:481 gnu/packages.scm:522 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "nejednoznačné určenie balíka „~a“~%" -#: gnu/packages.scm:481 gnu/packages.scm:522 +#: gnu/packages.scm:482 gnu/packages.scm:523 #, scheme-format msgid "choosing ~a@~a from ~a~%" msgstr "vyberá sa ~a@~a z ~a~%" -#: gnu/packages.scm:486 guix/scripts/package.scm:216 +#: gnu/packages.scm:487 guix/scripts/package.scm:218 #, scheme-format msgid "package '~a' has been superseded by '~a'~%" msgstr "balík „~a“ bol nahradený balíkom „~a“~%" -#: gnu/packages.scm:493 gnu/packages.scm:510 +#: gnu/packages.scm:494 gnu/packages.scm:511 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A: balík sa nenašiel vo verzii ~a~%" -#: gnu/packages.scm:494 gnu/packages.scm:511 +#: gnu/packages.scm:495 gnu/packages.scm:512 #, scheme-format msgid "~A: unknown package~%" msgstr "~A: neznámy balík~%" -#: gnu/packages.scm:550 +#: gnu/packages.scm:551 #, scheme-format msgid "package `~a' lacks output `~a'~%" msgstr "balík „~a“ postráda výstup „~a“~%" @@ -315,22 +315,17 @@ msgstr "" "bežať aj niekoľko sekúnd po odoslaní signálu @code{SIGTERM} sa\n" "ukončia signálom @code{SIGKILL}." -#: gnu/home/services.scm:127 -#, fuzzy -#| msgid "" -#| "Build the operating system top-level directory, which in\n" -#| "turn refers to everything the operating system needs: its kernel, initrd,\n" -#| "system profile, boot script, and so on." +#: gnu/home/services.scm:128 msgid "" "Build the home environment top-level directory,\n" "which in turn refers to everything the home environment needs: its\n" "packages, configuration files, activation script, and so on." msgstr "" -"Zostaviť koreňový priečinok operačného systému, ktorý\n" -"odkazuje na všetko čo operačný systém potrebuje: jadro, initrd,\n" -"systémový profil, zavádzací skript a podobne." +"Zostaviť koreňový priečinok domovského prostredia, ktorý\n" +"odkazuje na všetko čo domovské prostredie potrebuje: jeho\n" +"balíky, súbory nastavení, spúšťací skript atď." -#: gnu/home/services.scm:158 +#: gnu/home/services.scm:159 #, scheme-format msgid "" "This is the @dfn{home profile} and can be found in\n" @@ -338,48 +333,57 @@ msgid "" "configuration files that the user has declared in their\n" "@code{home-environment} record." msgstr "" +"Toto je @dfn{domovský profil}. Nachádza sa v\n" +"@file{~/.guix-home/profile}. Obsahuje balíky a\n" +"súbory nastavení, ktoré používateľ zadal do svojho\n" +"záznamu @code{home-environment}." -#: gnu/home/services.scm:180 +#: gnu/home/services.scm:181 #, scheme-format msgid "duplicate definition for `~a' environment variable ~%" -msgstr "" +msgstr "viacnásobné zadanie premennej prostredia „~a“ ~%" -#: gnu/home/services.scm:242 -#, fuzzy -#| msgid "checking the environment variables visible from shell '~a'...~%" +#: gnu/home/services.scm:243 msgid "Set the environment variables." -msgstr "overovanie premenných prostredia viditeľných v shelli „~a“...~%" +msgstr "Nastaviť premenné prostredia." -#: gnu/home/services.scm:253 -#, fuzzy, scheme-format -#| msgid "duplicate '~a' entry for /etc" +#: gnu/home/services.scm:254 +#, scheme-format msgid "duplicate '~a' entry for files/" -msgstr "/etc už obsahuje záznam „~a“" +msgstr "viacnásobný záznam „~a“ vo files/" -#: gnu/home/services.scm:277 +#: gnu/home/services.scm:278 #, scheme-format msgid "" "Configuration files for programs that\n" "will be put in @file{~/.guix-home/files}." msgstr "" +"Súbory nastavení programov, ktoré budú\n" +"umiestnené do @file{~/.guix-home/files}." #. TRANSLATORS: 'on-first-login' is the name of a service and #. shouldn't be translated -#: gnu/home/services.scm:308 +#: gnu/home/services.scm:309 msgid "" "XDG_RUNTIME_DIR doesn't exists, on-first-login script\n" "won't execute anything. You can check if xdg runtime directory exists,\n" "XDG_RUNTIME_DIR variable is set to appropriate value and manually execute the\n" "script by running '$HOME/.guix-home/on-first-login'" msgstr "" +"XDG_RUNTIME_DIR nejestvuje, skript on-first-login\n" +"nevykoná nič. Overte, či je prítomný priečinok behového prostredia xdg,\n" +"či je premenná XDG_RUNTIME_DIR nastavená na správnu hodnotu a spustite\n" +"skript ručne pomocou „$HOME/.guix-home/on-first-login“" -#: gnu/home/services.scm:328 +#: gnu/home/services.scm:329 msgid "" "Run gexps on first user login. Can be\n" "extended with one gexp." msgstr "" +"Spustiť gvýrazy pri prvom prihlásení používateľa.\n" +"Môže byť rozšírené o jeden gvýraz." -#: gnu/home/services.scm:391 +#: gnu/home/services.scm:392 msgid "" "Run gexps to activate the current\n" "generation of home environment and update the state of the home\n" @@ -387,61 +391,70 @@ msgid "" "reconfiguration or generation switching. This service can be extended\n" "with one gexp, but many times, and all gexps must be idempotent." msgstr "" +"Vykonať gvýrazy pre spustenie súčasného pokolenia\n" +"domovského prostredia a aktualizovať stav domovského priečinka.\n" +"Skript @command{activate} sa spustí automaticky pri nastavovaní\n" +"alebo prepínaní medzi pokoleniami. Táto služba môže byť rozšírená\n" +"jedným gvýrazom (aj viacnásobne), ale všetky gvýrazy musia byť idempotentné." -#: gnu/home/services.scm:472 +#: gnu/home/services.scm:473 #, scheme-format msgid "" "Comparing ~a and\n" "~10t~a..." msgstr "" +"Porovnáva sa ~a a\n" +"~10t~a..." -#: gnu/home/services.scm:474 +#: gnu/home/services.scm:475 #, scheme-format msgid " done (~a)\n" -msgstr "" +msgstr " dokončené (~a)\n" #. TRANSLATORS: 'on-change' is the name of a service type, it #. probably shouldn't be translated. -#: gnu/home/services.scm:483 +#: gnu/home/services.scm:484 msgid "" "Evaluating on-change gexps.\n" "\n" msgstr "" +"Vyhodnocujú sa on-change gvýrazy.\n" +"\n" -#: gnu/home/services.scm:485 +#: gnu/home/services.scm:486 msgid "" "On-change gexps evaluation finished.\n" "\n" msgstr "" +"Vyhodnocovanie on-change gvýrazov dokončené.\n" +"\n" -#: gnu/home/services.scm:499 +#: gnu/home/services.scm:500 msgid "" "G-expressions to run if the specified files have changed since the\n" "last generation. The extension should be a list of lists where the\n" "first element is the pattern for file or directory that expected to be\n" "changed, and the second element is the G-expression to be evaluated." msgstr "" +"G-výrazy, ktoré sa majú vykonať v prípade, že sa určité súbory od posledného\n" +"pokolenia zmenili. Rozšírenie by malo mať tvar zoznamu zoznamov, kde prvá\n" +"položka je vzor názvu súboru alebo priečinka, ktorého zmena sa očakáva, a druhá\n" +"položka je G-výraz, ktorý sa má vykonať." -#: gnu/home/services.scm:519 -#, fuzzy -#| msgid "" -#| "Store provenance information about the system in the system\n" -#| "itself: the channels used when building the system, and its configuration\n" -#| "file, when available." +#: gnu/home/services.scm:520 msgid "" "Store provenance information about the home environment in the home\n" "environment itself: the channels used when building the home\n" "environment, and its configuration file, when available." msgstr "" -"Uložiť údaje o pôvode systému v systéme\n" -"samotnom: kanály použité pri zostavení systému a súbor nastavení,\n" -"ak je dostupný." +"Uložiť údaje o pôvode domovského prostredia v domovskom prostredí\n" +"samotnom: kanály použité pri zostavení domovského prostredia a jeho\n" +"súbor nastavení, ak je dostupný." #: gnu/home/services/symlink-manager.scm:144 -#, fuzzy, scheme-format -#| msgid "copying to '~a'..." +#, scheme-format msgid "Backing up ~a..." -msgstr "kopírujem do „~a“..." +msgstr "Zálohuje sa ~a..." #: gnu/home/services/symlink-manager.scm:147 #: gnu/home/services/symlink-manager.scm:169 @@ -449,40 +462,43 @@ msgstr "kopírujem do „~a“..." #: gnu/home/services/symlink-manager.scm:215 #: gnu/home/services/symlink-manager.scm:223 msgid " done\n" -msgstr "" +msgstr " dokončené\n" #: gnu/home/services/symlink-manager.scm:154 msgid "" "Cleaning up symlinks from previous home-environment.\n" "\n" msgstr "" +"Čistia sa symbolické odkazy z predchádzajúceho domovského prostredia.\n" +"\n" #: gnu/home/services/symlink-manager.scm:158 msgid "" "Cleanup finished.\n" "\n" msgstr "" +"Čistenie dokončené.\n" +"\n" #: gnu/home/services/symlink-manager.scm:166 #: gnu/home/services/symlink-manager.scm:182 -#, fuzzy, scheme-format -#| msgid "deploying to ~a...~%" +#, scheme-format msgid "Removing ~a..." -msgstr "nasadzuje sa na ~a...~%" +msgstr "Odstraňuje sa ~a..." #: gnu/home/services/symlink-manager.scm:172 #, scheme-format msgid "Skipping ~a (not an empty directory)... done\n" -msgstr "" +msgstr "Preskakuje sa ~a (nie je prázdny priečinok)… dokončené\n" #: gnu/home/services/symlink-manager.scm:187 #, scheme-format msgid "Skipping ~a (not a symlink to store)... done\n" -msgstr "" +msgstr "Preskakuje sa ~a (nie je symbolický odkaz na úložisko)… dokončené\n" #: gnu/home/services/symlink-manager.scm:198 msgid "New symlinks to home-environment will be created soon.\n" -msgstr "" +msgstr "Nové symbolické odkazy na domovské prostredie budú čoskoro vytvorené.\n" #: gnu/home/services/symlink-manager.scm:200 #, scheme-format @@ -490,22 +506,23 @@ msgid "" "All conflicting files will go to ~a.\n" "\n" msgstr "" +"Všetky rozporné súbory budú presunuté do ~a.\n" +"\n" #: gnu/home/services/symlink-manager.scm:210 #, scheme-format msgid "Skipping ~a (directory already exists)... done\n" -msgstr "" +msgstr "Preskakuje sa ~a (priečinok už jestvuje)… dokončené\n" #: gnu/home/services/symlink-manager.scm:213 -#, fuzzy, scheme-format -#| msgid "deploying to ~a...~%" +#, scheme-format msgid "Creating ~a..." -msgstr "nasadzuje sa na ~a...~%" +msgstr "Vytvára sa ~a..." #: gnu/home/services/symlink-manager.scm:220 #, scheme-format msgid "Symlinking ~a -> ~a..." -msgstr "" +msgstr "Vytvára sa symbolický odkaz ~a -> ~a..." #: gnu/home/services/symlink-manager.scm:234 msgid "" @@ -513,6 +530,9 @@ msgid "" "Finished updating symlinks.\n" "\n" msgstr "" +" dokončené\n" +"Aktualizácia symbolických odkazov je dokončená.\n" +"\n" #: gnu/home/services/symlink-manager.scm:248 msgid "" @@ -521,6 +541,10 @@ msgid "" "on every activation. If an existing file would be overwritten by a\n" "symlink, backs up that file first." msgstr "" +"Poskytnúť skript @code{update-symlinks}, ktorý vytvorí\n" +"symbolické odkazy na súbory a priečinky nastavení pri každom\n" +"spustení. Ak by malo dôjsť k prepísaniu jestvujúceho súboru\n" +"symbolickým odkazom, súbor sa najprv zálohuje." #: gnu/system/file-systems.scm:135 #, scheme-format @@ -704,12 +728,12 @@ msgstr "Nepodporovaný nástroj na sťahovanie MELPA: ~a, použije sa predvolen msgid "Updater for ELPA packages" msgstr "Nástroj na aktualizáciu balíkov ELPA" -#: guix/import/github.scm:170 +#: guix/import/github.scm:175 #, scheme-format msgid "~a is unreachable (~a)~%" msgstr "nepodarilo sa pripojiť k ~a (~a)~%" -#: guix/import/github.scm:260 +#: guix/import/github.scm:274 msgid "Updater for GitHub packages" msgstr "Nástroj na aktualizáciu balíkov GitHub" @@ -745,12 +769,22 @@ msgstr "nepodarilo sa nájsť GNU balík pre ~a" msgid "failed to determine latest release of GNU ~a" msgstr "nepodarilo sa zistiť najnovšie vydanie GNU ~a" -#: guix/import/go.scm:569 +#: guix/import/go.scm:571 #, scheme-format msgid "unsupported vcs type '~a' for package '~a'" msgstr "nepodporovaný druh systému pre správu verzií „~a“ pre balík „~a“" -#: guix/import/go.scm:647 +#: guix/import/go.scm:594 +#, scheme-format +msgid "version ~a of ~a is not available~%" +msgstr "verzia ~a balíka ~a nie je dostupná~%" + +#: guix/import/go.scm:597 +#, scheme-format +msgid "Pick one of the following available versions:~{ ~a~}." +msgstr "Vyberte si jednu z nasledovných dostupných verzií:~{ ~a~}." + +#: guix/import/go.scm:671 #, scheme-format msgid "" "Failed to import package ~s.\n" @@ -761,15 +795,6 @@ msgstr "" "dôvod: ~s sa nepodarilo stiahnuť: chyba HTTP ~a (~s).\n" "Tento balík a jeho závislosti sa nenačítajú.~%" -#: guix/import/go.scm:656 -#, scheme-format -msgid "" -"Failed to import package ~s.\n" -"reason: ~s.~%" -msgstr "" -"Nepodarilo sa nahrať balík ~s.\n" -"dôvod: ~s.~%" - #: guix/import/minetest.scm:178 #, scheme-format msgid "In ~a: author names must consist of at least a single character.~%" @@ -863,77 +888,99 @@ msgstr "opam: balík „~a“ sa nenašiel~%" msgid "Updater for OPAM packages" msgstr "Nástroj na aktualizáciu balíkov OPAM" -#: guix/import/pypi.scm:230 +#: guix/import/pypi.scm:233 msgid "Could not extract requirement name in spec:" msgstr "Nepodarilo sa zistiť názov požiadavky z určenia:" -#: guix/import/pypi.scm:290 +#: guix/import/pypi.scm:293 #, scheme-format msgid "parse-requires.txt reached an unexpected condition on line ~a~%" msgstr "parse-requires.txt dospel k neočakávanej chybe na riadku ~a~%" -#: guix/import/pypi.scm:356 +#: guix/import/pypi.scm:359 #, scheme-format msgid "Failed to extract file: ~a from wheel.~%" msgstr "Nepodarilo sa získať súbor: ~a z archívu wheel.~%" -#: guix/import/pypi.scm:385 +#: guix/import/pypi.scm:388 #, scheme-format msgid "Cannot guess requirements from source archive: no requires.txt file found.~%" msgstr "Nepodarilo sa uhádnuť požiadavky zo zdrojového archívu: nenašiel sa žiaden súbor requires.txt.~%" -#: guix/import/pypi.scm:390 +#: guix/import/pypi.scm:393 #, scheme-format msgid "Unsupported archive format; cannot determine package dependencies from source archive: ~a~%" msgstr "Nepodporovaný formát archívu; nie je možné zistiť závislosti balíka zo zdrojového archívu: ~a~%" -#: guix/import/pypi.scm:489 +#: guix/import/pypi.scm:434 +#, scheme-format +msgid "project name ~a does not appear verbatim in the PyPI URI~%" +msgstr "" + +#: guix/import/pypi.scm:437 +#, scheme-format +msgid "" +"The PyPI URI is: @url{~a}. You should review the\n" +"pypi-uri declaration in the generated package. You may need to replace ~s with\n" +"a substring of the PyPI URI that identifies the package." +msgstr "" + +#: guix/import/pypi.scm:505 #, scheme-format msgid "no source release for pypi package ~a ~a~%" msgstr "žiadne vydanie zdrojových súborov pre pypi balík ~a ~a~%" -#: guix/import/pypi.scm:554 +#: guix/import/pypi.scm:509 +#, scheme-format +msgid "" +"This indicates that the\n" +"package is available on PyPI, but only as a \"wheel\" containing binaries, not\n" +"source. To build it from source, refer to the upstream repository at\n" +"@uref{~a}." +msgstr "" + +#: guix/import/pypi.scm:579 msgid "Updater for PyPI packages" msgstr "Nástroj na aktualizáciu balíkov PyPI" -#: gnu/installer.scm:214 +#: gnu/installer.scm:217 msgid "Locale" msgstr "Miestne jazykové nastavenie" -#: gnu/installer.scm:230 gnu/installer/newt/timezone.scm:58 +#: gnu/installer.scm:233 gnu/installer/newt/timezone.scm:58 msgid "Timezone" msgstr "Časové pásmo" -#: gnu/installer.scm:247 +#: gnu/installer.scm:250 msgid "Keyboard mapping selection" msgstr "Výber rozloženia klávesnice" -#: gnu/installer.scm:256 gnu/installer/newt/hostname.scm:26 +#: gnu/installer.scm:259 gnu/installer/newt/hostname.scm:26 msgid "Hostname" msgstr "Názov počítača" -#: gnu/installer.scm:265 +#: gnu/installer.scm:268 msgid "Network selection" msgstr "Výber sieťového pripojenia" -#: gnu/installer.scm:272 +#: gnu/installer.scm:275 msgid "Substitute server discovery" msgstr "Zisťovanie servera náhrad" -#: gnu/installer.scm:279 gnu/installer/newt/user.scm:68 -#: gnu/installer/newt/user.scm:205 +#: gnu/installer.scm:282 gnu/installer/newt/user.scm:67 +#: gnu/installer/newt/user.scm:204 msgid "User creation" msgstr "Vytváranie používateľov" -#: gnu/installer.scm:287 +#: gnu/installer.scm:290 msgid "Services" msgstr "Služby" -#: gnu/installer.scm:298 +#: gnu/installer.scm:301 msgid "Partitioning" msgstr "Rozdelenie disku" -#: gnu/installer.scm:305 gnu/installer/newt/final.scm:53 +#: gnu/installer.scm:308 gnu/installer/newt/final.scm:53 msgid "Configuration file" msgstr "Súbor nastavení" @@ -945,19 +992,85 @@ msgstr "Nepodarilo sa zistiť stav connmana." msgid "Unable to find expected regexp." msgstr "Nepodarilo sa nájsť očakávaný regulárny výraz." -#: gnu/installer/newt.scm:52 +#: gnu/installer/newt.scm:58 msgid "Press for installation parameters." msgstr "Stlačením zobrazíte predvoľby inštalácie." -#: gnu/installer/newt.scm:65 -#, scheme-format -msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +#: gnu/installer/newt.scm:68 +#, fuzzy +#| msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. You may choose to exit or create a dump archive." msgstr "Sprievodca inštaláciou narazil na neočakávanú chybu. Výpis zásobníka volaní je zobrazený nižšie. Prosím, nahláste túto chybu na adresu <~a>." -#: gnu/installer/newt.scm:68 +#: gnu/installer/newt.scm:71 msgid "Unexpected problem" msgstr "Neočakávaná chyba" +#: gnu/installer/newt.scm:75 +msgid "Dump" +msgstr "" + +#: gnu/installer/newt.scm:76 gnu/installer/newt/ethernet.scm:79 +#: gnu/installer/newt/keymap.scm:56 gnu/installer/newt/locale.scm:43 +#: gnu/installer/newt/network.scm:65 gnu/installer/newt/network.scm:82 +#: gnu/installer/newt/page.scm:315 gnu/installer/newt/page.scm:679 +#: gnu/installer/newt/page.scm:763 gnu/installer/newt/page.scm:828 +#: gnu/installer/newt/partition.scm:54 gnu/installer/newt/partition.scm:90 +#: gnu/installer/newt/partition.scm:125 gnu/installer/newt/partition.scm:140 +#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 +#: gnu/installer/newt/partition.scm:706 gnu/installer/newt/partition.scm:764 +#: gnu/installer/newt/partition.scm:775 gnu/installer/newt/services.scm:124 +#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/wifi.scm:206 +msgid "Exit" +msgstr "Ukončiť" + +#: gnu/installer/newt.scm:82 +#, scheme-format +msgid "The dump archive was created as ~a. Would you like to send this archive to the Guix servers?" +msgstr "" + +#: gnu/installer/newt.scm:84 +msgid "Dump archive created" +msgstr "" + +#: gnu/installer/newt.scm:88 +#, scheme-format +msgid "The dump was uploaded as ~a. Please report it by email to ~a." +msgstr "" + +#: gnu/installer/newt.scm:90 +#, fuzzy +#| msgid "some services could not be upgraded~%" +msgid "The dump could not be uploaded." +msgstr "niektoré služby sa nepodarilo aktualizovať~%" + +#: gnu/installer/newt.scm:93 +msgid "Dump upload result" +msgstr "" + +#: gnu/installer/newt.scm:132 +#, fuzzy, scheme-format +#| msgid "Command failed with exit code ~a.~%" +msgid "External command ~s exited with code ~a" +msgstr "Príkaz zlyhal s návratovou hodnotou ~a.~%" + +#: gnu/installer/newt.scm:135 +#, scheme-format +msgid "External command ~s terminated by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:138 +#, scheme-format +msgid "External command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:140 +#, fuzzy +#| msgid "internal commands" +msgid "External command error" +msgstr "vnútorné príkazy" + #: gnu/installer/newt/ethernet.scm:66 msgid "No ethernet service available, please try again." msgstr "Nie je dostupná žiadna drôtová sieť, skúste to znova." @@ -966,59 +1079,45 @@ msgstr "Nie je dostupná žiadna drôtová sieť, skúste to znova." msgid "No service" msgstr "Žiadna služba" -#: gnu/installer/newt/ethernet.scm:76 +#: gnu/installer/newt/ethernet.scm:74 msgid "Please select an ethernet network." msgstr "Vyberte drôtové sieťové pripojenie." -#: gnu/installer/newt/ethernet.scm:77 +#: gnu/installer/newt/ethernet.scm:75 msgid "Ethernet connection" msgstr "Drôtové sieťové pripojenie" -#: gnu/installer/newt/ethernet.scm:81 gnu/installer/newt/keymap.scm:56 -#: gnu/installer/newt/locale.scm:43 gnu/installer/newt/network.scm:63 -#: gnu/installer/newt/network.scm:84 gnu/installer/newt/page.scm:309 -#: gnu/installer/newt/page.scm:673 gnu/installer/newt/page.scm:758 -#: gnu/installer/newt/partition.scm:56 gnu/installer/newt/partition.scm:91 -#: gnu/installer/newt/partition.scm:126 gnu/installer/newt/partition.scm:141 -#: gnu/installer/newt/partition.scm:638 gnu/installer/newt/partition.scm:661 -#: gnu/installer/newt/partition.scm:707 gnu/installer/newt/partition.scm:765 -#: gnu/installer/newt/partition.scm:776 gnu/installer/newt/services.scm:130 -#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:204 -#: gnu/installer/newt/wifi.scm:206 -msgid "Exit" -msgstr "Ukončiť" - #: gnu/installer/newt/final.scm:46 #, scheme-format msgid "We're now ready to proceed with the installation! A system configuration file has been generated, it is displayed below. This file will be available as '~a' on the installed system. The new system will be created from this file once you've pressed OK. This will take a few minutes." msgstr "Sme pripravení na inštaláciu! Bol vytvorený súbor nastavení systému zobrazený nižšie. Tento súbor bude po dokončení inštalácie dostupný v „~a“. Zostavovanie nového systému z tohto súboru nastavení sa spustí po stlačení tlačidla Dobre. Bude to trvať niekoľko minút." -#: gnu/installer/newt/final.scm:70 +#: gnu/installer/newt/final.scm:68 msgid "Installation complete" msgstr "Inštalácia dokončená" -#: gnu/installer/newt/final.scm:71 gnu/installer/newt/parameters.scm:45 +#: gnu/installer/newt/final.scm:69 gnu/installer/newt/parameters.scm:45 #: gnu/installer/newt/welcome.scm:145 msgid "Reboot" msgstr "Reštartovať" -#: gnu/installer/newt/final.scm:72 +#: gnu/installer/newt/final.scm:70 msgid "Congratulations! Installation is now complete. You may remove the device containing the installation image and press the button to reboot." msgstr "Blahoželáme! Inštalácia je dokončená. Môžete odobrať zariadenie s inštalačným obrazom a reštartovať počítač." -#: gnu/installer/newt/final.scm:86 +#: gnu/installer/newt/final.scm:84 msgid "Installation failed" msgstr "Inštalácia zlyhala" -#: gnu/installer/newt/final.scm:87 +#: gnu/installer/newt/final.scm:85 msgid "Resume" msgstr "Pokračovať" -#: gnu/installer/newt/final.scm:88 +#: gnu/installer/newt/final.scm:86 msgid "Restart the installer" msgstr "Reštartovať sprievodcu inštaláciou" -#: gnu/installer/newt/final.scm:89 +#: gnu/installer/newt/final.scm:87 msgid "The final system installation step failed. You can resume from a specific step, or restart the installer." msgstr "Záverečný inštalačný krok zlyhal. Môžete pokračovať v inštalácii od vybraného kroku alebo spustiť sprievodcu inštaláciou odznova." @@ -1046,9 +1145,9 @@ msgstr "Zvoľte jednu z nasledujúcich možností alebo stlačte „Naspäť“ msgid "Installation parameters" msgstr "Možnosti inštalácie" -#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:74 -#: gnu/installer/newt/locale.scm:63 gnu/installer/newt/locale.scm:78 -#: gnu/installer/newt/locale.scm:94 gnu/installer/newt/partition.scm:595 +#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:72 +#: gnu/installer/newt/locale.scm:61 gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:88 gnu/installer/newt/partition.scm:594 #: gnu/installer/newt/timezone.scm:64 msgid "Back" msgstr "Naspäť" @@ -1069,16 +1168,16 @@ msgstr "Vyberte rozloženie klávesnice, ktoré sa má použiť počas inštalá msgid "Please choose your keyboard layout. It will be used during the install process, and for the installed system. Non-Latin layouts can be toggled with Alt+Shift. You can switch to a different layout at any time from the parameters menu." msgstr "Vyberte rozloženie klávesnice, ktoré sa má použiť počas inštalácie ako aj pre novo-nainštalovaný systém. Nelatinské rozloženia sú dostupné prostredníctvom klávesovej skratky Alt+Shift. Rozloženie klávesnice môžete kedykoľvek prepnúť v ponuke možností inštalácie." -#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:62 -#: gnu/installer/newt/page.scm:308 +#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/page.scm:314 msgid "Continue" msgstr "Pokračovať" -#: gnu/installer/newt/keymap.scm:67 +#: gnu/installer/newt/keymap.scm:65 msgid "Variant" msgstr "Klávesnica" -#: gnu/installer/newt/keymap.scm:70 +#: gnu/installer/newt/keymap.scm:68 msgid "Please choose a variant for your keyboard layout." msgstr "Vyberte klávesnicu, ktorú chcete použiť." @@ -1090,35 +1189,35 @@ msgstr "Nastavenie jazyka" msgid "Choose the language to use for the installation process and for the installed system." msgstr "Vyberte jazyk používateľského rozhrania, ktorý sa má použiť počas inštalácie a na novo-nainštalovanom systéme." -#: gnu/installer/newt/locale.scm:57 +#: gnu/installer/newt/locale.scm:55 msgid "Locale location" msgstr "Krajina alebo územie" -#: gnu/installer/newt/locale.scm:60 +#: gnu/installer/newt/locale.scm:58 msgid "Choose a territory for this language." msgstr "Vyberte vaše súčasné umiestnenie." -#: gnu/installer/newt/locale.scm:71 +#: gnu/installer/newt/locale.scm:67 msgid "Locale codeset" msgstr "Kódovanie znakov" -#: gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:70 msgid "Choose the locale encoding." msgstr "Vyberte kódovanie znakov." -#: gnu/installer/newt/locale.scm:86 +#: gnu/installer/newt/locale.scm:80 msgid "Locale modifier" msgstr "Symbol meny" -#: gnu/installer/newt/locale.scm:89 +#: gnu/installer/newt/locale.scm:83 msgid "Choose your locale's modifier. The most frequent modifier is euro. It indicates that you want to use Euro as the currency symbol." msgstr "Vyberte symbol meny. Najčastejšie používaným symbolom je Euro." -#: gnu/installer/newt/locale.scm:190 +#: gnu/installer/newt/locale.scm:181 msgid "No location" msgstr "Žiadne umiestnenie" -#: gnu/installer/newt/locale.scm:217 +#: gnu/installer/newt/locale.scm:208 msgid "No modifier" msgstr "Žiadny symbol meny" @@ -1134,277 +1233,281 @@ msgstr "Ponuka inštalácie" msgid "Abort" msgstr "Prerušiť" -#: gnu/installer/newt/network.scm:61 gnu/installer/newt/network.scm:80 +#: gnu/installer/newt/network.scm:63 gnu/installer/newt/network.scm:78 msgid "Internet access" msgstr "Prístup na internet" -#: gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/network.scm:66 msgid "The install process requires Internet access but no network devices were found. Do you want to continue anyway?" msgstr "Sprievodca inštaláciou vyžaduje prístup na internet, no žiadne sieťové zariadenie sa nenašlo. Chcete napriek tomu pokračovať v inštalácii?" -#: gnu/installer/newt/network.scm:78 +#: gnu/installer/newt/network.scm:76 msgid "The install process requires Internet access. Please select a network device." msgstr "Sprievodca inštaláciou vyžaduje prístup na internet. Vyberte sieťové zariadenie, ktoré sa má použiť." -#: gnu/installer/newt/network.scm:103 +#: gnu/installer/newt/network.scm:99 msgid "Powering technology" msgstr "Spôsob napájania" -#: gnu/installer/newt/network.scm:104 +#: gnu/installer/newt/network.scm:100 #, scheme-format msgid "Waiting for technology ~a to be powered." msgstr "Čaká sa na napájanie prostredníctvom ~a." -#: gnu/installer/newt/network.scm:128 +#: gnu/installer/newt/network.scm:139 msgid "Checking connectivity" msgstr "Overuje sa spojenie" -#: gnu/installer/newt/network.scm:129 +#: gnu/installer/newt/network.scm:140 msgid "Waiting for Internet access establishment..." msgstr "Čaká sa na zahájenie internetového spojenia…" -#: gnu/installer/newt/network.scm:139 -msgid "The selected network does not provide access to the Internet, please try again." -msgstr "Zvolená sieť neposkytuje prístup na internet. Skúste to znova." +#: gnu/installer/newt/network.scm:150 +msgid "The selected network does not provide access to the Internet and the Guix substitute server, please try again." +msgstr "Zvolená sieť neposkytuje prístup na internet ani na server náhrad Guix. Skúste to znova." -#: gnu/installer/newt/network.scm:141 gnu/installer/newt/wifi.scm:108 +#: gnu/installer/newt/network.scm:152 gnu/installer/newt/wifi.scm:108 msgid "Connection error" msgstr "Chyba pripojenia" -#: gnu/installer/newt/page.scm:198 +#: gnu/installer/newt/page.scm:204 #, scheme-format msgid "Connecting to ~a, please wait." msgstr "Pripájanie k ~a. Prosím, čakajte." -#: gnu/installer/newt/page.scm:199 +#: gnu/installer/newt/page.scm:205 msgid "Connection in progress" msgstr "Prebieha pripájanie" -#: gnu/installer/newt/page.scm:218 gnu/installer/newt/user.scm:60 +#: gnu/installer/newt/page.scm:224 gnu/installer/newt/user.scm:59 msgid "Show" msgstr "Zobraziť" -#: gnu/installer/newt/page.scm:225 gnu/installer/newt/page.scm:672 -#: gnu/installer/newt/page.scm:757 gnu/installer/newt/partition.scm:458 -#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 -#: gnu/installer/newt/partition.scm:699 gnu/installer/newt/user.scm:66 -#: gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/page.scm:231 gnu/installer/newt/page.scm:678 +#: gnu/installer/newt/page.scm:762 gnu/installer/newt/partition.scm:457 +#: gnu/installer/newt/partition.scm:636 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:698 gnu/installer/newt/user.scm:65 +#: gnu/installer/newt/user.scm:202 msgid "OK" msgstr "Dobre" -#: gnu/installer/newt/page.scm:251 +#: gnu/installer/newt/page.scm:257 msgid "Please enter a non empty input." msgstr "Zadajte hodnotu." -#: gnu/installer/newt/page.scm:252 gnu/installer/newt/user.scm:123 +#: gnu/installer/newt/page.scm:258 gnu/installer/newt/user.scm:122 msgid "Empty input" msgstr "Prázdna hodnota" -#: gnu/installer/newt/page.scm:760 +#: gnu/installer/newt/page.scm:765 msgid "Edit" msgstr "Upraviť" -#: gnu/installer/newt/partition.scm:47 +#: gnu/installer/newt/page.scm:825 +msgid "Ok" +msgstr "" + +#: gnu/installer/newt/partition.scm:45 msgid "Everything is one partition" msgstr "Všetko na jeden oddiel" -#: gnu/installer/newt/partition.scm:48 +#: gnu/installer/newt/partition.scm:46 msgid "Separate /home partition" msgstr "Samostatný oddiel /home" -#: gnu/installer/newt/partition.scm:50 +#: gnu/installer/newt/partition.scm:48 msgid "Please select a partitioning scheme." msgstr "Vyberte spôsob rozdelenia disku." -#: gnu/installer/newt/partition.scm:51 +#: gnu/installer/newt/partition.scm:49 msgid "Partition scheme" msgstr "Spôsob rozdelenia disku" #. TRANSLATORS: The ~{ and ~} format specifiers are used to iterate the list #. of device names of the user partitions that will be formatted. -#: gnu/installer/newt/partition.scm:65 +#: gnu/installer/newt/partition.scm:63 #, scheme-format msgid "We are about to write the configured partition table to the disk and format the partitions listed below. Their data will be lost. Do you wish to continue?~%~%~{ - ~a~%~}" msgstr "Na disk sa zapíše nová tabuľka oddielov a naformátujú sa nižšie uvedené oddiely. Všetky údaje na týchto oddieloch sa stratia. Chcete pokračovať?~%~%~{ - ~a~%~}" -#: gnu/installer/newt/partition.scm:71 +#: gnu/installer/newt/partition.scm:69 msgid "Format disk?" msgstr "Formátovať disk?" -#: gnu/installer/newt/partition.scm:74 +#: gnu/installer/newt/partition.scm:72 msgid "Partition formatting is in progress, please wait." msgstr "Prebieha formátovanie oddielov. Prosím, čakajte." -#: gnu/installer/newt/partition.scm:75 +#: gnu/installer/newt/partition.scm:73 msgid "Preparing partitions" msgstr "Pripravujú sa oddiely" -#: gnu/installer/newt/partition.scm:86 -msgid "Please select a disk." -msgstr "Vyberte disk." +#: gnu/installer/newt/partition.scm:84 +msgid "Please select a disk. The installation device as well as the small devices are filtered." +msgstr "Prosím, vyberte disk. Inštalačné zariadenie ani malé zariadenia sa nezobrazujú." -#: gnu/installer/newt/partition.scm:87 +#: gnu/installer/newt/partition.scm:86 msgid "Disk" msgstr "Disková jednotka" -#: gnu/installer/newt/partition.scm:102 +#: gnu/installer/newt/partition.scm:101 msgid "Select a new partition table type. Be careful, all data on the disk will be lost." msgstr "Vyberte druh novej tabuľky oddielov. Buďte opatrní, všetky údaje na disku sa stratia." -#: gnu/installer/newt/partition.scm:104 +#: gnu/installer/newt/partition.scm:103 msgid "Partition table" msgstr "Tabuľka oddielov" -#: gnu/installer/newt/partition.scm:121 +#: gnu/installer/newt/partition.scm:120 msgid "Please select a partition type." msgstr "Vyberte druh oddielu." -#: gnu/installer/newt/partition.scm:122 +#: gnu/installer/newt/partition.scm:121 msgid "Partition type" msgstr "Druh oddielu" -#: gnu/installer/newt/partition.scm:132 +#: gnu/installer/newt/partition.scm:131 msgid "Please select the file-system type for this partition." msgstr "Vyberte druh súborového systému pre tento oddiel." -#: gnu/installer/newt/partition.scm:133 +#: gnu/installer/newt/partition.scm:132 msgid "File-system type" msgstr "Druh súborového systému" -#: gnu/installer/newt/partition.scm:150 +#: gnu/installer/newt/partition.scm:149 msgid "Primary partitions count exceeded." msgstr "Prekročili ste povolený počet hlavných oddielov." -#: gnu/installer/newt/partition.scm:151 gnu/installer/newt/partition.scm:156 -#: gnu/installer/newt/partition.scm:161 +#: gnu/installer/newt/partition.scm:150 gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:160 msgid "Creation error" msgstr "Vytváranie zlyhalo" -#: gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:154 msgid "Extended partition creation error." msgstr "Vyskytla sa chyba pri vytváraní rozšíreného oddielu." -#: gnu/installer/newt/partition.scm:160 +#: gnu/installer/newt/partition.scm:159 msgid "Logical partition creation error." msgstr "Vyskytla sa chyba pri vytváraní logického oddielu." -#: gnu/installer/newt/partition.scm:174 +#: gnu/installer/newt/partition.scm:173 #, scheme-format msgid "Please enter the password for the encryption of partition ~a (label: ~a)." msgstr "Zadajte heslo pre šifrovaný oddiel ~a (menovka: ~a)." -#: gnu/installer/newt/partition.scm:176 gnu/installer/newt/wifi.scm:92 +#: gnu/installer/newt/partition.scm:175 gnu/installer/newt/wifi.scm:92 msgid "Password required" msgstr "Vyžaduje sa heslo" -#: gnu/installer/newt/partition.scm:181 +#: gnu/installer/newt/partition.scm:180 #, scheme-format msgid "Please confirm the password for the encryption of partition ~a (label: ~a)." msgstr "Potvrďte heslo pre šifrovaný oddiel ~a (menovka: ~a)." -#: gnu/installer/newt/partition.scm:183 gnu/installer/newt/user.scm:160 +#: gnu/installer/newt/partition.scm:182 gnu/installer/newt/user.scm:159 msgid "Password confirmation required" msgstr "Vyžaduje sa potvrdenie hesla" -#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 +#: gnu/installer/newt/partition.scm:194 gnu/installer/newt/user.scm:167 msgid "Password mismatch, please try again." msgstr "Heslá sa nezhodujú. Skúste to znova." -#: gnu/installer/newt/partition.scm:196 gnu/installer/newt/user.scm:169 +#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 msgid "Password error" msgstr "Chyba hesla" -#: gnu/installer/newt/partition.scm:282 +#: gnu/installer/newt/partition.scm:281 msgid "Please enter the partition gpt name." msgstr "Zadajte gpt názov oddielu." -#: gnu/installer/newt/partition.scm:283 +#: gnu/installer/newt/partition.scm:282 msgid "Partition name" msgstr "Názov oddielu" -#: gnu/installer/newt/partition.scm:313 +#: gnu/installer/newt/partition.scm:312 msgid "Please enter the encrypted label" msgstr "Zadajte názov šifrovaného oddielu" -#: gnu/installer/newt/partition.scm:314 +#: gnu/installer/newt/partition.scm:313 msgid "Encryption label" msgstr "Názov šifrovaného oddielu" -#: gnu/installer/newt/partition.scm:331 +#: gnu/installer/newt/partition.scm:330 #, scheme-format msgid "Please enter the size of the partition. The maximum size is ~a." msgstr "Zadajte veľkosť oddielu. Najvyššia možná hodnota je ~a." -#: gnu/installer/newt/partition.scm:333 +#: gnu/installer/newt/partition.scm:332 msgid "Partition size" msgstr "Veľkosť oddielu" -#: gnu/installer/newt/partition.scm:351 +#: gnu/installer/newt/partition.scm:350 msgid "The percentage can not be superior to 100." msgstr "Percentuálna hodnota nesmie presiahnuť 100." -#: gnu/installer/newt/partition.scm:352 gnu/installer/newt/partition.scm:357 -#: gnu/installer/newt/partition.scm:362 +#: gnu/installer/newt/partition.scm:351 gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:361 msgid "Size error" msgstr "Chyba veľkosti" -#: gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:355 msgid "The requested size is incorrectly formatted, or too large." msgstr "Požadovaná veľkosť je nesprávne zapísaná alebo je hodnota príliš vysoká." -#: gnu/installer/newt/partition.scm:361 +#: gnu/installer/newt/partition.scm:360 msgid "The request size is superior to the maximum size." msgstr "Požadovaná veľkosť je vyššia ako najvyššia možná hodnota." -#: gnu/installer/newt/partition.scm:381 +#: gnu/installer/newt/partition.scm:380 msgid "Please enter the desired mounting point for this partition. Leave this field empty if you don't want to set a mounting point." msgstr "Zadajte prípojný bod pre tento oddiel. Ak nechcete nastaviť žiadny prípojný bod, ponechajte toto pole prázdne." -#: gnu/installer/newt/partition.scm:383 +#: gnu/installer/newt/partition.scm:382 msgid "Mounting point" msgstr "Prípojný bod" -#: gnu/installer/newt/partition.scm:447 +#: gnu/installer/newt/partition.scm:446 #, scheme-format msgid "Creating ~a partition starting at ~a of ~a." msgstr "Vytvára sa oddiel ~a začínajúci na ~a z ~a." -#: gnu/installer/newt/partition.scm:449 +#: gnu/installer/newt/partition.scm:448 #, scheme-format msgid "You are currently editing partition ~a." msgstr "Práve upravujete oddiel ~a." -#: gnu/installer/newt/partition.scm:452 +#: gnu/installer/newt/partition.scm:451 msgid "Partition creation" msgstr "Vytvorenie oddielu" -#: gnu/installer/newt/partition.scm:453 +#: gnu/installer/newt/partition.scm:452 msgid "Partition edit" msgstr "Úprava oddielu" -#: gnu/installer/newt/partition.scm:634 +#: gnu/installer/newt/partition.scm:633 #, scheme-format msgid "Are you sure you want to delete everything on disk ~a?" msgstr "Ste si istí, že chcete odstrániť všetky údaje na disku ~a?" -#: gnu/installer/newt/partition.scm:636 +#: gnu/installer/newt/partition.scm:635 msgid "Delete disk" msgstr "Odstrániť disk" -#: gnu/installer/newt/partition.scm:651 +#: gnu/installer/newt/partition.scm:650 msgid "You cannot delete a free space area." msgstr "Nie je možné odstrániť voľné miesto." -#: gnu/installer/newt/partition.scm:652 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:651 gnu/installer/newt/partition.scm:658 msgid "Delete partition" msgstr "Odstrániť oddiel" -#: gnu/installer/newt/partition.scm:657 +#: gnu/installer/newt/partition.scm:656 #, scheme-format msgid "Are you sure you want to delete partition ~a?" msgstr "Ste si istí, že chcete odstrániť oddiel ~a?" -#: gnu/installer/newt/partition.scm:674 +#: gnu/installer/newt/partition.scm:673 msgid "" "You can change a disk's partition table by selecting it and pressing ENTER. You can also edit a partition by selecting it and pressing ENTER, or remove it by pressing DELETE. To create a new partition, select a free space area and press ENTER.\n" "\n" @@ -1414,53 +1517,53 @@ msgstr "" "\n" "Aspoň jeden oddiel musí mať nastavený prípojný bod na „/“." -#: gnu/installer/newt/partition.scm:680 +#: gnu/installer/newt/partition.scm:679 #, scheme-format msgid "This is the proposed partitioning. It is still possible to edit it or to go back to install menu by pressing the Exit button.~%~%" msgstr "Toto je navrhované rozdelenie disku. Môžete ho upraviť alebo sa vrátiť k inštalácii stlačením tlačidla Ukončiť.~%~%" -#: gnu/installer/newt/partition.scm:690 +#: gnu/installer/newt/partition.scm:689 msgid "Guided partitioning" msgstr "Sprievodca rozdelením disku" -#: gnu/installer/newt/partition.scm:691 +#: gnu/installer/newt/partition.scm:690 msgid "Manual partitioning" msgstr "Ručné rozdelenie" -#: gnu/installer/newt/partition.scm:716 +#: gnu/installer/newt/partition.scm:715 msgid "No root mount point found." msgstr "Nenašiel sa koreňový prípojný bod." -#: gnu/installer/newt/partition.scm:717 +#: gnu/installer/newt/partition.scm:716 msgid "Missing mount point" msgstr "Postráda sa prípojný bod" -#: gnu/installer/newt/partition.scm:721 +#: gnu/installer/newt/partition.scm:720 #, scheme-format msgid "Cannot read the ~a partition UUID. You may need to format it." msgstr "Nedá sa zistiť UUID oddielu ~a. Možno je potrebné ho naformátovať." -#: gnu/installer/newt/partition.scm:724 +#: gnu/installer/newt/partition.scm:723 msgid "Wrong partition format" msgstr "Nesprávny formát oddielu" -#: gnu/installer/newt/partition.scm:755 +#: gnu/installer/newt/partition.scm:754 msgid "Guided - using the entire disk" msgstr "Sprievodca - použiť celý disk" -#: gnu/installer/newt/partition.scm:756 +#: gnu/installer/newt/partition.scm:755 msgid "Guided - using the entire disk with encryption" msgstr "Sprievodca - použiť celý disk so šifrovaním" -#: gnu/installer/newt/partition.scm:757 +#: gnu/installer/newt/partition.scm:756 msgid "Manual" msgstr "Ručne" -#: gnu/installer/newt/partition.scm:759 +#: gnu/installer/newt/partition.scm:758 msgid "Please select a partitioning method." msgstr "Vyberte spôsob rozdelenia disku." -#: gnu/installer/newt/partition.scm:760 +#: gnu/installer/newt/partition.scm:759 msgid "Partitioning method" msgstr "Spôsob rozdelenia disku" @@ -1472,41 +1575,35 @@ msgstr "Vyberte, ktoré používateľské rozhrania sa majú nainštalovať. Ak msgid "Desktop environment" msgstr "Používateľské rozhranie" -#: gnu/installer/newt/services.scm:59 +#: gnu/installer/newt/services.scm:57 msgid "You can now select networking services to run on your system." msgstr "Teraz si môžete vybrať sieťové služby, ktoré chcete spúšťať na vašom systéme." -#: gnu/installer/newt/services.scm:61 +#: gnu/installer/newt/services.scm:59 msgid "Network service" msgstr "Sieťová služba" -#: gnu/installer/newt/services.scm:79 -#, fuzzy -#| msgid "You can now select other services to run on your system." +#: gnu/installer/newt/services.scm:75 msgid "You can now select the CUPS printing service to run on your system." -msgstr "Teraz si môžete vybrať ďalšie služby, ktoré chcete spúšťať na vašom systéme." +msgstr "Teraz si môžete vybrať službu tlače CUPS, ktorú chcete spúšťať na vašom systéme." -#: gnu/installer/newt/services.scm:81 +#: gnu/installer/newt/services.scm:77 msgid "Printing and document services" -msgstr "" +msgstr "Služby tlače a dokumentov" -#: gnu/installer/newt/services.scm:100 -#, fuzzy -#| msgid "No service" +#: gnu/installer/newt/services.scm:94 msgid "Console services" -msgstr "Žiadna služba" +msgstr "Služby konzoly" -#: gnu/installer/newt/services.scm:101 -#, fuzzy -#| msgid "You can now select networking services to run on your system." +#: gnu/installer/newt/services.scm:95 msgid "Select miscellaneous services to run on your non-graphical system." -msgstr "Teraz si môžete vybrať sieťové služby, ktoré chcete spúšťať na vašom systéme." +msgstr "Vyberte si doplnkové služby, ktoré chcete spúšťať na vašom systéme bez grafického rozhrania." -#: gnu/installer/newt/services.scm:115 +#: gnu/installer/newt/services.scm:109 msgid "Network management" msgstr "Správa siete" -#: gnu/installer/newt/services.scm:118 +#: gnu/installer/newt/services.scm:112 msgid "" "Choose the method to manage network connections.\n" "\n" @@ -1542,57 +1639,57 @@ msgstr "" msgid "Please select a timezone." msgstr "Vyberte časové pásmo." -#: gnu/installer/newt/user.scm:45 +#: gnu/installer/newt/user.scm:44 msgid "Name" msgstr "Meno" -#: gnu/installer/newt/user.scm:47 +#: gnu/installer/newt/user.scm:46 msgid "Real name" msgstr "Celé meno" -#: gnu/installer/newt/user.scm:49 +#: gnu/installer/newt/user.scm:48 msgid "Home directory" msgstr "Domovský priečinok" -#: gnu/installer/newt/user.scm:51 +#: gnu/installer/newt/user.scm:50 msgid "Password" msgstr "Heslo" -#: gnu/installer/newt/user.scm:122 +#: gnu/installer/newt/user.scm:121 msgid "Empty inputs are not allowed." msgstr "Prázdne hodnoty nie sú povolené." -#: gnu/installer/newt/user.scm:159 +#: gnu/installer/newt/user.scm:158 msgid "Please confirm the password." msgstr "Potvrďte heslo." #. TRANSLATORS: Leave "root" untranslated: it refers to the name of the #. system administrator account. -#: gnu/installer/newt/user.scm:176 +#: gnu/installer/newt/user.scm:175 msgid "Please choose a password for the system administrator (\"root\")." msgstr "Zvoľte heslo pre účet správcu systému („root“)." -#: gnu/installer/newt/user.scm:178 +#: gnu/installer/newt/user.scm:177 msgid "System administrator password" msgstr "Heslo pre účet správcu systému" -#: gnu/installer/newt/user.scm:191 +#: gnu/installer/newt/user.scm:190 msgid "Please add at least one user to system using the 'Add' button." msgstr "Pridajte aspoň jedného používateľa stlačením tlačidla „Pridať“." -#: gnu/installer/newt/user.scm:194 +#: gnu/installer/newt/user.scm:193 msgid "Add" msgstr "Pridať" -#: gnu/installer/newt/user.scm:195 +#: gnu/installer/newt/user.scm:194 msgid "Delete" msgstr "Odstrániť" -#: gnu/installer/newt/user.scm:255 +#: gnu/installer/newt/user.scm:254 msgid "Please create at least one user." msgstr "Vytvorte aspoň jedného používateľa." -#: gnu/installer/newt/user.scm:256 +#: gnu/installer/newt/user.scm:255 msgid "No user" msgstr "Žiadny používateľ" @@ -1668,60 +1765,60 @@ msgstr "Nezistili sa žiadne bezdrôtové siete" msgid "Wifi" msgstr "Bezdrôtové pripojenie" -#: gnu/installer/parted.scm:433 gnu/installer/parted.scm:470 +#: gnu/installer/parted.scm:455 gnu/installer/parted.scm:492 msgid "Free space" msgstr "Voľné miesto" -#: gnu/installer/parted.scm:559 +#: gnu/installer/parted.scm:581 #, scheme-format msgid "Name: ~a" msgstr "Meno: ~a" -#: gnu/installer/parted.scm:560 gnu/installer/parted.scm:606 +#: gnu/installer/parted.scm:582 gnu/installer/parted.scm:628 msgid "None" msgstr "Žiadne" -#: gnu/installer/parted.scm:565 +#: gnu/installer/parted.scm:587 #, scheme-format msgid "Type: ~a" msgstr "Druh: ~a" -#: gnu/installer/parted.scm:569 +#: gnu/installer/parted.scm:591 #, scheme-format msgid "File system type: ~a" msgstr "Druh súborového systému: ~a" -#: gnu/installer/parted.scm:575 +#: gnu/installer/parted.scm:597 #, scheme-format msgid "Bootable flag: ~:[off~;on~]" msgstr "Zavádzací (boot) príznak: ~:[vypnutý~;zapnutý~]" -#: gnu/installer/parted.scm:579 +#: gnu/installer/parted.scm:601 #, scheme-format msgid "ESP flag: ~:[off~;on~]" msgstr "ESP príznak: ~:[vypnutý~;zapnutý~]" -#: gnu/installer/parted.scm:585 +#: gnu/installer/parted.scm:607 #, scheme-format msgid "Size: ~a" msgstr "Veľkosť: ~a" -#: gnu/installer/parted.scm:591 +#: gnu/installer/parted.scm:613 #, scheme-format msgid "Encryption: ~:[No~a~;Yes (label '~a')~]" msgstr "Šifrovanie: ~:[Nie~a~;Áno (menovka „~a“)~]" -#: gnu/installer/parted.scm:597 +#: gnu/installer/parted.scm:619 #, scheme-format msgid "Format the partition? ~:[No~;Yes~]" msgstr "Formátovať oddiel? ~:[Nie~;Áno~]" -#: gnu/installer/parted.scm:603 +#: gnu/installer/parted.scm:625 #, scheme-format msgid "Mount point: ~a" msgstr "Prípojný bod: ~a" -#: gnu/installer/parted.scm:1466 +#: gnu/installer/parted.scm:1477 #, scheme-format msgid "Device ~a is still in use." msgstr "Zariadenie ~a sa stále používa." @@ -1740,11 +1837,11 @@ msgstr "Certifikáty Mozilla NSS, pre prístup cez HTTPS" #: gnu/installer/services.scm:110 msgid "Network time service (NTP), to set the clock automatically" -msgstr "" +msgstr "Služba sieťových hodín (NTP), pre automatické nastavenie času" #: gnu/installer/services.scm:115 msgid "GPM mouse daemon, to use the mouse on the console" -msgstr "" +msgstr "démon myši GPM, pre používanie myši v konzole" #: gnu/installer/services.scm:121 msgid "NetworkManager network connection manager" @@ -1765,7 +1862,7 @@ msgstr "Tlačový systém CUPS (predvolene bez webového rozhrania)" #. TRANSLATORS: This is a comment within a Scheme file. Each line must #. start with ";; " (two semicolons and a space). Please keep line #. length below 60 characters. -#: gnu/installer/steps.scm:252 +#: gnu/installer/steps.scm:242 msgid "" ";; This is an operating system configuration generated\n" ";; by the graphical installer.\n" @@ -1778,71 +1875,91 @@ msgstr "" msgid "Unable to locate path: ~a." msgstr "Nepodarilo sa nájsť cestu: ~a." -#: gnu/installer/utils.scm:83 +#: gnu/installer/utils.scm:131 #, scheme-format msgid "Press Enter to continue.~%" msgstr "Stlačte Enter pre pokračovanie.~%" -#: gnu/installer/utils.scm:108 -#, scheme-format -msgid "Command failed with exit code ~a.~%" +#: gnu/installer/utils.scm:150 +#, fuzzy, scheme-format +#| msgid "Command failed with exit code ~a.~%" +msgid "Command ~s exited with value ~a" msgstr "Príkaz zlyhal s návratovou hodnotou ~a.~%" -#: gnu/machine/ssh.scm:117 +#: gnu/installer/utils.scm:156 +#, scheme-format +msgid "Command ~s killed by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:162 +#, scheme-format +msgid "Command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:167 +#, scheme-format +msgid "Command ~s succeeded" +msgstr "" + +#: gnu/installer/utils.scm:179 +msgid "run-command-in-installer not set" +msgstr "" + +#: gnu/machine/ssh.scm:120 #, scheme-format msgid " without a 'host-key' is deprecated~%" msgstr "použitie bez „host-key“ sa už neodporúča~%" -#: gnu/machine/ssh.scm:192 +#: gnu/machine/ssh.scm:208 #, scheme-format msgid "device '~a' not found: ~a" msgstr "zariadenie „~a“ sa nenašlo: ~a" -#: gnu/machine/ssh.scm:207 +#: gnu/machine/ssh.scm:223 #, scheme-format msgid "no file system with label '~a'" msgstr "žiadny súborový systém s menovkou „~a“" -#: gnu/machine/ssh.scm:226 +#: gnu/machine/ssh.scm:242 #, scheme-format msgid "no file system with UUID '~a'" msgstr "žiadny súborový systém s UUID „~a“" -#: gnu/machine/ssh.scm:276 +#: gnu/machine/ssh.scm:295 #, scheme-format msgid "missing modules for ~a:~{ ~a~}~%" msgstr "chýbajúce moduly pre ~a:~{ ~a~}~%" -#: gnu/machine/ssh.scm:311 +#: gnu/machine/ssh.scm:333 #, scheme-format msgid "incorrect target system ('~a' was given, while the system reports that it is '~a')~%" msgstr "nesprávny cieľový systém (bol určený „~a“ zatiaľ čo systém hlási, že je „~a“)~%" -#: gnu/machine/ssh.scm:437 +#: gnu/machine/ssh.scm:459 #, scheme-format msgid "no signing key '~a'. have you run 'guix archive --generate-key?'" msgstr "žiadny kľúč na podpísanie „~a“. Vykonali ste „guix archive --generate-key?“" -#: gnu/machine/ssh.scm:469 +#: gnu/machine/ssh.scm:491 #, scheme-format msgid "failed to switch systems while deploying '~a':~%~{~s ~}" msgstr "nepodarilo sa prepnúť systém počas nasadzovania „~a“:~%~{~s ~}" -#: gnu/machine/ssh.scm:477 +#: gnu/machine/ssh.scm:499 #, scheme-format msgid "an error occurred while upgrading services on '~a':~%~{~s ~}~%" msgstr "vyskytla sa chyba počas aktualizácie služieb na „~a“:~%~{~s ~}~%" -#: gnu/machine/ssh.scm:485 +#: gnu/machine/ssh.scm:507 #, scheme-format msgid "failed to install bootloader on '~a':~%~{~s ~}~%" msgstr "nepodarilo sa nainštalovať zavádzač na „~a“:~%~{~s ~}~%" -#: gnu/machine/ssh.scm:518 +#: gnu/machine/ssh.scm:540 msgid "could not roll-back machine" msgstr "nepodarilo sa vrátiť počítač do pôvodného stavu" -#: gnu/machine/ssh.scm:559 +#: gnu/machine/ssh.scm:581 msgid "" "Provisioning for machines that are accessible over SSH\n" "and have a known host-name. This entails little more than maintaining an SSH\n" @@ -1852,7 +1969,7 @@ msgstr "" "názvom hostiteľa. Toto vyžaduje o niečo viac ako udržiavanie SSH\n" "pripojenia k hostiteľovi." -#: gnu/machine/ssh.scm:569 +#: gnu/machine/ssh.scm:591 #, scheme-format msgid "" "unsupported machine configuration '~a'\n" @@ -1861,20 +1978,20 @@ msgstr "" "nepodporované nastavenie počítača „~a“\n" "pre prostredie druhu „~a“" -#: gnu/packages/bootstrap.scm:178 +#: gnu/packages/bootstrap.scm:188 #, scheme-format msgid "could not find bootstrap binary '~a' for system '~a'" msgstr "nepodarilo sa nájsť zavádzací binárny súbor „~a“ pre systém „~a“" -#: gnu/packages/bootstrap.scm:492 +#: gnu/packages/bootstrap.scm:578 msgid "Raw build system with direct store access" msgstr "Základný zostavovací systém s priamym prístupom k úložisku" -#: gnu/packages/bootstrap.scm:500 +#: gnu/packages/bootstrap.scm:586 msgid "Pre-built Guile for bootstrapping purposes." msgstr "Pred-zostavený Guile pre účely zavádzania." -#: guix/build/utils.scm:822 +#: guix/build/utils.scm:823 #, scheme-format msgid "'~a~{ ~a~}' exited with status ~a; output follows:~%~%~{ ~a~%~}" msgstr "„~a~{ ~a~}“ skončil s návratovou hodnotou ~a; nasleduje výstup:~%~%~{ ~a~%~}" @@ -1914,7 +2031,7 @@ msgid "~A: unrecognized option~%" msgstr "~A: neznáma voľba~%" #: guix/scripts.scm:169 guix/scripts/import.scm:140 -#: guix/scripts/system.scm:1370 +#: guix/scripts/system.scm:1379 #, scheme-format msgid "Did you mean @code{~a}?~%" msgstr "Mali ste na mysli @code{~a}?~%" @@ -1970,7 +2087,7 @@ msgstr "nepodarilo sa vytvoriť koreň zberača odpadkov „~a“: ~a~%" #: guix/scripts/build.scm:154 guix/scripts/search.scm:42 #: guix/scripts/show.scm:41 guix/scripts/lint.scm:112 guix/scripts/edit.scm:48 #: guix/scripts/size.scm:246 guix/scripts/graph.scm:553 -#: guix/scripts/repl.scm:80 guix/scripts/style.scm:500 +#: guix/scripts/repl.scm:80 guix/scripts/style.scm:795 msgid "" "\n" " -L, --load-path=DIR prepend DIR to the package module search path" @@ -2172,7 +2289,7 @@ msgstr "" "\n" " -s, --system=SYSTÉM pokúsiť sa o zostavenie pre SYSTÉM, napr. „i686-linux“" -#: guix/scripts/build.scm:357 guix/scripts/system.scm:1023 +#: guix/scripts/build.scm:357 guix/scripts/system.scm:1026 #: guix/scripts/pack.scm:1329 guix/scripts/archive.scm:97 msgid "" "\n" @@ -2216,13 +2333,13 @@ msgstr "" " -r, --root=SÚBOR určiť SÚBOR ako symbolický odkaz na výsledok\n" " a zaznamenať ho ako koreň zberača odpadkov" -#: guix/scripts/build.scm:368 guix/scripts/package.scm:486 +#: guix/scripts/build.scm:368 guix/scripts/package.scm:488 #: guix/scripts/install.scm:37 guix/scripts/remove.scm:36 #: guix/scripts/upgrade.scm:39 guix/scripts/pull.scm:117 -#: guix/scripts/system.scm:1025 guix/scripts/copy.scm:122 -#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:60 +#: guix/scripts/system.scm:1028 guix/scripts/copy.scm:122 +#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:66 #: guix/scripts/archive.scm:99 guix/scripts/environment.scm:123 -#: guix/scripts/home.scm:94 +#: guix/scripts/home.scm:98 msgid "" "\n" " -v, --verbosity=LEVEL use the given verbosity LEVEL" @@ -2247,30 +2364,30 @@ msgstr "" " --log-file vrátiť názvy súborov so záznamom pre zadané odvodeniny" #: guix/scripts/build.scm:379 guix/scripts/download.scm:104 -#: guix/scripts/package.scm:504 guix/scripts/install.scm:44 +#: guix/scripts/package.scm:506 guix/scripts/install.scm:44 #: guix/scripts/remove.scm:41 guix/scripts/upgrade.scm:48 #: guix/scripts/search.scm:37 guix/scripts/show.scm:36 guix/scripts/gc.scm:88 #: guix/scripts/git.scm:34 guix/scripts/git/authenticate.scm:110 #: guix/scripts/hash.scm:98 guix/scripts/import.scm:98 #: guix/scripts/import/minetest.scm:46 guix/scripts/import/cran.scm:49 #: guix/scripts/pull.scm:125 guix/scripts/substitute.scm:250 -#: guix/scripts/system.scm:1032 guix/scripts/lint.scm:115 +#: guix/scripts/system.scm:1035 guix/scripts/lint.scm:115 #: guix/scripts/publish.scm:119 guix/scripts/edit.scm:51 #: guix/scripts/size.scm:249 guix/scripts/graph.scm:558 #: guix/scripts/challenge.scm:430 guix/scripts/copy.scm:127 #: guix/scripts/pack.scm:1357 guix/scripts/weather.scm:336 #: guix/scripts/describe.scm:96 guix/scripts/processes.scm:301 -#: guix/scripts/deploy.scm:55 guix/scripts/container.scm:35 +#: guix/scripts/deploy.scm:58 guix/scripts/container.scm:35 #: guix/scripts/container/exec.scm:43 guix/scripts/archive.scm:106 -#: guix/scripts/environment.scm:149 guix/scripts/home.scm:97 +#: guix/scripts/environment.scm:149 guix/scripts/home.scm:101 #: guix/scripts/time-machine.scm:67 guix/scripts/import/cpan.scm:44 #: guix/scripts/import/crate.scm:50 guix/scripts/import/egg.scm:45 #: guix/scripts/import/gem.scm:46 guix/scripts/import/gnu.scm:50 #: guix/scripts/import/go.scm:50 guix/scripts/import/json.scm:52 #: guix/scripts/import/opam.scm:45 guix/scripts/import/pypi.scm:46 #: guix/scripts/import/texlive.scm:45 guix/scripts/refresh.scm:187 -#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:67 -#: guix/scripts/style.scm:509 +#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:69 +#: guix/scripts/style.scm:804 msgid "" "\n" " -h, --help display this help and exit" @@ -2279,29 +2396,29 @@ msgstr "" " -h, --help zobraziť túto pomocnú správu a skončiť" #: guix/scripts/build.scm:381 guix/scripts/download.scm:106 -#: guix/scripts/package.scm:506 guix/scripts/install.scm:46 +#: guix/scripts/package.scm:508 guix/scripts/install.scm:46 #: guix/scripts/remove.scm:43 guix/scripts/upgrade.scm:50 #: guix/scripts/search.scm:39 guix/scripts/show.scm:38 guix/scripts/gc.scm:90 #: guix/scripts/git.scm:36 guix/scripts/git/authenticate.scm:112 #: guix/scripts/hash.scm:100 guix/scripts/import.scm:100 #: guix/scripts/import/minetest.scm:50 guix/scripts/import/cran.scm:55 #: guix/scripts/pull.scm:127 guix/scripts/substitute.scm:252 -#: guix/scripts/system.scm:1034 guix/scripts/lint.scm:119 +#: guix/scripts/system.scm:1037 guix/scripts/lint.scm:119 #: guix/scripts/publish.scm:121 guix/scripts/edit.scm:53 #: guix/scripts/size.scm:251 guix/scripts/graph.scm:560 #: guix/scripts/challenge.scm:432 guix/scripts/copy.scm:129 #: guix/scripts/pack.scm:1359 guix/scripts/weather.scm:338 #: guix/scripts/describe.scm:98 guix/scripts/processes.scm:303 -#: guix/scripts/deploy.scm:57 guix/scripts/container.scm:37 +#: guix/scripts/deploy.scm:60 guix/scripts/container.scm:37 #: guix/scripts/container/exec.scm:45 guix/scripts/archive.scm:108 -#: guix/scripts/environment.scm:151 guix/scripts/home.scm:99 +#: guix/scripts/environment.scm:151 guix/scripts/home.scm:103 #: guix/scripts/time-machine.scm:69 guix/scripts/import/cpan.scm:46 #: guix/scripts/import/crate.scm:52 guix/scripts/import/egg.scm:49 #: guix/scripts/import/gem.scm:48 guix/scripts/import/gnu.scm:52 #: guix/scripts/import/json.scm:54 guix/scripts/import/opam.scm:52 #: guix/scripts/import/pypi.scm:50 guix/scripts/import/texlive.scm:47 #: guix/scripts/refresh.scm:189 guix/scripts/repl.scm:85 -#: guix/scripts/shell.scm:69 guix/scripts/style.scm:511 +#: guix/scripts/shell.scm:71 guix/scripts/style.scm:806 msgid "" "\n" " -V, --version display version information and exit" @@ -2546,175 +2663,173 @@ msgid "'~a' should probably not be an input at all" msgstr "„~a“ by pravdepodobne vôbec nemal byť vstupom" #: guix/lint.scm:532 -#, fuzzy, scheme-format -#| msgid "module name ~a does not match file name '~a'~%" +#, scheme-format msgid "label '~a' does not match package name '~a'" -msgstr "názov modulu ~a sa nezhoduje s názvom súboru „~a“~%" +msgstr "menovka „~a“ sa nezhoduje s názvom balíka „~a“" #: guix/lint.scm:562 #, scheme-format msgid "\"bash-minimal\" should be in 'inputs' when '~a' is used" msgstr "„bash-minimal“ by mal byť zaradený do „inputs“ ak sa používa „~a“" -#: guix/lint.scm:616 +#: guix/lint.scm:614 msgid "no period allowed at the end of the synopsis" msgstr "súhrnný popis nemôže končiť bodkou" -#: guix/lint.scm:630 +#: guix/lint.scm:628 msgid "no article allowed at the beginning of the synopsis" msgstr "súhrnný popis nemôže začínať členom" -#: guix/lint.scm:639 +#: guix/lint.scm:637 msgid "synopsis should be less than 80 characters long" msgstr "súhrnný popis by nemal byť dlhší ako 80 znakov" -#: guix/lint.scm:648 +#: guix/lint.scm:646 msgid "synopsis should start with an upper-case letter or digit" msgstr "súhrnný popis by mal začínať veľkým písmenom alebo číslicou" -#: guix/lint.scm:656 +#: guix/lint.scm:654 msgid "synopsis should not start with the package name" msgstr "súhrnný popis by nemal začínať názvom balíka" -#: guix/lint.scm:670 +#: guix/lint.scm:668 msgid "Texinfo markup in synopsis is invalid" msgstr "značkovanie Texinfo v súhrnnom popise je neplatné" -#: guix/lint.scm:678 +#: guix/lint.scm:676 msgid "synopsis contains trailing whitespace" msgstr "súhrnný popis obsahuje koncové medzery" -#: guix/lint.scm:695 +#: guix/lint.scm:693 msgid "synopsis should not be empty" msgstr "súhrnný popis by nemal zostať prázdny" -#: guix/lint.scm:705 +#: guix/lint.scm:703 #, scheme-format msgid "invalid synopsis: ~s" msgstr "neplatný súhrnný popis: ~s" -#: guix/lint.scm:805 +#: guix/lint.scm:803 #, scheme-format msgid "~a: HTTP GET error for ~a: ~a (~s)~%" msgstr "~a: chyba HTTP GET pre ~a: ~a (~s)~%" -#: guix/lint.scm:815 +#: guix/lint.scm:813 #, scheme-format msgid "~a: host lookup failure: ~a~%" msgstr "~a: chyba pri zisťovaní názvu hostiteľa: ~a~%" -#: guix/lint.scm:820 +#: guix/lint.scm:818 #, scheme-format msgid "~a: TLS certificate error: ~a" msgstr "~a: chyba TLS certifikátu: ~a" -#: guix/lint.scm:825 +#: guix/lint.scm:823 #, scheme-format msgid "~a: TLS error in '~a': ~a~%" msgstr "~a: chyba TLS v „~a“: ~a~%" -#: guix/lint.scm:836 guix/ui.scm:820 guix/scripts/offload.scm:194 +#: guix/lint.scm:834 guix/ui.scm:820 guix/scripts/offload.scm:194 #, scheme-format msgid "~a: ~a~%" msgstr "~a: ~a~%" -#: guix/lint.scm:868 +#: guix/lint.scm:866 #, scheme-format msgid "URI ~a returned suspiciously small file (~a bytes)" msgstr "prepojenie ~a poskytlo podozrivo malý súbor (~a bajtov)" -#: guix/lint.scm:877 +#: guix/lint.scm:875 #, scheme-format msgid "permanent redirect from ~a to ~a" msgstr "stále presmerovanie z ~a na ~a" -#: guix/lint.scm:883 +#: guix/lint.scm:881 #, scheme-format msgid "invalid permanent redirect from ~a" msgstr "neplatné stále presmerovanie z ~a" -#: guix/lint.scm:889 guix/lint.scm:899 +#: guix/lint.scm:887 guix/lint.scm:897 #, scheme-format msgid "URI ~a not reachable: ~a (~s)" msgstr "prepojenie ~a je neprístupné: ~a (~s)" -#: guix/lint.scm:905 +#: guix/lint.scm:903 #, scheme-format msgid "URI ~a domain not found: ~a" msgstr "doména prepojenia ~a sa nenašla: ~a" -#: guix/lint.scm:911 +#: guix/lint.scm:909 #, scheme-format msgid "URI ~a unreachable: ~a" msgstr "prepojenie ~a nie je prístupné: ~a" -#: guix/lint.scm:919 +#: guix/lint.scm:917 #, scheme-format msgid "TLS certificate error: ~a" msgstr "chyba certifikátu TLS: ~a" -#: guix/lint.scm:946 +#: guix/lint.scm:944 msgid "invalid value for home page" msgstr "neplatná hodnota pre domovskú stránku" -#: guix/lint.scm:951 +#: guix/lint.scm:949 #, scheme-format msgid "invalid home page URL: ~s" msgstr "neplatné prepojenie na domovskú stránku: ~s" -#: guix/lint.scm:988 +#: guix/lint.scm:986 msgid "file names of patches should start with the package name" msgstr "názvy súborov záplat by nemali začínať názvom balíka" -#: guix/lint.scm:1008 -#, fuzzy, scheme-format -#| msgid "~a: file name is too long" +#: guix/lint.scm:1006 +#, scheme-format msgid "~a: file name is too long, which may break 'make dist'" -msgstr "~a: názov súboru je príliš dlhý" +msgstr "~a: názov súboru je príliš dlhý, čo môže znefunkčniť „make dist“" -#: guix/lint.scm:1029 +#: guix/lint.scm:1027 #, scheme-format msgid "~a: empty patch" msgstr "~a: prázdna záplata" -#: guix/lint.scm:1038 +#: guix/lint.scm:1036 #, scheme-format msgid "~a: patch lacks comment and upstream status" msgstr "~a: záplate chýba komentár a jej stav u poskytovateľa softvéru" -#: guix/lint.scm:1099 +#: guix/lint.scm:1097 #, scheme-format msgid "proposed synopsis: ~s~%" msgstr "navrhovaný súhrnný popis: ~s~%" -#: guix/lint.scm:1113 +#: guix/lint.scm:1111 #, scheme-format msgid "proposed description:~% \"~a\"~%" msgstr "navrhovaný popis:~% „~a“~%" -#: guix/lint.scm:1164 +#: guix/lint.scm:1162 msgid "all the source URIs are unreachable:" msgstr "všetky zdrojové prepojenia sú neprístupné:" -#: guix/lint.scm:1193 +#: guix/lint.scm:1191 msgid "the source file name should contain the package name" msgstr "názov zdrojového súboru by nemal obsahovať názov balíka" -#: guix/lint.scm:1205 +#: guix/lint.scm:1203 msgid "the source URI should not be an autogenerated tarball" msgstr "zdrojové prepojenie by nemalo odkazovať na automaticky vygenerovaný tar archív" -#: guix/lint.scm:1229 +#: guix/lint.scm:1227 #, scheme-format msgid "URL should be 'mirror://~a/~a'" msgstr "prepojenie by malo byť „zrkadlo://~a/~a“" -#: guix/lint.scm:1269 +#: guix/lint.scm:1267 #, scheme-format msgid "while accessing '~a'" msgstr "počas pristupovania k „~a“" -#: guix/lint.scm:1276 +#: guix/lint.scm:1274 #, scheme-format msgid "URL should be '~a'" msgstr "prepojenie by malo byť „~a“" @@ -2722,68 +2837,68 @@ msgstr "prepojenie by malo byť „~a“" #. TRANSLATORS: check and #:tests? are a #. Scheme symbol and keyword respectively #. and should not be translated. -#: guix/lint.scm:1304 +#: guix/lint.scm:1302 msgid "the 'check' phase should respect #:tests?" msgstr "krok „check“ by mal brať do úvahy #:tests?" -#: guix/lint.scm:1322 guix/lint.scm:1333 guix/lint.scm:1341 +#: guix/lint.scm:1320 guix/lint.scm:1331 guix/lint.scm:1339 #, scheme-format msgid "failed to create ~a derivation: ~a" msgstr "nepodarilo sa vytvoriť odvodeninu pre ~a: ~a" -#: guix/lint.scm:1327 +#: guix/lint.scm:1325 #, scheme-format msgid "failed to create ~a derivation: ~s" msgstr "nepodarilo sa vytvoriť odvodeninu pre ~a: ~s" -#: guix/lint.scm:1379 +#: guix/lint.scm:1377 #, scheme-format msgid "propagated inputs ~a and ~a collide" msgstr "rozšírený vstup ~a je v rozpore s ~a" -#: guix/lint.scm:1403 +#: guix/lint.scm:1401 msgid "invalid license field" msgstr "neplatné pole licencie" -#: guix/lint.scm:1410 +#: guix/lint.scm:1408 msgid "while retrieving CVE vulnerabilities" msgstr "pri získavaní zraniteľností CVE" -#: guix/lint.scm:1453 +#: guix/lint.scm:1451 #, scheme-format msgid "probably vulnerable to ~a" msgstr "pravdepodobne ohrozený ~a" -#: guix/lint.scm:1461 +#: guix/lint.scm:1459 #, scheme-format msgid "no updater for ~a" msgstr "žiadny nástroj na aktualizáciu pre ~a" -#: guix/lint.scm:1466 guix/lint.scm:1641 +#: guix/lint.scm:1464 guix/lint.scm:1639 #, scheme-format msgid "while retrieving upstream info for '~a'" msgstr "pri získavaní informácií od poskytovateľa o „~a“" -#: guix/lint.scm:1475 +#: guix/lint.scm:1473 #, scheme-format msgid "can be upgraded to ~a" msgstr "môže byť aktualizovaný na ~a" -#: guix/lint.scm:1481 +#: guix/lint.scm:1479 #, scheme-format msgid "updater '~a' failed to find upstream releases" msgstr "nástroju na aktualizáciu „~a“ sa nepodarilo nájsť dostupné vydania" -#: guix/lint.scm:1508 +#: guix/lint.scm:1506 #, scheme-format msgid "failed to access Disarchive database at ~a" msgstr "nie je možné pristupovať k databáze Disarchive na ~a" -#: guix/lint.scm:1535 +#: guix/lint.scm:1533 msgid "Software Heritage rate limit reached; try again later" msgstr "bol dosiahnutý povolený počet požiadaviek na Software Heritage; skúste to znova neskôr" -#: guix/lint.scm:1539 +#: guix/lint.scm:1537 #, scheme-format msgid "'~a' returned ~a" msgstr "„~a“ vrátil ~a" @@ -2791,164 +2906,162 @@ msgstr "„~a“ vrátil ~a" #. TRANSLATORS: "Software Heritage" is a proper noun #. that must remain untranslated. See #. . -#: guix/lint.scm:1578 +#: guix/lint.scm:1576 msgid "scheduled Software Heritage archival" msgstr "archivovanie v Software Heritage bolo naplánované" -#: guix/lint.scm:1584 +#: guix/lint.scm:1582 msgid "archival rate limit exceeded; try again later" msgstr "počet archivovaní bol prekročený; skúste to znova neskôr" -#: guix/lint.scm:1605 +#: guix/lint.scm:1603 msgid "source not archived on Software Heritage and missing from the Disarchive database" msgstr "zdrojové súbory neboli archivované v Software Heritage a nenachádzajú sa ani v databáze Disarchive" -#: guix/lint.scm:1615 +#: guix/lint.scm:1613 #, scheme-format msgid "Disarchive entry refers to non-existent SWH directory '~a'" msgstr "Disarchive záznam odkazuje na nejestvujúci priečinok SWH „~a“" -#: guix/lint.scm:1624 +#: guix/lint.scm:1622 msgid "unsupported source type" msgstr "nepodporovaný druh zdroja" -#: guix/lint.scm:1633 +#: guix/lint.scm:1631 msgid "while connecting to Software Heritage" msgstr "pri pripájaní do Software Heritage" -#: guix/lint.scm:1650 +#: guix/lint.scm:1648 #, scheme-format msgid "ahead of Stackage LTS version ~a" msgstr "novší ako verzia Stackage LTS ~a" -#: guix/lint.scm:1667 +#: guix/lint.scm:1665 #, scheme-format msgid "tabulation on line ~a, column ~a" msgstr "odsek v riadku ~a, stĺpec ~a" -#: guix/lint.scm:1679 +#: guix/lint.scm:1677 #, scheme-format msgid "trailing white space on line ~a" msgstr "medzera na konci riadku ~a" -#: guix/lint.scm:1693 +#: guix/lint.scm:1691 #, scheme-format msgid "line ~a is way too long (~a characters)" msgstr "riadok ~a je príliš dlhý (~a znakov)" -#: guix/lint.scm:1707 +#: guix/lint.scm:1705 msgid "parentheses feel lonely, move to the previous or next line" msgstr "zátvorky sa cítia osamotene, premiestnite ich do predchádzajúceho alebo nasledujúceho riadku" -#: guix/lint.scm:1784 +#: guix/lint.scm:1782 msgid "source file not found" msgstr "zdrojový súbor sa nenašiel" -#: guix/lint.scm:1796 +#: guix/lint.scm:1794 msgid "Validate package names" msgstr "Overiť názvy balíkov" -#: guix/lint.scm:1800 +#: guix/lint.scm:1798 msgid "Check if tests are explicitly enabled" msgstr "Overiť či sú testy výslovne povolené" -#: guix/lint.scm:1804 +#: guix/lint.scm:1802 msgid "Validate package descriptions" msgstr "Overiť popisy balíkov" -#: guix/lint.scm:1808 +#: guix/lint.scm:1806 msgid "Identify inputs that should be native inputs" msgstr "Označiť vstupy, ktoré by mali byť pôvodné" -#: guix/lint.scm:1812 +#: guix/lint.scm:1810 msgid "Identify inputs that shouldn't be inputs at all" msgstr "Označiť vstupy, ktoré by vôbec nemali byť vstupmi" -#: guix/lint.scm:1816 -#, fuzzy -#| msgid "Identify inputs that should be native inputs" +#: guix/lint.scm:1814 msgid "Identify input labels that do not match package names" -msgstr "Označiť vstupy, ktoré by mali byť pôvodné" +msgstr "Označiť menovky vstupov, ktoré nezodpovedajú názvom balíkov" -#: guix/lint.scm:1820 +#: guix/lint.scm:1818 msgid "Make sure 'wrap-program' can finds its interpreter." msgstr "Uistiť sa, že „wrap-program“ môže nájsť svoj interpreter." #. TRANSLATORS: is the name of a data type and must not be #. translated. -#: guix/lint.scm:1826 +#: guix/lint.scm:1824 msgid "Make sure the 'license' field is a or a list thereof" msgstr "Zaistiť, že pole „licence“ obsahuje alebo ich zoznam" -#: guix/lint.scm:1831 +#: guix/lint.scm:1829 msgid "Make sure tests are only run when requested" msgstr "Uistiť sa, že testy sa spustia len na požiadanie" -#: guix/lint.scm:1835 +#: guix/lint.scm:1833 msgid "Suggest 'mirror://' URLs" msgstr "Odporúča zdroje „mirror://“" -#: guix/lint.scm:1839 +#: guix/lint.scm:1837 msgid "Validate file names of sources" msgstr "Overiť názvy zdrojových súborov" -#: guix/lint.scm:1843 +#: guix/lint.scm:1841 msgid "Check for autogenerated tarballs" msgstr "Overiť, či sú prítomné automaticky vytvorené tar archívy" -#: guix/lint.scm:1847 +#: guix/lint.scm:1845 msgid "Report failure to compile a package to a derivation" msgstr "Nahlásiť zlyhanie zostavovania odvodeniny balíka" -#: guix/lint.scm:1852 +#: guix/lint.scm:1850 msgid "Report collisions that would occur due to propagated inputs" msgstr "Nahlásiť rozpory, ktoré by mohli nastať kvôli rozšíreným vstupom" -#: guix/lint.scm:1857 +#: guix/lint.scm:1855 msgid "Validate file names and availability of patches" msgstr "Overiť názvy súborov a dostupnosť záplat" -#: guix/lint.scm:1861 +#: guix/lint.scm:1859 msgid "Validate patch headers" msgstr "Overiť hlavičky záplat" -#: guix/lint.scm:1865 +#: guix/lint.scm:1863 msgid "Look for formatting issues in the source" msgstr "Vyhľadať chyby formátovania v zdrojovom súbore" -#: guix/lint.scm:1872 +#: guix/lint.scm:1870 msgid "Validate package synopses" msgstr "Overiť súhrnné popisy balíkov" -#: guix/lint.scm:1876 +#: guix/lint.scm:1874 msgid "Validate synopsis & description of GNU packages" msgstr "Overiť súhrnné popisy a popisy GNU balíkov" -#: guix/lint.scm:1880 +#: guix/lint.scm:1878 msgid "Validate home-page URLs" msgstr "Overiť prepojenia na domovské stránky" -#: guix/lint.scm:1884 +#: guix/lint.scm:1882 msgid "Validate source URLs" msgstr "Overiť prepojenia na zdroje" -#: guix/lint.scm:1888 +#: guix/lint.scm:1886 msgid "Suggest GitHub URLs" msgstr "Navrhnúť prepojenia na GitHub" -#: guix/lint.scm:1892 +#: guix/lint.scm:1890 msgid "Check the Common Vulnerabilities and Exposures (CVE) database" msgstr "Overiť databázu Všeobecne známych zraniteľností a chýb (CVE)" -#: guix/lint.scm:1897 +#: guix/lint.scm:1895 msgid "Check the package for new upstream releases" msgstr "Vyhľadať novšie vydania balíka" -#: guix/lint.scm:1901 +#: guix/lint.scm:1899 msgid "Ensure source code archival on Software Heritage" msgstr "Zaistiť archivovanie zdrojového kódu v Software Heritage" -#: guix/lint.scm:1905 +#: guix/lint.scm:1903 msgid "Ensure Haskell packages use Stackage LTS versions" msgstr "Zaistiť, že balíky Haskellu používajú verzie Stackage LTS" @@ -3014,7 +3127,7 @@ msgstr "nepodporovaný formát odtlačku: ~a~%" msgid "~a: unknown hash algorithm~%" msgstr "~a: neznámy algoritmus na vytváranie odtlačkov~%" -#: guix/scripts/download.scm:171 guix/scripts/package.scm:1087 +#: guix/scripts/download.scm:171 guix/scripts/package.scm:1090 #: guix/scripts/pull.scm:758 guix/scripts/publish.scm:1260 #: guix/scripts/discover.scm:136 guix/scripts/time-machine.scm:123 #, scheme-format @@ -3046,17 +3159,17 @@ msgstr "aktuálne pokolenie ~a nebude odstránené~%" msgid "no matching generation~%" msgstr "žiadne pokolenie sa nezhoduje~%" -#: guix/scripts/package.scm:159 +#: guix/scripts/package.scm:161 #, scheme-format msgid "nothing to be done~%" msgstr "nevyžaduje sa žiadna činnosť~%" -#: guix/scripts/package.scm:260 +#: guix/scripts/package.scm:262 #, scheme-format msgid "package '~a' no longer exists~%" msgstr "balík „~a“ už neexistuje~%" -#: guix/scripts/package.scm:315 +#: guix/scripts/package.scm:317 #, scheme-format msgid "" "Consider setting the necessary environment\n" @@ -3079,7 +3192,7 @@ msgstr "" "\n" "Pozri tiež @command{guix package --search-paths -p ~s}." -#: guix/scripts/package.scm:361 +#: guix/scripts/package.scm:363 msgid "" ";; This \"manifest\" file can be passed to 'guix package -m' to reproduce\n" ";; the content of your profile. This is \"symbolic\": it only specifies\n" @@ -3093,12 +3206,12 @@ msgstr "" ";; aj použité kanály, ktorých podrobnosti poskytuje príkaz „guix describe“.\n" ";; Pozri oddiel „Rozmnožovanie systému Guix“ v príručke.\n" -#: guix/scripts/package.scm:393 +#: guix/scripts/package.scm:395 #, scheme-format msgid "no provenance information for this profile~%" msgstr "žiadne údaje o pôvode pre tento profil~%" -#: guix/scripts/package.scm:395 +#: guix/scripts/package.scm:397 msgid "" ";; This channel file can be passed to 'guix pull -C' or to\n" ";; 'guix time-machine -C' to obtain the Guix revision that was\n" @@ -3108,12 +3221,12 @@ msgstr "" ";; alebo „guix time-machine -C“ použiť na zistenie čísla úpravy\n" ";; systému Guix, ktorá bola použitá pri vytváraní tohto profilu.\n" -#: guix/scripts/package.scm:407 +#: guix/scripts/package.scm:409 #, scheme-format msgid ";; Note: these other commits were also used to install some of the packages in this profile:~%" msgstr ";; Poznámka: inštalácia niektorých balíkov tohto profilu závisí na týchto úpravách:~%" -#: guix/scripts/package.scm:437 +#: guix/scripts/package.scm:439 msgid "" "Usage: guix package [OPTION]...\n" "Install, remove, or upgrade packages in a single transaction.\n" @@ -3121,7 +3234,7 @@ msgstr "" "Použitie: guix package [VOĽBA]...\n" "Inštalovať, odstrániť alebo aktualizovať balíky vrámci jednej nedeliteľnej úlohy.\n" -#: guix/scripts/package.scm:439 +#: guix/scripts/package.scm:441 msgid "" "\n" " -i, --install PACKAGE ...\n" @@ -3131,7 +3244,7 @@ msgstr "" " -i, --install BALÍK ...\n" " inštalovať BALÍKY" -#: guix/scripts/package.scm:442 +#: guix/scripts/package.scm:444 msgid "" "\n" " -e, --install-from-expression=EXP\n" @@ -3141,7 +3254,7 @@ msgstr "" " -e, --install-from-expression=VÝRAZ\n" " inštalovať balíky, ktorých názvy sú výsledkom vyhodnotenia VÝRAZU" -#: guix/scripts/package.scm:445 +#: guix/scripts/package.scm:447 msgid "" "\n" " -f, --install-from-file=FILE\n" @@ -3153,7 +3266,7 @@ msgstr "" " inštalovať balíky, ktoré sú výsledkom vyhodnotenia\n" " kódu v SÚBORE" -#: guix/scripts/package.scm:449 +#: guix/scripts/package.scm:451 msgid "" "\n" " -r, --remove PACKAGE ...\n" @@ -3163,7 +3276,7 @@ msgstr "" " -r, --remove BALÍK ...\n" " odstrániť BALÍKY" -#: guix/scripts/package.scm:452 +#: guix/scripts/package.scm:454 msgid "" "\n" " -u, --upgrade[=REGEXP] upgrade all the installed packages matching REGEXP" @@ -3171,7 +3284,7 @@ msgstr "" "\n" " -u, --upgrade[=VÝRAZ] aktualizovať všetky nainštalované balíky, ktorých názov sa zhoduje s regulárnym VÝRAZOM" -#: guix/scripts/package.scm:454 +#: guix/scripts/package.scm:456 msgid "" "\n" " -m, --manifest=FILE create a new profile generation with the manifest\n" @@ -3181,7 +3294,7 @@ msgstr "" " -m, --manifest=SÚBOR vytvoriť nové pokolenie profilu podľa\n" " manifestu zo SÚBORU" -#: guix/scripts/package.scm:457 guix/scripts/upgrade.scm:41 +#: guix/scripts/package.scm:459 guix/scripts/upgrade.scm:41 msgid "" "\n" " --do-not-upgrade[=REGEXP] do not upgrade any packages matching REGEXP" @@ -3189,7 +3302,7 @@ msgstr "" "\n" " --do-not-upgrade[=VÝRAZ] neaktualizovať žiadne balíky, ktorých názov sa zhoduje s regulárnym VÝRAZOM" -#: guix/scripts/package.scm:459 guix/scripts/pull.scm:107 +#: guix/scripts/package.scm:461 guix/scripts/pull.scm:107 msgid "" "\n" " --roll-back roll back to the previous generation" @@ -3197,7 +3310,7 @@ msgstr "" "\n" " --roll-back vrátiť sa k predchádzajúcemu pokoleniu" -#: guix/scripts/package.scm:461 +#: guix/scripts/package.scm:463 msgid "" "\n" " --search-paths[=KIND]\n" @@ -3207,7 +3320,7 @@ msgstr "" " --search-paths[=DRUH]\n" " zobraziť potrebné zadania premenných prostredia" -#: guix/scripts/package.scm:464 guix/scripts/pull.scm:104 +#: guix/scripts/package.scm:466 guix/scripts/pull.scm:104 msgid "" "\n" " -l, --list-generations[=PATTERN]\n" @@ -3217,7 +3330,7 @@ msgstr "" " -l, --list-generations[=VZOR]\n" " zobraziť pokolenia zhodujúce sa so VZOROM" -#: guix/scripts/package.scm:467 guix/scripts/pull.scm:109 +#: guix/scripts/package.scm:469 guix/scripts/pull.scm:109 msgid "" "\n" " -d, --delete-generations[=PATTERN]\n" @@ -3227,7 +3340,7 @@ msgstr "" " -d, --delete-generations[=VZOR]\n" " odstrániť pokolenia zhodujúce sa so VZOROM" -#: guix/scripts/package.scm:470 guix/scripts/pull.scm:112 +#: guix/scripts/package.scm:472 guix/scripts/pull.scm:112 msgid "" "\n" " -S, --switch-generation=PATTERN\n" @@ -3237,7 +3350,7 @@ msgstr "" " -S, --switch-generation=VZOR\n" " prepnúť na pokolenie zhodujúce sa so VZOROM" -#: guix/scripts/package.scm:473 +#: guix/scripts/package.scm:475 msgid "" "\n" " --export-manifest print a manifest for the chosen profile" @@ -3245,7 +3358,7 @@ msgstr "" "\n" " --export-manifest zobraziť manifest zodpovedajúci zvolenému profilu" -#: guix/scripts/package.scm:475 +#: guix/scripts/package.scm:477 msgid "" "\n" " --export-channels print channels for the chosen profile" @@ -3253,7 +3366,7 @@ msgstr "" "\n" " --export-channels zobraziť kanály zvoleného profilu" -#: guix/scripts/package.scm:477 guix/scripts/install.scm:34 +#: guix/scripts/package.scm:479 guix/scripts/install.scm:34 #: guix/scripts/remove.scm:33 guix/scripts/upgrade.scm:37 msgid "" "\n" @@ -3262,7 +3375,7 @@ msgstr "" "\n" " -p, --profile=PROFIL použiť PROFIL namiesto predvoleného profilu používateľa" -#: guix/scripts/package.scm:479 +#: guix/scripts/package.scm:481 msgid "" "\n" " --list-profiles list the user's profiles" @@ -3270,7 +3383,7 @@ msgstr "" "\n" " --list-profiles zobraziť profily používateľa" -#: guix/scripts/package.scm:482 +#: guix/scripts/package.scm:484 msgid "" "\n" " --allow-collisions do not treat collisions in the profile as an error" @@ -3278,7 +3391,7 @@ msgstr "" "\n" " --allow-collisions nepovažovať rozpory v profile za chyby" -#: guix/scripts/package.scm:484 +#: guix/scripts/package.scm:486 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" @@ -3286,7 +3399,7 @@ msgstr "" "\n" " --bootstrap použiť zavádzací Guile na zostavenie profilu" -#: guix/scripts/package.scm:489 +#: guix/scripts/package.scm:491 msgid "" "\n" " -s, --search=REGEXP search in synopsis and description using REGEXP" @@ -3294,7 +3407,7 @@ msgstr "" "\n" " -s, --search=REGULÁRNY-VÝRAZ vyhľadávať v súhrnných popisoch a popisoch s použitím REGULÁRNEHO-VÝRAZU" -#: guix/scripts/package.scm:491 +#: guix/scripts/package.scm:493 msgid "" "\n" " -I, --list-installed[=REGEXP]\n" @@ -3304,7 +3417,7 @@ msgstr "" " -I, --list-installed[=REGULÁRNY-VÝRAZ]\n" " zobraziť nainštalované balíky, ktorých názvy sa zhodujú s REGULÁRNYM-VÝRAZOM" -#: guix/scripts/package.scm:494 +#: guix/scripts/package.scm:496 msgid "" "\n" " -A, --list-available[=REGEXP]\n" @@ -3314,7 +3427,7 @@ msgstr "" " -A, --list-available[=REGULÁRNY-VÝRAZ]\n" " zobraziť dostupné balíky, ktorých názov sa zhoduje s REGULÁRNYM-VÝRAZOM" -#: guix/scripts/package.scm:497 +#: guix/scripts/package.scm:499 msgid "" "\n" " --show=PACKAGE show details about PACKAGE" @@ -3322,37 +3435,37 @@ msgstr "" "\n" " --show=BALÍK zobraziť podrobnosti BALÍKA" -#: guix/scripts/package.scm:552 +#: guix/scripts/package.scm:554 #, scheme-format msgid "upgrade regexp '~a' looks like a command-line option~%" msgstr "regulárny výraz „~a“ sa podobá na voľbu príkazu~%" -#: guix/scripts/package.scm:555 +#: guix/scripts/package.scm:557 #, scheme-format msgid "is this intended?~%" msgstr "je to úmyselné?~%" -#: guix/scripts/package.scm:605 +#: guix/scripts/package.scm:607 #, scheme-format msgid "~a: unsupported kind of search path~%" msgstr "~a: nepodporovaný druh prehľadávanej cesty~%" -#: guix/scripts/package.scm:739 +#: guix/scripts/package.scm:741 #, scheme-format msgid "cannot install non-package object: ~s~%" msgstr "nedá sa nainštalovať niečo čo nie je balík: ~s~%" -#: guix/scripts/package.scm:918 +#: guix/scripts/package.scm:920 #, scheme-format msgid "~a~@[@~a~]: package not found~%" msgstr "~a~@[@~a~]: balík sa nenašiel~%" -#: guix/scripts/package.scm:965 guix/scripts/pull.scm:687 +#: guix/scripts/package.scm:967 guix/scripts/pull.scm:687 #, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "nepodarilo sa prepnúť na pokolenie „~a“~%" -#: guix/scripts/package.scm:1060 +#: guix/scripts/package.scm:1062 #, scheme-format msgid "nothing to do~%" msgstr "nie je čo robiť~%" @@ -3618,8 +3731,8 @@ msgstr "" "Použitie: guix git PRÍKAZ PARAMETRE...\n" "Vykonáva príkazy v Git repozitároch.\n" -#: guix/scripts/git.scm:29 guix/scripts/system.scm:945 -#: guix/scripts/container.scm:30 guix/scripts/home.scm:69 +#: guix/scripts/git.scm:29 guix/scripts/system.scm:946 +#: guix/scripts/container.scm:30 guix/scripts/home.scm:70 msgid "The valid values for ACTION are:\n" msgstr "Platné hodnoty pre ČINNOSŤ sú:\n" @@ -3722,40 +3835,32 @@ msgstr "" " -x, --exclude-vcs vylúčiť priečinky zo sledovania verzií" #: guix/scripts/hash.scm:95 -#, fuzzy -#| msgid "" -#| "\n" -#| " -r, --recursive compute the hash on FILE recursively" msgid "" "\n" " -S, --serializer=TYPE compute the hash on FILE according to TYPE serialization" msgstr "" "\n" -" -r, --recursive rekurzívne vypočítať odtlačok SÚBORU" +" -S, --serializer=DRUH vypočítať odtlačok SÚBORU vzhľadom na DRUH prevodu na sériový tvar" -#: guix/scripts/hash.scm:137 -#, fuzzy, scheme-format -#| msgid "'--inherit' is deprecated, use '--preserve' instead~%" -msgid "'--recursive' is deprecated, use '--serializer' instead~%" -msgstr "voľba „--inherit“ je zastaraná, namiesto nej použite „--preserve“~%" +#: guix/scripts/hash.scm:138 +#, scheme-format +msgid "'--recursive' is deprecated, use '--serializer=nar' instead~%" +msgstr "voľba „--recursive“ je zastaraná, namiesto nej použite „--serializer“~%" -#: guix/scripts/hash.scm:152 -#, fuzzy, scheme-format -#| msgid "Unsupported image type ~a~%." +#: guix/scripts/hash.scm:153 +#, scheme-format msgid "unsupported serializer type: ~a~%" -msgstr "Nepodporovaný druh obrázku ~a~%." +msgstr "nepodporovaný druh prevodníka na sériový tvar ~a~%" -#: guix/scripts/hash.scm:201 -#, fuzzy, scheme-format -#| msgid "~a: ~a~%" +#: guix/scripts/hash.scm:202 +#, scheme-format msgid "~a ~a~%" -msgstr "~a: ~a~%" +msgstr "~a ~a~%" -#: guix/scripts/hash.scm:210 -#, fuzzy, scheme-format -#| msgid "no arguments specified, nothing to do~%" +#: guix/scripts/hash.scm:211 +#, scheme-format msgid "no arguments specified~%" -msgstr "neboli zadané žiadne parametre, nie je čo robiť~%" +msgstr "neboli zadané žiadne parametre~%" #: guix/scripts/import.scm:92 msgid "" @@ -3822,9 +3927,9 @@ msgstr "~a: nie je platný triediaci kľúč~%" #: guix/scripts/import/minetest.scm:115 guix/scripts/import/cran.scm:120 #: guix/scripts/import/elpa.scm:110 guix/scripts/import/cpan.scm:87 #: guix/scripts/import/crate.scm:103 guix/scripts/import/egg.scm:106 -#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:121 +#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:122 #: guix/scripts/import/hackage.scm:158 guix/scripts/import/json.scm:97 -#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:104 +#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:105 #: guix/scripts/import/stackage.scm:130 guix/scripts/import/texlive.scm:88 #, scheme-format msgid "too few arguments~%" @@ -3833,10 +3938,10 @@ msgstr "primálo parametrov~%" #: guix/scripts/import/minetest.scm:117 guix/scripts/import/cran.scm:122 #: guix/scripts/import/elpa.scm:112 guix/scripts/import/cpan.scm:89 #: guix/scripts/import/crate.scm:105 guix/scripts/import/egg.scm:108 -#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:123 +#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:124 #: guix/scripts/import/hackage.scm:149 guix/scripts/import/hackage.scm:160 #: guix/scripts/import/json.scm:99 guix/scripts/import/opam.scm:113 -#: guix/scripts/import/pypi.scm:106 guix/scripts/import/stackage.scm:132 +#: guix/scripts/import/pypi.scm:107 guix/scripts/import/stackage.scm:132 #: guix/scripts/import/texlive.scm:90 #, scheme-format msgid "too many arguments~%" @@ -3866,7 +3971,7 @@ msgstr "" "\n" " -s, --style=ŠTÝL vybrať štýl výstupu, buď „specification“ alebo „variable“" -#: guix/scripts/import/cran.scm:116 guix/scripts/import/texlive.scm:84 +#: guix/scripts/import/cran.scm:116 #, scheme-format msgid "failed to download description for package '~a'~%" msgstr "chyba pri sťahovaní popisu balíka „~a“~%" @@ -4122,15 +4227,11 @@ msgid "TLS error in procedure '~a': ~a~%" msgstr "Chyba TLS v procedúre „~a“: ~a~%" #: guix/scripts/substitute.scm:240 -#, fuzzy -#| msgid "" -#| "Usage: guix substitute [OPTION]...\n" -#| "Internal tool to substitute a pre-built binary to a local build.\n" msgid "" "Usage: guix substitute OPTION [ARGUMENT]...\n" "Internal tool to substitute a pre-built binary to a local build.\n" msgstr "" -"Použitie: guix substitute [VOĽBA]...\n" +"Použitie: guix substitute VOĽBA [PARAMETER]...\n" "Vnútorný nástroj na nahrádzanie miestneho zostavenia pred-zostavenou binárnou náhradou.\n" #: guix/scripts/substitute.scm:242 @@ -4320,27 +4421,27 @@ msgstr "orientovaný acyklický graf služieb" msgid "the dependency graph of shepherd services" msgstr "graf závislostí služieb shepherda" -#: guix/scripts/system.scm:482 guix/scripts/home.scm:453 +#: guix/scripts/system.scm:482 guix/scripts/home.scm:466 #, scheme-format msgid " repository URL: ~a~%" msgstr " prepojenie na repozitár: ~a~%" -#: guix/scripts/system.scm:484 guix/scripts/home.scm:455 +#: guix/scripts/system.scm:484 guix/scripts/home.scm:468 #, scheme-format msgid " branch: ~a~%" msgstr " vetva: ~a~%" -#: guix/scripts/system.scm:485 guix/scripts/home.scm:456 +#: guix/scripts/system.scm:485 guix/scripts/home.scm:469 #, scheme-format msgid " commit: ~a~%" msgstr " úprava: ~a~%" -#: guix/scripts/system.scm:505 guix/scripts/home.scm:469 +#: guix/scripts/system.scm:505 guix/scripts/home.scm:482 #, scheme-format msgid " file name: ~a~%" msgstr " názov súboru: ~a~%" -#: guix/scripts/system.scm:506 guix/scripts/home.scm:470 +#: guix/scripts/system.scm:506 guix/scripts/home.scm:483 #, scheme-format msgid " canonical file name: ~a~%" msgstr " normatívny názov súboru: ~a~%" @@ -4381,12 +4482,12 @@ msgstr " zavedenie viacerých operačných systémov (multiboot): ~a~%" #. TRANSLATORS: Here "channel" is the same terminology as used in #. "guix describe" and "guix pull --channels". -#: guix/scripts/system.scm:536 guix/scripts/home.scm:476 +#: guix/scripts/system.scm:536 guix/scripts/home.scm:489 #, scheme-format msgid " channels:~%" msgstr " kanály:~%" -#: guix/scripts/system.scm:539 guix/scripts/home.scm:479 +#: guix/scripts/system.scm:539 guix/scripts/home.scm:492 #, scheme-format msgid " configuration file: ~a~%" msgstr " súbor nastavení: ~a~%" @@ -4426,10 +4527,9 @@ msgid "'vm-image' is deprecated: use 'image' instead~%" msgstr "použitie „vm-image“ sa už neodporúča; namiesto toho použite „image“~%" #: guix/scripts/system.scm:722 -#, fuzzy, scheme-format -#| msgid "'disk-image' is deprecated: use 'image' instead~%" +#, scheme-format msgid "'docker-image' is deprecated: use 'image' instead~%" -msgstr "použitie „disk-image“ sa už neodporúča: namiesto toho použite „image“~%" +msgstr "voľba „docker-image“ je zastaraná: namiesto nej použite „image“~%" #: guix/scripts/system.scm:732 #, scheme-format @@ -4441,17 +4541,17 @@ msgstr "Zvážte spustenie „guix pull“ pred „reconfigure“.~%" msgid "Failing to do that may downgrade your system!~%" msgstr "V opačnom prípade riskujete, že váš systém prejde na staršiu verziu!~%" -#: guix/scripts/system.scm:754 guix/scripts/system.scm:863 +#: guix/scripts/system.scm:754 guix/scripts/system.scm:864 #, scheme-format msgid "bootloader successfully installed on '~a'~%" msgstr "zavádzač bol úspešne nainštalovaný na „~a“~%" -#: guix/scripts/system.scm:856 +#: guix/scripts/system.scm:857 #, scheme-format msgid "activating system...~%" msgstr "spúšťa sa systém...~%" -#: guix/scripts/system.scm:867 +#: guix/scripts/system.scm:868 msgid "" "To complete the upgrade, run 'herd restart SERVICE' to stop,\n" "upgrade, and restart each service that was not automatically restarted.\n" @@ -4459,25 +4559,25 @@ msgstr "" "Aby mohla byť aktualizácia dokončená, spustite „herd restart SLUŽBA“ pre\n" "zastavenie, aktualizovanie a reštart každej SLUŽBY, ktorá nebola automaticky reštartovaná.\n" -#: guix/scripts/system.scm:870 +#: guix/scripts/system.scm:871 msgid "Run 'herd status' to view the list of services on your system.\n" msgstr "Spustite „herd status“ pre zobrazenie zoznam služieb na vašom systéme.\n" -#: guix/scripts/system.scm:874 +#: guix/scripts/system.scm:875 #, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "nastavuje sa operačný systém v „~a“...~%" -#: guix/scripts/system.scm:894 guix/scripts/graph.scm:437 +#: guix/scripts/system.scm:895 guix/scripts/graph.scm:437 #, scheme-format msgid "~a: unknown backend~%" msgstr "~a: neznámy nástroj~%" -#: guix/scripts/system.scm:931 +#: guix/scripts/system.scm:932 msgid "The available image types are:\n" msgstr "Dostupné druhy obrazov sú:\n" -#: guix/scripts/system.scm:941 +#: guix/scripts/system.scm:942 msgid "" "Usage: guix system [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the operating system declared in FILE according to ACTION.\n" @@ -4487,67 +4587,67 @@ msgstr "" "Zostaviť operačný systém zapísaný v SÚBORE vzhľadom na ČINNOSŤ.\n" "Niektoré ČINNOSTI podporujú dodatočné PARAMETRE.\n" -#: guix/scripts/system.scm:947 +#: guix/scripts/system.scm:948 msgid " search search for existing service types\n" msgstr " search hľadať jestvujúce druhy služieb\n" -#: guix/scripts/system.scm:949 +#: guix/scripts/system.scm:950 msgid " reconfigure switch to a new operating system configuration\n" msgstr " reconfigure prepnúť na nové nastavenie systému\n" -#: guix/scripts/system.scm:951 +#: guix/scripts/system.scm:952 msgid " roll-back switch to the previous operating system configuration\n" msgstr " roll-back prepnúť na predchádzajúce nastavenie systému\n" -#: guix/scripts/system.scm:953 +#: guix/scripts/system.scm:954 msgid " describe describe the current system\n" msgstr " describe popísať súčasný systém\n" -#: guix/scripts/system.scm:955 +#: guix/scripts/system.scm:956 msgid " list-generations list the system generations\n" msgstr " list-generations zobraziť pokolenia systému\n" -#: guix/scripts/system.scm:957 +#: guix/scripts/system.scm:958 msgid " switch-generation switch to an existing operating system configuration\n" msgstr " switch-generation prepnúť na niektoré z existujúcich nastavení systému\n" -#: guix/scripts/system.scm:959 +#: guix/scripts/system.scm:960 msgid " delete-generations delete old system generations\n" msgstr " delete-generations odstrániť predchádzajúce pokolenia systému\n" -#: guix/scripts/system.scm:961 +#: guix/scripts/system.scm:962 msgid " build build the operating system without installing anything\n" msgstr " build zostaviť operačný systém ale nič neinštalovať\n" -#: guix/scripts/system.scm:963 +#: guix/scripts/system.scm:964 msgid " container build a container that shares the host's store\n" msgstr " container zostaviť kontajner zdieľajúci úložisko hostiteľa\n" -#: guix/scripts/system.scm:965 +#: guix/scripts/system.scm:966 msgid " vm build a virtual machine image that shares the host's store\n" msgstr " vm zostaviť virtuálny stroj zdieľajúci úložisko hostiteľa\n" -#: guix/scripts/system.scm:967 +#: guix/scripts/system.scm:968 msgid " image build a Guix System image\n" msgstr " image zostaviť obraz systému Guix\n" -#: guix/scripts/system.scm:969 +#: guix/scripts/system.scm:970 msgid " docker-image build a Docker image\n" msgstr " docker-image zostaviť Docker obraz\n" -#: guix/scripts/system.scm:971 +#: guix/scripts/system.scm:972 msgid " init initialize a root file system to run GNU\n" msgstr " init nastaviť koreňový súborový systém pre spustenie GNU\n" -#: guix/scripts/system.scm:973 +#: guix/scripts/system.scm:974 msgid " extension-graph emit the service extension graph in Dot format\n" msgstr " extension-graph vytvoriť graf rozšírení služieb vo formáte Dot\n" -#: guix/scripts/system.scm:975 +#: guix/scripts/system.scm:976 msgid " shepherd-graph emit the graph of shepherd services in Dot format\n" msgstr " shepherd-graph vytvoriť graf služieb shepherda vo formáte Dot\n" -#: guix/scripts/system.scm:979 +#: guix/scripts/system.scm:980 msgid "" "\n" " -d, --derivation return the derivation of the given system" @@ -4555,7 +4655,7 @@ msgstr "" "\n" " -d, --derivation vrátiť odvodeninu zadaného systému" -#: guix/scripts/system.scm:981 +#: guix/scripts/system.scm:982 msgid "" "\n" " -e, --expression=EXPR consider the operating-system EXPR evaluates to\n" @@ -4565,7 +4665,7 @@ msgstr "" " -e, --expression=VÝRAZ vybrať operačný systém určený VÝRAZOM namiesto\n" " čítania SÚBORU, ak je to možné" -#: guix/scripts/system.scm:984 +#: guix/scripts/system.scm:985 guix/scripts/home.scm:95 msgid "" "\n" " --allow-downgrades for 'reconfigure', allow downgrades to earlier\n" @@ -4575,7 +4675,7 @@ msgstr "" " --allow-downgrades pre „reconfigure“, povoliť návrat k starším\n" " úpravám kanálov" -#: guix/scripts/system.scm:987 +#: guix/scripts/system.scm:988 msgid "" "\n" " --on-error=STRATEGY\n" @@ -4587,7 +4687,7 @@ msgstr "" " uplatniť POSTUP (jeden z nothing-special, backtrace\n" " alebo debug) ak sa vyskytne chyba pri čítaní SÚBORU" -#: guix/scripts/system.scm:991 +#: guix/scripts/system.scm:992 msgid "" "\n" " --list-image-types list available image types" @@ -4595,7 +4695,7 @@ msgstr "" "\n" " --list-image-types zobraziť dostupné druhy obrazov" -#: guix/scripts/system.scm:993 +#: guix/scripts/system.scm:994 msgid "" "\n" " -t, --image-type=TYPE for 'image', produce an image of TYPE" @@ -4603,7 +4703,7 @@ msgstr "" "\n" " -t, --image-type=DRUH „obrazu“, vytvoriť DRUH obrazu" -#: guix/scripts/system.scm:995 +#: guix/scripts/system.scm:996 msgid "" "\n" " --image-size=SIZE for 'image', produce an image of SIZE" @@ -4611,7 +4711,7 @@ msgstr "" "\n" " --image-size=VEĽKOSŤ „obrazu“, vytvoriť obraz o VEĽKOSTI" -#: guix/scripts/system.scm:997 +#: guix/scripts/system.scm:998 msgid "" "\n" " --no-bootloader for 'init', do not install a bootloader" @@ -4619,7 +4719,7 @@ msgstr "" "\n" " --no-bootloader pre „init“, neinštalovať zavádzač" -#: guix/scripts/system.scm:999 +#: guix/scripts/system.scm:1000 msgid "" "\n" " --volatile for 'image', make the root file system volatile" @@ -4627,7 +4727,15 @@ msgstr "" "\n" " --volatile „obraz“, nastaviť koreňový súborový systém ako nestály" -#: guix/scripts/system.scm:1001 +#: guix/scripts/system.scm:1002 +msgid "" +"\n" +" --persistent for 'vm', make the root file system persistent" +msgstr "" +"\n" +" --persistent pre „vm“, ustáliť koreňový súborový systém" + +#: guix/scripts/system.scm:1004 msgid "" "\n" " --label=LABEL for 'image', label disk image with LABEL" @@ -4635,7 +4743,7 @@ msgstr "" "\n" " --label=MENOVKA „obrazu“, označiť obraz disku MENOVKOU" -#: guix/scripts/system.scm:1003 guix/scripts/pack.scm:1340 +#: guix/scripts/system.scm:1006 guix/scripts/pack.scm:1340 msgid "" "\n" " --save-provenance save provenance information" @@ -4643,7 +4751,7 @@ msgstr "" "\n" " --save-provenance uložiť údaje o pôvode" -#: guix/scripts/system.scm:1005 +#: guix/scripts/system.scm:1008 msgid "" "\n" " --share=SPEC for 'vm' and 'container', share host file system with\n" @@ -4653,7 +4761,7 @@ msgstr "" " --share=ZADANIE pre „vm“ a „container“, zdieľať hostiteľský súborový systém\n" " na čítanie aj zápis podľa ZADANIA" -#: guix/scripts/system.scm:1008 +#: guix/scripts/system.scm:1011 msgid "" "\n" " --expose=SPEC for 'vm' and 'container', expose host file system\n" @@ -4663,7 +4771,7 @@ msgstr "" " --expose=ZADANIE pre „vm“ a „container“, sprístupniť hostiteľský súborový\n" " systém len na čítanie podľa ZADANIA" -#: guix/scripts/system.scm:1011 +#: guix/scripts/system.scm:1014 msgid "" "\n" " -N, --network for 'container', allow containers to access the network" @@ -4671,7 +4779,7 @@ msgstr "" "\n" " -N, --network pre „container“, umožniť kontajnerom prístup do siete" -#: guix/scripts/system.scm:1013 +#: guix/scripts/system.scm:1016 msgid "" "\n" " -r, --root=FILE for 'vm', 'image', 'container' and 'build',\n" @@ -4683,7 +4791,7 @@ msgstr "" " spraviť zo SÚBORU symbolický odkaz na výsledok a\n" " zaznamenať ho ako koreň zberača odpadkov" -#: guix/scripts/system.scm:1017 +#: guix/scripts/system.scm:1020 msgid "" "\n" " --full-boot for 'vm', make a full boot sequence" @@ -4691,7 +4799,7 @@ msgstr "" "\n" " --full-boot pre „vm“, vykonať úplné zavedenie" -#: guix/scripts/system.scm:1019 +#: guix/scripts/system.scm:1022 msgid "" "\n" " --no-graphic for 'vm', use the tty that we are started in for IO" @@ -4699,7 +4807,7 @@ msgstr "" "\n" " --no-graphic pre „vm“, použiť súčasné tty pre vstup a výstup" -#: guix/scripts/system.scm:1021 +#: guix/scripts/system.scm:1024 msgid "" "\n" " --skip-checks skip file system and initrd module safety checks" @@ -4707,7 +4815,7 @@ msgstr "" "\n" " --skip-checks preskočiť bezpečnostné overenie súborového systému a initrd" -#: guix/scripts/system.scm:1028 +#: guix/scripts/system.scm:1031 msgid "" "\n" " --graph-backend=BACKEND\n" @@ -4717,57 +4825,57 @@ msgstr "" " --graph-backend=NÁSTROJ\n" " použiť NÁSTROJ pre „extension-graphs“ a „shepherd-graph“" -#: guix/scripts/system.scm:1180 +#: guix/scripts/system.scm:1187 #, scheme-format msgid "'~a' does not return an operating system or an image~%" msgstr "„~a“ nevracia operačný systém ani obraz~%" -#: guix/scripts/system.scm:1204 guix/scripts/home.scm:216 +#: guix/scripts/system.scm:1211 guix/scripts/home.scm:230 #, scheme-format msgid "both file and expression cannot be specified~%" msgstr "nie je možné zároveň určiť súbor aj výraz~%" -#: guix/scripts/system.scm:1211 guix/scripts/home.scm:223 +#: guix/scripts/system.scm:1218 guix/scripts/home.scm:237 #, scheme-format msgid "no configuration specified~%" msgstr "nebolo určené žiadne nastavenie~%" -#: guix/scripts/system.scm:1319 guix/scripts/system.scm:1335 -#: guix/scripts/system.scm:1342 guix/scripts/system.scm:1348 -#: guix/scripts/home.scm:274 guix/scripts/home.scm:296 -#: guix/scripts/home.scm:301 guix/scripts/home.scm:307 -#: guix/scripts/home.scm:314 guix/scripts/import/gnu.scm:100 +#: guix/scripts/system.scm:1328 guix/scripts/system.scm:1344 +#: guix/scripts/system.scm:1351 guix/scripts/system.scm:1357 +#: guix/scripts/home.scm:287 guix/scripts/home.scm:309 +#: guix/scripts/home.scm:314 guix/scripts/home.scm:320 +#: guix/scripts/home.scm:327 guix/scripts/import/gnu.scm:100 #: guix/scripts/offload.scm:836 guix/scripts/offload.scm:848 #, scheme-format msgid "wrong number of arguments~%" msgstr "nesprávny počet parametrov~%" -#: guix/scripts/system.scm:1324 +#: guix/scripts/system.scm:1333 #, scheme-format msgid "no system generation, nothing to describe~%" msgstr "žiadne pokolenie systému, nie je k čomu poskytnúť popis~%" -#: guix/scripts/system.scm:1367 guix/scripts/home.scm:337 +#: guix/scripts/system.scm:1376 guix/scripts/home.scm:350 #, scheme-format msgid "~a: unknown action~%" msgstr "~a: neznáma činnosť~%" -#: guix/scripts/system.scm:1387 guix/scripts/home.scm:353 +#: guix/scripts/system.scm:1396 guix/scripts/home.scm:366 #, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "nesprávny počet parametrov pre činnosť „~a“~%" -#: guix/scripts/system.scm:1392 +#: guix/scripts/system.scm:1401 #, scheme-format msgid "guix system: missing command name~%" msgstr "guix system: chýba názov príkazu~%" -#: guix/scripts/system.scm:1394 +#: guix/scripts/system.scm:1403 #, scheme-format msgid "Try 'guix system --help' for more information.~%" msgstr "Skúste „guix system --help“ pre viac podrobností.~%" -#: guix/scripts/system/search.scm:93 guix/ui.scm:1541 guix/ui.scm:1559 +#: guix/scripts/system/search.scm:93 guix/ui.scm:1544 guix/ui.scm:1562 msgid "unknown" msgstr "neznáme" @@ -5231,7 +5339,7 @@ msgstr "" " --path zobraziť najkratšiu cestu medzi danými uzlami" #: guix/scripts/graph.scm:548 guix/scripts/pack.scm:1325 -#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:502 +#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:797 msgid "" "\n" " -e, --expression=EXPR consider the package EXPR evaluates to" @@ -5921,7 +6029,7 @@ msgstr "" "\n" " -f, --format=FORMÁT zobraziť výsledky ako množinu normalizovaných záznamov" -#: guix/scripts/deploy.scm:51 +#: guix/scripts/deploy.scm:54 msgid "" "Usage: guix deploy [OPTION] FILE...\n" "Perform the deployment specified by FILE.\n" @@ -5929,7 +6037,15 @@ msgstr "" "Použitie: guix deploy [VOĽBA] SÚBOR...\n" "Vykonať nasadenie určené SÚBOROM.\n" -#: guix/scripts/deploy.scm:108 +#: guix/scripts/deploy.scm:63 +#, fuzzy +#| msgid " exec execute a command inside of an existing container\n" +msgid "" +"\n" +" -x, --execute execute the following command on all the machines" +msgstr " exec spustiť príkaz v existujúcom kontajneri\n" + +#: guix/scripts/deploy.scm:117 #, scheme-format msgid "The following ~d machine will be deployed:~%" msgid_plural "The following ~d machines will be deployed:~%" @@ -5937,31 +6053,71 @@ msgstr[0] "Nasadí sa nasledovný ~d stroj:~%" msgstr[1] "Nasadia sa nasledovné ~d stroje:~%" msgstr[2] "Nasadí sa nasledovných ~d strojov:~%" -#: guix/scripts/deploy.scm:122 +#: guix/scripts/deploy.scm:131 #, scheme-format msgid "deploying to ~a...~%" msgstr "nasadzuje sa na ~a...~%" -#: guix/scripts/deploy.scm:134 guix/scripts/deploy.scm:138 +#: guix/scripts/deploy.scm:143 guix/scripts/deploy.scm:147 #, scheme-format msgid "failed to deploy ~a: ~a~%" msgstr "nepodarilo sa nasadiť ~a: ~a~%" -#: guix/scripts/deploy.scm:146 +#: guix/scripts/deploy.scm:155 #, scheme-format msgid "rolling back ~a...~%" msgstr "vraciam ~a do pôvodného stavu...~%" -#: guix/scripts/deploy.scm:152 +#: guix/scripts/deploy.scm:161 #, scheme-format msgid "successfully deployed ~a~%" msgstr "nasadzovanie ~a sa podarilo~%" -#: guix/scripts/deploy.scm:167 +#: guix/scripts/deploy.scm:212 +#, fuzzy, scheme-format +#| msgid "~a: command not found~%" +msgid "~a: command succeeded~%" +msgstr "~a: príkaz sa nenašiel~%" + +#: guix/scripts/deploy.scm:215 +#, fuzzy, scheme-format +#| msgid "Command failed with exit code ~a.~%" +msgid "~a: command exited with code ~a~%" +msgstr "Príkaz zlyhal s návratovou hodnotou ~a.~%" + +#: guix/scripts/deploy.scm:218 +#, fuzzy, scheme-format +#| msgid "~a: command not found~%" +msgid "~a: command stopped with signal ~a~%" +msgstr "~a: príkaz sa nenašiel~%" + +#: guix/scripts/deploy.scm:221 +#, fuzzy, scheme-format +#| msgid "~a: consider removing this input: ~a~%" +msgid "~a: command terminated with signal ~a~%" +msgstr "~a: zvážte odobranie tohto vstupu: ~a~%" + +#: guix/scripts/deploy.scm:225 +#, fuzzy, scheme-format +#| msgid "~a: command not found~%" +msgid "command output on ~a:~%" +msgstr "~a: príkaz sa nenašiel~%" + +#: guix/scripts/deploy.scm:246 #, scheme-format msgid "missing deployment file argument~%" msgstr "chýba parameter súboru nasadenia~%" +#: guix/scripts/deploy.scm:249 +#, scheme-format +msgid "'--' was used by '-x' was not specified~%" +msgstr "" + +#: guix/scripts/deploy.scm:271 +#, scheme-format +msgid "'-x' specified but no command given~%" +msgstr "" + #: guix/gexp.scm:465 #, scheme-format msgid "resolving '~a' relative to current directory~%" @@ -6058,75 +6214,71 @@ msgstr "žiadny proces s číslom ~d~%" msgid "exec failed with status ~d~%" msgstr "činnosť exec zlyhala s návratovou hodnotou ~d~%" -#: guix/transformations.scm:185 guix/transformations.scm:253 +#: guix/transformations.scm:186 guix/transformations.scm:254 #, scheme-format msgid "invalid replacement specification: ~s" msgstr "neplatné určenie nahradenia: ~s" -#: guix/transformations.scm:234 +#: guix/transformations.scm:235 #, scheme-format msgid "the source of ~a is not a Git reference" msgstr "zdroj balíka ~a nie je Git prepojenie" -#: guix/transformations.scm:337 +#: guix/transformations.scm:338 #, scheme-format msgid "~a: invalid Git URL replacement specification" msgstr "~a: neplatné určenie nahradenia Git prepojenia" -#: guix/transformations.scm:415 +#: guix/transformations.scm:416 #, scheme-format msgid "~a: invalid toolchain replacement specification" msgstr "~a: neplatné určenie nahradenia vývojového reťazca" -#: guix/transformations.scm:517 -#, fuzzy -#| msgid "failed to determine origin~%" +#: guix/transformations.scm:518 msgid "failed to determine which compiler is used" -msgstr "zisťovanie pôvodu zlyhalo~%" +msgstr "nepodarilo sa zistiť, ktorý kompilátor sa používa" -#: guix/transformations.scm:523 -#, fuzzy, scheme-format -#| msgid "failed to determine latest release of GNU ~a" +#: guix/transformations.scm:524 +#, scheme-format msgid "failed to determine whether ~a supports ~a" -msgstr "nepodarilo sa zistiť najnovšie vydanie GNU ~a" +msgstr "nepodarilo sa zistiť či ~a podporuje ~a" -#: guix/transformations.scm:529 +#: guix/transformations.scm:530 #, scheme-format msgid "compiler ~a does not support micro-architecture ~a" -msgstr "" +msgstr "kompilátor ~a nepodporuje mikro-architektúru ~a" -#: guix/transformations.scm:581 -#, fuzzy, scheme-format -#| msgid "~a for ~a~%" +#: guix/transformations.scm:582 +#, scheme-format msgid "tuning ~a for CPU ~a~%" -msgstr "~a pre ~a~%" +msgstr "vylaďuje sa ~a pre procesory ~a~%" -#: guix/transformations.scm:721 +#: guix/transformations.scm:722 #, scheme-format msgid "~a: invalid package patch specification" msgstr "~a: neplatné určenie záplaty balíka" -#: guix/transformations.scm:744 +#: guix/transformations.scm:745 #, scheme-format msgid "could not determine latest upstream release of '~a'~%" msgstr "nepodarilo sa zistiť najnovšie vydanie balíka „~a“ u poskytovateľa~%" -#: guix/transformations.scm:752 +#: guix/transformations.scm:753 #, scheme-format msgid "cannot authenticate source of '~a', version ~a~%" msgstr "nepodarilo sa overiť zdroj „~a“, verzia ~a~%" -#: guix/transformations.scm:833 +#: guix/transformations.scm:840 #, scheme-format msgid "building for ~a instead of ~a, so tuning cannot be guessed~%" -msgstr "" +msgstr "zostavuje sa pre ~a namiesto ~a, takže vyladenie nemožno uhádnuť~%" -#: guix/transformations.scm:859 +#: guix/transformations.scm:866 #, scheme-format msgid "Available package transformation options:~%" msgstr "Dostupné možnosti premeny balíka:~%" -#: guix/transformations.scm:865 +#: guix/transformations.scm:872 msgid "" "\n" " --with-source=[PACKAGE=]SOURCE\n" @@ -6136,7 +6288,7 @@ msgstr "" " --with-source=[BALÍK=]ZDROJ\n" " použiť ZDROJ pri zostavení BALÍKA" -#: guix/transformations.scm:868 +#: guix/transformations.scm:875 msgid "" "\n" " --with-input=PACKAGE=REPLACEMENT\n" @@ -6146,7 +6298,7 @@ msgstr "" " --with-input=BALÍK=NÁHRADNÝ-BALÍK\n" " použiť NÁHRADNÝ-BALÍK namiesto BALÍKA závislosti" -#: guix/transformations.scm:871 +#: guix/transformations.scm:878 msgid "" "\n" " --with-graft=PACKAGE=REPLACEMENT\n" @@ -6156,7 +6308,7 @@ msgstr "" " --with-graft=BALÍK=NÁHRADNÝ-BALÍK\n" " vštepiť NÁHRADNÝ-BALÍK balíkom, ktoré odkazujú na BALÍK" -#: guix/transformations.scm:874 +#: guix/transformations.scm:881 msgid "" "\n" " --with-branch=PACKAGE=BRANCH\n" @@ -6166,7 +6318,7 @@ msgstr "" " --with-branch=BALÍK=VETVA\n" " zostaviť najnovšiu úpravu BALÍKA z VETVY" -#: guix/transformations.scm:877 +#: guix/transformations.scm:884 msgid "" "\n" " --with-commit=PACKAGE=COMMIT\n" @@ -6176,7 +6328,7 @@ msgstr "" " --with-commit=BALÍK=ÚPRAVA\n" " zostaviť BALÍK z ÚPRAVY" -#: guix/transformations.scm:880 +#: guix/transformations.scm:887 msgid "" "\n" " --with-git-url=PACKAGE=URL\n" @@ -6186,7 +6338,7 @@ msgstr "" " --with-git-url=BALÍK=PREPOJENIE\n" " zostaviť BALÍK z repozitára dostupného cez PREPOJENIE" -#: guix/transformations.scm:883 +#: guix/transformations.scm:890 msgid "" "\n" " --with-patch=PACKAGE=FILE\n" @@ -6196,7 +6348,7 @@ msgstr "" " --with-patch=BALÍK=SÚBOR\n" " pridať SÚBOR do zoznamu záplat pre BALÍK" -#: guix/transformations.scm:886 +#: guix/transformations.scm:893 msgid "" "\n" " --with-latest=PACKAGE\n" @@ -6206,7 +6358,7 @@ msgstr "" " --with-latest=BALÍK\n" " použiť najnovšie dostupné vydanie BALÍKA" -#: guix/transformations.scm:889 +#: guix/transformations.scm:896 msgid "" "\n" " --with-c-toolchain=PACKAGE=TOOLCHAIN\n" @@ -6216,7 +6368,7 @@ msgstr "" " --with-c-toolchain=BALÍK=VÝVOJOVÝ-REŤAZEC\n" " zostaviť BALÍK a jeho závislosti pomocou VÝVOJOVÉHO-REŤAZCA" -#: guix/transformations.scm:892 +#: guix/transformations.scm:899 msgid "" "\n" " --with-debug-info=PACKAGE\n" @@ -6226,7 +6378,7 @@ msgstr "" " --with-debug-info=BALÍK\n" " zostaviť BALÍK zachovajúc symboly ladenia" -#: guix/transformations.scm:895 +#: guix/transformations.scm:902 msgid "" "\n" " --without-tests=PACKAGE\n" @@ -6236,7 +6388,7 @@ msgstr "" " --without-tests=BALÍK\n" " zostaviť BALÍK vynechajúc testy" -#: guix/transformations.scm:901 +#: guix/transformations.scm:908 msgid "" "\n" " --help-transform list package transformation options not shown here" @@ -6244,7 +6396,7 @@ msgstr "" "\n" " --help-transform ukázať možnosti premeny balíka, ktoré tu nie sú zobrazené" -#: guix/transformations.scm:950 +#: guix/transformations.scm:957 #, scheme-format msgid "transformation '~a' had no effect on ~a~%" msgstr "premena „~a“ nemá dopad na ~a~%" @@ -6769,12 +6921,12 @@ msgstr[2] "Nainštalujú sa nasledovné balíky:~%~{~a~%~}~%" msgid "~a: invalid Texinfo markup~%" msgstr "~a: neplatné Texinfo značenie~%" -#: guix/ui.scm:1873 +#: guix/ui.scm:1876 #, scheme-format msgid "invalid syntax: ~a~%" msgstr "neplatná skladba: ~a~%" -#: guix/ui.scm:1882 +#: guix/ui.scm:1885 #, scheme-format msgid "Generation ~a\t~a" msgstr "Pokolenie ~a\t~a" @@ -6784,7 +6936,7 @@ msgstr "Pokolenie ~a\t~a" #. usual way of presenting dates in your locale. #. See https://www.gnu.org/software/guile/manual/html_node/SRFI_002d19-Date-to-string.html #. for details. -#: guix/ui.scm:1892 +#: guix/ui.scm:1895 #, scheme-format msgid "~b ~d ~Y ~T" msgstr "~d. ~B ~Y ~T" @@ -6792,37 +6944,37 @@ msgstr "~d. ~B ~Y ~T" #. TRANSLATORS: The word "current" here is an adjective for #. "Generation", as in "current generation". Use the appropriate #. gender where applicable. -#: guix/ui.scm:1898 +#: guix/ui.scm:1901 #, scheme-format msgid "~a\t(current)~%" msgstr "~a\t(súčasné)~%" -#: guix/ui.scm:1932 +#: guix/ui.scm:1935 #, scheme-format msgid "cannot lock profile ~a: ~a~%" msgstr "nedá sa uzamknúť profil ~a: ~a~%" -#: guix/ui.scm:1934 +#: guix/ui.scm:1937 #, scheme-format msgid "profile ~a is locked by another process~%" msgstr "profil ~a bol uzamknutý iným procesom~%" -#: guix/ui.scm:1963 +#: guix/ui.scm:1966 #, scheme-format msgid "switched from generation ~a to ~a~%" msgstr "preplo sa z pokolenia ~a na ~a~%" -#: guix/ui.scm:1979 +#: guix/ui.scm:1982 #, scheme-format msgid "deleting ~a~%" msgstr "odstraňuje sa ~a~%" -#: guix/ui.scm:2010 +#: guix/ui.scm:2013 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "Skúste „guix --help“ pre viac podrobností.~%" -#: guix/ui.scm:2102 +#: guix/ui.scm:2105 msgid "" "Usage: guix OPTION | COMMAND ARGS...\n" "Run COMMAND with ARGS, if given.\n" @@ -6830,7 +6982,7 @@ msgstr "" "Použitie: guix VOĽBA | PRÍKAZ PARAMETRE...\n" "Spustiť PRÍKAZ s PARAMETRAMI, ak boli poskytnuté.\n" -#: guix/ui.scm:2105 +#: guix/ui.scm:2108 msgid "" "\n" " -h, --help display this helpful text again and exit" @@ -6838,7 +6990,7 @@ msgstr "" "\n" " -h, --help zobraziť túto pomocnú správu a skončiť" -#: guix/ui.scm:2107 +#: guix/ui.scm:2110 msgid "" "\n" " -V, --version display version and copyright information and exit" @@ -6846,26 +6998,26 @@ msgstr "" "\n" " -V, --version zobraziť podrobnosti o verzii a autorských právach a skončiť" -#: guix/ui.scm:2112 +#: guix/ui.scm:2115 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "PRÍKAZ musí byť jeden z nižšie uvedených podpríkazov:\n" -#: guix/ui.scm:2154 +#: guix/ui.scm:2157 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "guix: ~a: príkaz sa nenašiel~%" -#: guix/ui.scm:2156 +#: guix/ui.scm:2159 #, scheme-format msgid "Did you mean @code{~a}?" msgstr "Mali ste na mysli @code{~a}?" -#: guix/ui.scm:2190 +#: guix/ui.scm:2193 #, scheme-format msgid "guix: missing command name~%" msgstr "guix: postráda sa názov príkazu~%" -#: guix/ui.scm:2198 +#: guix/ui.scm:2201 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "guix: neznáma voľba „~a“~%" @@ -6895,10 +7047,8 @@ msgid "listing Emacs sub-directories..." msgstr "vytvára sa zoznam podpriečinkov Emacsu..." #: guix/status.scm:385 -#, fuzzy -#| msgid "generating GLib schema cache..." msgid "generating GdkPixbuf loaders cache..." -msgstr "vytvára sa vyrovnávacia pamäť GLib nákresov…" +msgstr "vytvára sa vyrovnávacia pamäť spúšťačov GdkPixbuf…" #: guix/status.scm:387 msgid "generating GLib schema cache..." @@ -7209,22 +7359,22 @@ msgstr "žiaden odtlačok SHA256 pre zdroj" msgid "unsupported manifest format" msgstr "nepodporovaný formát manifestu" -#: guix/profiles.scm:2242 +#: guix/profiles.scm:2247 #, scheme-format msgid "while creating directory `~a': ~a" msgstr "pri vytváraní priečinka „~a“: ~a" -#: guix/profiles.scm:2247 +#: guix/profiles.scm:2252 #, scheme-format msgid "Please create the @file{~a} directory, with you as the owner." msgstr "Vytvorte priečinok @file{~a}, ktorého budete vlastníkom." -#: guix/profiles.scm:2256 +#: guix/profiles.scm:2261 #, scheme-format msgid "directory `~a' is not owned by you" msgstr "nie ste vlastníkom priečinka „~a“" -#: guix/profiles.scm:2260 +#: guix/profiles.scm:2265 #, scheme-format msgid "Please change the owner of @file{~a} to user ~s." msgstr "Zmeňte vlastníka priečinka @file{~a} na používateľa ~s." @@ -7938,11 +8088,16 @@ msgstr "nedá sa použiť --no-cwd bez --container~%" msgid "'--profile' cannot be used with package options~%" msgstr "nedá sa použiť „--profile“ s voľbami balíka~%" -#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:275 +#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:261 #, scheme-format msgid "no packages specified; creating an empty environment~%" msgstr "neboli určené žiadne balíky; vytvára sa prázdne prostredie~%" +#: guix/scripts/environment.scm:979 +#, scheme-format +msgid "'--check' is unnecessary when using '--container'; doing nothing~%" +msgstr "" + #: guix/scripts/home/import.scm:179 msgid "" ";; This \"home-environment\" file can be passed to 'guix home reconfigure'\n" @@ -7957,7 +8112,7 @@ msgstr "" ";; aj použité kanály, o ktorých podrobnosti poskytuje príkaz „guix describe“.\n" ";; Pozri oddiel „Rozmnožovanie systému Guix“ v príručke.\n" -#: guix/scripts/home.scm:65 +#: guix/scripts/home.scm:66 msgid "" "Usage: guix home [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the home environment declared in FILE according to ACTION.\n" @@ -7967,43 +8122,43 @@ msgstr "" "Zostaviť domovské prostredie zapísané v SÚBORE vzhľadom na ČINNOSŤ.\n" "Niektoré ČINNOSTI podporujú dodatočné PARAMETRE.\n" -#: guix/scripts/home.scm:71 +#: guix/scripts/home.scm:72 msgid " search search for existing service types\n" msgstr " search hľadať jestvujúce druhy služieb\n" -#: guix/scripts/home.scm:73 +#: guix/scripts/home.scm:74 msgid " reconfigure switch to a new home environment configuration\n" msgstr " reconfigure prepnúť na nové nastavenie domovského prostredia\n" -#: guix/scripts/home.scm:75 +#: guix/scripts/home.scm:76 msgid " roll-back switch to the previous home environment configuration\n" msgstr " roll-back prepnúť na predchádzajúce nastavenie domovského prostredia\n" -#: guix/scripts/home.scm:77 +#: guix/scripts/home.scm:78 msgid " describe describe the current home environment\n" msgstr " describe popísať súčasné domovské prostredie\n" -#: guix/scripts/home.scm:79 +#: guix/scripts/home.scm:80 msgid " list-generations list the home environment generations\n" msgstr " list-generations zobraziť zoznam pokolení domovského prostredia\n" -#: guix/scripts/home.scm:81 +#: guix/scripts/home.scm:82 msgid " switch-generation switch to an existing home environment configuration\n" msgstr " switch-generation prepnúť na jestvujúce nastavenie domovského prostredia\n" -#: guix/scripts/home.scm:83 +#: guix/scripts/home.scm:84 msgid " delete-generations delete old home environment generations\n" msgstr " delete-generations odstrániť predchádzajúce pokolenia domovského prostredia\n" -#: guix/scripts/home.scm:85 +#: guix/scripts/home.scm:86 msgid " build build the home environment without installing anything\n" msgstr " build zostaviť domovské prostredie ale nič neinštalovať\n" -#: guix/scripts/home.scm:87 +#: guix/scripts/home.scm:88 msgid " import generates a home environment definition from dotfiles\n" msgstr " import vytvoriť určenie domovského prostredia na základe súborov nastavení\n" -#: guix/scripts/home.scm:91 +#: guix/scripts/home.scm:92 msgid "" "\n" " -e, --expression=EXPR consider the home-environment EXPR evaluates to\n" @@ -8013,17 +8168,17 @@ msgstr "" " -e, --expression=VÝRAZ zohľadniť domovské prostredie určené VÝRAZOM namiesto\n" " čítania SÚBORU, ak je to možné" -#: guix/scripts/home.scm:196 +#: guix/scripts/home.scm:210 #, scheme-format msgid "'~a' does not return a home environment ~%" msgstr "„~a“ nevracia domovské prostredie ~%" -#: guix/scripts/home.scm:280 +#: guix/scripts/home.scm:293 #, scheme-format msgid "'~a' populated with all the Home configuration files~%" msgstr "„~a“ obsahuje všetky súbory nastavení domovského priečinka~%" -#: guix/scripts/home.scm:282 +#: guix/scripts/home.scm:295 #, scheme-format msgid "" "Run @command{guix home reconfigure ~a/home-configuration.scm} to effectively\n" @@ -8032,22 +8187,22 @@ msgstr "" "Vykonajte @command{guix home reconfigure ~a/home-configuration.scm} pre nasadenie\n" "domovského prostredia, ktoré určujú tieto súbory.\n" -#: guix/scripts/home.scm:289 +#: guix/scripts/home.scm:302 #, scheme-format msgid "no home environment generation, nothing to describe~%" msgstr "žiadne pokolenie domovského prostredia, nie je čo popísať~%" -#: guix/scripts/home.scm:358 +#: guix/scripts/home.scm:371 #, scheme-format msgid "guix home: missing command name~%" msgstr "guix home: chýba názov príkazu~%" -#: guix/scripts/home.scm:360 +#: guix/scripts/home.scm:373 #, scheme-format msgid "Try 'guix home --help' for more information.~%" msgstr "Skúste „guix home --help“ pre viac podrobností.~%" -#: guix/scripts/home.scm:528 +#: guix/scripts/home.scm:541 #, scheme-format msgid "cannot switch to home environment generation '~a'~%" msgstr "nepodarilo sa prepnúť na pokolenie domovského prostredia „~a“~%" @@ -8094,7 +8249,7 @@ msgstr "" #: guix/scripts/import/cpan.scm:83 guix/scripts/import/crate.scm:97 #: guix/scripts/import/egg.scm:100 guix/scripts/import/gem.scm:98 -#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:100 +#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:101 #, scheme-format msgid "failed to download meta-data for package '~a'~%" msgstr "zlyhalo sťahovanie meta-údajov pre balík „~a“~%" @@ -8194,7 +8349,7 @@ msgstr "" "\n" " --pin-versions použiť presné verzie závislostí modulu" -#: guix/scripts/import/go.scm:117 +#: guix/scripts/import/go.scm:118 #, scheme-format msgid "failed to download meta-data for module '~a'.~%" msgstr "nepodarilo sa stiahnuť meta-údaje modulu „~a“.~%" @@ -8347,6 +8502,11 @@ msgstr "" "Použitie: guix import texlive NÁZOV-BALÍKA\n" "Nahrať a previesť Texlive balík s NÁZVOM-BALÍKA.\n" +#: guix/scripts/import/texlive.scm:84 +#, scheme-format +msgid "failed to import package '~a'~%" +msgstr "chyba pri nahrávaní balíka „~a“~%" + #: guix/scripts/offload.scm:130 #, scheme-format msgid "The 'system' field is deprecated, please use 'systems' instead.~%" @@ -8834,7 +8994,7 @@ msgstr "spojenie ukončené~%" msgid "~a: unknown type of REPL~%" msgstr "~a: neznámy druh REPL~%" -#: guix/scripts/shell.scm:46 +#: guix/scripts/shell.scm:48 msgid "" "Usage: guix shell [OPTION] PACKAGES... [-- COMMAND...]\n" "Build an environment that includes PACKAGES and execute COMMAND or an\n" @@ -8844,7 +9004,7 @@ msgstr "" "Zostaviť prostredie, ktoré zahŕňa BALÍKY a spustiť PRÍKAZ alebo\n" "interaktívny shell v tomto prostredí.\n" -#: guix/scripts/shell.scm:52 +#: guix/scripts/shell.scm:54 msgid "" "\n" " -D, --development include the development inputs of the next package" @@ -8852,7 +9012,7 @@ msgstr "" "\n" " -D, --development zahrnúť vývojové vstupy ďalšieho balíka" -#: guix/scripts/shell.scm:54 +#: guix/scripts/shell.scm:56 msgid "" "\n" " -f, --file=FILE add to the environment the package FILE evaluates to" @@ -8860,7 +9020,7 @@ msgstr "" "\n" " -f, --file=SÚBOR pridať do prostredia balík, ktorý je výsledkom vyhodnotenia SÚBORU" -#: guix/scripts/shell.scm:56 +#: guix/scripts/shell.scm:58 msgid "" "\n" " -q inhibit loading of 'guix.scm' and 'manifest.scm'" @@ -8868,7 +9028,7 @@ msgstr "" "\n" " -q zabrániť nahratiu „guix.scm„ a „manifest.scm“" -#: guix/scripts/shell.scm:58 +#: guix/scripts/shell.scm:60 msgid "" "\n" " --rebuild-cache rebuild cached environment, if any" @@ -8876,22 +9036,22 @@ msgstr "" "\n" " --rebuild-cache opätovne zostaviť prostredie vo vyrovnávacej pamäti, ak jestvuje" -#: guix/scripts/shell.scm:199 +#: guix/scripts/shell.scm:201 #, scheme-format msgid "ignoring invalid file name: '~a'~%" msgstr "vynecháva sa neplatný názov súboru: „~a“~%" -#: guix/scripts/shell.scm:280 +#: guix/scripts/shell.scm:266 #, scheme-format msgid "loading environment from '~a'...~%" msgstr "načítavanie prostredia z „~a“...~%" -#: guix/scripts/shell.scm:286 +#: guix/scripts/shell.scm:272 #, scheme-format msgid "not loading '~a' because not authorized to do so~%" msgstr "„~a“ sa nenačíta, pretože to nie je povolené~%" -#: guix/scripts/shell.scm:288 +#: guix/scripts/shell.scm:274 #, scheme-format msgid "" "To allow automatic loading of\n" @@ -8910,7 +9070,7 @@ msgstr "" "echo ~a >> ~a\n" "@end example\n" -#: guix/scripts/shell.scm:386 +#: guix/scripts/shell.scm:431 msgid "" "Consider passing the @option{--check} option once\n" "to make sure your shell does not clobber environment variables." @@ -8918,77 +9078,86 @@ msgstr "" "Zvážte použitie voľby @option{--check}, aby ste sa uistili, že\n" "váš shell neprepisuje premenné prostredia." -#: guix/scripts/style.scm:241 -#, fuzzy, scheme-format -#| msgid "~s: invalid G-expression input~%" +#: guix/scripts/style.scm:499 +#, scheme-format msgid "~a: complex expression, bailing out~%" -msgstr "~s: neplatný G-výraz na vstupe~%" +msgstr "~a: zložený výraz, preskakuje sa~%" -#: guix/scripts/style.scm:259 -#, fuzzy, scheme-format -#| msgid "module name ~a does not match file name '~a'~%" +#: guix/scripts/style.scm:517 +#, scheme-format msgid "~a: input label '~a' does not match package name, bailing out~%" -msgstr "názov modulu ~a sa nezhoduje s názvom súboru „~a“~%" +msgstr "~a: menovka vstupu „~a“ sa nezhoduje s názvom balíka, preskakuje sa~%" -#: guix/scripts/style.scm:264 +#: guix/scripts/style.scm:522 #, scheme-format msgid "~a: non-trivial input, bailing out~%" -msgstr "" +msgstr "~a : nejednoznačný vstup, preskakuje sa~%" -#: guix/scripts/style.scm:288 -#, fuzzy, scheme-format -#| msgid "~s: invalid G-expression input~%" +#: guix/scripts/style.scm:546 +#, scheme-format msgid "~a: input expression is too short~%" -msgstr "~s: neplatný G-výraz na vstupe~%" +msgstr "~a: vstupný výraz je prikrátky~%" -#: guix/scripts/style.scm:380 -#, fuzzy, scheme-format -#| msgid "~a: unsupported kind of search path~%" +#: guix/scripts/style.scm:638 +#, scheme-format msgid "~a: unsupported input style, bailing out~%" -msgstr "~a: nepodporovaný druh prehľadávanej cesty~%" +msgstr "~a: nepodporovaný tvar vstupu, preskakuje sa~%" -#: guix/scripts/style.scm:392 +#: guix/scripts/style.scm:650 #, scheme-format msgid "would be edited~%" -msgstr "" +msgstr "by sa upravilo~%" -#: guix/scripts/style.scm:482 -#, fuzzy, scheme-format -#| msgid "~a: invalid symlink specification~%" +#: guix/scripts/style.scm:721 +#, scheme-format +msgid "no definition location for package ~a~%" +msgstr "balík ~a postráda umiestnenie zadania~%" + +#: guix/scripts/style.scm:767 +#, scheme-format +msgid "~a: unknown styling~%" +msgstr "~a: neznámy tvar~%" + +#: guix/scripts/style.scm:774 +#, scheme-format msgid "~a: invalid input simplification policy~%" -msgstr "~a: neplatne zadaný symbolický odkaz~%" +msgstr "~a: neplatná politika zjednodušovania vstupov~%" -#: guix/scripts/style.scm:496 -#, fuzzy -#| msgid "" -#| "Usage: guix archive [OPTION]... PACKAGE...\n" -#| "Export/import one or more packages from/to the store.\n" +#: guix/scripts/style.scm:788 msgid "" "Usage: guix style [OPTION]... [PACKAGE]...\n" "Update package definitions to the latest style.\n" msgstr "" -"Použitie: guix archive [VOĽBA]... BALÍK...\n" -"Exportovať/načítať jeden alebo viac balíkov z/do úložiska.\n" +"Použitie: guix style [VOĽBA]... [BALÍK]...\n" +"Aktualizovať zadania balíkov na najnovší tvar..\n" -#: guix/scripts/style.scm:498 -#, fuzzy -#| msgid "" -#| "\n" -#| " -n, --dry-run do not build the derivations" +#: guix/scripts/style.scm:790 +msgid "" +"\n" +" -S, --styling=RULE apply RULE, a styling rule" +msgstr "" +"\n" +" -S, --styling=PRAVIDLO uplatniť tvarovacie PRAVIDLO" + +#: guix/scripts/style.scm:793 msgid "" "\n" " -n, --dry-run display files that would be edited but do nothing" msgstr "" "\n" -" -n, --dry-run\tnezostavovať odvodeniny" +" -n, --dry-run\tzobraziť súbory, ktoré by boli upravené ale nevykonať nič" -#: guix/scripts/style.scm:504 +#: guix/scripts/style.scm:799 msgid "" "\n" " --input-simplification=POLICY\n" " follow POLICY for package input simplification, one\n" " of 'silent', 'safe', or 'always'" msgstr "" +"\n" +" --input-simplification=POLITIKA\n" +" držať sa POLITIKY pri zjednodušovaní vstupov balíkov,\n" +" „silent“, „safe“ alebo „always“" #: guix/scripts/system/reconfigure.scm:317 #, scheme-format @@ -9133,6 +9302,16 @@ msgstr "počúvať spojenia na SOCKETE" msgid "produce debugging output" msgstr "vytvárať výstup ladenia" +#~ msgid "Please select a disk." +#~ msgstr "Vyberte disk." + +#~ msgid "" +#~ "Failed to import package ~s.\n" +#~ "reason: ~s.~%" +#~ msgstr "" +#~ "Nepodarilo sa nahrať balík ~s.\n" +#~ "dôvod: ~s.~%" + #~ msgid "Other services" #~ msgstr "Ďalšie služby" diff --git a/po/guix/sr.po b/po/guix/sr.po index aa25a33041..1eebf15f8f 100644 --- a/po/guix/sr.po +++ b/po/guix/sr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: guix-0.7-pre1\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" "PO-Revision-Date: 2014-09-13 11:19+0200\n" "Last-Translator: Мирослав Николић \n" "Language-Team: Serbian <(nothing)>\n" @@ -50,37 +50,37 @@ msgstr "" msgid "Try adding @code{(use-service-modules ~a)}." msgstr "" -#: gnu/packages.scm:96 +#: gnu/packages.scm:97 #, fuzzy, scheme-format msgid "~a: patch not found" msgstr "~a: нисам пронашао пакет~%" -#: gnu/packages.scm:480 gnu/packages.scm:521 +#: gnu/packages.scm:481 gnu/packages.scm:522 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "нејасна одредница пакета „~a“~%" -#: gnu/packages.scm:481 gnu/packages.scm:522 +#: gnu/packages.scm:482 gnu/packages.scm:523 #, fuzzy, scheme-format msgid "choosing ~a@~a from ~a~%" msgstr "бирам ~a из ~a~%" -#: gnu/packages.scm:486 guix/scripts/package.scm:216 +#: gnu/packages.scm:487 guix/scripts/package.scm:218 #, fuzzy, scheme-format msgid "package '~a' has been superseded by '~a'~%" msgstr "пакет „~a“ нема извор~%" -#: gnu/packages.scm:493 gnu/packages.scm:510 +#: gnu/packages.scm:494 gnu/packages.scm:511 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A: нисам пронашао пакет за издање ~a~%" -#: gnu/packages.scm:494 gnu/packages.scm:511 +#: gnu/packages.scm:495 gnu/packages.scm:512 #, scheme-format msgid "~A: unknown package~%" msgstr "~A: непознат пакет~%" -#: gnu/packages.scm:550 +#: gnu/packages.scm:551 #, scheme-format msgid "package `~a' lacks output `~a'~%" msgstr "пакету „~a“ недостаје излаз „~a“~%" @@ -269,14 +269,14 @@ msgid "" "@code{SIGKILL}." msgstr "" -#: gnu/home/services.scm:127 +#: gnu/home/services.scm:128 msgid "" "Build the home environment top-level directory,\n" "which in turn refers to everything the home environment needs: its\n" "packages, configuration files, activation script, and so on." msgstr "" -#: gnu/home/services.scm:158 +#: gnu/home/services.scm:159 #, scheme-format msgid "" "This is the @dfn{home profile} and can be found in\n" @@ -285,21 +285,21 @@ msgid "" "@code{home-environment} record." msgstr "" -#: gnu/home/services.scm:180 +#: gnu/home/services.scm:181 #, scheme-format msgid "duplicate definition for `~a' environment variable ~%" msgstr "" -#: gnu/home/services.scm:242 +#: gnu/home/services.scm:243 msgid "Set the environment variables." msgstr "" -#: gnu/home/services.scm:253 +#: gnu/home/services.scm:254 #, scheme-format msgid "duplicate '~a' entry for files/" msgstr "" -#: gnu/home/services.scm:277 +#: gnu/home/services.scm:278 #, scheme-format msgid "" "Configuration files for programs that\n" @@ -308,7 +308,7 @@ msgstr "" #. TRANSLATORS: 'on-first-login' is the name of a service and #. shouldn't be translated -#: gnu/home/services.scm:308 +#: gnu/home/services.scm:309 msgid "" "XDG_RUNTIME_DIR doesn't exists, on-first-login script\n" "won't execute anything. You can check if xdg runtime directory exists,\n" @@ -316,13 +316,13 @@ msgid "" "script by running '$HOME/.guix-home/on-first-login'" msgstr "" -#: gnu/home/services.scm:328 +#: gnu/home/services.scm:329 msgid "" "Run gexps on first user login. Can be\n" "extended with one gexp." msgstr "" -#: gnu/home/services.scm:391 +#: gnu/home/services.scm:392 msgid "" "Run gexps to activate the current\n" "generation of home environment and update the state of the home\n" @@ -331,33 +331,33 @@ msgid "" "with one gexp, but many times, and all gexps must be idempotent." msgstr "" -#: gnu/home/services.scm:472 +#: gnu/home/services.scm:473 #, scheme-format msgid "" "Comparing ~a and\n" "~10t~a..." msgstr "" -#: gnu/home/services.scm:474 +#: gnu/home/services.scm:475 #, scheme-format msgid " done (~a)\n" msgstr "" #. TRANSLATORS: 'on-change' is the name of a service type, it #. probably shouldn't be translated. -#: gnu/home/services.scm:483 +#: gnu/home/services.scm:484 msgid "" "Evaluating on-change gexps.\n" "\n" msgstr "" -#: gnu/home/services.scm:485 +#: gnu/home/services.scm:486 msgid "" "On-change gexps evaluation finished.\n" "\n" msgstr "" -#: gnu/home/services.scm:499 +#: gnu/home/services.scm:500 msgid "" "G-expressions to run if the specified files have changed since the\n" "last generation. The extension should be a list of lists where the\n" @@ -365,7 +365,7 @@ msgid "" "changed, and the second element is the G-expression to be evaluated." msgstr "" -#: gnu/home/services.scm:519 +#: gnu/home/services.scm:520 msgid "" "Store provenance information about the home environment in the home\n" "environment itself: the channels used when building the home\n" @@ -624,12 +624,12 @@ msgstr "" msgid "Updater for ELPA packages" msgstr "" -#: guix/import/github.scm:170 +#: guix/import/github.scm:175 #, scheme-format msgid "~a is unreachable (~a)~%" msgstr "" -#: guix/import/github.scm:260 +#: guix/import/github.scm:274 msgid "Updater for GitHub packages" msgstr "" @@ -667,12 +667,23 @@ msgstr "~A: нисам пронашао пакет за издање ~a~%" msgid "failed to determine latest release of GNU ~a" msgstr "нисам успео да изградим празан профил~%" -#: guix/import/go.scm:569 +#: guix/import/go.scm:571 #, scheme-format msgid "unsupported vcs type '~a' for package '~a'" msgstr "" -#: guix/import/go.scm:647 +#: guix/import/go.scm:594 +#, fuzzy, scheme-format +#| msgid "~a: note: using ~a but ~a is available upstream~%" +msgid "version ~a of ~a is not available~%" +msgstr "~a: напомена: користим ~a али ~a је доступно узводно~%" + +#: guix/import/go.scm:597 +#, scheme-format +msgid "Pick one of the following available versions:~{ ~a~}." +msgstr "" + +#: guix/import/go.scm:671 #, scheme-format msgid "" "Failed to import package ~s.\n" @@ -680,13 +691,6 @@ msgid "" "This package and its dependencies won't be imported.~%" msgstr "" -#: guix/import/go.scm:656 -#, fuzzy, scheme-format -msgid "" -"Failed to import package ~s.\n" -"reason: ~s.~%" -msgstr "нисам успео да убележим „~a“ под „~a“~%" - #: guix/import/minetest.scm:178 #, scheme-format msgid "In ~a: author names must consist of at least a single character.~%" @@ -780,77 +784,99 @@ msgstr "пакет „~a“ нема извор~%" msgid "Updater for OPAM packages" msgstr "" -#: guix/import/pypi.scm:230 +#: guix/import/pypi.scm:233 msgid "Could not extract requirement name in spec:" msgstr "" -#: guix/import/pypi.scm:290 +#: guix/import/pypi.scm:293 #, scheme-format msgid "parse-requires.txt reached an unexpected condition on line ~a~%" msgstr "" -#: guix/import/pypi.scm:356 +#: guix/import/pypi.scm:359 #, fuzzy, scheme-format msgid "Failed to extract file: ~a from wheel.~%" msgstr "нисам успео да убележим „~a“ под „~a“~%" -#: guix/import/pypi.scm:385 +#: guix/import/pypi.scm:388 #, scheme-format msgid "Cannot guess requirements from source archive: no requires.txt file found.~%" msgstr "" -#: guix/import/pypi.scm:390 +#: guix/import/pypi.scm:393 #, scheme-format msgid "Unsupported archive format; cannot determine package dependencies from source archive: ~a~%" msgstr "" -#: guix/import/pypi.scm:489 +#: guix/import/pypi.scm:434 +#, scheme-format +msgid "project name ~a does not appear verbatim in the PyPI URI~%" +msgstr "" + +#: guix/import/pypi.scm:437 +#, scheme-format +msgid "" +"The PyPI URI is: @url{~a}. You should review the\n" +"pypi-uri declaration in the generated package. You may need to replace ~s with\n" +"a substring of the PyPI URI that identifies the package." +msgstr "" + +#: guix/import/pypi.scm:505 #, scheme-format msgid "no source release for pypi package ~a ~a~%" msgstr "" -#: guix/import/pypi.scm:554 +#: guix/import/pypi.scm:509 +#, scheme-format +msgid "" +"This indicates that the\n" +"package is available on PyPI, but only as a \"wheel\" containing binaries, not\n" +"source. To build it from source, refer to the upstream repository at\n" +"@uref{~a}." +msgstr "" + +#: guix/import/pypi.scm:579 msgid "Updater for PyPI packages" msgstr "" -#: gnu/installer.scm:214 +#: gnu/installer.scm:217 msgid "Locale" msgstr "" -#: gnu/installer.scm:230 gnu/installer/newt/timezone.scm:58 +#: gnu/installer.scm:233 gnu/installer/newt/timezone.scm:58 msgid "Timezone" msgstr "" -#: gnu/installer.scm:247 +#: gnu/installer.scm:250 msgid "Keyboard mapping selection" msgstr "" -#: gnu/installer.scm:256 gnu/installer/newt/hostname.scm:26 +#: gnu/installer.scm:259 gnu/installer/newt/hostname.scm:26 msgid "Hostname" msgstr "" -#: gnu/installer.scm:265 +#: gnu/installer.scm:268 msgid "Network selection" msgstr "" -#: gnu/installer.scm:272 +#: gnu/installer.scm:275 msgid "Substitute server discovery" msgstr "" -#: gnu/installer.scm:279 gnu/installer/newt/user.scm:68 -#: gnu/installer/newt/user.scm:205 +#: gnu/installer.scm:282 gnu/installer/newt/user.scm:67 +#: gnu/installer/newt/user.scm:204 msgid "User creation" msgstr "" -#: gnu/installer.scm:287 +#: gnu/installer.scm:290 msgid "Services" msgstr "" -#: gnu/installer.scm:298 +#: gnu/installer.scm:301 msgid "Partitioning" msgstr "" -#: gnu/installer.scm:305 gnu/installer/newt/final.scm:53 +#: gnu/installer.scm:308 gnu/installer/newt/final.scm:53 #, fuzzy msgid "Configuration file" msgstr "није наведена датотека подешавања~%" @@ -863,19 +889,78 @@ msgstr "" msgid "Unable to find expected regexp." msgstr "" -#: gnu/installer/newt.scm:52 +#: gnu/installer/newt.scm:58 msgid "Press for installation parameters." msgstr "" -#: gnu/installer/newt.scm:65 -#, scheme-format -msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +#: gnu/installer/newt.scm:68 +msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. You may choose to exit or create a dump archive." msgstr "" -#: gnu/installer/newt.scm:68 +#: gnu/installer/newt.scm:71 msgid "Unexpected problem" msgstr "" +#: gnu/installer/newt.scm:75 +msgid "Dump" +msgstr "" + +#: gnu/installer/newt.scm:76 gnu/installer/newt/ethernet.scm:79 +#: gnu/installer/newt/keymap.scm:56 gnu/installer/newt/locale.scm:43 +#: gnu/installer/newt/network.scm:65 gnu/installer/newt/network.scm:82 +#: gnu/installer/newt/page.scm:315 gnu/installer/newt/page.scm:679 +#: gnu/installer/newt/page.scm:763 gnu/installer/newt/page.scm:828 +#: gnu/installer/newt/partition.scm:54 gnu/installer/newt/partition.scm:90 +#: gnu/installer/newt/partition.scm:125 gnu/installer/newt/partition.scm:140 +#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 +#: gnu/installer/newt/partition.scm:706 gnu/installer/newt/partition.scm:764 +#: gnu/installer/newt/partition.scm:775 gnu/installer/newt/services.scm:124 +#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/wifi.scm:206 +msgid "Exit" +msgstr "" + +#: gnu/installer/newt.scm:82 +#, scheme-format +msgid "The dump archive was created as ~a. Would you like to send this archive to the Guix servers?" +msgstr "" + +#: gnu/installer/newt.scm:84 +msgid "Dump archive created" +msgstr "" + +#: gnu/installer/newt.scm:88 +#, scheme-format +msgid "The dump was uploaded as ~a. Please report it by email to ~a." +msgstr "" + +#: gnu/installer/newt.scm:90 +msgid "The dump could not be uploaded." +msgstr "" + +#: gnu/installer/newt.scm:93 +msgid "Dump upload result" +msgstr "" + +#: gnu/installer/newt.scm:132 +#, scheme-format +msgid "External command ~s exited with code ~a" +msgstr "" + +#: gnu/installer/newt.scm:135 +#, scheme-format +msgid "External command ~s terminated by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:138 +#, scheme-format +msgid "External command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:140 +msgid "External command error" +msgstr "" + #: gnu/installer/newt/ethernet.scm:66 msgid "No ethernet service available, please try again." msgstr "" @@ -884,59 +969,45 @@ msgstr "" msgid "No service" msgstr "" -#: gnu/installer/newt/ethernet.scm:76 +#: gnu/installer/newt/ethernet.scm:74 msgid "Please select an ethernet network." msgstr "" -#: gnu/installer/newt/ethernet.scm:77 +#: gnu/installer/newt/ethernet.scm:75 msgid "Ethernet connection" msgstr "" -#: gnu/installer/newt/ethernet.scm:81 gnu/installer/newt/keymap.scm:56 -#: gnu/installer/newt/locale.scm:43 gnu/installer/newt/network.scm:63 -#: gnu/installer/newt/network.scm:84 gnu/installer/newt/page.scm:309 -#: gnu/installer/newt/page.scm:673 gnu/installer/newt/page.scm:758 -#: gnu/installer/newt/partition.scm:56 gnu/installer/newt/partition.scm:91 -#: gnu/installer/newt/partition.scm:126 gnu/installer/newt/partition.scm:141 -#: gnu/installer/newt/partition.scm:638 gnu/installer/newt/partition.scm:661 -#: gnu/installer/newt/partition.scm:707 gnu/installer/newt/partition.scm:765 -#: gnu/installer/newt/partition.scm:776 gnu/installer/newt/services.scm:130 -#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:204 -#: gnu/installer/newt/wifi.scm:206 -msgid "Exit" -msgstr "" - #: gnu/installer/newt/final.scm:46 #, scheme-format msgid "We're now ready to proceed with the installation! A system configuration file has been generated, it is displayed below. This file will be available as '~a' on the installed system. The new system will be created from this file once you've pressed OK. This will take a few minutes." msgstr "" -#: gnu/installer/newt/final.scm:70 +#: gnu/installer/newt/final.scm:68 msgid "Installation complete" msgstr "" -#: gnu/installer/newt/final.scm:71 gnu/installer/newt/parameters.scm:45 +#: gnu/installer/newt/final.scm:69 gnu/installer/newt/parameters.scm:45 #: gnu/installer/newt/welcome.scm:145 msgid "Reboot" msgstr "" -#: gnu/installer/newt/final.scm:72 +#: gnu/installer/newt/final.scm:70 msgid "Congratulations! Installation is now complete. You may remove the device containing the installation image and press the button to reboot." msgstr "" -#: gnu/installer/newt/final.scm:86 +#: gnu/installer/newt/final.scm:84 msgid "Installation failed" msgstr "" -#: gnu/installer/newt/final.scm:87 +#: gnu/installer/newt/final.scm:85 msgid "Resume" msgstr "" -#: gnu/installer/newt/final.scm:88 +#: gnu/installer/newt/final.scm:86 msgid "Restart the installer" msgstr "" -#: gnu/installer/newt/final.scm:89 +#: gnu/installer/newt/final.scm:87 msgid "The final system installation step failed. You can resume from a specific step, or restart the installer." msgstr "" @@ -964,9 +1035,9 @@ msgstr "" msgid "Installation parameters" msgstr "" -#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:74 -#: gnu/installer/newt/locale.scm:63 gnu/installer/newt/locale.scm:78 -#: gnu/installer/newt/locale.scm:94 gnu/installer/newt/partition.scm:595 +#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:72 +#: gnu/installer/newt/locale.scm:61 gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:88 gnu/installer/newt/partition.scm:594 #: gnu/installer/newt/timezone.scm:64 msgid "Back" msgstr "" @@ -987,16 +1058,16 @@ msgstr "" msgid "Please choose your keyboard layout. It will be used during the install process, and for the installed system. Non-Latin layouts can be toggled with Alt+Shift. You can switch to a different layout at any time from the parameters menu." msgstr "" -#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:62 -#: gnu/installer/newt/page.scm:308 +#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/page.scm:314 msgid "Continue" msgstr "" -#: gnu/installer/newt/keymap.scm:67 +#: gnu/installer/newt/keymap.scm:65 msgid "Variant" msgstr "" -#: gnu/installer/newt/keymap.scm:70 +#: gnu/installer/newt/keymap.scm:68 msgid "Please choose a variant for your keyboard layout." msgstr "" @@ -1008,37 +1079,37 @@ msgstr "" msgid "Choose the language to use for the installation process and for the installed system." msgstr "" -#: gnu/installer/newt/locale.scm:57 +#: gnu/installer/newt/locale.scm:55 #, fuzzy msgid "Locale location" msgstr "<непознато место>" -#: gnu/installer/newt/locale.scm:60 +#: gnu/installer/newt/locale.scm:58 msgid "Choose a territory for this language." msgstr "" -#: gnu/installer/newt/locale.scm:71 +#: gnu/installer/newt/locale.scm:67 msgid "Locale codeset" msgstr "" -#: gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:70 msgid "Choose the locale encoding." msgstr "" -#: gnu/installer/newt/locale.scm:86 +#: gnu/installer/newt/locale.scm:80 msgid "Locale modifier" msgstr "" -#: gnu/installer/newt/locale.scm:89 +#: gnu/installer/newt/locale.scm:83 msgid "Choose your locale's modifier. The most frequent modifier is euro. It indicates that you want to use Euro as the currency symbol." msgstr "" -#: gnu/installer/newt/locale.scm:190 +#: gnu/installer/newt/locale.scm:181 #, fuzzy msgid "No location" msgstr "<непознато место>" -#: gnu/installer/newt/locale.scm:217 +#: gnu/installer/newt/locale.scm:208 msgid "No modifier" msgstr "" @@ -1054,330 +1125,334 @@ msgstr "" msgid "Abort" msgstr "" -#: gnu/installer/newt/network.scm:61 gnu/installer/newt/network.scm:80 +#: gnu/installer/newt/network.scm:63 gnu/installer/newt/network.scm:78 msgid "Internet access" msgstr "" -#: gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/network.scm:66 msgid "The install process requires Internet access but no network devices were found. Do you want to continue anyway?" msgstr "" -#: gnu/installer/newt/network.scm:78 +#: gnu/installer/newt/network.scm:76 msgid "The install process requires Internet access. Please select a network device." msgstr "" -#: gnu/installer/newt/network.scm:103 +#: gnu/installer/newt/network.scm:99 msgid "Powering technology" msgstr "" -#: gnu/installer/newt/network.scm:104 +#: gnu/installer/newt/network.scm:100 #, scheme-format msgid "Waiting for technology ~a to be powered." msgstr "" -#: gnu/installer/newt/network.scm:128 +#: gnu/installer/newt/network.scm:139 msgid "Checking connectivity" msgstr "" -#: gnu/installer/newt/network.scm:129 +#: gnu/installer/newt/network.scm:140 msgid "Waiting for Internet access establishment..." msgstr "" -#: gnu/installer/newt/network.scm:139 -msgid "The selected network does not provide access to the Internet, please try again." +#: gnu/installer/newt/network.scm:150 +msgid "The selected network does not provide access to the Internet and the Guix substitute server, please try again." msgstr "" -#: gnu/installer/newt/network.scm:141 gnu/installer/newt/wifi.scm:108 +#: gnu/installer/newt/network.scm:152 gnu/installer/newt/wifi.scm:108 msgid "Connection error" msgstr "" -#: gnu/installer/newt/page.scm:198 +#: gnu/installer/newt/page.scm:204 #, fuzzy, scheme-format msgid "Connecting to ~a, please wait." msgstr "Преузима, молим сачекајте...~%" -#: gnu/installer/newt/page.scm:199 +#: gnu/installer/newt/page.scm:205 msgid "Connection in progress" msgstr "" -#: gnu/installer/newt/page.scm:218 gnu/installer/newt/user.scm:60 +#: gnu/installer/newt/page.scm:224 gnu/installer/newt/user.scm:59 msgid "Show" msgstr "" -#: gnu/installer/newt/page.scm:225 gnu/installer/newt/page.scm:672 -#: gnu/installer/newt/page.scm:757 gnu/installer/newt/partition.scm:458 -#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 -#: gnu/installer/newt/partition.scm:699 gnu/installer/newt/user.scm:66 -#: gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/page.scm:231 gnu/installer/newt/page.scm:678 +#: gnu/installer/newt/page.scm:762 gnu/installer/newt/partition.scm:457 +#: gnu/installer/newt/partition.scm:636 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:698 gnu/installer/newt/user.scm:65 +#: gnu/installer/newt/user.scm:202 msgid "OK" msgstr "" -#: gnu/installer/newt/page.scm:251 +#: gnu/installer/newt/page.scm:257 msgid "Please enter a non empty input." msgstr "" -#: gnu/installer/newt/page.scm:252 gnu/installer/newt/user.scm:123 +#: gnu/installer/newt/page.scm:258 gnu/installer/newt/user.scm:122 msgid "Empty input" msgstr "" -#: gnu/installer/newt/page.scm:760 +#: gnu/installer/newt/page.scm:765 msgid "Edit" msgstr "" -#: gnu/installer/newt/partition.scm:47 +#: gnu/installer/newt/page.scm:825 +msgid "Ok" +msgstr "" + +#: gnu/installer/newt/partition.scm:45 msgid "Everything is one partition" msgstr "" -#: gnu/installer/newt/partition.scm:48 +#: gnu/installer/newt/partition.scm:46 msgid "Separate /home partition" msgstr "" -#: gnu/installer/newt/partition.scm:50 +#: gnu/installer/newt/partition.scm:48 msgid "Please select a partitioning scheme." msgstr "" -#: gnu/installer/newt/partition.scm:51 +#: gnu/installer/newt/partition.scm:49 msgid "Partition scheme" msgstr "" #. TRANSLATORS: The ~{ and ~} format specifiers are used to iterate the list #. of device names of the user partitions that will be formatted. -#: gnu/installer/newt/partition.scm:65 +#: gnu/installer/newt/partition.scm:63 #, scheme-format msgid "We are about to write the configured partition table to the disk and format the partitions listed below. Their data will be lost. Do you wish to continue?~%~%~{ - ~a~%~}" msgstr "" -#: gnu/installer/newt/partition.scm:71 +#: gnu/installer/newt/partition.scm:69 msgid "Format disk?" msgstr "" -#: gnu/installer/newt/partition.scm:74 +#: gnu/installer/newt/partition.scm:72 msgid "Partition formatting is in progress, please wait." msgstr "" -#: gnu/installer/newt/partition.scm:75 +#: gnu/installer/newt/partition.scm:73 msgid "Preparing partitions" msgstr "" -#: gnu/installer/newt/partition.scm:86 -msgid "Please select a disk." +#: gnu/installer/newt/partition.scm:84 +msgid "Please select a disk. The installation device as well as the small devices are filtered." msgstr "" -#: gnu/installer/newt/partition.scm:87 +#: gnu/installer/newt/partition.scm:86 msgid "Disk" msgstr "" -#: gnu/installer/newt/partition.scm:102 +#: gnu/installer/newt/partition.scm:101 msgid "Select a new partition table type. Be careful, all data on the disk will be lost." msgstr "" -#: gnu/installer/newt/partition.scm:104 +#: gnu/installer/newt/partition.scm:103 msgid "Partition table" msgstr "" -#: gnu/installer/newt/partition.scm:121 +#: gnu/installer/newt/partition.scm:120 msgid "Please select a partition type." msgstr "" -#: gnu/installer/newt/partition.scm:122 +#: gnu/installer/newt/partition.scm:121 msgid "Partition type" msgstr "" -#: gnu/installer/newt/partition.scm:132 +#: gnu/installer/newt/partition.scm:131 msgid "Please select the file-system type for this partition." msgstr "" -#: gnu/installer/newt/partition.scm:133 +#: gnu/installer/newt/partition.scm:132 msgid "File-system type" msgstr "" -#: gnu/installer/newt/partition.scm:150 +#: gnu/installer/newt/partition.scm:149 msgid "Primary partitions count exceeded." msgstr "" -#: gnu/installer/newt/partition.scm:151 gnu/installer/newt/partition.scm:156 -#: gnu/installer/newt/partition.scm:161 +#: gnu/installer/newt/partition.scm:150 gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:160 msgid "Creation error" msgstr "" -#: gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:154 msgid "Extended partition creation error." msgstr "" -#: gnu/installer/newt/partition.scm:160 +#: gnu/installer/newt/partition.scm:159 msgid "Logical partition creation error." msgstr "" -#: gnu/installer/newt/partition.scm:174 +#: gnu/installer/newt/partition.scm:173 #, scheme-format msgid "Please enter the password for the encryption of partition ~a (label: ~a)." msgstr "" -#: gnu/installer/newt/partition.scm:176 gnu/installer/newt/wifi.scm:92 +#: gnu/installer/newt/partition.scm:175 gnu/installer/newt/wifi.scm:92 msgid "Password required" msgstr "" -#: gnu/installer/newt/partition.scm:181 +#: gnu/installer/newt/partition.scm:180 #, scheme-format msgid "Please confirm the password for the encryption of partition ~a (label: ~a)." msgstr "" -#: gnu/installer/newt/partition.scm:183 gnu/installer/newt/user.scm:160 +#: gnu/installer/newt/partition.scm:182 gnu/installer/newt/user.scm:159 msgid "Password confirmation required" msgstr "" -#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 +#: gnu/installer/newt/partition.scm:194 gnu/installer/newt/user.scm:167 msgid "Password mismatch, please try again." msgstr "" -#: gnu/installer/newt/partition.scm:196 gnu/installer/newt/user.scm:169 +#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 msgid "Password error" msgstr "" -#: gnu/installer/newt/partition.scm:282 +#: gnu/installer/newt/partition.scm:281 msgid "Please enter the partition gpt name." msgstr "" -#: gnu/installer/newt/partition.scm:283 +#: gnu/installer/newt/partition.scm:282 msgid "Partition name" msgstr "" -#: gnu/installer/newt/partition.scm:313 +#: gnu/installer/newt/partition.scm:312 msgid "Please enter the encrypted label" msgstr "" -#: gnu/installer/newt/partition.scm:314 +#: gnu/installer/newt/partition.scm:313 msgid "Encryption label" msgstr "" -#: gnu/installer/newt/partition.scm:331 +#: gnu/installer/newt/partition.scm:330 #, scheme-format msgid "Please enter the size of the partition. The maximum size is ~a." msgstr "" -#: gnu/installer/newt/partition.scm:333 +#: gnu/installer/newt/partition.scm:332 msgid "Partition size" msgstr "" -#: gnu/installer/newt/partition.scm:351 +#: gnu/installer/newt/partition.scm:350 msgid "The percentage can not be superior to 100." msgstr "" -#: gnu/installer/newt/partition.scm:352 gnu/installer/newt/partition.scm:357 -#: gnu/installer/newt/partition.scm:362 +#: gnu/installer/newt/partition.scm:351 gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:361 msgid "Size error" msgstr "" -#: gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:355 msgid "The requested size is incorrectly formatted, or too large." msgstr "" -#: gnu/installer/newt/partition.scm:361 +#: gnu/installer/newt/partition.scm:360 msgid "The request size is superior to the maximum size." msgstr "" -#: gnu/installer/newt/partition.scm:381 +#: gnu/installer/newt/partition.scm:380 msgid "Please enter the desired mounting point for this partition. Leave this field empty if you don't want to set a mounting point." msgstr "" -#: gnu/installer/newt/partition.scm:383 +#: gnu/installer/newt/partition.scm:382 msgid "Mounting point" msgstr "" -#: gnu/installer/newt/partition.scm:447 +#: gnu/installer/newt/partition.scm:446 #, scheme-format msgid "Creating ~a partition starting at ~a of ~a." msgstr "" -#: gnu/installer/newt/partition.scm:449 +#: gnu/installer/newt/partition.scm:448 #, scheme-format msgid "You are currently editing partition ~a." msgstr "" -#: gnu/installer/newt/partition.scm:452 +#: gnu/installer/newt/partition.scm:451 msgid "Partition creation" msgstr "" -#: gnu/installer/newt/partition.scm:453 +#: gnu/installer/newt/partition.scm:452 msgid "Partition edit" msgstr "" -#: gnu/installer/newt/partition.scm:634 +#: gnu/installer/newt/partition.scm:633 #, scheme-format msgid "Are you sure you want to delete everything on disk ~a?" msgstr "" -#: gnu/installer/newt/partition.scm:636 +#: gnu/installer/newt/partition.scm:635 msgid "Delete disk" msgstr "" -#: gnu/installer/newt/partition.scm:651 +#: gnu/installer/newt/partition.scm:650 msgid "You cannot delete a free space area." msgstr "" -#: gnu/installer/newt/partition.scm:652 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:651 gnu/installer/newt/partition.scm:658 msgid "Delete partition" msgstr "" -#: gnu/installer/newt/partition.scm:657 +#: gnu/installer/newt/partition.scm:656 #, scheme-format msgid "Are you sure you want to delete partition ~a?" msgstr "" -#: gnu/installer/newt/partition.scm:674 +#: gnu/installer/newt/partition.scm:673 msgid "" "You can change a disk's partition table by selecting it and pressing ENTER. You can also edit a partition by selecting it and pressing ENTER, or remove it by pressing DELETE. To create a new partition, select a free space area and press ENTER.\n" "\n" "At least one partition must have its mounting point set to '/'." msgstr "" -#: gnu/installer/newt/partition.scm:680 +#: gnu/installer/newt/partition.scm:679 #, scheme-format msgid "This is the proposed partitioning. It is still possible to edit it or to go back to install menu by pressing the Exit button.~%~%" msgstr "" -#: gnu/installer/newt/partition.scm:690 +#: gnu/installer/newt/partition.scm:689 msgid "Guided partitioning" msgstr "" -#: gnu/installer/newt/partition.scm:691 +#: gnu/installer/newt/partition.scm:690 msgid "Manual partitioning" msgstr "" -#: gnu/installer/newt/partition.scm:716 +#: gnu/installer/newt/partition.scm:715 msgid "No root mount point found." msgstr "" -#: gnu/installer/newt/partition.scm:717 +#: gnu/installer/newt/partition.scm:716 msgid "Missing mount point" msgstr "" -#: gnu/installer/newt/partition.scm:721 +#: gnu/installer/newt/partition.scm:720 #, scheme-format msgid "Cannot read the ~a partition UUID. You may need to format it." msgstr "" -#: gnu/installer/newt/partition.scm:724 +#: gnu/installer/newt/partition.scm:723 msgid "Wrong partition format" msgstr "" -#: gnu/installer/newt/partition.scm:755 +#: gnu/installer/newt/partition.scm:754 msgid "Guided - using the entire disk" msgstr "" -#: gnu/installer/newt/partition.scm:756 +#: gnu/installer/newt/partition.scm:755 msgid "Guided - using the entire disk with encryption" msgstr "" -#: gnu/installer/newt/partition.scm:757 +#: gnu/installer/newt/partition.scm:756 msgid "Manual" msgstr "" -#: gnu/installer/newt/partition.scm:759 +#: gnu/installer/newt/partition.scm:758 msgid "Please select a partitioning method." msgstr "" -#: gnu/installer/newt/partition.scm:760 +#: gnu/installer/newt/partition.scm:759 msgid "Partitioning method" msgstr "" @@ -1389,35 +1464,35 @@ msgstr "" msgid "Desktop environment" msgstr "" -#: gnu/installer/newt/services.scm:59 +#: gnu/installer/newt/services.scm:57 msgid "You can now select networking services to run on your system." msgstr "" -#: gnu/installer/newt/services.scm:61 +#: gnu/installer/newt/services.scm:59 msgid "Network service" msgstr "" -#: gnu/installer/newt/services.scm:79 +#: gnu/installer/newt/services.scm:75 msgid "You can now select the CUPS printing service to run on your system." msgstr "" -#: gnu/installer/newt/services.scm:81 +#: gnu/installer/newt/services.scm:77 msgid "Printing and document services" msgstr "" -#: gnu/installer/newt/services.scm:100 +#: gnu/installer/newt/services.scm:94 msgid "Console services" msgstr "" -#: gnu/installer/newt/services.scm:101 +#: gnu/installer/newt/services.scm:95 msgid "Select miscellaneous services to run on your non-graphical system." msgstr "" -#: gnu/installer/newt/services.scm:115 +#: gnu/installer/newt/services.scm:109 msgid "Network management" msgstr "" -#: gnu/installer/newt/services.scm:118 +#: gnu/installer/newt/services.scm:112 msgid "" "Choose the method to manage network connections.\n" "\n" @@ -1447,57 +1522,57 @@ msgstr "" msgid "Please select a timezone." msgstr "" -#: gnu/installer/newt/user.scm:45 +#: gnu/installer/newt/user.scm:44 msgid "Name" msgstr "" -#: gnu/installer/newt/user.scm:47 +#: gnu/installer/newt/user.scm:46 msgid "Real name" msgstr "" -#: gnu/installer/newt/user.scm:49 +#: gnu/installer/newt/user.scm:48 msgid "Home directory" msgstr "" -#: gnu/installer/newt/user.scm:51 +#: gnu/installer/newt/user.scm:50 msgid "Password" msgstr "" -#: gnu/installer/newt/user.scm:122 +#: gnu/installer/newt/user.scm:121 msgid "Empty inputs are not allowed." msgstr "" -#: gnu/installer/newt/user.scm:159 +#: gnu/installer/newt/user.scm:158 msgid "Please confirm the password." msgstr "" #. TRANSLATORS: Leave "root" untranslated: it refers to the name of the #. system administrator account. -#: gnu/installer/newt/user.scm:176 +#: gnu/installer/newt/user.scm:175 msgid "Please choose a password for the system administrator (\"root\")." msgstr "" -#: gnu/installer/newt/user.scm:178 +#: gnu/installer/newt/user.scm:177 msgid "System administrator password" msgstr "" -#: gnu/installer/newt/user.scm:191 +#: gnu/installer/newt/user.scm:190 msgid "Please add at least one user to system using the 'Add' button." msgstr "" -#: gnu/installer/newt/user.scm:194 +#: gnu/installer/newt/user.scm:193 msgid "Add" msgstr "" -#: gnu/installer/newt/user.scm:195 +#: gnu/installer/newt/user.scm:194 msgid "Delete" msgstr "" -#: gnu/installer/newt/user.scm:255 +#: gnu/installer/newt/user.scm:254 msgid "Please create at least one user." msgstr "" -#: gnu/installer/newt/user.scm:256 +#: gnu/installer/newt/user.scm:255 msgid "No user" msgstr "" @@ -1568,60 +1643,60 @@ msgstr "" msgid "Wifi" msgstr "" -#: gnu/installer/parted.scm:433 gnu/installer/parted.scm:470 +#: gnu/installer/parted.scm:455 gnu/installer/parted.scm:492 msgid "Free space" msgstr "" -#: gnu/installer/parted.scm:559 +#: gnu/installer/parted.scm:581 #, fuzzy, scheme-format msgid "Name: ~a" msgstr "~a: ~a~%" -#: gnu/installer/parted.scm:560 gnu/installer/parted.scm:606 +#: gnu/installer/parted.scm:582 gnu/installer/parted.scm:628 msgid "None" msgstr "" -#: gnu/installer/parted.scm:565 +#: gnu/installer/parted.scm:587 #, scheme-format msgid "Type: ~a" msgstr "" -#: gnu/installer/parted.scm:569 +#: gnu/installer/parted.scm:591 #, scheme-format msgid "File system type: ~a" msgstr "" -#: gnu/installer/parted.scm:575 +#: gnu/installer/parted.scm:597 #, scheme-format msgid "Bootable flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:579 +#: gnu/installer/parted.scm:601 #, scheme-format msgid "ESP flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:585 +#: gnu/installer/parted.scm:607 #, scheme-format msgid "Size: ~a" msgstr "" -#: gnu/installer/parted.scm:591 +#: gnu/installer/parted.scm:613 #, scheme-format msgid "Encryption: ~:[No~a~;Yes (label '~a')~]" msgstr "" -#: gnu/installer/parted.scm:597 +#: gnu/installer/parted.scm:619 #, scheme-format msgid "Format the partition? ~:[No~;Yes~]" msgstr "" -#: gnu/installer/parted.scm:603 +#: gnu/installer/parted.scm:625 #, scheme-format msgid "Mount point: ~a" msgstr "" -#: gnu/installer/parted.scm:1466 +#: gnu/installer/parted.scm:1477 #, scheme-format msgid "Device ~a is still in use." msgstr "" @@ -1665,7 +1740,7 @@ msgstr "" #. TRANSLATORS: This is a comment within a Scheme file. Each line must #. start with ";; " (two semicolons and a space). Please keep line #. length below 60 characters. -#: gnu/installer/steps.scm:252 +#: gnu/installer/steps.scm:242 msgid "" ";; This is an operating system configuration generated\n" ";; by the graphical installer.\n" @@ -1676,99 +1751,118 @@ msgstr "" msgid "Unable to locate path: ~a." msgstr "" -#: gnu/installer/utils.scm:83 +#: gnu/installer/utils.scm:131 #, scheme-format msgid "Press Enter to continue.~%" msgstr "" -#: gnu/installer/utils.scm:108 +#: gnu/installer/utils.scm:150 +#, scheme-format +msgid "Command ~s exited with value ~a" +msgstr "" + +#: gnu/installer/utils.scm:156 +#, scheme-format +msgid "Command ~s killed by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:162 #, scheme-format -msgid "Command failed with exit code ~a.~%" +msgid "Command ~s stopped by signal ~a" msgstr "" -#: gnu/machine/ssh.scm:117 +#: gnu/installer/utils.scm:167 +#, scheme-format +msgid "Command ~s succeeded" +msgstr "" + +#: gnu/installer/utils.scm:179 +msgid "run-command-in-installer not set" +msgstr "" + +#: gnu/machine/ssh.scm:120 #, scheme-format msgid " without a 'host-key' is deprecated~%" msgstr "" -#: gnu/machine/ssh.scm:192 +#: gnu/machine/ssh.scm:208 #, scheme-format msgid "device '~a' not found: ~a" msgstr "" -#: gnu/machine/ssh.scm:207 +#: gnu/machine/ssh.scm:223 #, scheme-format msgid "no file system with label '~a'" msgstr "" -#: gnu/machine/ssh.scm:226 +#: gnu/machine/ssh.scm:242 #, scheme-format msgid "no file system with UUID '~a'" msgstr "" -#: gnu/machine/ssh.scm:276 +#: gnu/machine/ssh.scm:295 #, scheme-format msgid "missing modules for ~a:~{ ~a~}~%" msgstr "" -#: gnu/machine/ssh.scm:311 +#: gnu/machine/ssh.scm:333 #, scheme-format msgid "incorrect target system ('~a' was given, while the system reports that it is '~a')~%" msgstr "" -#: gnu/machine/ssh.scm:437 +#: gnu/machine/ssh.scm:459 #, scheme-format msgid "no signing key '~a'. have you run 'guix archive --generate-key?'" msgstr "" -#: gnu/machine/ssh.scm:469 +#: gnu/machine/ssh.scm:491 #, scheme-format msgid "failed to switch systems while deploying '~a':~%~{~s ~}" msgstr "" -#: gnu/machine/ssh.scm:477 +#: gnu/machine/ssh.scm:499 #, scheme-format msgid "an error occurred while upgrading services on '~a':~%~{~s ~}~%" msgstr "" -#: gnu/machine/ssh.scm:485 +#: gnu/machine/ssh.scm:507 #, fuzzy, scheme-format #| msgid "failed to install locale: ~a~%" msgid "failed to install bootloader on '~a':~%~{~s ~}~%" msgstr "нисам успео да инсталирам локалитет: ~a~%" -#: gnu/machine/ssh.scm:518 +#: gnu/machine/ssh.scm:540 msgid "could not roll-back machine" msgstr "" -#: gnu/machine/ssh.scm:559 +#: gnu/machine/ssh.scm:581 msgid "" "Provisioning for machines that are accessible over SSH\n" "and have a known host-name. This entails little more than maintaining an SSH\n" "connection to the host." msgstr "" -#: gnu/machine/ssh.scm:569 +#: gnu/machine/ssh.scm:591 #, scheme-format msgid "" "unsupported machine configuration '~a'\n" "for environment of type '~a'" msgstr "" -#: gnu/packages/bootstrap.scm:178 +#: gnu/packages/bootstrap.scm:188 #, scheme-format msgid "could not find bootstrap binary '~a' for system '~a'" msgstr "" -#: gnu/packages/bootstrap.scm:492 +#: gnu/packages/bootstrap.scm:578 msgid "Raw build system with direct store access" msgstr "" -#: gnu/packages/bootstrap.scm:500 +#: gnu/packages/bootstrap.scm:586 msgid "Pre-built Guile for bootstrapping purposes." msgstr "" -#: guix/build/utils.scm:822 +#: guix/build/utils.scm:823 #, scheme-format msgid "'~a~{ ~a~}' exited with status ~a; output follows:~%~%~{ ~a~%~}" msgstr "" @@ -1808,7 +1902,7 @@ msgid "~A: unrecognized option~%" msgstr "~A: непозната опција~%" #: guix/scripts.scm:169 guix/scripts/import.scm:140 -#: guix/scripts/system.scm:1370 +#: guix/scripts/system.scm:1379 #, scheme-format msgid "Did you mean @code{~a}?~%" msgstr "" @@ -1856,7 +1950,7 @@ msgstr "нисам успео да направим ГЦ корен „~a“: ~a #: guix/scripts/build.scm:154 guix/scripts/search.scm:42 #: guix/scripts/show.scm:41 guix/scripts/lint.scm:112 guix/scripts/edit.scm:48 #: guix/scripts/size.scm:246 guix/scripts/graph.scm:553 -#: guix/scripts/repl.scm:80 guix/scripts/style.scm:500 +#: guix/scripts/repl.scm:80 guix/scripts/style.scm:795 msgid "" "\n" " -L, --load-path=DIR prepend DIR to the package module search path" @@ -2045,7 +2139,7 @@ msgstr "" "\n" " -s, --system=СИСТЕМ покушава да изгради за СИСТЕМ--e.g., „i686-linux“" -#: guix/scripts/build.scm:357 guix/scripts/system.scm:1023 +#: guix/scripts/build.scm:357 guix/scripts/system.scm:1026 #: guix/scripts/pack.scm:1329 guix/scripts/archive.scm:97 msgid "" "\n" @@ -2085,13 +2179,13 @@ msgstr "" " -r, --root=ДАТОТЕКА чини ДАТОТЕКУ симболичком везом ка резултату, и бележи је\n" " као корен скупљача ђубра" -#: guix/scripts/build.scm:368 guix/scripts/package.scm:486 +#: guix/scripts/build.scm:368 guix/scripts/package.scm:488 #: guix/scripts/install.scm:37 guix/scripts/remove.scm:36 #: guix/scripts/upgrade.scm:39 guix/scripts/pull.scm:117 -#: guix/scripts/system.scm:1025 guix/scripts/copy.scm:122 -#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:60 +#: guix/scripts/system.scm:1028 guix/scripts/copy.scm:122 +#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:66 #: guix/scripts/archive.scm:99 guix/scripts/environment.scm:123 -#: guix/scripts/home.scm:94 +#: guix/scripts/home.scm:98 #, fuzzy msgid "" "\n" @@ -2118,30 +2212,30 @@ msgstr "" " --log-file исписује називе датотеке дневника за дате изведенице" #: guix/scripts/build.scm:379 guix/scripts/download.scm:104 -#: guix/scripts/package.scm:504 guix/scripts/install.scm:44 +#: guix/scripts/package.scm:506 guix/scripts/install.scm:44 #: guix/scripts/remove.scm:41 guix/scripts/upgrade.scm:48 #: guix/scripts/search.scm:37 guix/scripts/show.scm:36 guix/scripts/gc.scm:88 #: guix/scripts/git.scm:34 guix/scripts/git/authenticate.scm:110 #: guix/scripts/hash.scm:98 guix/scripts/import.scm:98 #: guix/scripts/import/minetest.scm:46 guix/scripts/import/cran.scm:49 #: guix/scripts/pull.scm:125 guix/scripts/substitute.scm:250 -#: guix/scripts/system.scm:1032 guix/scripts/lint.scm:115 +#: guix/scripts/system.scm:1035 guix/scripts/lint.scm:115 #: guix/scripts/publish.scm:119 guix/scripts/edit.scm:51 #: guix/scripts/size.scm:249 guix/scripts/graph.scm:558 #: guix/scripts/challenge.scm:430 guix/scripts/copy.scm:127 #: guix/scripts/pack.scm:1357 guix/scripts/weather.scm:336 #: guix/scripts/describe.scm:96 guix/scripts/processes.scm:301 -#: guix/scripts/deploy.scm:55 guix/scripts/container.scm:35 +#: guix/scripts/deploy.scm:58 guix/scripts/container.scm:35 #: guix/scripts/container/exec.scm:43 guix/scripts/archive.scm:106 -#: guix/scripts/environment.scm:149 guix/scripts/home.scm:97 +#: guix/scripts/environment.scm:149 guix/scripts/home.scm:101 #: guix/scripts/time-machine.scm:67 guix/scripts/import/cpan.scm:44 #: guix/scripts/import/crate.scm:50 guix/scripts/import/egg.scm:45 #: guix/scripts/import/gem.scm:46 guix/scripts/import/gnu.scm:50 #: guix/scripts/import/go.scm:50 guix/scripts/import/json.scm:52 #: guix/scripts/import/opam.scm:45 guix/scripts/import/pypi.scm:46 #: guix/scripts/import/texlive.scm:45 guix/scripts/refresh.scm:187 -#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:67 -#: guix/scripts/style.scm:509 +#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:69 +#: guix/scripts/style.scm:804 msgid "" "\n" " -h, --help display this help and exit" @@ -2150,29 +2244,29 @@ msgstr "" " -h, --help приказује ову помоћ и излази" #: guix/scripts/build.scm:381 guix/scripts/download.scm:106 -#: guix/scripts/package.scm:506 guix/scripts/install.scm:46 +#: guix/scripts/package.scm:508 guix/scripts/install.scm:46 #: guix/scripts/remove.scm:43 guix/scripts/upgrade.scm:50 #: guix/scripts/search.scm:39 guix/scripts/show.scm:38 guix/scripts/gc.scm:90 #: guix/scripts/git.scm:36 guix/scripts/git/authenticate.scm:112 #: guix/scripts/hash.scm:100 guix/scripts/import.scm:100 #: guix/scripts/import/minetest.scm:50 guix/scripts/import/cran.scm:55 #: guix/scripts/pull.scm:127 guix/scripts/substitute.scm:252 -#: guix/scripts/system.scm:1034 guix/scripts/lint.scm:119 +#: guix/scripts/system.scm:1037 guix/scripts/lint.scm:119 #: guix/scripts/publish.scm:121 guix/scripts/edit.scm:53 #: guix/scripts/size.scm:251 guix/scripts/graph.scm:560 #: guix/scripts/challenge.scm:432 guix/scripts/copy.scm:129 #: guix/scripts/pack.scm:1359 guix/scripts/weather.scm:338 #: guix/scripts/describe.scm:98 guix/scripts/processes.scm:303 -#: guix/scripts/deploy.scm:57 guix/scripts/container.scm:37 +#: guix/scripts/deploy.scm:60 guix/scripts/container.scm:37 #: guix/scripts/container/exec.scm:45 guix/scripts/archive.scm:108 -#: guix/scripts/environment.scm:151 guix/scripts/home.scm:99 +#: guix/scripts/environment.scm:151 guix/scripts/home.scm:103 #: guix/scripts/time-machine.scm:69 guix/scripts/import/cpan.scm:46 #: guix/scripts/import/crate.scm:52 guix/scripts/import/egg.scm:49 #: guix/scripts/import/gem.scm:48 guix/scripts/import/gnu.scm:52 #: guix/scripts/import/json.scm:54 guix/scripts/import/opam.scm:52 #: guix/scripts/import/pypi.scm:50 guix/scripts/import/texlive.scm:47 #: guix/scripts/refresh.scm:189 guix/scripts/repl.scm:85 -#: guix/scripts/shell.scm:69 guix/scripts/style.scm:511 +#: guix/scripts/shell.scm:71 guix/scripts/style.scm:806 msgid "" "\n" " -V, --version display version information and exit" @@ -2413,167 +2507,167 @@ msgstr "профил „~a“ не постоји~%" msgid "\"bash-minimal\" should be in 'inputs' when '~a' is used" msgstr "" -#: guix/lint.scm:616 +#: guix/lint.scm:614 msgid "no period allowed at the end of the synopsis" msgstr "" -#: guix/lint.scm:630 +#: guix/lint.scm:628 msgid "no article allowed at the beginning of the synopsis" msgstr "" -#: guix/lint.scm:639 +#: guix/lint.scm:637 msgid "synopsis should be less than 80 characters long" msgstr "" -#: guix/lint.scm:648 +#: guix/lint.scm:646 msgid "synopsis should start with an upper-case letter or digit" msgstr "" -#: guix/lint.scm:656 +#: guix/lint.scm:654 msgid "synopsis should not start with the package name" msgstr "" -#: guix/lint.scm:670 +#: guix/lint.scm:668 msgid "Texinfo markup in synopsis is invalid" msgstr "" -#: guix/lint.scm:678 +#: guix/lint.scm:676 msgid "synopsis contains trailing whitespace" msgstr "" -#: guix/lint.scm:695 +#: guix/lint.scm:693 msgid "synopsis should not be empty" msgstr "" -#: guix/lint.scm:705 +#: guix/lint.scm:703 #, fuzzy, scheme-format msgid "invalid synopsis: ~s" msgstr "неисправна синтакса: ~a~%" -#: guix/lint.scm:805 +#: guix/lint.scm:803 #, scheme-format msgid "~a: HTTP GET error for ~a: ~a (~s)~%" msgstr "" -#: guix/lint.scm:815 +#: guix/lint.scm:813 #, fuzzy, scheme-format msgid "~a: host lookup failure: ~a~%" msgstr "грешка тражења назива домаћина: ~a~%" -#: guix/lint.scm:820 +#: guix/lint.scm:818 #, scheme-format msgid "~a: TLS certificate error: ~a" msgstr "" -#: guix/lint.scm:825 +#: guix/lint.scm:823 #, fuzzy, scheme-format msgid "~a: TLS error in '~a': ~a~%" msgstr "грешка: приликом стварања директоријума „~a“: ~a~%" -#: guix/lint.scm:836 guix/ui.scm:820 guix/scripts/offload.scm:194 +#: guix/lint.scm:834 guix/ui.scm:820 guix/scripts/offload.scm:194 #, scheme-format msgid "~a: ~a~%" msgstr "~a: ~a~%" -#: guix/lint.scm:868 +#: guix/lint.scm:866 #, scheme-format msgid "URI ~a returned suspiciously small file (~a bytes)" msgstr "" -#: guix/lint.scm:877 +#: guix/lint.scm:875 #, scheme-format msgid "permanent redirect from ~a to ~a" msgstr "" -#: guix/lint.scm:883 +#: guix/lint.scm:881 #, scheme-format msgid "invalid permanent redirect from ~a" msgstr "" -#: guix/lint.scm:889 guix/lint.scm:899 +#: guix/lint.scm:887 guix/lint.scm:897 #, scheme-format msgid "URI ~a not reachable: ~a (~s)" msgstr "" -#: guix/lint.scm:905 +#: guix/lint.scm:903 #, fuzzy, scheme-format msgid "URI ~a domain not found: ~a" msgstr "guix: ~a: нисам пронашао наредбу~%" -#: guix/lint.scm:911 +#: guix/lint.scm:909 #, scheme-format msgid "URI ~a unreachable: ~a" msgstr "" -#: guix/lint.scm:919 +#: guix/lint.scm:917 #, scheme-format msgid "TLS certificate error: ~a" msgstr "" -#: guix/lint.scm:946 +#: guix/lint.scm:944 #, fuzzy msgid "invalid value for home page" msgstr "Исправне вредности за РАДЊУ су:\n" -#: guix/lint.scm:951 +#: guix/lint.scm:949 #, fuzzy, scheme-format msgid "invalid home page URL: ~s" msgstr "" "\n" "~a матична страница: <~a>" -#: guix/lint.scm:988 +#: guix/lint.scm:986 msgid "file names of patches should start with the package name" msgstr "" -#: guix/lint.scm:1008 +#: guix/lint.scm:1006 #, scheme-format msgid "~a: file name is too long, which may break 'make dist'" msgstr "" -#: guix/lint.scm:1029 +#: guix/lint.scm:1027 #, scheme-format msgid "~a: empty patch" msgstr "" -#: guix/lint.scm:1038 +#: guix/lint.scm:1036 #, scheme-format msgid "~a: patch lacks comment and upstream status" msgstr "" -#: guix/lint.scm:1099 +#: guix/lint.scm:1097 #, scheme-format msgid "proposed synopsis: ~s~%" msgstr "" -#: guix/lint.scm:1113 +#: guix/lint.scm:1111 #, scheme-format msgid "proposed description:~% \"~a\"~%" msgstr "" -#: guix/lint.scm:1164 +#: guix/lint.scm:1162 msgid "all the source URIs are unreachable:" msgstr "" -#: guix/lint.scm:1193 +#: guix/lint.scm:1191 msgid "the source file name should contain the package name" msgstr "" -#: guix/lint.scm:1205 +#: guix/lint.scm:1203 msgid "the source URI should not be an autogenerated tarball" msgstr "" -#: guix/lint.scm:1229 +#: guix/lint.scm:1227 #, scheme-format msgid "URL should be 'mirror://~a/~a'" msgstr "" -#: guix/lint.scm:1269 +#: guix/lint.scm:1267 #, fuzzy, scheme-format msgid "while accessing '~a'" msgstr "нисам успео да се повежем на „~a“: ~a~%" -#: guix/lint.scm:1276 +#: guix/lint.scm:1274 #, scheme-format msgid "URL should be '~a'" msgstr "" @@ -2581,69 +2675,69 @@ msgstr "" #. TRANSLATORS: check and #:tests? are a #. Scheme symbol and keyword respectively #. and should not be translated. -#: guix/lint.scm:1304 +#: guix/lint.scm:1302 msgid "the 'check' phase should respect #:tests?" msgstr "" -#: guix/lint.scm:1322 guix/lint.scm:1333 guix/lint.scm:1341 +#: guix/lint.scm:1320 guix/lint.scm:1331 guix/lint.scm:1339 #, fuzzy, scheme-format msgid "failed to create ~a derivation: ~a" msgstr "нисам успео да направим ГЦ корен „~a“: ~a~%" -#: guix/lint.scm:1327 +#: guix/lint.scm:1325 #, fuzzy, scheme-format msgid "failed to create ~a derivation: ~s" msgstr "нисам успео да прочитам израз ~s: ~s~%" -#: guix/lint.scm:1379 +#: guix/lint.scm:1377 #, scheme-format msgid "propagated inputs ~a and ~a collide" msgstr "" -#: guix/lint.scm:1403 +#: guix/lint.scm:1401 #, fuzzy msgid "invalid license field" msgstr "неисправна обележја симболичке везе" -#: guix/lint.scm:1410 +#: guix/lint.scm:1408 msgid "while retrieving CVE vulnerabilities" msgstr "" -#: guix/lint.scm:1453 +#: guix/lint.scm:1451 #, scheme-format msgid "probably vulnerable to ~a" msgstr "" -#: guix/lint.scm:1461 +#: guix/lint.scm:1459 #, fuzzy, scheme-format msgid "no updater for ~a" msgstr "нема дневника изградње за „~a“~%" -#: guix/lint.scm:1466 guix/lint.scm:1641 +#: guix/lint.scm:1464 guix/lint.scm:1639 #, scheme-format msgid "while retrieving upstream info for '~a'" msgstr "" -#: guix/lint.scm:1475 +#: guix/lint.scm:1473 #, scheme-format msgid "can be upgraded to ~a" msgstr "" -#: guix/lint.scm:1481 +#: guix/lint.scm:1479 #, scheme-format msgid "updater '~a' failed to find upstream releases" msgstr "" -#: guix/lint.scm:1508 +#: guix/lint.scm:1506 #, fuzzy, scheme-format msgid "failed to access Disarchive database at ~a" msgstr "нисам успео да се повежем на „~a“: ~a~%" -#: guix/lint.scm:1535 +#: guix/lint.scm:1533 msgid "Software Heritage rate limit reached; try again later" msgstr "" -#: guix/lint.scm:1539 +#: guix/lint.scm:1537 #, scheme-format msgid "'~a' returned ~a" msgstr "" @@ -2651,163 +2745,163 @@ msgstr "" #. TRANSLATORS: "Software Heritage" is a proper noun #. that must remain untranslated. See #. . -#: guix/lint.scm:1578 +#: guix/lint.scm:1576 msgid "scheduled Software Heritage archival" msgstr "" -#: guix/lint.scm:1584 +#: guix/lint.scm:1582 msgid "archival rate limit exceeded; try again later" msgstr "" -#: guix/lint.scm:1605 +#: guix/lint.scm:1603 msgid "source not archived on Software Heritage and missing from the Disarchive database" msgstr "" -#: guix/lint.scm:1615 +#: guix/lint.scm:1613 #, scheme-format msgid "Disarchive entry refers to non-existent SWH directory '~a'" msgstr "" -#: guix/lint.scm:1624 +#: guix/lint.scm:1622 #, fuzzy msgid "unsupported source type" msgstr "неподржана врста нар уноса" -#: guix/lint.scm:1633 +#: guix/lint.scm:1631 msgid "while connecting to Software Heritage" msgstr "" -#: guix/lint.scm:1650 +#: guix/lint.scm:1648 #, scheme-format msgid "ahead of Stackage LTS version ~a" msgstr "" -#: guix/lint.scm:1667 +#: guix/lint.scm:1665 #, scheme-format msgid "tabulation on line ~a, column ~a" msgstr "" -#: guix/lint.scm:1679 +#: guix/lint.scm:1677 #, scheme-format msgid "trailing white space on line ~a" msgstr "" -#: guix/lint.scm:1693 +#: guix/lint.scm:1691 #, scheme-format msgid "line ~a is way too long (~a characters)" msgstr "" -#: guix/lint.scm:1707 +#: guix/lint.scm:1705 msgid "parentheses feel lonely, move to the previous or next line" msgstr "" -#: guix/lint.scm:1784 +#: guix/lint.scm:1782 msgid "source file not found" msgstr "" -#: guix/lint.scm:1796 +#: guix/lint.scm:1794 msgid "Validate package names" msgstr "" -#: guix/lint.scm:1800 +#: guix/lint.scm:1798 msgid "Check if tests are explicitly enabled" msgstr "" -#: guix/lint.scm:1804 +#: guix/lint.scm:1802 msgid "Validate package descriptions" msgstr "" -#: guix/lint.scm:1808 +#: guix/lint.scm:1806 msgid "Identify inputs that should be native inputs" msgstr "" -#: guix/lint.scm:1812 +#: guix/lint.scm:1810 msgid "Identify inputs that shouldn't be inputs at all" msgstr "" -#: guix/lint.scm:1816 +#: guix/lint.scm:1814 msgid "Identify input labels that do not match package names" msgstr "" -#: guix/lint.scm:1820 +#: guix/lint.scm:1818 msgid "Make sure 'wrap-program' can finds its interpreter." msgstr "" #. TRANSLATORS: is the name of a data type and must not be #. translated. -#: guix/lint.scm:1826 +#: guix/lint.scm:1824 msgid "Make sure the 'license' field is a or a list thereof" msgstr "" -#: guix/lint.scm:1831 +#: guix/lint.scm:1829 msgid "Make sure tests are only run when requested" msgstr "" -#: guix/lint.scm:1835 +#: guix/lint.scm:1833 msgid "Suggest 'mirror://' URLs" msgstr "" -#: guix/lint.scm:1839 +#: guix/lint.scm:1837 msgid "Validate file names of sources" msgstr "" -#: guix/lint.scm:1843 +#: guix/lint.scm:1841 msgid "Check for autogenerated tarballs" msgstr "" -#: guix/lint.scm:1847 +#: guix/lint.scm:1845 msgid "Report failure to compile a package to a derivation" msgstr "" -#: guix/lint.scm:1852 +#: guix/lint.scm:1850 msgid "Report collisions that would occur due to propagated inputs" msgstr "" -#: guix/lint.scm:1857 +#: guix/lint.scm:1855 msgid "Validate file names and availability of patches" msgstr "" -#: guix/lint.scm:1861 +#: guix/lint.scm:1859 msgid "Validate patch headers" msgstr "" -#: guix/lint.scm:1865 +#: guix/lint.scm:1863 msgid "Look for formatting issues in the source" msgstr "" -#: guix/lint.scm:1872 +#: guix/lint.scm:1870 msgid "Validate package synopses" msgstr "" -#: guix/lint.scm:1876 +#: guix/lint.scm:1874 msgid "Validate synopsis & description of GNU packages" msgstr "" -#: guix/lint.scm:1880 +#: guix/lint.scm:1878 msgid "Validate home-page URLs" msgstr "" -#: guix/lint.scm:1884 +#: guix/lint.scm:1882 msgid "Validate source URLs" msgstr "" -#: guix/lint.scm:1888 +#: guix/lint.scm:1886 msgid "Suggest GitHub URLs" msgstr "" -#: guix/lint.scm:1892 +#: guix/lint.scm:1890 msgid "Check the Common Vulnerabilities and Exposures (CVE) database" msgstr "" -#: guix/lint.scm:1897 +#: guix/lint.scm:1895 msgid "Check the package for new upstream releases" msgstr "" -#: guix/lint.scm:1901 +#: guix/lint.scm:1899 msgid "Ensure source code archival on Software Heritage" msgstr "" -#: guix/lint.scm:1905 +#: guix/lint.scm:1903 msgid "Ensure Haskell packages use Stackage LTS versions" msgstr "" @@ -2867,7 +2961,7 @@ msgstr "неподржани запис хеша: ~a~%" msgid "~a: unknown hash algorithm~%" msgstr "~a: непозната радња~%" -#: guix/scripts/download.scm:171 guix/scripts/package.scm:1087 +#: guix/scripts/download.scm:171 guix/scripts/package.scm:1090 #: guix/scripts/pull.scm:758 guix/scripts/publish.scm:1260 #: guix/scripts/discover.scm:136 guix/scripts/time-machine.scm:123 #, scheme-format @@ -2899,17 +2993,17 @@ msgstr "" msgid "no matching generation~%" msgstr "пребацујем се са генерације ~a на ~a~%" -#: guix/scripts/package.scm:159 +#: guix/scripts/package.scm:161 #, scheme-format msgid "nothing to be done~%" msgstr "ништа неће бити урађено~%" -#: guix/scripts/package.scm:260 +#: guix/scripts/package.scm:262 #, fuzzy, scheme-format msgid "package '~a' no longer exists~%" msgstr "пакет „~a“ нема извор~%" -#: guix/scripts/package.scm:315 +#: guix/scripts/package.scm:317 #, scheme-format msgid "" "Consider setting the necessary environment\n" @@ -2923,7 +3017,7 @@ msgid "" "Alternately, see @command{guix package --search-paths -p ~s}." msgstr "" -#: guix/scripts/package.scm:361 +#: guix/scripts/package.scm:363 msgid "" ";; This \"manifest\" file can be passed to 'guix package -m' to reproduce\n" ";; the content of your profile. This is \"symbolic\": it only specifies\n" @@ -2932,24 +3026,24 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/package.scm:393 +#: guix/scripts/package.scm:395 #, scheme-format msgid "no provenance information for this profile~%" msgstr "" -#: guix/scripts/package.scm:395 +#: guix/scripts/package.scm:397 msgid "" ";; This channel file can be passed to 'guix pull -C' or to\n" ";; 'guix time-machine -C' to obtain the Guix revision that was\n" ";; used to populate this profile.\n" msgstr "" -#: guix/scripts/package.scm:407 +#: guix/scripts/package.scm:409 #, scheme-format msgid ";; Note: these other commits were also used to install some of the packages in this profile:~%" msgstr "" -#: guix/scripts/package.scm:437 +#: guix/scripts/package.scm:439 #, fuzzy msgid "" "Usage: guix package [OPTION]...\n" @@ -2958,7 +3052,7 @@ msgstr "" "Употреба: guix package [ОПЦИЈА]... ПАКЕТИ...\n" "Инсталирајте, уклоните, или доградите ПАКЕТЕ у једном прелазу.\n" -#: guix/scripts/package.scm:439 +#: guix/scripts/package.scm:441 #, fuzzy msgid "" "\n" @@ -2968,7 +3062,7 @@ msgstr "" "\n" " -i, --install=ПАКЕТ инсталира ПАКЕТ" -#: guix/scripts/package.scm:442 +#: guix/scripts/package.scm:444 msgid "" "\n" " -e, --install-from-expression=EXP\n" @@ -2978,7 +3072,7 @@ msgstr "" " -e, --install-from-expression=ИЗР\n" " инсталира процене ИЗР пакета у" -#: guix/scripts/package.scm:445 +#: guix/scripts/package.scm:447 #, fuzzy msgid "" "\n" @@ -2990,7 +3084,7 @@ msgstr "" " -e, --install-from-expression=ИЗР\n" " инсталира процене ИЗР пакета у" -#: guix/scripts/package.scm:449 +#: guix/scripts/package.scm:451 #, fuzzy msgid "" "\n" @@ -3000,7 +3094,7 @@ msgstr "" "\n" " -r, --remove=ПАКЕТ уклања ПАКЕТ" -#: guix/scripts/package.scm:452 +#: guix/scripts/package.scm:454 msgid "" "\n" " -u, --upgrade[=REGEXP] upgrade all the installed packages matching REGEXP" @@ -3008,14 +3102,14 @@ msgstr "" "\n" " -u, --upgrade[=РЕГИЗР] дограђује све инсталиране пакете који одговарају РЕГИЗРАЗУ" -#: guix/scripts/package.scm:454 +#: guix/scripts/package.scm:456 msgid "" "\n" " -m, --manifest=FILE create a new profile generation with the manifest\n" " from FILE" msgstr "" -#: guix/scripts/package.scm:457 guix/scripts/upgrade.scm:41 +#: guix/scripts/package.scm:459 guix/scripts/upgrade.scm:41 #, fuzzy msgid "" "\n" @@ -3024,7 +3118,7 @@ msgstr "" "\n" " -u, --upgrade[=РЕГИЗР] дограђује све инсталиране пакете који одговарају РЕГИЗРАЗУ" -#: guix/scripts/package.scm:459 guix/scripts/pull.scm:107 +#: guix/scripts/package.scm:461 guix/scripts/pull.scm:107 msgid "" "\n" " --roll-back roll back to the previous generation" @@ -3032,7 +3126,7 @@ msgstr "" "\n" " --roll-back враћа се на претходну генерацију" -#: guix/scripts/package.scm:461 +#: guix/scripts/package.scm:463 #, fuzzy msgid "" "\n" @@ -3042,7 +3136,7 @@ msgstr "" "\n" " --search-paths приказује потребне одреднице променљиве окружења" -#: guix/scripts/package.scm:464 guix/scripts/pull.scm:104 +#: guix/scripts/package.scm:466 guix/scripts/pull.scm:104 msgid "" "\n" " -l, --list-generations[=PATTERN]\n" @@ -3052,7 +3146,7 @@ msgstr "" " -l, --list-generations[=ШАБЛОН]\n" " исписује генерације које одговарају ШАБЛОНУ" -#: guix/scripts/package.scm:467 guix/scripts/pull.scm:109 +#: guix/scripts/package.scm:469 guix/scripts/pull.scm:109 msgid "" "\n" " -d, --delete-generations[=PATTERN]\n" @@ -3062,7 +3156,7 @@ msgstr "" " -d, --delete-generations[=ШАБЛОН]\n" " брише генерације које одговарају ШАБЛОНУ" -#: guix/scripts/package.scm:470 guix/scripts/pull.scm:112 +#: guix/scripts/package.scm:472 guix/scripts/pull.scm:112 #, fuzzy msgid "" "\n" @@ -3073,7 +3167,7 @@ msgstr "" " -l, --list-generations[=ШАБЛОН]\n" " исписује генерације које одговарају ШАБЛОНУ" -#: guix/scripts/package.scm:473 +#: guix/scripts/package.scm:475 #, fuzzy msgid "" "\n" @@ -3082,13 +3176,13 @@ msgstr "" "\n" " --list-dead исписује живе путање" -#: guix/scripts/package.scm:475 +#: guix/scripts/package.scm:477 msgid "" "\n" " --export-channels print channels for the chosen profile" msgstr "" -#: guix/scripts/package.scm:477 guix/scripts/install.scm:34 +#: guix/scripts/package.scm:479 guix/scripts/install.scm:34 #: guix/scripts/remove.scm:33 guix/scripts/upgrade.scm:37 msgid "" "\n" @@ -3097,7 +3191,7 @@ msgstr "" "\n" " -p, --profile=ПРОФИЛ користи ПРОФИЛ уместо корисничког подразумеваног" -#: guix/scripts/package.scm:479 +#: guix/scripts/package.scm:481 #, fuzzy msgid "" "\n" @@ -3106,13 +3200,13 @@ msgstr "" "\n" " --list-dead исписује живе путање" -#: guix/scripts/package.scm:482 +#: guix/scripts/package.scm:484 msgid "" "\n" " --allow-collisions do not treat collisions in the profile as an error" msgstr "" -#: guix/scripts/package.scm:484 +#: guix/scripts/package.scm:486 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" @@ -3120,7 +3214,7 @@ msgstr "" "\n" " --bootstrap користи Гуиле почетног учитавања да изгради профил" -#: guix/scripts/package.scm:489 +#: guix/scripts/package.scm:491 msgid "" "\n" " -s, --search=REGEXP search in synopsis and description using REGEXP" @@ -3128,7 +3222,7 @@ msgstr "" "\n" " -s, --search=РЕГИЗР тражи у скици и опису користећи РЕГИЗР" -#: guix/scripts/package.scm:491 +#: guix/scripts/package.scm:493 msgid "" "\n" " -I, --list-installed[=REGEXP]\n" @@ -3138,7 +3232,7 @@ msgstr "" " -I, --list-installed[=РЕГИЗР]\n" " исписује инсталиране пакете који одговарају РЕГИЗРАЗУ" -#: guix/scripts/package.scm:494 +#: guix/scripts/package.scm:496 msgid "" "\n" " -A, --list-available[=REGEXP]\n" @@ -3148,7 +3242,7 @@ msgstr "" " -A, --list-available[=РЕГИЗР]\n" " исписује доступне пакете који одговарају РЕГИЗРАЗУ" -#: guix/scripts/package.scm:497 +#: guix/scripts/package.scm:499 #, fuzzy msgid "" "\n" @@ -3157,37 +3251,37 @@ msgstr "" "\n" " -i, --install=ПАКЕТ инсталира ПАКЕТ" -#: guix/scripts/package.scm:552 +#: guix/scripts/package.scm:554 #, scheme-format msgid "upgrade regexp '~a' looks like a command-line option~%" msgstr "" -#: guix/scripts/package.scm:555 +#: guix/scripts/package.scm:557 #, scheme-format msgid "is this intended?~%" msgstr "" -#: guix/scripts/package.scm:605 +#: guix/scripts/package.scm:607 #, scheme-format msgid "~a: unsupported kind of search path~%" msgstr "" -#: guix/scripts/package.scm:739 +#: guix/scripts/package.scm:741 #, scheme-format msgid "cannot install non-package object: ~s~%" msgstr "" -#: guix/scripts/package.scm:918 +#: guix/scripts/package.scm:920 #, fuzzy, scheme-format msgid "~a~@[@~a~]: package not found~%" msgstr "~a: нисам пронашао пакет~%" -#: guix/scripts/package.scm:965 guix/scripts/pull.scm:687 +#: guix/scripts/package.scm:967 guix/scripts/pull.scm:687 #, fuzzy, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "пребацујем се са генерације ~a на ~a~%" -#: guix/scripts/package.scm:1060 +#: guix/scripts/package.scm:1062 #, fuzzy, scheme-format #| msgid "nothing to be done~%" msgid "nothing to do~%" @@ -3435,8 +3529,8 @@ msgstr "" "Употреба: guix НАРЕДБА АРГУМЕНТИ...\n" "Покрените НАРЕДБУ са АРГУМЕНТИМА.\n" -#: guix/scripts/git.scm:29 guix/scripts/system.scm:945 -#: guix/scripts/container.scm:30 guix/scripts/home.scm:69 +#: guix/scripts/git.scm:29 guix/scripts/system.scm:946 +#: guix/scripts/container.scm:30 guix/scripts/home.scm:70 msgid "The valid values for ACTION are:\n" msgstr "Исправне вредности за РАДЊУ су:\n" @@ -3535,23 +3629,23 @@ msgstr "" "\n" " -r, --recursive рачуна хеш дубински на ДАТОТЕЦИ" -#: guix/scripts/hash.scm:137 +#: guix/scripts/hash.scm:138 #, scheme-format -msgid "'--recursive' is deprecated, use '--serializer' instead~%" +msgid "'--recursive' is deprecated, use '--serializer=nar' instead~%" msgstr "" -#: guix/scripts/hash.scm:152 +#: guix/scripts/hash.scm:153 #, fuzzy, scheme-format msgid "unsupported serializer type: ~a~%" msgstr "неподржани запис хеша: ~a~%" -#: guix/scripts/hash.scm:201 +#: guix/scripts/hash.scm:202 #, fuzzy, scheme-format #| msgid "~a: ~a~%" msgid "~a ~a~%" msgstr "~a: ~a~%" -#: guix/scripts/hash.scm:210 +#: guix/scripts/hash.scm:211 #, fuzzy, scheme-format msgid "no arguments specified~%" msgstr "није наведена датотека подешавања~%" @@ -3618,9 +3712,9 @@ msgstr "~a: неисправан број~%" #: guix/scripts/import/minetest.scm:115 guix/scripts/import/cran.scm:120 #: guix/scripts/import/elpa.scm:110 guix/scripts/import/cpan.scm:87 #: guix/scripts/import/crate.scm:103 guix/scripts/import/egg.scm:106 -#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:121 +#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:122 #: guix/scripts/import/hackage.scm:158 guix/scripts/import/json.scm:97 -#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:104 +#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:105 #: guix/scripts/import/stackage.scm:130 guix/scripts/import/texlive.scm:88 #, fuzzy, scheme-format msgid "too few arguments~%" @@ -3629,10 +3723,10 @@ msgstr "погрешан број аргумената~%" #: guix/scripts/import/minetest.scm:117 guix/scripts/import/cran.scm:122 #: guix/scripts/import/elpa.scm:112 guix/scripts/import/cpan.scm:89 #: guix/scripts/import/crate.scm:105 guix/scripts/import/egg.scm:108 -#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:123 +#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:124 #: guix/scripts/import/hackage.scm:149 guix/scripts/import/hackage.scm:160 #: guix/scripts/import/json.scm:99 guix/scripts/import/opam.scm:113 -#: guix/scripts/import/pypi.scm:106 guix/scripts/import/stackage.scm:132 +#: guix/scripts/import/pypi.scm:107 guix/scripts/import/stackage.scm:132 #: guix/scripts/import/texlive.scm:90 #, fuzzy, scheme-format msgid "too many arguments~%" @@ -3656,7 +3750,7 @@ msgid "" " -s, --style=STYLE choose output style, either specification or variable" msgstr "" -#: guix/scripts/import/cran.scm:116 guix/scripts/import/texlive.scm:84 +#: guix/scripts/import/cran.scm:116 #, fuzzy, scheme-format msgid "failed to download description for package '~a'~%" msgstr "нисам успео да учитам датотеку машине „~a“: ~s~%" @@ -4095,27 +4189,27 @@ msgstr "" msgid "the dependency graph of shepherd services" msgstr "" -#: guix/scripts/system.scm:482 guix/scripts/home.scm:453 +#: guix/scripts/system.scm:482 guix/scripts/home.scm:466 #, scheme-format msgid " repository URL: ~a~%" msgstr "" -#: guix/scripts/system.scm:484 guix/scripts/home.scm:455 +#: guix/scripts/system.scm:484 guix/scripts/home.scm:468 #, scheme-format msgid " branch: ~a~%" msgstr "" -#: guix/scripts/system.scm:485 guix/scripts/home.scm:456 +#: guix/scripts/system.scm:485 guix/scripts/home.scm:469 #, scheme-format msgid " commit: ~a~%" msgstr "" -#: guix/scripts/system.scm:505 guix/scripts/home.scm:469 +#: guix/scripts/system.scm:505 guix/scripts/home.scm:482 #, fuzzy, scheme-format msgid " file name: ~a~%" msgstr "неисправан број: ~a~%" -#: guix/scripts/system.scm:506 guix/scripts/home.scm:470 +#: guix/scripts/system.scm:506 guix/scripts/home.scm:483 #, scheme-format msgid " canonical file name: ~a~%" msgstr "" @@ -4156,12 +4250,12 @@ msgstr "" #. TRANSLATORS: Here "channel" is the same terminology as used in #. "guix describe" and "guix pull --channels". -#: guix/scripts/system.scm:536 guix/scripts/home.scm:476 +#: guix/scripts/system.scm:536 guix/scripts/home.scm:489 #, scheme-format msgid " channels:~%" msgstr "" -#: guix/scripts/system.scm:539 guix/scripts/home.scm:479 +#: guix/scripts/system.scm:539 guix/scripts/home.scm:492 #, fuzzy, scheme-format msgid " configuration file: ~a~%" msgstr "није наведена датотека подешавања~%" @@ -4213,41 +4307,41 @@ msgstr "" msgid "Failing to do that may downgrade your system!~%" msgstr "" -#: guix/scripts/system.scm:754 guix/scripts/system.scm:863 +#: guix/scripts/system.scm:754 guix/scripts/system.scm:864 #, fuzzy, scheme-format msgid "bootloader successfully installed on '~a'~%" msgstr "ажурирани ~a је успешно развијен под „~a“~%" -#: guix/scripts/system.scm:856 +#: guix/scripts/system.scm:857 #, scheme-format msgid "activating system...~%" msgstr "покрећем систем...~%" -#: guix/scripts/system.scm:867 +#: guix/scripts/system.scm:868 msgid "" "To complete the upgrade, run 'herd restart SERVICE' to stop,\n" "upgrade, and restart each service that was not automatically restarted.\n" msgstr "" -#: guix/scripts/system.scm:870 +#: guix/scripts/system.scm:871 msgid "Run 'herd status' to view the list of services on your system.\n" msgstr "" -#: guix/scripts/system.scm:874 +#: guix/scripts/system.scm:875 #, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "покрећем оперативни систем под „~a“...~%" -#: guix/scripts/system.scm:894 guix/scripts/graph.scm:437 +#: guix/scripts/system.scm:895 guix/scripts/graph.scm:437 #, fuzzy, scheme-format msgid "~a: unknown backend~%" msgstr "~a: непозната радња~%" -#: guix/scripts/system.scm:931 +#: guix/scripts/system.scm:932 msgid "The available image types are:\n" msgstr "" -#: guix/scripts/system.scm:941 +#: guix/scripts/system.scm:942 #, fuzzy msgid "" "Usage: guix system [OPTION ...] ACTION [ARG ...] [FILE]\n" @@ -4257,75 +4351,75 @@ msgstr "" "Употреба: guix system [ОПЦИЈА] РАДЊА ДАТОТЕКА\n" "Изграђује оперативни систем објављен у ДАТОТЕЦИ у складу са РАДЊОМ.\n" -#: guix/scripts/system.scm:947 +#: guix/scripts/system.scm:948 msgid " search search for existing service types\n" msgstr "" -#: guix/scripts/system.scm:949 +#: guix/scripts/system.scm:950 #, fuzzy msgid " reconfigure switch to a new operating system configuration\n" msgstr " — „reconfigure“, пребацује на подешавање новог оперативног система\n" -#: guix/scripts/system.scm:951 +#: guix/scripts/system.scm:952 #, fuzzy msgid " roll-back switch to the previous operating system configuration\n" msgstr " — „reconfigure“, пребацује на подешавање новог оперативног система\n" -#: guix/scripts/system.scm:953 +#: guix/scripts/system.scm:954 msgid " describe describe the current system\n" msgstr "" -#: guix/scripts/system.scm:955 +#: guix/scripts/system.scm:956 msgid " list-generations list the system generations\n" msgstr "" -#: guix/scripts/system.scm:957 +#: guix/scripts/system.scm:958 #, fuzzy msgid " switch-generation switch to an existing operating system configuration\n" msgstr " — „reconfigure“, пребацује на подешавање новог оперативног система\n" -#: guix/scripts/system.scm:959 +#: guix/scripts/system.scm:960 msgid " delete-generations delete old system generations\n" msgstr "" -#: guix/scripts/system.scm:961 +#: guix/scripts/system.scm:962 #, fuzzy msgid " build build the operating system without installing anything\n" msgstr " — „build“, изграђује оперативни систем а не инсталира ништа\n" -#: guix/scripts/system.scm:963 +#: guix/scripts/system.scm:964 #, fuzzy msgid " container build a container that shares the host's store\n" msgstr " — „vm“, изграђује слику виртуелне машине која дели складиште домаћина\n" -#: guix/scripts/system.scm:965 +#: guix/scripts/system.scm:966 #, fuzzy msgid " vm build a virtual machine image that shares the host's store\n" msgstr " — „vm“, изграђује слику виртуелне машине која дели складиште домаћина\n" -#: guix/scripts/system.scm:967 +#: guix/scripts/system.scm:968 #, fuzzy msgid " image build a Guix System image\n" msgstr " — „vm-image“, изграђује самостојећу слику виртуелне машине\n" -#: guix/scripts/system.scm:969 +#: guix/scripts/system.scm:970 msgid " docker-image build a Docker image\n" msgstr "" -#: guix/scripts/system.scm:971 +#: guix/scripts/system.scm:972 #, fuzzy msgid " init initialize a root file system to run GNU\n" msgstr " — „init“, покреће корени систем датотека за покретање Гнуа.\n" -#: guix/scripts/system.scm:973 +#: guix/scripts/system.scm:974 msgid " extension-graph emit the service extension graph in Dot format\n" msgstr "" -#: guix/scripts/system.scm:975 +#: guix/scripts/system.scm:976 msgid " shepherd-graph emit the graph of shepherd services in Dot format\n" msgstr "" -#: guix/scripts/system.scm:979 +#: guix/scripts/system.scm:980 #, fuzzy msgid "" "\n" @@ -4334,21 +4428,21 @@ msgstr "" "\n" " -d, --derivations исписује путање изведенице датог пакета" -#: guix/scripts/system.scm:981 +#: guix/scripts/system.scm:982 msgid "" "\n" " -e, --expression=EXPR consider the operating-system EXPR evaluates to\n" " instead of reading FILE, when applicable" msgstr "" -#: guix/scripts/system.scm:984 +#: guix/scripts/system.scm:985 guix/scripts/home.scm:95 msgid "" "\n" " --allow-downgrades for 'reconfigure', allow downgrades to earlier\n" " channel revisions" msgstr "" -#: guix/scripts/system.scm:987 +#: guix/scripts/system.scm:988 msgid "" "\n" " --on-error=STRATEGY\n" @@ -4356,7 +4450,7 @@ msgid "" " or debug) when an error occurs while reading FILE" msgstr "" -#: guix/scripts/system.scm:991 +#: guix/scripts/system.scm:992 #, fuzzy msgid "" "\n" @@ -4365,7 +4459,7 @@ msgstr "" "\n" " --list-dead исписује живе путање" -#: guix/scripts/system.scm:993 +#: guix/scripts/system.scm:994 #, fuzzy msgid "" "\n" @@ -4374,7 +4468,7 @@ msgstr "" "\n" " --image-size=ВЕЛИЧИНА за „vm-image“, даје слику ВЕЛИЧИНЕ" -#: guix/scripts/system.scm:995 +#: guix/scripts/system.scm:996 #, fuzzy msgid "" "\n" @@ -4383,7 +4477,7 @@ msgstr "" "\n" " --image-size=ВЕЛИЧИНА за „vm-image“, даје слику ВЕЛИЧИНЕ" -#: guix/scripts/system.scm:997 +#: guix/scripts/system.scm:998 #, fuzzy msgid "" "\n" @@ -4392,45 +4486,51 @@ msgstr "" "\n" " --no-grub за „init“, не инсталира ГРУБ" -#: guix/scripts/system.scm:999 +#: guix/scripts/system.scm:1000 msgid "" "\n" " --volatile for 'image', make the root file system volatile" msgstr "" -#: guix/scripts/system.scm:1001 +#: guix/scripts/system.scm:1002 +msgid "" +"\n" +" --persistent for 'vm', make the root file system persistent" +msgstr "" + +#: guix/scripts/system.scm:1004 msgid "" "\n" " --label=LABEL for 'image', label disk image with LABEL" msgstr "" -#: guix/scripts/system.scm:1003 guix/scripts/pack.scm:1340 +#: guix/scripts/system.scm:1006 guix/scripts/pack.scm:1340 msgid "" "\n" " --save-provenance save provenance information" msgstr "" -#: guix/scripts/system.scm:1005 +#: guix/scripts/system.scm:1008 msgid "" "\n" " --share=SPEC for 'vm' and 'container', share host file system with\n" " read/write access according to SPEC" msgstr "" -#: guix/scripts/system.scm:1008 +#: guix/scripts/system.scm:1011 msgid "" "\n" " --expose=SPEC for 'vm' and 'container', expose host file system\n" " directory as read-only according to SPEC" msgstr "" -#: guix/scripts/system.scm:1011 +#: guix/scripts/system.scm:1014 msgid "" "\n" " -N, --network for 'container', allow containers to access the network" msgstr "" -#: guix/scripts/system.scm:1013 +#: guix/scripts/system.scm:1016 #, fuzzy msgid "" "\n" @@ -4442,82 +4542,82 @@ msgstr "" " -r, --root=ДАТОТЕКА чини ДАТОТЕКУ симболичком везом ка резултату, и бележи је\n" " као корен скупљача ђубра" -#: guix/scripts/system.scm:1017 +#: guix/scripts/system.scm:1020 msgid "" "\n" " --full-boot for 'vm', make a full boot sequence" msgstr "" -#: guix/scripts/system.scm:1019 +#: guix/scripts/system.scm:1022 msgid "" "\n" " --no-graphic for 'vm', use the tty that we are started in for IO" msgstr "" -#: guix/scripts/system.scm:1021 +#: guix/scripts/system.scm:1024 msgid "" "\n" " --skip-checks skip file system and initrd module safety checks" msgstr "" -#: guix/scripts/system.scm:1028 +#: guix/scripts/system.scm:1031 msgid "" "\n" " --graph-backend=BACKEND\n" " use BACKEND for 'extension-graphs' and 'shepherd-graph'" msgstr "" -#: guix/scripts/system.scm:1180 +#: guix/scripts/system.scm:1187 #, fuzzy, scheme-format msgid "'~a' does not return an operating system or an image~%" msgstr "профил „~a“ не постоји~%" -#: guix/scripts/system.scm:1204 guix/scripts/home.scm:216 +#: guix/scripts/system.scm:1211 guix/scripts/home.scm:230 #, scheme-format msgid "both file and expression cannot be specified~%" msgstr "" -#: guix/scripts/system.scm:1211 guix/scripts/home.scm:223 +#: guix/scripts/system.scm:1218 guix/scripts/home.scm:237 #, fuzzy, scheme-format msgid "no configuration specified~%" msgstr "није наведена датотека подешавања~%" -#: guix/scripts/system.scm:1319 guix/scripts/system.scm:1335 -#: guix/scripts/system.scm:1342 guix/scripts/system.scm:1348 -#: guix/scripts/home.scm:274 guix/scripts/home.scm:296 -#: guix/scripts/home.scm:301 guix/scripts/home.scm:307 -#: guix/scripts/home.scm:314 guix/scripts/import/gnu.scm:100 +#: guix/scripts/system.scm:1328 guix/scripts/system.scm:1344 +#: guix/scripts/system.scm:1351 guix/scripts/system.scm:1357 +#: guix/scripts/home.scm:287 guix/scripts/home.scm:309 +#: guix/scripts/home.scm:314 guix/scripts/home.scm:320 +#: guix/scripts/home.scm:327 guix/scripts/import/gnu.scm:100 #: guix/scripts/offload.scm:836 guix/scripts/offload.scm:848 #, scheme-format msgid "wrong number of arguments~%" msgstr "погрешан број аргумената~%" -#: guix/scripts/system.scm:1324 +#: guix/scripts/system.scm:1333 #, scheme-format msgid "no system generation, nothing to describe~%" msgstr "" -#: guix/scripts/system.scm:1367 guix/scripts/home.scm:337 +#: guix/scripts/system.scm:1376 guix/scripts/home.scm:350 #, scheme-format msgid "~a: unknown action~%" msgstr "~a: непозната радња~%" -#: guix/scripts/system.scm:1387 guix/scripts/home.scm:353 +#: guix/scripts/system.scm:1396 guix/scripts/home.scm:366 #, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "погрешан број аргумената за радњу „~a“~%" -#: guix/scripts/system.scm:1392 +#: guix/scripts/system.scm:1401 #, fuzzy, scheme-format msgid "guix system: missing command name~%" msgstr "guix: недостаје назив наредбе~%" -#: guix/scripts/system.scm:1394 +#: guix/scripts/system.scm:1403 #, fuzzy, scheme-format msgid "Try 'guix system --help' for more information.~%" msgstr "Пробајте „guix --help“ за више података.~%" -#: guix/scripts/system/search.scm:93 guix/ui.scm:1541 guix/ui.scm:1559 +#: guix/scripts/system/search.scm:93 guix/ui.scm:1544 guix/ui.scm:1562 msgid "unknown" msgstr "непознато" @@ -4933,7 +5033,7 @@ msgstr "" " -h, --help приказује ову помоћ и излази" #: guix/scripts/graph.scm:548 guix/scripts/pack.scm:1325 -#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:502 +#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:797 #, fuzzy msgid "" "\n" @@ -5586,13 +5686,19 @@ msgstr "" "\n" " -f, --format=ФМТ записује хеш у датом запису" -#: guix/scripts/deploy.scm:51 +#: guix/scripts/deploy.scm:54 msgid "" "Usage: guix deploy [OPTION] FILE...\n" "Perform the deployment specified by FILE.\n" msgstr "" -#: guix/scripts/deploy.scm:108 +#: guix/scripts/deploy.scm:63 +msgid "" +"\n" +" -x, --execute execute the following command on all the machines" +msgstr "" + +#: guix/scripts/deploy.scm:117 #, fuzzy, scheme-format msgid "The following ~d machine will be deployed:~%" msgid_plural "The following ~d machines will be deployed:~%" @@ -5600,31 +5706,70 @@ msgstr[0] "Следећи пакети ће бити уклоњени:~%~{~a~%~} msgstr[1] "Следећи пакети ће бити уклоњени:~%~{~a~%~}~%" msgstr[2] "Следећи пакети ће бити уклоњени:~%~{~a~%~}~%" -#: guix/scripts/deploy.scm:122 +#: guix/scripts/deploy.scm:131 #, fuzzy, scheme-format msgid "deploying to ~a...~%" msgstr "бришем ~a~%" -#: guix/scripts/deploy.scm:134 guix/scripts/deploy.scm:138 +#: guix/scripts/deploy.scm:143 guix/scripts/deploy.scm:147 #, fuzzy, scheme-format msgid "failed to deploy ~a: ~a~%" msgstr "нисам успео да се повежем на „~a“: ~a~%" -#: guix/scripts/deploy.scm:146 +#: guix/scripts/deploy.scm:155 #, scheme-format msgid "rolling back ~a...~%" msgstr "" -#: guix/scripts/deploy.scm:152 +#: guix/scripts/deploy.scm:161 #, fuzzy, scheme-format msgid "successfully deployed ~a~%" msgstr "ажурирани ~a је успешно развијен под „~a“~%" -#: guix/scripts/deploy.scm:167 +#: guix/scripts/deploy.scm:212 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command succeeded~%" +msgstr "guix: ~a: нисам пронашао наредбу~%" + +#: guix/scripts/deploy.scm:215 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command exited with code ~a~%" +msgstr "guix: ~a: нисам пронашао наредбу~%" + +#: guix/scripts/deploy.scm:218 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command stopped with signal ~a~%" +msgstr "guix: ~a: нисам пронашао наредбу~%" + +#: guix/scripts/deploy.scm:221 +#, scheme-format +msgid "~a: command terminated with signal ~a~%" +msgstr "" + +#: guix/scripts/deploy.scm:225 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "command output on ~a:~%" +msgstr "guix: ~a: нисам пронашао наредбу~%" + +#: guix/scripts/deploy.scm:246 #, scheme-format msgid "missing deployment file argument~%" msgstr "" +#: guix/scripts/deploy.scm:249 +#, scheme-format +msgid "'--' was used by '-x' was not specified~%" +msgstr "" + +#: guix/scripts/deploy.scm:271 +#, scheme-format +msgid "'-x' specified but no command given~%" +msgstr "" + #: guix/gexp.scm:465 #, scheme-format msgid "resolving '~a' relative to current directory~%" @@ -5720,73 +5865,73 @@ msgstr "" msgid "exec failed with status ~d~%" msgstr "" -#: guix/transformations.scm:185 guix/transformations.scm:253 +#: guix/transformations.scm:186 guix/transformations.scm:254 #, fuzzy, scheme-format msgid "invalid replacement specification: ~s" msgstr "нејасна одредница пакета „~a“~%" -#: guix/transformations.scm:234 +#: guix/transformations.scm:235 #, scheme-format msgid "the source of ~a is not a Git reference" msgstr "" -#: guix/transformations.scm:337 +#: guix/transformations.scm:338 #, scheme-format msgid "~a: invalid Git URL replacement specification" msgstr "" -#: guix/transformations.scm:415 +#: guix/transformations.scm:416 #, scheme-format msgid "~a: invalid toolchain replacement specification" msgstr "" -#: guix/transformations.scm:517 +#: guix/transformations.scm:518 #, fuzzy msgid "failed to determine which compiler is used" msgstr "нисам успео да изградим празан профил~%" -#: guix/transformations.scm:523 +#: guix/transformations.scm:524 #, fuzzy, scheme-format msgid "failed to determine whether ~a supports ~a" msgstr "нисам успео да изградим празан профил~%" -#: guix/transformations.scm:529 +#: guix/transformations.scm:530 #, scheme-format msgid "compiler ~a does not support micro-architecture ~a" msgstr "" -#: guix/transformations.scm:581 +#: guix/transformations.scm:582 #, fuzzy, scheme-format #| msgid "~a: ~a~%" msgid "tuning ~a for CPU ~a~%" msgstr "~a: ~a~%" -#: guix/transformations.scm:721 +#: guix/transformations.scm:722 #, fuzzy, scheme-format msgid "~a: invalid package patch specification" msgstr "неисправна обележја симболичке везе" -#: guix/transformations.scm:744 +#: guix/transformations.scm:745 #, scheme-format msgid "could not determine latest upstream release of '~a'~%" msgstr "" -#: guix/transformations.scm:752 +#: guix/transformations.scm:753 #, scheme-format msgid "cannot authenticate source of '~a', version ~a~%" msgstr "" -#: guix/transformations.scm:833 +#: guix/transformations.scm:840 #, scheme-format msgid "building for ~a instead of ~a, so tuning cannot be guessed~%" msgstr "" -#: guix/transformations.scm:859 +#: guix/transformations.scm:866 #, scheme-format msgid "Available package transformation options:~%" msgstr "" -#: guix/transformations.scm:865 +#: guix/transformations.scm:872 #, fuzzy msgid "" "\n" @@ -5797,35 +5942,35 @@ msgstr "" " --with-source=ИЗВОР\n" " користи ИЗВОР приликом изградње одговарајућег пакета" -#: guix/transformations.scm:868 +#: guix/transformations.scm:875 msgid "" "\n" " --with-input=PACKAGE=REPLACEMENT\n" " replace dependency PACKAGE by REPLACEMENT" msgstr "" -#: guix/transformations.scm:871 +#: guix/transformations.scm:878 msgid "" "\n" " --with-graft=PACKAGE=REPLACEMENT\n" " graft REPLACEMENT on packages that refer to PACKAGE" msgstr "" -#: guix/transformations.scm:874 +#: guix/transformations.scm:881 msgid "" "\n" " --with-branch=PACKAGE=BRANCH\n" " build PACKAGE from the latest commit of BRANCH" msgstr "" -#: guix/transformations.scm:877 +#: guix/transformations.scm:884 msgid "" "\n" " --with-commit=PACKAGE=COMMIT\n" " build PACKAGE from COMMIT" msgstr "" -#: guix/transformations.scm:880 +#: guix/transformations.scm:887 #, fuzzy msgid "" "\n" @@ -5836,7 +5981,7 @@ msgstr "" " --with-source=ИЗВОР\n" " користи ИЗВОР приликом изградње одговарајућег пакета" -#: guix/transformations.scm:883 +#: guix/transformations.scm:890 #, fuzzy msgid "" "\n" @@ -5847,7 +5992,7 @@ msgstr "" " --with-source=ИЗВОР\n" " користи ИЗВОР приликом изградње одговарајућег пакета" -#: guix/transformations.scm:886 +#: guix/transformations.scm:893 #, fuzzy msgid "" "\n" @@ -5858,21 +6003,21 @@ msgstr "" " --with-source=ИЗВОР\n" " користи ИЗВОР приликом изградње одговарајућег пакета" -#: guix/transformations.scm:889 +#: guix/transformations.scm:896 msgid "" "\n" " --with-c-toolchain=PACKAGE=TOOLCHAIN\n" " build PACKAGE and its dependents with TOOLCHAIN" msgstr "" -#: guix/transformations.scm:892 +#: guix/transformations.scm:899 msgid "" "\n" " --with-debug-info=PACKAGE\n" " build PACKAGE and preserve its debug info" msgstr "" -#: guix/transformations.scm:895 +#: guix/transformations.scm:902 #, fuzzy msgid "" "\n" @@ -5883,13 +6028,13 @@ msgstr "" " --with-source=ИЗВОР\n" " користи ИЗВОР приликом изградње одговарајућег пакета" -#: guix/transformations.scm:901 +#: guix/transformations.scm:908 msgid "" "\n" " --help-transform list package transformation options not shown here" msgstr "" -#: guix/transformations.scm:950 +#: guix/transformations.scm:957 #, scheme-format msgid "transformation '~a' had no effect on ~a~%" msgstr "" @@ -6405,12 +6550,12 @@ msgstr[2] "Следећи пакети ће бити инсталирани:~%~{ msgid "~a: invalid Texinfo markup~%" msgstr "~a: неисправан број~%" -#: guix/ui.scm:1873 +#: guix/ui.scm:1876 #, scheme-format msgid "invalid syntax: ~a~%" msgstr "неисправна синтакса: ~a~%" -#: guix/ui.scm:1882 +#: guix/ui.scm:1885 #, scheme-format msgid "Generation ~a\t~a" msgstr "Генерација ~a\t~a" @@ -6420,7 +6565,7 @@ msgstr "Генерација ~a\t~a" #. usual way of presenting dates in your locale. #. See https://www.gnu.org/software/guile/manual/html_node/SRFI_002d19-Date-to-string.html #. for details. -#: guix/ui.scm:1892 +#: guix/ui.scm:1895 #, scheme-format msgid "~b ~d ~Y ~T" msgstr "" @@ -6428,37 +6573,37 @@ msgstr "" #. TRANSLATORS: The word "current" here is an adjective for #. "Generation", as in "current generation". Use the appropriate #. gender where applicable. -#: guix/ui.scm:1898 +#: guix/ui.scm:1901 #, scheme-format msgid "~a\t(current)~%" msgstr "~a\t(текуће)~%" -#: guix/ui.scm:1932 +#: guix/ui.scm:1935 #, fuzzy, scheme-format msgid "cannot lock profile ~a: ~a~%" msgstr "не могу да приступим „~a“: ~a~%" -#: guix/ui.scm:1934 +#: guix/ui.scm:1937 #, fuzzy, scheme-format msgid "profile ~a is locked by another process~%" msgstr "профил „~a“ не постоји~%" -#: guix/ui.scm:1963 +#: guix/ui.scm:1966 #, fuzzy, scheme-format msgid "switched from generation ~a to ~a~%" msgstr "пребацујем се са генерације ~a на ~a~%" -#: guix/ui.scm:1979 +#: guix/ui.scm:1982 #, scheme-format msgid "deleting ~a~%" msgstr "бришем ~a~%" -#: guix/ui.scm:2010 +#: guix/ui.scm:2013 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "Пробајте „guix --help“ за више података.~%" -#: guix/ui.scm:2102 +#: guix/ui.scm:2105 #, fuzzy #| msgid "" #| "Usage: guix COMMAND ARGS...\n" @@ -6470,7 +6615,7 @@ msgstr "" "Употреба: guix НАРЕДБА АРГУМЕНТИ...\n" "Покрените НАРЕДБУ са АРГУМЕНТИМА.\n" -#: guix/ui.scm:2105 +#: guix/ui.scm:2108 #, fuzzy #| msgid "" #| "\n" @@ -6482,7 +6627,7 @@ msgstr "" "\n" " -h, --help приказује ову помоћ и излази" -#: guix/ui.scm:2107 +#: guix/ui.scm:2110 #, fuzzy #| msgid "" #| "\n" @@ -6494,26 +6639,26 @@ msgstr "" "\n" " -V, --version приказује податке о издању и излази" -#: guix/ui.scm:2112 +#: guix/ui.scm:2115 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "НАРЕДБА мора бити једна од подкоманди наведених испод:\n" -#: guix/ui.scm:2154 +#: guix/ui.scm:2157 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "guix: ~a: нисам пронашао наредбу~%" -#: guix/ui.scm:2156 +#: guix/ui.scm:2159 #, scheme-format msgid "Did you mean @code{~a}?" msgstr "" -#: guix/ui.scm:2190 +#: guix/ui.scm:2193 #, scheme-format msgid "guix: missing command name~%" msgstr "guix: недостаје назив наредбе~%" -#: guix/ui.scm:2198 +#: guix/ui.scm:2201 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "guix: непозната опција „~a“~%" @@ -6845,22 +6990,22 @@ msgstr "" msgid "unsupported manifest format" msgstr "неподржани запис хеша: ~a~%" -#: guix/profiles.scm:2242 +#: guix/profiles.scm:2247 #, fuzzy, scheme-format msgid "while creating directory `~a': ~a" msgstr "грешка: приликом стварања директоријума „~a“: ~a~%" -#: guix/profiles.scm:2247 +#: guix/profiles.scm:2252 #, fuzzy, scheme-format msgid "Please create the @file{~a} directory, with you as the owner." msgstr "Направите директоријум „~a“, у вашем власништву.~%" -#: guix/profiles.scm:2256 +#: guix/profiles.scm:2261 #, fuzzy, scheme-format msgid "directory `~a' is not owned by you" msgstr "грешка: директоријум „~a“ није у вашем власништву~%" -#: guix/profiles.scm:2260 +#: guix/profiles.scm:2265 #, fuzzy, scheme-format msgid "Please change the owner of @file{~a} to user ~s." msgstr "Поставите као власника ~s над „~a“.~%" @@ -7511,11 +7656,16 @@ msgstr "" msgid "'--profile' cannot be used with package options~%" msgstr "" -#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:275 +#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:261 #, scheme-format msgid "no packages specified; creating an empty environment~%" msgstr "" +#: guix/scripts/environment.scm:979 +#, scheme-format +msgid "'--check' is unnecessary when using '--container'; doing nothing~%" +msgstr "" + #: guix/scripts/home/import.scm:179 msgid "" ";; This \"home-environment\" file can be passed to 'guix home reconfigure'\n" @@ -7525,7 +7675,7 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/home.scm:65 +#: guix/scripts/home.scm:66 #, fuzzy msgid "" "Usage: guix home [OPTION ...] ACTION [ARG ...] [FILE]\n" @@ -7535,50 +7685,50 @@ msgstr "" "Употреба: guix system [ОПЦИЈА] РАДЊА ДАТОТЕКА\n" "Изграђује оперативни систем објављен у ДАТОТЕЦИ у складу са РАДЊОМ.\n" -#: guix/scripts/home.scm:71 +#: guix/scripts/home.scm:72 #, fuzzy msgid " search search for existing service types\n" msgstr "" "\n" " --search-paths приказује потребне одреднице променљиве окружења" -#: guix/scripts/home.scm:73 +#: guix/scripts/home.scm:74 #, fuzzy msgid " reconfigure switch to a new home environment configuration\n" msgstr " — „reconfigure“, пребацује на подешавање новог оперативног система\n" -#: guix/scripts/home.scm:75 +#: guix/scripts/home.scm:76 #, fuzzy msgid " roll-back switch to the previous home environment configuration\n" msgstr " — „reconfigure“, пребацује на подешавање новог оперативног система\n" -#: guix/scripts/home.scm:77 +#: guix/scripts/home.scm:78 msgid " describe describe the current home environment\n" msgstr "" -#: guix/scripts/home.scm:79 +#: guix/scripts/home.scm:80 msgid " list-generations list the home environment generations\n" msgstr "" -#: guix/scripts/home.scm:81 +#: guix/scripts/home.scm:82 #, fuzzy msgid " switch-generation switch to an existing home environment configuration\n" msgstr " — „reconfigure“, пребацује на подешавање новог оперативног система\n" -#: guix/scripts/home.scm:83 +#: guix/scripts/home.scm:84 msgid " delete-generations delete old home environment generations\n" msgstr "" -#: guix/scripts/home.scm:85 +#: guix/scripts/home.scm:86 #, fuzzy msgid " build build the home environment without installing anything\n" msgstr " — „build“, изграђује оперативни систем а не инсталира ништа\n" -#: guix/scripts/home.scm:87 +#: guix/scripts/home.scm:88 msgid " import generates a home environment definition from dotfiles\n" msgstr "" -#: guix/scripts/home.scm:91 +#: guix/scripts/home.scm:92 #, fuzzy msgid "" "\n" @@ -7588,41 +7738,41 @@ msgstr "" "\n" " -e, --expression=ИЗРАЗ изграђује процене ИЗРАЗА пакета или изведенице на" -#: guix/scripts/home.scm:196 +#: guix/scripts/home.scm:210 #, fuzzy, scheme-format msgid "'~a' does not return a home environment ~%" msgstr "профил „~a“ не постоји~%" -#: guix/scripts/home.scm:280 +#: guix/scripts/home.scm:293 #, scheme-format msgid "'~a' populated with all the Home configuration files~%" msgstr "" -#: guix/scripts/home.scm:282 +#: guix/scripts/home.scm:295 #, scheme-format msgid "" "Run @command{guix home reconfigure ~a/home-configuration.scm} to effectively\n" "deploy the home environment described by these files.\n" msgstr "" -#: guix/scripts/home.scm:289 +#: guix/scripts/home.scm:302 #, scheme-format msgid "no home environment generation, nothing to describe~%" msgstr "" -#: guix/scripts/home.scm:358 +#: guix/scripts/home.scm:371 #, fuzzy, scheme-format #| msgid "guix: missing command name~%" msgid "guix home: missing command name~%" msgstr "guix: недостаје назив наредбе~%" -#: guix/scripts/home.scm:360 +#: guix/scripts/home.scm:373 #, fuzzy, scheme-format #| msgid "Try `guix --help' for more information.~%" msgid "Try 'guix home --help' for more information.~%" msgstr "Пробајте „guix --help“ за више података.~%" -#: guix/scripts/home.scm:528 +#: guix/scripts/home.scm:541 #, fuzzy, scheme-format msgid "cannot switch to home environment generation '~a'~%" msgstr "пребацујем се са генерације ~a на ~a~%" @@ -7662,7 +7812,7 @@ msgstr "" #: guix/scripts/import/cpan.scm:83 guix/scripts/import/crate.scm:97 #: guix/scripts/import/egg.scm:100 guix/scripts/import/gem.scm:98 -#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:100 +#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:101 #, fuzzy, scheme-format msgid "failed to download meta-data for package '~a'~%" msgstr "нисам успео да преузмем најсвежији извор, излазим\n" @@ -7737,7 +7887,7 @@ msgid "" " --pin-versions use the exact versions of a module's dependencies" msgstr "" -#: guix/scripts/import/go.scm:117 +#: guix/scripts/import/go.scm:118 #, fuzzy, scheme-format msgid "failed to download meta-data for module '~a'.~%" msgstr "нисам успео да преузмем најсвежији извор, излазим\n" @@ -7870,6 +8020,11 @@ msgid "" "Import and convert the Texlive package for PACKAGE-NAME.\n" msgstr "" +#: guix/scripts/import/texlive.scm:84 +#, fuzzy, scheme-format +msgid "failed to import package '~a'~%" +msgstr "нисам успео да учитам датотеку машине „~a“: ~s~%" + #: guix/scripts/offload.scm:130 #, scheme-format msgid "The 'system' field is deprecated, please use 'systems' instead.~%" @@ -8314,14 +8469,14 @@ msgstr "" msgid "~a: unknown type of REPL~%" msgstr "~a: непозната радња~%" -#: guix/scripts/shell.scm:46 +#: guix/scripts/shell.scm:48 msgid "" "Usage: guix shell [OPTION] PACKAGES... [-- COMMAND...]\n" "Build an environment that includes PACKAGES and execute COMMAND or an\n" "interactive shell in that environment.\n" msgstr "" -#: guix/scripts/shell.scm:52 +#: guix/scripts/shell.scm:54 #, fuzzy #| msgid "" #| "\n" @@ -8333,7 +8488,7 @@ msgstr "" "\n" " -d, --derivations исписује путање изведенице датог пакета" -#: guix/scripts/shell.scm:54 +#: guix/scripts/shell.scm:56 #, fuzzy msgid "" "\n" @@ -8343,35 +8498,35 @@ msgstr "" " -r, --root=ДАТОТЕКА чини ДАТОТЕКУ симболичком везом ка резултату, и бележи је\n" " као корен скупљача ђубра" -#: guix/scripts/shell.scm:56 +#: guix/scripts/shell.scm:58 msgid "" "\n" " -q inhibit loading of 'guix.scm' and 'manifest.scm'" msgstr "" -#: guix/scripts/shell.scm:58 +#: guix/scripts/shell.scm:60 msgid "" "\n" " --rebuild-cache rebuild cached environment, if any" msgstr "" -#: guix/scripts/shell.scm:199 +#: guix/scripts/shell.scm:201 #, fuzzy, scheme-format msgid "ignoring invalid file name: '~a'~%" msgstr "неисправан број: ~a~%" -#: guix/scripts/shell.scm:280 +#: guix/scripts/shell.scm:266 #, fuzzy, scheme-format #| msgid "following redirection to `~a'...~%" msgid "loading environment from '~a'...~%" msgstr "пратим преусмеравање на „~a“...~%" -#: guix/scripts/shell.scm:286 +#: guix/scripts/shell.scm:272 #, scheme-format msgid "not loading '~a' because not authorized to do so~%" msgstr "" -#: guix/scripts/shell.scm:288 +#: guix/scripts/shell.scm:274 #, scheme-format msgid "" "To allow automatic loading of\n" @@ -8383,48 +8538,59 @@ msgid "" "@end example\n" msgstr "" -#: guix/scripts/shell.scm:386 +#: guix/scripts/shell.scm:431 msgid "" "Consider passing the @option{--check} option once\n" "to make sure your shell does not clobber environment variables." msgstr "" -#: guix/scripts/style.scm:241 +#: guix/scripts/style.scm:499 #, fuzzy, scheme-format msgid "~a: complex expression, bailing out~%" msgstr "потпис није исправан с-израз: ~s~%" -#: guix/scripts/style.scm:259 +#: guix/scripts/style.scm:517 #, scheme-format msgid "~a: input label '~a' does not match package name, bailing out~%" msgstr "" -#: guix/scripts/style.scm:264 +#: guix/scripts/style.scm:522 #, scheme-format msgid "~a: non-trivial input, bailing out~%" msgstr "" -#: guix/scripts/style.scm:288 +#: guix/scripts/style.scm:546 #, fuzzy, scheme-format msgid "~a: input expression is too short~%" msgstr "потпис није исправан с-израз: ~s~%" -#: guix/scripts/style.scm:380 +#: guix/scripts/style.scm:638 #, fuzzy, scheme-format msgid "~a: unsupported input style, bailing out~%" msgstr "неподржани запис хеша: ~a~%" -#: guix/scripts/style.scm:392 +#: guix/scripts/style.scm:650 #, scheme-format msgid "would be edited~%" msgstr "" -#: guix/scripts/style.scm:482 +#: guix/scripts/style.scm:721 +#, fuzzy, scheme-format +msgid "no definition location for package ~a~%" +msgstr "нисам успео да учитам датотеку машине „~a“: ~s~%" + +#: guix/scripts/style.scm:767 +#, fuzzy, scheme-format +#| msgid "~a: unknown action~%" +msgid "~a: unknown styling~%" +msgstr "~a: непозната радња~%" + +#: guix/scripts/style.scm:774 #, fuzzy, scheme-format msgid "~a: invalid input simplification policy~%" msgstr "неисправна обележја симболичке везе" -#: guix/scripts/style.scm:496 +#: guix/scripts/style.scm:788 #, fuzzy msgid "" "Usage: guix style [OPTION]... [PACKAGE]...\n" @@ -8433,7 +8599,13 @@ msgstr "" "Употреба: guix gc [ОПЦИЈА]... ПУТАЊЕ...\n" "Позовите скупљача ђубра.\n" -#: guix/scripts/style.scm:498 +#: guix/scripts/style.scm:790 +msgid "" +"\n" +" -S, --styling=RULE apply RULE, a styling rule" +msgstr "" + +#: guix/scripts/style.scm:793 #, fuzzy #| msgid "" #| "\n" @@ -8445,7 +8617,7 @@ msgstr "" "\n" " -n, --dry-run показује шта би требало да се уради а да заправо ништа не ради" -#: guix/scripts/style.scm:504 +#: guix/scripts/style.scm:799 msgid "" "\n" " --input-simplification=POLICY\n" @@ -8604,6 +8776,12 @@ msgstr "" msgid "produce debugging output" msgstr "" +#, fuzzy +#~ msgid "" +#~ "Failed to import package ~s.\n" +#~ "reason: ~s.~%" +#~ msgstr "нисам успео да убележим „~a“ под „~a“~%" + #, fuzzy #~ msgid "Package not found in opam repository: ~a~%" #~ msgstr "~A: нисам пронашао пакет за издање ~a~%" @@ -8642,9 +8820,6 @@ msgstr "" #~ msgid "nothing to do: already at the empty profile~%" #~ msgstr "ништа за урадити: већ сам у празном профилу~%" -#~ msgid "~a: note: using ~a but ~a is available upstream~%" -#~ msgstr "~a: напомена: користим ~a али ~a је доступно узводно~%" - #~ msgid "The following environment variable definitions may be needed:~%" #~ msgstr "Следеће одреднице променљиве окружења могу бити потребне:~%" diff --git a/po/guix/ta.po b/po/guix/ta.po index b6e011b896..3f446d6a90 100644 --- a/po/guix/ta.po +++ b/po/guix/ta.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: guix 1.2.0-pre3\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" "PO-Revision-Date: 2020-11-11 11:48+0530\n" "Last-Translator: Arun Isaac \n" "Language-Team: Tamil \n" @@ -60,37 +60,37 @@ msgstr "" msgid "Try adding @code{(use-service-modules ~a)}." msgstr "@code{(use-service-modules ~a)} சேர்த்துப் பார்க்க." -#: gnu/packages.scm:96 +#: gnu/packages.scm:97 #, scheme-format msgid "~a: patch not found" msgstr "~a: திருத்தம் கிடைக்கவில்லை" -#: gnu/packages.scm:480 gnu/packages.scm:521 +#: gnu/packages.scm:481 gnu/packages.scm:522 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "தெளிவற்ற மென்பொருள் தொகுப்பு குறிப்பு `~a'~%" -#: gnu/packages.scm:481 gnu/packages.scm:522 +#: gnu/packages.scm:482 gnu/packages.scm:523 #, scheme-format msgid "choosing ~a@~a from ~a~%" msgstr "~a@~a யிலிருந்து ~a~% யைத் தேர்ந்தெடுக்கப்பட்டது" -#: gnu/packages.scm:486 guix/scripts/package.scm:216 +#: gnu/packages.scm:487 guix/scripts/package.scm:218 #, scheme-format msgid "package '~a' has been superseded by '~a'~%" msgstr "'~a' நிரல்தொகுப்பு '~a' நிரல்தொகுப்பால் மாற்றாக்கப்பட்டது~%" -#: gnu/packages.scm:493 gnu/packages.scm:510 +#: gnu/packages.scm:494 gnu/packages.scm:511 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A: பதிப்பு ~a க்கு மென்பொருள் தொகுப்பு கிடைக்கவில்லை" -#: gnu/packages.scm:494 gnu/packages.scm:511 +#: gnu/packages.scm:495 gnu/packages.scm:512 #, scheme-format msgid "~A: unknown package~%" msgstr "~A: இல்லா நிரல்தொகுப்பு~%" -#: gnu/packages.scm:550 +#: gnu/packages.scm:551 #, scheme-format msgid "package `~a' lacks output `~a'~%" msgstr "`~a' மென்பொருள் தொகுப்பிற்கு `~a' என்ற வெளியீடில்லை~%" @@ -289,14 +289,14 @@ msgid "" "@code{SIGKILL}." msgstr "" -#: gnu/home/services.scm:127 +#: gnu/home/services.scm:128 msgid "" "Build the home environment top-level directory,\n" "which in turn refers to everything the home environment needs: its\n" "packages, configuration files, activation script, and so on." msgstr "" -#: gnu/home/services.scm:158 +#: gnu/home/services.scm:159 #, scheme-format msgid "" "This is the @dfn{home profile} and can be found in\n" @@ -305,22 +305,22 @@ msgid "" "@code{home-environment} record." msgstr "" -#: gnu/home/services.scm:180 +#: gnu/home/services.scm:181 #, scheme-format msgid "duplicate definition for `~a' environment variable ~%" msgstr "" -#: gnu/home/services.scm:242 +#: gnu/home/services.scm:243 msgid "Set the environment variables." msgstr "" -#: gnu/home/services.scm:253 +#: gnu/home/services.scm:254 #, fuzzy, scheme-format #| msgid "duplicate '~a' entry for /etc" msgid "duplicate '~a' entry for files/" msgstr "/etc அடைவில் '~a' கோப்பு மறுபடியும் குறிப்பிடப்பட்டுள்ளது" -#: gnu/home/services.scm:277 +#: gnu/home/services.scm:278 #, scheme-format msgid "" "Configuration files for programs that\n" @@ -329,7 +329,7 @@ msgstr "" #. TRANSLATORS: 'on-first-login' is the name of a service and #. shouldn't be translated -#: gnu/home/services.scm:308 +#: gnu/home/services.scm:309 msgid "" "XDG_RUNTIME_DIR doesn't exists, on-first-login script\n" "won't execute anything. You can check if xdg runtime directory exists,\n" @@ -337,13 +337,13 @@ msgid "" "script by running '$HOME/.guix-home/on-first-login'" msgstr "" -#: gnu/home/services.scm:328 +#: gnu/home/services.scm:329 msgid "" "Run gexps on first user login. Can be\n" "extended with one gexp." msgstr "" -#: gnu/home/services.scm:391 +#: gnu/home/services.scm:392 msgid "" "Run gexps to activate the current\n" "generation of home environment and update the state of the home\n" @@ -352,33 +352,33 @@ msgid "" "with one gexp, but many times, and all gexps must be idempotent." msgstr "" -#: gnu/home/services.scm:472 +#: gnu/home/services.scm:473 #, scheme-format msgid "" "Comparing ~a and\n" "~10t~a..." msgstr "" -#: gnu/home/services.scm:474 +#: gnu/home/services.scm:475 #, scheme-format msgid " done (~a)\n" msgstr "" #. TRANSLATORS: 'on-change' is the name of a service type, it #. probably shouldn't be translated. -#: gnu/home/services.scm:483 +#: gnu/home/services.scm:484 msgid "" "Evaluating on-change gexps.\n" "\n" msgstr "" -#: gnu/home/services.scm:485 +#: gnu/home/services.scm:486 msgid "" "On-change gexps evaluation finished.\n" "\n" msgstr "" -#: gnu/home/services.scm:499 +#: gnu/home/services.scm:500 msgid "" "G-expressions to run if the specified files have changed since the\n" "last generation. The extension should be a list of lists where the\n" @@ -386,7 +386,7 @@ msgid "" "changed, and the second element is the G-expression to be evaluated." msgstr "" -#: gnu/home/services.scm:519 +#: gnu/home/services.scm:520 #, fuzzy #| msgid "" #| "Store provenance information about the system in the system\n" @@ -677,13 +677,13 @@ msgstr "" msgid "Updater for ELPA packages" msgstr "OPAM நிரல்தொகுப்புத் திறமுயர்த்தி" -#: guix/import/github.scm:170 +#: guix/import/github.scm:175 #, fuzzy, scheme-format #| msgid "URI ~a unreachable: ~a" msgid "~a is unreachable (~a)~%" msgstr "~a முகவரியை அணுக இயலவில்லை: ~a" -#: guix/import/github.scm:260 +#: guix/import/github.scm:274 #, fuzzy #| msgid "Updater for GNU packages" msgid "Updater for GitHub packages" @@ -725,13 +725,23 @@ msgstr "~A: பதிப்பு ~a க்கு மென்பொருள் msgid "failed to determine latest release of GNU ~a" msgstr "connman யின் நிலையை அறிய இயலவில்லை." -#: guix/import/go.scm:569 +#: guix/import/go.scm:571 #, fuzzy, scheme-format #| msgid "no target of type '~a' for service '~a'" msgid "unsupported vcs type '~a' for package '~a'" msgstr "~1@*~a பணிக்குத் தேவையான ~0@*~a பணியில்லை" -#: guix/import/go.scm:647 +#: guix/import/go.scm:594 +#, scheme-format +msgid "version ~a of ~a is not available~%" +msgstr "" + +#: guix/import/go.scm:597 +#, scheme-format +msgid "Pick one of the following available versions:~{ ~a~}." +msgstr "" + +#: guix/import/go.scm:671 #, scheme-format msgid "" "Failed to import package ~s.\n" @@ -739,13 +749,6 @@ msgid "" "This package and its dependencies won't be imported.~%" msgstr "" -#: guix/import/go.scm:656 -#, fuzzy, scheme-format -msgid "" -"Failed to import package ~s.\n" -"reason: ~s.~%" -msgstr "'~a' கோப்பை ஏற்ற இயலவில்லை: ~a~%" - #: guix/import/minetest.scm:178 #, scheme-format msgid "In ~a: author names must consist of at least a single character.~%" @@ -844,79 +847,101 @@ msgstr "'~a' நிரல்தொகுப்பிற்கு மூலமி msgid "Updater for OPAM packages" msgstr "OPAM நிரல்தொகுப்புத் திறமுயர்த்தி" -#: guix/import/pypi.scm:230 +#: guix/import/pypi.scm:233 msgid "Could not extract requirement name in spec:" msgstr "" -#: guix/import/pypi.scm:290 +#: guix/import/pypi.scm:293 #, scheme-format msgid "parse-requires.txt reached an unexpected condition on line ~a~%" msgstr "" -#: guix/import/pypi.scm:356 +#: guix/import/pypi.scm:359 #, fuzzy, scheme-format msgid "Failed to extract file: ~a from wheel.~%" msgstr "'~a' கோப்பை ஏற்ற இயலவில்லை: ~a~%" -#: guix/import/pypi.scm:385 +#: guix/import/pypi.scm:388 #, scheme-format msgid "Cannot guess requirements from source archive: no requires.txt file found.~%" msgstr "" -#: guix/import/pypi.scm:390 +#: guix/import/pypi.scm:393 #, scheme-format msgid "Unsupported archive format; cannot determine package dependencies from source archive: ~a~%" msgstr "" -#: guix/import/pypi.scm:489 +#: guix/import/pypi.scm:434 +#, scheme-format +msgid "project name ~a does not appear verbatim in the PyPI URI~%" +msgstr "" + +#: guix/import/pypi.scm:437 +#, scheme-format +msgid "" +"The PyPI URI is: @url{~a}. You should review the\n" +"pypi-uri declaration in the generated package. You may need to replace ~s with\n" +"a substring of the PyPI URI that identifies the package." +msgstr "" + +#: guix/import/pypi.scm:505 #, scheme-format msgid "no source release for pypi package ~a ~a~%" msgstr "" -#: guix/import/pypi.scm:554 +#: guix/import/pypi.scm:509 +#, scheme-format +msgid "" +"This indicates that the\n" +"package is available on PyPI, but only as a \"wheel\" containing binaries, not\n" +"source. To build it from source, refer to the upstream repository at\n" +"@uref{~a}." +msgstr "" + +#: guix/import/pypi.scm:579 #, fuzzy #| msgid "Updater for OPAM packages" msgid "Updater for PyPI packages" msgstr "OPAM நிரல்தொகுப்புத் திறமுயர்த்தி" -#: gnu/installer.scm:214 +#: gnu/installer.scm:217 msgid "Locale" msgstr "" -#: gnu/installer.scm:230 gnu/installer/newt/timezone.scm:58 +#: gnu/installer.scm:233 gnu/installer/newt/timezone.scm:58 msgid "Timezone" msgstr "நேரவலயம்" -#: gnu/installer.scm:247 +#: gnu/installer.scm:250 msgid "Keyboard mapping selection" msgstr "" -#: gnu/installer.scm:256 gnu/installer/newt/hostname.scm:26 +#: gnu/installer.scm:259 gnu/installer/newt/hostname.scm:26 msgid "Hostname" msgstr "நிலையப்பெயர்" -#: gnu/installer.scm:265 +#: gnu/installer.scm:268 msgid "Network selection" msgstr "பிணையத்தேர்வு" -#: gnu/installer.scm:272 +#: gnu/installer.scm:275 msgid "Substitute server discovery" msgstr "" -#: gnu/installer.scm:279 gnu/installer/newt/user.scm:68 -#: gnu/installer/newt/user.scm:205 +#: gnu/installer.scm:282 gnu/installer/newt/user.scm:67 +#: gnu/installer/newt/user.scm:204 msgid "User creation" msgstr "பயனர் ஆக்கம்" -#: gnu/installer.scm:287 +#: gnu/installer.scm:290 msgid "Services" msgstr "பணிகள்" -#: gnu/installer.scm:298 +#: gnu/installer.scm:301 msgid "Partitioning" msgstr "வகிர்வமைத்தல்" -#: gnu/installer.scm:305 gnu/installer/newt/final.scm:53 +#: gnu/installer.scm:308 gnu/installer/newt/final.scm:53 msgid "Configuration file" msgstr "அமைவடிவக்கோப்பு" @@ -928,19 +953,81 @@ msgstr "connman யின் நிலையை அறிய இயலவில msgid "Unable to find expected regexp." msgstr "" -#: gnu/installer/newt.scm:52 +#: gnu/installer/newt.scm:58 msgid "Press for installation parameters." msgstr "" -#: gnu/installer/newt.scm:65 -#, scheme-format -msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +#: gnu/installer/newt.scm:68 +msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. You may choose to exit or create a dump archive." msgstr "" -#: gnu/installer/newt.scm:68 +#: gnu/installer/newt.scm:71 msgid "Unexpected problem" msgstr "" +#: gnu/installer/newt.scm:75 +msgid "Dump" +msgstr "" + +#: gnu/installer/newt.scm:76 gnu/installer/newt/ethernet.scm:79 +#: gnu/installer/newt/keymap.scm:56 gnu/installer/newt/locale.scm:43 +#: gnu/installer/newt/network.scm:65 gnu/installer/newt/network.scm:82 +#: gnu/installer/newt/page.scm:315 gnu/installer/newt/page.scm:679 +#: gnu/installer/newt/page.scm:763 gnu/installer/newt/page.scm:828 +#: gnu/installer/newt/partition.scm:54 gnu/installer/newt/partition.scm:90 +#: gnu/installer/newt/partition.scm:125 gnu/installer/newt/partition.scm:140 +#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 +#: gnu/installer/newt/partition.scm:706 gnu/installer/newt/partition.scm:764 +#: gnu/installer/newt/partition.scm:775 gnu/installer/newt/services.scm:124 +#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/wifi.scm:206 +msgid "Exit" +msgstr "வெளியேறு" + +#: gnu/installer/newt.scm:82 +#, scheme-format +msgid "The dump archive was created as ~a. Would you like to send this archive to the Guix servers?" +msgstr "" + +#: gnu/installer/newt.scm:84 +msgid "Dump archive created" +msgstr "" + +#: gnu/installer/newt.scm:88 +#, scheme-format +msgid "The dump was uploaded as ~a. Please report it by email to ~a." +msgstr "" + +#: gnu/installer/newt.scm:90 +#, fuzzy +#| msgid "some services could not be upgraded~%" +msgid "The dump could not be uploaded." +msgstr "சிலப் பணிகளைத் திறமுயர்த்த இயலவில்லை~%" + +#: gnu/installer/newt.scm:93 +msgid "Dump upload result" +msgstr "" + +#: gnu/installer/newt.scm:132 +#, scheme-format +msgid "External command ~s exited with code ~a" +msgstr "" + +#: gnu/installer/newt.scm:135 +#, scheme-format +msgid "External command ~s terminated by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:138 +#, scheme-format +msgid "External command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:140 +#, fuzzy +msgid "External command error" +msgstr "முதன்மையான கட்டளைகள்" + #: gnu/installer/newt/ethernet.scm:66 msgid "No ethernet service available, please try again." msgstr "" @@ -949,28 +1036,14 @@ msgstr "" msgid "No service" msgstr "" -#: gnu/installer/newt/ethernet.scm:76 +#: gnu/installer/newt/ethernet.scm:74 msgid "Please select an ethernet network." msgstr "ஈத்தர்வலையைத் தேர்க." -#: gnu/installer/newt/ethernet.scm:77 +#: gnu/installer/newt/ethernet.scm:75 msgid "Ethernet connection" msgstr "ஈத்தர்வலை இணைப்பு" -#: gnu/installer/newt/ethernet.scm:81 gnu/installer/newt/keymap.scm:56 -#: gnu/installer/newt/locale.scm:43 gnu/installer/newt/network.scm:63 -#: gnu/installer/newt/network.scm:84 gnu/installer/newt/page.scm:309 -#: gnu/installer/newt/page.scm:673 gnu/installer/newt/page.scm:758 -#: gnu/installer/newt/partition.scm:56 gnu/installer/newt/partition.scm:91 -#: gnu/installer/newt/partition.scm:126 gnu/installer/newt/partition.scm:141 -#: gnu/installer/newt/partition.scm:638 gnu/installer/newt/partition.scm:661 -#: gnu/installer/newt/partition.scm:707 gnu/installer/newt/partition.scm:765 -#: gnu/installer/newt/partition.scm:776 gnu/installer/newt/services.scm:130 -#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:204 -#: gnu/installer/newt/wifi.scm:206 -msgid "Exit" -msgstr "வெளியேறு" - #: gnu/installer/newt/final.scm:46 #, scheme-format msgid "We're now ready to proceed with the installation! A system configuration file has been generated, it is displayed below. This file will be available as '~a' on the installed system. The new system will be created from this file once you've pressed OK. This will take a few minutes." @@ -979,32 +1052,32 @@ msgstr "" "இக்கோப்பு நிறுவிய நிலையத்தில் '~a' என்னும் இடத்தில் இருக்கும். \"சரி\" அழுத்தியதும்\n" "நிலையம் நிறுவப்படும். இதுச் சில நிமிடங்களாகும்." -#: gnu/installer/newt/final.scm:70 +#: gnu/installer/newt/final.scm:68 msgid "Installation complete" msgstr "நிறுவல் முடிந்தது" -#: gnu/installer/newt/final.scm:71 gnu/installer/newt/parameters.scm:45 +#: gnu/installer/newt/final.scm:69 gnu/installer/newt/parameters.scm:45 #: gnu/installer/newt/welcome.scm:145 msgid "Reboot" msgstr "மீள்தொடக்கு" -#: gnu/installer/newt/final.scm:72 +#: gnu/installer/newt/final.scm:70 msgid "Congratulations! Installation is now complete. You may remove the device containing the installation image and press the button to reboot." msgstr "" -#: gnu/installer/newt/final.scm:86 +#: gnu/installer/newt/final.scm:84 msgid "Installation failed" msgstr "நிறுவல் தோல்வியுற்றது" -#: gnu/installer/newt/final.scm:87 +#: gnu/installer/newt/final.scm:85 msgid "Resume" msgstr "தொடர்" -#: gnu/installer/newt/final.scm:88 +#: gnu/installer/newt/final.scm:86 msgid "Restart the installer" msgstr "நிறுவியை மீள்துவங்கு" -#: gnu/installer/newt/final.scm:89 +#: gnu/installer/newt/final.scm:87 msgid "The final system installation step failed. You can resume from a specific step, or restart the installer." msgstr "" "இறுதிக்கட்ட நிறுவல் தோல்வியுற்றது. குறிப்பிட்டக் கட்டத்திலிருந்து மீள்துவங்கலாம்\n" @@ -1034,9 +1107,9 @@ msgstr "" msgid "Installation parameters" msgstr "நிறுவல் வரைகூறு" -#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:74 -#: gnu/installer/newt/locale.scm:63 gnu/installer/newt/locale.scm:78 -#: gnu/installer/newt/locale.scm:94 gnu/installer/newt/partition.scm:595 +#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:72 +#: gnu/installer/newt/locale.scm:61 gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:88 gnu/installer/newt/partition.scm:594 #: gnu/installer/newt/timezone.scm:64 msgid "Back" msgstr "பின்" @@ -1057,16 +1130,16 @@ msgstr "" msgid "Please choose your keyboard layout. It will be used during the install process, and for the installed system. Non-Latin layouts can be toggled with Alt+Shift. You can switch to a different layout at any time from the parameters menu." msgstr "" -#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:62 -#: gnu/installer/newt/page.scm:308 +#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/page.scm:314 msgid "Continue" msgstr "தொடர்" -#: gnu/installer/newt/keymap.scm:67 +#: gnu/installer/newt/keymap.scm:65 msgid "Variant" msgstr "" -#: gnu/installer/newt/keymap.scm:70 +#: gnu/installer/newt/keymap.scm:68 msgid "Please choose a variant for your keyboard layout." msgstr "" @@ -1078,35 +1151,35 @@ msgstr "" msgid "Choose the language to use for the installation process and for the installed system." msgstr "" -#: gnu/installer/newt/locale.scm:57 +#: gnu/installer/newt/locale.scm:55 msgid "Locale location" msgstr "" -#: gnu/installer/newt/locale.scm:60 +#: gnu/installer/newt/locale.scm:58 msgid "Choose a territory for this language." msgstr "" -#: gnu/installer/newt/locale.scm:71 +#: gnu/installer/newt/locale.scm:67 msgid "Locale codeset" msgstr "" -#: gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:70 msgid "Choose the locale encoding." msgstr "" -#: gnu/installer/newt/locale.scm:86 +#: gnu/installer/newt/locale.scm:80 msgid "Locale modifier" msgstr "" -#: gnu/installer/newt/locale.scm:89 +#: gnu/installer/newt/locale.scm:83 msgid "Choose your locale's modifier. The most frequent modifier is euro. It indicates that you want to use Euro as the currency symbol." msgstr "" -#: gnu/installer/newt/locale.scm:190 +#: gnu/installer/newt/locale.scm:181 msgid "No location" msgstr "" -#: gnu/installer/newt/locale.scm:217 +#: gnu/installer/newt/locale.scm:208 msgid "No modifier" msgstr "" @@ -1122,330 +1195,334 @@ msgstr "" msgid "Abort" msgstr "நிறுத்து" -#: gnu/installer/newt/network.scm:61 gnu/installer/newt/network.scm:80 +#: gnu/installer/newt/network.scm:63 gnu/installer/newt/network.scm:78 msgid "Internet access" msgstr "" -#: gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/network.scm:66 msgid "The install process requires Internet access but no network devices were found. Do you want to continue anyway?" msgstr "" -#: gnu/installer/newt/network.scm:78 +#: gnu/installer/newt/network.scm:76 msgid "The install process requires Internet access. Please select a network device." msgstr "" -#: gnu/installer/newt/network.scm:103 +#: gnu/installer/newt/network.scm:99 msgid "Powering technology" msgstr "" -#: gnu/installer/newt/network.scm:104 +#: gnu/installer/newt/network.scm:100 #, scheme-format msgid "Waiting for technology ~a to be powered." msgstr "" -#: gnu/installer/newt/network.scm:128 +#: gnu/installer/newt/network.scm:139 msgid "Checking connectivity" msgstr "" -#: gnu/installer/newt/network.scm:129 +#: gnu/installer/newt/network.scm:140 msgid "Waiting for Internet access establishment..." msgstr "" -#: gnu/installer/newt/network.scm:139 -msgid "The selected network does not provide access to the Internet, please try again." +#: gnu/installer/newt/network.scm:150 +msgid "The selected network does not provide access to the Internet and the Guix substitute server, please try again." msgstr "" -#: gnu/installer/newt/network.scm:141 gnu/installer/newt/wifi.scm:108 +#: gnu/installer/newt/network.scm:152 gnu/installer/newt/wifi.scm:108 msgid "Connection error" msgstr "" -#: gnu/installer/newt/page.scm:198 +#: gnu/installer/newt/page.scm:204 #, scheme-format msgid "Connecting to ~a, please wait." msgstr "" -#: gnu/installer/newt/page.scm:199 +#: gnu/installer/newt/page.scm:205 msgid "Connection in progress" msgstr "" -#: gnu/installer/newt/page.scm:218 gnu/installer/newt/user.scm:60 +#: gnu/installer/newt/page.scm:224 gnu/installer/newt/user.scm:59 msgid "Show" msgstr "காட்டு" -#: gnu/installer/newt/page.scm:225 gnu/installer/newt/page.scm:672 -#: gnu/installer/newt/page.scm:757 gnu/installer/newt/partition.scm:458 -#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 -#: gnu/installer/newt/partition.scm:699 gnu/installer/newt/user.scm:66 -#: gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/page.scm:231 gnu/installer/newt/page.scm:678 +#: gnu/installer/newt/page.scm:762 gnu/installer/newt/partition.scm:457 +#: gnu/installer/newt/partition.scm:636 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:698 gnu/installer/newt/user.scm:65 +#: gnu/installer/newt/user.scm:202 msgid "OK" msgstr "சரி" -#: gnu/installer/newt/page.scm:251 +#: gnu/installer/newt/page.scm:257 msgid "Please enter a non empty input." msgstr "" -#: gnu/installer/newt/page.scm:252 gnu/installer/newt/user.scm:123 +#: gnu/installer/newt/page.scm:258 gnu/installer/newt/user.scm:122 msgid "Empty input" msgstr "" -#: gnu/installer/newt/page.scm:760 +#: gnu/installer/newt/page.scm:765 msgid "Edit" msgstr "தொகு" -#: gnu/installer/newt/partition.scm:47 +#: gnu/installer/newt/page.scm:825 +msgid "Ok" +msgstr "" + +#: gnu/installer/newt/partition.scm:45 msgid "Everything is one partition" msgstr "எல்லாம் ஒரே வகிர்வில்" -#: gnu/installer/newt/partition.scm:48 +#: gnu/installer/newt/partition.scm:46 msgid "Separate /home partition" msgstr "தனி /home வகிர்வு" -#: gnu/installer/newt/partition.scm:50 +#: gnu/installer/newt/partition.scm:48 msgid "Please select a partitioning scheme." msgstr "வகிர்வுத் திட்டத்தைத் தேர்ந்தெடுக்க." -#: gnu/installer/newt/partition.scm:51 +#: gnu/installer/newt/partition.scm:49 msgid "Partition scheme" msgstr "வகிர்வுத் திட்டம்" #. TRANSLATORS: The ~{ and ~} format specifiers are used to iterate the list #. of device names of the user partitions that will be formatted. -#: gnu/installer/newt/partition.scm:65 +#: gnu/installer/newt/partition.scm:63 #, scheme-format msgid "We are about to write the configured partition table to the disk and format the partitions listed below. Their data will be lost. Do you wish to continue?~%~%~{ - ~a~%~}" msgstr "" -#: gnu/installer/newt/partition.scm:71 +#: gnu/installer/newt/partition.scm:69 msgid "Format disk?" msgstr "" -#: gnu/installer/newt/partition.scm:74 +#: gnu/installer/newt/partition.scm:72 msgid "Partition formatting is in progress, please wait." msgstr "" -#: gnu/installer/newt/partition.scm:75 +#: gnu/installer/newt/partition.scm:73 msgid "Preparing partitions" msgstr "" -#: gnu/installer/newt/partition.scm:86 -msgid "Please select a disk." -msgstr "வட்டைத் தேர்ந்தெடுக்க." +#: gnu/installer/newt/partition.scm:84 +msgid "Please select a disk. The installation device as well as the small devices are filtered." +msgstr "" -#: gnu/installer/newt/partition.scm:87 +#: gnu/installer/newt/partition.scm:86 msgid "Disk" msgstr "வட்டு" -#: gnu/installer/newt/partition.scm:102 +#: gnu/installer/newt/partition.scm:101 msgid "Select a new partition table type. Be careful, all data on the disk will be lost." msgstr "" -#: gnu/installer/newt/partition.scm:104 +#: gnu/installer/newt/partition.scm:103 msgid "Partition table" msgstr "" -#: gnu/installer/newt/partition.scm:121 +#: gnu/installer/newt/partition.scm:120 msgid "Please select a partition type." msgstr "வகிர்வு வகையைத் தேர்ந்தெடுக்க." -#: gnu/installer/newt/partition.scm:122 +#: gnu/installer/newt/partition.scm:121 msgid "Partition type" msgstr "வகிர்வு வகை" -#: gnu/installer/newt/partition.scm:132 +#: gnu/installer/newt/partition.scm:131 msgid "Please select the file-system type for this partition." msgstr "இவ்வகிர்வுக்கு கோப்பமைப்பைத் தேர்ந்தெடுக்க." -#: gnu/installer/newt/partition.scm:133 +#: gnu/installer/newt/partition.scm:132 msgid "File-system type" msgstr "கோப்பமைப்பு" -#: gnu/installer/newt/partition.scm:150 +#: gnu/installer/newt/partition.scm:149 msgid "Primary partitions count exceeded." msgstr "" -#: gnu/installer/newt/partition.scm:151 gnu/installer/newt/partition.scm:156 -#: gnu/installer/newt/partition.scm:161 +#: gnu/installer/newt/partition.scm:150 gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:160 msgid "Creation error" msgstr "" -#: gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:154 msgid "Extended partition creation error." msgstr "" -#: gnu/installer/newt/partition.scm:160 +#: gnu/installer/newt/partition.scm:159 msgid "Logical partition creation error." msgstr "" -#: gnu/installer/newt/partition.scm:174 +#: gnu/installer/newt/partition.scm:173 #, scheme-format msgid "Please enter the password for the encryption of partition ~a (label: ~a)." msgstr "" -#: gnu/installer/newt/partition.scm:176 gnu/installer/newt/wifi.scm:92 +#: gnu/installer/newt/partition.scm:175 gnu/installer/newt/wifi.scm:92 msgid "Password required" msgstr "கடவுச்சொல் தேவை" -#: gnu/installer/newt/partition.scm:181 +#: gnu/installer/newt/partition.scm:180 #, scheme-format msgid "Please confirm the password for the encryption of partition ~a (label: ~a)." msgstr "" -#: gnu/installer/newt/partition.scm:183 gnu/installer/newt/user.scm:160 +#: gnu/installer/newt/partition.scm:182 gnu/installer/newt/user.scm:159 msgid "Password confirmation required" msgstr "" -#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 +#: gnu/installer/newt/partition.scm:194 gnu/installer/newt/user.scm:167 msgid "Password mismatch, please try again." msgstr "" -#: gnu/installer/newt/partition.scm:196 gnu/installer/newt/user.scm:169 +#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 msgid "Password error" msgstr "" -#: gnu/installer/newt/partition.scm:282 +#: gnu/installer/newt/partition.scm:281 msgid "Please enter the partition gpt name." msgstr "" -#: gnu/installer/newt/partition.scm:283 +#: gnu/installer/newt/partition.scm:282 msgid "Partition name" msgstr "வகிர்வு பெயர்" -#: gnu/installer/newt/partition.scm:313 +#: gnu/installer/newt/partition.scm:312 msgid "Please enter the encrypted label" msgstr "" -#: gnu/installer/newt/partition.scm:314 +#: gnu/installer/newt/partition.scm:313 msgid "Encryption label" msgstr "" -#: gnu/installer/newt/partition.scm:331 +#: gnu/installer/newt/partition.scm:330 #, scheme-format msgid "Please enter the size of the partition. The maximum size is ~a." msgstr "" -#: gnu/installer/newt/partition.scm:333 +#: gnu/installer/newt/partition.scm:332 msgid "Partition size" msgstr "வகிர்வளவு" -#: gnu/installer/newt/partition.scm:351 +#: gnu/installer/newt/partition.scm:350 msgid "The percentage can not be superior to 100." msgstr "விழுக்காடு 100 க்கு மேல் இருக்க முடியாது." -#: gnu/installer/newt/partition.scm:352 gnu/installer/newt/partition.scm:357 -#: gnu/installer/newt/partition.scm:362 +#: gnu/installer/newt/partition.scm:351 gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:361 msgid "Size error" msgstr "" -#: gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:355 msgid "The requested size is incorrectly formatted, or too large." msgstr "" -#: gnu/installer/newt/partition.scm:361 +#: gnu/installer/newt/partition.scm:360 msgid "The request size is superior to the maximum size." msgstr "" -#: gnu/installer/newt/partition.scm:381 +#: gnu/installer/newt/partition.scm:380 msgid "Please enter the desired mounting point for this partition. Leave this field empty if you don't want to set a mounting point." msgstr "" -#: gnu/installer/newt/partition.scm:383 +#: gnu/installer/newt/partition.scm:382 msgid "Mounting point" msgstr "" -#: gnu/installer/newt/partition.scm:447 +#: gnu/installer/newt/partition.scm:446 #, scheme-format msgid "Creating ~a partition starting at ~a of ~a." msgstr "" -#: gnu/installer/newt/partition.scm:449 +#: gnu/installer/newt/partition.scm:448 #, scheme-format msgid "You are currently editing partition ~a." msgstr "" -#: gnu/installer/newt/partition.scm:452 +#: gnu/installer/newt/partition.scm:451 msgid "Partition creation" msgstr "" -#: gnu/installer/newt/partition.scm:453 +#: gnu/installer/newt/partition.scm:452 msgid "Partition edit" msgstr "" -#: gnu/installer/newt/partition.scm:634 +#: gnu/installer/newt/partition.scm:633 #, scheme-format msgid "Are you sure you want to delete everything on disk ~a?" msgstr "" -#: gnu/installer/newt/partition.scm:636 +#: gnu/installer/newt/partition.scm:635 msgid "Delete disk" msgstr "" -#: gnu/installer/newt/partition.scm:651 +#: gnu/installer/newt/partition.scm:650 msgid "You cannot delete a free space area." msgstr "" -#: gnu/installer/newt/partition.scm:652 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:651 gnu/installer/newt/partition.scm:658 msgid "Delete partition" msgstr "" -#: gnu/installer/newt/partition.scm:657 +#: gnu/installer/newt/partition.scm:656 #, scheme-format msgid "Are you sure you want to delete partition ~a?" msgstr "" -#: gnu/installer/newt/partition.scm:674 +#: gnu/installer/newt/partition.scm:673 msgid "" "You can change a disk's partition table by selecting it and pressing ENTER. You can also edit a partition by selecting it and pressing ENTER, or remove it by pressing DELETE. To create a new partition, select a free space area and press ENTER.\n" "\n" "At least one partition must have its mounting point set to '/'." msgstr "" -#: gnu/installer/newt/partition.scm:680 +#: gnu/installer/newt/partition.scm:679 #, scheme-format msgid "This is the proposed partitioning. It is still possible to edit it or to go back to install menu by pressing the Exit button.~%~%" msgstr "" -#: gnu/installer/newt/partition.scm:690 +#: gnu/installer/newt/partition.scm:689 msgid "Guided partitioning" msgstr "" -#: gnu/installer/newt/partition.scm:691 +#: gnu/installer/newt/partition.scm:690 msgid "Manual partitioning" msgstr "" -#: gnu/installer/newt/partition.scm:716 +#: gnu/installer/newt/partition.scm:715 msgid "No root mount point found." msgstr "" -#: gnu/installer/newt/partition.scm:717 +#: gnu/installer/newt/partition.scm:716 msgid "Missing mount point" msgstr "" -#: gnu/installer/newt/partition.scm:721 +#: gnu/installer/newt/partition.scm:720 #, scheme-format msgid "Cannot read the ~a partition UUID. You may need to format it." msgstr "" -#: gnu/installer/newt/partition.scm:724 +#: gnu/installer/newt/partition.scm:723 msgid "Wrong partition format" msgstr "" -#: gnu/installer/newt/partition.scm:755 +#: gnu/installer/newt/partition.scm:754 msgid "Guided - using the entire disk" msgstr "" -#: gnu/installer/newt/partition.scm:756 +#: gnu/installer/newt/partition.scm:755 msgid "Guided - using the entire disk with encryption" msgstr "" -#: gnu/installer/newt/partition.scm:757 +#: gnu/installer/newt/partition.scm:756 msgid "Manual" msgstr "" -#: gnu/installer/newt/partition.scm:759 +#: gnu/installer/newt/partition.scm:758 msgid "Please select a partitioning method." msgstr "வகிர்வமைத்தல் முறையைத் தேர்ந்தெடுக்க." -#: gnu/installer/newt/partition.scm:760 +#: gnu/installer/newt/partition.scm:759 msgid "Partitioning method" msgstr "வகிர்வமைத்தல் முறை" @@ -1457,37 +1534,37 @@ msgstr "" msgid "Desktop environment" msgstr "" -#: gnu/installer/newt/services.scm:59 +#: gnu/installer/newt/services.scm:57 msgid "You can now select networking services to run on your system." msgstr "" -#: gnu/installer/newt/services.scm:61 +#: gnu/installer/newt/services.scm:59 msgid "Network service" msgstr "" -#: gnu/installer/newt/services.scm:79 +#: gnu/installer/newt/services.scm:75 msgid "You can now select the CUPS printing service to run on your system." msgstr "" -#: gnu/installer/newt/services.scm:81 +#: gnu/installer/newt/services.scm:77 msgid "Printing and document services" msgstr "" -#: gnu/installer/newt/services.scm:100 +#: gnu/installer/newt/services.scm:94 #, fuzzy #| msgid "Services" msgid "Console services" msgstr "பணிகள்" -#: gnu/installer/newt/services.scm:101 +#: gnu/installer/newt/services.scm:95 msgid "Select miscellaneous services to run on your non-graphical system." msgstr "" -#: gnu/installer/newt/services.scm:115 +#: gnu/installer/newt/services.scm:109 msgid "Network management" msgstr "" -#: gnu/installer/newt/services.scm:118 +#: gnu/installer/newt/services.scm:112 msgid "" "Choose the method to manage network connections.\n" "\n" @@ -1517,57 +1594,57 @@ msgstr "" msgid "Please select a timezone." msgstr "" -#: gnu/installer/newt/user.scm:45 +#: gnu/installer/newt/user.scm:44 msgid "Name" msgstr "பெயர்" -#: gnu/installer/newt/user.scm:47 +#: gnu/installer/newt/user.scm:46 msgid "Real name" msgstr "முழுப் பெயர்" -#: gnu/installer/newt/user.scm:49 +#: gnu/installer/newt/user.scm:48 msgid "Home directory" msgstr "மனை அடைவு" -#: gnu/installer/newt/user.scm:51 +#: gnu/installer/newt/user.scm:50 msgid "Password" msgstr "கடவுச்சொல்" -#: gnu/installer/newt/user.scm:122 +#: gnu/installer/newt/user.scm:121 msgid "Empty inputs are not allowed." msgstr "" -#: gnu/installer/newt/user.scm:159 +#: gnu/installer/newt/user.scm:158 msgid "Please confirm the password." msgstr "கடவுச்சொல்லை உறுதி செய்க." #. TRANSLATORS: Leave "root" untranslated: it refers to the name of the #. system administrator account. -#: gnu/installer/newt/user.scm:176 +#: gnu/installer/newt/user.scm:175 msgid "Please choose a password for the system administrator (\"root\")." msgstr "மேலாண்மையர் (root) கடவுச்சொல்லைத் தேர்ந்தெடுக்க." -#: gnu/installer/newt/user.scm:178 +#: gnu/installer/newt/user.scm:177 msgid "System administrator password" msgstr "மேலாண்மையர் கடவுச்சொல்" -#: gnu/installer/newt/user.scm:191 +#: gnu/installer/newt/user.scm:190 msgid "Please add at least one user to system using the 'Add' button." msgstr "" -#: gnu/installer/newt/user.scm:194 +#: gnu/installer/newt/user.scm:193 msgid "Add" msgstr "சேர்" -#: gnu/installer/newt/user.scm:195 +#: gnu/installer/newt/user.scm:194 msgid "Delete" msgstr "நீக்கு" -#: gnu/installer/newt/user.scm:255 +#: gnu/installer/newt/user.scm:254 msgid "Please create at least one user." msgstr "" -#: gnu/installer/newt/user.scm:256 +#: gnu/installer/newt/user.scm:255 msgid "No user" msgstr "" @@ -1638,60 +1715,60 @@ msgstr "" msgid "Wifi" msgstr "" -#: gnu/installer/parted.scm:433 gnu/installer/parted.scm:470 +#: gnu/installer/parted.scm:455 gnu/installer/parted.scm:492 msgid "Free space" msgstr "வெற்றிடம்" -#: gnu/installer/parted.scm:559 +#: gnu/installer/parted.scm:581 #, scheme-format msgid "Name: ~a" msgstr "பெயர்: ~a" -#: gnu/installer/parted.scm:560 gnu/installer/parted.scm:606 +#: gnu/installer/parted.scm:582 gnu/installer/parted.scm:628 msgid "None" msgstr "" -#: gnu/installer/parted.scm:565 +#: gnu/installer/parted.scm:587 #, scheme-format msgid "Type: ~a" msgstr "" -#: gnu/installer/parted.scm:569 +#: gnu/installer/parted.scm:591 #, scheme-format msgid "File system type: ~a" msgstr "கோப்பமைப்பு வகை: ~a" -#: gnu/installer/parted.scm:575 +#: gnu/installer/parted.scm:597 #, scheme-format msgid "Bootable flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:579 +#: gnu/installer/parted.scm:601 #, scheme-format msgid "ESP flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:585 +#: gnu/installer/parted.scm:607 #, scheme-format msgid "Size: ~a" msgstr "" -#: gnu/installer/parted.scm:591 +#: gnu/installer/parted.scm:613 #, scheme-format msgid "Encryption: ~:[No~a~;Yes (label '~a')~]" msgstr "" -#: gnu/installer/parted.scm:597 +#: gnu/installer/parted.scm:619 #, scheme-format msgid "Format the partition? ~:[No~;Yes~]" msgstr "" -#: gnu/installer/parted.scm:603 +#: gnu/installer/parted.scm:625 #, scheme-format msgid "Mount point: ~a" msgstr "" -#: gnu/installer/parted.scm:1466 +#: gnu/installer/parted.scm:1477 #, scheme-format msgid "Device ~a is still in use." msgstr "" @@ -1735,7 +1812,7 @@ msgstr "" #. TRANSLATORS: This is a comment within a Scheme file. Each line must #. start with ";; " (two semicolons and a space). Please keep line #. length below 60 characters. -#: gnu/installer/steps.scm:252 +#: gnu/installer/steps.scm:242 msgid "" ";; This is an operating system configuration generated\n" ";; by the graphical installer.\n" @@ -1746,99 +1823,118 @@ msgstr "" msgid "Unable to locate path: ~a." msgstr "" -#: gnu/installer/utils.scm:83 +#: gnu/installer/utils.scm:131 #, scheme-format msgid "Press Enter to continue.~%" msgstr "" -#: gnu/installer/utils.scm:108 +#: gnu/installer/utils.scm:150 #, scheme-format -msgid "Command failed with exit code ~a.~%" +msgid "Command ~s exited with value ~a" msgstr "" -#: gnu/machine/ssh.scm:117 +#: gnu/installer/utils.scm:156 +#, scheme-format +msgid "Command ~s killed by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:162 +#, scheme-format +msgid "Command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:167 +#, scheme-format +msgid "Command ~s succeeded" +msgstr "" + +#: gnu/installer/utils.scm:179 +msgid "run-command-in-installer not set" +msgstr "" + +#: gnu/machine/ssh.scm:120 #, scheme-format msgid " without a 'host-key' is deprecated~%" msgstr "" -#: gnu/machine/ssh.scm:192 +#: gnu/machine/ssh.scm:208 #, scheme-format msgid "device '~a' not found: ~a" msgstr "" -#: gnu/machine/ssh.scm:207 +#: gnu/machine/ssh.scm:223 #, scheme-format msgid "no file system with label '~a'" msgstr "" -#: gnu/machine/ssh.scm:226 +#: gnu/machine/ssh.scm:242 #, scheme-format msgid "no file system with UUID '~a'" msgstr "" -#: gnu/machine/ssh.scm:276 +#: gnu/machine/ssh.scm:295 #, scheme-format msgid "missing modules for ~a:~{ ~a~}~%" msgstr "" -#: gnu/machine/ssh.scm:311 +#: gnu/machine/ssh.scm:333 #, scheme-format msgid "incorrect target system ('~a' was given, while the system reports that it is '~a')~%" msgstr "" -#: gnu/machine/ssh.scm:437 +#: gnu/machine/ssh.scm:459 #, scheme-format msgid "no signing key '~a'. have you run 'guix archive --generate-key?'" msgstr "" -#: gnu/machine/ssh.scm:469 +#: gnu/machine/ssh.scm:491 #, scheme-format msgid "failed to switch systems while deploying '~a':~%~{~s ~}" msgstr "" -#: gnu/machine/ssh.scm:477 +#: gnu/machine/ssh.scm:499 #, scheme-format msgid "an error occurred while upgrading services on '~a':~%~{~s ~}~%" msgstr "" -#: gnu/machine/ssh.scm:485 +#: gnu/machine/ssh.scm:507 #, fuzzy, scheme-format #| msgid "failed to load '~a': ~a~%" msgid "failed to install bootloader on '~a':~%~{~s ~}~%" msgstr "'~a' கோப்பை ஏற்ற இயலவில்லை: ~a~%" -#: gnu/machine/ssh.scm:518 +#: gnu/machine/ssh.scm:540 msgid "could not roll-back machine" msgstr "" -#: gnu/machine/ssh.scm:559 +#: gnu/machine/ssh.scm:581 msgid "" "Provisioning for machines that are accessible over SSH\n" "and have a known host-name. This entails little more than maintaining an SSH\n" "connection to the host." msgstr "" -#: gnu/machine/ssh.scm:569 +#: gnu/machine/ssh.scm:591 #, scheme-format msgid "" "unsupported machine configuration '~a'\n" "for environment of type '~a'" msgstr "" -#: gnu/packages/bootstrap.scm:178 +#: gnu/packages/bootstrap.scm:188 #, scheme-format msgid "could not find bootstrap binary '~a' for system '~a'" msgstr "" -#: gnu/packages/bootstrap.scm:492 +#: gnu/packages/bootstrap.scm:578 msgid "Raw build system with direct store access" msgstr "" -#: gnu/packages/bootstrap.scm:500 +#: gnu/packages/bootstrap.scm:586 msgid "Pre-built Guile for bootstrapping purposes." msgstr "" -#: guix/build/utils.scm:822 +#: guix/build/utils.scm:823 #, scheme-format msgid "'~a~{ ~a~}' exited with status ~a; output follows:~%~%~{ ~a~%~}" msgstr "" @@ -1879,7 +1975,7 @@ msgid "~A: unrecognized option~%" msgstr "~A: அறியப்படாச் செயல்மாற்றி~%" #: guix/scripts.scm:169 guix/scripts/import.scm:140 -#: guix/scripts/system.scm:1370 +#: guix/scripts/system.scm:1379 #, fuzzy, scheme-format msgid "Did you mean @code{~a}?~%" msgstr "@code{(use-modules ~a)} யை மறந்தீரோ?" @@ -1932,7 +2028,7 @@ msgstr "`~a' குப்பைத்திரட்டி வேரை உர #: guix/scripts/build.scm:154 guix/scripts/search.scm:42 #: guix/scripts/show.scm:41 guix/scripts/lint.scm:112 guix/scripts/edit.scm:48 #: guix/scripts/size.scm:246 guix/scripts/graph.scm:553 -#: guix/scripts/repl.scm:80 guix/scripts/style.scm:500 +#: guix/scripts/repl.scm:80 guix/scripts/style.scm:795 msgid "" "\n" " -L, --load-path=DIR prepend DIR to the package module search path" @@ -2116,7 +2212,7 @@ msgstr "" "\n" " -s, --system=<கணியக்கட்டமைப்பு> <கணியக்கட்டமைப்புக்குப்> (\"i686-linux\" போன்று) பெயர்க்க முயல்" -#: guix/scripts/build.scm:357 guix/scripts/system.scm:1023 +#: guix/scripts/build.scm:357 guix/scripts/system.scm:1026 #: guix/scripts/pack.scm:1329 guix/scripts/archive.scm:97 msgid "" "\n" @@ -2154,13 +2250,13 @@ msgstr "" " -r, --root=<கோப்பு> <கோப்பை> விளைவுக்கு மென்னிணைப்பாக ஆக்கி அதைக்\n" " குப்பைக்கூட்டி வேராகப் பதி" -#: guix/scripts/build.scm:368 guix/scripts/package.scm:486 +#: guix/scripts/build.scm:368 guix/scripts/package.scm:488 #: guix/scripts/install.scm:37 guix/scripts/remove.scm:36 #: guix/scripts/upgrade.scm:39 guix/scripts/pull.scm:117 -#: guix/scripts/system.scm:1025 guix/scripts/copy.scm:122 -#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:60 +#: guix/scripts/system.scm:1028 guix/scripts/copy.scm:122 +#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:66 #: guix/scripts/archive.scm:99 guix/scripts/environment.scm:123 -#: guix/scripts/home.scm:94 +#: guix/scripts/home.scm:98 msgid "" "\n" " -v, --verbosity=LEVEL use the given verbosity LEVEL" @@ -2182,30 +2278,30 @@ msgid "" msgstr "" #: guix/scripts/build.scm:379 guix/scripts/download.scm:104 -#: guix/scripts/package.scm:504 guix/scripts/install.scm:44 +#: guix/scripts/package.scm:506 guix/scripts/install.scm:44 #: guix/scripts/remove.scm:41 guix/scripts/upgrade.scm:48 #: guix/scripts/search.scm:37 guix/scripts/show.scm:36 guix/scripts/gc.scm:88 #: guix/scripts/git.scm:34 guix/scripts/git/authenticate.scm:110 #: guix/scripts/hash.scm:98 guix/scripts/import.scm:98 #: guix/scripts/import/minetest.scm:46 guix/scripts/import/cran.scm:49 #: guix/scripts/pull.scm:125 guix/scripts/substitute.scm:250 -#: guix/scripts/system.scm:1032 guix/scripts/lint.scm:115 +#: guix/scripts/system.scm:1035 guix/scripts/lint.scm:115 #: guix/scripts/publish.scm:119 guix/scripts/edit.scm:51 #: guix/scripts/size.scm:249 guix/scripts/graph.scm:558 #: guix/scripts/challenge.scm:430 guix/scripts/copy.scm:127 #: guix/scripts/pack.scm:1357 guix/scripts/weather.scm:336 #: guix/scripts/describe.scm:96 guix/scripts/processes.scm:301 -#: guix/scripts/deploy.scm:55 guix/scripts/container.scm:35 +#: guix/scripts/deploy.scm:58 guix/scripts/container.scm:35 #: guix/scripts/container/exec.scm:43 guix/scripts/archive.scm:106 -#: guix/scripts/environment.scm:149 guix/scripts/home.scm:97 +#: guix/scripts/environment.scm:149 guix/scripts/home.scm:101 #: guix/scripts/time-machine.scm:67 guix/scripts/import/cpan.scm:44 #: guix/scripts/import/crate.scm:50 guix/scripts/import/egg.scm:45 #: guix/scripts/import/gem.scm:46 guix/scripts/import/gnu.scm:50 #: guix/scripts/import/go.scm:50 guix/scripts/import/json.scm:52 #: guix/scripts/import/opam.scm:45 guix/scripts/import/pypi.scm:46 #: guix/scripts/import/texlive.scm:45 guix/scripts/refresh.scm:187 -#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:67 -#: guix/scripts/style.scm:509 +#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:69 +#: guix/scripts/style.scm:804 msgid "" "\n" " -h, --help display this help and exit" @@ -2215,29 +2311,29 @@ msgstr "" " -h, --help இவ்வுதவிச் செய்தியைக் காட்டி வெளியேறு" #: guix/scripts/build.scm:381 guix/scripts/download.scm:106 -#: guix/scripts/package.scm:506 guix/scripts/install.scm:46 +#: guix/scripts/package.scm:508 guix/scripts/install.scm:46 #: guix/scripts/remove.scm:43 guix/scripts/upgrade.scm:50 #: guix/scripts/search.scm:39 guix/scripts/show.scm:38 guix/scripts/gc.scm:90 #: guix/scripts/git.scm:36 guix/scripts/git/authenticate.scm:112 #: guix/scripts/hash.scm:100 guix/scripts/import.scm:100 #: guix/scripts/import/minetest.scm:50 guix/scripts/import/cran.scm:55 #: guix/scripts/pull.scm:127 guix/scripts/substitute.scm:252 -#: guix/scripts/system.scm:1034 guix/scripts/lint.scm:119 +#: guix/scripts/system.scm:1037 guix/scripts/lint.scm:119 #: guix/scripts/publish.scm:121 guix/scripts/edit.scm:53 #: guix/scripts/size.scm:251 guix/scripts/graph.scm:560 #: guix/scripts/challenge.scm:432 guix/scripts/copy.scm:129 #: guix/scripts/pack.scm:1359 guix/scripts/weather.scm:338 #: guix/scripts/describe.scm:98 guix/scripts/processes.scm:303 -#: guix/scripts/deploy.scm:57 guix/scripts/container.scm:37 +#: guix/scripts/deploy.scm:60 guix/scripts/container.scm:37 #: guix/scripts/container/exec.scm:45 guix/scripts/archive.scm:108 -#: guix/scripts/environment.scm:151 guix/scripts/home.scm:99 +#: guix/scripts/environment.scm:151 guix/scripts/home.scm:103 #: guix/scripts/time-machine.scm:69 guix/scripts/import/cpan.scm:46 #: guix/scripts/import/crate.scm:52 guix/scripts/import/egg.scm:49 #: guix/scripts/import/gem.scm:48 guix/scripts/import/gnu.scm:52 #: guix/scripts/import/json.scm:54 guix/scripts/import/opam.scm:52 #: guix/scripts/import/pypi.scm:50 guix/scripts/import/texlive.scm:47 #: guix/scripts/refresh.scm:189 guix/scripts/repl.scm:85 -#: guix/scripts/shell.scm:69 guix/scripts/style.scm:511 +#: guix/scripts/shell.scm:71 guix/scripts/style.scm:806 msgid "" "\n" " -V, --version display version information and exit" @@ -2484,166 +2580,166 @@ msgstr "~a நிரல்கூறு பெயர் '~a' கோப்பு msgid "\"bash-minimal\" should be in 'inputs' when '~a' is used" msgstr "" -#: guix/lint.scm:616 +#: guix/lint.scm:614 msgid "no period allowed at the end of the synopsis" msgstr "பொழிப்புரையின் ஈற்றில் முற்றுப்புள்ளி இருக்கக் கூடாது" -#: guix/lint.scm:630 +#: guix/lint.scm:628 msgid "no article allowed at the beginning of the synopsis" msgstr "பொழிப்புரை நிச்சயமற்ற பெயர்ச்சொற்குறிகளைக் (A, An) கொண்டுத் தொடங்கக் கூடாது" -#: guix/lint.scm:639 +#: guix/lint.scm:637 msgid "synopsis should be less than 80 characters long" msgstr "பொழிப்புரை 80 வரியுருக்களுக்குக் குறைவாகயிருக்க வேண்டும்" -#: guix/lint.scm:648 +#: guix/lint.scm:646 msgid "synopsis should start with an upper-case letter or digit" msgstr "பொழிப்புரை முகப்பெழுத்துடனோ எண்ணுடனோ தொடங்க வேண்டும்" -#: guix/lint.scm:656 +#: guix/lint.scm:654 msgid "synopsis should not start with the package name" msgstr "பொழிப்புரை மென்பொருள் தொகுப்பின் பெயருடன் தொடங்கக்கூடாது" -#: guix/lint.scm:670 +#: guix/lint.scm:668 msgid "Texinfo markup in synopsis is invalid" msgstr "பொழிப்புரையிலுள்ள Texinfo குறிகள் ஏற்கத்தகாதவை" -#: guix/lint.scm:678 +#: guix/lint.scm:676 msgid "synopsis contains trailing whitespace" msgstr "" -#: guix/lint.scm:695 +#: guix/lint.scm:693 msgid "synopsis should not be empty" msgstr "பொழிப்புரை வெறுமையாகயிருக்கக் கூடாது" -#: guix/lint.scm:705 +#: guix/lint.scm:703 #, scheme-format msgid "invalid synopsis: ~s" msgstr "ஏற்கத்தகா பொழிப்புரை: ~s" -#: guix/lint.scm:805 +#: guix/lint.scm:803 #, scheme-format msgid "~a: HTTP GET error for ~a: ~a (~s)~%" msgstr "~a: ~a க்கு HTTP GET பிழை: ~a (~s)~%" -#: guix/lint.scm:815 +#: guix/lint.scm:813 #, scheme-format msgid "~a: host lookup failure: ~a~%" msgstr "~a: நிலைய நோக்கல் தோல்வி: ~a~%" -#: guix/lint.scm:820 +#: guix/lint.scm:818 #, scheme-format msgid "~a: TLS certificate error: ~a" msgstr "~a: TLS சான்றிதழ் பிழை: ~a" -#: guix/lint.scm:825 +#: guix/lint.scm:823 #, fuzzy, scheme-format #| msgid "~a: error: device '~a' not found: ~a~%" msgid "~a: TLS error in '~a': ~a~%" msgstr "~a: பிழை: '~a' கருவி கிடைக்கவில்லை: ~a~%" -#: guix/lint.scm:836 guix/ui.scm:820 guix/scripts/offload.scm:194 +#: guix/lint.scm:834 guix/ui.scm:820 guix/scripts/offload.scm:194 #, scheme-format msgid "~a: ~a~%" msgstr "~a: ~a~%" -#: guix/lint.scm:868 +#: guix/lint.scm:866 #, scheme-format msgid "URI ~a returned suspiciously small file (~a bytes)" msgstr "~a முகவரி மிகச் சிறிய (~a எண்ணுன்மிகள்) கோப்பைக் அளித்தது. இது சரி தானா?" -#: guix/lint.scm:877 +#: guix/lint.scm:875 #, scheme-format msgid "permanent redirect from ~a to ~a" msgstr "~a முகவரியிலிருந்து ~a முகவரிக்கு நிரந்தர மாற்றம்" -#: guix/lint.scm:883 +#: guix/lint.scm:881 #, scheme-format msgid "invalid permanent redirect from ~a" msgstr "~a முகவரியிலிருந்து ஏற்கத்தகா நிரந்தர முகவரி மாற்றம்" -#: guix/lint.scm:889 guix/lint.scm:899 +#: guix/lint.scm:887 guix/lint.scm:897 #, scheme-format msgid "URI ~a not reachable: ~a (~s)" msgstr "~a முகவரியை அணுக இயலவில்லை: ~a (~s)" -#: guix/lint.scm:905 +#: guix/lint.scm:903 #, scheme-format msgid "URI ~a domain not found: ~a" msgstr "~a முகவரியின் களம் இல்லை: ~a" -#: guix/lint.scm:911 +#: guix/lint.scm:909 #, scheme-format msgid "URI ~a unreachable: ~a" msgstr "~a முகவரியை அணுக இயலவில்லை: ~a" -#: guix/lint.scm:919 +#: guix/lint.scm:917 #, scheme-format msgid "TLS certificate error: ~a" msgstr "TLS சான்றிதழ் பிழை: ~a" -#: guix/lint.scm:946 +#: guix/lint.scm:944 msgid "invalid value for home page" msgstr "வலைத்தள முகவரிக்கு ஏற்கத்தகா மதிப்பு" -#: guix/lint.scm:951 +#: guix/lint.scm:949 #, scheme-format msgid "invalid home page URL: ~s" msgstr "ஏற்கத்தகா வலைத்தள முகவரி: ~s" -#: guix/lint.scm:988 +#: guix/lint.scm:986 msgid "file names of patches should start with the package name" msgstr "திருத்தக்கோப்புகளின் பெயர் அதன் மென்பொருள் தொகுப்புப் பெயருடன் தொடங்க வேண்டும்" -#: guix/lint.scm:1008 +#: guix/lint.scm:1006 #, fuzzy, scheme-format #| msgid "~a: file name is too long" msgid "~a: file name is too long, which may break 'make dist'" msgstr "~a: கோப்புப்பெயர் அளவிற்கு மிஞ்சி நீண்டது" -#: guix/lint.scm:1029 +#: guix/lint.scm:1027 #, scheme-format msgid "~a: empty patch" msgstr "" -#: guix/lint.scm:1038 +#: guix/lint.scm:1036 #, scheme-format msgid "~a: patch lacks comment and upstream status" msgstr "" -#: guix/lint.scm:1099 +#: guix/lint.scm:1097 #, scheme-format msgid "proposed synopsis: ~s~%" msgstr "முன்மொழியப்படும் பொழிப்புரை: ~s~%" -#: guix/lint.scm:1113 +#: guix/lint.scm:1111 #, scheme-format msgid "proposed description:~% \"~a\"~%" msgstr "முன்மொழியப்படும் விளக்கம்:~% \"~a\"~%" -#: guix/lint.scm:1164 +#: guix/lint.scm:1162 msgid "all the source URIs are unreachable:" msgstr "மூலமுகவரிகள் எவற்றையும் அணுக இயலவில்லை:" -#: guix/lint.scm:1193 +#: guix/lint.scm:1191 msgid "the source file name should contain the package name" msgstr "மூலத்தின் கோப்புப் பெயர் மென்பொருள் தொகுப்பு பெயரை உள்ளடக்க வேண்டும்" -#: guix/lint.scm:1205 +#: guix/lint.scm:1203 msgid "the source URI should not be an autogenerated tarball" msgstr "மூலமுகவரி கணினி தானே அமைத்ததாக இருத்தலாகாது" -#: guix/lint.scm:1229 +#: guix/lint.scm:1227 #, scheme-format msgid "URL should be 'mirror://~a/~a'" msgstr "முகவரி 'mirror://~a/~a' என இருக்க வேண்டும்" -#: guix/lint.scm:1269 +#: guix/lint.scm:1267 #, fuzzy, scheme-format msgid "while accessing '~a'" msgstr "~a துவக்க இயலவில்லை: ~a~%" -#: guix/lint.scm:1276 +#: guix/lint.scm:1274 #, scheme-format msgid "URL should be '~a'" msgstr "முகவரி '~a' என இருக்க வேண்டும்" @@ -2651,68 +2747,68 @@ msgstr "முகவரி '~a' என இருக்க வேண்டும #. TRANSLATORS: check and #:tests? are a #. Scheme symbol and keyword respectively #. and should not be translated. -#: guix/lint.scm:1304 +#: guix/lint.scm:1302 msgid "the 'check' phase should respect #:tests?" msgstr "" -#: guix/lint.scm:1322 guix/lint.scm:1333 guix/lint.scm:1341 +#: guix/lint.scm:1320 guix/lint.scm:1331 guix/lint.scm:1339 #, scheme-format msgid "failed to create ~a derivation: ~a" msgstr "~a வருவியை அமைக்க இயலவில்லை: ~a" -#: guix/lint.scm:1327 +#: guix/lint.scm:1325 #, scheme-format msgid "failed to create ~a derivation: ~s" msgstr "~a வருவியை அமைக்க இயலவில்லை: ~s" -#: guix/lint.scm:1379 +#: guix/lint.scm:1377 #, scheme-format msgid "propagated inputs ~a and ~a collide" msgstr "" -#: guix/lint.scm:1403 +#: guix/lint.scm:1401 msgid "invalid license field" msgstr "ஏற்கத்தகா உரிமப்புலம்" -#: guix/lint.scm:1410 +#: guix/lint.scm:1408 msgid "while retrieving CVE vulnerabilities" msgstr "CVE குறைகளை பெறும்பொழுது" -#: guix/lint.scm:1453 +#: guix/lint.scm:1451 #, scheme-format msgid "probably vulnerable to ~a" msgstr "ஒருவேளை ~a க்கு ஊறுபடத்தக்கது" -#: guix/lint.scm:1461 +#: guix/lint.scm:1459 #, fuzzy, scheme-format msgid "no updater for ~a" msgstr "'~a' க்குக் பெயர்குறிப்பில்லை~%" -#: guix/lint.scm:1466 guix/lint.scm:1641 +#: guix/lint.scm:1464 guix/lint.scm:1639 #, scheme-format msgid "while retrieving upstream info for '~a'" msgstr "" -#: guix/lint.scm:1475 +#: guix/lint.scm:1473 #, scheme-format msgid "can be upgraded to ~a" msgstr "~a பதிப்புக்கு திறமுயர்த்த இயலும்" -#: guix/lint.scm:1481 +#: guix/lint.scm:1479 #, fuzzy, scheme-format msgid "updater '~a' failed to find upstream releases" msgstr "இம்மென்பொருள் தொகுப்பிற்கு புதிய மேல்நோக்கு பதிப்புகள் இருக்கிறதாவென்று பார்" -#: guix/lint.scm:1508 +#: guix/lint.scm:1506 #, fuzzy, scheme-format msgid "failed to access Disarchive database at ~a" msgstr "~a துவக்க இயலவில்லை: ~a~%" -#: guix/lint.scm:1535 +#: guix/lint.scm:1533 msgid "Software Heritage rate limit reached; try again later" msgstr "" -#: guix/lint.scm:1539 +#: guix/lint.scm:1537 #, scheme-format msgid "'~a' returned ~a" msgstr "'~a' ~a மறுமொழிக் குறியை அளித்தது" @@ -2720,169 +2816,169 @@ msgstr "'~a' ~a மறுமொழிக் குறியை அளித் #. TRANSLATORS: "Software Heritage" is a proper noun #. that must remain untranslated. See #. . -#: guix/lint.scm:1578 +#: guix/lint.scm:1576 msgid "scheduled Software Heritage archival" msgstr "" -#: guix/lint.scm:1584 +#: guix/lint.scm:1582 msgid "archival rate limit exceeded; try again later" msgstr "" -#: guix/lint.scm:1605 +#: guix/lint.scm:1603 #, fuzzy #| msgid "source not archived on Software Heritage" msgid "source not archived on Software Heritage and missing from the Disarchive database" msgstr "மூலம் Software Heritage காப்பகத்தில் சேமிக்கப்படவில்லை" -#: guix/lint.scm:1615 +#: guix/lint.scm:1613 #, scheme-format msgid "Disarchive entry refers to non-existent SWH directory '~a'" msgstr "" -#: guix/lint.scm:1624 +#: guix/lint.scm:1622 #, fuzzy msgid "unsupported source type" msgstr "~a: ஏற்கத்தகா வெளியீட்டு வடிவம்~%" -#: guix/lint.scm:1633 +#: guix/lint.scm:1631 msgid "while connecting to Software Heritage" msgstr "Software Heritage காப்பகத்தை அணுகும்பொழுது" -#: guix/lint.scm:1650 +#: guix/lint.scm:1648 #, scheme-format msgid "ahead of Stackage LTS version ~a" msgstr "" -#: guix/lint.scm:1667 +#: guix/lint.scm:1665 #, scheme-format msgid "tabulation on line ~a, column ~a" msgstr "வரி ~a வரியுரு ~a யில் தத்தல்" -#: guix/lint.scm:1679 +#: guix/lint.scm:1677 #, scheme-format msgid "trailing white space on line ~a" msgstr "வரி ~a யில் தொங்கும் வெள்ளை இடைவெளி" -#: guix/lint.scm:1693 +#: guix/lint.scm:1691 #, scheme-format msgid "line ~a is way too long (~a characters)" msgstr "வரி ~a அளவிற்கு மிஞ்சி நீண்டது (~a வரியுருக்கள்)" -#: guix/lint.scm:1707 +#: guix/lint.scm:1705 msgid "parentheses feel lonely, move to the previous or next line" msgstr "அடைப்புக்குறிகள் தனிமையாக கிடக்கின்றன; முந்தைய வரிக்கோ அடுத்த வரிக்கோ அதை நகர்த்துக" -#: guix/lint.scm:1784 +#: guix/lint.scm:1782 msgid "source file not found" msgstr "~a மூலக்கோப்பு கிடைக்கவில்லை" -#: guix/lint.scm:1796 +#: guix/lint.scm:1794 #, fuzzy msgid "Validate package names" msgstr "மென்பொருள் தொகுப்பு பொழிப்புரைகளைச் சரி பார்" -#: guix/lint.scm:1800 +#: guix/lint.scm:1798 msgid "Check if tests are explicitly enabled" msgstr "" -#: guix/lint.scm:1804 +#: guix/lint.scm:1802 msgid "Validate package descriptions" msgstr "மென்பொருள் தொகுப்பு விளக்கங்களைச் சரி பார்" -#: guix/lint.scm:1808 +#: guix/lint.scm:1806 msgid "Identify inputs that should be native inputs" msgstr "" -#: guix/lint.scm:1812 +#: guix/lint.scm:1810 msgid "Identify inputs that shouldn't be inputs at all" msgstr "உள்ளீடுகளாக இருக்கக்கூடாதவற்றைக் கண்டறி" -#: guix/lint.scm:1816 +#: guix/lint.scm:1814 #, fuzzy #| msgid "Identify inputs that shouldn't be inputs at all" msgid "Identify input labels that do not match package names" msgstr "உள்ளீடுகளாக இருக்கக்கூடாதவற்றைக் கண்டறி" -#: guix/lint.scm:1820 +#: guix/lint.scm:1818 msgid "Make sure 'wrap-program' can finds its interpreter." msgstr "" #. TRANSLATORS: is the name of a data type and must not be #. translated. -#: guix/lint.scm:1826 +#: guix/lint.scm:1824 msgid "Make sure the 'license' field is a or a list thereof" msgstr "உரிமப்புலம் அல்லது அதன் பட்டியலென உறுதிசெய்" -#: guix/lint.scm:1831 +#: guix/lint.scm:1829 msgid "Make sure tests are only run when requested" msgstr "" -#: guix/lint.scm:1835 +#: guix/lint.scm:1833 msgid "Suggest 'mirror://' URLs" msgstr "'mirror://' முகவரிகளை அறிவுறுத்து" -#: guix/lint.scm:1839 +#: guix/lint.scm:1837 msgid "Validate file names of sources" msgstr "மூலங்களின் கோப்புப் பெயர்களைச் சரி பார்" -#: guix/lint.scm:1843 +#: guix/lint.scm:1841 msgid "Check for autogenerated tarballs" msgstr "கணினி தானே அமைத்த காப்பகக் கோப்பாவெனப் பார்" -#: guix/lint.scm:1847 +#: guix/lint.scm:1845 msgid "Report failure to compile a package to a derivation" msgstr "நிரல்தொகுப்பை வருவியாகச் தொகுத்தலில் தோல்வியைத் தெரிவி" -#: guix/lint.scm:1852 +#: guix/lint.scm:1850 msgid "Report collisions that would occur due to propagated inputs" msgstr "" -#: guix/lint.scm:1857 +#: guix/lint.scm:1855 msgid "Validate file names and availability of patches" msgstr "கோப்புப்பெயர்களையும் திருத்தங்கள் இருக்கின்றனவாவெனவும் சரி பார்" -#: guix/lint.scm:1861 +#: guix/lint.scm:1859 #, fuzzy msgid "Validate patch headers" msgstr "மென்பொருள் தொகுப்பு விளக்கங்களைச் சரி பார்" -#: guix/lint.scm:1865 +#: guix/lint.scm:1863 msgid "Look for formatting issues in the source" msgstr "மூலத்தில் வடிவூட்டுப் பிழைகளுக்குத் தேடு" -#: guix/lint.scm:1872 +#: guix/lint.scm:1870 msgid "Validate package synopses" msgstr "மென்பொருள் தொகுப்பு பொழிப்புரைகளைச் சரி பார்" -#: guix/lint.scm:1876 +#: guix/lint.scm:1874 msgid "Validate synopsis & description of GNU packages" msgstr "GNU மென்பொருள் தொகுப்புகளின் பொழிப்புரைகளையும் விளக்கங்களையும் சரி பார்" -#: guix/lint.scm:1880 +#: guix/lint.scm:1878 msgid "Validate home-page URLs" msgstr "வலைத்தள முகவரிகளைச் சரி பார்" -#: guix/lint.scm:1884 +#: guix/lint.scm:1882 msgid "Validate source URLs" msgstr "மூல முகவரிகளைச் சரி பார்" -#: guix/lint.scm:1888 +#: guix/lint.scm:1886 msgid "Suggest GitHub URLs" msgstr "GitHub முகவரிகளை அறிவுறுத்து" -#: guix/lint.scm:1892 +#: guix/lint.scm:1890 msgid "Check the Common Vulnerabilities and Exposures (CVE) database" msgstr "Common Vulnerabilities and Exposures (CVE) தரவுத்தளத்தைத் தேடு" -#: guix/lint.scm:1897 +#: guix/lint.scm:1895 msgid "Check the package for new upstream releases" msgstr "இம்மென்பொருள் தொகுப்பிற்கு புதிய மேல்நோக்கு பதிப்புகள் இருக்கிறதாவென்று பார்" -#: guix/lint.scm:1901 +#: guix/lint.scm:1899 msgid "Ensure source code archival on Software Heritage" msgstr "Software Heritage காப்பகத்தில் மூலநிரல் சேமிப்பை உறுதிசெய்" -#: guix/lint.scm:1905 +#: guix/lint.scm:1903 msgid "Ensure Haskell packages use Stackage LTS versions" msgstr "" @@ -2941,7 +3037,7 @@ msgstr "" msgid "~a: unknown hash algorithm~%" msgstr "" -#: guix/scripts/download.scm:171 guix/scripts/package.scm:1087 +#: guix/scripts/download.scm:171 guix/scripts/package.scm:1090 #: guix/scripts/pull.scm:758 guix/scripts/publish.scm:1260 #: guix/scripts/discover.scm:136 guix/scripts/time-machine.scm:123 #, scheme-format @@ -2973,17 +3069,17 @@ msgstr "தற்போதைய வரிசையாதலால் வரி msgid "no matching generation~%" msgstr "பொருத்தமான வரிசை இல்லை~%" -#: guix/scripts/package.scm:159 +#: guix/scripts/package.scm:161 #, scheme-format msgid "nothing to be done~%" msgstr "செய்வதற்கொன்றுமில்லை~%" -#: guix/scripts/package.scm:260 +#: guix/scripts/package.scm:262 #, scheme-format msgid "package '~a' no longer exists~%" msgstr "'~a' நிரல்தொகுப்பு தற்போது இல்லை~%" -#: guix/scripts/package.scm:315 +#: guix/scripts/package.scm:317 #, scheme-format msgid "" "Consider setting the necessary environment\n" @@ -3005,7 +3101,7 @@ msgstr "" "\n" "இல்லையெனின், @command{guix package --search-paths -p ~s} கட்டளையைப் பார்க்க." -#: guix/scripts/package.scm:361 +#: guix/scripts/package.scm:363 msgid "" ";; This \"manifest\" file can be passed to 'guix package -m' to reproduce\n" ";; the content of your profile. This is \"symbolic\": it only specifies\n" @@ -3014,24 +3110,24 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/package.scm:393 +#: guix/scripts/package.scm:395 #, scheme-format msgid "no provenance information for this profile~%" msgstr "" -#: guix/scripts/package.scm:395 +#: guix/scripts/package.scm:397 msgid "" ";; This channel file can be passed to 'guix pull -C' or to\n" ";; 'guix time-machine -C' to obtain the Guix revision that was\n" ";; used to populate this profile.\n" msgstr "" -#: guix/scripts/package.scm:407 +#: guix/scripts/package.scm:409 #, scheme-format msgid ";; Note: these other commits were also used to install some of the packages in this profile:~%" msgstr "" -#: guix/scripts/package.scm:437 +#: guix/scripts/package.scm:439 msgid "" "Usage: guix package [OPTION]...\n" "Install, remove, or upgrade packages in a single transaction.\n" @@ -3039,7 +3135,7 @@ msgstr "" "பயன்பாடு: guix package [<செயல்மாற்றி>]...\n" "மென்பொருள் தொகுப்புகளை ஒரே மாற்றமாக நிறுவு, நீக்கு அல்லது திறமுயர்த்து.\n" -#: guix/scripts/package.scm:439 +#: guix/scripts/package.scm:441 msgid "" "\n" " -i, --install PACKAGE ...\n" @@ -3049,14 +3145,14 @@ msgstr "" " -i, --install <நிரல்தொகுப்பு> ...\n" " <நிரல்தொகுப்புகளை> நிறுவு" -#: guix/scripts/package.scm:442 +#: guix/scripts/package.scm:444 msgid "" "\n" " -e, --install-from-expression=EXP\n" " install the package EXP evaluates to" msgstr "" -#: guix/scripts/package.scm:445 +#: guix/scripts/package.scm:447 msgid "" "\n" " -f, --install-from-file=FILE\n" @@ -3064,7 +3160,7 @@ msgid "" " evaluates to" msgstr "" -#: guix/scripts/package.scm:449 +#: guix/scripts/package.scm:451 msgid "" "\n" " -r, --remove PACKAGE ...\n" @@ -3074,7 +3170,7 @@ msgstr "" " -r, --remove <நிரல்தொகுப்பு> ...\n" " <நிரல்தொகுப்புகளை> நீக்கு" -#: guix/scripts/package.scm:452 +#: guix/scripts/package.scm:454 msgid "" "\n" " -u, --upgrade[=REGEXP] upgrade all the installed packages matching REGEXP" @@ -3082,14 +3178,14 @@ msgstr "" "\n" " -u, --upgrade[=<சுருங்குறித்தொடர்>] <சுருங்குறித்தொடருக்குப்> பொருந்தும் நிரல்தொகுப்புகளைத் திறமுயர்த்து" -#: guix/scripts/package.scm:454 +#: guix/scripts/package.scm:456 msgid "" "\n" " -m, --manifest=FILE create a new profile generation with the manifest\n" " from FILE" msgstr "" -#: guix/scripts/package.scm:457 guix/scripts/upgrade.scm:41 +#: guix/scripts/package.scm:459 guix/scripts/upgrade.scm:41 msgid "" "\n" " --do-not-upgrade[=REGEXP] do not upgrade any packages matching REGEXP" @@ -3097,7 +3193,7 @@ msgstr "" "\n" " --do-not-upgrade[=<சுருங்குறித்தொடர்>] <சுருங்குறித்தொடருக்குப்> பொருந்தும் நிரல்தொகுப்புகளைத் திறமுயர்த்தாதே" -#: guix/scripts/package.scm:459 guix/scripts/pull.scm:107 +#: guix/scripts/package.scm:461 guix/scripts/pull.scm:107 msgid "" "\n" " --roll-back roll back to the previous generation" @@ -3105,7 +3201,7 @@ msgstr "" "\n" " --roll-back முந்தைய வரிசைக்குச் செல்" -#: guix/scripts/package.scm:461 +#: guix/scripts/package.scm:463 msgid "" "\n" " --search-paths[=KIND]\n" @@ -3115,7 +3211,7 @@ msgstr "" " --search-paths[=<வகை>]\n" " தேவையான சூழல் மாறிகளைக் காட்டு" -#: guix/scripts/package.scm:464 guix/scripts/pull.scm:104 +#: guix/scripts/package.scm:466 guix/scripts/pull.scm:104 msgid "" "\n" " -l, --list-generations[=PATTERN]\n" @@ -3125,7 +3221,7 @@ msgstr "" " -l, --list-generations[=<குறிப்பீடு>]\n" " <குறிப்பீட்டுக்குப்> பொருந்தும் வரிசைகளைப் பட்டியலிடு" -#: guix/scripts/package.scm:467 guix/scripts/pull.scm:109 +#: guix/scripts/package.scm:469 guix/scripts/pull.scm:109 msgid "" "\n" " -d, --delete-generations[=PATTERN]\n" @@ -3135,7 +3231,7 @@ msgstr "" " -d, --delete-generations[=<குறிப்பீடு>]\n" " <குறிப்பீட்டுக்குப்> பொருந்தும் வரிசைகளை நீக்கு" -#: guix/scripts/package.scm:470 guix/scripts/pull.scm:112 +#: guix/scripts/package.scm:472 guix/scripts/pull.scm:112 msgid "" "\n" " -S, --switch-generation=PATTERN\n" @@ -3145,7 +3241,7 @@ msgstr "" " -S, --switch-generation=<குறிப்பீடு>\n" " <குறிப்பீட்டுக்குப்> பொருந்தும் வரிசைக்கு மாறு" -#: guix/scripts/package.scm:473 +#: guix/scripts/package.scm:475 #, fuzzy msgid "" "\n" @@ -3154,13 +3250,13 @@ msgstr "" "\n" " --list-profiles பயனரின் தனியமைப்புகளைப் பட்டியலிடு" -#: guix/scripts/package.scm:475 +#: guix/scripts/package.scm:477 msgid "" "\n" " --export-channels print channels for the chosen profile" msgstr "" -#: guix/scripts/package.scm:477 guix/scripts/install.scm:34 +#: guix/scripts/package.scm:479 guix/scripts/install.scm:34 #: guix/scripts/remove.scm:33 guix/scripts/upgrade.scm:37 msgid "" "\n" @@ -3169,7 +3265,7 @@ msgstr "" "\n" " -p, --profile=<தனியமைப்பு> பயனரின் இயல்பிருப்பு தனியமைப்புக்கு மாற்றாக <தனியமைப்பைப்> பயன்படுத்து" -#: guix/scripts/package.scm:479 +#: guix/scripts/package.scm:481 msgid "" "\n" " --list-profiles list the user's profiles" @@ -3177,19 +3273,19 @@ msgstr "" "\n" " --list-profiles பயனரின் தனியமைப்புகளைப் பட்டியலிடு" -#: guix/scripts/package.scm:482 +#: guix/scripts/package.scm:484 msgid "" "\n" " --allow-collisions do not treat collisions in the profile as an error" msgstr "" -#: guix/scripts/package.scm:484 +#: guix/scripts/package.scm:486 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" msgstr "" -#: guix/scripts/package.scm:489 +#: guix/scripts/package.scm:491 msgid "" "\n" " -s, --search=REGEXP search in synopsis and description using REGEXP" @@ -3197,7 +3293,7 @@ msgstr "" "\n" " -s, --search=<சுருங்குறித்தொடர்> பொழிப்புரையையும் விளக்கவுரையையும் <சுருங்குறித்தொடர்> கொண்டுத் தேடு" -#: guix/scripts/package.scm:491 +#: guix/scripts/package.scm:493 msgid "" "\n" " -I, --list-installed[=REGEXP]\n" @@ -3207,7 +3303,7 @@ msgstr "" " -I, --list-installed[=<சுருங்குறித்தொடர்>]\n" " நிறுவியிருக்கும் நிரல்தொகுப்புகளுள் <சுருங்குறித்தொடருக்குப்> பொருந்துபவற்றைப் பட்டியலிடு" -#: guix/scripts/package.scm:494 +#: guix/scripts/package.scm:496 msgid "" "\n" " -A, --list-available[=REGEXP]\n" @@ -3217,7 +3313,7 @@ msgstr "" " -A, --list-available[=<சுருங்குறித்தொடர்>]\n" " எல்லாத் நிரல்தொகுப்புகளுள் <சுருங்குறித்தொடருக்குப்> பொருந்துபவற்றைப் பட்டியலிடு" -#: guix/scripts/package.scm:497 +#: guix/scripts/package.scm:499 msgid "" "\n" " --show=PACKAGE show details about PACKAGE" @@ -3226,37 +3322,37 @@ msgstr "" "\n" " --show=<நிரல்தொகுப்பு> <நிரல்தொகுப்பு> பற்றின விவரங்களைக் காட்டு" -#: guix/scripts/package.scm:552 +#: guix/scripts/package.scm:554 #, scheme-format msgid "upgrade regexp '~a' looks like a command-line option~%" msgstr "திறமுயர்த்த சுருங்குறித்தொடர் '~a' கட்டளை செயல்மாற்றி போலுள்ளது~%" -#: guix/scripts/package.scm:555 +#: guix/scripts/package.scm:557 #, scheme-format msgid "is this intended?~%" msgstr "இதைத் தான் கருதினீரா?" -#: guix/scripts/package.scm:605 +#: guix/scripts/package.scm:607 #, scheme-format msgid "~a: unsupported kind of search path~%" msgstr "" -#: guix/scripts/package.scm:739 +#: guix/scripts/package.scm:741 #, scheme-format msgid "cannot install non-package object: ~s~%" msgstr "நிரல்தொகுப்பு அல்லாததை நிறுவ இயலாது: ~s~%" -#: guix/scripts/package.scm:918 +#: guix/scripts/package.scm:920 #, scheme-format msgid "~a~@[@~a~]: package not found~%" msgstr "~a~@[@~a~]: நிரல்தொகுப்பு கிடைக்கவில்லை~%" -#: guix/scripts/package.scm:965 guix/scripts/pull.scm:687 +#: guix/scripts/package.scm:967 guix/scripts/pull.scm:687 #, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "வரிசை '~a' க்கு மாற இயலவில்லை~%" -#: guix/scripts/package.scm:1060 +#: guix/scripts/package.scm:1062 #, fuzzy, scheme-format #| msgid "nothing to be done~%" msgid "nothing to do~%" @@ -3506,8 +3602,8 @@ msgstr "" "பயன்பாடு: guix git <கட்டளை> <செயலுருபுகள்>...\n" "Git களஞ்சியங்கள் மீது கட்டளைகளை இயக்கு.\n" -#: guix/scripts/git.scm:29 guix/scripts/system.scm:945 -#: guix/scripts/container.scm:30 guix/scripts/home.scm:69 +#: guix/scripts/git.scm:29 guix/scripts/system.scm:946 +#: guix/scripts/container.scm:30 guix/scripts/home.scm:70 msgid "The valid values for ACTION are:\n" msgstr "ஏற்கத்தகுச் <செயல்கள்>:\n" @@ -3601,23 +3697,23 @@ msgid "" " -S, --serializer=TYPE compute the hash on FILE according to TYPE serialization" msgstr "" -#: guix/scripts/hash.scm:137 +#: guix/scripts/hash.scm:138 #, fuzzy, scheme-format -msgid "'--recursive' is deprecated, use '--serializer' instead~%" +msgid "'--recursive' is deprecated, use '--serializer=nar' instead~%" msgstr "~a வழக்கொழிந்தது, அதற்குப் பதிலாக ~a யைப் பயன்படுத்துக~%" -#: guix/scripts/hash.scm:152 +#: guix/scripts/hash.scm:153 #, fuzzy, scheme-format msgid "unsupported serializer type: ~a~%" msgstr "~a: ஏற்கத்தகா வெளியீட்டு வடிவம்~%" -#: guix/scripts/hash.scm:201 +#: guix/scripts/hash.scm:202 #, fuzzy, scheme-format #| msgid "~a: ~a~%" msgid "~a ~a~%" msgstr "~a: ~a~%" -#: guix/scripts/hash.scm:210 +#: guix/scripts/hash.scm:211 #, fuzzy, scheme-format #| msgid "no packages specified; building an empty pack~%" msgid "no arguments specified~%" @@ -3686,9 +3782,9 @@ msgstr "~a: ஏற்கத்தகா TCP வாயில்~%" #: guix/scripts/import/minetest.scm:115 guix/scripts/import/cran.scm:120 #: guix/scripts/import/elpa.scm:110 guix/scripts/import/cpan.scm:87 #: guix/scripts/import/crate.scm:103 guix/scripts/import/egg.scm:106 -#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:121 +#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:122 #: guix/scripts/import/hackage.scm:158 guix/scripts/import/json.scm:97 -#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:104 +#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:105 #: guix/scripts/import/stackage.scm:130 guix/scripts/import/texlive.scm:88 #, scheme-format msgid "too few arguments~%" @@ -3697,10 +3793,10 @@ msgstr "குறைவான செயலுருபுகள்~%" #: guix/scripts/import/minetest.scm:117 guix/scripts/import/cran.scm:122 #: guix/scripts/import/elpa.scm:112 guix/scripts/import/cpan.scm:89 #: guix/scripts/import/crate.scm:105 guix/scripts/import/egg.scm:108 -#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:123 +#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:124 #: guix/scripts/import/hackage.scm:149 guix/scripts/import/hackage.scm:160 #: guix/scripts/import/json.scm:99 guix/scripts/import/opam.scm:113 -#: guix/scripts/import/pypi.scm:106 guix/scripts/import/stackage.scm:132 +#: guix/scripts/import/pypi.scm:107 guix/scripts/import/stackage.scm:132 #: guix/scripts/import/texlive.scm:90 #, scheme-format msgid "too many arguments~%" @@ -3728,7 +3824,7 @@ msgid "" " -s, --style=STYLE choose output style, either specification or variable" msgstr "" -#: guix/scripts/import/cran.scm:116 guix/scripts/import/texlive.scm:84 +#: guix/scripts/import/cran.scm:116 #, scheme-format msgid "failed to download description for package '~a'~%" msgstr "'~a' நிரல்தொகுப்புப் பற்றிய விள்க்கவுரையைப் பதிவிறக்க இயலவில்லை~%" @@ -4153,27 +4249,27 @@ msgstr "" msgid "the dependency graph of shepherd services" msgstr "" -#: guix/scripts/system.scm:482 guix/scripts/home.scm:453 +#: guix/scripts/system.scm:482 guix/scripts/home.scm:466 #, scheme-format msgid " repository URL: ~a~%" msgstr "" -#: guix/scripts/system.scm:484 guix/scripts/home.scm:455 +#: guix/scripts/system.scm:484 guix/scripts/home.scm:468 #, scheme-format msgid " branch: ~a~%" msgstr "" -#: guix/scripts/system.scm:485 guix/scripts/home.scm:456 +#: guix/scripts/system.scm:485 guix/scripts/home.scm:469 #, scheme-format msgid " commit: ~a~%" msgstr "" -#: guix/scripts/system.scm:505 guix/scripts/home.scm:469 +#: guix/scripts/system.scm:505 guix/scripts/home.scm:482 #, scheme-format msgid " file name: ~a~%" msgstr " கோப்புப் பெயர்: ~a~%" -#: guix/scripts/system.scm:506 guix/scripts/home.scm:470 +#: guix/scripts/system.scm:506 guix/scripts/home.scm:483 #, scheme-format msgid " canonical file name: ~a~%" msgstr " ஒழுங்குமுறைப்பட்ட கோப்புப் பெயர்: ~a~%" @@ -4214,12 +4310,12 @@ msgstr "" #. TRANSLATORS: Here "channel" is the same terminology as used in #. "guix describe" and "guix pull --channels". -#: guix/scripts/system.scm:536 guix/scripts/home.scm:476 +#: guix/scripts/system.scm:536 guix/scripts/home.scm:489 #, scheme-format msgid " channels:~%" msgstr " அலைத்தடங்கள்:~%" -#: guix/scripts/system.scm:539 guix/scripts/home.scm:479 +#: guix/scripts/system.scm:539 guix/scripts/home.scm:492 #, scheme-format msgid " configuration file: ~a~%" msgstr " அமைவடிவக்கோப்பு: ~a~%" @@ -4273,41 +4369,41 @@ msgstr "'reconfigure' செய்யும் முன் 'guix pull' கட msgid "Failing to do that may downgrade your system!~%" msgstr "அதைச் செய்யாவிடின் நிலையம் திறங்குறைக்கப்படலாம்!~%" -#: guix/scripts/system.scm:754 guix/scripts/system.scm:863 +#: guix/scripts/system.scm:754 guix/scripts/system.scm:864 #, scheme-format msgid "bootloader successfully installed on '~a'~%" msgstr "" -#: guix/scripts/system.scm:856 +#: guix/scripts/system.scm:857 #, scheme-format msgid "activating system...~%" msgstr "" -#: guix/scripts/system.scm:867 +#: guix/scripts/system.scm:868 msgid "" "To complete the upgrade, run 'herd restart SERVICE' to stop,\n" "upgrade, and restart each service that was not automatically restarted.\n" msgstr "" -#: guix/scripts/system.scm:870 +#: guix/scripts/system.scm:871 msgid "Run 'herd status' to view the list of services on your system.\n" msgstr "" -#: guix/scripts/system.scm:874 +#: guix/scripts/system.scm:875 #, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "" -#: guix/scripts/system.scm:894 guix/scripts/graph.scm:437 +#: guix/scripts/system.scm:895 guix/scripts/graph.scm:437 #, scheme-format msgid "~a: unknown backend~%" msgstr "~a: இல்லாப் பின்னிலை~%" -#: guix/scripts/system.scm:931 +#: guix/scripts/system.scm:932 msgid "The available image types are:\n" msgstr "" -#: guix/scripts/system.scm:941 +#: guix/scripts/system.scm:942 msgid "" "Usage: guix system [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the operating system declared in FILE according to ACTION.\n" @@ -4317,87 +4413,87 @@ msgstr "" "<கோப்பில்> குறிப்பிட்ட இயங்குதளத்தைச் <செயலின்படி> அமை.\n" "சிலச் <செயல்கள்> கூடுதல் செயலுருபுகளை ஏற்கும்.\n" -#: guix/scripts/system.scm:947 +#: guix/scripts/system.scm:948 msgid " search search for existing service types\n" msgstr "" -#: guix/scripts/system.scm:949 +#: guix/scripts/system.scm:950 msgid " reconfigure switch to a new operating system configuration\n" msgstr " reconfigure இன்னொரு இயங்குதள அமைப்புக்கு மாறு\n" -#: guix/scripts/system.scm:951 +#: guix/scripts/system.scm:952 msgid " roll-back switch to the previous operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:953 +#: guix/scripts/system.scm:954 msgid " describe describe the current system\n" msgstr "" -#: guix/scripts/system.scm:955 +#: guix/scripts/system.scm:956 msgid " list-generations list the system generations\n" msgstr "" -#: guix/scripts/system.scm:957 +#: guix/scripts/system.scm:958 msgid " switch-generation switch to an existing operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:959 +#: guix/scripts/system.scm:960 msgid " delete-generations delete old system generations\n" msgstr "" -#: guix/scripts/system.scm:961 +#: guix/scripts/system.scm:962 msgid " build build the operating system without installing anything\n" msgstr "" -#: guix/scripts/system.scm:963 +#: guix/scripts/system.scm:964 msgid " container build a container that shares the host's store\n" msgstr "" -#: guix/scripts/system.scm:965 +#: guix/scripts/system.scm:966 msgid " vm build a virtual machine image that shares the host's store\n" msgstr "" -#: guix/scripts/system.scm:967 +#: guix/scripts/system.scm:968 msgid " image build a Guix System image\n" msgstr "" -#: guix/scripts/system.scm:969 +#: guix/scripts/system.scm:970 msgid " docker-image build a Docker image\n" msgstr "" -#: guix/scripts/system.scm:971 +#: guix/scripts/system.scm:972 msgid " init initialize a root file system to run GNU\n" msgstr "" -#: guix/scripts/system.scm:973 +#: guix/scripts/system.scm:974 msgid " extension-graph emit the service extension graph in Dot format\n" msgstr "" -#: guix/scripts/system.scm:975 +#: guix/scripts/system.scm:976 msgid " shepherd-graph emit the graph of shepherd services in Dot format\n" msgstr "" -#: guix/scripts/system.scm:979 +#: guix/scripts/system.scm:980 msgid "" "\n" " -d, --derivation return the derivation of the given system" msgstr "" -#: guix/scripts/system.scm:981 +#: guix/scripts/system.scm:982 msgid "" "\n" " -e, --expression=EXPR consider the operating-system EXPR evaluates to\n" " instead of reading FILE, when applicable" msgstr "" -#: guix/scripts/system.scm:984 +#: guix/scripts/system.scm:985 guix/scripts/home.scm:95 msgid "" "\n" " --allow-downgrades for 'reconfigure', allow downgrades to earlier\n" " channel revisions" msgstr "" -#: guix/scripts/system.scm:987 +#: guix/scripts/system.scm:988 msgid "" "\n" " --on-error=STRATEGY\n" @@ -4405,69 +4501,75 @@ msgid "" " or debug) when an error occurs while reading FILE" msgstr "" -#: guix/scripts/system.scm:991 +#: guix/scripts/system.scm:992 msgid "" "\n" " --list-image-types list available image types" msgstr "" -#: guix/scripts/system.scm:993 +#: guix/scripts/system.scm:994 msgid "" "\n" " -t, --image-type=TYPE for 'image', produce an image of TYPE" msgstr "" -#: guix/scripts/system.scm:995 +#: guix/scripts/system.scm:996 msgid "" "\n" " --image-size=SIZE for 'image', produce an image of SIZE" msgstr "" -#: guix/scripts/system.scm:997 +#: guix/scripts/system.scm:998 msgid "" "\n" " --no-bootloader for 'init', do not install a bootloader" msgstr "" -#: guix/scripts/system.scm:999 +#: guix/scripts/system.scm:1000 msgid "" "\n" " --volatile for 'image', make the root file system volatile" msgstr "" -#: guix/scripts/system.scm:1001 +#: guix/scripts/system.scm:1002 +msgid "" +"\n" +" --persistent for 'vm', make the root file system persistent" +msgstr "" + +#: guix/scripts/system.scm:1004 msgid "" "\n" " --label=LABEL for 'image', label disk image with LABEL" msgstr "" -#: guix/scripts/system.scm:1003 guix/scripts/pack.scm:1340 +#: guix/scripts/system.scm:1006 guix/scripts/pack.scm:1340 msgid "" "\n" " --save-provenance save provenance information" msgstr "" -#: guix/scripts/system.scm:1005 +#: guix/scripts/system.scm:1008 msgid "" "\n" " --share=SPEC for 'vm' and 'container', share host file system with\n" " read/write access according to SPEC" msgstr "" -#: guix/scripts/system.scm:1008 +#: guix/scripts/system.scm:1011 msgid "" "\n" " --expose=SPEC for 'vm' and 'container', expose host file system\n" " directory as read-only according to SPEC" msgstr "" -#: guix/scripts/system.scm:1011 +#: guix/scripts/system.scm:1014 msgid "" "\n" " -N, --network for 'container', allow containers to access the network" msgstr "" -#: guix/scripts/system.scm:1013 +#: guix/scripts/system.scm:1016 #, fuzzy msgid "" "\n" @@ -4479,82 +4581,82 @@ msgstr "" " -r, --root=<கோப்பு> <கோப்பை> விளைவுக்கு மென்னிணைப்பாக ஆக்கி அதைக்\n" " குப்பைக்கூட்டி வேராகப் பதி" -#: guix/scripts/system.scm:1017 +#: guix/scripts/system.scm:1020 msgid "" "\n" " --full-boot for 'vm', make a full boot sequence" msgstr "" -#: guix/scripts/system.scm:1019 +#: guix/scripts/system.scm:1022 msgid "" "\n" " --no-graphic for 'vm', use the tty that we are started in for IO" msgstr "" -#: guix/scripts/system.scm:1021 +#: guix/scripts/system.scm:1024 msgid "" "\n" " --skip-checks skip file system and initrd module safety checks" msgstr "" -#: guix/scripts/system.scm:1028 +#: guix/scripts/system.scm:1031 msgid "" "\n" " --graph-backend=BACKEND\n" " use BACKEND for 'extension-graphs' and 'shepherd-graph'" msgstr "" -#: guix/scripts/system.scm:1180 +#: guix/scripts/system.scm:1187 #, fuzzy, scheme-format msgid "'~a' does not return an operating system or an image~%" msgstr "'~a' அலைத்தடங்களின் பட்டியலைக் கொடுக்கவில்லை~%" -#: guix/scripts/system.scm:1204 guix/scripts/home.scm:216 +#: guix/scripts/system.scm:1211 guix/scripts/home.scm:230 #, scheme-format msgid "both file and expression cannot be specified~%" msgstr "" -#: guix/scripts/system.scm:1211 guix/scripts/home.scm:223 +#: guix/scripts/system.scm:1218 guix/scripts/home.scm:237 #, scheme-format msgid "no configuration specified~%" msgstr "அமைவடிவம் குறிப்பிடப்படவில்லை~%" -#: guix/scripts/system.scm:1319 guix/scripts/system.scm:1335 -#: guix/scripts/system.scm:1342 guix/scripts/system.scm:1348 -#: guix/scripts/home.scm:274 guix/scripts/home.scm:296 -#: guix/scripts/home.scm:301 guix/scripts/home.scm:307 -#: guix/scripts/home.scm:314 guix/scripts/import/gnu.scm:100 +#: guix/scripts/system.scm:1328 guix/scripts/system.scm:1344 +#: guix/scripts/system.scm:1351 guix/scripts/system.scm:1357 +#: guix/scripts/home.scm:287 guix/scripts/home.scm:309 +#: guix/scripts/home.scm:314 guix/scripts/home.scm:320 +#: guix/scripts/home.scm:327 guix/scripts/import/gnu.scm:100 #: guix/scripts/offload.scm:836 guix/scripts/offload.scm:848 #, scheme-format msgid "wrong number of arguments~%" msgstr "" -#: guix/scripts/system.scm:1324 +#: guix/scripts/system.scm:1333 #, scheme-format msgid "no system generation, nothing to describe~%" msgstr "" -#: guix/scripts/system.scm:1367 guix/scripts/home.scm:337 +#: guix/scripts/system.scm:1376 guix/scripts/home.scm:350 #, scheme-format msgid "~a: unknown action~%" msgstr "~a: ஏற்கத்தகாச் செயல்~%" -#: guix/scripts/system.scm:1387 guix/scripts/home.scm:353 +#: guix/scripts/system.scm:1396 guix/scripts/home.scm:366 #, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "" -#: guix/scripts/system.scm:1392 +#: guix/scripts/system.scm:1401 #, scheme-format msgid "guix system: missing command name~%" msgstr "" -#: guix/scripts/system.scm:1394 +#: guix/scripts/system.scm:1403 #, scheme-format msgid "Try 'guix system --help' for more information.~%" msgstr "மேலும் விவரங்களுக்கு 'guix system --help' கட்டளையை இயக்குக.~%" -#: guix/scripts/system/search.scm:93 guix/ui.scm:1541 guix/ui.scm:1559 +#: guix/scripts/system/search.scm:93 guix/ui.scm:1544 guix/ui.scm:1562 msgid "unknown" msgstr "தெரியவில்லை" @@ -4963,7 +5065,7 @@ msgstr "" " --path குறிப்பிட்டுள்ள கணுக்களிடையே மீச்சிறு பாதையைக் காட்டு" #: guix/scripts/graph.scm:548 guix/scripts/pack.scm:1325 -#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:502 +#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:797 msgid "" "\n" " -e, --expression=EXPR consider the package EXPR evaluates to" @@ -5632,45 +5734,90 @@ msgstr "" "\n" " -f, --format=<வடிவம்> <வடிவத்தில்> விவரத்தைக் காட்டு" -#: guix/scripts/deploy.scm:51 +#: guix/scripts/deploy.scm:54 msgid "" "Usage: guix deploy [OPTION] FILE...\n" "Perform the deployment specified by FILE.\n" msgstr "" -#: guix/scripts/deploy.scm:108 +#: guix/scripts/deploy.scm:63 +msgid "" +"\n" +" -x, --execute execute the following command on all the machines" +msgstr "" + +#: guix/scripts/deploy.scm:117 #, scheme-format msgid "The following ~d machine will be deployed:~%" msgid_plural "The following ~d machines will be deployed:~%" msgstr[0] "" msgstr[1] "" -#: guix/scripts/deploy.scm:122 +#: guix/scripts/deploy.scm:131 #, scheme-format msgid "deploying to ~a...~%" msgstr "" -#: guix/scripts/deploy.scm:134 guix/scripts/deploy.scm:138 +#: guix/scripts/deploy.scm:143 guix/scripts/deploy.scm:147 #, scheme-format msgid "failed to deploy ~a: ~a~%" msgstr "" -#: guix/scripts/deploy.scm:146 +#: guix/scripts/deploy.scm:155 #, scheme-format msgid "rolling back ~a...~%" msgstr "~a பின் செலுத்தப்படுகிறது...~%" -#: guix/scripts/deploy.scm:152 +#: guix/scripts/deploy.scm:161 #, scheme-format msgid "successfully deployed ~a~%" msgstr "" -#: guix/scripts/deploy.scm:167 +#: guix/scripts/deploy.scm:212 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command succeeded~%" +msgstr "guix: ~a: கட்டளை இல்லை ~%" + +#: guix/scripts/deploy.scm:215 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command exited with code ~a~%" +msgstr "guix: ~a: கட்டளை இல்லை ~%" + +#: guix/scripts/deploy.scm:218 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command stopped with signal ~a~%" +msgstr "guix: ~a: கட்டளை இல்லை ~%" + +#: guix/scripts/deploy.scm:221 +#, scheme-format +msgid "~a: command terminated with signal ~a~%" +msgstr "" + +#: guix/scripts/deploy.scm:225 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "command output on ~a:~%" +msgstr "guix: ~a: கட்டளை இல்லை ~%" + +#: guix/scripts/deploy.scm:246 #, fuzzy, scheme-format #| msgid "missing store item argument\n" msgid "missing deployment file argument~%" msgstr "கிடங்குருப்படி குறிப்பிடப்படவில்லை\n" +#: guix/scripts/deploy.scm:249 +#, scheme-format +msgid "'--' was used by '-x' was not specified~%" +msgstr "" + +#: guix/scripts/deploy.scm:271 +#, scheme-format +msgid "'-x' specified but no command given~%" +msgstr "" + #: guix/gexp.scm:465 #, scheme-format msgid "resolving '~a' relative to current directory~%" @@ -5764,81 +5911,81 @@ msgstr "~d செயலாக்கயெண்ணுடைய செயலா msgid "exec failed with status ~d~%" msgstr "" -#: guix/transformations.scm:185 guix/transformations.scm:253 +#: guix/transformations.scm:186 guix/transformations.scm:254 #, scheme-format msgid "invalid replacement specification: ~s" msgstr "ஏற்கத்தகா மாற்றக் குறிப்பு: ~s" -#: guix/transformations.scm:234 +#: guix/transformations.scm:235 #, scheme-format msgid "the source of ~a is not a Git reference" msgstr "" -#: guix/transformations.scm:337 +#: guix/transformations.scm:338 #, scheme-format msgid "~a: invalid Git URL replacement specification" msgstr "~a: ஏற்கத்தகா Git முகவரி மாற்றக் குறிப்பு" -#: guix/transformations.scm:415 +#: guix/transformations.scm:416 #, scheme-format msgid "~a: invalid toolchain replacement specification" msgstr "" -#: guix/transformations.scm:517 +#: guix/transformations.scm:518 #, fuzzy #| msgid "failed to determine origin~%" msgid "failed to determine which compiler is used" msgstr "தோற்றுவாயைக் கண்டறிய இயலவில்லை~%" -#: guix/transformations.scm:523 +#: guix/transformations.scm:524 #, fuzzy, scheme-format msgid "failed to determine whether ~a supports ~a" msgstr "connman யின் நிலையை அறிய இயலவில்லை." -#: guix/transformations.scm:529 +#: guix/transformations.scm:530 #, scheme-format msgid "compiler ~a does not support micro-architecture ~a" msgstr "" -#: guix/transformations.scm:581 +#: guix/transformations.scm:582 #, fuzzy, scheme-format #| msgid "~a: ~a~%" msgid "tuning ~a for CPU ~a~%" msgstr "~a: ~a~%" -#: guix/transformations.scm:721 +#: guix/transformations.scm:722 #, fuzzy, scheme-format msgid "~a: invalid package patch specification" msgstr "~a: ஏற்கத்தகா Git முகவரி மாற்றக் குறிப்பு" -#: guix/transformations.scm:744 +#: guix/transformations.scm:745 #, fuzzy, scheme-format msgid "could not determine latest upstream release of '~a'~%" msgstr "connman யின் நிலையை அறிய இயலவில்லை." -#: guix/transformations.scm:752 +#: guix/transformations.scm:753 #, scheme-format msgid "cannot authenticate source of '~a', version ~a~%" msgstr "" -#: guix/transformations.scm:833 +#: guix/transformations.scm:840 #, scheme-format msgid "building for ~a instead of ~a, so tuning cannot be guessed~%" msgstr "" -#: guix/transformations.scm:859 +#: guix/transformations.scm:866 #, scheme-format msgid "Available package transformation options:~%" msgstr "நிரல்தொகுப்பு உருமாற்றச் செயல்மாற்றிகள்:" -#: guix/transformations.scm:865 +#: guix/transformations.scm:872 msgid "" "\n" " --with-source=[PACKAGE=]SOURCE\n" " use SOURCE when building the corresponding package" msgstr "" -#: guix/transformations.scm:868 +#: guix/transformations.scm:875 msgid "" "\n" " --with-input=PACKAGE=REPLACEMENT\n" @@ -5848,7 +5995,7 @@ msgstr "" " --with-input=<நிரல்தொகுப்பு>=<மாற்று>\n" " உள்ளீட்டு <நிரல்தொகுப்புக்கு> மாற்றாக <மாற்றைப்> பயன்படுத்து" -#: guix/transformations.scm:871 +#: guix/transformations.scm:878 msgid "" "\n" " --with-graft=PACKAGE=REPLACEMENT\n" @@ -5858,7 +6005,7 @@ msgstr "" " --with-graft=<நிரல்தொகுப்பு>=<மாற்று>\n" " <நிரல்தொகுப்பைச்> சுட்டும் நிரல்தொகுப்புகள் மீது <மாற்றை> ஒட்டு" -#: guix/transformations.scm:874 +#: guix/transformations.scm:881 msgid "" "\n" " --with-branch=PACKAGE=BRANCH\n" @@ -5868,7 +6015,7 @@ msgstr "" " --with-branch=<நிரல்தொகுப்பு>=<கிளை>\n" " <நிரல்தொகுப்பைக்> <கிளையின்> கடைசி பதிவிலிருந்துப் பெயர்" -#: guix/transformations.scm:877 +#: guix/transformations.scm:884 msgid "" "\n" " --with-commit=PACKAGE=COMMIT\n" @@ -5878,7 +6025,7 @@ msgstr "" " --with-commit=<நிரல்தொகுப்பு>=<பதிவு>\n" " <நிரல்தொகுப்பை> Git <பதிவைக்> கொண்டுப் பெயர்" -#: guix/transformations.scm:880 +#: guix/transformations.scm:887 msgid "" "\n" " --with-git-url=PACKAGE=URL\n" @@ -5888,7 +6035,7 @@ msgstr "" " --with-git-url=<நிரல்தொகுப்பு>=<முகவரி>\n" " <நிரல்தொகுப்பை> <முகவரியிலுள்ள> Git களஞ்சியத்தைக் கொண்டுப் பெயர்" -#: guix/transformations.scm:883 +#: guix/transformations.scm:890 #, fuzzy msgid "" "\n" @@ -5899,7 +6046,7 @@ msgstr "" " --with-branch=<நிரல்தொகுப்பு>=<கிளை>\n" " <நிரல்தொகுப்பைக்> <கிளையின்> கடைசி பதிவிலிருந்துப் பெயர்" -#: guix/transformations.scm:886 +#: guix/transformations.scm:893 #, fuzzy msgid "" "\n" @@ -5910,14 +6057,14 @@ msgstr "" " --with-branch=<நிரல்தொகுப்பு>=<கிளை>\n" " <நிரல்தொகுப்பைக்> <கிளையின்> கடைசி பதிவிலிருந்துப் பெயர்" -#: guix/transformations.scm:889 +#: guix/transformations.scm:896 msgid "" "\n" " --with-c-toolchain=PACKAGE=TOOLCHAIN\n" " build PACKAGE and its dependents with TOOLCHAIN" msgstr "" -#: guix/transformations.scm:892 +#: guix/transformations.scm:899 msgid "" "\n" " --with-debug-info=PACKAGE\n" @@ -5927,7 +6074,7 @@ msgstr "" " --with-debug-info=<நிரல்தொகுப்பு>\n" " <நிரல்தொகுப்பை> வழுநீக்கத் தகவலுடன் பெயர்" -#: guix/transformations.scm:895 +#: guix/transformations.scm:902 msgid "" "\n" " --without-tests=PACKAGE\n" @@ -5937,7 +6084,7 @@ msgstr "" " --without-tests=<நிரல்தொகுப்பு>\n" " <நிரல்தொகுப்பைச்> சோதிக்காமல் பெயர்" -#: guix/transformations.scm:901 +#: guix/transformations.scm:908 msgid "" "\n" " --help-transform list package transformation options not shown here" @@ -5945,7 +6092,7 @@ msgstr "" "\n" " --help-transform குறிப்பிடப்படா நிரல்தொகுப்பு உருமாற்றச் செயல்மாற்றிகளைக் காட்டு" -#: guix/transformations.scm:950 +#: guix/transformations.scm:957 #, scheme-format msgid "transformation '~a' had no effect on ~a~%" msgstr "'~a' உருமாற்றம் ~a மீது எத்தாக்கமும் கொள்ளவில்லை~%" @@ -6457,12 +6604,12 @@ msgstr[1] "பின்வரும் மென்பொருள் தொக msgid "~a: invalid Texinfo markup~%" msgstr "~a: ஏற்கத்தகா எண்~%" -#: guix/ui.scm:1873 +#: guix/ui.scm:1876 #, scheme-format msgid "invalid syntax: ~a~%" msgstr "ஏற்கத்தகாத் தொடரமைப்பு: ~a~%" -#: guix/ui.scm:1882 +#: guix/ui.scm:1885 #, scheme-format msgid "Generation ~a\t~a" msgstr "வரிசை ~a\t~a" @@ -6472,7 +6619,7 @@ msgstr "வரிசை ~a\t~a" #. usual way of presenting dates in your locale. #. See https://www.gnu.org/software/guile/manual/html_node/SRFI_002d19-Date-to-string.html #. for details. -#: guix/ui.scm:1892 +#: guix/ui.scm:1895 #, scheme-format msgid "~b ~d ~Y ~T" msgstr "~b ~d ~Y ~T" @@ -6480,37 +6627,37 @@ msgstr "~b ~d ~Y ~T" #. TRANSLATORS: The word "current" here is an adjective for #. "Generation", as in "current generation". Use the appropriate #. gender where applicable. -#: guix/ui.scm:1898 +#: guix/ui.scm:1901 #, scheme-format msgid "~a\t(current)~%" msgstr "~a\t(தற்போதையது)~%" -#: guix/ui.scm:1932 +#: guix/ui.scm:1935 #, scheme-format msgid "cannot lock profile ~a: ~a~%" msgstr "" -#: guix/ui.scm:1934 +#: guix/ui.scm:1937 #, scheme-format msgid "profile ~a is locked by another process~%" msgstr "" -#: guix/ui.scm:1963 +#: guix/ui.scm:1966 #, scheme-format msgid "switched from generation ~a to ~a~%" msgstr "வரிசை ~a யிலிருந்து ~a க்கு மாற்றப்பட்டது~%" -#: guix/ui.scm:1979 +#: guix/ui.scm:1982 #, scheme-format msgid "deleting ~a~%" msgstr "~a நீக்கப்படுகிறது~%" -#: guix/ui.scm:2010 +#: guix/ui.scm:2013 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "மேலும் விவரங்களுக்கு `guix --help' கட்டளையை இயக்குக.~%" -#: guix/ui.scm:2102 +#: guix/ui.scm:2105 #, fuzzy #| msgid "" #| "Usage: guix COMMAND ARGS...\n" @@ -6522,7 +6669,7 @@ msgstr "" "பயன்பாடு: guix <கட்டளை> <செயலுருபுகள்>...\n" "<கட்டளையைச்> <செயலுருபுகளுடன்> இயக்குக.\n" -#: guix/ui.scm:2105 +#: guix/ui.scm:2108 #, fuzzy #| msgid "" #| "\n" @@ -6535,7 +6682,7 @@ msgstr "" "\n" " -h, --help இவ்வுதவிச் செய்தியைக் காட்டி வெளியேறு" -#: guix/ui.scm:2107 +#: guix/ui.scm:2110 #, fuzzy #| msgid "" #| "\n" @@ -6548,26 +6695,26 @@ msgstr "" "\n" " -V, --version பதிப்பு விவரத்தைக் காட்டி வெளியேறு" -#: guix/ui.scm:2112 +#: guix/ui.scm:2115 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "<கட்டளை> கீழ் பட்டியலிடப்பட்டுள்ள சார் கட்டளைகளுளொன்றாக இருக்க வேண்டும்:\n" -#: guix/ui.scm:2154 +#: guix/ui.scm:2157 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "guix: ~a: கட்டளை இல்லை ~%" -#: guix/ui.scm:2156 +#: guix/ui.scm:2159 #, fuzzy, scheme-format msgid "Did you mean @code{~a}?" msgstr "@code{(use-modules ~a)} யை மறந்தீரோ?" -#: guix/ui.scm:2190 +#: guix/ui.scm:2193 #, scheme-format msgid "guix: missing command name~%" msgstr "guix: கட்டளைப் பெயர் இல்லை" -#: guix/ui.scm:2198 +#: guix/ui.scm:2201 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "guix: அறியப்படாச் செயல்மாற்றி '~a'~%" @@ -6899,22 +7046,22 @@ msgstr "" msgid "unsupported manifest format" msgstr "" -#: guix/profiles.scm:2242 +#: guix/profiles.scm:2247 #, scheme-format msgid "while creating directory `~a': ~a" msgstr "`~a' அடைவை உருவாக்கும்பொழுது: ~a" -#: guix/profiles.scm:2247 +#: guix/profiles.scm:2252 #, scheme-format msgid "Please create the @file{~a} directory, with you as the owner." msgstr "@file{~a} உருவாக்கி உமதாக்குக." -#: guix/profiles.scm:2256 +#: guix/profiles.scm:2261 #, scheme-format msgid "directory `~a' is not owned by you" msgstr "`~a' அடைவு உமக்குரியதல்ல" -#: guix/profiles.scm:2260 +#: guix/profiles.scm:2265 #, scheme-format msgid "Please change the owner of @file{~a} to user ~s." msgstr "@file{~a} அடைவை ~s பயனர்க்குரியதாக்குக." @@ -7569,12 +7716,17 @@ msgstr "" msgid "'--profile' cannot be used with package options~%" msgstr "" -#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:275 +#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:261 #, fuzzy, scheme-format #| msgid "no packages specified; building an empty pack~%" msgid "no packages specified; creating an empty environment~%" msgstr "நிரல்தொகுப்புகள் குறிப்பிடப்படவில்லை; வெற்றுப் பொதி அமைக்கப்படுகிறது~%" +#: guix/scripts/environment.scm:979 +#, scheme-format +msgid "'--check' is unnecessary when using '--container'; doing nothing~%" +msgstr "" + #: guix/scripts/home/import.scm:179 msgid "" ";; This \"home-environment\" file can be passed to 'guix home reconfigure'\n" @@ -7584,7 +7736,7 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/home.scm:65 +#: guix/scripts/home.scm:66 #, fuzzy #| msgid "" #| "Usage: guix system [OPTION ...] ACTION [ARG ...] [FILE]\n" @@ -7599,7 +7751,7 @@ msgstr "" "<கோப்பில்> குறிப்பிட்ட இயங்குதளத்தைச் <செயலின்படி> அமை.\n" "சிலச் <செயல்கள்> கூடுதல் செயலுருபுகளை ஏற்கும்.\n" -#: guix/scripts/home.scm:71 +#: guix/scripts/home.scm:72 #, fuzzy msgid " search search for existing service types\n" msgstr "" @@ -7607,13 +7759,13 @@ msgstr "" " --search-paths[=<வகை>]\n" " தேவையான சூழல் மாறிகளைக் காட்டு" -#: guix/scripts/home.scm:73 +#: guix/scripts/home.scm:74 #, fuzzy #| msgid " reconfigure switch to a new operating system configuration\n" msgid " reconfigure switch to a new home environment configuration\n" msgstr " reconfigure இன்னொரு இயங்குதள அமைப்புக்கு மாறு\n" -#: guix/scripts/home.scm:75 +#: guix/scripts/home.scm:76 #, fuzzy #| msgid "" #| "\n" @@ -7623,74 +7775,74 @@ msgstr "" "\n" " --roll-back முந்தைய வரிசைக்குச் செல்" -#: guix/scripts/home.scm:77 +#: guix/scripts/home.scm:78 msgid " describe describe the current home environment\n" msgstr "" -#: guix/scripts/home.scm:79 +#: guix/scripts/home.scm:80 msgid " list-generations list the home environment generations\n" msgstr "" -#: guix/scripts/home.scm:81 +#: guix/scripts/home.scm:82 #, fuzzy #| msgid " reconfigure switch to a new operating system configuration\n" msgid " switch-generation switch to an existing home environment configuration\n" msgstr " reconfigure இன்னொரு இயங்குதள அமைப்புக்கு மாறு\n" -#: guix/scripts/home.scm:83 +#: guix/scripts/home.scm:84 msgid " delete-generations delete old home environment generations\n" msgstr "" -#: guix/scripts/home.scm:85 +#: guix/scripts/home.scm:86 msgid " build build the home environment without installing anything\n" msgstr "" -#: guix/scripts/home.scm:87 +#: guix/scripts/home.scm:88 msgid " import generates a home environment definition from dotfiles\n" msgstr "" -#: guix/scripts/home.scm:91 +#: guix/scripts/home.scm:92 msgid "" "\n" " -e, --expression=EXPR consider the home-environment EXPR evaluates to\n" " instead of reading FILE, when applicable" msgstr "" -#: guix/scripts/home.scm:196 +#: guix/scripts/home.scm:210 #, fuzzy, scheme-format msgid "'~a' does not return a home environment ~%" msgstr "'~a' அலைத்தடங்களின் பட்டியலைக் கொடுக்கவில்லை~%" -#: guix/scripts/home.scm:280 +#: guix/scripts/home.scm:293 #, scheme-format msgid "'~a' populated with all the Home configuration files~%" msgstr "" -#: guix/scripts/home.scm:282 +#: guix/scripts/home.scm:295 #, scheme-format msgid "" "Run @command{guix home reconfigure ~a/home-configuration.scm} to effectively\n" "deploy the home environment described by these files.\n" msgstr "" -#: guix/scripts/home.scm:289 +#: guix/scripts/home.scm:302 #, scheme-format msgid "no home environment generation, nothing to describe~%" msgstr "" -#: guix/scripts/home.scm:358 +#: guix/scripts/home.scm:371 #, fuzzy, scheme-format #| msgid "guix: missing command name~%" msgid "guix home: missing command name~%" msgstr "guix: கட்டளைப் பெயர் இல்லை" -#: guix/scripts/home.scm:360 +#: guix/scripts/home.scm:373 #, fuzzy, scheme-format #| msgid "Try `guix --help' for more information.~%" msgid "Try 'guix home --help' for more information.~%" msgstr "மேலும் விவரங்களுக்கு `guix --help' கட்டளையை இயக்குக.~%" -#: guix/scripts/home.scm:528 +#: guix/scripts/home.scm:541 #, fuzzy, scheme-format #| msgid "cannot switch to generation '~a'~%" msgid "cannot switch to home environment generation '~a'~%" @@ -7740,7 +7892,7 @@ msgstr "" #: guix/scripts/import/cpan.scm:83 guix/scripts/import/crate.scm:97 #: guix/scripts/import/egg.scm:100 guix/scripts/import/gem.scm:98 -#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:100 +#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:101 #, fuzzy, scheme-format msgid "failed to download meta-data for package '~a'~%" msgstr "'~a' நிரல்தொகுப்புப் பற்றிய விள்க்கவுரையைப் பதிவிறக்க இயலவில்லை~%" @@ -7827,7 +7979,7 @@ msgid "" " --pin-versions use the exact versions of a module's dependencies" msgstr "" -#: guix/scripts/import/go.scm:117 +#: guix/scripts/import/go.scm:118 #, fuzzy, scheme-format msgid "failed to download meta-data for module '~a'.~%" msgstr "'~a' நிரல்தொகுப்புப் பற்றிய விள்க்கவுரையைப் பதிவிறக்க இயலவில்லை~%" @@ -7985,6 +8137,12 @@ msgstr "" "பயன்பாடு: guix import cran <நிரல்தொகுப்புப்பெயர்>\n" "<நிரல்தொகுப்புப்பெயர்> என்னும் CRAN நிரல்தொகுப்பை இறக்கு.\n" +#: guix/scripts/import/texlive.scm:84 +#, fuzzy, scheme-format +#| msgid "failed to download package '~a'~%" +msgid "failed to import package '~a'~%" +msgstr "'~a' மென்பொருள் தொகுப்பின் பதிவிறக்கம் தோல்வியுற்றது~%" + #: guix/scripts/offload.scm:130 #, fuzzy, scheme-format msgid "The 'system' field is deprecated, please use 'systems' instead.~%" @@ -8433,14 +8591,14 @@ msgstr "~a: இணைப்பு தோல்வியுற்றது: ~a~%" msgid "~a: unknown type of REPL~%" msgstr "~a: ஏற்கத்தகாச் செயல்~%" -#: guix/scripts/shell.scm:46 +#: guix/scripts/shell.scm:48 msgid "" "Usage: guix shell [OPTION] PACKAGES... [-- COMMAND...]\n" "Build an environment that includes PACKAGES and execute COMMAND or an\n" "interactive shell in that environment.\n" msgstr "" -#: guix/scripts/shell.scm:52 +#: guix/scripts/shell.scm:54 #, fuzzy #| msgid "" #| "\n" @@ -8452,7 +8610,7 @@ msgstr "" "\n" " -d, --derivations நிரல்தொகுப்புகளின் வருவிகளைக் காட்டு" -#: guix/scripts/shell.scm:54 +#: guix/scripts/shell.scm:56 #, fuzzy msgid "" "\n" @@ -8462,7 +8620,7 @@ msgstr "" " -r, --root=<கோப்பு> <கோப்பை> விளைவுக்கு மென்னிணைப்பாக ஆக்கி அதைக்\n" " குப்பைக்கூட்டி வேராகப் பதி" -#: guix/scripts/shell.scm:56 +#: guix/scripts/shell.scm:58 #, fuzzy msgid "" "\n" @@ -8472,30 +8630,30 @@ msgstr "" "\n" " -h, --help இவ்வுதவிச் செய்தியைக் காட்டி வெளியேறு" -#: guix/scripts/shell.scm:58 +#: guix/scripts/shell.scm:60 msgid "" "\n" " --rebuild-cache rebuild cached environment, if any" msgstr "" -#: guix/scripts/shell.scm:199 +#: guix/scripts/shell.scm:201 #, fuzzy, scheme-format #| msgid " canonical file name: ~a~%" msgid "ignoring invalid file name: '~a'~%" msgstr " ஒழுங்குமுறைப்பட்ட கோப்புப் பெயர்: ~a~%" -#: guix/scripts/shell.scm:280 +#: guix/scripts/shell.scm:266 #, fuzzy, scheme-format #| msgid "following redirection to `~a'...~%" msgid "loading environment from '~a'...~%" msgstr "`~a' க்கு வழி மாறுகிறது...~%" -#: guix/scripts/shell.scm:286 +#: guix/scripts/shell.scm:272 #, scheme-format msgid "not loading '~a' because not authorized to do so~%" msgstr "" -#: guix/scripts/shell.scm:288 +#: guix/scripts/shell.scm:274 #, scheme-format msgid "" "To allow automatic loading of\n" @@ -8507,52 +8665,64 @@ msgid "" "@end example\n" msgstr "" -#: guix/scripts/shell.scm:386 +#: guix/scripts/shell.scm:431 msgid "" "Consider passing the @option{--check} option once\n" "to make sure your shell does not clobber environment variables." msgstr "" -#: guix/scripts/style.scm:241 +#: guix/scripts/style.scm:499 #, fuzzy, scheme-format #| msgid "~s: invalid G-expression input~%" msgid "~a: complex expression, bailing out~%" msgstr "~s: ஏற்கத்தகா G-கோவை உள்ளீடு~%" -#: guix/scripts/style.scm:259 +#: guix/scripts/style.scm:517 #, fuzzy, scheme-format #| msgid "module name ~a does not match file name '~a'~%" msgid "~a: input label '~a' does not match package name, bailing out~%" msgstr "~a நிரல்கூறு பெயர் '~a' கோப்புப் பெயருக்கு ஒத்ததில்லை~%" -#: guix/scripts/style.scm:264 +#: guix/scripts/style.scm:522 #, scheme-format msgid "~a: non-trivial input, bailing out~%" msgstr "" -#: guix/scripts/style.scm:288 +#: guix/scripts/style.scm:546 #, fuzzy, scheme-format #| msgid "~s: invalid G-expression input~%" msgid "~a: input expression is too short~%" msgstr "~s: ஏற்கத்தகா G-கோவை உள்ளீடு~%" -#: guix/scripts/style.scm:380 +#: guix/scripts/style.scm:638 #, fuzzy, scheme-format #| msgid "~a: unsupported output format~%" msgid "~a: unsupported input style, bailing out~%" msgstr "~a: ஏற்கத்தகா வெளியீட்டு வடிவம்~%" -#: guix/scripts/style.scm:392 +#: guix/scripts/style.scm:650 #, scheme-format msgid "would be edited~%" msgstr "" -#: guix/scripts/style.scm:482 +#: guix/scripts/style.scm:721 +#, fuzzy, scheme-format +#| msgid "failed to download description for package '~a'~%" +msgid "no definition location for package ~a~%" +msgstr "'~a' நிரல்தொகுப்புப் பற்றிய விள்க்கவுரையைப் பதிவிறக்க இயலவில்லை~%" + +#: guix/scripts/style.scm:767 +#, fuzzy, scheme-format +#| msgid "~a: unknown action~%" +msgid "~a: unknown styling~%" +msgstr "~a: ஏற்கத்தகாச் செயல்~%" + +#: guix/scripts/style.scm:774 #, fuzzy, scheme-format msgid "~a: invalid input simplification policy~%" msgstr "~a: ஏற்கத்தகா Git முகவரி மாற்றக் குறிப்பு" -#: guix/scripts/style.scm:496 +#: guix/scripts/style.scm:788 #, fuzzy msgid "" "Usage: guix style [OPTION]... [PACKAGE]...\n" @@ -8561,7 +8731,13 @@ msgstr "" "பயன்பாடு: guix gc [<செயல்மாற்றி>]... <பாதைகள்>...\n" "குப்பைக்கூட்டியை இயக்கு.\n" -#: guix/scripts/style.scm:498 +#: guix/scripts/style.scm:790 +msgid "" +"\n" +" -S, --styling=RULE apply RULE, a styling rule" +msgstr "" + +#: guix/scripts/style.scm:793 #, fuzzy #| msgid "" #| "\n" @@ -8574,7 +8750,7 @@ msgstr "" "\n" " -n, --dry-run வருவிகளைப் பெயர்க்காதே" -#: guix/scripts/style.scm:504 +#: guix/scripts/style.scm:799 msgid "" "\n" " --input-simplification=POLICY\n" @@ -8728,6 +8904,15 @@ msgstr "<பொருத்துவாயில்> இணைப்புகள msgid "produce debugging output" msgstr "வழுநீக்கத்திற்குத் துணையான செய்திகளை வெளியிடு" +#~ msgid "Please select a disk." +#~ msgstr "வட்டைத் தேர்ந்தெடுக்க." + +#, fuzzy +#~ msgid "" +#~ "Failed to import package ~s.\n" +#~ "reason: ~s.~%" +#~ msgstr "'~a' கோப்பை ஏற்ற இயலவில்லை: ~a~%" + #~ msgid "Package not found in opam repository: ~a~%" #~ msgstr "opam களஞ்சியத்தில் நிரல்தொகுப்பில்லை: ~a~%" diff --git a/po/guix/vi.po b/po/guix/vi.po index 54418c0566..fa4a3010dc 100644 --- a/po/guix/vi.po +++ b/po/guix/vi.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: guix 0.8.1\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" "PO-Revision-Date: 2015-01-28 07:59+0700\n" "Last-Translator: Trần Ngọc Quân \n" "Language-Team: Vietnamese \n" @@ -54,37 +54,37 @@ msgstr "" msgid "Try adding @code{(use-service-modules ~a)}." msgstr "" -#: gnu/packages.scm:96 +#: gnu/packages.scm:97 #, scheme-format msgid "~a: patch not found" msgstr "~a: không tìm thấy miếng vá" -#: gnu/packages.scm:480 gnu/packages.scm:521 +#: gnu/packages.scm:481 gnu/packages.scm:522 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "đặc tả gói chưa rõ ràng “~a'~%" -#: gnu/packages.scm:481 gnu/packages.scm:522 +#: gnu/packages.scm:482 gnu/packages.scm:523 #, fuzzy, scheme-format msgid "choosing ~a@~a from ~a~%" msgstr "chọn ~a từ ~a~%" -#: gnu/packages.scm:486 guix/scripts/package.scm:216 +#: gnu/packages.scm:487 guix/scripts/package.scm:218 #, fuzzy, scheme-format msgid "package '~a' has been superseded by '~a'~%" msgstr "gói “~a” không có nguồn~%" -#: gnu/packages.scm:493 gnu/packages.scm:510 +#: gnu/packages.scm:494 gnu/packages.scm:511 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A: gói không tìm thấy cho phiên bản ~a~%" -#: gnu/packages.scm:494 gnu/packages.scm:511 +#: gnu/packages.scm:495 gnu/packages.scm:512 #, scheme-format msgid "~A: unknown package~%" msgstr "~A: không hiểu gói ~%" -#: gnu/packages.scm:550 +#: gnu/packages.scm:551 #, scheme-format msgid "package `~a' lacks output `~a'~%" msgstr "gói “~a” thiếu kết xuất “~a'~%" @@ -273,14 +273,14 @@ msgid "" "@code{SIGKILL}." msgstr "" -#: gnu/home/services.scm:127 +#: gnu/home/services.scm:128 msgid "" "Build the home environment top-level directory,\n" "which in turn refers to everything the home environment needs: its\n" "packages, configuration files, activation script, and so on." msgstr "" -#: gnu/home/services.scm:158 +#: gnu/home/services.scm:159 #, scheme-format msgid "" "This is the @dfn{home profile} and can be found in\n" @@ -289,21 +289,21 @@ msgid "" "@code{home-environment} record." msgstr "" -#: gnu/home/services.scm:180 +#: gnu/home/services.scm:181 #, scheme-format msgid "duplicate definition for `~a' environment variable ~%" msgstr "" -#: gnu/home/services.scm:242 +#: gnu/home/services.scm:243 msgid "Set the environment variables." msgstr "" -#: gnu/home/services.scm:253 +#: gnu/home/services.scm:254 #, scheme-format msgid "duplicate '~a' entry for files/" msgstr "" -#: gnu/home/services.scm:277 +#: gnu/home/services.scm:278 #, scheme-format msgid "" "Configuration files for programs that\n" @@ -312,7 +312,7 @@ msgstr "" #. TRANSLATORS: 'on-first-login' is the name of a service and #. shouldn't be translated -#: gnu/home/services.scm:308 +#: gnu/home/services.scm:309 msgid "" "XDG_RUNTIME_DIR doesn't exists, on-first-login script\n" "won't execute anything. You can check if xdg runtime directory exists,\n" @@ -320,13 +320,13 @@ msgid "" "script by running '$HOME/.guix-home/on-first-login'" msgstr "" -#: gnu/home/services.scm:328 +#: gnu/home/services.scm:329 msgid "" "Run gexps on first user login. Can be\n" "extended with one gexp." msgstr "" -#: gnu/home/services.scm:391 +#: gnu/home/services.scm:392 msgid "" "Run gexps to activate the current\n" "generation of home environment and update the state of the home\n" @@ -335,33 +335,33 @@ msgid "" "with one gexp, but many times, and all gexps must be idempotent." msgstr "" -#: gnu/home/services.scm:472 +#: gnu/home/services.scm:473 #, scheme-format msgid "" "Comparing ~a and\n" "~10t~a..." msgstr "" -#: gnu/home/services.scm:474 +#: gnu/home/services.scm:475 #, scheme-format msgid " done (~a)\n" msgstr "" #. TRANSLATORS: 'on-change' is the name of a service type, it #. probably shouldn't be translated. -#: gnu/home/services.scm:483 +#: gnu/home/services.scm:484 msgid "" "Evaluating on-change gexps.\n" "\n" msgstr "" -#: gnu/home/services.scm:485 +#: gnu/home/services.scm:486 msgid "" "On-change gexps evaluation finished.\n" "\n" msgstr "" -#: gnu/home/services.scm:499 +#: gnu/home/services.scm:500 msgid "" "G-expressions to run if the specified files have changed since the\n" "last generation. The extension should be a list of lists where the\n" @@ -369,7 +369,7 @@ msgid "" "changed, and the second element is the G-expression to be evaluated." msgstr "" -#: gnu/home/services.scm:519 +#: gnu/home/services.scm:520 msgid "" "Store provenance information about the home environment in the home\n" "environment itself: the channels used when building the home\n" @@ -626,13 +626,13 @@ msgstr "" msgid "Updater for ELPA packages" msgstr "" -#: guix/import/github.scm:170 +#: guix/import/github.scm:175 #, fuzzy, scheme-format #| msgid "URI ~a unreachable: ~a" msgid "~a is unreachable (~a)~%" msgstr "URI ~a không tiếp cận được: ~a" -#: guix/import/github.scm:260 +#: guix/import/github.scm:274 msgid "Updater for GitHub packages" msgstr "" @@ -670,12 +670,23 @@ msgstr "~A: gói không tìm thấy cho phiên bản ~a~%" msgid "failed to determine latest release of GNU ~a" msgstr "gặp lỗi khi biên dịch hồ sơ trống rỗng~%" -#: guix/import/go.scm:569 +#: guix/import/go.scm:571 #, scheme-format msgid "unsupported vcs type '~a' for package '~a'" msgstr "" -#: guix/import/go.scm:647 +#: guix/import/go.scm:594 +#, fuzzy, scheme-format +#| msgid "~a: note: using ~a but ~a is available upstream~%" +msgid "version ~a of ~a is not available~%" +msgstr "~a: ghi chú: dùng ~a nhưng ~a thì sẵn có trên thượng nguồn~%" + +#: guix/import/go.scm:597 +#, scheme-format +msgid "Pick one of the following available versions:~{ ~a~}." +msgstr "" + +#: guix/import/go.scm:671 #, scheme-format msgid "" "Failed to import package ~s.\n" @@ -683,13 +694,6 @@ msgid "" "This package and its dependencies won't be imported.~%" msgstr "" -#: guix/import/go.scm:656 -#, fuzzy, scheme-format -msgid "" -"Failed to import package ~s.\n" -"reason: ~s.~%" -msgstr "gặp lỗi khi đăng ký “~a” dưới ~a~%" - #: guix/import/minetest.scm:178 #, scheme-format msgid "In ~a: author names must consist of at least a single character.~%" @@ -783,77 +787,99 @@ msgstr "gói “~a” không có nguồn~%" msgid "Updater for OPAM packages" msgstr "" -#: guix/import/pypi.scm:230 +#: guix/import/pypi.scm:233 msgid "Could not extract requirement name in spec:" msgstr "" -#: guix/import/pypi.scm:290 +#: guix/import/pypi.scm:293 #, scheme-format msgid "parse-requires.txt reached an unexpected condition on line ~a~%" msgstr "" -#: guix/import/pypi.scm:356 +#: guix/import/pypi.scm:359 #, fuzzy, scheme-format msgid "Failed to extract file: ~a from wheel.~%" msgstr "gặp lỗi khi đăng ký “~a” dưới ~a~%" -#: guix/import/pypi.scm:385 +#: guix/import/pypi.scm:388 #, scheme-format msgid "Cannot guess requirements from source archive: no requires.txt file found.~%" msgstr "" -#: guix/import/pypi.scm:390 +#: guix/import/pypi.scm:393 #, scheme-format msgid "Unsupported archive format; cannot determine package dependencies from source archive: ~a~%" msgstr "" -#: guix/import/pypi.scm:489 +#: guix/import/pypi.scm:434 +#, scheme-format +msgid "project name ~a does not appear verbatim in the PyPI URI~%" +msgstr "" + +#: guix/import/pypi.scm:437 +#, scheme-format +msgid "" +"The PyPI URI is: @url{~a}. You should review the\n" +"pypi-uri declaration in the generated package. You may need to replace ~s with\n" +"a substring of the PyPI URI that identifies the package." +msgstr "" + +#: guix/import/pypi.scm:505 #, scheme-format msgid "no source release for pypi package ~a ~a~%" msgstr "" -#: guix/import/pypi.scm:554 +#: guix/import/pypi.scm:509 +#, scheme-format +msgid "" +"This indicates that the\n" +"package is available on PyPI, but only as a \"wheel\" containing binaries, not\n" +"source. To build it from source, refer to the upstream repository at\n" +"@uref{~a}." +msgstr "" + +#: guix/import/pypi.scm:579 msgid "Updater for PyPI packages" msgstr "" -#: gnu/installer.scm:214 +#: gnu/installer.scm:217 msgid "Locale" msgstr "" -#: gnu/installer.scm:230 gnu/installer/newt/timezone.scm:58 +#: gnu/installer.scm:233 gnu/installer/newt/timezone.scm:58 msgid "Timezone" msgstr "" -#: gnu/installer.scm:247 +#: gnu/installer.scm:250 msgid "Keyboard mapping selection" msgstr "" -#: gnu/installer.scm:256 gnu/installer/newt/hostname.scm:26 +#: gnu/installer.scm:259 gnu/installer/newt/hostname.scm:26 msgid "Hostname" msgstr "" -#: gnu/installer.scm:265 +#: gnu/installer.scm:268 msgid "Network selection" msgstr "" -#: gnu/installer.scm:272 +#: gnu/installer.scm:275 msgid "Substitute server discovery" msgstr "" -#: gnu/installer.scm:279 gnu/installer/newt/user.scm:68 -#: gnu/installer/newt/user.scm:205 +#: gnu/installer.scm:282 gnu/installer/newt/user.scm:67 +#: gnu/installer/newt/user.scm:204 msgid "User creation" msgstr "" -#: gnu/installer.scm:287 +#: gnu/installer.scm:290 msgid "Services" msgstr "" -#: gnu/installer.scm:298 +#: gnu/installer.scm:301 msgid "Partitioning" msgstr "" -#: gnu/installer.scm:305 gnu/installer/newt/final.scm:53 +#: gnu/installer.scm:308 gnu/installer/newt/final.scm:53 #, fuzzy msgid "Configuration file" msgstr "chưa ghi rõ tập tin nhập cấu hình~%" @@ -866,19 +892,78 @@ msgstr "" msgid "Unable to find expected regexp." msgstr "" -#: gnu/installer/newt.scm:52 +#: gnu/installer/newt.scm:58 msgid "Press for installation parameters." msgstr "" -#: gnu/installer/newt.scm:65 -#, scheme-format -msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +#: gnu/installer/newt.scm:68 +msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. You may choose to exit or create a dump archive." msgstr "" -#: gnu/installer/newt.scm:68 +#: gnu/installer/newt.scm:71 msgid "Unexpected problem" msgstr "" +#: gnu/installer/newt.scm:75 +msgid "Dump" +msgstr "" + +#: gnu/installer/newt.scm:76 gnu/installer/newt/ethernet.scm:79 +#: gnu/installer/newt/keymap.scm:56 gnu/installer/newt/locale.scm:43 +#: gnu/installer/newt/network.scm:65 gnu/installer/newt/network.scm:82 +#: gnu/installer/newt/page.scm:315 gnu/installer/newt/page.scm:679 +#: gnu/installer/newt/page.scm:763 gnu/installer/newt/page.scm:828 +#: gnu/installer/newt/partition.scm:54 gnu/installer/newt/partition.scm:90 +#: gnu/installer/newt/partition.scm:125 gnu/installer/newt/partition.scm:140 +#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 +#: gnu/installer/newt/partition.scm:706 gnu/installer/newt/partition.scm:764 +#: gnu/installer/newt/partition.scm:775 gnu/installer/newt/services.scm:124 +#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/wifi.scm:206 +msgid "Exit" +msgstr "" + +#: gnu/installer/newt.scm:82 +#, scheme-format +msgid "The dump archive was created as ~a. Would you like to send this archive to the Guix servers?" +msgstr "" + +#: gnu/installer/newt.scm:84 +msgid "Dump archive created" +msgstr "" + +#: gnu/installer/newt.scm:88 +#, scheme-format +msgid "The dump was uploaded as ~a. Please report it by email to ~a." +msgstr "" + +#: gnu/installer/newt.scm:90 +msgid "The dump could not be uploaded." +msgstr "" + +#: gnu/installer/newt.scm:93 +msgid "Dump upload result" +msgstr "" + +#: gnu/installer/newt.scm:132 +#, scheme-format +msgid "External command ~s exited with code ~a" +msgstr "" + +#: gnu/installer/newt.scm:135 +#, scheme-format +msgid "External command ~s terminated by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:138 +#, scheme-format +msgid "External command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:140 +msgid "External command error" +msgstr "" + #: gnu/installer/newt/ethernet.scm:66 msgid "No ethernet service available, please try again." msgstr "" @@ -887,59 +972,45 @@ msgstr "" msgid "No service" msgstr "" -#: gnu/installer/newt/ethernet.scm:76 +#: gnu/installer/newt/ethernet.scm:74 msgid "Please select an ethernet network." msgstr "" -#: gnu/installer/newt/ethernet.scm:77 +#: gnu/installer/newt/ethernet.scm:75 msgid "Ethernet connection" msgstr "" -#: gnu/installer/newt/ethernet.scm:81 gnu/installer/newt/keymap.scm:56 -#: gnu/installer/newt/locale.scm:43 gnu/installer/newt/network.scm:63 -#: gnu/installer/newt/network.scm:84 gnu/installer/newt/page.scm:309 -#: gnu/installer/newt/page.scm:673 gnu/installer/newt/page.scm:758 -#: gnu/installer/newt/partition.scm:56 gnu/installer/newt/partition.scm:91 -#: gnu/installer/newt/partition.scm:126 gnu/installer/newt/partition.scm:141 -#: gnu/installer/newt/partition.scm:638 gnu/installer/newt/partition.scm:661 -#: gnu/installer/newt/partition.scm:707 gnu/installer/newt/partition.scm:765 -#: gnu/installer/newt/partition.scm:776 gnu/installer/newt/services.scm:130 -#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:204 -#: gnu/installer/newt/wifi.scm:206 -msgid "Exit" -msgstr "" - #: gnu/installer/newt/final.scm:46 #, scheme-format msgid "We're now ready to proceed with the installation! A system configuration file has been generated, it is displayed below. This file will be available as '~a' on the installed system. The new system will be created from this file once you've pressed OK. This will take a few minutes." msgstr "" -#: gnu/installer/newt/final.scm:70 +#: gnu/installer/newt/final.scm:68 msgid "Installation complete" msgstr "" -#: gnu/installer/newt/final.scm:71 gnu/installer/newt/parameters.scm:45 +#: gnu/installer/newt/final.scm:69 gnu/installer/newt/parameters.scm:45 #: gnu/installer/newt/welcome.scm:145 msgid "Reboot" msgstr "" -#: gnu/installer/newt/final.scm:72 +#: gnu/installer/newt/final.scm:70 msgid "Congratulations! Installation is now complete. You may remove the device containing the installation image and press the button to reboot." msgstr "" -#: gnu/installer/newt/final.scm:86 +#: gnu/installer/newt/final.scm:84 msgid "Installation failed" msgstr "" -#: gnu/installer/newt/final.scm:87 +#: gnu/installer/newt/final.scm:85 msgid "Resume" msgstr "" -#: gnu/installer/newt/final.scm:88 +#: gnu/installer/newt/final.scm:86 msgid "Restart the installer" msgstr "" -#: gnu/installer/newt/final.scm:89 +#: gnu/installer/newt/final.scm:87 msgid "The final system installation step failed. You can resume from a specific step, or restart the installer." msgstr "" @@ -967,9 +1038,9 @@ msgstr "" msgid "Installation parameters" msgstr "" -#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:74 -#: gnu/installer/newt/locale.scm:63 gnu/installer/newt/locale.scm:78 -#: gnu/installer/newt/locale.scm:94 gnu/installer/newt/partition.scm:595 +#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:72 +#: gnu/installer/newt/locale.scm:61 gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:88 gnu/installer/newt/partition.scm:594 #: gnu/installer/newt/timezone.scm:64 msgid "Back" msgstr "" @@ -990,16 +1061,16 @@ msgstr "" msgid "Please choose your keyboard layout. It will be used during the install process, and for the installed system. Non-Latin layouts can be toggled with Alt+Shift. You can switch to a different layout at any time from the parameters menu." msgstr "" -#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:62 -#: gnu/installer/newt/page.scm:308 +#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/page.scm:314 msgid "Continue" msgstr "" -#: gnu/installer/newt/keymap.scm:67 +#: gnu/installer/newt/keymap.scm:65 msgid "Variant" msgstr "" -#: gnu/installer/newt/keymap.scm:70 +#: gnu/installer/newt/keymap.scm:68 msgid "Please choose a variant for your keyboard layout." msgstr "" @@ -1011,37 +1082,37 @@ msgstr "" msgid "Choose the language to use for the installation process and for the installed system." msgstr "" -#: gnu/installer/newt/locale.scm:57 +#: gnu/installer/newt/locale.scm:55 #, fuzzy msgid "Locale location" msgstr "" -#: gnu/installer/newt/locale.scm:60 +#: gnu/installer/newt/locale.scm:58 msgid "Choose a territory for this language." msgstr "" -#: gnu/installer/newt/locale.scm:71 +#: gnu/installer/newt/locale.scm:67 msgid "Locale codeset" msgstr "" -#: gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:70 msgid "Choose the locale encoding." msgstr "" -#: gnu/installer/newt/locale.scm:86 +#: gnu/installer/newt/locale.scm:80 msgid "Locale modifier" msgstr "" -#: gnu/installer/newt/locale.scm:89 +#: gnu/installer/newt/locale.scm:83 msgid "Choose your locale's modifier. The most frequent modifier is euro. It indicates that you want to use Euro as the currency symbol." msgstr "" -#: gnu/installer/newt/locale.scm:190 +#: gnu/installer/newt/locale.scm:181 #, fuzzy msgid "No location" msgstr "" -#: gnu/installer/newt/locale.scm:217 +#: gnu/installer/newt/locale.scm:208 msgid "No modifier" msgstr "" @@ -1057,330 +1128,334 @@ msgstr "" msgid "Abort" msgstr "" -#: gnu/installer/newt/network.scm:61 gnu/installer/newt/network.scm:80 +#: gnu/installer/newt/network.scm:63 gnu/installer/newt/network.scm:78 msgid "Internet access" msgstr "" -#: gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/network.scm:66 msgid "The install process requires Internet access but no network devices were found. Do you want to continue anyway?" msgstr "" -#: gnu/installer/newt/network.scm:78 +#: gnu/installer/newt/network.scm:76 msgid "The install process requires Internet access. Please select a network device." msgstr "" -#: gnu/installer/newt/network.scm:103 +#: gnu/installer/newt/network.scm:99 msgid "Powering technology" msgstr "" -#: gnu/installer/newt/network.scm:104 +#: gnu/installer/newt/network.scm:100 #, scheme-format msgid "Waiting for technology ~a to be powered." msgstr "" -#: gnu/installer/newt/network.scm:128 +#: gnu/installer/newt/network.scm:139 msgid "Checking connectivity" msgstr "" -#: gnu/installer/newt/network.scm:129 +#: gnu/installer/newt/network.scm:140 msgid "Waiting for Internet access establishment..." msgstr "" -#: gnu/installer/newt/network.scm:139 -msgid "The selected network does not provide access to the Internet, please try again." +#: gnu/installer/newt/network.scm:150 +msgid "The selected network does not provide access to the Internet and the Guix substitute server, please try again." msgstr "" -#: gnu/installer/newt/network.scm:141 gnu/installer/newt/wifi.scm:108 +#: gnu/installer/newt/network.scm:152 gnu/installer/newt/wifi.scm:108 msgid "Connection error" msgstr "" -#: gnu/installer/newt/page.scm:198 +#: gnu/installer/newt/page.scm:204 #, fuzzy, scheme-format msgid "Connecting to ~a, please wait." msgstr "Đang tải, vui lòng chờ…~%" -#: gnu/installer/newt/page.scm:199 +#: gnu/installer/newt/page.scm:205 msgid "Connection in progress" msgstr "" -#: gnu/installer/newt/page.scm:218 gnu/installer/newt/user.scm:60 +#: gnu/installer/newt/page.scm:224 gnu/installer/newt/user.scm:59 msgid "Show" msgstr "" -#: gnu/installer/newt/page.scm:225 gnu/installer/newt/page.scm:672 -#: gnu/installer/newt/page.scm:757 gnu/installer/newt/partition.scm:458 -#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 -#: gnu/installer/newt/partition.scm:699 gnu/installer/newt/user.scm:66 -#: gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/page.scm:231 gnu/installer/newt/page.scm:678 +#: gnu/installer/newt/page.scm:762 gnu/installer/newt/partition.scm:457 +#: gnu/installer/newt/partition.scm:636 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:698 gnu/installer/newt/user.scm:65 +#: gnu/installer/newt/user.scm:202 msgid "OK" msgstr "" -#: gnu/installer/newt/page.scm:251 +#: gnu/installer/newt/page.scm:257 msgid "Please enter a non empty input." msgstr "" -#: gnu/installer/newt/page.scm:252 gnu/installer/newt/user.scm:123 +#: gnu/installer/newt/page.scm:258 gnu/installer/newt/user.scm:122 msgid "Empty input" msgstr "" -#: gnu/installer/newt/page.scm:760 +#: gnu/installer/newt/page.scm:765 msgid "Edit" msgstr "" -#: gnu/installer/newt/partition.scm:47 +#: gnu/installer/newt/page.scm:825 +msgid "Ok" +msgstr "" + +#: gnu/installer/newt/partition.scm:45 msgid "Everything is one partition" msgstr "" -#: gnu/installer/newt/partition.scm:48 +#: gnu/installer/newt/partition.scm:46 msgid "Separate /home partition" msgstr "" -#: gnu/installer/newt/partition.scm:50 +#: gnu/installer/newt/partition.scm:48 msgid "Please select a partitioning scheme." msgstr "" -#: gnu/installer/newt/partition.scm:51 +#: gnu/installer/newt/partition.scm:49 msgid "Partition scheme" msgstr "" #. TRANSLATORS: The ~{ and ~} format specifiers are used to iterate the list #. of device names of the user partitions that will be formatted. -#: gnu/installer/newt/partition.scm:65 +#: gnu/installer/newt/partition.scm:63 #, scheme-format msgid "We are about to write the configured partition table to the disk and format the partitions listed below. Their data will be lost. Do you wish to continue?~%~%~{ - ~a~%~}" msgstr "" -#: gnu/installer/newt/partition.scm:71 +#: gnu/installer/newt/partition.scm:69 msgid "Format disk?" msgstr "" -#: gnu/installer/newt/partition.scm:74 +#: gnu/installer/newt/partition.scm:72 msgid "Partition formatting is in progress, please wait." msgstr "" -#: gnu/installer/newt/partition.scm:75 +#: gnu/installer/newt/partition.scm:73 msgid "Preparing partitions" msgstr "" -#: gnu/installer/newt/partition.scm:86 -msgid "Please select a disk." +#: gnu/installer/newt/partition.scm:84 +msgid "Please select a disk. The installation device as well as the small devices are filtered." msgstr "" -#: gnu/installer/newt/partition.scm:87 +#: gnu/installer/newt/partition.scm:86 msgid "Disk" msgstr "" -#: gnu/installer/newt/partition.scm:102 +#: gnu/installer/newt/partition.scm:101 msgid "Select a new partition table type. Be careful, all data on the disk will be lost." msgstr "" -#: gnu/installer/newt/partition.scm:104 +#: gnu/installer/newt/partition.scm:103 msgid "Partition table" msgstr "" -#: gnu/installer/newt/partition.scm:121 +#: gnu/installer/newt/partition.scm:120 msgid "Please select a partition type." msgstr "" -#: gnu/installer/newt/partition.scm:122 +#: gnu/installer/newt/partition.scm:121 msgid "Partition type" msgstr "" -#: gnu/installer/newt/partition.scm:132 +#: gnu/installer/newt/partition.scm:131 msgid "Please select the file-system type for this partition." msgstr "" -#: gnu/installer/newt/partition.scm:133 +#: gnu/installer/newt/partition.scm:132 msgid "File-system type" msgstr "" -#: gnu/installer/newt/partition.scm:150 +#: gnu/installer/newt/partition.scm:149 msgid "Primary partitions count exceeded." msgstr "" -#: gnu/installer/newt/partition.scm:151 gnu/installer/newt/partition.scm:156 -#: gnu/installer/newt/partition.scm:161 +#: gnu/installer/newt/partition.scm:150 gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:160 msgid "Creation error" msgstr "" -#: gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:154 msgid "Extended partition creation error." msgstr "" -#: gnu/installer/newt/partition.scm:160 +#: gnu/installer/newt/partition.scm:159 msgid "Logical partition creation error." msgstr "" -#: gnu/installer/newt/partition.scm:174 +#: gnu/installer/newt/partition.scm:173 #, scheme-format msgid "Please enter the password for the encryption of partition ~a (label: ~a)." msgstr "" -#: gnu/installer/newt/partition.scm:176 gnu/installer/newt/wifi.scm:92 +#: gnu/installer/newt/partition.scm:175 gnu/installer/newt/wifi.scm:92 msgid "Password required" msgstr "" -#: gnu/installer/newt/partition.scm:181 +#: gnu/installer/newt/partition.scm:180 #, scheme-format msgid "Please confirm the password for the encryption of partition ~a (label: ~a)." msgstr "" -#: gnu/installer/newt/partition.scm:183 gnu/installer/newt/user.scm:160 +#: gnu/installer/newt/partition.scm:182 gnu/installer/newt/user.scm:159 msgid "Password confirmation required" msgstr "" -#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 +#: gnu/installer/newt/partition.scm:194 gnu/installer/newt/user.scm:167 msgid "Password mismatch, please try again." msgstr "" -#: gnu/installer/newt/partition.scm:196 gnu/installer/newt/user.scm:169 +#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 msgid "Password error" msgstr "" -#: gnu/installer/newt/partition.scm:282 +#: gnu/installer/newt/partition.scm:281 msgid "Please enter the partition gpt name." msgstr "" -#: gnu/installer/newt/partition.scm:283 +#: gnu/installer/newt/partition.scm:282 msgid "Partition name" msgstr "" -#: gnu/installer/newt/partition.scm:313 +#: gnu/installer/newt/partition.scm:312 msgid "Please enter the encrypted label" msgstr "" -#: gnu/installer/newt/partition.scm:314 +#: gnu/installer/newt/partition.scm:313 msgid "Encryption label" msgstr "" -#: gnu/installer/newt/partition.scm:331 +#: gnu/installer/newt/partition.scm:330 #, scheme-format msgid "Please enter the size of the partition. The maximum size is ~a." msgstr "" -#: gnu/installer/newt/partition.scm:333 +#: gnu/installer/newt/partition.scm:332 msgid "Partition size" msgstr "" -#: gnu/installer/newt/partition.scm:351 +#: gnu/installer/newt/partition.scm:350 msgid "The percentage can not be superior to 100." msgstr "" -#: gnu/installer/newt/partition.scm:352 gnu/installer/newt/partition.scm:357 -#: gnu/installer/newt/partition.scm:362 +#: gnu/installer/newt/partition.scm:351 gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:361 msgid "Size error" msgstr "" -#: gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:355 msgid "The requested size is incorrectly formatted, or too large." msgstr "" -#: gnu/installer/newt/partition.scm:361 +#: gnu/installer/newt/partition.scm:360 msgid "The request size is superior to the maximum size." msgstr "" -#: gnu/installer/newt/partition.scm:381 +#: gnu/installer/newt/partition.scm:380 msgid "Please enter the desired mounting point for this partition. Leave this field empty if you don't want to set a mounting point." msgstr "" -#: gnu/installer/newt/partition.scm:383 +#: gnu/installer/newt/partition.scm:382 msgid "Mounting point" msgstr "" -#: gnu/installer/newt/partition.scm:447 +#: gnu/installer/newt/partition.scm:446 #, scheme-format msgid "Creating ~a partition starting at ~a of ~a." msgstr "" -#: gnu/installer/newt/partition.scm:449 +#: gnu/installer/newt/partition.scm:448 #, scheme-format msgid "You are currently editing partition ~a." msgstr "" -#: gnu/installer/newt/partition.scm:452 +#: gnu/installer/newt/partition.scm:451 msgid "Partition creation" msgstr "" -#: gnu/installer/newt/partition.scm:453 +#: gnu/installer/newt/partition.scm:452 msgid "Partition edit" msgstr "" -#: gnu/installer/newt/partition.scm:634 +#: gnu/installer/newt/partition.scm:633 #, scheme-format msgid "Are you sure you want to delete everything on disk ~a?" msgstr "" -#: gnu/installer/newt/partition.scm:636 +#: gnu/installer/newt/partition.scm:635 msgid "Delete disk" msgstr "" -#: gnu/installer/newt/partition.scm:651 +#: gnu/installer/newt/partition.scm:650 msgid "You cannot delete a free space area." msgstr "" -#: gnu/installer/newt/partition.scm:652 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:651 gnu/installer/newt/partition.scm:658 msgid "Delete partition" msgstr "" -#: gnu/installer/newt/partition.scm:657 +#: gnu/installer/newt/partition.scm:656 #, scheme-format msgid "Are you sure you want to delete partition ~a?" msgstr "" -#: gnu/installer/newt/partition.scm:674 +#: gnu/installer/newt/partition.scm:673 msgid "" "You can change a disk's partition table by selecting it and pressing ENTER. You can also edit a partition by selecting it and pressing ENTER, or remove it by pressing DELETE. To create a new partition, select a free space area and press ENTER.\n" "\n" "At least one partition must have its mounting point set to '/'." msgstr "" -#: gnu/installer/newt/partition.scm:680 +#: gnu/installer/newt/partition.scm:679 #, scheme-format msgid "This is the proposed partitioning. It is still possible to edit it or to go back to install menu by pressing the Exit button.~%~%" msgstr "" -#: gnu/installer/newt/partition.scm:690 +#: gnu/installer/newt/partition.scm:689 msgid "Guided partitioning" msgstr "" -#: gnu/installer/newt/partition.scm:691 +#: gnu/installer/newt/partition.scm:690 msgid "Manual partitioning" msgstr "" -#: gnu/installer/newt/partition.scm:716 +#: gnu/installer/newt/partition.scm:715 msgid "No root mount point found." msgstr "" -#: gnu/installer/newt/partition.scm:717 +#: gnu/installer/newt/partition.scm:716 msgid "Missing mount point" msgstr "" -#: gnu/installer/newt/partition.scm:721 +#: gnu/installer/newt/partition.scm:720 #, scheme-format msgid "Cannot read the ~a partition UUID. You may need to format it." msgstr "" -#: gnu/installer/newt/partition.scm:724 +#: gnu/installer/newt/partition.scm:723 msgid "Wrong partition format" msgstr "" -#: gnu/installer/newt/partition.scm:755 +#: gnu/installer/newt/partition.scm:754 msgid "Guided - using the entire disk" msgstr "" -#: gnu/installer/newt/partition.scm:756 +#: gnu/installer/newt/partition.scm:755 msgid "Guided - using the entire disk with encryption" msgstr "" -#: gnu/installer/newt/partition.scm:757 +#: gnu/installer/newt/partition.scm:756 msgid "Manual" msgstr "" -#: gnu/installer/newt/partition.scm:759 +#: gnu/installer/newt/partition.scm:758 msgid "Please select a partitioning method." msgstr "" -#: gnu/installer/newt/partition.scm:760 +#: gnu/installer/newt/partition.scm:759 msgid "Partitioning method" msgstr "" @@ -1392,35 +1467,35 @@ msgstr "" msgid "Desktop environment" msgstr "" -#: gnu/installer/newt/services.scm:59 +#: gnu/installer/newt/services.scm:57 msgid "You can now select networking services to run on your system." msgstr "" -#: gnu/installer/newt/services.scm:61 +#: gnu/installer/newt/services.scm:59 msgid "Network service" msgstr "" -#: gnu/installer/newt/services.scm:79 +#: gnu/installer/newt/services.scm:75 msgid "You can now select the CUPS printing service to run on your system." msgstr "" -#: gnu/installer/newt/services.scm:81 +#: gnu/installer/newt/services.scm:77 msgid "Printing and document services" msgstr "" -#: gnu/installer/newt/services.scm:100 +#: gnu/installer/newt/services.scm:94 msgid "Console services" msgstr "" -#: gnu/installer/newt/services.scm:101 +#: gnu/installer/newt/services.scm:95 msgid "Select miscellaneous services to run on your non-graphical system." msgstr "" -#: gnu/installer/newt/services.scm:115 +#: gnu/installer/newt/services.scm:109 msgid "Network management" msgstr "" -#: gnu/installer/newt/services.scm:118 +#: gnu/installer/newt/services.scm:112 msgid "" "Choose the method to manage network connections.\n" "\n" @@ -1450,57 +1525,57 @@ msgstr "" msgid "Please select a timezone." msgstr "" -#: gnu/installer/newt/user.scm:45 +#: gnu/installer/newt/user.scm:44 msgid "Name" msgstr "" -#: gnu/installer/newt/user.scm:47 +#: gnu/installer/newt/user.scm:46 msgid "Real name" msgstr "" -#: gnu/installer/newt/user.scm:49 +#: gnu/installer/newt/user.scm:48 msgid "Home directory" msgstr "" -#: gnu/installer/newt/user.scm:51 +#: gnu/installer/newt/user.scm:50 msgid "Password" msgstr "" -#: gnu/installer/newt/user.scm:122 +#: gnu/installer/newt/user.scm:121 msgid "Empty inputs are not allowed." msgstr "" -#: gnu/installer/newt/user.scm:159 +#: gnu/installer/newt/user.scm:158 msgid "Please confirm the password." msgstr "" #. TRANSLATORS: Leave "root" untranslated: it refers to the name of the #. system administrator account. -#: gnu/installer/newt/user.scm:176 +#: gnu/installer/newt/user.scm:175 msgid "Please choose a password for the system administrator (\"root\")." msgstr "" -#: gnu/installer/newt/user.scm:178 +#: gnu/installer/newt/user.scm:177 msgid "System administrator password" msgstr "" -#: gnu/installer/newt/user.scm:191 +#: gnu/installer/newt/user.scm:190 msgid "Please add at least one user to system using the 'Add' button." msgstr "" -#: gnu/installer/newt/user.scm:194 +#: gnu/installer/newt/user.scm:193 msgid "Add" msgstr "" -#: gnu/installer/newt/user.scm:195 +#: gnu/installer/newt/user.scm:194 msgid "Delete" msgstr "" -#: gnu/installer/newt/user.scm:255 +#: gnu/installer/newt/user.scm:254 msgid "Please create at least one user." msgstr "" -#: gnu/installer/newt/user.scm:256 +#: gnu/installer/newt/user.scm:255 msgid "No user" msgstr "" @@ -1571,60 +1646,60 @@ msgstr "" msgid "Wifi" msgstr "" -#: gnu/installer/parted.scm:433 gnu/installer/parted.scm:470 +#: gnu/installer/parted.scm:455 gnu/installer/parted.scm:492 msgid "Free space" msgstr "" -#: gnu/installer/parted.scm:559 +#: gnu/installer/parted.scm:581 #, fuzzy, scheme-format msgid "Name: ~a" msgstr "~a: ~a~%" -#: gnu/installer/parted.scm:560 gnu/installer/parted.scm:606 +#: gnu/installer/parted.scm:582 gnu/installer/parted.scm:628 msgid "None" msgstr "" -#: gnu/installer/parted.scm:565 +#: gnu/installer/parted.scm:587 #, scheme-format msgid "Type: ~a" msgstr "" -#: gnu/installer/parted.scm:569 +#: gnu/installer/parted.scm:591 #, scheme-format msgid "File system type: ~a" msgstr "" -#: gnu/installer/parted.scm:575 +#: gnu/installer/parted.scm:597 #, scheme-format msgid "Bootable flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:579 +#: gnu/installer/parted.scm:601 #, scheme-format msgid "ESP flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:585 +#: gnu/installer/parted.scm:607 #, scheme-format msgid "Size: ~a" msgstr "" -#: gnu/installer/parted.scm:591 +#: gnu/installer/parted.scm:613 #, scheme-format msgid "Encryption: ~:[No~a~;Yes (label '~a')~]" msgstr "" -#: gnu/installer/parted.scm:597 +#: gnu/installer/parted.scm:619 #, scheme-format msgid "Format the partition? ~:[No~;Yes~]" msgstr "" -#: gnu/installer/parted.scm:603 +#: gnu/installer/parted.scm:625 #, scheme-format msgid "Mount point: ~a" msgstr "" -#: gnu/installer/parted.scm:1466 +#: gnu/installer/parted.scm:1477 #, scheme-format msgid "Device ~a is still in use." msgstr "" @@ -1668,7 +1743,7 @@ msgstr "" #. TRANSLATORS: This is a comment within a Scheme file. Each line must #. start with ";; " (two semicolons and a space). Please keep line #. length below 60 characters. -#: gnu/installer/steps.scm:252 +#: gnu/installer/steps.scm:242 msgid "" ";; This is an operating system configuration generated\n" ";; by the graphical installer.\n" @@ -1679,98 +1754,117 @@ msgstr "" msgid "Unable to locate path: ~a." msgstr "" -#: gnu/installer/utils.scm:83 +#: gnu/installer/utils.scm:131 #, scheme-format msgid "Press Enter to continue.~%" msgstr "" -#: gnu/installer/utils.scm:108 +#: gnu/installer/utils.scm:150 +#, scheme-format +msgid "Command ~s exited with value ~a" +msgstr "" + +#: gnu/installer/utils.scm:156 +#, scheme-format +msgid "Command ~s killed by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:162 #, scheme-format -msgid "Command failed with exit code ~a.~%" +msgid "Command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:167 +#, scheme-format +msgid "Command ~s succeeded" +msgstr "" + +#: gnu/installer/utils.scm:179 +msgid "run-command-in-installer not set" msgstr "" -#: gnu/machine/ssh.scm:117 +#: gnu/machine/ssh.scm:120 #, scheme-format msgid " without a 'host-key' is deprecated~%" msgstr "" -#: gnu/machine/ssh.scm:192 +#: gnu/machine/ssh.scm:208 #, fuzzy, scheme-format msgid "device '~a' not found: ~a" msgstr "URI ~a không tìm thấy miền: ~a" -#: gnu/machine/ssh.scm:207 +#: gnu/machine/ssh.scm:223 #, scheme-format msgid "no file system with label '~a'" msgstr "" -#: gnu/machine/ssh.scm:226 +#: gnu/machine/ssh.scm:242 #, scheme-format msgid "no file system with UUID '~a'" msgstr "" -#: gnu/machine/ssh.scm:276 +#: gnu/machine/ssh.scm:295 #, scheme-format msgid "missing modules for ~a:~{ ~a~}~%" msgstr "" -#: gnu/machine/ssh.scm:311 +#: gnu/machine/ssh.scm:333 #, scheme-format msgid "incorrect target system ('~a' was given, while the system reports that it is '~a')~%" msgstr "" -#: gnu/machine/ssh.scm:437 +#: gnu/machine/ssh.scm:459 #, scheme-format msgid "no signing key '~a'. have you run 'guix archive --generate-key?'" msgstr "" -#: gnu/machine/ssh.scm:469 +#: gnu/machine/ssh.scm:491 #, scheme-format msgid "failed to switch systems while deploying '~a':~%~{~s ~}" msgstr "" -#: gnu/machine/ssh.scm:477 +#: gnu/machine/ssh.scm:499 #, scheme-format msgid "an error occurred while upgrading services on '~a':~%~{~s ~}~%" msgstr "" -#: gnu/machine/ssh.scm:485 +#: gnu/machine/ssh.scm:507 #, fuzzy, scheme-format msgid "failed to install bootloader on '~a':~%~{~s ~}~%" msgstr "gặp lỗi khi kết nối đến “~a”: ~a~%" -#: gnu/machine/ssh.scm:518 +#: gnu/machine/ssh.scm:540 msgid "could not roll-back machine" msgstr "" -#: gnu/machine/ssh.scm:559 +#: gnu/machine/ssh.scm:581 msgid "" "Provisioning for machines that are accessible over SSH\n" "and have a known host-name. This entails little more than maintaining an SSH\n" "connection to the host." msgstr "" -#: gnu/machine/ssh.scm:569 +#: gnu/machine/ssh.scm:591 #, scheme-format msgid "" "unsupported machine configuration '~a'\n" "for environment of type '~a'" msgstr "" -#: gnu/packages/bootstrap.scm:178 +#: gnu/packages/bootstrap.scm:188 #, scheme-format msgid "could not find bootstrap binary '~a' for system '~a'" msgstr "không thể tìm thấy phần nhị phân mồi “~a” cho hệ thống “~a”" -#: gnu/packages/bootstrap.scm:492 +#: gnu/packages/bootstrap.scm:578 msgid "Raw build system with direct store access" msgstr "" -#: gnu/packages/bootstrap.scm:500 +#: gnu/packages/bootstrap.scm:586 msgid "Pre-built Guile for bootstrapping purposes." msgstr "" -#: guix/build/utils.scm:822 +#: guix/build/utils.scm:823 #, scheme-format msgid "'~a~{ ~a~}' exited with status ~a; output follows:~%~%~{ ~a~%~}" msgstr "" @@ -1810,7 +1904,7 @@ msgid "~A: unrecognized option~%" msgstr "~A: tùy chọn không được chấp nhận~%" #: guix/scripts.scm:169 guix/scripts/import.scm:140 -#: guix/scripts/system.scm:1370 +#: guix/scripts/system.scm:1379 #, scheme-format msgid "Did you mean @code{~a}?~%" msgstr "" @@ -1856,7 +1950,7 @@ msgstr "gặp lỗi khi tạo gốc GC “~a”: ~a~%" #: guix/scripts/build.scm:154 guix/scripts/search.scm:42 #: guix/scripts/show.scm:41 guix/scripts/lint.scm:112 guix/scripts/edit.scm:48 #: guix/scripts/size.scm:246 guix/scripts/graph.scm:553 -#: guix/scripts/repl.scm:80 guix/scripts/style.scm:500 +#: guix/scripts/repl.scm:80 guix/scripts/style.scm:795 msgid "" "\n" " -L, --load-path=DIR prepend DIR to the package module search path" @@ -2050,7 +2144,7 @@ msgstr "" "\n" " -s, --system=HỆ-THỐNG cố biên dịch cho HỆ-THỐNG--ví dụ: \"i686-linux\"" -#: guix/scripts/build.scm:357 guix/scripts/system.scm:1023 +#: guix/scripts/build.scm:357 guix/scripts/system.scm:1026 #: guix/scripts/pack.scm:1329 guix/scripts/archive.scm:97 msgid "" "\n" @@ -2090,13 +2184,13 @@ msgstr "" " -r, --root=TẬP-TIN tạo TẬP-TIN một liên kết mềm đến kết quả, và đăng ký nó\n" " như là bộ gom rác gốc" -#: guix/scripts/build.scm:368 guix/scripts/package.scm:486 +#: guix/scripts/build.scm:368 guix/scripts/package.scm:488 #: guix/scripts/install.scm:37 guix/scripts/remove.scm:36 #: guix/scripts/upgrade.scm:39 guix/scripts/pull.scm:117 -#: guix/scripts/system.scm:1025 guix/scripts/copy.scm:122 -#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:60 +#: guix/scripts/system.scm:1028 guix/scripts/copy.scm:122 +#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:66 #: guix/scripts/archive.scm:99 guix/scripts/environment.scm:123 -#: guix/scripts/home.scm:94 +#: guix/scripts/home.scm:98 #, fuzzy msgid "" "\n" @@ -2123,30 +2217,30 @@ msgstr "" " --log-file trả về tên của tập-tin nhật ký cho dẫn xuất đã cho" #: guix/scripts/build.scm:379 guix/scripts/download.scm:104 -#: guix/scripts/package.scm:504 guix/scripts/install.scm:44 +#: guix/scripts/package.scm:506 guix/scripts/install.scm:44 #: guix/scripts/remove.scm:41 guix/scripts/upgrade.scm:48 #: guix/scripts/search.scm:37 guix/scripts/show.scm:36 guix/scripts/gc.scm:88 #: guix/scripts/git.scm:34 guix/scripts/git/authenticate.scm:110 #: guix/scripts/hash.scm:98 guix/scripts/import.scm:98 #: guix/scripts/import/minetest.scm:46 guix/scripts/import/cran.scm:49 #: guix/scripts/pull.scm:125 guix/scripts/substitute.scm:250 -#: guix/scripts/system.scm:1032 guix/scripts/lint.scm:115 +#: guix/scripts/system.scm:1035 guix/scripts/lint.scm:115 #: guix/scripts/publish.scm:119 guix/scripts/edit.scm:51 #: guix/scripts/size.scm:249 guix/scripts/graph.scm:558 #: guix/scripts/challenge.scm:430 guix/scripts/copy.scm:127 #: guix/scripts/pack.scm:1357 guix/scripts/weather.scm:336 #: guix/scripts/describe.scm:96 guix/scripts/processes.scm:301 -#: guix/scripts/deploy.scm:55 guix/scripts/container.scm:35 +#: guix/scripts/deploy.scm:58 guix/scripts/container.scm:35 #: guix/scripts/container/exec.scm:43 guix/scripts/archive.scm:106 -#: guix/scripts/environment.scm:149 guix/scripts/home.scm:97 +#: guix/scripts/environment.scm:149 guix/scripts/home.scm:101 #: guix/scripts/time-machine.scm:67 guix/scripts/import/cpan.scm:44 #: guix/scripts/import/crate.scm:50 guix/scripts/import/egg.scm:45 #: guix/scripts/import/gem.scm:46 guix/scripts/import/gnu.scm:50 #: guix/scripts/import/go.scm:50 guix/scripts/import/json.scm:52 #: guix/scripts/import/opam.scm:45 guix/scripts/import/pypi.scm:46 #: guix/scripts/import/texlive.scm:45 guix/scripts/refresh.scm:187 -#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:67 -#: guix/scripts/style.scm:509 +#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:69 +#: guix/scripts/style.scm:804 msgid "" "\n" " -h, --help display this help and exit" @@ -2155,29 +2249,29 @@ msgstr "" " -h, --help hiển thị trợ giúp này rồi thoát" #: guix/scripts/build.scm:381 guix/scripts/download.scm:106 -#: guix/scripts/package.scm:506 guix/scripts/install.scm:46 +#: guix/scripts/package.scm:508 guix/scripts/install.scm:46 #: guix/scripts/remove.scm:43 guix/scripts/upgrade.scm:50 #: guix/scripts/search.scm:39 guix/scripts/show.scm:38 guix/scripts/gc.scm:90 #: guix/scripts/git.scm:36 guix/scripts/git/authenticate.scm:112 #: guix/scripts/hash.scm:100 guix/scripts/import.scm:100 #: guix/scripts/import/minetest.scm:50 guix/scripts/import/cran.scm:55 #: guix/scripts/pull.scm:127 guix/scripts/substitute.scm:252 -#: guix/scripts/system.scm:1034 guix/scripts/lint.scm:119 +#: guix/scripts/system.scm:1037 guix/scripts/lint.scm:119 #: guix/scripts/publish.scm:121 guix/scripts/edit.scm:53 #: guix/scripts/size.scm:251 guix/scripts/graph.scm:560 #: guix/scripts/challenge.scm:432 guix/scripts/copy.scm:129 #: guix/scripts/pack.scm:1359 guix/scripts/weather.scm:338 #: guix/scripts/describe.scm:98 guix/scripts/processes.scm:303 -#: guix/scripts/deploy.scm:57 guix/scripts/container.scm:37 +#: guix/scripts/deploy.scm:60 guix/scripts/container.scm:37 #: guix/scripts/container/exec.scm:45 guix/scripts/archive.scm:108 -#: guix/scripts/environment.scm:151 guix/scripts/home.scm:99 +#: guix/scripts/environment.scm:151 guix/scripts/home.scm:103 #: guix/scripts/time-machine.scm:69 guix/scripts/import/cpan.scm:46 #: guix/scripts/import/crate.scm:52 guix/scripts/import/egg.scm:49 #: guix/scripts/import/gem.scm:48 guix/scripts/import/gnu.scm:52 #: guix/scripts/import/json.scm:54 guix/scripts/import/opam.scm:52 #: guix/scripts/import/pypi.scm:50 guix/scripts/import/texlive.scm:47 #: guix/scripts/refresh.scm:189 guix/scripts/repl.scm:85 -#: guix/scripts/shell.scm:69 guix/scripts/style.scm:511 +#: guix/scripts/shell.scm:71 guix/scripts/style.scm:806 msgid "" "\n" " -V, --version display version information and exit" @@ -2421,166 +2515,166 @@ msgstr "hồ sơ “~a” không tồn tại~%" msgid "\"bash-minimal\" should be in 'inputs' when '~a' is used" msgstr "" -#: guix/lint.scm:616 +#: guix/lint.scm:614 msgid "no period allowed at the end of the synopsis" msgstr "không có dấu chấm ở cuối phần tóm lược" -#: guix/lint.scm:630 +#: guix/lint.scm:628 msgid "no article allowed at the beginning of the synopsis" msgstr "không có bài viết tại đầu của tóm lược" -#: guix/lint.scm:639 +#: guix/lint.scm:637 msgid "synopsis should be less than 80 characters long" msgstr "tóm lược nên ngắn hơn 80 ký tự" -#: guix/lint.scm:648 +#: guix/lint.scm:646 msgid "synopsis should start with an upper-case letter or digit" msgstr "phần tóm lược nên bắt đầu bằng một chữ HOA hay chữ số" -#: guix/lint.scm:656 +#: guix/lint.scm:654 msgid "synopsis should not start with the package name" msgstr "phần tóm lược không nên bắt đầu bằng tên gói" -#: guix/lint.scm:670 +#: guix/lint.scm:668 msgid "Texinfo markup in synopsis is invalid" msgstr "" -#: guix/lint.scm:678 +#: guix/lint.scm:676 msgid "synopsis contains trailing whitespace" msgstr "" -#: guix/lint.scm:695 +#: guix/lint.scm:693 msgid "synopsis should not be empty" msgstr "tóm lược không thể trống rỗng" -#: guix/lint.scm:705 +#: guix/lint.scm:703 #, fuzzy, scheme-format msgid "invalid synopsis: ~s" msgstr "cú pháp không hợp lệ: ~a~%" -#: guix/lint.scm:805 +#: guix/lint.scm:803 #, scheme-format msgid "~a: HTTP GET error for ~a: ~a (~s)~%" msgstr "" -#: guix/lint.scm:815 +#: guix/lint.scm:813 #, fuzzy, scheme-format msgid "~a: host lookup failure: ~a~%" msgstr "lỗi truy vấn tên máy: ~a~%" -#: guix/lint.scm:820 +#: guix/lint.scm:818 #, scheme-format msgid "~a: TLS certificate error: ~a" msgstr "" -#: guix/lint.scm:825 +#: guix/lint.scm:823 #, fuzzy, scheme-format msgid "~a: TLS error in '~a': ~a~%" msgstr "lỗi: trong khi tạo thư mục “~a”: ~a~%" -#: guix/lint.scm:836 guix/ui.scm:820 guix/scripts/offload.scm:194 +#: guix/lint.scm:834 guix/ui.scm:820 guix/scripts/offload.scm:194 #, scheme-format msgid "~a: ~a~%" msgstr "~a: ~a~%" -#: guix/lint.scm:868 +#: guix/lint.scm:866 #, scheme-format msgid "URI ~a returned suspiciously small file (~a bytes)" msgstr "" -#: guix/lint.scm:877 +#: guix/lint.scm:875 #, scheme-format msgid "permanent redirect from ~a to ~a" msgstr "" -#: guix/lint.scm:883 +#: guix/lint.scm:881 #, scheme-format msgid "invalid permanent redirect from ~a" msgstr "" -#: guix/lint.scm:889 guix/lint.scm:899 +#: guix/lint.scm:887 guix/lint.scm:897 #, scheme-format msgid "URI ~a not reachable: ~a (~s)" msgstr "URI ~a không thể tiếp cận: ~a (~s)" -#: guix/lint.scm:905 +#: guix/lint.scm:903 #, scheme-format msgid "URI ~a domain not found: ~a" msgstr "URI ~a không tìm thấy miền: ~a" -#: guix/lint.scm:911 +#: guix/lint.scm:909 #, scheme-format msgid "URI ~a unreachable: ~a" msgstr "URI ~a không tiếp cận được: ~a" -#: guix/lint.scm:919 +#: guix/lint.scm:917 #, scheme-format msgid "TLS certificate error: ~a" msgstr "" -#: guix/lint.scm:946 +#: guix/lint.scm:944 msgid "invalid value for home page" msgstr "giá trị của trang chủ không hợp lệ" -#: guix/lint.scm:951 +#: guix/lint.scm:949 #, scheme-format msgid "invalid home page URL: ~s" msgstr "URL trang chủ không hợp lệ: ~s" -#: guix/lint.scm:988 +#: guix/lint.scm:986 msgid "file names of patches should start with the package name" msgstr "tên tập tin của các miếng vá nên bắt đầu bằng tên của gói" -#: guix/lint.scm:1008 +#: guix/lint.scm:1006 #, scheme-format msgid "~a: file name is too long, which may break 'make dist'" msgstr "" -#: guix/lint.scm:1029 +#: guix/lint.scm:1027 #, scheme-format msgid "~a: empty patch" msgstr "" -#: guix/lint.scm:1038 +#: guix/lint.scm:1036 #, scheme-format msgid "~a: patch lacks comment and upstream status" msgstr "" -#: guix/lint.scm:1099 +#: guix/lint.scm:1097 #, fuzzy, scheme-format msgid "proposed synopsis: ~s~%" msgstr "~a: ~a: tóm lược dự kiến: ~s~%" -#: guix/lint.scm:1113 +#: guix/lint.scm:1111 #, fuzzy, scheme-format msgid "proposed description:~% \"~a\"~%" msgstr "~a: ~a: mô tả dự kiến:~% \"~a\"~%" -#: guix/lint.scm:1164 +#: guix/lint.scm:1162 #, fuzzy msgid "all the source URIs are unreachable:" msgstr "URI ~a không tiếp cận được: ~a" -#: guix/lint.scm:1193 +#: guix/lint.scm:1191 #, fuzzy msgid "the source file name should contain the package name" msgstr "tên tập tin của các miếng vá nên bắt đầu bằng tên của gói" -#: guix/lint.scm:1205 +#: guix/lint.scm:1203 msgid "the source URI should not be an autogenerated tarball" msgstr "" -#: guix/lint.scm:1229 +#: guix/lint.scm:1227 #, scheme-format msgid "URL should be 'mirror://~a/~a'" msgstr "" -#: guix/lint.scm:1269 +#: guix/lint.scm:1267 #, fuzzy, scheme-format msgid "while accessing '~a'" msgstr "gặp lỗi khi kết nối đến “~a”: ~a~%" -#: guix/lint.scm:1276 +#: guix/lint.scm:1274 #, scheme-format msgid "URL should be '~a'" msgstr "" @@ -2588,69 +2682,69 @@ msgstr "" #. TRANSLATORS: check and #:tests? are a #. Scheme symbol and keyword respectively #. and should not be translated. -#: guix/lint.scm:1304 +#: guix/lint.scm:1302 msgid "the 'check' phase should respect #:tests?" msgstr "" -#: guix/lint.scm:1322 guix/lint.scm:1333 guix/lint.scm:1341 +#: guix/lint.scm:1320 guix/lint.scm:1331 guix/lint.scm:1339 #, fuzzy, scheme-format msgid "failed to create ~a derivation: ~a" msgstr "gặp lỗi khi tạo gốc GC “~a”: ~a~%" -#: guix/lint.scm:1327 +#: guix/lint.scm:1325 #, fuzzy, scheme-format msgid "failed to create ~a derivation: ~s" msgstr "gặp lỗi khi đọc biểu thức ~s: ~s~%" -#: guix/lint.scm:1379 +#: guix/lint.scm:1377 #, scheme-format msgid "propagated inputs ~a and ~a collide" msgstr "" -#: guix/lint.scm:1403 +#: guix/lint.scm:1401 #, fuzzy msgid "invalid license field" msgstr "thẻ bài liên kết mềm không hợp lệ" -#: guix/lint.scm:1410 +#: guix/lint.scm:1408 msgid "while retrieving CVE vulnerabilities" msgstr "" -#: guix/lint.scm:1453 +#: guix/lint.scm:1451 #, scheme-format msgid "probably vulnerable to ~a" msgstr "" -#: guix/lint.scm:1461 +#: guix/lint.scm:1459 #, fuzzy, scheme-format msgid "no updater for ~a" msgstr "không có nhật ký dịch cho “~a'~%" -#: guix/lint.scm:1466 guix/lint.scm:1641 +#: guix/lint.scm:1464 guix/lint.scm:1639 #, scheme-format msgid "while retrieving upstream info for '~a'" msgstr "" -#: guix/lint.scm:1475 +#: guix/lint.scm:1473 #, scheme-format msgid "can be upgraded to ~a" msgstr "" -#: guix/lint.scm:1481 +#: guix/lint.scm:1479 #, scheme-format msgid "updater '~a' failed to find upstream releases" msgstr "" -#: guix/lint.scm:1508 +#: guix/lint.scm:1506 #, fuzzy, scheme-format msgid "failed to access Disarchive database at ~a" msgstr "gặp lỗi khi kết nối đến “~a”: ~a~%" -#: guix/lint.scm:1535 +#: guix/lint.scm:1533 msgid "Software Heritage rate limit reached; try again later" msgstr "" -#: guix/lint.scm:1539 +#: guix/lint.scm:1537 #, scheme-format msgid "'~a' returned ~a" msgstr "" @@ -2658,170 +2752,170 @@ msgstr "" #. TRANSLATORS: "Software Heritage" is a proper noun #. that must remain untranslated. See #. . -#: guix/lint.scm:1578 +#: guix/lint.scm:1576 msgid "scheduled Software Heritage archival" msgstr "" -#: guix/lint.scm:1584 +#: guix/lint.scm:1582 msgid "archival rate limit exceeded; try again later" msgstr "" -#: guix/lint.scm:1605 +#: guix/lint.scm:1603 msgid "source not archived on Software Heritage and missing from the Disarchive database" msgstr "" -#: guix/lint.scm:1615 +#: guix/lint.scm:1613 #, scheme-format msgid "Disarchive entry refers to non-existent SWH directory '~a'" msgstr "" -#: guix/lint.scm:1624 +#: guix/lint.scm:1622 #, fuzzy msgid "unsupported source type" msgstr "kiểu đề mục nar không được hỗ trợ" -#: guix/lint.scm:1633 +#: guix/lint.scm:1631 msgid "while connecting to Software Heritage" msgstr "" -#: guix/lint.scm:1650 +#: guix/lint.scm:1648 #, scheme-format msgid "ahead of Stackage LTS version ~a" msgstr "" -#: guix/lint.scm:1667 +#: guix/lint.scm:1665 #, scheme-format msgid "tabulation on line ~a, column ~a" msgstr "" -#: guix/lint.scm:1679 +#: guix/lint.scm:1677 #, scheme-format msgid "trailing white space on line ~a" msgstr "" -#: guix/lint.scm:1693 +#: guix/lint.scm:1691 #, scheme-format msgid "line ~a is way too long (~a characters)" msgstr "" -#: guix/lint.scm:1707 +#: guix/lint.scm:1705 msgid "parentheses feel lonely, move to the previous or next line" msgstr "" -#: guix/lint.scm:1784 +#: guix/lint.scm:1782 msgid "source file not found" msgstr "" -#: guix/lint.scm:1796 +#: guix/lint.scm:1794 #, fuzzy msgid "Validate package names" msgstr "Phê duyệt phần tóm lược của gói" -#: guix/lint.scm:1800 +#: guix/lint.scm:1798 msgid "Check if tests are explicitly enabled" msgstr "" -#: guix/lint.scm:1804 +#: guix/lint.scm:1802 msgid "Validate package descriptions" msgstr "Phê duyệt mô tả gói" -#: guix/lint.scm:1808 +#: guix/lint.scm:1806 msgid "Identify inputs that should be native inputs" msgstr "Đầu vào định danh cái mà có thể là đầu vào tự nhiên" -#: guix/lint.scm:1812 +#: guix/lint.scm:1810 #, fuzzy msgid "Identify inputs that shouldn't be inputs at all" msgstr "Đầu vào định danh cái mà có thể là đầu vào tự nhiên" -#: guix/lint.scm:1816 +#: guix/lint.scm:1814 #, fuzzy #| msgid "Identify inputs that should be native inputs" msgid "Identify input labels that do not match package names" msgstr "Đầu vào định danh cái mà có thể là đầu vào tự nhiên" -#: guix/lint.scm:1820 +#: guix/lint.scm:1818 msgid "Make sure 'wrap-program' can finds its interpreter." msgstr "" #. TRANSLATORS: is the name of a data type and must not be #. translated. -#: guix/lint.scm:1826 +#: guix/lint.scm:1824 msgid "Make sure the 'license' field is a or a list thereof" msgstr "" -#: guix/lint.scm:1831 +#: guix/lint.scm:1829 msgid "Make sure tests are only run when requested" msgstr "" -#: guix/lint.scm:1835 +#: guix/lint.scm:1833 msgid "Suggest 'mirror://' URLs" msgstr "" -#: guix/lint.scm:1839 +#: guix/lint.scm:1837 #, fuzzy msgid "Validate file names of sources" msgstr "Phê duyệt tên tập tin của bản vá" -#: guix/lint.scm:1843 +#: guix/lint.scm:1841 msgid "Check for autogenerated tarballs" msgstr "" -#: guix/lint.scm:1847 +#: guix/lint.scm:1845 msgid "Report failure to compile a package to a derivation" msgstr "" -#: guix/lint.scm:1852 +#: guix/lint.scm:1850 msgid "Report collisions that would occur due to propagated inputs" msgstr "" -#: guix/lint.scm:1857 +#: guix/lint.scm:1855 #, fuzzy msgid "Validate file names and availability of patches" msgstr "Phê duyệt tên tập tin của bản vá" -#: guix/lint.scm:1861 +#: guix/lint.scm:1859 #, fuzzy msgid "Validate patch headers" msgstr "Phê duyệt mô tả gói" -#: guix/lint.scm:1865 +#: guix/lint.scm:1863 msgid "Look for formatting issues in the source" msgstr "" -#: guix/lint.scm:1872 +#: guix/lint.scm:1870 msgid "Validate package synopses" msgstr "Phê duyệt phần tóm lược của gói" -#: guix/lint.scm:1876 +#: guix/lint.scm:1874 msgid "Validate synopsis & description of GNU packages" msgstr "Phê duyệt tóm lược và mô tả gói GNU" -#: guix/lint.scm:1880 +#: guix/lint.scm:1878 msgid "Validate home-page URLs" msgstr "Phê duyệt các URL trang chủ" -#: guix/lint.scm:1884 +#: guix/lint.scm:1882 msgid "Validate source URLs" msgstr "Phê chuẩn các URL" -#: guix/lint.scm:1888 +#: guix/lint.scm:1886 msgid "Suggest GitHub URLs" msgstr "" -#: guix/lint.scm:1892 +#: guix/lint.scm:1890 msgid "Check the Common Vulnerabilities and Exposures (CVE) database" msgstr "" -#: guix/lint.scm:1897 +#: guix/lint.scm:1895 msgid "Check the package for new upstream releases" msgstr "" -#: guix/lint.scm:1901 +#: guix/lint.scm:1899 msgid "Ensure source code archival on Software Heritage" msgstr "" -#: guix/lint.scm:1905 +#: guix/lint.scm:1903 msgid "Ensure Haskell packages use Stackage LTS versions" msgstr "" @@ -2881,7 +2975,7 @@ msgstr "định dạng băm không được hỗ trợ: ~a~%" msgid "~a: unknown hash algorithm~%" msgstr "~a: không hiểu thao tác~%" -#: guix/scripts/download.scm:171 guix/scripts/package.scm:1087 +#: guix/scripts/download.scm:171 guix/scripts/package.scm:1090 #: guix/scripts/pull.scm:758 guix/scripts/publish.scm:1260 #: guix/scripts/discover.scm:136 guix/scripts/time-machine.scm:123 #, scheme-format @@ -2913,17 +3007,17 @@ msgstr "" msgid "no matching generation~%" msgstr "không thể chuyển đến thế hệ “~a'~%" -#: guix/scripts/package.scm:159 +#: guix/scripts/package.scm:161 #, scheme-format msgid "nothing to be done~%" msgstr "không có gì cần làm~%" -#: guix/scripts/package.scm:260 +#: guix/scripts/package.scm:262 #, fuzzy, scheme-format msgid "package '~a' no longer exists~%" msgstr "gói “~a” không có nguồn~%" -#: guix/scripts/package.scm:315 +#: guix/scripts/package.scm:317 #, scheme-format msgid "" "Consider setting the necessary environment\n" @@ -2937,7 +3031,7 @@ msgid "" "Alternately, see @command{guix package --search-paths -p ~s}." msgstr "" -#: guix/scripts/package.scm:361 +#: guix/scripts/package.scm:363 msgid "" ";; This \"manifest\" file can be passed to 'guix package -m' to reproduce\n" ";; the content of your profile. This is \"symbolic\": it only specifies\n" @@ -2946,24 +3040,24 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/package.scm:393 +#: guix/scripts/package.scm:395 #, scheme-format msgid "no provenance information for this profile~%" msgstr "" -#: guix/scripts/package.scm:395 +#: guix/scripts/package.scm:397 msgid "" ";; This channel file can be passed to 'guix pull -C' or to\n" ";; 'guix time-machine -C' to obtain the Guix revision that was\n" ";; used to populate this profile.\n" msgstr "" -#: guix/scripts/package.scm:407 +#: guix/scripts/package.scm:409 #, scheme-format msgid ";; Note: these other commits were also used to install some of the packages in this profile:~%" msgstr "" -#: guix/scripts/package.scm:437 +#: guix/scripts/package.scm:439 #, fuzzy msgid "" "Usage: guix package [OPTION]...\n" @@ -2972,7 +3066,7 @@ msgstr "" "Cách dùng: guix package [TÙY CHỌN]… GÓI…\n" "Cài đặt, gỡ bỏ hay cập nhật GÓI trong một giao dịch đơn.\n" -#: guix/scripts/package.scm:439 +#: guix/scripts/package.scm:441 #, fuzzy msgid "" "\n" @@ -2982,7 +3076,7 @@ msgstr "" "\n" " -i, --install=GÓI cài đặt GÓI" -#: guix/scripts/package.scm:442 +#: guix/scripts/package.scm:444 msgid "" "\n" " -e, --install-from-expression=EXP\n" @@ -2992,7 +3086,7 @@ msgstr "" " -e, --install-from-expression=BT\n" " cài đặt gói được BT định giá cho" -#: guix/scripts/package.scm:445 +#: guix/scripts/package.scm:447 #, fuzzy msgid "" "\n" @@ -3004,7 +3098,7 @@ msgstr "" " -e, --install-from-expression=BT\n" " cài đặt gói được BT định giá cho" -#: guix/scripts/package.scm:449 +#: guix/scripts/package.scm:451 #, fuzzy msgid "" "\n" @@ -3014,7 +3108,7 @@ msgstr "" "\n" " -r, --remove=GÓI gỡ bỏ GÓI" -#: guix/scripts/package.scm:452 +#: guix/scripts/package.scm:454 msgid "" "\n" " -u, --upgrade[=REGEXP] upgrade all the installed packages matching REGEXP" @@ -3022,14 +3116,14 @@ msgstr "" "\n" " -u, --upgrade[=BTCQ] cập nhật tất cả các gói khớp với BTCQ" -#: guix/scripts/package.scm:454 +#: guix/scripts/package.scm:456 msgid "" "\n" " -m, --manifest=FILE create a new profile generation with the manifest\n" " from FILE" msgstr "" -#: guix/scripts/package.scm:457 guix/scripts/upgrade.scm:41 +#: guix/scripts/package.scm:459 guix/scripts/upgrade.scm:41 #, fuzzy msgid "" "\n" @@ -3038,7 +3132,7 @@ msgstr "" "\n" " -u, --upgrade[=BTCQ] cập nhật tất cả các gói khớp với BTCQ" -#: guix/scripts/package.scm:459 guix/scripts/pull.scm:107 +#: guix/scripts/package.scm:461 guix/scripts/pull.scm:107 msgid "" "\n" " --roll-back roll back to the previous generation" @@ -3046,7 +3140,7 @@ msgstr "" "\n" " --roll-back quay lại thế hệ trước" -#: guix/scripts/package.scm:461 +#: guix/scripts/package.scm:463 #, fuzzy msgid "" "\n" @@ -3056,7 +3150,7 @@ msgstr "" "\n" " --search-paths hiển thị các định nghĩa biến môi trường cần thiết" -#: guix/scripts/package.scm:464 guix/scripts/pull.scm:104 +#: guix/scripts/package.scm:466 guix/scripts/pull.scm:104 msgid "" "\n" " -l, --list-generations[=PATTERN]\n" @@ -3066,7 +3160,7 @@ msgstr "" " -l, --list-generations[=MẪU]\n" " liệt kê các gói khớp MẪU" -#: guix/scripts/package.scm:467 guix/scripts/pull.scm:109 +#: guix/scripts/package.scm:469 guix/scripts/pull.scm:109 msgid "" "\n" " -d, --delete-generations[=PATTERN]\n" @@ -3076,7 +3170,7 @@ msgstr "" " -d, --delete-generations[=MẪU]\n" " xóa các bộ tạo khớp MẪU" -#: guix/scripts/package.scm:470 guix/scripts/pull.scm:112 +#: guix/scripts/package.scm:472 guix/scripts/pull.scm:112 msgid "" "\n" " -S, --switch-generation=PATTERN\n" @@ -3086,7 +3180,7 @@ msgstr "" " -S, --switch-generation=MẪU\n" " chuyển sang một thế hệ khớp MẪU" -#: guix/scripts/package.scm:473 +#: guix/scripts/package.scm:475 #, fuzzy msgid "" "\n" @@ -3095,13 +3189,13 @@ msgstr "" "\n" " --list-live liệt kê đường dẫn còn sống" -#: guix/scripts/package.scm:475 +#: guix/scripts/package.scm:477 msgid "" "\n" " --export-channels print channels for the chosen profile" msgstr "" -#: guix/scripts/package.scm:477 guix/scripts/install.scm:34 +#: guix/scripts/package.scm:479 guix/scripts/install.scm:34 #: guix/scripts/remove.scm:33 guix/scripts/upgrade.scm:37 msgid "" "\n" @@ -3110,7 +3204,7 @@ msgstr "" "\n" " -p, --profile=HỒ_SƠ dùng hồ sơ đưa ra thay cho hồ sơ mặc định" -#: guix/scripts/package.scm:479 +#: guix/scripts/package.scm:481 #, fuzzy msgid "" "\n" @@ -3119,13 +3213,13 @@ msgstr "" "\n" " --list-live liệt kê đường dẫn còn sống" -#: guix/scripts/package.scm:482 +#: guix/scripts/package.scm:484 msgid "" "\n" " --allow-collisions do not treat collisions in the profile as an error" msgstr "" -#: guix/scripts/package.scm:484 +#: guix/scripts/package.scm:486 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" @@ -3133,7 +3227,7 @@ msgstr "" "\n" " --bootstrap dùng chương trình mồi Guile để biên dịch hồ sơ" -#: guix/scripts/package.scm:489 +#: guix/scripts/package.scm:491 msgid "" "\n" " -s, --search=REGEXP search in synopsis and description using REGEXP" @@ -3142,7 +3236,7 @@ msgstr "" " -s, --search=BTCQ tìm trong tóm lược và mô tả\n" " sử dụng BIỂU THỨC CHÍNH QUY" -#: guix/scripts/package.scm:491 +#: guix/scripts/package.scm:493 msgid "" "\n" " -I, --list-installed[=REGEXP]\n" @@ -3152,7 +3246,7 @@ msgstr "" " -I, --list-installed[=BIỂU-THỨC-CHÍNH-QUY]\n" " kiệt kê các gói khớp BTCQ đã cài đặt" -#: guix/scripts/package.scm:494 +#: guix/scripts/package.scm:496 msgid "" "\n" " -A, --list-available[=REGEXP]\n" @@ -3162,7 +3256,7 @@ msgstr "" " -A, --list-available[=BIỂU-THỨC-CHÍNH-QUY]\n" " kiệt kê các gói khớp BTCQ" -#: guix/scripts/package.scm:497 +#: guix/scripts/package.scm:499 #, fuzzy msgid "" "\n" @@ -3171,37 +3265,37 @@ msgstr "" "\n" " --show=GÓI hiển thị thông tin chi tiết về GÓI" -#: guix/scripts/package.scm:552 +#: guix/scripts/package.scm:554 #, scheme-format msgid "upgrade regexp '~a' looks like a command-line option~%" msgstr "" -#: guix/scripts/package.scm:555 +#: guix/scripts/package.scm:557 #, scheme-format msgid "is this intended?~%" msgstr "" -#: guix/scripts/package.scm:605 +#: guix/scripts/package.scm:607 #, scheme-format msgid "~a: unsupported kind of search path~%" msgstr "" -#: guix/scripts/package.scm:739 +#: guix/scripts/package.scm:741 #, scheme-format msgid "cannot install non-package object: ~s~%" msgstr "" -#: guix/scripts/package.scm:918 +#: guix/scripts/package.scm:920 #, fuzzy, scheme-format msgid "~a~@[@~a~]: package not found~%" msgstr "~a: không tìm thấy gói~%" -#: guix/scripts/package.scm:965 guix/scripts/pull.scm:687 +#: guix/scripts/package.scm:967 guix/scripts/pull.scm:687 #, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "không thể chuyển đến thế hệ “~a'~%" -#: guix/scripts/package.scm:1060 +#: guix/scripts/package.scm:1062 #, fuzzy, scheme-format #| msgid "nothing to be done~%" msgid "nothing to do~%" @@ -3452,8 +3546,8 @@ msgstr "" "Cách dùng: guix LỆNH ĐỐI_SỐ…\n" "Chạy LỆNH với các ĐỐI SỐ.\n" -#: guix/scripts/git.scm:29 guix/scripts/system.scm:945 -#: guix/scripts/container.scm:30 guix/scripts/home.scm:69 +#: guix/scripts/git.scm:29 guix/scripts/system.scm:946 +#: guix/scripts/container.scm:30 guix/scripts/home.scm:70 msgid "The valid values for ACTION are:\n" msgstr "Các giá trị hợp lệ cho THAO TÁC là:\n" @@ -3552,23 +3646,23 @@ msgstr "" "\n" " -r, --recursive tính mã băm trên TẬP-TIN một cách đệ quy" -#: guix/scripts/hash.scm:137 +#: guix/scripts/hash.scm:138 #, scheme-format -msgid "'--recursive' is deprecated, use '--serializer' instead~%" +msgid "'--recursive' is deprecated, use '--serializer=nar' instead~%" msgstr "" -#: guix/scripts/hash.scm:152 +#: guix/scripts/hash.scm:153 #, fuzzy, scheme-format msgid "unsupported serializer type: ~a~%" msgstr "định dạng băm không được hỗ trợ: ~a~%" -#: guix/scripts/hash.scm:201 +#: guix/scripts/hash.scm:202 #, fuzzy, scheme-format #| msgid "~a: ~a~%" msgid "~a ~a~%" msgstr "~a: ~a~%" -#: guix/scripts/hash.scm:210 +#: guix/scripts/hash.scm:211 #, fuzzy, scheme-format msgid "no arguments specified~%" msgstr "chưa ghi rõ tập tin nhập cấu hình~%" @@ -3635,9 +3729,9 @@ msgstr "~a: số không hợp lệ~%" #: guix/scripts/import/minetest.scm:115 guix/scripts/import/cran.scm:120 #: guix/scripts/import/elpa.scm:110 guix/scripts/import/cpan.scm:87 #: guix/scripts/import/crate.scm:103 guix/scripts/import/egg.scm:106 -#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:121 +#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:122 #: guix/scripts/import/hackage.scm:158 guix/scripts/import/json.scm:97 -#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:104 +#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:105 #: guix/scripts/import/stackage.scm:130 guix/scripts/import/texlive.scm:88 #, fuzzy, scheme-format msgid "too few arguments~%" @@ -3646,10 +3740,10 @@ msgstr "số lượng đối số không đúng~%" #: guix/scripts/import/minetest.scm:117 guix/scripts/import/cran.scm:122 #: guix/scripts/import/elpa.scm:112 guix/scripts/import/cpan.scm:89 #: guix/scripts/import/crate.scm:105 guix/scripts/import/egg.scm:108 -#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:123 +#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:124 #: guix/scripts/import/hackage.scm:149 guix/scripts/import/hackage.scm:160 #: guix/scripts/import/json.scm:99 guix/scripts/import/opam.scm:113 -#: guix/scripts/import/pypi.scm:106 guix/scripts/import/stackage.scm:132 +#: guix/scripts/import/pypi.scm:107 guix/scripts/import/stackage.scm:132 #: guix/scripts/import/texlive.scm:90 #, fuzzy, scheme-format msgid "too many arguments~%" @@ -3673,7 +3767,7 @@ msgid "" " -s, --style=STYLE choose output style, either specification or variable" msgstr "" -#: guix/scripts/import/cran.scm:116 guix/scripts/import/texlive.scm:84 +#: guix/scripts/import/cran.scm:116 #, fuzzy, scheme-format msgid "failed to download description for package '~a'~%" msgstr "gặp lỗi khi tải tập tin hệ điều hành “~a”:~%" @@ -4102,27 +4196,27 @@ msgstr "" msgid "the dependency graph of shepherd services" msgstr "" -#: guix/scripts/system.scm:482 guix/scripts/home.scm:453 +#: guix/scripts/system.scm:482 guix/scripts/home.scm:466 #, scheme-format msgid " repository URL: ~a~%" msgstr "" -#: guix/scripts/system.scm:484 guix/scripts/home.scm:455 +#: guix/scripts/system.scm:484 guix/scripts/home.scm:468 #, scheme-format msgid " branch: ~a~%" msgstr "" -#: guix/scripts/system.scm:485 guix/scripts/home.scm:456 +#: guix/scripts/system.scm:485 guix/scripts/home.scm:469 #, scheme-format msgid " commit: ~a~%" msgstr "" -#: guix/scripts/system.scm:505 guix/scripts/home.scm:469 +#: guix/scripts/system.scm:505 guix/scripts/home.scm:482 #, fuzzy, scheme-format msgid " file name: ~a~%" msgstr "số không hợp lệ: ~a~%" -#: guix/scripts/system.scm:506 guix/scripts/home.scm:470 +#: guix/scripts/system.scm:506 guix/scripts/home.scm:483 #, scheme-format msgid " canonical file name: ~a~%" msgstr "" @@ -4163,12 +4257,12 @@ msgstr "" #. TRANSLATORS: Here "channel" is the same terminology as used in #. "guix describe" and "guix pull --channels". -#: guix/scripts/system.scm:536 guix/scripts/home.scm:476 +#: guix/scripts/system.scm:536 guix/scripts/home.scm:489 #, scheme-format msgid " channels:~%" msgstr "" -#: guix/scripts/system.scm:539 guix/scripts/home.scm:479 +#: guix/scripts/system.scm:539 guix/scripts/home.scm:492 #, fuzzy, scheme-format msgid " configuration file: ~a~%" msgstr "chưa ghi rõ tập tin nhập cấu hình~%" @@ -4220,41 +4314,41 @@ msgstr "" msgid "Failing to do that may downgrade your system!~%" msgstr "" -#: guix/scripts/system.scm:754 guix/scripts/system.scm:863 +#: guix/scripts/system.scm:754 guix/scripts/system.scm:864 #, fuzzy, scheme-format msgid "bootloader successfully installed on '~a'~%" msgstr "đã cập nhật ~a thành công được triển khai dưới “~a'~%" -#: guix/scripts/system.scm:856 +#: guix/scripts/system.scm:857 #, scheme-format msgid "activating system...~%" msgstr "đang kích hoạt hệ thống…~%" -#: guix/scripts/system.scm:867 +#: guix/scripts/system.scm:868 msgid "" "To complete the upgrade, run 'herd restart SERVICE' to stop,\n" "upgrade, and restart each service that was not automatically restarted.\n" msgstr "" -#: guix/scripts/system.scm:870 +#: guix/scripts/system.scm:871 msgid "Run 'herd status' to view the list of services on your system.\n" msgstr "" -#: guix/scripts/system.scm:874 +#: guix/scripts/system.scm:875 #, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "đang khởi tạo hệ điều hành dưới “~a”…~%" -#: guix/scripts/system.scm:894 guix/scripts/graph.scm:437 +#: guix/scripts/system.scm:895 guix/scripts/graph.scm:437 #, fuzzy, scheme-format msgid "~a: unknown backend~%" msgstr "~a: không hiểu thao tác~%" -#: guix/scripts/system.scm:931 +#: guix/scripts/system.scm:932 msgid "The available image types are:\n" msgstr "" -#: guix/scripts/system.scm:941 +#: guix/scripts/system.scm:942 #, fuzzy msgid "" "Usage: guix system [OPTION ...] ACTION [ARG ...] [FILE]\n" @@ -4264,75 +4358,75 @@ msgstr "" "Cách dùng: guix system [TÙY-CHỌN] THAO-TÁC TẬP-TIN\n" "biên dịch hệ điều hành khai báo trong TẬP-TIN tuân theo THAO-TÁC.\n" -#: guix/scripts/system.scm:947 +#: guix/scripts/system.scm:948 msgid " search search for existing service types\n" msgstr "" -#: guix/scripts/system.scm:949 +#: guix/scripts/system.scm:950 #, fuzzy msgid " reconfigure switch to a new operating system configuration\n" msgstr " - “reconfigure”, chuyển thành cấu hình hệ điều hành mới\n" -#: guix/scripts/system.scm:951 +#: guix/scripts/system.scm:952 #, fuzzy msgid " roll-back switch to the previous operating system configuration\n" msgstr " - “reconfigure”, chuyển thành cấu hình hệ điều hành mới\n" -#: guix/scripts/system.scm:953 +#: guix/scripts/system.scm:954 msgid " describe describe the current system\n" msgstr "" -#: guix/scripts/system.scm:955 +#: guix/scripts/system.scm:956 msgid " list-generations list the system generations\n" msgstr "" -#: guix/scripts/system.scm:957 +#: guix/scripts/system.scm:958 #, fuzzy msgid " switch-generation switch to an existing operating system configuration\n" msgstr " - “reconfigure”, chuyển thành cấu hình hệ điều hành mới\n" -#: guix/scripts/system.scm:959 +#: guix/scripts/system.scm:960 msgid " delete-generations delete old system generations\n" msgstr "" -#: guix/scripts/system.scm:961 +#: guix/scripts/system.scm:962 #, fuzzy msgid " build build the operating system without installing anything\n" msgstr " - “build”, biên dịch hệ điều hành mà không cài gì\n" -#: guix/scripts/system.scm:963 +#: guix/scripts/system.scm:964 #, fuzzy msgid " container build a container that shares the host's store\n" msgstr " - “vm”, biên dịch một ảnh máy ảo kiểu mà có thể chia sẻ trên kho máy\n" -#: guix/scripts/system.scm:965 +#: guix/scripts/system.scm:966 #, fuzzy msgid " vm build a virtual machine image that shares the host's store\n" msgstr " - “vm”, biên dịch một ảnh máy ảo kiểu mà có thể chia sẻ trên kho máy\n" -#: guix/scripts/system.scm:967 +#: guix/scripts/system.scm:968 #, fuzzy msgid " image build a Guix System image\n" msgstr " - “vm-image”, biên dịch một ảnh máy ảo đứng tự do\n" -#: guix/scripts/system.scm:969 +#: guix/scripts/system.scm:970 msgid " docker-image build a Docker image\n" msgstr "" -#: guix/scripts/system.scm:971 +#: guix/scripts/system.scm:972 #, fuzzy msgid " init initialize a root file system to run GNU\n" msgstr " - “init”, khởi tạo một hệ thống tập tin gốc để chạy GNU.\n" -#: guix/scripts/system.scm:973 +#: guix/scripts/system.scm:974 msgid " extension-graph emit the service extension graph in Dot format\n" msgstr "" -#: guix/scripts/system.scm:975 +#: guix/scripts/system.scm:976 msgid " shepherd-graph emit the graph of shepherd services in Dot format\n" msgstr "" -#: guix/scripts/system.scm:979 +#: guix/scripts/system.scm:980 #, fuzzy msgid "" "\n" @@ -4341,21 +4435,21 @@ msgstr "" "\n" " -d, --derivations trả về các đường dẫn nguồn gốc của các gói đã cho" -#: guix/scripts/system.scm:981 +#: guix/scripts/system.scm:982 msgid "" "\n" " -e, --expression=EXPR consider the operating-system EXPR evaluates to\n" " instead of reading FILE, when applicable" msgstr "" -#: guix/scripts/system.scm:984 +#: guix/scripts/system.scm:985 guix/scripts/home.scm:95 msgid "" "\n" " --allow-downgrades for 'reconfigure', allow downgrades to earlier\n" " channel revisions" msgstr "" -#: guix/scripts/system.scm:987 +#: guix/scripts/system.scm:988 msgid "" "\n" " --on-error=STRATEGY\n" @@ -4363,7 +4457,7 @@ msgid "" " or debug) when an error occurs while reading FILE" msgstr "" -#: guix/scripts/system.scm:991 +#: guix/scripts/system.scm:992 #, fuzzy msgid "" "\n" @@ -4372,7 +4466,7 @@ msgstr "" "\n" " --list-live liệt kê đường dẫn còn sống" -#: guix/scripts/system.scm:993 +#: guix/scripts/system.scm:994 #, fuzzy msgid "" "\n" @@ -4381,7 +4475,7 @@ msgstr "" "\n" " --image-size=CỠ cho “vm-image”, sản sinh ảnh theo CỠ này" -#: guix/scripts/system.scm:995 +#: guix/scripts/system.scm:996 #, fuzzy msgid "" "\n" @@ -4390,7 +4484,7 @@ msgstr "" "\n" " --image-size=CỠ cho “vm-image”, sản sinh ảnh theo CỠ này" -#: guix/scripts/system.scm:997 +#: guix/scripts/system.scm:998 #, fuzzy msgid "" "\n" @@ -4399,7 +4493,7 @@ msgstr "" "\n" " --no-grub dành cho “init”, đừng cài GRUB" -#: guix/scripts/system.scm:999 +#: guix/scripts/system.scm:1000 #, fuzzy msgid "" "\n" @@ -4408,19 +4502,28 @@ msgstr "" "\n" " --share=SPEC cho “vm”, chia sẻ hệ thống tập tin chủ tuân theo SPEC" -#: guix/scripts/system.scm:1001 +#: guix/scripts/system.scm:1002 +#, fuzzy +msgid "" +"\n" +" --persistent for 'vm', make the root file system persistent" +msgstr "" +"\n" +" --share=SPEC cho “vm”, chia sẻ hệ thống tập tin chủ tuân theo SPEC" + +#: guix/scripts/system.scm:1004 msgid "" "\n" " --label=LABEL for 'image', label disk image with LABEL" msgstr "" -#: guix/scripts/system.scm:1003 guix/scripts/pack.scm:1340 +#: guix/scripts/system.scm:1006 guix/scripts/pack.scm:1340 msgid "" "\n" " --save-provenance save provenance information" msgstr "" -#: guix/scripts/system.scm:1005 +#: guix/scripts/system.scm:1008 #, fuzzy msgid "" "\n" @@ -4430,7 +4533,7 @@ msgstr "" "\n" " --share=SPEC cho “vm”, chia sẻ hệ thống tập tin chủ tuân theo SPEC" -#: guix/scripts/system.scm:1008 +#: guix/scripts/system.scm:1011 #, fuzzy msgid "" "\n" @@ -4440,13 +4543,13 @@ msgstr "" "\n" " --expose=SPEC cho “vm”, phơi bày hệ thống tập tin chủ tuân theo SPEC" -#: guix/scripts/system.scm:1011 +#: guix/scripts/system.scm:1014 msgid "" "\n" " -N, --network for 'container', allow containers to access the network" msgstr "" -#: guix/scripts/system.scm:1013 +#: guix/scripts/system.scm:1016 #, fuzzy msgid "" "\n" @@ -4458,7 +4561,7 @@ msgstr "" " -r, --root=TẬP-TIN tạo TẬP-TIN một liên kết mềm đến kết quả, và đăng ký nó\n" " như là bộ gom rác gốc" -#: guix/scripts/system.scm:1017 +#: guix/scripts/system.scm:1020 msgid "" "\n" " --full-boot for 'vm', make a full boot sequence" @@ -4466,76 +4569,76 @@ msgstr "" "\n" " --full-boot cho “vm”, tạo một chuỗi mồi đầy đủ" -#: guix/scripts/system.scm:1019 +#: guix/scripts/system.scm:1022 msgid "" "\n" " --no-graphic for 'vm', use the tty that we are started in for IO" msgstr "" -#: guix/scripts/system.scm:1021 +#: guix/scripts/system.scm:1024 msgid "" "\n" " --skip-checks skip file system and initrd module safety checks" msgstr "" -#: guix/scripts/system.scm:1028 +#: guix/scripts/system.scm:1031 msgid "" "\n" " --graph-backend=BACKEND\n" " use BACKEND for 'extension-graphs' and 'shepherd-graph'" msgstr "" -#: guix/scripts/system.scm:1180 +#: guix/scripts/system.scm:1187 #, fuzzy, scheme-format msgid "'~a' does not return an operating system or an image~%" msgstr "hồ sơ “~a” không tồn tại~%" -#: guix/scripts/system.scm:1204 guix/scripts/home.scm:216 +#: guix/scripts/system.scm:1211 guix/scripts/home.scm:230 #, scheme-format msgid "both file and expression cannot be specified~%" msgstr "" -#: guix/scripts/system.scm:1211 guix/scripts/home.scm:223 +#: guix/scripts/system.scm:1218 guix/scripts/home.scm:237 #, fuzzy, scheme-format msgid "no configuration specified~%" msgstr "chưa ghi rõ tập tin nhập cấu hình~%" -#: guix/scripts/system.scm:1319 guix/scripts/system.scm:1335 -#: guix/scripts/system.scm:1342 guix/scripts/system.scm:1348 -#: guix/scripts/home.scm:274 guix/scripts/home.scm:296 -#: guix/scripts/home.scm:301 guix/scripts/home.scm:307 -#: guix/scripts/home.scm:314 guix/scripts/import/gnu.scm:100 +#: guix/scripts/system.scm:1328 guix/scripts/system.scm:1344 +#: guix/scripts/system.scm:1351 guix/scripts/system.scm:1357 +#: guix/scripts/home.scm:287 guix/scripts/home.scm:309 +#: guix/scripts/home.scm:314 guix/scripts/home.scm:320 +#: guix/scripts/home.scm:327 guix/scripts/import/gnu.scm:100 #: guix/scripts/offload.scm:836 guix/scripts/offload.scm:848 #, scheme-format msgid "wrong number of arguments~%" msgstr "số lượng đối số không đúng~%" -#: guix/scripts/system.scm:1324 +#: guix/scripts/system.scm:1333 #, scheme-format msgid "no system generation, nothing to describe~%" msgstr "" -#: guix/scripts/system.scm:1367 guix/scripts/home.scm:337 +#: guix/scripts/system.scm:1376 guix/scripts/home.scm:350 #, scheme-format msgid "~a: unknown action~%" msgstr "~a: không hiểu thao tác~%" -#: guix/scripts/system.scm:1387 guix/scripts/home.scm:353 +#: guix/scripts/system.scm:1396 guix/scripts/home.scm:366 #, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "sai số lượng đối số cho thao tác “~a'~%" -#: guix/scripts/system.scm:1392 +#: guix/scripts/system.scm:1401 #, fuzzy, scheme-format msgid "guix system: missing command name~%" msgstr "guix: thiếu tên lệnh~%" -#: guix/scripts/system.scm:1394 +#: guix/scripts/system.scm:1403 #, fuzzy, scheme-format msgid "Try 'guix system --help' for more information.~%" msgstr "Chạy lệnh “guix --help” để biết thêm thông tin.~%" -#: guix/scripts/system/search.scm:93 guix/ui.scm:1541 guix/ui.scm:1559 +#: guix/scripts/system/search.scm:93 guix/ui.scm:1544 guix/ui.scm:1562 msgid "unknown" msgstr "không hiểu" @@ -4964,7 +5067,7 @@ msgstr "" " -h, --help hiển thị trợ giúp này rồi thoát" #: guix/scripts/graph.scm:548 guix/scripts/pack.scm:1325 -#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:502 +#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:797 #, fuzzy msgid "" "\n" @@ -5617,43 +5720,88 @@ msgstr "" "\n" " -f, --format=FMT ghi mã băm theo định dạng đã cho" -#: guix/scripts/deploy.scm:51 +#: guix/scripts/deploy.scm:54 msgid "" "Usage: guix deploy [OPTION] FILE...\n" "Perform the deployment specified by FILE.\n" msgstr "" -#: guix/scripts/deploy.scm:108 +#: guix/scripts/deploy.scm:63 +msgid "" +"\n" +" -x, --execute execute the following command on all the machines" +msgstr "" + +#: guix/scripts/deploy.scm:117 #, fuzzy, scheme-format msgid "The following ~d machine will be deployed:~%" msgid_plural "The following ~d machines will be deployed:~%" msgstr[0] "Gói sau đây sẽ bị gỡ bỏ:~%~{~a~%~}~%" -#: guix/scripts/deploy.scm:122 +#: guix/scripts/deploy.scm:131 #, fuzzy, scheme-format msgid "deploying to ~a...~%" msgstr "đang xóa ~a~%" -#: guix/scripts/deploy.scm:134 guix/scripts/deploy.scm:138 +#: guix/scripts/deploy.scm:143 guix/scripts/deploy.scm:147 #, fuzzy, scheme-format msgid "failed to deploy ~a: ~a~%" msgstr "gặp lỗi khi kết nối đến “~a”: ~a~%" -#: guix/scripts/deploy.scm:146 +#: guix/scripts/deploy.scm:155 #, fuzzy, scheme-format msgid "rolling back ~a...~%" msgstr "đang giải nén “~a”…~%" -#: guix/scripts/deploy.scm:152 +#: guix/scripts/deploy.scm:161 #, fuzzy, scheme-format msgid "successfully deployed ~a~%" msgstr "đã cập nhật ~a thành công được triển khai dưới “~a'~%" -#: guix/scripts/deploy.scm:167 +#: guix/scripts/deploy.scm:212 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command succeeded~%" +msgstr "guix: ~a: không tìm thấy lệnh~%" + +#: guix/scripts/deploy.scm:215 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command exited with code ~a~%" +msgstr "guix: ~a: không tìm thấy lệnh~%" + +#: guix/scripts/deploy.scm:218 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command stopped with signal ~a~%" +msgstr "guix: ~a: không tìm thấy lệnh~%" + +#: guix/scripts/deploy.scm:221 +#, scheme-format +msgid "~a: command terminated with signal ~a~%" +msgstr "" + +#: guix/scripts/deploy.scm:225 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "command output on ~a:~%" +msgstr "guix: ~a: không tìm thấy lệnh~%" + +#: guix/scripts/deploy.scm:246 #, scheme-format msgid "missing deployment file argument~%" msgstr "" +#: guix/scripts/deploy.scm:249 +#, scheme-format +msgid "'--' was used by '-x' was not specified~%" +msgstr "" + +#: guix/scripts/deploy.scm:271 +#, scheme-format +msgid "'-x' specified but no command given~%" +msgstr "" + #: guix/gexp.scm:465 #, scheme-format msgid "resolving '~a' relative to current directory~%" @@ -5747,73 +5895,73 @@ msgstr "" msgid "exec failed with status ~d~%" msgstr "" -#: guix/transformations.scm:185 guix/transformations.scm:253 +#: guix/transformations.scm:186 guix/transformations.scm:254 #, fuzzy, scheme-format msgid "invalid replacement specification: ~s" msgstr "đặc tả gói chưa rõ ràng “~a'~%" -#: guix/transformations.scm:234 +#: guix/transformations.scm:235 #, scheme-format msgid "the source of ~a is not a Git reference" msgstr "" -#: guix/transformations.scm:337 +#: guix/transformations.scm:338 #, scheme-format msgid "~a: invalid Git URL replacement specification" msgstr "" -#: guix/transformations.scm:415 +#: guix/transformations.scm:416 #, scheme-format msgid "~a: invalid toolchain replacement specification" msgstr "" -#: guix/transformations.scm:517 +#: guix/transformations.scm:518 #, fuzzy msgid "failed to determine which compiler is used" msgstr "gặp lỗi khi biên dịch hồ sơ trống rỗng~%" -#: guix/transformations.scm:523 +#: guix/transformations.scm:524 #, fuzzy, scheme-format msgid "failed to determine whether ~a supports ~a" msgstr "gặp lỗi khi biên dịch hồ sơ trống rỗng~%" -#: guix/transformations.scm:529 +#: guix/transformations.scm:530 #, scheme-format msgid "compiler ~a does not support micro-architecture ~a" msgstr "" -#: guix/transformations.scm:581 +#: guix/transformations.scm:582 #, fuzzy, scheme-format #| msgid "~a: ~a~%" msgid "tuning ~a for CPU ~a~%" msgstr "~a: ~a~%" -#: guix/transformations.scm:721 +#: guix/transformations.scm:722 #, fuzzy, scheme-format msgid "~a: invalid package patch specification" msgstr "~a: bộ kiểm tra không hợp lệ~%" -#: guix/transformations.scm:744 +#: guix/transformations.scm:745 #, scheme-format msgid "could not determine latest upstream release of '~a'~%" msgstr "" -#: guix/transformations.scm:752 +#: guix/transformations.scm:753 #, scheme-format msgid "cannot authenticate source of '~a', version ~a~%" msgstr "" -#: guix/transformations.scm:833 +#: guix/transformations.scm:840 #, scheme-format msgid "building for ~a instead of ~a, so tuning cannot be guessed~%" msgstr "" -#: guix/transformations.scm:859 +#: guix/transformations.scm:866 #, fuzzy, scheme-format msgid "Available package transformation options:~%" msgstr "Phê duyệt mô tả gói" -#: guix/transformations.scm:865 +#: guix/transformations.scm:872 #, fuzzy msgid "" "\n" @@ -5824,35 +5972,35 @@ msgstr "" " --with-source=MÃ_NGUỒN\n" " dùng mã nguồn khi biên dịch gói tương ứng" -#: guix/transformations.scm:868 +#: guix/transformations.scm:875 msgid "" "\n" " --with-input=PACKAGE=REPLACEMENT\n" " replace dependency PACKAGE by REPLACEMENT" msgstr "" -#: guix/transformations.scm:871 +#: guix/transformations.scm:878 msgid "" "\n" " --with-graft=PACKAGE=REPLACEMENT\n" " graft REPLACEMENT on packages that refer to PACKAGE" msgstr "" -#: guix/transformations.scm:874 +#: guix/transformations.scm:881 msgid "" "\n" " --with-branch=PACKAGE=BRANCH\n" " build PACKAGE from the latest commit of BRANCH" msgstr "" -#: guix/transformations.scm:877 +#: guix/transformations.scm:884 msgid "" "\n" " --with-commit=PACKAGE=COMMIT\n" " build PACKAGE from COMMIT" msgstr "" -#: guix/transformations.scm:880 +#: guix/transformations.scm:887 #, fuzzy msgid "" "\n" @@ -5863,7 +6011,7 @@ msgstr "" " --with-source=MÃ_NGUỒN\n" " dùng mã nguồn khi biên dịch gói tương ứng" -#: guix/transformations.scm:883 +#: guix/transformations.scm:890 #, fuzzy msgid "" "\n" @@ -5874,7 +6022,7 @@ msgstr "" " --with-source=MÃ_NGUỒN\n" " dùng mã nguồn khi biên dịch gói tương ứng" -#: guix/transformations.scm:886 +#: guix/transformations.scm:893 #, fuzzy msgid "" "\n" @@ -5885,21 +6033,21 @@ msgstr "" " --with-source=MÃ_NGUỒN\n" " dùng mã nguồn khi biên dịch gói tương ứng" -#: guix/transformations.scm:889 +#: guix/transformations.scm:896 msgid "" "\n" " --with-c-toolchain=PACKAGE=TOOLCHAIN\n" " build PACKAGE and its dependents with TOOLCHAIN" msgstr "" -#: guix/transformations.scm:892 +#: guix/transformations.scm:899 msgid "" "\n" " --with-debug-info=PACKAGE\n" " build PACKAGE and preserve its debug info" msgstr "" -#: guix/transformations.scm:895 +#: guix/transformations.scm:902 #, fuzzy msgid "" "\n" @@ -5910,13 +6058,13 @@ msgstr "" " --with-source=MÃ_NGUỒN\n" " dùng mã nguồn khi biên dịch gói tương ứng" -#: guix/transformations.scm:901 +#: guix/transformations.scm:908 msgid "" "\n" " --help-transform list package transformation options not shown here" msgstr "" -#: guix/transformations.scm:950 +#: guix/transformations.scm:957 #, scheme-format msgid "transformation '~a' had no effect on ~a~%" msgstr "" @@ -6397,12 +6545,12 @@ msgstr[0] "Gói sau đây sẽ được cài đặt:~%~{~a~%~}~%" msgid "~a: invalid Texinfo markup~%" msgstr "~a: số không hợp lệ~%" -#: guix/ui.scm:1873 +#: guix/ui.scm:1876 #, scheme-format msgid "invalid syntax: ~a~%" msgstr "cú pháp không hợp lệ: ~a~%" -#: guix/ui.scm:1882 +#: guix/ui.scm:1885 #, scheme-format msgid "Generation ~a\t~a" msgstr "Tạo ~a\t~a" @@ -6412,7 +6560,7 @@ msgstr "Tạo ~a\t~a" #. usual way of presenting dates in your locale. #. See https://www.gnu.org/software/guile/manual/html_node/SRFI_002d19-Date-to-string.html #. for details. -#: guix/ui.scm:1892 +#: guix/ui.scm:1895 #, scheme-format msgid "~b ~d ~Y ~T" msgstr "" @@ -6420,37 +6568,37 @@ msgstr "" #. TRANSLATORS: The word "current" here is an adjective for #. "Generation", as in "current generation". Use the appropriate #. gender where applicable. -#: guix/ui.scm:1898 +#: guix/ui.scm:1901 #, scheme-format msgid "~a\t(current)~%" msgstr "~a\t(hiện tại)~%" -#: guix/ui.scm:1932 +#: guix/ui.scm:1935 #, fuzzy, scheme-format msgid "cannot lock profile ~a: ~a~%" msgstr "không thể truy cập “~a”: ~a~%" -#: guix/ui.scm:1934 +#: guix/ui.scm:1937 #, fuzzy, scheme-format msgid "profile ~a is locked by another process~%" msgstr "hồ sơ “~a” không tồn tại~%" -#: guix/ui.scm:1963 +#: guix/ui.scm:1966 #, fuzzy, scheme-format msgid "switched from generation ~a to ~a~%" msgstr "chuyển từ thế hệ ~a sang ~a~%" -#: guix/ui.scm:1979 +#: guix/ui.scm:1982 #, scheme-format msgid "deleting ~a~%" msgstr "đang xóa ~a~%" -#: guix/ui.scm:2010 +#: guix/ui.scm:2013 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "Chạy lệnh “guix --help” để biết thêm thông tin.~%" -#: guix/ui.scm:2102 +#: guix/ui.scm:2105 #, fuzzy #| msgid "" #| "Usage: guix COMMAND ARGS...\n" @@ -6462,7 +6610,7 @@ msgstr "" "Cách dùng: guix LỆNH ĐỐI_SỐ…\n" "Chạy LỆNH với các ĐỐI SỐ.\n" -#: guix/ui.scm:2105 +#: guix/ui.scm:2108 #, fuzzy #| msgid "" #| "\n" @@ -6474,7 +6622,7 @@ msgstr "" "\n" " -h, --help hiển thị trợ giúp này rồi thoát" -#: guix/ui.scm:2107 +#: guix/ui.scm:2110 #, fuzzy #| msgid "" #| "\n" @@ -6486,26 +6634,26 @@ msgstr "" "\n" " -V, --version hiển thị thông tin phiên bản rồi thoát" -#: guix/ui.scm:2112 +#: guix/ui.scm:2115 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "LỆNH phải là một trong số những câu lệnh con được liệt kê dưới đây:\n" -#: guix/ui.scm:2154 +#: guix/ui.scm:2157 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "guix: ~a: không tìm thấy lệnh~%" -#: guix/ui.scm:2156 +#: guix/ui.scm:2159 #, scheme-format msgid "Did you mean @code{~a}?" msgstr "" -#: guix/ui.scm:2190 +#: guix/ui.scm:2193 #, scheme-format msgid "guix: missing command name~%" msgstr "guix: thiếu tên lệnh~%" -#: guix/ui.scm:2198 +#: guix/ui.scm:2201 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "guix: tùy chọn không được thừa nhận “~a'~%" @@ -6831,22 +6979,22 @@ msgstr "" msgid "unsupported manifest format" msgstr "định dạng băm không được hỗ trợ: ~a~%" -#: guix/profiles.scm:2242 +#: guix/profiles.scm:2247 #, fuzzy, scheme-format msgid "while creating directory `~a': ~a" msgstr "lỗi: trong khi tạo thư mục “~a”: ~a~%" -#: guix/profiles.scm:2247 +#: guix/profiles.scm:2252 #, fuzzy, scheme-format msgid "Please create the @file{~a} directory, with you as the owner." msgstr "Hãy tạo thư mục “~a”, với bạn là chủ sở hữu.~%" -#: guix/profiles.scm:2256 +#: guix/profiles.scm:2261 #, fuzzy, scheme-format msgid "directory `~a' is not owned by you" msgstr "lỗi: thư mục “~a” không được sở hữu bởi bạn~%" -#: guix/profiles.scm:2260 +#: guix/profiles.scm:2265 #, fuzzy, scheme-format msgid "Please change the owner of @file{~a} to user ~s." msgstr "Vui lòng đổi chủ sở hữu của “~a” thành ~s.~%" @@ -7497,11 +7645,16 @@ msgstr "" msgid "'--profile' cannot be used with package options~%" msgstr "" -#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:275 +#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:261 #, scheme-format msgid "no packages specified; creating an empty environment~%" msgstr "" +#: guix/scripts/environment.scm:979 +#, scheme-format +msgid "'--check' is unnecessary when using '--container'; doing nothing~%" +msgstr "" + #: guix/scripts/home/import.scm:179 msgid "" ";; This \"home-environment\" file can be passed to 'guix home reconfigure'\n" @@ -7511,7 +7664,7 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/home.scm:65 +#: guix/scripts/home.scm:66 #, fuzzy msgid "" "Usage: guix home [OPTION ...] ACTION [ARG ...] [FILE]\n" @@ -7521,50 +7674,50 @@ msgstr "" "Cách dùng: guix system [TÙY-CHỌN] THAO-TÁC TẬP-TIN\n" "biên dịch hệ điều hành khai báo trong TẬP-TIN tuân theo THAO-TÁC.\n" -#: guix/scripts/home.scm:71 +#: guix/scripts/home.scm:72 #, fuzzy msgid " search search for existing service types\n" msgstr "" "\n" " --search-paths hiển thị các định nghĩa biến môi trường cần thiết" -#: guix/scripts/home.scm:73 +#: guix/scripts/home.scm:74 #, fuzzy msgid " reconfigure switch to a new home environment configuration\n" msgstr " - “reconfigure”, chuyển thành cấu hình hệ điều hành mới\n" -#: guix/scripts/home.scm:75 +#: guix/scripts/home.scm:76 #, fuzzy msgid " roll-back switch to the previous home environment configuration\n" msgstr " - “reconfigure”, chuyển thành cấu hình hệ điều hành mới\n" -#: guix/scripts/home.scm:77 +#: guix/scripts/home.scm:78 msgid " describe describe the current home environment\n" msgstr "" -#: guix/scripts/home.scm:79 +#: guix/scripts/home.scm:80 msgid " list-generations list the home environment generations\n" msgstr "" -#: guix/scripts/home.scm:81 +#: guix/scripts/home.scm:82 #, fuzzy msgid " switch-generation switch to an existing home environment configuration\n" msgstr " - “reconfigure”, chuyển thành cấu hình hệ điều hành mới\n" -#: guix/scripts/home.scm:83 +#: guix/scripts/home.scm:84 msgid " delete-generations delete old home environment generations\n" msgstr "" -#: guix/scripts/home.scm:85 +#: guix/scripts/home.scm:86 #, fuzzy msgid " build build the home environment without installing anything\n" msgstr " - “build”, biên dịch hệ điều hành mà không cài gì\n" -#: guix/scripts/home.scm:87 +#: guix/scripts/home.scm:88 msgid " import generates a home environment definition from dotfiles\n" msgstr "" -#: guix/scripts/home.scm:91 +#: guix/scripts/home.scm:92 #, fuzzy msgid "" "\n" @@ -7574,41 +7727,41 @@ msgstr "" "\n" " -e, --expression=BTHỨC biên dịch gói hay tìm nguồn gốc BTHỨC lượng giá cho" -#: guix/scripts/home.scm:196 +#: guix/scripts/home.scm:210 #, fuzzy, scheme-format msgid "'~a' does not return a home environment ~%" msgstr "hồ sơ “~a” không tồn tại~%" -#: guix/scripts/home.scm:280 +#: guix/scripts/home.scm:293 #, scheme-format msgid "'~a' populated with all the Home configuration files~%" msgstr "" -#: guix/scripts/home.scm:282 +#: guix/scripts/home.scm:295 #, scheme-format msgid "" "Run @command{guix home reconfigure ~a/home-configuration.scm} to effectively\n" "deploy the home environment described by these files.\n" msgstr "" -#: guix/scripts/home.scm:289 +#: guix/scripts/home.scm:302 #, scheme-format msgid "no home environment generation, nothing to describe~%" msgstr "" -#: guix/scripts/home.scm:358 +#: guix/scripts/home.scm:371 #, fuzzy, scheme-format #| msgid "guix: missing command name~%" msgid "guix home: missing command name~%" msgstr "guix: thiếu tên lệnh~%" -#: guix/scripts/home.scm:360 +#: guix/scripts/home.scm:373 #, fuzzy, scheme-format #| msgid "Try `guix --help' for more information.~%" msgid "Try 'guix home --help' for more information.~%" msgstr "Chạy lệnh “guix --help” để biết thêm thông tin.~%" -#: guix/scripts/home.scm:528 +#: guix/scripts/home.scm:541 #, fuzzy, scheme-format msgid "cannot switch to home environment generation '~a'~%" msgstr "không thể chuyển đến thế hệ “~a'~%" @@ -7648,7 +7801,7 @@ msgstr "" #: guix/scripts/import/cpan.scm:83 guix/scripts/import/crate.scm:97 #: guix/scripts/import/egg.scm:100 guix/scripts/import/gem.scm:98 -#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:100 +#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:101 #, fuzzy, scheme-format msgid "failed to download meta-data for package '~a'~%" msgstr "gặp lỗi khi tải về cập nhật mới nhất của mã nguồn, đang thoát\n" @@ -7723,7 +7876,7 @@ msgid "" " --pin-versions use the exact versions of a module's dependencies" msgstr "" -#: guix/scripts/import/go.scm:117 +#: guix/scripts/import/go.scm:118 #, fuzzy, scheme-format msgid "failed to download meta-data for module '~a'.~%" msgstr "gặp lỗi khi tải về cập nhật mới nhất của mã nguồn, đang thoát\n" @@ -7856,6 +8009,11 @@ msgid "" "Import and convert the Texlive package for PACKAGE-NAME.\n" msgstr "" +#: guix/scripts/import/texlive.scm:84 +#, fuzzy, scheme-format +msgid "failed to import package '~a'~%" +msgstr "gặp lỗi khi tải tập tin hệ điều hành “~a”:~%" + #: guix/scripts/offload.scm:130 #, scheme-format msgid "The 'system' field is deprecated, please use 'systems' instead.~%" @@ -8302,14 +8460,14 @@ msgstr "" msgid "~a: unknown type of REPL~%" msgstr "~a: không hiểu thao tác~%" -#: guix/scripts/shell.scm:46 +#: guix/scripts/shell.scm:48 msgid "" "Usage: guix shell [OPTION] PACKAGES... [-- COMMAND...]\n" "Build an environment that includes PACKAGES and execute COMMAND or an\n" "interactive shell in that environment.\n" msgstr "" -#: guix/scripts/shell.scm:52 +#: guix/scripts/shell.scm:54 #, fuzzy #| msgid "" #| "\n" @@ -8321,7 +8479,7 @@ msgstr "" "\n" " -d, --derivations trả về các đường dẫn nguồn gốc của các gói đã cho" -#: guix/scripts/shell.scm:54 +#: guix/scripts/shell.scm:56 #, fuzzy msgid "" "\n" @@ -8331,35 +8489,35 @@ msgstr "" " -r, --root=TẬP-TIN tạo TẬP-TIN một liên kết mềm đến kết quả, và đăng ký nó\n" " như là bộ gom rác gốc" -#: guix/scripts/shell.scm:56 +#: guix/scripts/shell.scm:58 msgid "" "\n" " -q inhibit loading of 'guix.scm' and 'manifest.scm'" msgstr "" -#: guix/scripts/shell.scm:58 +#: guix/scripts/shell.scm:60 msgid "" "\n" " --rebuild-cache rebuild cached environment, if any" msgstr "" -#: guix/scripts/shell.scm:199 +#: guix/scripts/shell.scm:201 #, fuzzy, scheme-format msgid "ignoring invalid file name: '~a'~%" msgstr "số không hợp lệ: ~a~%" -#: guix/scripts/shell.scm:280 +#: guix/scripts/shell.scm:266 #, fuzzy, scheme-format #| msgid "following redirection to `~a'...~%" msgid "loading environment from '~a'...~%" msgstr "đang cho chuyển hướng sang “~a”…~%" -#: guix/scripts/shell.scm:286 +#: guix/scripts/shell.scm:272 #, scheme-format msgid "not loading '~a' because not authorized to do so~%" msgstr "" -#: guix/scripts/shell.scm:288 +#: guix/scripts/shell.scm:274 #, scheme-format msgid "" "To allow automatic loading of\n" @@ -8371,48 +8529,59 @@ msgid "" "@end example\n" msgstr "" -#: guix/scripts/shell.scm:386 +#: guix/scripts/shell.scm:431 msgid "" "Consider passing the @option{--check} option once\n" "to make sure your shell does not clobber environment variables." msgstr "" -#: guix/scripts/style.scm:241 +#: guix/scripts/style.scm:499 #, fuzzy, scheme-format msgid "~a: complex expression, bailing out~%" msgstr "chữ ký không phải là một biểu thức s hợp lệ: ~s~%" -#: guix/scripts/style.scm:259 +#: guix/scripts/style.scm:517 #, scheme-format msgid "~a: input label '~a' does not match package name, bailing out~%" msgstr "" -#: guix/scripts/style.scm:264 +#: guix/scripts/style.scm:522 #, scheme-format msgid "~a: non-trivial input, bailing out~%" msgstr "" -#: guix/scripts/style.scm:288 +#: guix/scripts/style.scm:546 #, fuzzy, scheme-format msgid "~a: input expression is too short~%" msgstr "chữ ký không phải là một biểu thức s hợp lệ: ~s~%" -#: guix/scripts/style.scm:380 +#: guix/scripts/style.scm:638 #, fuzzy, scheme-format msgid "~a: unsupported input style, bailing out~%" msgstr "định dạng băm không được hỗ trợ: ~a~%" -#: guix/scripts/style.scm:392 +#: guix/scripts/style.scm:650 #, scheme-format msgid "would be edited~%" msgstr "" -#: guix/scripts/style.scm:482 +#: guix/scripts/style.scm:721 +#, fuzzy, scheme-format +msgid "no definition location for package ~a~%" +msgstr "gặp lỗi khi tải tập tin hệ điều hành “~a”:~%" + +#: guix/scripts/style.scm:767 +#, fuzzy, scheme-format +#| msgid "~a: unknown action~%" +msgid "~a: unknown styling~%" +msgstr "~a: không hiểu thao tác~%" + +#: guix/scripts/style.scm:774 #, fuzzy, scheme-format msgid "~a: invalid input simplification policy~%" msgstr "thẻ bài liên kết mềm không hợp lệ" -#: guix/scripts/style.scm:496 +#: guix/scripts/style.scm:788 #, fuzzy msgid "" "Usage: guix style [OPTION]... [PACKAGE]...\n" @@ -8421,7 +8590,13 @@ msgstr "" "Cách dùng: guix gc [TÙY-CHỌN]… ĐƯỜNG-DẪN…\n" "Gọi bộ xử lý rác.\n" -#: guix/scripts/style.scm:498 +#: guix/scripts/style.scm:790 +msgid "" +"\n" +" -S, --styling=RULE apply RULE, a styling rule" +msgstr "" + +#: guix/scripts/style.scm:793 #, fuzzy #| msgid "" #| "\n" @@ -8433,7 +8608,7 @@ msgstr "" "\n" " -n, --dry-run hiển thị những gì được làm nhưng không thực hiện thật" -#: guix/scripts/style.scm:504 +#: guix/scripts/style.scm:799 msgid "" "\n" " --input-simplification=POLICY\n" @@ -8593,6 +8768,12 @@ msgstr "" msgid "produce debugging output" msgstr "" +#, fuzzy +#~ msgid "" +#~ "Failed to import package ~s.\n" +#~ "reason: ~s.~%" +#~ msgstr "gặp lỗi khi đăng ký “~a” dưới ~a~%" + #, fuzzy #~ msgid "Package not found in opam repository: ~a~%" #~ msgstr "~A: gói không tìm thấy cho phiên bản ~a~%" @@ -8610,9 +8791,6 @@ msgstr "" #~ msgid "failed to register '~a' under '~a'~%" #~ msgstr "gặp lỗi khi đăng ký “~a” dưới ~a~%" -#~ msgid "~a: note: using ~a but ~a is available upstream~%" -#~ msgstr "~a: ghi chú: dùng ~a nhưng ~a thì sẵn có trên thượng nguồn~%" - #~ msgid "system locale lacks a definition" #~ msgstr "miền địa phương hệ thống thiếu một định nghĩa" diff --git a/po/guix/zh_CN.po b/po/guix/zh_CN.po index 79df8e83d6..d9ba07642f 100644 --- a/po/guix/zh_CN.po +++ b/po/guix/zh_CN.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: guix 0.14.0\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" "PO-Revision-Date: 2021-08-28 14:43+0000\n" "Last-Translator: Went He <1437061699@qq.com>\n" "Language-Team: Chinese (Simplified) \n" @@ -56,37 +56,37 @@ msgstr "" msgid "Try adding @code{(use-service-modules ~a)}." msgstr "尝试添加 @code{(use-service-modules ~a)}。" -#: gnu/packages.scm:96 +#: gnu/packages.scm:97 #, scheme-format msgid "~a: patch not found" msgstr "~a: 未找到补丁" -#: gnu/packages.scm:480 gnu/packages.scm:521 +#: gnu/packages.scm:481 gnu/packages.scm:522 #, scheme-format msgid "ambiguous package specification `~a'~%" msgstr "含糊的软件包规范 `~a'~%" -#: gnu/packages.scm:481 gnu/packages.scm:522 +#: gnu/packages.scm:482 gnu/packages.scm:523 #, scheme-format msgid "choosing ~a@~a from ~a~%" msgstr "从 ~a~% 选择 ~a@~a" -#: gnu/packages.scm:486 guix/scripts/package.scm:216 +#: gnu/packages.scm:487 guix/scripts/package.scm:218 #, fuzzy, scheme-format msgid "package '~a' has been superseded by '~a'~%" msgstr "包 `~a' 缺乏输出 `~a'~%" -#: gnu/packages.scm:493 gnu/packages.scm:510 +#: gnu/packages.scm:494 gnu/packages.scm:511 #, scheme-format msgid "~A: package not found for version ~a~%" msgstr "~A: 无法找到供版本 ~a~% 的软件包" -#: gnu/packages.scm:494 gnu/packages.scm:511 +#: gnu/packages.scm:495 gnu/packages.scm:512 #, scheme-format msgid "~A: unknown package~%" msgstr "~A: 未知包~%" -#: gnu/packages.scm:550 +#: gnu/packages.scm:551 #, scheme-format msgid "package `~a' lacks output `~a'~%" msgstr "包 `~a' 缺乏输出 `~a'~%" @@ -274,14 +274,14 @@ msgid "" "@code{SIGKILL}." msgstr "" -#: gnu/home/services.scm:127 +#: gnu/home/services.scm:128 msgid "" "Build the home environment top-level directory,\n" "which in turn refers to everything the home environment needs: its\n" "packages, configuration files, activation script, and so on." msgstr "" -#: gnu/home/services.scm:158 +#: gnu/home/services.scm:159 #, scheme-format msgid "" "This is the @dfn{home profile} and can be found in\n" @@ -290,21 +290,21 @@ msgid "" "@code{home-environment} record." msgstr "" -#: gnu/home/services.scm:180 +#: gnu/home/services.scm:181 #, scheme-format msgid "duplicate definition for `~a' environment variable ~%" msgstr "" -#: gnu/home/services.scm:242 +#: gnu/home/services.scm:243 msgid "Set the environment variables." msgstr "" -#: gnu/home/services.scm:253 +#: gnu/home/services.scm:254 #, scheme-format msgid "duplicate '~a' entry for files/" msgstr "" -#: gnu/home/services.scm:277 +#: gnu/home/services.scm:278 #, scheme-format msgid "" "Configuration files for programs that\n" @@ -313,7 +313,7 @@ msgstr "" #. TRANSLATORS: 'on-first-login' is the name of a service and #. shouldn't be translated -#: gnu/home/services.scm:308 +#: gnu/home/services.scm:309 msgid "" "XDG_RUNTIME_DIR doesn't exists, on-first-login script\n" "won't execute anything. You can check if xdg runtime directory exists,\n" @@ -321,13 +321,13 @@ msgid "" "script by running '$HOME/.guix-home/on-first-login'" msgstr "" -#: gnu/home/services.scm:328 +#: gnu/home/services.scm:329 msgid "" "Run gexps on first user login. Can be\n" "extended with one gexp." msgstr "" -#: gnu/home/services.scm:391 +#: gnu/home/services.scm:392 msgid "" "Run gexps to activate the current\n" "generation of home environment and update the state of the home\n" @@ -336,33 +336,33 @@ msgid "" "with one gexp, but many times, and all gexps must be idempotent." msgstr "" -#: gnu/home/services.scm:472 +#: gnu/home/services.scm:473 #, scheme-format msgid "" "Comparing ~a and\n" "~10t~a..." msgstr "" -#: gnu/home/services.scm:474 +#: gnu/home/services.scm:475 #, scheme-format msgid " done (~a)\n" msgstr "" #. TRANSLATORS: 'on-change' is the name of a service type, it #. probably shouldn't be translated. -#: gnu/home/services.scm:483 +#: gnu/home/services.scm:484 msgid "" "Evaluating on-change gexps.\n" "\n" msgstr "" -#: gnu/home/services.scm:485 +#: gnu/home/services.scm:486 msgid "" "On-change gexps evaluation finished.\n" "\n" msgstr "" -#: gnu/home/services.scm:499 +#: gnu/home/services.scm:500 msgid "" "G-expressions to run if the specified files have changed since the\n" "last generation. The extension should be a list of lists where the\n" @@ -370,7 +370,7 @@ msgid "" "changed, and the second element is the G-expression to be evaluated." msgstr "" -#: gnu/home/services.scm:519 +#: gnu/home/services.scm:520 msgid "" "Store provenance information about the home environment in the home\n" "environment itself: the channels used when building the home\n" @@ -625,12 +625,12 @@ msgstr "" msgid "Updater for ELPA packages" msgstr "" -#: guix/import/github.scm:170 +#: guix/import/github.scm:175 #, scheme-format msgid "~a is unreachable (~a)~%" msgstr "" -#: guix/import/github.scm:260 +#: guix/import/github.scm:274 msgid "Updater for GitHub packages" msgstr "" @@ -667,12 +667,23 @@ msgstr "~A: 无法找到供版本 ~a~% 的软件包" msgid "failed to determine latest release of GNU ~a" msgstr "" -#: guix/import/go.scm:569 +#: guix/import/go.scm:571 #, scheme-format msgid "unsupported vcs type '~a' for package '~a'" msgstr "" -#: guix/import/go.scm:647 +#: guix/import/go.scm:594 +#, fuzzy, scheme-format +#| msgid "~a: note: using ~a but ~a is available upstream~%" +msgid "version ~a of ~a is not available~%" +msgstr "~a: 注意: 使用 ~a 但 ~a 在上游可用~%" + +#: guix/import/go.scm:597 +#, scheme-format +msgid "Pick one of the following available versions:~{ ~a~}." +msgstr "" + +#: guix/import/go.scm:671 #, scheme-format msgid "" "Failed to import package ~s.\n" @@ -680,13 +691,6 @@ msgid "" "This package and its dependencies won't be imported.~%" msgstr "" -#: guix/import/go.scm:656 -#, fuzzy, scheme-format -msgid "" -"Failed to import package ~s.\n" -"reason: ~s.~%" -msgstr "连接到 `~a' 失败:~a~%" - #: guix/import/minetest.scm:178 #, scheme-format msgid "In ~a: author names must consist of at least a single character.~%" @@ -781,77 +785,99 @@ msgstr "包 `~a' 缺乏输出 `~a'~%" msgid "Updater for OPAM packages" msgstr "" -#: guix/import/pypi.scm:230 +#: guix/import/pypi.scm:233 msgid "Could not extract requirement name in spec:" msgstr "" -#: guix/import/pypi.scm:290 +#: guix/import/pypi.scm:293 #, scheme-format msgid "parse-requires.txt reached an unexpected condition on line ~a~%" msgstr "" -#: guix/import/pypi.scm:356 +#: guix/import/pypi.scm:359 #, fuzzy, scheme-format msgid "Failed to extract file: ~a from wheel.~%" msgstr "连接到 `~a' 失败:~a~%" -#: guix/import/pypi.scm:385 +#: guix/import/pypi.scm:388 #, scheme-format msgid "Cannot guess requirements from source archive: no requires.txt file found.~%" msgstr "" -#: guix/import/pypi.scm:390 +#: guix/import/pypi.scm:393 #, scheme-format msgid "Unsupported archive format; cannot determine package dependencies from source archive: ~a~%" msgstr "" -#: guix/import/pypi.scm:489 +#: guix/import/pypi.scm:434 +#, scheme-format +msgid "project name ~a does not appear verbatim in the PyPI URI~%" +msgstr "" + +#: guix/import/pypi.scm:437 +#, scheme-format +msgid "" +"The PyPI URI is: @url{~a}. You should review the\n" +"pypi-uri declaration in the generated package. You may need to replace ~s with\n" +"a substring of the PyPI URI that identifies the package." +msgstr "" + +#: guix/import/pypi.scm:505 #, scheme-format msgid "no source release for pypi package ~a ~a~%" msgstr "" -#: guix/import/pypi.scm:554 +#: guix/import/pypi.scm:509 +#, scheme-format +msgid "" +"This indicates that the\n" +"package is available on PyPI, but only as a \"wheel\" containing binaries, not\n" +"source. To build it from source, refer to the upstream repository at\n" +"@uref{~a}." +msgstr "" + +#: guix/import/pypi.scm:579 msgid "Updater for PyPI packages" msgstr "" -#: gnu/installer.scm:214 +#: gnu/installer.scm:217 msgid "Locale" msgstr "区域设置" -#: gnu/installer.scm:230 gnu/installer/newt/timezone.scm:58 +#: gnu/installer.scm:233 gnu/installer/newt/timezone.scm:58 msgid "Timezone" msgstr "时区" -#: gnu/installer.scm:247 +#: gnu/installer.scm:250 msgid "Keyboard mapping selection" msgstr "" -#: gnu/installer.scm:256 gnu/installer/newt/hostname.scm:26 +#: gnu/installer.scm:259 gnu/installer/newt/hostname.scm:26 msgid "Hostname" msgstr "主机名" -#: gnu/installer.scm:265 +#: gnu/installer.scm:268 msgid "Network selection" msgstr "选择网络" -#: gnu/installer.scm:272 +#: gnu/installer.scm:275 msgid "Substitute server discovery" msgstr "" -#: gnu/installer.scm:279 gnu/installer/newt/user.scm:68 -#: gnu/installer/newt/user.scm:205 +#: gnu/installer.scm:282 gnu/installer/newt/user.scm:67 +#: gnu/installer/newt/user.scm:204 msgid "User creation" msgstr "创建用户" -#: gnu/installer.scm:287 +#: gnu/installer.scm:290 msgid "Services" msgstr "服务" -#: gnu/installer.scm:298 +#: gnu/installer.scm:301 msgid "Partitioning" msgstr "分区" -#: gnu/installer.scm:305 gnu/installer/newt/final.scm:53 +#: gnu/installer.scm:308 gnu/installer/newt/final.scm:53 msgid "Configuration file" msgstr "配置文件" @@ -863,19 +889,80 @@ msgstr "" msgid "Unable to find expected regexp." msgstr "" -#: gnu/installer/newt.scm:52 +#: gnu/installer/newt.scm:58 msgid "Press for installation parameters." msgstr "" -#: gnu/installer/newt.scm:65 -#, scheme-format -msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. Please report it by email to <~a>." +#: gnu/installer/newt.scm:68 +msgid "The installer has encountered an unexpected problem. The backtrace is displayed below. You may choose to exit or create a dump archive." msgstr "" -#: gnu/installer/newt.scm:68 +#: gnu/installer/newt.scm:71 msgid "Unexpected problem" msgstr "" +#: gnu/installer/newt.scm:75 +msgid "Dump" +msgstr "" + +#: gnu/installer/newt.scm:76 gnu/installer/newt/ethernet.scm:79 +#: gnu/installer/newt/keymap.scm:56 gnu/installer/newt/locale.scm:43 +#: gnu/installer/newt/network.scm:65 gnu/installer/newt/network.scm:82 +#: gnu/installer/newt/page.scm:315 gnu/installer/newt/page.scm:679 +#: gnu/installer/newt/page.scm:763 gnu/installer/newt/page.scm:828 +#: gnu/installer/newt/partition.scm:54 gnu/installer/newt/partition.scm:90 +#: gnu/installer/newt/partition.scm:125 gnu/installer/newt/partition.scm:140 +#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 +#: gnu/installer/newt/partition.scm:706 gnu/installer/newt/partition.scm:764 +#: gnu/installer/newt/partition.scm:775 gnu/installer/newt/services.scm:124 +#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/wifi.scm:206 +msgid "Exit" +msgstr "退出" + +#: gnu/installer/newt.scm:82 +#, scheme-format +msgid "The dump archive was created as ~a. Would you like to send this archive to the Guix servers?" +msgstr "" + +#: gnu/installer/newt.scm:84 +msgid "Dump archive created" +msgstr "" + +#: gnu/installer/newt.scm:88 +#, scheme-format +msgid "The dump was uploaded as ~a. Please report it by email to ~a." +msgstr "" + +#: gnu/installer/newt.scm:90 +#, fuzzy +#| msgid "some services could not be upgraded~%" +msgid "The dump could not be uploaded." +msgstr "有些服务无法升级~%" + +#: gnu/installer/newt.scm:93 +msgid "Dump upload result" +msgstr "" + +#: gnu/installer/newt.scm:132 +#, scheme-format +msgid "External command ~s exited with code ~a" +msgstr "" + +#: gnu/installer/newt.scm:135 +#, scheme-format +msgid "External command ~s terminated by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:138 +#, scheme-format +msgid "External command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/newt.scm:140 +msgid "External command error" +msgstr "" + #: gnu/installer/newt/ethernet.scm:66 msgid "No ethernet service available, please try again." msgstr "" @@ -884,59 +971,45 @@ msgstr "" msgid "No service" msgstr "" -#: gnu/installer/newt/ethernet.scm:76 +#: gnu/installer/newt/ethernet.scm:74 msgid "Please select an ethernet network." msgstr "" -#: gnu/installer/newt/ethernet.scm:77 +#: gnu/installer/newt/ethernet.scm:75 msgid "Ethernet connection" msgstr "" -#: gnu/installer/newt/ethernet.scm:81 gnu/installer/newt/keymap.scm:56 -#: gnu/installer/newt/locale.scm:43 gnu/installer/newt/network.scm:63 -#: gnu/installer/newt/network.scm:84 gnu/installer/newt/page.scm:309 -#: gnu/installer/newt/page.scm:673 gnu/installer/newt/page.scm:758 -#: gnu/installer/newt/partition.scm:56 gnu/installer/newt/partition.scm:91 -#: gnu/installer/newt/partition.scm:126 gnu/installer/newt/partition.scm:141 -#: gnu/installer/newt/partition.scm:638 gnu/installer/newt/partition.scm:661 -#: gnu/installer/newt/partition.scm:707 gnu/installer/newt/partition.scm:765 -#: gnu/installer/newt/partition.scm:776 gnu/installer/newt/services.scm:130 -#: gnu/installer/newt/timezone.scm:63 gnu/installer/newt/user.scm:204 -#: gnu/installer/newt/wifi.scm:206 -msgid "Exit" -msgstr "退出" - #: gnu/installer/newt/final.scm:46 #, scheme-format msgid "We're now ready to proceed with the installation! A system configuration file has been generated, it is displayed below. This file will be available as '~a' on the installed system. The new system will be created from this file once you've pressed OK. This will take a few minutes." msgstr "" -#: gnu/installer/newt/final.scm:70 +#: gnu/installer/newt/final.scm:68 msgid "Installation complete" msgstr "安装完成" -#: gnu/installer/newt/final.scm:71 gnu/installer/newt/parameters.scm:45 +#: gnu/installer/newt/final.scm:69 gnu/installer/newt/parameters.scm:45 #: gnu/installer/newt/welcome.scm:145 msgid "Reboot" msgstr "重启" -#: gnu/installer/newt/final.scm:72 +#: gnu/installer/newt/final.scm:70 msgid "Congratulations! Installation is now complete. You may remove the device containing the installation image and press the button to reboot." msgstr "" -#: gnu/installer/newt/final.scm:86 +#: gnu/installer/newt/final.scm:84 msgid "Installation failed" msgstr "安装失败" -#: gnu/installer/newt/final.scm:87 +#: gnu/installer/newt/final.scm:85 msgid "Resume" msgstr "继续" -#: gnu/installer/newt/final.scm:88 +#: gnu/installer/newt/final.scm:86 msgid "Restart the installer" msgstr "" -#: gnu/installer/newt/final.scm:89 +#: gnu/installer/newt/final.scm:87 msgid "The final system installation step failed. You can resume from a specific step, or restart the installer." msgstr "" @@ -964,9 +1037,9 @@ msgstr "" msgid "Installation parameters" msgstr "" -#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:74 -#: gnu/installer/newt/locale.scm:63 gnu/installer/newt/locale.scm:78 -#: gnu/installer/newt/locale.scm:94 gnu/installer/newt/partition.scm:595 +#: gnu/installer/newt/parameters.scm:55 gnu/installer/newt/keymap.scm:72 +#: gnu/installer/newt/locale.scm:61 gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:88 gnu/installer/newt/partition.scm:594 #: gnu/installer/newt/timezone.scm:64 msgid "Back" msgstr "返回" @@ -987,16 +1060,16 @@ msgstr "" msgid "Please choose your keyboard layout. It will be used during the install process, and for the installed system. Non-Latin layouts can be toggled with Alt+Shift. You can switch to a different layout at any time from the parameters menu." msgstr "" -#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:62 -#: gnu/installer/newt/page.scm:308 +#: gnu/installer/newt/keymap.scm:55 gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/page.scm:314 msgid "Continue" msgstr "连续" -#: gnu/installer/newt/keymap.scm:67 +#: gnu/installer/newt/keymap.scm:65 msgid "Variant" msgstr "" -#: gnu/installer/newt/keymap.scm:70 +#: gnu/installer/newt/keymap.scm:68 msgid "Please choose a variant for your keyboard layout." msgstr "请选择一个键盘布局的变体。" @@ -1008,37 +1081,37 @@ msgstr "本地语言" msgid "Choose the language to use for the installation process and for the installed system." msgstr "" -#: gnu/installer/newt/locale.scm:57 +#: gnu/installer/newt/locale.scm:55 #, fuzzy msgid "Locale location" msgstr "<未知位置>" -#: gnu/installer/newt/locale.scm:60 +#: gnu/installer/newt/locale.scm:58 msgid "Choose a territory for this language." msgstr "为这种语言选择一个地域。" -#: gnu/installer/newt/locale.scm:71 +#: gnu/installer/newt/locale.scm:67 msgid "Locale codeset" msgstr "" -#: gnu/installer/newt/locale.scm:74 +#: gnu/installer/newt/locale.scm:70 msgid "Choose the locale encoding." msgstr "" -#: gnu/installer/newt/locale.scm:86 +#: gnu/installer/newt/locale.scm:80 msgid "Locale modifier" msgstr "" -#: gnu/installer/newt/locale.scm:89 +#: gnu/installer/newt/locale.scm:83 msgid "Choose your locale's modifier. The most frequent modifier is euro. It indicates that you want to use Euro as the currency symbol." msgstr "" -#: gnu/installer/newt/locale.scm:190 +#: gnu/installer/newt/locale.scm:181 #, fuzzy msgid "No location" msgstr "<未知位置>" -#: gnu/installer/newt/locale.scm:217 +#: gnu/installer/newt/locale.scm:208 msgid "No modifier" msgstr "" @@ -1054,330 +1127,334 @@ msgstr "" msgid "Abort" msgstr "" -#: gnu/installer/newt/network.scm:61 gnu/installer/newt/network.scm:80 +#: gnu/installer/newt/network.scm:63 gnu/installer/newt/network.scm:78 msgid "Internet access" msgstr "" -#: gnu/installer/newt/network.scm:64 +#: gnu/installer/newt/network.scm:66 msgid "The install process requires Internet access but no network devices were found. Do you want to continue anyway?" msgstr "" -#: gnu/installer/newt/network.scm:78 +#: gnu/installer/newt/network.scm:76 msgid "The install process requires Internet access. Please select a network device." msgstr "" -#: gnu/installer/newt/network.scm:103 +#: gnu/installer/newt/network.scm:99 msgid "Powering technology" msgstr "" -#: gnu/installer/newt/network.scm:104 +#: gnu/installer/newt/network.scm:100 #, scheme-format msgid "Waiting for technology ~a to be powered." msgstr "" -#: gnu/installer/newt/network.scm:128 +#: gnu/installer/newt/network.scm:139 msgid "Checking connectivity" msgstr "" -#: gnu/installer/newt/network.scm:129 +#: gnu/installer/newt/network.scm:140 msgid "Waiting for Internet access establishment..." msgstr "" -#: gnu/installer/newt/network.scm:139 -msgid "The selected network does not provide access to the Internet, please try again." +#: gnu/installer/newt/network.scm:150 +msgid "The selected network does not provide access to the Internet and the Guix substitute server, please try again." msgstr "" -#: gnu/installer/newt/network.scm:141 gnu/installer/newt/wifi.scm:108 +#: gnu/installer/newt/network.scm:152 gnu/installer/newt/wifi.scm:108 msgid "Connection error" msgstr "连接错误" -#: gnu/installer/newt/page.scm:198 +#: gnu/installer/newt/page.scm:204 #, scheme-format msgid "Connecting to ~a, please wait." msgstr "" -#: gnu/installer/newt/page.scm:199 +#: gnu/installer/newt/page.scm:205 msgid "Connection in progress" msgstr "" -#: gnu/installer/newt/page.scm:218 gnu/installer/newt/user.scm:60 +#: gnu/installer/newt/page.scm:224 gnu/installer/newt/user.scm:59 msgid "Show" msgstr "显示" -#: gnu/installer/newt/page.scm:225 gnu/installer/newt/page.scm:672 -#: gnu/installer/newt/page.scm:757 gnu/installer/newt/partition.scm:458 -#: gnu/installer/newt/partition.scm:637 gnu/installer/newt/partition.scm:660 -#: gnu/installer/newt/partition.scm:699 gnu/installer/newt/user.scm:66 -#: gnu/installer/newt/user.scm:203 +#: gnu/installer/newt/page.scm:231 gnu/installer/newt/page.scm:678 +#: gnu/installer/newt/page.scm:762 gnu/installer/newt/partition.scm:457 +#: gnu/installer/newt/partition.scm:636 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:698 gnu/installer/newt/user.scm:65 +#: gnu/installer/newt/user.scm:202 msgid "OK" msgstr "确定" -#: gnu/installer/newt/page.scm:251 +#: gnu/installer/newt/page.scm:257 msgid "Please enter a non empty input." msgstr "" -#: gnu/installer/newt/page.scm:252 gnu/installer/newt/user.scm:123 +#: gnu/installer/newt/page.scm:258 gnu/installer/newt/user.scm:122 msgid "Empty input" msgstr "" -#: gnu/installer/newt/page.scm:760 +#: gnu/installer/newt/page.scm:765 msgid "Edit" msgstr "编辑" -#: gnu/installer/newt/partition.scm:47 +#: gnu/installer/newt/page.scm:825 +msgid "Ok" +msgstr "" + +#: gnu/installer/newt/partition.scm:45 msgid "Everything is one partition" msgstr "" -#: gnu/installer/newt/partition.scm:48 +#: gnu/installer/newt/partition.scm:46 msgid "Separate /home partition" msgstr "" -#: gnu/installer/newt/partition.scm:50 +#: gnu/installer/newt/partition.scm:48 msgid "Please select a partitioning scheme." msgstr "" -#: gnu/installer/newt/partition.scm:51 +#: gnu/installer/newt/partition.scm:49 msgid "Partition scheme" msgstr "" #. TRANSLATORS: The ~{ and ~} format specifiers are used to iterate the list #. of device names of the user partitions that will be formatted. -#: gnu/installer/newt/partition.scm:65 +#: gnu/installer/newt/partition.scm:63 #, scheme-format msgid "We are about to write the configured partition table to the disk and format the partitions listed below. Their data will be lost. Do you wish to continue?~%~%~{ - ~a~%~}" msgstr "" -#: gnu/installer/newt/partition.scm:71 +#: gnu/installer/newt/partition.scm:69 msgid "Format disk?" msgstr "" -#: gnu/installer/newt/partition.scm:74 +#: gnu/installer/newt/partition.scm:72 msgid "Partition formatting is in progress, please wait." msgstr "" -#: gnu/installer/newt/partition.scm:75 +#: gnu/installer/newt/partition.scm:73 msgid "Preparing partitions" msgstr "" -#: gnu/installer/newt/partition.scm:86 -msgid "Please select a disk." -msgstr "请选择一个磁盘。" +#: gnu/installer/newt/partition.scm:84 +msgid "Please select a disk. The installation device as well as the small devices are filtered." +msgstr "" -#: gnu/installer/newt/partition.scm:87 +#: gnu/installer/newt/partition.scm:86 msgid "Disk" msgstr "磁盘" -#: gnu/installer/newt/partition.scm:102 +#: gnu/installer/newt/partition.scm:101 msgid "Select a new partition table type. Be careful, all data on the disk will be lost." msgstr "" -#: gnu/installer/newt/partition.scm:104 +#: gnu/installer/newt/partition.scm:103 msgid "Partition table" msgstr "分区表" -#: gnu/installer/newt/partition.scm:121 +#: gnu/installer/newt/partition.scm:120 msgid "Please select a partition type." msgstr "" -#: gnu/installer/newt/partition.scm:122 +#: gnu/installer/newt/partition.scm:121 msgid "Partition type" msgstr "分区类型" -#: gnu/installer/newt/partition.scm:132 +#: gnu/installer/newt/partition.scm:131 msgid "Please select the file-system type for this partition." msgstr "" -#: gnu/installer/newt/partition.scm:133 +#: gnu/installer/newt/partition.scm:132 msgid "File-system type" msgstr "文件系统类型" -#: gnu/installer/newt/partition.scm:150 +#: gnu/installer/newt/partition.scm:149 msgid "Primary partitions count exceeded." msgstr "" -#: gnu/installer/newt/partition.scm:151 gnu/installer/newt/partition.scm:156 -#: gnu/installer/newt/partition.scm:161 +#: gnu/installer/newt/partition.scm:150 gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:160 msgid "Creation error" msgstr "" -#: gnu/installer/newt/partition.scm:155 +#: gnu/installer/newt/partition.scm:154 msgid "Extended partition creation error." msgstr "" -#: gnu/installer/newt/partition.scm:160 +#: gnu/installer/newt/partition.scm:159 msgid "Logical partition creation error." msgstr "" -#: gnu/installer/newt/partition.scm:174 +#: gnu/installer/newt/partition.scm:173 #, scheme-format msgid "Please enter the password for the encryption of partition ~a (label: ~a)." msgstr "" -#: gnu/installer/newt/partition.scm:176 gnu/installer/newt/wifi.scm:92 +#: gnu/installer/newt/partition.scm:175 gnu/installer/newt/wifi.scm:92 msgid "Password required" msgstr "" -#: gnu/installer/newt/partition.scm:181 +#: gnu/installer/newt/partition.scm:180 #, scheme-format msgid "Please confirm the password for the encryption of partition ~a (label: ~a)." msgstr "" -#: gnu/installer/newt/partition.scm:183 gnu/installer/newt/user.scm:160 +#: gnu/installer/newt/partition.scm:182 gnu/installer/newt/user.scm:159 msgid "Password confirmation required" msgstr "" -#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 +#: gnu/installer/newt/partition.scm:194 gnu/installer/newt/user.scm:167 msgid "Password mismatch, please try again." msgstr "" -#: gnu/installer/newt/partition.scm:196 gnu/installer/newt/user.scm:169 +#: gnu/installer/newt/partition.scm:195 gnu/installer/newt/user.scm:168 msgid "Password error" msgstr "" -#: gnu/installer/newt/partition.scm:282 +#: gnu/installer/newt/partition.scm:281 msgid "Please enter the partition gpt name." msgstr "" -#: gnu/installer/newt/partition.scm:283 +#: gnu/installer/newt/partition.scm:282 msgid "Partition name" msgstr "" -#: gnu/installer/newt/partition.scm:313 +#: gnu/installer/newt/partition.scm:312 msgid "Please enter the encrypted label" msgstr "" -#: gnu/installer/newt/partition.scm:314 +#: gnu/installer/newt/partition.scm:313 msgid "Encryption label" msgstr "" -#: gnu/installer/newt/partition.scm:331 +#: gnu/installer/newt/partition.scm:330 #, scheme-format msgid "Please enter the size of the partition. The maximum size is ~a." msgstr "" -#: gnu/installer/newt/partition.scm:333 +#: gnu/installer/newt/partition.scm:332 msgid "Partition size" msgstr "" -#: gnu/installer/newt/partition.scm:351 +#: gnu/installer/newt/partition.scm:350 msgid "The percentage can not be superior to 100." msgstr "" -#: gnu/installer/newt/partition.scm:352 gnu/installer/newt/partition.scm:357 -#: gnu/installer/newt/partition.scm:362 +#: gnu/installer/newt/partition.scm:351 gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:361 msgid "Size error" msgstr "" -#: gnu/installer/newt/partition.scm:356 +#: gnu/installer/newt/partition.scm:355 msgid "The requested size is incorrectly formatted, or too large." msgstr "" -#: gnu/installer/newt/partition.scm:361 +#: gnu/installer/newt/partition.scm:360 msgid "The request size is superior to the maximum size." msgstr "" -#: gnu/installer/newt/partition.scm:381 +#: gnu/installer/newt/partition.scm:380 msgid "Please enter the desired mounting point for this partition. Leave this field empty if you don't want to set a mounting point." msgstr "" -#: gnu/installer/newt/partition.scm:383 +#: gnu/installer/newt/partition.scm:382 msgid "Mounting point" msgstr "" -#: gnu/installer/newt/partition.scm:447 +#: gnu/installer/newt/partition.scm:446 #, scheme-format msgid "Creating ~a partition starting at ~a of ~a." msgstr "" -#: gnu/installer/newt/partition.scm:449 +#: gnu/installer/newt/partition.scm:448 #, scheme-format msgid "You are currently editing partition ~a." msgstr "" -#: gnu/installer/newt/partition.scm:452 +#: gnu/installer/newt/partition.scm:451 msgid "Partition creation" msgstr "" -#: gnu/installer/newt/partition.scm:453 +#: gnu/installer/newt/partition.scm:452 msgid "Partition edit" msgstr "" -#: gnu/installer/newt/partition.scm:634 +#: gnu/installer/newt/partition.scm:633 #, scheme-format msgid "Are you sure you want to delete everything on disk ~a?" msgstr "" -#: gnu/installer/newt/partition.scm:636 +#: gnu/installer/newt/partition.scm:635 msgid "Delete disk" msgstr "" -#: gnu/installer/newt/partition.scm:651 +#: gnu/installer/newt/partition.scm:650 msgid "You cannot delete a free space area." msgstr "" -#: gnu/installer/newt/partition.scm:652 gnu/installer/newt/partition.scm:659 +#: gnu/installer/newt/partition.scm:651 gnu/installer/newt/partition.scm:658 msgid "Delete partition" msgstr "删除分区" -#: gnu/installer/newt/partition.scm:657 +#: gnu/installer/newt/partition.scm:656 #, scheme-format msgid "Are you sure you want to delete partition ~a?" msgstr "" -#: gnu/installer/newt/partition.scm:674 +#: gnu/installer/newt/partition.scm:673 msgid "" "You can change a disk's partition table by selecting it and pressing ENTER. You can also edit a partition by selecting it and pressing ENTER, or remove it by pressing DELETE. To create a new partition, select a free space area and press ENTER.\n" "\n" "At least one partition must have its mounting point set to '/'." msgstr "" -#: gnu/installer/newt/partition.scm:680 +#: gnu/installer/newt/partition.scm:679 #, scheme-format msgid "This is the proposed partitioning. It is still possible to edit it or to go back to install menu by pressing the Exit button.~%~%" msgstr "" -#: gnu/installer/newt/partition.scm:690 +#: gnu/installer/newt/partition.scm:689 msgid "Guided partitioning" msgstr "" -#: gnu/installer/newt/partition.scm:691 +#: gnu/installer/newt/partition.scm:690 msgid "Manual partitioning" msgstr "手动分区" -#: gnu/installer/newt/partition.scm:716 +#: gnu/installer/newt/partition.scm:715 msgid "No root mount point found." msgstr "没有找到根挂载点。" -#: gnu/installer/newt/partition.scm:717 +#: gnu/installer/newt/partition.scm:716 msgid "Missing mount point" msgstr "" -#: gnu/installer/newt/partition.scm:721 +#: gnu/installer/newt/partition.scm:720 #, scheme-format msgid "Cannot read the ~a partition UUID. You may need to format it." msgstr "" -#: gnu/installer/newt/partition.scm:724 +#: gnu/installer/newt/partition.scm:723 msgid "Wrong partition format" msgstr "" -#: gnu/installer/newt/partition.scm:755 +#: gnu/installer/newt/partition.scm:754 msgid "Guided - using the entire disk" msgstr "" -#: gnu/installer/newt/partition.scm:756 +#: gnu/installer/newt/partition.scm:755 msgid "Guided - using the entire disk with encryption" msgstr "" -#: gnu/installer/newt/partition.scm:757 +#: gnu/installer/newt/partition.scm:756 msgid "Manual" msgstr "手动" -#: gnu/installer/newt/partition.scm:759 +#: gnu/installer/newt/partition.scm:758 msgid "Please select a partitioning method." msgstr "" -#: gnu/installer/newt/partition.scm:760 +#: gnu/installer/newt/partition.scm:759 msgid "Partitioning method" msgstr "" @@ -1389,41 +1466,41 @@ msgstr "" msgid "Desktop environment" msgstr "桌面环境" -#: gnu/installer/newt/services.scm:59 +#: gnu/installer/newt/services.scm:57 msgid "You can now select networking services to run on your system." msgstr "" -#: gnu/installer/newt/services.scm:61 +#: gnu/installer/newt/services.scm:59 msgid "Network service" msgstr "网络服务" -#: gnu/installer/newt/services.scm:79 +#: gnu/installer/newt/services.scm:75 #, fuzzy #| msgid "Run 'herd status' to view the list of services on your system.\n" msgid "You can now select the CUPS printing service to run on your system." msgstr "运行 'herd status' 以查看你系统上的服务的列表。\n" -#: gnu/installer/newt/services.scm:81 +#: gnu/installer/newt/services.scm:77 msgid "Printing and document services" msgstr "" -#: gnu/installer/newt/services.scm:100 +#: gnu/installer/newt/services.scm:94 #, fuzzy #| msgid "Network service" msgid "Console services" msgstr "网络服务" -#: gnu/installer/newt/services.scm:101 +#: gnu/installer/newt/services.scm:95 #, fuzzy #| msgid "Run 'herd status' to view the list of services on your system.\n" msgid "Select miscellaneous services to run on your non-graphical system." msgstr "运行 'herd status' 以查看你系统上的服务的列表。\n" -#: gnu/installer/newt/services.scm:115 +#: gnu/installer/newt/services.scm:109 msgid "Network management" msgstr "网络管理" -#: gnu/installer/newt/services.scm:118 +#: gnu/installer/newt/services.scm:112 msgid "" "Choose the method to manage network connections.\n" "\n" @@ -1453,57 +1530,57 @@ msgstr "" msgid "Please select a timezone." msgstr "" -#: gnu/installer/newt/user.scm:45 +#: gnu/installer/newt/user.scm:44 msgid "Name" msgstr "名称" -#: gnu/installer/newt/user.scm:47 +#: gnu/installer/newt/user.scm:46 msgid "Real name" msgstr "真名" -#: gnu/installer/newt/user.scm:49 +#: gnu/installer/newt/user.scm:48 msgid "Home directory" msgstr "主目录" -#: gnu/installer/newt/user.scm:51 +#: gnu/installer/newt/user.scm:50 msgid "Password" msgstr "密码" -#: gnu/installer/newt/user.scm:122 +#: gnu/installer/newt/user.scm:121 msgid "Empty inputs are not allowed." msgstr "" -#: gnu/installer/newt/user.scm:159 +#: gnu/installer/newt/user.scm:158 msgid "Please confirm the password." msgstr "" #. TRANSLATORS: Leave "root" untranslated: it refers to the name of the #. system administrator account. -#: gnu/installer/newt/user.scm:176 +#: gnu/installer/newt/user.scm:175 msgid "Please choose a password for the system administrator (\"root\")." msgstr "" -#: gnu/installer/newt/user.scm:178 +#: gnu/installer/newt/user.scm:177 msgid "System administrator password" msgstr "" -#: gnu/installer/newt/user.scm:191 +#: gnu/installer/newt/user.scm:190 msgid "Please add at least one user to system using the 'Add' button." msgstr "" -#: gnu/installer/newt/user.scm:194 +#: gnu/installer/newt/user.scm:193 msgid "Add" msgstr "添加" -#: gnu/installer/newt/user.scm:195 +#: gnu/installer/newt/user.scm:194 msgid "Delete" msgstr "删除" -#: gnu/installer/newt/user.scm:255 +#: gnu/installer/newt/user.scm:254 msgid "Please create at least one user." msgstr "" -#: gnu/installer/newt/user.scm:256 +#: gnu/installer/newt/user.scm:255 msgid "No user" msgstr "" @@ -1574,60 +1651,60 @@ msgstr "" msgid "Wifi" msgstr "" -#: gnu/installer/parted.scm:433 gnu/installer/parted.scm:470 +#: gnu/installer/parted.scm:455 gnu/installer/parted.scm:492 msgid "Free space" msgstr "空闲空间" -#: gnu/installer/parted.scm:559 +#: gnu/installer/parted.scm:581 #, scheme-format msgid "Name: ~a" msgstr "" -#: gnu/installer/parted.scm:560 gnu/installer/parted.scm:606 +#: gnu/installer/parted.scm:582 gnu/installer/parted.scm:628 msgid "None" msgstr "无" -#: gnu/installer/parted.scm:565 +#: gnu/installer/parted.scm:587 #, scheme-format msgid "Type: ~a" msgstr "" -#: gnu/installer/parted.scm:569 +#: gnu/installer/parted.scm:591 #, scheme-format msgid "File system type: ~a" msgstr "" -#: gnu/installer/parted.scm:575 +#: gnu/installer/parted.scm:597 #, scheme-format msgid "Bootable flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:579 +#: gnu/installer/parted.scm:601 #, scheme-format msgid "ESP flag: ~:[off~;on~]" msgstr "" -#: gnu/installer/parted.scm:585 +#: gnu/installer/parted.scm:607 #, scheme-format msgid "Size: ~a" msgstr "" -#: gnu/installer/parted.scm:591 +#: gnu/installer/parted.scm:613 #, scheme-format msgid "Encryption: ~:[No~a~;Yes (label '~a')~]" msgstr "" -#: gnu/installer/parted.scm:597 +#: gnu/installer/parted.scm:619 #, scheme-format msgid "Format the partition? ~:[No~;Yes~]" msgstr "" -#: gnu/installer/parted.scm:603 +#: gnu/installer/parted.scm:625 #, scheme-format msgid "Mount point: ~a" msgstr "" -#: gnu/installer/parted.scm:1466 +#: gnu/installer/parted.scm:1477 #, scheme-format msgid "Device ~a is still in use." msgstr "" @@ -1671,7 +1748,7 @@ msgstr "" #. TRANSLATORS: This is a comment within a Scheme file. Each line must #. start with ";; " (two semicolons and a space). Please keep line #. length below 60 characters. -#: gnu/installer/steps.scm:252 +#: gnu/installer/steps.scm:242 msgid "" ";; This is an operating system configuration generated\n" ";; by the graphical installer.\n" @@ -1682,99 +1759,118 @@ msgstr "" msgid "Unable to locate path: ~a." msgstr "" -#: gnu/installer/utils.scm:83 +#: gnu/installer/utils.scm:131 #, scheme-format msgid "Press Enter to continue.~%" msgstr "" -#: gnu/installer/utils.scm:108 +#: gnu/installer/utils.scm:150 +#, scheme-format +msgid "Command ~s exited with value ~a" +msgstr "" + +#: gnu/installer/utils.scm:156 #, scheme-format -msgid "Command failed with exit code ~a.~%" +msgid "Command ~s killed by signal ~a" msgstr "" -#: gnu/machine/ssh.scm:117 +#: gnu/installer/utils.scm:162 +#, scheme-format +msgid "Command ~s stopped by signal ~a" +msgstr "" + +#: gnu/installer/utils.scm:167 +#, scheme-format +msgid "Command ~s succeeded" +msgstr "" + +#: gnu/installer/utils.scm:179 +msgid "run-command-in-installer not set" +msgstr "" + +#: gnu/machine/ssh.scm:120 #, scheme-format msgid " without a 'host-key' is deprecated~%" msgstr "" -#: gnu/machine/ssh.scm:192 +#: gnu/machine/ssh.scm:208 #, fuzzy, scheme-format msgid "device '~a' not found: ~a" msgstr "guix:~a:未找到命令~%" -#: gnu/machine/ssh.scm:207 +#: gnu/machine/ssh.scm:223 #, scheme-format msgid "no file system with label '~a'" msgstr "" -#: gnu/machine/ssh.scm:226 +#: gnu/machine/ssh.scm:242 #, scheme-format msgid "no file system with UUID '~a'" msgstr "" -#: gnu/machine/ssh.scm:276 +#: gnu/machine/ssh.scm:295 #, scheme-format msgid "missing modules for ~a:~{ ~a~}~%" msgstr "" -#: gnu/machine/ssh.scm:311 +#: gnu/machine/ssh.scm:333 #, scheme-format msgid "incorrect target system ('~a' was given, while the system reports that it is '~a')~%" msgstr "" -#: gnu/machine/ssh.scm:437 +#: gnu/machine/ssh.scm:459 #, scheme-format msgid "no signing key '~a'. have you run 'guix archive --generate-key?'" msgstr "" -#: gnu/machine/ssh.scm:469 +#: gnu/machine/ssh.scm:491 #, scheme-format msgid "failed to switch systems while deploying '~a':~%~{~s ~}" msgstr "" -#: gnu/machine/ssh.scm:477 +#: gnu/machine/ssh.scm:499 #, scheme-format msgid "an error occurred while upgrading services on '~a':~%~{~s ~}~%" msgstr "" -#: gnu/machine/ssh.scm:485 +#: gnu/machine/ssh.scm:507 #, fuzzy, scheme-format #| msgid "failed to connect to `~a': ~a~%" msgid "failed to install bootloader on '~a':~%~{~s ~}~%" msgstr "连接到 `~a' 失败:~a~%" -#: gnu/machine/ssh.scm:518 +#: gnu/machine/ssh.scm:540 msgid "could not roll-back machine" msgstr "" -#: gnu/machine/ssh.scm:559 +#: gnu/machine/ssh.scm:581 msgid "" "Provisioning for machines that are accessible over SSH\n" "and have a known host-name. This entails little more than maintaining an SSH\n" "connection to the host." msgstr "" -#: gnu/machine/ssh.scm:569 +#: gnu/machine/ssh.scm:591 #, scheme-format msgid "" "unsupported machine configuration '~a'\n" "for environment of type '~a'" msgstr "" -#: gnu/packages/bootstrap.scm:178 +#: gnu/packages/bootstrap.scm:188 #, scheme-format msgid "could not find bootstrap binary '~a' for system '~a'" msgstr "无法找到引导二进制 '~a',用于系统 '~a'" -#: gnu/packages/bootstrap.scm:492 +#: gnu/packages/bootstrap.scm:578 msgid "Raw build system with direct store access" msgstr "" -#: gnu/packages/bootstrap.scm:500 +#: gnu/packages/bootstrap.scm:586 msgid "Pre-built Guile for bootstrapping purposes." msgstr "" -#: guix/build/utils.scm:822 +#: guix/build/utils.scm:823 #, scheme-format msgid "'~a~{ ~a~}' exited with status ~a; output follows:~%~%~{ ~a~%~}" msgstr "" @@ -1814,7 +1910,7 @@ msgid "~A: unrecognized option~%" msgstr "~A: 无法识别的选项~%" #: guix/scripts.scm:169 guix/scripts/import.scm:140 -#: guix/scripts/system.scm:1370 +#: guix/scripts/system.scm:1379 #, scheme-format msgid "Did you mean @code{~a}?~%" msgstr "" @@ -1860,7 +1956,7 @@ msgstr "" #: guix/scripts/build.scm:154 guix/scripts/search.scm:42 #: guix/scripts/show.scm:41 guix/scripts/lint.scm:112 guix/scripts/edit.scm:48 #: guix/scripts/size.scm:246 guix/scripts/graph.scm:553 -#: guix/scripts/repl.scm:80 guix/scripts/style.scm:500 +#: guix/scripts/repl.scm:80 guix/scripts/style.scm:795 msgid "" "\n" " -L, --load-path=DIR prepend DIR to the package module search path" @@ -2034,7 +2130,7 @@ msgstr "" "\n" " -s, --system=系统 尝试为 <系统> 构建包——比如,\"i686-linux\"" -#: guix/scripts/build.scm:357 guix/scripts/system.scm:1023 +#: guix/scripts/build.scm:357 guix/scripts/system.scm:1026 #: guix/scripts/pack.scm:1329 guix/scripts/archive.scm:97 msgid "" "\n" @@ -2067,13 +2163,13 @@ msgid "" " as a garbage collector root" msgstr "" -#: guix/scripts/build.scm:368 guix/scripts/package.scm:486 +#: guix/scripts/build.scm:368 guix/scripts/package.scm:488 #: guix/scripts/install.scm:37 guix/scripts/remove.scm:36 #: guix/scripts/upgrade.scm:39 guix/scripts/pull.scm:117 -#: guix/scripts/system.scm:1025 guix/scripts/copy.scm:122 -#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:60 +#: guix/scripts/system.scm:1028 guix/scripts/copy.scm:122 +#: guix/scripts/pack.scm:1352 guix/scripts/deploy.scm:66 #: guix/scripts/archive.scm:99 guix/scripts/environment.scm:123 -#: guix/scripts/home.scm:94 +#: guix/scripts/home.scm:98 msgid "" "\n" " -v, --verbosity=LEVEL use the given verbosity LEVEL" @@ -2095,30 +2191,30 @@ msgid "" msgstr "" #: guix/scripts/build.scm:379 guix/scripts/download.scm:104 -#: guix/scripts/package.scm:504 guix/scripts/install.scm:44 +#: guix/scripts/package.scm:506 guix/scripts/install.scm:44 #: guix/scripts/remove.scm:41 guix/scripts/upgrade.scm:48 #: guix/scripts/search.scm:37 guix/scripts/show.scm:36 guix/scripts/gc.scm:88 #: guix/scripts/git.scm:34 guix/scripts/git/authenticate.scm:110 #: guix/scripts/hash.scm:98 guix/scripts/import.scm:98 #: guix/scripts/import/minetest.scm:46 guix/scripts/import/cran.scm:49 #: guix/scripts/pull.scm:125 guix/scripts/substitute.scm:250 -#: guix/scripts/system.scm:1032 guix/scripts/lint.scm:115 +#: guix/scripts/system.scm:1035 guix/scripts/lint.scm:115 #: guix/scripts/publish.scm:119 guix/scripts/edit.scm:51 #: guix/scripts/size.scm:249 guix/scripts/graph.scm:558 #: guix/scripts/challenge.scm:430 guix/scripts/copy.scm:127 #: guix/scripts/pack.scm:1357 guix/scripts/weather.scm:336 #: guix/scripts/describe.scm:96 guix/scripts/processes.scm:301 -#: guix/scripts/deploy.scm:55 guix/scripts/container.scm:35 +#: guix/scripts/deploy.scm:58 guix/scripts/container.scm:35 #: guix/scripts/container/exec.scm:43 guix/scripts/archive.scm:106 -#: guix/scripts/environment.scm:149 guix/scripts/home.scm:97 +#: guix/scripts/environment.scm:149 guix/scripts/home.scm:101 #: guix/scripts/time-machine.scm:67 guix/scripts/import/cpan.scm:44 #: guix/scripts/import/crate.scm:50 guix/scripts/import/egg.scm:45 #: guix/scripts/import/gem.scm:46 guix/scripts/import/gnu.scm:50 #: guix/scripts/import/go.scm:50 guix/scripts/import/json.scm:52 #: guix/scripts/import/opam.scm:45 guix/scripts/import/pypi.scm:46 #: guix/scripts/import/texlive.scm:45 guix/scripts/refresh.scm:187 -#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:67 -#: guix/scripts/style.scm:509 +#: guix/scripts/repl.scm:83 guix/scripts/shell.scm:69 +#: guix/scripts/style.scm:804 msgid "" "\n" " -h, --help display this help and exit" @@ -2127,29 +2223,29 @@ msgstr "" " -h, --help 显示这份说明然后离开" #: guix/scripts/build.scm:381 guix/scripts/download.scm:106 -#: guix/scripts/package.scm:506 guix/scripts/install.scm:46 +#: guix/scripts/package.scm:508 guix/scripts/install.scm:46 #: guix/scripts/remove.scm:43 guix/scripts/upgrade.scm:50 #: guix/scripts/search.scm:39 guix/scripts/show.scm:38 guix/scripts/gc.scm:90 #: guix/scripts/git.scm:36 guix/scripts/git/authenticate.scm:112 #: guix/scripts/hash.scm:100 guix/scripts/import.scm:100 #: guix/scripts/import/minetest.scm:50 guix/scripts/import/cran.scm:55 #: guix/scripts/pull.scm:127 guix/scripts/substitute.scm:252 -#: guix/scripts/system.scm:1034 guix/scripts/lint.scm:119 +#: guix/scripts/system.scm:1037 guix/scripts/lint.scm:119 #: guix/scripts/publish.scm:121 guix/scripts/edit.scm:53 #: guix/scripts/size.scm:251 guix/scripts/graph.scm:560 #: guix/scripts/challenge.scm:432 guix/scripts/copy.scm:129 #: guix/scripts/pack.scm:1359 guix/scripts/weather.scm:338 #: guix/scripts/describe.scm:98 guix/scripts/processes.scm:303 -#: guix/scripts/deploy.scm:57 guix/scripts/container.scm:37 +#: guix/scripts/deploy.scm:60 guix/scripts/container.scm:37 #: guix/scripts/container/exec.scm:45 guix/scripts/archive.scm:108 -#: guix/scripts/environment.scm:151 guix/scripts/home.scm:99 +#: guix/scripts/environment.scm:151 guix/scripts/home.scm:103 #: guix/scripts/time-machine.scm:69 guix/scripts/import/cpan.scm:46 #: guix/scripts/import/crate.scm:52 guix/scripts/import/egg.scm:49 #: guix/scripts/import/gem.scm:48 guix/scripts/import/gnu.scm:52 #: guix/scripts/import/json.scm:54 guix/scripts/import/opam.scm:52 #: guix/scripts/import/pypi.scm:50 guix/scripts/import/texlive.scm:47 #: guix/scripts/refresh.scm:189 guix/scripts/repl.scm:85 -#: guix/scripts/shell.scm:69 guix/scripts/style.scm:511 +#: guix/scripts/shell.scm:71 guix/scripts/style.scm:806 msgid "" "\n" " -V, --version display version information and exit" @@ -2388,165 +2484,165 @@ msgstr "" msgid "\"bash-minimal\" should be in 'inputs' when '~a' is used" msgstr "" -#: guix/lint.scm:616 +#: guix/lint.scm:614 msgid "no period allowed at the end of the synopsis" msgstr "" -#: guix/lint.scm:630 +#: guix/lint.scm:628 msgid "no article allowed at the beginning of the synopsis" msgstr "" -#: guix/lint.scm:639 +#: guix/lint.scm:637 msgid "synopsis should be less than 80 characters long" msgstr "" -#: guix/lint.scm:648 +#: guix/lint.scm:646 msgid "synopsis should start with an upper-case letter or digit" msgstr "" -#: guix/lint.scm:656 +#: guix/lint.scm:654 msgid "synopsis should not start with the package name" msgstr "" -#: guix/lint.scm:670 +#: guix/lint.scm:668 msgid "Texinfo markup in synopsis is invalid" msgstr "" -#: guix/lint.scm:678 +#: guix/lint.scm:676 msgid "synopsis contains trailing whitespace" msgstr "" -#: guix/lint.scm:695 +#: guix/lint.scm:693 msgid "synopsis should not be empty" msgstr "" -#: guix/lint.scm:705 +#: guix/lint.scm:703 #, fuzzy, scheme-format msgid "invalid synopsis: ~s" msgstr "无效语法: ~a~%" -#: guix/lint.scm:805 +#: guix/lint.scm:803 #, scheme-format msgid "~a: HTTP GET error for ~a: ~a (~s)~%" msgstr "" -#: guix/lint.scm:815 +#: guix/lint.scm:813 #, scheme-format msgid "~a: host lookup failure: ~a~%" msgstr "" -#: guix/lint.scm:820 +#: guix/lint.scm:818 #, scheme-format msgid "~a: TLS certificate error: ~a" msgstr "~a:TLS 证书错误:~a" -#: guix/lint.scm:825 +#: guix/lint.scm:823 #, fuzzy, scheme-format #| msgid "~a: TLS certificate error: ~a" msgid "~a: TLS error in '~a': ~a~%" msgstr "~a:TLS 证书错误:~a" -#: guix/lint.scm:836 guix/ui.scm:820 guix/scripts/offload.scm:194 +#: guix/lint.scm:834 guix/ui.scm:820 guix/scripts/offload.scm:194 #, scheme-format msgid "~a: ~a~%" msgstr "" -#: guix/lint.scm:868 +#: guix/lint.scm:866 #, scheme-format msgid "URI ~a returned suspiciously small file (~a bytes)" msgstr "" -#: guix/lint.scm:877 +#: guix/lint.scm:875 #, scheme-format msgid "permanent redirect from ~a to ~a" msgstr "" -#: guix/lint.scm:883 +#: guix/lint.scm:881 #, fuzzy, scheme-format msgid "invalid permanent redirect from ~a" msgstr "含糊的软件包规范 `~a'~%" -#: guix/lint.scm:889 guix/lint.scm:899 +#: guix/lint.scm:887 guix/lint.scm:897 #, scheme-format msgid "URI ~a not reachable: ~a (~s)" msgstr "" -#: guix/lint.scm:905 +#: guix/lint.scm:903 #, scheme-format msgid "URI ~a domain not found: ~a" msgstr "" -#: guix/lint.scm:911 +#: guix/lint.scm:909 #, scheme-format msgid "URI ~a unreachable: ~a" msgstr "" -#: guix/lint.scm:919 +#: guix/lint.scm:917 #, scheme-format msgid "TLS certificate error: ~a" msgstr "TLS 证书错误:~a" -#: guix/lint.scm:946 +#: guix/lint.scm:944 msgid "invalid value for home page" msgstr "无效的主页值" -#: guix/lint.scm:951 +#: guix/lint.scm:949 #, scheme-format msgid "invalid home page URL: ~s" msgstr "无效的主页 URL:~s" -#: guix/lint.scm:988 +#: guix/lint.scm:986 msgid "file names of patches should start with the package name" msgstr "" -#: guix/lint.scm:1008 +#: guix/lint.scm:1006 #, scheme-format msgid "~a: file name is too long, which may break 'make dist'" msgstr "" -#: guix/lint.scm:1029 +#: guix/lint.scm:1027 #, scheme-format msgid "~a: empty patch" msgstr "" -#: guix/lint.scm:1038 +#: guix/lint.scm:1036 #, scheme-format msgid "~a: patch lacks comment and upstream status" msgstr "" -#: guix/lint.scm:1099 +#: guix/lint.scm:1097 #, fuzzy, scheme-format msgid "proposed synopsis: ~s~%" msgstr "无效语法: ~a~%" -#: guix/lint.scm:1113 +#: guix/lint.scm:1111 #, scheme-format msgid "proposed description:~% \"~a\"~%" msgstr "" -#: guix/lint.scm:1164 +#: guix/lint.scm:1162 msgid "all the source URIs are unreachable:" msgstr "" -#: guix/lint.scm:1193 +#: guix/lint.scm:1191 msgid "the source file name should contain the package name" msgstr "" -#: guix/lint.scm:1205 +#: guix/lint.scm:1203 msgid "the source URI should not be an autogenerated tarball" msgstr "" -#: guix/lint.scm:1229 +#: guix/lint.scm:1227 #, scheme-format msgid "URL should be 'mirror://~a/~a'" msgstr "" -#: guix/lint.scm:1269 +#: guix/lint.scm:1267 #, fuzzy, scheme-format msgid "while accessing '~a'" msgstr "连接到 `~a' 失败:~a~%" -#: guix/lint.scm:1276 +#: guix/lint.scm:1274 #, scheme-format msgid "URL should be '~a'" msgstr "" @@ -2554,68 +2650,68 @@ msgstr "" #. TRANSLATORS: check and #:tests? are a #. Scheme symbol and keyword respectively #. and should not be translated. -#: guix/lint.scm:1304 +#: guix/lint.scm:1302 msgid "the 'check' phase should respect #:tests?" msgstr "" -#: guix/lint.scm:1322 guix/lint.scm:1333 guix/lint.scm:1341 +#: guix/lint.scm:1320 guix/lint.scm:1331 guix/lint.scm:1339 #, fuzzy, scheme-format msgid "failed to create ~a derivation: ~a" msgstr "连接到 `~a' 失败:~a~%" -#: guix/lint.scm:1327 +#: guix/lint.scm:1325 #, scheme-format msgid "failed to create ~a derivation: ~s" msgstr "" -#: guix/lint.scm:1379 +#: guix/lint.scm:1377 #, scheme-format msgid "propagated inputs ~a and ~a collide" msgstr "" -#: guix/lint.scm:1403 +#: guix/lint.scm:1401 msgid "invalid license field" msgstr "无效的许可证字段" -#: guix/lint.scm:1410 +#: guix/lint.scm:1408 msgid "while retrieving CVE vulnerabilities" msgstr "" -#: guix/lint.scm:1453 +#: guix/lint.scm:1451 #, scheme-format msgid "probably vulnerable to ~a" msgstr "" -#: guix/lint.scm:1461 +#: guix/lint.scm:1459 #, fuzzy, scheme-format msgid "no updater for ~a" msgstr "'~a'~% 签名无效" -#: guix/lint.scm:1466 guix/lint.scm:1641 +#: guix/lint.scm:1464 guix/lint.scm:1639 #, scheme-format msgid "while retrieving upstream info for '~a'" msgstr "" -#: guix/lint.scm:1475 +#: guix/lint.scm:1473 #, scheme-format msgid "can be upgraded to ~a" msgstr "可升级至 ~a" -#: guix/lint.scm:1481 +#: guix/lint.scm:1479 #, scheme-format msgid "updater '~a' failed to find upstream releases" msgstr "" -#: guix/lint.scm:1508 +#: guix/lint.scm:1506 #, fuzzy, scheme-format msgid "failed to access Disarchive database at ~a" msgstr "连接到 `~a' 失败:~a~%" -#: guix/lint.scm:1535 +#: guix/lint.scm:1533 msgid "Software Heritage rate limit reached; try again later" msgstr "" -#: guix/lint.scm:1539 +#: guix/lint.scm:1537 #, scheme-format msgid "'~a' returned ~a" msgstr "" @@ -2623,163 +2719,163 @@ msgstr "" #. TRANSLATORS: "Software Heritage" is a proper noun #. that must remain untranslated. See #. . -#: guix/lint.scm:1578 +#: guix/lint.scm:1576 msgid "scheduled Software Heritage archival" msgstr "" -#: guix/lint.scm:1584 +#: guix/lint.scm:1582 msgid "archival rate limit exceeded; try again later" msgstr "" -#: guix/lint.scm:1605 +#: guix/lint.scm:1603 msgid "source not archived on Software Heritage and missing from the Disarchive database" msgstr "" -#: guix/lint.scm:1615 +#: guix/lint.scm:1613 #, scheme-format msgid "Disarchive entry refers to non-existent SWH directory '~a'" msgstr "" -#: guix/lint.scm:1624 +#: guix/lint.scm:1622 msgid "unsupported source type" msgstr "" -#: guix/lint.scm:1633 +#: guix/lint.scm:1631 msgid "while connecting to Software Heritage" msgstr "" -#: guix/lint.scm:1650 +#: guix/lint.scm:1648 #, scheme-format msgid "ahead of Stackage LTS version ~a" msgstr "" -#: guix/lint.scm:1667 +#: guix/lint.scm:1665 #, scheme-format msgid "tabulation on line ~a, column ~a" msgstr "" -#: guix/lint.scm:1679 +#: guix/lint.scm:1677 #, scheme-format msgid "trailing white space on line ~a" msgstr "" -#: guix/lint.scm:1693 +#: guix/lint.scm:1691 #, scheme-format msgid "line ~a is way too long (~a characters)" msgstr "" -#: guix/lint.scm:1707 +#: guix/lint.scm:1705 msgid "parentheses feel lonely, move to the previous or next line" msgstr "" -#: guix/lint.scm:1784 +#: guix/lint.scm:1782 #, fuzzy msgid "source file not found" msgstr "未找到模块 ~a" -#: guix/lint.scm:1796 +#: guix/lint.scm:1794 msgid "Validate package names" msgstr "" -#: guix/lint.scm:1800 +#: guix/lint.scm:1798 msgid "Check if tests are explicitly enabled" msgstr "" -#: guix/lint.scm:1804 +#: guix/lint.scm:1802 msgid "Validate package descriptions" msgstr "" -#: guix/lint.scm:1808 +#: guix/lint.scm:1806 msgid "Identify inputs that should be native inputs" msgstr "" -#: guix/lint.scm:1812 +#: guix/lint.scm:1810 msgid "Identify inputs that shouldn't be inputs at all" msgstr "" -#: guix/lint.scm:1816 +#: guix/lint.scm:1814 msgid "Identify input labels that do not match package names" msgstr "" -#: guix/lint.scm:1820 +#: guix/lint.scm:1818 msgid "Make sure 'wrap-program' can finds its interpreter." msgstr "" #. TRANSLATORS: is the name of a data type and must not be #. translated. -#: guix/lint.scm:1826 +#: guix/lint.scm:1824 msgid "Make sure the 'license' field is a or a list thereof" msgstr "" -#: guix/lint.scm:1831 +#: guix/lint.scm:1829 msgid "Make sure tests are only run when requested" msgstr "" -#: guix/lint.scm:1835 +#: guix/lint.scm:1833 msgid "Suggest 'mirror://' URLs" msgstr "" -#: guix/lint.scm:1839 +#: guix/lint.scm:1837 msgid "Validate file names of sources" msgstr "" -#: guix/lint.scm:1843 +#: guix/lint.scm:1841 msgid "Check for autogenerated tarballs" msgstr "" -#: guix/lint.scm:1847 +#: guix/lint.scm:1845 msgid "Report failure to compile a package to a derivation" msgstr "" -#: guix/lint.scm:1852 +#: guix/lint.scm:1850 msgid "Report collisions that would occur due to propagated inputs" msgstr "" -#: guix/lint.scm:1857 +#: guix/lint.scm:1855 msgid "Validate file names and availability of patches" msgstr "" -#: guix/lint.scm:1861 +#: guix/lint.scm:1859 msgid "Validate patch headers" msgstr "" -#: guix/lint.scm:1865 +#: guix/lint.scm:1863 msgid "Look for formatting issues in the source" msgstr "" -#: guix/lint.scm:1872 +#: guix/lint.scm:1870 msgid "Validate package synopses" msgstr "" -#: guix/lint.scm:1876 +#: guix/lint.scm:1874 msgid "Validate synopsis & description of GNU packages" msgstr "" -#: guix/lint.scm:1880 +#: guix/lint.scm:1878 msgid "Validate home-page URLs" msgstr "" -#: guix/lint.scm:1884 +#: guix/lint.scm:1882 msgid "Validate source URLs" msgstr "" -#: guix/lint.scm:1888 +#: guix/lint.scm:1886 msgid "Suggest GitHub URLs" msgstr "" -#: guix/lint.scm:1892 +#: guix/lint.scm:1890 msgid "Check the Common Vulnerabilities and Exposures (CVE) database" msgstr "" -#: guix/lint.scm:1897 +#: guix/lint.scm:1895 msgid "Check the package for new upstream releases" msgstr "" -#: guix/lint.scm:1901 +#: guix/lint.scm:1899 msgid "Ensure source code archival on Software Heritage" msgstr "" -#: guix/lint.scm:1905 +#: guix/lint.scm:1903 msgid "Ensure Haskell packages use Stackage LTS versions" msgstr "" @@ -2831,7 +2927,7 @@ msgstr "" msgid "~a: unknown hash algorithm~%" msgstr "~a:未知操作~%" -#: guix/scripts/download.scm:171 guix/scripts/package.scm:1087 +#: guix/scripts/download.scm:171 guix/scripts/package.scm:1090 #: guix/scripts/pull.scm:758 guix/scripts/publish.scm:1260 #: guix/scripts/discover.scm:136 guix/scripts/time-machine.scm:123 #, scheme-format @@ -2863,17 +2959,17 @@ msgstr "" msgid "no matching generation~%" msgstr "" -#: guix/scripts/package.scm:159 +#: guix/scripts/package.scm:161 #, scheme-format msgid "nothing to be done~%" msgstr "" -#: guix/scripts/package.scm:260 +#: guix/scripts/package.scm:262 #, scheme-format msgid "package '~a' no longer exists~%" msgstr "软件包“~a”已不再存在~%" -#: guix/scripts/package.scm:315 +#: guix/scripts/package.scm:317 #, scheme-format msgid "" "Consider setting the necessary environment\n" @@ -2887,7 +2983,7 @@ msgid "" "Alternately, see @command{guix package --search-paths -p ~s}." msgstr "" -#: guix/scripts/package.scm:361 +#: guix/scripts/package.scm:363 msgid "" ";; This \"manifest\" file can be passed to 'guix package -m' to reproduce\n" ";; the content of your profile. This is \"symbolic\": it only specifies\n" @@ -2896,44 +2992,44 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/package.scm:393 +#: guix/scripts/package.scm:395 #, scheme-format msgid "no provenance information for this profile~%" msgstr "" -#: guix/scripts/package.scm:395 +#: guix/scripts/package.scm:397 msgid "" ";; This channel file can be passed to 'guix pull -C' or to\n" ";; 'guix time-machine -C' to obtain the Guix revision that was\n" ";; used to populate this profile.\n" msgstr "" -#: guix/scripts/package.scm:407 +#: guix/scripts/package.scm:409 #, scheme-format msgid ";; Note: these other commits were also used to install some of the packages in this profile:~%" msgstr "" -#: guix/scripts/package.scm:437 +#: guix/scripts/package.scm:439 msgid "" "Usage: guix package [OPTION]...\n" "Install, remove, or upgrade packages in a single transaction.\n" msgstr "" -#: guix/scripts/package.scm:439 +#: guix/scripts/package.scm:441 msgid "" "\n" " -i, --install PACKAGE ...\n" " install PACKAGEs" msgstr "" -#: guix/scripts/package.scm:442 +#: guix/scripts/package.scm:444 msgid "" "\n" " -e, --install-from-expression=EXP\n" " install the package EXP evaluates to" msgstr "" -#: guix/scripts/package.scm:445 +#: guix/scripts/package.scm:447 msgid "" "\n" " -f, --install-from-file=FILE\n" @@ -2941,160 +3037,160 @@ msgid "" " evaluates to" msgstr "" -#: guix/scripts/package.scm:449 +#: guix/scripts/package.scm:451 msgid "" "\n" " -r, --remove PACKAGE ...\n" " remove PACKAGEs" msgstr "" -#: guix/scripts/package.scm:452 +#: guix/scripts/package.scm:454 msgid "" "\n" " -u, --upgrade[=REGEXP] upgrade all the installed packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:454 +#: guix/scripts/package.scm:456 msgid "" "\n" " -m, --manifest=FILE create a new profile generation with the manifest\n" " from FILE" msgstr "" -#: guix/scripts/package.scm:457 guix/scripts/upgrade.scm:41 +#: guix/scripts/package.scm:459 guix/scripts/upgrade.scm:41 msgid "" "\n" " --do-not-upgrade[=REGEXP] do not upgrade any packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:459 guix/scripts/pull.scm:107 +#: guix/scripts/package.scm:461 guix/scripts/pull.scm:107 msgid "" "\n" " --roll-back roll back to the previous generation" msgstr "" -#: guix/scripts/package.scm:461 +#: guix/scripts/package.scm:463 msgid "" "\n" " --search-paths[=KIND]\n" " display needed environment variable definitions" msgstr "" -#: guix/scripts/package.scm:464 guix/scripts/pull.scm:104 +#: guix/scripts/package.scm:466 guix/scripts/pull.scm:104 msgid "" "\n" " -l, --list-generations[=PATTERN]\n" " list generations matching PATTERN" msgstr "" -#: guix/scripts/package.scm:467 guix/scripts/pull.scm:109 +#: guix/scripts/package.scm:469 guix/scripts/pull.scm:109 msgid "" "\n" " -d, --delete-generations[=PATTERN]\n" " delete generations matching PATTERN" msgstr "" -#: guix/scripts/package.scm:470 guix/scripts/pull.scm:112 +#: guix/scripts/package.scm:472 guix/scripts/pull.scm:112 msgid "" "\n" " -S, --switch-generation=PATTERN\n" " switch to a generation matching PATTERN" msgstr "" -#: guix/scripts/package.scm:473 +#: guix/scripts/package.scm:475 msgid "" "\n" " --export-manifest print a manifest for the chosen profile" msgstr "" -#: guix/scripts/package.scm:475 +#: guix/scripts/package.scm:477 msgid "" "\n" " --export-channels print channels for the chosen profile" msgstr "" -#: guix/scripts/package.scm:477 guix/scripts/install.scm:34 +#: guix/scripts/package.scm:479 guix/scripts/install.scm:34 #: guix/scripts/remove.scm:33 guix/scripts/upgrade.scm:37 msgid "" "\n" " -p, --profile=PROFILE use PROFILE instead of the user's default profile" msgstr "" -#: guix/scripts/package.scm:479 +#: guix/scripts/package.scm:481 msgid "" "\n" " --list-profiles list the user's profiles" msgstr "" -#: guix/scripts/package.scm:482 +#: guix/scripts/package.scm:484 msgid "" "\n" " --allow-collisions do not treat collisions in the profile as an error" msgstr "" -#: guix/scripts/package.scm:484 +#: guix/scripts/package.scm:486 msgid "" "\n" " --bootstrap use the bootstrap Guile to build the profile" msgstr "" -#: guix/scripts/package.scm:489 +#: guix/scripts/package.scm:491 msgid "" "\n" " -s, --search=REGEXP search in synopsis and description using REGEXP" msgstr "" -#: guix/scripts/package.scm:491 +#: guix/scripts/package.scm:493 msgid "" "\n" " -I, --list-installed[=REGEXP]\n" " list installed packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:494 +#: guix/scripts/package.scm:496 msgid "" "\n" " -A, --list-available[=REGEXP]\n" " list available packages matching REGEXP" msgstr "" -#: guix/scripts/package.scm:497 +#: guix/scripts/package.scm:499 msgid "" "\n" " --show=PACKAGE show details about PACKAGE" msgstr "" -#: guix/scripts/package.scm:552 +#: guix/scripts/package.scm:554 #, scheme-format msgid "upgrade regexp '~a' looks like a command-line option~%" msgstr "" -#: guix/scripts/package.scm:555 +#: guix/scripts/package.scm:557 #, scheme-format msgid "is this intended?~%" msgstr "" -#: guix/scripts/package.scm:605 +#: guix/scripts/package.scm:607 #, scheme-format msgid "~a: unsupported kind of search path~%" msgstr "" -#: guix/scripts/package.scm:739 +#: guix/scripts/package.scm:741 #, scheme-format msgid "cannot install non-package object: ~s~%" msgstr "" -#: guix/scripts/package.scm:918 +#: guix/scripts/package.scm:920 #, fuzzy, scheme-format msgid "~a~@[@~a~]: package not found~%" msgstr "~a: 未找到补丁" -#: guix/scripts/package.scm:965 guix/scripts/pull.scm:687 +#: guix/scripts/package.scm:967 guix/scripts/pull.scm:687 #, scheme-format msgid "cannot switch to generation '~a'~%" msgstr "" -#: guix/scripts/package.scm:1060 +#: guix/scripts/package.scm:1062 #, scheme-format msgid "nothing to do~%" msgstr "" @@ -3316,8 +3412,8 @@ msgid "" "Operate on Git repositories.\n" msgstr "" -#: guix/scripts/git.scm:29 guix/scripts/system.scm:945 -#: guix/scripts/container.scm:30 guix/scripts/home.scm:69 +#: guix/scripts/git.scm:29 guix/scripts/system.scm:946 +#: guix/scripts/container.scm:30 guix/scripts/home.scm:70 msgid "The valid values for ACTION are:\n" msgstr "" @@ -3414,23 +3510,23 @@ msgid "" " -S, --serializer=TYPE compute the hash on FILE according to TYPE serialization" msgstr "" -#: guix/scripts/hash.scm:137 +#: guix/scripts/hash.scm:138 #, fuzzy, scheme-format #| msgid "'vm-image' is deprecated: use 'image' instead~%" -msgid "'--recursive' is deprecated, use '--serializer' instead~%" +msgid "'--recursive' is deprecated, use '--serializer=nar' instead~%" msgstr "'vm-image' 已被弃用:用 'image' 代替 ~%" -#: guix/scripts/hash.scm:152 +#: guix/scripts/hash.scm:153 #, scheme-format msgid "unsupported serializer type: ~a~%" msgstr "" -#: guix/scripts/hash.scm:201 +#: guix/scripts/hash.scm:202 #, fuzzy, scheme-format msgid "~a ~a~%" msgstr "正删除 ~a~%" -#: guix/scripts/hash.scm:210 +#: guix/scripts/hash.scm:211 #, fuzzy, scheme-format msgid "no arguments specified~%" msgstr "未指定配置文件~%" @@ -3490,9 +3586,9 @@ msgstr "~a: 无效的数字~%" #: guix/scripts/import/minetest.scm:115 guix/scripts/import/cran.scm:120 #: guix/scripts/import/elpa.scm:110 guix/scripts/import/cpan.scm:87 #: guix/scripts/import/crate.scm:103 guix/scripts/import/egg.scm:106 -#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:121 +#: guix/scripts/import/gem.scm:102 guix/scripts/import/go.scm:122 #: guix/scripts/import/hackage.scm:158 guix/scripts/import/json.scm:97 -#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:104 +#: guix/scripts/import/opam.scm:111 guix/scripts/import/pypi.scm:105 #: guix/scripts/import/stackage.scm:130 guix/scripts/import/texlive.scm:88 #, scheme-format msgid "too few arguments~%" @@ -3501,10 +3597,10 @@ msgstr "太少参数~%" #: guix/scripts/import/minetest.scm:117 guix/scripts/import/cran.scm:122 #: guix/scripts/import/elpa.scm:112 guix/scripts/import/cpan.scm:89 #: guix/scripts/import/crate.scm:105 guix/scripts/import/egg.scm:108 -#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:123 +#: guix/scripts/import/gem.scm:104 guix/scripts/import/go.scm:124 #: guix/scripts/import/hackage.scm:149 guix/scripts/import/hackage.scm:160 #: guix/scripts/import/json.scm:99 guix/scripts/import/opam.scm:113 -#: guix/scripts/import/pypi.scm:106 guix/scripts/import/stackage.scm:132 +#: guix/scripts/import/pypi.scm:107 guix/scripts/import/stackage.scm:132 #: guix/scripts/import/texlive.scm:90 #, scheme-format msgid "too many arguments~%" @@ -3528,7 +3624,7 @@ msgid "" " -s, --style=STYLE choose output style, either specification or variable" msgstr "" -#: guix/scripts/import/cran.scm:116 guix/scripts/import/texlive.scm:84 +#: guix/scripts/import/cran.scm:116 #, scheme-format msgid "failed to download description for package '~a'~%" msgstr "" @@ -3934,27 +4030,27 @@ msgstr "" msgid "the dependency graph of shepherd services" msgstr "" -#: guix/scripts/system.scm:482 guix/scripts/home.scm:453 +#: guix/scripts/system.scm:482 guix/scripts/home.scm:466 #, scheme-format msgid " repository URL: ~a~%" msgstr "" -#: guix/scripts/system.scm:484 guix/scripts/home.scm:455 +#: guix/scripts/system.scm:484 guix/scripts/home.scm:468 #, scheme-format msgid " branch: ~a~%" msgstr " 分支:~a~%" -#: guix/scripts/system.scm:485 guix/scripts/home.scm:456 +#: guix/scripts/system.scm:485 guix/scripts/home.scm:469 #, scheme-format msgid " commit: ~a~%" msgstr "" -#: guix/scripts/system.scm:505 guix/scripts/home.scm:469 +#: guix/scripts/system.scm:505 guix/scripts/home.scm:482 #, scheme-format msgid " file name: ~a~%" msgstr " 文件名:~a~%" -#: guix/scripts/system.scm:506 guix/scripts/home.scm:470 +#: guix/scripts/system.scm:506 guix/scripts/home.scm:483 #, scheme-format msgid " canonical file name: ~a~%" msgstr "" @@ -3995,12 +4091,12 @@ msgstr " 文件名:~a~%" #. TRANSLATORS: Here "channel" is the same terminology as used in #. "guix describe" and "guix pull --channels". -#: guix/scripts/system.scm:536 guix/scripts/home.scm:476 +#: guix/scripts/system.scm:536 guix/scripts/home.scm:489 #, scheme-format msgid " channels:~%" msgstr "" -#: guix/scripts/system.scm:539 guix/scripts/home.scm:479 +#: guix/scripts/system.scm:539 guix/scripts/home.scm:492 #, scheme-format msgid " configuration file: ~a~%" msgstr " 配置文件:~a~%" @@ -4053,128 +4149,128 @@ msgstr "考虑在 'reconfigure' 之前运行 'guix pull'。~%" msgid "Failing to do that may downgrade your system!~%" msgstr "如果不这样做,可能会使你的系统降级!~%" -#: guix/scripts/system.scm:754 guix/scripts/system.scm:863 +#: guix/scripts/system.scm:754 guix/scripts/system.scm:864 #, scheme-format msgid "bootloader successfully installed on '~a'~%" msgstr "" -#: guix/scripts/system.scm:856 +#: guix/scripts/system.scm:857 #, scheme-format msgid "activating system...~%" msgstr "" -#: guix/scripts/system.scm:867 +#: guix/scripts/system.scm:868 msgid "" "To complete the upgrade, run 'herd restart SERVICE' to stop,\n" "upgrade, and restart each service that was not automatically restarted.\n" msgstr "" -#: guix/scripts/system.scm:870 +#: guix/scripts/system.scm:871 msgid "Run 'herd status' to view the list of services on your system.\n" msgstr "运行 'herd status' 以查看你系统上的服务的列表。\n" -#: guix/scripts/system.scm:874 +#: guix/scripts/system.scm:875 #, scheme-format msgid "initializing operating system under '~a'...~%" msgstr "" -#: guix/scripts/system.scm:894 guix/scripts/graph.scm:437 +#: guix/scripts/system.scm:895 guix/scripts/graph.scm:437 #, scheme-format msgid "~a: unknown backend~%" msgstr "~a:未知后端~%" -#: guix/scripts/system.scm:931 +#: guix/scripts/system.scm:932 msgid "The available image types are:\n" msgstr "" -#: guix/scripts/system.scm:941 +#: guix/scripts/system.scm:942 msgid "" "Usage: guix system [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the operating system declared in FILE according to ACTION.\n" "Some ACTIONS support additional ARGS.\n" msgstr "" -#: guix/scripts/system.scm:947 +#: guix/scripts/system.scm:948 msgid " search search for existing service types\n" msgstr "" -#: guix/scripts/system.scm:949 +#: guix/scripts/system.scm:950 msgid " reconfigure switch to a new operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:951 +#: guix/scripts/system.scm:952 msgid " roll-back switch to the previous operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:953 +#: guix/scripts/system.scm:954 msgid " describe describe the current system\n" msgstr "" -#: guix/scripts/system.scm:955 +#: guix/scripts/system.scm:956 msgid " list-generations list the system generations\n" msgstr "" -#: guix/scripts/system.scm:957 +#: guix/scripts/system.scm:958 msgid " switch-generation switch to an existing operating system configuration\n" msgstr "" -#: guix/scripts/system.scm:959 +#: guix/scripts/system.scm:960 msgid " delete-generations delete old system generations\n" msgstr "" -#: guix/scripts/system.scm:961 +#: guix/scripts/system.scm:962 msgid " build build the operating system without installing anything\n" msgstr "" -#: guix/scripts/system.scm:963 +#: guix/scripts/system.scm:964 msgid " container build a container that shares the host's store\n" msgstr "" -#: guix/scripts/system.scm:965 +#: guix/scripts/system.scm:966 msgid " vm build a virtual machine image that shares the host's store\n" msgstr "" -#: guix/scripts/system.scm:967 +#: guix/scripts/system.scm:968 msgid " image build a Guix System image\n" msgstr "" -#: guix/scripts/system.scm:969 +#: guix/scripts/system.scm:970 msgid " docker-image build a Docker image\n" msgstr "" -#: guix/scripts/system.scm:971 +#: guix/scripts/system.scm:972 msgid " init initialize a root file system to run GNU\n" msgstr "" -#: guix/scripts/system.scm:973 +#: guix/scripts/system.scm:974 msgid " extension-graph emit the service extension graph in Dot format\n" msgstr "" -#: guix/scripts/system.scm:975 +#: guix/scripts/system.scm:976 msgid " shepherd-graph emit the graph of shepherd services in Dot format\n" msgstr "" -#: guix/scripts/system.scm:979 +#: guix/scripts/system.scm:980 msgid "" "\n" " -d, --derivation return the derivation of the given system" msgstr "" -#: guix/scripts/system.scm:981 +#: guix/scripts/system.scm:982 msgid "" "\n" " -e, --expression=EXPR consider the operating-system EXPR evaluates to\n" " instead of reading FILE, when applicable" msgstr "" -#: guix/scripts/system.scm:984 +#: guix/scripts/system.scm:985 guix/scripts/home.scm:95 msgid "" "\n" " --allow-downgrades for 'reconfigure', allow downgrades to earlier\n" " channel revisions" msgstr "" -#: guix/scripts/system.scm:987 +#: guix/scripts/system.scm:988 msgid "" "\n" " --on-error=STRATEGY\n" @@ -4182,69 +4278,75 @@ msgid "" " or debug) when an error occurs while reading FILE" msgstr "" -#: guix/scripts/system.scm:991 +#: guix/scripts/system.scm:992 msgid "" "\n" " --list-image-types list available image types" msgstr "" -#: guix/scripts/system.scm:993 +#: guix/scripts/system.scm:994 msgid "" "\n" " -t, --image-type=TYPE for 'image', produce an image of TYPE" msgstr "" -#: guix/scripts/system.scm:995 +#: guix/scripts/system.scm:996 msgid "" "\n" " --image-size=SIZE for 'image', produce an image of SIZE" msgstr "" -#: guix/scripts/system.scm:997 +#: guix/scripts/system.scm:998 msgid "" "\n" " --no-bootloader for 'init', do not install a bootloader" msgstr "" -#: guix/scripts/system.scm:999 +#: guix/scripts/system.scm:1000 msgid "" "\n" " --volatile for 'image', make the root file system volatile" msgstr "" -#: guix/scripts/system.scm:1001 +#: guix/scripts/system.scm:1002 +msgid "" +"\n" +" --persistent for 'vm', make the root file system persistent" +msgstr "" + +#: guix/scripts/system.scm:1004 msgid "" "\n" " --label=LABEL for 'image', label disk image with LABEL" msgstr "" -#: guix/scripts/system.scm:1003 guix/scripts/pack.scm:1340 +#: guix/scripts/system.scm:1006 guix/scripts/pack.scm:1340 msgid "" "\n" " --save-provenance save provenance information" msgstr "" -#: guix/scripts/system.scm:1005 +#: guix/scripts/system.scm:1008 msgid "" "\n" " --share=SPEC for 'vm' and 'container', share host file system with\n" " read/write access according to SPEC" msgstr "" -#: guix/scripts/system.scm:1008 +#: guix/scripts/system.scm:1011 msgid "" "\n" " --expose=SPEC for 'vm' and 'container', expose host file system\n" " directory as read-only according to SPEC" msgstr "" -#: guix/scripts/system.scm:1011 +#: guix/scripts/system.scm:1014 msgid "" "\n" " -N, --network for 'container', allow containers to access the network" msgstr "" -#: guix/scripts/system.scm:1013 +#: guix/scripts/system.scm:1016 msgid "" "\n" " -r, --root=FILE for 'vm', 'image', 'container' and 'build',\n" @@ -4252,82 +4354,82 @@ msgid "" " register it as a garbage collector root" msgstr "" -#: guix/scripts/system.scm:1017 +#: guix/scripts/system.scm:1020 msgid "" "\n" " --full-boot for 'vm', make a full boot sequence" msgstr "" -#: guix/scripts/system.scm:1019 +#: guix/scripts/system.scm:1022 msgid "" "\n" " --no-graphic for 'vm', use the tty that we are started in for IO" msgstr "" -#: guix/scripts/system.scm:1021 +#: guix/scripts/system.scm:1024 msgid "" "\n" " --skip-checks skip file system and initrd module safety checks" msgstr "" -#: guix/scripts/system.scm:1028 +#: guix/scripts/system.scm:1031 msgid "" "\n" " --graph-backend=BACKEND\n" " use BACKEND for 'extension-graphs' and 'shepherd-graph'" msgstr "" -#: guix/scripts/system.scm:1180 +#: guix/scripts/system.scm:1187 #, scheme-format msgid "'~a' does not return an operating system or an image~%" msgstr "" -#: guix/scripts/system.scm:1204 guix/scripts/home.scm:216 +#: guix/scripts/system.scm:1211 guix/scripts/home.scm:230 #, scheme-format msgid "both file and expression cannot be specified~%" msgstr "" -#: guix/scripts/system.scm:1211 guix/scripts/home.scm:223 +#: guix/scripts/system.scm:1218 guix/scripts/home.scm:237 #, fuzzy, scheme-format msgid "no configuration specified~%" msgstr "未指定配置文件~%" -#: guix/scripts/system.scm:1319 guix/scripts/system.scm:1335 -#: guix/scripts/system.scm:1342 guix/scripts/system.scm:1348 -#: guix/scripts/home.scm:274 guix/scripts/home.scm:296 -#: guix/scripts/home.scm:301 guix/scripts/home.scm:307 -#: guix/scripts/home.scm:314 guix/scripts/import/gnu.scm:100 +#: guix/scripts/system.scm:1328 guix/scripts/system.scm:1344 +#: guix/scripts/system.scm:1351 guix/scripts/system.scm:1357 +#: guix/scripts/home.scm:287 guix/scripts/home.scm:309 +#: guix/scripts/home.scm:314 guix/scripts/home.scm:320 +#: guix/scripts/home.scm:327 guix/scripts/import/gnu.scm:100 #: guix/scripts/offload.scm:836 guix/scripts/offload.scm:848 #, scheme-format msgid "wrong number of arguments~%" msgstr "" -#: guix/scripts/system.scm:1324 +#: guix/scripts/system.scm:1333 #, scheme-format msgid "no system generation, nothing to describe~%" msgstr "" -#: guix/scripts/system.scm:1367 guix/scripts/home.scm:337 +#: guix/scripts/system.scm:1376 guix/scripts/home.scm:350 #, scheme-format msgid "~a: unknown action~%" msgstr "~a:未知操作~%" -#: guix/scripts/system.scm:1387 guix/scripts/home.scm:353 +#: guix/scripts/system.scm:1396 guix/scripts/home.scm:366 #, scheme-format msgid "wrong number of arguments for action '~a'~%" msgstr "" -#: guix/scripts/system.scm:1392 +#: guix/scripts/system.scm:1401 #, scheme-format msgid "guix system: missing command name~%" msgstr "" -#: guix/scripts/system.scm:1394 +#: guix/scripts/system.scm:1403 #, scheme-format msgid "Try 'guix system --help' for more information.~%" msgstr "尝试 'guix --help' 以获取更多信息。~%" -#: guix/scripts/system/search.scm:93 guix/ui.scm:1541 guix/ui.scm:1559 +#: guix/scripts/system/search.scm:93 guix/ui.scm:1544 guix/ui.scm:1562 msgid "unknown" msgstr "未知" @@ -4737,7 +4839,7 @@ msgstr "" " -h, --help 显示这份说明然后离开" #: guix/scripts/graph.scm:548 guix/scripts/pack.scm:1325 -#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:502 +#: guix/scripts/refresh.scm:150 guix/scripts/style.scm:797 msgid "" "\n" " -e, --expression=EXPR consider the package EXPR evaluates to" @@ -5360,43 +5462,88 @@ msgid "" " -f, --format=FORMAT display results as normalized record sets" msgstr "" -#: guix/scripts/deploy.scm:51 +#: guix/scripts/deploy.scm:54 msgid "" "Usage: guix deploy [OPTION] FILE...\n" "Perform the deployment specified by FILE.\n" msgstr "" -#: guix/scripts/deploy.scm:108 +#: guix/scripts/deploy.scm:63 +msgid "" +"\n" +" -x, --execute execute the following command on all the machines" +msgstr "" + +#: guix/scripts/deploy.scm:117 #, scheme-format msgid "The following ~d machine will be deployed:~%" msgid_plural "The following ~d machines will be deployed:~%" msgstr[0] "" -#: guix/scripts/deploy.scm:122 +#: guix/scripts/deploy.scm:131 #, fuzzy, scheme-format msgid "deploying to ~a...~%" msgstr "正删除 ~a~%" -#: guix/scripts/deploy.scm:134 guix/scripts/deploy.scm:138 +#: guix/scripts/deploy.scm:143 guix/scripts/deploy.scm:147 #, fuzzy, scheme-format msgid "failed to deploy ~a: ~a~%" msgstr "连接到 `~a' 失败:~a~%" -#: guix/scripts/deploy.scm:146 +#: guix/scripts/deploy.scm:155 #, scheme-format msgid "rolling back ~a...~%" msgstr "" -#: guix/scripts/deploy.scm:152 +#: guix/scripts/deploy.scm:161 #, scheme-format msgid "successfully deployed ~a~%" msgstr "成功部署 ~a~%" -#: guix/scripts/deploy.scm:167 +#: guix/scripts/deploy.scm:212 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command succeeded~%" +msgstr "guix:~a:未找到命令~%" + +#: guix/scripts/deploy.scm:215 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command exited with code ~a~%" +msgstr "guix:~a:未找到命令~%" + +#: guix/scripts/deploy.scm:218 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "~a: command stopped with signal ~a~%" +msgstr "guix:~a:未找到命令~%" + +#: guix/scripts/deploy.scm:221 +#, scheme-format +msgid "~a: command terminated with signal ~a~%" +msgstr "" + +#: guix/scripts/deploy.scm:225 +#, fuzzy, scheme-format +#| msgid "guix: ~a: command not found~%" +msgid "command output on ~a:~%" +msgstr "guix:~a:未找到命令~%" + +#: guix/scripts/deploy.scm:246 #, scheme-format msgid "missing deployment file argument~%" msgstr "" +#: guix/scripts/deploy.scm:249 +#, scheme-format +msgid "'--' was used by '-x' was not specified~%" +msgstr "" + +#: guix/scripts/deploy.scm:271 +#, scheme-format +msgid "'-x' specified but no command given~%" +msgstr "" + #: guix/gexp.scm:465 #, scheme-format msgid "resolving '~a' relative to current directory~%" @@ -5487,107 +5634,107 @@ msgstr "" msgid "exec failed with status ~d~%" msgstr "" -#: guix/transformations.scm:185 guix/transformations.scm:253 +#: guix/transformations.scm:186 guix/transformations.scm:254 #, fuzzy, scheme-format msgid "invalid replacement specification: ~s" msgstr "含糊的软件包规范 `~a'~%" -#: guix/transformations.scm:234 +#: guix/transformations.scm:235 #, scheme-format msgid "the source of ~a is not a Git reference" msgstr "" -#: guix/transformations.scm:337 +#: guix/transformations.scm:338 #, fuzzy, scheme-format msgid "~a: invalid Git URL replacement specification" msgstr "含糊的软件包规范 `~a'~%" -#: guix/transformations.scm:415 +#: guix/transformations.scm:416 #, fuzzy, scheme-format msgid "~a: invalid toolchain replacement specification" msgstr "含糊的软件包规范 `~a'~%" -#: guix/transformations.scm:517 +#: guix/transformations.scm:518 #, fuzzy msgid "failed to determine which compiler is used" msgstr "连接到 `~a' 失败:~a~%" -#: guix/transformations.scm:523 +#: guix/transformations.scm:524 #, fuzzy, scheme-format msgid "failed to determine whether ~a supports ~a" msgstr "连接到 `~a' 失败:~a~%" -#: guix/transformations.scm:529 +#: guix/transformations.scm:530 #, scheme-format msgid "compiler ~a does not support micro-architecture ~a" msgstr "" -#: guix/transformations.scm:581 +#: guix/transformations.scm:582 #, fuzzy, scheme-format msgid "tuning ~a for CPU ~a~%" msgstr "'~a'~% 签名无效" -#: guix/transformations.scm:721 +#: guix/transformations.scm:722 #, fuzzy, scheme-format msgid "~a: invalid package patch specification" msgstr "含糊的软件包规范 `~a'~%" -#: guix/transformations.scm:744 +#: guix/transformations.scm:745 #, scheme-format msgid "could not determine latest upstream release of '~a'~%" msgstr "" -#: guix/transformations.scm:752 +#: guix/transformations.scm:753 #, scheme-format msgid "cannot authenticate source of '~a', version ~a~%" msgstr "" -#: guix/transformations.scm:833 +#: guix/transformations.scm:840 #, scheme-format msgid "building for ~a instead of ~a, so tuning cannot be guessed~%" msgstr "" -#: guix/transformations.scm:859 +#: guix/transformations.scm:866 #, scheme-format msgid "Available package transformation options:~%" msgstr "" -#: guix/transformations.scm:865 +#: guix/transformations.scm:872 msgid "" "\n" " --with-source=[PACKAGE=]SOURCE\n" " use SOURCE when building the corresponding package" msgstr "" -#: guix/transformations.scm:868 +#: guix/transformations.scm:875 msgid "" "\n" " --with-input=PACKAGE=REPLACEMENT\n" " replace dependency PACKAGE by REPLACEMENT" msgstr "" -#: guix/transformations.scm:871 +#: guix/transformations.scm:878 msgid "" "\n" " --with-graft=PACKAGE=REPLACEMENT\n" " graft REPLACEMENT on packages that refer to PACKAGE" msgstr "" -#: guix/transformations.scm:874 +#: guix/transformations.scm:881 msgid "" "\n" " --with-branch=PACKAGE=BRANCH\n" " build PACKAGE from the latest commit of BRANCH" msgstr "" -#: guix/transformations.scm:877 +#: guix/transformations.scm:884 msgid "" "\n" " --with-commit=PACKAGE=COMMIT\n" " build PACKAGE from COMMIT" msgstr "" -#: guix/transformations.scm:880 +#: guix/transformations.scm:887 #, fuzzy msgid "" "\n" @@ -5598,7 +5745,7 @@ msgstr "" " --substitute-urls=URLS\n" " 与 URLS 的构建结果对比" -#: guix/transformations.scm:883 +#: guix/transformations.scm:890 #, fuzzy msgid "" "\n" @@ -5609,7 +5756,7 @@ msgstr "" " --substitute-urls=URLS\n" " 与 URLS 的构建结果对比" -#: guix/transformations.scm:886 +#: guix/transformations.scm:893 #, fuzzy msgid "" "\n" @@ -5620,21 +5767,21 @@ msgstr "" " --substitute-urls=URLS\n" " 与 URLS 的构建结果对比" -#: guix/transformations.scm:889 +#: guix/transformations.scm:896 msgid "" "\n" " --with-c-toolchain=PACKAGE=TOOLCHAIN\n" " build PACKAGE and its dependents with TOOLCHAIN" msgstr "" -#: guix/transformations.scm:892 +#: guix/transformations.scm:899 msgid "" "\n" " --with-debug-info=PACKAGE\n" " build PACKAGE and preserve its debug info" msgstr "" -#: guix/transformations.scm:895 +#: guix/transformations.scm:902 #, fuzzy msgid "" "\n" @@ -5645,13 +5792,13 @@ msgstr "" " --substitute-urls=URLS\n" " 与 URLS 的构建结果对比" -#: guix/transformations.scm:901 +#: guix/transformations.scm:908 msgid "" "\n" " --help-transform list package transformation options not shown here" msgstr "" -#: guix/transformations.scm:950 +#: guix/transformations.scm:957 #, scheme-format msgid "transformation '~a' had no effect on ~a~%" msgstr "" @@ -6128,12 +6275,12 @@ msgstr[0] "" msgid "~a: invalid Texinfo markup~%" msgstr "~a: 无效的数字~%" -#: guix/ui.scm:1873 +#: guix/ui.scm:1876 #, scheme-format msgid "invalid syntax: ~a~%" msgstr "无效语法: ~a~%" -#: guix/ui.scm:1882 +#: guix/ui.scm:1885 #, scheme-format msgid "Generation ~a\t~a" msgstr "" @@ -6143,7 +6290,7 @@ msgstr "" #. usual way of presenting dates in your locale. #. See https://www.gnu.org/software/guile/manual/html_node/SRFI_002d19-Date-to-string.html #. for details. -#: guix/ui.scm:1892 +#: guix/ui.scm:1895 #, scheme-format msgid "~b ~d ~Y ~T" msgstr "" @@ -6151,43 +6298,43 @@ msgstr "" #. TRANSLATORS: The word "current" here is an adjective for #. "Generation", as in "current generation". Use the appropriate #. gender where applicable. -#: guix/ui.scm:1898 +#: guix/ui.scm:1901 #, scheme-format msgid "~a\t(current)~%" msgstr "~a\t(当前)~%" -#: guix/ui.scm:1932 +#: guix/ui.scm:1935 #, fuzzy, scheme-format msgid "cannot lock profile ~a: ~a~%" msgstr "无法访问 `~a': ~a~%" -#: guix/ui.scm:1934 +#: guix/ui.scm:1937 #, scheme-format msgid "profile ~a is locked by another process~%" msgstr "" -#: guix/ui.scm:1963 +#: guix/ui.scm:1966 #, scheme-format msgid "switched from generation ~a to ~a~%" msgstr "" -#: guix/ui.scm:1979 +#: guix/ui.scm:1982 #, scheme-format msgid "deleting ~a~%" msgstr "正删除 ~a~%" -#: guix/ui.scm:2010 +#: guix/ui.scm:2013 #, scheme-format msgid "Try `guix --help' for more information.~%" msgstr "请尝试 “guix --help”,以获取更多信息。~%" -#: guix/ui.scm:2102 +#: guix/ui.scm:2105 msgid "" "Usage: guix OPTION | COMMAND ARGS...\n" "Run COMMAND with ARGS, if given.\n" msgstr "" -#: guix/ui.scm:2105 +#: guix/ui.scm:2108 #, fuzzy #| msgid "" #| "\n" @@ -6199,7 +6346,7 @@ msgstr "" "\n" " -h, --help 显示这份说明然后离开" -#: guix/ui.scm:2107 +#: guix/ui.scm:2110 #, fuzzy #| msgid "" #| "\n" @@ -6211,26 +6358,26 @@ msgstr "" "\n" " -V, --version 显示程序版本然后离开" -#: guix/ui.scm:2112 +#: guix/ui.scm:2115 msgid "COMMAND must be one of the sub-commands listed below:\n" msgstr "" -#: guix/ui.scm:2154 +#: guix/ui.scm:2157 #, scheme-format msgid "guix: ~a: command not found~%" msgstr "guix:~a:未找到命令~%" -#: guix/ui.scm:2156 +#: guix/ui.scm:2159 #, scheme-format msgid "Did you mean @code{~a}?" msgstr "" -#: guix/ui.scm:2190 +#: guix/ui.scm:2193 #, scheme-format msgid "guix: missing command name~%" msgstr "" -#: guix/ui.scm:2198 +#: guix/ui.scm:2201 #, scheme-format msgid "guix: unrecognized option '~a'~%" msgstr "guix: 无法识别的选项“~a”~%" @@ -6555,22 +6702,22 @@ msgstr "" msgid "unsupported manifest format" msgstr "" -#: guix/profiles.scm:2242 +#: guix/profiles.scm:2247 #, fuzzy, scheme-format msgid "while creating directory `~a': ~a" msgstr "连接到 `~a' 失败:~a~%" -#: guix/profiles.scm:2247 +#: guix/profiles.scm:2252 #, scheme-format msgid "Please create the @file{~a} directory, with you as the owner." msgstr "" -#: guix/profiles.scm:2256 +#: guix/profiles.scm:2261 #, scheme-format msgid "directory `~a' is not owned by you" msgstr "" -#: guix/profiles.scm:2260 +#: guix/profiles.scm:2265 #, scheme-format msgid "Please change the owner of @file{~a} to user ~s." msgstr "" @@ -7183,11 +7330,16 @@ msgstr "" msgid "'--profile' cannot be used with package options~%" msgstr "" -#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:275 +#: guix/scripts/environment.scm:940 guix/scripts/shell.scm:261 #, scheme-format msgid "no packages specified; creating an empty environment~%" msgstr "" +#: guix/scripts/environment.scm:979 +#, scheme-format +msgid "'--check' is unnecessary when using '--container'; doing nothing~%" +msgstr "" + #: guix/scripts/home/import.scm:179 msgid "" ";; This \"home-environment\" file can be passed to 'guix home reconfigure'\n" @@ -7197,90 +7349,90 @@ msgid "" ";; See the \"Replicating Guix\" section in the manual.\n" msgstr "" -#: guix/scripts/home.scm:65 +#: guix/scripts/home.scm:66 msgid "" "Usage: guix home [OPTION ...] ACTION [ARG ...] [FILE]\n" "Build the home environment declared in FILE according to ACTION.\n" "Some ACTIONS support additional ARGS.\n" msgstr "" -#: guix/scripts/home.scm:71 +#: guix/scripts/home.scm:72 msgid " search search for existing service types\n" msgstr "" -#: guix/scripts/home.scm:73 +#: guix/scripts/home.scm:74 msgid " reconfigure switch to a new home environment configuration\n" msgstr "" -#: guix/scripts/home.scm:75 +#: guix/scripts/home.scm:76 msgid " roll-back switch to the previous home environment configuration\n" msgstr "" -#: guix/scripts/home.scm:77 +#: guix/scripts/home.scm:78 msgid " describe describe the current home environment\n" msgstr "" -#: guix/scripts/home.scm:79 +#: guix/scripts/home.scm:80 msgid " list-generations list the home environment generations\n" msgstr "" -#: guix/scripts/home.scm:81 +#: guix/scripts/home.scm:82 msgid " switch-generation switch to an existing home environment configuration\n" msgstr "" -#: guix/scripts/home.scm:83 +#: guix/scripts/home.scm:84 msgid " delete-generations delete old home environment generations\n" msgstr "" -#: guix/scripts/home.scm:85 +#: guix/scripts/home.scm:86 msgid " build build the home environment without installing anything\n" msgstr "" -#: guix/scripts/home.scm:87 +#: guix/scripts/home.scm:88 msgid " import generates a home environment definition from dotfiles\n" msgstr "" -#: guix/scripts/home.scm:91 +#: guix/scripts/home.scm:92 msgid "" "\n" " -e, --expression=EXPR consider the home-environment EXPR evaluates to\n" " instead of reading FILE, when applicable" msgstr "" -#: guix/scripts/home.scm:196 +#: guix/scripts/home.scm:210 #, scheme-format msgid "'~a' does not return a home environment ~%" msgstr "" -#: guix/scripts/home.scm:280 +#: guix/scripts/home.scm:293 #, scheme-format msgid "'~a' populated with all the Home configuration files~%" msgstr "" -#: guix/scripts/home.scm:282 +#: guix/scripts/home.scm:295 #, scheme-format msgid "" "Run @command{guix home reconfigure ~a/home-configuration.scm} to effectively\n" "deploy the home environment described by these files.\n" msgstr "" -#: guix/scripts/home.scm:289 +#: guix/scripts/home.scm:302 #, scheme-format msgid "no home environment generation, nothing to describe~%" msgstr "" -#: guix/scripts/home.scm:358 +#: guix/scripts/home.scm:371 #, scheme-format msgid "guix home: missing command name~%" msgstr "" -#: guix/scripts/home.scm:360 +#: guix/scripts/home.scm:373 #, fuzzy, scheme-format #| msgid "Try `guix --help' for more information.~%" msgid "Try 'guix home --help' for more information.~%" msgstr "请尝试 “guix --help”,以获取更多信息。~%" -#: guix/scripts/home.scm:528 +#: guix/scripts/home.scm:541 #, fuzzy, scheme-format #| msgid "cannot switch to system generation '~a'~%" msgid "cannot switch to home environment generation '~a'~%" @@ -7318,7 +7470,7 @@ msgstr "" #: guix/scripts/import/cpan.scm:83 guix/scripts/import/crate.scm:97 #: guix/scripts/import/egg.scm:100 guix/scripts/import/gem.scm:98 -#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:100 +#: guix/scripts/import/opam.scm:107 guix/scripts/import/pypi.scm:101 #, scheme-format msgid "failed to download meta-data for package '~a'~%" msgstr "" @@ -7396,7 +7548,7 @@ msgid "" " --pin-versions use the exact versions of a module's dependencies" msgstr "" -#: guix/scripts/import/go.scm:117 +#: guix/scripts/import/go.scm:118 #, fuzzy, scheme-format msgid "failed to download meta-data for module '~a'.~%" msgstr "连接到 `~a' 失败:~a~%" @@ -7528,6 +7680,11 @@ msgid "" "Import and convert the Texlive package for PACKAGE-NAME.\n" msgstr "" +#: guix/scripts/import/texlive.scm:84 +#, fuzzy, scheme-format +msgid "failed to import package '~a'~%" +msgstr "连接到 `~a' 失败:~a~%" + #: guix/scripts/offload.scm:130 #, scheme-format msgid "The 'system' field is deprecated, please use 'systems' instead.~%" @@ -7970,14 +8127,14 @@ msgstr "" msgid "~a: unknown type of REPL~%" msgstr "~a: 未知节点类型~%" -#: guix/scripts/shell.scm:46 +#: guix/scripts/shell.scm:48 msgid "" "Usage: guix shell [OPTION] PACKAGES... [-- COMMAND...]\n" "Build an environment that includes PACKAGES and execute COMMAND or an\n" "interactive shell in that environment.\n" msgstr "" -#: guix/scripts/shell.scm:52 +#: guix/scripts/shell.scm:54 #, fuzzy msgid "" "\n" @@ -7986,13 +8143,13 @@ msgstr "" "\n" " -n, --dry-run 不要构建派生包" -#: guix/scripts/shell.scm:54 +#: guix/scripts/shell.scm:56 msgid "" "\n" " -f, --file=FILE add to the environment the package FILE evaluates to" msgstr "" -#: guix/scripts/shell.scm:56 +#: guix/scripts/shell.scm:58 #, fuzzy msgid "" "\n" @@ -8001,29 +8158,29 @@ msgstr "" "\n" " -h, --help 显示这份说明然后离开" -#: guix/scripts/shell.scm:58 +#: guix/scripts/shell.scm:60 msgid "" "\n" " --rebuild-cache rebuild cached environment, if any" msgstr "" -#: guix/scripts/shell.scm:199 +#: guix/scripts/shell.scm:201 #, fuzzy, scheme-format #| msgid " file name: ~a~%" msgid "ignoring invalid file name: '~a'~%" msgstr " 文件名:~a~%" -#: guix/scripts/shell.scm:280 +#: guix/scripts/shell.scm:266 #, fuzzy, scheme-format msgid "loading environment from '~a'...~%" msgstr "寻找最新版的 GNU~a..." -#: guix/scripts/shell.scm:286 +#: guix/scripts/shell.scm:272 #, scheme-format msgid "not loading '~a' because not authorized to do so~%" msgstr "" -#: guix/scripts/shell.scm:288 +#: guix/scripts/shell.scm:274 #, scheme-format msgid "" "To allow automatic loading of\n" @@ -8035,48 +8192,59 @@ msgid "" "@end example\n" msgstr "" -#: guix/scripts/shell.scm:386 +#: guix/scripts/shell.scm:431 msgid "" "Consider passing the @option{--check} option once\n" "to make sure your shell does not clobber environment variables." msgstr "" -#: guix/scripts/style.scm:241 +#: guix/scripts/style.scm:499 #, fuzzy, scheme-format msgid "~a: complex expression, bailing out~%" msgstr "签名不是有效的 S-表达式" -#: guix/scripts/style.scm:259 +#: guix/scripts/style.scm:517 #, scheme-format msgid "~a: input label '~a' does not match package name, bailing out~%" msgstr "" -#: guix/scripts/style.scm:264 +#: guix/scripts/style.scm:522 #, scheme-format msgid "~a: non-trivial input, bailing out~%" msgstr "" -#: guix/scripts/style.scm:288 +#: guix/scripts/style.scm:546 #, fuzzy, scheme-format msgid "~a: input expression is too short~%" msgstr "签名不是有效的 S-表达式" -#: guix/scripts/style.scm:380 +#: guix/scripts/style.scm:638 #, scheme-format msgid "~a: unsupported input style, bailing out~%" msgstr "" -#: guix/scripts/style.scm:392 +#: guix/scripts/style.scm:650 #, scheme-format msgid "would be edited~%" msgstr "" -#: guix/scripts/style.scm:482 +#: guix/scripts/style.scm:721 +#, scheme-format +msgid "no definition location for package ~a~%" +msgstr "" + +#: guix/scripts/style.scm:767 +#, fuzzy, scheme-format +#| msgid "~a: unknown action~%" +msgid "~a: unknown styling~%" +msgstr "~a:未知操作~%" + +#: guix/scripts/style.scm:774 #, fuzzy, scheme-format msgid "~a: invalid input simplification policy~%" msgstr "含糊的软件包规范 `~a'~%" -#: guix/scripts/style.scm:496 +#: guix/scripts/style.scm:788 #, fuzzy msgid "" "Usage: guix style [OPTION]... [PACKAGE]...\n" @@ -8085,7 +8253,13 @@ msgstr "" "用法:guix size [选项]... 软件包\n" "报告 <软件包> 及其依赖的大小。\n" -#: guix/scripts/style.scm:498 +#: guix/scripts/style.scm:790 +msgid "" +"\n" +" -S, --styling=RULE apply RULE, a styling rule" +msgstr "" + +#: guix/scripts/style.scm:793 #, fuzzy #| msgid "" #| "\n" @@ -8097,7 +8271,7 @@ msgstr "" "\n" " -n, --dry-run 不要构建派生包" -#: guix/scripts/style.scm:504 +#: guix/scripts/style.scm:799 msgid "" "\n" " --input-simplification=POLICY\n" @@ -8249,6 +8423,15 @@ msgstr "侦听 <套接字> 上的链接" msgid "produce debugging output" msgstr "生成调试输出" +#~ msgid "Please select a disk." +#~ msgstr "请选择一个磁盘。" + +#, fuzzy +#~ msgid "" +#~ "Failed to import package ~s.\n" +#~ "reason: ~s.~%" +#~ msgstr "连接到 `~a' 失败:~a~%" + #, fuzzy #~ msgid "Package not found in opam repository: ~a~%" #~ msgstr "~A: 无法找到供版本 ~a~% 的软件包" @@ -8266,6 +8449,3 @@ msgstr "生成调试输出" #~ msgid "error: libgcrypt version mismatch\n" #~ msgstr "错误:libgcrypt 版本不匹配\n" - -#~ msgid "~a: note: using ~a but ~a is available upstream~%" -#~ msgstr "~a: 注意: 使用 ~a 但 ~a 在上游可用~%" diff --git a/po/packages/da.po b/po/packages/da.po index 6cbac10802..bfeaef3261 100644 --- a/po/packages/da.po +++ b/po/packages/da.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: guix-packages 1.0.0-pre3\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" "PO-Revision-Date: 2019-05-01 19:30+01:00\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" @@ -49,20 +49,20 @@ msgstr "" msgid "This package provides a dictionary for the GNU Aspell spell checker." msgstr "Denne pakke tilbyder en ordbog for stavekontrollen GNU Aspell." -#: gnu/packages/aspell.scm:445 gnu/packages/libreoffice.scm:845 +#: gnu/packages/aspell.scm:450 gnu/packages/libreoffice.scm:845 #: gnu/packages/libreoffice.scm:918 msgid "" "This package provides a dictionary for the Hunspell spell-checking\n" "library." msgstr "Denne pakke tilbyder en ordbog for stavekontrolbiblioteket Hunspell." -#: gnu/packages/aspell.scm:525 +#: gnu/packages/aspell.scm:530 msgid "" "Ispell is an interactive spell-checking tool supporting many\n" "European languages." msgstr "" -#: gnu/packages/audio.scm:197 +#: gnu/packages/audio.scm:198 msgid "" "OpenSLES is a royalty-free, cross-platform,\n" "hardware-accelerated audio API tuned for embedded systems. It provides a\n" @@ -73,31 +73,31 @@ msgid "" "promoting the market for advanced audio." msgstr "" -#: gnu/packages/audio.scm:233 +#: gnu/packages/audio.scm:234 msgid "" "WildMIDI is a simple software midi player which has a core\n" "softsynth library that can be use with other applications." msgstr "" -#: gnu/packages/audio.scm:257 +#: gnu/packages/audio.scm:258 msgid "" "WebRTC-Audio-Processing library based on Google's\n" "implementation of WebRTC." msgstr "" -#: gnu/packages/audio.scm:277 +#: gnu/packages/audio.scm:278 msgid "" "VO-AACENC is the VisualOn implementation of Advanced Audio\n" "Coding (AAC) encoder." msgstr "" -#: gnu/packages/audio.scm:306 +#: gnu/packages/audio.scm:307 msgid "" "TinyALSA is a small library to interface with ALSA in the\n" "Linux kernel." msgstr "" -#: gnu/packages/audio.scm:329 +#: gnu/packages/audio.scm:330 msgid "" "Game-music-emu is a collection of video game music file emulators that\n" "support the following formats and systems:\n" @@ -123,44 +123,44 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/audio.scm:393 +#: gnu/packages/audio.scm:394 msgid "" "LibOpenMPT is a cross-platform C++ and C module playback\n" "library. It is based on the player code of the Open ModPlug Tracker project." msgstr "" -#: gnu/packages/audio.scm:424 +#: gnu/packages/audio.scm:425 msgid "" "LibOFA is an audio fingerprint library, created and provided\n" "by MusicIP." msgstr "" -#: gnu/packages/audio.scm:445 +#: gnu/packages/audio.scm:446 #, fuzzy msgid "FAAC is an MPEG-4 and MPEG-2 AAC encoder." msgstr "MPEG-4- og MPEG-2 AAC-afkoder" -#: gnu/packages/audio.scm:474 +#: gnu/packages/audio.scm:475 msgid "" "LibTiMidity is a MIDI to WAVE converter library that uses\n" "Gravis Ultrasound-compatible patch files to generate digital audio data from\n" "General MIDI files." msgstr "" -#: gnu/packages/audio.scm:499 +#: gnu/packages/audio.scm:500 msgid "" "VO-AMR is a library of VisualOn implementation of\n" "Adaptive Multi Rate Narrowband and Wideband (AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:518 +#: gnu/packages/audio.scm:519 msgid "" "OpenCore-AMR is a library of OpenCORE Framework\n" "implementation of Adaptive Multi Rate Narrowband and Wideband\n" "(AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:551 +#: gnu/packages/audio.scm:552 msgid "" "AlsaModularSynth is a digital implementation of a classical analog\n" "modular synthesizer system. It uses virtual control voltages to control the\n" @@ -174,7 +174,7 @@ msgstr "" "frekvensen f.eks. for VCO'en (Voltage Controlled Oscillator) og VCF-modulerne\n" "(Voltage Controlled Filter) følger konventionen for 1V/Octave." -#: gnu/packages/audio.scm:588 +#: gnu/packages/audio.scm:589 msgid "" "aubio is a tool designed for the extraction of annotations from audio\n" "signals. Its features include segmenting a sound file before each of its\n" @@ -182,21 +182,21 @@ msgid "" "streams from live audio." msgstr "" -#: gnu/packages/audio.scm:719 +#: gnu/packages/audio.scm:720 msgid "" "Ardour is a multi-channel digital audio workstation, allowing users to\n" "record, edit, mix and master audio and MIDI projects. It is targeted at audio\n" "engineers, musicians, soundtrack editors and composers." msgstr "" -#: gnu/packages/audio.scm:833 +#: gnu/packages/audio.scm:853 msgid "" "Audacity is a multi-track audio editor designed for recording, playing\n" "and editing digital audio. It features digital effects and spectrum analysis\n" "tools." msgstr "" -#: gnu/packages/audio.scm:889 +#: gnu/packages/audio.scm:909 msgid "" "This is an open-source version of SGI's audiofile library.\n" "It provides a uniform programming interface for processing of audio data to\n" @@ -207,14 +207,14 @@ msgid "" "G.711 mu-law and A-law." msgstr "" -#: gnu/packages/audio.scm:931 +#: gnu/packages/audio.scm:951 msgid "" "Autotalent is a LADSPA plugin for real-time pitch-correction. Among its\n" "controls are allowable notes, strength of correction, LFO for vibrato and\n" "formant warp." msgstr "" -#: gnu/packages/audio.scm:972 +#: gnu/packages/audio.scm:992 msgid "" "AZR-3 is a port of the free VST plugin AZR-3. It is a tonewheel organ\n" "with drawbars, distortion and rotating speakers. The organ has three\n" @@ -223,7 +223,7 @@ msgid "" "plugins are provided." msgstr "" -#: gnu/packages/audio.scm:1011 +#: gnu/packages/audio.scm:1031 msgid "" "Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments.\n" "The suite contains lots of effects (delay, modulation, signal processing,\n" @@ -232,32 +232,32 @@ msgid "" "tools (analyzer, mono/stereo tools, crossovers)." msgstr "" -#: gnu/packages/audio.scm:1053 +#: gnu/packages/audio.scm:1073 msgid "" "LV2 port of CAPS, a collection of audio plugins comprising basic virtual\n" "guitar amplification and a small range of classic effects, signal processors and\n" "generators of mostly elementary and occasionally exotic nature." msgstr "" -#: gnu/packages/audio.scm:1094 +#: gnu/packages/audio.scm:1114 msgid "" "The infamous plugins are a collection of LV2 audio plugins for live\n" "performances. The plugins include a cellular automaton synthesizer, an\n" "envelope follower, distortion effects, tape effects and more." msgstr "" -#: gnu/packages/audio.scm:1129 +#: gnu/packages/audio.scm:1149 msgid "" "Snapcast is a multi-room client-server audio player. Clients are time\n" "synchronized with the server to play synced audio." msgstr "" -#: gnu/packages/audio.scm:1159 +#: gnu/packages/audio.scm:1179 #, fuzzy msgid "This package provides Steve Harris's LADSPA plugins." msgstr "Denne pakke tilbyder et LADSPA-udvidelsesmodul for en stereo reverb-effekt." -#: gnu/packages/audio.scm:1199 +#: gnu/packages/audio.scm:1219 msgid "" "Swh-plugins-lv2 is a collection of audio plugins in LV2 format. Plugin\n" "classes include: dynamics (compressor, limiter), time (delay, chorus,\n" @@ -265,13 +265,13 @@ msgid "" "emulation (valve, tape), bit fiddling (decimator, pointer-cast), etc." msgstr "" -#: gnu/packages/audio.scm:1233 +#: gnu/packages/audio.scm:1253 msgid "" "@code{libdjinterop} is a C++ library that allows access to database\n" "formats used to store information about DJ record libraries." msgstr "" -#: gnu/packages/audio.scm:1295 gnu/packages/audio.scm:1326 +#: gnu/packages/audio.scm:1315 gnu/packages/audio.scm:1346 msgid "" "Tao is a software package for sound synthesis using physical\n" "models. It provides a virtual acoustic material constructed from masses and\n" @@ -281,13 +281,13 @@ msgid "" "object library." msgstr "" -#: gnu/packages/audio.scm:1361 +#: gnu/packages/audio.scm:1381 msgid "" "Csound is a user-programmable and user-extensible sound processing\n" "language and software synthesizer." msgstr "" -#: gnu/packages/audio.scm:1388 +#: gnu/packages/audio.scm:1408 msgid "" "midicomp can manipulate SMF (Standard MIDI File) files. It can both\n" " read and write SMF files in 0 or format 1 and also read and write its own\n" @@ -296,7 +296,7 @@ msgid "" " language, and recompiled back into a binary SMF file." msgstr "" -#: gnu/packages/audio.scm:1435 +#: gnu/packages/audio.scm:1455 msgid "" "clalsadrv is a C++ wrapper around the ALSA API simplifying access to\n" "ALSA PCM devices." @@ -304,14 +304,14 @@ msgstr "" "Clalsadrv er et C++-omslag omkring ALSA API'en, der forenkler adgang til\n" "ALSA PCM-enheder." -#: gnu/packages/audio.scm:1474 +#: gnu/packages/audio.scm:1494 msgid "" "The AMB plugins are a set of LADSPA ambisonics plugins, mainly to be\n" "used within Ardour. Features include: mono and stereo to B-format panning,\n" "horizontal rotator, square, hexagon and cube decoders." msgstr "" -#: gnu/packages/audio.scm:1511 +#: gnu/packages/audio.scm:1531 msgid "" "This package provides various LADSPA plugins. @code{cs_chorus} and\n" "@code{cs_phaser} provide chorus and phaser effects, respectively;\n" @@ -321,13 +321,13 @@ msgid "" "the non-linear circuit elements of their original analog counterparts." msgstr "" -#: gnu/packages/audio.scm:1551 +#: gnu/packages/audio.scm:1571 msgid "" "This package provides a stereo reverb LADSPA plugin based on the\n" "well-known greverb." msgstr "" -#: gnu/packages/audio.scm:1587 +#: gnu/packages/audio.scm:1607 msgid "" "This package provides a LADSPA plugin for a four-band parametric\n" "equalizer. Each section has an active/bypass switch, frequency, bandwidth and\n" @@ -342,7 +342,7 @@ msgid "" "for stage use." msgstr "" -#: gnu/packages/audio.scm:1632 +#: gnu/packages/audio.scm:1652 msgid "" "This package provides a LADSPA plugin to manipulate the stereo width of\n" "audio signals." @@ -350,7 +350,7 @@ msgstr "" "Denne pakke tilbyder et LADSPA-udvidelsesmodul til at manipulere stereodyben\n" "for lydsignaler." -#: gnu/packages/audio.scm:1669 +#: gnu/packages/audio.scm:1689 msgid "" "The @code{blvco} LADSPA plugin provides three anti-aliased oscillators:\n" "\n" @@ -365,7 +365,7 @@ msgid "" "output of analog synthesizers such as the Moog Voyager." msgstr "" -#: gnu/packages/audio.scm:1713 +#: gnu/packages/audio.scm:1733 msgid "" "This package provides a LADSPA plugin for a Wah effect with envelope\n" "follower." @@ -373,11 +373,11 @@ msgstr "" "Denne pakke tilbyder et LADSPA-udvidelsesmodul for wn Wah-effekt med\n" "kuvertfølger." -#: gnu/packages/audio.scm:1749 +#: gnu/packages/audio.scm:1769 msgid "This package provides a LADSPA plugin for a stereo reverb effect." msgstr "Denne pakke tilbyder et LADSPA-udvidelsesmodul for en stereo reverb-effekt." -#: gnu/packages/audio.scm:1791 +#: gnu/packages/audio.scm:1811 msgid "" "FluidSynth is a real-time software synthesizer based on the SoundFont 2\n" "specifications. FluidSynth reads and handles MIDI events from the MIDI input\n" @@ -385,24 +385,24 @@ msgid "" "also play midifiles using a Soundfont." msgstr "" -#: gnu/packages/audio.scm:1814 +#: gnu/packages/audio.scm:1834 #, fuzzy msgid "FAAD2 is an MPEG-4 and MPEG-2 AAC decoder supporting LC, Main, LTP, SBR, -PS, and DAB+." msgstr "" "FAAD2 er en MPEG-4- og MPEG-2 AAC-afkoder, der understøtter LC, Main, LTP, SBR,\n" "PS og DAB+." -#: gnu/packages/audio.scm:1855 +#: gnu/packages/audio.scm:1875 msgid "Faust is a programming language for realtime audio signal processing." msgstr "Faust er et programmeringssprog for behandling af lydsignaler i realtid." -#: gnu/packages/audio.scm:1919 +#: gnu/packages/audio.scm:1939 msgid "" "FreePats is a project to create a free and open set of GUS compatible\n" "patches that can be used with softsynths such as Timidity and WildMidi." msgstr "" -#: gnu/packages/audio.scm:1972 +#: gnu/packages/audio.scm:1992 msgid "" "Guitarix is a virtual guitar amplifier running JACK.\n" "Guitarix takes the signal from your guitar as a mono-signal from your sound\n" @@ -413,7 +413,7 @@ msgid "" "auto-wah." msgstr "" -#: gnu/packages/audio.scm:2028 +#: gnu/packages/audio.scm:2048 msgid "" "Rakarrack is a richly featured multi-effects processor emulating a\n" "guitar effects pedalboard. Effects include compressor, expander, noise gate,\n" @@ -425,14 +425,14 @@ msgid "" "well suited to all musical instruments and vocals." msgstr "" -#: gnu/packages/audio.scm:2084 +#: gnu/packages/audio.scm:2104 msgid "" "IR is a low-latency, real-time, high performance signal convolver\n" "especially for creating reverb effects. It supports impulse responses with 1,\n" "2 or 4 channels, in any soundfile format supported by libsndfile." msgstr "" -#: gnu/packages/audio.scm:2124 +#: gnu/packages/audio.scm:2144 msgid "" "JACK is a low-latency audio server. It can connect a number of\n" "different applications to an audio device, as well as allowing them to share\n" @@ -442,20 +442,20 @@ msgid "" "synchronous execution of all clients, and low latency operation." msgstr "" -#: gnu/packages/audio.scm:2220 +#: gnu/packages/audio.scm:2240 msgid "" "Jalv is a simple but fully featured LV2 host for JACK. It runs LV2\n" "plugins and exposes their ports as JACK ports, essentially making any LV2\n" "plugin function as a JACK application." msgstr "" -#: gnu/packages/audio.scm:2266 +#: gnu/packages/audio.scm:2286 msgid "" "LADSPA is a standard that allows software audio processors and effects\n" "to be plugged into a wide range of audio synthesis and recording packages." msgstr "" -#: gnu/packages/audio.scm:2318 +#: gnu/packages/audio.scm:2338 msgid "" "LASH is a session management system for audio applications. It allows\n" "you to save and restore audio sessions consisting of multiple interconneced\n" @@ -463,7 +463,7 @@ msgid "" "connections between them." msgstr "" -#: gnu/packages/audio.scm:2341 +#: gnu/packages/audio.scm:2361 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is\n" "designed to improve headphone listening of stereo audio records. Recommended\n" @@ -471,7 +471,7 @@ msgid "" "essential distortions." msgstr "" -#: gnu/packages/audio.scm:2364 +#: gnu/packages/audio.scm:2384 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and\n" "plugins is designed to improve headphone listening of stereo audio records.\n" @@ -480,13 +480,13 @@ msgid "" "with applications that support them (e.g. PulseAudio)." msgstr "" -#: gnu/packages/audio.scm:2390 +#: gnu/packages/audio.scm:2410 msgid "" "liblo is a lightweight library that provides an easy to use\n" "implementation of the Open Sound Control (@dfn{OSC}) protocol." msgstr "" -#: gnu/packages/audio.scm:2426 +#: gnu/packages/audio.scm:2446 msgid "" "RtAudio is a set of C++ classes that provides a common API for real-time\n" "audio input/output. It was designed with the following objectives:\n" @@ -505,7 +505,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/audio.scm:2462 +#: gnu/packages/audio.scm:2482 msgid "" "This package provides bindings for PortAudio v19, the\n" "cross-platform audio input/output stream library." @@ -513,7 +513,7 @@ msgstr "" "Denne pakke tilbyder bindinger for PortAudio v19,\n" "lydinddata/uddata-udsendelsesbiblioteket for flere platforme." -#: gnu/packages/audio.scm:2489 +#: gnu/packages/audio.scm:2509 msgid "" "Pyliblo is a Python wrapper for the liblo Open Sound Control (OSC)\n" "library. It supports almost the complete functionality of liblo, allowing you\n" @@ -521,7 +521,7 @@ msgid "" "included are the command line utilities @code{send_osc} and @code{dump_osc}." msgstr "" -#: gnu/packages/audio.scm:2526 +#: gnu/packages/audio.scm:2546 #, fuzzy msgid "" "This package provides python bindings for libsndfile based on\n" @@ -530,7 +530,7 @@ msgstr "" "Denne pakke tilbyder Pythonbindinger til Qt5-grænsefladen for\n" "Poppler PDF-optegningsbiblioteket." -#: gnu/packages/audio.scm:2544 +#: gnu/packages/audio.scm:2564 #, fuzzy #| msgid "" #| "This package provides commands to create and check XFS\n" @@ -542,7 +542,7 @@ msgstr "" "Denne pakke tilbyder kommandoer til at oprette og kontrollere\n" "XFS-filsystemer." -#: gnu/packages/audio.scm:2581 +#: gnu/packages/audio.scm:2601 msgid "" "@command{audio-to-midi} converts audio files to multichannel\n" "MIDI files. It accomplishes this by performing FFTs on all channels of the\n" @@ -552,14 +552,14 @@ msgid "" "frequencies. This data is then formatted to MIDI and written to disk." msgstr "" -#: gnu/packages/audio.scm:2624 +#: gnu/packages/audio.scm:2644 msgid "" "Lilv is a C library to make the use of LV2 plugins as simple as possible\n" "for applications. Lilv is the successor to SLV2, rewritten to be\n" "significantly faster and have minimal dependencies." msgstr "" -#: gnu/packages/audio.scm:2652 +#: gnu/packages/audio.scm:2672 msgid "" "LV2 is an open specification for audio plugins and host applications.\n" "At its core, LV2 is a simple stable interface, accompanied by extensions which\n" @@ -567,22 +567,22 @@ msgid "" "software." msgstr "" -#: gnu/packages/audio.scm:2688 +#: gnu/packages/audio.scm:2708 msgid "An LV2 port of the mda Piano VSTi." msgstr "En LV2-port af mda Piano VSTi." -#: gnu/packages/audio.scm:2702 +#: gnu/packages/audio.scm:2722 msgid "An LV2 port of the mda EPiano VSTi." msgstr "En LV2-port af mda EPiano VSTi." -#: gnu/packages/audio.scm:2732 +#: gnu/packages/audio.scm:2752 msgid "" "The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and\n" "extensions into easy to use C++ classes. It is the successor of\n" "lv2-c++-tools." msgstr "" -#: gnu/packages/audio.scm:2774 +#: gnu/packages/audio.scm:2794 msgid "" "OpenAL provides capabilities for playing audio in a virtual 3D\n" "environment. Distance attenuation, doppler shift, and directional sound\n" @@ -592,17 +592,17 @@ msgid "" "buffers, and audio capture." msgstr "" -#: gnu/packages/audio.scm:2805 +#: gnu/packages/audio.scm:2825 msgid "freealut is the OpenAL Utility Toolkit." msgstr "freealut er OpenAL Utility Toolkit." -#: gnu/packages/audio.scm:2837 +#: gnu/packages/audio.scm:2857 msgid "" "Patchage is a modular patch bay for audio and MIDI systems based on JACK\n" "and ALSA." msgstr "" -#: gnu/packages/audio.scm:2862 +#: gnu/packages/audio.scm:2882 msgid "" "The Portable C Audio Library (pcaudiolib) provides a C@tie{}API to\n" "different audio devices such as ALSA or PulseAudio." @@ -610,20 +610,20 @@ msgstr "" "Portable C Audio Library (pcaudiolib) tilbyder en C@tie{}API til\n" "andre lydenheder såsom ALSA eller PulseAudio." -#: gnu/packages/audio.scm:2889 +#: gnu/packages/audio.scm:2909 msgid "" "Control a Jack server. Allows you to plug various sources\n" "into various outputs and to start, stop and configure jackd" msgstr "" -#: gnu/packages/audio.scm:2921 +#: gnu/packages/audio.scm:2941 msgid "" "QJackRcd is a simple graphical stereo recorder for JACK\n" "supporting silence processing for automatic pause, file splitting, and\n" "background file post-processing." msgstr "" -#: gnu/packages/audio.scm:3029 +#: gnu/packages/audio.scm:3049 msgid "" "SuperCollider is a synthesis engine (@code{scsynth} or\n" "@code{supernova}) and programming language (@code{sclang}). It can be used\n" @@ -635,20 +635,20 @@ msgid "" "using Guix System." msgstr "" -#: gnu/packages/audio.scm:3057 +#: gnu/packages/audio.scm:3077 #, fuzzy msgid "This package provides libshout plus IDJC extensions." msgstr "" "Denne pakke tilbyder Pythonbindinger til virtualiseringsbiblioteket\n" "libvirt." -#: gnu/packages/audio.scm:3083 +#: gnu/packages/audio.scm:3103 msgid "" "Raul (Real-time Audio Utility Library) is a C++ utility library primarily\n" "aimed at audio/musical applications." msgstr "" -#: gnu/packages/audio.scm:3119 +#: gnu/packages/audio.scm:3139 msgid "" "This package contains the @command{resample} and\n" "@command{windowfilter} command line utilities. The @command{resample} command\n" @@ -657,26 +657,26 @@ msgid "" "filters using the so-called @emph{window method}." msgstr "" -#: gnu/packages/audio.scm:3160 +#: gnu/packages/audio.scm:3180 msgid "" "Rubber Band is a library and utility program that permits changing the\n" "tempo and pitch of an audio recording independently of one another." msgstr "" -#: gnu/packages/audio.scm:3184 +#: gnu/packages/audio.scm:3204 msgid "" "RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut, and API specific\n" "classes) that provide a common cross-platform API for realtime MIDI\n" "input/output." msgstr "" -#: gnu/packages/audio.scm:3210 +#: gnu/packages/audio.scm:3230 msgid "" "Sratom is a library for serialising LV2 atoms to/from RDF, particularly\n" "the Turtle syntax." msgstr "" -#: gnu/packages/audio.scm:3238 +#: gnu/packages/audio.scm:3258 msgid "" "Suil is a lightweight C library for loading and wrapping LV2 plugin UIs.\n" "\n" @@ -688,13 +688,13 @@ msgid "" "Suil currently supports every combination of Gtk, Qt, and X11." msgstr "" -#: gnu/packages/audio.scm:3270 +#: gnu/packages/audio.scm:3290 msgid "" "@code{libebur128} is a C library that implements the EBU R 128 standard\n" "for loudness normalisation." msgstr "" -#: gnu/packages/audio.scm:3324 +#: gnu/packages/audio.scm:3344 msgid "" "TiMidity++ is a software synthesizer. It can play MIDI files by\n" "converting them into PCM waveform data; give it a MIDI data along with digital\n" @@ -703,33 +703,33 @@ msgid "" "disks as various audio file formats." msgstr "" -#: gnu/packages/audio.scm:3364 +#: gnu/packages/audio.scm:3384 msgid "" "Vamp is an audio processing plugin system for plugins that extract\n" "descriptive information from audio data — typically referred to as audio\n" "analysis plugins or audio feature extraction plugins." msgstr "" -#: gnu/packages/audio.scm:3408 +#: gnu/packages/audio.scm:3428 msgid "" "SBSMS (Subband Sinusoidal Modeling Synthesis) is software for time\n" "stretching and pitch scaling of audio. This package contains the library." msgstr "" -#: gnu/packages/audio.scm:3435 +#: gnu/packages/audio.scm:3455 msgid "" "@code{libkeyfinder} is a small C++11 library for estimating the musical\n" "key of digital audio." msgstr "" -#: gnu/packages/audio.scm:3465 +#: gnu/packages/audio.scm:3485 msgid "" "WavPack is an audio compression format with lossless, lossy and hybrid\n" "compression modes. This package contains command-line programs and library to\n" "encode and decode wavpack files." msgstr "" -#: gnu/packages/audio.scm:3486 +#: gnu/packages/audio.scm:3506 msgid "" "Libmodplug renders mod music files as raw audio data, for playing or\n" "conversion. mod, .s3m, .it, .xm, and a number of lesser-known formats are\n" @@ -737,21 +737,21 @@ msgid "" "surround and reverb." msgstr "" -#: gnu/packages/audio.scm:3507 +#: gnu/packages/audio.scm:3527 msgid "" "Libxmp is a library that renders module files to PCM data. It supports\n" "over 90 mainstream and obscure module formats including Protracker (MOD),\n" "Scream Tracker 3 (S3M), Fast Tracker II (XM), and Impulse Tracker (IT)." msgstr "" -#: gnu/packages/audio.scm:3531 +#: gnu/packages/audio.scm:3551 msgid "" "Xmp is a portable module player that plays over 90 mainstream and\n" "obscure module formats, including Protracker MOD, Fasttracker II XM, Scream\n" "Tracker 3 S3M and Impulse Tracker IT files." msgstr "" -#: gnu/packages/audio.scm:3556 +#: gnu/packages/audio.scm:3576 msgid "" "SoundTouch is an audio processing library for changing the tempo, pitch\n" "and playback rates of audio streams or audio files. It is intended for\n" @@ -759,7 +759,7 @@ msgid "" "control functionality, or just for playing around with the sound effects." msgstr "" -#: gnu/packages/audio.scm:3595 +#: gnu/packages/audio.scm:3615 msgid "" "SoX (Sound eXchange) is a command line utility that can convert\n" "various formats of computer audio files to other formats. It can also\n" @@ -767,60 +767,60 @@ msgid "" "can play and record audio files." msgstr "" -#: gnu/packages/audio.scm:3620 +#: gnu/packages/audio.scm:3640 msgid "" "The SoX Resampler library (libsoxr) performs one-dimensional sample-rate\n" "conversion. It may be used, for example, to resample PCM-encoded audio." msgstr "" -#: gnu/packages/audio.scm:3643 +#: gnu/packages/audio.scm:3663 msgid "" "TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder based on\n" "tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code and\n" "portions of LAME." msgstr "" -#: gnu/packages/audio.scm:3699 +#: gnu/packages/audio.scm:3719 msgid "" "PortAudio is a portable C/C++ audio I/O library providing a simple API\n" "to record and/or play sound using a callback function or a blocking read/write\n" "interface." msgstr "" -#: gnu/packages/audio.scm:3728 +#: gnu/packages/audio.scm:3748 msgid "" "Qsynth is a GUI front-end application for the FluidSynth SoundFont\n" "synthesizer written in C++." msgstr "" -#: gnu/packages/audio.scm:3767 +#: gnu/packages/audio.scm:3787 msgid "" "RSound allows you to send audio from an application and transfer it\n" "directly to a different computer on your LAN network. It is an audio daemon\n" "with a much different focus than most other audio daemons." msgstr "" -#: gnu/packages/audio.scm:3797 +#: gnu/packages/audio.scm:3817 msgid "" "XJackFreak is an audio analysis and equalizing tool for the Jack Audio\n" "Connection Kit. It can display the FFT of any input, modify it and output the\n" "result." msgstr "" -#: gnu/packages/audio.scm:3849 +#: gnu/packages/audio.scm:3869 msgid "" "Zita convolver is a C++ library providing a real-time convolution\n" "engine." msgstr "" -#: gnu/packages/audio.scm:3901 +#: gnu/packages/audio.scm:3921 msgid "" "Libzita-resampler is a C++ library for resampling audio signals. It is\n" "designed to be used within a real-time processing context, to be fast, and to\n" "provide high-quality sample rate conversion." msgstr "" -#: gnu/packages/audio.scm:3947 +#: gnu/packages/audio.scm:3967 msgid "" "Zita-alsa-pcmi is a C++ wrapper around the ALSA API. It provides easy\n" "access to ALSA PCM devices, taking care of the many functions required to\n" @@ -828,7 +828,7 @@ msgid "" "point audio data." msgstr "" -#: gnu/packages/audio.scm:3971 +#: gnu/packages/audio.scm:3991 msgid "" "Cuetools is a set of programs that are useful for manipulating\n" "and using CUE sheet (cue) files and Table of Contents (toc) files. CUE and TOC\n" @@ -836,14 +836,14 @@ msgid "" "machine-readable ASCII format." msgstr "" -#: gnu/packages/audio.scm:4000 +#: gnu/packages/audio.scm:4020 msgid "" "mp3guessenc is a command line utility that tries to detect the\n" "encoder used for an MPEG Layer III (MP3) file, as well as scan any MPEG audio\n" "file (any layer) and print a lot of useful information." msgstr "" -#: gnu/packages/audio.scm:4021 +#: gnu/packages/audio.scm:4041 msgid "" "shntool is a multi-purpose WAVE data processing and reporting\n" "utility. File formats are abstracted from its core, so it can process any file\n" @@ -852,46 +852,46 @@ msgid "" "use them split WAVE data into multiple files." msgstr "" -#: gnu/packages/audio.scm:4061 +#: gnu/packages/audio.scm:4081 msgid "" "Dcadec is a DTS Coherent Acoustics surround sound decoder\n" "with support for HD extensions." msgstr "" -#: gnu/packages/audio.scm:4098 +#: gnu/packages/audio.scm:4118 msgid "" "BS1770GAIN is a loudness scanner compliant with ITU-R BS.1770 and its\n" "flavors EBU R128, ATSC A/85, and ReplayGain 2.0. It helps normalizing the\n" "loudness of audio and video files to the same level." msgstr "" -#: gnu/packages/audio.scm:4130 +#: gnu/packages/audio.scm:4150 msgid "" "An easy to use audio filtering library made from webrtc\n" "code, used in @code{libtoxcore}." msgstr "" -#: gnu/packages/audio.scm:4183 +#: gnu/packages/audio.scm:4203 msgid "" "This C library provides an encoder and a decoder for the GSM\n" "06.10 RPE-LTP lossy speech compression algorithm." msgstr "" -#: gnu/packages/audio.scm:4206 +#: gnu/packages/audio.scm:4226 msgid "" "This package contains wrappers for accessing the ALSA API from Python.\n" "It is currently fairly complete for PCM devices, and has some support for\n" "mixers." msgstr "" -#: gnu/packages/audio.scm:4230 +#: gnu/packages/audio.scm:4250 msgid "" "This package provides an encoder for the LDAC\n" "high-resolution Bluetooth audio streaming codec for streaming at up to 990\n" "kbps at 24 bit/96 kHz." msgstr "" -#: gnu/packages/audio.scm:4274 +#: gnu/packages/audio.scm:4294 msgid "" "This project is a rebirth of a direct integration between\n" "Bluez and ALSA. Since Bluez >= 5, the built-in integration has been removed\n" @@ -904,14 +904,14 @@ msgid "" "on the ALSA software PCM plugin." msgstr "" -#: gnu/packages/audio.scm:4340 +#: gnu/packages/audio.scm:4360 msgid "" "Snd is a sound editor modelled loosely after Emacs. It can be\n" "customized and extended using either the s7 Scheme implementation (included in\n" "the Snd sources), Ruby, or Forth." msgstr "" -#: gnu/packages/audio.scm:4369 +#: gnu/packages/audio.scm:4389 msgid "" "Noise Repellent is an LV2 plugin to reduce noise. It has\n" "the following features:\n" @@ -931,31 +931,31 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/audio.scm:4436 +#: gnu/packages/audio.scm:4456 msgid "" "RNNoise is a library that uses deep learning to apply\n" "noise suppression to audio sources with voice presence. This package provides\n" "an LV2 audio plugin." msgstr "" -#: gnu/packages/audio.scm:4480 +#: gnu/packages/audio.scm:4500 msgid "" "@code{cli-visualizer} displays fast-Fourier\n" "transforms (FFTs) of the sound being played, as well as other graphical\n" "representations." msgstr "" -#: gnu/packages/audio.scm:4530 +#: gnu/packages/audio.scm:4550 msgid "" "C.A.V.A. is a bar audio spectrum visualizer for the terminal\n" "using ALSA, MPD, PulseAudio, or a FIFO buffer as its input." msgstr "" -#: gnu/packages/audio.scm:4564 +#: gnu/packages/audio.scm:4584 msgid "Fluid-3 is Frank Wen's pro-quality GM soundfont." msgstr "" -#: gnu/packages/audio.scm:4586 +#: gnu/packages/audio.scm:4606 msgid "" "FDK is a library for encoding and decoding Advanced Audio\n" "Coding (AAC) format audio, developed by Fraunhofer IIS, and included as part of\n" @@ -966,14 +966,14 @@ msgid "" " surround)." msgstr "" -#: gnu/packages/audio.scm:4626 +#: gnu/packages/audio.scm:4646 msgid "" "OpenShot Audio Library (libopenshot-audio) allows\n" "high-quality editing and playback of audio, and is based on the JUCE\n" "library." msgstr "" -#: gnu/packages/audio.scm:4652 +#: gnu/packages/audio.scm:4672 msgid "" "FAudio is an XAudio reimplementation that focuses solely on\n" "developing fully accurate DirectX Audio runtime libraries." @@ -981,7 +981,7 @@ msgstr "" "FAudio e ren XAudio-reimplementering, der alene fokuserer på\n" "at udvikle helt præcise DirectX Audio-kørselstidsbiblioteker." -#: gnu/packages/audio.scm:4679 +#: gnu/packages/audio.scm:4699 msgid "" "Gnaural is a programmable auditory binaural beat synthesizer\n" "intended to be used for brainwave entrainment. Gnaural supports creation of\n" @@ -990,20 +990,20 @@ msgid "" "other Gnaural instances, allowing synchronous sessions between many users." msgstr "" -#: gnu/packages/audio.scm:4714 +#: gnu/packages/audio.scm:4734 msgid "" "DarkIce is a live audio streamer. It takes audio input from\n" "a sound card, encodes it into Ogg Vorbis and/or mp3, and sends the audio\n" "stream to one or more IceCast and/or ShoutCast servers." msgstr "" -#: gnu/packages/audio.scm:4738 +#: gnu/packages/audio.scm:4758 msgid "" "Libltc is a POSIX-C Library for handling\n" "@dfn{Linear/Longitudinal Time Code} (LTC) data." msgstr "" -#: gnu/packages/audio.scm:4772 +#: gnu/packages/audio.scm:4792 msgid "" "TTA performs lossless compression on multichannel 8,16 and 24 bits\n" "data of the Wav audio files. Being lossless means that no data-\n" @@ -1014,14 +1014,14 @@ msgid "" "supports both of ID3v1/v2 and APEv2 tags." msgstr "" -#: gnu/packages/audio.scm:4805 +#: gnu/packages/audio.scm:4825 msgid "" "@code{libsoundio} is a C library providing audio input and\n" "output. The API is suitable for real-time software such as digital audio\n" "workstations as well as consumer software such as music players." msgstr "" -#: gnu/packages/audio.scm:4831 +#: gnu/packages/audio.scm:4851 msgid "" "Redkite is a small GUI toolkit developed in C++17 and\n" "inspired from other well known GUI toolkits such as Qt and GTK. It is\n" @@ -1030,7 +1030,7 @@ msgid "" "as is the case with audio plugins." msgstr "" -#: gnu/packages/audio.scm:4903 +#: gnu/packages/audio.scm:4923 msgid "" "Carla is a modular audio plugin host, with features like\n" "transport control, automation of parameters via MIDI CC and remote control\n" @@ -1039,7 +1039,7 @@ msgid "" "default and preferred audio driver but also supports native drivers like ALSA." msgstr "" -#: gnu/packages/audio.scm:4939 +#: gnu/packages/audio.scm:4959 msgid "" "Ecasound is a software package designed for multitrack audio\n" "processing. It can be used for simple tasks like audio playback, recording and\n" @@ -1051,28 +1051,28 @@ msgid "" "in the package." msgstr "" -#: gnu/packages/audio.scm:4977 +#: gnu/packages/audio.scm:4997 msgid "" "libaudec is a wrapper library over ffmpeg, sndfile and\n" "libsamplerate for reading and resampling audio files, based on Robin Gareus'\n" "@code{audio_decoder} code." msgstr "" -#: gnu/packages/audio.scm:5007 +#: gnu/packages/audio.scm:5027 msgid "" "lv2lint is an LV2 lint-like tool that checks whether a\n" "given plugin and its UI(s) match up with the provided metadata and adhere\n" "to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5041 +#: gnu/packages/audio.scm:5061 msgid "" "lv2toweb allows the user to create an xhtml page with information\n" "about the given LV2 plugin, provided that the plugin and its UI(s) match up\n" "with the provided metadata and adhere to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5069 +#: gnu/packages/audio.scm:5089 msgid "" "ZToolkit (Ztk) is a cross-platform GUI toolkit heavily\n" "inspired by GTK. It handles events and low level drawing on behalf of\n" @@ -1082,7 +1082,7 @@ msgid "" "minimum." msgstr "" -#: gnu/packages/audio.scm:5102 +#: gnu/packages/audio.scm:5122 msgid "" "libInstPatch is a library for processing digital sample based MIDI\n" "instrument \"patch\" files. The types of files libInstPatch supports are used\n" @@ -1091,28 +1091,28 @@ msgid "" "edited, converted, compressed and saved." msgstr "" -#: gnu/packages/audio.scm:5149 +#: gnu/packages/audio.scm:5169 msgid "" "The LSP DSP library provides a set of functions that perform\n" "SIMD-optimized computing on several hardware architectures. All functions\n" "currently operate on IEEE-754 single-precision floating-point numbers." msgstr "" -#: gnu/packages/audio.scm:5180 +#: gnu/packages/audio.scm:5200 msgid "" "Codec 2 is a speech codec designed for communications quality speech\n" "between 700 and 3200 bit/s. The main application is low bandwidth HF/VHF\n" "digital radio." msgstr "" -#: gnu/packages/audio.scm:5206 +#: gnu/packages/audio.scm:5226 msgid "" "The mbelib library provides support for the 7200x4400 bit/s codec used\n" "in P25 Phase 1, the 7100x4400 bit/s codec used in ProVoice and the @emph{Half\n" "Rate} 3600x2250 bit/s vocoder used in various radio systems." msgstr "" -#: gnu/packages/audio.scm:5299 +#: gnu/packages/audio.scm:5319 msgid "" "Ableton Link is a C++ library that synchronizes musical beat, tempo, and phase\n" "across multiple applications running on one or more devices. Applications on devices\n" @@ -1121,20 +1121,20 @@ msgid "" "while still staying in time." msgstr "" -#: gnu/packages/audio.scm:5360 +#: gnu/packages/audio.scm:5380 msgid "" "Butt is a tool to stream audio to a ShoutCast or\n" "Icecast server." msgstr "" -#: gnu/packages/audio.scm:5406 +#: gnu/packages/audio.scm:5426 msgid "" "siggen is a set of tools for imitating a laboratory signal\n" "generator, generating audio signals out of Linux's /dev/dsp audio\n" "device. There is support for mono and/or stereo and 8 or 16 bit samples." msgstr "" -#: gnu/packages/audio.scm:5453 +#: gnu/packages/audio.scm:5473 msgid "" "@code{python-pysox} is a wrapper around the @command{sox}\n" "command line tool. The API offers @code{Transformer} and @code{Combiner}\n" @@ -1144,7 +1144,7 @@ msgid "" "and much more." msgstr "" -#: gnu/packages/audio.scm:5492 +#: gnu/packages/audio.scm:5512 msgid "" "@code{python-resampy} implements the band-limited sinc interpolation\n" "method for sampling rate conversion as described by Julius O. Smith at the\n" @@ -1152,34 +1152,34 @@ msgid "" "Home Page}." msgstr "" -#: gnu/packages/audio.scm:5528 +#: gnu/packages/audio.scm:5548 msgid "" "@code{librosa} is a python package for music and audio analysis. It\n" "provides the building blocks necessary to create music information retrieval\n" "systems." msgstr "" -#: gnu/packages/audio.scm:5561 +#: gnu/packages/audio.scm:5581 msgid "" "MDA-LV2 is an LV2 port of the MDA plugins. It includes effects and a few\n" "instrument plugins." msgstr "" -#: gnu/packages/audio.scm:5593 +#: gnu/packages/audio.scm:5613 msgid "" "The Odio SACD shared library is a decoding engine which takes a Super\n" "Audio CD source and extracts a 24-bit high resolution WAV file. It handles\n" "both DST and DSD streams." msgstr "" -#: gnu/packages/audio.scm:5618 +#: gnu/packages/audio.scm:5638 msgid "" "Odio SACD is a command-line application which takes a Super Audio CD\n" "source and extracts a 24-bit high resolution WAV file. It handles both DST\n" "and DSD streams." msgstr "" -#: gnu/packages/backup.scm:155 +#: gnu/packages/backup.scm:165 msgid "" "Duplicity backs up directories by producing encrypted tar-format volumes\n" "and uploading them to a remote or local file server. Because duplicity uses\n" @@ -1196,7 +1196,7 @@ msgstr "" "underskrive disse arkiver, så vil de være sikret mod spionage og/eller\n" "ændring af serveren." -#: gnu/packages/backup.scm:180 +#: gnu/packages/backup.scm:190 msgid "" "Par2cmdline uses Reed-Solomon error-correcting codes to\n" "generate and verify PAR2 recovery files. These files can be distributed\n" @@ -1208,7 +1208,7 @@ msgid "" "can even repair them." msgstr "" -#: gnu/packages/backup.scm:219 +#: gnu/packages/backup.scm:229 msgid "" "Hdup2 is a backup utility, its aim is to make backup really simple. The\n" "backup scheduling is done by means of a cron job. It supports an\n" @@ -1221,7 +1221,7 @@ msgstr "" "sikkerhedskopier, krypterede sikkerhedskopier og opdelte sikkerhedskopier\n" "(kaldt klumper) så der nemt kan brændes til cd/dvd." -#: gnu/packages/backup.scm:316 +#: gnu/packages/backup.scm:326 msgid "" "Libarchive provides a flexible interface for reading and writing\n" "archives in various formats such as tar and cpio. Libarchive also supports\n" @@ -1239,7 +1239,7 @@ msgstr "" "Bemærk venligst at der i øjeblikket ikke er indbygget understøttelse\n" "for vilkårlig vilkårlig adgang eller for direkte modifikation i arkivet." -#: gnu/packages/backup.scm:380 +#: gnu/packages/backup.scm:390 msgid "" "Rdup is a utility inspired by rsync and the plan9 way of doing backups.\n" "Rdup itself does not backup anything, it only print a list of absolute\n" @@ -1252,7 +1252,7 @@ msgstr "" "skripter er krævet til for det videre arbejde med denne liste og\n" "implementering af sikkerhedskopistrategien." -#: gnu/packages/backup.scm:419 +#: gnu/packages/backup.scm:429 msgid "" "SnapRAID backs up files stored across multiple storage devices, such as\n" "disk arrays, in an efficient way reminiscent of its namesake @acronym{RAID,\n" @@ -1278,7 +1278,7 @@ msgid "" "remain fully idle, saving power and producing less noise." msgstr "" -#: gnu/packages/backup.scm:469 +#: gnu/packages/backup.scm:479 msgid "" "Btar is a tar-compatible archiver which allows arbitrary compression and\n" "ciphering, redundancy, differential backup, indexed extraction, multicore\n" @@ -1290,7 +1290,7 @@ msgstr "" "indekseret udtrækning, komprimering med flere kerner, inddata- og uddata-\n" "serialisering, og tolerance for delvise arkivfejl." -#: gnu/packages/backup.scm:496 +#: gnu/packages/backup.scm:506 msgid "" "Rdiff-backup backs up one directory to another, possibly over a network.\n" "The target directory ends up a copy of the source directory, but extra reverse\n" @@ -1318,7 +1318,7 @@ msgstr "" "placering og kun forskellene vil blive overført. Endelig er rdiff-backup\n" "nem at bruge og startopsætningen er lavet med fornuftige standarder." -#: gnu/packages/backup.scm:532 +#: gnu/packages/backup.scm:542 msgid "" "rsnapshot is a file system snapshot utility based on rsync.\n" "rsnapshot makes it easy to make periodic snapshots of local machines, and\n" @@ -1326,7 +1326,7 @@ msgid "" "rsnapshot uses hard links to deduplicate identical files." msgstr "" -#: gnu/packages/backup.scm:610 +#: gnu/packages/backup.scm:620 msgid "" "Libchop is a set of utilities and library for data backup and\n" "distributed storage. Its main application is @command{chop-backup}, an\n" @@ -1337,17 +1337,17 @@ msgid "" "detection, and lossless compression." msgstr "" -#: gnu/packages/backup.scm:740 +#: gnu/packages/backup.scm:750 msgid "" "Borg is a deduplicating backup program. Optionally, it\n" "supports compression and authenticated encryption. The main goal of Borg is to\n" "provide an efficient and secure way to backup data. The data deduplication\n" "technique used makes Borg suitable for daily backups since only changes are\n" -"stored. The authenticated encryption technique makes it suitable for backups\n" -"to not fully trusted targets. Borg is a fork of Attic." +"stored. The authenticated encryption technique makes it suitable for\n" +"storing backups on untrusted computers." msgstr "" -#: gnu/packages/backup.scm:771 +#: gnu/packages/backup.scm:781 msgid "" "wimlib is a C library and set of command-line utilities for\n" "creating, modifying, extracting, and mounting archives in the Windows Imaging\n" @@ -1355,14 +1355,14 @@ msgid "" "NTFS volumes using @code{ntfs-3g}, preserving NTFS-specific attributes." msgstr "" -#: gnu/packages/backup.scm:879 +#: gnu/packages/backup.scm:889 msgid "" "With dirvish you can maintain a set of complete images of your\n" "file systems with unattended creation and expiration. A dirvish backup vault\n" "is like a time machine for your data." msgstr "" -#: gnu/packages/backup.scm:974 +#: gnu/packages/backup.scm:984 msgid "" "Restic is a program that does backups right and was designed\n" "with the following principles in mind:\n" @@ -1394,7 +1394,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/backup.scm:1025 +#: gnu/packages/backup.scm:1035 msgid "" "ZBackup is a globally-deduplicating backup tool, based on the\n" "ideas found in Rsync. Feed a large @file{.tar} into it, and it will\n" @@ -1407,7 +1407,7 @@ msgid "" "is format-agnostic, so you can feed virtually any files to it." msgstr "" -#: gnu/packages/backup.scm:1061 +#: gnu/packages/backup.scm:1071 msgid "" "Dump examines files in a file system, determines which ones\n" "need to be backed up, and copies those files to a specified disk, tape or\n" @@ -1418,14 +1418,44 @@ msgid "" "interactive mode." msgstr "" -#: gnu/packages/backup.scm:1105 +#: gnu/packages/backup.scm:1131 +msgid "" +"Btrbk is a backup tool for Btrfs subvolumes, taking\n" +"advantage of Btrfs specific capabilities to create atomic snapshots and\n" +"transfer them incrementally to your backup locations. The source and target\n" +"locations are specified in a config file, which allows easily configuring\n" +"simple scenarios like e.g. a @i{laptop with locally attached backup disks}, as\n" +"well as more complex ones, e.g. a @i{server receiving backups from several\n" +"hosts via SSH, with different retention policy}. It has features such as:\n" +"@itemize\n" +"@item atomic snapshots\n" +"@item incremental backups\n" +"@item flexible retention policy\n" +"@item backups to multiple destinations\n" +"@item transfer via SSH\n" +"@item resume backups (for removable and mobile devices)\n" +"@item archive to offline storage\n" +"@item encrypted backups to non-btrfs storage\n" +"@item wildcard subvolumes (useful for Docker and LXC containers)\n" +"@item transaction log\n" +"@item comprehensive list and statistics output\n" +"@item resolve and trace Btrfs parent-child and received-from relationships\n" +"@item list file changes between backups\n" +"@item calculate accurate disk space usage based on block regions.\n" +"@end itemize\n" +"Btrbk is designed to run as a cron job for triggering periodic snapshots and\n" +"backups, as well as from the command line (e.g. for instantly creating\n" +"additional snapshots)." +msgstr "" + +#: gnu/packages/backup.scm:1194 msgid "" "Burp is a network backup and restore program. It attempts\n" "to reduce network traffic and the amount of space that is used by each\n" "backup." msgstr "" -#: gnu/packages/backup.scm:1136 +#: gnu/packages/backup.scm:1225 msgid "" "Disarchive can disassemble software archives into data\n" "and metadata. The goal is to create a small amount of metadata that\n" @@ -1435,7 +1465,7 @@ msgid "" "compression parameters used by Gzip." msgstr "" -#: gnu/packages/backup.scm:1181 +#: gnu/packages/backup.scm:1270 msgid "" "borgmatic is simple, configuration-driven backup software for servers\n" "and workstations. Protect your files with client-side encryption. Backup\n" @@ -1443,6 +1473,14 @@ msgid "" "borgmatic is powered by borg." msgstr "" +#: gnu/packages/backup.scm:1330 +msgid "" +"Vorta is a graphical backup client based on the Borg backup\n" +"tool. It supports the use of remote backup repositories. It can perform\n" +"scheduled backups, and has a graphical tool for browsing and extracting the Borg\n" +"archives." +msgstr "" + #: gnu/packages/base.scm:98 msgid "" "GNU Hello prints the message \"Hello, world!\" and then exits. It\n" @@ -1578,7 +1616,7 @@ msgstr "" "gendannes efter at deres kilder har ændret sig. GNU make tilbyder\n" "mange funktionsrige udvidelser der ligger udover standardredskabet." -#: gnu/packages/base.scm:550 +#: gnu/packages/base.scm:558 msgid "" "GNU Binutils is a collection of tools for working with binary files.\n" "Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler.\n" @@ -1588,14 +1626,14 @@ msgid "" "included." msgstr "" -#: gnu/packages/base.scm:694 +#: gnu/packages/base.scm:685 msgid "" "The linker wrapper (or @code{ld-wrapper}) wraps the linker to add any\n" "missing @code{-rpath} flags, and to detect any misuse of libraries outside of\n" "the store." msgstr "" -#: gnu/packages/base.scm:930 +#: gnu/packages/base.scm:921 msgid "" "Any Unix-like operating system needs a C library: the library which\n" "defines the \"system calls\" and other basic facilities such as open, malloc,\n" @@ -1605,21 +1643,21 @@ msgid "" "with the Linux kernel." msgstr "" -#: gnu/packages/base.scm:1057 +#: gnu/packages/base.scm:1048 msgid "" "This package provides all the locales supported by the GNU C Library,\n" "more than 400 in total. To use them set the @code{LOCPATH} environment variable\n" "to the @code{share/locale} sub-directory of this package." msgstr "" -#: gnu/packages/base.scm:1206 +#: gnu/packages/base.scm:1198 msgid "" "The which program finds the location of executables in PATH, with a\n" "variety of options. It is an alternative to the shell \"type\" built-in\n" "command." msgstr "" -#: gnu/packages/base.scm:1329 +#: gnu/packages/base.scm:1321 msgid "" "The Time Zone Database (often called tz or zoneinfo)\n" "contains code and data that represent the history of local time for many\n" @@ -1628,14 +1666,14 @@ msgid "" "and daylight-saving rules." msgstr "" -#: gnu/packages/base.scm:1367 +#: gnu/packages/base.scm:1359 msgid "" "libiconv provides an implementation of the iconv function for systems\n" "that lack it. iconv is used to convert between character encodings in a\n" "program. It supports a wide variety of different encodings." msgstr "" -#: gnu/packages/bittorrent.scm:131 +#: gnu/packages/bittorrent.scm:135 msgid "" "Transmission is a BitTorrent client that comes with graphical,\n" "textual, and Web user interfaces. Transmission also has a daemon for\n" @@ -1643,54 +1681,54 @@ msgid "" "DHT, µTP, PEX and Magnet Links." msgstr "" -#: gnu/packages/bittorrent.scm:165 +#: gnu/packages/bittorrent.scm:169 msgid "" "transmission-remote-gtk is a GTK client for remote management\n" "of the Transmission BitTorrent client, using its HTTP RPC protocol." msgstr "" -#: gnu/packages/bittorrent.scm:187 +#: gnu/packages/bittorrent.scm:191 msgid "" "LibTorrent is a BitTorrent library used by and developed in parallel\n" "with the BitTorrent client rtorrent. It is written in C++ with emphasis on\n" "speed and efficiency." msgstr "" -#: gnu/packages/bittorrent.scm:215 +#: gnu/packages/bittorrent.scm:219 msgid "" "rTorrent is a BitTorrent client with an ncurses interface. It supports\n" "full encryption, DHT, PEX, and Magnet Links. It can also be controlled via\n" "XML-RPC over SCGI." msgstr "" -#: gnu/packages/bittorrent.scm:249 +#: gnu/packages/bittorrent.scm:253 msgid "" "Tremc is a console client, with a curses interface, for the\n" "Transmission BitTorrent daemon." msgstr "" -#: gnu/packages/bittorrent.scm:290 +#: gnu/packages/bittorrent.scm:294 msgid "" "Transmission-remote-cli is a console client, with a curses\n" "interface, for the Transmission BitTorrent daemon. This package is no longer\n" "maintained upstream." msgstr "" -#: gnu/packages/bittorrent.scm:340 +#: gnu/packages/bittorrent.scm:345 msgid "" "Aria2 is a lightweight, multi-protocol & multi-source command-line\n" "download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and Metalink.\n" "Aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces." msgstr "" -#: gnu/packages/bittorrent.scm:374 +#: gnu/packages/bittorrent.scm:381 msgid "" "uGet is portable download manager with GTK+ interface supporting\n" "HTTP, HTTPS, BitTorrent and Metalink, supporting multi-connection\n" "downloads, download scheduling, download rate limiting." msgstr "" -#: gnu/packages/bittorrent.scm:406 +#: gnu/packages/bittorrent.scm:413 msgid "" "mktorrent is a simple command-line utility to create BitTorrent\n" "@dfn{metainfo} files, often known simply as @dfn{torrents}, from both single\n" @@ -1700,14 +1738,14 @@ msgid "" "and will take advantage of multiple processor cores where possible." msgstr "" -#: gnu/packages/bittorrent.scm:457 +#: gnu/packages/bittorrent.scm:472 msgid "" "libtorrent-rasterbar is a feature-complete C++ BitTorrent implementation\n" "focusing on efficiency and scalability. It runs on embedded devices as well as\n" "desktops." msgstr "" -#: gnu/packages/bittorrent.scm:508 +#: gnu/packages/bittorrent.scm:523 msgid "" "qBittorrent is a BitTorrent client programmed in C++/Qt that uses\n" "libtorrent (sometimes called libtorrent-rasterbar) by Arvid Norberg.\n" @@ -1717,7 +1755,7 @@ msgid "" "features." msgstr "" -#: gnu/packages/bittorrent.scm:580 +#: gnu/packages/bittorrent.scm:604 msgid "" "Deluge contains the common features to BitTorrent clients such as\n" "Protocol Encryption, DHT, Local Peer Discovery (LSD), Peer Exchange\n" @@ -2032,7 +2070,16 @@ msgid "" "functionality in a C++ iostream." msgstr "" -#: gnu/packages/compression.scm:1443 +#: gnu/packages/compression.scm:1416 +msgid "" +"Zopfli Compression Algorithm is a compression library\n" +"programmed in C to perform very good, but slow, deflate or zlib compression.\n" +"ZopfliCompress supports the deflate, gzip and zlib output formats. This\n" +"library can only compress, not decompress; existing zlib or deflate libraries\n" +"can decompress the data." +msgstr "" + +#: gnu/packages/compression.scm:1469 msgid "" "ZPAQ is a command-line archiver for realistic situations with\n" "many duplicate and already compressed files. It backs up only those files\n" @@ -2046,13 +2093,13 @@ msgid "" "or junctions, and always follows hard links." msgstr "" -#: gnu/packages/compression.scm:1545 +#: gnu/packages/compression.scm:1571 msgid "" "@command{unshield} is a tool and library for extracting @file{.cab}\n" " archives from InstallShield installers." msgstr "" -#: gnu/packages/compression.scm:1624 +#: gnu/packages/compression.scm:1650 msgid "" "Zstandard (@command{zstd}) is a lossless compression algorithm\n" "that combines very fast operation with a compression ratio comparable to that of\n" @@ -2062,7 +2109,7 @@ msgid "" "speed." msgstr "" -#: gnu/packages/compression.scm:1672 +#: gnu/packages/compression.scm:1698 msgid "" "Parallel Zstandard (PZstandard or @command{pzstd}) is a\n" "multi-threaded implementation of the @uref{http://zstd.net/, Zstandard\n" @@ -2075,7 +2122,7 @@ msgid "" "the actual decompression, the other input and output." msgstr "" -#: gnu/packages/compression.scm:1712 +#: gnu/packages/compression.scm:1738 msgid "" "Zip is a compression and file packaging/archive utility. Zip is useful\n" "for packaging a set of files for distribution, for archiving files, and for\n" @@ -2090,7 +2137,7 @@ msgid "" "Compression ratios of 2:1 to 3:1 are common for text files." msgstr "" -#: gnu/packages/compression.scm:1801 +#: gnu/packages/compression.scm:1827 msgid "" "UnZip is an extraction utility for archives compressed in .zip format,\n" "also called \"zipfiles\".\n" @@ -2101,7 +2148,7 @@ msgid "" "recreates the stored directory structure by default." msgstr "" -#: gnu/packages/compression.scm:1853 +#: gnu/packages/compression.scm:1879 msgid "" "Ziptime helps make @file{.zip} archives reproducible by replacing\n" "timestamps in the file header with a fixed time (1 January 2008).\n" @@ -2110,11 +2157,11 @@ msgid "" "@command{zip} to prevent it from storing the ``universal time'' field." msgstr "" -#: gnu/packages/compression.scm:1880 +#: gnu/packages/compression.scm:1906 msgid "ZZipLib is a library based on zlib for accessing zip files." msgstr "ZZipLib er et bibliotek baseret på zlib for adgang til zip-filer." -#: gnu/packages/compression.scm:1904 +#: gnu/packages/compression.scm:1930 msgid "" "Libzip is a C library for reading, creating, and modifying\n" "zip archives. Files can be added from data buffers, files, or compressed data\n" @@ -2122,7 +2169,7 @@ msgid "" "archive can be reverted." msgstr "" -#: gnu/packages/compression.scm:1937 +#: gnu/packages/compression.scm:1963 msgid "" "The main command is @command{aunpack} which extracts files\n" "from an archive. The other commands provided are @command{apack} (to create\n" @@ -2132,7 +2179,7 @@ msgid "" "of archives." msgstr "" -#: gnu/packages/compression.scm:1963 +#: gnu/packages/compression.scm:1989 msgid "" "Lunzip is a decompressor for files in the lzip compression format (.lz),\n" "written as a single small C tool with no dependencies. This makes it\n" @@ -2142,7 +2189,7 @@ msgid "" "Lunzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:1990 +#: gnu/packages/compression.scm:2016 msgid "" "Clzip is a compressor and decompressor for files in the lzip compression\n" "format (.lz), written as a single small C tool with no dependencies. This makes\n" @@ -2151,7 +2198,7 @@ msgid "" "Clzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:2018 +#: gnu/packages/compression.scm:2044 msgid "" "Lzlib is a C library for in-memory LZMA compression and decompression in\n" "the lzip format. It supports integrity checking of the decompressed data, and\n" @@ -2159,7 +2206,7 @@ msgid "" "corrupted input." msgstr "" -#: gnu/packages/compression.scm:2042 +#: gnu/packages/compression.scm:2068 msgid "" "Plzip is a massively parallel (multi-threaded) lossless data compressor\n" "and decompressor that uses the lzip file format (.lz). Files produced by plzip\n" @@ -2173,13 +2220,13 @@ msgid "" "single-member files which can't be decompressed in parallel." msgstr "" -#: gnu/packages/compression.scm:2074 +#: gnu/packages/compression.scm:2100 msgid "" "innoextract allows extracting Inno Setup installers under\n" "non-Windows systems without running the actual installer using wine." msgstr "" -#: gnu/packages/compression.scm:2096 +#: gnu/packages/compression.scm:2122 msgid "" "ISA-L is a collection of optimized low-level functions\n" "targeting storage applications. ISA-L includes:\n" @@ -2197,7 +2244,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/compression.scm:2156 +#: gnu/packages/compression.scm:2182 msgid "" "This package provides the reference implementation of Brotli,\n" "a generic-purpose lossless compression algorithm that compresses data using a\n" @@ -2209,13 +2256,13 @@ msgid "" "The specification of the Brotli Compressed Data Format is defined in RFC 7932." msgstr "" -#: gnu/packages/compression.scm:2176 +#: gnu/packages/compression.scm:2202 msgid "" "This package provides a Python interface to the @code{brotli}\n" "package, an implementation of the Brotli lossless compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2200 +#: gnu/packages/compression.scm:2226 msgid "" "UCL implements a number of compression algorithms that\n" "achieve an excellent compression ratio while allowing fast decompression.\n" @@ -2225,7 +2272,7 @@ msgid "" "decompression is a little bit slower." msgstr "" -#: gnu/packages/compression.scm:2248 +#: gnu/packages/compression.scm:2274 msgid "" "The Ultimate Packer for eXecutables (UPX) is an executable file\n" "compressor. UPX typically reduces the file size of programs and shared\n" @@ -2233,7 +2280,7 @@ msgid "" "download times, and other distribution and storage costs." msgstr "" -#: gnu/packages/compression.scm:2276 +#: gnu/packages/compression.scm:2302 msgid "" "QuaZIP is a simple C++ wrapper over Gilles Vollant's\n" "ZIP/UNZIP package that can be used to access ZIP archives. It uses\n" @@ -2247,7 +2294,7 @@ msgid "" "reading from and writing to ZIP archives." msgstr "" -#: gnu/packages/compression.scm:2335 +#: gnu/packages/compression.scm:2361 msgid "" "The zchunk compressed file format allows splitting a file\n" "into independent chunks. This makes it possible to retrieve only changed\n" @@ -2270,7 +2317,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/compression.scm:2391 +#: gnu/packages/compression.scm:2417 msgid "" "Zutils is a collection of utilities able to process any combination of\n" "compressed and uncompressed files transparently. If any given file, including\n" @@ -2287,14 +2334,14 @@ msgid "" "at run time, and must be installed separately." msgstr "" -#: gnu/packages/compression.scm:2449 +#: gnu/packages/compression.scm:2475 msgid "" "This package provides a script to unpack self-extracting\n" "archives generated by @command{makeself} or @command{mojo} without running the\n" "possibly untrusted extraction shell script." msgstr "" -#: gnu/packages/compression.scm:2477 +#: gnu/packages/compression.scm:2503 msgid "" "(N)compress provides the original compress and uncompress\n" "programs that used to be the de facto UNIX standard for compressing and\n" @@ -2302,7 +2349,7 @@ msgid "" "file compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2504 +#: gnu/packages/compression.scm:2530 msgid "" "Xarchiver is a front-end to various command line archiving\n" "tools. It uses GTK+ tool-kit and is designed to be desktop-environment\n" @@ -2311,13 +2358,13 @@ msgid "" "archiver is not installed." msgstr "" -#: gnu/packages/compression.scm:2541 +#: gnu/packages/compression.scm:2567 msgid "" "Archive huge numbers of files, or split massive tar archives into smaller\n" "chunks." msgstr "" -#: gnu/packages/compression.scm:2574 +#: gnu/packages/compression.scm:2600 msgid "" "Blosc is a high performance compressor optimized for binary data. It has\n" "been designed to transmit data to the processor cache faster than the\n" @@ -2327,14 +2374,14 @@ msgid "" "computations." msgstr "" -#: gnu/packages/compression.scm:2612 +#: gnu/packages/compression.scm:2638 msgid "" "ECM is a utility that converts ECM files, i.e., CD data files\n" "with their error correction data losslessly rearranged for better compression,\n" "to their original, binary CD format." msgstr "" -#: gnu/packages/compression.scm:2642 +#: gnu/packages/compression.scm:2668 msgid "" "Libdeflate is a library for fast, whole-buffer DEFLATE-based\n" "compression and decompression. The supported formats are:\n" @@ -2346,7 +2393,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/compression.scm:2672 +#: gnu/packages/compression.scm:2698 msgid "" "Tarlz is a massively parallel (multi-threaded) combined implementation of\n" "the tar archiver and the lzip compressor. Tarlz creates, lists, and extracts\n" @@ -2357,7 +2404,7 @@ msgid "" "can append files to the end of such compressed archives." msgstr "" -#: gnu/packages/compression.scm:2706 +#: gnu/packages/compression.scm:2732 msgid "" "The Concise Binary Object Representation (CBOR) is a data format whose\n" "design goals include the possibility of extremely small code size, fairly\n" @@ -2366,17 +2413,17 @@ msgid "" "serializations such as ASN.1 and MessagePack." msgstr "" -#: gnu/packages/compression.scm:2739 +#: gnu/packages/compression.scm:2765 msgid "Fcrackzip is a Zip file password cracker." msgstr "" -#: gnu/packages/databases.scm:211 +#: gnu/packages/databases.scm:216 msgid "" "4store is a RDF/SPARQL store written in C, supporting\n" "either single machines or networked clusters." msgstr "" -#: gnu/packages/databases.scm:255 +#: gnu/packages/databases.scm:260 msgid "" "@code{pg_tmp} creates temporary PostgreSQL databases, suitable for tasks\n" "like running software test suites. Temporary databases created with\n" @@ -2385,14 +2432,14 @@ msgid "" "60)." msgstr "" -#: gnu/packages/databases.scm:281 +#: gnu/packages/databases.scm:286 msgid "" "This package provides a utility for dumping the contents of an\n" "ElasticSearch index to a compressed file and restoring the dumpfile back to an\n" "ElasticSearch server" msgstr "" -#: gnu/packages/databases.scm:433 +#: gnu/packages/databases.scm:438 msgid "" "Firebird is an SQL @acronym{RDBMS, relational database management system}\n" "with rich support for ANSI SQL (e.g., @code{INSERT...RETURNING}) including\n" @@ -2412,20 +2459,20 @@ msgid "" "database later." msgstr "" -#: gnu/packages/databases.scm:506 +#: gnu/packages/databases.scm:511 msgid "" "LevelDB is a fast key-value storage library that provides an ordered\n" "mapping from string keys to string values." msgstr "" -#: gnu/packages/databases.scm:526 +#: gnu/packages/databases.scm:531 msgid "" "Memcached is an in-memory key-value store. It has a small\n" "and generic API, and was originally intended for use with dynamic web\n" "applications." msgstr "" -#: gnu/packages/databases.scm:588 +#: gnu/packages/databases.scm:593 msgid "" "libMemcached is a library to use memcached in C/C++\n" "applications. It comes with a complete reference guide and documentation of\n" @@ -2439,51 +2486,76 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:625 +#: gnu/packages/databases.scm:630 msgid "" "@code{pylibmc} is a client in Python for memcached. It is a wrapper\n" "around TangentOrg’s libmemcached library, and can be used as a drop-in\n" "replacement for the code@{python-memcached} library." msgstr "" -#: gnu/packages/databases.scm:653 +#: gnu/packages/databases.scm:662 +#, fuzzy +#| msgid "Implementation of the Perl programming language" +msgid "This is a memcache client library for the Go programming language." +msgstr "Implementering af programmeringssproget Perl" + +#: gnu/packages/databases.scm:685 +#, fuzzy +msgid "This package provides memcache client and server functionality." +msgstr "" +"Denne pakke tilbyder Pythonbindinger til virtualiseringsbiblioteket\n" +"libvirt." + +#: gnu/packages/databases.scm:711 msgid "" "@code{litecli} is a command-line client for SQLite databases that has\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:685 +#: gnu/packages/databases.scm:732 +msgid "" +"This Python package provides an API to execute meta-commands (AKA\n" +"\"special\", or \"backslash commands\") on PostgreSQL." +msgstr "" + +#: gnu/packages/databases.scm:763 +msgid "" +"@code{pgcli} is a command line interface for PostgreSQL with\n" +"autocompletion and syntax highlighting." +msgstr "" + +#: gnu/packages/databases.scm:801 msgid "" "MyCLI is a command line interface for MySQL, MariaDB, and Percona with\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:782 +#: gnu/packages/databases.scm:898 msgid "" "MySQL is a fast, reliable, and easy to use relational database\n" "management system that supports the standardized Structured Query\n" "Language." msgstr "" -#: gnu/packages/databases.scm:1045 +#: gnu/packages/databases.scm:1161 msgid "" "MariaDB is a multi-user and multi-threaded SQL database server, designed\n" "as a drop-in replacement of MySQL." msgstr "" -#: gnu/packages/databases.scm:1070 +#: gnu/packages/databases.scm:1186 msgid "" "The MariaDB Connector/C is used to connect applications\n" "developed in C/C++ to MariaDB and MySQL databases." msgstr "" -#: gnu/packages/databases.scm:1093 +#: gnu/packages/databases.scm:1209 msgid "" "Galera is a wsrep-provider that is used with MariaDB for load-balancing\n" "and high-availability (HA)." msgstr "" -#: gnu/packages/databases.scm:1147 +#: gnu/packages/databases.scm:1263 msgid "" "PostgreSQL is a powerful object-relational database system. It is fully\n" "ACID compliant, has full support for foreign keys, joins, views, triggers, and\n" @@ -2493,19 +2565,27 @@ msgid "" "pictures, sounds, or video." msgstr "" -#: gnu/packages/databases.scm:1269 +#: gnu/packages/databases.scm:1395 +msgid "" +"TimescaleDB is an database designed to make SQL scalable for\n" +"time-series data. It is engineered up from PostgreSQL and packaged as a\n" +"PostgreSQL extension, providing automatic partitioning across time and space\n" +"(partitioning key), as well as full SQL support." +msgstr "" + +#: gnu/packages/databases.scm:1476 msgid "" "@code{pgloader} is a program that can load data or migrate databases from\n" "CSV, DB3, iXF, SQLite, MS-SQL or MySQL to PostgreSQL." msgstr "" -#: gnu/packages/databases.scm:1293 +#: gnu/packages/databases.scm:1500 msgid "" "PyMySQL is a pure-Python MySQL client library, based on PEP 249.\n" "Most public APIs are compatible with @command{mysqlclient} and MySQLdb." msgstr "" -#: gnu/packages/databases.scm:1320 +#: gnu/packages/databases.scm:1527 msgid "" "QDBM is a library of routines for managing a\n" "database. The database is a simple data file containing key-value\n" @@ -2515,7 +2595,7 @@ msgid "" "organized in a hash table or B+ tree." msgstr "" -#: gnu/packages/databases.scm:1357 +#: gnu/packages/databases.scm:1564 msgid "" "GNU Recutils is a set of tools and libraries for creating and\n" "manipulating text-based, human-editable databases. Despite being text-based,\n" @@ -2524,7 +2604,7 @@ msgid "" "types are supported, as is encryption." msgstr "" -#: gnu/packages/databases.scm:1389 +#: gnu/packages/databases.scm:1596 msgid "" "This package provides an Emacs major mode @code{rec-mode}\n" "for working with GNU Recutils text-based, human-editable databases. It\n" @@ -2532,7 +2612,7 @@ msgid "" "including field and record folding." msgstr "" -#: gnu/packages/databases.scm:1457 +#: gnu/packages/databases.scm:1664 msgid "" "RocksDB is a library that forms the core building block for a fast\n" "key-value server, especially suited for storing data on flash drives. It\n" @@ -2543,7 +2623,7 @@ msgid "" "data in a single database. RocksDB is partially based on @code{LevelDB}." msgstr "" -#: gnu/packages/databases.scm:1515 +#: gnu/packages/databases.scm:1722 msgid "" "Sparql-query is a command-line tool for accessing SPARQL\n" "endpoints over HTTP. It has been intentionally designed to @code{feel} similar to\n" @@ -2554,13 +2634,13 @@ msgid "" "for example from a shell script." msgstr "" -#: gnu/packages/databases.scm:1608 +#: gnu/packages/databases.scm:1815 msgid "" "Sqitch is a standalone change management system for database schemas,\n" "which uses SQL to describe changes." msgstr "" -#: gnu/packages/databases.scm:1635 +#: gnu/packages/databases.scm:1842 msgid "" "SQLcrush lets you view and edit a database directly from the text\n" "console through an ncurses interface. You can explore each table's structure,\n" @@ -2568,7 +2648,7 @@ msgid "" "changes." msgstr "" -#: gnu/packages/databases.scm:1673 +#: gnu/packages/databases.scm:1880 msgid "" "TDB is a Trivial Database. In concept, it is very much like GDBM,\n" "and BSD's DB except that it allows multiple simultaneous writers and uses\n" @@ -2576,11 +2656,11 @@ msgid "" "extremely small." msgstr "" -#: gnu/packages/databases.scm:1693 +#: gnu/packages/databases.scm:1900 msgid "This package provides an database interface for Perl." msgstr "" -#: gnu/packages/databases.scm:1741 +#: gnu/packages/databases.scm:1948 msgid "" "An SQL to OO mapper with an object API inspired by\n" "Class::DBI (with a compatibility layer as a springboard for porting) and a\n" @@ -2592,13 +2672,13 @@ msgid "" "\"ORDER BY\" and \"HAVING\" support." msgstr "" -#: gnu/packages/databases.scm:1770 +#: gnu/packages/databases.scm:1977 msgid "" "DBIx::Class::Cursor::Cached provides a cursor class with\n" "built-in caching support." msgstr "" -#: gnu/packages/databases.scm:1793 +#: gnu/packages/databases.scm:2000 msgid "" "Because the many-to-many relationships are not real\n" "relationships, they can not be introspected with DBIx::Class. Many-to-many\n" @@ -2608,14 +2688,14 @@ msgid "" "introspected and examined." msgstr "" -#: gnu/packages/databases.scm:1852 +#: gnu/packages/databases.scm:2059 msgid "" "DBIx::Class::Schema::Loader automates the definition of a\n" "DBIx::Class::Schema by scanning database table definitions and setting up the\n" "columns, primary keys, unique constraints and relationships." msgstr "" -#: gnu/packages/databases.scm:1876 +#: gnu/packages/databases.scm:2083 msgid "" "This package provides a PostgreSQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." @@ -2623,7 +2703,7 @@ msgstr "" "Denne pakke tilbyder en PostgreSQL-driver for Perl5-\n" "@dfn{Database Interface} (DBI)." -#: gnu/packages/databases.scm:1914 +#: gnu/packages/databases.scm:2121 msgid "" "This package provides a MySQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." @@ -2631,7 +2711,7 @@ msgstr "" "Denne pakke tilbyder en MySQL-driver for Perl5-\n" "@dfn{Database Interface} (DBI)." -#: gnu/packages/databases.scm:1934 +#: gnu/packages/databases.scm:2141 msgid "" "DBD::SQLite is a Perl DBI driver for SQLite, that includes\n" "the entire thing in the distribution. So in order to get a fast transaction\n" @@ -2639,14 +2719,14 @@ msgid "" "module, and nothing else." msgstr "" -#: gnu/packages/databases.scm:1959 +#: gnu/packages/databases.scm:2166 msgid "" "@code{MySQL::Config} emulates the @code{load_defaults} function from\n" "libmysqlclient. It will fill an array with long options, ready to be parsed by\n" "@code{Getopt::Long}." msgstr "" -#: gnu/packages/databases.scm:1983 +#: gnu/packages/databases.scm:2190 msgid "" "This module was inspired by the excellent DBIx::Abstract.\n" "While based on the concepts used by DBIx::Abstract, the concepts used have\n" @@ -2656,7 +2736,7 @@ msgid "" "time your data changes." msgstr "" -#: gnu/packages/databases.scm:2010 +#: gnu/packages/databases.scm:2217 msgid "" "This module is nearly identical to @code{SQL::Abstract} 1.81, and exists\n" "to preserve the ability of users to opt into the new way of doing things in\n" @@ -2672,34 +2752,34 @@ msgid "" "your data changes, as this module figures it out." msgstr "" -#: gnu/packages/databases.scm:2043 +#: gnu/packages/databases.scm:2250 msgid "" "This module tries to split any SQL code, even including\n" "non-standard extensions, into the atomic statements it is composed of." msgstr "" -#: gnu/packages/databases.scm:2062 +#: gnu/packages/databases.scm:2269 msgid "" "SQL::Tokenizer is a tokenizer for SQL queries. It does not\n" "claim to be a parser or query verifier. It just creates sane tokens from a\n" "valid SQL query." msgstr "" -#: gnu/packages/databases.scm:2081 +#: gnu/packages/databases.scm:2288 msgid "" "Unixodbc is a library providing an API with which to access\n" "data sources. Data sources include SQL Servers and any software with an ODBC\n" "Driver." msgstr "" -#: gnu/packages/databases.scm:2113 +#: gnu/packages/databases.scm:2320 msgid "" "The goal for nanodbc is to make developers happy by providing\n" "a simpler and less verbose API for working with ODBC. Common tasks should be\n" "easy, requiring concise and simple code." msgstr "" -#: gnu/packages/databases.scm:2174 +#: gnu/packages/databases.scm:2381 msgid "" "UnQLite is an in-process software library which implements a\n" "self-contained, serverless, zero-configuration, transactional NoSQL\n" @@ -2708,27 +2788,35 @@ msgid "" "similar to BerkeleyDB, LevelDB, etc." msgstr "" -#: gnu/packages/databases.scm:2225 +#: gnu/packages/databases.scm:2432 msgid "" "Redis is an advanced key-value cache and store. Redis\n" "supports many data structures including strings, hashes, lists, sets, sorted\n" "sets, bitmaps and hyperloglogs." msgstr "" -#: gnu/packages/databases.scm:2247 +#: gnu/packages/databases.scm:2454 msgid "" "This package provides a Ruby client that tries to match Redis' API\n" "one-to-one, while still providing an idiomatic interface." msgstr "" -#: gnu/packages/databases.scm:2275 +#: gnu/packages/databases.scm:2479 +msgid "Package rdb implements parsing and encoding of the Redis RDB file format." +msgstr "" + +#: gnu/packages/databases.scm:2505 +msgid "Redigo is a Go client for the Redis database." +msgstr "" + +#: gnu/packages/databases.scm:2531 msgid "" "Kyoto Cabinet is a standalone file-based database that supports Hash\n" "and B+ Tree data storage models. It is a fast key-value lightweight\n" "database and supports many programming languages. It is a NoSQL database." msgstr "" -#: gnu/packages/databases.scm:2303 +#: gnu/packages/databases.scm:2559 msgid "" "Tokyo Cabinet is a library of routines for managing a database.\n" "The database is a simple data file containing records, each is a pair of a\n" @@ -2738,7 +2826,7 @@ msgid "" "organized in hash table, B+ tree, or fixed-length array." msgstr "" -#: gnu/packages/databases.scm:2339 +#: gnu/packages/databases.scm:2595 msgid "" "WiredTiger is an extensible platform for data management. It supports\n" "row-oriented storage (where all columns of a row are stored together),\n" @@ -2747,7 +2835,7 @@ msgid "" "trees (LSM), for sustained throughput under random insert workloads." msgstr "" -#: gnu/packages/databases.scm:2389 +#: gnu/packages/databases.scm:2645 msgid "" "This package provides Guile bindings to the WiredTiger ``NoSQL''\n" "database." @@ -2755,11 +2843,11 @@ msgstr "" "Denne pakke tilbyder Guilebindinger til WiredTiger »NoSQL«-databasen\n" "." -#: gnu/packages/databases.scm:2419 +#: gnu/packages/databases.scm:2675 msgid "The DB::File module provides Perl bindings to the Berkeley DB version 1.x." msgstr "DB::File-modulet tilbyder Perlbindinger til Berkeley DB version 1.x." -#: gnu/packages/databases.scm:2467 +#: gnu/packages/databases.scm:2723 msgid "" "The @dfn{Lightning Memory-Mapped Database} (LMDB) is a high-performance\n" "transactional database. Unlike more complex relational databases, LMDB handles\n" @@ -2772,7 +2860,7 @@ msgid "" "virtual address space — not physical RAM." msgstr "" -#: gnu/packages/databases.scm:2501 +#: gnu/packages/databases.scm:2757 msgid "" "@code{lmdbxx} is a comprehensive @code{C++} wrapper for the\n" "@code{LMDB} embedded database library, offering both an error-checked\n" @@ -2780,14 +2868,22 @@ msgid "" "semantics." msgstr "" -#: gnu/packages/databases.scm:2535 +#: gnu/packages/databases.scm:2791 msgid "" "Libpqxx is a C++ library to enable user programs to communicate with the\n" "PostgreSQL database back-end. The database back-end can be local or it may be\n" "on another machine, accessed via TCP/IP." msgstr "" -#: gnu/packages/databases.scm:2561 +#: gnu/packages/databases.scm:2819 +msgid "" +"Bolt is a pure Go key/value store inspired by Howard Chu's\n" +"LMDB project. The goal of the project is to provide a simple, fast, and\n" +"reliable database for projects that don't require a full database server such as\n" +"Postgres or MySQL." +msgstr "" + +#: gnu/packages/databases.scm:2845 msgid "" "Peewee is a simple and small ORM (object-relation mapping) tool. Peewee\n" "handles converting between pythonic values and those used by databases, so you\n" @@ -2796,20 +2892,20 @@ msgid "" "can autogenerate peewee models using @code{pwiz}, a model generator." msgstr "" -#: gnu/packages/databases.scm:2584 +#: gnu/packages/databases.scm:2868 msgid "" "Pypika-tortoise is a fork of pypika which has been\n" "streamlined for its use in the context of tortoise-orm. It removes support\n" "for many database kinds that tortoise-orm doesn't need, for example." msgstr "" -#: gnu/packages/databases.scm:2604 +#: gnu/packages/databases.scm:2888 msgid "" "This package is a Sphinx extension providing additional\n" "coroutine-specific markup." msgstr "" -#: gnu/packages/databases.scm:2632 +#: gnu/packages/databases.scm:2916 msgid "" "@code{asyncpg} is a database interface library designed\n" "specifically for PostgreSQL and Python/asyncio. @code{asyncpg} is an\n" @@ -2817,14 +2913,14 @@ msgid "" "with Python's asyncio framework." msgstr "" -#: gnu/packages/databases.scm:2652 +#: gnu/packages/databases.scm:2936 msgid "" "@code{asyncmy} is a fast @code{asyncio} MySQL driver, which\n" "reuses most of @code{pymysql} and @code{aiomysql} but rewrites the core\n" "protocol with Cython for performance." msgstr "" -#: gnu/packages/databases.scm:2672 +#: gnu/packages/databases.scm:2956 msgid "" "@code{aiomysql} is a driver for accessing a MySQL database\n" "from the @code{asyncio} Python framework. It depends on and reuses most parts\n" @@ -2832,7 +2928,7 @@ msgid "" "@code{aiopg} library." msgstr "" -#: gnu/packages/databases.scm:2705 +#: gnu/packages/databases.scm:2989 msgid "" "Tortoise ORM is an easy-to-use asyncio ORM (Object\n" "Relational Mapper) inspired by Django. Tortoise ORM was built with relations\n" @@ -2841,7 +2937,7 @@ msgid "" "with relational data." msgstr "" -#: gnu/packages/databases.scm:2749 +#: gnu/packages/databases.scm:3033 msgid "" "SQLCipher is an implementation of SQLite, extended to\n" "provide transparent 256-bit AES encryption of database files. Pages are\n" @@ -2850,19 +2946,19 @@ msgid "" "development." msgstr "" -#: gnu/packages/databases.scm:2782 +#: gnu/packages/databases.scm:3066 msgid "" "@code{python-pyodbc-c} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2807 +#: gnu/packages/databases.scm:3091 msgid "" "@code{python-pyodbc} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2840 +#: gnu/packages/databases.scm:3124 msgid "" "MDB Tools is a set of tools and applications to read the\n" "proprietary MDB file format used in Microsoft's Access database package. This\n" @@ -2871,33 +2967,38 @@ msgid "" "etc., and an SQL engine for performing simple SQL queries." msgstr "" -#: gnu/packages/databases.scm:2886 +#: gnu/packages/databases.scm:3153 +#, fuzzy +msgid "This package provides a MongoDB driver for Go." +msgstr "Denne pakke indeholder XY-pic-skirfttyperne." + +#: gnu/packages/databases.scm:3194 msgid "" "python-lmdb or py-lmdb is a Python binding for the @dfn{Lightning\n" "Memory-Mapped Database} (LMDB), a high-performance key-value store." msgstr "" -#: gnu/packages/databases.scm:2925 +#: gnu/packages/databases.scm:3233 msgid "" "Orator provides a simple ActiveRecord-like Object Relational Mapping\n" "implementation for Python." msgstr "" -#: gnu/packages/databases.scm:2963 +#: gnu/packages/databases.scm:3271 msgid "" "Virtuoso is a scalable cross-platform server that combines\n" "relational, graph, and document data management with web application server\n" "and web services platform functionality." msgstr "" -#: gnu/packages/databases.scm:2990 +#: gnu/packages/databases.scm:3298 msgid "" "Cassandra Cluster Manager is a development tool for testing\n" "local Cassandra clusters. It creates, launches and removes Cassandra clusters\n" "on localhost." msgstr "" -#: gnu/packages/databases.scm:3018 +#: gnu/packages/databases.scm:3326 msgid "" "Pysqlite provides SQLite bindings for Python that comply to the\n" "Database API 2.0T." @@ -2905,7 +3006,7 @@ msgstr "" "Pysqlite tilbyder SQLite-bindinger for Python som overholder\n" "Database API 2.OT'en." -#: gnu/packages/databases.scm:3048 +#: gnu/packages/databases.scm:3356 msgid "" "SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that\n" "gives application developers the full power and flexibility of SQL. It\n" @@ -2914,14 +3015,14 @@ msgid "" "simple and Pythonic domain language." msgstr "" -#: gnu/packages/databases.scm:3086 +#: gnu/packages/databases.scm:3382 msgid "" "This package contains type stubs and a mypy plugin to\n" "provide more precise static types and type inference for SQLAlchemy\n" "framework." msgstr "" -#: gnu/packages/databases.scm:3118 +#: gnu/packages/databases.scm:3414 msgid "" "SQLAlchemy-utils provides various utility functions and custom data types\n" "for SQLAlchemy. SQLAlchemy is an SQL database abstraction library for Python.\n" @@ -2938,7 +3039,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/databases.scm:3165 +#: gnu/packages/databases.scm:3461 msgid "" "This package provides mock helpers for SQLAlchemy that makes it easy\n" "to mock an SQLAlchemy session while preserving the ability to do asserts.\n" @@ -2948,13 +3049,13 @@ msgid "" "this library provides functions to facilitate such comparisons." msgstr "" -#: gnu/packages/databases.scm:3196 +#: gnu/packages/databases.scm:3492 msgid "" "Alembic is a lightweight database migration tool for usage with the\n" "SQLAlchemy Database Toolkit for Python." msgstr "" -#: gnu/packages/databases.scm:3221 +#: gnu/packages/databases.scm:3517 msgid "" "PickleShare is a small ‘shelve’-like datastore with concurrency support.\n" "Like shelve, a PickleShareDB object acts like a normal dictionary. Unlike\n" @@ -2965,7 +3066,7 @@ msgid "" "PickleShare." msgstr "" -#: gnu/packages/databases.scm:3275 +#: gnu/packages/databases.scm:3571 msgid "" "APSW is a Python wrapper for the SQLite\n" "embedded relational database engine. In contrast to other wrappers such as\n" @@ -2973,21 +3074,21 @@ msgid "" "translate the complete SQLite API into Python." msgstr "" -#: gnu/packages/databases.scm:3312 +#: gnu/packages/databases.scm:3608 msgid "" "The package aiosqlite replicates the standard sqlite3 module, but with\n" "async versions of all the standard connection and cursor methods, and context\n" "managers for automatically closing connections." msgstr "" -#: gnu/packages/databases.scm:3333 +#: gnu/packages/databases.scm:3629 msgid "" "This package provides the Neo4j Python driver that connects\n" "to the database using Neo4j's binary protocol. It aims to be minimal, while\n" "being idiomatic to Python." msgstr "" -#: gnu/packages/databases.scm:3353 +#: gnu/packages/databases.scm:3649 msgid "" "This package provides a client library and toolkit for\n" "working with Neo4j from within Python applications and from the command\n" @@ -2995,7 +3096,7 @@ msgid "" "designed to be easy and intuitive to use." msgstr "" -#: gnu/packages/databases.scm:3379 +#: gnu/packages/databases.scm:3675 msgid "" "psycopg2 is a thread-safe PostgreSQL adapter that implements DB-API\n" "2.0." @@ -3003,20 +3104,32 @@ msgstr "" "psycopg2 er en trådsikker PostgreSQL-adapter som implementerer DB-API\n" "2.0." -#: gnu/packages/databases.scm:3413 +#: gnu/packages/databases.scm:3702 +msgid "" +"This module provides connection pool implementations that can be used\n" +"with the @code{psycopg} PostgreSQL driver." +msgstr "" + +#: gnu/packages/databases.scm:3776 +msgid "" +"Psycopg 3 is a new implementation of the popular @code{psycopg2}\n" +"database adapter for Python." +msgstr "" + +#: gnu/packages/databases.scm:3810 msgid "" "This package provides a program to build Entity\n" "Relationship diagrams from a SQLAlchemy model (or directly from the\n" "database)." msgstr "" -#: gnu/packages/databases.scm:3443 +#: gnu/packages/databases.scm:3840 msgid "" "Yoyo is a database schema migration tool. Migrations are written as SQL\n" "files or Python scripts that define a list of migration steps." msgstr "" -#: gnu/packages/databases.scm:3464 +#: gnu/packages/databases.scm:3861 msgid "" "MySQLdb is an interface to the popular MySQL database server\n" "for Python. The design goals are:\n" @@ -3027,13 +3140,13 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/databases.scm:3490 +#: gnu/packages/databases.scm:3887 msgid "" "Python-hiredis is a python extension that wraps protocol\n" "parsing code in hiredis. It primarily speeds up parsing of multi bulk replies." msgstr "" -#: gnu/packages/databases.scm:3517 +#: gnu/packages/databases.scm:3914 msgid "" "Fakeredis is a pure-Python implementation of the redis-py Python client\n" "that simulates talking to a redis server. It was created for a single purpose:\n" @@ -3044,49 +3157,49 @@ msgid "" "reasonable substitute." msgstr "" -#: gnu/packages/databases.scm:3545 +#: gnu/packages/databases.scm:3942 msgid "This package provides a Python interface to the Redis key-value store." msgstr "Denne pakke tilbyder en Pythongrænseflade til Redis' nøgle-værdi-lager." -#: gnu/packages/databases.scm:3586 +#: gnu/packages/databases.scm:3983 msgid "" "RQ (Redis Queue) is a simple Python library for queueing jobs and\n" "processing them in the background with workers. It is backed by Redis and it\n" "is designed to have a low barrier to entry." msgstr "" -#: gnu/packages/databases.scm:3623 +#: gnu/packages/databases.scm:4020 msgid "" "This package provides job scheduling capabilities to @code{python-rq}\n" "(Redis Queue)." msgstr "" -#: gnu/packages/databases.scm:3643 +#: gnu/packages/databases.scm:4040 msgid "" "@code{trollius-redis} is a Redis client for Python\n" " trollius. It is an asynchronous IO (PEP 3156) implementation of the\n" " Redis protocol." msgstr "" -#: gnu/packages/databases.scm:3686 +#: gnu/packages/databases.scm:4083 msgid "" "Sqlparse is a non-validating SQL parser for Python. It\n" "provides support for parsing, splitting and formatting SQL statements." msgstr "" -#: gnu/packages/databases.scm:3703 +#: gnu/packages/databases.scm:4101 msgid "" "@code{python-sql} is a library to write SQL queries, that\n" "transforms idiomatic python function calls to well-formed SQL queries." msgstr "" -#: gnu/packages/databases.scm:3726 +#: gnu/packages/databases.scm:4124 msgid "" "PyPika is a python SQL query builder that exposes the full richness of\n" "the SQL language using a syntax that reflects the resulting query." msgstr "" -#: gnu/packages/databases.scm:3852 +#: gnu/packages/databases.scm:4250 msgid "" "Apache Arrow is a columnar in-memory analytics layer\n" "designed to accelerate big data. It houses a set of canonical in-memory\n" @@ -3095,21 +3208,21 @@ msgid "" "algorithm implementations." msgstr "" -#: gnu/packages/databases.scm:3912 +#: gnu/packages/databases.scm:4310 msgid "" "This library provides a Pythonic API wrapper for the reference Arrow C++\n" "implementation, along with tools for interoperability with pandas, NumPy, and\n" "other traditional Python scientific computing packages." msgstr "" -#: gnu/packages/databases.scm:3933 +#: gnu/packages/databases.scm:4331 msgid "" "This package provides a Python client library for CrateDB.\n" "It implements the Python DB API 2.0 specification and includes support for\n" "SQLAlchemy." msgstr "" -#: gnu/packages/databases.scm:3952 +#: gnu/packages/databases.scm:4350 msgid "" "This library implements a database independent abstraction layer in C,\n" "similar to the DBI/DBD layer in Perl. Writing one generic set of code,\n" @@ -3117,7 +3230,7 @@ msgid "" "simultaneous database connections by using this framework." msgstr "" -#: gnu/packages/databases.scm:4018 +#: gnu/packages/databases.scm:4416 msgid "" "The @code{libdbi-drivers} library provides the database specific drivers\n" "for the @code{libdbi} framework.\n" @@ -3130,26 +3243,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:4060 +#: gnu/packages/databases.scm:4458 msgid "" "SOCI is an abstraction layer for several database backends, including\n" "PostreSQL, SQLite, ODBC and MySQL." msgstr "" -#: gnu/packages/databases.scm:4084 +#: gnu/packages/databases.scm:4482 msgid "" "FreeTDS is an implementation of the Tabular DataStream protocol, used for\n" "connecting to MS SQL and Sybase servers over TCP/IP." msgstr "" -#: gnu/packages/databases.scm:4106 +#: gnu/packages/databases.scm:4504 msgid "" "TinyDB is a small document oriented database written in pure Python\n" "with no external dependencies. The targets are small apps that would\n" "be blown away by a SQL-DB or an external database server." msgstr "" -#: gnu/packages/databases.scm:4154 +#: gnu/packages/databases.scm:4552 msgid "" "Sequeler is a native Linux SQL client built in Vala and\n" "Gtk. It allows you to connect to your local and remote databases, write SQL in\n" @@ -3157,7 +3270,13 @@ msgid "" "a Gtk.Grid Widget." msgstr "" -#: gnu/packages/debug.scm:111 +#: gnu/packages/databases.scm:4594 +msgid "" +"Sqlitebrowser is a high quaility, visual, open source tool to\n" +"create design, and edit database file compatible with SQLite." +msgstr "" + +#: gnu/packages/debug.scm:112 msgid "" "Delta assists you in minimizing \"interesting\" files subject to a test\n" "of their interestingness. A common such situation is when attempting to\n" @@ -3165,7 +3284,7 @@ msgid "" "program to exhibit a bug." msgstr "" -#: gnu/packages/debug.scm:172 +#: gnu/packages/debug.scm:173 msgid "" "C-Reduce is a tool that takes a large C or C++ program that has a\n" "property of interest (such as triggering a compiler bug) and automatically\n" @@ -3174,14 +3293,14 @@ msgid "" "tools that process C/C++ code." msgstr "" -#: gnu/packages/debug.scm:219 +#: gnu/packages/debug.scm:220 msgid "" "C-Vise is a Python port of the C-Reduce tool that is fully compatible\n" "and uses the same efficient LLVM-based C/C++ @code{clang_delta} reduction\n" "tool." msgstr "" -#: gnu/packages/debug.scm:289 +#: gnu/packages/debug.scm:290 msgid "" "American fuzzy lop is a security-oriented fuzzer that employs a novel\n" "type of compile-time instrumentation and genetic algorithms to automatically\n" @@ -3192,7 +3311,7 @@ msgid "" "down the road." msgstr "" -#: gnu/packages/debug.scm:433 +#: gnu/packages/debug.scm:434 msgid "" "QEMU is a generic machine emulator and virtualizer. This package\n" "of QEMU is used only by the american fuzzy lop package.\n" @@ -3208,7 +3327,7 @@ msgid "" "server and embedded PowerPC, and S390 guests." msgstr "" -#: gnu/packages/debug.scm:501 +#: gnu/packages/debug.scm:502 msgid "" "Stress Make is a customized GNU Make that explicitly manages the order\n" "in which concurrent jobs are run to provoke erroneous behavior into becoming\n" @@ -3218,14 +3337,14 @@ msgid "" "conditions." msgstr "" -#: gnu/packages/debug.scm:529 +#: gnu/packages/debug.scm:530 msgid "" "Zzuf is a transparent application input fuzzer. It works by\n" "intercepting file operations and changing random bits in the program's\n" "input. Zzuf's behaviour is deterministic, making it easy to reproduce bugs." msgstr "" -#: gnu/packages/debug.scm:581 +#: gnu/packages/debug.scm:582 msgid "" "Scanmem is a debugging utility designed to isolate the\n" "address of an arbitrary variable in an executing process. Scanmem simply\n" @@ -3234,13 +3353,13 @@ msgid "" "the position of the variable and allows you to modify its value." msgstr "" -#: gnu/packages/debug.scm:611 +#: gnu/packages/debug.scm:612 msgid "" "Remake is an enhanced version of GNU Make that adds improved\n" "error reporting, better tracing, profiling, and a debugger." msgstr "" -#: gnu/packages/debug.scm:667 +#: gnu/packages/debug.scm:668 msgid "" "rr is a lightweight tool for recording, replaying and debugging\n" "execution of applications (trees of processes and threads). Debugging extends\n" @@ -3249,13 +3368,13 @@ msgid "" "fun." msgstr "" -#: gnu/packages/debug.scm:695 +#: gnu/packages/debug.scm:696 msgid "" "The @code{libbacktrace} library can be linked into a C/C++\n" "program to produce symbolic backtraces." msgstr "" -#: gnu/packages/debug.scm:735 +#: gnu/packages/debug.scm:736 msgid "" "The libleak tool detects memory leaks by hooking memory\n" "functions such as @code{malloc}. It comes as a shared object to be pre-loaded\n" @@ -3267,7 +3386,7 @@ msgid "" "use than similar tools like @command{mtrace}." msgstr "" -#: gnu/packages/debug.scm:763 +#: gnu/packages/debug.scm:764 msgid "" "@code{cgdb} is a lightweight curses (terminal-based) interface to the\n" "GNU Debugger (GDB). In addition to the standard gdb console, cgdb provides\n" @@ -3276,7 +3395,7 @@ msgid "" "using cgdb." msgstr "" -#: gnu/packages/debug.scm:798 +#: gnu/packages/debug.scm:799 msgid "" "MspDebug supports FET430UIF, eZ430, RF2500 and Olimex\n" "MSP430-JTAG-TINY programmers, as well as many other compatible\n" @@ -3292,14 +3411,14 @@ msgid "" "multiple test suites, which are then all managed by a single harness." msgstr "" -#: gnu/packages/games.scm:287 +#: gnu/packages/games.scm:288 msgid "" "Abe's Amazing Adventure is a scrolling,\n" "platform-jumping, key-collecting, ancient pyramid exploring game, vaguely in\n" "the style of similar games for the Commodore+4." msgstr "" -#: gnu/packages/games.scm:357 +#: gnu/packages/games.scm:358 msgid "" "Adanaxis is a fast-moving first person shooter set in deep space, where\n" "the fundamentals of space itself are changed. By adding another dimension to\n" @@ -3310,7 +3429,7 @@ msgid "" "mouse and joystick control, and original music." msgstr "" -#: gnu/packages/games.scm:401 +#: gnu/packages/games.scm:402 msgid "" "Guide Alex the Allegator through the jungle in order to save his\n" "girlfriend Lola from evil humans who want to make a pair of shoes out of her.\n" @@ -3319,7 +3438,7 @@ msgid "" "The game includes a built-in editor so you can design and share your own maps." msgstr "" -#: gnu/packages/games.scm:431 +#: gnu/packages/games.scm:432 msgid "" "Armagetron Advanced is a multiplayer game in 3d that\n" "attempts to emulate and expand on the lightcycle sequence from the movie Tron.\n" @@ -3329,7 +3448,7 @@ msgid "" "physics settings to tweak as well." msgstr "" -#: gnu/packages/games.scm:489 +#: gnu/packages/games.scm:490 msgid "" "Space is a vast area, an unbounded territory where it seems there is\n" "a room for everybody, but reversal of fortune put things differently. The\n" @@ -3341,7 +3460,7 @@ msgid "" "regret their insolence." msgstr "" -#: gnu/packages/games.scm:556 +#: gnu/packages/games.scm:557 msgid "" "Bastet (short for Bastard Tetris) is a simple ncurses-based falling brick\n" "game. Unlike normal Tetris, Bastet does not choose the next brick at random.\n" @@ -3351,19 +3470,19 @@ msgid "" "canyons and wait for the long I-shaped block to clear four rows at a time." msgstr "" -#: gnu/packages/games.scm:601 +#: gnu/packages/games.scm:602 msgid "" "Tetrinet is a multiplayer Tetris-like game with powerups and\n" "attacks you can use on opponents." msgstr "" -#: gnu/packages/games.scm:635 +#: gnu/packages/games.scm:636 msgid "" "Vitetris is a classic multiplayer Tetris clone for the\n" "terminal." msgstr "" -#: gnu/packages/games.scm:678 +#: gnu/packages/games.scm:679 msgid "" "Blobwars: Metal Blob Solid is a 2D platform game, the first\n" "in the Blobwars series. You take on the role of a fearless Blob agent. Your\n" @@ -3371,7 +3490,7 @@ msgid "" "possible, while battling many vicious aliens." msgstr "" -#: gnu/packages/games.scm:771 +#: gnu/packages/games.scm:772 msgid "" "These are the BSD games. See the fortune-mod package for fortunes.\n" "\n" @@ -3404,7 +3523,7 @@ msgid "" "Quizzes: arithmetic and quiz." msgstr "" -#: gnu/packages/games.scm:866 +#: gnu/packages/games.scm:867 msgid "" "BZFlag is a 3D multi-player multiplatform tank battle game that\n" "allows users to play against each other in a network environment.\n" @@ -3424,7 +3543,7 @@ msgid "" "high a score as possible." msgstr "" -#: gnu/packages/games.scm:949 +#: gnu/packages/games.scm:950 msgid "" "Cataclysm: Dark Days Ahead (or \"DDA\" for short) is a roguelike set\n" "in a post-apocalyptic world. Struggle to survive in a harsh, persistent,\n" @@ -3436,7 +3555,7 @@ msgid "" "want what you have." msgstr "" -#: gnu/packages/games.scm:998 +#: gnu/packages/games.scm:999 msgid "" "Cockatrice is a program for playing tabletop card games\n" "over a network. Its server design prevents users from manipulating the game\n" @@ -3444,7 +3563,7 @@ msgid "" "allows users to brew while offline." msgstr "" -#: gnu/packages/games.scm:1052 +#: gnu/packages/games.scm:1053 msgid "" "This package provides a reimplementation of the 1997 Bullfrog business\n" "simulation game @i{Theme Hospital}. As well as faithfully recreating the\n" @@ -3452,7 +3571,7 @@ msgid "" "more. This package does @emph{not} provide the game assets." msgstr "" -#: gnu/packages/games.scm:1094 +#: gnu/packages/games.scm:1095 msgid "" "Cowsay is basically a text filter. Send some text into it,\n" "and you get a cow saying your text. If you think a talking cow isn't enough,\n" @@ -3460,21 +3579,21 @@ msgid "" "tired of cows, a variety of other ASCII-art messengers are available." msgstr "" -#: gnu/packages/games.scm:1135 +#: gnu/packages/games.scm:1136 msgid "" "@command{lolcat} concatenates files and streams like\n" "regular @command{cat}, but it also adds terminal escape codes between\n" "characters and lines resulting in a rainbow effect." msgstr "" -#: gnu/packages/games.scm:1164 +#: gnu/packages/games.scm:1165 #, scheme-format msgid "" "This package provides the Fallout 2 game engine. Game data\n" "should be placed in @file{~/.local/share/falltergeist}." msgstr "" -#: gnu/packages/games.scm:1275 +#: gnu/packages/games.scm:1276 msgid "" "FooBillard++ is an advanced 3D OpenGL billiard game\n" "based on the original foobillard 3.0a sources from Florian Berger.\n" @@ -3496,7 +3615,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:1342 +#: gnu/packages/games.scm:1343 msgid "" "The Freedoom project aims to create a complete free content first person\n" "shooter game. Freedoom by itself is just the raw material for a game: it must\n" @@ -3505,7 +3624,7 @@ msgid "" "effects and music to make a completely free game." msgstr "" -#: gnu/packages/games.scm:1392 +#: gnu/packages/games.scm:1394 msgid "" "Freedroid RPG is an @dfn{RPG} (Role-Playing Game) with isometric graphics.\n" "The game tells the story of a world destroyed by a conflict between robots and\n" @@ -3515,7 +3634,7 @@ msgid "" "real-time combat." msgstr "" -#: gnu/packages/games.scm:1471 +#: gnu/packages/games.scm:1473 msgid "" "Golly simulates Conway's Game of Life and many other types of cellular\n" "automata. The following features are available:\n" @@ -3536,7 +3655,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:1527 +#: gnu/packages/games.scm:1529 #, fuzzy #| msgid "This package provides HTML documentation for the nginx web server." msgid "" @@ -3544,7 +3663,7 @@ msgid "" "Joy-Con controllers." msgstr "Denne pakke tilbyder HTML-dokumentation for nginx-internetserveren." -#: gnu/packages/games.scm:1557 +#: gnu/packages/games.scm:1559 msgid "" "Engine for Caesar III, a city-building real-time strategy game.\n" "Julius includes some UI enhancements while preserving the logic (including\n" @@ -3552,7 +3671,7 @@ msgid "" "does not include game data." msgstr "" -#: gnu/packages/games.scm:1591 +#: gnu/packages/games.scm:1593 msgid "" "Fork of Julius, an engine for the a city-building real-time strategy\n" "game Caesar III. Gameplay enhancements include:\n" @@ -3567,7 +3686,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/games.scm:1630 +#: gnu/packages/games.scm:1632 msgid "" "Me and My Shadow is a puzzle/platform game in which you try\n" "to reach the exit by solving puzzles. Spikes, moving blocks, fragile blocks\n" @@ -3575,7 +3694,7 @@ msgid "" "shadow mimic them to reach blocks you couldn't reach alone." msgstr "" -#: gnu/packages/games.scm:1686 +#: gnu/packages/games.scm:1688 msgid "" "@code{Open Surge} is a 2D retro side-scrolling platformer\n" "inspired by the Sonic games. The player runs at high speeds through each\n" @@ -3583,7 +3702,7 @@ msgid "" "built-in level editor." msgstr "" -#: gnu/packages/games.scm:1732 +#: gnu/packages/games.scm:1734 msgid "" "Knights is a multiplayer game involving several knights who\n" "must run around a dungeon and complete various quests. Each game revolves\n" @@ -3595,7 +3714,7 @@ msgid "" "destroying an ancient book using a special wand." msgstr "" -#: gnu/packages/games.scm:1780 +#: gnu/packages/games.scm:1781 msgid "" "GNOME 2048 provides a 2D grid for playing 2048, a\n" "single-player sliding tile puzzle game. The objective of the game is to merge\n" @@ -3603,7 +3722,7 @@ msgid "" "in one tile." msgstr "" -#: gnu/packages/games.scm:1819 +#: gnu/packages/games.scm:1820 msgid "" "GNOME Chess provides a 2D board for playing chess games\n" "against human or computer players. It supports loading and saving games in\n" @@ -3611,7 +3730,7 @@ msgid "" "such as chess or stockfish." msgstr "" -#: gnu/packages/games.scm:1880 +#: gnu/packages/games.scm:1881 msgid "" "The GNU backgammon application (also known as \"gnubg\") can\n" "be used for playing, analyzing and teaching the game. It has an advanced\n" @@ -3625,7 +3744,7 @@ msgstr "" "og avancerede spillere. Udover grænsefladen for kommandolinjen har\n" "spillet også en attraktiv 3D-repræsentation af brættet." -#: gnu/packages/games.scm:1921 +#: gnu/packages/games.scm:1922 msgid "" "GNUbik is a puzzle game in which you must manipulate a cube to make\n" "each of its faces have a uniform color. The game is customizable, allowing\n" @@ -3634,13 +3753,13 @@ msgid "" "scriptable with Guile." msgstr "" -#: gnu/packages/games.scm:1944 +#: gnu/packages/games.scm:1945 msgid "" "GNU Shogi is a program that plays the game Shogi (Japanese\n" "Chess). It is similar to standard chess but this variant is far more complicated." msgstr "" -#: gnu/packages/games.scm:1974 +#: gnu/packages/games.scm:1975 msgid "" "LTris is a tetris clone: differently shaped blocks are falling down the\n" "rectangular playing field and can be moved sideways or rotated by 90 degree\n" @@ -3654,7 +3773,7 @@ msgid "" "watch your CPU playing while enjoying a cup of tea!" msgstr "" -#: gnu/packages/games.scm:2097 +#: gnu/packages/games.scm:2098 msgid "" "NetHack is a single player dungeon exploration game that runs\n" "on a wide variety of computer systems, with a variety of graphical and text\n" @@ -3668,7 +3787,7 @@ msgid "" "role, and your gender." msgstr "" -#: gnu/packages/games.scm:2141 +#: gnu/packages/games.scm:2142 msgid "" "PipeWalker is a simple puzzle game with many diffent themes: connect all\n" "computers to one network server, bring water from a source to the taps, etc.\n" @@ -3677,11 +3796,11 @@ msgid "" "Every puzzle has a complete solution, although there may be more than one." msgstr "" -#: gnu/packages/games.scm:2190 +#: gnu/packages/games.scm:2191 msgid "PrBoom+ is a Doom source port developed from the original PrBoom project." msgstr "PrBoom+ er en Doom-kildeport udviklet fra det oprindelige PrBoom-projekt." -#: gnu/packages/games.scm:2240 +#: gnu/packages/games.scm:2241 msgid "" "ReTux is an action platformer loosely inspired by the Mario games,\n" "utilizing the art assets from the @code{SuperTux} project." @@ -3689,7 +3808,7 @@ msgstr "" "ReTux er et platformspil løst inspireret af Mariospillene,\n" "der udnytter grafikken fra projektet @code{SuperTux}." -#: gnu/packages/games.scm:2350 +#: gnu/packages/games.scm:2351 msgid "" "RogueBox Adventures is a graphical roguelike with strong influences\n" "from sandbox games like Minecraft or Terraria. The main idea of RogueBox\n" @@ -3697,7 +3816,7 @@ msgid "" "can be explored and changed freely." msgstr "" -#: gnu/packages/games.scm:2462 +#: gnu/packages/games.scm:2463 msgid "" "Barbie Seahorse Adventures is a retro style platform arcade game.\n" "You are Barbie the seahorse who travels through the jungle, up to the\n" @@ -3707,27 +3826,27 @@ msgid "" "and defeat them with your bubbles!" msgstr "" -#: gnu/packages/games.scm:2522 +#: gnu/packages/games.scm:2523 msgid "" "Solarus is a 2D game engine written in C++, that can run games\n" "scripted in Lua. It has been designed with 16-bit classic Action-RPGs\n" "in mind." msgstr "" -#: gnu/packages/games.scm:2551 +#: gnu/packages/games.scm:2552 msgid "" "Solarus Quest Editor is a graphical user interface to create and\n" "modify quests for the Solarus engine." msgstr "" -#: gnu/packages/games.scm:2627 +#: gnu/packages/games.scm:2628 msgid "" "In SuperStarfighter, up to four local players compete in a\n" "2D arena with fast-moving ships and missiles. Different game types are\n" "available, as well as a single-player mode with AI-controlled ships." msgstr "" -#: gnu/packages/games.scm:2760 +#: gnu/packages/games.scm:2761 msgid "" "Trigger-rally is a 3D rally simulation with great physics\n" "for drifting on over 200 maps. Different terrain materials like dirt,\n" @@ -3739,18 +3858,18 @@ msgid "" "equipped with spoken co-driver notes and co-driver icons." msgstr "" -#: gnu/packages/games.scm:2816 +#: gnu/packages/games.scm:2817 msgid "" "This package provides @command{ufo2map}, a program used to generate\n" "maps for the UFO: Alien Invasion strategy game." msgstr "" -#: gnu/packages/games.scm:2858 +#: gnu/packages/games.scm:2859 #, fuzzy msgid "This package contains maps and other assets for UFO: Alien Invasion." msgstr "Denne pakke indeholder spildataen for GNU Freedink." -#: gnu/packages/games.scm:2945 +#: gnu/packages/games.scm:2946 msgid "" "UFO: Alien Invasion is a tactical strategy game set in the year 2084.\n" "You control a secret organisation charged with defending Earth from a brutal\n" @@ -3768,11 +3887,11 @@ msgid "" "properly." msgstr "" -#: gnu/packages/games.scm:2982 +#: gnu/packages/games.scm:2983 msgid "A graphical user interface for the package @code{gnushogi}." msgstr "En grafisk brugerflade for pakken @code{gnushogi}." -#: gnu/packages/games.scm:3035 +#: gnu/packages/games.scm:3036 msgid "" "L'Abbaye des Morts is a 2D platform game set in 13th century\n" "France. The Cathars, who preach about good Christian beliefs, were being\n" @@ -3781,14 +3900,14 @@ msgid "" "that beneath its ruins lay buried an ancient evil." msgstr "" -#: gnu/packages/games.scm:3081 +#: gnu/packages/games.scm:3082 msgid "" "Angband is a Classic dungeon exploration roguelike. Explore\n" "the depths below Angband, seeking riches, fighting monsters, and preparing to\n" "fight Morgoth, the Lord of Darkness." msgstr "" -#: gnu/packages/games.scm:3129 +#: gnu/packages/games.scm:3130 msgid "" "Pingus is a free Lemmings-like puzzle game in which the player takes\n" "command of a bunch of small animals and has to guide them through levels.\n" @@ -3798,21 +3917,21 @@ msgid "" "level's exit. The game is presented in a 2D side view." msgstr "" -#: gnu/packages/games.scm:3152 +#: gnu/packages/games.scm:3153 msgid "" "The GNU Talk Filters are programs that convert English text\n" "into stereotyped or otherwise humorous dialects. The filters are provided as\n" "a C library, so they can easily be integrated into other programs." msgstr "" -#: gnu/packages/games.scm:3196 +#: gnu/packages/games.scm:3197 msgid "" "The player controls a character (one of three: Good, Bad, and Dead),\n" "dodges the missiles (lots of it cover the screen, but the character's hitbox\n" "is very small), and shoot at the adversaries that keep appear on the screen." msgstr "" -#: gnu/packages/games.scm:3239 +#: gnu/packages/games.scm:3240 msgid "" "CMatrix simulates the display from \"The Matrix\" and is\n" "based on the screensaver from the movie's website. It works with terminal\n" @@ -3820,14 +3939,14 @@ msgid "" "asynchronously and at a user-defined speed." msgstr "" -#: gnu/packages/games.scm:3270 +#: gnu/packages/games.scm:3271 msgid "" "GNU Chess is a chess engine. It allows you to compete\n" "against the computer in a game of chess, either through the default terminal\n" "interface or via an external visual interface such as GNU XBoard." msgstr "" -#: gnu/packages/games.scm:3332 +#: gnu/packages/games.scm:3333 msgid "" "GNU FreeDink is a free and portable re-implementation of the engine\n" "for the role-playing game Dink Smallwood. It supports not only the original\n" @@ -3835,11 +3954,11 @@ msgid "" "To that extent, it also includes a front-end for managing all of your D-Mods." msgstr "" -#: gnu/packages/games.scm:3360 +#: gnu/packages/games.scm:3361 msgid "This package contains the game data of GNU Freedink." msgstr "Denne pakke indeholder spildataen for GNU Freedink." -#: gnu/packages/games.scm:3383 +#: gnu/packages/games.scm:3384 msgid "" "DFArc makes it easy to play and manage the GNU FreeDink game\n" "and its numerous D-Mods." @@ -3847,7 +3966,7 @@ msgstr "" "DFarc gør det nemt at spille og håndtere GNU FreeDink-spillet\n" "og dets utallige D-Mod'er." -#: gnu/packages/games.scm:3453 +#: gnu/packages/games.scm:3454 msgid "" "GNU XBoard is a graphical board for all varieties of chess,\n" "including international chess, xiangqi (Chinese chess), shogi (Japanese chess)\n" @@ -3856,7 +3975,7 @@ msgid "" "Portable Game Notation." msgstr "" -#: gnu/packages/games.scm:3488 +#: gnu/packages/games.scm:3489 msgid "" "GNU Typist is a universal typing tutor. It can be used to learn and\n" "practice touch-typing. Several tutorials are included; in addition to\n" @@ -3865,7 +3984,7 @@ msgid "" "are primarily in English, however some in other languages are provided." msgstr "" -#: gnu/packages/games.scm:3560 +#: gnu/packages/games.scm:3561 msgid "" "The Irrlicht Engine is a high performance realtime 3D engine written in\n" "C++. Features include an OpenGL renderer, extensible materials, scene graph\n" @@ -3873,7 +3992,7 @@ msgid "" "for common mesh file formats, and collision detection." msgstr "" -#: gnu/packages/games.scm:3611 +#: gnu/packages/games.scm:3612 msgid "" "M.A.R.S. is a 2D space shooter with pretty visual effects and\n" "attractive physics. Players can battle each other or computer controlled\n" @@ -3881,7 +4000,7 @@ msgid "" "match, cannon keep, and grave-itation pit." msgstr "" -#: gnu/packages/games.scm:3650 +#: gnu/packages/games.scm:3651 msgid "" "Glk defines a portable API for applications with text UIs. It was\n" "primarily designed for interactive fiction, but it should be suitable for many\n" @@ -3890,7 +4009,7 @@ msgid "" "using the @code{curses.h} library for screen control." msgstr "" -#: gnu/packages/games.scm:3690 +#: gnu/packages/games.scm:3691 msgid "" "Glulx is a 32-bit portable virtual machine intended for writing and\n" "playing interactive fiction. It was designed by Andrew Plotkin to relieve\n" @@ -3898,28 +4017,28 @@ msgid "" "reference interpreter, using the Glk API." msgstr "" -#: gnu/packages/games.scm:3716 +#: gnu/packages/games.scm:3717 msgid "" "Fifechan is a lightweight cross platform GUI library written in C++\n" "specifically designed for games. It has a built in set of extendable GUI\n" "Widgets, and allows users to create more." msgstr "" -#: gnu/packages/games.scm:3791 +#: gnu/packages/games.scm:3792 msgid "" "@acronym{FIFE, Flexible Isometric Free Engine} is a multi-platform\n" "isometric game engine. Python bindings are included allowing users to create\n" "games using Python as well as C++." msgstr "" -#: gnu/packages/games.scm:3826 +#: gnu/packages/games.scm:3827 msgid "" "Fizmo is a console-based Z-machine interpreter. It is used to play\n" "interactive fiction, also known as text adventures, which were implemented\n" "either by Infocom or created using the Inform compiler." msgstr "" -#: gnu/packages/games.scm:3849 +#: gnu/packages/games.scm:3850 msgid "" "GNU Go is a program that plays the game of Go, in which players\n" "place stones on a grid to form territory or capture other stones. While\n" @@ -3930,7 +4049,7 @@ msgid "" "Protocol)." msgstr "" -#: gnu/packages/games.scm:3878 +#: gnu/packages/games.scm:3879 msgid "" "Extreme Tux Racer, or etracer as it is called for short, is\n" "a simple OpenGL racing game featuring Tux, the Linux mascot. The goal of the\n" @@ -3943,7 +4062,7 @@ msgid "" "This game is based on the GPL version of the famous game TuxRacer." msgstr "" -#: gnu/packages/games.scm:3952 +#: gnu/packages/games.scm:3953 msgid "" "SuperTuxKart is a 3D kart racing game, with a focus on\n" "having fun over realism. You can play with up to 4 friends on one PC, racing\n" @@ -3951,7 +4070,7 @@ msgid "" "also available." msgstr "" -#: gnu/packages/games.scm:4028 +#: gnu/packages/games.scm:4029 msgid "" "Unknown Horizons is a 2D realtime strategy simulation with an emphasis\n" "on economy and city building. Expand your small settlement to a strong and\n" @@ -3960,7 +4079,7 @@ msgid "" "trade and diplomacy." msgstr "" -#: gnu/packages/games.scm:4081 +#: gnu/packages/games.scm:4082 msgid "" "GNUjump is a simple, yet addictive game in which you must jump from\n" "platform to platform to avoid falling, while the platforms drop at faster rates\n" @@ -3968,7 +4087,7 @@ msgid "" "falling, themeable graphics and sounds, and replays." msgstr "" -#: gnu/packages/games.scm:4117 +#: gnu/packages/games.scm:4118 msgid "" "The Battle for Wesnoth is a fantasy, turn based tactical strategy game,\n" "with several single player campaigns, and multiplayer games (both networked and\n" @@ -3980,7 +4099,7 @@ msgid "" "next campaign." msgstr "" -#: gnu/packages/games.scm:4137 +#: gnu/packages/games.scm:4138 msgid "" "This package contains a dedicated server for @emph{The\n" "Battle for Wesnoth}." @@ -3988,14 +4107,14 @@ msgstr "" "Denne pakke indeholder en dedikeret server for @emph{The\n" "Battle for Wesnoth}." -#: gnu/packages/games.scm:4179 +#: gnu/packages/games.scm:4180 msgid "" "Gamine is a game designed for young children who are learning to use the\n" "mouse and keyboard. The child uses the mouse to draw colored dots and lines\n" "on the screen and keyboard to display letters." msgstr "" -#: gnu/packages/games.scm:4211 +#: gnu/packages/games.scm:4212 msgid "" "ManaPlus is a 2D MMORPG client for game servers. It is the only\n" "fully supported client for @uref{http://www.themanaworld.org, The mana\n" @@ -4003,7 +4122,7 @@ msgid "" "@uref{http://landoffire.org, Land of fire}." msgstr "" -#: gnu/packages/games.scm:4243 +#: gnu/packages/games.scm:4244 msgid "" "OpenTTD is a game in which you transport goods and\n" "passengers by land, water and air. It is a re-implementation of Transport\n" @@ -4013,7 +4132,7 @@ msgid "" "engine. When you start it you will be prompted to download a graphics set." msgstr "" -#: gnu/packages/games.scm:4303 +#: gnu/packages/games.scm:4304 msgid "" "The OpenGFX project is an implementation of the OpenTTD base graphics\n" "set that aims to ensure the best possible out-of-the-box experience.\n" @@ -4028,29 +4147,29 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:4361 +#: gnu/packages/games.scm:4362 msgid "" "OpenSFX is a set of free base sounds for OpenTTD which make\n" "it possible to play OpenTTD without requiring the proprietary sound files from\n" "the original Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4404 +#: gnu/packages/games.scm:4405 msgid "" "OpenMSX is a music set for OpenTTD which makes it possible\n" "to play OpenTTD without requiring the proprietary music from the original\n" "Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4473 +#: gnu/packages/games.scm:4474 msgid "openrct2-title-sequences is a set of title sequences for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4513 +#: gnu/packages/games.scm:4514 msgid "openrct2-objects is a set of objects for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4576 +#: gnu/packages/games.scm:4577 msgid "" "OpenRCT2 is a free software re-implementation of\n" "RollerCoaster Tycoon 2 (RCT2). The gameplay revolves around building and\n" @@ -4060,27 +4179,27 @@ msgid "" "images, etc.)" msgstr "" -#: gnu/packages/games.scm:4630 +#: gnu/packages/games.scm:4631 msgid "" "The Emilia Pinball Project is a pinball simulator. There\n" "are only two levels to play with, but they are very addictive." msgstr "" -#: gnu/packages/games.scm:4659 +#: gnu/packages/games.scm:4660 msgid "" "Pioneers is an emulation of the board game The Settlers of\n" "Catan. It can be played on a local network, on the internet, and with AI\n" "players." msgstr "" -#: gnu/packages/games.scm:4701 +#: gnu/packages/games.scm:4702 msgid "" "The goal of this logic game is to open all cards in a 6x6\n" "grid, using a number of hints as to their relative position. The game idea\n" "is attributed to Albert Einstein." msgstr "" -#: gnu/packages/games.scm:4731 +#: gnu/packages/games.scm:4732 msgid "" "POWWOW is a client software which can be used for telnet as well as for\n" "@dfn{Multi-User Dungeon} (MUD). Additionally it can serve as a nice client for\n" @@ -4088,21 +4207,21 @@ msgid "" "http://lavachat.symlynx.com/unix/" msgstr "" -#: gnu/packages/games.scm:4838 +#: gnu/packages/games.scm:4839 msgid "" "Red Eclipse is an arena shooter, created from the Cube2 engine.\n" "Offering an innovative parkour system and distinct but all potent weapons,\n" "Red Eclipse provides fast paced and accessible gameplay." msgstr "" -#: gnu/packages/games.scm:4903 +#: gnu/packages/games.scm:4904 msgid "" "Grue Hunter is a text adventure game written in Perl. You must make\n" "your way through an underground cave system in search of the Grue. Can you\n" "capture it and get out alive?" msgstr "" -#: gnu/packages/games.scm:4942 +#: gnu/packages/games.scm:4943 msgid "" "lierolibre is an earthworm action game where you fight another player\n" "(or the computer) underground using a wide array of weapons.\n" @@ -4127,14 +4246,14 @@ msgid "" "fullscreen, use F5 or Alt+Enter." msgstr "" -#: gnu/packages/games.scm:5021 +#: gnu/packages/games.scm:5022 msgid "" "Tennix is a 2D tennis game. You can play against the\n" "computer or against another player using the keyboard. The game runs\n" "in-window at 640x480 resolution or fullscreen." msgstr "" -#: gnu/packages/games.scm:5105 +#: gnu/packages/games.scm:5106 msgid "" "Warzone 2100 offers campaign, multi-player, and single-player skirmish\n" "modes. An extensive tech tree with over 400 different technologies, combined\n" @@ -4142,7 +4261,7 @@ msgid "" "tactics." msgstr "" -#: gnu/packages/games.scm:5184 +#: gnu/packages/games.scm:5185 msgid "" "In Widelands, you are the regent of a small clan. You start out with\n" "nothing but your headquarters, where all your resources are stored.\n" @@ -4164,7 +4283,7 @@ msgid "" "of war. Widelands also offers an Artificial Intelligence to challenge you." msgstr "" -#: gnu/packages/games.scm:5236 +#: gnu/packages/games.scm:5237 msgid "" "In the year 2579, the intergalactic weapons corporation, WEAPCO, has\n" "dominated the galaxy. Guide Chris Bainfield and his friend Sid Wilson on\n" @@ -4173,7 +4292,7 @@ msgid "" "in strikes against the evil corporation." msgstr "" -#: gnu/packages/games.scm:5267 +#: gnu/packages/games.scm:5268 msgid "" "In this game you are the captain of the cargo ship Chromium B.S.U. and\n" "are responsible for delivering supplies to the troops on the front line. Your\n" @@ -4181,7 +4300,7 @@ msgid "" "safety of the Chromium vessel." msgstr "" -#: gnu/packages/games.scm:5350 +#: gnu/packages/games.scm:5351 msgid "" "Tux Paint is a free drawing program designed for young children (kids\n" "ages 3 and up). It has a simple, easy-to-use interface; fun sound effects;\n" @@ -4190,23 +4309,23 @@ msgid "" "your child be creative." msgstr "" -#: gnu/packages/games.scm:5390 +#: gnu/packages/games.scm:5391 msgid "" "This package contains a set of \"Rubber Stamp\" images which can be used\n" "with the \"Stamp\" tool within Tux Paint." msgstr "" -#: gnu/packages/games.scm:5439 +#: gnu/packages/games.scm:5440 msgid "Tux Paint Config is a graphical configuration editor for Tux Paint." msgstr "Tux Paint Config er et grafisk redigeringsprogram til konfigurationen for Tux Paint." -#: gnu/packages/games.scm:5491 +#: gnu/packages/games.scm:5492 msgid "" "SuperTux is a classic 2D jump'n run sidescroller game in\n" "a style similar to the original Super Mario games." msgstr "" -#: gnu/packages/games.scm:5523 +#: gnu/packages/games.scm:5524 msgid "" "TinTin++ is a MUD client which supports MCCP (Mud Client Compression\n" "Protocol), MMCP (Mud Master Chat Protocol), xterm 256 colors, most TELNET\n" @@ -4214,7 +4333,7 @@ msgid "" "Linux / Mac OS X servers, and an auto mapper with a VT100 map display." msgstr "" -#: gnu/packages/games.scm:5563 +#: gnu/packages/games.scm:5564 msgid "" "Learn programming, playing with ants and spider webs ;-)\n" "Your robot ant can be programmed in many languages: OCaml, Python, C, C++,\n" @@ -4222,14 +4341,14 @@ msgid "" "programmers may also add their own favorite language." msgstr "" -#: gnu/packages/games.scm:5602 +#: gnu/packages/games.scm:5603 msgid "" "Bambam is a simple baby keyboard (and gamepad) masher\n" "application that locks the keyboard and mouse and instead displays bright\n" "colors, pictures, and sounds." msgstr "" -#: gnu/packages/games.scm:5663 +#: gnu/packages/games.scm:5664 msgid "" "Mr. Rescue is an arcade styled 2d action game centered around evacuating\n" "civilians from burning buildings. The game features fast-paced fire\n" @@ -4237,7 +4356,7 @@ msgid "" "throwing people around in pseudo-randomly generated buildings." msgstr "" -#: gnu/packages/games.scm:5770 +#: gnu/packages/games.scm:5771 msgid "" "HyperRogue is a game in which the player collects treasures and fights\n" "monsters -- rogue-like but for the fact that it is played on the hyperbolic\n" @@ -4251,13 +4370,13 @@ msgid "" "symbols, it still needs graphics to render the non-euclidean world." msgstr "" -#: gnu/packages/games.scm:5817 +#: gnu/packages/games.scm:5818 msgid "" "Kobo Deluxe is an enhanced version of Akira Higuchi's XKobo graphical game\n" "for Un*x systems with X11." msgstr "" -#: gnu/packages/games.scm:5845 +#: gnu/packages/games.scm:5846 msgid "" "Freeciv is a turn-based empire building strategy game\n" "inspired by the history of human civilization. The game commences in\n" @@ -4265,7 +4384,7 @@ msgid "" "into the Space Age." msgstr "" -#: gnu/packages/games.scm:5878 +#: gnu/packages/games.scm:5879 msgid "" "@code{No More Secrets} provides a command line tool called \"nms\"\n" "that recreates the famous data decryption effect seen on screen in the 1992\n" @@ -4276,25 +4395,25 @@ msgid "" "starting a decryption sequence to reveal the original plaintext characters." msgstr "" -#: gnu/packages/games.scm:5906 +#: gnu/packages/games.scm:5907 msgid "This package contains the data files required for MegaGlest." msgstr "Denne pakke indeholder spildataene krævet for MegaGlest." -#: gnu/packages/games.scm:5961 +#: gnu/packages/games.scm:5962 msgid "" "MegaGlest is a cross-platform 3D real-time strategy (RTS)\n" "game, where you control the armies of one of seven different factions: Tech,\n" "Magic, Egypt, Indians, Norsemen, Persian or Romans." msgstr "" -#: gnu/packages/games.scm:6013 +#: gnu/packages/games.scm:6014 msgid "" "In FreeGish you control Gish, a ball of tar who lives\n" "happily with his girlfriend Brea, until one day a mysterious dark creature\n" "emerges from a sewer hole and pulls her below ground." msgstr "" -#: gnu/packages/games.scm:6049 +#: gnu/packages/games.scm:6050 msgid "" "C-Dogs SDL is a classic overhead run-and-gun game,\n" "supporting up to 4 players in co-op and deathmatch modes. Customize your\n" @@ -4302,21 +4421,21 @@ msgid "" "over 100 user-created campaigns." msgstr "" -#: gnu/packages/games.scm:6149 +#: gnu/packages/games.scm:6150 msgid "" "Kiki the nano bot is a 3D puzzle game. It is basically a\n" "mixture of the games Sokoban and Kula-World. Your task is to help Kiki, a\n" "small robot living in the nano world, repair its maker." msgstr "" -#: gnu/packages/games.scm:6225 +#: gnu/packages/games.scm:6226 msgid "" "Teeworlds is an online multiplayer game. Battle with up to\n" "16 players in a variety of game modes, including Team Deathmatch and Capture\n" "The Flag. You can even design your own maps!" msgstr "" -#: gnu/packages/games.scm:6285 +#: gnu/packages/games.scm:6286 msgid "" "Enigma is a puzzle game with 550 unique levels. The object\n" "of the game is to find and uncover pairs of identically colored ‘Oxyd’ stones.\n" @@ -4328,7 +4447,7 @@ msgid "" "with the mouse isn’t always trivial." msgstr "" -#: gnu/packages/games.scm:6319 +#: gnu/packages/games.scm:6320 msgid "" "Chroma is an abstract puzzle game. A variety of colourful\n" "shapes are arranged in a series of increasingly complex patterns, forming\n" @@ -4338,7 +4457,7 @@ msgid "" "becoming difficult enough to tax even the brightest of minds." msgstr "" -#: gnu/packages/games.scm:6384 +#: gnu/packages/games.scm:6385 msgid "" "Fish Fillets NG is strictly a puzzle game. The goal in\n" "every of the seventy levels is always the same: find a safe way out. The fish\n" @@ -4347,14 +4466,14 @@ msgid "" "fish. The whole game is accompanied by quiet, comforting music." msgstr "" -#: gnu/packages/games.scm:6452 +#: gnu/packages/games.scm:6453 msgid "" "Dungeon Crawl Stone Soup (also known as \"Crawl\" or DCSS\n" "for short) is a roguelike adventure through dungeons filled with dangerous\n" "monsters in a quest to find the mystifyingly fabulous Orb of Zot." msgstr "" -#: gnu/packages/games.scm:6529 +#: gnu/packages/games.scm:6530 msgid "" "Lugaru is a third-person action game. The main character,\n" "Turner, is an anthropomorphic rebel bunny rabbit with impressive combat skills.\n" @@ -4364,11 +4483,11 @@ msgid "" "fight against their plot and save his fellow rabbits from slavery." msgstr "" -#: gnu/packages/games.scm:6574 +#: gnu/packages/games.scm:6575 msgid "0ad-data provides the data files required by the game 0ad." msgstr "" -#: gnu/packages/games.scm:6710 +#: gnu/packages/games.scm:6711 msgid "" "0 A.D. is a real-time strategy (RTS) game of ancient\n" "warfare. It's a historically-based war/economy game that allows players to\n" @@ -4378,7 +4497,7 @@ msgid "" "0ad needs a window manager that supports 'Extended Window Manager Hints'." msgstr "" -#: gnu/packages/games.scm:6776 +#: gnu/packages/games.scm:6777 msgid "" "The original Colossal Cave Adventure from 1976 was the origin of all\n" "text adventures, dungeon-crawl (computer) games, and computer-hosted\n" @@ -4387,7 +4506,7 @@ msgid "" "``adventure 2.5'' and ``430-point adventure''." msgstr "" -#: gnu/packages/games.scm:6899 +#: gnu/packages/games.scm:6900 msgid "" "Tales of Maj’Eyal (ToME) RPG, featuring tactical turn-based\n" "combat and advanced character building. Play as one of many unique races and\n" @@ -4398,21 +4517,21 @@ msgid "" "Tales of Maj’Eyal offers engaging roguelike gameplay for the 21st century." msgstr "" -#: gnu/packages/games.scm:6945 +#: gnu/packages/games.scm:6946 msgid "" "Quakespasm is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7002 +#: gnu/packages/games.scm:7003 msgid "" "vkquake is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7067 +#: gnu/packages/games.scm:7068 msgid "" "Yamagi Quake II is an enhanced client for id Software's Quake II.\n" "The main focus is an unchanged single player experience like back in 1997,\n" @@ -4422,18 +4541,18 @@ msgid "" "making Yamagi Quake II one of the most solid Quake II implementations available." msgstr "" -#: gnu/packages/games.scm:7100 +#: gnu/packages/games.scm:7101 msgid "Nudoku is a ncurses-based Sudoku game for your terminal." msgstr "" -#: gnu/packages/games.scm:7146 +#: gnu/packages/games.scm:7147 msgid "" "The Butterfly Effect (tbe) is a game that uses\n" "realistic physics simulations to combine lots of simple mechanical\n" "elements to achieve a simple goal in the most complex way possible." msgstr "" -#: gnu/packages/games.scm:7192 +#: gnu/packages/games.scm:7193 msgid "" "Pioneer is a space adventure game set in our galaxy at the turn of the\n" "31st century. The game is open-ended, and you are free to eke out whatever\n" @@ -4444,14 +4563,14 @@ msgid "" "whatever you make of it." msgstr "" -#: gnu/packages/games.scm:7221 +#: gnu/packages/games.scm:7222 msgid "" "Badass generates false commits for a range of dates, essentially\n" "hacking the gamification of contribution graphs on platforms such as\n" "Github or Gitlab." msgstr "" -#: gnu/packages/games.scm:7294 +#: gnu/packages/games.scm:7295 msgid "" "Colobot: Gold Edition is a real-time strategy game, where\n" "you can program your units (bots) in a language called CBOT, which is similar\n" @@ -4459,7 +4578,7 @@ msgid "" "You can save humanity and get programming skills!" msgstr "" -#: gnu/packages/games.scm:7386 +#: gnu/packages/games.scm:7387 msgid "" "GZdoom is a port of the Doom 2 game engine, with a modern\n" "renderer. It improves modding support with ZDoom's advanced mapping features\n" @@ -4467,7 +4586,7 @@ msgid "" "Strife, Chex Quest, and fan-created games like Harmony, Hacx and Freedoom." msgstr "" -#: gnu/packages/games.scm:7425 +#: gnu/packages/games.scm:7426 msgid "" "Odamex is a modification of the Doom engine that\n" "allows players to easily join servers dedicated to playing Doom\n" @@ -4476,7 +4595,7 @@ msgstr "" "Odamex er en ændring af Doommotoren, der tillader spillere\n" "nemt at slutte sig til servere dedikeret til Doom på nettet." -#: gnu/packages/games.scm:7453 +#: gnu/packages/games.scm:7454 msgid "" "Chocolate Doom takes a different approach to other source ports. Its\n" "aim is to accurately reproduce the experience of playing Vanilla Doom. It is\n" @@ -4489,7 +4608,7 @@ msgid "" "affect gameplay)." msgstr "" -#: gnu/packages/games.scm:7493 +#: gnu/packages/games.scm:7494 msgid "" "Crispy Doom is a friendly fork of Chocolate Doom that provides a higher\n" "display resolution, removes the static limits of the Doom engine and offers\n" @@ -4498,24 +4617,24 @@ msgid "" "original." msgstr "" -#: gnu/packages/games.scm:7566 +#: gnu/packages/games.scm:7567 #, fuzzy msgid "This package provides C11 / gnu11 utilities C library" msgstr "" "Denne pakke tilbyder Pythonbindinger til virtualiseringsbiblioteket\n" "libvirt." -#: gnu/packages/games.scm:7635 +#: gnu/packages/games.scm:7636 msgid "" "Fortune is a command-line utility which displays a random\n" "quotation from a collection of quotes." msgstr "" -#: gnu/packages/games.scm:7677 +#: gnu/packages/games.scm:7678 msgid "Xonotic-data provides the data files required by the game Xonotic." msgstr "Xonotic-data indeholder spildataene krævet for spillet Xonotic." -#: gnu/packages/games.scm:7873 +#: gnu/packages/games.scm:7874 msgid "" "Xonotic is a free, fast-paced first-person shooter.\n" "The project is geared towards providing addictive arena shooter\n" @@ -4525,7 +4644,7 @@ msgid "" "open-source FPS of its kind." msgstr "" -#: gnu/packages/games.scm:7920 +#: gnu/packages/games.scm:7921 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4534,7 +4653,7 @@ msgid "" "ncurses for text display." msgstr "" -#: gnu/packages/games.scm:7964 +#: gnu/packages/games.scm:7966 msgid "" "Naev is a 2d action/rpg space game that combines elements from\n" "the action, RPG and simulation genres. You pilot a spaceship from\n" @@ -4546,7 +4665,7 @@ msgid "" "of lore accompanying everything from planets to equipment." msgstr "" -#: gnu/packages/games.scm:8013 +#: gnu/packages/games.scm:8015 msgid "" "Frotz is an interpreter for Infocom games and\n" "other Z-machine games in the text adventure/interactive fiction genre.\n" @@ -4558,7 +4677,7 @@ msgid "" "to play games on webpages. It can also be made into a chat bot." msgstr "" -#: gnu/packages/games.scm:8075 +#: gnu/packages/games.scm:8077 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4568,7 +4687,7 @@ msgid "" "when packaged in Blorb container files or optionally from individual files." msgstr "" -#: gnu/packages/games.scm:8166 +#: gnu/packages/games.scm:8168 msgid "" "Frozen-Bubble is a clone of the popular Puzzle Bobble game, in which\n" "you attempt to shoot bubbles into groups of the same color to cause them to\n" @@ -4583,7 +4702,7 @@ msgid "" "their own levels." msgstr "" -#: gnu/packages/games.scm:8199 +#: gnu/packages/games.scm:8201 msgid "" "Libmanette is a small GObject library giving you simple\n" "access to game controllers. It supports the de-facto standard gamepads as\n" @@ -4591,7 +4710,7 @@ msgid "" "GameController." msgstr "" -#: gnu/packages/games.scm:8245 +#: gnu/packages/games.scm:8247 msgid "" "Quadrapassel comes from the classic falling-block game,\n" "Tetris. The goal of the game is to create complete horizontal lines of\n" @@ -4603,7 +4722,7 @@ msgid "" "your score gets higher, you level up and the blocks fall faster." msgstr "" -#: gnu/packages/games.scm:8294 +#: gnu/packages/games.scm:8296 msgid "" "Endless Sky is a 2D space trading and combat game. Explore\n" "other star systems. Earn money by trading, carrying passengers, or completing\n" @@ -4613,7 +4732,7 @@ msgid "" "civilized than your own." msgstr "" -#: gnu/packages/games.scm:8443 +#: gnu/packages/games.scm:8445 msgid "" "StepMania is a dance and rhythm game. It features 3D\n" "graphics, keyboard and dance pad support, and an editor for creating your own\n" @@ -4623,7 +4742,7 @@ msgid "" "to download and install them in @file{$HOME/.stepmania-X.Y/Songs} directory." msgstr "" -#: gnu/packages/games.scm:8479 +#: gnu/packages/games.scm:8481 msgid "" "@i{oshu!} is a minimalist variant of the @i{osu!} rhythm game,\n" "which is played by pressing buttons and following along sliders as they appear\n" @@ -4633,7 +4752,7 @@ msgid "" "download and unpack them separately." msgstr "" -#: gnu/packages/games.scm:8562 +#: gnu/packages/games.scm:8564 msgid "" "Battle Tanks (also known as \"btanks\") is a funny battle\n" "game, where you can choose one of three vehicles and eliminate your enemy\n" @@ -4642,7 +4761,7 @@ msgid "" "and cooperative." msgstr "" -#: gnu/packages/games.scm:8596 +#: gnu/packages/games.scm:8598 msgid "" "Slime Volley is a 2D arcade-oriented volleyball simulation, in\n" "the spirit of some Java games of the same name.\n" @@ -4653,7 +4772,7 @@ msgid "" "the ground, the set ends and all balls are served again." msgstr "" -#: gnu/packages/games.scm:8626 +#: gnu/packages/games.scm:8628 msgid "" "Slingshot is a two-dimensional strategy game where two\n" "players attempt to shoot one another through a section of space populated by\n" @@ -4661,14 +4780,14 @@ msgid "" "affected by the gravity of the planets." msgstr "" -#: gnu/packages/games.scm:8674 +#: gnu/packages/games.scm:8676 msgid "" "4D-TRIS is an alteration of the well-known Tetris game. The\n" "game field is extended to 4D space, which has to filled up by the gamer with\n" "4D hyper cubes." msgstr "" -#: gnu/packages/games.scm:8751 +#: gnu/packages/games.scm:8753 msgid "" "Arx Libertatis is a cross-platform port of Arx Fatalis, a 2002\n" "first-person role-playing game / dungeon crawler developed by Arkane Studios.\n" @@ -4678,7 +4797,7 @@ msgid "" "where the player draws runes in real time to effect the desired spell." msgstr "" -#: gnu/packages/games.scm:8797 +#: gnu/packages/games.scm:8799 msgid "" "The Legend of Edgar is a 2D platform game with a persistent world.\n" "When Edgar's father fails to return home after venturing out one dark and stormy night,\n" @@ -4686,7 +4805,7 @@ msgid "" "a fortress beyond the forbidden swamp." msgstr "" -#: gnu/packages/games.scm:8899 +#: gnu/packages/games.scm:8901 msgid "" "OpenClonk is a multiplayer action/tactics/skill game. It is\n" "often referred to as a mixture of The Settlers and Worms. In a simple 2D\n" @@ -4696,20 +4815,20 @@ msgid "" "fight each other on an arena-like map." msgstr "" -#: gnu/packages/games.scm:8931 +#: gnu/packages/games.scm:8933 msgid "" "Flare (Free Libre Action Roleplaying Engine) is a simple\n" "game engine built to handle a very specific kind of game: single-player 2D\n" "action RPGs." msgstr "" -#: gnu/packages/games.scm:8994 +#: gnu/packages/games.scm:8996 msgid "" "Flare is a single-player 2D action RPG with\n" "fast-paced action and a dark fantasy style." msgstr "" -#: gnu/packages/games.scm:9046 +#: gnu/packages/games.scm:9048 msgid "" "Far below the surface of the planet is a place of limitless\n" "power. Those that seek to control such a utopia will soon bring an end to\n" @@ -4723,7 +4842,7 @@ msgid "" "Orcus Dome from evil." msgstr "" -#: gnu/packages/games.scm:9108 +#: gnu/packages/games.scm:9110 msgid "" "Marble Marcher is a video game that uses a fractal physics\n" "engine and fully procedural rendering to produce beautiful and unique\n" @@ -4733,7 +4852,7 @@ msgid "" "levels to unlock." msgstr "" -#: gnu/packages/games.scm:9159 +#: gnu/packages/games.scm:9161 msgid "" "SimGear is a set of libraries designed to be used as\n" "building blocks for quickly assembling 3D simulations, games, and\n" @@ -4741,7 +4860,7 @@ msgid "" "and also provides the base for the FlightGear Flight Simulator." msgstr "" -#: gnu/packages/games.scm:9253 +#: gnu/packages/games.scm:9255 msgid "" "The goal of the FlightGear project is to create a\n" "sophisticated flight simulator framework for use in research or academic\n" @@ -4751,14 +4870,14 @@ msgid "" "simulator." msgstr "" -#: gnu/packages/games.scm:9306 +#: gnu/packages/games.scm:9308 msgid "" "You, as a bunny, have to jump on your opponents to make them\n" "explode. It is a true multiplayer game; you cannot play this alone. You can\n" "play with up to four players simultaneously. It has network support." msgstr "" -#: gnu/packages/games.scm:9373 +#: gnu/packages/games.scm:9375 msgid "" "Hedgewars is a turn based strategy, artillery, action and comedy game,\n" "featuring the antics of pink hedgehogs with attitude as they battle from the\n" @@ -4768,7 +4887,7 @@ msgid "" "and bring the war to your enemy." msgstr "" -#: gnu/packages/games.scm:9407 +#: gnu/packages/games.scm:9409 msgid "" "The gruid module provides packages for easily building\n" "grid-based applications in Go. The library abstracts rendering and input for\n" @@ -4778,13 +4897,13 @@ msgid "" "application." msgstr "" -#: gnu/packages/games.scm:9437 +#: gnu/packages/games.scm:9439 msgid "" "The gruid-tcell module provides a Gruid driver for building\n" "terminal full-window applications." msgstr "" -#: gnu/packages/games.scm:9464 +#: gnu/packages/games.scm:9466 msgid "" "Harmonist: Dayoriah Clan Infiltration is a stealth\n" "coffee-break roguelike game. The game has a heavy focus on tactical\n" @@ -4794,7 +4913,7 @@ msgid "" "on items and player adaptability for character progression." msgstr "" -#: gnu/packages/games.scm:9573 +#: gnu/packages/games.scm:9575 msgid "" "Drascula: The Vampire Strikes Back is a classic humorous 2D\n" "point and click adventure game.\n" @@ -4806,7 +4925,7 @@ msgid "" "the World and demonstrating that he is even more evil than his brother Vlad." msgstr "" -#: gnu/packages/games.scm:9653 +#: gnu/packages/games.scm:9655 msgid "" "Lure of the Temptress is a classic 2D point and click adventure game.\n" "\n" @@ -4825,7 +4944,7 @@ msgid "" "Skorl. Maybe it would be an idea to try and escape..." msgstr "" -#: gnu/packages/games.scm:9752 +#: gnu/packages/games.scm:9754 msgid "" "Flight of the Amazon Queen is a 2D point-and-click\n" "adventure game set in the 1940s.\n" @@ -4842,7 +4961,7 @@ msgid "" "women and 6-foot-tall pygmies." msgstr "" -#: gnu/packages/games.scm:9852 +#: gnu/packages/games.scm:9854 msgid "" "Beneath a Steel Sky is a science-fiction thriller set in a bleak\n" "post-apocalyptic vision of the future. It revolves around Union City,\n" @@ -4865,7 +4984,7 @@ msgid "" "and to seek vengeance for the killing of his tribe." msgstr "" -#: gnu/packages/games.scm:9911 +#: gnu/packages/games.scm:9913 msgid "" "GNU Robots is a game in which you program a robot to explore a world\n" "full of enemies that can hurt it, obstacles and food to be eaten. The goal of\n" @@ -4873,14 +4992,14 @@ msgid "" "may be written in a plain text file in the Scheme programming language." msgstr "" -#: gnu/packages/games.scm:9981 +#: gnu/packages/games.scm:9983 msgid "" "Ri-li is a game in which you drive a wooden toy\n" "steam locomotive across many levels and collect all the coaches to\n" "win." msgstr "" -#: gnu/packages/games.scm:10037 +#: gnu/packages/games.scm:10039 msgid "" "FreeOrion is a turn-based space empire and galactic conquest (4X)\n" "computer game being designed and built by the FreeOrion project. Control an\n" @@ -4890,14 +5009,14 @@ msgid "" "remake of that series or any other game." msgstr "" -#: gnu/packages/games.scm:10093 +#: gnu/packages/games.scm:10095 msgid "" "Leela-zero is a Go engine with no human-provided knowledge, modeled after\n" "the AlphaGo Zero paper. The current best network weights file for the engine\n" "can be downloaded from @url{https://zero.sjeng.org/best-network}." msgstr "" -#: gnu/packages/games.scm:10171 +#: gnu/packages/games.scm:10173 msgid "" "This a tool for Go players which performs the following functions:\n" "@itemize\n" @@ -4909,7 +5028,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:10214 +#: gnu/packages/games.scm:10216 msgid "" "KTuberling is a drawing toy intended for small children and\n" "adults who remain young at heart. The game has no winner; the only purpose is\n" @@ -4928,7 +5047,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10260 +#: gnu/packages/games.scm:10262 msgid "" "Picmi is a number logic game in which cells in a grid have\n" "to be colored or left blank according to numbers given at the side of the\n" @@ -4937,7 +5056,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10297 +#: gnu/packages/games.scm:10299 msgid "" "Kolf is a miniature golf game for one to ten players. The\n" "game is played from an overhead view, with a short bar representing the golf\n" @@ -4956,13 +5075,13 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10341 +#: gnu/packages/games.scm:10343 msgid "" "Shared library and common files for kmahjongg, kshisen and\n" "other Mah Jongg like games." msgstr "" -#: gnu/packages/games.scm:10374 +#: gnu/packages/games.scm:10376 msgid "" "In KMahjongg the tiles are scrambled and staked on top of\n" "each other to resemble a certain shape. The player is then expected to remove\n" @@ -4974,7 +5093,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10416 +#: gnu/packages/games.scm:10418 msgid "" "KShisen is a solitaire-like game played using the standard\n" "set of Mahjong tiles. Unlike Mahjong however, KShisen has only one layer of\n" @@ -4983,7 +5102,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10471 +#: gnu/packages/games.scm:10473 msgid "" "Kajongg is the ancient Chinese board game for 4 players.\n" "\n" @@ -4998,7 +5117,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10513 +#: gnu/packages/games.scm:10515 msgid "" "KBreakout is similar to the classics breakout and xboing,\n" "featuring a number of added graphical enhancements and effects. You control a\n" @@ -5008,7 +5127,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10551 +#: gnu/packages/games.scm:10553 msgid "" "KMines is a classic Minesweeper game. The idea is to\n" "uncover all the squares without blowing up any mines. When a mine is blown\n" @@ -5017,7 +5136,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10588 +#: gnu/packages/games.scm:10590 msgid "" "Konquest is the KDE version of Gnu-Lactic Konquest. Players\n" "conquer other planets by sending ships to them. The goal is to build an\n" @@ -5028,7 +5147,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10627 +#: gnu/packages/games.scm:10629 msgid "" "KBounce is a single player arcade game with the elements of\n" "puzzle. It is played on a field, surrounded by wall, with two or more balls\n" @@ -5038,7 +5157,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10665 +#: gnu/packages/games.scm:10667 msgid "" "KBlocks is the classic Tetris-like falling blocks game.\n" "\n" @@ -5050,7 +5169,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10708 +#: gnu/packages/games.scm:10710 msgid "" "KSudoku is a Sudoku game and solver, supporting a range of\n" "2D and 3D Sudoku variants. In addition to playing Sudoku, it can print Sudoku\n" @@ -5079,7 +5198,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10763 +#: gnu/packages/games.scm:10765 msgid "" "KLines is a simple but highly addictive one player game.\n" "\n" @@ -5096,7 +5215,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10806 +#: gnu/packages/games.scm:10808 msgid "" "KGoldrunner is an action game where the hero runs through a\n" "maze, climbs stairs, dig holes and dodges enemies in order to collect all the\n" @@ -5110,7 +5229,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10849 +#: gnu/packages/games.scm:10851 msgid "" "KDiamond is a three-in-a-row game like Bejeweled. It\n" "features unlimited fun with randomly generated games and five difficulty\n" @@ -5119,7 +5238,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10885 +#: gnu/packages/games.scm:10887 msgid "" "KFourInLine is a board game for two players based on the\n" "Connect-Four game.\n" @@ -5130,7 +5249,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10924 +#: gnu/packages/games.scm:10926 msgid "" "KBlackbox is a game of hide and seek played on a grid of\n" "boxes where the computer has hidden several balls. The position of the hidden\n" @@ -5142,7 +5261,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10964 +#: gnu/packages/games.scm:10966 msgid "" "KNetWalk is a small game where you have to build up a\n" "computer network by rotating the wires to connect the terminals to the server.\n" @@ -5155,7 +5274,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11002 +#: gnu/packages/games.scm:11004 msgid "" "Bomber is a single player arcade game.\n" "\n" @@ -5171,7 +5290,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11047 +#: gnu/packages/games.scm:11049 msgid "" "Granatier is a clone of the classic Bomberman game,\n" "inspired by the work of the Clanbomber clone.\n" @@ -5179,7 +5298,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11085 +#: gnu/packages/games.scm:11087 msgid "" "KsirK is a multi-player network-enabled game. The goal of\n" "the game is simply to conquer the world by attacking your neighbors with your\n" @@ -5204,7 +5323,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11145 +#: gnu/packages/games.scm:11147 msgid "" "Palapeli is a jigsaw puzzle game. Unlike other games in\n" "that genre, you are not limited to aligning pieces on imaginary grids. The\n" @@ -5216,7 +5335,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11184 +#: gnu/packages/games.scm:11186 msgid "" "Kiriki is an addictive and fun dice game, designed to be\n" "played by as many as six players.\n" @@ -5227,7 +5346,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11224 +#: gnu/packages/games.scm:11226 msgid "" "Kigo is an open-source implementation of the popular Go\n" "game.\n" @@ -5244,7 +5363,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11269 +#: gnu/packages/games.scm:11271 msgid "" "Kubrick is a game based on the Rubik's Cube puzzle.\n" "\n" @@ -5257,7 +5376,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11309 +#: gnu/packages/games.scm:11311 msgid "" "Lieutnant Skat (from German \"Offiziersskat\") is a fun and\n" "engaging card game for two players, where the second player is either live\n" @@ -5268,7 +5387,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11347 +#: gnu/packages/games.scm:11349 msgid "" "Kapman is a clone of the well known game Pac-Man.\n" "\n" @@ -5280,7 +5399,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11386 +#: gnu/packages/games.scm:11388 msgid "" "KSpaceduel is a space battle game for one or two players,\n" "where two ships fly around a star in a struggle to be the only survivor.\n" @@ -5288,7 +5407,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11419 +#: gnu/packages/games.scm:11421 msgid "" "Bovo is a Gomoku (from Japanese 五目並べ - lit. \"five\n" "points\") like game for two players, where the opponents alternate in placing\n" @@ -5299,7 +5418,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11457 +#: gnu/packages/games.scm:11459 msgid "" "Killbots is a simple game of evading killer robots.\n" "\n" @@ -5313,7 +5432,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11499 +#: gnu/packages/games.scm:11501 msgid "" "KSnakeDuel is a fast action game where you steer a snake\n" "which has to eat food. While eating the snake grows. But once a player\n" @@ -5323,7 +5442,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11535 +#: gnu/packages/games.scm:11537 msgid "" "In Kollision you use mouse to control a small blue ball in a\n" "closed space environment filled with small red balls, which move about\n" @@ -5334,7 +5453,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11575 +#: gnu/packages/games.scm:11577 msgid "" "KBattleship is a Battle Ship game for KDE.\n" "\n" @@ -5345,7 +5464,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11615 +#: gnu/packages/games.scm:11617 msgid "" "KReversi is a simple one player strategy game played\n" "against the computer.\n" @@ -5358,7 +5477,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11655 +#: gnu/packages/games.scm:11657 msgid "" "KSquares is an implementation of the popular paper based\n" "game Squares. Two players take turns connecting dots on a grid to complete\n" @@ -5367,7 +5486,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11692 +#: gnu/packages/games.scm:11694 msgid "" "KJumpingcube is a simple tactical game for one or two\n" "players, played on a grid of numbered squares. Each turn, players compete for\n" @@ -5376,7 +5495,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11782 +#: gnu/packages/games.scm:11784 msgid "" "X-Moto is a challenging 2D motocross platform game, where\n" "physics play an all important role in the gameplay. You need to\n" @@ -5384,27 +5503,27 @@ msgid "" "the more difficult challenges." msgstr "" -#: gnu/packages/games.scm:11827 +#: gnu/packages/games.scm:11829 msgid "" "Eboard is a chess board interface for ICS (Internet Chess Servers)\n" "and chess engines." msgstr "" -#: gnu/packages/games.scm:11880 +#: gnu/packages/games.scm:11882 msgid "" "ChessX is a chess database. With ChessX you can operate on your\n" "collection of chess games in many ways: browse, edit, add, organize, analyze,\n" "etc. You can also play games on FICS or against an engine." msgstr "" -#: gnu/packages/games.scm:11935 +#: gnu/packages/games.scm:11937 msgid "" "Stockfish is a very strong chess engine. It is much stronger than the\n" "best human chess grandmasters. It can be used with UCI-compatible GUIs like\n" "ChessX." msgstr "" -#: gnu/packages/games.scm:11964 +#: gnu/packages/games.scm:11966 msgid "" "Barrage is a rather destructive action game that puts you on a shooting\n" "range with the objective to hit as many dummy targets as possible within\n" @@ -5413,7 +5532,7 @@ msgid "" "get high scores." msgstr "" -#: gnu/packages/games.scm:11990 +#: gnu/packages/games.scm:11992 msgid "" "This is a clone of the classic game BurgerTime. In it, you play\n" "the part of a chef who must create burgers by stepping repeatedly on\n" @@ -5423,7 +5542,7 @@ msgid "" "protect you." msgstr "" -#: gnu/packages/games.scm:12018 +#: gnu/packages/games.scm:12020 msgid "" "Seven Kingdoms, designed by Trevor Chan, brings a blend of Real-Time\n" "Strategy with the addition of trade, diplomacy, and espionage. The game\n" @@ -5433,7 +5552,7 @@ msgid "" "kingdom." msgstr "" -#: gnu/packages/games.scm:12134 +#: gnu/packages/games.scm:12136 msgid "" "In the grand tradition of Marble Madness and Super Monkey Ball,\n" "Neverball has you guide a rolling ball through dangerous territory. Balance\n" @@ -5443,13 +5562,13 @@ msgid "" "game." msgstr "" -#: gnu/packages/games.scm:12210 +#: gnu/packages/games.scm:12212 msgid "" "With PokerTH you can play the Texas holdem poker game, either against\n" "computer opponents or against real players online." msgstr "" -#: gnu/packages/games.scm:12281 +#: gnu/packages/games.scm:12283 msgid "" "Xblackjack is a MOTIF/OLIT based tool constructed to get you ready for\n" "the casino. It was inspired by a book called \"Beat the Dealer\" by Edward\n" @@ -5458,13 +5577,13 @@ msgid "" "System\" (high-low system)." msgstr "" -#: gnu/packages/games.scm:12321 +#: gnu/packages/games.scm:12323 msgid "" "Pilot your ship inside a planet to find and rescue the colonists trapped\n" "inside the Zenith Colony." msgstr "" -#: gnu/packages/games.scm:12341 +#: gnu/packages/games.scm:12343 msgid "" "Provides a large set of Go-related services for X11:\n" "@itemize\n" @@ -5475,7 +5594,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:12401 +#: gnu/packages/games.scm:12403 msgid "" "Passage is meant to be a memento mori game. It presents an entire life,\n" "from young adulthood through old age and death, in the span of five minutes.\n" @@ -5484,21 +5603,21 @@ msgid "" "there's no right way to interpret it." msgstr "" -#: gnu/packages/games.scm:12435 +#: gnu/packages/games.scm:12437 msgid "" "High performance animated desktop background setter for\n" "X11 that won't set your CPU on fire, drain your laptop battery, or lower video\n" "game FPS." msgstr "" -#: gnu/packages/games.scm:12465 +#: gnu/packages/games.scm:12467 msgid "" "Curse of War is a fast-paced action strategy game originally\n" "implemented using ncurses user interface. An SDL graphical version is also\n" "available." msgstr "" -#: gnu/packages/games.scm:12496 +#: gnu/packages/games.scm:12498 msgid "" "Schiffbruch is a mix of building, strategy and adventure and gets played\n" "with a two-dimensional view. The game deals with the consequences of a ship\n" @@ -5507,13 +5626,13 @@ msgid "" "get attention, so you get found." msgstr "" -#: gnu/packages/games.scm:12556 +#: gnu/packages/games.scm:12558 msgid "" "This package provides port of Prince of Persia, based on the\n" "disassembly of the DOS version, extended with new features." msgstr "" -#: gnu/packages/games.scm:12587 +#: gnu/packages/games.scm:12589 #, scheme-format msgid "" "@code{fheroes2} is an implementation of Heroes of Might and\n" @@ -5609,7 +5728,7 @@ msgid "" "from Markdown files." msgstr "" -#: gnu/packages/gettext.scm:311 +#: gnu/packages/gettext.scm:304 msgid "" "The po4a (PO for anything) project goal is to ease translations (and\n" "more interestingly, the maintenance of translations) using gettext tools on\n" @@ -5694,18 +5813,18 @@ msgid "" "system. It was forked from the GNU Image Manipulation Program." msgstr "" -#: gnu/packages/gnome.scm:284 +#: gnu/packages/gnome.scm:288 msgid "GUPnP-IGD is a library to handle UPnP IGD port mapping." msgstr "" -#: gnu/packages/gnome.scm:340 +#: gnu/packages/gnome.scm:344 msgid "" "Brasero is an application to burn CD/DVD for the Gnome\n" "Desktop. It is designed to be as simple as possible and has some unique\n" "features to enable users to create their discs easily and quickly." msgstr "" -#: gnu/packages/gnome.scm:372 +#: gnu/packages/gnome.scm:376 msgid "" "Libcloudproviders is a DBus API that allows cloud storage sync\n" "clients to expose their services. Clients such as file managers and desktop\n" @@ -5713,19 +5832,19 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:444 +#: gnu/packages/gnome.scm:448 msgid "" "LibGRSS is a Glib abstraction to handle feeds in RSS, Atom,\n" "and other formats." msgstr "" -#: gnu/packages/gnome.scm:472 +#: gnu/packages/gnome.scm:476 msgid "" "GNOME-JS-Common provides common modules for GNOME JavaScript\n" "bindings." msgstr "" -#: gnu/packages/gnome.scm:555 +#: gnu/packages/gnome.scm:559 msgid "" "Seed is a library and interpreter, dynamically bridging\n" "(through GObjectIntrospection) the WebKit JavaScriptCore engine, with the\n" @@ -5734,21 +5853,21 @@ msgid "" "in JavaScript." msgstr "" -#: gnu/packages/gnome.scm:611 +#: gnu/packages/gnome.scm:615 msgid "" "Libdmapsharing is a library which allows programs to access,\n" "share and control the playback of media content using DMAP (DAAP, DPAP & DACP).\n" "It is written in C using GObject and libsoup." msgstr "" -#: gnu/packages/gnome.scm:644 +#: gnu/packages/gnome.scm:648 msgid "" "GTX is a small collection of convenience functions intended to\n" "enhance the GLib testing framework. With specific emphasis on easing the pain\n" "of writing test cases for asynchronous interactions." msgstr "" -#: gnu/packages/gnome.scm:721 +#: gnu/packages/gnome.scm:725 msgid "" "Dee is a library that uses DBus to provide objects allowing\n" "you to create Model-View-Controller type programs across DBus. It also consists\n" @@ -5756,7 +5875,7 @@ msgid "" "of known objects without needing a central registrar." msgstr "" -#: gnu/packages/gnome.scm:802 +#: gnu/packages/gnome.scm:806 msgid "" "Zeitgeist is a service which logs the users’s activities and\n" "events, anywhere from files opened to websites visited and conversations. It\n" @@ -5765,27 +5884,27 @@ msgid "" "patterns." msgstr "" -#: gnu/packages/gnome.scm:869 +#: gnu/packages/gnome.scm:871 msgid "" "GNOME Recipes helps you discover what to cook today,\n" "tomorrow, the rest of the week and for special occasions." msgstr "" -#: gnu/packages/gnome.scm:939 +#: gnu/packages/gnome.scm:940 msgid "" "GNOME Photos is a simple and elegant replacement for using a\n" "file manager to deal with photos. Enhance, crop and edit in a snap. Seamless\n" "cloud integration is offered through GNOME Online Accounts." msgstr "" -#: gnu/packages/gnome.scm:1007 +#: gnu/packages/gnome.scm:1008 msgid "" "GNOME Music is the new GNOME music playing application that\n" "aims to combine an elegant and immersive browsing experience with simple\n" "and straightforward controls." msgstr "" -#: gnu/packages/gnome.scm:1028 +#: gnu/packages/gnome.scm:1029 msgid "" "PortableXDR is an implementation of External Data\n" "Representation (XDR) Library. It is a standard data serialization format, for\n" @@ -5793,25 +5912,25 @@ msgid "" "between different kinds of computer systems." msgstr "" -#: gnu/packages/gnome.scm:1066 +#: gnu/packages/gnome.scm:1067 msgid "" "Tepl is a library that eases the development of\n" "GtkSourceView-based text editors and IDEs." msgstr "" -#: gnu/packages/gnome.scm:1107 +#: gnu/packages/gnome.scm:1108 msgid "" "krb5-auth-dialog is a simple dialog that monitors Kerberos\n" "tickets, and pops up a dialog when they are about to expire." msgstr "" -#: gnu/packages/gnome.scm:1132 +#: gnu/packages/gnome.scm:1133 msgid "" "Notification-Daemon is the server implementation of the\n" "freedesktop.org desktop notification specification." msgstr "" -#: gnu/packages/gnome.scm:1168 +#: gnu/packages/gnome.scm:1169 msgid "" "The mm-common module provides the build infrastructure\n" "and utilities shared among the GNOME C++ binding libraries. Release\n" @@ -5819,55 +5938,55 @@ msgid "" "Library reference documentation." msgstr "" -#: gnu/packages/gnome.scm:1214 +#: gnu/packages/gnome.scm:1215 msgid "" "PhoDav was initially developed as a file-sharing mechanism for Spice,\n" "but it is generic enough to be reused in other projects,\n" "in particular in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1267 +#: gnu/packages/gnome.scm:1268 msgid "" "GNOME Color Manager is a session framework that makes\n" "it easy to manage, install and generate color profiles\n" "in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1319 +#: gnu/packages/gnome.scm:1320 msgid "" "GNOME Online Miners provides a set of crawlers that\n" "go through your online content and index them locally in Tracker.\n" "It has miners for Facebook, Flickr, Google, ownCloud and SkyDrive." msgstr "" -#: gnu/packages/gnome.scm:1352 +#: gnu/packages/gnome.scm:1353 msgid "" "This package provides a library to handle resource discovery\n" "and announcement over @acronym{SSDP, Simple Service Discovery Protocol} and\n" "a debugging tool, @command{gssdp-device-sniffer}." msgstr "" -#: gnu/packages/gnome.scm:1391 +#: gnu/packages/gnome.scm:1392 msgid "" "This package provides GUPnP, an object-oriented framework\n" "for creating UPnP devices and control points, written in C using\n" "@code{GObject} and @code{libsoup}." msgstr "" -#: gnu/packages/gnome.scm:1423 +#: gnu/packages/gnome.scm:1424 msgid "" "This package provides a small utility library to\n" "support DLNA-related tasks such as media profile guessing, transcoding to a\n" "given profile, etc. DLNA is a subset of UPnP A/V." msgstr "" -#: gnu/packages/gnome.scm:1453 +#: gnu/packages/gnome.scm:1454 msgid "" "This package provides a small library for handling\n" "and implementation of UPnP A/V profiles." msgstr "" -#: gnu/packages/gnome.scm:1478 +#: gnu/packages/gnome.scm:1479 msgid "" "The libmediaart library is the foundation for media art caching,\n" "extraction, and lookup for applications on the desktop." @@ -5880,14 +5999,14 @@ msgid "" "tour of all gnome components and allows the user to set them up." msgstr "" -#: gnu/packages/gnome.scm:1584 +#: gnu/packages/gnome.scm:1583 msgid "" "GNOME User Share is a small package that binds together\n" "various free software projects to bring easy to use user-level file\n" "sharing to the masses." msgstr "" -#: gnu/packages/gnome.scm:1639 +#: gnu/packages/gnome.scm:1638 msgid "" "Sushi is a DBus-activated service that allows applications\n" "to preview files on the GNOME desktop." @@ -5939,7 +6058,7 @@ msgid "" "and system administrators." msgstr "" -#: gnu/packages/gnome.scm:1946 +#: gnu/packages/gnome.scm:1950 msgid "" "Dia can be used to draw different types of diagrams, and\n" "includes support for UML static structure diagrams (class diagrams), entity\n" @@ -5947,28 +6066,28 @@ msgid "" "formats like PNG, SVG, PDF and EPS." msgstr "" -#: gnu/packages/gnome.scm:1991 +#: gnu/packages/gnome.scm:1995 msgid "" "libgdata is a GLib-based library for accessing online service APIs using\n" "the GData protocol — most notably, Google's services. It provides APIs to\n" "access the common Google services, and has full asynchronous support." msgstr "" -#: gnu/packages/gnome.scm:2019 +#: gnu/packages/gnome.scm:2023 msgid "" "libgxps is a GObject-based library for handling and rendering XPS\n" "documents. This package also contains binaries that can convert XPS documents\n" "to other formats." msgstr "" -#: gnu/packages/gnome.scm:2060 +#: gnu/packages/gnome.scm:2063 msgid "" "Characters is a simple utility application to find\n" "and insert unusual characters. It allows you to quickly find the\n" "character you are looking for by searching for keywords." msgstr "" -#: gnu/packages/gnome.scm:2081 +#: gnu/packages/gnome.scm:2084 msgid "" "gnome-common contains various files needed to bootstrap\n" "GNOME modules built from Git. It contains a common \"autogen.sh\" script that\n" @@ -5976,13 +6095,13 @@ msgid "" "commonly used macros." msgstr "" -#: gnu/packages/gnome.scm:2142 +#: gnu/packages/gnome.scm:2145 msgid "" "GNOME Contacts organizes your contact information from online and\n" "offline sources, providing a centralized place for managing your contacts." msgstr "" -#: gnu/packages/gnome.scm:2222 +#: gnu/packages/gnome.scm:2225 msgid "" "The libgnome-desktop library provides API shared by several applications\n" "on the desktop, but that cannot live in the platform for various reasons.\n" @@ -5992,40 +6111,40 @@ msgid "" "The gnome-about program helps find which version of GNOME is installed." msgstr "" -#: gnu/packages/gnome.scm:2257 +#: gnu/packages/gnome.scm:2260 msgid "" "Gnome-doc-utils is a collection of documentation utilities for the\n" "Gnome project. It includes xml2po tool which makes it easier to translate\n" "and keep up to date translations of documentation." msgstr "" -#: gnu/packages/gnome.scm:2309 +#: gnu/packages/gnome.scm:2311 msgid "Disk management utility for GNOME." msgstr "Diskhåndteringsredskab for GNOME." -#: gnu/packages/gnome.scm:2352 +#: gnu/packages/gnome.scm:2353 msgid "" "Application to show you the fonts installed on your computer\n" "for your use as thumbnails. Selecting any thumbnails shows the full view of how\n" "the font would look under various sizes." msgstr "" -#: gnu/packages/gnome.scm:2420 +#: gnu/packages/gnome.scm:2421 msgid "" "The GCR package contains libraries used for displaying certificates and\n" "accessing key stores. It also provides the viewer for crypto files on the\n" "GNOME Desktop." msgstr "" -#: gnu/packages/gnome.scm:2459 +#: gnu/packages/gnome.scm:2460 msgid "This library provides docking features for gtk+." msgstr "" -#: gnu/packages/gnome.scm:2505 +#: gnu/packages/gnome.scm:2506 msgid "Client library to access passwords from the GNOME keyring." msgstr "" -#: gnu/packages/gnome.scm:2575 +#: gnu/packages/gnome.scm:2576 msgid "" "gnome-keyring is a program that keeps passwords and other secrets for\n" "users. It is run as a daemon in the session, similar to ssh-agent, and other\n" @@ -6044,13 +6163,13 @@ msgid "" "on the GNOME Desktop with a single simple application." msgstr "" -#: gnu/packages/gnome.scm:2693 +#: gnu/packages/gnome.scm:2692 msgid "" "Gsettings-desktop-schemas contains a collection of GSettings\n" "schemas for settings shared by various components of the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:2729 +#: gnu/packages/gnome.scm:2728 msgid "" "Liblarch is a Python library built to easily handle data structures such\n" "as lists, trees and acyclic graphs. There's also a GTK binding that will\n" @@ -6061,7 +6180,7 @@ msgid "" "and how they are displayed (View)." msgstr "" -#: gnu/packages/gnome.scm:2790 +#: gnu/packages/gnome.scm:2789 msgid "" "Getting Things GNOME! (GTG) is a personal tasks and TODO list items\n" "organizer for the GNOME desktop environment inspired by the Getting Things\n" @@ -6071,18 +6190,18 @@ msgid "" "know, from small tasks to large projects." msgstr "" -#: gnu/packages/gnome.scm:2829 +#: gnu/packages/gnome.scm:2828 msgid "" "To help with the transition to the Freedesktop Icon Naming\n" "Specification, the icon naming utility maps the icon names used by the\n" "GNOME and KDE desktops to the icon names proposed in the specification." msgstr "" -#: gnu/packages/gnome.scm:2858 +#: gnu/packages/gnome.scm:2857 msgid "Icons for the GNOME desktop." msgstr "Ikoner for GNOME-skrivebordet." -#: gnu/packages/gnome.scm:2897 +#: gnu/packages/gnome.scm:2896 msgid "" "This is an icon theme that follows the Tango visual\n" "guidelines." @@ -6090,7 +6209,7 @@ msgstr "" "Dette er et ikontema, som følger de visuelle\n" "retningslinjer fra Tango." -#: gnu/packages/gnome.scm:2927 +#: gnu/packages/gnome.scm:2926 msgid "" "The shared-mime-info package contains the core database of common types\n" "and the update-mime-database command used to extend it. It requires glib2 to\n" @@ -6099,18 +6218,18 @@ msgid "" "database is translated at Transifex." msgstr "" -#: gnu/packages/gnome.scm:3012 +#: gnu/packages/gnome.scm:3011 msgid "" "system-config-printer is a CUPS administration tool. It's written in\n" "Python using GTK+, and uses the @acronym{IPP, Internet Printing Protocol} when\n" "configuring CUPS." msgstr "" -#: gnu/packages/gnome.scm:3036 +#: gnu/packages/gnome.scm:3035 msgid "Freedesktop icon theme." msgstr "Freedesktop-ikondtema." -#: gnu/packages/gnome.scm:3085 +#: gnu/packages/gnome.scm:3084 msgid "" "Libnotify is a library that sends desktop notifications to a\n" "notification daemon, as defined in the Desktop Notifications spec. These\n" @@ -6118,7 +6237,7 @@ msgid "" "some form of information without getting in the user's way." msgstr "" -#: gnu/packages/gnome.scm:3132 +#: gnu/packages/gnome.scm:3131 msgid "" "Libpeas is a gobject-based plugin engine, targeted at giving every\n" "application the chance to assume its own extensibility. It also has a set of\n" @@ -6127,21 +6246,21 @@ msgid "" "API." msgstr "" -#: gnu/packages/gnome.scm:3168 +#: gnu/packages/gnome.scm:3167 msgid "" "GtkGLExt is an OpenGL extension to GTK+. It provides\n" "additional GDK objects which support OpenGL rendering in GTK+ and GtkWidget\n" "API add-ons to make GTK+ widgets OpenGL-capable." msgstr "" -#: gnu/packages/gnome.scm:3248 +#: gnu/packages/gnome.scm:3247 msgid "" "Glade is a rapid application development (RAD) tool to\n" "enable quick & easy development of user interfaces for the GTK+ toolkit and\n" "the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:3280 +#: gnu/packages/gnome.scm:3279 msgid "" "Libcroco is a standalone CSS2 parsing and manipulation library.\n" "The parser provides a low level event driven SAC-like API and a CSS object\n" @@ -6149,13 +6268,13 @@ msgid "" "XML/CSS rendering engine." msgstr "" -#: gnu/packages/gnome.scm:3347 +#: gnu/packages/gnome.scm:3346 msgid "" "Libgsf aims to provide an efficient extensible I/O abstraction\n" "for dealing with different structured file formats." msgstr "" -#: gnu/packages/gnome.scm:3526 +#: gnu/packages/gnome.scm:3525 msgid "" "Librsvg is a library to render SVG images to Cairo surfaces.\n" "GNOME uses this to render SVG icons. Outside of GNOME, other desktop\n" @@ -6163,7 +6282,7 @@ msgid "" "diagrams." msgstr "" -#: gnu/packages/gnome.scm:3649 +#: gnu/packages/gnome.scm:3648 msgid "" "Libidl is a library for creating trees of CORBA Interface\n" "Definition Language (idl) files, which is a specification for defining\n" @@ -6172,13 +6291,13 @@ msgid "" "functionality was designed to be as reusable and portable as possible." msgstr "" -#: gnu/packages/gnome.scm:3704 +#: gnu/packages/gnome.scm:3703 msgid "" "ORBit2 is a CORBA 2.4-compliant Object Request Broker (orb)\n" "featuring mature C, C++ and Python bindings." msgstr "" -#: gnu/packages/gnome.scm:3758 +#: gnu/packages/gnome.scm:3757 msgid "" "Bonobo is a framework for creating reusable components for\n" "use in GNOME applications, built on top of CORBA." @@ -6186,7 +6305,7 @@ msgstr "" "Bonobo er en ramme til at oprette genbrugelige komponenter til\n" "brug i GNOME-programmer, bygget oven på CORBA." -#: gnu/packages/gnome.scm:3789 +#: gnu/packages/gnome.scm:3788 msgid "" "Gconf is a system for storing application preferences. It\n" "is intended for user preferences; not arbitrary data storage." @@ -6194,21 +6313,21 @@ msgstr "" "Gconf er et system til at lagre programpræferencer. Det\n" "er lavet for brugerpræferencer; ikke arbitrær datalager." -#: gnu/packages/gnome.scm:3823 +#: gnu/packages/gnome.scm:3822 msgid "" "GNOME Mime Data is a module which contains the base MIME\n" "and Application database for GNOME. The data stored by this module is\n" "designed to be accessed through the MIME functions in GnomeVFS." msgstr "" -#: gnu/packages/gnome.scm:3863 +#: gnu/packages/gnome.scm:3862 msgid "" "GnomeVFS is the core library used to access files and folders in GNOME\n" "applications. It provides a file system abstraction which allows applications\n" "to access local and remote files with a single consistent API." msgstr "" -#: gnu/packages/gnome.scm:3904 +#: gnu/packages/gnome.scm:3903 msgid "" "The libgnome library provides a number of useful routines\n" "for building modern applications, including session management, activation of\n" @@ -6218,43 +6337,43 @@ msgstr "" "til at bygge moderne programmer, inklusive sessionshåndtering, aktivering af\n" "filer og URI'er samt visning af hjælpetekster." -#: gnu/packages/gnome.scm:3928 +#: gnu/packages/gnome.scm:3927 msgid "" "Libart is a 2D drawing library intended as a\n" "high-quality vector-based 2D library with antialiasing and alpha composition." msgstr "" -#: gnu/packages/gnome.scm:3955 +#: gnu/packages/gnome.scm:3954 msgid "" "The GnomeCanvas widget provides a flexible widget for\n" "creating interactive structured graphics." msgstr "" -#: gnu/packages/gnome.scm:3977 +#: gnu/packages/gnome.scm:3976 msgid "C++ bindings to the GNOME Canvas library." msgstr "C++-bindinger til GNOME Canvas-biblioteket." -#: gnu/packages/gnome.scm:4003 +#: gnu/packages/gnome.scm:4002 msgid "" "The libgnomeui library provides additional widgets for\n" "applications. Many of the widgets from libgnomeui have already been\n" "ported to GTK+." msgstr "" -#: gnu/packages/gnome.scm:4029 +#: gnu/packages/gnome.scm:4028 msgid "" "Libglade is a library that provides interfaces for loading\n" "graphical interfaces described in glade files and for accessing the\n" "widgets built in the loading process." msgstr "" -#: gnu/packages/gnome.scm:4071 +#: gnu/packages/gnome.scm:4070 msgid "" "The Bonobo UI library provides a number of user interface\n" "controls using the Bonobo component framework." msgstr "" -#: gnu/packages/gnome.scm:4098 +#: gnu/packages/gnome.scm:4097 msgid "" "Libwnck is the Window Navigator Construction Kit, a library for use in\n" "writing pagers, tasklists, and more generally applications that are dealing\n" @@ -6262,11 +6381,11 @@ msgid "" "Hints specification (EWMH)." msgstr "" -#: gnu/packages/gnome.scm:4148 +#: gnu/packages/gnome.scm:4147 msgid "A GLib/GTK+ set of document-centric objects and utilities." msgstr "" -#: gnu/packages/gnome.scm:4234 +#: gnu/packages/gnome.scm:4233 msgid "" "GNUmeric is a GNU spreadsheet application, running under GNOME. It is\n" "interoperable with other spreadsheet applications. It has a vast array of\n" @@ -6275,11 +6394,11 @@ msgid "" "engineering." msgstr "" -#: gnu/packages/gnome.scm:4290 +#: gnu/packages/gnome.scm:4289 msgid "Drawing is a basic image editor aiming at the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:4326 +#: gnu/packages/gnome.scm:4325 msgid "The default GNOME 3 themes (Adwaita and some accessibility themes)." msgstr "" @@ -6298,7 +6417,7 @@ msgid "" "targeting the GNOME stack simple." msgstr "" -#: gnu/packages/gnome.scm:4481 +#: gnu/packages/gnome.scm:4482 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, and a minimal sample application (vte) using that. Vte is mainly used in\n" @@ -6306,14 +6425,14 @@ msgid "" "editors, IDEs, etc." msgstr "" -#: gnu/packages/gnome.scm:4505 +#: gnu/packages/gnome.scm:4506 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, this fork provides additional functions exposed for keyboard text\n" "selection and URL hints." msgstr "" -#: gnu/packages/gnome.scm:4585 +#: gnu/packages/gnome.scm:4586 msgid "" "Vinagre is a remote display client supporting the VNC, SPICE\n" "and RDP protocols." @@ -6321,21 +6440,21 @@ msgstr "" "Vinagre er en ekstern skærmklient, der understøtter VNC-, SPICE-\n" "og RDP-protokollerne." -#: gnu/packages/gnome.scm:4631 +#: gnu/packages/gnome.scm:4633 msgid "" "Dconf is a low-level configuration system. Its main purpose\n" "is to provide a backend to GSettings on platforms that don't already have\n" "configuration storage systems." msgstr "" -#: gnu/packages/gnome.scm:4661 +#: gnu/packages/gnome.scm:4663 msgid "" "JSON-GLib is a library providing serialization and\n" "described by RFC 4627. It implements a full JSON parser and generator using\n" "GLib and GObject, and integrates JSON with GLib data types." msgstr "" -#: gnu/packages/gnome.scm:4760 +#: gnu/packages/gnome.scm:4762 msgid "" "LibXklavier is a library providing high-level API for X Keyboard\n" "Extension known as XKB. This library is intended to support XFree86 and other\n" @@ -6343,7 +6462,7 @@ msgid "" "indicators etc)." msgstr "" -#: gnu/packages/gnome.scm:4788 +#: gnu/packages/gnome.scm:4790 #, fuzzy msgid "" "This package provides Python bindings to librsvg, the SVG rendering\n" @@ -6352,7 +6471,7 @@ msgstr "" "Denne pakke tilbyder Pythonbindinger til Qt5-grænsefladen for\n" "Poppler PDF-optegningsbiblioteket." -#: gnu/packages/gnome.scm:4829 +#: gnu/packages/gnome.scm:4831 msgid "" "Glib-networking contains the implementations of certain GLib networking\n" "features that cannot be implemented directly in GLib itself because of their\n" @@ -6362,26 +6481,26 @@ msgid "" "from the GSettings schemas in gsettings-desktop-schemas." msgstr "" -#: gnu/packages/gnome.scm:4866 +#: gnu/packages/gnome.scm:4868 msgid "" "This library was designed to make it easier to access web services that\n" "claim to be \"RESTful\". It includes convenience wrappers for libsoup and\n" "libxml to ease remote use of the RESTful API." msgstr "" -#: gnu/packages/gnome.scm:4931 +#: gnu/packages/gnome.scm:4933 msgid "" "LibSoup is an HTTP client/server library for GNOME. It uses GObjects\n" "and the GLib main loop, to integrate well with GNOME applications." msgstr "" -#: gnu/packages/gnome.scm:5035 +#: gnu/packages/gnome.scm:5037 msgid "" "Libsecret is a GObject based library for storing and retrieving passwords\n" "and other secrets. It communicates with the \"Secret Service\" using DBus." msgstr "" -#: gnu/packages/gnome.scm:5074 +#: gnu/packages/gnome.scm:5076 msgid "" "Five or More is a game where you try to align\n" " five or more objects of the same color and shape causing them to disappear.\n" @@ -6389,19 +6508,19 @@ msgid "" " Try to last as long as possible." msgstr "" -#: gnu/packages/gnome.scm:5116 +#: gnu/packages/gnome.scm:5118 msgid "" "Mines (previously gnomine) is a puzzle game where you locate mines\n" "floating in an ocean using only your brain and a little bit of luck." msgstr "" -#: gnu/packages/gnome.scm:5157 +#: gnu/packages/gnome.scm:5159 msgid "" "MultiWriter can be used to write an ISO file to multiple USB devices at\n" "once." msgstr "" -#: gnu/packages/gnome.scm:5197 +#: gnu/packages/gnome.scm:5198 msgid "" "Sudoku is a Japanese logic game that exploded in popularity in 2005.\n" "GNOME Sudoku is meant to have an interface as simple and unobstrusive as\n" @@ -6409,7 +6528,7 @@ msgid "" "more fun." msgstr "" -#: gnu/packages/gnome.scm:5247 +#: gnu/packages/gnome.scm:5248 msgid "" "GNOME Terminal is a terminal emulator application for accessing a\n" "UNIX shell environment which can be used to run programs available on\n" @@ -6419,14 +6538,14 @@ msgid "" "keyboard shortcuts." msgstr "" -#: gnu/packages/gnome.scm:5319 +#: gnu/packages/gnome.scm:5320 msgid "" "Colord is a system service that makes it easy to manage,\n" "install and generate color profiles to accurately color manage input and\n" "output devices." msgstr "" -#: gnu/packages/gnome.scm:5390 +#: gnu/packages/gnome.scm:5391 msgid "" "Geoclue is a D-Bus service that provides location\n" "information. The primary goal of the Geoclue project is to make creating\n" @@ -6435,7 +6554,7 @@ msgid "" "permission from user." msgstr "" -#: gnu/packages/gnome.scm:5434 +#: gnu/packages/gnome.scm:5435 msgid "" "geocode-glib is a convenience library for geocoding (finding longitude,\n" "and latitude from an address) and reverse geocoding (finding an address from\n" @@ -6443,7 +6562,7 @@ msgid "" "faster results and to avoid unnecessary server load." msgstr "" -#: gnu/packages/gnome.scm:5510 +#: gnu/packages/gnome.scm:5511 msgid "" "UPower is an abstraction for enumerating power devices,\n" "listening to device events and querying history and statistics. Any\n" @@ -6451,13 +6570,13 @@ msgid "" "service via the system message bus." msgstr "" -#: gnu/packages/gnome.scm:5555 +#: gnu/packages/gnome.scm:5557 msgid "" "libgweather is a library to access weather information from online\n" "services for numerous locations." msgstr "" -#: gnu/packages/gnome.scm:5639 +#: gnu/packages/gnome.scm:5640 msgid "" "This package contains the daemon responsible for setting the various\n" "parameters of a GNOME session and the applications that run under it. It\n" @@ -6465,19 +6584,19 @@ msgid "" "settings, themes, mouse settings, and startup of other daemons." msgstr "" -#: gnu/packages/gnome.scm:5670 +#: gnu/packages/gnome.scm:5671 msgid "" "Totem-pl-parser is a GObjects-based library to parse and save\n" "playlists in a variety of formats." msgstr "" -#: gnu/packages/gnome.scm:5703 +#: gnu/packages/gnome.scm:5704 msgid "" "Aisleriot (also known as Solitaire or sol) is a collection of card games\n" "which are easy to play with the aid of a mouse." msgstr "" -#: gnu/packages/gnome.scm:5729 +#: gnu/packages/gnome.scm:5730 msgid "" "Amtk is the acronym for @acronym{Amtk, Actions Menus and Toolbars Kit}.\n" "It is a basic GtkUIManager replacement based on GAction. It is suitable for\n" @@ -6556,7 +6675,7 @@ msgid "" "discovery protocols." msgstr "" -#: gnu/packages/gnome.scm:6324 +#: gnu/packages/gnome.scm:6323 msgid "" "Totem is a simple yet featureful media player for GNOME\n" "which can read a large number of file formats." @@ -6564,7 +6683,7 @@ msgstr "" "Totem er en simpel men stadig funktionsrig medieafspiller for GNOME\n" "der kan læse et stort antal filformater." -#: gnu/packages/gnome.scm:6415 +#: gnu/packages/gnome.scm:6414 msgid "" "Rhythmbox is a music playing application for GNOME. It\n" "supports playlists, song ratings, and any codecs installed through gstreamer." @@ -6597,7 +6716,7 @@ msgid "" "part of udev-extras, then udev, then systemd. It's now a project on its own." msgstr "" -#: gnu/packages/gnome.scm:6611 +#: gnu/packages/gnome.scm:6610 msgid "" "GVFS is a userspace virtual file system designed to work with the I/O\n" "abstraction of GIO. It contains a GIO module that seamlessly adds GVFS\n" @@ -6608,7 +6727,7 @@ msgid "" "DAV, and others." msgstr "" -#: gnu/packages/gnome.scm:6652 +#: gnu/packages/gnome.scm:6651 msgid "" "GUsb is a GObject wrapper for libusb1 that makes it easy to do\n" "asynchronous control, bulk and interrupt transfers with proper cancellation\n" @@ -6616,7 +6735,7 @@ msgid "" "USB transfers with your high-level application or system daemon." msgstr "" -#: gnu/packages/gnome.scm:6706 +#: gnu/packages/gnome.scm:6705 msgid "" "Document Scanner is an easy-to-use application that lets you connect your\n" "scanner and quickly capture images and documents in an appropriate format. It\n" @@ -6624,7 +6743,7 @@ msgid "" "almost all of them." msgstr "" -#: gnu/packages/gnome.scm:6778 +#: gnu/packages/gnome.scm:6777 msgid "" "Eolie is a new web browser for GNOME. It features Firefox sync support,\n" "a secret password store, an adblocker, and a modern UI." @@ -6633,19 +6752,19 @@ msgstr "" "synkroniseringsunderstøttelse, et hemmeligt lager for adgangskoder, en\n" "reklameblokering og en moderne brugerflade." -#: gnu/packages/gnome.scm:6855 +#: gnu/packages/gnome.scm:6854 msgid "" "Epiphany is a GNOME web browser targeted at non-technical users. Its\n" "principles are simplicity and standards compliance." msgstr "" -#: gnu/packages/gnome.scm:6914 +#: gnu/packages/gnome.scm:6913 msgid "" "D-Feet is a D-Bus debugger, which can be used to inspect D-Bus interfaces\n" "of running programs and invoke methods on those interfaces." msgstr "" -#: gnu/packages/gnome.scm:6944 +#: gnu/packages/gnome.scm:6943 msgid "" "Yelp-XSL is a collection of programs and data files to help\n" "you build, maintain, and distribute documentation. It provides XSLT stylesheets\n" @@ -6655,14 +6774,14 @@ msgid "" "jQuery.Syntax JavaScript libraries." msgstr "" -#: gnu/packages/gnome.scm:6983 +#: gnu/packages/gnome.scm:6982 msgid "" "Yelp is the help viewer in Gnome. It natively views Mallard, DocBook,\n" "man, info, and HTML documents. It can locate documents according to the\n" "freedesktop.org help system specification." msgstr "" -#: gnu/packages/gnome.scm:7013 +#: gnu/packages/gnome.scm:7012 msgid "" "Yelp-tools is a collection of scripts and build utilities to help create,\n" "manage, and publish documentation for Yelp and the web. Most of the heavy\n" @@ -6670,13 +6789,13 @@ msgid "" "wraps things up in a developer-friendly way." msgstr "" -#: gnu/packages/gnome.scm:7051 +#: gnu/packages/gnome.scm:7050 msgid "" "Libgee is a utility library providing GObject-based interfaces and\n" "classes for commonly used data structures." msgstr "" -#: gnu/packages/gnome.scm:7079 +#: gnu/packages/gnome.scm:7078 msgid "" "Gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. It\n" "allows for GNOME applications to easily inspect and update EXIF, IPTC, and XMP\n" @@ -6691,7 +6810,7 @@ msgid "" "share them with others via social networking and more." msgstr "" -#: gnu/packages/gnome.scm:7168 +#: gnu/packages/gnome.scm:7169 msgid "" "File Roller is an archive manager for the GNOME desktop\n" "environment that allows users to view, unpack, and create compressed archives\n" @@ -6704,13 +6823,13 @@ msgid "" "configuration program to choose applications starting on login." msgstr "" -#: gnu/packages/gnome.scm:7284 +#: gnu/packages/gnome.scm:7287 msgid "" "Gjs is a javascript binding for GNOME. It's mainly based on spidermonkey\n" "javascript engine and the GObject introspection framework." msgstr "" -#: gnu/packages/gnome.scm:7381 +#: gnu/packages/gnome.scm:7383 msgid "" "While aiming at simplicity and ease of use, gedit is a\n" "powerful general purpose text editor." @@ -6718,13 +6837,13 @@ msgstr "" "Selv om den forsøger at være enkel og nem at bruge, så\n" "er gedit et funktionsrigt og alment tekstredigeringsprogram." -#: gnu/packages/gnome.scm:7405 +#: gnu/packages/gnome.scm:7407 msgid "" "Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you\n" "to display dialog boxes from the commandline and shell scripts." msgstr "" -#: gnu/packages/gnome.scm:7595 +#: gnu/packages/gnome.scm:7598 msgid "" "Mutter is a window and compositing manager that displays and manages your\n" "desktop via OpenGL. Mutter combines a sophisticated display engine using the\n" @@ -6732,7 +6851,7 @@ msgid "" "window manager." msgstr "" -#: gnu/packages/gnome.scm:7653 +#: gnu/packages/gnome.scm:7656 msgid "" "GNOME Online Accounts provides interfaces so that applications and\n" "libraries in GNOME can access the user's online accounts. It has providers\n" @@ -6740,20 +6859,20 @@ msgid "" "Microsoft Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos." msgstr "" -#: gnu/packages/gnome.scm:7740 +#: gnu/packages/gnome.scm:7743 msgid "" "This package provides a unified backend for programs that work with\n" "contacts, tasks, and calendar information. It was originally developed for\n" "Evolution (hence the name), but is now used by other packages as well." msgstr "" -#: gnu/packages/gnome.scm:7803 +#: gnu/packages/gnome.scm:7806 msgid "" "Caribou is an input assistive technology intended for switch and pointer\n" "users." msgstr "" -#: gnu/packages/gnome.scm:7953 +#: gnu/packages/gnome.scm:7958 msgid "" "NetworkManager is a system network service that manages your network\n" "devices and connections, attempting to keep active network connectivity when\n" @@ -6762,36 +6881,36 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:8009 +#: gnu/packages/gnome.scm:8014 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to virtual private networks (VPNs) via OpenVPN." msgstr "" -#: gnu/packages/gnome.scm:8059 +#: gnu/packages/gnome.scm:8064 msgid "" "Support for configuring virtual private networks based on VPNC.\n" "Compatible with Cisco VPN concentrators configured to use IPsec." msgstr "" -#: gnu/packages/gnome.scm:8106 +#: gnu/packages/gnome.scm:8111 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to @acronym{VPNs, virtual private networks} via OpenConnect, an open client for\n" "Cisco's AnyConnect SSL VPN." msgstr "" -#: gnu/packages/gnome.scm:8135 +#: gnu/packages/gnome.scm:8140 msgid "Database of broadband connection configuration." msgstr "" -#: gnu/packages/gnome.scm:8179 +#: gnu/packages/gnome.scm:8183 msgid "" "This package contains a systray applet for NetworkManager. It displays\n" "the available networks and allows users to easily switch between them." msgstr "" -#: gnu/packages/gnome.scm:8234 +#: gnu/packages/gnome.scm:8238 #, fuzzy #| msgid "" #| "This package provides a C++ wrapper for the XML parser library\n" @@ -6803,25 +6922,25 @@ msgstr "" "Denne pakke tilbyder et C++-omslag for XML-fortolkerbiblioteket\n" "libxml2." -#: gnu/packages/gnome.scm:8466 +#: gnu/packages/gnome.scm:8470 msgid "" "GNOME Display Manager is a system service that is responsible for\n" "providing graphical log-ins and managing local and remote displays." msgstr "" -#: gnu/packages/gnome.scm:8490 +#: gnu/packages/gnome.scm:8494 msgid "" "LibGTop is a library to get system specific data such as CPU and memory\n" "usage and information about running processes." msgstr "" -#: gnu/packages/gnome.scm:8525 +#: gnu/packages/gnome.scm:8528 msgid "" "This package contains tools for managing and manipulating Bluetooth\n" "devices using the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:8636 +#: gnu/packages/gnome.scm:8646 msgid "" "This package contains configuration applets for the GNOME desktop,\n" "allowing to set accessibility configuration, desktop fonts, keyboard and mouse\n" @@ -6829,13 +6948,13 @@ msgid "" "properties, screen resolution, and other GNOME parameters." msgstr "" -#: gnu/packages/gnome.scm:8802 +#: gnu/packages/gnome.scm:8811 msgid "" "GNOME Shell provides core user interface functions for the GNOME desktop,\n" "like switching to windows and launching applications." msgstr "" -#: gnu/packages/gnome.scm:8845 +#: gnu/packages/gnome.scm:8858 msgid "" "GTK-VNC is a project providing client side APIs for the RFB\n" "protocol / VNC remote desktop technology. It is built using coroutines allowing\n" @@ -6843,13 +6962,13 @@ msgid "" "core C library, and bindings for Python (PyGTK)." msgstr "" -#: gnu/packages/gnome.scm:8875 +#: gnu/packages/gnome.scm:8888 msgid "" "GNOME Autoar is a library which makes creating and extracting archives\n" "easy, safe, and automatic." msgstr "" -#: gnu/packages/gnome.scm:8945 +#: gnu/packages/gnome.scm:8959 msgid "" "Tracker is a search engine and triplestore for desktop, embedded and mobile.\n" "\n" @@ -6872,21 +6991,21 @@ msgid "" "endpoint and it understands SPARQL." msgstr "" -#: gnu/packages/gnome.scm:9074 +#: gnu/packages/gnome.scm:9088 msgid "" "Tracker is an advanced framework for first class objects with associated\n" "metadata and tags. It provides a one stop solution for all metadata, tags,\n" "shared object databases, search tools and indexing." msgstr "" -#: gnu/packages/gnome.scm:9167 +#: gnu/packages/gnome.scm:9185 msgid "" "Nautilus (Files) is a file manager designed to fit the GNOME desktop\n" "design and behaviour, giving the user a simple way to navigate and manage its\n" "files." msgstr "" -#: gnu/packages/gnome.scm:9201 +#: gnu/packages/gnome.scm:9220 msgid "" "Baobab (Disk Usage Analyzer) is a graphical application to analyse disk\n" "usage in the GNOME desktop environment. It can easily scan device volumes or\n" @@ -6894,7 +7013,7 @@ msgid "" "is complete it provides a graphical representation of each selected folder." msgstr "" -#: gnu/packages/gnome.scm:9227 +#: gnu/packages/gnome.scm:9245 msgid "" "GNOME backgrounds package contains a collection of graphics files which\n" "can be used as backgrounds in the GNOME Desktop environment. Additionally,\n" @@ -6902,21 +7021,21 @@ msgid "" "can add your own files to the collection." msgstr "" -#: gnu/packages/gnome.scm:9272 +#: gnu/packages/gnome.scm:9290 msgid "" "GNOME Screenshot is a utility used for taking screenshots of the entire\n" "screen, a window or a user defined area of the screen, with optional\n" "beautifying border effects." msgstr "" -#: gnu/packages/gnome.scm:9304 +#: gnu/packages/gnome.scm:9320 msgid "" "Dconf-editor is a graphical tool for browsing and editing the dconf\n" "configuration system for GNOME. It allows users to configure desktop\n" "software that do not provide their own configuration interface." msgstr "" -#: gnu/packages/gnome.scm:9334 +#: gnu/packages/gnome.scm:9350 msgid "" "Given many installed packages which might handle a given MIME type, a\n" "user running the GNOME desktop probably has some preferences: for example,\n" @@ -6925,33 +7044,33 @@ msgid "" "associations for GNOME." msgstr "" -#: gnu/packages/gnome.scm:9366 +#: gnu/packages/gnome.scm:9382 #, fuzzy msgid "GoVirt is a GObject wrapper for the oVirt REST API." msgstr "GLib/GObject-omslag for Facebook-API'en" -#: gnu/packages/gnome.scm:9424 +#: gnu/packages/gnome.scm:9439 msgid "" "GNOME Weather is a small application that allows you to\n" "monitor the current weather conditions for your city, or anywhere in the\n" "world." msgstr "" -#: gnu/packages/gnome.scm:9528 +#: gnu/packages/gnome.scm:9543 msgid "" "GNOME is the graphical desktop for GNU. It includes a wide variety of\n" "applications for browsing the web, editing text and images, creating\n" "documents and diagrams, playing media, scanning, and much more." msgstr "" -#: gnu/packages/gnome.scm:9574 +#: gnu/packages/gnome.scm:9589 msgid "" "Byzanz is a simple desktop recording program with a\n" "command-line interface. It can record part or all of an X display for a\n" "specified duration and save it as a GIF encoded animated image file." msgstr "" -#: gnu/packages/gnome.scm:9634 +#: gnu/packages/gnome.scm:9651 msgid "" "Authenticator is a two-factor authentication (2FA) application built for\n" "the GNOME desktop environment.\n" @@ -6968,44 +7087,44 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/gnome.scm:9669 +#: gnu/packages/gnome.scm:9686 msgid "" "GSound is a small library for playing system sounds. It's designed to be\n" "used via GObject Introspection, and is a thin wrapper around the libcanberra C\n" "library." msgstr "" -#: gnu/packages/gnome.scm:9694 +#: gnu/packages/gnome.scm:9711 msgid "" "Libzapojit is a GLib-based library for accessing online service APIs of\n" "Microsoft SkyDrive and Hotmail, using their REST protocols." msgstr "" -#: gnu/packages/gnome.scm:9739 +#: gnu/packages/gnome.scm:9756 msgid "" "GNOME Clocks is a simple clocks application designed to fit the GNOME\n" "desktop. It supports world clock, stop watch, alarms, and count down timer." msgstr "" -#: gnu/packages/gnome.scm:9787 +#: gnu/packages/gnome.scm:9803 msgid "" "GNOME Calendar is a simple calendar application designed to fit the GNOME\n" "desktop. It supports multiple calendars, month, week and year view." msgstr "" -#: gnu/packages/gnome.scm:9838 +#: gnu/packages/gnome.scm:9860 msgid "" -"GNOME To Do is a simplistic personal task manager designed to perfectly\n" -"fit the GNOME desktop." +"GNOME To Do is a simplistic personal task manager designed\n" +"to perfectly fit the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:9877 +#: gnu/packages/gnome.scm:9899 msgid "" "GNOME Dictionary can look for the definition or translation of a word in\n" "existing databases over the internet." msgstr "" -#: gnu/packages/gnome.scm:9943 +#: gnu/packages/gnome.scm:9964 msgid "" "GNOME Tweaks allows adjusting advanced configuration settings in\n" "GNOME 3. This includes things like the fonts used in user interface elements,\n" @@ -7013,13 +7132,13 @@ msgid "" "GNOME Shell appearance and extension, etc." msgstr "" -#: gnu/packages/gnome.scm:9971 +#: gnu/packages/gnome.scm:9992 msgid "" "GNOME Shell extensions modify and extend GNOME Shell\n" "functionality and behavior." msgstr "" -#: gnu/packages/gnome.scm:10015 +#: gnu/packages/gnome.scm:10036 msgid "" "Libfolks is a library that aggregates information about people\n" "from multiple sources (e.g., Telepathy connection managers for IM contacts,\n" @@ -7028,19 +7147,19 @@ msgid "" "compiled." msgstr "" -#: gnu/packages/gnome.scm:10056 +#: gnu/packages/gnome.scm:10077 msgid "" "This library allows you to use the Facebook API from\n" "GLib/GObject code." msgstr "" -#: gnu/packages/gnome.scm:10083 +#: gnu/packages/gnome.scm:10104 msgid "" "Libgnomekbd is a keyboard configuration library for the GNOME desktop\n" "environment, which can notably display keyboard layouts." msgstr "" -#: gnu/packages/gnome.scm:10119 +#: gnu/packages/gnome.scm:10140 msgid "" "Libunique is a library for writing single instance applications. If you\n" "launch a single instance application twice, the second instance will either just\n" @@ -7050,20 +7169,20 @@ msgid "" "handling the startup notification side." msgstr "" -#: gnu/packages/gnome.scm:10168 +#: gnu/packages/gnome.scm:10190 msgid "" "Calculator is an application that solves mathematical equations and\n" "is suitable as a default application in a Desktop environment." msgstr "" -#: gnu/packages/gnome.scm:10194 +#: gnu/packages/gnome.scm:10216 msgid "" "Xpad is a sticky note that strives to be simple, fault tolerant,\n" "and customizable. Xpad consists of independent pad windows, each is\n" "basically a text box in which notes can be written." msgstr "" -#: gnu/packages/gnome.scm:10267 +#: gnu/packages/gnome.scm:10289 msgid "" "This program allows you to browse through all the available Unicode\n" "characters and categories for the installed fonts, and to examine their\n" @@ -7071,20 +7190,20 @@ msgid "" "only know by its Unicode name or code point." msgstr "" -#: gnu/packages/gnome.scm:10299 +#: gnu/packages/gnome.scm:10321 msgid "" "Color Picker is a simple color chooser written in GTK3. It\n" "supports both X and Wayland display servers." msgstr "" -#: gnu/packages/gnome.scm:10322 +#: gnu/packages/gnome.scm:10344 msgid "" "Bluefish is an editor aimed at programmers and web developers,\n" "with many options to write web sites, scripts and other code.\n" "Bluefish supports many programming and markup languages." msgstr "" -#: gnu/packages/gnome.scm:10363 +#: gnu/packages/gnome.scm:10385 msgid "" "GNOME System Monitor is a GNOME process viewer and system monitor with\n" "an attractive, easy-to-use interface. It has features, such as a tree view\n" @@ -7093,7 +7212,7 @@ msgid "" "kill/reinice processes." msgstr "" -#: gnu/packages/gnome.scm:10405 +#: gnu/packages/gnome.scm:10427 msgid "" "This package includes a python client library for the AT-SPI D-Bus\n" "accessibility infrastructure." @@ -7101,21 +7220,21 @@ msgstr "" "Denne pakke indeholder et Pythonklientbibliotek for AT-SPI D-Bus-\n" "tilgængelighedsinfrastrukturen." -#: gnu/packages/gnome.scm:10475 +#: gnu/packages/gnome.scm:10495 msgid "" "Orca is a screen reader that provides access to the graphical desktop\n" "via speech and refreshable braille. Orca works with applications and toolkits\n" "that support the Assistive Technology Service Provider Interface (AT-SPI)." msgstr "" -#: gnu/packages/gnome.scm:10529 +#: gnu/packages/gnome.scm:10549 msgid "" "gspell provides a flexible API to add spell-checking to a GTK+\n" "application. It provides a GObject API, spell-checking to text entries and\n" "text views, and buttons to choose the language." msgstr "" -#: gnu/packages/gnome.scm:10571 +#: gnu/packages/gnome.scm:10591 msgid "" "GNOME Planner is a project management tool based on the Work Breakdown\n" "Structure (WBS). Its goal is to enable you to easily plan projects. Based on\n" @@ -7127,7 +7246,7 @@ msgid "" "views can be printed as PDF or PostScript files, or exported to HTML." msgstr "" -#: gnu/packages/gnome.scm:10644 +#: gnu/packages/gnome.scm:10664 msgid "" "Lollypop is a music player designed to play well with GNOME desktop.\n" "Lollypop plays audio formats such as mp3, mp4, ogg and flac and gets information\n" @@ -7135,26 +7254,26 @@ msgid "" "automatically and it can stream songs from online music services and charts." msgstr "" -#: gnu/packages/gnome.scm:10668 +#: gnu/packages/gnome.scm:10688 msgid "" "A collection of GStreamer video filters and effects to be used in\n" "photo-booth-like software, such as Cheese." msgstr "" -#: gnu/packages/gnome.scm:10747 +#: gnu/packages/gnome.scm:10766 msgid "" "Cheese uses your webcam to take photos and videos. Cheese can also\n" "apply fancy special effects and lets you share the fun with others." msgstr "" -#: gnu/packages/gnome.scm:10801 +#: gnu/packages/gnome.scm:10820 msgid "" "Password Safe is a password manager which makes use of the KeePass v4\n" "format. It integrates perfectly with the GNOME desktop and provides an easy\n" "and uncluttered interface for the management of password databases." msgstr "" -#: gnu/packages/gnome.scm:10836 +#: gnu/packages/gnome.scm:10855 msgid "" "Sound Juicer extracts audio from compact discs and convert it\n" "into audio files that a personal computer or digital audio player can play.\n" @@ -7162,21 +7281,21 @@ msgid "" "mp3, Ogg Vorbis and FLAC" msgstr "" -#: gnu/packages/gnome.scm:10888 +#: gnu/packages/gnome.scm:10907 msgid "" "SoundConverter supports converting between many audio formats including\n" "Opus, Ogg Vorbis, FLAC and more. It supports parallel conversion, and\n" "configurable file renaming." msgstr "" -#: gnu/packages/gnome.scm:10936 +#: gnu/packages/gnome.scm:10955 msgid "" "Workrave is a program that assists in the recovery and prevention of\n" "repetitive strain injury (@dfn{RSI}). The program frequently alerts you to take\n" "micro-pauses and rest breaks, and restricts you to your daily limit." msgstr "" -#: gnu/packages/gnome.scm:10977 +#: gnu/packages/gnome.scm:10996 msgid "" "The GHex program can view and edit files in two ways:\n" "hexadecimal or ASCII. It is useful for editing binary files in general." @@ -7184,7 +7303,7 @@ msgstr "" "GHex-programmet kan vise og redigere filer på to måder:\n" "hexadecimal eller ASCII. Det er nyttigt til at redigere binære filer generelt." -#: gnu/packages/gnome.scm:11013 +#: gnu/packages/gnome.scm:11032 msgid "" "The libdazzle library is a companion library to GObject and\n" "Gtk+. It provides various features that the authors wish were in the\n" @@ -7193,40 +7312,40 @@ msgid "" "generic enough to work for everyone." msgstr "" -#: gnu/packages/gnome.scm:11080 +#: gnu/packages/gnome.scm:11099 msgid "" "Evolution is a personal information management application\n" "that provides integrated mail, calendaring and address book\n" "functionality." msgstr "" -#: gnu/packages/gnome.scm:11140 +#: gnu/packages/gnome.scm:11154 msgid "" "GThumb is an image viewer, browser, organizer, editor and\n" "advanced image management tool" msgstr "" -#: gnu/packages/gnome.scm:11213 +#: gnu/packages/gnome.scm:11227 msgid "" "Terminator allows you to run multiple GNOME terminals in a grid and\n" "tabs, and it supports drag and drop re-ordering of terminals." msgstr "" -#: gnu/packages/gnome.scm:11274 +#: gnu/packages/gnome.scm:11288 msgid "" "The aim of the handy library is to help with developing user\n" "interfaces for mobile devices using GTK+. It provides responsive GTK+ widgets\n" "for usage on small and big screens." msgstr "" -#: gnu/packages/gnome.scm:11323 +#: gnu/packages/gnome.scm:11337 msgid "" "libgit2-glib is a GLib wrapper library around the libgit2 Git\n" "access library. It only implements the core plumbing functions, not really the\n" "higher level porcelain stuff." msgstr "" -#: gnu/packages/gnome.scm:11402 +#: gnu/packages/gnome.scm:11415 msgid "" "gitg is a graphical user interface for git. It aims at being a small,\n" "fast and convenient tool to visualize the history of git repositories.\n" @@ -7234,21 +7353,21 @@ msgid "" "repository and commit your work." msgstr "" -#: gnu/packages/gnome.scm:11474 +#: gnu/packages/gnome.scm:11487 msgid "" "Gamin is a file and directory monitoring system defined to be a subset\n" "of the FAM (File Alteration Monitor) system. This is a service provided by a\n" "library which detects when a file or a directory has been modified." msgstr "" -#: gnu/packages/gnome.scm:11508 +#: gnu/packages/gnome.scm:11521 msgid "" "GNOME Mahjongg is a game based on the classic Chinese\n" -"tile-matching game Mahjong. It features multiple board layouts, tile themes,\n" +"tile-matching game Mahjongg. It features multiple board layouts, tile themes,\n" "and a high score table." msgstr "" -#: gnu/packages/gnome.scm:11546 +#: gnu/packages/gnome.scm:11559 msgid "" "This package provides themes and related elements that don't\n" "really fit in other upstream packages. It offers legacy support for GTK+ 2\n" @@ -7256,19 +7375,19 @@ msgid "" "index files needed for Adwaita to be used outside of GNOME." msgstr "" -#: gnu/packages/gnome.scm:11585 +#: gnu/packages/gnome.scm:11605 msgid "" -"Gnote is a note-taking application written for the GNOME desktop\n" -"environment." +"Gnote is a note-taking application written for the GNOME\n" +"desktop environment." msgstr "" -#: gnu/packages/gnome.scm:11647 +#: gnu/packages/gnome.scm:11664 msgid "" "Polari is a simple Internet Relay Chat (IRC) client that is designed to\n" "integrate seamlessly with the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:11706 +#: gnu/packages/gnome.scm:11723 msgid "" "GNOME Boxes is a simple application to view, access, and\n" "manage remote and virtual systems. Note that this application requires the\n" @@ -7277,7 +7396,7 @@ msgid "" "these services on the Guix System." msgstr "" -#: gnu/packages/gnome.scm:11806 +#: gnu/packages/gnome.scm:11823 msgid "" "Geary collects related messages together into conversations,\n" "making it easy to find and follow your discussions. Full-text and keyword\n" @@ -7289,14 +7408,14 @@ msgid "" "to." msgstr "" -#: gnu/packages/gnome.scm:11851 +#: gnu/packages/gnome.scm:11868 msgid "" "gLabels is a program for creating labels and business cards. It is\n" "designed to work with various laser/ink-jet peel-off label and business\n" "card sheets that you’ll find at most office supply stores." msgstr "" -#: gnu/packages/gnome.scm:11892 +#: gnu/packages/gnome.scm:11909 msgid "" "GNOME LaTeX is a LaTeX editor for the GNOME desktop. It has features\n" "such as build tools, completion of LaTeX commands, structure navigation,\n" @@ -7304,19 +7423,19 @@ msgid "" "and toolbars." msgstr "" -#: gnu/packages/gnome.scm:11951 +#: gnu/packages/gnome.scm:11968 msgid "" "Setzer is a simple yet full-featured LaTeX editor written in Python with\n" "GTK+. It integrates well with the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:12017 +#: gnu/packages/gnome.scm:12034 msgid "" "Apostrophe is a GTK+ based distraction-free Markdown editor.\n" "It uses pandoc as back-end for parsing Markdown." msgstr "" -#: gnu/packages/gnome.scm:12070 +#: gnu/packages/gnome.scm:12088 msgid "" "libratbag provides @command{ratbagd}, a DBus daemon to\n" "configure input devices, mainly gaming mice. The daemon provides a generic\n" @@ -7333,7 +7452,7 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12140 +#: gnu/packages/gnome.scm:12156 msgid "" "Piper is a GTK+ application for configuring gaming mice with\n" "onboard configuration for key bindings via libratbag. Piper requires\n" @@ -7345,14 +7464,14 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12202 +#: gnu/packages/gnome.scm:12218 msgid "" "Parlatype is an audio player for the GNOME desktop\n" "environment. Its main purpose is the manual transcription of spoken\n" "audio files." msgstr "" -#: gnu/packages/gnome.scm:12228 +#: gnu/packages/gnome.scm:12244 msgid "" "Jsonrpc-GLib is a library to communicate with JSON-RPC based\n" "peers in either a synchronous or asynchronous fashion. It also allows\n" @@ -7361,14 +7480,14 @@ msgid "" "host to avoid parser overhead and memory-allocator fragmentation." msgstr "" -#: gnu/packages/gnome.scm:12256 +#: gnu/packages/gnome.scm:12272 msgid "" "Feedbackd provides a DBus daemon to act on events to provide\n" "haptic, visual and audio feedback. It offers the libfeedbackd library and\n" "GObject introspection bindings." msgstr "" -#: gnu/packages/gnome.scm:12305 +#: gnu/packages/gnome.scm:12321 msgid "" "Sysprof performs detailed, accurate, and fast CPU profiling of an entire\n" "GNU/Linux system including the kernel and all user-space applications. This\n" @@ -7378,21 +7497,21 @@ msgid "" "libraries. Applications do not need to be recompiled--or even restarted." msgstr "" -#: gnu/packages/gnome.scm:12388 +#: gnu/packages/gnome.scm:12406 msgid "" -"Builder aims to be an integrated development\n" -"environment (IDE) for writing GNOME-based software. It features fuzzy search,\n" -"auto-completion, a mini code map, documentation browsing, Git integration, an\n" -"integrated profiler via Sysprof, debugging support, and more." +"Builder aims to be an integrated development environment (IDE) for\n" +"writing GNOME-based software. It features fuzzy search, auto-completion,\n" +"a mini code map, documentation browsing, Git integration, an integrated\n" +"profiler via Sysprof, debugging support, and more." msgstr "" -#: gnu/packages/gnome.scm:12461 +#: gnu/packages/gnome.scm:12480 msgid "" "Komikku is an online/offline manga reader for GNOME,\n" "developed with the aim of being used with the Librem 5 phone." msgstr "" -#: gnu/packages/gnome.scm:12545 +#: gnu/packages/gnome.scm:12564 msgid "" "GNU Data Access (GDA) is an attempt to provide uniform access to\n" "different kinds of data sources (databases, information servers, mail spools,\n" @@ -7400,7 +7519,7 @@ msgid "" "your data." msgstr "" -#: gnu/packages/gnome.scm:12596 +#: gnu/packages/gnome.scm:12614 msgid "" "gtranslator is a quite comfortable gettext po/po.gz/(g)mo files editor\n" "for the GNOME 3.x platform with many features. It aims to be a very complete\n" @@ -7408,25 +7527,32 @@ msgid "" "world." msgstr "" -#: gnu/packages/gnome.scm:12662 +#: gnu/packages/gnome.scm:12680 msgid "" "OCRFeeder is a complete Optical Character Recognition and\n" "Document Analysis and Recognition program." msgstr "" -#: gnu/packages/gnome.scm:12702 +#: gnu/packages/gnome.scm:12720 msgid "" "@code{libadwaita} offers widgets and objects to build GNOME\n" "applications scaling from desktop workstations to mobile phones. It is the\n" "successor of @code{libhandy} for GTK4." msgstr "" -#: gnu/packages/gnome.scm:12727 +#: gnu/packages/gnome.scm:12745 msgid "" "@code{gnome-power-manager} is a tool for viewing present and\n" "historical battery usage and related statistics." msgstr "" +#: gnu/packages/gnome.scm:12789 +#, fuzzy +msgid "This package provides a graphical file manager." +msgstr "" +"Denne pakke tilbyder Pythonbindinger til virtualiseringsbiblioteket\n" +"libvirt." + #: gnu/packages/gnuzilla.scm:155 msgid "" "SpiderMonkey is Mozilla's JavaScript engine written\n" @@ -7435,7 +7561,7 @@ msgstr "" "SpiderMonkey er Mozillas JavaScript-motor skrevet\n" "i C/C++." -#: gnu/packages/gnuzilla.scm:1314 +#: gnu/packages/gnuzilla.scm:1315 msgid "" "IceCat is the GNU version of the Firefox browser. It is entirely free\n" "software, which does not recommend non-free plugins and addons. It also\n" @@ -7448,19 +7574,19 @@ msgid "" "standards of the IceCat project." msgstr "" -#: gnu/packages/gnuzilla.scm:1642 +#: gnu/packages/gnuzilla.scm:1648 msgid "" "This package provides an email client built based on Mozilla\n" "Thunderbird. It supports email, news feeds, chat, calendar and contacts." msgstr "" -#: gnu/packages/gnuzilla.scm:1717 +#: gnu/packages/gnuzilla.scm:1723 msgid "" "Firefox Decrypt is a tool to extract passwords from\n" "Mozilla (Firefox, Waterfox, Thunderbird, SeaMonkey) profiles." msgstr "" -#: gnu/packages/gnuzilla.scm:1754 +#: gnu/packages/gnuzilla.scm:1760 msgid "" "@code{lz4json} is a little utility to unpack lz4json files as generated\n" "by Firefox's bookmark backups and session restore. This is a different format\n" @@ -7474,7 +7600,7 @@ msgid "" "tools have full access to view and control running applications." msgstr "" -#: gnu/packages/gtk.scm:215 +#: gnu/packages/gtk.scm:212 msgid "" "Cairo is a 2D graphics library with support for multiple output\n" "devices. Currently supported output targets include the X Window System (via\n" @@ -7482,24 +7608,24 @@ msgid "" "output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB." msgstr "" -#: gnu/packages/gtk.scm:277 +#: gnu/packages/gtk.scm:274 msgid "HarfBuzz is an OpenType text shaping engine." msgstr "HarfBuzz er et OpenType-tekstformningsmotor." -#: gnu/packages/gtk.scm:320 +#: gnu/packages/gtk.scm:317 msgid "" "Libdatrie is an implementation of double-array structure for\n" "representing trie. Trie is a kind of digital search tree." msgstr "" -#: gnu/packages/gtk.scm:352 +#: gnu/packages/gtk.scm:349 msgid "" "LibThai is a set of Thai language support routines aimed to\n" "ease developers’ tasks to incorporate Thai language support in their\n" "applications." msgstr "" -#: gnu/packages/gtk.scm:407 +#: gnu/packages/gtk.scm:404 msgid "" "Pango is a library for laying out and rendering of text, with\n" "an emphasis on internationalization. Pango can be used anywhere that text\n" @@ -7508,21 +7634,21 @@ msgid "" "handling for GTK+-2.x." msgstr "" -#: gnu/packages/gtk.scm:461 +#: gnu/packages/gtk.scm:458 msgid "" "Pangox was a X backend to pango. It is now obsolete and no\n" "longer provided by recent pango releases. pangox-compat provides the\n" "functions which were removed." msgstr "" -#: gnu/packages/gtk.scm:498 +#: gnu/packages/gtk.scm:495 msgid "" "Ganv is an interactive GTK+ widget for interactive “boxes and lines” or\n" "graph-like environments, e.g. modular synths or finite state machine\n" "diagrams." msgstr "" -#: gnu/packages/gtk.scm:554 +#: gnu/packages/gtk.scm:551 msgid "" "GtkSourceView is a portable C library that extends the standard GTK+\n" "framework for multiline text editing with support for configurable syntax\n" @@ -7530,33 +7656,33 @@ msgid "" "printing and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:602 +#: gnu/packages/gtk.scm:599 msgid "" "GtkSourceView is a text widget that extends the standard\n" "GTK+ text widget GtkTextView. It improves GtkTextView by implementing syntax\n" "highlighting and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:698 +#: gnu/packages/gtk.scm:695 msgid "" "GdkPixbuf is a library that loads image data in various\n" "formats and stores it as linear buffers in memory. The buffers can then be\n" "scaled, composited, modified, saved, or rendered." msgstr "" -#: gnu/packages/gtk.scm:746 +#: gnu/packages/gtk.scm:743 msgid "" "The Assistive Technology Service Provider Interface, core components,\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:827 +#: gnu/packages/gtk.scm:824 msgid "" "The Assistive Technology Service Provider Interface\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:921 +#: gnu/packages/gtk.scm:918 msgid "" "GTK+, or the GIMP Toolkit, is a multi-platform toolkit for creating\n" "graphical user interfaces. Offering a complete set of widgets, GTK+ is\n" @@ -7564,14 +7690,14 @@ msgid "" "application suites." msgstr "" -#: gnu/packages/gtk.scm:1234 +#: gnu/packages/gtk.scm:1238 msgid "" "GTK is a multi-platform toolkit for creating graphical user\n" "interfaces. Offering a complete set of widgets, GTK is suitable for projects\n" "ranging from small one-off tools to complete application suites." msgstr "" -#: gnu/packages/gtk.scm:1308 +#: gnu/packages/gtk.scm:1312 msgid "" "Guile-Cairo wraps the Cairo graphics library for Guile Scheme.\n" "Guile-Cairo is complete, wrapping almost all of the Cairo API. It is API\n" @@ -7581,13 +7707,13 @@ msgid "" "exceptions, macros, and a dynamic programming environment." msgstr "" -#: gnu/packages/gtk.scm:1389 +#: gnu/packages/gtk.scm:1393 msgid "" "Guile-RSVG wraps the RSVG library for Guile, allowing you to render SVG\n" "images onto Cairo surfaces." msgstr "" -#: gnu/packages/gtk.scm:1456 +#: gnu/packages/gtk.scm:1460 msgid "" "Guile-Present defines a declarative vocabulary for presentations,\n" "together with tools to render presentation documents as SVG or PDF.\n" @@ -7596,31 +7722,31 @@ msgid "" "documents." msgstr "" -#: gnu/packages/gtk.scm:1522 +#: gnu/packages/gtk.scm:1526 msgid "" "Includes guile-clutter, guile-gnome-gstreamer,\n" "guile-gnome-platform (GNOME developer libraries), and guile-gtksourceview." msgstr "" -#: gnu/packages/gtk.scm:1578 +#: gnu/packages/gtk.scm:1582 msgid "" "Cairomm provides a C++ programming interface to the Cairo 2D graphics\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1642 +#: gnu/packages/gtk.scm:1647 msgid "" "Pangomm provides a C++ programming interface to the Pango text rendering\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1704 +#: gnu/packages/gtk.scm:1709 #, fuzzy #| msgid "C++ bindings for the ØMQ messaging library" msgid "ATKmm is the C++ binding for the ATK library." msgstr "C++-bindinger for ØMQ-beskedbiblioteket" -#: gnu/packages/gtk.scm:1784 +#: gnu/packages/gtk.scm:1790 msgid "" "GTKmm is the official C++ interface for the popular GUI\n" "library GTK+. Highlights include typesafe callbacks, and a comprehensive set\n" @@ -7849,7 +7975,7 @@ msgid "" "excellent pavucontrol." msgstr "" -#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:238 +#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:241 msgid "" "Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" "official extension language of the GNU system. It is an implementation of\n" @@ -7858,14 +7984,14 @@ msgid "" "without requiring the source code to be rewritten." msgstr "" -#: gnu/packages/guile.scm:502 +#: gnu/packages/guile.scm:506 msgid "" "This module provides line editing support via the Readline library for\n" "GNU@tie{}Guile. Use the @code{(ice-9 readline)} module and call its\n" "@code{activate-readline} procedure to enable it." msgstr "" -#: gnu/packages/guile.scm:604 +#: gnu/packages/guile.scm:608 msgid "" "Guile-JSON supports parsing and building JSON documents according to the\n" "specification. These are the main features:\n" @@ -7878,17 +8004,17 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/guile.scm:701 +#: gnu/packages/guile.scm:705 msgid "" "Guile bindings to the GDBM key-value storage system, using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:730 +#: gnu/packages/guile.scm:734 msgid "This package provides Guile bindings to the SQLite database system." msgstr "Denne pakke tilbyder Guilebindinger til SQLite-databasesystemet." -#: gnu/packages/guile.scm:769 +#: gnu/packages/guile.scm:773 msgid "" "Guile bytestructures offers a system imitating the type system\n" "of the C programming language, to be used on bytevectors. C's type\n" @@ -7897,7 +8023,7 @@ msgid "" "type system, elevating types to first-class status." msgstr "" -#: gnu/packages/guile.scm:810 +#: gnu/packages/guile.scm:814 msgid "" "This package provides Guile bindings to libgit2, a library to\n" "manipulate repositories of the Git version control system." @@ -7905,21 +8031,21 @@ msgstr "" "Denne pakke tilbyder Guilebindinger til libgit2, et bibliotek\n" "til at manipulere arkiver i versionskontrolsystemet Git." -#: gnu/packages/guile.scm:846 +#: gnu/packages/guile.scm:850 msgid "" "This package provides Guile bindings for zlib, a lossless\n" "data-compression library. The bindings are written in pure Scheme by using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:877 +#: gnu/packages/guile.scm:881 msgid "" "This package provides Guile bindings for lzlib, a C library for\n" "in-memory LZMA compression and decompression. The bindings are written in\n" "pure Scheme by using Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:904 +#: gnu/packages/guile.scm:908 #, fuzzy msgid "" "This package provides a GNU Guile interface to the zstd (``zstandard'')\n" @@ -7928,7 +8054,7 @@ msgstr "" "Denne pakke tilbyder en Guileprogrammeringsgrænseflade til ZeroMQ\n" "beskedbiblioteket." -#: gnu/packages/guile.scm:926 +#: gnu/packages/guile.scm:930 msgid "" "Guile-LZMA is a Guile wrapper for the liblzma (XZ)\n" "library. It exposes an interface similar to other Guile compression\n" @@ -8515,7 +8641,7 @@ msgid "" "It supports JPEG, PNG and GIF formats." msgstr "" -#: gnu/packages/image-viewers.scm:640 +#: gnu/packages/image-viewers.scm:643 msgid "" "Luminance HDR (formerly QtPFSGui) is a graphical user interface\n" "application that aims to provide a workflow for high dynamic range (HDR)\n" @@ -8531,7 +8657,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:735 +#: gnu/packages/image-viewers.scm:738 msgid "" "MComix is a customizable image viewer that specializes as\n" "a comic and manga reader. It supports a variety of container formats\n" @@ -8540,7 +8666,7 @@ msgid "" "For PDF support, install the @emph{mupdf} package." msgstr "" -#: gnu/packages/image-viewers.scm:775 +#: gnu/packages/image-viewers.scm:778 msgid "" "qView is a Qt image viewer designed with visually\n" "minimalism and usability in mind. Its features include animated GIF\n" @@ -8548,14 +8674,14 @@ msgid "" "preloading." msgstr "" -#: gnu/packages/image-viewers.scm:799 +#: gnu/packages/image-viewers.scm:802 msgid "" "Chafa is a command-line utility that converts all kinds of images,\n" "including animated GIFs, into ANSI/Unicode character output that can be\n" "displayed in a terminal." msgstr "" -#: gnu/packages/image-viewers.scm:847 +#: gnu/packages/image-viewers.scm:850 msgid "" "@code{imv} is a command line image viewer intended for use\n" "with tiling window managers. Features include:\n" @@ -8577,7 +8703,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:924 +#: gnu/packages/image-viewers.scm:927 msgid "" "Quick Image Viewer is a small and fast GDK/Imlib2 image viewer.\n" "Features include zoom, maxpect, scale down, fullscreen, slideshow, delete,\n" @@ -8586,7 +8712,7 @@ msgid "" "to set X desktop background." msgstr "" -#: gnu/packages/image-viewers.scm:968 +#: gnu/packages/image-viewers.scm:971 msgid "" "pqiv is a GTK-3 based command-line image viewer with a minimal UI.\n" "It is highly customizable, can be fully controlled from scripts, and has\n" @@ -8594,7 +8720,7 @@ msgid "" "archives." msgstr "" -#: gnu/packages/image-viewers.scm:1025 +#: gnu/packages/image-viewers.scm:1028 msgid "" "Nomacs is a simple to use image lounge featuring\n" "semi-transparent widgets that display additional information such as metadata,\n" @@ -8607,7 +8733,7 @@ msgid "" "synchronization of multiple instances." msgstr "" -#: gnu/packages/image-viewers.scm:1070 +#: gnu/packages/image-viewers.scm:1073 msgid "xzgv is a fast image viewer that provides extensive keyboard support." msgstr "" @@ -8882,17 +9008,17 @@ msgstr "" "præsentationsprogram; Draw, tegne- og diagramprogram; Base, en\n" "databasebrugerflade; Math til at redigere matematik." -#: gnu/packages/linux.scm:604 +#: gnu/packages/linux.scm:625 msgid "Headers of the Linux-Libre kernel." msgstr "Teksthoveder for Linux-Libre-kernen." -#: gnu/packages/linux.scm:905 +#: gnu/packages/linux.scm:935 msgid "" "GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.\n" "It has been modified to remove all non-free binary blobs." msgstr "" -#: gnu/packages/linux.scm:1215 +#: gnu/packages/linux.scm:1252 msgid "" "This simple Linux kernel module allows calls from user space to any\n" "@acronym{ACPI, Advanced Configuration and Power Interface} method provided by\n" @@ -8904,7 +9030,7 @@ msgid "" "and should be used with caution, especially on untested models." msgstr "" -#: gnu/packages/linux.scm:1283 +#: gnu/packages/linux.scm:1320 msgid "" "CoreFreq is a CPU monitor that reports low-level processor settings and\n" "performance data with notably high precision by using a loadable Linux kernel\n" @@ -8935,7 +9061,7 @@ msgid "" "@file{README.md} before loading it." msgstr "" -#: gnu/packages/linux.scm:1332 +#: gnu/packages/linux.scm:1369 msgid "" "This is the Linux kernel @acronym{ACPI, Advanced Configuration and Power\n" "Interface} platform driver for the @acronym{EC, Embedded Controller} firmware\n" @@ -8944,13 +9070,13 @@ msgid "" "and the notification, WiFi, and Bluetooth LED." msgstr "" -#: gnu/packages/linux.scm:1375 +#: gnu/packages/linux.scm:1413 msgid "" "This is Realtek's RTL8821CE Linux driver for wireless\n" "network adapters." msgstr "" -#: gnu/packages/linux.scm:1407 +#: gnu/packages/linux.scm:1445 msgid "" "This is Realtek's rtl8812au Linux driver for USB 802.11n wireless\n" "network adapters, modified by the aircrack-ng project to support monitor mode\n" @@ -8958,7 +9084,7 @@ msgid "" "RTL8812AU, RTL8821AU, and RTL8814AU chips." msgstr "" -#: gnu/packages/linux.scm:1431 +#: gnu/packages/linux.scm:1469 msgid "" "The @acronym{VHBA, Virtual SCSI Host Bus Adapter} module is the link\n" "between the CDemu user-space daemon and the kernel Linux. It acts as a\n" @@ -8967,13 +9093,13 @@ msgid "" "emulate optical devices such as DVD and CD-ROM drives." msgstr "" -#: gnu/packages/linux.scm:1460 +#: gnu/packages/linux.scm:1497 msgid "" "The bbswitch module provides a way to toggle the Nvidia\n" "graphics card on Optimus laptops." msgstr "" -#: gnu/packages/linux.scm:1501 +#: gnu/packages/linux.scm:1536 msgid "" "This package provides two Linux kernel drivers, ddcci and\n" "ddcci-backlight, that allows the control of DDC/CI monitors through the sysfs\n" @@ -8983,7 +9109,7 @@ msgid "" "supported under @file{/sys/class/backlight/}." msgstr "" -#: gnu/packages/linux.scm:1528 +#: gnu/packages/linux.scm:1563 msgid "" "This Linux module creates virtual video devices. @acronym{V4L2, Video\n" "for Linux 2} applications will treat these as ordinary video devices but read\n" @@ -8995,7 +9121,7 @@ msgid "" "application by hooking GStreamer into the loopback device." msgstr "" -#: gnu/packages/linux.scm:1569 +#: gnu/packages/linux.scm:1604 msgid "" "This package provides a driver for the XBox One S Wireless controller\n" "and some newer models when connected via Bluetooth. In addition to the included\n" @@ -9003,7 +9129,7 @@ msgid "" "which need to be installed separately." msgstr "" -#: gnu/packages/linux.scm:1622 +#: gnu/packages/linux.scm:1657 msgid "" "A *Free* project to implement OSF's RFC 86.0.\n" "Pluggable authentication modules are small shared object files that can\n" @@ -9011,19 +9137,19 @@ msgid "" "at login. Local and dynamic reconfiguration are its key features." msgstr "" -#: gnu/packages/linux.scm:1683 +#: gnu/packages/linux.scm:1718 #, fuzzy msgid "This package provides a PAM interface using @code{ctypes}." msgstr "Denne pakke tilbyder en Pythongrænseflade til Redis' nøgle-værdi-lager." -#: gnu/packages/linux.scm:1712 +#: gnu/packages/linux.scm:1747 msgid "" "This package provides a PAM module that hands over your\n" "login password to @code{gpg-agent}. This can be useful if you are using a\n" "GnuPG-based password manager like @code{pass}." msgstr "" -#: gnu/packages/linux.scm:1741 +#: gnu/packages/linux.scm:1776 msgid "" "This package contains utilities for accessing the powercap\n" "Linux kernel feature through sysfs. It includes an implementation for working\n" @@ -9031,7 +9157,7 @@ msgid "" "It provides the commands @code{powercap-info} and @code{powercap-set}." msgstr "" -#: gnu/packages/linux.scm:1772 +#: gnu/packages/linux.scm:1807 msgid "" "Powerstat measures and reports your computer's power consumption in real\n" "time. On mobile PCs, it uses ACPI battery information to measure the power\n" @@ -9048,28 +9174,28 @@ msgid "" "deviation, and minimum and maximum values. It can show a nice histogram too." msgstr "" -#: gnu/packages/linux.scm:1810 +#: gnu/packages/linux.scm:1845 msgid "" "This PSmisc package is a set of some small useful utilities that\n" "use the proc file system. We're not about changing the world, but\n" "providing the system administrator with some help in common tasks." msgstr "" -#: gnu/packages/linux.scm:1948 +#: gnu/packages/linux.scm:1984 msgid "" "Util-linux is a diverse collection of Linux kernel\n" "utilities. It provides dmesg and includes tools for working with file systems,\n" "block devices, UUIDs, TTYs, and many other tools." msgstr "" -#: gnu/packages/linux.scm:1986 +#: gnu/packages/linux.scm:2037 msgid "" "ddate displays the Discordian date and holidays of a given date.\n" "The Discordian calendar was made popular by the \"Illuminatus!\" trilogy\n" "by Robert Shea and Robert Anton Wilson." msgstr "" -#: gnu/packages/linux.scm:2040 +#: gnu/packages/linux.scm:2091 msgid "" "The kernel Linux's @dfn{frame buffers} provide a simple interface to\n" "different kinds of graphic displays. The @command{fbset} utility can query and\n" @@ -9077,7 +9203,7 @@ msgid "" "parameters." msgstr "" -#: gnu/packages/linux.scm:2085 +#: gnu/packages/linux.scm:2136 msgid "" "Procps is the package that has a bunch of small useful utilities\n" "that give information about processes using the Linux /proc file system.\n" @@ -9085,11 +9211,11 @@ msgid "" "slabtop, tload, top, vmstat, w, watch and sysctl." msgstr "" -#: gnu/packages/linux.scm:2130 +#: gnu/packages/linux.scm:2181 msgid "Tools for working with USB devices, such as lsusb." msgstr "Værktøjer for arbejde med USB-enheder, såsom lsusb." -#: gnu/packages/linux.scm:2154 +#: gnu/packages/linux.scm:2205 msgid "" "The USB/IP protocol enables to pass USB device from a server to\n" "a client over the network. The server is a machine which shares an\n" @@ -9102,23 +9228,23 @@ msgid "" "module." msgstr "" -#: gnu/packages/linux.scm:2237 +#: gnu/packages/linux.scm:2288 msgid "This package provides tools for manipulating ext2/ext3/ext4 file systems." msgstr "Denne pakke tilbyder værktøjer til manipulering af ext2/ext3/ext4-filsystemer." -#: gnu/packages/linux.scm:2279 +#: gnu/packages/linux.scm:2330 msgid "" "This package provides statically-linked e2fsck command taken\n" "from the e2fsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:2302 +#: gnu/packages/linux.scm:2353 msgid "" "Extundelete is a set of tools that can recover deleted files from an\n" "ext3 or ext4 partition." msgstr "" -#: gnu/packages/linux.scm:2335 +#: gnu/packages/linux.scm:2386 msgid "" "Zerofree finds the unallocated blocks with non-zero value content in an\n" "ext2, ext3, or ext4 file system and fills them with zeroes (or another value).\n" @@ -9126,39 +9252,39 @@ msgid "" "Zerofree requires the file system to be unmounted or mounted read-only." msgstr "" -#: gnu/packages/linux.scm:2380 +#: gnu/packages/linux.scm:2431 msgid "" "strace is a system call tracer, i.e. a debugging tool which prints out a\n" "trace of all the system calls made by a another process/program." msgstr "" -#: gnu/packages/linux.scm:2403 +#: gnu/packages/linux.scm:2454 msgid "" "ltrace intercepts and records dynamic library calls which are called by\n" "an executed process and the signals received by that process. It can also\n" "intercept and print the system calls executed by the program." msgstr "" -#: gnu/packages/linux.scm:2428 +#: gnu/packages/linux.scm:2479 msgid "" "This package contains Advanced Linux Sound Architecture Use Case Manager\n" "configuration of audio input/output names and routing for specific audio\n" "hardware." msgstr "" -#: gnu/packages/linux.scm:2452 +#: gnu/packages/linux.scm:2503 msgid "" "This package contains Advanced Linux Sound Architecture topology\n" "configuration files that can be used for specific audio hardware." msgstr "" -#: gnu/packages/linux.scm:2499 gnu/packages/linux.scm:2548 +#: gnu/packages/linux.scm:2550 gnu/packages/linux.scm:2599 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system." msgstr "" -#: gnu/packages/linux.scm:2617 +#: gnu/packages/linux.scm:2668 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system. This package enhances ALSA\n" @@ -9167,7 +9293,7 @@ msgid "" "external rate conversion." msgstr "" -#: gnu/packages/linux.scm:2655 +#: gnu/packages/linux.scm:2706 msgid "" "@command{iptables} is the user-space command line program used to\n" "configure the Linux 2.4.x and later IPv4 packet filtering ruleset\n" @@ -9179,7 +9305,7 @@ msgid "" "Both commands are targeted at system administrators." msgstr "" -#: gnu/packages/linux.scm:2691 +#: gnu/packages/linux.scm:2742 msgid "" "This simple daemon feeds entropy from the CPU Jitter @acronym{RNG, random\n" "number generator} core to the kernel Linux's entropy estimator. This prevents\n" @@ -9201,7 +9327,7 @@ msgid "" "early boot when entropy may be low, especially in virtualised environments." msgstr "" -#: gnu/packages/linux.scm:2727 +#: gnu/packages/linux.scm:2778 msgid "" "@command{lsscsi} lists SCSI logical units or SCSI targets. It can\n" "also list NVMe namespaces or controllers and show the relationship between a\n" @@ -9209,7 +9335,7 @@ msgid "" "name." msgstr "" -#: gnu/packages/linux.scm:2751 +#: gnu/packages/linux.scm:2802 msgid "" "ebtables is an application program used to set up and maintain the\n" "tables of rules (inside the Linux kernel) that inspect Ethernet frames. It is\n" @@ -9217,7 +9343,7 @@ msgid "" "that the Ethernet protocol is much simpler than the IP protocol." msgstr "" -#: gnu/packages/linux.scm:2816 +#: gnu/packages/linux.scm:2867 msgid "" "Iproute2 is a collection of utilities for controlling TCP/IP networking\n" "and traffic with the Linux kernel. The most important of these are\n" @@ -9229,7 +9355,7 @@ msgid "" "inadequately in modern network environments, and both should be deprecated." msgstr "" -#: gnu/packages/linux.scm:2896 +#: gnu/packages/linux.scm:2947 msgid "" "This package includes the important tools for controlling the network\n" "subsystem of the Linux kernel. This includes arp, ifconfig, netstat, rarp and\n" @@ -9238,13 +9364,13 @@ msgid "" "configuration (iptunnel, ipmaddr)." msgstr "" -#: gnu/packages/linux.scm:2947 +#: gnu/packages/linux.scm:2989 msgid "" "Libcap2 provides a programming interface to POSIX capabilities on\n" "Linux-based operating systems." msgstr "" -#: gnu/packages/linux.scm:2974 +#: gnu/packages/linux.scm:3016 msgid "" "Utilities for Linux's Ethernet bridging facilities. A bridge is a way\n" "to connect two Ethernet segments together in a protocol independent way.\n" @@ -9253,7 +9379,7 @@ msgid "" "transparently through a bridge." msgstr "" -#: gnu/packages/linux.scm:3025 +#: gnu/packages/linux.scm:3067 msgid "" "The libnl suite is a collection of libraries providing APIs to netlink\n" "protocol based Linux kernel interfaces. Netlink is an IPC mechanism primarily\n" @@ -9262,13 +9388,13 @@ msgid "" "configuration and monitoring interfaces." msgstr "" -#: gnu/packages/linux.scm:3099 +#: gnu/packages/linux.scm:3141 msgid "" "iw is a new nl80211 based CLI configuration utility for wireless\n" "devices. It replaces @code{iwconfig}, which is deprecated." msgstr "" -#: gnu/packages/linux.scm:3149 +#: gnu/packages/linux.scm:3191 msgid "" "PowerTOP is a Linux tool to diagnose issues with power consumption and\n" "power management. In addition to being a diagnostic tool, PowerTOP also has\n" @@ -9277,19 +9403,19 @@ msgid "" "settings." msgstr "" -#: gnu/packages/linux.scm:3176 +#: gnu/packages/linux.scm:3218 msgid "" "Aumix adjusts an audio mixer from X, the console, a terminal,\n" "the command line or a script." msgstr "" -#: gnu/packages/linux.scm:3207 +#: gnu/packages/linux.scm:3249 msgid "" "Iotop is a Python program with a top like user interface to show the\n" "processes currently causing I/O." msgstr "" -#: gnu/packages/linux.scm:3265 +#: gnu/packages/linux.scm:3307 msgid "" "As a consequence of its monolithic design, file system code for Linux\n" "normally goes into the kernel itself---which is not only a robustness issue,\n" @@ -9299,7 +9425,7 @@ msgid "" "user-space processes." msgstr "" -#: gnu/packages/linux.scm:3358 +#: gnu/packages/linux.scm:3400 msgid "" "UnionFS-FUSE is a flexible union file system implementation in user\n" "space, using the FUSE library. Mounting a union file system allows you to\n" @@ -9307,7 +9433,7 @@ msgid "" "UnionFS-FUSE additionally supports copy-on-write." msgstr "" -#: gnu/packages/linux.scm:3437 +#: gnu/packages/linux.scm:3479 msgid "" "This is a file system client based on the SSH File Transfer Protocol.\n" "Since most SSH servers already support this protocol it is very easy to set\n" @@ -9315,7 +9441,7 @@ msgid "" "file system is as easy as logging into the server with an SSH client." msgstr "" -#: gnu/packages/linux.scm:3464 +#: gnu/packages/linux.scm:3506 msgid "" "archivemount is a FUSE-based file system for Unix variants,\n" "including Linux. Its purpose is to mount archives (i.e. tar, tar.gz, etc.) to a\n" @@ -9324,7 +9450,7 @@ msgid "" "compressed, transparent to other programs, without decompressing them." msgstr "" -#: gnu/packages/linux.scm:3495 +#: gnu/packages/linux.scm:3537 msgid "" "NUMA stands for Non-Uniform Memory Access, in other words a system whose\n" "memory is not all in one place. The @command{numactl} program allows you to\n" @@ -9337,26 +9463,26 @@ msgid "" "NUMA performance on your system." msgstr "" -#: gnu/packages/linux.scm:3533 +#: gnu/packages/linux.scm:3575 msgid "" "Kbd-neo provides the Neo2 keyboard layout for use with\n" "@command{loadkeys(1)} from @code{kbd(4)}." msgstr "" -#: gnu/packages/linux.scm:3599 +#: gnu/packages/linux.scm:3641 msgid "" "This package contains keytable files and keyboard utilities compatible\n" "for systems using the Linux kernel. This includes commands such as\n" "@code{loadkeys}, @code{setfont}, @code{kbdinfo}, and @code{chvt}." msgstr "" -#: gnu/packages/linux.scm:3662 +#: gnu/packages/linux.scm:3704 msgid "" "The inotify-tools packages provides a C library and command-line tools\n" "to use Linux' inotify mechanism, which allows file accesses to be monitored." msgstr "" -#: gnu/packages/linux.scm:3714 +#: gnu/packages/linux.scm:3756 msgid "" "Kmod is a set of tools to handle common tasks with Linux\n" "kernel modules like insert, remove, list, check properties, resolve\n" @@ -9367,21 +9493,21 @@ msgid "" "from the module-init-tools project." msgstr "" -#: gnu/packages/linux.scm:3769 +#: gnu/packages/linux.scm:3812 msgid "" "Early OOM is a minimalist out of memory (OOM) daemon that\n" "runs in user space and provides a more responsive and configurable alternative\n" "to the in-kernel OOM killer." msgstr "" -#: gnu/packages/linux.scm:3867 +#: gnu/packages/linux.scm:3892 msgid "" "Udev is a daemon which dynamically creates and removes\n" "device nodes from /dev/, handles hotplug events and loads drivers at boot\n" "time." msgstr "" -#: gnu/packages/linux.scm:3897 +#: gnu/packages/linux.scm:3922 msgid "" "Python-evdev provides bindings to the generic input event interface in\n" "Linux. The @code{evdev} interface serves the purpose of passing events\n" @@ -9393,7 +9519,7 @@ msgid "" "devices that can inject events directly into the input subsystem." msgstr "" -#: gnu/packages/linux.scm:3930 +#: gnu/packages/linux.scm:3955 msgid "" "Interception Tools provides a composable infrastructure on top of\n" "@code{libudev} and @code{libevdev}. The following utilities are provided:\n" @@ -9406,33 +9532,33 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/linux.scm:3979 +#: gnu/packages/linux.scm:4004 msgid "" "Dual Function Keys is a plugin for @code{interception-tools} that allows\n" "one to send arbitrary keycodes when a given key is tapped or held." msgstr "" -#: gnu/packages/linux.scm:4056 +#: gnu/packages/linux.scm:4081 msgid "" "LVM2 is the logical volume management tool set for Linux-based systems.\n" "This package includes the user-space libraries and tools, including the device\n" "mapper. Kernel components are part of Linux-libre." msgstr "" -#: gnu/packages/linux.scm:4122 +#: gnu/packages/linux.scm:4147 msgid "" "A suite of tools for manipulating the metadata of the\n" "dm-thin, dm-cache and dm-era device-mapper targets." msgstr "" -#: gnu/packages/linux.scm:4144 +#: gnu/packages/linux.scm:4169 msgid "" "This package provides an advanced monitor of critical system\n" "resources, supervises the heartbeat of processes, records deadline\n" "transgressions, and initiates a controlled reset if needed." msgstr "" -#: gnu/packages/linux.scm:4189 +#: gnu/packages/linux.scm:4214 msgid "" "Wireless Tools are used to manipulate the now-deprecated\n" "Linux Wireless Extensions; consider using @code{iw} instead. The Wireless\n" @@ -9441,35 +9567,35 @@ msgid "" "interface." msgstr "" -#: gnu/packages/linux.scm:4280 +#: gnu/packages/linux.scm:4305 msgid "" "The Central Regulatory Domain Agent (CRDA) acts as the udev helper for\n" "communication between the kernel Linux and user space for regulatory\n" "compliance." msgstr "" -#: gnu/packages/linux.scm:4350 +#: gnu/packages/linux.scm:4375 msgid "" "This package contains the wireless regulatory database for the Central\n" "Regulatory Database Agent (CRDA). The database contains information on\n" "country-specific regulations for the wireless spectrum." msgstr "" -#: gnu/packages/linux.scm:4424 +#: gnu/packages/linux.scm:4449 msgid "" "Lm-sensors is a hardware health monitoring package for Linux. It allows\n" "you to access information from temperature, voltage, and fan speed sensors.\n" "It works with most newer systems." msgstr "" -#: gnu/packages/linux.scm:4444 +#: gnu/packages/linux.scm:4469 msgid "" "@command{iucode_tool} is a utility to work with microcode packages for\n" "Intel processors. It can convert between formats, extract specific versions,\n" "create a firmware image suitable for the Linux kernel, and more." msgstr "" -#: gnu/packages/linux.scm:4475 +#: gnu/packages/linux.scm:4501 msgid "" "The i2c-tools package contains a heterogeneous set of I2C tools for\n" "Linux: a bus probing tool, a chip dumper, register-level SMBus access helpers,\n" @@ -9477,14 +9603,14 @@ msgid "" "SMBus access." msgstr "" -#: gnu/packages/linux.scm:4514 +#: gnu/packages/linux.scm:4540 msgid "" "Xsensors reads data from the libsensors library regarding hardware\n" "health such as temperature, voltage and fan speed and displays the information\n" "in a digital read-out." msgstr "" -#: gnu/packages/linux.scm:4568 +#: gnu/packages/linux.scm:4600 msgid "" "perf is a tool suite for profiling using hardware performance counters,\n" "with support in the Linux kernel. perf can instrument CPU performance\n" @@ -9493,7 +9619,7 @@ msgid "" "particular the @code{perf} command." msgstr "" -#: gnu/packages/linux.scm:4593 +#: gnu/packages/linux.scm:4625 msgid "" "pflask is a simple tool for creating Linux namespace\n" "containers. It can be used for running a command or even booting an OS inside\n" @@ -9502,7 +9628,7 @@ msgid "" "thanks to the use of namespaces." msgstr "" -#: gnu/packages/linux.scm:4678 +#: gnu/packages/linux.scm:4710 msgid "" "Singularity is a container platform supporting a number of\n" "container image formats. It can build SquashFS container images or import\n" @@ -9510,7 +9636,7 @@ msgid "" "isolation or root privileges." msgstr "" -#: gnu/packages/linux.scm:4711 +#: gnu/packages/linux.scm:4742 msgid "" "@command{hdparm} is a command-line utility to control ATA controllers and\n" "disk drives. It can increase performance and/or reliability by careful tuning\n" @@ -9524,21 +9650,21 @@ msgid "" "Translation (@dfn{SAT}) are also supported." msgstr "" -#: gnu/packages/linux.scm:4750 +#: gnu/packages/linux.scm:4782 msgid "" "Nvme-cli is a utility to provide standards compliant tooling\n" "for NVM-Express drives. It was made specifically for Linux as it relies on the\n" "IOCTLs defined by the mainline kernel driver." msgstr "" -#: gnu/packages/linux.scm:4776 +#: gnu/packages/linux.scm:4808 msgid "" "rfkill is a simple tool for accessing the rfkill device interface,\n" "which is used to enable and disable wireless networking devices, typically\n" "WLAN, Bluetooth and mobile broadband." msgstr "" -#: gnu/packages/linux.scm:4798 +#: gnu/packages/linux.scm:4830 msgid "" "@code{acpi} attempts to replicate the functionality of the\n" "\"old\" @code{apm} command on ACPI systems, including battery and thermal\n" @@ -9546,7 +9672,7 @@ msgid "" "about ACPI devices." msgstr "" -#: gnu/packages/linux.scm:4819 +#: gnu/packages/linux.scm:4851 msgid "" "acpid is designed to notify user-space programs of Advanced\n" "Configuration and Power Interface (ACPI) events. acpid should be started\n" @@ -9555,34 +9681,34 @@ msgid "" "specified in /etc/acpi/events and execute the rules that match the event." msgstr "" -#: gnu/packages/linux.scm:4843 +#: gnu/packages/linux.scm:4875 msgid "" "These are a set of utilities built upon sysfs, a virtual file system in\n" "Linux kernel versions 2.5+ that exposes a system's device tree. The package\n" "also contains the libsysfs library." msgstr "" -#: gnu/packages/linux.scm:4886 +#: gnu/packages/linux.scm:4918 msgid "" "The cpufrequtils suite contains utilities to retrieve CPU frequency\n" "information, and set the CPU frequency if supported, using the cpufreq\n" "capabilities of the Linux kernel." msgstr "" -#: gnu/packages/linux.scm:4922 +#: gnu/packages/linux.scm:4954 msgid "" "This package provides many of the missing pieces in GNU\n" "libc. Most notably the string functions: strlcpy(3), strlcat(3) and the *BSD\n" "sys/queue.h and sys/tree.h API's." msgstr "" -#: gnu/packages/linux.scm:4945 +#: gnu/packages/linux.scm:4977 msgid "" "This package provides small event loop that wraps the\n" "epoll family of APIs." msgstr "" -#: gnu/packages/linux.scm:4966 +#: gnu/packages/linux.scm:4998 msgid "" "Libraw1394 is the only supported interface to the kernel side raw1394 of\n" "the Linux IEEE-1394 subsystem, which provides direct access to the connected\n" @@ -9591,26 +9717,26 @@ msgid "" "protocol in question." msgstr "" -#: gnu/packages/linux.scm:4992 +#: gnu/packages/linux.scm:5024 msgid "" "Libavc1394 is a programming interface to the AV/C specification from\n" "the 1394 Trade Association. AV/C stands for Audio/Video Control." msgstr "" -#: gnu/packages/linux.scm:5016 +#: gnu/packages/linux.scm:5048 msgid "" "The libiec61883 library provides a higher level API for streaming DV,\n" "MPEG-2 and audio over Linux IEEE 1394." msgstr "" -#: gnu/packages/linux.scm:5067 +#: gnu/packages/linux.scm:5099 msgid "" "mdadm is a tool for managing Linux Software RAID arrays. It can create,\n" "assemble, report on, and monitor arrays. It can also move spares between raid\n" "arrays when needed." msgstr "" -#: gnu/packages/linux.scm:5199 +#: gnu/packages/linux.scm:5231 msgid "" "This package provides the following binaries to drive the\n" "Linux Device Mapper multipathing driver:\n" @@ -9623,66 +9749,66 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:5244 +#: gnu/packages/linux.scm:5288 msgid "" "This library enables userspace to use Linux kernel asynchronous I/O\n" "system calls, important for the performance of databases and other advanced\n" "applications." msgstr "" -#: gnu/packages/linux.scm:5287 +#: gnu/packages/linux.scm:5331 msgid "" "Blktrace is a block layer IO tracing mechanism which provides\n" "detailed information about request queue operations to user space. It extracts\n" "event traces from the kernel (via the relaying through the debug file system)." msgstr "" -#: gnu/packages/linux.scm:5312 +#: gnu/packages/linux.scm:5356 msgid "" "The SBC is a digital audio encoder and decoder used to transfer data to\n" "Bluetooth audio output devices like headphones or loudspeakers." msgstr "" -#: gnu/packages/linux.scm:5379 +#: gnu/packages/linux.scm:5423 msgid "" "BlueZ provides support for the core Bluetooth layers and protocols. It\n" "is flexible, efficient and uses a modular implementation." msgstr "" -#: gnu/packages/linux.scm:5403 +#: gnu/packages/linux.scm:5447 msgid "" "This package provides a FUSE-based file system that provides read and\n" "write access to exFAT devices." msgstr "" -#: gnu/packages/linux.scm:5426 +#: gnu/packages/linux.scm:5470 msgid "" "FuseISO is a FUSE module to mount ISO file system images (.iso, .nrg,\n" ".bin, .mdf and .img files). It supports plain ISO9660 Level 1 and 2, Rock\n" "Ridge, Joliet, and zisofs." msgstr "" -#: gnu/packages/linux.scm:5480 +#: gnu/packages/linux.scm:5524 msgid "" "The GPM (general-purpose mouse) daemon is a mouse server for\n" "applications running on the Linux console. It allows users to select items\n" "and copy/paste text in the console and in xterm." msgstr "" -#: gnu/packages/linux.scm:5551 +#: gnu/packages/linux.scm:5595 msgid "" "Btrfs is a @dfn{copy-on-write} (CoW) file system for Linux\n" "aimed at implementing advanced features while focusing on fault tolerance,\n" "repair and easy administration." msgstr "" -#: gnu/packages/linux.scm:5585 +#: gnu/packages/linux.scm:5629 msgid "" "This package provides the statically-linked @command{btrfs}\n" "from the btrfs-progs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5617 +#: gnu/packages/linux.scm:5661 msgid "" "Cramfs is a Linux file system designed to be simple, small,\n" "and to compress things well. It is used on a number of embedded systems and\n" @@ -9690,7 +9816,7 @@ msgid "" "blocks and random block placement." msgstr "" -#: gnu/packages/linux.scm:5652 +#: gnu/packages/linux.scm:5696 msgid "" "@command{compsize} takes a list of files (given as\n" "arguments) on a Btrfs file system and measures used compression types and\n" @@ -9707,20 +9833,20 @@ msgid "" "obviously it can be shared with files outside our set)." msgstr "" -#: gnu/packages/linux.scm:5700 +#: gnu/packages/linux.scm:5744 msgid "" "F2FS, the Flash-Friendly File System, is a modern file system\n" "designed to be fast and durable on flash devices such as solid-state\n" "disks and SD cards. This package provides the userland utilities." msgstr "" -#: gnu/packages/linux.scm:5790 +#: gnu/packages/linux.scm:5834 msgid "" "This package provides statically-linked fsck.f2fs command taken\n" "from the f2fs-tools package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5821 +#: gnu/packages/linux.scm:5865 msgid "" "Prevents shock damage to the internal spinning hard drive(s) of some\n" "HP and Dell laptops. When sudden movement is detected, all input/output\n" @@ -9730,7 +9856,7 @@ msgid "" "feature, and a laptop with an accelerometer. It has no effect on SSDs." msgstr "" -#: gnu/packages/linux.scm:5879 +#: gnu/packages/linux.scm:5923 msgid "" "Thinkfan is a simple fan control program. It reads temperatures,\n" "checks them against configured limits and switches to appropriate (also\n" @@ -9739,7 +9865,7 @@ msgid "" "from userspace." msgstr "" -#: gnu/packages/linux.scm:5935 +#: gnu/packages/linux.scm:5979 msgid "" "Tpacpi-bat is a command-line interface to control battery charging on\n" "@uref{https://github.com/teleshoes/tpacpi-bat/wiki/Supported-Hardware, Lenovo\n" @@ -9754,7 +9880,7 @@ msgid "" "supported." msgstr "" -#: gnu/packages/linux.scm:5979 +#: gnu/packages/linux.scm:6023 msgid "" "Tmon is a tool to interact with the complex thermal subsystem of the\n" "kernel Linux. It helps visualize thermal relationships and real-time thermal\n" @@ -9771,7 +9897,7 @@ msgid "" "by hand is no trivial task: @command{tmon} aims to make it understandable." msgstr "" -#: gnu/packages/linux.scm:6021 +#: gnu/packages/linux.scm:6065 msgid "" "Turbostat reports x86 processor topology, frequency, idle power state\n" "statistics, temperature, and power consumption. Some information is unavailable\n" @@ -9786,20 +9912,20 @@ msgid "" "invocations of itself." msgstr "" -#: gnu/packages/linux.scm:6080 +#: gnu/packages/linux.scm:6124 msgid "" "NTFS-3G provides read-write access to NTFS file systems, which are\n" "commonly found on Microsoft Windows. It is implemented as a FUSE file system.\n" "The package provides additional NTFS tools." msgstr "" -#: gnu/packages/linux.scm:6127 +#: gnu/packages/linux.scm:6171 msgid "" "This package provides a statically linked @command{ntfsfix} taken\n" "from the ntfs-3g package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:6174 +#: gnu/packages/linux.scm:6218 msgid "" "This package provides userspace components for the InfiniBand\n" "subsystem of the Linux kernel. Specifically it contains userspace\n" @@ -9819,7 +9945,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6228 +#: gnu/packages/linux.scm:6272 msgid "" "This is a collection of tests written over uverbs intended for\n" "use as a performance micro-benchmark. The tests may be used for hardware or\n" @@ -9835,20 +9961,20 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6270 +#: gnu/packages/linux.scm:6314 msgid "" "Monitor a hardware random number generator, and supply entropy\n" "from that to the system kernel's @file{/dev/random} machinery." msgstr "" -#: gnu/packages/linux.scm:6312 +#: gnu/packages/linux.scm:6356 msgid "" "cpupower is a set of user-space tools that use the cpufreq feature of the\n" "Linux kernel to retrieve and control processor features related to power saving,\n" "such as frequency and voltage scaling." msgstr "" -#: gnu/packages/linux.scm:6344 +#: gnu/packages/linux.scm:6388 msgid "" "@command{x86_energy_perf_policy} displays and updates energy-performance\n" "policy settings specific to Intel Architecture Processors. Settings are\n" @@ -9856,7 +9982,7 @@ msgid "" "cpufreq sub-system is enabled or not." msgstr "" -#: gnu/packages/linux.scm:6370 +#: gnu/packages/linux.scm:6414 msgid "" "haveged generates an unpredictable stream of random numbers for use by\n" "Linux's @file{/dev/random} and @file{/dev/urandom} devices. The kernel's\n" @@ -9874,7 +10000,7 @@ msgid "" "not as a replacement for it." msgstr "" -#: gnu/packages/linux.scm:6456 +#: gnu/packages/linux.scm:6500 msgid "" "eCryptfs is a POSIX-compliant stacked cryptographic file system for Linux.\n" "Each file's cryptographic meta-data is stored inside the file itself, along\n" @@ -9884,7 +10010,7 @@ msgid "" "2.6.19. This package contains the userland utilities to manage it." msgstr "" -#: gnu/packages/linux.scm:6488 +#: gnu/packages/linux.scm:6532 msgid "" "Libnfsidmap is a library holding mulitiple methods of\n" "mapping names to ids and visa versa, mainly for NFSv4. It provides an\n" @@ -9892,7 +10018,7 @@ msgid "" "the default @code{nsswitch} and the experimental @code{umich_ldap}." msgstr "" -#: gnu/packages/linux.scm:6524 +#: gnu/packages/linux.scm:6568 msgid "" "Tools for loading and managing Linux kernel modules, such as\n" "@code{modprobe}, @code{insmod}, @code{lsmod}, and more." @@ -9900,7 +10026,7 @@ msgstr "" "Værktøjer til at indlæse og håndtere Linuxkernemoduler, såsom\n" "@code{modprobe}, @code{insmod}, @code{lsmod} med flere." -#: gnu/packages/linux.scm:6565 +#: gnu/packages/linux.scm:6609 msgid "" "The mcelog daemon logs memory, I/O, CPU, and other hardware errors on x86\n" "systems running the kernel Linux. It can also perform user-defined tasks, such\n" @@ -9908,7 +10034,7 @@ msgid "" "exceeded." msgstr "" -#: gnu/packages/linux.scm:6596 +#: gnu/packages/linux.scm:6640 msgid "" "This package provides utilities for testing, partitioning, etc\n" "of flash storage." @@ -9916,7 +10042,7 @@ msgstr "" "Denne pakke tilbyder redskaber til test, partitionering, etc.\n" "for flashlager." -#: gnu/packages/linux.scm:6628 +#: gnu/packages/linux.scm:6672 msgid "" "The libseccomp library provides an easy to use, platform\n" "independent, interface to the Linux Kernel's syscall filtering mechanism. The\n" @@ -9926,7 +10052,7 @@ msgid "" "developers." msgstr "" -#: gnu/packages/linux.scm:6671 +#: gnu/packages/linux.scm:6715 msgid "" "RadeonTop monitors resource consumption on supported AMD\n" "Radeon Graphics Processing Units (GPUs), either in real time as bar graphs on\n" @@ -9936,7 +10062,7 @@ msgid "" "under OpenGL graphics workloads." msgstr "" -#: gnu/packages/linux.scm:6718 +#: gnu/packages/linux.scm:6762 msgid "" "This package provides a library and a command line\n" "interface to the variable facility of UEFI boot firmware." @@ -9944,7 +10070,7 @@ msgstr "" "Denne pakke tilbyder et bibliotek og en kommandolinje-\n" "grænseflade til variabelfaciliteten for UEFI-opstartsfirmware." -#: gnu/packages/linux.scm:6755 +#: gnu/packages/linux.scm:6799 msgid "" "@code{efibootmgr} is a user-space application to modify the Intel\n" "Extensible Firmware Interface (EFI) Boot Manager. This application can\n" @@ -9952,7 +10078,7 @@ msgid "" "running boot option, and more." msgstr "" -#: gnu/packages/linux.scm:6791 +#: gnu/packages/linux.scm:6835 msgid "" "The sysstat utilities are a collection of performance\n" "monitoring tools for Linux. These include @code{mpstat}, @code{iostat},\n" @@ -9960,7 +10086,7 @@ msgid "" "@code{sadf} and @code{sa}." msgstr "" -#: gnu/packages/linux.scm:6832 +#: gnu/packages/linux.scm:6876 msgid "" "Light is a program to send commands to screen backlight controllers\n" "under GNU/Linux. Features include:\n" @@ -9974,7 +10100,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/linux.scm:6880 +#: gnu/packages/linux.scm:6924 msgid "" "This program allows you read and control device brightness. Devices\n" "include backlight and LEDs. It can also preserve current brightness before\n" @@ -9984,7 +10110,7 @@ msgid "" "interface in sysfs, which can be accomplished with the included udev rules." msgstr "" -#: gnu/packages/linux.scm:7007 +#: gnu/packages/linux.scm:7048 msgid "" "TLP is a power management tool for Linux. It comes with\n" "a default configuration already optimized for battery life. Nevertheless,\n" @@ -9992,7 +10118,7 @@ msgid "" "every time the power supply source is changed." msgstr "" -#: gnu/packages/linux.scm:7073 +#: gnu/packages/linux.scm:7114 msgid "" "The Python scripts in this project generate a GTK-UI to change\n" "TLP configuration files easily. It aims to protect users from setting\n" @@ -10000,7 +10126,7 @@ msgid "" "configuration values." msgstr "" -#: gnu/packages/linux.scm:7099 +#: gnu/packages/linux.scm:7140 msgid "" "@command{lshw} (Hardware Lister) is a small tool to provide\n" "detailed information on the hardware configuration of the machine.\n" @@ -10010,7 +10136,7 @@ msgid "" "machines (PowerMac G4 is known to work)." msgstr "" -#: gnu/packages/linux.scm:7123 +#: gnu/packages/linux.scm:7164 msgid "" "Libmnl is a minimalistic user-space library oriented to\n" "Netlink developers. There are a lot of common tasks in parsing, validating,\n" @@ -10019,7 +10145,7 @@ msgid "" "re-use code and to avoid re-inventing the wheel." msgstr "" -#: gnu/packages/linux.scm:7148 +#: gnu/packages/linux.scm:7189 msgid "" "Libnftnl is a userspace library providing a low-level netlink\n" "programming interface to the in-kernel nf_tables subsystem. The library\n" @@ -10027,7 +10153,7 @@ msgid "" "used by nftables." msgstr "" -#: gnu/packages/linux.scm:7194 +#: gnu/packages/linux.scm:7235 msgid "" "nftables is the project that aims to replace the existing\n" "{ip,ip6,arp,eb}tables framework. Basically, this project provides a new packet\n" @@ -10037,7 +10163,7 @@ msgid "" "userspace queueing component and the logging subsystem." msgstr "" -#: gnu/packages/linux.scm:7336 +#: gnu/packages/linux.scm:7377 msgid "" "PRoot is a user-space implementation of @code{chroot}, @code{mount --bind},\n" "and @code{binfmt_misc}. This means that users don't need any privileges or\n" @@ -10050,7 +10176,7 @@ msgid "" "available in the kernel Linux." msgstr "" -#: gnu/packages/linux.scm:7399 +#: gnu/packages/linux.scm:7437 msgid "" "cpuid dumps detailed information about the CPU(s) gathered\n" "from the CPUID instruction, and also determines the exact model of CPU(s). It\n" @@ -10058,14 +10184,14 @@ msgid "" "NexGen, Rise, and SiS CPUs." msgstr "" -#: gnu/packages/linux.scm:7426 +#: gnu/packages/linux.scm:7464 msgid "" "jmtpfs uses FUSE (file system in userspace) to provide access\n" "to data over the Media Transfer Protocol (MTP). Unprivileged users can mount\n" "the MTP device as a file system." msgstr "" -#: gnu/packages/linux.scm:7453 +#: gnu/packages/linux.scm:7491 msgid "" "Procenv is a command-line tool that displays as much detail about\n" "itself and its environment as possible. It can be used as a test\n" @@ -10073,7 +10199,7 @@ msgid "" "comparing system environments." msgstr "" -#: gnu/packages/linux.scm:7482 +#: gnu/packages/linux.scm:7520 msgid "" "OpenFabrics Interfaces (OFI) is a framework focused on exporting fabric\n" "communication services to applications. OFI is best described as a collection\n" @@ -10087,7 +10213,7 @@ msgid "" "libraries, which are often integrated directly into libfabric." msgstr "" -#: gnu/packages/linux.scm:7544 +#: gnu/packages/linux.scm:7582 msgid "" "The PSM Messaging API, or PSM API, is Intel's low-level user-level\n" "communications interface for the True Scale family of products. PSM users are\n" @@ -10095,14 +10221,14 @@ msgid "" "interfaces in parallel environments." msgstr "" -#: gnu/packages/linux.scm:7587 +#: gnu/packages/linux.scm:7625 msgid "" "snapscreenshot saves a screenshot of one or more Linux text consoles as a\n" "Targa (@dfn{.tga}) image. It can be used by anyone with read access to the\n" "relevant @file{/dev/vcs*} file(s)." msgstr "" -#: gnu/packages/linux.scm:7641 +#: gnu/packages/linux.scm:7679 msgid "" "fbcat saves the contents of the Linux framebuffer (@file{/dev/fb*}), or\n" "a dump therof. It supports a wide range of drivers and pixel formats.\n" @@ -10114,14 +10240,14 @@ msgid "" "emulates the behaviour of Gunnar Monell's older fbgrab utility." msgstr "" -#: gnu/packages/linux.scm:7672 +#: gnu/packages/linux.scm:7710 msgid "" "Control groups is Linux kernel method for process resource\n" "restriction, permission handling and more. This package provides userspace\n" "interface to this kernel feature." msgstr "" -#: gnu/packages/linux.scm:7707 +#: gnu/packages/linux.scm:7745 msgid "" "mbpfan is a fan control daemon for Apple Macbooks. It uses input from\n" "the @code{coretemp} module and sets the fan speed using the @code{applesmc}\n" @@ -10129,7 +10255,7 @@ msgid "" "privileges." msgstr "" -#: gnu/packages/linux.scm:7751 +#: gnu/packages/linux.scm:7789 msgid "" "This package is low-level user-level Intel's communications interface.\n" "The PSM2 API is a high-performance vendor-specific protocol that provides a\n" @@ -10137,7 +10263,7 @@ msgid "" "high-speed networking devices." msgstr "" -#: gnu/packages/linux.scm:7794 +#: gnu/packages/linux.scm:7832 msgid "" "This package provides a library called libpfm4, which is used to develop\n" "monitoring tools exploiting the performance monitoring events such as those\n" @@ -10152,7 +10278,7 @@ msgid "" "introduced in Linux 2.6.31." msgstr "" -#: gnu/packages/linux.scm:7824 +#: gnu/packages/linux.scm:7862 msgid "" "@code{libnfnetlink} is the low-level library for netfilter related\n" "kernel/userspace communication. It provides a generic messaging\n" @@ -10161,7 +10287,7 @@ msgid "" "management tools in userspace." msgstr "" -#: gnu/packages/linux.scm:7851 +#: gnu/packages/linux.scm:7889 msgid "" "The netlink package provides a simple netlink library for\n" "Go. Netlink is the interface a user-space program in Linux uses to\n" @@ -10169,7 +10295,7 @@ msgid "" "IP addresses and routes, and configure IPsec." msgstr "" -#: gnu/packages/linux.scm:7891 +#: gnu/packages/linux.scm:7929 msgid "" "The inih (INI Not Invented Here) library is a simple .INI file\n" "parser written in C. It's only a couple of pages of code, and it was designed to\n" @@ -10178,7 +10304,7 @@ msgid "" "822-style multi-line syntax and name: value entries." msgstr "" -#: gnu/packages/linux.scm:7942 +#: gnu/packages/linux.scm:7980 msgid "" "This package provides commands to create and check XFS\n" "file systems." @@ -10186,13 +10312,13 @@ msgstr "" "Denne pakke tilbyder kommandoer til at oprette og kontrollere\n" "XFS-filsystemer." -#: gnu/packages/linux.scm:7998 +#: gnu/packages/linux.scm:8036 msgid "" "This package provides a statically linked @command{xfs_repair} taken\n" "from the xfsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:8034 +#: gnu/packages/linux.scm:8072 msgid "" "This package provides a program to generate an ext2\n" "file system as a normal (non-root) user. It does not require you to mount\n" @@ -10200,7 +10326,7 @@ msgid "" "the superuser to make device nodes." msgstr "" -#: gnu/packages/linux.scm:8129 +#: gnu/packages/linux.scm:8167 msgid "" "@command{fakeroot} runs a command in an environment where it appears to\n" "have root privileges for file manipulation. This is useful for allowing users\n" @@ -10213,7 +10339,7 @@ msgid "" "without using the archiver." msgstr "" -#: gnu/packages/linux.scm:8169 +#: gnu/packages/linux.scm:8207 msgid "" "@command{fakechroot} runs a command in an environment were is additional\n" "possibility to use @code{chroot} command without root privileges. This is\n" @@ -10224,13 +10350,13 @@ msgid "" "set as @code{LD_PRELOAD} to override the C library file system functions." msgstr "" -#: gnu/packages/linux.scm:8215 +#: gnu/packages/linux.scm:8253 msgid "" "inputattach dispatches input events from several device\n" "types and interfaces and translates so that the X server can use them." msgstr "" -#: gnu/packages/linux.scm:8251 +#: gnu/packages/linux.scm:8289 msgid "" "PipeWire is a project that aims to greatly improve handling of audio and\n" "video under Linux. It aims to support the usecases currently handled by both\n" @@ -10242,7 +10368,7 @@ msgid "" "of Linux application development." msgstr "" -#: gnu/packages/linux.scm:8318 +#: gnu/packages/linux.scm:8356 msgid "" "WirePlumber is a modular session / policy manager for\n" "PipeWire and a GObject-based high-level library that wraps PipeWire's API,\n" @@ -10250,7 +10376,7 @@ msgid "" "tools for managing PipeWire." msgstr "" -#: gnu/packages/linux.scm:8357 +#: gnu/packages/linux.scm:8395 msgid "" "The Embedded Linux* Library (ELL) provides core, low-level\n" "functionality for system daemons. It typically has no dependencies other than\n" @@ -10259,7 +10385,7 @@ msgid "" "platforms, it is not limited to resource-constrained systems." msgstr "" -#: gnu/packages/linux.scm:8386 +#: gnu/packages/linux.scm:8424 msgid "" "This package provides the @code{kexec} program and ancillary\n" "utilities. Using @code{kexec}, it is possible to boot directly into a new\n" @@ -10267,7 +10393,7 @@ msgid "" "system boot process." msgstr "" -#: gnu/packages/linux.scm:8419 +#: gnu/packages/linux.scm:8457 msgid "" "@code{cachefilesd} is a userspace daemon that manages the\n" "cache data store that is used by network file systems such as @code{AFS} and\n" @@ -10275,14 +10401,14 @@ msgid "" "persistent over reboots." msgstr "" -#: gnu/packages/linux.scm:8463 +#: gnu/packages/linux.scm:8501 msgid "" "Libbpf supports building BPF CO-RE-enabled applications, which, in\n" "contrast to BCC, do not require the Clang/LLVM runtime or linux kernel\n" "headers." msgstr "" -#: gnu/packages/linux.scm:8541 +#: gnu/packages/linux.scm:8579 msgid "" "BCC is a toolkit for creating efficient kernel tracing and manipulation\n" "programs, and includes several useful tools and examples. It makes use of\n" @@ -10291,7 +10417,7 @@ msgid "" "and above." msgstr "" -#: gnu/packages/linux.scm:8577 +#: gnu/packages/linux.scm:8615 msgid "" "bpftrace is a high-level tracing language for Linux enhanced Berkeley\n" "Packet Filter (eBPF) available in recent Linux kernels (4.x). bpftrace uses\n" @@ -10303,14 +10429,14 @@ msgid "" "created by Alastair Robertson." msgstr "" -#: gnu/packages/linux.scm:8609 +#: gnu/packages/linux.scm:8647 msgid "" "This package provides a Linux kernel module that will\n" "provide a serial device @code{/dev/ttyebus} with almost no latency upon\n" "receiving. It is dedicated to the PL011 UART of the Raspberry Pi." msgstr "" -#: gnu/packages/linux.scm:8635 +#: gnu/packages/linux.scm:8673 msgid "" "IP sets are a framework inside the Linux 2.4.x and 2.6.x kernel which\n" "can be administered by the ipset utility. Depending on the type,\n" @@ -10331,7 +10457,7 @@ msgid "" "then IP sets may be the proper tool for you." msgstr "" -#: gnu/packages/linux.scm:8682 +#: gnu/packages/linux.scm:8720 msgid "" "This is the io_uring library, liburing. liburing provides\n" "helpers to setup and teardown io_uring instances, and also a simplified\n" @@ -10339,14 +10465,14 @@ msgid "" "kernel side implementation." msgstr "" -#: gnu/packages/linux.scm:8710 +#: gnu/packages/linux.scm:8748 msgid "" "@acronym{EROFS, The Enhanced Read-Only File System} is a compressed,\n" "read-only file system optimized for resource-scarce devices. This package\n" "provides user-space tools for creating EROFS file systems." msgstr "" -#: gnu/packages/linux.scm:8754 +#: gnu/packages/linux.scm:8792 msgid "" "The @code{rasdaemon} daemon monitors platform @acronym{RAS, Reliability\n" "Availability and Serviceability} reports from Linux kernel trace events.\n" @@ -10354,7 +10480,7 @@ msgid "" "through standard log mechanisms like syslog." msgstr "" -#: gnu/packages/linux.scm:8788 +#: gnu/packages/linux.scm:8826 msgid "" "This package provides a C library with C++/Python bindings and\n" "command-line tools for interacting with GPIO devices that avoids the usage of\n" @@ -10380,33 +10506,33 @@ msgid "" "beginning." msgstr "" -#: gnu/packages/messaging.scm:181 +#: gnu/packages/messaging.scm:183 msgid "" "OMEMO-wget is a tool to handle cryptographic URLs, generated\n" "by @acronym{OMEMO, OMEMO Multi-End Message and Object Encryption}, during\n" "XMPP-based sessions." msgstr "" -#: gnu/packages/messaging.scm:237 +#: gnu/packages/messaging.scm:239 msgid "" "Psi is a capable XMPP client aimed at experienced users.\n" "Its design goals are simplicity and stability." msgstr "" -#: gnu/packages/messaging.scm:295 +#: gnu/packages/messaging.scm:297 msgid "" "GNT is an ncurses toolkit for creating text-mode graphical\n" "user interfaces in a fast and easy way. It is based on GLib and ncurses." msgstr "" -#: gnu/packages/messaging.scm:346 +#: gnu/packages/messaging.scm:348 msgid "" "LibGadu is library for handling Gadu-Gadu instant messenger\n" "protocol. The library is written in C and aims to be operating system and\n" "environment independent." msgstr "" -#: gnu/packages/messaging.scm:381 +#: gnu/packages/messaging.scm:383 msgid "" "SILC (Secure Internet Live Conferencing) is a modern and secure\n" "conferencing protocol. It provides all the common conferencing services like\n" @@ -10414,14 +10540,14 @@ msgid "" "conferencing." msgstr "" -#: gnu/packages/messaging.scm:427 +#: gnu/packages/messaging.scm:429 msgid "" "QXmpp is a XMPP client and server library written in C++ and uses the Qt\n" "framework. It builds XMPP clients complying with the XMPP Compliance Suites\n" "2021 for IM and Advanced Mobile." msgstr "" -#: gnu/packages/messaging.scm:454 +#: gnu/packages/messaging.scm:456 msgid "" "Meanwhile is a library for connecting to a LIM (Lotus Instant\n" "Messaging, formerly Lotus Sametime, formerly VPBuddy) community. It uses a\n" @@ -10429,7 +10555,7 @@ msgid "" "TCP sessions from existing clients." msgstr "" -#: gnu/packages/messaging.scm:500 +#: gnu/packages/messaging.scm:502 msgid "" "Poezio is a free console XMPP client (the protocol on which\n" "the Jabber IM network is built).\n" @@ -10442,7 +10568,7 @@ msgid "" "powerful, standard and open protocol." msgstr "" -#: gnu/packages/messaging.scm:533 +#: gnu/packages/messaging.scm:535 msgid "" "OTR allows you to have private conversations over instant\n" "messaging by providing: (1) Encryption: No one else can read your instant\n" @@ -10455,7 +10581,7 @@ msgid "" "your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:572 +#: gnu/packages/messaging.scm:574 msgid "" "libsignal-protocol-c is an implementation of a ratcheting\n" "forward secrecy protocol that works in synchronous and asynchronous\n" @@ -10463,20 +10589,20 @@ msgid "" "end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:609 +#: gnu/packages/messaging.scm:611 msgid "" "This is a client library for @code{libsignal-protocol-c}.\n" "It implements the necessary interfaces using @code{libgcrypt} and\n" "@code{sqlite}." msgstr "" -#: gnu/packages/messaging.scm:641 +#: gnu/packages/messaging.scm:643 msgid "" "This library implements @acronym{OMEMO, OMEMO Multi-End\n" "Message and Object Encryption} of XMPP (XEP-0384) in C." msgstr "" -#: gnu/packages/messaging.scm:681 +#: gnu/packages/messaging.scm:683 msgid "" "BitlBee brings IM (instant messaging) to IRC clients, for\n" "people who have an IRC client running all the time and don't want to run an\n" @@ -10486,20 +10612,20 @@ msgid "" "identi.ca and status.net)." msgstr "" -#: gnu/packages/messaging.scm:748 +#: gnu/packages/messaging.scm:750 msgid "" "Bitlbee-discord is a plugin for Bitlbee which provides\n" "access to servers running the Discord protocol." msgstr "" -#: gnu/packages/messaging.scm:794 +#: gnu/packages/messaging.scm:796 msgid "" "Purple-Mattermost is a plug-in for Purple, the instant messaging library\n" "used by Pidgin and Bitlbee, among others, to access\n" "@uref{https://mattermost.com/, Mattermost} servers." msgstr "" -#: gnu/packages/messaging.scm:852 +#: gnu/packages/messaging.scm:854 msgid "" "HexChat lets you connect to multiple IRC networks at once. The main\n" "window shows the list of currently connected networks and their channels, the\n" @@ -10508,7 +10634,7 @@ msgid "" "dictionaries. HexChat can be extended with multiple addons." msgstr "" -#: gnu/packages/messaging.scm:917 +#: gnu/packages/messaging.scm:919 msgid "" "ngIRCd is a lightweight @dfn{Internet Relay Chat} (IRC) server for small\n" "or private networks. It is easy to configure, can cope with dynamic IP\n" @@ -10516,13 +10642,13 @@ msgid "" "authentication." msgstr "" -#: gnu/packages/messaging.scm:1024 +#: gnu/packages/messaging.scm:1026 msgid "" "Pidgin is a modular instant messaging client that supports\n" "many popular chat protocols." msgstr "" -#: gnu/packages/messaging.scm:1064 +#: gnu/packages/messaging.scm:1066 msgid "" "Pidgin-OTR is a plugin that adds support for OTR to the Pidgin\n" "instant messaging client. OTR (Off-the-Record) Messaging allows you to have\n" @@ -10536,7 +10662,7 @@ msgid "" "control of your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:1118 +#: gnu/packages/messaging.scm:1120 msgid "" "ZNC is an @dfn{IRC network bouncer} or @dfn{BNC}. It can\n" "detach the client from the actual IRC server, and also from selected channels.\n" @@ -10544,41 +10670,41 @@ msgid "" "simultaneously and therefore appear under the same nickname on IRC." msgstr "" -#: gnu/packages/messaging.scm:1147 +#: gnu/packages/messaging.scm:1149 msgid "" "Python-nbxmpp is a Python library that provides a way for\n" "Python applications to use the XMPP network. This library was initially a fork\n" "of xmpppy." msgstr "" -#: gnu/packages/messaging.scm:1274 +#: gnu/packages/messaging.scm:1276 msgid "" "Gajim aims to be an easy to use and fully-featured XMPP chat\n" "client. It is extensible via plugins, supports end-to-end encryption (OMEMO\n" "and OpenPGP) and available in 29 languages." msgstr "" -#: gnu/packages/messaging.scm:1309 +#: gnu/packages/messaging.scm:1311 msgid "" "Gajim-OMEMO is a plugin that adds support for the OMEMO\n" "Encryption to Gajim. OMEMO is an XMPP Extension Protocol (XEP) for secure\n" "multi-client end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:1344 +#: gnu/packages/messaging.scm:1346 msgid "" "Gajim-OpenPGP is a plugin that adds support for the OpenPGP\n" "Encryption to Gajim." msgstr "" -#: gnu/packages/messaging.scm:1418 +#: gnu/packages/messaging.scm:1420 msgid "" "Dino is a chat client for the desktop. It focuses on providing\n" "a minimal yet reliable Jabber/XMPP experience and having encryption enabled by\n" "default." msgstr "" -#: gnu/packages/messaging.scm:1505 +#: gnu/packages/messaging.scm:1507 msgid "" "Prosody is a modern XMPP communication server. It aims to\n" "be easy to set up and configure, and efficient with system resources.\n" @@ -10587,24 +10713,24 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/messaging.scm:1540 +#: gnu/packages/messaging.scm:1542 msgid "" "This module implements XEP-0363: it allows clients to\n" "upload files over HTTP." msgstr "" -#: gnu/packages/messaging.scm:1572 +#: gnu/packages/messaging.scm:1574 msgid "" "This module implements XEP-0198: when supported by both\n" "the client and server, it can allow clients to resume a disconnected session,\n" "and prevent message loss." msgstr "" -#: gnu/packages/messaging.scm:1601 +#: gnu/packages/messaging.scm:1603 msgid "C library implementation of the Tox encrypted messenger protocol." msgstr "C-biblioteksimplementering for den Tox-krypterede messengerprotokol." -#: gnu/packages/messaging.scm:1633 +#: gnu/packages/messaging.scm:1635 msgid "" "Official fork of the C library implementation of the Tox encrypted\n" "messenger protocol." @@ -10612,20 +10738,20 @@ msgstr "" "Officel forgrening af C-biblioteksimplementering for den\n" "Tox-krypterede messengerprotokol." -#: gnu/packages/messaging.scm:1687 +#: gnu/packages/messaging.scm:1689 msgid "" "uTox is a lightweight Tox client. Tox is a distributed and secure\n" "instant messenger with audio and video chat capabilities." msgstr "" -#: gnu/packages/messaging.scm:1750 +#: gnu/packages/messaging.scm:1752 msgid "" "qTox is a Tox client that follows the Tox design\n" "guidelines. It provides an easy to use application that allows you to\n" "connect with friends and family without anyone else listening in." msgstr "" -#: gnu/packages/messaging.scm:1772 +#: gnu/packages/messaging.scm:1774 msgid "" "Ytalk is a replacement for the BSD talk program. Its main\n" "advantage is the ability to communicate with any arbitrary number of users at\n" @@ -10633,7 +10759,7 @@ msgid "" "with several different talk daemons at the same time." msgstr "" -#: gnu/packages/messaging.scm:1796 +#: gnu/packages/messaging.scm:1798 msgid "" "gloox is a full-featured Jabber/XMPP client library,\n" "written in ANSI C++. It makes writing spec-compliant clients easy\n" @@ -10641,7 +10767,7 @@ msgid "" "into existing applications." msgstr "" -#: gnu/packages/messaging.scm:1866 +#: gnu/packages/messaging.scm:1868 msgid "" "@code{Net::PSYC} with support for TCP, UDP, Event.pm, @code{IO::Select} and\n" "Gtk2 event loops. This package includes 12 applications and additional scripts:\n" @@ -10649,14 +10775,14 @@ msgid "" "for @uref{https://torproject.org,tor} router) and many more." msgstr "" -#: gnu/packages/messaging.scm:1907 +#: gnu/packages/messaging.scm:1909 msgid "" "@code{libpsyc} is a PSYC library in C which implements\n" "core aspects of PSYC, useful for all kinds of clients and servers\n" "including psyced." msgstr "" -#: gnu/packages/messaging.scm:1949 +#: gnu/packages/messaging.scm:1951 msgid "" "Loudmouth is a lightweight and easy-to-use C library for programming\n" "with the XMPP (formerly known as Jabber) protocol. It is designed to be\n" @@ -10664,7 +10790,7 @@ msgid "" "protocol allows." msgstr "" -#: gnu/packages/messaging.scm:1991 +#: gnu/packages/messaging.scm:1993 msgid "" "Mcabber is a small XMPP (Jabber) console client, which includes features\n" "such as SASL and TLS support, @dfn{Multi-User Chat} (MUC) support, logging,\n" @@ -10672,7 +10798,7 @@ msgid "" "support, and more." msgstr "" -#: gnu/packages/messaging.scm:2039 +#: gnu/packages/messaging.scm:2041 msgid "" "GNU Freetalk is a command-line Jabber/XMPP chat client. It notably uses\n" "the Readline library to handle input, so it features convenient navigation of\n" @@ -10680,27 +10806,27 @@ msgid "" "is also scriptable and extensible via Guile." msgstr "" -#: gnu/packages/messaging.scm:2074 +#: gnu/packages/messaging.scm:2076 msgid "" "Libmesode is a fork of libstrophe for use with Profanity\n" "XMPP Client. In particular, libmesode provides extra TLS functionality such as\n" "manual SSL certificate verification." msgstr "" -#: gnu/packages/messaging.scm:2109 +#: gnu/packages/messaging.scm:2111 msgid "" "Libstrophe is a minimal XMPP library written in C. It has\n" "almost no external dependencies, only an XML parsing library (expat or libxml\n" "are both supported)." msgstr "" -#: gnu/packages/messaging.scm:2167 +#: gnu/packages/messaging.scm:2169 msgid "" "Profanity is a console based XMPP client written in C\n" "using ncurses and libmesode, inspired by Irssi." msgstr "" -#: gnu/packages/messaging.scm:2197 +#: gnu/packages/messaging.scm:2199 msgid "" "Libircclient is a library which implements the client IRC\n" "protocol. It is designed to be small, fast, portable and compatible with the\n" @@ -10708,14 +10834,14 @@ msgid "" "building the IRC clients and bots." msgstr "" -#: gnu/packages/messaging.scm:2255 +#: gnu/packages/messaging.scm:2257 msgid "" "Toxic is a console-based instant messaging client, using\n" "c-toxcore and ncurses. It provides audio calls, sound and desktop\n" "notifications, and Python scripting support." msgstr "" -#: gnu/packages/messaging.scm:2281 +#: gnu/packages/messaging.scm:2283 msgid "" "libqmatrixclient is a Qt5 library to write clients for the\n" "Matrix instant messaging protocol. Quaternion is the reference client\n" @@ -10723,13 +10849,13 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2326 +#: gnu/packages/messaging.scm:2330 msgid "" "@code{mtxclient} is a C++ library that implements client API\n" "for the Matrix protocol. It is built on to of @code{Boost.Asio}." msgstr "" -#: gnu/packages/messaging.scm:2418 +#: gnu/packages/messaging.scm:2423 msgid "" "@code{Nheko} want to provide a native desktop app for the\n" "Matrix protocol that feels more like a mainstream chat app and less like an IRC\n" @@ -10739,7 +10865,7 @@ msgid "" "notification, emojis, E2E encryption, and voip calls." msgstr "" -#: gnu/packages/messaging.scm:2455 +#: gnu/packages/messaging.scm:2460 msgid "" "Quaternion is a Qt5 desktop client for the Matrix instant\n" "messaging protocol. It uses libqmatrixclient and is its reference client\n" @@ -10747,7 +10873,7 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2502 +#: gnu/packages/messaging.scm:2507 msgid "" "Hangups is an instant messaging client for Google Hangouts. It includes\n" "both a Python library and a reference client with a text-based user interface.\n" @@ -10757,7 +10883,7 @@ msgid "" "messaging that aren’t available to clients that connect over XMPP." msgstr "" -#: gnu/packages/messaging.scm:2584 +#: gnu/packages/messaging.scm:2589 msgid "" "Telegram-purple is a plugin for Libpurple, the communication library\n" "used by the Pidgin instant messaging client, that adds support for the\n" @@ -10767,7 +10893,7 @@ msgid "" "replacement." msgstr "" -#: gnu/packages/messaging.scm:2629 +#: gnu/packages/messaging.scm:2632 msgid "" "Tdlib is a cross-platform library for creating custom\n" "Telegram clients following the official Telegram API. It can be easily used\n" @@ -10775,11 +10901,11 @@ msgid "" "support for high performance Telegram Bot creation." msgstr "" -#: gnu/packages/messaging.scm:2667 +#: gnu/packages/messaging.scm:2670 msgid "Plugin for libpurple to allow sending SMS using ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2712 +#: gnu/packages/messaging.scm:2715 msgid "" "Purple-lurch plugin adds end-to-end encryption support\n" "through the Double Ratchet (Axolotl) algorithm, to @code{libpurple}\n" @@ -10790,19 +10916,19 @@ msgid "" "asynchronicity." msgstr "" -#: gnu/packages/messaging.scm:2748 +#: gnu/packages/messaging.scm:2751 msgid "" "This package provides a C++ library for parsing, formatting, and\n" "validating international phone numbers." msgstr "" -#: gnu/packages/messaging.scm:2793 +#: gnu/packages/messaging.scm:2796 msgid "" "Chatty is a chat program for XMPP and SMS. It works on mobile\n" "as well as on desktop platforms. It's based on libpurple and ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2814 +#: gnu/packages/messaging.scm:2817 msgid "" "This package provides Eclipse Mosquitto, a message broker\n" "that implements the MQTT protocol versions 5.0, 3.1.1 and 3.1. Mosquitto\n" @@ -10815,31 +10941,31 @@ msgid "" "as phones, embedded computers or microcontrollers." msgstr "" -#: gnu/packages/messaging.scm:2864 +#: gnu/packages/messaging.scm:2867 msgid "" "Movim-Desktop is a desktop application, relying on Qt, for the Movim\n" "social and chat platform." msgstr "" -#: gnu/packages/messaging.scm:2999 +#: gnu/packages/messaging.scm:3002 msgid "" "Psi+ is a spin-off of Psi XMPP client. It is a powerful XMPP client\n" "designed for experienced users." msgstr "" -#: gnu/packages/messaging.scm:3039 +#: gnu/packages/messaging.scm:3042 #, fuzzy msgid "This package provides Python bindings to Zulip's API." msgstr "" "Denne pakke tilbyder Pythonbindinger til Qt5-grænsefladen for\n" "Poppler PDF-optegningsbiblioteket." -#: gnu/packages/messaging.scm:3088 +#: gnu/packages/messaging.scm:3091 #, fuzzy msgid "This package contains Zulip's official terminal client." msgstr "Denne pakke indeholder spildataen for GNU Freedink." -#: gnu/packages/messaging.scm:3110 +#: gnu/packages/messaging.scm:3113 msgid "" "Relays messages between different channels from various\n" "messaging networks and protocols. So far it supports mattermost, IRC, gitter,\n" @@ -10848,20 +10974,20 @@ msgid "" "API. Mattermost is not required." msgstr "" -#: gnu/packages/messaging.scm:3143 +#: gnu/packages/messaging.scm:3146 msgid "" "@command{pounce} is a multi-client, TLS-only IRC bouncer. It maintains\n" "a persistent connection to an IRC server, acting as a proxy and buffer for\n" "a number of clients." msgstr "" -#: gnu/packages/messaging.scm:3209 +#: gnu/packages/messaging.scm:3212 msgid "" "@code{weechat-matrix} is a Python plugin for Weechat that lets\n" "Weechat communicate over the Matrix protocol." msgstr "" -#: gnu/packages/messaging.scm:3256 +#: gnu/packages/messaging.scm:3259 msgid "" "@code{weechat-wee-slack} is a WeeChat native client for\n" "Slack. It provides supplemental features only available in the web/mobile\n" @@ -10972,14 +11098,14 @@ msgid "" "themselves." msgstr "" -#: gnu/packages/networking.scm:174 +#: gnu/packages/networking.scm:176 msgid "" "UsrSCTP is a portable SCTP userland stack. SCTP is a message\n" "oriented, reliable transport protocol with direct support for multihoming that\n" "runs on top of IP or UDP, and supports both v4 and v6 versions." msgstr "" -#: gnu/packages/networking.scm:199 +#: gnu/packages/networking.scm:201 msgid "" "Axel tries to accelerate the download process by using multiple\n" "connections per file, and can also balance the load between different\n" @@ -10988,38 +11114,38 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/networking.scm:264 +#: gnu/packages/networking.scm:266 msgid "" "LibCamera is a complex camera support library for GNU+Linux,\n" "Android, and ChromeOS." msgstr "" -#: gnu/packages/networking.scm:334 +#: gnu/packages/networking.scm:336 msgid "" "LibNice is a library that implements the Interactive\n" "Connectivity Establishment (ICE) standard (RFC 5245 & RFC 8445). It provides a\n" "GLib-based library, libnice, as well as GStreamer elements to use it." msgstr "" -#: gnu/packages/networking.scm:393 +#: gnu/packages/networking.scm:395 msgid "" "RTMPdump is a toolkit for RTMP streams. All forms of RTMP are\n" "supported, including rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps://." msgstr "" -#: gnu/packages/networking.scm:422 +#: gnu/packages/networking.scm:424 msgid "" "Slurm is a network load monitor. It shows real-time traffic statistics\n" "from any network device in any of three ASCII graph formats." msgstr "" -#: gnu/packages/networking.scm:457 +#: gnu/packages/networking.scm:459 msgid "" "SRT is a transport technology that optimizes streaming\n" "performance across unpredictable networks, such as the Internet." msgstr "" -#: gnu/packages/networking.scm:500 +#: gnu/packages/networking.scm:502 msgid "" "The lksctp-tools project provides a user-space library for @acronym{SCTP,\n" "the Stream Control Transmission Protocol} (@file{libsctp}) and C language header\n" @@ -11028,13 +11154,13 @@ msgid "" "It also includes some SCTP-related helper utilities." msgstr "" -#: gnu/packages/networking.scm:541 +#: gnu/packages/networking.scm:543 msgid "" "@code{pysctp} implements the SCTP socket API. You need a\n" "SCTP-aware kernel (most are)." msgstr "" -#: gnu/packages/networking.scm:565 +#: gnu/packages/networking.scm:567 msgid "" "@command{knockd} is a port-knock daemon. It listens to all traffic on\n" "an ethernet or PPP interface, looking for special \"knock\" sequences of @dfn{port-hits}\n" @@ -11042,7 +11168,7 @@ msgid "" "at the link-layer level." msgstr "" -#: gnu/packages/networking.scm:605 +#: gnu/packages/networking.scm:607 msgid "" "NNG project is a rewrite of the scalability protocols library\n" "known as libnanomsg, and adds significant new capabilities, while retaining\n" @@ -11051,7 +11177,7 @@ msgid "" "publish/subscribe, RPC-style request/reply, or service discovery." msgstr "" -#: gnu/packages/networking.scm:648 +#: gnu/packages/networking.scm:650 msgid "" "Nanomsg is a socket library that provides several common\n" "communication patterns. It aims to make the networking layer fast, scalable,\n" @@ -11059,14 +11185,14 @@ msgid "" "systems with no further dependencies." msgstr "" -#: gnu/packages/networking.scm:758 +#: gnu/packages/networking.scm:760 msgid "" "Blueman is a Bluetooth management utility using the Bluez\n" "D-Bus backend. It is designed to be easy to use for most common Bluetooth\n" "tasks." msgstr "" -#: gnu/packages/networking.scm:783 +#: gnu/packages/networking.scm:785 msgid "" "GNU MAC Changer is a utility for viewing and changing MAC\n" "addresses of networking devices. New addresses may be set explicitly or\n" @@ -11074,14 +11200,14 @@ msgid "" "or, more generally, MAC addresses of the same category of hardware." msgstr "" -#: gnu/packages/networking.scm:831 +#: gnu/packages/networking.scm:833 msgid "" "Miredo is an implementation (client, relay, server) of the Teredo\n" "specification, which provides IPv6 Internet connectivity to IPv6 enabled hosts\n" "residing in IPv4-only networks, even when they are behind a NAT device." msgstr "" -#: gnu/packages/networking.scm:851 +#: gnu/packages/networking.scm:853 msgid "" "NDisc6 is a collection of tools for IPv6 networking diagnostics.\n" "It includes the following programs:\n" @@ -11095,7 +11221,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:904 +#: gnu/packages/networking.scm:906 msgid "" "@command{parprouted} is a daemon for transparent IP (Layer@tie{}3)\n" "proxy ARP bridging. Unlike standard bridging, proxy ARP bridging can bridge\n" @@ -11105,7 +11231,14 @@ msgid "" "useful for making transparent firewalls." msgstr "" -#: gnu/packages/networking.scm:931 +#: gnu/packages/networking.scm:945 +msgid "" +"@command{pproxy} is an asynchronuous proxy server implemented with\n" +"Python 3 @code{asyncio}. Among the supported protocols are HTTP, SOCKS\n" +"and SSH, and it can use both TCP and UDP as transport mechanisms." +msgstr "" + +#: gnu/packages/networking.scm:969 msgid "" "socat is a relay for bidirectional data transfer between two independent\n" "data channels---files, pipes, devices, sockets, etc. It can create\n" @@ -11118,7 +11251,7 @@ msgid "" "or server shell scripts with network connections." msgstr "" -#: gnu/packages/networking.scm:962 +#: gnu/packages/networking.scm:1000 msgid "" "mbuffer is a tool for buffering data streams with a large set of features:\n" "\n" @@ -11134,14 +11267,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1058 +#: gnu/packages/networking.scm:1096 msgid "" "With this package you can monitor and filter incoming requests for\n" "network services. It includes a library which may be used by daemons to\n" "transparently check connection attempts against an access control list." msgstr "" -#: gnu/packages/networking.scm:1081 +#: gnu/packages/networking.scm:1119 msgid "" "The 0MQ lightweight messaging kernel is a library which extends the\n" "standard socket interfaces with features traditionally provided by specialized\n" @@ -11151,46 +11284,46 @@ msgid "" "more." msgstr "" -#: gnu/packages/networking.scm:1110 +#: gnu/packages/networking.scm:1148 msgid "" "czmq provides bindings for the ØMQ core API that hides the differences\n" "between different versions of ØMQ." msgstr "" -#: gnu/packages/networking.scm:1141 +#: gnu/packages/networking.scm:1179 msgid "" "This package provides header-only C++ bindings for ØMQ. The header\n" "files contain direct mappings of the abstractions provided by the ØMQ C API." msgstr "" -#: gnu/packages/networking.scm:1175 +#: gnu/packages/networking.scm:1213 msgid "" "@code{libnatpmp} is a portable and asynchronous implementation of\n" "the Network Address Translation - Port Mapping Protocol (NAT-PMP)\n" "written in the C programming language." msgstr "" -#: gnu/packages/networking.scm:1213 +#: gnu/packages/networking.scm:1251 msgid "" "librdkafka is a C library implementation of the Apache Kafka protocol,\n" "containing both Producer and Consumer support." msgstr "" -#: gnu/packages/networking.scm:1232 +#: gnu/packages/networking.scm:1270 msgid "" "libndp contains a library which provides a wrapper for IPv6 Neighbor\n" "Discovery Protocol. It also provides a tool named ndptool for sending and\n" "receiving NDP messages." msgstr "" -#: gnu/packages/networking.scm:1256 +#: gnu/packages/networking.scm:1294 msgid "" "ethtool can be used to query and change settings such as speed,\n" "auto-negotiation and checksum offload on many network devices, especially\n" "Ethernet devices." msgstr "" -#: gnu/packages/networking.scm:1298 +#: gnu/packages/networking.scm:1336 msgid "" "IFStatus is a simple, easy-to-use program for displaying commonly\n" "needed/wanted real-time traffic statistics of multiple network\n" @@ -11198,7 +11331,7 @@ msgid "" "intended as a substitute for the PPPStatus and EthStatus projects." msgstr "" -#: gnu/packages/networking.scm:1347 +#: gnu/packages/networking.scm:1385 msgid "" "This package contains a variety of tools for dealing with network\n" "configuration, troubleshooting, or servers. Utilities included are:\n" @@ -11219,7 +11352,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1388 +#: gnu/packages/networking.scm:1426 msgid "" "Nload is a console application which monitors network traffic and\n" "bandwidth usage in real time. It visualizes the in- and outgoing traffic using\n" @@ -11227,7 +11360,7 @@ msgid "" "and min/max network usage." msgstr "" -#: gnu/packages/networking.scm:1432 +#: gnu/packages/networking.scm:1470 msgid "" "Iodine tunnels IPv4 data through a DNS server. This\n" "can be useful in different situations where internet access is firewalled, but\n" @@ -11235,7 +11368,7 @@ msgid "" "and up to 1 Mbit/s downstream." msgstr "" -#: gnu/packages/networking.scm:1473 +#: gnu/packages/networking.scm:1511 msgid "" "whois searches for an object in a @dfn{WHOIS} (RFC 3912) database.\n" "It is commonly used to look up the registered users or assignees of an Internet\n" @@ -11247,14 +11380,14 @@ msgid "" "of the same name." msgstr "" -#: gnu/packages/networking.scm:1553 +#: gnu/packages/networking.scm:1591 msgid "" "Wireshark is a network protocol analyzer, or @dfn{packet\n" "sniffer}, that lets you capture and interactively browse the contents of\n" "network frames." msgstr "" -#: gnu/packages/networking.scm:1574 +#: gnu/packages/networking.scm:1613 msgid "" "fping is a ping-like program which uses @acronym{ICMP, Internet Control\n" "Message Protocol} echo requests to determine if a target host is responding.\n" @@ -11266,26 +11399,26 @@ msgid "" "round-robin fashion." msgstr "" -#: gnu/packages/networking.scm:1625 +#: gnu/packages/networking.scm:1664 msgid "" "This package provides a command-line client (@command{gandi}) to buy,\n" "manage, and delete Internet resources from Gandi.net such as domain names,\n" "virtual machines, and certificates." msgstr "" -#: gnu/packages/networking.scm:1651 +#: gnu/packages/networking.scm:1690 msgid "" "The netns package provides a simple interface for\n" "handling network namespaces in Go." msgstr "" -#: gnu/packages/networking.scm:1678 +#: gnu/packages/networking.scm:1717 msgid "" "This library provides methods for using the stream control\n" "transmission protocol (SCTP) in a Go application." msgstr "" -#: gnu/packages/networking.scm:1707 +#: gnu/packages/networking.scm:1746 msgid "" "httping measures how long it takes to connect to a web server, send an\n" "HTTP(S) request, and receive the reply headers. It is somewhat similar to\n" @@ -11294,7 +11427,7 @@ msgid "" "application stack itself." msgstr "" -#: gnu/packages/networking.scm:1746 +#: gnu/packages/networking.scm:1785 msgid "" "@command{httpstat} is a tool to visualize statistics from the\n" "@command{curl} HTTP client. It acts as a wrapper for @command{curl} and\n" @@ -11302,20 +11435,20 @@ msgid "" "TCP connection, TLS handshake and so on) in the terminal." msgstr "" -#: gnu/packages/networking.scm:1788 +#: gnu/packages/networking.scm:1827 msgid "" "Squid is a caching proxy for the Web supporting HTTP, HTTPS,\n" "FTP, and more. It reduces bandwidth and improves response times by caching and\n" "reusing frequently-requested web pages." msgstr "" -#: gnu/packages/networking.scm:1822 +#: gnu/packages/networking.scm:1861 msgid "" "Bandwidth Monitor NG is a small and simple console based\n" "live network and disk I/O bandwidth monitor." msgstr "" -#: gnu/packages/networking.scm:1874 +#: gnu/packages/networking.scm:1913 msgid "" "Aircrack-ng is a complete suite of tools to assess WiFi network\n" "security. It focuses on different areas of WiFi security: monitoring,\n" @@ -11323,14 +11456,14 @@ msgid "" "allows for heavy scripting." msgstr "" -#: gnu/packages/networking.scm:1903 +#: gnu/packages/networking.scm:1942 msgid "" "Pixiewps implements the pixie-dust attack to brute\n" "force the Wi-Fi Protected Setup (WPS) PIN by exploiting the low or\n" "non-existing entropy of some access points." msgstr "" -#: gnu/packages/networking.scm:1949 +#: gnu/packages/networking.scm:1988 msgid "" "Reaver performs a brute force attack against an access\n" "point's Wi-Fi Protected Setup (WPS) PIN. Once the PIN is found, the WPA\n" @@ -11338,7 +11471,7 @@ msgid "" "reconfigured." msgstr "" -#: gnu/packages/networking.scm:1974 +#: gnu/packages/networking.scm:2013 msgid "" "Danga::Socket is an abstract base class for objects backed by a socket\n" "which provides the basic framework for event-driven asynchronous IO, designed\n" @@ -11346,7 +11479,7 @@ msgid "" "loop." msgstr "" -#: gnu/packages/networking.scm:2000 +#: gnu/packages/networking.scm:2039 msgid "" "This module provides several IP address validation subroutines that both\n" "validate and untaint their input. This includes both basic validation\n" @@ -11355,62 +11488,62 @@ msgid "" "private (reserved)." msgstr "" -#: gnu/packages/networking.scm:2028 +#: gnu/packages/networking.scm:2067 msgid "Net::DNS is the Perl Interface to the Domain Name System." msgstr "" -#: gnu/packages/networking.scm:2060 +#: gnu/packages/networking.scm:2099 msgid "" "Socket6 binds the IPv6 related part of the C socket header\n" "definitions and structure manipulators for Perl." msgstr "" -#: gnu/packages/networking.scm:2087 +#: gnu/packages/networking.scm:2126 msgid "" "Net::DNS::Resolver::Programmable is a programmable DNS resolver for\n" "offline emulation of DNS." msgstr "" -#: gnu/packages/networking.scm:2109 +#: gnu/packages/networking.scm:2148 msgid "" "Net::DNS::Resolver::Mock is a subclass of Net::DNS::Resolver, but returns\n" "static data from any provided DNS zone file instead of querying the network.\n" "It is intended primarily for use in testing." msgstr "" -#: gnu/packages/networking.scm:2144 +#: gnu/packages/networking.scm:2183 msgid "NetAddr::IP manages IPv4 and IPv6 addresses and subsets." msgstr "" -#: gnu/packages/networking.scm:2177 +#: gnu/packages/networking.scm:2216 msgid "Net::Patricia does IP address lookups quickly in Perl." msgstr "" -#: gnu/packages/networking.scm:2198 +#: gnu/packages/networking.scm:2237 msgid "Net::CIDR::Lite merges IPv4 or IPv6 CIDR addresses." msgstr "" -#: gnu/packages/networking.scm:2225 +#: gnu/packages/networking.scm:2264 msgid "" "IO::Socket::INET6 is an interface for AF_INET/AF_INET6 domain\n" "sockets in Perl." msgstr "" -#: gnu/packages/networking.scm:2258 +#: gnu/packages/networking.scm:2293 msgid "" "Libproxy handles the details of HTTP/HTTPS proxy\n" "configuration for applications across all scenarios. Applications using\n" "libproxy only have to specify which proxy to use." msgstr "" -#: gnu/packages/networking.scm:2292 +#: gnu/packages/networking.scm:2327 msgid "" "Proxychains-ng is a preloader which hooks calls to sockets\n" "in dynamically linked programs and redirects them through one or more SOCKS or\n" "HTTP proxies." msgstr "" -#: gnu/packages/networking.scm:2314 +#: gnu/packages/networking.scm:2349 msgid "" "ENet's purpose is to provide a relatively thin, simple and robust network\n" "communication layer on top of UDP. The primary feature it provides is optional\n" @@ -11420,7 +11553,7 @@ msgid "" "library remains flexible, portable, and easily embeddable." msgstr "" -#: gnu/packages/networking.scm:2378 +#: gnu/packages/networking.scm:2413 msgid "" "sslh is a network protocol demultiplexer. It acts like a switchboard,\n" "accepting connections from clients on one port and forwarding them to different\n" @@ -11432,7 +11565,7 @@ msgid "" "that block port 22." msgstr "" -#: gnu/packages/networking.scm:2408 +#: gnu/packages/networking.scm:2443 msgid "" "iPerf is a tool to measure achievable bandwidth on IP networks. It\n" "supports tuning of various parameters related to timing, buffers and\n" @@ -11440,7 +11573,7 @@ msgid "" "the bandwidth, loss, and other parameters." msgstr "" -#: gnu/packages/networking.scm:2445 +#: gnu/packages/networking.scm:2480 msgid "" "NetHogs is a small 'net top' tool for Linux. Instead of\n" "breaking the traffic down per protocol or per subnet, like most tools do, it\n" @@ -11452,7 +11585,7 @@ msgid "" "gone wild and are suddenly taking up your bandwidth." msgstr "" -#: gnu/packages/networking.scm:2481 +#: gnu/packages/networking.scm:2516 msgid "" "NZBGet is a binary newsgrabber, which downloads files from Usenet based\n" "on information given in @code{nzb} files. NZBGet can be used in standalone\n" @@ -11462,7 +11595,7 @@ msgid "" "procedure calls (RPCs)." msgstr "" -#: gnu/packages/networking.scm:2562 +#: gnu/packages/networking.scm:2597 msgid "" "Open vSwitch is a multilayer virtual switch. It is designed to enable\n" "massive network automation through programmatic extension, while still\n" @@ -11470,27 +11603,27 @@ msgid "" "IPFIX, RSPAN, CLI, LACP, 802.1ag)." msgstr "" -#: gnu/packages/networking.scm:2585 +#: gnu/packages/networking.scm:2620 msgid "" "The @code{IP} class allows a comfortable parsing and\n" "handling for most notations in use for IPv4 and IPv6 addresses and\n" "networks." msgstr "" -#: gnu/packages/networking.scm:2610 +#: gnu/packages/networking.scm:2645 msgid "" "Command line interface for testing internet bandwidth using\n" "speedtest.net." msgstr "" -#: gnu/packages/networking.scm:2630 +#: gnu/packages/networking.scm:2668 msgid "" "This is a tftp client derived from OpenBSD tftp with some extra options\n" "added and bugs fixed. The source includes readline support but it is not\n" "enabled due to license conflicts between the BSD advertising clause and the GPL." msgstr "" -#: gnu/packages/networking.scm:2682 +#: gnu/packages/networking.scm:2720 msgid "" "Spiped (pronounced \"ess-pipe-dee\") is a utility for creating\n" "symmetrically encrypted and authenticated pipes between socket addresses, so\n" @@ -11500,7 +11633,7 @@ msgid "" "does not use SSH and requires a pre-shared symmetric key." msgstr "" -#: gnu/packages/networking.scm:2708 +#: gnu/packages/networking.scm:2746 msgid "" "Quagga is a routing software suite, providing implementations\n" "of OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4 for Unix platforms.\n" @@ -11512,14 +11645,14 @@ msgid "" "updates to the zebra daemon." msgstr "" -#: gnu/packages/networking.scm:2758 +#: gnu/packages/networking.scm:2796 msgid "" "The THC IPv6 Toolkit provides command-line tools and a library\n" "for researching IPv6 implementations and deployments. It requires Linux 2.6 or\n" "newer and only works on Ethernet network interfaces." msgstr "" -#: gnu/packages/networking.scm:2783 +#: gnu/packages/networking.scm:2821 msgid "" "bmon is a monitoring and debugging tool to capture\n" "networking-related statistics and prepare them visually in a human-friendly\n" @@ -11527,7 +11660,7 @@ msgid "" "interface and a programmable text output for scripting." msgstr "" -#: gnu/packages/networking.scm:2821 +#: gnu/packages/networking.scm:2859 msgid "" "Libnet provides a fairly portable framework for network packet\n" "construction and injection. It features portable packet creation interfaces\n" @@ -11536,7 +11669,7 @@ msgid "" "can be whipped up with little effort." msgstr "" -#: gnu/packages/networking.scm:2847 +#: gnu/packages/networking.scm:2885 msgid "" "@acronym{mtr, My TraceRoute} combines the functionality of the\n" "@command{traceroute} and @command{ping} programs in a single network diagnostic\n" @@ -11546,7 +11679,7 @@ msgid "" "displays the results in real time." msgstr "" -#: gnu/packages/networking.scm:2900 +#: gnu/packages/networking.scm:2938 msgid "" "aMule is an eMule-like client for the eD2k and Kademlia peer-to-peer\n" "file sharing networks. It includes a graphical user interface (GUI), a daemon\n" @@ -11555,7 +11688,7 @@ msgid "" "remotely." msgstr "" -#: gnu/packages/networking.scm:2922 +#: gnu/packages/networking.scm:2960 msgid "" "Zyre provides reliable group messaging over local area\n" "networks using zeromq. It has these key characteristics:\n" @@ -11572,13 +11705,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:2956 +#: gnu/packages/networking.scm:2994 msgid "" "This library allows controlling basic functions in SocketCAN\n" "from user-space. It requires a kernel built with SocketCAN support." msgstr "" -#: gnu/packages/networking.scm:2985 +#: gnu/packages/networking.scm:3023 msgid "" "This package provides CAN utilities in the following areas:\n" "\n" @@ -11594,14 +11727,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3021 +#: gnu/packages/networking.scm:3059 msgid "" "Asio is a cross-platform C++ library for network and\n" "low-level I/O programming that provides developers with a consistent\n" "asynchronous model using a modern C++ approach." msgstr "" -#: gnu/packages/networking.scm:3056 +#: gnu/packages/networking.scm:3094 msgid "" "This package is a fast tunnel proxy that helps you bypass firewalls.\n" "\n" @@ -11615,7 +11748,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3134 +#: gnu/packages/networking.scm:3172 msgid "" "The @dfn{Simple Network Management Protocol} (SNMP) is a\n" "widely used protocol for monitoring the health and welfare of network\n" @@ -11624,20 +11757,20 @@ msgid "" "SNMP v3 using both IPv4 and IPv6." msgstr "" -#: gnu/packages/networking.scm:3181 +#: gnu/packages/networking.scm:3219 msgid "" "uBridge is a simple program to create user-land bridges\n" "between various technologies. Currently, bridging between UDP tunnels,\n" "Ethernet and TAP interfaces is supported. Packet capture is also supported." msgstr "" -#: gnu/packages/networking.scm:3213 +#: gnu/packages/networking.scm:3251 msgid "" "This package contains a small set of tools to capture and convert\n" "packets from wireless devices for use with hashcat or John the Ripper." msgstr "" -#: gnu/packages/networking.scm:3244 +#: gnu/packages/networking.scm:3282 msgid "" "Small tool to capture packets from WLAN devices. After capturing,\n" "upload the \"uncleaned\" cap to @url{https://wpa-sec.stanev.org/?submit} to\n" @@ -11647,7 +11780,7 @@ msgid "" "and check if the WLAN key or the master key was transmitted unencrypted." msgstr "" -#: gnu/packages/networking.scm:3271 +#: gnu/packages/networking.scm:3309 msgid "" "Dante is a SOCKS client and server implementation. It can\n" "be installed on a machine with access to an external TCP/IP network and will\n" @@ -11656,21 +11789,21 @@ msgid "" "never see any machines other than the one Dante is running on." msgstr "" -#: gnu/packages/networking.scm:3318 +#: gnu/packages/networking.scm:3356 msgid "" "Restbed is a comprehensive and consistent programming\n" "model for building applications that require seamless and secure\n" "communication over HTTP." msgstr "" -#: gnu/packages/networking.scm:3358 +#: gnu/packages/networking.scm:3396 msgid "" "RESTinio is a header-only C++14 library that gives you an embedded\n" "HTTP/Websocket server. It is based on standalone version of ASIO\n" "and targeted primarily for asynchronous processing of HTTP-requests." msgstr "" -#: gnu/packages/networking.scm:3446 +#: gnu/packages/networking.scm:3487 msgid "" "OpenDHT provides an easy to use distributed in-memory data\n" "store. Every node in the network can read and write values to the store.\n" @@ -11697,20 +11830,20 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/networking.scm:3490 +#: gnu/packages/networking.scm:3531 msgid "" "FRRouting (FRR) is an IP routing protocol suite which includes\n" "protocol daemons for BGP, IS-IS, LDP, OSPF, PIM, and RIP." msgstr "" -#: gnu/packages/networking.scm:3520 +#: gnu/packages/networking.scm:3561 msgid "" "BIRD is an Internet routing daemon with full support for all\n" "the major routing protocols. It allows redistribution between protocols with a\n" "powerful route filtering syntax and an easy-to-use configuration interface." msgstr "" -#: gnu/packages/networking.scm:3568 +#: gnu/packages/networking.scm:3609 msgid "" "iwd is a wireless daemon for Linux that aims to replace WPA\n" "Supplicant. It optimizes resource utilization by not depending on any external\n" @@ -11718,21 +11851,21 @@ msgid "" "maximum extent possible." msgstr "" -#: gnu/packages/networking.scm:3595 +#: gnu/packages/networking.scm:3636 msgid "" "libyang is a YANG data modelling language parser and toolkit\n" "written (and providing API) in C. Current implementation covers YANG 1.0 (RFC\n" "6020) as well as YANG 1.1 (RFC 7950)." msgstr "" -#: gnu/packages/networking.scm:3629 +#: gnu/packages/networking.scm:3670 msgid "" "This package provides a control tool for the\n" "B.A.T.M.A.N. mesh networking routing protocol provided by the Linux kernel\n" "module @code{batman-adv}, for Layer 2." msgstr "" -#: gnu/packages/networking.scm:3662 +#: gnu/packages/networking.scm:3703 msgid "" "PageKite implements a tunneled reverse proxy which makes it easy to make\n" "a service (such as an HTTP or SSH server) on localhost visible to the wider\n" @@ -11740,7 +11873,7 @@ msgid "" "service is available at @url{https://pagekite.net/}, or you can run your own." msgstr "" -#: gnu/packages/networking.scm:3706 +#: gnu/packages/networking.scm:3747 msgid "" "ipcalc takes an IP address and netmask and calculates the\n" "resulting broadcast, network, Cisco wildcard mask, and host range. By giving\n" @@ -11749,7 +11882,7 @@ msgid "" "easy-to-understand binary values." msgstr "" -#: gnu/packages/networking.scm:3745 +#: gnu/packages/networking.scm:3786 msgid "" "Tunctl is used to set up and maintain persistent TUN/TAP\n" "network interfaces, enabling user applications to simulate network traffic.\n" @@ -11757,13 +11890,13 @@ msgid "" "simulation, and a number of other applications." msgstr "" -#: gnu/packages/networking.scm:3765 +#: gnu/packages/networking.scm:3806 msgid "" "Tool to send a magic packet to wake another host on the\n" "network. This must be enabled on the target host, usually in the BIOS." msgstr "" -#: gnu/packages/networking.scm:3802 +#: gnu/packages/networking.scm:3843 msgid "" "This package provides a modern, but Linux-specific\n" "implementation of the @command{traceroute} command that can be used to follow\n" @@ -11774,7 +11907,7 @@ msgid "" "some traces for unprivileged users." msgstr "" -#: gnu/packages/networking.scm:3836 +#: gnu/packages/networking.scm:3877 msgid "" "VDE is a set of programs to provide virtual software-defined\n" "Ethernet network interface controllers across multiple virtual or\n" @@ -11783,7 +11916,7 @@ msgid "" "cables." msgstr "" -#: gnu/packages/networking.scm:3878 +#: gnu/packages/networking.scm:3919 msgid "" "HAProxy is a free, very fast and reliable solution offering\n" "high availability, load balancing, and proxying for TCP and HTTP-based\n" @@ -11792,7 +11925,7 @@ msgid "" "thousands of connections is clearly realistic with today's hardware." msgstr "" -#: gnu/packages/networking.scm:3924 +#: gnu/packages/networking.scm:3965 msgid "" "The @dfn{Link Layer Discovery Protocol} (LLDP) is an industry standard\n" "protocol designed to supplant proprietary Link-Layer protocols such as EDP or\n" @@ -11801,7 +11934,7 @@ msgid "" "an implementation of LLDP. It also supports some proprietary protocols." msgstr "" -#: gnu/packages/networking.scm:3966 +#: gnu/packages/networking.scm:4007 msgid "" "Hashcash is a proof-of-work algorithm, which has been used\n" "as a denial-of-service countermeasure technique in a number of systems.\n" @@ -11814,14 +11947,14 @@ msgid "" "stamps." msgstr "" -#: gnu/packages/networking.scm:3995 +#: gnu/packages/networking.scm:4036 msgid "" "This package provides the NBD (Network Block Devices)\n" "client and server. It allows you to use remote block devices over a TCP/IP\n" "network." msgstr "" -#: gnu/packages/networking.scm:4062 +#: gnu/packages/networking.scm:4103 msgid "" "Yggdrasil is an early-stage implementation of a fully end-to-end encrypted\n" "IPv6 network. It is lightweight, self-arranging, supported on multiple\n" @@ -11830,7 +11963,7 @@ msgid "" "IPv6 Internet connectivity - it also works over IPv4." msgstr "" -#: gnu/packages/networking.scm:4106 +#: gnu/packages/networking.scm:4147 msgid "" "Netdiscover is a network address discovery tool developed\n" "mainly for wireless networks without a @acronym{DHCP} server. It also works\n" @@ -11838,7 +11971,7 @@ msgid "" "@acronym{ARP} requests and sniff for replies." msgstr "" -#: gnu/packages/networking.scm:4138 +#: gnu/packages/networking.scm:4179 msgid "" "PuTTY is a graphical text terminal client. It supports\n" "@acronym{SSH, Secure SHell}, telnet, and raw socket connections with good\n" @@ -11953,14 +12086,14 @@ msgid "" "by using the poppler rendering engine." msgstr "" -#: gnu/packages/pdf.scm:654 +#: gnu/packages/pdf.scm:653 msgid "" "Zathura is a customizable document viewer. It provides a\n" "minimalistic interface and an interface that mainly focuses on keyboard\n" "interaction." msgstr "" -#: gnu/packages/pdf.scm:697 +#: gnu/packages/pdf.scm:696 msgid "" "PoDoFo is a C++ library and set of command-line tools to work with the\n" "PDF file format. It can parse PDF files and load them into memory, and makes\n" @@ -11969,7 +12102,7 @@ msgid "" "extracting content or merging files." msgstr "" -#: gnu/packages/pdf.scm:764 +#: gnu/packages/pdf.scm:763 msgid "" "MuPDF is a C library that implements a PDF and XPS parsing and\n" "rendering engine. It is used primarily to render pages into bitmaps,\n" @@ -11981,7 +12114,7 @@ msgid "" "@command{pdfclean}, and examining the file structure @command{pdfshow}." msgstr "" -#: gnu/packages/pdf.scm:811 +#: gnu/packages/pdf.scm:810 msgid "" "QPDF is a command-line program that does structural, content-preserving\n" "transformations on PDF files. It could have been called something like\n" @@ -11990,7 +12123,7 @@ msgid "" "program capable of converting PDF into other formats." msgstr "" -#: gnu/packages/pdf.scm:855 +#: gnu/packages/pdf.scm:854 msgid "" "@command{qpdfview} is a document viewer for PDF, PS and DJVU\n" "files. It uses the Qt toolkit and features persistent per-file settings,\n" @@ -11998,13 +12131,13 @@ msgid "" "SyncTeX support, and rudimentary support for annotations and forms." msgstr "" -#: gnu/packages/pdf.scm:881 +#: gnu/packages/pdf.scm:880 msgid "" "Xournal is an application for notetaking, sketching, keeping a journal\n" "using a stylus." msgstr "" -#: gnu/packages/pdf.scm:940 +#: gnu/packages/pdf.scm:939 msgid "" "Xournal++ is a hand note taking software written in\n" "C++ with the target of flexibility, functionality and speed. Stroke\n" @@ -12040,14 +12173,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1019 +#: gnu/packages/pdf.scm:1018 msgid "" "This is the ReportLab PDF Toolkit. It allows rapid creation\n" "of rich PDF documents, and also creation of charts in a variety of bitmap and\n" "vector formats." msgstr "" -#: gnu/packages/pdf.scm:1071 +#: gnu/packages/pdf.scm:1070 msgid "" "Impressive is a tool to display PDF files that provides visual effects\n" "such as smooth alpha-blended slide transitions. It provides additional tools\n" @@ -12055,26 +12188,26 @@ msgid "" "the PDF pages." msgstr "" -#: gnu/packages/pdf.scm:1094 +#: gnu/packages/pdf.scm:1093 msgid "" "img2pdf converts images to PDF via direct JPEG inclusion. That\n" "conversion is lossless: the image embedded in the PDF has the exact same color\n" "information for every pixel as the input." msgstr "" -#: gnu/packages/pdf.scm:1147 +#: gnu/packages/pdf.scm:1146 msgid "" "fbida contains a few applications for viewing and editing images on\n" "the framebuffer." msgstr "" -#: gnu/packages/pdf.scm:1171 +#: gnu/packages/pdf.scm:1170 msgid "" "@command{pdf2svg} is a simple command-line PDF to SVG\n" "converter using the Poppler and Cairo libraries." msgstr "" -#: gnu/packages/pdf.scm:1203 +#: gnu/packages/pdf.scm:1202 msgid "" "PyPDF2 is a pure Python PDF library capable of:\n" "\n" @@ -12094,7 +12227,7 @@ msgid "" "manage or manipulate PDFs." msgstr "" -#: gnu/packages/pdf.scm:1240 +#: gnu/packages/pdf.scm:1239 msgid "" "PyPDF2 is a pure Python PDF toolkit.\n" "\n" @@ -12102,7 +12235,7 @@ msgid "" "python-pypdf2 instead." msgstr "" -#: gnu/packages/pdf.scm:1284 +#: gnu/packages/pdf.scm:1283 msgid "" "PDF Arranger is a small application which allows one to merge or split\n" "PDF documents and rotate, crop and rearrange their pages using an interactive\n" @@ -12111,7 +12244,7 @@ msgid "" "PDF Arranger was formerly known as PDF-Shuffler." msgstr "" -#: gnu/packages/pdf.scm:1308 +#: gnu/packages/pdf.scm:1307 msgid "" "@command{pdfposter} can be used to create a large poster by\n" "building it from multiple pages and/or printing it on large media. It expects\n" @@ -12124,7 +12257,7 @@ msgid "" "PDF. Indeed @command{pdfposter} was inspired by @command{poster}." msgstr "" -#: gnu/packages/pdf.scm:1339 +#: gnu/packages/pdf.scm:1338 msgid "" "Pdfgrep searches in pdf files for strings matching a regular expression.\n" "Support some GNU grep options as file name output, page number output,\n" @@ -12132,7 +12265,7 @@ msgid "" "multiple files." msgstr "" -#: gnu/packages/pdf.scm:1387 +#: gnu/packages/pdf.scm:1386 msgid "" "pdfpc is a presentation viewer application which uses multi-monitor\n" "output to provide meta information to the speaker during the presentation. It\n" @@ -12142,13 +12275,13 @@ msgid "" "presentation. The input files processed by pdfpc are PDF documents." msgstr "" -#: gnu/packages/pdf.scm:1414 +#: gnu/packages/pdf.scm:1413 msgid "" "Paps reads a UTF-8 encoded file and generates a PostScript language\n" "rendering of the file through the Pango Cairo back end." msgstr "" -#: gnu/packages/pdf.scm:1444 +#: gnu/packages/pdf.scm:1443 msgid "" "Stapler is a pure Python alternative to PDFtk, a tool for\n" "manipulating PDF documents from the command line. It supports\n" @@ -12162,7 +12295,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1532 +#: gnu/packages/pdf.scm:1531 msgid "" "WeasyPrint helps web developers to create PDF documents. It\n" "turns simple HTML pages into gorgeous statistical reports, invoices, tickets,\n" @@ -15915,7 +16048,7 @@ msgid "" "and enhance them." msgstr "" -#: gnu/packages/photo.scm:601 +#: gnu/packages/photo.scm:603 msgid "" "Photoflare is a cross-platform image editor with an aim\n" "to balance between powerful features and a very friendly graphical user\n" @@ -15925,7 +16058,7 @@ msgid "" "such as Batch image processing." msgstr "" -#: gnu/packages/photo.scm:669 +#: gnu/packages/photo.scm:670 msgid "" "Entangle is an application which uses GTK and libgphoto2 to provide a\n" "graphical interface for tethered photography with digital cameras. It\n" @@ -15933,14 +16066,14 @@ msgid "" "off' shooting directly from the controlling computer." msgstr "" -#: gnu/packages/photo.scm:740 +#: gnu/packages/photo.scm:741 msgid "" "Hugin is an easy to use panoramic imaging toolchain with a graphical\n" "user interface. It can be used to assemble a mosaic of photographs into\n" "a complete panorama and stitch any series of overlapping pictures." msgstr "" -#: gnu/packages/photo.scm:794 +#: gnu/packages/photo.scm:795 msgid "" "RawTherapee is a raw image processing suite. It comprises a\n" "subset of image editing operations specifically aimed at non-destructive raw\n" @@ -15984,7 +16117,28 @@ msgid "" "`special effects' using the filter mechanism." msgstr "" -#: gnu/packages/scanner.scm:144 +#: gnu/packages/scanner.scm:83 +msgid "" +"This SANE backend lets you scan documents and images from scanners and\n" +"multi-function printers that speak eSCL (marketed as ``AirScan'') or\n" +"@acronym{WSD, Web Services for Devices} (or ``WS-Scan'').\n" +"\n" +"Both are vendor-neutral protocols that allow ``driverless'' scanning over IPv4\n" +"and IPv6 networks without the vendor-specific drivers that make up most of the\n" +"sane-backends collection. This is similar to how most contemporary printers\n" +"speak the universal @acronym{IPP, Internet Printing Protocol}.\n" +"\n" +"Only scanners that support eSCL will also work over USB. This requires a\n" +"suitable IPP-over-USB daemon like ipp-usb to be installed and configured.\n" +"\n" +"Any eSCL or WSD-capable scanner should just work. sane-airscan automatically\n" +"discovers and configures devices, including which protocol to use. It was\n" +"successfully tested with many devices from Brother, Canon, Dell, Kyocera,\n" +"Lexmark, Epson, HP, OKI, Panasonic, Pantum, Ricoh, Samsung, and Xerox, with both\n" +"WSD and eSCL." +msgstr "" + +#: gnu/packages/scanner.scm:200 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -15992,7 +16146,7 @@ msgid "" "package contains the library, but no drivers." msgstr "" -#: gnu/packages/scanner.scm:192 +#: gnu/packages/scanner.scm:248 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -16000,7 +16154,7 @@ msgid "" "package contains the library and drivers." msgstr "" -#: gnu/packages/scanner.scm:243 +#: gnu/packages/scanner.scm:299 msgid "" "Scanbd stands for scanner button daemon. It regularly polls\n" "scanners for pressed buttons, function knob changes, or other events such\n" @@ -16016,7 +16170,7 @@ msgid "" "provided the driver also exposes the buttons." msgstr "" -#: gnu/packages/scanner.scm:331 +#: gnu/packages/scanner.scm:387 msgid "" "XSane is a graphical interface for controlling a scanner and acquiring\n" "images from it. You can photocopy multi-page documents and save, fax, print,\n" @@ -16028,14 +16182,14 @@ msgid "" "back-end library, which supports almost all existing scanners." msgstr "" -#: gnu/packages/scheme.scm:225 +#: gnu/packages/scheme.scm:226 msgid "" "GNU/MIT Scheme is an implementation of the Scheme programming\n" "language. It provides an interpreter, a compiler and a debugger. It also\n" "features an integrated Emacs-like editor and a large runtime library." msgstr "" -#: gnu/packages/scheme.scm:324 +#: gnu/packages/scheme.scm:325 msgid "" "Bigloo is a Scheme implementation devoted to one goal: enabling Scheme\n" "based programming style where C(++) is usually required. Bigloo attempts to\n" @@ -16046,7 +16200,7 @@ msgid "" "and between Scheme and Java programs." msgstr "" -#: gnu/packages/scheme.scm:377 +#: gnu/packages/scheme.scm:378 msgid "" "HOP is a multi-tier programming language for the Web 2.0 and the\n" "so-called diffuse Web. It is designed for programming interactive web\n" @@ -16055,14 +16209,14 @@ msgid "" "mashups, office (web agendas, mail clients, ...), etc." msgstr "" -#: gnu/packages/scheme.scm:400 +#: gnu/packages/scheme.scm:401 msgid "" "Scheme 48 is an implementation of Scheme based on a byte-code\n" "interpreter and is designed to be used as a testbed for experiments in\n" "implementation techniques and as an expository tool." msgstr "" -#: gnu/packages/scheme.scm:430 +#: gnu/packages/scheme.scm:431 msgid "" "Gambit consists of two main programs: gsi, the Gambit Scheme\n" "interpreter, and gsc, the Gambit Scheme compiler. The interpreter contains\n" @@ -16073,7 +16227,7 @@ msgid "" "mixed." msgstr "" -#: gnu/packages/scheme.scm:464 +#: gnu/packages/scheme.scm:465 msgid "" "Chibi-Scheme is a very small library with no external dependencies\n" "intended for use as an extension and scripting language in C programs. In\n" @@ -16082,7 +16236,7 @@ msgid "" "threads." msgstr "" -#: gnu/packages/scheme.scm:512 +#: gnu/packages/scheme.scm:513 msgid "" "Structure and Interpretation of Computer Programs (SICP) is\n" "a textbook aiming to teach the principles of computer programming.\n" @@ -16092,19 +16246,19 @@ msgid "" "metalinguistic abstraction, recursion, interpreters, and modular programming." msgstr "" -#: gnu/packages/scheme.scm:556 +#: gnu/packages/scheme.scm:557 msgid "" "String pattern-matching library for scheme48 based on the SRE\n" "regular-expression notation." msgstr "" -#: gnu/packages/scheme.scm:589 +#: gnu/packages/scheme.scm:590 msgid "" "SLIB is a portable Scheme library providing compatibility and\n" "utility functions for all standard Scheme implementations." msgstr "" -#: gnu/packages/scheme.scm:643 +#: gnu/packages/scheme.scm:644 msgid "" "GNU SCM is an implementation of Scheme. This\n" "implementation includes Hobbit, a Scheme-to-C compiler, which can\n" @@ -16112,7 +16266,7 @@ msgid "" "linked with a SCM executable." msgstr "" -#: gnu/packages/scheme.scm:702 +#: gnu/packages/scheme.scm:703 msgid "" "TinyScheme is a light-weight Scheme interpreter that implements as large a\n" "subset of R5RS as was possible without getting very large and complicated.\n" @@ -16128,7 +16282,7 @@ msgid "" "small program, it is easy to comprehend, get to grips with, and use." msgstr "" -#: gnu/packages/scheme.scm:783 +#: gnu/packages/scheme.scm:784 msgid "" "Stalin is an aggressively optimizing whole-program compiler\n" "for Scheme that does polyvariant interprocedural flow analysis,\n" @@ -16140,7 +16294,7 @@ msgid "" "generation." msgstr "" -#: gnu/packages/scheme.scm:819 +#: gnu/packages/scheme.scm:820 msgid "" "Scheme 9 from Empty Space (S9fES) is a mature, portable, and\n" "comprehensible public-domain interpreter for R4RS Scheme offering:\n" @@ -16155,14 +16309,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/scheme.scm:877 +#: gnu/packages/scheme.scm:878 msgid "" "@code{femtolisp} is a scheme-like lisp implementation with a\n" "simple, elegant Scheme dialect. It is a lisp-1 with lexical scope.\n" "The core is 12 builtin special forms and 33 builtin functions." msgstr "" -#: gnu/packages/scheme.scm:940 +#: gnu/packages/scheme.scm:941 msgid "" "Gauche is a R7RS Scheme scripting engine aiming at being a\n" "handy tool that helps programmers and system administrators to write small to\n" @@ -16172,7 +16326,7 @@ msgid "" "and list gauche extension packages." msgstr "" -#: gnu/packages/scheme.scm:1038 +#: gnu/packages/scheme.scm:1039 msgid "" "Gerbil is an opinionated dialect of Scheme designed for Systems\n" "Programming, with a state of the art macro and module system on top of the Gambit\n" @@ -16309,7 +16463,7 @@ msgid "" "server and an IRC server." msgstr "" -#: gnu/packages/shells.scm:107 +#: gnu/packages/shells.scm:108 msgid "" "dash is a POSIX-compliant @command{/bin/sh} implementation that aims to be\n" "as small as possible, often without sacrificing speed. It is faster than the\n" @@ -16317,7 +16471,7 @@ msgid "" "direct descendant of NetBSD's Almquist Shell (@command{ash})." msgstr "" -#: gnu/packages/shells.scm:255 +#: gnu/packages/shells.scm:256 msgid "" "Fish (friendly interactive shell) is a shell focused on interactive use,\n" "discoverability, and friendliness. Fish has very user-friendly and powerful\n" @@ -16329,20 +16483,20 @@ msgid "" "and syntax highlighting." msgstr "" -#: gnu/packages/shells.scm:308 +#: gnu/packages/shells.scm:309 msgid "" "@code{fish-foreign-env} wraps bash script execution in a way\n" "that environment variables that are exported or modified get imported back\n" "into fish." msgstr "" -#: gnu/packages/shells.scm:344 +#: gnu/packages/shells.scm:345 msgid "" "This is a reimplementation by Byron Rakitzis of the Plan 9 shell. It\n" "has a small feature set similar to a traditional Bourne shell." msgstr "" -#: gnu/packages/shells.scm:377 +#: gnu/packages/shells.scm:378 msgid "" "Es is an extensible shell. The language was derived from the Plan 9\n" "shell, rc, and was influenced by functional programming languages, such as\n" @@ -16351,7 +16505,7 @@ msgid "" "written by Paul Haahr and Byron Rakitzis." msgstr "" -#: gnu/packages/shells.scm:455 +#: gnu/packages/shells.scm:456 msgid "" "Tcsh is an enhanced, but completely compatible version of the Berkeley\n" "UNIX C shell (csh). It is a command language interpreter usable both as an\n" @@ -16360,7 +16514,7 @@ msgid "" "history mechanism, job control and a C-like syntax." msgstr "" -#: gnu/packages/shells.scm:522 +#: gnu/packages/shells.scm:523 msgid "" "The Z shell (zsh) is a Unix shell that can be used\n" "as an interactive login shell and as a powerful command interpreter\n" @@ -16369,7 +16523,7 @@ msgid "" "ksh, and tcsh." msgstr "" -#: gnu/packages/shells.scm:572 +#: gnu/packages/shells.scm:573 msgid "" "Xonsh is a Python-ish, BASHwards-looking shell language and command\n" "prompt. The language is a superset of Python 3.4+ with additional shell\n" @@ -16378,7 +16532,7 @@ msgid "" "use of experts and novices alike." msgstr "" -#: gnu/packages/shells.scm:616 +#: gnu/packages/shells.scm:617 msgid "" "Scsh is a Unix shell embedded in Scheme. Scsh has two main\n" "components: a process notation for running programs and setting up pipelines\n" @@ -16386,7 +16540,7 @@ msgid "" "operating system." msgstr "" -#: gnu/packages/shells.scm:658 +#: gnu/packages/shells.scm:659 msgid "" "Linenoise is a minimal, zero-config, readline replacement.\n" "Its features include:\n" @@ -16400,7 +16554,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/shells.scm:722 +#: gnu/packages/shells.scm:723 msgid "" "S is a new shell that aims to be extremely simple. It does not\n" "implement the POSIX shell standard.\n" @@ -16414,19 +16568,19 @@ msgid "" "A @code{andglob} program is also provided along with s." msgstr "" -#: gnu/packages/shells.scm:753 +#: gnu/packages/shells.scm:754 msgid "" "Oksh is a port of the OpenBSD Korn Shell.\n" "The OpenBSD Korn Shell is a cleaned up and enhanced ksh." msgstr "" -#: gnu/packages/shells.scm:783 +#: gnu/packages/shells.scm:784 msgid "" "loksh is a Linux port of OpenBSD's @command{ksh}. It is a small,\n" "interactive POSIX shell targeted at resource-constrained systems." msgstr "" -#: gnu/packages/shells.scm:821 +#: gnu/packages/shells.scm:822 msgid "" "mksh is an actively developed free implementation of the\n" "Korn Shell programming language and a successor to the Public Domain Korn\n" @@ -16458,7 +16612,7 @@ msgid "" "files and text." msgstr "" -#: gnu/packages/shells.scm:1006 +#: gnu/packages/shells.scm:1005 msgid "" "Nu draws inspiration from projects like PowerShell, functional\n" "programming languages, and modern CLI tools. Rather than thinking of files\n" @@ -16469,7 +16623,7 @@ msgid "" "of commands called a ``pipeline''." msgstr "" -#: gnu/packages/shells.scm:1037 +#: gnu/packages/shells.scm:1036 msgid "" "This package is a library for ANSI terminal colors and styles (bold,\n" "underline)." @@ -16751,19 +16905,19 @@ msgid "" "your calls and messages." msgstr "" -#: gnu/packages/telephony.scm:874 +#: gnu/packages/telephony.scm:869 msgid "" "PJProject provides an implementation of the Session\n" "Initiation Protocol (SIP) and a multimedia framework." msgstr "" -#: gnu/packages/telephony.scm:916 +#: gnu/packages/telephony.scm:911 msgid "" "A collection of libraries and header files for implementing\n" "telephony functionality into custom Telegram clients." msgstr "" -#: gnu/packages/tex.scm:532 +#: gnu/packages/tex.scm:543 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -16773,20 +16927,20 @@ msgid "" "This package contains the binaries." msgstr "" -#: gnu/packages/tex.scm:571 +#: gnu/packages/tex.scm:582 msgid "" "kpathsea is a library, whose purpose is to return a filename\n" "from a list of user-specified directories similar to how shells look up\n" "executables. It is maintained as a part of TeX Live." msgstr "" -#: gnu/packages/tex.scm:591 +#: gnu/packages/tex.scm:602 msgid "" "This package provides the docstrip utility to strip\n" "documentation from TeX files. It is part of the LaTeX base." msgstr "" -#: gnu/packages/tex.scm:606 +#: gnu/packages/tex.scm:617 msgid "" "This bundle provides generic access to Unicode Consortium\n" "data for TeX use. It contains a set of text files provided by the Unicode\n" @@ -16799,7 +16953,7 @@ msgid "" "out to date by @code{unicode-letters.tex}." msgstr "" -#: gnu/packages/tex.scm:638 +#: gnu/packages/tex.scm:649 msgid "" "This package includes Knuth's original @file{hyphen.tex},\n" "@file{zerohyph.tex} to disable hyphenation, @file{language.us} which starts\n" @@ -16807,7 +16961,7 @@ msgid "" "default versions of those), etc." msgstr "" -#: gnu/packages/tex.scm:659 +#: gnu/packages/tex.scm:670 msgid "" "This package provides files needed for converting DVI files\n" "to PostScript." @@ -16815,7 +16969,7 @@ msgstr "" "Denne pakke tilbyder filer krævet for at konvertere DVI-filer\n" "til PostScript." -#: gnu/packages/tex.scm:673 +#: gnu/packages/tex.scm:684 msgid "" "This bundle provides a collection of model \".ini\" files\n" "for creating TeX formats. These files are commonly used to introduced\n" @@ -16824,13 +16978,13 @@ msgid "" "to adapt the plain e-TeX source file to work with XeTeX and LuaTeX." msgstr "" -#: gnu/packages/tex.scm:736 +#: gnu/packages/tex.scm:747 msgid "" "This package provides the Metafont base files needed to\n" "build fonts using the Metafont system." msgstr "" -#: gnu/packages/tex.scm:821 +#: gnu/packages/tex.scm:832 msgid "" "This package provides TeX macros for converting Adobe Font\n" "Metric files to TeX metric and virtual font format. Fontinst helps mainly\n" @@ -16840,7 +16994,7 @@ msgid "" "typesetting in these fonts." msgstr "" -#: gnu/packages/tex.scm:842 +#: gnu/packages/tex.scm:853 msgid "" "This is Fontname, a naming scheme for (the base part of)\n" "external TeX font filenames. This makes at most eight-character names\n" @@ -16848,7 +17002,7 @@ msgid "" "documents." msgstr "" -#: gnu/packages/tex.scm:915 +#: gnu/packages/tex.scm:926 msgid "" "This package provides the Computer Modern fonts by Donald\n" "Knuth. The Computer Modern font family is a large collection of text,\n" @@ -16856,7 +17010,7 @@ msgid "" "8A." msgstr "" -#: gnu/packages/tex.scm:946 +#: gnu/packages/tex.scm:957 msgid "" "The CM-Super family provides Adobe Type 1 fonts that replace\n" "the T1/TS1-encoded Computer Modern (EC/TC), T1/TS1-encoded Concrete,\n" @@ -16866,7 +17020,7 @@ msgid "" "originals." msgstr "" -#: gnu/packages/tex.scm:979 +#: gnu/packages/tex.scm:990 #, fuzzy msgid "" "This package provides a drop-in replacements for the Courier\n" @@ -16875,7 +17029,7 @@ msgstr "" "Denne pakke tilbyder en direkte erstatning for Times-skrifttypen fra\n" "Adobes grundlæggende sæt." -#: gnu/packages/tex.scm:1002 +#: gnu/packages/tex.scm:1013 msgid "" "The TeX-GYRE bundle consist of multiple font families:\n" "@itemize @bullet\n" @@ -16895,21 +17049,21 @@ msgid "" "support (for use with a variety of encodings) is provided." msgstr "" -#: gnu/packages/tex.scm:1041 +#: gnu/packages/tex.scm:1052 msgid "" "The Latin Modern fonts are derived from the famous Computer\n" "Modern fonts designed by Donald E. Knuth and described in Volume E of his\n" "Computers & Typesetting series." msgstr "" -#: gnu/packages/tex.scm:1106 +#: gnu/packages/tex.scm:1117 msgid "" "This is a collection of core TeX and METAFONT macro files\n" "from Donald Knuth, including the plain format, plain base, and the MF logo\n" "fonts." msgstr "" -#: gnu/packages/tex.scm:1181 +#: gnu/packages/tex.scm:1192 msgid "" "This is a collection of fonts for use with standard LaTeX\n" "packages and classes. It includes invisible fonts (for use with the slides\n" @@ -16917,14 +17071,14 @@ msgid "" "symbol fonts." msgstr "" -#: gnu/packages/tex.scm:1253 +#: gnu/packages/tex.scm:1264 msgid "" "This package provides LaTeX and font definition files to access the\n" "Knuthian mflogo fonts described in The Metafontbook and to typeset Metafont\n" "logos in LaTeX documents." msgstr "" -#: gnu/packages/tex.scm:1274 +#: gnu/packages/tex.scm:1285 msgid "" "These fonts were created in METAFONT by Knuth, for his own publications.\n" "At some stage, the letters P and S were added, so that the METAPOST logo could\n" @@ -16933,7 +17087,7 @@ msgid "" "Taco Hoekwater." msgstr "" -#: gnu/packages/tex.scm:1402 +#: gnu/packages/tex.scm:1415 gnu/packages/tex.scm:1579 msgid "" "This package provides an extended set of fonts for use in mathematics,\n" "including: extra mathematical symbols; blackboard bold letters (uppercase\n" @@ -16947,7 +17101,7 @@ msgid "" "details can be found in the documentation." msgstr "" -#: gnu/packages/tex.scm:1432 +#: gnu/packages/tex.scm:1609 msgid "" "Mkpattern is a general purpose program for the generation of\n" "hyphenation patterns, with definition of letter sets and template-like\n" @@ -16955,7 +17109,7 @@ msgid "" "output encodings, and features generation of clean UTF-8 patterns." msgstr "" -#: gnu/packages/tex.scm:1489 +#: gnu/packages/tex.scm:1666 msgid "" "This package provides an extended version of TeX (which is capable of\n" "running as if it were TeX unmodified). E-TeX has been specified by the LaTeX\n" @@ -16964,14 +17118,23 @@ msgid "" "incorporates the e-TeX extensions." msgstr "" -#: gnu/packages/tex.scm:1507 +#: gnu/packages/tex.scm:1684 msgid "" "This package contains files used to build the Plain TeX format, as\n" "described in the TeXbook, together with various supporting files (some also\n" "discussed in the book)." msgstr "" -#: gnu/packages/tex.scm:1533 +#: gnu/packages/tex.scm:1702 +msgid "" +"The package facilitates wrapping text to a specific character width, breaking\n" +"lines by words rather than, as done by TeX, by characters. The primary use for\n" +"these facilities is to aid the generation of messages sent to the log file or\n" +"console output to display messages to the user. Package authors may also find\n" +"this useful when writing out arbitary text to an external file." +msgstr "" + +#: gnu/packages/tex.scm:1730 #, fuzzy msgid "" "This package provides a drop-in replacements for the Helvetica\n" @@ -16980,7 +17143,7 @@ msgstr "" "Denne pakke tilbyder en direkte erstatning for Palatino-skrifttypen fra\n" "Adobes grundlæggende sæt." -#: gnu/packages/tex.scm:1546 +#: gnu/packages/tex.scm:1743 #, fuzzy msgid "" "The package provides hyphenation patterns for the Afrikaans\n" @@ -16989,7 +17152,7 @@ msgstr "" "Denne pakke tilbyder funktioner til arbejde med mappe- og\n" "filnavne." -#: gnu/packages/tex.scm:1560 +#: gnu/packages/tex.scm:1757 #, fuzzy msgid "" "The package provides hyphenation patterns for ancient\n" @@ -16998,7 +17161,7 @@ msgstr "" "Denne pakke tilbyder en e-postfortolker skrevet i ren \n" "Guile." -#: gnu/packages/tex.scm:1573 +#: gnu/packages/tex.scm:1770 #, fuzzy msgid "" "The package provides hyphenation patterns for the Armenian\n" @@ -17007,7 +17170,7 @@ msgstr "" "Denne pakke tilbyder funktioner til arbejde med mappe- og\n" "filnavne." -#: gnu/packages/tex.scm:1587 +#: gnu/packages/tex.scm:1784 #, fuzzy msgid "" "The package provides hyphenation patterns for the Basque\n" @@ -17016,7 +17179,7 @@ msgstr "" "Denne pakke tilbyder en e-postfortolker skrevet i ren \n" "Guile." -#: gnu/packages/tex.scm:1601 +#: gnu/packages/tex.scm:1798 #, fuzzy msgid "" "The package provides hyphenation patterns for the Belarusian\n" @@ -17025,25 +17188,25 @@ msgstr "" "Denne pakke tilbyder funktioner til arbejde med mappe- og\n" "filnavne." -#: gnu/packages/tex.scm:1613 +#: gnu/packages/tex.scm:1810 msgid "" "The package provides hyphenation patterns for the Bulgarian\n" "language in T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1627 +#: gnu/packages/tex.scm:1824 msgid "" "The package provides hyphenation patterns for Catalan in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1640 +#: gnu/packages/tex.scm:1837 msgid "" "The package provides hyphenation patterns for unaccented\n" "Chinese pinyin T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1652 +#: gnu/packages/tex.scm:1849 #, fuzzy msgid "" "The package provides hyphenation patterns for Church\n" @@ -17052,31 +17215,31 @@ msgstr "" "Denne pakke tilbyder en ASCII-oversættelse for eucJP-\n" "kodningen." -#: gnu/packages/tex.scm:1665 +#: gnu/packages/tex.scm:1862 msgid "" "The package provides hyphenation patterns for Coptic in\n" "UTF-8 encoding as well as in ASCII-based encoding for 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:1678 +#: gnu/packages/tex.scm:1875 msgid "" "The package provides hyphenation patterns for Croatian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1690 +#: gnu/packages/tex.scm:1887 msgid "" "The package provides hyphenation patterns for Czech in T1/EC\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1702 +#: gnu/packages/tex.scm:1899 msgid "" "The package provides hyphenation patterns for Danish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1715 +#: gnu/packages/tex.scm:1912 #, fuzzy msgid "" "The package provides hyphenation patterns for Dutch in T1/EC\n" @@ -17085,25 +17248,25 @@ msgstr "" "Denne pakke tilbyder en ASCII-oversættelse for eucJP-\n" "kodningen." -#: gnu/packages/tex.scm:1728 +#: gnu/packages/tex.scm:1925 msgid "" "The package provides additional hyphenation patterns for\n" "American and British English in ASCII encoding." msgstr "" -#: gnu/packages/tex.scm:1742 +#: gnu/packages/tex.scm:1939 msgid "" "The package provides hyphenation patterns for Esperanto ISO\n" "Latin 3 and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1754 +#: gnu/packages/tex.scm:1951 msgid "" "The package provides hyphenation patterns for Estonian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1768 +#: gnu/packages/tex.scm:1965 msgid "" "The package provides hyphenation patterns for languages\n" "written using the Ethiopic script for Unicode engines. They are not supposed\n" @@ -17111,13 +17274,13 @@ msgid "" "be replaced by files tailored to individual languages." msgstr "" -#: gnu/packages/tex.scm:1782 +#: gnu/packages/tex.scm:1979 msgid "" "The package provides hyphenation patterns for Finnish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1794 +#: gnu/packages/tex.scm:1991 #, fuzzy msgid "" "The package provides hyphenation patterns for Finnish for\n" @@ -17126,13 +17289,13 @@ msgstr "" "Denne pakke tilbyder en ASCII-oversættelse for eucJP-\n" "kodningen." -#: gnu/packages/tex.scm:1806 +#: gnu/packages/tex.scm:2003 msgid "" "The package provides hyphenation patterns for French in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1818 +#: gnu/packages/tex.scm:2015 #, fuzzy msgid "" "The package provides hyphenation patterns for Friulan in\n" @@ -17141,58 +17304,58 @@ msgstr "" "Denne pakke tilbyder en ASCII-oversættelse for eucJP-\n" "kodningen." -#: gnu/packages/tex.scm:1831 +#: gnu/packages/tex.scm:2028 msgid "" "The package provides hyphenation patterns for Galician in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1843 +#: gnu/packages/tex.scm:2040 msgid "" "The package provides hyphenation patterns for Georgian in\n" "T8M, T8K, and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1861 +#: gnu/packages/tex.scm:2058 msgid "" "This package provides hyphenation patterns for German in\n" "T1/EC and UTF-8 encodings, for traditional and reformed spelling, including\n" "Swiss German." msgstr "" -#: gnu/packages/tex.scm:1880 +#: gnu/packages/tex.scm:2077 msgid "" "This package provides hyphenation patterns for Modern Greek\n" "in monotonic and polytonic spelling in LGR and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1894 +#: gnu/packages/tex.scm:2091 msgid "" "This package provides hyphenation patterns for Hungarian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1907 +#: gnu/packages/tex.scm:2104 msgid "" "This package provides hyphenation patterns for Icelandic in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1930 +#: gnu/packages/tex.scm:2127 msgid "" "This package provides hyphenation patterns for Assamese,\n" "Bengali, Gujarati, Hindi, Kannada, Malayalam, Marathi, Oriya, Panjabi, Tamil\n" "and Telugu for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:1943 +#: gnu/packages/tex.scm:2140 msgid "" "This package provides hyphenation patterns for\n" "Indonesian (Bahasa Indonesia) in ASCII encoding. They are probably also\n" "usable for Malay (Bahasa Melayu)." msgstr "" -#: gnu/packages/tex.scm:1956 +#: gnu/packages/tex.scm:2153 #, fuzzy msgid "" "This package provides hyphenation patterns for Interlingua\n" @@ -17201,13 +17364,13 @@ msgstr "" "Denne pakke tilbyder en ASCII-oversættelse for eucJP-\n" "kodningen." -#: gnu/packages/tex.scm:1968 +#: gnu/packages/tex.scm:2165 msgid "" "This package provides hyphenation patterns for\n" "Irish (Gaeilge) in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1981 +#: gnu/packages/tex.scm:2178 msgid "" "This package provides hyphenation patterns for Italian in\n" "ASCII encoding. Compliant with the Recommendation UNI 6461 on hyphenation\n" @@ -17215,14 +17378,14 @@ msgid "" "UNI)." msgstr "" -#: gnu/packages/tex.scm:1995 +#: gnu/packages/tex.scm:2192 msgid "" "This package provides hyphenation patterns for\n" "Kurmanji (Northern Kurdish) as spoken in Turkey and by the Kurdish diaspora in\n" "Europe, in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2011 +#: gnu/packages/tex.scm:2208 msgid "" "This package provides hyphenation patterns for Latin in\n" "T1/EC and UTF-8 encodings, mainly in modern spelling (u when u is needed and v\n" @@ -17236,7 +17399,7 @@ msgid "" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2032 +#: gnu/packages/tex.scm:2229 #, fuzzy msgid "" "This package provides hyphenation patterns for Latvian in\n" @@ -17245,7 +17408,7 @@ msgstr "" "Denne pakke tilbyder en ASCII-oversættelse for eucJP-\n" "kodningen." -#: gnu/packages/tex.scm:2045 +#: gnu/packages/tex.scm:2242 #, fuzzy msgid "" "This package provides hyphenation patterns for Lithuanian in\n" @@ -17254,26 +17417,26 @@ msgstr "" "Denne pakke tilbyder en ASCII-oversættelse for eucJP-\n" "kodningen." -#: gnu/packages/tex.scm:2060 +#: gnu/packages/tex.scm:2257 #, fuzzy -msgid "This package provides hypenation patterns for Macedonian." +msgid "This package provides hyphenation patterns for Macedonian." msgstr "" "Denne pakke tilbyder en e-postfortolker skrevet i ren \n" "Guile." -#: gnu/packages/tex.scm:2073 +#: gnu/packages/tex.scm:2270 msgid "" "This package provides hyphenation patterns for Mongolian in\n" "T2A, LMC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2088 +#: gnu/packages/tex.scm:2285 msgid "" "This package provides hyphenation patterns for Norwegian\n" "Bokmal and Nynorsk in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2102 +#: gnu/packages/tex.scm:2299 msgid "" "This package provides hyphenation patterns for Occitan in\n" "T1/EC and UTF-8 encodings. They are supposed to be valid for all the Occitan\n" @@ -17282,7 +17445,7 @@ msgid "" "Alps encompassing the southern half of the French pentagon." msgstr "" -#: gnu/packages/tex.scm:2117 +#: gnu/packages/tex.scm:2314 #, fuzzy msgid "" "This package provides hyphenation patterns for Panjabi in\n" @@ -17291,14 +17454,14 @@ msgstr "" "Denne pakke tilbyder en ASCII-oversættelse for eucJP-\n" "kodningen." -#: gnu/packages/tex.scm:2130 +#: gnu/packages/tex.scm:2327 msgid "" "This package provides hyphenation patterns for Piedmontese\n" "in ASCII encoding. Compliant with 'Gramatica dla lengua piemonteisa' by\n" "Camillo Brero." msgstr "" -#: gnu/packages/tex.scm:2143 +#: gnu/packages/tex.scm:2340 #, fuzzy msgid "" "This package provides hyphenation patterns for Polish in QX\n" @@ -17307,7 +17470,7 @@ msgstr "" "Denne pakke tilbyder en ASCII-oversættelse for eucJP-\n" "kodningen." -#: gnu/packages/tex.scm:2156 +#: gnu/packages/tex.scm:2353 #, fuzzy msgid "" "This package provides hyphenation patterns for Portuguese in\n" @@ -17316,57 +17479,57 @@ msgstr "" "Denne pakke tilbyder en ASCII-oversættelse for eucJP-\n" "kodningen." -#: gnu/packages/tex.scm:2168 +#: gnu/packages/tex.scm:2365 msgid "" "This package provides hyphenation patterns for Romanian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2181 +#: gnu/packages/tex.scm:2378 msgid "" "This package provides hyphenation patterns for Romansh in\n" "ASCII encodings. They are supposed to comply with the rules indicated by the\n" "Lia Rumantscha (Romansh language society)." msgstr "" -#: gnu/packages/tex.scm:2194 +#: gnu/packages/tex.scm:2391 msgid "" "This package provides hyphenation patterns for Russian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2207 +#: gnu/packages/tex.scm:2404 msgid "" "This package provides hyphenation patterns for Sanskrit and\n" "Prakrit in longdesc transliteration, and in Devanagari, Bengali, Kannada,\n" "Malayalam longdesc and Telugu scripts for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:2224 +#: gnu/packages/tex.scm:2421 msgid "" "This package provides hyphenation patterns for Serbian in\n" "T1/EC, T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2237 +#: gnu/packages/tex.scm:2434 msgid "" "This package provides hyphenation patterns for Slovak in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2249 +#: gnu/packages/tex.scm:2446 msgid "" "This package provides hyphenation patterns for Slovenian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2265 +#: gnu/packages/tex.scm:2462 msgid "" "The package provides hyphenation patterns for Spanish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2277 +#: gnu/packages/tex.scm:2474 #, fuzzy msgid "" "This package provides hyphenation patterns for Swedish in\n" @@ -17375,7 +17538,7 @@ msgstr "" "Denne pakke tilbyder en ASCII-oversættelse for eucJP-\n" "kodningen." -#: gnu/packages/tex.scm:2289 +#: gnu/packages/tex.scm:2486 #, fuzzy msgid "" "This package provides hyphenation patterns for Thai in LTH\n" @@ -17384,7 +17547,7 @@ msgstr "" "Denne pakke tilbyder en ASCII-oversættelse for eucJP-\n" "kodningen." -#: gnu/packages/tex.scm:2302 +#: gnu/packages/tex.scm:2499 msgid "" "The package provides hyphenation patterns for Turkish in\n" "T1/EC and UTF-8 encodings. The patterns for Turkish were first produced for\n" @@ -17394,25 +17557,25 @@ msgid "" "compatibility with 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:2319 +#: gnu/packages/tex.scm:2516 msgid "" "The package provides hyphenation patterns for Turkmen in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2331 +#: gnu/packages/tex.scm:2528 msgid "" "This package provides hyphenation patterns for Ukrainian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2344 +#: gnu/packages/tex.scm:2541 msgid "" "This package provides hyphenation patterns for Upper Sorbian\n" "in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2356 +#: gnu/packages/tex.scm:2553 #, fuzzy msgid "" "This package provides hyphenation patterns for Welsh in\n" @@ -17421,7 +17584,7 @@ msgstr "" "Denne pakke tilbyder en ASCII-oversættelse for eucJP-\n" "kodningen." -#: gnu/packages/tex.scm:2477 +#: gnu/packages/tex.scm:2674 msgid "" "Modern native UTF-8 engines such as XeTeX and LuaTeX need\n" "hyphenation patterns in UTF-8 format, whereas older systems require\n" @@ -17434,7 +17597,7 @@ msgid "" "converters, will completely supplant the older patterns." msgstr "" -#: gnu/packages/tex.scm:2521 +#: gnu/packages/tex.scm:2718 msgid "" "The package provides experimental hyphenation patterns for\n" "the German language, covering both traditional and reformed orthography. The\n" @@ -17442,21 +17605,29 @@ msgid "" "bundle." msgstr "" -#: gnu/packages/tex.scm:2542 +#: gnu/packages/tex.scm:2739 msgid "" "The package provides a range of hyphenation patterns for\n" "Ukrainian, depending on the encoding of the output font including the standard\n" "T2A." msgstr "" -#: gnu/packages/tex.scm:2577 +#: gnu/packages/tex.scm:2774 msgid "" "The package provides a collection of Russian hyphenation\n" "patterns supporting a number of Cyrillic font encodings, including T2,\n" "UCY (Omega Unicode Cyrillic), LCY, LWN (OT2), and koi8-r." msgstr "" -#: gnu/packages/tex.scm:2620 +#: gnu/packages/tex.scm:2792 +msgid "" +"This package deals with input encodings. It provides a wider range of input\n" +"encodings using standard mappings, than does inputenc; it also covers nearly all\n" +"slots. In this way, it serves as more uptodate replacement for package\n" +"inputenc." +msgstr "" + +#: gnu/packages/tex.scm:2853 msgid "" "Kpathsea is a library and utility programs which provide\n" "path searching facilities for TeX file types, including the self-locating\n" @@ -17464,13 +17635,27 @@ msgid "" "mechanism. This package provides supporting files." msgstr "" -#: gnu/packages/tex.scm:2636 +#: gnu/packages/tex.scm:2876 +msgid "" +"The family contains text fonts in roman, sans-serif and monospaced\n" +"shapes, with true small caps and old-style numbers; the package offers full\n" +"support of the textcomp package. The mathematics fonts include all the AMS\n" +"fonts, in both normal and bold weights. Each of the font types is available\n" +"in two main versions: default and light. Each version is available in four\n" +"variants: default; oldstyle numbers; oldstyle numbers with old ligatures such\n" +"as ct and st, and long-tailed capital Q; and veryoldstyle with long s. Other\n" +"variants include small caps as default or large small caps, and for\n" +"mathematics both upright and slanted shapes for Greek letters, as well as\n" +"default and narrow versions of multiple integrals." +msgstr "" + +#: gnu/packages/tex.scm:2898 msgid "" "The package provides configuration files for LaTeX-related\n" "formats." msgstr "" -#: gnu/packages/tex.scm:2867 +#: gnu/packages/tex.scm:3127 msgid "" "This bundle comprises the source of LaTeX itself, together with several\n" "packages which are considered \"part of the kernel\". This bundle, together\n" @@ -17478,7 +17663,7 @@ msgid "" "contain." msgstr "" -#: gnu/packages/tex.scm:2885 +#: gnu/packages/tex.scm:3145 msgid "" "This LaTeX packages provides two hooks for @code{\\end@{document@}}\n" "that are executed after the hook of @code{\\AtEndDocument}:\n" @@ -17488,7 +17673,7 @@ msgid "" "of the @file{.aux} file." msgstr "" -#: gnu/packages/tex.scm:2905 +#: gnu/packages/tex.scm:3165 #, fuzzy #| msgid "This package provides tools for manipulating ext2/ext3/ext4 file systems." msgid "" @@ -17496,7 +17681,7 @@ msgid "" "@file{.aux} files." msgstr "Denne pakke tilbyder værktøjer til manipulering af ext2/ext3/ext4-filsystemer." -#: gnu/packages/tex.scm:2921 +#: gnu/packages/tex.scm:3181 msgid "" "The package adds support for EPS files in the @code{graphicx} package\n" "when running under pdfTeX. If an EPS graphic is detected, the package\n" @@ -17504,7 +17689,7 @@ msgid "" "@command{epstopdf}." msgstr "" -#: gnu/packages/tex.scm:2943 +#: gnu/packages/tex.scm:3203 msgid "" "LaTeX2e's @code{filecontents} and @code{filecontents*} environments\n" "enable a LaTeX source file to generate external files as it runs through\n" @@ -17515,7 +17700,7 @@ msgid "" "@code{filecontents*} anywhere." msgstr "" -#: gnu/packages/tex.scm:2964 +#: gnu/packages/tex.scm:3224 msgid "" "This package provides the original (and now obsolescent) graphics\n" "inclusion macros for use with dvips, still widely used by Plain TeX users (in\n" @@ -17525,7 +17710,7 @@ msgid "" "users, via its Plain TeX version.)" msgstr "" -#: gnu/packages/tex.scm:2986 +#: gnu/packages/tex.scm:3246 msgid "" "This package provides tools for the flexible handling of verbatim text\n" "including: verbatim commands in footnotes; a variety of verbatim environments\n" @@ -17535,7 +17720,7 @@ msgid "" "verbatim source)." msgstr "" -#: gnu/packages/tex.scm:3008 +#: gnu/packages/tex.scm:3268 msgid "" "This bundle is a combined distribution consisting of @file{dvips.def},\n" "@file{pdftex.def}, @file{luatex.def}, @file{xetex.def}, @file{dvipdfmx.def},\n" @@ -17543,13 +17728,19 @@ msgid "" "packages." msgstr "" -#: gnu/packages/tex.scm:3026 +#: gnu/packages/tex.scm:3286 msgid "" "This bundle includes @file{color.cfg} and @file{graphics.cfg} files that\n" "set default \"driver\" options for the color and graphics packages." msgstr "" -#: gnu/packages/tex.scm:3048 +#: gnu/packages/tex.scm:3303 +msgid "" +"The package provides Greek LICR macro definitions and encoding definition files\n" +"for Greek text font encodings for use with fontenc." +msgstr "" + +#: gnu/packages/tex.scm:3325 msgid "" "This is a collection of LaTeX packages for producing color, including\n" "graphics (e.g. PostScript) files, and rotation and scaling of text in LaTeX\n" @@ -17557,13 +17748,13 @@ msgid "" "keyval, and lscape." msgstr "" -#: gnu/packages/tex.scm:3066 +#: gnu/packages/tex.scm:3343 msgid "" "This package provides the code for the @code{color} option that is\n" "used by @code{hyperref} and @code{bookmark}." msgstr "" -#: gnu/packages/tex.scm:3098 +#: gnu/packages/tex.scm:3375 msgid "" "The package starts from the basic facilities of the colorcolor package,\n" "and provides easy driver-independent access to several kinds of color tints,\n" @@ -17574,7 +17765,7 @@ msgid "" "tables." msgstr "" -#: gnu/packages/tex.scm:3171 +#: gnu/packages/tex.scm:3448 msgid "" "The package provides an implementation of a parser for\n" "documents matching the XML 1.0 and XML Namespace Recommendations. Element and\n" @@ -17582,7 +17773,7 @@ msgid "" "XML, using UTF-8 or a suitable 8-bit encoding." msgstr "" -#: gnu/packages/tex.scm:3222 +#: gnu/packages/tex.scm:3499 msgid "" "The @code{hyperref} package is used to handle cross-referencing commands\n" "in LaTeX to produce hypertext links in the document. The package provides\n" @@ -17594,20 +17785,20 @@ msgid "" "@code{nameref} packages, which make use of the facilities of @code{hyperref}." msgstr "" -#: gnu/packages/tex.scm:3262 +#: gnu/packages/tex.scm:3539 msgid "" "The bundle comprises various LaTeX packages, providing among others:\n" "better accessibility support for PDF files; extensible chemists reaction\n" "arrows; record information about document class(es) used; and many more." msgstr "" -#: gnu/packages/tex.scm:3285 +#: gnu/packages/tex.scm:3562 msgid "" "This package provides additional rerun warnings if some auxiliary\n" "files have changed. It is based on MD5 checksum, provided by pdfTeX." msgstr "" -#: gnu/packages/tex.scm:3319 +#: gnu/packages/tex.scm:3596 msgid "" "This package is a collection of (variously) simple tools provided as\n" "part of the LaTeX required tools distribution, comprising the following\n" @@ -17617,7 +17808,7 @@ msgid "" "xr, and xspace." msgstr "" -#: gnu/packages/tex.scm:3338 +#: gnu/packages/tex.scm:3615 msgid "" "The command @code{\\url} is a form of verbatim command that\n" "allows linebreaks at certain characters or combinations of characters, accepts\n" @@ -17629,14 +17820,14 @@ msgid "" "of file names." msgstr "" -#: gnu/packages/tex.scm:3364 +#: gnu/packages/tex.scm:3641 msgid "" "This package provides font maps that were originally part of\n" "the now obsolete teTeX distributions but are still used at the core of the TeX\n" "Live distribution." msgstr "" -#: gnu/packages/tex.scm:3391 +#: gnu/packages/tex.scm:3668 msgid "" "The l3kernel bundle provides an implementation of the LaTeX3\n" "programmers’ interface, as a set of packages that run under LaTeX 2e. The\n" @@ -17645,7 +17836,7 @@ msgid "" "that the LaTeX3 conventions can be used with regular LaTeX 2e packages." msgstr "" -#: gnu/packages/tex.scm:3420 +#: gnu/packages/tex.scm:3697 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" @@ -17654,7 +17845,7 @@ msgid "" "an independent schedule." msgstr "" -#: gnu/packages/tex.scm:3484 +#: gnu/packages/tex.scm:3761 msgid "" "This bundle holds prototype implementations of concepts for a LaTeX\n" "designer interface, to be used with the experimental LaTeX kernel as\n" @@ -17671,14 +17862,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:3511 +#: gnu/packages/tex.scm:3788 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" "here are defined for the dvips engine only." msgstr "" -#: gnu/packages/tex.scm:3539 +#: gnu/packages/tex.scm:3816 msgid "" "Fontspec is a package for XeLaTeX and LuaLaTeX. It provides an\n" "automatic and unified interface to feature-rich AAT and OpenType fonts through\n" @@ -17686,7 +17877,7 @@ msgid "" "the l3kernel and xparse bundles from the LaTeX 3 development team." msgstr "" -#: gnu/packages/tex.scm:3569 +#: gnu/packages/tex.scm:3846 msgid "" "The original grffile package extended the file name processing of the\n" "@code{graphics} package to support a larger range of file names. The base\n" @@ -17694,13 +17885,13 @@ msgid "" "is a stub that just loads @code{graphicx}." msgstr "" -#: gnu/packages/tex.scm:3610 +#: gnu/packages/tex.scm:3887 msgid "" "This package provides @code{\\StringEncodingConvert} for converting a\n" "string between different encodings. Both LaTeX and plain-TeX are supported." msgstr "" -#: gnu/packages/tex.scm:3653 +#: gnu/packages/tex.scm:3930 msgid "" "The l3build module is designed to support the development of\n" "high-quality LaTeX code by providing: a unit testing system, automated\n" @@ -17709,14 +17900,20 @@ msgid "" "@code{.tex} file which provides the testing environment." msgstr "" -#: gnu/packages/tex.scm:3690 +#: gnu/packages/tex.scm:3953 msgid "" "Lualibs is a collection of Lua modules useful for general programming.\n" "The bundle is based on Lua modules shipped with ConTeXt, and made available in\n" "this bundle for use independent of ConTeXt." msgstr "" -#: gnu/packages/tex.scm:3718 +#: gnu/packages/tex.scm:3972 +msgid "" +"This package provides a Lua module for processing application arguments\n" +"in the same way as BSD/GNU @code{getopt_long(3)} functions do." +msgstr "" + +#: gnu/packages/tex.scm:3999 msgid "" "Luaotfload is an adaptation of the ConTeXt font loading system for the\n" "Plain and LaTeX formats. It allows OpenType fonts to be loaded with font\n" @@ -17725,11 +17922,7 @@ msgid "" "loading fonts by their proper names instead of file names." msgstr "" -#: gnu/packages/tex.scm:3790 -msgid "This package is necessary to use LaTeX with the LuaTeX engine." -msgstr "" - -#: gnu/packages/tex.scm:3809 +#: gnu/packages/tex.scm:4025 msgid "" "This is the principal package in the AMS-LaTeX distribution. It adapts\n" "for use in LaTeX most of the mathematical features found in AMS-TeX; it is\n" @@ -17744,7 +17937,7 @@ msgid "" "definitions." msgstr "" -#: gnu/packages/tex.scm:3843 +#: gnu/packages/tex.scm:4059 msgid "" "This bundle contains three AMS classes: @code{amsartamsart} (for writing\n" "articles for the AMS), @code{amsbookamsbook} (for books) and\n" @@ -17753,7 +17946,7 @@ msgid "" "distribution." msgstr "" -#: gnu/packages/tex.scm:3890 +#: gnu/packages/tex.scm:4106 msgid "" "The package manages culturally-determined typographical (and other)\n" "rules, and hyphenation patterns for a wide range of languages. A document may\n" @@ -17764,7 +17957,7 @@ msgid "" "polyglossia package rather than Babel." msgstr "" -#: gnu/packages/tex.scm:3917 +#: gnu/packages/tex.scm:4133 msgid "" "This package provides the language definition file for support of\n" "English in @code{babel}. Care is taken to select British hyphenation patterns\n" @@ -17772,16 +17965,14 @@ msgid "" "for Canadian and USA text." msgstr "" -#: gnu/packages/tex.scm:3939 -#, fuzzy +#: gnu/packages/tex.scm:4173 msgid "" -"This package provides support for the French language for the\n" -"babel multilingual system." +"The package, formerly known as frenchb, establishes French conventions\n" +"in a document (or a subset of the conventions, if French is not the main\n" +"language of the document)." msgstr "" -"Denne pakke tilbyder værktøjer til at inspicere underrutiner\n" -"i Perl." -#: gnu/packages/tex.scm:3959 +#: gnu/packages/tex.scm:4196 msgid "" "This package provides the language definition file for support of German\n" "in @code{babel}. It provides all the necessary macros, definitions and\n" @@ -17790,14 +17981,14 @@ msgid "" "Swiss varieties of German." msgstr "" -#: gnu/packages/tex.scm:3986 +#: gnu/packages/tex.scm:4223 msgid "" "This package provides the language definition file for\n" "support of Swedish in @code{babel}. It provides all the necessary macros,\n" "definitions and settings to typeset Swedish documents." msgstr "" -#: gnu/packages/tex.scm:4008 +#: gnu/packages/tex.scm:4245 msgid "" "This bundle of macros files provides macro support (including font\n" "encoding macros) for the use of Cyrillic characters in fonts encoded under the\n" @@ -17805,7 +17996,7 @@ msgid "" "language that is written in a Cyrillic alphabet." msgstr "" -#: gnu/packages/tex.scm:4126 +#: gnu/packages/tex.scm:4363 msgid "" "The PSNFSS collection includes a set of files that provide a complete\n" "working setup of the LaTeX font selection scheme (NFSS2) for use with common\n" @@ -17820,20 +18011,20 @@ msgid "" "part of the LaTeX required set of packages." msgstr "" -#: gnu/packages/tex.scm:4177 gnu/packages/tex.scm:4269 +#: gnu/packages/tex.scm:4414 gnu/packages/tex.scm:4506 msgid "" "This is a very limited subset of the TeX Live distribution.\n" "It includes little more than the required set of LaTeX packages." msgstr "" -#: gnu/packages/tex.scm:4248 +#: gnu/packages/tex.scm:4485 msgid "" "This package contains the fonts map configuration file\n" "generated for the base TeX Live packages as well as, optionally, user-provided\n" "ones." msgstr "" -#: gnu/packages/tex.scm:4288 +#: gnu/packages/tex.scm:4525 msgid "" "These fonts are considered the \"ultimate answer\" to IPA\n" "typesetting. The encoding of these 8-bit fonts has been registered as LaTeX\n" @@ -17842,7 +18033,7 @@ msgid "" "TS3 fonts." msgstr "" -#: gnu/packages/tex.scm:4311 +#: gnu/packages/tex.scm:4548 msgid "" "Amsrefs is a LaTeX package for bibliographies that provides an archival\n" "data format similar to the format of BibTeX database files, but adapted to\n" @@ -17850,7 +18041,7 @@ msgid "" "conjunction with BibTeX or as a replacement for BibTeX." msgstr "" -#: gnu/packages/tex.scm:4340 +#: gnu/packages/tex.scm:4577 msgid "" "This package aims to provide a one-stop solution to requirements for\n" "footnotes. It offers: Multiple footnote apparatus superior to that of\n" @@ -17864,7 +18055,7 @@ msgid "" "@code{suffix} packages." msgstr "" -#: gnu/packages/tex.scm:4368 +#: gnu/packages/tex.scm:4605 msgid "" "The package provides the commands @code{\\blindtext} and\n" "@code{\\Blindtext} for creating \"blind\" text useful in testing new classes\n" @@ -17875,7 +18066,7 @@ msgid "" "ipsum\" text, see the @code{lipsum} package)." msgstr "" -#: gnu/packages/tex.scm:4407 +#: gnu/packages/tex.scm:4644 msgid "" "This package implements a document layout for writing letters according\n" "to the rules of DIN (Deutsches Institut für Normung, German standardisation\n" @@ -17887,7 +18078,7 @@ msgid "" "package." msgstr "" -#: gnu/packages/tex.scm:4433 +#: gnu/packages/tex.scm:4670 msgid "" "This package provides a means to add a textual, light grey watermark on\n" "every page or on the first page of a document. Typical usage may consist in\n" @@ -17897,7 +18088,7 @@ msgid "" "on everypage." msgstr "" -#: gnu/packages/tex.scm:4457 +#: gnu/packages/tex.scm:4694 msgid "" "This package provides the @code{\\collect@@body} command (as in\n" "@code{amsmath}), as well as a @code{\\long} version @code{\\Collect@@Body},\n" @@ -17905,7 +18096,7 @@ msgid "" "define a new author interface to creating new environments." msgstr "" -#: gnu/packages/tex.scm:4479 +#: gnu/packages/tex.scm:4716 msgid "" "LaTeX users sometimes need to ensure that two or more blocks of text\n" "occupy the same amount of horizontal space on the page. To that end, the\n" @@ -17919,7 +18110,7 @@ msgid "" "also provided." msgstr "" -#: gnu/packages/tex.scm:4504 +#: gnu/packages/tex.scm:4741 msgid "" "This package gives the user complete control of how the entries of\n" "the table of contents should be constituted from the name, number, and page\n" @@ -17939,7 +18130,7 @@ msgid "" "table of contents." msgstr "" -#: gnu/packages/tex.scm:4546 +#: gnu/packages/tex.scm:4783 msgid "" "The package provides additional features for the LaTeX\n" "@code{description} environment, including adjustable left margin. The package\n" @@ -17948,7 +18139,7 @@ msgid "" "@code{enumerate} lists, and numbered lists remain in sequence)." msgstr "" -#: gnu/packages/tex.scm:4566 +#: gnu/packages/tex.scm:4803 msgid "" "This package provides macros to read and compare the modification dates\n" "of files. The files may be @code{.tex} files, images or other files (as long\n" @@ -17960,14 +18151,14 @@ msgid "" "but non-expandable ones." msgstr "" -#: gnu/packages/tex.scm:4589 +#: gnu/packages/tex.scm:4826 msgid "" "The @code{hanging} package facilitates the typesetting of hanging\n" "paragraphs. The package also enables typesetting with hanging punctuation,\n" "by making punctuation characters active." msgstr "" -#: gnu/packages/tex.scm:4612 +#: gnu/packages/tex.scm:4849 msgid "" "This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX support for\n" "the Fira Sans family of fonts designed by Erik Spiekermann and Ralph du\n" @@ -17975,7 +18166,7 @@ msgid "" "corresponding italics: light, regular, medium, bold, ..." msgstr "" -#: gnu/packages/tex.scm:4635 +#: gnu/packages/tex.scm:4872 msgid "" "This package uses the (La)TeX extension @code{-shell-escape} to\n" "establish whether the document is being processed on a Windows or on a\n" @@ -17986,7 +18177,7 @@ msgid "" "classes of systems." msgstr "" -#: gnu/packages/tex.scm:4660 +#: gnu/packages/tex.scm:4897 msgid "" "This bundle provides a package that implements both author-year and\n" "numbered references, as well as much detailed of support for other\n" @@ -17996,20 +18187,20 @@ msgid "" "designed from the start to be compatible with @code{natbib}." msgstr "" -#: gnu/packages/tex.scm:4679 +#: gnu/packages/tex.scm:4916 msgid "" "This package provides a friendly interface for defining the meaning of\n" "Unicode characters. The document should be processed by (pdf)LaTeX with the\n" "Unicode option of @code{inputenc} or @code{inputenx}, or by XeLaTeX/LuaLaTeX." msgstr "" -#: gnu/packages/tex.scm:4699 +#: gnu/packages/tex.scm:4936 msgid "" "This package makes a number of utility functions from pdfTeX\n" "available for luaTeX by reimplementing them using Lua." msgstr "" -#: gnu/packages/tex.scm:4719 +#: gnu/packages/tex.scm:4956 msgid "" "This package allows LaTeX constructions (equations, picture\n" "environments, etc.) to be precisely superimposed over Encapsulated PostScript\n" @@ -18020,7 +18211,7 @@ msgid "" "rotated." msgstr "" -#: gnu/packages/tex.scm:4751 +#: gnu/packages/tex.scm:4988 msgid "" "This is a package for processing PostScript graphics with @code{psfrag}\n" "labels within pdfLaTeX documents. Every graphic is compiled individually,\n" @@ -18028,7 +18219,7 @@ msgid "" "re-processing." msgstr "" -#: gnu/packages/tex.scm:4771 +#: gnu/packages/tex.scm:5008 msgid "" "This package provides the @code{\\setcounterref} and\n" "@code{\\addtocounterref} commands which use the section (or other) number\n" @@ -18037,7 +18228,7 @@ msgid "" "corresponding thing with the page reference of the label." msgstr "" -#: gnu/packages/tex.scm:4791 +#: gnu/packages/tex.scm:5028 msgid "" "This package provides a class that produces overhead\n" "slides (transparencies), with many facilities. Seminar is not nowadays\n" @@ -18046,14 +18237,14 @@ msgid "" "21st-century presentation styles." msgstr "" -#: gnu/packages/tex.scm:4812 +#: gnu/packages/tex.scm:5049 msgid "" "The package provides a versatile way to stack objects vertically in a\n" "variety of customizable ways. A number of useful macros are provided, all\n" "of which make use of the @code{stackengine} core." msgstr "" -#: gnu/packages/tex.scm:4828 +#: gnu/packages/tex.scm:5065 msgid "" "This package provides control over the typography of the\n" "@dfn{Table of Contents}, @dfn{List of Figures} and @dfn{List of Tables},\n" @@ -18061,7 +18252,7 @@ msgid "" "be changed." msgstr "" -#: gnu/packages/tex.scm:4862 +#: gnu/packages/tex.scm:5099 msgid "" "This very short package allows you to expandably remove spaces around a\n" "token list (commands are provided to remove spaces before, spaces after, or\n" @@ -18069,13 +18260,28 @@ msgid "" "space-stripped macros." msgstr "" -#: gnu/packages/tex.scm:4897 +#: gnu/packages/tex.scm:5115 +#, fuzzy +#| msgid "This package provides a Python interface to the Redis key-value store." +msgid "This package provides a math interface to the Rsfs fonts." +msgstr "Denne pakke tilbyder en Pythongrænseflade til Redis' nøgle-værdi-lager." + +#: gnu/packages/tex.scm:5152 msgid "" "This package defines a command @code{\\captionof} for putting a caption\n" "to something that's not a float." msgstr "" -#: gnu/packages/tex.scm:4913 +#: gnu/packages/tex.scm:5170 +msgid "" +"Many of David Carlisle's more substantial packages stand on their own,\n" +"or as part of the LaTeX latex-tools set; this set contains: making dotless\n" +"@emph{j} characters for fonts that don't have them; a method for combining the\n" +"capabilities of longtable and tabularx; an environment for including plain TeX\n" +"in LaTeX documents; a jiffy to create slashed characters for physicists." +msgstr "" + +#: gnu/packages/tex.scm:5189 msgid "" "You can hyperlink DOI numbers to doi.org. However, some publishers have\n" "elected to use nasty characters in their DOI numbering scheme (@code{<},\n" @@ -18085,7 +18291,7 @@ msgid "" "hyperlink to the target of the DOI." msgstr "" -#: gnu/packages/tex.scm:4936 +#: gnu/packages/tex.scm:5212 msgid "" "This package is a toolbox of programming facilities geared primarily\n" "towards LaTeX class and package authors. It provides LaTeX frontends to some\n" @@ -18096,7 +18302,7 @@ msgid "" "of the LaTeX kernel." msgstr "" -#: gnu/packages/tex.scm:4976 +#: gnu/packages/tex.scm:5252 msgid "" "This package provides seven predefined chapter heading styles. Each\n" "style can be modified using a set of simple commands. Optionally one can\n" @@ -18104,7 +18310,7 @@ msgid "" "headings." msgstr "" -#: gnu/packages/tex.scm:5011 +#: gnu/packages/tex.scm:5287 msgid "" "The package creates three environments: @code{framed}, which puts an\n" "ordinary frame box around the region, @code{shaded}, which shades the region,\n" @@ -18115,7 +18321,7 @@ msgid "" "@code{\\MakeFramed} to make your own framed-style environments." msgstr "" -#: gnu/packages/tex.scm:5045 +#: gnu/packages/tex.scm:5321 msgid "" "This package is designed for formatting formless letters in German; it\n" "can also be used for English (by those who can read the documentation). There\n" @@ -18123,13 +18329,13 @@ msgid "" "\"old\" and a \"new\" version of g-brief." msgstr "" -#: gnu/packages/tex.scm:5067 +#: gnu/packages/tex.scm:5343 msgid "" "The package deals with connections in two-dimensional style, optionally\n" "in colour." msgstr "" -#: gnu/packages/tex.scm:5087 +#: gnu/packages/tex.scm:5363 msgid "" "The package allows citations in the German style, which is considered by\n" "many to be particularly reader-friendly. The citation provides a small amount\n" @@ -18139,7 +18345,7 @@ msgid "" "BibLaTeX, and is considered experimental." msgstr "" -#: gnu/packages/tex.scm:5113 +#: gnu/packages/tex.scm:5389 msgid "" "This package provides an easy and flexible user interface to customize\n" "page layout, implementing auto-centering and auto-balancing mechanisms so that\n" @@ -18150,7 +18356,7 @@ msgid "" "ability to communicate the paper size it's set up to the output." msgstr "" -#: gnu/packages/tex.scm:5138 +#: gnu/packages/tex.scm:5414 msgid "" "This collection of tools includes: @code{atsupport} for short commands\n" "starting with @code{@@}, macros to sanitize the OT1 encoding of the\n" @@ -18160,13 +18366,13 @@ msgid "" "array environments; verbatim handling; and syntax diagrams." msgstr "" -#: gnu/packages/tex.scm:5162 +#: gnu/packages/tex.scm:5438 msgid "" "This package provides a complete Babel replacement for users of LuaLaTeX\n" "and XeLaTeX; it relies on the @code{fontspec} package, version 2.0 at least." msgstr "" -#: gnu/packages/tex.scm:5182 +#: gnu/packages/tex.scm:5458 msgid "" "This package was a predecessor of @code{longtable}; the newer\n" "package (designed on quite different principles) is easier to use and more\n" @@ -18174,7 +18380,7 @@ msgid "" "situations where longtable has problems." msgstr "" -#: gnu/packages/tex.scm:5217 +#: gnu/packages/tex.scm:5493 msgid "" "Texinfo is the preferred format for documentation in the GNU project;\n" "the format may be used to produce online or printed output from a single\n" @@ -18183,7 +18389,23 @@ msgid "" "hypertext linkages in some cases)." msgstr "" -#: gnu/packages/tex.scm:5240 +#: gnu/packages/tex.scm:5513 +msgid "" +"The textcase package offers commands @code{\\MakeTextUppercase} and\n" +"@code{\\MakeTextLowercase} are similar to the standard @code{\\MakeUppercase}\n" +"and @code{\\MakeLowercase}, but they do not change the case of any sections of\n" +"mathematics, or the arguments of @code{\\cite}, @code{\\label} and\n" +"@code{\\ref} commands within the argument. A further command\n" +"@code{\\NoCaseChange} does nothing but suppress case change within its\n" +"argument, so to force uppercase of a section including an environment, one\n" +"might say:\n" +"\n" +"@example\n" +"\\MakeTextUppercase{...\\NoCaseChange{\\begin{foo}} ...\\NoCaseChange{\\end{foo}}...}\n" +"@end example\n" +msgstr "" + +#: gnu/packages/tex.scm:5543 msgid "" "Typewriter-style fonts are best for program listings, but Computer\n" "Modern Typewriter prints @code{`} and @code{'} as bent opening and closing\n" @@ -18197,14 +18419,14 @@ msgid "" "does not affect @code{\\tt}, @code{\\texttt}, etc." msgstr "" -#: gnu/packages/tex.scm:5281 +#: gnu/packages/tex.scm:5584 msgid "" "This is a simple package to set up document margins. This package is\n" "considered obsolete; alternatives are the @code{typearea} package from the\n" "@code{koma-script} bundle, or the @code{geometry} package." msgstr "" -#: gnu/packages/tex.scm:5302 +#: gnu/packages/tex.scm:5605 msgid "" "The appendix package provides various ways of formatting the titles of\n" "appendices. Also (sub)appendices environments are provided that can be used,\n" @@ -18213,14 +18435,14 @@ msgid "" "command." msgstr "" -#: gnu/packages/tex.scm:5321 +#: gnu/packages/tex.scm:5624 msgid "" "This package implements a new bookmark (outline) organization for the\n" "@code{hyperref} package. Bookmark properties such as style and color. Other\n" "action types are available (URI, GoToR, Named)." msgstr "" -#: gnu/packages/tex.scm:5342 +#: gnu/packages/tex.scm:5645 msgid "" "Identify areas of text to be marked with changebars with the\n" "@code{\\cbstart} and @code{\\cbend} commands; the bars may be coloured. The\n" @@ -18229,19 +18451,19 @@ msgid "" "drivers, and VTeX and pdfTeX." msgstr "" -#: gnu/packages/tex.scm:5379 +#: gnu/packages/tex.scm:5682 msgid "" "This package embeds CMap tables into PDF files to make search and\n" "copy-and-paste functions work properly." msgstr "" -#: gnu/packages/tex.scm:5399 +#: gnu/packages/tex.scm:5702 msgid "" "This package allows rows, columns, and even individual cells in LaTeX\n" "tables to be coloured." msgstr "" -#: gnu/packages/tex.scm:5432 +#: gnu/packages/tex.scm:5735 msgid "" "This package provides variants of @code{\\fbox}: @code{\\shadowbox},\n" "@code{\\doublebox}, @code{\\ovalbox}, @code{\\Ovalbox}, with helpful tools for\n" @@ -18249,14 +18471,14 @@ msgid "" "floats, center, flushleft, and flushright, lists, and pages." msgstr "" -#: gnu/packages/tex.scm:5467 +#: gnu/packages/tex.scm:5770 msgid "" "The package provides extensive facilities, both for constructing headers\n" "and footers, and for controlling their use (for example, at times when LaTeX\n" "would automatically change the heading style in use)." msgstr "" -#: gnu/packages/tex.scm:5488 +#: gnu/packages/tex.scm:5791 msgid "" "This package improves the interface for defining floating objects such\n" "as figures and tables. It introduces the boxed float, the ruled float and the\n" @@ -18266,7 +18488,7 @@ msgid "" "with @code{\\floatplacement{figure}{H}}." msgstr "" -#: gnu/packages/tex.scm:5512 +#: gnu/packages/tex.scm:5815 msgid "" "This is a collection of ways to change the typesetting of footnotes.\n" "The package provides means of changing the layout of the footnotes themselves,\n" @@ -18276,7 +18498,7 @@ msgid "" "footnotes with symbols rather than numbers." msgstr "" -#: gnu/packages/tex.scm:5532 +#: gnu/packages/tex.scm:5835 msgid "" "TeX’s @code{\\let} assignment does not work for LaTeX macros with\n" "optional arguments, or for macros that are defined as robust macros by\n" @@ -18284,7 +18506,7 @@ msgid "" "that also takes care of the involved internal macros." msgstr "" -#: gnu/packages/tex.scm:5556 +#: gnu/packages/tex.scm:5859 msgid "" "The package enables the user to typeset programs (programming code)\n" "within LaTeX; the source code is read directly by TeX---no front-end processor\n" @@ -18292,7 +18514,7 @@ msgid "" "styles. Support for @code{hyperref} is provided." msgstr "" -#: gnu/packages/tex.scm:5591 +#: gnu/packages/tex.scm:5894 msgid "" "This package provides miscellaneous macros by Joerg Knappen, including:\n" "represent counters in greek; Maxwell's non-commutative division;\n" @@ -18304,7 +18526,7 @@ msgid "" "in SGML; use maths minus in text as appropriate; simple Young tableaux." msgstr "" -#: gnu/packages/tex.scm:5615 +#: gnu/packages/tex.scm:5918 #, fuzzy #| msgid "" #| "This package provides tools for sorting and comparing\n" @@ -18316,7 +18538,7 @@ msgstr "" "Denne pakke tilbyder værktøjer for sortering og sammenligning\n" "af Uniocodedata." -#: gnu/packages/tex.scm:5684 +#: gnu/packages/tex.scm:5987 msgid "" "The EC fonts are European Computer Modern Fonts, supporting the complete\n" "LaTeX T1 encoding defined at the 1990 TUG conference hold at Cork/Ireland.\n" @@ -18333,7 +18555,7 @@ msgid "" "differs from the EC in a number of particulars." msgstr "" -#: gnu/packages/tex.scm:5717 +#: gnu/packages/tex.scm:6020 msgid "" "This package provides a set of virtual fonts which emulates T1 coded\n" "fonts using the standard CM fonts. The package name, AE fonts, supposedly\n" @@ -18343,7 +18565,7 @@ msgid "" "via the CM-super, Latin Modern and (in a restricted way) CM-LGC font sets." msgstr "" -#: gnu/packages/tex.scm:5742 +#: gnu/packages/tex.scm:6045 msgid "" "Inconsolata is a monospaced font designed by Raph Levien. This package\n" "contains the font (in both Adobe Type 1 and OpenType formats) in regular and\n" @@ -18352,7 +18574,7 @@ msgid "" "TeX, and LaTeX font definition and other relevant files." msgstr "" -#: gnu/packages/tex.scm:5771 +#: gnu/packages/tex.scm:6074 msgid "" "This package provides a drop-in replacements for the Times font from\n" "Adobe's basic set." @@ -18360,7 +18582,7 @@ msgstr "" "Denne pakke tilbyder en direkte erstatning for Times-skrifttypen fra\n" "Adobes grundlæggende sæt." -#: gnu/packages/tex.scm:5799 +#: gnu/packages/tex.scm:6102 msgid "" "This package provides a drop-in replacements for the Palatino font from\n" "Adobe's basic set." @@ -18368,7 +18590,7 @@ msgstr "" "Denne pakke tilbyder en direkte erstatning for Palatino-skrifttypen fra\n" "Adobes grundlæggende sæt." -#: gnu/packages/tex.scm:5824 +#: gnu/packages/tex.scm:6127 msgid "" "This package provides a drop-in replacements for the Zapfding font from\n" "Adobe's basic set." @@ -18376,7 +18598,7 @@ msgstr "" "Denne pakke tilbyder en direkte erstatning for Zapfding-skrifttypen fra\n" "Adobes grundlæggende sæt." -#: gnu/packages/tex.scm:5896 +#: gnu/packages/tex.scm:6199 msgid "" "The fonts provide uppercase formal script letters for use as symbols in\n" "scientific and mathematical typesetting (in contrast to the informal script\n" @@ -18386,14 +18608,14 @@ msgid "" "one of the packages @code{calrsfs} and @code{mathrsfs}." msgstr "" -#: gnu/packages/tex.scm:5920 +#: gnu/packages/tex.scm:6223 msgid "" "The package adds one or more user commands to LaTeX's @code{shipout}\n" "routine, which may be used to place the output at fixed positions. The\n" "@code{grid} option may be used to find the correct places." msgstr "" -#: gnu/packages/tex.scm:5954 +#: gnu/packages/tex.scm:6257 msgid "" "Extensions to @code{epic} and the LaTeX picture drawing environment,\n" "include the drawing of lines at any slope, the drawing of circles in any\n" @@ -18403,7 +18625,7 @@ msgid "" "@code{\\special} commands." msgstr "" -#: gnu/packages/tex.scm:5991 +#: gnu/packages/tex.scm:6276 msgid "" "This package is intended to ease customizing the three basic list\n" "environments: @code{enumerate}, @code{itemize} and @code{description}. It\n" @@ -18412,14 +18634,14 @@ msgid "" "@code{\\begin{itemize}[itemsep=1ex,leftmargin=1cm]}." msgstr "" -#: gnu/packages/tex.scm:6014 +#: gnu/packages/tex.scm:6301 msgid "" "The package provides tools for creating tabular cells spanning multiple\n" "rows. It has a lot of flexibility, including an option for specifying an\n" "entry at the \"natural\" width of its text." msgstr "" -#: gnu/packages/tex.scm:6048 +#: gnu/packages/tex.scm:6335 msgid "" "The @code{overpic} environment is a cross between the LaTeX\n" "@code{picture} environment and the @code{\\includegraphics} command of\n" @@ -18428,14 +18650,14 @@ msgid "" "positions; a grid for orientation is available." msgstr "" -#: gnu/packages/tex.scm:6084 +#: gnu/packages/tex.scm:6371 msgid "" "Simply changing @code{\\parskip} and @code{\\parindent} leaves a layout\n" "that is untidy; this package (though it is no substitute for a properly\n" "designed class) helps alleviate this untidiness." msgstr "" -#: gnu/packages/tex.scm:6105 +#: gnu/packages/tex.scm:6392 msgid "" "This package simplifies the inclusion of external multi-page PDF\n" "documents in LaTeX documents. Pages may be freely selected and it is possible\n" @@ -18445,7 +18667,7 @@ msgid "" "use this package to insert PostScript files, in addition to PDF files." msgstr "" -#: gnu/packages/tex.scm:6146 +#: gnu/packages/tex.scm:6433 msgid "" "The fonts were originally distributed as Metafont sources only, but\n" "Adobe Type 1 versions are also now available. Macro support is provided for\n" @@ -18454,7 +18676,7 @@ msgid "" "the whole font." msgstr "" -#: gnu/packages/tex.scm:6171 +#: gnu/packages/tex.scm:6458 msgid "" "This (deprecated) package provides support for the manipulation and\n" "reference of small or \"sub\" figures and tables within a single figure or\n" @@ -18467,7 +18689,7 @@ msgid "" "the more recent @code{subcaption} package more satisfactory." msgstr "" -#: gnu/packages/tex.scm:6198 +#: gnu/packages/tex.scm:6485 msgid "" "The package defines a @code{tabular*}-like environment, @code{tabulary},\n" "taking a \"total width\" argument as well as the column specifications. The\n" @@ -18478,7 +18700,7 @@ msgid "" "according to the natural width of the widest cell in the column." msgstr "" -#: gnu/packages/tex.scm:6236 +#: gnu/packages/tex.scm:6523 msgid "" "This package facilitates tables with titles (captions) and notes. The\n" "title and notes are given a width equal to the body of the table (a\n" @@ -18487,7 +18709,7 @@ msgid "" "environment." msgstr "" -#: gnu/packages/tex.scm:6263 +#: gnu/packages/tex.scm:6550 msgid "" "Txfonts supplies virtual text roman fonts using Adobe Times (or URW\n" "NimbusRomNo9L) with some modified and additional text symbols in the OT1, T1,\n" @@ -18503,7 +18725,7 @@ msgid "" "TeX metrics (VF and TFM files) and macros for use with LaTeX." msgstr "" -#: gnu/packages/tex.scm:6312 +#: gnu/packages/tex.scm:6599 msgid "" "Iwona is a two-element sans-serif typeface. It was created\n" "as an alternative version of the Kurier typeface, which was designed in 1975\n" @@ -18514,7 +18736,7 @@ msgid "" "of ink traps which typify the Kurier font." msgstr "" -#: gnu/packages/tex.scm:6335 +#: gnu/packages/tex.scm:6622 msgid "" "This package contains a collection of macros by Jörg Knappen:\n" "@table @code\n" @@ -18550,7 +18772,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/tex.scm:6442 +#: gnu/packages/tex.scm:6729 msgid "" "JadeTeX is a companion package to the OpenJade DSSSL\n" "processor. OpenJade applies a DSSSL stylesheet to an SGML or XML document.\n" @@ -18561,7 +18783,7 @@ msgid "" "command)." msgstr "" -#: gnu/packages/tex.scm:6472 +#: gnu/packages/tex.scm:6759 msgid "" "The package provides the Libertine and Biolinum fonts in both Type 1 and\n" "OTF styles, together with support macros for their use. Monospaced and\n" @@ -18571,7 +18793,7 @@ msgid "" "@code{libertine-legacy} packages." msgstr "" -#: gnu/packages/tex.scm:6504 +#: gnu/packages/tex.scm:6791 msgid "" "The package contains LaTeX support for the DejaVu fonts, which are\n" "derived from the Vera fonts but contain more characters and styles. The fonts\n" @@ -18580,7 +18802,7 @@ msgid "" "LGR. The package doesn't (currently) support mathematics." msgstr "" -#: gnu/packages/tex.scm:6540 +#: gnu/packages/tex.scm:6827 msgid "" "This package provides an interface to sectioning commands for selection\n" "from various title styles, e.g. for marginal titles and to change the font of\n" @@ -18589,7 +18811,7 @@ msgid "" "floats in a page. You may assign headers/footers to individual floats, too." msgstr "" -#: gnu/packages/tex.scm:6563 +#: gnu/packages/tex.scm:6850 msgid "" "LaTeX, by default, restricts the sizes at which you can use its default\n" "computer modern fonts, to a fixed set of discrete sizes (effectively, a set\n" @@ -18604,7 +18826,7 @@ msgid "" "@code{ec} fonts." msgstr "" -#: gnu/packages/tex.scm:6617 +#: gnu/packages/tex.scm:6904 msgid "" "The LH fonts address the problem of the wide variety of alphabets that\n" "are written with Cyrillic-style characters. The fonts are the original basis\n" @@ -18617,7 +18839,7 @@ msgid "" "OT2 encoded fonts, CM bright shaped fonts and Concrete shaped fonts." msgstr "" -#: gnu/packages/tex.scm:6647 +#: gnu/packages/tex.scm:6934 msgid "" "The Martin Vogel’s Symbols fonts (marvosym) contains the\n" "Euro currency symbol as defined by the European commission, along with symbols\n" @@ -18627,34 +18849,41 @@ msgid "" "the derived Type 1 font, together with support files for TeX (LaTeX)." msgstr "" -#: gnu/packages/tex.scm:6685 +#: gnu/packages/tex.scm:6972 msgid "" "MetaPost uses a language based on that of Metafont to produce precise\n" "technical illustrations. Its output is scalable PostScript or SVG, rather\n" "than the bitmaps Metafont creates." msgstr "" -#: gnu/packages/tex.scm:6706 +#: gnu/packages/tex.scm:6993 msgid "" "This package provides a class for typesetting publications of the\n" "Association for Computing Machinery (ACM)." msgstr "" -#: gnu/packages/tex.scm:6739 +#: gnu/packages/tex.scm:7026 msgid "" "The @code{varwidth} environment is superficially similar to\n" "@code{minipage}, but the specified width is just a maximum value — the box may\n" "get a narrower “natural” width." msgstr "" -#: gnu/packages/tex.scm:6757 +#: gnu/packages/tex.scm:7041 +msgid "" +"The varwidth environment is superficially similar to minipage, but the\n" +"specified width is just a maximum value --- the box may get a narrower natural\n" +"width." +msgstr "" + +#: gnu/packages/tex.scm:7059 msgid "" "This package provides the @code{wasy} (Waldi symbol) fonts,\n" "in the Metafont and Adobe Type 1 formats. Support under LaTeX is provided by\n" "the @code{wasysym} package." msgstr "" -#: gnu/packages/tex.scm:6778 +#: gnu/packages/tex.scm:7080 msgid "" "The @code{wasy} (Waldi Symbol) font by Roland Waldi provides many glyphs like\n" "male and female symbols and astronomical symbols, as well as the complete\n" @@ -18662,14 +18891,14 @@ msgid "" "implements an easy to use interface for these symbols." msgstr "" -#: gnu/packages/tex.scm:6815 +#: gnu/packages/tex.scm:7117 msgid "" "This package allows figures or tables to have text wrapped around them.\n" "It does not work in combination with list environments, but can be used in a\n" "@code{parbox} or @code{minipage}, and in two-column format." msgstr "" -#: gnu/packages/tex.scm:6849 +#: gnu/packages/tex.scm:7151 msgid "" "The bundle provides the @code{ucs} package, and @code{utf8x.def},\n" "together with a large number of support files. The @code{utf8x.def}\n" @@ -18682,7 +18911,7 @@ msgid "" "package of that name now exists." msgstr "" -#: gnu/packages/tex.scm:6883 +#: gnu/packages/tex.scm:7185 msgid "" "The main purpose of the preview package is the extraction of selected\n" "elements from a LaTeX source, like formulas or graphics, into separate\n" @@ -18693,7 +18922,7 @@ msgid "" "files." msgstr "" -#: gnu/packages/tex.scm:6908 +#: gnu/packages/tex.scm:7210 msgid "" "This package ensures that all acronyms used in the text are spelled out\n" "in full at least once. It also provides an environment to build a list of\n" @@ -18702,13 +18931,13 @@ msgid "" "e-TeX." msgstr "" -#: gnu/packages/tex.scm:6945 +#: gnu/packages/tex.scm:7247 msgid "" "This package provides an extension of TeX which can be configured to\n" "directly generate PDF documents instead of DVI." msgstr "" -#: gnu/packages/tex.scm:7025 +#: gnu/packages/tex.scm:7327 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18718,7 +18947,7 @@ msgid "" "This package contains the complete tree of texmf-dist data." msgstr "" -#: gnu/packages/tex.scm:7088 +#: gnu/packages/tex.scm:7390 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18728,7 +18957,7 @@ msgid "" "This package contains the complete TeX Live distribution." msgstr "" -#: gnu/packages/tex.scm:7130 +#: gnu/packages/tex.scm:7432 msgid "" "@code{Text::BibTeX} is a Perl library for reading, parsing,\n" "and processing BibTeX files. @code{Text::BibTeX} gives you access to the data\n" @@ -18737,13 +18966,13 @@ msgid "" "values (strings, macros, or numbers) pasted together." msgstr "" -#: gnu/packages/tex.scm:7216 +#: gnu/packages/tex.scm:7518 msgid "" "Biber is a BibTeX replacement for users of biblatex. Among\n" "other things it comes with full Unicode support." msgstr "" -#: gnu/packages/tex.scm:7250 +#: gnu/packages/tex.scm:7552 msgid "" "Rubber is a program whose purpose is to handle all tasks related to the\n" "compilation of LaTeX documents. This includes compiling the document itself,\n" @@ -18753,20 +18982,20 @@ msgid "" "PDF documents." msgstr "" -#: gnu/packages/tex.scm:7289 +#: gnu/packages/tex.scm:7591 msgid "" "Texmaker is a program that integrates many tools needed to\n" "develop documents with LaTeX, in a single application." msgstr "" -#: gnu/packages/tex.scm:7330 +#: gnu/packages/tex.scm:7632 msgid "" "@i{TeX for the Impatient} is a ~350 page book on TeX,\n" "plain TeX, and Eplain, originally written by Paul Abrahams, Kathryn Hargreaves,\n" "and Karl Berry." msgstr "" -#: gnu/packages/tex.scm:7394 +#: gnu/packages/tex.scm:7696 msgid "" "LyX is a document preparation system. It excels at letting\n" "you create complex technical and scientific articles with mathematics,\n" @@ -18775,7 +19004,7 @@ msgid "" "required: automatic sectioning and pagination, spell checking and so forth." msgstr "" -#: gnu/packages/tex.scm:7430 +#: gnu/packages/tex.scm:7732 msgid "" "The package provides an interface to embed interactive Flash (SWF) and 3D\n" "objects (Adobe U3D & PRC), as well as video and sound files or streams in the\n" @@ -18788,7 +19017,7 @@ msgid "" "specification. It replaces the now obsolete @code{movie15} package." msgstr "" -#: gnu/packages/tex.scm:7470 +#: gnu/packages/tex.scm:7772 msgid "" "This package provides OCG (Optional Content Groups) support within a PDF\n" "document.\n" @@ -18806,7 +19035,7 @@ msgid "" "It also ensures compatibility with the @code{media9} and @code{animate} packages." msgstr "" -#: gnu/packages/tex.scm:7504 +#: gnu/packages/tex.scm:7806 msgid "" "A bundle of LATEX packages by Martin Schröder; the collection comprises:\n" "\n" @@ -18820,7 +19049,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/tex.scm:7532 +#: gnu/packages/tex.scm:7852 msgid "" "The package numprint prints numbers with a separator every three\n" "digits and converts numbers given as 12345.6e789 to 12\\,345,6\\cdot\n" @@ -18841,14 +19070,14 @@ msgid "" "and after the formatted number." msgstr "" -#: gnu/packages/tex.scm:7571 +#: gnu/packages/tex.scm:7893 msgid "" "Provides commands to disable pagebreaking within a given vertical\n" "space. If there is not enough space between the command and the bottom of the\n" "page, a new page will be started." msgstr "" -#: gnu/packages/tex.scm:7597 +#: gnu/packages/tex.scm:7919 msgid "" "The package provides commands to change the page layout in the middle of\n" "a document, and to robustly check for typesetting on odd or even pages.\n" @@ -18856,7 +19085,7 @@ msgid "" "of code from the @code{memoir} class, whose user interface it shares." msgstr "" -#: gnu/packages/tex.scm:7633 +#: gnu/packages/tex.scm:7955 msgid "" "The package is used to change the format of @code{\\today}’s date,\n" "including the weekday, e.g., \"Saturday, 26 June 2008\", the 'UK format', which\n" @@ -18864,7 +19093,7 @@ msgid "" "@code{\\maketitle} of the article class, \"June 26, 2008\", the 'US format'." msgstr "" -#: gnu/packages/tex.scm:7669 +#: gnu/packages/tex.scm:7971 msgid "" "The package provides an @code{\\ul} (underline) command which will break\n" "over line ends; this technique may be used to replace @code{\\em} (both in that\n" @@ -18873,7 +19102,7 @@ msgid "" "striking out (line through words) and crossing out (/// over words)." msgstr "" -#: gnu/packages/tex.scm:7725 +#: gnu/packages/tex.scm:8029 msgid "" "PGF is a macro package for creating graphics. It is platform- and\n" "format-independent and works together with the most important TeX backend\n" @@ -18885,7 +19114,7 @@ msgid "" "produce either PostScript or PDF output." msgstr "" -#: gnu/packages/tex.scm:7771 +#: gnu/packages/tex.scm:8075 msgid "" "The KOMA-Script bundle provides replacements for the article, report, and\n" "book classes with emphasis on typography and versatility. There is also a\n" @@ -18910,7 +19139,7 @@ msgid "" "typearea (which are the main parts of the bundle)." msgstr "" -#: gnu/packages/tex.scm:7806 +#: gnu/packages/tex.scm:8110 msgid "" "This package is a modern reimplementation of package @code{everyshi},\n" "providing various commands to be executed before a @code{\\shipout} command.\n" @@ -18918,20 +19147,20 @@ msgid "" "be used either with LaTeX or with plain TeX." msgstr "" -#: gnu/packages/tex.scm:7826 +#: gnu/packages/tex.scm:8130 msgid "" "This package provides expandable arithmetic operations with big\n" "integers that can exceed TeX's number limits." msgstr "" -#: gnu/packages/tex.scm:7845 +#: gnu/packages/tex.scm:8149 msgid "" "This package defines and implements the data type bit set, a vector\n" "of bits. The size of the vector may grow dynamically. Individual bits\n" "can be manipulated." msgstr "" -#: gnu/packages/tex.scm:7864 +#: gnu/packages/tex.scm:8168 msgid "" "New primitive commands are introduced in e-TeX; sometimes the names\n" "collide with existing macros. This package solves the name clashes by\n" @@ -18939,14 +19168,14 @@ msgid "" "@code{\\unexpanded} is provided as @code{\\etex@@unexpanded}." msgstr "" -#: gnu/packages/tex.scm:7882 +#: gnu/packages/tex.scm:8186 msgid "" "This package provides commands for cleaning up the title string\n" "(such as removing @code{\\label} commands) for packages that typeset such\n" "strings." msgstr "" -#: gnu/packages/tex.scm:7898 +#: gnu/packages/tex.scm:8202 msgid "" "This package provides a complete set of macros for information,\n" "warning and error messages. Under LaTeX, the commands are wrappers for\n" @@ -18954,19 +19183,19 @@ msgid "" "complete implementations." msgstr "" -#: gnu/packages/tex.scm:7915 +#: gnu/packages/tex.scm:8219 msgid "" "This package provides expandable arithmetic operations with integers,\n" "using the e-TeX extension @code{\\numexpr} if it is available." msgstr "" -#: gnu/packages/tex.scm:7930 +#: gnu/packages/tex.scm:8234 msgid "" "This package provides the @code{\\kv@@define@@key} (analogous to\n" "keyval’s @code{\\define@@key}, to define keys for use by @code{kvsetkeys}." msgstr "" -#: gnu/packages/tex.scm:7945 +#: gnu/packages/tex.scm:8249 msgid "" "This package provides @code{\\kvsetkeys}, a variant of @code{\\setkeys}\n" "from the @code{keyval} package. Users can specify a handler that deals with\n" @@ -18974,35 +19203,35 @@ msgid "" "level of curly braces are removed from the values." msgstr "" -#: gnu/packages/tex.scm:7980 +#: gnu/packages/tex.scm:8284 msgid "" "This package allows one to capture all the items of a list, for which\n" "the parsing character has been selected by the user, and to access any of\n" "these items with a simple syntax." msgstr "" -#: gnu/packages/tex.scm:7996 +#: gnu/packages/tex.scm:8300 msgid "" "This package exports some utility macros from the LaTeX kernel into\n" "a separate namespace and also makes them available for other formats such\n" "as plain TeX." msgstr "" -#: gnu/packages/tex.scm:8012 +#: gnu/packages/tex.scm:8316 msgid "" "This package implements pdfTeX's escape features (@code{\\pdfescapehex},\n" "@code{\\pdfunescapehex}, @code{\\pdfescapename}, @code{\\pdfescapestring})\n" "using TeX or e-TeX." msgstr "" -#: gnu/packages/tex.scm:8031 +#: gnu/packages/tex.scm:8335 msgid "" "This package provides a kind of counter that provides unique number\n" "values. Several counters can be created with different names. The numeric\n" "values are not limited." msgstr "" -#: gnu/packages/tex.scm:8067 +#: gnu/packages/tex.scm:8371 msgid "" "This package allows the user to input formatted data into elements of a\n" "2-D or 3-D array and to recall that data at will by individual cell number.\n" @@ -19010,7 +19239,7 @@ msgid "" "formatted text." msgstr "" -#: gnu/packages/tex.scm:8104 +#: gnu/packages/tex.scm:8408 msgid "" "The package provides a @code{verbbox} environment to place its contents\n" "into a globally available box, or into a box specified by the user. The\n" @@ -19020,7 +19249,7 @@ msgid "" "@code{trivlist}) may not appear." msgstr "" -#: gnu/packages/tex.scm:8141 +#: gnu/packages/tex.scm:8445 msgid "" "Examplep provides sophisticated features for typesetting verbatim source\n" "code listings, including the display of the source code and its compiled LaTeX\n" @@ -19033,7 +19262,7 @@ msgid "" "titles." msgstr "" -#: gnu/packages/tex.scm:8178 +#: gnu/packages/tex.scm:8482 msgid "" "This is a package for typesetting a variety of graphs and\n" "diagrams with TeX. Xy-pic works with most formats (including LaTeX,\n" @@ -19041,7 +19270,7 @@ msgid "" "@code{diag} package, which was previously distributed stand-alone." msgstr "" -#: gnu/packages/tex.scm:8218 +#: gnu/packages/tex.scm:8522 msgid "" "BibTeX allows the user to store his citation data in generic form, while\n" "printing citations in a document in the form specified by a BibTeX style, to\n" @@ -19049,7 +19278,7 @@ msgid "" "package, such as @command{natbib} as well)." msgstr "" -#: gnu/packages/tex.scm:8241 +#: gnu/packages/tex.scm:8545 msgid "" "This package provides a copy of the Charter Type-1 fonts\n" "which Bitstream contributed to the X consortium, renamed for use with TeX.\n" @@ -19057,14 +19286,14 @@ msgid "" "@command{psnfss}." msgstr "" -#: gnu/packages/tex.scm:8337 +#: gnu/packages/tex.scm:8641 msgid "" "ConTeXt is a full featured, parameter driven macro package,\n" "which fully supports advanced interactive documents. See the ConTeXt garden\n" "for a wealth of support information." msgstr "" -#: gnu/packages/tex.scm:8362 +#: gnu/packages/tex.scm:8666 msgid "" "The beamer LaTeX class can be used for producing slides.\n" "The class works in both PostScript and direct PDF output modes, using the\n" @@ -19077,7 +19306,7 @@ msgid "" "effects, varying slide transitions and animations." msgstr "" -#: gnu/packages/tex.scm:8394 +#: gnu/packages/tex.scm:8698 msgid "" "The XMP (eXtensible Metadata platform) is a framework to add metadata to\n" "digital material to enhance the workflow in publication. The essence is that\n" @@ -19085,13 +19314,13 @@ msgid "" "the file to which it applies." msgstr "" -#: gnu/packages/tex.scm:8433 +#: gnu/packages/tex.scm:8737 msgid "" "This package helps LaTeX users to create PDF/X, PDF/A and other\n" "standards-compliant PDF documents with pdfTeX, LuaTeX and XeTeX." msgstr "" -#: gnu/packages/tex.scm:8468 +#: gnu/packages/tex.scm:8772 msgid "" "The package provides macros and environments to document\n" "LaTeX packages and classes. It is an (as yet unfinished) alternative to the\n" @@ -19102,7 +19331,7 @@ msgid "" "change." msgstr "" -#: gnu/packages/tex.scm:8496 +#: gnu/packages/tex.scm:8800 msgid "" "PSTricks offers an extensive collection of macros for\n" "generating PostScript that is usable with most TeX macro formats, including\n" @@ -19113,14 +19342,14 @@ msgid "" "or shading the cells of tables." msgstr "" -#: gnu/packages/tex.scm:8521 +#: gnu/packages/tex.scm:8825 msgid "" "Pst-text is a PSTricks based package for plotting text along\n" "a different path and manipulating characters. It includes the functionality\n" "of the old package @code{pst-char}." msgstr "" -#: gnu/packages/tex.scm:8546 +#: gnu/packages/tex.scm:8850 msgid "" "This package provides the command @code{\\marginnote} that\n" "may be used instead of @code{\\marginpar} at almost every place where\n" @@ -19128,7 +19357,7 @@ msgid "" "frames made with the @code{framed} package." msgstr "" -#: gnu/packages/tex.scm:8564 +#: gnu/packages/tex.scm:8868 msgid "" "This package, which works both for Plain TeX and for\n" "LaTeX, defines the @code{\\ifPDFTeX}, @code{\\ifXeTeX}, and @code{\\ifLuaTeX}\n" @@ -19138,7 +19367,19 @@ msgid "" "LuaTeX (respectively) is not the engine in use." msgstr "" -#: gnu/packages/tex.scm:8597 +#: gnu/packages/tex.scm:8914 +msgid "" +"The package provides an environment, tabu, which will make any sort of\n" +"tabular, and an environment longtabu which provides the facilities of tabu in\n" +"a modified longtable environment. The package requires array, xcolor for\n" +"coloured rules in tables, and colortbl for coloured cells. The longtabu\n" +"environment further requires that longtable be loaded. The package itself\n" +"does not load any of these packages for the user. The tabu environment may be\n" +"used in place of @code{tabular}, @code{tabular*} and @code{tabularx}\n" +"environments, as well as the @code{array} environment in maths mode." +msgstr "" + +#: gnu/packages/tex.scm:8945 msgid "" "This package provides a collection of simple tools that\n" "are part of the LaTeX required tools distribution, comprising the packages:\n" @@ -19150,7 +19391,7 @@ msgid "" "@code{varioref}, @code{verbatim}, @code{xr}, and @code{xspace}." msgstr "" -#: gnu/packages/tex.scm:8678 +#: gnu/packages/tex.scm:9026 msgid "" "This package is an extension of the keyval package and offers additional\n" "macros for setting keys and declaring and setting class or package options.\n" @@ -19160,7 +19401,7 @@ msgid "" "keys." msgstr "" -#: gnu/packages/tex.scm:8706 +#: gnu/packages/tex.scm:9054 msgid "" "A class and package is provided which allows TeX pictures or\n" "other TeX code to be compiled standalone or as part of a main document.\n" @@ -19172,7 +19413,7 @@ msgid "" "@code{standalone.cfg} to redefine the standalone environment." msgstr "" -#: gnu/packages/tex.scm:8739 +#: gnu/packages/tex.scm:9087 msgid "" "Typesetting values with units requires care to ensure that the combined\n" "mathematical meaning of the value plus unit combination is clear. In\n" @@ -19188,7 +19429,7 @@ msgid "" "package to handle all of the possible unit-related needs of LaTeX users." msgstr "" -#: gnu/packages/tex.scm:8770 +#: gnu/packages/tex.scm:9118 msgid "" "This package enhances the quality of tables in LaTeX, providing extra\n" "commands as well as behind-the-scenes optimisation. Guidelines are given as\n" @@ -19196,7 +19437,7 @@ msgid "" "@code{longtable} compatibility." msgstr "" -#: gnu/packages/tex.scm:8790 +#: gnu/packages/tex.scm:9138 msgid "" "This package provides advanced facilities for inline and\n" "display quotations. It is designed for a wide range of tasks ranging from the\n" @@ -19210,7 +19451,7 @@ msgid "" "styles as well as the optional active quotes are freely configurable." msgstr "" -#: gnu/packages/tex.scm:8816 +#: gnu/packages/tex.scm:9164 msgid "" "The package helps to automate a typical LaTeX\n" "workflow that involves running LaTeX several times and running tools\n" @@ -19230,7 +19471,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8848 +#: gnu/packages/tex.scm:9196 msgid "" "BibLaTeX is a complete reimplementation of the\n" "bibliographic facilities provided by LaTeX. Formatting of the\n" @@ -19256,7 +19497,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8886 +#: gnu/packages/tex.scm:9234 msgid "" "The @code{todonotes} package lets the user mark\n" "things to do later, in a simple and visually appealing way. The\n" @@ -19264,7 +19505,7 @@ msgid "" "of the visual appearance." msgstr "" -#: gnu/packages/tex.scm:8904 +#: gnu/packages/tex.scm:9252 msgid "" "@code{units} is a package for typesetting physical\n" "units in a standard-looking way. The package is based upon\n" @@ -19272,7 +19513,7 @@ msgid "" "included in the @code{units} bundle." msgstr "" -#: gnu/packages/tex.scm:8922 +#: gnu/packages/tex.scm:9270 msgid "" "@code{microtype} provides a LaTeX interface to the\n" "micro-typographic extensions that were introduced by pdfTeX and have\n" @@ -19287,7 +19528,7 @@ msgid "" "the bundle." msgstr "" -#: gnu/packages/tex.scm:8947 +#: gnu/packages/tex.scm:9295 msgid "" "The @code{caption} package provides many ways to\n" "customise the captions in floating environments like figure and table.\n" @@ -19301,7 +19542,7 @@ msgid "" "@code{subcaption} and @code{totalcount} are included in the bundle." msgstr "" -#: gnu/packages/tex.scm:8976 +#: gnu/packages/tex.scm:9324 #, fuzzy msgid "" "This package provides a drop-in replacement for the\n" @@ -19310,7 +19551,7 @@ msgstr "" "Denne pakke tilbyder en direkte erstatning for Times-skrifttypen fra\n" "Adobes grundlæggende sæt." -#: gnu/packages/tex.scm:8994 +#: gnu/packages/tex.scm:9342 msgid "" "The Pazo Math fonts are a family of PostScript fonts\n" "suitable for typesetting mathematics in combination with the Palatino\n" @@ -19324,7 +19565,7 @@ msgid "" "LaTeX macro support is provided in package @code{psnfss}." msgstr "" -#: gnu/packages/tex.scm:9019 +#: gnu/packages/tex.scm:9367 msgid "" "The FPL Fonts provide a set of SC/OsF fonts for URW\n" "Palladio L which are compatible with the Palatino SC/OsF fonts from\n" @@ -19332,7 +19573,7 @@ msgid "" "the @code{psnfss} distribution." msgstr "" -#: gnu/packages/tex.scm:9043 +#: gnu/packages/tex.scm:9391 msgid "" "The @code{arev} package provides type 1 fonts,\n" "virtual fonts and LaTeX packages for using Arev Sans in both text and\n" @@ -19346,7 +19587,7 @@ msgid "" "support packages. Others are cmbright, hvmath and kerkis." msgstr "" -#: gnu/packages/tex.scm:9074 +#: gnu/packages/tex.scm:9422 msgid "" "The Math Design project offers free mathematical\n" "fonts that match with existing text fonts. To date, three free font\n" @@ -19357,7 +19598,7 @@ msgid "" "created by the Greek Font Society)." msgstr "" -#: gnu/packages/tex.scm:9099 +#: gnu/packages/tex.scm:9447 msgid "" "The @code{bera} package contains the Bera Type 1\n" "fonts and files to use the fonts with LaTeX. Bera is a set of three\n" @@ -19366,7 +19607,7 @@ msgid "" "a repackaging, for use with TeX, of the Bitstream Vera family." msgstr "" -#: gnu/packages/tex.scm:9122 +#: gnu/packages/tex.scm:9470 msgid "" "Fourier-GUTenberg is a LaTeX typesetting system\n" "which uses Adobe Utopia as its standard base font. Fourier-GUTenberg\n" @@ -19377,7 +19618,7 @@ msgid "" "trademark of Adobe Systems Incorporated." msgstr "" -#: gnu/packages/tex.scm:9145 +#: gnu/packages/tex.scm:9493 msgid "" "The Adobe Standard Encoding set of the Utopia font\n" "family, as contributed to the X Consortium. The set comprises upright\n" @@ -19386,7 +19627,7 @@ msgid "" "@code{mathdesign} font packages." msgstr "" -#: gnu/packages/tex.scm:9169 +#: gnu/packages/tex.scm:9517 msgid "" "The @code{fontaxes} package adds several new font\n" "axes on top of LaTeX's New Font Selection Scheme (NFSS). In\n" @@ -19395,7 +19636,7 @@ msgid "" "figure versions offered by many professional fonts." msgstr "" -#: gnu/packages/tex.scm:9192 +#: gnu/packages/tex.scm:9540 msgid "" "The bundle comprises: @code{authblk}, which permits\n" "footnote style author/affiliation input in the @command{\\author} command,\n" @@ -19405,7 +19646,7 @@ msgid "" "@code{sublabel}, which permits counters to be subnumbered." msgstr "" -#: gnu/packages/tex.scm:9211 +#: gnu/packages/tex.scm:9559 msgid "" "Many font families available for use with LaTeX are\n" "available at multiple weights. Many Type 1-oriented support packages\n" @@ -19416,7 +19657,7 @@ msgid "" "@code{mweights} package provides a solution to these difficulties." msgstr "" -#: gnu/packages/tex.scm:9237 +#: gnu/packages/tex.scm:9585 msgid "" "Cabin is a humanist sans with four weights, true\n" "italics and small capitals. According to its designer, Pablo\n" @@ -19430,7 +19671,7 @@ msgid "" "use with [pdf]LaTeX." msgstr "" -#: gnu/packages/tex.scm:9268 +#: gnu/packages/tex.scm:9616 msgid "" "The @code{newtx} bundle splits\n" "@code{txfonts.sty} (from the TX fonts distribution) into two\n" @@ -19442,7 +19683,7 @@ msgid "" "mathematics package that matches Libertine text quite well." msgstr "" -#: gnu/packages/tex.scm:9296 +#: gnu/packages/tex.scm:9644 msgid "" "@code{xcharter} repackages Bitstream Charter with an\n" "extended set of features. The extension provides small caps, oldstyle\n" @@ -19451,7 +19692,7 @@ msgid "" "Type 1 and OTF formats, with supporting files as necessary." msgstr "" -#: gnu/packages/tex.scm:9320 +#: gnu/packages/tex.scm:9668 msgid "" "The legacy @emph{texnansi} (TeX and ANSI) encoding\n" "is known in the LaTeX scheme of things as @emph{LY1} encoding. The\n" @@ -19460,14 +19701,14 @@ msgid "" "LY1 encoding." msgstr "" -#: gnu/packages/tex.scm:9349 +#: gnu/packages/tex.scm:9697 msgid "" "This is a LaTeX2ε package to help change the style of any or\n" "all of LaTeX's sectional headers in the article, book, or report classes.\n" "Examples include the addition of rules above or below a section title." msgstr "" -#: gnu/packages/tex.scm:9375 +#: gnu/packages/tex.scm:9723 msgid "" "LaTeX can, by default, only cope with 18 outstanding floats;\n" "any more, and you get the error “too many unprocessed floats”. This package\n" @@ -19478,19 +19719,19 @@ msgid "" "floats merely delays the arrival of the inevitable error message." msgstr "" -#: gnu/packages/tex.scm:9408 +#: gnu/packages/tex.scm:9756 msgid "" "This package provides a command for the LaTeX programmer for\n" "testing whether an argument is empty." msgstr "" -#: gnu/packages/tex.scm:9435 +#: gnu/packages/tex.scm:9783 msgid "" "The pagenote package provides tagged notes on a separate\n" "page (also known as ‘end notes’)." msgstr "" -#: gnu/packages/tex.scm:9463 +#: gnu/packages/tex.scm:9811 msgid "" "The @code{titling} package provides control over the\n" "typesetting of the @code{\\maketitle} command and @code{\\thanks} commands,\n" @@ -19500,7 +19741,7 @@ msgid "" "a physical page." msgstr "" -#: gnu/packages/tex.scm:9493 +#: gnu/packages/tex.scm:9841 msgid "" "This package provides an @code{\\ifoddpage} conditional to\n" "determine if the current page is odd or even. The macro @code{\\checkoddpage}\n" @@ -19510,7 +19751,7 @@ msgid "" "@code{oneside} mode where all pages use the odd page layout." msgstr "" -#: gnu/packages/tex.scm:9523 +#: gnu/packages/tex.scm:9871 msgid "" "The package provides \"store boxes\" whose user interface\n" "matches that of normal LaTeX \"save boxes\", except that the content of a\n" @@ -19519,7 +19760,7 @@ msgid "" "DVI is output, store boxes behave the same as save boxes." msgstr "" -#: gnu/packages/tex.scm:9552 +#: gnu/packages/tex.scm:9900 msgid "" "The package provides macros to collect and process a macro\n" "argument (i.e., something which looks like a macro argument) as a horizontal\n" @@ -19532,13 +19773,13 @@ msgid "" "The macros were designed for use within other macros." msgstr "" -#: gnu/packages/tex.scm:9584 +#: gnu/packages/tex.scm:9932 msgid "" "This package provides macros for adding to, and reordering\n" "the list of graphics file extensions recognised by package graphics." msgstr "" -#: gnu/packages/tex.scm:9618 +#: gnu/packages/tex.scm:9966 msgid "" "The package provides several macros to adjust boxed\n" "content. One purpose is to supplement the standard @code{graphics} package,\n" @@ -19551,7 +19792,7 @@ msgid "" "@code{\\minsizebox}, @code{\\maxsizebox} and @code{\\phantombox}." msgstr "" -#: gnu/packages/tex.scm:9644 +#: gnu/packages/tex.scm:9992 msgid "" "This package provides an environment for colored and\n" "framed text boxes with a heading line. Optionally, such a box may be split in\n" @@ -19562,7 +19803,7 @@ msgid "" "parts." msgstr "" -#: gnu/packages/tex.scm:9675 +#: gnu/packages/tex.scm:10023 msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems. The commands allow for writing\n" @@ -19571,7 +19812,7 @@ msgid "" "styles of inference rules, placement of labels, etc." msgstr "" -#: gnu/packages/tex.scm:9704 +#: gnu/packages/tex.scm:10052 #, fuzzy #| msgid "" #| "This package provides commands to create and check XFS\n" @@ -19583,7 +19824,7 @@ msgstr "" "Denne pakke tilbyder kommandoer til at oprette og kontrollere\n" "XFS-filsystemer." -#: gnu/packages/tex.scm:9724 +#: gnu/packages/tex.scm:10072 msgid "" "This package provides the European currency symbol for the\n" "Euro implemented in METAFONT, using the official European Commission\n" @@ -19592,7 +19833,7 @@ msgid "" "pre-compiled font files, and documentation." msgstr "" -#: gnu/packages/tex.scm:9754 +#: gnu/packages/tex.scm:10102 msgid "" "The @code{kastrup} package provides the\n" "@emph{binhex.tex} file. This file provides expandable macros for both\n" @@ -19602,7 +19843,7 @@ msgid "" "LaTeX and plain TeX." msgstr "" -#: gnu/packages/tex.scm:9774 +#: gnu/packages/tex.scm:10122 msgid "" "This LaTeX package provides a flexible mechanism for translating\n" "individual words into different languages. For example, it can be used to\n" @@ -19613,7 +19854,7 @@ msgid "" "automatically translate more than a few words." msgstr "" -#: gnu/packages/tex.scm:9795 +#: gnu/packages/tex.scm:10143 msgid "" "This package facilitates placing boxes at absolute positions on the\n" "LaTeX page. There are several reasons why this might be useful, but the main\n" @@ -19626,7 +19867,7 @@ msgid "" "accompanied by various configuration commands." msgstr "" -#: gnu/packages/tex.scm:9819 +#: gnu/packages/tex.scm:10167 msgid "" "This package extends the @code{ifthen} package by implementing new\n" "commands to go within the first argument of @code{\\\\ifthenelse}: to test\n" @@ -19636,14 +19877,14 @@ msgid "" "handle complex tests." msgstr "" -#: gnu/packages/tex.scm:9852 +#: gnu/packages/tex.scm:10200 msgid "" "BibTool manipulates BibTeX files. The possibilities of BibTool include\n" "sorting and merging of BibTeX databases, generation of uniform reference keys,\n" "and selecting references used in a publication." msgstr "" -#: gnu/packages/texinfo.scm:87 +#: gnu/packages/texinfo.scm:88 msgid "" "Texinfo is the official documentation format of the GNU project. It\n" "uses a single source file using explicit commands to produce a final document\n" @@ -19653,7 +19894,7 @@ msgid "" "is on expressing the content semantically, avoiding physical markup commands." msgstr "" -#: gnu/packages/texinfo.scm:216 +#: gnu/packages/texinfo.scm:230 msgid "" "Texi2HTML is a Perl script which converts Texinfo source files to HTML\n" "output. It now supports many advanced features, such as internationalization\n" @@ -19668,7 +19909,7 @@ msgid "" "Texi2HTML." msgstr "" -#: gnu/packages/texinfo.scm:283 +#: gnu/packages/texinfo.scm:297 msgid "" "Pinfo is an Info file viewer. Pinfo is similar in use to the Lynx web\n" "browser. You just move across info nodes, and select links, follow them, etc.\n" @@ -20027,6 +20268,12 @@ msgstr "" #: gnu/packages/textutils.scm:1406 msgid "" +"@code{utf-8-lineseparator} provides a tool to efficiently check text\n" +"files for valid UTF-8 use and to report which line endings they use." +msgstr "" + +#: gnu/packages/textutils.scm:1439 +msgid "" "@code{csvdiff} is a diff tool to compute changes between two\n" "CSV files. It can compare CSV files with a million records in under 2\n" "seconds. It is specifically suited for comparing CSV files dumped from\n" @@ -20228,27 +20475,27 @@ msgid "" "visualize your public Git repositories on a web interface." msgstr "" -#: gnu/packages/version-control.scm:1706 +#: gnu/packages/version-control.scm:1699 msgid "" "Pre-commit is a multi-language package manager for pre-commit hooks. You\n" "specify a list of hooks you want and pre-commit manages the installation and\n" "execution of any hook written in any language before every commit." msgstr "" -#: gnu/packages/version-control.scm:1796 +#: gnu/packages/version-control.scm:1789 msgid "" "Mercurial is a free, distributed source control management tool. It\n" "efficiently handles projects of any size and offers an easy and intuitive\n" "interface." msgstr "" -#: gnu/packages/version-control.scm:1823 +#: gnu/packages/version-control.scm:1816 msgid "" "Evolve is a Mercurial extension for faster and safer mutable\n" "history. It implements the changeset evolution concept for Mercurial." msgstr "" -#: gnu/packages/version-control.scm:1879 +#: gnu/packages/version-control.scm:1872 msgid "" "This package provides a Mercurial extension for signing\n" "the changeset hash of commits. The signure is embedded directly in the\n" @@ -20256,7 +20503,7 @@ msgid "" "can be used for signing." msgstr "" -#: gnu/packages/version-control.scm:1914 +#: gnu/packages/version-control.scm:1907 msgid "" "Neon is an HTTP and WebDAV client library, with a C interface and the\n" "following features:\n" @@ -20278,7 +20525,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/version-control.scm:2010 +#: gnu/packages/version-control.scm:2003 msgid "" "@dfn{Subversion} (svn) exists to be recognized and adopted as a\n" "centralized version control system characterized by its\n" @@ -20287,7 +20534,7 @@ msgid "" "projects, from individuals to large-scale enterprise operations." msgstr "" -#: gnu/packages/version-control.scm:2044 +#: gnu/packages/version-control.scm:2037 msgid "" "RCS is the original Revision Control System. It works on a\n" "file-by-file basis, in contrast to subsequent version control systems such as\n" @@ -20296,21 +20543,21 @@ msgid "" "machine." msgstr "" -#: gnu/packages/version-control.scm:2067 +#: gnu/packages/version-control.scm:2060 msgid "" "@code{blame} outputs an annotated revision from each RCS file. An\n" "annotated RCS file describes the revision and date in which each line was\n" "added to the file, and the author of each line." msgstr "" -#: gnu/packages/version-control.scm:2088 +#: gnu/packages/version-control.scm:2081 msgid "" "The @code{rcshist} utility displays the complete revision history of a\n" "set of RCS files including log messages and patches. It can also display the\n" "patch associated with a particular revision of an RCS file." msgstr "" -#: gnu/packages/version-control.scm:2116 +#: gnu/packages/version-control.scm:2109 msgid "" "CVS is a version control system, an important component of Source\n" "Configuration Management (SCM). Using it, you can record the history of\n" @@ -20318,7 +20565,7 @@ msgid "" "RCS, PRCS, and Aegis packages." msgstr "" -#: gnu/packages/version-control.scm:2150 +#: gnu/packages/version-control.scm:2143 msgid "" "This program analyzes a collection of RCS files in a CVS\n" "repository (or outside of one) and, when possible, emits an equivalent history\n" @@ -20331,7 +20578,7 @@ msgid "" "masters from remote CVS hosts." msgstr "" -#: gnu/packages/version-control.scm:2180 +#: gnu/packages/version-control.scm:2173 msgid "" "The vc-dwim package contains two tools, \"vc-dwim\" and \"vc-chlog\".\n" "vc-dwim is a tool that simplifies the task of maintaining a ChangeLog and\n" @@ -20341,21 +20588,21 @@ msgid "" "standards-compliant ChangeLog entries based on the changes that it detects." msgstr "" -#: gnu/packages/version-control.scm:2207 +#: gnu/packages/version-control.scm:2200 msgid "" "Diffstat reads the output of @command{diff} and displays a histogram of\n" "the insertions, deletions, and modifications per file. It is useful for\n" "reviewing large, complex patch files." msgstr "" -#: gnu/packages/version-control.scm:2246 +#: gnu/packages/version-control.scm:2239 msgid "" "GNU CSSC provides a replacement for the legacy Unix source\n" "code control system SCCS. This allows old code still under that system to be\n" "accessed and migrated on modern systems." msgstr "" -#: gnu/packages/version-control.scm:2338 +#: gnu/packages/version-control.scm:2331 msgid "" "Aegis is a project change supervisor, and performs some of\n" "the Software Configuration Management needed in a CASE environment. Aegis\n" @@ -20366,7 +20613,7 @@ msgid "" "any project with more than one developer, is one of Aegis's major functions." msgstr "" -#: gnu/packages/version-control.scm:2412 +#: gnu/packages/version-control.scm:2405 msgid "" "Reposurgeon enables risky operations that version-control\n" "systems don't want to let you do, such as editing past comments and metadata\n" @@ -20377,20 +20624,20 @@ msgid "" "from Subversion to any supported Distributed Version Control System (DVCS)." msgstr "" -#: gnu/packages/version-control.scm:2451 +#: gnu/packages/version-control.scm:2444 msgid "" "Tig is an ncurses text user interface for Git, primarily intended as\n" "a history browser. It can also stage hunks for commit, or colorize the\n" "output of the @code{git} command." msgstr "" -#: gnu/packages/version-control.scm:2474 +#: gnu/packages/version-control.scm:2467 msgid "" "Recursively find the newest file in a file tree and print its\n" "modification time." msgstr "" -#: gnu/packages/version-control.scm:2521 +#: gnu/packages/version-control.scm:2514 msgid "" "Myrepos provides the @code{mr} command, which maps an operation (e.g.,\n" "fetching updates) over a collection of version control repositories. It\n" @@ -20398,14 +20645,14 @@ msgid "" "Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity." msgstr "" -#: gnu/packages/version-control.scm:2558 +#: gnu/packages/version-control.scm:2551 msgid "" "Grokmirror enables replicating large git repository\n" "collections efficiently. Mirrors decide to clone and update repositories\n" "based on a manifest file published by servers." msgstr "" -#: gnu/packages/version-control.scm:2588 +#: gnu/packages/version-control.scm:2581 msgid "" "The @code{b4} command is designed to make it easier to participate in\n" "patch-based workflows for projects that have public-inbox archives.\n" @@ -20419,26 +20666,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/version-control.scm:2635 +#: gnu/packages/version-control.scm:2628 msgid "" "This wrapper around rclone makes any destination supported\n" "by rclone usable with git-annex." msgstr "" -#: gnu/packages/version-control.scm:2689 +#: gnu/packages/version-control.scm:2682 msgid "" "Fossil is a distributed source control management system which supports\n" "access and administration over HTTP CGI or via a built-in HTTP server. It has\n" "a built-in wiki, built-in file browsing, built-in tickets system, etc." msgstr "" -#: gnu/packages/version-control.scm:2720 +#: gnu/packages/version-control.scm:2713 msgid "" "Stagit creates static pages for git repositories, the results can\n" "be served with a HTTP file server of your choice." msgstr "" -#: gnu/packages/version-control.scm:2756 +#: gnu/packages/version-control.scm:2749 msgid "" "@code{gource} provides a software version control\n" "visualization. The repository is displayed as a tree where the root of the\n" @@ -20447,7 +20694,7 @@ msgid "" "specific files and directories." msgstr "" -#: gnu/packages/version-control.scm:2804 +#: gnu/packages/version-control.scm:2797 #, scheme-format msgid "" "SRC (or src) is simple revision control, a version-control system for\n" @@ -20457,7 +20704,7 @@ msgid "" "directory full of HOWTOs." msgstr "" -#: gnu/packages/version-control.scm:2856 +#: gnu/packages/version-control.scm:2849 msgid "" "This Git extension defines a subcommand,\n" "@code{when-merged}, whose core operation is to find the merge that brought a\n" @@ -20465,7 +20712,7 @@ msgid "" "how information about the merge is displayed." msgstr "" -#: gnu/packages/version-control.scm:2900 +#: gnu/packages/version-control.scm:2893 msgid "" "This Git extension defines a subcommand, @code{imerge},\n" "which performs an incremental merge between two branches. Its two primary\n" @@ -20474,20 +20721,20 @@ msgid "" "interrupted, published, and collaborated on while in progress." msgstr "" -#: gnu/packages/version-control.scm:2951 +#: gnu/packages/version-control.scm:2944 msgid "" "Git Large File Storage (LFS) replaces large files such as audio samples,\n" "videos, datasets, and graphics with text pointers inside Git, while storing the\n" "file contents on a remote server." msgstr "" -#: gnu/packages/version-control.scm:2986 +#: gnu/packages/version-control.scm:2979 msgid "" "@code{git open} opens the repository's website from the command-line,\n" "guessing the URL pattern from the @code{origin} remote." msgstr "" -#: gnu/packages/version-control.scm:3040 +#: gnu/packages/version-control.scm:3033 msgid "" "GNU Arch, aka. @code{tla}, was one of the first free distributed\n" "version-control systems (DVCS). It saw its last release in 2006. This\n" @@ -20495,21 +20742,21 @@ msgid "" "for historians." msgstr "" -#: gnu/packages/version-control.scm:3086 +#: gnu/packages/version-control.scm:3079 msgid "" "@code{diff-so-fancy} strives to make your diffs human readable instead\n" "of machine readable. This helps improve code quality and helps you spot\n" "defects faster." msgstr "" -#: gnu/packages/version-control.scm:3142 +#: gnu/packages/version-control.scm:3135 #, fuzzy msgid "This package provides a Git implementation library." msgstr "" "Denne pakke tilbyder Pythonbindinger til virtualiseringsbiblioteket\n" "libvirt." -#: gnu/packages/version-control.scm:3192 +#: gnu/packages/version-control.scm:3185 msgid "" "This package provides a command-line tool to manage\n" "multiple Git repos.\n" @@ -20524,7 +20771,7 @@ msgid "" "If several repos are related, it helps to see their status together." msgstr "" -#: gnu/packages/version-control.scm:3250 +#: gnu/packages/version-control.scm:3243 #, scheme-format msgid "" "@code{ghq} provides a way to organize remote repository clones, like\n" @@ -20533,7 +20780,7 @@ msgid "" "using the remote repository URL's host and path." msgstr "" -#: gnu/packages/version-control.scm:3295 +#: gnu/packages/version-control.scm:3288 msgid "" "TkRev (formerly TkCVS) is a Tcl/Tk-based graphical interface to the CVS,\n" "Subversion and Git configuration management systems. It will also help with\n" @@ -20542,7 +20789,7 @@ msgid "" "TkDiff is included for browsing and merging your changes." msgstr "" -#: gnu/packages/version-control.scm:3328 +#: gnu/packages/version-control.scm:3321 msgid "" "@command{git filter-repo} is a versatile tool for rewriting history,\n" "which roughly falls into the same space of tool like git filter-branch but\n" @@ -20580,7 +20827,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:865 +#: gnu/packages/virtualization.scm:870 msgid "" "Ganeti is a virtual machine management tool built on top of existing\n" "virtualization technologies such as Xen or KVM. Ganeti controls:\n" @@ -20597,19 +20844,19 @@ msgid "" "commodity hardware." msgstr "" -#: gnu/packages/virtualization.scm:902 +#: gnu/packages/virtualization.scm:907 msgid "" "This package provides a guest OS definition for Ganeti that uses\n" "Guix to build virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:996 +#: gnu/packages/virtualization.scm:1001 msgid "" "This package provides a guest OS definition for Ganeti. It installs\n" "Debian or a derivative using @command{debootstrap}." msgstr "" -#: gnu/packages/virtualization.scm:1056 +#: gnu/packages/virtualization.scm:1061 msgid "" "libosinfo is a GObject based library API for managing\n" "information about operating systems, hypervisors and the (virtual) hardware\n" @@ -20619,21 +20866,21 @@ msgid "" "all common programming languages. Vala bindings are also provided." msgstr "" -#: gnu/packages/virtualization.scm:1105 +#: gnu/packages/virtualization.scm:1109 msgid "" "LXC is a userspace interface for the Linux kernel containment features.\n" "Through a powerful API and simple tools, it lets Linux users easily create and\n" "manage system or application containers." msgstr "" -#: gnu/packages/virtualization.scm:1131 +#: gnu/packages/virtualization.scm:1135 msgid "" "LXCFS is a small FUSE file system written with the intention\n" "of making Linux containers feel more like a virtual machine.\n" "It started as a side project of LXC but can be used by any run-time." msgstr "" -#: gnu/packages/virtualization.scm:1239 +#: gnu/packages/virtualization.scm:1237 msgid "" "LXD is a next generation system container manager. It\n" "offers a user experience similar to virtual machines but using Linux\n" @@ -20642,7 +20889,7 @@ msgid "" "pretty simple, REST API." msgstr "" -#: gnu/packages/virtualization.scm:1332 +#: gnu/packages/virtualization.scm:1330 msgid "" "Libvirt is a C toolkit to interact with the virtualization\n" "capabilities of recent versions of Linux. The library aims at providing long\n" @@ -20650,7 +20897,7 @@ msgid "" "to integrate other virtualization mechanisms if needed." msgstr "" -#: gnu/packages/virtualization.scm:1363 +#: gnu/packages/virtualization.scm:1359 msgid "" "libvirt-glib wraps the libvirt library to provide a\n" "high-level object-oriented API better suited for glib-based applications, via\n" @@ -20663,7 +20910,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/virtualization.scm:1407 +#: gnu/packages/virtualization.scm:1403 msgid "" "This package provides Python bindings to the libvirt\n" "virtualization library." @@ -20671,7 +20918,7 @@ msgstr "" "Denne pakke tilbyder Pythonbindinger til virtualiseringsbiblioteket\n" "libvirt." -#: gnu/packages/virtualization.scm:1520 +#: gnu/packages/virtualization.scm:1516 msgid "" "The virt-manager application is a desktop user interface for managing\n" "virtual machines through libvirt. It primarily targets KVM VMs, but also\n" @@ -20679,7 +20926,7 @@ msgid "" "domains, their live performance and resource utilization statistics." msgstr "" -#: gnu/packages/virtualization.scm:1620 +#: gnu/packages/virtualization.scm:1616 msgid "" "Using this tool, you can freeze a running application (or\n" "part of it) and checkpoint it to a hard drive as a collection of files. You\n" @@ -20688,14 +20935,14 @@ msgid "" "mainly implemented in user space." msgstr "" -#: gnu/packages/virtualization.scm:1647 +#: gnu/packages/virtualization.scm:1643 msgid "" "qmpbackup is designed to create and restore full and\n" "incremental backups of running QEMU virtual machines via QMP, the QEMU\n" "Machine Protocol." msgstr "" -#: gnu/packages/virtualization.scm:1731 +#: gnu/packages/virtualization.scm:1727 msgid "" "Looking Glass allows the use of a KVM (Kernel-based Virtual\n" "Machine) configured for VGA PCI Pass-through without an attached physical\n" @@ -20703,7 +20950,7 @@ msgid "" "main monitor/GPU." msgstr "" -#: gnu/packages/virtualization.scm:1783 +#: gnu/packages/virtualization.scm:1779 msgid "" "@command{runc} is a command line client for running applications\n" "packaged according to the\n" @@ -20712,13 +20959,13 @@ msgid "" "Open Container Initiative specification." msgstr "" -#: gnu/packages/virtualization.scm:1832 +#: gnu/packages/virtualization.scm:1828 msgid "" "@command{umoci} is a tool that allows for high-level modification of an\n" "Open Container Initiative (OCI) image layout and its tagged images." msgstr "" -#: gnu/packages/virtualization.scm:1886 +#: gnu/packages/virtualization.scm:1882 msgid "" "@command{skopeo} is a command line utility providing various operations\n" "with container images and container image registries. It can:\n" @@ -20739,14 +20986,14 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:1922 +#: gnu/packages/virtualization.scm:1918 msgid "" "Python-vagrant is a Python module that provides a thin wrapper around the\n" "@code{vagrant} command line executable, allowing programmatic control of Vagrant\n" "virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:1977 +#: gnu/packages/virtualization.scm:1979 msgid "" "Bubblewrap is aimed at running applications in a sandbox,\n" "restricting their access to parts of the operating system or user data such as\n" @@ -20756,7 +21003,7 @@ msgid "" "by default and can be made read-only." msgstr "" -#: gnu/packages/virtualization.scm:2004 +#: gnu/packages/virtualization.scm:2006 msgid "" "Bochs is an emulator which can emulate Intel x86 CPU, common I/O\n" "devices, and a custom BIOS. It can also be compiled to emulate many different\n" @@ -20765,7 +21012,7 @@ msgid "" "DOS or Microsoft Windows." msgstr "" -#: gnu/packages/virtualization.scm:2210 +#: gnu/packages/virtualization.scm:2212 msgid "" "This package provides the Xen Virtual Machine Monitor\n" "which is a hypervisor." @@ -20773,58 +21020,61 @@ msgstr "" "Denne pakke tilbyder Xen Virtual Machine Monitor\n" "der er en hypervisor." -#: gnu/packages/virtualization.scm:2242 +#: gnu/packages/virtualization.scm:2244 msgid "" "This package contains a set of tools to assist\n" "administrators and developers in managing the database." msgstr "" -#: gnu/packages/virtualization.scm:2275 +#: gnu/packages/virtualization.scm:2277 msgid "" "Osinfo-db provides the database files for use with the\n" "libosinfo library. It provides information about guest operating systems for\n" "use with virtualization provisioning tools" msgstr "" -#: gnu/packages/virtualization.scm:2317 +#: gnu/packages/virtualization.scm:2319 msgid "" "@code{transient} is a wrapper for QEMU allowing the creation of virtual\n" "machines with shared folder, ssh, and disk creation support." msgstr "" -#: gnu/packages/webkit.scm:93 +#: gnu/packages/webkit.scm:94 msgid "" "LibWPE is general-purpose library specifically developed for\n" "the WPE-flavored port of WebKit." msgstr "" -#: gnu/packages/webkit.scm:119 +#: gnu/packages/webkit.scm:120 msgid "" "This package provides a backend implementation for the WPE WebKit\n" "engine that uses Wayland for graphics output." msgstr "" -#: gnu/packages/webkit.scm:216 +#: gnu/packages/webkit.scm:227 msgid "" "WPE WebKit allows embedders to create simple and performant\n" "systems based on Web platform technologies. It is designed with hardware\n" "acceleration in mind, leveraging common 3D graphics APIs for best performance." msgstr "" -#: gnu/packages/webkit.scm:351 +#: gnu/packages/webkit.scm:355 msgid "" "WebKitGTK+ is a full-featured port of the WebKit rendering engine,\n" "suitable for projects requiring any kind of web integration, from hybrid\n" -"HTML/CSS applications to full-fledged web browsers." +"HTML/CSS applications to full-fledged web browsers. WebKitGTK+ video playing\n" +"capabilities can be extended through the use of GStreamer plugins (not\n" +"propagated by default) such as @code{gst-plugins-good} and\n" +"@code{gst-plugins-bad}." msgstr "" -#: gnu/packages/web.scm:250 +#: gnu/packages/web.scm:251 msgid "" "Qhttp is a light-weight and asynchronous HTTP library\n" "(both server & client) in Qt5 and C++14." msgstr "" -#: gnu/packages/web.scm:280 +#: gnu/packages/web.scm:281 msgid "" "The Apache HTTP Server Project is a collaborative software development\n" "effort aimed at creating a robust, commercial-grade, featureful, and\n" @@ -20834,14 +21084,14 @@ msgid "" "and its related documentation." msgstr "" -#: gnu/packages/web.scm:314 +#: gnu/packages/web.scm:315 msgid "" "The mod_wsgi module for the Apache HTTPD Server adds support for running\n" "applications that support the Python @acronym{WSGI, Web Server Gateway\n" "Interface} specification." msgstr "" -#: gnu/packages/web.scm:356 +#: gnu/packages/web.scm:357 msgid "" "Monolith bundles any web page into a single HTML file.\n" "\n" @@ -20854,38 +21104,38 @@ msgid "" "the same, being completely separated from the Internet." msgstr "" -#: gnu/packages/web.scm:460 +#: gnu/packages/web.scm:461 msgid "" "Nginx (\"engine X\") is a high-performance web and reverse proxy server\n" "created by Igor Sysoev. It can be used both as a stand-alone web server\n" "and as a proxy to reduce the load on back-end HTTP or mail servers." msgstr "" -#: gnu/packages/web.scm:518 +#: gnu/packages/web.scm:519 msgid "This package provides HTML documentation for the nginx web server." msgstr "Denne pakke tilbyder HTML-dokumentation for nginx-internetserveren." -#: gnu/packages/web.scm:647 +#: gnu/packages/web.scm:648 msgid "" "This nginx module parses the Accept-Language field in HTTP headers and\n" "chooses the most suitable locale for the user from the list of locales\n" "supported at your website." msgstr "" -#: gnu/packages/web.scm:694 +#: gnu/packages/web.scm:695 msgid "" "XSLScript is a terse notation for writing complex XSLT stylesheets.\n" "This is modified version, specifically intended for use with the NGinx\n" "documentation." msgstr "" -#: gnu/packages/web.scm:767 +#: gnu/packages/web.scm:768 msgid "" "This NGINX module provides a scripting support with Lua\n" "programming language." msgstr "" -#: gnu/packages/web.scm:820 +#: gnu/packages/web.scm:821 msgid "" "This NGINX module provides streaming with the @acronym{RTMP,\n" "Real-Time Messaging Protocol}, @acronym{DASH, Dynamic Adaptive Streaming over HTTP},\n" @@ -20895,7 +21145,7 @@ msgid "" "stream. Remote control of the module is possible over HTTP." msgstr "" -#: gnu/packages/web.scm:882 +#: gnu/packages/web.scm:883 msgid "" "Lighttpd is a secure, fast, compliant, and very flexible web-server that\n" "has been optimized for high-performance environments. It has a very low\n" @@ -20903,41 +21153,41 @@ msgid "" "CGI, authentication, output compression, URL rewriting and many more." msgstr "" -#: gnu/packages/web.scm:910 +#: gnu/packages/web.scm:911 msgid "" "FastCGI is a language-independent, scalable extension to CGI\n" "that provides high performance without the limitations of server specific\n" "APIs." msgstr "" -#: gnu/packages/web.scm:948 +#: gnu/packages/web.scm:949 msgid "" "Fcgiwrap is a simple server for running CGI applications\n" "over FastCGI. It hopes to provide clean CGI support to Nginx (and other web\n" "servers that may need it)." msgstr "" -#: gnu/packages/web.scm:977 +#: gnu/packages/web.scm:978 msgid "" "Starman is a PSGI perl web server that has unique features\n" "such as high performance, preforking, signal support, superdaemon awareness,\n" "and UNIX socket support." msgstr "" -#: gnu/packages/web.scm:1010 +#: gnu/packages/web.scm:1011 msgid "" "IcedTea-Web is an implementation of the @dfn{Java Network Launching\n" "Protocol}, also known as Java Web Start. This package provides tools and\n" "libraries for working with JNLP applets." msgstr "" -#: gnu/packages/web.scm:1035 +#: gnu/packages/web.scm:1036 msgid "" "Jansson is a C library for encoding, decoding and manipulating JSON\n" "data." msgstr "" -#: gnu/packages/web.scm:1055 +#: gnu/packages/web.scm:1056 msgid "" "JSON-C implements a reference counting object model that allows you to\n" "easily construct JSON objects in C, output them as JSON-formatted strings and\n" @@ -20945,7 +21195,7 @@ msgid "" "It aims to conform to RFC 7159." msgstr "" -#: gnu/packages/web.scm:1131 +#: gnu/packages/web.scm:1132 msgid "" "This package provides a very low footprint JSON parser\n" "written in portable ANSI C.\n" @@ -20958,21 +21208,21 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:1176 +#: gnu/packages/web.scm:1177 msgid "" "QJson is a Qt-based library that maps JSON data to\n" "@code{QVariant} objects. JSON arrays will be mapped to @code{QVariantList}\n" "instances, while JSON's objects will be mapped to @code{QVariantMap}." msgstr "" -#: gnu/packages/web.scm:1227 +#: gnu/packages/web.scm:1228 msgid "" "QOAuth is an attempt to support interaction with\n" "OAuth-powered network services in a Qt way, i.e. simply, clearly and\n" "efficiently. It gives the application developer no more than 4 methods." msgstr "" -#: gnu/packages/web.scm:1339 +#: gnu/packages/web.scm:1340 msgid "" "Krona is a flexible tool for exploring the relative proportions of\n" "hierarchical data, such as metagenomic classifications, using a radial,\n" @@ -20981,26 +21231,26 @@ msgid "" "current version of any major web browser." msgstr "" -#: gnu/packages/web.scm:1380 +#: gnu/packages/web.scm:1381 msgid "" "RapidJSON is a fast JSON parser/generator for C++ with both SAX/DOM\n" "style API." msgstr "" -#: gnu/packages/web.scm:1409 +#: gnu/packages/web.scm:1410 msgid "" "Yet Another JSON Library (YAJL) is a small event-driven (SAX-style) JSON\n" "parser written in ANSI C and a small validating JSON generator." msgstr "" -#: gnu/packages/web.scm:1439 +#: gnu/packages/web.scm:1440 msgid "" "Libwebsockets is a library that allows C programs to establish client\n" "and server WebSockets connections---a protocol layered above HTTP that allows\n" "for efficient socket-like bidirectional reliable communication channels." msgstr "" -#: gnu/packages/web.scm:1468 +#: gnu/packages/web.scm:1469 msgid "" "WABT (pronounced: wabbit) is a suite of tools for\n" "WebAssembly, including:\n" @@ -21025,7 +21275,7 @@ msgid "" "other systems that want to manipulate WebAssembly files." msgstr "" -#: gnu/packages/web.scm:1518 +#: gnu/packages/web.scm:1519 msgid "" "WebSocket++ is a C++ library that can be used to implement\n" "WebSocket functionality. The goals of the project are to provide a WebSocket\n" @@ -21033,7 +21283,7 @@ msgid "" "high performance." msgstr "" -#: gnu/packages/web.scm:1558 +#: gnu/packages/web.scm:1559 msgid "" "@code{Wslay} is an event-based C library for the WebSocket\n" "protocol version 13, described in RFC 6455. Besides a high-level API it\n" @@ -21042,7 +21292,7 @@ msgid "" "perform the opening handshake in HTTP." msgstr "" -#: gnu/packages/web.scm:1588 +#: gnu/packages/web.scm:1589 msgid "" "A \"public suffix\" is a domain name under which Internet users can\n" "directly register own names.\n" @@ -21060,20 +21310,20 @@ msgid "" "UTS#46." msgstr "" -#: gnu/packages/web.scm:1633 +#: gnu/packages/web.scm:1634 msgid "" "HTML Tidy is a command-line tool and C library that can be\n" "used to validate and fix HTML data." msgstr "" -#: gnu/packages/web.scm:1680 +#: gnu/packages/web.scm:1681 msgid "" "The esbuild tool provides a unified bundler, transpiler and\n" "minifier. It packages up JavaScript and TypeScript code, along with JSON\n" "and other data, for distribution on the web." msgstr "" -#: gnu/packages/web.scm:1716 +#: gnu/packages/web.scm:1717 msgid "" "Tinyproxy is a light-weight HTTP/HTTPS proxy\n" "daemon. Designed from the ground up to be fast and yet small, it is an ideal\n" @@ -21082,14 +21332,14 @@ msgid "" "unavailable." msgstr "" -#: gnu/packages/web.scm:1751 +#: gnu/packages/web.scm:1752 msgid "" "Polipo is a small caching web proxy (web cache, HTTP proxy, and proxy\n" "server). It was primarily designed to be used by one person or a small group\n" "of people." msgstr "" -#: gnu/packages/web.scm:1779 +#: gnu/packages/web.scm:1780 msgid "" "Websockify translates WebSockets traffic to normal socket\n" "traffic. Websockify accepts the WebSockets handshake, parses it, and then\n" @@ -21097,7 +21347,7 @@ msgid "" "directions." msgstr "" -#: gnu/packages/web.scm:1806 +#: gnu/packages/web.scm:1807 msgid "" "WWWOFFLE is a proxy web server that is especially good for\n" "intermittent internet links. It can cache HTTP, HTTPS, FTP, and finger\n" @@ -21106,7 +21356,7 @@ msgid "" "changes, and much more." msgstr "" -#: gnu/packages/web.scm:1832 +#: gnu/packages/web.scm:1833 msgid "" "liboauth is a collection of C functions implementing the OAuth API.\n" "liboauth provides functions to escape and encode strings according to OAuth\n" @@ -21115,25 +21365,25 @@ msgid "" "hash/signatures." msgstr "" -#: gnu/packages/web.scm:1855 +#: gnu/packages/web.scm:1856 msgid "" "This package contains support scripts called by libquvi to\n" "parse media stream properties." msgstr "" -#: gnu/packages/web.scm:1889 +#: gnu/packages/web.scm:1890 msgid "" "libquvi is a library with a C API for parsing media stream\n" "URLs and extracting their actual media files." msgstr "" -#: gnu/packages/web.scm:1911 +#: gnu/packages/web.scm:1912 msgid "" "quvi is a command-line-tool suite to extract media files\n" "from streaming URLs. It is a command-line wrapper for the libquvi library." msgstr "" -#: gnu/packages/web.scm:1983 +#: gnu/packages/web.scm:1984 msgid "" "serf is a C-based HTTP client library built upon the Apache Portable\n" "Runtime (APR) library. It multiplexes connections, running the read/write\n" @@ -21141,7 +21391,7 @@ msgid "" "minimum to provide high performance operation." msgstr "" -#: gnu/packages/web.scm:2018 +#: gnu/packages/web.scm:2019 msgid "" "LibSass is a @acronym{SASS,Syntactically awesome style sheets} compiler\n" "library designed for portability and efficiency. To actually compile SASS\n" @@ -21149,29 +21399,29 @@ msgid "" "@var{sassc} for example." msgstr "" -#: gnu/packages/web.scm:2067 +#: gnu/packages/web.scm:2068 msgid "" "SassC is a compiler written in C for the CSS pre-processor\n" "language known as SASS." msgstr "" -#: gnu/packages/web.scm:2112 +#: gnu/packages/web.scm:2113 msgid "" "This module provides methods to compile a log format string\n" "to perl-code, for faster generation of access_log lines." msgstr "" -#: gnu/packages/web.scm:2140 +#: gnu/packages/web.scm:2141 msgid "Authen::SASL provides an SASL authentication framework." msgstr "" -#: gnu/packages/web.scm:2163 +#: gnu/packages/web.scm:2164 msgid "" "This Catalyst action implements a sensible default end\n" "action, which will forward to the first available view." msgstr "" -#: gnu/packages/web.scm:2195 +#: gnu/packages/web.scm:2196 msgid "" "This Action handles doing automatic method dispatching for\n" "REST requests. It takes a normal Catalyst action, and changes the dispatch to\n" @@ -21180,20 +21430,20 @@ msgid "" "regular method." msgstr "" -#: gnu/packages/web.scm:2226 +#: gnu/packages/web.scm:2227 msgid "" "The Catalyst::Authentication::Store::DBIx::Class class\n" "provides access to authentication information stored in a database via\n" "DBIx::Class." msgstr "" -#: gnu/packages/web.scm:2252 +#: gnu/packages/web.scm:2253 msgid "" "Catalyst::Component::InstancePerContext returns a new\n" "instance of a component on each request." msgstr "" -#: gnu/packages/web.scm:2288 +#: gnu/packages/web.scm:2289 msgid "" "The Catalyst-Devel distribution includes a variety of\n" "modules useful for the development of Catalyst applications, but not required\n" @@ -21203,7 +21453,7 @@ msgid "" "modules." msgstr "" -#: gnu/packages/web.scm:2316 +#: gnu/packages/web.scm:2317 msgid "" "Dispatch type managing path-matching behaviour using\n" "regexes. Regex dispatch types have been deprecated and removed from Catalyst\n" @@ -21213,20 +21463,20 @@ msgid "" "when the dispatch type is first seen in your application." msgstr "" -#: gnu/packages/web.scm:2363 +#: gnu/packages/web.scm:2364 msgid "" "This is a Catalyst Model for DBIx::Class::Schema-based\n" "Models." msgstr "" -#: gnu/packages/web.scm:2385 +#: gnu/packages/web.scm:2386 msgid "" "This Catalyst plugin enables you to create \"access logs\"\n" "from within a Catalyst application instead of requiring a webserver to do it\n" "for you. It will work even with Catalyst debug logging turned off." msgstr "" -#: gnu/packages/web.scm:2419 +#: gnu/packages/web.scm:2420 msgid "" "The authentication plugin provides generic user support for\n" "Catalyst apps. It is the basis for both authentication (checking the user is\n" @@ -21234,32 +21484,32 @@ msgid "" "system authorises them to do)." msgstr "" -#: gnu/packages/web.scm:2447 +#: gnu/packages/web.scm:2448 msgid "" "Catalyst::Plugin::Authorization::Roles provides role-based\n" "authorization for Catalyst based on Catalyst::Plugin::Authentication." msgstr "" -#: gnu/packages/web.scm:2469 +#: gnu/packages/web.scm:2470 msgid "" "This plugin creates and validates Captcha images for\n" "Catalyst." msgstr "" -#: gnu/packages/web.scm:2493 +#: gnu/packages/web.scm:2494 msgid "" "This module will attempt to load find and load configuration\n" "files of various types. Currently it supports YAML, JSON, XML, INI and Perl\n" "formats." msgstr "" -#: gnu/packages/web.scm:2522 +#: gnu/packages/web.scm:2523 msgid "" "This plugin links the two pieces required for session\n" "management in web applications together: the state, and the store." msgstr "" -#: gnu/packages/web.scm:2548 +#: gnu/packages/web.scm:2549 msgid "" "In order for Catalyst::Plugin::Session to work, the session\n" "ID needs to be stored on the client, and the session data needs to be stored\n" @@ -21267,14 +21517,14 @@ msgid "" "cookie mechanism." msgstr "" -#: gnu/packages/web.scm:2578 +#: gnu/packages/web.scm:2579 msgid "" "Catalyst::Plugin::Session::Store::FastMmap is a fast session\n" "storage plugin for Catalyst that uses an mmap'ed file to act as a shared\n" "memory interprocess cache. It is based on Cache::FastMmap." msgstr "" -#: gnu/packages/web.scm:2602 +#: gnu/packages/web.scm:2603 msgid "" "This plugin enhances the standard Catalyst debug screen by\n" "including a stack trace of your application up to the point where the error\n" @@ -21282,7 +21532,7 @@ msgid "" "number, file name, and code context surrounding the line number." msgstr "" -#: gnu/packages/web.scm:2628 +#: gnu/packages/web.scm:2629 msgid "" "The Static::Simple plugin is designed to make serving static\n" "content in your application during development quick and easy, without\n" @@ -21293,7 +21543,7 @@ msgid "" "MIME type directly to the browser, without being processed through Catalyst." msgstr "" -#: gnu/packages/web.scm:2687 +#: gnu/packages/web.scm:2688 msgid "" "Catalyst is a modern framework for making web applications.\n" "It is designed to make it easy to manage the various tasks you need to do to\n" @@ -21301,7 +21551,7 @@ msgid "" "\"plug in\" existing Perl modules that do what you need." msgstr "" -#: gnu/packages/web.scm:2715 +#: gnu/packages/web.scm:2716 msgid "" "This module is a Moose::Role which allows you more\n" "flexibility in your application's deployment configurations when deployed\n" @@ -21309,26 +21559,26 @@ msgid "" "replaced with the contents of the X-Request-Base header." msgstr "" -#: gnu/packages/web.scm:2743 +#: gnu/packages/web.scm:2744 msgid "" "The purpose of this module is to provide a method for\n" "downloading data into many supportable formats. For example, downloading a\n" "table based report in a variety of formats (CSV, HTML, etc.)." msgstr "" -#: gnu/packages/web.scm:2767 +#: gnu/packages/web.scm:2768 msgid "" "Catalyst::View::JSON is a Catalyst View handler that returns\n" "stash data in JSON format." msgstr "" -#: gnu/packages/web.scm:2793 +#: gnu/packages/web.scm:2794 msgid "" "This module is a Catalyst view class for the Template\n" "Toolkit." msgstr "" -#: gnu/packages/web.scm:2821 +#: gnu/packages/web.scm:2822 msgid "" "Adds a \"COMPONENT\" in Catalyst::Component method to your\n" "Catalyst component base class that reads the optional \"traits\" parameter\n" @@ -21337,19 +21587,19 @@ msgid "" "MooseX::Traits::Pluggable." msgstr "" -#: gnu/packages/web.scm:2845 +#: gnu/packages/web.scm:2846 msgid "" "CatalystX::RoleApplicator applies roles to Catalyst\n" "application classes." msgstr "" -#: gnu/packages/web.scm:2870 +#: gnu/packages/web.scm:2871 msgid "" "This module provides a Catalyst extension to replace the\n" "development server with Starman." msgstr "" -#: gnu/packages/web.scm:2892 +#: gnu/packages/web.scm:2893 msgid "" "CGI.pm is a stable, complete and mature solution for\n" "processing and preparing HTTP requests and responses. Major features include\n" @@ -21358,44 +21608,44 @@ msgid "" "headers." msgstr "" -#: gnu/packages/web.scm:2919 +#: gnu/packages/web.scm:2920 msgid "" "@code{CGI::FormBuilder} provides an easy way to generate and process CGI\n" "form-based applications." msgstr "" -#: gnu/packages/web.scm:2946 +#: gnu/packages/web.scm:2947 msgid "" "@code{CGI::Session} provides modular session management system across\n" "HTTP requests." msgstr "" -#: gnu/packages/web.scm:2967 +#: gnu/packages/web.scm:2968 msgid "" "CGI::Simple provides a relatively lightweight drop in\n" "replacement for CGI.pm. It shares an identical OO interface to CGI.pm for\n" "parameter parsing, file upload, cookie handling and header generation." msgstr "" -#: gnu/packages/web.scm:2989 +#: gnu/packages/web.scm:2990 msgid "" "This is a module for building structured data from CGI\n" "inputs, in a manner reminiscent of how PHP does." msgstr "" -#: gnu/packages/web.scm:3012 +#: gnu/packages/web.scm:3013 msgid "" "This module provides functions that deal with the date\n" "formats used by the HTTP protocol." msgstr "" -#: gnu/packages/web.scm:3033 +#: gnu/packages/web.scm:3034 msgid "" "Digest::MD5::File is a Perl extension for getting MD5 sums\n" "for files and urls." msgstr "" -#: gnu/packages/web.scm:3053 +#: gnu/packages/web.scm:3054 msgid "" "The POSIX locale system is used to specify both the language\n" "conventions requested by the user and the preferred character set to\n" @@ -21407,66 +21657,66 @@ msgid "" "with Encode::decode(locale => $string)." msgstr "" -#: gnu/packages/web.scm:3086 +#: gnu/packages/web.scm:3087 msgid "" "@code{Feed::Find} implements feed auto-discovery for finding\n" "syndication feeds, given a URI. It will discover the following feed formats:\n" "RSS 0.91, RSS 1.0, RSS 2.0, Atom." msgstr "" -#: gnu/packages/web.scm:3109 +#: gnu/packages/web.scm:3110 msgid "" "The File::Listing module exports a single function called parse_dir(),\n" "which can be used to parse directory listings." msgstr "" -#: gnu/packages/web.scm:3142 +#: gnu/packages/web.scm:3143 msgid "" "Finance::Quote gets stock quotes from various internet sources, including\n" "Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange." msgstr "" -#: gnu/packages/web.scm:3165 +#: gnu/packages/web.scm:3166 msgid "" "This is a Perl extension for using GSSAPI C bindings as\n" "described in RFC 2744." msgstr "" -#: gnu/packages/web.scm:3187 +#: gnu/packages/web.scm:3188 msgid "" "HTML::Element::Extended is a Perl extension for manipulating a table\n" "composed of HTML::Element style components." msgstr "" -#: gnu/packages/web.scm:3208 +#: gnu/packages/web.scm:3209 msgid "" "Objects of the HTML::Form class represents a single HTML\n" "
...
instance." msgstr "" -#: gnu/packages/web.scm:3241 +#: gnu/packages/web.scm:3242 msgid "@code{HTML::Scrubber} Perl extension for scrubbing/sanitizing HTML." msgstr "" -#: gnu/packages/web.scm:3260 +#: gnu/packages/web.scm:3261 msgid "" "HTML::Lint is a pure-Perl HTML parser and checker for\n" "syntactic legitmacy." msgstr "" -#: gnu/packages/web.scm:3282 +#: gnu/packages/web.scm:3283 msgid "" "HTML::TableExtract is a Perl module for extracting the content contained\n" "in tables within an HTML document, either as text or encoded element trees." msgstr "" -#: gnu/packages/web.scm:3305 +#: gnu/packages/web.scm:3306 msgid "" "This distribution contains a suite of modules for\n" "representing, creating, and extracting information from HTML syntax trees." msgstr "" -#: gnu/packages/web.scm:3327 +#: gnu/packages/web.scm:3328 msgid "" "Objects of the HTML::Parser class will recognize markup and separate\n" "it from plain text (alias data content) in HTML documents. As different\n" @@ -21474,13 +21724,13 @@ msgid "" "are invoked." msgstr "" -#: gnu/packages/web.scm:3349 +#: gnu/packages/web.scm:3350 msgid "" "The HTML::Tagset module contains several data tables useful in various\n" "kinds of HTML parsing operations." msgstr "" -#: gnu/packages/web.scm:3370 +#: gnu/packages/web.scm:3371 msgid "" "This module attempts to make using HTML templates simple and natural.\n" "It extends standard HTML with a few new HTML-esque tags: @code{},\n" @@ -21491,40 +21741,40 @@ msgid "" "you to separate design from the data." msgstr "" -#: gnu/packages/web.scm:3398 +#: gnu/packages/web.scm:3399 msgid "" "HTTP::Body parses chunks of HTTP POST data and supports\n" "application/octet-stream, application/json, application/x-www-form-urlencoded,\n" "and multipart/form-data." msgstr "" -#: gnu/packages/web.scm:3421 +#: gnu/packages/web.scm:3422 msgid "" "This module implements a minimalist HTTP user agent cookie\n" "jar in conformance with RFC 6265 ." msgstr "" -#: gnu/packages/web.scm:3443 +#: gnu/packages/web.scm:3444 msgid "" "The HTTP::Cookies class is for objects that represent a cookie jar,\n" "that is, a database of all the HTTP cookies that a given LWP::UserAgent\n" "object knows about." msgstr "" -#: gnu/packages/web.scm:3466 +#: gnu/packages/web.scm:3467 msgid "" "Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen\n" "on a socket for incoming requests. The HTTP::Daemon is a subclass of\n" "IO::Socket::INET, so you can perform socket operations directly on it too." msgstr "" -#: gnu/packages/web.scm:3487 +#: gnu/packages/web.scm:3488 msgid "" "The HTTP::Date module provides functions that deal with date formats\n" "used by the HTTP protocol (and then some more)." msgstr "" -#: gnu/packages/web.scm:3508 +#: gnu/packages/web.scm:3509 msgid "" "@code{HTTP::Lite} is a stand-alone lightweight\n" "HTTP/1.1 implementation for perl. It is intended for use in\n" @@ -21538,11 +21788,11 @@ msgid "" "processing of request data as it arrives." msgstr "" -#: gnu/packages/web.scm:3541 +#: gnu/packages/web.scm:3542 msgid "An HTTP::Message object contains some headers and a content body." msgstr "" -#: gnu/packages/web.scm:3562 +#: gnu/packages/web.scm:3563 msgid "" "The HTTP::Negotiate module provides a complete implementation of the\n" "HTTP content negotiation algorithm specified in\n" @@ -21552,7 +21802,7 @@ msgid "" "fields in the request." msgstr "" -#: gnu/packages/web.scm:3587 +#: gnu/packages/web.scm:3588 msgid "" "This is an HTTP request parser. It takes chunks of text as\n" "received and returns a @code{hint} as to what is required, or returns the\n" @@ -21560,33 +21810,33 @@ msgid "" "supported." msgstr "" -#: gnu/packages/web.scm:3610 +#: gnu/packages/web.scm:3611 msgid "" "HTTP::Parser::XS is a fast, primitive HTTP request/response\n" "parser." msgstr "" -#: gnu/packages/web.scm:3631 +#: gnu/packages/web.scm:3632 msgid "" "This module provides a convenient way to set up a CGI\n" "environment from an HTTP::Request." msgstr "" -#: gnu/packages/web.scm:3665 +#: gnu/packages/web.scm:3666 msgid "" "HTTP::Server::Simple is a simple standalone HTTP daemon with\n" "no non-core module dependencies. It can be used for building a standalone\n" "http-based UI to your existing tools." msgstr "" -#: gnu/packages/web.scm:3688 +#: gnu/packages/web.scm:3689 msgid "" "This is a very simple HTTP/1.1 client, designed for doing\n" "simple requests without the overhead of a large framework like LWP::UserAgent.\n" "It supports proxies and redirection. It also correctly resumes after EINTR." msgstr "" -#: gnu/packages/web.scm:3713 +#: gnu/packages/web.scm:3714 msgid "" "@code{HTTP::Tinyish} is a wrapper module for @acronym{LWP,libwww-perl},\n" "@code{HTTP::Tiny}, curl and wget.\n" @@ -21594,20 +21844,20 @@ msgid "" "It provides an API compatible to HTTP::Tiny." msgstr "" -#: gnu/packages/web.scm:3735 +#: gnu/packages/web.scm:3736 msgid "" "IO::HTML provides an easy way to open a file containing HTML while\n" "automatically determining its encoding. It uses the HTML5 encoding sniffing\n" "algorithm specified in section 8.2.2.1 of the draft standard." msgstr "" -#: gnu/packages/web.scm:3755 +#: gnu/packages/web.scm:3756 msgid "" "This module provides a protocol-independent way to use IPv4\n" "and IPv6 sockets, intended as a replacement for IO::Socket::INET." msgstr "" -#: gnu/packages/web.scm:3777 +#: gnu/packages/web.scm:3778 msgid "" "IO::Socket::SSL makes using SSL/TLS much easier by wrapping the\n" "necessary functionality into the familiar IO::Socket interface and providing\n" @@ -21616,7 +21866,7 @@ msgid "" "select or poll." msgstr "" -#: gnu/packages/web.scm:3816 +#: gnu/packages/web.scm:3817 msgid "" "The libwww-perl collection is a set of Perl modules which provides a\n" "simple and consistent application programming interface to the\n" @@ -21626,7 +21876,7 @@ msgid "" "help you implement simple HTTP servers." msgstr "" -#: gnu/packages/web.scm:3844 +#: gnu/packages/web.scm:3845 msgid "" "This module attempts to answer, as accurately as it can, one\n" "of the nastiest technical questions there is: am I on the internet?\n" @@ -21636,7 +21886,7 @@ msgid "" "not have DNS. We might not have a network card at all!" msgstr "" -#: gnu/packages/web.scm:3870 +#: gnu/packages/web.scm:3871 #, scheme-format msgid "" "The LWP::MediaTypes module provides functions for handling media (also\n" @@ -21645,20 +21895,20 @@ msgid "" "exists it is used instead." msgstr "" -#: gnu/packages/web.scm:3895 +#: gnu/packages/web.scm:3896 msgid "" "The LWP::Protocol::https module provides support for using\n" "https schemed URLs with LWP." msgstr "" -#: gnu/packages/web.scm:3916 +#: gnu/packages/web.scm:3917 msgid "" "LWP::UserAgent::Cached is an LWP::UserAgent subclass with\n" "cache support. It returns responses from the local file system, if available,\n" "instead of making an HTTP request." msgstr "" -#: gnu/packages/web.scm:3938 +#: gnu/packages/web.scm:3939 msgid "" "LWP::UserAgent::Determined works just like LWP::UserAgent,\n" "except that when you use it to get a web page but run into a\n" @@ -21666,7 +21916,7 @@ msgid "" "and retry a few times." msgstr "" -#: gnu/packages/web.scm:3965 +#: gnu/packages/web.scm:3966 msgid "" "@code{LWPx::ParanoidAgent} is a class subclassing\n" "@code{LWP::UserAgent} but paranoid against attackers. Its purpose is\n" @@ -21676,11 +21926,11 @@ msgid "" "is limited to http and https." msgstr "" -#: gnu/packages/web.scm:4011 +#: gnu/packages/web.scm:4012 msgid "This module provides a Perlish interface to Amazon S3." msgstr "" -#: gnu/packages/web.scm:4032 +#: gnu/packages/web.scm:4033 msgid "" "The Net::HTTP class is a low-level HTTP client. An instance of the\n" "Net::HTTP class represents a connection to an HTTP server. The HTTP protocol\n" @@ -21688,7 +21938,7 @@ msgid "" "HTTP/1.1." msgstr "" -#: gnu/packages/web.scm:4053 +#: gnu/packages/web.scm:4054 msgid "" "Net::Server is an extensible, generic Perl server engine.\n" "It attempts to be a generic server as in Net::Daemon and NetServer::Generic.\n" @@ -21702,11 +21952,11 @@ msgid "" "or to multiple server ports." msgstr "" -#: gnu/packages/web.scm:4082 +#: gnu/packages/web.scm:4083 msgid "SSL support for Net::SMTP." msgstr "SSL-understøttelse for Net::SMTP." -#: gnu/packages/web.scm:4116 +#: gnu/packages/web.scm:4117 msgid "" "Plack is a set of tools for using the PSGI stack. It\n" "contains middleware components, a reference server, and utilities for Web\n" @@ -21714,7 +21964,7 @@ msgid "" "WSGI." msgstr "" -#: gnu/packages/web.scm:4143 +#: gnu/packages/web.scm:4144 msgid "" "Plack::Middleware::Deflater is a middleware to encode your response body\n" "in gzip or deflate, based on \"Accept-Encoding\" HTTP request header. It\n" @@ -21723,13 +21973,13 @@ msgid "" "servers." msgstr "" -#: gnu/packages/web.scm:4170 +#: gnu/packages/web.scm:4171 msgid "" "This module sets the body in redirect response, if it's not\n" "already set." msgstr "" -#: gnu/packages/web.scm:4193 +#: gnu/packages/web.scm:4194 msgid "" "This middleware allows for POST requests that pretend to be\n" "something else: by adding either a header named X-HTTP-Method-Override to the\n" @@ -21737,44 +21987,44 @@ msgid "" "can say what method it actually meant." msgstr "" -#: gnu/packages/web.scm:4217 +#: gnu/packages/web.scm:4218 msgid "" "This module removes the body in an HTTP response if it's not\n" "required." msgstr "" -#: gnu/packages/web.scm:4240 +#: gnu/packages/web.scm:4241 msgid "" "Plack::Middleware::ReverseProxy resets some HTTP headers,\n" "which are changed by reverse-proxy. You can specify the reverse proxy address\n" "and stop fake requests using @code{enable_if} directive in your app.psgi." msgstr "" -#: gnu/packages/web.scm:4261 +#: gnu/packages/web.scm:4262 msgid "" "This module allows your to run your Plack::Test tests\n" "against an external server instead of just against a local application through\n" "either mocked HTTP or a locally spawned server." msgstr "" -#: gnu/packages/web.scm:4283 +#: gnu/packages/web.scm:4284 msgid "Test::TCP is test utilities for TCP/IP programs." msgstr "Test::TCP er testredskaber for TCP/IP-programmer." -#: gnu/packages/web.scm:4308 +#: gnu/packages/web.scm:4309 msgid "" "Test::WWW::Mechanize is a subclass of the Perl module\n" "WWW::Mechanize that incorporates features for web application testing." msgstr "" -#: gnu/packages/web.scm:4341 +#: gnu/packages/web.scm:4342 msgid "" "The Test::WWW::Mechanize::Catalyst module meshes the\n" "Test::WWW:Mechanize module and the Catalyst web application framework to allow\n" "testing of Catalyst applications without needing to start up a web server." msgstr "" -#: gnu/packages/web.scm:4365 +#: gnu/packages/web.scm:4366 msgid "" "PSGI is a specification to decouple web server environments\n" "from web application framework code. Test::WWW::Mechanize is a subclass of\n" @@ -21783,21 +22033,21 @@ msgid "" "applications." msgstr "" -#: gnu/packages/web.scm:4390 +#: gnu/packages/web.scm:4391 msgid "" "The URI module implements the URI class. Objects of this class\n" "represent \"Uniform Resource Identifier references\" as specified in RFC 2396\n" "and updated by RFC 2732." msgstr "" -#: gnu/packages/web.scm:4413 +#: gnu/packages/web.scm:4414 msgid "" "@code{URI::Fetch} is a smart client for fetching HTTP pages,\n" "notably syndication feeds (RSS, Atom, and others), in an intelligent, bandwidth-\n" "and time-saving way." msgstr "" -#: gnu/packages/web.scm:4437 +#: gnu/packages/web.scm:4438 msgid "" "This module finds URIs and URLs (according to what URI.pm\n" "considers a URI) in plain text. It only finds URIs which include a\n" @@ -21805,7 +22055,7 @@ msgid "" "URI::Find::Schemeless. For a command-line interface, urifind is provided." msgstr "" -#: gnu/packages/web.scm:4460 +#: gnu/packages/web.scm:4461 msgid "" "With this module, the URI package provides the same set of\n" "methods for WebSocket URIs as it does for HTTP URIs." @@ -21813,31 +22063,31 @@ msgstr "" "Med dette modul tilbyder URI-pakken det samme sæt af\n" "metoder for WebSocket URI'er som den gør for HTTP URI'er." -#: gnu/packages/web.scm:4483 +#: gnu/packages/web.scm:4484 msgid "" "This perl module provides a wrapper around URI templates as described in\n" "RFC 6570." msgstr "" -#: gnu/packages/web.scm:4517 +#: gnu/packages/web.scm:4518 msgid "" "This is a Perl extension interface for the libcurl file downloading\n" "library." msgstr "" -#: gnu/packages/web.scm:4548 +#: gnu/packages/web.scm:4549 msgid "" "WWW::Mechanize is a Perl module for stateful programmatic\n" "web browsing, used for automating interaction with websites." msgstr "" -#: gnu/packages/web.scm:4586 +#: gnu/packages/web.scm:4587 msgid "" "@code{WWW::OpenSearch} is a module to search @url{A9's OpenSearch,\n" "http://opensearch.a9.com} compatible search engines." msgstr "" -#: gnu/packages/web.scm:4608 +#: gnu/packages/web.scm:4609 msgid "" "The WWW::RobotRules module parses /robots.txt files as specified in\n" "\"A Standard for Robot Exclusion\", at\n" @@ -21846,13 +22096,13 @@ msgid "" "their web site." msgstr "" -#: gnu/packages/web.scm:4635 gnu/packages/web.scm:4659 +#: gnu/packages/web.scm:4640 gnu/packages/web.scm:4664 msgid "" "Universal feed parser which handles RSS 0.9x, RSS 1.0, RSS 2.0,\n" "CDF, Atom 0.3, and Atom 1.0 feeds." msgstr "" -#: gnu/packages/web.scm:4756 +#: gnu/packages/web.scm:4761 msgid "" "The Guix Data Service stores data about GNU Guix, and provides this\n" "through a web interface. It supports listening to the guix-commits mailing\n" @@ -21860,7 +22110,7 @@ msgid "" "PostgreSQL database." msgstr "" -#: gnu/packages/web.scm:4785 +#: gnu/packages/web.scm:4790 msgid "" "Gumbo is an implementation of the HTML5 parsing algorithm implemented as\n" "a pure C99 library." @@ -21868,14 +22118,14 @@ msgstr "" "Gumbo er en implementering af HTML5-fortolkningsalgoritmen implenteret\n" "som et rent C99-bibliotek." -#: gnu/packages/web.scm:4858 +#: gnu/packages/web.scm:4863 msgid "" "uWSGI presents a complete stack for networked/clustered web applications,\n" "implementing message/object passing, caching, RPC and process management.\n" "It uses the uwsgi protocol for all the networking/interprocess communications." msgstr "" -#: gnu/packages/web.scm:4891 +#: gnu/packages/web.scm:4896 msgid "" "jq is like sed for JSON data – you can use it to slice and\n" "filter and map and transform structured data with the same ease that sed, awk,\n" @@ -21885,7 +22135,7 @@ msgid "" "you'd expect." msgstr "" -#: gnu/packages/web.scm:4920 +#: gnu/packages/web.scm:4925 msgid "" "@command{pup} is a command line tool for processing HTML. It reads\n" "from stdin, prints to stdout, and allows the user to filter parts of the page\n" @@ -21893,66 +22143,66 @@ msgid "" "fast and flexible way of exploring HTML from the terminal." msgstr "" -#: gnu/packages/web.scm:4953 +#: gnu/packages/web.scm:4958 msgid "" "Uhttpmock is a project for mocking web service APIs which use HTTP or\n" "HTTPS. It provides a library, libuhttpmock, which implements recording and\n" "playback of HTTP request/response traces." msgstr "" -#: gnu/packages/web.scm:4989 +#: gnu/packages/web.scm:4994 msgid "" "Woof (Web Offer One File) is a small simple web server that\n" "can easily be invoked on a single file. Your partner can access the file with\n" "tools they trust (e.g. wget)." msgstr "" -#: gnu/packages/web.scm:5017 +#: gnu/packages/web.scm:5022 msgid "" "This package provides the shared build system for Netsurf project\n" "libraries." msgstr "" -#: gnu/packages/web.scm:5052 +#: gnu/packages/web.scm:5057 msgid "" "LibParserUtils is a library for building efficient parsers, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5082 +#: gnu/packages/web.scm:5087 msgid "" "Hubbub is an HTML5 compliant parsing library, written in C, which can\n" "parse both valid and invalid web content. It is developed as part of the\n" "NetSurf project." msgstr "" -#: gnu/packages/web.scm:5203 +#: gnu/packages/web.scm:5208 msgid "" "Ikiwiki is a wiki compiler, capable of generating a static set of web\n" "pages, but also incorporating dynamic features like a web based editor and\n" "commenting." msgstr "" -#: gnu/packages/web.scm:5227 +#: gnu/packages/web.scm:5232 msgid "" "LibWapcaplet provides a reference counted string internment system\n" "designed to store small strings and allow rapid comparison of them. It is\n" "developed as part of the Netsurf project." msgstr "" -#: gnu/packages/web.scm:5259 +#: gnu/packages/web.scm:5264 msgid "" "LibCSS is a CSS (Cascading Style Sheet) parser and selection engine,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5294 +#: gnu/packages/web.scm:5299 msgid "" "LibDOM is an implementation of the W3C DOM, written in C. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5321 +#: gnu/packages/web.scm:5326 msgid "" "Libsvgtiny takes some SVG as input and returns a list of paths and texts\n" "which can be rendered easily, as defined in\n" @@ -21960,13 +22210,13 @@ msgid "" "project." msgstr "" -#: gnu/packages/web.scm:5346 +#: gnu/packages/web.scm:5351 msgid "" "Libnsbmp is a decoding library for BMP and ICO image file formats,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5369 +#: gnu/packages/web.scm:5374 msgid "" "Libnsgif is a decoding library for the GIF image file format, written in\n" "C. It is developed as part of the NetSurf project." @@ -21974,7 +22224,7 @@ msgstr "" "Libnsgift er et afkodningsbibliotek for GIF-billedfilformatet, skrevet i\n" "C. Det er udviklet som en del af NetSurf-projektet." -#: gnu/packages/web.scm:5396 +#: gnu/packages/web.scm:5401 #, fuzzy msgid "" "Libnslog provides a category-based logging library which supports\n" @@ -21984,7 +22234,7 @@ msgstr "" "Libnsgift er et afkodningsbibliotek for GIF-billedfilformatet, skrevet i\n" "C. Det er udviklet som en del af NetSurf-projektet." -#: gnu/packages/web.scm:5420 +#: gnu/packages/web.scm:5425 msgid "" "Libnsutils provides a small number of useful utility routines. It is\n" "developed as part of the NetSurf project." @@ -21992,40 +22242,40 @@ msgstr "" "Libnsutils tilbyder et lille antal nyttige redskabsrutiner. Det er\n" "udviklet som en del af NetSurf-projektet." -#: gnu/packages/web.scm:5443 +#: gnu/packages/web.scm:5448 msgid "" "Libnspsl is a library to generate a static code representation of the\n" "Public Suffix List. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5469 +#: gnu/packages/web.scm:5474 msgid "" "@code{nsgenbind} is a tool to generate JavaScript to DOM bindings from\n" "w3c webidl files and a binding configuration file." msgstr "" -#: gnu/packages/web.scm:5592 +#: gnu/packages/web.scm:5597 msgid "" "NetSurf is a lightweight web browser that has its own layout and\n" "rendering engine entirely written from scratch. It is small and capable of\n" "handling many of the web standards in use today." msgstr "" -#: gnu/packages/web.scm:5631 +#: gnu/packages/web.scm:5636 msgid "" "Surfraw (Shell Users' Revolutionary Front Rage Against the Web)\n" "provides a unix command line interface to a variety of popular www search engines\n" "and similar services." msgstr "" -#: gnu/packages/web.scm:5664 +#: gnu/packages/web.scm:5669 msgid "" "darkhttpd is a simple static web server. It is\n" "standalone and does not need inetd or ucspi-tcp. It does not need any\n" "config files---you only have to specify the www root." msgstr "" -#: gnu/packages/web.scm:5695 +#: gnu/packages/web.scm:5700 msgid "" "GoAccess is a real-time web log analyzer and interactive viewer that\n" "runs in a terminal or through your browser. It provides fast and valuable\n" @@ -22033,7 +22283,7 @@ msgid "" "on the fly." msgstr "" -#: gnu/packages/web.scm:5749 +#: gnu/packages/web.scm:5754 msgid "" "Hitch is a performant TLS proxy based on @code{libev}. It terminates\n" "SSL/TLS connections and forwards the unencrypted traffic to a backend such\n" @@ -22041,7 +22291,7 @@ msgid "" "multicore machines." msgstr "" -#: gnu/packages/web.scm:5786 +#: gnu/packages/web.scm:5791 msgid "" "httptunnel creates a bidirectional virtual data connection\n" "tunnelled through HTTP (HyperText Transfer Protocol) requests. This can be\n" @@ -22059,7 +22309,7 @@ msgid "" "deployments." msgstr "" -#: gnu/packages/web.scm:5915 +#: gnu/packages/web.scm:5912 msgid "" "Varnish is a high-performance HTTP accelerator. It acts as a caching\n" "reverse proxy and load balancer. You install it in front of any server that\n" @@ -22067,7 +22317,7 @@ msgid "" "configuration language." msgstr "" -#: gnu/packages/web.scm:5949 +#: gnu/packages/web.scm:5946 #, fuzzy msgid "" "This package provides a collection of modules (@dfn{vmods}) for the Varnish\n" @@ -22078,7 +22328,7 @@ msgstr "" "cacheserveren, der udvider @dfn{Varnish Configuration Language} (VCL) med\n" "yderligere funktioner." -#: gnu/packages/web.scm:5976 +#: gnu/packages/web.scm:5973 msgid "" "@code{xinetd}, a more secure replacement for @code{inetd},\n" "listens for incoming requests over a network and launches the appropriate\n" @@ -22087,7 +22337,7 @@ msgid "" "used to start services with both privileged and non-privileged port numbers." msgstr "" -#: gnu/packages/web.scm:6023 +#: gnu/packages/web.scm:6020 msgid "" "Tidy is a console application which corrects and cleans up\n" "HTML and XML documents by fixing markup errors and upgrading\n" @@ -22098,14 +22348,14 @@ msgid "" "functions of Tidy." msgstr "" -#: gnu/packages/web.scm:6085 +#: gnu/packages/web.scm:6082 msgid "" "Hiawatha has been written with security in mind.\n" "Features include the ability to stop SQL injections, XSS and CSRF attacks and\n" "exploit attempts." msgstr "" -#: gnu/packages/web.scm:6107 +#: gnu/packages/web.scm:6104 msgid "" "Testing an HTTP Library can become difficult sometimes.\n" "@code{RequestBin} is fantastic for testing POST requests, but doesn't let you control the\n" @@ -22113,14 +22363,14 @@ msgid "" "JSON-encoded." msgstr "" -#: gnu/packages/web.scm:6132 +#: gnu/packages/web.scm:6129 msgid "" "@code{Pytest-httpbin} creates a @code{pytest} fixture that is dependency-injected\n" "into your tests. It automatically starts up a HTTP server in a separate thread running\n" "@code{httpbin} and provides your test with the URL in the fixture." msgstr "" -#: gnu/packages/web.scm:6199 +#: gnu/packages/web.scm:6196 msgid "" "This is a parser for HTTP messages written in C. It\n" "parses both requests and responses. The parser is designed to be used in\n" @@ -22130,13 +22380,13 @@ msgid "" "message stream (in a web server that is per connection)." msgstr "" -#: gnu/packages/web.scm:6236 +#: gnu/packages/web.scm:6233 msgid "" "@code{httpretty} is a helper for faking web requests,\n" "inspired by Ruby's @code{fakeweb}." msgstr "" -#: gnu/packages/web.scm:6254 +#: gnu/packages/web.scm:6251 msgid "" "jo is a command-line utility to create JSON objects or\n" "arrays. It creates a JSON string on stdout from words provided as\n" @@ -22146,27 +22396,27 @@ msgstr "" "tabeller. Redskabet oprettet en JSON-streng på standardud fra ord\n" "tilbudt som kommandolinjeargumenter eller læst fra standardind." -#: gnu/packages/web.scm:6313 +#: gnu/packages/web.scm:6310 msgid "" "@code{ia} is a command-line tool for using\n" "@url{archive.org} from the command-line. It also implements the\n" "internetarchive python module for programmatic access to archive.org." msgstr "" -#: gnu/packages/web.scm:6364 +#: gnu/packages/web.scm:6361 msgid "" "@code{clf} is a command line tool for searching code\n" "snippets on @url{https://commandlinefu.com}." msgstr "" -#: gnu/packages/web.scm:6402 +#: gnu/packages/web.scm:6399 msgid "" "rss-bridge generates Atom feeds for social networking\n" "websites lacking feeds. Supported websites include Facebook, Twitter,\n" "Instagram and YouTube." msgstr "" -#: gnu/packages/web.scm:6440 +#: gnu/packages/web.scm:6437 msgid "" "LinkChecker is a website validator. It checks for broken\n" "links in websites. It is recursive and multithreaded providing output in\n" @@ -22175,67 +22425,67 @@ msgid "" "file links." msgstr "" -#: gnu/packages/web.scm:6488 +#: gnu/packages/web.scm:6485 msgid "" "Castor is a graphical client for plain-text protocols written in\n" "Rust with GTK. It currently supports the Gemini, Gopher and Finger\n" "protocols." msgstr "" -#: gnu/packages/web.scm:6575 +#: gnu/packages/web.scm:6572 msgid "" "This package includes Clearsilver, the CGI kit and HTML templating\n" "system." msgstr "" -#: gnu/packages/web.scm:6594 +#: gnu/packages/web.scm:6591 msgid "" "Py-ubjson is a Python module providing an Universal Binary JSON\n" "encoder/decoder based on the draft-12 specification for UBJSON." msgstr "" -#: gnu/packages/web.scm:6689 +#: gnu/packages/web.scm:6686 msgid "" "Apache Tomcat is a free implementation of the Java\n" "Servlet, JavaServer Pages, Java Expression Language and Java WebSocket\n" "technologies." msgstr "" -#: gnu/packages/web.scm:6743 +#: gnu/packages/web.scm:6740 msgid "" "This package contains helper classes for testing the Jetty\n" "Web Server." msgstr "" -#: gnu/packages/web.scm:6802 +#: gnu/packages/web.scm:6799 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides utility classes." msgstr "" -#: gnu/packages/web.scm:6880 +#: gnu/packages/web.scm:6877 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides IO-related utility classes." msgstr "" -#: gnu/packages/web.scm:6925 +#: gnu/packages/web.scm:6922 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides HTTP-related utility classes." msgstr "" -#: gnu/packages/web.scm:6959 +#: gnu/packages/web.scm:6956 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides the JMX management." msgstr "" -#: gnu/packages/web.scm:7045 +#: gnu/packages/web.scm:7042 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -22243,7 +22493,7 @@ msgid "" "artifact." msgstr "" -#: gnu/packages/web.scm:7088 +#: gnu/packages/web.scm:7085 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -22251,7 +22501,7 @@ msgid "" "infrastructure" msgstr "" -#: gnu/packages/web.scm:7144 +#: gnu/packages/web.scm:7141 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -22259,14 +22509,14 @@ msgid "" "container." msgstr "" -#: gnu/packages/web.scm:7308 +#: gnu/packages/web.scm:7305 msgid "" "Jsoup is a Java library for working with real-world HTML. It\n" "provides a very convenient API for extracting and manipulating data, using the\n" "best of DOM, CSS, and jQuery-like methods." msgstr "" -#: gnu/packages/web.scm:7337 +#: gnu/packages/web.scm:7334 msgid "" "Signpost is the easy and intuitive solution for signing\n" "HTTP messages on the Java platform in conformance with the OAuth Core 1.0a\n" @@ -22274,7 +22524,7 @@ msgid "" "combine it with different HTTP messaging layers." msgstr "" -#: gnu/packages/web.scm:7360 +#: gnu/packages/web.scm:7357 msgid "" "Tidyp is a program that can validate your HTML, as well as\n" "modify it to be more clean and standard. tidyp does not validate HTML 5.\n" @@ -22284,14 +22534,14 @@ msgid "" "based on this library, allowing Perl programmers to easily validate HTML." msgstr "" -#: gnu/packages/web.scm:7401 +#: gnu/packages/web.scm:7398 msgid "" "@code{HTML::Tidy} is an HTML checker in a handy dandy\n" "object. It's meant as a replacement for @code{HTML::Lint}, which is written\n" "in Perl but is not nearly as capable as @code{HTML::Tidy}." msgstr "" -#: gnu/packages/web.scm:7430 +#: gnu/packages/web.scm:7427 msgid "" "Geomyidae is a server for distributed hypertext protocol Gopher. Its\n" "features include:\n" @@ -22305,14 +22555,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/web.scm:7478 +#: gnu/packages/web.scm:7475 msgid "" "Cat avatar generator is a generator of cat pictures optimised\n" "to generate random avatars, or defined avatar from a \"seed\". This is a\n" "derivation by David Revoy from the original MonsterID by Andreas Gohr." msgstr "" -#: gnu/packages/web.scm:7548 +#: gnu/packages/web.scm:7545 msgid "" "nghttp2 implements the Hypertext Transfer Protocol, version\n" "2 (@dfn{HTTP/2}).\n" @@ -22338,14 +22588,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7647 +#: gnu/packages/web.scm:7644 msgid "" "Hpcguix-web provides a web interface to the list of packages\n" "provided by Guix. The list of packages is searchable and provides\n" "instructions on how to use Guix in a shared HPC environment." msgstr "" -#: gnu/packages/web.scm:7668 +#: gnu/packages/web.scm:7665 msgid "" "HTTrack allows you to download a World Wide Web site from\n" "the Internet to a local directory, building recursively all directories,\n" @@ -22359,7 +22609,7 @@ msgid "" "HTTrack is fully configurable, and has an integrated help system." msgstr "" -#: gnu/packages/web.scm:7703 +#: gnu/packages/web.scm:7700 msgid "" "buku is a powerful bookmark manager written in Python3 and SQLite3.\n" "@command{buku} can auto-import bookmarks from your browser and present them\n" @@ -22368,7 +22618,7 @@ msgid "" "@command{bukuserver}." msgstr "" -#: gnu/packages/web.scm:7724 +#: gnu/packages/web.scm:7721 msgid "" "Anonip masks the last bits of IPv4 and IPv6 addresses in log files.\n" "That way most of the relevant information is preserved, while the IP address\n" @@ -22383,7 +22633,7 @@ msgid "" "Anonip can also be uses as a Python module in your own Python application." msgstr "" -#: gnu/packages/web.scm:7758 +#: gnu/packages/web.scm:7755 msgid "" "Poussetaches (which literally means \"push tasks\" in\n" "French) is a lightweight asynchronous task execution service that aims to\n" @@ -22395,7 +22645,7 @@ msgid "" "returned." msgstr "" -#: gnu/packages/web.scm:7783 +#: gnu/packages/web.scm:7780 msgid "" "htmlcxx is a simple non-validating CSS1 and HTML parser for\n" "C++. Although there are several other HTML parsers available, htmlcxx has some\n" @@ -22413,7 +22663,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:7827 +#: gnu/packages/web.scm:7824 msgid "" "libRocket is a C++ user interface package based on the HTML\n" "and CSS standards. libRocket uses the open standards XHTML1.0 and\n" @@ -22430,11 +22680,11 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7869 +#: gnu/packages/web.scm:7866 msgid "gmnisrv is a simple Gemini protocol server written in C." msgstr "" -#: gnu/packages/web.scm:7900 +#: gnu/packages/web.scm:7898 msgid "" "The openZIM project proposes offline storage solutions for\n" "content coming from the Web. The zimlib is the standard implementation of the\n" @@ -22466,14 +22716,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:8081 +#: gnu/packages/web.scm:8078 msgid "" "uriparser is a strictly RFC 3986 compliant URI parsing and\n" "handling library written in C89 (\"ANSI C\"). uriparser is fast and supports\n" "Unicode." msgstr "" -#: gnu/packages/web.scm:8115 +#: gnu/packages/web.scm:8112 msgid "" "Quark is an extremely small and simple HTTP GET/HEAD only\n" "web server for static content. TLS is not natively supported and should be\n" @@ -22643,53 +22893,53 @@ msgid "" "Enhancement}." msgstr "" -#: gnu/services/base.scm:276 +#: gnu/services/base.scm:279 msgid "" "Populate the @file{/etc/fstab} based on the given file\n" "system objects." msgstr "" -#: gnu/services/base.scm:314 +#: gnu/services/base.scm:317 msgid "" "Take care of syncing the root file\n" "system and of remounting it read-only when the system shuts down." msgstr "" -#: gnu/services/base.scm:481 +#: gnu/services/base.scm:484 msgid "" "Provide Shepherd services to mount and unmount the given\n" "file systems, as well as corresponding @file{/etc/fstab} entries." msgstr "" -#: gnu/services/base.scm:579 +#: gnu/services/base.scm:582 msgid "" "Seed the @file{/dev/urandom} pseudo-random number\n" "generator (RNG) with the value recorded when the system was last shut\n" "down." msgstr "" -#: gnu/services/base.scm:611 +#: gnu/services/base.scm:614 msgid "" "Run the @command{rngd} random number generation daemon to\n" "supply entropy to the kernel's pool." msgstr "" -#: gnu/services/base.scm:640 +#: gnu/services/base.scm:643 msgid "Initialize the machine's host name." msgstr "" -#: gnu/services/base.scm:670 +#: gnu/services/base.scm:673 msgid "Ensure the Linux virtual terminals run in UTF-8 mode." msgstr "" -#: gnu/services/base.scm:683 +#: gnu/services/base.scm:686 msgid "" "@emph{This service is deprecated in favor of the\n" "@code{keyboard-layout} field of @code{operating-system}.} Load the given list\n" "of console keymaps with @command{loadkeys}." msgstr "" -#: gnu/services/base.scm:743 +#: gnu/services/base.scm:746 msgid "" "Install the given fonts on the specified ttys (fonts are per\n" "virtual console on GNU/Linux). The value of this service is a list of\n" @@ -22707,66 +22957,66 @@ msgid "" "@end example\n" msgstr "" -#: gnu/services/base.scm:795 +#: gnu/services/base.scm:798 msgid "" "Provide a console log-in service as specified by its\n" "configuration value, a @code{login-configuration} object." msgstr "" -#: gnu/services/base.scm:1063 +#: gnu/services/base.scm:1066 msgid "" "Provide console login using the @command{agetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1128 +#: gnu/services/base.scm:1131 msgid "" "Provide console login using the @command{mingetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1345 +#: gnu/services/base.scm:1348 msgid "" "Runs libc's @dfn{name service cache daemon} (nscd) with the\n" "given configuration---an @code{} object. @xref{Name\n" "Service Switch}, for an example." msgstr "" -#: gnu/services/base.scm:1384 +#: gnu/services/base.scm:1387 msgid "" "Run the syslog daemon, @command{syslogd}, which is\n" "responsible for logging system messages." msgstr "" -#: gnu/services/base.scm:1448 +#: gnu/services/base.scm:1451 msgid "" "Install the specified resource usage limits by populating\n" "@file{/etc/security/limits.conf} and using the @code{pam_limits}\n" "authentication module." msgstr "" -#: gnu/services/base.scm:1794 +#: gnu/services/base.scm:1804 msgid "Run the build daemon of GNU@tie{}Guix, aka. @command{guix-daemon}." msgstr "" -#: gnu/services/base.scm:1944 +#: gnu/services/base.scm:1961 msgid "" "Add a Shepherd service running @command{guix publish}, a\n" "command that allows you to share pre-built binaries with others over HTTP." msgstr "" -#: gnu/services/base.scm:2150 +#: gnu/services/base.scm:2167 msgid "" "Run @command{udev}, which populates the @file{/dev}\n" "directory dynamically. Get extra rules from the packages listed in the\n" "@code{rules} field of its value, @code{udev-configuration} object." msgstr "" -#: gnu/services/base.scm:2267 +#: gnu/services/base.scm:2284 msgid "Turn on the virtual memory swap area." msgstr "" -#: gnu/services/base.scm:2309 +#: gnu/services/base.scm:2326 msgid "" "Run GPM, the general-purpose mouse daemon, with the given\n" "command-line options. GPM allows users to use the mouse in the console,\n" @@ -22774,33 +23024,33 @@ msgid "" "@code{ps2} protocol, which works for both USB and PS/2 mice." msgstr "" -#: gnu/services/base.scm:2382 +#: gnu/services/base.scm:2399 msgid "" "Start the @command{kmscon} virtual terminal emulator for the\n" "Linux @dfn{kernel mode setting} (KMS)." msgstr "" -#: gnu/services/base.scm:2403 +#: gnu/services/base.scm:2416 #, scheme-format msgid "address '~a' lacks a network mask" msgstr "" -#: gnu/services/base.scm:2409 +#: gnu/services/base.scm:2422 #, scheme-format msgid "Write, say, @samp{\"~a/24\"} for a 24-bit network mask." msgstr "" -#: gnu/services/base.scm:2489 +#: gnu/services/base.scm:2502 #, scheme-format msgid "network links are currently ignored on GNU/Hurd~%" msgstr "" -#: gnu/services/base.scm:2514 +#: gnu/services/base.scm:2527 #, scheme-format msgid "ignoring network route for '~a'~%" msgstr "" -#: gnu/services/base.scm:2698 +#: gnu/services/base.scm:2711 msgid "" "Turn up the specified network interfaces upon startup,\n" "with the given IP address, gateway, netmask, and so on. The value for\n" @@ -23015,6 +23265,14 @@ msgid "" "on the web." msgstr "" +#, fuzzy +#~ msgid "" +#~ "This package provides support for the French language for the\n" +#~ "babel multilingual system." +#~ msgstr "" +#~ "Denne pakke tilbyder værktøjer til at inspicere underrutiner\n" +#~ "i Perl." + #, fuzzy #~ msgid "This package contains graphics and sound files for Naev." #~ msgstr "Denne pakke indeholder spildataen for GNU Freedink." @@ -24143,9 +24401,6 @@ msgstr "" #~ msgid "Pango to PostScript converter" #~ msgstr "Pango til PostScript-konverteringsprogram" -#~ msgid "Implementation of the Perl programming language" -#~ msgstr "Implementering af programmeringssproget Perl" - #~ msgid "Use shorter versions of class names" #~ msgstr "Brug kortere versioner af klassenavne" diff --git a/po/packages/de.po b/po/packages/de.po index 56ee5e889b..581228699e 100644 --- a/po/packages/de.po +++ b/po/packages/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: guix-packages 1.2.0-pre3\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" "PO-Revision-Date: 2021-08-17 14:04+0000\n" "Last-Translator: Florian Pelz \n" "Language-Team: German \n" @@ -42,20 +42,20 @@ msgstr "Aspell ist ein Programm zur Rechtschreibprüfung, das entweder als eine msgid "This package provides a dictionary for the GNU Aspell spell checker." msgstr "Dieses Paket bietet ein Wörterbuch für das GNU-Aspell-Rechtschreibprüfprogramm." -#: gnu/packages/aspell.scm:445 gnu/packages/libreoffice.scm:845 +#: gnu/packages/aspell.scm:450 gnu/packages/libreoffice.scm:845 #: gnu/packages/libreoffice.scm:918 msgid "" "This package provides a dictionary for the Hunspell spell-checking\n" "library." msgstr "Dieses Paket bietet ein Wörterbuch für die Hunspell-Rechtschreibbibliothek." -#: gnu/packages/aspell.scm:525 +#: gnu/packages/aspell.scm:530 msgid "" "Ispell is an interactive spell-checking tool supporting many\n" "European languages." msgstr "Ispell ist ein interaktives Rechtschreibprüfprogramm für viele europäische Sprachen." -#: gnu/packages/audio.scm:197 +#: gnu/packages/audio.scm:198 msgid "" "OpenSLES is a royalty-free, cross-platform,\n" "hardware-accelerated audio API tuned for embedded systems. It provides a\n" @@ -66,31 +66,31 @@ msgid "" "promoting the market for advanced audio." msgstr "" -#: gnu/packages/audio.scm:233 +#: gnu/packages/audio.scm:234 msgid "" "WildMIDI is a simple software midi player which has a core\n" "softsynth library that can be use with other applications." msgstr "" -#: gnu/packages/audio.scm:257 +#: gnu/packages/audio.scm:258 msgid "" "WebRTC-Audio-Processing library based on Google's\n" "implementation of WebRTC." msgstr "WebRTC-Audioverarbeitungsbibliothek basierend auf Googles Implementierung von WebRTC." -#: gnu/packages/audio.scm:277 +#: gnu/packages/audio.scm:278 msgid "" "VO-AACENC is the VisualOn implementation of Advanced Audio\n" "Coding (AAC) encoder." msgstr "" -#: gnu/packages/audio.scm:306 +#: gnu/packages/audio.scm:307 msgid "" "TinyALSA is a small library to interface with ALSA in the\n" "Linux kernel." msgstr "" -#: gnu/packages/audio.scm:329 +#: gnu/packages/audio.scm:330 msgid "" "Game-music-emu is a collection of video game music file emulators that\n" "support the following formats and systems:\n" @@ -116,43 +116,43 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/audio.scm:393 +#: gnu/packages/audio.scm:394 msgid "" "LibOpenMPT is a cross-platform C++ and C module playback\n" "library. It is based on the player code of the Open ModPlug Tracker project." msgstr "" -#: gnu/packages/audio.scm:424 +#: gnu/packages/audio.scm:425 msgid "" "LibOFA is an audio fingerprint library, created and provided\n" "by MusicIP." msgstr "" -#: gnu/packages/audio.scm:445 +#: gnu/packages/audio.scm:446 msgid "FAAC is an MPEG-4 and MPEG-2 AAC encoder." msgstr "FAAC ist ein Encoder für MPEG-4 und MPEG-2 AAC." -#: gnu/packages/audio.scm:474 +#: gnu/packages/audio.scm:475 msgid "" "LibTiMidity is a MIDI to WAVE converter library that uses\n" "Gravis Ultrasound-compatible patch files to generate digital audio data from\n" "General MIDI files." msgstr "" -#: gnu/packages/audio.scm:499 +#: gnu/packages/audio.scm:500 msgid "" "VO-AMR is a library of VisualOn implementation of\n" "Adaptive Multi Rate Narrowband and Wideband (AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:518 +#: gnu/packages/audio.scm:519 msgid "" "OpenCore-AMR is a library of OpenCORE Framework\n" "implementation of Adaptive Multi Rate Narrowband and Wideband\n" "(AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:551 +#: gnu/packages/audio.scm:552 msgid "" "AlsaModularSynth is a digital implementation of a classical analog\n" "modular synthesizer system. It uses virtual control voltages to control the\n" @@ -161,7 +161,7 @@ msgid "" "Filter) modules follow the convention of 1V / Octave." msgstr "AlsaModularSynth ist eine digitale Implementierung eines klassischen analogen modularen Synthesizersystems. Es benutzt virtuelle Steuerungsspannungen, um die Modulparameter zu steuern. Die Steuerungsspannungen, die die Frequenz z.B. der Module VCO (Voltage Controlled Oscillator, spannungsgesteuerter Oszillator) und VCF (Voltage ControlledFilter, spannungsgesteuertes Filter) steuern, folgen der Konvention von 1V pro Oktave." -#: gnu/packages/audio.scm:588 +#: gnu/packages/audio.scm:589 msgid "" "aubio is a tool designed for the extraction of annotations from audio\n" "signals. Its features include segmenting a sound file before each of its\n" @@ -169,21 +169,21 @@ msgid "" "streams from live audio." msgstr "aubio ist ein Werkzeug für die Extraktion von Annotationen aus Audio-Signalen. Zu seinen Funktionalitäten gehört die Segmentierung einer Ton-Datei vor jeder Anschwellung, Tonhöhenbestimmung, Beat-Extraktion und das Erstellen von MIDI-Strömen aus Live-Audio." -#: gnu/packages/audio.scm:719 +#: gnu/packages/audio.scm:720 msgid "" "Ardour is a multi-channel digital audio workstation, allowing users to\n" "record, edit, mix and master audio and MIDI projects. It is targeted at audio\n" "engineers, musicians, soundtrack editors and composers." msgstr "Ardour ist eine mehrkanalige Digital Audio Workstation, die es Nutzern ermöglicht, Audio- und MIDI-Projekte aufzunehmen, zu bearbeiten, zu mischen und zu mastern. Seine Zielgruppe sind Tontechniker, Musiker, Soundtrack-Verfasser und Komponisten." -#: gnu/packages/audio.scm:833 +#: gnu/packages/audio.scm:853 msgid "" "Audacity is a multi-track audio editor designed for recording, playing\n" "and editing digital audio. It features digital effects and spectrum analysis\n" "tools." msgstr "Audacity ist ein mehrspuriges Audiobearbeitungsprogramm zum Aufnehmen, Abspielen und Bearbeiten von digitalen Tondateien. Es bietet digitale Effekte und Spektrumsanalysewerkzeuge." -#: gnu/packages/audio.scm:889 +#: gnu/packages/audio.scm:909 msgid "" "This is an open-source version of SGI's audiofile library.\n" "It provides a uniform programming interface for processing of audio data to\n" @@ -194,14 +194,14 @@ msgid "" "G.711 mu-law and A-law." msgstr "" -#: gnu/packages/audio.scm:931 +#: gnu/packages/audio.scm:951 msgid "" "Autotalent is a LADSPA plugin for real-time pitch-correction. Among its\n" "controls are allowable notes, strength of correction, LFO for vibrato and\n" "formant warp." msgstr "" -#: gnu/packages/audio.scm:972 +#: gnu/packages/audio.scm:992 msgid "" "AZR-3 is a port of the free VST plugin AZR-3. It is a tonewheel organ\n" "with drawbars, distortion and rotating speakers. The organ has three\n" @@ -210,7 +210,7 @@ msgid "" "plugins are provided." msgstr "AZR-3 ist eine Portierung des freien VST-Plugins AZR-3. Es handelt sich um eine Tonrad-Orgel mit Zugriegeln, Verzerrung und rotierenden Lautsprechern. Die Orgel hat drei Teile, zwei mehrtönige mit neun Zugriegeln und einen eintönigen Bass-Teil mit fünf Zugriegeln. Eine eigenständige JACK-Anwendung und LV2-Plugins stehen zur Verfügung." -#: gnu/packages/audio.scm:1011 +#: gnu/packages/audio.scm:1031 msgid "" "Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments.\n" "The suite contains lots of effects (delay, modulation, signal processing,\n" @@ -219,31 +219,31 @@ msgid "" "tools (analyzer, mono/stereo tools, crossovers)." msgstr "Calf Studio Gear ist eine Sammlung von Audio-Plugins für LV2- und JACK-Umgebungen. Die Zusammenstellung enthält zahlreiche Effekte (Verzögerung, Modulation, Signalverarbeitung, Filter, Entzerrer, Dynamik, Verzerrung und Mastering-Effekte), Instrumente (SF2-Spieler, Orgelsimulator und einen monophonen Synthesizer) und Werkzeuge (Analyzer, Mono-/Stereo-Werkzeuge, Crossover)." -#: gnu/packages/audio.scm:1053 +#: gnu/packages/audio.scm:1073 msgid "" "LV2 port of CAPS, a collection of audio plugins comprising basic virtual\n" "guitar amplification and a small range of classic effects, signal processors and\n" "generators of mostly elementary and occasionally exotic nature." msgstr "" -#: gnu/packages/audio.scm:1094 +#: gnu/packages/audio.scm:1114 msgid "" "The infamous plugins are a collection of LV2 audio plugins for live\n" "performances. The plugins include a cellular automaton synthesizer, an\n" "envelope follower, distortion effects, tape effects and more." msgstr "Diese berüchtigten Plugins sind eine Sammlung von LV2-Audio-Plugins für Live-Darbietungen. Zu den Plugins gehören ein Zellulärer-Automaten-Synthesizer, ein Envelope Follower, Verzerrungseffekte, Tape-Effekte und mehr." -#: gnu/packages/audio.scm:1129 +#: gnu/packages/audio.scm:1149 msgid "" "Snapcast is a multi-room client-server audio player. Clients are time\n" "synchronized with the server to play synced audio." msgstr "" -#: gnu/packages/audio.scm:1159 +#: gnu/packages/audio.scm:1179 msgid "This package provides Steve Harris's LADSPA plugins." msgstr "Dieses Paket bietet Steve Harris’ LADSPA-Plugin für einen Stereo-Nachhall-Effekt." -#: gnu/packages/audio.scm:1199 +#: gnu/packages/audio.scm:1219 msgid "" "Swh-plugins-lv2 is a collection of audio plugins in LV2 format. Plugin\n" "classes include: dynamics (compressor, limiter), time (delay, chorus,\n" @@ -251,13 +251,13 @@ msgid "" "emulation (valve, tape), bit fiddling (decimator, pointer-cast), etc." msgstr "Swh-plugins-lv2 ist eine Sammlung von Audio-Plugins im LV2-Format. Zu den Pluginkategorien gehören Dynamik (Kompressor, Limiter), Zeit (Verzögerung, Chorus, Flanger), Ringmodulator, Verzerrung, Filter, Tonhöhenabweichung, Oszillatoren, Emulation (Ventil, Band), Bit-Fiddling (Decimator, Pointer-Cast) usw." -#: gnu/packages/audio.scm:1233 +#: gnu/packages/audio.scm:1253 msgid "" "@code{libdjinterop} is a C++ library that allows access to database\n" "formats used to store information about DJ record libraries." msgstr "" -#: gnu/packages/audio.scm:1295 gnu/packages/audio.scm:1326 +#: gnu/packages/audio.scm:1315 gnu/packages/audio.scm:1346 msgid "" "Tao is a software package for sound synthesis using physical\n" "models. It provides a virtual acoustic material constructed from masses and\n" @@ -267,13 +267,13 @@ msgid "" "object library." msgstr "" -#: gnu/packages/audio.scm:1361 +#: gnu/packages/audio.scm:1381 msgid "" "Csound is a user-programmable and user-extensible sound processing\n" "language and software synthesizer." msgstr "Csound ist eine nutzerprogrammierbare und nutzererweiterbare Tonverarbeitungssprache und ein Software-Synthesizer." -#: gnu/packages/audio.scm:1388 +#: gnu/packages/audio.scm:1408 msgid "" "midicomp can manipulate SMF (Standard MIDI File) files. It can both\n" " read and write SMF files in 0 or format 1 and also read and write its own\n" @@ -282,20 +282,20 @@ msgid "" " language, and recompiled back into a binary SMF file." msgstr "" -#: gnu/packages/audio.scm:1435 +#: gnu/packages/audio.scm:1455 msgid "" "clalsadrv is a C++ wrapper around the ALSA API simplifying access to\n" "ALSA PCM devices." msgstr "clalsadrv ist ein C++-Wrapper um die ALSA-Programmierschnittstelle, der den Zugang zu ALSA-PCM-Geräten vereinfacht." -#: gnu/packages/audio.scm:1474 +#: gnu/packages/audio.scm:1494 msgid "" "The AMB plugins are a set of LADSPA ambisonics plugins, mainly to be\n" "used within Ardour. Features include: mono and stereo to B-format panning,\n" "horizontal rotator, square, hexagon and cube decoders." msgstr "Die AMB-Plugins sind eine Reihe von LADSPA-Ambisonics-Plugins und hauptsächlich für die Nutzung mit Ardour gedacht. Sie bieten Panning von Mono oder Stereo zum B-Format, horizontalen Rotierer, Quadrat-, Sechseck und Würfel-Decoder." -#: gnu/packages/audio.scm:1511 +#: gnu/packages/audio.scm:1531 msgid "" "This package provides various LADSPA plugins. @code{cs_chorus} and\n" "@code{cs_phaser} provide chorus and phaser effects, respectively;\n" @@ -307,13 +307,13 @@ msgstr "" "Dieses Paket bietet verschiedene LADSPA-Plugins. @code{cs_chorus} und\n" "@code{cs_phaser} bieten jeweils Chorus- und Phaser-Effekte; @code{mvclpf24} bietet vier Implementierungen des Tiefpassfilters, der in Vintage-Moog-Synthesizern benutzt wird; @code{mvchpf24} basiert auf dem spannungsgesteuerten Hochpassfilter von Robert Moog. Die Filter versuchen, die nicht-linearen Schaltkreiselemente ihrer ursprünglichen analogen Gegenstücke zu emulieren." -#: gnu/packages/audio.scm:1551 +#: gnu/packages/audio.scm:1571 msgid "" "This package provides a stereo reverb LADSPA plugin based on the\n" "well-known greverb." msgstr "Dieses Paket bietet ein Stereo-Nachhall-LADSPA-Plugin basierend auf dem wohlbekannten greverb." -#: gnu/packages/audio.scm:1587 +#: gnu/packages/audio.scm:1607 msgid "" "This package provides a LADSPA plugin for a four-band parametric\n" "equalizer. Each section has an active/bypass switch, frequency, bandwidth and\n" @@ -333,13 +333,13 @@ msgstr "" "\n" "Alle Umschalter und Steuerungen werden intern geglättet, damit sie @i{live} ohne Klick- oder Reißgeräusche benutzt werden können. Dadurch ist das Plugin in Systemen wie z.B. Ardour, die die Automatisierung von Plugin-Steuerungs-Ports ermöglichen, oder auf Bühnen nutzbar." -#: gnu/packages/audio.scm:1632 +#: gnu/packages/audio.scm:1652 msgid "" "This package provides a LADSPA plugin to manipulate the stereo width of\n" "audio signals." msgstr "Dieses Paket bietet ein LADSPA-Plugin, um die Stereobreite von Audiosignalen zu ändern." -#: gnu/packages/audio.scm:1669 +#: gnu/packages/audio.scm:1689 msgid "" "The @code{blvco} LADSPA plugin provides three anti-aliased oscillators:\n" "\n" @@ -364,17 +364,17 @@ msgstr "" "\n" "Alle Oszillatoren sind tiefpassgefiltert, um Wellenformen ähnlich der Ausgabe von Analog-Synthesizern wie dem Moog Voyager zu bieten." -#: gnu/packages/audio.scm:1713 +#: gnu/packages/audio.scm:1733 msgid "" "This package provides a LADSPA plugin for a Wah effect with envelope\n" "follower." msgstr "Dieses Paket bietet ein LADSPA-Plugin für einen Wah-Effekt mit Envelope-Follower." -#: gnu/packages/audio.scm:1749 +#: gnu/packages/audio.scm:1769 msgid "This package provides a LADSPA plugin for a stereo reverb effect." msgstr "Dieses Paket bietet ein LADSPA-Plugin für einen Stereo-Nachhall-Effekt." -#: gnu/packages/audio.scm:1791 +#: gnu/packages/audio.scm:1811 msgid "" "FluidSynth is a real-time software synthesizer based on the SoundFont 2\n" "specifications. FluidSynth reads and handles MIDI events from the MIDI input\n" @@ -382,21 +382,21 @@ msgid "" "also play midifiles using a Soundfont." msgstr "FluidSynth ist ein Echtzeit-Software-Synthesizer basierend auf den SoundFont-2-Spezifikationen. FluidSynth liest und behandelt MIDI-Ereignisse von dem MIDI-Eingabegerät. Es ist das Software-Analogon eines MIDI-Synthesizers. FluidSynth kann auch Midifiles unter Benutzung eines Soundfonts abspielen." -#: gnu/packages/audio.scm:1814 +#: gnu/packages/audio.scm:1834 msgid "FAAD2 is an MPEG-4 and MPEG-2 AAC decoder supporting LC, Main, LTP, SBR, -PS, and DAB+." msgstr "FAAD2 ist ein MPEG-4- und MPEG-2-AAC-Decoder, der LC, Main, LTP, SBR, PS und DAB+ unterstützt." -#: gnu/packages/audio.scm:1855 +#: gnu/packages/audio.scm:1875 msgid "Faust is a programming language for realtime audio signal processing." msgstr "Faust ist eine Programmiersprache für Echtzeit-Audiosignalverarbeitung." -#: gnu/packages/audio.scm:1919 +#: gnu/packages/audio.scm:1939 msgid "" "FreePats is a project to create a free and open set of GUS compatible\n" "patches that can be used with softsynths such as Timidity and WildMidi." msgstr "FreePats ist ein Projekt, eine freie und offene Sammlung von GUS-kompatiblen Patches zu erstellen, die mit Softsynths wie Timidity und WildMidi benutzt werden können." -#: gnu/packages/audio.scm:1972 +#: gnu/packages/audio.scm:1992 msgid "" "Guitarix is a virtual guitar amplifier running JACK.\n" "Guitarix takes the signal from your guitar as a mono-signal from your sound\n" @@ -409,7 +409,7 @@ msgstr "" "Guitarix ist ein virtueller Gitarrenverstärker für JACK.\n" "Guitarix nimmt das Signal von Ihrer Gitarre als ein Monosignal Ihrer Soundkarte entgegen. Die Eingabe wird von einem Hauptverstärker und einer Rack-Section verarbeitet. Beide können separat geroutet werden und liefern ein verarbeitetes Stereo-Signal via JACK. Sie können das Rack mit Effekten aus mehr als 25 eingebauten Modulen füllen. Die Auswahl reicht von einfachen Noise-Gates bis hin zu Modulationseffekten wie Flanger, Phaser oder Auto-Wah." -#: gnu/packages/audio.scm:2028 +#: gnu/packages/audio.scm:2048 msgid "" "Rakarrack is a richly featured multi-effects processor emulating a\n" "guitar effects pedalboard. Effects include compressor, expander, noise gate,\n" @@ -421,14 +421,14 @@ msgid "" "well suited to all musical instruments and vocals." msgstr "Rakarrack ist ein Multi-Effekt-Verarbeitungsprogramm mit reichhaltigen Funktionalitäten, welches ein Gitarreneffekte-Pedalboard emuliert. Effekte sind unter anderem Kompressor, Expander, Noise-Gate, Equalizer, Exciter, Flanger, Chorus, verschiedene Verzögerungs- und Nachhall-Effekte, Verzerrungsmodule und vieles mehr. Der Großteil der Effekt-Engine setzt sich zusammen aus Modulen, die im exzellenten Software-Synthesizer ZynAddSubFX zu finden sind. Voreinstellungen und Benutzerschnittstelle sind optimiert für die Gitarre, aber Rakarrack verarbeitet Signale in Stereo, während es keine interne bandbegrenzende Filterung durchführt, und ist daher für alle Musikinstrumente und Vocals gut geeignet." -#: gnu/packages/audio.scm:2084 +#: gnu/packages/audio.scm:2104 msgid "" "IR is a low-latency, real-time, high performance signal convolver\n" "especially for creating reverb effects. It supports impulse responses with 1,\n" "2 or 4 channels, in any soundfile format supported by libsndfile." msgstr "IR ist ein Programm für Signalfaltungen mit niedriger Latenz, in Echtzeit und mit hoher Leistung besonders zum Generieren von Nachhall-Effekten. Es unterstützt Impulsantworten mit 1, 2 oder 4 Kanälen in einem beliebigen Tondateienformat, das von libsndfile unterstützt wird." -#: gnu/packages/audio.scm:2124 +#: gnu/packages/audio.scm:2144 msgid "" "JACK is a low-latency audio server. It can connect a number of\n" "different applications to an audio device, as well as allowing them to share\n" @@ -438,20 +438,20 @@ msgid "" "synchronous execution of all clients, and low latency operation." msgstr "JACK ist ein Audio-Server mit niedriger Latenz. Er kann eine Reihe verschiedener Anwendungen mit einem Audiogerät verbinden und ihnen zudem ermöglichen, untereinander Audio auszutauschen. JACK unterscheidet sich von anderen Audioservern darin, dass JACK von Anfang an für professionelle Audio-Arbeiten entwickelt wurde. Das bedeutet, dass JACK den Fokus auf zwei Schlüsselbereiche legt: synchrone Ausführung aller Clients und niedrige Latenz." -#: gnu/packages/audio.scm:2220 +#: gnu/packages/audio.scm:2240 msgid "" "Jalv is a simple but fully featured LV2 host for JACK. It runs LV2\n" "plugins and exposes their ports as JACK ports, essentially making any LV2\n" "plugin function as a JACK application." msgstr "Jalv ist ein einfacher, aber voll funktionsfähiger LV2-Host für JACK. Er führt LV2-Plugins aus und stellt ihre Ports als JACK-Ports zur Verfügung, wodurch quasi jede LV2-Plugin-Funktion zu einer JACK-Anwendung wird." -#: gnu/packages/audio.scm:2266 +#: gnu/packages/audio.scm:2286 msgid "" "LADSPA is a standard that allows software audio processors and effects\n" "to be plugged into a wide range of audio synthesis and recording packages." msgstr "LADSPA ist ein Standard, der es Software-Audioverarbeitungsprogrammen und Effekten ermöglicht, in einer großen Spanne von Audiosynthese- und -aufnahmeprogrammen eingesetzt zu werden." -#: gnu/packages/audio.scm:2318 +#: gnu/packages/audio.scm:2338 msgid "" "LASH is a session management system for audio applications. It allows\n" "you to save and restore audio sessions consisting of multiple interconneced\n" @@ -459,7 +459,7 @@ msgid "" "connections between them." msgstr "LASH ist ein Sitzungsverwaltungssystem für Audioanwendungen. Es ermöglicht Ihnen, Audiositzungen aus mehreren untereinander verbundenen Anwendungen zu sichern und wiederherzustellen, wobei der Programmzustand (d.h. geladene Patches) und die Verbindung zwischen ihnen wiederhergestellt wird." -#: gnu/packages/audio.scm:2341 +#: gnu/packages/audio.scm:2361 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is\n" "designed to improve headphone listening of stereo audio records. Recommended\n" @@ -467,7 +467,7 @@ msgid "" "essential distortions." msgstr "" -#: gnu/packages/audio.scm:2364 +#: gnu/packages/audio.scm:2384 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and\n" "plugins is designed to improve headphone listening of stereo audio records.\n" @@ -476,13 +476,13 @@ msgid "" "with applications that support them (e.g. PulseAudio)." msgstr "" -#: gnu/packages/audio.scm:2390 +#: gnu/packages/audio.scm:2410 msgid "" "liblo is a lightweight library that provides an easy to use\n" "implementation of the Open Sound Control (@dfn{OSC}) protocol." msgstr "" -#: gnu/packages/audio.scm:2426 +#: gnu/packages/audio.scm:2446 msgid "" "RtAudio is a set of C++ classes that provides a common API for real-time\n" "audio input/output. It was designed with the following objectives:\n" @@ -501,13 +501,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/audio.scm:2462 +#: gnu/packages/audio.scm:2482 msgid "" "This package provides bindings for PortAudio v19, the\n" "cross-platform audio input/output stream library." msgstr "" -#: gnu/packages/audio.scm:2489 +#: gnu/packages/audio.scm:2509 msgid "" "Pyliblo is a Python wrapper for the liblo Open Sound Control (OSC)\n" "library. It supports almost the complete functionality of liblo, allowing you\n" @@ -515,21 +515,21 @@ msgid "" "included are the command line utilities @code{send_osc} and @code{dump_osc}." msgstr "" -#: gnu/packages/audio.scm:2526 +#: gnu/packages/audio.scm:2546 #, fuzzy msgid "" "This package provides python bindings for libsndfile based on\n" "CFFI and NumPy." msgstr "Dieses Paket bietet Python-Anbindungen für librsvg, die Bibliothek zum Zeichnen von SVG-Daten." -#: gnu/packages/audio.scm:2544 +#: gnu/packages/audio.scm:2564 #, fuzzy msgid "" "This package provides a python API to read and write MIDI\n" "files." msgstr "Dieses Paket bietet ein LADSPA-Plugin, um die Stereobreite von Audiosignalen zu ändern." -#: gnu/packages/audio.scm:2581 +#: gnu/packages/audio.scm:2601 msgid "" "@command{audio-to-midi} converts audio files to multichannel\n" "MIDI files. It accomplishes this by performing FFTs on all channels of the\n" @@ -539,14 +539,14 @@ msgid "" "frequencies. This data is then formatted to MIDI and written to disk." msgstr "" -#: gnu/packages/audio.scm:2624 +#: gnu/packages/audio.scm:2644 msgid "" "Lilv is a C library to make the use of LV2 plugins as simple as possible\n" "for applications. Lilv is the successor to SLV2, rewritten to be\n" "significantly faster and have minimal dependencies." msgstr "" -#: gnu/packages/audio.scm:2652 +#: gnu/packages/audio.scm:2672 msgid "" "LV2 is an open specification for audio plugins and host applications.\n" "At its core, LV2 is a simple stable interface, accompanied by extensions which\n" @@ -554,22 +554,22 @@ msgid "" "software." msgstr "" -#: gnu/packages/audio.scm:2688 +#: gnu/packages/audio.scm:2708 msgid "An LV2 port of the mda Piano VSTi." msgstr "" -#: gnu/packages/audio.scm:2702 +#: gnu/packages/audio.scm:2722 msgid "An LV2 port of the mda EPiano VSTi." msgstr "" -#: gnu/packages/audio.scm:2732 +#: gnu/packages/audio.scm:2752 msgid "" "The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and\n" "extensions into easy to use C++ classes. It is the successor of\n" "lv2-c++-tools." msgstr "" -#: gnu/packages/audio.scm:2774 +#: gnu/packages/audio.scm:2794 msgid "" "OpenAL provides capabilities for playing audio in a virtual 3D\n" "environment. Distance attenuation, doppler shift, and directional sound\n" @@ -579,36 +579,36 @@ msgid "" "buffers, and audio capture." msgstr "" -#: gnu/packages/audio.scm:2805 +#: gnu/packages/audio.scm:2825 msgid "freealut is the OpenAL Utility Toolkit." msgstr "" -#: gnu/packages/audio.scm:2837 +#: gnu/packages/audio.scm:2857 msgid "" "Patchage is a modular patch bay for audio and MIDI systems based on JACK\n" "and ALSA." msgstr "" -#: gnu/packages/audio.scm:2862 +#: gnu/packages/audio.scm:2882 msgid "" "The Portable C Audio Library (pcaudiolib) provides a C@tie{}API to\n" "different audio devices such as ALSA or PulseAudio." msgstr "" -#: gnu/packages/audio.scm:2889 +#: gnu/packages/audio.scm:2909 msgid "" "Control a Jack server. Allows you to plug various sources\n" "into various outputs and to start, stop and configure jackd" msgstr "" -#: gnu/packages/audio.scm:2921 +#: gnu/packages/audio.scm:2941 msgid "" "QJackRcd is a simple graphical stereo recorder for JACK\n" "supporting silence processing for automatic pause, file splitting, and\n" "background file post-processing." msgstr "" -#: gnu/packages/audio.scm:3029 +#: gnu/packages/audio.scm:3049 msgid "" "SuperCollider is a synthesis engine (@code{scsynth} or\n" "@code{supernova}) and programming language (@code{sclang}). It can be used\n" @@ -620,18 +620,18 @@ msgid "" "using Guix System." msgstr "" -#: gnu/packages/audio.scm:3057 +#: gnu/packages/audio.scm:3077 #, fuzzy msgid "This package provides libshout plus IDJC extensions." msgstr "Dieses Paket bietet Steve Harris’ LADSPA-Plugin für einen Stereo-Nachhall-Effekt." -#: gnu/packages/audio.scm:3083 +#: gnu/packages/audio.scm:3103 msgid "" "Raul (Real-time Audio Utility Library) is a C++ utility library primarily\n" "aimed at audio/musical applications." msgstr "" -#: gnu/packages/audio.scm:3119 +#: gnu/packages/audio.scm:3139 msgid "" "This package contains the @command{resample} and\n" "@command{windowfilter} command line utilities. The @command{resample} command\n" @@ -640,26 +640,26 @@ msgid "" "filters using the so-called @emph{window method}." msgstr "" -#: gnu/packages/audio.scm:3160 +#: gnu/packages/audio.scm:3180 msgid "" "Rubber Band is a library and utility program that permits changing the\n" "tempo and pitch of an audio recording independently of one another." msgstr "" -#: gnu/packages/audio.scm:3184 +#: gnu/packages/audio.scm:3204 msgid "" "RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut, and API specific\n" "classes) that provide a common cross-platform API for realtime MIDI\n" "input/output." msgstr "" -#: gnu/packages/audio.scm:3210 +#: gnu/packages/audio.scm:3230 msgid "" "Sratom is a library for serialising LV2 atoms to/from RDF, particularly\n" "the Turtle syntax." msgstr "" -#: gnu/packages/audio.scm:3238 +#: gnu/packages/audio.scm:3258 msgid "" "Suil is a lightweight C library for loading and wrapping LV2 plugin UIs.\n" "\n" @@ -671,13 +671,13 @@ msgid "" "Suil currently supports every combination of Gtk, Qt, and X11." msgstr "" -#: gnu/packages/audio.scm:3270 +#: gnu/packages/audio.scm:3290 msgid "" "@code{libebur128} is a C library that implements the EBU R 128 standard\n" "for loudness normalisation." msgstr "" -#: gnu/packages/audio.scm:3324 +#: gnu/packages/audio.scm:3344 msgid "" "TiMidity++ is a software synthesizer. It can play MIDI files by\n" "converting them into PCM waveform data; give it a MIDI data along with digital\n" @@ -686,33 +686,33 @@ msgid "" "disks as various audio file formats." msgstr "" -#: gnu/packages/audio.scm:3364 +#: gnu/packages/audio.scm:3384 msgid "" "Vamp is an audio processing plugin system for plugins that extract\n" "descriptive information from audio data — typically referred to as audio\n" "analysis plugins or audio feature extraction plugins." msgstr "" -#: gnu/packages/audio.scm:3408 +#: gnu/packages/audio.scm:3428 msgid "" "SBSMS (Subband Sinusoidal Modeling Synthesis) is software for time\n" "stretching and pitch scaling of audio. This package contains the library." msgstr "" -#: gnu/packages/audio.scm:3435 +#: gnu/packages/audio.scm:3455 msgid "" "@code{libkeyfinder} is a small C++11 library for estimating the musical\n" "key of digital audio." msgstr "" -#: gnu/packages/audio.scm:3465 +#: gnu/packages/audio.scm:3485 msgid "" "WavPack is an audio compression format with lossless, lossy and hybrid\n" "compression modes. This package contains command-line programs and library to\n" "encode and decode wavpack files." msgstr "" -#: gnu/packages/audio.scm:3486 +#: gnu/packages/audio.scm:3506 msgid "" "Libmodplug renders mod music files as raw audio data, for playing or\n" "conversion. mod, .s3m, .it, .xm, and a number of lesser-known formats are\n" @@ -720,21 +720,21 @@ msgid "" "surround and reverb." msgstr "" -#: gnu/packages/audio.scm:3507 +#: gnu/packages/audio.scm:3527 msgid "" "Libxmp is a library that renders module files to PCM data. It supports\n" "over 90 mainstream and obscure module formats including Protracker (MOD),\n" "Scream Tracker 3 (S3M), Fast Tracker II (XM), and Impulse Tracker (IT)." msgstr "" -#: gnu/packages/audio.scm:3531 +#: gnu/packages/audio.scm:3551 msgid "" "Xmp is a portable module player that plays over 90 mainstream and\n" "obscure module formats, including Protracker MOD, Fasttracker II XM, Scream\n" "Tracker 3 S3M and Impulse Tracker IT files." msgstr "" -#: gnu/packages/audio.scm:3556 +#: gnu/packages/audio.scm:3576 msgid "" "SoundTouch is an audio processing library for changing the tempo, pitch\n" "and playback rates of audio streams or audio files. It is intended for\n" @@ -742,7 +742,7 @@ msgid "" "control functionality, or just for playing around with the sound effects." msgstr "" -#: gnu/packages/audio.scm:3595 +#: gnu/packages/audio.scm:3615 msgid "" "SoX (Sound eXchange) is a command line utility that can convert\n" "various formats of computer audio files to other formats. It can also\n" @@ -750,60 +750,60 @@ msgid "" "can play and record audio files." msgstr "" -#: gnu/packages/audio.scm:3620 +#: gnu/packages/audio.scm:3640 msgid "" "The SoX Resampler library (libsoxr) performs one-dimensional sample-rate\n" "conversion. It may be used, for example, to resample PCM-encoded audio." msgstr "" -#: gnu/packages/audio.scm:3643 +#: gnu/packages/audio.scm:3663 msgid "" "TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder based on\n" "tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code and\n" "portions of LAME." msgstr "" -#: gnu/packages/audio.scm:3699 +#: gnu/packages/audio.scm:3719 msgid "" "PortAudio is a portable C/C++ audio I/O library providing a simple API\n" "to record and/or play sound using a callback function or a blocking read/write\n" "interface." msgstr "" -#: gnu/packages/audio.scm:3728 +#: gnu/packages/audio.scm:3748 msgid "" "Qsynth is a GUI front-end application for the FluidSynth SoundFont\n" "synthesizer written in C++." msgstr "" -#: gnu/packages/audio.scm:3767 +#: gnu/packages/audio.scm:3787 msgid "" "RSound allows you to send audio from an application and transfer it\n" "directly to a different computer on your LAN network. It is an audio daemon\n" "with a much different focus than most other audio daemons." msgstr "" -#: gnu/packages/audio.scm:3797 +#: gnu/packages/audio.scm:3817 msgid "" "XJackFreak is an audio analysis and equalizing tool for the Jack Audio\n" "Connection Kit. It can display the FFT of any input, modify it and output the\n" "result." msgstr "" -#: gnu/packages/audio.scm:3849 +#: gnu/packages/audio.scm:3869 msgid "" "Zita convolver is a C++ library providing a real-time convolution\n" "engine." msgstr "" -#: gnu/packages/audio.scm:3901 +#: gnu/packages/audio.scm:3921 msgid "" "Libzita-resampler is a C++ library for resampling audio signals. It is\n" "designed to be used within a real-time processing context, to be fast, and to\n" "provide high-quality sample rate conversion." msgstr "" -#: gnu/packages/audio.scm:3947 +#: gnu/packages/audio.scm:3967 msgid "" "Zita-alsa-pcmi is a C++ wrapper around the ALSA API. It provides easy\n" "access to ALSA PCM devices, taking care of the many functions required to\n" @@ -811,7 +811,7 @@ msgid "" "point audio data." msgstr "" -#: gnu/packages/audio.scm:3971 +#: gnu/packages/audio.scm:3991 msgid "" "Cuetools is a set of programs that are useful for manipulating\n" "and using CUE sheet (cue) files and Table of Contents (toc) files. CUE and TOC\n" @@ -819,14 +819,14 @@ msgid "" "machine-readable ASCII format." msgstr "" -#: gnu/packages/audio.scm:4000 +#: gnu/packages/audio.scm:4020 msgid "" "mp3guessenc is a command line utility that tries to detect the\n" "encoder used for an MPEG Layer III (MP3) file, as well as scan any MPEG audio\n" "file (any layer) and print a lot of useful information." msgstr "" -#: gnu/packages/audio.scm:4021 +#: gnu/packages/audio.scm:4041 msgid "" "shntool is a multi-purpose WAVE data processing and reporting\n" "utility. File formats are abstracted from its core, so it can process any file\n" @@ -835,46 +835,46 @@ msgid "" "use them split WAVE data into multiple files." msgstr "" -#: gnu/packages/audio.scm:4061 +#: gnu/packages/audio.scm:4081 msgid "" "Dcadec is a DTS Coherent Acoustics surround sound decoder\n" "with support for HD extensions." msgstr "" -#: gnu/packages/audio.scm:4098 +#: gnu/packages/audio.scm:4118 msgid "" "BS1770GAIN is a loudness scanner compliant with ITU-R BS.1770 and its\n" "flavors EBU R128, ATSC A/85, and ReplayGain 2.0. It helps normalizing the\n" "loudness of audio and video files to the same level." msgstr "" -#: gnu/packages/audio.scm:4130 +#: gnu/packages/audio.scm:4150 msgid "" "An easy to use audio filtering library made from webrtc\n" "code, used in @code{libtoxcore}." msgstr "" -#: gnu/packages/audio.scm:4183 +#: gnu/packages/audio.scm:4203 msgid "" "This C library provides an encoder and a decoder for the GSM\n" "06.10 RPE-LTP lossy speech compression algorithm." msgstr "" -#: gnu/packages/audio.scm:4206 +#: gnu/packages/audio.scm:4226 msgid "" "This package contains wrappers for accessing the ALSA API from Python.\n" "It is currently fairly complete for PCM devices, and has some support for\n" "mixers." msgstr "" -#: gnu/packages/audio.scm:4230 +#: gnu/packages/audio.scm:4250 msgid "" "This package provides an encoder for the LDAC\n" "high-resolution Bluetooth audio streaming codec for streaming at up to 990\n" "kbps at 24 bit/96 kHz." msgstr "" -#: gnu/packages/audio.scm:4274 +#: gnu/packages/audio.scm:4294 msgid "" "This project is a rebirth of a direct integration between\n" "Bluez and ALSA. Since Bluez >= 5, the built-in integration has been removed\n" @@ -887,14 +887,14 @@ msgid "" "on the ALSA software PCM plugin." msgstr "" -#: gnu/packages/audio.scm:4340 +#: gnu/packages/audio.scm:4360 msgid "" "Snd is a sound editor modelled loosely after Emacs. It can be\n" "customized and extended using either the s7 Scheme implementation (included in\n" "the Snd sources), Ruby, or Forth." msgstr "" -#: gnu/packages/audio.scm:4369 +#: gnu/packages/audio.scm:4389 msgid "" "Noise Repellent is an LV2 plugin to reduce noise. It has\n" "the following features:\n" @@ -914,31 +914,31 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/audio.scm:4436 +#: gnu/packages/audio.scm:4456 msgid "" "RNNoise is a library that uses deep learning to apply\n" "noise suppression to audio sources with voice presence. This package provides\n" "an LV2 audio plugin." msgstr "" -#: gnu/packages/audio.scm:4480 +#: gnu/packages/audio.scm:4500 msgid "" "@code{cli-visualizer} displays fast-Fourier\n" "transforms (FFTs) of the sound being played, as well as other graphical\n" "representations." msgstr "" -#: gnu/packages/audio.scm:4530 +#: gnu/packages/audio.scm:4550 msgid "" "C.A.V.A. is a bar audio spectrum visualizer for the terminal\n" "using ALSA, MPD, PulseAudio, or a FIFO buffer as its input." msgstr "" -#: gnu/packages/audio.scm:4564 +#: gnu/packages/audio.scm:4584 msgid "Fluid-3 is Frank Wen's pro-quality GM soundfont." msgstr "" -#: gnu/packages/audio.scm:4586 +#: gnu/packages/audio.scm:4606 msgid "" "FDK is a library for encoding and decoding Advanced Audio\n" "Coding (AAC) format audio, developed by Fraunhofer IIS, and included as part of\n" @@ -949,20 +949,20 @@ msgid "" " surround)." msgstr "" -#: gnu/packages/audio.scm:4626 +#: gnu/packages/audio.scm:4646 msgid "" "OpenShot Audio Library (libopenshot-audio) allows\n" "high-quality editing and playback of audio, and is based on the JUCE\n" "library." msgstr "" -#: gnu/packages/audio.scm:4652 +#: gnu/packages/audio.scm:4672 msgid "" "FAudio is an XAudio reimplementation that focuses solely on\n" "developing fully accurate DirectX Audio runtime libraries." msgstr "" -#: gnu/packages/audio.scm:4679 +#: gnu/packages/audio.scm:4699 msgid "" "Gnaural is a programmable auditory binaural beat synthesizer\n" "intended to be used for brainwave entrainment. Gnaural supports creation of\n" @@ -971,20 +971,20 @@ msgid "" "other Gnaural instances, allowing synchronous sessions between many users." msgstr "" -#: gnu/packages/audio.scm:4714 +#: gnu/packages/audio.scm:4734 msgid "" "DarkIce is a live audio streamer. It takes audio input from\n" "a sound card, encodes it into Ogg Vorbis and/or mp3, and sends the audio\n" "stream to one or more IceCast and/or ShoutCast servers." msgstr "" -#: gnu/packages/audio.scm:4738 +#: gnu/packages/audio.scm:4758 msgid "" "Libltc is a POSIX-C Library for handling\n" "@dfn{Linear/Longitudinal Time Code} (LTC) data." msgstr "" -#: gnu/packages/audio.scm:4772 +#: gnu/packages/audio.scm:4792 msgid "" "TTA performs lossless compression on multichannel 8,16 and 24 bits\n" "data of the Wav audio files. Being lossless means that no data-\n" @@ -995,14 +995,14 @@ msgid "" "supports both of ID3v1/v2 and APEv2 tags." msgstr "" -#: gnu/packages/audio.scm:4805 +#: gnu/packages/audio.scm:4825 msgid "" "@code{libsoundio} is a C library providing audio input and\n" "output. The API is suitable for real-time software such as digital audio\n" "workstations as well as consumer software such as music players." msgstr "" -#: gnu/packages/audio.scm:4831 +#: gnu/packages/audio.scm:4851 msgid "" "Redkite is a small GUI toolkit developed in C++17 and\n" "inspired from other well known GUI toolkits such as Qt and GTK. It is\n" @@ -1011,7 +1011,7 @@ msgid "" "as is the case with audio plugins." msgstr "" -#: gnu/packages/audio.scm:4903 +#: gnu/packages/audio.scm:4923 msgid "" "Carla is a modular audio plugin host, with features like\n" "transport control, automation of parameters via MIDI CC and remote control\n" @@ -1020,7 +1020,7 @@ msgid "" "default and preferred audio driver but also supports native drivers like ALSA." msgstr "" -#: gnu/packages/audio.scm:4939 +#: gnu/packages/audio.scm:4959 msgid "" "Ecasound is a software package designed for multitrack audio\n" "processing. It can be used for simple tasks like audio playback, recording and\n" @@ -1032,28 +1032,28 @@ msgid "" "in the package." msgstr "" -#: gnu/packages/audio.scm:4977 +#: gnu/packages/audio.scm:4997 msgid "" "libaudec is a wrapper library over ffmpeg, sndfile and\n" "libsamplerate for reading and resampling audio files, based on Robin Gareus'\n" "@code{audio_decoder} code." msgstr "" -#: gnu/packages/audio.scm:5007 +#: gnu/packages/audio.scm:5027 msgid "" "lv2lint is an LV2 lint-like tool that checks whether a\n" "given plugin and its UI(s) match up with the provided metadata and adhere\n" "to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5041 +#: gnu/packages/audio.scm:5061 msgid "" "lv2toweb allows the user to create an xhtml page with information\n" "about the given LV2 plugin, provided that the plugin and its UI(s) match up\n" "with the provided metadata and adhere to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5069 +#: gnu/packages/audio.scm:5089 msgid "" "ZToolkit (Ztk) is a cross-platform GUI toolkit heavily\n" "inspired by GTK. It handles events and low level drawing on behalf of\n" @@ -1063,7 +1063,7 @@ msgid "" "minimum." msgstr "" -#: gnu/packages/audio.scm:5102 +#: gnu/packages/audio.scm:5122 msgid "" "libInstPatch is a library for processing digital sample based MIDI\n" "instrument \"patch\" files. The types of files libInstPatch supports are used\n" @@ -1072,28 +1072,28 @@ msgid "" "edited, converted, compressed and saved." msgstr "" -#: gnu/packages/audio.scm:5149 +#: gnu/packages/audio.scm:5169 msgid "" "The LSP DSP library provides a set of functions that perform\n" "SIMD-optimized computing on several hardware architectures. All functions\n" "currently operate on IEEE-754 single-precision floating-point numbers." msgstr "" -#: gnu/packages/audio.scm:5180 +#: gnu/packages/audio.scm:5200 msgid "" "Codec 2 is a speech codec designed for communications quality speech\n" "between 700 and 3200 bit/s. The main application is low bandwidth HF/VHF\n" "digital radio." msgstr "" -#: gnu/packages/audio.scm:5206 +#: gnu/packages/audio.scm:5226 msgid "" "The mbelib library provides support for the 7200x4400 bit/s codec used\n" "in P25 Phase 1, the 7100x4400 bit/s codec used in ProVoice and the @emph{Half\n" "Rate} 3600x2250 bit/s vocoder used in various radio systems." msgstr "" -#: gnu/packages/audio.scm:5299 +#: gnu/packages/audio.scm:5319 msgid "" "Ableton Link is a C++ library that synchronizes musical beat, tempo, and phase\n" "across multiple applications running on one or more devices. Applications on devices\n" @@ -1102,20 +1102,20 @@ msgid "" "while still staying in time." msgstr "" -#: gnu/packages/audio.scm:5360 +#: gnu/packages/audio.scm:5380 msgid "" "Butt is a tool to stream audio to a ShoutCast or\n" "Icecast server." msgstr "" -#: gnu/packages/audio.scm:5406 +#: gnu/packages/audio.scm:5426 msgid "" "siggen is a set of tools for imitating a laboratory signal\n" "generator, generating audio signals out of Linux's /dev/dsp audio\n" "device. There is support for mono and/or stereo and 8 or 16 bit samples." msgstr "" -#: gnu/packages/audio.scm:5453 +#: gnu/packages/audio.scm:5473 msgid "" "@code{python-pysox} is a wrapper around the @command{sox}\n" "command line tool. The API offers @code{Transformer} and @code{Combiner}\n" @@ -1125,7 +1125,7 @@ msgid "" "and much more." msgstr "" -#: gnu/packages/audio.scm:5492 +#: gnu/packages/audio.scm:5512 msgid "" "@code{python-resampy} implements the band-limited sinc interpolation\n" "method for sampling rate conversion as described by Julius O. Smith at the\n" @@ -1133,34 +1133,34 @@ msgid "" "Home Page}." msgstr "" -#: gnu/packages/audio.scm:5528 +#: gnu/packages/audio.scm:5548 msgid "" "@code{librosa} is a python package for music and audio analysis. It\n" "provides the building blocks necessary to create music information retrieval\n" "systems." msgstr "" -#: gnu/packages/audio.scm:5561 +#: gnu/packages/audio.scm:5581 msgid "" "MDA-LV2 is an LV2 port of the MDA plugins. It includes effects and a few\n" "instrument plugins." msgstr "" -#: gnu/packages/audio.scm:5593 +#: gnu/packages/audio.scm:5613 msgid "" "The Odio SACD shared library is a decoding engine which takes a Super\n" "Audio CD source and extracts a 24-bit high resolution WAV file. It handles\n" "both DST and DSD streams." msgstr "" -#: gnu/packages/audio.scm:5618 +#: gnu/packages/audio.scm:5638 msgid "" "Odio SACD is a command-line application which takes a Super Audio CD\n" "source and extracts a 24-bit high resolution WAV file. It handles both DST\n" "and DSD streams." msgstr "" -#: gnu/packages/backup.scm:155 +#: gnu/packages/backup.scm:165 msgid "" "Duplicity backs up directories by producing encrypted tar-format volumes\n" "and uploading them to a remote or local file server. Because duplicity uses\n" @@ -1170,7 +1170,7 @@ msgid "" "spying and/or modification by the server." msgstr "" -#: gnu/packages/backup.scm:180 +#: gnu/packages/backup.scm:190 msgid "" "Par2cmdline uses Reed-Solomon error-correcting codes to\n" "generate and verify PAR2 recovery files. These files can be distributed\n" @@ -1182,7 +1182,7 @@ msgid "" "can even repair them." msgstr "" -#: gnu/packages/backup.scm:219 +#: gnu/packages/backup.scm:229 msgid "" "Hdup2 is a backup utility, its aim is to make backup really simple. The\n" "backup scheduling is done by means of a cron job. It supports an\n" @@ -1190,7 +1190,7 @@ msgid "" "backups (called chunks) to allow easy burning to CD/DVD." msgstr "" -#: gnu/packages/backup.scm:316 +#: gnu/packages/backup.scm:326 msgid "" "Libarchive provides a flexible interface for reading and writing\n" "archives in various formats such as tar and cpio. Libarchive also supports\n" @@ -1201,7 +1201,7 @@ msgid "" "random access nor for in-place modification." msgstr "" -#: gnu/packages/backup.scm:380 +#: gnu/packages/backup.scm:390 msgid "" "Rdup is a utility inspired by rsync and the plan9 way of doing backups.\n" "Rdup itself does not backup anything, it only print a list of absolute\n" @@ -1209,7 +1209,7 @@ msgid "" "list and implement the backup strategy." msgstr "" -#: gnu/packages/backup.scm:419 +#: gnu/packages/backup.scm:429 msgid "" "SnapRAID backs up files stored across multiple storage devices, such as\n" "disk arrays, in an efficient way reminiscent of its namesake @acronym{RAID,\n" @@ -1235,7 +1235,7 @@ msgid "" "remain fully idle, saving power and producing less noise." msgstr "" -#: gnu/packages/backup.scm:469 +#: gnu/packages/backup.scm:479 msgid "" "Btar is a tar-compatible archiver which allows arbitrary compression and\n" "ciphering, redundancy, differential backup, indexed extraction, multicore\n" @@ -1243,7 +1243,7 @@ msgid "" "errors." msgstr "" -#: gnu/packages/backup.scm:496 +#: gnu/packages/backup.scm:506 msgid "" "Rdiff-backup backs up one directory to another, possibly over a network.\n" "The target directory ends up a copy of the source directory, but extra reverse\n" @@ -1258,7 +1258,7 @@ msgid "" "rdiff-backup is easy to use and settings have sensible defaults." msgstr "" -#: gnu/packages/backup.scm:532 +#: gnu/packages/backup.scm:542 msgid "" "rsnapshot is a file system snapshot utility based on rsync.\n" "rsnapshot makes it easy to make periodic snapshots of local machines, and\n" @@ -1266,7 +1266,7 @@ msgid "" "rsnapshot uses hard links to deduplicate identical files." msgstr "" -#: gnu/packages/backup.scm:610 +#: gnu/packages/backup.scm:620 msgid "" "Libchop is a set of utilities and library for data backup and\n" "distributed storage. Its main application is @command{chop-backup}, an\n" @@ -1277,17 +1277,17 @@ msgid "" "detection, and lossless compression." msgstr "" -#: gnu/packages/backup.scm:740 +#: gnu/packages/backup.scm:750 msgid "" "Borg is a deduplicating backup program. Optionally, it\n" "supports compression and authenticated encryption. The main goal of Borg is to\n" "provide an efficient and secure way to backup data. The data deduplication\n" "technique used makes Borg suitable for daily backups since only changes are\n" -"stored. The authenticated encryption technique makes it suitable for backups\n" -"to not fully trusted targets. Borg is a fork of Attic." +"stored. The authenticated encryption technique makes it suitable for\n" +"storing backups on untrusted computers." msgstr "" -#: gnu/packages/backup.scm:771 +#: gnu/packages/backup.scm:781 msgid "" "wimlib is a C library and set of command-line utilities for\n" "creating, modifying, extracting, and mounting archives in the Windows Imaging\n" @@ -1295,14 +1295,14 @@ msgid "" "NTFS volumes using @code{ntfs-3g}, preserving NTFS-specific attributes." msgstr "" -#: gnu/packages/backup.scm:879 +#: gnu/packages/backup.scm:889 msgid "" "With dirvish you can maintain a set of complete images of your\n" "file systems with unattended creation and expiration. A dirvish backup vault\n" "is like a time machine for your data." msgstr "" -#: gnu/packages/backup.scm:974 +#: gnu/packages/backup.scm:984 msgid "" "Restic is a program that does backups right and was designed\n" "with the following principles in mind:\n" @@ -1334,7 +1334,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/backup.scm:1025 +#: gnu/packages/backup.scm:1035 msgid "" "ZBackup is a globally-deduplicating backup tool, based on the\n" "ideas found in Rsync. Feed a large @file{.tar} into it, and it will\n" @@ -1347,7 +1347,7 @@ msgid "" "is format-agnostic, so you can feed virtually any files to it." msgstr "" -#: gnu/packages/backup.scm:1061 +#: gnu/packages/backup.scm:1071 msgid "" "Dump examines files in a file system, determines which ones\n" "need to be backed up, and copies those files to a specified disk, tape or\n" @@ -1358,14 +1358,44 @@ msgid "" "interactive mode." msgstr "" -#: gnu/packages/backup.scm:1105 +#: gnu/packages/backup.scm:1131 +msgid "" +"Btrbk is a backup tool for Btrfs subvolumes, taking\n" +"advantage of Btrfs specific capabilities to create atomic snapshots and\n" +"transfer them incrementally to your backup locations. The source and target\n" +"locations are specified in a config file, which allows easily configuring\n" +"simple scenarios like e.g. a @i{laptop with locally attached backup disks}, as\n" +"well as more complex ones, e.g. a @i{server receiving backups from several\n" +"hosts via SSH, with different retention policy}. It has features such as:\n" +"@itemize\n" +"@item atomic snapshots\n" +"@item incremental backups\n" +"@item flexible retention policy\n" +"@item backups to multiple destinations\n" +"@item transfer via SSH\n" +"@item resume backups (for removable and mobile devices)\n" +"@item archive to offline storage\n" +"@item encrypted backups to non-btrfs storage\n" +"@item wildcard subvolumes (useful for Docker and LXC containers)\n" +"@item transaction log\n" +"@item comprehensive list and statistics output\n" +"@item resolve and trace Btrfs parent-child and received-from relationships\n" +"@item list file changes between backups\n" +"@item calculate accurate disk space usage based on block regions.\n" +"@end itemize\n" +"Btrbk is designed to run as a cron job for triggering periodic snapshots and\n" +"backups, as well as from the command line (e.g. for instantly creating\n" +"additional snapshots)." +msgstr "" + +#: gnu/packages/backup.scm:1194 msgid "" "Burp is a network backup and restore program. It attempts\n" "to reduce network traffic and the amount of space that is used by each\n" "backup." msgstr "" -#: gnu/packages/backup.scm:1136 +#: gnu/packages/backup.scm:1225 msgid "" "Disarchive can disassemble software archives into data\n" "and metadata. The goal is to create a small amount of metadata that\n" @@ -1375,7 +1405,7 @@ msgid "" "compression parameters used by Gzip." msgstr "" -#: gnu/packages/backup.scm:1181 +#: gnu/packages/backup.scm:1270 msgid "" "borgmatic is simple, configuration-driven backup software for servers\n" "and workstations. Protect your files with client-side encryption. Backup\n" @@ -1383,6 +1413,14 @@ msgid "" "borgmatic is powered by borg." msgstr "" +#: gnu/packages/backup.scm:1330 +msgid "" +"Vorta is a graphical backup client based on the Borg backup\n" +"tool. It supports the use of remote backup repositories. It can perform\n" +"scheduled backups, and has a graphical tool for browsing and extracting the Borg\n" +"archives." +msgstr "" + #: gnu/packages/base.scm:98 msgid "" "GNU Hello prints the message \"Hello, world!\" and then exits. It\n" @@ -1517,7 +1555,7 @@ msgstr "" "deren Quellen geändert hat. GNU Make bietet mächtige Erweiterungen über die\n" "Fähigkeiten des Standardwerkzeugs hinaus. " -#: gnu/packages/base.scm:550 +#: gnu/packages/base.scm:558 msgid "" "GNU Binutils is a collection of tools for working with binary files.\n" "Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler.\n" @@ -1533,14 +1571,14 @@ msgstr "" "Die »bfd«-Bibliothek zum Arbeiten mit ausführbaren oder Objektformaten\n" "ist ebenfalls enthalten." -#: gnu/packages/base.scm:694 +#: gnu/packages/base.scm:685 msgid "" "The linker wrapper (or @code{ld-wrapper}) wraps the linker to add any\n" "missing @code{-rpath} flags, and to detect any misuse of libraries outside of\n" "the store." msgstr "" -#: gnu/packages/base.scm:930 +#: gnu/packages/base.scm:921 msgid "" "Any Unix-like operating system needs a C library: the library which\n" "defines the \"system calls\" and other basic facilities such as open, malloc,\n" @@ -1556,21 +1594,21 @@ msgstr "" "Die GNU-C-Bibliothek wird als die C-Bibliothek im GNU-System sowie den meisten\n" "Systemen mit dem Linux-Kernel verwendet." -#: gnu/packages/base.scm:1057 +#: gnu/packages/base.scm:1048 msgid "" "This package provides all the locales supported by the GNU C Library,\n" "more than 400 in total. To use them set the @code{LOCPATH} environment variable\n" "to the @code{share/locale} sub-directory of this package." msgstr "" -#: gnu/packages/base.scm:1206 +#: gnu/packages/base.scm:1198 msgid "" "The which program finds the location of executables in PATH, with a\n" "variety of options. It is an alternative to the shell \"type\" built-in\n" "command." msgstr "" -#: gnu/packages/base.scm:1329 +#: gnu/packages/base.scm:1321 msgid "" "The Time Zone Database (often called tz or zoneinfo)\n" "contains code and data that represent the history of local time for many\n" @@ -1585,14 +1623,14 @@ msgstr "" "Verschiebung gegenüber der Weltzeit oder der Sommerzeit-Winterzeit-Regelungen\n" "wiederzugeben." -#: gnu/packages/base.scm:1367 +#: gnu/packages/base.scm:1359 msgid "" "libiconv provides an implementation of the iconv function for systems\n" "that lack it. iconv is used to convert between character encodings in a\n" "program. It supports a wide variety of different encodings." msgstr "" -#: gnu/packages/bittorrent.scm:131 +#: gnu/packages/bittorrent.scm:135 msgid "" "Transmission is a BitTorrent client that comes with graphical,\n" "textual, and Web user interfaces. Transmission also has a daemon for\n" @@ -1600,54 +1638,54 @@ msgid "" "DHT, µTP, PEX and Magnet Links." msgstr "" -#: gnu/packages/bittorrent.scm:165 +#: gnu/packages/bittorrent.scm:169 msgid "" "transmission-remote-gtk is a GTK client for remote management\n" "of the Transmission BitTorrent client, using its HTTP RPC protocol." msgstr "" -#: gnu/packages/bittorrent.scm:187 +#: gnu/packages/bittorrent.scm:191 msgid "" "LibTorrent is a BitTorrent library used by and developed in parallel\n" "with the BitTorrent client rtorrent. It is written in C++ with emphasis on\n" "speed and efficiency." msgstr "" -#: gnu/packages/bittorrent.scm:215 +#: gnu/packages/bittorrent.scm:219 msgid "" "rTorrent is a BitTorrent client with an ncurses interface. It supports\n" "full encryption, DHT, PEX, and Magnet Links. It can also be controlled via\n" "XML-RPC over SCGI." msgstr "" -#: gnu/packages/bittorrent.scm:249 +#: gnu/packages/bittorrent.scm:253 msgid "" "Tremc is a console client, with a curses interface, for the\n" "Transmission BitTorrent daemon." msgstr "" -#: gnu/packages/bittorrent.scm:290 +#: gnu/packages/bittorrent.scm:294 msgid "" "Transmission-remote-cli is a console client, with a curses\n" "interface, for the Transmission BitTorrent daemon. This package is no longer\n" "maintained upstream." msgstr "" -#: gnu/packages/bittorrent.scm:340 +#: gnu/packages/bittorrent.scm:345 msgid "" "Aria2 is a lightweight, multi-protocol & multi-source command-line\n" "download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and Metalink.\n" "Aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces." msgstr "" -#: gnu/packages/bittorrent.scm:374 +#: gnu/packages/bittorrent.scm:381 msgid "" "uGet is portable download manager with GTK+ interface supporting\n" "HTTP, HTTPS, BitTorrent and Metalink, supporting multi-connection\n" "downloads, download scheduling, download rate limiting." msgstr "" -#: gnu/packages/bittorrent.scm:406 +#: gnu/packages/bittorrent.scm:413 msgid "" "mktorrent is a simple command-line utility to create BitTorrent\n" "@dfn{metainfo} files, often known simply as @dfn{torrents}, from both single\n" @@ -1657,14 +1695,14 @@ msgid "" "and will take advantage of multiple processor cores where possible." msgstr "" -#: gnu/packages/bittorrent.scm:457 +#: gnu/packages/bittorrent.scm:472 msgid "" "libtorrent-rasterbar is a feature-complete C++ BitTorrent implementation\n" "focusing on efficiency and scalability. It runs on embedded devices as well as\n" "desktops." msgstr "" -#: gnu/packages/bittorrent.scm:508 +#: gnu/packages/bittorrent.scm:523 msgid "" "qBittorrent is a BitTorrent client programmed in C++/Qt that uses\n" "libtorrent (sometimes called libtorrent-rasterbar) by Arvid Norberg.\n" @@ -1674,7 +1712,7 @@ msgid "" "features." msgstr "" -#: gnu/packages/bittorrent.scm:580 +#: gnu/packages/bittorrent.scm:604 msgid "" "Deluge contains the common features to BitTorrent clients such as\n" "Protocol Encryption, DHT, Local Peer Discovery (LSD), Peer Exchange\n" @@ -1986,7 +2024,16 @@ msgid "" "functionality in a C++ iostream." msgstr "" -#: gnu/packages/compression.scm:1443 +#: gnu/packages/compression.scm:1416 +msgid "" +"Zopfli Compression Algorithm is a compression library\n" +"programmed in C to perform very good, but slow, deflate or zlib compression.\n" +"ZopfliCompress supports the deflate, gzip and zlib output formats. This\n" +"library can only compress, not decompress; existing zlib or deflate libraries\n" +"can decompress the data." +msgstr "" + +#: gnu/packages/compression.scm:1469 msgid "" "ZPAQ is a command-line archiver for realistic situations with\n" "many duplicate and already compressed files. It backs up only those files\n" @@ -2000,13 +2047,13 @@ msgid "" "or junctions, and always follows hard links." msgstr "" -#: gnu/packages/compression.scm:1545 +#: gnu/packages/compression.scm:1571 msgid "" "@command{unshield} is a tool and library for extracting @file{.cab}\n" " archives from InstallShield installers." msgstr "" -#: gnu/packages/compression.scm:1624 +#: gnu/packages/compression.scm:1650 msgid "" "Zstandard (@command{zstd}) is a lossless compression algorithm\n" "that combines very fast operation with a compression ratio comparable to that of\n" @@ -2016,7 +2063,7 @@ msgid "" "speed." msgstr "" -#: gnu/packages/compression.scm:1672 +#: gnu/packages/compression.scm:1698 msgid "" "Parallel Zstandard (PZstandard or @command{pzstd}) is a\n" "multi-threaded implementation of the @uref{http://zstd.net/, Zstandard\n" @@ -2029,7 +2076,7 @@ msgid "" "the actual decompression, the other input and output." msgstr "" -#: gnu/packages/compression.scm:1712 +#: gnu/packages/compression.scm:1738 msgid "" "Zip is a compression and file packaging/archive utility. Zip is useful\n" "for packaging a set of files for distribution, for archiving files, and for\n" @@ -2044,7 +2091,7 @@ msgid "" "Compression ratios of 2:1 to 3:1 are common for text files." msgstr "" -#: gnu/packages/compression.scm:1801 +#: gnu/packages/compression.scm:1827 msgid "" "UnZip is an extraction utility for archives compressed in .zip format,\n" "also called \"zipfiles\".\n" @@ -2055,7 +2102,7 @@ msgid "" "recreates the stored directory structure by default." msgstr "" -#: gnu/packages/compression.scm:1853 +#: gnu/packages/compression.scm:1879 msgid "" "Ziptime helps make @file{.zip} archives reproducible by replacing\n" "timestamps in the file header with a fixed time (1 January 2008).\n" @@ -2064,11 +2111,11 @@ msgid "" "@command{zip} to prevent it from storing the ``universal time'' field." msgstr "" -#: gnu/packages/compression.scm:1880 +#: gnu/packages/compression.scm:1906 msgid "ZZipLib is a library based on zlib for accessing zip files." msgstr "" -#: gnu/packages/compression.scm:1904 +#: gnu/packages/compression.scm:1930 msgid "" "Libzip is a C library for reading, creating, and modifying\n" "zip archives. Files can be added from data buffers, files, or compressed data\n" @@ -2076,7 +2123,7 @@ msgid "" "archive can be reverted." msgstr "" -#: gnu/packages/compression.scm:1937 +#: gnu/packages/compression.scm:1963 msgid "" "The main command is @command{aunpack} which extracts files\n" "from an archive. The other commands provided are @command{apack} (to create\n" @@ -2086,7 +2133,7 @@ msgid "" "of archives." msgstr "" -#: gnu/packages/compression.scm:1963 +#: gnu/packages/compression.scm:1989 msgid "" "Lunzip is a decompressor for files in the lzip compression format (.lz),\n" "written as a single small C tool with no dependencies. This makes it\n" @@ -2096,7 +2143,7 @@ msgid "" "Lunzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:1990 +#: gnu/packages/compression.scm:2016 msgid "" "Clzip is a compressor and decompressor for files in the lzip compression\n" "format (.lz), written as a single small C tool with no dependencies. This makes\n" @@ -2105,7 +2152,7 @@ msgid "" "Clzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:2018 +#: gnu/packages/compression.scm:2044 msgid "" "Lzlib is a C library for in-memory LZMA compression and decompression in\n" "the lzip format. It supports integrity checking of the decompressed data, and\n" @@ -2113,7 +2160,7 @@ msgid "" "corrupted input." msgstr "" -#: gnu/packages/compression.scm:2042 +#: gnu/packages/compression.scm:2068 msgid "" "Plzip is a massively parallel (multi-threaded) lossless data compressor\n" "and decompressor that uses the lzip file format (.lz). Files produced by plzip\n" @@ -2127,13 +2174,13 @@ msgid "" "single-member files which can't be decompressed in parallel." msgstr "" -#: gnu/packages/compression.scm:2074 +#: gnu/packages/compression.scm:2100 msgid "" "innoextract allows extracting Inno Setup installers under\n" "non-Windows systems without running the actual installer using wine." msgstr "" -#: gnu/packages/compression.scm:2096 +#: gnu/packages/compression.scm:2122 msgid "" "ISA-L is a collection of optimized low-level functions\n" "targeting storage applications. ISA-L includes:\n" @@ -2151,7 +2198,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/compression.scm:2156 +#: gnu/packages/compression.scm:2182 msgid "" "This package provides the reference implementation of Brotli,\n" "a generic-purpose lossless compression algorithm that compresses data using a\n" @@ -2163,13 +2210,13 @@ msgid "" "The specification of the Brotli Compressed Data Format is defined in RFC 7932." msgstr "" -#: gnu/packages/compression.scm:2176 +#: gnu/packages/compression.scm:2202 msgid "" "This package provides a Python interface to the @code{brotli}\n" "package, an implementation of the Brotli lossless compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2200 +#: gnu/packages/compression.scm:2226 msgid "" "UCL implements a number of compression algorithms that\n" "achieve an excellent compression ratio while allowing fast decompression.\n" @@ -2179,7 +2226,7 @@ msgid "" "decompression is a little bit slower." msgstr "" -#: gnu/packages/compression.scm:2248 +#: gnu/packages/compression.scm:2274 msgid "" "The Ultimate Packer for eXecutables (UPX) is an executable file\n" "compressor. UPX typically reduces the file size of programs and shared\n" @@ -2187,7 +2234,7 @@ msgid "" "download times, and other distribution and storage costs." msgstr "" -#: gnu/packages/compression.scm:2276 +#: gnu/packages/compression.scm:2302 msgid "" "QuaZIP is a simple C++ wrapper over Gilles Vollant's\n" "ZIP/UNZIP package that can be used to access ZIP archives. It uses\n" @@ -2201,7 +2248,7 @@ msgid "" "reading from and writing to ZIP archives." msgstr "" -#: gnu/packages/compression.scm:2335 +#: gnu/packages/compression.scm:2361 msgid "" "The zchunk compressed file format allows splitting a file\n" "into independent chunks. This makes it possible to retrieve only changed\n" @@ -2224,7 +2271,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/compression.scm:2391 +#: gnu/packages/compression.scm:2417 msgid "" "Zutils is a collection of utilities able to process any combination of\n" "compressed and uncompressed files transparently. If any given file, including\n" @@ -2241,14 +2288,14 @@ msgid "" "at run time, and must be installed separately." msgstr "" -#: gnu/packages/compression.scm:2449 +#: gnu/packages/compression.scm:2475 msgid "" "This package provides a script to unpack self-extracting\n" "archives generated by @command{makeself} or @command{mojo} without running the\n" "possibly untrusted extraction shell script." msgstr "" -#: gnu/packages/compression.scm:2477 +#: gnu/packages/compression.scm:2503 msgid "" "(N)compress provides the original compress and uncompress\n" "programs that used to be the de facto UNIX standard for compressing and\n" @@ -2256,7 +2303,7 @@ msgid "" "file compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2504 +#: gnu/packages/compression.scm:2530 msgid "" "Xarchiver is a front-end to various command line archiving\n" "tools. It uses GTK+ tool-kit and is designed to be desktop-environment\n" @@ -2265,13 +2312,13 @@ msgid "" "archiver is not installed." msgstr "" -#: gnu/packages/compression.scm:2541 +#: gnu/packages/compression.scm:2567 msgid "" "Archive huge numbers of files, or split massive tar archives into smaller\n" "chunks." msgstr "" -#: gnu/packages/compression.scm:2574 +#: gnu/packages/compression.scm:2600 msgid "" "Blosc is a high performance compressor optimized for binary data. It has\n" "been designed to transmit data to the processor cache faster than the\n" @@ -2281,14 +2328,14 @@ msgid "" "computations." msgstr "" -#: gnu/packages/compression.scm:2612 +#: gnu/packages/compression.scm:2638 msgid "" "ECM is a utility that converts ECM files, i.e., CD data files\n" "with their error correction data losslessly rearranged for better compression,\n" "to their original, binary CD format." msgstr "" -#: gnu/packages/compression.scm:2642 +#: gnu/packages/compression.scm:2668 msgid "" "Libdeflate is a library for fast, whole-buffer DEFLATE-based\n" "compression and decompression. The supported formats are:\n" @@ -2300,7 +2347,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/compression.scm:2672 +#: gnu/packages/compression.scm:2698 msgid "" "Tarlz is a massively parallel (multi-threaded) combined implementation of\n" "the tar archiver and the lzip compressor. Tarlz creates, lists, and extracts\n" @@ -2311,7 +2358,7 @@ msgid "" "can append files to the end of such compressed archives." msgstr "" -#: gnu/packages/compression.scm:2706 +#: gnu/packages/compression.scm:2732 msgid "" "The Concise Binary Object Representation (CBOR) is a data format whose\n" "design goals include the possibility of extremely small code size, fairly\n" @@ -2320,17 +2367,17 @@ msgid "" "serializations such as ASN.1 and MessagePack." msgstr "" -#: gnu/packages/compression.scm:2739 +#: gnu/packages/compression.scm:2765 msgid "Fcrackzip is a Zip file password cracker." msgstr "" -#: gnu/packages/databases.scm:211 +#: gnu/packages/databases.scm:216 msgid "" "4store is a RDF/SPARQL store written in C, supporting\n" "either single machines or networked clusters." msgstr "" -#: gnu/packages/databases.scm:255 +#: gnu/packages/databases.scm:260 msgid "" "@code{pg_tmp} creates temporary PostgreSQL databases, suitable for tasks\n" "like running software test suites. Temporary databases created with\n" @@ -2339,14 +2386,14 @@ msgid "" "60)." msgstr "" -#: gnu/packages/databases.scm:281 +#: gnu/packages/databases.scm:286 msgid "" "This package provides a utility for dumping the contents of an\n" "ElasticSearch index to a compressed file and restoring the dumpfile back to an\n" "ElasticSearch server" msgstr "" -#: gnu/packages/databases.scm:433 +#: gnu/packages/databases.scm:438 msgid "" "Firebird is an SQL @acronym{RDBMS, relational database management system}\n" "with rich support for ANSI SQL (e.g., @code{INSERT...RETURNING}) including\n" @@ -2366,20 +2413,20 @@ msgid "" "database later." msgstr "" -#: gnu/packages/databases.scm:506 +#: gnu/packages/databases.scm:511 msgid "" "LevelDB is a fast key-value storage library that provides an ordered\n" "mapping from string keys to string values." msgstr "" -#: gnu/packages/databases.scm:526 +#: gnu/packages/databases.scm:531 msgid "" "Memcached is an in-memory key-value store. It has a small\n" "and generic API, and was originally intended for use with dynamic web\n" "applications." msgstr "" -#: gnu/packages/databases.scm:588 +#: gnu/packages/databases.scm:593 msgid "" "libMemcached is a library to use memcached in C/C++\n" "applications. It comes with a complete reference guide and documentation of\n" @@ -2393,51 +2440,73 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:625 +#: gnu/packages/databases.scm:630 msgid "" "@code{pylibmc} is a client in Python for memcached. It is a wrapper\n" "around TangentOrg’s libmemcached library, and can be used as a drop-in\n" "replacement for the code@{python-memcached} library." msgstr "" -#: gnu/packages/databases.scm:653 +#: gnu/packages/databases.scm:662 +msgid "This is a memcache client library for the Go programming language." +msgstr "" + +#: gnu/packages/databases.scm:685 +#, fuzzy +#| msgid "This package provides a LADSPA plugin for a stereo reverb effect." +msgid "This package provides memcache client and server functionality." +msgstr "Dieses Paket bietet ein LADSPA-Plugin für einen Stereo-Nachhall-Effekt." + +#: gnu/packages/databases.scm:711 msgid "" "@code{litecli} is a command-line client for SQLite databases that has\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:685 +#: gnu/packages/databases.scm:732 +msgid "" +"This Python package provides an API to execute meta-commands (AKA\n" +"\"special\", or \"backslash commands\") on PostgreSQL." +msgstr "" + +#: gnu/packages/databases.scm:763 +msgid "" +"@code{pgcli} is a command line interface for PostgreSQL with\n" +"autocompletion and syntax highlighting." +msgstr "" + +#: gnu/packages/databases.scm:801 msgid "" "MyCLI is a command line interface for MySQL, MariaDB, and Percona with\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:782 +#: gnu/packages/databases.scm:898 msgid "" "MySQL is a fast, reliable, and easy to use relational database\n" "management system that supports the standardized Structured Query\n" "Language." msgstr "" -#: gnu/packages/databases.scm:1045 +#: gnu/packages/databases.scm:1161 msgid "" "MariaDB is a multi-user and multi-threaded SQL database server, designed\n" "as a drop-in replacement of MySQL." msgstr "" -#: gnu/packages/databases.scm:1070 +#: gnu/packages/databases.scm:1186 msgid "" "The MariaDB Connector/C is used to connect applications\n" "developed in C/C++ to MariaDB and MySQL databases." msgstr "" -#: gnu/packages/databases.scm:1093 +#: gnu/packages/databases.scm:1209 msgid "" "Galera is a wsrep-provider that is used with MariaDB for load-balancing\n" "and high-availability (HA)." msgstr "" -#: gnu/packages/databases.scm:1147 +#: gnu/packages/databases.scm:1263 msgid "" "PostgreSQL is a powerful object-relational database system. It is fully\n" "ACID compliant, has full support for foreign keys, joins, views, triggers, and\n" @@ -2447,19 +2516,27 @@ msgid "" "pictures, sounds, or video." msgstr "" -#: gnu/packages/databases.scm:1269 +#: gnu/packages/databases.scm:1395 +msgid "" +"TimescaleDB is an database designed to make SQL scalable for\n" +"time-series data. It is engineered up from PostgreSQL and packaged as a\n" +"PostgreSQL extension, providing automatic partitioning across time and space\n" +"(partitioning key), as well as full SQL support." +msgstr "" + +#: gnu/packages/databases.scm:1476 msgid "" "@code{pgloader} is a program that can load data or migrate databases from\n" "CSV, DB3, iXF, SQLite, MS-SQL or MySQL to PostgreSQL." msgstr "" -#: gnu/packages/databases.scm:1293 +#: gnu/packages/databases.scm:1500 msgid "" "PyMySQL is a pure-Python MySQL client library, based on PEP 249.\n" "Most public APIs are compatible with @command{mysqlclient} and MySQLdb." msgstr "" -#: gnu/packages/databases.scm:1320 +#: gnu/packages/databases.scm:1527 msgid "" "QDBM is a library of routines for managing a\n" "database. The database is a simple data file containing key-value\n" @@ -2469,7 +2546,7 @@ msgid "" "organized in a hash table or B+ tree." msgstr "" -#: gnu/packages/databases.scm:1357 +#: gnu/packages/databases.scm:1564 msgid "" "GNU Recutils is a set of tools and libraries for creating and\n" "manipulating text-based, human-editable databases. Despite being text-based,\n" @@ -2484,7 +2561,7 @@ msgstr "" "Zeitstempel und vieles mehr. Viele verschiedene Feldtypen sowie Verschlüsselung\n" "werden unterstützt." -#: gnu/packages/databases.scm:1389 +#: gnu/packages/databases.scm:1596 msgid "" "This package provides an Emacs major mode @code{rec-mode}\n" "for working with GNU Recutils text-based, human-editable databases. It\n" @@ -2492,7 +2569,7 @@ msgid "" "including field and record folding." msgstr "" -#: gnu/packages/databases.scm:1457 +#: gnu/packages/databases.scm:1664 msgid "" "RocksDB is a library that forms the core building block for a fast\n" "key-value server, especially suited for storing data on flash drives. It\n" @@ -2503,7 +2580,7 @@ msgid "" "data in a single database. RocksDB is partially based on @code{LevelDB}." msgstr "" -#: gnu/packages/databases.scm:1515 +#: gnu/packages/databases.scm:1722 msgid "" "Sparql-query is a command-line tool for accessing SPARQL\n" "endpoints over HTTP. It has been intentionally designed to @code{feel} similar to\n" @@ -2514,13 +2591,13 @@ msgid "" "for example from a shell script." msgstr "" -#: gnu/packages/databases.scm:1608 +#: gnu/packages/databases.scm:1815 msgid "" "Sqitch is a standalone change management system for database schemas,\n" "which uses SQL to describe changes." msgstr "" -#: gnu/packages/databases.scm:1635 +#: gnu/packages/databases.scm:1842 msgid "" "SQLcrush lets you view and edit a database directly from the text\n" "console through an ncurses interface. You can explore each table's structure,\n" @@ -2528,7 +2605,7 @@ msgid "" "changes." msgstr "" -#: gnu/packages/databases.scm:1673 +#: gnu/packages/databases.scm:1880 msgid "" "TDB is a Trivial Database. In concept, it is very much like GDBM,\n" "and BSD's DB except that it allows multiple simultaneous writers and uses\n" @@ -2536,11 +2613,11 @@ msgid "" "extremely small." msgstr "" -#: gnu/packages/databases.scm:1693 +#: gnu/packages/databases.scm:1900 msgid "This package provides an database interface for Perl." msgstr "" -#: gnu/packages/databases.scm:1741 +#: gnu/packages/databases.scm:1948 msgid "" "An SQL to OO mapper with an object API inspired by\n" "Class::DBI (with a compatibility layer as a springboard for porting) and a\n" @@ -2552,13 +2629,13 @@ msgid "" "\"ORDER BY\" and \"HAVING\" support." msgstr "" -#: gnu/packages/databases.scm:1770 +#: gnu/packages/databases.scm:1977 msgid "" "DBIx::Class::Cursor::Cached provides a cursor class with\n" "built-in caching support." msgstr "" -#: gnu/packages/databases.scm:1793 +#: gnu/packages/databases.scm:2000 msgid "" "Because the many-to-many relationships are not real\n" "relationships, they can not be introspected with DBIx::Class. Many-to-many\n" @@ -2568,26 +2645,26 @@ msgid "" "introspected and examined." msgstr "" -#: gnu/packages/databases.scm:1852 +#: gnu/packages/databases.scm:2059 msgid "" "DBIx::Class::Schema::Loader automates the definition of a\n" "DBIx::Class::Schema by scanning database table definitions and setting up the\n" "columns, primary keys, unique constraints and relationships." msgstr "" -#: gnu/packages/databases.scm:1876 +#: gnu/packages/databases.scm:2083 msgid "" "This package provides a PostgreSQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." msgstr "" -#: gnu/packages/databases.scm:1914 +#: gnu/packages/databases.scm:2121 msgid "" "This package provides a MySQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." msgstr "" -#: gnu/packages/databases.scm:1934 +#: gnu/packages/databases.scm:2141 msgid "" "DBD::SQLite is a Perl DBI driver for SQLite, that includes\n" "the entire thing in the distribution. So in order to get a fast transaction\n" @@ -2595,14 +2672,14 @@ msgid "" "module, and nothing else." msgstr "" -#: gnu/packages/databases.scm:1959 +#: gnu/packages/databases.scm:2166 msgid "" "@code{MySQL::Config} emulates the @code{load_defaults} function from\n" "libmysqlclient. It will fill an array with long options, ready to be parsed by\n" "@code{Getopt::Long}." msgstr "" -#: gnu/packages/databases.scm:1983 +#: gnu/packages/databases.scm:2190 msgid "" "This module was inspired by the excellent DBIx::Abstract.\n" "While based on the concepts used by DBIx::Abstract, the concepts used have\n" @@ -2612,7 +2689,7 @@ msgid "" "time your data changes." msgstr "" -#: gnu/packages/databases.scm:2010 +#: gnu/packages/databases.scm:2217 msgid "" "This module is nearly identical to @code{SQL::Abstract} 1.81, and exists\n" "to preserve the ability of users to opt into the new way of doing things in\n" @@ -2628,34 +2705,34 @@ msgid "" "your data changes, as this module figures it out." msgstr "" -#: gnu/packages/databases.scm:2043 +#: gnu/packages/databases.scm:2250 msgid "" "This module tries to split any SQL code, even including\n" "non-standard extensions, into the atomic statements it is composed of." msgstr "" -#: gnu/packages/databases.scm:2062 +#: gnu/packages/databases.scm:2269 msgid "" "SQL::Tokenizer is a tokenizer for SQL queries. It does not\n" "claim to be a parser or query verifier. It just creates sane tokens from a\n" "valid SQL query." msgstr "" -#: gnu/packages/databases.scm:2081 +#: gnu/packages/databases.scm:2288 msgid "" "Unixodbc is a library providing an API with which to access\n" "data sources. Data sources include SQL Servers and any software with an ODBC\n" "Driver." msgstr "" -#: gnu/packages/databases.scm:2113 +#: gnu/packages/databases.scm:2320 msgid "" "The goal for nanodbc is to make developers happy by providing\n" "a simpler and less verbose API for working with ODBC. Common tasks should be\n" "easy, requiring concise and simple code." msgstr "" -#: gnu/packages/databases.scm:2174 +#: gnu/packages/databases.scm:2381 msgid "" "UnQLite is an in-process software library which implements a\n" "self-contained, serverless, zero-configuration, transactional NoSQL\n" @@ -2664,27 +2741,35 @@ msgid "" "similar to BerkeleyDB, LevelDB, etc." msgstr "" -#: gnu/packages/databases.scm:2225 +#: gnu/packages/databases.scm:2432 msgid "" "Redis is an advanced key-value cache and store. Redis\n" "supports many data structures including strings, hashes, lists, sets, sorted\n" "sets, bitmaps and hyperloglogs." msgstr "" -#: gnu/packages/databases.scm:2247 +#: gnu/packages/databases.scm:2454 msgid "" "This package provides a Ruby client that tries to match Redis' API\n" "one-to-one, while still providing an idiomatic interface." msgstr "" -#: gnu/packages/databases.scm:2275 +#: gnu/packages/databases.scm:2479 +msgid "Package rdb implements parsing and encoding of the Redis RDB file format." +msgstr "" + +#: gnu/packages/databases.scm:2505 +msgid "Redigo is a Go client for the Redis database." +msgstr "" + +#: gnu/packages/databases.scm:2531 msgid "" "Kyoto Cabinet is a standalone file-based database that supports Hash\n" "and B+ Tree data storage models. It is a fast key-value lightweight\n" "database and supports many programming languages. It is a NoSQL database." msgstr "" -#: gnu/packages/databases.scm:2303 +#: gnu/packages/databases.scm:2559 msgid "" "Tokyo Cabinet is a library of routines for managing a database.\n" "The database is a simple data file containing records, each is a pair of a\n" @@ -2694,7 +2779,7 @@ msgid "" "organized in hash table, B+ tree, or fixed-length array." msgstr "" -#: gnu/packages/databases.scm:2339 +#: gnu/packages/databases.scm:2595 msgid "" "WiredTiger is an extensible platform for data management. It supports\n" "row-oriented storage (where all columns of a row are stored together),\n" @@ -2703,17 +2788,17 @@ msgid "" "trees (LSM), for sustained throughput under random insert workloads." msgstr "" -#: gnu/packages/databases.scm:2389 +#: gnu/packages/databases.scm:2645 msgid "" "This package provides Guile bindings to the WiredTiger ``NoSQL''\n" "database." msgstr "" -#: gnu/packages/databases.scm:2419 +#: gnu/packages/databases.scm:2675 msgid "The DB::File module provides Perl bindings to the Berkeley DB version 1.x." msgstr "" -#: gnu/packages/databases.scm:2467 +#: gnu/packages/databases.scm:2723 msgid "" "The @dfn{Lightning Memory-Mapped Database} (LMDB) is a high-performance\n" "transactional database. Unlike more complex relational databases, LMDB handles\n" @@ -2726,7 +2811,7 @@ msgid "" "virtual address space — not physical RAM." msgstr "" -#: gnu/packages/databases.scm:2501 +#: gnu/packages/databases.scm:2757 msgid "" "@code{lmdbxx} is a comprehensive @code{C++} wrapper for the\n" "@code{LMDB} embedded database library, offering both an error-checked\n" @@ -2734,14 +2819,22 @@ msgid "" "semantics." msgstr "" -#: gnu/packages/databases.scm:2535 +#: gnu/packages/databases.scm:2791 msgid "" "Libpqxx is a C++ library to enable user programs to communicate with the\n" "PostgreSQL database back-end. The database back-end can be local or it may be\n" "on another machine, accessed via TCP/IP." msgstr "" -#: gnu/packages/databases.scm:2561 +#: gnu/packages/databases.scm:2819 +msgid "" +"Bolt is a pure Go key/value store inspired by Howard Chu's\n" +"LMDB project. The goal of the project is to provide a simple, fast, and\n" +"reliable database for projects that don't require a full database server such as\n" +"Postgres or MySQL." +msgstr "" + +#: gnu/packages/databases.scm:2845 msgid "" "Peewee is a simple and small ORM (object-relation mapping) tool. Peewee\n" "handles converting between pythonic values and those used by databases, so you\n" @@ -2750,20 +2843,20 @@ msgid "" "can autogenerate peewee models using @code{pwiz}, a model generator." msgstr "" -#: gnu/packages/databases.scm:2584 +#: gnu/packages/databases.scm:2868 msgid "" "Pypika-tortoise is a fork of pypika which has been\n" "streamlined for its use in the context of tortoise-orm. It removes support\n" "for many database kinds that tortoise-orm doesn't need, for example." msgstr "" -#: gnu/packages/databases.scm:2604 +#: gnu/packages/databases.scm:2888 msgid "" "This package is a Sphinx extension providing additional\n" "coroutine-specific markup." msgstr "" -#: gnu/packages/databases.scm:2632 +#: gnu/packages/databases.scm:2916 msgid "" "@code{asyncpg} is a database interface library designed\n" "specifically for PostgreSQL and Python/asyncio. @code{asyncpg} is an\n" @@ -2771,14 +2864,14 @@ msgid "" "with Python's asyncio framework." msgstr "" -#: gnu/packages/databases.scm:2652 +#: gnu/packages/databases.scm:2936 msgid "" "@code{asyncmy} is a fast @code{asyncio} MySQL driver, which\n" "reuses most of @code{pymysql} and @code{aiomysql} but rewrites the core\n" "protocol with Cython for performance." msgstr "" -#: gnu/packages/databases.scm:2672 +#: gnu/packages/databases.scm:2956 msgid "" "@code{aiomysql} is a driver for accessing a MySQL database\n" "from the @code{asyncio} Python framework. It depends on and reuses most parts\n" @@ -2786,7 +2879,7 @@ msgid "" "@code{aiopg} library." msgstr "" -#: gnu/packages/databases.scm:2705 +#: gnu/packages/databases.scm:2989 msgid "" "Tortoise ORM is an easy-to-use asyncio ORM (Object\n" "Relational Mapper) inspired by Django. Tortoise ORM was built with relations\n" @@ -2795,7 +2888,7 @@ msgid "" "with relational data." msgstr "" -#: gnu/packages/databases.scm:2749 +#: gnu/packages/databases.scm:3033 msgid "" "SQLCipher is an implementation of SQLite, extended to\n" "provide transparent 256-bit AES encryption of database files. Pages are\n" @@ -2804,19 +2897,19 @@ msgid "" "development." msgstr "" -#: gnu/packages/databases.scm:2782 +#: gnu/packages/databases.scm:3066 msgid "" "@code{python-pyodbc-c} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2807 +#: gnu/packages/databases.scm:3091 msgid "" "@code{python-pyodbc} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2840 +#: gnu/packages/databases.scm:3124 msgid "" "MDB Tools is a set of tools and applications to read the\n" "proprietary MDB file format used in Microsoft's Access database package. This\n" @@ -2825,39 +2918,44 @@ msgid "" "etc., and an SQL engine for performing simple SQL queries." msgstr "" -#: gnu/packages/databases.scm:2886 +#: gnu/packages/databases.scm:3153 +#, fuzzy +msgid "This package provides a MongoDB driver for Go." +msgstr "Dieses Paket bietet Steve Harris’ LADSPA-Plugin für einen Stereo-Nachhall-Effekt." + +#: gnu/packages/databases.scm:3194 msgid "" "python-lmdb or py-lmdb is a Python binding for the @dfn{Lightning\n" "Memory-Mapped Database} (LMDB), a high-performance key-value store." msgstr "" -#: gnu/packages/databases.scm:2925 +#: gnu/packages/databases.scm:3233 msgid "" "Orator provides a simple ActiveRecord-like Object Relational Mapping\n" "implementation for Python." msgstr "" -#: gnu/packages/databases.scm:2963 +#: gnu/packages/databases.scm:3271 msgid "" "Virtuoso is a scalable cross-platform server that combines\n" "relational, graph, and document data management with web application server\n" "and web services platform functionality." msgstr "" -#: gnu/packages/databases.scm:2990 +#: gnu/packages/databases.scm:3298 msgid "" "Cassandra Cluster Manager is a development tool for testing\n" "local Cassandra clusters. It creates, launches and removes Cassandra clusters\n" "on localhost." msgstr "" -#: gnu/packages/databases.scm:3018 +#: gnu/packages/databases.scm:3326 msgid "" "Pysqlite provides SQLite bindings for Python that comply to the\n" "Database API 2.0T." msgstr "" -#: gnu/packages/databases.scm:3048 +#: gnu/packages/databases.scm:3356 msgid "" "SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that\n" "gives application developers the full power and flexibility of SQL. It\n" @@ -2866,14 +2964,14 @@ msgid "" "simple and Pythonic domain language." msgstr "" -#: gnu/packages/databases.scm:3086 +#: gnu/packages/databases.scm:3382 msgid "" "This package contains type stubs and a mypy plugin to\n" "provide more precise static types and type inference for SQLAlchemy\n" "framework." msgstr "" -#: gnu/packages/databases.scm:3118 +#: gnu/packages/databases.scm:3414 msgid "" "SQLAlchemy-utils provides various utility functions and custom data types\n" "for SQLAlchemy. SQLAlchemy is an SQL database abstraction library for Python.\n" @@ -2890,7 +2988,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/databases.scm:3165 +#: gnu/packages/databases.scm:3461 msgid "" "This package provides mock helpers for SQLAlchemy that makes it easy\n" "to mock an SQLAlchemy session while preserving the ability to do asserts.\n" @@ -2900,13 +2998,13 @@ msgid "" "this library provides functions to facilitate such comparisons." msgstr "" -#: gnu/packages/databases.scm:3196 +#: gnu/packages/databases.scm:3492 msgid "" "Alembic is a lightweight database migration tool for usage with the\n" "SQLAlchemy Database Toolkit for Python." msgstr "" -#: gnu/packages/databases.scm:3221 +#: gnu/packages/databases.scm:3517 msgid "" "PickleShare is a small ‘shelve’-like datastore with concurrency support.\n" "Like shelve, a PickleShareDB object acts like a normal dictionary. Unlike\n" @@ -2917,7 +3015,7 @@ msgid "" "PickleShare." msgstr "" -#: gnu/packages/databases.scm:3275 +#: gnu/packages/databases.scm:3571 msgid "" "APSW is a Python wrapper for the SQLite\n" "embedded relational database engine. In contrast to other wrappers such as\n" @@ -2925,21 +3023,21 @@ msgid "" "translate the complete SQLite API into Python." msgstr "" -#: gnu/packages/databases.scm:3312 +#: gnu/packages/databases.scm:3608 msgid "" "The package aiosqlite replicates the standard sqlite3 module, but with\n" "async versions of all the standard connection and cursor methods, and context\n" "managers for automatically closing connections." msgstr "" -#: gnu/packages/databases.scm:3333 +#: gnu/packages/databases.scm:3629 msgid "" "This package provides the Neo4j Python driver that connects\n" "to the database using Neo4j's binary protocol. It aims to be minimal, while\n" "being idiomatic to Python." msgstr "" -#: gnu/packages/databases.scm:3353 +#: gnu/packages/databases.scm:3649 msgid "" "This package provides a client library and toolkit for\n" "working with Neo4j from within Python applications and from the command\n" @@ -2947,26 +3045,38 @@ msgid "" "designed to be easy and intuitive to use." msgstr "" -#: gnu/packages/databases.scm:3379 +#: gnu/packages/databases.scm:3675 msgid "" "psycopg2 is a thread-safe PostgreSQL adapter that implements DB-API\n" "2.0." msgstr "" -#: gnu/packages/databases.scm:3413 +#: gnu/packages/databases.scm:3702 +msgid "" +"This module provides connection pool implementations that can be used\n" +"with the @code{psycopg} PostgreSQL driver." +msgstr "" + +#: gnu/packages/databases.scm:3776 +msgid "" +"Psycopg 3 is a new implementation of the popular @code{psycopg2}\n" +"database adapter for Python." +msgstr "" + +#: gnu/packages/databases.scm:3810 msgid "" "This package provides a program to build Entity\n" "Relationship diagrams from a SQLAlchemy model (or directly from the\n" "database)." msgstr "" -#: gnu/packages/databases.scm:3443 +#: gnu/packages/databases.scm:3840 msgid "" "Yoyo is a database schema migration tool. Migrations are written as SQL\n" "files or Python scripts that define a list of migration steps." msgstr "" -#: gnu/packages/databases.scm:3464 +#: gnu/packages/databases.scm:3861 msgid "" "MySQLdb is an interface to the popular MySQL database server\n" "for Python. The design goals are:\n" @@ -2977,13 +3087,13 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/databases.scm:3490 +#: gnu/packages/databases.scm:3887 msgid "" "Python-hiredis is a python extension that wraps protocol\n" "parsing code in hiredis. It primarily speeds up parsing of multi bulk replies." msgstr "" -#: gnu/packages/databases.scm:3517 +#: gnu/packages/databases.scm:3914 msgid "" "Fakeredis is a pure-Python implementation of the redis-py Python client\n" "that simulates talking to a redis server. It was created for a single purpose:\n" @@ -2994,49 +3104,49 @@ msgid "" "reasonable substitute." msgstr "" -#: gnu/packages/databases.scm:3545 +#: gnu/packages/databases.scm:3942 msgid "This package provides a Python interface to the Redis key-value store." msgstr "" -#: gnu/packages/databases.scm:3586 +#: gnu/packages/databases.scm:3983 msgid "" "RQ (Redis Queue) is a simple Python library for queueing jobs and\n" "processing them in the background with workers. It is backed by Redis and it\n" "is designed to have a low barrier to entry." msgstr "" -#: gnu/packages/databases.scm:3623 +#: gnu/packages/databases.scm:4020 msgid "" "This package provides job scheduling capabilities to @code{python-rq}\n" "(Redis Queue)." msgstr "" -#: gnu/packages/databases.scm:3643 +#: gnu/packages/databases.scm:4040 msgid "" "@code{trollius-redis} is a Redis client for Python\n" " trollius. It is an asynchronous IO (PEP 3156) implementation of the\n" " Redis protocol." msgstr "" -#: gnu/packages/databases.scm:3686 +#: gnu/packages/databases.scm:4083 msgid "" "Sqlparse is a non-validating SQL parser for Python. It\n" "provides support for parsing, splitting and formatting SQL statements." msgstr "" -#: gnu/packages/databases.scm:3703 +#: gnu/packages/databases.scm:4101 msgid "" "@code{python-sql} is a library to write SQL queries, that\n" "transforms idiomatic python function calls to well-formed SQL queries." msgstr "" -#: gnu/packages/databases.scm:3726 +#: gnu/packages/databases.scm:4124 msgid "" "PyPika is a python SQL query builder that exposes the full richness of\n" "the SQL language using a syntax that reflects the resulting query." msgstr "" -#: gnu/packages/databases.scm:3852 +#: gnu/packages/databases.scm:4250 msgid "" "Apache Arrow is a columnar in-memory analytics layer\n" "designed to accelerate big data. It houses a set of canonical in-memory\n" @@ -3045,21 +3155,21 @@ msgid "" "algorithm implementations." msgstr "" -#: gnu/packages/databases.scm:3912 +#: gnu/packages/databases.scm:4310 msgid "" "This library provides a Pythonic API wrapper for the reference Arrow C++\n" "implementation, along with tools for interoperability with pandas, NumPy, and\n" "other traditional Python scientific computing packages." msgstr "" -#: gnu/packages/databases.scm:3933 +#: gnu/packages/databases.scm:4331 msgid "" "This package provides a Python client library for CrateDB.\n" "It implements the Python DB API 2.0 specification and includes support for\n" "SQLAlchemy." msgstr "" -#: gnu/packages/databases.scm:3952 +#: gnu/packages/databases.scm:4350 msgid "" "This library implements a database independent abstraction layer in C,\n" "similar to the DBI/DBD layer in Perl. Writing one generic set of code,\n" @@ -3067,7 +3177,7 @@ msgid "" "simultaneous database connections by using this framework." msgstr "" -#: gnu/packages/databases.scm:4018 +#: gnu/packages/databases.scm:4416 msgid "" "The @code{libdbi-drivers} library provides the database specific drivers\n" "for the @code{libdbi} framework.\n" @@ -3080,26 +3190,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:4060 +#: gnu/packages/databases.scm:4458 msgid "" "SOCI is an abstraction layer for several database backends, including\n" "PostreSQL, SQLite, ODBC and MySQL." msgstr "" -#: gnu/packages/databases.scm:4084 +#: gnu/packages/databases.scm:4482 msgid "" "FreeTDS is an implementation of the Tabular DataStream protocol, used for\n" "connecting to MS SQL and Sybase servers over TCP/IP." msgstr "" -#: gnu/packages/databases.scm:4106 +#: gnu/packages/databases.scm:4504 msgid "" "TinyDB is a small document oriented database written in pure Python\n" "with no external dependencies. The targets are small apps that would\n" "be blown away by a SQL-DB or an external database server." msgstr "" -#: gnu/packages/databases.scm:4154 +#: gnu/packages/databases.scm:4552 msgid "" "Sequeler is a native Linux SQL client built in Vala and\n" "Gtk. It allows you to connect to your local and remote databases, write SQL in\n" @@ -3107,7 +3217,13 @@ msgid "" "a Gtk.Grid Widget." msgstr "" -#: gnu/packages/debug.scm:111 +#: gnu/packages/databases.scm:4594 +msgid "" +"Sqlitebrowser is a high quaility, visual, open source tool to\n" +"create design, and edit database file compatible with SQLite." +msgstr "" + +#: gnu/packages/debug.scm:112 msgid "" "Delta assists you in minimizing \"interesting\" files subject to a test\n" "of their interestingness. A common such situation is when attempting to\n" @@ -3115,7 +3231,7 @@ msgid "" "program to exhibit a bug." msgstr "" -#: gnu/packages/debug.scm:172 +#: gnu/packages/debug.scm:173 msgid "" "C-Reduce is a tool that takes a large C or C++ program that has a\n" "property of interest (such as triggering a compiler bug) and automatically\n" @@ -3124,14 +3240,14 @@ msgid "" "tools that process C/C++ code." msgstr "" -#: gnu/packages/debug.scm:219 +#: gnu/packages/debug.scm:220 msgid "" "C-Vise is a Python port of the C-Reduce tool that is fully compatible\n" "and uses the same efficient LLVM-based C/C++ @code{clang_delta} reduction\n" "tool." msgstr "" -#: gnu/packages/debug.scm:289 +#: gnu/packages/debug.scm:290 msgid "" "American fuzzy lop is a security-oriented fuzzer that employs a novel\n" "type of compile-time instrumentation and genetic algorithms to automatically\n" @@ -3142,7 +3258,7 @@ msgid "" "down the road." msgstr "" -#: gnu/packages/debug.scm:433 +#: gnu/packages/debug.scm:434 msgid "" "QEMU is a generic machine emulator and virtualizer. This package\n" "of QEMU is used only by the american fuzzy lop package.\n" @@ -3158,7 +3274,7 @@ msgid "" "server and embedded PowerPC, and S390 guests." msgstr "" -#: gnu/packages/debug.scm:501 +#: gnu/packages/debug.scm:502 msgid "" "Stress Make is a customized GNU Make that explicitly manages the order\n" "in which concurrent jobs are run to provoke erroneous behavior into becoming\n" @@ -3168,14 +3284,14 @@ msgid "" "conditions." msgstr "" -#: gnu/packages/debug.scm:529 +#: gnu/packages/debug.scm:530 msgid "" "Zzuf is a transparent application input fuzzer. It works by\n" "intercepting file operations and changing random bits in the program's\n" "input. Zzuf's behaviour is deterministic, making it easy to reproduce bugs." msgstr "" -#: gnu/packages/debug.scm:581 +#: gnu/packages/debug.scm:582 msgid "" "Scanmem is a debugging utility designed to isolate the\n" "address of an arbitrary variable in an executing process. Scanmem simply\n" @@ -3184,13 +3300,13 @@ msgid "" "the position of the variable and allows you to modify its value." msgstr "" -#: gnu/packages/debug.scm:611 +#: gnu/packages/debug.scm:612 msgid "" "Remake is an enhanced version of GNU Make that adds improved\n" "error reporting, better tracing, profiling, and a debugger." msgstr "" -#: gnu/packages/debug.scm:667 +#: gnu/packages/debug.scm:668 msgid "" "rr is a lightweight tool for recording, replaying and debugging\n" "execution of applications (trees of processes and threads). Debugging extends\n" @@ -3199,13 +3315,13 @@ msgid "" "fun." msgstr "" -#: gnu/packages/debug.scm:695 +#: gnu/packages/debug.scm:696 msgid "" "The @code{libbacktrace} library can be linked into a C/C++\n" "program to produce symbolic backtraces." msgstr "" -#: gnu/packages/debug.scm:735 +#: gnu/packages/debug.scm:736 msgid "" "The libleak tool detects memory leaks by hooking memory\n" "functions such as @code{malloc}. It comes as a shared object to be pre-loaded\n" @@ -3217,7 +3333,7 @@ msgid "" "use than similar tools like @command{mtrace}." msgstr "" -#: gnu/packages/debug.scm:763 +#: gnu/packages/debug.scm:764 msgid "" "@code{cgdb} is a lightweight curses (terminal-based) interface to the\n" "GNU Debugger (GDB). In addition to the standard gdb console, cgdb provides\n" @@ -3226,7 +3342,7 @@ msgid "" "using cgdb." msgstr "" -#: gnu/packages/debug.scm:798 +#: gnu/packages/debug.scm:799 msgid "" "MspDebug supports FET430UIF, eZ430, RF2500 and Olimex\n" "MSP430-JTAG-TINY programmers, as well as many other compatible\n" @@ -3242,14 +3358,14 @@ msgid "" "multiple test suites, which are then all managed by a single harness." msgstr "" -#: gnu/packages/games.scm:287 +#: gnu/packages/games.scm:288 msgid "" "Abe's Amazing Adventure is a scrolling,\n" "platform-jumping, key-collecting, ancient pyramid exploring game, vaguely in\n" "the style of similar games for the Commodore+4." msgstr "" -#: gnu/packages/games.scm:357 +#: gnu/packages/games.scm:358 msgid "" "Adanaxis is a fast-moving first person shooter set in deep space, where\n" "the fundamentals of space itself are changed. By adding another dimension to\n" @@ -3260,7 +3376,7 @@ msgid "" "mouse and joystick control, and original music." msgstr "" -#: gnu/packages/games.scm:401 +#: gnu/packages/games.scm:402 msgid "" "Guide Alex the Allegator through the jungle in order to save his\n" "girlfriend Lola from evil humans who want to make a pair of shoes out of her.\n" @@ -3269,7 +3385,7 @@ msgid "" "The game includes a built-in editor so you can design and share your own maps." msgstr "" -#: gnu/packages/games.scm:431 +#: gnu/packages/games.scm:432 msgid "" "Armagetron Advanced is a multiplayer game in 3d that\n" "attempts to emulate and expand on the lightcycle sequence from the movie Tron.\n" @@ -3279,7 +3395,7 @@ msgid "" "physics settings to tweak as well." msgstr "" -#: gnu/packages/games.scm:489 +#: gnu/packages/games.scm:490 msgid "" "Space is a vast area, an unbounded territory where it seems there is\n" "a room for everybody, but reversal of fortune put things differently. The\n" @@ -3291,7 +3407,7 @@ msgid "" "regret their insolence." msgstr "" -#: gnu/packages/games.scm:556 +#: gnu/packages/games.scm:557 msgid "" "Bastet (short for Bastard Tetris) is a simple ncurses-based falling brick\n" "game. Unlike normal Tetris, Bastet does not choose the next brick at random.\n" @@ -3301,19 +3417,19 @@ msgid "" "canyons and wait for the long I-shaped block to clear four rows at a time." msgstr "" -#: gnu/packages/games.scm:601 +#: gnu/packages/games.scm:602 msgid "" "Tetrinet is a multiplayer Tetris-like game with powerups and\n" "attacks you can use on opponents." msgstr "" -#: gnu/packages/games.scm:635 +#: gnu/packages/games.scm:636 msgid "" "Vitetris is a classic multiplayer Tetris clone for the\n" "terminal." msgstr "" -#: gnu/packages/games.scm:678 +#: gnu/packages/games.scm:679 msgid "" "Blobwars: Metal Blob Solid is a 2D platform game, the first\n" "in the Blobwars series. You take on the role of a fearless Blob agent. Your\n" @@ -3321,7 +3437,7 @@ msgid "" "possible, while battling many vicious aliens." msgstr "" -#: gnu/packages/games.scm:771 +#: gnu/packages/games.scm:772 msgid "" "These are the BSD games. See the fortune-mod package for fortunes.\n" "\n" @@ -3354,7 +3470,7 @@ msgid "" "Quizzes: arithmetic and quiz." msgstr "" -#: gnu/packages/games.scm:866 +#: gnu/packages/games.scm:867 msgid "" "BZFlag is a 3D multi-player multiplatform tank battle game that\n" "allows users to play against each other in a network environment.\n" @@ -3374,7 +3490,7 @@ msgid "" "high a score as possible." msgstr "" -#: gnu/packages/games.scm:949 +#: gnu/packages/games.scm:950 msgid "" "Cataclysm: Dark Days Ahead (or \"DDA\" for short) is a roguelike set\n" "in a post-apocalyptic world. Struggle to survive in a harsh, persistent,\n" @@ -3386,7 +3502,7 @@ msgid "" "want what you have." msgstr "" -#: gnu/packages/games.scm:998 +#: gnu/packages/games.scm:999 msgid "" "Cockatrice is a program for playing tabletop card games\n" "over a network. Its server design prevents users from manipulating the game\n" @@ -3394,7 +3510,7 @@ msgid "" "allows users to brew while offline." msgstr "" -#: gnu/packages/games.scm:1052 +#: gnu/packages/games.scm:1053 msgid "" "This package provides a reimplementation of the 1997 Bullfrog business\n" "simulation game @i{Theme Hospital}. As well as faithfully recreating the\n" @@ -3402,7 +3518,7 @@ msgid "" "more. This package does @emph{not} provide the game assets." msgstr "" -#: gnu/packages/games.scm:1094 +#: gnu/packages/games.scm:1095 msgid "" "Cowsay is basically a text filter. Send some text into it,\n" "and you get a cow saying your text. If you think a talking cow isn't enough,\n" @@ -3410,21 +3526,21 @@ msgid "" "tired of cows, a variety of other ASCII-art messengers are available." msgstr "" -#: gnu/packages/games.scm:1135 +#: gnu/packages/games.scm:1136 msgid "" "@command{lolcat} concatenates files and streams like\n" "regular @command{cat}, but it also adds terminal escape codes between\n" "characters and lines resulting in a rainbow effect." msgstr "" -#: gnu/packages/games.scm:1164 +#: gnu/packages/games.scm:1165 #, scheme-format msgid "" "This package provides the Fallout 2 game engine. Game data\n" "should be placed in @file{~/.local/share/falltergeist}." msgstr "" -#: gnu/packages/games.scm:1275 +#: gnu/packages/games.scm:1276 msgid "" "FooBillard++ is an advanced 3D OpenGL billiard game\n" "based on the original foobillard 3.0a sources from Florian Berger.\n" @@ -3446,7 +3562,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:1342 +#: gnu/packages/games.scm:1343 msgid "" "The Freedoom project aims to create a complete free content first person\n" "shooter game. Freedoom by itself is just the raw material for a game: it must\n" @@ -3455,7 +3571,7 @@ msgid "" "effects and music to make a completely free game." msgstr "" -#: gnu/packages/games.scm:1392 +#: gnu/packages/games.scm:1394 msgid "" "Freedroid RPG is an @dfn{RPG} (Role-Playing Game) with isometric graphics.\n" "The game tells the story of a world destroyed by a conflict between robots and\n" @@ -3465,7 +3581,7 @@ msgid "" "real-time combat." msgstr "" -#: gnu/packages/games.scm:1471 +#: gnu/packages/games.scm:1473 msgid "" "Golly simulates Conway's Game of Life and many other types of cellular\n" "automata. The following features are available:\n" @@ -3486,7 +3602,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:1527 +#: gnu/packages/games.scm:1529 #, fuzzy #| msgid "This package provides a dictionary for the GNU Aspell spell checker." msgid "" @@ -3494,7 +3610,7 @@ msgid "" "Joy-Con controllers." msgstr "Dieses Paket bietet ein Wörterbuch für das GNU-Aspell-Rechtschreibprüfprogramm." -#: gnu/packages/games.scm:1557 +#: gnu/packages/games.scm:1559 msgid "" "Engine for Caesar III, a city-building real-time strategy game.\n" "Julius includes some UI enhancements while preserving the logic (including\n" @@ -3502,7 +3618,7 @@ msgid "" "does not include game data." msgstr "" -#: gnu/packages/games.scm:1591 +#: gnu/packages/games.scm:1593 msgid "" "Fork of Julius, an engine for the a city-building real-time strategy\n" "game Caesar III. Gameplay enhancements include:\n" @@ -3517,7 +3633,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/games.scm:1630 +#: gnu/packages/games.scm:1632 msgid "" "Me and My Shadow is a puzzle/platform game in which you try\n" "to reach the exit by solving puzzles. Spikes, moving blocks, fragile blocks\n" @@ -3525,7 +3641,7 @@ msgid "" "shadow mimic them to reach blocks you couldn't reach alone." msgstr "" -#: gnu/packages/games.scm:1686 +#: gnu/packages/games.scm:1688 msgid "" "@code{Open Surge} is a 2D retro side-scrolling platformer\n" "inspired by the Sonic games. The player runs at high speeds through each\n" @@ -3533,7 +3649,7 @@ msgid "" "built-in level editor." msgstr "" -#: gnu/packages/games.scm:1732 +#: gnu/packages/games.scm:1734 msgid "" "Knights is a multiplayer game involving several knights who\n" "must run around a dungeon and complete various quests. Each game revolves\n" @@ -3545,7 +3661,7 @@ msgid "" "destroying an ancient book using a special wand." msgstr "" -#: gnu/packages/games.scm:1780 +#: gnu/packages/games.scm:1781 msgid "" "GNOME 2048 provides a 2D grid for playing 2048, a\n" "single-player sliding tile puzzle game. The objective of the game is to merge\n" @@ -3553,7 +3669,7 @@ msgid "" "in one tile." msgstr "" -#: gnu/packages/games.scm:1819 +#: gnu/packages/games.scm:1820 msgid "" "GNOME Chess provides a 2D board for playing chess games\n" "against human or computer players. It supports loading and saving games in\n" @@ -3561,7 +3677,7 @@ msgid "" "such as chess or stockfish." msgstr "" -#: gnu/packages/games.scm:1880 +#: gnu/packages/games.scm:1881 msgid "" "The GNU backgammon application (also known as \"gnubg\") can\n" "be used for playing, analyzing and teaching the game. It has an advanced\n" @@ -3570,7 +3686,7 @@ msgid "" "also features an attractive, 3D representation of the playing board." msgstr "" -#: gnu/packages/games.scm:1921 +#: gnu/packages/games.scm:1922 msgid "" "GNUbik is a puzzle game in which you must manipulate a cube to make\n" "each of its faces have a uniform color. The game is customizable, allowing\n" @@ -3579,13 +3695,13 @@ msgid "" "scriptable with Guile." msgstr "" -#: gnu/packages/games.scm:1944 +#: gnu/packages/games.scm:1945 msgid "" "GNU Shogi is a program that plays the game Shogi (Japanese\n" "Chess). It is similar to standard chess but this variant is far more complicated." msgstr "" -#: gnu/packages/games.scm:1974 +#: gnu/packages/games.scm:1975 msgid "" "LTris is a tetris clone: differently shaped blocks are falling down the\n" "rectangular playing field and can be moved sideways or rotated by 90 degree\n" @@ -3599,7 +3715,7 @@ msgid "" "watch your CPU playing while enjoying a cup of tea!" msgstr "" -#: gnu/packages/games.scm:2097 +#: gnu/packages/games.scm:2098 msgid "" "NetHack is a single player dungeon exploration game that runs\n" "on a wide variety of computer systems, with a variety of graphical and text\n" @@ -3613,7 +3729,7 @@ msgid "" "role, and your gender." msgstr "" -#: gnu/packages/games.scm:2141 +#: gnu/packages/games.scm:2142 msgid "" "PipeWalker is a simple puzzle game with many diffent themes: connect all\n" "computers to one network server, bring water from a source to the taps, etc.\n" @@ -3622,17 +3738,17 @@ msgid "" "Every puzzle has a complete solution, although there may be more than one." msgstr "" -#: gnu/packages/games.scm:2190 +#: gnu/packages/games.scm:2191 msgid "PrBoom+ is a Doom source port developed from the original PrBoom project." msgstr "" -#: gnu/packages/games.scm:2240 +#: gnu/packages/games.scm:2241 msgid "" "ReTux is an action platformer loosely inspired by the Mario games,\n" "utilizing the art assets from the @code{SuperTux} project." msgstr "" -#: gnu/packages/games.scm:2350 +#: gnu/packages/games.scm:2351 msgid "" "RogueBox Adventures is a graphical roguelike with strong influences\n" "from sandbox games like Minecraft or Terraria. The main idea of RogueBox\n" @@ -3640,7 +3756,7 @@ msgid "" "can be explored and changed freely." msgstr "" -#: gnu/packages/games.scm:2462 +#: gnu/packages/games.scm:2463 msgid "" "Barbie Seahorse Adventures is a retro style platform arcade game.\n" "You are Barbie the seahorse who travels through the jungle, up to the\n" @@ -3650,27 +3766,27 @@ msgid "" "and defeat them with your bubbles!" msgstr "" -#: gnu/packages/games.scm:2522 +#: gnu/packages/games.scm:2523 msgid "" "Solarus is a 2D game engine written in C++, that can run games\n" "scripted in Lua. It has been designed with 16-bit classic Action-RPGs\n" "in mind." msgstr "" -#: gnu/packages/games.scm:2551 +#: gnu/packages/games.scm:2552 msgid "" "Solarus Quest Editor is a graphical user interface to create and\n" "modify quests for the Solarus engine." msgstr "" -#: gnu/packages/games.scm:2627 +#: gnu/packages/games.scm:2628 msgid "" "In SuperStarfighter, up to four local players compete in a\n" "2D arena with fast-moving ships and missiles. Different game types are\n" "available, as well as a single-player mode with AI-controlled ships." msgstr "" -#: gnu/packages/games.scm:2760 +#: gnu/packages/games.scm:2761 msgid "" "Trigger-rally is a 3D rally simulation with great physics\n" "for drifting on over 200 maps. Different terrain materials like dirt,\n" @@ -3682,17 +3798,17 @@ msgid "" "equipped with spoken co-driver notes and co-driver icons." msgstr "" -#: gnu/packages/games.scm:2816 +#: gnu/packages/games.scm:2817 msgid "" "This package provides @command{ufo2map}, a program used to generate\n" "maps for the UFO: Alien Invasion strategy game." msgstr "" -#: gnu/packages/games.scm:2858 +#: gnu/packages/games.scm:2859 msgid "This package contains maps and other assets for UFO: Alien Invasion." msgstr "" -#: gnu/packages/games.scm:2945 +#: gnu/packages/games.scm:2946 msgid "" "UFO: Alien Invasion is a tactical strategy game set in the year 2084.\n" "You control a secret organisation charged with defending Earth from a brutal\n" @@ -3710,11 +3826,11 @@ msgid "" "properly." msgstr "" -#: gnu/packages/games.scm:2982 +#: gnu/packages/games.scm:2983 msgid "A graphical user interface for the package @code{gnushogi}." msgstr "" -#: gnu/packages/games.scm:3035 +#: gnu/packages/games.scm:3036 msgid "" "L'Abbaye des Morts is a 2D platform game set in 13th century\n" "France. The Cathars, who preach about good Christian beliefs, were being\n" @@ -3723,14 +3839,14 @@ msgid "" "that beneath its ruins lay buried an ancient evil." msgstr "" -#: gnu/packages/games.scm:3081 +#: gnu/packages/games.scm:3082 msgid "" "Angband is a Classic dungeon exploration roguelike. Explore\n" "the depths below Angband, seeking riches, fighting monsters, and preparing to\n" "fight Morgoth, the Lord of Darkness." msgstr "" -#: gnu/packages/games.scm:3129 +#: gnu/packages/games.scm:3130 msgid "" "Pingus is a free Lemmings-like puzzle game in which the player takes\n" "command of a bunch of small animals and has to guide them through levels.\n" @@ -3740,21 +3856,21 @@ msgid "" "level's exit. The game is presented in a 2D side view." msgstr "" -#: gnu/packages/games.scm:3152 +#: gnu/packages/games.scm:3153 msgid "" "The GNU Talk Filters are programs that convert English text\n" "into stereotyped or otherwise humorous dialects. The filters are provided as\n" "a C library, so they can easily be integrated into other programs." msgstr "" -#: gnu/packages/games.scm:3196 +#: gnu/packages/games.scm:3197 msgid "" "The player controls a character (one of three: Good, Bad, and Dead),\n" "dodges the missiles (lots of it cover the screen, but the character's hitbox\n" "is very small), and shoot at the adversaries that keep appear on the screen." msgstr "" -#: gnu/packages/games.scm:3239 +#: gnu/packages/games.scm:3240 msgid "" "CMatrix simulates the display from \"The Matrix\" and is\n" "based on the screensaver from the movie's website. It works with terminal\n" @@ -3762,14 +3878,14 @@ msgid "" "asynchronously and at a user-defined speed." msgstr "" -#: gnu/packages/games.scm:3270 +#: gnu/packages/games.scm:3271 msgid "" "GNU Chess is a chess engine. It allows you to compete\n" "against the computer in a game of chess, either through the default terminal\n" "interface or via an external visual interface such as GNU XBoard." msgstr "" -#: gnu/packages/games.scm:3332 +#: gnu/packages/games.scm:3333 msgid "" "GNU FreeDink is a free and portable re-implementation of the engine\n" "for the role-playing game Dink Smallwood. It supports not only the original\n" @@ -3777,17 +3893,17 @@ msgid "" "To that extent, it also includes a front-end for managing all of your D-Mods." msgstr "" -#: gnu/packages/games.scm:3360 +#: gnu/packages/games.scm:3361 msgid "This package contains the game data of GNU Freedink." msgstr "" -#: gnu/packages/games.scm:3383 +#: gnu/packages/games.scm:3384 msgid "" "DFArc makes it easy to play and manage the GNU FreeDink game\n" "and its numerous D-Mods." msgstr "" -#: gnu/packages/games.scm:3453 +#: gnu/packages/games.scm:3454 msgid "" "GNU XBoard is a graphical board for all varieties of chess,\n" "including international chess, xiangqi (Chinese chess), shogi (Japanese chess)\n" @@ -3796,7 +3912,7 @@ msgid "" "Portable Game Notation." msgstr "" -#: gnu/packages/games.scm:3488 +#: gnu/packages/games.scm:3489 msgid "" "GNU Typist is a universal typing tutor. It can be used to learn and\n" "practice touch-typing. Several tutorials are included; in addition to\n" @@ -3805,7 +3921,7 @@ msgid "" "are primarily in English, however some in other languages are provided." msgstr "" -#: gnu/packages/games.scm:3560 +#: gnu/packages/games.scm:3561 msgid "" "The Irrlicht Engine is a high performance realtime 3D engine written in\n" "C++. Features include an OpenGL renderer, extensible materials, scene graph\n" @@ -3813,7 +3929,7 @@ msgid "" "for common mesh file formats, and collision detection." msgstr "" -#: gnu/packages/games.scm:3611 +#: gnu/packages/games.scm:3612 msgid "" "M.A.R.S. is a 2D space shooter with pretty visual effects and\n" "attractive physics. Players can battle each other or computer controlled\n" @@ -3821,7 +3937,7 @@ msgid "" "match, cannon keep, and grave-itation pit." msgstr "" -#: gnu/packages/games.scm:3650 +#: gnu/packages/games.scm:3651 msgid "" "Glk defines a portable API for applications with text UIs. It was\n" "primarily designed for interactive fiction, but it should be suitable for many\n" @@ -3830,7 +3946,7 @@ msgid "" "using the @code{curses.h} library for screen control." msgstr "" -#: gnu/packages/games.scm:3690 +#: gnu/packages/games.scm:3691 msgid "" "Glulx is a 32-bit portable virtual machine intended for writing and\n" "playing interactive fiction. It was designed by Andrew Plotkin to relieve\n" @@ -3838,28 +3954,28 @@ msgid "" "reference interpreter, using the Glk API." msgstr "" -#: gnu/packages/games.scm:3716 +#: gnu/packages/games.scm:3717 msgid "" "Fifechan is a lightweight cross platform GUI library written in C++\n" "specifically designed for games. It has a built in set of extendable GUI\n" "Widgets, and allows users to create more." msgstr "" -#: gnu/packages/games.scm:3791 +#: gnu/packages/games.scm:3792 msgid "" "@acronym{FIFE, Flexible Isometric Free Engine} is a multi-platform\n" "isometric game engine. Python bindings are included allowing users to create\n" "games using Python as well as C++." msgstr "" -#: gnu/packages/games.scm:3826 +#: gnu/packages/games.scm:3827 msgid "" "Fizmo is a console-based Z-machine interpreter. It is used to play\n" "interactive fiction, also known as text adventures, which were implemented\n" "either by Infocom or created using the Inform compiler." msgstr "" -#: gnu/packages/games.scm:3849 +#: gnu/packages/games.scm:3850 msgid "" "GNU Go is a program that plays the game of Go, in which players\n" "place stones on a grid to form territory or capture other stones. While\n" @@ -3870,7 +3986,7 @@ msgid "" "Protocol)." msgstr "" -#: gnu/packages/games.scm:3878 +#: gnu/packages/games.scm:3879 msgid "" "Extreme Tux Racer, or etracer as it is called for short, is\n" "a simple OpenGL racing game featuring Tux, the Linux mascot. The goal of the\n" @@ -3883,7 +3999,7 @@ msgid "" "This game is based on the GPL version of the famous game TuxRacer." msgstr "" -#: gnu/packages/games.scm:3952 +#: gnu/packages/games.scm:3953 msgid "" "SuperTuxKart is a 3D kart racing game, with a focus on\n" "having fun over realism. You can play with up to 4 friends on one PC, racing\n" @@ -3891,7 +4007,7 @@ msgid "" "also available." msgstr "" -#: gnu/packages/games.scm:4028 +#: gnu/packages/games.scm:4029 msgid "" "Unknown Horizons is a 2D realtime strategy simulation with an emphasis\n" "on economy and city building. Expand your small settlement to a strong and\n" @@ -3900,7 +4016,7 @@ msgid "" "trade and diplomacy." msgstr "" -#: gnu/packages/games.scm:4081 +#: gnu/packages/games.scm:4082 msgid "" "GNUjump is a simple, yet addictive game in which you must jump from\n" "platform to platform to avoid falling, while the platforms drop at faster rates\n" @@ -3908,7 +4024,7 @@ msgid "" "falling, themeable graphics and sounds, and replays." msgstr "" -#: gnu/packages/games.scm:4117 +#: gnu/packages/games.scm:4118 msgid "" "The Battle for Wesnoth is a fantasy, turn based tactical strategy game,\n" "with several single player campaigns, and multiplayer games (both networked and\n" @@ -3920,20 +4036,20 @@ msgid "" "next campaign." msgstr "" -#: gnu/packages/games.scm:4137 +#: gnu/packages/games.scm:4138 msgid "" "This package contains a dedicated server for @emph{The\n" "Battle for Wesnoth}." msgstr "" -#: gnu/packages/games.scm:4179 +#: gnu/packages/games.scm:4180 msgid "" "Gamine is a game designed for young children who are learning to use the\n" "mouse and keyboard. The child uses the mouse to draw colored dots and lines\n" "on the screen and keyboard to display letters." msgstr "" -#: gnu/packages/games.scm:4211 +#: gnu/packages/games.scm:4212 msgid "" "ManaPlus is a 2D MMORPG client for game servers. It is the only\n" "fully supported client for @uref{http://www.themanaworld.org, The mana\n" @@ -3941,7 +4057,7 @@ msgid "" "@uref{http://landoffire.org, Land of fire}." msgstr "" -#: gnu/packages/games.scm:4243 +#: gnu/packages/games.scm:4244 msgid "" "OpenTTD is a game in which you transport goods and\n" "passengers by land, water and air. It is a re-implementation of Transport\n" @@ -3951,7 +4067,7 @@ msgid "" "engine. When you start it you will be prompted to download a graphics set." msgstr "" -#: gnu/packages/games.scm:4303 +#: gnu/packages/games.scm:4304 msgid "" "The OpenGFX project is an implementation of the OpenTTD base graphics\n" "set that aims to ensure the best possible out-of-the-box experience.\n" @@ -3966,29 +4082,29 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:4361 +#: gnu/packages/games.scm:4362 msgid "" "OpenSFX is a set of free base sounds for OpenTTD which make\n" "it possible to play OpenTTD without requiring the proprietary sound files from\n" "the original Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4404 +#: gnu/packages/games.scm:4405 msgid "" "OpenMSX is a music set for OpenTTD which makes it possible\n" "to play OpenTTD without requiring the proprietary music from the original\n" "Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4473 +#: gnu/packages/games.scm:4474 msgid "openrct2-title-sequences is a set of title sequences for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4513 +#: gnu/packages/games.scm:4514 msgid "openrct2-objects is a set of objects for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4576 +#: gnu/packages/games.scm:4577 msgid "" "OpenRCT2 is a free software re-implementation of\n" "RollerCoaster Tycoon 2 (RCT2). The gameplay revolves around building and\n" @@ -3998,27 +4114,27 @@ msgid "" "images, etc.)" msgstr "" -#: gnu/packages/games.scm:4630 +#: gnu/packages/games.scm:4631 msgid "" "The Emilia Pinball Project is a pinball simulator. There\n" "are only two levels to play with, but they are very addictive." msgstr "" -#: gnu/packages/games.scm:4659 +#: gnu/packages/games.scm:4660 msgid "" "Pioneers is an emulation of the board game The Settlers of\n" "Catan. It can be played on a local network, on the internet, and with AI\n" "players." msgstr "" -#: gnu/packages/games.scm:4701 +#: gnu/packages/games.scm:4702 msgid "" "The goal of this logic game is to open all cards in a 6x6\n" "grid, using a number of hints as to their relative position. The game idea\n" "is attributed to Albert Einstein." msgstr "" -#: gnu/packages/games.scm:4731 +#: gnu/packages/games.scm:4732 msgid "" "POWWOW is a client software which can be used for telnet as well as for\n" "@dfn{Multi-User Dungeon} (MUD). Additionally it can serve as a nice client for\n" @@ -4026,21 +4142,21 @@ msgid "" "http://lavachat.symlynx.com/unix/" msgstr "" -#: gnu/packages/games.scm:4838 +#: gnu/packages/games.scm:4839 msgid "" "Red Eclipse is an arena shooter, created from the Cube2 engine.\n" "Offering an innovative parkour system and distinct but all potent weapons,\n" "Red Eclipse provides fast paced and accessible gameplay." msgstr "" -#: gnu/packages/games.scm:4903 +#: gnu/packages/games.scm:4904 msgid "" "Grue Hunter is a text adventure game written in Perl. You must make\n" "your way through an underground cave system in search of the Grue. Can you\n" "capture it and get out alive?" msgstr "" -#: gnu/packages/games.scm:4942 +#: gnu/packages/games.scm:4943 msgid "" "lierolibre is an earthworm action game where you fight another player\n" "(or the computer) underground using a wide array of weapons.\n" @@ -4065,14 +4181,14 @@ msgid "" "fullscreen, use F5 or Alt+Enter." msgstr "" -#: gnu/packages/games.scm:5021 +#: gnu/packages/games.scm:5022 msgid "" "Tennix is a 2D tennis game. You can play against the\n" "computer or against another player using the keyboard. The game runs\n" "in-window at 640x480 resolution or fullscreen." msgstr "" -#: gnu/packages/games.scm:5105 +#: gnu/packages/games.scm:5106 msgid "" "Warzone 2100 offers campaign, multi-player, and single-player skirmish\n" "modes. An extensive tech tree with over 400 different technologies, combined\n" @@ -4080,7 +4196,7 @@ msgid "" "tactics." msgstr "" -#: gnu/packages/games.scm:5184 +#: gnu/packages/games.scm:5185 msgid "" "In Widelands, you are the regent of a small clan. You start out with\n" "nothing but your headquarters, where all your resources are stored.\n" @@ -4102,7 +4218,7 @@ msgid "" "of war. Widelands also offers an Artificial Intelligence to challenge you." msgstr "" -#: gnu/packages/games.scm:5236 +#: gnu/packages/games.scm:5237 msgid "" "In the year 2579, the intergalactic weapons corporation, WEAPCO, has\n" "dominated the galaxy. Guide Chris Bainfield and his friend Sid Wilson on\n" @@ -4111,7 +4227,7 @@ msgid "" "in strikes against the evil corporation." msgstr "" -#: gnu/packages/games.scm:5267 +#: gnu/packages/games.scm:5268 msgid "" "In this game you are the captain of the cargo ship Chromium B.S.U. and\n" "are responsible for delivering supplies to the troops on the front line. Your\n" @@ -4119,7 +4235,7 @@ msgid "" "safety of the Chromium vessel." msgstr "" -#: gnu/packages/games.scm:5350 +#: gnu/packages/games.scm:5351 msgid "" "Tux Paint is a free drawing program designed for young children (kids\n" "ages 3 and up). It has a simple, easy-to-use interface; fun sound effects;\n" @@ -4128,23 +4244,23 @@ msgid "" "your child be creative." msgstr "" -#: gnu/packages/games.scm:5390 +#: gnu/packages/games.scm:5391 msgid "" "This package contains a set of \"Rubber Stamp\" images which can be used\n" "with the \"Stamp\" tool within Tux Paint." msgstr "" -#: gnu/packages/games.scm:5439 +#: gnu/packages/games.scm:5440 msgid "Tux Paint Config is a graphical configuration editor for Tux Paint." msgstr "" -#: gnu/packages/games.scm:5491 +#: gnu/packages/games.scm:5492 msgid "" "SuperTux is a classic 2D jump'n run sidescroller game in\n" "a style similar to the original Super Mario games." msgstr "" -#: gnu/packages/games.scm:5523 +#: gnu/packages/games.scm:5524 msgid "" "TinTin++ is a MUD client which supports MCCP (Mud Client Compression\n" "Protocol), MMCP (Mud Master Chat Protocol), xterm 256 colors, most TELNET\n" @@ -4152,7 +4268,7 @@ msgid "" "Linux / Mac OS X servers, and an auto mapper with a VT100 map display." msgstr "" -#: gnu/packages/games.scm:5563 +#: gnu/packages/games.scm:5564 msgid "" "Learn programming, playing with ants and spider webs ;-)\n" "Your robot ant can be programmed in many languages: OCaml, Python, C, C++,\n" @@ -4160,14 +4276,14 @@ msgid "" "programmers may also add their own favorite language." msgstr "" -#: gnu/packages/games.scm:5602 +#: gnu/packages/games.scm:5603 msgid "" "Bambam is a simple baby keyboard (and gamepad) masher\n" "application that locks the keyboard and mouse and instead displays bright\n" "colors, pictures, and sounds." msgstr "" -#: gnu/packages/games.scm:5663 +#: gnu/packages/games.scm:5664 msgid "" "Mr. Rescue is an arcade styled 2d action game centered around evacuating\n" "civilians from burning buildings. The game features fast-paced fire\n" @@ -4175,7 +4291,7 @@ msgid "" "throwing people around in pseudo-randomly generated buildings." msgstr "" -#: gnu/packages/games.scm:5770 +#: gnu/packages/games.scm:5771 msgid "" "HyperRogue is a game in which the player collects treasures and fights\n" "monsters -- rogue-like but for the fact that it is played on the hyperbolic\n" @@ -4189,13 +4305,13 @@ msgid "" "symbols, it still needs graphics to render the non-euclidean world." msgstr "" -#: gnu/packages/games.scm:5817 +#: gnu/packages/games.scm:5818 msgid "" "Kobo Deluxe is an enhanced version of Akira Higuchi's XKobo graphical game\n" "for Un*x systems with X11." msgstr "" -#: gnu/packages/games.scm:5845 +#: gnu/packages/games.scm:5846 msgid "" "Freeciv is a turn-based empire building strategy game\n" "inspired by the history of human civilization. The game commences in\n" @@ -4203,7 +4319,7 @@ msgid "" "into the Space Age." msgstr "" -#: gnu/packages/games.scm:5878 +#: gnu/packages/games.scm:5879 msgid "" "@code{No More Secrets} provides a command line tool called \"nms\"\n" "that recreates the famous data decryption effect seen on screen in the 1992\n" @@ -4214,25 +4330,25 @@ msgid "" "starting a decryption sequence to reveal the original plaintext characters." msgstr "" -#: gnu/packages/games.scm:5906 +#: gnu/packages/games.scm:5907 msgid "This package contains the data files required for MegaGlest." msgstr "" -#: gnu/packages/games.scm:5961 +#: gnu/packages/games.scm:5962 msgid "" "MegaGlest is a cross-platform 3D real-time strategy (RTS)\n" "game, where you control the armies of one of seven different factions: Tech,\n" "Magic, Egypt, Indians, Norsemen, Persian or Romans." msgstr "" -#: gnu/packages/games.scm:6013 +#: gnu/packages/games.scm:6014 msgid "" "In FreeGish you control Gish, a ball of tar who lives\n" "happily with his girlfriend Brea, until one day a mysterious dark creature\n" "emerges from a sewer hole and pulls her below ground." msgstr "" -#: gnu/packages/games.scm:6049 +#: gnu/packages/games.scm:6050 msgid "" "C-Dogs SDL is a classic overhead run-and-gun game,\n" "supporting up to 4 players in co-op and deathmatch modes. Customize your\n" @@ -4240,21 +4356,21 @@ msgid "" "over 100 user-created campaigns." msgstr "" -#: gnu/packages/games.scm:6149 +#: gnu/packages/games.scm:6150 msgid "" "Kiki the nano bot is a 3D puzzle game. It is basically a\n" "mixture of the games Sokoban and Kula-World. Your task is to help Kiki, a\n" "small robot living in the nano world, repair its maker." msgstr "" -#: gnu/packages/games.scm:6225 +#: gnu/packages/games.scm:6226 msgid "" "Teeworlds is an online multiplayer game. Battle with up to\n" "16 players in a variety of game modes, including Team Deathmatch and Capture\n" "The Flag. You can even design your own maps!" msgstr "" -#: gnu/packages/games.scm:6285 +#: gnu/packages/games.scm:6286 msgid "" "Enigma is a puzzle game with 550 unique levels. The object\n" "of the game is to find and uncover pairs of identically colored ‘Oxyd’ stones.\n" @@ -4266,7 +4382,7 @@ msgid "" "with the mouse isn’t always trivial." msgstr "" -#: gnu/packages/games.scm:6319 +#: gnu/packages/games.scm:6320 msgid "" "Chroma is an abstract puzzle game. A variety of colourful\n" "shapes are arranged in a series of increasingly complex patterns, forming\n" @@ -4276,7 +4392,7 @@ msgid "" "becoming difficult enough to tax even the brightest of minds." msgstr "" -#: gnu/packages/games.scm:6384 +#: gnu/packages/games.scm:6385 msgid "" "Fish Fillets NG is strictly a puzzle game. The goal in\n" "every of the seventy levels is always the same: find a safe way out. The fish\n" @@ -4285,14 +4401,14 @@ msgid "" "fish. The whole game is accompanied by quiet, comforting music." msgstr "" -#: gnu/packages/games.scm:6452 +#: gnu/packages/games.scm:6453 msgid "" "Dungeon Crawl Stone Soup (also known as \"Crawl\" or DCSS\n" "for short) is a roguelike adventure through dungeons filled with dangerous\n" "monsters in a quest to find the mystifyingly fabulous Orb of Zot." msgstr "" -#: gnu/packages/games.scm:6529 +#: gnu/packages/games.scm:6530 msgid "" "Lugaru is a third-person action game. The main character,\n" "Turner, is an anthropomorphic rebel bunny rabbit with impressive combat skills.\n" @@ -4302,11 +4418,11 @@ msgid "" "fight against their plot and save his fellow rabbits from slavery." msgstr "" -#: gnu/packages/games.scm:6574 +#: gnu/packages/games.scm:6575 msgid "0ad-data provides the data files required by the game 0ad." msgstr "" -#: gnu/packages/games.scm:6710 +#: gnu/packages/games.scm:6711 msgid "" "0 A.D. is a real-time strategy (RTS) game of ancient\n" "warfare. It's a historically-based war/economy game that allows players to\n" @@ -4316,7 +4432,7 @@ msgid "" "0ad needs a window manager that supports 'Extended Window Manager Hints'." msgstr "" -#: gnu/packages/games.scm:6776 +#: gnu/packages/games.scm:6777 msgid "" "The original Colossal Cave Adventure from 1976 was the origin of all\n" "text adventures, dungeon-crawl (computer) games, and computer-hosted\n" @@ -4325,7 +4441,7 @@ msgid "" "``adventure 2.5'' and ``430-point adventure''." msgstr "" -#: gnu/packages/games.scm:6899 +#: gnu/packages/games.scm:6900 msgid "" "Tales of Maj’Eyal (ToME) RPG, featuring tactical turn-based\n" "combat and advanced character building. Play as one of many unique races and\n" @@ -4336,21 +4452,21 @@ msgid "" "Tales of Maj’Eyal offers engaging roguelike gameplay for the 21st century." msgstr "" -#: gnu/packages/games.scm:6945 +#: gnu/packages/games.scm:6946 msgid "" "Quakespasm is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7002 +#: gnu/packages/games.scm:7003 msgid "" "vkquake is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7067 +#: gnu/packages/games.scm:7068 msgid "" "Yamagi Quake II is an enhanced client for id Software's Quake II.\n" "The main focus is an unchanged single player experience like back in 1997,\n" @@ -4360,18 +4476,18 @@ msgid "" "making Yamagi Quake II one of the most solid Quake II implementations available." msgstr "" -#: gnu/packages/games.scm:7100 +#: gnu/packages/games.scm:7101 msgid "Nudoku is a ncurses-based Sudoku game for your terminal." msgstr "" -#: gnu/packages/games.scm:7146 +#: gnu/packages/games.scm:7147 msgid "" "The Butterfly Effect (tbe) is a game that uses\n" "realistic physics simulations to combine lots of simple mechanical\n" "elements to achieve a simple goal in the most complex way possible." msgstr "" -#: gnu/packages/games.scm:7192 +#: gnu/packages/games.scm:7193 msgid "" "Pioneer is a space adventure game set in our galaxy at the turn of the\n" "31st century. The game is open-ended, and you are free to eke out whatever\n" @@ -4382,14 +4498,14 @@ msgid "" "whatever you make of it." msgstr "" -#: gnu/packages/games.scm:7221 +#: gnu/packages/games.scm:7222 msgid "" "Badass generates false commits for a range of dates, essentially\n" "hacking the gamification of contribution graphs on platforms such as\n" "Github or Gitlab." msgstr "" -#: gnu/packages/games.scm:7294 +#: gnu/packages/games.scm:7295 msgid "" "Colobot: Gold Edition is a real-time strategy game, where\n" "you can program your units (bots) in a language called CBOT, which is similar\n" @@ -4397,7 +4513,7 @@ msgid "" "You can save humanity and get programming skills!" msgstr "" -#: gnu/packages/games.scm:7386 +#: gnu/packages/games.scm:7387 msgid "" "GZdoom is a port of the Doom 2 game engine, with a modern\n" "renderer. It improves modding support with ZDoom's advanced mapping features\n" @@ -4405,14 +4521,14 @@ msgid "" "Strife, Chex Quest, and fan-created games like Harmony, Hacx and Freedoom." msgstr "" -#: gnu/packages/games.scm:7425 +#: gnu/packages/games.scm:7426 msgid "" "Odamex is a modification of the Doom engine that\n" "allows players to easily join servers dedicated to playing Doom\n" "online." msgstr "" -#: gnu/packages/games.scm:7453 +#: gnu/packages/games.scm:7454 msgid "" "Chocolate Doom takes a different approach to other source ports. Its\n" "aim is to accurately reproduce the experience of playing Vanilla Doom. It is\n" @@ -4425,7 +4541,7 @@ msgid "" "affect gameplay)." msgstr "" -#: gnu/packages/games.scm:7493 +#: gnu/packages/games.scm:7494 msgid "" "Crispy Doom is a friendly fork of Chocolate Doom that provides a higher\n" "display resolution, removes the static limits of the Doom engine and offers\n" @@ -4434,21 +4550,21 @@ msgid "" "original." msgstr "" -#: gnu/packages/games.scm:7566 +#: gnu/packages/games.scm:7567 msgid "This package provides C11 / gnu11 utilities C library" msgstr "" -#: gnu/packages/games.scm:7635 +#: gnu/packages/games.scm:7636 msgid "" "Fortune is a command-line utility which displays a random\n" "quotation from a collection of quotes." msgstr "" -#: gnu/packages/games.scm:7677 +#: gnu/packages/games.scm:7678 msgid "Xonotic-data provides the data files required by the game Xonotic." msgstr "" -#: gnu/packages/games.scm:7873 +#: gnu/packages/games.scm:7874 msgid "" "Xonotic is a free, fast-paced first-person shooter.\n" "The project is geared towards providing addictive arena shooter\n" @@ -4458,7 +4574,7 @@ msgid "" "open-source FPS of its kind." msgstr "" -#: gnu/packages/games.scm:7920 +#: gnu/packages/games.scm:7921 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4467,7 +4583,7 @@ msgid "" "ncurses for text display." msgstr "" -#: gnu/packages/games.scm:7964 +#: gnu/packages/games.scm:7966 msgid "" "Naev is a 2d action/rpg space game that combines elements from\n" "the action, RPG and simulation genres. You pilot a spaceship from\n" @@ -4479,7 +4595,7 @@ msgid "" "of lore accompanying everything from planets to equipment." msgstr "" -#: gnu/packages/games.scm:8013 +#: gnu/packages/games.scm:8015 msgid "" "Frotz is an interpreter for Infocom games and\n" "other Z-machine games in the text adventure/interactive fiction genre.\n" @@ -4491,7 +4607,7 @@ msgid "" "to play games on webpages. It can also be made into a chat bot." msgstr "" -#: gnu/packages/games.scm:8075 +#: gnu/packages/games.scm:8077 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4501,7 +4617,7 @@ msgid "" "when packaged in Blorb container files or optionally from individual files." msgstr "" -#: gnu/packages/games.scm:8166 +#: gnu/packages/games.scm:8168 msgid "" "Frozen-Bubble is a clone of the popular Puzzle Bobble game, in which\n" "you attempt to shoot bubbles into groups of the same color to cause them to\n" @@ -4516,7 +4632,7 @@ msgid "" "their own levels." msgstr "" -#: gnu/packages/games.scm:8199 +#: gnu/packages/games.scm:8201 msgid "" "Libmanette is a small GObject library giving you simple\n" "access to game controllers. It supports the de-facto standard gamepads as\n" @@ -4524,7 +4640,7 @@ msgid "" "GameController." msgstr "" -#: gnu/packages/games.scm:8245 +#: gnu/packages/games.scm:8247 msgid "" "Quadrapassel comes from the classic falling-block game,\n" "Tetris. The goal of the game is to create complete horizontal lines of\n" @@ -4536,7 +4652,7 @@ msgid "" "your score gets higher, you level up and the blocks fall faster." msgstr "" -#: gnu/packages/games.scm:8294 +#: gnu/packages/games.scm:8296 msgid "" "Endless Sky is a 2D space trading and combat game. Explore\n" "other star systems. Earn money by trading, carrying passengers, or completing\n" @@ -4546,7 +4662,7 @@ msgid "" "civilized than your own." msgstr "" -#: gnu/packages/games.scm:8443 +#: gnu/packages/games.scm:8445 msgid "" "StepMania is a dance and rhythm game. It features 3D\n" "graphics, keyboard and dance pad support, and an editor for creating your own\n" @@ -4556,7 +4672,7 @@ msgid "" "to download and install them in @file{$HOME/.stepmania-X.Y/Songs} directory." msgstr "" -#: gnu/packages/games.scm:8479 +#: gnu/packages/games.scm:8481 msgid "" "@i{oshu!} is a minimalist variant of the @i{osu!} rhythm game,\n" "which is played by pressing buttons and following along sliders as they appear\n" @@ -4566,7 +4682,7 @@ msgid "" "download and unpack them separately." msgstr "" -#: gnu/packages/games.scm:8562 +#: gnu/packages/games.scm:8564 msgid "" "Battle Tanks (also known as \"btanks\") is a funny battle\n" "game, where you can choose one of three vehicles and eliminate your enemy\n" @@ -4575,7 +4691,7 @@ msgid "" "and cooperative." msgstr "" -#: gnu/packages/games.scm:8596 +#: gnu/packages/games.scm:8598 msgid "" "Slime Volley is a 2D arcade-oriented volleyball simulation, in\n" "the spirit of some Java games of the same name.\n" @@ -4586,7 +4702,7 @@ msgid "" "the ground, the set ends and all balls are served again." msgstr "" -#: gnu/packages/games.scm:8626 +#: gnu/packages/games.scm:8628 msgid "" "Slingshot is a two-dimensional strategy game where two\n" "players attempt to shoot one another through a section of space populated by\n" @@ -4594,14 +4710,14 @@ msgid "" "affected by the gravity of the planets." msgstr "" -#: gnu/packages/games.scm:8674 +#: gnu/packages/games.scm:8676 msgid "" "4D-TRIS is an alteration of the well-known Tetris game. The\n" "game field is extended to 4D space, which has to filled up by the gamer with\n" "4D hyper cubes." msgstr "" -#: gnu/packages/games.scm:8751 +#: gnu/packages/games.scm:8753 msgid "" "Arx Libertatis is a cross-platform port of Arx Fatalis, a 2002\n" "first-person role-playing game / dungeon crawler developed by Arkane Studios.\n" @@ -4611,7 +4727,7 @@ msgid "" "where the player draws runes in real time to effect the desired spell." msgstr "" -#: gnu/packages/games.scm:8797 +#: gnu/packages/games.scm:8799 msgid "" "The Legend of Edgar is a 2D platform game with a persistent world.\n" "When Edgar's father fails to return home after venturing out one dark and stormy night,\n" @@ -4619,7 +4735,7 @@ msgid "" "a fortress beyond the forbidden swamp." msgstr "" -#: gnu/packages/games.scm:8899 +#: gnu/packages/games.scm:8901 msgid "" "OpenClonk is a multiplayer action/tactics/skill game. It is\n" "often referred to as a mixture of The Settlers and Worms. In a simple 2D\n" @@ -4629,20 +4745,20 @@ msgid "" "fight each other on an arena-like map." msgstr "" -#: gnu/packages/games.scm:8931 +#: gnu/packages/games.scm:8933 msgid "" "Flare (Free Libre Action Roleplaying Engine) is a simple\n" "game engine built to handle a very specific kind of game: single-player 2D\n" "action RPGs." msgstr "" -#: gnu/packages/games.scm:8994 +#: gnu/packages/games.scm:8996 msgid "" "Flare is a single-player 2D action RPG with\n" "fast-paced action and a dark fantasy style." msgstr "" -#: gnu/packages/games.scm:9046 +#: gnu/packages/games.scm:9048 msgid "" "Far below the surface of the planet is a place of limitless\n" "power. Those that seek to control such a utopia will soon bring an end to\n" @@ -4656,7 +4772,7 @@ msgid "" "Orcus Dome from evil." msgstr "" -#: gnu/packages/games.scm:9108 +#: gnu/packages/games.scm:9110 msgid "" "Marble Marcher is a video game that uses a fractal physics\n" "engine and fully procedural rendering to produce beautiful and unique\n" @@ -4666,7 +4782,7 @@ msgid "" "levels to unlock." msgstr "" -#: gnu/packages/games.scm:9159 +#: gnu/packages/games.scm:9161 msgid "" "SimGear is a set of libraries designed to be used as\n" "building blocks for quickly assembling 3D simulations, games, and\n" @@ -4674,7 +4790,7 @@ msgid "" "and also provides the base for the FlightGear Flight Simulator." msgstr "" -#: gnu/packages/games.scm:9253 +#: gnu/packages/games.scm:9255 msgid "" "The goal of the FlightGear project is to create a\n" "sophisticated flight simulator framework for use in research or academic\n" @@ -4684,14 +4800,14 @@ msgid "" "simulator." msgstr "" -#: gnu/packages/games.scm:9306 +#: gnu/packages/games.scm:9308 msgid "" "You, as a bunny, have to jump on your opponents to make them\n" "explode. It is a true multiplayer game; you cannot play this alone. You can\n" "play with up to four players simultaneously. It has network support." msgstr "" -#: gnu/packages/games.scm:9373 +#: gnu/packages/games.scm:9375 msgid "" "Hedgewars is a turn based strategy, artillery, action and comedy game,\n" "featuring the antics of pink hedgehogs with attitude as they battle from the\n" @@ -4701,7 +4817,7 @@ msgid "" "and bring the war to your enemy." msgstr "" -#: gnu/packages/games.scm:9407 +#: gnu/packages/games.scm:9409 msgid "" "The gruid module provides packages for easily building\n" "grid-based applications in Go. The library abstracts rendering and input for\n" @@ -4711,13 +4827,13 @@ msgid "" "application." msgstr "" -#: gnu/packages/games.scm:9437 +#: gnu/packages/games.scm:9439 msgid "" "The gruid-tcell module provides a Gruid driver for building\n" "terminal full-window applications." msgstr "" -#: gnu/packages/games.scm:9464 +#: gnu/packages/games.scm:9466 msgid "" "Harmonist: Dayoriah Clan Infiltration is a stealth\n" "coffee-break roguelike game. The game has a heavy focus on tactical\n" @@ -4727,7 +4843,7 @@ msgid "" "on items and player adaptability for character progression." msgstr "" -#: gnu/packages/games.scm:9573 +#: gnu/packages/games.scm:9575 msgid "" "Drascula: The Vampire Strikes Back is a classic humorous 2D\n" "point and click adventure game.\n" @@ -4739,7 +4855,7 @@ msgid "" "the World and demonstrating that he is even more evil than his brother Vlad." msgstr "" -#: gnu/packages/games.scm:9653 +#: gnu/packages/games.scm:9655 msgid "" "Lure of the Temptress is a classic 2D point and click adventure game.\n" "\n" @@ -4758,7 +4874,7 @@ msgid "" "Skorl. Maybe it would be an idea to try and escape..." msgstr "" -#: gnu/packages/games.scm:9752 +#: gnu/packages/games.scm:9754 msgid "" "Flight of the Amazon Queen is a 2D point-and-click\n" "adventure game set in the 1940s.\n" @@ -4775,7 +4891,7 @@ msgid "" "women and 6-foot-tall pygmies." msgstr "" -#: gnu/packages/games.scm:9852 +#: gnu/packages/games.scm:9854 msgid "" "Beneath a Steel Sky is a science-fiction thriller set in a bleak\n" "post-apocalyptic vision of the future. It revolves around Union City,\n" @@ -4798,7 +4914,7 @@ msgid "" "and to seek vengeance for the killing of his tribe." msgstr "" -#: gnu/packages/games.scm:9911 +#: gnu/packages/games.scm:9913 msgid "" "GNU Robots is a game in which you program a robot to explore a world\n" "full of enemies that can hurt it, obstacles and food to be eaten. The goal of\n" @@ -4806,14 +4922,14 @@ msgid "" "may be written in a plain text file in the Scheme programming language." msgstr "" -#: gnu/packages/games.scm:9981 +#: gnu/packages/games.scm:9983 msgid "" "Ri-li is a game in which you drive a wooden toy\n" "steam locomotive across many levels and collect all the coaches to\n" "win." msgstr "" -#: gnu/packages/games.scm:10037 +#: gnu/packages/games.scm:10039 msgid "" "FreeOrion is a turn-based space empire and galactic conquest (4X)\n" "computer game being designed and built by the FreeOrion project. Control an\n" @@ -4823,14 +4939,14 @@ msgid "" "remake of that series or any other game." msgstr "" -#: gnu/packages/games.scm:10093 +#: gnu/packages/games.scm:10095 msgid "" "Leela-zero is a Go engine with no human-provided knowledge, modeled after\n" "the AlphaGo Zero paper. The current best network weights file for the engine\n" "can be downloaded from @url{https://zero.sjeng.org/best-network}." msgstr "" -#: gnu/packages/games.scm:10171 +#: gnu/packages/games.scm:10173 msgid "" "This a tool for Go players which performs the following functions:\n" "@itemize\n" @@ -4842,7 +4958,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:10214 +#: gnu/packages/games.scm:10216 msgid "" "KTuberling is a drawing toy intended for small children and\n" "adults who remain young at heart. The game has no winner; the only purpose is\n" @@ -4861,7 +4977,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10260 +#: gnu/packages/games.scm:10262 msgid "" "Picmi is a number logic game in which cells in a grid have\n" "to be colored or left blank according to numbers given at the side of the\n" @@ -4870,7 +4986,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10297 +#: gnu/packages/games.scm:10299 msgid "" "Kolf is a miniature golf game for one to ten players. The\n" "game is played from an overhead view, with a short bar representing the golf\n" @@ -4889,13 +5005,13 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10341 +#: gnu/packages/games.scm:10343 msgid "" "Shared library and common files for kmahjongg, kshisen and\n" "other Mah Jongg like games." msgstr "" -#: gnu/packages/games.scm:10374 +#: gnu/packages/games.scm:10376 msgid "" "In KMahjongg the tiles are scrambled and staked on top of\n" "each other to resemble a certain shape. The player is then expected to remove\n" @@ -4907,7 +5023,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10416 +#: gnu/packages/games.scm:10418 msgid "" "KShisen is a solitaire-like game played using the standard\n" "set of Mahjong tiles. Unlike Mahjong however, KShisen has only one layer of\n" @@ -4916,7 +5032,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10471 +#: gnu/packages/games.scm:10473 msgid "" "Kajongg is the ancient Chinese board game for 4 players.\n" "\n" @@ -4931,7 +5047,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10513 +#: gnu/packages/games.scm:10515 msgid "" "KBreakout is similar to the classics breakout and xboing,\n" "featuring a number of added graphical enhancements and effects. You control a\n" @@ -4941,7 +5057,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10551 +#: gnu/packages/games.scm:10553 msgid "" "KMines is a classic Minesweeper game. The idea is to\n" "uncover all the squares without blowing up any mines. When a mine is blown\n" @@ -4950,7 +5066,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10588 +#: gnu/packages/games.scm:10590 msgid "" "Konquest is the KDE version of Gnu-Lactic Konquest. Players\n" "conquer other planets by sending ships to them. The goal is to build an\n" @@ -4961,7 +5077,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10627 +#: gnu/packages/games.scm:10629 msgid "" "KBounce is a single player arcade game with the elements of\n" "puzzle. It is played on a field, surrounded by wall, with two or more balls\n" @@ -4971,7 +5087,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10665 +#: gnu/packages/games.scm:10667 msgid "" "KBlocks is the classic Tetris-like falling blocks game.\n" "\n" @@ -4983,7 +5099,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10708 +#: gnu/packages/games.scm:10710 msgid "" "KSudoku is a Sudoku game and solver, supporting a range of\n" "2D and 3D Sudoku variants. In addition to playing Sudoku, it can print Sudoku\n" @@ -5012,7 +5128,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10763 +#: gnu/packages/games.scm:10765 msgid "" "KLines is a simple but highly addictive one player game.\n" "\n" @@ -5029,7 +5145,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10806 +#: gnu/packages/games.scm:10808 msgid "" "KGoldrunner is an action game where the hero runs through a\n" "maze, climbs stairs, dig holes and dodges enemies in order to collect all the\n" @@ -5043,7 +5159,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10849 +#: gnu/packages/games.scm:10851 msgid "" "KDiamond is a three-in-a-row game like Bejeweled. It\n" "features unlimited fun with randomly generated games and five difficulty\n" @@ -5052,7 +5168,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10885 +#: gnu/packages/games.scm:10887 msgid "" "KFourInLine is a board game for two players based on the\n" "Connect-Four game.\n" @@ -5063,7 +5179,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10924 +#: gnu/packages/games.scm:10926 msgid "" "KBlackbox is a game of hide and seek played on a grid of\n" "boxes where the computer has hidden several balls. The position of the hidden\n" @@ -5075,7 +5191,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10964 +#: gnu/packages/games.scm:10966 msgid "" "KNetWalk is a small game where you have to build up a\n" "computer network by rotating the wires to connect the terminals to the server.\n" @@ -5088,7 +5204,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11002 +#: gnu/packages/games.scm:11004 msgid "" "Bomber is a single player arcade game.\n" "\n" @@ -5104,7 +5220,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11047 +#: gnu/packages/games.scm:11049 msgid "" "Granatier is a clone of the classic Bomberman game,\n" "inspired by the work of the Clanbomber clone.\n" @@ -5112,7 +5228,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11085 +#: gnu/packages/games.scm:11087 msgid "" "KsirK is a multi-player network-enabled game. The goal of\n" "the game is simply to conquer the world by attacking your neighbors with your\n" @@ -5137,7 +5253,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11145 +#: gnu/packages/games.scm:11147 msgid "" "Palapeli is a jigsaw puzzle game. Unlike other games in\n" "that genre, you are not limited to aligning pieces on imaginary grids. The\n" @@ -5149,7 +5265,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11184 +#: gnu/packages/games.scm:11186 msgid "" "Kiriki is an addictive and fun dice game, designed to be\n" "played by as many as six players.\n" @@ -5160,7 +5276,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11224 +#: gnu/packages/games.scm:11226 msgid "" "Kigo is an open-source implementation of the popular Go\n" "game.\n" @@ -5177,7 +5293,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11269 +#: gnu/packages/games.scm:11271 msgid "" "Kubrick is a game based on the Rubik's Cube puzzle.\n" "\n" @@ -5190,7 +5306,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11309 +#: gnu/packages/games.scm:11311 msgid "" "Lieutnant Skat (from German \"Offiziersskat\") is a fun and\n" "engaging card game for two players, where the second player is either live\n" @@ -5201,7 +5317,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11347 +#: gnu/packages/games.scm:11349 msgid "" "Kapman is a clone of the well known game Pac-Man.\n" "\n" @@ -5213,7 +5329,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11386 +#: gnu/packages/games.scm:11388 msgid "" "KSpaceduel is a space battle game for one or two players,\n" "where two ships fly around a star in a struggle to be the only survivor.\n" @@ -5221,7 +5337,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11419 +#: gnu/packages/games.scm:11421 msgid "" "Bovo is a Gomoku (from Japanese 五目並べ - lit. \"five\n" "points\") like game for two players, where the opponents alternate in placing\n" @@ -5232,7 +5348,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11457 +#: gnu/packages/games.scm:11459 msgid "" "Killbots is a simple game of evading killer robots.\n" "\n" @@ -5246,7 +5362,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11499 +#: gnu/packages/games.scm:11501 msgid "" "KSnakeDuel is a fast action game where you steer a snake\n" "which has to eat food. While eating the snake grows. But once a player\n" @@ -5256,7 +5372,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11535 +#: gnu/packages/games.scm:11537 msgid "" "In Kollision you use mouse to control a small blue ball in a\n" "closed space environment filled with small red balls, which move about\n" @@ -5267,7 +5383,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11575 +#: gnu/packages/games.scm:11577 msgid "" "KBattleship is a Battle Ship game for KDE.\n" "\n" @@ -5278,7 +5394,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11615 +#: gnu/packages/games.scm:11617 msgid "" "KReversi is a simple one player strategy game played\n" "against the computer.\n" @@ -5291,7 +5407,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11655 +#: gnu/packages/games.scm:11657 msgid "" "KSquares is an implementation of the popular paper based\n" "game Squares. Two players take turns connecting dots on a grid to complete\n" @@ -5300,7 +5416,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11692 +#: gnu/packages/games.scm:11694 msgid "" "KJumpingcube is a simple tactical game for one or two\n" "players, played on a grid of numbered squares. Each turn, players compete for\n" @@ -5309,7 +5425,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11782 +#: gnu/packages/games.scm:11784 msgid "" "X-Moto is a challenging 2D motocross platform game, where\n" "physics play an all important role in the gameplay. You need to\n" @@ -5317,27 +5433,27 @@ msgid "" "the more difficult challenges." msgstr "" -#: gnu/packages/games.scm:11827 +#: gnu/packages/games.scm:11829 msgid "" "Eboard is a chess board interface for ICS (Internet Chess Servers)\n" "and chess engines." msgstr "" -#: gnu/packages/games.scm:11880 +#: gnu/packages/games.scm:11882 msgid "" "ChessX is a chess database. With ChessX you can operate on your\n" "collection of chess games in many ways: browse, edit, add, organize, analyze,\n" "etc. You can also play games on FICS or against an engine." msgstr "" -#: gnu/packages/games.scm:11935 +#: gnu/packages/games.scm:11937 msgid "" "Stockfish is a very strong chess engine. It is much stronger than the\n" "best human chess grandmasters. It can be used with UCI-compatible GUIs like\n" "ChessX." msgstr "" -#: gnu/packages/games.scm:11964 +#: gnu/packages/games.scm:11966 msgid "" "Barrage is a rather destructive action game that puts you on a shooting\n" "range with the objective to hit as many dummy targets as possible within\n" @@ -5346,7 +5462,7 @@ msgid "" "get high scores." msgstr "" -#: gnu/packages/games.scm:11990 +#: gnu/packages/games.scm:11992 msgid "" "This is a clone of the classic game BurgerTime. In it, you play\n" "the part of a chef who must create burgers by stepping repeatedly on\n" @@ -5356,7 +5472,7 @@ msgid "" "protect you." msgstr "" -#: gnu/packages/games.scm:12018 +#: gnu/packages/games.scm:12020 msgid "" "Seven Kingdoms, designed by Trevor Chan, brings a blend of Real-Time\n" "Strategy with the addition of trade, diplomacy, and espionage. The game\n" @@ -5366,7 +5482,7 @@ msgid "" "kingdom." msgstr "" -#: gnu/packages/games.scm:12134 +#: gnu/packages/games.scm:12136 msgid "" "In the grand tradition of Marble Madness and Super Monkey Ball,\n" "Neverball has you guide a rolling ball through dangerous territory. Balance\n" @@ -5376,13 +5492,13 @@ msgid "" "game." msgstr "" -#: gnu/packages/games.scm:12210 +#: gnu/packages/games.scm:12212 msgid "" "With PokerTH you can play the Texas holdem poker game, either against\n" "computer opponents or against real players online." msgstr "" -#: gnu/packages/games.scm:12281 +#: gnu/packages/games.scm:12283 msgid "" "Xblackjack is a MOTIF/OLIT based tool constructed to get you ready for\n" "the casino. It was inspired by a book called \"Beat the Dealer\" by Edward\n" @@ -5391,13 +5507,13 @@ msgid "" "System\" (high-low system)." msgstr "" -#: gnu/packages/games.scm:12321 +#: gnu/packages/games.scm:12323 msgid "" "Pilot your ship inside a planet to find and rescue the colonists trapped\n" "inside the Zenith Colony." msgstr "" -#: gnu/packages/games.scm:12341 +#: gnu/packages/games.scm:12343 msgid "" "Provides a large set of Go-related services for X11:\n" "@itemize\n" @@ -5408,7 +5524,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:12401 +#: gnu/packages/games.scm:12403 msgid "" "Passage is meant to be a memento mori game. It presents an entire life,\n" "from young adulthood through old age and death, in the span of five minutes.\n" @@ -5417,21 +5533,21 @@ msgid "" "there's no right way to interpret it." msgstr "" -#: gnu/packages/games.scm:12435 +#: gnu/packages/games.scm:12437 msgid "" "High performance animated desktop background setter for\n" "X11 that won't set your CPU on fire, drain your laptop battery, or lower video\n" "game FPS." msgstr "" -#: gnu/packages/games.scm:12465 +#: gnu/packages/games.scm:12467 msgid "" "Curse of War is a fast-paced action strategy game originally\n" "implemented using ncurses user interface. An SDL graphical version is also\n" "available." msgstr "" -#: gnu/packages/games.scm:12496 +#: gnu/packages/games.scm:12498 msgid "" "Schiffbruch is a mix of building, strategy and adventure and gets played\n" "with a two-dimensional view. The game deals with the consequences of a ship\n" @@ -5440,13 +5556,13 @@ msgid "" "get attention, so you get found." msgstr "" -#: gnu/packages/games.scm:12556 +#: gnu/packages/games.scm:12558 msgid "" "This package provides port of Prince of Persia, based on the\n" "disassembly of the DOS version, extended with new features." msgstr "" -#: gnu/packages/games.scm:12587 +#: gnu/packages/games.scm:12589 #, scheme-format msgid "" "@code{fheroes2} is an implementation of Heroes of Might and\n" @@ -5542,7 +5658,7 @@ msgid "" "from Markdown files." msgstr "" -#: gnu/packages/gettext.scm:311 +#: gnu/packages/gettext.scm:304 msgid "" "The po4a (PO for anything) project goal is to ease translations (and\n" "more interestingly, the maintenance of translations) using gettext tools on\n" @@ -5625,18 +5741,18 @@ msgid "" "system. It was forked from the GNU Image Manipulation Program." msgstr "" -#: gnu/packages/gnome.scm:284 +#: gnu/packages/gnome.scm:288 msgid "GUPnP-IGD is a library to handle UPnP IGD port mapping." msgstr "" -#: gnu/packages/gnome.scm:340 +#: gnu/packages/gnome.scm:344 msgid "" "Brasero is an application to burn CD/DVD for the Gnome\n" "Desktop. It is designed to be as simple as possible and has some unique\n" "features to enable users to create their discs easily and quickly." msgstr "" -#: gnu/packages/gnome.scm:372 +#: gnu/packages/gnome.scm:376 msgid "" "Libcloudproviders is a DBus API that allows cloud storage sync\n" "clients to expose their services. Clients such as file managers and desktop\n" @@ -5644,19 +5760,19 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:444 +#: gnu/packages/gnome.scm:448 msgid "" "LibGRSS is a Glib abstraction to handle feeds in RSS, Atom,\n" "and other formats." msgstr "" -#: gnu/packages/gnome.scm:472 +#: gnu/packages/gnome.scm:476 msgid "" "GNOME-JS-Common provides common modules for GNOME JavaScript\n" "bindings." msgstr "" -#: gnu/packages/gnome.scm:555 +#: gnu/packages/gnome.scm:559 msgid "" "Seed is a library and interpreter, dynamically bridging\n" "(through GObjectIntrospection) the WebKit JavaScriptCore engine, with the\n" @@ -5665,21 +5781,21 @@ msgid "" "in JavaScript." msgstr "" -#: gnu/packages/gnome.scm:611 +#: gnu/packages/gnome.scm:615 msgid "" "Libdmapsharing is a library which allows programs to access,\n" "share and control the playback of media content using DMAP (DAAP, DPAP & DACP).\n" "It is written in C using GObject and libsoup." msgstr "" -#: gnu/packages/gnome.scm:644 +#: gnu/packages/gnome.scm:648 msgid "" "GTX is a small collection of convenience functions intended to\n" "enhance the GLib testing framework. With specific emphasis on easing the pain\n" "of writing test cases for asynchronous interactions." msgstr "" -#: gnu/packages/gnome.scm:721 +#: gnu/packages/gnome.scm:725 msgid "" "Dee is a library that uses DBus to provide objects allowing\n" "you to create Model-View-Controller type programs across DBus. It also consists\n" @@ -5687,7 +5803,7 @@ msgid "" "of known objects without needing a central registrar." msgstr "" -#: gnu/packages/gnome.scm:802 +#: gnu/packages/gnome.scm:806 msgid "" "Zeitgeist is a service which logs the users’s activities and\n" "events, anywhere from files opened to websites visited and conversations. It\n" @@ -5696,27 +5812,27 @@ msgid "" "patterns." msgstr "" -#: gnu/packages/gnome.scm:869 +#: gnu/packages/gnome.scm:871 msgid "" "GNOME Recipes helps you discover what to cook today,\n" "tomorrow, the rest of the week and for special occasions." msgstr "" -#: gnu/packages/gnome.scm:939 +#: gnu/packages/gnome.scm:940 msgid "" "GNOME Photos is a simple and elegant replacement for using a\n" "file manager to deal with photos. Enhance, crop and edit in a snap. Seamless\n" "cloud integration is offered through GNOME Online Accounts." msgstr "" -#: gnu/packages/gnome.scm:1007 +#: gnu/packages/gnome.scm:1008 msgid "" "GNOME Music is the new GNOME music playing application that\n" "aims to combine an elegant and immersive browsing experience with simple\n" "and straightforward controls." msgstr "" -#: gnu/packages/gnome.scm:1028 +#: gnu/packages/gnome.scm:1029 msgid "" "PortableXDR is an implementation of External Data\n" "Representation (XDR) Library. It is a standard data serialization format, for\n" @@ -5724,25 +5840,25 @@ msgid "" "between different kinds of computer systems." msgstr "" -#: gnu/packages/gnome.scm:1066 +#: gnu/packages/gnome.scm:1067 msgid "" "Tepl is a library that eases the development of\n" "GtkSourceView-based text editors and IDEs." msgstr "" -#: gnu/packages/gnome.scm:1107 +#: gnu/packages/gnome.scm:1108 msgid "" "krb5-auth-dialog is a simple dialog that monitors Kerberos\n" "tickets, and pops up a dialog when they are about to expire." msgstr "" -#: gnu/packages/gnome.scm:1132 +#: gnu/packages/gnome.scm:1133 msgid "" "Notification-Daemon is the server implementation of the\n" "freedesktop.org desktop notification specification." msgstr "" -#: gnu/packages/gnome.scm:1168 +#: gnu/packages/gnome.scm:1169 msgid "" "The mm-common module provides the build infrastructure\n" "and utilities shared among the GNOME C++ binding libraries. Release\n" @@ -5750,55 +5866,55 @@ msgid "" "Library reference documentation." msgstr "" -#: gnu/packages/gnome.scm:1214 +#: gnu/packages/gnome.scm:1215 msgid "" "PhoDav was initially developed as a file-sharing mechanism for Spice,\n" "but it is generic enough to be reused in other projects,\n" "in particular in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1267 +#: gnu/packages/gnome.scm:1268 msgid "" "GNOME Color Manager is a session framework that makes\n" "it easy to manage, install and generate color profiles\n" "in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1319 +#: gnu/packages/gnome.scm:1320 msgid "" "GNOME Online Miners provides a set of crawlers that\n" "go through your online content and index them locally in Tracker.\n" "It has miners for Facebook, Flickr, Google, ownCloud and SkyDrive." msgstr "" -#: gnu/packages/gnome.scm:1352 +#: gnu/packages/gnome.scm:1353 msgid "" "This package provides a library to handle resource discovery\n" "and announcement over @acronym{SSDP, Simple Service Discovery Protocol} and\n" "a debugging tool, @command{gssdp-device-sniffer}." msgstr "" -#: gnu/packages/gnome.scm:1391 +#: gnu/packages/gnome.scm:1392 msgid "" "This package provides GUPnP, an object-oriented framework\n" "for creating UPnP devices and control points, written in C using\n" "@code{GObject} and @code{libsoup}." msgstr "" -#: gnu/packages/gnome.scm:1423 +#: gnu/packages/gnome.scm:1424 msgid "" "This package provides a small utility library to\n" "support DLNA-related tasks such as media profile guessing, transcoding to a\n" "given profile, etc. DLNA is a subset of UPnP A/V." msgstr "" -#: gnu/packages/gnome.scm:1453 +#: gnu/packages/gnome.scm:1454 msgid "" "This package provides a small library for handling\n" "and implementation of UPnP A/V profiles." msgstr "" -#: gnu/packages/gnome.scm:1478 +#: gnu/packages/gnome.scm:1479 msgid "" "The libmediaart library is the foundation for media art caching,\n" "extraction, and lookup for applications on the desktop." @@ -5811,14 +5927,14 @@ msgid "" "tour of all gnome components and allows the user to set them up." msgstr "" -#: gnu/packages/gnome.scm:1584 +#: gnu/packages/gnome.scm:1583 msgid "" "GNOME User Share is a small package that binds together\n" "various free software projects to bring easy to use user-level file\n" "sharing to the masses." msgstr "" -#: gnu/packages/gnome.scm:1639 +#: gnu/packages/gnome.scm:1638 msgid "" "Sushi is a DBus-activated service that allows applications\n" "to preview files on the GNOME desktop." @@ -5870,7 +5986,7 @@ msgid "" "and system administrators." msgstr "" -#: gnu/packages/gnome.scm:1946 +#: gnu/packages/gnome.scm:1950 msgid "" "Dia can be used to draw different types of diagrams, and\n" "includes support for UML static structure diagrams (class diagrams), entity\n" @@ -5878,28 +5994,28 @@ msgid "" "formats like PNG, SVG, PDF and EPS." msgstr "" -#: gnu/packages/gnome.scm:1991 +#: gnu/packages/gnome.scm:1995 msgid "" "libgdata is a GLib-based library for accessing online service APIs using\n" "the GData protocol — most notably, Google's services. It provides APIs to\n" "access the common Google services, and has full asynchronous support." msgstr "" -#: gnu/packages/gnome.scm:2019 +#: gnu/packages/gnome.scm:2023 msgid "" "libgxps is a GObject-based library for handling and rendering XPS\n" "documents. This package also contains binaries that can convert XPS documents\n" "to other formats." msgstr "" -#: gnu/packages/gnome.scm:2060 +#: gnu/packages/gnome.scm:2063 msgid "" "Characters is a simple utility application to find\n" "and insert unusual characters. It allows you to quickly find the\n" "character you are looking for by searching for keywords." msgstr "" -#: gnu/packages/gnome.scm:2081 +#: gnu/packages/gnome.scm:2084 msgid "" "gnome-common contains various files needed to bootstrap\n" "GNOME modules built from Git. It contains a common \"autogen.sh\" script that\n" @@ -5907,13 +6023,13 @@ msgid "" "commonly used macros." msgstr "" -#: gnu/packages/gnome.scm:2142 +#: gnu/packages/gnome.scm:2145 msgid "" "GNOME Contacts organizes your contact information from online and\n" "offline sources, providing a centralized place for managing your contacts." msgstr "" -#: gnu/packages/gnome.scm:2222 +#: gnu/packages/gnome.scm:2225 msgid "" "The libgnome-desktop library provides API shared by several applications\n" "on the desktop, but that cannot live in the platform for various reasons.\n" @@ -5923,40 +6039,40 @@ msgid "" "The gnome-about program helps find which version of GNOME is installed." msgstr "" -#: gnu/packages/gnome.scm:2257 +#: gnu/packages/gnome.scm:2260 msgid "" "Gnome-doc-utils is a collection of documentation utilities for the\n" "Gnome project. It includes xml2po tool which makes it easier to translate\n" "and keep up to date translations of documentation." msgstr "" -#: gnu/packages/gnome.scm:2309 +#: gnu/packages/gnome.scm:2311 msgid "Disk management utility for GNOME." msgstr "" -#: gnu/packages/gnome.scm:2352 +#: gnu/packages/gnome.scm:2353 msgid "" "Application to show you the fonts installed on your computer\n" "for your use as thumbnails. Selecting any thumbnails shows the full view of how\n" "the font would look under various sizes." msgstr "" -#: gnu/packages/gnome.scm:2420 +#: gnu/packages/gnome.scm:2421 msgid "" "The GCR package contains libraries used for displaying certificates and\n" "accessing key stores. It also provides the viewer for crypto files on the\n" "GNOME Desktop." msgstr "" -#: gnu/packages/gnome.scm:2459 +#: gnu/packages/gnome.scm:2460 msgid "This library provides docking features for gtk+." msgstr "" -#: gnu/packages/gnome.scm:2505 +#: gnu/packages/gnome.scm:2506 msgid "Client library to access passwords from the GNOME keyring." msgstr "" -#: gnu/packages/gnome.scm:2575 +#: gnu/packages/gnome.scm:2576 msgid "" "gnome-keyring is a program that keeps passwords and other secrets for\n" "users. It is run as a daemon in the session, similar to ssh-agent, and other\n" @@ -5975,13 +6091,13 @@ msgid "" "on the GNOME Desktop with a single simple application." msgstr "" -#: gnu/packages/gnome.scm:2693 +#: gnu/packages/gnome.scm:2692 msgid "" "Gsettings-desktop-schemas contains a collection of GSettings\n" "schemas for settings shared by various components of the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:2729 +#: gnu/packages/gnome.scm:2728 msgid "" "Liblarch is a Python library built to easily handle data structures such\n" "as lists, trees and acyclic graphs. There's also a GTK binding that will\n" @@ -5992,7 +6108,7 @@ msgid "" "and how they are displayed (View)." msgstr "" -#: gnu/packages/gnome.scm:2790 +#: gnu/packages/gnome.scm:2789 msgid "" "Getting Things GNOME! (GTG) is a personal tasks and TODO list items\n" "organizer for the GNOME desktop environment inspired by the Getting Things\n" @@ -6002,24 +6118,24 @@ msgid "" "know, from small tasks to large projects." msgstr "" -#: gnu/packages/gnome.scm:2829 +#: gnu/packages/gnome.scm:2828 msgid "" "To help with the transition to the Freedesktop Icon Naming\n" "Specification, the icon naming utility maps the icon names used by the\n" "GNOME and KDE desktops to the icon names proposed in the specification." msgstr "" -#: gnu/packages/gnome.scm:2858 +#: gnu/packages/gnome.scm:2857 msgid "Icons for the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:2897 +#: gnu/packages/gnome.scm:2896 msgid "" "This is an icon theme that follows the Tango visual\n" "guidelines." msgstr "" -#: gnu/packages/gnome.scm:2927 +#: gnu/packages/gnome.scm:2926 msgid "" "The shared-mime-info package contains the core database of common types\n" "and the update-mime-database command used to extend it. It requires glib2 to\n" @@ -6028,18 +6144,18 @@ msgid "" "database is translated at Transifex." msgstr "" -#: gnu/packages/gnome.scm:3012 +#: gnu/packages/gnome.scm:3011 msgid "" "system-config-printer is a CUPS administration tool. It's written in\n" "Python using GTK+, and uses the @acronym{IPP, Internet Printing Protocol} when\n" "configuring CUPS." msgstr "" -#: gnu/packages/gnome.scm:3036 +#: gnu/packages/gnome.scm:3035 msgid "Freedesktop icon theme." msgstr "" -#: gnu/packages/gnome.scm:3085 +#: gnu/packages/gnome.scm:3084 msgid "" "Libnotify is a library that sends desktop notifications to a\n" "notification daemon, as defined in the Desktop Notifications spec. These\n" @@ -6047,7 +6163,7 @@ msgid "" "some form of information without getting in the user's way." msgstr "" -#: gnu/packages/gnome.scm:3132 +#: gnu/packages/gnome.scm:3131 msgid "" "Libpeas is a gobject-based plugin engine, targeted at giving every\n" "application the chance to assume its own extensibility. It also has a set of\n" @@ -6056,21 +6172,21 @@ msgid "" "API." msgstr "" -#: gnu/packages/gnome.scm:3168 +#: gnu/packages/gnome.scm:3167 msgid "" "GtkGLExt is an OpenGL extension to GTK+. It provides\n" "additional GDK objects which support OpenGL rendering in GTK+ and GtkWidget\n" "API add-ons to make GTK+ widgets OpenGL-capable." msgstr "" -#: gnu/packages/gnome.scm:3248 +#: gnu/packages/gnome.scm:3247 msgid "" "Glade is a rapid application development (RAD) tool to\n" "enable quick & easy development of user interfaces for the GTK+ toolkit and\n" "the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:3280 +#: gnu/packages/gnome.scm:3279 msgid "" "Libcroco is a standalone CSS2 parsing and manipulation library.\n" "The parser provides a low level event driven SAC-like API and a CSS object\n" @@ -6078,13 +6194,13 @@ msgid "" "XML/CSS rendering engine." msgstr "" -#: gnu/packages/gnome.scm:3347 +#: gnu/packages/gnome.scm:3346 msgid "" "Libgsf aims to provide an efficient extensible I/O abstraction\n" "for dealing with different structured file formats." msgstr "" -#: gnu/packages/gnome.scm:3526 +#: gnu/packages/gnome.scm:3525 msgid "" "Librsvg is a library to render SVG images to Cairo surfaces.\n" "GNOME uses this to render SVG icons. Outside of GNOME, other desktop\n" @@ -6092,7 +6208,7 @@ msgid "" "diagrams." msgstr "" -#: gnu/packages/gnome.scm:3649 +#: gnu/packages/gnome.scm:3648 msgid "" "Libidl is a library for creating trees of CORBA Interface\n" "Definition Language (idl) files, which is a specification for defining\n" @@ -6101,82 +6217,82 @@ msgid "" "functionality was designed to be as reusable and portable as possible." msgstr "" -#: gnu/packages/gnome.scm:3704 +#: gnu/packages/gnome.scm:3703 msgid "" "ORBit2 is a CORBA 2.4-compliant Object Request Broker (orb)\n" "featuring mature C, C++ and Python bindings." msgstr "" -#: gnu/packages/gnome.scm:3758 +#: gnu/packages/gnome.scm:3757 msgid "" "Bonobo is a framework for creating reusable components for\n" "use in GNOME applications, built on top of CORBA." msgstr "" -#: gnu/packages/gnome.scm:3789 +#: gnu/packages/gnome.scm:3788 msgid "" "Gconf is a system for storing application preferences. It\n" "is intended for user preferences; not arbitrary data storage." msgstr "" -#: gnu/packages/gnome.scm:3823 +#: gnu/packages/gnome.scm:3822 msgid "" "GNOME Mime Data is a module which contains the base MIME\n" "and Application database for GNOME. The data stored by this module is\n" "designed to be accessed through the MIME functions in GnomeVFS." msgstr "" -#: gnu/packages/gnome.scm:3863 +#: gnu/packages/gnome.scm:3862 msgid "" "GnomeVFS is the core library used to access files and folders in GNOME\n" "applications. It provides a file system abstraction which allows applications\n" "to access local and remote files with a single consistent API." msgstr "" -#: gnu/packages/gnome.scm:3904 +#: gnu/packages/gnome.scm:3903 msgid "" "The libgnome library provides a number of useful routines\n" "for building modern applications, including session management, activation of\n" "files and URIs, and displaying help." msgstr "" -#: gnu/packages/gnome.scm:3928 +#: gnu/packages/gnome.scm:3927 msgid "" "Libart is a 2D drawing library intended as a\n" "high-quality vector-based 2D library with antialiasing and alpha composition." msgstr "" -#: gnu/packages/gnome.scm:3955 +#: gnu/packages/gnome.scm:3954 msgid "" "The GnomeCanvas widget provides a flexible widget for\n" "creating interactive structured graphics." msgstr "" -#: gnu/packages/gnome.scm:3977 +#: gnu/packages/gnome.scm:3976 msgid "C++ bindings to the GNOME Canvas library." msgstr "" -#: gnu/packages/gnome.scm:4003 +#: gnu/packages/gnome.scm:4002 msgid "" "The libgnomeui library provides additional widgets for\n" "applications. Many of the widgets from libgnomeui have already been\n" "ported to GTK+." msgstr "" -#: gnu/packages/gnome.scm:4029 +#: gnu/packages/gnome.scm:4028 msgid "" "Libglade is a library that provides interfaces for loading\n" "graphical interfaces described in glade files and for accessing the\n" "widgets built in the loading process." msgstr "" -#: gnu/packages/gnome.scm:4071 +#: gnu/packages/gnome.scm:4070 msgid "" "The Bonobo UI library provides a number of user interface\n" "controls using the Bonobo component framework." msgstr "" -#: gnu/packages/gnome.scm:4098 +#: gnu/packages/gnome.scm:4097 msgid "" "Libwnck is the Window Navigator Construction Kit, a library for use in\n" "writing pagers, tasklists, and more generally applications that are dealing\n" @@ -6184,11 +6300,11 @@ msgid "" "Hints specification (EWMH)." msgstr "" -#: gnu/packages/gnome.scm:4148 +#: gnu/packages/gnome.scm:4147 msgid "A GLib/GTK+ set of document-centric objects and utilities." msgstr "" -#: gnu/packages/gnome.scm:4234 +#: gnu/packages/gnome.scm:4233 msgid "" "GNUmeric is a GNU spreadsheet application, running under GNOME. It is\n" "interoperable with other spreadsheet applications. It has a vast array of\n" @@ -6197,11 +6313,11 @@ msgid "" "engineering." msgstr "" -#: gnu/packages/gnome.scm:4290 +#: gnu/packages/gnome.scm:4289 msgid "Drawing is a basic image editor aiming at the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:4326 +#: gnu/packages/gnome.scm:4325 msgid "The default GNOME 3 themes (Adwaita and some accessibility themes)." msgstr "" @@ -6220,7 +6336,7 @@ msgid "" "targeting the GNOME stack simple." msgstr "" -#: gnu/packages/gnome.scm:4481 +#: gnu/packages/gnome.scm:4482 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, and a minimal sample application (vte) using that. Vte is mainly used in\n" @@ -6228,34 +6344,34 @@ msgid "" "editors, IDEs, etc." msgstr "" -#: gnu/packages/gnome.scm:4505 +#: gnu/packages/gnome.scm:4506 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, this fork provides additional functions exposed for keyboard text\n" "selection and URL hints." msgstr "" -#: gnu/packages/gnome.scm:4585 +#: gnu/packages/gnome.scm:4586 msgid "" "Vinagre is a remote display client supporting the VNC, SPICE\n" "and RDP protocols." msgstr "" -#: gnu/packages/gnome.scm:4631 +#: gnu/packages/gnome.scm:4633 msgid "" "Dconf is a low-level configuration system. Its main purpose\n" "is to provide a backend to GSettings on platforms that don't already have\n" "configuration storage systems." msgstr "" -#: gnu/packages/gnome.scm:4661 +#: gnu/packages/gnome.scm:4663 msgid "" "JSON-GLib is a library providing serialization and\n" "described by RFC 4627. It implements a full JSON parser and generator using\n" "GLib and GObject, and integrates JSON with GLib data types." msgstr "" -#: gnu/packages/gnome.scm:4760 +#: gnu/packages/gnome.scm:4762 msgid "" "LibXklavier is a library providing high-level API for X Keyboard\n" "Extension known as XKB. This library is intended to support XFree86 and other\n" @@ -6263,13 +6379,13 @@ msgid "" "indicators etc)." msgstr "" -#: gnu/packages/gnome.scm:4788 +#: gnu/packages/gnome.scm:4790 msgid "" "This package provides Python bindings to librsvg, the SVG rendering\n" "library." msgstr "Dieses Paket bietet Python-Anbindungen für librsvg, die Bibliothek zum Zeichnen von SVG-Daten." -#: gnu/packages/gnome.scm:4829 +#: gnu/packages/gnome.scm:4831 msgid "" "Glib-networking contains the implementations of certain GLib networking\n" "features that cannot be implemented directly in GLib itself because of their\n" @@ -6279,26 +6395,26 @@ msgid "" "from the GSettings schemas in gsettings-desktop-schemas." msgstr "" -#: gnu/packages/gnome.scm:4866 +#: gnu/packages/gnome.scm:4868 msgid "" "This library was designed to make it easier to access web services that\n" "claim to be \"RESTful\". It includes convenience wrappers for libsoup and\n" "libxml to ease remote use of the RESTful API." msgstr "" -#: gnu/packages/gnome.scm:4931 +#: gnu/packages/gnome.scm:4933 msgid "" "LibSoup is an HTTP client/server library for GNOME. It uses GObjects\n" "and the GLib main loop, to integrate well with GNOME applications." msgstr "" -#: gnu/packages/gnome.scm:5035 +#: gnu/packages/gnome.scm:5037 msgid "" "Libsecret is a GObject based library for storing and retrieving passwords\n" "and other secrets. It communicates with the \"Secret Service\" using DBus." msgstr "" -#: gnu/packages/gnome.scm:5074 +#: gnu/packages/gnome.scm:5076 msgid "" "Five or More is a game where you try to align\n" " five or more objects of the same color and shape causing them to disappear.\n" @@ -6306,19 +6422,19 @@ msgid "" " Try to last as long as possible." msgstr "" -#: gnu/packages/gnome.scm:5116 +#: gnu/packages/gnome.scm:5118 msgid "" "Mines (previously gnomine) is a puzzle game where you locate mines\n" "floating in an ocean using only your brain and a little bit of luck." msgstr "" -#: gnu/packages/gnome.scm:5157 +#: gnu/packages/gnome.scm:5159 msgid "" "MultiWriter can be used to write an ISO file to multiple USB devices at\n" "once." msgstr "" -#: gnu/packages/gnome.scm:5197 +#: gnu/packages/gnome.scm:5198 msgid "" "Sudoku is a Japanese logic game that exploded in popularity in 2005.\n" "GNOME Sudoku is meant to have an interface as simple and unobstrusive as\n" @@ -6326,7 +6442,7 @@ msgid "" "more fun." msgstr "" -#: gnu/packages/gnome.scm:5247 +#: gnu/packages/gnome.scm:5248 msgid "" "GNOME Terminal is a terminal emulator application for accessing a\n" "UNIX shell environment which can be used to run programs available on\n" @@ -6336,14 +6452,14 @@ msgid "" "keyboard shortcuts." msgstr "" -#: gnu/packages/gnome.scm:5319 +#: gnu/packages/gnome.scm:5320 msgid "" "Colord is a system service that makes it easy to manage,\n" "install and generate color profiles to accurately color manage input and\n" "output devices." msgstr "" -#: gnu/packages/gnome.scm:5390 +#: gnu/packages/gnome.scm:5391 msgid "" "Geoclue is a D-Bus service that provides location\n" "information. The primary goal of the Geoclue project is to make creating\n" @@ -6352,7 +6468,7 @@ msgid "" "permission from user." msgstr "" -#: gnu/packages/gnome.scm:5434 +#: gnu/packages/gnome.scm:5435 msgid "" "geocode-glib is a convenience library for geocoding (finding longitude,\n" "and latitude from an address) and reverse geocoding (finding an address from\n" @@ -6360,7 +6476,7 @@ msgid "" "faster results and to avoid unnecessary server load." msgstr "" -#: gnu/packages/gnome.scm:5510 +#: gnu/packages/gnome.scm:5511 msgid "" "UPower is an abstraction for enumerating power devices,\n" "listening to device events and querying history and statistics. Any\n" @@ -6368,13 +6484,13 @@ msgid "" "service via the system message bus." msgstr "" -#: gnu/packages/gnome.scm:5555 +#: gnu/packages/gnome.scm:5557 msgid "" "libgweather is a library to access weather information from online\n" "services for numerous locations." msgstr "" -#: gnu/packages/gnome.scm:5639 +#: gnu/packages/gnome.scm:5640 msgid "" "This package contains the daemon responsible for setting the various\n" "parameters of a GNOME session and the applications that run under it. It\n" @@ -6382,19 +6498,19 @@ msgid "" "settings, themes, mouse settings, and startup of other daemons." msgstr "" -#: gnu/packages/gnome.scm:5670 +#: gnu/packages/gnome.scm:5671 msgid "" "Totem-pl-parser is a GObjects-based library to parse and save\n" "playlists in a variety of formats." msgstr "" -#: gnu/packages/gnome.scm:5703 +#: gnu/packages/gnome.scm:5704 msgid "" "Aisleriot (also known as Solitaire or sol) is a collection of card games\n" "which are easy to play with the aid of a mouse." msgstr "" -#: gnu/packages/gnome.scm:5729 +#: gnu/packages/gnome.scm:5730 msgid "" "Amtk is the acronym for @acronym{Amtk, Actions Menus and Toolbars Kit}.\n" "It is a basic GtkUIManager replacement based on GAction. It is suitable for\n" @@ -6473,13 +6589,13 @@ msgid "" "discovery protocols." msgstr "" -#: gnu/packages/gnome.scm:6324 +#: gnu/packages/gnome.scm:6323 msgid "" "Totem is a simple yet featureful media player for GNOME\n" "which can read a large number of file formats." msgstr "" -#: gnu/packages/gnome.scm:6415 +#: gnu/packages/gnome.scm:6414 msgid "" "Rhythmbox is a music playing application for GNOME. It\n" "supports playlists, song ratings, and any codecs installed through gstreamer." @@ -6510,7 +6626,7 @@ msgid "" "part of udev-extras, then udev, then systemd. It's now a project on its own." msgstr "" -#: gnu/packages/gnome.scm:6611 +#: gnu/packages/gnome.scm:6610 msgid "" "GVFS is a userspace virtual file system designed to work with the I/O\n" "abstraction of GIO. It contains a GIO module that seamlessly adds GVFS\n" @@ -6521,7 +6637,7 @@ msgid "" "DAV, and others." msgstr "" -#: gnu/packages/gnome.scm:6652 +#: gnu/packages/gnome.scm:6651 msgid "" "GUsb is a GObject wrapper for libusb1 that makes it easy to do\n" "asynchronous control, bulk and interrupt transfers with proper cancellation\n" @@ -6529,7 +6645,7 @@ msgid "" "USB transfers with your high-level application or system daemon." msgstr "" -#: gnu/packages/gnome.scm:6706 +#: gnu/packages/gnome.scm:6705 msgid "" "Document Scanner is an easy-to-use application that lets you connect your\n" "scanner and quickly capture images and documents in an appropriate format. It\n" @@ -6537,25 +6653,25 @@ msgid "" "almost all of them." msgstr "" -#: gnu/packages/gnome.scm:6778 +#: gnu/packages/gnome.scm:6777 msgid "" "Eolie is a new web browser for GNOME. It features Firefox sync support,\n" "a secret password store, an adblocker, and a modern UI." msgstr "" -#: gnu/packages/gnome.scm:6855 +#: gnu/packages/gnome.scm:6854 msgid "" "Epiphany is a GNOME web browser targeted at non-technical users. Its\n" "principles are simplicity and standards compliance." msgstr "" -#: gnu/packages/gnome.scm:6914 +#: gnu/packages/gnome.scm:6913 msgid "" "D-Feet is a D-Bus debugger, which can be used to inspect D-Bus interfaces\n" "of running programs and invoke methods on those interfaces." msgstr "" -#: gnu/packages/gnome.scm:6944 +#: gnu/packages/gnome.scm:6943 msgid "" "Yelp-XSL is a collection of programs and data files to help\n" "you build, maintain, and distribute documentation. It provides XSLT stylesheets\n" @@ -6565,14 +6681,14 @@ msgid "" "jQuery.Syntax JavaScript libraries." msgstr "" -#: gnu/packages/gnome.scm:6983 +#: gnu/packages/gnome.scm:6982 msgid "" "Yelp is the help viewer in Gnome. It natively views Mallard, DocBook,\n" "man, info, and HTML documents. It can locate documents according to the\n" "freedesktop.org help system specification." msgstr "" -#: gnu/packages/gnome.scm:7013 +#: gnu/packages/gnome.scm:7012 msgid "" "Yelp-tools is a collection of scripts and build utilities to help create,\n" "manage, and publish documentation for Yelp and the web. Most of the heavy\n" @@ -6580,13 +6696,13 @@ msgid "" "wraps things up in a developer-friendly way." msgstr "" -#: gnu/packages/gnome.scm:7051 +#: gnu/packages/gnome.scm:7050 msgid "" "Libgee is a utility library providing GObject-based interfaces and\n" "classes for commonly used data structures." msgstr "" -#: gnu/packages/gnome.scm:7079 +#: gnu/packages/gnome.scm:7078 msgid "" "Gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. It\n" "allows for GNOME applications to easily inspect and update EXIF, IPTC, and XMP\n" @@ -6601,7 +6717,7 @@ msgid "" "share them with others via social networking and more." msgstr "" -#: gnu/packages/gnome.scm:7168 +#: gnu/packages/gnome.scm:7169 msgid "" "File Roller is an archive manager for the GNOME desktop\n" "environment that allows users to view, unpack, and create compressed archives\n" @@ -6614,25 +6730,25 @@ msgid "" "configuration program to choose applications starting on login." msgstr "" -#: gnu/packages/gnome.scm:7284 +#: gnu/packages/gnome.scm:7287 msgid "" "Gjs is a javascript binding for GNOME. It's mainly based on spidermonkey\n" "javascript engine and the GObject introspection framework." msgstr "" -#: gnu/packages/gnome.scm:7381 +#: gnu/packages/gnome.scm:7383 msgid "" "While aiming at simplicity and ease of use, gedit is a\n" "powerful general purpose text editor." msgstr "" -#: gnu/packages/gnome.scm:7405 +#: gnu/packages/gnome.scm:7407 msgid "" "Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you\n" "to display dialog boxes from the commandline and shell scripts." msgstr "" -#: gnu/packages/gnome.scm:7595 +#: gnu/packages/gnome.scm:7598 msgid "" "Mutter is a window and compositing manager that displays and manages your\n" "desktop via OpenGL. Mutter combines a sophisticated display engine using the\n" @@ -6640,7 +6756,7 @@ msgid "" "window manager." msgstr "" -#: gnu/packages/gnome.scm:7653 +#: gnu/packages/gnome.scm:7656 msgid "" "GNOME Online Accounts provides interfaces so that applications and\n" "libraries in GNOME can access the user's online accounts. It has providers\n" @@ -6648,20 +6764,20 @@ msgid "" "Microsoft Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos." msgstr "" -#: gnu/packages/gnome.scm:7740 +#: gnu/packages/gnome.scm:7743 msgid "" "This package provides a unified backend for programs that work with\n" "contacts, tasks, and calendar information. It was originally developed for\n" "Evolution (hence the name), but is now used by other packages as well." msgstr "" -#: gnu/packages/gnome.scm:7803 +#: gnu/packages/gnome.scm:7806 msgid "" "Caribou is an input assistive technology intended for switch and pointer\n" "users." msgstr "" -#: gnu/packages/gnome.scm:7953 +#: gnu/packages/gnome.scm:7958 msgid "" "NetworkManager is a system network service that manages your network\n" "devices and connections, attempting to keep active network connectivity when\n" @@ -6670,36 +6786,36 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:8009 +#: gnu/packages/gnome.scm:8014 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to virtual private networks (VPNs) via OpenVPN." msgstr "" -#: gnu/packages/gnome.scm:8059 +#: gnu/packages/gnome.scm:8064 msgid "" "Support for configuring virtual private networks based on VPNC.\n" "Compatible with Cisco VPN concentrators configured to use IPsec." msgstr "" -#: gnu/packages/gnome.scm:8106 +#: gnu/packages/gnome.scm:8111 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to @acronym{VPNs, virtual private networks} via OpenConnect, an open client for\n" "Cisco's AnyConnect SSL VPN." msgstr "" -#: gnu/packages/gnome.scm:8135 +#: gnu/packages/gnome.scm:8140 msgid "Database of broadband connection configuration." msgstr "" -#: gnu/packages/gnome.scm:8179 +#: gnu/packages/gnome.scm:8183 msgid "" "This package contains a systray applet for NetworkManager. It displays\n" "the available networks and allows users to easily switch between them." msgstr "" -#: gnu/packages/gnome.scm:8234 +#: gnu/packages/gnome.scm:8238 #, fuzzy #| msgid "" #| "This package provides a dictionary for the Hunspell spell-checking\n" @@ -6709,25 +6825,25 @@ msgid "" "library." msgstr "Dieses Paket bietet ein Wörterbuch für die Hunspell-Rechtschreibbibliothek." -#: gnu/packages/gnome.scm:8466 +#: gnu/packages/gnome.scm:8470 msgid "" "GNOME Display Manager is a system service that is responsible for\n" "providing graphical log-ins and managing local and remote displays." msgstr "" -#: gnu/packages/gnome.scm:8490 +#: gnu/packages/gnome.scm:8494 msgid "" "LibGTop is a library to get system specific data such as CPU and memory\n" "usage and information about running processes." msgstr "" -#: gnu/packages/gnome.scm:8525 +#: gnu/packages/gnome.scm:8528 msgid "" "This package contains tools for managing and manipulating Bluetooth\n" "devices using the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:8636 +#: gnu/packages/gnome.scm:8646 msgid "" "This package contains configuration applets for the GNOME desktop,\n" "allowing to set accessibility configuration, desktop fonts, keyboard and mouse\n" @@ -6735,13 +6851,13 @@ msgid "" "properties, screen resolution, and other GNOME parameters." msgstr "" -#: gnu/packages/gnome.scm:8802 +#: gnu/packages/gnome.scm:8811 msgid "" "GNOME Shell provides core user interface functions for the GNOME desktop,\n" "like switching to windows and launching applications." msgstr "" -#: gnu/packages/gnome.scm:8845 +#: gnu/packages/gnome.scm:8858 msgid "" "GTK-VNC is a project providing client side APIs for the RFB\n" "protocol / VNC remote desktop technology. It is built using coroutines allowing\n" @@ -6749,13 +6865,13 @@ msgid "" "core C library, and bindings for Python (PyGTK)." msgstr "" -#: gnu/packages/gnome.scm:8875 +#: gnu/packages/gnome.scm:8888 msgid "" "GNOME Autoar is a library which makes creating and extracting archives\n" "easy, safe, and automatic." msgstr "" -#: gnu/packages/gnome.scm:8945 +#: gnu/packages/gnome.scm:8959 msgid "" "Tracker is a search engine and triplestore for desktop, embedded and mobile.\n" "\n" @@ -6778,21 +6894,21 @@ msgid "" "endpoint and it understands SPARQL." msgstr "" -#: gnu/packages/gnome.scm:9074 +#: gnu/packages/gnome.scm:9088 msgid "" "Tracker is an advanced framework for first class objects with associated\n" "metadata and tags. It provides a one stop solution for all metadata, tags,\n" "shared object databases, search tools and indexing." msgstr "" -#: gnu/packages/gnome.scm:9167 +#: gnu/packages/gnome.scm:9185 msgid "" "Nautilus (Files) is a file manager designed to fit the GNOME desktop\n" "design and behaviour, giving the user a simple way to navigate and manage its\n" "files." msgstr "" -#: gnu/packages/gnome.scm:9201 +#: gnu/packages/gnome.scm:9220 msgid "" "Baobab (Disk Usage Analyzer) is a graphical application to analyse disk\n" "usage in the GNOME desktop environment. It can easily scan device volumes or\n" @@ -6800,7 +6916,7 @@ msgid "" "is complete it provides a graphical representation of each selected folder." msgstr "" -#: gnu/packages/gnome.scm:9227 +#: gnu/packages/gnome.scm:9245 msgid "" "GNOME backgrounds package contains a collection of graphics files which\n" "can be used as backgrounds in the GNOME Desktop environment. Additionally,\n" @@ -6808,21 +6924,21 @@ msgid "" "can add your own files to the collection." msgstr "" -#: gnu/packages/gnome.scm:9272 +#: gnu/packages/gnome.scm:9290 msgid "" "GNOME Screenshot is a utility used for taking screenshots of the entire\n" "screen, a window or a user defined area of the screen, with optional\n" "beautifying border effects." msgstr "" -#: gnu/packages/gnome.scm:9304 +#: gnu/packages/gnome.scm:9320 msgid "" "Dconf-editor is a graphical tool for browsing and editing the dconf\n" "configuration system for GNOME. It allows users to configure desktop\n" "software that do not provide their own configuration interface." msgstr "" -#: gnu/packages/gnome.scm:9334 +#: gnu/packages/gnome.scm:9350 msgid "" "Given many installed packages which might handle a given MIME type, a\n" "user running the GNOME desktop probably has some preferences: for example,\n" @@ -6831,32 +6947,32 @@ msgid "" "associations for GNOME." msgstr "" -#: gnu/packages/gnome.scm:9366 +#: gnu/packages/gnome.scm:9382 msgid "GoVirt is a GObject wrapper for the oVirt REST API." msgstr "" -#: gnu/packages/gnome.scm:9424 +#: gnu/packages/gnome.scm:9439 msgid "" "GNOME Weather is a small application that allows you to\n" "monitor the current weather conditions for your city, or anywhere in the\n" "world." msgstr "" -#: gnu/packages/gnome.scm:9528 +#: gnu/packages/gnome.scm:9543 msgid "" "GNOME is the graphical desktop for GNU. It includes a wide variety of\n" "applications for browsing the web, editing text and images, creating\n" "documents and diagrams, playing media, scanning, and much more." msgstr "" -#: gnu/packages/gnome.scm:9574 +#: gnu/packages/gnome.scm:9589 msgid "" "Byzanz is a simple desktop recording program with a\n" "command-line interface. It can record part or all of an X display for a\n" "specified duration and save it as a GIF encoded animated image file." msgstr "" -#: gnu/packages/gnome.scm:9634 +#: gnu/packages/gnome.scm:9651 msgid "" "Authenticator is a two-factor authentication (2FA) application built for\n" "the GNOME desktop environment.\n" @@ -6873,44 +6989,44 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/gnome.scm:9669 +#: gnu/packages/gnome.scm:9686 msgid "" "GSound is a small library for playing system sounds. It's designed to be\n" "used via GObject Introspection, and is a thin wrapper around the libcanberra C\n" "library." msgstr "" -#: gnu/packages/gnome.scm:9694 +#: gnu/packages/gnome.scm:9711 msgid "" "Libzapojit is a GLib-based library for accessing online service APIs of\n" "Microsoft SkyDrive and Hotmail, using their REST protocols." msgstr "" -#: gnu/packages/gnome.scm:9739 +#: gnu/packages/gnome.scm:9756 msgid "" "GNOME Clocks is a simple clocks application designed to fit the GNOME\n" "desktop. It supports world clock, stop watch, alarms, and count down timer." msgstr "" -#: gnu/packages/gnome.scm:9787 +#: gnu/packages/gnome.scm:9803 msgid "" "GNOME Calendar is a simple calendar application designed to fit the GNOME\n" "desktop. It supports multiple calendars, month, week and year view." msgstr "" -#: gnu/packages/gnome.scm:9838 +#: gnu/packages/gnome.scm:9860 msgid "" -"GNOME To Do is a simplistic personal task manager designed to perfectly\n" -"fit the GNOME desktop." +"GNOME To Do is a simplistic personal task manager designed\n" +"to perfectly fit the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:9877 +#: gnu/packages/gnome.scm:9899 msgid "" "GNOME Dictionary can look for the definition or translation of a word in\n" "existing databases over the internet." msgstr "" -#: gnu/packages/gnome.scm:9943 +#: gnu/packages/gnome.scm:9964 msgid "" "GNOME Tweaks allows adjusting advanced configuration settings in\n" "GNOME 3. This includes things like the fonts used in user interface elements,\n" @@ -6918,13 +7034,13 @@ msgid "" "GNOME Shell appearance and extension, etc." msgstr "" -#: gnu/packages/gnome.scm:9971 +#: gnu/packages/gnome.scm:9992 msgid "" "GNOME Shell extensions modify and extend GNOME Shell\n" "functionality and behavior." msgstr "" -#: gnu/packages/gnome.scm:10015 +#: gnu/packages/gnome.scm:10036 msgid "" "Libfolks is a library that aggregates information about people\n" "from multiple sources (e.g., Telepathy connection managers for IM contacts,\n" @@ -6933,19 +7049,19 @@ msgid "" "compiled." msgstr "" -#: gnu/packages/gnome.scm:10056 +#: gnu/packages/gnome.scm:10077 msgid "" "This library allows you to use the Facebook API from\n" "GLib/GObject code." msgstr "" -#: gnu/packages/gnome.scm:10083 +#: gnu/packages/gnome.scm:10104 msgid "" "Libgnomekbd is a keyboard configuration library for the GNOME desktop\n" "environment, which can notably display keyboard layouts." msgstr "" -#: gnu/packages/gnome.scm:10119 +#: gnu/packages/gnome.scm:10140 msgid "" "Libunique is a library for writing single instance applications. If you\n" "launch a single instance application twice, the second instance will either just\n" @@ -6955,20 +7071,20 @@ msgid "" "handling the startup notification side." msgstr "" -#: gnu/packages/gnome.scm:10168 +#: gnu/packages/gnome.scm:10190 msgid "" "Calculator is an application that solves mathematical equations and\n" "is suitable as a default application in a Desktop environment." msgstr "" -#: gnu/packages/gnome.scm:10194 +#: gnu/packages/gnome.scm:10216 msgid "" "Xpad is a sticky note that strives to be simple, fault tolerant,\n" "and customizable. Xpad consists of independent pad windows, each is\n" "basically a text box in which notes can be written." msgstr "" -#: gnu/packages/gnome.scm:10267 +#: gnu/packages/gnome.scm:10289 msgid "" "This program allows you to browse through all the available Unicode\n" "characters and categories for the installed fonts, and to examine their\n" @@ -6976,20 +7092,20 @@ msgid "" "only know by its Unicode name or code point." msgstr "" -#: gnu/packages/gnome.scm:10299 +#: gnu/packages/gnome.scm:10321 msgid "" "Color Picker is a simple color chooser written in GTK3. It\n" "supports both X and Wayland display servers." msgstr "" -#: gnu/packages/gnome.scm:10322 +#: gnu/packages/gnome.scm:10344 msgid "" "Bluefish is an editor aimed at programmers and web developers,\n" "with many options to write web sites, scripts and other code.\n" "Bluefish supports many programming and markup languages." msgstr "" -#: gnu/packages/gnome.scm:10363 +#: gnu/packages/gnome.scm:10385 msgid "" "GNOME System Monitor is a GNOME process viewer and system monitor with\n" "an attractive, easy-to-use interface. It has features, such as a tree view\n" @@ -6998,27 +7114,27 @@ msgid "" "kill/reinice processes." msgstr "" -#: gnu/packages/gnome.scm:10405 +#: gnu/packages/gnome.scm:10427 msgid "" "This package includes a python client library for the AT-SPI D-Bus\n" "accessibility infrastructure." msgstr "" -#: gnu/packages/gnome.scm:10475 +#: gnu/packages/gnome.scm:10495 msgid "" "Orca is a screen reader that provides access to the graphical desktop\n" "via speech and refreshable braille. Orca works with applications and toolkits\n" "that support the Assistive Technology Service Provider Interface (AT-SPI)." msgstr "" -#: gnu/packages/gnome.scm:10529 +#: gnu/packages/gnome.scm:10549 msgid "" "gspell provides a flexible API to add spell-checking to a GTK+\n" "application. It provides a GObject API, spell-checking to text entries and\n" "text views, and buttons to choose the language." msgstr "" -#: gnu/packages/gnome.scm:10571 +#: gnu/packages/gnome.scm:10591 msgid "" "GNOME Planner is a project management tool based on the Work Breakdown\n" "Structure (WBS). Its goal is to enable you to easily plan projects. Based on\n" @@ -7030,7 +7146,7 @@ msgid "" "views can be printed as PDF or PostScript files, or exported to HTML." msgstr "" -#: gnu/packages/gnome.scm:10644 +#: gnu/packages/gnome.scm:10664 msgid "" "Lollypop is a music player designed to play well with GNOME desktop.\n" "Lollypop plays audio formats such as mp3, mp4, ogg and flac and gets information\n" @@ -7038,26 +7154,26 @@ msgid "" "automatically and it can stream songs from online music services and charts." msgstr "" -#: gnu/packages/gnome.scm:10668 +#: gnu/packages/gnome.scm:10688 msgid "" "A collection of GStreamer video filters and effects to be used in\n" "photo-booth-like software, such as Cheese." msgstr "" -#: gnu/packages/gnome.scm:10747 +#: gnu/packages/gnome.scm:10766 msgid "" "Cheese uses your webcam to take photos and videos. Cheese can also\n" "apply fancy special effects and lets you share the fun with others." msgstr "" -#: gnu/packages/gnome.scm:10801 +#: gnu/packages/gnome.scm:10820 msgid "" "Password Safe is a password manager which makes use of the KeePass v4\n" "format. It integrates perfectly with the GNOME desktop and provides an easy\n" "and uncluttered interface for the management of password databases." msgstr "" -#: gnu/packages/gnome.scm:10836 +#: gnu/packages/gnome.scm:10855 msgid "" "Sound Juicer extracts audio from compact discs and convert it\n" "into audio files that a personal computer or digital audio player can play.\n" @@ -7065,27 +7181,27 @@ msgid "" "mp3, Ogg Vorbis and FLAC" msgstr "" -#: gnu/packages/gnome.scm:10888 +#: gnu/packages/gnome.scm:10907 msgid "" "SoundConverter supports converting between many audio formats including\n" "Opus, Ogg Vorbis, FLAC and more. It supports parallel conversion, and\n" "configurable file renaming." msgstr "" -#: gnu/packages/gnome.scm:10936 +#: gnu/packages/gnome.scm:10955 msgid "" "Workrave is a program that assists in the recovery and prevention of\n" "repetitive strain injury (@dfn{RSI}). The program frequently alerts you to take\n" "micro-pauses and rest breaks, and restricts you to your daily limit." msgstr "" -#: gnu/packages/gnome.scm:10977 +#: gnu/packages/gnome.scm:10996 msgid "" "The GHex program can view and edit files in two ways:\n" "hexadecimal or ASCII. It is useful for editing binary files in general." msgstr "" -#: gnu/packages/gnome.scm:11013 +#: gnu/packages/gnome.scm:11032 msgid "" "The libdazzle library is a companion library to GObject and\n" "Gtk+. It provides various features that the authors wish were in the\n" @@ -7094,40 +7210,40 @@ msgid "" "generic enough to work for everyone." msgstr "" -#: gnu/packages/gnome.scm:11080 +#: gnu/packages/gnome.scm:11099 msgid "" "Evolution is a personal information management application\n" "that provides integrated mail, calendaring and address book\n" "functionality." msgstr "" -#: gnu/packages/gnome.scm:11140 +#: gnu/packages/gnome.scm:11154 msgid "" "GThumb is an image viewer, browser, organizer, editor and\n" "advanced image management tool" msgstr "" -#: gnu/packages/gnome.scm:11213 +#: gnu/packages/gnome.scm:11227 msgid "" "Terminator allows you to run multiple GNOME terminals in a grid and\n" "tabs, and it supports drag and drop re-ordering of terminals." msgstr "" -#: gnu/packages/gnome.scm:11274 +#: gnu/packages/gnome.scm:11288 msgid "" "The aim of the handy library is to help with developing user\n" "interfaces for mobile devices using GTK+. It provides responsive GTK+ widgets\n" "for usage on small and big screens." msgstr "" -#: gnu/packages/gnome.scm:11323 +#: gnu/packages/gnome.scm:11337 msgid "" "libgit2-glib is a GLib wrapper library around the libgit2 Git\n" "access library. It only implements the core plumbing functions, not really the\n" "higher level porcelain stuff." msgstr "" -#: gnu/packages/gnome.scm:11402 +#: gnu/packages/gnome.scm:11415 msgid "" "gitg is a graphical user interface for git. It aims at being a small,\n" "fast and convenient tool to visualize the history of git repositories.\n" @@ -7135,21 +7251,21 @@ msgid "" "repository and commit your work." msgstr "" -#: gnu/packages/gnome.scm:11474 +#: gnu/packages/gnome.scm:11487 msgid "" "Gamin is a file and directory monitoring system defined to be a subset\n" "of the FAM (File Alteration Monitor) system. This is a service provided by a\n" "library which detects when a file or a directory has been modified." msgstr "" -#: gnu/packages/gnome.scm:11508 +#: gnu/packages/gnome.scm:11521 msgid "" "GNOME Mahjongg is a game based on the classic Chinese\n" -"tile-matching game Mahjong. It features multiple board layouts, tile themes,\n" +"tile-matching game Mahjongg. It features multiple board layouts, tile themes,\n" "and a high score table." msgstr "" -#: gnu/packages/gnome.scm:11546 +#: gnu/packages/gnome.scm:11559 msgid "" "This package provides themes and related elements that don't\n" "really fit in other upstream packages. It offers legacy support for GTK+ 2\n" @@ -7157,19 +7273,19 @@ msgid "" "index files needed for Adwaita to be used outside of GNOME." msgstr "" -#: gnu/packages/gnome.scm:11585 +#: gnu/packages/gnome.scm:11605 msgid "" -"Gnote is a note-taking application written for the GNOME desktop\n" -"environment." +"Gnote is a note-taking application written for the GNOME\n" +"desktop environment." msgstr "" -#: gnu/packages/gnome.scm:11647 +#: gnu/packages/gnome.scm:11664 msgid "" "Polari is a simple Internet Relay Chat (IRC) client that is designed to\n" "integrate seamlessly with the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:11706 +#: gnu/packages/gnome.scm:11723 msgid "" "GNOME Boxes is a simple application to view, access, and\n" "manage remote and virtual systems. Note that this application requires the\n" @@ -7178,7 +7294,7 @@ msgid "" "these services on the Guix System." msgstr "" -#: gnu/packages/gnome.scm:11806 +#: gnu/packages/gnome.scm:11823 msgid "" "Geary collects related messages together into conversations,\n" "making it easy to find and follow your discussions. Full-text and keyword\n" @@ -7190,14 +7306,14 @@ msgid "" "to." msgstr "" -#: gnu/packages/gnome.scm:11851 +#: gnu/packages/gnome.scm:11868 msgid "" "gLabels is a program for creating labels and business cards. It is\n" "designed to work with various laser/ink-jet peel-off label and business\n" "card sheets that you’ll find at most office supply stores." msgstr "" -#: gnu/packages/gnome.scm:11892 +#: gnu/packages/gnome.scm:11909 msgid "" "GNOME LaTeX is a LaTeX editor for the GNOME desktop. It has features\n" "such as build tools, completion of LaTeX commands, structure navigation,\n" @@ -7205,19 +7321,19 @@ msgid "" "and toolbars." msgstr "" -#: gnu/packages/gnome.scm:11951 +#: gnu/packages/gnome.scm:11968 msgid "" "Setzer is a simple yet full-featured LaTeX editor written in Python with\n" "GTK+. It integrates well with the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:12017 +#: gnu/packages/gnome.scm:12034 msgid "" "Apostrophe is a GTK+ based distraction-free Markdown editor.\n" "It uses pandoc as back-end for parsing Markdown." msgstr "" -#: gnu/packages/gnome.scm:12070 +#: gnu/packages/gnome.scm:12088 msgid "" "libratbag provides @command{ratbagd}, a DBus daemon to\n" "configure input devices, mainly gaming mice. The daemon provides a generic\n" @@ -7234,7 +7350,7 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12140 +#: gnu/packages/gnome.scm:12156 msgid "" "Piper is a GTK+ application for configuring gaming mice with\n" "onboard configuration for key bindings via libratbag. Piper requires\n" @@ -7246,14 +7362,14 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12202 +#: gnu/packages/gnome.scm:12218 msgid "" "Parlatype is an audio player for the GNOME desktop\n" "environment. Its main purpose is the manual transcription of spoken\n" "audio files." msgstr "" -#: gnu/packages/gnome.scm:12228 +#: gnu/packages/gnome.scm:12244 msgid "" "Jsonrpc-GLib is a library to communicate with JSON-RPC based\n" "peers in either a synchronous or asynchronous fashion. It also allows\n" @@ -7262,14 +7378,14 @@ msgid "" "host to avoid parser overhead and memory-allocator fragmentation." msgstr "" -#: gnu/packages/gnome.scm:12256 +#: gnu/packages/gnome.scm:12272 msgid "" "Feedbackd provides a DBus daemon to act on events to provide\n" "haptic, visual and audio feedback. It offers the libfeedbackd library and\n" "GObject introspection bindings." msgstr "" -#: gnu/packages/gnome.scm:12305 +#: gnu/packages/gnome.scm:12321 msgid "" "Sysprof performs detailed, accurate, and fast CPU profiling of an entire\n" "GNU/Linux system including the kernel and all user-space applications. This\n" @@ -7279,21 +7395,21 @@ msgid "" "libraries. Applications do not need to be recompiled--or even restarted." msgstr "" -#: gnu/packages/gnome.scm:12388 +#: gnu/packages/gnome.scm:12406 msgid "" -"Builder aims to be an integrated development\n" -"environment (IDE) for writing GNOME-based software. It features fuzzy search,\n" -"auto-completion, a mini code map, documentation browsing, Git integration, an\n" -"integrated profiler via Sysprof, debugging support, and more." +"Builder aims to be an integrated development environment (IDE) for\n" +"writing GNOME-based software. It features fuzzy search, auto-completion,\n" +"a mini code map, documentation browsing, Git integration, an integrated\n" +"profiler via Sysprof, debugging support, and more." msgstr "" -#: gnu/packages/gnome.scm:12461 +#: gnu/packages/gnome.scm:12480 msgid "" "Komikku is an online/offline manga reader for GNOME,\n" "developed with the aim of being used with the Librem 5 phone." msgstr "" -#: gnu/packages/gnome.scm:12545 +#: gnu/packages/gnome.scm:12564 msgid "" "GNU Data Access (GDA) is an attempt to provide uniform access to\n" "different kinds of data sources (databases, information servers, mail spools,\n" @@ -7301,7 +7417,7 @@ msgid "" "your data." msgstr "" -#: gnu/packages/gnome.scm:12596 +#: gnu/packages/gnome.scm:12614 msgid "" "gtranslator is a quite comfortable gettext po/po.gz/(g)mo files editor\n" "for the GNOME 3.x platform with many features. It aims to be a very complete\n" @@ -7309,32 +7425,37 @@ msgid "" "world." msgstr "" -#: gnu/packages/gnome.scm:12662 +#: gnu/packages/gnome.scm:12680 msgid "" "OCRFeeder is a complete Optical Character Recognition and\n" "Document Analysis and Recognition program." msgstr "" -#: gnu/packages/gnome.scm:12702 +#: gnu/packages/gnome.scm:12720 msgid "" "@code{libadwaita} offers widgets and objects to build GNOME\n" "applications scaling from desktop workstations to mobile phones. It is the\n" "successor of @code{libhandy} for GTK4." msgstr "" -#: gnu/packages/gnome.scm:12727 +#: gnu/packages/gnome.scm:12745 msgid "" "@code{gnome-power-manager} is a tool for viewing present and\n" "historical battery usage and related statistics." msgstr "" +#: gnu/packages/gnome.scm:12789 +#, fuzzy +msgid "This package provides a graphical file manager." +msgstr "Dieses Paket bietet Steve Harris’ LADSPA-Plugin für einen Stereo-Nachhall-Effekt." + #: gnu/packages/gnuzilla.scm:155 msgid "" "SpiderMonkey is Mozilla's JavaScript engine written\n" "in C/C++." msgstr "" -#: gnu/packages/gnuzilla.scm:1314 +#: gnu/packages/gnuzilla.scm:1315 msgid "" "IceCat is the GNU version of the Firefox browser. It is entirely free\n" "software, which does not recommend non-free plugins and addons. It also\n" @@ -7347,19 +7468,19 @@ msgid "" "standards of the IceCat project." msgstr "" -#: gnu/packages/gnuzilla.scm:1642 +#: gnu/packages/gnuzilla.scm:1648 msgid "" "This package provides an email client built based on Mozilla\n" "Thunderbird. It supports email, news feeds, chat, calendar and contacts." msgstr "" -#: gnu/packages/gnuzilla.scm:1717 +#: gnu/packages/gnuzilla.scm:1723 msgid "" "Firefox Decrypt is a tool to extract passwords from\n" "Mozilla (Firefox, Waterfox, Thunderbird, SeaMonkey) profiles." msgstr "" -#: gnu/packages/gnuzilla.scm:1754 +#: gnu/packages/gnuzilla.scm:1760 msgid "" "@code{lz4json} is a little utility to unpack lz4json files as generated\n" "by Firefox's bookmark backups and session restore. This is a different format\n" @@ -7373,7 +7494,7 @@ msgid "" "tools have full access to view and control running applications." msgstr "" -#: gnu/packages/gtk.scm:215 +#: gnu/packages/gtk.scm:212 msgid "" "Cairo is a 2D graphics library with support for multiple output\n" "devices. Currently supported output targets include the X Window System (via\n" @@ -7381,24 +7502,24 @@ msgid "" "output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB." msgstr "" -#: gnu/packages/gtk.scm:277 +#: gnu/packages/gtk.scm:274 msgid "HarfBuzz is an OpenType text shaping engine." msgstr "" -#: gnu/packages/gtk.scm:320 +#: gnu/packages/gtk.scm:317 msgid "" "Libdatrie is an implementation of double-array structure for\n" "representing trie. Trie is a kind of digital search tree." msgstr "" -#: gnu/packages/gtk.scm:352 +#: gnu/packages/gtk.scm:349 msgid "" "LibThai is a set of Thai language support routines aimed to\n" "ease developers’ tasks to incorporate Thai language support in their\n" "applications." msgstr "" -#: gnu/packages/gtk.scm:407 +#: gnu/packages/gtk.scm:404 msgid "" "Pango is a library for laying out and rendering of text, with\n" "an emphasis on internationalization. Pango can be used anywhere that text\n" @@ -7407,21 +7528,21 @@ msgid "" "handling for GTK+-2.x." msgstr "" -#: gnu/packages/gtk.scm:461 +#: gnu/packages/gtk.scm:458 msgid "" "Pangox was a X backend to pango. It is now obsolete and no\n" "longer provided by recent pango releases. pangox-compat provides the\n" "functions which were removed." msgstr "" -#: gnu/packages/gtk.scm:498 +#: gnu/packages/gtk.scm:495 msgid "" "Ganv is an interactive GTK+ widget for interactive “boxes and lines” or\n" "graph-like environments, e.g. modular synths or finite state machine\n" "diagrams." msgstr "" -#: gnu/packages/gtk.scm:554 +#: gnu/packages/gtk.scm:551 msgid "" "GtkSourceView is a portable C library that extends the standard GTK+\n" "framework for multiline text editing with support for configurable syntax\n" @@ -7429,33 +7550,33 @@ msgid "" "printing and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:602 +#: gnu/packages/gtk.scm:599 msgid "" "GtkSourceView is a text widget that extends the standard\n" "GTK+ text widget GtkTextView. It improves GtkTextView by implementing syntax\n" "highlighting and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:698 +#: gnu/packages/gtk.scm:695 msgid "" "GdkPixbuf is a library that loads image data in various\n" "formats and stores it as linear buffers in memory. The buffers can then be\n" "scaled, composited, modified, saved, or rendered." msgstr "" -#: gnu/packages/gtk.scm:746 +#: gnu/packages/gtk.scm:743 msgid "" "The Assistive Technology Service Provider Interface, core components,\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:827 +#: gnu/packages/gtk.scm:824 msgid "" "The Assistive Technology Service Provider Interface\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:921 +#: gnu/packages/gtk.scm:918 msgid "" "GTK+, or the GIMP Toolkit, is a multi-platform toolkit for creating\n" "graphical user interfaces. Offering a complete set of widgets, GTK+ is\n" @@ -7463,14 +7584,14 @@ msgid "" "application suites." msgstr "" -#: gnu/packages/gtk.scm:1234 +#: gnu/packages/gtk.scm:1238 msgid "" "GTK is a multi-platform toolkit for creating graphical user\n" "interfaces. Offering a complete set of widgets, GTK is suitable for projects\n" "ranging from small one-off tools to complete application suites." msgstr "" -#: gnu/packages/gtk.scm:1308 +#: gnu/packages/gtk.scm:1312 msgid "" "Guile-Cairo wraps the Cairo graphics library for Guile Scheme.\n" "Guile-Cairo is complete, wrapping almost all of the Cairo API. It is API\n" @@ -7480,13 +7601,13 @@ msgid "" "exceptions, macros, and a dynamic programming environment." msgstr "" -#: gnu/packages/gtk.scm:1389 +#: gnu/packages/gtk.scm:1393 msgid "" "Guile-RSVG wraps the RSVG library for Guile, allowing you to render SVG\n" "images onto Cairo surfaces." msgstr "" -#: gnu/packages/gtk.scm:1456 +#: gnu/packages/gtk.scm:1460 msgid "" "Guile-Present defines a declarative vocabulary for presentations,\n" "together with tools to render presentation documents as SVG or PDF.\n" @@ -7495,29 +7616,29 @@ msgid "" "documents." msgstr "" -#: gnu/packages/gtk.scm:1522 +#: gnu/packages/gtk.scm:1526 msgid "" "Includes guile-clutter, guile-gnome-gstreamer,\n" "guile-gnome-platform (GNOME developer libraries), and guile-gtksourceview." msgstr "" -#: gnu/packages/gtk.scm:1578 +#: gnu/packages/gtk.scm:1582 msgid "" "Cairomm provides a C++ programming interface to the Cairo 2D graphics\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1642 +#: gnu/packages/gtk.scm:1647 msgid "" "Pangomm provides a C++ programming interface to the Pango text rendering\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1704 +#: gnu/packages/gtk.scm:1709 msgid "ATKmm is the C++ binding for the ATK library." msgstr "" -#: gnu/packages/gtk.scm:1784 +#: gnu/packages/gtk.scm:1790 msgid "" "GTKmm is the official C++ interface for the popular GUI\n" "library GTK+. Highlights include typesafe callbacks, and a comprehensive set\n" @@ -7746,7 +7867,7 @@ msgid "" "excellent pavucontrol." msgstr "" -#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:238 +#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:241 msgid "" "Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" "official extension language of the GNU system. It is an implementation of\n" @@ -7755,14 +7876,14 @@ msgid "" "without requiring the source code to be rewritten." msgstr "" -#: gnu/packages/guile.scm:502 +#: gnu/packages/guile.scm:506 msgid "" "This module provides line editing support via the Readline library for\n" "GNU@tie{}Guile. Use the @code{(ice-9 readline)} module and call its\n" "@code{activate-readline} procedure to enable it." msgstr "" -#: gnu/packages/guile.scm:604 +#: gnu/packages/guile.scm:608 msgid "" "Guile-JSON supports parsing and building JSON documents according to the\n" "specification. These are the main features:\n" @@ -7775,17 +7896,17 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/guile.scm:701 +#: gnu/packages/guile.scm:705 msgid "" "Guile bindings to the GDBM key-value storage system, using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:730 +#: gnu/packages/guile.scm:734 msgid "This package provides Guile bindings to the SQLite database system." msgstr "" -#: gnu/packages/guile.scm:769 +#: gnu/packages/guile.scm:773 msgid "" "Guile bytestructures offers a system imitating the type system\n" "of the C programming language, to be used on bytevectors. C's type\n" @@ -7794,33 +7915,33 @@ msgid "" "type system, elevating types to first-class status." msgstr "" -#: gnu/packages/guile.scm:810 +#: gnu/packages/guile.scm:814 msgid "" "This package provides Guile bindings to libgit2, a library to\n" "manipulate repositories of the Git version control system." msgstr "" -#: gnu/packages/guile.scm:846 +#: gnu/packages/guile.scm:850 msgid "" "This package provides Guile bindings for zlib, a lossless\n" "data-compression library. The bindings are written in pure Scheme by using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:877 +#: gnu/packages/guile.scm:881 msgid "" "This package provides Guile bindings for lzlib, a C library for\n" "in-memory LZMA compression and decompression. The bindings are written in\n" "pure Scheme by using Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:904 +#: gnu/packages/guile.scm:908 msgid "" "This package provides a GNU Guile interface to the zstd (``zstandard'')\n" "compression library." msgstr "" -#: gnu/packages/guile.scm:926 +#: gnu/packages/guile.scm:930 msgid "" "Guile-LZMA is a Guile wrapper for the liblzma (XZ)\n" "library. It exposes an interface similar to other Guile compression\n" @@ -8407,7 +8528,7 @@ msgid "" "It supports JPEG, PNG and GIF formats." msgstr "" -#: gnu/packages/image-viewers.scm:640 +#: gnu/packages/image-viewers.scm:643 msgid "" "Luminance HDR (formerly QtPFSGui) is a graphical user interface\n" "application that aims to provide a workflow for high dynamic range (HDR)\n" @@ -8423,7 +8544,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:735 +#: gnu/packages/image-viewers.scm:738 msgid "" "MComix is a customizable image viewer that specializes as\n" "a comic and manga reader. It supports a variety of container formats\n" @@ -8432,7 +8553,7 @@ msgid "" "For PDF support, install the @emph{mupdf} package." msgstr "" -#: gnu/packages/image-viewers.scm:775 +#: gnu/packages/image-viewers.scm:778 msgid "" "qView is a Qt image viewer designed with visually\n" "minimalism and usability in mind. Its features include animated GIF\n" @@ -8440,14 +8561,14 @@ msgid "" "preloading." msgstr "" -#: gnu/packages/image-viewers.scm:799 +#: gnu/packages/image-viewers.scm:802 msgid "" "Chafa is a command-line utility that converts all kinds of images,\n" "including animated GIFs, into ANSI/Unicode character output that can be\n" "displayed in a terminal." msgstr "" -#: gnu/packages/image-viewers.scm:847 +#: gnu/packages/image-viewers.scm:850 msgid "" "@code{imv} is a command line image viewer intended for use\n" "with tiling window managers. Features include:\n" @@ -8469,7 +8590,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:924 +#: gnu/packages/image-viewers.scm:927 msgid "" "Quick Image Viewer is a small and fast GDK/Imlib2 image viewer.\n" "Features include zoom, maxpect, scale down, fullscreen, slideshow, delete,\n" @@ -8478,7 +8599,7 @@ msgid "" "to set X desktop background." msgstr "" -#: gnu/packages/image-viewers.scm:968 +#: gnu/packages/image-viewers.scm:971 msgid "" "pqiv is a GTK-3 based command-line image viewer with a minimal UI.\n" "It is highly customizable, can be fully controlled from scripts, and has\n" @@ -8486,7 +8607,7 @@ msgid "" "archives." msgstr "" -#: gnu/packages/image-viewers.scm:1025 +#: gnu/packages/image-viewers.scm:1028 msgid "" "Nomacs is a simple to use image lounge featuring\n" "semi-transparent widgets that display additional information such as metadata,\n" @@ -8499,7 +8620,7 @@ msgid "" "synchronization of multiple instances." msgstr "" -#: gnu/packages/image-viewers.scm:1070 +#: gnu/packages/image-viewers.scm:1073 msgid "xzgv is a fast image viewer that provides extensive keyboard support." msgstr "" @@ -8762,17 +8883,17 @@ msgid "" "Math for editing mathematics." msgstr "" -#: gnu/packages/linux.scm:604 +#: gnu/packages/linux.scm:625 msgid "Headers of the Linux-Libre kernel." msgstr "" -#: gnu/packages/linux.scm:905 +#: gnu/packages/linux.scm:935 msgid "" "GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.\n" "It has been modified to remove all non-free binary blobs." msgstr "" -#: gnu/packages/linux.scm:1215 +#: gnu/packages/linux.scm:1252 msgid "" "This simple Linux kernel module allows calls from user space to any\n" "@acronym{ACPI, Advanced Configuration and Power Interface} method provided by\n" @@ -8784,7 +8905,7 @@ msgid "" "and should be used with caution, especially on untested models." msgstr "" -#: gnu/packages/linux.scm:1283 +#: gnu/packages/linux.scm:1320 msgid "" "CoreFreq is a CPU monitor that reports low-level processor settings and\n" "performance data with notably high precision by using a loadable Linux kernel\n" @@ -8815,7 +8936,7 @@ msgid "" "@file{README.md} before loading it." msgstr "" -#: gnu/packages/linux.scm:1332 +#: gnu/packages/linux.scm:1369 msgid "" "This is the Linux kernel @acronym{ACPI, Advanced Configuration and Power\n" "Interface} platform driver for the @acronym{EC, Embedded Controller} firmware\n" @@ -8824,13 +8945,13 @@ msgid "" "and the notification, WiFi, and Bluetooth LED." msgstr "" -#: gnu/packages/linux.scm:1375 +#: gnu/packages/linux.scm:1413 msgid "" "This is Realtek's RTL8821CE Linux driver for wireless\n" "network adapters." msgstr "" -#: gnu/packages/linux.scm:1407 +#: gnu/packages/linux.scm:1445 msgid "" "This is Realtek's rtl8812au Linux driver for USB 802.11n wireless\n" "network adapters, modified by the aircrack-ng project to support monitor mode\n" @@ -8838,7 +8959,7 @@ msgid "" "RTL8812AU, RTL8821AU, and RTL8814AU chips." msgstr "" -#: gnu/packages/linux.scm:1431 +#: gnu/packages/linux.scm:1469 msgid "" "The @acronym{VHBA, Virtual SCSI Host Bus Adapter} module is the link\n" "between the CDemu user-space daemon and the kernel Linux. It acts as a\n" @@ -8847,13 +8968,13 @@ msgid "" "emulate optical devices such as DVD and CD-ROM drives." msgstr "" -#: gnu/packages/linux.scm:1460 +#: gnu/packages/linux.scm:1497 msgid "" "The bbswitch module provides a way to toggle the Nvidia\n" "graphics card on Optimus laptops." msgstr "" -#: gnu/packages/linux.scm:1501 +#: gnu/packages/linux.scm:1536 msgid "" "This package provides two Linux kernel drivers, ddcci and\n" "ddcci-backlight, that allows the control of DDC/CI monitors through the sysfs\n" @@ -8863,7 +8984,7 @@ msgid "" "supported under @file{/sys/class/backlight/}." msgstr "" -#: gnu/packages/linux.scm:1528 +#: gnu/packages/linux.scm:1563 msgid "" "This Linux module creates virtual video devices. @acronym{V4L2, Video\n" "for Linux 2} applications will treat these as ordinary video devices but read\n" @@ -8875,7 +8996,7 @@ msgid "" "application by hooking GStreamer into the loopback device." msgstr "" -#: gnu/packages/linux.scm:1569 +#: gnu/packages/linux.scm:1604 msgid "" "This package provides a driver for the XBox One S Wireless controller\n" "and some newer models when connected via Bluetooth. In addition to the included\n" @@ -8883,7 +9004,7 @@ msgid "" "which need to be installed separately." msgstr "" -#: gnu/packages/linux.scm:1622 +#: gnu/packages/linux.scm:1657 msgid "" "A *Free* project to implement OSF's RFC 86.0.\n" "Pluggable authentication modules are small shared object files that can\n" @@ -8891,18 +9012,18 @@ msgid "" "at login. Local and dynamic reconfiguration are its key features." msgstr "" -#: gnu/packages/linux.scm:1683 +#: gnu/packages/linux.scm:1718 msgid "This package provides a PAM interface using @code{ctypes}." msgstr "" -#: gnu/packages/linux.scm:1712 +#: gnu/packages/linux.scm:1747 msgid "" "This package provides a PAM module that hands over your\n" "login password to @code{gpg-agent}. This can be useful if you are using a\n" "GnuPG-based password manager like @code{pass}." msgstr "" -#: gnu/packages/linux.scm:1741 +#: gnu/packages/linux.scm:1776 msgid "" "This package contains utilities for accessing the powercap\n" "Linux kernel feature through sysfs. It includes an implementation for working\n" @@ -8910,7 +9031,7 @@ msgid "" "It provides the commands @code{powercap-info} and @code{powercap-set}." msgstr "" -#: gnu/packages/linux.scm:1772 +#: gnu/packages/linux.scm:1807 msgid "" "Powerstat measures and reports your computer's power consumption in real\n" "time. On mobile PCs, it uses ACPI battery information to measure the power\n" @@ -8927,28 +9048,28 @@ msgid "" "deviation, and minimum and maximum values. It can show a nice histogram too." msgstr "" -#: gnu/packages/linux.scm:1810 +#: gnu/packages/linux.scm:1845 msgid "" "This PSmisc package is a set of some small useful utilities that\n" "use the proc file system. We're not about changing the world, but\n" "providing the system administrator with some help in common tasks." msgstr "" -#: gnu/packages/linux.scm:1948 +#: gnu/packages/linux.scm:1984 msgid "" "Util-linux is a diverse collection of Linux kernel\n" "utilities. It provides dmesg and includes tools for working with file systems,\n" "block devices, UUIDs, TTYs, and many other tools." msgstr "" -#: gnu/packages/linux.scm:1986 +#: gnu/packages/linux.scm:2037 msgid "" "ddate displays the Discordian date and holidays of a given date.\n" "The Discordian calendar was made popular by the \"Illuminatus!\" trilogy\n" "by Robert Shea and Robert Anton Wilson." msgstr "" -#: gnu/packages/linux.scm:2040 +#: gnu/packages/linux.scm:2091 msgid "" "The kernel Linux's @dfn{frame buffers} provide a simple interface to\n" "different kinds of graphic displays. The @command{fbset} utility can query and\n" @@ -8956,7 +9077,7 @@ msgid "" "parameters." msgstr "" -#: gnu/packages/linux.scm:2085 +#: gnu/packages/linux.scm:2136 msgid "" "Procps is the package that has a bunch of small useful utilities\n" "that give information about processes using the Linux /proc file system.\n" @@ -8964,11 +9085,11 @@ msgid "" "slabtop, tload, top, vmstat, w, watch and sysctl." msgstr "" -#: gnu/packages/linux.scm:2130 +#: gnu/packages/linux.scm:2181 msgid "Tools for working with USB devices, such as lsusb." msgstr "" -#: gnu/packages/linux.scm:2154 +#: gnu/packages/linux.scm:2205 msgid "" "The USB/IP protocol enables to pass USB device from a server to\n" "a client over the network. The server is a machine which shares an\n" @@ -8981,23 +9102,23 @@ msgid "" "module." msgstr "" -#: gnu/packages/linux.scm:2237 +#: gnu/packages/linux.scm:2288 msgid "This package provides tools for manipulating ext2/ext3/ext4 file systems." msgstr "" -#: gnu/packages/linux.scm:2279 +#: gnu/packages/linux.scm:2330 msgid "" "This package provides statically-linked e2fsck command taken\n" "from the e2fsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:2302 +#: gnu/packages/linux.scm:2353 msgid "" "Extundelete is a set of tools that can recover deleted files from an\n" "ext3 or ext4 partition." msgstr "" -#: gnu/packages/linux.scm:2335 +#: gnu/packages/linux.scm:2386 msgid "" "Zerofree finds the unallocated blocks with non-zero value content in an\n" "ext2, ext3, or ext4 file system and fills them with zeroes (or another value).\n" @@ -9005,39 +9126,39 @@ msgid "" "Zerofree requires the file system to be unmounted or mounted read-only." msgstr "" -#: gnu/packages/linux.scm:2380 +#: gnu/packages/linux.scm:2431 msgid "" "strace is a system call tracer, i.e. a debugging tool which prints out a\n" "trace of all the system calls made by a another process/program." msgstr "" -#: gnu/packages/linux.scm:2403 +#: gnu/packages/linux.scm:2454 msgid "" "ltrace intercepts and records dynamic library calls which are called by\n" "an executed process and the signals received by that process. It can also\n" "intercept and print the system calls executed by the program." msgstr "" -#: gnu/packages/linux.scm:2428 +#: gnu/packages/linux.scm:2479 msgid "" "This package contains Advanced Linux Sound Architecture Use Case Manager\n" "configuration of audio input/output names and routing for specific audio\n" "hardware." msgstr "" -#: gnu/packages/linux.scm:2452 +#: gnu/packages/linux.scm:2503 msgid "" "This package contains Advanced Linux Sound Architecture topology\n" "configuration files that can be used for specific audio hardware." msgstr "" -#: gnu/packages/linux.scm:2499 gnu/packages/linux.scm:2548 +#: gnu/packages/linux.scm:2550 gnu/packages/linux.scm:2599 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system." msgstr "" -#: gnu/packages/linux.scm:2617 +#: gnu/packages/linux.scm:2668 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system. This package enhances ALSA\n" @@ -9046,7 +9167,7 @@ msgid "" "external rate conversion." msgstr "" -#: gnu/packages/linux.scm:2655 +#: gnu/packages/linux.scm:2706 msgid "" "@command{iptables} is the user-space command line program used to\n" "configure the Linux 2.4.x and later IPv4 packet filtering ruleset\n" @@ -9058,7 +9179,7 @@ msgid "" "Both commands are targeted at system administrators." msgstr "" -#: gnu/packages/linux.scm:2691 +#: gnu/packages/linux.scm:2742 msgid "" "This simple daemon feeds entropy from the CPU Jitter @acronym{RNG, random\n" "number generator} core to the kernel Linux's entropy estimator. This prevents\n" @@ -9080,7 +9201,7 @@ msgid "" "early boot when entropy may be low, especially in virtualised environments." msgstr "" -#: gnu/packages/linux.scm:2727 +#: gnu/packages/linux.scm:2778 msgid "" "@command{lsscsi} lists SCSI logical units or SCSI targets. It can\n" "also list NVMe namespaces or controllers and show the relationship between a\n" @@ -9088,7 +9209,7 @@ msgid "" "name." msgstr "" -#: gnu/packages/linux.scm:2751 +#: gnu/packages/linux.scm:2802 msgid "" "ebtables is an application program used to set up and maintain the\n" "tables of rules (inside the Linux kernel) that inspect Ethernet frames. It is\n" @@ -9096,7 +9217,7 @@ msgid "" "that the Ethernet protocol is much simpler than the IP protocol." msgstr "" -#: gnu/packages/linux.scm:2816 +#: gnu/packages/linux.scm:2867 msgid "" "Iproute2 is a collection of utilities for controlling TCP/IP networking\n" "and traffic with the Linux kernel. The most important of these are\n" @@ -9108,7 +9229,7 @@ msgid "" "inadequately in modern network environments, and both should be deprecated." msgstr "" -#: gnu/packages/linux.scm:2896 +#: gnu/packages/linux.scm:2947 msgid "" "This package includes the important tools for controlling the network\n" "subsystem of the Linux kernel. This includes arp, ifconfig, netstat, rarp and\n" @@ -9117,13 +9238,13 @@ msgid "" "configuration (iptunnel, ipmaddr)." msgstr "" -#: gnu/packages/linux.scm:2947 +#: gnu/packages/linux.scm:2989 msgid "" "Libcap2 provides a programming interface to POSIX capabilities on\n" "Linux-based operating systems." msgstr "" -#: gnu/packages/linux.scm:2974 +#: gnu/packages/linux.scm:3016 msgid "" "Utilities for Linux's Ethernet bridging facilities. A bridge is a way\n" "to connect two Ethernet segments together in a protocol independent way.\n" @@ -9132,7 +9253,7 @@ msgid "" "transparently through a bridge." msgstr "" -#: gnu/packages/linux.scm:3025 +#: gnu/packages/linux.scm:3067 msgid "" "The libnl suite is a collection of libraries providing APIs to netlink\n" "protocol based Linux kernel interfaces. Netlink is an IPC mechanism primarily\n" @@ -9141,13 +9262,13 @@ msgid "" "configuration and monitoring interfaces." msgstr "" -#: gnu/packages/linux.scm:3099 +#: gnu/packages/linux.scm:3141 msgid "" "iw is a new nl80211 based CLI configuration utility for wireless\n" "devices. It replaces @code{iwconfig}, which is deprecated." msgstr "" -#: gnu/packages/linux.scm:3149 +#: gnu/packages/linux.scm:3191 msgid "" "PowerTOP is a Linux tool to diagnose issues with power consumption and\n" "power management. In addition to being a diagnostic tool, PowerTOP also has\n" @@ -9156,19 +9277,19 @@ msgid "" "settings." msgstr "" -#: gnu/packages/linux.scm:3176 +#: gnu/packages/linux.scm:3218 msgid "" "Aumix adjusts an audio mixer from X, the console, a terminal,\n" "the command line or a script." msgstr "" -#: gnu/packages/linux.scm:3207 +#: gnu/packages/linux.scm:3249 msgid "" "Iotop is a Python program with a top like user interface to show the\n" "processes currently causing I/O." msgstr "" -#: gnu/packages/linux.scm:3265 +#: gnu/packages/linux.scm:3307 msgid "" "As a consequence of its monolithic design, file system code for Linux\n" "normally goes into the kernel itself---which is not only a robustness issue,\n" @@ -9178,7 +9299,7 @@ msgid "" "user-space processes." msgstr "" -#: gnu/packages/linux.scm:3358 +#: gnu/packages/linux.scm:3400 msgid "" "UnionFS-FUSE is a flexible union file system implementation in user\n" "space, using the FUSE library. Mounting a union file system allows you to\n" @@ -9186,7 +9307,7 @@ msgid "" "UnionFS-FUSE additionally supports copy-on-write." msgstr "" -#: gnu/packages/linux.scm:3437 +#: gnu/packages/linux.scm:3479 msgid "" "This is a file system client based on the SSH File Transfer Protocol.\n" "Since most SSH servers already support this protocol it is very easy to set\n" @@ -9194,7 +9315,7 @@ msgid "" "file system is as easy as logging into the server with an SSH client." msgstr "" -#: gnu/packages/linux.scm:3464 +#: gnu/packages/linux.scm:3506 msgid "" "archivemount is a FUSE-based file system for Unix variants,\n" "including Linux. Its purpose is to mount archives (i.e. tar, tar.gz, etc.) to a\n" @@ -9203,7 +9324,7 @@ msgid "" "compressed, transparent to other programs, without decompressing them." msgstr "" -#: gnu/packages/linux.scm:3495 +#: gnu/packages/linux.scm:3537 msgid "" "NUMA stands for Non-Uniform Memory Access, in other words a system whose\n" "memory is not all in one place. The @command{numactl} program allows you to\n" @@ -9216,26 +9337,26 @@ msgid "" "NUMA performance on your system." msgstr "" -#: gnu/packages/linux.scm:3533 +#: gnu/packages/linux.scm:3575 msgid "" "Kbd-neo provides the Neo2 keyboard layout for use with\n" "@command{loadkeys(1)} from @code{kbd(4)}." msgstr "" -#: gnu/packages/linux.scm:3599 +#: gnu/packages/linux.scm:3641 msgid "" "This package contains keytable files and keyboard utilities compatible\n" "for systems using the Linux kernel. This includes commands such as\n" "@code{loadkeys}, @code{setfont}, @code{kbdinfo}, and @code{chvt}." msgstr "" -#: gnu/packages/linux.scm:3662 +#: gnu/packages/linux.scm:3704 msgid "" "The inotify-tools packages provides a C library and command-line tools\n" "to use Linux' inotify mechanism, which allows file accesses to be monitored." msgstr "" -#: gnu/packages/linux.scm:3714 +#: gnu/packages/linux.scm:3756 msgid "" "Kmod is a set of tools to handle common tasks with Linux\n" "kernel modules like insert, remove, list, check properties, resolve\n" @@ -9246,21 +9367,21 @@ msgid "" "from the module-init-tools project." msgstr "" -#: gnu/packages/linux.scm:3769 +#: gnu/packages/linux.scm:3812 msgid "" "Early OOM is a minimalist out of memory (OOM) daemon that\n" "runs in user space and provides a more responsive and configurable alternative\n" "to the in-kernel OOM killer." msgstr "" -#: gnu/packages/linux.scm:3867 +#: gnu/packages/linux.scm:3892 msgid "" "Udev is a daemon which dynamically creates and removes\n" "device nodes from /dev/, handles hotplug events and loads drivers at boot\n" "time." msgstr "" -#: gnu/packages/linux.scm:3897 +#: gnu/packages/linux.scm:3922 msgid "" "Python-evdev provides bindings to the generic input event interface in\n" "Linux. The @code{evdev} interface serves the purpose of passing events\n" @@ -9272,7 +9393,7 @@ msgid "" "devices that can inject events directly into the input subsystem." msgstr "" -#: gnu/packages/linux.scm:3930 +#: gnu/packages/linux.scm:3955 msgid "" "Interception Tools provides a composable infrastructure on top of\n" "@code{libudev} and @code{libevdev}. The following utilities are provided:\n" @@ -9285,33 +9406,33 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/linux.scm:3979 +#: gnu/packages/linux.scm:4004 msgid "" "Dual Function Keys is a plugin for @code{interception-tools} that allows\n" "one to send arbitrary keycodes when a given key is tapped or held." msgstr "" -#: gnu/packages/linux.scm:4056 +#: gnu/packages/linux.scm:4081 msgid "" "LVM2 is the logical volume management tool set for Linux-based systems.\n" "This package includes the user-space libraries and tools, including the device\n" "mapper. Kernel components are part of Linux-libre." msgstr "" -#: gnu/packages/linux.scm:4122 +#: gnu/packages/linux.scm:4147 msgid "" "A suite of tools for manipulating the metadata of the\n" "dm-thin, dm-cache and dm-era device-mapper targets." msgstr "" -#: gnu/packages/linux.scm:4144 +#: gnu/packages/linux.scm:4169 msgid "" "This package provides an advanced monitor of critical system\n" "resources, supervises the heartbeat of processes, records deadline\n" "transgressions, and initiates a controlled reset if needed." msgstr "" -#: gnu/packages/linux.scm:4189 +#: gnu/packages/linux.scm:4214 msgid "" "Wireless Tools are used to manipulate the now-deprecated\n" "Linux Wireless Extensions; consider using @code{iw} instead. The Wireless\n" @@ -9320,35 +9441,35 @@ msgid "" "interface." msgstr "" -#: gnu/packages/linux.scm:4280 +#: gnu/packages/linux.scm:4305 msgid "" "The Central Regulatory Domain Agent (CRDA) acts as the udev helper for\n" "communication between the kernel Linux and user space for regulatory\n" "compliance." msgstr "" -#: gnu/packages/linux.scm:4350 +#: gnu/packages/linux.scm:4375 msgid "" "This package contains the wireless regulatory database for the Central\n" "Regulatory Database Agent (CRDA). The database contains information on\n" "country-specific regulations for the wireless spectrum." msgstr "" -#: gnu/packages/linux.scm:4424 +#: gnu/packages/linux.scm:4449 msgid "" "Lm-sensors is a hardware health monitoring package for Linux. It allows\n" "you to access information from temperature, voltage, and fan speed sensors.\n" "It works with most newer systems." msgstr "" -#: gnu/packages/linux.scm:4444 +#: gnu/packages/linux.scm:4469 msgid "" "@command{iucode_tool} is a utility to work with microcode packages for\n" "Intel processors. It can convert between formats, extract specific versions,\n" "create a firmware image suitable for the Linux kernel, and more." msgstr "" -#: gnu/packages/linux.scm:4475 +#: gnu/packages/linux.scm:4501 msgid "" "The i2c-tools package contains a heterogeneous set of I2C tools for\n" "Linux: a bus probing tool, a chip dumper, register-level SMBus access helpers,\n" @@ -9356,14 +9477,14 @@ msgid "" "SMBus access." msgstr "" -#: gnu/packages/linux.scm:4514 +#: gnu/packages/linux.scm:4540 msgid "" "Xsensors reads data from the libsensors library regarding hardware\n" "health such as temperature, voltage and fan speed and displays the information\n" "in a digital read-out." msgstr "" -#: gnu/packages/linux.scm:4568 +#: gnu/packages/linux.scm:4600 msgid "" "perf is a tool suite for profiling using hardware performance counters,\n" "with support in the Linux kernel. perf can instrument CPU performance\n" @@ -9372,7 +9493,7 @@ msgid "" "particular the @code{perf} command." msgstr "" -#: gnu/packages/linux.scm:4593 +#: gnu/packages/linux.scm:4625 msgid "" "pflask is a simple tool for creating Linux namespace\n" "containers. It can be used for running a command or even booting an OS inside\n" @@ -9381,7 +9502,7 @@ msgid "" "thanks to the use of namespaces." msgstr "" -#: gnu/packages/linux.scm:4678 +#: gnu/packages/linux.scm:4710 msgid "" "Singularity is a container platform supporting a number of\n" "container image formats. It can build SquashFS container images or import\n" @@ -9389,7 +9510,7 @@ msgid "" "isolation or root privileges." msgstr "" -#: gnu/packages/linux.scm:4711 +#: gnu/packages/linux.scm:4742 msgid "" "@command{hdparm} is a command-line utility to control ATA controllers and\n" "disk drives. It can increase performance and/or reliability by careful tuning\n" @@ -9403,21 +9524,21 @@ msgid "" "Translation (@dfn{SAT}) are also supported." msgstr "" -#: gnu/packages/linux.scm:4750 +#: gnu/packages/linux.scm:4782 msgid "" "Nvme-cli is a utility to provide standards compliant tooling\n" "for NVM-Express drives. It was made specifically for Linux as it relies on the\n" "IOCTLs defined by the mainline kernel driver." msgstr "" -#: gnu/packages/linux.scm:4776 +#: gnu/packages/linux.scm:4808 msgid "" "rfkill is a simple tool for accessing the rfkill device interface,\n" "which is used to enable and disable wireless networking devices, typically\n" "WLAN, Bluetooth and mobile broadband." msgstr "" -#: gnu/packages/linux.scm:4798 +#: gnu/packages/linux.scm:4830 msgid "" "@code{acpi} attempts to replicate the functionality of the\n" "\"old\" @code{apm} command on ACPI systems, including battery and thermal\n" @@ -9425,7 +9546,7 @@ msgid "" "about ACPI devices." msgstr "" -#: gnu/packages/linux.scm:4819 +#: gnu/packages/linux.scm:4851 msgid "" "acpid is designed to notify user-space programs of Advanced\n" "Configuration and Power Interface (ACPI) events. acpid should be started\n" @@ -9434,34 +9555,34 @@ msgid "" "specified in /etc/acpi/events and execute the rules that match the event." msgstr "" -#: gnu/packages/linux.scm:4843 +#: gnu/packages/linux.scm:4875 msgid "" "These are a set of utilities built upon sysfs, a virtual file system in\n" "Linux kernel versions 2.5+ that exposes a system's device tree. The package\n" "also contains the libsysfs library." msgstr "" -#: gnu/packages/linux.scm:4886 +#: gnu/packages/linux.scm:4918 msgid "" "The cpufrequtils suite contains utilities to retrieve CPU frequency\n" "information, and set the CPU frequency if supported, using the cpufreq\n" "capabilities of the Linux kernel." msgstr "" -#: gnu/packages/linux.scm:4922 +#: gnu/packages/linux.scm:4954 msgid "" "This package provides many of the missing pieces in GNU\n" "libc. Most notably the string functions: strlcpy(3), strlcat(3) and the *BSD\n" "sys/queue.h and sys/tree.h API's." msgstr "" -#: gnu/packages/linux.scm:4945 +#: gnu/packages/linux.scm:4977 msgid "" "This package provides small event loop that wraps the\n" "epoll family of APIs." msgstr "" -#: gnu/packages/linux.scm:4966 +#: gnu/packages/linux.scm:4998 msgid "" "Libraw1394 is the only supported interface to the kernel side raw1394 of\n" "the Linux IEEE-1394 subsystem, which provides direct access to the connected\n" @@ -9470,26 +9591,26 @@ msgid "" "protocol in question." msgstr "" -#: gnu/packages/linux.scm:4992 +#: gnu/packages/linux.scm:5024 msgid "" "Libavc1394 is a programming interface to the AV/C specification from\n" "the 1394 Trade Association. AV/C stands for Audio/Video Control." msgstr "" -#: gnu/packages/linux.scm:5016 +#: gnu/packages/linux.scm:5048 msgid "" "The libiec61883 library provides a higher level API for streaming DV,\n" "MPEG-2 and audio over Linux IEEE 1394." msgstr "" -#: gnu/packages/linux.scm:5067 +#: gnu/packages/linux.scm:5099 msgid "" "mdadm is a tool for managing Linux Software RAID arrays. It can create,\n" "assemble, report on, and monitor arrays. It can also move spares between raid\n" "arrays when needed." msgstr "" -#: gnu/packages/linux.scm:5199 +#: gnu/packages/linux.scm:5231 msgid "" "This package provides the following binaries to drive the\n" "Linux Device Mapper multipathing driver:\n" @@ -9502,66 +9623,66 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:5244 +#: gnu/packages/linux.scm:5288 msgid "" "This library enables userspace to use Linux kernel asynchronous I/O\n" "system calls, important for the performance of databases and other advanced\n" "applications." msgstr "" -#: gnu/packages/linux.scm:5287 +#: gnu/packages/linux.scm:5331 msgid "" "Blktrace is a block layer IO tracing mechanism which provides\n" "detailed information about request queue operations to user space. It extracts\n" "event traces from the kernel (via the relaying through the debug file system)." msgstr "" -#: gnu/packages/linux.scm:5312 +#: gnu/packages/linux.scm:5356 msgid "" "The SBC is a digital audio encoder and decoder used to transfer data to\n" "Bluetooth audio output devices like headphones or loudspeakers." msgstr "" -#: gnu/packages/linux.scm:5379 +#: gnu/packages/linux.scm:5423 msgid "" "BlueZ provides support for the core Bluetooth layers and protocols. It\n" "is flexible, efficient and uses a modular implementation." msgstr "" -#: gnu/packages/linux.scm:5403 +#: gnu/packages/linux.scm:5447 msgid "" "This package provides a FUSE-based file system that provides read and\n" "write access to exFAT devices." msgstr "" -#: gnu/packages/linux.scm:5426 +#: gnu/packages/linux.scm:5470 msgid "" "FuseISO is a FUSE module to mount ISO file system images (.iso, .nrg,\n" ".bin, .mdf and .img files). It supports plain ISO9660 Level 1 and 2, Rock\n" "Ridge, Joliet, and zisofs." msgstr "" -#: gnu/packages/linux.scm:5480 +#: gnu/packages/linux.scm:5524 msgid "" "The GPM (general-purpose mouse) daemon is a mouse server for\n" "applications running on the Linux console. It allows users to select items\n" "and copy/paste text in the console and in xterm." msgstr "" -#: gnu/packages/linux.scm:5551 +#: gnu/packages/linux.scm:5595 msgid "" "Btrfs is a @dfn{copy-on-write} (CoW) file system for Linux\n" "aimed at implementing advanced features while focusing on fault tolerance,\n" "repair and easy administration." msgstr "" -#: gnu/packages/linux.scm:5585 +#: gnu/packages/linux.scm:5629 msgid "" "This package provides the statically-linked @command{btrfs}\n" "from the btrfs-progs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5617 +#: gnu/packages/linux.scm:5661 msgid "" "Cramfs is a Linux file system designed to be simple, small,\n" "and to compress things well. It is used on a number of embedded systems and\n" @@ -9569,7 +9690,7 @@ msgid "" "blocks and random block placement." msgstr "" -#: gnu/packages/linux.scm:5652 +#: gnu/packages/linux.scm:5696 msgid "" "@command{compsize} takes a list of files (given as\n" "arguments) on a Btrfs file system and measures used compression types and\n" @@ -9586,20 +9707,20 @@ msgid "" "obviously it can be shared with files outside our set)." msgstr "" -#: gnu/packages/linux.scm:5700 +#: gnu/packages/linux.scm:5744 msgid "" "F2FS, the Flash-Friendly File System, is a modern file system\n" "designed to be fast and durable on flash devices such as solid-state\n" "disks and SD cards. This package provides the userland utilities." msgstr "" -#: gnu/packages/linux.scm:5790 +#: gnu/packages/linux.scm:5834 msgid "" "This package provides statically-linked fsck.f2fs command taken\n" "from the f2fs-tools package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5821 +#: gnu/packages/linux.scm:5865 msgid "" "Prevents shock damage to the internal spinning hard drive(s) of some\n" "HP and Dell laptops. When sudden movement is detected, all input/output\n" @@ -9609,7 +9730,7 @@ msgid "" "feature, and a laptop with an accelerometer. It has no effect on SSDs." msgstr "" -#: gnu/packages/linux.scm:5879 +#: gnu/packages/linux.scm:5923 msgid "" "Thinkfan is a simple fan control program. It reads temperatures,\n" "checks them against configured limits and switches to appropriate (also\n" @@ -9618,7 +9739,7 @@ msgid "" "from userspace." msgstr "" -#: gnu/packages/linux.scm:5935 +#: gnu/packages/linux.scm:5979 msgid "" "Tpacpi-bat is a command-line interface to control battery charging on\n" "@uref{https://github.com/teleshoes/tpacpi-bat/wiki/Supported-Hardware, Lenovo\n" @@ -9633,7 +9754,7 @@ msgid "" "supported." msgstr "" -#: gnu/packages/linux.scm:5979 +#: gnu/packages/linux.scm:6023 msgid "" "Tmon is a tool to interact with the complex thermal subsystem of the\n" "kernel Linux. It helps visualize thermal relationships and real-time thermal\n" @@ -9650,7 +9771,7 @@ msgid "" "by hand is no trivial task: @command{tmon} aims to make it understandable." msgstr "" -#: gnu/packages/linux.scm:6021 +#: gnu/packages/linux.scm:6065 msgid "" "Turbostat reports x86 processor topology, frequency, idle power state\n" "statistics, temperature, and power consumption. Some information is unavailable\n" @@ -9665,20 +9786,20 @@ msgid "" "invocations of itself." msgstr "" -#: gnu/packages/linux.scm:6080 +#: gnu/packages/linux.scm:6124 msgid "" "NTFS-3G provides read-write access to NTFS file systems, which are\n" "commonly found on Microsoft Windows. It is implemented as a FUSE file system.\n" "The package provides additional NTFS tools." msgstr "" -#: gnu/packages/linux.scm:6127 +#: gnu/packages/linux.scm:6171 msgid "" "This package provides a statically linked @command{ntfsfix} taken\n" "from the ntfs-3g package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:6174 +#: gnu/packages/linux.scm:6218 msgid "" "This package provides userspace components for the InfiniBand\n" "subsystem of the Linux kernel. Specifically it contains userspace\n" @@ -9698,7 +9819,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6228 +#: gnu/packages/linux.scm:6272 msgid "" "This is a collection of tests written over uverbs intended for\n" "use as a performance micro-benchmark. The tests may be used for hardware or\n" @@ -9714,20 +9835,20 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6270 +#: gnu/packages/linux.scm:6314 msgid "" "Monitor a hardware random number generator, and supply entropy\n" "from that to the system kernel's @file{/dev/random} machinery." msgstr "" -#: gnu/packages/linux.scm:6312 +#: gnu/packages/linux.scm:6356 msgid "" "cpupower is a set of user-space tools that use the cpufreq feature of the\n" "Linux kernel to retrieve and control processor features related to power saving,\n" "such as frequency and voltage scaling." msgstr "" -#: gnu/packages/linux.scm:6344 +#: gnu/packages/linux.scm:6388 msgid "" "@command{x86_energy_perf_policy} displays and updates energy-performance\n" "policy settings specific to Intel Architecture Processors. Settings are\n" @@ -9735,7 +9856,7 @@ msgid "" "cpufreq sub-system is enabled or not." msgstr "" -#: gnu/packages/linux.scm:6370 +#: gnu/packages/linux.scm:6414 msgid "" "haveged generates an unpredictable stream of random numbers for use by\n" "Linux's @file{/dev/random} and @file{/dev/urandom} devices. The kernel's\n" @@ -9753,7 +9874,7 @@ msgid "" "not as a replacement for it." msgstr "" -#: gnu/packages/linux.scm:6456 +#: gnu/packages/linux.scm:6500 msgid "" "eCryptfs is a POSIX-compliant stacked cryptographic file system for Linux.\n" "Each file's cryptographic meta-data is stored inside the file itself, along\n" @@ -9763,7 +9884,7 @@ msgid "" "2.6.19. This package contains the userland utilities to manage it." msgstr "" -#: gnu/packages/linux.scm:6488 +#: gnu/packages/linux.scm:6532 msgid "" "Libnfsidmap is a library holding mulitiple methods of\n" "mapping names to ids and visa versa, mainly for NFSv4. It provides an\n" @@ -9771,13 +9892,13 @@ msgid "" "the default @code{nsswitch} and the experimental @code{umich_ldap}." msgstr "" -#: gnu/packages/linux.scm:6524 +#: gnu/packages/linux.scm:6568 msgid "" "Tools for loading and managing Linux kernel modules, such as\n" "@code{modprobe}, @code{insmod}, @code{lsmod}, and more." msgstr "" -#: gnu/packages/linux.scm:6565 +#: gnu/packages/linux.scm:6609 msgid "" "The mcelog daemon logs memory, I/O, CPU, and other hardware errors on x86\n" "systems running the kernel Linux. It can also perform user-defined tasks, such\n" @@ -9785,13 +9906,13 @@ msgid "" "exceeded." msgstr "" -#: gnu/packages/linux.scm:6596 +#: gnu/packages/linux.scm:6640 msgid "" "This package provides utilities for testing, partitioning, etc\n" "of flash storage." msgstr "" -#: gnu/packages/linux.scm:6628 +#: gnu/packages/linux.scm:6672 msgid "" "The libseccomp library provides an easy to use, platform\n" "independent, interface to the Linux Kernel's syscall filtering mechanism. The\n" @@ -9801,7 +9922,7 @@ msgid "" "developers." msgstr "" -#: gnu/packages/linux.scm:6671 +#: gnu/packages/linux.scm:6715 msgid "" "RadeonTop monitors resource consumption on supported AMD\n" "Radeon Graphics Processing Units (GPUs), either in real time as bar graphs on\n" @@ -9811,13 +9932,13 @@ msgid "" "under OpenGL graphics workloads." msgstr "" -#: gnu/packages/linux.scm:6718 +#: gnu/packages/linux.scm:6762 msgid "" "This package provides a library and a command line\n" "interface to the variable facility of UEFI boot firmware." msgstr "" -#: gnu/packages/linux.scm:6755 +#: gnu/packages/linux.scm:6799 msgid "" "@code{efibootmgr} is a user-space application to modify the Intel\n" "Extensible Firmware Interface (EFI) Boot Manager. This application can\n" @@ -9825,7 +9946,7 @@ msgid "" "running boot option, and more." msgstr "" -#: gnu/packages/linux.scm:6791 +#: gnu/packages/linux.scm:6835 msgid "" "The sysstat utilities are a collection of performance\n" "monitoring tools for Linux. These include @code{mpstat}, @code{iostat},\n" @@ -9833,7 +9954,7 @@ msgid "" "@code{sadf} and @code{sa}." msgstr "" -#: gnu/packages/linux.scm:6832 +#: gnu/packages/linux.scm:6876 msgid "" "Light is a program to send commands to screen backlight controllers\n" "under GNU/Linux. Features include:\n" @@ -9847,7 +9968,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/linux.scm:6880 +#: gnu/packages/linux.scm:6924 msgid "" "This program allows you read and control device brightness. Devices\n" "include backlight and LEDs. It can also preserve current brightness before\n" @@ -9857,7 +9978,7 @@ msgid "" "interface in sysfs, which can be accomplished with the included udev rules." msgstr "" -#: gnu/packages/linux.scm:7007 +#: gnu/packages/linux.scm:7048 msgid "" "TLP is a power management tool for Linux. It comes with\n" "a default configuration already optimized for battery life. Nevertheless,\n" @@ -9865,7 +9986,7 @@ msgid "" "every time the power supply source is changed." msgstr "" -#: gnu/packages/linux.scm:7073 +#: gnu/packages/linux.scm:7114 msgid "" "The Python scripts in this project generate a GTK-UI to change\n" "TLP configuration files easily. It aims to protect users from setting\n" @@ -9873,7 +9994,7 @@ msgid "" "configuration values." msgstr "" -#: gnu/packages/linux.scm:7099 +#: gnu/packages/linux.scm:7140 msgid "" "@command{lshw} (Hardware Lister) is a small tool to provide\n" "detailed information on the hardware configuration of the machine.\n" @@ -9883,7 +10004,7 @@ msgid "" "machines (PowerMac G4 is known to work)." msgstr "" -#: gnu/packages/linux.scm:7123 +#: gnu/packages/linux.scm:7164 msgid "" "Libmnl is a minimalistic user-space library oriented to\n" "Netlink developers. There are a lot of common tasks in parsing, validating,\n" @@ -9892,7 +10013,7 @@ msgid "" "re-use code and to avoid re-inventing the wheel." msgstr "" -#: gnu/packages/linux.scm:7148 +#: gnu/packages/linux.scm:7189 msgid "" "Libnftnl is a userspace library providing a low-level netlink\n" "programming interface to the in-kernel nf_tables subsystem. The library\n" @@ -9900,7 +10021,7 @@ msgid "" "used by nftables." msgstr "" -#: gnu/packages/linux.scm:7194 +#: gnu/packages/linux.scm:7235 msgid "" "nftables is the project that aims to replace the existing\n" "{ip,ip6,arp,eb}tables framework. Basically, this project provides a new packet\n" @@ -9910,7 +10031,7 @@ msgid "" "userspace queueing component and the logging subsystem." msgstr "" -#: gnu/packages/linux.scm:7336 +#: gnu/packages/linux.scm:7377 msgid "" "PRoot is a user-space implementation of @code{chroot}, @code{mount --bind},\n" "and @code{binfmt_misc}. This means that users don't need any privileges or\n" @@ -9923,7 +10044,7 @@ msgid "" "available in the kernel Linux." msgstr "" -#: gnu/packages/linux.scm:7399 +#: gnu/packages/linux.scm:7437 msgid "" "cpuid dumps detailed information about the CPU(s) gathered\n" "from the CPUID instruction, and also determines the exact model of CPU(s). It\n" @@ -9931,14 +10052,14 @@ msgid "" "NexGen, Rise, and SiS CPUs." msgstr "" -#: gnu/packages/linux.scm:7426 +#: gnu/packages/linux.scm:7464 msgid "" "jmtpfs uses FUSE (file system in userspace) to provide access\n" "to data over the Media Transfer Protocol (MTP). Unprivileged users can mount\n" "the MTP device as a file system." msgstr "" -#: gnu/packages/linux.scm:7453 +#: gnu/packages/linux.scm:7491 msgid "" "Procenv is a command-line tool that displays as much detail about\n" "itself and its environment as possible. It can be used as a test\n" @@ -9946,7 +10067,7 @@ msgid "" "comparing system environments." msgstr "" -#: gnu/packages/linux.scm:7482 +#: gnu/packages/linux.scm:7520 msgid "" "OpenFabrics Interfaces (OFI) is a framework focused on exporting fabric\n" "communication services to applications. OFI is best described as a collection\n" @@ -9960,7 +10081,7 @@ msgid "" "libraries, which are often integrated directly into libfabric." msgstr "" -#: gnu/packages/linux.scm:7544 +#: gnu/packages/linux.scm:7582 msgid "" "The PSM Messaging API, or PSM API, is Intel's low-level user-level\n" "communications interface for the True Scale family of products. PSM users are\n" @@ -9968,14 +10089,14 @@ msgid "" "interfaces in parallel environments." msgstr "" -#: gnu/packages/linux.scm:7587 +#: gnu/packages/linux.scm:7625 msgid "" "snapscreenshot saves a screenshot of one or more Linux text consoles as a\n" "Targa (@dfn{.tga}) image. It can be used by anyone with read access to the\n" "relevant @file{/dev/vcs*} file(s)." msgstr "" -#: gnu/packages/linux.scm:7641 +#: gnu/packages/linux.scm:7679 msgid "" "fbcat saves the contents of the Linux framebuffer (@file{/dev/fb*}), or\n" "a dump therof. It supports a wide range of drivers and pixel formats.\n" @@ -9987,14 +10108,14 @@ msgid "" "emulates the behaviour of Gunnar Monell's older fbgrab utility." msgstr "" -#: gnu/packages/linux.scm:7672 +#: gnu/packages/linux.scm:7710 msgid "" "Control groups is Linux kernel method for process resource\n" "restriction, permission handling and more. This package provides userspace\n" "interface to this kernel feature." msgstr "" -#: gnu/packages/linux.scm:7707 +#: gnu/packages/linux.scm:7745 msgid "" "mbpfan is a fan control daemon for Apple Macbooks. It uses input from\n" "the @code{coretemp} module and sets the fan speed using the @code{applesmc}\n" @@ -10002,7 +10123,7 @@ msgid "" "privileges." msgstr "" -#: gnu/packages/linux.scm:7751 +#: gnu/packages/linux.scm:7789 msgid "" "This package is low-level user-level Intel's communications interface.\n" "The PSM2 API is a high-performance vendor-specific protocol that provides a\n" @@ -10010,7 +10131,7 @@ msgid "" "high-speed networking devices." msgstr "" -#: gnu/packages/linux.scm:7794 +#: gnu/packages/linux.scm:7832 msgid "" "This package provides a library called libpfm4, which is used to develop\n" "monitoring tools exploiting the performance monitoring events such as those\n" @@ -10025,7 +10146,7 @@ msgid "" "introduced in Linux 2.6.31." msgstr "" -#: gnu/packages/linux.scm:7824 +#: gnu/packages/linux.scm:7862 msgid "" "@code{libnfnetlink} is the low-level library for netfilter related\n" "kernel/userspace communication. It provides a generic messaging\n" @@ -10034,7 +10155,7 @@ msgid "" "management tools in userspace." msgstr "" -#: gnu/packages/linux.scm:7851 +#: gnu/packages/linux.scm:7889 msgid "" "The netlink package provides a simple netlink library for\n" "Go. Netlink is the interface a user-space program in Linux uses to\n" @@ -10042,7 +10163,7 @@ msgid "" "IP addresses and routes, and configure IPsec." msgstr "" -#: gnu/packages/linux.scm:7891 +#: gnu/packages/linux.scm:7929 msgid "" "The inih (INI Not Invented Here) library is a simple .INI file\n" "parser written in C. It's only a couple of pages of code, and it was designed to\n" @@ -10051,19 +10172,19 @@ msgid "" "822-style multi-line syntax and name: value entries." msgstr "" -#: gnu/packages/linux.scm:7942 +#: gnu/packages/linux.scm:7980 msgid "" "This package provides commands to create and check XFS\n" "file systems." msgstr "" -#: gnu/packages/linux.scm:7998 +#: gnu/packages/linux.scm:8036 msgid "" "This package provides a statically linked @command{xfs_repair} taken\n" "from the xfsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:8034 +#: gnu/packages/linux.scm:8072 msgid "" "This package provides a program to generate an ext2\n" "file system as a normal (non-root) user. It does not require you to mount\n" @@ -10071,7 +10192,7 @@ msgid "" "the superuser to make device nodes." msgstr "" -#: gnu/packages/linux.scm:8129 +#: gnu/packages/linux.scm:8167 msgid "" "@command{fakeroot} runs a command in an environment where it appears to\n" "have root privileges for file manipulation. This is useful for allowing users\n" @@ -10084,7 +10205,7 @@ msgid "" "without using the archiver." msgstr "" -#: gnu/packages/linux.scm:8169 +#: gnu/packages/linux.scm:8207 msgid "" "@command{fakechroot} runs a command in an environment were is additional\n" "possibility to use @code{chroot} command without root privileges. This is\n" @@ -10095,13 +10216,13 @@ msgid "" "set as @code{LD_PRELOAD} to override the C library file system functions." msgstr "" -#: gnu/packages/linux.scm:8215 +#: gnu/packages/linux.scm:8253 msgid "" "inputattach dispatches input events from several device\n" "types and interfaces and translates so that the X server can use them." msgstr "" -#: gnu/packages/linux.scm:8251 +#: gnu/packages/linux.scm:8289 msgid "" "PipeWire is a project that aims to greatly improve handling of audio and\n" "video under Linux. It aims to support the usecases currently handled by both\n" @@ -10113,7 +10234,7 @@ msgid "" "of Linux application development." msgstr "" -#: gnu/packages/linux.scm:8318 +#: gnu/packages/linux.scm:8356 msgid "" "WirePlumber is a modular session / policy manager for\n" "PipeWire and a GObject-based high-level library that wraps PipeWire's API,\n" @@ -10121,7 +10242,7 @@ msgid "" "tools for managing PipeWire." msgstr "" -#: gnu/packages/linux.scm:8357 +#: gnu/packages/linux.scm:8395 msgid "" "The Embedded Linux* Library (ELL) provides core, low-level\n" "functionality for system daemons. It typically has no dependencies other than\n" @@ -10130,7 +10251,7 @@ msgid "" "platforms, it is not limited to resource-constrained systems." msgstr "" -#: gnu/packages/linux.scm:8386 +#: gnu/packages/linux.scm:8424 msgid "" "This package provides the @code{kexec} program and ancillary\n" "utilities. Using @code{kexec}, it is possible to boot directly into a new\n" @@ -10138,7 +10259,7 @@ msgid "" "system boot process." msgstr "" -#: gnu/packages/linux.scm:8419 +#: gnu/packages/linux.scm:8457 msgid "" "@code{cachefilesd} is a userspace daemon that manages the\n" "cache data store that is used by network file systems such as @code{AFS} and\n" @@ -10146,14 +10267,14 @@ msgid "" "persistent over reboots." msgstr "" -#: gnu/packages/linux.scm:8463 +#: gnu/packages/linux.scm:8501 msgid "" "Libbpf supports building BPF CO-RE-enabled applications, which, in\n" "contrast to BCC, do not require the Clang/LLVM runtime or linux kernel\n" "headers." msgstr "" -#: gnu/packages/linux.scm:8541 +#: gnu/packages/linux.scm:8579 msgid "" "BCC is a toolkit for creating efficient kernel tracing and manipulation\n" "programs, and includes several useful tools and examples. It makes use of\n" @@ -10162,7 +10283,7 @@ msgid "" "and above." msgstr "" -#: gnu/packages/linux.scm:8577 +#: gnu/packages/linux.scm:8615 msgid "" "bpftrace is a high-level tracing language for Linux enhanced Berkeley\n" "Packet Filter (eBPF) available in recent Linux kernels (4.x). bpftrace uses\n" @@ -10174,14 +10295,14 @@ msgid "" "created by Alastair Robertson." msgstr "" -#: gnu/packages/linux.scm:8609 +#: gnu/packages/linux.scm:8647 msgid "" "This package provides a Linux kernel module that will\n" "provide a serial device @code{/dev/ttyebus} with almost no latency upon\n" "receiving. It is dedicated to the PL011 UART of the Raspberry Pi." msgstr "" -#: gnu/packages/linux.scm:8635 +#: gnu/packages/linux.scm:8673 msgid "" "IP sets are a framework inside the Linux 2.4.x and 2.6.x kernel which\n" "can be administered by the ipset utility. Depending on the type,\n" @@ -10202,7 +10323,7 @@ msgid "" "then IP sets may be the proper tool for you." msgstr "" -#: gnu/packages/linux.scm:8682 +#: gnu/packages/linux.scm:8720 msgid "" "This is the io_uring library, liburing. liburing provides\n" "helpers to setup and teardown io_uring instances, and also a simplified\n" @@ -10210,14 +10331,14 @@ msgid "" "kernel side implementation." msgstr "" -#: gnu/packages/linux.scm:8710 +#: gnu/packages/linux.scm:8748 msgid "" "@acronym{EROFS, The Enhanced Read-Only File System} is a compressed,\n" "read-only file system optimized for resource-scarce devices. This package\n" "provides user-space tools for creating EROFS file systems." msgstr "" -#: gnu/packages/linux.scm:8754 +#: gnu/packages/linux.scm:8792 msgid "" "The @code{rasdaemon} daemon monitors platform @acronym{RAS, Reliability\n" "Availability and Serviceability} reports from Linux kernel trace events.\n" @@ -10225,7 +10346,7 @@ msgid "" "through standard log mechanisms like syslog." msgstr "" -#: gnu/packages/linux.scm:8788 +#: gnu/packages/linux.scm:8826 msgid "" "This package provides a C library with C++/Python bindings and\n" "command-line tools for interacting with GPIO devices that avoids the usage of\n" @@ -10251,33 +10372,33 @@ msgid "" "beginning." msgstr "" -#: gnu/packages/messaging.scm:181 +#: gnu/packages/messaging.scm:183 msgid "" "OMEMO-wget is a tool to handle cryptographic URLs, generated\n" "by @acronym{OMEMO, OMEMO Multi-End Message and Object Encryption}, during\n" "XMPP-based sessions." msgstr "" -#: gnu/packages/messaging.scm:237 +#: gnu/packages/messaging.scm:239 msgid "" "Psi is a capable XMPP client aimed at experienced users.\n" "Its design goals are simplicity and stability." msgstr "" -#: gnu/packages/messaging.scm:295 +#: gnu/packages/messaging.scm:297 msgid "" "GNT is an ncurses toolkit for creating text-mode graphical\n" "user interfaces in a fast and easy way. It is based on GLib and ncurses." msgstr "" -#: gnu/packages/messaging.scm:346 +#: gnu/packages/messaging.scm:348 msgid "" "LibGadu is library for handling Gadu-Gadu instant messenger\n" "protocol. The library is written in C and aims to be operating system and\n" "environment independent." msgstr "" -#: gnu/packages/messaging.scm:381 +#: gnu/packages/messaging.scm:383 msgid "" "SILC (Secure Internet Live Conferencing) is a modern and secure\n" "conferencing protocol. It provides all the common conferencing services like\n" @@ -10285,14 +10406,14 @@ msgid "" "conferencing." msgstr "" -#: gnu/packages/messaging.scm:427 +#: gnu/packages/messaging.scm:429 msgid "" "QXmpp is a XMPP client and server library written in C++ and uses the Qt\n" "framework. It builds XMPP clients complying with the XMPP Compliance Suites\n" "2021 for IM and Advanced Mobile." msgstr "" -#: gnu/packages/messaging.scm:454 +#: gnu/packages/messaging.scm:456 msgid "" "Meanwhile is a library for connecting to a LIM (Lotus Instant\n" "Messaging, formerly Lotus Sametime, formerly VPBuddy) community. It uses a\n" @@ -10300,7 +10421,7 @@ msgid "" "TCP sessions from existing clients." msgstr "" -#: gnu/packages/messaging.scm:500 +#: gnu/packages/messaging.scm:502 msgid "" "Poezio is a free console XMPP client (the protocol on which\n" "the Jabber IM network is built).\n" @@ -10313,7 +10434,7 @@ msgid "" "powerful, standard and open protocol." msgstr "" -#: gnu/packages/messaging.scm:533 +#: gnu/packages/messaging.scm:535 msgid "" "OTR allows you to have private conversations over instant\n" "messaging by providing: (1) Encryption: No one else can read your instant\n" @@ -10326,7 +10447,7 @@ msgid "" "your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:572 +#: gnu/packages/messaging.scm:574 msgid "" "libsignal-protocol-c is an implementation of a ratcheting\n" "forward secrecy protocol that works in synchronous and asynchronous\n" @@ -10334,20 +10455,20 @@ msgid "" "end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:609 +#: gnu/packages/messaging.scm:611 msgid "" "This is a client library for @code{libsignal-protocol-c}.\n" "It implements the necessary interfaces using @code{libgcrypt} and\n" "@code{sqlite}." msgstr "" -#: gnu/packages/messaging.scm:641 +#: gnu/packages/messaging.scm:643 msgid "" "This library implements @acronym{OMEMO, OMEMO Multi-End\n" "Message and Object Encryption} of XMPP (XEP-0384) in C." msgstr "" -#: gnu/packages/messaging.scm:681 +#: gnu/packages/messaging.scm:683 msgid "" "BitlBee brings IM (instant messaging) to IRC clients, for\n" "people who have an IRC client running all the time and don't want to run an\n" @@ -10357,20 +10478,20 @@ msgid "" "identi.ca and status.net)." msgstr "" -#: gnu/packages/messaging.scm:748 +#: gnu/packages/messaging.scm:750 msgid "" "Bitlbee-discord is a plugin for Bitlbee which provides\n" "access to servers running the Discord protocol." msgstr "" -#: gnu/packages/messaging.scm:794 +#: gnu/packages/messaging.scm:796 msgid "" "Purple-Mattermost is a plug-in for Purple, the instant messaging library\n" "used by Pidgin and Bitlbee, among others, to access\n" "@uref{https://mattermost.com/, Mattermost} servers." msgstr "" -#: gnu/packages/messaging.scm:852 +#: gnu/packages/messaging.scm:854 msgid "" "HexChat lets you connect to multiple IRC networks at once. The main\n" "window shows the list of currently connected networks and their channels, the\n" @@ -10379,7 +10500,7 @@ msgid "" "dictionaries. HexChat can be extended with multiple addons." msgstr "" -#: gnu/packages/messaging.scm:917 +#: gnu/packages/messaging.scm:919 msgid "" "ngIRCd is a lightweight @dfn{Internet Relay Chat} (IRC) server for small\n" "or private networks. It is easy to configure, can cope with dynamic IP\n" @@ -10387,13 +10508,13 @@ msgid "" "authentication." msgstr "" -#: gnu/packages/messaging.scm:1024 +#: gnu/packages/messaging.scm:1026 msgid "" "Pidgin is a modular instant messaging client that supports\n" "many popular chat protocols." msgstr "" -#: gnu/packages/messaging.scm:1064 +#: gnu/packages/messaging.scm:1066 msgid "" "Pidgin-OTR is a plugin that adds support for OTR to the Pidgin\n" "instant messaging client. OTR (Off-the-Record) Messaging allows you to have\n" @@ -10407,7 +10528,7 @@ msgid "" "control of your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:1118 +#: gnu/packages/messaging.scm:1120 msgid "" "ZNC is an @dfn{IRC network bouncer} or @dfn{BNC}. It can\n" "detach the client from the actual IRC server, and also from selected channels.\n" @@ -10415,41 +10536,41 @@ msgid "" "simultaneously and therefore appear under the same nickname on IRC." msgstr "" -#: gnu/packages/messaging.scm:1147 +#: gnu/packages/messaging.scm:1149 msgid "" "Python-nbxmpp is a Python library that provides a way for\n" "Python applications to use the XMPP network. This library was initially a fork\n" "of xmpppy." msgstr "" -#: gnu/packages/messaging.scm:1274 +#: gnu/packages/messaging.scm:1276 msgid "" "Gajim aims to be an easy to use and fully-featured XMPP chat\n" "client. It is extensible via plugins, supports end-to-end encryption (OMEMO\n" "and OpenPGP) and available in 29 languages." msgstr "" -#: gnu/packages/messaging.scm:1309 +#: gnu/packages/messaging.scm:1311 msgid "" "Gajim-OMEMO is a plugin that adds support for the OMEMO\n" "Encryption to Gajim. OMEMO is an XMPP Extension Protocol (XEP) for secure\n" "multi-client end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:1344 +#: gnu/packages/messaging.scm:1346 msgid "" "Gajim-OpenPGP is a plugin that adds support for the OpenPGP\n" "Encryption to Gajim." msgstr "" -#: gnu/packages/messaging.scm:1418 +#: gnu/packages/messaging.scm:1420 msgid "" "Dino is a chat client for the desktop. It focuses on providing\n" "a minimal yet reliable Jabber/XMPP experience and having encryption enabled by\n" "default." msgstr "" -#: gnu/packages/messaging.scm:1505 +#: gnu/packages/messaging.scm:1507 msgid "" "Prosody is a modern XMPP communication server. It aims to\n" "be easy to set up and configure, and efficient with system resources.\n" @@ -10458,43 +10579,43 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/messaging.scm:1540 +#: gnu/packages/messaging.scm:1542 msgid "" "This module implements XEP-0363: it allows clients to\n" "upload files over HTTP." msgstr "" -#: gnu/packages/messaging.scm:1572 +#: gnu/packages/messaging.scm:1574 msgid "" "This module implements XEP-0198: when supported by both\n" "the client and server, it can allow clients to resume a disconnected session,\n" "and prevent message loss." msgstr "" -#: gnu/packages/messaging.scm:1601 +#: gnu/packages/messaging.scm:1603 msgid "C library implementation of the Tox encrypted messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1633 +#: gnu/packages/messaging.scm:1635 msgid "" "Official fork of the C library implementation of the Tox encrypted\n" "messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1687 +#: gnu/packages/messaging.scm:1689 msgid "" "uTox is a lightweight Tox client. Tox is a distributed and secure\n" "instant messenger with audio and video chat capabilities." msgstr "" -#: gnu/packages/messaging.scm:1750 +#: gnu/packages/messaging.scm:1752 msgid "" "qTox is a Tox client that follows the Tox design\n" "guidelines. It provides an easy to use application that allows you to\n" "connect with friends and family without anyone else listening in." msgstr "" -#: gnu/packages/messaging.scm:1772 +#: gnu/packages/messaging.scm:1774 msgid "" "Ytalk is a replacement for the BSD talk program. Its main\n" "advantage is the ability to communicate with any arbitrary number of users at\n" @@ -10502,7 +10623,7 @@ msgid "" "with several different talk daemons at the same time." msgstr "" -#: gnu/packages/messaging.scm:1796 +#: gnu/packages/messaging.scm:1798 msgid "" "gloox is a full-featured Jabber/XMPP client library,\n" "written in ANSI C++. It makes writing spec-compliant clients easy\n" @@ -10510,7 +10631,7 @@ msgid "" "into existing applications." msgstr "" -#: gnu/packages/messaging.scm:1866 +#: gnu/packages/messaging.scm:1868 msgid "" "@code{Net::PSYC} with support for TCP, UDP, Event.pm, @code{IO::Select} and\n" "Gtk2 event loops. This package includes 12 applications and additional scripts:\n" @@ -10518,14 +10639,14 @@ msgid "" "for @uref{https://torproject.org,tor} router) and many more." msgstr "" -#: gnu/packages/messaging.scm:1907 +#: gnu/packages/messaging.scm:1909 msgid "" "@code{libpsyc} is a PSYC library in C which implements\n" "core aspects of PSYC, useful for all kinds of clients and servers\n" "including psyced." msgstr "" -#: gnu/packages/messaging.scm:1949 +#: gnu/packages/messaging.scm:1951 msgid "" "Loudmouth is a lightweight and easy-to-use C library for programming\n" "with the XMPP (formerly known as Jabber) protocol. It is designed to be\n" @@ -10533,7 +10654,7 @@ msgid "" "protocol allows." msgstr "" -#: gnu/packages/messaging.scm:1991 +#: gnu/packages/messaging.scm:1993 msgid "" "Mcabber is a small XMPP (Jabber) console client, which includes features\n" "such as SASL and TLS support, @dfn{Multi-User Chat} (MUC) support, logging,\n" @@ -10541,7 +10662,7 @@ msgid "" "support, and more." msgstr "" -#: gnu/packages/messaging.scm:2039 +#: gnu/packages/messaging.scm:2041 msgid "" "GNU Freetalk is a command-line Jabber/XMPP chat client. It notably uses\n" "the Readline library to handle input, so it features convenient navigation of\n" @@ -10549,27 +10670,27 @@ msgid "" "is also scriptable and extensible via Guile." msgstr "" -#: gnu/packages/messaging.scm:2074 +#: gnu/packages/messaging.scm:2076 msgid "" "Libmesode is a fork of libstrophe for use with Profanity\n" "XMPP Client. In particular, libmesode provides extra TLS functionality such as\n" "manual SSL certificate verification." msgstr "" -#: gnu/packages/messaging.scm:2109 +#: gnu/packages/messaging.scm:2111 msgid "" "Libstrophe is a minimal XMPP library written in C. It has\n" "almost no external dependencies, only an XML parsing library (expat or libxml\n" "are both supported)." msgstr "" -#: gnu/packages/messaging.scm:2167 +#: gnu/packages/messaging.scm:2169 msgid "" "Profanity is a console based XMPP client written in C\n" "using ncurses and libmesode, inspired by Irssi." msgstr "" -#: gnu/packages/messaging.scm:2197 +#: gnu/packages/messaging.scm:2199 msgid "" "Libircclient is a library which implements the client IRC\n" "protocol. It is designed to be small, fast, portable and compatible with the\n" @@ -10577,14 +10698,14 @@ msgid "" "building the IRC clients and bots." msgstr "" -#: gnu/packages/messaging.scm:2255 +#: gnu/packages/messaging.scm:2257 msgid "" "Toxic is a console-based instant messaging client, using\n" "c-toxcore and ncurses. It provides audio calls, sound and desktop\n" "notifications, and Python scripting support." msgstr "" -#: gnu/packages/messaging.scm:2281 +#: gnu/packages/messaging.scm:2283 msgid "" "libqmatrixclient is a Qt5 library to write clients for the\n" "Matrix instant messaging protocol. Quaternion is the reference client\n" @@ -10592,13 +10713,13 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2326 +#: gnu/packages/messaging.scm:2330 msgid "" "@code{mtxclient} is a C++ library that implements client API\n" "for the Matrix protocol. It is built on to of @code{Boost.Asio}." msgstr "" -#: gnu/packages/messaging.scm:2418 +#: gnu/packages/messaging.scm:2423 msgid "" "@code{Nheko} want to provide a native desktop app for the\n" "Matrix protocol that feels more like a mainstream chat app and less like an IRC\n" @@ -10608,7 +10729,7 @@ msgid "" "notification, emojis, E2E encryption, and voip calls." msgstr "" -#: gnu/packages/messaging.scm:2455 +#: gnu/packages/messaging.scm:2460 msgid "" "Quaternion is a Qt5 desktop client for the Matrix instant\n" "messaging protocol. It uses libqmatrixclient and is its reference client\n" @@ -10616,7 +10737,7 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2502 +#: gnu/packages/messaging.scm:2507 msgid "" "Hangups is an instant messaging client for Google Hangouts. It includes\n" "both a Python library and a reference client with a text-based user interface.\n" @@ -10626,7 +10747,7 @@ msgid "" "messaging that aren’t available to clients that connect over XMPP." msgstr "" -#: gnu/packages/messaging.scm:2584 +#: gnu/packages/messaging.scm:2589 msgid "" "Telegram-purple is a plugin for Libpurple, the communication library\n" "used by the Pidgin instant messaging client, that adds support for the\n" @@ -10636,7 +10757,7 @@ msgid "" "replacement." msgstr "" -#: gnu/packages/messaging.scm:2629 +#: gnu/packages/messaging.scm:2632 msgid "" "Tdlib is a cross-platform library for creating custom\n" "Telegram clients following the official Telegram API. It can be easily used\n" @@ -10644,11 +10765,11 @@ msgid "" "support for high performance Telegram Bot creation." msgstr "" -#: gnu/packages/messaging.scm:2667 +#: gnu/packages/messaging.scm:2670 msgid "Plugin for libpurple to allow sending SMS using ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2712 +#: gnu/packages/messaging.scm:2715 msgid "" "Purple-lurch plugin adds end-to-end encryption support\n" "through the Double Ratchet (Axolotl) algorithm, to @code{libpurple}\n" @@ -10659,19 +10780,19 @@ msgid "" "asynchronicity." msgstr "" -#: gnu/packages/messaging.scm:2748 +#: gnu/packages/messaging.scm:2751 msgid "" "This package provides a C++ library for parsing, formatting, and\n" "validating international phone numbers." msgstr "" -#: gnu/packages/messaging.scm:2793 +#: gnu/packages/messaging.scm:2796 msgid "" "Chatty is a chat program for XMPP and SMS. It works on mobile\n" "as well as on desktop platforms. It's based on libpurple and ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2814 +#: gnu/packages/messaging.scm:2817 msgid "" "This package provides Eclipse Mosquitto, a message broker\n" "that implements the MQTT protocol versions 5.0, 3.1.1 and 3.1. Mosquitto\n" @@ -10684,28 +10805,28 @@ msgid "" "as phones, embedded computers or microcontrollers." msgstr "" -#: gnu/packages/messaging.scm:2864 +#: gnu/packages/messaging.scm:2867 msgid "" "Movim-Desktop is a desktop application, relying on Qt, for the Movim\n" "social and chat platform." msgstr "" -#: gnu/packages/messaging.scm:2999 +#: gnu/packages/messaging.scm:3002 msgid "" "Psi+ is a spin-off of Psi XMPP client. It is a powerful XMPP client\n" "designed for experienced users." msgstr "" -#: gnu/packages/messaging.scm:3039 +#: gnu/packages/messaging.scm:3042 #, fuzzy msgid "This package provides Python bindings to Zulip's API." msgstr "Dieses Paket bietet Python-Anbindungen für librsvg, die Bibliothek zum Zeichnen von SVG-Daten." -#: gnu/packages/messaging.scm:3088 +#: gnu/packages/messaging.scm:3091 msgid "This package contains Zulip's official terminal client." msgstr "" -#: gnu/packages/messaging.scm:3110 +#: gnu/packages/messaging.scm:3113 msgid "" "Relays messages between different channels from various\n" "messaging networks and protocols. So far it supports mattermost, IRC, gitter,\n" @@ -10714,20 +10835,20 @@ msgid "" "API. Mattermost is not required." msgstr "" -#: gnu/packages/messaging.scm:3143 +#: gnu/packages/messaging.scm:3146 msgid "" "@command{pounce} is a multi-client, TLS-only IRC bouncer. It maintains\n" "a persistent connection to an IRC server, acting as a proxy and buffer for\n" "a number of clients." msgstr "" -#: gnu/packages/messaging.scm:3209 +#: gnu/packages/messaging.scm:3212 msgid "" "@code{weechat-matrix} is a Python plugin for Weechat that lets\n" "Weechat communicate over the Matrix protocol." msgstr "" -#: gnu/packages/messaging.scm:3256 +#: gnu/packages/messaging.scm:3259 msgid "" "@code{weechat-wee-slack} is a WeeChat native client for\n" "Slack. It provides supplemental features only available in the web/mobile\n" @@ -10836,14 +10957,14 @@ msgid "" "themselves." msgstr "" -#: gnu/packages/networking.scm:174 +#: gnu/packages/networking.scm:176 msgid "" "UsrSCTP is a portable SCTP userland stack. SCTP is a message\n" "oriented, reliable transport protocol with direct support for multihoming that\n" "runs on top of IP or UDP, and supports both v4 and v6 versions." msgstr "" -#: gnu/packages/networking.scm:199 +#: gnu/packages/networking.scm:201 msgid "" "Axel tries to accelerate the download process by using multiple\n" "connections per file, and can also balance the load between different\n" @@ -10852,38 +10973,38 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/networking.scm:264 +#: gnu/packages/networking.scm:266 msgid "" "LibCamera is a complex camera support library for GNU+Linux,\n" "Android, and ChromeOS." msgstr "" -#: gnu/packages/networking.scm:334 +#: gnu/packages/networking.scm:336 msgid "" "LibNice is a library that implements the Interactive\n" "Connectivity Establishment (ICE) standard (RFC 5245 & RFC 8445). It provides a\n" "GLib-based library, libnice, as well as GStreamer elements to use it." msgstr "" -#: gnu/packages/networking.scm:393 +#: gnu/packages/networking.scm:395 msgid "" "RTMPdump is a toolkit for RTMP streams. All forms of RTMP are\n" "supported, including rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps://." msgstr "" -#: gnu/packages/networking.scm:422 +#: gnu/packages/networking.scm:424 msgid "" "Slurm is a network load monitor. It shows real-time traffic statistics\n" "from any network device in any of three ASCII graph formats." msgstr "" -#: gnu/packages/networking.scm:457 +#: gnu/packages/networking.scm:459 msgid "" "SRT is a transport technology that optimizes streaming\n" "performance across unpredictable networks, such as the Internet." msgstr "" -#: gnu/packages/networking.scm:500 +#: gnu/packages/networking.scm:502 msgid "" "The lksctp-tools project provides a user-space library for @acronym{SCTP,\n" "the Stream Control Transmission Protocol} (@file{libsctp}) and C language header\n" @@ -10892,13 +11013,13 @@ msgid "" "It also includes some SCTP-related helper utilities." msgstr "" -#: gnu/packages/networking.scm:541 +#: gnu/packages/networking.scm:543 msgid "" "@code{pysctp} implements the SCTP socket API. You need a\n" "SCTP-aware kernel (most are)." msgstr "" -#: gnu/packages/networking.scm:565 +#: gnu/packages/networking.scm:567 msgid "" "@command{knockd} is a port-knock daemon. It listens to all traffic on\n" "an ethernet or PPP interface, looking for special \"knock\" sequences of @dfn{port-hits}\n" @@ -10906,7 +11027,7 @@ msgid "" "at the link-layer level." msgstr "" -#: gnu/packages/networking.scm:605 +#: gnu/packages/networking.scm:607 msgid "" "NNG project is a rewrite of the scalability protocols library\n" "known as libnanomsg, and adds significant new capabilities, while retaining\n" @@ -10915,7 +11036,7 @@ msgid "" "publish/subscribe, RPC-style request/reply, or service discovery." msgstr "" -#: gnu/packages/networking.scm:648 +#: gnu/packages/networking.scm:650 msgid "" "Nanomsg is a socket library that provides several common\n" "communication patterns. It aims to make the networking layer fast, scalable,\n" @@ -10923,14 +11044,14 @@ msgid "" "systems with no further dependencies." msgstr "" -#: gnu/packages/networking.scm:758 +#: gnu/packages/networking.scm:760 msgid "" "Blueman is a Bluetooth management utility using the Bluez\n" "D-Bus backend. It is designed to be easy to use for most common Bluetooth\n" "tasks." msgstr "" -#: gnu/packages/networking.scm:783 +#: gnu/packages/networking.scm:785 msgid "" "GNU MAC Changer is a utility for viewing and changing MAC\n" "addresses of networking devices. New addresses may be set explicitly or\n" @@ -10938,14 +11059,14 @@ msgid "" "or, more generally, MAC addresses of the same category of hardware." msgstr "" -#: gnu/packages/networking.scm:831 +#: gnu/packages/networking.scm:833 msgid "" "Miredo is an implementation (client, relay, server) of the Teredo\n" "specification, which provides IPv6 Internet connectivity to IPv6 enabled hosts\n" "residing in IPv4-only networks, even when they are behind a NAT device." msgstr "" -#: gnu/packages/networking.scm:851 +#: gnu/packages/networking.scm:853 msgid "" "NDisc6 is a collection of tools for IPv6 networking diagnostics.\n" "It includes the following programs:\n" @@ -10959,7 +11080,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:904 +#: gnu/packages/networking.scm:906 msgid "" "@command{parprouted} is a daemon for transparent IP (Layer@tie{}3)\n" "proxy ARP bridging. Unlike standard bridging, proxy ARP bridging can bridge\n" @@ -10969,7 +11090,14 @@ msgid "" "useful for making transparent firewalls." msgstr "" -#: gnu/packages/networking.scm:931 +#: gnu/packages/networking.scm:945 +msgid "" +"@command{pproxy} is an asynchronuous proxy server implemented with\n" +"Python 3 @code{asyncio}. Among the supported protocols are HTTP, SOCKS\n" +"and SSH, and it can use both TCP and UDP as transport mechanisms." +msgstr "" + +#: gnu/packages/networking.scm:969 msgid "" "socat is a relay for bidirectional data transfer between two independent\n" "data channels---files, pipes, devices, sockets, etc. It can create\n" @@ -10982,7 +11110,7 @@ msgid "" "or server shell scripts with network connections." msgstr "" -#: gnu/packages/networking.scm:962 +#: gnu/packages/networking.scm:1000 msgid "" "mbuffer is a tool for buffering data streams with a large set of features:\n" "\n" @@ -10998,14 +11126,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1058 +#: gnu/packages/networking.scm:1096 msgid "" "With this package you can monitor and filter incoming requests for\n" "network services. It includes a library which may be used by daemons to\n" "transparently check connection attempts against an access control list." msgstr "" -#: gnu/packages/networking.scm:1081 +#: gnu/packages/networking.scm:1119 msgid "" "The 0MQ lightweight messaging kernel is a library which extends the\n" "standard socket interfaces with features traditionally provided by specialized\n" @@ -11015,46 +11143,46 @@ msgid "" "more." msgstr "" -#: gnu/packages/networking.scm:1110 +#: gnu/packages/networking.scm:1148 msgid "" "czmq provides bindings for the ØMQ core API that hides the differences\n" "between different versions of ØMQ." msgstr "" -#: gnu/packages/networking.scm:1141 +#: gnu/packages/networking.scm:1179 msgid "" "This package provides header-only C++ bindings for ØMQ. The header\n" "files contain direct mappings of the abstractions provided by the ØMQ C API." msgstr "" -#: gnu/packages/networking.scm:1175 +#: gnu/packages/networking.scm:1213 msgid "" "@code{libnatpmp} is a portable and asynchronous implementation of\n" "the Network Address Translation - Port Mapping Protocol (NAT-PMP)\n" "written in the C programming language." msgstr "" -#: gnu/packages/networking.scm:1213 +#: gnu/packages/networking.scm:1251 msgid "" "librdkafka is a C library implementation of the Apache Kafka protocol,\n" "containing both Producer and Consumer support." msgstr "" -#: gnu/packages/networking.scm:1232 +#: gnu/packages/networking.scm:1270 msgid "" "libndp contains a library which provides a wrapper for IPv6 Neighbor\n" "Discovery Protocol. It also provides a tool named ndptool for sending and\n" "receiving NDP messages." msgstr "" -#: gnu/packages/networking.scm:1256 +#: gnu/packages/networking.scm:1294 msgid "" "ethtool can be used to query and change settings such as speed,\n" "auto-negotiation and checksum offload on many network devices, especially\n" "Ethernet devices." msgstr "" -#: gnu/packages/networking.scm:1298 +#: gnu/packages/networking.scm:1336 msgid "" "IFStatus is a simple, easy-to-use program for displaying commonly\n" "needed/wanted real-time traffic statistics of multiple network\n" @@ -11062,7 +11190,7 @@ msgid "" "intended as a substitute for the PPPStatus and EthStatus projects." msgstr "" -#: gnu/packages/networking.scm:1347 +#: gnu/packages/networking.scm:1385 msgid "" "This package contains a variety of tools for dealing with network\n" "configuration, troubleshooting, or servers. Utilities included are:\n" @@ -11083,7 +11211,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1388 +#: gnu/packages/networking.scm:1426 msgid "" "Nload is a console application which monitors network traffic and\n" "bandwidth usage in real time. It visualizes the in- and outgoing traffic using\n" @@ -11091,7 +11219,7 @@ msgid "" "and min/max network usage." msgstr "" -#: gnu/packages/networking.scm:1432 +#: gnu/packages/networking.scm:1470 msgid "" "Iodine tunnels IPv4 data through a DNS server. This\n" "can be useful in different situations where internet access is firewalled, but\n" @@ -11099,7 +11227,7 @@ msgid "" "and up to 1 Mbit/s downstream." msgstr "" -#: gnu/packages/networking.scm:1473 +#: gnu/packages/networking.scm:1511 msgid "" "whois searches for an object in a @dfn{WHOIS} (RFC 3912) database.\n" "It is commonly used to look up the registered users or assignees of an Internet\n" @@ -11111,14 +11239,14 @@ msgid "" "of the same name." msgstr "" -#: gnu/packages/networking.scm:1553 +#: gnu/packages/networking.scm:1591 msgid "" "Wireshark is a network protocol analyzer, or @dfn{packet\n" "sniffer}, that lets you capture and interactively browse the contents of\n" "network frames." msgstr "" -#: gnu/packages/networking.scm:1574 +#: gnu/packages/networking.scm:1613 msgid "" "fping is a ping-like program which uses @acronym{ICMP, Internet Control\n" "Message Protocol} echo requests to determine if a target host is responding.\n" @@ -11130,26 +11258,26 @@ msgid "" "round-robin fashion." msgstr "" -#: gnu/packages/networking.scm:1625 +#: gnu/packages/networking.scm:1664 msgid "" "This package provides a command-line client (@command{gandi}) to buy,\n" "manage, and delete Internet resources from Gandi.net such as domain names,\n" "virtual machines, and certificates." msgstr "" -#: gnu/packages/networking.scm:1651 +#: gnu/packages/networking.scm:1690 msgid "" "The netns package provides a simple interface for\n" "handling network namespaces in Go." msgstr "" -#: gnu/packages/networking.scm:1678 +#: gnu/packages/networking.scm:1717 msgid "" "This library provides methods for using the stream control\n" "transmission protocol (SCTP) in a Go application." msgstr "" -#: gnu/packages/networking.scm:1707 +#: gnu/packages/networking.scm:1746 msgid "" "httping measures how long it takes to connect to a web server, send an\n" "HTTP(S) request, and receive the reply headers. It is somewhat similar to\n" @@ -11158,7 +11286,7 @@ msgid "" "application stack itself." msgstr "" -#: gnu/packages/networking.scm:1746 +#: gnu/packages/networking.scm:1785 msgid "" "@command{httpstat} is a tool to visualize statistics from the\n" "@command{curl} HTTP client. It acts as a wrapper for @command{curl} and\n" @@ -11166,20 +11294,20 @@ msgid "" "TCP connection, TLS handshake and so on) in the terminal." msgstr "" -#: gnu/packages/networking.scm:1788 +#: gnu/packages/networking.scm:1827 msgid "" "Squid is a caching proxy for the Web supporting HTTP, HTTPS,\n" "FTP, and more. It reduces bandwidth and improves response times by caching and\n" "reusing frequently-requested web pages." msgstr "" -#: gnu/packages/networking.scm:1822 +#: gnu/packages/networking.scm:1861 msgid "" "Bandwidth Monitor NG is a small and simple console based\n" "live network and disk I/O bandwidth monitor." msgstr "" -#: gnu/packages/networking.scm:1874 +#: gnu/packages/networking.scm:1913 msgid "" "Aircrack-ng is a complete suite of tools to assess WiFi network\n" "security. It focuses on different areas of WiFi security: monitoring,\n" @@ -11187,14 +11315,14 @@ msgid "" "allows for heavy scripting." msgstr "" -#: gnu/packages/networking.scm:1903 +#: gnu/packages/networking.scm:1942 msgid "" "Pixiewps implements the pixie-dust attack to brute\n" "force the Wi-Fi Protected Setup (WPS) PIN by exploiting the low or\n" "non-existing entropy of some access points." msgstr "" -#: gnu/packages/networking.scm:1949 +#: gnu/packages/networking.scm:1988 msgid "" "Reaver performs a brute force attack against an access\n" "point's Wi-Fi Protected Setup (WPS) PIN. Once the PIN is found, the WPA\n" @@ -11202,7 +11330,7 @@ msgid "" "reconfigured." msgstr "" -#: gnu/packages/networking.scm:1974 +#: gnu/packages/networking.scm:2013 msgid "" "Danga::Socket is an abstract base class for objects backed by a socket\n" "which provides the basic framework for event-driven asynchronous IO, designed\n" @@ -11210,7 +11338,7 @@ msgid "" "loop." msgstr "" -#: gnu/packages/networking.scm:2000 +#: gnu/packages/networking.scm:2039 msgid "" "This module provides several IP address validation subroutines that both\n" "validate and untaint their input. This includes both basic validation\n" @@ -11219,62 +11347,62 @@ msgid "" "private (reserved)." msgstr "" -#: gnu/packages/networking.scm:2028 +#: gnu/packages/networking.scm:2067 msgid "Net::DNS is the Perl Interface to the Domain Name System." msgstr "" -#: gnu/packages/networking.scm:2060 +#: gnu/packages/networking.scm:2099 msgid "" "Socket6 binds the IPv6 related part of the C socket header\n" "definitions and structure manipulators for Perl." msgstr "" -#: gnu/packages/networking.scm:2087 +#: gnu/packages/networking.scm:2126 msgid "" "Net::DNS::Resolver::Programmable is a programmable DNS resolver for\n" "offline emulation of DNS." msgstr "" -#: gnu/packages/networking.scm:2109 +#: gnu/packages/networking.scm:2148 msgid "" "Net::DNS::Resolver::Mock is a subclass of Net::DNS::Resolver, but returns\n" "static data from any provided DNS zone file instead of querying the network.\n" "It is intended primarily for use in testing." msgstr "" -#: gnu/packages/networking.scm:2144 +#: gnu/packages/networking.scm:2183 msgid "NetAddr::IP manages IPv4 and IPv6 addresses and subsets." msgstr "" -#: gnu/packages/networking.scm:2177 +#: gnu/packages/networking.scm:2216 msgid "Net::Patricia does IP address lookups quickly in Perl." msgstr "" -#: gnu/packages/networking.scm:2198 +#: gnu/packages/networking.scm:2237 msgid "Net::CIDR::Lite merges IPv4 or IPv6 CIDR addresses." msgstr "" -#: gnu/packages/networking.scm:2225 +#: gnu/packages/networking.scm:2264 msgid "" "IO::Socket::INET6 is an interface for AF_INET/AF_INET6 domain\n" "sockets in Perl." msgstr "" -#: gnu/packages/networking.scm:2258 +#: gnu/packages/networking.scm:2293 msgid "" "Libproxy handles the details of HTTP/HTTPS proxy\n" "configuration for applications across all scenarios. Applications using\n" "libproxy only have to specify which proxy to use." msgstr "" -#: gnu/packages/networking.scm:2292 +#: gnu/packages/networking.scm:2327 msgid "" "Proxychains-ng is a preloader which hooks calls to sockets\n" "in dynamically linked programs and redirects them through one or more SOCKS or\n" "HTTP proxies." msgstr "" -#: gnu/packages/networking.scm:2314 +#: gnu/packages/networking.scm:2349 msgid "" "ENet's purpose is to provide a relatively thin, simple and robust network\n" "communication layer on top of UDP. The primary feature it provides is optional\n" @@ -11284,7 +11412,7 @@ msgid "" "library remains flexible, portable, and easily embeddable." msgstr "" -#: gnu/packages/networking.scm:2378 +#: gnu/packages/networking.scm:2413 msgid "" "sslh is a network protocol demultiplexer. It acts like a switchboard,\n" "accepting connections from clients on one port and forwarding them to different\n" @@ -11296,7 +11424,7 @@ msgid "" "that block port 22." msgstr "" -#: gnu/packages/networking.scm:2408 +#: gnu/packages/networking.scm:2443 msgid "" "iPerf is a tool to measure achievable bandwidth on IP networks. It\n" "supports tuning of various parameters related to timing, buffers and\n" @@ -11304,7 +11432,7 @@ msgid "" "the bandwidth, loss, and other parameters." msgstr "" -#: gnu/packages/networking.scm:2445 +#: gnu/packages/networking.scm:2480 msgid "" "NetHogs is a small 'net top' tool for Linux. Instead of\n" "breaking the traffic down per protocol or per subnet, like most tools do, it\n" @@ -11316,7 +11444,7 @@ msgid "" "gone wild and are suddenly taking up your bandwidth." msgstr "" -#: gnu/packages/networking.scm:2481 +#: gnu/packages/networking.scm:2516 msgid "" "NZBGet is a binary newsgrabber, which downloads files from Usenet based\n" "on information given in @code{nzb} files. NZBGet can be used in standalone\n" @@ -11326,7 +11454,7 @@ msgid "" "procedure calls (RPCs)." msgstr "" -#: gnu/packages/networking.scm:2562 +#: gnu/packages/networking.scm:2597 msgid "" "Open vSwitch is a multilayer virtual switch. It is designed to enable\n" "massive network automation through programmatic extension, while still\n" @@ -11334,27 +11462,27 @@ msgid "" "IPFIX, RSPAN, CLI, LACP, 802.1ag)." msgstr "" -#: gnu/packages/networking.scm:2585 +#: gnu/packages/networking.scm:2620 msgid "" "The @code{IP} class allows a comfortable parsing and\n" "handling for most notations in use for IPv4 and IPv6 addresses and\n" "networks." msgstr "" -#: gnu/packages/networking.scm:2610 +#: gnu/packages/networking.scm:2645 msgid "" "Command line interface for testing internet bandwidth using\n" "speedtest.net." msgstr "" -#: gnu/packages/networking.scm:2630 +#: gnu/packages/networking.scm:2668 msgid "" "This is a tftp client derived from OpenBSD tftp with some extra options\n" "added and bugs fixed. The source includes readline support but it is not\n" "enabled due to license conflicts between the BSD advertising clause and the GPL." msgstr "" -#: gnu/packages/networking.scm:2682 +#: gnu/packages/networking.scm:2720 msgid "" "Spiped (pronounced \"ess-pipe-dee\") is a utility for creating\n" "symmetrically encrypted and authenticated pipes between socket addresses, so\n" @@ -11364,7 +11492,7 @@ msgid "" "does not use SSH and requires a pre-shared symmetric key." msgstr "" -#: gnu/packages/networking.scm:2708 +#: gnu/packages/networking.scm:2746 msgid "" "Quagga is a routing software suite, providing implementations\n" "of OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4 for Unix platforms.\n" @@ -11376,14 +11504,14 @@ msgid "" "updates to the zebra daemon." msgstr "" -#: gnu/packages/networking.scm:2758 +#: gnu/packages/networking.scm:2796 msgid "" "The THC IPv6 Toolkit provides command-line tools and a library\n" "for researching IPv6 implementations and deployments. It requires Linux 2.6 or\n" "newer and only works on Ethernet network interfaces." msgstr "" -#: gnu/packages/networking.scm:2783 +#: gnu/packages/networking.scm:2821 msgid "" "bmon is a monitoring and debugging tool to capture\n" "networking-related statistics and prepare them visually in a human-friendly\n" @@ -11391,7 +11519,7 @@ msgid "" "interface and a programmable text output for scripting." msgstr "" -#: gnu/packages/networking.scm:2821 +#: gnu/packages/networking.scm:2859 msgid "" "Libnet provides a fairly portable framework for network packet\n" "construction and injection. It features portable packet creation interfaces\n" @@ -11400,7 +11528,7 @@ msgid "" "can be whipped up with little effort." msgstr "" -#: gnu/packages/networking.scm:2847 +#: gnu/packages/networking.scm:2885 msgid "" "@acronym{mtr, My TraceRoute} combines the functionality of the\n" "@command{traceroute} and @command{ping} programs in a single network diagnostic\n" @@ -11410,7 +11538,7 @@ msgid "" "displays the results in real time." msgstr "" -#: gnu/packages/networking.scm:2900 +#: gnu/packages/networking.scm:2938 msgid "" "aMule is an eMule-like client for the eD2k and Kademlia peer-to-peer\n" "file sharing networks. It includes a graphical user interface (GUI), a daemon\n" @@ -11419,7 +11547,7 @@ msgid "" "remotely." msgstr "" -#: gnu/packages/networking.scm:2922 +#: gnu/packages/networking.scm:2960 msgid "" "Zyre provides reliable group messaging over local area\n" "networks using zeromq. It has these key characteristics:\n" @@ -11436,13 +11564,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:2956 +#: gnu/packages/networking.scm:2994 msgid "" "This library allows controlling basic functions in SocketCAN\n" "from user-space. It requires a kernel built with SocketCAN support." msgstr "" -#: gnu/packages/networking.scm:2985 +#: gnu/packages/networking.scm:3023 msgid "" "This package provides CAN utilities in the following areas:\n" "\n" @@ -11458,14 +11586,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3021 +#: gnu/packages/networking.scm:3059 msgid "" "Asio is a cross-platform C++ library for network and\n" "low-level I/O programming that provides developers with a consistent\n" "asynchronous model using a modern C++ approach." msgstr "" -#: gnu/packages/networking.scm:3056 +#: gnu/packages/networking.scm:3094 msgid "" "This package is a fast tunnel proxy that helps you bypass firewalls.\n" "\n" @@ -11479,7 +11607,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3134 +#: gnu/packages/networking.scm:3172 msgid "" "The @dfn{Simple Network Management Protocol} (SNMP) is a\n" "widely used protocol for monitoring the health and welfare of network\n" @@ -11488,20 +11616,20 @@ msgid "" "SNMP v3 using both IPv4 and IPv6." msgstr "" -#: gnu/packages/networking.scm:3181 +#: gnu/packages/networking.scm:3219 msgid "" "uBridge is a simple program to create user-land bridges\n" "between various technologies. Currently, bridging between UDP tunnels,\n" "Ethernet and TAP interfaces is supported. Packet capture is also supported." msgstr "" -#: gnu/packages/networking.scm:3213 +#: gnu/packages/networking.scm:3251 msgid "" "This package contains a small set of tools to capture and convert\n" "packets from wireless devices for use with hashcat or John the Ripper." msgstr "" -#: gnu/packages/networking.scm:3244 +#: gnu/packages/networking.scm:3282 msgid "" "Small tool to capture packets from WLAN devices. After capturing,\n" "upload the \"uncleaned\" cap to @url{https://wpa-sec.stanev.org/?submit} to\n" @@ -11511,7 +11639,7 @@ msgid "" "and check if the WLAN key or the master key was transmitted unencrypted." msgstr "" -#: gnu/packages/networking.scm:3271 +#: gnu/packages/networking.scm:3309 msgid "" "Dante is a SOCKS client and server implementation. It can\n" "be installed on a machine with access to an external TCP/IP network and will\n" @@ -11520,21 +11648,21 @@ msgid "" "never see any machines other than the one Dante is running on." msgstr "" -#: gnu/packages/networking.scm:3318 +#: gnu/packages/networking.scm:3356 msgid "" "Restbed is a comprehensive and consistent programming\n" "model for building applications that require seamless and secure\n" "communication over HTTP." msgstr "" -#: gnu/packages/networking.scm:3358 +#: gnu/packages/networking.scm:3396 msgid "" "RESTinio is a header-only C++14 library that gives you an embedded\n" "HTTP/Websocket server. It is based on standalone version of ASIO\n" "and targeted primarily for asynchronous processing of HTTP-requests." msgstr "" -#: gnu/packages/networking.scm:3446 +#: gnu/packages/networking.scm:3487 msgid "" "OpenDHT provides an easy to use distributed in-memory data\n" "store. Every node in the network can read and write values to the store.\n" @@ -11561,20 +11689,20 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/networking.scm:3490 +#: gnu/packages/networking.scm:3531 msgid "" "FRRouting (FRR) is an IP routing protocol suite which includes\n" "protocol daemons for BGP, IS-IS, LDP, OSPF, PIM, and RIP." msgstr "" -#: gnu/packages/networking.scm:3520 +#: gnu/packages/networking.scm:3561 msgid "" "BIRD is an Internet routing daemon with full support for all\n" "the major routing protocols. It allows redistribution between protocols with a\n" "powerful route filtering syntax and an easy-to-use configuration interface." msgstr "" -#: gnu/packages/networking.scm:3568 +#: gnu/packages/networking.scm:3609 msgid "" "iwd is a wireless daemon for Linux that aims to replace WPA\n" "Supplicant. It optimizes resource utilization by not depending on any external\n" @@ -11582,21 +11710,21 @@ msgid "" "maximum extent possible." msgstr "" -#: gnu/packages/networking.scm:3595 +#: gnu/packages/networking.scm:3636 msgid "" "libyang is a YANG data modelling language parser and toolkit\n" "written (and providing API) in C. Current implementation covers YANG 1.0 (RFC\n" "6020) as well as YANG 1.1 (RFC 7950)." msgstr "" -#: gnu/packages/networking.scm:3629 +#: gnu/packages/networking.scm:3670 msgid "" "This package provides a control tool for the\n" "B.A.T.M.A.N. mesh networking routing protocol provided by the Linux kernel\n" "module @code{batman-adv}, for Layer 2." msgstr "" -#: gnu/packages/networking.scm:3662 +#: gnu/packages/networking.scm:3703 msgid "" "PageKite implements a tunneled reverse proxy which makes it easy to make\n" "a service (such as an HTTP or SSH server) on localhost visible to the wider\n" @@ -11604,7 +11732,7 @@ msgid "" "service is available at @url{https://pagekite.net/}, or you can run your own." msgstr "" -#: gnu/packages/networking.scm:3706 +#: gnu/packages/networking.scm:3747 msgid "" "ipcalc takes an IP address and netmask and calculates the\n" "resulting broadcast, network, Cisco wildcard mask, and host range. By giving\n" @@ -11613,7 +11741,7 @@ msgid "" "easy-to-understand binary values." msgstr "" -#: gnu/packages/networking.scm:3745 +#: gnu/packages/networking.scm:3786 msgid "" "Tunctl is used to set up and maintain persistent TUN/TAP\n" "network interfaces, enabling user applications to simulate network traffic.\n" @@ -11621,13 +11749,13 @@ msgid "" "simulation, and a number of other applications." msgstr "" -#: gnu/packages/networking.scm:3765 +#: gnu/packages/networking.scm:3806 msgid "" "Tool to send a magic packet to wake another host on the\n" "network. This must be enabled on the target host, usually in the BIOS." msgstr "" -#: gnu/packages/networking.scm:3802 +#: gnu/packages/networking.scm:3843 msgid "" "This package provides a modern, but Linux-specific\n" "implementation of the @command{traceroute} command that can be used to follow\n" @@ -11638,7 +11766,7 @@ msgid "" "some traces for unprivileged users." msgstr "" -#: gnu/packages/networking.scm:3836 +#: gnu/packages/networking.scm:3877 msgid "" "VDE is a set of programs to provide virtual software-defined\n" "Ethernet network interface controllers across multiple virtual or\n" @@ -11647,7 +11775,7 @@ msgid "" "cables." msgstr "" -#: gnu/packages/networking.scm:3878 +#: gnu/packages/networking.scm:3919 msgid "" "HAProxy is a free, very fast and reliable solution offering\n" "high availability, load balancing, and proxying for TCP and HTTP-based\n" @@ -11656,7 +11784,7 @@ msgid "" "thousands of connections is clearly realistic with today's hardware." msgstr "" -#: gnu/packages/networking.scm:3924 +#: gnu/packages/networking.scm:3965 msgid "" "The @dfn{Link Layer Discovery Protocol} (LLDP) is an industry standard\n" "protocol designed to supplant proprietary Link-Layer protocols such as EDP or\n" @@ -11665,7 +11793,7 @@ msgid "" "an implementation of LLDP. It also supports some proprietary protocols." msgstr "" -#: gnu/packages/networking.scm:3966 +#: gnu/packages/networking.scm:4007 msgid "" "Hashcash is a proof-of-work algorithm, which has been used\n" "as a denial-of-service countermeasure technique in a number of systems.\n" @@ -11678,14 +11806,14 @@ msgid "" "stamps." msgstr "" -#: gnu/packages/networking.scm:3995 +#: gnu/packages/networking.scm:4036 msgid "" "This package provides the NBD (Network Block Devices)\n" "client and server. It allows you to use remote block devices over a TCP/IP\n" "network." msgstr "" -#: gnu/packages/networking.scm:4062 +#: gnu/packages/networking.scm:4103 msgid "" "Yggdrasil is an early-stage implementation of a fully end-to-end encrypted\n" "IPv6 network. It is lightweight, self-arranging, supported on multiple\n" @@ -11694,7 +11822,7 @@ msgid "" "IPv6 Internet connectivity - it also works over IPv4." msgstr "" -#: gnu/packages/networking.scm:4106 +#: gnu/packages/networking.scm:4147 msgid "" "Netdiscover is a network address discovery tool developed\n" "mainly for wireless networks without a @acronym{DHCP} server. It also works\n" @@ -11702,7 +11830,7 @@ msgid "" "@acronym{ARP} requests and sniff for replies." msgstr "" -#: gnu/packages/networking.scm:4138 +#: gnu/packages/networking.scm:4179 msgid "" "PuTTY is a graphical text terminal client. It supports\n" "@acronym{SSH, Secure SHell}, telnet, and raw socket connections with good\n" @@ -11813,14 +11941,14 @@ msgid "" "by using the poppler rendering engine." msgstr "" -#: gnu/packages/pdf.scm:654 +#: gnu/packages/pdf.scm:653 msgid "" "Zathura is a customizable document viewer. It provides a\n" "minimalistic interface and an interface that mainly focuses on keyboard\n" "interaction." msgstr "" -#: gnu/packages/pdf.scm:697 +#: gnu/packages/pdf.scm:696 msgid "" "PoDoFo is a C++ library and set of command-line tools to work with the\n" "PDF file format. It can parse PDF files and load them into memory, and makes\n" @@ -11829,7 +11957,7 @@ msgid "" "extracting content or merging files." msgstr "" -#: gnu/packages/pdf.scm:764 +#: gnu/packages/pdf.scm:763 msgid "" "MuPDF is a C library that implements a PDF and XPS parsing and\n" "rendering engine. It is used primarily to render pages into bitmaps,\n" @@ -11841,7 +11969,7 @@ msgid "" "@command{pdfclean}, and examining the file structure @command{pdfshow}." msgstr "" -#: gnu/packages/pdf.scm:811 +#: gnu/packages/pdf.scm:810 msgid "" "QPDF is a command-line program that does structural, content-preserving\n" "transformations on PDF files. It could have been called something like\n" @@ -11850,7 +11978,7 @@ msgid "" "program capable of converting PDF into other formats." msgstr "" -#: gnu/packages/pdf.scm:855 +#: gnu/packages/pdf.scm:854 msgid "" "@command{qpdfview} is a document viewer for PDF, PS and DJVU\n" "files. It uses the Qt toolkit and features persistent per-file settings,\n" @@ -11858,13 +11986,13 @@ msgid "" "SyncTeX support, and rudimentary support for annotations and forms." msgstr "" -#: gnu/packages/pdf.scm:881 +#: gnu/packages/pdf.scm:880 msgid "" "Xournal is an application for notetaking, sketching, keeping a journal\n" "using a stylus." msgstr "" -#: gnu/packages/pdf.scm:940 +#: gnu/packages/pdf.scm:939 msgid "" "Xournal++ is a hand note taking software written in\n" "C++ with the target of flexibility, functionality and speed. Stroke\n" @@ -11900,14 +12028,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1019 +#: gnu/packages/pdf.scm:1018 msgid "" "This is the ReportLab PDF Toolkit. It allows rapid creation\n" "of rich PDF documents, and also creation of charts in a variety of bitmap and\n" "vector formats." msgstr "" -#: gnu/packages/pdf.scm:1071 +#: gnu/packages/pdf.scm:1070 msgid "" "Impressive is a tool to display PDF files that provides visual effects\n" "such as smooth alpha-blended slide transitions. It provides additional tools\n" @@ -11915,26 +12043,26 @@ msgid "" "the PDF pages." msgstr "" -#: gnu/packages/pdf.scm:1094 +#: gnu/packages/pdf.scm:1093 msgid "" "img2pdf converts images to PDF via direct JPEG inclusion. That\n" "conversion is lossless: the image embedded in the PDF has the exact same color\n" "information for every pixel as the input." msgstr "" -#: gnu/packages/pdf.scm:1147 +#: gnu/packages/pdf.scm:1146 msgid "" "fbida contains a few applications for viewing and editing images on\n" "the framebuffer." msgstr "" -#: gnu/packages/pdf.scm:1171 +#: gnu/packages/pdf.scm:1170 msgid "" "@command{pdf2svg} is a simple command-line PDF to SVG\n" "converter using the Poppler and Cairo libraries." msgstr "" -#: gnu/packages/pdf.scm:1203 +#: gnu/packages/pdf.scm:1202 msgid "" "PyPDF2 is a pure Python PDF library capable of:\n" "\n" @@ -11954,7 +12082,7 @@ msgid "" "manage or manipulate PDFs." msgstr "" -#: gnu/packages/pdf.scm:1240 +#: gnu/packages/pdf.scm:1239 msgid "" "PyPDF2 is a pure Python PDF toolkit.\n" "\n" @@ -11962,7 +12090,7 @@ msgid "" "python-pypdf2 instead." msgstr "" -#: gnu/packages/pdf.scm:1284 +#: gnu/packages/pdf.scm:1283 msgid "" "PDF Arranger is a small application which allows one to merge or split\n" "PDF documents and rotate, crop and rearrange their pages using an interactive\n" @@ -11971,7 +12099,7 @@ msgid "" "PDF Arranger was formerly known as PDF-Shuffler." msgstr "" -#: gnu/packages/pdf.scm:1308 +#: gnu/packages/pdf.scm:1307 msgid "" "@command{pdfposter} can be used to create a large poster by\n" "building it from multiple pages and/or printing it on large media. It expects\n" @@ -11984,7 +12112,7 @@ msgid "" "PDF. Indeed @command{pdfposter} was inspired by @command{poster}." msgstr "" -#: gnu/packages/pdf.scm:1339 +#: gnu/packages/pdf.scm:1338 msgid "" "Pdfgrep searches in pdf files for strings matching a regular expression.\n" "Support some GNU grep options as file name output, page number output,\n" @@ -11992,7 +12120,7 @@ msgid "" "multiple files." msgstr "" -#: gnu/packages/pdf.scm:1387 +#: gnu/packages/pdf.scm:1386 msgid "" "pdfpc is a presentation viewer application which uses multi-monitor\n" "output to provide meta information to the speaker during the presentation. It\n" @@ -12002,13 +12130,13 @@ msgid "" "presentation. The input files processed by pdfpc are PDF documents." msgstr "" -#: gnu/packages/pdf.scm:1414 +#: gnu/packages/pdf.scm:1413 msgid "" "Paps reads a UTF-8 encoded file and generates a PostScript language\n" "rendering of the file through the Pango Cairo back end." msgstr "" -#: gnu/packages/pdf.scm:1444 +#: gnu/packages/pdf.scm:1443 msgid "" "Stapler is a pure Python alternative to PDFtk, a tool for\n" "manipulating PDF documents from the command line. It supports\n" @@ -12022,7 +12150,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1532 +#: gnu/packages/pdf.scm:1531 msgid "" "WeasyPrint helps web developers to create PDF documents. It\n" "turns simple HTML pages into gorgeous statistical reports, invoices, tickets,\n" @@ -15746,7 +15874,7 @@ msgid "" "and enhance them." msgstr "" -#: gnu/packages/photo.scm:601 +#: gnu/packages/photo.scm:603 msgid "" "Photoflare is a cross-platform image editor with an aim\n" "to balance between powerful features and a very friendly graphical user\n" @@ -15756,7 +15884,7 @@ msgid "" "such as Batch image processing." msgstr "" -#: gnu/packages/photo.scm:669 +#: gnu/packages/photo.scm:670 msgid "" "Entangle is an application which uses GTK and libgphoto2 to provide a\n" "graphical interface for tethered photography with digital cameras. It\n" @@ -15764,14 +15892,14 @@ msgid "" "off' shooting directly from the controlling computer." msgstr "" -#: gnu/packages/photo.scm:740 +#: gnu/packages/photo.scm:741 msgid "" "Hugin is an easy to use panoramic imaging toolchain with a graphical\n" "user interface. It can be used to assemble a mosaic of photographs into\n" "a complete panorama and stitch any series of overlapping pictures." msgstr "" -#: gnu/packages/photo.scm:794 +#: gnu/packages/photo.scm:795 msgid "" "RawTherapee is a raw image processing suite. It comprises a\n" "subset of image editing operations specifically aimed at non-destructive raw\n" @@ -15815,7 +15943,28 @@ msgid "" "`special effects' using the filter mechanism." msgstr "" -#: gnu/packages/scanner.scm:144 +#: gnu/packages/scanner.scm:83 +msgid "" +"This SANE backend lets you scan documents and images from scanners and\n" +"multi-function printers that speak eSCL (marketed as ``AirScan'') or\n" +"@acronym{WSD, Web Services for Devices} (or ``WS-Scan'').\n" +"\n" +"Both are vendor-neutral protocols that allow ``driverless'' scanning over IPv4\n" +"and IPv6 networks without the vendor-specific drivers that make up most of the\n" +"sane-backends collection. This is similar to how most contemporary printers\n" +"speak the universal @acronym{IPP, Internet Printing Protocol}.\n" +"\n" +"Only scanners that support eSCL will also work over USB. This requires a\n" +"suitable IPP-over-USB daemon like ipp-usb to be installed and configured.\n" +"\n" +"Any eSCL or WSD-capable scanner should just work. sane-airscan automatically\n" +"discovers and configures devices, including which protocol to use. It was\n" +"successfully tested with many devices from Brother, Canon, Dell, Kyocera,\n" +"Lexmark, Epson, HP, OKI, Panasonic, Pantum, Ricoh, Samsung, and Xerox, with both\n" +"WSD and eSCL." +msgstr "" + +#: gnu/packages/scanner.scm:200 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -15823,7 +15972,7 @@ msgid "" "package contains the library, but no drivers." msgstr "" -#: gnu/packages/scanner.scm:192 +#: gnu/packages/scanner.scm:248 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -15831,7 +15980,7 @@ msgid "" "package contains the library and drivers." msgstr "" -#: gnu/packages/scanner.scm:243 +#: gnu/packages/scanner.scm:299 msgid "" "Scanbd stands for scanner button daemon. It regularly polls\n" "scanners for pressed buttons, function knob changes, or other events such\n" @@ -15847,7 +15996,7 @@ msgid "" "provided the driver also exposes the buttons." msgstr "" -#: gnu/packages/scanner.scm:331 +#: gnu/packages/scanner.scm:387 msgid "" "XSane is a graphical interface for controlling a scanner and acquiring\n" "images from it. You can photocopy multi-page documents and save, fax, print,\n" @@ -15859,14 +16008,14 @@ msgid "" "back-end library, which supports almost all existing scanners." msgstr "" -#: gnu/packages/scheme.scm:225 +#: gnu/packages/scheme.scm:226 msgid "" "GNU/MIT Scheme is an implementation of the Scheme programming\n" "language. It provides an interpreter, a compiler and a debugger. It also\n" "features an integrated Emacs-like editor and a large runtime library." msgstr "" -#: gnu/packages/scheme.scm:324 +#: gnu/packages/scheme.scm:325 msgid "" "Bigloo is a Scheme implementation devoted to one goal: enabling Scheme\n" "based programming style where C(++) is usually required. Bigloo attempts to\n" @@ -15877,7 +16026,7 @@ msgid "" "and between Scheme and Java programs." msgstr "" -#: gnu/packages/scheme.scm:377 +#: gnu/packages/scheme.scm:378 msgid "" "HOP is a multi-tier programming language for the Web 2.0 and the\n" "so-called diffuse Web. It is designed for programming interactive web\n" @@ -15886,14 +16035,14 @@ msgid "" "mashups, office (web agendas, mail clients, ...), etc." msgstr "" -#: gnu/packages/scheme.scm:400 +#: gnu/packages/scheme.scm:401 msgid "" "Scheme 48 is an implementation of Scheme based on a byte-code\n" "interpreter and is designed to be used as a testbed for experiments in\n" "implementation techniques and as an expository tool." msgstr "" -#: gnu/packages/scheme.scm:430 +#: gnu/packages/scheme.scm:431 msgid "" "Gambit consists of two main programs: gsi, the Gambit Scheme\n" "interpreter, and gsc, the Gambit Scheme compiler. The interpreter contains\n" @@ -15904,7 +16053,7 @@ msgid "" "mixed." msgstr "" -#: gnu/packages/scheme.scm:464 +#: gnu/packages/scheme.scm:465 msgid "" "Chibi-Scheme is a very small library with no external dependencies\n" "intended for use as an extension and scripting language in C programs. In\n" @@ -15913,7 +16062,7 @@ msgid "" "threads." msgstr "" -#: gnu/packages/scheme.scm:512 +#: gnu/packages/scheme.scm:513 msgid "" "Structure and Interpretation of Computer Programs (SICP) is\n" "a textbook aiming to teach the principles of computer programming.\n" @@ -15923,19 +16072,19 @@ msgid "" "metalinguistic abstraction, recursion, interpreters, and modular programming." msgstr "" -#: gnu/packages/scheme.scm:556 +#: gnu/packages/scheme.scm:557 msgid "" "String pattern-matching library for scheme48 based on the SRE\n" "regular-expression notation." msgstr "" -#: gnu/packages/scheme.scm:589 +#: gnu/packages/scheme.scm:590 msgid "" "SLIB is a portable Scheme library providing compatibility and\n" "utility functions for all standard Scheme implementations." msgstr "" -#: gnu/packages/scheme.scm:643 +#: gnu/packages/scheme.scm:644 msgid "" "GNU SCM is an implementation of Scheme. This\n" "implementation includes Hobbit, a Scheme-to-C compiler, which can\n" @@ -15943,7 +16092,7 @@ msgid "" "linked with a SCM executable." msgstr "" -#: gnu/packages/scheme.scm:702 +#: gnu/packages/scheme.scm:703 msgid "" "TinyScheme is a light-weight Scheme interpreter that implements as large a\n" "subset of R5RS as was possible without getting very large and complicated.\n" @@ -15959,7 +16108,7 @@ msgid "" "small program, it is easy to comprehend, get to grips with, and use." msgstr "" -#: gnu/packages/scheme.scm:783 +#: gnu/packages/scheme.scm:784 msgid "" "Stalin is an aggressively optimizing whole-program compiler\n" "for Scheme that does polyvariant interprocedural flow analysis,\n" @@ -15971,7 +16120,7 @@ msgid "" "generation." msgstr "" -#: gnu/packages/scheme.scm:819 +#: gnu/packages/scheme.scm:820 msgid "" "Scheme 9 from Empty Space (S9fES) is a mature, portable, and\n" "comprehensible public-domain interpreter for R4RS Scheme offering:\n" @@ -15986,14 +16135,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/scheme.scm:877 +#: gnu/packages/scheme.scm:878 msgid "" "@code{femtolisp} is a scheme-like lisp implementation with a\n" "simple, elegant Scheme dialect. It is a lisp-1 with lexical scope.\n" "The core is 12 builtin special forms and 33 builtin functions." msgstr "" -#: gnu/packages/scheme.scm:940 +#: gnu/packages/scheme.scm:941 msgid "" "Gauche is a R7RS Scheme scripting engine aiming at being a\n" "handy tool that helps programmers and system administrators to write small to\n" @@ -16003,7 +16152,7 @@ msgid "" "and list gauche extension packages." msgstr "" -#: gnu/packages/scheme.scm:1038 +#: gnu/packages/scheme.scm:1039 msgid "" "Gerbil is an opinionated dialect of Scheme designed for Systems\n" "Programming, with a state of the art macro and module system on top of the Gambit\n" @@ -16140,7 +16289,7 @@ msgid "" "server and an IRC server." msgstr "" -#: gnu/packages/shells.scm:107 +#: gnu/packages/shells.scm:108 msgid "" "dash is a POSIX-compliant @command{/bin/sh} implementation that aims to be\n" "as small as possible, often without sacrificing speed. It is faster than the\n" @@ -16148,7 +16297,7 @@ msgid "" "direct descendant of NetBSD's Almquist Shell (@command{ash})." msgstr "" -#: gnu/packages/shells.scm:255 +#: gnu/packages/shells.scm:256 msgid "" "Fish (friendly interactive shell) is a shell focused on interactive use,\n" "discoverability, and friendliness. Fish has very user-friendly and powerful\n" @@ -16160,20 +16309,20 @@ msgid "" "and syntax highlighting." msgstr "" -#: gnu/packages/shells.scm:308 +#: gnu/packages/shells.scm:309 msgid "" "@code{fish-foreign-env} wraps bash script execution in a way\n" "that environment variables that are exported or modified get imported back\n" "into fish." msgstr "" -#: gnu/packages/shells.scm:344 +#: gnu/packages/shells.scm:345 msgid "" "This is a reimplementation by Byron Rakitzis of the Plan 9 shell. It\n" "has a small feature set similar to a traditional Bourne shell." msgstr "" -#: gnu/packages/shells.scm:377 +#: gnu/packages/shells.scm:378 msgid "" "Es is an extensible shell. The language was derived from the Plan 9\n" "shell, rc, and was influenced by functional programming languages, such as\n" @@ -16182,7 +16331,7 @@ msgid "" "written by Paul Haahr and Byron Rakitzis." msgstr "" -#: gnu/packages/shells.scm:455 +#: gnu/packages/shells.scm:456 msgid "" "Tcsh is an enhanced, but completely compatible version of the Berkeley\n" "UNIX C shell (csh). It is a command language interpreter usable both as an\n" @@ -16191,7 +16340,7 @@ msgid "" "history mechanism, job control and a C-like syntax." msgstr "" -#: gnu/packages/shells.scm:522 +#: gnu/packages/shells.scm:523 msgid "" "The Z shell (zsh) is a Unix shell that can be used\n" "as an interactive login shell and as a powerful command interpreter\n" @@ -16200,7 +16349,7 @@ msgid "" "ksh, and tcsh." msgstr "" -#: gnu/packages/shells.scm:572 +#: gnu/packages/shells.scm:573 msgid "" "Xonsh is a Python-ish, BASHwards-looking shell language and command\n" "prompt. The language is a superset of Python 3.4+ with additional shell\n" @@ -16209,7 +16358,7 @@ msgid "" "use of experts and novices alike." msgstr "" -#: gnu/packages/shells.scm:616 +#: gnu/packages/shells.scm:617 msgid "" "Scsh is a Unix shell embedded in Scheme. Scsh has two main\n" "components: a process notation for running programs and setting up pipelines\n" @@ -16217,7 +16366,7 @@ msgid "" "operating system." msgstr "" -#: gnu/packages/shells.scm:658 +#: gnu/packages/shells.scm:659 msgid "" "Linenoise is a minimal, zero-config, readline replacement.\n" "Its features include:\n" @@ -16231,7 +16380,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/shells.scm:722 +#: gnu/packages/shells.scm:723 msgid "" "S is a new shell that aims to be extremely simple. It does not\n" "implement the POSIX shell standard.\n" @@ -16245,19 +16394,19 @@ msgid "" "A @code{andglob} program is also provided along with s." msgstr "" -#: gnu/packages/shells.scm:753 +#: gnu/packages/shells.scm:754 msgid "" "Oksh is a port of the OpenBSD Korn Shell.\n" "The OpenBSD Korn Shell is a cleaned up and enhanced ksh." msgstr "" -#: gnu/packages/shells.scm:783 +#: gnu/packages/shells.scm:784 msgid "" "loksh is a Linux port of OpenBSD's @command{ksh}. It is a small,\n" "interactive POSIX shell targeted at resource-constrained systems." msgstr "" -#: gnu/packages/shells.scm:821 +#: gnu/packages/shells.scm:822 msgid "" "mksh is an actively developed free implementation of the\n" "Korn Shell programming language and a successor to the Public Domain Korn\n" @@ -16289,7 +16438,7 @@ msgid "" "files and text." msgstr "" -#: gnu/packages/shells.scm:1006 +#: gnu/packages/shells.scm:1005 msgid "" "Nu draws inspiration from projects like PowerShell, functional\n" "programming languages, and modern CLI tools. Rather than thinking of files\n" @@ -16300,7 +16449,7 @@ msgid "" "of commands called a ``pipeline''." msgstr "" -#: gnu/packages/shells.scm:1037 +#: gnu/packages/shells.scm:1036 msgid "" "This package is a library for ANSI terminal colors and styles (bold,\n" "underline)." @@ -16569,19 +16718,19 @@ msgid "" "your calls and messages." msgstr "" -#: gnu/packages/telephony.scm:874 +#: gnu/packages/telephony.scm:869 msgid "" "PJProject provides an implementation of the Session\n" "Initiation Protocol (SIP) and a multimedia framework." msgstr "" -#: gnu/packages/telephony.scm:916 +#: gnu/packages/telephony.scm:911 msgid "" "A collection of libraries and header files for implementing\n" "telephony functionality into custom Telegram clients." msgstr "" -#: gnu/packages/tex.scm:532 +#: gnu/packages/tex.scm:543 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -16591,20 +16740,20 @@ msgid "" "This package contains the binaries." msgstr "" -#: gnu/packages/tex.scm:571 +#: gnu/packages/tex.scm:582 msgid "" "kpathsea is a library, whose purpose is to return a filename\n" "from a list of user-specified directories similar to how shells look up\n" "executables. It is maintained as a part of TeX Live." msgstr "" -#: gnu/packages/tex.scm:591 +#: gnu/packages/tex.scm:602 msgid "" "This package provides the docstrip utility to strip\n" "documentation from TeX files. It is part of the LaTeX base." msgstr "" -#: gnu/packages/tex.scm:606 +#: gnu/packages/tex.scm:617 msgid "" "This bundle provides generic access to Unicode Consortium\n" "data for TeX use. It contains a set of text files provided by the Unicode\n" @@ -16617,7 +16766,7 @@ msgid "" "out to date by @code{unicode-letters.tex}." msgstr "" -#: gnu/packages/tex.scm:638 +#: gnu/packages/tex.scm:649 msgid "" "This package includes Knuth's original @file{hyphen.tex},\n" "@file{zerohyph.tex} to disable hyphenation, @file{language.us} which starts\n" @@ -16625,13 +16774,13 @@ msgid "" "default versions of those), etc." msgstr "" -#: gnu/packages/tex.scm:659 +#: gnu/packages/tex.scm:670 msgid "" "This package provides files needed for converting DVI files\n" "to PostScript." msgstr "" -#: gnu/packages/tex.scm:673 +#: gnu/packages/tex.scm:684 msgid "" "This bundle provides a collection of model \".ini\" files\n" "for creating TeX formats. These files are commonly used to introduced\n" @@ -16640,13 +16789,13 @@ msgid "" "to adapt the plain e-TeX source file to work with XeTeX and LuaTeX." msgstr "" -#: gnu/packages/tex.scm:736 +#: gnu/packages/tex.scm:747 msgid "" "This package provides the Metafont base files needed to\n" "build fonts using the Metafont system." msgstr "" -#: gnu/packages/tex.scm:821 +#: gnu/packages/tex.scm:832 msgid "" "This package provides TeX macros for converting Adobe Font\n" "Metric files to TeX metric and virtual font format. Fontinst helps mainly\n" @@ -16656,7 +16805,7 @@ msgid "" "typesetting in these fonts." msgstr "" -#: gnu/packages/tex.scm:842 +#: gnu/packages/tex.scm:853 msgid "" "This is Fontname, a naming scheme for (the base part of)\n" "external TeX font filenames. This makes at most eight-character names\n" @@ -16664,7 +16813,7 @@ msgid "" "documents." msgstr "" -#: gnu/packages/tex.scm:915 +#: gnu/packages/tex.scm:926 msgid "" "This package provides the Computer Modern fonts by Donald\n" "Knuth. The Computer Modern font family is a large collection of text,\n" @@ -16672,7 +16821,7 @@ msgid "" "8A." msgstr "" -#: gnu/packages/tex.scm:946 +#: gnu/packages/tex.scm:957 msgid "" "The CM-Super family provides Adobe Type 1 fonts that replace\n" "the T1/TS1-encoded Computer Modern (EC/TC), T1/TS1-encoded Concrete,\n" @@ -16682,13 +16831,13 @@ msgid "" "originals." msgstr "" -#: gnu/packages/tex.scm:979 +#: gnu/packages/tex.scm:990 msgid "" "This package provides a drop-in replacements for the Courier\n" "font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:1002 +#: gnu/packages/tex.scm:1013 msgid "" "The TeX-GYRE bundle consist of multiple font families:\n" "@itemize @bullet\n" @@ -16708,21 +16857,21 @@ msgid "" "support (for use with a variety of encodings) is provided." msgstr "" -#: gnu/packages/tex.scm:1041 +#: gnu/packages/tex.scm:1052 msgid "" "The Latin Modern fonts are derived from the famous Computer\n" "Modern fonts designed by Donald E. Knuth and described in Volume E of his\n" "Computers & Typesetting series." msgstr "" -#: gnu/packages/tex.scm:1106 +#: gnu/packages/tex.scm:1117 msgid "" "This is a collection of core TeX and METAFONT macro files\n" "from Donald Knuth, including the plain format, plain base, and the MF logo\n" "fonts." msgstr "" -#: gnu/packages/tex.scm:1181 +#: gnu/packages/tex.scm:1192 msgid "" "This is a collection of fonts for use with standard LaTeX\n" "packages and classes. It includes invisible fonts (for use with the slides\n" @@ -16730,14 +16879,14 @@ msgid "" "symbol fonts." msgstr "" -#: gnu/packages/tex.scm:1253 +#: gnu/packages/tex.scm:1264 msgid "" "This package provides LaTeX and font definition files to access the\n" "Knuthian mflogo fonts described in The Metafontbook and to typeset Metafont\n" "logos in LaTeX documents." msgstr "" -#: gnu/packages/tex.scm:1274 +#: gnu/packages/tex.scm:1285 msgid "" "These fonts were created in METAFONT by Knuth, for his own publications.\n" "At some stage, the letters P and S were added, so that the METAPOST logo could\n" @@ -16746,7 +16895,7 @@ msgid "" "Taco Hoekwater." msgstr "" -#: gnu/packages/tex.scm:1402 +#: gnu/packages/tex.scm:1415 gnu/packages/tex.scm:1579 msgid "" "This package provides an extended set of fonts for use in mathematics,\n" "including: extra mathematical symbols; blackboard bold letters (uppercase\n" @@ -16760,7 +16909,7 @@ msgid "" "details can be found in the documentation." msgstr "" -#: gnu/packages/tex.scm:1432 +#: gnu/packages/tex.scm:1609 msgid "" "Mkpattern is a general purpose program for the generation of\n" "hyphenation patterns, with definition of letter sets and template-like\n" @@ -16768,7 +16917,7 @@ msgid "" "output encodings, and features generation of clean UTF-8 patterns." msgstr "" -#: gnu/packages/tex.scm:1489 +#: gnu/packages/tex.scm:1666 msgid "" "This package provides an extended version of TeX (which is capable of\n" "running as if it were TeX unmodified). E-TeX has been specified by the LaTeX\n" @@ -16777,122 +16926,131 @@ msgid "" "incorporates the e-TeX extensions." msgstr "" -#: gnu/packages/tex.scm:1507 +#: gnu/packages/tex.scm:1684 msgid "" "This package contains files used to build the Plain TeX format, as\n" "described in the TeXbook, together with various supporting files (some also\n" "discussed in the book)." msgstr "" -#: gnu/packages/tex.scm:1533 +#: gnu/packages/tex.scm:1702 +msgid "" +"The package facilitates wrapping text to a specific character width, breaking\n" +"lines by words rather than, as done by TeX, by characters. The primary use for\n" +"these facilities is to aid the generation of messages sent to the log file or\n" +"console output to display messages to the user. Package authors may also find\n" +"this useful when writing out arbitary text to an external file." +msgstr "" + +#: gnu/packages/tex.scm:1730 msgid "" "This package provides a drop-in replacements for the Helvetica\n" "font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:1546 +#: gnu/packages/tex.scm:1743 msgid "" "The package provides hyphenation patterns for the Afrikaans\n" "language." msgstr "" -#: gnu/packages/tex.scm:1560 +#: gnu/packages/tex.scm:1757 msgid "" "The package provides hyphenation patterns for ancient\n" "Greek." msgstr "" -#: gnu/packages/tex.scm:1573 +#: gnu/packages/tex.scm:1770 msgid "" "The package provides hyphenation patterns for the Armenian\n" "language." msgstr "Dieses Paket bietet Worttrennungsmuster für die armenische Sprache." -#: gnu/packages/tex.scm:1587 +#: gnu/packages/tex.scm:1784 msgid "" "The package provides hyphenation patterns for the Basque\n" "language." msgstr "Dieses Paket bietet Worttrennungsmuster für die baskische Sprache." -#: gnu/packages/tex.scm:1601 +#: gnu/packages/tex.scm:1798 msgid "" "The package provides hyphenation patterns for the Belarusian\n" "language." msgstr "Dieses Paket bietet Worttrennungsmuster für die weißrussische Sprache." -#: gnu/packages/tex.scm:1613 +#: gnu/packages/tex.scm:1810 msgid "" "The package provides hyphenation patterns for the Bulgarian\n" "language in T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1627 +#: gnu/packages/tex.scm:1824 msgid "" "The package provides hyphenation patterns for Catalan in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1640 +#: gnu/packages/tex.scm:1837 msgid "" "The package provides hyphenation patterns for unaccented\n" "Chinese pinyin T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1652 +#: gnu/packages/tex.scm:1849 msgid "" "The package provides hyphenation patterns for Church\n" "Slavonic in UTF-8 encoding." msgstr "" -#: gnu/packages/tex.scm:1665 +#: gnu/packages/tex.scm:1862 msgid "" "The package provides hyphenation patterns for Coptic in\n" "UTF-8 encoding as well as in ASCII-based encoding for 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:1678 +#: gnu/packages/tex.scm:1875 msgid "" "The package provides hyphenation patterns for Croatian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1690 +#: gnu/packages/tex.scm:1887 msgid "" "The package provides hyphenation patterns for Czech in T1/EC\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1702 +#: gnu/packages/tex.scm:1899 msgid "" "The package provides hyphenation patterns for Danish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1715 +#: gnu/packages/tex.scm:1912 msgid "" "The package provides hyphenation patterns for Dutch in T1/EC\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1728 +#: gnu/packages/tex.scm:1925 msgid "" "The package provides additional hyphenation patterns for\n" "American and British English in ASCII encoding." msgstr "" -#: gnu/packages/tex.scm:1742 +#: gnu/packages/tex.scm:1939 msgid "" "The package provides hyphenation patterns for Esperanto ISO\n" "Latin 3 and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1754 +#: gnu/packages/tex.scm:1951 msgid "" "The package provides hyphenation patterns for Estonian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1768 +#: gnu/packages/tex.scm:1965 msgid "" "The package provides hyphenation patterns for languages\n" "written using the Ethiopic script for Unicode engines. They are not supposed\n" @@ -16900,13 +17058,13 @@ msgid "" "be replaced by files tailored to individual languages." msgstr "" -#: gnu/packages/tex.scm:1782 +#: gnu/packages/tex.scm:1979 msgid "" "The package provides hyphenation patterns for Finnish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1794 +#: gnu/packages/tex.scm:1991 #, fuzzy #| msgid "" #| "This package provides hyphenation patterns for Panjabi in\n" @@ -16916,82 +17074,82 @@ msgid "" "school in T1/EC and UTF-8 encodings." msgstr "Dieses Paket bietet Worttrennungsmuster für die Sprache Panjabi (Pandschabi) in T1/EC-Kodierung." -#: gnu/packages/tex.scm:1806 +#: gnu/packages/tex.scm:2003 msgid "" "The package provides hyphenation patterns for French in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1818 +#: gnu/packages/tex.scm:2015 msgid "" "The package provides hyphenation patterns for Friulan in\n" "ASCII encodings." msgstr "" -#: gnu/packages/tex.scm:1831 +#: gnu/packages/tex.scm:2028 msgid "" "The package provides hyphenation patterns for Galician in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1843 +#: gnu/packages/tex.scm:2040 msgid "" "The package provides hyphenation patterns for Georgian in\n" "T8M, T8K, and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1861 +#: gnu/packages/tex.scm:2058 msgid "" "This package provides hyphenation patterns for German in\n" "T1/EC and UTF-8 encodings, for traditional and reformed spelling, including\n" "Swiss German." msgstr "" -#: gnu/packages/tex.scm:1880 +#: gnu/packages/tex.scm:2077 msgid "" "This package provides hyphenation patterns for Modern Greek\n" "in monotonic and polytonic spelling in LGR and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1894 +#: gnu/packages/tex.scm:2091 msgid "" "This package provides hyphenation patterns for Hungarian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1907 +#: gnu/packages/tex.scm:2104 msgid "" "This package provides hyphenation patterns for Icelandic in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1930 +#: gnu/packages/tex.scm:2127 msgid "" "This package provides hyphenation patterns for Assamese,\n" "Bengali, Gujarati, Hindi, Kannada, Malayalam, Marathi, Oriya, Panjabi, Tamil\n" "and Telugu for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:1943 +#: gnu/packages/tex.scm:2140 msgid "" "This package provides hyphenation patterns for\n" "Indonesian (Bahasa Indonesia) in ASCII encoding. They are probably also\n" "usable for Malay (Bahasa Melayu)." msgstr "" -#: gnu/packages/tex.scm:1956 +#: gnu/packages/tex.scm:2153 msgid "" "This package provides hyphenation patterns for Interlingua\n" "in ASCII encoding." msgstr "" -#: gnu/packages/tex.scm:1968 +#: gnu/packages/tex.scm:2165 msgid "" "This package provides hyphenation patterns for\n" "Irish (Gaeilge) in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1981 +#: gnu/packages/tex.scm:2178 msgid "" "This package provides hyphenation patterns for Italian in\n" "ASCII encoding. Compliant with the Recommendation UNI 6461 on hyphenation\n" @@ -16999,14 +17157,14 @@ msgid "" "UNI)." msgstr "" -#: gnu/packages/tex.scm:1995 +#: gnu/packages/tex.scm:2192 msgid "" "This package provides hyphenation patterns for\n" "Kurmanji (Northern Kurdish) as spoken in Turkey and by the Kurdish diaspora in\n" "Europe, in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2011 +#: gnu/packages/tex.scm:2208 msgid "" "This package provides hyphenation patterns for Latin in\n" "T1/EC and UTF-8 encodings, mainly in modern spelling (u when u is needed and v\n" @@ -17020,39 +17178,39 @@ msgid "" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2032 +#: gnu/packages/tex.scm:2229 msgid "" "This package provides hyphenation patterns for Latvian in\n" "L7X and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2045 +#: gnu/packages/tex.scm:2242 msgid "" "This package provides hyphenation patterns for Lithuanian in\n" "L7X and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2060 +#: gnu/packages/tex.scm:2257 #, fuzzy #| msgid "" #| "This package provides hyphenation patterns for Panjabi in\n" #| "T1/EC encoding." -msgid "This package provides hypenation patterns for Macedonian." +msgid "This package provides hyphenation patterns for Macedonian." msgstr "Dieses Paket bietet Worttrennungsmuster für die Sprache Panjabi (Pandschabi) in T1/EC-Kodierung." -#: gnu/packages/tex.scm:2073 +#: gnu/packages/tex.scm:2270 msgid "" "This package provides hyphenation patterns for Mongolian in\n" "T2A, LMC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2088 +#: gnu/packages/tex.scm:2285 msgid "" "This package provides hyphenation patterns for Norwegian\n" "Bokmal and Nynorsk in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2102 +#: gnu/packages/tex.scm:2299 msgid "" "This package provides hyphenation patterns for Occitan in\n" "T1/EC and UTF-8 encodings. They are supposed to be valid for all the Occitan\n" @@ -17061,94 +17219,94 @@ msgid "" "Alps encompassing the southern half of the French pentagon." msgstr "" -#: gnu/packages/tex.scm:2117 +#: gnu/packages/tex.scm:2314 msgid "" "This package provides hyphenation patterns for Panjabi in\n" "T1/EC encoding." msgstr "Dieses Paket bietet Worttrennungsmuster für die Sprache Panjabi (Pandschabi) in T1/EC-Kodierung." -#: gnu/packages/tex.scm:2130 +#: gnu/packages/tex.scm:2327 msgid "" "This package provides hyphenation patterns for Piedmontese\n" "in ASCII encoding. Compliant with 'Gramatica dla lengua piemonteisa' by\n" "Camillo Brero." msgstr "" -#: gnu/packages/tex.scm:2143 +#: gnu/packages/tex.scm:2340 msgid "" "This package provides hyphenation patterns for Polish in QX\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2156 +#: gnu/packages/tex.scm:2353 msgid "" "This package provides hyphenation patterns for Portuguese in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2168 +#: gnu/packages/tex.scm:2365 msgid "" "This package provides hyphenation patterns for Romanian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2181 +#: gnu/packages/tex.scm:2378 msgid "" "This package provides hyphenation patterns for Romansh in\n" "ASCII encodings. They are supposed to comply with the rules indicated by the\n" "Lia Rumantscha (Romansh language society)." msgstr "" -#: gnu/packages/tex.scm:2194 +#: gnu/packages/tex.scm:2391 msgid "" "This package provides hyphenation patterns for Russian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2207 +#: gnu/packages/tex.scm:2404 msgid "" "This package provides hyphenation patterns for Sanskrit and\n" "Prakrit in longdesc transliteration, and in Devanagari, Bengali, Kannada,\n" "Malayalam longdesc and Telugu scripts for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:2224 +#: gnu/packages/tex.scm:2421 msgid "" "This package provides hyphenation patterns for Serbian in\n" "T1/EC, T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2237 +#: gnu/packages/tex.scm:2434 msgid "" "This package provides hyphenation patterns for Slovak in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2249 +#: gnu/packages/tex.scm:2446 msgid "" "This package provides hyphenation patterns for Slovenian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2265 +#: gnu/packages/tex.scm:2462 msgid "" "The package provides hyphenation patterns for Spanish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2277 +#: gnu/packages/tex.scm:2474 msgid "" "This package provides hyphenation patterns for Swedish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2289 +#: gnu/packages/tex.scm:2486 msgid "" "This package provides hyphenation patterns for Thai in LTH\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2302 +#: gnu/packages/tex.scm:2499 msgid "" "The package provides hyphenation patterns for Turkish in\n" "T1/EC and UTF-8 encodings. The patterns for Turkish were first produced for\n" @@ -17158,31 +17316,31 @@ msgid "" "compatibility with 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:2319 +#: gnu/packages/tex.scm:2516 msgid "" "The package provides hyphenation patterns for Turkmen in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2331 +#: gnu/packages/tex.scm:2528 msgid "" "This package provides hyphenation patterns for Ukrainian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2344 +#: gnu/packages/tex.scm:2541 msgid "" "This package provides hyphenation patterns for Upper Sorbian\n" "in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2356 +#: gnu/packages/tex.scm:2553 msgid "" "This package provides hyphenation patterns for Welsh in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2477 +#: gnu/packages/tex.scm:2674 msgid "" "Modern native UTF-8 engines such as XeTeX and LuaTeX need\n" "hyphenation patterns in UTF-8 format, whereas older systems require\n" @@ -17195,7 +17353,7 @@ msgid "" "converters, will completely supplant the older patterns." msgstr "" -#: gnu/packages/tex.scm:2521 +#: gnu/packages/tex.scm:2718 msgid "" "The package provides experimental hyphenation patterns for\n" "the German language, covering both traditional and reformed orthography. The\n" @@ -17203,21 +17361,29 @@ msgid "" "bundle." msgstr "" -#: gnu/packages/tex.scm:2542 +#: gnu/packages/tex.scm:2739 msgid "" "The package provides a range of hyphenation patterns for\n" "Ukrainian, depending on the encoding of the output font including the standard\n" "T2A." msgstr "" -#: gnu/packages/tex.scm:2577 +#: gnu/packages/tex.scm:2774 msgid "" "The package provides a collection of Russian hyphenation\n" "patterns supporting a number of Cyrillic font encodings, including T2,\n" "UCY (Omega Unicode Cyrillic), LCY, LWN (OT2), and koi8-r." msgstr "" -#: gnu/packages/tex.scm:2620 +#: gnu/packages/tex.scm:2792 +msgid "" +"This package deals with input encodings. It provides a wider range of input\n" +"encodings using standard mappings, than does inputenc; it also covers nearly all\n" +"slots. In this way, it serves as more uptodate replacement for package\n" +"inputenc." +msgstr "" + +#: gnu/packages/tex.scm:2853 msgid "" "Kpathsea is a library and utility programs which provide\n" "path searching facilities for TeX file types, including the self-locating\n" @@ -17225,13 +17391,27 @@ msgid "" "mechanism. This package provides supporting files." msgstr "" -#: gnu/packages/tex.scm:2636 +#: gnu/packages/tex.scm:2876 +msgid "" +"The family contains text fonts in roman, sans-serif and monospaced\n" +"shapes, with true small caps and old-style numbers; the package offers full\n" +"support of the textcomp package. The mathematics fonts include all the AMS\n" +"fonts, in both normal and bold weights. Each of the font types is available\n" +"in two main versions: default and light. Each version is available in four\n" +"variants: default; oldstyle numbers; oldstyle numbers with old ligatures such\n" +"as ct and st, and long-tailed capital Q; and veryoldstyle with long s. Other\n" +"variants include small caps as default or large small caps, and for\n" +"mathematics both upright and slanted shapes for Greek letters, as well as\n" +"default and narrow versions of multiple integrals." +msgstr "" + +#: gnu/packages/tex.scm:2898 msgid "" "The package provides configuration files for LaTeX-related\n" "formats." msgstr "Dieses Paket bietet Konfigurationsdateien für LaTeX und verwandte Formate." -#: gnu/packages/tex.scm:2867 +#: gnu/packages/tex.scm:3127 msgid "" "This bundle comprises the source of LaTeX itself, together with several\n" "packages which are considered \"part of the kernel\". This bundle, together\n" @@ -17239,7 +17419,7 @@ msgid "" "contain." msgstr "" -#: gnu/packages/tex.scm:2885 +#: gnu/packages/tex.scm:3145 msgid "" "This LaTeX packages provides two hooks for @code{\\end@{document@}}\n" "that are executed after the hook of @code{\\AtEndDocument}:\n" @@ -17249,13 +17429,13 @@ msgid "" "of the @file{.aux} file." msgstr "" -#: gnu/packages/tex.scm:2905 +#: gnu/packages/tex.scm:3165 msgid "" "This package provides hooks for adding code at the beginning of\n" "@file{.aux} files." msgstr "" -#: gnu/packages/tex.scm:2921 +#: gnu/packages/tex.scm:3181 msgid "" "The package adds support for EPS files in the @code{graphicx} package\n" "when running under pdfTeX. If an EPS graphic is detected, the package\n" @@ -17263,7 +17443,7 @@ msgid "" "@command{epstopdf}." msgstr "" -#: gnu/packages/tex.scm:2943 +#: gnu/packages/tex.scm:3203 msgid "" "LaTeX2e's @code{filecontents} and @code{filecontents*} environments\n" "enable a LaTeX source file to generate external files as it runs through\n" @@ -17274,7 +17454,7 @@ msgid "" "@code{filecontents*} anywhere." msgstr "" -#: gnu/packages/tex.scm:2964 +#: gnu/packages/tex.scm:3224 msgid "" "This package provides the original (and now obsolescent) graphics\n" "inclusion macros for use with dvips, still widely used by Plain TeX users (in\n" @@ -17284,7 +17464,7 @@ msgid "" "users, via its Plain TeX version.)" msgstr "" -#: gnu/packages/tex.scm:2986 +#: gnu/packages/tex.scm:3246 msgid "" "This package provides tools for the flexible handling of verbatim text\n" "including: verbatim commands in footnotes; a variety of verbatim environments\n" @@ -17294,7 +17474,7 @@ msgid "" "verbatim source)." msgstr "" -#: gnu/packages/tex.scm:3008 +#: gnu/packages/tex.scm:3268 msgid "" "This bundle is a combined distribution consisting of @file{dvips.def},\n" "@file{pdftex.def}, @file{luatex.def}, @file{xetex.def}, @file{dvipdfmx.def},\n" @@ -17302,13 +17482,19 @@ msgid "" "packages." msgstr "" -#: gnu/packages/tex.scm:3026 +#: gnu/packages/tex.scm:3286 msgid "" "This bundle includes @file{color.cfg} and @file{graphics.cfg} files that\n" "set default \"driver\" options for the color and graphics packages." msgstr "" -#: gnu/packages/tex.scm:3048 +#: gnu/packages/tex.scm:3303 +msgid "" +"The package provides Greek LICR macro definitions and encoding definition files\n" +"for Greek text font encodings for use with fontenc." +msgstr "" + +#: gnu/packages/tex.scm:3325 msgid "" "This is a collection of LaTeX packages for producing color, including\n" "graphics (e.g. PostScript) files, and rotation and scaling of text in LaTeX\n" @@ -17316,13 +17502,13 @@ msgid "" "keyval, and lscape." msgstr "" -#: gnu/packages/tex.scm:3066 +#: gnu/packages/tex.scm:3343 msgid "" "This package provides the code for the @code{color} option that is\n" "used by @code{hyperref} and @code{bookmark}." msgstr "" -#: gnu/packages/tex.scm:3098 +#: gnu/packages/tex.scm:3375 msgid "" "The package starts from the basic facilities of the colorcolor package,\n" "and provides easy driver-independent access to several kinds of color tints,\n" @@ -17333,7 +17519,7 @@ msgid "" "tables." msgstr "" -#: gnu/packages/tex.scm:3171 +#: gnu/packages/tex.scm:3448 msgid "" "The package provides an implementation of a parser for\n" "documents matching the XML 1.0 and XML Namespace Recommendations. Element and\n" @@ -17341,7 +17527,7 @@ msgid "" "XML, using UTF-8 or a suitable 8-bit encoding." msgstr "" -#: gnu/packages/tex.scm:3222 +#: gnu/packages/tex.scm:3499 msgid "" "The @code{hyperref} package is used to handle cross-referencing commands\n" "in LaTeX to produce hypertext links in the document. The package provides\n" @@ -17353,20 +17539,20 @@ msgid "" "@code{nameref} packages, which make use of the facilities of @code{hyperref}." msgstr "" -#: gnu/packages/tex.scm:3262 +#: gnu/packages/tex.scm:3539 msgid "" "The bundle comprises various LaTeX packages, providing among others:\n" "better accessibility support for PDF files; extensible chemists reaction\n" "arrows; record information about document class(es) used; and many more." msgstr "" -#: gnu/packages/tex.scm:3285 +#: gnu/packages/tex.scm:3562 msgid "" "This package provides additional rerun warnings if some auxiliary\n" "files have changed. It is based on MD5 checksum, provided by pdfTeX." msgstr "" -#: gnu/packages/tex.scm:3319 +#: gnu/packages/tex.scm:3596 msgid "" "This package is a collection of (variously) simple tools provided as\n" "part of the LaTeX required tools distribution, comprising the following\n" @@ -17376,7 +17562,7 @@ msgid "" "xr, and xspace." msgstr "" -#: gnu/packages/tex.scm:3338 +#: gnu/packages/tex.scm:3615 msgid "" "The command @code{\\url} is a form of verbatim command that\n" "allows linebreaks at certain characters or combinations of characters, accepts\n" @@ -17388,14 +17574,14 @@ msgid "" "of file names." msgstr "" -#: gnu/packages/tex.scm:3364 +#: gnu/packages/tex.scm:3641 msgid "" "This package provides font maps that were originally part of\n" "the now obsolete teTeX distributions but are still used at the core of the TeX\n" "Live distribution." msgstr "" -#: gnu/packages/tex.scm:3391 +#: gnu/packages/tex.scm:3668 msgid "" "The l3kernel bundle provides an implementation of the LaTeX3\n" "programmers’ interface, as a set of packages that run under LaTeX 2e. The\n" @@ -17404,7 +17590,7 @@ msgid "" "that the LaTeX3 conventions can be used with regular LaTeX 2e packages." msgstr "" -#: gnu/packages/tex.scm:3420 +#: gnu/packages/tex.scm:3697 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" @@ -17413,7 +17599,7 @@ msgid "" "an independent schedule." msgstr "" -#: gnu/packages/tex.scm:3484 +#: gnu/packages/tex.scm:3761 msgid "" "This bundle holds prototype implementations of concepts for a LaTeX\n" "designer interface, to be used with the experimental LaTeX kernel as\n" @@ -17430,14 +17616,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:3511 +#: gnu/packages/tex.scm:3788 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" "here are defined for the dvips engine only." msgstr "" -#: gnu/packages/tex.scm:3539 +#: gnu/packages/tex.scm:3816 msgid "" "Fontspec is a package for XeLaTeX and LuaLaTeX. It provides an\n" "automatic and unified interface to feature-rich AAT and OpenType fonts through\n" @@ -17445,7 +17631,7 @@ msgid "" "the l3kernel and xparse bundles from the LaTeX 3 development team." msgstr "" -#: gnu/packages/tex.scm:3569 +#: gnu/packages/tex.scm:3846 msgid "" "The original grffile package extended the file name processing of the\n" "@code{graphics} package to support a larger range of file names. The base\n" @@ -17453,13 +17639,13 @@ msgid "" "is a stub that just loads @code{graphicx}." msgstr "" -#: gnu/packages/tex.scm:3610 +#: gnu/packages/tex.scm:3887 msgid "" "This package provides @code{\\StringEncodingConvert} for converting a\n" "string between different encodings. Both LaTeX and plain-TeX are supported." msgstr "" -#: gnu/packages/tex.scm:3653 +#: gnu/packages/tex.scm:3930 msgid "" "The l3build module is designed to support the development of\n" "high-quality LaTeX code by providing: a unit testing system, automated\n" @@ -17468,14 +17654,20 @@ msgid "" "@code{.tex} file which provides the testing environment." msgstr "" -#: gnu/packages/tex.scm:3690 +#: gnu/packages/tex.scm:3953 msgid "" "Lualibs is a collection of Lua modules useful for general programming.\n" "The bundle is based on Lua modules shipped with ConTeXt, and made available in\n" "this bundle for use independent of ConTeXt." msgstr "" -#: gnu/packages/tex.scm:3718 +#: gnu/packages/tex.scm:3972 +msgid "" +"This package provides a Lua module for processing application arguments\n" +"in the same way as BSD/GNU @code{getopt_long(3)} functions do." +msgstr "" + +#: gnu/packages/tex.scm:3999 msgid "" "Luaotfload is an adaptation of the ConTeXt font loading system for the\n" "Plain and LaTeX formats. It allows OpenType fonts to be loaded with font\n" @@ -17484,11 +17676,7 @@ msgid "" "loading fonts by their proper names instead of file names." msgstr "" -#: gnu/packages/tex.scm:3790 -msgid "This package is necessary to use LaTeX with the LuaTeX engine." -msgstr "" - -#: gnu/packages/tex.scm:3809 +#: gnu/packages/tex.scm:4025 msgid "" "This is the principal package in the AMS-LaTeX distribution. It adapts\n" "for use in LaTeX most of the mathematical features found in AMS-TeX; it is\n" @@ -17503,7 +17691,7 @@ msgid "" "definitions." msgstr "" -#: gnu/packages/tex.scm:3843 +#: gnu/packages/tex.scm:4059 msgid "" "This bundle contains three AMS classes: @code{amsartamsart} (for writing\n" "articles for the AMS), @code{amsbookamsbook} (for books) and\n" @@ -17512,7 +17700,7 @@ msgid "" "distribution." msgstr "" -#: gnu/packages/tex.scm:3890 +#: gnu/packages/tex.scm:4106 msgid "" "The package manages culturally-determined typographical (and other)\n" "rules, and hyphenation patterns for a wide range of languages. A document may\n" @@ -17523,7 +17711,7 @@ msgid "" "polyglossia package rather than Babel." msgstr "" -#: gnu/packages/tex.scm:3917 +#: gnu/packages/tex.scm:4133 msgid "" "This package provides the language definition file for support of\n" "English in @code{babel}. Care is taken to select British hyphenation patterns\n" @@ -17531,14 +17719,14 @@ msgid "" "for Canadian and USA text." msgstr "" -#: gnu/packages/tex.scm:3939 -#, fuzzy +#: gnu/packages/tex.scm:4173 msgid "" -"This package provides support for the French language for the\n" -"babel multilingual system." -msgstr "Dieses Paket bietet ein Wörterbuch für das GNU-Aspell-Rechtschreibprüfprogramm." +"The package, formerly known as frenchb, establishes French conventions\n" +"in a document (or a subset of the conventions, if French is not the main\n" +"language of the document)." +msgstr "" -#: gnu/packages/tex.scm:3959 +#: gnu/packages/tex.scm:4196 msgid "" "This package provides the language definition file for support of German\n" "in @code{babel}. It provides all the necessary macros, definitions and\n" @@ -17547,14 +17735,14 @@ msgid "" "Swiss varieties of German." msgstr "" -#: gnu/packages/tex.scm:3986 +#: gnu/packages/tex.scm:4223 msgid "" "This package provides the language definition file for\n" "support of Swedish in @code{babel}. It provides all the necessary macros,\n" "definitions and settings to typeset Swedish documents." msgstr "" -#: gnu/packages/tex.scm:4008 +#: gnu/packages/tex.scm:4245 msgid "" "This bundle of macros files provides macro support (including font\n" "encoding macros) for the use of Cyrillic characters in fonts encoded under the\n" @@ -17562,7 +17750,7 @@ msgid "" "language that is written in a Cyrillic alphabet." msgstr "" -#: gnu/packages/tex.scm:4126 +#: gnu/packages/tex.scm:4363 msgid "" "The PSNFSS collection includes a set of files that provide a complete\n" "working setup of the LaTeX font selection scheme (NFSS2) for use with common\n" @@ -17577,20 +17765,20 @@ msgid "" "part of the LaTeX required set of packages." msgstr "" -#: gnu/packages/tex.scm:4177 gnu/packages/tex.scm:4269 +#: gnu/packages/tex.scm:4414 gnu/packages/tex.scm:4506 msgid "" "This is a very limited subset of the TeX Live distribution.\n" "It includes little more than the required set of LaTeX packages." msgstr "" -#: gnu/packages/tex.scm:4248 +#: gnu/packages/tex.scm:4485 msgid "" "This package contains the fonts map configuration file\n" "generated for the base TeX Live packages as well as, optionally, user-provided\n" "ones." msgstr "" -#: gnu/packages/tex.scm:4288 +#: gnu/packages/tex.scm:4525 msgid "" "These fonts are considered the \"ultimate answer\" to IPA\n" "typesetting. The encoding of these 8-bit fonts has been registered as LaTeX\n" @@ -17599,7 +17787,7 @@ msgid "" "TS3 fonts." msgstr "" -#: gnu/packages/tex.scm:4311 +#: gnu/packages/tex.scm:4548 msgid "" "Amsrefs is a LaTeX package for bibliographies that provides an archival\n" "data format similar to the format of BibTeX database files, but adapted to\n" @@ -17607,7 +17795,7 @@ msgid "" "conjunction with BibTeX or as a replacement for BibTeX." msgstr "" -#: gnu/packages/tex.scm:4340 +#: gnu/packages/tex.scm:4577 msgid "" "This package aims to provide a one-stop solution to requirements for\n" "footnotes. It offers: Multiple footnote apparatus superior to that of\n" @@ -17621,7 +17809,7 @@ msgid "" "@code{suffix} packages." msgstr "" -#: gnu/packages/tex.scm:4368 +#: gnu/packages/tex.scm:4605 msgid "" "The package provides the commands @code{\\blindtext} and\n" "@code{\\Blindtext} for creating \"blind\" text useful in testing new classes\n" @@ -17632,7 +17820,7 @@ msgid "" "ipsum\" text, see the @code{lipsum} package)." msgstr "" -#: gnu/packages/tex.scm:4407 +#: gnu/packages/tex.scm:4644 msgid "" "This package implements a document layout for writing letters according\n" "to the rules of DIN (Deutsches Institut für Normung, German standardisation\n" @@ -17644,7 +17832,7 @@ msgid "" "package." msgstr "" -#: gnu/packages/tex.scm:4433 +#: gnu/packages/tex.scm:4670 msgid "" "This package provides a means to add a textual, light grey watermark on\n" "every page or on the first page of a document. Typical usage may consist in\n" @@ -17654,7 +17842,7 @@ msgid "" "on everypage." msgstr "" -#: gnu/packages/tex.scm:4457 +#: gnu/packages/tex.scm:4694 msgid "" "This package provides the @code{\\collect@@body} command (as in\n" "@code{amsmath}), as well as a @code{\\long} version @code{\\Collect@@Body},\n" @@ -17662,7 +17850,7 @@ msgid "" "define a new author interface to creating new environments." msgstr "" -#: gnu/packages/tex.scm:4479 +#: gnu/packages/tex.scm:4716 msgid "" "LaTeX users sometimes need to ensure that two or more blocks of text\n" "occupy the same amount of horizontal space on the page. To that end, the\n" @@ -17676,7 +17864,7 @@ msgid "" "also provided." msgstr "" -#: gnu/packages/tex.scm:4504 +#: gnu/packages/tex.scm:4741 msgid "" "This package gives the user complete control of how the entries of\n" "the table of contents should be constituted from the name, number, and page\n" @@ -17696,7 +17884,7 @@ msgid "" "table of contents." msgstr "" -#: gnu/packages/tex.scm:4546 +#: gnu/packages/tex.scm:4783 msgid "" "The package provides additional features for the LaTeX\n" "@code{description} environment, including adjustable left margin. The package\n" @@ -17705,7 +17893,7 @@ msgid "" "@code{enumerate} lists, and numbered lists remain in sequence)." msgstr "" -#: gnu/packages/tex.scm:4566 +#: gnu/packages/tex.scm:4803 msgid "" "This package provides macros to read and compare the modification dates\n" "of files. The files may be @code{.tex} files, images or other files (as long\n" @@ -17717,14 +17905,14 @@ msgid "" "but non-expandable ones." msgstr "" -#: gnu/packages/tex.scm:4589 +#: gnu/packages/tex.scm:4826 msgid "" "The @code{hanging} package facilitates the typesetting of hanging\n" "paragraphs. The package also enables typesetting with hanging punctuation,\n" "by making punctuation characters active." msgstr "" -#: gnu/packages/tex.scm:4612 +#: gnu/packages/tex.scm:4849 msgid "" "This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX support for\n" "the Fira Sans family of fonts designed by Erik Spiekermann and Ralph du\n" @@ -17732,7 +17920,7 @@ msgid "" "corresponding italics: light, regular, medium, bold, ..." msgstr "" -#: gnu/packages/tex.scm:4635 +#: gnu/packages/tex.scm:4872 msgid "" "This package uses the (La)TeX extension @code{-shell-escape} to\n" "establish whether the document is being processed on a Windows or on a\n" @@ -17743,7 +17931,7 @@ msgid "" "classes of systems." msgstr "" -#: gnu/packages/tex.scm:4660 +#: gnu/packages/tex.scm:4897 msgid "" "This bundle provides a package that implements both author-year and\n" "numbered references, as well as much detailed of support for other\n" @@ -17753,20 +17941,20 @@ msgid "" "designed from the start to be compatible with @code{natbib}." msgstr "" -#: gnu/packages/tex.scm:4679 +#: gnu/packages/tex.scm:4916 msgid "" "This package provides a friendly interface for defining the meaning of\n" "Unicode characters. The document should be processed by (pdf)LaTeX with the\n" "Unicode option of @code{inputenc} or @code{inputenx}, or by XeLaTeX/LuaLaTeX." msgstr "" -#: gnu/packages/tex.scm:4699 +#: gnu/packages/tex.scm:4936 msgid "" "This package makes a number of utility functions from pdfTeX\n" "available for luaTeX by reimplementing them using Lua." msgstr "" -#: gnu/packages/tex.scm:4719 +#: gnu/packages/tex.scm:4956 msgid "" "This package allows LaTeX constructions (equations, picture\n" "environments, etc.) to be precisely superimposed over Encapsulated PostScript\n" @@ -17777,7 +17965,7 @@ msgid "" "rotated." msgstr "" -#: gnu/packages/tex.scm:4751 +#: gnu/packages/tex.scm:4988 msgid "" "This is a package for processing PostScript graphics with @code{psfrag}\n" "labels within pdfLaTeX documents. Every graphic is compiled individually,\n" @@ -17785,7 +17973,7 @@ msgid "" "re-processing." msgstr "" -#: gnu/packages/tex.scm:4771 +#: gnu/packages/tex.scm:5008 msgid "" "This package provides the @code{\\setcounterref} and\n" "@code{\\addtocounterref} commands which use the section (or other) number\n" @@ -17794,7 +17982,7 @@ msgid "" "corresponding thing with the page reference of the label." msgstr "" -#: gnu/packages/tex.scm:4791 +#: gnu/packages/tex.scm:5028 msgid "" "This package provides a class that produces overhead\n" "slides (transparencies), with many facilities. Seminar is not nowadays\n" @@ -17803,14 +17991,14 @@ msgid "" "21st-century presentation styles." msgstr "" -#: gnu/packages/tex.scm:4812 +#: gnu/packages/tex.scm:5049 msgid "" "The package provides a versatile way to stack objects vertically in a\n" "variety of customizable ways. A number of useful macros are provided, all\n" "of which make use of the @code{stackengine} core." msgstr "" -#: gnu/packages/tex.scm:4828 +#: gnu/packages/tex.scm:5065 msgid "" "This package provides control over the typography of the\n" "@dfn{Table of Contents}, @dfn{List of Figures} and @dfn{List of Tables},\n" @@ -17818,7 +18006,7 @@ msgid "" "be changed." msgstr "" -#: gnu/packages/tex.scm:4862 +#: gnu/packages/tex.scm:5099 msgid "" "This very short package allows you to expandably remove spaces around a\n" "token list (commands are provided to remove spaces before, spaces after, or\n" @@ -17826,13 +18014,30 @@ msgid "" "space-stripped macros." msgstr "" -#: gnu/packages/tex.scm:4897 +#: gnu/packages/tex.scm:5115 +#, fuzzy +#| msgid "" +#| "This package provides a dictionary for the Hunspell spell-checking\n" +#| "library." +msgid "This package provides a math interface to the Rsfs fonts." +msgstr "Dieses Paket bietet ein Wörterbuch für die Hunspell-Rechtschreibbibliothek." + +#: gnu/packages/tex.scm:5152 msgid "" "This package defines a command @code{\\captionof} for putting a caption\n" "to something that's not a float." msgstr "" -#: gnu/packages/tex.scm:4913 +#: gnu/packages/tex.scm:5170 +msgid "" +"Many of David Carlisle's more substantial packages stand on their own,\n" +"or as part of the LaTeX latex-tools set; this set contains: making dotless\n" +"@emph{j} characters for fonts that don't have them; a method for combining the\n" +"capabilities of longtable and tabularx; an environment for including plain TeX\n" +"in LaTeX documents; a jiffy to create slashed characters for physicists." +msgstr "" + +#: gnu/packages/tex.scm:5189 msgid "" "You can hyperlink DOI numbers to doi.org. However, some publishers have\n" "elected to use nasty characters in their DOI numbering scheme (@code{<},\n" @@ -17842,7 +18047,7 @@ msgid "" "hyperlink to the target of the DOI." msgstr "" -#: gnu/packages/tex.scm:4936 +#: gnu/packages/tex.scm:5212 msgid "" "This package is a toolbox of programming facilities geared primarily\n" "towards LaTeX class and package authors. It provides LaTeX frontends to some\n" @@ -17853,7 +18058,7 @@ msgid "" "of the LaTeX kernel." msgstr "" -#: gnu/packages/tex.scm:4976 +#: gnu/packages/tex.scm:5252 msgid "" "This package provides seven predefined chapter heading styles. Each\n" "style can be modified using a set of simple commands. Optionally one can\n" @@ -17861,7 +18066,7 @@ msgid "" "headings." msgstr "" -#: gnu/packages/tex.scm:5011 +#: gnu/packages/tex.scm:5287 msgid "" "The package creates three environments: @code{framed}, which puts an\n" "ordinary frame box around the region, @code{shaded}, which shades the region,\n" @@ -17872,7 +18077,7 @@ msgid "" "@code{\\MakeFramed} to make your own framed-style environments." msgstr "" -#: gnu/packages/tex.scm:5045 +#: gnu/packages/tex.scm:5321 msgid "" "This package is designed for formatting formless letters in German; it\n" "can also be used for English (by those who can read the documentation). There\n" @@ -17880,13 +18085,13 @@ msgid "" "\"old\" and a \"new\" version of g-brief." msgstr "" -#: gnu/packages/tex.scm:5067 +#: gnu/packages/tex.scm:5343 msgid "" "The package deals with connections in two-dimensional style, optionally\n" "in colour." msgstr "" -#: gnu/packages/tex.scm:5087 +#: gnu/packages/tex.scm:5363 msgid "" "The package allows citations in the German style, which is considered by\n" "many to be particularly reader-friendly. The citation provides a small amount\n" @@ -17896,7 +18101,7 @@ msgid "" "BibLaTeX, and is considered experimental." msgstr "" -#: gnu/packages/tex.scm:5113 +#: gnu/packages/tex.scm:5389 msgid "" "This package provides an easy and flexible user interface to customize\n" "page layout, implementing auto-centering and auto-balancing mechanisms so that\n" @@ -17907,7 +18112,7 @@ msgid "" "ability to communicate the paper size it's set up to the output." msgstr "" -#: gnu/packages/tex.scm:5138 +#: gnu/packages/tex.scm:5414 msgid "" "This collection of tools includes: @code{atsupport} for short commands\n" "starting with @code{@@}, macros to sanitize the OT1 encoding of the\n" @@ -17917,13 +18122,13 @@ msgid "" "array environments; verbatim handling; and syntax diagrams." msgstr "" -#: gnu/packages/tex.scm:5162 +#: gnu/packages/tex.scm:5438 msgid "" "This package provides a complete Babel replacement for users of LuaLaTeX\n" "and XeLaTeX; it relies on the @code{fontspec} package, version 2.0 at least." msgstr "" -#: gnu/packages/tex.scm:5182 +#: gnu/packages/tex.scm:5458 msgid "" "This package was a predecessor of @code{longtable}; the newer\n" "package (designed on quite different principles) is easier to use and more\n" @@ -17931,7 +18136,7 @@ msgid "" "situations where longtable has problems." msgstr "" -#: gnu/packages/tex.scm:5217 +#: gnu/packages/tex.scm:5493 msgid "" "Texinfo is the preferred format for documentation in the GNU project;\n" "the format may be used to produce online or printed output from a single\n" @@ -17940,7 +18145,23 @@ msgid "" "hypertext linkages in some cases)." msgstr "" -#: gnu/packages/tex.scm:5240 +#: gnu/packages/tex.scm:5513 +msgid "" +"The textcase package offers commands @code{\\MakeTextUppercase} and\n" +"@code{\\MakeTextLowercase} are similar to the standard @code{\\MakeUppercase}\n" +"and @code{\\MakeLowercase}, but they do not change the case of any sections of\n" +"mathematics, or the arguments of @code{\\cite}, @code{\\label} and\n" +"@code{\\ref} commands within the argument. A further command\n" +"@code{\\NoCaseChange} does nothing but suppress case change within its\n" +"argument, so to force uppercase of a section including an environment, one\n" +"might say:\n" +"\n" +"@example\n" +"\\MakeTextUppercase{...\\NoCaseChange{\\begin{foo}} ...\\NoCaseChange{\\end{foo}}...}\n" +"@end example\n" +msgstr "" + +#: gnu/packages/tex.scm:5543 msgid "" "Typewriter-style fonts are best for program listings, but Computer\n" "Modern Typewriter prints @code{`} and @code{'} as bent opening and closing\n" @@ -17954,14 +18175,14 @@ msgid "" "does not affect @code{\\tt}, @code{\\texttt}, etc." msgstr "" -#: gnu/packages/tex.scm:5281 +#: gnu/packages/tex.scm:5584 msgid "" "This is a simple package to set up document margins. This package is\n" "considered obsolete; alternatives are the @code{typearea} package from the\n" "@code{koma-script} bundle, or the @code{geometry} package." msgstr "" -#: gnu/packages/tex.scm:5302 +#: gnu/packages/tex.scm:5605 msgid "" "The appendix package provides various ways of formatting the titles of\n" "appendices. Also (sub)appendices environments are provided that can be used,\n" @@ -17970,14 +18191,14 @@ msgid "" "command." msgstr "" -#: gnu/packages/tex.scm:5321 +#: gnu/packages/tex.scm:5624 msgid "" "This package implements a new bookmark (outline) organization for the\n" "@code{hyperref} package. Bookmark properties such as style and color. Other\n" "action types are available (URI, GoToR, Named)." msgstr "" -#: gnu/packages/tex.scm:5342 +#: gnu/packages/tex.scm:5645 msgid "" "Identify areas of text to be marked with changebars with the\n" "@code{\\cbstart} and @code{\\cbend} commands; the bars may be coloured. The\n" @@ -17986,19 +18207,19 @@ msgid "" "drivers, and VTeX and pdfTeX." msgstr "" -#: gnu/packages/tex.scm:5379 +#: gnu/packages/tex.scm:5682 msgid "" "This package embeds CMap tables into PDF files to make search and\n" "copy-and-paste functions work properly." msgstr "" -#: gnu/packages/tex.scm:5399 +#: gnu/packages/tex.scm:5702 msgid "" "This package allows rows, columns, and even individual cells in LaTeX\n" "tables to be coloured." msgstr "" -#: gnu/packages/tex.scm:5432 +#: gnu/packages/tex.scm:5735 msgid "" "This package provides variants of @code{\\fbox}: @code{\\shadowbox},\n" "@code{\\doublebox}, @code{\\ovalbox}, @code{\\Ovalbox}, with helpful tools for\n" @@ -18006,14 +18227,14 @@ msgid "" "floats, center, flushleft, and flushright, lists, and pages." msgstr "" -#: gnu/packages/tex.scm:5467 +#: gnu/packages/tex.scm:5770 msgid "" "The package provides extensive facilities, both for constructing headers\n" "and footers, and for controlling their use (for example, at times when LaTeX\n" "would automatically change the heading style in use)." msgstr "" -#: gnu/packages/tex.scm:5488 +#: gnu/packages/tex.scm:5791 msgid "" "This package improves the interface for defining floating objects such\n" "as figures and tables. It introduces the boxed float, the ruled float and the\n" @@ -18023,7 +18244,7 @@ msgid "" "with @code{\\floatplacement{figure}{H}}." msgstr "" -#: gnu/packages/tex.scm:5512 +#: gnu/packages/tex.scm:5815 msgid "" "This is a collection of ways to change the typesetting of footnotes.\n" "The package provides means of changing the layout of the footnotes themselves,\n" @@ -18033,7 +18254,7 @@ msgid "" "footnotes with symbols rather than numbers." msgstr "" -#: gnu/packages/tex.scm:5532 +#: gnu/packages/tex.scm:5835 msgid "" "TeX’s @code{\\let} assignment does not work for LaTeX macros with\n" "optional arguments, or for macros that are defined as robust macros by\n" @@ -18041,7 +18262,7 @@ msgid "" "that also takes care of the involved internal macros." msgstr "" -#: gnu/packages/tex.scm:5556 +#: gnu/packages/tex.scm:5859 msgid "" "The package enables the user to typeset programs (programming code)\n" "within LaTeX; the source code is read directly by TeX---no front-end processor\n" @@ -18049,7 +18270,7 @@ msgid "" "styles. Support for @code{hyperref} is provided." msgstr "" -#: gnu/packages/tex.scm:5591 +#: gnu/packages/tex.scm:5894 msgid "" "This package provides miscellaneous macros by Joerg Knappen, including:\n" "represent counters in greek; Maxwell's non-commutative division;\n" @@ -18061,13 +18282,13 @@ msgid "" "in SGML; use maths minus in text as appropriate; simple Young tableaux." msgstr "" -#: gnu/packages/tex.scm:5615 +#: gnu/packages/tex.scm:5918 msgid "" "This package provides facilities for using key-value format in\n" "package options." msgstr "" -#: gnu/packages/tex.scm:5684 +#: gnu/packages/tex.scm:5987 msgid "" "The EC fonts are European Computer Modern Fonts, supporting the complete\n" "LaTeX T1 encoding defined at the 1990 TUG conference hold at Cork/Ireland.\n" @@ -18084,7 +18305,7 @@ msgid "" "differs from the EC in a number of particulars." msgstr "" -#: gnu/packages/tex.scm:5717 +#: gnu/packages/tex.scm:6020 msgid "" "This package provides a set of virtual fonts which emulates T1 coded\n" "fonts using the standard CM fonts. The package name, AE fonts, supposedly\n" @@ -18094,7 +18315,7 @@ msgid "" "via the CM-super, Latin Modern and (in a restricted way) CM-LGC font sets." msgstr "" -#: gnu/packages/tex.scm:5742 +#: gnu/packages/tex.scm:6045 msgid "" "Inconsolata is a monospaced font designed by Raph Levien. This package\n" "contains the font (in both Adobe Type 1 and OpenType formats) in regular and\n" @@ -18103,25 +18324,25 @@ msgid "" "TeX, and LaTeX font definition and other relevant files." msgstr "" -#: gnu/packages/tex.scm:5771 +#: gnu/packages/tex.scm:6074 msgid "" "This package provides a drop-in replacements for the Times font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5799 +#: gnu/packages/tex.scm:6102 msgid "" "This package provides a drop-in replacements for the Palatino font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5824 +#: gnu/packages/tex.scm:6127 msgid "" "This package provides a drop-in replacements for the Zapfding font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5896 +#: gnu/packages/tex.scm:6199 msgid "" "The fonts provide uppercase formal script letters for use as symbols in\n" "scientific and mathematical typesetting (in contrast to the informal script\n" @@ -18131,14 +18352,14 @@ msgid "" "one of the packages @code{calrsfs} and @code{mathrsfs}." msgstr "" -#: gnu/packages/tex.scm:5920 +#: gnu/packages/tex.scm:6223 msgid "" "The package adds one or more user commands to LaTeX's @code{shipout}\n" "routine, which may be used to place the output at fixed positions. The\n" "@code{grid} option may be used to find the correct places." msgstr "" -#: gnu/packages/tex.scm:5954 +#: gnu/packages/tex.scm:6257 msgid "" "Extensions to @code{epic} and the LaTeX picture drawing environment,\n" "include the drawing of lines at any slope, the drawing of circles in any\n" @@ -18148,7 +18369,7 @@ msgid "" "@code{\\special} commands." msgstr "" -#: gnu/packages/tex.scm:5991 +#: gnu/packages/tex.scm:6276 msgid "" "This package is intended to ease customizing the three basic list\n" "environments: @code{enumerate}, @code{itemize} and @code{description}. It\n" @@ -18157,14 +18378,14 @@ msgid "" "@code{\\begin{itemize}[itemsep=1ex,leftmargin=1cm]}." msgstr "" -#: gnu/packages/tex.scm:6014 +#: gnu/packages/tex.scm:6301 msgid "" "The package provides tools for creating tabular cells spanning multiple\n" "rows. It has a lot of flexibility, including an option for specifying an\n" "entry at the \"natural\" width of its text." msgstr "" -#: gnu/packages/tex.scm:6048 +#: gnu/packages/tex.scm:6335 msgid "" "The @code{overpic} environment is a cross between the LaTeX\n" "@code{picture} environment and the @code{\\includegraphics} command of\n" @@ -18173,14 +18394,14 @@ msgid "" "positions; a grid for orientation is available." msgstr "" -#: gnu/packages/tex.scm:6084 +#: gnu/packages/tex.scm:6371 msgid "" "Simply changing @code{\\parskip} and @code{\\parindent} leaves a layout\n" "that is untidy; this package (though it is no substitute for a properly\n" "designed class) helps alleviate this untidiness." msgstr "" -#: gnu/packages/tex.scm:6105 +#: gnu/packages/tex.scm:6392 msgid "" "This package simplifies the inclusion of external multi-page PDF\n" "documents in LaTeX documents. Pages may be freely selected and it is possible\n" @@ -18190,7 +18411,7 @@ msgid "" "use this package to insert PostScript files, in addition to PDF files." msgstr "" -#: gnu/packages/tex.scm:6146 +#: gnu/packages/tex.scm:6433 msgid "" "The fonts were originally distributed as Metafont sources only, but\n" "Adobe Type 1 versions are also now available. Macro support is provided for\n" @@ -18199,7 +18420,7 @@ msgid "" "the whole font." msgstr "" -#: gnu/packages/tex.scm:6171 +#: gnu/packages/tex.scm:6458 msgid "" "This (deprecated) package provides support for the manipulation and\n" "reference of small or \"sub\" figures and tables within a single figure or\n" @@ -18212,7 +18433,7 @@ msgid "" "the more recent @code{subcaption} package more satisfactory." msgstr "" -#: gnu/packages/tex.scm:6198 +#: gnu/packages/tex.scm:6485 msgid "" "The package defines a @code{tabular*}-like environment, @code{tabulary},\n" "taking a \"total width\" argument as well as the column specifications. The\n" @@ -18223,7 +18444,7 @@ msgid "" "according to the natural width of the widest cell in the column." msgstr "" -#: gnu/packages/tex.scm:6236 +#: gnu/packages/tex.scm:6523 msgid "" "This package facilitates tables with titles (captions) and notes. The\n" "title and notes are given a width equal to the body of the table (a\n" @@ -18232,7 +18453,7 @@ msgid "" "environment." msgstr "" -#: gnu/packages/tex.scm:6263 +#: gnu/packages/tex.scm:6550 msgid "" "Txfonts supplies virtual text roman fonts using Adobe Times (or URW\n" "NimbusRomNo9L) with some modified and additional text symbols in the OT1, T1,\n" @@ -18248,7 +18469,7 @@ msgid "" "TeX metrics (VF and TFM files) and macros for use with LaTeX." msgstr "" -#: gnu/packages/tex.scm:6312 +#: gnu/packages/tex.scm:6599 msgid "" "Iwona is a two-element sans-serif typeface. It was created\n" "as an alternative version of the Kurier typeface, which was designed in 1975\n" @@ -18259,7 +18480,7 @@ msgid "" "of ink traps which typify the Kurier font." msgstr "" -#: gnu/packages/tex.scm:6335 +#: gnu/packages/tex.scm:6622 msgid "" "This package contains a collection of macros by Jörg Knappen:\n" "@table @code\n" @@ -18295,7 +18516,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/tex.scm:6442 +#: gnu/packages/tex.scm:6729 msgid "" "JadeTeX is a companion package to the OpenJade DSSSL\n" "processor. OpenJade applies a DSSSL stylesheet to an SGML or XML document.\n" @@ -18306,7 +18527,7 @@ msgid "" "command)." msgstr "" -#: gnu/packages/tex.scm:6472 +#: gnu/packages/tex.scm:6759 msgid "" "The package provides the Libertine and Biolinum fonts in both Type 1 and\n" "OTF styles, together with support macros for their use. Monospaced and\n" @@ -18316,7 +18537,7 @@ msgid "" "@code{libertine-legacy} packages." msgstr "" -#: gnu/packages/tex.scm:6504 +#: gnu/packages/tex.scm:6791 msgid "" "The package contains LaTeX support for the DejaVu fonts, which are\n" "derived from the Vera fonts but contain more characters and styles. The fonts\n" @@ -18325,7 +18546,7 @@ msgid "" "LGR. The package doesn't (currently) support mathematics." msgstr "" -#: gnu/packages/tex.scm:6540 +#: gnu/packages/tex.scm:6827 msgid "" "This package provides an interface to sectioning commands for selection\n" "from various title styles, e.g. for marginal titles and to change the font of\n" @@ -18334,7 +18555,7 @@ msgid "" "floats in a page. You may assign headers/footers to individual floats, too." msgstr "" -#: gnu/packages/tex.scm:6563 +#: gnu/packages/tex.scm:6850 msgid "" "LaTeX, by default, restricts the sizes at which you can use its default\n" "computer modern fonts, to a fixed set of discrete sizes (effectively, a set\n" @@ -18349,7 +18570,7 @@ msgid "" "@code{ec} fonts." msgstr "" -#: gnu/packages/tex.scm:6617 +#: gnu/packages/tex.scm:6904 msgid "" "The LH fonts address the problem of the wide variety of alphabets that\n" "are written with Cyrillic-style characters. The fonts are the original basis\n" @@ -18362,7 +18583,7 @@ msgid "" "OT2 encoded fonts, CM bright shaped fonts and Concrete shaped fonts." msgstr "" -#: gnu/packages/tex.scm:6647 +#: gnu/packages/tex.scm:6934 msgid "" "The Martin Vogel’s Symbols fonts (marvosym) contains the\n" "Euro currency symbol as defined by the European commission, along with symbols\n" @@ -18372,34 +18593,41 @@ msgid "" "the derived Type 1 font, together with support files for TeX (LaTeX)." msgstr "" -#: gnu/packages/tex.scm:6685 +#: gnu/packages/tex.scm:6972 msgid "" "MetaPost uses a language based on that of Metafont to produce precise\n" "technical illustrations. Its output is scalable PostScript or SVG, rather\n" "than the bitmaps Metafont creates." msgstr "" -#: gnu/packages/tex.scm:6706 +#: gnu/packages/tex.scm:6993 msgid "" "This package provides a class for typesetting publications of the\n" "Association for Computing Machinery (ACM)." msgstr "" -#: gnu/packages/tex.scm:6739 +#: gnu/packages/tex.scm:7026 msgid "" "The @code{varwidth} environment is superficially similar to\n" "@code{minipage}, but the specified width is just a maximum value — the box may\n" "get a narrower “natural” width." msgstr "" -#: gnu/packages/tex.scm:6757 +#: gnu/packages/tex.scm:7041 +msgid "" +"The varwidth environment is superficially similar to minipage, but the\n" +"specified width is just a maximum value --- the box may get a narrower natural\n" +"width." +msgstr "" + +#: gnu/packages/tex.scm:7059 msgid "" "This package provides the @code{wasy} (Waldi symbol) fonts,\n" "in the Metafont and Adobe Type 1 formats. Support under LaTeX is provided by\n" "the @code{wasysym} package." msgstr "" -#: gnu/packages/tex.scm:6778 +#: gnu/packages/tex.scm:7080 msgid "" "The @code{wasy} (Waldi Symbol) font by Roland Waldi provides many glyphs like\n" "male and female symbols and astronomical symbols, as well as the complete\n" @@ -18407,14 +18635,14 @@ msgid "" "implements an easy to use interface for these symbols." msgstr "" -#: gnu/packages/tex.scm:6815 +#: gnu/packages/tex.scm:7117 msgid "" "This package allows figures or tables to have text wrapped around them.\n" "It does not work in combination with list environments, but can be used in a\n" "@code{parbox} or @code{minipage}, and in two-column format." msgstr "" -#: gnu/packages/tex.scm:6849 +#: gnu/packages/tex.scm:7151 msgid "" "The bundle provides the @code{ucs} package, and @code{utf8x.def},\n" "together with a large number of support files. The @code{utf8x.def}\n" @@ -18427,7 +18655,7 @@ msgid "" "package of that name now exists." msgstr "" -#: gnu/packages/tex.scm:6883 +#: gnu/packages/tex.scm:7185 msgid "" "The main purpose of the preview package is the extraction of selected\n" "elements from a LaTeX source, like formulas or graphics, into separate\n" @@ -18438,7 +18666,7 @@ msgid "" "files." msgstr "" -#: gnu/packages/tex.scm:6908 +#: gnu/packages/tex.scm:7210 msgid "" "This package ensures that all acronyms used in the text are spelled out\n" "in full at least once. It also provides an environment to build a list of\n" @@ -18447,13 +18675,13 @@ msgid "" "e-TeX." msgstr "" -#: gnu/packages/tex.scm:6945 +#: gnu/packages/tex.scm:7247 msgid "" "This package provides an extension of TeX which can be configured to\n" "directly generate PDF documents instead of DVI." msgstr "" -#: gnu/packages/tex.scm:7025 +#: gnu/packages/tex.scm:7327 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18463,7 +18691,7 @@ msgid "" "This package contains the complete tree of texmf-dist data." msgstr "" -#: gnu/packages/tex.scm:7088 +#: gnu/packages/tex.scm:7390 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18473,7 +18701,7 @@ msgid "" "This package contains the complete TeX Live distribution." msgstr "" -#: gnu/packages/tex.scm:7130 +#: gnu/packages/tex.scm:7432 msgid "" "@code{Text::BibTeX} is a Perl library for reading, parsing,\n" "and processing BibTeX files. @code{Text::BibTeX} gives you access to the data\n" @@ -18482,13 +18710,13 @@ msgid "" "values (strings, macros, or numbers) pasted together." msgstr "" -#: gnu/packages/tex.scm:7216 +#: gnu/packages/tex.scm:7518 msgid "" "Biber is a BibTeX replacement for users of biblatex. Among\n" "other things it comes with full Unicode support." msgstr "" -#: gnu/packages/tex.scm:7250 +#: gnu/packages/tex.scm:7552 msgid "" "Rubber is a program whose purpose is to handle all tasks related to the\n" "compilation of LaTeX documents. This includes compiling the document itself,\n" @@ -18498,20 +18726,20 @@ msgid "" "PDF documents." msgstr "" -#: gnu/packages/tex.scm:7289 +#: gnu/packages/tex.scm:7591 msgid "" "Texmaker is a program that integrates many tools needed to\n" "develop documents with LaTeX, in a single application." msgstr "" -#: gnu/packages/tex.scm:7330 +#: gnu/packages/tex.scm:7632 msgid "" "@i{TeX for the Impatient} is a ~350 page book on TeX,\n" "plain TeX, and Eplain, originally written by Paul Abrahams, Kathryn Hargreaves,\n" "and Karl Berry." msgstr "" -#: gnu/packages/tex.scm:7394 +#: gnu/packages/tex.scm:7696 msgid "" "LyX is a document preparation system. It excels at letting\n" "you create complex technical and scientific articles with mathematics,\n" @@ -18520,7 +18748,7 @@ msgid "" "required: automatic sectioning and pagination, spell checking and so forth." msgstr "" -#: gnu/packages/tex.scm:7430 +#: gnu/packages/tex.scm:7732 msgid "" "The package provides an interface to embed interactive Flash (SWF) and 3D\n" "objects (Adobe U3D & PRC), as well as video and sound files or streams in the\n" @@ -18533,7 +18761,7 @@ msgid "" "specification. It replaces the now obsolete @code{movie15} package." msgstr "" -#: gnu/packages/tex.scm:7470 +#: gnu/packages/tex.scm:7772 msgid "" "This package provides OCG (Optional Content Groups) support within a PDF\n" "document.\n" @@ -18551,7 +18779,7 @@ msgid "" "It also ensures compatibility with the @code{media9} and @code{animate} packages." msgstr "" -#: gnu/packages/tex.scm:7504 +#: gnu/packages/tex.scm:7806 msgid "" "A bundle of LATEX packages by Martin Schröder; the collection comprises:\n" "\n" @@ -18565,7 +18793,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/tex.scm:7532 +#: gnu/packages/tex.scm:7852 msgid "" "The package numprint prints numbers with a separator every three\n" "digits and converts numbers given as 12345.6e789 to 12\\,345,6\\cdot\n" @@ -18586,14 +18814,14 @@ msgid "" "and after the formatted number." msgstr "" -#: gnu/packages/tex.scm:7571 +#: gnu/packages/tex.scm:7893 msgid "" "Provides commands to disable pagebreaking within a given vertical\n" "space. If there is not enough space between the command and the bottom of the\n" "page, a new page will be started." msgstr "" -#: gnu/packages/tex.scm:7597 +#: gnu/packages/tex.scm:7919 msgid "" "The package provides commands to change the page layout in the middle of\n" "a document, and to robustly check for typesetting on odd or even pages.\n" @@ -18601,7 +18829,7 @@ msgid "" "of code from the @code{memoir} class, whose user interface it shares." msgstr "" -#: gnu/packages/tex.scm:7633 +#: gnu/packages/tex.scm:7955 msgid "" "The package is used to change the format of @code{\\today}’s date,\n" "including the weekday, e.g., \"Saturday, 26 June 2008\", the 'UK format', which\n" @@ -18609,7 +18837,7 @@ msgid "" "@code{\\maketitle} of the article class, \"June 26, 2008\", the 'US format'." msgstr "" -#: gnu/packages/tex.scm:7669 +#: gnu/packages/tex.scm:7971 msgid "" "The package provides an @code{\\ul} (underline) command which will break\n" "over line ends; this technique may be used to replace @code{\\em} (both in that\n" @@ -18618,7 +18846,7 @@ msgid "" "striking out (line through words) and crossing out (/// over words)." msgstr "" -#: gnu/packages/tex.scm:7725 +#: gnu/packages/tex.scm:8029 msgid "" "PGF is a macro package for creating graphics. It is platform- and\n" "format-independent and works together with the most important TeX backend\n" @@ -18630,7 +18858,7 @@ msgid "" "produce either PostScript or PDF output." msgstr "" -#: gnu/packages/tex.scm:7771 +#: gnu/packages/tex.scm:8075 msgid "" "The KOMA-Script bundle provides replacements for the article, report, and\n" "book classes with emphasis on typography and versatility. There is also a\n" @@ -18655,7 +18883,7 @@ msgid "" "typearea (which are the main parts of the bundle)." msgstr "" -#: gnu/packages/tex.scm:7806 +#: gnu/packages/tex.scm:8110 msgid "" "This package is a modern reimplementation of package @code{everyshi},\n" "providing various commands to be executed before a @code{\\shipout} command.\n" @@ -18663,20 +18891,20 @@ msgid "" "be used either with LaTeX or with plain TeX." msgstr "" -#: gnu/packages/tex.scm:7826 +#: gnu/packages/tex.scm:8130 msgid "" "This package provides expandable arithmetic operations with big\n" "integers that can exceed TeX's number limits." msgstr "" -#: gnu/packages/tex.scm:7845 +#: gnu/packages/tex.scm:8149 msgid "" "This package defines and implements the data type bit set, a vector\n" "of bits. The size of the vector may grow dynamically. Individual bits\n" "can be manipulated." msgstr "" -#: gnu/packages/tex.scm:7864 +#: gnu/packages/tex.scm:8168 msgid "" "New primitive commands are introduced in e-TeX; sometimes the names\n" "collide with existing macros. This package solves the name clashes by\n" @@ -18684,14 +18912,14 @@ msgid "" "@code{\\unexpanded} is provided as @code{\\etex@@unexpanded}." msgstr "" -#: gnu/packages/tex.scm:7882 +#: gnu/packages/tex.scm:8186 msgid "" "This package provides commands for cleaning up the title string\n" "(such as removing @code{\\label} commands) for packages that typeset such\n" "strings." msgstr "" -#: gnu/packages/tex.scm:7898 +#: gnu/packages/tex.scm:8202 msgid "" "This package provides a complete set of macros for information,\n" "warning and error messages. Under LaTeX, the commands are wrappers for\n" @@ -18699,19 +18927,19 @@ msgid "" "complete implementations." msgstr "" -#: gnu/packages/tex.scm:7915 +#: gnu/packages/tex.scm:8219 msgid "" "This package provides expandable arithmetic operations with integers,\n" "using the e-TeX extension @code{\\numexpr} if it is available." msgstr "" -#: gnu/packages/tex.scm:7930 +#: gnu/packages/tex.scm:8234 msgid "" "This package provides the @code{\\kv@@define@@key} (analogous to\n" "keyval’s @code{\\define@@key}, to define keys for use by @code{kvsetkeys}." msgstr "" -#: gnu/packages/tex.scm:7945 +#: gnu/packages/tex.scm:8249 msgid "" "This package provides @code{\\kvsetkeys}, a variant of @code{\\setkeys}\n" "from the @code{keyval} package. Users can specify a handler that deals with\n" @@ -18719,35 +18947,35 @@ msgid "" "level of curly braces are removed from the values." msgstr "" -#: gnu/packages/tex.scm:7980 +#: gnu/packages/tex.scm:8284 msgid "" "This package allows one to capture all the items of a list, for which\n" "the parsing character has been selected by the user, and to access any of\n" "these items with a simple syntax." msgstr "" -#: gnu/packages/tex.scm:7996 +#: gnu/packages/tex.scm:8300 msgid "" "This package exports some utility macros from the LaTeX kernel into\n" "a separate namespace and also makes them available for other formats such\n" "as plain TeX." msgstr "" -#: gnu/packages/tex.scm:8012 +#: gnu/packages/tex.scm:8316 msgid "" "This package implements pdfTeX's escape features (@code{\\pdfescapehex},\n" "@code{\\pdfunescapehex}, @code{\\pdfescapename}, @code{\\pdfescapestring})\n" "using TeX or e-TeX." msgstr "" -#: gnu/packages/tex.scm:8031 +#: gnu/packages/tex.scm:8335 msgid "" "This package provides a kind of counter that provides unique number\n" "values. Several counters can be created with different names. The numeric\n" "values are not limited." msgstr "" -#: gnu/packages/tex.scm:8067 +#: gnu/packages/tex.scm:8371 msgid "" "This package allows the user to input formatted data into elements of a\n" "2-D or 3-D array and to recall that data at will by individual cell number.\n" @@ -18755,7 +18983,7 @@ msgid "" "formatted text." msgstr "" -#: gnu/packages/tex.scm:8104 +#: gnu/packages/tex.scm:8408 msgid "" "The package provides a @code{verbbox} environment to place its contents\n" "into a globally available box, or into a box specified by the user. The\n" @@ -18765,7 +18993,7 @@ msgid "" "@code{trivlist}) may not appear." msgstr "" -#: gnu/packages/tex.scm:8141 +#: gnu/packages/tex.scm:8445 msgid "" "Examplep provides sophisticated features for typesetting verbatim source\n" "code listings, including the display of the source code and its compiled LaTeX\n" @@ -18778,7 +19006,7 @@ msgid "" "titles." msgstr "" -#: gnu/packages/tex.scm:8178 +#: gnu/packages/tex.scm:8482 msgid "" "This is a package for typesetting a variety of graphs and\n" "diagrams with TeX. Xy-pic works with most formats (including LaTeX,\n" @@ -18786,7 +19014,7 @@ msgid "" "@code{diag} package, which was previously distributed stand-alone." msgstr "" -#: gnu/packages/tex.scm:8218 +#: gnu/packages/tex.scm:8522 msgid "" "BibTeX allows the user to store his citation data in generic form, while\n" "printing citations in a document in the form specified by a BibTeX style, to\n" @@ -18794,7 +19022,7 @@ msgid "" "package, such as @command{natbib} as well)." msgstr "" -#: gnu/packages/tex.scm:8241 +#: gnu/packages/tex.scm:8545 msgid "" "This package provides a copy of the Charter Type-1 fonts\n" "which Bitstream contributed to the X consortium, renamed for use with TeX.\n" @@ -18802,14 +19030,14 @@ msgid "" "@command{psnfss}." msgstr "" -#: gnu/packages/tex.scm:8337 +#: gnu/packages/tex.scm:8641 msgid "" "ConTeXt is a full featured, parameter driven macro package,\n" "which fully supports advanced interactive documents. See the ConTeXt garden\n" "for a wealth of support information." msgstr "" -#: gnu/packages/tex.scm:8362 +#: gnu/packages/tex.scm:8666 msgid "" "The beamer LaTeX class can be used for producing slides.\n" "The class works in both PostScript and direct PDF output modes, using the\n" @@ -18822,7 +19050,7 @@ msgid "" "effects, varying slide transitions and animations." msgstr "" -#: gnu/packages/tex.scm:8394 +#: gnu/packages/tex.scm:8698 msgid "" "The XMP (eXtensible Metadata platform) is a framework to add metadata to\n" "digital material to enhance the workflow in publication. The essence is that\n" @@ -18830,13 +19058,13 @@ msgid "" "the file to which it applies." msgstr "" -#: gnu/packages/tex.scm:8433 +#: gnu/packages/tex.scm:8737 msgid "" "This package helps LaTeX users to create PDF/X, PDF/A and other\n" "standards-compliant PDF documents with pdfTeX, LuaTeX and XeTeX." msgstr "" -#: gnu/packages/tex.scm:8468 +#: gnu/packages/tex.scm:8772 msgid "" "The package provides macros and environments to document\n" "LaTeX packages and classes. It is an (as yet unfinished) alternative to the\n" @@ -18847,7 +19075,7 @@ msgid "" "change." msgstr "" -#: gnu/packages/tex.scm:8496 +#: gnu/packages/tex.scm:8800 msgid "" "PSTricks offers an extensive collection of macros for\n" "generating PostScript that is usable with most TeX macro formats, including\n" @@ -18858,14 +19086,14 @@ msgid "" "or shading the cells of tables." msgstr "" -#: gnu/packages/tex.scm:8521 +#: gnu/packages/tex.scm:8825 msgid "" "Pst-text is a PSTricks based package for plotting text along\n" "a different path and manipulating characters. It includes the functionality\n" "of the old package @code{pst-char}." msgstr "" -#: gnu/packages/tex.scm:8546 +#: gnu/packages/tex.scm:8850 msgid "" "This package provides the command @code{\\marginnote} that\n" "may be used instead of @code{\\marginpar} at almost every place where\n" @@ -18873,7 +19101,7 @@ msgid "" "frames made with the @code{framed} package." msgstr "" -#: gnu/packages/tex.scm:8564 +#: gnu/packages/tex.scm:8868 msgid "" "This package, which works both for Plain TeX and for\n" "LaTeX, defines the @code{\\ifPDFTeX}, @code{\\ifXeTeX}, and @code{\\ifLuaTeX}\n" @@ -18883,7 +19111,19 @@ msgid "" "LuaTeX (respectively) is not the engine in use." msgstr "" -#: gnu/packages/tex.scm:8597 +#: gnu/packages/tex.scm:8914 +msgid "" +"The package provides an environment, tabu, which will make any sort of\n" +"tabular, and an environment longtabu which provides the facilities of tabu in\n" +"a modified longtable environment. The package requires array, xcolor for\n" +"coloured rules in tables, and colortbl for coloured cells. The longtabu\n" +"environment further requires that longtable be loaded. The package itself\n" +"does not load any of these packages for the user. The tabu environment may be\n" +"used in place of @code{tabular}, @code{tabular*} and @code{tabularx}\n" +"environments, as well as the @code{array} environment in maths mode." +msgstr "" + +#: gnu/packages/tex.scm:8945 msgid "" "This package provides a collection of simple tools that\n" "are part of the LaTeX required tools distribution, comprising the packages:\n" @@ -18895,7 +19135,7 @@ msgid "" "@code{varioref}, @code{verbatim}, @code{xr}, and @code{xspace}." msgstr "" -#: gnu/packages/tex.scm:8678 +#: gnu/packages/tex.scm:9026 msgid "" "This package is an extension of the keyval package and offers additional\n" "macros for setting keys and declaring and setting class or package options.\n" @@ -18905,7 +19145,7 @@ msgid "" "keys." msgstr "" -#: gnu/packages/tex.scm:8706 +#: gnu/packages/tex.scm:9054 msgid "" "A class and package is provided which allows TeX pictures or\n" "other TeX code to be compiled standalone or as part of a main document.\n" @@ -18917,7 +19157,7 @@ msgid "" "@code{standalone.cfg} to redefine the standalone environment." msgstr "" -#: gnu/packages/tex.scm:8739 +#: gnu/packages/tex.scm:9087 msgid "" "Typesetting values with units requires care to ensure that the combined\n" "mathematical meaning of the value plus unit combination is clear. In\n" @@ -18933,7 +19173,7 @@ msgid "" "package to handle all of the possible unit-related needs of LaTeX users." msgstr "" -#: gnu/packages/tex.scm:8770 +#: gnu/packages/tex.scm:9118 msgid "" "This package enhances the quality of tables in LaTeX, providing extra\n" "commands as well as behind-the-scenes optimisation. Guidelines are given as\n" @@ -18941,7 +19181,7 @@ msgid "" "@code{longtable} compatibility." msgstr "" -#: gnu/packages/tex.scm:8790 +#: gnu/packages/tex.scm:9138 msgid "" "This package provides advanced facilities for inline and\n" "display quotations. It is designed for a wide range of tasks ranging from the\n" @@ -18955,7 +19195,7 @@ msgid "" "styles as well as the optional active quotes are freely configurable." msgstr "" -#: gnu/packages/tex.scm:8816 +#: gnu/packages/tex.scm:9164 msgid "" "The package helps to automate a typical LaTeX\n" "workflow that involves running LaTeX several times and running tools\n" @@ -18975,7 +19215,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8848 +#: gnu/packages/tex.scm:9196 msgid "" "BibLaTeX is a complete reimplementation of the\n" "bibliographic facilities provided by LaTeX. Formatting of the\n" @@ -19001,7 +19241,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8886 +#: gnu/packages/tex.scm:9234 msgid "" "The @code{todonotes} package lets the user mark\n" "things to do later, in a simple and visually appealing way. The\n" @@ -19009,7 +19249,7 @@ msgid "" "of the visual appearance." msgstr "" -#: gnu/packages/tex.scm:8904 +#: gnu/packages/tex.scm:9252 msgid "" "@code{units} is a package for typesetting physical\n" "units in a standard-looking way. The package is based upon\n" @@ -19017,7 +19257,7 @@ msgid "" "included in the @code{units} bundle." msgstr "" -#: gnu/packages/tex.scm:8922 +#: gnu/packages/tex.scm:9270 msgid "" "@code{microtype} provides a LaTeX interface to the\n" "micro-typographic extensions that were introduced by pdfTeX and have\n" @@ -19032,7 +19272,7 @@ msgid "" "the bundle." msgstr "" -#: gnu/packages/tex.scm:8947 +#: gnu/packages/tex.scm:9295 msgid "" "The @code{caption} package provides many ways to\n" "customise the captions in floating environments like figure and table.\n" @@ -19046,13 +19286,13 @@ msgid "" "@code{subcaption} and @code{totalcount} are included in the bundle." msgstr "" -#: gnu/packages/tex.scm:8976 +#: gnu/packages/tex.scm:9324 msgid "" "This package provides a drop-in replacement for the\n" "Symbol font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:8994 +#: gnu/packages/tex.scm:9342 msgid "" "The Pazo Math fonts are a family of PostScript fonts\n" "suitable for typesetting mathematics in combination with the Palatino\n" @@ -19066,7 +19306,7 @@ msgid "" "LaTeX macro support is provided in package @code{psnfss}." msgstr "" -#: gnu/packages/tex.scm:9019 +#: gnu/packages/tex.scm:9367 msgid "" "The FPL Fonts provide a set of SC/OsF fonts for URW\n" "Palladio L which are compatible with the Palatino SC/OsF fonts from\n" @@ -19074,7 +19314,7 @@ msgid "" "the @code{psnfss} distribution." msgstr "" -#: gnu/packages/tex.scm:9043 +#: gnu/packages/tex.scm:9391 msgid "" "The @code{arev} package provides type 1 fonts,\n" "virtual fonts and LaTeX packages for using Arev Sans in both text and\n" @@ -19088,7 +19328,7 @@ msgid "" "support packages. Others are cmbright, hvmath and kerkis." msgstr "" -#: gnu/packages/tex.scm:9074 +#: gnu/packages/tex.scm:9422 msgid "" "The Math Design project offers free mathematical\n" "fonts that match with existing text fonts. To date, three free font\n" @@ -19099,7 +19339,7 @@ msgid "" "created by the Greek Font Society)." msgstr "" -#: gnu/packages/tex.scm:9099 +#: gnu/packages/tex.scm:9447 msgid "" "The @code{bera} package contains the Bera Type 1\n" "fonts and files to use the fonts with LaTeX. Bera is a set of three\n" @@ -19108,7 +19348,7 @@ msgid "" "a repackaging, for use with TeX, of the Bitstream Vera family." msgstr "" -#: gnu/packages/tex.scm:9122 +#: gnu/packages/tex.scm:9470 msgid "" "Fourier-GUTenberg is a LaTeX typesetting system\n" "which uses Adobe Utopia as its standard base font. Fourier-GUTenberg\n" @@ -19119,7 +19359,7 @@ msgid "" "trademark of Adobe Systems Incorporated." msgstr "" -#: gnu/packages/tex.scm:9145 +#: gnu/packages/tex.scm:9493 msgid "" "The Adobe Standard Encoding set of the Utopia font\n" "family, as contributed to the X Consortium. The set comprises upright\n" @@ -19128,7 +19368,7 @@ msgid "" "@code{mathdesign} font packages." msgstr "" -#: gnu/packages/tex.scm:9169 +#: gnu/packages/tex.scm:9517 msgid "" "The @code{fontaxes} package adds several new font\n" "axes on top of LaTeX's New Font Selection Scheme (NFSS). In\n" @@ -19137,7 +19377,7 @@ msgid "" "figure versions offered by many professional fonts." msgstr "" -#: gnu/packages/tex.scm:9192 +#: gnu/packages/tex.scm:9540 msgid "" "The bundle comprises: @code{authblk}, which permits\n" "footnote style author/affiliation input in the @command{\\author} command,\n" @@ -19147,7 +19387,7 @@ msgid "" "@code{sublabel}, which permits counters to be subnumbered." msgstr "" -#: gnu/packages/tex.scm:9211 +#: gnu/packages/tex.scm:9559 msgid "" "Many font families available for use with LaTeX are\n" "available at multiple weights. Many Type 1-oriented support packages\n" @@ -19158,7 +19398,7 @@ msgid "" "@code{mweights} package provides a solution to these difficulties." msgstr "" -#: gnu/packages/tex.scm:9237 +#: gnu/packages/tex.scm:9585 msgid "" "Cabin is a humanist sans with four weights, true\n" "italics and small capitals. According to its designer, Pablo\n" @@ -19172,7 +19412,7 @@ msgid "" "use with [pdf]LaTeX." msgstr "" -#: gnu/packages/tex.scm:9268 +#: gnu/packages/tex.scm:9616 msgid "" "The @code{newtx} bundle splits\n" "@code{txfonts.sty} (from the TX fonts distribution) into two\n" @@ -19184,7 +19424,7 @@ msgid "" "mathematics package that matches Libertine text quite well." msgstr "" -#: gnu/packages/tex.scm:9296 +#: gnu/packages/tex.scm:9644 msgid "" "@code{xcharter} repackages Bitstream Charter with an\n" "extended set of features. The extension provides small caps, oldstyle\n" @@ -19193,7 +19433,7 @@ msgid "" "Type 1 and OTF formats, with supporting files as necessary." msgstr "" -#: gnu/packages/tex.scm:9320 +#: gnu/packages/tex.scm:9668 msgid "" "The legacy @emph{texnansi} (TeX and ANSI) encoding\n" "is known in the LaTeX scheme of things as @emph{LY1} encoding. The\n" @@ -19202,14 +19442,14 @@ msgid "" "LY1 encoding." msgstr "" -#: gnu/packages/tex.scm:9349 +#: gnu/packages/tex.scm:9697 msgid "" "This is a LaTeX2ε package to help change the style of any or\n" "all of LaTeX's sectional headers in the article, book, or report classes.\n" "Examples include the addition of rules above or below a section title." msgstr "" -#: gnu/packages/tex.scm:9375 +#: gnu/packages/tex.scm:9723 msgid "" "LaTeX can, by default, only cope with 18 outstanding floats;\n" "any more, and you get the error “too many unprocessed floats”. This package\n" @@ -19220,19 +19460,19 @@ msgid "" "floats merely delays the arrival of the inevitable error message." msgstr "" -#: gnu/packages/tex.scm:9408 +#: gnu/packages/tex.scm:9756 msgid "" "This package provides a command for the LaTeX programmer for\n" "testing whether an argument is empty." msgstr "" -#: gnu/packages/tex.scm:9435 +#: gnu/packages/tex.scm:9783 msgid "" "The pagenote package provides tagged notes on a separate\n" "page (also known as ‘end notes’)." msgstr "" -#: gnu/packages/tex.scm:9463 +#: gnu/packages/tex.scm:9811 msgid "" "The @code{titling} package provides control over the\n" "typesetting of the @code{\\maketitle} command and @code{\\thanks} commands,\n" @@ -19242,7 +19482,7 @@ msgid "" "a physical page." msgstr "" -#: gnu/packages/tex.scm:9493 +#: gnu/packages/tex.scm:9841 msgid "" "This package provides an @code{\\ifoddpage} conditional to\n" "determine if the current page is odd or even. The macro @code{\\checkoddpage}\n" @@ -19252,7 +19492,7 @@ msgid "" "@code{oneside} mode where all pages use the odd page layout." msgstr "" -#: gnu/packages/tex.scm:9523 +#: gnu/packages/tex.scm:9871 msgid "" "The package provides \"store boxes\" whose user interface\n" "matches that of normal LaTeX \"save boxes\", except that the content of a\n" @@ -19261,7 +19501,7 @@ msgid "" "DVI is output, store boxes behave the same as save boxes." msgstr "" -#: gnu/packages/tex.scm:9552 +#: gnu/packages/tex.scm:9900 msgid "" "The package provides macros to collect and process a macro\n" "argument (i.e., something which looks like a macro argument) as a horizontal\n" @@ -19274,13 +19514,13 @@ msgid "" "The macros were designed for use within other macros." msgstr "" -#: gnu/packages/tex.scm:9584 +#: gnu/packages/tex.scm:9932 msgid "" "This package provides macros for adding to, and reordering\n" "the list of graphics file extensions recognised by package graphics." msgstr "" -#: gnu/packages/tex.scm:9618 +#: gnu/packages/tex.scm:9966 msgid "" "The package provides several macros to adjust boxed\n" "content. One purpose is to supplement the standard @code{graphics} package,\n" @@ -19293,7 +19533,7 @@ msgid "" "@code{\\minsizebox}, @code{\\maxsizebox} and @code{\\phantombox}." msgstr "" -#: gnu/packages/tex.scm:9644 +#: gnu/packages/tex.scm:9992 msgid "" "This package provides an environment for colored and\n" "framed text boxes with a heading line. Optionally, such a box may be split in\n" @@ -19304,7 +19544,7 @@ msgid "" "parts." msgstr "" -#: gnu/packages/tex.scm:9675 +#: gnu/packages/tex.scm:10023 msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems. The commands allow for writing\n" @@ -19313,13 +19553,13 @@ msgid "" "styles of inference rules, placement of labels, etc." msgstr "" -#: gnu/packages/tex.scm:9704 +#: gnu/packages/tex.scm:10052 msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems." msgstr "" -#: gnu/packages/tex.scm:9724 +#: gnu/packages/tex.scm:10072 msgid "" "This package provides the European currency symbol for the\n" "Euro implemented in METAFONT, using the official European Commission\n" @@ -19328,7 +19568,7 @@ msgid "" "pre-compiled font files, and documentation." msgstr "" -#: gnu/packages/tex.scm:9754 +#: gnu/packages/tex.scm:10102 msgid "" "The @code{kastrup} package provides the\n" "@emph{binhex.tex} file. This file provides expandable macros for both\n" @@ -19338,7 +19578,7 @@ msgid "" "LaTeX and plain TeX." msgstr "" -#: gnu/packages/tex.scm:9774 +#: gnu/packages/tex.scm:10122 msgid "" "This LaTeX package provides a flexible mechanism for translating\n" "individual words into different languages. For example, it can be used to\n" @@ -19349,7 +19589,7 @@ msgid "" "automatically translate more than a few words." msgstr "" -#: gnu/packages/tex.scm:9795 +#: gnu/packages/tex.scm:10143 msgid "" "This package facilitates placing boxes at absolute positions on the\n" "LaTeX page. There are several reasons why this might be useful, but the main\n" @@ -19362,7 +19602,7 @@ msgid "" "accompanied by various configuration commands." msgstr "" -#: gnu/packages/tex.scm:9819 +#: gnu/packages/tex.scm:10167 msgid "" "This package extends the @code{ifthen} package by implementing new\n" "commands to go within the first argument of @code{\\\\ifthenelse}: to test\n" @@ -19372,14 +19612,14 @@ msgid "" "handle complex tests." msgstr "" -#: gnu/packages/tex.scm:9852 +#: gnu/packages/tex.scm:10200 msgid "" "BibTool manipulates BibTeX files. The possibilities of BibTool include\n" "sorting and merging of BibTeX databases, generation of uniform reference keys,\n" "and selecting references used in a publication." msgstr "" -#: gnu/packages/texinfo.scm:87 +#: gnu/packages/texinfo.scm:88 msgid "" "Texinfo is the official documentation format of the GNU project. It\n" "uses a single source file using explicit commands to produce a final document\n" @@ -19389,7 +19629,7 @@ msgid "" "is on expressing the content semantically, avoiding physical markup commands." msgstr "" -#: gnu/packages/texinfo.scm:216 +#: gnu/packages/texinfo.scm:230 msgid "" "Texi2HTML is a Perl script which converts Texinfo source files to HTML\n" "output. It now supports many advanced features, such as internationalization\n" @@ -19404,7 +19644,7 @@ msgid "" "Texi2HTML." msgstr "" -#: gnu/packages/texinfo.scm:283 +#: gnu/packages/texinfo.scm:297 msgid "" "Pinfo is an Info file viewer. Pinfo is similar in use to the Lynx web\n" "browser. You just move across info nodes, and select links, follow them, etc.\n" @@ -19763,6 +20003,12 @@ msgstr "" #: gnu/packages/textutils.scm:1406 msgid "" +"@code{utf-8-lineseparator} provides a tool to efficiently check text\n" +"files for valid UTF-8 use and to report which line endings they use." +msgstr "" + +#: gnu/packages/textutils.scm:1439 +msgid "" "@code{csvdiff} is a diff tool to compute changes between two\n" "CSV files. It can compare CSV files with a million records in under 2\n" "seconds. It is specifically suited for comparing CSV files dumped from\n" @@ -19964,27 +20210,27 @@ msgid "" "visualize your public Git repositories on a web interface." msgstr "" -#: gnu/packages/version-control.scm:1706 +#: gnu/packages/version-control.scm:1699 msgid "" "Pre-commit is a multi-language package manager for pre-commit hooks. You\n" "specify a list of hooks you want and pre-commit manages the installation and\n" "execution of any hook written in any language before every commit." msgstr "" -#: gnu/packages/version-control.scm:1796 +#: gnu/packages/version-control.scm:1789 msgid "" "Mercurial is a free, distributed source control management tool. It\n" "efficiently handles projects of any size and offers an easy and intuitive\n" "interface." msgstr "" -#: gnu/packages/version-control.scm:1823 +#: gnu/packages/version-control.scm:1816 msgid "" "Evolve is a Mercurial extension for faster and safer mutable\n" "history. It implements the changeset evolution concept for Mercurial." msgstr "" -#: gnu/packages/version-control.scm:1879 +#: gnu/packages/version-control.scm:1872 msgid "" "This package provides a Mercurial extension for signing\n" "the changeset hash of commits. The signure is embedded directly in the\n" @@ -19992,7 +20238,7 @@ msgid "" "can be used for signing." msgstr "" -#: gnu/packages/version-control.scm:1914 +#: gnu/packages/version-control.scm:1907 msgid "" "Neon is an HTTP and WebDAV client library, with a C interface and the\n" "following features:\n" @@ -20014,7 +20260,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/version-control.scm:2010 +#: gnu/packages/version-control.scm:2003 msgid "" "@dfn{Subversion} (svn) exists to be recognized and adopted as a\n" "centralized version control system characterized by its\n" @@ -20023,7 +20269,7 @@ msgid "" "projects, from individuals to large-scale enterprise operations." msgstr "" -#: gnu/packages/version-control.scm:2044 +#: gnu/packages/version-control.scm:2037 msgid "" "RCS is the original Revision Control System. It works on a\n" "file-by-file basis, in contrast to subsequent version control systems such as\n" @@ -20032,21 +20278,21 @@ msgid "" "machine." msgstr "" -#: gnu/packages/version-control.scm:2067 +#: gnu/packages/version-control.scm:2060 msgid "" "@code{blame} outputs an annotated revision from each RCS file. An\n" "annotated RCS file describes the revision and date in which each line was\n" "added to the file, and the author of each line." msgstr "" -#: gnu/packages/version-control.scm:2088 +#: gnu/packages/version-control.scm:2081 msgid "" "The @code{rcshist} utility displays the complete revision history of a\n" "set of RCS files including log messages and patches. It can also display the\n" "patch associated with a particular revision of an RCS file." msgstr "" -#: gnu/packages/version-control.scm:2116 +#: gnu/packages/version-control.scm:2109 msgid "" "CVS is a version control system, an important component of Source\n" "Configuration Management (SCM). Using it, you can record the history of\n" @@ -20054,7 +20300,7 @@ msgid "" "RCS, PRCS, and Aegis packages." msgstr "" -#: gnu/packages/version-control.scm:2150 +#: gnu/packages/version-control.scm:2143 msgid "" "This program analyzes a collection of RCS files in a CVS\n" "repository (or outside of one) and, when possible, emits an equivalent history\n" @@ -20067,7 +20313,7 @@ msgid "" "masters from remote CVS hosts." msgstr "" -#: gnu/packages/version-control.scm:2180 +#: gnu/packages/version-control.scm:2173 msgid "" "The vc-dwim package contains two tools, \"vc-dwim\" and \"vc-chlog\".\n" "vc-dwim is a tool that simplifies the task of maintaining a ChangeLog and\n" @@ -20077,21 +20323,21 @@ msgid "" "standards-compliant ChangeLog entries based on the changes that it detects." msgstr "" -#: gnu/packages/version-control.scm:2207 +#: gnu/packages/version-control.scm:2200 msgid "" "Diffstat reads the output of @command{diff} and displays a histogram of\n" "the insertions, deletions, and modifications per file. It is useful for\n" "reviewing large, complex patch files." msgstr "" -#: gnu/packages/version-control.scm:2246 +#: gnu/packages/version-control.scm:2239 msgid "" "GNU CSSC provides a replacement for the legacy Unix source\n" "code control system SCCS. This allows old code still under that system to be\n" "accessed and migrated on modern systems." msgstr "" -#: gnu/packages/version-control.scm:2338 +#: gnu/packages/version-control.scm:2331 msgid "" "Aegis is a project change supervisor, and performs some of\n" "the Software Configuration Management needed in a CASE environment. Aegis\n" @@ -20102,7 +20348,7 @@ msgid "" "any project with more than one developer, is one of Aegis's major functions." msgstr "" -#: gnu/packages/version-control.scm:2412 +#: gnu/packages/version-control.scm:2405 msgid "" "Reposurgeon enables risky operations that version-control\n" "systems don't want to let you do, such as editing past comments and metadata\n" @@ -20113,20 +20359,20 @@ msgid "" "from Subversion to any supported Distributed Version Control System (DVCS)." msgstr "" -#: gnu/packages/version-control.scm:2451 +#: gnu/packages/version-control.scm:2444 msgid "" "Tig is an ncurses text user interface for Git, primarily intended as\n" "a history browser. It can also stage hunks for commit, or colorize the\n" "output of the @code{git} command." msgstr "" -#: gnu/packages/version-control.scm:2474 +#: gnu/packages/version-control.scm:2467 msgid "" "Recursively find the newest file in a file tree and print its\n" "modification time." msgstr "" -#: gnu/packages/version-control.scm:2521 +#: gnu/packages/version-control.scm:2514 msgid "" "Myrepos provides the @code{mr} command, which maps an operation (e.g.,\n" "fetching updates) over a collection of version control repositories. It\n" @@ -20134,14 +20380,14 @@ msgid "" "Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity." msgstr "" -#: gnu/packages/version-control.scm:2558 +#: gnu/packages/version-control.scm:2551 msgid "" "Grokmirror enables replicating large git repository\n" "collections efficiently. Mirrors decide to clone and update repositories\n" "based on a manifest file published by servers." msgstr "" -#: gnu/packages/version-control.scm:2588 +#: gnu/packages/version-control.scm:2581 msgid "" "The @code{b4} command is designed to make it easier to participate in\n" "patch-based workflows for projects that have public-inbox archives.\n" @@ -20155,26 +20401,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/version-control.scm:2635 +#: gnu/packages/version-control.scm:2628 msgid "" "This wrapper around rclone makes any destination supported\n" "by rclone usable with git-annex." msgstr "" -#: gnu/packages/version-control.scm:2689 +#: gnu/packages/version-control.scm:2682 msgid "" "Fossil is a distributed source control management system which supports\n" "access and administration over HTTP CGI or via a built-in HTTP server. It has\n" "a built-in wiki, built-in file browsing, built-in tickets system, etc." msgstr "" -#: gnu/packages/version-control.scm:2720 +#: gnu/packages/version-control.scm:2713 msgid "" "Stagit creates static pages for git repositories, the results can\n" "be served with a HTTP file server of your choice." msgstr "" -#: gnu/packages/version-control.scm:2756 +#: gnu/packages/version-control.scm:2749 msgid "" "@code{gource} provides a software version control\n" "visualization. The repository is displayed as a tree where the root of the\n" @@ -20183,7 +20429,7 @@ msgid "" "specific files and directories." msgstr "" -#: gnu/packages/version-control.scm:2804 +#: gnu/packages/version-control.scm:2797 #, scheme-format msgid "" "SRC (or src) is simple revision control, a version-control system for\n" @@ -20193,7 +20439,7 @@ msgid "" "directory full of HOWTOs." msgstr "" -#: gnu/packages/version-control.scm:2856 +#: gnu/packages/version-control.scm:2849 msgid "" "This Git extension defines a subcommand,\n" "@code{when-merged}, whose core operation is to find the merge that brought a\n" @@ -20201,7 +20447,7 @@ msgid "" "how information about the merge is displayed." msgstr "" -#: gnu/packages/version-control.scm:2900 +#: gnu/packages/version-control.scm:2893 msgid "" "This Git extension defines a subcommand, @code{imerge},\n" "which performs an incremental merge between two branches. Its two primary\n" @@ -20210,20 +20456,20 @@ msgid "" "interrupted, published, and collaborated on while in progress." msgstr "" -#: gnu/packages/version-control.scm:2951 +#: gnu/packages/version-control.scm:2944 msgid "" "Git Large File Storage (LFS) replaces large files such as audio samples,\n" "videos, datasets, and graphics with text pointers inside Git, while storing the\n" "file contents on a remote server." msgstr "" -#: gnu/packages/version-control.scm:2986 +#: gnu/packages/version-control.scm:2979 msgid "" "@code{git open} opens the repository's website from the command-line,\n" "guessing the URL pattern from the @code{origin} remote." msgstr "" -#: gnu/packages/version-control.scm:3040 +#: gnu/packages/version-control.scm:3033 msgid "" "GNU Arch, aka. @code{tla}, was one of the first free distributed\n" "version-control systems (DVCS). It saw its last release in 2006. This\n" @@ -20231,18 +20477,18 @@ msgid "" "for historians." msgstr "" -#: gnu/packages/version-control.scm:3086 +#: gnu/packages/version-control.scm:3079 msgid "" "@code{diff-so-fancy} strives to make your diffs human readable instead\n" "of machine readable. This helps improve code quality and helps you spot\n" "defects faster." msgstr "" -#: gnu/packages/version-control.scm:3142 +#: gnu/packages/version-control.scm:3135 msgid "This package provides a Git implementation library." msgstr "" -#: gnu/packages/version-control.scm:3192 +#: gnu/packages/version-control.scm:3185 msgid "" "This package provides a command-line tool to manage\n" "multiple Git repos.\n" @@ -20257,7 +20503,7 @@ msgid "" "If several repos are related, it helps to see their status together." msgstr "" -#: gnu/packages/version-control.scm:3250 +#: gnu/packages/version-control.scm:3243 #, scheme-format msgid "" "@code{ghq} provides a way to organize remote repository clones, like\n" @@ -20266,7 +20512,7 @@ msgid "" "using the remote repository URL's host and path." msgstr "" -#: gnu/packages/version-control.scm:3295 +#: gnu/packages/version-control.scm:3288 msgid "" "TkRev (formerly TkCVS) is a Tcl/Tk-based graphical interface to the CVS,\n" "Subversion and Git configuration management systems. It will also help with\n" @@ -20275,7 +20521,7 @@ msgid "" "TkDiff is included for browsing and merging your changes." msgstr "" -#: gnu/packages/version-control.scm:3328 +#: gnu/packages/version-control.scm:3321 msgid "" "@command{git filter-repo} is a versatile tool for rewriting history,\n" "which roughly falls into the same space of tool like git filter-branch but\n" @@ -20313,7 +20559,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:865 +#: gnu/packages/virtualization.scm:870 msgid "" "Ganeti is a virtual machine management tool built on top of existing\n" "virtualization technologies such as Xen or KVM. Ganeti controls:\n" @@ -20330,19 +20576,19 @@ msgid "" "commodity hardware." msgstr "" -#: gnu/packages/virtualization.scm:902 +#: gnu/packages/virtualization.scm:907 msgid "" "This package provides a guest OS definition for Ganeti that uses\n" "Guix to build virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:996 +#: gnu/packages/virtualization.scm:1001 msgid "" "This package provides a guest OS definition for Ganeti. It installs\n" "Debian or a derivative using @command{debootstrap}." msgstr "" -#: gnu/packages/virtualization.scm:1056 +#: gnu/packages/virtualization.scm:1061 msgid "" "libosinfo is a GObject based library API for managing\n" "information about operating systems, hypervisors and the (virtual) hardware\n" @@ -20352,21 +20598,21 @@ msgid "" "all common programming languages. Vala bindings are also provided." msgstr "" -#: gnu/packages/virtualization.scm:1105 +#: gnu/packages/virtualization.scm:1109 msgid "" "LXC is a userspace interface for the Linux kernel containment features.\n" "Through a powerful API and simple tools, it lets Linux users easily create and\n" "manage system or application containers." msgstr "" -#: gnu/packages/virtualization.scm:1131 +#: gnu/packages/virtualization.scm:1135 msgid "" "LXCFS is a small FUSE file system written with the intention\n" "of making Linux containers feel more like a virtual machine.\n" "It started as a side project of LXC but can be used by any run-time." msgstr "" -#: gnu/packages/virtualization.scm:1239 +#: gnu/packages/virtualization.scm:1237 msgid "" "LXD is a next generation system container manager. It\n" "offers a user experience similar to virtual machines but using Linux\n" @@ -20375,7 +20621,7 @@ msgid "" "pretty simple, REST API." msgstr "" -#: gnu/packages/virtualization.scm:1332 +#: gnu/packages/virtualization.scm:1330 msgid "" "Libvirt is a C toolkit to interact with the virtualization\n" "capabilities of recent versions of Linux. The library aims at providing long\n" @@ -20383,7 +20629,7 @@ msgid "" "to integrate other virtualization mechanisms if needed." msgstr "" -#: gnu/packages/virtualization.scm:1363 +#: gnu/packages/virtualization.scm:1359 msgid "" "libvirt-glib wraps the libvirt library to provide a\n" "high-level object-oriented API better suited for glib-based applications, via\n" @@ -20396,13 +20642,13 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/virtualization.scm:1407 +#: gnu/packages/virtualization.scm:1403 msgid "" "This package provides Python bindings to the libvirt\n" "virtualization library." msgstr "" -#: gnu/packages/virtualization.scm:1520 +#: gnu/packages/virtualization.scm:1516 msgid "" "The virt-manager application is a desktop user interface for managing\n" "virtual machines through libvirt. It primarily targets KVM VMs, but also\n" @@ -20410,7 +20656,7 @@ msgid "" "domains, their live performance and resource utilization statistics." msgstr "" -#: gnu/packages/virtualization.scm:1620 +#: gnu/packages/virtualization.scm:1616 msgid "" "Using this tool, you can freeze a running application (or\n" "part of it) and checkpoint it to a hard drive as a collection of files. You\n" @@ -20419,14 +20665,14 @@ msgid "" "mainly implemented in user space." msgstr "" -#: gnu/packages/virtualization.scm:1647 +#: gnu/packages/virtualization.scm:1643 msgid "" "qmpbackup is designed to create and restore full and\n" "incremental backups of running QEMU virtual machines via QMP, the QEMU\n" "Machine Protocol." msgstr "" -#: gnu/packages/virtualization.scm:1731 +#: gnu/packages/virtualization.scm:1727 msgid "" "Looking Glass allows the use of a KVM (Kernel-based Virtual\n" "Machine) configured for VGA PCI Pass-through without an attached physical\n" @@ -20434,7 +20680,7 @@ msgid "" "main monitor/GPU." msgstr "" -#: gnu/packages/virtualization.scm:1783 +#: gnu/packages/virtualization.scm:1779 msgid "" "@command{runc} is a command line client for running applications\n" "packaged according to the\n" @@ -20443,13 +20689,13 @@ msgid "" "Open Container Initiative specification." msgstr "" -#: gnu/packages/virtualization.scm:1832 +#: gnu/packages/virtualization.scm:1828 msgid "" "@command{umoci} is a tool that allows for high-level modification of an\n" "Open Container Initiative (OCI) image layout and its tagged images." msgstr "" -#: gnu/packages/virtualization.scm:1886 +#: gnu/packages/virtualization.scm:1882 msgid "" "@command{skopeo} is a command line utility providing various operations\n" "with container images and container image registries. It can:\n" @@ -20470,14 +20716,14 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:1922 +#: gnu/packages/virtualization.scm:1918 msgid "" "Python-vagrant is a Python module that provides a thin wrapper around the\n" "@code{vagrant} command line executable, allowing programmatic control of Vagrant\n" "virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:1977 +#: gnu/packages/virtualization.scm:1979 msgid "" "Bubblewrap is aimed at running applications in a sandbox,\n" "restricting their access to parts of the operating system or user data such as\n" @@ -20487,7 +20733,7 @@ msgid "" "by default and can be made read-only." msgstr "" -#: gnu/packages/virtualization.scm:2004 +#: gnu/packages/virtualization.scm:2006 msgid "" "Bochs is an emulator which can emulate Intel x86 CPU, common I/O\n" "devices, and a custom BIOS. It can also be compiled to emulate many different\n" @@ -20496,64 +20742,67 @@ msgid "" "DOS or Microsoft Windows." msgstr "" -#: gnu/packages/virtualization.scm:2210 +#: gnu/packages/virtualization.scm:2212 msgid "" "This package provides the Xen Virtual Machine Monitor\n" "which is a hypervisor." msgstr "" -#: gnu/packages/virtualization.scm:2242 +#: gnu/packages/virtualization.scm:2244 msgid "" "This package contains a set of tools to assist\n" "administrators and developers in managing the database." msgstr "" -#: gnu/packages/virtualization.scm:2275 +#: gnu/packages/virtualization.scm:2277 msgid "" "Osinfo-db provides the database files for use with the\n" "libosinfo library. It provides information about guest operating systems for\n" "use with virtualization provisioning tools" msgstr "" -#: gnu/packages/virtualization.scm:2317 +#: gnu/packages/virtualization.scm:2319 msgid "" "@code{transient} is a wrapper for QEMU allowing the creation of virtual\n" "machines with shared folder, ssh, and disk creation support." msgstr "" -#: gnu/packages/webkit.scm:93 +#: gnu/packages/webkit.scm:94 msgid "" "LibWPE is general-purpose library specifically developed for\n" "the WPE-flavored port of WebKit." msgstr "" -#: gnu/packages/webkit.scm:119 +#: gnu/packages/webkit.scm:120 msgid "" "This package provides a backend implementation for the WPE WebKit\n" "engine that uses Wayland for graphics output." msgstr "" -#: gnu/packages/webkit.scm:216 +#: gnu/packages/webkit.scm:227 msgid "" "WPE WebKit allows embedders to create simple and performant\n" "systems based on Web platform technologies. It is designed with hardware\n" "acceleration in mind, leveraging common 3D graphics APIs for best performance." msgstr "" -#: gnu/packages/webkit.scm:351 +#: gnu/packages/webkit.scm:355 msgid "" "WebKitGTK+ is a full-featured port of the WebKit rendering engine,\n" "suitable for projects requiring any kind of web integration, from hybrid\n" -"HTML/CSS applications to full-fledged web browsers." +"HTML/CSS applications to full-fledged web browsers. WebKitGTK+ video playing\n" +"capabilities can be extended through the use of GStreamer plugins (not\n" +"propagated by default) such as @code{gst-plugins-good} and\n" +"@code{gst-plugins-bad}." msgstr "" -#: gnu/packages/web.scm:250 +#: gnu/packages/web.scm:251 msgid "" "Qhttp is a light-weight and asynchronous HTTP library\n" "(both server & client) in Qt5 and C++14." msgstr "" -#: gnu/packages/web.scm:280 +#: gnu/packages/web.scm:281 msgid "" "The Apache HTTP Server Project is a collaborative software development\n" "effort aimed at creating a robust, commercial-grade, featureful, and\n" @@ -20563,14 +20812,14 @@ msgid "" "and its related documentation." msgstr "" -#: gnu/packages/web.scm:314 +#: gnu/packages/web.scm:315 msgid "" "The mod_wsgi module for the Apache HTTPD Server adds support for running\n" "applications that support the Python @acronym{WSGI, Web Server Gateway\n" "Interface} specification." msgstr "" -#: gnu/packages/web.scm:356 +#: gnu/packages/web.scm:357 msgid "" "Monolith bundles any web page into a single HTML file.\n" "\n" @@ -20583,38 +20832,38 @@ msgid "" "the same, being completely separated from the Internet." msgstr "" -#: gnu/packages/web.scm:460 +#: gnu/packages/web.scm:461 msgid "" "Nginx (\"engine X\") is a high-performance web and reverse proxy server\n" "created by Igor Sysoev. It can be used both as a stand-alone web server\n" "and as a proxy to reduce the load on back-end HTTP or mail servers." msgstr "" -#: gnu/packages/web.scm:518 +#: gnu/packages/web.scm:519 msgid "This package provides HTML documentation for the nginx web server." msgstr "" -#: gnu/packages/web.scm:647 +#: gnu/packages/web.scm:648 msgid "" "This nginx module parses the Accept-Language field in HTTP headers and\n" "chooses the most suitable locale for the user from the list of locales\n" "supported at your website." msgstr "" -#: gnu/packages/web.scm:694 +#: gnu/packages/web.scm:695 msgid "" "XSLScript is a terse notation for writing complex XSLT stylesheets.\n" "This is modified version, specifically intended for use with the NGinx\n" "documentation." msgstr "" -#: gnu/packages/web.scm:767 +#: gnu/packages/web.scm:768 msgid "" "This NGINX module provides a scripting support with Lua\n" "programming language." msgstr "" -#: gnu/packages/web.scm:820 +#: gnu/packages/web.scm:821 msgid "" "This NGINX module provides streaming with the @acronym{RTMP,\n" "Real-Time Messaging Protocol}, @acronym{DASH, Dynamic Adaptive Streaming over HTTP},\n" @@ -20624,7 +20873,7 @@ msgid "" "stream. Remote control of the module is possible over HTTP." msgstr "" -#: gnu/packages/web.scm:882 +#: gnu/packages/web.scm:883 msgid "" "Lighttpd is a secure, fast, compliant, and very flexible web-server that\n" "has been optimized for high-performance environments. It has a very low\n" @@ -20632,41 +20881,41 @@ msgid "" "CGI, authentication, output compression, URL rewriting and many more." msgstr "" -#: gnu/packages/web.scm:910 +#: gnu/packages/web.scm:911 msgid "" "FastCGI is a language-independent, scalable extension to CGI\n" "that provides high performance without the limitations of server specific\n" "APIs." msgstr "" -#: gnu/packages/web.scm:948 +#: gnu/packages/web.scm:949 msgid "" "Fcgiwrap is a simple server for running CGI applications\n" "over FastCGI. It hopes to provide clean CGI support to Nginx (and other web\n" "servers that may need it)." msgstr "" -#: gnu/packages/web.scm:977 +#: gnu/packages/web.scm:978 msgid "" "Starman is a PSGI perl web server that has unique features\n" "such as high performance, preforking, signal support, superdaemon awareness,\n" "and UNIX socket support." msgstr "" -#: gnu/packages/web.scm:1010 +#: gnu/packages/web.scm:1011 msgid "" "IcedTea-Web is an implementation of the @dfn{Java Network Launching\n" "Protocol}, also known as Java Web Start. This package provides tools and\n" "libraries for working with JNLP applets." msgstr "" -#: gnu/packages/web.scm:1035 +#: gnu/packages/web.scm:1036 msgid "" "Jansson is a C library for encoding, decoding and manipulating JSON\n" "data." msgstr "" -#: gnu/packages/web.scm:1055 +#: gnu/packages/web.scm:1056 msgid "" "JSON-C implements a reference counting object model that allows you to\n" "easily construct JSON objects in C, output them as JSON-formatted strings and\n" @@ -20674,7 +20923,7 @@ msgid "" "It aims to conform to RFC 7159." msgstr "" -#: gnu/packages/web.scm:1131 +#: gnu/packages/web.scm:1132 msgid "" "This package provides a very low footprint JSON parser\n" "written in portable ANSI C.\n" @@ -20687,21 +20936,21 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:1176 +#: gnu/packages/web.scm:1177 msgid "" "QJson is a Qt-based library that maps JSON data to\n" "@code{QVariant} objects. JSON arrays will be mapped to @code{QVariantList}\n" "instances, while JSON's objects will be mapped to @code{QVariantMap}." msgstr "" -#: gnu/packages/web.scm:1227 +#: gnu/packages/web.scm:1228 msgid "" "QOAuth is an attempt to support interaction with\n" "OAuth-powered network services in a Qt way, i.e. simply, clearly and\n" "efficiently. It gives the application developer no more than 4 methods." msgstr "" -#: gnu/packages/web.scm:1339 +#: gnu/packages/web.scm:1340 msgid "" "Krona is a flexible tool for exploring the relative proportions of\n" "hierarchical data, such as metagenomic classifications, using a radial,\n" @@ -20710,26 +20959,26 @@ msgid "" "current version of any major web browser." msgstr "" -#: gnu/packages/web.scm:1380 +#: gnu/packages/web.scm:1381 msgid "" "RapidJSON is a fast JSON parser/generator for C++ with both SAX/DOM\n" "style API." msgstr "" -#: gnu/packages/web.scm:1409 +#: gnu/packages/web.scm:1410 msgid "" "Yet Another JSON Library (YAJL) is a small event-driven (SAX-style) JSON\n" "parser written in ANSI C and a small validating JSON generator." msgstr "" -#: gnu/packages/web.scm:1439 +#: gnu/packages/web.scm:1440 msgid "" "Libwebsockets is a library that allows C programs to establish client\n" "and server WebSockets connections---a protocol layered above HTTP that allows\n" "for efficient socket-like bidirectional reliable communication channels." msgstr "" -#: gnu/packages/web.scm:1468 +#: gnu/packages/web.scm:1469 msgid "" "WABT (pronounced: wabbit) is a suite of tools for\n" "WebAssembly, including:\n" @@ -20754,7 +21003,7 @@ msgid "" "other systems that want to manipulate WebAssembly files." msgstr "" -#: gnu/packages/web.scm:1518 +#: gnu/packages/web.scm:1519 msgid "" "WebSocket++ is a C++ library that can be used to implement\n" "WebSocket functionality. The goals of the project are to provide a WebSocket\n" @@ -20762,7 +21011,7 @@ msgid "" "high performance." msgstr "" -#: gnu/packages/web.scm:1558 +#: gnu/packages/web.scm:1559 msgid "" "@code{Wslay} is an event-based C library for the WebSocket\n" "protocol version 13, described in RFC 6455. Besides a high-level API it\n" @@ -20771,7 +21020,7 @@ msgid "" "perform the opening handshake in HTTP." msgstr "" -#: gnu/packages/web.scm:1588 +#: gnu/packages/web.scm:1589 msgid "" "A \"public suffix\" is a domain name under which Internet users can\n" "directly register own names.\n" @@ -20789,20 +21038,20 @@ msgid "" "UTS#46." msgstr "" -#: gnu/packages/web.scm:1633 +#: gnu/packages/web.scm:1634 msgid "" "HTML Tidy is a command-line tool and C library that can be\n" "used to validate and fix HTML data." msgstr "" -#: gnu/packages/web.scm:1680 +#: gnu/packages/web.scm:1681 msgid "" "The esbuild tool provides a unified bundler, transpiler and\n" "minifier. It packages up JavaScript and TypeScript code, along with JSON\n" "and other data, for distribution on the web." msgstr "" -#: gnu/packages/web.scm:1716 +#: gnu/packages/web.scm:1717 msgid "" "Tinyproxy is a light-weight HTTP/HTTPS proxy\n" "daemon. Designed from the ground up to be fast and yet small, it is an ideal\n" @@ -20811,14 +21060,14 @@ msgid "" "unavailable." msgstr "" -#: gnu/packages/web.scm:1751 +#: gnu/packages/web.scm:1752 msgid "" "Polipo is a small caching web proxy (web cache, HTTP proxy, and proxy\n" "server). It was primarily designed to be used by one person or a small group\n" "of people." msgstr "" -#: gnu/packages/web.scm:1779 +#: gnu/packages/web.scm:1780 msgid "" "Websockify translates WebSockets traffic to normal socket\n" "traffic. Websockify accepts the WebSockets handshake, parses it, and then\n" @@ -20826,7 +21075,7 @@ msgid "" "directions." msgstr "" -#: gnu/packages/web.scm:1806 +#: gnu/packages/web.scm:1807 msgid "" "WWWOFFLE is a proxy web server that is especially good for\n" "intermittent internet links. It can cache HTTP, HTTPS, FTP, and finger\n" @@ -20835,7 +21084,7 @@ msgid "" "changes, and much more." msgstr "" -#: gnu/packages/web.scm:1832 +#: gnu/packages/web.scm:1833 msgid "" "liboauth is a collection of C functions implementing the OAuth API.\n" "liboauth provides functions to escape and encode strings according to OAuth\n" @@ -20844,25 +21093,25 @@ msgid "" "hash/signatures." msgstr "" -#: gnu/packages/web.scm:1855 +#: gnu/packages/web.scm:1856 msgid "" "This package contains support scripts called by libquvi to\n" "parse media stream properties." msgstr "" -#: gnu/packages/web.scm:1889 +#: gnu/packages/web.scm:1890 msgid "" "libquvi is a library with a C API for parsing media stream\n" "URLs and extracting their actual media files." msgstr "" -#: gnu/packages/web.scm:1911 +#: gnu/packages/web.scm:1912 msgid "" "quvi is a command-line-tool suite to extract media files\n" "from streaming URLs. It is a command-line wrapper for the libquvi library." msgstr "" -#: gnu/packages/web.scm:1983 +#: gnu/packages/web.scm:1984 msgid "" "serf is a C-based HTTP client library built upon the Apache Portable\n" "Runtime (APR) library. It multiplexes connections, running the read/write\n" @@ -20870,7 +21119,7 @@ msgid "" "minimum to provide high performance operation." msgstr "" -#: gnu/packages/web.scm:2018 +#: gnu/packages/web.scm:2019 msgid "" "LibSass is a @acronym{SASS,Syntactically awesome style sheets} compiler\n" "library designed for portability and efficiency. To actually compile SASS\n" @@ -20878,29 +21127,29 @@ msgid "" "@var{sassc} for example." msgstr "" -#: gnu/packages/web.scm:2067 +#: gnu/packages/web.scm:2068 msgid "" "SassC is a compiler written in C for the CSS pre-processor\n" "language known as SASS." msgstr "" -#: gnu/packages/web.scm:2112 +#: gnu/packages/web.scm:2113 msgid "" "This module provides methods to compile a log format string\n" "to perl-code, for faster generation of access_log lines." msgstr "" -#: gnu/packages/web.scm:2140 +#: gnu/packages/web.scm:2141 msgid "Authen::SASL provides an SASL authentication framework." msgstr "" -#: gnu/packages/web.scm:2163 +#: gnu/packages/web.scm:2164 msgid "" "This Catalyst action implements a sensible default end\n" "action, which will forward to the first available view." msgstr "" -#: gnu/packages/web.scm:2195 +#: gnu/packages/web.scm:2196 msgid "" "This Action handles doing automatic method dispatching for\n" "REST requests. It takes a normal Catalyst action, and changes the dispatch to\n" @@ -20909,20 +21158,20 @@ msgid "" "regular method." msgstr "" -#: gnu/packages/web.scm:2226 +#: gnu/packages/web.scm:2227 msgid "" "The Catalyst::Authentication::Store::DBIx::Class class\n" "provides access to authentication information stored in a database via\n" "DBIx::Class." msgstr "" -#: gnu/packages/web.scm:2252 +#: gnu/packages/web.scm:2253 msgid "" "Catalyst::Component::InstancePerContext returns a new\n" "instance of a component on each request." msgstr "" -#: gnu/packages/web.scm:2288 +#: gnu/packages/web.scm:2289 msgid "" "The Catalyst-Devel distribution includes a variety of\n" "modules useful for the development of Catalyst applications, but not required\n" @@ -20932,7 +21181,7 @@ msgid "" "modules." msgstr "" -#: gnu/packages/web.scm:2316 +#: gnu/packages/web.scm:2317 msgid "" "Dispatch type managing path-matching behaviour using\n" "regexes. Regex dispatch types have been deprecated and removed from Catalyst\n" @@ -20942,20 +21191,20 @@ msgid "" "when the dispatch type is first seen in your application." msgstr "" -#: gnu/packages/web.scm:2363 +#: gnu/packages/web.scm:2364 msgid "" "This is a Catalyst Model for DBIx::Class::Schema-based\n" "Models." msgstr "" -#: gnu/packages/web.scm:2385 +#: gnu/packages/web.scm:2386 msgid "" "This Catalyst plugin enables you to create \"access logs\"\n" "from within a Catalyst application instead of requiring a webserver to do it\n" "for you. It will work even with Catalyst debug logging turned off." msgstr "" -#: gnu/packages/web.scm:2419 +#: gnu/packages/web.scm:2420 msgid "" "The authentication plugin provides generic user support for\n" "Catalyst apps. It is the basis for both authentication (checking the user is\n" @@ -20963,32 +21212,32 @@ msgid "" "system authorises them to do)." msgstr "" -#: gnu/packages/web.scm:2447 +#: gnu/packages/web.scm:2448 msgid "" "Catalyst::Plugin::Authorization::Roles provides role-based\n" "authorization for Catalyst based on Catalyst::Plugin::Authentication." msgstr "" -#: gnu/packages/web.scm:2469 +#: gnu/packages/web.scm:2470 msgid "" "This plugin creates and validates Captcha images for\n" "Catalyst." msgstr "" -#: gnu/packages/web.scm:2493 +#: gnu/packages/web.scm:2494 msgid "" "This module will attempt to load find and load configuration\n" "files of various types. Currently it supports YAML, JSON, XML, INI and Perl\n" "formats." msgstr "" -#: gnu/packages/web.scm:2522 +#: gnu/packages/web.scm:2523 msgid "" "This plugin links the two pieces required for session\n" "management in web applications together: the state, and the store." msgstr "" -#: gnu/packages/web.scm:2548 +#: gnu/packages/web.scm:2549 msgid "" "In order for Catalyst::Plugin::Session to work, the session\n" "ID needs to be stored on the client, and the session data needs to be stored\n" @@ -20996,14 +21245,14 @@ msgid "" "cookie mechanism." msgstr "" -#: gnu/packages/web.scm:2578 +#: gnu/packages/web.scm:2579 msgid "" "Catalyst::Plugin::Session::Store::FastMmap is a fast session\n" "storage plugin for Catalyst that uses an mmap'ed file to act as a shared\n" "memory interprocess cache. It is based on Cache::FastMmap." msgstr "" -#: gnu/packages/web.scm:2602 +#: gnu/packages/web.scm:2603 msgid "" "This plugin enhances the standard Catalyst debug screen by\n" "including a stack trace of your application up to the point where the error\n" @@ -21011,7 +21260,7 @@ msgid "" "number, file name, and code context surrounding the line number." msgstr "" -#: gnu/packages/web.scm:2628 +#: gnu/packages/web.scm:2629 msgid "" "The Static::Simple plugin is designed to make serving static\n" "content in your application during development quick and easy, without\n" @@ -21022,7 +21271,7 @@ msgid "" "MIME type directly to the browser, without being processed through Catalyst." msgstr "" -#: gnu/packages/web.scm:2687 +#: gnu/packages/web.scm:2688 msgid "" "Catalyst is a modern framework for making web applications.\n" "It is designed to make it easy to manage the various tasks you need to do to\n" @@ -21030,7 +21279,7 @@ msgid "" "\"plug in\" existing Perl modules that do what you need." msgstr "" -#: gnu/packages/web.scm:2715 +#: gnu/packages/web.scm:2716 msgid "" "This module is a Moose::Role which allows you more\n" "flexibility in your application's deployment configurations when deployed\n" @@ -21038,26 +21287,26 @@ msgid "" "replaced with the contents of the X-Request-Base header." msgstr "" -#: gnu/packages/web.scm:2743 +#: gnu/packages/web.scm:2744 msgid "" "The purpose of this module is to provide a method for\n" "downloading data into many supportable formats. For example, downloading a\n" "table based report in a variety of formats (CSV, HTML, etc.)." msgstr "" -#: gnu/packages/web.scm:2767 +#: gnu/packages/web.scm:2768 msgid "" "Catalyst::View::JSON is a Catalyst View handler that returns\n" "stash data in JSON format." msgstr "" -#: gnu/packages/web.scm:2793 +#: gnu/packages/web.scm:2794 msgid "" "This module is a Catalyst view class for the Template\n" "Toolkit." msgstr "" -#: gnu/packages/web.scm:2821 +#: gnu/packages/web.scm:2822 msgid "" "Adds a \"COMPONENT\" in Catalyst::Component method to your\n" "Catalyst component base class that reads the optional \"traits\" parameter\n" @@ -21066,19 +21315,19 @@ msgid "" "MooseX::Traits::Pluggable." msgstr "" -#: gnu/packages/web.scm:2845 +#: gnu/packages/web.scm:2846 msgid "" "CatalystX::RoleApplicator applies roles to Catalyst\n" "application classes." msgstr "" -#: gnu/packages/web.scm:2870 +#: gnu/packages/web.scm:2871 msgid "" "This module provides a Catalyst extension to replace the\n" "development server with Starman." msgstr "" -#: gnu/packages/web.scm:2892 +#: gnu/packages/web.scm:2893 msgid "" "CGI.pm is a stable, complete and mature solution for\n" "processing and preparing HTTP requests and responses. Major features include\n" @@ -21087,44 +21336,44 @@ msgid "" "headers." msgstr "" -#: gnu/packages/web.scm:2919 +#: gnu/packages/web.scm:2920 msgid "" "@code{CGI::FormBuilder} provides an easy way to generate and process CGI\n" "form-based applications." msgstr "" -#: gnu/packages/web.scm:2946 +#: gnu/packages/web.scm:2947 msgid "" "@code{CGI::Session} provides modular session management system across\n" "HTTP requests." msgstr "" -#: gnu/packages/web.scm:2967 +#: gnu/packages/web.scm:2968 msgid "" "CGI::Simple provides a relatively lightweight drop in\n" "replacement for CGI.pm. It shares an identical OO interface to CGI.pm for\n" "parameter parsing, file upload, cookie handling and header generation." msgstr "" -#: gnu/packages/web.scm:2989 +#: gnu/packages/web.scm:2990 msgid "" "This is a module for building structured data from CGI\n" "inputs, in a manner reminiscent of how PHP does." msgstr "" -#: gnu/packages/web.scm:3012 +#: gnu/packages/web.scm:3013 msgid "" "This module provides functions that deal with the date\n" "formats used by the HTTP protocol." msgstr "" -#: gnu/packages/web.scm:3033 +#: gnu/packages/web.scm:3034 msgid "" "Digest::MD5::File is a Perl extension for getting MD5 sums\n" "for files and urls." msgstr "" -#: gnu/packages/web.scm:3053 +#: gnu/packages/web.scm:3054 msgid "" "The POSIX locale system is used to specify both the language\n" "conventions requested by the user and the preferred character set to\n" @@ -21136,66 +21385,66 @@ msgid "" "with Encode::decode(locale => $string)." msgstr "" -#: gnu/packages/web.scm:3086 +#: gnu/packages/web.scm:3087 msgid "" "@code{Feed::Find} implements feed auto-discovery for finding\n" "syndication feeds, given a URI. It will discover the following feed formats:\n" "RSS 0.91, RSS 1.0, RSS 2.0, Atom." msgstr "" -#: gnu/packages/web.scm:3109 +#: gnu/packages/web.scm:3110 msgid "" "The File::Listing module exports a single function called parse_dir(),\n" "which can be used to parse directory listings." msgstr "" -#: gnu/packages/web.scm:3142 +#: gnu/packages/web.scm:3143 msgid "" "Finance::Quote gets stock quotes from various internet sources, including\n" "Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange." msgstr "" -#: gnu/packages/web.scm:3165 +#: gnu/packages/web.scm:3166 msgid "" "This is a Perl extension for using GSSAPI C bindings as\n" "described in RFC 2744." msgstr "" -#: gnu/packages/web.scm:3187 +#: gnu/packages/web.scm:3188 msgid "" "HTML::Element::Extended is a Perl extension for manipulating a table\n" "composed of HTML::Element style components." msgstr "" -#: gnu/packages/web.scm:3208 +#: gnu/packages/web.scm:3209 msgid "" "Objects of the HTML::Form class represents a single HTML\n" "
...
instance." msgstr "" -#: gnu/packages/web.scm:3241 +#: gnu/packages/web.scm:3242 msgid "@code{HTML::Scrubber} Perl extension for scrubbing/sanitizing HTML." msgstr "" -#: gnu/packages/web.scm:3260 +#: gnu/packages/web.scm:3261 msgid "" "HTML::Lint is a pure-Perl HTML parser and checker for\n" "syntactic legitmacy." msgstr "" -#: gnu/packages/web.scm:3282 +#: gnu/packages/web.scm:3283 msgid "" "HTML::TableExtract is a Perl module for extracting the content contained\n" "in tables within an HTML document, either as text or encoded element trees." msgstr "" -#: gnu/packages/web.scm:3305 +#: gnu/packages/web.scm:3306 msgid "" "This distribution contains a suite of modules for\n" "representing, creating, and extracting information from HTML syntax trees." msgstr "" -#: gnu/packages/web.scm:3327 +#: gnu/packages/web.scm:3328 msgid "" "Objects of the HTML::Parser class will recognize markup and separate\n" "it from plain text (alias data content) in HTML documents. As different\n" @@ -21203,13 +21452,13 @@ msgid "" "are invoked." msgstr "" -#: gnu/packages/web.scm:3349 +#: gnu/packages/web.scm:3350 msgid "" "The HTML::Tagset module contains several data tables useful in various\n" "kinds of HTML parsing operations." msgstr "" -#: gnu/packages/web.scm:3370 +#: gnu/packages/web.scm:3371 msgid "" "This module attempts to make using HTML templates simple and natural.\n" "It extends standard HTML with a few new HTML-esque tags: @code{},\n" @@ -21220,40 +21469,40 @@ msgid "" "you to separate design from the data." msgstr "" -#: gnu/packages/web.scm:3398 +#: gnu/packages/web.scm:3399 msgid "" "HTTP::Body parses chunks of HTTP POST data and supports\n" "application/octet-stream, application/json, application/x-www-form-urlencoded,\n" "and multipart/form-data." msgstr "" -#: gnu/packages/web.scm:3421 +#: gnu/packages/web.scm:3422 msgid "" "This module implements a minimalist HTTP user agent cookie\n" "jar in conformance with RFC 6265 ." msgstr "" -#: gnu/packages/web.scm:3443 +#: gnu/packages/web.scm:3444 msgid "" "The HTTP::Cookies class is for objects that represent a cookie jar,\n" "that is, a database of all the HTTP cookies that a given LWP::UserAgent\n" "object knows about." msgstr "" -#: gnu/packages/web.scm:3466 +#: gnu/packages/web.scm:3467 msgid "" "Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen\n" "on a socket for incoming requests. The HTTP::Daemon is a subclass of\n" "IO::Socket::INET, so you can perform socket operations directly on it too." msgstr "" -#: gnu/packages/web.scm:3487 +#: gnu/packages/web.scm:3488 msgid "" "The HTTP::Date module provides functions that deal with date formats\n" "used by the HTTP protocol (and then some more)." msgstr "" -#: gnu/packages/web.scm:3508 +#: gnu/packages/web.scm:3509 msgid "" "@code{HTTP::Lite} is a stand-alone lightweight\n" "HTTP/1.1 implementation for perl. It is intended for use in\n" @@ -21267,11 +21516,11 @@ msgid "" "processing of request data as it arrives." msgstr "" -#: gnu/packages/web.scm:3541 +#: gnu/packages/web.scm:3542 msgid "An HTTP::Message object contains some headers and a content body." msgstr "" -#: gnu/packages/web.scm:3562 +#: gnu/packages/web.scm:3563 msgid "" "The HTTP::Negotiate module provides a complete implementation of the\n" "HTTP content negotiation algorithm specified in\n" @@ -21281,7 +21530,7 @@ msgid "" "fields in the request." msgstr "" -#: gnu/packages/web.scm:3587 +#: gnu/packages/web.scm:3588 msgid "" "This is an HTTP request parser. It takes chunks of text as\n" "received and returns a @code{hint} as to what is required, or returns the\n" @@ -21289,33 +21538,33 @@ msgid "" "supported." msgstr "" -#: gnu/packages/web.scm:3610 +#: gnu/packages/web.scm:3611 msgid "" "HTTP::Parser::XS is a fast, primitive HTTP request/response\n" "parser." msgstr "" -#: gnu/packages/web.scm:3631 +#: gnu/packages/web.scm:3632 msgid "" "This module provides a convenient way to set up a CGI\n" "environment from an HTTP::Request." msgstr "" -#: gnu/packages/web.scm:3665 +#: gnu/packages/web.scm:3666 msgid "" "HTTP::Server::Simple is a simple standalone HTTP daemon with\n" "no non-core module dependencies. It can be used for building a standalone\n" "http-based UI to your existing tools." msgstr "" -#: gnu/packages/web.scm:3688 +#: gnu/packages/web.scm:3689 msgid "" "This is a very simple HTTP/1.1 client, designed for doing\n" "simple requests without the overhead of a large framework like LWP::UserAgent.\n" "It supports proxies and redirection. It also correctly resumes after EINTR." msgstr "" -#: gnu/packages/web.scm:3713 +#: gnu/packages/web.scm:3714 msgid "" "@code{HTTP::Tinyish} is a wrapper module for @acronym{LWP,libwww-perl},\n" "@code{HTTP::Tiny}, curl and wget.\n" @@ -21323,20 +21572,20 @@ msgid "" "It provides an API compatible to HTTP::Tiny." msgstr "" -#: gnu/packages/web.scm:3735 +#: gnu/packages/web.scm:3736 msgid "" "IO::HTML provides an easy way to open a file containing HTML while\n" "automatically determining its encoding. It uses the HTML5 encoding sniffing\n" "algorithm specified in section 8.2.2.1 of the draft standard." msgstr "" -#: gnu/packages/web.scm:3755 +#: gnu/packages/web.scm:3756 msgid "" "This module provides a protocol-independent way to use IPv4\n" "and IPv6 sockets, intended as a replacement for IO::Socket::INET." msgstr "" -#: gnu/packages/web.scm:3777 +#: gnu/packages/web.scm:3778 msgid "" "IO::Socket::SSL makes using SSL/TLS much easier by wrapping the\n" "necessary functionality into the familiar IO::Socket interface and providing\n" @@ -21345,7 +21594,7 @@ msgid "" "select or poll." msgstr "" -#: gnu/packages/web.scm:3816 +#: gnu/packages/web.scm:3817 msgid "" "The libwww-perl collection is a set of Perl modules which provides a\n" "simple and consistent application programming interface to the\n" @@ -21355,7 +21604,7 @@ msgid "" "help you implement simple HTTP servers." msgstr "" -#: gnu/packages/web.scm:3844 +#: gnu/packages/web.scm:3845 msgid "" "This module attempts to answer, as accurately as it can, one\n" "of the nastiest technical questions there is: am I on the internet?\n" @@ -21365,7 +21614,7 @@ msgid "" "not have DNS. We might not have a network card at all!" msgstr "" -#: gnu/packages/web.scm:3870 +#: gnu/packages/web.scm:3871 #, scheme-format msgid "" "The LWP::MediaTypes module provides functions for handling media (also\n" @@ -21374,20 +21623,20 @@ msgid "" "exists it is used instead." msgstr "" -#: gnu/packages/web.scm:3895 +#: gnu/packages/web.scm:3896 msgid "" "The LWP::Protocol::https module provides support for using\n" "https schemed URLs with LWP." msgstr "" -#: gnu/packages/web.scm:3916 +#: gnu/packages/web.scm:3917 msgid "" "LWP::UserAgent::Cached is an LWP::UserAgent subclass with\n" "cache support. It returns responses from the local file system, if available,\n" "instead of making an HTTP request." msgstr "" -#: gnu/packages/web.scm:3938 +#: gnu/packages/web.scm:3939 msgid "" "LWP::UserAgent::Determined works just like LWP::UserAgent,\n" "except that when you use it to get a web page but run into a\n" @@ -21395,7 +21644,7 @@ msgid "" "and retry a few times." msgstr "" -#: gnu/packages/web.scm:3965 +#: gnu/packages/web.scm:3966 msgid "" "@code{LWPx::ParanoidAgent} is a class subclassing\n" "@code{LWP::UserAgent} but paranoid against attackers. Its purpose is\n" @@ -21405,11 +21654,11 @@ msgid "" "is limited to http and https." msgstr "" -#: gnu/packages/web.scm:4011 +#: gnu/packages/web.scm:4012 msgid "This module provides a Perlish interface to Amazon S3." msgstr "" -#: gnu/packages/web.scm:4032 +#: gnu/packages/web.scm:4033 msgid "" "The Net::HTTP class is a low-level HTTP client. An instance of the\n" "Net::HTTP class represents a connection to an HTTP server. The HTTP protocol\n" @@ -21417,7 +21666,7 @@ msgid "" "HTTP/1.1." msgstr "" -#: gnu/packages/web.scm:4053 +#: gnu/packages/web.scm:4054 msgid "" "Net::Server is an extensible, generic Perl server engine.\n" "It attempts to be a generic server as in Net::Daemon and NetServer::Generic.\n" @@ -21431,11 +21680,11 @@ msgid "" "or to multiple server ports." msgstr "" -#: gnu/packages/web.scm:4082 +#: gnu/packages/web.scm:4083 msgid "SSL support for Net::SMTP." msgstr "" -#: gnu/packages/web.scm:4116 +#: gnu/packages/web.scm:4117 msgid "" "Plack is a set of tools for using the PSGI stack. It\n" "contains middleware components, a reference server, and utilities for Web\n" @@ -21443,7 +21692,7 @@ msgid "" "WSGI." msgstr "" -#: gnu/packages/web.scm:4143 +#: gnu/packages/web.scm:4144 msgid "" "Plack::Middleware::Deflater is a middleware to encode your response body\n" "in gzip or deflate, based on \"Accept-Encoding\" HTTP request header. It\n" @@ -21452,13 +21701,13 @@ msgid "" "servers." msgstr "" -#: gnu/packages/web.scm:4170 +#: gnu/packages/web.scm:4171 msgid "" "This module sets the body in redirect response, if it's not\n" "already set." msgstr "" -#: gnu/packages/web.scm:4193 +#: gnu/packages/web.scm:4194 msgid "" "This middleware allows for POST requests that pretend to be\n" "something else: by adding either a header named X-HTTP-Method-Override to the\n" @@ -21466,44 +21715,44 @@ msgid "" "can say what method it actually meant." msgstr "" -#: gnu/packages/web.scm:4217 +#: gnu/packages/web.scm:4218 msgid "" "This module removes the body in an HTTP response if it's not\n" "required." msgstr "" -#: gnu/packages/web.scm:4240 +#: gnu/packages/web.scm:4241 msgid "" "Plack::Middleware::ReverseProxy resets some HTTP headers,\n" "which are changed by reverse-proxy. You can specify the reverse proxy address\n" "and stop fake requests using @code{enable_if} directive in your app.psgi." msgstr "" -#: gnu/packages/web.scm:4261 +#: gnu/packages/web.scm:4262 msgid "" "This module allows your to run your Plack::Test tests\n" "against an external server instead of just against a local application through\n" "either mocked HTTP or a locally spawned server." msgstr "" -#: gnu/packages/web.scm:4283 +#: gnu/packages/web.scm:4284 msgid "Test::TCP is test utilities for TCP/IP programs." msgstr "" -#: gnu/packages/web.scm:4308 +#: gnu/packages/web.scm:4309 msgid "" "Test::WWW::Mechanize is a subclass of the Perl module\n" "WWW::Mechanize that incorporates features for web application testing." msgstr "" -#: gnu/packages/web.scm:4341 +#: gnu/packages/web.scm:4342 msgid "" "The Test::WWW::Mechanize::Catalyst module meshes the\n" "Test::WWW:Mechanize module and the Catalyst web application framework to allow\n" "testing of Catalyst applications without needing to start up a web server." msgstr "" -#: gnu/packages/web.scm:4365 +#: gnu/packages/web.scm:4366 msgid "" "PSGI is a specification to decouple web server environments\n" "from web application framework code. Test::WWW::Mechanize is a subclass of\n" @@ -21512,21 +21761,21 @@ msgid "" "applications." msgstr "" -#: gnu/packages/web.scm:4390 +#: gnu/packages/web.scm:4391 msgid "" "The URI module implements the URI class. Objects of this class\n" "represent \"Uniform Resource Identifier references\" as specified in RFC 2396\n" "and updated by RFC 2732." msgstr "" -#: gnu/packages/web.scm:4413 +#: gnu/packages/web.scm:4414 msgid "" "@code{URI::Fetch} is a smart client for fetching HTTP pages,\n" "notably syndication feeds (RSS, Atom, and others), in an intelligent, bandwidth-\n" "and time-saving way." msgstr "" -#: gnu/packages/web.scm:4437 +#: gnu/packages/web.scm:4438 msgid "" "This module finds URIs and URLs (according to what URI.pm\n" "considers a URI) in plain text. It only finds URIs which include a\n" @@ -21534,37 +21783,37 @@ msgid "" "URI::Find::Schemeless. For a command-line interface, urifind is provided." msgstr "" -#: gnu/packages/web.scm:4460 +#: gnu/packages/web.scm:4461 msgid "" "With this module, the URI package provides the same set of\n" "methods for WebSocket URIs as it does for HTTP URIs." msgstr "" -#: gnu/packages/web.scm:4483 +#: gnu/packages/web.scm:4484 msgid "" "This perl module provides a wrapper around URI templates as described in\n" "RFC 6570." msgstr "" -#: gnu/packages/web.scm:4517 +#: gnu/packages/web.scm:4518 msgid "" "This is a Perl extension interface for the libcurl file downloading\n" "library." msgstr "" -#: gnu/packages/web.scm:4548 +#: gnu/packages/web.scm:4549 msgid "" "WWW::Mechanize is a Perl module for stateful programmatic\n" "web browsing, used for automating interaction with websites." msgstr "" -#: gnu/packages/web.scm:4586 +#: gnu/packages/web.scm:4587 msgid "" "@code{WWW::OpenSearch} is a module to search @url{A9's OpenSearch,\n" "http://opensearch.a9.com} compatible search engines." msgstr "" -#: gnu/packages/web.scm:4608 +#: gnu/packages/web.scm:4609 msgid "" "The WWW::RobotRules module parses /robots.txt files as specified in\n" "\"A Standard for Robot Exclusion\", at\n" @@ -21573,13 +21822,13 @@ msgid "" "their web site." msgstr "" -#: gnu/packages/web.scm:4635 gnu/packages/web.scm:4659 +#: gnu/packages/web.scm:4640 gnu/packages/web.scm:4664 msgid "" "Universal feed parser which handles RSS 0.9x, RSS 1.0, RSS 2.0,\n" "CDF, Atom 0.3, and Atom 1.0 feeds." msgstr "" -#: gnu/packages/web.scm:4756 +#: gnu/packages/web.scm:4761 msgid "" "The Guix Data Service stores data about GNU Guix, and provides this\n" "through a web interface. It supports listening to the guix-commits mailing\n" @@ -21587,20 +21836,20 @@ msgid "" "PostgreSQL database." msgstr "" -#: gnu/packages/web.scm:4785 +#: gnu/packages/web.scm:4790 msgid "" "Gumbo is an implementation of the HTML5 parsing algorithm implemented as\n" "a pure C99 library." msgstr "" -#: gnu/packages/web.scm:4858 +#: gnu/packages/web.scm:4863 msgid "" "uWSGI presents a complete stack for networked/clustered web applications,\n" "implementing message/object passing, caching, RPC and process management.\n" "It uses the uwsgi protocol for all the networking/interprocess communications." msgstr "" -#: gnu/packages/web.scm:4891 +#: gnu/packages/web.scm:4896 msgid "" "jq is like sed for JSON data – you can use it to slice and\n" "filter and map and transform structured data with the same ease that sed, awk,\n" @@ -21610,7 +21859,7 @@ msgid "" "you'd expect." msgstr "" -#: gnu/packages/web.scm:4920 +#: gnu/packages/web.scm:4925 msgid "" "@command{pup} is a command line tool for processing HTML. It reads\n" "from stdin, prints to stdout, and allows the user to filter parts of the page\n" @@ -21618,66 +21867,66 @@ msgid "" "fast and flexible way of exploring HTML from the terminal." msgstr "" -#: gnu/packages/web.scm:4953 +#: gnu/packages/web.scm:4958 msgid "" "Uhttpmock is a project for mocking web service APIs which use HTTP or\n" "HTTPS. It provides a library, libuhttpmock, which implements recording and\n" "playback of HTTP request/response traces." msgstr "" -#: gnu/packages/web.scm:4989 +#: gnu/packages/web.scm:4994 msgid "" "Woof (Web Offer One File) is a small simple web server that\n" "can easily be invoked on a single file. Your partner can access the file with\n" "tools they trust (e.g. wget)." msgstr "" -#: gnu/packages/web.scm:5017 +#: gnu/packages/web.scm:5022 msgid "" "This package provides the shared build system for Netsurf project\n" "libraries." msgstr "" -#: gnu/packages/web.scm:5052 +#: gnu/packages/web.scm:5057 msgid "" "LibParserUtils is a library for building efficient parsers, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5082 +#: gnu/packages/web.scm:5087 msgid "" "Hubbub is an HTML5 compliant parsing library, written in C, which can\n" "parse both valid and invalid web content. It is developed as part of the\n" "NetSurf project." msgstr "" -#: gnu/packages/web.scm:5203 +#: gnu/packages/web.scm:5208 msgid "" "Ikiwiki is a wiki compiler, capable of generating a static set of web\n" "pages, but also incorporating dynamic features like a web based editor and\n" "commenting." msgstr "" -#: gnu/packages/web.scm:5227 +#: gnu/packages/web.scm:5232 msgid "" "LibWapcaplet provides a reference counted string internment system\n" "designed to store small strings and allow rapid comparison of them. It is\n" "developed as part of the Netsurf project." msgstr "" -#: gnu/packages/web.scm:5259 +#: gnu/packages/web.scm:5264 msgid "" "LibCSS is a CSS (Cascading Style Sheet) parser and selection engine,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5294 +#: gnu/packages/web.scm:5299 msgid "" "LibDOM is an implementation of the W3C DOM, written in C. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5321 +#: gnu/packages/web.scm:5326 msgid "" "Libsvgtiny takes some SVG as input and returns a list of paths and texts\n" "which can be rendered easily, as defined in\n" @@ -21685,65 +21934,65 @@ msgid "" "project." msgstr "" -#: gnu/packages/web.scm:5346 +#: gnu/packages/web.scm:5351 msgid "" "Libnsbmp is a decoding library for BMP and ICO image file formats,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5369 +#: gnu/packages/web.scm:5374 msgid "" "Libnsgif is a decoding library for the GIF image file format, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5396 +#: gnu/packages/web.scm:5401 msgid "" "Libnslog provides a category-based logging library which supports\n" "complex logging filters, multiple log levels, and provides context through to\n" "client applications. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5420 +#: gnu/packages/web.scm:5425 msgid "" "Libnsutils provides a small number of useful utility routines. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5443 +#: gnu/packages/web.scm:5448 msgid "" "Libnspsl is a library to generate a static code representation of the\n" "Public Suffix List. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5469 +#: gnu/packages/web.scm:5474 msgid "" "@code{nsgenbind} is a tool to generate JavaScript to DOM bindings from\n" "w3c webidl files and a binding configuration file." msgstr "" -#: gnu/packages/web.scm:5592 +#: gnu/packages/web.scm:5597 msgid "" "NetSurf is a lightweight web browser that has its own layout and\n" "rendering engine entirely written from scratch. It is small and capable of\n" "handling many of the web standards in use today." msgstr "" -#: gnu/packages/web.scm:5631 +#: gnu/packages/web.scm:5636 msgid "" "Surfraw (Shell Users' Revolutionary Front Rage Against the Web)\n" "provides a unix command line interface to a variety of popular www search engines\n" "and similar services." msgstr "" -#: gnu/packages/web.scm:5664 +#: gnu/packages/web.scm:5669 msgid "" "darkhttpd is a simple static web server. It is\n" "standalone and does not need inetd or ucspi-tcp. It does not need any\n" "config files---you only have to specify the www root." msgstr "" -#: gnu/packages/web.scm:5695 +#: gnu/packages/web.scm:5700 msgid "" "GoAccess is a real-time web log analyzer and interactive viewer that\n" "runs in a terminal or through your browser. It provides fast and valuable\n" @@ -21751,7 +22000,7 @@ msgid "" "on the fly." msgstr "" -#: gnu/packages/web.scm:5749 +#: gnu/packages/web.scm:5754 msgid "" "Hitch is a performant TLS proxy based on @code{libev}. It terminates\n" "SSL/TLS connections and forwards the unencrypted traffic to a backend such\n" @@ -21759,7 +22008,7 @@ msgid "" "multicore machines." msgstr "" -#: gnu/packages/web.scm:5786 +#: gnu/packages/web.scm:5791 msgid "" "httptunnel creates a bidirectional virtual data connection\n" "tunnelled through HTTP (HyperText Transfer Protocol) requests. This can be\n" @@ -21777,7 +22026,7 @@ msgid "" "deployments." msgstr "" -#: gnu/packages/web.scm:5915 +#: gnu/packages/web.scm:5912 msgid "" "Varnish is a high-performance HTTP accelerator. It acts as a caching\n" "reverse proxy and load balancer. You install it in front of any server that\n" @@ -21785,14 +22034,14 @@ msgid "" "configuration language." msgstr "" -#: gnu/packages/web.scm:5949 +#: gnu/packages/web.scm:5946 msgid "" "This package provides a collection of modules (@dfn{vmods}) for the Varnish\n" "cache server, extending the @acronym{VCL, Varnish Configuration Language} with\n" "additional capabilities." msgstr "" -#: gnu/packages/web.scm:5976 +#: gnu/packages/web.scm:5973 msgid "" "@code{xinetd}, a more secure replacement for @code{inetd},\n" "listens for incoming requests over a network and launches the appropriate\n" @@ -21801,7 +22050,7 @@ msgid "" "used to start services with both privileged and non-privileged port numbers." msgstr "" -#: gnu/packages/web.scm:6023 +#: gnu/packages/web.scm:6020 msgid "" "Tidy is a console application which corrects and cleans up\n" "HTML and XML documents by fixing markup errors and upgrading\n" @@ -21812,14 +22061,14 @@ msgid "" "functions of Tidy." msgstr "" -#: gnu/packages/web.scm:6085 +#: gnu/packages/web.scm:6082 msgid "" "Hiawatha has been written with security in mind.\n" "Features include the ability to stop SQL injections, XSS and CSRF attacks and\n" "exploit attempts." msgstr "" -#: gnu/packages/web.scm:6107 +#: gnu/packages/web.scm:6104 msgid "" "Testing an HTTP Library can become difficult sometimes.\n" "@code{RequestBin} is fantastic for testing POST requests, but doesn't let you control the\n" @@ -21827,14 +22076,14 @@ msgid "" "JSON-encoded." msgstr "" -#: gnu/packages/web.scm:6132 +#: gnu/packages/web.scm:6129 msgid "" "@code{Pytest-httpbin} creates a @code{pytest} fixture that is dependency-injected\n" "into your tests. It automatically starts up a HTTP server in a separate thread running\n" "@code{httpbin} and provides your test with the URL in the fixture." msgstr "" -#: gnu/packages/web.scm:6199 +#: gnu/packages/web.scm:6196 msgid "" "This is a parser for HTTP messages written in C. It\n" "parses both requests and responses. The parser is designed to be used in\n" @@ -21844,40 +22093,40 @@ msgid "" "message stream (in a web server that is per connection)." msgstr "" -#: gnu/packages/web.scm:6236 +#: gnu/packages/web.scm:6233 msgid "" "@code{httpretty} is a helper for faking web requests,\n" "inspired by Ruby's @code{fakeweb}." msgstr "" -#: gnu/packages/web.scm:6254 +#: gnu/packages/web.scm:6251 msgid "" "jo is a command-line utility to create JSON objects or\n" "arrays. It creates a JSON string on stdout from words provided as\n" "command-line arguments or read from stdin." msgstr "" -#: gnu/packages/web.scm:6313 +#: gnu/packages/web.scm:6310 msgid "" "@code{ia} is a command-line tool for using\n" "@url{archive.org} from the command-line. It also implements the\n" "internetarchive python module for programmatic access to archive.org." msgstr "" -#: gnu/packages/web.scm:6364 +#: gnu/packages/web.scm:6361 msgid "" "@code{clf} is a command line tool for searching code\n" "snippets on @url{https://commandlinefu.com}." msgstr "" -#: gnu/packages/web.scm:6402 +#: gnu/packages/web.scm:6399 msgid "" "rss-bridge generates Atom feeds for social networking\n" "websites lacking feeds. Supported websites include Facebook, Twitter,\n" "Instagram and YouTube." msgstr "" -#: gnu/packages/web.scm:6440 +#: gnu/packages/web.scm:6437 msgid "" "LinkChecker is a website validator. It checks for broken\n" "links in websites. It is recursive and multithreaded providing output in\n" @@ -21886,67 +22135,67 @@ msgid "" "file links." msgstr "" -#: gnu/packages/web.scm:6488 +#: gnu/packages/web.scm:6485 msgid "" "Castor is a graphical client for plain-text protocols written in\n" "Rust with GTK. It currently supports the Gemini, Gopher and Finger\n" "protocols." msgstr "" -#: gnu/packages/web.scm:6575 +#: gnu/packages/web.scm:6572 msgid "" "This package includes Clearsilver, the CGI kit and HTML templating\n" "system." msgstr "" -#: gnu/packages/web.scm:6594 +#: gnu/packages/web.scm:6591 msgid "" "Py-ubjson is a Python module providing an Universal Binary JSON\n" "encoder/decoder based on the draft-12 specification for UBJSON." msgstr "" -#: gnu/packages/web.scm:6689 +#: gnu/packages/web.scm:6686 msgid "" "Apache Tomcat is a free implementation of the Java\n" "Servlet, JavaServer Pages, Java Expression Language and Java WebSocket\n" "technologies." msgstr "" -#: gnu/packages/web.scm:6743 +#: gnu/packages/web.scm:6740 msgid "" "This package contains helper classes for testing the Jetty\n" "Web Server." msgstr "" -#: gnu/packages/web.scm:6802 +#: gnu/packages/web.scm:6799 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides utility classes." msgstr "" -#: gnu/packages/web.scm:6880 +#: gnu/packages/web.scm:6877 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides IO-related utility classes." msgstr "" -#: gnu/packages/web.scm:6925 +#: gnu/packages/web.scm:6922 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides HTTP-related utility classes." msgstr "" -#: gnu/packages/web.scm:6959 +#: gnu/packages/web.scm:6956 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides the JMX management." msgstr "" -#: gnu/packages/web.scm:7045 +#: gnu/packages/web.scm:7042 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21954,7 +22203,7 @@ msgid "" "artifact." msgstr "" -#: gnu/packages/web.scm:7088 +#: gnu/packages/web.scm:7085 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21962,7 +22211,7 @@ msgid "" "infrastructure" msgstr "" -#: gnu/packages/web.scm:7144 +#: gnu/packages/web.scm:7141 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21970,14 +22219,14 @@ msgid "" "container." msgstr "" -#: gnu/packages/web.scm:7308 +#: gnu/packages/web.scm:7305 msgid "" "Jsoup is a Java library for working with real-world HTML. It\n" "provides a very convenient API for extracting and manipulating data, using the\n" "best of DOM, CSS, and jQuery-like methods." msgstr "" -#: gnu/packages/web.scm:7337 +#: gnu/packages/web.scm:7334 msgid "" "Signpost is the easy and intuitive solution for signing\n" "HTTP messages on the Java platform in conformance with the OAuth Core 1.0a\n" @@ -21985,7 +22234,7 @@ msgid "" "combine it with different HTTP messaging layers." msgstr "" -#: gnu/packages/web.scm:7360 +#: gnu/packages/web.scm:7357 msgid "" "Tidyp is a program that can validate your HTML, as well as\n" "modify it to be more clean and standard. tidyp does not validate HTML 5.\n" @@ -21995,14 +22244,14 @@ msgid "" "based on this library, allowing Perl programmers to easily validate HTML." msgstr "" -#: gnu/packages/web.scm:7401 +#: gnu/packages/web.scm:7398 msgid "" "@code{HTML::Tidy} is an HTML checker in a handy dandy\n" "object. It's meant as a replacement for @code{HTML::Lint}, which is written\n" "in Perl but is not nearly as capable as @code{HTML::Tidy}." msgstr "" -#: gnu/packages/web.scm:7430 +#: gnu/packages/web.scm:7427 msgid "" "Geomyidae is a server for distributed hypertext protocol Gopher. Its\n" "features include:\n" @@ -22016,14 +22265,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/web.scm:7478 +#: gnu/packages/web.scm:7475 msgid "" "Cat avatar generator is a generator of cat pictures optimised\n" "to generate random avatars, or defined avatar from a \"seed\". This is a\n" "derivation by David Revoy from the original MonsterID by Andreas Gohr." msgstr "" -#: gnu/packages/web.scm:7548 +#: gnu/packages/web.scm:7545 msgid "" "nghttp2 implements the Hypertext Transfer Protocol, version\n" "2 (@dfn{HTTP/2}).\n" @@ -22049,14 +22298,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7647 +#: gnu/packages/web.scm:7644 msgid "" "Hpcguix-web provides a web interface to the list of packages\n" "provided by Guix. The list of packages is searchable and provides\n" "instructions on how to use Guix in a shared HPC environment." msgstr "" -#: gnu/packages/web.scm:7668 +#: gnu/packages/web.scm:7665 msgid "" "HTTrack allows you to download a World Wide Web site from\n" "the Internet to a local directory, building recursively all directories,\n" @@ -22070,7 +22319,7 @@ msgid "" "HTTrack is fully configurable, and has an integrated help system." msgstr "" -#: gnu/packages/web.scm:7703 +#: gnu/packages/web.scm:7700 msgid "" "buku is a powerful bookmark manager written in Python3 and SQLite3.\n" "@command{buku} can auto-import bookmarks from your browser and present them\n" @@ -22079,7 +22328,7 @@ msgid "" "@command{bukuserver}." msgstr "" -#: gnu/packages/web.scm:7724 +#: gnu/packages/web.scm:7721 msgid "" "Anonip masks the last bits of IPv4 and IPv6 addresses in log files.\n" "That way most of the relevant information is preserved, while the IP address\n" @@ -22094,7 +22343,7 @@ msgid "" "Anonip can also be uses as a Python module in your own Python application." msgstr "" -#: gnu/packages/web.scm:7758 +#: gnu/packages/web.scm:7755 msgid "" "Poussetaches (which literally means \"push tasks\" in\n" "French) is a lightweight asynchronous task execution service that aims to\n" @@ -22106,7 +22355,7 @@ msgid "" "returned." msgstr "" -#: gnu/packages/web.scm:7783 +#: gnu/packages/web.scm:7780 msgid "" "htmlcxx is a simple non-validating CSS1 and HTML parser for\n" "C++. Although there are several other HTML parsers available, htmlcxx has some\n" @@ -22124,7 +22373,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:7827 +#: gnu/packages/web.scm:7824 msgid "" "libRocket is a C++ user interface package based on the HTML\n" "and CSS standards. libRocket uses the open standards XHTML1.0 and\n" @@ -22141,11 +22390,11 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7869 +#: gnu/packages/web.scm:7866 msgid "gmnisrv is a simple Gemini protocol server written in C." msgstr "" -#: gnu/packages/web.scm:7900 +#: gnu/packages/web.scm:7898 msgid "" "The openZIM project proposes offline storage solutions for\n" "content coming from the Web. The zimlib is the standard implementation of the\n" @@ -22177,14 +22426,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:8081 +#: gnu/packages/web.scm:8078 msgid "" "uriparser is a strictly RFC 3986 compliant URI parsing and\n" "handling library written in C89 (\"ANSI C\"). uriparser is fast and supports\n" "Unicode." msgstr "" -#: gnu/packages/web.scm:8115 +#: gnu/packages/web.scm:8112 msgid "" "Quark is an extremely small and simple HTTP GET/HEAD only\n" "web server for static content. TLS is not natively supported and should be\n" @@ -22354,53 +22603,53 @@ msgid "" "Enhancement}." msgstr "" -#: gnu/services/base.scm:276 +#: gnu/services/base.scm:279 msgid "" "Populate the @file{/etc/fstab} based on the given file\n" "system objects." msgstr "" -#: gnu/services/base.scm:314 +#: gnu/services/base.scm:317 msgid "" "Take care of syncing the root file\n" "system and of remounting it read-only when the system shuts down." msgstr "" -#: gnu/services/base.scm:481 +#: gnu/services/base.scm:484 msgid "" "Provide Shepherd services to mount and unmount the given\n" "file systems, as well as corresponding @file{/etc/fstab} entries." msgstr "" -#: gnu/services/base.scm:579 +#: gnu/services/base.scm:582 msgid "" "Seed the @file{/dev/urandom} pseudo-random number\n" "generator (RNG) with the value recorded when the system was last shut\n" "down." msgstr "" -#: gnu/services/base.scm:611 +#: gnu/services/base.scm:614 msgid "" "Run the @command{rngd} random number generation daemon to\n" "supply entropy to the kernel's pool." msgstr "" -#: gnu/services/base.scm:640 +#: gnu/services/base.scm:643 msgid "Initialize the machine's host name." msgstr "" -#: gnu/services/base.scm:670 +#: gnu/services/base.scm:673 msgid "Ensure the Linux virtual terminals run in UTF-8 mode." msgstr "" -#: gnu/services/base.scm:683 +#: gnu/services/base.scm:686 msgid "" "@emph{This service is deprecated in favor of the\n" "@code{keyboard-layout} field of @code{operating-system}.} Load the given list\n" "of console keymaps with @command{loadkeys}." msgstr "" -#: gnu/services/base.scm:743 +#: gnu/services/base.scm:746 msgid "" "Install the given fonts on the specified ttys (fonts are per\n" "virtual console on GNU/Linux). The value of this service is a list of\n" @@ -22418,66 +22667,66 @@ msgid "" "@end example\n" msgstr "" -#: gnu/services/base.scm:795 +#: gnu/services/base.scm:798 msgid "" "Provide a console log-in service as specified by its\n" "configuration value, a @code{login-configuration} object." msgstr "" -#: gnu/services/base.scm:1063 +#: gnu/services/base.scm:1066 msgid "" "Provide console login using the @command{agetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1128 +#: gnu/services/base.scm:1131 msgid "" "Provide console login using the @command{mingetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1345 +#: gnu/services/base.scm:1348 msgid "" "Runs libc's @dfn{name service cache daemon} (nscd) with the\n" "given configuration---an @code{} object. @xref{Name\n" "Service Switch}, for an example." msgstr "" -#: gnu/services/base.scm:1384 +#: gnu/services/base.scm:1387 msgid "" "Run the syslog daemon, @command{syslogd}, which is\n" "responsible for logging system messages." msgstr "" -#: gnu/services/base.scm:1448 +#: gnu/services/base.scm:1451 msgid "" "Install the specified resource usage limits by populating\n" "@file{/etc/security/limits.conf} and using the @code{pam_limits}\n" "authentication module." msgstr "" -#: gnu/services/base.scm:1794 +#: gnu/services/base.scm:1804 msgid "Run the build daemon of GNU@tie{}Guix, aka. @command{guix-daemon}." msgstr "" -#: gnu/services/base.scm:1944 +#: gnu/services/base.scm:1961 msgid "" "Add a Shepherd service running @command{guix publish}, a\n" "command that allows you to share pre-built binaries with others over HTTP." msgstr "" -#: gnu/services/base.scm:2150 +#: gnu/services/base.scm:2167 msgid "" "Run @command{udev}, which populates the @file{/dev}\n" "directory dynamically. Get extra rules from the packages listed in the\n" "@code{rules} field of its value, @code{udev-configuration} object." msgstr "" -#: gnu/services/base.scm:2267 +#: gnu/services/base.scm:2284 msgid "Turn on the virtual memory swap area." msgstr "" -#: gnu/services/base.scm:2309 +#: gnu/services/base.scm:2326 msgid "" "Run GPM, the general-purpose mouse daemon, with the given\n" "command-line options. GPM allows users to use the mouse in the console,\n" @@ -22485,34 +22734,34 @@ msgid "" "@code{ps2} protocol, which works for both USB and PS/2 mice." msgstr "" -#: gnu/services/base.scm:2382 +#: gnu/services/base.scm:2399 msgid "" "Start the @command{kmscon} virtual terminal emulator for the\n" "Linux @dfn{kernel mode setting} (KMS)." msgstr "" -#: gnu/services/base.scm:2403 +#: gnu/services/base.scm:2416 #, scheme-format msgid "address '~a' lacks a network mask" msgstr "" -#: gnu/services/base.scm:2409 +#: gnu/services/base.scm:2422 #, scheme-format msgid "Write, say, @samp{\"~a/24\"} for a 24-bit network mask." msgstr "" -#: gnu/services/base.scm:2489 +#: gnu/services/base.scm:2502 #, scheme-format msgid "network links are currently ignored on GNU/Hurd~%" msgstr "" -#: gnu/services/base.scm:2514 +#: gnu/services/base.scm:2527 #, fuzzy, scheme-format #| msgid "invalid signature for '~a'~%" msgid "ignoring network route for '~a'~%" msgstr "Ungültige Signatur für »~a«~%" -#: gnu/services/base.scm:2698 +#: gnu/services/base.scm:2711 msgid "" "Turn up the specified network interfaces upon startup,\n" "with the given IP address, gateway, netmask, and so on. The value for\n" @@ -22725,6 +22974,12 @@ msgid "" "on the web." msgstr "" +#, fuzzy +#~ msgid "" +#~ "This package provides support for the French language for the\n" +#~ "babel multilingual system." +#~ msgstr "Dieses Paket bietet ein Wörterbuch für das GNU-Aspell-Rechtschreibprüfprogramm." + #, fuzzy #~ msgid "This package provides a URL fetch plugin for Nushell." #~ msgstr "Dieses Paket bietet ein LADSPA-Plugin für einen Stereo-Nachhall-Effekt." diff --git a/po/packages/eo.po b/po/packages/eo.po index 135891de4c..27ea090731 100644 --- a/po/packages/eo.po +++ b/po/packages/eo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: guix-packages 1.2.0-pre1\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" "PO-Revision-Date: 2020-10-13 16:08-0300\n" "Last-Translator: Felipe Castro \n" "Language-Team: Esperanto \n" @@ -45,7 +45,7 @@ msgstr "" msgid "This package provides a dictionary for the GNU Aspell spell checker." msgstr "Tiu ĉi pako provizas vortaron por la literumilo GNU Aspell." -#: gnu/packages/aspell.scm:445 gnu/packages/libreoffice.scm:845 +#: gnu/packages/aspell.scm:450 gnu/packages/libreoffice.scm:845 #: gnu/packages/libreoffice.scm:918 #, fuzzy msgid "" @@ -53,13 +53,13 @@ msgid "" "library." msgstr "Tiu ĉi pako provizas vortaron por la literumilo GNU Aspell." -#: gnu/packages/aspell.scm:525 +#: gnu/packages/aspell.scm:530 msgid "" "Ispell is an interactive spell-checking tool supporting many\n" "European languages." msgstr "" -#: gnu/packages/audio.scm:197 +#: gnu/packages/audio.scm:198 msgid "" "OpenSLES is a royalty-free, cross-platform,\n" "hardware-accelerated audio API tuned for embedded systems. It provides a\n" @@ -70,31 +70,31 @@ msgid "" "promoting the market for advanced audio." msgstr "" -#: gnu/packages/audio.scm:233 +#: gnu/packages/audio.scm:234 msgid "" "WildMIDI is a simple software midi player which has a core\n" "softsynth library that can be use with other applications." msgstr "" -#: gnu/packages/audio.scm:257 +#: gnu/packages/audio.scm:258 msgid "" "WebRTC-Audio-Processing library based on Google's\n" "implementation of WebRTC." msgstr "" -#: gnu/packages/audio.scm:277 +#: gnu/packages/audio.scm:278 msgid "" "VO-AACENC is the VisualOn implementation of Advanced Audio\n" "Coding (AAC) encoder." msgstr "" -#: gnu/packages/audio.scm:306 +#: gnu/packages/audio.scm:307 msgid "" "TinyALSA is a small library to interface with ALSA in the\n" "Linux kernel." msgstr "" -#: gnu/packages/audio.scm:329 +#: gnu/packages/audio.scm:330 msgid "" "Game-music-emu is a collection of video game music file emulators that\n" "support the following formats and systems:\n" @@ -120,43 +120,43 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/audio.scm:393 +#: gnu/packages/audio.scm:394 msgid "" "LibOpenMPT is a cross-platform C++ and C module playback\n" "library. It is based on the player code of the Open ModPlug Tracker project." msgstr "" -#: gnu/packages/audio.scm:424 +#: gnu/packages/audio.scm:425 msgid "" "LibOFA is an audio fingerprint library, created and provided\n" "by MusicIP." msgstr "" -#: gnu/packages/audio.scm:445 +#: gnu/packages/audio.scm:446 msgid "FAAC is an MPEG-4 and MPEG-2 AAC encoder." msgstr "" -#: gnu/packages/audio.scm:474 +#: gnu/packages/audio.scm:475 msgid "" "LibTiMidity is a MIDI to WAVE converter library that uses\n" "Gravis Ultrasound-compatible patch files to generate digital audio data from\n" "General MIDI files." msgstr "" -#: gnu/packages/audio.scm:499 +#: gnu/packages/audio.scm:500 msgid "" "VO-AMR is a library of VisualOn implementation of\n" "Adaptive Multi Rate Narrowband and Wideband (AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:518 +#: gnu/packages/audio.scm:519 msgid "" "OpenCore-AMR is a library of OpenCORE Framework\n" "implementation of Adaptive Multi Rate Narrowband and Wideband\n" "(AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:551 +#: gnu/packages/audio.scm:552 msgid "" "AlsaModularSynth is a digital implementation of a classical analog\n" "modular synthesizer system. It uses virtual control voltages to control the\n" @@ -165,7 +165,7 @@ msgid "" "Filter) modules follow the convention of 1V / Octave." msgstr "" -#: gnu/packages/audio.scm:588 +#: gnu/packages/audio.scm:589 msgid "" "aubio is a tool designed for the extraction of annotations from audio\n" "signals. Its features include segmenting a sound file before each of its\n" @@ -173,21 +173,21 @@ msgid "" "streams from live audio." msgstr "" -#: gnu/packages/audio.scm:719 +#: gnu/packages/audio.scm:720 msgid "" "Ardour is a multi-channel digital audio workstation, allowing users to\n" "record, edit, mix and master audio and MIDI projects. It is targeted at audio\n" "engineers, musicians, soundtrack editors and composers." msgstr "" -#: gnu/packages/audio.scm:833 +#: gnu/packages/audio.scm:853 msgid "" "Audacity is a multi-track audio editor designed for recording, playing\n" "and editing digital audio. It features digital effects and spectrum analysis\n" "tools." msgstr "" -#: gnu/packages/audio.scm:889 +#: gnu/packages/audio.scm:909 msgid "" "This is an open-source version of SGI's audiofile library.\n" "It provides a uniform programming interface for processing of audio data to\n" @@ -198,14 +198,14 @@ msgid "" "G.711 mu-law and A-law." msgstr "" -#: gnu/packages/audio.scm:931 +#: gnu/packages/audio.scm:951 msgid "" "Autotalent is a LADSPA plugin for real-time pitch-correction. Among its\n" "controls are allowable notes, strength of correction, LFO for vibrato and\n" "formant warp." msgstr "" -#: gnu/packages/audio.scm:972 +#: gnu/packages/audio.scm:992 msgid "" "AZR-3 is a port of the free VST plugin AZR-3. It is a tonewheel organ\n" "with drawbars, distortion and rotating speakers. The organ has three\n" @@ -214,7 +214,7 @@ msgid "" "plugins are provided." msgstr "" -#: gnu/packages/audio.scm:1011 +#: gnu/packages/audio.scm:1031 msgid "" "Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments.\n" "The suite contains lots of effects (delay, modulation, signal processing,\n" @@ -223,31 +223,31 @@ msgid "" "tools (analyzer, mono/stereo tools, crossovers)." msgstr "" -#: gnu/packages/audio.scm:1053 +#: gnu/packages/audio.scm:1073 msgid "" "LV2 port of CAPS, a collection of audio plugins comprising basic virtual\n" "guitar amplification and a small range of classic effects, signal processors and\n" "generators of mostly elementary and occasionally exotic nature." msgstr "" -#: gnu/packages/audio.scm:1094 +#: gnu/packages/audio.scm:1114 msgid "" "The infamous plugins are a collection of LV2 audio plugins for live\n" "performances. The plugins include a cellular automaton synthesizer, an\n" "envelope follower, distortion effects, tape effects and more." msgstr "" -#: gnu/packages/audio.scm:1129 +#: gnu/packages/audio.scm:1149 msgid "" "Snapcast is a multi-room client-server audio player. Clients are time\n" "synchronized with the server to play synced audio." msgstr "" -#: gnu/packages/audio.scm:1159 +#: gnu/packages/audio.scm:1179 msgid "This package provides Steve Harris's LADSPA plugins." msgstr "" -#: gnu/packages/audio.scm:1199 +#: gnu/packages/audio.scm:1219 msgid "" "Swh-plugins-lv2 is a collection of audio plugins in LV2 format. Plugin\n" "classes include: dynamics (compressor, limiter), time (delay, chorus,\n" @@ -255,13 +255,13 @@ msgid "" "emulation (valve, tape), bit fiddling (decimator, pointer-cast), etc." msgstr "" -#: gnu/packages/audio.scm:1233 +#: gnu/packages/audio.scm:1253 msgid "" "@code{libdjinterop} is a C++ library that allows access to database\n" "formats used to store information about DJ record libraries." msgstr "" -#: gnu/packages/audio.scm:1295 gnu/packages/audio.scm:1326 +#: gnu/packages/audio.scm:1315 gnu/packages/audio.scm:1346 msgid "" "Tao is a software package for sound synthesis using physical\n" "models. It provides a virtual acoustic material constructed from masses and\n" @@ -271,13 +271,13 @@ msgid "" "object library." msgstr "" -#: gnu/packages/audio.scm:1361 +#: gnu/packages/audio.scm:1381 msgid "" "Csound is a user-programmable and user-extensible sound processing\n" "language and software synthesizer." msgstr "" -#: gnu/packages/audio.scm:1388 +#: gnu/packages/audio.scm:1408 msgid "" "midicomp can manipulate SMF (Standard MIDI File) files. It can both\n" " read and write SMF files in 0 or format 1 and also read and write its own\n" @@ -286,20 +286,20 @@ msgid "" " language, and recompiled back into a binary SMF file." msgstr "" -#: gnu/packages/audio.scm:1435 +#: gnu/packages/audio.scm:1455 msgid "" "clalsadrv is a C++ wrapper around the ALSA API simplifying access to\n" "ALSA PCM devices." msgstr "" -#: gnu/packages/audio.scm:1474 +#: gnu/packages/audio.scm:1494 msgid "" "The AMB plugins are a set of LADSPA ambisonics plugins, mainly to be\n" "used within Ardour. Features include: mono and stereo to B-format panning,\n" "horizontal rotator, square, hexagon and cube decoders." msgstr "" -#: gnu/packages/audio.scm:1511 +#: gnu/packages/audio.scm:1531 msgid "" "This package provides various LADSPA plugins. @code{cs_chorus} and\n" "@code{cs_phaser} provide chorus and phaser effects, respectively;\n" @@ -309,13 +309,13 @@ msgid "" "the non-linear circuit elements of their original analog counterparts." msgstr "" -#: gnu/packages/audio.scm:1551 +#: gnu/packages/audio.scm:1571 msgid "" "This package provides a stereo reverb LADSPA plugin based on the\n" "well-known greverb." msgstr "" -#: gnu/packages/audio.scm:1587 +#: gnu/packages/audio.scm:1607 msgid "" "This package provides a LADSPA plugin for a four-band parametric\n" "equalizer. Each section has an active/bypass switch, frequency, bandwidth and\n" @@ -330,14 +330,14 @@ msgid "" "for stage use." msgstr "" -#: gnu/packages/audio.scm:1632 +#: gnu/packages/audio.scm:1652 #, fuzzy msgid "" "This package provides a LADSPA plugin to manipulate the stereo width of\n" "audio signals." msgstr "Tiu ĉi pako provizas ilojn por manipuli dosiersistemojn ext2/ext3/ext4." -#: gnu/packages/audio.scm:1669 +#: gnu/packages/audio.scm:1689 msgid "" "The @code{blvco} LADSPA plugin provides three anti-aliased oscillators:\n" "\n" @@ -352,19 +352,19 @@ msgid "" "output of analog synthesizers such as the Moog Voyager." msgstr "" -#: gnu/packages/audio.scm:1713 +#: gnu/packages/audio.scm:1733 #, fuzzy msgid "" "This package provides a LADSPA plugin for a Wah effect with envelope\n" "follower." msgstr "Tiu ĉi pako provizas vortaron por la literumilo GNU Aspell." -#: gnu/packages/audio.scm:1749 +#: gnu/packages/audio.scm:1769 #, fuzzy msgid "This package provides a LADSPA plugin for a stereo reverb effect." msgstr "Tiu ĉi pako provizas datumbazan interfacon por Perl." -#: gnu/packages/audio.scm:1791 +#: gnu/packages/audio.scm:1811 msgid "" "FluidSynth is a real-time software synthesizer based on the SoundFont 2\n" "specifications. FluidSynth reads and handles MIDI events from the MIDI input\n" @@ -372,21 +372,21 @@ msgid "" "also play midifiles using a Soundfont." msgstr "" -#: gnu/packages/audio.scm:1814 +#: gnu/packages/audio.scm:1834 msgid "FAAD2 is an MPEG-4 and MPEG-2 AAC decoder supporting LC, Main, LTP, SBR, -PS, and DAB+." msgstr "" -#: gnu/packages/audio.scm:1855 +#: gnu/packages/audio.scm:1875 msgid "Faust is a programming language for realtime audio signal processing." msgstr "" -#: gnu/packages/audio.scm:1919 +#: gnu/packages/audio.scm:1939 msgid "" "FreePats is a project to create a free and open set of GUS compatible\n" "patches that can be used with softsynths such as Timidity and WildMidi." msgstr "" -#: gnu/packages/audio.scm:1972 +#: gnu/packages/audio.scm:1992 msgid "" "Guitarix is a virtual guitar amplifier running JACK.\n" "Guitarix takes the signal from your guitar as a mono-signal from your sound\n" @@ -397,7 +397,7 @@ msgid "" "auto-wah." msgstr "" -#: gnu/packages/audio.scm:2028 +#: gnu/packages/audio.scm:2048 msgid "" "Rakarrack is a richly featured multi-effects processor emulating a\n" "guitar effects pedalboard. Effects include compressor, expander, noise gate,\n" @@ -409,14 +409,14 @@ msgid "" "well suited to all musical instruments and vocals." msgstr "" -#: gnu/packages/audio.scm:2084 +#: gnu/packages/audio.scm:2104 msgid "" "IR is a low-latency, real-time, high performance signal convolver\n" "especially for creating reverb effects. It supports impulse responses with 1,\n" "2 or 4 channels, in any soundfile format supported by libsndfile." msgstr "" -#: gnu/packages/audio.scm:2124 +#: gnu/packages/audio.scm:2144 msgid "" "JACK is a low-latency audio server. It can connect a number of\n" "different applications to an audio device, as well as allowing them to share\n" @@ -426,20 +426,20 @@ msgid "" "synchronous execution of all clients, and low latency operation." msgstr "" -#: gnu/packages/audio.scm:2220 +#: gnu/packages/audio.scm:2240 msgid "" "Jalv is a simple but fully featured LV2 host for JACK. It runs LV2\n" "plugins and exposes their ports as JACK ports, essentially making any LV2\n" "plugin function as a JACK application." msgstr "" -#: gnu/packages/audio.scm:2266 +#: gnu/packages/audio.scm:2286 msgid "" "LADSPA is a standard that allows software audio processors and effects\n" "to be plugged into a wide range of audio synthesis and recording packages." msgstr "" -#: gnu/packages/audio.scm:2318 +#: gnu/packages/audio.scm:2338 msgid "" "LASH is a session management system for audio applications. It allows\n" "you to save and restore audio sessions consisting of multiple interconneced\n" @@ -447,7 +447,7 @@ msgid "" "connections between them." msgstr "" -#: gnu/packages/audio.scm:2341 +#: gnu/packages/audio.scm:2361 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is\n" "designed to improve headphone listening of stereo audio records. Recommended\n" @@ -455,7 +455,7 @@ msgid "" "essential distortions." msgstr "" -#: gnu/packages/audio.scm:2364 +#: gnu/packages/audio.scm:2384 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and\n" "plugins is designed to improve headphone listening of stereo audio records.\n" @@ -464,13 +464,13 @@ msgid "" "with applications that support them (e.g. PulseAudio)." msgstr "" -#: gnu/packages/audio.scm:2390 +#: gnu/packages/audio.scm:2410 msgid "" "liblo is a lightweight library that provides an easy to use\n" "implementation of the Open Sound Control (@dfn{OSC}) protocol." msgstr "" -#: gnu/packages/audio.scm:2426 +#: gnu/packages/audio.scm:2446 msgid "" "RtAudio is a set of C++ classes that provides a common API for real-time\n" "audio input/output. It was designed with the following objectives:\n" @@ -489,13 +489,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/audio.scm:2462 +#: gnu/packages/audio.scm:2482 msgid "" "This package provides bindings for PortAudio v19, the\n" "cross-platform audio input/output stream library." msgstr "" -#: gnu/packages/audio.scm:2489 +#: gnu/packages/audio.scm:2509 msgid "" "Pyliblo is a Python wrapper for the liblo Open Sound Control (OSC)\n" "library. It supports almost the complete functionality of liblo, allowing you\n" @@ -503,21 +503,21 @@ msgid "" "included are the command line utilities @code{send_osc} and @code{dump_osc}." msgstr "" -#: gnu/packages/audio.scm:2526 +#: gnu/packages/audio.scm:2546 #, fuzzy msgid "" "This package provides python bindings for libsndfile based on\n" "CFFI and NumPy." msgstr "Tiu ĉi pako provizas ilojn por manipuli dosiersistemojn ext2/ext3/ext4." -#: gnu/packages/audio.scm:2544 +#: gnu/packages/audio.scm:2564 #, fuzzy msgid "" "This package provides a python API to read and write MIDI\n" "files." msgstr "Tiu ĉi pako provizas ilojn por manipuli dosiersistemojn ext2/ext3/ext4." -#: gnu/packages/audio.scm:2581 +#: gnu/packages/audio.scm:2601 msgid "" "@command{audio-to-midi} converts audio files to multichannel\n" "MIDI files. It accomplishes this by performing FFTs on all channels of the\n" @@ -527,14 +527,14 @@ msgid "" "frequencies. This data is then formatted to MIDI and written to disk." msgstr "" -#: gnu/packages/audio.scm:2624 +#: gnu/packages/audio.scm:2644 msgid "" "Lilv is a C library to make the use of LV2 plugins as simple as possible\n" "for applications. Lilv is the successor to SLV2, rewritten to be\n" "significantly faster and have minimal dependencies." msgstr "" -#: gnu/packages/audio.scm:2652 +#: gnu/packages/audio.scm:2672 msgid "" "LV2 is an open specification for audio plugins and host applications.\n" "At its core, LV2 is a simple stable interface, accompanied by extensions which\n" @@ -542,22 +542,22 @@ msgid "" "software." msgstr "" -#: gnu/packages/audio.scm:2688 +#: gnu/packages/audio.scm:2708 msgid "An LV2 port of the mda Piano VSTi." msgstr "" -#: gnu/packages/audio.scm:2702 +#: gnu/packages/audio.scm:2722 msgid "An LV2 port of the mda EPiano VSTi." msgstr "" -#: gnu/packages/audio.scm:2732 +#: gnu/packages/audio.scm:2752 msgid "" "The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and\n" "extensions into easy to use C++ classes. It is the successor of\n" "lv2-c++-tools." msgstr "" -#: gnu/packages/audio.scm:2774 +#: gnu/packages/audio.scm:2794 msgid "" "OpenAL provides capabilities for playing audio in a virtual 3D\n" "environment. Distance attenuation, doppler shift, and directional sound\n" @@ -567,36 +567,36 @@ msgid "" "buffers, and audio capture." msgstr "" -#: gnu/packages/audio.scm:2805 +#: gnu/packages/audio.scm:2825 msgid "freealut is the OpenAL Utility Toolkit." msgstr "" -#: gnu/packages/audio.scm:2837 +#: gnu/packages/audio.scm:2857 msgid "" "Patchage is a modular patch bay for audio and MIDI systems based on JACK\n" "and ALSA." msgstr "" -#: gnu/packages/audio.scm:2862 +#: gnu/packages/audio.scm:2882 msgid "" "The Portable C Audio Library (pcaudiolib) provides a C@tie{}API to\n" "different audio devices such as ALSA or PulseAudio." msgstr "" -#: gnu/packages/audio.scm:2889 +#: gnu/packages/audio.scm:2909 msgid "" "Control a Jack server. Allows you to plug various sources\n" "into various outputs and to start, stop and configure jackd" msgstr "" -#: gnu/packages/audio.scm:2921 +#: gnu/packages/audio.scm:2941 msgid "" "QJackRcd is a simple graphical stereo recorder for JACK\n" "supporting silence processing for automatic pause, file splitting, and\n" "background file post-processing." msgstr "" -#: gnu/packages/audio.scm:3029 +#: gnu/packages/audio.scm:3049 msgid "" "SuperCollider is a synthesis engine (@code{scsynth} or\n" "@code{supernova}) and programming language (@code{sclang}). It can be used\n" @@ -608,18 +608,18 @@ msgid "" "using Guix System." msgstr "" -#: gnu/packages/audio.scm:3057 +#: gnu/packages/audio.scm:3077 #, fuzzy msgid "This package provides libshout plus IDJC extensions." msgstr "Tiu ĉi pako provizas datumbazan interfacon por Perl." -#: gnu/packages/audio.scm:3083 +#: gnu/packages/audio.scm:3103 msgid "" "Raul (Real-time Audio Utility Library) is a C++ utility library primarily\n" "aimed at audio/musical applications." msgstr "" -#: gnu/packages/audio.scm:3119 +#: gnu/packages/audio.scm:3139 msgid "" "This package contains the @command{resample} and\n" "@command{windowfilter} command line utilities. The @command{resample} command\n" @@ -628,26 +628,26 @@ msgid "" "filters using the so-called @emph{window method}." msgstr "" -#: gnu/packages/audio.scm:3160 +#: gnu/packages/audio.scm:3180 msgid "" "Rubber Band is a library and utility program that permits changing the\n" "tempo and pitch of an audio recording independently of one another." msgstr "" -#: gnu/packages/audio.scm:3184 +#: gnu/packages/audio.scm:3204 msgid "" "RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut, and API specific\n" "classes) that provide a common cross-platform API for realtime MIDI\n" "input/output." msgstr "" -#: gnu/packages/audio.scm:3210 +#: gnu/packages/audio.scm:3230 msgid "" "Sratom is a library for serialising LV2 atoms to/from RDF, particularly\n" "the Turtle syntax." msgstr "" -#: gnu/packages/audio.scm:3238 +#: gnu/packages/audio.scm:3258 msgid "" "Suil is a lightweight C library for loading and wrapping LV2 plugin UIs.\n" "\n" @@ -659,13 +659,13 @@ msgid "" "Suil currently supports every combination of Gtk, Qt, and X11." msgstr "" -#: gnu/packages/audio.scm:3270 +#: gnu/packages/audio.scm:3290 msgid "" "@code{libebur128} is a C library that implements the EBU R 128 standard\n" "for loudness normalisation." msgstr "" -#: gnu/packages/audio.scm:3324 +#: gnu/packages/audio.scm:3344 msgid "" "TiMidity++ is a software synthesizer. It can play MIDI files by\n" "converting them into PCM waveform data; give it a MIDI data along with digital\n" @@ -674,33 +674,33 @@ msgid "" "disks as various audio file formats." msgstr "" -#: gnu/packages/audio.scm:3364 +#: gnu/packages/audio.scm:3384 msgid "" "Vamp is an audio processing plugin system for plugins that extract\n" "descriptive information from audio data — typically referred to as audio\n" "analysis plugins or audio feature extraction plugins." msgstr "" -#: gnu/packages/audio.scm:3408 +#: gnu/packages/audio.scm:3428 msgid "" "SBSMS (Subband Sinusoidal Modeling Synthesis) is software for time\n" "stretching and pitch scaling of audio. This package contains the library." msgstr "" -#: gnu/packages/audio.scm:3435 +#: gnu/packages/audio.scm:3455 msgid "" "@code{libkeyfinder} is a small C++11 library for estimating the musical\n" "key of digital audio." msgstr "" -#: gnu/packages/audio.scm:3465 +#: gnu/packages/audio.scm:3485 msgid "" "WavPack is an audio compression format with lossless, lossy and hybrid\n" "compression modes. This package contains command-line programs and library to\n" "encode and decode wavpack files." msgstr "" -#: gnu/packages/audio.scm:3486 +#: gnu/packages/audio.scm:3506 msgid "" "Libmodplug renders mod music files as raw audio data, for playing or\n" "conversion. mod, .s3m, .it, .xm, and a number of lesser-known formats are\n" @@ -708,21 +708,21 @@ msgid "" "surround and reverb." msgstr "" -#: gnu/packages/audio.scm:3507 +#: gnu/packages/audio.scm:3527 msgid "" "Libxmp is a library that renders module files to PCM data. It supports\n" "over 90 mainstream and obscure module formats including Protracker (MOD),\n" "Scream Tracker 3 (S3M), Fast Tracker II (XM), and Impulse Tracker (IT)." msgstr "" -#: gnu/packages/audio.scm:3531 +#: gnu/packages/audio.scm:3551 msgid "" "Xmp is a portable module player that plays over 90 mainstream and\n" "obscure module formats, including Protracker MOD, Fasttracker II XM, Scream\n" "Tracker 3 S3M and Impulse Tracker IT files." msgstr "" -#: gnu/packages/audio.scm:3556 +#: gnu/packages/audio.scm:3576 msgid "" "SoundTouch is an audio processing library for changing the tempo, pitch\n" "and playback rates of audio streams or audio files. It is intended for\n" @@ -730,7 +730,7 @@ msgid "" "control functionality, or just for playing around with the sound effects." msgstr "" -#: gnu/packages/audio.scm:3595 +#: gnu/packages/audio.scm:3615 msgid "" "SoX (Sound eXchange) is a command line utility that can convert\n" "various formats of computer audio files to other formats. It can also\n" @@ -738,60 +738,60 @@ msgid "" "can play and record audio files." msgstr "" -#: gnu/packages/audio.scm:3620 +#: gnu/packages/audio.scm:3640 msgid "" "The SoX Resampler library (libsoxr) performs one-dimensional sample-rate\n" "conversion. It may be used, for example, to resample PCM-encoded audio." msgstr "" -#: gnu/packages/audio.scm:3643 +#: gnu/packages/audio.scm:3663 msgid "" "TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder based on\n" "tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code and\n" "portions of LAME." msgstr "" -#: gnu/packages/audio.scm:3699 +#: gnu/packages/audio.scm:3719 msgid "" "PortAudio is a portable C/C++ audio I/O library providing a simple API\n" "to record and/or play sound using a callback function or a blocking read/write\n" "interface." msgstr "" -#: gnu/packages/audio.scm:3728 +#: gnu/packages/audio.scm:3748 msgid "" "Qsynth is a GUI front-end application for the FluidSynth SoundFont\n" "synthesizer written in C++." msgstr "" -#: gnu/packages/audio.scm:3767 +#: gnu/packages/audio.scm:3787 msgid "" "RSound allows you to send audio from an application and transfer it\n" "directly to a different computer on your LAN network. It is an audio daemon\n" "with a much different focus than most other audio daemons." msgstr "" -#: gnu/packages/audio.scm:3797 +#: gnu/packages/audio.scm:3817 msgid "" "XJackFreak is an audio analysis and equalizing tool for the Jack Audio\n" "Connection Kit. It can display the FFT of any input, modify it and output the\n" "result." msgstr "" -#: gnu/packages/audio.scm:3849 +#: gnu/packages/audio.scm:3869 msgid "" "Zita convolver is a C++ library providing a real-time convolution\n" "engine." msgstr "" -#: gnu/packages/audio.scm:3901 +#: gnu/packages/audio.scm:3921 msgid "" "Libzita-resampler is a C++ library for resampling audio signals. It is\n" "designed to be used within a real-time processing context, to be fast, and to\n" "provide high-quality sample rate conversion." msgstr "" -#: gnu/packages/audio.scm:3947 +#: gnu/packages/audio.scm:3967 msgid "" "Zita-alsa-pcmi is a C++ wrapper around the ALSA API. It provides easy\n" "access to ALSA PCM devices, taking care of the many functions required to\n" @@ -799,7 +799,7 @@ msgid "" "point audio data." msgstr "" -#: gnu/packages/audio.scm:3971 +#: gnu/packages/audio.scm:3991 msgid "" "Cuetools is a set of programs that are useful for manipulating\n" "and using CUE sheet (cue) files and Table of Contents (toc) files. CUE and TOC\n" @@ -807,14 +807,14 @@ msgid "" "machine-readable ASCII format." msgstr "" -#: gnu/packages/audio.scm:4000 +#: gnu/packages/audio.scm:4020 msgid "" "mp3guessenc is a command line utility that tries to detect the\n" "encoder used for an MPEG Layer III (MP3) file, as well as scan any MPEG audio\n" "file (any layer) and print a lot of useful information." msgstr "" -#: gnu/packages/audio.scm:4021 +#: gnu/packages/audio.scm:4041 msgid "" "shntool is a multi-purpose WAVE data processing and reporting\n" "utility. File formats are abstracted from its core, so it can process any file\n" @@ -823,46 +823,46 @@ msgid "" "use them split WAVE data into multiple files." msgstr "" -#: gnu/packages/audio.scm:4061 +#: gnu/packages/audio.scm:4081 msgid "" "Dcadec is a DTS Coherent Acoustics surround sound decoder\n" "with support for HD extensions." msgstr "" -#: gnu/packages/audio.scm:4098 +#: gnu/packages/audio.scm:4118 msgid "" "BS1770GAIN is a loudness scanner compliant with ITU-R BS.1770 and its\n" "flavors EBU R128, ATSC A/85, and ReplayGain 2.0. It helps normalizing the\n" "loudness of audio and video files to the same level." msgstr "" -#: gnu/packages/audio.scm:4130 +#: gnu/packages/audio.scm:4150 msgid "" "An easy to use audio filtering library made from webrtc\n" "code, used in @code{libtoxcore}." msgstr "" -#: gnu/packages/audio.scm:4183 +#: gnu/packages/audio.scm:4203 msgid "" "This C library provides an encoder and a decoder for the GSM\n" "06.10 RPE-LTP lossy speech compression algorithm." msgstr "" -#: gnu/packages/audio.scm:4206 +#: gnu/packages/audio.scm:4226 msgid "" "This package contains wrappers for accessing the ALSA API from Python.\n" "It is currently fairly complete for PCM devices, and has some support for\n" "mixers." msgstr "" -#: gnu/packages/audio.scm:4230 +#: gnu/packages/audio.scm:4250 msgid "" "This package provides an encoder for the LDAC\n" "high-resolution Bluetooth audio streaming codec for streaming at up to 990\n" "kbps at 24 bit/96 kHz." msgstr "" -#: gnu/packages/audio.scm:4274 +#: gnu/packages/audio.scm:4294 msgid "" "This project is a rebirth of a direct integration between\n" "Bluez and ALSA. Since Bluez >= 5, the built-in integration has been removed\n" @@ -875,14 +875,14 @@ msgid "" "on the ALSA software PCM plugin." msgstr "" -#: gnu/packages/audio.scm:4340 +#: gnu/packages/audio.scm:4360 msgid "" "Snd is a sound editor modelled loosely after Emacs. It can be\n" "customized and extended using either the s7 Scheme implementation (included in\n" "the Snd sources), Ruby, or Forth." msgstr "" -#: gnu/packages/audio.scm:4369 +#: gnu/packages/audio.scm:4389 msgid "" "Noise Repellent is an LV2 plugin to reduce noise. It has\n" "the following features:\n" @@ -902,31 +902,31 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/audio.scm:4436 +#: gnu/packages/audio.scm:4456 msgid "" "RNNoise is a library that uses deep learning to apply\n" "noise suppression to audio sources with voice presence. This package provides\n" "an LV2 audio plugin." msgstr "" -#: gnu/packages/audio.scm:4480 +#: gnu/packages/audio.scm:4500 msgid "" "@code{cli-visualizer} displays fast-Fourier\n" "transforms (FFTs) of the sound being played, as well as other graphical\n" "representations." msgstr "" -#: gnu/packages/audio.scm:4530 +#: gnu/packages/audio.scm:4550 msgid "" "C.A.V.A. is a bar audio spectrum visualizer for the terminal\n" "using ALSA, MPD, PulseAudio, or a FIFO buffer as its input." msgstr "" -#: gnu/packages/audio.scm:4564 +#: gnu/packages/audio.scm:4584 msgid "Fluid-3 is Frank Wen's pro-quality GM soundfont." msgstr "" -#: gnu/packages/audio.scm:4586 +#: gnu/packages/audio.scm:4606 msgid "" "FDK is a library for encoding and decoding Advanced Audio\n" "Coding (AAC) format audio, developed by Fraunhofer IIS, and included as part of\n" @@ -937,20 +937,20 @@ msgid "" " surround)." msgstr "" -#: gnu/packages/audio.scm:4626 +#: gnu/packages/audio.scm:4646 msgid "" "OpenShot Audio Library (libopenshot-audio) allows\n" "high-quality editing and playback of audio, and is based on the JUCE\n" "library." msgstr "" -#: gnu/packages/audio.scm:4652 +#: gnu/packages/audio.scm:4672 msgid "" "FAudio is an XAudio reimplementation that focuses solely on\n" "developing fully accurate DirectX Audio runtime libraries." msgstr "" -#: gnu/packages/audio.scm:4679 +#: gnu/packages/audio.scm:4699 msgid "" "Gnaural is a programmable auditory binaural beat synthesizer\n" "intended to be used for brainwave entrainment. Gnaural supports creation of\n" @@ -959,20 +959,20 @@ msgid "" "other Gnaural instances, allowing synchronous sessions between many users." msgstr "" -#: gnu/packages/audio.scm:4714 +#: gnu/packages/audio.scm:4734 msgid "" "DarkIce is a live audio streamer. It takes audio input from\n" "a sound card, encodes it into Ogg Vorbis and/or mp3, and sends the audio\n" "stream to one or more IceCast and/or ShoutCast servers." msgstr "" -#: gnu/packages/audio.scm:4738 +#: gnu/packages/audio.scm:4758 msgid "" "Libltc is a POSIX-C Library for handling\n" "@dfn{Linear/Longitudinal Time Code} (LTC) data." msgstr "" -#: gnu/packages/audio.scm:4772 +#: gnu/packages/audio.scm:4792 msgid "" "TTA performs lossless compression on multichannel 8,16 and 24 bits\n" "data of the Wav audio files. Being lossless means that no data-\n" @@ -983,14 +983,14 @@ msgid "" "supports both of ID3v1/v2 and APEv2 tags." msgstr "" -#: gnu/packages/audio.scm:4805 +#: gnu/packages/audio.scm:4825 msgid "" "@code{libsoundio} is a C library providing audio input and\n" "output. The API is suitable for real-time software such as digital audio\n" "workstations as well as consumer software such as music players." msgstr "" -#: gnu/packages/audio.scm:4831 +#: gnu/packages/audio.scm:4851 msgid "" "Redkite is a small GUI toolkit developed in C++17 and\n" "inspired from other well known GUI toolkits such as Qt and GTK. It is\n" @@ -999,7 +999,7 @@ msgid "" "as is the case with audio plugins." msgstr "" -#: gnu/packages/audio.scm:4903 +#: gnu/packages/audio.scm:4923 msgid "" "Carla is a modular audio plugin host, with features like\n" "transport control, automation of parameters via MIDI CC and remote control\n" @@ -1008,7 +1008,7 @@ msgid "" "default and preferred audio driver but also supports native drivers like ALSA." msgstr "" -#: gnu/packages/audio.scm:4939 +#: gnu/packages/audio.scm:4959 msgid "" "Ecasound is a software package designed for multitrack audio\n" "processing. It can be used for simple tasks like audio playback, recording and\n" @@ -1020,28 +1020,28 @@ msgid "" "in the package." msgstr "" -#: gnu/packages/audio.scm:4977 +#: gnu/packages/audio.scm:4997 msgid "" "libaudec is a wrapper library over ffmpeg, sndfile and\n" "libsamplerate for reading and resampling audio files, based on Robin Gareus'\n" "@code{audio_decoder} code." msgstr "" -#: gnu/packages/audio.scm:5007 +#: gnu/packages/audio.scm:5027 msgid "" "lv2lint is an LV2 lint-like tool that checks whether a\n" "given plugin and its UI(s) match up with the provided metadata and adhere\n" "to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5041 +#: gnu/packages/audio.scm:5061 msgid "" "lv2toweb allows the user to create an xhtml page with information\n" "about the given LV2 plugin, provided that the plugin and its UI(s) match up\n" "with the provided metadata and adhere to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5069 +#: gnu/packages/audio.scm:5089 msgid "" "ZToolkit (Ztk) is a cross-platform GUI toolkit heavily\n" "inspired by GTK. It handles events and low level drawing on behalf of\n" @@ -1051,7 +1051,7 @@ msgid "" "minimum." msgstr "" -#: gnu/packages/audio.scm:5102 +#: gnu/packages/audio.scm:5122 msgid "" "libInstPatch is a library for processing digital sample based MIDI\n" "instrument \"patch\" files. The types of files libInstPatch supports are used\n" @@ -1060,28 +1060,28 @@ msgid "" "edited, converted, compressed and saved." msgstr "" -#: gnu/packages/audio.scm:5149 +#: gnu/packages/audio.scm:5169 msgid "" "The LSP DSP library provides a set of functions that perform\n" "SIMD-optimized computing on several hardware architectures. All functions\n" "currently operate on IEEE-754 single-precision floating-point numbers." msgstr "" -#: gnu/packages/audio.scm:5180 +#: gnu/packages/audio.scm:5200 msgid "" "Codec 2 is a speech codec designed for communications quality speech\n" "between 700 and 3200 bit/s. The main application is low bandwidth HF/VHF\n" "digital radio." msgstr "" -#: gnu/packages/audio.scm:5206 +#: gnu/packages/audio.scm:5226 msgid "" "The mbelib library provides support for the 7200x4400 bit/s codec used\n" "in P25 Phase 1, the 7100x4400 bit/s codec used in ProVoice and the @emph{Half\n" "Rate} 3600x2250 bit/s vocoder used in various radio systems." msgstr "" -#: gnu/packages/audio.scm:5299 +#: gnu/packages/audio.scm:5319 msgid "" "Ableton Link is a C++ library that synchronizes musical beat, tempo, and phase\n" "across multiple applications running on one or more devices. Applications on devices\n" @@ -1090,20 +1090,20 @@ msgid "" "while still staying in time." msgstr "" -#: gnu/packages/audio.scm:5360 +#: gnu/packages/audio.scm:5380 msgid "" "Butt is a tool to stream audio to a ShoutCast or\n" "Icecast server." msgstr "" -#: gnu/packages/audio.scm:5406 +#: gnu/packages/audio.scm:5426 msgid "" "siggen is a set of tools for imitating a laboratory signal\n" "generator, generating audio signals out of Linux's /dev/dsp audio\n" "device. There is support for mono and/or stereo and 8 or 16 bit samples." msgstr "" -#: gnu/packages/audio.scm:5453 +#: gnu/packages/audio.scm:5473 msgid "" "@code{python-pysox} is a wrapper around the @command{sox}\n" "command line tool. The API offers @code{Transformer} and @code{Combiner}\n" @@ -1113,7 +1113,7 @@ msgid "" "and much more." msgstr "" -#: gnu/packages/audio.scm:5492 +#: gnu/packages/audio.scm:5512 msgid "" "@code{python-resampy} implements the band-limited sinc interpolation\n" "method for sampling rate conversion as described by Julius O. Smith at the\n" @@ -1121,34 +1121,34 @@ msgid "" "Home Page}." msgstr "" -#: gnu/packages/audio.scm:5528 +#: gnu/packages/audio.scm:5548 msgid "" "@code{librosa} is a python package for music and audio analysis. It\n" "provides the building blocks necessary to create music information retrieval\n" "systems." msgstr "" -#: gnu/packages/audio.scm:5561 +#: gnu/packages/audio.scm:5581 msgid "" "MDA-LV2 is an LV2 port of the MDA plugins. It includes effects and a few\n" "instrument plugins." msgstr "" -#: gnu/packages/audio.scm:5593 +#: gnu/packages/audio.scm:5613 msgid "" "The Odio SACD shared library is a decoding engine which takes a Super\n" "Audio CD source and extracts a 24-bit high resolution WAV file. It handles\n" "both DST and DSD streams." msgstr "" -#: gnu/packages/audio.scm:5618 +#: gnu/packages/audio.scm:5638 msgid "" "Odio SACD is a command-line application which takes a Super Audio CD\n" "source and extracts a 24-bit high resolution WAV file. It handles both DST\n" "and DSD streams." msgstr "" -#: gnu/packages/backup.scm:155 +#: gnu/packages/backup.scm:165 msgid "" "Duplicity backs up directories by producing encrypted tar-format volumes\n" "and uploading them to a remote or local file server. Because duplicity uses\n" @@ -1158,7 +1158,7 @@ msgid "" "spying and/or modification by the server." msgstr "" -#: gnu/packages/backup.scm:180 +#: gnu/packages/backup.scm:190 msgid "" "Par2cmdline uses Reed-Solomon error-correcting codes to\n" "generate and verify PAR2 recovery files. These files can be distributed\n" @@ -1170,7 +1170,7 @@ msgid "" "can even repair them." msgstr "" -#: gnu/packages/backup.scm:219 +#: gnu/packages/backup.scm:229 msgid "" "Hdup2 is a backup utility, its aim is to make backup really simple. The\n" "backup scheduling is done by means of a cron job. It supports an\n" @@ -1178,7 +1178,7 @@ msgid "" "backups (called chunks) to allow easy burning to CD/DVD." msgstr "" -#: gnu/packages/backup.scm:316 +#: gnu/packages/backup.scm:326 msgid "" "Libarchive provides a flexible interface for reading and writing\n" "archives in various formats such as tar and cpio. Libarchive also supports\n" @@ -1189,7 +1189,7 @@ msgid "" "random access nor for in-place modification." msgstr "" -#: gnu/packages/backup.scm:380 +#: gnu/packages/backup.scm:390 msgid "" "Rdup is a utility inspired by rsync and the plan9 way of doing backups.\n" "Rdup itself does not backup anything, it only print a list of absolute\n" @@ -1197,7 +1197,7 @@ msgid "" "list and implement the backup strategy." msgstr "" -#: gnu/packages/backup.scm:419 +#: gnu/packages/backup.scm:429 msgid "" "SnapRAID backs up files stored across multiple storage devices, such as\n" "disk arrays, in an efficient way reminiscent of its namesake @acronym{RAID,\n" @@ -1223,7 +1223,7 @@ msgid "" "remain fully idle, saving power and producing less noise." msgstr "" -#: gnu/packages/backup.scm:469 +#: gnu/packages/backup.scm:479 msgid "" "Btar is a tar-compatible archiver which allows arbitrary compression and\n" "ciphering, redundancy, differential backup, indexed extraction, multicore\n" @@ -1231,7 +1231,7 @@ msgid "" "errors." msgstr "" -#: gnu/packages/backup.scm:496 +#: gnu/packages/backup.scm:506 msgid "" "Rdiff-backup backs up one directory to another, possibly over a network.\n" "The target directory ends up a copy of the source directory, but extra reverse\n" @@ -1246,7 +1246,7 @@ msgid "" "rdiff-backup is easy to use and settings have sensible defaults." msgstr "" -#: gnu/packages/backup.scm:532 +#: gnu/packages/backup.scm:542 msgid "" "rsnapshot is a file system snapshot utility based on rsync.\n" "rsnapshot makes it easy to make periodic snapshots of local machines, and\n" @@ -1254,7 +1254,7 @@ msgid "" "rsnapshot uses hard links to deduplicate identical files." msgstr "" -#: gnu/packages/backup.scm:610 +#: gnu/packages/backup.scm:620 msgid "" "Libchop is a set of utilities and library for data backup and\n" "distributed storage. Its main application is @command{chop-backup}, an\n" @@ -1265,17 +1265,17 @@ msgid "" "detection, and lossless compression." msgstr "" -#: gnu/packages/backup.scm:740 +#: gnu/packages/backup.scm:750 msgid "" "Borg is a deduplicating backup program. Optionally, it\n" "supports compression and authenticated encryption. The main goal of Borg is to\n" "provide an efficient and secure way to backup data. The data deduplication\n" "technique used makes Borg suitable for daily backups since only changes are\n" -"stored. The authenticated encryption technique makes it suitable for backups\n" -"to not fully trusted targets. Borg is a fork of Attic." +"stored. The authenticated encryption technique makes it suitable for\n" +"storing backups on untrusted computers." msgstr "" -#: gnu/packages/backup.scm:771 +#: gnu/packages/backup.scm:781 msgid "" "wimlib is a C library and set of command-line utilities for\n" "creating, modifying, extracting, and mounting archives in the Windows Imaging\n" @@ -1283,14 +1283,14 @@ msgid "" "NTFS volumes using @code{ntfs-3g}, preserving NTFS-specific attributes." msgstr "" -#: gnu/packages/backup.scm:879 +#: gnu/packages/backup.scm:889 msgid "" "With dirvish you can maintain a set of complete images of your\n" "file systems with unattended creation and expiration. A dirvish backup vault\n" "is like a time machine for your data." msgstr "" -#: gnu/packages/backup.scm:974 +#: gnu/packages/backup.scm:984 msgid "" "Restic is a program that does backups right and was designed\n" "with the following principles in mind:\n" @@ -1322,7 +1322,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/backup.scm:1025 +#: gnu/packages/backup.scm:1035 msgid "" "ZBackup is a globally-deduplicating backup tool, based on the\n" "ideas found in Rsync. Feed a large @file{.tar} into it, and it will\n" @@ -1335,7 +1335,7 @@ msgid "" "is format-agnostic, so you can feed virtually any files to it." msgstr "" -#: gnu/packages/backup.scm:1061 +#: gnu/packages/backup.scm:1071 msgid "" "Dump examines files in a file system, determines which ones\n" "need to be backed up, and copies those files to a specified disk, tape or\n" @@ -1346,14 +1346,44 @@ msgid "" "interactive mode." msgstr "" -#: gnu/packages/backup.scm:1105 +#: gnu/packages/backup.scm:1131 +msgid "" +"Btrbk is a backup tool for Btrfs subvolumes, taking\n" +"advantage of Btrfs specific capabilities to create atomic snapshots and\n" +"transfer them incrementally to your backup locations. The source and target\n" +"locations are specified in a config file, which allows easily configuring\n" +"simple scenarios like e.g. a @i{laptop with locally attached backup disks}, as\n" +"well as more complex ones, e.g. a @i{server receiving backups from several\n" +"hosts via SSH, with different retention policy}. It has features such as:\n" +"@itemize\n" +"@item atomic snapshots\n" +"@item incremental backups\n" +"@item flexible retention policy\n" +"@item backups to multiple destinations\n" +"@item transfer via SSH\n" +"@item resume backups (for removable and mobile devices)\n" +"@item archive to offline storage\n" +"@item encrypted backups to non-btrfs storage\n" +"@item wildcard subvolumes (useful for Docker and LXC containers)\n" +"@item transaction log\n" +"@item comprehensive list and statistics output\n" +"@item resolve and trace Btrfs parent-child and received-from relationships\n" +"@item list file changes between backups\n" +"@item calculate accurate disk space usage based on block regions.\n" +"@end itemize\n" +"Btrbk is designed to run as a cron job for triggering periodic snapshots and\n" +"backups, as well as from the command line (e.g. for instantly creating\n" +"additional snapshots)." +msgstr "" + +#: gnu/packages/backup.scm:1194 msgid "" "Burp is a network backup and restore program. It attempts\n" "to reduce network traffic and the amount of space that is used by each\n" "backup." msgstr "" -#: gnu/packages/backup.scm:1136 +#: gnu/packages/backup.scm:1225 msgid "" "Disarchive can disassemble software archives into data\n" "and metadata. The goal is to create a small amount of metadata that\n" @@ -1363,7 +1393,7 @@ msgid "" "compression parameters used by Gzip." msgstr "" -#: gnu/packages/backup.scm:1181 +#: gnu/packages/backup.scm:1270 msgid "" "borgmatic is simple, configuration-driven backup software for servers\n" "and workstations. Protect your files with client-side encryption. Backup\n" @@ -1371,6 +1401,14 @@ msgid "" "borgmatic is powered by borg." msgstr "" +#: gnu/packages/backup.scm:1330 +msgid "" +"Vorta is a graphical backup client based on the Borg backup\n" +"tool. It supports the use of remote backup repositories. It can perform\n" +"scheduled backups, and has a graphical tool for browsing and extracting the Borg\n" +"archives." +msgstr "" + #: gnu/packages/base.scm:98 msgid "" "GNU Hello prints the message \"Hello, world!\" and then exits. It\n" @@ -1475,7 +1513,7 @@ msgid "" "change. GNU make offers many powerful extensions over the standard utility." msgstr "" -#: gnu/packages/base.scm:550 +#: gnu/packages/base.scm:558 msgid "" "GNU Binutils is a collection of tools for working with binary files.\n" "Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler.\n" @@ -1485,14 +1523,14 @@ msgid "" "included." msgstr "" -#: gnu/packages/base.scm:694 +#: gnu/packages/base.scm:685 msgid "" "The linker wrapper (or @code{ld-wrapper}) wraps the linker to add any\n" "missing @code{-rpath} flags, and to detect any misuse of libraries outside of\n" "the store." msgstr "" -#: gnu/packages/base.scm:930 +#: gnu/packages/base.scm:921 msgid "" "Any Unix-like operating system needs a C library: the library which\n" "defines the \"system calls\" and other basic facilities such as open, malloc,\n" @@ -1502,21 +1540,21 @@ msgid "" "with the Linux kernel." msgstr "" -#: gnu/packages/base.scm:1057 +#: gnu/packages/base.scm:1048 msgid "" "This package provides all the locales supported by the GNU C Library,\n" "more than 400 in total. To use them set the @code{LOCPATH} environment variable\n" "to the @code{share/locale} sub-directory of this package." msgstr "" -#: gnu/packages/base.scm:1206 +#: gnu/packages/base.scm:1198 msgid "" "The which program finds the location of executables in PATH, with a\n" "variety of options. It is an alternative to the shell \"type\" built-in\n" "command." msgstr "" -#: gnu/packages/base.scm:1329 +#: gnu/packages/base.scm:1321 msgid "" "The Time Zone Database (often called tz or zoneinfo)\n" "contains code and data that represent the history of local time for many\n" @@ -1525,14 +1563,14 @@ msgid "" "and daylight-saving rules." msgstr "" -#: gnu/packages/base.scm:1367 +#: gnu/packages/base.scm:1359 msgid "" "libiconv provides an implementation of the iconv function for systems\n" "that lack it. iconv is used to convert between character encodings in a\n" "program. It supports a wide variety of different encodings." msgstr "" -#: gnu/packages/bittorrent.scm:131 +#: gnu/packages/bittorrent.scm:135 msgid "" "Transmission is a BitTorrent client that comes with graphical,\n" "textual, and Web user interfaces. Transmission also has a daemon for\n" @@ -1540,54 +1578,54 @@ msgid "" "DHT, µTP, PEX and Magnet Links." msgstr "" -#: gnu/packages/bittorrent.scm:165 +#: gnu/packages/bittorrent.scm:169 msgid "" "transmission-remote-gtk is a GTK client for remote management\n" "of the Transmission BitTorrent client, using its HTTP RPC protocol." msgstr "" -#: gnu/packages/bittorrent.scm:187 +#: gnu/packages/bittorrent.scm:191 msgid "" "LibTorrent is a BitTorrent library used by and developed in parallel\n" "with the BitTorrent client rtorrent. It is written in C++ with emphasis on\n" "speed and efficiency." msgstr "" -#: gnu/packages/bittorrent.scm:215 +#: gnu/packages/bittorrent.scm:219 msgid "" "rTorrent is a BitTorrent client with an ncurses interface. It supports\n" "full encryption, DHT, PEX, and Magnet Links. It can also be controlled via\n" "XML-RPC over SCGI." msgstr "" -#: gnu/packages/bittorrent.scm:249 +#: gnu/packages/bittorrent.scm:253 msgid "" "Tremc is a console client, with a curses interface, for the\n" "Transmission BitTorrent daemon." msgstr "" -#: gnu/packages/bittorrent.scm:290 +#: gnu/packages/bittorrent.scm:294 msgid "" "Transmission-remote-cli is a console client, with a curses\n" "interface, for the Transmission BitTorrent daemon. This package is no longer\n" "maintained upstream." msgstr "" -#: gnu/packages/bittorrent.scm:340 +#: gnu/packages/bittorrent.scm:345 msgid "" "Aria2 is a lightweight, multi-protocol & multi-source command-line\n" "download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and Metalink.\n" "Aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces." msgstr "" -#: gnu/packages/bittorrent.scm:374 +#: gnu/packages/bittorrent.scm:381 msgid "" "uGet is portable download manager with GTK+ interface supporting\n" "HTTP, HTTPS, BitTorrent and Metalink, supporting multi-connection\n" "downloads, download scheduling, download rate limiting." msgstr "" -#: gnu/packages/bittorrent.scm:406 +#: gnu/packages/bittorrent.scm:413 msgid "" "mktorrent is a simple command-line utility to create BitTorrent\n" "@dfn{metainfo} files, often known simply as @dfn{torrents}, from both single\n" @@ -1597,14 +1635,14 @@ msgid "" "and will take advantage of multiple processor cores where possible." msgstr "" -#: gnu/packages/bittorrent.scm:457 +#: gnu/packages/bittorrent.scm:472 msgid "" "libtorrent-rasterbar is a feature-complete C++ BitTorrent implementation\n" "focusing on efficiency and scalability. It runs on embedded devices as well as\n" "desktops." msgstr "" -#: gnu/packages/bittorrent.scm:508 +#: gnu/packages/bittorrent.scm:523 msgid "" "qBittorrent is a BitTorrent client programmed in C++/Qt that uses\n" "libtorrent (sometimes called libtorrent-rasterbar) by Arvid Norberg.\n" @@ -1614,7 +1652,7 @@ msgid "" "features." msgstr "" -#: gnu/packages/bittorrent.scm:580 +#: gnu/packages/bittorrent.scm:604 msgid "" "Deluge contains the common features to BitTorrent clients such as\n" "Protocol Encryption, DHT, Local Peer Discovery (LSD), Peer Exchange\n" @@ -1926,7 +1964,16 @@ msgid "" "functionality in a C++ iostream." msgstr "" -#: gnu/packages/compression.scm:1443 +#: gnu/packages/compression.scm:1416 +msgid "" +"Zopfli Compression Algorithm is a compression library\n" +"programmed in C to perform very good, but slow, deflate or zlib compression.\n" +"ZopfliCompress supports the deflate, gzip and zlib output formats. This\n" +"library can only compress, not decompress; existing zlib or deflate libraries\n" +"can decompress the data." +msgstr "" + +#: gnu/packages/compression.scm:1469 msgid "" "ZPAQ is a command-line archiver for realistic situations with\n" "many duplicate and already compressed files. It backs up only those files\n" @@ -1940,13 +1987,13 @@ msgid "" "or junctions, and always follows hard links." msgstr "" -#: gnu/packages/compression.scm:1545 +#: gnu/packages/compression.scm:1571 msgid "" "@command{unshield} is a tool and library for extracting @file{.cab}\n" " archives from InstallShield installers." msgstr "" -#: gnu/packages/compression.scm:1624 +#: gnu/packages/compression.scm:1650 msgid "" "Zstandard (@command{zstd}) is a lossless compression algorithm\n" "that combines very fast operation with a compression ratio comparable to that of\n" @@ -1956,7 +2003,7 @@ msgid "" "speed." msgstr "" -#: gnu/packages/compression.scm:1672 +#: gnu/packages/compression.scm:1698 msgid "" "Parallel Zstandard (PZstandard or @command{pzstd}) is a\n" "multi-threaded implementation of the @uref{http://zstd.net/, Zstandard\n" @@ -1969,7 +2016,7 @@ msgid "" "the actual decompression, the other input and output." msgstr "" -#: gnu/packages/compression.scm:1712 +#: gnu/packages/compression.scm:1738 msgid "" "Zip is a compression and file packaging/archive utility. Zip is useful\n" "for packaging a set of files for distribution, for archiving files, and for\n" @@ -1984,7 +2031,7 @@ msgid "" "Compression ratios of 2:1 to 3:1 are common for text files." msgstr "" -#: gnu/packages/compression.scm:1801 +#: gnu/packages/compression.scm:1827 msgid "" "UnZip is an extraction utility for archives compressed in .zip format,\n" "also called \"zipfiles\".\n" @@ -1995,7 +2042,7 @@ msgid "" "recreates the stored directory structure by default." msgstr "" -#: gnu/packages/compression.scm:1853 +#: gnu/packages/compression.scm:1879 msgid "" "Ziptime helps make @file{.zip} archives reproducible by replacing\n" "timestamps in the file header with a fixed time (1 January 2008).\n" @@ -2004,11 +2051,11 @@ msgid "" "@command{zip} to prevent it from storing the ``universal time'' field." msgstr "" -#: gnu/packages/compression.scm:1880 +#: gnu/packages/compression.scm:1906 msgid "ZZipLib is a library based on zlib for accessing zip files." msgstr "ZZipLib estas biblioteko bazita sur zlib por aliri zip-dosierojn." -#: gnu/packages/compression.scm:1904 +#: gnu/packages/compression.scm:1930 msgid "" "Libzip is a C library for reading, creating, and modifying\n" "zip archives. Files can be added from data buffers, files, or compressed data\n" @@ -2016,7 +2063,7 @@ msgid "" "archive can be reverted." msgstr "" -#: gnu/packages/compression.scm:1937 +#: gnu/packages/compression.scm:1963 msgid "" "The main command is @command{aunpack} which extracts files\n" "from an archive. The other commands provided are @command{apack} (to create\n" @@ -2026,7 +2073,7 @@ msgid "" "of archives." msgstr "" -#: gnu/packages/compression.scm:1963 +#: gnu/packages/compression.scm:1989 msgid "" "Lunzip is a decompressor for files in the lzip compression format (.lz),\n" "written as a single small C tool with no dependencies. This makes it\n" @@ -2036,7 +2083,7 @@ msgid "" "Lunzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:1990 +#: gnu/packages/compression.scm:2016 msgid "" "Clzip is a compressor and decompressor for files in the lzip compression\n" "format (.lz), written as a single small C tool with no dependencies. This makes\n" @@ -2045,7 +2092,7 @@ msgid "" "Clzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:2018 +#: gnu/packages/compression.scm:2044 msgid "" "Lzlib is a C library for in-memory LZMA compression and decompression in\n" "the lzip format. It supports integrity checking of the decompressed data, and\n" @@ -2053,7 +2100,7 @@ msgid "" "corrupted input." msgstr "" -#: gnu/packages/compression.scm:2042 +#: gnu/packages/compression.scm:2068 msgid "" "Plzip is a massively parallel (multi-threaded) lossless data compressor\n" "and decompressor that uses the lzip file format (.lz). Files produced by plzip\n" @@ -2067,13 +2114,13 @@ msgid "" "single-member files which can't be decompressed in parallel." msgstr "" -#: gnu/packages/compression.scm:2074 +#: gnu/packages/compression.scm:2100 msgid "" "innoextract allows extracting Inno Setup installers under\n" "non-Windows systems without running the actual installer using wine." msgstr "" -#: gnu/packages/compression.scm:2096 +#: gnu/packages/compression.scm:2122 msgid "" "ISA-L is a collection of optimized low-level functions\n" "targeting storage applications. ISA-L includes:\n" @@ -2091,7 +2138,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/compression.scm:2156 +#: gnu/packages/compression.scm:2182 msgid "" "This package provides the reference implementation of Brotli,\n" "a generic-purpose lossless compression algorithm that compresses data using a\n" @@ -2103,13 +2150,13 @@ msgid "" "The specification of the Brotli Compressed Data Format is defined in RFC 7932." msgstr "" -#: gnu/packages/compression.scm:2176 +#: gnu/packages/compression.scm:2202 msgid "" "This package provides a Python interface to the @code{brotli}\n" "package, an implementation of the Brotli lossless compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2200 +#: gnu/packages/compression.scm:2226 msgid "" "UCL implements a number of compression algorithms that\n" "achieve an excellent compression ratio while allowing fast decompression.\n" @@ -2119,7 +2166,7 @@ msgid "" "decompression is a little bit slower." msgstr "" -#: gnu/packages/compression.scm:2248 +#: gnu/packages/compression.scm:2274 msgid "" "The Ultimate Packer for eXecutables (UPX) is an executable file\n" "compressor. UPX typically reduces the file size of programs and shared\n" @@ -2127,7 +2174,7 @@ msgid "" "download times, and other distribution and storage costs." msgstr "" -#: gnu/packages/compression.scm:2276 +#: gnu/packages/compression.scm:2302 msgid "" "QuaZIP is a simple C++ wrapper over Gilles Vollant's\n" "ZIP/UNZIP package that can be used to access ZIP archives. It uses\n" @@ -2141,7 +2188,7 @@ msgid "" "reading from and writing to ZIP archives." msgstr "" -#: gnu/packages/compression.scm:2335 +#: gnu/packages/compression.scm:2361 msgid "" "The zchunk compressed file format allows splitting a file\n" "into independent chunks. This makes it possible to retrieve only changed\n" @@ -2164,7 +2211,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/compression.scm:2391 +#: gnu/packages/compression.scm:2417 msgid "" "Zutils is a collection of utilities able to process any combination of\n" "compressed and uncompressed files transparently. If any given file, including\n" @@ -2181,14 +2228,14 @@ msgid "" "at run time, and must be installed separately." msgstr "" -#: gnu/packages/compression.scm:2449 +#: gnu/packages/compression.scm:2475 msgid "" "This package provides a script to unpack self-extracting\n" "archives generated by @command{makeself} or @command{mojo} without running the\n" "possibly untrusted extraction shell script." msgstr "" -#: gnu/packages/compression.scm:2477 +#: gnu/packages/compression.scm:2503 msgid "" "(N)compress provides the original compress and uncompress\n" "programs that used to be the de facto UNIX standard for compressing and\n" @@ -2196,7 +2243,7 @@ msgid "" "file compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2504 +#: gnu/packages/compression.scm:2530 msgid "" "Xarchiver is a front-end to various command line archiving\n" "tools. It uses GTK+ tool-kit and is designed to be desktop-environment\n" @@ -2205,13 +2252,13 @@ msgid "" "archiver is not installed." msgstr "" -#: gnu/packages/compression.scm:2541 +#: gnu/packages/compression.scm:2567 msgid "" "Archive huge numbers of files, or split massive tar archives into smaller\n" "chunks." msgstr "" -#: gnu/packages/compression.scm:2574 +#: gnu/packages/compression.scm:2600 msgid "" "Blosc is a high performance compressor optimized for binary data. It has\n" "been designed to transmit data to the processor cache faster than the\n" @@ -2221,14 +2268,14 @@ msgid "" "computations." msgstr "" -#: gnu/packages/compression.scm:2612 +#: gnu/packages/compression.scm:2638 msgid "" "ECM is a utility that converts ECM files, i.e., CD data files\n" "with their error correction data losslessly rearranged for better compression,\n" "to their original, binary CD format." msgstr "" -#: gnu/packages/compression.scm:2642 +#: gnu/packages/compression.scm:2668 msgid "" "Libdeflate is a library for fast, whole-buffer DEFLATE-based\n" "compression and decompression. The supported formats are:\n" @@ -2240,7 +2287,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/compression.scm:2672 +#: gnu/packages/compression.scm:2698 msgid "" "Tarlz is a massively parallel (multi-threaded) combined implementation of\n" "the tar archiver and the lzip compressor. Tarlz creates, lists, and extracts\n" @@ -2251,7 +2298,7 @@ msgid "" "can append files to the end of such compressed archives." msgstr "" -#: gnu/packages/compression.scm:2706 +#: gnu/packages/compression.scm:2732 msgid "" "The Concise Binary Object Representation (CBOR) is a data format whose\n" "design goals include the possibility of extremely small code size, fairly\n" @@ -2260,17 +2307,17 @@ msgid "" "serializations such as ASN.1 and MessagePack." msgstr "" -#: gnu/packages/compression.scm:2739 +#: gnu/packages/compression.scm:2765 msgid "Fcrackzip is a Zip file password cracker." msgstr "" -#: gnu/packages/databases.scm:211 +#: gnu/packages/databases.scm:216 msgid "" "4store is a RDF/SPARQL store written in C, supporting\n" "either single machines or networked clusters." msgstr "" -#: gnu/packages/databases.scm:255 +#: gnu/packages/databases.scm:260 msgid "" "@code{pg_tmp} creates temporary PostgreSQL databases, suitable for tasks\n" "like running software test suites. Temporary databases created with\n" @@ -2279,14 +2326,14 @@ msgid "" "60)." msgstr "" -#: gnu/packages/databases.scm:281 +#: gnu/packages/databases.scm:286 msgid "" "This package provides a utility for dumping the contents of an\n" "ElasticSearch index to a compressed file and restoring the dumpfile back to an\n" "ElasticSearch server" msgstr "" -#: gnu/packages/databases.scm:433 +#: gnu/packages/databases.scm:438 msgid "" "Firebird is an SQL @acronym{RDBMS, relational database management system}\n" "with rich support for ANSI SQL (e.g., @code{INSERT...RETURNING}) including\n" @@ -2306,20 +2353,20 @@ msgid "" "database later." msgstr "" -#: gnu/packages/databases.scm:506 +#: gnu/packages/databases.scm:511 msgid "" "LevelDB is a fast key-value storage library that provides an ordered\n" "mapping from string keys to string values." msgstr "" -#: gnu/packages/databases.scm:526 +#: gnu/packages/databases.scm:531 msgid "" "Memcached is an in-memory key-value store. It has a small\n" "and generic API, and was originally intended for use with dynamic web\n" "applications." msgstr "" -#: gnu/packages/databases.scm:588 +#: gnu/packages/databases.scm:593 msgid "" "libMemcached is a library to use memcached in C/C++\n" "applications. It comes with a complete reference guide and documentation of\n" @@ -2333,51 +2380,74 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:625 +#: gnu/packages/databases.scm:630 msgid "" "@code{pylibmc} is a client in Python for memcached. It is a wrapper\n" "around TangentOrg’s libmemcached library, and can be used as a drop-in\n" "replacement for the code@{python-memcached} library." msgstr "" -#: gnu/packages/databases.scm:653 +#: gnu/packages/databases.scm:662 +#, fuzzy +#| msgid "Implementation of Scheme and related languages" +msgid "This is a memcache client library for the Go programming language." +msgstr "Realigo de Scheme kaj rilataj program-lingvoj" + +#: gnu/packages/databases.scm:685 +#, fuzzy +msgid "This package provides memcache client and server functionality." +msgstr "Tiu ĉi pako provizas datumbazan interfacon por Perl." + +#: gnu/packages/databases.scm:711 msgid "" "@code{litecli} is a command-line client for SQLite databases that has\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:685 +#: gnu/packages/databases.scm:732 +msgid "" +"This Python package provides an API to execute meta-commands (AKA\n" +"\"special\", or \"backslash commands\") on PostgreSQL." +msgstr "" + +#: gnu/packages/databases.scm:763 +msgid "" +"@code{pgcli} is a command line interface for PostgreSQL with\n" +"autocompletion and syntax highlighting." +msgstr "" + +#: gnu/packages/databases.scm:801 msgid "" "MyCLI is a command line interface for MySQL, MariaDB, and Percona with\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:782 +#: gnu/packages/databases.scm:898 msgid "" "MySQL is a fast, reliable, and easy to use relational database\n" "management system that supports the standardized Structured Query\n" "Language." msgstr "" -#: gnu/packages/databases.scm:1045 +#: gnu/packages/databases.scm:1161 msgid "" "MariaDB is a multi-user and multi-threaded SQL database server, designed\n" "as a drop-in replacement of MySQL." msgstr "" -#: gnu/packages/databases.scm:1070 +#: gnu/packages/databases.scm:1186 msgid "" "The MariaDB Connector/C is used to connect applications\n" "developed in C/C++ to MariaDB and MySQL databases." msgstr "" -#: gnu/packages/databases.scm:1093 +#: gnu/packages/databases.scm:1209 msgid "" "Galera is a wsrep-provider that is used with MariaDB for load-balancing\n" "and high-availability (HA)." msgstr "" -#: gnu/packages/databases.scm:1147 +#: gnu/packages/databases.scm:1263 msgid "" "PostgreSQL is a powerful object-relational database system. It is fully\n" "ACID compliant, has full support for foreign keys, joins, views, triggers, and\n" @@ -2387,19 +2457,27 @@ msgid "" "pictures, sounds, or video." msgstr "" -#: gnu/packages/databases.scm:1269 +#: gnu/packages/databases.scm:1395 +msgid "" +"TimescaleDB is an database designed to make SQL scalable for\n" +"time-series data. It is engineered up from PostgreSQL and packaged as a\n" +"PostgreSQL extension, providing automatic partitioning across time and space\n" +"(partitioning key), as well as full SQL support." +msgstr "" + +#: gnu/packages/databases.scm:1476 msgid "" "@code{pgloader} is a program that can load data or migrate databases from\n" "CSV, DB3, iXF, SQLite, MS-SQL or MySQL to PostgreSQL." msgstr "" -#: gnu/packages/databases.scm:1293 +#: gnu/packages/databases.scm:1500 msgid "" "PyMySQL is a pure-Python MySQL client library, based on PEP 249.\n" "Most public APIs are compatible with @command{mysqlclient} and MySQLdb." msgstr "" -#: gnu/packages/databases.scm:1320 +#: gnu/packages/databases.scm:1527 msgid "" "QDBM is a library of routines for managing a\n" "database. The database is a simple data file containing key-value\n" @@ -2409,7 +2487,7 @@ msgid "" "organized in a hash table or B+ tree." msgstr "" -#: gnu/packages/databases.scm:1357 +#: gnu/packages/databases.scm:1564 msgid "" "GNU Recutils is a set of tools and libraries for creating and\n" "manipulating text-based, human-editable databases. Despite being text-based,\n" @@ -2418,7 +2496,7 @@ msgid "" "types are supported, as is encryption." msgstr "" -#: gnu/packages/databases.scm:1389 +#: gnu/packages/databases.scm:1596 msgid "" "This package provides an Emacs major mode @code{rec-mode}\n" "for working with GNU Recutils text-based, human-editable databases. It\n" @@ -2426,7 +2504,7 @@ msgid "" "including field and record folding." msgstr "" -#: gnu/packages/databases.scm:1457 +#: gnu/packages/databases.scm:1664 msgid "" "RocksDB is a library that forms the core building block for a fast\n" "key-value server, especially suited for storing data on flash drives. It\n" @@ -2437,7 +2515,7 @@ msgid "" "data in a single database. RocksDB is partially based on @code{LevelDB}." msgstr "" -#: gnu/packages/databases.scm:1515 +#: gnu/packages/databases.scm:1722 msgid "" "Sparql-query is a command-line tool for accessing SPARQL\n" "endpoints over HTTP. It has been intentionally designed to @code{feel} similar to\n" @@ -2448,13 +2526,13 @@ msgid "" "for example from a shell script." msgstr "" -#: gnu/packages/databases.scm:1608 +#: gnu/packages/databases.scm:1815 msgid "" "Sqitch is a standalone change management system for database schemas,\n" "which uses SQL to describe changes." msgstr "" -#: gnu/packages/databases.scm:1635 +#: gnu/packages/databases.scm:1842 msgid "" "SQLcrush lets you view and edit a database directly from the text\n" "console through an ncurses interface. You can explore each table's structure,\n" @@ -2462,7 +2540,7 @@ msgid "" "changes." msgstr "" -#: gnu/packages/databases.scm:1673 +#: gnu/packages/databases.scm:1880 msgid "" "TDB is a Trivial Database. In concept, it is very much like GDBM,\n" "and BSD's DB except that it allows multiple simultaneous writers and uses\n" @@ -2470,11 +2548,11 @@ msgid "" "extremely small." msgstr "" -#: gnu/packages/databases.scm:1693 +#: gnu/packages/databases.scm:1900 msgid "This package provides an database interface for Perl." msgstr "Tiu ĉi pako provizas datumbazan interfacon por Perl." -#: gnu/packages/databases.scm:1741 +#: gnu/packages/databases.scm:1948 msgid "" "An SQL to OO mapper with an object API inspired by\n" "Class::DBI (with a compatibility layer as a springboard for porting) and a\n" @@ -2486,13 +2564,13 @@ msgid "" "\"ORDER BY\" and \"HAVING\" support." msgstr "" -#: gnu/packages/databases.scm:1770 +#: gnu/packages/databases.scm:1977 msgid "" "DBIx::Class::Cursor::Cached provides a cursor class with\n" "built-in caching support." msgstr "" -#: gnu/packages/databases.scm:1793 +#: gnu/packages/databases.scm:2000 msgid "" "Because the many-to-many relationships are not real\n" "relationships, they can not be introspected with DBIx::Class. Many-to-many\n" @@ -2502,28 +2580,28 @@ msgid "" "introspected and examined." msgstr "" -#: gnu/packages/databases.scm:1852 +#: gnu/packages/databases.scm:2059 msgid "" "DBIx::Class::Schema::Loader automates the definition of a\n" "DBIx::Class::Schema by scanning database table definitions and setting up the\n" "columns, primary keys, unique constraints and relationships." msgstr "" -#: gnu/packages/databases.scm:1876 +#: gnu/packages/databases.scm:2083 #, fuzzy msgid "" "This package provides a PostgreSQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." msgstr "Tiu ĉi pako provizas datumbazan interfacon por Perl." -#: gnu/packages/databases.scm:1914 +#: gnu/packages/databases.scm:2121 #, fuzzy msgid "" "This package provides a MySQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." msgstr "Tiu ĉi pako provizas datumbazan interfacon por Perl." -#: gnu/packages/databases.scm:1934 +#: gnu/packages/databases.scm:2141 msgid "" "DBD::SQLite is a Perl DBI driver for SQLite, that includes\n" "the entire thing in the distribution. So in order to get a fast transaction\n" @@ -2531,14 +2609,14 @@ msgid "" "module, and nothing else." msgstr "" -#: gnu/packages/databases.scm:1959 +#: gnu/packages/databases.scm:2166 msgid "" "@code{MySQL::Config} emulates the @code{load_defaults} function from\n" "libmysqlclient. It will fill an array with long options, ready to be parsed by\n" "@code{Getopt::Long}." msgstr "" -#: gnu/packages/databases.scm:1983 +#: gnu/packages/databases.scm:2190 msgid "" "This module was inspired by the excellent DBIx::Abstract.\n" "While based on the concepts used by DBIx::Abstract, the concepts used have\n" @@ -2548,7 +2626,7 @@ msgid "" "time your data changes." msgstr "" -#: gnu/packages/databases.scm:2010 +#: gnu/packages/databases.scm:2217 msgid "" "This module is nearly identical to @code{SQL::Abstract} 1.81, and exists\n" "to preserve the ability of users to opt into the new way of doing things in\n" @@ -2564,34 +2642,34 @@ msgid "" "your data changes, as this module figures it out." msgstr "" -#: gnu/packages/databases.scm:2043 +#: gnu/packages/databases.scm:2250 msgid "" "This module tries to split any SQL code, even including\n" "non-standard extensions, into the atomic statements it is composed of." msgstr "" -#: gnu/packages/databases.scm:2062 +#: gnu/packages/databases.scm:2269 msgid "" "SQL::Tokenizer is a tokenizer for SQL queries. It does not\n" "claim to be a parser or query verifier. It just creates sane tokens from a\n" "valid SQL query." msgstr "" -#: gnu/packages/databases.scm:2081 +#: gnu/packages/databases.scm:2288 msgid "" "Unixodbc is a library providing an API with which to access\n" "data sources. Data sources include SQL Servers and any software with an ODBC\n" "Driver." msgstr "" -#: gnu/packages/databases.scm:2113 +#: gnu/packages/databases.scm:2320 msgid "" "The goal for nanodbc is to make developers happy by providing\n" "a simpler and less verbose API for working with ODBC. Common tasks should be\n" "easy, requiring concise and simple code." msgstr "" -#: gnu/packages/databases.scm:2174 +#: gnu/packages/databases.scm:2381 msgid "" "UnQLite is an in-process software library which implements a\n" "self-contained, serverless, zero-configuration, transactional NoSQL\n" @@ -2600,27 +2678,35 @@ msgid "" "similar to BerkeleyDB, LevelDB, etc." msgstr "" -#: gnu/packages/databases.scm:2225 +#: gnu/packages/databases.scm:2432 msgid "" "Redis is an advanced key-value cache and store. Redis\n" "supports many data structures including strings, hashes, lists, sets, sorted\n" "sets, bitmaps and hyperloglogs." msgstr "" -#: gnu/packages/databases.scm:2247 +#: gnu/packages/databases.scm:2454 msgid "" "This package provides a Ruby client that tries to match Redis' API\n" "one-to-one, while still providing an idiomatic interface." msgstr "" -#: gnu/packages/databases.scm:2275 +#: gnu/packages/databases.scm:2479 +msgid "Package rdb implements parsing and encoding of the Redis RDB file format." +msgstr "" + +#: gnu/packages/databases.scm:2505 +msgid "Redigo is a Go client for the Redis database." +msgstr "" + +#: gnu/packages/databases.scm:2531 msgid "" "Kyoto Cabinet is a standalone file-based database that supports Hash\n" "and B+ Tree data storage models. It is a fast key-value lightweight\n" "database and supports many programming languages. It is a NoSQL database." msgstr "" -#: gnu/packages/databases.scm:2303 +#: gnu/packages/databases.scm:2559 msgid "" "Tokyo Cabinet is a library of routines for managing a database.\n" "The database is a simple data file containing records, each is a pair of a\n" @@ -2630,7 +2716,7 @@ msgid "" "organized in hash table, B+ tree, or fixed-length array." msgstr "" -#: gnu/packages/databases.scm:2339 +#: gnu/packages/databases.scm:2595 msgid "" "WiredTiger is an extensible platform for data management. It supports\n" "row-oriented storage (where all columns of a row are stored together),\n" @@ -2639,17 +2725,17 @@ msgid "" "trees (LSM), for sustained throughput under random insert workloads." msgstr "" -#: gnu/packages/databases.scm:2389 +#: gnu/packages/databases.scm:2645 msgid "" "This package provides Guile bindings to the WiredTiger ``NoSQL''\n" "database." msgstr "" -#: gnu/packages/databases.scm:2419 +#: gnu/packages/databases.scm:2675 msgid "The DB::File module provides Perl bindings to the Berkeley DB version 1.x." msgstr "" -#: gnu/packages/databases.scm:2467 +#: gnu/packages/databases.scm:2723 msgid "" "The @dfn{Lightning Memory-Mapped Database} (LMDB) is a high-performance\n" "transactional database. Unlike more complex relational databases, LMDB handles\n" @@ -2662,7 +2748,7 @@ msgid "" "virtual address space — not physical RAM." msgstr "" -#: gnu/packages/databases.scm:2501 +#: gnu/packages/databases.scm:2757 msgid "" "@code{lmdbxx} is a comprehensive @code{C++} wrapper for the\n" "@code{LMDB} embedded database library, offering both an error-checked\n" @@ -2670,14 +2756,22 @@ msgid "" "semantics." msgstr "" -#: gnu/packages/databases.scm:2535 +#: gnu/packages/databases.scm:2791 msgid "" "Libpqxx is a C++ library to enable user programs to communicate with the\n" "PostgreSQL database back-end. The database back-end can be local or it may be\n" "on another machine, accessed via TCP/IP." msgstr "" -#: gnu/packages/databases.scm:2561 +#: gnu/packages/databases.scm:2819 +msgid "" +"Bolt is a pure Go key/value store inspired by Howard Chu's\n" +"LMDB project. The goal of the project is to provide a simple, fast, and\n" +"reliable database for projects that don't require a full database server such as\n" +"Postgres or MySQL." +msgstr "" + +#: gnu/packages/databases.scm:2845 msgid "" "Peewee is a simple and small ORM (object-relation mapping) tool. Peewee\n" "handles converting between pythonic values and those used by databases, so you\n" @@ -2686,20 +2780,20 @@ msgid "" "can autogenerate peewee models using @code{pwiz}, a model generator." msgstr "" -#: gnu/packages/databases.scm:2584 +#: gnu/packages/databases.scm:2868 msgid "" "Pypika-tortoise is a fork of pypika which has been\n" "streamlined for its use in the context of tortoise-orm. It removes support\n" "for many database kinds that tortoise-orm doesn't need, for example." msgstr "" -#: gnu/packages/databases.scm:2604 +#: gnu/packages/databases.scm:2888 msgid "" "This package is a Sphinx extension providing additional\n" "coroutine-specific markup." msgstr "" -#: gnu/packages/databases.scm:2632 +#: gnu/packages/databases.scm:2916 msgid "" "@code{asyncpg} is a database interface library designed\n" "specifically for PostgreSQL and Python/asyncio. @code{asyncpg} is an\n" @@ -2707,14 +2801,14 @@ msgid "" "with Python's asyncio framework." msgstr "" -#: gnu/packages/databases.scm:2652 +#: gnu/packages/databases.scm:2936 msgid "" "@code{asyncmy} is a fast @code{asyncio} MySQL driver, which\n" "reuses most of @code{pymysql} and @code{aiomysql} but rewrites the core\n" "protocol with Cython for performance." msgstr "" -#: gnu/packages/databases.scm:2672 +#: gnu/packages/databases.scm:2956 msgid "" "@code{aiomysql} is a driver for accessing a MySQL database\n" "from the @code{asyncio} Python framework. It depends on and reuses most parts\n" @@ -2722,7 +2816,7 @@ msgid "" "@code{aiopg} library." msgstr "" -#: gnu/packages/databases.scm:2705 +#: gnu/packages/databases.scm:2989 msgid "" "Tortoise ORM is an easy-to-use asyncio ORM (Object\n" "Relational Mapper) inspired by Django. Tortoise ORM was built with relations\n" @@ -2731,7 +2825,7 @@ msgid "" "with relational data." msgstr "" -#: gnu/packages/databases.scm:2749 +#: gnu/packages/databases.scm:3033 msgid "" "SQLCipher is an implementation of SQLite, extended to\n" "provide transparent 256-bit AES encryption of database files. Pages are\n" @@ -2740,19 +2834,19 @@ msgid "" "development." msgstr "" -#: gnu/packages/databases.scm:2782 +#: gnu/packages/databases.scm:3066 msgid "" "@code{python-pyodbc-c} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2807 +#: gnu/packages/databases.scm:3091 msgid "" "@code{python-pyodbc} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2840 +#: gnu/packages/databases.scm:3124 msgid "" "MDB Tools is a set of tools and applications to read the\n" "proprietary MDB file format used in Microsoft's Access database package. This\n" @@ -2761,39 +2855,45 @@ msgid "" "etc., and an SQL engine for performing simple SQL queries." msgstr "" -#: gnu/packages/databases.scm:2886 +#: gnu/packages/databases.scm:3153 +#, fuzzy +#| msgid "This package provides an database interface for Perl." +msgid "This package provides a MongoDB driver for Go." +msgstr "Tiu ĉi pako provizas datumbazan interfacon por Perl." + +#: gnu/packages/databases.scm:3194 msgid "" "python-lmdb or py-lmdb is a Python binding for the @dfn{Lightning\n" "Memory-Mapped Database} (LMDB), a high-performance key-value store." msgstr "" -#: gnu/packages/databases.scm:2925 +#: gnu/packages/databases.scm:3233 msgid "" "Orator provides a simple ActiveRecord-like Object Relational Mapping\n" "implementation for Python." msgstr "" -#: gnu/packages/databases.scm:2963 +#: gnu/packages/databases.scm:3271 msgid "" "Virtuoso is a scalable cross-platform server that combines\n" "relational, graph, and document data management with web application server\n" "and web services platform functionality." msgstr "" -#: gnu/packages/databases.scm:2990 +#: gnu/packages/databases.scm:3298 msgid "" "Cassandra Cluster Manager is a development tool for testing\n" "local Cassandra clusters. It creates, launches and removes Cassandra clusters\n" "on localhost." msgstr "" -#: gnu/packages/databases.scm:3018 +#: gnu/packages/databases.scm:3326 msgid "" "Pysqlite provides SQLite bindings for Python that comply to the\n" "Database API 2.0T." msgstr "" -#: gnu/packages/databases.scm:3048 +#: gnu/packages/databases.scm:3356 msgid "" "SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that\n" "gives application developers the full power and flexibility of SQL. It\n" @@ -2802,14 +2902,14 @@ msgid "" "simple and Pythonic domain language." msgstr "" -#: gnu/packages/databases.scm:3086 +#: gnu/packages/databases.scm:3382 msgid "" "This package contains type stubs and a mypy plugin to\n" "provide more precise static types and type inference for SQLAlchemy\n" "framework." msgstr "" -#: gnu/packages/databases.scm:3118 +#: gnu/packages/databases.scm:3414 msgid "" "SQLAlchemy-utils provides various utility functions and custom data types\n" "for SQLAlchemy. SQLAlchemy is an SQL database abstraction library for Python.\n" @@ -2826,7 +2926,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/databases.scm:3165 +#: gnu/packages/databases.scm:3461 msgid "" "This package provides mock helpers for SQLAlchemy that makes it easy\n" "to mock an SQLAlchemy session while preserving the ability to do asserts.\n" @@ -2836,13 +2936,13 @@ msgid "" "this library provides functions to facilitate such comparisons." msgstr "" -#: gnu/packages/databases.scm:3196 +#: gnu/packages/databases.scm:3492 msgid "" "Alembic is a lightweight database migration tool for usage with the\n" "SQLAlchemy Database Toolkit for Python." msgstr "" -#: gnu/packages/databases.scm:3221 +#: gnu/packages/databases.scm:3517 msgid "" "PickleShare is a small ‘shelve’-like datastore with concurrency support.\n" "Like shelve, a PickleShareDB object acts like a normal dictionary. Unlike\n" @@ -2853,7 +2953,7 @@ msgid "" "PickleShare." msgstr "" -#: gnu/packages/databases.scm:3275 +#: gnu/packages/databases.scm:3571 msgid "" "APSW is a Python wrapper for the SQLite\n" "embedded relational database engine. In contrast to other wrappers such as\n" @@ -2861,21 +2961,21 @@ msgid "" "translate the complete SQLite API into Python." msgstr "" -#: gnu/packages/databases.scm:3312 +#: gnu/packages/databases.scm:3608 msgid "" "The package aiosqlite replicates the standard sqlite3 module, but with\n" "async versions of all the standard connection and cursor methods, and context\n" "managers for automatically closing connections." msgstr "" -#: gnu/packages/databases.scm:3333 +#: gnu/packages/databases.scm:3629 msgid "" "This package provides the Neo4j Python driver that connects\n" "to the database using Neo4j's binary protocol. It aims to be minimal, while\n" "being idiomatic to Python." msgstr "" -#: gnu/packages/databases.scm:3353 +#: gnu/packages/databases.scm:3649 msgid "" "This package provides a client library and toolkit for\n" "working with Neo4j from within Python applications and from the command\n" @@ -2883,26 +2983,38 @@ msgid "" "designed to be easy and intuitive to use." msgstr "" -#: gnu/packages/databases.scm:3379 +#: gnu/packages/databases.scm:3675 msgid "" "psycopg2 is a thread-safe PostgreSQL adapter that implements DB-API\n" "2.0." msgstr "" -#: gnu/packages/databases.scm:3413 +#: gnu/packages/databases.scm:3702 +msgid "" +"This module provides connection pool implementations that can be used\n" +"with the @code{psycopg} PostgreSQL driver." +msgstr "" + +#: gnu/packages/databases.scm:3776 +msgid "" +"Psycopg 3 is a new implementation of the popular @code{psycopg2}\n" +"database adapter for Python." +msgstr "" + +#: gnu/packages/databases.scm:3810 msgid "" "This package provides a program to build Entity\n" "Relationship diagrams from a SQLAlchemy model (or directly from the\n" "database)." msgstr "" -#: gnu/packages/databases.scm:3443 +#: gnu/packages/databases.scm:3840 msgid "" "Yoyo is a database schema migration tool. Migrations are written as SQL\n" "files or Python scripts that define a list of migration steps." msgstr "" -#: gnu/packages/databases.scm:3464 +#: gnu/packages/databases.scm:3861 msgid "" "MySQLdb is an interface to the popular MySQL database server\n" "for Python. The design goals are:\n" @@ -2913,13 +3025,13 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/databases.scm:3490 +#: gnu/packages/databases.scm:3887 msgid "" "Python-hiredis is a python extension that wraps protocol\n" "parsing code in hiredis. It primarily speeds up parsing of multi bulk replies." msgstr "" -#: gnu/packages/databases.scm:3517 +#: gnu/packages/databases.scm:3914 msgid "" "Fakeredis is a pure-Python implementation of the redis-py Python client\n" "that simulates talking to a redis server. It was created for a single purpose:\n" @@ -2930,50 +3042,50 @@ msgid "" "reasonable substitute." msgstr "" -#: gnu/packages/databases.scm:3545 +#: gnu/packages/databases.scm:3942 #, fuzzy msgid "This package provides a Python interface to the Redis key-value store." msgstr "Tiu ĉi pako provizas datumbazan interfacon por Perl." -#: gnu/packages/databases.scm:3586 +#: gnu/packages/databases.scm:3983 msgid "" "RQ (Redis Queue) is a simple Python library for queueing jobs and\n" "processing them in the background with workers. It is backed by Redis and it\n" "is designed to have a low barrier to entry." msgstr "" -#: gnu/packages/databases.scm:3623 +#: gnu/packages/databases.scm:4020 msgid "" "This package provides job scheduling capabilities to @code{python-rq}\n" "(Redis Queue)." msgstr "" -#: gnu/packages/databases.scm:3643 +#: gnu/packages/databases.scm:4040 msgid "" "@code{trollius-redis} is a Redis client for Python\n" " trollius. It is an asynchronous IO (PEP 3156) implementation of the\n" " Redis protocol." msgstr "" -#: gnu/packages/databases.scm:3686 +#: gnu/packages/databases.scm:4083 msgid "" "Sqlparse is a non-validating SQL parser for Python. It\n" "provides support for parsing, splitting and formatting SQL statements." msgstr "" -#: gnu/packages/databases.scm:3703 +#: gnu/packages/databases.scm:4101 msgid "" "@code{python-sql} is a library to write SQL queries, that\n" "transforms idiomatic python function calls to well-formed SQL queries." msgstr "" -#: gnu/packages/databases.scm:3726 +#: gnu/packages/databases.scm:4124 msgid "" "PyPika is a python SQL query builder that exposes the full richness of\n" "the SQL language using a syntax that reflects the resulting query." msgstr "" -#: gnu/packages/databases.scm:3852 +#: gnu/packages/databases.scm:4250 msgid "" "Apache Arrow is a columnar in-memory analytics layer\n" "designed to accelerate big data. It houses a set of canonical in-memory\n" @@ -2982,21 +3094,21 @@ msgid "" "algorithm implementations." msgstr "" -#: gnu/packages/databases.scm:3912 +#: gnu/packages/databases.scm:4310 msgid "" "This library provides a Pythonic API wrapper for the reference Arrow C++\n" "implementation, along with tools for interoperability with pandas, NumPy, and\n" "other traditional Python scientific computing packages." msgstr "" -#: gnu/packages/databases.scm:3933 +#: gnu/packages/databases.scm:4331 msgid "" "This package provides a Python client library for CrateDB.\n" "It implements the Python DB API 2.0 specification and includes support for\n" "SQLAlchemy." msgstr "" -#: gnu/packages/databases.scm:3952 +#: gnu/packages/databases.scm:4350 msgid "" "This library implements a database independent abstraction layer in C,\n" "similar to the DBI/DBD layer in Perl. Writing one generic set of code,\n" @@ -3004,7 +3116,7 @@ msgid "" "simultaneous database connections by using this framework." msgstr "" -#: gnu/packages/databases.scm:4018 +#: gnu/packages/databases.scm:4416 msgid "" "The @code{libdbi-drivers} library provides the database specific drivers\n" "for the @code{libdbi} framework.\n" @@ -3017,26 +3129,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:4060 +#: gnu/packages/databases.scm:4458 msgid "" "SOCI is an abstraction layer for several database backends, including\n" "PostreSQL, SQLite, ODBC and MySQL." msgstr "" -#: gnu/packages/databases.scm:4084 +#: gnu/packages/databases.scm:4482 msgid "" "FreeTDS is an implementation of the Tabular DataStream protocol, used for\n" "connecting to MS SQL and Sybase servers over TCP/IP." msgstr "" -#: gnu/packages/databases.scm:4106 +#: gnu/packages/databases.scm:4504 msgid "" "TinyDB is a small document oriented database written in pure Python\n" "with no external dependencies. The targets are small apps that would\n" "be blown away by a SQL-DB or an external database server." msgstr "" -#: gnu/packages/databases.scm:4154 +#: gnu/packages/databases.scm:4552 msgid "" "Sequeler is a native Linux SQL client built in Vala and\n" "Gtk. It allows you to connect to your local and remote databases, write SQL in\n" @@ -3044,7 +3156,13 @@ msgid "" "a Gtk.Grid Widget." msgstr "" -#: gnu/packages/debug.scm:111 +#: gnu/packages/databases.scm:4594 +msgid "" +"Sqlitebrowser is a high quaility, visual, open source tool to\n" +"create design, and edit database file compatible with SQLite." +msgstr "" + +#: gnu/packages/debug.scm:112 msgid "" "Delta assists you in minimizing \"interesting\" files subject to a test\n" "of their interestingness. A common such situation is when attempting to\n" @@ -3052,7 +3170,7 @@ msgid "" "program to exhibit a bug." msgstr "" -#: gnu/packages/debug.scm:172 +#: gnu/packages/debug.scm:173 msgid "" "C-Reduce is a tool that takes a large C or C++ program that has a\n" "property of interest (such as triggering a compiler bug) and automatically\n" @@ -3061,14 +3179,14 @@ msgid "" "tools that process C/C++ code." msgstr "" -#: gnu/packages/debug.scm:219 +#: gnu/packages/debug.scm:220 msgid "" "C-Vise is a Python port of the C-Reduce tool that is fully compatible\n" "and uses the same efficient LLVM-based C/C++ @code{clang_delta} reduction\n" "tool." msgstr "" -#: gnu/packages/debug.scm:289 +#: gnu/packages/debug.scm:290 msgid "" "American fuzzy lop is a security-oriented fuzzer that employs a novel\n" "type of compile-time instrumentation and genetic algorithms to automatically\n" @@ -3079,7 +3197,7 @@ msgid "" "down the road." msgstr "" -#: gnu/packages/debug.scm:433 +#: gnu/packages/debug.scm:434 msgid "" "QEMU is a generic machine emulator and virtualizer. This package\n" "of QEMU is used only by the american fuzzy lop package.\n" @@ -3095,7 +3213,7 @@ msgid "" "server and embedded PowerPC, and S390 guests." msgstr "" -#: gnu/packages/debug.scm:501 +#: gnu/packages/debug.scm:502 msgid "" "Stress Make is a customized GNU Make that explicitly manages the order\n" "in which concurrent jobs are run to provoke erroneous behavior into becoming\n" @@ -3105,14 +3223,14 @@ msgid "" "conditions." msgstr "" -#: gnu/packages/debug.scm:529 +#: gnu/packages/debug.scm:530 msgid "" "Zzuf is a transparent application input fuzzer. It works by\n" "intercepting file operations and changing random bits in the program's\n" "input. Zzuf's behaviour is deterministic, making it easy to reproduce bugs." msgstr "" -#: gnu/packages/debug.scm:581 +#: gnu/packages/debug.scm:582 msgid "" "Scanmem is a debugging utility designed to isolate the\n" "address of an arbitrary variable in an executing process. Scanmem simply\n" @@ -3121,13 +3239,13 @@ msgid "" "the position of the variable and allows you to modify its value." msgstr "" -#: gnu/packages/debug.scm:611 +#: gnu/packages/debug.scm:612 msgid "" "Remake is an enhanced version of GNU Make that adds improved\n" "error reporting, better tracing, profiling, and a debugger." msgstr "" -#: gnu/packages/debug.scm:667 +#: gnu/packages/debug.scm:668 msgid "" "rr is a lightweight tool for recording, replaying and debugging\n" "execution of applications (trees of processes and threads). Debugging extends\n" @@ -3136,13 +3254,13 @@ msgid "" "fun." msgstr "" -#: gnu/packages/debug.scm:695 +#: gnu/packages/debug.scm:696 msgid "" "The @code{libbacktrace} library can be linked into a C/C++\n" "program to produce symbolic backtraces." msgstr "" -#: gnu/packages/debug.scm:735 +#: gnu/packages/debug.scm:736 msgid "" "The libleak tool detects memory leaks by hooking memory\n" "functions such as @code{malloc}. It comes as a shared object to be pre-loaded\n" @@ -3154,7 +3272,7 @@ msgid "" "use than similar tools like @command{mtrace}." msgstr "" -#: gnu/packages/debug.scm:763 +#: gnu/packages/debug.scm:764 msgid "" "@code{cgdb} is a lightweight curses (terminal-based) interface to the\n" "GNU Debugger (GDB). In addition to the standard gdb console, cgdb provides\n" @@ -3163,7 +3281,7 @@ msgid "" "using cgdb." msgstr "" -#: gnu/packages/debug.scm:798 +#: gnu/packages/debug.scm:799 msgid "" "MspDebug supports FET430UIF, eZ430, RF2500 and Olimex\n" "MSP430-JTAG-TINY programmers, as well as many other compatible\n" @@ -3179,14 +3297,14 @@ msgid "" "multiple test suites, which are then all managed by a single harness." msgstr "" -#: gnu/packages/games.scm:287 +#: gnu/packages/games.scm:288 msgid "" "Abe's Amazing Adventure is a scrolling,\n" "platform-jumping, key-collecting, ancient pyramid exploring game, vaguely in\n" "the style of similar games for the Commodore+4." msgstr "" -#: gnu/packages/games.scm:357 +#: gnu/packages/games.scm:358 msgid "" "Adanaxis is a fast-moving first person shooter set in deep space, where\n" "the fundamentals of space itself are changed. By adding another dimension to\n" @@ -3197,7 +3315,7 @@ msgid "" "mouse and joystick control, and original music." msgstr "" -#: gnu/packages/games.scm:401 +#: gnu/packages/games.scm:402 msgid "" "Guide Alex the Allegator through the jungle in order to save his\n" "girlfriend Lola from evil humans who want to make a pair of shoes out of her.\n" @@ -3206,7 +3324,7 @@ msgid "" "The game includes a built-in editor so you can design and share your own maps." msgstr "" -#: gnu/packages/games.scm:431 +#: gnu/packages/games.scm:432 msgid "" "Armagetron Advanced is a multiplayer game in 3d that\n" "attempts to emulate and expand on the lightcycle sequence from the movie Tron.\n" @@ -3216,7 +3334,7 @@ msgid "" "physics settings to tweak as well." msgstr "" -#: gnu/packages/games.scm:489 +#: gnu/packages/games.scm:490 msgid "" "Space is a vast area, an unbounded territory where it seems there is\n" "a room for everybody, but reversal of fortune put things differently. The\n" @@ -3228,7 +3346,7 @@ msgid "" "regret their insolence." msgstr "" -#: gnu/packages/games.scm:556 +#: gnu/packages/games.scm:557 msgid "" "Bastet (short for Bastard Tetris) is a simple ncurses-based falling brick\n" "game. Unlike normal Tetris, Bastet does not choose the next brick at random.\n" @@ -3238,19 +3356,19 @@ msgid "" "canyons and wait for the long I-shaped block to clear four rows at a time." msgstr "" -#: gnu/packages/games.scm:601 +#: gnu/packages/games.scm:602 msgid "" "Tetrinet is a multiplayer Tetris-like game with powerups and\n" "attacks you can use on opponents." msgstr "" -#: gnu/packages/games.scm:635 +#: gnu/packages/games.scm:636 msgid "" "Vitetris is a classic multiplayer Tetris clone for the\n" "terminal." msgstr "" -#: gnu/packages/games.scm:678 +#: gnu/packages/games.scm:679 msgid "" "Blobwars: Metal Blob Solid is a 2D platform game, the first\n" "in the Blobwars series. You take on the role of a fearless Blob agent. Your\n" @@ -3258,7 +3376,7 @@ msgid "" "possible, while battling many vicious aliens." msgstr "" -#: gnu/packages/games.scm:771 +#: gnu/packages/games.scm:772 msgid "" "These are the BSD games. See the fortune-mod package for fortunes.\n" "\n" @@ -3291,7 +3409,7 @@ msgid "" "Quizzes: arithmetic and quiz." msgstr "" -#: gnu/packages/games.scm:866 +#: gnu/packages/games.scm:867 msgid "" "BZFlag is a 3D multi-player multiplatform tank battle game that\n" "allows users to play against each other in a network environment.\n" @@ -3311,7 +3429,7 @@ msgid "" "high a score as possible." msgstr "" -#: gnu/packages/games.scm:949 +#: gnu/packages/games.scm:950 msgid "" "Cataclysm: Dark Days Ahead (or \"DDA\" for short) is a roguelike set\n" "in a post-apocalyptic world. Struggle to survive in a harsh, persistent,\n" @@ -3323,7 +3441,7 @@ msgid "" "want what you have." msgstr "" -#: gnu/packages/games.scm:998 +#: gnu/packages/games.scm:999 msgid "" "Cockatrice is a program for playing tabletop card games\n" "over a network. Its server design prevents users from manipulating the game\n" @@ -3331,7 +3449,7 @@ msgid "" "allows users to brew while offline." msgstr "" -#: gnu/packages/games.scm:1052 +#: gnu/packages/games.scm:1053 msgid "" "This package provides a reimplementation of the 1997 Bullfrog business\n" "simulation game @i{Theme Hospital}. As well as faithfully recreating the\n" @@ -3339,7 +3457,7 @@ msgid "" "more. This package does @emph{not} provide the game assets." msgstr "" -#: gnu/packages/games.scm:1094 +#: gnu/packages/games.scm:1095 msgid "" "Cowsay is basically a text filter. Send some text into it,\n" "and you get a cow saying your text. If you think a talking cow isn't enough,\n" @@ -3347,21 +3465,21 @@ msgid "" "tired of cows, a variety of other ASCII-art messengers are available." msgstr "" -#: gnu/packages/games.scm:1135 +#: gnu/packages/games.scm:1136 msgid "" "@command{lolcat} concatenates files and streams like\n" "regular @command{cat}, but it also adds terminal escape codes between\n" "characters and lines resulting in a rainbow effect." msgstr "" -#: gnu/packages/games.scm:1164 +#: gnu/packages/games.scm:1165 #, scheme-format msgid "" "This package provides the Fallout 2 game engine. Game data\n" "should be placed in @file{~/.local/share/falltergeist}." msgstr "" -#: gnu/packages/games.scm:1275 +#: gnu/packages/games.scm:1276 msgid "" "FooBillard++ is an advanced 3D OpenGL billiard game\n" "based on the original foobillard 3.0a sources from Florian Berger.\n" @@ -3383,7 +3501,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:1342 +#: gnu/packages/games.scm:1343 msgid "" "The Freedoom project aims to create a complete free content first person\n" "shooter game. Freedoom by itself is just the raw material for a game: it must\n" @@ -3392,7 +3510,7 @@ msgid "" "effects and music to make a completely free game." msgstr "" -#: gnu/packages/games.scm:1392 +#: gnu/packages/games.scm:1394 msgid "" "Freedroid RPG is an @dfn{RPG} (Role-Playing Game) with isometric graphics.\n" "The game tells the story of a world destroyed by a conflict between robots and\n" @@ -3402,7 +3520,7 @@ msgid "" "real-time combat." msgstr "" -#: gnu/packages/games.scm:1471 +#: gnu/packages/games.scm:1473 msgid "" "Golly simulates Conway's Game of Life and many other types of cellular\n" "automata. The following features are available:\n" @@ -3423,14 +3541,14 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:1527 +#: gnu/packages/games.scm:1529 #, fuzzy msgid "" "This package provides a userspace daemon for the Nintendo\n" "Joy-Con controllers." msgstr "Tiu ĉi pako provizas vortaron por la literumilo GNU Aspell." -#: gnu/packages/games.scm:1557 +#: gnu/packages/games.scm:1559 msgid "" "Engine for Caesar III, a city-building real-time strategy game.\n" "Julius includes some UI enhancements while preserving the logic (including\n" @@ -3438,7 +3556,7 @@ msgid "" "does not include game data." msgstr "" -#: gnu/packages/games.scm:1591 +#: gnu/packages/games.scm:1593 msgid "" "Fork of Julius, an engine for the a city-building real-time strategy\n" "game Caesar III. Gameplay enhancements include:\n" @@ -3453,7 +3571,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/games.scm:1630 +#: gnu/packages/games.scm:1632 msgid "" "Me and My Shadow is a puzzle/platform game in which you try\n" "to reach the exit by solving puzzles. Spikes, moving blocks, fragile blocks\n" @@ -3461,7 +3579,7 @@ msgid "" "shadow mimic them to reach blocks you couldn't reach alone." msgstr "" -#: gnu/packages/games.scm:1686 +#: gnu/packages/games.scm:1688 msgid "" "@code{Open Surge} is a 2D retro side-scrolling platformer\n" "inspired by the Sonic games. The player runs at high speeds through each\n" @@ -3469,7 +3587,7 @@ msgid "" "built-in level editor." msgstr "" -#: gnu/packages/games.scm:1732 +#: gnu/packages/games.scm:1734 msgid "" "Knights is a multiplayer game involving several knights who\n" "must run around a dungeon and complete various quests. Each game revolves\n" @@ -3481,7 +3599,7 @@ msgid "" "destroying an ancient book using a special wand." msgstr "" -#: gnu/packages/games.scm:1780 +#: gnu/packages/games.scm:1781 msgid "" "GNOME 2048 provides a 2D grid for playing 2048, a\n" "single-player sliding tile puzzle game. The objective of the game is to merge\n" @@ -3489,7 +3607,7 @@ msgid "" "in one tile." msgstr "" -#: gnu/packages/games.scm:1819 +#: gnu/packages/games.scm:1820 msgid "" "GNOME Chess provides a 2D board for playing chess games\n" "against human or computer players. It supports loading and saving games in\n" @@ -3497,7 +3615,7 @@ msgid "" "such as chess or stockfish." msgstr "" -#: gnu/packages/games.scm:1880 +#: gnu/packages/games.scm:1881 msgid "" "The GNU backgammon application (also known as \"gnubg\") can\n" "be used for playing, analyzing and teaching the game. It has an advanced\n" @@ -3506,7 +3624,7 @@ msgid "" "also features an attractive, 3D representation of the playing board." msgstr "" -#: gnu/packages/games.scm:1921 +#: gnu/packages/games.scm:1922 msgid "" "GNUbik is a puzzle game in which you must manipulate a cube to make\n" "each of its faces have a uniform color. The game is customizable, allowing\n" @@ -3515,13 +3633,13 @@ msgid "" "scriptable with Guile." msgstr "" -#: gnu/packages/games.scm:1944 +#: gnu/packages/games.scm:1945 msgid "" "GNU Shogi is a program that plays the game Shogi (Japanese\n" "Chess). It is similar to standard chess but this variant is far more complicated." msgstr "" -#: gnu/packages/games.scm:1974 +#: gnu/packages/games.scm:1975 msgid "" "LTris is a tetris clone: differently shaped blocks are falling down the\n" "rectangular playing field and can be moved sideways or rotated by 90 degree\n" @@ -3535,7 +3653,7 @@ msgid "" "watch your CPU playing while enjoying a cup of tea!" msgstr "" -#: gnu/packages/games.scm:2097 +#: gnu/packages/games.scm:2098 msgid "" "NetHack is a single player dungeon exploration game that runs\n" "on a wide variety of computer systems, with a variety of graphical and text\n" @@ -3549,7 +3667,7 @@ msgid "" "role, and your gender." msgstr "" -#: gnu/packages/games.scm:2141 +#: gnu/packages/games.scm:2142 msgid "" "PipeWalker is a simple puzzle game with many diffent themes: connect all\n" "computers to one network server, bring water from a source to the taps, etc.\n" @@ -3558,17 +3676,17 @@ msgid "" "Every puzzle has a complete solution, although there may be more than one." msgstr "" -#: gnu/packages/games.scm:2190 +#: gnu/packages/games.scm:2191 msgid "PrBoom+ is a Doom source port developed from the original PrBoom project." msgstr "" -#: gnu/packages/games.scm:2240 +#: gnu/packages/games.scm:2241 msgid "" "ReTux is an action platformer loosely inspired by the Mario games,\n" "utilizing the art assets from the @code{SuperTux} project." msgstr "" -#: gnu/packages/games.scm:2350 +#: gnu/packages/games.scm:2351 msgid "" "RogueBox Adventures is a graphical roguelike with strong influences\n" "from sandbox games like Minecraft or Terraria. The main idea of RogueBox\n" @@ -3576,7 +3694,7 @@ msgid "" "can be explored and changed freely." msgstr "" -#: gnu/packages/games.scm:2462 +#: gnu/packages/games.scm:2463 msgid "" "Barbie Seahorse Adventures is a retro style platform arcade game.\n" "You are Barbie the seahorse who travels through the jungle, up to the\n" @@ -3586,27 +3704,27 @@ msgid "" "and defeat them with your bubbles!" msgstr "" -#: gnu/packages/games.scm:2522 +#: gnu/packages/games.scm:2523 msgid "" "Solarus is a 2D game engine written in C++, that can run games\n" "scripted in Lua. It has been designed with 16-bit classic Action-RPGs\n" "in mind." msgstr "" -#: gnu/packages/games.scm:2551 +#: gnu/packages/games.scm:2552 msgid "" "Solarus Quest Editor is a graphical user interface to create and\n" "modify quests for the Solarus engine." msgstr "" -#: gnu/packages/games.scm:2627 +#: gnu/packages/games.scm:2628 msgid "" "In SuperStarfighter, up to four local players compete in a\n" "2D arena with fast-moving ships and missiles. Different game types are\n" "available, as well as a single-player mode with AI-controlled ships." msgstr "" -#: gnu/packages/games.scm:2760 +#: gnu/packages/games.scm:2761 msgid "" "Trigger-rally is a 3D rally simulation with great physics\n" "for drifting on over 200 maps. Different terrain materials like dirt,\n" @@ -3618,18 +3736,18 @@ msgid "" "equipped with spoken co-driver notes and co-driver icons." msgstr "" -#: gnu/packages/games.scm:2816 +#: gnu/packages/games.scm:2817 msgid "" "This package provides @command{ufo2map}, a program used to generate\n" "maps for the UFO: Alien Invasion strategy game." msgstr "" -#: gnu/packages/games.scm:2858 +#: gnu/packages/games.scm:2859 #, fuzzy msgid "This package contains maps and other assets for UFO: Alien Invasion." msgstr "Tiu ĉi pako enhavas ludan datumaron por GNU Freedink." -#: gnu/packages/games.scm:2945 +#: gnu/packages/games.scm:2946 msgid "" "UFO: Alien Invasion is a tactical strategy game set in the year 2084.\n" "You control a secret organisation charged with defending Earth from a brutal\n" @@ -3647,12 +3765,12 @@ msgid "" "properly." msgstr "" -#: gnu/packages/games.scm:2982 +#: gnu/packages/games.scm:2983 #, fuzzy msgid "A graphical user interface for the package @code{gnushogi}." msgstr "Grafikinterfacon por ŝak-programarojn" -#: gnu/packages/games.scm:3035 +#: gnu/packages/games.scm:3036 msgid "" "L'Abbaye des Morts is a 2D platform game set in 13th century\n" "France. The Cathars, who preach about good Christian beliefs, were being\n" @@ -3661,14 +3779,14 @@ msgid "" "that beneath its ruins lay buried an ancient evil." msgstr "" -#: gnu/packages/games.scm:3081 +#: gnu/packages/games.scm:3082 msgid "" "Angband is a Classic dungeon exploration roguelike. Explore\n" "the depths below Angband, seeking riches, fighting monsters, and preparing to\n" "fight Morgoth, the Lord of Darkness." msgstr "" -#: gnu/packages/games.scm:3129 +#: gnu/packages/games.scm:3130 msgid "" "Pingus is a free Lemmings-like puzzle game in which the player takes\n" "command of a bunch of small animals and has to guide them through levels.\n" @@ -3678,21 +3796,21 @@ msgid "" "level's exit. The game is presented in a 2D side view." msgstr "" -#: gnu/packages/games.scm:3152 +#: gnu/packages/games.scm:3153 msgid "" "The GNU Talk Filters are programs that convert English text\n" "into stereotyped or otherwise humorous dialects. The filters are provided as\n" "a C library, so they can easily be integrated into other programs." msgstr "" -#: gnu/packages/games.scm:3196 +#: gnu/packages/games.scm:3197 msgid "" "The player controls a character (one of three: Good, Bad, and Dead),\n" "dodges the missiles (lots of it cover the screen, but the character's hitbox\n" "is very small), and shoot at the adversaries that keep appear on the screen." msgstr "" -#: gnu/packages/games.scm:3239 +#: gnu/packages/games.scm:3240 msgid "" "CMatrix simulates the display from \"The Matrix\" and is\n" "based on the screensaver from the movie's website. It works with terminal\n" @@ -3700,14 +3818,14 @@ msgid "" "asynchronously and at a user-defined speed." msgstr "" -#: gnu/packages/games.scm:3270 +#: gnu/packages/games.scm:3271 msgid "" "GNU Chess is a chess engine. It allows you to compete\n" "against the computer in a game of chess, either through the default terminal\n" "interface or via an external visual interface such as GNU XBoard." msgstr "" -#: gnu/packages/games.scm:3332 +#: gnu/packages/games.scm:3333 msgid "" "GNU FreeDink is a free and portable re-implementation of the engine\n" "for the role-playing game Dink Smallwood. It supports not only the original\n" @@ -3715,17 +3833,17 @@ msgid "" "To that extent, it also includes a front-end for managing all of your D-Mods." msgstr "" -#: gnu/packages/games.scm:3360 +#: gnu/packages/games.scm:3361 msgid "This package contains the game data of GNU Freedink." msgstr "Tiu ĉi pako enhavas ludan datumaron por GNU Freedink." -#: gnu/packages/games.scm:3383 +#: gnu/packages/games.scm:3384 msgid "" "DFArc makes it easy to play and manage the GNU FreeDink game\n" "and its numerous D-Mods." msgstr "" -#: gnu/packages/games.scm:3453 +#: gnu/packages/games.scm:3454 msgid "" "GNU XBoard is a graphical board for all varieties of chess,\n" "including international chess, xiangqi (Chinese chess), shogi (Japanese chess)\n" @@ -3734,7 +3852,7 @@ msgid "" "Portable Game Notation." msgstr "" -#: gnu/packages/games.scm:3488 +#: gnu/packages/games.scm:3489 msgid "" "GNU Typist is a universal typing tutor. It can be used to learn and\n" "practice touch-typing. Several tutorials are included; in addition to\n" @@ -3743,7 +3861,7 @@ msgid "" "are primarily in English, however some in other languages are provided." msgstr "" -#: gnu/packages/games.scm:3560 +#: gnu/packages/games.scm:3561 msgid "" "The Irrlicht Engine is a high performance realtime 3D engine written in\n" "C++. Features include an OpenGL renderer, extensible materials, scene graph\n" @@ -3751,7 +3869,7 @@ msgid "" "for common mesh file formats, and collision detection." msgstr "" -#: gnu/packages/games.scm:3611 +#: gnu/packages/games.scm:3612 msgid "" "M.A.R.S. is a 2D space shooter with pretty visual effects and\n" "attractive physics. Players can battle each other or computer controlled\n" @@ -3759,7 +3877,7 @@ msgid "" "match, cannon keep, and grave-itation pit." msgstr "" -#: gnu/packages/games.scm:3650 +#: gnu/packages/games.scm:3651 msgid "" "Glk defines a portable API for applications with text UIs. It was\n" "primarily designed for interactive fiction, but it should be suitable for many\n" @@ -3768,7 +3886,7 @@ msgid "" "using the @code{curses.h} library for screen control." msgstr "" -#: gnu/packages/games.scm:3690 +#: gnu/packages/games.scm:3691 msgid "" "Glulx is a 32-bit portable virtual machine intended for writing and\n" "playing interactive fiction. It was designed by Andrew Plotkin to relieve\n" @@ -3776,28 +3894,28 @@ msgid "" "reference interpreter, using the Glk API." msgstr "" -#: gnu/packages/games.scm:3716 +#: gnu/packages/games.scm:3717 msgid "" "Fifechan is a lightweight cross platform GUI library written in C++\n" "specifically designed for games. It has a built in set of extendable GUI\n" "Widgets, and allows users to create more." msgstr "" -#: gnu/packages/games.scm:3791 +#: gnu/packages/games.scm:3792 msgid "" "@acronym{FIFE, Flexible Isometric Free Engine} is a multi-platform\n" "isometric game engine. Python bindings are included allowing users to create\n" "games using Python as well as C++." msgstr "" -#: gnu/packages/games.scm:3826 +#: gnu/packages/games.scm:3827 msgid "" "Fizmo is a console-based Z-machine interpreter. It is used to play\n" "interactive fiction, also known as text adventures, which were implemented\n" "either by Infocom or created using the Inform compiler." msgstr "" -#: gnu/packages/games.scm:3849 +#: gnu/packages/games.scm:3850 msgid "" "GNU Go is a program that plays the game of Go, in which players\n" "place stones on a grid to form territory or capture other stones. While\n" @@ -3808,7 +3926,7 @@ msgid "" "Protocol)." msgstr "" -#: gnu/packages/games.scm:3878 +#: gnu/packages/games.scm:3879 msgid "" "Extreme Tux Racer, or etracer as it is called for short, is\n" "a simple OpenGL racing game featuring Tux, the Linux mascot. The goal of the\n" @@ -3821,7 +3939,7 @@ msgid "" "This game is based on the GPL version of the famous game TuxRacer." msgstr "" -#: gnu/packages/games.scm:3952 +#: gnu/packages/games.scm:3953 msgid "" "SuperTuxKart is a 3D kart racing game, with a focus on\n" "having fun over realism. You can play with up to 4 friends on one PC, racing\n" @@ -3829,7 +3947,7 @@ msgid "" "also available." msgstr "" -#: gnu/packages/games.scm:4028 +#: gnu/packages/games.scm:4029 msgid "" "Unknown Horizons is a 2D realtime strategy simulation with an emphasis\n" "on economy and city building. Expand your small settlement to a strong and\n" @@ -3838,7 +3956,7 @@ msgid "" "trade and diplomacy." msgstr "" -#: gnu/packages/games.scm:4081 +#: gnu/packages/games.scm:4082 msgid "" "GNUjump is a simple, yet addictive game in which you must jump from\n" "platform to platform to avoid falling, while the platforms drop at faster rates\n" @@ -3846,7 +3964,7 @@ msgid "" "falling, themeable graphics and sounds, and replays." msgstr "" -#: gnu/packages/games.scm:4117 +#: gnu/packages/games.scm:4118 msgid "" "The Battle for Wesnoth is a fantasy, turn based tactical strategy game,\n" "with several single player campaigns, and multiplayer games (both networked and\n" @@ -3858,20 +3976,20 @@ msgid "" "next campaign." msgstr "" -#: gnu/packages/games.scm:4137 +#: gnu/packages/games.scm:4138 msgid "" "This package contains a dedicated server for @emph{The\n" "Battle for Wesnoth}." msgstr "" -#: gnu/packages/games.scm:4179 +#: gnu/packages/games.scm:4180 msgid "" "Gamine is a game designed for young children who are learning to use the\n" "mouse and keyboard. The child uses the mouse to draw colored dots and lines\n" "on the screen and keyboard to display letters." msgstr "" -#: gnu/packages/games.scm:4211 +#: gnu/packages/games.scm:4212 msgid "" "ManaPlus is a 2D MMORPG client for game servers. It is the only\n" "fully supported client for @uref{http://www.themanaworld.org, The mana\n" @@ -3879,7 +3997,7 @@ msgid "" "@uref{http://landoffire.org, Land of fire}." msgstr "" -#: gnu/packages/games.scm:4243 +#: gnu/packages/games.scm:4244 msgid "" "OpenTTD is a game in which you transport goods and\n" "passengers by land, water and air. It is a re-implementation of Transport\n" @@ -3889,7 +4007,7 @@ msgid "" "engine. When you start it you will be prompted to download a graphics set." msgstr "" -#: gnu/packages/games.scm:4303 +#: gnu/packages/games.scm:4304 msgid "" "The OpenGFX project is an implementation of the OpenTTD base graphics\n" "set that aims to ensure the best possible out-of-the-box experience.\n" @@ -3904,29 +4022,29 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:4361 +#: gnu/packages/games.scm:4362 msgid "" "OpenSFX is a set of free base sounds for OpenTTD which make\n" "it possible to play OpenTTD without requiring the proprietary sound files from\n" "the original Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4404 +#: gnu/packages/games.scm:4405 msgid "" "OpenMSX is a music set for OpenTTD which makes it possible\n" "to play OpenTTD without requiring the proprietary music from the original\n" "Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4473 +#: gnu/packages/games.scm:4474 msgid "openrct2-title-sequences is a set of title sequences for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4513 +#: gnu/packages/games.scm:4514 msgid "openrct2-objects is a set of objects for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4576 +#: gnu/packages/games.scm:4577 msgid "" "OpenRCT2 is a free software re-implementation of\n" "RollerCoaster Tycoon 2 (RCT2). The gameplay revolves around building and\n" @@ -3936,27 +4054,27 @@ msgid "" "images, etc.)" msgstr "" -#: gnu/packages/games.scm:4630 +#: gnu/packages/games.scm:4631 msgid "" "The Emilia Pinball Project is a pinball simulator. There\n" "are only two levels to play with, but they are very addictive." msgstr "" -#: gnu/packages/games.scm:4659 +#: gnu/packages/games.scm:4660 msgid "" "Pioneers is an emulation of the board game The Settlers of\n" "Catan. It can be played on a local network, on the internet, and with AI\n" "players." msgstr "" -#: gnu/packages/games.scm:4701 +#: gnu/packages/games.scm:4702 msgid "" "The goal of this logic game is to open all cards in a 6x6\n" "grid, using a number of hints as to their relative position. The game idea\n" "is attributed to Albert Einstein." msgstr "" -#: gnu/packages/games.scm:4731 +#: gnu/packages/games.scm:4732 msgid "" "POWWOW is a client software which can be used for telnet as well as for\n" "@dfn{Multi-User Dungeon} (MUD). Additionally it can serve as a nice client for\n" @@ -3964,21 +4082,21 @@ msgid "" "http://lavachat.symlynx.com/unix/" msgstr "" -#: gnu/packages/games.scm:4838 +#: gnu/packages/games.scm:4839 msgid "" "Red Eclipse is an arena shooter, created from the Cube2 engine.\n" "Offering an innovative parkour system and distinct but all potent weapons,\n" "Red Eclipse provides fast paced and accessible gameplay." msgstr "" -#: gnu/packages/games.scm:4903 +#: gnu/packages/games.scm:4904 msgid "" "Grue Hunter is a text adventure game written in Perl. You must make\n" "your way through an underground cave system in search of the Grue. Can you\n" "capture it and get out alive?" msgstr "" -#: gnu/packages/games.scm:4942 +#: gnu/packages/games.scm:4943 msgid "" "lierolibre is an earthworm action game where you fight another player\n" "(or the computer) underground using a wide array of weapons.\n" @@ -4003,14 +4121,14 @@ msgid "" "fullscreen, use F5 or Alt+Enter." msgstr "" -#: gnu/packages/games.scm:5021 +#: gnu/packages/games.scm:5022 msgid "" "Tennix is a 2D tennis game. You can play against the\n" "computer or against another player using the keyboard. The game runs\n" "in-window at 640x480 resolution or fullscreen." msgstr "" -#: gnu/packages/games.scm:5105 +#: gnu/packages/games.scm:5106 msgid "" "Warzone 2100 offers campaign, multi-player, and single-player skirmish\n" "modes. An extensive tech tree with over 400 different technologies, combined\n" @@ -4018,7 +4136,7 @@ msgid "" "tactics." msgstr "" -#: gnu/packages/games.scm:5184 +#: gnu/packages/games.scm:5185 msgid "" "In Widelands, you are the regent of a small clan. You start out with\n" "nothing but your headquarters, where all your resources are stored.\n" @@ -4040,7 +4158,7 @@ msgid "" "of war. Widelands also offers an Artificial Intelligence to challenge you." msgstr "" -#: gnu/packages/games.scm:5236 +#: gnu/packages/games.scm:5237 msgid "" "In the year 2579, the intergalactic weapons corporation, WEAPCO, has\n" "dominated the galaxy. Guide Chris Bainfield and his friend Sid Wilson on\n" @@ -4049,7 +4167,7 @@ msgid "" "in strikes against the evil corporation." msgstr "" -#: gnu/packages/games.scm:5267 +#: gnu/packages/games.scm:5268 msgid "" "In this game you are the captain of the cargo ship Chromium B.S.U. and\n" "are responsible for delivering supplies to the troops on the front line. Your\n" @@ -4057,7 +4175,7 @@ msgid "" "safety of the Chromium vessel." msgstr "" -#: gnu/packages/games.scm:5350 +#: gnu/packages/games.scm:5351 msgid "" "Tux Paint is a free drawing program designed for young children (kids\n" "ages 3 and up). It has a simple, easy-to-use interface; fun sound effects;\n" @@ -4066,23 +4184,23 @@ msgid "" "your child be creative." msgstr "" -#: gnu/packages/games.scm:5390 +#: gnu/packages/games.scm:5391 msgid "" "This package contains a set of \"Rubber Stamp\" images which can be used\n" "with the \"Stamp\" tool within Tux Paint." msgstr "" -#: gnu/packages/games.scm:5439 +#: gnu/packages/games.scm:5440 msgid "Tux Paint Config is a graphical configuration editor for Tux Paint." msgstr "" -#: gnu/packages/games.scm:5491 +#: gnu/packages/games.scm:5492 msgid "" "SuperTux is a classic 2D jump'n run sidescroller game in\n" "a style similar to the original Super Mario games." msgstr "" -#: gnu/packages/games.scm:5523 +#: gnu/packages/games.scm:5524 msgid "" "TinTin++ is a MUD client which supports MCCP (Mud Client Compression\n" "Protocol), MMCP (Mud Master Chat Protocol), xterm 256 colors, most TELNET\n" @@ -4090,7 +4208,7 @@ msgid "" "Linux / Mac OS X servers, and an auto mapper with a VT100 map display." msgstr "" -#: gnu/packages/games.scm:5563 +#: gnu/packages/games.scm:5564 msgid "" "Learn programming, playing with ants and spider webs ;-)\n" "Your robot ant can be programmed in many languages: OCaml, Python, C, C++,\n" @@ -4098,14 +4216,14 @@ msgid "" "programmers may also add their own favorite language." msgstr "" -#: gnu/packages/games.scm:5602 +#: gnu/packages/games.scm:5603 msgid "" "Bambam is a simple baby keyboard (and gamepad) masher\n" "application that locks the keyboard and mouse and instead displays bright\n" "colors, pictures, and sounds." msgstr "" -#: gnu/packages/games.scm:5663 +#: gnu/packages/games.scm:5664 msgid "" "Mr. Rescue is an arcade styled 2d action game centered around evacuating\n" "civilians from burning buildings. The game features fast-paced fire\n" @@ -4113,7 +4231,7 @@ msgid "" "throwing people around in pseudo-randomly generated buildings." msgstr "" -#: gnu/packages/games.scm:5770 +#: gnu/packages/games.scm:5771 msgid "" "HyperRogue is a game in which the player collects treasures and fights\n" "monsters -- rogue-like but for the fact that it is played on the hyperbolic\n" @@ -4127,13 +4245,13 @@ msgid "" "symbols, it still needs graphics to render the non-euclidean world." msgstr "" -#: gnu/packages/games.scm:5817 +#: gnu/packages/games.scm:5818 msgid "" "Kobo Deluxe is an enhanced version of Akira Higuchi's XKobo graphical game\n" "for Un*x systems with X11." msgstr "" -#: gnu/packages/games.scm:5845 +#: gnu/packages/games.scm:5846 msgid "" "Freeciv is a turn-based empire building strategy game\n" "inspired by the history of human civilization. The game commences in\n" @@ -4141,7 +4259,7 @@ msgid "" "into the Space Age." msgstr "" -#: gnu/packages/games.scm:5878 +#: gnu/packages/games.scm:5879 msgid "" "@code{No More Secrets} provides a command line tool called \"nms\"\n" "that recreates the famous data decryption effect seen on screen in the 1992\n" @@ -4152,26 +4270,26 @@ msgid "" "starting a decryption sequence to reveal the original plaintext characters." msgstr "" -#: gnu/packages/games.scm:5906 +#: gnu/packages/games.scm:5907 #, fuzzy msgid "This package contains the data files required for MegaGlest." msgstr "Tiu ĉi pako enhavas ludan datumaron por GNU Freedink." -#: gnu/packages/games.scm:5961 +#: gnu/packages/games.scm:5962 msgid "" "MegaGlest is a cross-platform 3D real-time strategy (RTS)\n" "game, where you control the armies of one of seven different factions: Tech,\n" "Magic, Egypt, Indians, Norsemen, Persian or Romans." msgstr "" -#: gnu/packages/games.scm:6013 +#: gnu/packages/games.scm:6014 msgid "" "In FreeGish you control Gish, a ball of tar who lives\n" "happily with his girlfriend Brea, until one day a mysterious dark creature\n" "emerges from a sewer hole and pulls her below ground." msgstr "" -#: gnu/packages/games.scm:6049 +#: gnu/packages/games.scm:6050 msgid "" "C-Dogs SDL is a classic overhead run-and-gun game,\n" "supporting up to 4 players in co-op and deathmatch modes. Customize your\n" @@ -4179,21 +4297,21 @@ msgid "" "over 100 user-created campaigns." msgstr "" -#: gnu/packages/games.scm:6149 +#: gnu/packages/games.scm:6150 msgid "" "Kiki the nano bot is a 3D puzzle game. It is basically a\n" "mixture of the games Sokoban and Kula-World. Your task is to help Kiki, a\n" "small robot living in the nano world, repair its maker." msgstr "" -#: gnu/packages/games.scm:6225 +#: gnu/packages/games.scm:6226 msgid "" "Teeworlds is an online multiplayer game. Battle with up to\n" "16 players in a variety of game modes, including Team Deathmatch and Capture\n" "The Flag. You can even design your own maps!" msgstr "" -#: gnu/packages/games.scm:6285 +#: gnu/packages/games.scm:6286 msgid "" "Enigma is a puzzle game with 550 unique levels. The object\n" "of the game is to find and uncover pairs of identically colored ‘Oxyd’ stones.\n" @@ -4205,7 +4323,7 @@ msgid "" "with the mouse isn’t always trivial." msgstr "" -#: gnu/packages/games.scm:6319 +#: gnu/packages/games.scm:6320 msgid "" "Chroma is an abstract puzzle game. A variety of colourful\n" "shapes are arranged in a series of increasingly complex patterns, forming\n" @@ -4215,7 +4333,7 @@ msgid "" "becoming difficult enough to tax even the brightest of minds." msgstr "" -#: gnu/packages/games.scm:6384 +#: gnu/packages/games.scm:6385 msgid "" "Fish Fillets NG is strictly a puzzle game. The goal in\n" "every of the seventy levels is always the same: find a safe way out. The fish\n" @@ -4224,14 +4342,14 @@ msgid "" "fish. The whole game is accompanied by quiet, comforting music." msgstr "" -#: gnu/packages/games.scm:6452 +#: gnu/packages/games.scm:6453 msgid "" "Dungeon Crawl Stone Soup (also known as \"Crawl\" or DCSS\n" "for short) is a roguelike adventure through dungeons filled with dangerous\n" "monsters in a quest to find the mystifyingly fabulous Orb of Zot." msgstr "" -#: gnu/packages/games.scm:6529 +#: gnu/packages/games.scm:6530 msgid "" "Lugaru is a third-person action game. The main character,\n" "Turner, is an anthropomorphic rebel bunny rabbit with impressive combat skills.\n" @@ -4241,11 +4359,11 @@ msgid "" "fight against their plot and save his fellow rabbits from slavery." msgstr "" -#: gnu/packages/games.scm:6574 +#: gnu/packages/games.scm:6575 msgid "0ad-data provides the data files required by the game 0ad." msgstr "" -#: gnu/packages/games.scm:6710 +#: gnu/packages/games.scm:6711 msgid "" "0 A.D. is a real-time strategy (RTS) game of ancient\n" "warfare. It's a historically-based war/economy game that allows players to\n" @@ -4255,7 +4373,7 @@ msgid "" "0ad needs a window manager that supports 'Extended Window Manager Hints'." msgstr "" -#: gnu/packages/games.scm:6776 +#: gnu/packages/games.scm:6777 msgid "" "The original Colossal Cave Adventure from 1976 was the origin of all\n" "text adventures, dungeon-crawl (computer) games, and computer-hosted\n" @@ -4264,7 +4382,7 @@ msgid "" "``adventure 2.5'' and ``430-point adventure''." msgstr "" -#: gnu/packages/games.scm:6899 +#: gnu/packages/games.scm:6900 msgid "" "Tales of Maj’Eyal (ToME) RPG, featuring tactical turn-based\n" "combat and advanced character building. Play as one of many unique races and\n" @@ -4275,21 +4393,21 @@ msgid "" "Tales of Maj’Eyal offers engaging roguelike gameplay for the 21st century." msgstr "" -#: gnu/packages/games.scm:6945 +#: gnu/packages/games.scm:6946 msgid "" "Quakespasm is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7002 +#: gnu/packages/games.scm:7003 msgid "" "vkquake is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7067 +#: gnu/packages/games.scm:7068 msgid "" "Yamagi Quake II is an enhanced client for id Software's Quake II.\n" "The main focus is an unchanged single player experience like back in 1997,\n" @@ -4299,18 +4417,18 @@ msgid "" "making Yamagi Quake II one of the most solid Quake II implementations available." msgstr "" -#: gnu/packages/games.scm:7100 +#: gnu/packages/games.scm:7101 msgid "Nudoku is a ncurses-based Sudoku game for your terminal." msgstr "" -#: gnu/packages/games.scm:7146 +#: gnu/packages/games.scm:7147 msgid "" "The Butterfly Effect (tbe) is a game that uses\n" "realistic physics simulations to combine lots of simple mechanical\n" "elements to achieve a simple goal in the most complex way possible." msgstr "" -#: gnu/packages/games.scm:7192 +#: gnu/packages/games.scm:7193 msgid "" "Pioneer is a space adventure game set in our galaxy at the turn of the\n" "31st century. The game is open-ended, and you are free to eke out whatever\n" @@ -4321,14 +4439,14 @@ msgid "" "whatever you make of it." msgstr "" -#: gnu/packages/games.scm:7221 +#: gnu/packages/games.scm:7222 msgid "" "Badass generates false commits for a range of dates, essentially\n" "hacking the gamification of contribution graphs on platforms such as\n" "Github or Gitlab." msgstr "" -#: gnu/packages/games.scm:7294 +#: gnu/packages/games.scm:7295 msgid "" "Colobot: Gold Edition is a real-time strategy game, where\n" "you can program your units (bots) in a language called CBOT, which is similar\n" @@ -4336,7 +4454,7 @@ msgid "" "You can save humanity and get programming skills!" msgstr "" -#: gnu/packages/games.scm:7386 +#: gnu/packages/games.scm:7387 msgid "" "GZdoom is a port of the Doom 2 game engine, with a modern\n" "renderer. It improves modding support with ZDoom's advanced mapping features\n" @@ -4344,14 +4462,14 @@ msgid "" "Strife, Chex Quest, and fan-created games like Harmony, Hacx and Freedoom." msgstr "" -#: gnu/packages/games.scm:7425 +#: gnu/packages/games.scm:7426 msgid "" "Odamex is a modification of the Doom engine that\n" "allows players to easily join servers dedicated to playing Doom\n" "online." msgstr "" -#: gnu/packages/games.scm:7453 +#: gnu/packages/games.scm:7454 msgid "" "Chocolate Doom takes a different approach to other source ports. Its\n" "aim is to accurately reproduce the experience of playing Vanilla Doom. It is\n" @@ -4364,7 +4482,7 @@ msgid "" "affect gameplay)." msgstr "" -#: gnu/packages/games.scm:7493 +#: gnu/packages/games.scm:7494 msgid "" "Crispy Doom is a friendly fork of Chocolate Doom that provides a higher\n" "display resolution, removes the static limits of the Doom engine and offers\n" @@ -4373,21 +4491,21 @@ msgid "" "original." msgstr "" -#: gnu/packages/games.scm:7566 +#: gnu/packages/games.scm:7567 msgid "This package provides C11 / gnu11 utilities C library" msgstr "" -#: gnu/packages/games.scm:7635 +#: gnu/packages/games.scm:7636 msgid "" "Fortune is a command-line utility which displays a random\n" "quotation from a collection of quotes." msgstr "" -#: gnu/packages/games.scm:7677 +#: gnu/packages/games.scm:7678 msgid "Xonotic-data provides the data files required by the game Xonotic." msgstr "" -#: gnu/packages/games.scm:7873 +#: gnu/packages/games.scm:7874 msgid "" "Xonotic is a free, fast-paced first-person shooter.\n" "The project is geared towards providing addictive arena shooter\n" @@ -4397,7 +4515,7 @@ msgid "" "open-source FPS of its kind." msgstr "" -#: gnu/packages/games.scm:7920 +#: gnu/packages/games.scm:7921 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4406,7 +4524,7 @@ msgid "" "ncurses for text display." msgstr "" -#: gnu/packages/games.scm:7964 +#: gnu/packages/games.scm:7966 msgid "" "Naev is a 2d action/rpg space game that combines elements from\n" "the action, RPG and simulation genres. You pilot a spaceship from\n" @@ -4418,7 +4536,7 @@ msgid "" "of lore accompanying everything from planets to equipment." msgstr "" -#: gnu/packages/games.scm:8013 +#: gnu/packages/games.scm:8015 msgid "" "Frotz is an interpreter for Infocom games and\n" "other Z-machine games in the text adventure/interactive fiction genre.\n" @@ -4430,7 +4548,7 @@ msgid "" "to play games on webpages. It can also be made into a chat bot." msgstr "" -#: gnu/packages/games.scm:8075 +#: gnu/packages/games.scm:8077 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4440,7 +4558,7 @@ msgid "" "when packaged in Blorb container files or optionally from individual files." msgstr "" -#: gnu/packages/games.scm:8166 +#: gnu/packages/games.scm:8168 msgid "" "Frozen-Bubble is a clone of the popular Puzzle Bobble game, in which\n" "you attempt to shoot bubbles into groups of the same color to cause them to\n" @@ -4455,7 +4573,7 @@ msgid "" "their own levels." msgstr "" -#: gnu/packages/games.scm:8199 +#: gnu/packages/games.scm:8201 msgid "" "Libmanette is a small GObject library giving you simple\n" "access to game controllers. It supports the de-facto standard gamepads as\n" @@ -4463,7 +4581,7 @@ msgid "" "GameController." msgstr "" -#: gnu/packages/games.scm:8245 +#: gnu/packages/games.scm:8247 msgid "" "Quadrapassel comes from the classic falling-block game,\n" "Tetris. The goal of the game is to create complete horizontal lines of\n" @@ -4475,7 +4593,7 @@ msgid "" "your score gets higher, you level up and the blocks fall faster." msgstr "" -#: gnu/packages/games.scm:8294 +#: gnu/packages/games.scm:8296 msgid "" "Endless Sky is a 2D space trading and combat game. Explore\n" "other star systems. Earn money by trading, carrying passengers, or completing\n" @@ -4485,7 +4603,7 @@ msgid "" "civilized than your own." msgstr "" -#: gnu/packages/games.scm:8443 +#: gnu/packages/games.scm:8445 msgid "" "StepMania is a dance and rhythm game. It features 3D\n" "graphics, keyboard and dance pad support, and an editor for creating your own\n" @@ -4495,7 +4613,7 @@ msgid "" "to download and install them in @file{$HOME/.stepmania-X.Y/Songs} directory." msgstr "" -#: gnu/packages/games.scm:8479 +#: gnu/packages/games.scm:8481 msgid "" "@i{oshu!} is a minimalist variant of the @i{osu!} rhythm game,\n" "which is played by pressing buttons and following along sliders as they appear\n" @@ -4505,7 +4623,7 @@ msgid "" "download and unpack them separately." msgstr "" -#: gnu/packages/games.scm:8562 +#: gnu/packages/games.scm:8564 msgid "" "Battle Tanks (also known as \"btanks\") is a funny battle\n" "game, where you can choose one of three vehicles and eliminate your enemy\n" @@ -4514,7 +4632,7 @@ msgid "" "and cooperative." msgstr "" -#: gnu/packages/games.scm:8596 +#: gnu/packages/games.scm:8598 msgid "" "Slime Volley is a 2D arcade-oriented volleyball simulation, in\n" "the spirit of some Java games of the same name.\n" @@ -4525,7 +4643,7 @@ msgid "" "the ground, the set ends and all balls are served again." msgstr "" -#: gnu/packages/games.scm:8626 +#: gnu/packages/games.scm:8628 msgid "" "Slingshot is a two-dimensional strategy game where two\n" "players attempt to shoot one another through a section of space populated by\n" @@ -4533,14 +4651,14 @@ msgid "" "affected by the gravity of the planets." msgstr "" -#: gnu/packages/games.scm:8674 +#: gnu/packages/games.scm:8676 msgid "" "4D-TRIS is an alteration of the well-known Tetris game. The\n" "game field is extended to 4D space, which has to filled up by the gamer with\n" "4D hyper cubes." msgstr "" -#: gnu/packages/games.scm:8751 +#: gnu/packages/games.scm:8753 msgid "" "Arx Libertatis is a cross-platform port of Arx Fatalis, a 2002\n" "first-person role-playing game / dungeon crawler developed by Arkane Studios.\n" @@ -4550,7 +4668,7 @@ msgid "" "where the player draws runes in real time to effect the desired spell." msgstr "" -#: gnu/packages/games.scm:8797 +#: gnu/packages/games.scm:8799 msgid "" "The Legend of Edgar is a 2D platform game with a persistent world.\n" "When Edgar's father fails to return home after venturing out one dark and stormy night,\n" @@ -4558,7 +4676,7 @@ msgid "" "a fortress beyond the forbidden swamp." msgstr "" -#: gnu/packages/games.scm:8899 +#: gnu/packages/games.scm:8901 msgid "" "OpenClonk is a multiplayer action/tactics/skill game. It is\n" "often referred to as a mixture of The Settlers and Worms. In a simple 2D\n" @@ -4568,20 +4686,20 @@ msgid "" "fight each other on an arena-like map." msgstr "" -#: gnu/packages/games.scm:8931 +#: gnu/packages/games.scm:8933 msgid "" "Flare (Free Libre Action Roleplaying Engine) is a simple\n" "game engine built to handle a very specific kind of game: single-player 2D\n" "action RPGs." msgstr "" -#: gnu/packages/games.scm:8994 +#: gnu/packages/games.scm:8996 msgid "" "Flare is a single-player 2D action RPG with\n" "fast-paced action and a dark fantasy style." msgstr "" -#: gnu/packages/games.scm:9046 +#: gnu/packages/games.scm:9048 msgid "" "Far below the surface of the planet is a place of limitless\n" "power. Those that seek to control such a utopia will soon bring an end to\n" @@ -4595,7 +4713,7 @@ msgid "" "Orcus Dome from evil." msgstr "" -#: gnu/packages/games.scm:9108 +#: gnu/packages/games.scm:9110 msgid "" "Marble Marcher is a video game that uses a fractal physics\n" "engine and fully procedural rendering to produce beautiful and unique\n" @@ -4605,7 +4723,7 @@ msgid "" "levels to unlock." msgstr "" -#: gnu/packages/games.scm:9159 +#: gnu/packages/games.scm:9161 msgid "" "SimGear is a set of libraries designed to be used as\n" "building blocks for quickly assembling 3D simulations, games, and\n" @@ -4613,7 +4731,7 @@ msgid "" "and also provides the base for the FlightGear Flight Simulator." msgstr "" -#: gnu/packages/games.scm:9253 +#: gnu/packages/games.scm:9255 msgid "" "The goal of the FlightGear project is to create a\n" "sophisticated flight simulator framework for use in research or academic\n" @@ -4623,14 +4741,14 @@ msgid "" "simulator." msgstr "" -#: gnu/packages/games.scm:9306 +#: gnu/packages/games.scm:9308 msgid "" "You, as a bunny, have to jump on your opponents to make them\n" "explode. It is a true multiplayer game; you cannot play this alone. You can\n" "play with up to four players simultaneously. It has network support." msgstr "" -#: gnu/packages/games.scm:9373 +#: gnu/packages/games.scm:9375 msgid "" "Hedgewars is a turn based strategy, artillery, action and comedy game,\n" "featuring the antics of pink hedgehogs with attitude as they battle from the\n" @@ -4640,7 +4758,7 @@ msgid "" "and bring the war to your enemy." msgstr "" -#: gnu/packages/games.scm:9407 +#: gnu/packages/games.scm:9409 msgid "" "The gruid module provides packages for easily building\n" "grid-based applications in Go. The library abstracts rendering and input for\n" @@ -4650,13 +4768,13 @@ msgid "" "application." msgstr "" -#: gnu/packages/games.scm:9437 +#: gnu/packages/games.scm:9439 msgid "" "The gruid-tcell module provides a Gruid driver for building\n" "terminal full-window applications." msgstr "" -#: gnu/packages/games.scm:9464 +#: gnu/packages/games.scm:9466 msgid "" "Harmonist: Dayoriah Clan Infiltration is a stealth\n" "coffee-break roguelike game. The game has a heavy focus on tactical\n" @@ -4666,7 +4784,7 @@ msgid "" "on items and player adaptability for character progression." msgstr "" -#: gnu/packages/games.scm:9573 +#: gnu/packages/games.scm:9575 msgid "" "Drascula: The Vampire Strikes Back is a classic humorous 2D\n" "point and click adventure game.\n" @@ -4678,7 +4796,7 @@ msgid "" "the World and demonstrating that he is even more evil than his brother Vlad." msgstr "" -#: gnu/packages/games.scm:9653 +#: gnu/packages/games.scm:9655 msgid "" "Lure of the Temptress is a classic 2D point and click adventure game.\n" "\n" @@ -4697,7 +4815,7 @@ msgid "" "Skorl. Maybe it would be an idea to try and escape..." msgstr "" -#: gnu/packages/games.scm:9752 +#: gnu/packages/games.scm:9754 msgid "" "Flight of the Amazon Queen is a 2D point-and-click\n" "adventure game set in the 1940s.\n" @@ -4714,7 +4832,7 @@ msgid "" "women and 6-foot-tall pygmies." msgstr "" -#: gnu/packages/games.scm:9852 +#: gnu/packages/games.scm:9854 msgid "" "Beneath a Steel Sky is a science-fiction thriller set in a bleak\n" "post-apocalyptic vision of the future. It revolves around Union City,\n" @@ -4737,7 +4855,7 @@ msgid "" "and to seek vengeance for the killing of his tribe." msgstr "" -#: gnu/packages/games.scm:9911 +#: gnu/packages/games.scm:9913 msgid "" "GNU Robots is a game in which you program a robot to explore a world\n" "full of enemies that can hurt it, obstacles and food to be eaten. The goal of\n" @@ -4745,14 +4863,14 @@ msgid "" "may be written in a plain text file in the Scheme programming language." msgstr "" -#: gnu/packages/games.scm:9981 +#: gnu/packages/games.scm:9983 msgid "" "Ri-li is a game in which you drive a wooden toy\n" "steam locomotive across many levels and collect all the coaches to\n" "win." msgstr "" -#: gnu/packages/games.scm:10037 +#: gnu/packages/games.scm:10039 msgid "" "FreeOrion is a turn-based space empire and galactic conquest (4X)\n" "computer game being designed and built by the FreeOrion project. Control an\n" @@ -4762,14 +4880,14 @@ msgid "" "remake of that series or any other game." msgstr "" -#: gnu/packages/games.scm:10093 +#: gnu/packages/games.scm:10095 msgid "" "Leela-zero is a Go engine with no human-provided knowledge, modeled after\n" "the AlphaGo Zero paper. The current best network weights file for the engine\n" "can be downloaded from @url{https://zero.sjeng.org/best-network}." msgstr "" -#: gnu/packages/games.scm:10171 +#: gnu/packages/games.scm:10173 msgid "" "This a tool for Go players which performs the following functions:\n" "@itemize\n" @@ -4781,7 +4899,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:10214 +#: gnu/packages/games.scm:10216 msgid "" "KTuberling is a drawing toy intended for small children and\n" "adults who remain young at heart. The game has no winner; the only purpose is\n" @@ -4800,7 +4918,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10260 +#: gnu/packages/games.scm:10262 msgid "" "Picmi is a number logic game in which cells in a grid have\n" "to be colored or left blank according to numbers given at the side of the\n" @@ -4809,7 +4927,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10297 +#: gnu/packages/games.scm:10299 msgid "" "Kolf is a miniature golf game for one to ten players. The\n" "game is played from an overhead view, with a short bar representing the golf\n" @@ -4828,13 +4946,13 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10341 +#: gnu/packages/games.scm:10343 msgid "" "Shared library and common files for kmahjongg, kshisen and\n" "other Mah Jongg like games." msgstr "" -#: gnu/packages/games.scm:10374 +#: gnu/packages/games.scm:10376 msgid "" "In KMahjongg the tiles are scrambled and staked on top of\n" "each other to resemble a certain shape. The player is then expected to remove\n" @@ -4846,7 +4964,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10416 +#: gnu/packages/games.scm:10418 msgid "" "KShisen is a solitaire-like game played using the standard\n" "set of Mahjong tiles. Unlike Mahjong however, KShisen has only one layer of\n" @@ -4855,7 +4973,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10471 +#: gnu/packages/games.scm:10473 msgid "" "Kajongg is the ancient Chinese board game for 4 players.\n" "\n" @@ -4870,7 +4988,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10513 +#: gnu/packages/games.scm:10515 msgid "" "KBreakout is similar to the classics breakout and xboing,\n" "featuring a number of added graphical enhancements and effects. You control a\n" @@ -4880,7 +4998,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10551 +#: gnu/packages/games.scm:10553 msgid "" "KMines is a classic Minesweeper game. The idea is to\n" "uncover all the squares without blowing up any mines. When a mine is blown\n" @@ -4889,7 +5007,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10588 +#: gnu/packages/games.scm:10590 msgid "" "Konquest is the KDE version of Gnu-Lactic Konquest. Players\n" "conquer other planets by sending ships to them. The goal is to build an\n" @@ -4900,7 +5018,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10627 +#: gnu/packages/games.scm:10629 msgid "" "KBounce is a single player arcade game with the elements of\n" "puzzle. It is played on a field, surrounded by wall, with two or more balls\n" @@ -4910,7 +5028,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10665 +#: gnu/packages/games.scm:10667 msgid "" "KBlocks is the classic Tetris-like falling blocks game.\n" "\n" @@ -4922,7 +5040,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10708 +#: gnu/packages/games.scm:10710 msgid "" "KSudoku is a Sudoku game and solver, supporting a range of\n" "2D and 3D Sudoku variants. In addition to playing Sudoku, it can print Sudoku\n" @@ -4951,7 +5069,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10763 +#: gnu/packages/games.scm:10765 msgid "" "KLines is a simple but highly addictive one player game.\n" "\n" @@ -4968,7 +5086,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10806 +#: gnu/packages/games.scm:10808 msgid "" "KGoldrunner is an action game where the hero runs through a\n" "maze, climbs stairs, dig holes and dodges enemies in order to collect all the\n" @@ -4982,7 +5100,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10849 +#: gnu/packages/games.scm:10851 msgid "" "KDiamond is a three-in-a-row game like Bejeweled. It\n" "features unlimited fun with randomly generated games and five difficulty\n" @@ -4991,7 +5109,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10885 +#: gnu/packages/games.scm:10887 msgid "" "KFourInLine is a board game for two players based on the\n" "Connect-Four game.\n" @@ -5002,7 +5120,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10924 +#: gnu/packages/games.scm:10926 msgid "" "KBlackbox is a game of hide and seek played on a grid of\n" "boxes where the computer has hidden several balls. The position of the hidden\n" @@ -5014,7 +5132,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10964 +#: gnu/packages/games.scm:10966 msgid "" "KNetWalk is a small game where you have to build up a\n" "computer network by rotating the wires to connect the terminals to the server.\n" @@ -5027,7 +5145,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11002 +#: gnu/packages/games.scm:11004 msgid "" "Bomber is a single player arcade game.\n" "\n" @@ -5043,7 +5161,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11047 +#: gnu/packages/games.scm:11049 msgid "" "Granatier is a clone of the classic Bomberman game,\n" "inspired by the work of the Clanbomber clone.\n" @@ -5051,7 +5169,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11085 +#: gnu/packages/games.scm:11087 msgid "" "KsirK is a multi-player network-enabled game. The goal of\n" "the game is simply to conquer the world by attacking your neighbors with your\n" @@ -5076,7 +5194,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11145 +#: gnu/packages/games.scm:11147 msgid "" "Palapeli is a jigsaw puzzle game. Unlike other games in\n" "that genre, you are not limited to aligning pieces on imaginary grids. The\n" @@ -5088,7 +5206,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11184 +#: gnu/packages/games.scm:11186 msgid "" "Kiriki is an addictive and fun dice game, designed to be\n" "played by as many as six players.\n" @@ -5099,7 +5217,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11224 +#: gnu/packages/games.scm:11226 msgid "" "Kigo is an open-source implementation of the popular Go\n" "game.\n" @@ -5116,7 +5234,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11269 +#: gnu/packages/games.scm:11271 msgid "" "Kubrick is a game based on the Rubik's Cube puzzle.\n" "\n" @@ -5129,7 +5247,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11309 +#: gnu/packages/games.scm:11311 msgid "" "Lieutnant Skat (from German \"Offiziersskat\") is a fun and\n" "engaging card game for two players, where the second player is either live\n" @@ -5140,7 +5258,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11347 +#: gnu/packages/games.scm:11349 msgid "" "Kapman is a clone of the well known game Pac-Man.\n" "\n" @@ -5152,7 +5270,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11386 +#: gnu/packages/games.scm:11388 msgid "" "KSpaceduel is a space battle game for one or two players,\n" "where two ships fly around a star in a struggle to be the only survivor.\n" @@ -5160,7 +5278,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11419 +#: gnu/packages/games.scm:11421 msgid "" "Bovo is a Gomoku (from Japanese 五目並べ - lit. \"five\n" "points\") like game for two players, where the opponents alternate in placing\n" @@ -5171,7 +5289,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11457 +#: gnu/packages/games.scm:11459 msgid "" "Killbots is a simple game of evading killer robots.\n" "\n" @@ -5185,7 +5303,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11499 +#: gnu/packages/games.scm:11501 msgid "" "KSnakeDuel is a fast action game where you steer a snake\n" "which has to eat food. While eating the snake grows. But once a player\n" @@ -5195,7 +5313,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11535 +#: gnu/packages/games.scm:11537 msgid "" "In Kollision you use mouse to control a small blue ball in a\n" "closed space environment filled with small red balls, which move about\n" @@ -5206,7 +5324,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11575 +#: gnu/packages/games.scm:11577 msgid "" "KBattleship is a Battle Ship game for KDE.\n" "\n" @@ -5217,7 +5335,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11615 +#: gnu/packages/games.scm:11617 msgid "" "KReversi is a simple one player strategy game played\n" "against the computer.\n" @@ -5230,7 +5348,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11655 +#: gnu/packages/games.scm:11657 msgid "" "KSquares is an implementation of the popular paper based\n" "game Squares. Two players take turns connecting dots on a grid to complete\n" @@ -5239,7 +5357,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11692 +#: gnu/packages/games.scm:11694 msgid "" "KJumpingcube is a simple tactical game for one or two\n" "players, played on a grid of numbered squares. Each turn, players compete for\n" @@ -5248,7 +5366,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11782 +#: gnu/packages/games.scm:11784 msgid "" "X-Moto is a challenging 2D motocross platform game, where\n" "physics play an all important role in the gameplay. You need to\n" @@ -5256,27 +5374,27 @@ msgid "" "the more difficult challenges." msgstr "" -#: gnu/packages/games.scm:11827 +#: gnu/packages/games.scm:11829 msgid "" "Eboard is a chess board interface for ICS (Internet Chess Servers)\n" "and chess engines." msgstr "" -#: gnu/packages/games.scm:11880 +#: gnu/packages/games.scm:11882 msgid "" "ChessX is a chess database. With ChessX you can operate on your\n" "collection of chess games in many ways: browse, edit, add, organize, analyze,\n" "etc. You can also play games on FICS or against an engine." msgstr "" -#: gnu/packages/games.scm:11935 +#: gnu/packages/games.scm:11937 msgid "" "Stockfish is a very strong chess engine. It is much stronger than the\n" "best human chess grandmasters. It can be used with UCI-compatible GUIs like\n" "ChessX." msgstr "" -#: gnu/packages/games.scm:11964 +#: gnu/packages/games.scm:11966 msgid "" "Barrage is a rather destructive action game that puts you on a shooting\n" "range with the objective to hit as many dummy targets as possible within\n" @@ -5285,7 +5403,7 @@ msgid "" "get high scores." msgstr "" -#: gnu/packages/games.scm:11990 +#: gnu/packages/games.scm:11992 msgid "" "This is a clone of the classic game BurgerTime. In it, you play\n" "the part of a chef who must create burgers by stepping repeatedly on\n" @@ -5295,7 +5413,7 @@ msgid "" "protect you." msgstr "" -#: gnu/packages/games.scm:12018 +#: gnu/packages/games.scm:12020 msgid "" "Seven Kingdoms, designed by Trevor Chan, brings a blend of Real-Time\n" "Strategy with the addition of trade, diplomacy, and espionage. The game\n" @@ -5305,7 +5423,7 @@ msgid "" "kingdom." msgstr "" -#: gnu/packages/games.scm:12134 +#: gnu/packages/games.scm:12136 msgid "" "In the grand tradition of Marble Madness and Super Monkey Ball,\n" "Neverball has you guide a rolling ball through dangerous territory. Balance\n" @@ -5315,13 +5433,13 @@ msgid "" "game." msgstr "" -#: gnu/packages/games.scm:12210 +#: gnu/packages/games.scm:12212 msgid "" "With PokerTH you can play the Texas holdem poker game, either against\n" "computer opponents or against real players online." msgstr "" -#: gnu/packages/games.scm:12281 +#: gnu/packages/games.scm:12283 msgid "" "Xblackjack is a MOTIF/OLIT based tool constructed to get you ready for\n" "the casino. It was inspired by a book called \"Beat the Dealer\" by Edward\n" @@ -5330,13 +5448,13 @@ msgid "" "System\" (high-low system)." msgstr "" -#: gnu/packages/games.scm:12321 +#: gnu/packages/games.scm:12323 msgid "" "Pilot your ship inside a planet to find and rescue the colonists trapped\n" "inside the Zenith Colony." msgstr "" -#: gnu/packages/games.scm:12341 +#: gnu/packages/games.scm:12343 msgid "" "Provides a large set of Go-related services for X11:\n" "@itemize\n" @@ -5347,7 +5465,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:12401 +#: gnu/packages/games.scm:12403 msgid "" "Passage is meant to be a memento mori game. It presents an entire life,\n" "from young adulthood through old age and death, in the span of five minutes.\n" @@ -5356,21 +5474,21 @@ msgid "" "there's no right way to interpret it." msgstr "" -#: gnu/packages/games.scm:12435 +#: gnu/packages/games.scm:12437 msgid "" "High performance animated desktop background setter for\n" "X11 that won't set your CPU on fire, drain your laptop battery, or lower video\n" "game FPS." msgstr "" -#: gnu/packages/games.scm:12465 +#: gnu/packages/games.scm:12467 msgid "" "Curse of War is a fast-paced action strategy game originally\n" "implemented using ncurses user interface. An SDL graphical version is also\n" "available." msgstr "" -#: gnu/packages/games.scm:12496 +#: gnu/packages/games.scm:12498 msgid "" "Schiffbruch is a mix of building, strategy and adventure and gets played\n" "with a two-dimensional view. The game deals with the consequences of a ship\n" @@ -5379,13 +5497,13 @@ msgid "" "get attention, so you get found." msgstr "" -#: gnu/packages/games.scm:12556 +#: gnu/packages/games.scm:12558 msgid "" "This package provides port of Prince of Persia, based on the\n" "disassembly of the DOS version, extended with new features." msgstr "" -#: gnu/packages/games.scm:12587 +#: gnu/packages/games.scm:12589 #, scheme-format msgid "" "@code{fheroes2} is an implementation of Heroes of Might and\n" @@ -5481,7 +5599,7 @@ msgid "" "from Markdown files." msgstr "" -#: gnu/packages/gettext.scm:311 +#: gnu/packages/gettext.scm:304 msgid "" "The po4a (PO for anything) project goal is to ease translations (and\n" "more interestingly, the maintenance of translations) using gettext tools on\n" @@ -5565,18 +5683,18 @@ msgid "" "system. It was forked from the GNU Image Manipulation Program." msgstr "" -#: gnu/packages/gnome.scm:284 +#: gnu/packages/gnome.scm:288 msgid "GUPnP-IGD is a library to handle UPnP IGD port mapping." msgstr "" -#: gnu/packages/gnome.scm:340 +#: gnu/packages/gnome.scm:344 msgid "" "Brasero is an application to burn CD/DVD for the Gnome\n" "Desktop. It is designed to be as simple as possible and has some unique\n" "features to enable users to create their discs easily and quickly." msgstr "" -#: gnu/packages/gnome.scm:372 +#: gnu/packages/gnome.scm:376 msgid "" "Libcloudproviders is a DBus API that allows cloud storage sync\n" "clients to expose their services. Clients such as file managers and desktop\n" @@ -5584,19 +5702,19 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:444 +#: gnu/packages/gnome.scm:448 msgid "" "LibGRSS is a Glib abstraction to handle feeds in RSS, Atom,\n" "and other formats." msgstr "" -#: gnu/packages/gnome.scm:472 +#: gnu/packages/gnome.scm:476 msgid "" "GNOME-JS-Common provides common modules for GNOME JavaScript\n" "bindings." msgstr "" -#: gnu/packages/gnome.scm:555 +#: gnu/packages/gnome.scm:559 msgid "" "Seed is a library and interpreter, dynamically bridging\n" "(through GObjectIntrospection) the WebKit JavaScriptCore engine, with the\n" @@ -5605,21 +5723,21 @@ msgid "" "in JavaScript." msgstr "" -#: gnu/packages/gnome.scm:611 +#: gnu/packages/gnome.scm:615 msgid "" "Libdmapsharing is a library which allows programs to access,\n" "share and control the playback of media content using DMAP (DAAP, DPAP & DACP).\n" "It is written in C using GObject and libsoup." msgstr "" -#: gnu/packages/gnome.scm:644 +#: gnu/packages/gnome.scm:648 msgid "" "GTX is a small collection of convenience functions intended to\n" "enhance the GLib testing framework. With specific emphasis on easing the pain\n" "of writing test cases for asynchronous interactions." msgstr "" -#: gnu/packages/gnome.scm:721 +#: gnu/packages/gnome.scm:725 msgid "" "Dee is a library that uses DBus to provide objects allowing\n" "you to create Model-View-Controller type programs across DBus. It also consists\n" @@ -5627,7 +5745,7 @@ msgid "" "of known objects without needing a central registrar." msgstr "" -#: gnu/packages/gnome.scm:802 +#: gnu/packages/gnome.scm:806 msgid "" "Zeitgeist is a service which logs the users’s activities and\n" "events, anywhere from files opened to websites visited and conversations. It\n" @@ -5636,27 +5754,27 @@ msgid "" "patterns." msgstr "" -#: gnu/packages/gnome.scm:869 +#: gnu/packages/gnome.scm:871 msgid "" "GNOME Recipes helps you discover what to cook today,\n" "tomorrow, the rest of the week and for special occasions." msgstr "" -#: gnu/packages/gnome.scm:939 +#: gnu/packages/gnome.scm:940 msgid "" "GNOME Photos is a simple and elegant replacement for using a\n" "file manager to deal with photos. Enhance, crop and edit in a snap. Seamless\n" "cloud integration is offered through GNOME Online Accounts." msgstr "" -#: gnu/packages/gnome.scm:1007 +#: gnu/packages/gnome.scm:1008 msgid "" "GNOME Music is the new GNOME music playing application that\n" "aims to combine an elegant and immersive browsing experience with simple\n" "and straightforward controls." msgstr "" -#: gnu/packages/gnome.scm:1028 +#: gnu/packages/gnome.scm:1029 msgid "" "PortableXDR is an implementation of External Data\n" "Representation (XDR) Library. It is a standard data serialization format, for\n" @@ -5664,25 +5782,25 @@ msgid "" "between different kinds of computer systems." msgstr "" -#: gnu/packages/gnome.scm:1066 +#: gnu/packages/gnome.scm:1067 msgid "" "Tepl is a library that eases the development of\n" "GtkSourceView-based text editors and IDEs." msgstr "" -#: gnu/packages/gnome.scm:1107 +#: gnu/packages/gnome.scm:1108 msgid "" "krb5-auth-dialog is a simple dialog that monitors Kerberos\n" "tickets, and pops up a dialog when they are about to expire." msgstr "" -#: gnu/packages/gnome.scm:1132 +#: gnu/packages/gnome.scm:1133 msgid "" "Notification-Daemon is the server implementation of the\n" "freedesktop.org desktop notification specification." msgstr "" -#: gnu/packages/gnome.scm:1168 +#: gnu/packages/gnome.scm:1169 msgid "" "The mm-common module provides the build infrastructure\n" "and utilities shared among the GNOME C++ binding libraries. Release\n" @@ -5690,55 +5808,55 @@ msgid "" "Library reference documentation." msgstr "" -#: gnu/packages/gnome.scm:1214 +#: gnu/packages/gnome.scm:1215 msgid "" "PhoDav was initially developed as a file-sharing mechanism for Spice,\n" "but it is generic enough to be reused in other projects,\n" "in particular in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1267 +#: gnu/packages/gnome.scm:1268 msgid "" "GNOME Color Manager is a session framework that makes\n" "it easy to manage, install and generate color profiles\n" "in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1319 +#: gnu/packages/gnome.scm:1320 msgid "" "GNOME Online Miners provides a set of crawlers that\n" "go through your online content and index them locally in Tracker.\n" "It has miners for Facebook, Flickr, Google, ownCloud and SkyDrive." msgstr "" -#: gnu/packages/gnome.scm:1352 +#: gnu/packages/gnome.scm:1353 msgid "" "This package provides a library to handle resource discovery\n" "and announcement over @acronym{SSDP, Simple Service Discovery Protocol} and\n" "a debugging tool, @command{gssdp-device-sniffer}." msgstr "" -#: gnu/packages/gnome.scm:1391 +#: gnu/packages/gnome.scm:1392 msgid "" "This package provides GUPnP, an object-oriented framework\n" "for creating UPnP devices and control points, written in C using\n" "@code{GObject} and @code{libsoup}." msgstr "" -#: gnu/packages/gnome.scm:1423 +#: gnu/packages/gnome.scm:1424 msgid "" "This package provides a small utility library to\n" "support DLNA-related tasks such as media profile guessing, transcoding to a\n" "given profile, etc. DLNA is a subset of UPnP A/V." msgstr "" -#: gnu/packages/gnome.scm:1453 +#: gnu/packages/gnome.scm:1454 msgid "" "This package provides a small library for handling\n" "and implementation of UPnP A/V profiles." msgstr "" -#: gnu/packages/gnome.scm:1478 +#: gnu/packages/gnome.scm:1479 msgid "" "The libmediaart library is the foundation for media art caching,\n" "extraction, and lookup for applications on the desktop." @@ -5751,14 +5869,14 @@ msgid "" "tour of all gnome components and allows the user to set them up." msgstr "" -#: gnu/packages/gnome.scm:1584 +#: gnu/packages/gnome.scm:1583 msgid "" "GNOME User Share is a small package that binds together\n" "various free software projects to bring easy to use user-level file\n" "sharing to the masses." msgstr "" -#: gnu/packages/gnome.scm:1639 +#: gnu/packages/gnome.scm:1638 msgid "" "Sushi is a DBus-activated service that allows applications\n" "to preview files on the GNOME desktop." @@ -5810,7 +5928,7 @@ msgid "" "and system administrators." msgstr "" -#: gnu/packages/gnome.scm:1946 +#: gnu/packages/gnome.scm:1950 msgid "" "Dia can be used to draw different types of diagrams, and\n" "includes support for UML static structure diagrams (class diagrams), entity\n" @@ -5818,28 +5936,28 @@ msgid "" "formats like PNG, SVG, PDF and EPS." msgstr "" -#: gnu/packages/gnome.scm:1991 +#: gnu/packages/gnome.scm:1995 msgid "" "libgdata is a GLib-based library for accessing online service APIs using\n" "the GData protocol — most notably, Google's services. It provides APIs to\n" "access the common Google services, and has full asynchronous support." msgstr "" -#: gnu/packages/gnome.scm:2019 +#: gnu/packages/gnome.scm:2023 msgid "" "libgxps is a GObject-based library for handling and rendering XPS\n" "documents. This package also contains binaries that can convert XPS documents\n" "to other formats." msgstr "" -#: gnu/packages/gnome.scm:2060 +#: gnu/packages/gnome.scm:2063 msgid "" "Characters is a simple utility application to find\n" "and insert unusual characters. It allows you to quickly find the\n" "character you are looking for by searching for keywords." msgstr "" -#: gnu/packages/gnome.scm:2081 +#: gnu/packages/gnome.scm:2084 msgid "" "gnome-common contains various files needed to bootstrap\n" "GNOME modules built from Git. It contains a common \"autogen.sh\" script that\n" @@ -5847,13 +5965,13 @@ msgid "" "commonly used macros." msgstr "" -#: gnu/packages/gnome.scm:2142 +#: gnu/packages/gnome.scm:2145 msgid "" "GNOME Contacts organizes your contact information from online and\n" "offline sources, providing a centralized place for managing your contacts." msgstr "" -#: gnu/packages/gnome.scm:2222 +#: gnu/packages/gnome.scm:2225 msgid "" "The libgnome-desktop library provides API shared by several applications\n" "on the desktop, but that cannot live in the platform for various reasons.\n" @@ -5863,40 +5981,40 @@ msgid "" "The gnome-about program helps find which version of GNOME is installed." msgstr "" -#: gnu/packages/gnome.scm:2257 +#: gnu/packages/gnome.scm:2260 msgid "" "Gnome-doc-utils is a collection of documentation utilities for the\n" "Gnome project. It includes xml2po tool which makes it easier to translate\n" "and keep up to date translations of documentation." msgstr "" -#: gnu/packages/gnome.scm:2309 +#: gnu/packages/gnome.scm:2311 msgid "Disk management utility for GNOME." msgstr "" -#: gnu/packages/gnome.scm:2352 +#: gnu/packages/gnome.scm:2353 msgid "" "Application to show you the fonts installed on your computer\n" "for your use as thumbnails. Selecting any thumbnails shows the full view of how\n" "the font would look under various sizes." msgstr "" -#: gnu/packages/gnome.scm:2420 +#: gnu/packages/gnome.scm:2421 msgid "" "The GCR package contains libraries used for displaying certificates and\n" "accessing key stores. It also provides the viewer for crypto files on the\n" "GNOME Desktop." msgstr "" -#: gnu/packages/gnome.scm:2459 +#: gnu/packages/gnome.scm:2460 msgid "This library provides docking features for gtk+." msgstr "" -#: gnu/packages/gnome.scm:2505 +#: gnu/packages/gnome.scm:2506 msgid "Client library to access passwords from the GNOME keyring." msgstr "" -#: gnu/packages/gnome.scm:2575 +#: gnu/packages/gnome.scm:2576 msgid "" "gnome-keyring is a program that keeps passwords and other secrets for\n" "users. It is run as a daemon in the session, similar to ssh-agent, and other\n" @@ -5915,13 +6033,13 @@ msgid "" "on the GNOME Desktop with a single simple application." msgstr "" -#: gnu/packages/gnome.scm:2693 +#: gnu/packages/gnome.scm:2692 msgid "" "Gsettings-desktop-schemas contains a collection of GSettings\n" "schemas for settings shared by various components of the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:2729 +#: gnu/packages/gnome.scm:2728 msgid "" "Liblarch is a Python library built to easily handle data structures such\n" "as lists, trees and acyclic graphs. There's also a GTK binding that will\n" @@ -5932,7 +6050,7 @@ msgid "" "and how they are displayed (View)." msgstr "" -#: gnu/packages/gnome.scm:2790 +#: gnu/packages/gnome.scm:2789 msgid "" "Getting Things GNOME! (GTG) is a personal tasks and TODO list items\n" "organizer for the GNOME desktop environment inspired by the Getting Things\n" @@ -5942,24 +6060,24 @@ msgid "" "know, from small tasks to large projects." msgstr "" -#: gnu/packages/gnome.scm:2829 +#: gnu/packages/gnome.scm:2828 msgid "" "To help with the transition to the Freedesktop Icon Naming\n" "Specification, the icon naming utility maps the icon names used by the\n" "GNOME and KDE desktops to the icon names proposed in the specification." msgstr "" -#: gnu/packages/gnome.scm:2858 +#: gnu/packages/gnome.scm:2857 msgid "Icons for the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:2897 +#: gnu/packages/gnome.scm:2896 msgid "" "This is an icon theme that follows the Tango visual\n" "guidelines." msgstr "" -#: gnu/packages/gnome.scm:2927 +#: gnu/packages/gnome.scm:2926 msgid "" "The shared-mime-info package contains the core database of common types\n" "and the update-mime-database command used to extend it. It requires glib2 to\n" @@ -5968,18 +6086,18 @@ msgid "" "database is translated at Transifex." msgstr "" -#: gnu/packages/gnome.scm:3012 +#: gnu/packages/gnome.scm:3011 msgid "" "system-config-printer is a CUPS administration tool. It's written in\n" "Python using GTK+, and uses the @acronym{IPP, Internet Printing Protocol} when\n" "configuring CUPS." msgstr "" -#: gnu/packages/gnome.scm:3036 +#: gnu/packages/gnome.scm:3035 msgid "Freedesktop icon theme." msgstr "" -#: gnu/packages/gnome.scm:3085 +#: gnu/packages/gnome.scm:3084 msgid "" "Libnotify is a library that sends desktop notifications to a\n" "notification daemon, as defined in the Desktop Notifications spec. These\n" @@ -5987,7 +6105,7 @@ msgid "" "some form of information without getting in the user's way." msgstr "" -#: gnu/packages/gnome.scm:3132 +#: gnu/packages/gnome.scm:3131 msgid "" "Libpeas is a gobject-based plugin engine, targeted at giving every\n" "application the chance to assume its own extensibility. It also has a set of\n" @@ -5996,21 +6114,21 @@ msgid "" "API." msgstr "" -#: gnu/packages/gnome.scm:3168 +#: gnu/packages/gnome.scm:3167 msgid "" "GtkGLExt is an OpenGL extension to GTK+. It provides\n" "additional GDK objects which support OpenGL rendering in GTK+ and GtkWidget\n" "API add-ons to make GTK+ widgets OpenGL-capable." msgstr "" -#: gnu/packages/gnome.scm:3248 +#: gnu/packages/gnome.scm:3247 msgid "" "Glade is a rapid application development (RAD) tool to\n" "enable quick & easy development of user interfaces for the GTK+ toolkit and\n" "the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:3280 +#: gnu/packages/gnome.scm:3279 msgid "" "Libcroco is a standalone CSS2 parsing and manipulation library.\n" "The parser provides a low level event driven SAC-like API and a CSS object\n" @@ -6018,13 +6136,13 @@ msgid "" "XML/CSS rendering engine." msgstr "" -#: gnu/packages/gnome.scm:3347 +#: gnu/packages/gnome.scm:3346 msgid "" "Libgsf aims to provide an efficient extensible I/O abstraction\n" "for dealing with different structured file formats." msgstr "" -#: gnu/packages/gnome.scm:3526 +#: gnu/packages/gnome.scm:3525 msgid "" "Librsvg is a library to render SVG images to Cairo surfaces.\n" "GNOME uses this to render SVG icons. Outside of GNOME, other desktop\n" @@ -6032,7 +6150,7 @@ msgid "" "diagrams." msgstr "" -#: gnu/packages/gnome.scm:3649 +#: gnu/packages/gnome.scm:3648 msgid "" "Libidl is a library for creating trees of CORBA Interface\n" "Definition Language (idl) files, which is a specification for defining\n" @@ -6041,83 +6159,83 @@ msgid "" "functionality was designed to be as reusable and portable as possible." msgstr "" -#: gnu/packages/gnome.scm:3704 +#: gnu/packages/gnome.scm:3703 msgid "" "ORBit2 is a CORBA 2.4-compliant Object Request Broker (orb)\n" "featuring mature C, C++ and Python bindings." msgstr "" -#: gnu/packages/gnome.scm:3758 +#: gnu/packages/gnome.scm:3757 msgid "" "Bonobo is a framework for creating reusable components for\n" "use in GNOME applications, built on top of CORBA." msgstr "" -#: gnu/packages/gnome.scm:3789 +#: gnu/packages/gnome.scm:3788 msgid "" "Gconf is a system for storing application preferences. It\n" "is intended for user preferences; not arbitrary data storage." msgstr "" -#: gnu/packages/gnome.scm:3823 +#: gnu/packages/gnome.scm:3822 msgid "" "GNOME Mime Data is a module which contains the base MIME\n" "and Application database for GNOME. The data stored by this module is\n" "designed to be accessed through the MIME functions in GnomeVFS." msgstr "" -#: gnu/packages/gnome.scm:3863 +#: gnu/packages/gnome.scm:3862 msgid "" "GnomeVFS is the core library used to access files and folders in GNOME\n" "applications. It provides a file system abstraction which allows applications\n" "to access local and remote files with a single consistent API." msgstr "" -#: gnu/packages/gnome.scm:3904 +#: gnu/packages/gnome.scm:3903 msgid "" "The libgnome library provides a number of useful routines\n" "for building modern applications, including session management, activation of\n" "files and URIs, and displaying help." msgstr "" -#: gnu/packages/gnome.scm:3928 +#: gnu/packages/gnome.scm:3927 msgid "" "Libart is a 2D drawing library intended as a\n" "high-quality vector-based 2D library with antialiasing and alpha composition." msgstr "" -#: gnu/packages/gnome.scm:3955 +#: gnu/packages/gnome.scm:3954 msgid "" "The GnomeCanvas widget provides a flexible widget for\n" "creating interactive structured graphics." msgstr "" -#: gnu/packages/gnome.scm:3977 +#: gnu/packages/gnome.scm:3976 #, fuzzy msgid "C++ bindings to the GNOME Canvas library." msgstr "Bindoj de C++ por la 2D-grafika biblioteko Cairo" -#: gnu/packages/gnome.scm:4003 +#: gnu/packages/gnome.scm:4002 msgid "" "The libgnomeui library provides additional widgets for\n" "applications. Many of the widgets from libgnomeui have already been\n" "ported to GTK+." msgstr "" -#: gnu/packages/gnome.scm:4029 +#: gnu/packages/gnome.scm:4028 msgid "" "Libglade is a library that provides interfaces for loading\n" "graphical interfaces described in glade files and for accessing the\n" "widgets built in the loading process." msgstr "" -#: gnu/packages/gnome.scm:4071 +#: gnu/packages/gnome.scm:4070 msgid "" "The Bonobo UI library provides a number of user interface\n" "controls using the Bonobo component framework." msgstr "" -#: gnu/packages/gnome.scm:4098 +#: gnu/packages/gnome.scm:4097 msgid "" "Libwnck is the Window Navigator Construction Kit, a library for use in\n" "writing pagers, tasklists, and more generally applications that are dealing\n" @@ -6125,11 +6243,11 @@ msgid "" "Hints specification (EWMH)." msgstr "" -#: gnu/packages/gnome.scm:4148 +#: gnu/packages/gnome.scm:4147 msgid "A GLib/GTK+ set of document-centric objects and utilities." msgstr "" -#: gnu/packages/gnome.scm:4234 +#: gnu/packages/gnome.scm:4233 msgid "" "GNUmeric is a GNU spreadsheet application, running under GNOME. It is\n" "interoperable with other spreadsheet applications. It has a vast array of\n" @@ -6138,11 +6256,11 @@ msgid "" "engineering." msgstr "" -#: gnu/packages/gnome.scm:4290 +#: gnu/packages/gnome.scm:4289 msgid "Drawing is a basic image editor aiming at the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:4326 +#: gnu/packages/gnome.scm:4325 msgid "The default GNOME 3 themes (Adwaita and some accessibility themes)." msgstr "" @@ -6161,7 +6279,7 @@ msgid "" "targeting the GNOME stack simple." msgstr "" -#: gnu/packages/gnome.scm:4481 +#: gnu/packages/gnome.scm:4482 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, and a minimal sample application (vte) using that. Vte is mainly used in\n" @@ -6169,34 +6287,34 @@ msgid "" "editors, IDEs, etc." msgstr "" -#: gnu/packages/gnome.scm:4505 +#: gnu/packages/gnome.scm:4506 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, this fork provides additional functions exposed for keyboard text\n" "selection and URL hints." msgstr "" -#: gnu/packages/gnome.scm:4585 +#: gnu/packages/gnome.scm:4586 msgid "" "Vinagre is a remote display client supporting the VNC, SPICE\n" "and RDP protocols." msgstr "" -#: gnu/packages/gnome.scm:4631 +#: gnu/packages/gnome.scm:4633 msgid "" "Dconf is a low-level configuration system. Its main purpose\n" "is to provide a backend to GSettings on platforms that don't already have\n" "configuration storage systems." msgstr "" -#: gnu/packages/gnome.scm:4661 +#: gnu/packages/gnome.scm:4663 msgid "" "JSON-GLib is a library providing serialization and\n" "described by RFC 4627. It implements a full JSON parser and generator using\n" "GLib and GObject, and integrates JSON with GLib data types." msgstr "" -#: gnu/packages/gnome.scm:4760 +#: gnu/packages/gnome.scm:4762 msgid "" "LibXklavier is a library providing high-level API for X Keyboard\n" "Extension known as XKB. This library is intended to support XFree86 and other\n" @@ -6204,13 +6322,13 @@ msgid "" "indicators etc)." msgstr "" -#: gnu/packages/gnome.scm:4788 +#: gnu/packages/gnome.scm:4790 msgid "" "This package provides Python bindings to librsvg, the SVG rendering\n" "library." msgstr "" -#: gnu/packages/gnome.scm:4829 +#: gnu/packages/gnome.scm:4831 msgid "" "Glib-networking contains the implementations of certain GLib networking\n" "features that cannot be implemented directly in GLib itself because of their\n" @@ -6220,26 +6338,26 @@ msgid "" "from the GSettings schemas in gsettings-desktop-schemas." msgstr "" -#: gnu/packages/gnome.scm:4866 +#: gnu/packages/gnome.scm:4868 msgid "" "This library was designed to make it easier to access web services that\n" "claim to be \"RESTful\". It includes convenience wrappers for libsoup and\n" "libxml to ease remote use of the RESTful API." msgstr "" -#: gnu/packages/gnome.scm:4931 +#: gnu/packages/gnome.scm:4933 msgid "" "LibSoup is an HTTP client/server library for GNOME. It uses GObjects\n" "and the GLib main loop, to integrate well with GNOME applications." msgstr "" -#: gnu/packages/gnome.scm:5035 +#: gnu/packages/gnome.scm:5037 msgid "" "Libsecret is a GObject based library for storing and retrieving passwords\n" "and other secrets. It communicates with the \"Secret Service\" using DBus." msgstr "" -#: gnu/packages/gnome.scm:5074 +#: gnu/packages/gnome.scm:5076 msgid "" "Five or More is a game where you try to align\n" " five or more objects of the same color and shape causing them to disappear.\n" @@ -6247,19 +6365,19 @@ msgid "" " Try to last as long as possible." msgstr "" -#: gnu/packages/gnome.scm:5116 +#: gnu/packages/gnome.scm:5118 msgid "" "Mines (previously gnomine) is a puzzle game where you locate mines\n" "floating in an ocean using only your brain and a little bit of luck." msgstr "" -#: gnu/packages/gnome.scm:5157 +#: gnu/packages/gnome.scm:5159 msgid "" "MultiWriter can be used to write an ISO file to multiple USB devices at\n" "once." msgstr "" -#: gnu/packages/gnome.scm:5197 +#: gnu/packages/gnome.scm:5198 msgid "" "Sudoku is a Japanese logic game that exploded in popularity in 2005.\n" "GNOME Sudoku is meant to have an interface as simple and unobstrusive as\n" @@ -6267,7 +6385,7 @@ msgid "" "more fun." msgstr "" -#: gnu/packages/gnome.scm:5247 +#: gnu/packages/gnome.scm:5248 msgid "" "GNOME Terminal is a terminal emulator application for accessing a\n" "UNIX shell environment which can be used to run programs available on\n" @@ -6277,14 +6395,14 @@ msgid "" "keyboard shortcuts." msgstr "" -#: gnu/packages/gnome.scm:5319 +#: gnu/packages/gnome.scm:5320 msgid "" "Colord is a system service that makes it easy to manage,\n" "install and generate color profiles to accurately color manage input and\n" "output devices." msgstr "" -#: gnu/packages/gnome.scm:5390 +#: gnu/packages/gnome.scm:5391 msgid "" "Geoclue is a D-Bus service that provides location\n" "information. The primary goal of the Geoclue project is to make creating\n" @@ -6293,7 +6411,7 @@ msgid "" "permission from user." msgstr "" -#: gnu/packages/gnome.scm:5434 +#: gnu/packages/gnome.scm:5435 msgid "" "geocode-glib is a convenience library for geocoding (finding longitude,\n" "and latitude from an address) and reverse geocoding (finding an address from\n" @@ -6301,7 +6419,7 @@ msgid "" "faster results and to avoid unnecessary server load." msgstr "" -#: gnu/packages/gnome.scm:5510 +#: gnu/packages/gnome.scm:5511 msgid "" "UPower is an abstraction for enumerating power devices,\n" "listening to device events and querying history and statistics. Any\n" @@ -6309,13 +6427,13 @@ msgid "" "service via the system message bus." msgstr "" -#: gnu/packages/gnome.scm:5555 +#: gnu/packages/gnome.scm:5557 msgid "" "libgweather is a library to access weather information from online\n" "services for numerous locations." msgstr "" -#: gnu/packages/gnome.scm:5639 +#: gnu/packages/gnome.scm:5640 msgid "" "This package contains the daemon responsible for setting the various\n" "parameters of a GNOME session and the applications that run under it. It\n" @@ -6323,19 +6441,19 @@ msgid "" "settings, themes, mouse settings, and startup of other daemons." msgstr "" -#: gnu/packages/gnome.scm:5670 +#: gnu/packages/gnome.scm:5671 msgid "" "Totem-pl-parser is a GObjects-based library to parse and save\n" "playlists in a variety of formats." msgstr "" -#: gnu/packages/gnome.scm:5703 +#: gnu/packages/gnome.scm:5704 msgid "" "Aisleriot (also known as Solitaire or sol) is a collection of card games\n" "which are easy to play with the aid of a mouse." msgstr "" -#: gnu/packages/gnome.scm:5729 +#: gnu/packages/gnome.scm:5730 msgid "" "Amtk is the acronym for @acronym{Amtk, Actions Menus and Toolbars Kit}.\n" "It is a basic GtkUIManager replacement based on GAction. It is suitable for\n" @@ -6414,13 +6532,13 @@ msgid "" "discovery protocols." msgstr "" -#: gnu/packages/gnome.scm:6324 +#: gnu/packages/gnome.scm:6323 msgid "" "Totem is a simple yet featureful media player for GNOME\n" "which can read a large number of file formats." msgstr "" -#: gnu/packages/gnome.scm:6415 +#: gnu/packages/gnome.scm:6414 msgid "" "Rhythmbox is a music playing application for GNOME. It\n" "supports playlists, song ratings, and any codecs installed through gstreamer." @@ -6451,7 +6569,7 @@ msgid "" "part of udev-extras, then udev, then systemd. It's now a project on its own." msgstr "" -#: gnu/packages/gnome.scm:6611 +#: gnu/packages/gnome.scm:6610 msgid "" "GVFS is a userspace virtual file system designed to work with the I/O\n" "abstraction of GIO. It contains a GIO module that seamlessly adds GVFS\n" @@ -6462,7 +6580,7 @@ msgid "" "DAV, and others." msgstr "" -#: gnu/packages/gnome.scm:6652 +#: gnu/packages/gnome.scm:6651 msgid "" "GUsb is a GObject wrapper for libusb1 that makes it easy to do\n" "asynchronous control, bulk and interrupt transfers with proper cancellation\n" @@ -6470,7 +6588,7 @@ msgid "" "USB transfers with your high-level application or system daemon." msgstr "" -#: gnu/packages/gnome.scm:6706 +#: gnu/packages/gnome.scm:6705 msgid "" "Document Scanner is an easy-to-use application that lets you connect your\n" "scanner and quickly capture images and documents in an appropriate format. It\n" @@ -6478,25 +6596,25 @@ msgid "" "almost all of them." msgstr "" -#: gnu/packages/gnome.scm:6778 +#: gnu/packages/gnome.scm:6777 msgid "" "Eolie is a new web browser for GNOME. It features Firefox sync support,\n" "a secret password store, an adblocker, and a modern UI." msgstr "" -#: gnu/packages/gnome.scm:6855 +#: gnu/packages/gnome.scm:6854 msgid "" "Epiphany is a GNOME web browser targeted at non-technical users. Its\n" "principles are simplicity and standards compliance." msgstr "" -#: gnu/packages/gnome.scm:6914 +#: gnu/packages/gnome.scm:6913 msgid "" "D-Feet is a D-Bus debugger, which can be used to inspect D-Bus interfaces\n" "of running programs and invoke methods on those interfaces." msgstr "" -#: gnu/packages/gnome.scm:6944 +#: gnu/packages/gnome.scm:6943 msgid "" "Yelp-XSL is a collection of programs and data files to help\n" "you build, maintain, and distribute documentation. It provides XSLT stylesheets\n" @@ -6506,14 +6624,14 @@ msgid "" "jQuery.Syntax JavaScript libraries." msgstr "" -#: gnu/packages/gnome.scm:6983 +#: gnu/packages/gnome.scm:6982 msgid "" "Yelp is the help viewer in Gnome. It natively views Mallard, DocBook,\n" "man, info, and HTML documents. It can locate documents according to the\n" "freedesktop.org help system specification." msgstr "" -#: gnu/packages/gnome.scm:7013 +#: gnu/packages/gnome.scm:7012 msgid "" "Yelp-tools is a collection of scripts and build utilities to help create,\n" "manage, and publish documentation for Yelp and the web. Most of the heavy\n" @@ -6521,13 +6639,13 @@ msgid "" "wraps things up in a developer-friendly way." msgstr "" -#: gnu/packages/gnome.scm:7051 +#: gnu/packages/gnome.scm:7050 msgid "" "Libgee is a utility library providing GObject-based interfaces and\n" "classes for commonly used data structures." msgstr "" -#: gnu/packages/gnome.scm:7079 +#: gnu/packages/gnome.scm:7078 msgid "" "Gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. It\n" "allows for GNOME applications to easily inspect and update EXIF, IPTC, and XMP\n" @@ -6542,7 +6660,7 @@ msgid "" "share them with others via social networking and more." msgstr "" -#: gnu/packages/gnome.scm:7168 +#: gnu/packages/gnome.scm:7169 msgid "" "File Roller is an archive manager for the GNOME desktop\n" "environment that allows users to view, unpack, and create compressed archives\n" @@ -6555,25 +6673,25 @@ msgid "" "configuration program to choose applications starting on login." msgstr "" -#: gnu/packages/gnome.scm:7284 +#: gnu/packages/gnome.scm:7287 msgid "" "Gjs is a javascript binding for GNOME. It's mainly based on spidermonkey\n" "javascript engine and the GObject introspection framework." msgstr "" -#: gnu/packages/gnome.scm:7381 +#: gnu/packages/gnome.scm:7383 msgid "" "While aiming at simplicity and ease of use, gedit is a\n" "powerful general purpose text editor." msgstr "" -#: gnu/packages/gnome.scm:7405 +#: gnu/packages/gnome.scm:7407 msgid "" "Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you\n" "to display dialog boxes from the commandline and shell scripts." msgstr "" -#: gnu/packages/gnome.scm:7595 +#: gnu/packages/gnome.scm:7598 msgid "" "Mutter is a window and compositing manager that displays and manages your\n" "desktop via OpenGL. Mutter combines a sophisticated display engine using the\n" @@ -6581,7 +6699,7 @@ msgid "" "window manager." msgstr "" -#: gnu/packages/gnome.scm:7653 +#: gnu/packages/gnome.scm:7656 msgid "" "GNOME Online Accounts provides interfaces so that applications and\n" "libraries in GNOME can access the user's online accounts. It has providers\n" @@ -6589,20 +6707,20 @@ msgid "" "Microsoft Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos." msgstr "" -#: gnu/packages/gnome.scm:7740 +#: gnu/packages/gnome.scm:7743 msgid "" "This package provides a unified backend for programs that work with\n" "contacts, tasks, and calendar information. It was originally developed for\n" "Evolution (hence the name), but is now used by other packages as well." msgstr "" -#: gnu/packages/gnome.scm:7803 +#: gnu/packages/gnome.scm:7806 msgid "" "Caribou is an input assistive technology intended for switch and pointer\n" "users." msgstr "" -#: gnu/packages/gnome.scm:7953 +#: gnu/packages/gnome.scm:7958 msgid "" "NetworkManager is a system network service that manages your network\n" "devices and connections, attempting to keep active network connectivity when\n" @@ -6611,62 +6729,62 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:8009 +#: gnu/packages/gnome.scm:8014 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to virtual private networks (VPNs) via OpenVPN." msgstr "" -#: gnu/packages/gnome.scm:8059 +#: gnu/packages/gnome.scm:8064 msgid "" "Support for configuring virtual private networks based on VPNC.\n" "Compatible with Cisco VPN concentrators configured to use IPsec." msgstr "" -#: gnu/packages/gnome.scm:8106 +#: gnu/packages/gnome.scm:8111 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to @acronym{VPNs, virtual private networks} via OpenConnect, an open client for\n" "Cisco's AnyConnect SSL VPN." msgstr "" -#: gnu/packages/gnome.scm:8135 +#: gnu/packages/gnome.scm:8140 msgid "Database of broadband connection configuration." msgstr "" -#: gnu/packages/gnome.scm:8179 +#: gnu/packages/gnome.scm:8183 msgid "" "This package contains a systray applet for NetworkManager. It displays\n" "the available networks and allows users to easily switch between them." msgstr "" -#: gnu/packages/gnome.scm:8234 +#: gnu/packages/gnome.scm:8238 #, fuzzy msgid "" "This package provides a C++ interface to the libxml2 XML parser\n" "library." msgstr "Tiu ĉi pako provizas vortaron por la literumilo GNU Aspell." -#: gnu/packages/gnome.scm:8466 +#: gnu/packages/gnome.scm:8470 msgid "" "GNOME Display Manager is a system service that is responsible for\n" "providing graphical log-ins and managing local and remote displays." msgstr "" -#: gnu/packages/gnome.scm:8490 +#: gnu/packages/gnome.scm:8494 msgid "" "LibGTop is a library to get system specific data such as CPU and memory\n" "usage and information about running processes." msgstr "" -#: gnu/packages/gnome.scm:8525 +#: gnu/packages/gnome.scm:8528 #, fuzzy msgid "" "This package contains tools for managing and manipulating Bluetooth\n" "devices using the GNOME desktop." msgstr "Tiu ĉi pako provizas ilojn por manipuli dosiersistemojn ext2/ext3/ext4." -#: gnu/packages/gnome.scm:8636 +#: gnu/packages/gnome.scm:8646 msgid "" "This package contains configuration applets for the GNOME desktop,\n" "allowing to set accessibility configuration, desktop fonts, keyboard and mouse\n" @@ -6674,13 +6792,13 @@ msgid "" "properties, screen resolution, and other GNOME parameters." msgstr "" -#: gnu/packages/gnome.scm:8802 +#: gnu/packages/gnome.scm:8811 msgid "" "GNOME Shell provides core user interface functions for the GNOME desktop,\n" "like switching to windows and launching applications." msgstr "" -#: gnu/packages/gnome.scm:8845 +#: gnu/packages/gnome.scm:8858 msgid "" "GTK-VNC is a project providing client side APIs for the RFB\n" "protocol / VNC remote desktop technology. It is built using coroutines allowing\n" @@ -6688,13 +6806,13 @@ msgid "" "core C library, and bindings for Python (PyGTK)." msgstr "" -#: gnu/packages/gnome.scm:8875 +#: gnu/packages/gnome.scm:8888 msgid "" "GNOME Autoar is a library which makes creating and extracting archives\n" "easy, safe, and automatic." msgstr "" -#: gnu/packages/gnome.scm:8945 +#: gnu/packages/gnome.scm:8959 msgid "" "Tracker is a search engine and triplestore for desktop, embedded and mobile.\n" "\n" @@ -6717,21 +6835,21 @@ msgid "" "endpoint and it understands SPARQL." msgstr "" -#: gnu/packages/gnome.scm:9074 +#: gnu/packages/gnome.scm:9088 msgid "" "Tracker is an advanced framework for first class objects with associated\n" "metadata and tags. It provides a one stop solution for all metadata, tags,\n" "shared object databases, search tools and indexing." msgstr "" -#: gnu/packages/gnome.scm:9167 +#: gnu/packages/gnome.scm:9185 msgid "" "Nautilus (Files) is a file manager designed to fit the GNOME desktop\n" "design and behaviour, giving the user a simple way to navigate and manage its\n" "files." msgstr "" -#: gnu/packages/gnome.scm:9201 +#: gnu/packages/gnome.scm:9220 msgid "" "Baobab (Disk Usage Analyzer) is a graphical application to analyse disk\n" "usage in the GNOME desktop environment. It can easily scan device volumes or\n" @@ -6739,7 +6857,7 @@ msgid "" "is complete it provides a graphical representation of each selected folder." msgstr "" -#: gnu/packages/gnome.scm:9227 +#: gnu/packages/gnome.scm:9245 msgid "" "GNOME backgrounds package contains a collection of graphics files which\n" "can be used as backgrounds in the GNOME Desktop environment. Additionally,\n" @@ -6747,21 +6865,21 @@ msgid "" "can add your own files to the collection." msgstr "" -#: gnu/packages/gnome.scm:9272 +#: gnu/packages/gnome.scm:9290 msgid "" "GNOME Screenshot is a utility used for taking screenshots of the entire\n" "screen, a window or a user defined area of the screen, with optional\n" "beautifying border effects." msgstr "" -#: gnu/packages/gnome.scm:9304 +#: gnu/packages/gnome.scm:9320 msgid "" "Dconf-editor is a graphical tool for browsing and editing the dconf\n" "configuration system for GNOME. It allows users to configure desktop\n" "software that do not provide their own configuration interface." msgstr "" -#: gnu/packages/gnome.scm:9334 +#: gnu/packages/gnome.scm:9350 msgid "" "Given many installed packages which might handle a given MIME type, a\n" "user running the GNOME desktop probably has some preferences: for example,\n" @@ -6770,32 +6888,32 @@ msgid "" "associations for GNOME." msgstr "" -#: gnu/packages/gnome.scm:9366 +#: gnu/packages/gnome.scm:9382 msgid "GoVirt is a GObject wrapper for the oVirt REST API." msgstr "" -#: gnu/packages/gnome.scm:9424 +#: gnu/packages/gnome.scm:9439 msgid "" "GNOME Weather is a small application that allows you to\n" "monitor the current weather conditions for your city, or anywhere in the\n" "world." msgstr "" -#: gnu/packages/gnome.scm:9528 +#: gnu/packages/gnome.scm:9543 msgid "" "GNOME is the graphical desktop for GNU. It includes a wide variety of\n" "applications for browsing the web, editing text and images, creating\n" "documents and diagrams, playing media, scanning, and much more." msgstr "" -#: gnu/packages/gnome.scm:9574 +#: gnu/packages/gnome.scm:9589 msgid "" "Byzanz is a simple desktop recording program with a\n" "command-line interface. It can record part or all of an X display for a\n" "specified duration and save it as a GIF encoded animated image file." msgstr "" -#: gnu/packages/gnome.scm:9634 +#: gnu/packages/gnome.scm:9651 msgid "" "Authenticator is a two-factor authentication (2FA) application built for\n" "the GNOME desktop environment.\n" @@ -6812,44 +6930,44 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/gnome.scm:9669 +#: gnu/packages/gnome.scm:9686 msgid "" "GSound is a small library for playing system sounds. It's designed to be\n" "used via GObject Introspection, and is a thin wrapper around the libcanberra C\n" "library." msgstr "" -#: gnu/packages/gnome.scm:9694 +#: gnu/packages/gnome.scm:9711 msgid "" "Libzapojit is a GLib-based library for accessing online service APIs of\n" "Microsoft SkyDrive and Hotmail, using their REST protocols." msgstr "" -#: gnu/packages/gnome.scm:9739 +#: gnu/packages/gnome.scm:9756 msgid "" "GNOME Clocks is a simple clocks application designed to fit the GNOME\n" "desktop. It supports world clock, stop watch, alarms, and count down timer." msgstr "" -#: gnu/packages/gnome.scm:9787 +#: gnu/packages/gnome.scm:9803 msgid "" "GNOME Calendar is a simple calendar application designed to fit the GNOME\n" "desktop. It supports multiple calendars, month, week and year view." msgstr "" -#: gnu/packages/gnome.scm:9838 +#: gnu/packages/gnome.scm:9860 msgid "" -"GNOME To Do is a simplistic personal task manager designed to perfectly\n" -"fit the GNOME desktop." +"GNOME To Do is a simplistic personal task manager designed\n" +"to perfectly fit the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:9877 +#: gnu/packages/gnome.scm:9899 msgid "" "GNOME Dictionary can look for the definition or translation of a word in\n" "existing databases over the internet." msgstr "" -#: gnu/packages/gnome.scm:9943 +#: gnu/packages/gnome.scm:9964 msgid "" "GNOME Tweaks allows adjusting advanced configuration settings in\n" "GNOME 3. This includes things like the fonts used in user interface elements,\n" @@ -6857,13 +6975,13 @@ msgid "" "GNOME Shell appearance and extension, etc." msgstr "" -#: gnu/packages/gnome.scm:9971 +#: gnu/packages/gnome.scm:9992 msgid "" "GNOME Shell extensions modify and extend GNOME Shell\n" "functionality and behavior." msgstr "" -#: gnu/packages/gnome.scm:10015 +#: gnu/packages/gnome.scm:10036 msgid "" "Libfolks is a library that aggregates information about people\n" "from multiple sources (e.g., Telepathy connection managers for IM contacts,\n" @@ -6872,19 +6990,19 @@ msgid "" "compiled." msgstr "" -#: gnu/packages/gnome.scm:10056 +#: gnu/packages/gnome.scm:10077 msgid "" "This library allows you to use the Facebook API from\n" "GLib/GObject code." msgstr "" -#: gnu/packages/gnome.scm:10083 +#: gnu/packages/gnome.scm:10104 msgid "" "Libgnomekbd is a keyboard configuration library for the GNOME desktop\n" "environment, which can notably display keyboard layouts." msgstr "" -#: gnu/packages/gnome.scm:10119 +#: gnu/packages/gnome.scm:10140 msgid "" "Libunique is a library for writing single instance applications. If you\n" "launch a single instance application twice, the second instance will either just\n" @@ -6894,20 +7012,20 @@ msgid "" "handling the startup notification side." msgstr "" -#: gnu/packages/gnome.scm:10168 +#: gnu/packages/gnome.scm:10190 msgid "" "Calculator is an application that solves mathematical equations and\n" "is suitable as a default application in a Desktop environment." msgstr "" -#: gnu/packages/gnome.scm:10194 +#: gnu/packages/gnome.scm:10216 msgid "" "Xpad is a sticky note that strives to be simple, fault tolerant,\n" "and customizable. Xpad consists of independent pad windows, each is\n" "basically a text box in which notes can be written." msgstr "" -#: gnu/packages/gnome.scm:10267 +#: gnu/packages/gnome.scm:10289 msgid "" "This program allows you to browse through all the available Unicode\n" "characters and categories for the installed fonts, and to examine their\n" @@ -6915,20 +7033,20 @@ msgid "" "only know by its Unicode name or code point." msgstr "" -#: gnu/packages/gnome.scm:10299 +#: gnu/packages/gnome.scm:10321 msgid "" "Color Picker is a simple color chooser written in GTK3. It\n" "supports both X and Wayland display servers." msgstr "" -#: gnu/packages/gnome.scm:10322 +#: gnu/packages/gnome.scm:10344 msgid "" "Bluefish is an editor aimed at programmers and web developers,\n" "with many options to write web sites, scripts and other code.\n" "Bluefish supports many programming and markup languages." msgstr "" -#: gnu/packages/gnome.scm:10363 +#: gnu/packages/gnome.scm:10385 msgid "" "GNOME System Monitor is a GNOME process viewer and system monitor with\n" "an attractive, easy-to-use interface. It has features, such as a tree view\n" @@ -6937,27 +7055,27 @@ msgid "" "kill/reinice processes." msgstr "" -#: gnu/packages/gnome.scm:10405 +#: gnu/packages/gnome.scm:10427 msgid "" "This package includes a python client library for the AT-SPI D-Bus\n" "accessibility infrastructure." msgstr "" -#: gnu/packages/gnome.scm:10475 +#: gnu/packages/gnome.scm:10495 msgid "" "Orca is a screen reader that provides access to the graphical desktop\n" "via speech and refreshable braille. Orca works with applications and toolkits\n" "that support the Assistive Technology Service Provider Interface (AT-SPI)." msgstr "" -#: gnu/packages/gnome.scm:10529 +#: gnu/packages/gnome.scm:10549 msgid "" "gspell provides a flexible API to add spell-checking to a GTK+\n" "application. It provides a GObject API, spell-checking to text entries and\n" "text views, and buttons to choose the language." msgstr "" -#: gnu/packages/gnome.scm:10571 +#: gnu/packages/gnome.scm:10591 msgid "" "GNOME Planner is a project management tool based on the Work Breakdown\n" "Structure (WBS). Its goal is to enable you to easily plan projects. Based on\n" @@ -6969,7 +7087,7 @@ msgid "" "views can be printed as PDF or PostScript files, or exported to HTML." msgstr "" -#: gnu/packages/gnome.scm:10644 +#: gnu/packages/gnome.scm:10664 msgid "" "Lollypop is a music player designed to play well with GNOME desktop.\n" "Lollypop plays audio formats such as mp3, mp4, ogg and flac and gets information\n" @@ -6977,26 +7095,26 @@ msgid "" "automatically and it can stream songs from online music services and charts." msgstr "" -#: gnu/packages/gnome.scm:10668 +#: gnu/packages/gnome.scm:10688 msgid "" "A collection of GStreamer video filters and effects to be used in\n" "photo-booth-like software, such as Cheese." msgstr "" -#: gnu/packages/gnome.scm:10747 +#: gnu/packages/gnome.scm:10766 msgid "" "Cheese uses your webcam to take photos and videos. Cheese can also\n" "apply fancy special effects and lets you share the fun with others." msgstr "" -#: gnu/packages/gnome.scm:10801 +#: gnu/packages/gnome.scm:10820 msgid "" "Password Safe is a password manager which makes use of the KeePass v4\n" "format. It integrates perfectly with the GNOME desktop and provides an easy\n" "and uncluttered interface for the management of password databases." msgstr "" -#: gnu/packages/gnome.scm:10836 +#: gnu/packages/gnome.scm:10855 msgid "" "Sound Juicer extracts audio from compact discs and convert it\n" "into audio files that a personal computer or digital audio player can play.\n" @@ -7004,27 +7122,27 @@ msgid "" "mp3, Ogg Vorbis and FLAC" msgstr "" -#: gnu/packages/gnome.scm:10888 +#: gnu/packages/gnome.scm:10907 msgid "" "SoundConverter supports converting between many audio formats including\n" "Opus, Ogg Vorbis, FLAC and more. It supports parallel conversion, and\n" "configurable file renaming." msgstr "" -#: gnu/packages/gnome.scm:10936 +#: gnu/packages/gnome.scm:10955 msgid "" "Workrave is a program that assists in the recovery and prevention of\n" "repetitive strain injury (@dfn{RSI}). The program frequently alerts you to take\n" "micro-pauses and rest breaks, and restricts you to your daily limit." msgstr "" -#: gnu/packages/gnome.scm:10977 +#: gnu/packages/gnome.scm:10996 msgid "" "The GHex program can view and edit files in two ways:\n" "hexadecimal or ASCII. It is useful for editing binary files in general." msgstr "" -#: gnu/packages/gnome.scm:11013 +#: gnu/packages/gnome.scm:11032 msgid "" "The libdazzle library is a companion library to GObject and\n" "Gtk+. It provides various features that the authors wish were in the\n" @@ -7033,40 +7151,40 @@ msgid "" "generic enough to work for everyone." msgstr "" -#: gnu/packages/gnome.scm:11080 +#: gnu/packages/gnome.scm:11099 msgid "" "Evolution is a personal information management application\n" "that provides integrated mail, calendaring and address book\n" "functionality." msgstr "" -#: gnu/packages/gnome.scm:11140 +#: gnu/packages/gnome.scm:11154 msgid "" "GThumb is an image viewer, browser, organizer, editor and\n" "advanced image management tool" msgstr "" -#: gnu/packages/gnome.scm:11213 +#: gnu/packages/gnome.scm:11227 msgid "" "Terminator allows you to run multiple GNOME terminals in a grid and\n" "tabs, and it supports drag and drop re-ordering of terminals." msgstr "" -#: gnu/packages/gnome.scm:11274 +#: gnu/packages/gnome.scm:11288 msgid "" "The aim of the handy library is to help with developing user\n" "interfaces for mobile devices using GTK+. It provides responsive GTK+ widgets\n" "for usage on small and big screens." msgstr "" -#: gnu/packages/gnome.scm:11323 +#: gnu/packages/gnome.scm:11337 msgid "" "libgit2-glib is a GLib wrapper library around the libgit2 Git\n" "access library. It only implements the core plumbing functions, not really the\n" "higher level porcelain stuff." msgstr "" -#: gnu/packages/gnome.scm:11402 +#: gnu/packages/gnome.scm:11415 msgid "" "gitg is a graphical user interface for git. It aims at being a small,\n" "fast and convenient tool to visualize the history of git repositories.\n" @@ -7074,21 +7192,21 @@ msgid "" "repository and commit your work." msgstr "" -#: gnu/packages/gnome.scm:11474 +#: gnu/packages/gnome.scm:11487 msgid "" "Gamin is a file and directory monitoring system defined to be a subset\n" "of the FAM (File Alteration Monitor) system. This is a service provided by a\n" "library which detects when a file or a directory has been modified." msgstr "" -#: gnu/packages/gnome.scm:11508 +#: gnu/packages/gnome.scm:11521 msgid "" "GNOME Mahjongg is a game based on the classic Chinese\n" -"tile-matching game Mahjong. It features multiple board layouts, tile themes,\n" +"tile-matching game Mahjongg. It features multiple board layouts, tile themes,\n" "and a high score table." msgstr "" -#: gnu/packages/gnome.scm:11546 +#: gnu/packages/gnome.scm:11559 msgid "" "This package provides themes and related elements that don't\n" "really fit in other upstream packages. It offers legacy support for GTK+ 2\n" @@ -7096,19 +7214,19 @@ msgid "" "index files needed for Adwaita to be used outside of GNOME." msgstr "" -#: gnu/packages/gnome.scm:11585 +#: gnu/packages/gnome.scm:11605 msgid "" -"Gnote is a note-taking application written for the GNOME desktop\n" -"environment." +"Gnote is a note-taking application written for the GNOME\n" +"desktop environment." msgstr "" -#: gnu/packages/gnome.scm:11647 +#: gnu/packages/gnome.scm:11664 msgid "" "Polari is a simple Internet Relay Chat (IRC) client that is designed to\n" "integrate seamlessly with the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:11706 +#: gnu/packages/gnome.scm:11723 msgid "" "GNOME Boxes is a simple application to view, access, and\n" "manage remote and virtual systems. Note that this application requires the\n" @@ -7117,7 +7235,7 @@ msgid "" "these services on the Guix System." msgstr "" -#: gnu/packages/gnome.scm:11806 +#: gnu/packages/gnome.scm:11823 msgid "" "Geary collects related messages together into conversations,\n" "making it easy to find and follow your discussions. Full-text and keyword\n" @@ -7129,14 +7247,14 @@ msgid "" "to." msgstr "" -#: gnu/packages/gnome.scm:11851 +#: gnu/packages/gnome.scm:11868 msgid "" "gLabels is a program for creating labels and business cards. It is\n" "designed to work with various laser/ink-jet peel-off label and business\n" "card sheets that you’ll find at most office supply stores." msgstr "" -#: gnu/packages/gnome.scm:11892 +#: gnu/packages/gnome.scm:11909 msgid "" "GNOME LaTeX is a LaTeX editor for the GNOME desktop. It has features\n" "such as build tools, completion of LaTeX commands, structure navigation,\n" @@ -7144,19 +7262,19 @@ msgid "" "and toolbars." msgstr "" -#: gnu/packages/gnome.scm:11951 +#: gnu/packages/gnome.scm:11968 msgid "" "Setzer is a simple yet full-featured LaTeX editor written in Python with\n" "GTK+. It integrates well with the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:12017 +#: gnu/packages/gnome.scm:12034 msgid "" "Apostrophe is a GTK+ based distraction-free Markdown editor.\n" "It uses pandoc as back-end for parsing Markdown." msgstr "" -#: gnu/packages/gnome.scm:12070 +#: gnu/packages/gnome.scm:12088 msgid "" "libratbag provides @command{ratbagd}, a DBus daemon to\n" "configure input devices, mainly gaming mice. The daemon provides a generic\n" @@ -7173,7 +7291,7 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12140 +#: gnu/packages/gnome.scm:12156 msgid "" "Piper is a GTK+ application for configuring gaming mice with\n" "onboard configuration for key bindings via libratbag. Piper requires\n" @@ -7185,14 +7303,14 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12202 +#: gnu/packages/gnome.scm:12218 msgid "" "Parlatype is an audio player for the GNOME desktop\n" "environment. Its main purpose is the manual transcription of spoken\n" "audio files." msgstr "" -#: gnu/packages/gnome.scm:12228 +#: gnu/packages/gnome.scm:12244 msgid "" "Jsonrpc-GLib is a library to communicate with JSON-RPC based\n" "peers in either a synchronous or asynchronous fashion. It also allows\n" @@ -7201,14 +7319,14 @@ msgid "" "host to avoid parser overhead and memory-allocator fragmentation." msgstr "" -#: gnu/packages/gnome.scm:12256 +#: gnu/packages/gnome.scm:12272 msgid "" "Feedbackd provides a DBus daemon to act on events to provide\n" "haptic, visual and audio feedback. It offers the libfeedbackd library and\n" "GObject introspection bindings." msgstr "" -#: gnu/packages/gnome.scm:12305 +#: gnu/packages/gnome.scm:12321 msgid "" "Sysprof performs detailed, accurate, and fast CPU profiling of an entire\n" "GNU/Linux system including the kernel and all user-space applications. This\n" @@ -7218,21 +7336,21 @@ msgid "" "libraries. Applications do not need to be recompiled--or even restarted." msgstr "" -#: gnu/packages/gnome.scm:12388 +#: gnu/packages/gnome.scm:12406 msgid "" -"Builder aims to be an integrated development\n" -"environment (IDE) for writing GNOME-based software. It features fuzzy search,\n" -"auto-completion, a mini code map, documentation browsing, Git integration, an\n" -"integrated profiler via Sysprof, debugging support, and more." +"Builder aims to be an integrated development environment (IDE) for\n" +"writing GNOME-based software. It features fuzzy search, auto-completion,\n" +"a mini code map, documentation browsing, Git integration, an integrated\n" +"profiler via Sysprof, debugging support, and more." msgstr "" -#: gnu/packages/gnome.scm:12461 +#: gnu/packages/gnome.scm:12480 msgid "" "Komikku is an online/offline manga reader for GNOME,\n" "developed with the aim of being used with the Librem 5 phone." msgstr "" -#: gnu/packages/gnome.scm:12545 +#: gnu/packages/gnome.scm:12564 msgid "" "GNU Data Access (GDA) is an attempt to provide uniform access to\n" "different kinds of data sources (databases, information servers, mail spools,\n" @@ -7240,7 +7358,7 @@ msgid "" "your data." msgstr "" -#: gnu/packages/gnome.scm:12596 +#: gnu/packages/gnome.scm:12614 msgid "" "gtranslator is a quite comfortable gettext po/po.gz/(g)mo files editor\n" "for the GNOME 3.x platform with many features. It aims to be a very complete\n" @@ -7248,32 +7366,37 @@ msgid "" "world." msgstr "" -#: gnu/packages/gnome.scm:12662 +#: gnu/packages/gnome.scm:12680 msgid "" "OCRFeeder is a complete Optical Character Recognition and\n" "Document Analysis and Recognition program." msgstr "" -#: gnu/packages/gnome.scm:12702 +#: gnu/packages/gnome.scm:12720 msgid "" "@code{libadwaita} offers widgets and objects to build GNOME\n" "applications scaling from desktop workstations to mobile phones. It is the\n" "successor of @code{libhandy} for GTK4." msgstr "" -#: gnu/packages/gnome.scm:12727 +#: gnu/packages/gnome.scm:12745 msgid "" "@code{gnome-power-manager} is a tool for viewing present and\n" "historical battery usage and related statistics." msgstr "" +#: gnu/packages/gnome.scm:12789 +#, fuzzy +msgid "This package provides a graphical file manager." +msgstr "Tiu ĉi pako provizas datumbazan interfacon por Perl." + #: gnu/packages/gnuzilla.scm:155 msgid "" "SpiderMonkey is Mozilla's JavaScript engine written\n" "in C/C++." msgstr "" -#: gnu/packages/gnuzilla.scm:1314 +#: gnu/packages/gnuzilla.scm:1315 msgid "" "IceCat is the GNU version of the Firefox browser. It is entirely free\n" "software, which does not recommend non-free plugins and addons. It also\n" @@ -7286,19 +7409,19 @@ msgid "" "standards of the IceCat project." msgstr "" -#: gnu/packages/gnuzilla.scm:1642 +#: gnu/packages/gnuzilla.scm:1648 msgid "" "This package provides an email client built based on Mozilla\n" "Thunderbird. It supports email, news feeds, chat, calendar and contacts." msgstr "" -#: gnu/packages/gnuzilla.scm:1717 +#: gnu/packages/gnuzilla.scm:1723 msgid "" "Firefox Decrypt is a tool to extract passwords from\n" "Mozilla (Firefox, Waterfox, Thunderbird, SeaMonkey) profiles." msgstr "" -#: gnu/packages/gnuzilla.scm:1754 +#: gnu/packages/gnuzilla.scm:1760 msgid "" "@code{lz4json} is a little utility to unpack lz4json files as generated\n" "by Firefox's bookmark backups and session restore. This is a different format\n" @@ -7312,7 +7435,7 @@ msgid "" "tools have full access to view and control running applications." msgstr "" -#: gnu/packages/gtk.scm:215 +#: gnu/packages/gtk.scm:212 msgid "" "Cairo is a 2D graphics library with support for multiple output\n" "devices. Currently supported output targets include the X Window System (via\n" @@ -7320,24 +7443,24 @@ msgid "" "output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB." msgstr "" -#: gnu/packages/gtk.scm:277 +#: gnu/packages/gtk.scm:274 msgid "HarfBuzz is an OpenType text shaping engine." msgstr "HarfBuzz estas tekst-formiga maŝino OpenType." -#: gnu/packages/gtk.scm:320 +#: gnu/packages/gtk.scm:317 msgid "" "Libdatrie is an implementation of double-array structure for\n" "representing trie. Trie is a kind of digital search tree." msgstr "" -#: gnu/packages/gtk.scm:352 +#: gnu/packages/gtk.scm:349 msgid "" "LibThai is a set of Thai language support routines aimed to\n" "ease developers’ tasks to incorporate Thai language support in their\n" "applications." msgstr "" -#: gnu/packages/gtk.scm:407 +#: gnu/packages/gtk.scm:404 msgid "" "Pango is a library for laying out and rendering of text, with\n" "an emphasis on internationalization. Pango can be used anywhere that text\n" @@ -7346,21 +7469,21 @@ msgid "" "handling for GTK+-2.x." msgstr "" -#: gnu/packages/gtk.scm:461 +#: gnu/packages/gtk.scm:458 msgid "" "Pangox was a X backend to pango. It is now obsolete and no\n" "longer provided by recent pango releases. pangox-compat provides the\n" "functions which were removed." msgstr "" -#: gnu/packages/gtk.scm:498 +#: gnu/packages/gtk.scm:495 msgid "" "Ganv is an interactive GTK+ widget for interactive “boxes and lines” or\n" "graph-like environments, e.g. modular synths or finite state machine\n" "diagrams." msgstr "" -#: gnu/packages/gtk.scm:554 +#: gnu/packages/gtk.scm:551 msgid "" "GtkSourceView is a portable C library that extends the standard GTK+\n" "framework for multiline text editing with support for configurable syntax\n" @@ -7368,33 +7491,33 @@ msgid "" "printing and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:602 +#: gnu/packages/gtk.scm:599 msgid "" "GtkSourceView is a text widget that extends the standard\n" "GTK+ text widget GtkTextView. It improves GtkTextView by implementing syntax\n" "highlighting and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:698 +#: gnu/packages/gtk.scm:695 msgid "" "GdkPixbuf is a library that loads image data in various\n" "formats and stores it as linear buffers in memory. The buffers can then be\n" "scaled, composited, modified, saved, or rendered." msgstr "" -#: gnu/packages/gtk.scm:746 +#: gnu/packages/gtk.scm:743 msgid "" "The Assistive Technology Service Provider Interface, core components,\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:827 +#: gnu/packages/gtk.scm:824 msgid "" "The Assistive Technology Service Provider Interface\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:921 +#: gnu/packages/gtk.scm:918 msgid "" "GTK+, or the GIMP Toolkit, is a multi-platform toolkit for creating\n" "graphical user interfaces. Offering a complete set of widgets, GTK+ is\n" @@ -7402,14 +7525,14 @@ msgid "" "application suites." msgstr "" -#: gnu/packages/gtk.scm:1234 +#: gnu/packages/gtk.scm:1238 msgid "" "GTK is a multi-platform toolkit for creating graphical user\n" "interfaces. Offering a complete set of widgets, GTK is suitable for projects\n" "ranging from small one-off tools to complete application suites." msgstr "" -#: gnu/packages/gtk.scm:1308 +#: gnu/packages/gtk.scm:1312 msgid "" "Guile-Cairo wraps the Cairo graphics library for Guile Scheme.\n" "Guile-Cairo is complete, wrapping almost all of the Cairo API. It is API\n" @@ -7419,13 +7542,13 @@ msgid "" "exceptions, macros, and a dynamic programming environment." msgstr "" -#: gnu/packages/gtk.scm:1389 +#: gnu/packages/gtk.scm:1393 msgid "" "Guile-RSVG wraps the RSVG library for Guile, allowing you to render SVG\n" "images onto Cairo surfaces." msgstr "" -#: gnu/packages/gtk.scm:1456 +#: gnu/packages/gtk.scm:1460 msgid "" "Guile-Present defines a declarative vocabulary for presentations,\n" "together with tools to render presentation documents as SVG or PDF.\n" @@ -7434,31 +7557,31 @@ msgid "" "documents." msgstr "" -#: gnu/packages/gtk.scm:1522 +#: gnu/packages/gtk.scm:1526 msgid "" "Includes guile-clutter, guile-gnome-gstreamer,\n" "guile-gnome-platform (GNOME developer libraries), and guile-gtksourceview." msgstr "" -#: gnu/packages/gtk.scm:1578 +#: gnu/packages/gtk.scm:1582 msgid "" "Cairomm provides a C++ programming interface to the Cairo 2D graphics\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1642 +#: gnu/packages/gtk.scm:1647 msgid "" "Pangomm provides a C++ programming interface to the Pango text rendering\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1704 +#: gnu/packages/gtk.scm:1709 #, fuzzy #| msgid "C++ bindings to the Cairo 2D graphics library" msgid "ATKmm is the C++ binding for the ATK library." msgstr "Bindoj de C++ por la 2D-grafika biblioteko Cairo" -#: gnu/packages/gtk.scm:1784 +#: gnu/packages/gtk.scm:1790 msgid "" "GTKmm is the official C++ interface for the popular GUI\n" "library GTK+. Highlights include typesafe callbacks, and a comprehensive set\n" @@ -7687,7 +7810,7 @@ msgid "" "excellent pavucontrol." msgstr "" -#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:238 +#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:241 msgid "" "Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" "official extension language of the GNU system. It is an implementation of\n" @@ -7696,14 +7819,14 @@ msgid "" "without requiring the source code to be rewritten." msgstr "" -#: gnu/packages/guile.scm:502 +#: gnu/packages/guile.scm:506 msgid "" "This module provides line editing support via the Readline library for\n" "GNU@tie{}Guile. Use the @code{(ice-9 readline)} module and call its\n" "@code{activate-readline} procedure to enable it." msgstr "" -#: gnu/packages/guile.scm:604 +#: gnu/packages/guile.scm:608 msgid "" "Guile-JSON supports parsing and building JSON documents according to the\n" "specification. These are the main features:\n" @@ -7716,18 +7839,18 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/guile.scm:701 +#: gnu/packages/guile.scm:705 msgid "" "Guile bindings to the GDBM key-value storage system, using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:730 +#: gnu/packages/guile.scm:734 #, fuzzy msgid "This package provides Guile bindings to the SQLite database system." msgstr "Tiu ĉi pako provizas ilojn por manipuli dosiersistemojn ext2/ext3/ext4." -#: gnu/packages/guile.scm:769 +#: gnu/packages/guile.scm:773 msgid "" "Guile bytestructures offers a system imitating the type system\n" "of the C programming language, to be used on bytevectors. C's type\n" @@ -7736,34 +7859,34 @@ msgid "" "type system, elevating types to first-class status." msgstr "" -#: gnu/packages/guile.scm:810 +#: gnu/packages/guile.scm:814 msgid "" "This package provides Guile bindings to libgit2, a library to\n" "manipulate repositories of the Git version control system." msgstr "" -#: gnu/packages/guile.scm:846 +#: gnu/packages/guile.scm:850 msgid "" "This package provides Guile bindings for zlib, a lossless\n" "data-compression library. The bindings are written in pure Scheme by using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:877 +#: gnu/packages/guile.scm:881 msgid "" "This package provides Guile bindings for lzlib, a C library for\n" "in-memory LZMA compression and decompression. The bindings are written in\n" "pure Scheme by using Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:904 +#: gnu/packages/guile.scm:908 #, fuzzy msgid "" "This package provides a GNU Guile interface to the zstd (``zstandard'')\n" "compression library." msgstr "Tiu ĉi pako provizas datumbazan interfacon por Perl." -#: gnu/packages/guile.scm:926 +#: gnu/packages/guile.scm:930 msgid "" "Guile-LZMA is a Guile wrapper for the liblzma (XZ)\n" "library. It exposes an interface similar to other Guile compression\n" @@ -8350,7 +8473,7 @@ msgid "" "It supports JPEG, PNG and GIF formats." msgstr "" -#: gnu/packages/image-viewers.scm:640 +#: gnu/packages/image-viewers.scm:643 msgid "" "Luminance HDR (formerly QtPFSGui) is a graphical user interface\n" "application that aims to provide a workflow for high dynamic range (HDR)\n" @@ -8366,7 +8489,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:735 +#: gnu/packages/image-viewers.scm:738 msgid "" "MComix is a customizable image viewer that specializes as\n" "a comic and manga reader. It supports a variety of container formats\n" @@ -8375,7 +8498,7 @@ msgid "" "For PDF support, install the @emph{mupdf} package." msgstr "" -#: gnu/packages/image-viewers.scm:775 +#: gnu/packages/image-viewers.scm:778 msgid "" "qView is a Qt image viewer designed with visually\n" "minimalism and usability in mind. Its features include animated GIF\n" @@ -8383,14 +8506,14 @@ msgid "" "preloading." msgstr "" -#: gnu/packages/image-viewers.scm:799 +#: gnu/packages/image-viewers.scm:802 msgid "" "Chafa is a command-line utility that converts all kinds of images,\n" "including animated GIFs, into ANSI/Unicode character output that can be\n" "displayed in a terminal." msgstr "" -#: gnu/packages/image-viewers.scm:847 +#: gnu/packages/image-viewers.scm:850 msgid "" "@code{imv} is a command line image viewer intended for use\n" "with tiling window managers. Features include:\n" @@ -8412,7 +8535,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:924 +#: gnu/packages/image-viewers.scm:927 msgid "" "Quick Image Viewer is a small and fast GDK/Imlib2 image viewer.\n" "Features include zoom, maxpect, scale down, fullscreen, slideshow, delete,\n" @@ -8421,7 +8544,7 @@ msgid "" "to set X desktop background." msgstr "" -#: gnu/packages/image-viewers.scm:968 +#: gnu/packages/image-viewers.scm:971 msgid "" "pqiv is a GTK-3 based command-line image viewer with a minimal UI.\n" "It is highly customizable, can be fully controlled from scripts, and has\n" @@ -8429,7 +8552,7 @@ msgid "" "archives." msgstr "" -#: gnu/packages/image-viewers.scm:1025 +#: gnu/packages/image-viewers.scm:1028 msgid "" "Nomacs is a simple to use image lounge featuring\n" "semi-transparent widgets that display additional information such as metadata,\n" @@ -8442,7 +8565,7 @@ msgid "" "synchronization of multiple instances." msgstr "" -#: gnu/packages/image-viewers.scm:1070 +#: gnu/packages/image-viewers.scm:1073 msgid "xzgv is a fast image viewer that provides extensive keyboard support." msgstr "" @@ -8707,11 +8830,11 @@ msgid "" "Math for editing mathematics." msgstr "" -#: gnu/packages/linux.scm:604 +#: gnu/packages/linux.scm:625 msgid "Headers of the Linux-Libre kernel." msgstr "Kapdosieroj de la kerno Linux-Libre." -#: gnu/packages/linux.scm:905 +#: gnu/packages/linux.scm:935 msgid "" "GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.\n" "It has been modified to remove all non-free binary blobs." @@ -8719,7 +8842,7 @@ msgstr "" "GNU Linux-Libre estas libera variaĵo de la linuksa kerno.\n" "Ĝi estas modifita por forigi ĉiujn ne-liberajn ciferecajn senkodumaĵojn." -#: gnu/packages/linux.scm:1215 +#: gnu/packages/linux.scm:1252 msgid "" "This simple Linux kernel module allows calls from user space to any\n" "@acronym{ACPI, Advanced Configuration and Power Interface} method provided by\n" @@ -8731,7 +8854,7 @@ msgid "" "and should be used with caution, especially on untested models." msgstr "" -#: gnu/packages/linux.scm:1283 +#: gnu/packages/linux.scm:1320 msgid "" "CoreFreq is a CPU monitor that reports low-level processor settings and\n" "performance data with notably high precision by using a loadable Linux kernel\n" @@ -8762,7 +8885,7 @@ msgid "" "@file{README.md} before loading it." msgstr "" -#: gnu/packages/linux.scm:1332 +#: gnu/packages/linux.scm:1369 msgid "" "This is the Linux kernel @acronym{ACPI, Advanced Configuration and Power\n" "Interface} platform driver for the @acronym{EC, Embedded Controller} firmware\n" @@ -8771,13 +8894,13 @@ msgid "" "and the notification, WiFi, and Bluetooth LED." msgstr "" -#: gnu/packages/linux.scm:1375 +#: gnu/packages/linux.scm:1413 msgid "" "This is Realtek's RTL8821CE Linux driver for wireless\n" "network adapters." msgstr "" -#: gnu/packages/linux.scm:1407 +#: gnu/packages/linux.scm:1445 msgid "" "This is Realtek's rtl8812au Linux driver for USB 802.11n wireless\n" "network adapters, modified by the aircrack-ng project to support monitor mode\n" @@ -8785,7 +8908,7 @@ msgid "" "RTL8812AU, RTL8821AU, and RTL8814AU chips." msgstr "" -#: gnu/packages/linux.scm:1431 +#: gnu/packages/linux.scm:1469 msgid "" "The @acronym{VHBA, Virtual SCSI Host Bus Adapter} module is the link\n" "between the CDemu user-space daemon and the kernel Linux. It acts as a\n" @@ -8794,13 +8917,13 @@ msgid "" "emulate optical devices such as DVD and CD-ROM drives." msgstr "" -#: gnu/packages/linux.scm:1460 +#: gnu/packages/linux.scm:1497 msgid "" "The bbswitch module provides a way to toggle the Nvidia\n" "graphics card on Optimus laptops." msgstr "" -#: gnu/packages/linux.scm:1501 +#: gnu/packages/linux.scm:1536 msgid "" "This package provides two Linux kernel drivers, ddcci and\n" "ddcci-backlight, that allows the control of DDC/CI monitors through the sysfs\n" @@ -8810,7 +8933,7 @@ msgid "" "supported under @file{/sys/class/backlight/}." msgstr "" -#: gnu/packages/linux.scm:1528 +#: gnu/packages/linux.scm:1563 msgid "" "This Linux module creates virtual video devices. @acronym{V4L2, Video\n" "for Linux 2} applications will treat these as ordinary video devices but read\n" @@ -8822,7 +8945,7 @@ msgid "" "application by hooking GStreamer into the loopback device." msgstr "" -#: gnu/packages/linux.scm:1569 +#: gnu/packages/linux.scm:1604 msgid "" "This package provides a driver for the XBox One S Wireless controller\n" "and some newer models when connected via Bluetooth. In addition to the included\n" @@ -8830,7 +8953,7 @@ msgid "" "which need to be installed separately." msgstr "" -#: gnu/packages/linux.scm:1622 +#: gnu/packages/linux.scm:1657 msgid "" "A *Free* project to implement OSF's RFC 86.0.\n" "Pluggable authentication modules are small shared object files that can\n" @@ -8838,19 +8961,19 @@ msgid "" "at login. Local and dynamic reconfiguration are its key features." msgstr "" -#: gnu/packages/linux.scm:1683 +#: gnu/packages/linux.scm:1718 #, fuzzy msgid "This package provides a PAM interface using @code{ctypes}." msgstr "Tiu ĉi pako provizas datumbazan interfacon por Perl." -#: gnu/packages/linux.scm:1712 +#: gnu/packages/linux.scm:1747 msgid "" "This package provides a PAM module that hands over your\n" "login password to @code{gpg-agent}. This can be useful if you are using a\n" "GnuPG-based password manager like @code{pass}." msgstr "" -#: gnu/packages/linux.scm:1741 +#: gnu/packages/linux.scm:1776 msgid "" "This package contains utilities for accessing the powercap\n" "Linux kernel feature through sysfs. It includes an implementation for working\n" @@ -8858,7 +8981,7 @@ msgid "" "It provides the commands @code{powercap-info} and @code{powercap-set}." msgstr "" -#: gnu/packages/linux.scm:1772 +#: gnu/packages/linux.scm:1807 msgid "" "Powerstat measures and reports your computer's power consumption in real\n" "time. On mobile PCs, it uses ACPI battery information to measure the power\n" @@ -8875,28 +8998,28 @@ msgid "" "deviation, and minimum and maximum values. It can show a nice histogram too." msgstr "" -#: gnu/packages/linux.scm:1810 +#: gnu/packages/linux.scm:1845 msgid "" "This PSmisc package is a set of some small useful utilities that\n" "use the proc file system. We're not about changing the world, but\n" "providing the system administrator with some help in common tasks." msgstr "" -#: gnu/packages/linux.scm:1948 +#: gnu/packages/linux.scm:1984 msgid "" "Util-linux is a diverse collection of Linux kernel\n" "utilities. It provides dmesg and includes tools for working with file systems,\n" "block devices, UUIDs, TTYs, and many other tools." msgstr "" -#: gnu/packages/linux.scm:1986 +#: gnu/packages/linux.scm:2037 msgid "" "ddate displays the Discordian date and holidays of a given date.\n" "The Discordian calendar was made popular by the \"Illuminatus!\" trilogy\n" "by Robert Shea and Robert Anton Wilson." msgstr "" -#: gnu/packages/linux.scm:2040 +#: gnu/packages/linux.scm:2091 msgid "" "The kernel Linux's @dfn{frame buffers} provide a simple interface to\n" "different kinds of graphic displays. The @command{fbset} utility can query and\n" @@ -8904,7 +9027,7 @@ msgid "" "parameters." msgstr "" -#: gnu/packages/linux.scm:2085 +#: gnu/packages/linux.scm:2136 msgid "" "Procps is the package that has a bunch of small useful utilities\n" "that give information about processes using the Linux /proc file system.\n" @@ -8912,11 +9035,11 @@ msgid "" "slabtop, tload, top, vmstat, w, watch and sysctl." msgstr "" -#: gnu/packages/linux.scm:2130 +#: gnu/packages/linux.scm:2181 msgid "Tools for working with USB devices, such as lsusb." msgstr "Iloj por labori kun USB-aparatoj, kiel lsusb." -#: gnu/packages/linux.scm:2154 +#: gnu/packages/linux.scm:2205 msgid "" "The USB/IP protocol enables to pass USB device from a server to\n" "a client over the network. The server is a machine which shares an\n" @@ -8929,23 +9052,23 @@ msgid "" "module." msgstr "" -#: gnu/packages/linux.scm:2237 +#: gnu/packages/linux.scm:2288 msgid "This package provides tools for manipulating ext2/ext3/ext4 file systems." msgstr "Tiu ĉi pako provizas ilojn por manipuli dosiersistemojn ext2/ext3/ext4." -#: gnu/packages/linux.scm:2279 +#: gnu/packages/linux.scm:2330 msgid "" "This package provides statically-linked e2fsck command taken\n" "from the e2fsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:2302 +#: gnu/packages/linux.scm:2353 msgid "" "Extundelete is a set of tools that can recover deleted files from an\n" "ext3 or ext4 partition." msgstr "" -#: gnu/packages/linux.scm:2335 +#: gnu/packages/linux.scm:2386 msgid "" "Zerofree finds the unallocated blocks with non-zero value content in an\n" "ext2, ext3, or ext4 file system and fills them with zeroes (or another value).\n" @@ -8953,33 +9076,33 @@ msgid "" "Zerofree requires the file system to be unmounted or mounted read-only." msgstr "" -#: gnu/packages/linux.scm:2380 +#: gnu/packages/linux.scm:2431 msgid "" "strace is a system call tracer, i.e. a debugging tool which prints out a\n" "trace of all the system calls made by a another process/program." msgstr "" -#: gnu/packages/linux.scm:2403 +#: gnu/packages/linux.scm:2454 msgid "" "ltrace intercepts and records dynamic library calls which are called by\n" "an executed process and the signals received by that process. It can also\n" "intercept and print the system calls executed by the program." msgstr "" -#: gnu/packages/linux.scm:2428 +#: gnu/packages/linux.scm:2479 msgid "" "This package contains Advanced Linux Sound Architecture Use Case Manager\n" "configuration of audio input/output names and routing for specific audio\n" "hardware." msgstr "" -#: gnu/packages/linux.scm:2452 +#: gnu/packages/linux.scm:2503 msgid "" "This package contains Advanced Linux Sound Architecture topology\n" "configuration files that can be used for specific audio hardware." msgstr "" -#: gnu/packages/linux.scm:2499 gnu/packages/linux.scm:2548 +#: gnu/packages/linux.scm:2550 gnu/packages/linux.scm:2599 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system." @@ -8987,7 +9110,7 @@ msgstr "" "La Altnivela Linuksa Sona Arkitekturo (ALSA) provizas sonan kaj\n" "MIDI-an funkciojn por linuks-surbazita operaci-sistemo." -#: gnu/packages/linux.scm:2617 +#: gnu/packages/linux.scm:2668 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system. This package enhances ALSA\n" @@ -8996,7 +9119,7 @@ msgid "" "external rate conversion." msgstr "" -#: gnu/packages/linux.scm:2655 +#: gnu/packages/linux.scm:2706 msgid "" "@command{iptables} is the user-space command line program used to\n" "configure the Linux 2.4.x and later IPv4 packet filtering ruleset\n" @@ -9008,7 +9131,7 @@ msgid "" "Both commands are targeted at system administrators." msgstr "" -#: gnu/packages/linux.scm:2691 +#: gnu/packages/linux.scm:2742 msgid "" "This simple daemon feeds entropy from the CPU Jitter @acronym{RNG, random\n" "number generator} core to the kernel Linux's entropy estimator. This prevents\n" @@ -9030,7 +9153,7 @@ msgid "" "early boot when entropy may be low, especially in virtualised environments." msgstr "" -#: gnu/packages/linux.scm:2727 +#: gnu/packages/linux.scm:2778 msgid "" "@command{lsscsi} lists SCSI logical units or SCSI targets. It can\n" "also list NVMe namespaces or controllers and show the relationship between a\n" @@ -9038,7 +9161,7 @@ msgid "" "name." msgstr "" -#: gnu/packages/linux.scm:2751 +#: gnu/packages/linux.scm:2802 msgid "" "ebtables is an application program used to set up and maintain the\n" "tables of rules (inside the Linux kernel) that inspect Ethernet frames. It is\n" @@ -9046,7 +9169,7 @@ msgid "" "that the Ethernet protocol is much simpler than the IP protocol." msgstr "" -#: gnu/packages/linux.scm:2816 +#: gnu/packages/linux.scm:2867 msgid "" "Iproute2 is a collection of utilities for controlling TCP/IP networking\n" "and traffic with the Linux kernel. The most important of these are\n" @@ -9058,7 +9181,7 @@ msgid "" "inadequately in modern network environments, and both should be deprecated." msgstr "" -#: gnu/packages/linux.scm:2896 +#: gnu/packages/linux.scm:2947 msgid "" "This package includes the important tools for controlling the network\n" "subsystem of the Linux kernel. This includes arp, ifconfig, netstat, rarp and\n" @@ -9067,7 +9190,7 @@ msgid "" "configuration (iptunnel, ipmaddr)." msgstr "" -#: gnu/packages/linux.scm:2947 +#: gnu/packages/linux.scm:2989 msgid "" "Libcap2 provides a programming interface to POSIX capabilities on\n" "Linux-based operating systems." @@ -9075,7 +9198,7 @@ msgstr "" "Libcap2 provizas program-interfacon por kapabloj POSIX en\n" "operaciumaj sistemoj bazitaj sur Linukso." -#: gnu/packages/linux.scm:2974 +#: gnu/packages/linux.scm:3016 msgid "" "Utilities for Linux's Ethernet bridging facilities. A bridge is a way\n" "to connect two Ethernet segments together in a protocol independent way.\n" @@ -9084,7 +9207,7 @@ msgid "" "transparently through a bridge." msgstr "" -#: gnu/packages/linux.scm:3025 +#: gnu/packages/linux.scm:3067 msgid "" "The libnl suite is a collection of libraries providing APIs to netlink\n" "protocol based Linux kernel interfaces. Netlink is an IPC mechanism primarily\n" @@ -9093,13 +9216,13 @@ msgid "" "configuration and monitoring interfaces." msgstr "" -#: gnu/packages/linux.scm:3099 +#: gnu/packages/linux.scm:3141 msgid "" "iw is a new nl80211 based CLI configuration utility for wireless\n" "devices. It replaces @code{iwconfig}, which is deprecated." msgstr "" -#: gnu/packages/linux.scm:3149 +#: gnu/packages/linux.scm:3191 msgid "" "PowerTOP is a Linux tool to diagnose issues with power consumption and\n" "power management. In addition to being a diagnostic tool, PowerTOP also has\n" @@ -9108,7 +9231,7 @@ msgid "" "settings." msgstr "" -#: gnu/packages/linux.scm:3176 +#: gnu/packages/linux.scm:3218 msgid "" "Aumix adjusts an audio mixer from X, the console, a terminal,\n" "the command line or a script." @@ -9116,13 +9239,13 @@ msgstr "" "Aumix agordas son-miksilo el X, la konzolo, terminalo,\n" "la komandlinio aŭ el skripto." -#: gnu/packages/linux.scm:3207 +#: gnu/packages/linux.scm:3249 msgid "" "Iotop is a Python program with a top like user interface to show the\n" "processes currently causing I/O." msgstr "" -#: gnu/packages/linux.scm:3265 +#: gnu/packages/linux.scm:3307 msgid "" "As a consequence of its monolithic design, file system code for Linux\n" "normally goes into the kernel itself---which is not only a robustness issue,\n" @@ -9132,7 +9255,7 @@ msgid "" "user-space processes." msgstr "" -#: gnu/packages/linux.scm:3358 +#: gnu/packages/linux.scm:3400 msgid "" "UnionFS-FUSE is a flexible union file system implementation in user\n" "space, using the FUSE library. Mounting a union file system allows you to\n" @@ -9140,7 +9263,7 @@ msgid "" "UnionFS-FUSE additionally supports copy-on-write." msgstr "" -#: gnu/packages/linux.scm:3437 +#: gnu/packages/linux.scm:3479 msgid "" "This is a file system client based on the SSH File Transfer Protocol.\n" "Since most SSH servers already support this protocol it is very easy to set\n" @@ -9148,7 +9271,7 @@ msgid "" "file system is as easy as logging into the server with an SSH client." msgstr "" -#: gnu/packages/linux.scm:3464 +#: gnu/packages/linux.scm:3506 msgid "" "archivemount is a FUSE-based file system for Unix variants,\n" "including Linux. Its purpose is to mount archives (i.e. tar, tar.gz, etc.) to a\n" @@ -9157,7 +9280,7 @@ msgid "" "compressed, transparent to other programs, without decompressing them." msgstr "" -#: gnu/packages/linux.scm:3495 +#: gnu/packages/linux.scm:3537 msgid "" "NUMA stands for Non-Uniform Memory Access, in other words a system whose\n" "memory is not all in one place. The @command{numactl} program allows you to\n" @@ -9170,26 +9293,26 @@ msgid "" "NUMA performance on your system." msgstr "" -#: gnu/packages/linux.scm:3533 +#: gnu/packages/linux.scm:3575 msgid "" "Kbd-neo provides the Neo2 keyboard layout for use with\n" "@command{loadkeys(1)} from @code{kbd(4)}." msgstr "" -#: gnu/packages/linux.scm:3599 +#: gnu/packages/linux.scm:3641 msgid "" "This package contains keytable files and keyboard utilities compatible\n" "for systems using the Linux kernel. This includes commands such as\n" "@code{loadkeys}, @code{setfont}, @code{kbdinfo}, and @code{chvt}." msgstr "" -#: gnu/packages/linux.scm:3662 +#: gnu/packages/linux.scm:3704 msgid "" "The inotify-tools packages provides a C library and command-line tools\n" "to use Linux' inotify mechanism, which allows file accesses to be monitored." msgstr "" -#: gnu/packages/linux.scm:3714 +#: gnu/packages/linux.scm:3756 msgid "" "Kmod is a set of tools to handle common tasks with Linux\n" "kernel modules like insert, remove, list, check properties, resolve\n" @@ -9200,21 +9323,21 @@ msgid "" "from the module-init-tools project." msgstr "" -#: gnu/packages/linux.scm:3769 +#: gnu/packages/linux.scm:3812 msgid "" "Early OOM is a minimalist out of memory (OOM) daemon that\n" "runs in user space and provides a more responsive and configurable alternative\n" "to the in-kernel OOM killer." msgstr "" -#: gnu/packages/linux.scm:3867 +#: gnu/packages/linux.scm:3892 msgid "" "Udev is a daemon which dynamically creates and removes\n" "device nodes from /dev/, handles hotplug events and loads drivers at boot\n" "time." msgstr "" -#: gnu/packages/linux.scm:3897 +#: gnu/packages/linux.scm:3922 msgid "" "Python-evdev provides bindings to the generic input event interface in\n" "Linux. The @code{evdev} interface serves the purpose of passing events\n" @@ -9226,7 +9349,7 @@ msgid "" "devices that can inject events directly into the input subsystem." msgstr "" -#: gnu/packages/linux.scm:3930 +#: gnu/packages/linux.scm:3955 msgid "" "Interception Tools provides a composable infrastructure on top of\n" "@code{libudev} and @code{libevdev}. The following utilities are provided:\n" @@ -9239,33 +9362,33 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/linux.scm:3979 +#: gnu/packages/linux.scm:4004 msgid "" "Dual Function Keys is a plugin for @code{interception-tools} that allows\n" "one to send arbitrary keycodes when a given key is tapped or held." msgstr "" -#: gnu/packages/linux.scm:4056 +#: gnu/packages/linux.scm:4081 msgid "" "LVM2 is the logical volume management tool set for Linux-based systems.\n" "This package includes the user-space libraries and tools, including the device\n" "mapper. Kernel components are part of Linux-libre." msgstr "" -#: gnu/packages/linux.scm:4122 +#: gnu/packages/linux.scm:4147 msgid "" "A suite of tools for manipulating the metadata of the\n" "dm-thin, dm-cache and dm-era device-mapper targets." msgstr "" -#: gnu/packages/linux.scm:4144 +#: gnu/packages/linux.scm:4169 msgid "" "This package provides an advanced monitor of critical system\n" "resources, supervises the heartbeat of processes, records deadline\n" "transgressions, and initiates a controlled reset if needed." msgstr "" -#: gnu/packages/linux.scm:4189 +#: gnu/packages/linux.scm:4214 msgid "" "Wireless Tools are used to manipulate the now-deprecated\n" "Linux Wireless Extensions; consider using @code{iw} instead. The Wireless\n" @@ -9274,35 +9397,35 @@ msgid "" "interface." msgstr "" -#: gnu/packages/linux.scm:4280 +#: gnu/packages/linux.scm:4305 msgid "" "The Central Regulatory Domain Agent (CRDA) acts as the udev helper for\n" "communication between the kernel Linux and user space for regulatory\n" "compliance." msgstr "" -#: gnu/packages/linux.scm:4350 +#: gnu/packages/linux.scm:4375 msgid "" "This package contains the wireless regulatory database for the Central\n" "Regulatory Database Agent (CRDA). The database contains information on\n" "country-specific regulations for the wireless spectrum." msgstr "" -#: gnu/packages/linux.scm:4424 +#: gnu/packages/linux.scm:4449 msgid "" "Lm-sensors is a hardware health monitoring package for Linux. It allows\n" "you to access information from temperature, voltage, and fan speed sensors.\n" "It works with most newer systems." msgstr "" -#: gnu/packages/linux.scm:4444 +#: gnu/packages/linux.scm:4469 msgid "" "@command{iucode_tool} is a utility to work with microcode packages for\n" "Intel processors. It can convert between formats, extract specific versions,\n" "create a firmware image suitable for the Linux kernel, and more." msgstr "" -#: gnu/packages/linux.scm:4475 +#: gnu/packages/linux.scm:4501 msgid "" "The i2c-tools package contains a heterogeneous set of I2C tools for\n" "Linux: a bus probing tool, a chip dumper, register-level SMBus access helpers,\n" @@ -9310,14 +9433,14 @@ msgid "" "SMBus access." msgstr "" -#: gnu/packages/linux.scm:4514 +#: gnu/packages/linux.scm:4540 msgid "" "Xsensors reads data from the libsensors library regarding hardware\n" "health such as temperature, voltage and fan speed and displays the information\n" "in a digital read-out." msgstr "" -#: gnu/packages/linux.scm:4568 +#: gnu/packages/linux.scm:4600 msgid "" "perf is a tool suite for profiling using hardware performance counters,\n" "with support in the Linux kernel. perf can instrument CPU performance\n" @@ -9326,7 +9449,7 @@ msgid "" "particular the @code{perf} command." msgstr "" -#: gnu/packages/linux.scm:4593 +#: gnu/packages/linux.scm:4625 msgid "" "pflask is a simple tool for creating Linux namespace\n" "containers. It can be used for running a command or even booting an OS inside\n" @@ -9335,7 +9458,7 @@ msgid "" "thanks to the use of namespaces." msgstr "" -#: gnu/packages/linux.scm:4678 +#: gnu/packages/linux.scm:4710 msgid "" "Singularity is a container platform supporting a number of\n" "container image formats. It can build SquashFS container images or import\n" @@ -9343,7 +9466,7 @@ msgid "" "isolation or root privileges." msgstr "" -#: gnu/packages/linux.scm:4711 +#: gnu/packages/linux.scm:4742 msgid "" "@command{hdparm} is a command-line utility to control ATA controllers and\n" "disk drives. It can increase performance and/or reliability by careful tuning\n" @@ -9357,21 +9480,21 @@ msgid "" "Translation (@dfn{SAT}) are also supported." msgstr "" -#: gnu/packages/linux.scm:4750 +#: gnu/packages/linux.scm:4782 msgid "" "Nvme-cli is a utility to provide standards compliant tooling\n" "for NVM-Express drives. It was made specifically for Linux as it relies on the\n" "IOCTLs defined by the mainline kernel driver." msgstr "" -#: gnu/packages/linux.scm:4776 +#: gnu/packages/linux.scm:4808 msgid "" "rfkill is a simple tool for accessing the rfkill device interface,\n" "which is used to enable and disable wireless networking devices, typically\n" "WLAN, Bluetooth and mobile broadband." msgstr "" -#: gnu/packages/linux.scm:4798 +#: gnu/packages/linux.scm:4830 msgid "" "@code{acpi} attempts to replicate the functionality of the\n" "\"old\" @code{apm} command on ACPI systems, including battery and thermal\n" @@ -9379,7 +9502,7 @@ msgid "" "about ACPI devices." msgstr "" -#: gnu/packages/linux.scm:4819 +#: gnu/packages/linux.scm:4851 msgid "" "acpid is designed to notify user-space programs of Advanced\n" "Configuration and Power Interface (ACPI) events. acpid should be started\n" @@ -9388,28 +9511,28 @@ msgid "" "specified in /etc/acpi/events and execute the rules that match the event." msgstr "" -#: gnu/packages/linux.scm:4843 +#: gnu/packages/linux.scm:4875 msgid "" "These are a set of utilities built upon sysfs, a virtual file system in\n" "Linux kernel versions 2.5+ that exposes a system's device tree. The package\n" "also contains the libsysfs library." msgstr "" -#: gnu/packages/linux.scm:4886 +#: gnu/packages/linux.scm:4918 msgid "" "The cpufrequtils suite contains utilities to retrieve CPU frequency\n" "information, and set the CPU frequency if supported, using the cpufreq\n" "capabilities of the Linux kernel." msgstr "" -#: gnu/packages/linux.scm:4922 +#: gnu/packages/linux.scm:4954 msgid "" "This package provides many of the missing pieces in GNU\n" "libc. Most notably the string functions: strlcpy(3), strlcat(3) and the *BSD\n" "sys/queue.h and sys/tree.h API's." msgstr "" -#: gnu/packages/linux.scm:4945 +#: gnu/packages/linux.scm:4977 #, fuzzy #| msgid "This package provides an database interface for Perl." msgid "" @@ -9417,7 +9540,7 @@ msgid "" "epoll family of APIs." msgstr "Tiu ĉi pako provizas datumbazan interfacon por Perl." -#: gnu/packages/linux.scm:4966 +#: gnu/packages/linux.scm:4998 msgid "" "Libraw1394 is the only supported interface to the kernel side raw1394 of\n" "the Linux IEEE-1394 subsystem, which provides direct access to the connected\n" @@ -9426,26 +9549,26 @@ msgid "" "protocol in question." msgstr "" -#: gnu/packages/linux.scm:4992 +#: gnu/packages/linux.scm:5024 msgid "" "Libavc1394 is a programming interface to the AV/C specification from\n" "the 1394 Trade Association. AV/C stands for Audio/Video Control." msgstr "" -#: gnu/packages/linux.scm:5016 +#: gnu/packages/linux.scm:5048 msgid "" "The libiec61883 library provides a higher level API for streaming DV,\n" "MPEG-2 and audio over Linux IEEE 1394." msgstr "" -#: gnu/packages/linux.scm:5067 +#: gnu/packages/linux.scm:5099 msgid "" "mdadm is a tool for managing Linux Software RAID arrays. It can create,\n" "assemble, report on, and monitor arrays. It can also move spares between raid\n" "arrays when needed." msgstr "" -#: gnu/packages/linux.scm:5199 +#: gnu/packages/linux.scm:5231 msgid "" "This package provides the following binaries to drive the\n" "Linux Device Mapper multipathing driver:\n" @@ -9458,66 +9581,66 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:5244 +#: gnu/packages/linux.scm:5288 msgid "" "This library enables userspace to use Linux kernel asynchronous I/O\n" "system calls, important for the performance of databases and other advanced\n" "applications." msgstr "" -#: gnu/packages/linux.scm:5287 +#: gnu/packages/linux.scm:5331 msgid "" "Blktrace is a block layer IO tracing mechanism which provides\n" "detailed information about request queue operations to user space. It extracts\n" "event traces from the kernel (via the relaying through the debug file system)." msgstr "" -#: gnu/packages/linux.scm:5312 +#: gnu/packages/linux.scm:5356 msgid "" "The SBC is a digital audio encoder and decoder used to transfer data to\n" "Bluetooth audio output devices like headphones or loudspeakers." msgstr "" -#: gnu/packages/linux.scm:5379 +#: gnu/packages/linux.scm:5423 msgid "" "BlueZ provides support for the core Bluetooth layers and protocols. It\n" "is flexible, efficient and uses a modular implementation." msgstr "" -#: gnu/packages/linux.scm:5403 +#: gnu/packages/linux.scm:5447 msgid "" "This package provides a FUSE-based file system that provides read and\n" "write access to exFAT devices." msgstr "" -#: gnu/packages/linux.scm:5426 +#: gnu/packages/linux.scm:5470 msgid "" "FuseISO is a FUSE module to mount ISO file system images (.iso, .nrg,\n" ".bin, .mdf and .img files). It supports plain ISO9660 Level 1 and 2, Rock\n" "Ridge, Joliet, and zisofs." msgstr "" -#: gnu/packages/linux.scm:5480 +#: gnu/packages/linux.scm:5524 msgid "" "The GPM (general-purpose mouse) daemon is a mouse server for\n" "applications running on the Linux console. It allows users to select items\n" "and copy/paste text in the console and in xterm." msgstr "" -#: gnu/packages/linux.scm:5551 +#: gnu/packages/linux.scm:5595 msgid "" "Btrfs is a @dfn{copy-on-write} (CoW) file system for Linux\n" "aimed at implementing advanced features while focusing on fault tolerance,\n" "repair and easy administration." msgstr "" -#: gnu/packages/linux.scm:5585 +#: gnu/packages/linux.scm:5629 msgid "" "This package provides the statically-linked @command{btrfs}\n" "from the btrfs-progs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5617 +#: gnu/packages/linux.scm:5661 msgid "" "Cramfs is a Linux file system designed to be simple, small,\n" "and to compress things well. It is used on a number of embedded systems and\n" @@ -9525,7 +9648,7 @@ msgid "" "blocks and random block placement." msgstr "" -#: gnu/packages/linux.scm:5652 +#: gnu/packages/linux.scm:5696 msgid "" "@command{compsize} takes a list of files (given as\n" "arguments) on a Btrfs file system and measures used compression types and\n" @@ -9542,20 +9665,20 @@ msgid "" "obviously it can be shared with files outside our set)." msgstr "" -#: gnu/packages/linux.scm:5700 +#: gnu/packages/linux.scm:5744 msgid "" "F2FS, the Flash-Friendly File System, is a modern file system\n" "designed to be fast and durable on flash devices such as solid-state\n" "disks and SD cards. This package provides the userland utilities." msgstr "" -#: gnu/packages/linux.scm:5790 +#: gnu/packages/linux.scm:5834 msgid "" "This package provides statically-linked fsck.f2fs command taken\n" "from the f2fs-tools package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5821 +#: gnu/packages/linux.scm:5865 msgid "" "Prevents shock damage to the internal spinning hard drive(s) of some\n" "HP and Dell laptops. When sudden movement is detected, all input/output\n" @@ -9565,7 +9688,7 @@ msgid "" "feature, and a laptop with an accelerometer. It has no effect on SSDs." msgstr "" -#: gnu/packages/linux.scm:5879 +#: gnu/packages/linux.scm:5923 msgid "" "Thinkfan is a simple fan control program. It reads temperatures,\n" "checks them against configured limits and switches to appropriate (also\n" @@ -9574,7 +9697,7 @@ msgid "" "from userspace." msgstr "" -#: gnu/packages/linux.scm:5935 +#: gnu/packages/linux.scm:5979 msgid "" "Tpacpi-bat is a command-line interface to control battery charging on\n" "@uref{https://github.com/teleshoes/tpacpi-bat/wiki/Supported-Hardware, Lenovo\n" @@ -9589,7 +9712,7 @@ msgid "" "supported." msgstr "" -#: gnu/packages/linux.scm:5979 +#: gnu/packages/linux.scm:6023 msgid "" "Tmon is a tool to interact with the complex thermal subsystem of the\n" "kernel Linux. It helps visualize thermal relationships and real-time thermal\n" @@ -9606,7 +9729,7 @@ msgid "" "by hand is no trivial task: @command{tmon} aims to make it understandable." msgstr "" -#: gnu/packages/linux.scm:6021 +#: gnu/packages/linux.scm:6065 msgid "" "Turbostat reports x86 processor topology, frequency, idle power state\n" "statistics, temperature, and power consumption. Some information is unavailable\n" @@ -9621,20 +9744,20 @@ msgid "" "invocations of itself." msgstr "" -#: gnu/packages/linux.scm:6080 +#: gnu/packages/linux.scm:6124 msgid "" "NTFS-3G provides read-write access to NTFS file systems, which are\n" "commonly found on Microsoft Windows. It is implemented as a FUSE file system.\n" "The package provides additional NTFS tools." msgstr "" -#: gnu/packages/linux.scm:6127 +#: gnu/packages/linux.scm:6171 msgid "" "This package provides a statically linked @command{ntfsfix} taken\n" "from the ntfs-3g package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:6174 +#: gnu/packages/linux.scm:6218 msgid "" "This package provides userspace components for the InfiniBand\n" "subsystem of the Linux kernel. Specifically it contains userspace\n" @@ -9654,7 +9777,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6228 +#: gnu/packages/linux.scm:6272 msgid "" "This is a collection of tests written over uverbs intended for\n" "use as a performance micro-benchmark. The tests may be used for hardware or\n" @@ -9670,20 +9793,20 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6270 +#: gnu/packages/linux.scm:6314 msgid "" "Monitor a hardware random number generator, and supply entropy\n" "from that to the system kernel's @file{/dev/random} machinery." msgstr "" -#: gnu/packages/linux.scm:6312 +#: gnu/packages/linux.scm:6356 msgid "" "cpupower is a set of user-space tools that use the cpufreq feature of the\n" "Linux kernel to retrieve and control processor features related to power saving,\n" "such as frequency and voltage scaling." msgstr "" -#: gnu/packages/linux.scm:6344 +#: gnu/packages/linux.scm:6388 msgid "" "@command{x86_energy_perf_policy} displays and updates energy-performance\n" "policy settings specific to Intel Architecture Processors. Settings are\n" @@ -9691,7 +9814,7 @@ msgid "" "cpufreq sub-system is enabled or not." msgstr "" -#: gnu/packages/linux.scm:6370 +#: gnu/packages/linux.scm:6414 msgid "" "haveged generates an unpredictable stream of random numbers for use by\n" "Linux's @file{/dev/random} and @file{/dev/urandom} devices. The kernel's\n" @@ -9709,7 +9832,7 @@ msgid "" "not as a replacement for it." msgstr "" -#: gnu/packages/linux.scm:6456 +#: gnu/packages/linux.scm:6500 msgid "" "eCryptfs is a POSIX-compliant stacked cryptographic file system for Linux.\n" "Each file's cryptographic meta-data is stored inside the file itself, along\n" @@ -9719,7 +9842,7 @@ msgid "" "2.6.19. This package contains the userland utilities to manage it." msgstr "" -#: gnu/packages/linux.scm:6488 +#: gnu/packages/linux.scm:6532 msgid "" "Libnfsidmap is a library holding mulitiple methods of\n" "mapping names to ids and visa versa, mainly for NFSv4. It provides an\n" @@ -9727,14 +9850,14 @@ msgid "" "the default @code{nsswitch} and the experimental @code{umich_ldap}." msgstr "" -#: gnu/packages/linux.scm:6524 +#: gnu/packages/linux.scm:6568 #, fuzzy msgid "" "Tools for loading and managing Linux kernel modules, such as\n" "@code{modprobe}, @code{insmod}, @code{lsmod}, and more." msgstr "Iloj por ŝargi kaj administri linuks-kernajn modulojn" -#: gnu/packages/linux.scm:6565 +#: gnu/packages/linux.scm:6609 msgid "" "The mcelog daemon logs memory, I/O, CPU, and other hardware errors on x86\n" "systems running the kernel Linux. It can also perform user-defined tasks, such\n" @@ -9742,14 +9865,14 @@ msgid "" "exceeded." msgstr "" -#: gnu/packages/linux.scm:6596 +#: gnu/packages/linux.scm:6640 #, fuzzy msgid "" "This package provides utilities for testing, partitioning, etc\n" "of flash storage." msgstr "Tiu ĉi pako provizas ilojn por manipuli dosiersistemojn ext2/ext3/ext4." -#: gnu/packages/linux.scm:6628 +#: gnu/packages/linux.scm:6672 msgid "" "The libseccomp library provides an easy to use, platform\n" "independent, interface to the Linux Kernel's syscall filtering mechanism. The\n" @@ -9759,7 +9882,7 @@ msgid "" "developers." msgstr "" -#: gnu/packages/linux.scm:6671 +#: gnu/packages/linux.scm:6715 msgid "" "RadeonTop monitors resource consumption on supported AMD\n" "Radeon Graphics Processing Units (GPUs), either in real time as bar graphs on\n" @@ -9769,13 +9892,13 @@ msgid "" "under OpenGL graphics workloads." msgstr "" -#: gnu/packages/linux.scm:6718 +#: gnu/packages/linux.scm:6762 msgid "" "This package provides a library and a command line\n" "interface to the variable facility of UEFI boot firmware." msgstr "" -#: gnu/packages/linux.scm:6755 +#: gnu/packages/linux.scm:6799 msgid "" "@code{efibootmgr} is a user-space application to modify the Intel\n" "Extensible Firmware Interface (EFI) Boot Manager. This application can\n" @@ -9783,7 +9906,7 @@ msgid "" "running boot option, and more." msgstr "" -#: gnu/packages/linux.scm:6791 +#: gnu/packages/linux.scm:6835 msgid "" "The sysstat utilities are a collection of performance\n" "monitoring tools for Linux. These include @code{mpstat}, @code{iostat},\n" @@ -9791,7 +9914,7 @@ msgid "" "@code{sadf} and @code{sa}." msgstr "" -#: gnu/packages/linux.scm:6832 +#: gnu/packages/linux.scm:6876 msgid "" "Light is a program to send commands to screen backlight controllers\n" "under GNU/Linux. Features include:\n" @@ -9805,7 +9928,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/linux.scm:6880 +#: gnu/packages/linux.scm:6924 msgid "" "This program allows you read and control device brightness. Devices\n" "include backlight and LEDs. It can also preserve current brightness before\n" @@ -9815,7 +9938,7 @@ msgid "" "interface in sysfs, which can be accomplished with the included udev rules." msgstr "" -#: gnu/packages/linux.scm:7007 +#: gnu/packages/linux.scm:7048 msgid "" "TLP is a power management tool for Linux. It comes with\n" "a default configuration already optimized for battery life. Nevertheless,\n" @@ -9823,7 +9946,7 @@ msgid "" "every time the power supply source is changed." msgstr "" -#: gnu/packages/linux.scm:7073 +#: gnu/packages/linux.scm:7114 msgid "" "The Python scripts in this project generate a GTK-UI to change\n" "TLP configuration files easily. It aims to protect users from setting\n" @@ -9831,7 +9954,7 @@ msgid "" "configuration values." msgstr "" -#: gnu/packages/linux.scm:7099 +#: gnu/packages/linux.scm:7140 msgid "" "@command{lshw} (Hardware Lister) is a small tool to provide\n" "detailed information on the hardware configuration of the machine.\n" @@ -9841,7 +9964,7 @@ msgid "" "machines (PowerMac G4 is known to work)." msgstr "" -#: gnu/packages/linux.scm:7123 +#: gnu/packages/linux.scm:7164 msgid "" "Libmnl is a minimalistic user-space library oriented to\n" "Netlink developers. There are a lot of common tasks in parsing, validating,\n" @@ -9850,7 +9973,7 @@ msgid "" "re-use code and to avoid re-inventing the wheel." msgstr "" -#: gnu/packages/linux.scm:7148 +#: gnu/packages/linux.scm:7189 msgid "" "Libnftnl is a userspace library providing a low-level netlink\n" "programming interface to the in-kernel nf_tables subsystem. The library\n" @@ -9858,7 +9981,7 @@ msgid "" "used by nftables." msgstr "" -#: gnu/packages/linux.scm:7194 +#: gnu/packages/linux.scm:7235 msgid "" "nftables is the project that aims to replace the existing\n" "{ip,ip6,arp,eb}tables framework. Basically, this project provides a new packet\n" @@ -9868,7 +9991,7 @@ msgid "" "userspace queueing component and the logging subsystem." msgstr "" -#: gnu/packages/linux.scm:7336 +#: gnu/packages/linux.scm:7377 msgid "" "PRoot is a user-space implementation of @code{chroot}, @code{mount --bind},\n" "and @code{binfmt_misc}. This means that users don't need any privileges or\n" @@ -9881,7 +10004,7 @@ msgid "" "available in the kernel Linux." msgstr "" -#: gnu/packages/linux.scm:7399 +#: gnu/packages/linux.scm:7437 msgid "" "cpuid dumps detailed information about the CPU(s) gathered\n" "from the CPUID instruction, and also determines the exact model of CPU(s). It\n" @@ -9889,14 +10012,14 @@ msgid "" "NexGen, Rise, and SiS CPUs." msgstr "" -#: gnu/packages/linux.scm:7426 +#: gnu/packages/linux.scm:7464 msgid "" "jmtpfs uses FUSE (file system in userspace) to provide access\n" "to data over the Media Transfer Protocol (MTP). Unprivileged users can mount\n" "the MTP device as a file system." msgstr "" -#: gnu/packages/linux.scm:7453 +#: gnu/packages/linux.scm:7491 msgid "" "Procenv is a command-line tool that displays as much detail about\n" "itself and its environment as possible. It can be used as a test\n" @@ -9904,7 +10027,7 @@ msgid "" "comparing system environments." msgstr "" -#: gnu/packages/linux.scm:7482 +#: gnu/packages/linux.scm:7520 msgid "" "OpenFabrics Interfaces (OFI) is a framework focused on exporting fabric\n" "communication services to applications. OFI is best described as a collection\n" @@ -9918,7 +10041,7 @@ msgid "" "libraries, which are often integrated directly into libfabric." msgstr "" -#: gnu/packages/linux.scm:7544 +#: gnu/packages/linux.scm:7582 msgid "" "The PSM Messaging API, or PSM API, is Intel's low-level user-level\n" "communications interface for the True Scale family of products. PSM users are\n" @@ -9926,14 +10049,14 @@ msgid "" "interfaces in parallel environments." msgstr "" -#: gnu/packages/linux.scm:7587 +#: gnu/packages/linux.scm:7625 msgid "" "snapscreenshot saves a screenshot of one or more Linux text consoles as a\n" "Targa (@dfn{.tga}) image. It can be used by anyone with read access to the\n" "relevant @file{/dev/vcs*} file(s)." msgstr "" -#: gnu/packages/linux.scm:7641 +#: gnu/packages/linux.scm:7679 msgid "" "fbcat saves the contents of the Linux framebuffer (@file{/dev/fb*}), or\n" "a dump therof. It supports a wide range of drivers and pixel formats.\n" @@ -9945,14 +10068,14 @@ msgid "" "emulates the behaviour of Gunnar Monell's older fbgrab utility." msgstr "" -#: gnu/packages/linux.scm:7672 +#: gnu/packages/linux.scm:7710 msgid "" "Control groups is Linux kernel method for process resource\n" "restriction, permission handling and more. This package provides userspace\n" "interface to this kernel feature." msgstr "" -#: gnu/packages/linux.scm:7707 +#: gnu/packages/linux.scm:7745 msgid "" "mbpfan is a fan control daemon for Apple Macbooks. It uses input from\n" "the @code{coretemp} module and sets the fan speed using the @code{applesmc}\n" @@ -9960,7 +10083,7 @@ msgid "" "privileges." msgstr "" -#: gnu/packages/linux.scm:7751 +#: gnu/packages/linux.scm:7789 msgid "" "This package is low-level user-level Intel's communications interface.\n" "The PSM2 API is a high-performance vendor-specific protocol that provides a\n" @@ -9968,7 +10091,7 @@ msgid "" "high-speed networking devices." msgstr "" -#: gnu/packages/linux.scm:7794 +#: gnu/packages/linux.scm:7832 msgid "" "This package provides a library called libpfm4, which is used to develop\n" "monitoring tools exploiting the performance monitoring events such as those\n" @@ -9983,7 +10106,7 @@ msgid "" "introduced in Linux 2.6.31." msgstr "" -#: gnu/packages/linux.scm:7824 +#: gnu/packages/linux.scm:7862 msgid "" "@code{libnfnetlink} is the low-level library for netfilter related\n" "kernel/userspace communication. It provides a generic messaging\n" @@ -9992,7 +10115,7 @@ msgid "" "management tools in userspace." msgstr "" -#: gnu/packages/linux.scm:7851 +#: gnu/packages/linux.scm:7889 msgid "" "The netlink package provides a simple netlink library for\n" "Go. Netlink is the interface a user-space program in Linux uses to\n" @@ -10000,7 +10123,7 @@ msgid "" "IP addresses and routes, and configure IPsec." msgstr "" -#: gnu/packages/linux.scm:7891 +#: gnu/packages/linux.scm:7929 msgid "" "The inih (INI Not Invented Here) library is a simple .INI file\n" "parser written in C. It's only a couple of pages of code, and it was designed to\n" @@ -10009,20 +10132,20 @@ msgid "" "822-style multi-line syntax and name: value entries." msgstr "" -#: gnu/packages/linux.scm:7942 +#: gnu/packages/linux.scm:7980 #, fuzzy msgid "" "This package provides commands to create and check XFS\n" "file systems." msgstr "Tiu ĉi pako provizas ilojn por manipuli dosiersistemojn ext2/ext3/ext4." -#: gnu/packages/linux.scm:7998 +#: gnu/packages/linux.scm:8036 msgid "" "This package provides a statically linked @command{xfs_repair} taken\n" "from the xfsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:8034 +#: gnu/packages/linux.scm:8072 msgid "" "This package provides a program to generate an ext2\n" "file system as a normal (non-root) user. It does not require you to mount\n" @@ -10030,7 +10153,7 @@ msgid "" "the superuser to make device nodes." msgstr "" -#: gnu/packages/linux.scm:8129 +#: gnu/packages/linux.scm:8167 msgid "" "@command{fakeroot} runs a command in an environment where it appears to\n" "have root privileges for file manipulation. This is useful for allowing users\n" @@ -10043,7 +10166,7 @@ msgid "" "without using the archiver." msgstr "" -#: gnu/packages/linux.scm:8169 +#: gnu/packages/linux.scm:8207 msgid "" "@command{fakechroot} runs a command in an environment were is additional\n" "possibility to use @code{chroot} command without root privileges. This is\n" @@ -10054,13 +10177,13 @@ msgid "" "set as @code{LD_PRELOAD} to override the C library file system functions." msgstr "" -#: gnu/packages/linux.scm:8215 +#: gnu/packages/linux.scm:8253 msgid "" "inputattach dispatches input events from several device\n" "types and interfaces and translates so that the X server can use them." msgstr "" -#: gnu/packages/linux.scm:8251 +#: gnu/packages/linux.scm:8289 msgid "" "PipeWire is a project that aims to greatly improve handling of audio and\n" "video under Linux. It aims to support the usecases currently handled by both\n" @@ -10072,7 +10195,7 @@ msgid "" "of Linux application development." msgstr "" -#: gnu/packages/linux.scm:8318 +#: gnu/packages/linux.scm:8356 msgid "" "WirePlumber is a modular session / policy manager for\n" "PipeWire and a GObject-based high-level library that wraps PipeWire's API,\n" @@ -10080,7 +10203,7 @@ msgid "" "tools for managing PipeWire." msgstr "" -#: gnu/packages/linux.scm:8357 +#: gnu/packages/linux.scm:8395 msgid "" "The Embedded Linux* Library (ELL) provides core, low-level\n" "functionality for system daemons. It typically has no dependencies other than\n" @@ -10089,7 +10212,7 @@ msgid "" "platforms, it is not limited to resource-constrained systems." msgstr "" -#: gnu/packages/linux.scm:8386 +#: gnu/packages/linux.scm:8424 msgid "" "This package provides the @code{kexec} program and ancillary\n" "utilities. Using @code{kexec}, it is possible to boot directly into a new\n" @@ -10097,7 +10220,7 @@ msgid "" "system boot process." msgstr "" -#: gnu/packages/linux.scm:8419 +#: gnu/packages/linux.scm:8457 msgid "" "@code{cachefilesd} is a userspace daemon that manages the\n" "cache data store that is used by network file systems such as @code{AFS} and\n" @@ -10105,14 +10228,14 @@ msgid "" "persistent over reboots." msgstr "" -#: gnu/packages/linux.scm:8463 +#: gnu/packages/linux.scm:8501 msgid "" "Libbpf supports building BPF CO-RE-enabled applications, which, in\n" "contrast to BCC, do not require the Clang/LLVM runtime or linux kernel\n" "headers." msgstr "" -#: gnu/packages/linux.scm:8541 +#: gnu/packages/linux.scm:8579 msgid "" "BCC is a toolkit for creating efficient kernel tracing and manipulation\n" "programs, and includes several useful tools and examples. It makes use of\n" @@ -10121,7 +10244,7 @@ msgid "" "and above." msgstr "" -#: gnu/packages/linux.scm:8577 +#: gnu/packages/linux.scm:8615 msgid "" "bpftrace is a high-level tracing language for Linux enhanced Berkeley\n" "Packet Filter (eBPF) available in recent Linux kernels (4.x). bpftrace uses\n" @@ -10133,14 +10256,14 @@ msgid "" "created by Alastair Robertson." msgstr "" -#: gnu/packages/linux.scm:8609 +#: gnu/packages/linux.scm:8647 msgid "" "This package provides a Linux kernel module that will\n" "provide a serial device @code{/dev/ttyebus} with almost no latency upon\n" "receiving. It is dedicated to the PL011 UART of the Raspberry Pi." msgstr "" -#: gnu/packages/linux.scm:8635 +#: gnu/packages/linux.scm:8673 msgid "" "IP sets are a framework inside the Linux 2.4.x and 2.6.x kernel which\n" "can be administered by the ipset utility. Depending on the type,\n" @@ -10161,7 +10284,7 @@ msgid "" "then IP sets may be the proper tool for you." msgstr "" -#: gnu/packages/linux.scm:8682 +#: gnu/packages/linux.scm:8720 msgid "" "This is the io_uring library, liburing. liburing provides\n" "helpers to setup and teardown io_uring instances, and also a simplified\n" @@ -10169,14 +10292,14 @@ msgid "" "kernel side implementation." msgstr "" -#: gnu/packages/linux.scm:8710 +#: gnu/packages/linux.scm:8748 msgid "" "@acronym{EROFS, The Enhanced Read-Only File System} is a compressed,\n" "read-only file system optimized for resource-scarce devices. This package\n" "provides user-space tools for creating EROFS file systems." msgstr "" -#: gnu/packages/linux.scm:8754 +#: gnu/packages/linux.scm:8792 msgid "" "The @code{rasdaemon} daemon monitors platform @acronym{RAS, Reliability\n" "Availability and Serviceability} reports from Linux kernel trace events.\n" @@ -10184,7 +10307,7 @@ msgid "" "through standard log mechanisms like syslog." msgstr "" -#: gnu/packages/linux.scm:8788 +#: gnu/packages/linux.scm:8826 msgid "" "This package provides a C library with C++/Python bindings and\n" "command-line tools for interacting with GPIO devices that avoids the usage of\n" @@ -10210,33 +10333,33 @@ msgid "" "beginning." msgstr "" -#: gnu/packages/messaging.scm:181 +#: gnu/packages/messaging.scm:183 msgid "" "OMEMO-wget is a tool to handle cryptographic URLs, generated\n" "by @acronym{OMEMO, OMEMO Multi-End Message and Object Encryption}, during\n" "XMPP-based sessions." msgstr "" -#: gnu/packages/messaging.scm:237 +#: gnu/packages/messaging.scm:239 msgid "" "Psi is a capable XMPP client aimed at experienced users.\n" "Its design goals are simplicity and stability." msgstr "" -#: gnu/packages/messaging.scm:295 +#: gnu/packages/messaging.scm:297 msgid "" "GNT is an ncurses toolkit for creating text-mode graphical\n" "user interfaces in a fast and easy way. It is based on GLib and ncurses." msgstr "" -#: gnu/packages/messaging.scm:346 +#: gnu/packages/messaging.scm:348 msgid "" "LibGadu is library for handling Gadu-Gadu instant messenger\n" "protocol. The library is written in C and aims to be operating system and\n" "environment independent." msgstr "" -#: gnu/packages/messaging.scm:381 +#: gnu/packages/messaging.scm:383 msgid "" "SILC (Secure Internet Live Conferencing) is a modern and secure\n" "conferencing protocol. It provides all the common conferencing services like\n" @@ -10244,14 +10367,14 @@ msgid "" "conferencing." msgstr "" -#: gnu/packages/messaging.scm:427 +#: gnu/packages/messaging.scm:429 msgid "" "QXmpp is a XMPP client and server library written in C++ and uses the Qt\n" "framework. It builds XMPP clients complying with the XMPP Compliance Suites\n" "2021 for IM and Advanced Mobile." msgstr "" -#: gnu/packages/messaging.scm:454 +#: gnu/packages/messaging.scm:456 msgid "" "Meanwhile is a library for connecting to a LIM (Lotus Instant\n" "Messaging, formerly Lotus Sametime, formerly VPBuddy) community. It uses a\n" @@ -10259,7 +10382,7 @@ msgid "" "TCP sessions from existing clients." msgstr "" -#: gnu/packages/messaging.scm:500 +#: gnu/packages/messaging.scm:502 msgid "" "Poezio is a free console XMPP client (the protocol on which\n" "the Jabber IM network is built).\n" @@ -10272,7 +10395,7 @@ msgid "" "powerful, standard and open protocol." msgstr "" -#: gnu/packages/messaging.scm:533 +#: gnu/packages/messaging.scm:535 msgid "" "OTR allows you to have private conversations over instant\n" "messaging by providing: (1) Encryption: No one else can read your instant\n" @@ -10285,7 +10408,7 @@ msgid "" "your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:572 +#: gnu/packages/messaging.scm:574 msgid "" "libsignal-protocol-c is an implementation of a ratcheting\n" "forward secrecy protocol that works in synchronous and asynchronous\n" @@ -10293,20 +10416,20 @@ msgid "" "end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:609 +#: gnu/packages/messaging.scm:611 msgid "" "This is a client library for @code{libsignal-protocol-c}.\n" "It implements the necessary interfaces using @code{libgcrypt} and\n" "@code{sqlite}." msgstr "" -#: gnu/packages/messaging.scm:641 +#: gnu/packages/messaging.scm:643 msgid "" "This library implements @acronym{OMEMO, OMEMO Multi-End\n" "Message and Object Encryption} of XMPP (XEP-0384) in C." msgstr "" -#: gnu/packages/messaging.scm:681 +#: gnu/packages/messaging.scm:683 msgid "" "BitlBee brings IM (instant messaging) to IRC clients, for\n" "people who have an IRC client running all the time and don't want to run an\n" @@ -10316,20 +10439,20 @@ msgid "" "identi.ca and status.net)." msgstr "" -#: gnu/packages/messaging.scm:748 +#: gnu/packages/messaging.scm:750 msgid "" "Bitlbee-discord is a plugin for Bitlbee which provides\n" "access to servers running the Discord protocol." msgstr "" -#: gnu/packages/messaging.scm:794 +#: gnu/packages/messaging.scm:796 msgid "" "Purple-Mattermost is a plug-in for Purple, the instant messaging library\n" "used by Pidgin and Bitlbee, among others, to access\n" "@uref{https://mattermost.com/, Mattermost} servers." msgstr "" -#: gnu/packages/messaging.scm:852 +#: gnu/packages/messaging.scm:854 msgid "" "HexChat lets you connect to multiple IRC networks at once. The main\n" "window shows the list of currently connected networks and their channels, the\n" @@ -10338,7 +10461,7 @@ msgid "" "dictionaries. HexChat can be extended with multiple addons." msgstr "" -#: gnu/packages/messaging.scm:917 +#: gnu/packages/messaging.scm:919 msgid "" "ngIRCd is a lightweight @dfn{Internet Relay Chat} (IRC) server for small\n" "or private networks. It is easy to configure, can cope with dynamic IP\n" @@ -10346,13 +10469,13 @@ msgid "" "authentication." msgstr "" -#: gnu/packages/messaging.scm:1024 +#: gnu/packages/messaging.scm:1026 msgid "" "Pidgin is a modular instant messaging client that supports\n" "many popular chat protocols." msgstr "" -#: gnu/packages/messaging.scm:1064 +#: gnu/packages/messaging.scm:1066 msgid "" "Pidgin-OTR is a plugin that adds support for OTR to the Pidgin\n" "instant messaging client. OTR (Off-the-Record) Messaging allows you to have\n" @@ -10366,7 +10489,7 @@ msgid "" "control of your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:1118 +#: gnu/packages/messaging.scm:1120 msgid "" "ZNC is an @dfn{IRC network bouncer} or @dfn{BNC}. It can\n" "detach the client from the actual IRC server, and also from selected channels.\n" @@ -10374,41 +10497,41 @@ msgid "" "simultaneously and therefore appear under the same nickname on IRC." msgstr "" -#: gnu/packages/messaging.scm:1147 +#: gnu/packages/messaging.scm:1149 msgid "" "Python-nbxmpp is a Python library that provides a way for\n" "Python applications to use the XMPP network. This library was initially a fork\n" "of xmpppy." msgstr "" -#: gnu/packages/messaging.scm:1274 +#: gnu/packages/messaging.scm:1276 msgid "" "Gajim aims to be an easy to use and fully-featured XMPP chat\n" "client. It is extensible via plugins, supports end-to-end encryption (OMEMO\n" "and OpenPGP) and available in 29 languages." msgstr "" -#: gnu/packages/messaging.scm:1309 +#: gnu/packages/messaging.scm:1311 msgid "" "Gajim-OMEMO is a plugin that adds support for the OMEMO\n" "Encryption to Gajim. OMEMO is an XMPP Extension Protocol (XEP) for secure\n" "multi-client end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:1344 +#: gnu/packages/messaging.scm:1346 msgid "" "Gajim-OpenPGP is a plugin that adds support for the OpenPGP\n" "Encryption to Gajim." msgstr "" -#: gnu/packages/messaging.scm:1418 +#: gnu/packages/messaging.scm:1420 msgid "" "Dino is a chat client for the desktop. It focuses on providing\n" "a minimal yet reliable Jabber/XMPP experience and having encryption enabled by\n" "default." msgstr "" -#: gnu/packages/messaging.scm:1505 +#: gnu/packages/messaging.scm:1507 msgid "" "Prosody is a modern XMPP communication server. It aims to\n" "be easy to set up and configure, and efficient with system resources.\n" @@ -10417,43 +10540,43 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/messaging.scm:1540 +#: gnu/packages/messaging.scm:1542 msgid "" "This module implements XEP-0363: it allows clients to\n" "upload files over HTTP." msgstr "" -#: gnu/packages/messaging.scm:1572 +#: gnu/packages/messaging.scm:1574 msgid "" "This module implements XEP-0198: when supported by both\n" "the client and server, it can allow clients to resume a disconnected session,\n" "and prevent message loss." msgstr "" -#: gnu/packages/messaging.scm:1601 +#: gnu/packages/messaging.scm:1603 msgid "C library implementation of the Tox encrypted messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1633 +#: gnu/packages/messaging.scm:1635 msgid "" "Official fork of the C library implementation of the Tox encrypted\n" "messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1687 +#: gnu/packages/messaging.scm:1689 msgid "" "uTox is a lightweight Tox client. Tox is a distributed and secure\n" "instant messenger with audio and video chat capabilities." msgstr "" -#: gnu/packages/messaging.scm:1750 +#: gnu/packages/messaging.scm:1752 msgid "" "qTox is a Tox client that follows the Tox design\n" "guidelines. It provides an easy to use application that allows you to\n" "connect with friends and family without anyone else listening in." msgstr "" -#: gnu/packages/messaging.scm:1772 +#: gnu/packages/messaging.scm:1774 msgid "" "Ytalk is a replacement for the BSD talk program. Its main\n" "advantage is the ability to communicate with any arbitrary number of users at\n" @@ -10461,7 +10584,7 @@ msgid "" "with several different talk daemons at the same time." msgstr "" -#: gnu/packages/messaging.scm:1796 +#: gnu/packages/messaging.scm:1798 msgid "" "gloox is a full-featured Jabber/XMPP client library,\n" "written in ANSI C++. It makes writing spec-compliant clients easy\n" @@ -10469,7 +10592,7 @@ msgid "" "into existing applications." msgstr "" -#: gnu/packages/messaging.scm:1866 +#: gnu/packages/messaging.scm:1868 msgid "" "@code{Net::PSYC} with support for TCP, UDP, Event.pm, @code{IO::Select} and\n" "Gtk2 event loops. This package includes 12 applications and additional scripts:\n" @@ -10477,14 +10600,14 @@ msgid "" "for @uref{https://torproject.org,tor} router) and many more." msgstr "" -#: gnu/packages/messaging.scm:1907 +#: gnu/packages/messaging.scm:1909 msgid "" "@code{libpsyc} is a PSYC library in C which implements\n" "core aspects of PSYC, useful for all kinds of clients and servers\n" "including psyced." msgstr "" -#: gnu/packages/messaging.scm:1949 +#: gnu/packages/messaging.scm:1951 msgid "" "Loudmouth is a lightweight and easy-to-use C library for programming\n" "with the XMPP (formerly known as Jabber) protocol. It is designed to be\n" @@ -10492,7 +10615,7 @@ msgid "" "protocol allows." msgstr "" -#: gnu/packages/messaging.scm:1991 +#: gnu/packages/messaging.scm:1993 msgid "" "Mcabber is a small XMPP (Jabber) console client, which includes features\n" "such as SASL and TLS support, @dfn{Multi-User Chat} (MUC) support, logging,\n" @@ -10500,7 +10623,7 @@ msgid "" "support, and more." msgstr "" -#: gnu/packages/messaging.scm:2039 +#: gnu/packages/messaging.scm:2041 msgid "" "GNU Freetalk is a command-line Jabber/XMPP chat client. It notably uses\n" "the Readline library to handle input, so it features convenient navigation of\n" @@ -10508,27 +10631,27 @@ msgid "" "is also scriptable and extensible via Guile." msgstr "" -#: gnu/packages/messaging.scm:2074 +#: gnu/packages/messaging.scm:2076 msgid "" "Libmesode is a fork of libstrophe for use with Profanity\n" "XMPP Client. In particular, libmesode provides extra TLS functionality such as\n" "manual SSL certificate verification." msgstr "" -#: gnu/packages/messaging.scm:2109 +#: gnu/packages/messaging.scm:2111 msgid "" "Libstrophe is a minimal XMPP library written in C. It has\n" "almost no external dependencies, only an XML parsing library (expat or libxml\n" "are both supported)." msgstr "" -#: gnu/packages/messaging.scm:2167 +#: gnu/packages/messaging.scm:2169 msgid "" "Profanity is a console based XMPP client written in C\n" "using ncurses and libmesode, inspired by Irssi." msgstr "" -#: gnu/packages/messaging.scm:2197 +#: gnu/packages/messaging.scm:2199 msgid "" "Libircclient is a library which implements the client IRC\n" "protocol. It is designed to be small, fast, portable and compatible with the\n" @@ -10536,14 +10659,14 @@ msgid "" "building the IRC clients and bots." msgstr "" -#: gnu/packages/messaging.scm:2255 +#: gnu/packages/messaging.scm:2257 msgid "" "Toxic is a console-based instant messaging client, using\n" "c-toxcore and ncurses. It provides audio calls, sound and desktop\n" "notifications, and Python scripting support." msgstr "" -#: gnu/packages/messaging.scm:2281 +#: gnu/packages/messaging.scm:2283 msgid "" "libqmatrixclient is a Qt5 library to write clients for the\n" "Matrix instant messaging protocol. Quaternion is the reference client\n" @@ -10551,13 +10674,13 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2326 +#: gnu/packages/messaging.scm:2330 msgid "" "@code{mtxclient} is a C++ library that implements client API\n" "for the Matrix protocol. It is built on to of @code{Boost.Asio}." msgstr "" -#: gnu/packages/messaging.scm:2418 +#: gnu/packages/messaging.scm:2423 msgid "" "@code{Nheko} want to provide a native desktop app for the\n" "Matrix protocol that feels more like a mainstream chat app and less like an IRC\n" @@ -10567,7 +10690,7 @@ msgid "" "notification, emojis, E2E encryption, and voip calls." msgstr "" -#: gnu/packages/messaging.scm:2455 +#: gnu/packages/messaging.scm:2460 msgid "" "Quaternion is a Qt5 desktop client for the Matrix instant\n" "messaging protocol. It uses libqmatrixclient and is its reference client\n" @@ -10575,7 +10698,7 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2502 +#: gnu/packages/messaging.scm:2507 msgid "" "Hangups is an instant messaging client for Google Hangouts. It includes\n" "both a Python library and a reference client with a text-based user interface.\n" @@ -10585,7 +10708,7 @@ msgid "" "messaging that aren’t available to clients that connect over XMPP." msgstr "" -#: gnu/packages/messaging.scm:2584 +#: gnu/packages/messaging.scm:2589 msgid "" "Telegram-purple is a plugin for Libpurple, the communication library\n" "used by the Pidgin instant messaging client, that adds support for the\n" @@ -10595,7 +10718,7 @@ msgid "" "replacement." msgstr "" -#: gnu/packages/messaging.scm:2629 +#: gnu/packages/messaging.scm:2632 msgid "" "Tdlib is a cross-platform library for creating custom\n" "Telegram clients following the official Telegram API. It can be easily used\n" @@ -10603,11 +10726,11 @@ msgid "" "support for high performance Telegram Bot creation." msgstr "" -#: gnu/packages/messaging.scm:2667 +#: gnu/packages/messaging.scm:2670 msgid "Plugin for libpurple to allow sending SMS using ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2712 +#: gnu/packages/messaging.scm:2715 msgid "" "Purple-lurch plugin adds end-to-end encryption support\n" "through the Double Ratchet (Axolotl) algorithm, to @code{libpurple}\n" @@ -10618,19 +10741,19 @@ msgid "" "asynchronicity." msgstr "" -#: gnu/packages/messaging.scm:2748 +#: gnu/packages/messaging.scm:2751 msgid "" "This package provides a C++ library for parsing, formatting, and\n" "validating international phone numbers." msgstr "" -#: gnu/packages/messaging.scm:2793 +#: gnu/packages/messaging.scm:2796 msgid "" "Chatty is a chat program for XMPP and SMS. It works on mobile\n" "as well as on desktop platforms. It's based on libpurple and ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2814 +#: gnu/packages/messaging.scm:2817 msgid "" "This package provides Eclipse Mosquitto, a message broker\n" "that implements the MQTT protocol versions 5.0, 3.1.1 and 3.1. Mosquitto\n" @@ -10643,29 +10766,29 @@ msgid "" "as phones, embedded computers or microcontrollers." msgstr "" -#: gnu/packages/messaging.scm:2864 +#: gnu/packages/messaging.scm:2867 msgid "" "Movim-Desktop is a desktop application, relying on Qt, for the Movim\n" "social and chat platform." msgstr "" -#: gnu/packages/messaging.scm:2999 +#: gnu/packages/messaging.scm:3002 msgid "" "Psi+ is a spin-off of Psi XMPP client. It is a powerful XMPP client\n" "designed for experienced users." msgstr "" -#: gnu/packages/messaging.scm:3039 +#: gnu/packages/messaging.scm:3042 #, fuzzy msgid "This package provides Python bindings to Zulip's API." msgstr "Tiu ĉi pako provizas ilojn por manipuli dosiersistemojn ext2/ext3/ext4." -#: gnu/packages/messaging.scm:3088 +#: gnu/packages/messaging.scm:3091 #, fuzzy msgid "This package contains Zulip's official terminal client." msgstr "Tiu ĉi pako enhavas ludan datumaron por GNU Freedink." -#: gnu/packages/messaging.scm:3110 +#: gnu/packages/messaging.scm:3113 msgid "" "Relays messages between different channels from various\n" "messaging networks and protocols. So far it supports mattermost, IRC, gitter,\n" @@ -10674,20 +10797,20 @@ msgid "" "API. Mattermost is not required." msgstr "" -#: gnu/packages/messaging.scm:3143 +#: gnu/packages/messaging.scm:3146 msgid "" "@command{pounce} is a multi-client, TLS-only IRC bouncer. It maintains\n" "a persistent connection to an IRC server, acting as a proxy and buffer for\n" "a number of clients." msgstr "" -#: gnu/packages/messaging.scm:3209 +#: gnu/packages/messaging.scm:3212 msgid "" "@code{weechat-matrix} is a Python plugin for Weechat that lets\n" "Weechat communicate over the Matrix protocol." msgstr "" -#: gnu/packages/messaging.scm:3256 +#: gnu/packages/messaging.scm:3259 msgid "" "@code{weechat-wee-slack} is a WeeChat native client for\n" "Slack. It provides supplemental features only available in the web/mobile\n" @@ -10797,14 +10920,14 @@ msgid "" "themselves." msgstr "" -#: gnu/packages/networking.scm:174 +#: gnu/packages/networking.scm:176 msgid "" "UsrSCTP is a portable SCTP userland stack. SCTP is a message\n" "oriented, reliable transport protocol with direct support for multihoming that\n" "runs on top of IP or UDP, and supports both v4 and v6 versions." msgstr "" -#: gnu/packages/networking.scm:199 +#: gnu/packages/networking.scm:201 msgid "" "Axel tries to accelerate the download process by using multiple\n" "connections per file, and can also balance the load between different\n" @@ -10813,38 +10936,38 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/networking.scm:264 +#: gnu/packages/networking.scm:266 msgid "" "LibCamera is a complex camera support library for GNU+Linux,\n" "Android, and ChromeOS." msgstr "" -#: gnu/packages/networking.scm:334 +#: gnu/packages/networking.scm:336 msgid "" "LibNice is a library that implements the Interactive\n" "Connectivity Establishment (ICE) standard (RFC 5245 & RFC 8445). It provides a\n" "GLib-based library, libnice, as well as GStreamer elements to use it." msgstr "" -#: gnu/packages/networking.scm:393 +#: gnu/packages/networking.scm:395 msgid "" "RTMPdump is a toolkit for RTMP streams. All forms of RTMP are\n" "supported, including rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps://." msgstr "" -#: gnu/packages/networking.scm:422 +#: gnu/packages/networking.scm:424 msgid "" "Slurm is a network load monitor. It shows real-time traffic statistics\n" "from any network device in any of three ASCII graph formats." msgstr "" -#: gnu/packages/networking.scm:457 +#: gnu/packages/networking.scm:459 msgid "" "SRT is a transport technology that optimizes streaming\n" "performance across unpredictable networks, such as the Internet." msgstr "" -#: gnu/packages/networking.scm:500 +#: gnu/packages/networking.scm:502 msgid "" "The lksctp-tools project provides a user-space library for @acronym{SCTP,\n" "the Stream Control Transmission Protocol} (@file{libsctp}) and C language header\n" @@ -10853,13 +10976,13 @@ msgid "" "It also includes some SCTP-related helper utilities." msgstr "" -#: gnu/packages/networking.scm:541 +#: gnu/packages/networking.scm:543 msgid "" "@code{pysctp} implements the SCTP socket API. You need a\n" "SCTP-aware kernel (most are)." msgstr "" -#: gnu/packages/networking.scm:565 +#: gnu/packages/networking.scm:567 msgid "" "@command{knockd} is a port-knock daemon. It listens to all traffic on\n" "an ethernet or PPP interface, looking for special \"knock\" sequences of @dfn{port-hits}\n" @@ -10867,7 +10990,7 @@ msgid "" "at the link-layer level." msgstr "" -#: gnu/packages/networking.scm:605 +#: gnu/packages/networking.scm:607 msgid "" "NNG project is a rewrite of the scalability protocols library\n" "known as libnanomsg, and adds significant new capabilities, while retaining\n" @@ -10876,7 +10999,7 @@ msgid "" "publish/subscribe, RPC-style request/reply, or service discovery." msgstr "" -#: gnu/packages/networking.scm:648 +#: gnu/packages/networking.scm:650 msgid "" "Nanomsg is a socket library that provides several common\n" "communication patterns. It aims to make the networking layer fast, scalable,\n" @@ -10884,14 +11007,14 @@ msgid "" "systems with no further dependencies." msgstr "" -#: gnu/packages/networking.scm:758 +#: gnu/packages/networking.scm:760 msgid "" "Blueman is a Bluetooth management utility using the Bluez\n" "D-Bus backend. It is designed to be easy to use for most common Bluetooth\n" "tasks." msgstr "" -#: gnu/packages/networking.scm:783 +#: gnu/packages/networking.scm:785 msgid "" "GNU MAC Changer is a utility for viewing and changing MAC\n" "addresses of networking devices. New addresses may be set explicitly or\n" @@ -10899,14 +11022,14 @@ msgid "" "or, more generally, MAC addresses of the same category of hardware." msgstr "" -#: gnu/packages/networking.scm:831 +#: gnu/packages/networking.scm:833 msgid "" "Miredo is an implementation (client, relay, server) of the Teredo\n" "specification, which provides IPv6 Internet connectivity to IPv6 enabled hosts\n" "residing in IPv4-only networks, even when they are behind a NAT device." msgstr "" -#: gnu/packages/networking.scm:851 +#: gnu/packages/networking.scm:853 msgid "" "NDisc6 is a collection of tools for IPv6 networking diagnostics.\n" "It includes the following programs:\n" @@ -10920,7 +11043,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:904 +#: gnu/packages/networking.scm:906 msgid "" "@command{parprouted} is a daemon for transparent IP (Layer@tie{}3)\n" "proxy ARP bridging. Unlike standard bridging, proxy ARP bridging can bridge\n" @@ -10930,7 +11053,14 @@ msgid "" "useful for making transparent firewalls." msgstr "" -#: gnu/packages/networking.scm:931 +#: gnu/packages/networking.scm:945 +msgid "" +"@command{pproxy} is an asynchronuous proxy server implemented with\n" +"Python 3 @code{asyncio}. Among the supported protocols are HTTP, SOCKS\n" +"and SSH, and it can use both TCP and UDP as transport mechanisms." +msgstr "" + +#: gnu/packages/networking.scm:969 msgid "" "socat is a relay for bidirectional data transfer between two independent\n" "data channels---files, pipes, devices, sockets, etc. It can create\n" @@ -10943,7 +11073,7 @@ msgid "" "or server shell scripts with network connections." msgstr "" -#: gnu/packages/networking.scm:962 +#: gnu/packages/networking.scm:1000 msgid "" "mbuffer is a tool for buffering data streams with a large set of features:\n" "\n" @@ -10959,14 +11089,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1058 +#: gnu/packages/networking.scm:1096 msgid "" "With this package you can monitor and filter incoming requests for\n" "network services. It includes a library which may be used by daemons to\n" "transparently check connection attempts against an access control list." msgstr "" -#: gnu/packages/networking.scm:1081 +#: gnu/packages/networking.scm:1119 msgid "" "The 0MQ lightweight messaging kernel is a library which extends the\n" "standard socket interfaces with features traditionally provided by specialized\n" @@ -10976,46 +11106,46 @@ msgid "" "more." msgstr "" -#: gnu/packages/networking.scm:1110 +#: gnu/packages/networking.scm:1148 msgid "" "czmq provides bindings for the ØMQ core API that hides the differences\n" "between different versions of ØMQ." msgstr "" -#: gnu/packages/networking.scm:1141 +#: gnu/packages/networking.scm:1179 msgid "" "This package provides header-only C++ bindings for ØMQ. The header\n" "files contain direct mappings of the abstractions provided by the ØMQ C API." msgstr "" -#: gnu/packages/networking.scm:1175 +#: gnu/packages/networking.scm:1213 msgid "" "@code{libnatpmp} is a portable and asynchronous implementation of\n" "the Network Address Translation - Port Mapping Protocol (NAT-PMP)\n" "written in the C programming language." msgstr "" -#: gnu/packages/networking.scm:1213 +#: gnu/packages/networking.scm:1251 msgid "" "librdkafka is a C library implementation of the Apache Kafka protocol,\n" "containing both Producer and Consumer support." msgstr "" -#: gnu/packages/networking.scm:1232 +#: gnu/packages/networking.scm:1270 msgid "" "libndp contains a library which provides a wrapper for IPv6 Neighbor\n" "Discovery Protocol. It also provides a tool named ndptool for sending and\n" "receiving NDP messages." msgstr "" -#: gnu/packages/networking.scm:1256 +#: gnu/packages/networking.scm:1294 msgid "" "ethtool can be used to query and change settings such as speed,\n" "auto-negotiation and checksum offload on many network devices, especially\n" "Ethernet devices." msgstr "" -#: gnu/packages/networking.scm:1298 +#: gnu/packages/networking.scm:1336 msgid "" "IFStatus is a simple, easy-to-use program for displaying commonly\n" "needed/wanted real-time traffic statistics of multiple network\n" @@ -11023,7 +11153,7 @@ msgid "" "intended as a substitute for the PPPStatus and EthStatus projects." msgstr "" -#: gnu/packages/networking.scm:1347 +#: gnu/packages/networking.scm:1385 msgid "" "This package contains a variety of tools for dealing with network\n" "configuration, troubleshooting, or servers. Utilities included are:\n" @@ -11044,7 +11174,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1388 +#: gnu/packages/networking.scm:1426 msgid "" "Nload is a console application which monitors network traffic and\n" "bandwidth usage in real time. It visualizes the in- and outgoing traffic using\n" @@ -11052,7 +11182,7 @@ msgid "" "and min/max network usage." msgstr "" -#: gnu/packages/networking.scm:1432 +#: gnu/packages/networking.scm:1470 msgid "" "Iodine tunnels IPv4 data through a DNS server. This\n" "can be useful in different situations where internet access is firewalled, but\n" @@ -11060,7 +11190,7 @@ msgid "" "and up to 1 Mbit/s downstream." msgstr "" -#: gnu/packages/networking.scm:1473 +#: gnu/packages/networking.scm:1511 msgid "" "whois searches for an object in a @dfn{WHOIS} (RFC 3912) database.\n" "It is commonly used to look up the registered users or assignees of an Internet\n" @@ -11072,14 +11202,14 @@ msgid "" "of the same name." msgstr "" -#: gnu/packages/networking.scm:1553 +#: gnu/packages/networking.scm:1591 msgid "" "Wireshark is a network protocol analyzer, or @dfn{packet\n" "sniffer}, that lets you capture and interactively browse the contents of\n" "network frames." msgstr "" -#: gnu/packages/networking.scm:1574 +#: gnu/packages/networking.scm:1613 msgid "" "fping is a ping-like program which uses @acronym{ICMP, Internet Control\n" "Message Protocol} echo requests to determine if a target host is responding.\n" @@ -11091,27 +11221,27 @@ msgid "" "round-robin fashion." msgstr "" -#: gnu/packages/networking.scm:1625 +#: gnu/packages/networking.scm:1664 msgid "" "This package provides a command-line client (@command{gandi}) to buy,\n" "manage, and delete Internet resources from Gandi.net such as domain names,\n" "virtual machines, and certificates." msgstr "" -#: gnu/packages/networking.scm:1651 +#: gnu/packages/networking.scm:1690 #, fuzzy msgid "" "The netns package provides a simple interface for\n" "handling network namespaces in Go." msgstr "Tiu ĉi pako provizas datumbazan interfacon por Perl." -#: gnu/packages/networking.scm:1678 +#: gnu/packages/networking.scm:1717 msgid "" "This library provides methods for using the stream control\n" "transmission protocol (SCTP) in a Go application." msgstr "" -#: gnu/packages/networking.scm:1707 +#: gnu/packages/networking.scm:1746 msgid "" "httping measures how long it takes to connect to a web server, send an\n" "HTTP(S) request, and receive the reply headers. It is somewhat similar to\n" @@ -11120,7 +11250,7 @@ msgid "" "application stack itself." msgstr "" -#: gnu/packages/networking.scm:1746 +#: gnu/packages/networking.scm:1785 msgid "" "@command{httpstat} is a tool to visualize statistics from the\n" "@command{curl} HTTP client. It acts as a wrapper for @command{curl} and\n" @@ -11128,20 +11258,20 @@ msgid "" "TCP connection, TLS handshake and so on) in the terminal." msgstr "" -#: gnu/packages/networking.scm:1788 +#: gnu/packages/networking.scm:1827 msgid "" "Squid is a caching proxy for the Web supporting HTTP, HTTPS,\n" "FTP, and more. It reduces bandwidth and improves response times by caching and\n" "reusing frequently-requested web pages." msgstr "" -#: gnu/packages/networking.scm:1822 +#: gnu/packages/networking.scm:1861 msgid "" "Bandwidth Monitor NG is a small and simple console based\n" "live network and disk I/O bandwidth monitor." msgstr "" -#: gnu/packages/networking.scm:1874 +#: gnu/packages/networking.scm:1913 msgid "" "Aircrack-ng is a complete suite of tools to assess WiFi network\n" "security. It focuses on different areas of WiFi security: monitoring,\n" @@ -11149,14 +11279,14 @@ msgid "" "allows for heavy scripting." msgstr "" -#: gnu/packages/networking.scm:1903 +#: gnu/packages/networking.scm:1942 msgid "" "Pixiewps implements the pixie-dust attack to brute\n" "force the Wi-Fi Protected Setup (WPS) PIN by exploiting the low or\n" "non-existing entropy of some access points." msgstr "" -#: gnu/packages/networking.scm:1949 +#: gnu/packages/networking.scm:1988 msgid "" "Reaver performs a brute force attack against an access\n" "point's Wi-Fi Protected Setup (WPS) PIN. Once the PIN is found, the WPA\n" @@ -11164,7 +11294,7 @@ msgid "" "reconfigured." msgstr "" -#: gnu/packages/networking.scm:1974 +#: gnu/packages/networking.scm:2013 msgid "" "Danga::Socket is an abstract base class for objects backed by a socket\n" "which provides the basic framework for event-driven asynchronous IO, designed\n" @@ -11172,7 +11302,7 @@ msgid "" "loop." msgstr "" -#: gnu/packages/networking.scm:2000 +#: gnu/packages/networking.scm:2039 msgid "" "This module provides several IP address validation subroutines that both\n" "validate and untaint their input. This includes both basic validation\n" @@ -11181,62 +11311,62 @@ msgid "" "private (reserved)." msgstr "" -#: gnu/packages/networking.scm:2028 +#: gnu/packages/networking.scm:2067 msgid "Net::DNS is the Perl Interface to the Domain Name System." msgstr "" -#: gnu/packages/networking.scm:2060 +#: gnu/packages/networking.scm:2099 msgid "" "Socket6 binds the IPv6 related part of the C socket header\n" "definitions and structure manipulators for Perl." msgstr "" -#: gnu/packages/networking.scm:2087 +#: gnu/packages/networking.scm:2126 msgid "" "Net::DNS::Resolver::Programmable is a programmable DNS resolver for\n" "offline emulation of DNS." msgstr "" -#: gnu/packages/networking.scm:2109 +#: gnu/packages/networking.scm:2148 msgid "" "Net::DNS::Resolver::Mock is a subclass of Net::DNS::Resolver, but returns\n" "static data from any provided DNS zone file instead of querying the network.\n" "It is intended primarily for use in testing." msgstr "" -#: gnu/packages/networking.scm:2144 +#: gnu/packages/networking.scm:2183 msgid "NetAddr::IP manages IPv4 and IPv6 addresses and subsets." msgstr "" -#: gnu/packages/networking.scm:2177 +#: gnu/packages/networking.scm:2216 msgid "Net::Patricia does IP address lookups quickly in Perl." msgstr "" -#: gnu/packages/networking.scm:2198 +#: gnu/packages/networking.scm:2237 msgid "Net::CIDR::Lite merges IPv4 or IPv6 CIDR addresses." msgstr "" -#: gnu/packages/networking.scm:2225 +#: gnu/packages/networking.scm:2264 msgid "" "IO::Socket::INET6 is an interface for AF_INET/AF_INET6 domain\n" "sockets in Perl." msgstr "" -#: gnu/packages/networking.scm:2258 +#: gnu/packages/networking.scm:2293 msgid "" "Libproxy handles the details of HTTP/HTTPS proxy\n" "configuration for applications across all scenarios. Applications using\n" "libproxy only have to specify which proxy to use." msgstr "" -#: gnu/packages/networking.scm:2292 +#: gnu/packages/networking.scm:2327 msgid "" "Proxychains-ng is a preloader which hooks calls to sockets\n" "in dynamically linked programs and redirects them through one or more SOCKS or\n" "HTTP proxies." msgstr "" -#: gnu/packages/networking.scm:2314 +#: gnu/packages/networking.scm:2349 msgid "" "ENet's purpose is to provide a relatively thin, simple and robust network\n" "communication layer on top of UDP. The primary feature it provides is optional\n" @@ -11246,7 +11376,7 @@ msgid "" "library remains flexible, portable, and easily embeddable." msgstr "" -#: gnu/packages/networking.scm:2378 +#: gnu/packages/networking.scm:2413 msgid "" "sslh is a network protocol demultiplexer. It acts like a switchboard,\n" "accepting connections from clients on one port and forwarding them to different\n" @@ -11258,7 +11388,7 @@ msgid "" "that block port 22." msgstr "" -#: gnu/packages/networking.scm:2408 +#: gnu/packages/networking.scm:2443 msgid "" "iPerf is a tool to measure achievable bandwidth on IP networks. It\n" "supports tuning of various parameters related to timing, buffers and\n" @@ -11266,7 +11396,7 @@ msgid "" "the bandwidth, loss, and other parameters." msgstr "" -#: gnu/packages/networking.scm:2445 +#: gnu/packages/networking.scm:2480 msgid "" "NetHogs is a small 'net top' tool for Linux. Instead of\n" "breaking the traffic down per protocol or per subnet, like most tools do, it\n" @@ -11278,7 +11408,7 @@ msgid "" "gone wild and are suddenly taking up your bandwidth." msgstr "" -#: gnu/packages/networking.scm:2481 +#: gnu/packages/networking.scm:2516 msgid "" "NZBGet is a binary newsgrabber, which downloads files from Usenet based\n" "on information given in @code{nzb} files. NZBGet can be used in standalone\n" @@ -11288,7 +11418,7 @@ msgid "" "procedure calls (RPCs)." msgstr "" -#: gnu/packages/networking.scm:2562 +#: gnu/packages/networking.scm:2597 msgid "" "Open vSwitch is a multilayer virtual switch. It is designed to enable\n" "massive network automation through programmatic extension, while still\n" @@ -11296,27 +11426,27 @@ msgid "" "IPFIX, RSPAN, CLI, LACP, 802.1ag)." msgstr "" -#: gnu/packages/networking.scm:2585 +#: gnu/packages/networking.scm:2620 msgid "" "The @code{IP} class allows a comfortable parsing and\n" "handling for most notations in use for IPv4 and IPv6 addresses and\n" "networks." msgstr "" -#: gnu/packages/networking.scm:2610 +#: gnu/packages/networking.scm:2645 msgid "" "Command line interface for testing internet bandwidth using\n" "speedtest.net." msgstr "" -#: gnu/packages/networking.scm:2630 +#: gnu/packages/networking.scm:2668 msgid "" "This is a tftp client derived from OpenBSD tftp with some extra options\n" "added and bugs fixed. The source includes readline support but it is not\n" "enabled due to license conflicts between the BSD advertising clause and the GPL." msgstr "" -#: gnu/packages/networking.scm:2682 +#: gnu/packages/networking.scm:2720 msgid "" "Spiped (pronounced \"ess-pipe-dee\") is a utility for creating\n" "symmetrically encrypted and authenticated pipes between socket addresses, so\n" @@ -11326,7 +11456,7 @@ msgid "" "does not use SSH and requires a pre-shared symmetric key." msgstr "" -#: gnu/packages/networking.scm:2708 +#: gnu/packages/networking.scm:2746 msgid "" "Quagga is a routing software suite, providing implementations\n" "of OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4 for Unix platforms.\n" @@ -11338,14 +11468,14 @@ msgid "" "updates to the zebra daemon." msgstr "" -#: gnu/packages/networking.scm:2758 +#: gnu/packages/networking.scm:2796 msgid "" "The THC IPv6 Toolkit provides command-line tools and a library\n" "for researching IPv6 implementations and deployments. It requires Linux 2.6 or\n" "newer and only works on Ethernet network interfaces." msgstr "" -#: gnu/packages/networking.scm:2783 +#: gnu/packages/networking.scm:2821 msgid "" "bmon is a monitoring and debugging tool to capture\n" "networking-related statistics and prepare them visually in a human-friendly\n" @@ -11353,7 +11483,7 @@ msgid "" "interface and a programmable text output for scripting." msgstr "" -#: gnu/packages/networking.scm:2821 +#: gnu/packages/networking.scm:2859 msgid "" "Libnet provides a fairly portable framework for network packet\n" "construction and injection. It features portable packet creation interfaces\n" @@ -11362,7 +11492,7 @@ msgid "" "can be whipped up with little effort." msgstr "" -#: gnu/packages/networking.scm:2847 +#: gnu/packages/networking.scm:2885 msgid "" "@acronym{mtr, My TraceRoute} combines the functionality of the\n" "@command{traceroute} and @command{ping} programs in a single network diagnostic\n" @@ -11372,7 +11502,7 @@ msgid "" "displays the results in real time." msgstr "" -#: gnu/packages/networking.scm:2900 +#: gnu/packages/networking.scm:2938 msgid "" "aMule is an eMule-like client for the eD2k and Kademlia peer-to-peer\n" "file sharing networks. It includes a graphical user interface (GUI), a daemon\n" @@ -11381,7 +11511,7 @@ msgid "" "remotely." msgstr "" -#: gnu/packages/networking.scm:2922 +#: gnu/packages/networking.scm:2960 msgid "" "Zyre provides reliable group messaging over local area\n" "networks using zeromq. It has these key characteristics:\n" @@ -11398,13 +11528,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:2956 +#: gnu/packages/networking.scm:2994 msgid "" "This library allows controlling basic functions in SocketCAN\n" "from user-space. It requires a kernel built with SocketCAN support." msgstr "" -#: gnu/packages/networking.scm:2985 +#: gnu/packages/networking.scm:3023 msgid "" "This package provides CAN utilities in the following areas:\n" "\n" @@ -11420,14 +11550,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3021 +#: gnu/packages/networking.scm:3059 msgid "" "Asio is a cross-platform C++ library for network and\n" "low-level I/O programming that provides developers with a consistent\n" "asynchronous model using a modern C++ approach." msgstr "" -#: gnu/packages/networking.scm:3056 +#: gnu/packages/networking.scm:3094 msgid "" "This package is a fast tunnel proxy that helps you bypass firewalls.\n" "\n" @@ -11441,7 +11571,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3134 +#: gnu/packages/networking.scm:3172 msgid "" "The @dfn{Simple Network Management Protocol} (SNMP) is a\n" "widely used protocol for monitoring the health and welfare of network\n" @@ -11450,20 +11580,20 @@ msgid "" "SNMP v3 using both IPv4 and IPv6." msgstr "" -#: gnu/packages/networking.scm:3181 +#: gnu/packages/networking.scm:3219 msgid "" "uBridge is a simple program to create user-land bridges\n" "between various technologies. Currently, bridging between UDP tunnels,\n" "Ethernet and TAP interfaces is supported. Packet capture is also supported." msgstr "" -#: gnu/packages/networking.scm:3213 +#: gnu/packages/networking.scm:3251 msgid "" "This package contains a small set of tools to capture and convert\n" "packets from wireless devices for use with hashcat or John the Ripper." msgstr "" -#: gnu/packages/networking.scm:3244 +#: gnu/packages/networking.scm:3282 msgid "" "Small tool to capture packets from WLAN devices. After capturing,\n" "upload the \"uncleaned\" cap to @url{https://wpa-sec.stanev.org/?submit} to\n" @@ -11473,7 +11603,7 @@ msgid "" "and check if the WLAN key or the master key was transmitted unencrypted." msgstr "" -#: gnu/packages/networking.scm:3271 +#: gnu/packages/networking.scm:3309 msgid "" "Dante is a SOCKS client and server implementation. It can\n" "be installed on a machine with access to an external TCP/IP network and will\n" @@ -11482,21 +11612,21 @@ msgid "" "never see any machines other than the one Dante is running on." msgstr "" -#: gnu/packages/networking.scm:3318 +#: gnu/packages/networking.scm:3356 msgid "" "Restbed is a comprehensive and consistent programming\n" "model for building applications that require seamless and secure\n" "communication over HTTP." msgstr "" -#: gnu/packages/networking.scm:3358 +#: gnu/packages/networking.scm:3396 msgid "" "RESTinio is a header-only C++14 library that gives you an embedded\n" "HTTP/Websocket server. It is based on standalone version of ASIO\n" "and targeted primarily for asynchronous processing of HTTP-requests." msgstr "" -#: gnu/packages/networking.scm:3446 +#: gnu/packages/networking.scm:3487 msgid "" "OpenDHT provides an easy to use distributed in-memory data\n" "store. Every node in the network can read and write values to the store.\n" @@ -11523,20 +11653,20 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/networking.scm:3490 +#: gnu/packages/networking.scm:3531 msgid "" "FRRouting (FRR) is an IP routing protocol suite which includes\n" "protocol daemons for BGP, IS-IS, LDP, OSPF, PIM, and RIP." msgstr "" -#: gnu/packages/networking.scm:3520 +#: gnu/packages/networking.scm:3561 msgid "" "BIRD is an Internet routing daemon with full support for all\n" "the major routing protocols. It allows redistribution between protocols with a\n" "powerful route filtering syntax and an easy-to-use configuration interface." msgstr "" -#: gnu/packages/networking.scm:3568 +#: gnu/packages/networking.scm:3609 msgid "" "iwd is a wireless daemon for Linux that aims to replace WPA\n" "Supplicant. It optimizes resource utilization by not depending on any external\n" @@ -11544,21 +11674,21 @@ msgid "" "maximum extent possible." msgstr "" -#: gnu/packages/networking.scm:3595 +#: gnu/packages/networking.scm:3636 msgid "" "libyang is a YANG data modelling language parser and toolkit\n" "written (and providing API) in C. Current implementation covers YANG 1.0 (RFC\n" "6020) as well as YANG 1.1 (RFC 7950)." msgstr "" -#: gnu/packages/networking.scm:3629 +#: gnu/packages/networking.scm:3670 msgid "" "This package provides a control tool for the\n" "B.A.T.M.A.N. mesh networking routing protocol provided by the Linux kernel\n" "module @code{batman-adv}, for Layer 2." msgstr "" -#: gnu/packages/networking.scm:3662 +#: gnu/packages/networking.scm:3703 msgid "" "PageKite implements a tunneled reverse proxy which makes it easy to make\n" "a service (such as an HTTP or SSH server) on localhost visible to the wider\n" @@ -11566,7 +11696,7 @@ msgid "" "service is available at @url{https://pagekite.net/}, or you can run your own." msgstr "" -#: gnu/packages/networking.scm:3706 +#: gnu/packages/networking.scm:3747 msgid "" "ipcalc takes an IP address and netmask and calculates the\n" "resulting broadcast, network, Cisco wildcard mask, and host range. By giving\n" @@ -11575,7 +11705,7 @@ msgid "" "easy-to-understand binary values." msgstr "" -#: gnu/packages/networking.scm:3745 +#: gnu/packages/networking.scm:3786 msgid "" "Tunctl is used to set up and maintain persistent TUN/TAP\n" "network interfaces, enabling user applications to simulate network traffic.\n" @@ -11583,13 +11713,13 @@ msgid "" "simulation, and a number of other applications." msgstr "" -#: gnu/packages/networking.scm:3765 +#: gnu/packages/networking.scm:3806 msgid "" "Tool to send a magic packet to wake another host on the\n" "network. This must be enabled on the target host, usually in the BIOS." msgstr "" -#: gnu/packages/networking.scm:3802 +#: gnu/packages/networking.scm:3843 msgid "" "This package provides a modern, but Linux-specific\n" "implementation of the @command{traceroute} command that can be used to follow\n" @@ -11600,7 +11730,7 @@ msgid "" "some traces for unprivileged users." msgstr "" -#: gnu/packages/networking.scm:3836 +#: gnu/packages/networking.scm:3877 msgid "" "VDE is a set of programs to provide virtual software-defined\n" "Ethernet network interface controllers across multiple virtual or\n" @@ -11609,7 +11739,7 @@ msgid "" "cables." msgstr "" -#: gnu/packages/networking.scm:3878 +#: gnu/packages/networking.scm:3919 msgid "" "HAProxy is a free, very fast and reliable solution offering\n" "high availability, load balancing, and proxying for TCP and HTTP-based\n" @@ -11618,7 +11748,7 @@ msgid "" "thousands of connections is clearly realistic with today's hardware." msgstr "" -#: gnu/packages/networking.scm:3924 +#: gnu/packages/networking.scm:3965 msgid "" "The @dfn{Link Layer Discovery Protocol} (LLDP) is an industry standard\n" "protocol designed to supplant proprietary Link-Layer protocols such as EDP or\n" @@ -11627,7 +11757,7 @@ msgid "" "an implementation of LLDP. It also supports some proprietary protocols." msgstr "" -#: gnu/packages/networking.scm:3966 +#: gnu/packages/networking.scm:4007 msgid "" "Hashcash is a proof-of-work algorithm, which has been used\n" "as a denial-of-service countermeasure technique in a number of systems.\n" @@ -11640,14 +11770,14 @@ msgid "" "stamps." msgstr "" -#: gnu/packages/networking.scm:3995 +#: gnu/packages/networking.scm:4036 msgid "" "This package provides the NBD (Network Block Devices)\n" "client and server. It allows you to use remote block devices over a TCP/IP\n" "network." msgstr "" -#: gnu/packages/networking.scm:4062 +#: gnu/packages/networking.scm:4103 msgid "" "Yggdrasil is an early-stage implementation of a fully end-to-end encrypted\n" "IPv6 network. It is lightweight, self-arranging, supported on multiple\n" @@ -11656,7 +11786,7 @@ msgid "" "IPv6 Internet connectivity - it also works over IPv4." msgstr "" -#: gnu/packages/networking.scm:4106 +#: gnu/packages/networking.scm:4147 msgid "" "Netdiscover is a network address discovery tool developed\n" "mainly for wireless networks without a @acronym{DHCP} server. It also works\n" @@ -11664,7 +11794,7 @@ msgid "" "@acronym{ARP} requests and sniff for replies." msgstr "" -#: gnu/packages/networking.scm:4138 +#: gnu/packages/networking.scm:4179 msgid "" "PuTTY is a graphical text terminal client. It supports\n" "@acronym{SSH, Secure SHell}, telnet, and raw socket connections with good\n" @@ -11777,14 +11907,14 @@ msgid "" "by using the poppler rendering engine." msgstr "" -#: gnu/packages/pdf.scm:654 +#: gnu/packages/pdf.scm:653 msgid "" "Zathura is a customizable document viewer. It provides a\n" "minimalistic interface and an interface that mainly focuses on keyboard\n" "interaction." msgstr "" -#: gnu/packages/pdf.scm:697 +#: gnu/packages/pdf.scm:696 msgid "" "PoDoFo is a C++ library and set of command-line tools to work with the\n" "PDF file format. It can parse PDF files and load them into memory, and makes\n" @@ -11793,7 +11923,7 @@ msgid "" "extracting content or merging files." msgstr "" -#: gnu/packages/pdf.scm:764 +#: gnu/packages/pdf.scm:763 msgid "" "MuPDF is a C library that implements a PDF and XPS parsing and\n" "rendering engine. It is used primarily to render pages into bitmaps,\n" @@ -11805,7 +11935,7 @@ msgid "" "@command{pdfclean}, and examining the file structure @command{pdfshow}." msgstr "" -#: gnu/packages/pdf.scm:811 +#: gnu/packages/pdf.scm:810 msgid "" "QPDF is a command-line program that does structural, content-preserving\n" "transformations on PDF files. It could have been called something like\n" @@ -11814,7 +11944,7 @@ msgid "" "program capable of converting PDF into other formats." msgstr "" -#: gnu/packages/pdf.scm:855 +#: gnu/packages/pdf.scm:854 msgid "" "@command{qpdfview} is a document viewer for PDF, PS and DJVU\n" "files. It uses the Qt toolkit and features persistent per-file settings,\n" @@ -11822,13 +11952,13 @@ msgid "" "SyncTeX support, and rudimentary support for annotations and forms." msgstr "" -#: gnu/packages/pdf.scm:881 +#: gnu/packages/pdf.scm:880 msgid "" "Xournal is an application for notetaking, sketching, keeping a journal\n" "using a stylus." msgstr "" -#: gnu/packages/pdf.scm:940 +#: gnu/packages/pdf.scm:939 msgid "" "Xournal++ is a hand note taking software written in\n" "C++ with the target of flexibility, functionality and speed. Stroke\n" @@ -11864,14 +11994,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1019 +#: gnu/packages/pdf.scm:1018 msgid "" "This is the ReportLab PDF Toolkit. It allows rapid creation\n" "of rich PDF documents, and also creation of charts in a variety of bitmap and\n" "vector formats." msgstr "" -#: gnu/packages/pdf.scm:1071 +#: gnu/packages/pdf.scm:1070 msgid "" "Impressive is a tool to display PDF files that provides visual effects\n" "such as smooth alpha-blended slide transitions. It provides additional tools\n" @@ -11879,26 +12009,26 @@ msgid "" "the PDF pages." msgstr "" -#: gnu/packages/pdf.scm:1094 +#: gnu/packages/pdf.scm:1093 msgid "" "img2pdf converts images to PDF via direct JPEG inclusion. That\n" "conversion is lossless: the image embedded in the PDF has the exact same color\n" "information for every pixel as the input." msgstr "" -#: gnu/packages/pdf.scm:1147 +#: gnu/packages/pdf.scm:1146 msgid "" "fbida contains a few applications for viewing and editing images on\n" "the framebuffer." msgstr "" -#: gnu/packages/pdf.scm:1171 +#: gnu/packages/pdf.scm:1170 msgid "" "@command{pdf2svg} is a simple command-line PDF to SVG\n" "converter using the Poppler and Cairo libraries." msgstr "" -#: gnu/packages/pdf.scm:1203 +#: gnu/packages/pdf.scm:1202 msgid "" "PyPDF2 is a pure Python PDF library capable of:\n" "\n" @@ -11918,7 +12048,7 @@ msgid "" "manage or manipulate PDFs." msgstr "" -#: gnu/packages/pdf.scm:1240 +#: gnu/packages/pdf.scm:1239 msgid "" "PyPDF2 is a pure Python PDF toolkit.\n" "\n" @@ -11926,7 +12056,7 @@ msgid "" "python-pypdf2 instead." msgstr "" -#: gnu/packages/pdf.scm:1284 +#: gnu/packages/pdf.scm:1283 msgid "" "PDF Arranger is a small application which allows one to merge or split\n" "PDF documents and rotate, crop and rearrange their pages using an interactive\n" @@ -11935,7 +12065,7 @@ msgid "" "PDF Arranger was formerly known as PDF-Shuffler." msgstr "" -#: gnu/packages/pdf.scm:1308 +#: gnu/packages/pdf.scm:1307 msgid "" "@command{pdfposter} can be used to create a large poster by\n" "building it from multiple pages and/or printing it on large media. It expects\n" @@ -11948,7 +12078,7 @@ msgid "" "PDF. Indeed @command{pdfposter} was inspired by @command{poster}." msgstr "" -#: gnu/packages/pdf.scm:1339 +#: gnu/packages/pdf.scm:1338 msgid "" "Pdfgrep searches in pdf files for strings matching a regular expression.\n" "Support some GNU grep options as file name output, page number output,\n" @@ -11956,7 +12086,7 @@ msgid "" "multiple files." msgstr "" -#: gnu/packages/pdf.scm:1387 +#: gnu/packages/pdf.scm:1386 msgid "" "pdfpc is a presentation viewer application which uses multi-monitor\n" "output to provide meta information to the speaker during the presentation. It\n" @@ -11966,13 +12096,13 @@ msgid "" "presentation. The input files processed by pdfpc are PDF documents." msgstr "" -#: gnu/packages/pdf.scm:1414 +#: gnu/packages/pdf.scm:1413 msgid "" "Paps reads a UTF-8 encoded file and generates a PostScript language\n" "rendering of the file through the Pango Cairo back end." msgstr "" -#: gnu/packages/pdf.scm:1444 +#: gnu/packages/pdf.scm:1443 msgid "" "Stapler is a pure Python alternative to PDFtk, a tool for\n" "manipulating PDF documents from the command line. It supports\n" @@ -11986,7 +12116,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1532 +#: gnu/packages/pdf.scm:1531 msgid "" "WeasyPrint helps web developers to create PDF documents. It\n" "turns simple HTML pages into gorgeous statistical reports, invoices, tickets,\n" @@ -15721,7 +15851,7 @@ msgid "" "and enhance them." msgstr "" -#: gnu/packages/photo.scm:601 +#: gnu/packages/photo.scm:603 msgid "" "Photoflare is a cross-platform image editor with an aim\n" "to balance between powerful features and a very friendly graphical user\n" @@ -15731,7 +15861,7 @@ msgid "" "such as Batch image processing." msgstr "" -#: gnu/packages/photo.scm:669 +#: gnu/packages/photo.scm:670 msgid "" "Entangle is an application which uses GTK and libgphoto2 to provide a\n" "graphical interface for tethered photography with digital cameras. It\n" @@ -15739,14 +15869,14 @@ msgid "" "off' shooting directly from the controlling computer." msgstr "" -#: gnu/packages/photo.scm:740 +#: gnu/packages/photo.scm:741 msgid "" "Hugin is an easy to use panoramic imaging toolchain with a graphical\n" "user interface. It can be used to assemble a mosaic of photographs into\n" "a complete panorama and stitch any series of overlapping pictures." msgstr "" -#: gnu/packages/photo.scm:794 +#: gnu/packages/photo.scm:795 msgid "" "RawTherapee is a raw image processing suite. It comprises a\n" "subset of image editing operations specifically aimed at non-destructive raw\n" @@ -15790,7 +15920,28 @@ msgid "" "`special effects' using the filter mechanism." msgstr "" -#: gnu/packages/scanner.scm:144 +#: gnu/packages/scanner.scm:83 +msgid "" +"This SANE backend lets you scan documents and images from scanners and\n" +"multi-function printers that speak eSCL (marketed as ``AirScan'') or\n" +"@acronym{WSD, Web Services for Devices} (or ``WS-Scan'').\n" +"\n" +"Both are vendor-neutral protocols that allow ``driverless'' scanning over IPv4\n" +"and IPv6 networks without the vendor-specific drivers that make up most of the\n" +"sane-backends collection. This is similar to how most contemporary printers\n" +"speak the universal @acronym{IPP, Internet Printing Protocol}.\n" +"\n" +"Only scanners that support eSCL will also work over USB. This requires a\n" +"suitable IPP-over-USB daemon like ipp-usb to be installed and configured.\n" +"\n" +"Any eSCL or WSD-capable scanner should just work. sane-airscan automatically\n" +"discovers and configures devices, including which protocol to use. It was\n" +"successfully tested with many devices from Brother, Canon, Dell, Kyocera,\n" +"Lexmark, Epson, HP, OKI, Panasonic, Pantum, Ricoh, Samsung, and Xerox, with both\n" +"WSD and eSCL." +msgstr "" + +#: gnu/packages/scanner.scm:200 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -15798,7 +15949,7 @@ msgid "" "package contains the library, but no drivers." msgstr "" -#: gnu/packages/scanner.scm:192 +#: gnu/packages/scanner.scm:248 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -15806,7 +15957,7 @@ msgid "" "package contains the library and drivers." msgstr "" -#: gnu/packages/scanner.scm:243 +#: gnu/packages/scanner.scm:299 msgid "" "Scanbd stands for scanner button daemon. It regularly polls\n" "scanners for pressed buttons, function knob changes, or other events such\n" @@ -15822,7 +15973,7 @@ msgid "" "provided the driver also exposes the buttons." msgstr "" -#: gnu/packages/scanner.scm:331 +#: gnu/packages/scanner.scm:387 msgid "" "XSane is a graphical interface for controlling a scanner and acquiring\n" "images from it. You can photocopy multi-page documents and save, fax, print,\n" @@ -15834,14 +15985,14 @@ msgid "" "back-end library, which supports almost all existing scanners." msgstr "" -#: gnu/packages/scheme.scm:225 +#: gnu/packages/scheme.scm:226 msgid "" "GNU/MIT Scheme is an implementation of the Scheme programming\n" "language. It provides an interpreter, a compiler and a debugger. It also\n" "features an integrated Emacs-like editor and a large runtime library." msgstr "" -#: gnu/packages/scheme.scm:324 +#: gnu/packages/scheme.scm:325 msgid "" "Bigloo is a Scheme implementation devoted to one goal: enabling Scheme\n" "based programming style where C(++) is usually required. Bigloo attempts to\n" @@ -15852,7 +16003,7 @@ msgid "" "and between Scheme and Java programs." msgstr "" -#: gnu/packages/scheme.scm:377 +#: gnu/packages/scheme.scm:378 msgid "" "HOP is a multi-tier programming language for the Web 2.0 and the\n" "so-called diffuse Web. It is designed for programming interactive web\n" @@ -15861,14 +16012,14 @@ msgid "" "mashups, office (web agendas, mail clients, ...), etc." msgstr "" -#: gnu/packages/scheme.scm:400 +#: gnu/packages/scheme.scm:401 msgid "" "Scheme 48 is an implementation of Scheme based on a byte-code\n" "interpreter and is designed to be used as a testbed for experiments in\n" "implementation techniques and as an expository tool." msgstr "" -#: gnu/packages/scheme.scm:430 +#: gnu/packages/scheme.scm:431 msgid "" "Gambit consists of two main programs: gsi, the Gambit Scheme\n" "interpreter, and gsc, the Gambit Scheme compiler. The interpreter contains\n" @@ -15879,7 +16030,7 @@ msgid "" "mixed." msgstr "" -#: gnu/packages/scheme.scm:464 +#: gnu/packages/scheme.scm:465 msgid "" "Chibi-Scheme is a very small library with no external dependencies\n" "intended for use as an extension and scripting language in C programs. In\n" @@ -15888,7 +16039,7 @@ msgid "" "threads." msgstr "" -#: gnu/packages/scheme.scm:512 +#: gnu/packages/scheme.scm:513 msgid "" "Structure and Interpretation of Computer Programs (SICP) is\n" "a textbook aiming to teach the principles of computer programming.\n" @@ -15898,19 +16049,19 @@ msgid "" "metalinguistic abstraction, recursion, interpreters, and modular programming." msgstr "" -#: gnu/packages/scheme.scm:556 +#: gnu/packages/scheme.scm:557 msgid "" "String pattern-matching library for scheme48 based on the SRE\n" "regular-expression notation." msgstr "" -#: gnu/packages/scheme.scm:589 +#: gnu/packages/scheme.scm:590 msgid "" "SLIB is a portable Scheme library providing compatibility and\n" "utility functions for all standard Scheme implementations." msgstr "" -#: gnu/packages/scheme.scm:643 +#: gnu/packages/scheme.scm:644 msgid "" "GNU SCM is an implementation of Scheme. This\n" "implementation includes Hobbit, a Scheme-to-C compiler, which can\n" @@ -15918,7 +16069,7 @@ msgid "" "linked with a SCM executable." msgstr "" -#: gnu/packages/scheme.scm:702 +#: gnu/packages/scheme.scm:703 msgid "" "TinyScheme is a light-weight Scheme interpreter that implements as large a\n" "subset of R5RS as was possible without getting very large and complicated.\n" @@ -15934,7 +16085,7 @@ msgid "" "small program, it is easy to comprehend, get to grips with, and use." msgstr "" -#: gnu/packages/scheme.scm:783 +#: gnu/packages/scheme.scm:784 msgid "" "Stalin is an aggressively optimizing whole-program compiler\n" "for Scheme that does polyvariant interprocedural flow analysis,\n" @@ -15946,7 +16097,7 @@ msgid "" "generation." msgstr "" -#: gnu/packages/scheme.scm:819 +#: gnu/packages/scheme.scm:820 msgid "" "Scheme 9 from Empty Space (S9fES) is a mature, portable, and\n" "comprehensible public-domain interpreter for R4RS Scheme offering:\n" @@ -15961,14 +16112,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/scheme.scm:877 +#: gnu/packages/scheme.scm:878 msgid "" "@code{femtolisp} is a scheme-like lisp implementation with a\n" "simple, elegant Scheme dialect. It is a lisp-1 with lexical scope.\n" "The core is 12 builtin special forms and 33 builtin functions." msgstr "" -#: gnu/packages/scheme.scm:940 +#: gnu/packages/scheme.scm:941 msgid "" "Gauche is a R7RS Scheme scripting engine aiming at being a\n" "handy tool that helps programmers and system administrators to write small to\n" @@ -15978,7 +16129,7 @@ msgid "" "and list gauche extension packages." msgstr "" -#: gnu/packages/scheme.scm:1038 +#: gnu/packages/scheme.scm:1039 msgid "" "Gerbil is an opinionated dialect of Scheme designed for Systems\n" "Programming, with a state of the art macro and module system on top of the Gambit\n" @@ -16115,7 +16266,7 @@ msgid "" "server and an IRC server." msgstr "" -#: gnu/packages/shells.scm:107 +#: gnu/packages/shells.scm:108 msgid "" "dash is a POSIX-compliant @command{/bin/sh} implementation that aims to be\n" "as small as possible, often without sacrificing speed. It is faster than the\n" @@ -16123,7 +16274,7 @@ msgid "" "direct descendant of NetBSD's Almquist Shell (@command{ash})." msgstr "" -#: gnu/packages/shells.scm:255 +#: gnu/packages/shells.scm:256 msgid "" "Fish (friendly interactive shell) is a shell focused on interactive use,\n" "discoverability, and friendliness. Fish has very user-friendly and powerful\n" @@ -16135,20 +16286,20 @@ msgid "" "and syntax highlighting." msgstr "" -#: gnu/packages/shells.scm:308 +#: gnu/packages/shells.scm:309 msgid "" "@code{fish-foreign-env} wraps bash script execution in a way\n" "that environment variables that are exported or modified get imported back\n" "into fish." msgstr "" -#: gnu/packages/shells.scm:344 +#: gnu/packages/shells.scm:345 msgid "" "This is a reimplementation by Byron Rakitzis of the Plan 9 shell. It\n" "has a small feature set similar to a traditional Bourne shell." msgstr "" -#: gnu/packages/shells.scm:377 +#: gnu/packages/shells.scm:378 msgid "" "Es is an extensible shell. The language was derived from the Plan 9\n" "shell, rc, and was influenced by functional programming languages, such as\n" @@ -16157,7 +16308,7 @@ msgid "" "written by Paul Haahr and Byron Rakitzis." msgstr "" -#: gnu/packages/shells.scm:455 +#: gnu/packages/shells.scm:456 msgid "" "Tcsh is an enhanced, but completely compatible version of the Berkeley\n" "UNIX C shell (csh). It is a command language interpreter usable both as an\n" @@ -16166,7 +16317,7 @@ msgid "" "history mechanism, job control and a C-like syntax." msgstr "" -#: gnu/packages/shells.scm:522 +#: gnu/packages/shells.scm:523 msgid "" "The Z shell (zsh) is a Unix shell that can be used\n" "as an interactive login shell and as a powerful command interpreter\n" @@ -16175,7 +16326,7 @@ msgid "" "ksh, and tcsh." msgstr "" -#: gnu/packages/shells.scm:572 +#: gnu/packages/shells.scm:573 msgid "" "Xonsh is a Python-ish, BASHwards-looking shell language and command\n" "prompt. The language is a superset of Python 3.4+ with additional shell\n" @@ -16184,7 +16335,7 @@ msgid "" "use of experts and novices alike." msgstr "" -#: gnu/packages/shells.scm:616 +#: gnu/packages/shells.scm:617 msgid "" "Scsh is a Unix shell embedded in Scheme. Scsh has two main\n" "components: a process notation for running programs and setting up pipelines\n" @@ -16192,7 +16343,7 @@ msgid "" "operating system." msgstr "" -#: gnu/packages/shells.scm:658 +#: gnu/packages/shells.scm:659 msgid "" "Linenoise is a minimal, zero-config, readline replacement.\n" "Its features include:\n" @@ -16206,7 +16357,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/shells.scm:722 +#: gnu/packages/shells.scm:723 msgid "" "S is a new shell that aims to be extremely simple. It does not\n" "implement the POSIX shell standard.\n" @@ -16220,19 +16371,19 @@ msgid "" "A @code{andglob} program is also provided along with s." msgstr "" -#: gnu/packages/shells.scm:753 +#: gnu/packages/shells.scm:754 msgid "" "Oksh is a port of the OpenBSD Korn Shell.\n" "The OpenBSD Korn Shell is a cleaned up and enhanced ksh." msgstr "" -#: gnu/packages/shells.scm:783 +#: gnu/packages/shells.scm:784 msgid "" "loksh is a Linux port of OpenBSD's @command{ksh}. It is a small,\n" "interactive POSIX shell targeted at resource-constrained systems." msgstr "" -#: gnu/packages/shells.scm:821 +#: gnu/packages/shells.scm:822 msgid "" "mksh is an actively developed free implementation of the\n" "Korn Shell programming language and a successor to the Public Domain Korn\n" @@ -16264,7 +16415,7 @@ msgid "" "files and text." msgstr "" -#: gnu/packages/shells.scm:1006 +#: gnu/packages/shells.scm:1005 msgid "" "Nu draws inspiration from projects like PowerShell, functional\n" "programming languages, and modern CLI tools. Rather than thinking of files\n" @@ -16275,7 +16426,7 @@ msgid "" "of commands called a ``pipeline''." msgstr "" -#: gnu/packages/shells.scm:1037 +#: gnu/packages/shells.scm:1036 msgid "" "This package is a library for ANSI terminal colors and styles (bold,\n" "underline)." @@ -16548,19 +16699,19 @@ msgid "" "your calls and messages." msgstr "" -#: gnu/packages/telephony.scm:874 +#: gnu/packages/telephony.scm:869 msgid "" "PJProject provides an implementation of the Session\n" "Initiation Protocol (SIP) and a multimedia framework." msgstr "" -#: gnu/packages/telephony.scm:916 +#: gnu/packages/telephony.scm:911 msgid "" "A collection of libraries and header files for implementing\n" "telephony functionality into custom Telegram clients." msgstr "" -#: gnu/packages/tex.scm:532 +#: gnu/packages/tex.scm:543 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -16570,20 +16721,20 @@ msgid "" "This package contains the binaries." msgstr "" -#: gnu/packages/tex.scm:571 +#: gnu/packages/tex.scm:582 msgid "" "kpathsea is a library, whose purpose is to return a filename\n" "from a list of user-specified directories similar to how shells look up\n" "executables. It is maintained as a part of TeX Live." msgstr "" -#: gnu/packages/tex.scm:591 +#: gnu/packages/tex.scm:602 msgid "" "This package provides the docstrip utility to strip\n" "documentation from TeX files. It is part of the LaTeX base." msgstr "" -#: gnu/packages/tex.scm:606 +#: gnu/packages/tex.scm:617 msgid "" "This bundle provides generic access to Unicode Consortium\n" "data for TeX use. It contains a set of text files provided by the Unicode\n" @@ -16596,7 +16747,7 @@ msgid "" "out to date by @code{unicode-letters.tex}." msgstr "" -#: gnu/packages/tex.scm:638 +#: gnu/packages/tex.scm:649 msgid "" "This package includes Knuth's original @file{hyphen.tex},\n" "@file{zerohyph.tex} to disable hyphenation, @file{language.us} which starts\n" @@ -16604,13 +16755,13 @@ msgid "" "default versions of those), etc." msgstr "" -#: gnu/packages/tex.scm:659 +#: gnu/packages/tex.scm:670 msgid "" "This package provides files needed for converting DVI files\n" "to PostScript." msgstr "" -#: gnu/packages/tex.scm:673 +#: gnu/packages/tex.scm:684 msgid "" "This bundle provides a collection of model \".ini\" files\n" "for creating TeX formats. These files are commonly used to introduced\n" @@ -16619,13 +16770,13 @@ msgid "" "to adapt the plain e-TeX source file to work with XeTeX and LuaTeX." msgstr "" -#: gnu/packages/tex.scm:736 +#: gnu/packages/tex.scm:747 msgid "" "This package provides the Metafont base files needed to\n" "build fonts using the Metafont system." msgstr "" -#: gnu/packages/tex.scm:821 +#: gnu/packages/tex.scm:832 msgid "" "This package provides TeX macros for converting Adobe Font\n" "Metric files to TeX metric and virtual font format. Fontinst helps mainly\n" @@ -16635,7 +16786,7 @@ msgid "" "typesetting in these fonts." msgstr "" -#: gnu/packages/tex.scm:842 +#: gnu/packages/tex.scm:853 msgid "" "This is Fontname, a naming scheme for (the base part of)\n" "external TeX font filenames. This makes at most eight-character names\n" @@ -16643,7 +16794,7 @@ msgid "" "documents." msgstr "" -#: gnu/packages/tex.scm:915 +#: gnu/packages/tex.scm:926 msgid "" "This package provides the Computer Modern fonts by Donald\n" "Knuth. The Computer Modern font family is a large collection of text,\n" @@ -16651,7 +16802,7 @@ msgid "" "8A." msgstr "" -#: gnu/packages/tex.scm:946 +#: gnu/packages/tex.scm:957 msgid "" "The CM-Super family provides Adobe Type 1 fonts that replace\n" "the T1/TS1-encoded Computer Modern (EC/TC), T1/TS1-encoded Concrete,\n" @@ -16661,14 +16812,14 @@ msgid "" "originals." msgstr "" -#: gnu/packages/tex.scm:979 +#: gnu/packages/tex.scm:990 #, fuzzy msgid "" "This package provides a drop-in replacements for the Courier\n" "font from Adobe's basic set." msgstr "Tiu ĉi pako provizas vortaron por la literumilo GNU Aspell." -#: gnu/packages/tex.scm:1002 +#: gnu/packages/tex.scm:1013 msgid "" "The TeX-GYRE bundle consist of multiple font families:\n" "@itemize @bullet\n" @@ -16688,21 +16839,21 @@ msgid "" "support (for use with a variety of encodings) is provided." msgstr "" -#: gnu/packages/tex.scm:1041 +#: gnu/packages/tex.scm:1052 msgid "" "The Latin Modern fonts are derived from the famous Computer\n" "Modern fonts designed by Donald E. Knuth and described in Volume E of his\n" "Computers & Typesetting series." msgstr "" -#: gnu/packages/tex.scm:1106 +#: gnu/packages/tex.scm:1117 msgid "" "This is a collection of core TeX and METAFONT macro files\n" "from Donald Knuth, including the plain format, plain base, and the MF logo\n" "fonts." msgstr "" -#: gnu/packages/tex.scm:1181 +#: gnu/packages/tex.scm:1192 msgid "" "This is a collection of fonts for use with standard LaTeX\n" "packages and classes. It includes invisible fonts (for use with the slides\n" @@ -16710,14 +16861,14 @@ msgid "" "symbol fonts." msgstr "" -#: gnu/packages/tex.scm:1253 +#: gnu/packages/tex.scm:1264 msgid "" "This package provides LaTeX and font definition files to access the\n" "Knuthian mflogo fonts described in The Metafontbook and to typeset Metafont\n" "logos in LaTeX documents." msgstr "" -#: gnu/packages/tex.scm:1274 +#: gnu/packages/tex.scm:1285 msgid "" "These fonts were created in METAFONT by Knuth, for his own publications.\n" "At some stage, the letters P and S were added, so that the METAPOST logo could\n" @@ -16726,7 +16877,7 @@ msgid "" "Taco Hoekwater." msgstr "" -#: gnu/packages/tex.scm:1402 +#: gnu/packages/tex.scm:1415 gnu/packages/tex.scm:1579 msgid "" "This package provides an extended set of fonts for use in mathematics,\n" "including: extra mathematical symbols; blackboard bold letters (uppercase\n" @@ -16740,7 +16891,7 @@ msgid "" "details can be found in the documentation." msgstr "" -#: gnu/packages/tex.scm:1432 +#: gnu/packages/tex.scm:1609 msgid "" "Mkpattern is a general purpose program for the generation of\n" "hyphenation patterns, with definition of letter sets and template-like\n" @@ -16748,7 +16899,7 @@ msgid "" "output encodings, and features generation of clean UTF-8 patterns." msgstr "" -#: gnu/packages/tex.scm:1489 +#: gnu/packages/tex.scm:1666 msgid "" "This package provides an extended version of TeX (which is capable of\n" "running as if it were TeX unmodified). E-TeX has been specified by the LaTeX\n" @@ -16757,128 +16908,137 @@ msgid "" "incorporates the e-TeX extensions." msgstr "" -#: gnu/packages/tex.scm:1507 +#: gnu/packages/tex.scm:1684 msgid "" "This package contains files used to build the Plain TeX format, as\n" "described in the TeXbook, together with various supporting files (some also\n" "discussed in the book)." msgstr "" -#: gnu/packages/tex.scm:1533 +#: gnu/packages/tex.scm:1702 +msgid "" +"The package facilitates wrapping text to a specific character width, breaking\n" +"lines by words rather than, as done by TeX, by characters. The primary use for\n" +"these facilities is to aid the generation of messages sent to the log file or\n" +"console output to display messages to the user. Package authors may also find\n" +"this useful when writing out arbitary text to an external file." +msgstr "" + +#: gnu/packages/tex.scm:1730 #, fuzzy msgid "" "This package provides a drop-in replacements for the Helvetica\n" "font from Adobe's basic set." msgstr "Tiu ĉi pako provizas vortaron por la literumilo GNU Aspell." -#: gnu/packages/tex.scm:1546 +#: gnu/packages/tex.scm:1743 #, fuzzy msgid "" "The package provides hyphenation patterns for the Afrikaans\n" "language." msgstr "Tiu ĉi pako provizas datumbazan interfacon por Perl." -#: gnu/packages/tex.scm:1560 +#: gnu/packages/tex.scm:1757 #, fuzzy msgid "" "The package provides hyphenation patterns for ancient\n" "Greek." msgstr "Tiu ĉi pako provizas datumbazan interfacon por Perl." -#: gnu/packages/tex.scm:1573 +#: gnu/packages/tex.scm:1770 #, fuzzy msgid "" "The package provides hyphenation patterns for the Armenian\n" "language." msgstr "Tiu ĉi pako provizas datumbazan interfacon por Perl." -#: gnu/packages/tex.scm:1587 +#: gnu/packages/tex.scm:1784 #, fuzzy msgid "" "The package provides hyphenation patterns for the Basque\n" "language." msgstr "Tiu ĉi pako provizas vortaron por la literumilo GNU Aspell." -#: gnu/packages/tex.scm:1601 +#: gnu/packages/tex.scm:1798 #, fuzzy msgid "" "The package provides hyphenation patterns for the Belarusian\n" "language." msgstr "Tiu ĉi pako provizas vortaron por la literumilo GNU Aspell." -#: gnu/packages/tex.scm:1613 +#: gnu/packages/tex.scm:1810 msgid "" "The package provides hyphenation patterns for the Bulgarian\n" "language in T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1627 +#: gnu/packages/tex.scm:1824 msgid "" "The package provides hyphenation patterns for Catalan in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1640 +#: gnu/packages/tex.scm:1837 msgid "" "The package provides hyphenation patterns for unaccented\n" "Chinese pinyin T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1652 +#: gnu/packages/tex.scm:1849 msgid "" "The package provides hyphenation patterns for Church\n" "Slavonic in UTF-8 encoding." msgstr "" -#: gnu/packages/tex.scm:1665 +#: gnu/packages/tex.scm:1862 msgid "" "The package provides hyphenation patterns for Coptic in\n" "UTF-8 encoding as well as in ASCII-based encoding for 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:1678 +#: gnu/packages/tex.scm:1875 msgid "" "The package provides hyphenation patterns for Croatian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1690 +#: gnu/packages/tex.scm:1887 msgid "" "The package provides hyphenation patterns for Czech in T1/EC\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1702 +#: gnu/packages/tex.scm:1899 msgid "" "The package provides hyphenation patterns for Danish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1715 +#: gnu/packages/tex.scm:1912 msgid "" "The package provides hyphenation patterns for Dutch in T1/EC\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1728 +#: gnu/packages/tex.scm:1925 msgid "" "The package provides additional hyphenation patterns for\n" "American and British English in ASCII encoding." msgstr "" -#: gnu/packages/tex.scm:1742 +#: gnu/packages/tex.scm:1939 msgid "" "The package provides hyphenation patterns for Esperanto ISO\n" "Latin 3 and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1754 +#: gnu/packages/tex.scm:1951 msgid "" "The package provides hyphenation patterns for Estonian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1768 +#: gnu/packages/tex.scm:1965 msgid "" "The package provides hyphenation patterns for languages\n" "written using the Ethiopic script for Unicode engines. They are not supposed\n" @@ -16886,96 +17046,96 @@ msgid "" "be replaced by files tailored to individual languages." msgstr "" -#: gnu/packages/tex.scm:1782 +#: gnu/packages/tex.scm:1979 msgid "" "The package provides hyphenation patterns for Finnish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1794 +#: gnu/packages/tex.scm:1991 #, fuzzy msgid "" "The package provides hyphenation patterns for Finnish for\n" "school in T1/EC and UTF-8 encodings." msgstr "Tiu ĉi pako provizas datumbazan interfacon por Perl." -#: gnu/packages/tex.scm:1806 +#: gnu/packages/tex.scm:2003 msgid "" "The package provides hyphenation patterns for French in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1818 +#: gnu/packages/tex.scm:2015 msgid "" "The package provides hyphenation patterns for Friulan in\n" "ASCII encodings." msgstr "" -#: gnu/packages/tex.scm:1831 +#: gnu/packages/tex.scm:2028 msgid "" "The package provides hyphenation patterns for Galician in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1843 +#: gnu/packages/tex.scm:2040 msgid "" "The package provides hyphenation patterns for Georgian in\n" "T8M, T8K, and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1861 +#: gnu/packages/tex.scm:2058 msgid "" "This package provides hyphenation patterns for German in\n" "T1/EC and UTF-8 encodings, for traditional and reformed spelling, including\n" "Swiss German." msgstr "" -#: gnu/packages/tex.scm:1880 +#: gnu/packages/tex.scm:2077 msgid "" "This package provides hyphenation patterns for Modern Greek\n" "in monotonic and polytonic spelling in LGR and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1894 +#: gnu/packages/tex.scm:2091 msgid "" "This package provides hyphenation patterns for Hungarian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1907 +#: gnu/packages/tex.scm:2104 msgid "" "This package provides hyphenation patterns for Icelandic in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1930 +#: gnu/packages/tex.scm:2127 msgid "" "This package provides hyphenation patterns for Assamese,\n" "Bengali, Gujarati, Hindi, Kannada, Malayalam, Marathi, Oriya, Panjabi, Tamil\n" "and Telugu for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:1943 +#: gnu/packages/tex.scm:2140 msgid "" "This package provides hyphenation patterns for\n" "Indonesian (Bahasa Indonesia) in ASCII encoding. They are probably also\n" "usable for Malay (Bahasa Melayu)." msgstr "" -#: gnu/packages/tex.scm:1956 +#: gnu/packages/tex.scm:2153 #, fuzzy msgid "" "This package provides hyphenation patterns for Interlingua\n" "in ASCII encoding." msgstr "Tiu ĉi pako provizas datumbazan interfacon por Perl." -#: gnu/packages/tex.scm:1968 +#: gnu/packages/tex.scm:2165 msgid "" "This package provides hyphenation patterns for\n" "Irish (Gaeilge) in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1981 +#: gnu/packages/tex.scm:2178 msgid "" "This package provides hyphenation patterns for Italian in\n" "ASCII encoding. Compliant with the Recommendation UNI 6461 on hyphenation\n" @@ -16983,14 +17143,14 @@ msgid "" "UNI)." msgstr "" -#: gnu/packages/tex.scm:1995 +#: gnu/packages/tex.scm:2192 msgid "" "This package provides hyphenation patterns for\n" "Kurmanji (Northern Kurdish) as spoken in Turkey and by the Kurdish diaspora in\n" "Europe, in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2011 +#: gnu/packages/tex.scm:2208 msgid "" "This package provides hyphenation patterns for Latin in\n" "T1/EC and UTF-8 encodings, mainly in modern spelling (u when u is needed and v\n" @@ -17004,36 +17164,36 @@ msgid "" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2032 +#: gnu/packages/tex.scm:2229 msgid "" "This package provides hyphenation patterns for Latvian in\n" "L7X and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2045 +#: gnu/packages/tex.scm:2242 msgid "" "This package provides hyphenation patterns for Lithuanian in\n" "L7X and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2060 +#: gnu/packages/tex.scm:2257 #, fuzzy -msgid "This package provides hypenation patterns for Macedonian." +msgid "This package provides hyphenation patterns for Macedonian." msgstr "Tiu ĉi pako provizas datumbazan interfacon por Perl." -#: gnu/packages/tex.scm:2073 +#: gnu/packages/tex.scm:2270 msgid "" "This package provides hyphenation patterns for Mongolian in\n" "T2A, LMC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2088 +#: gnu/packages/tex.scm:2285 msgid "" "This package provides hyphenation patterns for Norwegian\n" "Bokmal and Nynorsk in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2102 +#: gnu/packages/tex.scm:2299 msgid "" "This package provides hyphenation patterns for Occitan in\n" "T1/EC and UTF-8 encodings. They are supposed to be valid for all the Occitan\n" @@ -17042,95 +17202,95 @@ msgid "" "Alps encompassing the southern half of the French pentagon." msgstr "" -#: gnu/packages/tex.scm:2117 +#: gnu/packages/tex.scm:2314 #, fuzzy msgid "" "This package provides hyphenation patterns for Panjabi in\n" "T1/EC encoding." msgstr "Tiu ĉi pako provizas datumbazan interfacon por Perl." -#: gnu/packages/tex.scm:2130 +#: gnu/packages/tex.scm:2327 msgid "" "This package provides hyphenation patterns for Piedmontese\n" "in ASCII encoding. Compliant with 'Gramatica dla lengua piemonteisa' by\n" "Camillo Brero." msgstr "" -#: gnu/packages/tex.scm:2143 +#: gnu/packages/tex.scm:2340 msgid "" "This package provides hyphenation patterns for Polish in QX\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2156 +#: gnu/packages/tex.scm:2353 msgid "" "This package provides hyphenation patterns for Portuguese in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2168 +#: gnu/packages/tex.scm:2365 msgid "" "This package provides hyphenation patterns for Romanian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2181 +#: gnu/packages/tex.scm:2378 msgid "" "This package provides hyphenation patterns for Romansh in\n" "ASCII encodings. They are supposed to comply with the rules indicated by the\n" "Lia Rumantscha (Romansh language society)." msgstr "" -#: gnu/packages/tex.scm:2194 +#: gnu/packages/tex.scm:2391 msgid "" "This package provides hyphenation patterns for Russian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2207 +#: gnu/packages/tex.scm:2404 msgid "" "This package provides hyphenation patterns for Sanskrit and\n" "Prakrit in longdesc transliteration, and in Devanagari, Bengali, Kannada,\n" "Malayalam longdesc and Telugu scripts for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:2224 +#: gnu/packages/tex.scm:2421 msgid "" "This package provides hyphenation patterns for Serbian in\n" "T1/EC, T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2237 +#: gnu/packages/tex.scm:2434 msgid "" "This package provides hyphenation patterns for Slovak in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2249 +#: gnu/packages/tex.scm:2446 msgid "" "This package provides hyphenation patterns for Slovenian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2265 +#: gnu/packages/tex.scm:2462 msgid "" "The package provides hyphenation patterns for Spanish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2277 +#: gnu/packages/tex.scm:2474 msgid "" "This package provides hyphenation patterns for Swedish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2289 +#: gnu/packages/tex.scm:2486 msgid "" "This package provides hyphenation patterns for Thai in LTH\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2302 +#: gnu/packages/tex.scm:2499 msgid "" "The package provides hyphenation patterns for Turkish in\n" "T1/EC and UTF-8 encodings. The patterns for Turkish were first produced for\n" @@ -17140,31 +17300,31 @@ msgid "" "compatibility with 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:2319 +#: gnu/packages/tex.scm:2516 msgid "" "The package provides hyphenation patterns for Turkmen in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2331 +#: gnu/packages/tex.scm:2528 msgid "" "This package provides hyphenation patterns for Ukrainian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2344 +#: gnu/packages/tex.scm:2541 msgid "" "This package provides hyphenation patterns for Upper Sorbian\n" "in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2356 +#: gnu/packages/tex.scm:2553 msgid "" "This package provides hyphenation patterns for Welsh in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2477 +#: gnu/packages/tex.scm:2674 msgid "" "Modern native UTF-8 engines such as XeTeX and LuaTeX need\n" "hyphenation patterns in UTF-8 format, whereas older systems require\n" @@ -17177,7 +17337,7 @@ msgid "" "converters, will completely supplant the older patterns." msgstr "" -#: gnu/packages/tex.scm:2521 +#: gnu/packages/tex.scm:2718 msgid "" "The package provides experimental hyphenation patterns for\n" "the German language, covering both traditional and reformed orthography. The\n" @@ -17185,21 +17345,29 @@ msgid "" "bundle." msgstr "" -#: gnu/packages/tex.scm:2542 +#: gnu/packages/tex.scm:2739 msgid "" "The package provides a range of hyphenation patterns for\n" "Ukrainian, depending on the encoding of the output font including the standard\n" "T2A." msgstr "" -#: gnu/packages/tex.scm:2577 +#: gnu/packages/tex.scm:2774 msgid "" "The package provides a collection of Russian hyphenation\n" "patterns supporting a number of Cyrillic font encodings, including T2,\n" "UCY (Omega Unicode Cyrillic), LCY, LWN (OT2), and koi8-r." msgstr "" -#: gnu/packages/tex.scm:2620 +#: gnu/packages/tex.scm:2792 +msgid "" +"This package deals with input encodings. It provides a wider range of input\n" +"encodings using standard mappings, than does inputenc; it also covers nearly all\n" +"slots. In this way, it serves as more uptodate replacement for package\n" +"inputenc." +msgstr "" + +#: gnu/packages/tex.scm:2853 msgid "" "Kpathsea is a library and utility programs which provide\n" "path searching facilities for TeX file types, including the self-locating\n" @@ -17207,14 +17375,28 @@ msgid "" "mechanism. This package provides supporting files." msgstr "" -#: gnu/packages/tex.scm:2636 +#: gnu/packages/tex.scm:2876 +msgid "" +"The family contains text fonts in roman, sans-serif and monospaced\n" +"shapes, with true small caps and old-style numbers; the package offers full\n" +"support of the textcomp package. The mathematics fonts include all the AMS\n" +"fonts, in both normal and bold weights. Each of the font types is available\n" +"in two main versions: default and light. Each version is available in four\n" +"variants: default; oldstyle numbers; oldstyle numbers with old ligatures such\n" +"as ct and st, and long-tailed capital Q; and veryoldstyle with long s. Other\n" +"variants include small caps as default or large small caps, and for\n" +"mathematics both upright and slanted shapes for Greek letters, as well as\n" +"default and narrow versions of multiple integrals." +msgstr "" + +#: gnu/packages/tex.scm:2898 #, fuzzy msgid "" "The package provides configuration files for LaTeX-related\n" "formats." msgstr "Tiu ĉi pako provizas datumbazan interfacon por Perl." -#: gnu/packages/tex.scm:2867 +#: gnu/packages/tex.scm:3127 msgid "" "This bundle comprises the source of LaTeX itself, together with several\n" "packages which are considered \"part of the kernel\". This bundle, together\n" @@ -17222,7 +17404,7 @@ msgid "" "contain." msgstr "" -#: gnu/packages/tex.scm:2885 +#: gnu/packages/tex.scm:3145 msgid "" "This LaTeX packages provides two hooks for @code{\\end@{document@}}\n" "that are executed after the hook of @code{\\AtEndDocument}:\n" @@ -17232,7 +17414,7 @@ msgid "" "of the @file{.aux} file." msgstr "" -#: gnu/packages/tex.scm:2905 +#: gnu/packages/tex.scm:3165 #, fuzzy #| msgid "This package provides tools for manipulating ext2/ext3/ext4 file systems." msgid "" @@ -17240,7 +17422,7 @@ msgid "" "@file{.aux} files." msgstr "Tiu ĉi pako provizas ilojn por manipuli dosiersistemojn ext2/ext3/ext4." -#: gnu/packages/tex.scm:2921 +#: gnu/packages/tex.scm:3181 msgid "" "The package adds support for EPS files in the @code{graphicx} package\n" "when running under pdfTeX. If an EPS graphic is detected, the package\n" @@ -17248,7 +17430,7 @@ msgid "" "@command{epstopdf}." msgstr "" -#: gnu/packages/tex.scm:2943 +#: gnu/packages/tex.scm:3203 msgid "" "LaTeX2e's @code{filecontents} and @code{filecontents*} environments\n" "enable a LaTeX source file to generate external files as it runs through\n" @@ -17259,7 +17441,7 @@ msgid "" "@code{filecontents*} anywhere." msgstr "" -#: gnu/packages/tex.scm:2964 +#: gnu/packages/tex.scm:3224 msgid "" "This package provides the original (and now obsolescent) graphics\n" "inclusion macros for use with dvips, still widely used by Plain TeX users (in\n" @@ -17269,7 +17451,7 @@ msgid "" "users, via its Plain TeX version.)" msgstr "" -#: gnu/packages/tex.scm:2986 +#: gnu/packages/tex.scm:3246 msgid "" "This package provides tools for the flexible handling of verbatim text\n" "including: verbatim commands in footnotes; a variety of verbatim environments\n" @@ -17279,7 +17461,7 @@ msgid "" "verbatim source)." msgstr "" -#: gnu/packages/tex.scm:3008 +#: gnu/packages/tex.scm:3268 msgid "" "This bundle is a combined distribution consisting of @file{dvips.def},\n" "@file{pdftex.def}, @file{luatex.def}, @file{xetex.def}, @file{dvipdfmx.def},\n" @@ -17287,13 +17469,19 @@ msgid "" "packages." msgstr "" -#: gnu/packages/tex.scm:3026 +#: gnu/packages/tex.scm:3286 msgid "" "This bundle includes @file{color.cfg} and @file{graphics.cfg} files that\n" "set default \"driver\" options for the color and graphics packages." msgstr "" -#: gnu/packages/tex.scm:3048 +#: gnu/packages/tex.scm:3303 +msgid "" +"The package provides Greek LICR macro definitions and encoding definition files\n" +"for Greek text font encodings for use with fontenc." +msgstr "" + +#: gnu/packages/tex.scm:3325 msgid "" "This is a collection of LaTeX packages for producing color, including\n" "graphics (e.g. PostScript) files, and rotation and scaling of text in LaTeX\n" @@ -17301,13 +17489,13 @@ msgid "" "keyval, and lscape." msgstr "" -#: gnu/packages/tex.scm:3066 +#: gnu/packages/tex.scm:3343 msgid "" "This package provides the code for the @code{color} option that is\n" "used by @code{hyperref} and @code{bookmark}." msgstr "" -#: gnu/packages/tex.scm:3098 +#: gnu/packages/tex.scm:3375 msgid "" "The package starts from the basic facilities of the colorcolor package,\n" "and provides easy driver-independent access to several kinds of color tints,\n" @@ -17318,7 +17506,7 @@ msgid "" "tables." msgstr "" -#: gnu/packages/tex.scm:3171 +#: gnu/packages/tex.scm:3448 msgid "" "The package provides an implementation of a parser for\n" "documents matching the XML 1.0 and XML Namespace Recommendations. Element and\n" @@ -17326,7 +17514,7 @@ msgid "" "XML, using UTF-8 or a suitable 8-bit encoding." msgstr "" -#: gnu/packages/tex.scm:3222 +#: gnu/packages/tex.scm:3499 msgid "" "The @code{hyperref} package is used to handle cross-referencing commands\n" "in LaTeX to produce hypertext links in the document. The package provides\n" @@ -17338,20 +17526,20 @@ msgid "" "@code{nameref} packages, which make use of the facilities of @code{hyperref}." msgstr "" -#: gnu/packages/tex.scm:3262 +#: gnu/packages/tex.scm:3539 msgid "" "The bundle comprises various LaTeX packages, providing among others:\n" "better accessibility support for PDF files; extensible chemists reaction\n" "arrows; record information about document class(es) used; and many more." msgstr "" -#: gnu/packages/tex.scm:3285 +#: gnu/packages/tex.scm:3562 msgid "" "This package provides additional rerun warnings if some auxiliary\n" "files have changed. It is based on MD5 checksum, provided by pdfTeX." msgstr "" -#: gnu/packages/tex.scm:3319 +#: gnu/packages/tex.scm:3596 msgid "" "This package is a collection of (variously) simple tools provided as\n" "part of the LaTeX required tools distribution, comprising the following\n" @@ -17361,7 +17549,7 @@ msgid "" "xr, and xspace." msgstr "" -#: gnu/packages/tex.scm:3338 +#: gnu/packages/tex.scm:3615 msgid "" "The command @code{\\url} is a form of verbatim command that\n" "allows linebreaks at certain characters or combinations of characters, accepts\n" @@ -17373,14 +17561,14 @@ msgid "" "of file names." msgstr "" -#: gnu/packages/tex.scm:3364 +#: gnu/packages/tex.scm:3641 msgid "" "This package provides font maps that were originally part of\n" "the now obsolete teTeX distributions but are still used at the core of the TeX\n" "Live distribution." msgstr "" -#: gnu/packages/tex.scm:3391 +#: gnu/packages/tex.scm:3668 msgid "" "The l3kernel bundle provides an implementation of the LaTeX3\n" "programmers’ interface, as a set of packages that run under LaTeX 2e. The\n" @@ -17389,7 +17577,7 @@ msgid "" "that the LaTeX3 conventions can be used with regular LaTeX 2e packages." msgstr "" -#: gnu/packages/tex.scm:3420 +#: gnu/packages/tex.scm:3697 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" @@ -17398,7 +17586,7 @@ msgid "" "an independent schedule." msgstr "" -#: gnu/packages/tex.scm:3484 +#: gnu/packages/tex.scm:3761 msgid "" "This bundle holds prototype implementations of concepts for a LaTeX\n" "designer interface, to be used with the experimental LaTeX kernel as\n" @@ -17415,14 +17603,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:3511 +#: gnu/packages/tex.scm:3788 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" "here are defined for the dvips engine only." msgstr "" -#: gnu/packages/tex.scm:3539 +#: gnu/packages/tex.scm:3816 msgid "" "Fontspec is a package for XeLaTeX and LuaLaTeX. It provides an\n" "automatic and unified interface to feature-rich AAT and OpenType fonts through\n" @@ -17430,7 +17618,7 @@ msgid "" "the l3kernel and xparse bundles from the LaTeX 3 development team." msgstr "" -#: gnu/packages/tex.scm:3569 +#: gnu/packages/tex.scm:3846 msgid "" "The original grffile package extended the file name processing of the\n" "@code{graphics} package to support a larger range of file names. The base\n" @@ -17438,13 +17626,13 @@ msgid "" "is a stub that just loads @code{graphicx}." msgstr "" -#: gnu/packages/tex.scm:3610 +#: gnu/packages/tex.scm:3887 msgid "" "This package provides @code{\\StringEncodingConvert} for converting a\n" "string between different encodings. Both LaTeX and plain-TeX are supported." msgstr "" -#: gnu/packages/tex.scm:3653 +#: gnu/packages/tex.scm:3930 msgid "" "The l3build module is designed to support the development of\n" "high-quality LaTeX code by providing: a unit testing system, automated\n" @@ -17453,14 +17641,20 @@ msgid "" "@code{.tex} file which provides the testing environment." msgstr "" -#: gnu/packages/tex.scm:3690 +#: gnu/packages/tex.scm:3953 msgid "" "Lualibs is a collection of Lua modules useful for general programming.\n" "The bundle is based on Lua modules shipped with ConTeXt, and made available in\n" "this bundle for use independent of ConTeXt." msgstr "" -#: gnu/packages/tex.scm:3718 +#: gnu/packages/tex.scm:3972 +msgid "" +"This package provides a Lua module for processing application arguments\n" +"in the same way as BSD/GNU @code{getopt_long(3)} functions do." +msgstr "" + +#: gnu/packages/tex.scm:3999 msgid "" "Luaotfload is an adaptation of the ConTeXt font loading system for the\n" "Plain and LaTeX formats. It allows OpenType fonts to be loaded with font\n" @@ -17469,11 +17663,7 @@ msgid "" "loading fonts by their proper names instead of file names." msgstr "" -#: gnu/packages/tex.scm:3790 -msgid "This package is necessary to use LaTeX with the LuaTeX engine." -msgstr "" - -#: gnu/packages/tex.scm:3809 +#: gnu/packages/tex.scm:4025 msgid "" "This is the principal package in the AMS-LaTeX distribution. It adapts\n" "for use in LaTeX most of the mathematical features found in AMS-TeX; it is\n" @@ -17488,7 +17678,7 @@ msgid "" "definitions." msgstr "" -#: gnu/packages/tex.scm:3843 +#: gnu/packages/tex.scm:4059 msgid "" "This bundle contains three AMS classes: @code{amsartamsart} (for writing\n" "articles for the AMS), @code{amsbookamsbook} (for books) and\n" @@ -17497,7 +17687,7 @@ msgid "" "distribution." msgstr "" -#: gnu/packages/tex.scm:3890 +#: gnu/packages/tex.scm:4106 msgid "" "The package manages culturally-determined typographical (and other)\n" "rules, and hyphenation patterns for a wide range of languages. A document may\n" @@ -17508,7 +17698,7 @@ msgid "" "polyglossia package rather than Babel." msgstr "" -#: gnu/packages/tex.scm:3917 +#: gnu/packages/tex.scm:4133 msgid "" "This package provides the language definition file for support of\n" "English in @code{babel}. Care is taken to select British hyphenation patterns\n" @@ -17516,14 +17706,14 @@ msgid "" "for Canadian and USA text." msgstr "" -#: gnu/packages/tex.scm:3939 -#, fuzzy +#: gnu/packages/tex.scm:4173 msgid "" -"This package provides support for the French language for the\n" -"babel multilingual system." -msgstr "Tiu ĉi pako provizas ilojn por manipuli dosiersistemojn ext2/ext3/ext4." +"The package, formerly known as frenchb, establishes French conventions\n" +"in a document (or a subset of the conventions, if French is not the main\n" +"language of the document)." +msgstr "" -#: gnu/packages/tex.scm:3959 +#: gnu/packages/tex.scm:4196 msgid "" "This package provides the language definition file for support of German\n" "in @code{babel}. It provides all the necessary macros, definitions and\n" @@ -17532,14 +17722,14 @@ msgid "" "Swiss varieties of German." msgstr "" -#: gnu/packages/tex.scm:3986 +#: gnu/packages/tex.scm:4223 msgid "" "This package provides the language definition file for\n" "support of Swedish in @code{babel}. It provides all the necessary macros,\n" "definitions and settings to typeset Swedish documents." msgstr "" -#: gnu/packages/tex.scm:4008 +#: gnu/packages/tex.scm:4245 msgid "" "This bundle of macros files provides macro support (including font\n" "encoding macros) for the use of Cyrillic characters in fonts encoded under the\n" @@ -17547,7 +17737,7 @@ msgid "" "language that is written in a Cyrillic alphabet." msgstr "" -#: gnu/packages/tex.scm:4126 +#: gnu/packages/tex.scm:4363 msgid "" "The PSNFSS collection includes a set of files that provide a complete\n" "working setup of the LaTeX font selection scheme (NFSS2) for use with common\n" @@ -17562,20 +17752,20 @@ msgid "" "part of the LaTeX required set of packages." msgstr "" -#: gnu/packages/tex.scm:4177 gnu/packages/tex.scm:4269 +#: gnu/packages/tex.scm:4414 gnu/packages/tex.scm:4506 msgid "" "This is a very limited subset of the TeX Live distribution.\n" "It includes little more than the required set of LaTeX packages." msgstr "" -#: gnu/packages/tex.scm:4248 +#: gnu/packages/tex.scm:4485 msgid "" "This package contains the fonts map configuration file\n" "generated for the base TeX Live packages as well as, optionally, user-provided\n" "ones." msgstr "" -#: gnu/packages/tex.scm:4288 +#: gnu/packages/tex.scm:4525 msgid "" "These fonts are considered the \"ultimate answer\" to IPA\n" "typesetting. The encoding of these 8-bit fonts has been registered as LaTeX\n" @@ -17584,7 +17774,7 @@ msgid "" "TS3 fonts." msgstr "" -#: gnu/packages/tex.scm:4311 +#: gnu/packages/tex.scm:4548 msgid "" "Amsrefs is a LaTeX package for bibliographies that provides an archival\n" "data format similar to the format of BibTeX database files, but adapted to\n" @@ -17592,7 +17782,7 @@ msgid "" "conjunction with BibTeX or as a replacement for BibTeX." msgstr "" -#: gnu/packages/tex.scm:4340 +#: gnu/packages/tex.scm:4577 msgid "" "This package aims to provide a one-stop solution to requirements for\n" "footnotes. It offers: Multiple footnote apparatus superior to that of\n" @@ -17606,7 +17796,7 @@ msgid "" "@code{suffix} packages." msgstr "" -#: gnu/packages/tex.scm:4368 +#: gnu/packages/tex.scm:4605 msgid "" "The package provides the commands @code{\\blindtext} and\n" "@code{\\Blindtext} for creating \"blind\" text useful in testing new classes\n" @@ -17617,7 +17807,7 @@ msgid "" "ipsum\" text, see the @code{lipsum} package)." msgstr "" -#: gnu/packages/tex.scm:4407 +#: gnu/packages/tex.scm:4644 msgid "" "This package implements a document layout for writing letters according\n" "to the rules of DIN (Deutsches Institut für Normung, German standardisation\n" @@ -17629,7 +17819,7 @@ msgid "" "package." msgstr "" -#: gnu/packages/tex.scm:4433 +#: gnu/packages/tex.scm:4670 msgid "" "This package provides a means to add a textual, light grey watermark on\n" "every page or on the first page of a document. Typical usage may consist in\n" @@ -17639,7 +17829,7 @@ msgid "" "on everypage." msgstr "" -#: gnu/packages/tex.scm:4457 +#: gnu/packages/tex.scm:4694 msgid "" "This package provides the @code{\\collect@@body} command (as in\n" "@code{amsmath}), as well as a @code{\\long} version @code{\\Collect@@Body},\n" @@ -17647,7 +17837,7 @@ msgid "" "define a new author interface to creating new environments." msgstr "" -#: gnu/packages/tex.scm:4479 +#: gnu/packages/tex.scm:4716 msgid "" "LaTeX users sometimes need to ensure that two or more blocks of text\n" "occupy the same amount of horizontal space on the page. To that end, the\n" @@ -17661,7 +17851,7 @@ msgid "" "also provided." msgstr "" -#: gnu/packages/tex.scm:4504 +#: gnu/packages/tex.scm:4741 msgid "" "This package gives the user complete control of how the entries of\n" "the table of contents should be constituted from the name, number, and page\n" @@ -17681,7 +17871,7 @@ msgid "" "table of contents." msgstr "" -#: gnu/packages/tex.scm:4546 +#: gnu/packages/tex.scm:4783 msgid "" "The package provides additional features for the LaTeX\n" "@code{description} environment, including adjustable left margin. The package\n" @@ -17690,7 +17880,7 @@ msgid "" "@code{enumerate} lists, and numbered lists remain in sequence)." msgstr "" -#: gnu/packages/tex.scm:4566 +#: gnu/packages/tex.scm:4803 msgid "" "This package provides macros to read and compare the modification dates\n" "of files. The files may be @code{.tex} files, images or other files (as long\n" @@ -17702,14 +17892,14 @@ msgid "" "but non-expandable ones." msgstr "" -#: gnu/packages/tex.scm:4589 +#: gnu/packages/tex.scm:4826 msgid "" "The @code{hanging} package facilitates the typesetting of hanging\n" "paragraphs. The package also enables typesetting with hanging punctuation,\n" "by making punctuation characters active." msgstr "" -#: gnu/packages/tex.scm:4612 +#: gnu/packages/tex.scm:4849 msgid "" "This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX support for\n" "the Fira Sans family of fonts designed by Erik Spiekermann and Ralph du\n" @@ -17717,7 +17907,7 @@ msgid "" "corresponding italics: light, regular, medium, bold, ..." msgstr "" -#: gnu/packages/tex.scm:4635 +#: gnu/packages/tex.scm:4872 msgid "" "This package uses the (La)TeX extension @code{-shell-escape} to\n" "establish whether the document is being processed on a Windows or on a\n" @@ -17728,7 +17918,7 @@ msgid "" "classes of systems." msgstr "" -#: gnu/packages/tex.scm:4660 +#: gnu/packages/tex.scm:4897 msgid "" "This bundle provides a package that implements both author-year and\n" "numbered references, as well as much detailed of support for other\n" @@ -17738,20 +17928,20 @@ msgid "" "designed from the start to be compatible with @code{natbib}." msgstr "" -#: gnu/packages/tex.scm:4679 +#: gnu/packages/tex.scm:4916 msgid "" "This package provides a friendly interface for defining the meaning of\n" "Unicode characters. The document should be processed by (pdf)LaTeX with the\n" "Unicode option of @code{inputenc} or @code{inputenx}, or by XeLaTeX/LuaLaTeX." msgstr "" -#: gnu/packages/tex.scm:4699 +#: gnu/packages/tex.scm:4936 msgid "" "This package makes a number of utility functions from pdfTeX\n" "available for luaTeX by reimplementing them using Lua." msgstr "" -#: gnu/packages/tex.scm:4719 +#: gnu/packages/tex.scm:4956 msgid "" "This package allows LaTeX constructions (equations, picture\n" "environments, etc.) to be precisely superimposed over Encapsulated PostScript\n" @@ -17762,7 +17952,7 @@ msgid "" "rotated." msgstr "" -#: gnu/packages/tex.scm:4751 +#: gnu/packages/tex.scm:4988 msgid "" "This is a package for processing PostScript graphics with @code{psfrag}\n" "labels within pdfLaTeX documents. Every graphic is compiled individually,\n" @@ -17770,7 +17960,7 @@ msgid "" "re-processing." msgstr "" -#: gnu/packages/tex.scm:4771 +#: gnu/packages/tex.scm:5008 msgid "" "This package provides the @code{\\setcounterref} and\n" "@code{\\addtocounterref} commands which use the section (or other) number\n" @@ -17779,7 +17969,7 @@ msgid "" "corresponding thing with the page reference of the label." msgstr "" -#: gnu/packages/tex.scm:4791 +#: gnu/packages/tex.scm:5028 msgid "" "This package provides a class that produces overhead\n" "slides (transparencies), with many facilities. Seminar is not nowadays\n" @@ -17788,14 +17978,14 @@ msgid "" "21st-century presentation styles." msgstr "" -#: gnu/packages/tex.scm:4812 +#: gnu/packages/tex.scm:5049 msgid "" "The package provides a versatile way to stack objects vertically in a\n" "variety of customizable ways. A number of useful macros are provided, all\n" "of which make use of the @code{stackengine} core." msgstr "" -#: gnu/packages/tex.scm:4828 +#: gnu/packages/tex.scm:5065 msgid "" "This package provides control over the typography of the\n" "@dfn{Table of Contents}, @dfn{List of Figures} and @dfn{List of Tables},\n" @@ -17803,7 +17993,7 @@ msgid "" "be changed." msgstr "" -#: gnu/packages/tex.scm:4862 +#: gnu/packages/tex.scm:5099 msgid "" "This very short package allows you to expandably remove spaces around a\n" "token list (commands are provided to remove spaces before, spaces after, or\n" @@ -17811,13 +18001,27 @@ msgid "" "space-stripped macros." msgstr "" -#: gnu/packages/tex.scm:4897 +#: gnu/packages/tex.scm:5115 +#, fuzzy +msgid "This package provides a math interface to the Rsfs fonts." +msgstr "Tiu ĉi pako provizas datumbazan interfacon por Perl." + +#: gnu/packages/tex.scm:5152 msgid "" "This package defines a command @code{\\captionof} for putting a caption\n" "to something that's not a float." msgstr "" -#: gnu/packages/tex.scm:4913 +#: gnu/packages/tex.scm:5170 +msgid "" +"Many of David Carlisle's more substantial packages stand on their own,\n" +"or as part of the LaTeX latex-tools set; this set contains: making dotless\n" +"@emph{j} characters for fonts that don't have them; a method for combining the\n" +"capabilities of longtable and tabularx; an environment for including plain TeX\n" +"in LaTeX documents; a jiffy to create slashed characters for physicists." +msgstr "" + +#: gnu/packages/tex.scm:5189 msgid "" "You can hyperlink DOI numbers to doi.org. However, some publishers have\n" "elected to use nasty characters in their DOI numbering scheme (@code{<},\n" @@ -17827,7 +18031,7 @@ msgid "" "hyperlink to the target of the DOI." msgstr "" -#: gnu/packages/tex.scm:4936 +#: gnu/packages/tex.scm:5212 msgid "" "This package is a toolbox of programming facilities geared primarily\n" "towards LaTeX class and package authors. It provides LaTeX frontends to some\n" @@ -17838,7 +18042,7 @@ msgid "" "of the LaTeX kernel." msgstr "" -#: gnu/packages/tex.scm:4976 +#: gnu/packages/tex.scm:5252 msgid "" "This package provides seven predefined chapter heading styles. Each\n" "style can be modified using a set of simple commands. Optionally one can\n" @@ -17846,7 +18050,7 @@ msgid "" "headings." msgstr "" -#: gnu/packages/tex.scm:5011 +#: gnu/packages/tex.scm:5287 msgid "" "The package creates three environments: @code{framed}, which puts an\n" "ordinary frame box around the region, @code{shaded}, which shades the region,\n" @@ -17857,7 +18061,7 @@ msgid "" "@code{\\MakeFramed} to make your own framed-style environments." msgstr "" -#: gnu/packages/tex.scm:5045 +#: gnu/packages/tex.scm:5321 msgid "" "This package is designed for formatting formless letters in German; it\n" "can also be used for English (by those who can read the documentation). There\n" @@ -17865,13 +18069,13 @@ msgid "" "\"old\" and a \"new\" version of g-brief." msgstr "" -#: gnu/packages/tex.scm:5067 +#: gnu/packages/tex.scm:5343 msgid "" "The package deals with connections in two-dimensional style, optionally\n" "in colour." msgstr "" -#: gnu/packages/tex.scm:5087 +#: gnu/packages/tex.scm:5363 msgid "" "The package allows citations in the German style, which is considered by\n" "many to be particularly reader-friendly. The citation provides a small amount\n" @@ -17881,7 +18085,7 @@ msgid "" "BibLaTeX, and is considered experimental." msgstr "" -#: gnu/packages/tex.scm:5113 +#: gnu/packages/tex.scm:5389 msgid "" "This package provides an easy and flexible user interface to customize\n" "page layout, implementing auto-centering and auto-balancing mechanisms so that\n" @@ -17892,7 +18096,7 @@ msgid "" "ability to communicate the paper size it's set up to the output." msgstr "" -#: gnu/packages/tex.scm:5138 +#: gnu/packages/tex.scm:5414 msgid "" "This collection of tools includes: @code{atsupport} for short commands\n" "starting with @code{@@}, macros to sanitize the OT1 encoding of the\n" @@ -17902,13 +18106,13 @@ msgid "" "array environments; verbatim handling; and syntax diagrams." msgstr "" -#: gnu/packages/tex.scm:5162 +#: gnu/packages/tex.scm:5438 msgid "" "This package provides a complete Babel replacement for users of LuaLaTeX\n" "and XeLaTeX; it relies on the @code{fontspec} package, version 2.0 at least." msgstr "" -#: gnu/packages/tex.scm:5182 +#: gnu/packages/tex.scm:5458 msgid "" "This package was a predecessor of @code{longtable}; the newer\n" "package (designed on quite different principles) is easier to use and more\n" @@ -17916,7 +18120,7 @@ msgid "" "situations where longtable has problems." msgstr "" -#: gnu/packages/tex.scm:5217 +#: gnu/packages/tex.scm:5493 msgid "" "Texinfo is the preferred format for documentation in the GNU project;\n" "the format may be used to produce online or printed output from a single\n" @@ -17925,7 +18129,23 @@ msgid "" "hypertext linkages in some cases)." msgstr "" -#: gnu/packages/tex.scm:5240 +#: gnu/packages/tex.scm:5513 +msgid "" +"The textcase package offers commands @code{\\MakeTextUppercase} and\n" +"@code{\\MakeTextLowercase} are similar to the standard @code{\\MakeUppercase}\n" +"and @code{\\MakeLowercase}, but they do not change the case of any sections of\n" +"mathematics, or the arguments of @code{\\cite}, @code{\\label} and\n" +"@code{\\ref} commands within the argument. A further command\n" +"@code{\\NoCaseChange} does nothing but suppress case change within its\n" +"argument, so to force uppercase of a section including an environment, one\n" +"might say:\n" +"\n" +"@example\n" +"\\MakeTextUppercase{...\\NoCaseChange{\\begin{foo}} ...\\NoCaseChange{\\end{foo}}...}\n" +"@end example\n" +msgstr "" + +#: gnu/packages/tex.scm:5543 msgid "" "Typewriter-style fonts are best for program listings, but Computer\n" "Modern Typewriter prints @code{`} and @code{'} as bent opening and closing\n" @@ -17939,14 +18159,14 @@ msgid "" "does not affect @code{\\tt}, @code{\\texttt}, etc." msgstr "" -#: gnu/packages/tex.scm:5281 +#: gnu/packages/tex.scm:5584 msgid "" "This is a simple package to set up document margins. This package is\n" "considered obsolete; alternatives are the @code{typearea} package from the\n" "@code{koma-script} bundle, or the @code{geometry} package." msgstr "" -#: gnu/packages/tex.scm:5302 +#: gnu/packages/tex.scm:5605 msgid "" "The appendix package provides various ways of formatting the titles of\n" "appendices. Also (sub)appendices environments are provided that can be used,\n" @@ -17955,14 +18175,14 @@ msgid "" "command." msgstr "" -#: gnu/packages/tex.scm:5321 +#: gnu/packages/tex.scm:5624 msgid "" "This package implements a new bookmark (outline) organization for the\n" "@code{hyperref} package. Bookmark properties such as style and color. Other\n" "action types are available (URI, GoToR, Named)." msgstr "" -#: gnu/packages/tex.scm:5342 +#: gnu/packages/tex.scm:5645 msgid "" "Identify areas of text to be marked with changebars with the\n" "@code{\\cbstart} and @code{\\cbend} commands; the bars may be coloured. The\n" @@ -17971,19 +18191,19 @@ msgid "" "drivers, and VTeX and pdfTeX." msgstr "" -#: gnu/packages/tex.scm:5379 +#: gnu/packages/tex.scm:5682 msgid "" "This package embeds CMap tables into PDF files to make search and\n" "copy-and-paste functions work properly." msgstr "" -#: gnu/packages/tex.scm:5399 +#: gnu/packages/tex.scm:5702 msgid "" "This package allows rows, columns, and even individual cells in LaTeX\n" "tables to be coloured." msgstr "" -#: gnu/packages/tex.scm:5432 +#: gnu/packages/tex.scm:5735 msgid "" "This package provides variants of @code{\\fbox}: @code{\\shadowbox},\n" "@code{\\doublebox}, @code{\\ovalbox}, @code{\\Ovalbox}, with helpful tools for\n" @@ -17991,14 +18211,14 @@ msgid "" "floats, center, flushleft, and flushright, lists, and pages." msgstr "" -#: gnu/packages/tex.scm:5467 +#: gnu/packages/tex.scm:5770 msgid "" "The package provides extensive facilities, both for constructing headers\n" "and footers, and for controlling their use (for example, at times when LaTeX\n" "would automatically change the heading style in use)." msgstr "" -#: gnu/packages/tex.scm:5488 +#: gnu/packages/tex.scm:5791 msgid "" "This package improves the interface for defining floating objects such\n" "as figures and tables. It introduces the boxed float, the ruled float and the\n" @@ -18008,7 +18228,7 @@ msgid "" "with @code{\\floatplacement{figure}{H}}." msgstr "" -#: gnu/packages/tex.scm:5512 +#: gnu/packages/tex.scm:5815 msgid "" "This is a collection of ways to change the typesetting of footnotes.\n" "The package provides means of changing the layout of the footnotes themselves,\n" @@ -18018,7 +18238,7 @@ msgid "" "footnotes with symbols rather than numbers." msgstr "" -#: gnu/packages/tex.scm:5532 +#: gnu/packages/tex.scm:5835 msgid "" "TeX’s @code{\\let} assignment does not work for LaTeX macros with\n" "optional arguments, or for macros that are defined as robust macros by\n" @@ -18026,7 +18246,7 @@ msgid "" "that also takes care of the involved internal macros." msgstr "" -#: gnu/packages/tex.scm:5556 +#: gnu/packages/tex.scm:5859 msgid "" "The package enables the user to typeset programs (programming code)\n" "within LaTeX; the source code is read directly by TeX---no front-end processor\n" @@ -18034,7 +18254,7 @@ msgid "" "styles. Support for @code{hyperref} is provided." msgstr "" -#: gnu/packages/tex.scm:5591 +#: gnu/packages/tex.scm:5894 msgid "" "This package provides miscellaneous macros by Joerg Knappen, including:\n" "represent counters in greek; Maxwell's non-commutative division;\n" @@ -18046,14 +18266,14 @@ msgid "" "in SGML; use maths minus in text as appropriate; simple Young tableaux." msgstr "" -#: gnu/packages/tex.scm:5615 +#: gnu/packages/tex.scm:5918 #, fuzzy msgid "" "This package provides facilities for using key-value format in\n" "package options." msgstr "Tiu ĉi pako provizas ilojn por manipuli dosiersistemojn ext2/ext3/ext4." -#: gnu/packages/tex.scm:5684 +#: gnu/packages/tex.scm:5987 msgid "" "The EC fonts are European Computer Modern Fonts, supporting the complete\n" "LaTeX T1 encoding defined at the 1990 TUG conference hold at Cork/Ireland.\n" @@ -18070,7 +18290,7 @@ msgid "" "differs from the EC in a number of particulars." msgstr "" -#: gnu/packages/tex.scm:5717 +#: gnu/packages/tex.scm:6020 msgid "" "This package provides a set of virtual fonts which emulates T1 coded\n" "fonts using the standard CM fonts. The package name, AE fonts, supposedly\n" @@ -18080,7 +18300,7 @@ msgid "" "via the CM-super, Latin Modern and (in a restricted way) CM-LGC font sets." msgstr "" -#: gnu/packages/tex.scm:5742 +#: gnu/packages/tex.scm:6045 msgid "" "Inconsolata is a monospaced font designed by Raph Levien. This package\n" "contains the font (in both Adobe Type 1 and OpenType formats) in regular and\n" @@ -18089,25 +18309,25 @@ msgid "" "TeX, and LaTeX font definition and other relevant files." msgstr "" -#: gnu/packages/tex.scm:5771 +#: gnu/packages/tex.scm:6074 msgid "" "This package provides a drop-in replacements for the Times font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5799 +#: gnu/packages/tex.scm:6102 msgid "" "This package provides a drop-in replacements for the Palatino font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5824 +#: gnu/packages/tex.scm:6127 msgid "" "This package provides a drop-in replacements for the Zapfding font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5896 +#: gnu/packages/tex.scm:6199 msgid "" "The fonts provide uppercase formal script letters for use as symbols in\n" "scientific and mathematical typesetting (in contrast to the informal script\n" @@ -18117,14 +18337,14 @@ msgid "" "one of the packages @code{calrsfs} and @code{mathrsfs}." msgstr "" -#: gnu/packages/tex.scm:5920 +#: gnu/packages/tex.scm:6223 msgid "" "The package adds one or more user commands to LaTeX's @code{shipout}\n" "routine, which may be used to place the output at fixed positions. The\n" "@code{grid} option may be used to find the correct places." msgstr "" -#: gnu/packages/tex.scm:5954 +#: gnu/packages/tex.scm:6257 msgid "" "Extensions to @code{epic} and the LaTeX picture drawing environment,\n" "include the drawing of lines at any slope, the drawing of circles in any\n" @@ -18134,7 +18354,7 @@ msgid "" "@code{\\special} commands." msgstr "" -#: gnu/packages/tex.scm:5991 +#: gnu/packages/tex.scm:6276 msgid "" "This package is intended to ease customizing the three basic list\n" "environments: @code{enumerate}, @code{itemize} and @code{description}. It\n" @@ -18143,14 +18363,14 @@ msgid "" "@code{\\begin{itemize}[itemsep=1ex,leftmargin=1cm]}." msgstr "" -#: gnu/packages/tex.scm:6014 +#: gnu/packages/tex.scm:6301 msgid "" "The package provides tools for creating tabular cells spanning multiple\n" "rows. It has a lot of flexibility, including an option for specifying an\n" "entry at the \"natural\" width of its text." msgstr "" -#: gnu/packages/tex.scm:6048 +#: gnu/packages/tex.scm:6335 msgid "" "The @code{overpic} environment is a cross between the LaTeX\n" "@code{picture} environment and the @code{\\includegraphics} command of\n" @@ -18159,14 +18379,14 @@ msgid "" "positions; a grid for orientation is available." msgstr "" -#: gnu/packages/tex.scm:6084 +#: gnu/packages/tex.scm:6371 msgid "" "Simply changing @code{\\parskip} and @code{\\parindent} leaves a layout\n" "that is untidy; this package (though it is no substitute for a properly\n" "designed class) helps alleviate this untidiness." msgstr "" -#: gnu/packages/tex.scm:6105 +#: gnu/packages/tex.scm:6392 msgid "" "This package simplifies the inclusion of external multi-page PDF\n" "documents in LaTeX documents. Pages may be freely selected and it is possible\n" @@ -18176,7 +18396,7 @@ msgid "" "use this package to insert PostScript files, in addition to PDF files." msgstr "" -#: gnu/packages/tex.scm:6146 +#: gnu/packages/tex.scm:6433 msgid "" "The fonts were originally distributed as Metafont sources only, but\n" "Adobe Type 1 versions are also now available. Macro support is provided for\n" @@ -18185,7 +18405,7 @@ msgid "" "the whole font." msgstr "" -#: gnu/packages/tex.scm:6171 +#: gnu/packages/tex.scm:6458 msgid "" "This (deprecated) package provides support for the manipulation and\n" "reference of small or \"sub\" figures and tables within a single figure or\n" @@ -18198,7 +18418,7 @@ msgid "" "the more recent @code{subcaption} package more satisfactory." msgstr "" -#: gnu/packages/tex.scm:6198 +#: gnu/packages/tex.scm:6485 msgid "" "The package defines a @code{tabular*}-like environment, @code{tabulary},\n" "taking a \"total width\" argument as well as the column specifications. The\n" @@ -18209,7 +18429,7 @@ msgid "" "according to the natural width of the widest cell in the column." msgstr "" -#: gnu/packages/tex.scm:6236 +#: gnu/packages/tex.scm:6523 msgid "" "This package facilitates tables with titles (captions) and notes. The\n" "title and notes are given a width equal to the body of the table (a\n" @@ -18218,7 +18438,7 @@ msgid "" "environment." msgstr "" -#: gnu/packages/tex.scm:6263 +#: gnu/packages/tex.scm:6550 msgid "" "Txfonts supplies virtual text roman fonts using Adobe Times (or URW\n" "NimbusRomNo9L) with some modified and additional text symbols in the OT1, T1,\n" @@ -18234,7 +18454,7 @@ msgid "" "TeX metrics (VF and TFM files) and macros for use with LaTeX." msgstr "" -#: gnu/packages/tex.scm:6312 +#: gnu/packages/tex.scm:6599 msgid "" "Iwona is a two-element sans-serif typeface. It was created\n" "as an alternative version of the Kurier typeface, which was designed in 1975\n" @@ -18245,7 +18465,7 @@ msgid "" "of ink traps which typify the Kurier font." msgstr "" -#: gnu/packages/tex.scm:6335 +#: gnu/packages/tex.scm:6622 msgid "" "This package contains a collection of macros by Jörg Knappen:\n" "@table @code\n" @@ -18281,7 +18501,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/tex.scm:6442 +#: gnu/packages/tex.scm:6729 msgid "" "JadeTeX is a companion package to the OpenJade DSSSL\n" "processor. OpenJade applies a DSSSL stylesheet to an SGML or XML document.\n" @@ -18292,7 +18512,7 @@ msgid "" "command)." msgstr "" -#: gnu/packages/tex.scm:6472 +#: gnu/packages/tex.scm:6759 msgid "" "The package provides the Libertine and Biolinum fonts in both Type 1 and\n" "OTF styles, together with support macros for their use. Monospaced and\n" @@ -18302,7 +18522,7 @@ msgid "" "@code{libertine-legacy} packages." msgstr "" -#: gnu/packages/tex.scm:6504 +#: gnu/packages/tex.scm:6791 msgid "" "The package contains LaTeX support for the DejaVu fonts, which are\n" "derived from the Vera fonts but contain more characters and styles. The fonts\n" @@ -18311,7 +18531,7 @@ msgid "" "LGR. The package doesn't (currently) support mathematics." msgstr "" -#: gnu/packages/tex.scm:6540 +#: gnu/packages/tex.scm:6827 msgid "" "This package provides an interface to sectioning commands for selection\n" "from various title styles, e.g. for marginal titles and to change the font of\n" @@ -18320,7 +18540,7 @@ msgid "" "floats in a page. You may assign headers/footers to individual floats, too." msgstr "" -#: gnu/packages/tex.scm:6563 +#: gnu/packages/tex.scm:6850 msgid "" "LaTeX, by default, restricts the sizes at which you can use its default\n" "computer modern fonts, to a fixed set of discrete sizes (effectively, a set\n" @@ -18335,7 +18555,7 @@ msgid "" "@code{ec} fonts." msgstr "" -#: gnu/packages/tex.scm:6617 +#: gnu/packages/tex.scm:6904 msgid "" "The LH fonts address the problem of the wide variety of alphabets that\n" "are written with Cyrillic-style characters. The fonts are the original basis\n" @@ -18348,7 +18568,7 @@ msgid "" "OT2 encoded fonts, CM bright shaped fonts and Concrete shaped fonts." msgstr "" -#: gnu/packages/tex.scm:6647 +#: gnu/packages/tex.scm:6934 msgid "" "The Martin Vogel’s Symbols fonts (marvosym) contains the\n" "Euro currency symbol as defined by the European commission, along with symbols\n" @@ -18358,34 +18578,41 @@ msgid "" "the derived Type 1 font, together with support files for TeX (LaTeX)." msgstr "" -#: gnu/packages/tex.scm:6685 +#: gnu/packages/tex.scm:6972 msgid "" "MetaPost uses a language based on that of Metafont to produce precise\n" "technical illustrations. Its output is scalable PostScript or SVG, rather\n" "than the bitmaps Metafont creates." msgstr "" -#: gnu/packages/tex.scm:6706 +#: gnu/packages/tex.scm:6993 msgid "" "This package provides a class for typesetting publications of the\n" "Association for Computing Machinery (ACM)." msgstr "" -#: gnu/packages/tex.scm:6739 +#: gnu/packages/tex.scm:7026 msgid "" "The @code{varwidth} environment is superficially similar to\n" "@code{minipage}, but the specified width is just a maximum value — the box may\n" "get a narrower “natural” width." msgstr "" -#: gnu/packages/tex.scm:6757 +#: gnu/packages/tex.scm:7041 +msgid "" +"The varwidth environment is superficially similar to minipage, but the\n" +"specified width is just a maximum value --- the box may get a narrower natural\n" +"width." +msgstr "" + +#: gnu/packages/tex.scm:7059 msgid "" "This package provides the @code{wasy} (Waldi symbol) fonts,\n" "in the Metafont and Adobe Type 1 formats. Support under LaTeX is provided by\n" "the @code{wasysym} package." msgstr "" -#: gnu/packages/tex.scm:6778 +#: gnu/packages/tex.scm:7080 msgid "" "The @code{wasy} (Waldi Symbol) font by Roland Waldi provides many glyphs like\n" "male and female symbols and astronomical symbols, as well as the complete\n" @@ -18393,14 +18620,14 @@ msgid "" "implements an easy to use interface for these symbols." msgstr "" -#: gnu/packages/tex.scm:6815 +#: gnu/packages/tex.scm:7117 msgid "" "This package allows figures or tables to have text wrapped around them.\n" "It does not work in combination with list environments, but can be used in a\n" "@code{parbox} or @code{minipage}, and in two-column format." msgstr "" -#: gnu/packages/tex.scm:6849 +#: gnu/packages/tex.scm:7151 msgid "" "The bundle provides the @code{ucs} package, and @code{utf8x.def},\n" "together with a large number of support files. The @code{utf8x.def}\n" @@ -18413,7 +18640,7 @@ msgid "" "package of that name now exists." msgstr "" -#: gnu/packages/tex.scm:6883 +#: gnu/packages/tex.scm:7185 msgid "" "The main purpose of the preview package is the extraction of selected\n" "elements from a LaTeX source, like formulas or graphics, into separate\n" @@ -18424,7 +18651,7 @@ msgid "" "files." msgstr "" -#: gnu/packages/tex.scm:6908 +#: gnu/packages/tex.scm:7210 msgid "" "This package ensures that all acronyms used in the text are spelled out\n" "in full at least once. It also provides an environment to build a list of\n" @@ -18433,13 +18660,13 @@ msgid "" "e-TeX." msgstr "" -#: gnu/packages/tex.scm:6945 +#: gnu/packages/tex.scm:7247 msgid "" "This package provides an extension of TeX which can be configured to\n" "directly generate PDF documents instead of DVI." msgstr "" -#: gnu/packages/tex.scm:7025 +#: gnu/packages/tex.scm:7327 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18449,7 +18676,7 @@ msgid "" "This package contains the complete tree of texmf-dist data." msgstr "" -#: gnu/packages/tex.scm:7088 +#: gnu/packages/tex.scm:7390 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18459,7 +18686,7 @@ msgid "" "This package contains the complete TeX Live distribution." msgstr "" -#: gnu/packages/tex.scm:7130 +#: gnu/packages/tex.scm:7432 msgid "" "@code{Text::BibTeX} is a Perl library for reading, parsing,\n" "and processing BibTeX files. @code{Text::BibTeX} gives you access to the data\n" @@ -18468,13 +18695,13 @@ msgid "" "values (strings, macros, or numbers) pasted together." msgstr "" -#: gnu/packages/tex.scm:7216 +#: gnu/packages/tex.scm:7518 msgid "" "Biber is a BibTeX replacement for users of biblatex. Among\n" "other things it comes with full Unicode support." msgstr "" -#: gnu/packages/tex.scm:7250 +#: gnu/packages/tex.scm:7552 msgid "" "Rubber is a program whose purpose is to handle all tasks related to the\n" "compilation of LaTeX documents. This includes compiling the document itself,\n" @@ -18484,20 +18711,20 @@ msgid "" "PDF documents." msgstr "" -#: gnu/packages/tex.scm:7289 +#: gnu/packages/tex.scm:7591 msgid "" "Texmaker is a program that integrates many tools needed to\n" "develop documents with LaTeX, in a single application." msgstr "" -#: gnu/packages/tex.scm:7330 +#: gnu/packages/tex.scm:7632 msgid "" "@i{TeX for the Impatient} is a ~350 page book on TeX,\n" "plain TeX, and Eplain, originally written by Paul Abrahams, Kathryn Hargreaves,\n" "and Karl Berry." msgstr "" -#: gnu/packages/tex.scm:7394 +#: gnu/packages/tex.scm:7696 msgid "" "LyX is a document preparation system. It excels at letting\n" "you create complex technical and scientific articles with mathematics,\n" @@ -18506,7 +18733,7 @@ msgid "" "required: automatic sectioning and pagination, spell checking and so forth." msgstr "" -#: gnu/packages/tex.scm:7430 +#: gnu/packages/tex.scm:7732 msgid "" "The package provides an interface to embed interactive Flash (SWF) and 3D\n" "objects (Adobe U3D & PRC), as well as video and sound files or streams in the\n" @@ -18519,7 +18746,7 @@ msgid "" "specification. It replaces the now obsolete @code{movie15} package." msgstr "" -#: gnu/packages/tex.scm:7470 +#: gnu/packages/tex.scm:7772 msgid "" "This package provides OCG (Optional Content Groups) support within a PDF\n" "document.\n" @@ -18537,7 +18764,7 @@ msgid "" "It also ensures compatibility with the @code{media9} and @code{animate} packages." msgstr "" -#: gnu/packages/tex.scm:7504 +#: gnu/packages/tex.scm:7806 msgid "" "A bundle of LATEX packages by Martin Schröder; the collection comprises:\n" "\n" @@ -18551,7 +18778,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/tex.scm:7532 +#: gnu/packages/tex.scm:7852 msgid "" "The package numprint prints numbers with a separator every three\n" "digits and converts numbers given as 12345.6e789 to 12\\,345,6\\cdot\n" @@ -18572,14 +18799,14 @@ msgid "" "and after the formatted number." msgstr "" -#: gnu/packages/tex.scm:7571 +#: gnu/packages/tex.scm:7893 msgid "" "Provides commands to disable pagebreaking within a given vertical\n" "space. If there is not enough space between the command and the bottom of the\n" "page, a new page will be started." msgstr "" -#: gnu/packages/tex.scm:7597 +#: gnu/packages/tex.scm:7919 msgid "" "The package provides commands to change the page layout in the middle of\n" "a document, and to robustly check for typesetting on odd or even pages.\n" @@ -18587,7 +18814,7 @@ msgid "" "of code from the @code{memoir} class, whose user interface it shares." msgstr "" -#: gnu/packages/tex.scm:7633 +#: gnu/packages/tex.scm:7955 msgid "" "The package is used to change the format of @code{\\today}’s date,\n" "including the weekday, e.g., \"Saturday, 26 June 2008\", the 'UK format', which\n" @@ -18595,7 +18822,7 @@ msgid "" "@code{\\maketitle} of the article class, \"June 26, 2008\", the 'US format'." msgstr "" -#: gnu/packages/tex.scm:7669 +#: gnu/packages/tex.scm:7971 msgid "" "The package provides an @code{\\ul} (underline) command which will break\n" "over line ends; this technique may be used to replace @code{\\em} (both in that\n" @@ -18604,7 +18831,7 @@ msgid "" "striking out (line through words) and crossing out (/// over words)." msgstr "" -#: gnu/packages/tex.scm:7725 +#: gnu/packages/tex.scm:8029 msgid "" "PGF is a macro package for creating graphics. It is platform- and\n" "format-independent and works together with the most important TeX backend\n" @@ -18616,7 +18843,7 @@ msgid "" "produce either PostScript or PDF output." msgstr "" -#: gnu/packages/tex.scm:7771 +#: gnu/packages/tex.scm:8075 msgid "" "The KOMA-Script bundle provides replacements for the article, report, and\n" "book classes with emphasis on typography and versatility. There is also a\n" @@ -18641,7 +18868,7 @@ msgid "" "typearea (which are the main parts of the bundle)." msgstr "" -#: gnu/packages/tex.scm:7806 +#: gnu/packages/tex.scm:8110 msgid "" "This package is a modern reimplementation of package @code{everyshi},\n" "providing various commands to be executed before a @code{\\shipout} command.\n" @@ -18649,20 +18876,20 @@ msgid "" "be used either with LaTeX or with plain TeX." msgstr "" -#: gnu/packages/tex.scm:7826 +#: gnu/packages/tex.scm:8130 msgid "" "This package provides expandable arithmetic operations with big\n" "integers that can exceed TeX's number limits." msgstr "" -#: gnu/packages/tex.scm:7845 +#: gnu/packages/tex.scm:8149 msgid "" "This package defines and implements the data type bit set, a vector\n" "of bits. The size of the vector may grow dynamically. Individual bits\n" "can be manipulated." msgstr "" -#: gnu/packages/tex.scm:7864 +#: gnu/packages/tex.scm:8168 msgid "" "New primitive commands are introduced in e-TeX; sometimes the names\n" "collide with existing macros. This package solves the name clashes by\n" @@ -18670,14 +18897,14 @@ msgid "" "@code{\\unexpanded} is provided as @code{\\etex@@unexpanded}." msgstr "" -#: gnu/packages/tex.scm:7882 +#: gnu/packages/tex.scm:8186 msgid "" "This package provides commands for cleaning up the title string\n" "(such as removing @code{\\label} commands) for packages that typeset such\n" "strings." msgstr "" -#: gnu/packages/tex.scm:7898 +#: gnu/packages/tex.scm:8202 msgid "" "This package provides a complete set of macros for information,\n" "warning and error messages. Under LaTeX, the commands are wrappers for\n" @@ -18685,19 +18912,19 @@ msgid "" "complete implementations." msgstr "" -#: gnu/packages/tex.scm:7915 +#: gnu/packages/tex.scm:8219 msgid "" "This package provides expandable arithmetic operations with integers,\n" "using the e-TeX extension @code{\\numexpr} if it is available." msgstr "" -#: gnu/packages/tex.scm:7930 +#: gnu/packages/tex.scm:8234 msgid "" "This package provides the @code{\\kv@@define@@key} (analogous to\n" "keyval’s @code{\\define@@key}, to define keys for use by @code{kvsetkeys}." msgstr "" -#: gnu/packages/tex.scm:7945 +#: gnu/packages/tex.scm:8249 msgid "" "This package provides @code{\\kvsetkeys}, a variant of @code{\\setkeys}\n" "from the @code{keyval} package. Users can specify a handler that deals with\n" @@ -18705,35 +18932,35 @@ msgid "" "level of curly braces are removed from the values." msgstr "" -#: gnu/packages/tex.scm:7980 +#: gnu/packages/tex.scm:8284 msgid "" "This package allows one to capture all the items of a list, for which\n" "the parsing character has been selected by the user, and to access any of\n" "these items with a simple syntax." msgstr "" -#: gnu/packages/tex.scm:7996 +#: gnu/packages/tex.scm:8300 msgid "" "This package exports some utility macros from the LaTeX kernel into\n" "a separate namespace and also makes them available for other formats such\n" "as plain TeX." msgstr "" -#: gnu/packages/tex.scm:8012 +#: gnu/packages/tex.scm:8316 msgid "" "This package implements pdfTeX's escape features (@code{\\pdfescapehex},\n" "@code{\\pdfunescapehex}, @code{\\pdfescapename}, @code{\\pdfescapestring})\n" "using TeX or e-TeX." msgstr "" -#: gnu/packages/tex.scm:8031 +#: gnu/packages/tex.scm:8335 msgid "" "This package provides a kind of counter that provides unique number\n" "values. Several counters can be created with different names. The numeric\n" "values are not limited." msgstr "" -#: gnu/packages/tex.scm:8067 +#: gnu/packages/tex.scm:8371 msgid "" "This package allows the user to input formatted data into elements of a\n" "2-D or 3-D array and to recall that data at will by individual cell number.\n" @@ -18741,7 +18968,7 @@ msgid "" "formatted text." msgstr "" -#: gnu/packages/tex.scm:8104 +#: gnu/packages/tex.scm:8408 msgid "" "The package provides a @code{verbbox} environment to place its contents\n" "into a globally available box, or into a box specified by the user. The\n" @@ -18751,7 +18978,7 @@ msgid "" "@code{trivlist}) may not appear." msgstr "" -#: gnu/packages/tex.scm:8141 +#: gnu/packages/tex.scm:8445 msgid "" "Examplep provides sophisticated features for typesetting verbatim source\n" "code listings, including the display of the source code and its compiled LaTeX\n" @@ -18764,7 +18991,7 @@ msgid "" "titles." msgstr "" -#: gnu/packages/tex.scm:8178 +#: gnu/packages/tex.scm:8482 msgid "" "This is a package for typesetting a variety of graphs and\n" "diagrams with TeX. Xy-pic works with most formats (including LaTeX,\n" @@ -18772,7 +18999,7 @@ msgid "" "@code{diag} package, which was previously distributed stand-alone." msgstr "" -#: gnu/packages/tex.scm:8218 +#: gnu/packages/tex.scm:8522 msgid "" "BibTeX allows the user to store his citation data in generic form, while\n" "printing citations in a document in the form specified by a BibTeX style, to\n" @@ -18780,7 +19007,7 @@ msgid "" "package, such as @command{natbib} as well)." msgstr "" -#: gnu/packages/tex.scm:8241 +#: gnu/packages/tex.scm:8545 msgid "" "This package provides a copy of the Charter Type-1 fonts\n" "which Bitstream contributed to the X consortium, renamed for use with TeX.\n" @@ -18788,14 +19015,14 @@ msgid "" "@command{psnfss}." msgstr "" -#: gnu/packages/tex.scm:8337 +#: gnu/packages/tex.scm:8641 msgid "" "ConTeXt is a full featured, parameter driven macro package,\n" "which fully supports advanced interactive documents. See the ConTeXt garden\n" "for a wealth of support information." msgstr "" -#: gnu/packages/tex.scm:8362 +#: gnu/packages/tex.scm:8666 msgid "" "The beamer LaTeX class can be used for producing slides.\n" "The class works in both PostScript and direct PDF output modes, using the\n" @@ -18808,7 +19035,7 @@ msgid "" "effects, varying slide transitions and animations." msgstr "" -#: gnu/packages/tex.scm:8394 +#: gnu/packages/tex.scm:8698 msgid "" "The XMP (eXtensible Metadata platform) is a framework to add metadata to\n" "digital material to enhance the workflow in publication. The essence is that\n" @@ -18816,13 +19043,13 @@ msgid "" "the file to which it applies." msgstr "" -#: gnu/packages/tex.scm:8433 +#: gnu/packages/tex.scm:8737 msgid "" "This package helps LaTeX users to create PDF/X, PDF/A and other\n" "standards-compliant PDF documents with pdfTeX, LuaTeX and XeTeX." msgstr "" -#: gnu/packages/tex.scm:8468 +#: gnu/packages/tex.scm:8772 msgid "" "The package provides macros and environments to document\n" "LaTeX packages and classes. It is an (as yet unfinished) alternative to the\n" @@ -18833,7 +19060,7 @@ msgid "" "change." msgstr "" -#: gnu/packages/tex.scm:8496 +#: gnu/packages/tex.scm:8800 msgid "" "PSTricks offers an extensive collection of macros for\n" "generating PostScript that is usable with most TeX macro formats, including\n" @@ -18844,14 +19071,14 @@ msgid "" "or shading the cells of tables." msgstr "" -#: gnu/packages/tex.scm:8521 +#: gnu/packages/tex.scm:8825 msgid "" "Pst-text is a PSTricks based package for plotting text along\n" "a different path and manipulating characters. It includes the functionality\n" "of the old package @code{pst-char}." msgstr "" -#: gnu/packages/tex.scm:8546 +#: gnu/packages/tex.scm:8850 msgid "" "This package provides the command @code{\\marginnote} that\n" "may be used instead of @code{\\marginpar} at almost every place where\n" @@ -18859,7 +19086,7 @@ msgid "" "frames made with the @code{framed} package." msgstr "" -#: gnu/packages/tex.scm:8564 +#: gnu/packages/tex.scm:8868 msgid "" "This package, which works both for Plain TeX and for\n" "LaTeX, defines the @code{\\ifPDFTeX}, @code{\\ifXeTeX}, and @code{\\ifLuaTeX}\n" @@ -18869,7 +19096,19 @@ msgid "" "LuaTeX (respectively) is not the engine in use." msgstr "" -#: gnu/packages/tex.scm:8597 +#: gnu/packages/tex.scm:8914 +msgid "" +"The package provides an environment, tabu, which will make any sort of\n" +"tabular, and an environment longtabu which provides the facilities of tabu in\n" +"a modified longtable environment. The package requires array, xcolor for\n" +"coloured rules in tables, and colortbl for coloured cells. The longtabu\n" +"environment further requires that longtable be loaded. The package itself\n" +"does not load any of these packages for the user. The tabu environment may be\n" +"used in place of @code{tabular}, @code{tabular*} and @code{tabularx}\n" +"environments, as well as the @code{array} environment in maths mode." +msgstr "" + +#: gnu/packages/tex.scm:8945 msgid "" "This package provides a collection of simple tools that\n" "are part of the LaTeX required tools distribution, comprising the packages:\n" @@ -18881,7 +19120,7 @@ msgid "" "@code{varioref}, @code{verbatim}, @code{xr}, and @code{xspace}." msgstr "" -#: gnu/packages/tex.scm:8678 +#: gnu/packages/tex.scm:9026 msgid "" "This package is an extension of the keyval package and offers additional\n" "macros for setting keys and declaring and setting class or package options.\n" @@ -18891,7 +19130,7 @@ msgid "" "keys." msgstr "" -#: gnu/packages/tex.scm:8706 +#: gnu/packages/tex.scm:9054 msgid "" "A class and package is provided which allows TeX pictures or\n" "other TeX code to be compiled standalone or as part of a main document.\n" @@ -18903,7 +19142,7 @@ msgid "" "@code{standalone.cfg} to redefine the standalone environment." msgstr "" -#: gnu/packages/tex.scm:8739 +#: gnu/packages/tex.scm:9087 msgid "" "Typesetting values with units requires care to ensure that the combined\n" "mathematical meaning of the value plus unit combination is clear. In\n" @@ -18919,7 +19158,7 @@ msgid "" "package to handle all of the possible unit-related needs of LaTeX users." msgstr "" -#: gnu/packages/tex.scm:8770 +#: gnu/packages/tex.scm:9118 msgid "" "This package enhances the quality of tables in LaTeX, providing extra\n" "commands as well as behind-the-scenes optimisation. Guidelines are given as\n" @@ -18927,7 +19166,7 @@ msgid "" "@code{longtable} compatibility." msgstr "" -#: gnu/packages/tex.scm:8790 +#: gnu/packages/tex.scm:9138 msgid "" "This package provides advanced facilities for inline and\n" "display quotations. It is designed for a wide range of tasks ranging from the\n" @@ -18941,7 +19180,7 @@ msgid "" "styles as well as the optional active quotes are freely configurable." msgstr "" -#: gnu/packages/tex.scm:8816 +#: gnu/packages/tex.scm:9164 msgid "" "The package helps to automate a typical LaTeX\n" "workflow that involves running LaTeX several times and running tools\n" @@ -18961,7 +19200,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8848 +#: gnu/packages/tex.scm:9196 msgid "" "BibLaTeX is a complete reimplementation of the\n" "bibliographic facilities provided by LaTeX. Formatting of the\n" @@ -18987,7 +19226,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8886 +#: gnu/packages/tex.scm:9234 msgid "" "The @code{todonotes} package lets the user mark\n" "things to do later, in a simple and visually appealing way. The\n" @@ -18995,7 +19234,7 @@ msgid "" "of the visual appearance." msgstr "" -#: gnu/packages/tex.scm:8904 +#: gnu/packages/tex.scm:9252 msgid "" "@code{units} is a package for typesetting physical\n" "units in a standard-looking way. The package is based upon\n" @@ -19003,7 +19242,7 @@ msgid "" "included in the @code{units} bundle." msgstr "" -#: gnu/packages/tex.scm:8922 +#: gnu/packages/tex.scm:9270 msgid "" "@code{microtype} provides a LaTeX interface to the\n" "micro-typographic extensions that were introduced by pdfTeX and have\n" @@ -19018,7 +19257,7 @@ msgid "" "the bundle." msgstr "" -#: gnu/packages/tex.scm:8947 +#: gnu/packages/tex.scm:9295 msgid "" "The @code{caption} package provides many ways to\n" "customise the captions in floating environments like figure and table.\n" @@ -19032,13 +19271,13 @@ msgid "" "@code{subcaption} and @code{totalcount} are included in the bundle." msgstr "" -#: gnu/packages/tex.scm:8976 +#: gnu/packages/tex.scm:9324 msgid "" "This package provides a drop-in replacement for the\n" "Symbol font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:8994 +#: gnu/packages/tex.scm:9342 msgid "" "The Pazo Math fonts are a family of PostScript fonts\n" "suitable for typesetting mathematics in combination with the Palatino\n" @@ -19052,7 +19291,7 @@ msgid "" "LaTeX macro support is provided in package @code{psnfss}." msgstr "" -#: gnu/packages/tex.scm:9019 +#: gnu/packages/tex.scm:9367 msgid "" "The FPL Fonts provide a set of SC/OsF fonts for URW\n" "Palladio L which are compatible with the Palatino SC/OsF fonts from\n" @@ -19060,7 +19299,7 @@ msgid "" "the @code{psnfss} distribution." msgstr "" -#: gnu/packages/tex.scm:9043 +#: gnu/packages/tex.scm:9391 msgid "" "The @code{arev} package provides type 1 fonts,\n" "virtual fonts and LaTeX packages for using Arev Sans in both text and\n" @@ -19074,7 +19313,7 @@ msgid "" "support packages. Others are cmbright, hvmath and kerkis." msgstr "" -#: gnu/packages/tex.scm:9074 +#: gnu/packages/tex.scm:9422 msgid "" "The Math Design project offers free mathematical\n" "fonts that match with existing text fonts. To date, three free font\n" @@ -19085,7 +19324,7 @@ msgid "" "created by the Greek Font Society)." msgstr "" -#: gnu/packages/tex.scm:9099 +#: gnu/packages/tex.scm:9447 msgid "" "The @code{bera} package contains the Bera Type 1\n" "fonts and files to use the fonts with LaTeX. Bera is a set of three\n" @@ -19094,7 +19333,7 @@ msgid "" "a repackaging, for use with TeX, of the Bitstream Vera family." msgstr "" -#: gnu/packages/tex.scm:9122 +#: gnu/packages/tex.scm:9470 msgid "" "Fourier-GUTenberg is a LaTeX typesetting system\n" "which uses Adobe Utopia as its standard base font. Fourier-GUTenberg\n" @@ -19105,7 +19344,7 @@ msgid "" "trademark of Adobe Systems Incorporated." msgstr "" -#: gnu/packages/tex.scm:9145 +#: gnu/packages/tex.scm:9493 msgid "" "The Adobe Standard Encoding set of the Utopia font\n" "family, as contributed to the X Consortium. The set comprises upright\n" @@ -19114,7 +19353,7 @@ msgid "" "@code{mathdesign} font packages." msgstr "" -#: gnu/packages/tex.scm:9169 +#: gnu/packages/tex.scm:9517 msgid "" "The @code{fontaxes} package adds several new font\n" "axes on top of LaTeX's New Font Selection Scheme (NFSS). In\n" @@ -19123,7 +19362,7 @@ msgid "" "figure versions offered by many professional fonts." msgstr "" -#: gnu/packages/tex.scm:9192 +#: gnu/packages/tex.scm:9540 msgid "" "The bundle comprises: @code{authblk}, which permits\n" "footnote style author/affiliation input in the @command{\\author} command,\n" @@ -19133,7 +19372,7 @@ msgid "" "@code{sublabel}, which permits counters to be subnumbered." msgstr "" -#: gnu/packages/tex.scm:9211 +#: gnu/packages/tex.scm:9559 msgid "" "Many font families available for use with LaTeX are\n" "available at multiple weights. Many Type 1-oriented support packages\n" @@ -19144,7 +19383,7 @@ msgid "" "@code{mweights} package provides a solution to these difficulties." msgstr "" -#: gnu/packages/tex.scm:9237 +#: gnu/packages/tex.scm:9585 msgid "" "Cabin is a humanist sans with four weights, true\n" "italics and small capitals. According to its designer, Pablo\n" @@ -19158,7 +19397,7 @@ msgid "" "use with [pdf]LaTeX." msgstr "" -#: gnu/packages/tex.scm:9268 +#: gnu/packages/tex.scm:9616 msgid "" "The @code{newtx} bundle splits\n" "@code{txfonts.sty} (from the TX fonts distribution) into two\n" @@ -19170,7 +19409,7 @@ msgid "" "mathematics package that matches Libertine text quite well." msgstr "" -#: gnu/packages/tex.scm:9296 +#: gnu/packages/tex.scm:9644 msgid "" "@code{xcharter} repackages Bitstream Charter with an\n" "extended set of features. The extension provides small caps, oldstyle\n" @@ -19179,7 +19418,7 @@ msgid "" "Type 1 and OTF formats, with supporting files as necessary." msgstr "" -#: gnu/packages/tex.scm:9320 +#: gnu/packages/tex.scm:9668 msgid "" "The legacy @emph{texnansi} (TeX and ANSI) encoding\n" "is known in the LaTeX scheme of things as @emph{LY1} encoding. The\n" @@ -19188,14 +19427,14 @@ msgid "" "LY1 encoding." msgstr "" -#: gnu/packages/tex.scm:9349 +#: gnu/packages/tex.scm:9697 msgid "" "This is a LaTeX2ε package to help change the style of any or\n" "all of LaTeX's sectional headers in the article, book, or report classes.\n" "Examples include the addition of rules above or below a section title." msgstr "" -#: gnu/packages/tex.scm:9375 +#: gnu/packages/tex.scm:9723 msgid "" "LaTeX can, by default, only cope with 18 outstanding floats;\n" "any more, and you get the error “too many unprocessed floats”. This package\n" @@ -19206,19 +19445,19 @@ msgid "" "floats merely delays the arrival of the inevitable error message." msgstr "" -#: gnu/packages/tex.scm:9408 +#: gnu/packages/tex.scm:9756 msgid "" "This package provides a command for the LaTeX programmer for\n" "testing whether an argument is empty." msgstr "" -#: gnu/packages/tex.scm:9435 +#: gnu/packages/tex.scm:9783 msgid "" "The pagenote package provides tagged notes on a separate\n" "page (also known as ‘end notes’)." msgstr "" -#: gnu/packages/tex.scm:9463 +#: gnu/packages/tex.scm:9811 msgid "" "The @code{titling} package provides control over the\n" "typesetting of the @code{\\maketitle} command and @code{\\thanks} commands,\n" @@ -19228,7 +19467,7 @@ msgid "" "a physical page." msgstr "" -#: gnu/packages/tex.scm:9493 +#: gnu/packages/tex.scm:9841 msgid "" "This package provides an @code{\\ifoddpage} conditional to\n" "determine if the current page is odd or even. The macro @code{\\checkoddpage}\n" @@ -19238,7 +19477,7 @@ msgid "" "@code{oneside} mode where all pages use the odd page layout." msgstr "" -#: gnu/packages/tex.scm:9523 +#: gnu/packages/tex.scm:9871 msgid "" "The package provides \"store boxes\" whose user interface\n" "matches that of normal LaTeX \"save boxes\", except that the content of a\n" @@ -19247,7 +19486,7 @@ msgid "" "DVI is output, store boxes behave the same as save boxes." msgstr "" -#: gnu/packages/tex.scm:9552 +#: gnu/packages/tex.scm:9900 msgid "" "The package provides macros to collect and process a macro\n" "argument (i.e., something which looks like a macro argument) as a horizontal\n" @@ -19260,13 +19499,13 @@ msgid "" "The macros were designed for use within other macros." msgstr "" -#: gnu/packages/tex.scm:9584 +#: gnu/packages/tex.scm:9932 msgid "" "This package provides macros for adding to, and reordering\n" "the list of graphics file extensions recognised by package graphics." msgstr "" -#: gnu/packages/tex.scm:9618 +#: gnu/packages/tex.scm:9966 msgid "" "The package provides several macros to adjust boxed\n" "content. One purpose is to supplement the standard @code{graphics} package,\n" @@ -19279,7 +19518,7 @@ msgid "" "@code{\\minsizebox}, @code{\\maxsizebox} and @code{\\phantombox}." msgstr "" -#: gnu/packages/tex.scm:9644 +#: gnu/packages/tex.scm:9992 msgid "" "This package provides an environment for colored and\n" "framed text boxes with a heading line. Optionally, such a box may be split in\n" @@ -19290,7 +19529,7 @@ msgid "" "parts." msgstr "" -#: gnu/packages/tex.scm:9675 +#: gnu/packages/tex.scm:10023 msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems. The commands allow for writing\n" @@ -19299,14 +19538,14 @@ msgid "" "styles of inference rules, placement of labels, etc." msgstr "" -#: gnu/packages/tex.scm:9704 +#: gnu/packages/tex.scm:10052 #, fuzzy msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems." msgstr "Tiu ĉi pako provizas ilojn por manipuli dosiersistemojn ext2/ext3/ext4." -#: gnu/packages/tex.scm:9724 +#: gnu/packages/tex.scm:10072 msgid "" "This package provides the European currency symbol for the\n" "Euro implemented in METAFONT, using the official European Commission\n" @@ -19315,7 +19554,7 @@ msgid "" "pre-compiled font files, and documentation." msgstr "" -#: gnu/packages/tex.scm:9754 +#: gnu/packages/tex.scm:10102 msgid "" "The @code{kastrup} package provides the\n" "@emph{binhex.tex} file. This file provides expandable macros for both\n" @@ -19325,7 +19564,7 @@ msgid "" "LaTeX and plain TeX." msgstr "" -#: gnu/packages/tex.scm:9774 +#: gnu/packages/tex.scm:10122 msgid "" "This LaTeX package provides a flexible mechanism for translating\n" "individual words into different languages. For example, it can be used to\n" @@ -19336,7 +19575,7 @@ msgid "" "automatically translate more than a few words." msgstr "" -#: gnu/packages/tex.scm:9795 +#: gnu/packages/tex.scm:10143 msgid "" "This package facilitates placing boxes at absolute positions on the\n" "LaTeX page. There are several reasons why this might be useful, but the main\n" @@ -19349,7 +19588,7 @@ msgid "" "accompanied by various configuration commands." msgstr "" -#: gnu/packages/tex.scm:9819 +#: gnu/packages/tex.scm:10167 msgid "" "This package extends the @code{ifthen} package by implementing new\n" "commands to go within the first argument of @code{\\\\ifthenelse}: to test\n" @@ -19359,14 +19598,14 @@ msgid "" "handle complex tests." msgstr "" -#: gnu/packages/tex.scm:9852 +#: gnu/packages/tex.scm:10200 msgid "" "BibTool manipulates BibTeX files. The possibilities of BibTool include\n" "sorting and merging of BibTeX databases, generation of uniform reference keys,\n" "and selecting references used in a publication." msgstr "" -#: gnu/packages/texinfo.scm:87 +#: gnu/packages/texinfo.scm:88 msgid "" "Texinfo is the official documentation format of the GNU project. It\n" "uses a single source file using explicit commands to produce a final document\n" @@ -19376,7 +19615,7 @@ msgid "" "is on expressing the content semantically, avoiding physical markup commands." msgstr "" -#: gnu/packages/texinfo.scm:216 +#: gnu/packages/texinfo.scm:230 msgid "" "Texi2HTML is a Perl script which converts Texinfo source files to HTML\n" "output. It now supports many advanced features, such as internationalization\n" @@ -19391,7 +19630,7 @@ msgid "" "Texi2HTML." msgstr "" -#: gnu/packages/texinfo.scm:283 +#: gnu/packages/texinfo.scm:297 msgid "" "Pinfo is an Info file viewer. Pinfo is similar in use to the Lynx web\n" "browser. You just move across info nodes, and select links, follow them, etc.\n" @@ -19750,6 +19989,12 @@ msgstr "" #: gnu/packages/textutils.scm:1406 msgid "" +"@code{utf-8-lineseparator} provides a tool to efficiently check text\n" +"files for valid UTF-8 use and to report which line endings they use." +msgstr "" + +#: gnu/packages/textutils.scm:1439 +msgid "" "@code{csvdiff} is a diff tool to compute changes between two\n" "CSV files. It can compare CSV files with a million records in under 2\n" "seconds. It is specifically suited for comparing CSV files dumped from\n" @@ -19951,27 +20196,27 @@ msgid "" "visualize your public Git repositories on a web interface." msgstr "" -#: gnu/packages/version-control.scm:1706 +#: gnu/packages/version-control.scm:1699 msgid "" "Pre-commit is a multi-language package manager for pre-commit hooks. You\n" "specify a list of hooks you want and pre-commit manages the installation and\n" "execution of any hook written in any language before every commit." msgstr "" -#: gnu/packages/version-control.scm:1796 +#: gnu/packages/version-control.scm:1789 msgid "" "Mercurial is a free, distributed source control management tool. It\n" "efficiently handles projects of any size and offers an easy and intuitive\n" "interface." msgstr "" -#: gnu/packages/version-control.scm:1823 +#: gnu/packages/version-control.scm:1816 msgid "" "Evolve is a Mercurial extension for faster and safer mutable\n" "history. It implements the changeset evolution concept for Mercurial." msgstr "" -#: gnu/packages/version-control.scm:1879 +#: gnu/packages/version-control.scm:1872 msgid "" "This package provides a Mercurial extension for signing\n" "the changeset hash of commits. The signure is embedded directly in the\n" @@ -19979,7 +20224,7 @@ msgid "" "can be used for signing." msgstr "" -#: gnu/packages/version-control.scm:1914 +#: gnu/packages/version-control.scm:1907 msgid "" "Neon is an HTTP and WebDAV client library, with a C interface and the\n" "following features:\n" @@ -20001,7 +20246,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/version-control.scm:2010 +#: gnu/packages/version-control.scm:2003 msgid "" "@dfn{Subversion} (svn) exists to be recognized and adopted as a\n" "centralized version control system characterized by its\n" @@ -20010,7 +20255,7 @@ msgid "" "projects, from individuals to large-scale enterprise operations." msgstr "" -#: gnu/packages/version-control.scm:2044 +#: gnu/packages/version-control.scm:2037 msgid "" "RCS is the original Revision Control System. It works on a\n" "file-by-file basis, in contrast to subsequent version control systems such as\n" @@ -20019,21 +20264,21 @@ msgid "" "machine." msgstr "" -#: gnu/packages/version-control.scm:2067 +#: gnu/packages/version-control.scm:2060 msgid "" "@code{blame} outputs an annotated revision from each RCS file. An\n" "annotated RCS file describes the revision and date in which each line was\n" "added to the file, and the author of each line." msgstr "" -#: gnu/packages/version-control.scm:2088 +#: gnu/packages/version-control.scm:2081 msgid "" "The @code{rcshist} utility displays the complete revision history of a\n" "set of RCS files including log messages and patches. It can also display the\n" "patch associated with a particular revision of an RCS file." msgstr "" -#: gnu/packages/version-control.scm:2116 +#: gnu/packages/version-control.scm:2109 msgid "" "CVS is a version control system, an important component of Source\n" "Configuration Management (SCM). Using it, you can record the history of\n" @@ -20041,7 +20286,7 @@ msgid "" "RCS, PRCS, and Aegis packages." msgstr "" -#: gnu/packages/version-control.scm:2150 +#: gnu/packages/version-control.scm:2143 msgid "" "This program analyzes a collection of RCS files in a CVS\n" "repository (or outside of one) and, when possible, emits an equivalent history\n" @@ -20054,7 +20299,7 @@ msgid "" "masters from remote CVS hosts." msgstr "" -#: gnu/packages/version-control.scm:2180 +#: gnu/packages/version-control.scm:2173 msgid "" "The vc-dwim package contains two tools, \"vc-dwim\" and \"vc-chlog\".\n" "vc-dwim is a tool that simplifies the task of maintaining a ChangeLog and\n" @@ -20064,21 +20309,21 @@ msgid "" "standards-compliant ChangeLog entries based on the changes that it detects." msgstr "" -#: gnu/packages/version-control.scm:2207 +#: gnu/packages/version-control.scm:2200 msgid "" "Diffstat reads the output of @command{diff} and displays a histogram of\n" "the insertions, deletions, and modifications per file. It is useful for\n" "reviewing large, complex patch files." msgstr "" -#: gnu/packages/version-control.scm:2246 +#: gnu/packages/version-control.scm:2239 msgid "" "GNU CSSC provides a replacement for the legacy Unix source\n" "code control system SCCS. This allows old code still under that system to be\n" "accessed and migrated on modern systems." msgstr "" -#: gnu/packages/version-control.scm:2338 +#: gnu/packages/version-control.scm:2331 msgid "" "Aegis is a project change supervisor, and performs some of\n" "the Software Configuration Management needed in a CASE environment. Aegis\n" @@ -20089,7 +20334,7 @@ msgid "" "any project with more than one developer, is one of Aegis's major functions." msgstr "" -#: gnu/packages/version-control.scm:2412 +#: gnu/packages/version-control.scm:2405 msgid "" "Reposurgeon enables risky operations that version-control\n" "systems don't want to let you do, such as editing past comments and metadata\n" @@ -20100,20 +20345,20 @@ msgid "" "from Subversion to any supported Distributed Version Control System (DVCS)." msgstr "" -#: gnu/packages/version-control.scm:2451 +#: gnu/packages/version-control.scm:2444 msgid "" "Tig is an ncurses text user interface for Git, primarily intended as\n" "a history browser. It can also stage hunks for commit, or colorize the\n" "output of the @code{git} command." msgstr "" -#: gnu/packages/version-control.scm:2474 +#: gnu/packages/version-control.scm:2467 msgid "" "Recursively find the newest file in a file tree and print its\n" "modification time." msgstr "" -#: gnu/packages/version-control.scm:2521 +#: gnu/packages/version-control.scm:2514 msgid "" "Myrepos provides the @code{mr} command, which maps an operation (e.g.,\n" "fetching updates) over a collection of version control repositories. It\n" @@ -20121,14 +20366,14 @@ msgid "" "Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity." msgstr "" -#: gnu/packages/version-control.scm:2558 +#: gnu/packages/version-control.scm:2551 msgid "" "Grokmirror enables replicating large git repository\n" "collections efficiently. Mirrors decide to clone and update repositories\n" "based on a manifest file published by servers." msgstr "" -#: gnu/packages/version-control.scm:2588 +#: gnu/packages/version-control.scm:2581 msgid "" "The @code{b4} command is designed to make it easier to participate in\n" "patch-based workflows for projects that have public-inbox archives.\n" @@ -20142,26 +20387,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/version-control.scm:2635 +#: gnu/packages/version-control.scm:2628 msgid "" "This wrapper around rclone makes any destination supported\n" "by rclone usable with git-annex." msgstr "" -#: gnu/packages/version-control.scm:2689 +#: gnu/packages/version-control.scm:2682 msgid "" "Fossil is a distributed source control management system which supports\n" "access and administration over HTTP CGI or via a built-in HTTP server. It has\n" "a built-in wiki, built-in file browsing, built-in tickets system, etc." msgstr "" -#: gnu/packages/version-control.scm:2720 +#: gnu/packages/version-control.scm:2713 msgid "" "Stagit creates static pages for git repositories, the results can\n" "be served with a HTTP file server of your choice." msgstr "" -#: gnu/packages/version-control.scm:2756 +#: gnu/packages/version-control.scm:2749 msgid "" "@code{gource} provides a software version control\n" "visualization. The repository is displayed as a tree where the root of the\n" @@ -20170,7 +20415,7 @@ msgid "" "specific files and directories." msgstr "" -#: gnu/packages/version-control.scm:2804 +#: gnu/packages/version-control.scm:2797 #, scheme-format msgid "" "SRC (or src) is simple revision control, a version-control system for\n" @@ -20180,7 +20425,7 @@ msgid "" "directory full of HOWTOs." msgstr "" -#: gnu/packages/version-control.scm:2856 +#: gnu/packages/version-control.scm:2849 msgid "" "This Git extension defines a subcommand,\n" "@code{when-merged}, whose core operation is to find the merge that brought a\n" @@ -20188,7 +20433,7 @@ msgid "" "how information about the merge is displayed." msgstr "" -#: gnu/packages/version-control.scm:2900 +#: gnu/packages/version-control.scm:2893 msgid "" "This Git extension defines a subcommand, @code{imerge},\n" "which performs an incremental merge between two branches. Its two primary\n" @@ -20197,20 +20442,20 @@ msgid "" "interrupted, published, and collaborated on while in progress." msgstr "" -#: gnu/packages/version-control.scm:2951 +#: gnu/packages/version-control.scm:2944 msgid "" "Git Large File Storage (LFS) replaces large files such as audio samples,\n" "videos, datasets, and graphics with text pointers inside Git, while storing the\n" "file contents on a remote server." msgstr "" -#: gnu/packages/version-control.scm:2986 +#: gnu/packages/version-control.scm:2979 msgid "" "@code{git open} opens the repository's website from the command-line,\n" "guessing the URL pattern from the @code{origin} remote." msgstr "" -#: gnu/packages/version-control.scm:3040 +#: gnu/packages/version-control.scm:3033 msgid "" "GNU Arch, aka. @code{tla}, was one of the first free distributed\n" "version-control systems (DVCS). It saw its last release in 2006. This\n" @@ -20218,19 +20463,19 @@ msgid "" "for historians." msgstr "" -#: gnu/packages/version-control.scm:3086 +#: gnu/packages/version-control.scm:3079 msgid "" "@code{diff-so-fancy} strives to make your diffs human readable instead\n" "of machine readable. This helps improve code quality and helps you spot\n" "defects faster." msgstr "" -#: gnu/packages/version-control.scm:3142 +#: gnu/packages/version-control.scm:3135 #, fuzzy msgid "This package provides a Git implementation library." msgstr "Tiu ĉi pako provizas datumbazan interfacon por Perl." -#: gnu/packages/version-control.scm:3192 +#: gnu/packages/version-control.scm:3185 msgid "" "This package provides a command-line tool to manage\n" "multiple Git repos.\n" @@ -20245,7 +20490,7 @@ msgid "" "If several repos are related, it helps to see their status together." msgstr "" -#: gnu/packages/version-control.scm:3250 +#: gnu/packages/version-control.scm:3243 #, scheme-format msgid "" "@code{ghq} provides a way to organize remote repository clones, like\n" @@ -20254,7 +20499,7 @@ msgid "" "using the remote repository URL's host and path." msgstr "" -#: gnu/packages/version-control.scm:3295 +#: gnu/packages/version-control.scm:3288 msgid "" "TkRev (formerly TkCVS) is a Tcl/Tk-based graphical interface to the CVS,\n" "Subversion and Git configuration management systems. It will also help with\n" @@ -20263,7 +20508,7 @@ msgid "" "TkDiff is included for browsing and merging your changes." msgstr "" -#: gnu/packages/version-control.scm:3328 +#: gnu/packages/version-control.scm:3321 msgid "" "@command{git filter-repo} is a versatile tool for rewriting history,\n" "which roughly falls into the same space of tool like git filter-branch but\n" @@ -20301,7 +20546,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:865 +#: gnu/packages/virtualization.scm:870 msgid "" "Ganeti is a virtual machine management tool built on top of existing\n" "virtualization technologies such as Xen or KVM. Ganeti controls:\n" @@ -20318,19 +20563,19 @@ msgid "" "commodity hardware." msgstr "" -#: gnu/packages/virtualization.scm:902 +#: gnu/packages/virtualization.scm:907 msgid "" "This package provides a guest OS definition for Ganeti that uses\n" "Guix to build virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:996 +#: gnu/packages/virtualization.scm:1001 msgid "" "This package provides a guest OS definition for Ganeti. It installs\n" "Debian or a derivative using @command{debootstrap}." msgstr "" -#: gnu/packages/virtualization.scm:1056 +#: gnu/packages/virtualization.scm:1061 msgid "" "libosinfo is a GObject based library API for managing\n" "information about operating systems, hypervisors and the (virtual) hardware\n" @@ -20340,21 +20585,21 @@ msgid "" "all common programming languages. Vala bindings are also provided." msgstr "" -#: gnu/packages/virtualization.scm:1105 +#: gnu/packages/virtualization.scm:1109 msgid "" "LXC is a userspace interface for the Linux kernel containment features.\n" "Through a powerful API and simple tools, it lets Linux users easily create and\n" "manage system or application containers." msgstr "" -#: gnu/packages/virtualization.scm:1131 +#: gnu/packages/virtualization.scm:1135 msgid "" "LXCFS is a small FUSE file system written with the intention\n" "of making Linux containers feel more like a virtual machine.\n" "It started as a side project of LXC but can be used by any run-time." msgstr "" -#: gnu/packages/virtualization.scm:1239 +#: gnu/packages/virtualization.scm:1237 msgid "" "LXD is a next generation system container manager. It\n" "offers a user experience similar to virtual machines but using Linux\n" @@ -20363,7 +20608,7 @@ msgid "" "pretty simple, REST API." msgstr "" -#: gnu/packages/virtualization.scm:1332 +#: gnu/packages/virtualization.scm:1330 msgid "" "Libvirt is a C toolkit to interact with the virtualization\n" "capabilities of recent versions of Linux. The library aims at providing long\n" @@ -20371,7 +20616,7 @@ msgid "" "to integrate other virtualization mechanisms if needed." msgstr "" -#: gnu/packages/virtualization.scm:1363 +#: gnu/packages/virtualization.scm:1359 msgid "" "libvirt-glib wraps the libvirt library to provide a\n" "high-level object-oriented API better suited for glib-based applications, via\n" @@ -20384,13 +20629,13 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/virtualization.scm:1407 +#: gnu/packages/virtualization.scm:1403 msgid "" "This package provides Python bindings to the libvirt\n" "virtualization library." msgstr "" -#: gnu/packages/virtualization.scm:1520 +#: gnu/packages/virtualization.scm:1516 msgid "" "The virt-manager application is a desktop user interface for managing\n" "virtual machines through libvirt. It primarily targets KVM VMs, but also\n" @@ -20398,7 +20643,7 @@ msgid "" "domains, their live performance and resource utilization statistics." msgstr "" -#: gnu/packages/virtualization.scm:1620 +#: gnu/packages/virtualization.scm:1616 msgid "" "Using this tool, you can freeze a running application (or\n" "part of it) and checkpoint it to a hard drive as a collection of files. You\n" @@ -20407,14 +20652,14 @@ msgid "" "mainly implemented in user space." msgstr "" -#: gnu/packages/virtualization.scm:1647 +#: gnu/packages/virtualization.scm:1643 msgid "" "qmpbackup is designed to create and restore full and\n" "incremental backups of running QEMU virtual machines via QMP, the QEMU\n" "Machine Protocol." msgstr "" -#: gnu/packages/virtualization.scm:1731 +#: gnu/packages/virtualization.scm:1727 msgid "" "Looking Glass allows the use of a KVM (Kernel-based Virtual\n" "Machine) configured for VGA PCI Pass-through without an attached physical\n" @@ -20422,7 +20667,7 @@ msgid "" "main monitor/GPU." msgstr "" -#: gnu/packages/virtualization.scm:1783 +#: gnu/packages/virtualization.scm:1779 msgid "" "@command{runc} is a command line client for running applications\n" "packaged according to the\n" @@ -20431,13 +20676,13 @@ msgid "" "Open Container Initiative specification." msgstr "" -#: gnu/packages/virtualization.scm:1832 +#: gnu/packages/virtualization.scm:1828 msgid "" "@command{umoci} is a tool that allows for high-level modification of an\n" "Open Container Initiative (OCI) image layout and its tagged images." msgstr "" -#: gnu/packages/virtualization.scm:1886 +#: gnu/packages/virtualization.scm:1882 msgid "" "@command{skopeo} is a command line utility providing various operations\n" "with container images and container image registries. It can:\n" @@ -20458,14 +20703,14 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:1922 +#: gnu/packages/virtualization.scm:1918 msgid "" "Python-vagrant is a Python module that provides a thin wrapper around the\n" "@code{vagrant} command line executable, allowing programmatic control of Vagrant\n" "virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:1977 +#: gnu/packages/virtualization.scm:1979 msgid "" "Bubblewrap is aimed at running applications in a sandbox,\n" "restricting their access to parts of the operating system or user data such as\n" @@ -20475,7 +20720,7 @@ msgid "" "by default and can be made read-only." msgstr "" -#: gnu/packages/virtualization.scm:2004 +#: gnu/packages/virtualization.scm:2006 msgid "" "Bochs is an emulator which can emulate Intel x86 CPU, common I/O\n" "devices, and a custom BIOS. It can also be compiled to emulate many different\n" @@ -20484,64 +20729,67 @@ msgid "" "DOS or Microsoft Windows." msgstr "" -#: gnu/packages/virtualization.scm:2210 +#: gnu/packages/virtualization.scm:2212 msgid "" "This package provides the Xen Virtual Machine Monitor\n" "which is a hypervisor." msgstr "" -#: gnu/packages/virtualization.scm:2242 +#: gnu/packages/virtualization.scm:2244 msgid "" "This package contains a set of tools to assist\n" "administrators and developers in managing the database." msgstr "" -#: gnu/packages/virtualization.scm:2275 +#: gnu/packages/virtualization.scm:2277 msgid "" "Osinfo-db provides the database files for use with the\n" "libosinfo library. It provides information about guest operating systems for\n" "use with virtualization provisioning tools" msgstr "" -#: gnu/packages/virtualization.scm:2317 +#: gnu/packages/virtualization.scm:2319 msgid "" "@code{transient} is a wrapper for QEMU allowing the creation of virtual\n" "machines with shared folder, ssh, and disk creation support." msgstr "" -#: gnu/packages/webkit.scm:93 +#: gnu/packages/webkit.scm:94 msgid "" "LibWPE is general-purpose library specifically developed for\n" "the WPE-flavored port of WebKit." msgstr "" -#: gnu/packages/webkit.scm:119 +#: gnu/packages/webkit.scm:120 msgid "" "This package provides a backend implementation for the WPE WebKit\n" "engine that uses Wayland for graphics output." msgstr "" -#: gnu/packages/webkit.scm:216 +#: gnu/packages/webkit.scm:227 msgid "" "WPE WebKit allows embedders to create simple and performant\n" "systems based on Web platform technologies. It is designed with hardware\n" "acceleration in mind, leveraging common 3D graphics APIs for best performance." msgstr "" -#: gnu/packages/webkit.scm:351 +#: gnu/packages/webkit.scm:355 msgid "" "WebKitGTK+ is a full-featured port of the WebKit rendering engine,\n" "suitable for projects requiring any kind of web integration, from hybrid\n" -"HTML/CSS applications to full-fledged web browsers." +"HTML/CSS applications to full-fledged web browsers. WebKitGTK+ video playing\n" +"capabilities can be extended through the use of GStreamer plugins (not\n" +"propagated by default) such as @code{gst-plugins-good} and\n" +"@code{gst-plugins-bad}." msgstr "" -#: gnu/packages/web.scm:250 +#: gnu/packages/web.scm:251 msgid "" "Qhttp is a light-weight and asynchronous HTTP library\n" "(both server & client) in Qt5 and C++14." msgstr "" -#: gnu/packages/web.scm:280 +#: gnu/packages/web.scm:281 msgid "" "The Apache HTTP Server Project is a collaborative software development\n" "effort aimed at creating a robust, commercial-grade, featureful, and\n" @@ -20551,14 +20799,14 @@ msgid "" "and its related documentation." msgstr "" -#: gnu/packages/web.scm:314 +#: gnu/packages/web.scm:315 msgid "" "The mod_wsgi module for the Apache HTTPD Server adds support for running\n" "applications that support the Python @acronym{WSGI, Web Server Gateway\n" "Interface} specification." msgstr "" -#: gnu/packages/web.scm:356 +#: gnu/packages/web.scm:357 msgid "" "Monolith bundles any web page into a single HTML file.\n" "\n" @@ -20571,39 +20819,39 @@ msgid "" "the same, being completely separated from the Internet." msgstr "" -#: gnu/packages/web.scm:460 +#: gnu/packages/web.scm:461 msgid "" "Nginx (\"engine X\") is a high-performance web and reverse proxy server\n" "created by Igor Sysoev. It can be used both as a stand-alone web server\n" "and as a proxy to reduce the load on back-end HTTP or mail servers." msgstr "" -#: gnu/packages/web.scm:518 +#: gnu/packages/web.scm:519 #, fuzzy msgid "This package provides HTML documentation for the nginx web server." msgstr "Tiu ĉi pako provizas vortaron por la literumilo GNU Aspell." -#: gnu/packages/web.scm:647 +#: gnu/packages/web.scm:648 msgid "" "This nginx module parses the Accept-Language field in HTTP headers and\n" "chooses the most suitable locale for the user from the list of locales\n" "supported at your website." msgstr "" -#: gnu/packages/web.scm:694 +#: gnu/packages/web.scm:695 msgid "" "XSLScript is a terse notation for writing complex XSLT stylesheets.\n" "This is modified version, specifically intended for use with the NGinx\n" "documentation." msgstr "" -#: gnu/packages/web.scm:767 +#: gnu/packages/web.scm:768 msgid "" "This NGINX module provides a scripting support with Lua\n" "programming language." msgstr "" -#: gnu/packages/web.scm:820 +#: gnu/packages/web.scm:821 msgid "" "This NGINX module provides streaming with the @acronym{RTMP,\n" "Real-Time Messaging Protocol}, @acronym{DASH, Dynamic Adaptive Streaming over HTTP},\n" @@ -20613,7 +20861,7 @@ msgid "" "stream. Remote control of the module is possible over HTTP." msgstr "" -#: gnu/packages/web.scm:882 +#: gnu/packages/web.scm:883 msgid "" "Lighttpd is a secure, fast, compliant, and very flexible web-server that\n" "has been optimized for high-performance environments. It has a very low\n" @@ -20621,41 +20869,41 @@ msgid "" "CGI, authentication, output compression, URL rewriting and many more." msgstr "" -#: gnu/packages/web.scm:910 +#: gnu/packages/web.scm:911 msgid "" "FastCGI is a language-independent, scalable extension to CGI\n" "that provides high performance without the limitations of server specific\n" "APIs." msgstr "" -#: gnu/packages/web.scm:948 +#: gnu/packages/web.scm:949 msgid "" "Fcgiwrap is a simple server for running CGI applications\n" "over FastCGI. It hopes to provide clean CGI support to Nginx (and other web\n" "servers that may need it)." msgstr "" -#: gnu/packages/web.scm:977 +#: gnu/packages/web.scm:978 msgid "" "Starman is a PSGI perl web server that has unique features\n" "such as high performance, preforking, signal support, superdaemon awareness,\n" "and UNIX socket support." msgstr "" -#: gnu/packages/web.scm:1010 +#: gnu/packages/web.scm:1011 msgid "" "IcedTea-Web is an implementation of the @dfn{Java Network Launching\n" "Protocol}, also known as Java Web Start. This package provides tools and\n" "libraries for working with JNLP applets." msgstr "" -#: gnu/packages/web.scm:1035 +#: gnu/packages/web.scm:1036 msgid "" "Jansson is a C library for encoding, decoding and manipulating JSON\n" "data." msgstr "" -#: gnu/packages/web.scm:1055 +#: gnu/packages/web.scm:1056 msgid "" "JSON-C implements a reference counting object model that allows you to\n" "easily construct JSON objects in C, output them as JSON-formatted strings and\n" @@ -20663,7 +20911,7 @@ msgid "" "It aims to conform to RFC 7159." msgstr "" -#: gnu/packages/web.scm:1131 +#: gnu/packages/web.scm:1132 msgid "" "This package provides a very low footprint JSON parser\n" "written in portable ANSI C.\n" @@ -20676,21 +20924,21 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:1176 +#: gnu/packages/web.scm:1177 msgid "" "QJson is a Qt-based library that maps JSON data to\n" "@code{QVariant} objects. JSON arrays will be mapped to @code{QVariantList}\n" "instances, while JSON's objects will be mapped to @code{QVariantMap}." msgstr "" -#: gnu/packages/web.scm:1227 +#: gnu/packages/web.scm:1228 msgid "" "QOAuth is an attempt to support interaction with\n" "OAuth-powered network services in a Qt way, i.e. simply, clearly and\n" "efficiently. It gives the application developer no more than 4 methods." msgstr "" -#: gnu/packages/web.scm:1339 +#: gnu/packages/web.scm:1340 msgid "" "Krona is a flexible tool for exploring the relative proportions of\n" "hierarchical data, such as metagenomic classifications, using a radial,\n" @@ -20699,26 +20947,26 @@ msgid "" "current version of any major web browser." msgstr "" -#: gnu/packages/web.scm:1380 +#: gnu/packages/web.scm:1381 msgid "" "RapidJSON is a fast JSON parser/generator for C++ with both SAX/DOM\n" "style API." msgstr "" -#: gnu/packages/web.scm:1409 +#: gnu/packages/web.scm:1410 msgid "" "Yet Another JSON Library (YAJL) is a small event-driven (SAX-style) JSON\n" "parser written in ANSI C and a small validating JSON generator." msgstr "" -#: gnu/packages/web.scm:1439 +#: gnu/packages/web.scm:1440 msgid "" "Libwebsockets is a library that allows C programs to establish client\n" "and server WebSockets connections---a protocol layered above HTTP that allows\n" "for efficient socket-like bidirectional reliable communication channels." msgstr "" -#: gnu/packages/web.scm:1468 +#: gnu/packages/web.scm:1469 msgid "" "WABT (pronounced: wabbit) is a suite of tools for\n" "WebAssembly, including:\n" @@ -20743,7 +20991,7 @@ msgid "" "other systems that want to manipulate WebAssembly files." msgstr "" -#: gnu/packages/web.scm:1518 +#: gnu/packages/web.scm:1519 msgid "" "WebSocket++ is a C++ library that can be used to implement\n" "WebSocket functionality. The goals of the project are to provide a WebSocket\n" @@ -20751,7 +20999,7 @@ msgid "" "high performance." msgstr "" -#: gnu/packages/web.scm:1558 +#: gnu/packages/web.scm:1559 msgid "" "@code{Wslay} is an event-based C library for the WebSocket\n" "protocol version 13, described in RFC 6455. Besides a high-level API it\n" @@ -20760,7 +21008,7 @@ msgid "" "perform the opening handshake in HTTP." msgstr "" -#: gnu/packages/web.scm:1588 +#: gnu/packages/web.scm:1589 msgid "" "A \"public suffix\" is a domain name under which Internet users can\n" "directly register own names.\n" @@ -20778,20 +21026,20 @@ msgid "" "UTS#46." msgstr "" -#: gnu/packages/web.scm:1633 +#: gnu/packages/web.scm:1634 msgid "" "HTML Tidy is a command-line tool and C library that can be\n" "used to validate and fix HTML data." msgstr "" -#: gnu/packages/web.scm:1680 +#: gnu/packages/web.scm:1681 msgid "" "The esbuild tool provides a unified bundler, transpiler and\n" "minifier. It packages up JavaScript and TypeScript code, along with JSON\n" "and other data, for distribution on the web." msgstr "" -#: gnu/packages/web.scm:1716 +#: gnu/packages/web.scm:1717 msgid "" "Tinyproxy is a light-weight HTTP/HTTPS proxy\n" "daemon. Designed from the ground up to be fast and yet small, it is an ideal\n" @@ -20800,14 +21048,14 @@ msgid "" "unavailable." msgstr "" -#: gnu/packages/web.scm:1751 +#: gnu/packages/web.scm:1752 msgid "" "Polipo is a small caching web proxy (web cache, HTTP proxy, and proxy\n" "server). It was primarily designed to be used by one person or a small group\n" "of people." msgstr "" -#: gnu/packages/web.scm:1779 +#: gnu/packages/web.scm:1780 msgid "" "Websockify translates WebSockets traffic to normal socket\n" "traffic. Websockify accepts the WebSockets handshake, parses it, and then\n" @@ -20815,7 +21063,7 @@ msgid "" "directions." msgstr "" -#: gnu/packages/web.scm:1806 +#: gnu/packages/web.scm:1807 msgid "" "WWWOFFLE is a proxy web server that is especially good for\n" "intermittent internet links. It can cache HTTP, HTTPS, FTP, and finger\n" @@ -20824,7 +21072,7 @@ msgid "" "changes, and much more." msgstr "" -#: gnu/packages/web.scm:1832 +#: gnu/packages/web.scm:1833 msgid "" "liboauth is a collection of C functions implementing the OAuth API.\n" "liboauth provides functions to escape and encode strings according to OAuth\n" @@ -20833,25 +21081,25 @@ msgid "" "hash/signatures." msgstr "" -#: gnu/packages/web.scm:1855 +#: gnu/packages/web.scm:1856 msgid "" "This package contains support scripts called by libquvi to\n" "parse media stream properties." msgstr "" -#: gnu/packages/web.scm:1889 +#: gnu/packages/web.scm:1890 msgid "" "libquvi is a library with a C API for parsing media stream\n" "URLs and extracting their actual media files." msgstr "" -#: gnu/packages/web.scm:1911 +#: gnu/packages/web.scm:1912 msgid "" "quvi is a command-line-tool suite to extract media files\n" "from streaming URLs. It is a command-line wrapper for the libquvi library." msgstr "" -#: gnu/packages/web.scm:1983 +#: gnu/packages/web.scm:1984 msgid "" "serf is a C-based HTTP client library built upon the Apache Portable\n" "Runtime (APR) library. It multiplexes connections, running the read/write\n" @@ -20859,7 +21107,7 @@ msgid "" "minimum to provide high performance operation." msgstr "" -#: gnu/packages/web.scm:2018 +#: gnu/packages/web.scm:2019 msgid "" "LibSass is a @acronym{SASS,Syntactically awesome style sheets} compiler\n" "library designed for portability and efficiency. To actually compile SASS\n" @@ -20867,29 +21115,29 @@ msgid "" "@var{sassc} for example." msgstr "" -#: gnu/packages/web.scm:2067 +#: gnu/packages/web.scm:2068 msgid "" "SassC is a compiler written in C for the CSS pre-processor\n" "language known as SASS." msgstr "" -#: gnu/packages/web.scm:2112 +#: gnu/packages/web.scm:2113 msgid "" "This module provides methods to compile a log format string\n" "to perl-code, for faster generation of access_log lines." msgstr "" -#: gnu/packages/web.scm:2140 +#: gnu/packages/web.scm:2141 msgid "Authen::SASL provides an SASL authentication framework." msgstr "" -#: gnu/packages/web.scm:2163 +#: gnu/packages/web.scm:2164 msgid "" "This Catalyst action implements a sensible default end\n" "action, which will forward to the first available view." msgstr "" -#: gnu/packages/web.scm:2195 +#: gnu/packages/web.scm:2196 msgid "" "This Action handles doing automatic method dispatching for\n" "REST requests. It takes a normal Catalyst action, and changes the dispatch to\n" @@ -20898,20 +21146,20 @@ msgid "" "regular method." msgstr "" -#: gnu/packages/web.scm:2226 +#: gnu/packages/web.scm:2227 msgid "" "The Catalyst::Authentication::Store::DBIx::Class class\n" "provides access to authentication information stored in a database via\n" "DBIx::Class." msgstr "" -#: gnu/packages/web.scm:2252 +#: gnu/packages/web.scm:2253 msgid "" "Catalyst::Component::InstancePerContext returns a new\n" "instance of a component on each request." msgstr "" -#: gnu/packages/web.scm:2288 +#: gnu/packages/web.scm:2289 msgid "" "The Catalyst-Devel distribution includes a variety of\n" "modules useful for the development of Catalyst applications, but not required\n" @@ -20921,7 +21169,7 @@ msgid "" "modules." msgstr "" -#: gnu/packages/web.scm:2316 +#: gnu/packages/web.scm:2317 msgid "" "Dispatch type managing path-matching behaviour using\n" "regexes. Regex dispatch types have been deprecated and removed from Catalyst\n" @@ -20931,20 +21179,20 @@ msgid "" "when the dispatch type is first seen in your application." msgstr "" -#: gnu/packages/web.scm:2363 +#: gnu/packages/web.scm:2364 msgid "" "This is a Catalyst Model for DBIx::Class::Schema-based\n" "Models." msgstr "" -#: gnu/packages/web.scm:2385 +#: gnu/packages/web.scm:2386 msgid "" "This Catalyst plugin enables you to create \"access logs\"\n" "from within a Catalyst application instead of requiring a webserver to do it\n" "for you. It will work even with Catalyst debug logging turned off." msgstr "" -#: gnu/packages/web.scm:2419 +#: gnu/packages/web.scm:2420 msgid "" "The authentication plugin provides generic user support for\n" "Catalyst apps. It is the basis for both authentication (checking the user is\n" @@ -20952,32 +21200,32 @@ msgid "" "system authorises them to do)." msgstr "" -#: gnu/packages/web.scm:2447 +#: gnu/packages/web.scm:2448 msgid "" "Catalyst::Plugin::Authorization::Roles provides role-based\n" "authorization for Catalyst based on Catalyst::Plugin::Authentication." msgstr "" -#: gnu/packages/web.scm:2469 +#: gnu/packages/web.scm:2470 msgid "" "This plugin creates and validates Captcha images for\n" "Catalyst." msgstr "" -#: gnu/packages/web.scm:2493 +#: gnu/packages/web.scm:2494 msgid "" "This module will attempt to load find and load configuration\n" "files of various types. Currently it supports YAML, JSON, XML, INI and Perl\n" "formats." msgstr "" -#: gnu/packages/web.scm:2522 +#: gnu/packages/web.scm:2523 msgid "" "This plugin links the two pieces required for session\n" "management in web applications together: the state, and the store." msgstr "" -#: gnu/packages/web.scm:2548 +#: gnu/packages/web.scm:2549 msgid "" "In order for Catalyst::Plugin::Session to work, the session\n" "ID needs to be stored on the client, and the session data needs to be stored\n" @@ -20985,14 +21233,14 @@ msgid "" "cookie mechanism." msgstr "" -#: gnu/packages/web.scm:2578 +#: gnu/packages/web.scm:2579 msgid "" "Catalyst::Plugin::Session::Store::FastMmap is a fast session\n" "storage plugin for Catalyst that uses an mmap'ed file to act as a shared\n" "memory interprocess cache. It is based on Cache::FastMmap." msgstr "" -#: gnu/packages/web.scm:2602 +#: gnu/packages/web.scm:2603 msgid "" "This plugin enhances the standard Catalyst debug screen by\n" "including a stack trace of your application up to the point where the error\n" @@ -21000,7 +21248,7 @@ msgid "" "number, file name, and code context surrounding the line number." msgstr "" -#: gnu/packages/web.scm:2628 +#: gnu/packages/web.scm:2629 msgid "" "The Static::Simple plugin is designed to make serving static\n" "content in your application during development quick and easy, without\n" @@ -21011,7 +21259,7 @@ msgid "" "MIME type directly to the browser, without being processed through Catalyst." msgstr "" -#: gnu/packages/web.scm:2687 +#: gnu/packages/web.scm:2688 msgid "" "Catalyst is a modern framework for making web applications.\n" "It is designed to make it easy to manage the various tasks you need to do to\n" @@ -21019,7 +21267,7 @@ msgid "" "\"plug in\" existing Perl modules that do what you need." msgstr "" -#: gnu/packages/web.scm:2715 +#: gnu/packages/web.scm:2716 msgid "" "This module is a Moose::Role which allows you more\n" "flexibility in your application's deployment configurations when deployed\n" @@ -21027,26 +21275,26 @@ msgid "" "replaced with the contents of the X-Request-Base header." msgstr "" -#: gnu/packages/web.scm:2743 +#: gnu/packages/web.scm:2744 msgid "" "The purpose of this module is to provide a method for\n" "downloading data into many supportable formats. For example, downloading a\n" "table based report in a variety of formats (CSV, HTML, etc.)." msgstr "" -#: gnu/packages/web.scm:2767 +#: gnu/packages/web.scm:2768 msgid "" "Catalyst::View::JSON is a Catalyst View handler that returns\n" "stash data in JSON format." msgstr "" -#: gnu/packages/web.scm:2793 +#: gnu/packages/web.scm:2794 msgid "" "This module is a Catalyst view class for the Template\n" "Toolkit." msgstr "" -#: gnu/packages/web.scm:2821 +#: gnu/packages/web.scm:2822 msgid "" "Adds a \"COMPONENT\" in Catalyst::Component method to your\n" "Catalyst component base class that reads the optional \"traits\" parameter\n" @@ -21055,19 +21303,19 @@ msgid "" "MooseX::Traits::Pluggable." msgstr "" -#: gnu/packages/web.scm:2845 +#: gnu/packages/web.scm:2846 msgid "" "CatalystX::RoleApplicator applies roles to Catalyst\n" "application classes." msgstr "" -#: gnu/packages/web.scm:2870 +#: gnu/packages/web.scm:2871 msgid "" "This module provides a Catalyst extension to replace the\n" "development server with Starman." msgstr "" -#: gnu/packages/web.scm:2892 +#: gnu/packages/web.scm:2893 msgid "" "CGI.pm is a stable, complete and mature solution for\n" "processing and preparing HTTP requests and responses. Major features include\n" @@ -21076,44 +21324,44 @@ msgid "" "headers." msgstr "" -#: gnu/packages/web.scm:2919 +#: gnu/packages/web.scm:2920 msgid "" "@code{CGI::FormBuilder} provides an easy way to generate and process CGI\n" "form-based applications." msgstr "" -#: gnu/packages/web.scm:2946 +#: gnu/packages/web.scm:2947 msgid "" "@code{CGI::Session} provides modular session management system across\n" "HTTP requests." msgstr "" -#: gnu/packages/web.scm:2967 +#: gnu/packages/web.scm:2968 msgid "" "CGI::Simple provides a relatively lightweight drop in\n" "replacement for CGI.pm. It shares an identical OO interface to CGI.pm for\n" "parameter parsing, file upload, cookie handling and header generation." msgstr "" -#: gnu/packages/web.scm:2989 +#: gnu/packages/web.scm:2990 msgid "" "This is a module for building structured data from CGI\n" "inputs, in a manner reminiscent of how PHP does." msgstr "" -#: gnu/packages/web.scm:3012 +#: gnu/packages/web.scm:3013 msgid "" "This module provides functions that deal with the date\n" "formats used by the HTTP protocol." msgstr "" -#: gnu/packages/web.scm:3033 +#: gnu/packages/web.scm:3034 msgid "" "Digest::MD5::File is a Perl extension for getting MD5 sums\n" "for files and urls." msgstr "" -#: gnu/packages/web.scm:3053 +#: gnu/packages/web.scm:3054 msgid "" "The POSIX locale system is used to specify both the language\n" "conventions requested by the user and the preferred character set to\n" @@ -21125,66 +21373,66 @@ msgid "" "with Encode::decode(locale => $string)." msgstr "" -#: gnu/packages/web.scm:3086 +#: gnu/packages/web.scm:3087 msgid "" "@code{Feed::Find} implements feed auto-discovery for finding\n" "syndication feeds, given a URI. It will discover the following feed formats:\n" "RSS 0.91, RSS 1.0, RSS 2.0, Atom." msgstr "" -#: gnu/packages/web.scm:3109 +#: gnu/packages/web.scm:3110 msgid "" "The File::Listing module exports a single function called parse_dir(),\n" "which can be used to parse directory listings." msgstr "" -#: gnu/packages/web.scm:3142 +#: gnu/packages/web.scm:3143 msgid "" "Finance::Quote gets stock quotes from various internet sources, including\n" "Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange." msgstr "" -#: gnu/packages/web.scm:3165 +#: gnu/packages/web.scm:3166 msgid "" "This is a Perl extension for using GSSAPI C bindings as\n" "described in RFC 2744." msgstr "" -#: gnu/packages/web.scm:3187 +#: gnu/packages/web.scm:3188 msgid "" "HTML::Element::Extended is a Perl extension for manipulating a table\n" "composed of HTML::Element style components." msgstr "" -#: gnu/packages/web.scm:3208 +#: gnu/packages/web.scm:3209 msgid "" "Objects of the HTML::Form class represents a single HTML\n" "
...
instance." msgstr "" -#: gnu/packages/web.scm:3241 +#: gnu/packages/web.scm:3242 msgid "@code{HTML::Scrubber} Perl extension for scrubbing/sanitizing HTML." msgstr "" -#: gnu/packages/web.scm:3260 +#: gnu/packages/web.scm:3261 msgid "" "HTML::Lint is a pure-Perl HTML parser and checker for\n" "syntactic legitmacy." msgstr "" -#: gnu/packages/web.scm:3282 +#: gnu/packages/web.scm:3283 msgid "" "HTML::TableExtract is a Perl module for extracting the content contained\n" "in tables within an HTML document, either as text or encoded element trees." msgstr "" -#: gnu/packages/web.scm:3305 +#: gnu/packages/web.scm:3306 msgid "" "This distribution contains a suite of modules for\n" "representing, creating, and extracting information from HTML syntax trees." msgstr "" -#: gnu/packages/web.scm:3327 +#: gnu/packages/web.scm:3328 msgid "" "Objects of the HTML::Parser class will recognize markup and separate\n" "it from plain text (alias data content) in HTML documents. As different\n" @@ -21192,13 +21440,13 @@ msgid "" "are invoked." msgstr "" -#: gnu/packages/web.scm:3349 +#: gnu/packages/web.scm:3350 msgid "" "The HTML::Tagset module contains several data tables useful in various\n" "kinds of HTML parsing operations." msgstr "" -#: gnu/packages/web.scm:3370 +#: gnu/packages/web.scm:3371 msgid "" "This module attempts to make using HTML templates simple and natural.\n" "It extends standard HTML with a few new HTML-esque tags: @code{},\n" @@ -21209,40 +21457,40 @@ msgid "" "you to separate design from the data." msgstr "" -#: gnu/packages/web.scm:3398 +#: gnu/packages/web.scm:3399 msgid "" "HTTP::Body parses chunks of HTTP POST data and supports\n" "application/octet-stream, application/json, application/x-www-form-urlencoded,\n" "and multipart/form-data." msgstr "" -#: gnu/packages/web.scm:3421 +#: gnu/packages/web.scm:3422 msgid "" "This module implements a minimalist HTTP user agent cookie\n" "jar in conformance with RFC 6265 ." msgstr "" -#: gnu/packages/web.scm:3443 +#: gnu/packages/web.scm:3444 msgid "" "The HTTP::Cookies class is for objects that represent a cookie jar,\n" "that is, a database of all the HTTP cookies that a given LWP::UserAgent\n" "object knows about." msgstr "" -#: gnu/packages/web.scm:3466 +#: gnu/packages/web.scm:3467 msgid "" "Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen\n" "on a socket for incoming requests. The HTTP::Daemon is a subclass of\n" "IO::Socket::INET, so you can perform socket operations directly on it too." msgstr "" -#: gnu/packages/web.scm:3487 +#: gnu/packages/web.scm:3488 msgid "" "The HTTP::Date module provides functions that deal with date formats\n" "used by the HTTP protocol (and then some more)." msgstr "" -#: gnu/packages/web.scm:3508 +#: gnu/packages/web.scm:3509 msgid "" "@code{HTTP::Lite} is a stand-alone lightweight\n" "HTTP/1.1 implementation for perl. It is intended for use in\n" @@ -21256,11 +21504,11 @@ msgid "" "processing of request data as it arrives." msgstr "" -#: gnu/packages/web.scm:3541 +#: gnu/packages/web.scm:3542 msgid "An HTTP::Message object contains some headers and a content body." msgstr "" -#: gnu/packages/web.scm:3562 +#: gnu/packages/web.scm:3563 msgid "" "The HTTP::Negotiate module provides a complete implementation of the\n" "HTTP content negotiation algorithm specified in\n" @@ -21270,7 +21518,7 @@ msgid "" "fields in the request." msgstr "" -#: gnu/packages/web.scm:3587 +#: gnu/packages/web.scm:3588 msgid "" "This is an HTTP request parser. It takes chunks of text as\n" "received and returns a @code{hint} as to what is required, or returns the\n" @@ -21278,33 +21526,33 @@ msgid "" "supported." msgstr "" -#: gnu/packages/web.scm:3610 +#: gnu/packages/web.scm:3611 msgid "" "HTTP::Parser::XS is a fast, primitive HTTP request/response\n" "parser." msgstr "" -#: gnu/packages/web.scm:3631 +#: gnu/packages/web.scm:3632 msgid "" "This module provides a convenient way to set up a CGI\n" "environment from an HTTP::Request." msgstr "" -#: gnu/packages/web.scm:3665 +#: gnu/packages/web.scm:3666 msgid "" "HTTP::Server::Simple is a simple standalone HTTP daemon with\n" "no non-core module dependencies. It can be used for building a standalone\n" "http-based UI to your existing tools." msgstr "" -#: gnu/packages/web.scm:3688 +#: gnu/packages/web.scm:3689 msgid "" "This is a very simple HTTP/1.1 client, designed for doing\n" "simple requests without the overhead of a large framework like LWP::UserAgent.\n" "It supports proxies and redirection. It also correctly resumes after EINTR." msgstr "" -#: gnu/packages/web.scm:3713 +#: gnu/packages/web.scm:3714 msgid "" "@code{HTTP::Tinyish} is a wrapper module for @acronym{LWP,libwww-perl},\n" "@code{HTTP::Tiny}, curl and wget.\n" @@ -21312,20 +21560,20 @@ msgid "" "It provides an API compatible to HTTP::Tiny." msgstr "" -#: gnu/packages/web.scm:3735 +#: gnu/packages/web.scm:3736 msgid "" "IO::HTML provides an easy way to open a file containing HTML while\n" "automatically determining its encoding. It uses the HTML5 encoding sniffing\n" "algorithm specified in section 8.2.2.1 of the draft standard." msgstr "" -#: gnu/packages/web.scm:3755 +#: gnu/packages/web.scm:3756 msgid "" "This module provides a protocol-independent way to use IPv4\n" "and IPv6 sockets, intended as a replacement for IO::Socket::INET." msgstr "" -#: gnu/packages/web.scm:3777 +#: gnu/packages/web.scm:3778 msgid "" "IO::Socket::SSL makes using SSL/TLS much easier by wrapping the\n" "necessary functionality into the familiar IO::Socket interface and providing\n" @@ -21334,7 +21582,7 @@ msgid "" "select or poll." msgstr "" -#: gnu/packages/web.scm:3816 +#: gnu/packages/web.scm:3817 msgid "" "The libwww-perl collection is a set of Perl modules which provides a\n" "simple and consistent application programming interface to the\n" @@ -21344,7 +21592,7 @@ msgid "" "help you implement simple HTTP servers." msgstr "" -#: gnu/packages/web.scm:3844 +#: gnu/packages/web.scm:3845 msgid "" "This module attempts to answer, as accurately as it can, one\n" "of the nastiest technical questions there is: am I on the internet?\n" @@ -21354,7 +21602,7 @@ msgid "" "not have DNS. We might not have a network card at all!" msgstr "" -#: gnu/packages/web.scm:3870 +#: gnu/packages/web.scm:3871 #, scheme-format msgid "" "The LWP::MediaTypes module provides functions for handling media (also\n" @@ -21363,20 +21611,20 @@ msgid "" "exists it is used instead." msgstr "" -#: gnu/packages/web.scm:3895 +#: gnu/packages/web.scm:3896 msgid "" "The LWP::Protocol::https module provides support for using\n" "https schemed URLs with LWP." msgstr "" -#: gnu/packages/web.scm:3916 +#: gnu/packages/web.scm:3917 msgid "" "LWP::UserAgent::Cached is an LWP::UserAgent subclass with\n" "cache support. It returns responses from the local file system, if available,\n" "instead of making an HTTP request." msgstr "" -#: gnu/packages/web.scm:3938 +#: gnu/packages/web.scm:3939 msgid "" "LWP::UserAgent::Determined works just like LWP::UserAgent,\n" "except that when you use it to get a web page but run into a\n" @@ -21384,7 +21632,7 @@ msgid "" "and retry a few times." msgstr "" -#: gnu/packages/web.scm:3965 +#: gnu/packages/web.scm:3966 msgid "" "@code{LWPx::ParanoidAgent} is a class subclassing\n" "@code{LWP::UserAgent} but paranoid against attackers. Its purpose is\n" @@ -21394,12 +21642,12 @@ msgid "" "is limited to http and https." msgstr "" -#: gnu/packages/web.scm:4011 +#: gnu/packages/web.scm:4012 #, fuzzy msgid "This module provides a Perlish interface to Amazon S3." msgstr "Tiu ĉi pako provizas datumbazan interfacon por Perl." -#: gnu/packages/web.scm:4032 +#: gnu/packages/web.scm:4033 msgid "" "The Net::HTTP class is a low-level HTTP client. An instance of the\n" "Net::HTTP class represents a connection to an HTTP server. The HTTP protocol\n" @@ -21407,7 +21655,7 @@ msgid "" "HTTP/1.1." msgstr "" -#: gnu/packages/web.scm:4053 +#: gnu/packages/web.scm:4054 msgid "" "Net::Server is an extensible, generic Perl server engine.\n" "It attempts to be a generic server as in Net::Daemon and NetServer::Generic.\n" @@ -21421,11 +21669,11 @@ msgid "" "or to multiple server ports." msgstr "" -#: gnu/packages/web.scm:4082 +#: gnu/packages/web.scm:4083 msgid "SSL support for Net::SMTP." msgstr "" -#: gnu/packages/web.scm:4116 +#: gnu/packages/web.scm:4117 msgid "" "Plack is a set of tools for using the PSGI stack. It\n" "contains middleware components, a reference server, and utilities for Web\n" @@ -21433,7 +21681,7 @@ msgid "" "WSGI." msgstr "" -#: gnu/packages/web.scm:4143 +#: gnu/packages/web.scm:4144 msgid "" "Plack::Middleware::Deflater is a middleware to encode your response body\n" "in gzip or deflate, based on \"Accept-Encoding\" HTTP request header. It\n" @@ -21442,13 +21690,13 @@ msgid "" "servers." msgstr "" -#: gnu/packages/web.scm:4170 +#: gnu/packages/web.scm:4171 msgid "" "This module sets the body in redirect response, if it's not\n" "already set." msgstr "" -#: gnu/packages/web.scm:4193 +#: gnu/packages/web.scm:4194 msgid "" "This middleware allows for POST requests that pretend to be\n" "something else: by adding either a header named X-HTTP-Method-Override to the\n" @@ -21456,44 +21704,44 @@ msgid "" "can say what method it actually meant." msgstr "" -#: gnu/packages/web.scm:4217 +#: gnu/packages/web.scm:4218 msgid "" "This module removes the body in an HTTP response if it's not\n" "required." msgstr "" -#: gnu/packages/web.scm:4240 +#: gnu/packages/web.scm:4241 msgid "" "Plack::Middleware::ReverseProxy resets some HTTP headers,\n" "which are changed by reverse-proxy. You can specify the reverse proxy address\n" "and stop fake requests using @code{enable_if} directive in your app.psgi." msgstr "" -#: gnu/packages/web.scm:4261 +#: gnu/packages/web.scm:4262 msgid "" "This module allows your to run your Plack::Test tests\n" "against an external server instead of just against a local application through\n" "either mocked HTTP or a locally spawned server." msgstr "" -#: gnu/packages/web.scm:4283 +#: gnu/packages/web.scm:4284 msgid "Test::TCP is test utilities for TCP/IP programs." msgstr "" -#: gnu/packages/web.scm:4308 +#: gnu/packages/web.scm:4309 msgid "" "Test::WWW::Mechanize is a subclass of the Perl module\n" "WWW::Mechanize that incorporates features for web application testing." msgstr "" -#: gnu/packages/web.scm:4341 +#: gnu/packages/web.scm:4342 msgid "" "The Test::WWW::Mechanize::Catalyst module meshes the\n" "Test::WWW:Mechanize module and the Catalyst web application framework to allow\n" "testing of Catalyst applications without needing to start up a web server." msgstr "" -#: gnu/packages/web.scm:4365 +#: gnu/packages/web.scm:4366 msgid "" "PSGI is a specification to decouple web server environments\n" "from web application framework code. Test::WWW::Mechanize is a subclass of\n" @@ -21502,21 +21750,21 @@ msgid "" "applications." msgstr "" -#: gnu/packages/web.scm:4390 +#: gnu/packages/web.scm:4391 msgid "" "The URI module implements the URI class. Objects of this class\n" "represent \"Uniform Resource Identifier references\" as specified in RFC 2396\n" "and updated by RFC 2732." msgstr "" -#: gnu/packages/web.scm:4413 +#: gnu/packages/web.scm:4414 msgid "" "@code{URI::Fetch} is a smart client for fetching HTTP pages,\n" "notably syndication feeds (RSS, Atom, and others), in an intelligent, bandwidth-\n" "and time-saving way." msgstr "" -#: gnu/packages/web.scm:4437 +#: gnu/packages/web.scm:4438 msgid "" "This module finds URIs and URLs (according to what URI.pm\n" "considers a URI) in plain text. It only finds URIs which include a\n" @@ -21524,37 +21772,37 @@ msgid "" "URI::Find::Schemeless. For a command-line interface, urifind is provided." msgstr "" -#: gnu/packages/web.scm:4460 +#: gnu/packages/web.scm:4461 msgid "" "With this module, the URI package provides the same set of\n" "methods for WebSocket URIs as it does for HTTP URIs." msgstr "" -#: gnu/packages/web.scm:4483 +#: gnu/packages/web.scm:4484 msgid "" "This perl module provides a wrapper around URI templates as described in\n" "RFC 6570." msgstr "" -#: gnu/packages/web.scm:4517 +#: gnu/packages/web.scm:4518 msgid "" "This is a Perl extension interface for the libcurl file downloading\n" "library." msgstr "" -#: gnu/packages/web.scm:4548 +#: gnu/packages/web.scm:4549 msgid "" "WWW::Mechanize is a Perl module for stateful programmatic\n" "web browsing, used for automating interaction with websites." msgstr "" -#: gnu/packages/web.scm:4586 +#: gnu/packages/web.scm:4587 msgid "" "@code{WWW::OpenSearch} is a module to search @url{A9's OpenSearch,\n" "http://opensearch.a9.com} compatible search engines." msgstr "" -#: gnu/packages/web.scm:4608 +#: gnu/packages/web.scm:4609 msgid "" "The WWW::RobotRules module parses /robots.txt files as specified in\n" "\"A Standard for Robot Exclusion\", at\n" @@ -21563,13 +21811,13 @@ msgid "" "their web site." msgstr "" -#: gnu/packages/web.scm:4635 gnu/packages/web.scm:4659 +#: gnu/packages/web.scm:4640 gnu/packages/web.scm:4664 msgid "" "Universal feed parser which handles RSS 0.9x, RSS 1.0, RSS 2.0,\n" "CDF, Atom 0.3, and Atom 1.0 feeds." msgstr "" -#: gnu/packages/web.scm:4756 +#: gnu/packages/web.scm:4761 msgid "" "The Guix Data Service stores data about GNU Guix, and provides this\n" "through a web interface. It supports listening to the guix-commits mailing\n" @@ -21577,20 +21825,20 @@ msgid "" "PostgreSQL database." msgstr "" -#: gnu/packages/web.scm:4785 +#: gnu/packages/web.scm:4790 msgid "" "Gumbo is an implementation of the HTML5 parsing algorithm implemented as\n" "a pure C99 library." msgstr "" -#: gnu/packages/web.scm:4858 +#: gnu/packages/web.scm:4863 msgid "" "uWSGI presents a complete stack for networked/clustered web applications,\n" "implementing message/object passing, caching, RPC and process management.\n" "It uses the uwsgi protocol for all the networking/interprocess communications." msgstr "" -#: gnu/packages/web.scm:4891 +#: gnu/packages/web.scm:4896 msgid "" "jq is like sed for JSON data – you can use it to slice and\n" "filter and map and transform structured data with the same ease that sed, awk,\n" @@ -21600,7 +21848,7 @@ msgid "" "you'd expect." msgstr "" -#: gnu/packages/web.scm:4920 +#: gnu/packages/web.scm:4925 msgid "" "@command{pup} is a command line tool for processing HTML. It reads\n" "from stdin, prints to stdout, and allows the user to filter parts of the page\n" @@ -21608,66 +21856,66 @@ msgid "" "fast and flexible way of exploring HTML from the terminal." msgstr "" -#: gnu/packages/web.scm:4953 +#: gnu/packages/web.scm:4958 msgid "" "Uhttpmock is a project for mocking web service APIs which use HTTP or\n" "HTTPS. It provides a library, libuhttpmock, which implements recording and\n" "playback of HTTP request/response traces." msgstr "" -#: gnu/packages/web.scm:4989 +#: gnu/packages/web.scm:4994 msgid "" "Woof (Web Offer One File) is a small simple web server that\n" "can easily be invoked on a single file. Your partner can access the file with\n" "tools they trust (e.g. wget)." msgstr "" -#: gnu/packages/web.scm:5017 +#: gnu/packages/web.scm:5022 msgid "" "This package provides the shared build system for Netsurf project\n" "libraries." msgstr "" -#: gnu/packages/web.scm:5052 +#: gnu/packages/web.scm:5057 msgid "" "LibParserUtils is a library for building efficient parsers, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5082 +#: gnu/packages/web.scm:5087 msgid "" "Hubbub is an HTML5 compliant parsing library, written in C, which can\n" "parse both valid and invalid web content. It is developed as part of the\n" "NetSurf project." msgstr "" -#: gnu/packages/web.scm:5203 +#: gnu/packages/web.scm:5208 msgid "" "Ikiwiki is a wiki compiler, capable of generating a static set of web\n" "pages, but also incorporating dynamic features like a web based editor and\n" "commenting." msgstr "" -#: gnu/packages/web.scm:5227 +#: gnu/packages/web.scm:5232 msgid "" "LibWapcaplet provides a reference counted string internment system\n" "designed to store small strings and allow rapid comparison of them. It is\n" "developed as part of the Netsurf project." msgstr "" -#: gnu/packages/web.scm:5259 +#: gnu/packages/web.scm:5264 msgid "" "LibCSS is a CSS (Cascading Style Sheet) parser and selection engine,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5294 +#: gnu/packages/web.scm:5299 msgid "" "LibDOM is an implementation of the W3C DOM, written in C. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5321 +#: gnu/packages/web.scm:5326 msgid "" "Libsvgtiny takes some SVG as input and returns a list of paths and texts\n" "which can be rendered easily, as defined in\n" @@ -21675,65 +21923,65 @@ msgid "" "project." msgstr "" -#: gnu/packages/web.scm:5346 +#: gnu/packages/web.scm:5351 msgid "" "Libnsbmp is a decoding library for BMP and ICO image file formats,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5369 +#: gnu/packages/web.scm:5374 msgid "" "Libnsgif is a decoding library for the GIF image file format, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5396 +#: gnu/packages/web.scm:5401 msgid "" "Libnslog provides a category-based logging library which supports\n" "complex logging filters, multiple log levels, and provides context through to\n" "client applications. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5420 +#: gnu/packages/web.scm:5425 msgid "" "Libnsutils provides a small number of useful utility routines. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5443 +#: gnu/packages/web.scm:5448 msgid "" "Libnspsl is a library to generate a static code representation of the\n" "Public Suffix List. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5469 +#: gnu/packages/web.scm:5474 msgid "" "@code{nsgenbind} is a tool to generate JavaScript to DOM bindings from\n" "w3c webidl files and a binding configuration file." msgstr "" -#: gnu/packages/web.scm:5592 +#: gnu/packages/web.scm:5597 msgid "" "NetSurf is a lightweight web browser that has its own layout and\n" "rendering engine entirely written from scratch. It is small and capable of\n" "handling many of the web standards in use today." msgstr "" -#: gnu/packages/web.scm:5631 +#: gnu/packages/web.scm:5636 msgid "" "Surfraw (Shell Users' Revolutionary Front Rage Against the Web)\n" "provides a unix command line interface to a variety of popular www search engines\n" "and similar services." msgstr "" -#: gnu/packages/web.scm:5664 +#: gnu/packages/web.scm:5669 msgid "" "darkhttpd is a simple static web server. It is\n" "standalone and does not need inetd or ucspi-tcp. It does not need any\n" "config files---you only have to specify the www root." msgstr "" -#: gnu/packages/web.scm:5695 +#: gnu/packages/web.scm:5700 msgid "" "GoAccess is a real-time web log analyzer and interactive viewer that\n" "runs in a terminal or through your browser. It provides fast and valuable\n" @@ -21741,7 +21989,7 @@ msgid "" "on the fly." msgstr "" -#: gnu/packages/web.scm:5749 +#: gnu/packages/web.scm:5754 msgid "" "Hitch is a performant TLS proxy based on @code{libev}. It terminates\n" "SSL/TLS connections and forwards the unencrypted traffic to a backend such\n" @@ -21749,7 +21997,7 @@ msgid "" "multicore machines." msgstr "" -#: gnu/packages/web.scm:5786 +#: gnu/packages/web.scm:5791 msgid "" "httptunnel creates a bidirectional virtual data connection\n" "tunnelled through HTTP (HyperText Transfer Protocol) requests. This can be\n" @@ -21767,7 +22015,7 @@ msgid "" "deployments." msgstr "" -#: gnu/packages/web.scm:5915 +#: gnu/packages/web.scm:5912 msgid "" "Varnish is a high-performance HTTP accelerator. It acts as a caching\n" "reverse proxy and load balancer. You install it in front of any server that\n" @@ -21775,14 +22023,14 @@ msgid "" "configuration language." msgstr "" -#: gnu/packages/web.scm:5949 +#: gnu/packages/web.scm:5946 msgid "" "This package provides a collection of modules (@dfn{vmods}) for the Varnish\n" "cache server, extending the @acronym{VCL, Varnish Configuration Language} with\n" "additional capabilities." msgstr "" -#: gnu/packages/web.scm:5976 +#: gnu/packages/web.scm:5973 msgid "" "@code{xinetd}, a more secure replacement for @code{inetd},\n" "listens for incoming requests over a network and launches the appropriate\n" @@ -21791,7 +22039,7 @@ msgid "" "used to start services with both privileged and non-privileged port numbers." msgstr "" -#: gnu/packages/web.scm:6023 +#: gnu/packages/web.scm:6020 msgid "" "Tidy is a console application which corrects and cleans up\n" "HTML and XML documents by fixing markup errors and upgrading\n" @@ -21802,14 +22050,14 @@ msgid "" "functions of Tidy." msgstr "" -#: gnu/packages/web.scm:6085 +#: gnu/packages/web.scm:6082 msgid "" "Hiawatha has been written with security in mind.\n" "Features include the ability to stop SQL injections, XSS and CSRF attacks and\n" "exploit attempts." msgstr "" -#: gnu/packages/web.scm:6107 +#: gnu/packages/web.scm:6104 msgid "" "Testing an HTTP Library can become difficult sometimes.\n" "@code{RequestBin} is fantastic for testing POST requests, but doesn't let you control the\n" @@ -21817,14 +22065,14 @@ msgid "" "JSON-encoded." msgstr "" -#: gnu/packages/web.scm:6132 +#: gnu/packages/web.scm:6129 msgid "" "@code{Pytest-httpbin} creates a @code{pytest} fixture that is dependency-injected\n" "into your tests. It automatically starts up a HTTP server in a separate thread running\n" "@code{httpbin} and provides your test with the URL in the fixture." msgstr "" -#: gnu/packages/web.scm:6199 +#: gnu/packages/web.scm:6196 msgid "" "This is a parser for HTTP messages written in C. It\n" "parses both requests and responses. The parser is designed to be used in\n" @@ -21834,40 +22082,40 @@ msgid "" "message stream (in a web server that is per connection)." msgstr "" -#: gnu/packages/web.scm:6236 +#: gnu/packages/web.scm:6233 msgid "" "@code{httpretty} is a helper for faking web requests,\n" "inspired by Ruby's @code{fakeweb}." msgstr "" -#: gnu/packages/web.scm:6254 +#: gnu/packages/web.scm:6251 msgid "" "jo is a command-line utility to create JSON objects or\n" "arrays. It creates a JSON string on stdout from words provided as\n" "command-line arguments or read from stdin." msgstr "" -#: gnu/packages/web.scm:6313 +#: gnu/packages/web.scm:6310 msgid "" "@code{ia} is a command-line tool for using\n" "@url{archive.org} from the command-line. It also implements the\n" "internetarchive python module for programmatic access to archive.org." msgstr "" -#: gnu/packages/web.scm:6364 +#: gnu/packages/web.scm:6361 msgid "" "@code{clf} is a command line tool for searching code\n" "snippets on @url{https://commandlinefu.com}." msgstr "" -#: gnu/packages/web.scm:6402 +#: gnu/packages/web.scm:6399 msgid "" "rss-bridge generates Atom feeds for social networking\n" "websites lacking feeds. Supported websites include Facebook, Twitter,\n" "Instagram and YouTube." msgstr "" -#: gnu/packages/web.scm:6440 +#: gnu/packages/web.scm:6437 msgid "" "LinkChecker is a website validator. It checks for broken\n" "links in websites. It is recursive and multithreaded providing output in\n" @@ -21876,67 +22124,67 @@ msgid "" "file links." msgstr "" -#: gnu/packages/web.scm:6488 +#: gnu/packages/web.scm:6485 msgid "" "Castor is a graphical client for plain-text protocols written in\n" "Rust with GTK. It currently supports the Gemini, Gopher and Finger\n" "protocols." msgstr "" -#: gnu/packages/web.scm:6575 +#: gnu/packages/web.scm:6572 msgid "" "This package includes Clearsilver, the CGI kit and HTML templating\n" "system." msgstr "" -#: gnu/packages/web.scm:6594 +#: gnu/packages/web.scm:6591 msgid "" "Py-ubjson is a Python module providing an Universal Binary JSON\n" "encoder/decoder based on the draft-12 specification for UBJSON." msgstr "" -#: gnu/packages/web.scm:6689 +#: gnu/packages/web.scm:6686 msgid "" "Apache Tomcat is a free implementation of the Java\n" "Servlet, JavaServer Pages, Java Expression Language and Java WebSocket\n" "technologies." msgstr "" -#: gnu/packages/web.scm:6743 +#: gnu/packages/web.scm:6740 msgid "" "This package contains helper classes for testing the Jetty\n" "Web Server." msgstr "" -#: gnu/packages/web.scm:6802 +#: gnu/packages/web.scm:6799 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides utility classes." msgstr "" -#: gnu/packages/web.scm:6880 +#: gnu/packages/web.scm:6877 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides IO-related utility classes." msgstr "" -#: gnu/packages/web.scm:6925 +#: gnu/packages/web.scm:6922 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides HTTP-related utility classes." msgstr "" -#: gnu/packages/web.scm:6959 +#: gnu/packages/web.scm:6956 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides the JMX management." msgstr "" -#: gnu/packages/web.scm:7045 +#: gnu/packages/web.scm:7042 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21944,7 +22192,7 @@ msgid "" "artifact." msgstr "" -#: gnu/packages/web.scm:7088 +#: gnu/packages/web.scm:7085 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21952,7 +22200,7 @@ msgid "" "infrastructure" msgstr "" -#: gnu/packages/web.scm:7144 +#: gnu/packages/web.scm:7141 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21960,14 +22208,14 @@ msgid "" "container." msgstr "" -#: gnu/packages/web.scm:7308 +#: gnu/packages/web.scm:7305 msgid "" "Jsoup is a Java library for working with real-world HTML. It\n" "provides a very convenient API for extracting and manipulating data, using the\n" "best of DOM, CSS, and jQuery-like methods." msgstr "" -#: gnu/packages/web.scm:7337 +#: gnu/packages/web.scm:7334 msgid "" "Signpost is the easy and intuitive solution for signing\n" "HTTP messages on the Java platform in conformance with the OAuth Core 1.0a\n" @@ -21975,7 +22223,7 @@ msgid "" "combine it with different HTTP messaging layers." msgstr "" -#: gnu/packages/web.scm:7360 +#: gnu/packages/web.scm:7357 msgid "" "Tidyp is a program that can validate your HTML, as well as\n" "modify it to be more clean and standard. tidyp does not validate HTML 5.\n" @@ -21985,14 +22233,14 @@ msgid "" "based on this library, allowing Perl programmers to easily validate HTML." msgstr "" -#: gnu/packages/web.scm:7401 +#: gnu/packages/web.scm:7398 msgid "" "@code{HTML::Tidy} is an HTML checker in a handy dandy\n" "object. It's meant as a replacement for @code{HTML::Lint}, which is written\n" "in Perl but is not nearly as capable as @code{HTML::Tidy}." msgstr "" -#: gnu/packages/web.scm:7430 +#: gnu/packages/web.scm:7427 msgid "" "Geomyidae is a server for distributed hypertext protocol Gopher. Its\n" "features include:\n" @@ -22006,14 +22254,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/web.scm:7478 +#: gnu/packages/web.scm:7475 msgid "" "Cat avatar generator is a generator of cat pictures optimised\n" "to generate random avatars, or defined avatar from a \"seed\". This is a\n" "derivation by David Revoy from the original MonsterID by Andreas Gohr." msgstr "" -#: gnu/packages/web.scm:7548 +#: gnu/packages/web.scm:7545 msgid "" "nghttp2 implements the Hypertext Transfer Protocol, version\n" "2 (@dfn{HTTP/2}).\n" @@ -22039,14 +22287,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7647 +#: gnu/packages/web.scm:7644 msgid "" "Hpcguix-web provides a web interface to the list of packages\n" "provided by Guix. The list of packages is searchable and provides\n" "instructions on how to use Guix in a shared HPC environment." msgstr "" -#: gnu/packages/web.scm:7668 +#: gnu/packages/web.scm:7665 msgid "" "HTTrack allows you to download a World Wide Web site from\n" "the Internet to a local directory, building recursively all directories,\n" @@ -22060,7 +22308,7 @@ msgid "" "HTTrack is fully configurable, and has an integrated help system." msgstr "" -#: gnu/packages/web.scm:7703 +#: gnu/packages/web.scm:7700 msgid "" "buku is a powerful bookmark manager written in Python3 and SQLite3.\n" "@command{buku} can auto-import bookmarks from your browser and present them\n" @@ -22069,7 +22317,7 @@ msgid "" "@command{bukuserver}." msgstr "" -#: gnu/packages/web.scm:7724 +#: gnu/packages/web.scm:7721 msgid "" "Anonip masks the last bits of IPv4 and IPv6 addresses in log files.\n" "That way most of the relevant information is preserved, while the IP address\n" @@ -22084,7 +22332,7 @@ msgid "" "Anonip can also be uses as a Python module in your own Python application." msgstr "" -#: gnu/packages/web.scm:7758 +#: gnu/packages/web.scm:7755 msgid "" "Poussetaches (which literally means \"push tasks\" in\n" "French) is a lightweight asynchronous task execution service that aims to\n" @@ -22096,7 +22344,7 @@ msgid "" "returned." msgstr "" -#: gnu/packages/web.scm:7783 +#: gnu/packages/web.scm:7780 msgid "" "htmlcxx is a simple non-validating CSS1 and HTML parser for\n" "C++. Although there are several other HTML parsers available, htmlcxx has some\n" @@ -22114,7 +22362,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:7827 +#: gnu/packages/web.scm:7824 msgid "" "libRocket is a C++ user interface package based on the HTML\n" "and CSS standards. libRocket uses the open standards XHTML1.0 and\n" @@ -22131,11 +22379,11 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7869 +#: gnu/packages/web.scm:7866 msgid "gmnisrv is a simple Gemini protocol server written in C." msgstr "" -#: gnu/packages/web.scm:7900 +#: gnu/packages/web.scm:7898 msgid "" "The openZIM project proposes offline storage solutions for\n" "content coming from the Web. The zimlib is the standard implementation of the\n" @@ -22167,14 +22415,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:8081 +#: gnu/packages/web.scm:8078 msgid "" "uriparser is a strictly RFC 3986 compliant URI parsing and\n" "handling library written in C89 (\"ANSI C\"). uriparser is fast and supports\n" "Unicode." msgstr "" -#: gnu/packages/web.scm:8115 +#: gnu/packages/web.scm:8112 msgid "" "Quark is an extremely small and simple HTTP GET/HEAD only\n" "web server for static content. TLS is not natively supported and should be\n" @@ -22346,53 +22594,53 @@ msgid "" "Enhancement}." msgstr "" -#: gnu/services/base.scm:276 +#: gnu/services/base.scm:279 msgid "" "Populate the @file{/etc/fstab} based on the given file\n" "system objects." msgstr "" -#: gnu/services/base.scm:314 +#: gnu/services/base.scm:317 msgid "" "Take care of syncing the root file\n" "system and of remounting it read-only when the system shuts down." msgstr "" -#: gnu/services/base.scm:481 +#: gnu/services/base.scm:484 msgid "" "Provide Shepherd services to mount and unmount the given\n" "file systems, as well as corresponding @file{/etc/fstab} entries." msgstr "" -#: gnu/services/base.scm:579 +#: gnu/services/base.scm:582 msgid "" "Seed the @file{/dev/urandom} pseudo-random number\n" "generator (RNG) with the value recorded when the system was last shut\n" "down." msgstr "" -#: gnu/services/base.scm:611 +#: gnu/services/base.scm:614 msgid "" "Run the @command{rngd} random number generation daemon to\n" "supply entropy to the kernel's pool." msgstr "" -#: gnu/services/base.scm:640 +#: gnu/services/base.scm:643 msgid "Initialize the machine's host name." msgstr "" -#: gnu/services/base.scm:670 +#: gnu/services/base.scm:673 msgid "Ensure the Linux virtual terminals run in UTF-8 mode." msgstr "" -#: gnu/services/base.scm:683 +#: gnu/services/base.scm:686 msgid "" "@emph{This service is deprecated in favor of the\n" "@code{keyboard-layout} field of @code{operating-system}.} Load the given list\n" "of console keymaps with @command{loadkeys}." msgstr "" -#: gnu/services/base.scm:743 +#: gnu/services/base.scm:746 msgid "" "Install the given fonts on the specified ttys (fonts are per\n" "virtual console on GNU/Linux). The value of this service is a list of\n" @@ -22410,66 +22658,66 @@ msgid "" "@end example\n" msgstr "" -#: gnu/services/base.scm:795 +#: gnu/services/base.scm:798 msgid "" "Provide a console log-in service as specified by its\n" "configuration value, a @code{login-configuration} object." msgstr "" -#: gnu/services/base.scm:1063 +#: gnu/services/base.scm:1066 msgid "" "Provide console login using the @command{agetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1128 +#: gnu/services/base.scm:1131 msgid "" "Provide console login using the @command{mingetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1345 +#: gnu/services/base.scm:1348 msgid "" "Runs libc's @dfn{name service cache daemon} (nscd) with the\n" "given configuration---an @code{} object. @xref{Name\n" "Service Switch}, for an example." msgstr "" -#: gnu/services/base.scm:1384 +#: gnu/services/base.scm:1387 msgid "" "Run the syslog daemon, @command{syslogd}, which is\n" "responsible for logging system messages." msgstr "" -#: gnu/services/base.scm:1448 +#: gnu/services/base.scm:1451 msgid "" "Install the specified resource usage limits by populating\n" "@file{/etc/security/limits.conf} and using the @code{pam_limits}\n" "authentication module." msgstr "" -#: gnu/services/base.scm:1794 +#: gnu/services/base.scm:1804 msgid "Run the build daemon of GNU@tie{}Guix, aka. @command{guix-daemon}." msgstr "" -#: gnu/services/base.scm:1944 +#: gnu/services/base.scm:1961 msgid "" "Add a Shepherd service running @command{guix publish}, a\n" "command that allows you to share pre-built binaries with others over HTTP." msgstr "" -#: gnu/services/base.scm:2150 +#: gnu/services/base.scm:2167 msgid "" "Run @command{udev}, which populates the @file{/dev}\n" "directory dynamically. Get extra rules from the packages listed in the\n" "@code{rules} field of its value, @code{udev-configuration} object." msgstr "" -#: gnu/services/base.scm:2267 +#: gnu/services/base.scm:2284 msgid "Turn on the virtual memory swap area." msgstr "" -#: gnu/services/base.scm:2309 +#: gnu/services/base.scm:2326 msgid "" "Run GPM, the general-purpose mouse daemon, with the given\n" "command-line options. GPM allows users to use the mouse in the console,\n" @@ -22477,33 +22725,33 @@ msgid "" "@code{ps2} protocol, which works for both USB and PS/2 mice." msgstr "" -#: gnu/services/base.scm:2382 +#: gnu/services/base.scm:2399 msgid "" "Start the @command{kmscon} virtual terminal emulator for the\n" "Linux @dfn{kernel mode setting} (KMS)." msgstr "" -#: gnu/services/base.scm:2403 +#: gnu/services/base.scm:2416 #, scheme-format msgid "address '~a' lacks a network mask" msgstr "" -#: gnu/services/base.scm:2409 +#: gnu/services/base.scm:2422 #, scheme-format msgid "Write, say, @samp{\"~a/24\"} for a 24-bit network mask." msgstr "" -#: gnu/services/base.scm:2489 +#: gnu/services/base.scm:2502 #, scheme-format msgid "network links are currently ignored on GNU/Hurd~%" msgstr "" -#: gnu/services/base.scm:2514 +#: gnu/services/base.scm:2527 #, scheme-format msgid "ignoring network route for '~a'~%" msgstr "" -#: gnu/services/base.scm:2698 +#: gnu/services/base.scm:2711 msgid "" "Turn up the specified network interfaces upon startup,\n" "with the given IP address, gateway, netmask, and so on. The value for\n" @@ -22717,6 +22965,12 @@ msgid "" "on the web." msgstr "" +#, fuzzy +#~ msgid "" +#~ "This package provides support for the French language for the\n" +#~ "babel multilingual system." +#~ msgstr "Tiu ĉi pako provizas ilojn por manipuli dosiersistemojn ext2/ext3/ext4." + #, fuzzy #~ msgid "This package contains graphics and sound files for Naev." #~ msgstr "Tiu ĉi pako enhavas ludan datumaron por GNU Freedink." @@ -23937,11 +24191,6 @@ msgstr "" #~ msgid "Command-line utility to search text in PDF files" #~ msgstr "Komandliniaj iloj kaj biblioteko por transformi PDF-dosierojn" -#, fuzzy -#~| msgid "Implementation of Scheme and related languages" -#~ msgid "Implementation of the Perl programming language" -#~ msgstr "Realigo de Scheme kaj rilataj program-lingvoj" - #, fuzzy #~| msgid "SQlite interface for Perl" #~ msgid "Cache interface for Perl" diff --git a/po/packages/es.po b/po/packages/es.po index e5a597114a..61726d5fd7 100644 --- a/po/packages/es.po +++ b/po/packages/es.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: guix-packages 1.2.0-pre3\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" "PO-Revision-Date: 2021-06-05 20:33+0000\n" "Last-Translator: Emilio Herrera \n" "Language-Team: Spanish \n" @@ -52,7 +52,7 @@ msgstr "" msgid "This package provides a dictionary for the GNU Aspell spell checker." msgstr "Este paquete proporciona un diccionario para el comprobador ortográfico GNU Aspell." -#: gnu/packages/aspell.scm:445 gnu/packages/libreoffice.scm:845 +#: gnu/packages/aspell.scm:450 gnu/packages/libreoffice.scm:845 #: gnu/packages/libreoffice.scm:918 msgid "" "This package provides a dictionary for the Hunspell spell-checking\n" @@ -61,7 +61,7 @@ msgstr "" "Este paquete proporciona un diccionario para la biblioteca de\n" "comprobación ortográfica Hunspell." -#: gnu/packages/aspell.scm:525 +#: gnu/packages/aspell.scm:530 msgid "" "Ispell is an interactive spell-checking tool supporting many\n" "European languages." @@ -69,7 +69,7 @@ msgstr "" "Ispell es una herramienta interctiva de corrección ortográfica que soporta muchos\n" "idiomas Europeos." -#: gnu/packages/audio.scm:197 +#: gnu/packages/audio.scm:198 msgid "" "OpenSLES is a royalty-free, cross-platform,\n" "hardware-accelerated audio API tuned for embedded systems. It provides a\n" @@ -87,7 +87,7 @@ msgstr "" "capacidades de audio hardware y software, reduciendo el esfuerzo de implementación y\n" "promoviendo el mercado de audio avanzado." -#: gnu/packages/audio.scm:233 +#: gnu/packages/audio.scm:234 msgid "" "WildMIDI is a simple software midi player which has a core\n" "softsynth library that can be use with other applications." @@ -95,7 +95,7 @@ msgstr "" "WildMIDI es un reproductor midi sencillo que tiene una librería\n" "núcleo softsynth que puede ser usada con otras aplicaciones." -#: gnu/packages/audio.scm:257 +#: gnu/packages/audio.scm:258 msgid "" "WebRTC-Audio-Processing library based on Google's\n" "implementation of WebRTC." @@ -103,7 +103,7 @@ msgstr "" "WebRTC-Audio-Processing librería basada en la implementación\n" "de Google de WebRTC." -#: gnu/packages/audio.scm:277 +#: gnu/packages/audio.scm:278 msgid "" "VO-AACENC is the VisualOn implementation of Advanced Audio\n" "Coding (AAC) encoder." @@ -111,13 +111,13 @@ msgstr "" "VO-AACENC la implementación VisualOn de codificador Advanced Audio\n" "Coding (AAC)." -#: gnu/packages/audio.scm:306 +#: gnu/packages/audio.scm:307 msgid "" "TinyALSA is a small library to interface with ALSA in the\n" "Linux kernel." msgstr "" -#: gnu/packages/audio.scm:329 +#: gnu/packages/audio.scm:330 msgid "" "Game-music-emu is a collection of video game music file emulators that\n" "support the following formats and systems:\n" @@ -143,43 +143,43 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/audio.scm:393 +#: gnu/packages/audio.scm:394 msgid "" "LibOpenMPT is a cross-platform C++ and C module playback\n" "library. It is based on the player code of the Open ModPlug Tracker project." msgstr "" -#: gnu/packages/audio.scm:424 +#: gnu/packages/audio.scm:425 msgid "" "LibOFA is an audio fingerprint library, created and provided\n" "by MusicIP." msgstr "" -#: gnu/packages/audio.scm:445 +#: gnu/packages/audio.scm:446 msgid "FAAC is an MPEG-4 and MPEG-2 AAC encoder." msgstr "FAAC es un codificador MPEG-4 y MPEG-2 AAC." -#: gnu/packages/audio.scm:474 +#: gnu/packages/audio.scm:475 msgid "" "LibTiMidity is a MIDI to WAVE converter library that uses\n" "Gravis Ultrasound-compatible patch files to generate digital audio data from\n" "General MIDI files." msgstr "" -#: gnu/packages/audio.scm:499 +#: gnu/packages/audio.scm:500 msgid "" "VO-AMR is a library of VisualOn implementation of\n" "Adaptive Multi Rate Narrowband and Wideband (AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:518 +#: gnu/packages/audio.scm:519 msgid "" "OpenCore-AMR is a library of OpenCORE Framework\n" "implementation of Adaptive Multi Rate Narrowband and Wideband\n" "(AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:551 +#: gnu/packages/audio.scm:552 msgid "" "AlsaModularSynth is a digital implementation of a classical analog\n" "modular synthesizer system. It uses virtual control voltages to control the\n" @@ -188,7 +188,7 @@ msgid "" "Filter) modules follow the convention of 1V / Octave." msgstr "" -#: gnu/packages/audio.scm:588 +#: gnu/packages/audio.scm:589 msgid "" "aubio is a tool designed for the extraction of annotations from audio\n" "signals. Its features include segmenting a sound file before each of its\n" @@ -196,14 +196,14 @@ msgid "" "streams from live audio." msgstr "" -#: gnu/packages/audio.scm:719 +#: gnu/packages/audio.scm:720 msgid "" "Ardour is a multi-channel digital audio workstation, allowing users to\n" "record, edit, mix and master audio and MIDI projects. It is targeted at audio\n" "engineers, musicians, soundtrack editors and composers." msgstr "" -#: gnu/packages/audio.scm:833 +#: gnu/packages/audio.scm:853 msgid "" "Audacity is a multi-track audio editor designed for recording, playing\n" "and editing digital audio. It features digital effects and spectrum analysis\n" @@ -213,7 +213,7 @@ msgstr "" "reproducir y editar audio digital. Implementa efectos digitales y herramientas\n" "de análisis del espectro de onda." -#: gnu/packages/audio.scm:889 +#: gnu/packages/audio.scm:909 msgid "" "This is an open-source version of SGI's audiofile library.\n" "It provides a uniform programming interface for processing of audio data to\n" @@ -224,14 +224,14 @@ msgid "" "G.711 mu-law and A-law." msgstr "" -#: gnu/packages/audio.scm:931 +#: gnu/packages/audio.scm:951 msgid "" "Autotalent is a LADSPA plugin for real-time pitch-correction. Among its\n" "controls are allowable notes, strength of correction, LFO for vibrato and\n" "formant warp." msgstr "" -#: gnu/packages/audio.scm:972 +#: gnu/packages/audio.scm:992 msgid "" "AZR-3 is a port of the free VST plugin AZR-3. It is a tonewheel organ\n" "with drawbars, distortion and rotating speakers. The organ has three\n" @@ -240,7 +240,7 @@ msgid "" "plugins are provided." msgstr "" -#: gnu/packages/audio.scm:1011 +#: gnu/packages/audio.scm:1031 msgid "" "Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments.\n" "The suite contains lots of effects (delay, modulation, signal processing,\n" @@ -249,31 +249,31 @@ msgid "" "tools (analyzer, mono/stereo tools, crossovers)." msgstr "" -#: gnu/packages/audio.scm:1053 +#: gnu/packages/audio.scm:1073 msgid "" "LV2 port of CAPS, a collection of audio plugins comprising basic virtual\n" "guitar amplification and a small range of classic effects, signal processors and\n" "generators of mostly elementary and occasionally exotic nature." msgstr "" -#: gnu/packages/audio.scm:1094 +#: gnu/packages/audio.scm:1114 msgid "" "The infamous plugins are a collection of LV2 audio plugins for live\n" "performances. The plugins include a cellular automaton synthesizer, an\n" "envelope follower, distortion effects, tape effects and more." msgstr "" -#: gnu/packages/audio.scm:1129 +#: gnu/packages/audio.scm:1149 msgid "" "Snapcast is a multi-room client-server audio player. Clients are time\n" "synchronized with the server to play synced audio." msgstr "" -#: gnu/packages/audio.scm:1159 +#: gnu/packages/audio.scm:1179 msgid "This package provides Steve Harris's LADSPA plugins." msgstr "" -#: gnu/packages/audio.scm:1199 +#: gnu/packages/audio.scm:1219 msgid "" "Swh-plugins-lv2 is a collection of audio plugins in LV2 format. Plugin\n" "classes include: dynamics (compressor, limiter), time (delay, chorus,\n" @@ -281,13 +281,13 @@ msgid "" "emulation (valve, tape), bit fiddling (decimator, pointer-cast), etc." msgstr "" -#: gnu/packages/audio.scm:1233 +#: gnu/packages/audio.scm:1253 msgid "" "@code{libdjinterop} is a C++ library that allows access to database\n" "formats used to store information about DJ record libraries." msgstr "" -#: gnu/packages/audio.scm:1295 gnu/packages/audio.scm:1326 +#: gnu/packages/audio.scm:1315 gnu/packages/audio.scm:1346 msgid "" "Tao is a software package for sound synthesis using physical\n" "models. It provides a virtual acoustic material constructed from masses and\n" @@ -297,13 +297,13 @@ msgid "" "object library." msgstr "" -#: gnu/packages/audio.scm:1361 +#: gnu/packages/audio.scm:1381 msgid "" "Csound is a user-programmable and user-extensible sound processing\n" "language and software synthesizer." msgstr "" -#: gnu/packages/audio.scm:1388 +#: gnu/packages/audio.scm:1408 msgid "" "midicomp can manipulate SMF (Standard MIDI File) files. It can both\n" " read and write SMF files in 0 or format 1 and also read and write its own\n" @@ -312,20 +312,20 @@ msgid "" " language, and recompiled back into a binary SMF file." msgstr "" -#: gnu/packages/audio.scm:1435 +#: gnu/packages/audio.scm:1455 msgid "" "clalsadrv is a C++ wrapper around the ALSA API simplifying access to\n" "ALSA PCM devices." msgstr "" -#: gnu/packages/audio.scm:1474 +#: gnu/packages/audio.scm:1494 msgid "" "The AMB plugins are a set of LADSPA ambisonics plugins, mainly to be\n" "used within Ardour. Features include: mono and stereo to B-format panning,\n" "horizontal rotator, square, hexagon and cube decoders." msgstr "" -#: gnu/packages/audio.scm:1511 +#: gnu/packages/audio.scm:1531 msgid "" "This package provides various LADSPA plugins. @code{cs_chorus} and\n" "@code{cs_phaser} provide chorus and phaser effects, respectively;\n" @@ -335,13 +335,13 @@ msgid "" "the non-linear circuit elements of their original analog counterparts." msgstr "" -#: gnu/packages/audio.scm:1551 +#: gnu/packages/audio.scm:1571 msgid "" "This package provides a stereo reverb LADSPA plugin based on the\n" "well-known greverb." msgstr "" -#: gnu/packages/audio.scm:1587 +#: gnu/packages/audio.scm:1607 msgid "" "This package provides a LADSPA plugin for a four-band parametric\n" "equalizer. Each section has an active/bypass switch, frequency, bandwidth and\n" @@ -356,13 +356,13 @@ msgid "" "for stage use." msgstr "" -#: gnu/packages/audio.scm:1632 +#: gnu/packages/audio.scm:1652 msgid "" "This package provides a LADSPA plugin to manipulate the stereo width of\n" "audio signals." msgstr "" -#: gnu/packages/audio.scm:1669 +#: gnu/packages/audio.scm:1689 msgid "" "The @code{blvco} LADSPA plugin provides three anti-aliased oscillators:\n" "\n" @@ -377,17 +377,17 @@ msgid "" "output of analog synthesizers such as the Moog Voyager." msgstr "" -#: gnu/packages/audio.scm:1713 +#: gnu/packages/audio.scm:1733 msgid "" "This package provides a LADSPA plugin for a Wah effect with envelope\n" "follower." msgstr "" -#: gnu/packages/audio.scm:1749 +#: gnu/packages/audio.scm:1769 msgid "This package provides a LADSPA plugin for a stereo reverb effect." msgstr "" -#: gnu/packages/audio.scm:1791 +#: gnu/packages/audio.scm:1811 msgid "" "FluidSynth is a real-time software synthesizer based on the SoundFont 2\n" "specifications. FluidSynth reads and handles MIDI events from the MIDI input\n" @@ -395,21 +395,21 @@ msgid "" "also play midifiles using a Soundfont." msgstr "" -#: gnu/packages/audio.scm:1814 +#: gnu/packages/audio.scm:1834 msgid "FAAD2 is an MPEG-4 and MPEG-2 AAC decoder supporting LC, Main, LTP, SBR, -PS, and DAB+." msgstr "" -#: gnu/packages/audio.scm:1855 +#: gnu/packages/audio.scm:1875 msgid "Faust is a programming language for realtime audio signal processing." msgstr "" -#: gnu/packages/audio.scm:1919 +#: gnu/packages/audio.scm:1939 msgid "" "FreePats is a project to create a free and open set of GUS compatible\n" "patches that can be used with softsynths such as Timidity and WildMidi." msgstr "" -#: gnu/packages/audio.scm:1972 +#: gnu/packages/audio.scm:1992 msgid "" "Guitarix is a virtual guitar amplifier running JACK.\n" "Guitarix takes the signal from your guitar as a mono-signal from your sound\n" @@ -420,7 +420,7 @@ msgid "" "auto-wah." msgstr "" -#: gnu/packages/audio.scm:2028 +#: gnu/packages/audio.scm:2048 msgid "" "Rakarrack is a richly featured multi-effects processor emulating a\n" "guitar effects pedalboard. Effects include compressor, expander, noise gate,\n" @@ -432,14 +432,14 @@ msgid "" "well suited to all musical instruments and vocals." msgstr "" -#: gnu/packages/audio.scm:2084 +#: gnu/packages/audio.scm:2104 msgid "" "IR is a low-latency, real-time, high performance signal convolver\n" "especially for creating reverb effects. It supports impulse responses with 1,\n" "2 or 4 channels, in any soundfile format supported by libsndfile." msgstr "" -#: gnu/packages/audio.scm:2124 +#: gnu/packages/audio.scm:2144 msgid "" "JACK is a low-latency audio server. It can connect a number of\n" "different applications to an audio device, as well as allowing them to share\n" @@ -449,20 +449,20 @@ msgid "" "synchronous execution of all clients, and low latency operation." msgstr "" -#: gnu/packages/audio.scm:2220 +#: gnu/packages/audio.scm:2240 msgid "" "Jalv is a simple but fully featured LV2 host for JACK. It runs LV2\n" "plugins and exposes their ports as JACK ports, essentially making any LV2\n" "plugin function as a JACK application." msgstr "" -#: gnu/packages/audio.scm:2266 +#: gnu/packages/audio.scm:2286 msgid "" "LADSPA is a standard that allows software audio processors and effects\n" "to be plugged into a wide range of audio synthesis and recording packages." msgstr "" -#: gnu/packages/audio.scm:2318 +#: gnu/packages/audio.scm:2338 msgid "" "LASH is a session management system for audio applications. It allows\n" "you to save and restore audio sessions consisting of multiple interconneced\n" @@ -470,7 +470,7 @@ msgid "" "connections between them." msgstr "" -#: gnu/packages/audio.scm:2341 +#: gnu/packages/audio.scm:2361 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is\n" "designed to improve headphone listening of stereo audio records. Recommended\n" @@ -478,7 +478,7 @@ msgid "" "essential distortions." msgstr "" -#: gnu/packages/audio.scm:2364 +#: gnu/packages/audio.scm:2384 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and\n" "plugins is designed to improve headphone listening of stereo audio records.\n" @@ -487,13 +487,13 @@ msgid "" "with applications that support them (e.g. PulseAudio)." msgstr "" -#: gnu/packages/audio.scm:2390 +#: gnu/packages/audio.scm:2410 msgid "" "liblo is a lightweight library that provides an easy to use\n" "implementation of the Open Sound Control (@dfn{OSC}) protocol." msgstr "" -#: gnu/packages/audio.scm:2426 +#: gnu/packages/audio.scm:2446 msgid "" "RtAudio is a set of C++ classes that provides a common API for real-time\n" "audio input/output. It was designed with the following objectives:\n" @@ -512,13 +512,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/audio.scm:2462 +#: gnu/packages/audio.scm:2482 msgid "" "This package provides bindings for PortAudio v19, the\n" "cross-platform audio input/output stream library." msgstr "" -#: gnu/packages/audio.scm:2489 +#: gnu/packages/audio.scm:2509 msgid "" "Pyliblo is a Python wrapper for the liblo Open Sound Control (OSC)\n" "library. It supports almost the complete functionality of liblo, allowing you\n" @@ -526,7 +526,7 @@ msgid "" "included are the command line utilities @code{send_osc} and @code{dump_osc}." msgstr "" -#: gnu/packages/audio.scm:2526 +#: gnu/packages/audio.scm:2546 #, fuzzy msgid "" "This package provides python bindings for libsndfile based on\n" @@ -535,14 +535,14 @@ msgstr "" "Este paquete proporciona un diccionario para la biblioteca de\n" "comprobación ortográfica Hunspell." -#: gnu/packages/audio.scm:2544 +#: gnu/packages/audio.scm:2564 #, fuzzy msgid "" "This package provides a python API to read and write MIDI\n" "files." msgstr "Este paquete proporciona un diccionario para el comprobador ortográfico GNU Aspell." -#: gnu/packages/audio.scm:2581 +#: gnu/packages/audio.scm:2601 msgid "" "@command{audio-to-midi} converts audio files to multichannel\n" "MIDI files. It accomplishes this by performing FFTs on all channels of the\n" @@ -552,14 +552,14 @@ msgid "" "frequencies. This data is then formatted to MIDI and written to disk." msgstr "" -#: gnu/packages/audio.scm:2624 +#: gnu/packages/audio.scm:2644 msgid "" "Lilv is a C library to make the use of LV2 plugins as simple as possible\n" "for applications. Lilv is the successor to SLV2, rewritten to be\n" "significantly faster and have minimal dependencies." msgstr "" -#: gnu/packages/audio.scm:2652 +#: gnu/packages/audio.scm:2672 msgid "" "LV2 is an open specification for audio plugins and host applications.\n" "At its core, LV2 is a simple stable interface, accompanied by extensions which\n" @@ -567,22 +567,22 @@ msgid "" "software." msgstr "" -#: gnu/packages/audio.scm:2688 +#: gnu/packages/audio.scm:2708 msgid "An LV2 port of the mda Piano VSTi." msgstr "Un puerto LV2 del mda Piano VSTi." -#: gnu/packages/audio.scm:2702 +#: gnu/packages/audio.scm:2722 msgid "An LV2 port of the mda EPiano VSTi." msgstr "Un puerto LV2 del EPiano mda VSTi." -#: gnu/packages/audio.scm:2732 +#: gnu/packages/audio.scm:2752 msgid "" "The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and\n" "extensions into easy to use C++ classes. It is the successor of\n" "lv2-c++-tools." msgstr "" -#: gnu/packages/audio.scm:2774 +#: gnu/packages/audio.scm:2794 msgid "" "OpenAL provides capabilities for playing audio in a virtual 3D\n" "environment. Distance attenuation, doppler shift, and directional sound\n" @@ -592,29 +592,29 @@ msgid "" "buffers, and audio capture." msgstr "" -#: gnu/packages/audio.scm:2805 +#: gnu/packages/audio.scm:2825 msgid "freealut is the OpenAL Utility Toolkit." msgstr "" -#: gnu/packages/audio.scm:2837 +#: gnu/packages/audio.scm:2857 msgid "" "Patchage is a modular patch bay for audio and MIDI systems based on JACK\n" "and ALSA." msgstr "" -#: gnu/packages/audio.scm:2862 +#: gnu/packages/audio.scm:2882 msgid "" "The Portable C Audio Library (pcaudiolib) provides a C@tie{}API to\n" "different audio devices such as ALSA or PulseAudio." msgstr "" -#: gnu/packages/audio.scm:2889 +#: gnu/packages/audio.scm:2909 msgid "" "Control a Jack server. Allows you to plug various sources\n" "into various outputs and to start, stop and configure jackd" msgstr "" -#: gnu/packages/audio.scm:2921 +#: gnu/packages/audio.scm:2941 msgid "" "QJackRcd is a simple graphical stereo recorder for JACK\n" "supporting silence processing for automatic pause, file splitting, and\n" @@ -622,7 +622,7 @@ msgid "" msgstr "" # realtime también funciona en castellano -#: gnu/packages/audio.scm:3029 +#: gnu/packages/audio.scm:3049 msgid "" "SuperCollider is a synthesis engine (@code{scsynth} or\n" "@code{supernova}) and programming language (@code{sclang}). It can be used\n" @@ -634,20 +634,20 @@ msgid "" "using Guix System." msgstr "" -#: gnu/packages/audio.scm:3057 +#: gnu/packages/audio.scm:3077 #, fuzzy msgid "This package provides libshout plus IDJC extensions." msgstr "" "Este paquete proporciona un diccionario para la biblioteca de\n" "comprobación ortográfica Hunspell." -#: gnu/packages/audio.scm:3083 +#: gnu/packages/audio.scm:3103 msgid "" "Raul (Real-time Audio Utility Library) is a C++ utility library primarily\n" "aimed at audio/musical applications." msgstr "" -#: gnu/packages/audio.scm:3119 +#: gnu/packages/audio.scm:3139 msgid "" "This package contains the @command{resample} and\n" "@command{windowfilter} command line utilities. The @command{resample} command\n" @@ -656,26 +656,26 @@ msgid "" "filters using the so-called @emph{window method}." msgstr "" -#: gnu/packages/audio.scm:3160 +#: gnu/packages/audio.scm:3180 msgid "" "Rubber Band is a library and utility program that permits changing the\n" "tempo and pitch of an audio recording independently of one another." msgstr "" -#: gnu/packages/audio.scm:3184 +#: gnu/packages/audio.scm:3204 msgid "" "RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut, and API specific\n" "classes) that provide a common cross-platform API for realtime MIDI\n" "input/output." msgstr "" -#: gnu/packages/audio.scm:3210 +#: gnu/packages/audio.scm:3230 msgid "" "Sratom is a library for serialising LV2 atoms to/from RDF, particularly\n" "the Turtle syntax." msgstr "" -#: gnu/packages/audio.scm:3238 +#: gnu/packages/audio.scm:3258 msgid "" "Suil is a lightweight C library for loading and wrapping LV2 plugin UIs.\n" "\n" @@ -687,13 +687,13 @@ msgid "" "Suil currently supports every combination of Gtk, Qt, and X11." msgstr "" -#: gnu/packages/audio.scm:3270 +#: gnu/packages/audio.scm:3290 msgid "" "@code{libebur128} is a C library that implements the EBU R 128 standard\n" "for loudness normalisation." msgstr "" -#: gnu/packages/audio.scm:3324 +#: gnu/packages/audio.scm:3344 msgid "" "TiMidity++ is a software synthesizer. It can play MIDI files by\n" "converting them into PCM waveform data; give it a MIDI data along with digital\n" @@ -702,33 +702,33 @@ msgid "" "disks as various audio file formats." msgstr "" -#: gnu/packages/audio.scm:3364 +#: gnu/packages/audio.scm:3384 msgid "" "Vamp is an audio processing plugin system for plugins that extract\n" "descriptive information from audio data — typically referred to as audio\n" "analysis plugins or audio feature extraction plugins." msgstr "" -#: gnu/packages/audio.scm:3408 +#: gnu/packages/audio.scm:3428 msgid "" "SBSMS (Subband Sinusoidal Modeling Synthesis) is software for time\n" "stretching and pitch scaling of audio. This package contains the library." msgstr "" -#: gnu/packages/audio.scm:3435 +#: gnu/packages/audio.scm:3455 msgid "" "@code{libkeyfinder} is a small C++11 library for estimating the musical\n" "key of digital audio." msgstr "" -#: gnu/packages/audio.scm:3465 +#: gnu/packages/audio.scm:3485 msgid "" "WavPack is an audio compression format with lossless, lossy and hybrid\n" "compression modes. This package contains command-line programs and library to\n" "encode and decode wavpack files." msgstr "" -#: gnu/packages/audio.scm:3486 +#: gnu/packages/audio.scm:3506 msgid "" "Libmodplug renders mod music files as raw audio data, for playing or\n" "conversion. mod, .s3m, .it, .xm, and a number of lesser-known formats are\n" @@ -736,21 +736,21 @@ msgid "" "surround and reverb." msgstr "" -#: gnu/packages/audio.scm:3507 +#: gnu/packages/audio.scm:3527 msgid "" "Libxmp is a library that renders module files to PCM data. It supports\n" "over 90 mainstream and obscure module formats including Protracker (MOD),\n" "Scream Tracker 3 (S3M), Fast Tracker II (XM), and Impulse Tracker (IT)." msgstr "" -#: gnu/packages/audio.scm:3531 +#: gnu/packages/audio.scm:3551 msgid "" "Xmp is a portable module player that plays over 90 mainstream and\n" "obscure module formats, including Protracker MOD, Fasttracker II XM, Scream\n" "Tracker 3 S3M and Impulse Tracker IT files." msgstr "" -#: gnu/packages/audio.scm:3556 +#: gnu/packages/audio.scm:3576 msgid "" "SoundTouch is an audio processing library for changing the tempo, pitch\n" "and playback rates of audio streams or audio files. It is intended for\n" @@ -758,7 +758,7 @@ msgid "" "control functionality, or just for playing around with the sound effects." msgstr "" -#: gnu/packages/audio.scm:3595 +#: gnu/packages/audio.scm:3615 msgid "" "SoX (Sound eXchange) is a command line utility that can convert\n" "various formats of computer audio files to other formats. It can also\n" @@ -766,60 +766,60 @@ msgid "" "can play and record audio files." msgstr "" -#: gnu/packages/audio.scm:3620 +#: gnu/packages/audio.scm:3640 msgid "" "The SoX Resampler library (libsoxr) performs one-dimensional sample-rate\n" "conversion. It may be used, for example, to resample PCM-encoded audio." msgstr "" -#: gnu/packages/audio.scm:3643 +#: gnu/packages/audio.scm:3663 msgid "" "TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder based on\n" "tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code and\n" "portions of LAME." msgstr "" -#: gnu/packages/audio.scm:3699 +#: gnu/packages/audio.scm:3719 msgid "" "PortAudio is a portable C/C++ audio I/O library providing a simple API\n" "to record and/or play sound using a callback function or a blocking read/write\n" "interface." msgstr "" -#: gnu/packages/audio.scm:3728 +#: gnu/packages/audio.scm:3748 msgid "" "Qsynth is a GUI front-end application for the FluidSynth SoundFont\n" "synthesizer written in C++." msgstr "" -#: gnu/packages/audio.scm:3767 +#: gnu/packages/audio.scm:3787 msgid "" "RSound allows you to send audio from an application and transfer it\n" "directly to a different computer on your LAN network. It is an audio daemon\n" "with a much different focus than most other audio daemons." msgstr "" -#: gnu/packages/audio.scm:3797 +#: gnu/packages/audio.scm:3817 msgid "" "XJackFreak is an audio analysis and equalizing tool for the Jack Audio\n" "Connection Kit. It can display the FFT of any input, modify it and output the\n" "result." msgstr "" -#: gnu/packages/audio.scm:3849 +#: gnu/packages/audio.scm:3869 msgid "" "Zita convolver is a C++ library providing a real-time convolution\n" "engine." msgstr "" -#: gnu/packages/audio.scm:3901 +#: gnu/packages/audio.scm:3921 msgid "" "Libzita-resampler is a C++ library for resampling audio signals. It is\n" "designed to be used within a real-time processing context, to be fast, and to\n" "provide high-quality sample rate conversion." msgstr "" -#: gnu/packages/audio.scm:3947 +#: gnu/packages/audio.scm:3967 msgid "" "Zita-alsa-pcmi is a C++ wrapper around the ALSA API. It provides easy\n" "access to ALSA PCM devices, taking care of the many functions required to\n" @@ -827,7 +827,7 @@ msgid "" "point audio data." msgstr "" -#: gnu/packages/audio.scm:3971 +#: gnu/packages/audio.scm:3991 msgid "" "Cuetools is a set of programs that are useful for manipulating\n" "and using CUE sheet (cue) files and Table of Contents (toc) files. CUE and TOC\n" @@ -835,14 +835,14 @@ msgid "" "machine-readable ASCII format." msgstr "" -#: gnu/packages/audio.scm:4000 +#: gnu/packages/audio.scm:4020 msgid "" "mp3guessenc is a command line utility that tries to detect the\n" "encoder used for an MPEG Layer III (MP3) file, as well as scan any MPEG audio\n" "file (any layer) and print a lot of useful information." msgstr "" -#: gnu/packages/audio.scm:4021 +#: gnu/packages/audio.scm:4041 msgid "" "shntool is a multi-purpose WAVE data processing and reporting\n" "utility. File formats are abstracted from its core, so it can process any file\n" @@ -851,46 +851,46 @@ msgid "" "use them split WAVE data into multiple files." msgstr "" -#: gnu/packages/audio.scm:4061 +#: gnu/packages/audio.scm:4081 msgid "" "Dcadec is a DTS Coherent Acoustics surround sound decoder\n" "with support for HD extensions." msgstr "" -#: gnu/packages/audio.scm:4098 +#: gnu/packages/audio.scm:4118 msgid "" "BS1770GAIN is a loudness scanner compliant with ITU-R BS.1770 and its\n" "flavors EBU R128, ATSC A/85, and ReplayGain 2.0. It helps normalizing the\n" "loudness of audio and video files to the same level." msgstr "" -#: gnu/packages/audio.scm:4130 +#: gnu/packages/audio.scm:4150 msgid "" "An easy to use audio filtering library made from webrtc\n" "code, used in @code{libtoxcore}." msgstr "" -#: gnu/packages/audio.scm:4183 +#: gnu/packages/audio.scm:4203 msgid "" "This C library provides an encoder and a decoder for the GSM\n" "06.10 RPE-LTP lossy speech compression algorithm." msgstr "" -#: gnu/packages/audio.scm:4206 +#: gnu/packages/audio.scm:4226 msgid "" "This package contains wrappers for accessing the ALSA API from Python.\n" "It is currently fairly complete for PCM devices, and has some support for\n" "mixers." msgstr "" -#: gnu/packages/audio.scm:4230 +#: gnu/packages/audio.scm:4250 msgid "" "This package provides an encoder for the LDAC\n" "high-resolution Bluetooth audio streaming codec for streaming at up to 990\n" "kbps at 24 bit/96 kHz." msgstr "" -#: gnu/packages/audio.scm:4274 +#: gnu/packages/audio.scm:4294 msgid "" "This project is a rebirth of a direct integration between\n" "Bluez and ALSA. Since Bluez >= 5, the built-in integration has been removed\n" @@ -903,14 +903,14 @@ msgid "" "on the ALSA software PCM plugin." msgstr "" -#: gnu/packages/audio.scm:4340 +#: gnu/packages/audio.scm:4360 msgid "" "Snd is a sound editor modelled loosely after Emacs. It can be\n" "customized and extended using either the s7 Scheme implementation (included in\n" "the Snd sources), Ruby, or Forth." msgstr "" -#: gnu/packages/audio.scm:4369 +#: gnu/packages/audio.scm:4389 msgid "" "Noise Repellent is an LV2 plugin to reduce noise. It has\n" "the following features:\n" @@ -930,31 +930,31 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/audio.scm:4436 +#: gnu/packages/audio.scm:4456 msgid "" "RNNoise is a library that uses deep learning to apply\n" "noise suppression to audio sources with voice presence. This package provides\n" "an LV2 audio plugin." msgstr "" -#: gnu/packages/audio.scm:4480 +#: gnu/packages/audio.scm:4500 msgid "" "@code{cli-visualizer} displays fast-Fourier\n" "transforms (FFTs) of the sound being played, as well as other graphical\n" "representations." msgstr "" -#: gnu/packages/audio.scm:4530 +#: gnu/packages/audio.scm:4550 msgid "" "C.A.V.A. is a bar audio spectrum visualizer for the terminal\n" "using ALSA, MPD, PulseAudio, or a FIFO buffer as its input." msgstr "" -#: gnu/packages/audio.scm:4564 +#: gnu/packages/audio.scm:4584 msgid "Fluid-3 is Frank Wen's pro-quality GM soundfont." msgstr "" -#: gnu/packages/audio.scm:4586 +#: gnu/packages/audio.scm:4606 msgid "" "FDK is a library for encoding and decoding Advanced Audio\n" "Coding (AAC) format audio, developed by Fraunhofer IIS, and included as part of\n" @@ -965,20 +965,20 @@ msgid "" " surround)." msgstr "" -#: gnu/packages/audio.scm:4626 +#: gnu/packages/audio.scm:4646 msgid "" "OpenShot Audio Library (libopenshot-audio) allows\n" "high-quality editing and playback of audio, and is based on the JUCE\n" "library." msgstr "" -#: gnu/packages/audio.scm:4652 +#: gnu/packages/audio.scm:4672 msgid "" "FAudio is an XAudio reimplementation that focuses solely on\n" "developing fully accurate DirectX Audio runtime libraries." msgstr "" -#: gnu/packages/audio.scm:4679 +#: gnu/packages/audio.scm:4699 msgid "" "Gnaural is a programmable auditory binaural beat synthesizer\n" "intended to be used for brainwave entrainment. Gnaural supports creation of\n" @@ -987,20 +987,20 @@ msgid "" "other Gnaural instances, allowing synchronous sessions between many users." msgstr "" -#: gnu/packages/audio.scm:4714 +#: gnu/packages/audio.scm:4734 msgid "" "DarkIce is a live audio streamer. It takes audio input from\n" "a sound card, encodes it into Ogg Vorbis and/or mp3, and sends the audio\n" "stream to one or more IceCast and/or ShoutCast servers." msgstr "" -#: gnu/packages/audio.scm:4738 +#: gnu/packages/audio.scm:4758 msgid "" "Libltc is a POSIX-C Library for handling\n" "@dfn{Linear/Longitudinal Time Code} (LTC) data." msgstr "" -#: gnu/packages/audio.scm:4772 +#: gnu/packages/audio.scm:4792 msgid "" "TTA performs lossless compression on multichannel 8,16 and 24 bits\n" "data of the Wav audio files. Being lossless means that no data-\n" @@ -1011,14 +1011,14 @@ msgid "" "supports both of ID3v1/v2 and APEv2 tags." msgstr "" -#: gnu/packages/audio.scm:4805 +#: gnu/packages/audio.scm:4825 msgid "" "@code{libsoundio} is a C library providing audio input and\n" "output. The API is suitable for real-time software such as digital audio\n" "workstations as well as consumer software such as music players." msgstr "" -#: gnu/packages/audio.scm:4831 +#: gnu/packages/audio.scm:4851 msgid "" "Redkite is a small GUI toolkit developed in C++17 and\n" "inspired from other well known GUI toolkits such as Qt and GTK. It is\n" @@ -1027,7 +1027,7 @@ msgid "" "as is the case with audio plugins." msgstr "" -#: gnu/packages/audio.scm:4903 +#: gnu/packages/audio.scm:4923 msgid "" "Carla is a modular audio plugin host, with features like\n" "transport control, automation of parameters via MIDI CC and remote control\n" @@ -1036,7 +1036,7 @@ msgid "" "default and preferred audio driver but also supports native drivers like ALSA." msgstr "" -#: gnu/packages/audio.scm:4939 +#: gnu/packages/audio.scm:4959 msgid "" "Ecasound is a software package designed for multitrack audio\n" "processing. It can be used for simple tasks like audio playback, recording and\n" @@ -1048,28 +1048,28 @@ msgid "" "in the package." msgstr "" -#: gnu/packages/audio.scm:4977 +#: gnu/packages/audio.scm:4997 msgid "" "libaudec is a wrapper library over ffmpeg, sndfile and\n" "libsamplerate for reading and resampling audio files, based on Robin Gareus'\n" "@code{audio_decoder} code." msgstr "" -#: gnu/packages/audio.scm:5007 +#: gnu/packages/audio.scm:5027 msgid "" "lv2lint is an LV2 lint-like tool that checks whether a\n" "given plugin and its UI(s) match up with the provided metadata and adhere\n" "to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5041 +#: gnu/packages/audio.scm:5061 msgid "" "lv2toweb allows the user to create an xhtml page with information\n" "about the given LV2 plugin, provided that the plugin and its UI(s) match up\n" "with the provided metadata and adhere to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5069 +#: gnu/packages/audio.scm:5089 msgid "" "ZToolkit (Ztk) is a cross-platform GUI toolkit heavily\n" "inspired by GTK. It handles events and low level drawing on behalf of\n" @@ -1079,7 +1079,7 @@ msgid "" "minimum." msgstr "" -#: gnu/packages/audio.scm:5102 +#: gnu/packages/audio.scm:5122 msgid "" "libInstPatch is a library for processing digital sample based MIDI\n" "instrument \"patch\" files. The types of files libInstPatch supports are used\n" @@ -1088,28 +1088,28 @@ msgid "" "edited, converted, compressed and saved." msgstr "" -#: gnu/packages/audio.scm:5149 +#: gnu/packages/audio.scm:5169 msgid "" "The LSP DSP library provides a set of functions that perform\n" "SIMD-optimized computing on several hardware architectures. All functions\n" "currently operate on IEEE-754 single-precision floating-point numbers." msgstr "" -#: gnu/packages/audio.scm:5180 +#: gnu/packages/audio.scm:5200 msgid "" "Codec 2 is a speech codec designed for communications quality speech\n" "between 700 and 3200 bit/s. The main application is low bandwidth HF/VHF\n" "digital radio." msgstr "" -#: gnu/packages/audio.scm:5206 +#: gnu/packages/audio.scm:5226 msgid "" "The mbelib library provides support for the 7200x4400 bit/s codec used\n" "in P25 Phase 1, the 7100x4400 bit/s codec used in ProVoice and the @emph{Half\n" "Rate} 3600x2250 bit/s vocoder used in various radio systems." msgstr "" -#: gnu/packages/audio.scm:5299 +#: gnu/packages/audio.scm:5319 msgid "" "Ableton Link is a C++ library that synchronizes musical beat, tempo, and phase\n" "across multiple applications running on one or more devices. Applications on devices\n" @@ -1118,20 +1118,20 @@ msgid "" "while still staying in time." msgstr "" -#: gnu/packages/audio.scm:5360 +#: gnu/packages/audio.scm:5380 msgid "" "Butt is a tool to stream audio to a ShoutCast or\n" "Icecast server." msgstr "" -#: gnu/packages/audio.scm:5406 +#: gnu/packages/audio.scm:5426 msgid "" "siggen is a set of tools for imitating a laboratory signal\n" "generator, generating audio signals out of Linux's /dev/dsp audio\n" "device. There is support for mono and/or stereo and 8 or 16 bit samples." msgstr "" -#: gnu/packages/audio.scm:5453 +#: gnu/packages/audio.scm:5473 msgid "" "@code{python-pysox} is a wrapper around the @command{sox}\n" "command line tool. The API offers @code{Transformer} and @code{Combiner}\n" @@ -1141,7 +1141,7 @@ msgid "" "and much more." msgstr "" -#: gnu/packages/audio.scm:5492 +#: gnu/packages/audio.scm:5512 msgid "" "@code{python-resampy} implements the band-limited sinc interpolation\n" "method for sampling rate conversion as described by Julius O. Smith at the\n" @@ -1149,34 +1149,34 @@ msgid "" "Home Page}." msgstr "" -#: gnu/packages/audio.scm:5528 +#: gnu/packages/audio.scm:5548 msgid "" "@code{librosa} is a python package for music and audio analysis. It\n" "provides the building blocks necessary to create music information retrieval\n" "systems." msgstr "" -#: gnu/packages/audio.scm:5561 +#: gnu/packages/audio.scm:5581 msgid "" "MDA-LV2 is an LV2 port of the MDA plugins. It includes effects and a few\n" "instrument plugins." msgstr "" -#: gnu/packages/audio.scm:5593 +#: gnu/packages/audio.scm:5613 msgid "" "The Odio SACD shared library is a decoding engine which takes a Super\n" "Audio CD source and extracts a 24-bit high resolution WAV file. It handles\n" "both DST and DSD streams." msgstr "" -#: gnu/packages/audio.scm:5618 +#: gnu/packages/audio.scm:5638 msgid "" "Odio SACD is a command-line application which takes a Super Audio CD\n" "source and extracts a 24-bit high resolution WAV file. It handles both DST\n" "and DSD streams." msgstr "" -#: gnu/packages/backup.scm:155 +#: gnu/packages/backup.scm:165 msgid "" "Duplicity backs up directories by producing encrypted tar-format volumes\n" "and uploading them to a remote or local file server. Because duplicity uses\n" @@ -1186,7 +1186,7 @@ msgid "" "spying and/or modification by the server." msgstr "" -#: gnu/packages/backup.scm:180 +#: gnu/packages/backup.scm:190 msgid "" "Par2cmdline uses Reed-Solomon error-correcting codes to\n" "generate and verify PAR2 recovery files. These files can be distributed\n" @@ -1198,7 +1198,7 @@ msgid "" "can even repair them." msgstr "" -#: gnu/packages/backup.scm:219 +#: gnu/packages/backup.scm:229 msgid "" "Hdup2 is a backup utility, its aim is to make backup really simple. The\n" "backup scheduling is done by means of a cron job. It supports an\n" @@ -1206,7 +1206,7 @@ msgid "" "backups (called chunks) to allow easy burning to CD/DVD." msgstr "" -#: gnu/packages/backup.scm:316 +#: gnu/packages/backup.scm:326 msgid "" "Libarchive provides a flexible interface for reading and writing\n" "archives in various formats such as tar and cpio. Libarchive also supports\n" @@ -1217,7 +1217,7 @@ msgid "" "random access nor for in-place modification." msgstr "" -#: gnu/packages/backup.scm:380 +#: gnu/packages/backup.scm:390 msgid "" "Rdup is a utility inspired by rsync and the plan9 way of doing backups.\n" "Rdup itself does not backup anything, it only print a list of absolute\n" @@ -1225,7 +1225,7 @@ msgid "" "list and implement the backup strategy." msgstr "" -#: gnu/packages/backup.scm:419 +#: gnu/packages/backup.scm:429 msgid "" "SnapRAID backs up files stored across multiple storage devices, such as\n" "disk arrays, in an efficient way reminiscent of its namesake @acronym{RAID,\n" @@ -1251,7 +1251,7 @@ msgid "" "remain fully idle, saving power and producing less noise." msgstr "" -#: gnu/packages/backup.scm:469 +#: gnu/packages/backup.scm:479 msgid "" "Btar is a tar-compatible archiver which allows arbitrary compression and\n" "ciphering, redundancy, differential backup, indexed extraction, multicore\n" @@ -1259,7 +1259,7 @@ msgid "" "errors." msgstr "" -#: gnu/packages/backup.scm:496 +#: gnu/packages/backup.scm:506 msgid "" "Rdiff-backup backs up one directory to another, possibly over a network.\n" "The target directory ends up a copy of the source directory, but extra reverse\n" @@ -1274,7 +1274,7 @@ msgid "" "rdiff-backup is easy to use and settings have sensible defaults." msgstr "" -#: gnu/packages/backup.scm:532 +#: gnu/packages/backup.scm:542 msgid "" "rsnapshot is a file system snapshot utility based on rsync.\n" "rsnapshot makes it easy to make periodic snapshots of local machines, and\n" @@ -1282,7 +1282,7 @@ msgid "" "rsnapshot uses hard links to deduplicate identical files." msgstr "" -#: gnu/packages/backup.scm:610 +#: gnu/packages/backup.scm:620 msgid "" "Libchop is a set of utilities and library for data backup and\n" "distributed storage. Its main application is @command{chop-backup}, an\n" @@ -1293,17 +1293,17 @@ msgid "" "detection, and lossless compression." msgstr "" -#: gnu/packages/backup.scm:740 +#: gnu/packages/backup.scm:750 msgid "" "Borg is a deduplicating backup program. Optionally, it\n" "supports compression and authenticated encryption. The main goal of Borg is to\n" "provide an efficient and secure way to backup data. The data deduplication\n" "technique used makes Borg suitable for daily backups since only changes are\n" -"stored. The authenticated encryption technique makes it suitable for backups\n" -"to not fully trusted targets. Borg is a fork of Attic." +"stored. The authenticated encryption technique makes it suitable for\n" +"storing backups on untrusted computers." msgstr "" -#: gnu/packages/backup.scm:771 +#: gnu/packages/backup.scm:781 msgid "" "wimlib is a C library and set of command-line utilities for\n" "creating, modifying, extracting, and mounting archives in the Windows Imaging\n" @@ -1311,14 +1311,14 @@ msgid "" "NTFS volumes using @code{ntfs-3g}, preserving NTFS-specific attributes." msgstr "" -#: gnu/packages/backup.scm:879 +#: gnu/packages/backup.scm:889 msgid "" "With dirvish you can maintain a set of complete images of your\n" "file systems with unattended creation and expiration. A dirvish backup vault\n" "is like a time machine for your data." msgstr "" -#: gnu/packages/backup.scm:974 +#: gnu/packages/backup.scm:984 msgid "" "Restic is a program that does backups right and was designed\n" "with the following principles in mind:\n" @@ -1350,7 +1350,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/backup.scm:1025 +#: gnu/packages/backup.scm:1035 msgid "" "ZBackup is a globally-deduplicating backup tool, based on the\n" "ideas found in Rsync. Feed a large @file{.tar} into it, and it will\n" @@ -1363,7 +1363,7 @@ msgid "" "is format-agnostic, so you can feed virtually any files to it." msgstr "" -#: gnu/packages/backup.scm:1061 +#: gnu/packages/backup.scm:1071 msgid "" "Dump examines files in a file system, determines which ones\n" "need to be backed up, and copies those files to a specified disk, tape or\n" @@ -1374,14 +1374,44 @@ msgid "" "interactive mode." msgstr "" -#: gnu/packages/backup.scm:1105 +#: gnu/packages/backup.scm:1131 +msgid "" +"Btrbk is a backup tool for Btrfs subvolumes, taking\n" +"advantage of Btrfs specific capabilities to create atomic snapshots and\n" +"transfer them incrementally to your backup locations. The source and target\n" +"locations are specified in a config file, which allows easily configuring\n" +"simple scenarios like e.g. a @i{laptop with locally attached backup disks}, as\n" +"well as more complex ones, e.g. a @i{server receiving backups from several\n" +"hosts via SSH, with different retention policy}. It has features such as:\n" +"@itemize\n" +"@item atomic snapshots\n" +"@item incremental backups\n" +"@item flexible retention policy\n" +"@item backups to multiple destinations\n" +"@item transfer via SSH\n" +"@item resume backups (for removable and mobile devices)\n" +"@item archive to offline storage\n" +"@item encrypted backups to non-btrfs storage\n" +"@item wildcard subvolumes (useful for Docker and LXC containers)\n" +"@item transaction log\n" +"@item comprehensive list and statistics output\n" +"@item resolve and trace Btrfs parent-child and received-from relationships\n" +"@item list file changes between backups\n" +"@item calculate accurate disk space usage based on block regions.\n" +"@end itemize\n" +"Btrbk is designed to run as a cron job for triggering periodic snapshots and\n" +"backups, as well as from the command line (e.g. for instantly creating\n" +"additional snapshots)." +msgstr "" + +#: gnu/packages/backup.scm:1194 msgid "" "Burp is a network backup and restore program. It attempts\n" "to reduce network traffic and the amount of space that is used by each\n" "backup." msgstr "" -#: gnu/packages/backup.scm:1136 +#: gnu/packages/backup.scm:1225 msgid "" "Disarchive can disassemble software archives into data\n" "and metadata. The goal is to create a small amount of metadata that\n" @@ -1391,7 +1421,7 @@ msgid "" "compression parameters used by Gzip." msgstr "" -#: gnu/packages/backup.scm:1181 +#: gnu/packages/backup.scm:1270 msgid "" "borgmatic is simple, configuration-driven backup software for servers\n" "and workstations. Protect your files with client-side encryption. Backup\n" @@ -1399,6 +1429,14 @@ msgid "" "borgmatic is powered by borg." msgstr "" +#: gnu/packages/backup.scm:1330 +msgid "" +"Vorta is a graphical backup client based on the Borg backup\n" +"tool. It supports the use of remote backup repositories. It can perform\n" +"scheduled backups, and has a graphical tool for browsing and extracting the Borg\n" +"archives." +msgstr "" + #: gnu/packages/base.scm:98 msgid "" "GNU Hello prints the message \"Hello, world!\" and then exits. It\n" @@ -1487,7 +1525,7 @@ msgid "" "change. GNU make offers many powerful extensions over the standard utility." msgstr "" -#: gnu/packages/base.scm:550 +#: gnu/packages/base.scm:558 msgid "" "GNU Binutils is a collection of tools for working with binary files.\n" "Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler.\n" @@ -1497,14 +1535,14 @@ msgid "" "included." msgstr "" -#: gnu/packages/base.scm:694 +#: gnu/packages/base.scm:685 msgid "" "The linker wrapper (or @code{ld-wrapper}) wraps the linker to add any\n" "missing @code{-rpath} flags, and to detect any misuse of libraries outside of\n" "the store." msgstr "" -#: gnu/packages/base.scm:930 +#: gnu/packages/base.scm:921 msgid "" "Any Unix-like operating system needs a C library: the library which\n" "defines the \"system calls\" and other basic facilities such as open, malloc,\n" @@ -1514,21 +1552,21 @@ msgid "" "with the Linux kernel." msgstr "" -#: gnu/packages/base.scm:1057 +#: gnu/packages/base.scm:1048 msgid "" "This package provides all the locales supported by the GNU C Library,\n" "more than 400 in total. To use them set the @code{LOCPATH} environment variable\n" "to the @code{share/locale} sub-directory of this package." msgstr "" -#: gnu/packages/base.scm:1206 +#: gnu/packages/base.scm:1198 msgid "" "The which program finds the location of executables in PATH, with a\n" "variety of options. It is an alternative to the shell \"type\" built-in\n" "command." msgstr "" -#: gnu/packages/base.scm:1329 +#: gnu/packages/base.scm:1321 msgid "" "The Time Zone Database (often called tz or zoneinfo)\n" "contains code and data that represent the history of local time for many\n" @@ -1537,14 +1575,14 @@ msgid "" "and daylight-saving rules." msgstr "" -#: gnu/packages/base.scm:1367 +#: gnu/packages/base.scm:1359 msgid "" "libiconv provides an implementation of the iconv function for systems\n" "that lack it. iconv is used to convert between character encodings in a\n" "program. It supports a wide variety of different encodings." msgstr "" -#: gnu/packages/bittorrent.scm:131 +#: gnu/packages/bittorrent.scm:135 msgid "" "Transmission is a BitTorrent client that comes with graphical,\n" "textual, and Web user interfaces. Transmission also has a daemon for\n" @@ -1552,54 +1590,54 @@ msgid "" "DHT, µTP, PEX and Magnet Links." msgstr "" -#: gnu/packages/bittorrent.scm:165 +#: gnu/packages/bittorrent.scm:169 msgid "" "transmission-remote-gtk is a GTK client for remote management\n" "of the Transmission BitTorrent client, using its HTTP RPC protocol." msgstr "" -#: gnu/packages/bittorrent.scm:187 +#: gnu/packages/bittorrent.scm:191 msgid "" "LibTorrent is a BitTorrent library used by and developed in parallel\n" "with the BitTorrent client rtorrent. It is written in C++ with emphasis on\n" "speed and efficiency." msgstr "" -#: gnu/packages/bittorrent.scm:215 +#: gnu/packages/bittorrent.scm:219 msgid "" "rTorrent is a BitTorrent client with an ncurses interface. It supports\n" "full encryption, DHT, PEX, and Magnet Links. It can also be controlled via\n" "XML-RPC over SCGI." msgstr "" -#: gnu/packages/bittorrent.scm:249 +#: gnu/packages/bittorrent.scm:253 msgid "" "Tremc is a console client, with a curses interface, for the\n" "Transmission BitTorrent daemon." msgstr "" -#: gnu/packages/bittorrent.scm:290 +#: gnu/packages/bittorrent.scm:294 msgid "" "Transmission-remote-cli is a console client, with a curses\n" "interface, for the Transmission BitTorrent daemon. This package is no longer\n" "maintained upstream." msgstr "" -#: gnu/packages/bittorrent.scm:340 +#: gnu/packages/bittorrent.scm:345 msgid "" "Aria2 is a lightweight, multi-protocol & multi-source command-line\n" "download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and Metalink.\n" "Aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces." msgstr "" -#: gnu/packages/bittorrent.scm:374 +#: gnu/packages/bittorrent.scm:381 msgid "" "uGet is portable download manager with GTK+ interface supporting\n" "HTTP, HTTPS, BitTorrent and Metalink, supporting multi-connection\n" "downloads, download scheduling, download rate limiting." msgstr "" -#: gnu/packages/bittorrent.scm:406 +#: gnu/packages/bittorrent.scm:413 msgid "" "mktorrent is a simple command-line utility to create BitTorrent\n" "@dfn{metainfo} files, often known simply as @dfn{torrents}, from both single\n" @@ -1609,14 +1647,14 @@ msgid "" "and will take advantage of multiple processor cores where possible." msgstr "" -#: gnu/packages/bittorrent.scm:457 +#: gnu/packages/bittorrent.scm:472 msgid "" "libtorrent-rasterbar is a feature-complete C++ BitTorrent implementation\n" "focusing on efficiency and scalability. It runs on embedded devices as well as\n" "desktops." msgstr "" -#: gnu/packages/bittorrent.scm:508 +#: gnu/packages/bittorrent.scm:523 msgid "" "qBittorrent is a BitTorrent client programmed in C++/Qt that uses\n" "libtorrent (sometimes called libtorrent-rasterbar) by Arvid Norberg.\n" @@ -1626,7 +1664,7 @@ msgid "" "features." msgstr "" -#: gnu/packages/bittorrent.scm:580 +#: gnu/packages/bittorrent.scm:604 msgid "" "Deluge contains the common features to BitTorrent clients such as\n" "Protocol Encryption, DHT, Local Peer Discovery (LSD), Peer Exchange\n" @@ -1938,7 +1976,16 @@ msgid "" "functionality in a C++ iostream." msgstr "" -#: gnu/packages/compression.scm:1443 +#: gnu/packages/compression.scm:1416 +msgid "" +"Zopfli Compression Algorithm is a compression library\n" +"programmed in C to perform very good, but slow, deflate or zlib compression.\n" +"ZopfliCompress supports the deflate, gzip and zlib output formats. This\n" +"library can only compress, not decompress; existing zlib or deflate libraries\n" +"can decompress the data." +msgstr "" + +#: gnu/packages/compression.scm:1469 msgid "" "ZPAQ is a command-line archiver for realistic situations with\n" "many duplicate and already compressed files. It backs up only those files\n" @@ -1952,13 +1999,13 @@ msgid "" "or junctions, and always follows hard links." msgstr "" -#: gnu/packages/compression.scm:1545 +#: gnu/packages/compression.scm:1571 msgid "" "@command{unshield} is a tool and library for extracting @file{.cab}\n" " archives from InstallShield installers." msgstr "" -#: gnu/packages/compression.scm:1624 +#: gnu/packages/compression.scm:1650 msgid "" "Zstandard (@command{zstd}) is a lossless compression algorithm\n" "that combines very fast operation with a compression ratio comparable to that of\n" @@ -1968,7 +2015,7 @@ msgid "" "speed." msgstr "" -#: gnu/packages/compression.scm:1672 +#: gnu/packages/compression.scm:1698 msgid "" "Parallel Zstandard (PZstandard or @command{pzstd}) is a\n" "multi-threaded implementation of the @uref{http://zstd.net/, Zstandard\n" @@ -1981,7 +2028,7 @@ msgid "" "the actual decompression, the other input and output." msgstr "" -#: gnu/packages/compression.scm:1712 +#: gnu/packages/compression.scm:1738 msgid "" "Zip is a compression and file packaging/archive utility. Zip is useful\n" "for packaging a set of files for distribution, for archiving files, and for\n" @@ -1996,7 +2043,7 @@ msgid "" "Compression ratios of 2:1 to 3:1 are common for text files." msgstr "" -#: gnu/packages/compression.scm:1801 +#: gnu/packages/compression.scm:1827 msgid "" "UnZip is an extraction utility for archives compressed in .zip format,\n" "also called \"zipfiles\".\n" @@ -2007,7 +2054,7 @@ msgid "" "recreates the stored directory structure by default." msgstr "" -#: gnu/packages/compression.scm:1853 +#: gnu/packages/compression.scm:1879 msgid "" "Ziptime helps make @file{.zip} archives reproducible by replacing\n" "timestamps in the file header with a fixed time (1 January 2008).\n" @@ -2016,11 +2063,11 @@ msgid "" "@command{zip} to prevent it from storing the ``universal time'' field." msgstr "" -#: gnu/packages/compression.scm:1880 +#: gnu/packages/compression.scm:1906 msgid "ZZipLib is a library based on zlib for accessing zip files." msgstr "" -#: gnu/packages/compression.scm:1904 +#: gnu/packages/compression.scm:1930 msgid "" "Libzip is a C library for reading, creating, and modifying\n" "zip archives. Files can be added from data buffers, files, or compressed data\n" @@ -2028,7 +2075,7 @@ msgid "" "archive can be reverted." msgstr "" -#: gnu/packages/compression.scm:1937 +#: gnu/packages/compression.scm:1963 msgid "" "The main command is @command{aunpack} which extracts files\n" "from an archive. The other commands provided are @command{apack} (to create\n" @@ -2038,7 +2085,7 @@ msgid "" "of archives." msgstr "" -#: gnu/packages/compression.scm:1963 +#: gnu/packages/compression.scm:1989 msgid "" "Lunzip is a decompressor for files in the lzip compression format (.lz),\n" "written as a single small C tool with no dependencies. This makes it\n" @@ -2048,7 +2095,7 @@ msgid "" "Lunzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:1990 +#: gnu/packages/compression.scm:2016 msgid "" "Clzip is a compressor and decompressor for files in the lzip compression\n" "format (.lz), written as a single small C tool with no dependencies. This makes\n" @@ -2057,7 +2104,7 @@ msgid "" "Clzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:2018 +#: gnu/packages/compression.scm:2044 msgid "" "Lzlib is a C library for in-memory LZMA compression and decompression in\n" "the lzip format. It supports integrity checking of the decompressed data, and\n" @@ -2065,7 +2112,7 @@ msgid "" "corrupted input." msgstr "" -#: gnu/packages/compression.scm:2042 +#: gnu/packages/compression.scm:2068 msgid "" "Plzip is a massively parallel (multi-threaded) lossless data compressor\n" "and decompressor that uses the lzip file format (.lz). Files produced by plzip\n" @@ -2079,13 +2126,13 @@ msgid "" "single-member files which can't be decompressed in parallel." msgstr "" -#: gnu/packages/compression.scm:2074 +#: gnu/packages/compression.scm:2100 msgid "" "innoextract allows extracting Inno Setup installers under\n" "non-Windows systems without running the actual installer using wine." msgstr "" -#: gnu/packages/compression.scm:2096 +#: gnu/packages/compression.scm:2122 msgid "" "ISA-L is a collection of optimized low-level functions\n" "targeting storage applications. ISA-L includes:\n" @@ -2103,7 +2150,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/compression.scm:2156 +#: gnu/packages/compression.scm:2182 msgid "" "This package provides the reference implementation of Brotli,\n" "a generic-purpose lossless compression algorithm that compresses data using a\n" @@ -2115,14 +2162,14 @@ msgid "" "The specification of the Brotli Compressed Data Format is defined in RFC 7932." msgstr "" -#: gnu/packages/compression.scm:2176 +#: gnu/packages/compression.scm:2202 #, fuzzy msgid "" "This package provides a Python interface to the @code{brotli}\n" "package, an implementation of the Brotli lossless compression algorithm." msgstr "Implementación del algoritmo de compresión Brotli" -#: gnu/packages/compression.scm:2200 +#: gnu/packages/compression.scm:2226 msgid "" "UCL implements a number of compression algorithms that\n" "achieve an excellent compression ratio while allowing fast decompression.\n" @@ -2132,7 +2179,7 @@ msgid "" "decompression is a little bit slower." msgstr "" -#: gnu/packages/compression.scm:2248 +#: gnu/packages/compression.scm:2274 msgid "" "The Ultimate Packer for eXecutables (UPX) is an executable file\n" "compressor. UPX typically reduces the file size of programs and shared\n" @@ -2140,7 +2187,7 @@ msgid "" "download times, and other distribution and storage costs." msgstr "" -#: gnu/packages/compression.scm:2276 +#: gnu/packages/compression.scm:2302 msgid "" "QuaZIP is a simple C++ wrapper over Gilles Vollant's\n" "ZIP/UNZIP package that can be used to access ZIP archives. It uses\n" @@ -2154,7 +2201,7 @@ msgid "" "reading from and writing to ZIP archives." msgstr "" -#: gnu/packages/compression.scm:2335 +#: gnu/packages/compression.scm:2361 msgid "" "The zchunk compressed file format allows splitting a file\n" "into independent chunks. This makes it possible to retrieve only changed\n" @@ -2177,7 +2224,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/compression.scm:2391 +#: gnu/packages/compression.scm:2417 msgid "" "Zutils is a collection of utilities able to process any combination of\n" "compressed and uncompressed files transparently. If any given file, including\n" @@ -2194,14 +2241,14 @@ msgid "" "at run time, and must be installed separately." msgstr "" -#: gnu/packages/compression.scm:2449 +#: gnu/packages/compression.scm:2475 msgid "" "This package provides a script to unpack self-extracting\n" "archives generated by @command{makeself} or @command{mojo} without running the\n" "possibly untrusted extraction shell script." msgstr "" -#: gnu/packages/compression.scm:2477 +#: gnu/packages/compression.scm:2503 msgid "" "(N)compress provides the original compress and uncompress\n" "programs that used to be the de facto UNIX standard for compressing and\n" @@ -2209,7 +2256,7 @@ msgid "" "file compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2504 +#: gnu/packages/compression.scm:2530 msgid "" "Xarchiver is a front-end to various command line archiving\n" "tools. It uses GTK+ tool-kit and is designed to be desktop-environment\n" @@ -2218,13 +2265,13 @@ msgid "" "archiver is not installed." msgstr "" -#: gnu/packages/compression.scm:2541 +#: gnu/packages/compression.scm:2567 msgid "" "Archive huge numbers of files, or split massive tar archives into smaller\n" "chunks." msgstr "" -#: gnu/packages/compression.scm:2574 +#: gnu/packages/compression.scm:2600 msgid "" "Blosc is a high performance compressor optimized for binary data. It has\n" "been designed to transmit data to the processor cache faster than the\n" @@ -2234,14 +2281,14 @@ msgid "" "computations." msgstr "" -#: gnu/packages/compression.scm:2612 +#: gnu/packages/compression.scm:2638 msgid "" "ECM is a utility that converts ECM files, i.e., CD data files\n" "with their error correction data losslessly rearranged for better compression,\n" "to their original, binary CD format." msgstr "" -#: gnu/packages/compression.scm:2642 +#: gnu/packages/compression.scm:2668 msgid "" "Libdeflate is a library for fast, whole-buffer DEFLATE-based\n" "compression and decompression. The supported formats are:\n" @@ -2253,7 +2300,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/compression.scm:2672 +#: gnu/packages/compression.scm:2698 msgid "" "Tarlz is a massively parallel (multi-threaded) combined implementation of\n" "the tar archiver and the lzip compressor. Tarlz creates, lists, and extracts\n" @@ -2264,7 +2311,7 @@ msgid "" "can append files to the end of such compressed archives." msgstr "" -#: gnu/packages/compression.scm:2706 +#: gnu/packages/compression.scm:2732 msgid "" "The Concise Binary Object Representation (CBOR) is a data format whose\n" "design goals include the possibility of extremely small code size, fairly\n" @@ -2273,11 +2320,11 @@ msgid "" "serializations such as ASN.1 and MessagePack." msgstr "" -#: gnu/packages/compression.scm:2739 +#: gnu/packages/compression.scm:2765 msgid "Fcrackzip is a Zip file password cracker." msgstr "" -#: gnu/packages/databases.scm:211 +#: gnu/packages/databases.scm:216 msgid "" "4store is a RDF/SPARQL store written in C, supporting\n" "either single machines or networked clusters." @@ -2285,7 +2332,7 @@ msgstr "" "4store es un almacén RDF/SPARQL escrito en C, soportando\n" "tanto máquinas únicas o racimos por red." -#: gnu/packages/databases.scm:255 +#: gnu/packages/databases.scm:260 msgid "" "@code{pg_tmp} creates temporary PostgreSQL databases, suitable for tasks\n" "like running software test suites. Temporary databases created with\n" @@ -2294,14 +2341,14 @@ msgid "" "60)." msgstr "" -#: gnu/packages/databases.scm:281 +#: gnu/packages/databases.scm:286 msgid "" "This package provides a utility for dumping the contents of an\n" "ElasticSearch index to a compressed file and restoring the dumpfile back to an\n" "ElasticSearch server" msgstr "" -#: gnu/packages/databases.scm:433 +#: gnu/packages/databases.scm:438 msgid "" "Firebird is an SQL @acronym{RDBMS, relational database management system}\n" "with rich support for ANSI SQL (e.g., @code{INSERT...RETURNING}) including\n" @@ -2321,20 +2368,20 @@ msgid "" "database later." msgstr "" -#: gnu/packages/databases.scm:506 +#: gnu/packages/databases.scm:511 msgid "" "LevelDB is a fast key-value storage library that provides an ordered\n" "mapping from string keys to string values." msgstr "" -#: gnu/packages/databases.scm:526 +#: gnu/packages/databases.scm:531 msgid "" "Memcached is an in-memory key-value store. It has a small\n" "and generic API, and was originally intended for use with dynamic web\n" "applications." msgstr "" -#: gnu/packages/databases.scm:588 +#: gnu/packages/databases.scm:593 msgid "" "libMemcached is a library to use memcached in C/C++\n" "applications. It comes with a complete reference guide and documentation of\n" @@ -2348,51 +2395,75 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:625 +#: gnu/packages/databases.scm:630 msgid "" "@code{pylibmc} is a client in Python for memcached. It is a wrapper\n" "around TangentOrg’s libmemcached library, and can be used as a drop-in\n" "replacement for the code@{python-memcached} library." msgstr "" -#: gnu/packages/databases.scm:653 +#: gnu/packages/databases.scm:662 +#, fuzzy +msgid "This is a memcache client library for the Go programming language." +msgstr "Manual de referencia para el lenguaje de programación C" + +#: gnu/packages/databases.scm:685 +#, fuzzy +msgid "This package provides memcache client and server functionality." +msgstr "" +"Este paquete proporciona un diccionario para la biblioteca de\n" +"comprobación ortográfica Hunspell." + +#: gnu/packages/databases.scm:711 msgid "" "@code{litecli} is a command-line client for SQLite databases that has\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:685 +#: gnu/packages/databases.scm:732 +msgid "" +"This Python package provides an API to execute meta-commands (AKA\n" +"\"special\", or \"backslash commands\") on PostgreSQL." +msgstr "" + +#: gnu/packages/databases.scm:763 +msgid "" +"@code{pgcli} is a command line interface for PostgreSQL with\n" +"autocompletion and syntax highlighting." +msgstr "" + +#: gnu/packages/databases.scm:801 msgid "" "MyCLI is a command line interface for MySQL, MariaDB, and Percona with\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:782 +#: gnu/packages/databases.scm:898 msgid "" "MySQL is a fast, reliable, and easy to use relational database\n" "management system that supports the standardized Structured Query\n" "Language." msgstr "" -#: gnu/packages/databases.scm:1045 +#: gnu/packages/databases.scm:1161 msgid "" "MariaDB is a multi-user and multi-threaded SQL database server, designed\n" "as a drop-in replacement of MySQL." msgstr "" -#: gnu/packages/databases.scm:1070 +#: gnu/packages/databases.scm:1186 msgid "" "The MariaDB Connector/C is used to connect applications\n" "developed in C/C++ to MariaDB and MySQL databases." msgstr "" -#: gnu/packages/databases.scm:1093 +#: gnu/packages/databases.scm:1209 msgid "" "Galera is a wsrep-provider that is used with MariaDB for load-balancing\n" "and high-availability (HA)." msgstr "" -#: gnu/packages/databases.scm:1147 +#: gnu/packages/databases.scm:1263 msgid "" "PostgreSQL is a powerful object-relational database system. It is fully\n" "ACID compliant, has full support for foreign keys, joins, views, triggers, and\n" @@ -2402,19 +2473,27 @@ msgid "" "pictures, sounds, or video." msgstr "" -#: gnu/packages/databases.scm:1269 +#: gnu/packages/databases.scm:1395 +msgid "" +"TimescaleDB is an database designed to make SQL scalable for\n" +"time-series data. It is engineered up from PostgreSQL and packaged as a\n" +"PostgreSQL extension, providing automatic partitioning across time and space\n" +"(partitioning key), as well as full SQL support." +msgstr "" + +#: gnu/packages/databases.scm:1476 msgid "" "@code{pgloader} is a program that can load data or migrate databases from\n" "CSV, DB3, iXF, SQLite, MS-SQL or MySQL to PostgreSQL." msgstr "" -#: gnu/packages/databases.scm:1293 +#: gnu/packages/databases.scm:1500 msgid "" "PyMySQL is a pure-Python MySQL client library, based on PEP 249.\n" "Most public APIs are compatible with @command{mysqlclient} and MySQLdb." msgstr "" -#: gnu/packages/databases.scm:1320 +#: gnu/packages/databases.scm:1527 msgid "" "QDBM is a library of routines for managing a\n" "database. The database is a simple data file containing key-value\n" @@ -2424,7 +2503,7 @@ msgid "" "organized in a hash table or B+ tree." msgstr "" -#: gnu/packages/databases.scm:1357 +#: gnu/packages/databases.scm:1564 msgid "" "GNU Recutils is a set of tools and libraries for creating and\n" "manipulating text-based, human-editable databases. Despite being text-based,\n" @@ -2433,7 +2512,7 @@ msgid "" "types are supported, as is encryption." msgstr "" -#: gnu/packages/databases.scm:1389 +#: gnu/packages/databases.scm:1596 msgid "" "This package provides an Emacs major mode @code{rec-mode}\n" "for working with GNU Recutils text-based, human-editable databases. It\n" @@ -2441,7 +2520,7 @@ msgid "" "including field and record folding." msgstr "" -#: gnu/packages/databases.scm:1457 +#: gnu/packages/databases.scm:1664 msgid "" "RocksDB is a library that forms the core building block for a fast\n" "key-value server, especially suited for storing data on flash drives. It\n" @@ -2452,7 +2531,7 @@ msgid "" "data in a single database. RocksDB is partially based on @code{LevelDB}." msgstr "" -#: gnu/packages/databases.scm:1515 +#: gnu/packages/databases.scm:1722 msgid "" "Sparql-query is a command-line tool for accessing SPARQL\n" "endpoints over HTTP. It has been intentionally designed to @code{feel} similar to\n" @@ -2463,13 +2542,13 @@ msgid "" "for example from a shell script." msgstr "" -#: gnu/packages/databases.scm:1608 +#: gnu/packages/databases.scm:1815 msgid "" "Sqitch is a standalone change management system for database schemas,\n" "which uses SQL to describe changes." msgstr "" -#: gnu/packages/databases.scm:1635 +#: gnu/packages/databases.scm:1842 msgid "" "SQLcrush lets you view and edit a database directly from the text\n" "console through an ncurses interface. You can explore each table's structure,\n" @@ -2477,7 +2556,7 @@ msgid "" "changes." msgstr "" -#: gnu/packages/databases.scm:1673 +#: gnu/packages/databases.scm:1880 msgid "" "TDB is a Trivial Database. In concept, it is very much like GDBM,\n" "and BSD's DB except that it allows multiple simultaneous writers and uses\n" @@ -2485,11 +2564,11 @@ msgid "" "extremely small." msgstr "" -#: gnu/packages/databases.scm:1693 +#: gnu/packages/databases.scm:1900 msgid "This package provides an database interface for Perl." msgstr "" -#: gnu/packages/databases.scm:1741 +#: gnu/packages/databases.scm:1948 msgid "" "An SQL to OO mapper with an object API inspired by\n" "Class::DBI (with a compatibility layer as a springboard for porting) and a\n" @@ -2501,13 +2580,13 @@ msgid "" "\"ORDER BY\" and \"HAVING\" support." msgstr "" -#: gnu/packages/databases.scm:1770 +#: gnu/packages/databases.scm:1977 msgid "" "DBIx::Class::Cursor::Cached provides a cursor class with\n" "built-in caching support." msgstr "" -#: gnu/packages/databases.scm:1793 +#: gnu/packages/databases.scm:2000 msgid "" "Because the many-to-many relationships are not real\n" "relationships, they can not be introspected with DBIx::Class. Many-to-many\n" @@ -2517,26 +2596,26 @@ msgid "" "introspected and examined." msgstr "" -#: gnu/packages/databases.scm:1852 +#: gnu/packages/databases.scm:2059 msgid "" "DBIx::Class::Schema::Loader automates the definition of a\n" "DBIx::Class::Schema by scanning database table definitions and setting up the\n" "columns, primary keys, unique constraints and relationships." msgstr "" -#: gnu/packages/databases.scm:1876 +#: gnu/packages/databases.scm:2083 msgid "" "This package provides a PostgreSQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." msgstr "" -#: gnu/packages/databases.scm:1914 +#: gnu/packages/databases.scm:2121 msgid "" "This package provides a MySQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." msgstr "" -#: gnu/packages/databases.scm:1934 +#: gnu/packages/databases.scm:2141 msgid "" "DBD::SQLite is a Perl DBI driver for SQLite, that includes\n" "the entire thing in the distribution. So in order to get a fast transaction\n" @@ -2544,14 +2623,14 @@ msgid "" "module, and nothing else." msgstr "" -#: gnu/packages/databases.scm:1959 +#: gnu/packages/databases.scm:2166 msgid "" "@code{MySQL::Config} emulates the @code{load_defaults} function from\n" "libmysqlclient. It will fill an array with long options, ready to be parsed by\n" "@code{Getopt::Long}." msgstr "" -#: gnu/packages/databases.scm:1983 +#: gnu/packages/databases.scm:2190 msgid "" "This module was inspired by the excellent DBIx::Abstract.\n" "While based on the concepts used by DBIx::Abstract, the concepts used have\n" @@ -2561,7 +2640,7 @@ msgid "" "time your data changes." msgstr "" -#: gnu/packages/databases.scm:2010 +#: gnu/packages/databases.scm:2217 msgid "" "This module is nearly identical to @code{SQL::Abstract} 1.81, and exists\n" "to preserve the ability of users to opt into the new way of doing things in\n" @@ -2577,34 +2656,34 @@ msgid "" "your data changes, as this module figures it out." msgstr "" -#: gnu/packages/databases.scm:2043 +#: gnu/packages/databases.scm:2250 msgid "" "This module tries to split any SQL code, even including\n" "non-standard extensions, into the atomic statements it is composed of." msgstr "" -#: gnu/packages/databases.scm:2062 +#: gnu/packages/databases.scm:2269 msgid "" "SQL::Tokenizer is a tokenizer for SQL queries. It does not\n" "claim to be a parser or query verifier. It just creates sane tokens from a\n" "valid SQL query." msgstr "" -#: gnu/packages/databases.scm:2081 +#: gnu/packages/databases.scm:2288 msgid "" "Unixodbc is a library providing an API with which to access\n" "data sources. Data sources include SQL Servers and any software with an ODBC\n" "Driver." msgstr "" -#: gnu/packages/databases.scm:2113 +#: gnu/packages/databases.scm:2320 msgid "" "The goal for nanodbc is to make developers happy by providing\n" "a simpler and less verbose API for working with ODBC. Common tasks should be\n" "easy, requiring concise and simple code." msgstr "" -#: gnu/packages/databases.scm:2174 +#: gnu/packages/databases.scm:2381 msgid "" "UnQLite is an in-process software library which implements a\n" "self-contained, serverless, zero-configuration, transactional NoSQL\n" @@ -2613,27 +2692,35 @@ msgid "" "similar to BerkeleyDB, LevelDB, etc." msgstr "" -#: gnu/packages/databases.scm:2225 +#: gnu/packages/databases.scm:2432 msgid "" "Redis is an advanced key-value cache and store. Redis\n" "supports many data structures including strings, hashes, lists, sets, sorted\n" "sets, bitmaps and hyperloglogs." msgstr "" -#: gnu/packages/databases.scm:2247 +#: gnu/packages/databases.scm:2454 msgid "" "This package provides a Ruby client that tries to match Redis' API\n" "one-to-one, while still providing an idiomatic interface." msgstr "" -#: gnu/packages/databases.scm:2275 +#: gnu/packages/databases.scm:2479 +msgid "Package rdb implements parsing and encoding of the Redis RDB file format." +msgstr "" + +#: gnu/packages/databases.scm:2505 +msgid "Redigo is a Go client for the Redis database." +msgstr "" + +#: gnu/packages/databases.scm:2531 msgid "" "Kyoto Cabinet is a standalone file-based database that supports Hash\n" "and B+ Tree data storage models. It is a fast key-value lightweight\n" "database and supports many programming languages. It is a NoSQL database." msgstr "" -#: gnu/packages/databases.scm:2303 +#: gnu/packages/databases.scm:2559 msgid "" "Tokyo Cabinet is a library of routines for managing a database.\n" "The database is a simple data file containing records, each is a pair of a\n" @@ -2643,7 +2730,7 @@ msgid "" "organized in hash table, B+ tree, or fixed-length array." msgstr "" -#: gnu/packages/databases.scm:2339 +#: gnu/packages/databases.scm:2595 msgid "" "WiredTiger is an extensible platform for data management. It supports\n" "row-oriented storage (where all columns of a row are stored together),\n" @@ -2652,17 +2739,17 @@ msgid "" "trees (LSM), for sustained throughput under random insert workloads." msgstr "" -#: gnu/packages/databases.scm:2389 +#: gnu/packages/databases.scm:2645 msgid "" "This package provides Guile bindings to the WiredTiger ``NoSQL''\n" "database." msgstr "" -#: gnu/packages/databases.scm:2419 +#: gnu/packages/databases.scm:2675 msgid "The DB::File module provides Perl bindings to the Berkeley DB version 1.x." msgstr "" -#: gnu/packages/databases.scm:2467 +#: gnu/packages/databases.scm:2723 msgid "" "The @dfn{Lightning Memory-Mapped Database} (LMDB) is a high-performance\n" "transactional database. Unlike more complex relational databases, LMDB handles\n" @@ -2675,7 +2762,7 @@ msgid "" "virtual address space — not physical RAM." msgstr "" -#: gnu/packages/databases.scm:2501 +#: gnu/packages/databases.scm:2757 msgid "" "@code{lmdbxx} is a comprehensive @code{C++} wrapper for the\n" "@code{LMDB} embedded database library, offering both an error-checked\n" @@ -2683,14 +2770,22 @@ msgid "" "semantics." msgstr "" -#: gnu/packages/databases.scm:2535 +#: gnu/packages/databases.scm:2791 msgid "" "Libpqxx is a C++ library to enable user programs to communicate with the\n" "PostgreSQL database back-end. The database back-end can be local or it may be\n" "on another machine, accessed via TCP/IP." msgstr "" -#: gnu/packages/databases.scm:2561 +#: gnu/packages/databases.scm:2819 +msgid "" +"Bolt is a pure Go key/value store inspired by Howard Chu's\n" +"LMDB project. The goal of the project is to provide a simple, fast, and\n" +"reliable database for projects that don't require a full database server such as\n" +"Postgres or MySQL." +msgstr "" + +#: gnu/packages/databases.scm:2845 msgid "" "Peewee is a simple and small ORM (object-relation mapping) tool. Peewee\n" "handles converting between pythonic values and those used by databases, so you\n" @@ -2699,20 +2794,20 @@ msgid "" "can autogenerate peewee models using @code{pwiz}, a model generator." msgstr "" -#: gnu/packages/databases.scm:2584 +#: gnu/packages/databases.scm:2868 msgid "" "Pypika-tortoise is a fork of pypika which has been\n" "streamlined for its use in the context of tortoise-orm. It removes support\n" "for many database kinds that tortoise-orm doesn't need, for example." msgstr "" -#: gnu/packages/databases.scm:2604 +#: gnu/packages/databases.scm:2888 msgid "" "This package is a Sphinx extension providing additional\n" "coroutine-specific markup." msgstr "" -#: gnu/packages/databases.scm:2632 +#: gnu/packages/databases.scm:2916 msgid "" "@code{asyncpg} is a database interface library designed\n" "specifically for PostgreSQL and Python/asyncio. @code{asyncpg} is an\n" @@ -2720,14 +2815,14 @@ msgid "" "with Python's asyncio framework." msgstr "" -#: gnu/packages/databases.scm:2652 +#: gnu/packages/databases.scm:2936 msgid "" "@code{asyncmy} is a fast @code{asyncio} MySQL driver, which\n" "reuses most of @code{pymysql} and @code{aiomysql} but rewrites the core\n" "protocol with Cython for performance." msgstr "" -#: gnu/packages/databases.scm:2672 +#: gnu/packages/databases.scm:2956 msgid "" "@code{aiomysql} is a driver for accessing a MySQL database\n" "from the @code{asyncio} Python framework. It depends on and reuses most parts\n" @@ -2735,7 +2830,7 @@ msgid "" "@code{aiopg} library." msgstr "" -#: gnu/packages/databases.scm:2705 +#: gnu/packages/databases.scm:2989 msgid "" "Tortoise ORM is an easy-to-use asyncio ORM (Object\n" "Relational Mapper) inspired by Django. Tortoise ORM was built with relations\n" @@ -2744,7 +2839,7 @@ msgid "" "with relational data." msgstr "" -#: gnu/packages/databases.scm:2749 +#: gnu/packages/databases.scm:3033 msgid "" "SQLCipher is an implementation of SQLite, extended to\n" "provide transparent 256-bit AES encryption of database files. Pages are\n" @@ -2753,19 +2848,19 @@ msgid "" "development." msgstr "" -#: gnu/packages/databases.scm:2782 +#: gnu/packages/databases.scm:3066 msgid "" "@code{python-pyodbc-c} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2807 +#: gnu/packages/databases.scm:3091 msgid "" "@code{python-pyodbc} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2840 +#: gnu/packages/databases.scm:3124 msgid "" "MDB Tools is a set of tools and applications to read the\n" "proprietary MDB file format used in Microsoft's Access database package. This\n" @@ -2774,39 +2869,44 @@ msgid "" "etc., and an SQL engine for performing simple SQL queries." msgstr "" -#: gnu/packages/databases.scm:2886 +#: gnu/packages/databases.scm:3153 +#, fuzzy +msgid "This package provides a MongoDB driver for Go." +msgstr "Este paquete proporciona un diccionario para el comprobador ortográfico GNU Aspell." + +#: gnu/packages/databases.scm:3194 msgid "" "python-lmdb or py-lmdb is a Python binding for the @dfn{Lightning\n" "Memory-Mapped Database} (LMDB), a high-performance key-value store." msgstr "" -#: gnu/packages/databases.scm:2925 +#: gnu/packages/databases.scm:3233 msgid "" "Orator provides a simple ActiveRecord-like Object Relational Mapping\n" "implementation for Python." msgstr "" -#: gnu/packages/databases.scm:2963 +#: gnu/packages/databases.scm:3271 msgid "" "Virtuoso is a scalable cross-platform server that combines\n" "relational, graph, and document data management with web application server\n" "and web services platform functionality." msgstr "" -#: gnu/packages/databases.scm:2990 +#: gnu/packages/databases.scm:3298 msgid "" "Cassandra Cluster Manager is a development tool for testing\n" "local Cassandra clusters. It creates, launches and removes Cassandra clusters\n" "on localhost." msgstr "" -#: gnu/packages/databases.scm:3018 +#: gnu/packages/databases.scm:3326 msgid "" "Pysqlite provides SQLite bindings for Python that comply to the\n" "Database API 2.0T." msgstr "" -#: gnu/packages/databases.scm:3048 +#: gnu/packages/databases.scm:3356 msgid "" "SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that\n" "gives application developers the full power and flexibility of SQL. It\n" @@ -2815,14 +2915,14 @@ msgid "" "simple and Pythonic domain language." msgstr "" -#: gnu/packages/databases.scm:3086 +#: gnu/packages/databases.scm:3382 msgid "" "This package contains type stubs and a mypy plugin to\n" "provide more precise static types and type inference for SQLAlchemy\n" "framework." msgstr "" -#: gnu/packages/databases.scm:3118 +#: gnu/packages/databases.scm:3414 msgid "" "SQLAlchemy-utils provides various utility functions and custom data types\n" "for SQLAlchemy. SQLAlchemy is an SQL database abstraction library for Python.\n" @@ -2839,7 +2939,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/databases.scm:3165 +#: gnu/packages/databases.scm:3461 msgid "" "This package provides mock helpers for SQLAlchemy that makes it easy\n" "to mock an SQLAlchemy session while preserving the ability to do asserts.\n" @@ -2849,7 +2949,7 @@ msgid "" "this library provides functions to facilitate such comparisons." msgstr "" -#: gnu/packages/databases.scm:3196 +#: gnu/packages/databases.scm:3492 msgid "" "Alembic is a lightweight database migration tool for usage with the\n" "SQLAlchemy Database Toolkit for Python." @@ -2857,7 +2957,7 @@ msgstr "" "Alembic es una herramienta de migración de base de datos ligera para\n" "utilizar con el Kit de Herramienta de BD SQLAlchemy para Python." -#: gnu/packages/databases.scm:3221 +#: gnu/packages/databases.scm:3517 msgid "" "PickleShare is a small ‘shelve’-like datastore with concurrency support.\n" "Like shelve, a PickleShareDB object acts like a normal dictionary. Unlike\n" @@ -2868,7 +2968,7 @@ msgid "" "PickleShare." msgstr "" -#: gnu/packages/databases.scm:3275 +#: gnu/packages/databases.scm:3571 msgid "" "APSW is a Python wrapper for the SQLite\n" "embedded relational database engine. In contrast to other wrappers such as\n" @@ -2876,21 +2976,21 @@ msgid "" "translate the complete SQLite API into Python." msgstr "" -#: gnu/packages/databases.scm:3312 +#: gnu/packages/databases.scm:3608 msgid "" "The package aiosqlite replicates the standard sqlite3 module, but with\n" "async versions of all the standard connection and cursor methods, and context\n" "managers for automatically closing connections." msgstr "" -#: gnu/packages/databases.scm:3333 +#: gnu/packages/databases.scm:3629 msgid "" "This package provides the Neo4j Python driver that connects\n" "to the database using Neo4j's binary protocol. It aims to be minimal, while\n" "being idiomatic to Python." msgstr "" -#: gnu/packages/databases.scm:3353 +#: gnu/packages/databases.scm:3649 msgid "" "This package provides a client library and toolkit for\n" "working with Neo4j from within Python applications and from the command\n" @@ -2898,26 +2998,38 @@ msgid "" "designed to be easy and intuitive to use." msgstr "" -#: gnu/packages/databases.scm:3379 +#: gnu/packages/databases.scm:3675 msgid "" "psycopg2 is a thread-safe PostgreSQL adapter that implements DB-API\n" "2.0." msgstr "" -#: gnu/packages/databases.scm:3413 +#: gnu/packages/databases.scm:3702 +msgid "" +"This module provides connection pool implementations that can be used\n" +"with the @code{psycopg} PostgreSQL driver." +msgstr "" + +#: gnu/packages/databases.scm:3776 +msgid "" +"Psycopg 3 is a new implementation of the popular @code{psycopg2}\n" +"database adapter for Python." +msgstr "" + +#: gnu/packages/databases.scm:3810 msgid "" "This package provides a program to build Entity\n" "Relationship diagrams from a SQLAlchemy model (or directly from the\n" "database)." msgstr "" -#: gnu/packages/databases.scm:3443 +#: gnu/packages/databases.scm:3840 msgid "" "Yoyo is a database schema migration tool. Migrations are written as SQL\n" "files or Python scripts that define a list of migration steps." msgstr "" -#: gnu/packages/databases.scm:3464 +#: gnu/packages/databases.scm:3861 msgid "" "MySQLdb is an interface to the popular MySQL database server\n" "for Python. The design goals are:\n" @@ -2928,13 +3040,13 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/databases.scm:3490 +#: gnu/packages/databases.scm:3887 msgid "" "Python-hiredis is a python extension that wraps protocol\n" "parsing code in hiredis. It primarily speeds up parsing of multi bulk replies." msgstr "" -#: gnu/packages/databases.scm:3517 +#: gnu/packages/databases.scm:3914 msgid "" "Fakeredis is a pure-Python implementation of the redis-py Python client\n" "that simulates talking to a redis server. It was created for a single purpose:\n" @@ -2945,49 +3057,49 @@ msgid "" "reasonable substitute." msgstr "" -#: gnu/packages/databases.scm:3545 +#: gnu/packages/databases.scm:3942 msgid "This package provides a Python interface to the Redis key-value store." msgstr "" -#: gnu/packages/databases.scm:3586 +#: gnu/packages/databases.scm:3983 msgid "" "RQ (Redis Queue) is a simple Python library for queueing jobs and\n" "processing them in the background with workers. It is backed by Redis and it\n" "is designed to have a low barrier to entry." msgstr "" -#: gnu/packages/databases.scm:3623 +#: gnu/packages/databases.scm:4020 msgid "" "This package provides job scheduling capabilities to @code{python-rq}\n" "(Redis Queue)." msgstr "" -#: gnu/packages/databases.scm:3643 +#: gnu/packages/databases.scm:4040 msgid "" "@code{trollius-redis} is a Redis client for Python\n" " trollius. It is an asynchronous IO (PEP 3156) implementation of the\n" " Redis protocol." msgstr "" -#: gnu/packages/databases.scm:3686 +#: gnu/packages/databases.scm:4083 msgid "" "Sqlparse is a non-validating SQL parser for Python. It\n" "provides support for parsing, splitting and formatting SQL statements." msgstr "" -#: gnu/packages/databases.scm:3703 +#: gnu/packages/databases.scm:4101 msgid "" "@code{python-sql} is a library to write SQL queries, that\n" "transforms idiomatic python function calls to well-formed SQL queries." msgstr "" -#: gnu/packages/databases.scm:3726 +#: gnu/packages/databases.scm:4124 msgid "" "PyPika is a python SQL query builder that exposes the full richness of\n" "the SQL language using a syntax that reflects the resulting query." msgstr "" -#: gnu/packages/databases.scm:3852 +#: gnu/packages/databases.scm:4250 msgid "" "Apache Arrow is a columnar in-memory analytics layer\n" "designed to accelerate big data. It houses a set of canonical in-memory\n" @@ -2996,21 +3108,21 @@ msgid "" "algorithm implementations." msgstr "" -#: gnu/packages/databases.scm:3912 +#: gnu/packages/databases.scm:4310 msgid "" "This library provides a Pythonic API wrapper for the reference Arrow C++\n" "implementation, along with tools for interoperability with pandas, NumPy, and\n" "other traditional Python scientific computing packages." msgstr "" -#: gnu/packages/databases.scm:3933 +#: gnu/packages/databases.scm:4331 msgid "" "This package provides a Python client library for CrateDB.\n" "It implements the Python DB API 2.0 specification and includes support for\n" "SQLAlchemy." msgstr "" -#: gnu/packages/databases.scm:3952 +#: gnu/packages/databases.scm:4350 msgid "" "This library implements a database independent abstraction layer in C,\n" "similar to the DBI/DBD layer in Perl. Writing one generic set of code,\n" @@ -3018,7 +3130,7 @@ msgid "" "simultaneous database connections by using this framework." msgstr "" -#: gnu/packages/databases.scm:4018 +#: gnu/packages/databases.scm:4416 msgid "" "The @code{libdbi-drivers} library provides the database specific drivers\n" "for the @code{libdbi} framework.\n" @@ -3031,26 +3143,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:4060 +#: gnu/packages/databases.scm:4458 msgid "" "SOCI is an abstraction layer for several database backends, including\n" "PostreSQL, SQLite, ODBC and MySQL." msgstr "" -#: gnu/packages/databases.scm:4084 +#: gnu/packages/databases.scm:4482 msgid "" "FreeTDS is an implementation of the Tabular DataStream protocol, used for\n" "connecting to MS SQL and Sybase servers over TCP/IP." msgstr "" -#: gnu/packages/databases.scm:4106 +#: gnu/packages/databases.scm:4504 msgid "" "TinyDB is a small document oriented database written in pure Python\n" "with no external dependencies. The targets are small apps that would\n" "be blown away by a SQL-DB or an external database server." msgstr "" -#: gnu/packages/databases.scm:4154 +#: gnu/packages/databases.scm:4552 msgid "" "Sequeler is a native Linux SQL client built in Vala and\n" "Gtk. It allows you to connect to your local and remote databases, write SQL in\n" @@ -3058,7 +3170,13 @@ msgid "" "a Gtk.Grid Widget." msgstr "" -#: gnu/packages/debug.scm:111 +#: gnu/packages/databases.scm:4594 +msgid "" +"Sqlitebrowser is a high quaility, visual, open source tool to\n" +"create design, and edit database file compatible with SQLite." +msgstr "" + +#: gnu/packages/debug.scm:112 msgid "" "Delta assists you in minimizing \"interesting\" files subject to a test\n" "of their interestingness. A common such situation is when attempting to\n" @@ -3066,7 +3184,7 @@ msgid "" "program to exhibit a bug." msgstr "" -#: gnu/packages/debug.scm:172 +#: gnu/packages/debug.scm:173 msgid "" "C-Reduce is a tool that takes a large C or C++ program that has a\n" "property of interest (such as triggering a compiler bug) and automatically\n" @@ -3075,14 +3193,14 @@ msgid "" "tools that process C/C++ code." msgstr "" -#: gnu/packages/debug.scm:219 +#: gnu/packages/debug.scm:220 msgid "" "C-Vise is a Python port of the C-Reduce tool that is fully compatible\n" "and uses the same efficient LLVM-based C/C++ @code{clang_delta} reduction\n" "tool." msgstr "" -#: gnu/packages/debug.scm:289 +#: gnu/packages/debug.scm:290 msgid "" "American fuzzy lop is a security-oriented fuzzer that employs a novel\n" "type of compile-time instrumentation and genetic algorithms to automatically\n" @@ -3093,7 +3211,7 @@ msgid "" "down the road." msgstr "" -#: gnu/packages/debug.scm:433 +#: gnu/packages/debug.scm:434 msgid "" "QEMU is a generic machine emulator and virtualizer. This package\n" "of QEMU is used only by the american fuzzy lop package.\n" @@ -3109,7 +3227,7 @@ msgid "" "server and embedded PowerPC, and S390 guests." msgstr "" -#: gnu/packages/debug.scm:501 +#: gnu/packages/debug.scm:502 msgid "" "Stress Make is a customized GNU Make that explicitly manages the order\n" "in which concurrent jobs are run to provoke erroneous behavior into becoming\n" @@ -3119,7 +3237,7 @@ msgid "" "conditions." msgstr "" -#: gnu/packages/debug.scm:529 +#: gnu/packages/debug.scm:530 msgid "" "Zzuf is a transparent application input fuzzer. It works by\n" "intercepting file operations and changing random bits in the program's\n" @@ -3131,7 +3249,7 @@ msgstr "" "de Zzuf es determinalístico, creando fácil su reproducción de\n" "defectos." -#: gnu/packages/debug.scm:581 +#: gnu/packages/debug.scm:582 msgid "" "Scanmem is a debugging utility designed to isolate the\n" "address of an arbitrary variable in an executing process. Scanmem simply\n" @@ -3140,13 +3258,13 @@ msgid "" "the position of the variable and allows you to modify its value." msgstr "" -#: gnu/packages/debug.scm:611 +#: gnu/packages/debug.scm:612 msgid "" "Remake is an enhanced version of GNU Make that adds improved\n" "error reporting, better tracing, profiling, and a debugger." msgstr "" -#: gnu/packages/debug.scm:667 +#: gnu/packages/debug.scm:668 msgid "" "rr is a lightweight tool for recording, replaying and debugging\n" "execution of applications (trees of processes and threads). Debugging extends\n" @@ -3155,13 +3273,13 @@ msgid "" "fun." msgstr "" -#: gnu/packages/debug.scm:695 +#: gnu/packages/debug.scm:696 msgid "" "The @code{libbacktrace} library can be linked into a C/C++\n" "program to produce symbolic backtraces." msgstr "" -#: gnu/packages/debug.scm:735 +#: gnu/packages/debug.scm:736 msgid "" "The libleak tool detects memory leaks by hooking memory\n" "functions such as @code{malloc}. It comes as a shared object to be pre-loaded\n" @@ -3173,7 +3291,7 @@ msgid "" "use than similar tools like @command{mtrace}." msgstr "" -#: gnu/packages/debug.scm:763 +#: gnu/packages/debug.scm:764 msgid "" "@code{cgdb} is a lightweight curses (terminal-based) interface to the\n" "GNU Debugger (GDB). In addition to the standard gdb console, cgdb provides\n" @@ -3182,7 +3300,7 @@ msgid "" "using cgdb." msgstr "" -#: gnu/packages/debug.scm:798 +#: gnu/packages/debug.scm:799 msgid "" "MspDebug supports FET430UIF, eZ430, RF2500 and Olimex\n" "MSP430-JTAG-TINY programmers, as well as many other compatible\n" @@ -3198,14 +3316,14 @@ msgid "" "multiple test suites, which are then all managed by a single harness." msgstr "" -#: gnu/packages/games.scm:287 +#: gnu/packages/games.scm:288 msgid "" "Abe's Amazing Adventure is a scrolling,\n" "platform-jumping, key-collecting, ancient pyramid exploring game, vaguely in\n" "the style of similar games for the Commodore+4." msgstr "" -#: gnu/packages/games.scm:357 +#: gnu/packages/games.scm:358 msgid "" "Adanaxis is a fast-moving first person shooter set in deep space, where\n" "the fundamentals of space itself are changed. By adding another dimension to\n" @@ -3216,7 +3334,7 @@ msgid "" "mouse and joystick control, and original music." msgstr "" -#: gnu/packages/games.scm:401 +#: gnu/packages/games.scm:402 msgid "" "Guide Alex the Allegator through the jungle in order to save his\n" "girlfriend Lola from evil humans who want to make a pair of shoes out of her.\n" @@ -3225,7 +3343,7 @@ msgid "" "The game includes a built-in editor so you can design and share your own maps." msgstr "" -#: gnu/packages/games.scm:431 +#: gnu/packages/games.scm:432 msgid "" "Armagetron Advanced is a multiplayer game in 3d that\n" "attempts to emulate and expand on the lightcycle sequence from the movie Tron.\n" @@ -3235,7 +3353,7 @@ msgid "" "physics settings to tweak as well." msgstr "" -#: gnu/packages/games.scm:489 +#: gnu/packages/games.scm:490 msgid "" "Space is a vast area, an unbounded territory where it seems there is\n" "a room for everybody, but reversal of fortune put things differently. The\n" @@ -3247,7 +3365,7 @@ msgid "" "regret their insolence." msgstr "" -#: gnu/packages/games.scm:556 +#: gnu/packages/games.scm:557 msgid "" "Bastet (short for Bastard Tetris) is a simple ncurses-based falling brick\n" "game. Unlike normal Tetris, Bastet does not choose the next brick at random.\n" @@ -3257,19 +3375,19 @@ msgid "" "canyons and wait for the long I-shaped block to clear four rows at a time." msgstr "" -#: gnu/packages/games.scm:601 +#: gnu/packages/games.scm:602 msgid "" "Tetrinet is a multiplayer Tetris-like game with powerups and\n" "attacks you can use on opponents." msgstr "" -#: gnu/packages/games.scm:635 +#: gnu/packages/games.scm:636 msgid "" "Vitetris is a classic multiplayer Tetris clone for the\n" "terminal." msgstr "" -#: gnu/packages/games.scm:678 +#: gnu/packages/games.scm:679 msgid "" "Blobwars: Metal Blob Solid is a 2D platform game, the first\n" "in the Blobwars series. You take on the role of a fearless Blob agent. Your\n" @@ -3277,7 +3395,7 @@ msgid "" "possible, while battling many vicious aliens." msgstr "" -#: gnu/packages/games.scm:771 +#: gnu/packages/games.scm:772 msgid "" "These are the BSD games. See the fortune-mod package for fortunes.\n" "\n" @@ -3310,7 +3428,7 @@ msgid "" "Quizzes: arithmetic and quiz." msgstr "" -#: gnu/packages/games.scm:866 +#: gnu/packages/games.scm:867 msgid "" "BZFlag is a 3D multi-player multiplatform tank battle game that\n" "allows users to play against each other in a network environment.\n" @@ -3330,7 +3448,7 @@ msgid "" "high a score as possible." msgstr "" -#: gnu/packages/games.scm:949 +#: gnu/packages/games.scm:950 msgid "" "Cataclysm: Dark Days Ahead (or \"DDA\" for short) is a roguelike set\n" "in a post-apocalyptic world. Struggle to survive in a harsh, persistent,\n" @@ -3342,7 +3460,7 @@ msgid "" "want what you have." msgstr "" -#: gnu/packages/games.scm:998 +#: gnu/packages/games.scm:999 msgid "" "Cockatrice is a program for playing tabletop card games\n" "over a network. Its server design prevents users from manipulating the game\n" @@ -3350,7 +3468,7 @@ msgid "" "allows users to brew while offline." msgstr "" -#: gnu/packages/games.scm:1052 +#: gnu/packages/games.scm:1053 msgid "" "This package provides a reimplementation of the 1997 Bullfrog business\n" "simulation game @i{Theme Hospital}. As well as faithfully recreating the\n" @@ -3358,7 +3476,7 @@ msgid "" "more. This package does @emph{not} provide the game assets." msgstr "" -#: gnu/packages/games.scm:1094 +#: gnu/packages/games.scm:1095 msgid "" "Cowsay is basically a text filter. Send some text into it,\n" "and you get a cow saying your text. If you think a talking cow isn't enough,\n" @@ -3366,21 +3484,21 @@ msgid "" "tired of cows, a variety of other ASCII-art messengers are available." msgstr "" -#: gnu/packages/games.scm:1135 +#: gnu/packages/games.scm:1136 msgid "" "@command{lolcat} concatenates files and streams like\n" "regular @command{cat}, but it also adds terminal escape codes between\n" "characters and lines resulting in a rainbow effect." msgstr "" -#: gnu/packages/games.scm:1164 +#: gnu/packages/games.scm:1165 #, scheme-format msgid "" "This package provides the Fallout 2 game engine. Game data\n" "should be placed in @file{~/.local/share/falltergeist}." msgstr "" -#: gnu/packages/games.scm:1275 +#: gnu/packages/games.scm:1276 msgid "" "FooBillard++ is an advanced 3D OpenGL billiard game\n" "based on the original foobillard 3.0a sources from Florian Berger.\n" @@ -3402,7 +3520,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:1342 +#: gnu/packages/games.scm:1343 msgid "" "The Freedoom project aims to create a complete free content first person\n" "shooter game. Freedoom by itself is just the raw material for a game: it must\n" @@ -3411,7 +3529,7 @@ msgid "" "effects and music to make a completely free game." msgstr "" -#: gnu/packages/games.scm:1392 +#: gnu/packages/games.scm:1394 msgid "" "Freedroid RPG is an @dfn{RPG} (Role-Playing Game) with isometric graphics.\n" "The game tells the story of a world destroyed by a conflict between robots and\n" @@ -3421,7 +3539,7 @@ msgid "" "real-time combat." msgstr "" -#: gnu/packages/games.scm:1471 +#: gnu/packages/games.scm:1473 msgid "" "Golly simulates Conway's Game of Life and many other types of cellular\n" "automata. The following features are available:\n" @@ -3442,14 +3560,14 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:1527 +#: gnu/packages/games.scm:1529 #, fuzzy msgid "" "This package provides a userspace daemon for the Nintendo\n" "Joy-Con controllers." msgstr "Este paquete proporciona un diccionario para el comprobador ortográfico GNU Aspell." -#: gnu/packages/games.scm:1557 +#: gnu/packages/games.scm:1559 msgid "" "Engine for Caesar III, a city-building real-time strategy game.\n" "Julius includes some UI enhancements while preserving the logic (including\n" @@ -3457,7 +3575,7 @@ msgid "" "does not include game data." msgstr "" -#: gnu/packages/games.scm:1591 +#: gnu/packages/games.scm:1593 msgid "" "Fork of Julius, an engine for the a city-building real-time strategy\n" "game Caesar III. Gameplay enhancements include:\n" @@ -3472,7 +3590,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/games.scm:1630 +#: gnu/packages/games.scm:1632 msgid "" "Me and My Shadow is a puzzle/platform game in which you try\n" "to reach the exit by solving puzzles. Spikes, moving blocks, fragile blocks\n" @@ -3480,7 +3598,7 @@ msgid "" "shadow mimic them to reach blocks you couldn't reach alone." msgstr "" -#: gnu/packages/games.scm:1686 +#: gnu/packages/games.scm:1688 msgid "" "@code{Open Surge} is a 2D retro side-scrolling platformer\n" "inspired by the Sonic games. The player runs at high speeds through each\n" @@ -3488,7 +3606,7 @@ msgid "" "built-in level editor." msgstr "" -#: gnu/packages/games.scm:1732 +#: gnu/packages/games.scm:1734 msgid "" "Knights is a multiplayer game involving several knights who\n" "must run around a dungeon and complete various quests. Each game revolves\n" @@ -3500,7 +3618,7 @@ msgid "" "destroying an ancient book using a special wand." msgstr "" -#: gnu/packages/games.scm:1780 +#: gnu/packages/games.scm:1781 msgid "" "GNOME 2048 provides a 2D grid for playing 2048, a\n" "single-player sliding tile puzzle game. The objective of the game is to merge\n" @@ -3508,7 +3626,7 @@ msgid "" "in one tile." msgstr "" -#: gnu/packages/games.scm:1819 +#: gnu/packages/games.scm:1820 msgid "" "GNOME Chess provides a 2D board for playing chess games\n" "against human or computer players. It supports loading and saving games in\n" @@ -3516,7 +3634,7 @@ msgid "" "such as chess or stockfish." msgstr "" -#: gnu/packages/games.scm:1880 +#: gnu/packages/games.scm:1881 msgid "" "The GNU backgammon application (also known as \"gnubg\") can\n" "be used for playing, analyzing and teaching the game. It has an advanced\n" @@ -3525,7 +3643,7 @@ msgid "" "also features an attractive, 3D representation of the playing board." msgstr "" -#: gnu/packages/games.scm:1921 +#: gnu/packages/games.scm:1922 msgid "" "GNUbik is a puzzle game in which you must manipulate a cube to make\n" "each of its faces have a uniform color. The game is customizable, allowing\n" @@ -3534,7 +3652,7 @@ msgid "" "scriptable with Guile." msgstr "" -#: gnu/packages/games.scm:1944 +#: gnu/packages/games.scm:1945 msgid "" "GNU Shogi is a program that plays the game Shogi (Japanese\n" "Chess). It is similar to standard chess but this variant is far more complicated." @@ -3543,7 +3661,7 @@ msgstr "" "parecido al ajedrez estándar pero esta variante es mucho más\n" "complicada." -#: gnu/packages/games.scm:1974 +#: gnu/packages/games.scm:1975 msgid "" "LTris is a tetris clone: differently shaped blocks are falling down the\n" "rectangular playing field and can be moved sideways or rotated by 90 degree\n" @@ -3557,7 +3675,7 @@ msgid "" "watch your CPU playing while enjoying a cup of tea!" msgstr "" -#: gnu/packages/games.scm:2097 +#: gnu/packages/games.scm:2098 msgid "" "NetHack is a single player dungeon exploration game that runs\n" "on a wide variety of computer systems, with a variety of graphical and text\n" @@ -3571,7 +3689,7 @@ msgid "" "role, and your gender." msgstr "" -#: gnu/packages/games.scm:2141 +#: gnu/packages/games.scm:2142 msgid "" "PipeWalker is a simple puzzle game with many diffent themes: connect all\n" "computers to one network server, bring water from a source to the taps, etc.\n" @@ -3580,17 +3698,17 @@ msgid "" "Every puzzle has a complete solution, although there may be more than one." msgstr "" -#: gnu/packages/games.scm:2190 +#: gnu/packages/games.scm:2191 msgid "PrBoom+ is a Doom source port developed from the original PrBoom project." msgstr "" -#: gnu/packages/games.scm:2240 +#: gnu/packages/games.scm:2241 msgid "" "ReTux is an action platformer loosely inspired by the Mario games,\n" "utilizing the art assets from the @code{SuperTux} project." msgstr "" -#: gnu/packages/games.scm:2350 +#: gnu/packages/games.scm:2351 msgid "" "RogueBox Adventures is a graphical roguelike with strong influences\n" "from sandbox games like Minecraft or Terraria. The main idea of RogueBox\n" @@ -3598,7 +3716,7 @@ msgid "" "can be explored and changed freely." msgstr "" -#: gnu/packages/games.scm:2462 +#: gnu/packages/games.scm:2463 msgid "" "Barbie Seahorse Adventures is a retro style platform arcade game.\n" "You are Barbie the seahorse who travels through the jungle, up to the\n" @@ -3608,27 +3726,27 @@ msgid "" "and defeat them with your bubbles!" msgstr "" -#: gnu/packages/games.scm:2522 +#: gnu/packages/games.scm:2523 msgid "" "Solarus is a 2D game engine written in C++, that can run games\n" "scripted in Lua. It has been designed with 16-bit classic Action-RPGs\n" "in mind." msgstr "" -#: gnu/packages/games.scm:2551 +#: gnu/packages/games.scm:2552 msgid "" "Solarus Quest Editor is a graphical user interface to create and\n" "modify quests for the Solarus engine." msgstr "" -#: gnu/packages/games.scm:2627 +#: gnu/packages/games.scm:2628 msgid "" "In SuperStarfighter, up to four local players compete in a\n" "2D arena with fast-moving ships and missiles. Different game types are\n" "available, as well as a single-player mode with AI-controlled ships." msgstr "" -#: gnu/packages/games.scm:2760 +#: gnu/packages/games.scm:2761 msgid "" "Trigger-rally is a 3D rally simulation with great physics\n" "for drifting on over 200 maps. Different terrain materials like dirt,\n" @@ -3640,17 +3758,17 @@ msgid "" "equipped with spoken co-driver notes and co-driver icons." msgstr "" -#: gnu/packages/games.scm:2816 +#: gnu/packages/games.scm:2817 msgid "" "This package provides @command{ufo2map}, a program used to generate\n" "maps for the UFO: Alien Invasion strategy game." msgstr "" -#: gnu/packages/games.scm:2858 +#: gnu/packages/games.scm:2859 msgid "This package contains maps and other assets for UFO: Alien Invasion." msgstr "" -#: gnu/packages/games.scm:2945 +#: gnu/packages/games.scm:2946 msgid "" "UFO: Alien Invasion is a tactical strategy game set in the year 2084.\n" "You control a secret organisation charged with defending Earth from a brutal\n" @@ -3668,11 +3786,11 @@ msgid "" "properly." msgstr "" -#: gnu/packages/games.scm:2982 +#: gnu/packages/games.scm:2983 msgid "A graphical user interface for the package @code{gnushogi}." msgstr "Un interfaz gráfico para usuario para el paquete @code{gnushogi}." -#: gnu/packages/games.scm:3035 +#: gnu/packages/games.scm:3036 msgid "" "L'Abbaye des Morts is a 2D platform game set in 13th century\n" "France. The Cathars, who preach about good Christian beliefs, were being\n" @@ -3681,14 +3799,14 @@ msgid "" "that beneath its ruins lay buried an ancient evil." msgstr "" -#: gnu/packages/games.scm:3081 +#: gnu/packages/games.scm:3082 msgid "" "Angband is a Classic dungeon exploration roguelike. Explore\n" "the depths below Angband, seeking riches, fighting monsters, and preparing to\n" "fight Morgoth, the Lord of Darkness." msgstr "" -#: gnu/packages/games.scm:3129 +#: gnu/packages/games.scm:3130 msgid "" "Pingus is a free Lemmings-like puzzle game in which the player takes\n" "command of a bunch of small animals and has to guide them through levels.\n" @@ -3698,21 +3816,21 @@ msgid "" "level's exit. The game is presented in a 2D side view." msgstr "" -#: gnu/packages/games.scm:3152 +#: gnu/packages/games.scm:3153 msgid "" "The GNU Talk Filters are programs that convert English text\n" "into stereotyped or otherwise humorous dialects. The filters are provided as\n" "a C library, so they can easily be integrated into other programs." msgstr "" -#: gnu/packages/games.scm:3196 +#: gnu/packages/games.scm:3197 msgid "" "The player controls a character (one of three: Good, Bad, and Dead),\n" "dodges the missiles (lots of it cover the screen, but the character's hitbox\n" "is very small), and shoot at the adversaries that keep appear on the screen." msgstr "" -#: gnu/packages/games.scm:3239 +#: gnu/packages/games.scm:3240 msgid "" "CMatrix simulates the display from \"The Matrix\" and is\n" "based on the screensaver from the movie's website. It works with terminal\n" @@ -3725,7 +3843,7 @@ msgstr "" "líneas al mismo ritmo o de forma asíncrona y a una velocidad definida\n" "por la usuaria." -#: gnu/packages/games.scm:3270 +#: gnu/packages/games.scm:3271 msgid "" "GNU Chess is a chess engine. It allows you to compete\n" "against the computer in a game of chess, either through the default terminal\n" @@ -3736,7 +3854,7 @@ msgstr "" "predeterminada del terminal o mediante una interfaz visual externa\n" "como GNU XBoard." -#: gnu/packages/games.scm:3332 +#: gnu/packages/games.scm:3333 msgid "" "GNU FreeDink is a free and portable re-implementation of the engine\n" "for the role-playing game Dink Smallwood. It supports not only the original\n" @@ -3744,17 +3862,17 @@ msgid "" "To that extent, it also includes a front-end for managing all of your D-Mods." msgstr "" -#: gnu/packages/games.scm:3360 +#: gnu/packages/games.scm:3361 msgid "This package contains the game data of GNU Freedink." msgstr "" -#: gnu/packages/games.scm:3383 +#: gnu/packages/games.scm:3384 msgid "" "DFArc makes it easy to play and manage the GNU FreeDink game\n" "and its numerous D-Mods." msgstr "" -#: gnu/packages/games.scm:3453 +#: gnu/packages/games.scm:3454 msgid "" "GNU XBoard is a graphical board for all varieties of chess,\n" "including international chess, xiangqi (Chinese chess), shogi (Japanese chess)\n" @@ -3769,7 +3887,7 @@ msgstr "" "interactiva y puede cargar y almacenar juegos en la notación de juegos\n" "portable (PGN)." -#: gnu/packages/games.scm:3488 +#: gnu/packages/games.scm:3489 msgid "" "GNU Typist is a universal typing tutor. It can be used to learn and\n" "practice touch-typing. Several tutorials are included; in addition to\n" @@ -3778,7 +3896,7 @@ msgid "" "are primarily in English, however some in other languages are provided." msgstr "" -#: gnu/packages/games.scm:3560 +#: gnu/packages/games.scm:3561 msgid "" "The Irrlicht Engine is a high performance realtime 3D engine written in\n" "C++. Features include an OpenGL renderer, extensible materials, scene graph\n" @@ -3786,7 +3904,7 @@ msgid "" "for common mesh file formats, and collision detection." msgstr "" -#: gnu/packages/games.scm:3611 +#: gnu/packages/games.scm:3612 msgid "" "M.A.R.S. is a 2D space shooter with pretty visual effects and\n" "attractive physics. Players can battle each other or computer controlled\n" @@ -3794,7 +3912,7 @@ msgid "" "match, cannon keep, and grave-itation pit." msgstr "" -#: gnu/packages/games.scm:3650 +#: gnu/packages/games.scm:3651 msgid "" "Glk defines a portable API for applications with text UIs. It was\n" "primarily designed for interactive fiction, but it should be suitable for many\n" @@ -3803,7 +3921,7 @@ msgid "" "using the @code{curses.h} library for screen control." msgstr "" -#: gnu/packages/games.scm:3690 +#: gnu/packages/games.scm:3691 msgid "" "Glulx is a 32-bit portable virtual machine intended for writing and\n" "playing interactive fiction. It was designed by Andrew Plotkin to relieve\n" @@ -3811,28 +3929,28 @@ msgid "" "reference interpreter, using the Glk API." msgstr "" -#: gnu/packages/games.scm:3716 +#: gnu/packages/games.scm:3717 msgid "" "Fifechan is a lightweight cross platform GUI library written in C++\n" "specifically designed for games. It has a built in set of extendable GUI\n" "Widgets, and allows users to create more." msgstr "" -#: gnu/packages/games.scm:3791 +#: gnu/packages/games.scm:3792 msgid "" "@acronym{FIFE, Flexible Isometric Free Engine} is a multi-platform\n" "isometric game engine. Python bindings are included allowing users to create\n" "games using Python as well as C++." msgstr "" -#: gnu/packages/games.scm:3826 +#: gnu/packages/games.scm:3827 msgid "" "Fizmo is a console-based Z-machine interpreter. It is used to play\n" "interactive fiction, also known as text adventures, which were implemented\n" "either by Infocom or created using the Inform compiler." msgstr "" -#: gnu/packages/games.scm:3849 +#: gnu/packages/games.scm:3850 msgid "" "GNU Go is a program that plays the game of Go, in which players\n" "place stones on a grid to form territory or capture other stones. While\n" @@ -3843,7 +3961,7 @@ msgid "" "Protocol)." msgstr "" -#: gnu/packages/games.scm:3878 +#: gnu/packages/games.scm:3879 msgid "" "Extreme Tux Racer, or etracer as it is called for short, is\n" "a simple OpenGL racing game featuring Tux, the Linux mascot. The goal of the\n" @@ -3856,7 +3974,7 @@ msgid "" "This game is based on the GPL version of the famous game TuxRacer." msgstr "" -#: gnu/packages/games.scm:3952 +#: gnu/packages/games.scm:3953 msgid "" "SuperTuxKart is a 3D kart racing game, with a focus on\n" "having fun over realism. You can play with up to 4 friends on one PC, racing\n" @@ -3864,7 +3982,7 @@ msgid "" "also available." msgstr "" -#: gnu/packages/games.scm:4028 +#: gnu/packages/games.scm:4029 msgid "" "Unknown Horizons is a 2D realtime strategy simulation with an emphasis\n" "on economy and city building. Expand your small settlement to a strong and\n" @@ -3873,7 +3991,7 @@ msgid "" "trade and diplomacy." msgstr "" -#: gnu/packages/games.scm:4081 +#: gnu/packages/games.scm:4082 msgid "" "GNUjump is a simple, yet addictive game in which you must jump from\n" "platform to platform to avoid falling, while the platforms drop at faster rates\n" @@ -3881,7 +3999,7 @@ msgid "" "falling, themeable graphics and sounds, and replays." msgstr "" -#: gnu/packages/games.scm:4117 +#: gnu/packages/games.scm:4118 msgid "" "The Battle for Wesnoth is a fantasy, turn based tactical strategy game,\n" "with several single player campaigns, and multiplayer games (both networked and\n" @@ -3893,20 +4011,20 @@ msgid "" "next campaign." msgstr "" -#: gnu/packages/games.scm:4137 +#: gnu/packages/games.scm:4138 msgid "" "This package contains a dedicated server for @emph{The\n" "Battle for Wesnoth}." msgstr "" -#: gnu/packages/games.scm:4179 +#: gnu/packages/games.scm:4180 msgid "" "Gamine is a game designed for young children who are learning to use the\n" "mouse and keyboard. The child uses the mouse to draw colored dots and lines\n" "on the screen and keyboard to display letters." msgstr "" -#: gnu/packages/games.scm:4211 +#: gnu/packages/games.scm:4212 msgid "" "ManaPlus is a 2D MMORPG client for game servers. It is the only\n" "fully supported client for @uref{http://www.themanaworld.org, The mana\n" @@ -3914,7 +4032,7 @@ msgid "" "@uref{http://landoffire.org, Land of fire}." msgstr "" -#: gnu/packages/games.scm:4243 +#: gnu/packages/games.scm:4244 msgid "" "OpenTTD is a game in which you transport goods and\n" "passengers by land, water and air. It is a re-implementation of Transport\n" @@ -3924,7 +4042,7 @@ msgid "" "engine. When you start it you will be prompted to download a graphics set." msgstr "" -#: gnu/packages/games.scm:4303 +#: gnu/packages/games.scm:4304 msgid "" "The OpenGFX project is an implementation of the OpenTTD base graphics\n" "set that aims to ensure the best possible out-of-the-box experience.\n" @@ -3939,29 +4057,29 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:4361 +#: gnu/packages/games.scm:4362 msgid "" "OpenSFX is a set of free base sounds for OpenTTD which make\n" "it possible to play OpenTTD without requiring the proprietary sound files from\n" "the original Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4404 +#: gnu/packages/games.scm:4405 msgid "" "OpenMSX is a music set for OpenTTD which makes it possible\n" "to play OpenTTD without requiring the proprietary music from the original\n" "Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4473 +#: gnu/packages/games.scm:4474 msgid "openrct2-title-sequences is a set of title sequences for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4513 +#: gnu/packages/games.scm:4514 msgid "openrct2-objects is a set of objects for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4576 +#: gnu/packages/games.scm:4577 msgid "" "OpenRCT2 is a free software re-implementation of\n" "RollerCoaster Tycoon 2 (RCT2). The gameplay revolves around building and\n" @@ -3971,13 +4089,13 @@ msgid "" "images, etc.)" msgstr "" -#: gnu/packages/games.scm:4630 +#: gnu/packages/games.scm:4631 msgid "" "The Emilia Pinball Project is a pinball simulator. There\n" "are only two levels to play with, but they are very addictive." msgstr "" -#: gnu/packages/games.scm:4659 +#: gnu/packages/games.scm:4660 msgid "" "Pioneers is an emulation of the board game The Settlers of\n" "Catan. It can be played on a local network, on the internet, and with AI\n" @@ -3986,14 +4104,14 @@ msgstr "" "Pioneros es una emulación del juego The Settlers od Catan.\n" "Puede jugarse en una red local, o en interred, y con jugadores IA." -#: gnu/packages/games.scm:4701 +#: gnu/packages/games.scm:4702 msgid "" "The goal of this logic game is to open all cards in a 6x6\n" "grid, using a number of hints as to their relative position. The game idea\n" "is attributed to Albert Einstein." msgstr "" -#: gnu/packages/games.scm:4731 +#: gnu/packages/games.scm:4732 msgid "" "POWWOW is a client software which can be used for telnet as well as for\n" "@dfn{Multi-User Dungeon} (MUD). Additionally it can serve as a nice client for\n" @@ -4001,21 +4119,21 @@ msgid "" "http://lavachat.symlynx.com/unix/" msgstr "" -#: gnu/packages/games.scm:4838 +#: gnu/packages/games.scm:4839 msgid "" "Red Eclipse is an arena shooter, created from the Cube2 engine.\n" "Offering an innovative parkour system and distinct but all potent weapons,\n" "Red Eclipse provides fast paced and accessible gameplay." msgstr "" -#: gnu/packages/games.scm:4903 +#: gnu/packages/games.scm:4904 msgid "" "Grue Hunter is a text adventure game written in Perl. You must make\n" "your way through an underground cave system in search of the Grue. Can you\n" "capture it and get out alive?" msgstr "" -#: gnu/packages/games.scm:4942 +#: gnu/packages/games.scm:4943 msgid "" "lierolibre is an earthworm action game where you fight another player\n" "(or the computer) underground using a wide array of weapons.\n" @@ -4040,14 +4158,14 @@ msgid "" "fullscreen, use F5 or Alt+Enter." msgstr "" -#: gnu/packages/games.scm:5021 +#: gnu/packages/games.scm:5022 msgid "" "Tennix is a 2D tennis game. You can play against the\n" "computer or against another player using the keyboard. The game runs\n" "in-window at 640x480 resolution or fullscreen." msgstr "" -#: gnu/packages/games.scm:5105 +#: gnu/packages/games.scm:5106 msgid "" "Warzone 2100 offers campaign, multi-player, and single-player skirmish\n" "modes. An extensive tech tree with over 400 different technologies, combined\n" @@ -4055,7 +4173,7 @@ msgid "" "tactics." msgstr "" -#: gnu/packages/games.scm:5184 +#: gnu/packages/games.scm:5185 msgid "" "In Widelands, you are the regent of a small clan. You start out with\n" "nothing but your headquarters, where all your resources are stored.\n" @@ -4077,7 +4195,7 @@ msgid "" "of war. Widelands also offers an Artificial Intelligence to challenge you." msgstr "" -#: gnu/packages/games.scm:5236 +#: gnu/packages/games.scm:5237 msgid "" "In the year 2579, the intergalactic weapons corporation, WEAPCO, has\n" "dominated the galaxy. Guide Chris Bainfield and his friend Sid Wilson on\n" @@ -4091,7 +4209,7 @@ msgstr "" "necesitara colaborar nuevos enemigos, crear nuevas alianzas, y asistir\n" "rebeliones locales en intentos dente la corporación maligna." -#: gnu/packages/games.scm:5267 +#: gnu/packages/games.scm:5268 msgid "" "In this game you are the captain of the cargo ship Chromium B.S.U. and\n" "are responsible for delivering supplies to the troops on the front line. Your\n" @@ -4099,7 +4217,7 @@ msgid "" "safety of the Chromium vessel." msgstr "" -#: gnu/packages/games.scm:5350 +#: gnu/packages/games.scm:5351 msgid "" "Tux Paint is a free drawing program designed for young children (kids\n" "ages 3 and up). It has a simple, easy-to-use interface; fun sound effects;\n" @@ -4108,23 +4226,23 @@ msgid "" "your child be creative." msgstr "" -#: gnu/packages/games.scm:5390 +#: gnu/packages/games.scm:5391 msgid "" "This package contains a set of \"Rubber Stamp\" images which can be used\n" "with the \"Stamp\" tool within Tux Paint." msgstr "" -#: gnu/packages/games.scm:5439 +#: gnu/packages/games.scm:5440 msgid "Tux Paint Config is a graphical configuration editor for Tux Paint." msgstr "" -#: gnu/packages/games.scm:5491 +#: gnu/packages/games.scm:5492 msgid "" "SuperTux is a classic 2D jump'n run sidescroller game in\n" "a style similar to the original Super Mario games." msgstr "" -#: gnu/packages/games.scm:5523 +#: gnu/packages/games.scm:5524 msgid "" "TinTin++ is a MUD client which supports MCCP (Mud Client Compression\n" "Protocol), MMCP (Mud Master Chat Protocol), xterm 256 colors, most TELNET\n" @@ -4132,7 +4250,7 @@ msgid "" "Linux / Mac OS X servers, and an auto mapper with a VT100 map display." msgstr "" -#: gnu/packages/games.scm:5563 +#: gnu/packages/games.scm:5564 msgid "" "Learn programming, playing with ants and spider webs ;-)\n" "Your robot ant can be programmed in many languages: OCaml, Python, C, C++,\n" @@ -4140,14 +4258,14 @@ msgid "" "programmers may also add their own favorite language." msgstr "" -#: gnu/packages/games.scm:5602 +#: gnu/packages/games.scm:5603 msgid "" "Bambam is a simple baby keyboard (and gamepad) masher\n" "application that locks the keyboard and mouse and instead displays bright\n" "colors, pictures, and sounds." msgstr "" -#: gnu/packages/games.scm:5663 +#: gnu/packages/games.scm:5664 msgid "" "Mr. Rescue is an arcade styled 2d action game centered around evacuating\n" "civilians from burning buildings. The game features fast-paced fire\n" @@ -4155,7 +4273,7 @@ msgid "" "throwing people around in pseudo-randomly generated buildings." msgstr "" -#: gnu/packages/games.scm:5770 +#: gnu/packages/games.scm:5771 msgid "" "HyperRogue is a game in which the player collects treasures and fights\n" "monsters -- rogue-like but for the fact that it is played on the hyperbolic\n" @@ -4169,13 +4287,13 @@ msgid "" "symbols, it still needs graphics to render the non-euclidean world." msgstr "" -#: gnu/packages/games.scm:5817 +#: gnu/packages/games.scm:5818 msgid "" "Kobo Deluxe is an enhanced version of Akira Higuchi's XKobo graphical game\n" "for Un*x systems with X11." msgstr "" -#: gnu/packages/games.scm:5845 +#: gnu/packages/games.scm:5846 msgid "" "Freeciv is a turn-based empire building strategy game\n" "inspired by the history of human civilization. The game commences in\n" @@ -4183,7 +4301,7 @@ msgid "" "into the Space Age." msgstr "" -#: gnu/packages/games.scm:5878 +#: gnu/packages/games.scm:5879 msgid "" "@code{No More Secrets} provides a command line tool called \"nms\"\n" "that recreates the famous data decryption effect seen on screen in the 1992\n" @@ -4194,25 +4312,25 @@ msgid "" "starting a decryption sequence to reveal the original plaintext characters." msgstr "" -#: gnu/packages/games.scm:5906 +#: gnu/packages/games.scm:5907 msgid "This package contains the data files required for MegaGlest." msgstr "" -#: gnu/packages/games.scm:5961 +#: gnu/packages/games.scm:5962 msgid "" "MegaGlest is a cross-platform 3D real-time strategy (RTS)\n" "game, where you control the armies of one of seven different factions: Tech,\n" "Magic, Egypt, Indians, Norsemen, Persian or Romans." msgstr "" -#: gnu/packages/games.scm:6013 +#: gnu/packages/games.scm:6014 msgid "" "In FreeGish you control Gish, a ball of tar who lives\n" "happily with his girlfriend Brea, until one day a mysterious dark creature\n" "emerges from a sewer hole and pulls her below ground." msgstr "" -#: gnu/packages/games.scm:6049 +#: gnu/packages/games.scm:6050 msgid "" "C-Dogs SDL is a classic overhead run-and-gun game,\n" "supporting up to 4 players in co-op and deathmatch modes. Customize your\n" @@ -4220,21 +4338,21 @@ msgid "" "over 100 user-created campaigns." msgstr "" -#: gnu/packages/games.scm:6149 +#: gnu/packages/games.scm:6150 msgid "" "Kiki the nano bot is a 3D puzzle game. It is basically a\n" "mixture of the games Sokoban and Kula-World. Your task is to help Kiki, a\n" "small robot living in the nano world, repair its maker." msgstr "" -#: gnu/packages/games.scm:6225 +#: gnu/packages/games.scm:6226 msgid "" "Teeworlds is an online multiplayer game. Battle with up to\n" "16 players in a variety of game modes, including Team Deathmatch and Capture\n" "The Flag. You can even design your own maps!" msgstr "" -#: gnu/packages/games.scm:6285 +#: gnu/packages/games.scm:6286 msgid "" "Enigma is a puzzle game with 550 unique levels. The object\n" "of the game is to find and uncover pairs of identically colored ‘Oxyd’ stones.\n" @@ -4246,7 +4364,7 @@ msgid "" "with the mouse isn’t always trivial." msgstr "" -#: gnu/packages/games.scm:6319 +#: gnu/packages/games.scm:6320 msgid "" "Chroma is an abstract puzzle game. A variety of colourful\n" "shapes are arranged in a series of increasingly complex patterns, forming\n" @@ -4256,7 +4374,7 @@ msgid "" "becoming difficult enough to tax even the brightest of minds." msgstr "" -#: gnu/packages/games.scm:6384 +#: gnu/packages/games.scm:6385 msgid "" "Fish Fillets NG is strictly a puzzle game. The goal in\n" "every of the seventy levels is always the same: find a safe way out. The fish\n" @@ -4265,14 +4383,14 @@ msgid "" "fish. The whole game is accompanied by quiet, comforting music." msgstr "" -#: gnu/packages/games.scm:6452 +#: gnu/packages/games.scm:6453 msgid "" "Dungeon Crawl Stone Soup (also known as \"Crawl\" or DCSS\n" "for short) is a roguelike adventure through dungeons filled with dangerous\n" "monsters in a quest to find the mystifyingly fabulous Orb of Zot." msgstr "" -#: gnu/packages/games.scm:6529 +#: gnu/packages/games.scm:6530 msgid "" "Lugaru is a third-person action game. The main character,\n" "Turner, is an anthropomorphic rebel bunny rabbit with impressive combat skills.\n" @@ -4282,11 +4400,11 @@ msgid "" "fight against their plot and save his fellow rabbits from slavery." msgstr "" -#: gnu/packages/games.scm:6574 +#: gnu/packages/games.scm:6575 msgid "0ad-data provides the data files required by the game 0ad." msgstr "0ad-data proporciona el fichero de datos solicitado por el juego 0ad." -#: gnu/packages/games.scm:6710 +#: gnu/packages/games.scm:6711 msgid "" "0 A.D. is a real-time strategy (RTS) game of ancient\n" "warfare. It's a historically-based war/economy game that allows players to\n" @@ -4302,7 +4420,7 @@ msgstr "" "\n" "0ad requiere un gestor de ventanas que sea compatible con 'Extended Window Manager Hints'." -#: gnu/packages/games.scm:6776 +#: gnu/packages/games.scm:6777 msgid "" "The original Colossal Cave Adventure from 1976 was the origin of all\n" "text adventures, dungeon-crawl (computer) games, and computer-hosted\n" @@ -4311,7 +4429,7 @@ msgid "" "``adventure 2.5'' and ``430-point adventure''." msgstr "" -#: gnu/packages/games.scm:6899 +#: gnu/packages/games.scm:6900 msgid "" "Tales of Maj’Eyal (ToME) RPG, featuring tactical turn-based\n" "combat and advanced character building. Play as one of many unique races and\n" @@ -4322,21 +4440,21 @@ msgid "" "Tales of Maj’Eyal offers engaging roguelike gameplay for the 21st century." msgstr "" -#: gnu/packages/games.scm:6945 +#: gnu/packages/games.scm:6946 msgid "" "Quakespasm is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7002 +#: gnu/packages/games.scm:7003 msgid "" "vkquake is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7067 +#: gnu/packages/games.scm:7068 msgid "" "Yamagi Quake II is an enhanced client for id Software's Quake II.\n" "The main focus is an unchanged single player experience like back in 1997,\n" @@ -4346,18 +4464,18 @@ msgid "" "making Yamagi Quake II one of the most solid Quake II implementations available." msgstr "" -#: gnu/packages/games.scm:7100 +#: gnu/packages/games.scm:7101 msgid "Nudoku is a ncurses-based Sudoku game for your terminal." msgstr "" -#: gnu/packages/games.scm:7146 +#: gnu/packages/games.scm:7147 msgid "" "The Butterfly Effect (tbe) is a game that uses\n" "realistic physics simulations to combine lots of simple mechanical\n" "elements to achieve a simple goal in the most complex way possible." msgstr "" -#: gnu/packages/games.scm:7192 +#: gnu/packages/games.scm:7193 msgid "" "Pioneer is a space adventure game set in our galaxy at the turn of the\n" "31st century. The game is open-ended, and you are free to eke out whatever\n" @@ -4368,14 +4486,14 @@ msgid "" "whatever you make of it." msgstr "" -#: gnu/packages/games.scm:7221 +#: gnu/packages/games.scm:7222 msgid "" "Badass generates false commits for a range of dates, essentially\n" "hacking the gamification of contribution graphs on platforms such as\n" "Github or Gitlab." msgstr "" -#: gnu/packages/games.scm:7294 +#: gnu/packages/games.scm:7295 msgid "" "Colobot: Gold Edition is a real-time strategy game, where\n" "you can program your units (bots) in a language called CBOT, which is similar\n" @@ -4383,7 +4501,7 @@ msgid "" "You can save humanity and get programming skills!" msgstr "" -#: gnu/packages/games.scm:7386 +#: gnu/packages/games.scm:7387 msgid "" "GZdoom is a port of the Doom 2 game engine, with a modern\n" "renderer. It improves modding support with ZDoom's advanced mapping features\n" @@ -4391,14 +4509,14 @@ msgid "" "Strife, Chex Quest, and fan-created games like Harmony, Hacx and Freedoom." msgstr "" -#: gnu/packages/games.scm:7425 +#: gnu/packages/games.scm:7426 msgid "" "Odamex is a modification of the Doom engine that\n" "allows players to easily join servers dedicated to playing Doom\n" "online." msgstr "" -#: gnu/packages/games.scm:7453 +#: gnu/packages/games.scm:7454 msgid "" "Chocolate Doom takes a different approach to other source ports. Its\n" "aim is to accurately reproduce the experience of playing Vanilla Doom. It is\n" @@ -4411,7 +4529,7 @@ msgid "" "affect gameplay)." msgstr "" -#: gnu/packages/games.scm:7493 +#: gnu/packages/games.scm:7494 msgid "" "Crispy Doom is a friendly fork of Chocolate Doom that provides a higher\n" "display resolution, removes the static limits of the Doom engine and offers\n" @@ -4420,23 +4538,23 @@ msgid "" "original." msgstr "" -#: gnu/packages/games.scm:7566 +#: gnu/packages/games.scm:7567 msgid "This package provides C11 / gnu11 utilities C library" msgstr "" -#: gnu/packages/games.scm:7635 +#: gnu/packages/games.scm:7636 msgid "" "Fortune is a command-line utility which displays a random\n" "quotation from a collection of quotes." msgstr "" -#: gnu/packages/games.scm:7677 +#: gnu/packages/games.scm:7678 msgid "Xonotic-data provides the data files required by the game Xonotic." msgstr "" "Xonotic-data proporciona los ficheros de datos necesarios para el\n" "juego Xonotic." -#: gnu/packages/games.scm:7873 +#: gnu/packages/games.scm:7874 msgid "" "Xonotic is a free, fast-paced first-person shooter.\n" "The project is geared towards providing addictive arena shooter\n" @@ -4446,7 +4564,7 @@ msgid "" "open-source FPS of its kind." msgstr "" -#: gnu/packages/games.scm:7920 +#: gnu/packages/games.scm:7921 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4455,7 +4573,7 @@ msgid "" "ncurses for text display." msgstr "" -#: gnu/packages/games.scm:7964 +#: gnu/packages/games.scm:7966 msgid "" "Naev is a 2d action/rpg space game that combines elements from\n" "the action, RPG and simulation genres. You pilot a spaceship from\n" @@ -4467,7 +4585,7 @@ msgid "" "of lore accompanying everything from planets to equipment." msgstr "" -#: gnu/packages/games.scm:8013 +#: gnu/packages/games.scm:8015 msgid "" "Frotz is an interpreter for Infocom games and\n" "other Z-machine games in the text adventure/interactive fiction genre.\n" @@ -4479,7 +4597,7 @@ msgid "" "to play games on webpages. It can also be made into a chat bot." msgstr "" -#: gnu/packages/games.scm:8075 +#: gnu/packages/games.scm:8077 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4489,7 +4607,7 @@ msgid "" "when packaged in Blorb container files or optionally from individual files." msgstr "" -#: gnu/packages/games.scm:8166 +#: gnu/packages/games.scm:8168 msgid "" "Frozen-Bubble is a clone of the popular Puzzle Bobble game, in which\n" "you attempt to shoot bubbles into groups of the same color to cause them to\n" @@ -4504,7 +4622,7 @@ msgid "" "their own levels." msgstr "" -#: gnu/packages/games.scm:8199 +#: gnu/packages/games.scm:8201 msgid "" "Libmanette is a small GObject library giving you simple\n" "access to game controllers. It supports the de-facto standard gamepads as\n" @@ -4512,7 +4630,7 @@ msgid "" "GameController." msgstr "" -#: gnu/packages/games.scm:8245 +#: gnu/packages/games.scm:8247 msgid "" "Quadrapassel comes from the classic falling-block game,\n" "Tetris. The goal of the game is to create complete horizontal lines of\n" @@ -4524,7 +4642,7 @@ msgid "" "your score gets higher, you level up and the blocks fall faster." msgstr "" -#: gnu/packages/games.scm:8294 +#: gnu/packages/games.scm:8296 msgid "" "Endless Sky is a 2D space trading and combat game. Explore\n" "other star systems. Earn money by trading, carrying passengers, or completing\n" @@ -4534,7 +4652,7 @@ msgid "" "civilized than your own." msgstr "" -#: gnu/packages/games.scm:8443 +#: gnu/packages/games.scm:8445 msgid "" "StepMania is a dance and rhythm game. It features 3D\n" "graphics, keyboard and dance pad support, and an editor for creating your own\n" @@ -4544,7 +4662,7 @@ msgid "" "to download and install them in @file{$HOME/.stepmania-X.Y/Songs} directory." msgstr "" -#: gnu/packages/games.scm:8479 +#: gnu/packages/games.scm:8481 msgid "" "@i{oshu!} is a minimalist variant of the @i{osu!} rhythm game,\n" "which is played by pressing buttons and following along sliders as they appear\n" @@ -4554,7 +4672,7 @@ msgid "" "download and unpack them separately." msgstr "" -#: gnu/packages/games.scm:8562 +#: gnu/packages/games.scm:8564 msgid "" "Battle Tanks (also known as \"btanks\") is a funny battle\n" "game, where you can choose one of three vehicles and eliminate your enemy\n" @@ -4563,7 +4681,7 @@ msgid "" "and cooperative." msgstr "" -#: gnu/packages/games.scm:8596 +#: gnu/packages/games.scm:8598 msgid "" "Slime Volley is a 2D arcade-oriented volleyball simulation, in\n" "the spirit of some Java games of the same name.\n" @@ -4574,7 +4692,7 @@ msgid "" "the ground, the set ends and all balls are served again." msgstr "" -#: gnu/packages/games.scm:8626 +#: gnu/packages/games.scm:8628 msgid "" "Slingshot is a two-dimensional strategy game where two\n" "players attempt to shoot one another through a section of space populated by\n" @@ -4582,14 +4700,14 @@ msgid "" "affected by the gravity of the planets." msgstr "" -#: gnu/packages/games.scm:8674 +#: gnu/packages/games.scm:8676 msgid "" "4D-TRIS is an alteration of the well-known Tetris game. The\n" "game field is extended to 4D space, which has to filled up by the gamer with\n" "4D hyper cubes." msgstr "" -#: gnu/packages/games.scm:8751 +#: gnu/packages/games.scm:8753 msgid "" "Arx Libertatis is a cross-platform port of Arx Fatalis, a 2002\n" "first-person role-playing game / dungeon crawler developed by Arkane Studios.\n" @@ -4599,7 +4717,7 @@ msgid "" "where the player draws runes in real time to effect the desired spell." msgstr "" -#: gnu/packages/games.scm:8797 +#: gnu/packages/games.scm:8799 msgid "" "The Legend of Edgar is a 2D platform game with a persistent world.\n" "When Edgar's father fails to return home after venturing out one dark and stormy night,\n" @@ -4607,7 +4725,7 @@ msgid "" "a fortress beyond the forbidden swamp." msgstr "" -#: gnu/packages/games.scm:8899 +#: gnu/packages/games.scm:8901 msgid "" "OpenClonk is a multiplayer action/tactics/skill game. It is\n" "often referred to as a mixture of The Settlers and Worms. In a simple 2D\n" @@ -4617,20 +4735,20 @@ msgid "" "fight each other on an arena-like map." msgstr "" -#: gnu/packages/games.scm:8931 +#: gnu/packages/games.scm:8933 msgid "" "Flare (Free Libre Action Roleplaying Engine) is a simple\n" "game engine built to handle a very specific kind of game: single-player 2D\n" "action RPGs." msgstr "" -#: gnu/packages/games.scm:8994 +#: gnu/packages/games.scm:8996 msgid "" "Flare is a single-player 2D action RPG with\n" "fast-paced action and a dark fantasy style." msgstr "" -#: gnu/packages/games.scm:9046 +#: gnu/packages/games.scm:9048 msgid "" "Far below the surface of the planet is a place of limitless\n" "power. Those that seek to control such a utopia will soon bring an end to\n" @@ -4644,7 +4762,7 @@ msgid "" "Orcus Dome from evil." msgstr "" -#: gnu/packages/games.scm:9108 +#: gnu/packages/games.scm:9110 msgid "" "Marble Marcher is a video game that uses a fractal physics\n" "engine and fully procedural rendering to produce beautiful and unique\n" @@ -4654,7 +4772,7 @@ msgid "" "levels to unlock." msgstr "" -#: gnu/packages/games.scm:9159 +#: gnu/packages/games.scm:9161 msgid "" "SimGear is a set of libraries designed to be used as\n" "building blocks for quickly assembling 3D simulations, games, and\n" @@ -4664,7 +4782,7 @@ msgstr "" # FUZZY # TODO: Revisar traducción. -#: gnu/packages/games.scm:9253 +#: gnu/packages/games.scm:9255 msgid "" "The goal of the FlightGear project is to create a\n" "sophisticated flight simulator framework for use in research or academic\n" @@ -4681,14 +4799,14 @@ msgstr "" "importante, como un simulador de vuelo de escritorio divertido,\n" "realista y desafiante." -#: gnu/packages/games.scm:9306 +#: gnu/packages/games.scm:9308 msgid "" "You, as a bunny, have to jump on your opponents to make them\n" "explode. It is a true multiplayer game; you cannot play this alone. You can\n" "play with up to four players simultaneously. It has network support." msgstr "" -#: gnu/packages/games.scm:9373 +#: gnu/packages/games.scm:9375 msgid "" "Hedgewars is a turn based strategy, artillery, action and comedy game,\n" "featuring the antics of pink hedgehogs with attitude as they battle from the\n" @@ -4698,7 +4816,7 @@ msgid "" "and bring the war to your enemy." msgstr "" -#: gnu/packages/games.scm:9407 +#: gnu/packages/games.scm:9409 msgid "" "The gruid module provides packages for easily building\n" "grid-based applications in Go. The library abstracts rendering and input for\n" @@ -4708,13 +4826,13 @@ msgid "" "application." msgstr "" -#: gnu/packages/games.scm:9437 +#: gnu/packages/games.scm:9439 msgid "" "The gruid-tcell module provides a Gruid driver for building\n" "terminal full-window applications." msgstr "" -#: gnu/packages/games.scm:9464 +#: gnu/packages/games.scm:9466 msgid "" "Harmonist: Dayoriah Clan Infiltration is a stealth\n" "coffee-break roguelike game. The game has a heavy focus on tactical\n" @@ -4724,7 +4842,7 @@ msgid "" "on items and player adaptability for character progression." msgstr "" -#: gnu/packages/games.scm:9573 +#: gnu/packages/games.scm:9575 msgid "" "Drascula: The Vampire Strikes Back is a classic humorous 2D\n" "point and click adventure game.\n" @@ -4736,7 +4854,7 @@ msgid "" "the World and demonstrating that he is even more evil than his brother Vlad." msgstr "" -#: gnu/packages/games.scm:9653 +#: gnu/packages/games.scm:9655 msgid "" "Lure of the Temptress is a classic 2D point and click adventure game.\n" "\n" @@ -4755,7 +4873,7 @@ msgid "" "Skorl. Maybe it would be an idea to try and escape..." msgstr "" -#: gnu/packages/games.scm:9752 +#: gnu/packages/games.scm:9754 msgid "" "Flight of the Amazon Queen is a 2D point-and-click\n" "adventure game set in the 1940s.\n" @@ -4772,7 +4890,7 @@ msgid "" "women and 6-foot-tall pygmies." msgstr "" -#: gnu/packages/games.scm:9852 +#: gnu/packages/games.scm:9854 msgid "" "Beneath a Steel Sky is a science-fiction thriller set in a bleak\n" "post-apocalyptic vision of the future. It revolves around Union City,\n" @@ -4795,7 +4913,7 @@ msgid "" "and to seek vengeance for the killing of his tribe." msgstr "" -#: gnu/packages/games.scm:9911 +#: gnu/packages/games.scm:9913 msgid "" "GNU Robots is a game in which you program a robot to explore a world\n" "full of enemies that can hurt it, obstacles and food to be eaten. The goal of\n" @@ -4803,14 +4921,14 @@ msgid "" "may be written in a plain text file in the Scheme programming language." msgstr "" -#: gnu/packages/games.scm:9981 +#: gnu/packages/games.scm:9983 msgid "" "Ri-li is a game in which you drive a wooden toy\n" "steam locomotive across many levels and collect all the coaches to\n" "win." msgstr "" -#: gnu/packages/games.scm:10037 +#: gnu/packages/games.scm:10039 msgid "" "FreeOrion is a turn-based space empire and galactic conquest (4X)\n" "computer game being designed and built by the FreeOrion project. Control an\n" @@ -4820,14 +4938,14 @@ msgid "" "remake of that series or any other game." msgstr "" -#: gnu/packages/games.scm:10093 +#: gnu/packages/games.scm:10095 msgid "" "Leela-zero is a Go engine with no human-provided knowledge, modeled after\n" "the AlphaGo Zero paper. The current best network weights file for the engine\n" "can be downloaded from @url{https://zero.sjeng.org/best-network}." msgstr "" -#: gnu/packages/games.scm:10171 +#: gnu/packages/games.scm:10173 msgid "" "This a tool for Go players which performs the following functions:\n" "@itemize\n" @@ -4839,7 +4957,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:10214 +#: gnu/packages/games.scm:10216 msgid "" "KTuberling is a drawing toy intended for small children and\n" "adults who remain young at heart. The game has no winner; the only purpose is\n" @@ -4858,7 +4976,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10260 +#: gnu/packages/games.scm:10262 msgid "" "Picmi is a number logic game in which cells in a grid have\n" "to be colored or left blank according to numbers given at the side of the\n" @@ -4867,7 +4985,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10297 +#: gnu/packages/games.scm:10299 msgid "" "Kolf is a miniature golf game for one to ten players. The\n" "game is played from an overhead view, with a short bar representing the golf\n" @@ -4886,13 +5004,13 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10341 +#: gnu/packages/games.scm:10343 msgid "" "Shared library and common files for kmahjongg, kshisen and\n" "other Mah Jongg like games." msgstr "" -#: gnu/packages/games.scm:10374 +#: gnu/packages/games.scm:10376 msgid "" "In KMahjongg the tiles are scrambled and staked on top of\n" "each other to resemble a certain shape. The player is then expected to remove\n" @@ -4904,7 +5022,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10416 +#: gnu/packages/games.scm:10418 msgid "" "KShisen is a solitaire-like game played using the standard\n" "set of Mahjong tiles. Unlike Mahjong however, KShisen has only one layer of\n" @@ -4913,7 +5031,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10471 +#: gnu/packages/games.scm:10473 msgid "" "Kajongg is the ancient Chinese board game for 4 players.\n" "\n" @@ -4928,7 +5046,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10513 +#: gnu/packages/games.scm:10515 msgid "" "KBreakout is similar to the classics breakout and xboing,\n" "featuring a number of added graphical enhancements and effects. You control a\n" @@ -4938,7 +5056,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10551 +#: gnu/packages/games.scm:10553 msgid "" "KMines is a classic Minesweeper game. The idea is to\n" "uncover all the squares without blowing up any mines. When a mine is blown\n" @@ -4947,7 +5065,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10588 +#: gnu/packages/games.scm:10590 msgid "" "Konquest is the KDE version of Gnu-Lactic Konquest. Players\n" "conquer other planets by sending ships to them. The goal is to build an\n" @@ -4958,7 +5076,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10627 +#: gnu/packages/games.scm:10629 msgid "" "KBounce is a single player arcade game with the elements of\n" "puzzle. It is played on a field, surrounded by wall, with two or more balls\n" @@ -4968,7 +5086,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10665 +#: gnu/packages/games.scm:10667 msgid "" "KBlocks is the classic Tetris-like falling blocks game.\n" "\n" @@ -4980,7 +5098,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10708 +#: gnu/packages/games.scm:10710 msgid "" "KSudoku is a Sudoku game and solver, supporting a range of\n" "2D and 3D Sudoku variants. In addition to playing Sudoku, it can print Sudoku\n" @@ -5009,7 +5127,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10763 +#: gnu/packages/games.scm:10765 msgid "" "KLines is a simple but highly addictive one player game.\n" "\n" @@ -5026,7 +5144,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10806 +#: gnu/packages/games.scm:10808 msgid "" "KGoldrunner is an action game where the hero runs through a\n" "maze, climbs stairs, dig holes and dodges enemies in order to collect all the\n" @@ -5040,7 +5158,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10849 +#: gnu/packages/games.scm:10851 msgid "" "KDiamond is a three-in-a-row game like Bejeweled. It\n" "features unlimited fun with randomly generated games and five difficulty\n" @@ -5049,7 +5167,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10885 +#: gnu/packages/games.scm:10887 msgid "" "KFourInLine is a board game for two players based on the\n" "Connect-Four game.\n" @@ -5060,7 +5178,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10924 +#: gnu/packages/games.scm:10926 msgid "" "KBlackbox is a game of hide and seek played on a grid of\n" "boxes where the computer has hidden several balls. The position of the hidden\n" @@ -5072,7 +5190,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10964 +#: gnu/packages/games.scm:10966 msgid "" "KNetWalk is a small game where you have to build up a\n" "computer network by rotating the wires to connect the terminals to the server.\n" @@ -5085,7 +5203,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11002 +#: gnu/packages/games.scm:11004 msgid "" "Bomber is a single player arcade game.\n" "\n" @@ -5101,7 +5219,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11047 +#: gnu/packages/games.scm:11049 msgid "" "Granatier is a clone of the classic Bomberman game,\n" "inspired by the work of the Clanbomber clone.\n" @@ -5109,7 +5227,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11085 +#: gnu/packages/games.scm:11087 msgid "" "KsirK is a multi-player network-enabled game. The goal of\n" "the game is simply to conquer the world by attacking your neighbors with your\n" @@ -5134,7 +5252,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11145 +#: gnu/packages/games.scm:11147 msgid "" "Palapeli is a jigsaw puzzle game. Unlike other games in\n" "that genre, you are not limited to aligning pieces on imaginary grids. The\n" @@ -5146,7 +5264,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11184 +#: gnu/packages/games.scm:11186 msgid "" "Kiriki is an addictive and fun dice game, designed to be\n" "played by as many as six players.\n" @@ -5157,7 +5275,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11224 +#: gnu/packages/games.scm:11226 msgid "" "Kigo is an open-source implementation of the popular Go\n" "game.\n" @@ -5174,7 +5292,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11269 +#: gnu/packages/games.scm:11271 msgid "" "Kubrick is a game based on the Rubik's Cube puzzle.\n" "\n" @@ -5187,7 +5305,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11309 +#: gnu/packages/games.scm:11311 msgid "" "Lieutnant Skat (from German \"Offiziersskat\") is a fun and\n" "engaging card game for two players, where the second player is either live\n" @@ -5198,7 +5316,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11347 +#: gnu/packages/games.scm:11349 msgid "" "Kapman is a clone of the well known game Pac-Man.\n" "\n" @@ -5210,7 +5328,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11386 +#: gnu/packages/games.scm:11388 msgid "" "KSpaceduel is a space battle game for one or two players,\n" "where two ships fly around a star in a struggle to be the only survivor.\n" @@ -5218,7 +5336,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11419 +#: gnu/packages/games.scm:11421 msgid "" "Bovo is a Gomoku (from Japanese 五目並べ - lit. \"five\n" "points\") like game for two players, where the opponents alternate in placing\n" @@ -5229,7 +5347,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11457 +#: gnu/packages/games.scm:11459 msgid "" "Killbots is a simple game of evading killer robots.\n" "\n" @@ -5243,7 +5361,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11499 +#: gnu/packages/games.scm:11501 msgid "" "KSnakeDuel is a fast action game where you steer a snake\n" "which has to eat food. While eating the snake grows. But once a player\n" @@ -5253,7 +5371,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11535 +#: gnu/packages/games.scm:11537 msgid "" "In Kollision you use mouse to control a small blue ball in a\n" "closed space environment filled with small red balls, which move about\n" @@ -5264,7 +5382,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11575 +#: gnu/packages/games.scm:11577 msgid "" "KBattleship is a Battle Ship game for KDE.\n" "\n" @@ -5275,7 +5393,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11615 +#: gnu/packages/games.scm:11617 msgid "" "KReversi is a simple one player strategy game played\n" "against the computer.\n" @@ -5288,7 +5406,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11655 +#: gnu/packages/games.scm:11657 msgid "" "KSquares is an implementation of the popular paper based\n" "game Squares. Two players take turns connecting dots on a grid to complete\n" @@ -5297,7 +5415,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11692 +#: gnu/packages/games.scm:11694 msgid "" "KJumpingcube is a simple tactical game for one or two\n" "players, played on a grid of numbered squares. Each turn, players compete for\n" @@ -5306,7 +5424,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11782 +#: gnu/packages/games.scm:11784 msgid "" "X-Moto is a challenging 2D motocross platform game, where\n" "physics play an all important role in the gameplay. You need to\n" @@ -5314,27 +5432,27 @@ msgid "" "the more difficult challenges." msgstr "" -#: gnu/packages/games.scm:11827 +#: gnu/packages/games.scm:11829 msgid "" "Eboard is a chess board interface for ICS (Internet Chess Servers)\n" "and chess engines." msgstr "" -#: gnu/packages/games.scm:11880 +#: gnu/packages/games.scm:11882 msgid "" "ChessX is a chess database. With ChessX you can operate on your\n" "collection of chess games in many ways: browse, edit, add, organize, analyze,\n" "etc. You can also play games on FICS or against an engine." msgstr "" -#: gnu/packages/games.scm:11935 +#: gnu/packages/games.scm:11937 msgid "" "Stockfish is a very strong chess engine. It is much stronger than the\n" "best human chess grandmasters. It can be used with UCI-compatible GUIs like\n" "ChessX." msgstr "" -#: gnu/packages/games.scm:11964 +#: gnu/packages/games.scm:11966 msgid "" "Barrage is a rather destructive action game that puts you on a shooting\n" "range with the objective to hit as many dummy targets as possible within\n" @@ -5343,7 +5461,7 @@ msgid "" "get high scores." msgstr "" -#: gnu/packages/games.scm:11990 +#: gnu/packages/games.scm:11992 msgid "" "This is a clone of the classic game BurgerTime. In it, you play\n" "the part of a chef who must create burgers by stepping repeatedly on\n" @@ -5353,7 +5471,7 @@ msgid "" "protect you." msgstr "" -#: gnu/packages/games.scm:12018 +#: gnu/packages/games.scm:12020 msgid "" "Seven Kingdoms, designed by Trevor Chan, brings a blend of Real-Time\n" "Strategy with the addition of trade, diplomacy, and espionage. The game\n" @@ -5363,7 +5481,7 @@ msgid "" "kingdom." msgstr "" -#: gnu/packages/games.scm:12134 +#: gnu/packages/games.scm:12136 msgid "" "In the grand tradition of Marble Madness and Super Monkey Ball,\n" "Neverball has you guide a rolling ball through dangerous territory. Balance\n" @@ -5373,13 +5491,13 @@ msgid "" "game." msgstr "" -#: gnu/packages/games.scm:12210 +#: gnu/packages/games.scm:12212 msgid "" "With PokerTH you can play the Texas holdem poker game, either against\n" "computer opponents or against real players online." msgstr "" -#: gnu/packages/games.scm:12281 +#: gnu/packages/games.scm:12283 msgid "" "Xblackjack is a MOTIF/OLIT based tool constructed to get you ready for\n" "the casino. It was inspired by a book called \"Beat the Dealer\" by Edward\n" @@ -5388,13 +5506,13 @@ msgid "" "System\" (high-low system)." msgstr "" -#: gnu/packages/games.scm:12321 +#: gnu/packages/games.scm:12323 msgid "" "Pilot your ship inside a planet to find and rescue the colonists trapped\n" "inside the Zenith Colony." msgstr "" -#: gnu/packages/games.scm:12341 +#: gnu/packages/games.scm:12343 msgid "" "Provides a large set of Go-related services for X11:\n" "@itemize\n" @@ -5405,7 +5523,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:12401 +#: gnu/packages/games.scm:12403 msgid "" "Passage is meant to be a memento mori game. It presents an entire life,\n" "from young adulthood through old age and death, in the span of five minutes.\n" @@ -5414,21 +5532,21 @@ msgid "" "there's no right way to interpret it." msgstr "" -#: gnu/packages/games.scm:12435 +#: gnu/packages/games.scm:12437 msgid "" "High performance animated desktop background setter for\n" "X11 that won't set your CPU on fire, drain your laptop battery, or lower video\n" "game FPS." msgstr "" -#: gnu/packages/games.scm:12465 +#: gnu/packages/games.scm:12467 msgid "" "Curse of War is a fast-paced action strategy game originally\n" "implemented using ncurses user interface. An SDL graphical version is also\n" "available." msgstr "" -#: gnu/packages/games.scm:12496 +#: gnu/packages/games.scm:12498 msgid "" "Schiffbruch is a mix of building, strategy and adventure and gets played\n" "with a two-dimensional view. The game deals with the consequences of a ship\n" @@ -5437,13 +5555,13 @@ msgid "" "get attention, so you get found." msgstr "" -#: gnu/packages/games.scm:12556 +#: gnu/packages/games.scm:12558 msgid "" "This package provides port of Prince of Persia, based on the\n" "disassembly of the DOS version, extended with new features." msgstr "" -#: gnu/packages/games.scm:12587 +#: gnu/packages/games.scm:12589 #, scheme-format msgid "" "@code{fheroes2} is an implementation of Heroes of Might and\n" @@ -5559,7 +5677,7 @@ msgid "" "from Markdown files." msgstr "" -#: gnu/packages/gettext.scm:311 +#: gnu/packages/gettext.scm:304 msgid "" "The po4a (PO for anything) project goal is to ease translations (and\n" "more interestingly, the maintenance of translations) using gettext tools on\n" @@ -5642,11 +5760,11 @@ msgid "" "system. It was forked from the GNU Image Manipulation Program." msgstr "" -#: gnu/packages/gnome.scm:284 +#: gnu/packages/gnome.scm:288 msgid "GUPnP-IGD is a library to handle UPnP IGD port mapping." msgstr "" -#: gnu/packages/gnome.scm:340 +#: gnu/packages/gnome.scm:344 msgid "" "Brasero is an application to burn CD/DVD for the Gnome\n" "Desktop. It is designed to be as simple as possible and has some unique\n" @@ -5657,7 +5775,7 @@ msgstr "" "algunas características únicas que permiten a las usuarias crear sus\n" "discos de manera fácil y rápida." -#: gnu/packages/gnome.scm:372 +#: gnu/packages/gnome.scm:376 msgid "" "Libcloudproviders is a DBus API that allows cloud storage sync\n" "clients to expose their services. Clients such as file managers and desktop\n" @@ -5665,13 +5783,13 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:444 +#: gnu/packages/gnome.scm:448 msgid "" "LibGRSS is a Glib abstraction to handle feeds in RSS, Atom,\n" "and other formats." msgstr "" -#: gnu/packages/gnome.scm:472 +#: gnu/packages/gnome.scm:476 msgid "" "GNOME-JS-Common provides common modules for GNOME JavaScript\n" "bindings." @@ -5679,7 +5797,7 @@ msgstr "" "GNOME-JS-Common proporciona módulos comunes del acceso a las\n" "bibliotecas de GNOME con Javascript." -#: gnu/packages/gnome.scm:555 +#: gnu/packages/gnome.scm:559 msgid "" "Seed is a library and interpreter, dynamically bridging\n" "(through GObjectIntrospection) the WebKit JavaScriptCore engine, with the\n" @@ -5688,21 +5806,21 @@ msgid "" "in JavaScript." msgstr "" -#: gnu/packages/gnome.scm:611 +#: gnu/packages/gnome.scm:615 msgid "" "Libdmapsharing is a library which allows programs to access,\n" "share and control the playback of media content using DMAP (DAAP, DPAP & DACP).\n" "It is written in C using GObject and libsoup." msgstr "" -#: gnu/packages/gnome.scm:644 +#: gnu/packages/gnome.scm:648 msgid "" "GTX is a small collection of convenience functions intended to\n" "enhance the GLib testing framework. With specific emphasis on easing the pain\n" "of writing test cases for asynchronous interactions." msgstr "" -#: gnu/packages/gnome.scm:721 +#: gnu/packages/gnome.scm:725 msgid "" "Dee is a library that uses DBus to provide objects allowing\n" "you to create Model-View-Controller type programs across DBus. It also consists\n" @@ -5710,7 +5828,7 @@ msgid "" "of known objects without needing a central registrar." msgstr "" -#: gnu/packages/gnome.scm:802 +#: gnu/packages/gnome.scm:806 msgid "" "Zeitgeist is a service which logs the users’s activities and\n" "events, anywhere from files opened to websites visited and conversations. It\n" @@ -5719,27 +5837,27 @@ msgid "" "patterns." msgstr "" -#: gnu/packages/gnome.scm:869 +#: gnu/packages/gnome.scm:871 msgid "" "GNOME Recipes helps you discover what to cook today,\n" "tomorrow, the rest of the week and for special occasions." msgstr "" -#: gnu/packages/gnome.scm:939 +#: gnu/packages/gnome.scm:940 msgid "" "GNOME Photos is a simple and elegant replacement for using a\n" "file manager to deal with photos. Enhance, crop and edit in a snap. Seamless\n" "cloud integration is offered through GNOME Online Accounts." msgstr "" -#: gnu/packages/gnome.scm:1007 +#: gnu/packages/gnome.scm:1008 msgid "" "GNOME Music is the new GNOME music playing application that\n" "aims to combine an elegant and immersive browsing experience with simple\n" "and straightforward controls." msgstr "" -#: gnu/packages/gnome.scm:1028 +#: gnu/packages/gnome.scm:1029 msgid "" "PortableXDR is an implementation of External Data\n" "Representation (XDR) Library. It is a standard data serialization format, for\n" @@ -5747,25 +5865,25 @@ msgid "" "between different kinds of computer systems." msgstr "" -#: gnu/packages/gnome.scm:1066 +#: gnu/packages/gnome.scm:1067 msgid "" "Tepl is a library that eases the development of\n" "GtkSourceView-based text editors and IDEs." msgstr "" -#: gnu/packages/gnome.scm:1107 +#: gnu/packages/gnome.scm:1108 msgid "" "krb5-auth-dialog is a simple dialog that monitors Kerberos\n" "tickets, and pops up a dialog when they are about to expire." msgstr "" -#: gnu/packages/gnome.scm:1132 +#: gnu/packages/gnome.scm:1133 msgid "" "Notification-Daemon is the server implementation of the\n" "freedesktop.org desktop notification specification." msgstr "" -#: gnu/packages/gnome.scm:1168 +#: gnu/packages/gnome.scm:1169 msgid "" "The mm-common module provides the build infrastructure\n" "and utilities shared among the GNOME C++ binding libraries. Release\n" @@ -5773,55 +5891,55 @@ msgid "" "Library reference documentation." msgstr "" -#: gnu/packages/gnome.scm:1214 +#: gnu/packages/gnome.scm:1215 msgid "" "PhoDav was initially developed as a file-sharing mechanism for Spice,\n" "but it is generic enough to be reused in other projects,\n" "in particular in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1267 +#: gnu/packages/gnome.scm:1268 msgid "" "GNOME Color Manager is a session framework that makes\n" "it easy to manage, install and generate color profiles\n" "in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1319 +#: gnu/packages/gnome.scm:1320 msgid "" "GNOME Online Miners provides a set of crawlers that\n" "go through your online content and index them locally in Tracker.\n" "It has miners for Facebook, Flickr, Google, ownCloud and SkyDrive." msgstr "" -#: gnu/packages/gnome.scm:1352 +#: gnu/packages/gnome.scm:1353 msgid "" "This package provides a library to handle resource discovery\n" "and announcement over @acronym{SSDP, Simple Service Discovery Protocol} and\n" "a debugging tool, @command{gssdp-device-sniffer}." msgstr "" -#: gnu/packages/gnome.scm:1391 +#: gnu/packages/gnome.scm:1392 msgid "" "This package provides GUPnP, an object-oriented framework\n" "for creating UPnP devices and control points, written in C using\n" "@code{GObject} and @code{libsoup}." msgstr "" -#: gnu/packages/gnome.scm:1423 +#: gnu/packages/gnome.scm:1424 msgid "" "This package provides a small utility library to\n" "support DLNA-related tasks such as media profile guessing, transcoding to a\n" "given profile, etc. DLNA is a subset of UPnP A/V." msgstr "" -#: gnu/packages/gnome.scm:1453 +#: gnu/packages/gnome.scm:1454 msgid "" "This package provides a small library for handling\n" "and implementation of UPnP A/V profiles." msgstr "" -#: gnu/packages/gnome.scm:1478 +#: gnu/packages/gnome.scm:1479 msgid "" "The libmediaart library is the foundation for media art caching,\n" "extraction, and lookup for applications on the desktop." @@ -5834,14 +5952,14 @@ msgid "" "tour of all gnome components and allows the user to set them up." msgstr "" -#: gnu/packages/gnome.scm:1584 +#: gnu/packages/gnome.scm:1583 msgid "" "GNOME User Share is a small package that binds together\n" "various free software projects to bring easy to use user-level file\n" "sharing to the masses." msgstr "" -#: gnu/packages/gnome.scm:1639 +#: gnu/packages/gnome.scm:1638 msgid "" "Sushi is a DBus-activated service that allows applications\n" "to preview files on the GNOME desktop." @@ -5896,7 +6014,7 @@ msgid "" "and system administrators." msgstr "" -#: gnu/packages/gnome.scm:1946 +#: gnu/packages/gnome.scm:1950 msgid "" "Dia can be used to draw different types of diagrams, and\n" "includes support for UML static structure diagrams (class diagrams), entity\n" @@ -5904,28 +6022,28 @@ msgid "" "formats like PNG, SVG, PDF and EPS." msgstr "" -#: gnu/packages/gnome.scm:1991 +#: gnu/packages/gnome.scm:1995 msgid "" "libgdata is a GLib-based library for accessing online service APIs using\n" "the GData protocol — most notably, Google's services. It provides APIs to\n" "access the common Google services, and has full asynchronous support." msgstr "" -#: gnu/packages/gnome.scm:2019 +#: gnu/packages/gnome.scm:2023 msgid "" "libgxps is a GObject-based library for handling and rendering XPS\n" "documents. This package also contains binaries that can convert XPS documents\n" "to other formats." msgstr "" -#: gnu/packages/gnome.scm:2060 +#: gnu/packages/gnome.scm:2063 msgid "" "Characters is a simple utility application to find\n" "and insert unusual characters. It allows you to quickly find the\n" "character you are looking for by searching for keywords." msgstr "" -#: gnu/packages/gnome.scm:2081 +#: gnu/packages/gnome.scm:2084 msgid "" "gnome-common contains various files needed to bootstrap\n" "GNOME modules built from Git. It contains a common \"autogen.sh\" script that\n" @@ -5938,13 +6056,13 @@ msgstr "" "fuente comprobado desde Git y empleados algunos normalmente en\n" "macros." -#: gnu/packages/gnome.scm:2142 +#: gnu/packages/gnome.scm:2145 msgid "" "GNOME Contacts organizes your contact information from online and\n" "offline sources, providing a centralized place for managing your contacts." msgstr "" -#: gnu/packages/gnome.scm:2222 +#: gnu/packages/gnome.scm:2225 msgid "" "The libgnome-desktop library provides API shared by several applications\n" "on the desktop, but that cannot live in the platform for various reasons.\n" @@ -5954,7 +6072,7 @@ msgid "" "The gnome-about program helps find which version of GNOME is installed." msgstr "" -#: gnu/packages/gnome.scm:2257 +#: gnu/packages/gnome.scm:2260 msgid "" "Gnome-doc-utils is a collection of documentation utilities for the\n" "Gnome project. It includes xml2po tool which makes it easier to translate\n" @@ -5965,18 +6083,18 @@ msgstr "" "facilita la traducción y mantiene actualizadas las traducciones de la\n" "documentación." -#: gnu/packages/gnome.scm:2309 +#: gnu/packages/gnome.scm:2311 msgid "Disk management utility for GNOME." msgstr "Utilidad de gestión de disco para GNOME." -#: gnu/packages/gnome.scm:2352 +#: gnu/packages/gnome.scm:2353 msgid "" "Application to show you the fonts installed on your computer\n" "for your use as thumbnails. Selecting any thumbnails shows the full view of how\n" "the font would look under various sizes." msgstr "" -#: gnu/packages/gnome.scm:2420 +#: gnu/packages/gnome.scm:2421 msgid "" "The GCR package contains libraries used for displaying certificates and\n" "accessing key stores. It also provides the viewer for crypto files on the\n" @@ -5986,15 +6104,15 @@ msgstr "" "certificados y el acceso a almacenes de claves. También se usa para la\n" "visualización de ficheros cifrados en el escritorio GNOME." -#: gnu/packages/gnome.scm:2459 +#: gnu/packages/gnome.scm:2460 msgid "This library provides docking features for gtk+." msgstr "" -#: gnu/packages/gnome.scm:2505 +#: gnu/packages/gnome.scm:2506 msgid "Client library to access passwords from the GNOME keyring." msgstr "Biblioteca para el acceso de clientes a contraseñas del anillo de claves de GNOME." -#: gnu/packages/gnome.scm:2575 +#: gnu/packages/gnome.scm:2576 msgid "" "gnome-keyring is a program that keeps passwords and other secrets for\n" "users. It is run as a daemon in the session, similar to ssh-agent, and other\n" @@ -6026,7 +6144,7 @@ msgstr "" "sustituir a los múltiples visores de documentos ya existentes en el\n" "escritorio GNOME con una única y simple aplicación." -#: gnu/packages/gnome.scm:2693 +#: gnu/packages/gnome.scm:2692 #, fuzzy #| msgid "" #| "Gsettings-desktop-schemas contains a collection of GSettings schemas\n" @@ -6039,7 +6157,7 @@ msgstr "" "configuración GSettings compartidos por varios componentes del\n" "escritorio GNOME." -#: gnu/packages/gnome.scm:2729 +#: gnu/packages/gnome.scm:2728 msgid "" "Liblarch is a Python library built to easily handle data structures such\n" "as lists, trees and acyclic graphs. There's also a GTK binding that will\n" @@ -6050,7 +6168,7 @@ msgid "" "and how they are displayed (View)." msgstr "" -#: gnu/packages/gnome.scm:2790 +#: gnu/packages/gnome.scm:2789 msgid "" "Getting Things GNOME! (GTG) is a personal tasks and TODO list items\n" "organizer for the GNOME desktop environment inspired by the Getting Things\n" @@ -6060,7 +6178,7 @@ msgid "" "know, from small tasks to large projects." msgstr "" -#: gnu/packages/gnome.scm:2829 +#: gnu/packages/gnome.scm:2828 msgid "" "To help with the transition to the Freedesktop Icon Naming\n" "Specification, the icon naming utility maps the icon names used by the\n" @@ -6071,17 +6189,17 @@ msgstr "" "nombres de icono usados en los escritorios GNOME y KDE con los nombres\n" "propuestos en la especificación." -#: gnu/packages/gnome.scm:2858 +#: gnu/packages/gnome.scm:2857 msgid "Icons for the GNOME desktop." msgstr "Iconos para el escritorio GNOME." -#: gnu/packages/gnome.scm:2897 +#: gnu/packages/gnome.scm:2896 msgid "" "This is an icon theme that follows the Tango visual\n" "guidelines." msgstr "Tema de iconos que sigue las guías de estilo visual Tango." -#: gnu/packages/gnome.scm:2927 +#: gnu/packages/gnome.scm:2926 msgid "" "The shared-mime-info package contains the core database of common types\n" "and the update-mime-database command used to extend it. It requires glib2 to\n" @@ -6097,7 +6215,7 @@ msgstr "" "quienes mantienen el proyecto. Esta base de datos se traduce en\n" "Transifex." -#: gnu/packages/gnome.scm:3012 +#: gnu/packages/gnome.scm:3011 msgid "" "system-config-printer is a CUPS administration tool. It's written in\n" "Python using GTK+, and uses the @acronym{IPP, Internet Printing Protocol} when\n" @@ -6109,11 +6227,11 @@ msgstr "" "configurar CUPS." # FUZZY -#: gnu/packages/gnome.scm:3036 +#: gnu/packages/gnome.scm:3035 msgid "Freedesktop icon theme." msgstr "Tema de iconos Freedesktop." -#: gnu/packages/gnome.scm:3085 +#: gnu/packages/gnome.scm:3084 msgid "" "Libnotify is a library that sends desktop notifications to a\n" "notification daemon, as defined in the Desktop Notifications spec. These\n" @@ -6121,7 +6239,7 @@ msgid "" "some form of information without getting in the user's way." msgstr "" -#: gnu/packages/gnome.scm:3132 +#: gnu/packages/gnome.scm:3131 msgid "" "Libpeas is a gobject-based plugin engine, targeted at giving every\n" "application the chance to assume its own extensibility. It also has a set of\n" @@ -6130,21 +6248,21 @@ msgid "" "API." msgstr "" -#: gnu/packages/gnome.scm:3168 +#: gnu/packages/gnome.scm:3167 msgid "" "GtkGLExt is an OpenGL extension to GTK+. It provides\n" "additional GDK objects which support OpenGL rendering in GTK+ and GtkWidget\n" "API add-ons to make GTK+ widgets OpenGL-capable." msgstr "" -#: gnu/packages/gnome.scm:3248 +#: gnu/packages/gnome.scm:3247 msgid "" "Glade is a rapid application development (RAD) tool to\n" "enable quick & easy development of user interfaces for the GTK+ toolkit and\n" "the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:3280 +#: gnu/packages/gnome.scm:3279 msgid "" "Libcroco is a standalone CSS2 parsing and manipulation library.\n" "The parser provides a low level event driven SAC-like API and a CSS object\n" @@ -6152,13 +6270,13 @@ msgid "" "XML/CSS rendering engine." msgstr "" -#: gnu/packages/gnome.scm:3347 +#: gnu/packages/gnome.scm:3346 msgid "" "Libgsf aims to provide an efficient extensible I/O abstraction\n" "for dealing with different structured file formats." msgstr "" -#: gnu/packages/gnome.scm:3526 +#: gnu/packages/gnome.scm:3525 msgid "" "Librsvg is a library to render SVG images to Cairo surfaces.\n" "GNOME uses this to render SVG icons. Outside of GNOME, other desktop\n" @@ -6166,7 +6284,7 @@ msgid "" "diagrams." msgstr "" -#: gnu/packages/gnome.scm:3649 +#: gnu/packages/gnome.scm:3648 msgid "" "Libidl is a library for creating trees of CORBA Interface\n" "Definition Language (idl) files, which is a specification for defining\n" @@ -6175,19 +6293,19 @@ msgid "" "functionality was designed to be as reusable and portable as possible." msgstr "" -#: gnu/packages/gnome.scm:3704 +#: gnu/packages/gnome.scm:3703 msgid "" "ORBit2 is a CORBA 2.4-compliant Object Request Broker (orb)\n" "featuring mature C, C++ and Python bindings." msgstr "" -#: gnu/packages/gnome.scm:3758 +#: gnu/packages/gnome.scm:3757 msgid "" "Bonobo is a framework for creating reusable components for\n" "use in GNOME applications, built on top of CORBA." msgstr "" -#: gnu/packages/gnome.scm:3789 +#: gnu/packages/gnome.scm:3788 msgid "" "Gconf is a system for storing application preferences. It\n" "is intended for user preferences; not arbitrary data storage." @@ -6196,64 +6314,64 @@ msgstr "" "aplicaciones. Está pensado para las preferencias de cada usuaria; no\n" "para el almacenamiento arbitrario de datos." -#: gnu/packages/gnome.scm:3823 +#: gnu/packages/gnome.scm:3822 msgid "" "GNOME Mime Data is a module which contains the base MIME\n" "and Application database for GNOME. The data stored by this module is\n" "designed to be accessed through the MIME functions in GnomeVFS." msgstr "" -#: gnu/packages/gnome.scm:3863 +#: gnu/packages/gnome.scm:3862 msgid "" "GnomeVFS is the core library used to access files and folders in GNOME\n" "applications. It provides a file system abstraction which allows applications\n" "to access local and remote files with a single consistent API." msgstr "" -#: gnu/packages/gnome.scm:3904 +#: gnu/packages/gnome.scm:3903 msgid "" "The libgnome library provides a number of useful routines\n" "for building modern applications, including session management, activation of\n" "files and URIs, and displaying help." msgstr "" -#: gnu/packages/gnome.scm:3928 +#: gnu/packages/gnome.scm:3927 msgid "" "Libart is a 2D drawing library intended as a\n" "high-quality vector-based 2D library with antialiasing and alpha composition." msgstr "" -#: gnu/packages/gnome.scm:3955 +#: gnu/packages/gnome.scm:3954 msgid "" "The GnomeCanvas widget provides a flexible widget for\n" "creating interactive structured graphics." msgstr "" -#: gnu/packages/gnome.scm:3977 +#: gnu/packages/gnome.scm:3976 msgid "C++ bindings to the GNOME Canvas library." msgstr "" -#: gnu/packages/gnome.scm:4003 +#: gnu/packages/gnome.scm:4002 msgid "" "The libgnomeui library provides additional widgets for\n" "applications. Many of the widgets from libgnomeui have already been\n" "ported to GTK+." msgstr "" -#: gnu/packages/gnome.scm:4029 +#: gnu/packages/gnome.scm:4028 msgid "" "Libglade is a library that provides interfaces for loading\n" "graphical interfaces described in glade files and for accessing the\n" "widgets built in the loading process." msgstr "" -#: gnu/packages/gnome.scm:4071 +#: gnu/packages/gnome.scm:4070 msgid "" "The Bonobo UI library provides a number of user interface\n" "controls using the Bonobo component framework." msgstr "" -#: gnu/packages/gnome.scm:4098 +#: gnu/packages/gnome.scm:4097 msgid "" "Libwnck is the Window Navigator Construction Kit, a library for use in\n" "writing pagers, tasklists, and more generally applications that are dealing\n" @@ -6261,11 +6379,11 @@ msgid "" "Hints specification (EWMH)." msgstr "" -#: gnu/packages/gnome.scm:4148 +#: gnu/packages/gnome.scm:4147 msgid "A GLib/GTK+ set of document-centric objects and utilities." msgstr "Un conjunto GLib/GTK+ de objetos y utilidades documentales-centrados." -#: gnu/packages/gnome.scm:4234 +#: gnu/packages/gnome.scm:4233 msgid "" "GNUmeric is a GNU spreadsheet application, running under GNOME. It is\n" "interoperable with other spreadsheet applications. It has a vast array of\n" @@ -6274,11 +6392,11 @@ msgid "" "engineering." msgstr "" -#: gnu/packages/gnome.scm:4290 +#: gnu/packages/gnome.scm:4289 msgid "Drawing is a basic image editor aiming at the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:4326 +#: gnu/packages/gnome.scm:4325 msgid "The default GNOME 3 themes (Adwaita and some accessibility themes)." msgstr "" @@ -6297,7 +6415,7 @@ msgid "" "targeting the GNOME stack simple." msgstr "" -#: gnu/packages/gnome.scm:4481 +#: gnu/packages/gnome.scm:4482 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, and a minimal sample application (vte) using that. Vte is mainly used in\n" @@ -6305,34 +6423,34 @@ msgid "" "editors, IDEs, etc." msgstr "" -#: gnu/packages/gnome.scm:4505 +#: gnu/packages/gnome.scm:4506 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, this fork provides additional functions exposed for keyboard text\n" "selection and URL hints." msgstr "" -#: gnu/packages/gnome.scm:4585 +#: gnu/packages/gnome.scm:4586 msgid "" "Vinagre is a remote display client supporting the VNC, SPICE\n" "and RDP protocols." msgstr "" -#: gnu/packages/gnome.scm:4631 +#: gnu/packages/gnome.scm:4633 msgid "" "Dconf is a low-level configuration system. Its main purpose\n" "is to provide a backend to GSettings on platforms that don't already have\n" "configuration storage systems." msgstr "" -#: gnu/packages/gnome.scm:4661 +#: gnu/packages/gnome.scm:4663 msgid "" "JSON-GLib is a library providing serialization and\n" "described by RFC 4627. It implements a full JSON parser and generator using\n" "GLib and GObject, and integrates JSON with GLib data types." msgstr "" -#: gnu/packages/gnome.scm:4760 +#: gnu/packages/gnome.scm:4762 msgid "" "LibXklavier is a library providing high-level API for X Keyboard\n" "Extension known as XKB. This library is intended to support XFree86 and other\n" @@ -6340,7 +6458,7 @@ msgid "" "indicators etc)." msgstr "" -#: gnu/packages/gnome.scm:4788 +#: gnu/packages/gnome.scm:4790 #, fuzzy msgid "" "This package provides Python bindings to librsvg, the SVG rendering\n" @@ -6349,7 +6467,7 @@ msgstr "" "Este paquete proporciona un diccionario para la biblioteca de\n" "comprobación ortográfica Hunspell." -#: gnu/packages/gnome.scm:4829 +#: gnu/packages/gnome.scm:4831 msgid "" "Glib-networking contains the implementations of certain GLib networking\n" "features that cannot be implemented directly in GLib itself because of their\n" @@ -6359,26 +6477,26 @@ msgid "" "from the GSettings schemas in gsettings-desktop-schemas." msgstr "" -#: gnu/packages/gnome.scm:4866 +#: gnu/packages/gnome.scm:4868 msgid "" "This library was designed to make it easier to access web services that\n" "claim to be \"RESTful\". It includes convenience wrappers for libsoup and\n" "libxml to ease remote use of the RESTful API." msgstr "" -#: gnu/packages/gnome.scm:4931 +#: gnu/packages/gnome.scm:4933 msgid "" "LibSoup is an HTTP client/server library for GNOME. It uses GObjects\n" "and the GLib main loop, to integrate well with GNOME applications." msgstr "" -#: gnu/packages/gnome.scm:5035 +#: gnu/packages/gnome.scm:5037 msgid "" "Libsecret is a GObject based library for storing and retrieving passwords\n" "and other secrets. It communicates with the \"Secret Service\" using DBus." msgstr "" -#: gnu/packages/gnome.scm:5074 +#: gnu/packages/gnome.scm:5076 msgid "" "Five or More is a game where you try to align\n" " five or more objects of the same color and shape causing them to disappear.\n" @@ -6386,19 +6504,19 @@ msgid "" " Try to last as long as possible." msgstr "" -#: gnu/packages/gnome.scm:5116 +#: gnu/packages/gnome.scm:5118 msgid "" "Mines (previously gnomine) is a puzzle game where you locate mines\n" "floating in an ocean using only your brain and a little bit of luck." msgstr "" -#: gnu/packages/gnome.scm:5157 +#: gnu/packages/gnome.scm:5159 msgid "" "MultiWriter can be used to write an ISO file to multiple USB devices at\n" "once." msgstr "" -#: gnu/packages/gnome.scm:5197 +#: gnu/packages/gnome.scm:5198 msgid "" "Sudoku is a Japanese logic game that exploded in popularity in 2005.\n" "GNOME Sudoku is meant to have an interface as simple and unobstrusive as\n" @@ -6406,7 +6524,7 @@ msgid "" "more fun." msgstr "" -#: gnu/packages/gnome.scm:5247 +#: gnu/packages/gnome.scm:5248 msgid "" "GNOME Terminal is a terminal emulator application for accessing a\n" "UNIX shell environment which can be used to run programs available on\n" @@ -6416,14 +6534,14 @@ msgid "" "keyboard shortcuts." msgstr "" -#: gnu/packages/gnome.scm:5319 +#: gnu/packages/gnome.scm:5320 msgid "" "Colord is a system service that makes it easy to manage,\n" "install and generate color profiles to accurately color manage input and\n" "output devices." msgstr "" -#: gnu/packages/gnome.scm:5390 +#: gnu/packages/gnome.scm:5391 msgid "" "Geoclue is a D-Bus service that provides location\n" "information. The primary goal of the Geoclue project is to make creating\n" @@ -6432,7 +6550,7 @@ msgid "" "permission from user." msgstr "" -#: gnu/packages/gnome.scm:5434 +#: gnu/packages/gnome.scm:5435 msgid "" "geocode-glib is a convenience library for geocoding (finding longitude,\n" "and latitude from an address) and reverse geocoding (finding an address from\n" @@ -6440,7 +6558,7 @@ msgid "" "faster results and to avoid unnecessary server load." msgstr "" -#: gnu/packages/gnome.scm:5510 +#: gnu/packages/gnome.scm:5511 msgid "" "UPower is an abstraction for enumerating power devices,\n" "listening to device events and querying history and statistics. Any\n" @@ -6448,13 +6566,13 @@ msgid "" "service via the system message bus." msgstr "" -#: gnu/packages/gnome.scm:5555 +#: gnu/packages/gnome.scm:5557 msgid "" "libgweather is a library to access weather information from online\n" "services for numerous locations." msgstr "" -#: gnu/packages/gnome.scm:5639 +#: gnu/packages/gnome.scm:5640 msgid "" "This package contains the daemon responsible for setting the various\n" "parameters of a GNOME session and the applications that run under it. It\n" @@ -6462,19 +6580,19 @@ msgid "" "settings, themes, mouse settings, and startup of other daemons." msgstr "" -#: gnu/packages/gnome.scm:5670 +#: gnu/packages/gnome.scm:5671 msgid "" "Totem-pl-parser is a GObjects-based library to parse and save\n" "playlists in a variety of formats." msgstr "" -#: gnu/packages/gnome.scm:5703 +#: gnu/packages/gnome.scm:5704 msgid "" "Aisleriot (also known as Solitaire or sol) is a collection of card games\n" "which are easy to play with the aid of a mouse." msgstr "" -#: gnu/packages/gnome.scm:5729 +#: gnu/packages/gnome.scm:5730 msgid "" "Amtk is the acronym for @acronym{Amtk, Actions Menus and Toolbars Kit}.\n" "It is a basic GtkUIManager replacement based on GAction. It is suitable for\n" @@ -6557,7 +6675,7 @@ msgid "" "discovery protocols." msgstr "" -#: gnu/packages/gnome.scm:6324 +#: gnu/packages/gnome.scm:6323 msgid "" "Totem is a simple yet featureful media player for GNOME\n" "which can read a large number of file formats." @@ -6566,7 +6684,7 @@ msgstr "" "características para GNOME que puede leer un gran número de formatos\n" "de fichero." -#: gnu/packages/gnome.scm:6415 +#: gnu/packages/gnome.scm:6414 msgid "" "Rhythmbox is a music playing application for GNOME. It\n" "supports playlists, song ratings, and any codecs installed through gstreamer." @@ -6609,7 +6727,7 @@ msgid "" "part of udev-extras, then udev, then systemd. It's now a project on its own." msgstr "" -#: gnu/packages/gnome.scm:6611 +#: gnu/packages/gnome.scm:6610 msgid "" "GVFS is a userspace virtual file system designed to work with the I/O\n" "abstraction of GIO. It contains a GIO module that seamlessly adds GVFS\n" @@ -6620,7 +6738,7 @@ msgid "" "DAV, and others." msgstr "" -#: gnu/packages/gnome.scm:6652 +#: gnu/packages/gnome.scm:6651 msgid "" "GUsb is a GObject wrapper for libusb1 that makes it easy to do\n" "asynchronous control, bulk and interrupt transfers with proper cancellation\n" @@ -6628,7 +6746,7 @@ msgid "" "USB transfers with your high-level application or system daemon." msgstr "" -#: gnu/packages/gnome.scm:6706 +#: gnu/packages/gnome.scm:6705 msgid "" "Document Scanner is an easy-to-use application that lets you connect your\n" "scanner and quickly capture images and documents in an appropriate format. It\n" @@ -6636,25 +6754,25 @@ msgid "" "almost all of them." msgstr "" -#: gnu/packages/gnome.scm:6778 +#: gnu/packages/gnome.scm:6777 msgid "" "Eolie is a new web browser for GNOME. It features Firefox sync support,\n" "a secret password store, an adblocker, and a modern UI." msgstr "" -#: gnu/packages/gnome.scm:6855 +#: gnu/packages/gnome.scm:6854 msgid "" "Epiphany is a GNOME web browser targeted at non-technical users. Its\n" "principles are simplicity and standards compliance." msgstr "" -#: gnu/packages/gnome.scm:6914 +#: gnu/packages/gnome.scm:6913 msgid "" "D-Feet is a D-Bus debugger, which can be used to inspect D-Bus interfaces\n" "of running programs and invoke methods on those interfaces." msgstr "" -#: gnu/packages/gnome.scm:6944 +#: gnu/packages/gnome.scm:6943 msgid "" "Yelp-XSL is a collection of programs and data files to help\n" "you build, maintain, and distribute documentation. It provides XSLT stylesheets\n" @@ -6664,14 +6782,14 @@ msgid "" "jQuery.Syntax JavaScript libraries." msgstr "" -#: gnu/packages/gnome.scm:6983 +#: gnu/packages/gnome.scm:6982 msgid "" "Yelp is the help viewer in Gnome. It natively views Mallard, DocBook,\n" "man, info, and HTML documents. It can locate documents according to the\n" "freedesktop.org help system specification." msgstr "" -#: gnu/packages/gnome.scm:7013 +#: gnu/packages/gnome.scm:7012 msgid "" "Yelp-tools is a collection of scripts and build utilities to help create,\n" "manage, and publish documentation for Yelp and the web. Most of the heavy\n" @@ -6679,13 +6797,13 @@ msgid "" "wraps things up in a developer-friendly way." msgstr "" -#: gnu/packages/gnome.scm:7051 +#: gnu/packages/gnome.scm:7050 msgid "" "Libgee is a utility library providing GObject-based interfaces and\n" "classes for commonly used data structures." msgstr "" -#: gnu/packages/gnome.scm:7079 +#: gnu/packages/gnome.scm:7078 msgid "" "Gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. It\n" "allows for GNOME applications to easily inspect and update EXIF, IPTC, and XMP\n" @@ -6700,7 +6818,7 @@ msgid "" "share them with others via social networking and more." msgstr "" -#: gnu/packages/gnome.scm:7168 +#: gnu/packages/gnome.scm:7169 msgid "" "File Roller is an archive manager for the GNOME desktop\n" "environment that allows users to view, unpack, and create compressed archives\n" @@ -6713,25 +6831,25 @@ msgid "" "configuration program to choose applications starting on login." msgstr "" -#: gnu/packages/gnome.scm:7284 +#: gnu/packages/gnome.scm:7287 msgid "" "Gjs is a javascript binding for GNOME. It's mainly based on spidermonkey\n" "javascript engine and the GObject introspection framework." msgstr "" -#: gnu/packages/gnome.scm:7381 +#: gnu/packages/gnome.scm:7383 msgid "" "While aiming at simplicity and ease of use, gedit is a\n" "powerful general purpose text editor." msgstr "" -#: gnu/packages/gnome.scm:7405 +#: gnu/packages/gnome.scm:7407 msgid "" "Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you\n" "to display dialog boxes from the commandline and shell scripts." msgstr "" -#: gnu/packages/gnome.scm:7595 +#: gnu/packages/gnome.scm:7598 msgid "" "Mutter is a window and compositing manager that displays and manages your\n" "desktop via OpenGL. Mutter combines a sophisticated display engine using the\n" @@ -6739,7 +6857,7 @@ msgid "" "window manager." msgstr "" -#: gnu/packages/gnome.scm:7653 +#: gnu/packages/gnome.scm:7656 msgid "" "GNOME Online Accounts provides interfaces so that applications and\n" "libraries in GNOME can access the user's online accounts. It has providers\n" @@ -6747,20 +6865,20 @@ msgid "" "Microsoft Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos." msgstr "" -#: gnu/packages/gnome.scm:7740 +#: gnu/packages/gnome.scm:7743 msgid "" "This package provides a unified backend for programs that work with\n" "contacts, tasks, and calendar information. It was originally developed for\n" "Evolution (hence the name), but is now used by other packages as well." msgstr "" -#: gnu/packages/gnome.scm:7803 +#: gnu/packages/gnome.scm:7806 msgid "" "Caribou is an input assistive technology intended for switch and pointer\n" "users." msgstr "" -#: gnu/packages/gnome.scm:7953 +#: gnu/packages/gnome.scm:7958 msgid "" "NetworkManager is a system network service that manages your network\n" "devices and connections, attempting to keep active network connectivity when\n" @@ -6769,36 +6887,36 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:8009 +#: gnu/packages/gnome.scm:8014 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to virtual private networks (VPNs) via OpenVPN." msgstr "" -#: gnu/packages/gnome.scm:8059 +#: gnu/packages/gnome.scm:8064 msgid "" "Support for configuring virtual private networks based on VPNC.\n" "Compatible with Cisco VPN concentrators configured to use IPsec." msgstr "" -#: gnu/packages/gnome.scm:8106 +#: gnu/packages/gnome.scm:8111 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to @acronym{VPNs, virtual private networks} via OpenConnect, an open client for\n" "Cisco's AnyConnect SSL VPN." msgstr "" -#: gnu/packages/gnome.scm:8135 +#: gnu/packages/gnome.scm:8140 msgid "Database of broadband connection configuration." msgstr "Configuración de BD para conexión ancha." -#: gnu/packages/gnome.scm:8179 +#: gnu/packages/gnome.scm:8183 msgid "" "This package contains a systray applet for NetworkManager. It displays\n" "the available networks and allows users to easily switch between them." msgstr "" -#: gnu/packages/gnome.scm:8234 +#: gnu/packages/gnome.scm:8238 #, fuzzy msgid "" "This package provides a C++ interface to the libxml2 XML parser\n" @@ -6807,25 +6925,25 @@ msgstr "" "Este paquete proporciona un diccionario para la biblioteca de\n" "comprobación ortográfica Hunspell." -#: gnu/packages/gnome.scm:8466 +#: gnu/packages/gnome.scm:8470 msgid "" "GNOME Display Manager is a system service that is responsible for\n" "providing graphical log-ins and managing local and remote displays." msgstr "" -#: gnu/packages/gnome.scm:8490 +#: gnu/packages/gnome.scm:8494 msgid "" "LibGTop is a library to get system specific data such as CPU and memory\n" "usage and information about running processes." msgstr "" -#: gnu/packages/gnome.scm:8525 +#: gnu/packages/gnome.scm:8528 msgid "" "This package contains tools for managing and manipulating Bluetooth\n" "devices using the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:8636 +#: gnu/packages/gnome.scm:8646 msgid "" "This package contains configuration applets for the GNOME desktop,\n" "allowing to set accessibility configuration, desktop fonts, keyboard and mouse\n" @@ -6833,13 +6951,13 @@ msgid "" "properties, screen resolution, and other GNOME parameters." msgstr "" -#: gnu/packages/gnome.scm:8802 +#: gnu/packages/gnome.scm:8811 msgid "" "GNOME Shell provides core user interface functions for the GNOME desktop,\n" "like switching to windows and launching applications." msgstr "" -#: gnu/packages/gnome.scm:8845 +#: gnu/packages/gnome.scm:8858 msgid "" "GTK-VNC is a project providing client side APIs for the RFB\n" "protocol / VNC remote desktop technology. It is built using coroutines allowing\n" @@ -6847,13 +6965,13 @@ msgid "" "core C library, and bindings for Python (PyGTK)." msgstr "" -#: gnu/packages/gnome.scm:8875 +#: gnu/packages/gnome.scm:8888 msgid "" "GNOME Autoar is a library which makes creating and extracting archives\n" "easy, safe, and automatic." msgstr "" -#: gnu/packages/gnome.scm:8945 +#: gnu/packages/gnome.scm:8959 msgid "" "Tracker is a search engine and triplestore for desktop, embedded and mobile.\n" "\n" @@ -6876,21 +6994,21 @@ msgid "" "endpoint and it understands SPARQL." msgstr "" -#: gnu/packages/gnome.scm:9074 +#: gnu/packages/gnome.scm:9088 msgid "" "Tracker is an advanced framework for first class objects with associated\n" "metadata and tags. It provides a one stop solution for all metadata, tags,\n" "shared object databases, search tools and indexing." msgstr "" -#: gnu/packages/gnome.scm:9167 +#: gnu/packages/gnome.scm:9185 msgid "" "Nautilus (Files) is a file manager designed to fit the GNOME desktop\n" "design and behaviour, giving the user a simple way to navigate and manage its\n" "files." msgstr "" -#: gnu/packages/gnome.scm:9201 +#: gnu/packages/gnome.scm:9220 msgid "" "Baobab (Disk Usage Analyzer) is a graphical application to analyse disk\n" "usage in the GNOME desktop environment. It can easily scan device volumes or\n" @@ -6898,7 +7016,7 @@ msgid "" "is complete it provides a graphical representation of each selected folder." msgstr "" -#: gnu/packages/gnome.scm:9227 +#: gnu/packages/gnome.scm:9245 msgid "" "GNOME backgrounds package contains a collection of graphics files which\n" "can be used as backgrounds in the GNOME Desktop environment. Additionally,\n" @@ -6906,21 +7024,21 @@ msgid "" "can add your own files to the collection." msgstr "" -#: gnu/packages/gnome.scm:9272 +#: gnu/packages/gnome.scm:9290 msgid "" "GNOME Screenshot is a utility used for taking screenshots of the entire\n" "screen, a window or a user defined area of the screen, with optional\n" "beautifying border effects." msgstr "" -#: gnu/packages/gnome.scm:9304 +#: gnu/packages/gnome.scm:9320 msgid "" "Dconf-editor is a graphical tool for browsing and editing the dconf\n" "configuration system for GNOME. It allows users to configure desktop\n" "software that do not provide their own configuration interface." msgstr "" -#: gnu/packages/gnome.scm:9334 +#: gnu/packages/gnome.scm:9350 msgid "" "Given many installed packages which might handle a given MIME type, a\n" "user running the GNOME desktop probably has some preferences: for example,\n" @@ -6929,32 +7047,32 @@ msgid "" "associations for GNOME." msgstr "" -#: gnu/packages/gnome.scm:9366 +#: gnu/packages/gnome.scm:9382 msgid "GoVirt is a GObject wrapper for the oVirt REST API." msgstr "" -#: gnu/packages/gnome.scm:9424 +#: gnu/packages/gnome.scm:9439 msgid "" "GNOME Weather is a small application that allows you to\n" "monitor the current weather conditions for your city, or anywhere in the\n" "world." msgstr "" -#: gnu/packages/gnome.scm:9528 +#: gnu/packages/gnome.scm:9543 msgid "" "GNOME is the graphical desktop for GNU. It includes a wide variety of\n" "applications for browsing the web, editing text and images, creating\n" "documents and diagrams, playing media, scanning, and much more." msgstr "" -#: gnu/packages/gnome.scm:9574 +#: gnu/packages/gnome.scm:9589 msgid "" "Byzanz is a simple desktop recording program with a\n" "command-line interface. It can record part or all of an X display for a\n" "specified duration and save it as a GIF encoded animated image file." msgstr "" -#: gnu/packages/gnome.scm:9634 +#: gnu/packages/gnome.scm:9651 msgid "" "Authenticator is a two-factor authentication (2FA) application built for\n" "the GNOME desktop environment.\n" @@ -6971,26 +7089,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/gnome.scm:9669 +#: gnu/packages/gnome.scm:9686 msgid "" "GSound is a small library for playing system sounds. It's designed to be\n" "used via GObject Introspection, and is a thin wrapper around the libcanberra C\n" "library." msgstr "" -#: gnu/packages/gnome.scm:9694 +#: gnu/packages/gnome.scm:9711 msgid "" "Libzapojit is a GLib-based library for accessing online service APIs of\n" "Microsoft SkyDrive and Hotmail, using their REST protocols." msgstr "" -#: gnu/packages/gnome.scm:9739 +#: gnu/packages/gnome.scm:9756 msgid "" "GNOME Clocks is a simple clocks application designed to fit the GNOME\n" "desktop. It supports world clock, stop watch, alarms, and count down timer." msgstr "" -#: gnu/packages/gnome.scm:9787 +#: gnu/packages/gnome.scm:9803 msgid "" "GNOME Calendar is a simple calendar application designed to fit the GNOME\n" "desktop. It supports multiple calendars, month, week and year view." @@ -6998,19 +7116,19 @@ msgstr "" "Calendario GNOME es una pliacación simple de calendario diseñado para ajustar\n" "el escritorio de GNOME. Apoya múltiples vistas de calendarios, meses, semanas y año." -#: gnu/packages/gnome.scm:9838 +#: gnu/packages/gnome.scm:9860 msgid "" -"GNOME To Do is a simplistic personal task manager designed to perfectly\n" -"fit the GNOME desktop." +"GNOME To Do is a simplistic personal task manager designed\n" +"to perfectly fit the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:9877 +#: gnu/packages/gnome.scm:9899 msgid "" "GNOME Dictionary can look for the definition or translation of a word in\n" "existing databases over the internet." msgstr "" -#: gnu/packages/gnome.scm:9943 +#: gnu/packages/gnome.scm:9964 msgid "" "GNOME Tweaks allows adjusting advanced configuration settings in\n" "GNOME 3. This includes things like the fonts used in user interface elements,\n" @@ -7018,13 +7136,13 @@ msgid "" "GNOME Shell appearance and extension, etc." msgstr "" -#: gnu/packages/gnome.scm:9971 +#: gnu/packages/gnome.scm:9992 msgid "" "GNOME Shell extensions modify and extend GNOME Shell\n" "functionality and behavior." msgstr "" -#: gnu/packages/gnome.scm:10015 +#: gnu/packages/gnome.scm:10036 msgid "" "Libfolks is a library that aggregates information about people\n" "from multiple sources (e.g., Telepathy connection managers for IM contacts,\n" @@ -7033,19 +7151,19 @@ msgid "" "compiled." msgstr "" -#: gnu/packages/gnome.scm:10056 +#: gnu/packages/gnome.scm:10077 msgid "" "This library allows you to use the Facebook API from\n" "GLib/GObject code." msgstr "" -#: gnu/packages/gnome.scm:10083 +#: gnu/packages/gnome.scm:10104 msgid "" "Libgnomekbd is a keyboard configuration library for the GNOME desktop\n" "environment, which can notably display keyboard layouts." msgstr "" -#: gnu/packages/gnome.scm:10119 +#: gnu/packages/gnome.scm:10140 msgid "" "Libunique is a library for writing single instance applications. If you\n" "launch a single instance application twice, the second instance will either just\n" @@ -7055,20 +7173,20 @@ msgid "" "handling the startup notification side." msgstr "" -#: gnu/packages/gnome.scm:10168 +#: gnu/packages/gnome.scm:10190 msgid "" "Calculator is an application that solves mathematical equations and\n" "is suitable as a default application in a Desktop environment." msgstr "" -#: gnu/packages/gnome.scm:10194 +#: gnu/packages/gnome.scm:10216 msgid "" "Xpad is a sticky note that strives to be simple, fault tolerant,\n" "and customizable. Xpad consists of independent pad windows, each is\n" "basically a text box in which notes can be written." msgstr "" -#: gnu/packages/gnome.scm:10267 +#: gnu/packages/gnome.scm:10289 msgid "" "This program allows you to browse through all the available Unicode\n" "characters and categories for the installed fonts, and to examine their\n" @@ -7076,20 +7194,20 @@ msgid "" "only know by its Unicode name or code point." msgstr "" -#: gnu/packages/gnome.scm:10299 +#: gnu/packages/gnome.scm:10321 msgid "" "Color Picker is a simple color chooser written in GTK3. It\n" "supports both X and Wayland display servers." msgstr "" -#: gnu/packages/gnome.scm:10322 +#: gnu/packages/gnome.scm:10344 msgid "" "Bluefish is an editor aimed at programmers and web developers,\n" "with many options to write web sites, scripts and other code.\n" "Bluefish supports many programming and markup languages." msgstr "" -#: gnu/packages/gnome.scm:10363 +#: gnu/packages/gnome.scm:10385 msgid "" "GNOME System Monitor is a GNOME process viewer and system monitor with\n" "an attractive, easy-to-use interface. It has features, such as a tree view\n" @@ -7105,13 +7223,13 @@ msgstr "" "y memoria de intercambio y la capacidad de finalizar o cambiar el\n" "valor «nice» de procesos." -#: gnu/packages/gnome.scm:10405 +#: gnu/packages/gnome.scm:10427 msgid "" "This package includes a python client library for the AT-SPI D-Bus\n" "accessibility infrastructure." msgstr "" -#: gnu/packages/gnome.scm:10475 +#: gnu/packages/gnome.scm:10495 msgid "" "Orca is a screen reader that provides access to the graphical desktop\n" "via speech and refreshable braille. Orca works with applications and toolkits\n" @@ -7123,14 +7241,14 @@ msgstr "" "AT-SPI (interfaz para proveedores de servicios de tecnologías de\n" "asistencia)." -#: gnu/packages/gnome.scm:10529 +#: gnu/packages/gnome.scm:10549 msgid "" "gspell provides a flexible API to add spell-checking to a GTK+\n" "application. It provides a GObject API, spell-checking to text entries and\n" "text views, and buttons to choose the language." msgstr "" -#: gnu/packages/gnome.scm:10571 +#: gnu/packages/gnome.scm:10591 msgid "" "GNOME Planner is a project management tool based on the Work Breakdown\n" "Structure (WBS). Its goal is to enable you to easily plan projects. Based on\n" @@ -7142,7 +7260,7 @@ msgid "" "views can be printed as PDF or PostScript files, or exported to HTML." msgstr "" -#: gnu/packages/gnome.scm:10644 +#: gnu/packages/gnome.scm:10664 msgid "" "Lollypop is a music player designed to play well with GNOME desktop.\n" "Lollypop plays audio formats such as mp3, mp4, ogg and flac and gets information\n" @@ -7150,7 +7268,7 @@ msgid "" "automatically and it can stream songs from online music services and charts." msgstr "" -#: gnu/packages/gnome.scm:10668 +#: gnu/packages/gnome.scm:10688 msgid "" "A collection of GStreamer video filters and effects to be used in\n" "photo-booth-like software, such as Cheese." @@ -7158,7 +7276,7 @@ msgstr "" "Una colección de filtros de vídeo GStreamer y efectos para ser\n" "utilizados en software de captura fotográfica, como Cheese." -#: gnu/packages/gnome.scm:10747 +#: gnu/packages/gnome.scm:10766 msgid "" "Cheese uses your webcam to take photos and videos. Cheese can also\n" "apply fancy special effects and lets you share the fun with others." @@ -7166,14 +7284,14 @@ msgstr "" "Cheese utiliza su cámara web para tomar fotos y vídeos. Cheese también\n" "puede aplicar efectos especiales divertidos y deja compartir con otros." -#: gnu/packages/gnome.scm:10801 +#: gnu/packages/gnome.scm:10820 msgid "" "Password Safe is a password manager which makes use of the KeePass v4\n" "format. It integrates perfectly with the GNOME desktop and provides an easy\n" "and uncluttered interface for the management of password databases." msgstr "" -#: gnu/packages/gnome.scm:10836 +#: gnu/packages/gnome.scm:10855 msgid "" "Sound Juicer extracts audio from compact discs and convert it\n" "into audio files that a personal computer or digital audio player can play.\n" @@ -7181,27 +7299,27 @@ msgid "" "mp3, Ogg Vorbis and FLAC" msgstr "" -#: gnu/packages/gnome.scm:10888 +#: gnu/packages/gnome.scm:10907 msgid "" "SoundConverter supports converting between many audio formats including\n" "Opus, Ogg Vorbis, FLAC and more. It supports parallel conversion, and\n" "configurable file renaming." msgstr "" -#: gnu/packages/gnome.scm:10936 +#: gnu/packages/gnome.scm:10955 msgid "" "Workrave is a program that assists in the recovery and prevention of\n" "repetitive strain injury (@dfn{RSI}). The program frequently alerts you to take\n" "micro-pauses and rest breaks, and restricts you to your daily limit." msgstr "" -#: gnu/packages/gnome.scm:10977 +#: gnu/packages/gnome.scm:10996 msgid "" "The GHex program can view and edit files in two ways:\n" "hexadecimal or ASCII. It is useful for editing binary files in general." msgstr "" -#: gnu/packages/gnome.scm:11013 +#: gnu/packages/gnome.scm:11032 msgid "" "The libdazzle library is a companion library to GObject and\n" "Gtk+. It provides various features that the authors wish were in the\n" @@ -7210,40 +7328,40 @@ msgid "" "generic enough to work for everyone." msgstr "" -#: gnu/packages/gnome.scm:11080 +#: gnu/packages/gnome.scm:11099 msgid "" "Evolution is a personal information management application\n" "that provides integrated mail, calendaring and address book\n" "functionality." msgstr "" -#: gnu/packages/gnome.scm:11140 +#: gnu/packages/gnome.scm:11154 msgid "" "GThumb is an image viewer, browser, organizer, editor and\n" "advanced image management tool" msgstr "" -#: gnu/packages/gnome.scm:11213 +#: gnu/packages/gnome.scm:11227 msgid "" "Terminator allows you to run multiple GNOME terminals in a grid and\n" "tabs, and it supports drag and drop re-ordering of terminals." msgstr "" -#: gnu/packages/gnome.scm:11274 +#: gnu/packages/gnome.scm:11288 msgid "" "The aim of the handy library is to help with developing user\n" "interfaces for mobile devices using GTK+. It provides responsive GTK+ widgets\n" "for usage on small and big screens." msgstr "" -#: gnu/packages/gnome.scm:11323 +#: gnu/packages/gnome.scm:11337 msgid "" "libgit2-glib is a GLib wrapper library around the libgit2 Git\n" "access library. It only implements the core plumbing functions, not really the\n" "higher level porcelain stuff." msgstr "" -#: gnu/packages/gnome.scm:11402 +#: gnu/packages/gnome.scm:11415 msgid "" "gitg is a graphical user interface for git. It aims at being a small,\n" "fast and convenient tool to visualize the history of git repositories.\n" @@ -7251,21 +7369,21 @@ msgid "" "repository and commit your work." msgstr "" -#: gnu/packages/gnome.scm:11474 +#: gnu/packages/gnome.scm:11487 msgid "" "Gamin is a file and directory monitoring system defined to be a subset\n" "of the FAM (File Alteration Monitor) system. This is a service provided by a\n" "library which detects when a file or a directory has been modified." msgstr "" -#: gnu/packages/gnome.scm:11508 +#: gnu/packages/gnome.scm:11521 msgid "" "GNOME Mahjongg is a game based on the classic Chinese\n" -"tile-matching game Mahjong. It features multiple board layouts, tile themes,\n" +"tile-matching game Mahjongg. It features multiple board layouts, tile themes,\n" "and a high score table." msgstr "" -#: gnu/packages/gnome.scm:11546 +#: gnu/packages/gnome.scm:11559 msgid "" "This package provides themes and related elements that don't\n" "really fit in other upstream packages. It offers legacy support for GTK+ 2\n" @@ -7273,19 +7391,20 @@ msgid "" "index files needed for Adwaita to be used outside of GNOME." msgstr "" -#: gnu/packages/gnome.scm:11585 +#: gnu/packages/gnome.scm:11605 +#, fuzzy msgid "" -"Gnote is a note-taking application written for the GNOME desktop\n" -"environment." -msgstr "" +"Gnote is a note-taking application written for the GNOME\n" +"desktop environment." +msgstr "Iconos para el escritorio GNOME." -#: gnu/packages/gnome.scm:11647 +#: gnu/packages/gnome.scm:11664 msgid "" "Polari is a simple Internet Relay Chat (IRC) client that is designed to\n" "integrate seamlessly with the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:11706 +#: gnu/packages/gnome.scm:11723 msgid "" "GNOME Boxes is a simple application to view, access, and\n" "manage remote and virtual systems. Note that this application requires the\n" @@ -7294,7 +7413,7 @@ msgid "" "these services on the Guix System." msgstr "" -#: gnu/packages/gnome.scm:11806 +#: gnu/packages/gnome.scm:11823 msgid "" "Geary collects related messages together into conversations,\n" "making it easy to find and follow your discussions. Full-text and keyword\n" @@ -7306,14 +7425,14 @@ msgid "" "to." msgstr "" -#: gnu/packages/gnome.scm:11851 +#: gnu/packages/gnome.scm:11868 msgid "" "gLabels is a program for creating labels and business cards. It is\n" "designed to work with various laser/ink-jet peel-off label and business\n" "card sheets that you’ll find at most office supply stores." msgstr "" -#: gnu/packages/gnome.scm:11892 +#: gnu/packages/gnome.scm:11909 msgid "" "GNOME LaTeX is a LaTeX editor for the GNOME desktop. It has features\n" "such as build tools, completion of LaTeX commands, structure navigation,\n" @@ -7321,19 +7440,19 @@ msgid "" "and toolbars." msgstr "" -#: gnu/packages/gnome.scm:11951 +#: gnu/packages/gnome.scm:11968 msgid "" "Setzer is a simple yet full-featured LaTeX editor written in Python with\n" "GTK+. It integrates well with the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:12017 +#: gnu/packages/gnome.scm:12034 msgid "" "Apostrophe is a GTK+ based distraction-free Markdown editor.\n" "It uses pandoc as back-end for parsing Markdown." msgstr "" -#: gnu/packages/gnome.scm:12070 +#: gnu/packages/gnome.scm:12088 msgid "" "libratbag provides @command{ratbagd}, a DBus daemon to\n" "configure input devices, mainly gaming mice. The daemon provides a generic\n" @@ -7350,7 +7469,7 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12140 +#: gnu/packages/gnome.scm:12156 msgid "" "Piper is a GTK+ application for configuring gaming mice with\n" "onboard configuration for key bindings via libratbag. Piper requires\n" @@ -7362,14 +7481,14 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12202 +#: gnu/packages/gnome.scm:12218 msgid "" "Parlatype is an audio player for the GNOME desktop\n" "environment. Its main purpose is the manual transcription of spoken\n" "audio files." msgstr "" -#: gnu/packages/gnome.scm:12228 +#: gnu/packages/gnome.scm:12244 msgid "" "Jsonrpc-GLib is a library to communicate with JSON-RPC based\n" "peers in either a synchronous or asynchronous fashion. It also allows\n" @@ -7378,14 +7497,14 @@ msgid "" "host to avoid parser overhead and memory-allocator fragmentation." msgstr "" -#: gnu/packages/gnome.scm:12256 +#: gnu/packages/gnome.scm:12272 msgid "" "Feedbackd provides a DBus daemon to act on events to provide\n" "haptic, visual and audio feedback. It offers the libfeedbackd library and\n" "GObject introspection bindings." msgstr "" -#: gnu/packages/gnome.scm:12305 +#: gnu/packages/gnome.scm:12321 msgid "" "Sysprof performs detailed, accurate, and fast CPU profiling of an entire\n" "GNU/Linux system including the kernel and all user-space applications. This\n" @@ -7395,21 +7514,21 @@ msgid "" "libraries. Applications do not need to be recompiled--or even restarted." msgstr "" -#: gnu/packages/gnome.scm:12388 +#: gnu/packages/gnome.scm:12406 msgid "" -"Builder aims to be an integrated development\n" -"environment (IDE) for writing GNOME-based software. It features fuzzy search,\n" -"auto-completion, a mini code map, documentation browsing, Git integration, an\n" -"integrated profiler via Sysprof, debugging support, and more." +"Builder aims to be an integrated development environment (IDE) for\n" +"writing GNOME-based software. It features fuzzy search, auto-completion,\n" +"a mini code map, documentation browsing, Git integration, an integrated\n" +"profiler via Sysprof, debugging support, and more." msgstr "" -#: gnu/packages/gnome.scm:12461 +#: gnu/packages/gnome.scm:12480 msgid "" "Komikku is an online/offline manga reader for GNOME,\n" "developed with the aim of being used with the Librem 5 phone." msgstr "" -#: gnu/packages/gnome.scm:12545 +#: gnu/packages/gnome.scm:12564 msgid "" "GNU Data Access (GDA) is an attempt to provide uniform access to\n" "different kinds of data sources (databases, information servers, mail spools,\n" @@ -7417,7 +7536,7 @@ msgid "" "your data." msgstr "" -#: gnu/packages/gnome.scm:12596 +#: gnu/packages/gnome.scm:12614 msgid "" "gtranslator is a quite comfortable gettext po/po.gz/(g)mo files editor\n" "for the GNOME 3.x platform with many features. It aims to be a very complete\n" @@ -7425,32 +7544,37 @@ msgid "" "world." msgstr "" -#: gnu/packages/gnome.scm:12662 +#: gnu/packages/gnome.scm:12680 msgid "" "OCRFeeder is a complete Optical Character Recognition and\n" "Document Analysis and Recognition program." msgstr "" -#: gnu/packages/gnome.scm:12702 +#: gnu/packages/gnome.scm:12720 msgid "" "@code{libadwaita} offers widgets and objects to build GNOME\n" "applications scaling from desktop workstations to mobile phones. It is the\n" "successor of @code{libhandy} for GTK4." msgstr "" -#: gnu/packages/gnome.scm:12727 +#: gnu/packages/gnome.scm:12745 msgid "" "@code{gnome-power-manager} is a tool for viewing present and\n" "historical battery usage and related statistics." msgstr "" +#: gnu/packages/gnome.scm:12789 +#, fuzzy +msgid "This package provides a graphical file manager." +msgstr "Este paquete proporciona un diccionario para el comprobador ortográfico GNU Aspell." + #: gnu/packages/gnuzilla.scm:155 msgid "" "SpiderMonkey is Mozilla's JavaScript engine written\n" "in C/C++." msgstr "" -#: gnu/packages/gnuzilla.scm:1314 +#: gnu/packages/gnuzilla.scm:1315 msgid "" "IceCat is the GNU version of the Firefox browser. It is entirely free\n" "software, which does not recommend non-free plugins and addons. It also\n" @@ -7463,19 +7587,19 @@ msgid "" "standards of the IceCat project." msgstr "" -#: gnu/packages/gnuzilla.scm:1642 +#: gnu/packages/gnuzilla.scm:1648 msgid "" "This package provides an email client built based on Mozilla\n" "Thunderbird. It supports email, news feeds, chat, calendar and contacts." msgstr "" -#: gnu/packages/gnuzilla.scm:1717 +#: gnu/packages/gnuzilla.scm:1723 msgid "" "Firefox Decrypt is a tool to extract passwords from\n" "Mozilla (Firefox, Waterfox, Thunderbird, SeaMonkey) profiles." msgstr "" -#: gnu/packages/gnuzilla.scm:1754 +#: gnu/packages/gnuzilla.scm:1760 msgid "" "@code{lz4json} is a little utility to unpack lz4json files as generated\n" "by Firefox's bookmark backups and session restore. This is a different format\n" @@ -7493,7 +7617,7 @@ msgstr "" "de accesibilidad tienen acceso completo para ver ty controlar ejecuciones de \n" "aplicaciones." -#: gnu/packages/gtk.scm:215 +#: gnu/packages/gtk.scm:212 msgid "" "Cairo is a 2D graphics library with support for multiple output\n" "devices. Currently supported output targets include the X Window System (via\n" @@ -7501,24 +7625,24 @@ msgid "" "output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB." msgstr "" -#: gnu/packages/gtk.scm:277 +#: gnu/packages/gtk.scm:274 msgid "HarfBuzz is an OpenType text shaping engine." msgstr "" -#: gnu/packages/gtk.scm:320 +#: gnu/packages/gtk.scm:317 msgid "" "Libdatrie is an implementation of double-array structure for\n" "representing trie. Trie is a kind of digital search tree." msgstr "" -#: gnu/packages/gtk.scm:352 +#: gnu/packages/gtk.scm:349 msgid "" "LibThai is a set of Thai language support routines aimed to\n" "ease developers’ tasks to incorporate Thai language support in their\n" "applications." msgstr "" -#: gnu/packages/gtk.scm:407 +#: gnu/packages/gtk.scm:404 msgid "" "Pango is a library for laying out and rendering of text, with\n" "an emphasis on internationalization. Pango can be used anywhere that text\n" @@ -7527,21 +7651,21 @@ msgid "" "handling for GTK+-2.x." msgstr "" -#: gnu/packages/gtk.scm:461 +#: gnu/packages/gtk.scm:458 msgid "" "Pangox was a X backend to pango. It is now obsolete and no\n" "longer provided by recent pango releases. pangox-compat provides the\n" "functions which were removed." msgstr "" -#: gnu/packages/gtk.scm:498 +#: gnu/packages/gtk.scm:495 msgid "" "Ganv is an interactive GTK+ widget for interactive “boxes and lines” or\n" "graph-like environments, e.g. modular synths or finite state machine\n" "diagrams." msgstr "" -#: gnu/packages/gtk.scm:554 +#: gnu/packages/gtk.scm:551 msgid "" "GtkSourceView is a portable C library that extends the standard GTK+\n" "framework for multiline text editing with support for configurable syntax\n" @@ -7549,33 +7673,33 @@ msgid "" "printing and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:602 +#: gnu/packages/gtk.scm:599 msgid "" "GtkSourceView is a text widget that extends the standard\n" "GTK+ text widget GtkTextView. It improves GtkTextView by implementing syntax\n" "highlighting and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:698 +#: gnu/packages/gtk.scm:695 msgid "" "GdkPixbuf is a library that loads image data in various\n" "formats and stores it as linear buffers in memory. The buffers can then be\n" "scaled, composited, modified, saved, or rendered." msgstr "" -#: gnu/packages/gtk.scm:746 +#: gnu/packages/gtk.scm:743 msgid "" "The Assistive Technology Service Provider Interface, core components,\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:827 +#: gnu/packages/gtk.scm:824 msgid "" "The Assistive Technology Service Provider Interface\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:921 +#: gnu/packages/gtk.scm:918 msgid "" "GTK+, or the GIMP Toolkit, is a multi-platform toolkit for creating\n" "graphical user interfaces. Offering a complete set of widgets, GTK+ is\n" @@ -7583,14 +7707,14 @@ msgid "" "application suites." msgstr "" -#: gnu/packages/gtk.scm:1234 +#: gnu/packages/gtk.scm:1238 msgid "" "GTK is a multi-platform toolkit for creating graphical user\n" "interfaces. Offering a complete set of widgets, GTK is suitable for projects\n" "ranging from small one-off tools to complete application suites." msgstr "" -#: gnu/packages/gtk.scm:1308 +#: gnu/packages/gtk.scm:1312 msgid "" "Guile-Cairo wraps the Cairo graphics library for Guile Scheme.\n" "Guile-Cairo is complete, wrapping almost all of the Cairo API. It is API\n" @@ -7600,13 +7724,13 @@ msgid "" "exceptions, macros, and a dynamic programming environment." msgstr "" -#: gnu/packages/gtk.scm:1389 +#: gnu/packages/gtk.scm:1393 msgid "" "Guile-RSVG wraps the RSVG library for Guile, allowing you to render SVG\n" "images onto Cairo surfaces." msgstr "" -#: gnu/packages/gtk.scm:1456 +#: gnu/packages/gtk.scm:1460 msgid "" "Guile-Present defines a declarative vocabulary for presentations,\n" "together with tools to render presentation documents as SVG or PDF.\n" @@ -7615,30 +7739,30 @@ msgid "" "documents." msgstr "" -#: gnu/packages/gtk.scm:1522 +#: gnu/packages/gtk.scm:1526 msgid "" "Includes guile-clutter, guile-gnome-gstreamer,\n" "guile-gnome-platform (GNOME developer libraries), and guile-gtksourceview." msgstr "" -#: gnu/packages/gtk.scm:1578 +#: gnu/packages/gtk.scm:1582 msgid "" "Cairomm provides a C++ programming interface to the Cairo 2D graphics\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1642 +#: gnu/packages/gtk.scm:1647 msgid "" "Pangomm provides a C++ programming interface to the Pango text rendering\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1704 +#: gnu/packages/gtk.scm:1709 #, fuzzy msgid "ATKmm is the C++ binding for the ATK library." msgstr "Enlaces binarios para liblo" -#: gnu/packages/gtk.scm:1784 +#: gnu/packages/gtk.scm:1790 msgid "" "GTKmm is the official C++ interface for the popular GUI\n" "library GTK+. Highlights include typesafe callbacks, and a comprehensive set\n" @@ -7867,7 +7991,7 @@ msgid "" "excellent pavucontrol." msgstr "" -#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:238 +#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:241 msgid "" "Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" "official extension language of the GNU system. It is an implementation of\n" @@ -7876,14 +8000,14 @@ msgid "" "without requiring the source code to be rewritten." msgstr "" -#: gnu/packages/guile.scm:502 +#: gnu/packages/guile.scm:506 msgid "" "This module provides line editing support via the Readline library for\n" "GNU@tie{}Guile. Use the @code{(ice-9 readline)} module and call its\n" "@code{activate-readline} procedure to enable it." msgstr "" -#: gnu/packages/guile.scm:604 +#: gnu/packages/guile.scm:608 msgid "" "Guile-JSON supports parsing and building JSON documents according to the\n" "specification. These are the main features:\n" @@ -7896,17 +8020,17 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/guile.scm:701 +#: gnu/packages/guile.scm:705 msgid "" "Guile bindings to the GDBM key-value storage system, using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:730 +#: gnu/packages/guile.scm:734 msgid "This package provides Guile bindings to the SQLite database system." msgstr "" -#: gnu/packages/guile.scm:769 +#: gnu/packages/guile.scm:773 msgid "" "Guile bytestructures offers a system imitating the type system\n" "of the C programming language, to be used on bytevectors. C's type\n" @@ -7915,27 +8039,27 @@ msgid "" "type system, elevating types to first-class status." msgstr "" -#: gnu/packages/guile.scm:810 +#: gnu/packages/guile.scm:814 msgid "" "This package provides Guile bindings to libgit2, a library to\n" "manipulate repositories of the Git version control system." msgstr "" -#: gnu/packages/guile.scm:846 +#: gnu/packages/guile.scm:850 msgid "" "This package provides Guile bindings for zlib, a lossless\n" "data-compression library. The bindings are written in pure Scheme by using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:877 +#: gnu/packages/guile.scm:881 msgid "" "This package provides Guile bindings for lzlib, a C library for\n" "in-memory LZMA compression and decompression. The bindings are written in\n" "pure Scheme by using Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:904 +#: gnu/packages/guile.scm:908 #, fuzzy msgid "" "This package provides a GNU Guile interface to the zstd (``zstandard'')\n" @@ -7944,7 +8068,7 @@ msgstr "" "Este paquete proporciona un diccionario para la biblioteca de\n" "comprobación ortográfica Hunspell." -#: gnu/packages/guile.scm:926 +#: gnu/packages/guile.scm:930 msgid "" "Guile-LZMA is a Guile wrapper for the liblzma (XZ)\n" "library. It exposes an interface similar to other Guile compression\n" @@ -8532,7 +8656,7 @@ msgid "" "It supports JPEG, PNG and GIF formats." msgstr "" -#: gnu/packages/image-viewers.scm:640 +#: gnu/packages/image-viewers.scm:643 msgid "" "Luminance HDR (formerly QtPFSGui) is a graphical user interface\n" "application that aims to provide a workflow for high dynamic range (HDR)\n" @@ -8548,7 +8672,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:735 +#: gnu/packages/image-viewers.scm:738 msgid "" "MComix is a customizable image viewer that specializes as\n" "a comic and manga reader. It supports a variety of container formats\n" @@ -8557,7 +8681,7 @@ msgid "" "For PDF support, install the @emph{mupdf} package." msgstr "" -#: gnu/packages/image-viewers.scm:775 +#: gnu/packages/image-viewers.scm:778 msgid "" "qView is a Qt image viewer designed with visually\n" "minimalism and usability in mind. Its features include animated GIF\n" @@ -8565,14 +8689,14 @@ msgid "" "preloading." msgstr "" -#: gnu/packages/image-viewers.scm:799 +#: gnu/packages/image-viewers.scm:802 msgid "" "Chafa is a command-line utility that converts all kinds of images,\n" "including animated GIFs, into ANSI/Unicode character output that can be\n" "displayed in a terminal." msgstr "" -#: gnu/packages/image-viewers.scm:847 +#: gnu/packages/image-viewers.scm:850 msgid "" "@code{imv} is a command line image viewer intended for use\n" "with tiling window managers. Features include:\n" @@ -8594,7 +8718,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:924 +#: gnu/packages/image-viewers.scm:927 msgid "" "Quick Image Viewer is a small and fast GDK/Imlib2 image viewer.\n" "Features include zoom, maxpect, scale down, fullscreen, slideshow, delete,\n" @@ -8603,7 +8727,7 @@ msgid "" "to set X desktop background." msgstr "" -#: gnu/packages/image-viewers.scm:968 +#: gnu/packages/image-viewers.scm:971 msgid "" "pqiv is a GTK-3 based command-line image viewer with a minimal UI.\n" "It is highly customizable, can be fully controlled from scripts, and has\n" @@ -8611,7 +8735,7 @@ msgid "" "archives." msgstr "" -#: gnu/packages/image-viewers.scm:1025 +#: gnu/packages/image-viewers.scm:1028 msgid "" "Nomacs is a simple to use image lounge featuring\n" "semi-transparent widgets that display additional information such as metadata,\n" @@ -8624,7 +8748,7 @@ msgid "" "synchronization of multiple instances." msgstr "" -#: gnu/packages/image-viewers.scm:1070 +#: gnu/packages/image-viewers.scm:1073 msgid "xzgv is a fast image viewer that provides extensive keyboard support." msgstr "" @@ -8890,17 +9014,17 @@ msgid "" "Math for editing mathematics." msgstr "" -#: gnu/packages/linux.scm:604 +#: gnu/packages/linux.scm:625 msgid "Headers of the Linux-Libre kernel." msgstr "Cabeceras de núcleo Linux-Libre." -#: gnu/packages/linux.scm:905 +#: gnu/packages/linux.scm:935 msgid "" "GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.\n" "It has been modified to remove all non-free binary blobs." msgstr "" -#: gnu/packages/linux.scm:1215 +#: gnu/packages/linux.scm:1252 msgid "" "This simple Linux kernel module allows calls from user space to any\n" "@acronym{ACPI, Advanced Configuration and Power Interface} method provided by\n" @@ -8912,7 +9036,7 @@ msgid "" "and should be used with caution, especially on untested models." msgstr "" -#: gnu/packages/linux.scm:1283 +#: gnu/packages/linux.scm:1320 msgid "" "CoreFreq is a CPU monitor that reports low-level processor settings and\n" "performance data with notably high precision by using a loadable Linux kernel\n" @@ -8943,7 +9067,7 @@ msgid "" "@file{README.md} before loading it." msgstr "" -#: gnu/packages/linux.scm:1332 +#: gnu/packages/linux.scm:1369 msgid "" "This is the Linux kernel @acronym{ACPI, Advanced Configuration and Power\n" "Interface} platform driver for the @acronym{EC, Embedded Controller} firmware\n" @@ -8952,13 +9076,13 @@ msgid "" "and the notification, WiFi, and Bluetooth LED." msgstr "" -#: gnu/packages/linux.scm:1375 +#: gnu/packages/linux.scm:1413 msgid "" "This is Realtek's RTL8821CE Linux driver for wireless\n" "network adapters." msgstr "" -#: gnu/packages/linux.scm:1407 +#: gnu/packages/linux.scm:1445 msgid "" "This is Realtek's rtl8812au Linux driver for USB 802.11n wireless\n" "network adapters, modified by the aircrack-ng project to support monitor mode\n" @@ -8966,7 +9090,7 @@ msgid "" "RTL8812AU, RTL8821AU, and RTL8814AU chips." msgstr "" -#: gnu/packages/linux.scm:1431 +#: gnu/packages/linux.scm:1469 msgid "" "The @acronym{VHBA, Virtual SCSI Host Bus Adapter} module is the link\n" "between the CDemu user-space daemon and the kernel Linux. It acts as a\n" @@ -8975,13 +9099,13 @@ msgid "" "emulate optical devices such as DVD and CD-ROM drives." msgstr "" -#: gnu/packages/linux.scm:1460 +#: gnu/packages/linux.scm:1497 msgid "" "The bbswitch module provides a way to toggle the Nvidia\n" "graphics card on Optimus laptops." msgstr "" -#: gnu/packages/linux.scm:1501 +#: gnu/packages/linux.scm:1536 msgid "" "This package provides two Linux kernel drivers, ddcci and\n" "ddcci-backlight, that allows the control of DDC/CI monitors through the sysfs\n" @@ -8991,7 +9115,7 @@ msgid "" "supported under @file{/sys/class/backlight/}." msgstr "" -#: gnu/packages/linux.scm:1528 +#: gnu/packages/linux.scm:1563 msgid "" "This Linux module creates virtual video devices. @acronym{V4L2, Video\n" "for Linux 2} applications will treat these as ordinary video devices but read\n" @@ -9003,7 +9127,7 @@ msgid "" "application by hooking GStreamer into the loopback device." msgstr "" -#: gnu/packages/linux.scm:1569 +#: gnu/packages/linux.scm:1604 msgid "" "This package provides a driver for the XBox One S Wireless controller\n" "and some newer models when connected via Bluetooth. In addition to the included\n" @@ -9011,7 +9135,7 @@ msgid "" "which need to be installed separately." msgstr "" -#: gnu/packages/linux.scm:1622 +#: gnu/packages/linux.scm:1657 msgid "" "A *Free* project to implement OSF's RFC 86.0.\n" "Pluggable authentication modules are small shared object files that can\n" @@ -9024,18 +9148,18 @@ msgstr "" "autenticando un usuario en el registro de entrada. Local y dinámica \n" "reconfiguración son su característica de clave." -#: gnu/packages/linux.scm:1683 +#: gnu/packages/linux.scm:1718 msgid "This package provides a PAM interface using @code{ctypes}." msgstr "" -#: gnu/packages/linux.scm:1712 +#: gnu/packages/linux.scm:1747 msgid "" "This package provides a PAM module that hands over your\n" "login password to @code{gpg-agent}. This can be useful if you are using a\n" "GnuPG-based password manager like @code{pass}." msgstr "" -#: gnu/packages/linux.scm:1741 +#: gnu/packages/linux.scm:1776 msgid "" "This package contains utilities for accessing the powercap\n" "Linux kernel feature through sysfs. It includes an implementation for working\n" @@ -9043,7 +9167,7 @@ msgid "" "It provides the commands @code{powercap-info} and @code{powercap-set}." msgstr "" -#: gnu/packages/linux.scm:1772 +#: gnu/packages/linux.scm:1807 msgid "" "Powerstat measures and reports your computer's power consumption in real\n" "time. On mobile PCs, it uses ACPI battery information to measure the power\n" @@ -9060,28 +9184,28 @@ msgid "" "deviation, and minimum and maximum values. It can show a nice histogram too." msgstr "" -#: gnu/packages/linux.scm:1810 +#: gnu/packages/linux.scm:1845 msgid "" "This PSmisc package is a set of some small useful utilities that\n" "use the proc file system. We're not about changing the world, but\n" "providing the system administrator with some help in common tasks." msgstr "" -#: gnu/packages/linux.scm:1948 +#: gnu/packages/linux.scm:1984 msgid "" "Util-linux is a diverse collection of Linux kernel\n" "utilities. It provides dmesg and includes tools for working with file systems,\n" "block devices, UUIDs, TTYs, and many other tools." msgstr "" -#: gnu/packages/linux.scm:1986 +#: gnu/packages/linux.scm:2037 msgid "" "ddate displays the Discordian date and holidays of a given date.\n" "The Discordian calendar was made popular by the \"Illuminatus!\" trilogy\n" "by Robert Shea and Robert Anton Wilson." msgstr "" -#: gnu/packages/linux.scm:2040 +#: gnu/packages/linux.scm:2091 msgid "" "The kernel Linux's @dfn{frame buffers} provide a simple interface to\n" "different kinds of graphic displays. The @command{fbset} utility can query and\n" @@ -9089,7 +9213,7 @@ msgid "" "parameters." msgstr "" -#: gnu/packages/linux.scm:2085 +#: gnu/packages/linux.scm:2136 msgid "" "Procps is the package that has a bunch of small useful utilities\n" "that give information about processes using the Linux /proc file system.\n" @@ -9097,11 +9221,11 @@ msgid "" "slabtop, tload, top, vmstat, w, watch and sysctl." msgstr "" -#: gnu/packages/linux.scm:2130 +#: gnu/packages/linux.scm:2181 msgid "Tools for working with USB devices, such as lsusb." msgstr "" -#: gnu/packages/linux.scm:2154 +#: gnu/packages/linux.scm:2205 msgid "" "The USB/IP protocol enables to pass USB device from a server to\n" "a client over the network. The server is a machine which shares an\n" @@ -9114,23 +9238,23 @@ msgid "" "module." msgstr "" -#: gnu/packages/linux.scm:2237 +#: gnu/packages/linux.scm:2288 msgid "This package provides tools for manipulating ext2/ext3/ext4 file systems." msgstr "" -#: gnu/packages/linux.scm:2279 +#: gnu/packages/linux.scm:2330 msgid "" "This package provides statically-linked e2fsck command taken\n" "from the e2fsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:2302 +#: gnu/packages/linux.scm:2353 msgid "" "Extundelete is a set of tools that can recover deleted files from an\n" "ext3 or ext4 partition." msgstr "" -#: gnu/packages/linux.scm:2335 +#: gnu/packages/linux.scm:2386 msgid "" "Zerofree finds the unallocated blocks with non-zero value content in an\n" "ext2, ext3, or ext4 file system and fills them with zeroes (or another value).\n" @@ -9138,39 +9262,39 @@ msgid "" "Zerofree requires the file system to be unmounted or mounted read-only." msgstr "" -#: gnu/packages/linux.scm:2380 +#: gnu/packages/linux.scm:2431 msgid "" "strace is a system call tracer, i.e. a debugging tool which prints out a\n" "trace of all the system calls made by a another process/program." msgstr "" -#: gnu/packages/linux.scm:2403 +#: gnu/packages/linux.scm:2454 msgid "" "ltrace intercepts and records dynamic library calls which are called by\n" "an executed process and the signals received by that process. It can also\n" "intercept and print the system calls executed by the program." msgstr "" -#: gnu/packages/linux.scm:2428 +#: gnu/packages/linux.scm:2479 msgid "" "This package contains Advanced Linux Sound Architecture Use Case Manager\n" "configuration of audio input/output names and routing for specific audio\n" "hardware." msgstr "" -#: gnu/packages/linux.scm:2452 +#: gnu/packages/linux.scm:2503 msgid "" "This package contains Advanced Linux Sound Architecture topology\n" "configuration files that can be used for specific audio hardware." msgstr "" -#: gnu/packages/linux.scm:2499 gnu/packages/linux.scm:2548 +#: gnu/packages/linux.scm:2550 gnu/packages/linux.scm:2599 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system." msgstr "" -#: gnu/packages/linux.scm:2617 +#: gnu/packages/linux.scm:2668 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system. This package enhances ALSA\n" @@ -9179,7 +9303,7 @@ msgid "" "external rate conversion." msgstr "" -#: gnu/packages/linux.scm:2655 +#: gnu/packages/linux.scm:2706 msgid "" "@command{iptables} is the user-space command line program used to\n" "configure the Linux 2.4.x and later IPv4 packet filtering ruleset\n" @@ -9191,7 +9315,7 @@ msgid "" "Both commands are targeted at system administrators." msgstr "" -#: gnu/packages/linux.scm:2691 +#: gnu/packages/linux.scm:2742 msgid "" "This simple daemon feeds entropy from the CPU Jitter @acronym{RNG, random\n" "number generator} core to the kernel Linux's entropy estimator. This prevents\n" @@ -9213,7 +9337,7 @@ msgid "" "early boot when entropy may be low, especially in virtualised environments." msgstr "" -#: gnu/packages/linux.scm:2727 +#: gnu/packages/linux.scm:2778 msgid "" "@command{lsscsi} lists SCSI logical units or SCSI targets. It can\n" "also list NVMe namespaces or controllers and show the relationship between a\n" @@ -9221,7 +9345,7 @@ msgid "" "name." msgstr "" -#: gnu/packages/linux.scm:2751 +#: gnu/packages/linux.scm:2802 msgid "" "ebtables is an application program used to set up and maintain the\n" "tables of rules (inside the Linux kernel) that inspect Ethernet frames. It is\n" @@ -9229,7 +9353,7 @@ msgid "" "that the Ethernet protocol is much simpler than the IP protocol." msgstr "" -#: gnu/packages/linux.scm:2816 +#: gnu/packages/linux.scm:2867 msgid "" "Iproute2 is a collection of utilities for controlling TCP/IP networking\n" "and traffic with the Linux kernel. The most important of these are\n" @@ -9241,7 +9365,7 @@ msgid "" "inadequately in modern network environments, and both should be deprecated." msgstr "" -#: gnu/packages/linux.scm:2896 +#: gnu/packages/linux.scm:2947 msgid "" "This package includes the important tools for controlling the network\n" "subsystem of the Linux kernel. This includes arp, ifconfig, netstat, rarp and\n" @@ -9250,13 +9374,13 @@ msgid "" "configuration (iptunnel, ipmaddr)." msgstr "" -#: gnu/packages/linux.scm:2947 +#: gnu/packages/linux.scm:2989 msgid "" "Libcap2 provides a programming interface to POSIX capabilities on\n" "Linux-based operating systems." msgstr "" -#: gnu/packages/linux.scm:2974 +#: gnu/packages/linux.scm:3016 msgid "" "Utilities for Linux's Ethernet bridging facilities. A bridge is a way\n" "to connect two Ethernet segments together in a protocol independent way.\n" @@ -9265,7 +9389,7 @@ msgid "" "transparently through a bridge." msgstr "" -#: gnu/packages/linux.scm:3025 +#: gnu/packages/linux.scm:3067 msgid "" "The libnl suite is a collection of libraries providing APIs to netlink\n" "protocol based Linux kernel interfaces. Netlink is an IPC mechanism primarily\n" @@ -9274,13 +9398,13 @@ msgid "" "configuration and monitoring interfaces." msgstr "" -#: gnu/packages/linux.scm:3099 +#: gnu/packages/linux.scm:3141 msgid "" "iw is a new nl80211 based CLI configuration utility for wireless\n" "devices. It replaces @code{iwconfig}, which is deprecated." msgstr "" -#: gnu/packages/linux.scm:3149 +#: gnu/packages/linux.scm:3191 msgid "" "PowerTOP is a Linux tool to diagnose issues with power consumption and\n" "power management. In addition to being a diagnostic tool, PowerTOP also has\n" @@ -9289,19 +9413,19 @@ msgid "" "settings." msgstr "" -#: gnu/packages/linux.scm:3176 +#: gnu/packages/linux.scm:3218 msgid "" "Aumix adjusts an audio mixer from X, the console, a terminal,\n" "the command line or a script." msgstr "" -#: gnu/packages/linux.scm:3207 +#: gnu/packages/linux.scm:3249 msgid "" "Iotop is a Python program with a top like user interface to show the\n" "processes currently causing I/O." msgstr "" -#: gnu/packages/linux.scm:3265 +#: gnu/packages/linux.scm:3307 msgid "" "As a consequence of its monolithic design, file system code for Linux\n" "normally goes into the kernel itself---which is not only a robustness issue,\n" @@ -9311,7 +9435,7 @@ msgid "" "user-space processes." msgstr "" -#: gnu/packages/linux.scm:3358 +#: gnu/packages/linux.scm:3400 msgid "" "UnionFS-FUSE is a flexible union file system implementation in user\n" "space, using the FUSE library. Mounting a union file system allows you to\n" @@ -9319,7 +9443,7 @@ msgid "" "UnionFS-FUSE additionally supports copy-on-write." msgstr "" -#: gnu/packages/linux.scm:3437 +#: gnu/packages/linux.scm:3479 msgid "" "This is a file system client based on the SSH File Transfer Protocol.\n" "Since most SSH servers already support this protocol it is very easy to set\n" @@ -9327,7 +9451,7 @@ msgid "" "file system is as easy as logging into the server with an SSH client." msgstr "" -#: gnu/packages/linux.scm:3464 +#: gnu/packages/linux.scm:3506 msgid "" "archivemount is a FUSE-based file system for Unix variants,\n" "including Linux. Its purpose is to mount archives (i.e. tar, tar.gz, etc.) to a\n" @@ -9336,7 +9460,7 @@ msgid "" "compressed, transparent to other programs, without decompressing them." msgstr "" -#: gnu/packages/linux.scm:3495 +#: gnu/packages/linux.scm:3537 msgid "" "NUMA stands for Non-Uniform Memory Access, in other words a system whose\n" "memory is not all in one place. The @command{numactl} program allows you to\n" @@ -9349,26 +9473,26 @@ msgid "" "NUMA performance on your system." msgstr "" -#: gnu/packages/linux.scm:3533 +#: gnu/packages/linux.scm:3575 msgid "" "Kbd-neo provides the Neo2 keyboard layout for use with\n" "@command{loadkeys(1)} from @code{kbd(4)}." msgstr "" -#: gnu/packages/linux.scm:3599 +#: gnu/packages/linux.scm:3641 msgid "" "This package contains keytable files and keyboard utilities compatible\n" "for systems using the Linux kernel. This includes commands such as\n" "@code{loadkeys}, @code{setfont}, @code{kbdinfo}, and @code{chvt}." msgstr "" -#: gnu/packages/linux.scm:3662 +#: gnu/packages/linux.scm:3704 msgid "" "The inotify-tools packages provides a C library and command-line tools\n" "to use Linux' inotify mechanism, which allows file accesses to be monitored." msgstr "" -#: gnu/packages/linux.scm:3714 +#: gnu/packages/linux.scm:3756 msgid "" "Kmod is a set of tools to handle common tasks with Linux\n" "kernel modules like insert, remove, list, check properties, resolve\n" @@ -9379,21 +9503,21 @@ msgid "" "from the module-init-tools project." msgstr "" -#: gnu/packages/linux.scm:3769 +#: gnu/packages/linux.scm:3812 msgid "" "Early OOM is a minimalist out of memory (OOM) daemon that\n" "runs in user space and provides a more responsive and configurable alternative\n" "to the in-kernel OOM killer." msgstr "" -#: gnu/packages/linux.scm:3867 +#: gnu/packages/linux.scm:3892 msgid "" "Udev is a daemon which dynamically creates and removes\n" "device nodes from /dev/, handles hotplug events and loads drivers at boot\n" "time." msgstr "" -#: gnu/packages/linux.scm:3897 +#: gnu/packages/linux.scm:3922 msgid "" "Python-evdev provides bindings to the generic input event interface in\n" "Linux. The @code{evdev} interface serves the purpose of passing events\n" @@ -9405,7 +9529,7 @@ msgid "" "devices that can inject events directly into the input subsystem." msgstr "" -#: gnu/packages/linux.scm:3930 +#: gnu/packages/linux.scm:3955 msgid "" "Interception Tools provides a composable infrastructure on top of\n" "@code{libudev} and @code{libevdev}. The following utilities are provided:\n" @@ -9418,33 +9542,33 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/linux.scm:3979 +#: gnu/packages/linux.scm:4004 msgid "" "Dual Function Keys is a plugin for @code{interception-tools} that allows\n" "one to send arbitrary keycodes when a given key is tapped or held." msgstr "" -#: gnu/packages/linux.scm:4056 +#: gnu/packages/linux.scm:4081 msgid "" "LVM2 is the logical volume management tool set for Linux-based systems.\n" "This package includes the user-space libraries and tools, including the device\n" "mapper. Kernel components are part of Linux-libre." msgstr "" -#: gnu/packages/linux.scm:4122 +#: gnu/packages/linux.scm:4147 msgid "" "A suite of tools for manipulating the metadata of the\n" "dm-thin, dm-cache and dm-era device-mapper targets." msgstr "" -#: gnu/packages/linux.scm:4144 +#: gnu/packages/linux.scm:4169 msgid "" "This package provides an advanced monitor of critical system\n" "resources, supervises the heartbeat of processes, records deadline\n" "transgressions, and initiates a controlled reset if needed." msgstr "" -#: gnu/packages/linux.scm:4189 +#: gnu/packages/linux.scm:4214 msgid "" "Wireless Tools are used to manipulate the now-deprecated\n" "Linux Wireless Extensions; consider using @code{iw} instead. The Wireless\n" @@ -9453,35 +9577,35 @@ msgid "" "interface." msgstr "" -#: gnu/packages/linux.scm:4280 +#: gnu/packages/linux.scm:4305 msgid "" "The Central Regulatory Domain Agent (CRDA) acts as the udev helper for\n" "communication between the kernel Linux and user space for regulatory\n" "compliance." msgstr "" -#: gnu/packages/linux.scm:4350 +#: gnu/packages/linux.scm:4375 msgid "" "This package contains the wireless regulatory database for the Central\n" "Regulatory Database Agent (CRDA). The database contains information on\n" "country-specific regulations for the wireless spectrum." msgstr "" -#: gnu/packages/linux.scm:4424 +#: gnu/packages/linux.scm:4449 msgid "" "Lm-sensors is a hardware health monitoring package for Linux. It allows\n" "you to access information from temperature, voltage, and fan speed sensors.\n" "It works with most newer systems." msgstr "" -#: gnu/packages/linux.scm:4444 +#: gnu/packages/linux.scm:4469 msgid "" "@command{iucode_tool} is a utility to work with microcode packages for\n" "Intel processors. It can convert between formats, extract specific versions,\n" "create a firmware image suitable for the Linux kernel, and more." msgstr "" -#: gnu/packages/linux.scm:4475 +#: gnu/packages/linux.scm:4501 msgid "" "The i2c-tools package contains a heterogeneous set of I2C tools for\n" "Linux: a bus probing tool, a chip dumper, register-level SMBus access helpers,\n" @@ -9489,14 +9613,14 @@ msgid "" "SMBus access." msgstr "" -#: gnu/packages/linux.scm:4514 +#: gnu/packages/linux.scm:4540 msgid "" "Xsensors reads data from the libsensors library regarding hardware\n" "health such as temperature, voltage and fan speed and displays the information\n" "in a digital read-out." msgstr "" -#: gnu/packages/linux.scm:4568 +#: gnu/packages/linux.scm:4600 msgid "" "perf is a tool suite for profiling using hardware performance counters,\n" "with support in the Linux kernel. perf can instrument CPU performance\n" @@ -9505,7 +9629,7 @@ msgid "" "particular the @code{perf} command." msgstr "" -#: gnu/packages/linux.scm:4593 +#: gnu/packages/linux.scm:4625 msgid "" "pflask is a simple tool for creating Linux namespace\n" "containers. It can be used for running a command or even booting an OS inside\n" @@ -9514,7 +9638,7 @@ msgid "" "thanks to the use of namespaces." msgstr "" -#: gnu/packages/linux.scm:4678 +#: gnu/packages/linux.scm:4710 msgid "" "Singularity is a container platform supporting a number of\n" "container image formats. It can build SquashFS container images or import\n" @@ -9522,7 +9646,7 @@ msgid "" "isolation or root privileges." msgstr "" -#: gnu/packages/linux.scm:4711 +#: gnu/packages/linux.scm:4742 msgid "" "@command{hdparm} is a command-line utility to control ATA controllers and\n" "disk drives. It can increase performance and/or reliability by careful tuning\n" @@ -9536,21 +9660,21 @@ msgid "" "Translation (@dfn{SAT}) are also supported." msgstr "" -#: gnu/packages/linux.scm:4750 +#: gnu/packages/linux.scm:4782 msgid "" "Nvme-cli is a utility to provide standards compliant tooling\n" "for NVM-Express drives. It was made specifically for Linux as it relies on the\n" "IOCTLs defined by the mainline kernel driver." msgstr "" -#: gnu/packages/linux.scm:4776 +#: gnu/packages/linux.scm:4808 msgid "" "rfkill is a simple tool for accessing the rfkill device interface,\n" "which is used to enable and disable wireless networking devices, typically\n" "WLAN, Bluetooth and mobile broadband." msgstr "" -#: gnu/packages/linux.scm:4798 +#: gnu/packages/linux.scm:4830 msgid "" "@code{acpi} attempts to replicate the functionality of the\n" "\"old\" @code{apm} command on ACPI systems, including battery and thermal\n" @@ -9558,7 +9682,7 @@ msgid "" "about ACPI devices." msgstr "" -#: gnu/packages/linux.scm:4819 +#: gnu/packages/linux.scm:4851 msgid "" "acpid is designed to notify user-space programs of Advanced\n" "Configuration and Power Interface (ACPI) events. acpid should be started\n" @@ -9567,35 +9691,35 @@ msgid "" "specified in /etc/acpi/events and execute the rules that match the event." msgstr "" -#: gnu/packages/linux.scm:4843 +#: gnu/packages/linux.scm:4875 msgid "" "These are a set of utilities built upon sysfs, a virtual file system in\n" "Linux kernel versions 2.5+ that exposes a system's device tree. The package\n" "also contains the libsysfs library." msgstr "" -#: gnu/packages/linux.scm:4886 +#: gnu/packages/linux.scm:4918 msgid "" "The cpufrequtils suite contains utilities to retrieve CPU frequency\n" "information, and set the CPU frequency if supported, using the cpufreq\n" "capabilities of the Linux kernel." msgstr "" -#: gnu/packages/linux.scm:4922 +#: gnu/packages/linux.scm:4954 msgid "" "This package provides many of the missing pieces in GNU\n" "libc. Most notably the string functions: strlcpy(3), strlcat(3) and the *BSD\n" "sys/queue.h and sys/tree.h API's." msgstr "" -#: gnu/packages/linux.scm:4945 +#: gnu/packages/linux.scm:4977 #, fuzzy msgid "" "This package provides small event loop that wraps the\n" "epoll family of APIs." msgstr "Este paquete proporciona un diccionario para el comprobador ortográfico GNU Aspell." -#: gnu/packages/linux.scm:4966 +#: gnu/packages/linux.scm:4998 msgid "" "Libraw1394 is the only supported interface to the kernel side raw1394 of\n" "the Linux IEEE-1394 subsystem, which provides direct access to the connected\n" @@ -9604,26 +9728,26 @@ msgid "" "protocol in question." msgstr "" -#: gnu/packages/linux.scm:4992 +#: gnu/packages/linux.scm:5024 msgid "" "Libavc1394 is a programming interface to the AV/C specification from\n" "the 1394 Trade Association. AV/C stands for Audio/Video Control." msgstr "" -#: gnu/packages/linux.scm:5016 +#: gnu/packages/linux.scm:5048 msgid "" "The libiec61883 library provides a higher level API for streaming DV,\n" "MPEG-2 and audio over Linux IEEE 1394." msgstr "" -#: gnu/packages/linux.scm:5067 +#: gnu/packages/linux.scm:5099 msgid "" "mdadm is a tool for managing Linux Software RAID arrays. It can create,\n" "assemble, report on, and monitor arrays. It can also move spares between raid\n" "arrays when needed." msgstr "" -#: gnu/packages/linux.scm:5199 +#: gnu/packages/linux.scm:5231 msgid "" "This package provides the following binaries to drive the\n" "Linux Device Mapper multipathing driver:\n" @@ -9636,66 +9760,66 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:5244 +#: gnu/packages/linux.scm:5288 msgid "" "This library enables userspace to use Linux kernel asynchronous I/O\n" "system calls, important for the performance of databases and other advanced\n" "applications." msgstr "" -#: gnu/packages/linux.scm:5287 +#: gnu/packages/linux.scm:5331 msgid "" "Blktrace is a block layer IO tracing mechanism which provides\n" "detailed information about request queue operations to user space. It extracts\n" "event traces from the kernel (via the relaying through the debug file system)." msgstr "" -#: gnu/packages/linux.scm:5312 +#: gnu/packages/linux.scm:5356 msgid "" "The SBC is a digital audio encoder and decoder used to transfer data to\n" "Bluetooth audio output devices like headphones or loudspeakers." msgstr "" -#: gnu/packages/linux.scm:5379 +#: gnu/packages/linux.scm:5423 msgid "" "BlueZ provides support for the core Bluetooth layers and protocols. It\n" "is flexible, efficient and uses a modular implementation." msgstr "" -#: gnu/packages/linux.scm:5403 +#: gnu/packages/linux.scm:5447 msgid "" "This package provides a FUSE-based file system that provides read and\n" "write access to exFAT devices." msgstr "" -#: gnu/packages/linux.scm:5426 +#: gnu/packages/linux.scm:5470 msgid "" "FuseISO is a FUSE module to mount ISO file system images (.iso, .nrg,\n" ".bin, .mdf and .img files). It supports plain ISO9660 Level 1 and 2, Rock\n" "Ridge, Joliet, and zisofs." msgstr "" -#: gnu/packages/linux.scm:5480 +#: gnu/packages/linux.scm:5524 msgid "" "The GPM (general-purpose mouse) daemon is a mouse server for\n" "applications running on the Linux console. It allows users to select items\n" "and copy/paste text in the console and in xterm." msgstr "" -#: gnu/packages/linux.scm:5551 +#: gnu/packages/linux.scm:5595 msgid "" "Btrfs is a @dfn{copy-on-write} (CoW) file system for Linux\n" "aimed at implementing advanced features while focusing on fault tolerance,\n" "repair and easy administration." msgstr "" -#: gnu/packages/linux.scm:5585 +#: gnu/packages/linux.scm:5629 msgid "" "This package provides the statically-linked @command{btrfs}\n" "from the btrfs-progs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5617 +#: gnu/packages/linux.scm:5661 msgid "" "Cramfs is a Linux file system designed to be simple, small,\n" "and to compress things well. It is used on a number of embedded systems and\n" @@ -9703,7 +9827,7 @@ msgid "" "blocks and random block placement." msgstr "" -#: gnu/packages/linux.scm:5652 +#: gnu/packages/linux.scm:5696 msgid "" "@command{compsize} takes a list of files (given as\n" "arguments) on a Btrfs file system and measures used compression types and\n" @@ -9720,20 +9844,20 @@ msgid "" "obviously it can be shared with files outside our set)." msgstr "" -#: gnu/packages/linux.scm:5700 +#: gnu/packages/linux.scm:5744 msgid "" "F2FS, the Flash-Friendly File System, is a modern file system\n" "designed to be fast and durable on flash devices such as solid-state\n" "disks and SD cards. This package provides the userland utilities." msgstr "" -#: gnu/packages/linux.scm:5790 +#: gnu/packages/linux.scm:5834 msgid "" "This package provides statically-linked fsck.f2fs command taken\n" "from the f2fs-tools package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5821 +#: gnu/packages/linux.scm:5865 msgid "" "Prevents shock damage to the internal spinning hard drive(s) of some\n" "HP and Dell laptops. When sudden movement is detected, all input/output\n" @@ -9743,7 +9867,7 @@ msgid "" "feature, and a laptop with an accelerometer. It has no effect on SSDs." msgstr "" -#: gnu/packages/linux.scm:5879 +#: gnu/packages/linux.scm:5923 msgid "" "Thinkfan is a simple fan control program. It reads temperatures,\n" "checks them against configured limits and switches to appropriate (also\n" @@ -9752,7 +9876,7 @@ msgid "" "from userspace." msgstr "" -#: gnu/packages/linux.scm:5935 +#: gnu/packages/linux.scm:5979 msgid "" "Tpacpi-bat is a command-line interface to control battery charging on\n" "@uref{https://github.com/teleshoes/tpacpi-bat/wiki/Supported-Hardware, Lenovo\n" @@ -9767,7 +9891,7 @@ msgid "" "supported." msgstr "" -#: gnu/packages/linux.scm:5979 +#: gnu/packages/linux.scm:6023 msgid "" "Tmon is a tool to interact with the complex thermal subsystem of the\n" "kernel Linux. It helps visualize thermal relationships and real-time thermal\n" @@ -9784,7 +9908,7 @@ msgid "" "by hand is no trivial task: @command{tmon} aims to make it understandable." msgstr "" -#: gnu/packages/linux.scm:6021 +#: gnu/packages/linux.scm:6065 msgid "" "Turbostat reports x86 processor topology, frequency, idle power state\n" "statistics, temperature, and power consumption. Some information is unavailable\n" @@ -9799,20 +9923,20 @@ msgid "" "invocations of itself." msgstr "" -#: gnu/packages/linux.scm:6080 +#: gnu/packages/linux.scm:6124 msgid "" "NTFS-3G provides read-write access to NTFS file systems, which are\n" "commonly found on Microsoft Windows. It is implemented as a FUSE file system.\n" "The package provides additional NTFS tools." msgstr "" -#: gnu/packages/linux.scm:6127 +#: gnu/packages/linux.scm:6171 msgid "" "This package provides a statically linked @command{ntfsfix} taken\n" "from the ntfs-3g package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:6174 +#: gnu/packages/linux.scm:6218 msgid "" "This package provides userspace components for the InfiniBand\n" "subsystem of the Linux kernel. Specifically it contains userspace\n" @@ -9832,7 +9956,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6228 +#: gnu/packages/linux.scm:6272 msgid "" "This is a collection of tests written over uverbs intended for\n" "use as a performance micro-benchmark. The tests may be used for hardware or\n" @@ -9848,20 +9972,20 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6270 +#: gnu/packages/linux.scm:6314 msgid "" "Monitor a hardware random number generator, and supply entropy\n" "from that to the system kernel's @file{/dev/random} machinery." msgstr "" -#: gnu/packages/linux.scm:6312 +#: gnu/packages/linux.scm:6356 msgid "" "cpupower is a set of user-space tools that use the cpufreq feature of the\n" "Linux kernel to retrieve and control processor features related to power saving,\n" "such as frequency and voltage scaling." msgstr "" -#: gnu/packages/linux.scm:6344 +#: gnu/packages/linux.scm:6388 msgid "" "@command{x86_energy_perf_policy} displays and updates energy-performance\n" "policy settings specific to Intel Architecture Processors. Settings are\n" @@ -9869,7 +9993,7 @@ msgid "" "cpufreq sub-system is enabled or not." msgstr "" -#: gnu/packages/linux.scm:6370 +#: gnu/packages/linux.scm:6414 msgid "" "haveged generates an unpredictable stream of random numbers for use by\n" "Linux's @file{/dev/random} and @file{/dev/urandom} devices. The kernel's\n" @@ -9887,7 +10011,7 @@ msgid "" "not as a replacement for it." msgstr "" -#: gnu/packages/linux.scm:6456 +#: gnu/packages/linux.scm:6500 msgid "" "eCryptfs is a POSIX-compliant stacked cryptographic file system for Linux.\n" "Each file's cryptographic meta-data is stored inside the file itself, along\n" @@ -9897,7 +10021,7 @@ msgid "" "2.6.19. This package contains the userland utilities to manage it." msgstr "" -#: gnu/packages/linux.scm:6488 +#: gnu/packages/linux.scm:6532 msgid "" "Libnfsidmap is a library holding mulitiple methods of\n" "mapping names to ids and visa versa, mainly for NFSv4. It provides an\n" @@ -9905,13 +10029,13 @@ msgid "" "the default @code{nsswitch} and the experimental @code{umich_ldap}." msgstr "" -#: gnu/packages/linux.scm:6524 +#: gnu/packages/linux.scm:6568 msgid "" "Tools for loading and managing Linux kernel modules, such as\n" "@code{modprobe}, @code{insmod}, @code{lsmod}, and more." msgstr "" -#: gnu/packages/linux.scm:6565 +#: gnu/packages/linux.scm:6609 msgid "" "The mcelog daemon logs memory, I/O, CPU, and other hardware errors on x86\n" "systems running the kernel Linux. It can also perform user-defined tasks, such\n" @@ -9919,13 +10043,13 @@ msgid "" "exceeded." msgstr "" -#: gnu/packages/linux.scm:6596 +#: gnu/packages/linux.scm:6640 msgid "" "This package provides utilities for testing, partitioning, etc\n" "of flash storage." msgstr "" -#: gnu/packages/linux.scm:6628 +#: gnu/packages/linux.scm:6672 msgid "" "The libseccomp library provides an easy to use, platform\n" "independent, interface to the Linux Kernel's syscall filtering mechanism. The\n" @@ -9935,7 +10059,7 @@ msgid "" "developers." msgstr "" -#: gnu/packages/linux.scm:6671 +#: gnu/packages/linux.scm:6715 msgid "" "RadeonTop monitors resource consumption on supported AMD\n" "Radeon Graphics Processing Units (GPUs), either in real time as bar graphs on\n" @@ -9945,13 +10069,13 @@ msgid "" "under OpenGL graphics workloads." msgstr "" -#: gnu/packages/linux.scm:6718 +#: gnu/packages/linux.scm:6762 msgid "" "This package provides a library and a command line\n" "interface to the variable facility of UEFI boot firmware." msgstr "" -#: gnu/packages/linux.scm:6755 +#: gnu/packages/linux.scm:6799 msgid "" "@code{efibootmgr} is a user-space application to modify the Intel\n" "Extensible Firmware Interface (EFI) Boot Manager. This application can\n" @@ -9959,7 +10083,7 @@ msgid "" "running boot option, and more." msgstr "" -#: gnu/packages/linux.scm:6791 +#: gnu/packages/linux.scm:6835 msgid "" "The sysstat utilities are a collection of performance\n" "monitoring tools for Linux. These include @code{mpstat}, @code{iostat},\n" @@ -9967,7 +10091,7 @@ msgid "" "@code{sadf} and @code{sa}." msgstr "" -#: gnu/packages/linux.scm:6832 +#: gnu/packages/linux.scm:6876 msgid "" "Light is a program to send commands to screen backlight controllers\n" "under GNU/Linux. Features include:\n" @@ -9981,7 +10105,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/linux.scm:6880 +#: gnu/packages/linux.scm:6924 msgid "" "This program allows you read and control device brightness. Devices\n" "include backlight and LEDs. It can also preserve current brightness before\n" @@ -9991,7 +10115,7 @@ msgid "" "interface in sysfs, which can be accomplished with the included udev rules." msgstr "" -#: gnu/packages/linux.scm:7007 +#: gnu/packages/linux.scm:7048 msgid "" "TLP is a power management tool for Linux. It comes with\n" "a default configuration already optimized for battery life. Nevertheless,\n" @@ -9999,7 +10123,7 @@ msgid "" "every time the power supply source is changed." msgstr "" -#: gnu/packages/linux.scm:7073 +#: gnu/packages/linux.scm:7114 msgid "" "The Python scripts in this project generate a GTK-UI to change\n" "TLP configuration files easily. It aims to protect users from setting\n" @@ -10007,7 +10131,7 @@ msgid "" "configuration values." msgstr "" -#: gnu/packages/linux.scm:7099 +#: gnu/packages/linux.scm:7140 msgid "" "@command{lshw} (Hardware Lister) is a small tool to provide\n" "detailed information on the hardware configuration of the machine.\n" @@ -10017,7 +10141,7 @@ msgid "" "machines (PowerMac G4 is known to work)." msgstr "" -#: gnu/packages/linux.scm:7123 +#: gnu/packages/linux.scm:7164 msgid "" "Libmnl is a minimalistic user-space library oriented to\n" "Netlink developers. There are a lot of common tasks in parsing, validating,\n" @@ -10026,7 +10150,7 @@ msgid "" "re-use code and to avoid re-inventing the wheel." msgstr "" -#: gnu/packages/linux.scm:7148 +#: gnu/packages/linux.scm:7189 msgid "" "Libnftnl is a userspace library providing a low-level netlink\n" "programming interface to the in-kernel nf_tables subsystem. The library\n" @@ -10034,7 +10158,7 @@ msgid "" "used by nftables." msgstr "" -#: gnu/packages/linux.scm:7194 +#: gnu/packages/linux.scm:7235 msgid "" "nftables is the project that aims to replace the existing\n" "{ip,ip6,arp,eb}tables framework. Basically, this project provides a new packet\n" @@ -10044,7 +10168,7 @@ msgid "" "userspace queueing component and the logging subsystem." msgstr "" -#: gnu/packages/linux.scm:7336 +#: gnu/packages/linux.scm:7377 msgid "" "PRoot is a user-space implementation of @code{chroot}, @code{mount --bind},\n" "and @code{binfmt_misc}. This means that users don't need any privileges or\n" @@ -10057,7 +10181,7 @@ msgid "" "available in the kernel Linux." msgstr "" -#: gnu/packages/linux.scm:7399 +#: gnu/packages/linux.scm:7437 msgid "" "cpuid dumps detailed information about the CPU(s) gathered\n" "from the CPUID instruction, and also determines the exact model of CPU(s). It\n" @@ -10065,14 +10189,14 @@ msgid "" "NexGen, Rise, and SiS CPUs." msgstr "" -#: gnu/packages/linux.scm:7426 +#: gnu/packages/linux.scm:7464 msgid "" "jmtpfs uses FUSE (file system in userspace) to provide access\n" "to data over the Media Transfer Protocol (MTP). Unprivileged users can mount\n" "the MTP device as a file system." msgstr "" -#: gnu/packages/linux.scm:7453 +#: gnu/packages/linux.scm:7491 msgid "" "Procenv is a command-line tool that displays as much detail about\n" "itself and its environment as possible. It can be used as a test\n" @@ -10080,7 +10204,7 @@ msgid "" "comparing system environments." msgstr "" -#: gnu/packages/linux.scm:7482 +#: gnu/packages/linux.scm:7520 msgid "" "OpenFabrics Interfaces (OFI) is a framework focused on exporting fabric\n" "communication services to applications. OFI is best described as a collection\n" @@ -10094,7 +10218,7 @@ msgid "" "libraries, which are often integrated directly into libfabric." msgstr "" -#: gnu/packages/linux.scm:7544 +#: gnu/packages/linux.scm:7582 msgid "" "The PSM Messaging API, or PSM API, is Intel's low-level user-level\n" "communications interface for the True Scale family of products. PSM users are\n" @@ -10102,14 +10226,14 @@ msgid "" "interfaces in parallel environments." msgstr "" -#: gnu/packages/linux.scm:7587 +#: gnu/packages/linux.scm:7625 msgid "" "snapscreenshot saves a screenshot of one or more Linux text consoles as a\n" "Targa (@dfn{.tga}) image. It can be used by anyone with read access to the\n" "relevant @file{/dev/vcs*} file(s)." msgstr "" -#: gnu/packages/linux.scm:7641 +#: gnu/packages/linux.scm:7679 msgid "" "fbcat saves the contents of the Linux framebuffer (@file{/dev/fb*}), or\n" "a dump therof. It supports a wide range of drivers and pixel formats.\n" @@ -10121,14 +10245,14 @@ msgid "" "emulates the behaviour of Gunnar Monell's older fbgrab utility." msgstr "" -#: gnu/packages/linux.scm:7672 +#: gnu/packages/linux.scm:7710 msgid "" "Control groups is Linux kernel method for process resource\n" "restriction, permission handling and more. This package provides userspace\n" "interface to this kernel feature." msgstr "" -#: gnu/packages/linux.scm:7707 +#: gnu/packages/linux.scm:7745 msgid "" "mbpfan is a fan control daemon for Apple Macbooks. It uses input from\n" "the @code{coretemp} module and sets the fan speed using the @code{applesmc}\n" @@ -10136,7 +10260,7 @@ msgid "" "privileges." msgstr "" -#: gnu/packages/linux.scm:7751 +#: gnu/packages/linux.scm:7789 msgid "" "This package is low-level user-level Intel's communications interface.\n" "The PSM2 API is a high-performance vendor-specific protocol that provides a\n" @@ -10144,7 +10268,7 @@ msgid "" "high-speed networking devices." msgstr "" -#: gnu/packages/linux.scm:7794 +#: gnu/packages/linux.scm:7832 msgid "" "This package provides a library called libpfm4, which is used to develop\n" "monitoring tools exploiting the performance monitoring events such as those\n" @@ -10159,7 +10283,7 @@ msgid "" "introduced in Linux 2.6.31." msgstr "" -#: gnu/packages/linux.scm:7824 +#: gnu/packages/linux.scm:7862 msgid "" "@code{libnfnetlink} is the low-level library for netfilter related\n" "kernel/userspace communication. It provides a generic messaging\n" @@ -10168,7 +10292,7 @@ msgid "" "management tools in userspace." msgstr "" -#: gnu/packages/linux.scm:7851 +#: gnu/packages/linux.scm:7889 msgid "" "The netlink package provides a simple netlink library for\n" "Go. Netlink is the interface a user-space program in Linux uses to\n" @@ -10176,7 +10300,7 @@ msgid "" "IP addresses and routes, and configure IPsec." msgstr "" -#: gnu/packages/linux.scm:7891 +#: gnu/packages/linux.scm:7929 msgid "" "The inih (INI Not Invented Here) library is a simple .INI file\n" "parser written in C. It's only a couple of pages of code, and it was designed to\n" @@ -10185,19 +10309,19 @@ msgid "" "822-style multi-line syntax and name: value entries." msgstr "" -#: gnu/packages/linux.scm:7942 +#: gnu/packages/linux.scm:7980 msgid "" "This package provides commands to create and check XFS\n" "file systems." msgstr "" -#: gnu/packages/linux.scm:7998 +#: gnu/packages/linux.scm:8036 msgid "" "This package provides a statically linked @command{xfs_repair} taken\n" "from the xfsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:8034 +#: gnu/packages/linux.scm:8072 msgid "" "This package provides a program to generate an ext2\n" "file system as a normal (non-root) user. It does not require you to mount\n" @@ -10205,7 +10329,7 @@ msgid "" "the superuser to make device nodes." msgstr "" -#: gnu/packages/linux.scm:8129 +#: gnu/packages/linux.scm:8167 msgid "" "@command{fakeroot} runs a command in an environment where it appears to\n" "have root privileges for file manipulation. This is useful for allowing users\n" @@ -10218,7 +10342,7 @@ msgid "" "without using the archiver." msgstr "" -#: gnu/packages/linux.scm:8169 +#: gnu/packages/linux.scm:8207 msgid "" "@command{fakechroot} runs a command in an environment were is additional\n" "possibility to use @code{chroot} command without root privileges. This is\n" @@ -10229,13 +10353,13 @@ msgid "" "set as @code{LD_PRELOAD} to override the C library file system functions." msgstr "" -#: gnu/packages/linux.scm:8215 +#: gnu/packages/linux.scm:8253 msgid "" "inputattach dispatches input events from several device\n" "types and interfaces and translates so that the X server can use them." msgstr "" -#: gnu/packages/linux.scm:8251 +#: gnu/packages/linux.scm:8289 msgid "" "PipeWire is a project that aims to greatly improve handling of audio and\n" "video under Linux. It aims to support the usecases currently handled by both\n" @@ -10247,7 +10371,7 @@ msgid "" "of Linux application development." msgstr "" -#: gnu/packages/linux.scm:8318 +#: gnu/packages/linux.scm:8356 msgid "" "WirePlumber is a modular session / policy manager for\n" "PipeWire and a GObject-based high-level library that wraps PipeWire's API,\n" @@ -10255,7 +10379,7 @@ msgid "" "tools for managing PipeWire." msgstr "" -#: gnu/packages/linux.scm:8357 +#: gnu/packages/linux.scm:8395 msgid "" "The Embedded Linux* Library (ELL) provides core, low-level\n" "functionality for system daemons. It typically has no dependencies other than\n" @@ -10264,7 +10388,7 @@ msgid "" "platforms, it is not limited to resource-constrained systems." msgstr "" -#: gnu/packages/linux.scm:8386 +#: gnu/packages/linux.scm:8424 msgid "" "This package provides the @code{kexec} program and ancillary\n" "utilities. Using @code{kexec}, it is possible to boot directly into a new\n" @@ -10272,7 +10396,7 @@ msgid "" "system boot process." msgstr "" -#: gnu/packages/linux.scm:8419 +#: gnu/packages/linux.scm:8457 msgid "" "@code{cachefilesd} is a userspace daemon that manages the\n" "cache data store that is used by network file systems such as @code{AFS} and\n" @@ -10280,14 +10404,14 @@ msgid "" "persistent over reboots." msgstr "" -#: gnu/packages/linux.scm:8463 +#: gnu/packages/linux.scm:8501 msgid "" "Libbpf supports building BPF CO-RE-enabled applications, which, in\n" "contrast to BCC, do not require the Clang/LLVM runtime or linux kernel\n" "headers." msgstr "" -#: gnu/packages/linux.scm:8541 +#: gnu/packages/linux.scm:8579 msgid "" "BCC is a toolkit for creating efficient kernel tracing and manipulation\n" "programs, and includes several useful tools and examples. It makes use of\n" @@ -10296,7 +10420,7 @@ msgid "" "and above." msgstr "" -#: gnu/packages/linux.scm:8577 +#: gnu/packages/linux.scm:8615 msgid "" "bpftrace is a high-level tracing language for Linux enhanced Berkeley\n" "Packet Filter (eBPF) available in recent Linux kernels (4.x). bpftrace uses\n" @@ -10308,14 +10432,14 @@ msgid "" "created by Alastair Robertson." msgstr "" -#: gnu/packages/linux.scm:8609 +#: gnu/packages/linux.scm:8647 msgid "" "This package provides a Linux kernel module that will\n" "provide a serial device @code{/dev/ttyebus} with almost no latency upon\n" "receiving. It is dedicated to the PL011 UART of the Raspberry Pi." msgstr "" -#: gnu/packages/linux.scm:8635 +#: gnu/packages/linux.scm:8673 msgid "" "IP sets are a framework inside the Linux 2.4.x and 2.6.x kernel which\n" "can be administered by the ipset utility. Depending on the type,\n" @@ -10336,7 +10460,7 @@ msgid "" "then IP sets may be the proper tool for you." msgstr "" -#: gnu/packages/linux.scm:8682 +#: gnu/packages/linux.scm:8720 msgid "" "This is the io_uring library, liburing. liburing provides\n" "helpers to setup and teardown io_uring instances, and also a simplified\n" @@ -10344,14 +10468,14 @@ msgid "" "kernel side implementation." msgstr "" -#: gnu/packages/linux.scm:8710 +#: gnu/packages/linux.scm:8748 msgid "" "@acronym{EROFS, The Enhanced Read-Only File System} is a compressed,\n" "read-only file system optimized for resource-scarce devices. This package\n" "provides user-space tools for creating EROFS file systems." msgstr "" -#: gnu/packages/linux.scm:8754 +#: gnu/packages/linux.scm:8792 msgid "" "The @code{rasdaemon} daemon monitors platform @acronym{RAS, Reliability\n" "Availability and Serviceability} reports from Linux kernel trace events.\n" @@ -10359,7 +10483,7 @@ msgid "" "through standard log mechanisms like syslog." msgstr "" -#: gnu/packages/linux.scm:8788 +#: gnu/packages/linux.scm:8826 msgid "" "This package provides a C library with C++/Python bindings and\n" "command-line tools for interacting with GPIO devices that avoids the usage of\n" @@ -10385,33 +10509,33 @@ msgid "" "beginning." msgstr "" -#: gnu/packages/messaging.scm:181 +#: gnu/packages/messaging.scm:183 msgid "" "OMEMO-wget is a tool to handle cryptographic URLs, generated\n" "by @acronym{OMEMO, OMEMO Multi-End Message and Object Encryption}, during\n" "XMPP-based sessions." msgstr "" -#: gnu/packages/messaging.scm:237 +#: gnu/packages/messaging.scm:239 msgid "" "Psi is a capable XMPP client aimed at experienced users.\n" "Its design goals are simplicity and stability." msgstr "" -#: gnu/packages/messaging.scm:295 +#: gnu/packages/messaging.scm:297 msgid "" "GNT is an ncurses toolkit for creating text-mode graphical\n" "user interfaces in a fast and easy way. It is based on GLib and ncurses." msgstr "" -#: gnu/packages/messaging.scm:346 +#: gnu/packages/messaging.scm:348 msgid "" "LibGadu is library for handling Gadu-Gadu instant messenger\n" "protocol. The library is written in C and aims to be operating system and\n" "environment independent." msgstr "" -#: gnu/packages/messaging.scm:381 +#: gnu/packages/messaging.scm:383 msgid "" "SILC (Secure Internet Live Conferencing) is a modern and secure\n" "conferencing protocol. It provides all the common conferencing services like\n" @@ -10419,14 +10543,14 @@ msgid "" "conferencing." msgstr "" -#: gnu/packages/messaging.scm:427 +#: gnu/packages/messaging.scm:429 msgid "" "QXmpp is a XMPP client and server library written in C++ and uses the Qt\n" "framework. It builds XMPP clients complying with the XMPP Compliance Suites\n" "2021 for IM and Advanced Mobile." msgstr "" -#: gnu/packages/messaging.scm:454 +#: gnu/packages/messaging.scm:456 msgid "" "Meanwhile is a library for connecting to a LIM (Lotus Instant\n" "Messaging, formerly Lotus Sametime, formerly VPBuddy) community. It uses a\n" @@ -10434,7 +10558,7 @@ msgid "" "TCP sessions from existing clients." msgstr "" -#: gnu/packages/messaging.scm:500 +#: gnu/packages/messaging.scm:502 msgid "" "Poezio is a free console XMPP client (the protocol on which\n" "the Jabber IM network is built).\n" @@ -10447,7 +10571,7 @@ msgid "" "powerful, standard and open protocol." msgstr "" -#: gnu/packages/messaging.scm:533 +#: gnu/packages/messaging.scm:535 msgid "" "OTR allows you to have private conversations over instant\n" "messaging by providing: (1) Encryption: No one else can read your instant\n" @@ -10460,7 +10584,7 @@ msgid "" "your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:572 +#: gnu/packages/messaging.scm:574 msgid "" "libsignal-protocol-c is an implementation of a ratcheting\n" "forward secrecy protocol that works in synchronous and asynchronous\n" @@ -10468,20 +10592,20 @@ msgid "" "end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:609 +#: gnu/packages/messaging.scm:611 msgid "" "This is a client library for @code{libsignal-protocol-c}.\n" "It implements the necessary interfaces using @code{libgcrypt} and\n" "@code{sqlite}." msgstr "" -#: gnu/packages/messaging.scm:641 +#: gnu/packages/messaging.scm:643 msgid "" "This library implements @acronym{OMEMO, OMEMO Multi-End\n" "Message and Object Encryption} of XMPP (XEP-0384) in C." msgstr "" -#: gnu/packages/messaging.scm:681 +#: gnu/packages/messaging.scm:683 msgid "" "BitlBee brings IM (instant messaging) to IRC clients, for\n" "people who have an IRC client running all the time and don't want to run an\n" @@ -10491,20 +10615,20 @@ msgid "" "identi.ca and status.net)." msgstr "" -#: gnu/packages/messaging.scm:748 +#: gnu/packages/messaging.scm:750 msgid "" "Bitlbee-discord is a plugin for Bitlbee which provides\n" "access to servers running the Discord protocol." msgstr "" -#: gnu/packages/messaging.scm:794 +#: gnu/packages/messaging.scm:796 msgid "" "Purple-Mattermost is a plug-in for Purple, the instant messaging library\n" "used by Pidgin and Bitlbee, among others, to access\n" "@uref{https://mattermost.com/, Mattermost} servers." msgstr "" -#: gnu/packages/messaging.scm:852 +#: gnu/packages/messaging.scm:854 msgid "" "HexChat lets you connect to multiple IRC networks at once. The main\n" "window shows the list of currently connected networks and their channels, the\n" @@ -10513,7 +10637,7 @@ msgid "" "dictionaries. HexChat can be extended with multiple addons." msgstr "" -#: gnu/packages/messaging.scm:917 +#: gnu/packages/messaging.scm:919 msgid "" "ngIRCd is a lightweight @dfn{Internet Relay Chat} (IRC) server for small\n" "or private networks. It is easy to configure, can cope with dynamic IP\n" @@ -10521,13 +10645,13 @@ msgid "" "authentication." msgstr "" -#: gnu/packages/messaging.scm:1024 +#: gnu/packages/messaging.scm:1026 msgid "" "Pidgin is a modular instant messaging client that supports\n" "many popular chat protocols." msgstr "" -#: gnu/packages/messaging.scm:1064 +#: gnu/packages/messaging.scm:1066 msgid "" "Pidgin-OTR is a plugin that adds support for OTR to the Pidgin\n" "instant messaging client. OTR (Off-the-Record) Messaging allows you to have\n" @@ -10541,7 +10665,7 @@ msgid "" "control of your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:1118 +#: gnu/packages/messaging.scm:1120 msgid "" "ZNC is an @dfn{IRC network bouncer} or @dfn{BNC}. It can\n" "detach the client from the actual IRC server, and also from selected channels.\n" @@ -10549,41 +10673,41 @@ msgid "" "simultaneously and therefore appear under the same nickname on IRC." msgstr "" -#: gnu/packages/messaging.scm:1147 +#: gnu/packages/messaging.scm:1149 msgid "" "Python-nbxmpp is a Python library that provides a way for\n" "Python applications to use the XMPP network. This library was initially a fork\n" "of xmpppy." msgstr "" -#: gnu/packages/messaging.scm:1274 +#: gnu/packages/messaging.scm:1276 msgid "" "Gajim aims to be an easy to use and fully-featured XMPP chat\n" "client. It is extensible via plugins, supports end-to-end encryption (OMEMO\n" "and OpenPGP) and available in 29 languages." msgstr "" -#: gnu/packages/messaging.scm:1309 +#: gnu/packages/messaging.scm:1311 msgid "" "Gajim-OMEMO is a plugin that adds support for the OMEMO\n" "Encryption to Gajim. OMEMO is an XMPP Extension Protocol (XEP) for secure\n" "multi-client end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:1344 +#: gnu/packages/messaging.scm:1346 msgid "" "Gajim-OpenPGP is a plugin that adds support for the OpenPGP\n" "Encryption to Gajim." msgstr "" -#: gnu/packages/messaging.scm:1418 +#: gnu/packages/messaging.scm:1420 msgid "" "Dino is a chat client for the desktop. It focuses on providing\n" "a minimal yet reliable Jabber/XMPP experience and having encryption enabled by\n" "default." msgstr "" -#: gnu/packages/messaging.scm:1505 +#: gnu/packages/messaging.scm:1507 msgid "" "Prosody is a modern XMPP communication server. It aims to\n" "be easy to set up and configure, and efficient with system resources.\n" @@ -10592,43 +10716,43 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/messaging.scm:1540 +#: gnu/packages/messaging.scm:1542 msgid "" "This module implements XEP-0363: it allows clients to\n" "upload files over HTTP." msgstr "" -#: gnu/packages/messaging.scm:1572 +#: gnu/packages/messaging.scm:1574 msgid "" "This module implements XEP-0198: when supported by both\n" "the client and server, it can allow clients to resume a disconnected session,\n" "and prevent message loss." msgstr "" -#: gnu/packages/messaging.scm:1601 +#: gnu/packages/messaging.scm:1603 msgid "C library implementation of the Tox encrypted messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1633 +#: gnu/packages/messaging.scm:1635 msgid "" "Official fork of the C library implementation of the Tox encrypted\n" "messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1687 +#: gnu/packages/messaging.scm:1689 msgid "" "uTox is a lightweight Tox client. Tox is a distributed and secure\n" "instant messenger with audio and video chat capabilities." msgstr "" -#: gnu/packages/messaging.scm:1750 +#: gnu/packages/messaging.scm:1752 msgid "" "qTox is a Tox client that follows the Tox design\n" "guidelines. It provides an easy to use application that allows you to\n" "connect with friends and family without anyone else listening in." msgstr "" -#: gnu/packages/messaging.scm:1772 +#: gnu/packages/messaging.scm:1774 msgid "" "Ytalk is a replacement for the BSD talk program. Its main\n" "advantage is the ability to communicate with any arbitrary number of users at\n" @@ -10636,7 +10760,7 @@ msgid "" "with several different talk daemons at the same time." msgstr "" -#: gnu/packages/messaging.scm:1796 +#: gnu/packages/messaging.scm:1798 msgid "" "gloox is a full-featured Jabber/XMPP client library,\n" "written in ANSI C++. It makes writing spec-compliant clients easy\n" @@ -10644,7 +10768,7 @@ msgid "" "into existing applications." msgstr "" -#: gnu/packages/messaging.scm:1866 +#: gnu/packages/messaging.scm:1868 msgid "" "@code{Net::PSYC} with support for TCP, UDP, Event.pm, @code{IO::Select} and\n" "Gtk2 event loops. This package includes 12 applications and additional scripts:\n" @@ -10652,14 +10776,14 @@ msgid "" "for @uref{https://torproject.org,tor} router) and many more." msgstr "" -#: gnu/packages/messaging.scm:1907 +#: gnu/packages/messaging.scm:1909 msgid "" "@code{libpsyc} is a PSYC library in C which implements\n" "core aspects of PSYC, useful for all kinds of clients and servers\n" "including psyced." msgstr "" -#: gnu/packages/messaging.scm:1949 +#: gnu/packages/messaging.scm:1951 msgid "" "Loudmouth is a lightweight and easy-to-use C library for programming\n" "with the XMPP (formerly known as Jabber) protocol. It is designed to be\n" @@ -10667,7 +10791,7 @@ msgid "" "protocol allows." msgstr "" -#: gnu/packages/messaging.scm:1991 +#: gnu/packages/messaging.scm:1993 msgid "" "Mcabber is a small XMPP (Jabber) console client, which includes features\n" "such as SASL and TLS support, @dfn{Multi-User Chat} (MUC) support, logging,\n" @@ -10675,7 +10799,7 @@ msgid "" "support, and more." msgstr "" -#: gnu/packages/messaging.scm:2039 +#: gnu/packages/messaging.scm:2041 msgid "" "GNU Freetalk is a command-line Jabber/XMPP chat client. It notably uses\n" "the Readline library to handle input, so it features convenient navigation of\n" @@ -10683,27 +10807,27 @@ msgid "" "is also scriptable and extensible via Guile." msgstr "" -#: gnu/packages/messaging.scm:2074 +#: gnu/packages/messaging.scm:2076 msgid "" "Libmesode is a fork of libstrophe for use with Profanity\n" "XMPP Client. In particular, libmesode provides extra TLS functionality such as\n" "manual SSL certificate verification." msgstr "" -#: gnu/packages/messaging.scm:2109 +#: gnu/packages/messaging.scm:2111 msgid "" "Libstrophe is a minimal XMPP library written in C. It has\n" "almost no external dependencies, only an XML parsing library (expat or libxml\n" "are both supported)." msgstr "" -#: gnu/packages/messaging.scm:2167 +#: gnu/packages/messaging.scm:2169 msgid "" "Profanity is a console based XMPP client written in C\n" "using ncurses and libmesode, inspired by Irssi." msgstr "" -#: gnu/packages/messaging.scm:2197 +#: gnu/packages/messaging.scm:2199 msgid "" "Libircclient is a library which implements the client IRC\n" "protocol. It is designed to be small, fast, portable and compatible with the\n" @@ -10711,14 +10835,14 @@ msgid "" "building the IRC clients and bots." msgstr "" -#: gnu/packages/messaging.scm:2255 +#: gnu/packages/messaging.scm:2257 msgid "" "Toxic is a console-based instant messaging client, using\n" "c-toxcore and ncurses. It provides audio calls, sound and desktop\n" "notifications, and Python scripting support." msgstr "" -#: gnu/packages/messaging.scm:2281 +#: gnu/packages/messaging.scm:2283 msgid "" "libqmatrixclient is a Qt5 library to write clients for the\n" "Matrix instant messaging protocol. Quaternion is the reference client\n" @@ -10726,13 +10850,13 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2326 +#: gnu/packages/messaging.scm:2330 msgid "" "@code{mtxclient} is a C++ library that implements client API\n" "for the Matrix protocol. It is built on to of @code{Boost.Asio}." msgstr "" -#: gnu/packages/messaging.scm:2418 +#: gnu/packages/messaging.scm:2423 msgid "" "@code{Nheko} want to provide a native desktop app for the\n" "Matrix protocol that feels more like a mainstream chat app and less like an IRC\n" @@ -10742,7 +10866,7 @@ msgid "" "notification, emojis, E2E encryption, and voip calls." msgstr "" -#: gnu/packages/messaging.scm:2455 +#: gnu/packages/messaging.scm:2460 msgid "" "Quaternion is a Qt5 desktop client for the Matrix instant\n" "messaging protocol. It uses libqmatrixclient and is its reference client\n" @@ -10750,7 +10874,7 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2502 +#: gnu/packages/messaging.scm:2507 msgid "" "Hangups is an instant messaging client for Google Hangouts. It includes\n" "both a Python library and a reference client with a text-based user interface.\n" @@ -10760,7 +10884,7 @@ msgid "" "messaging that aren’t available to clients that connect over XMPP." msgstr "" -#: gnu/packages/messaging.scm:2584 +#: gnu/packages/messaging.scm:2589 msgid "" "Telegram-purple is a plugin for Libpurple, the communication library\n" "used by the Pidgin instant messaging client, that adds support for the\n" @@ -10770,7 +10894,7 @@ msgid "" "replacement." msgstr "" -#: gnu/packages/messaging.scm:2629 +#: gnu/packages/messaging.scm:2632 msgid "" "Tdlib is a cross-platform library for creating custom\n" "Telegram clients following the official Telegram API. It can be easily used\n" @@ -10778,11 +10902,11 @@ msgid "" "support for high performance Telegram Bot creation." msgstr "" -#: gnu/packages/messaging.scm:2667 +#: gnu/packages/messaging.scm:2670 msgid "Plugin for libpurple to allow sending SMS using ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2712 +#: gnu/packages/messaging.scm:2715 msgid "" "Purple-lurch plugin adds end-to-end encryption support\n" "through the Double Ratchet (Axolotl) algorithm, to @code{libpurple}\n" @@ -10793,20 +10917,20 @@ msgid "" "asynchronicity." msgstr "" -#: gnu/packages/messaging.scm:2748 +#: gnu/packages/messaging.scm:2751 #, fuzzy msgid "" "This package provides a C++ library for parsing, formatting, and\n" "validating international phone numbers." msgstr "Este paquete proporciona un diccionario para el comprobador ortográfico GNU Aspell." -#: gnu/packages/messaging.scm:2793 +#: gnu/packages/messaging.scm:2796 msgid "" "Chatty is a chat program for XMPP and SMS. It works on mobile\n" "as well as on desktop platforms. It's based on libpurple and ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2814 +#: gnu/packages/messaging.scm:2817 msgid "" "This package provides Eclipse Mosquitto, a message broker\n" "that implements the MQTT protocol versions 5.0, 3.1.1 and 3.1. Mosquitto\n" @@ -10819,30 +10943,30 @@ msgid "" "as phones, embedded computers or microcontrollers." msgstr "" -#: gnu/packages/messaging.scm:2864 +#: gnu/packages/messaging.scm:2867 msgid "" "Movim-Desktop is a desktop application, relying on Qt, for the Movim\n" "social and chat platform." msgstr "" -#: gnu/packages/messaging.scm:2999 +#: gnu/packages/messaging.scm:3002 msgid "" "Psi+ is a spin-off of Psi XMPP client. It is a powerful XMPP client\n" "designed for experienced users." msgstr "" -#: gnu/packages/messaging.scm:3039 +#: gnu/packages/messaging.scm:3042 #, fuzzy msgid "This package provides Python bindings to Zulip's API." msgstr "" "Este paquete proporciona un diccionario para la biblioteca de\n" "comprobación ortográfica Hunspell." -#: gnu/packages/messaging.scm:3088 +#: gnu/packages/messaging.scm:3091 msgid "This package contains Zulip's official terminal client." msgstr "" -#: gnu/packages/messaging.scm:3110 +#: gnu/packages/messaging.scm:3113 msgid "" "Relays messages between different channels from various\n" "messaging networks and protocols. So far it supports mattermost, IRC, gitter,\n" @@ -10851,20 +10975,20 @@ msgid "" "API. Mattermost is not required." msgstr "" -#: gnu/packages/messaging.scm:3143 +#: gnu/packages/messaging.scm:3146 msgid "" "@command{pounce} is a multi-client, TLS-only IRC bouncer. It maintains\n" "a persistent connection to an IRC server, acting as a proxy and buffer for\n" "a number of clients." msgstr "" -#: gnu/packages/messaging.scm:3209 +#: gnu/packages/messaging.scm:3212 msgid "" "@code{weechat-matrix} is a Python plugin for Weechat that lets\n" "Weechat communicate over the Matrix protocol." msgstr "" -#: gnu/packages/messaging.scm:3256 +#: gnu/packages/messaging.scm:3259 msgid "" "@code{weechat-wee-slack} is a WeeChat native client for\n" "Slack. It provides supplemental features only available in the web/mobile\n" @@ -10974,14 +11098,14 @@ msgid "" "themselves." msgstr "" -#: gnu/packages/networking.scm:174 +#: gnu/packages/networking.scm:176 msgid "" "UsrSCTP is a portable SCTP userland stack. SCTP is a message\n" "oriented, reliable transport protocol with direct support for multihoming that\n" "runs on top of IP or UDP, and supports both v4 and v6 versions." msgstr "" -#: gnu/packages/networking.scm:199 +#: gnu/packages/networking.scm:201 msgid "" "Axel tries to accelerate the download process by using multiple\n" "connections per file, and can also balance the load between different\n" @@ -10990,38 +11114,38 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/networking.scm:264 +#: gnu/packages/networking.scm:266 msgid "" "LibCamera is a complex camera support library for GNU+Linux,\n" "Android, and ChromeOS." msgstr "" -#: gnu/packages/networking.scm:334 +#: gnu/packages/networking.scm:336 msgid "" "LibNice is a library that implements the Interactive\n" "Connectivity Establishment (ICE) standard (RFC 5245 & RFC 8445). It provides a\n" "GLib-based library, libnice, as well as GStreamer elements to use it." msgstr "" -#: gnu/packages/networking.scm:393 +#: gnu/packages/networking.scm:395 msgid "" "RTMPdump is a toolkit for RTMP streams. All forms of RTMP are\n" "supported, including rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps://." msgstr "" -#: gnu/packages/networking.scm:422 +#: gnu/packages/networking.scm:424 msgid "" "Slurm is a network load monitor. It shows real-time traffic statistics\n" "from any network device in any of three ASCII graph formats." msgstr "" -#: gnu/packages/networking.scm:457 +#: gnu/packages/networking.scm:459 msgid "" "SRT is a transport technology that optimizes streaming\n" "performance across unpredictable networks, such as the Internet." msgstr "" -#: gnu/packages/networking.scm:500 +#: gnu/packages/networking.scm:502 msgid "" "The lksctp-tools project provides a user-space library for @acronym{SCTP,\n" "the Stream Control Transmission Protocol} (@file{libsctp}) and C language header\n" @@ -11030,13 +11154,13 @@ msgid "" "It also includes some SCTP-related helper utilities." msgstr "" -#: gnu/packages/networking.scm:541 +#: gnu/packages/networking.scm:543 msgid "" "@code{pysctp} implements the SCTP socket API. You need a\n" "SCTP-aware kernel (most are)." msgstr "" -#: gnu/packages/networking.scm:565 +#: gnu/packages/networking.scm:567 msgid "" "@command{knockd} is a port-knock daemon. It listens to all traffic on\n" "an ethernet or PPP interface, looking for special \"knock\" sequences of @dfn{port-hits}\n" @@ -11044,7 +11168,7 @@ msgid "" "at the link-layer level." msgstr "" -#: gnu/packages/networking.scm:605 +#: gnu/packages/networking.scm:607 msgid "" "NNG project is a rewrite of the scalability protocols library\n" "known as libnanomsg, and adds significant new capabilities, while retaining\n" @@ -11053,7 +11177,7 @@ msgid "" "publish/subscribe, RPC-style request/reply, or service discovery." msgstr "" -#: gnu/packages/networking.scm:648 +#: gnu/packages/networking.scm:650 msgid "" "Nanomsg is a socket library that provides several common\n" "communication patterns. It aims to make the networking layer fast, scalable,\n" @@ -11061,14 +11185,14 @@ msgid "" "systems with no further dependencies." msgstr "" -#: gnu/packages/networking.scm:758 +#: gnu/packages/networking.scm:760 msgid "" "Blueman is a Bluetooth management utility using the Bluez\n" "D-Bus backend. It is designed to be easy to use for most common Bluetooth\n" "tasks." msgstr "" -#: gnu/packages/networking.scm:783 +#: gnu/packages/networking.scm:785 msgid "" "GNU MAC Changer is a utility for viewing and changing MAC\n" "addresses of networking devices. New addresses may be set explicitly or\n" @@ -11076,14 +11200,14 @@ msgid "" "or, more generally, MAC addresses of the same category of hardware." msgstr "" -#: gnu/packages/networking.scm:831 +#: gnu/packages/networking.scm:833 msgid "" "Miredo is an implementation (client, relay, server) of the Teredo\n" "specification, which provides IPv6 Internet connectivity to IPv6 enabled hosts\n" "residing in IPv4-only networks, even when they are behind a NAT device." msgstr "" -#: gnu/packages/networking.scm:851 +#: gnu/packages/networking.scm:853 msgid "" "NDisc6 is a collection of tools for IPv6 networking diagnostics.\n" "It includes the following programs:\n" @@ -11097,7 +11221,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:904 +#: gnu/packages/networking.scm:906 msgid "" "@command{parprouted} is a daemon for transparent IP (Layer@tie{}3)\n" "proxy ARP bridging. Unlike standard bridging, proxy ARP bridging can bridge\n" @@ -11107,7 +11231,14 @@ msgid "" "useful for making transparent firewalls." msgstr "" -#: gnu/packages/networking.scm:931 +#: gnu/packages/networking.scm:945 +msgid "" +"@command{pproxy} is an asynchronuous proxy server implemented with\n" +"Python 3 @code{asyncio}. Among the supported protocols are HTTP, SOCKS\n" +"and SSH, and it can use both TCP and UDP as transport mechanisms." +msgstr "" + +#: gnu/packages/networking.scm:969 msgid "" "socat is a relay for bidirectional data transfer between two independent\n" "data channels---files, pipes, devices, sockets, etc. It can create\n" @@ -11120,7 +11251,7 @@ msgid "" "or server shell scripts with network connections." msgstr "" -#: gnu/packages/networking.scm:962 +#: gnu/packages/networking.scm:1000 msgid "" "mbuffer is a tool for buffering data streams with a large set of features:\n" "\n" @@ -11136,14 +11267,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1058 +#: gnu/packages/networking.scm:1096 msgid "" "With this package you can monitor and filter incoming requests for\n" "network services. It includes a library which may be used by daemons to\n" "transparently check connection attempts against an access control list." msgstr "" -#: gnu/packages/networking.scm:1081 +#: gnu/packages/networking.scm:1119 msgid "" "The 0MQ lightweight messaging kernel is a library which extends the\n" "standard socket interfaces with features traditionally provided by specialized\n" @@ -11153,46 +11284,46 @@ msgid "" "more." msgstr "" -#: gnu/packages/networking.scm:1110 +#: gnu/packages/networking.scm:1148 msgid "" "czmq provides bindings for the ØMQ core API that hides the differences\n" "between different versions of ØMQ." msgstr "" -#: gnu/packages/networking.scm:1141 +#: gnu/packages/networking.scm:1179 msgid "" "This package provides header-only C++ bindings for ØMQ. The header\n" "files contain direct mappings of the abstractions provided by the ØMQ C API." msgstr "" -#: gnu/packages/networking.scm:1175 +#: gnu/packages/networking.scm:1213 msgid "" "@code{libnatpmp} is a portable and asynchronous implementation of\n" "the Network Address Translation - Port Mapping Protocol (NAT-PMP)\n" "written in the C programming language." msgstr "" -#: gnu/packages/networking.scm:1213 +#: gnu/packages/networking.scm:1251 msgid "" "librdkafka is a C library implementation of the Apache Kafka protocol,\n" "containing both Producer and Consumer support." msgstr "" -#: gnu/packages/networking.scm:1232 +#: gnu/packages/networking.scm:1270 msgid "" "libndp contains a library which provides a wrapper for IPv6 Neighbor\n" "Discovery Protocol. It also provides a tool named ndptool for sending and\n" "receiving NDP messages." msgstr "" -#: gnu/packages/networking.scm:1256 +#: gnu/packages/networking.scm:1294 msgid "" "ethtool can be used to query and change settings such as speed,\n" "auto-negotiation and checksum offload on many network devices, especially\n" "Ethernet devices." msgstr "" -#: gnu/packages/networking.scm:1298 +#: gnu/packages/networking.scm:1336 msgid "" "IFStatus is a simple, easy-to-use program for displaying commonly\n" "needed/wanted real-time traffic statistics of multiple network\n" @@ -11200,7 +11331,7 @@ msgid "" "intended as a substitute for the PPPStatus and EthStatus projects." msgstr "" -#: gnu/packages/networking.scm:1347 +#: gnu/packages/networking.scm:1385 msgid "" "This package contains a variety of tools for dealing with network\n" "configuration, troubleshooting, or servers. Utilities included are:\n" @@ -11221,7 +11352,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1388 +#: gnu/packages/networking.scm:1426 msgid "" "Nload is a console application which monitors network traffic and\n" "bandwidth usage in real time. It visualizes the in- and outgoing traffic using\n" @@ -11229,7 +11360,7 @@ msgid "" "and min/max network usage." msgstr "" -#: gnu/packages/networking.scm:1432 +#: gnu/packages/networking.scm:1470 msgid "" "Iodine tunnels IPv4 data through a DNS server. This\n" "can be useful in different situations where internet access is firewalled, but\n" @@ -11237,7 +11368,7 @@ msgid "" "and up to 1 Mbit/s downstream." msgstr "" -#: gnu/packages/networking.scm:1473 +#: gnu/packages/networking.scm:1511 msgid "" "whois searches for an object in a @dfn{WHOIS} (RFC 3912) database.\n" "It is commonly used to look up the registered users or assignees of an Internet\n" @@ -11249,14 +11380,14 @@ msgid "" "of the same name." msgstr "" -#: gnu/packages/networking.scm:1553 +#: gnu/packages/networking.scm:1591 msgid "" "Wireshark is a network protocol analyzer, or @dfn{packet\n" "sniffer}, that lets you capture and interactively browse the contents of\n" "network frames." msgstr "" -#: gnu/packages/networking.scm:1574 +#: gnu/packages/networking.scm:1613 msgid "" "fping is a ping-like program which uses @acronym{ICMP, Internet Control\n" "Message Protocol} echo requests to determine if a target host is responding.\n" @@ -11268,26 +11399,26 @@ msgid "" "round-robin fashion." msgstr "" -#: gnu/packages/networking.scm:1625 +#: gnu/packages/networking.scm:1664 msgid "" "This package provides a command-line client (@command{gandi}) to buy,\n" "manage, and delete Internet resources from Gandi.net such as domain names,\n" "virtual machines, and certificates." msgstr "" -#: gnu/packages/networking.scm:1651 +#: gnu/packages/networking.scm:1690 msgid "" "The netns package provides a simple interface for\n" "handling network namespaces in Go." msgstr "" -#: gnu/packages/networking.scm:1678 +#: gnu/packages/networking.scm:1717 msgid "" "This library provides methods for using the stream control\n" "transmission protocol (SCTP) in a Go application." msgstr "" -#: gnu/packages/networking.scm:1707 +#: gnu/packages/networking.scm:1746 msgid "" "httping measures how long it takes to connect to a web server, send an\n" "HTTP(S) request, and receive the reply headers. It is somewhat similar to\n" @@ -11296,7 +11427,7 @@ msgid "" "application stack itself." msgstr "" -#: gnu/packages/networking.scm:1746 +#: gnu/packages/networking.scm:1785 msgid "" "@command{httpstat} is a tool to visualize statistics from the\n" "@command{curl} HTTP client. It acts as a wrapper for @command{curl} and\n" @@ -11304,20 +11435,20 @@ msgid "" "TCP connection, TLS handshake and so on) in the terminal." msgstr "" -#: gnu/packages/networking.scm:1788 +#: gnu/packages/networking.scm:1827 msgid "" "Squid is a caching proxy for the Web supporting HTTP, HTTPS,\n" "FTP, and more. It reduces bandwidth and improves response times by caching and\n" "reusing frequently-requested web pages." msgstr "" -#: gnu/packages/networking.scm:1822 +#: gnu/packages/networking.scm:1861 msgid "" "Bandwidth Monitor NG is a small and simple console based\n" "live network and disk I/O bandwidth monitor." msgstr "" -#: gnu/packages/networking.scm:1874 +#: gnu/packages/networking.scm:1913 msgid "" "Aircrack-ng is a complete suite of tools to assess WiFi network\n" "security. It focuses on different areas of WiFi security: monitoring,\n" @@ -11325,14 +11456,14 @@ msgid "" "allows for heavy scripting." msgstr "" -#: gnu/packages/networking.scm:1903 +#: gnu/packages/networking.scm:1942 msgid "" "Pixiewps implements the pixie-dust attack to brute\n" "force the Wi-Fi Protected Setup (WPS) PIN by exploiting the low or\n" "non-existing entropy of some access points." msgstr "" -#: gnu/packages/networking.scm:1949 +#: gnu/packages/networking.scm:1988 msgid "" "Reaver performs a brute force attack against an access\n" "point's Wi-Fi Protected Setup (WPS) PIN. Once the PIN is found, the WPA\n" @@ -11340,7 +11471,7 @@ msgid "" "reconfigured." msgstr "" -#: gnu/packages/networking.scm:1974 +#: gnu/packages/networking.scm:2013 msgid "" "Danga::Socket is an abstract base class for objects backed by a socket\n" "which provides the basic framework for event-driven asynchronous IO, designed\n" @@ -11348,7 +11479,7 @@ msgid "" "loop." msgstr "" -#: gnu/packages/networking.scm:2000 +#: gnu/packages/networking.scm:2039 msgid "" "This module provides several IP address validation subroutines that both\n" "validate and untaint their input. This includes both basic validation\n" @@ -11357,62 +11488,62 @@ msgid "" "private (reserved)." msgstr "" -#: gnu/packages/networking.scm:2028 +#: gnu/packages/networking.scm:2067 msgid "Net::DNS is the Perl Interface to the Domain Name System." msgstr "" -#: gnu/packages/networking.scm:2060 +#: gnu/packages/networking.scm:2099 msgid "" "Socket6 binds the IPv6 related part of the C socket header\n" "definitions and structure manipulators for Perl." msgstr "" -#: gnu/packages/networking.scm:2087 +#: gnu/packages/networking.scm:2126 msgid "" "Net::DNS::Resolver::Programmable is a programmable DNS resolver for\n" "offline emulation of DNS." msgstr "" -#: gnu/packages/networking.scm:2109 +#: gnu/packages/networking.scm:2148 msgid "" "Net::DNS::Resolver::Mock is a subclass of Net::DNS::Resolver, but returns\n" "static data from any provided DNS zone file instead of querying the network.\n" "It is intended primarily for use in testing." msgstr "" -#: gnu/packages/networking.scm:2144 +#: gnu/packages/networking.scm:2183 msgid "NetAddr::IP manages IPv4 and IPv6 addresses and subsets." msgstr "" -#: gnu/packages/networking.scm:2177 +#: gnu/packages/networking.scm:2216 msgid "Net::Patricia does IP address lookups quickly in Perl." msgstr "" -#: gnu/packages/networking.scm:2198 +#: gnu/packages/networking.scm:2237 msgid "Net::CIDR::Lite merges IPv4 or IPv6 CIDR addresses." msgstr "" -#: gnu/packages/networking.scm:2225 +#: gnu/packages/networking.scm:2264 msgid "" "IO::Socket::INET6 is an interface for AF_INET/AF_INET6 domain\n" "sockets in Perl." msgstr "" -#: gnu/packages/networking.scm:2258 +#: gnu/packages/networking.scm:2293 msgid "" "Libproxy handles the details of HTTP/HTTPS proxy\n" "configuration for applications across all scenarios. Applications using\n" "libproxy only have to specify which proxy to use." msgstr "" -#: gnu/packages/networking.scm:2292 +#: gnu/packages/networking.scm:2327 msgid "" "Proxychains-ng is a preloader which hooks calls to sockets\n" "in dynamically linked programs and redirects them through one or more SOCKS or\n" "HTTP proxies." msgstr "" -#: gnu/packages/networking.scm:2314 +#: gnu/packages/networking.scm:2349 msgid "" "ENet's purpose is to provide a relatively thin, simple and robust network\n" "communication layer on top of UDP. The primary feature it provides is optional\n" @@ -11422,7 +11553,7 @@ msgid "" "library remains flexible, portable, and easily embeddable." msgstr "" -#: gnu/packages/networking.scm:2378 +#: gnu/packages/networking.scm:2413 msgid "" "sslh is a network protocol demultiplexer. It acts like a switchboard,\n" "accepting connections from clients on one port and forwarding them to different\n" @@ -11434,7 +11565,7 @@ msgid "" "that block port 22." msgstr "" -#: gnu/packages/networking.scm:2408 +#: gnu/packages/networking.scm:2443 msgid "" "iPerf is a tool to measure achievable bandwidth on IP networks. It\n" "supports tuning of various parameters related to timing, buffers and\n" @@ -11442,7 +11573,7 @@ msgid "" "the bandwidth, loss, and other parameters." msgstr "" -#: gnu/packages/networking.scm:2445 +#: gnu/packages/networking.scm:2480 msgid "" "NetHogs is a small 'net top' tool for Linux. Instead of\n" "breaking the traffic down per protocol or per subnet, like most tools do, it\n" @@ -11454,7 +11585,7 @@ msgid "" "gone wild and are suddenly taking up your bandwidth." msgstr "" -#: gnu/packages/networking.scm:2481 +#: gnu/packages/networking.scm:2516 msgid "" "NZBGet is a binary newsgrabber, which downloads files from Usenet based\n" "on information given in @code{nzb} files. NZBGet can be used in standalone\n" @@ -11464,7 +11595,7 @@ msgid "" "procedure calls (RPCs)." msgstr "" -#: gnu/packages/networking.scm:2562 +#: gnu/packages/networking.scm:2597 msgid "" "Open vSwitch is a multilayer virtual switch. It is designed to enable\n" "massive network automation through programmatic extension, while still\n" @@ -11472,14 +11603,14 @@ msgid "" "IPFIX, RSPAN, CLI, LACP, 802.1ag)." msgstr "" -#: gnu/packages/networking.scm:2585 +#: gnu/packages/networking.scm:2620 msgid "" "The @code{IP} class allows a comfortable parsing and\n" "handling for most notations in use for IPv4 and IPv6 addresses and\n" "networks." msgstr "" -#: gnu/packages/networking.scm:2610 +#: gnu/packages/networking.scm:2645 msgid "" "Command line interface for testing internet bandwidth using\n" "speedtest.net." @@ -11487,14 +11618,14 @@ msgstr "" "Interfaz de mandato lineal para probar ancho de banda de \n" "interred utilizando speedtest.net." -#: gnu/packages/networking.scm:2630 +#: gnu/packages/networking.scm:2668 msgid "" "This is a tftp client derived from OpenBSD tftp with some extra options\n" "added and bugs fixed. The source includes readline support but it is not\n" "enabled due to license conflicts between the BSD advertising clause and the GPL." msgstr "" -#: gnu/packages/networking.scm:2682 +#: gnu/packages/networking.scm:2720 msgid "" "Spiped (pronounced \"ess-pipe-dee\") is a utility for creating\n" "symmetrically encrypted and authenticated pipes between socket addresses, so\n" @@ -11504,7 +11635,7 @@ msgid "" "does not use SSH and requires a pre-shared symmetric key." msgstr "" -#: gnu/packages/networking.scm:2708 +#: gnu/packages/networking.scm:2746 msgid "" "Quagga is a routing software suite, providing implementations\n" "of OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4 for Unix platforms.\n" @@ -11516,14 +11647,14 @@ msgid "" "updates to the zebra daemon." msgstr "" -#: gnu/packages/networking.scm:2758 +#: gnu/packages/networking.scm:2796 msgid "" "The THC IPv6 Toolkit provides command-line tools and a library\n" "for researching IPv6 implementations and deployments. It requires Linux 2.6 or\n" "newer and only works on Ethernet network interfaces." msgstr "" -#: gnu/packages/networking.scm:2783 +#: gnu/packages/networking.scm:2821 msgid "" "bmon is a monitoring and debugging tool to capture\n" "networking-related statistics and prepare them visually in a human-friendly\n" @@ -11531,7 +11662,7 @@ msgid "" "interface and a programmable text output for scripting." msgstr "" -#: gnu/packages/networking.scm:2821 +#: gnu/packages/networking.scm:2859 msgid "" "Libnet provides a fairly portable framework for network packet\n" "construction and injection. It features portable packet creation interfaces\n" @@ -11540,7 +11671,7 @@ msgid "" "can be whipped up with little effort." msgstr "" -#: gnu/packages/networking.scm:2847 +#: gnu/packages/networking.scm:2885 msgid "" "@acronym{mtr, My TraceRoute} combines the functionality of the\n" "@command{traceroute} and @command{ping} programs in a single network diagnostic\n" @@ -11550,7 +11681,7 @@ msgid "" "displays the results in real time." msgstr "" -#: gnu/packages/networking.scm:2900 +#: gnu/packages/networking.scm:2938 msgid "" "aMule is an eMule-like client for the eD2k and Kademlia peer-to-peer\n" "file sharing networks. It includes a graphical user interface (GUI), a daemon\n" @@ -11559,7 +11690,7 @@ msgid "" "remotely." msgstr "" -#: gnu/packages/networking.scm:2922 +#: gnu/packages/networking.scm:2960 msgid "" "Zyre provides reliable group messaging over local area\n" "networks using zeromq. It has these key characteristics:\n" @@ -11576,13 +11707,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:2956 +#: gnu/packages/networking.scm:2994 msgid "" "This library allows controlling basic functions in SocketCAN\n" "from user-space. It requires a kernel built with SocketCAN support." msgstr "" -#: gnu/packages/networking.scm:2985 +#: gnu/packages/networking.scm:3023 msgid "" "This package provides CAN utilities in the following areas:\n" "\n" @@ -11598,14 +11729,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3021 +#: gnu/packages/networking.scm:3059 msgid "" "Asio is a cross-platform C++ library for network and\n" "low-level I/O programming that provides developers with a consistent\n" "asynchronous model using a modern C++ approach." msgstr "" -#: gnu/packages/networking.scm:3056 +#: gnu/packages/networking.scm:3094 msgid "" "This package is a fast tunnel proxy that helps you bypass firewalls.\n" "\n" @@ -11619,7 +11750,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3134 +#: gnu/packages/networking.scm:3172 msgid "" "The @dfn{Simple Network Management Protocol} (SNMP) is a\n" "widely used protocol for monitoring the health and welfare of network\n" @@ -11628,20 +11759,20 @@ msgid "" "SNMP v3 using both IPv4 and IPv6." msgstr "" -#: gnu/packages/networking.scm:3181 +#: gnu/packages/networking.scm:3219 msgid "" "uBridge is a simple program to create user-land bridges\n" "between various technologies. Currently, bridging between UDP tunnels,\n" "Ethernet and TAP interfaces is supported. Packet capture is also supported." msgstr "" -#: gnu/packages/networking.scm:3213 +#: gnu/packages/networking.scm:3251 msgid "" "This package contains a small set of tools to capture and convert\n" "packets from wireless devices for use with hashcat or John the Ripper." msgstr "" -#: gnu/packages/networking.scm:3244 +#: gnu/packages/networking.scm:3282 msgid "" "Small tool to capture packets from WLAN devices. After capturing,\n" "upload the \"uncleaned\" cap to @url{https://wpa-sec.stanev.org/?submit} to\n" @@ -11651,7 +11782,7 @@ msgid "" "and check if the WLAN key or the master key was transmitted unencrypted." msgstr "" -#: gnu/packages/networking.scm:3271 +#: gnu/packages/networking.scm:3309 msgid "" "Dante is a SOCKS client and server implementation. It can\n" "be installed on a machine with access to an external TCP/IP network and will\n" @@ -11660,21 +11791,21 @@ msgid "" "never see any machines other than the one Dante is running on." msgstr "" -#: gnu/packages/networking.scm:3318 +#: gnu/packages/networking.scm:3356 msgid "" "Restbed is a comprehensive and consistent programming\n" "model for building applications that require seamless and secure\n" "communication over HTTP." msgstr "" -#: gnu/packages/networking.scm:3358 +#: gnu/packages/networking.scm:3396 msgid "" "RESTinio is a header-only C++14 library that gives you an embedded\n" "HTTP/Websocket server. It is based on standalone version of ASIO\n" "and targeted primarily for asynchronous processing of HTTP-requests." msgstr "" -#: gnu/packages/networking.scm:3446 +#: gnu/packages/networking.scm:3487 msgid "" "OpenDHT provides an easy to use distributed in-memory data\n" "store. Every node in the network can read and write values to the store.\n" @@ -11701,20 +11832,20 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/networking.scm:3490 +#: gnu/packages/networking.scm:3531 msgid "" "FRRouting (FRR) is an IP routing protocol suite which includes\n" "protocol daemons for BGP, IS-IS, LDP, OSPF, PIM, and RIP." msgstr "" -#: gnu/packages/networking.scm:3520 +#: gnu/packages/networking.scm:3561 msgid "" "BIRD is an Internet routing daemon with full support for all\n" "the major routing protocols. It allows redistribution between protocols with a\n" "powerful route filtering syntax and an easy-to-use configuration interface." msgstr "" -#: gnu/packages/networking.scm:3568 +#: gnu/packages/networking.scm:3609 msgid "" "iwd is a wireless daemon for Linux that aims to replace WPA\n" "Supplicant. It optimizes resource utilization by not depending on any external\n" @@ -11722,21 +11853,21 @@ msgid "" "maximum extent possible." msgstr "" -#: gnu/packages/networking.scm:3595 +#: gnu/packages/networking.scm:3636 msgid "" "libyang is a YANG data modelling language parser and toolkit\n" "written (and providing API) in C. Current implementation covers YANG 1.0 (RFC\n" "6020) as well as YANG 1.1 (RFC 7950)." msgstr "" -#: gnu/packages/networking.scm:3629 +#: gnu/packages/networking.scm:3670 msgid "" "This package provides a control tool for the\n" "B.A.T.M.A.N. mesh networking routing protocol provided by the Linux kernel\n" "module @code{batman-adv}, for Layer 2." msgstr "" -#: gnu/packages/networking.scm:3662 +#: gnu/packages/networking.scm:3703 msgid "" "PageKite implements a tunneled reverse proxy which makes it easy to make\n" "a service (such as an HTTP or SSH server) on localhost visible to the wider\n" @@ -11744,7 +11875,7 @@ msgid "" "service is available at @url{https://pagekite.net/}, or you can run your own." msgstr "" -#: gnu/packages/networking.scm:3706 +#: gnu/packages/networking.scm:3747 msgid "" "ipcalc takes an IP address and netmask and calculates the\n" "resulting broadcast, network, Cisco wildcard mask, and host range. By giving\n" @@ -11753,7 +11884,7 @@ msgid "" "easy-to-understand binary values." msgstr "" -#: gnu/packages/networking.scm:3745 +#: gnu/packages/networking.scm:3786 msgid "" "Tunctl is used to set up and maintain persistent TUN/TAP\n" "network interfaces, enabling user applications to simulate network traffic.\n" @@ -11761,13 +11892,13 @@ msgid "" "simulation, and a number of other applications." msgstr "" -#: gnu/packages/networking.scm:3765 +#: gnu/packages/networking.scm:3806 msgid "" "Tool to send a magic packet to wake another host on the\n" "network. This must be enabled on the target host, usually in the BIOS." msgstr "" -#: gnu/packages/networking.scm:3802 +#: gnu/packages/networking.scm:3843 msgid "" "This package provides a modern, but Linux-specific\n" "implementation of the @command{traceroute} command that can be used to follow\n" @@ -11778,7 +11909,7 @@ msgid "" "some traces for unprivileged users." msgstr "" -#: gnu/packages/networking.scm:3836 +#: gnu/packages/networking.scm:3877 msgid "" "VDE is a set of programs to provide virtual software-defined\n" "Ethernet network interface controllers across multiple virtual or\n" @@ -11787,7 +11918,7 @@ msgid "" "cables." msgstr "" -#: gnu/packages/networking.scm:3878 +#: gnu/packages/networking.scm:3919 msgid "" "HAProxy is a free, very fast and reliable solution offering\n" "high availability, load balancing, and proxying for TCP and HTTP-based\n" @@ -11796,7 +11927,7 @@ msgid "" "thousands of connections is clearly realistic with today's hardware." msgstr "" -#: gnu/packages/networking.scm:3924 +#: gnu/packages/networking.scm:3965 msgid "" "The @dfn{Link Layer Discovery Protocol} (LLDP) is an industry standard\n" "protocol designed to supplant proprietary Link-Layer protocols such as EDP or\n" @@ -11805,7 +11936,7 @@ msgid "" "an implementation of LLDP. It also supports some proprietary protocols." msgstr "" -#: gnu/packages/networking.scm:3966 +#: gnu/packages/networking.scm:4007 msgid "" "Hashcash is a proof-of-work algorithm, which has been used\n" "as a denial-of-service countermeasure technique in a number of systems.\n" @@ -11818,14 +11949,14 @@ msgid "" "stamps." msgstr "" -#: gnu/packages/networking.scm:3995 +#: gnu/packages/networking.scm:4036 msgid "" "This package provides the NBD (Network Block Devices)\n" "client and server. It allows you to use remote block devices over a TCP/IP\n" "network." msgstr "" -#: gnu/packages/networking.scm:4062 +#: gnu/packages/networking.scm:4103 msgid "" "Yggdrasil is an early-stage implementation of a fully end-to-end encrypted\n" "IPv6 network. It is lightweight, self-arranging, supported on multiple\n" @@ -11834,7 +11965,7 @@ msgid "" "IPv6 Internet connectivity - it also works over IPv4." msgstr "" -#: gnu/packages/networking.scm:4106 +#: gnu/packages/networking.scm:4147 msgid "" "Netdiscover is a network address discovery tool developed\n" "mainly for wireless networks without a @acronym{DHCP} server. It also works\n" @@ -11842,7 +11973,7 @@ msgid "" "@acronym{ARP} requests and sniff for replies." msgstr "" -#: gnu/packages/networking.scm:4138 +#: gnu/packages/networking.scm:4179 msgid "" "PuTTY is a graphical text terminal client. It supports\n" "@acronym{SSH, Secure SHell}, telnet, and raw socket connections with good\n" @@ -11953,14 +12084,14 @@ msgid "" "by using the poppler rendering engine." msgstr "" -#: gnu/packages/pdf.scm:654 +#: gnu/packages/pdf.scm:653 msgid "" "Zathura is a customizable document viewer. It provides a\n" "minimalistic interface and an interface that mainly focuses on keyboard\n" "interaction." msgstr "" -#: gnu/packages/pdf.scm:697 +#: gnu/packages/pdf.scm:696 msgid "" "PoDoFo is a C++ library and set of command-line tools to work with the\n" "PDF file format. It can parse PDF files and load them into memory, and makes\n" @@ -11969,7 +12100,7 @@ msgid "" "extracting content or merging files." msgstr "" -#: gnu/packages/pdf.scm:764 +#: gnu/packages/pdf.scm:763 msgid "" "MuPDF is a C library that implements a PDF and XPS parsing and\n" "rendering engine. It is used primarily to render pages into bitmaps,\n" @@ -11981,7 +12112,7 @@ msgid "" "@command{pdfclean}, and examining the file structure @command{pdfshow}." msgstr "" -#: gnu/packages/pdf.scm:811 +#: gnu/packages/pdf.scm:810 msgid "" "QPDF is a command-line program that does structural, content-preserving\n" "transformations on PDF files. It could have been called something like\n" @@ -11990,7 +12121,7 @@ msgid "" "program capable of converting PDF into other formats." msgstr "" -#: gnu/packages/pdf.scm:855 +#: gnu/packages/pdf.scm:854 msgid "" "@command{qpdfview} is a document viewer for PDF, PS and DJVU\n" "files. It uses the Qt toolkit and features persistent per-file settings,\n" @@ -11998,13 +12129,13 @@ msgid "" "SyncTeX support, and rudimentary support for annotations and forms." msgstr "" -#: gnu/packages/pdf.scm:881 +#: gnu/packages/pdf.scm:880 msgid "" "Xournal is an application for notetaking, sketching, keeping a journal\n" "using a stylus." msgstr "" -#: gnu/packages/pdf.scm:940 +#: gnu/packages/pdf.scm:939 msgid "" "Xournal++ is a hand note taking software written in\n" "C++ with the target of flexibility, functionality and speed. Stroke\n" @@ -12040,14 +12171,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1019 +#: gnu/packages/pdf.scm:1018 msgid "" "This is the ReportLab PDF Toolkit. It allows rapid creation\n" "of rich PDF documents, and also creation of charts in a variety of bitmap and\n" "vector formats." msgstr "" -#: gnu/packages/pdf.scm:1071 +#: gnu/packages/pdf.scm:1070 msgid "" "Impressive is a tool to display PDF files that provides visual effects\n" "such as smooth alpha-blended slide transitions. It provides additional tools\n" @@ -12055,26 +12186,26 @@ msgid "" "the PDF pages." msgstr "" -#: gnu/packages/pdf.scm:1094 +#: gnu/packages/pdf.scm:1093 msgid "" "img2pdf converts images to PDF via direct JPEG inclusion. That\n" "conversion is lossless: the image embedded in the PDF has the exact same color\n" "information for every pixel as the input." msgstr "" -#: gnu/packages/pdf.scm:1147 +#: gnu/packages/pdf.scm:1146 msgid "" "fbida contains a few applications for viewing and editing images on\n" "the framebuffer." msgstr "" -#: gnu/packages/pdf.scm:1171 +#: gnu/packages/pdf.scm:1170 msgid "" "@command{pdf2svg} is a simple command-line PDF to SVG\n" "converter using the Poppler and Cairo libraries." msgstr "" -#: gnu/packages/pdf.scm:1203 +#: gnu/packages/pdf.scm:1202 msgid "" "PyPDF2 is a pure Python PDF library capable of:\n" "\n" @@ -12094,7 +12225,7 @@ msgid "" "manage or manipulate PDFs." msgstr "" -#: gnu/packages/pdf.scm:1240 +#: gnu/packages/pdf.scm:1239 msgid "" "PyPDF2 is a pure Python PDF toolkit.\n" "\n" @@ -12102,7 +12233,7 @@ msgid "" "python-pypdf2 instead." msgstr "" -#: gnu/packages/pdf.scm:1284 +#: gnu/packages/pdf.scm:1283 msgid "" "PDF Arranger is a small application which allows one to merge or split\n" "PDF documents and rotate, crop and rearrange their pages using an interactive\n" @@ -12111,7 +12242,7 @@ msgid "" "PDF Arranger was formerly known as PDF-Shuffler." msgstr "" -#: gnu/packages/pdf.scm:1308 +#: gnu/packages/pdf.scm:1307 msgid "" "@command{pdfposter} can be used to create a large poster by\n" "building it from multiple pages and/or printing it on large media. It expects\n" @@ -12124,7 +12255,7 @@ msgid "" "PDF. Indeed @command{pdfposter} was inspired by @command{poster}." msgstr "" -#: gnu/packages/pdf.scm:1339 +#: gnu/packages/pdf.scm:1338 msgid "" "Pdfgrep searches in pdf files for strings matching a regular expression.\n" "Support some GNU grep options as file name output, page number output,\n" @@ -12132,7 +12263,7 @@ msgid "" "multiple files." msgstr "" -#: gnu/packages/pdf.scm:1387 +#: gnu/packages/pdf.scm:1386 msgid "" "pdfpc is a presentation viewer application which uses multi-monitor\n" "output to provide meta information to the speaker during the presentation. It\n" @@ -12142,13 +12273,13 @@ msgid "" "presentation. The input files processed by pdfpc are PDF documents." msgstr "" -#: gnu/packages/pdf.scm:1414 +#: gnu/packages/pdf.scm:1413 msgid "" "Paps reads a UTF-8 encoded file and generates a PostScript language\n" "rendering of the file through the Pango Cairo back end." msgstr "" -#: gnu/packages/pdf.scm:1444 +#: gnu/packages/pdf.scm:1443 msgid "" "Stapler is a pure Python alternative to PDFtk, a tool for\n" "manipulating PDF documents from the command line. It supports\n" @@ -12162,7 +12293,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1532 +#: gnu/packages/pdf.scm:1531 msgid "" "WeasyPrint helps web developers to create PDF documents. It\n" "turns simple HTML pages into gorgeous statistical reports, invoices, tickets,\n" @@ -15902,7 +16033,7 @@ msgid "" "and enhance them." msgstr "" -#: gnu/packages/photo.scm:601 +#: gnu/packages/photo.scm:603 msgid "" "Photoflare is a cross-platform image editor with an aim\n" "to balance between powerful features and a very friendly graphical user\n" @@ -15912,7 +16043,7 @@ msgid "" "such as Batch image processing." msgstr "" -#: gnu/packages/photo.scm:669 +#: gnu/packages/photo.scm:670 msgid "" "Entangle is an application which uses GTK and libgphoto2 to provide a\n" "graphical interface for tethered photography with digital cameras. It\n" @@ -15920,14 +16051,14 @@ msgid "" "off' shooting directly from the controlling computer." msgstr "" -#: gnu/packages/photo.scm:740 +#: gnu/packages/photo.scm:741 msgid "" "Hugin is an easy to use panoramic imaging toolchain with a graphical\n" "user interface. It can be used to assemble a mosaic of photographs into\n" "a complete panorama and stitch any series of overlapping pictures." msgstr "" -#: gnu/packages/photo.scm:794 +#: gnu/packages/photo.scm:795 msgid "" "RawTherapee is a raw image processing suite. It comprises a\n" "subset of image editing operations specifically aimed at non-destructive raw\n" @@ -15971,7 +16102,28 @@ msgid "" "`special effects' using the filter mechanism." msgstr "" -#: gnu/packages/scanner.scm:144 +#: gnu/packages/scanner.scm:83 +msgid "" +"This SANE backend lets you scan documents and images from scanners and\n" +"multi-function printers that speak eSCL (marketed as ``AirScan'') or\n" +"@acronym{WSD, Web Services for Devices} (or ``WS-Scan'').\n" +"\n" +"Both are vendor-neutral protocols that allow ``driverless'' scanning over IPv4\n" +"and IPv6 networks without the vendor-specific drivers that make up most of the\n" +"sane-backends collection. This is similar to how most contemporary printers\n" +"speak the universal @acronym{IPP, Internet Printing Protocol}.\n" +"\n" +"Only scanners that support eSCL will also work over USB. This requires a\n" +"suitable IPP-over-USB daemon like ipp-usb to be installed and configured.\n" +"\n" +"Any eSCL or WSD-capable scanner should just work. sane-airscan automatically\n" +"discovers and configures devices, including which protocol to use. It was\n" +"successfully tested with many devices from Brother, Canon, Dell, Kyocera,\n" +"Lexmark, Epson, HP, OKI, Panasonic, Pantum, Ricoh, Samsung, and Xerox, with both\n" +"WSD and eSCL." +msgstr "" + +#: gnu/packages/scanner.scm:200 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -15979,7 +16131,7 @@ msgid "" "package contains the library, but no drivers." msgstr "" -#: gnu/packages/scanner.scm:192 +#: gnu/packages/scanner.scm:248 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -15987,7 +16139,7 @@ msgid "" "package contains the library and drivers." msgstr "" -#: gnu/packages/scanner.scm:243 +#: gnu/packages/scanner.scm:299 msgid "" "Scanbd stands for scanner button daemon. It regularly polls\n" "scanners for pressed buttons, function knob changes, or other events such\n" @@ -16003,7 +16155,7 @@ msgid "" "provided the driver also exposes the buttons." msgstr "" -#: gnu/packages/scanner.scm:331 +#: gnu/packages/scanner.scm:387 msgid "" "XSane is a graphical interface for controlling a scanner and acquiring\n" "images from it. You can photocopy multi-page documents and save, fax, print,\n" @@ -16015,14 +16167,14 @@ msgid "" "back-end library, which supports almost all existing scanners." msgstr "" -#: gnu/packages/scheme.scm:225 +#: gnu/packages/scheme.scm:226 msgid "" "GNU/MIT Scheme is an implementation of the Scheme programming\n" "language. It provides an interpreter, a compiler and a debugger. It also\n" "features an integrated Emacs-like editor and a large runtime library." msgstr "" -#: gnu/packages/scheme.scm:324 +#: gnu/packages/scheme.scm:325 msgid "" "Bigloo is a Scheme implementation devoted to one goal: enabling Scheme\n" "based programming style where C(++) is usually required. Bigloo attempts to\n" @@ -16033,7 +16185,7 @@ msgid "" "and between Scheme and Java programs." msgstr "" -#: gnu/packages/scheme.scm:377 +#: gnu/packages/scheme.scm:378 msgid "" "HOP is a multi-tier programming language for the Web 2.0 and the\n" "so-called diffuse Web. It is designed for programming interactive web\n" @@ -16042,14 +16194,14 @@ msgid "" "mashups, office (web agendas, mail clients, ...), etc." msgstr "" -#: gnu/packages/scheme.scm:400 +#: gnu/packages/scheme.scm:401 msgid "" "Scheme 48 is an implementation of Scheme based on a byte-code\n" "interpreter and is designed to be used as a testbed for experiments in\n" "implementation techniques and as an expository tool." msgstr "" -#: gnu/packages/scheme.scm:430 +#: gnu/packages/scheme.scm:431 msgid "" "Gambit consists of two main programs: gsi, the Gambit Scheme\n" "interpreter, and gsc, the Gambit Scheme compiler. The interpreter contains\n" @@ -16060,7 +16212,7 @@ msgid "" "mixed." msgstr "" -#: gnu/packages/scheme.scm:464 +#: gnu/packages/scheme.scm:465 msgid "" "Chibi-Scheme is a very small library with no external dependencies\n" "intended for use as an extension and scripting language in C programs. In\n" @@ -16069,7 +16221,7 @@ msgid "" "threads." msgstr "" -#: gnu/packages/scheme.scm:512 +#: gnu/packages/scheme.scm:513 msgid "" "Structure and Interpretation of Computer Programs (SICP) is\n" "a textbook aiming to teach the principles of computer programming.\n" @@ -16079,19 +16231,19 @@ msgid "" "metalinguistic abstraction, recursion, interpreters, and modular programming." msgstr "" -#: gnu/packages/scheme.scm:556 +#: gnu/packages/scheme.scm:557 msgid "" "String pattern-matching library for scheme48 based on the SRE\n" "regular-expression notation." msgstr "" -#: gnu/packages/scheme.scm:589 +#: gnu/packages/scheme.scm:590 msgid "" "SLIB is a portable Scheme library providing compatibility and\n" "utility functions for all standard Scheme implementations." msgstr "" -#: gnu/packages/scheme.scm:643 +#: gnu/packages/scheme.scm:644 msgid "" "GNU SCM is an implementation of Scheme. This\n" "implementation includes Hobbit, a Scheme-to-C compiler, which can\n" @@ -16099,7 +16251,7 @@ msgid "" "linked with a SCM executable." msgstr "" -#: gnu/packages/scheme.scm:702 +#: gnu/packages/scheme.scm:703 msgid "" "TinyScheme is a light-weight Scheme interpreter that implements as large a\n" "subset of R5RS as was possible without getting very large and complicated.\n" @@ -16115,7 +16267,7 @@ msgid "" "small program, it is easy to comprehend, get to grips with, and use." msgstr "" -#: gnu/packages/scheme.scm:783 +#: gnu/packages/scheme.scm:784 msgid "" "Stalin is an aggressively optimizing whole-program compiler\n" "for Scheme that does polyvariant interprocedural flow analysis,\n" @@ -16127,7 +16279,7 @@ msgid "" "generation." msgstr "" -#: gnu/packages/scheme.scm:819 +#: gnu/packages/scheme.scm:820 msgid "" "Scheme 9 from Empty Space (S9fES) is a mature, portable, and\n" "comprehensible public-domain interpreter for R4RS Scheme offering:\n" @@ -16142,14 +16294,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/scheme.scm:877 +#: gnu/packages/scheme.scm:878 msgid "" "@code{femtolisp} is a scheme-like lisp implementation with a\n" "simple, elegant Scheme dialect. It is a lisp-1 with lexical scope.\n" "The core is 12 builtin special forms and 33 builtin functions." msgstr "" -#: gnu/packages/scheme.scm:940 +#: gnu/packages/scheme.scm:941 msgid "" "Gauche is a R7RS Scheme scripting engine aiming at being a\n" "handy tool that helps programmers and system administrators to write small to\n" @@ -16159,7 +16311,7 @@ msgid "" "and list gauche extension packages." msgstr "" -#: gnu/packages/scheme.scm:1038 +#: gnu/packages/scheme.scm:1039 msgid "" "Gerbil is an opinionated dialect of Scheme designed for Systems\n" "Programming, with a state of the art macro and module system on top of the Gambit\n" @@ -16296,7 +16448,7 @@ msgid "" "server and an IRC server." msgstr "" -#: gnu/packages/shells.scm:107 +#: gnu/packages/shells.scm:108 msgid "" "dash is a POSIX-compliant @command{/bin/sh} implementation that aims to be\n" "as small as possible, often without sacrificing speed. It is faster than the\n" @@ -16304,7 +16456,7 @@ msgid "" "direct descendant of NetBSD's Almquist Shell (@command{ash})." msgstr "" -#: gnu/packages/shells.scm:255 +#: gnu/packages/shells.scm:256 msgid "" "Fish (friendly interactive shell) is a shell focused on interactive use,\n" "discoverability, and friendliness. Fish has very user-friendly and powerful\n" @@ -16316,20 +16468,20 @@ msgid "" "and syntax highlighting." msgstr "" -#: gnu/packages/shells.scm:308 +#: gnu/packages/shells.scm:309 msgid "" "@code{fish-foreign-env} wraps bash script execution in a way\n" "that environment variables that are exported or modified get imported back\n" "into fish." msgstr "" -#: gnu/packages/shells.scm:344 +#: gnu/packages/shells.scm:345 msgid "" "This is a reimplementation by Byron Rakitzis of the Plan 9 shell. It\n" "has a small feature set similar to a traditional Bourne shell." msgstr "" -#: gnu/packages/shells.scm:377 +#: gnu/packages/shells.scm:378 msgid "" "Es is an extensible shell. The language was derived from the Plan 9\n" "shell, rc, and was influenced by functional programming languages, such as\n" @@ -16338,7 +16490,7 @@ msgid "" "written by Paul Haahr and Byron Rakitzis." msgstr "" -#: gnu/packages/shells.scm:455 +#: gnu/packages/shells.scm:456 msgid "" "Tcsh is an enhanced, but completely compatible version of the Berkeley\n" "UNIX C shell (csh). It is a command language interpreter usable both as an\n" @@ -16347,7 +16499,7 @@ msgid "" "history mechanism, job control and a C-like syntax." msgstr "" -#: gnu/packages/shells.scm:522 +#: gnu/packages/shells.scm:523 msgid "" "The Z shell (zsh) is a Unix shell that can be used\n" "as an interactive login shell and as a powerful command interpreter\n" @@ -16356,7 +16508,7 @@ msgid "" "ksh, and tcsh." msgstr "" -#: gnu/packages/shells.scm:572 +#: gnu/packages/shells.scm:573 msgid "" "Xonsh is a Python-ish, BASHwards-looking shell language and command\n" "prompt. The language is a superset of Python 3.4+ with additional shell\n" @@ -16365,7 +16517,7 @@ msgid "" "use of experts and novices alike." msgstr "" -#: gnu/packages/shells.scm:616 +#: gnu/packages/shells.scm:617 msgid "" "Scsh is a Unix shell embedded in Scheme. Scsh has two main\n" "components: a process notation for running programs and setting up pipelines\n" @@ -16373,7 +16525,7 @@ msgid "" "operating system." msgstr "" -#: gnu/packages/shells.scm:658 +#: gnu/packages/shells.scm:659 msgid "" "Linenoise is a minimal, zero-config, readline replacement.\n" "Its features include:\n" @@ -16387,7 +16539,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/shells.scm:722 +#: gnu/packages/shells.scm:723 msgid "" "S is a new shell that aims to be extremely simple. It does not\n" "implement the POSIX shell standard.\n" @@ -16401,19 +16553,19 @@ msgid "" "A @code{andglob} program is also provided along with s." msgstr "" -#: gnu/packages/shells.scm:753 +#: gnu/packages/shells.scm:754 msgid "" "Oksh is a port of the OpenBSD Korn Shell.\n" "The OpenBSD Korn Shell is a cleaned up and enhanced ksh." msgstr "" -#: gnu/packages/shells.scm:783 +#: gnu/packages/shells.scm:784 msgid "" "loksh is a Linux port of OpenBSD's @command{ksh}. It is a small,\n" "interactive POSIX shell targeted at resource-constrained systems." msgstr "" -#: gnu/packages/shells.scm:821 +#: gnu/packages/shells.scm:822 msgid "" "mksh is an actively developed free implementation of the\n" "Korn Shell programming language and a successor to the Public Domain Korn\n" @@ -16445,7 +16597,7 @@ msgid "" "files and text." msgstr "" -#: gnu/packages/shells.scm:1006 +#: gnu/packages/shells.scm:1005 msgid "" "Nu draws inspiration from projects like PowerShell, functional\n" "programming languages, and modern CLI tools. Rather than thinking of files\n" @@ -16456,7 +16608,7 @@ msgid "" "of commands called a ``pipeline''." msgstr "" -#: gnu/packages/shells.scm:1037 +#: gnu/packages/shells.scm:1036 #, fuzzy msgid "" "This package is a library for ANSI terminal colors and styles (bold,\n" @@ -16732,19 +16884,19 @@ msgid "" "your calls and messages." msgstr "" -#: gnu/packages/telephony.scm:874 +#: gnu/packages/telephony.scm:869 msgid "" "PJProject provides an implementation of the Session\n" "Initiation Protocol (SIP) and a multimedia framework." msgstr "" -#: gnu/packages/telephony.scm:916 +#: gnu/packages/telephony.scm:911 msgid "" "A collection of libraries and header files for implementing\n" "telephony functionality into custom Telegram clients." msgstr "" -#: gnu/packages/tex.scm:532 +#: gnu/packages/tex.scm:543 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -16754,20 +16906,20 @@ msgid "" "This package contains the binaries." msgstr "" -#: gnu/packages/tex.scm:571 +#: gnu/packages/tex.scm:582 msgid "" "kpathsea is a library, whose purpose is to return a filename\n" "from a list of user-specified directories similar to how shells look up\n" "executables. It is maintained as a part of TeX Live." msgstr "" -#: gnu/packages/tex.scm:591 +#: gnu/packages/tex.scm:602 msgid "" "This package provides the docstrip utility to strip\n" "documentation from TeX files. It is part of the LaTeX base." msgstr "" -#: gnu/packages/tex.scm:606 +#: gnu/packages/tex.scm:617 msgid "" "This bundle provides generic access to Unicode Consortium\n" "data for TeX use. It contains a set of text files provided by the Unicode\n" @@ -16780,7 +16932,7 @@ msgid "" "out to date by @code{unicode-letters.tex}." msgstr "" -#: gnu/packages/tex.scm:638 +#: gnu/packages/tex.scm:649 msgid "" "This package includes Knuth's original @file{hyphen.tex},\n" "@file{zerohyph.tex} to disable hyphenation, @file{language.us} which starts\n" @@ -16788,13 +16940,13 @@ msgid "" "default versions of those), etc." msgstr "" -#: gnu/packages/tex.scm:659 +#: gnu/packages/tex.scm:670 msgid "" "This package provides files needed for converting DVI files\n" "to PostScript." msgstr "" -#: gnu/packages/tex.scm:673 +#: gnu/packages/tex.scm:684 msgid "" "This bundle provides a collection of model \".ini\" files\n" "for creating TeX formats. These files are commonly used to introduced\n" @@ -16809,13 +16961,13 @@ msgstr "" "para ser utilizados con motores más nuevos, por ejemplo para adaptar los\n" "ficheros fuente e-Text simple para trabajar con XeTeX y LueaTeX." -#: gnu/packages/tex.scm:736 +#: gnu/packages/tex.scm:747 msgid "" "This package provides the Metafont base files needed to\n" "build fonts using the Metafont system." msgstr "" -#: gnu/packages/tex.scm:821 +#: gnu/packages/tex.scm:832 msgid "" "This package provides TeX macros for converting Adobe Font\n" "Metric files to TeX metric and virtual font format. Fontinst helps mainly\n" @@ -16825,7 +16977,7 @@ msgid "" "typesetting in these fonts." msgstr "" -#: gnu/packages/tex.scm:842 +#: gnu/packages/tex.scm:853 msgid "" "This is Fontname, a naming scheme for (the base part of)\n" "external TeX font filenames. This makes at most eight-character names\n" @@ -16833,7 +16985,7 @@ msgid "" "documents." msgstr "" -#: gnu/packages/tex.scm:915 +#: gnu/packages/tex.scm:926 msgid "" "This package provides the Computer Modern fonts by Donald\n" "Knuth. The Computer Modern font family is a large collection of text,\n" @@ -16841,7 +16993,7 @@ msgid "" "8A." msgstr "" -#: gnu/packages/tex.scm:946 +#: gnu/packages/tex.scm:957 msgid "" "The CM-Super family provides Adobe Type 1 fonts that replace\n" "the T1/TS1-encoded Computer Modern (EC/TC), T1/TS1-encoded Concrete,\n" @@ -16851,7 +17003,7 @@ msgid "" "originals." msgstr "" -#: gnu/packages/tex.scm:979 +#: gnu/packages/tex.scm:990 #, fuzzy msgid "" "This package provides a drop-in replacements for the Courier\n" @@ -16860,7 +17012,7 @@ msgstr "" "Este paquete proporciona un diccionario para la biblioteca de\n" "comprobación ortográfica Hunspell." -#: gnu/packages/tex.scm:1002 +#: gnu/packages/tex.scm:1013 msgid "" "The TeX-GYRE bundle consist of multiple font families:\n" "@itemize @bullet\n" @@ -16880,21 +17032,21 @@ msgid "" "support (for use with a variety of encodings) is provided." msgstr "" -#: gnu/packages/tex.scm:1041 +#: gnu/packages/tex.scm:1052 msgid "" "The Latin Modern fonts are derived from the famous Computer\n" "Modern fonts designed by Donald E. Knuth and described in Volume E of his\n" "Computers & Typesetting series." msgstr "" -#: gnu/packages/tex.scm:1106 +#: gnu/packages/tex.scm:1117 msgid "" "This is a collection of core TeX and METAFONT macro files\n" "from Donald Knuth, including the plain format, plain base, and the MF logo\n" "fonts." msgstr "" -#: gnu/packages/tex.scm:1181 +#: gnu/packages/tex.scm:1192 msgid "" "This is a collection of fonts for use with standard LaTeX\n" "packages and classes. It includes invisible fonts (for use with the slides\n" @@ -16902,14 +17054,14 @@ msgid "" "symbol fonts." msgstr "" -#: gnu/packages/tex.scm:1253 +#: gnu/packages/tex.scm:1264 msgid "" "This package provides LaTeX and font definition files to access the\n" "Knuthian mflogo fonts described in The Metafontbook and to typeset Metafont\n" "logos in LaTeX documents." msgstr "" -#: gnu/packages/tex.scm:1274 +#: gnu/packages/tex.scm:1285 msgid "" "These fonts were created in METAFONT by Knuth, for his own publications.\n" "At some stage, the letters P and S were added, so that the METAPOST logo could\n" @@ -16918,7 +17070,7 @@ msgid "" "Taco Hoekwater." msgstr "" -#: gnu/packages/tex.scm:1402 +#: gnu/packages/tex.scm:1415 gnu/packages/tex.scm:1579 msgid "" "This package provides an extended set of fonts for use in mathematics,\n" "including: extra mathematical symbols; blackboard bold letters (uppercase\n" @@ -16932,7 +17084,7 @@ msgid "" "details can be found in the documentation." msgstr "" -#: gnu/packages/tex.scm:1432 +#: gnu/packages/tex.scm:1609 msgid "" "Mkpattern is a general purpose program for the generation of\n" "hyphenation patterns, with definition of letter sets and template-like\n" @@ -16940,7 +17092,7 @@ msgid "" "output encodings, and features generation of clean UTF-8 patterns." msgstr "" -#: gnu/packages/tex.scm:1489 +#: gnu/packages/tex.scm:1666 msgid "" "This package provides an extended version of TeX (which is capable of\n" "running as if it were TeX unmodified). E-TeX has been specified by the LaTeX\n" @@ -16949,21 +17101,30 @@ msgid "" "incorporates the e-TeX extensions." msgstr "" -#: gnu/packages/tex.scm:1507 +#: gnu/packages/tex.scm:1684 msgid "" "This package contains files used to build the Plain TeX format, as\n" "described in the TeXbook, together with various supporting files (some also\n" "discussed in the book)." msgstr "" -#: gnu/packages/tex.scm:1533 +#: gnu/packages/tex.scm:1702 +msgid "" +"The package facilitates wrapping text to a specific character width, breaking\n" +"lines by words rather than, as done by TeX, by characters. The primary use for\n" +"these facilities is to aid the generation of messages sent to the log file or\n" +"console output to display messages to the user. Package authors may also find\n" +"this useful when writing out arbitary text to an external file." +msgstr "" + +#: gnu/packages/tex.scm:1730 #, fuzzy msgid "" "This package provides a drop-in replacements for the Helvetica\n" "font from Adobe's basic set." msgstr "Este paquete proporciona un diccionario para el comprobador ortográfico GNU Aspell." -#: gnu/packages/tex.scm:1546 +#: gnu/packages/tex.scm:1743 msgid "" "The package provides hyphenation patterns for the Afrikaans\n" "language." @@ -16971,7 +17132,7 @@ msgstr "" "Este paquete proporciona patrones de separación silábica y división de\n" "palabras para la lengua afrikaans." -#: gnu/packages/tex.scm:1560 +#: gnu/packages/tex.scm:1757 msgid "" "The package provides hyphenation patterns for ancient\n" "Greek." @@ -16979,7 +17140,7 @@ msgstr "" "Este paquete proporciona patrones de separación silábica y división de\n" "palabras para el griego clásico." -#: gnu/packages/tex.scm:1573 +#: gnu/packages/tex.scm:1770 msgid "" "The package provides hyphenation patterns for the Armenian\n" "language." @@ -16987,7 +17148,7 @@ msgstr "" "Este paquete proporciona patrones de separación silábica y división de\n" "palabras para la lengua armenia." -#: gnu/packages/tex.scm:1587 +#: gnu/packages/tex.scm:1784 msgid "" "The package provides hyphenation patterns for the Basque\n" "language." @@ -16995,7 +17156,7 @@ msgstr "" "Este paquete proporciona patrones de separación silábica y división de\n" "palabras para la lengua vasca." -#: gnu/packages/tex.scm:1601 +#: gnu/packages/tex.scm:1798 msgid "" "The package provides hyphenation patterns for the Belarusian\n" "language." @@ -17003,7 +17164,7 @@ msgstr "" "Este paquete proporciona patrones de separación silábica y división de\n" "palabras para la lengua bielorrusa." -#: gnu/packages/tex.scm:1613 +#: gnu/packages/tex.scm:1810 msgid "" "The package provides hyphenation patterns for the Bulgarian\n" "language in T2A and UTF-8 encodings." @@ -17011,7 +17172,7 @@ msgstr "" "Este paquete proporciona patrones de separación silábica y división de\n" "palabras para la lengua búlgara en las codificaciones T2A y UTF-8." -#: gnu/packages/tex.scm:1627 +#: gnu/packages/tex.scm:1824 msgid "" "The package provides hyphenation patterns for Catalan in\n" "T1/EC and UTF-8 encodings." @@ -17019,7 +17180,7 @@ msgstr "" "Este paquete proporciona patrones de separación silábica y división de\n" "palabras para la lengua catalana en las codificaciones T1/EC y UTF-8." -#: gnu/packages/tex.scm:1640 +#: gnu/packages/tex.scm:1837 msgid "" "The package provides hyphenation patterns for unaccented\n" "Chinese pinyin T1/EC and UTF-8 encodings." @@ -17028,61 +17189,61 @@ msgstr "" "palabras para la romanización sin acentuar pinyin de la lengua china\n" "en las codificaciones T1/EC y UTF-8." -#: gnu/packages/tex.scm:1652 +#: gnu/packages/tex.scm:1849 msgid "" "The package provides hyphenation patterns for Church\n" "Slavonic in UTF-8 encoding." msgstr "" -#: gnu/packages/tex.scm:1665 +#: gnu/packages/tex.scm:1862 msgid "" "The package provides hyphenation patterns for Coptic in\n" "UTF-8 encoding as well as in ASCII-based encoding for 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:1678 +#: gnu/packages/tex.scm:1875 msgid "" "The package provides hyphenation patterns for Croatian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1690 +#: gnu/packages/tex.scm:1887 msgid "" "The package provides hyphenation patterns for Czech in T1/EC\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1702 +#: gnu/packages/tex.scm:1899 msgid "" "The package provides hyphenation patterns for Danish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1715 +#: gnu/packages/tex.scm:1912 msgid "" "The package provides hyphenation patterns for Dutch in T1/EC\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1728 +#: gnu/packages/tex.scm:1925 msgid "" "The package provides additional hyphenation patterns for\n" "American and British English in ASCII encoding." msgstr "" -#: gnu/packages/tex.scm:1742 +#: gnu/packages/tex.scm:1939 msgid "" "The package provides hyphenation patterns for Esperanto ISO\n" "Latin 3 and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1754 +#: gnu/packages/tex.scm:1951 msgid "" "The package provides hyphenation patterns for Estonian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1768 +#: gnu/packages/tex.scm:1965 msgid "" "The package provides hyphenation patterns for languages\n" "written using the Ethiopic script for Unicode engines. They are not supposed\n" @@ -17090,13 +17251,13 @@ msgid "" "be replaced by files tailored to individual languages." msgstr "" -#: gnu/packages/tex.scm:1782 +#: gnu/packages/tex.scm:1979 msgid "" "The package provides hyphenation patterns for Finnish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1794 +#: gnu/packages/tex.scm:1991 #, fuzzy #| msgid "" #| "The package provides hyphenation patterns for Catalan in\n" @@ -17108,82 +17269,82 @@ msgstr "" "Este paquete proporciona patrones de separación silábica y división de\n" "palabras para la lengua catalana en las codificaciones T1/EC y UTF-8." -#: gnu/packages/tex.scm:1806 +#: gnu/packages/tex.scm:2003 msgid "" "The package provides hyphenation patterns for French in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1818 +#: gnu/packages/tex.scm:2015 msgid "" "The package provides hyphenation patterns for Friulan in\n" "ASCII encodings." msgstr "" -#: gnu/packages/tex.scm:1831 +#: gnu/packages/tex.scm:2028 msgid "" "The package provides hyphenation patterns for Galician in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1843 +#: gnu/packages/tex.scm:2040 msgid "" "The package provides hyphenation patterns for Georgian in\n" "T8M, T8K, and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1861 +#: gnu/packages/tex.scm:2058 msgid "" "This package provides hyphenation patterns for German in\n" "T1/EC and UTF-8 encodings, for traditional and reformed spelling, including\n" "Swiss German." msgstr "" -#: gnu/packages/tex.scm:1880 +#: gnu/packages/tex.scm:2077 msgid "" "This package provides hyphenation patterns for Modern Greek\n" "in monotonic and polytonic spelling in LGR and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1894 +#: gnu/packages/tex.scm:2091 msgid "" "This package provides hyphenation patterns for Hungarian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1907 +#: gnu/packages/tex.scm:2104 msgid "" "This package provides hyphenation patterns for Icelandic in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1930 +#: gnu/packages/tex.scm:2127 msgid "" "This package provides hyphenation patterns for Assamese,\n" "Bengali, Gujarati, Hindi, Kannada, Malayalam, Marathi, Oriya, Panjabi, Tamil\n" "and Telugu for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:1943 +#: gnu/packages/tex.scm:2140 msgid "" "This package provides hyphenation patterns for\n" "Indonesian (Bahasa Indonesia) in ASCII encoding. They are probably also\n" "usable for Malay (Bahasa Melayu)." msgstr "" -#: gnu/packages/tex.scm:1956 +#: gnu/packages/tex.scm:2153 msgid "" "This package provides hyphenation patterns for Interlingua\n" "in ASCII encoding." msgstr "" -#: gnu/packages/tex.scm:1968 +#: gnu/packages/tex.scm:2165 msgid "" "This package provides hyphenation patterns for\n" "Irish (Gaeilge) in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1981 +#: gnu/packages/tex.scm:2178 msgid "" "This package provides hyphenation patterns for Italian in\n" "ASCII encoding. Compliant with the Recommendation UNI 6461 on hyphenation\n" @@ -17191,14 +17352,14 @@ msgid "" "UNI)." msgstr "" -#: gnu/packages/tex.scm:1995 +#: gnu/packages/tex.scm:2192 msgid "" "This package provides hyphenation patterns for\n" "Kurmanji (Northern Kurdish) as spoken in Turkey and by the Kurdish diaspora in\n" "Europe, in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2011 +#: gnu/packages/tex.scm:2208 msgid "" "This package provides hyphenation patterns for Latin in\n" "T1/EC and UTF-8 encodings, mainly in modern spelling (u when u is needed and v\n" @@ -17212,41 +17373,41 @@ msgid "" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2032 +#: gnu/packages/tex.scm:2229 msgid "" "This package provides hyphenation patterns for Latvian in\n" "L7X and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2045 +#: gnu/packages/tex.scm:2242 msgid "" "This package provides hyphenation patterns for Lithuanian in\n" "L7X and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2060 +#: gnu/packages/tex.scm:2257 #, fuzzy #| msgid "" #| "The package provides hyphenation patterns for ancient\n" #| "Greek." -msgid "This package provides hypenation patterns for Macedonian." +msgid "This package provides hyphenation patterns for Macedonian." msgstr "" "Este paquete proporciona patrones de separación silábica y división de\n" "palabras para el griego clásico." -#: gnu/packages/tex.scm:2073 +#: gnu/packages/tex.scm:2270 msgid "" "This package provides hyphenation patterns for Mongolian in\n" "T2A, LMC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2088 +#: gnu/packages/tex.scm:2285 msgid "" "This package provides hyphenation patterns for Norwegian\n" "Bokmal and Nynorsk in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2102 +#: gnu/packages/tex.scm:2299 msgid "" "This package provides hyphenation patterns for Occitan in\n" "T1/EC and UTF-8 encodings. They are supposed to be valid for all the Occitan\n" @@ -17255,94 +17416,94 @@ msgid "" "Alps encompassing the southern half of the French pentagon." msgstr "" -#: gnu/packages/tex.scm:2117 +#: gnu/packages/tex.scm:2314 msgid "" "This package provides hyphenation patterns for Panjabi in\n" "T1/EC encoding." msgstr "" -#: gnu/packages/tex.scm:2130 +#: gnu/packages/tex.scm:2327 msgid "" "This package provides hyphenation patterns for Piedmontese\n" "in ASCII encoding. Compliant with 'Gramatica dla lengua piemonteisa' by\n" "Camillo Brero." msgstr "" -#: gnu/packages/tex.scm:2143 +#: gnu/packages/tex.scm:2340 msgid "" "This package provides hyphenation patterns for Polish in QX\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2156 +#: gnu/packages/tex.scm:2353 msgid "" "This package provides hyphenation patterns for Portuguese in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2168 +#: gnu/packages/tex.scm:2365 msgid "" "This package provides hyphenation patterns for Romanian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2181 +#: gnu/packages/tex.scm:2378 msgid "" "This package provides hyphenation patterns for Romansh in\n" "ASCII encodings. They are supposed to comply with the rules indicated by the\n" "Lia Rumantscha (Romansh language society)." msgstr "" -#: gnu/packages/tex.scm:2194 +#: gnu/packages/tex.scm:2391 msgid "" "This package provides hyphenation patterns for Russian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2207 +#: gnu/packages/tex.scm:2404 msgid "" "This package provides hyphenation patterns for Sanskrit and\n" "Prakrit in longdesc transliteration, and in Devanagari, Bengali, Kannada,\n" "Malayalam longdesc and Telugu scripts for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:2224 +#: gnu/packages/tex.scm:2421 msgid "" "This package provides hyphenation patterns for Serbian in\n" "T1/EC, T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2237 +#: gnu/packages/tex.scm:2434 msgid "" "This package provides hyphenation patterns for Slovak in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2249 +#: gnu/packages/tex.scm:2446 msgid "" "This package provides hyphenation patterns for Slovenian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2265 +#: gnu/packages/tex.scm:2462 msgid "" "The package provides hyphenation patterns for Spanish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2277 +#: gnu/packages/tex.scm:2474 msgid "" "This package provides hyphenation patterns for Swedish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2289 +#: gnu/packages/tex.scm:2486 msgid "" "This package provides hyphenation patterns for Thai in LTH\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2302 +#: gnu/packages/tex.scm:2499 msgid "" "The package provides hyphenation patterns for Turkish in\n" "T1/EC and UTF-8 encodings. The patterns for Turkish were first produced for\n" @@ -17352,31 +17513,31 @@ msgid "" "compatibility with 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:2319 +#: gnu/packages/tex.scm:2516 msgid "" "The package provides hyphenation patterns for Turkmen in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2331 +#: gnu/packages/tex.scm:2528 msgid "" "This package provides hyphenation patterns for Ukrainian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2344 +#: gnu/packages/tex.scm:2541 msgid "" "This package provides hyphenation patterns for Upper Sorbian\n" "in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2356 +#: gnu/packages/tex.scm:2553 msgid "" "This package provides hyphenation patterns for Welsh in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2477 +#: gnu/packages/tex.scm:2674 msgid "" "Modern native UTF-8 engines such as XeTeX and LuaTeX need\n" "hyphenation patterns in UTF-8 format, whereas older systems require\n" @@ -17401,7 +17562,7 @@ msgstr "" "de @command{iniTeX}, se espera que dichos patrones UTF-8, con sus\n" "conversores, suplanten completamente los patrones más antiguos." -#: gnu/packages/tex.scm:2521 +#: gnu/packages/tex.scm:2718 msgid "" "The package provides experimental hyphenation patterns for\n" "the German language, covering both traditional and reformed orthography. The\n" @@ -17409,21 +17570,29 @@ msgid "" "bundle." msgstr "" -#: gnu/packages/tex.scm:2542 +#: gnu/packages/tex.scm:2739 msgid "" "The package provides a range of hyphenation patterns for\n" "Ukrainian, depending on the encoding of the output font including the standard\n" "T2A." msgstr "" -#: gnu/packages/tex.scm:2577 +#: gnu/packages/tex.scm:2774 msgid "" "The package provides a collection of Russian hyphenation\n" "patterns supporting a number of Cyrillic font encodings, including T2,\n" "UCY (Omega Unicode Cyrillic), LCY, LWN (OT2), and koi8-r." msgstr "" -#: gnu/packages/tex.scm:2620 +#: gnu/packages/tex.scm:2792 +msgid "" +"This package deals with input encodings. It provides a wider range of input\n" +"encodings using standard mappings, than does inputenc; it also covers nearly all\n" +"slots. In this way, it serves as more uptodate replacement for package\n" +"inputenc." +msgstr "" + +#: gnu/packages/tex.scm:2853 msgid "" "Kpathsea is a library and utility programs which provide\n" "path searching facilities for TeX file types, including the self-locating\n" @@ -17431,13 +17600,27 @@ msgid "" "mechanism. This package provides supporting files." msgstr "" -#: gnu/packages/tex.scm:2636 +#: gnu/packages/tex.scm:2876 +msgid "" +"The family contains text fonts in roman, sans-serif and monospaced\n" +"shapes, with true small caps and old-style numbers; the package offers full\n" +"support of the textcomp package. The mathematics fonts include all the AMS\n" +"fonts, in both normal and bold weights. Each of the font types is available\n" +"in two main versions: default and light. Each version is available in four\n" +"variants: default; oldstyle numbers; oldstyle numbers with old ligatures such\n" +"as ct and st, and long-tailed capital Q; and veryoldstyle with long s. Other\n" +"variants include small caps as default or large small caps, and for\n" +"mathematics both upright and slanted shapes for Greek letters, as well as\n" +"default and narrow versions of multiple integrals." +msgstr "" + +#: gnu/packages/tex.scm:2898 msgid "" "The package provides configuration files for LaTeX-related\n" "formats." msgstr "" -#: gnu/packages/tex.scm:2867 +#: gnu/packages/tex.scm:3127 msgid "" "This bundle comprises the source of LaTeX itself, together with several\n" "packages which are considered \"part of the kernel\". This bundle, together\n" @@ -17445,7 +17628,7 @@ msgid "" "contain." msgstr "" -#: gnu/packages/tex.scm:2885 +#: gnu/packages/tex.scm:3145 msgid "" "This LaTeX packages provides two hooks for @code{\\end@{document@}}\n" "that are executed after the hook of @code{\\AtEndDocument}:\n" @@ -17455,7 +17638,7 @@ msgid "" "of the @file{.aux} file." msgstr "" -#: gnu/packages/tex.scm:2905 +#: gnu/packages/tex.scm:3165 #, fuzzy msgid "" "This package provides hooks for adding code at the beginning of\n" @@ -17464,7 +17647,7 @@ msgstr "" "Este paquete proporciona un diccionario para la biblioteca de\n" "comprobación ortográfica Hunspell." -#: gnu/packages/tex.scm:2921 +#: gnu/packages/tex.scm:3181 msgid "" "The package adds support for EPS files in the @code{graphicx} package\n" "when running under pdfTeX. If an EPS graphic is detected, the package\n" @@ -17472,7 +17655,7 @@ msgid "" "@command{epstopdf}." msgstr "" -#: gnu/packages/tex.scm:2943 +#: gnu/packages/tex.scm:3203 msgid "" "LaTeX2e's @code{filecontents} and @code{filecontents*} environments\n" "enable a LaTeX source file to generate external files as it runs through\n" @@ -17483,7 +17666,7 @@ msgid "" "@code{filecontents*} anywhere." msgstr "" -#: gnu/packages/tex.scm:2964 +#: gnu/packages/tex.scm:3224 msgid "" "This package provides the original (and now obsolescent) graphics\n" "inclusion macros for use with dvips, still widely used by Plain TeX users (in\n" @@ -17493,7 +17676,7 @@ msgid "" "users, via its Plain TeX version.)" msgstr "" -#: gnu/packages/tex.scm:2986 +#: gnu/packages/tex.scm:3246 msgid "" "This package provides tools for the flexible handling of verbatim text\n" "including: verbatim commands in footnotes; a variety of verbatim environments\n" @@ -17503,7 +17686,7 @@ msgid "" "verbatim source)." msgstr "" -#: gnu/packages/tex.scm:3008 +#: gnu/packages/tex.scm:3268 msgid "" "This bundle is a combined distribution consisting of @file{dvips.def},\n" "@file{pdftex.def}, @file{luatex.def}, @file{xetex.def}, @file{dvipdfmx.def},\n" @@ -17511,13 +17694,19 @@ msgid "" "packages." msgstr "" -#: gnu/packages/tex.scm:3026 +#: gnu/packages/tex.scm:3286 msgid "" "This bundle includes @file{color.cfg} and @file{graphics.cfg} files that\n" "set default \"driver\" options for the color and graphics packages." msgstr "" -#: gnu/packages/tex.scm:3048 +#: gnu/packages/tex.scm:3303 +msgid "" +"The package provides Greek LICR macro definitions and encoding definition files\n" +"for Greek text font encodings for use with fontenc." +msgstr "" + +#: gnu/packages/tex.scm:3325 msgid "" "This is a collection of LaTeX packages for producing color, including\n" "graphics (e.g. PostScript) files, and rotation and scaling of text in LaTeX\n" @@ -17525,13 +17714,13 @@ msgid "" "keyval, and lscape." msgstr "" -#: gnu/packages/tex.scm:3066 +#: gnu/packages/tex.scm:3343 msgid "" "This package provides the code for the @code{color} option that is\n" "used by @code{hyperref} and @code{bookmark}." msgstr "" -#: gnu/packages/tex.scm:3098 +#: gnu/packages/tex.scm:3375 msgid "" "The package starts from the basic facilities of the colorcolor package,\n" "and provides easy driver-independent access to several kinds of color tints,\n" @@ -17542,7 +17731,7 @@ msgid "" "tables." msgstr "" -#: gnu/packages/tex.scm:3171 +#: gnu/packages/tex.scm:3448 msgid "" "The package provides an implementation of a parser for\n" "documents matching the XML 1.0 and XML Namespace Recommendations. Element and\n" @@ -17550,7 +17739,7 @@ msgid "" "XML, using UTF-8 or a suitable 8-bit encoding." msgstr "" -#: gnu/packages/tex.scm:3222 +#: gnu/packages/tex.scm:3499 msgid "" "The @code{hyperref} package is used to handle cross-referencing commands\n" "in LaTeX to produce hypertext links in the document. The package provides\n" @@ -17562,20 +17751,20 @@ msgid "" "@code{nameref} packages, which make use of the facilities of @code{hyperref}." msgstr "" -#: gnu/packages/tex.scm:3262 +#: gnu/packages/tex.scm:3539 msgid "" "The bundle comprises various LaTeX packages, providing among others:\n" "better accessibility support for PDF files; extensible chemists reaction\n" "arrows; record information about document class(es) used; and many more." msgstr "" -#: gnu/packages/tex.scm:3285 +#: gnu/packages/tex.scm:3562 msgid "" "This package provides additional rerun warnings if some auxiliary\n" "files have changed. It is based on MD5 checksum, provided by pdfTeX." msgstr "" -#: gnu/packages/tex.scm:3319 +#: gnu/packages/tex.scm:3596 msgid "" "This package is a collection of (variously) simple tools provided as\n" "part of the LaTeX required tools distribution, comprising the following\n" @@ -17585,7 +17774,7 @@ msgid "" "xr, and xspace." msgstr "" -#: gnu/packages/tex.scm:3338 +#: gnu/packages/tex.scm:3615 msgid "" "The command @code{\\url} is a form of verbatim command that\n" "allows linebreaks at certain characters or combinations of characters, accepts\n" @@ -17597,14 +17786,14 @@ msgid "" "of file names." msgstr "" -#: gnu/packages/tex.scm:3364 +#: gnu/packages/tex.scm:3641 msgid "" "This package provides font maps that were originally part of\n" "the now obsolete teTeX distributions but are still used at the core of the TeX\n" "Live distribution." msgstr "" -#: gnu/packages/tex.scm:3391 +#: gnu/packages/tex.scm:3668 msgid "" "The l3kernel bundle provides an implementation of the LaTeX3\n" "programmers’ interface, as a set of packages that run under LaTeX 2e. The\n" @@ -17613,7 +17802,7 @@ msgid "" "that the LaTeX3 conventions can be used with regular LaTeX 2e packages." msgstr "" -#: gnu/packages/tex.scm:3420 +#: gnu/packages/tex.scm:3697 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" @@ -17622,7 +17811,7 @@ msgid "" "an independent schedule." msgstr "" -#: gnu/packages/tex.scm:3484 +#: gnu/packages/tex.scm:3761 msgid "" "This bundle holds prototype implementations of concepts for a LaTeX\n" "designer interface, to be used with the experimental LaTeX kernel as\n" @@ -17639,14 +17828,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:3511 +#: gnu/packages/tex.scm:3788 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" "here are defined for the dvips engine only." msgstr "" -#: gnu/packages/tex.scm:3539 +#: gnu/packages/tex.scm:3816 msgid "" "Fontspec is a package for XeLaTeX and LuaLaTeX. It provides an\n" "automatic and unified interface to feature-rich AAT and OpenType fonts through\n" @@ -17654,7 +17843,7 @@ msgid "" "the l3kernel and xparse bundles from the LaTeX 3 development team." msgstr "" -#: gnu/packages/tex.scm:3569 +#: gnu/packages/tex.scm:3846 msgid "" "The original grffile package extended the file name processing of the\n" "@code{graphics} package to support a larger range of file names. The base\n" @@ -17662,13 +17851,13 @@ msgid "" "is a stub that just loads @code{graphicx}." msgstr "" -#: gnu/packages/tex.scm:3610 +#: gnu/packages/tex.scm:3887 msgid "" "This package provides @code{\\StringEncodingConvert} for converting a\n" "string between different encodings. Both LaTeX and plain-TeX are supported." msgstr "" -#: gnu/packages/tex.scm:3653 +#: gnu/packages/tex.scm:3930 msgid "" "The l3build module is designed to support the development of\n" "high-quality LaTeX code by providing: a unit testing system, automated\n" @@ -17677,14 +17866,20 @@ msgid "" "@code{.tex} file which provides the testing environment." msgstr "" -#: gnu/packages/tex.scm:3690 +#: gnu/packages/tex.scm:3953 msgid "" "Lualibs is a collection of Lua modules useful for general programming.\n" "The bundle is based on Lua modules shipped with ConTeXt, and made available in\n" "this bundle for use independent of ConTeXt." msgstr "" -#: gnu/packages/tex.scm:3718 +#: gnu/packages/tex.scm:3972 +msgid "" +"This package provides a Lua module for processing application arguments\n" +"in the same way as BSD/GNU @code{getopt_long(3)} functions do." +msgstr "" + +#: gnu/packages/tex.scm:3999 msgid "" "Luaotfload is an adaptation of the ConTeXt font loading system for the\n" "Plain and LaTeX formats. It allows OpenType fonts to be loaded with font\n" @@ -17693,11 +17888,7 @@ msgid "" "loading fonts by their proper names instead of file names." msgstr "" -#: gnu/packages/tex.scm:3790 -msgid "This package is necessary to use LaTeX with the LuaTeX engine." -msgstr "" - -#: gnu/packages/tex.scm:3809 +#: gnu/packages/tex.scm:4025 msgid "" "This is the principal package in the AMS-LaTeX distribution. It adapts\n" "for use in LaTeX most of the mathematical features found in AMS-TeX; it is\n" @@ -17712,7 +17903,7 @@ msgid "" "definitions." msgstr "" -#: gnu/packages/tex.scm:3843 +#: gnu/packages/tex.scm:4059 msgid "" "This bundle contains three AMS classes: @code{amsartamsart} (for writing\n" "articles for the AMS), @code{amsbookamsbook} (for books) and\n" @@ -17721,7 +17912,7 @@ msgid "" "distribution." msgstr "" -#: gnu/packages/tex.scm:3890 +#: gnu/packages/tex.scm:4106 msgid "" "The package manages culturally-determined typographical (and other)\n" "rules, and hyphenation patterns for a wide range of languages. A document may\n" @@ -17732,7 +17923,7 @@ msgid "" "polyglossia package rather than Babel." msgstr "" -#: gnu/packages/tex.scm:3917 +#: gnu/packages/tex.scm:4133 msgid "" "This package provides the language definition file for support of\n" "English in @code{babel}. Care is taken to select British hyphenation patterns\n" @@ -17740,16 +17931,14 @@ msgid "" "for Canadian and USA text." msgstr "" -#: gnu/packages/tex.scm:3939 -#, fuzzy +#: gnu/packages/tex.scm:4173 msgid "" -"This package provides support for the French language for the\n" -"babel multilingual system." +"The package, formerly known as frenchb, establishes French conventions\n" +"in a document (or a subset of the conventions, if French is not the main\n" +"language of the document)." msgstr "" -"Este paquete proporciona un diccionario para la biblioteca de\n" -"comprobación ortográfica Hunspell." -#: gnu/packages/tex.scm:3959 +#: gnu/packages/tex.scm:4196 msgid "" "This package provides the language definition file for support of German\n" "in @code{babel}. It provides all the necessary macros, definitions and\n" @@ -17758,14 +17947,14 @@ msgid "" "Swiss varieties of German." msgstr "" -#: gnu/packages/tex.scm:3986 +#: gnu/packages/tex.scm:4223 msgid "" "This package provides the language definition file for\n" "support of Swedish in @code{babel}. It provides all the necessary macros,\n" "definitions and settings to typeset Swedish documents." msgstr "" -#: gnu/packages/tex.scm:4008 +#: gnu/packages/tex.scm:4245 msgid "" "This bundle of macros files provides macro support (including font\n" "encoding macros) for the use of Cyrillic characters in fonts encoded under the\n" @@ -17773,7 +17962,7 @@ msgid "" "language that is written in a Cyrillic alphabet." msgstr "" -#: gnu/packages/tex.scm:4126 +#: gnu/packages/tex.scm:4363 msgid "" "The PSNFSS collection includes a set of files that provide a complete\n" "working setup of the LaTeX font selection scheme (NFSS2) for use with common\n" @@ -17788,20 +17977,20 @@ msgid "" "part of the LaTeX required set of packages." msgstr "" -#: gnu/packages/tex.scm:4177 gnu/packages/tex.scm:4269 +#: gnu/packages/tex.scm:4414 gnu/packages/tex.scm:4506 msgid "" "This is a very limited subset of the TeX Live distribution.\n" "It includes little more than the required set of LaTeX packages." msgstr "" -#: gnu/packages/tex.scm:4248 +#: gnu/packages/tex.scm:4485 msgid "" "This package contains the fonts map configuration file\n" "generated for the base TeX Live packages as well as, optionally, user-provided\n" "ones." msgstr "" -#: gnu/packages/tex.scm:4288 +#: gnu/packages/tex.scm:4525 msgid "" "These fonts are considered the \"ultimate answer\" to IPA\n" "typesetting. The encoding of these 8-bit fonts has been registered as LaTeX\n" @@ -17810,7 +17999,7 @@ msgid "" "TS3 fonts." msgstr "" -#: gnu/packages/tex.scm:4311 +#: gnu/packages/tex.scm:4548 msgid "" "Amsrefs is a LaTeX package for bibliographies that provides an archival\n" "data format similar to the format of BibTeX database files, but adapted to\n" @@ -17818,7 +18007,7 @@ msgid "" "conjunction with BibTeX or as a replacement for BibTeX." msgstr "" -#: gnu/packages/tex.scm:4340 +#: gnu/packages/tex.scm:4577 msgid "" "This package aims to provide a one-stop solution to requirements for\n" "footnotes. It offers: Multiple footnote apparatus superior to that of\n" @@ -17832,7 +18021,7 @@ msgid "" "@code{suffix} packages." msgstr "" -#: gnu/packages/tex.scm:4368 +#: gnu/packages/tex.scm:4605 msgid "" "The package provides the commands @code{\\blindtext} and\n" "@code{\\Blindtext} for creating \"blind\" text useful in testing new classes\n" @@ -17843,7 +18032,7 @@ msgid "" "ipsum\" text, see the @code{lipsum} package)." msgstr "" -#: gnu/packages/tex.scm:4407 +#: gnu/packages/tex.scm:4644 msgid "" "This package implements a document layout for writing letters according\n" "to the rules of DIN (Deutsches Institut für Normung, German standardisation\n" @@ -17855,7 +18044,7 @@ msgid "" "package." msgstr "" -#: gnu/packages/tex.scm:4433 +#: gnu/packages/tex.scm:4670 msgid "" "This package provides a means to add a textual, light grey watermark on\n" "every page or on the first page of a document. Typical usage may consist in\n" @@ -17865,7 +18054,7 @@ msgid "" "on everypage." msgstr "" -#: gnu/packages/tex.scm:4457 +#: gnu/packages/tex.scm:4694 msgid "" "This package provides the @code{\\collect@@body} command (as in\n" "@code{amsmath}), as well as a @code{\\long} version @code{\\Collect@@Body},\n" @@ -17873,7 +18062,7 @@ msgid "" "define a new author interface to creating new environments." msgstr "" -#: gnu/packages/tex.scm:4479 +#: gnu/packages/tex.scm:4716 msgid "" "LaTeX users sometimes need to ensure that two or more blocks of text\n" "occupy the same amount of horizontal space on the page. To that end, the\n" @@ -17887,7 +18076,7 @@ msgid "" "also provided." msgstr "" -#: gnu/packages/tex.scm:4504 +#: gnu/packages/tex.scm:4741 msgid "" "This package gives the user complete control of how the entries of\n" "the table of contents should be constituted from the name, number, and page\n" @@ -17907,7 +18096,7 @@ msgid "" "table of contents." msgstr "" -#: gnu/packages/tex.scm:4546 +#: gnu/packages/tex.scm:4783 msgid "" "The package provides additional features for the LaTeX\n" "@code{description} environment, including adjustable left margin. The package\n" @@ -17916,7 +18105,7 @@ msgid "" "@code{enumerate} lists, and numbered lists remain in sequence)." msgstr "" -#: gnu/packages/tex.scm:4566 +#: gnu/packages/tex.scm:4803 msgid "" "This package provides macros to read and compare the modification dates\n" "of files. The files may be @code{.tex} files, images or other files (as long\n" @@ -17928,14 +18117,14 @@ msgid "" "but non-expandable ones." msgstr "" -#: gnu/packages/tex.scm:4589 +#: gnu/packages/tex.scm:4826 msgid "" "The @code{hanging} package facilitates the typesetting of hanging\n" "paragraphs. The package also enables typesetting with hanging punctuation,\n" "by making punctuation characters active." msgstr "" -#: gnu/packages/tex.scm:4612 +#: gnu/packages/tex.scm:4849 msgid "" "This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX support for\n" "the Fira Sans family of fonts designed by Erik Spiekermann and Ralph du\n" @@ -17943,7 +18132,7 @@ msgid "" "corresponding italics: light, regular, medium, bold, ..." msgstr "" -#: gnu/packages/tex.scm:4635 +#: gnu/packages/tex.scm:4872 msgid "" "This package uses the (La)TeX extension @code{-shell-escape} to\n" "establish whether the document is being processed on a Windows or on a\n" @@ -17954,7 +18143,7 @@ msgid "" "classes of systems." msgstr "" -#: gnu/packages/tex.scm:4660 +#: gnu/packages/tex.scm:4897 msgid "" "This bundle provides a package that implements both author-year and\n" "numbered references, as well as much detailed of support for other\n" @@ -17964,20 +18153,20 @@ msgid "" "designed from the start to be compatible with @code{natbib}." msgstr "" -#: gnu/packages/tex.scm:4679 +#: gnu/packages/tex.scm:4916 msgid "" "This package provides a friendly interface for defining the meaning of\n" "Unicode characters. The document should be processed by (pdf)LaTeX with the\n" "Unicode option of @code{inputenc} or @code{inputenx}, or by XeLaTeX/LuaLaTeX." msgstr "" -#: gnu/packages/tex.scm:4699 +#: gnu/packages/tex.scm:4936 msgid "" "This package makes a number of utility functions from pdfTeX\n" "available for luaTeX by reimplementing them using Lua." msgstr "" -#: gnu/packages/tex.scm:4719 +#: gnu/packages/tex.scm:4956 msgid "" "This package allows LaTeX constructions (equations, picture\n" "environments, etc.) to be precisely superimposed over Encapsulated PostScript\n" @@ -17988,7 +18177,7 @@ msgid "" "rotated." msgstr "" -#: gnu/packages/tex.scm:4751 +#: gnu/packages/tex.scm:4988 msgid "" "This is a package for processing PostScript graphics with @code{psfrag}\n" "labels within pdfLaTeX documents. Every graphic is compiled individually,\n" @@ -17996,7 +18185,7 @@ msgid "" "re-processing." msgstr "" -#: gnu/packages/tex.scm:4771 +#: gnu/packages/tex.scm:5008 msgid "" "This package provides the @code{\\setcounterref} and\n" "@code{\\addtocounterref} commands which use the section (or other) number\n" @@ -18005,7 +18194,7 @@ msgid "" "corresponding thing with the page reference of the label." msgstr "" -#: gnu/packages/tex.scm:4791 +#: gnu/packages/tex.scm:5028 msgid "" "This package provides a class that produces overhead\n" "slides (transparencies), with many facilities. Seminar is not nowadays\n" @@ -18014,14 +18203,14 @@ msgid "" "21st-century presentation styles." msgstr "" -#: gnu/packages/tex.scm:4812 +#: gnu/packages/tex.scm:5049 msgid "" "The package provides a versatile way to stack objects vertically in a\n" "variety of customizable ways. A number of useful macros are provided, all\n" "of which make use of the @code{stackengine} core." msgstr "" -#: gnu/packages/tex.scm:4828 +#: gnu/packages/tex.scm:5065 msgid "" "This package provides control over the typography of the\n" "@dfn{Table of Contents}, @dfn{List of Figures} and @dfn{List of Tables},\n" @@ -18029,7 +18218,7 @@ msgid "" "be changed." msgstr "" -#: gnu/packages/tex.scm:4862 +#: gnu/packages/tex.scm:5099 msgid "" "This very short package allows you to expandably remove spaces around a\n" "token list (commands are provided to remove spaces before, spaces after, or\n" @@ -18037,13 +18226,27 @@ msgid "" "space-stripped macros." msgstr "" -#: gnu/packages/tex.scm:4897 +#: gnu/packages/tex.scm:5115 +#, fuzzy +msgid "This package provides a math interface to the Rsfs fonts." +msgstr "Este módulo proporciona un interfaz Perlish para Amazon S3." + +#: gnu/packages/tex.scm:5152 msgid "" "This package defines a command @code{\\captionof} for putting a caption\n" "to something that's not a float." msgstr "" -#: gnu/packages/tex.scm:4913 +#: gnu/packages/tex.scm:5170 +msgid "" +"Many of David Carlisle's more substantial packages stand on their own,\n" +"or as part of the LaTeX latex-tools set; this set contains: making dotless\n" +"@emph{j} characters for fonts that don't have them; a method for combining the\n" +"capabilities of longtable and tabularx; an environment for including plain TeX\n" +"in LaTeX documents; a jiffy to create slashed characters for physicists." +msgstr "" + +#: gnu/packages/tex.scm:5189 msgid "" "You can hyperlink DOI numbers to doi.org. However, some publishers have\n" "elected to use nasty characters in their DOI numbering scheme (@code{<},\n" @@ -18053,7 +18256,7 @@ msgid "" "hyperlink to the target of the DOI." msgstr "" -#: gnu/packages/tex.scm:4936 +#: gnu/packages/tex.scm:5212 msgid "" "This package is a toolbox of programming facilities geared primarily\n" "towards LaTeX class and package authors. It provides LaTeX frontends to some\n" @@ -18064,7 +18267,7 @@ msgid "" "of the LaTeX kernel." msgstr "" -#: gnu/packages/tex.scm:4976 +#: gnu/packages/tex.scm:5252 msgid "" "This package provides seven predefined chapter heading styles. Each\n" "style can be modified using a set of simple commands. Optionally one can\n" @@ -18072,7 +18275,7 @@ msgid "" "headings." msgstr "" -#: gnu/packages/tex.scm:5011 +#: gnu/packages/tex.scm:5287 msgid "" "The package creates three environments: @code{framed}, which puts an\n" "ordinary frame box around the region, @code{shaded}, which shades the region,\n" @@ -18083,7 +18286,7 @@ msgid "" "@code{\\MakeFramed} to make your own framed-style environments." msgstr "" -#: gnu/packages/tex.scm:5045 +#: gnu/packages/tex.scm:5321 msgid "" "This package is designed for formatting formless letters in German; it\n" "can also be used for English (by those who can read the documentation). There\n" @@ -18091,13 +18294,13 @@ msgid "" "\"old\" and a \"new\" version of g-brief." msgstr "" -#: gnu/packages/tex.scm:5067 +#: gnu/packages/tex.scm:5343 msgid "" "The package deals with connections in two-dimensional style, optionally\n" "in colour." msgstr "" -#: gnu/packages/tex.scm:5087 +#: gnu/packages/tex.scm:5363 msgid "" "The package allows citations in the German style, which is considered by\n" "many to be particularly reader-friendly. The citation provides a small amount\n" @@ -18107,7 +18310,7 @@ msgid "" "BibLaTeX, and is considered experimental." msgstr "" -#: gnu/packages/tex.scm:5113 +#: gnu/packages/tex.scm:5389 msgid "" "This package provides an easy and flexible user interface to customize\n" "page layout, implementing auto-centering and auto-balancing mechanisms so that\n" @@ -18118,7 +18321,7 @@ msgid "" "ability to communicate the paper size it's set up to the output." msgstr "" -#: gnu/packages/tex.scm:5138 +#: gnu/packages/tex.scm:5414 msgid "" "This collection of tools includes: @code{atsupport} for short commands\n" "starting with @code{@@}, macros to sanitize the OT1 encoding of the\n" @@ -18128,13 +18331,13 @@ msgid "" "array environments; verbatim handling; and syntax diagrams." msgstr "" -#: gnu/packages/tex.scm:5162 +#: gnu/packages/tex.scm:5438 msgid "" "This package provides a complete Babel replacement for users of LuaLaTeX\n" "and XeLaTeX; it relies on the @code{fontspec} package, version 2.0 at least." msgstr "" -#: gnu/packages/tex.scm:5182 +#: gnu/packages/tex.scm:5458 msgid "" "This package was a predecessor of @code{longtable}; the newer\n" "package (designed on quite different principles) is easier to use and more\n" @@ -18142,7 +18345,7 @@ msgid "" "situations where longtable has problems." msgstr "" -#: gnu/packages/tex.scm:5217 +#: gnu/packages/tex.scm:5493 msgid "" "Texinfo is the preferred format for documentation in the GNU project;\n" "the format may be used to produce online or printed output from a single\n" @@ -18151,7 +18354,23 @@ msgid "" "hypertext linkages in some cases)." msgstr "" -#: gnu/packages/tex.scm:5240 +#: gnu/packages/tex.scm:5513 +msgid "" +"The textcase package offers commands @code{\\MakeTextUppercase} and\n" +"@code{\\MakeTextLowercase} are similar to the standard @code{\\MakeUppercase}\n" +"and @code{\\MakeLowercase}, but they do not change the case of any sections of\n" +"mathematics, or the arguments of @code{\\cite}, @code{\\label} and\n" +"@code{\\ref} commands within the argument. A further command\n" +"@code{\\NoCaseChange} does nothing but suppress case change within its\n" +"argument, so to force uppercase of a section including an environment, one\n" +"might say:\n" +"\n" +"@example\n" +"\\MakeTextUppercase{...\\NoCaseChange{\\begin{foo}} ...\\NoCaseChange{\\end{foo}}...}\n" +"@end example\n" +msgstr "" + +#: gnu/packages/tex.scm:5543 msgid "" "Typewriter-style fonts are best for program listings, but Computer\n" "Modern Typewriter prints @code{`} and @code{'} as bent opening and closing\n" @@ -18165,14 +18384,14 @@ msgid "" "does not affect @code{\\tt}, @code{\\texttt}, etc." msgstr "" -#: gnu/packages/tex.scm:5281 +#: gnu/packages/tex.scm:5584 msgid "" "This is a simple package to set up document margins. This package is\n" "considered obsolete; alternatives are the @code{typearea} package from the\n" "@code{koma-script} bundle, or the @code{geometry} package." msgstr "" -#: gnu/packages/tex.scm:5302 +#: gnu/packages/tex.scm:5605 msgid "" "The appendix package provides various ways of formatting the titles of\n" "appendices. Also (sub)appendices environments are provided that can be used,\n" @@ -18181,14 +18400,14 @@ msgid "" "command." msgstr "" -#: gnu/packages/tex.scm:5321 +#: gnu/packages/tex.scm:5624 msgid "" "This package implements a new bookmark (outline) organization for the\n" "@code{hyperref} package. Bookmark properties such as style and color. Other\n" "action types are available (URI, GoToR, Named)." msgstr "" -#: gnu/packages/tex.scm:5342 +#: gnu/packages/tex.scm:5645 msgid "" "Identify areas of text to be marked with changebars with the\n" "@code{\\cbstart} and @code{\\cbend} commands; the bars may be coloured. The\n" @@ -18197,19 +18416,19 @@ msgid "" "drivers, and VTeX and pdfTeX." msgstr "" -#: gnu/packages/tex.scm:5379 +#: gnu/packages/tex.scm:5682 msgid "" "This package embeds CMap tables into PDF files to make search and\n" "copy-and-paste functions work properly." msgstr "" -#: gnu/packages/tex.scm:5399 +#: gnu/packages/tex.scm:5702 msgid "" "This package allows rows, columns, and even individual cells in LaTeX\n" "tables to be coloured." msgstr "" -#: gnu/packages/tex.scm:5432 +#: gnu/packages/tex.scm:5735 msgid "" "This package provides variants of @code{\\fbox}: @code{\\shadowbox},\n" "@code{\\doublebox}, @code{\\ovalbox}, @code{\\Ovalbox}, with helpful tools for\n" @@ -18217,14 +18436,14 @@ msgid "" "floats, center, flushleft, and flushright, lists, and pages." msgstr "" -#: gnu/packages/tex.scm:5467 +#: gnu/packages/tex.scm:5770 msgid "" "The package provides extensive facilities, both for constructing headers\n" "and footers, and for controlling their use (for example, at times when LaTeX\n" "would automatically change the heading style in use)." msgstr "" -#: gnu/packages/tex.scm:5488 +#: gnu/packages/tex.scm:5791 msgid "" "This package improves the interface for defining floating objects such\n" "as figures and tables. It introduces the boxed float, the ruled float and the\n" @@ -18234,7 +18453,7 @@ msgid "" "with @code{\\floatplacement{figure}{H}}." msgstr "" -#: gnu/packages/tex.scm:5512 +#: gnu/packages/tex.scm:5815 msgid "" "This is a collection of ways to change the typesetting of footnotes.\n" "The package provides means of changing the layout of the footnotes themselves,\n" @@ -18244,7 +18463,7 @@ msgid "" "footnotes with symbols rather than numbers." msgstr "" -#: gnu/packages/tex.scm:5532 +#: gnu/packages/tex.scm:5835 msgid "" "TeX’s @code{\\let} assignment does not work for LaTeX macros with\n" "optional arguments, or for macros that are defined as robust macros by\n" @@ -18252,7 +18471,7 @@ msgid "" "that also takes care of the involved internal macros." msgstr "" -#: gnu/packages/tex.scm:5556 +#: gnu/packages/tex.scm:5859 msgid "" "The package enables the user to typeset programs (programming code)\n" "within LaTeX; the source code is read directly by TeX---no front-end processor\n" @@ -18260,7 +18479,7 @@ msgid "" "styles. Support for @code{hyperref} is provided." msgstr "" -#: gnu/packages/tex.scm:5591 +#: gnu/packages/tex.scm:5894 msgid "" "This package provides miscellaneous macros by Joerg Knappen, including:\n" "represent counters in greek; Maxwell's non-commutative division;\n" @@ -18272,7 +18491,7 @@ msgid "" "in SGML; use maths minus in text as appropriate; simple Young tableaux." msgstr "" -#: gnu/packages/tex.scm:5615 +#: gnu/packages/tex.scm:5918 #, fuzzy msgid "" "This package provides facilities for using key-value format in\n" @@ -18281,7 +18500,7 @@ msgstr "" "Este paquete proporciona un diccionario para la biblioteca de\n" "comprobación ortográfica Hunspell." -#: gnu/packages/tex.scm:5684 +#: gnu/packages/tex.scm:5987 msgid "" "The EC fonts are European Computer Modern Fonts, supporting the complete\n" "LaTeX T1 encoding defined at the 1990 TUG conference hold at Cork/Ireland.\n" @@ -18298,7 +18517,7 @@ msgid "" "differs from the EC in a number of particulars." msgstr "" -#: gnu/packages/tex.scm:5717 +#: gnu/packages/tex.scm:6020 msgid "" "This package provides a set of virtual fonts which emulates T1 coded\n" "fonts using the standard CM fonts. The package name, AE fonts, supposedly\n" @@ -18308,7 +18527,7 @@ msgid "" "via the CM-super, Latin Modern and (in a restricted way) CM-LGC font sets." msgstr "" -#: gnu/packages/tex.scm:5742 +#: gnu/packages/tex.scm:6045 msgid "" "Inconsolata is a monospaced font designed by Raph Levien. This package\n" "contains the font (in both Adobe Type 1 and OpenType formats) in regular and\n" @@ -18317,25 +18536,25 @@ msgid "" "TeX, and LaTeX font definition and other relevant files." msgstr "" -#: gnu/packages/tex.scm:5771 +#: gnu/packages/tex.scm:6074 msgid "" "This package provides a drop-in replacements for the Times font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5799 +#: gnu/packages/tex.scm:6102 msgid "" "This package provides a drop-in replacements for the Palatino font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5824 +#: gnu/packages/tex.scm:6127 msgid "" "This package provides a drop-in replacements for the Zapfding font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5896 +#: gnu/packages/tex.scm:6199 msgid "" "The fonts provide uppercase formal script letters for use as symbols in\n" "scientific and mathematical typesetting (in contrast to the informal script\n" @@ -18345,14 +18564,14 @@ msgid "" "one of the packages @code{calrsfs} and @code{mathrsfs}." msgstr "" -#: gnu/packages/tex.scm:5920 +#: gnu/packages/tex.scm:6223 msgid "" "The package adds one or more user commands to LaTeX's @code{shipout}\n" "routine, which may be used to place the output at fixed positions. The\n" "@code{grid} option may be used to find the correct places." msgstr "" -#: gnu/packages/tex.scm:5954 +#: gnu/packages/tex.scm:6257 msgid "" "Extensions to @code{epic} and the LaTeX picture drawing environment,\n" "include the drawing of lines at any slope, the drawing of circles in any\n" @@ -18362,7 +18581,7 @@ msgid "" "@code{\\special} commands." msgstr "" -#: gnu/packages/tex.scm:5991 +#: gnu/packages/tex.scm:6276 msgid "" "This package is intended to ease customizing the three basic list\n" "environments: @code{enumerate}, @code{itemize} and @code{description}. It\n" @@ -18371,14 +18590,14 @@ msgid "" "@code{\\begin{itemize}[itemsep=1ex,leftmargin=1cm]}." msgstr "" -#: gnu/packages/tex.scm:6014 +#: gnu/packages/tex.scm:6301 msgid "" "The package provides tools for creating tabular cells spanning multiple\n" "rows. It has a lot of flexibility, including an option for specifying an\n" "entry at the \"natural\" width of its text." msgstr "" -#: gnu/packages/tex.scm:6048 +#: gnu/packages/tex.scm:6335 msgid "" "The @code{overpic} environment is a cross between the LaTeX\n" "@code{picture} environment and the @code{\\includegraphics} command of\n" @@ -18387,14 +18606,14 @@ msgid "" "positions; a grid for orientation is available." msgstr "" -#: gnu/packages/tex.scm:6084 +#: gnu/packages/tex.scm:6371 msgid "" "Simply changing @code{\\parskip} and @code{\\parindent} leaves a layout\n" "that is untidy; this package (though it is no substitute for a properly\n" "designed class) helps alleviate this untidiness." msgstr "" -#: gnu/packages/tex.scm:6105 +#: gnu/packages/tex.scm:6392 msgid "" "This package simplifies the inclusion of external multi-page PDF\n" "documents in LaTeX documents. Pages may be freely selected and it is possible\n" @@ -18404,7 +18623,7 @@ msgid "" "use this package to insert PostScript files, in addition to PDF files." msgstr "" -#: gnu/packages/tex.scm:6146 +#: gnu/packages/tex.scm:6433 msgid "" "The fonts were originally distributed as Metafont sources only, but\n" "Adobe Type 1 versions are also now available. Macro support is provided for\n" @@ -18413,7 +18632,7 @@ msgid "" "the whole font." msgstr "" -#: gnu/packages/tex.scm:6171 +#: gnu/packages/tex.scm:6458 msgid "" "This (deprecated) package provides support for the manipulation and\n" "reference of small or \"sub\" figures and tables within a single figure or\n" @@ -18426,7 +18645,7 @@ msgid "" "the more recent @code{subcaption} package more satisfactory." msgstr "" -#: gnu/packages/tex.scm:6198 +#: gnu/packages/tex.scm:6485 msgid "" "The package defines a @code{tabular*}-like environment, @code{tabulary},\n" "taking a \"total width\" argument as well as the column specifications. The\n" @@ -18437,7 +18656,7 @@ msgid "" "according to the natural width of the widest cell in the column." msgstr "" -#: gnu/packages/tex.scm:6236 +#: gnu/packages/tex.scm:6523 msgid "" "This package facilitates tables with titles (captions) and notes. The\n" "title and notes are given a width equal to the body of the table (a\n" @@ -18446,7 +18665,7 @@ msgid "" "environment." msgstr "" -#: gnu/packages/tex.scm:6263 +#: gnu/packages/tex.scm:6550 msgid "" "Txfonts supplies virtual text roman fonts using Adobe Times (or URW\n" "NimbusRomNo9L) with some modified and additional text symbols in the OT1, T1,\n" @@ -18462,7 +18681,7 @@ msgid "" "TeX metrics (VF and TFM files) and macros for use with LaTeX." msgstr "" -#: gnu/packages/tex.scm:6312 +#: gnu/packages/tex.scm:6599 msgid "" "Iwona is a two-element sans-serif typeface. It was created\n" "as an alternative version of the Kurier typeface, which was designed in 1975\n" @@ -18473,7 +18692,7 @@ msgid "" "of ink traps which typify the Kurier font." msgstr "" -#: gnu/packages/tex.scm:6335 +#: gnu/packages/tex.scm:6622 msgid "" "This package contains a collection of macros by Jörg Knappen:\n" "@table @code\n" @@ -18509,7 +18728,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/tex.scm:6442 +#: gnu/packages/tex.scm:6729 msgid "" "JadeTeX is a companion package to the OpenJade DSSSL\n" "processor. OpenJade applies a DSSSL stylesheet to an SGML or XML document.\n" @@ -18520,7 +18739,7 @@ msgid "" "command)." msgstr "" -#: gnu/packages/tex.scm:6472 +#: gnu/packages/tex.scm:6759 msgid "" "The package provides the Libertine and Biolinum fonts in both Type 1 and\n" "OTF styles, together with support macros for their use. Monospaced and\n" @@ -18530,7 +18749,7 @@ msgid "" "@code{libertine-legacy} packages." msgstr "" -#: gnu/packages/tex.scm:6504 +#: gnu/packages/tex.scm:6791 msgid "" "The package contains LaTeX support for the DejaVu fonts, which are\n" "derived from the Vera fonts but contain more characters and styles. The fonts\n" @@ -18539,7 +18758,7 @@ msgid "" "LGR. The package doesn't (currently) support mathematics." msgstr "" -#: gnu/packages/tex.scm:6540 +#: gnu/packages/tex.scm:6827 msgid "" "This package provides an interface to sectioning commands for selection\n" "from various title styles, e.g. for marginal titles and to change the font of\n" @@ -18548,7 +18767,7 @@ msgid "" "floats in a page. You may assign headers/footers to individual floats, too." msgstr "" -#: gnu/packages/tex.scm:6563 +#: gnu/packages/tex.scm:6850 msgid "" "LaTeX, by default, restricts the sizes at which you can use its default\n" "computer modern fonts, to a fixed set of discrete sizes (effectively, a set\n" @@ -18563,7 +18782,7 @@ msgid "" "@code{ec} fonts." msgstr "" -#: gnu/packages/tex.scm:6617 +#: gnu/packages/tex.scm:6904 msgid "" "The LH fonts address the problem of the wide variety of alphabets that\n" "are written with Cyrillic-style characters. The fonts are the original basis\n" @@ -18576,7 +18795,7 @@ msgid "" "OT2 encoded fonts, CM bright shaped fonts and Concrete shaped fonts." msgstr "" -#: gnu/packages/tex.scm:6647 +#: gnu/packages/tex.scm:6934 msgid "" "The Martin Vogel’s Symbols fonts (marvosym) contains the\n" "Euro currency symbol as defined by the European commission, along with symbols\n" @@ -18586,34 +18805,41 @@ msgid "" "the derived Type 1 font, together with support files for TeX (LaTeX)." msgstr "" -#: gnu/packages/tex.scm:6685 +#: gnu/packages/tex.scm:6972 msgid "" "MetaPost uses a language based on that of Metafont to produce precise\n" "technical illustrations. Its output is scalable PostScript or SVG, rather\n" "than the bitmaps Metafont creates." msgstr "" -#: gnu/packages/tex.scm:6706 +#: gnu/packages/tex.scm:6993 msgid "" "This package provides a class for typesetting publications of the\n" "Association for Computing Machinery (ACM)." msgstr "" -#: gnu/packages/tex.scm:6739 +#: gnu/packages/tex.scm:7026 msgid "" "The @code{varwidth} environment is superficially similar to\n" "@code{minipage}, but the specified width is just a maximum value — the box may\n" "get a narrower “natural” width." msgstr "" -#: gnu/packages/tex.scm:6757 +#: gnu/packages/tex.scm:7041 +msgid "" +"The varwidth environment is superficially similar to minipage, but the\n" +"specified width is just a maximum value --- the box may get a narrower natural\n" +"width." +msgstr "" + +#: gnu/packages/tex.scm:7059 msgid "" "This package provides the @code{wasy} (Waldi symbol) fonts,\n" "in the Metafont and Adobe Type 1 formats. Support under LaTeX is provided by\n" "the @code{wasysym} package." msgstr "" -#: gnu/packages/tex.scm:6778 +#: gnu/packages/tex.scm:7080 msgid "" "The @code{wasy} (Waldi Symbol) font by Roland Waldi provides many glyphs like\n" "male and female symbols and astronomical symbols, as well as the complete\n" @@ -18621,14 +18847,14 @@ msgid "" "implements an easy to use interface for these symbols." msgstr "" -#: gnu/packages/tex.scm:6815 +#: gnu/packages/tex.scm:7117 msgid "" "This package allows figures or tables to have text wrapped around them.\n" "It does not work in combination with list environments, but can be used in a\n" "@code{parbox} or @code{minipage}, and in two-column format." msgstr "" -#: gnu/packages/tex.scm:6849 +#: gnu/packages/tex.scm:7151 msgid "" "The bundle provides the @code{ucs} package, and @code{utf8x.def},\n" "together with a large number of support files. The @code{utf8x.def}\n" @@ -18641,7 +18867,7 @@ msgid "" "package of that name now exists." msgstr "" -#: gnu/packages/tex.scm:6883 +#: gnu/packages/tex.scm:7185 msgid "" "The main purpose of the preview package is the extraction of selected\n" "elements from a LaTeX source, like formulas or graphics, into separate\n" @@ -18652,7 +18878,7 @@ msgid "" "files." msgstr "" -#: gnu/packages/tex.scm:6908 +#: gnu/packages/tex.scm:7210 msgid "" "This package ensures that all acronyms used in the text are spelled out\n" "in full at least once. It also provides an environment to build a list of\n" @@ -18661,13 +18887,13 @@ msgid "" "e-TeX." msgstr "" -#: gnu/packages/tex.scm:6945 +#: gnu/packages/tex.scm:7247 msgid "" "This package provides an extension of TeX which can be configured to\n" "directly generate PDF documents instead of DVI." msgstr "" -#: gnu/packages/tex.scm:7025 +#: gnu/packages/tex.scm:7327 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18677,7 +18903,7 @@ msgid "" "This package contains the complete tree of texmf-dist data." msgstr "" -#: gnu/packages/tex.scm:7088 +#: gnu/packages/tex.scm:7390 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18687,7 +18913,7 @@ msgid "" "This package contains the complete TeX Live distribution." msgstr "" -#: gnu/packages/tex.scm:7130 +#: gnu/packages/tex.scm:7432 msgid "" "@code{Text::BibTeX} is a Perl library for reading, parsing,\n" "and processing BibTeX files. @code{Text::BibTeX} gives you access to the data\n" @@ -18696,13 +18922,13 @@ msgid "" "values (strings, macros, or numbers) pasted together." msgstr "" -#: gnu/packages/tex.scm:7216 +#: gnu/packages/tex.scm:7518 msgid "" "Biber is a BibTeX replacement for users of biblatex. Among\n" "other things it comes with full Unicode support." msgstr "" -#: gnu/packages/tex.scm:7250 +#: gnu/packages/tex.scm:7552 msgid "" "Rubber is a program whose purpose is to handle all tasks related to the\n" "compilation of LaTeX documents. This includes compiling the document itself,\n" @@ -18712,20 +18938,20 @@ msgid "" "PDF documents." msgstr "" -#: gnu/packages/tex.scm:7289 +#: gnu/packages/tex.scm:7591 msgid "" "Texmaker is a program that integrates many tools needed to\n" "develop documents with LaTeX, in a single application." msgstr "" -#: gnu/packages/tex.scm:7330 +#: gnu/packages/tex.scm:7632 msgid "" "@i{TeX for the Impatient} is a ~350 page book on TeX,\n" "plain TeX, and Eplain, originally written by Paul Abrahams, Kathryn Hargreaves,\n" "and Karl Berry." msgstr "" -#: gnu/packages/tex.scm:7394 +#: gnu/packages/tex.scm:7696 msgid "" "LyX is a document preparation system. It excels at letting\n" "you create complex technical and scientific articles with mathematics,\n" @@ -18734,7 +18960,7 @@ msgid "" "required: automatic sectioning and pagination, spell checking and so forth." msgstr "" -#: gnu/packages/tex.scm:7430 +#: gnu/packages/tex.scm:7732 msgid "" "The package provides an interface to embed interactive Flash (SWF) and 3D\n" "objects (Adobe U3D & PRC), as well as video and sound files or streams in the\n" @@ -18747,7 +18973,7 @@ msgid "" "specification. It replaces the now obsolete @code{movie15} package." msgstr "" -#: gnu/packages/tex.scm:7470 +#: gnu/packages/tex.scm:7772 msgid "" "This package provides OCG (Optional Content Groups) support within a PDF\n" "document.\n" @@ -18765,7 +18991,7 @@ msgid "" "It also ensures compatibility with the @code{media9} and @code{animate} packages." msgstr "" -#: gnu/packages/tex.scm:7504 +#: gnu/packages/tex.scm:7806 msgid "" "A bundle of LATEX packages by Martin Schröder; the collection comprises:\n" "\n" @@ -18779,7 +19005,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/tex.scm:7532 +#: gnu/packages/tex.scm:7852 msgid "" "The package numprint prints numbers with a separator every three\n" "digits and converts numbers given as 12345.6e789 to 12\\,345,6\\cdot\n" @@ -18800,14 +19026,14 @@ msgid "" "and after the formatted number." msgstr "" -#: gnu/packages/tex.scm:7571 +#: gnu/packages/tex.scm:7893 msgid "" "Provides commands to disable pagebreaking within a given vertical\n" "space. If there is not enough space between the command and the bottom of the\n" "page, a new page will be started." msgstr "" -#: gnu/packages/tex.scm:7597 +#: gnu/packages/tex.scm:7919 msgid "" "The package provides commands to change the page layout in the middle of\n" "a document, and to robustly check for typesetting on odd or even pages.\n" @@ -18815,7 +19041,7 @@ msgid "" "of code from the @code{memoir} class, whose user interface it shares." msgstr "" -#: gnu/packages/tex.scm:7633 +#: gnu/packages/tex.scm:7955 msgid "" "The package is used to change the format of @code{\\today}’s date,\n" "including the weekday, e.g., \"Saturday, 26 June 2008\", the 'UK format', which\n" @@ -18823,7 +19049,7 @@ msgid "" "@code{\\maketitle} of the article class, \"June 26, 2008\", the 'US format'." msgstr "" -#: gnu/packages/tex.scm:7669 +#: gnu/packages/tex.scm:7971 msgid "" "The package provides an @code{\\ul} (underline) command which will break\n" "over line ends; this technique may be used to replace @code{\\em} (both in that\n" @@ -18832,7 +19058,7 @@ msgid "" "striking out (line through words) and crossing out (/// over words)." msgstr "" -#: gnu/packages/tex.scm:7725 +#: gnu/packages/tex.scm:8029 msgid "" "PGF is a macro package for creating graphics. It is platform- and\n" "format-independent and works together with the most important TeX backend\n" @@ -18844,7 +19070,7 @@ msgid "" "produce either PostScript or PDF output." msgstr "" -#: gnu/packages/tex.scm:7771 +#: gnu/packages/tex.scm:8075 msgid "" "The KOMA-Script bundle provides replacements for the article, report, and\n" "book classes with emphasis on typography and versatility. There is also a\n" @@ -18869,7 +19095,7 @@ msgid "" "typearea (which are the main parts of the bundle)." msgstr "" -#: gnu/packages/tex.scm:7806 +#: gnu/packages/tex.scm:8110 msgid "" "This package is a modern reimplementation of package @code{everyshi},\n" "providing various commands to be executed before a @code{\\shipout} command.\n" @@ -18877,20 +19103,20 @@ msgid "" "be used either with LaTeX or with plain TeX." msgstr "" -#: gnu/packages/tex.scm:7826 +#: gnu/packages/tex.scm:8130 msgid "" "This package provides expandable arithmetic operations with big\n" "integers that can exceed TeX's number limits." msgstr "" -#: gnu/packages/tex.scm:7845 +#: gnu/packages/tex.scm:8149 msgid "" "This package defines and implements the data type bit set, a vector\n" "of bits. The size of the vector may grow dynamically. Individual bits\n" "can be manipulated." msgstr "" -#: gnu/packages/tex.scm:7864 +#: gnu/packages/tex.scm:8168 msgid "" "New primitive commands are introduced in e-TeX; sometimes the names\n" "collide with existing macros. This package solves the name clashes by\n" @@ -18898,14 +19124,14 @@ msgid "" "@code{\\unexpanded} is provided as @code{\\etex@@unexpanded}." msgstr "" -#: gnu/packages/tex.scm:7882 +#: gnu/packages/tex.scm:8186 msgid "" "This package provides commands for cleaning up the title string\n" "(such as removing @code{\\label} commands) for packages that typeset such\n" "strings." msgstr "" -#: gnu/packages/tex.scm:7898 +#: gnu/packages/tex.scm:8202 msgid "" "This package provides a complete set of macros for information,\n" "warning and error messages. Under LaTeX, the commands are wrappers for\n" @@ -18913,19 +19139,19 @@ msgid "" "complete implementations." msgstr "" -#: gnu/packages/tex.scm:7915 +#: gnu/packages/tex.scm:8219 msgid "" "This package provides expandable arithmetic operations with integers,\n" "using the e-TeX extension @code{\\numexpr} if it is available." msgstr "" -#: gnu/packages/tex.scm:7930 +#: gnu/packages/tex.scm:8234 msgid "" "This package provides the @code{\\kv@@define@@key} (analogous to\n" "keyval’s @code{\\define@@key}, to define keys for use by @code{kvsetkeys}." msgstr "" -#: gnu/packages/tex.scm:7945 +#: gnu/packages/tex.scm:8249 msgid "" "This package provides @code{\\kvsetkeys}, a variant of @code{\\setkeys}\n" "from the @code{keyval} package. Users can specify a handler that deals with\n" @@ -18933,35 +19159,35 @@ msgid "" "level of curly braces are removed from the values." msgstr "" -#: gnu/packages/tex.scm:7980 +#: gnu/packages/tex.scm:8284 msgid "" "This package allows one to capture all the items of a list, for which\n" "the parsing character has been selected by the user, and to access any of\n" "these items with a simple syntax." msgstr "" -#: gnu/packages/tex.scm:7996 +#: gnu/packages/tex.scm:8300 msgid "" "This package exports some utility macros from the LaTeX kernel into\n" "a separate namespace and also makes them available for other formats such\n" "as plain TeX." msgstr "" -#: gnu/packages/tex.scm:8012 +#: gnu/packages/tex.scm:8316 msgid "" "This package implements pdfTeX's escape features (@code{\\pdfescapehex},\n" "@code{\\pdfunescapehex}, @code{\\pdfescapename}, @code{\\pdfescapestring})\n" "using TeX or e-TeX." msgstr "" -#: gnu/packages/tex.scm:8031 +#: gnu/packages/tex.scm:8335 msgid "" "This package provides a kind of counter that provides unique number\n" "values. Several counters can be created with different names. The numeric\n" "values are not limited." msgstr "" -#: gnu/packages/tex.scm:8067 +#: gnu/packages/tex.scm:8371 msgid "" "This package allows the user to input formatted data into elements of a\n" "2-D or 3-D array and to recall that data at will by individual cell number.\n" @@ -18969,7 +19195,7 @@ msgid "" "formatted text." msgstr "" -#: gnu/packages/tex.scm:8104 +#: gnu/packages/tex.scm:8408 msgid "" "The package provides a @code{verbbox} environment to place its contents\n" "into a globally available box, or into a box specified by the user. The\n" @@ -18979,7 +19205,7 @@ msgid "" "@code{trivlist}) may not appear." msgstr "" -#: gnu/packages/tex.scm:8141 +#: gnu/packages/tex.scm:8445 msgid "" "Examplep provides sophisticated features for typesetting verbatim source\n" "code listings, including the display of the source code and its compiled LaTeX\n" @@ -18992,7 +19218,7 @@ msgid "" "titles." msgstr "" -#: gnu/packages/tex.scm:8178 +#: gnu/packages/tex.scm:8482 msgid "" "This is a package for typesetting a variety of graphs and\n" "diagrams with TeX. Xy-pic works with most formats (including LaTeX,\n" @@ -19000,7 +19226,7 @@ msgid "" "@code{diag} package, which was previously distributed stand-alone." msgstr "" -#: gnu/packages/tex.scm:8218 +#: gnu/packages/tex.scm:8522 msgid "" "BibTeX allows the user to store his citation data in generic form, while\n" "printing citations in a document in the form specified by a BibTeX style, to\n" @@ -19008,7 +19234,7 @@ msgid "" "package, such as @command{natbib} as well)." msgstr "" -#: gnu/packages/tex.scm:8241 +#: gnu/packages/tex.scm:8545 msgid "" "This package provides a copy of the Charter Type-1 fonts\n" "which Bitstream contributed to the X consortium, renamed for use with TeX.\n" @@ -19016,14 +19242,14 @@ msgid "" "@command{psnfss}." msgstr "" -#: gnu/packages/tex.scm:8337 +#: gnu/packages/tex.scm:8641 msgid "" "ConTeXt is a full featured, parameter driven macro package,\n" "which fully supports advanced interactive documents. See the ConTeXt garden\n" "for a wealth of support information." msgstr "" -#: gnu/packages/tex.scm:8362 +#: gnu/packages/tex.scm:8666 msgid "" "The beamer LaTeX class can be used for producing slides.\n" "The class works in both PostScript and direct PDF output modes, using the\n" @@ -19036,7 +19262,7 @@ msgid "" "effects, varying slide transitions and animations." msgstr "" -#: gnu/packages/tex.scm:8394 +#: gnu/packages/tex.scm:8698 msgid "" "The XMP (eXtensible Metadata platform) is a framework to add metadata to\n" "digital material to enhance the workflow in publication. The essence is that\n" @@ -19044,13 +19270,13 @@ msgid "" "the file to which it applies." msgstr "" -#: gnu/packages/tex.scm:8433 +#: gnu/packages/tex.scm:8737 msgid "" "This package helps LaTeX users to create PDF/X, PDF/A and other\n" "standards-compliant PDF documents with pdfTeX, LuaTeX and XeTeX." msgstr "" -#: gnu/packages/tex.scm:8468 +#: gnu/packages/tex.scm:8772 msgid "" "The package provides macros and environments to document\n" "LaTeX packages and classes. It is an (as yet unfinished) alternative to the\n" @@ -19061,7 +19287,7 @@ msgid "" "change." msgstr "" -#: gnu/packages/tex.scm:8496 +#: gnu/packages/tex.scm:8800 msgid "" "PSTricks offers an extensive collection of macros for\n" "generating PostScript that is usable with most TeX macro formats, including\n" @@ -19072,14 +19298,14 @@ msgid "" "or shading the cells of tables." msgstr "" -#: gnu/packages/tex.scm:8521 +#: gnu/packages/tex.scm:8825 msgid "" "Pst-text is a PSTricks based package for plotting text along\n" "a different path and manipulating characters. It includes the functionality\n" "of the old package @code{pst-char}." msgstr "" -#: gnu/packages/tex.scm:8546 +#: gnu/packages/tex.scm:8850 msgid "" "This package provides the command @code{\\marginnote} that\n" "may be used instead of @code{\\marginpar} at almost every place where\n" @@ -19087,7 +19313,7 @@ msgid "" "frames made with the @code{framed} package." msgstr "" -#: gnu/packages/tex.scm:8564 +#: gnu/packages/tex.scm:8868 msgid "" "This package, which works both for Plain TeX and for\n" "LaTeX, defines the @code{\\ifPDFTeX}, @code{\\ifXeTeX}, and @code{\\ifLuaTeX}\n" @@ -19097,7 +19323,19 @@ msgid "" "LuaTeX (respectively) is not the engine in use." msgstr "" -#: gnu/packages/tex.scm:8597 +#: gnu/packages/tex.scm:8914 +msgid "" +"The package provides an environment, tabu, which will make any sort of\n" +"tabular, and an environment longtabu which provides the facilities of tabu in\n" +"a modified longtable environment. The package requires array, xcolor for\n" +"coloured rules in tables, and colortbl for coloured cells. The longtabu\n" +"environment further requires that longtable be loaded. The package itself\n" +"does not load any of these packages for the user. The tabu environment may be\n" +"used in place of @code{tabular}, @code{tabular*} and @code{tabularx}\n" +"environments, as well as the @code{array} environment in maths mode." +msgstr "" + +#: gnu/packages/tex.scm:8945 msgid "" "This package provides a collection of simple tools that\n" "are part of the LaTeX required tools distribution, comprising the packages:\n" @@ -19109,7 +19347,7 @@ msgid "" "@code{varioref}, @code{verbatim}, @code{xr}, and @code{xspace}." msgstr "" -#: gnu/packages/tex.scm:8678 +#: gnu/packages/tex.scm:9026 msgid "" "This package is an extension of the keyval package and offers additional\n" "macros for setting keys and declaring and setting class or package options.\n" @@ -19119,7 +19357,7 @@ msgid "" "keys." msgstr "" -#: gnu/packages/tex.scm:8706 +#: gnu/packages/tex.scm:9054 msgid "" "A class and package is provided which allows TeX pictures or\n" "other TeX code to be compiled standalone or as part of a main document.\n" @@ -19131,7 +19369,7 @@ msgid "" "@code{standalone.cfg} to redefine the standalone environment." msgstr "" -#: gnu/packages/tex.scm:8739 +#: gnu/packages/tex.scm:9087 msgid "" "Typesetting values with units requires care to ensure that the combined\n" "mathematical meaning of the value plus unit combination is clear. In\n" @@ -19147,7 +19385,7 @@ msgid "" "package to handle all of the possible unit-related needs of LaTeX users." msgstr "" -#: gnu/packages/tex.scm:8770 +#: gnu/packages/tex.scm:9118 msgid "" "This package enhances the quality of tables in LaTeX, providing extra\n" "commands as well as behind-the-scenes optimisation. Guidelines are given as\n" @@ -19155,7 +19393,7 @@ msgid "" "@code{longtable} compatibility." msgstr "" -#: gnu/packages/tex.scm:8790 +#: gnu/packages/tex.scm:9138 msgid "" "This package provides advanced facilities for inline and\n" "display quotations. It is designed for a wide range of tasks ranging from the\n" @@ -19169,7 +19407,7 @@ msgid "" "styles as well as the optional active quotes are freely configurable." msgstr "" -#: gnu/packages/tex.scm:8816 +#: gnu/packages/tex.scm:9164 msgid "" "The package helps to automate a typical LaTeX\n" "workflow that involves running LaTeX several times and running tools\n" @@ -19189,7 +19427,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8848 +#: gnu/packages/tex.scm:9196 msgid "" "BibLaTeX is a complete reimplementation of the\n" "bibliographic facilities provided by LaTeX. Formatting of the\n" @@ -19215,7 +19453,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8886 +#: gnu/packages/tex.scm:9234 msgid "" "The @code{todonotes} package lets the user mark\n" "things to do later, in a simple and visually appealing way. The\n" @@ -19223,7 +19461,7 @@ msgid "" "of the visual appearance." msgstr "" -#: gnu/packages/tex.scm:8904 +#: gnu/packages/tex.scm:9252 msgid "" "@code{units} is a package for typesetting physical\n" "units in a standard-looking way. The package is based upon\n" @@ -19231,7 +19469,7 @@ msgid "" "included in the @code{units} bundle." msgstr "" -#: gnu/packages/tex.scm:8922 +#: gnu/packages/tex.scm:9270 msgid "" "@code{microtype} provides a LaTeX interface to the\n" "micro-typographic extensions that were introduced by pdfTeX and have\n" @@ -19246,7 +19484,7 @@ msgid "" "the bundle." msgstr "" -#: gnu/packages/tex.scm:8947 +#: gnu/packages/tex.scm:9295 msgid "" "The @code{caption} package provides many ways to\n" "customise the captions in floating environments like figure and table.\n" @@ -19260,13 +19498,13 @@ msgid "" "@code{subcaption} and @code{totalcount} are included in the bundle." msgstr "" -#: gnu/packages/tex.scm:8976 +#: gnu/packages/tex.scm:9324 msgid "" "This package provides a drop-in replacement for the\n" "Symbol font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:8994 +#: gnu/packages/tex.scm:9342 msgid "" "The Pazo Math fonts are a family of PostScript fonts\n" "suitable for typesetting mathematics in combination with the Palatino\n" @@ -19280,7 +19518,7 @@ msgid "" "LaTeX macro support is provided in package @code{psnfss}." msgstr "" -#: gnu/packages/tex.scm:9019 +#: gnu/packages/tex.scm:9367 msgid "" "The FPL Fonts provide a set of SC/OsF fonts for URW\n" "Palladio L which are compatible with the Palatino SC/OsF fonts from\n" @@ -19288,7 +19526,7 @@ msgid "" "the @code{psnfss} distribution." msgstr "" -#: gnu/packages/tex.scm:9043 +#: gnu/packages/tex.scm:9391 msgid "" "The @code{arev} package provides type 1 fonts,\n" "virtual fonts and LaTeX packages for using Arev Sans in both text and\n" @@ -19302,7 +19540,7 @@ msgid "" "support packages. Others are cmbright, hvmath and kerkis." msgstr "" -#: gnu/packages/tex.scm:9074 +#: gnu/packages/tex.scm:9422 msgid "" "The Math Design project offers free mathematical\n" "fonts that match with existing text fonts. To date, three free font\n" @@ -19313,7 +19551,7 @@ msgid "" "created by the Greek Font Society)." msgstr "" -#: gnu/packages/tex.scm:9099 +#: gnu/packages/tex.scm:9447 msgid "" "The @code{bera} package contains the Bera Type 1\n" "fonts and files to use the fonts with LaTeX. Bera is a set of three\n" @@ -19322,7 +19560,7 @@ msgid "" "a repackaging, for use with TeX, of the Bitstream Vera family." msgstr "" -#: gnu/packages/tex.scm:9122 +#: gnu/packages/tex.scm:9470 msgid "" "Fourier-GUTenberg is a LaTeX typesetting system\n" "which uses Adobe Utopia as its standard base font. Fourier-GUTenberg\n" @@ -19333,7 +19571,7 @@ msgid "" "trademark of Adobe Systems Incorporated." msgstr "" -#: gnu/packages/tex.scm:9145 +#: gnu/packages/tex.scm:9493 msgid "" "The Adobe Standard Encoding set of the Utopia font\n" "family, as contributed to the X Consortium. The set comprises upright\n" @@ -19342,7 +19580,7 @@ msgid "" "@code{mathdesign} font packages." msgstr "" -#: gnu/packages/tex.scm:9169 +#: gnu/packages/tex.scm:9517 msgid "" "The @code{fontaxes} package adds several new font\n" "axes on top of LaTeX's New Font Selection Scheme (NFSS). In\n" @@ -19351,7 +19589,7 @@ msgid "" "figure versions offered by many professional fonts." msgstr "" -#: gnu/packages/tex.scm:9192 +#: gnu/packages/tex.scm:9540 msgid "" "The bundle comprises: @code{authblk}, which permits\n" "footnote style author/affiliation input in the @command{\\author} command,\n" @@ -19361,7 +19599,7 @@ msgid "" "@code{sublabel}, which permits counters to be subnumbered." msgstr "" -#: gnu/packages/tex.scm:9211 +#: gnu/packages/tex.scm:9559 msgid "" "Many font families available for use with LaTeX are\n" "available at multiple weights. Many Type 1-oriented support packages\n" @@ -19372,7 +19610,7 @@ msgid "" "@code{mweights} package provides a solution to these difficulties." msgstr "" -#: gnu/packages/tex.scm:9237 +#: gnu/packages/tex.scm:9585 msgid "" "Cabin is a humanist sans with four weights, true\n" "italics and small capitals. According to its designer, Pablo\n" @@ -19386,7 +19624,7 @@ msgid "" "use with [pdf]LaTeX." msgstr "" -#: gnu/packages/tex.scm:9268 +#: gnu/packages/tex.scm:9616 msgid "" "The @code{newtx} bundle splits\n" "@code{txfonts.sty} (from the TX fonts distribution) into two\n" @@ -19398,7 +19636,7 @@ msgid "" "mathematics package that matches Libertine text quite well." msgstr "" -#: gnu/packages/tex.scm:9296 +#: gnu/packages/tex.scm:9644 msgid "" "@code{xcharter} repackages Bitstream Charter with an\n" "extended set of features. The extension provides small caps, oldstyle\n" @@ -19407,7 +19645,7 @@ msgid "" "Type 1 and OTF formats, with supporting files as necessary." msgstr "" -#: gnu/packages/tex.scm:9320 +#: gnu/packages/tex.scm:9668 msgid "" "The legacy @emph{texnansi} (TeX and ANSI) encoding\n" "is known in the LaTeX scheme of things as @emph{LY1} encoding. The\n" @@ -19416,14 +19654,14 @@ msgid "" "LY1 encoding." msgstr "" -#: gnu/packages/tex.scm:9349 +#: gnu/packages/tex.scm:9697 msgid "" "This is a LaTeX2ε package to help change the style of any or\n" "all of LaTeX's sectional headers in the article, book, or report classes.\n" "Examples include the addition of rules above or below a section title." msgstr "" -#: gnu/packages/tex.scm:9375 +#: gnu/packages/tex.scm:9723 msgid "" "LaTeX can, by default, only cope with 18 outstanding floats;\n" "any more, and you get the error “too many unprocessed floats”. This package\n" @@ -19434,20 +19672,20 @@ msgid "" "floats merely delays the arrival of the inevitable error message." msgstr "" -#: gnu/packages/tex.scm:9408 +#: gnu/packages/tex.scm:9756 #, fuzzy msgid "" "This package provides a command for the LaTeX programmer for\n" "testing whether an argument is empty." msgstr "Este paquete proporciona un diccionario para el comprobador ortográfico GNU Aspell." -#: gnu/packages/tex.scm:9435 +#: gnu/packages/tex.scm:9783 msgid "" "The pagenote package provides tagged notes on a separate\n" "page (also known as ‘end notes’)." msgstr "" -#: gnu/packages/tex.scm:9463 +#: gnu/packages/tex.scm:9811 msgid "" "The @code{titling} package provides control over the\n" "typesetting of the @code{\\maketitle} command and @code{\\thanks} commands,\n" @@ -19457,7 +19695,7 @@ msgid "" "a physical page." msgstr "" -#: gnu/packages/tex.scm:9493 +#: gnu/packages/tex.scm:9841 msgid "" "This package provides an @code{\\ifoddpage} conditional to\n" "determine if the current page is odd or even. The macro @code{\\checkoddpage}\n" @@ -19467,7 +19705,7 @@ msgid "" "@code{oneside} mode where all pages use the odd page layout." msgstr "" -#: gnu/packages/tex.scm:9523 +#: gnu/packages/tex.scm:9871 msgid "" "The package provides \"store boxes\" whose user interface\n" "matches that of normal LaTeX \"save boxes\", except that the content of a\n" @@ -19476,7 +19714,7 @@ msgid "" "DVI is output, store boxes behave the same as save boxes." msgstr "" -#: gnu/packages/tex.scm:9552 +#: gnu/packages/tex.scm:9900 msgid "" "The package provides macros to collect and process a macro\n" "argument (i.e., something which looks like a macro argument) as a horizontal\n" @@ -19489,13 +19727,13 @@ msgid "" "The macros were designed for use within other macros." msgstr "" -#: gnu/packages/tex.scm:9584 +#: gnu/packages/tex.scm:9932 msgid "" "This package provides macros for adding to, and reordering\n" "the list of graphics file extensions recognised by package graphics." msgstr "" -#: gnu/packages/tex.scm:9618 +#: gnu/packages/tex.scm:9966 msgid "" "The package provides several macros to adjust boxed\n" "content. One purpose is to supplement the standard @code{graphics} package,\n" @@ -19508,7 +19746,7 @@ msgid "" "@code{\\minsizebox}, @code{\\maxsizebox} and @code{\\phantombox}." msgstr "" -#: gnu/packages/tex.scm:9644 +#: gnu/packages/tex.scm:9992 msgid "" "This package provides an environment for colored and\n" "framed text boxes with a heading line. Optionally, such a box may be split in\n" @@ -19519,7 +19757,7 @@ msgid "" "parts." msgstr "" -#: gnu/packages/tex.scm:9675 +#: gnu/packages/tex.scm:10023 msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems. The commands allow for writing\n" @@ -19528,14 +19766,14 @@ msgid "" "styles of inference rules, placement of labels, etc." msgstr "" -#: gnu/packages/tex.scm:9704 +#: gnu/packages/tex.scm:10052 #, fuzzy msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems." msgstr "Este paquete proporciona un diccionario para el comprobador ortográfico GNU Aspell." -#: gnu/packages/tex.scm:9724 +#: gnu/packages/tex.scm:10072 msgid "" "This package provides the European currency symbol for the\n" "Euro implemented in METAFONT, using the official European Commission\n" @@ -19544,7 +19782,7 @@ msgid "" "pre-compiled font files, and documentation." msgstr "" -#: gnu/packages/tex.scm:9754 +#: gnu/packages/tex.scm:10102 msgid "" "The @code{kastrup} package provides the\n" "@emph{binhex.tex} file. This file provides expandable macros for both\n" @@ -19554,7 +19792,7 @@ msgid "" "LaTeX and plain TeX." msgstr "" -#: gnu/packages/tex.scm:9774 +#: gnu/packages/tex.scm:10122 msgid "" "This LaTeX package provides a flexible mechanism for translating\n" "individual words into different languages. For example, it can be used to\n" @@ -19565,7 +19803,7 @@ msgid "" "automatically translate more than a few words." msgstr "" -#: gnu/packages/tex.scm:9795 +#: gnu/packages/tex.scm:10143 msgid "" "This package facilitates placing boxes at absolute positions on the\n" "LaTeX page. There are several reasons why this might be useful, but the main\n" @@ -19578,7 +19816,7 @@ msgid "" "accompanied by various configuration commands." msgstr "" -#: gnu/packages/tex.scm:9819 +#: gnu/packages/tex.scm:10167 msgid "" "This package extends the @code{ifthen} package by implementing new\n" "commands to go within the first argument of @code{\\\\ifthenelse}: to test\n" @@ -19588,14 +19826,14 @@ msgid "" "handle complex tests." msgstr "" -#: gnu/packages/tex.scm:9852 +#: gnu/packages/tex.scm:10200 msgid "" "BibTool manipulates BibTeX files. The possibilities of BibTool include\n" "sorting and merging of BibTeX databases, generation of uniform reference keys,\n" "and selecting references used in a publication." msgstr "" -#: gnu/packages/texinfo.scm:87 +#: gnu/packages/texinfo.scm:88 msgid "" "Texinfo is the official documentation format of the GNU project. It\n" "uses a single source file using explicit commands to produce a final document\n" @@ -19605,7 +19843,7 @@ msgid "" "is on expressing the content semantically, avoiding physical markup commands." msgstr "" -#: gnu/packages/texinfo.scm:216 +#: gnu/packages/texinfo.scm:230 msgid "" "Texi2HTML is a Perl script which converts Texinfo source files to HTML\n" "output. It now supports many advanced features, such as internationalization\n" @@ -19620,7 +19858,7 @@ msgid "" "Texi2HTML." msgstr "" -#: gnu/packages/texinfo.scm:283 +#: gnu/packages/texinfo.scm:297 msgid "" "Pinfo is an Info file viewer. Pinfo is similar in use to the Lynx web\n" "browser. You just move across info nodes, and select links, follow them, etc.\n" @@ -19981,6 +20219,12 @@ msgstr "" #: gnu/packages/textutils.scm:1406 msgid "" +"@code{utf-8-lineseparator} provides a tool to efficiently check text\n" +"files for valid UTF-8 use and to report which line endings they use." +msgstr "" + +#: gnu/packages/textutils.scm:1439 +msgid "" "@code{csvdiff} is a diff tool to compute changes between two\n" "CSV files. It can compare CSV files with a million records in under 2\n" "seconds. It is specifically suited for comparing CSV files dumped from\n" @@ -20182,27 +20426,27 @@ msgid "" "visualize your public Git repositories on a web interface." msgstr "" -#: gnu/packages/version-control.scm:1706 +#: gnu/packages/version-control.scm:1699 msgid "" "Pre-commit is a multi-language package manager for pre-commit hooks. You\n" "specify a list of hooks you want and pre-commit manages the installation and\n" "execution of any hook written in any language before every commit." msgstr "" -#: gnu/packages/version-control.scm:1796 +#: gnu/packages/version-control.scm:1789 msgid "" "Mercurial is a free, distributed source control management tool. It\n" "efficiently handles projects of any size and offers an easy and intuitive\n" "interface." msgstr "" -#: gnu/packages/version-control.scm:1823 +#: gnu/packages/version-control.scm:1816 msgid "" "Evolve is a Mercurial extension for faster and safer mutable\n" "history. It implements the changeset evolution concept for Mercurial." msgstr "" -#: gnu/packages/version-control.scm:1879 +#: gnu/packages/version-control.scm:1872 msgid "" "This package provides a Mercurial extension for signing\n" "the changeset hash of commits. The signure is embedded directly in the\n" @@ -20210,7 +20454,7 @@ msgid "" "can be used for signing." msgstr "" -#: gnu/packages/version-control.scm:1914 +#: gnu/packages/version-control.scm:1907 msgid "" "Neon is an HTTP and WebDAV client library, with a C interface and the\n" "following features:\n" @@ -20232,7 +20476,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/version-control.scm:2010 +#: gnu/packages/version-control.scm:2003 msgid "" "@dfn{Subversion} (svn) exists to be recognized and adopted as a\n" "centralized version control system characterized by its\n" @@ -20241,7 +20485,7 @@ msgid "" "projects, from individuals to large-scale enterprise operations." msgstr "" -#: gnu/packages/version-control.scm:2044 +#: gnu/packages/version-control.scm:2037 msgid "" "RCS is the original Revision Control System. It works on a\n" "file-by-file basis, in contrast to subsequent version control systems such as\n" @@ -20250,21 +20494,21 @@ msgid "" "machine." msgstr "" -#: gnu/packages/version-control.scm:2067 +#: gnu/packages/version-control.scm:2060 msgid "" "@code{blame} outputs an annotated revision from each RCS file. An\n" "annotated RCS file describes the revision and date in which each line was\n" "added to the file, and the author of each line." msgstr "" -#: gnu/packages/version-control.scm:2088 +#: gnu/packages/version-control.scm:2081 msgid "" "The @code{rcshist} utility displays the complete revision history of a\n" "set of RCS files including log messages and patches. It can also display the\n" "patch associated with a particular revision of an RCS file." msgstr "" -#: gnu/packages/version-control.scm:2116 +#: gnu/packages/version-control.scm:2109 msgid "" "CVS is a version control system, an important component of Source\n" "Configuration Management (SCM). Using it, you can record the history of\n" @@ -20272,7 +20516,7 @@ msgid "" "RCS, PRCS, and Aegis packages." msgstr "" -#: gnu/packages/version-control.scm:2150 +#: gnu/packages/version-control.scm:2143 msgid "" "This program analyzes a collection of RCS files in a CVS\n" "repository (or outside of one) and, when possible, emits an equivalent history\n" @@ -20285,7 +20529,7 @@ msgid "" "masters from remote CVS hosts." msgstr "" -#: gnu/packages/version-control.scm:2180 +#: gnu/packages/version-control.scm:2173 msgid "" "The vc-dwim package contains two tools, \"vc-dwim\" and \"vc-chlog\".\n" "vc-dwim is a tool that simplifies the task of maintaining a ChangeLog and\n" @@ -20295,21 +20539,21 @@ msgid "" "standards-compliant ChangeLog entries based on the changes that it detects." msgstr "" -#: gnu/packages/version-control.scm:2207 +#: gnu/packages/version-control.scm:2200 msgid "" "Diffstat reads the output of @command{diff} and displays a histogram of\n" "the insertions, deletions, and modifications per file. It is useful for\n" "reviewing large, complex patch files." msgstr "" -#: gnu/packages/version-control.scm:2246 +#: gnu/packages/version-control.scm:2239 msgid "" "GNU CSSC provides a replacement for the legacy Unix source\n" "code control system SCCS. This allows old code still under that system to be\n" "accessed and migrated on modern systems." msgstr "" -#: gnu/packages/version-control.scm:2338 +#: gnu/packages/version-control.scm:2331 msgid "" "Aegis is a project change supervisor, and performs some of\n" "the Software Configuration Management needed in a CASE environment. Aegis\n" @@ -20329,7 +20573,7 @@ msgstr "" "fuentes, un quebradero de cabeza para cualquier proyecto con más de un\n" "desarrollador, es una de las mayores funciones de Aegis." -#: gnu/packages/version-control.scm:2412 +#: gnu/packages/version-control.scm:2405 msgid "" "Reposurgeon enables risky operations that version-control\n" "systems don't want to let you do, such as editing past comments and metadata\n" @@ -20340,20 +20584,20 @@ msgid "" "from Subversion to any supported Distributed Version Control System (DVCS)." msgstr "" -#: gnu/packages/version-control.scm:2451 +#: gnu/packages/version-control.scm:2444 msgid "" "Tig is an ncurses text user interface for Git, primarily intended as\n" "a history browser. It can also stage hunks for commit, or colorize the\n" "output of the @code{git} command." msgstr "" -#: gnu/packages/version-control.scm:2474 +#: gnu/packages/version-control.scm:2467 msgid "" "Recursively find the newest file in a file tree and print its\n" "modification time." msgstr "" -#: gnu/packages/version-control.scm:2521 +#: gnu/packages/version-control.scm:2514 msgid "" "Myrepos provides the @code{mr} command, which maps an operation (e.g.,\n" "fetching updates) over a collection of version control repositories. It\n" @@ -20361,14 +20605,14 @@ msgid "" "Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity." msgstr "" -#: gnu/packages/version-control.scm:2558 +#: gnu/packages/version-control.scm:2551 msgid "" "Grokmirror enables replicating large git repository\n" "collections efficiently. Mirrors decide to clone and update repositories\n" "based on a manifest file published by servers." msgstr "" -#: gnu/packages/version-control.scm:2588 +#: gnu/packages/version-control.scm:2581 msgid "" "The @code{b4} command is designed to make it easier to participate in\n" "patch-based workflows for projects that have public-inbox archives.\n" @@ -20382,26 +20626,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/version-control.scm:2635 +#: gnu/packages/version-control.scm:2628 msgid "" "This wrapper around rclone makes any destination supported\n" "by rclone usable with git-annex." msgstr "" -#: gnu/packages/version-control.scm:2689 +#: gnu/packages/version-control.scm:2682 msgid "" "Fossil is a distributed source control management system which supports\n" "access and administration over HTTP CGI or via a built-in HTTP server. It has\n" "a built-in wiki, built-in file browsing, built-in tickets system, etc." msgstr "" -#: gnu/packages/version-control.scm:2720 +#: gnu/packages/version-control.scm:2713 msgid "" "Stagit creates static pages for git repositories, the results can\n" "be served with a HTTP file server of your choice." msgstr "" -#: gnu/packages/version-control.scm:2756 +#: gnu/packages/version-control.scm:2749 msgid "" "@code{gource} provides a software version control\n" "visualization. The repository is displayed as a tree where the root of the\n" @@ -20410,7 +20654,7 @@ msgid "" "specific files and directories." msgstr "" -#: gnu/packages/version-control.scm:2804 +#: gnu/packages/version-control.scm:2797 #, scheme-format msgid "" "SRC (or src) is simple revision control, a version-control system for\n" @@ -20420,7 +20664,7 @@ msgid "" "directory full of HOWTOs." msgstr "" -#: gnu/packages/version-control.scm:2856 +#: gnu/packages/version-control.scm:2849 msgid "" "This Git extension defines a subcommand,\n" "@code{when-merged}, whose core operation is to find the merge that brought a\n" @@ -20428,7 +20672,7 @@ msgid "" "how information about the merge is displayed." msgstr "" -#: gnu/packages/version-control.scm:2900 +#: gnu/packages/version-control.scm:2893 msgid "" "This Git extension defines a subcommand, @code{imerge},\n" "which performs an incremental merge between two branches. Its two primary\n" @@ -20437,20 +20681,20 @@ msgid "" "interrupted, published, and collaborated on while in progress." msgstr "" -#: gnu/packages/version-control.scm:2951 +#: gnu/packages/version-control.scm:2944 msgid "" "Git Large File Storage (LFS) replaces large files such as audio samples,\n" "videos, datasets, and graphics with text pointers inside Git, while storing the\n" "file contents on a remote server." msgstr "" -#: gnu/packages/version-control.scm:2986 +#: gnu/packages/version-control.scm:2979 msgid "" "@code{git open} opens the repository's website from the command-line,\n" "guessing the URL pattern from the @code{origin} remote." msgstr "" -#: gnu/packages/version-control.scm:3040 +#: gnu/packages/version-control.scm:3033 msgid "" "GNU Arch, aka. @code{tla}, was one of the first free distributed\n" "version-control systems (DVCS). It saw its last release in 2006. This\n" @@ -20458,21 +20702,21 @@ msgid "" "for historians." msgstr "" -#: gnu/packages/version-control.scm:3086 +#: gnu/packages/version-control.scm:3079 msgid "" "@code{diff-so-fancy} strives to make your diffs human readable instead\n" "of machine readable. This helps improve code quality and helps you spot\n" "defects faster." msgstr "" -#: gnu/packages/version-control.scm:3142 +#: gnu/packages/version-control.scm:3135 #, fuzzy msgid "This package provides a Git implementation library." msgstr "" "Este paquete proporciona un diccionario para la biblioteca de\n" "comprobación ortográfica Hunspell." -#: gnu/packages/version-control.scm:3192 +#: gnu/packages/version-control.scm:3185 msgid "" "This package provides a command-line tool to manage\n" "multiple Git repos.\n" @@ -20487,7 +20731,7 @@ msgid "" "If several repos are related, it helps to see their status together." msgstr "" -#: gnu/packages/version-control.scm:3250 +#: gnu/packages/version-control.scm:3243 #, scheme-format msgid "" "@code{ghq} provides a way to organize remote repository clones, like\n" @@ -20496,7 +20740,7 @@ msgid "" "using the remote repository URL's host and path." msgstr "" -#: gnu/packages/version-control.scm:3295 +#: gnu/packages/version-control.scm:3288 msgid "" "TkRev (formerly TkCVS) is a Tcl/Tk-based graphical interface to the CVS,\n" "Subversion and Git configuration management systems. It will also help with\n" @@ -20505,7 +20749,7 @@ msgid "" "TkDiff is included for browsing and merging your changes." msgstr "" -#: gnu/packages/version-control.scm:3328 +#: gnu/packages/version-control.scm:3321 msgid "" "@command{git filter-repo} is a versatile tool for rewriting history,\n" "which roughly falls into the same space of tool like git filter-branch but\n" @@ -20543,7 +20787,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:865 +#: gnu/packages/virtualization.scm:870 msgid "" "Ganeti is a virtual machine management tool built on top of existing\n" "virtualization technologies such as Xen or KVM. Ganeti controls:\n" @@ -20560,19 +20804,19 @@ msgid "" "commodity hardware." msgstr "" -#: gnu/packages/virtualization.scm:902 +#: gnu/packages/virtualization.scm:907 msgid "" "This package provides a guest OS definition for Ganeti that uses\n" "Guix to build virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:996 +#: gnu/packages/virtualization.scm:1001 msgid "" "This package provides a guest OS definition for Ganeti. It installs\n" "Debian or a derivative using @command{debootstrap}." msgstr "" -#: gnu/packages/virtualization.scm:1056 +#: gnu/packages/virtualization.scm:1061 msgid "" "libosinfo is a GObject based library API for managing\n" "information about operating systems, hypervisors and the (virtual) hardware\n" @@ -20582,21 +20826,21 @@ msgid "" "all common programming languages. Vala bindings are also provided." msgstr "" -#: gnu/packages/virtualization.scm:1105 +#: gnu/packages/virtualization.scm:1109 msgid "" "LXC is a userspace interface for the Linux kernel containment features.\n" "Through a powerful API and simple tools, it lets Linux users easily create and\n" "manage system or application containers." msgstr "" -#: gnu/packages/virtualization.scm:1131 +#: gnu/packages/virtualization.scm:1135 msgid "" "LXCFS is a small FUSE file system written with the intention\n" "of making Linux containers feel more like a virtual machine.\n" "It started as a side project of LXC but can be used by any run-time." msgstr "" -#: gnu/packages/virtualization.scm:1239 +#: gnu/packages/virtualization.scm:1237 msgid "" "LXD is a next generation system container manager. It\n" "offers a user experience similar to virtual machines but using Linux\n" @@ -20605,7 +20849,7 @@ msgid "" "pretty simple, REST API." msgstr "" -#: gnu/packages/virtualization.scm:1332 +#: gnu/packages/virtualization.scm:1330 msgid "" "Libvirt is a C toolkit to interact with the virtualization\n" "capabilities of recent versions of Linux. The library aims at providing long\n" @@ -20613,7 +20857,7 @@ msgid "" "to integrate other virtualization mechanisms if needed." msgstr "" -#: gnu/packages/virtualization.scm:1363 +#: gnu/packages/virtualization.scm:1359 msgid "" "libvirt-glib wraps the libvirt library to provide a\n" "high-level object-oriented API better suited for glib-based applications, via\n" @@ -20626,13 +20870,13 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/virtualization.scm:1407 +#: gnu/packages/virtualization.scm:1403 msgid "" "This package provides Python bindings to the libvirt\n" "virtualization library." msgstr "" -#: gnu/packages/virtualization.scm:1520 +#: gnu/packages/virtualization.scm:1516 msgid "" "The virt-manager application is a desktop user interface for managing\n" "virtual machines through libvirt. It primarily targets KVM VMs, but also\n" @@ -20640,7 +20884,7 @@ msgid "" "domains, their live performance and resource utilization statistics." msgstr "" -#: gnu/packages/virtualization.scm:1620 +#: gnu/packages/virtualization.scm:1616 msgid "" "Using this tool, you can freeze a running application (or\n" "part of it) and checkpoint it to a hard drive as a collection of files. You\n" @@ -20649,14 +20893,14 @@ msgid "" "mainly implemented in user space." msgstr "" -#: gnu/packages/virtualization.scm:1647 +#: gnu/packages/virtualization.scm:1643 msgid "" "qmpbackup is designed to create and restore full and\n" "incremental backups of running QEMU virtual machines via QMP, the QEMU\n" "Machine Protocol." msgstr "" -#: gnu/packages/virtualization.scm:1731 +#: gnu/packages/virtualization.scm:1727 msgid "" "Looking Glass allows the use of a KVM (Kernel-based Virtual\n" "Machine) configured for VGA PCI Pass-through without an attached physical\n" @@ -20664,7 +20908,7 @@ msgid "" "main monitor/GPU." msgstr "" -#: gnu/packages/virtualization.scm:1783 +#: gnu/packages/virtualization.scm:1779 msgid "" "@command{runc} is a command line client for running applications\n" "packaged according to the\n" @@ -20673,13 +20917,13 @@ msgid "" "Open Container Initiative specification." msgstr "" -#: gnu/packages/virtualization.scm:1832 +#: gnu/packages/virtualization.scm:1828 msgid "" "@command{umoci} is a tool that allows for high-level modification of an\n" "Open Container Initiative (OCI) image layout and its tagged images." msgstr "" -#: gnu/packages/virtualization.scm:1886 +#: gnu/packages/virtualization.scm:1882 msgid "" "@command{skopeo} is a command line utility providing various operations\n" "with container images and container image registries. It can:\n" @@ -20700,14 +20944,14 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:1922 +#: gnu/packages/virtualization.scm:1918 msgid "" "Python-vagrant is a Python module that provides a thin wrapper around the\n" "@code{vagrant} command line executable, allowing programmatic control of Vagrant\n" "virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:1977 +#: gnu/packages/virtualization.scm:1979 msgid "" "Bubblewrap is aimed at running applications in a sandbox,\n" "restricting their access to parts of the operating system or user data such as\n" @@ -20717,7 +20961,7 @@ msgid "" "by default and can be made read-only." msgstr "" -#: gnu/packages/virtualization.scm:2004 +#: gnu/packages/virtualization.scm:2006 msgid "" "Bochs is an emulator which can emulate Intel x86 CPU, common I/O\n" "devices, and a custom BIOS. It can also be compiled to emulate many different\n" @@ -20726,64 +20970,67 @@ msgid "" "DOS or Microsoft Windows." msgstr "" -#: gnu/packages/virtualization.scm:2210 +#: gnu/packages/virtualization.scm:2212 msgid "" "This package provides the Xen Virtual Machine Monitor\n" "which is a hypervisor." msgstr "" -#: gnu/packages/virtualization.scm:2242 +#: gnu/packages/virtualization.scm:2244 msgid "" "This package contains a set of tools to assist\n" "administrators and developers in managing the database." msgstr "" -#: gnu/packages/virtualization.scm:2275 +#: gnu/packages/virtualization.scm:2277 msgid "" "Osinfo-db provides the database files for use with the\n" "libosinfo library. It provides information about guest operating systems for\n" "use with virtualization provisioning tools" msgstr "" -#: gnu/packages/virtualization.scm:2317 +#: gnu/packages/virtualization.scm:2319 msgid "" "@code{transient} is a wrapper for QEMU allowing the creation of virtual\n" "machines with shared folder, ssh, and disk creation support." msgstr "" -#: gnu/packages/webkit.scm:93 +#: gnu/packages/webkit.scm:94 msgid "" "LibWPE is general-purpose library specifically developed for\n" "the WPE-flavored port of WebKit." msgstr "" -#: gnu/packages/webkit.scm:119 +#: gnu/packages/webkit.scm:120 msgid "" "This package provides a backend implementation for the WPE WebKit\n" "engine that uses Wayland for graphics output." msgstr "" -#: gnu/packages/webkit.scm:216 +#: gnu/packages/webkit.scm:227 msgid "" "WPE WebKit allows embedders to create simple and performant\n" "systems based on Web platform technologies. It is designed with hardware\n" "acceleration in mind, leveraging common 3D graphics APIs for best performance." msgstr "" -#: gnu/packages/webkit.scm:351 +#: gnu/packages/webkit.scm:355 msgid "" "WebKitGTK+ is a full-featured port of the WebKit rendering engine,\n" "suitable for projects requiring any kind of web integration, from hybrid\n" -"HTML/CSS applications to full-fledged web browsers." +"HTML/CSS applications to full-fledged web browsers. WebKitGTK+ video playing\n" +"capabilities can be extended through the use of GStreamer plugins (not\n" +"propagated by default) such as @code{gst-plugins-good} and\n" +"@code{gst-plugins-bad}." msgstr "" -#: gnu/packages/web.scm:250 +#: gnu/packages/web.scm:251 msgid "" "Qhttp is a light-weight and asynchronous HTTP library\n" "(both server & client) in Qt5 and C++14." msgstr "" -#: gnu/packages/web.scm:280 +#: gnu/packages/web.scm:281 msgid "" "The Apache HTTP Server Project is a collaborative software development\n" "effort aimed at creating a robust, commercial-grade, featureful, and\n" @@ -20793,14 +21040,14 @@ msgid "" "and its related documentation." msgstr "" -#: gnu/packages/web.scm:314 +#: gnu/packages/web.scm:315 msgid "" "The mod_wsgi module for the Apache HTTPD Server adds support for running\n" "applications that support the Python @acronym{WSGI, Web Server Gateway\n" "Interface} specification." msgstr "" -#: gnu/packages/web.scm:356 +#: gnu/packages/web.scm:357 msgid "" "Monolith bundles any web page into a single HTML file.\n" "\n" @@ -20813,38 +21060,38 @@ msgid "" "the same, being completely separated from the Internet." msgstr "" -#: gnu/packages/web.scm:460 +#: gnu/packages/web.scm:461 msgid "" "Nginx (\"engine X\") is a high-performance web and reverse proxy server\n" "created by Igor Sysoev. It can be used both as a stand-alone web server\n" "and as a proxy to reduce the load on back-end HTTP or mail servers." msgstr "" -#: gnu/packages/web.scm:518 +#: gnu/packages/web.scm:519 msgid "This package provides HTML documentation for the nginx web server." msgstr "" -#: gnu/packages/web.scm:647 +#: gnu/packages/web.scm:648 msgid "" "This nginx module parses the Accept-Language field in HTTP headers and\n" "chooses the most suitable locale for the user from the list of locales\n" "supported at your website." msgstr "" -#: gnu/packages/web.scm:694 +#: gnu/packages/web.scm:695 msgid "" "XSLScript is a terse notation for writing complex XSLT stylesheets.\n" "This is modified version, specifically intended for use with the NGinx\n" "documentation." msgstr "" -#: gnu/packages/web.scm:767 +#: gnu/packages/web.scm:768 msgid "" "This NGINX module provides a scripting support with Lua\n" "programming language." msgstr "" -#: gnu/packages/web.scm:820 +#: gnu/packages/web.scm:821 msgid "" "This NGINX module provides streaming with the @acronym{RTMP,\n" "Real-Time Messaging Protocol}, @acronym{DASH, Dynamic Adaptive Streaming over HTTP},\n" @@ -20854,7 +21101,7 @@ msgid "" "stream. Remote control of the module is possible over HTTP." msgstr "" -#: gnu/packages/web.scm:882 +#: gnu/packages/web.scm:883 msgid "" "Lighttpd is a secure, fast, compliant, and very flexible web-server that\n" "has been optimized for high-performance environments. It has a very low\n" @@ -20862,41 +21109,41 @@ msgid "" "CGI, authentication, output compression, URL rewriting and many more." msgstr "" -#: gnu/packages/web.scm:910 +#: gnu/packages/web.scm:911 msgid "" "FastCGI is a language-independent, scalable extension to CGI\n" "that provides high performance without the limitations of server specific\n" "APIs." msgstr "" -#: gnu/packages/web.scm:948 +#: gnu/packages/web.scm:949 msgid "" "Fcgiwrap is a simple server for running CGI applications\n" "over FastCGI. It hopes to provide clean CGI support to Nginx (and other web\n" "servers that may need it)." msgstr "" -#: gnu/packages/web.scm:977 +#: gnu/packages/web.scm:978 msgid "" "Starman is a PSGI perl web server that has unique features\n" "such as high performance, preforking, signal support, superdaemon awareness,\n" "and UNIX socket support." msgstr "" -#: gnu/packages/web.scm:1010 +#: gnu/packages/web.scm:1011 msgid "" "IcedTea-Web is an implementation of the @dfn{Java Network Launching\n" "Protocol}, also known as Java Web Start. This package provides tools and\n" "libraries for working with JNLP applets." msgstr "" -#: gnu/packages/web.scm:1035 +#: gnu/packages/web.scm:1036 msgid "" "Jansson is a C library for encoding, decoding and manipulating JSON\n" "data." msgstr "" -#: gnu/packages/web.scm:1055 +#: gnu/packages/web.scm:1056 msgid "" "JSON-C implements a reference counting object model that allows you to\n" "easily construct JSON objects in C, output them as JSON-formatted strings and\n" @@ -20904,7 +21151,7 @@ msgid "" "It aims to conform to RFC 7159." msgstr "" -#: gnu/packages/web.scm:1131 +#: gnu/packages/web.scm:1132 msgid "" "This package provides a very low footprint JSON parser\n" "written in portable ANSI C.\n" @@ -20917,21 +21164,21 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:1176 +#: gnu/packages/web.scm:1177 msgid "" "QJson is a Qt-based library that maps JSON data to\n" "@code{QVariant} objects. JSON arrays will be mapped to @code{QVariantList}\n" "instances, while JSON's objects will be mapped to @code{QVariantMap}." msgstr "" -#: gnu/packages/web.scm:1227 +#: gnu/packages/web.scm:1228 msgid "" "QOAuth is an attempt to support interaction with\n" "OAuth-powered network services in a Qt way, i.e. simply, clearly and\n" "efficiently. It gives the application developer no more than 4 methods." msgstr "" -#: gnu/packages/web.scm:1339 +#: gnu/packages/web.scm:1340 msgid "" "Krona is a flexible tool for exploring the relative proportions of\n" "hierarchical data, such as metagenomic classifications, using a radial,\n" @@ -20940,26 +21187,26 @@ msgid "" "current version of any major web browser." msgstr "" -#: gnu/packages/web.scm:1380 +#: gnu/packages/web.scm:1381 msgid "" "RapidJSON is a fast JSON parser/generator for C++ with both SAX/DOM\n" "style API." msgstr "" -#: gnu/packages/web.scm:1409 +#: gnu/packages/web.scm:1410 msgid "" "Yet Another JSON Library (YAJL) is a small event-driven (SAX-style) JSON\n" "parser written in ANSI C and a small validating JSON generator." msgstr "" -#: gnu/packages/web.scm:1439 +#: gnu/packages/web.scm:1440 msgid "" "Libwebsockets is a library that allows C programs to establish client\n" "and server WebSockets connections---a protocol layered above HTTP that allows\n" "for efficient socket-like bidirectional reliable communication channels." msgstr "" -#: gnu/packages/web.scm:1468 +#: gnu/packages/web.scm:1469 msgid "" "WABT (pronounced: wabbit) is a suite of tools for\n" "WebAssembly, including:\n" @@ -20984,7 +21231,7 @@ msgid "" "other systems that want to manipulate WebAssembly files." msgstr "" -#: gnu/packages/web.scm:1518 +#: gnu/packages/web.scm:1519 msgid "" "WebSocket++ is a C++ library that can be used to implement\n" "WebSocket functionality. The goals of the project are to provide a WebSocket\n" @@ -20992,7 +21239,7 @@ msgid "" "high performance." msgstr "" -#: gnu/packages/web.scm:1558 +#: gnu/packages/web.scm:1559 msgid "" "@code{Wslay} is an event-based C library for the WebSocket\n" "protocol version 13, described in RFC 6455. Besides a high-level API it\n" @@ -21001,7 +21248,7 @@ msgid "" "perform the opening handshake in HTTP." msgstr "" -#: gnu/packages/web.scm:1588 +#: gnu/packages/web.scm:1589 #, fuzzy msgid "" "A \"public suffix\" is a domain name under which Internet users can\n" @@ -21034,20 +21281,20 @@ msgstr "" "dado, funciona con dominios internacionales (UTF-8 e IDNA2008 Punycode), es\n" "de hilo seguro, y manipula IDNA2008 UTS#46." -#: gnu/packages/web.scm:1633 +#: gnu/packages/web.scm:1634 msgid "" "HTML Tidy is a command-line tool and C library that can be\n" "used to validate and fix HTML data." msgstr "" -#: gnu/packages/web.scm:1680 +#: gnu/packages/web.scm:1681 msgid "" "The esbuild tool provides a unified bundler, transpiler and\n" "minifier. It packages up JavaScript and TypeScript code, along with JSON\n" "and other data, for distribution on the web." msgstr "" -#: gnu/packages/web.scm:1716 +#: gnu/packages/web.scm:1717 msgid "" "Tinyproxy is a light-weight HTTP/HTTPS proxy\n" "daemon. Designed from the ground up to be fast and yet small, it is an ideal\n" @@ -21056,14 +21303,14 @@ msgid "" "unavailable." msgstr "" -#: gnu/packages/web.scm:1751 +#: gnu/packages/web.scm:1752 msgid "" "Polipo is a small caching web proxy (web cache, HTTP proxy, and proxy\n" "server). It was primarily designed to be used by one person or a small group\n" "of people." msgstr "" -#: gnu/packages/web.scm:1779 +#: gnu/packages/web.scm:1780 msgid "" "Websockify translates WebSockets traffic to normal socket\n" "traffic. Websockify accepts the WebSockets handshake, parses it, and then\n" @@ -21071,7 +21318,7 @@ msgid "" "directions." msgstr "" -#: gnu/packages/web.scm:1806 +#: gnu/packages/web.scm:1807 msgid "" "WWWOFFLE is a proxy web server that is especially good for\n" "intermittent internet links. It can cache HTTP, HTTPS, FTP, and finger\n" @@ -21080,7 +21327,7 @@ msgid "" "changes, and much more." msgstr "" -#: gnu/packages/web.scm:1832 +#: gnu/packages/web.scm:1833 msgid "" "liboauth is a collection of C functions implementing the OAuth API.\n" "liboauth provides functions to escape and encode strings according to OAuth\n" @@ -21089,25 +21336,25 @@ msgid "" "hash/signatures." msgstr "" -#: gnu/packages/web.scm:1855 +#: gnu/packages/web.scm:1856 msgid "" "This package contains support scripts called by libquvi to\n" "parse media stream properties." msgstr "" -#: gnu/packages/web.scm:1889 +#: gnu/packages/web.scm:1890 msgid "" "libquvi is a library with a C API for parsing media stream\n" "URLs and extracting their actual media files." msgstr "" -#: gnu/packages/web.scm:1911 +#: gnu/packages/web.scm:1912 msgid "" "quvi is a command-line-tool suite to extract media files\n" "from streaming URLs. It is a command-line wrapper for the libquvi library." msgstr "" -#: gnu/packages/web.scm:1983 +#: gnu/packages/web.scm:1984 msgid "" "serf is a C-based HTTP client library built upon the Apache Portable\n" "Runtime (APR) library. It multiplexes connections, running the read/write\n" @@ -21115,7 +21362,7 @@ msgid "" "minimum to provide high performance operation." msgstr "" -#: gnu/packages/web.scm:2018 +#: gnu/packages/web.scm:2019 msgid "" "LibSass is a @acronym{SASS,Syntactically awesome style sheets} compiler\n" "library designed for portability and efficiency. To actually compile SASS\n" @@ -21123,29 +21370,29 @@ msgid "" "@var{sassc} for example." msgstr "" -#: gnu/packages/web.scm:2067 +#: gnu/packages/web.scm:2068 msgid "" "SassC is a compiler written in C for the CSS pre-processor\n" "language known as SASS." msgstr "" -#: gnu/packages/web.scm:2112 +#: gnu/packages/web.scm:2113 msgid "" "This module provides methods to compile a log format string\n" "to perl-code, for faster generation of access_log lines." msgstr "" -#: gnu/packages/web.scm:2140 +#: gnu/packages/web.scm:2141 msgid "Authen::SASL provides an SASL authentication framework." msgstr "" -#: gnu/packages/web.scm:2163 +#: gnu/packages/web.scm:2164 msgid "" "This Catalyst action implements a sensible default end\n" "action, which will forward to the first available view." msgstr "" -#: gnu/packages/web.scm:2195 +#: gnu/packages/web.scm:2196 msgid "" "This Action handles doing automatic method dispatching for\n" "REST requests. It takes a normal Catalyst action, and changes the dispatch to\n" @@ -21154,20 +21401,20 @@ msgid "" "regular method." msgstr "" -#: gnu/packages/web.scm:2226 +#: gnu/packages/web.scm:2227 msgid "" "The Catalyst::Authentication::Store::DBIx::Class class\n" "provides access to authentication information stored in a database via\n" "DBIx::Class." msgstr "" -#: gnu/packages/web.scm:2252 +#: gnu/packages/web.scm:2253 msgid "" "Catalyst::Component::InstancePerContext returns a new\n" "instance of a component on each request." msgstr "" -#: gnu/packages/web.scm:2288 +#: gnu/packages/web.scm:2289 msgid "" "The Catalyst-Devel distribution includes a variety of\n" "modules useful for the development of Catalyst applications, but not required\n" @@ -21177,7 +21424,7 @@ msgid "" "modules." msgstr "" -#: gnu/packages/web.scm:2316 +#: gnu/packages/web.scm:2317 msgid "" "Dispatch type managing path-matching behaviour using\n" "regexes. Regex dispatch types have been deprecated and removed from Catalyst\n" @@ -21187,20 +21434,20 @@ msgid "" "when the dispatch type is first seen in your application." msgstr "" -#: gnu/packages/web.scm:2363 +#: gnu/packages/web.scm:2364 msgid "" "This is a Catalyst Model for DBIx::Class::Schema-based\n" "Models." msgstr "" -#: gnu/packages/web.scm:2385 +#: gnu/packages/web.scm:2386 msgid "" "This Catalyst plugin enables you to create \"access logs\"\n" "from within a Catalyst application instead of requiring a webserver to do it\n" "for you. It will work even with Catalyst debug logging turned off." msgstr "" -#: gnu/packages/web.scm:2419 +#: gnu/packages/web.scm:2420 msgid "" "The authentication plugin provides generic user support for\n" "Catalyst apps. It is the basis for both authentication (checking the user is\n" @@ -21208,32 +21455,32 @@ msgid "" "system authorises them to do)." msgstr "" -#: gnu/packages/web.scm:2447 +#: gnu/packages/web.scm:2448 msgid "" "Catalyst::Plugin::Authorization::Roles provides role-based\n" "authorization for Catalyst based on Catalyst::Plugin::Authentication." msgstr "" -#: gnu/packages/web.scm:2469 +#: gnu/packages/web.scm:2470 msgid "" "This plugin creates and validates Captcha images for\n" "Catalyst." msgstr "" -#: gnu/packages/web.scm:2493 +#: gnu/packages/web.scm:2494 msgid "" "This module will attempt to load find and load configuration\n" "files of various types. Currently it supports YAML, JSON, XML, INI and Perl\n" "formats." msgstr "" -#: gnu/packages/web.scm:2522 +#: gnu/packages/web.scm:2523 msgid "" "This plugin links the two pieces required for session\n" "management in web applications together: the state, and the store." msgstr "" -#: gnu/packages/web.scm:2548 +#: gnu/packages/web.scm:2549 msgid "" "In order for Catalyst::Plugin::Session to work, the session\n" "ID needs to be stored on the client, and the session data needs to be stored\n" @@ -21241,14 +21488,14 @@ msgid "" "cookie mechanism." msgstr "" -#: gnu/packages/web.scm:2578 +#: gnu/packages/web.scm:2579 msgid "" "Catalyst::Plugin::Session::Store::FastMmap is a fast session\n" "storage plugin for Catalyst that uses an mmap'ed file to act as a shared\n" "memory interprocess cache. It is based on Cache::FastMmap." msgstr "" -#: gnu/packages/web.scm:2602 +#: gnu/packages/web.scm:2603 msgid "" "This plugin enhances the standard Catalyst debug screen by\n" "including a stack trace of your application up to the point where the error\n" @@ -21256,7 +21503,7 @@ msgid "" "number, file name, and code context surrounding the line number." msgstr "" -#: gnu/packages/web.scm:2628 +#: gnu/packages/web.scm:2629 msgid "" "The Static::Simple plugin is designed to make serving static\n" "content in your application during development quick and easy, without\n" @@ -21267,7 +21514,7 @@ msgid "" "MIME type directly to the browser, without being processed through Catalyst." msgstr "" -#: gnu/packages/web.scm:2687 +#: gnu/packages/web.scm:2688 msgid "" "Catalyst is a modern framework for making web applications.\n" "It is designed to make it easy to manage the various tasks you need to do to\n" @@ -21275,7 +21522,7 @@ msgid "" "\"plug in\" existing Perl modules that do what you need." msgstr "" -#: gnu/packages/web.scm:2715 +#: gnu/packages/web.scm:2716 msgid "" "This module is a Moose::Role which allows you more\n" "flexibility in your application's deployment configurations when deployed\n" @@ -21283,26 +21530,26 @@ msgid "" "replaced with the contents of the X-Request-Base header." msgstr "" -#: gnu/packages/web.scm:2743 +#: gnu/packages/web.scm:2744 msgid "" "The purpose of this module is to provide a method for\n" "downloading data into many supportable formats. For example, downloading a\n" "table based report in a variety of formats (CSV, HTML, etc.)." msgstr "" -#: gnu/packages/web.scm:2767 +#: gnu/packages/web.scm:2768 msgid "" "Catalyst::View::JSON is a Catalyst View handler that returns\n" "stash data in JSON format." msgstr "" -#: gnu/packages/web.scm:2793 +#: gnu/packages/web.scm:2794 msgid "" "This module is a Catalyst view class for the Template\n" "Toolkit." msgstr "" -#: gnu/packages/web.scm:2821 +#: gnu/packages/web.scm:2822 msgid "" "Adds a \"COMPONENT\" in Catalyst::Component method to your\n" "Catalyst component base class that reads the optional \"traits\" parameter\n" @@ -21311,19 +21558,19 @@ msgid "" "MooseX::Traits::Pluggable." msgstr "" -#: gnu/packages/web.scm:2845 +#: gnu/packages/web.scm:2846 msgid "" "CatalystX::RoleApplicator applies roles to Catalyst\n" "application classes." msgstr "" -#: gnu/packages/web.scm:2870 +#: gnu/packages/web.scm:2871 msgid "" "This module provides a Catalyst extension to replace the\n" "development server with Starman." msgstr "" -#: gnu/packages/web.scm:2892 +#: gnu/packages/web.scm:2893 msgid "" "CGI.pm is a stable, complete and mature solution for\n" "processing and preparing HTTP requests and responses. Major features include\n" @@ -21332,44 +21579,44 @@ msgid "" "headers." msgstr "" -#: gnu/packages/web.scm:2919 +#: gnu/packages/web.scm:2920 msgid "" "@code{CGI::FormBuilder} provides an easy way to generate and process CGI\n" "form-based applications." msgstr "" -#: gnu/packages/web.scm:2946 +#: gnu/packages/web.scm:2947 msgid "" "@code{CGI::Session} provides modular session management system across\n" "HTTP requests." msgstr "" -#: gnu/packages/web.scm:2967 +#: gnu/packages/web.scm:2968 msgid "" "CGI::Simple provides a relatively lightweight drop in\n" "replacement for CGI.pm. It shares an identical OO interface to CGI.pm for\n" "parameter parsing, file upload, cookie handling and header generation." msgstr "" -#: gnu/packages/web.scm:2989 +#: gnu/packages/web.scm:2990 msgid "" "This is a module for building structured data from CGI\n" "inputs, in a manner reminiscent of how PHP does." msgstr "" -#: gnu/packages/web.scm:3012 +#: gnu/packages/web.scm:3013 msgid "" "This module provides functions that deal with the date\n" "formats used by the HTTP protocol." msgstr "" -#: gnu/packages/web.scm:3033 +#: gnu/packages/web.scm:3034 msgid "" "Digest::MD5::File is a Perl extension for getting MD5 sums\n" "for files and urls." msgstr "" -#: gnu/packages/web.scm:3053 +#: gnu/packages/web.scm:3054 msgid "" "The POSIX locale system is used to specify both the language\n" "conventions requested by the user and the preferred character set to\n" @@ -21381,66 +21628,66 @@ msgid "" "with Encode::decode(locale => $string)." msgstr "" -#: gnu/packages/web.scm:3086 +#: gnu/packages/web.scm:3087 msgid "" "@code{Feed::Find} implements feed auto-discovery for finding\n" "syndication feeds, given a URI. It will discover the following feed formats:\n" "RSS 0.91, RSS 1.0, RSS 2.0, Atom." msgstr "" -#: gnu/packages/web.scm:3109 +#: gnu/packages/web.scm:3110 msgid "" "The File::Listing module exports a single function called parse_dir(),\n" "which can be used to parse directory listings." msgstr "" -#: gnu/packages/web.scm:3142 +#: gnu/packages/web.scm:3143 msgid "" "Finance::Quote gets stock quotes from various internet sources, including\n" "Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange." msgstr "" -#: gnu/packages/web.scm:3165 +#: gnu/packages/web.scm:3166 msgid "" "This is a Perl extension for using GSSAPI C bindings as\n" "described in RFC 2744." msgstr "" -#: gnu/packages/web.scm:3187 +#: gnu/packages/web.scm:3188 msgid "" "HTML::Element::Extended is a Perl extension for manipulating a table\n" "composed of HTML::Element style components." msgstr "" -#: gnu/packages/web.scm:3208 +#: gnu/packages/web.scm:3209 msgid "" "Objects of the HTML::Form class represents a single HTML\n" "
...
instance." msgstr "" -#: gnu/packages/web.scm:3241 +#: gnu/packages/web.scm:3242 msgid "@code{HTML::Scrubber} Perl extension for scrubbing/sanitizing HTML." msgstr "" -#: gnu/packages/web.scm:3260 +#: gnu/packages/web.scm:3261 msgid "" "HTML::Lint is a pure-Perl HTML parser and checker for\n" "syntactic legitmacy." msgstr "" -#: gnu/packages/web.scm:3282 +#: gnu/packages/web.scm:3283 msgid "" "HTML::TableExtract is a Perl module for extracting the content contained\n" "in tables within an HTML document, either as text or encoded element trees." msgstr "" -#: gnu/packages/web.scm:3305 +#: gnu/packages/web.scm:3306 msgid "" "This distribution contains a suite of modules for\n" "representing, creating, and extracting information from HTML syntax trees." msgstr "" -#: gnu/packages/web.scm:3327 +#: gnu/packages/web.scm:3328 msgid "" "Objects of the HTML::Parser class will recognize markup and separate\n" "it from plain text (alias data content) in HTML documents. As different\n" @@ -21448,13 +21695,13 @@ msgid "" "are invoked." msgstr "" -#: gnu/packages/web.scm:3349 +#: gnu/packages/web.scm:3350 msgid "" "The HTML::Tagset module contains several data tables useful in various\n" "kinds of HTML parsing operations." msgstr "" -#: gnu/packages/web.scm:3370 +#: gnu/packages/web.scm:3371 msgid "" "This module attempts to make using HTML templates simple and natural.\n" "It extends standard HTML with a few new HTML-esque tags: @code{},\n" @@ -21465,40 +21712,40 @@ msgid "" "you to separate design from the data." msgstr "" -#: gnu/packages/web.scm:3398 +#: gnu/packages/web.scm:3399 msgid "" "HTTP::Body parses chunks of HTTP POST data and supports\n" "application/octet-stream, application/json, application/x-www-form-urlencoded,\n" "and multipart/form-data." msgstr "" -#: gnu/packages/web.scm:3421 +#: gnu/packages/web.scm:3422 msgid "" "This module implements a minimalist HTTP user agent cookie\n" "jar in conformance with RFC 6265 ." msgstr "" -#: gnu/packages/web.scm:3443 +#: gnu/packages/web.scm:3444 msgid "" "The HTTP::Cookies class is for objects that represent a cookie jar,\n" "that is, a database of all the HTTP cookies that a given LWP::UserAgent\n" "object knows about." msgstr "" -#: gnu/packages/web.scm:3466 +#: gnu/packages/web.scm:3467 msgid "" "Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen\n" "on a socket for incoming requests. The HTTP::Daemon is a subclass of\n" "IO::Socket::INET, so you can perform socket operations directly on it too." msgstr "" -#: gnu/packages/web.scm:3487 +#: gnu/packages/web.scm:3488 msgid "" "The HTTP::Date module provides functions that deal with date formats\n" "used by the HTTP protocol (and then some more)." msgstr "" -#: gnu/packages/web.scm:3508 +#: gnu/packages/web.scm:3509 msgid "" "@code{HTTP::Lite} is a stand-alone lightweight\n" "HTTP/1.1 implementation for perl. It is intended for use in\n" @@ -21512,11 +21759,11 @@ msgid "" "processing of request data as it arrives." msgstr "" -#: gnu/packages/web.scm:3541 +#: gnu/packages/web.scm:3542 msgid "An HTTP::Message object contains some headers and a content body." msgstr "Un objeto HTTP::Message contiene algunas cabeceras y un cuerpo de contenido." -#: gnu/packages/web.scm:3562 +#: gnu/packages/web.scm:3563 msgid "" "The HTTP::Negotiate module provides a complete implementation of the\n" "HTTP content negotiation algorithm specified in\n" @@ -21526,7 +21773,7 @@ msgid "" "fields in the request." msgstr "" -#: gnu/packages/web.scm:3587 +#: gnu/packages/web.scm:3588 msgid "" "This is an HTTP request parser. It takes chunks of text as\n" "received and returns a @code{hint} as to what is required, or returns the\n" @@ -21534,33 +21781,33 @@ msgid "" "supported." msgstr "" -#: gnu/packages/web.scm:3610 +#: gnu/packages/web.scm:3611 msgid "" "HTTP::Parser::XS is a fast, primitive HTTP request/response\n" "parser." msgstr "" -#: gnu/packages/web.scm:3631 +#: gnu/packages/web.scm:3632 msgid "" "This module provides a convenient way to set up a CGI\n" "environment from an HTTP::Request." msgstr "" -#: gnu/packages/web.scm:3665 +#: gnu/packages/web.scm:3666 msgid "" "HTTP::Server::Simple is a simple standalone HTTP daemon with\n" "no non-core module dependencies. It can be used for building a standalone\n" "http-based UI to your existing tools." msgstr "" -#: gnu/packages/web.scm:3688 +#: gnu/packages/web.scm:3689 msgid "" "This is a very simple HTTP/1.1 client, designed for doing\n" "simple requests without the overhead of a large framework like LWP::UserAgent.\n" "It supports proxies and redirection. It also correctly resumes after EINTR." msgstr "" -#: gnu/packages/web.scm:3713 +#: gnu/packages/web.scm:3714 msgid "" "@code{HTTP::Tinyish} is a wrapper module for @acronym{LWP,libwww-perl},\n" "@code{HTTP::Tiny}, curl and wget.\n" @@ -21568,20 +21815,20 @@ msgid "" "It provides an API compatible to HTTP::Tiny." msgstr "" -#: gnu/packages/web.scm:3735 +#: gnu/packages/web.scm:3736 msgid "" "IO::HTML provides an easy way to open a file containing HTML while\n" "automatically determining its encoding. It uses the HTML5 encoding sniffing\n" "algorithm specified in section 8.2.2.1 of the draft standard." msgstr "" -#: gnu/packages/web.scm:3755 +#: gnu/packages/web.scm:3756 msgid "" "This module provides a protocol-independent way to use IPv4\n" "and IPv6 sockets, intended as a replacement for IO::Socket::INET." msgstr "" -#: gnu/packages/web.scm:3777 +#: gnu/packages/web.scm:3778 msgid "" "IO::Socket::SSL makes using SSL/TLS much easier by wrapping the\n" "necessary functionality into the familiar IO::Socket interface and providing\n" @@ -21590,7 +21837,7 @@ msgid "" "select or poll." msgstr "" -#: gnu/packages/web.scm:3816 +#: gnu/packages/web.scm:3817 msgid "" "The libwww-perl collection is a set of Perl modules which provides a\n" "simple and consistent application programming interface to the\n" @@ -21600,7 +21847,7 @@ msgid "" "help you implement simple HTTP servers." msgstr "" -#: gnu/packages/web.scm:3844 +#: gnu/packages/web.scm:3845 msgid "" "This module attempts to answer, as accurately as it can, one\n" "of the nastiest technical questions there is: am I on the internet?\n" @@ -21610,7 +21857,7 @@ msgid "" "not have DNS. We might not have a network card at all!" msgstr "" -#: gnu/packages/web.scm:3870 +#: gnu/packages/web.scm:3871 #, scheme-format msgid "" "The LWP::MediaTypes module provides functions for handling media (also\n" @@ -21619,20 +21866,20 @@ msgid "" "exists it is used instead." msgstr "" -#: gnu/packages/web.scm:3895 +#: gnu/packages/web.scm:3896 msgid "" "The LWP::Protocol::https module provides support for using\n" "https schemed URLs with LWP." msgstr "" -#: gnu/packages/web.scm:3916 +#: gnu/packages/web.scm:3917 msgid "" "LWP::UserAgent::Cached is an LWP::UserAgent subclass with\n" "cache support. It returns responses from the local file system, if available,\n" "instead of making an HTTP request." msgstr "" -#: gnu/packages/web.scm:3938 +#: gnu/packages/web.scm:3939 msgid "" "LWP::UserAgent::Determined works just like LWP::UserAgent,\n" "except that when you use it to get a web page but run into a\n" @@ -21640,7 +21887,7 @@ msgid "" "and retry a few times." msgstr "" -#: gnu/packages/web.scm:3965 +#: gnu/packages/web.scm:3966 msgid "" "@code{LWPx::ParanoidAgent} is a class subclassing\n" "@code{LWP::UserAgent} but paranoid against attackers. Its purpose is\n" @@ -21650,11 +21897,11 @@ msgid "" "is limited to http and https." msgstr "" -#: gnu/packages/web.scm:4011 +#: gnu/packages/web.scm:4012 msgid "This module provides a Perlish interface to Amazon S3." msgstr "Este módulo proporciona un interfaz Perlish para Amazon S3." -#: gnu/packages/web.scm:4032 +#: gnu/packages/web.scm:4033 msgid "" "The Net::HTTP class is a low-level HTTP client. An instance of the\n" "Net::HTTP class represents a connection to an HTTP server. The HTTP protocol\n" @@ -21662,7 +21909,7 @@ msgid "" "HTTP/1.1." msgstr "" -#: gnu/packages/web.scm:4053 +#: gnu/packages/web.scm:4054 msgid "" "Net::Server is an extensible, generic Perl server engine.\n" "It attempts to be a generic server as in Net::Daemon and NetServer::Generic.\n" @@ -21676,11 +21923,11 @@ msgid "" "or to multiple server ports." msgstr "" -#: gnu/packages/web.scm:4082 +#: gnu/packages/web.scm:4083 msgid "SSL support for Net::SMTP." msgstr "Capacidad SSL para Net::SMTP." -#: gnu/packages/web.scm:4116 +#: gnu/packages/web.scm:4117 msgid "" "Plack is a set of tools for using the PSGI stack. It\n" "contains middleware components, a reference server, and utilities for Web\n" @@ -21688,7 +21935,7 @@ msgid "" "WSGI." msgstr "" -#: gnu/packages/web.scm:4143 +#: gnu/packages/web.scm:4144 msgid "" "Plack::Middleware::Deflater is a middleware to encode your response body\n" "in gzip or deflate, based on \"Accept-Encoding\" HTTP request header. It\n" @@ -21697,13 +21944,13 @@ msgid "" "servers." msgstr "" -#: gnu/packages/web.scm:4170 +#: gnu/packages/web.scm:4171 msgid "" "This module sets the body in redirect response, if it's not\n" "already set." msgstr "" -#: gnu/packages/web.scm:4193 +#: gnu/packages/web.scm:4194 msgid "" "This middleware allows for POST requests that pretend to be\n" "something else: by adding either a header named X-HTTP-Method-Override to the\n" @@ -21711,44 +21958,44 @@ msgid "" "can say what method it actually meant." msgstr "" -#: gnu/packages/web.scm:4217 +#: gnu/packages/web.scm:4218 msgid "" "This module removes the body in an HTTP response if it's not\n" "required." msgstr "" -#: gnu/packages/web.scm:4240 +#: gnu/packages/web.scm:4241 msgid "" "Plack::Middleware::ReverseProxy resets some HTTP headers,\n" "which are changed by reverse-proxy. You can specify the reverse proxy address\n" "and stop fake requests using @code{enable_if} directive in your app.psgi." msgstr "" -#: gnu/packages/web.scm:4261 +#: gnu/packages/web.scm:4262 msgid "" "This module allows your to run your Plack::Test tests\n" "against an external server instead of just against a local application through\n" "either mocked HTTP or a locally spawned server." msgstr "" -#: gnu/packages/web.scm:4283 +#: gnu/packages/web.scm:4284 msgid "Test::TCP is test utilities for TCP/IP programs." msgstr "" -#: gnu/packages/web.scm:4308 +#: gnu/packages/web.scm:4309 msgid "" "Test::WWW::Mechanize is a subclass of the Perl module\n" "WWW::Mechanize that incorporates features for web application testing." msgstr "" -#: gnu/packages/web.scm:4341 +#: gnu/packages/web.scm:4342 msgid "" "The Test::WWW::Mechanize::Catalyst module meshes the\n" "Test::WWW:Mechanize module and the Catalyst web application framework to allow\n" "testing of Catalyst applications without needing to start up a web server." msgstr "" -#: gnu/packages/web.scm:4365 +#: gnu/packages/web.scm:4366 msgid "" "PSGI is a specification to decouple web server environments\n" "from web application framework code. Test::WWW::Mechanize is a subclass of\n" @@ -21757,21 +22004,21 @@ msgid "" "applications." msgstr "" -#: gnu/packages/web.scm:4390 +#: gnu/packages/web.scm:4391 msgid "" "The URI module implements the URI class. Objects of this class\n" "represent \"Uniform Resource Identifier references\" as specified in RFC 2396\n" "and updated by RFC 2732." msgstr "" -#: gnu/packages/web.scm:4413 +#: gnu/packages/web.scm:4414 msgid "" "@code{URI::Fetch} is a smart client for fetching HTTP pages,\n" "notably syndication feeds (RSS, Atom, and others), in an intelligent, bandwidth-\n" "and time-saving way." msgstr "" -#: gnu/packages/web.scm:4437 +#: gnu/packages/web.scm:4438 msgid "" "This module finds URIs and URLs (according to what URI.pm\n" "considers a URI) in plain text. It only finds URIs which include a\n" @@ -21779,37 +22026,37 @@ msgid "" "URI::Find::Schemeless. For a command-line interface, urifind is provided." msgstr "" -#: gnu/packages/web.scm:4460 +#: gnu/packages/web.scm:4461 msgid "" "With this module, the URI package provides the same set of\n" "methods for WebSocket URIs as it does for HTTP URIs." msgstr "" -#: gnu/packages/web.scm:4483 +#: gnu/packages/web.scm:4484 msgid "" "This perl module provides a wrapper around URI templates as described in\n" "RFC 6570." msgstr "" -#: gnu/packages/web.scm:4517 +#: gnu/packages/web.scm:4518 msgid "" "This is a Perl extension interface for the libcurl file downloading\n" "library." msgstr "" -#: gnu/packages/web.scm:4548 +#: gnu/packages/web.scm:4549 msgid "" "WWW::Mechanize is a Perl module for stateful programmatic\n" "web browsing, used for automating interaction with websites." msgstr "" -#: gnu/packages/web.scm:4586 +#: gnu/packages/web.scm:4587 msgid "" "@code{WWW::OpenSearch} is a module to search @url{A9's OpenSearch,\n" "http://opensearch.a9.com} compatible search engines." msgstr "" -#: gnu/packages/web.scm:4608 +#: gnu/packages/web.scm:4609 msgid "" "The WWW::RobotRules module parses /robots.txt files as specified in\n" "\"A Standard for Robot Exclusion\", at\n" @@ -21818,13 +22065,13 @@ msgid "" "their web site." msgstr "" -#: gnu/packages/web.scm:4635 gnu/packages/web.scm:4659 +#: gnu/packages/web.scm:4640 gnu/packages/web.scm:4664 msgid "" "Universal feed parser which handles RSS 0.9x, RSS 1.0, RSS 2.0,\n" "CDF, Atom 0.3, and Atom 1.0 feeds." msgstr "" -#: gnu/packages/web.scm:4756 +#: gnu/packages/web.scm:4761 msgid "" "The Guix Data Service stores data about GNU Guix, and provides this\n" "through a web interface. It supports listening to the guix-commits mailing\n" @@ -21832,20 +22079,20 @@ msgid "" "PostgreSQL database." msgstr "" -#: gnu/packages/web.scm:4785 +#: gnu/packages/web.scm:4790 msgid "" "Gumbo is an implementation of the HTML5 parsing algorithm implemented as\n" "a pure C99 library." msgstr "" -#: gnu/packages/web.scm:4858 +#: gnu/packages/web.scm:4863 msgid "" "uWSGI presents a complete stack for networked/clustered web applications,\n" "implementing message/object passing, caching, RPC and process management.\n" "It uses the uwsgi protocol for all the networking/interprocess communications." msgstr "" -#: gnu/packages/web.scm:4891 +#: gnu/packages/web.scm:4896 msgid "" "jq is like sed for JSON data – you can use it to slice and\n" "filter and map and transform structured data with the same ease that sed, awk,\n" @@ -21855,7 +22102,7 @@ msgid "" "you'd expect." msgstr "" -#: gnu/packages/web.scm:4920 +#: gnu/packages/web.scm:4925 msgid "" "@command{pup} is a command line tool for processing HTML. It reads\n" "from stdin, prints to stdout, and allows the user to filter parts of the page\n" @@ -21863,66 +22110,66 @@ msgid "" "fast and flexible way of exploring HTML from the terminal." msgstr "" -#: gnu/packages/web.scm:4953 +#: gnu/packages/web.scm:4958 msgid "" "Uhttpmock is a project for mocking web service APIs which use HTTP or\n" "HTTPS. It provides a library, libuhttpmock, which implements recording and\n" "playback of HTTP request/response traces." msgstr "" -#: gnu/packages/web.scm:4989 +#: gnu/packages/web.scm:4994 msgid "" "Woof (Web Offer One File) is a small simple web server that\n" "can easily be invoked on a single file. Your partner can access the file with\n" "tools they trust (e.g. wget)." msgstr "" -#: gnu/packages/web.scm:5017 +#: gnu/packages/web.scm:5022 msgid "" "This package provides the shared build system for Netsurf project\n" "libraries." msgstr "" -#: gnu/packages/web.scm:5052 +#: gnu/packages/web.scm:5057 msgid "" "LibParserUtils is a library for building efficient parsers, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5082 +#: gnu/packages/web.scm:5087 msgid "" "Hubbub is an HTML5 compliant parsing library, written in C, which can\n" "parse both valid and invalid web content. It is developed as part of the\n" "NetSurf project." msgstr "" -#: gnu/packages/web.scm:5203 +#: gnu/packages/web.scm:5208 msgid "" "Ikiwiki is a wiki compiler, capable of generating a static set of web\n" "pages, but also incorporating dynamic features like a web based editor and\n" "commenting." msgstr "" -#: gnu/packages/web.scm:5227 +#: gnu/packages/web.scm:5232 msgid "" "LibWapcaplet provides a reference counted string internment system\n" "designed to store small strings and allow rapid comparison of them. It is\n" "developed as part of the Netsurf project." msgstr "" -#: gnu/packages/web.scm:5259 +#: gnu/packages/web.scm:5264 msgid "" "LibCSS is a CSS (Cascading Style Sheet) parser and selection engine,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5294 +#: gnu/packages/web.scm:5299 msgid "" "LibDOM is an implementation of the W3C DOM, written in C. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5321 +#: gnu/packages/web.scm:5326 msgid "" "Libsvgtiny takes some SVG as input and returns a list of paths and texts\n" "which can be rendered easily, as defined in\n" @@ -21930,65 +22177,65 @@ msgid "" "project." msgstr "" -#: gnu/packages/web.scm:5346 +#: gnu/packages/web.scm:5351 msgid "" "Libnsbmp is a decoding library for BMP and ICO image file formats,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5369 +#: gnu/packages/web.scm:5374 msgid "" "Libnsgif is a decoding library for the GIF image file format, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5396 +#: gnu/packages/web.scm:5401 msgid "" "Libnslog provides a category-based logging library which supports\n" "complex logging filters, multiple log levels, and provides context through to\n" "client applications. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5420 +#: gnu/packages/web.scm:5425 msgid "" "Libnsutils provides a small number of useful utility routines. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5443 +#: gnu/packages/web.scm:5448 msgid "" "Libnspsl is a library to generate a static code representation of the\n" "Public Suffix List. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5469 +#: gnu/packages/web.scm:5474 msgid "" "@code{nsgenbind} is a tool to generate JavaScript to DOM bindings from\n" "w3c webidl files and a binding configuration file." msgstr "" -#: gnu/packages/web.scm:5592 +#: gnu/packages/web.scm:5597 msgid "" "NetSurf is a lightweight web browser that has its own layout and\n" "rendering engine entirely written from scratch. It is small and capable of\n" "handling many of the web standards in use today." msgstr "" -#: gnu/packages/web.scm:5631 +#: gnu/packages/web.scm:5636 msgid "" "Surfraw (Shell Users' Revolutionary Front Rage Against the Web)\n" "provides a unix command line interface to a variety of popular www search engines\n" "and similar services." msgstr "" -#: gnu/packages/web.scm:5664 +#: gnu/packages/web.scm:5669 msgid "" "darkhttpd is a simple static web server. It is\n" "standalone and does not need inetd or ucspi-tcp. It does not need any\n" "config files---you only have to specify the www root." msgstr "" -#: gnu/packages/web.scm:5695 +#: gnu/packages/web.scm:5700 msgid "" "GoAccess is a real-time web log analyzer and interactive viewer that\n" "runs in a terminal or through your browser. It provides fast and valuable\n" @@ -21996,7 +22243,7 @@ msgid "" "on the fly." msgstr "" -#: gnu/packages/web.scm:5749 +#: gnu/packages/web.scm:5754 msgid "" "Hitch is a performant TLS proxy based on @code{libev}. It terminates\n" "SSL/TLS connections and forwards the unencrypted traffic to a backend such\n" @@ -22004,7 +22251,7 @@ msgid "" "multicore machines." msgstr "" -#: gnu/packages/web.scm:5786 +#: gnu/packages/web.scm:5791 msgid "" "httptunnel creates a bidirectional virtual data connection\n" "tunnelled through HTTP (HyperText Transfer Protocol) requests. This can be\n" @@ -22022,7 +22269,7 @@ msgid "" "deployments." msgstr "" -#: gnu/packages/web.scm:5915 +#: gnu/packages/web.scm:5912 msgid "" "Varnish is a high-performance HTTP accelerator. It acts as a caching\n" "reverse proxy and load balancer. You install it in front of any server that\n" @@ -22030,14 +22277,14 @@ msgid "" "configuration language." msgstr "" -#: gnu/packages/web.scm:5949 +#: gnu/packages/web.scm:5946 msgid "" "This package provides a collection of modules (@dfn{vmods}) for the Varnish\n" "cache server, extending the @acronym{VCL, Varnish Configuration Language} with\n" "additional capabilities." msgstr "" -#: gnu/packages/web.scm:5976 +#: gnu/packages/web.scm:5973 msgid "" "@code{xinetd}, a more secure replacement for @code{inetd},\n" "listens for incoming requests over a network and launches the appropriate\n" @@ -22046,7 +22293,7 @@ msgid "" "used to start services with both privileged and non-privileged port numbers." msgstr "" -#: gnu/packages/web.scm:6023 +#: gnu/packages/web.scm:6020 msgid "" "Tidy is a console application which corrects and cleans up\n" "HTML and XML documents by fixing markup errors and upgrading\n" @@ -22057,14 +22304,14 @@ msgid "" "functions of Tidy." msgstr "" -#: gnu/packages/web.scm:6085 +#: gnu/packages/web.scm:6082 msgid "" "Hiawatha has been written with security in mind.\n" "Features include the ability to stop SQL injections, XSS and CSRF attacks and\n" "exploit attempts." msgstr "" -#: gnu/packages/web.scm:6107 +#: gnu/packages/web.scm:6104 msgid "" "Testing an HTTP Library can become difficult sometimes.\n" "@code{RequestBin} is fantastic for testing POST requests, but doesn't let you control the\n" @@ -22072,14 +22319,14 @@ msgid "" "JSON-encoded." msgstr "" -#: gnu/packages/web.scm:6132 +#: gnu/packages/web.scm:6129 msgid "" "@code{Pytest-httpbin} creates a @code{pytest} fixture that is dependency-injected\n" "into your tests. It automatically starts up a HTTP server in a separate thread running\n" "@code{httpbin} and provides your test with the URL in the fixture." msgstr "" -#: gnu/packages/web.scm:6199 +#: gnu/packages/web.scm:6196 msgid "" "This is a parser for HTTP messages written in C. It\n" "parses both requests and responses. The parser is designed to be used in\n" @@ -22089,40 +22336,40 @@ msgid "" "message stream (in a web server that is per connection)." msgstr "" -#: gnu/packages/web.scm:6236 +#: gnu/packages/web.scm:6233 msgid "" "@code{httpretty} is a helper for faking web requests,\n" "inspired by Ruby's @code{fakeweb}." msgstr "" -#: gnu/packages/web.scm:6254 +#: gnu/packages/web.scm:6251 msgid "" "jo is a command-line utility to create JSON objects or\n" "arrays. It creates a JSON string on stdout from words provided as\n" "command-line arguments or read from stdin." msgstr "" -#: gnu/packages/web.scm:6313 +#: gnu/packages/web.scm:6310 msgid "" "@code{ia} is a command-line tool for using\n" "@url{archive.org} from the command-line. It also implements the\n" "internetarchive python module for programmatic access to archive.org." msgstr "" -#: gnu/packages/web.scm:6364 +#: gnu/packages/web.scm:6361 msgid "" "@code{clf} is a command line tool for searching code\n" "snippets on @url{https://commandlinefu.com}." msgstr "" -#: gnu/packages/web.scm:6402 +#: gnu/packages/web.scm:6399 msgid "" "rss-bridge generates Atom feeds for social networking\n" "websites lacking feeds. Supported websites include Facebook, Twitter,\n" "Instagram and YouTube." msgstr "" -#: gnu/packages/web.scm:6440 +#: gnu/packages/web.scm:6437 msgid "" "LinkChecker is a website validator. It checks for broken\n" "links in websites. It is recursive and multithreaded providing output in\n" @@ -22131,67 +22378,67 @@ msgid "" "file links." msgstr "" -#: gnu/packages/web.scm:6488 +#: gnu/packages/web.scm:6485 msgid "" "Castor is a graphical client for plain-text protocols written in\n" "Rust with GTK. It currently supports the Gemini, Gopher and Finger\n" "protocols." msgstr "" -#: gnu/packages/web.scm:6575 +#: gnu/packages/web.scm:6572 msgid "" "This package includes Clearsilver, the CGI kit and HTML templating\n" "system." msgstr "" -#: gnu/packages/web.scm:6594 +#: gnu/packages/web.scm:6591 msgid "" "Py-ubjson is a Python module providing an Universal Binary JSON\n" "encoder/decoder based on the draft-12 specification for UBJSON." msgstr "" -#: gnu/packages/web.scm:6689 +#: gnu/packages/web.scm:6686 msgid "" "Apache Tomcat is a free implementation of the Java\n" "Servlet, JavaServer Pages, Java Expression Language and Java WebSocket\n" "technologies." msgstr "" -#: gnu/packages/web.scm:6743 +#: gnu/packages/web.scm:6740 msgid "" "This package contains helper classes for testing the Jetty\n" "Web Server." msgstr "" -#: gnu/packages/web.scm:6802 +#: gnu/packages/web.scm:6799 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides utility classes." msgstr "" -#: gnu/packages/web.scm:6880 +#: gnu/packages/web.scm:6877 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides IO-related utility classes." msgstr "" -#: gnu/packages/web.scm:6925 +#: gnu/packages/web.scm:6922 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides HTTP-related utility classes." msgstr "" -#: gnu/packages/web.scm:6959 +#: gnu/packages/web.scm:6956 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides the JMX management." msgstr "" -#: gnu/packages/web.scm:7045 +#: gnu/packages/web.scm:7042 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -22199,7 +22446,7 @@ msgid "" "artifact." msgstr "" -#: gnu/packages/web.scm:7088 +#: gnu/packages/web.scm:7085 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -22207,7 +22454,7 @@ msgid "" "infrastructure" msgstr "" -#: gnu/packages/web.scm:7144 +#: gnu/packages/web.scm:7141 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -22215,14 +22462,14 @@ msgid "" "container." msgstr "" -#: gnu/packages/web.scm:7308 +#: gnu/packages/web.scm:7305 msgid "" "Jsoup is a Java library for working with real-world HTML. It\n" "provides a very convenient API for extracting and manipulating data, using the\n" "best of DOM, CSS, and jQuery-like methods." msgstr "" -#: gnu/packages/web.scm:7337 +#: gnu/packages/web.scm:7334 msgid "" "Signpost is the easy and intuitive solution for signing\n" "HTTP messages on the Java platform in conformance with the OAuth Core 1.0a\n" @@ -22230,7 +22477,7 @@ msgid "" "combine it with different HTTP messaging layers." msgstr "" -#: gnu/packages/web.scm:7360 +#: gnu/packages/web.scm:7357 msgid "" "Tidyp is a program that can validate your HTML, as well as\n" "modify it to be more clean and standard. tidyp does not validate HTML 5.\n" @@ -22240,14 +22487,14 @@ msgid "" "based on this library, allowing Perl programmers to easily validate HTML." msgstr "" -#: gnu/packages/web.scm:7401 +#: gnu/packages/web.scm:7398 msgid "" "@code{HTML::Tidy} is an HTML checker in a handy dandy\n" "object. It's meant as a replacement for @code{HTML::Lint}, which is written\n" "in Perl but is not nearly as capable as @code{HTML::Tidy}." msgstr "" -#: gnu/packages/web.scm:7430 +#: gnu/packages/web.scm:7427 msgid "" "Geomyidae is a server for distributed hypertext protocol Gopher. Its\n" "features include:\n" @@ -22261,14 +22508,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/web.scm:7478 +#: gnu/packages/web.scm:7475 msgid "" "Cat avatar generator is a generator of cat pictures optimised\n" "to generate random avatars, or defined avatar from a \"seed\". This is a\n" "derivation by David Revoy from the original MonsterID by Andreas Gohr." msgstr "" -#: gnu/packages/web.scm:7548 +#: gnu/packages/web.scm:7545 msgid "" "nghttp2 implements the Hypertext Transfer Protocol, version\n" "2 (@dfn{HTTP/2}).\n" @@ -22294,14 +22541,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7647 +#: gnu/packages/web.scm:7644 msgid "" "Hpcguix-web provides a web interface to the list of packages\n" "provided by Guix. The list of packages is searchable and provides\n" "instructions on how to use Guix in a shared HPC environment." msgstr "" -#: gnu/packages/web.scm:7668 +#: gnu/packages/web.scm:7665 msgid "" "HTTrack allows you to download a World Wide Web site from\n" "the Internet to a local directory, building recursively all directories,\n" @@ -22315,7 +22562,7 @@ msgid "" "HTTrack is fully configurable, and has an integrated help system." msgstr "" -#: gnu/packages/web.scm:7703 +#: gnu/packages/web.scm:7700 msgid "" "buku is a powerful bookmark manager written in Python3 and SQLite3.\n" "@command{buku} can auto-import bookmarks from your browser and present them\n" @@ -22324,7 +22571,7 @@ msgid "" "@command{bukuserver}." msgstr "" -#: gnu/packages/web.scm:7724 +#: gnu/packages/web.scm:7721 msgid "" "Anonip masks the last bits of IPv4 and IPv6 addresses in log files.\n" "That way most of the relevant information is preserved, while the IP address\n" @@ -22339,7 +22586,7 @@ msgid "" "Anonip can also be uses as a Python module in your own Python application." msgstr "" -#: gnu/packages/web.scm:7758 +#: gnu/packages/web.scm:7755 msgid "" "Poussetaches (which literally means \"push tasks\" in\n" "French) is a lightweight asynchronous task execution service that aims to\n" @@ -22351,7 +22598,7 @@ msgid "" "returned." msgstr "" -#: gnu/packages/web.scm:7783 +#: gnu/packages/web.scm:7780 msgid "" "htmlcxx is a simple non-validating CSS1 and HTML parser for\n" "C++. Although there are several other HTML parsers available, htmlcxx has some\n" @@ -22369,7 +22616,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:7827 +#: gnu/packages/web.scm:7824 msgid "" "libRocket is a C++ user interface package based on the HTML\n" "and CSS standards. libRocket uses the open standards XHTML1.0 and\n" @@ -22386,11 +22633,11 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7869 +#: gnu/packages/web.scm:7866 msgid "gmnisrv is a simple Gemini protocol server written in C." msgstr "" -#: gnu/packages/web.scm:7900 +#: gnu/packages/web.scm:7898 msgid "" "The openZIM project proposes offline storage solutions for\n" "content coming from the Web. The zimlib is the standard implementation of the\n" @@ -22422,14 +22669,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:8081 +#: gnu/packages/web.scm:8078 msgid "" "uriparser is a strictly RFC 3986 compliant URI parsing and\n" "handling library written in C89 (\"ANSI C\"). uriparser is fast and supports\n" "Unicode." msgstr "" -#: gnu/packages/web.scm:8115 +#: gnu/packages/web.scm:8112 msgid "" "Quark is an extremely small and simple HTTP GET/HEAD only\n" "web server for static content. TLS is not natively supported and should be\n" @@ -22599,7 +22846,7 @@ msgid "" "Enhancement}." msgstr "" -#: gnu/services/base.scm:276 +#: gnu/services/base.scm:279 msgid "" "Populate the @file{/etc/fstab} based on the given file\n" "system objects." @@ -22607,13 +22854,13 @@ msgstr "" "Genera el fichero @file{/etc/fstab} en base a los objetos de sistema\n" "de ficheros proporcionados." -#: gnu/services/base.scm:314 +#: gnu/services/base.scm:317 msgid "" "Take care of syncing the root file\n" "system and of remounting it read-only when the system shuts down." msgstr "" -#: gnu/services/base.scm:481 +#: gnu/services/base.scm:484 msgid "" "Provide Shepherd services to mount and unmount the given\n" "file systems, as well as corresponding @file{/etc/fstab} entries." @@ -22622,35 +22869,35 @@ msgstr "" "de ficheros proporcionados, así como genera las correspondientes\n" "entradas en @file{/etc/fstab}." -#: gnu/services/base.scm:579 +#: gnu/services/base.scm:582 msgid "" "Seed the @file{/dev/urandom} pseudo-random number\n" "generator (RNG) with the value recorded when the system was last shut\n" "down." msgstr "" -#: gnu/services/base.scm:611 +#: gnu/services/base.scm:614 msgid "" "Run the @command{rngd} random number generation daemon to\n" "supply entropy to the kernel's pool." msgstr "" -#: gnu/services/base.scm:640 +#: gnu/services/base.scm:643 msgid "Initialize the machine's host name." msgstr "" -#: gnu/services/base.scm:670 +#: gnu/services/base.scm:673 msgid "Ensure the Linux virtual terminals run in UTF-8 mode." msgstr "" -#: gnu/services/base.scm:683 +#: gnu/services/base.scm:686 msgid "" "@emph{This service is deprecated in favor of the\n" "@code{keyboard-layout} field of @code{operating-system}.} Load the given list\n" "of console keymaps with @command{loadkeys}." msgstr "" -#: gnu/services/base.scm:743 +#: gnu/services/base.scm:746 msgid "" "Install the given fonts on the specified ttys (fonts are per\n" "virtual console on GNU/Linux). The value of this service is a list of\n" @@ -22668,49 +22915,49 @@ msgid "" "@end example\n" msgstr "" -#: gnu/services/base.scm:795 +#: gnu/services/base.scm:798 msgid "" "Provide a console log-in service as specified by its\n" "configuration value, a @code{login-configuration} object." msgstr "" -#: gnu/services/base.scm:1063 +#: gnu/services/base.scm:1066 msgid "" "Provide console login using the @command{agetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1128 +#: gnu/services/base.scm:1131 msgid "" "Provide console login using the @command{mingetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1345 +#: gnu/services/base.scm:1348 msgid "" "Runs libc's @dfn{name service cache daemon} (nscd) with the\n" "given configuration---an @code{} object. @xref{Name\n" "Service Switch}, for an example." msgstr "" -#: gnu/services/base.scm:1384 +#: gnu/services/base.scm:1387 msgid "" "Run the syslog daemon, @command{syslogd}, which is\n" "responsible for logging system messages." msgstr "" -#: gnu/services/base.scm:1448 +#: gnu/services/base.scm:1451 msgid "" "Install the specified resource usage limits by populating\n" "@file{/etc/security/limits.conf} and using the @code{pam_limits}\n" "authentication module." msgstr "" -#: gnu/services/base.scm:1794 +#: gnu/services/base.scm:1804 msgid "Run the build daemon of GNU@tie{}Guix, aka. @command{guix-daemon}." msgstr "Ejecuta el daemon de construcción de GNU@tie{}Guix, también conocido como @command{guix-daemon}." -#: gnu/services/base.scm:1944 +#: gnu/services/base.scm:1961 msgid "" "Add a Shepherd service running @command{guix publish}, a\n" "command that allows you to share pre-built binaries with others over HTTP." @@ -22719,18 +22966,18 @@ msgstr "" "orden que le permite compartir binarios preconstruidos a través de\n" "HTTP." -#: gnu/services/base.scm:2150 +#: gnu/services/base.scm:2167 msgid "" "Run @command{udev}, which populates the @file{/dev}\n" "directory dynamically. Get extra rules from the packages listed in the\n" "@code{rules} field of its value, @code{udev-configuration} object." msgstr "" -#: gnu/services/base.scm:2267 +#: gnu/services/base.scm:2284 msgid "Turn on the virtual memory swap area." msgstr "" -#: gnu/services/base.scm:2309 +#: gnu/services/base.scm:2326 msgid "" "Run GPM, the general-purpose mouse daemon, with the given\n" "command-line options. GPM allows users to use the mouse in the console,\n" @@ -22738,33 +22985,33 @@ msgid "" "@code{ps2} protocol, which works for both USB and PS/2 mice." msgstr "" -#: gnu/services/base.scm:2382 +#: gnu/services/base.scm:2399 msgid "" "Start the @command{kmscon} virtual terminal emulator for the\n" "Linux @dfn{kernel mode setting} (KMS)." msgstr "" -#: gnu/services/base.scm:2403 +#: gnu/services/base.scm:2416 #, scheme-format msgid "address '~a' lacks a network mask" msgstr "" -#: gnu/services/base.scm:2409 +#: gnu/services/base.scm:2422 #, scheme-format msgid "Write, say, @samp{\"~a/24\"} for a 24-bit network mask." msgstr "" -#: gnu/services/base.scm:2489 +#: gnu/services/base.scm:2502 #, scheme-format msgid "network links are currently ignored on GNU/Hurd~%" msgstr "" -#: gnu/services/base.scm:2514 +#: gnu/services/base.scm:2527 #, scheme-format msgid "ignoring network route for '~a'~%" msgstr "" -#: gnu/services/base.scm:2698 +#: gnu/services/base.scm:2711 msgid "" "Turn up the specified network interfaces upon startup,\n" "with the given IP address, gateway, netmask, and so on. The value for\n" @@ -22977,6 +23224,14 @@ msgid "" "on the web." msgstr "" +#, fuzzy +#~ msgid "" +#~ "This package provides support for the French language for the\n" +#~ "babel multilingual system." +#~ msgstr "" +#~ "Este paquete proporciona un diccionario para la biblioteca de\n" +#~ "comprobación ortográfica Hunspell." + #, fuzzy #~ msgid "This package provides a URL fetch plugin for Nushell." #~ msgstr "Este paquete proporciona un diccionario para el comprobador ortográfico GNU Aspell." @@ -24480,10 +24735,6 @@ msgstr "" #~ msgid "GNOME Extra Themes" #~ msgstr "Tema de iconos de GNOME" -#, fuzzy -#~ msgid "Note-taking application for the GNOME desktop" -#~ msgstr "Iconos para el escritorio GNOME." - #, fuzzy #~ msgid "Simple IRC Client" #~ msgstr "Cliente IRC gráfico" @@ -25129,10 +25380,6 @@ msgstr "" #~ msgid "Simple network namespace handling for Go" #~ msgstr "Manipular fecha simple" -#, fuzzy -#~ msgid "SCTP library for the Go programming language" -#~ msgstr "Manual de referencia para el lenguaje de programación C" - #~ msgid "Visualize curl statistics" #~ msgstr "Visualizar estadísticas curl" @@ -28375,10 +28622,6 @@ msgstr "" #~ msgid "Implementation of the Adler32 rolling hash algorithm" #~ msgstr "Implementación del algoritmo de compresión Brotli" -#, fuzzy -#~ msgid "This package provides an atomically swappable Arc." -#~ msgstr "Este paquete proporciona un diccionario para el comprobador ortográfico GNU Aspell." - #, fuzzy #~ msgid "Test CLI Applications" #~ msgstr "Aplicación de hojas de cálculo" @@ -28538,12 +28781,6 @@ msgstr "" #~ msgid "Crate internal to Diesel" #~ msgstr "Caché de interfaz para Perl" -#, fuzzy -#~ msgid "This package provides a Rust text diffing and assertion library." -#~ msgstr "" -#~ "Este paquete proporciona un diccionario para la biblioteca de\n" -#~ "comprobación ortográfica Hunspell." - #, fuzzy #~ msgid "Traits for cryptographic hash functions" #~ msgstr "Biblioteca C para funcionalidad criptográfica de bajo nivel" @@ -29338,10 +29575,6 @@ msgstr "" #~ msgid "Wrapper for SQLite" #~ msgstr "Recubridor para LaTeX y similares" -#, fuzzy -#~ msgid "This prackage provides a wrapper for SQLite." -#~ msgstr "Este paquete proporciona un diccionario para el comprobador ortográfico GNU Aspell." - #, fuzzy #~ msgid "Rust implementation of the Argon2 password hashing function" #~ msgstr "Implementación del lenguaje de programación Perl" @@ -30581,10 +30814,6 @@ msgstr "" #~ msgid "Alternative M-x interface for Emacs" #~ msgstr "Interfaz alternativo para Fichero::Encontrar" -#, fuzzy -#~ msgid "This package provides an Emacs interface for Docker." -#~ msgstr "Este módulo proporciona un interfaz Perlish para Amazon S3." - #, fuzzy #~ msgid "Libyaml bindings for Emacs" #~ msgstr "Enlazando GLib para libusb1" diff --git a/po/packages/fr.po b/po/packages/fr.po index 8b7fcff658..a2a063aae7 100644 --- a/po/packages/fr.po +++ b/po/packages/fr.po @@ -3,22 +3,23 @@ # This file is distributed under the same license as the guix package. # Rémy Chevalier , 2014. # Julien Lepiller , 2018, 2020. -# Julien Lepiller , 2021. +# Julien Lepiller , 2021, 2022. # Nicolas Goaziou , 2021. +# Aurelien Coussat , 2022. msgid "" msgstr "" "Project-Id-Version: guix-packages 1.2.0-pre3\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" -"PO-Revision-Date: 2021-12-02 20:16+0000\n" -"Last-Translator: Julien Lepiller \n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" +"PO-Revision-Date: 2022-01-15 13:16+0000\n" +"Last-Translator: Aurelien Coussat \n" "Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.9.1\n" +"X-Generator: Weblate 4.10.1\n" "X-Bugs: Report translation errors to the Language-Team address.\n" #. TRANSLATORS: Dear translator, We would like to inform you that package @@ -50,11 +51,9 @@ msgstr "" #: gnu/packages/aspell.scm:137 msgid "This package provides a dictionary for the GNU Aspell spell checker." -msgstr "" -"Ce paquet fournit un dictionnaire pour le correcteur orthographique\n" -"GNU Aspell." +msgstr "Ce paquet fournit un dictionnaire pour le correcteur orthographique GNU Aspell." -#: gnu/packages/aspell.scm:445 gnu/packages/libreoffice.scm:845 +#: gnu/packages/aspell.scm:450 gnu/packages/libreoffice.scm:845 #: gnu/packages/libreoffice.scm:918 msgid "" "This package provides a dictionary for the Hunspell spell-checking\n" @@ -63,7 +62,7 @@ msgstr "" "Ce paquet fournit un dictionnaire pour le correcteur orthographique\n" "Hunspell." -#: gnu/packages/aspell.scm:525 +#: gnu/packages/aspell.scm:530 msgid "" "Ispell is an interactive spell-checking tool supporting many\n" "European languages." @@ -71,7 +70,7 @@ msgstr "" "Ispell est un correcteur orthographique interactif prenant en charge de nombreuses\n" "langues européennes." -#: gnu/packages/audio.scm:197 +#: gnu/packages/audio.scm:198 msgid "" "OpenSLES is a royalty-free, cross-platform,\n" "hardware-accelerated audio API tuned for embedded systems. It provides a\n" @@ -89,7 +88,7 @@ msgstr "" "en réduisant l'effort d'implémentation et en promouvant le marché moderne de\n" "l'audio." -#: gnu/packages/audio.scm:233 +#: gnu/packages/audio.scm:234 msgid "" "WildMIDI is a simple software midi player which has a core\n" "softsynth library that can be use with other applications." @@ -97,7 +96,7 @@ msgstr "" "WildMIDI est un lecteur midi logiciel simple qui contient une\n" "bibliothèque softsynth qui peut être réutilisée par d'autres applications." -#: gnu/packages/audio.scm:257 +#: gnu/packages/audio.scm:258 msgid "" "WebRTC-Audio-Processing library based on Google's\n" "implementation of WebRTC." @@ -105,7 +104,7 @@ msgstr "" "Bibliotèhque WebRTC-traitement-audio basée sur l'implementation\n" "de WebRTC de Google." -#: gnu/packages/audio.scm:277 +#: gnu/packages/audio.scm:278 msgid "" "VO-AACENC is the VisualOn implementation of Advanced Audio\n" "Coding (AAC) encoder." @@ -113,7 +112,7 @@ msgstr "" "VO-AACENC est une implémentation de VisualOn de l'encodeur\n" "Advanced Audio Coding (AAC)." -#: gnu/packages/audio.scm:306 +#: gnu/packages/audio.scm:307 msgid "" "TinyALSA is a small library to interface with ALSA in the\n" "Linux kernel." @@ -121,7 +120,7 @@ msgstr "" "TinyALSA est une petite bibliothèque pour s'interfacer avec\n" "ALSA dans le noyau Linux." -#: gnu/packages/audio.scm:329 +#: gnu/packages/audio.scm:330 msgid "" "Game-music-emu is a collection of video game music file emulators that\n" "support the following formats and systems:\n" @@ -147,7 +146,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/audio.scm:393 +#: gnu/packages/audio.scm:394 msgid "" "LibOpenMPT is a cross-platform C++ and C module playback\n" "library. It is based on the player code of the Open ModPlug Tracker project." @@ -155,7 +154,7 @@ msgstr "" "LibOpenMPT est une bibliothèque de module de lecture multiplateforme\n" "en C++ et en C. Elle est basée sur le code du lecteur du projet Open ModPlug Tracker." -#: gnu/packages/audio.scm:424 +#: gnu/packages/audio.scm:425 msgid "" "LibOFA is an audio fingerprint library, created and provided\n" "by MusicIP." @@ -163,31 +162,31 @@ msgstr "" "LibOFA est une bibliothèque d'empreinte audio, crée et fournie\n" "par MusicIP." -#: gnu/packages/audio.scm:445 +#: gnu/packages/audio.scm:446 msgid "FAAC is an MPEG-4 and MPEG-2 AAC encoder." msgstr "" -#: gnu/packages/audio.scm:474 +#: gnu/packages/audio.scm:475 msgid "" "LibTiMidity is a MIDI to WAVE converter library that uses\n" "Gravis Ultrasound-compatible patch files to generate digital audio data from\n" "General MIDI files." msgstr "" -#: gnu/packages/audio.scm:499 +#: gnu/packages/audio.scm:500 msgid "" "VO-AMR is a library of VisualOn implementation of\n" "Adaptive Multi Rate Narrowband and Wideband (AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:518 +#: gnu/packages/audio.scm:519 msgid "" "OpenCore-AMR is a library of OpenCORE Framework\n" "implementation of Adaptive Multi Rate Narrowband and Wideband\n" "(AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:551 +#: gnu/packages/audio.scm:552 msgid "" "AlsaModularSynth is a digital implementation of a classical analog\n" "modular synthesizer system. It uses virtual control voltages to control the\n" @@ -201,7 +200,7 @@ msgstr "" "fréquence, par exemple du VCO (Oscillateur commandé en tension) ou du VCF\n" "(Filtre contrôlé en tension) suivent la convention de 1 V / Octave." -#: gnu/packages/audio.scm:588 +#: gnu/packages/audio.scm:589 msgid "" "aubio is a tool designed for the extraction of annotations from audio\n" "signals. Its features include segmenting a sound file before each of its\n" @@ -213,7 +212,7 @@ msgstr "" "chaque attaque, à la détection de ton, en passant par l'écoute du rythme\n" "et la production de fichiers MIDI à partir d'audio en direct." -#: gnu/packages/audio.scm:719 +#: gnu/packages/audio.scm:720 msgid "" "Ardour is a multi-channel digital audio workstation, allowing users to\n" "record, edit, mix and master audio and MIDI projects. It is targeted at audio\n" @@ -224,7 +223,7 @@ msgstr "" "conçu pour les ingénieurs du son, les musiciens, les éditeurs de bandes son et\n" "les compositeurs." -#: gnu/packages/audio.scm:833 +#: gnu/packages/audio.scm:853 msgid "" "Audacity is a multi-track audio editor designed for recording, playing\n" "and editing digital audio. It features digital effects and spectrum analysis\n" @@ -234,7 +233,7 @@ msgstr "" "et modifier des sons numériques. Il propose des effets numériques et des\n" "outils d'analyse spectrale." -#: gnu/packages/audio.scm:889 +#: gnu/packages/audio.scm:909 msgid "" "This is an open-source version of SGI's audiofile library.\n" "It provides a uniform programming interface for processing of audio data to\n" @@ -245,14 +244,14 @@ msgid "" "G.711 mu-law and A-law." msgstr "" -#: gnu/packages/audio.scm:931 +#: gnu/packages/audio.scm:951 msgid "" "Autotalent is a LADSPA plugin for real-time pitch-correction. Among its\n" "controls are allowable notes, strength of correction, LFO for vibrato and\n" "formant warp." msgstr "" -#: gnu/packages/audio.scm:972 +#: gnu/packages/audio.scm:992 msgid "" "AZR-3 is a port of the free VST plugin AZR-3. It is a tonewheel organ\n" "with drawbars, distortion and rotating speakers. The organ has three\n" @@ -261,7 +260,7 @@ msgid "" "plugins are provided." msgstr "" -#: gnu/packages/audio.scm:1011 +#: gnu/packages/audio.scm:1031 msgid "" "Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments.\n" "The suite contains lots of effects (delay, modulation, signal processing,\n" @@ -270,31 +269,31 @@ msgid "" "tools (analyzer, mono/stereo tools, crossovers)." msgstr "" -#: gnu/packages/audio.scm:1053 +#: gnu/packages/audio.scm:1073 msgid "" "LV2 port of CAPS, a collection of audio plugins comprising basic virtual\n" "guitar amplification and a small range of classic effects, signal processors and\n" "generators of mostly elementary and occasionally exotic nature." msgstr "" -#: gnu/packages/audio.scm:1094 +#: gnu/packages/audio.scm:1114 msgid "" "The infamous plugins are a collection of LV2 audio plugins for live\n" "performances. The plugins include a cellular automaton synthesizer, an\n" "envelope follower, distortion effects, tape effects and more." msgstr "" -#: gnu/packages/audio.scm:1129 +#: gnu/packages/audio.scm:1149 msgid "" "Snapcast is a multi-room client-server audio player. Clients are time\n" "synchronized with the server to play synced audio." msgstr "" -#: gnu/packages/audio.scm:1159 +#: gnu/packages/audio.scm:1179 msgid "This package provides Steve Harris's LADSPA plugins." msgstr "Ce paquet fournit le greffon LADSPA de Steve Harris." -#: gnu/packages/audio.scm:1199 +#: gnu/packages/audio.scm:1219 msgid "" "Swh-plugins-lv2 is a collection of audio plugins in LV2 format. Plugin\n" "classes include: dynamics (compressor, limiter), time (delay, chorus,\n" @@ -302,13 +301,13 @@ msgid "" "emulation (valve, tape), bit fiddling (decimator, pointer-cast), etc." msgstr "" -#: gnu/packages/audio.scm:1233 +#: gnu/packages/audio.scm:1253 msgid "" "@code{libdjinterop} is a C++ library that allows access to database\n" "formats used to store information about DJ record libraries." msgstr "" -#: gnu/packages/audio.scm:1295 gnu/packages/audio.scm:1326 +#: gnu/packages/audio.scm:1315 gnu/packages/audio.scm:1346 msgid "" "Tao is a software package for sound synthesis using physical\n" "models. It provides a virtual acoustic material constructed from masses and\n" @@ -318,13 +317,13 @@ msgid "" "object library." msgstr "" -#: gnu/packages/audio.scm:1361 +#: gnu/packages/audio.scm:1381 msgid "" "Csound is a user-programmable and user-extensible sound processing\n" "language and software synthesizer." msgstr "" -#: gnu/packages/audio.scm:1388 +#: gnu/packages/audio.scm:1408 msgid "" "midicomp can manipulate SMF (Standard MIDI File) files. It can both\n" " read and write SMF files in 0 or format 1 and also read and write its own\n" @@ -333,20 +332,20 @@ msgid "" " language, and recompiled back into a binary SMF file." msgstr "" -#: gnu/packages/audio.scm:1435 +#: gnu/packages/audio.scm:1455 msgid "" "clalsadrv is a C++ wrapper around the ALSA API simplifying access to\n" "ALSA PCM devices." msgstr "" -#: gnu/packages/audio.scm:1474 +#: gnu/packages/audio.scm:1494 msgid "" "The AMB plugins are a set of LADSPA ambisonics plugins, mainly to be\n" "used within Ardour. Features include: mono and stereo to B-format panning,\n" "horizontal rotator, square, hexagon and cube decoders." msgstr "" -#: gnu/packages/audio.scm:1511 +#: gnu/packages/audio.scm:1531 msgid "" "This package provides various LADSPA plugins. @code{cs_chorus} and\n" "@code{cs_phaser} provide chorus and phaser effects, respectively;\n" @@ -356,13 +355,13 @@ msgid "" "the non-linear circuit elements of their original analog counterparts." msgstr "" -#: gnu/packages/audio.scm:1551 +#: gnu/packages/audio.scm:1571 msgid "" "This package provides a stereo reverb LADSPA plugin based on the\n" "well-known greverb." msgstr "" -#: gnu/packages/audio.scm:1587 +#: gnu/packages/audio.scm:1607 msgid "" "This package provides a LADSPA plugin for a four-band parametric\n" "equalizer. Each section has an active/bypass switch, frequency, bandwidth and\n" @@ -377,7 +376,7 @@ msgid "" "for stage use." msgstr "" -#: gnu/packages/audio.scm:1632 +#: gnu/packages/audio.scm:1652 msgid "" "This package provides a LADSPA plugin to manipulate the stereo width of\n" "audio signals." @@ -385,7 +384,7 @@ msgstr "" "Ce paquet fournit des un greffon LADSPA pour manipuler la profondeur\n" "des signaux audio." -#: gnu/packages/audio.scm:1669 +#: gnu/packages/audio.scm:1689 msgid "" "The @code{blvco} LADSPA plugin provides three anti-aliased oscillators:\n" "\n" @@ -400,7 +399,7 @@ msgid "" "output of analog synthesizers such as the Moog Voyager." msgstr "" -#: gnu/packages/audio.scm:1713 +#: gnu/packages/audio.scm:1733 msgid "" "This package provides a LADSPA plugin for a Wah effect with envelope\n" "follower." @@ -408,11 +407,11 @@ msgstr "" "Ce paquet fournit un greffon LADSPA pour l'effet Wah avec un suiveur\n" "d'enveloppe." -#: gnu/packages/audio.scm:1749 +#: gnu/packages/audio.scm:1769 msgid "This package provides a LADSPA plugin for a stereo reverb effect." msgstr "Ce paquet fournit un greffon LADSPA pour l'effet stereo reverb." -#: gnu/packages/audio.scm:1791 +#: gnu/packages/audio.scm:1811 msgid "" "FluidSynth is a real-time software synthesizer based on the SoundFont 2\n" "specifications. FluidSynth reads and handles MIDI events from the MIDI input\n" @@ -420,21 +419,21 @@ msgid "" "also play midifiles using a Soundfont." msgstr "" -#: gnu/packages/audio.scm:1814 +#: gnu/packages/audio.scm:1834 msgid "FAAD2 is an MPEG-4 and MPEG-2 AAC decoder supporting LC, Main, LTP, SBR, -PS, and DAB+." msgstr "" -#: gnu/packages/audio.scm:1855 +#: gnu/packages/audio.scm:1875 msgid "Faust is a programming language for realtime audio signal processing." msgstr "" -#: gnu/packages/audio.scm:1919 +#: gnu/packages/audio.scm:1939 msgid "" "FreePats is a project to create a free and open set of GUS compatible\n" "patches that can be used with softsynths such as Timidity and WildMidi." msgstr "" -#: gnu/packages/audio.scm:1972 +#: gnu/packages/audio.scm:1992 msgid "" "Guitarix is a virtual guitar amplifier running JACK.\n" "Guitarix takes the signal from your guitar as a mono-signal from your sound\n" @@ -445,7 +444,7 @@ msgid "" "auto-wah." msgstr "" -#: gnu/packages/audio.scm:2028 +#: gnu/packages/audio.scm:2048 msgid "" "Rakarrack is a richly featured multi-effects processor emulating a\n" "guitar effects pedalboard. Effects include compressor, expander, noise gate,\n" @@ -457,14 +456,14 @@ msgid "" "well suited to all musical instruments and vocals." msgstr "" -#: gnu/packages/audio.scm:2084 +#: gnu/packages/audio.scm:2104 msgid "" "IR is a low-latency, real-time, high performance signal convolver\n" "especially for creating reverb effects. It supports impulse responses with 1,\n" "2 or 4 channels, in any soundfile format supported by libsndfile." msgstr "" -#: gnu/packages/audio.scm:2124 +#: gnu/packages/audio.scm:2144 msgid "" "JACK is a low-latency audio server. It can connect a number of\n" "different applications to an audio device, as well as allowing them to share\n" @@ -474,20 +473,20 @@ msgid "" "synchronous execution of all clients, and low latency operation." msgstr "" -#: gnu/packages/audio.scm:2220 +#: gnu/packages/audio.scm:2240 msgid "" "Jalv is a simple but fully featured LV2 host for JACK. It runs LV2\n" "plugins and exposes their ports as JACK ports, essentially making any LV2\n" "plugin function as a JACK application." msgstr "" -#: gnu/packages/audio.scm:2266 +#: gnu/packages/audio.scm:2286 msgid "" "LADSPA is a standard that allows software audio processors and effects\n" "to be plugged into a wide range of audio synthesis and recording packages." msgstr "" -#: gnu/packages/audio.scm:2318 +#: gnu/packages/audio.scm:2338 msgid "" "LASH is a session management system for audio applications. It allows\n" "you to save and restore audio sessions consisting of multiple interconneced\n" @@ -495,7 +494,7 @@ msgid "" "connections between them." msgstr "" -#: gnu/packages/audio.scm:2341 +#: gnu/packages/audio.scm:2361 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is\n" "designed to improve headphone listening of stereo audio records. Recommended\n" @@ -503,7 +502,7 @@ msgid "" "essential distortions." msgstr "" -#: gnu/packages/audio.scm:2364 +#: gnu/packages/audio.scm:2384 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and\n" "plugins is designed to improve headphone listening of stereo audio records.\n" @@ -512,13 +511,13 @@ msgid "" "with applications that support them (e.g. PulseAudio)." msgstr "" -#: gnu/packages/audio.scm:2390 +#: gnu/packages/audio.scm:2410 msgid "" "liblo is a lightweight library that provides an easy to use\n" "implementation of the Open Sound Control (@dfn{OSC}) protocol." msgstr "" -#: gnu/packages/audio.scm:2426 +#: gnu/packages/audio.scm:2446 msgid "" "RtAudio is a set of C++ classes that provides a common API for real-time\n" "audio input/output. It was designed with the following objectives:\n" @@ -537,7 +536,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/audio.scm:2462 +#: gnu/packages/audio.scm:2482 msgid "" "This package provides bindings for PortAudio v19, the\n" "cross-platform audio input/output stream library." @@ -545,7 +544,7 @@ msgstr "" "Ce paquet fournit les liaisons Python pour PortAudio v19, la\n" "bibliothèque de flux audio d'entrée/sortie multiplateforme." -#: gnu/packages/audio.scm:2489 +#: gnu/packages/audio.scm:2509 msgid "" "Pyliblo is a Python wrapper for the liblo Open Sound Control (OSC)\n" "library. It supports almost the complete functionality of liblo, allowing you\n" @@ -553,7 +552,7 @@ msgid "" "included are the command line utilities @code{send_osc} and @code{dump_osc}." msgstr "" -#: gnu/packages/audio.scm:2526 +#: gnu/packages/audio.scm:2546 msgid "" "This package provides python bindings for libsndfile based on\n" "CFFI and NumPy." @@ -561,7 +560,7 @@ msgstr "" "Ce paquet fournit les liaisons Python pour libsndfile, basé sur\n" "CFFI et NumPy." -#: gnu/packages/audio.scm:2544 +#: gnu/packages/audio.scm:2564 msgid "" "This package provides a python API to read and write MIDI\n" "files." @@ -569,7 +568,7 @@ msgstr "" "Ce paquet fournit une API python pour lire et écrire des\n" "fichiers MIDI." -#: gnu/packages/audio.scm:2581 +#: gnu/packages/audio.scm:2601 msgid "" "@command{audio-to-midi} converts audio files to multichannel\n" "MIDI files. It accomplishes this by performing FFTs on all channels of the\n" @@ -579,14 +578,14 @@ msgid "" "frequencies. This data is then formatted to MIDI and written to disk." msgstr "" -#: gnu/packages/audio.scm:2624 +#: gnu/packages/audio.scm:2644 msgid "" "Lilv is a C library to make the use of LV2 plugins as simple as possible\n" "for applications. Lilv is the successor to SLV2, rewritten to be\n" "significantly faster and have minimal dependencies." msgstr "" -#: gnu/packages/audio.scm:2652 +#: gnu/packages/audio.scm:2672 msgid "" "LV2 is an open specification for audio plugins and host applications.\n" "At its core, LV2 is a simple stable interface, accompanied by extensions which\n" @@ -594,22 +593,22 @@ msgid "" "software." msgstr "" -#: gnu/packages/audio.scm:2688 +#: gnu/packages/audio.scm:2708 msgid "An LV2 port of the mda Piano VSTi." msgstr "Un port LV2 du VSTi mda Piano." -#: gnu/packages/audio.scm:2702 +#: gnu/packages/audio.scm:2722 msgid "An LV2 port of the mda EPiano VSTi." msgstr "Un port LV2 du VSTi mda EPiano." -#: gnu/packages/audio.scm:2732 +#: gnu/packages/audio.scm:2752 msgid "" "The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and\n" "extensions into easy to use C++ classes. It is the successor of\n" "lv2-c++-tools." msgstr "" -#: gnu/packages/audio.scm:2774 +#: gnu/packages/audio.scm:2794 msgid "" "OpenAL provides capabilities for playing audio in a virtual 3D\n" "environment. Distance attenuation, doppler shift, and directional sound\n" @@ -619,36 +618,36 @@ msgid "" "buffers, and audio capture." msgstr "" -#: gnu/packages/audio.scm:2805 +#: gnu/packages/audio.scm:2825 msgid "freealut is the OpenAL Utility Toolkit." msgstr "" -#: gnu/packages/audio.scm:2837 +#: gnu/packages/audio.scm:2857 msgid "" "Patchage is a modular patch bay for audio and MIDI systems based on JACK\n" "and ALSA." msgstr "" -#: gnu/packages/audio.scm:2862 +#: gnu/packages/audio.scm:2882 msgid "" "The Portable C Audio Library (pcaudiolib) provides a C@tie{}API to\n" "different audio devices such as ALSA or PulseAudio." msgstr "" -#: gnu/packages/audio.scm:2889 +#: gnu/packages/audio.scm:2909 msgid "" "Control a Jack server. Allows you to plug various sources\n" "into various outputs and to start, stop and configure jackd" msgstr "" -#: gnu/packages/audio.scm:2921 +#: gnu/packages/audio.scm:2941 msgid "" "QJackRcd is a simple graphical stereo recorder for JACK\n" "supporting silence processing for automatic pause, file splitting, and\n" "background file post-processing." msgstr "" -#: gnu/packages/audio.scm:3029 +#: gnu/packages/audio.scm:3049 msgid "" "SuperCollider is a synthesis engine (@code{scsynth} or\n" "@code{supernova}) and programming language (@code{sclang}). It can be used\n" @@ -660,17 +659,17 @@ msgid "" "using Guix System." msgstr "" -#: gnu/packages/audio.scm:3057 +#: gnu/packages/audio.scm:3077 msgid "This package provides libshout plus IDJC extensions." msgstr "Ce paquet fournit libshout avec des extensions IDJC." -#: gnu/packages/audio.scm:3083 +#: gnu/packages/audio.scm:3103 msgid "" "Raul (Real-time Audio Utility Library) is a C++ utility library primarily\n" "aimed at audio/musical applications." msgstr "" -#: gnu/packages/audio.scm:3119 +#: gnu/packages/audio.scm:3139 msgid "" "This package contains the @command{resample} and\n" "@command{windowfilter} command line utilities. The @command{resample} command\n" @@ -679,26 +678,26 @@ msgid "" "filters using the so-called @emph{window method}." msgstr "" -#: gnu/packages/audio.scm:3160 +#: gnu/packages/audio.scm:3180 msgid "" "Rubber Band is a library and utility program that permits changing the\n" "tempo and pitch of an audio recording independently of one another." msgstr "" -#: gnu/packages/audio.scm:3184 +#: gnu/packages/audio.scm:3204 msgid "" "RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut, and API specific\n" "classes) that provide a common cross-platform API for realtime MIDI\n" "input/output." msgstr "" -#: gnu/packages/audio.scm:3210 +#: gnu/packages/audio.scm:3230 msgid "" "Sratom is a library for serialising LV2 atoms to/from RDF, particularly\n" "the Turtle syntax." msgstr "" -#: gnu/packages/audio.scm:3238 +#: gnu/packages/audio.scm:3258 msgid "" "Suil is a lightweight C library for loading and wrapping LV2 plugin UIs.\n" "\n" @@ -710,13 +709,13 @@ msgid "" "Suil currently supports every combination of Gtk, Qt, and X11." msgstr "" -#: gnu/packages/audio.scm:3270 +#: gnu/packages/audio.scm:3290 msgid "" "@code{libebur128} is a C library that implements the EBU R 128 standard\n" "for loudness normalisation." msgstr "" -#: gnu/packages/audio.scm:3324 +#: gnu/packages/audio.scm:3344 msgid "" "TiMidity++ is a software synthesizer. It can play MIDI files by\n" "converting them into PCM waveform data; give it a MIDI data along with digital\n" @@ -725,33 +724,33 @@ msgid "" "disks as various audio file formats." msgstr "" -#: gnu/packages/audio.scm:3364 +#: gnu/packages/audio.scm:3384 msgid "" "Vamp is an audio processing plugin system for plugins that extract\n" "descriptive information from audio data — typically referred to as audio\n" "analysis plugins or audio feature extraction plugins." msgstr "" -#: gnu/packages/audio.scm:3408 +#: gnu/packages/audio.scm:3428 msgid "" "SBSMS (Subband Sinusoidal Modeling Synthesis) is software for time\n" "stretching and pitch scaling of audio. This package contains the library." msgstr "" -#: gnu/packages/audio.scm:3435 +#: gnu/packages/audio.scm:3455 msgid "" "@code{libkeyfinder} is a small C++11 library for estimating the musical\n" "key of digital audio." msgstr "" -#: gnu/packages/audio.scm:3465 +#: gnu/packages/audio.scm:3485 msgid "" "WavPack is an audio compression format with lossless, lossy and hybrid\n" "compression modes. This package contains command-line programs and library to\n" "encode and decode wavpack files." msgstr "" -#: gnu/packages/audio.scm:3486 +#: gnu/packages/audio.scm:3506 msgid "" "Libmodplug renders mod music files as raw audio data, for playing or\n" "conversion. mod, .s3m, .it, .xm, and a number of lesser-known formats are\n" @@ -759,21 +758,21 @@ msgid "" "surround and reverb." msgstr "" -#: gnu/packages/audio.scm:3507 +#: gnu/packages/audio.scm:3527 msgid "" "Libxmp is a library that renders module files to PCM data. It supports\n" "over 90 mainstream and obscure module formats including Protracker (MOD),\n" "Scream Tracker 3 (S3M), Fast Tracker II (XM), and Impulse Tracker (IT)." msgstr "" -#: gnu/packages/audio.scm:3531 +#: gnu/packages/audio.scm:3551 msgid "" "Xmp is a portable module player that plays over 90 mainstream and\n" "obscure module formats, including Protracker MOD, Fasttracker II XM, Scream\n" "Tracker 3 S3M and Impulse Tracker IT files." msgstr "" -#: gnu/packages/audio.scm:3556 +#: gnu/packages/audio.scm:3576 msgid "" "SoundTouch is an audio processing library for changing the tempo, pitch\n" "and playback rates of audio streams or audio files. It is intended for\n" @@ -781,7 +780,7 @@ msgid "" "control functionality, or just for playing around with the sound effects." msgstr "" -#: gnu/packages/audio.scm:3595 +#: gnu/packages/audio.scm:3615 msgid "" "SoX (Sound eXchange) is a command line utility that can convert\n" "various formats of computer audio files to other formats. It can also\n" @@ -789,60 +788,60 @@ msgid "" "can play and record audio files." msgstr "" -#: gnu/packages/audio.scm:3620 +#: gnu/packages/audio.scm:3640 msgid "" "The SoX Resampler library (libsoxr) performs one-dimensional sample-rate\n" "conversion. It may be used, for example, to resample PCM-encoded audio." msgstr "" -#: gnu/packages/audio.scm:3643 +#: gnu/packages/audio.scm:3663 msgid "" "TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder based on\n" "tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code and\n" "portions of LAME." msgstr "" -#: gnu/packages/audio.scm:3699 +#: gnu/packages/audio.scm:3719 msgid "" "PortAudio is a portable C/C++ audio I/O library providing a simple API\n" "to record and/or play sound using a callback function or a blocking read/write\n" "interface." msgstr "" -#: gnu/packages/audio.scm:3728 +#: gnu/packages/audio.scm:3748 msgid "" "Qsynth is a GUI front-end application for the FluidSynth SoundFont\n" "synthesizer written in C++." msgstr "" -#: gnu/packages/audio.scm:3767 +#: gnu/packages/audio.scm:3787 msgid "" "RSound allows you to send audio from an application and transfer it\n" "directly to a different computer on your LAN network. It is an audio daemon\n" "with a much different focus than most other audio daemons." msgstr "" -#: gnu/packages/audio.scm:3797 +#: gnu/packages/audio.scm:3817 msgid "" "XJackFreak is an audio analysis and equalizing tool for the Jack Audio\n" "Connection Kit. It can display the FFT of any input, modify it and output the\n" "result." msgstr "" -#: gnu/packages/audio.scm:3849 +#: gnu/packages/audio.scm:3869 msgid "" "Zita convolver is a C++ library providing a real-time convolution\n" "engine." msgstr "" -#: gnu/packages/audio.scm:3901 +#: gnu/packages/audio.scm:3921 msgid "" "Libzita-resampler is a C++ library for resampling audio signals. It is\n" "designed to be used within a real-time processing context, to be fast, and to\n" "provide high-quality sample rate conversion." msgstr "" -#: gnu/packages/audio.scm:3947 +#: gnu/packages/audio.scm:3967 msgid "" "Zita-alsa-pcmi is a C++ wrapper around the ALSA API. It provides easy\n" "access to ALSA PCM devices, taking care of the many functions required to\n" @@ -850,7 +849,7 @@ msgid "" "point audio data." msgstr "" -#: gnu/packages/audio.scm:3971 +#: gnu/packages/audio.scm:3991 msgid "" "Cuetools is a set of programs that are useful for manipulating\n" "and using CUE sheet (cue) files and Table of Contents (toc) files. CUE and TOC\n" @@ -858,14 +857,14 @@ msgid "" "machine-readable ASCII format." msgstr "" -#: gnu/packages/audio.scm:4000 +#: gnu/packages/audio.scm:4020 msgid "" "mp3guessenc is a command line utility that tries to detect the\n" "encoder used for an MPEG Layer III (MP3) file, as well as scan any MPEG audio\n" "file (any layer) and print a lot of useful information." msgstr "" -#: gnu/packages/audio.scm:4021 +#: gnu/packages/audio.scm:4041 msgid "" "shntool is a multi-purpose WAVE data processing and reporting\n" "utility. File formats are abstracted from its core, so it can process any file\n" @@ -874,46 +873,46 @@ msgid "" "use them split WAVE data into multiple files." msgstr "" -#: gnu/packages/audio.scm:4061 +#: gnu/packages/audio.scm:4081 msgid "" "Dcadec is a DTS Coherent Acoustics surround sound decoder\n" "with support for HD extensions." msgstr "" -#: gnu/packages/audio.scm:4098 +#: gnu/packages/audio.scm:4118 msgid "" "BS1770GAIN is a loudness scanner compliant with ITU-R BS.1770 and its\n" "flavors EBU R128, ATSC A/85, and ReplayGain 2.0. It helps normalizing the\n" "loudness of audio and video files to the same level." msgstr "" -#: gnu/packages/audio.scm:4130 +#: gnu/packages/audio.scm:4150 msgid "" "An easy to use audio filtering library made from webrtc\n" "code, used in @code{libtoxcore}." msgstr "" -#: gnu/packages/audio.scm:4183 +#: gnu/packages/audio.scm:4203 msgid "" "This C library provides an encoder and a decoder for the GSM\n" "06.10 RPE-LTP lossy speech compression algorithm." msgstr "" -#: gnu/packages/audio.scm:4206 +#: gnu/packages/audio.scm:4226 msgid "" "This package contains wrappers for accessing the ALSA API from Python.\n" "It is currently fairly complete for PCM devices, and has some support for\n" "mixers." msgstr "" -#: gnu/packages/audio.scm:4230 +#: gnu/packages/audio.scm:4250 msgid "" "This package provides an encoder for the LDAC\n" "high-resolution Bluetooth audio streaming codec for streaming at up to 990\n" "kbps at 24 bit/96 kHz." msgstr "" -#: gnu/packages/audio.scm:4274 +#: gnu/packages/audio.scm:4294 msgid "" "This project is a rebirth of a direct integration between\n" "Bluez and ALSA. Since Bluez >= 5, the built-in integration has been removed\n" @@ -926,14 +925,14 @@ msgid "" "on the ALSA software PCM plugin." msgstr "" -#: gnu/packages/audio.scm:4340 +#: gnu/packages/audio.scm:4360 msgid "" "Snd is a sound editor modelled loosely after Emacs. It can be\n" "customized and extended using either the s7 Scheme implementation (included in\n" "the Snd sources), Ruby, or Forth." msgstr "" -#: gnu/packages/audio.scm:4369 +#: gnu/packages/audio.scm:4389 msgid "" "Noise Repellent is an LV2 plugin to reduce noise. It has\n" "the following features:\n" @@ -953,31 +952,31 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/audio.scm:4436 +#: gnu/packages/audio.scm:4456 msgid "" "RNNoise is a library that uses deep learning to apply\n" "noise suppression to audio sources with voice presence. This package provides\n" "an LV2 audio plugin." msgstr "" -#: gnu/packages/audio.scm:4480 +#: gnu/packages/audio.scm:4500 msgid "" "@code{cli-visualizer} displays fast-Fourier\n" "transforms (FFTs) of the sound being played, as well as other graphical\n" "representations." msgstr "" -#: gnu/packages/audio.scm:4530 +#: gnu/packages/audio.scm:4550 msgid "" "C.A.V.A. is a bar audio spectrum visualizer for the terminal\n" "using ALSA, MPD, PulseAudio, or a FIFO buffer as its input." msgstr "" -#: gnu/packages/audio.scm:4564 +#: gnu/packages/audio.scm:4584 msgid "Fluid-3 is Frank Wen's pro-quality GM soundfont." msgstr "" -#: gnu/packages/audio.scm:4586 +#: gnu/packages/audio.scm:4606 msgid "" "FDK is a library for encoding and decoding Advanced Audio\n" "Coding (AAC) format audio, developed by Fraunhofer IIS, and included as part of\n" @@ -988,20 +987,20 @@ msgid "" " surround)." msgstr "" -#: gnu/packages/audio.scm:4626 +#: gnu/packages/audio.scm:4646 msgid "" "OpenShot Audio Library (libopenshot-audio) allows\n" "high-quality editing and playback of audio, and is based on the JUCE\n" "library." msgstr "" -#: gnu/packages/audio.scm:4652 +#: gnu/packages/audio.scm:4672 msgid "" "FAudio is an XAudio reimplementation that focuses solely on\n" "developing fully accurate DirectX Audio runtime libraries." msgstr "" -#: gnu/packages/audio.scm:4679 +#: gnu/packages/audio.scm:4699 msgid "" "Gnaural is a programmable auditory binaural beat synthesizer\n" "intended to be used for brainwave entrainment. Gnaural supports creation of\n" @@ -1010,20 +1009,20 @@ msgid "" "other Gnaural instances, allowing synchronous sessions between many users." msgstr "" -#: gnu/packages/audio.scm:4714 +#: gnu/packages/audio.scm:4734 msgid "" "DarkIce is a live audio streamer. It takes audio input from\n" "a sound card, encodes it into Ogg Vorbis and/or mp3, and sends the audio\n" "stream to one or more IceCast and/or ShoutCast servers." msgstr "" -#: gnu/packages/audio.scm:4738 +#: gnu/packages/audio.scm:4758 msgid "" "Libltc is a POSIX-C Library for handling\n" "@dfn{Linear/Longitudinal Time Code} (LTC) data." msgstr "" -#: gnu/packages/audio.scm:4772 +#: gnu/packages/audio.scm:4792 msgid "" "TTA performs lossless compression on multichannel 8,16 and 24 bits\n" "data of the Wav audio files. Being lossless means that no data-\n" @@ -1034,14 +1033,14 @@ msgid "" "supports both of ID3v1/v2 and APEv2 tags." msgstr "" -#: gnu/packages/audio.scm:4805 +#: gnu/packages/audio.scm:4825 msgid "" "@code{libsoundio} is a C library providing audio input and\n" "output. The API is suitable for real-time software such as digital audio\n" "workstations as well as consumer software such as music players." msgstr "" -#: gnu/packages/audio.scm:4831 +#: gnu/packages/audio.scm:4851 msgid "" "Redkite is a small GUI toolkit developed in C++17 and\n" "inspired from other well known GUI toolkits such as Qt and GTK. It is\n" @@ -1050,7 +1049,7 @@ msgid "" "as is the case with audio plugins." msgstr "" -#: gnu/packages/audio.scm:4903 +#: gnu/packages/audio.scm:4923 msgid "" "Carla is a modular audio plugin host, with features like\n" "transport control, automation of parameters via MIDI CC and remote control\n" @@ -1059,7 +1058,7 @@ msgid "" "default and preferred audio driver but also supports native drivers like ALSA." msgstr "" -#: gnu/packages/audio.scm:4939 +#: gnu/packages/audio.scm:4959 msgid "" "Ecasound is a software package designed for multitrack audio\n" "processing. It can be used for simple tasks like audio playback, recording and\n" @@ -1071,28 +1070,28 @@ msgid "" "in the package." msgstr "" -#: gnu/packages/audio.scm:4977 +#: gnu/packages/audio.scm:4997 msgid "" "libaudec is a wrapper library over ffmpeg, sndfile and\n" "libsamplerate for reading and resampling audio files, based on Robin Gareus'\n" "@code{audio_decoder} code." msgstr "" -#: gnu/packages/audio.scm:5007 +#: gnu/packages/audio.scm:5027 msgid "" "lv2lint is an LV2 lint-like tool that checks whether a\n" "given plugin and its UI(s) match up with the provided metadata and adhere\n" "to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5041 +#: gnu/packages/audio.scm:5061 msgid "" "lv2toweb allows the user to create an xhtml page with information\n" "about the given LV2 plugin, provided that the plugin and its UI(s) match up\n" "with the provided metadata and adhere to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5069 +#: gnu/packages/audio.scm:5089 msgid "" "ZToolkit (Ztk) is a cross-platform GUI toolkit heavily\n" "inspired by GTK. It handles events and low level drawing on behalf of\n" @@ -1102,7 +1101,7 @@ msgid "" "minimum." msgstr "" -#: gnu/packages/audio.scm:5102 +#: gnu/packages/audio.scm:5122 msgid "" "libInstPatch is a library for processing digital sample based MIDI\n" "instrument \"patch\" files. The types of files libInstPatch supports are used\n" @@ -1111,28 +1110,28 @@ msgid "" "edited, converted, compressed and saved." msgstr "" -#: gnu/packages/audio.scm:5149 +#: gnu/packages/audio.scm:5169 msgid "" "The LSP DSP library provides a set of functions that perform\n" "SIMD-optimized computing on several hardware architectures. All functions\n" "currently operate on IEEE-754 single-precision floating-point numbers." msgstr "" -#: gnu/packages/audio.scm:5180 +#: gnu/packages/audio.scm:5200 msgid "" "Codec 2 is a speech codec designed for communications quality speech\n" "between 700 and 3200 bit/s. The main application is low bandwidth HF/VHF\n" "digital radio." msgstr "" -#: gnu/packages/audio.scm:5206 +#: gnu/packages/audio.scm:5226 msgid "" "The mbelib library provides support for the 7200x4400 bit/s codec used\n" "in P25 Phase 1, the 7100x4400 bit/s codec used in ProVoice and the @emph{Half\n" "Rate} 3600x2250 bit/s vocoder used in various radio systems." msgstr "" -#: gnu/packages/audio.scm:5299 +#: gnu/packages/audio.scm:5319 msgid "" "Ableton Link is a C++ library that synchronizes musical beat, tempo, and phase\n" "across multiple applications running on one or more devices. Applications on devices\n" @@ -1141,20 +1140,20 @@ msgid "" "while still staying in time." msgstr "" -#: gnu/packages/audio.scm:5360 +#: gnu/packages/audio.scm:5380 msgid "" "Butt is a tool to stream audio to a ShoutCast or\n" "Icecast server." msgstr "" -#: gnu/packages/audio.scm:5406 +#: gnu/packages/audio.scm:5426 msgid "" "siggen is a set of tools for imitating a laboratory signal\n" "generator, generating audio signals out of Linux's /dev/dsp audio\n" "device. There is support for mono and/or stereo and 8 or 16 bit samples." msgstr "" -#: gnu/packages/audio.scm:5453 +#: gnu/packages/audio.scm:5473 msgid "" "@code{python-pysox} is a wrapper around the @command{sox}\n" "command line tool. The API offers @code{Transformer} and @code{Combiner}\n" @@ -1164,7 +1163,7 @@ msgid "" "and much more." msgstr "" -#: gnu/packages/audio.scm:5492 +#: gnu/packages/audio.scm:5512 msgid "" "@code{python-resampy} implements the band-limited sinc interpolation\n" "method for sampling rate conversion as described by Julius O. Smith at the\n" @@ -1172,34 +1171,34 @@ msgid "" "Home Page}." msgstr "" -#: gnu/packages/audio.scm:5528 +#: gnu/packages/audio.scm:5548 msgid "" "@code{librosa} is a python package for music and audio analysis. It\n" "provides the building blocks necessary to create music information retrieval\n" "systems." msgstr "" -#: gnu/packages/audio.scm:5561 +#: gnu/packages/audio.scm:5581 msgid "" "MDA-LV2 is an LV2 port of the MDA plugins. It includes effects and a few\n" "instrument plugins." msgstr "" -#: gnu/packages/audio.scm:5593 +#: gnu/packages/audio.scm:5613 msgid "" "The Odio SACD shared library is a decoding engine which takes a Super\n" "Audio CD source and extracts a 24-bit high resolution WAV file. It handles\n" "both DST and DSD streams." msgstr "" -#: gnu/packages/audio.scm:5618 +#: gnu/packages/audio.scm:5638 msgid "" "Odio SACD is a command-line application which takes a Super Audio CD\n" "source and extracts a 24-bit high resolution WAV file. It handles both DST\n" "and DSD streams." msgstr "" -#: gnu/packages/backup.scm:155 +#: gnu/packages/backup.scm:165 msgid "" "Duplicity backs up directories by producing encrypted tar-format volumes\n" "and uploading them to a remote or local file server. Because duplicity uses\n" @@ -1215,7 +1214,7 @@ msgstr "" "dernière sauvegarde. L'utilisation de GnuPG pour chiffrer ou signer ces archives\n" "permet de prévenir tout rique d'espionnage ou d'altération par le serveur." -#: gnu/packages/backup.scm:180 +#: gnu/packages/backup.scm:190 msgid "" "Par2cmdline uses Reed-Solomon error-correcting codes to\n" "generate and verify PAR2 recovery files. These files can be distributed\n" @@ -1227,7 +1226,7 @@ msgid "" "can even repair them." msgstr "" -#: gnu/packages/backup.scm:219 +#: gnu/packages/backup.scm:229 msgid "" "Hdup2 is a backup utility, its aim is to make backup really simple. The\n" "backup scheduling is done by means of a cron job. It supports an\n" @@ -1239,7 +1238,7 @@ msgstr "" "supporte un mécanisme d'inclusion et d'exclusion, les sauvegardes distantes,\n" "chiffrées ou morcelées (appelées chunks) permettant un gravure sur CD/DVD aisée." -#: gnu/packages/backup.scm:316 +#: gnu/packages/backup.scm:326 msgid "" "Libarchive provides a flexible interface for reading and writing\n" "archives in various formats such as tar and cpio. Libarchive also supports\n" @@ -1257,7 +1256,7 @@ msgstr "" "l'archive en continu. Notez qu'il n'existe pour l'instant aucun support intégré\n" "pour les accès aléatoires ou les modifications ponctuelles." -#: gnu/packages/backup.scm:380 +#: gnu/packages/backup.scm:390 msgid "" "Rdup is a utility inspired by rsync and the plan9 way of doing backups.\n" "Rdup itself does not backup anything, it only print a list of absolute\n" @@ -1269,7 +1268,7 @@ msgstr "" "liste de fichiers sur la sortie standard. Des scripts auxiliaires utilisant\n" "cette liste et implantant la stratégie de sauvegarde sont nécessaires." -#: gnu/packages/backup.scm:419 +#: gnu/packages/backup.scm:429 msgid "" "SnapRAID backs up files stored across multiple storage devices, such as\n" "disk arrays, in an efficient way reminiscent of its namesake @acronym{RAID,\n" @@ -1295,7 +1294,7 @@ msgid "" "remain fully idle, saving power and producing less noise." msgstr "" -#: gnu/packages/backup.scm:469 +#: gnu/packages/backup.scm:479 msgid "" "Btar is a tar-compatible archiver which allows arbitrary compression and\n" "ciphering, redundancy, differential backup, indexed extraction, multicore\n" @@ -1307,7 +1306,7 @@ msgstr "" "l'extraction indexée, la compression multi-coeurs, la sérialisation des entrées-\n" "sorties et la tolérance aux erreurs d'archivage partielles." -#: gnu/packages/backup.scm:496 +#: gnu/packages/backup.scm:506 msgid "" "Rdiff-backup backs up one directory to another, possibly over a network.\n" "The target directory ends up a copy of the source directory, but extra reverse\n" @@ -1334,7 +1333,7 @@ msgstr "" "différence sera transmise. Enfin, rdiff-backup est simple d'utilisation et la\n" "configuration par défaut sera généralement suffisante." -#: gnu/packages/backup.scm:532 +#: gnu/packages/backup.scm:542 msgid "" "rsnapshot is a file system snapshot utility based on rsync.\n" "rsnapshot makes it easy to make periodic snapshots of local machines, and\n" @@ -1347,7 +1346,7 @@ msgstr "" "pour chaque sauvegarde, rsnapshot utilise des liens en dur pour dédupliquer\n" "les fichiers identiques." -#: gnu/packages/backup.scm:610 +#: gnu/packages/backup.scm:620 msgid "" "Libchop is a set of utilities and library for data backup and\n" "distributed storage. Its main application is @command{chop-backup}, an\n" @@ -1366,14 +1365,22 @@ msgstr "" "le stockage adressable par contenu, le clefs de hash, les arbres de Merkle,\n" "la détection de similarité et la compression sans perte." -#: gnu/packages/backup.scm:740 +#: gnu/packages/backup.scm:750 +#, fuzzy +#| msgid "" +#| "Borg is a deduplicating backup program. Optionally, it\n" +#| "supports compression and authenticated encryption. The main goal of Borg is to\n" +#| "provide an efficient and secure way to backup data. The data deduplication\n" +#| "technique used makes Borg suitable for daily backups since only changes are\n" +#| "stored. The authenticated encryption technique makes it suitable for backups\n" +#| "to not fully trusted targets. Borg is a fork of Attic." msgid "" "Borg is a deduplicating backup program. Optionally, it\n" "supports compression and authenticated encryption. The main goal of Borg is to\n" "provide an efficient and secure way to backup data. The data deduplication\n" "technique used makes Borg suitable for daily backups since only changes are\n" -"stored. The authenticated encryption technique makes it suitable for backups\n" -"to not fully trusted targets. Borg is a fork of Attic." +"stored. The authenticated encryption technique makes it suitable for\n" +"storing backups on untrusted computers." msgstr "" "Borg est un programme de sauvegarde dédupliquées. Éventuellement, il supporte\n" "la compression et le chiffrement authentifié. Le but principal de Borg est\n" @@ -1383,7 +1390,7 @@ msgstr "" "chiffrement authentifié le rend adapté aux sauvegardes vers des cibles qui ne\n" "sont pas de confiance. Borg est un fork de Attic." -#: gnu/packages/backup.scm:771 +#: gnu/packages/backup.scm:781 msgid "" "wimlib is a C library and set of command-line utilities for\n" "creating, modifying, extracting, and mounting archives in the Windows Imaging\n" @@ -1396,12 +1403,7 @@ msgstr "" "directement depuis ou sur des volumes NTFS avec @code{ntfs-3g}, et préserve\n" "les attributs spécifiques à NTFS." -#: gnu/packages/backup.scm:879 -#, fuzzy -#| msgid "" -#| "With dirvish you can maintain a set of complete images of your\n" -#| "file systems with unattended creation and expiration. A dirvish backup vault\n" -#| "is like a time machine for your data. " +#: gnu/packages/backup.scm:889 msgid "" "With dirvish you can maintain a set of complete images of your\n" "file systems with unattended creation and expiration. A dirvish backup vault\n" @@ -1411,7 +1413,7 @@ msgstr "" "systèmes de fichiers avec création et expiration automatique. Un coffre de\n" "sauvegardes dirvish est comme une machine à remonter le temps pour vos données." -#: gnu/packages/backup.scm:974 +#: gnu/packages/backup.scm:984 msgid "" "Restic is a program that does backups right and was designed\n" "with the following principles in mind:\n" @@ -1475,7 +1477,7 @@ msgstr "" "un peu du précieux espace de stockage.\n" "@end itemize" -#: gnu/packages/backup.scm:1025 +#: gnu/packages/backup.scm:1035 msgid "" "ZBackup is a globally-deduplicating backup tool, based on the\n" "ideas found in Rsync. Feed a large @file{.tar} into it, and it will\n" @@ -1488,7 +1490,7 @@ msgid "" "is format-agnostic, so you can feed virtually any files to it." msgstr "" -#: gnu/packages/backup.scm:1061 +#: gnu/packages/backup.scm:1071 msgid "" "Dump examines files in a file system, determines which ones\n" "need to be backed up, and copies those files to a specified disk, tape or\n" @@ -1499,7 +1501,37 @@ msgid "" "interactive mode." msgstr "" -#: gnu/packages/backup.scm:1105 +#: gnu/packages/backup.scm:1131 +msgid "" +"Btrbk is a backup tool for Btrfs subvolumes, taking\n" +"advantage of Btrfs specific capabilities to create atomic snapshots and\n" +"transfer them incrementally to your backup locations. The source and target\n" +"locations are specified in a config file, which allows easily configuring\n" +"simple scenarios like e.g. a @i{laptop with locally attached backup disks}, as\n" +"well as more complex ones, e.g. a @i{server receiving backups from several\n" +"hosts via SSH, with different retention policy}. It has features such as:\n" +"@itemize\n" +"@item atomic snapshots\n" +"@item incremental backups\n" +"@item flexible retention policy\n" +"@item backups to multiple destinations\n" +"@item transfer via SSH\n" +"@item resume backups (for removable and mobile devices)\n" +"@item archive to offline storage\n" +"@item encrypted backups to non-btrfs storage\n" +"@item wildcard subvolumes (useful for Docker and LXC containers)\n" +"@item transaction log\n" +"@item comprehensive list and statistics output\n" +"@item resolve and trace Btrfs parent-child and received-from relationships\n" +"@item list file changes between backups\n" +"@item calculate accurate disk space usage based on block regions.\n" +"@end itemize\n" +"Btrbk is designed to run as a cron job for triggering periodic snapshots and\n" +"backups, as well as from the command line (e.g. for instantly creating\n" +"additional snapshots)." +msgstr "" + +#: gnu/packages/backup.scm:1194 msgid "" "Burp is a network backup and restore program. It attempts\n" "to reduce network traffic and the amount of space that is used by each\n" @@ -1508,7 +1540,7 @@ msgstr "" "Burp est un programme de sauvegarde et de restauration en réseau. Il essaye\n" "de réduire le trafic réseau et la quantité de place utilisée par chaque sauvegarde." -#: gnu/packages/backup.scm:1136 +#: gnu/packages/backup.scm:1225 msgid "" "Disarchive can disassemble software archives into data\n" "and metadata. The goal is to create a small amount of metadata that\n" @@ -1518,7 +1550,7 @@ msgid "" "compression parameters used by Gzip." msgstr "" -#: gnu/packages/backup.scm:1181 +#: gnu/packages/backup.scm:1270 msgid "" "borgmatic is simple, configuration-driven backup software for servers\n" "and workstations. Protect your files with client-side encryption. Backup\n" @@ -1526,6 +1558,14 @@ msgid "" "borgmatic is powered by borg." msgstr "" +#: gnu/packages/backup.scm:1330 +msgid "" +"Vorta is a graphical backup client based on the Borg backup\n" +"tool. It supports the use of remote backup repositories. It can perform\n" +"scheduled backups, and has a graphical tool for browsing and extracting the Borg\n" +"archives." +msgstr "" + #: gnu/packages/base.scm:98 msgid "" "GNU Hello prints the message \"Hello, world!\" and then exits. It\n" @@ -1659,7 +1699,7 @@ msgstr "" "regénérés. GNU make possède beaucoup d'extensions en plus de\n" "l'utilitaire standard." -#: gnu/packages/base.scm:550 +#: gnu/packages/base.scm:558 msgid "" "GNU Binutils is a collection of tools for working with binary files.\n" "Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler.\n" @@ -1675,7 +1715,7 @@ msgstr "" "des archives. La bibliothèque \"bfd\", permettant de travailler avec des exécutables et\n" "des formats objet, est aussi incluse." -#: gnu/packages/base.scm:694 +#: gnu/packages/base.scm:685 msgid "" "The linker wrapper (or @code{ld-wrapper}) wraps the linker to add any\n" "missing @code{-rpath} flags, and to detect any misuse of libraries outside of\n" @@ -1685,7 +1725,7 @@ msgstr "" "liens pour ajouter les drapeaux @code{-rpath} absents et pour détecter la\n" "mauvaise utilisation de bibliothèques en dehors du dépôt." -#: gnu/packages/base.scm:930 +#: gnu/packages/base.scm:921 msgid "" "Any Unix-like operating system needs a C library: the library which\n" "defines the \"system calls\" and other basic facilities such as open, malloc,\n" @@ -1701,7 +1741,7 @@ msgstr "" "La bibliothèque GNU C est utilisée comme bibliothèque C dans les systèmes GNU et\n" "la plupart des systèmes basés sur le noyau Linux." -#: gnu/packages/base.scm:1057 +#: gnu/packages/base.scm:1048 msgid "" "This package provides all the locales supported by the GNU C Library,\n" "more than 400 in total. To use them set the @code{LOCPATH} environment variable\n" @@ -1711,7 +1751,7 @@ msgstr "" "bibliothèque C de GNU. Plus de 400 en tout. Pour les utiliser, paramétrez la variable\n" "d'environnement @code{LOCPATH} au sous-répertoire @code{share/locale} de ce paquet." -#: gnu/packages/base.scm:1206 +#: gnu/packages/base.scm:1198 msgid "" "The which program finds the location of executables in PATH, with a\n" "variety of options. It is an alternative to the shell \"type\" built-in\n" @@ -1721,7 +1761,7 @@ msgstr "" "avec diverses options. C'est une alternative à la commande « type » intégrée\n" "dans le shell." -#: gnu/packages/base.scm:1329 +#: gnu/packages/base.scm:1321 msgid "" "The Time Zone Database (often called tz or zoneinfo)\n" "contains code and data that represent the history of local time for many\n" @@ -1735,7 +1775,7 @@ msgstr "" "pour refléter les changements effectués par les entités politiques aux limites de ces zones,\n" "les décalages UTC et les changements d'heures." -#: gnu/packages/base.scm:1367 +#: gnu/packages/base.scm:1359 msgid "" "libiconv provides an implementation of the iconv function for systems\n" "that lack it. iconv is used to convert between character encodings in a\n" @@ -1746,7 +1786,7 @@ msgstr "" "de caractères dans un programme. Elle prend en charge une grande gamme\n" "d'encodages." -#: gnu/packages/bittorrent.scm:131 +#: gnu/packages/bittorrent.scm:135 msgid "" "Transmission is a BitTorrent client that comes with graphical,\n" "textual, and Web user interfaces. Transmission also has a daemon for\n" @@ -1758,13 +1798,13 @@ msgstr "" "sans surveillance. Il prend en charge la découverte locale des pairs, le chiffrement\n" "complet, la DHC, μTP, PEX et les liens Magnet." -#: gnu/packages/bittorrent.scm:165 +#: gnu/packages/bittorrent.scm:169 msgid "" "transmission-remote-gtk is a GTK client for remote management\n" "of the Transmission BitTorrent client, using its HTTP RPC protocol." msgstr "" -#: gnu/packages/bittorrent.scm:187 +#: gnu/packages/bittorrent.scm:191 msgid "" "LibTorrent is a BitTorrent library used by and developed in parallel\n" "with the BitTorrent client rtorrent. It is written in C++ with emphasis on\n" @@ -1774,7 +1814,7 @@ msgstr "" "parallèle au client BitTorrent rtorrent. Elle est écrite en C++ et se concentre\n" "sur la vitesse et l'efficacité." -#: gnu/packages/bittorrent.scm:215 +#: gnu/packages/bittorrent.scm:219 msgid "" "rTorrent is a BitTorrent client with an ncurses interface. It supports\n" "full encryption, DHT, PEX, and Magnet Links. It can also be controlled via\n" @@ -1784,7 +1824,7 @@ msgstr "" "en charge le chiffrement complet, la DHT, PEX et les liens Magnet. Il\n" "peut aussi être contrôlé via XML-RPC par SCGI." -#: gnu/packages/bittorrent.scm:249 +#: gnu/packages/bittorrent.scm:253 msgid "" "Tremc is a console client, with a curses interface, for the\n" "Transmission BitTorrent daemon." @@ -1792,7 +1832,7 @@ msgstr "" "Tremc est un client en console, avec une interface curses pour\n" "le démon BitTorrent Transmission." -#: gnu/packages/bittorrent.scm:290 +#: gnu/packages/bittorrent.scm:294 msgid "" "Transmission-remote-cli is a console client, with a curses\n" "interface, for the Transmission BitTorrent daemon. This package is no longer\n" @@ -1802,7 +1842,7 @@ msgstr "" "curses, pour le démon BitTorrent Transmission. Ce paquet n'est plus maintenu\n" "en amont." -#: gnu/packages/bittorrent.scm:340 +#: gnu/packages/bittorrent.scm:345 msgid "" "Aria2 is a lightweight, multi-protocol & multi-source command-line\n" "download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and Metalink.\n" @@ -1812,7 +1852,7 @@ msgstr "" "en ligne de commande. Il prend en charge le HTTP/HTTPS, le FTP, le SFTP, BitTorrent et\n" "Metalink. Aria2 peut être manipulé via les interfaces JSON-RPC et XML-RPC incluses." -#: gnu/packages/bittorrent.scm:374 +#: gnu/packages/bittorrent.scm:381 msgid "" "uGet is portable download manager with GTK+ interface supporting\n" "HTTP, HTTPS, BitTorrent and Metalink, supporting multi-connection\n" @@ -1823,7 +1863,7 @@ msgstr "" "téléchargements avec plusieurs connexions, les téléchargements programmés\n" "et la limitation de débit." -#: gnu/packages/bittorrent.scm:406 +#: gnu/packages/bittorrent.scm:413 msgid "" "mktorrent is a simple command-line utility to create BitTorrent\n" "@dfn{metainfo} files, often known simply as @dfn{torrents}, from both single\n" @@ -1840,7 +1880,7 @@ msgstr "" "se fait sur plusieurs threads et prendra en compte le nombre de cœurs du processeur\n" "lorsque c'est possible." -#: gnu/packages/bittorrent.scm:457 +#: gnu/packages/bittorrent.scm:472 msgid "" "libtorrent-rasterbar is a feature-complete C++ BitTorrent implementation\n" "focusing on efficiency and scalability. It runs on embedded devices as well as\n" @@ -1850,7 +1890,7 @@ msgstr "" "qui se concentre sur l'efficacité et le passage à l'échelle. Elle tourne sur\n" "de l'embarqué comme sur des ordinateurs de bureau." -#: gnu/packages/bittorrent.scm:508 +#: gnu/packages/bittorrent.scm:523 msgid "" "qBittorrent is a BitTorrent client programmed in C++/Qt that uses\n" "libtorrent (sometimes called libtorrent-rasterbar) by Arvid Norberg.\n" @@ -1866,7 +1906,7 @@ msgstr "" "existent. qBittorrent est rapide, stable et fournit une prise en charge\n" "de l'unicode ainsi que d'autres fonctionnalités." -#: gnu/packages/bittorrent.scm:580 +#: gnu/packages/bittorrent.scm:604 msgid "" "Deluge contains the common features to BitTorrent clients such as\n" "Protocol Encryption, DHT, Local Peer Discovery (LSD), Peer Exchange\n" @@ -2314,7 +2354,16 @@ msgid "" "functionality in a C++ iostream." msgstr "" -#: gnu/packages/compression.scm:1443 +#: gnu/packages/compression.scm:1416 +msgid "" +"Zopfli Compression Algorithm is a compression library\n" +"programmed in C to perform very good, but slow, deflate or zlib compression.\n" +"ZopfliCompress supports the deflate, gzip and zlib output formats. This\n" +"library can only compress, not decompress; existing zlib or deflate libraries\n" +"can decompress the data." +msgstr "" + +#: gnu/packages/compression.scm:1469 msgid "" "ZPAQ is a command-line archiver for realistic situations with\n" "many duplicate and already compressed files. It backs up only those files\n" @@ -2328,13 +2377,13 @@ msgid "" "or junctions, and always follows hard links." msgstr "" -#: gnu/packages/compression.scm:1545 +#: gnu/packages/compression.scm:1571 msgid "" "@command{unshield} is a tool and library for extracting @file{.cab}\n" " archives from InstallShield installers." msgstr "" -#: gnu/packages/compression.scm:1624 +#: gnu/packages/compression.scm:1650 msgid "" "Zstandard (@command{zstd}) is a lossless compression algorithm\n" "that combines very fast operation with a compression ratio comparable to that of\n" @@ -2344,7 +2393,7 @@ msgid "" "speed." msgstr "" -#: gnu/packages/compression.scm:1672 +#: gnu/packages/compression.scm:1698 msgid "" "Parallel Zstandard (PZstandard or @command{pzstd}) is a\n" "multi-threaded implementation of the @uref{http://zstd.net/, Zstandard\n" @@ -2357,7 +2406,7 @@ msgid "" "the actual decompression, the other input and output." msgstr "" -#: gnu/packages/compression.scm:1712 +#: gnu/packages/compression.scm:1738 msgid "" "Zip is a compression and file packaging/archive utility. Zip is useful\n" "for packaging a set of files for distribution, for archiving files, and for\n" @@ -2385,7 +2434,7 @@ msgstr "" "pour chaque fichier.Des ratios de compression de 2 à 3 sont généralement\n" "atteignables pour les fichiers texte." -#: gnu/packages/compression.scm:1801 +#: gnu/packages/compression.scm:1827 msgid "" "UnZip is an extraction utility for archives compressed in .zip format,\n" "also called \"zipfiles\".\n" @@ -2402,7 +2451,7 @@ msgstr "" "vers le répertoire courant et ses sous-répertoires. Unzip recrée par défaut la\n" "structure des répertoires contenus dans l'archive." -#: gnu/packages/compression.scm:1853 +#: gnu/packages/compression.scm:1879 msgid "" "Ziptime helps make @file{.zip} archives reproducible by replacing\n" "timestamps in the file header with a fixed time (1 January 2008).\n" @@ -2411,11 +2460,11 @@ msgid "" "@command{zip} to prevent it from storing the ``universal time'' field." msgstr "" -#: gnu/packages/compression.scm:1880 +#: gnu/packages/compression.scm:1906 msgid "ZZipLib is a library based on zlib for accessing zip files." msgstr "ZZipLib est une bibliothèque basée sur zlip pour la manipulation de fichiers zip." -#: gnu/packages/compression.scm:1904 +#: gnu/packages/compression.scm:1930 msgid "" "Libzip is a C library for reading, creating, and modifying\n" "zip archives. Files can be added from data buffers, files, or compressed data\n" @@ -2423,7 +2472,7 @@ msgid "" "archive can be reverted." msgstr "" -#: gnu/packages/compression.scm:1937 +#: gnu/packages/compression.scm:1963 msgid "" "The main command is @command{aunpack} which extracts files\n" "from an archive. The other commands provided are @command{apack} (to create\n" @@ -2433,7 +2482,7 @@ msgid "" "of archives." msgstr "" -#: gnu/packages/compression.scm:1963 +#: gnu/packages/compression.scm:1989 msgid "" "Lunzip is a decompressor for files in the lzip compression format (.lz),\n" "written as a single small C tool with no dependencies. This makes it\n" @@ -2443,7 +2492,7 @@ msgid "" "Lunzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:1990 +#: gnu/packages/compression.scm:2016 msgid "" "Clzip is a compressor and decompressor for files in the lzip compression\n" "format (.lz), written as a single small C tool with no dependencies. This makes\n" @@ -2452,7 +2501,7 @@ msgid "" "Clzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:2018 +#: gnu/packages/compression.scm:2044 msgid "" "Lzlib is a C library for in-memory LZMA compression and decompression in\n" "the lzip format. It supports integrity checking of the decompressed data, and\n" @@ -2460,7 +2509,7 @@ msgid "" "corrupted input." msgstr "" -#: gnu/packages/compression.scm:2042 +#: gnu/packages/compression.scm:2068 msgid "" "Plzip is a massively parallel (multi-threaded) lossless data compressor\n" "and decompressor that uses the lzip file format (.lz). Files produced by plzip\n" @@ -2474,13 +2523,13 @@ msgid "" "single-member files which can't be decompressed in parallel." msgstr "" -#: gnu/packages/compression.scm:2074 +#: gnu/packages/compression.scm:2100 msgid "" "innoextract allows extracting Inno Setup installers under\n" "non-Windows systems without running the actual installer using wine." msgstr "" -#: gnu/packages/compression.scm:2096 +#: gnu/packages/compression.scm:2122 msgid "" "ISA-L is a collection of optimized low-level functions\n" "targeting storage applications. ISA-L includes:\n" @@ -2498,7 +2547,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/compression.scm:2156 +#: gnu/packages/compression.scm:2182 msgid "" "This package provides the reference implementation of Brotli,\n" "a generic-purpose lossless compression algorithm that compresses data using a\n" @@ -2510,13 +2559,13 @@ msgid "" "The specification of the Brotli Compressed Data Format is defined in RFC 7932." msgstr "" -#: gnu/packages/compression.scm:2176 +#: gnu/packages/compression.scm:2202 msgid "" "This package provides a Python interface to the @code{brotli}\n" "package, an implementation of the Brotli lossless compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2200 +#: gnu/packages/compression.scm:2226 msgid "" "UCL implements a number of compression algorithms that\n" "achieve an excellent compression ratio while allowing fast decompression.\n" @@ -2526,7 +2575,7 @@ msgid "" "decompression is a little bit slower." msgstr "" -#: gnu/packages/compression.scm:2248 +#: gnu/packages/compression.scm:2274 msgid "" "The Ultimate Packer for eXecutables (UPX) is an executable file\n" "compressor. UPX typically reduces the file size of programs and shared\n" @@ -2534,7 +2583,7 @@ msgid "" "download times, and other distribution and storage costs." msgstr "" -#: gnu/packages/compression.scm:2276 +#: gnu/packages/compression.scm:2302 msgid "" "QuaZIP is a simple C++ wrapper over Gilles Vollant's\n" "ZIP/UNZIP package that can be used to access ZIP archives. It uses\n" @@ -2548,7 +2597,7 @@ msgid "" "reading from and writing to ZIP archives." msgstr "" -#: gnu/packages/compression.scm:2335 +#: gnu/packages/compression.scm:2361 msgid "" "The zchunk compressed file format allows splitting a file\n" "into independent chunks. This makes it possible to retrieve only changed\n" @@ -2571,7 +2620,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/compression.scm:2391 +#: gnu/packages/compression.scm:2417 msgid "" "Zutils is a collection of utilities able to process any combination of\n" "compressed and uncompressed files transparently. If any given file, including\n" @@ -2588,14 +2637,14 @@ msgid "" "at run time, and must be installed separately." msgstr "" -#: gnu/packages/compression.scm:2449 +#: gnu/packages/compression.scm:2475 msgid "" "This package provides a script to unpack self-extracting\n" "archives generated by @command{makeself} or @command{mojo} without running the\n" "possibly untrusted extraction shell script." msgstr "" -#: gnu/packages/compression.scm:2477 +#: gnu/packages/compression.scm:2503 msgid "" "(N)compress provides the original compress and uncompress\n" "programs that used to be the de facto UNIX standard for compressing and\n" @@ -2603,7 +2652,7 @@ msgid "" "file compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2504 +#: gnu/packages/compression.scm:2530 msgid "" "Xarchiver is a front-end to various command line archiving\n" "tools. It uses GTK+ tool-kit and is designed to be desktop-environment\n" @@ -2612,13 +2661,13 @@ msgid "" "archiver is not installed." msgstr "" -#: gnu/packages/compression.scm:2541 +#: gnu/packages/compression.scm:2567 msgid "" "Archive huge numbers of files, or split massive tar archives into smaller\n" "chunks." msgstr "" -#: gnu/packages/compression.scm:2574 +#: gnu/packages/compression.scm:2600 msgid "" "Blosc is a high performance compressor optimized for binary data. It has\n" "been designed to transmit data to the processor cache faster than the\n" @@ -2628,14 +2677,14 @@ msgid "" "computations." msgstr "" -#: gnu/packages/compression.scm:2612 +#: gnu/packages/compression.scm:2638 msgid "" "ECM is a utility that converts ECM files, i.e., CD data files\n" "with their error correction data losslessly rearranged for better compression,\n" "to their original, binary CD format." msgstr "" -#: gnu/packages/compression.scm:2642 +#: gnu/packages/compression.scm:2668 msgid "" "Libdeflate is a library for fast, whole-buffer DEFLATE-based\n" "compression and decompression. The supported formats are:\n" @@ -2647,7 +2696,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/compression.scm:2672 +#: gnu/packages/compression.scm:2698 msgid "" "Tarlz is a massively parallel (multi-threaded) combined implementation of\n" "the tar archiver and the lzip compressor. Tarlz creates, lists, and extracts\n" @@ -2658,7 +2707,7 @@ msgid "" "can append files to the end of such compressed archives." msgstr "" -#: gnu/packages/compression.scm:2706 +#: gnu/packages/compression.scm:2732 msgid "" "The Concise Binary Object Representation (CBOR) is a data format whose\n" "design goals include the possibility of extremely small code size, fairly\n" @@ -2667,11 +2716,11 @@ msgid "" "serializations such as ASN.1 and MessagePack." msgstr "" -#: gnu/packages/compression.scm:2739 +#: gnu/packages/compression.scm:2765 msgid "Fcrackzip is a Zip file password cracker." msgstr "" -#: gnu/packages/databases.scm:211 +#: gnu/packages/databases.scm:216 msgid "" "4store is a RDF/SPARQL store written in C, supporting\n" "either single machines or networked clusters." @@ -2679,7 +2728,7 @@ msgstr "" "4store est une base RDF/SPARQL écrite en C et qui prend en charge une configuration\n" "sur une machine unique ou sur une grappe en réseau." -#: gnu/packages/databases.scm:255 +#: gnu/packages/databases.scm:260 msgid "" "@code{pg_tmp} creates temporary PostgreSQL databases, suitable for tasks\n" "like running software test suites. Temporary databases created with\n" @@ -2693,7 +2742,7 @@ msgstr "" "mémoire limitée et sont automatiquement glanées après un nombre de secondes\n" "configurables (60 par défaut)." -#: gnu/packages/databases.scm:281 +#: gnu/packages/databases.scm:286 msgid "" "This package provides a utility for dumping the contents of an\n" "ElasticSearch index to a compressed file and restoring the dumpfile back to an\n" @@ -2703,7 +2752,7 @@ msgstr "" "ElasticSearch dans un fichier compressé et pour restaurer le fichier vers un\n" "serveur ElasticSearch" -#: gnu/packages/databases.scm:433 +#: gnu/packages/databases.scm:438 msgid "" "Firebird is an SQL @acronym{RDBMS, relational database management system}\n" "with rich support for ANSI SQL (e.g., @code{INSERT...RETURNING}) including\n" @@ -2723,20 +2772,20 @@ msgid "" "database later." msgstr "" -#: gnu/packages/databases.scm:506 +#: gnu/packages/databases.scm:511 msgid "" "LevelDB is a fast key-value storage library that provides an ordered\n" "mapping from string keys to string values." msgstr "" -#: gnu/packages/databases.scm:526 +#: gnu/packages/databases.scm:531 msgid "" "Memcached is an in-memory key-value store. It has a small\n" "and generic API, and was originally intended for use with dynamic web\n" "applications." msgstr "" -#: gnu/packages/databases.scm:588 +#: gnu/packages/databases.scm:593 msgid "" "libMemcached is a library to use memcached in C/C++\n" "applications. It comes with a complete reference guide and documentation of\n" @@ -2750,26 +2799,50 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:625 +#: gnu/packages/databases.scm:630 msgid "" "@code{pylibmc} is a client in Python for memcached. It is a wrapper\n" "around TangentOrg’s libmemcached library, and can be used as a drop-in\n" "replacement for the code@{python-memcached} library." msgstr "" -#: gnu/packages/databases.scm:653 +#: gnu/packages/databases.scm:662 +#, fuzzy +#| msgid "SCTP library for the Go programming language" +msgid "This is a memcache client library for the Go programming language." +msgstr "Bibliothèque SCTP pour le langage de programmation Go" + +#: gnu/packages/databases.scm:685 +#, fuzzy +#| msgid "This package provides a Git implementation library." +msgid "This package provides memcache client and server functionality." +msgstr "Ce paquet fournit une bibliothèque implémentant git." + +#: gnu/packages/databases.scm:711 msgid "" "@code{litecli} is a command-line client for SQLite databases that has\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:685 +#: gnu/packages/databases.scm:732 +msgid "" +"This Python package provides an API to execute meta-commands (AKA\n" +"\"special\", or \"backslash commands\") on PostgreSQL." +msgstr "" + +#: gnu/packages/databases.scm:763 +msgid "" +"@code{pgcli} is a command line interface for PostgreSQL with\n" +"autocompletion and syntax highlighting." +msgstr "" + +#: gnu/packages/databases.scm:801 msgid "" "MyCLI is a command line interface for MySQL, MariaDB, and Percona with\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:782 +#: gnu/packages/databases.scm:898 msgid "" "MySQL is a fast, reliable, and easy to use relational database\n" "management system that supports the standardized Structured Query\n" @@ -2778,25 +2851,25 @@ msgstr "" "MySQL est un système de gestion de base de données relationnelle rapide,\n" " fiable et facile d'emploi, supportant le SQL standardisé." -#: gnu/packages/databases.scm:1045 +#: gnu/packages/databases.scm:1161 msgid "" "MariaDB is a multi-user and multi-threaded SQL database server, designed\n" "as a drop-in replacement of MySQL." msgstr "" -#: gnu/packages/databases.scm:1070 +#: gnu/packages/databases.scm:1186 msgid "" "The MariaDB Connector/C is used to connect applications\n" "developed in C/C++ to MariaDB and MySQL databases." msgstr "" -#: gnu/packages/databases.scm:1093 +#: gnu/packages/databases.scm:1209 msgid "" "Galera is a wsrep-provider that is used with MariaDB for load-balancing\n" "and high-availability (HA)." msgstr "" -#: gnu/packages/databases.scm:1147 +#: gnu/packages/databases.scm:1263 msgid "" "PostgreSQL is a powerful object-relational database system. It is fully\n" "ACID compliant, has full support for foreign keys, joins, views, triggers, and\n" @@ -2812,19 +2885,27 @@ msgstr "" "INTERVAL et TIMESTAMP. Il supporte aussi le stockage binaire de grands objets, dont\n" "les images, le son et la vidéo." -#: gnu/packages/databases.scm:1269 +#: gnu/packages/databases.scm:1395 +msgid "" +"TimescaleDB is an database designed to make SQL scalable for\n" +"time-series data. It is engineered up from PostgreSQL and packaged as a\n" +"PostgreSQL extension, providing automatic partitioning across time and space\n" +"(partitioning key), as well as full SQL support." +msgstr "" + +#: gnu/packages/databases.scm:1476 msgid "" "@code{pgloader} is a program that can load data or migrate databases from\n" "CSV, DB3, iXF, SQLite, MS-SQL or MySQL to PostgreSQL." msgstr "" -#: gnu/packages/databases.scm:1293 +#: gnu/packages/databases.scm:1500 msgid "" "PyMySQL is a pure-Python MySQL client library, based on PEP 249.\n" "Most public APIs are compatible with @command{mysqlclient} and MySQLdb." msgstr "" -#: gnu/packages/databases.scm:1320 +#: gnu/packages/databases.scm:1527 msgid "" "QDBM is a library of routines for managing a\n" "database. The database is a simple data file containing key-value\n" @@ -2834,7 +2915,7 @@ msgid "" "organized in a hash table or B+ tree." msgstr "" -#: gnu/packages/databases.scm:1357 +#: gnu/packages/databases.scm:1564 msgid "" "GNU Recutils is a set of tools and libraries for creating and\n" "manipulating text-based, human-editable databases. Despite being text-based,\n" @@ -2849,7 +2930,7 @@ msgstr "" "les timestamps et plus encore. De nombreux types de champs sont supportés, tout comme\n" "le chiffrement." -#: gnu/packages/databases.scm:1389 +#: gnu/packages/databases.scm:1596 msgid "" "This package provides an Emacs major mode @code{rec-mode}\n" "for working with GNU Recutils text-based, human-editable databases. It\n" @@ -2857,7 +2938,7 @@ msgid "" "including field and record folding." msgstr "" -#: gnu/packages/databases.scm:1457 +#: gnu/packages/databases.scm:1664 msgid "" "RocksDB is a library that forms the core building block for a fast\n" "key-value server, especially suited for storing data on flash drives. It\n" @@ -2868,7 +2949,7 @@ msgid "" "data in a single database. RocksDB is partially based on @code{LevelDB}." msgstr "" -#: gnu/packages/databases.scm:1515 +#: gnu/packages/databases.scm:1722 msgid "" "Sparql-query is a command-line tool for accessing SPARQL\n" "endpoints over HTTP. It has been intentionally designed to @code{feel} similar to\n" @@ -2879,13 +2960,13 @@ msgid "" "for example from a shell script." msgstr "" -#: gnu/packages/databases.scm:1608 +#: gnu/packages/databases.scm:1815 msgid "" "Sqitch is a standalone change management system for database schemas,\n" "which uses SQL to describe changes." msgstr "" -#: gnu/packages/databases.scm:1635 +#: gnu/packages/databases.scm:1842 msgid "" "SQLcrush lets you view and edit a database directly from the text\n" "console through an ncurses interface. You can explore each table's structure,\n" @@ -2893,7 +2974,7 @@ msgid "" "changes." msgstr "" -#: gnu/packages/databases.scm:1673 +#: gnu/packages/databases.scm:1880 msgid "" "TDB is a Trivial Database. In concept, it is very much like GDBM,\n" "and BSD's DB except that it allows multiple simultaneous writers and uses\n" @@ -2905,11 +2986,11 @@ msgstr "" "accès simultanés en écriture et utilise un verrouillage interne pour éviter les\n" "empiétements. Notez que TDB est aussi très léger." -#: gnu/packages/databases.scm:1693 +#: gnu/packages/databases.scm:1900 msgid "This package provides an database interface for Perl." msgstr "Ce paquet fournit une interface de base de données pour Perl." -#: gnu/packages/databases.scm:1741 +#: gnu/packages/databases.scm:1948 msgid "" "An SQL to OO mapper with an object API inspired by\n" "Class::DBI (with a compatibility layer as a springboard for porting) and a\n" @@ -2921,13 +3002,13 @@ msgid "" "\"ORDER BY\" and \"HAVING\" support." msgstr "" -#: gnu/packages/databases.scm:1770 +#: gnu/packages/databases.scm:1977 msgid "" "DBIx::Class::Cursor::Cached provides a cursor class with\n" "built-in caching support." msgstr "" -#: gnu/packages/databases.scm:1793 +#: gnu/packages/databases.scm:2000 msgid "" "Because the many-to-many relationships are not real\n" "relationships, they can not be introspected with DBIx::Class. Many-to-many\n" @@ -2937,14 +3018,14 @@ msgid "" "introspected and examined." msgstr "" -#: gnu/packages/databases.scm:1852 +#: gnu/packages/databases.scm:2059 msgid "" "DBIx::Class::Schema::Loader automates the definition of a\n" "DBIx::Class::Schema by scanning database table definitions and setting up the\n" "columns, primary keys, unique constraints and relationships." msgstr "" -#: gnu/packages/databases.scm:1876 +#: gnu/packages/databases.scm:2083 msgid "" "This package provides a PostgreSQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." @@ -2952,7 +3033,7 @@ msgstr "" "Ce paquet fournit un pilote PostgreSQL pour la @dfn{Database Interface}\n" "(DBI) de Perl5." -#: gnu/packages/databases.scm:1914 +#: gnu/packages/databases.scm:2121 msgid "" "This package provides a MySQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." @@ -2960,7 +3041,7 @@ msgstr "" "Ce paquet fournit un pilote MySQL pour la @dfn{Database Interface}\n" "(DBI) de Perl5." -#: gnu/packages/databases.scm:1934 +#: gnu/packages/databases.scm:2141 msgid "" "DBD::SQLite is a Perl DBI driver for SQLite, that includes\n" "the entire thing in the distribution. So in order to get a fast transaction\n" @@ -2971,14 +3052,14 @@ msgstr "" "de la distribution. Donc il suffit d'installer ce module dans votre projet\n" "pour obtenir un RDBMS capable de transactions rapides et rien d'autre." -#: gnu/packages/databases.scm:1959 +#: gnu/packages/databases.scm:2166 msgid "" "@code{MySQL::Config} emulates the @code{load_defaults} function from\n" "libmysqlclient. It will fill an array with long options, ready to be parsed by\n" "@code{Getopt::Long}." msgstr "" -#: gnu/packages/databases.scm:1983 +#: gnu/packages/databases.scm:2190 msgid "" "This module was inspired by the excellent DBIx::Abstract.\n" "While based on the concepts used by DBIx::Abstract, the concepts used have\n" @@ -2988,7 +3069,7 @@ msgid "" "time your data changes." msgstr "" -#: gnu/packages/databases.scm:2010 +#: gnu/packages/databases.scm:2217 msgid "" "This module is nearly identical to @code{SQL::Abstract} 1.81, and exists\n" "to preserve the ability of users to opt into the new way of doing things in\n" @@ -3004,20 +3085,20 @@ msgid "" "your data changes, as this module figures it out." msgstr "" -#: gnu/packages/databases.scm:2043 +#: gnu/packages/databases.scm:2250 msgid "" "This module tries to split any SQL code, even including\n" "non-standard extensions, into the atomic statements it is composed of." msgstr "" -#: gnu/packages/databases.scm:2062 +#: gnu/packages/databases.scm:2269 msgid "" "SQL::Tokenizer is a tokenizer for SQL queries. It does not\n" "claim to be a parser or query verifier. It just creates sane tokens from a\n" "valid SQL query." msgstr "" -#: gnu/packages/databases.scm:2081 +#: gnu/packages/databases.scm:2288 msgid "" "Unixodbc is a library providing an API with which to access\n" "data sources. Data sources include SQL Servers and any software with an ODBC\n" @@ -3027,14 +3108,14 @@ msgstr "" "d'accéder à des sources de données. Ces sources incluent des serveurs SQL\n" "où tout logiciel avec un driver ODBC." -#: gnu/packages/databases.scm:2113 +#: gnu/packages/databases.scm:2320 msgid "" "The goal for nanodbc is to make developers happy by providing\n" "a simpler and less verbose API for working with ODBC. Common tasks should be\n" "easy, requiring concise and simple code." msgstr "" -#: gnu/packages/databases.scm:2174 +#: gnu/packages/databases.scm:2381 #, fuzzy #| msgid "" #| "SQLite is a software library that implements a self-contained, serverless,\n" @@ -3053,27 +3134,35 @@ msgstr "" "SQLite est le moteur de bases de données SQL le plus déployé de part le monde.\n" "Le code source de SQLite est dans le domaine public." -#: gnu/packages/databases.scm:2225 +#: gnu/packages/databases.scm:2432 msgid "" "Redis is an advanced key-value cache and store. Redis\n" "supports many data structures including strings, hashes, lists, sets, sorted\n" "sets, bitmaps and hyperloglogs." msgstr "" -#: gnu/packages/databases.scm:2247 +#: gnu/packages/databases.scm:2454 msgid "" "This package provides a Ruby client that tries to match Redis' API\n" "one-to-one, while still providing an idiomatic interface." msgstr "" -#: gnu/packages/databases.scm:2275 +#: gnu/packages/databases.scm:2479 +msgid "Package rdb implements parsing and encoding of the Redis RDB file format." +msgstr "" + +#: gnu/packages/databases.scm:2505 +msgid "Redigo is a Go client for the Redis database." +msgstr "" + +#: gnu/packages/databases.scm:2531 msgid "" "Kyoto Cabinet is a standalone file-based database that supports Hash\n" "and B+ Tree data storage models. It is a fast key-value lightweight\n" "database and supports many programming languages. It is a NoSQL database." msgstr "" -#: gnu/packages/databases.scm:2303 +#: gnu/packages/databases.scm:2559 msgid "" "Tokyo Cabinet is a library of routines for managing a database.\n" "The database is a simple data file containing records, each is a pair of a\n" @@ -3083,7 +3172,7 @@ msgid "" "organized in hash table, B+ tree, or fixed-length array." msgstr "" -#: gnu/packages/databases.scm:2339 +#: gnu/packages/databases.scm:2595 msgid "" "WiredTiger is an extensible platform for data management. It supports\n" "row-oriented storage (where all columns of a row are stored together),\n" @@ -3092,7 +3181,7 @@ msgid "" "trees (LSM), for sustained throughput under random insert workloads." msgstr "" -#: gnu/packages/databases.scm:2389 +#: gnu/packages/databases.scm:2645 msgid "" "This package provides Guile bindings to the WiredTiger ``NoSQL''\n" "database." @@ -3100,11 +3189,11 @@ msgstr "" "Ce paquet fournit les liaisons Guile pour le système de base de données « NoSQL »\n" "WiredTiger." -#: gnu/packages/databases.scm:2419 +#: gnu/packages/databases.scm:2675 msgid "The DB::File module provides Perl bindings to the Berkeley DB version 1.x." msgstr "" -#: gnu/packages/databases.scm:2467 +#: gnu/packages/databases.scm:2723 msgid "" "The @dfn{Lightning Memory-Mapped Database} (LMDB) is a high-performance\n" "transactional database. Unlike more complex relational databases, LMDB handles\n" @@ -3117,7 +3206,7 @@ msgid "" "virtual address space — not physical RAM." msgstr "" -#: gnu/packages/databases.scm:2501 +#: gnu/packages/databases.scm:2757 msgid "" "@code{lmdbxx} is a comprehensive @code{C++} wrapper for the\n" "@code{LMDB} embedded database library, offering both an error-checked\n" @@ -3125,14 +3214,22 @@ msgid "" "semantics." msgstr "" -#: gnu/packages/databases.scm:2535 +#: gnu/packages/databases.scm:2791 msgid "" "Libpqxx is a C++ library to enable user programs to communicate with the\n" "PostgreSQL database back-end. The database back-end can be local or it may be\n" "on another machine, accessed via TCP/IP." msgstr "" -#: gnu/packages/databases.scm:2561 +#: gnu/packages/databases.scm:2819 +msgid "" +"Bolt is a pure Go key/value store inspired by Howard Chu's\n" +"LMDB project. The goal of the project is to provide a simple, fast, and\n" +"reliable database for projects that don't require a full database server such as\n" +"Postgres or MySQL." +msgstr "" + +#: gnu/packages/databases.scm:2845 msgid "" "Peewee is a simple and small ORM (object-relation mapping) tool. Peewee\n" "handles converting between pythonic values and those used by databases, so you\n" @@ -3141,20 +3238,20 @@ msgid "" "can autogenerate peewee models using @code{pwiz}, a model generator." msgstr "" -#: gnu/packages/databases.scm:2584 +#: gnu/packages/databases.scm:2868 msgid "" "Pypika-tortoise is a fork of pypika which has been\n" "streamlined for its use in the context of tortoise-orm. It removes support\n" "for many database kinds that tortoise-orm doesn't need, for example." msgstr "" -#: gnu/packages/databases.scm:2604 +#: gnu/packages/databases.scm:2888 msgid "" "This package is a Sphinx extension providing additional\n" "coroutine-specific markup." msgstr "" -#: gnu/packages/databases.scm:2632 +#: gnu/packages/databases.scm:2916 msgid "" "@code{asyncpg} is a database interface library designed\n" "specifically for PostgreSQL and Python/asyncio. @code{asyncpg} is an\n" @@ -3162,14 +3259,14 @@ msgid "" "with Python's asyncio framework." msgstr "" -#: gnu/packages/databases.scm:2652 +#: gnu/packages/databases.scm:2936 msgid "" "@code{asyncmy} is a fast @code{asyncio} MySQL driver, which\n" "reuses most of @code{pymysql} and @code{aiomysql} but rewrites the core\n" "protocol with Cython for performance." msgstr "" -#: gnu/packages/databases.scm:2672 +#: gnu/packages/databases.scm:2956 msgid "" "@code{aiomysql} is a driver for accessing a MySQL database\n" "from the @code{asyncio} Python framework. It depends on and reuses most parts\n" @@ -3177,7 +3274,7 @@ msgid "" "@code{aiopg} library." msgstr "" -#: gnu/packages/databases.scm:2705 +#: gnu/packages/databases.scm:2989 msgid "" "Tortoise ORM is an easy-to-use asyncio ORM (Object\n" "Relational Mapper) inspired by Django. Tortoise ORM was built with relations\n" @@ -3186,7 +3283,7 @@ msgid "" "with relational data." msgstr "" -#: gnu/packages/databases.scm:2749 +#: gnu/packages/databases.scm:3033 msgid "" "SQLCipher is an implementation of SQLite, extended to\n" "provide transparent 256-bit AES encryption of database files. Pages are\n" @@ -3195,19 +3292,19 @@ msgid "" "development." msgstr "" -#: gnu/packages/databases.scm:2782 +#: gnu/packages/databases.scm:3066 msgid "" "@code{python-pyodbc-c} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2807 +#: gnu/packages/databases.scm:3091 msgid "" "@code{python-pyodbc} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2840 +#: gnu/packages/databases.scm:3124 msgid "" "MDB Tools is a set of tools and applications to read the\n" "proprietary MDB file format used in Microsoft's Access database package. This\n" @@ -3216,39 +3313,45 @@ msgid "" "etc., and an SQL engine for performing simple SQL queries." msgstr "" -#: gnu/packages/databases.scm:2886 +#: gnu/packages/databases.scm:3153 +#, fuzzy +#| msgid "This package provides an database interface for Perl." +msgid "This package provides a MongoDB driver for Go." +msgstr "Ce paquet fournit une interface de base de données pour Perl." + +#: gnu/packages/databases.scm:3194 msgid "" "python-lmdb or py-lmdb is a Python binding for the @dfn{Lightning\n" "Memory-Mapped Database} (LMDB), a high-performance key-value store." msgstr "" -#: gnu/packages/databases.scm:2925 +#: gnu/packages/databases.scm:3233 msgid "" "Orator provides a simple ActiveRecord-like Object Relational Mapping\n" "implementation for Python." msgstr "" -#: gnu/packages/databases.scm:2963 +#: gnu/packages/databases.scm:3271 msgid "" "Virtuoso is a scalable cross-platform server that combines\n" "relational, graph, and document data management with web application server\n" "and web services platform functionality." msgstr "" -#: gnu/packages/databases.scm:2990 +#: gnu/packages/databases.scm:3298 msgid "" "Cassandra Cluster Manager is a development tool for testing\n" "local Cassandra clusters. It creates, launches and removes Cassandra clusters\n" "on localhost." msgstr "" -#: gnu/packages/databases.scm:3018 +#: gnu/packages/databases.scm:3326 msgid "" "Pysqlite provides SQLite bindings for Python that comply to the\n" "Database API 2.0T." msgstr "" -#: gnu/packages/databases.scm:3048 +#: gnu/packages/databases.scm:3356 msgid "" "SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that\n" "gives application developers the full power and flexibility of SQL. It\n" @@ -3257,14 +3360,14 @@ msgid "" "simple and Pythonic domain language." msgstr "" -#: gnu/packages/databases.scm:3086 +#: gnu/packages/databases.scm:3382 msgid "" "This package contains type stubs and a mypy plugin to\n" "provide more precise static types and type inference for SQLAlchemy\n" "framework." msgstr "" -#: gnu/packages/databases.scm:3118 +#: gnu/packages/databases.scm:3414 msgid "" "SQLAlchemy-utils provides various utility functions and custom data types\n" "for SQLAlchemy. SQLAlchemy is an SQL database abstraction library for Python.\n" @@ -3281,7 +3384,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/databases.scm:3165 +#: gnu/packages/databases.scm:3461 msgid "" "This package provides mock helpers for SQLAlchemy that makes it easy\n" "to mock an SQLAlchemy session while preserving the ability to do asserts.\n" @@ -3291,13 +3394,13 @@ msgid "" "this library provides functions to facilitate such comparisons." msgstr "" -#: gnu/packages/databases.scm:3196 +#: gnu/packages/databases.scm:3492 msgid "" "Alembic is a lightweight database migration tool for usage with the\n" "SQLAlchemy Database Toolkit for Python." msgstr "" -#: gnu/packages/databases.scm:3221 +#: gnu/packages/databases.scm:3517 msgid "" "PickleShare is a small ‘shelve’-like datastore with concurrency support.\n" "Like shelve, a PickleShareDB object acts like a normal dictionary. Unlike\n" @@ -3308,7 +3411,7 @@ msgid "" "PickleShare." msgstr "" -#: gnu/packages/databases.scm:3275 +#: gnu/packages/databases.scm:3571 msgid "" "APSW is a Python wrapper for the SQLite\n" "embedded relational database engine. In contrast to other wrappers such as\n" @@ -3316,21 +3419,21 @@ msgid "" "translate the complete SQLite API into Python." msgstr "" -#: gnu/packages/databases.scm:3312 +#: gnu/packages/databases.scm:3608 msgid "" "The package aiosqlite replicates the standard sqlite3 module, but with\n" "async versions of all the standard connection and cursor methods, and context\n" "managers for automatically closing connections." msgstr "" -#: gnu/packages/databases.scm:3333 +#: gnu/packages/databases.scm:3629 msgid "" "This package provides the Neo4j Python driver that connects\n" "to the database using Neo4j's binary protocol. It aims to be minimal, while\n" "being idiomatic to Python." msgstr "" -#: gnu/packages/databases.scm:3353 +#: gnu/packages/databases.scm:3649 msgid "" "This package provides a client library and toolkit for\n" "working with Neo4j from within Python applications and from the command\n" @@ -3338,26 +3441,38 @@ msgid "" "designed to be easy and intuitive to use." msgstr "" -#: gnu/packages/databases.scm:3379 +#: gnu/packages/databases.scm:3675 msgid "" "psycopg2 is a thread-safe PostgreSQL adapter that implements DB-API\n" "2.0." msgstr "" -#: gnu/packages/databases.scm:3413 +#: gnu/packages/databases.scm:3702 +msgid "" +"This module provides connection pool implementations that can be used\n" +"with the @code{psycopg} PostgreSQL driver." +msgstr "" + +#: gnu/packages/databases.scm:3776 +msgid "" +"Psycopg 3 is a new implementation of the popular @code{psycopg2}\n" +"database adapter for Python." +msgstr "" + +#: gnu/packages/databases.scm:3810 msgid "" "This package provides a program to build Entity\n" "Relationship diagrams from a SQLAlchemy model (or directly from the\n" "database)." msgstr "" -#: gnu/packages/databases.scm:3443 +#: gnu/packages/databases.scm:3840 msgid "" "Yoyo is a database schema migration tool. Migrations are written as SQL\n" "files or Python scripts that define a list of migration steps." msgstr "" -#: gnu/packages/databases.scm:3464 +#: gnu/packages/databases.scm:3861 msgid "" "MySQLdb is an interface to the popular MySQL database server\n" "for Python. The design goals are:\n" @@ -3368,13 +3483,13 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/databases.scm:3490 +#: gnu/packages/databases.scm:3887 msgid "" "Python-hiredis is a python extension that wraps protocol\n" "parsing code in hiredis. It primarily speeds up parsing of multi bulk replies." msgstr "" -#: gnu/packages/databases.scm:3517 +#: gnu/packages/databases.scm:3914 msgid "" "Fakeredis is a pure-Python implementation of the redis-py Python client\n" "that simulates talking to a redis server. It was created for a single purpose:\n" @@ -3385,49 +3500,49 @@ msgid "" "reasonable substitute." msgstr "" -#: gnu/packages/databases.scm:3545 +#: gnu/packages/databases.scm:3942 msgid "This package provides a Python interface to the Redis key-value store." msgstr "Ce paquet fournit une interface Python pour le dépôt clef-valeur Redis." -#: gnu/packages/databases.scm:3586 +#: gnu/packages/databases.scm:3983 msgid "" "RQ (Redis Queue) is a simple Python library for queueing jobs and\n" "processing them in the background with workers. It is backed by Redis and it\n" "is designed to have a low barrier to entry." msgstr "" -#: gnu/packages/databases.scm:3623 +#: gnu/packages/databases.scm:4020 msgid "" "This package provides job scheduling capabilities to @code{python-rq}\n" "(Redis Queue)." msgstr "" -#: gnu/packages/databases.scm:3643 +#: gnu/packages/databases.scm:4040 msgid "" "@code{trollius-redis} is a Redis client for Python\n" " trollius. It is an asynchronous IO (PEP 3156) implementation of the\n" " Redis protocol." msgstr "" -#: gnu/packages/databases.scm:3686 +#: gnu/packages/databases.scm:4083 msgid "" "Sqlparse is a non-validating SQL parser for Python. It\n" "provides support for parsing, splitting and formatting SQL statements." msgstr "" -#: gnu/packages/databases.scm:3703 +#: gnu/packages/databases.scm:4101 msgid "" "@code{python-sql} is a library to write SQL queries, that\n" "transforms idiomatic python function calls to well-formed SQL queries." msgstr "" -#: gnu/packages/databases.scm:3726 +#: gnu/packages/databases.scm:4124 msgid "" "PyPika is a python SQL query builder that exposes the full richness of\n" "the SQL language using a syntax that reflects the resulting query." msgstr "" -#: gnu/packages/databases.scm:3852 +#: gnu/packages/databases.scm:4250 msgid "" "Apache Arrow is a columnar in-memory analytics layer\n" "designed to accelerate big data. It houses a set of canonical in-memory\n" @@ -3436,21 +3551,21 @@ msgid "" "algorithm implementations." msgstr "" -#: gnu/packages/databases.scm:3912 +#: gnu/packages/databases.scm:4310 msgid "" "This library provides a Pythonic API wrapper for the reference Arrow C++\n" "implementation, along with tools for interoperability with pandas, NumPy, and\n" "other traditional Python scientific computing packages." msgstr "" -#: gnu/packages/databases.scm:3933 +#: gnu/packages/databases.scm:4331 msgid "" "This package provides a Python client library for CrateDB.\n" "It implements the Python DB API 2.0 specification and includes support for\n" "SQLAlchemy." msgstr "" -#: gnu/packages/databases.scm:3952 +#: gnu/packages/databases.scm:4350 msgid "" "This library implements a database independent abstraction layer in C,\n" "similar to the DBI/DBD layer in Perl. Writing one generic set of code,\n" @@ -3458,7 +3573,7 @@ msgid "" "simultaneous database connections by using this framework." msgstr "" -#: gnu/packages/databases.scm:4018 +#: gnu/packages/databases.scm:4416 msgid "" "The @code{libdbi-drivers} library provides the database specific drivers\n" "for the @code{libdbi} framework.\n" @@ -3471,26 +3586,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:4060 +#: gnu/packages/databases.scm:4458 msgid "" "SOCI is an abstraction layer for several database backends, including\n" "PostreSQL, SQLite, ODBC and MySQL." msgstr "" -#: gnu/packages/databases.scm:4084 +#: gnu/packages/databases.scm:4482 msgid "" "FreeTDS is an implementation of the Tabular DataStream protocol, used for\n" "connecting to MS SQL and Sybase servers over TCP/IP." msgstr "" -#: gnu/packages/databases.scm:4106 +#: gnu/packages/databases.scm:4504 msgid "" "TinyDB is a small document oriented database written in pure Python\n" "with no external dependencies. The targets are small apps that would\n" "be blown away by a SQL-DB or an external database server." msgstr "" -#: gnu/packages/databases.scm:4154 +#: gnu/packages/databases.scm:4552 msgid "" "Sequeler is a native Linux SQL client built in Vala and\n" "Gtk. It allows you to connect to your local and remote databases, write SQL in\n" @@ -3498,7 +3613,13 @@ msgid "" "a Gtk.Grid Widget." msgstr "" -#: gnu/packages/debug.scm:111 +#: gnu/packages/databases.scm:4594 +msgid "" +"Sqlitebrowser is a high quaility, visual, open source tool to\n" +"create design, and edit database file compatible with SQLite." +msgstr "" + +#: gnu/packages/debug.scm:112 msgid "" "Delta assists you in minimizing \"interesting\" files subject to a test\n" "of their interestingness. A common such situation is when attempting to\n" @@ -3506,7 +3627,7 @@ msgid "" "program to exhibit a bug." msgstr "" -#: gnu/packages/debug.scm:172 +#: gnu/packages/debug.scm:173 msgid "" "C-Reduce is a tool that takes a large C or C++ program that has a\n" "property of interest (such as triggering a compiler bug) and automatically\n" @@ -3515,14 +3636,14 @@ msgid "" "tools that process C/C++ code." msgstr "" -#: gnu/packages/debug.scm:219 +#: gnu/packages/debug.scm:220 msgid "" "C-Vise is a Python port of the C-Reduce tool that is fully compatible\n" "and uses the same efficient LLVM-based C/C++ @code{clang_delta} reduction\n" "tool." msgstr "" -#: gnu/packages/debug.scm:289 +#: gnu/packages/debug.scm:290 msgid "" "American fuzzy lop is a security-oriented fuzzer that employs a novel\n" "type of compile-time instrumentation and genetic algorithms to automatically\n" @@ -3533,7 +3654,7 @@ msgid "" "down the road." msgstr "" -#: gnu/packages/debug.scm:433 +#: gnu/packages/debug.scm:434 msgid "" "QEMU is a generic machine emulator and virtualizer. This package\n" "of QEMU is used only by the american fuzzy lop package.\n" @@ -3549,7 +3670,7 @@ msgid "" "server and embedded PowerPC, and S390 guests." msgstr "" -#: gnu/packages/debug.scm:501 +#: gnu/packages/debug.scm:502 msgid "" "Stress Make is a customized GNU Make that explicitly manages the order\n" "in which concurrent jobs are run to provoke erroneous behavior into becoming\n" @@ -3559,14 +3680,14 @@ msgid "" "conditions." msgstr "" -#: gnu/packages/debug.scm:529 +#: gnu/packages/debug.scm:530 msgid "" "Zzuf is a transparent application input fuzzer. It works by\n" "intercepting file operations and changing random bits in the program's\n" "input. Zzuf's behaviour is deterministic, making it easy to reproduce bugs." msgstr "" -#: gnu/packages/debug.scm:581 +#: gnu/packages/debug.scm:582 msgid "" "Scanmem is a debugging utility designed to isolate the\n" "address of an arbitrary variable in an executing process. Scanmem simply\n" @@ -3575,13 +3696,13 @@ msgid "" "the position of the variable and allows you to modify its value." msgstr "" -#: gnu/packages/debug.scm:611 +#: gnu/packages/debug.scm:612 msgid "" "Remake is an enhanced version of GNU Make that adds improved\n" "error reporting, better tracing, profiling, and a debugger." msgstr "" -#: gnu/packages/debug.scm:667 +#: gnu/packages/debug.scm:668 msgid "" "rr is a lightweight tool for recording, replaying and debugging\n" "execution of applications (trees of processes and threads). Debugging extends\n" @@ -3590,13 +3711,13 @@ msgid "" "fun." msgstr "" -#: gnu/packages/debug.scm:695 +#: gnu/packages/debug.scm:696 msgid "" "The @code{libbacktrace} library can be linked into a C/C++\n" "program to produce symbolic backtraces." msgstr "" -#: gnu/packages/debug.scm:735 +#: gnu/packages/debug.scm:736 msgid "" "The libleak tool detects memory leaks by hooking memory\n" "functions such as @code{malloc}. It comes as a shared object to be pre-loaded\n" @@ -3608,7 +3729,7 @@ msgid "" "use than similar tools like @command{mtrace}." msgstr "" -#: gnu/packages/debug.scm:763 +#: gnu/packages/debug.scm:764 msgid "" "@code{cgdb} is a lightweight curses (terminal-based) interface to the\n" "GNU Debugger (GDB). In addition to the standard gdb console, cgdb provides\n" @@ -3617,7 +3738,7 @@ msgid "" "using cgdb." msgstr "" -#: gnu/packages/debug.scm:798 +#: gnu/packages/debug.scm:799 msgid "" "MspDebug supports FET430UIF, eZ430, RF2500 and Olimex\n" "MSP430-JTAG-TINY programmers, as well as many other compatible\n" @@ -3636,14 +3757,14 @@ msgstr "" "tous les tests écrits pour un programme. Ainsi, chaque programme peut avoir\n" "plusieurs suites de tests, qui sont toutes gérées par un seul programme." -#: gnu/packages/games.scm:287 +#: gnu/packages/games.scm:288 msgid "" "Abe's Amazing Adventure is a scrolling,\n" "platform-jumping, key-collecting, ancient pyramid exploring game, vaguely in\n" "the style of similar games for the Commodore+4." msgstr "Abe's Amazing Adventure est un jeu de plateforme défilant où le joueur explore d'anciennes pyramides et récolte des clefs, dans un style rappelant vaguement le style de jeux similaires pour la Commodore+4." -#: gnu/packages/games.scm:357 +#: gnu/packages/games.scm:358 msgid "" "Adanaxis is a fast-moving first person shooter set in deep space, where\n" "the fundamentals of space itself are changed. By adding another dimension to\n" @@ -3654,7 +3775,7 @@ msgid "" "mouse and joystick control, and original music." msgstr "Adanaxis est un jeu de tir à la première personne nerveux dans l'espace lointain, où les fondements même de l'univers sont différents. En ajoutant une autre dimension à l'espace, ce jeu fournit un environnement avec des mouvements dans quatre directions et six plans de rotation. Le jeu explique au début les contrôles 4D via une séquence graphique, avant de proposer 30 niveaux de jeu avec de nombreux ennemis, alliés, armes et missions. Ce jeu contient des textures en 4D, propose le contrôle à la souris ou au joystick et une musique originale." -#: gnu/packages/games.scm:401 +#: gnu/packages/games.scm:402 msgid "" "Guide Alex the Allegator through the jungle in order to save his\n" "girlfriend Lola from evil humans who want to make a pair of shoes out of her.\n" @@ -3666,7 +3787,7 @@ msgstr "" "\n" "Le jeu contient un éditeur intégré que vous pouvez utiliser pour concevoir et partager vos propres cartes." -#: gnu/packages/games.scm:431 +#: gnu/packages/games.scm:432 msgid "" "Armagetron Advanced is a multiplayer game in 3d that\n" "attempts to emulate and expand on the lightcycle sequence from the movie Tron.\n" @@ -3676,7 +3797,7 @@ msgid "" "physics settings to tweak as well." msgstr "Armagetron Advanced est un jeu multijoueur en 3d qui essaye d'émuler et étendre la séquence lightcycle du film Tron. C'est un vieux jeu d'arcade envoyé directement au 21ème siècle. Le jeu propose une arène de jeu personnalisable, un affichage tête-haute, des graphiques uniques et des IA. Pour les joueurs plus avancés, il y a aussi de nouveaux modes de jeu et un grande variété de propriétés physiques à modifier." -#: gnu/packages/games.scm:489 +#: gnu/packages/games.scm:490 msgid "" "Space is a vast area, an unbounded territory where it seems there is\n" "a room for everybody, but reversal of fortune put things differently. The\n" @@ -3688,7 +3809,7 @@ msgid "" "regret their insolence." msgstr "L'espace est vaste, c'est un territoire sans limite où il semble y avoir de la place pour tout le monde, mais un coup de malchance a tout fait basculer. Des hordes de créatures hostiles sont apparues de tous les coins sombres de l'univers, assoiffées de conquête. Leur force est immense, leurs légions interminables. cependant les humains n'ont pas capitulés sans un dernier baroud d'honneur et ont envoyés leurs meilleurs pilotes se battre. Ces envahisseurs malveillants ont choisi la mauvaise galaxie à conquérir et vous allez le prouver ! Allez leur faire regretter leur insolence." -#: gnu/packages/games.scm:556 +#: gnu/packages/games.scm:557 msgid "" "Bastet (short for Bastard Tetris) is a simple ncurses-based falling brick\n" "game. Unlike normal Tetris, Bastet does not choose the next brick at random.\n" @@ -3701,7 +3822,7 @@ msgstr "" "\n" "Jouer à bastet peut être une expérience douloureuse, surtout si vous faites souvent des canyons en attendant le grand bloc en l pour libérer quatre lignes en même temps." -#: gnu/packages/games.scm:601 +#: gnu/packages/games.scm:602 msgid "" "Tetrinet is a multiplayer Tetris-like game with powerups and\n" "attacks you can use on opponents." @@ -3709,7 +3830,7 @@ msgstr "" "Tetrinet est un jeu multijoueur à la Tetris avec des powerups et\n" "des attaques à utiliser sur vos adversaires." -#: gnu/packages/games.scm:635 +#: gnu/packages/games.scm:636 msgid "" "Vitetris is a classic multiplayer Tetris clone for the\n" "terminal." @@ -3717,7 +3838,7 @@ msgstr "" "Vitetris est un clone de Tetris multijoueur classique pour\n" "le terminal." -#: gnu/packages/games.scm:678 +#: gnu/packages/games.scm:679 msgid "" "Blobwars: Metal Blob Solid is a 2D platform game, the first\n" "in the Blobwars series. You take on the role of a fearless Blob agent. Your\n" @@ -3725,7 +3846,7 @@ msgid "" "possible, while battling many vicious aliens." msgstr "Blobwars : Metal Blob Solid est un jeu de plateforme en 2D, le premier de la série des Blobwars. Vous pouvez prendre le contrôle d'un agent Blob sans peur. Votre mission est de vous infiltrer dans diverses bases ennemies et secourir le plus de MIA possibles, tout en combattant de vilains aliens." -#: gnu/packages/games.scm:771 +#: gnu/packages/games.scm:772 msgid "" "These are the BSD games. See the fortune-mod package for fortunes.\n" "\n" @@ -3769,7 +3890,7 @@ msgstr "" "\n" "Quiz: arithmetic et quiz." -#: gnu/packages/games.scm:866 +#: gnu/packages/games.scm:867 msgid "" "BZFlag is a 3D multi-player multiplatform tank battle game that\n" "allows users to play against each other in a network environment.\n" @@ -3792,7 +3913,7 @@ msgstr "" "\n" "Il y a deux styles de jeu principaux : capture du drapeau et tir libre. En capture du drapeau, chaque équipe (en dehors des renégats) a une base et chaque équipe avec au moins un joueur a un drapeau. L'objectif est de capturer le drapeau de l'ennemi et de le ramener à votre base. Cela détruit les joueurs de cette équipe, leur retire un point et ajoute un point à votre équipe. En mode libre, il n'y a pas de drapeaux ni de base. L'objectif est simplement de remporter le plus de points possibles." -#: gnu/packages/games.scm:949 +#: gnu/packages/games.scm:950 msgid "" "Cataclysm: Dark Days Ahead (or \"DDA\" for short) is a roguelike set\n" "in a post-apocalyptic world. Struggle to survive in a harsh, persistent,\n" @@ -3804,7 +3925,7 @@ msgid "" "want what you have." msgstr "Cataclysm : Dark Days Ahead (« DDA » pour faire plus court) est un roguelike dans un monde post-apocalyptique. Luttez pour survivre dans un monde difficile, persistent et généré procéduralement. Récupérez les restes d'une civilisation morte pour la nourriture, l'équipement, ou si vous avez de la chance, un véhicule avec un plein d'essence pour vous amener en dehors de Dodge. Combattez pour détruire ou échapper à un grande variété de monstruosités, entre zombies, insectes géants, robots tueurs et autres choses plus étranges et mortelles encore, et à d'autres comme vous, qui veulent ce que vous possédez." -#: gnu/packages/games.scm:998 +#: gnu/packages/games.scm:999 msgid "" "Cockatrice is a program for playing tabletop card games\n" "over a network. Its server design prevents users from manipulating the game\n" @@ -3816,7 +3937,7 @@ msgstr "" "et d'avoir un avantage injuste. Le client fournit aussi un mode solo, qui\n" "vous permet de vous préparer hors-ligne." -#: gnu/packages/games.scm:1052 +#: gnu/packages/games.scm:1053 msgid "" "This package provides a reimplementation of the 1997 Bullfrog business\n" "simulation game @i{Theme Hospital}. As well as faithfully recreating the\n" @@ -3824,7 +3945,7 @@ msgid "" "more. This package does @emph{not} provide the game assets." msgstr "Ce paquet fournit une réimplémentation du jeu de simulation de compagnie Bullfrog de 1997 @i{Theme Hospital}. En plus de recréer fidèlement le moteur d'origine, CorsixTH ajoute la prise en charge des grandes résolutions, des niveaux personnalisés et bien plus. Ce paquet ne fournit @emph{pas} les ressources du jeu." -#: gnu/packages/games.scm:1094 +#: gnu/packages/games.scm:1095 msgid "" "Cowsay is basically a text filter. Send some text into it,\n" "and you get a cow saying your text. If you think a talking cow isn't enough,\n" @@ -3832,14 +3953,14 @@ msgid "" "tired of cows, a variety of other ASCII-art messengers are available." msgstr "Cowsay est essentiellement un filtre de texte. Envoyez lui du texte et vous obtenez une vache qui dit votre texte. Si vous pensez qu'une vache qui parle n'est pas suffisant, les vache pensent aussi : tout ce que vous avez à faire est de lancer @command{cowthink}. Si vous en avez marre des vaches, il y a aussi toute une variété de messagers en ASCII-art." -#: gnu/packages/games.scm:1135 +#: gnu/packages/games.scm:1136 msgid "" "@command{lolcat} concatenates files and streams like\n" "regular @command{cat}, but it also adds terminal escape codes between\n" "characters and lines resulting in a rainbow effect." msgstr "@command{lolcat} concatène des fichiers et des flux comme la commande @command{cat}, mais ajoute aussi des codes d'échappement entre les caractères et les lignes pour obtenir un effet arc-en-ciel." -#: gnu/packages/games.scm:1164 +#: gnu/packages/games.scm:1165 #, scheme-format msgid "" "This package provides the Fallout 2 game engine. Game data\n" @@ -3848,7 +3969,7 @@ msgstr "" "Ce paquet fournit le moteur de jeu de Fallout 2. Les données du jeu\n" "se placent dans @file{~/.local/share/falltergeist}." -#: gnu/packages/games.scm:1275 +#: gnu/packages/games.scm:1276 msgid "" "FooBillard++ is an advanced 3D OpenGL billiard game\n" "based on the original foobillard 3.0a sources from Florian Berger.\n" @@ -3886,7 +4007,7 @@ msgstr "" "@item Et bien plus\n" "@end itemize" -#: gnu/packages/games.scm:1342 +#: gnu/packages/games.scm:1343 msgid "" "The Freedoom project aims to create a complete free content first person\n" "shooter game. Freedoom by itself is just the raw material for a game: it must\n" @@ -3900,7 +4021,7 @@ msgstr "" "pour être jouable. Freedoom complète le moteur Doom sur trois niveaux : les\n" "graphismes, les effets sonores et la musique pour faire un jeu entièrement libre." -#: gnu/packages/games.scm:1392 +#: gnu/packages/games.scm:1394 msgid "" "Freedroid RPG is an @dfn{RPG} (Role-Playing Game) with isometric graphics.\n" "The game tells the story of a world destroyed by a conflict between robots and\n" @@ -3910,7 +4031,7 @@ msgid "" "real-time combat." msgstr "Freedroid RPG est un @dfn{JDR} (jeu de rôle) avec des graphiques isométriques. Le jeu raconte l'histoire d'un monde détruit par un conflit entre robots et leurs maîtres humains. Pour restaurer la paix, le joueur doit compléter diverses quêtes tout en combattant les robot rebelles — soit en en prenant le contrôle, soit simplement en les annihilant avec des armes de corps-à-corps ou à distance en combat temps-réel." -#: gnu/packages/games.scm:1471 +#: gnu/packages/games.scm:1473 msgid "" "Golly simulates Conway's Game of Life and many other types of cellular\n" "automata. The following features are available:\n" @@ -3946,13 +4067,13 @@ msgstr "" "@item une option d'adaptation automatique pour garder les motifs en vue\n" "@end enumerate" -#: gnu/packages/games.scm:1527 +#: gnu/packages/games.scm:1529 msgid "" "This package provides a userspace daemon for the Nintendo\n" "Joy-Con controllers." msgstr "Ce paquet fournit un démon en espace utilisateur pour les contrôleurs Joy-Con de Nintendo." -#: gnu/packages/games.scm:1557 +#: gnu/packages/games.scm:1559 msgid "" "Engine for Caesar III, a city-building real-time strategy game.\n" "Julius includes some UI enhancements while preserving the logic (including\n" @@ -3960,7 +4081,7 @@ msgid "" "does not include game data." msgstr "Moteur pour Caesar III, un jeu de stratégie en temps-réel et de construction de ville. Julius contient des améliorations graphique tout en préservant la logique (avec les bogues) du jeu d'origine, pour que les parties sauvegardées restent compatibles. Ce paquet n'inclut pas les données du jeu." -#: gnu/packages/games.scm:1591 +#: gnu/packages/games.scm:1593 msgid "" "Fork of Julius, an engine for the a city-building real-time strategy\n" "game Caesar III. Gameplay enhancements include:\n" @@ -3985,7 +4106,7 @@ msgstr "" "@item le contrôle du zoom.\n" "@end itemize\n" -#: gnu/packages/games.scm:1630 +#: gnu/packages/games.scm:1632 msgid "" "Me and My Shadow is a puzzle/platform game in which you try\n" "to reach the exit by solving puzzles. Spikes, moving blocks, fragile blocks\n" @@ -3993,7 +4114,7 @@ msgid "" "shadow mimic them to reach blocks you couldn't reach alone." msgstr "Me and My Shadow est un jeu de puzzle et de plateforme dans lequel vous essayez d'atteindre la sortie en résolvant des puzzles. Des piques, des blocs se déplaçant, des blocs fragiles et bien plus se trouvent sur votre chemin. Enregistrez vos mouvements et laisser votre ombre vous mimer pour atteindre des blocs que vous ne pouviez pas atteindre seul." -#: gnu/packages/games.scm:1686 +#: gnu/packages/games.scm:1688 msgid "" "@code{Open Surge} is a 2D retro side-scrolling platformer\n" "inspired by the Sonic games. The player runs at high speeds through each\n" @@ -4001,7 +4122,7 @@ msgid "" "built-in level editor." msgstr "@code{Open Surge} est un jeu rétro de plateforme à défilement horizontal en 2D inspiré par les jeux Sonic. le joueur court à grande vitesse à travers des niveaux en collectant des objets et en évitant des obstacles. Le jeu contient un éditeur de niveau." -#: gnu/packages/games.scm:1732 +#: gnu/packages/games.scm:1734 msgid "" "Knights is a multiplayer game involving several knights who\n" "must run around a dungeon and complete various quests. Each game revolves\n" @@ -4013,7 +4134,7 @@ msgid "" "destroying an ancient book using a special wand." msgstr "Knights est un jeu multijoueur avec plusieurs chevaliers qui doivent parcourir un donjon et compléter diverses quêtes. Chaque partie tourne autour d'une quête — par exemple, vous devez trouver certains objets et les rapporter à votre point de départ. Ça a l'air facile, mais comme il n'y a assez d'objets dans le donjon que pour la victoire d'un seul joueur, vous devrez peut-être tuer vos adversaires pour récupérer leurs possessions ! D'autres quêtes vous feront vous échapper d'un donjon, combattre à mort les chevaliers ennemis ou détruire un ancien livre avec une baguette spéciale." -#: gnu/packages/games.scm:1780 +#: gnu/packages/games.scm:1781 msgid "" "GNOME 2048 provides a 2D grid for playing 2048, a\n" "single-player sliding tile puzzle game. The objective of the game is to merge\n" @@ -4025,7 +4146,7 @@ msgstr "" "qui ont le même nombre jusqu'à atteindre la somme de 2048 sur une seule\n" "tuile." -#: gnu/packages/games.scm:1819 +#: gnu/packages/games.scm:1820 msgid "" "GNOME Chess provides a 2D board for playing chess games\n" "against human or computer players. It supports loading and saving games in\n" @@ -4033,7 +4154,7 @@ msgid "" "such as chess or stockfish." msgstr "GNOME Chess fournit un plateau en 2D pour jouer aux échecs contre un humain ou un ordinateur. Il prend en charge le chargement et la sauvegarde des parties en notation de jeu portable. Pour joueur contre un ordinateur, installez un moteur d'échecs comme chess ou stockfish." -#: gnu/packages/games.scm:1880 +#: gnu/packages/games.scm:1881 msgid "" "The GNU backgammon application (also known as \"gnubg\") can\n" "be used for playing, analyzing and teaching the game. It has an advanced\n" @@ -4047,7 +4168,7 @@ msgstr "" "et aux joueurs avancés. En plus d'une interface en ligne de commande, il possède\n" "aussi une représentation 3D attractive du plateau de jeu." -#: gnu/packages/games.scm:1921 +#: gnu/packages/games.scm:1922 msgid "" "GNUbik is a puzzle game in which you must manipulate a cube to make\n" "each of its faces have a uniform color. The game is customizable, allowing\n" @@ -4061,7 +4182,7 @@ msgstr "" "pouvez même utiliser des photos pour les faces à la place des couleurs. Le jeu\n" "peut être scripté avec Guile." -#: gnu/packages/games.scm:1944 +#: gnu/packages/games.scm:1945 msgid "" "GNU Shogi is a program that plays the game Shogi (Japanese\n" "Chess). It is similar to standard chess but this variant is far more complicated." @@ -4069,7 +4190,7 @@ msgstr "" "GNU Shogi est un programme qui joue au Shōgi (les échecs japonais).\n" "Il est similaire aux échecs standards mais cette variante est bien plus complexe." -#: gnu/packages/games.scm:1974 +#: gnu/packages/games.scm:1975 msgid "" "LTris is a tetris clone: differently shaped blocks are falling down the\n" "rectangular playing field and can be moved sideways or rotated by 90 degree\n" @@ -4083,7 +4204,7 @@ msgid "" "watch your CPU playing while enjoying a cup of tea!" msgstr "LTris est un clone de tetris : des blocs de formes différentes tombent dans la zone de jeu rectangulaire et vous pouvez les déplacer ou les tourner de 90 degrés, dans le but de construire des lignes sans trous qui disparaissent alors (ce qui fait tomber les blocs du dessus). Ltris a trois modes de jeu : en mode classique, vous jouez jusqu'à ce que la pile de blocs atteigne le haut de l'air de jeu et qu'aucun nouveau bloc ne puisse entrer. En mode figures, l'air de jeu est rempli d'une nouvelle figure à chaque niveau et plus tard des tuiles et des lignes apparaissent soudainement. En mode multijoueur jusqu'à trois joueurs (humains ou machines) sont en compétition en envoyant leurs lignes supprimées aux autres joueurs. Il y a aussi un mode démo dans lequel vous pouvez admirer l'ordinateur jouer tout en buvant une tasse de thé !" -#: gnu/packages/games.scm:2097 +#: gnu/packages/games.scm:2098 msgid "" "NetHack is a single player dungeon exploration game that runs\n" "on a wide variety of computer systems, with a variety of graphical and text\n" @@ -4097,7 +4218,7 @@ msgid "" "role, and your gender." msgstr "NetHack est un jeu d'exploration de donjon solo qui tourne sur une grande variété de machines, avec diverses interfaces graphique et textuelles qui utilisent toutes les même moteur. contrairement à d'autres jeux inspirés de Donjons & Dragons, l'accent est mis sur la découverte des détails du donjon et non simplement sur le combat avec tout ce qui bouge — en fait tuer tout ce qui bouge est une bonne manière de mourir rapidement. Chaque partie présente un paysage différent — le générateur de nombres aléatoires fournit un nombre virtuellement illimité de variations dans les donjons et ses habitants à découvrir. Vous pouvez choisir parmi plusieurs personnages : vous pouvez choisir votre race, votre rôle et votre genre." -#: gnu/packages/games.scm:2141 +#: gnu/packages/games.scm:2142 msgid "" "PipeWalker is a simple puzzle game with many diffent themes: connect all\n" "computers to one network server, bring water from a source to the taps, etc.\n" @@ -4106,19 +4227,19 @@ msgid "" "Every puzzle has a complete solution, although there may be more than one." msgstr "PipeWalker est un simple jeu de puzzle avec différents thèmes : connecter tous les ordinateurs à un serveur de réseau, amener l'eau d'une source aux robinets, etc. La mécanique de base reste la même : vous devez tourner chaque tuile de la grille dans la bonne direction pour combiner tous les composants en un seul circuit. Chaque puzzle un une solution complète, même s'il peut y en avoir plus d'une." -#: gnu/packages/games.scm:2190 +#: gnu/packages/games.scm:2191 msgid "PrBoom+ is a Doom source port developed from the original PrBoom project." msgstr "" "PrBoom+ est un port des sources de Doom développé à partir du projet\n" "PrBoom original." -#: gnu/packages/games.scm:2240 +#: gnu/packages/games.scm:2241 msgid "" "ReTux is an action platformer loosely inspired by the Mario games,\n" "utilizing the art assets from the @code{SuperTux} project." msgstr "ReTux est un jeu de plateforme et d'action inspiré des jeux Mario, qui utilise les ressources du projet @code{SuperTux}." -#: gnu/packages/games.scm:2350 +#: gnu/packages/games.scm:2351 msgid "" "RogueBox Adventures is a graphical roguelike with strong influences\n" "from sandbox games like Minecraft or Terraria. The main idea of RogueBox\n" @@ -4126,7 +4247,7 @@ msgid "" "can be explored and changed freely." msgstr "RogueBox Adventures est un roguelike graphique avec une forte influence des jeux de sandbox comme Minecraft ou Terraria. L'idée principale de RogueBox Adventures est de proposer au joueur un monde-jouet roguelike. ce monde est explorable et peut être changé librement." -#: gnu/packages/games.scm:2462 +#: gnu/packages/games.scm:2463 msgid "" "Barbie Seahorse Adventures is a retro style platform arcade game.\n" "You are Barbie the seahorse who travels through the jungle, up to the\n" @@ -4136,7 +4257,7 @@ msgid "" "and defeat them with your bubbles!" msgstr "Barbie Seahorse Adventures est un jeu d'arcade et de plateforme dans un style rétro. Vous être Barbie l'hippocampe qui voyage à travers la jungle, jusqu'au volcan jusqu'à flotter sur des bulles jusqu'à la lune. Sur votre chemin vous rencontrerez différents ennemis, des servants du terrible tyran qui a volé le cristal galactique. Évitez les coup et battez-les avec vos bulles !" -#: gnu/packages/games.scm:2522 +#: gnu/packages/games.scm:2523 msgid "" "Solarus is a 2D game engine written in C++, that can run games\n" "scripted in Lua. It has been designed with 16-bit classic Action-RPGs\n" @@ -4146,7 +4267,7 @@ msgstr "" "écrits en Lua. Il est conçu pour les jeux de rôle-action classiques en\n" "16-bits." -#: gnu/packages/games.scm:2551 +#: gnu/packages/games.scm:2552 msgid "" "Solarus Quest Editor is a graphical user interface to create and\n" "modify quests for the Solarus engine." @@ -4154,14 +4275,14 @@ msgstr "" "Solarus Quest Editor est une interface graphique pour créer et\n" "modifier les quêtes du moteur Solarus." -#: gnu/packages/games.scm:2627 +#: gnu/packages/games.scm:2628 msgid "" "In SuperStarfighter, up to four local players compete in a\n" "2D arena with fast-moving ships and missiles. Different game types are\n" "available, as well as a single-player mode with AI-controlled ships." msgstr "Dans SuperStarfighter, jusqu'à quatre joueur se battent dans une arène en D avec des vaisseaux rapides et des missiles. Différents types de jeux sont disponibles, ainsi qu'un mode solo avec des vaisseaux contrôlés par une IA." -#: gnu/packages/games.scm:2760 +#: gnu/packages/games.scm:2761 msgid "" "Trigger-rally is a 3D rally simulation with great physics\n" "for drifting on over 200 maps. Different terrain materials like dirt,\n" @@ -4181,17 +4302,17 @@ msgstr "" "gagner un événement, débloquer des événements supplémentaires et des voitures. La plupart\n" "des cartes sont équipées des notes audio du copilote et d'icônes de copilote." -#: gnu/packages/games.scm:2816 +#: gnu/packages/games.scm:2817 msgid "" "This package provides @command{ufo2map}, a program used to generate\n" "maps for the UFO: Alien Invasion strategy game." msgstr "Ce paquet fournit @command{ufo2map}, un programme utilisé pour générer des carte pour le jeu de stratégie UFO : Alien Invasion." -#: gnu/packages/games.scm:2858 +#: gnu/packages/games.scm:2859 msgid "This package contains maps and other assets for UFO: Alien Invasion." msgstr "Ce paquet contient des cartes et d'autres données pour UFO : Alien Invasion." -#: gnu/packages/games.scm:2945 +#: gnu/packages/games.scm:2946 msgid "" "UFO: Alien Invasion is a tactical strategy game set in the year 2084.\n" "You control a secret organisation charged with defending Earth from a brutal\n" @@ -4216,11 +4337,11 @@ msgstr "" "\n" "Attention : c'est une version pré-publication de UFO : AI ! Certaines choses ne fonctionnent pas encore correctement." -#: gnu/packages/games.scm:2982 +#: gnu/packages/games.scm:2983 msgid "A graphical user interface for the package @code{gnushogi}." msgstr "Une interface utilisateur graphique pour le paquet @code{gnushogi}." -#: gnu/packages/games.scm:3035 +#: gnu/packages/games.scm:3036 msgid "" "L'Abbaye des Morts is a 2D platform game set in 13th century\n" "France. The Cathars, who preach about good Christian beliefs, were being\n" @@ -4229,7 +4350,7 @@ msgid "" "that beneath its ruins lay buried an ancient evil." msgstr "L'Abbaye des Morts est un jeu de plateforme en 2D qui se passe dans la France du 13ème siècle. Les Cathars, qui prêchent les bonnes valeurs chrétiennes, se font expulser par l'église catholique hors du Languedoc. L'un d'entre eux, Jean Raymond, trouve un vieille église dans laquelle se cacher, sans savoir qui sous ses ruines se trouve enterré un ancien mal." -#: gnu/packages/games.scm:3081 +#: gnu/packages/games.scm:3082 msgid "" "Angband is a Classic dungeon exploration roguelike. Explore\n" "the depths below Angband, seeking riches, fighting monsters, and preparing to\n" @@ -4239,7 +4360,7 @@ msgstr "" "en dessous d'Angband, cherchez des richesses, combattez des montres et préparez-vous\n" "à combattre Morgoth, le Seigneur des Ténèbres." -#: gnu/packages/games.scm:3129 +#: gnu/packages/games.scm:3130 msgid "" "Pingus is a free Lemmings-like puzzle game in which the player takes\n" "command of a bunch of small animals and has to guide them through levels.\n" @@ -4254,7 +4375,7 @@ msgstr "" "leur donnant des ordres. Plusieurs de ces ordres sont nécessaires pour atteindre\n" "la fin du niveau. Le jeu est présenté en 2D, en vue de côté." -#: gnu/packages/games.scm:3152 +#: gnu/packages/games.scm:3153 msgid "" "The GNU Talk Filters are programs that convert English text\n" "into stereotyped or otherwise humorous dialects. The filters are provided as\n" @@ -4264,14 +4385,14 @@ msgstr "" "vers des dialectes stéréotypés ou rigolos. Les filtres sont fournis en tant que\n" "bibliothèques C, pour qu'ils puissent être facilement intégrés à d'autres programmes." -#: gnu/packages/games.scm:3196 +#: gnu/packages/games.scm:3197 msgid "" "The player controls a character (one of three: Good, Bad, and Dead),\n" "dodges the missiles (lots of it cover the screen, but the character's hitbox\n" "is very small), and shoot at the adversaries that keep appear on the screen." msgstr "Le joueur contrôle un personnage (parmi le gentil, le méchant et le mort), évite les missiles (il y en a plein qui couvrent l'écran, mais la boîte de collision du joueur est très petite), et tire sur ses adversaires qui ne cessent d'apparaître à l'écran." -#: gnu/packages/games.scm:3239 +#: gnu/packages/games.scm:3240 msgid "" "CMatrix simulates the display from \"The Matrix\" and is\n" "based on the screensaver from the movie's website. It works with terminal\n" @@ -4283,7 +4404,7 @@ msgstr "" "peut faire défiler les lignes à la même vitesse ou de manière asynchrone\n" "à une vitesse définie par l'utilisateur." -#: gnu/packages/games.scm:3270 +#: gnu/packages/games.scm:3271 msgid "" "GNU Chess is a chess engine. It allows you to compete\n" "against the computer in a game of chess, either through the default terminal\n" @@ -4294,7 +4415,7 @@ msgstr "" "textuelle par défaut soit via une interface visuelle externe comme\n" "GNU XBoard." -#: gnu/packages/games.scm:3332 +#: gnu/packages/games.scm:3333 msgid "" "GNU FreeDink is a free and portable re-implementation of the engine\n" "for the role-playing game Dink Smallwood. It supports not only the original\n" @@ -4302,17 +4423,17 @@ msgid "" "To that extent, it also includes a front-end for managing all of your D-Mods." msgstr "GNU FreeDink est une réimplémentation libre et portable du moteur du jeu de rôle Dink Smallwood. Il prend en charge non seulement les fichiers de données du jeu d'origine, mais aussi des mods fournis par les joueurs (les « D-Mods »). Pour cela, il inclut aussi une interface pour gérer vos mods." -#: gnu/packages/games.scm:3360 +#: gnu/packages/games.scm:3361 msgid "This package contains the game data of GNU Freedink." msgstr "Ce paquet continet les données du jeu GNU Freedink." -#: gnu/packages/games.scm:3383 +#: gnu/packages/games.scm:3384 msgid "" "DFArc makes it easy to play and manage the GNU FreeDink game\n" "and its numerous D-Mods." msgstr "DFArc rend facile de joueur et de gérer des parties FreeDink et ses nombreux D-Mods." -#: gnu/packages/games.scm:3453 +#: gnu/packages/games.scm:3454 msgid "" "GNU XBoard is a graphical board for all varieties of chess,\n" "including international chess, xiangqi (Chinese chess), shogi (Japanese chess)\n" @@ -4326,7 +4447,7 @@ msgstr "" "supportées. Il présente une interface utilisateur complètement interactive et\n" "peut charger et sauvegarder les jeux dans la Notation de Jeu Universelle." -#: gnu/packages/games.scm:3488 +#: gnu/packages/games.scm:3489 msgid "" "GNU Typist is a universal typing tutor. It can be used to learn and\n" "practice touch-typing. Several tutorials are included; in addition to\n" @@ -4335,7 +4456,7 @@ msgid "" "are primarily in English, however some in other languages are provided." msgstr "GNU Typist permet d'apprendre à taper. On peut l'utiliser pour apprendre et pratiquer la dactylographie. Plusieurs tutoriels sont disponibles ; en plus des tutoriels pour la disposition standard QWERTY, il y a des tutoriels pour les dispositions alternatives Dvorak et Colemak, ainsi que pour le pavé numérique. Les tutoriels sont surtout en anglais, mais il y en a pour quelques autres langues." -#: gnu/packages/games.scm:3560 +#: gnu/packages/games.scm:3561 msgid "" "The Irrlicht Engine is a high performance realtime 3D engine written in\n" "C++. Features include an OpenGL renderer, extensible materials, scene graph\n" @@ -4348,7 +4469,7 @@ msgstr "" "effets spéciaux, le support pour des formats de fichiers graphiques usuels et la\n" "détection de collision." -#: gnu/packages/games.scm:3611 +#: gnu/packages/games.scm:3612 msgid "" "M.A.R.S. is a 2D space shooter with pretty visual effects and\n" "attractive physics. Players can battle each other or computer controlled\n" @@ -4356,7 +4477,7 @@ msgid "" "match, cannon keep, and grave-itation pit." msgstr "M.A.R.S. est un jeu de tir dans l'espace avec de jolis effets visuels et une physique attractive. Les joueurs se battent entre eux ou contre l'ordinateur dans différents modes de jeu comme space ball, les matchs à mort, les matchs à mort en équipe, protection de canon, ou puits de gravité." -#: gnu/packages/games.scm:3650 +#: gnu/packages/games.scm:3651 msgid "" "Glk defines a portable API for applications with text UIs. It was\n" "primarily designed for interactive fiction, but it should be suitable for many\n" @@ -4371,7 +4492,7 @@ msgstr "" "tourne dans une fenêtre de terminal et qui utilise la bibliothèque @code{curses.h}\n" "pour le contrôle de l'écran." -#: gnu/packages/games.scm:3690 +#: gnu/packages/games.scm:3691 msgid "" "Glulx is a 32-bit portable virtual machine intended for writing and\n" "playing interactive fiction. It was designed by Andrew Plotkin to relieve\n" @@ -4383,21 +4504,21 @@ msgstr "" "relacher certaines contraintes du vénérable format Z-machine. C'est l'interpréteur\n" "de référence, qui utilise l'API Glk." -#: gnu/packages/games.scm:3716 +#: gnu/packages/games.scm:3717 msgid "" "Fifechan is a lightweight cross platform GUI library written in C++\n" "specifically designed for games. It has a built in set of extendable GUI\n" "Widgets, and allows users to create more." msgstr "Fifechan est une bibliothèque d'interface graphique légère et multiplateforme écrite en C++ spécifiquement conçue pour les jeux. Elle possède un ensemble de widgets graphiques extensibles et permet d'en créer plus." -#: gnu/packages/games.scm:3791 +#: gnu/packages/games.scm:3792 msgid "" "@acronym{FIFE, Flexible Isometric Free Engine} is a multi-platform\n" "isometric game engine. Python bindings are included allowing users to create\n" "games using Python as well as C++." msgstr "@acronym{FIFE, Flexible Isometric Free Engine} est un moteur de jeu isométrique multi-plateforme. Les liaisons Python sont incluses et permettent de créer des jeux avec Python ainsi que C++." -#: gnu/packages/games.scm:3826 +#: gnu/packages/games.scm:3827 msgid "" "Fizmo is a console-based Z-machine interpreter. It is used to play\n" "interactive fiction, also known as text adventures, which were implemented\n" @@ -4407,7 +4528,7 @@ msgstr "" "à des fictions interactives, aussi connues sous le nom d'aventures textuelles,\n" "qui étaient implémentées soit par Infocom ou crées avec le compilateur Inform." -#: gnu/packages/games.scm:3849 +#: gnu/packages/games.scm:3850 msgid "" "GNU Go is a program that plays the game of Go, in which players\n" "place stones on a grid to form territory or capture other stones. While\n" @@ -4425,7 +4546,7 @@ msgstr "" "de stockage standard pour les jeux (SGF, Smart Game Format) et le format\n" "de communication inter-processus (GMP, Go Modem Protocol)." -#: gnu/packages/games.scm:3878 +#: gnu/packages/games.scm:3879 msgid "" "Extreme Tux Racer, or etracer as it is called for short, is\n" "a simple OpenGL racing game featuring Tux, the Linux mascot. The goal of the\n" @@ -4443,7 +4564,7 @@ msgstr "" "\n" "Ce jeu est basé sur la version GPL du fameux jeu TuxRacer." -#: gnu/packages/games.scm:3952 +#: gnu/packages/games.scm:3953 msgid "" "SuperTuxKart is a 3D kart racing game, with a focus on\n" "having fun over realism. You can play with up to 4 friends on one PC, racing\n" @@ -4455,7 +4576,7 @@ msgstr "" "la courses les uns contre les autres ou d'essayer de battre l'ordinateur. Un\n" "mode solo est aussi disponible." -#: gnu/packages/games.scm:4028 +#: gnu/packages/games.scm:4029 msgid "" "Unknown Horizons is a 2D realtime strategy simulation with an emphasis\n" "on economy and city building. Expand your small settlement to a strong and\n" @@ -4465,7 +4586,7 @@ msgid "" msgstr "Unknown Horizons est une simulation stratégique en 2D temps-réel avec l'accent mis sur l'économie et la construction de ville. Étendez votre petite implantation pour qu'elle devienne une colonie riche et forte, collectez les impôts et fournissez des biens de luxe à vos habitants. Augmentez votre pouvoir avec une économie bien équilibrée et avec des échanges commerciaux et diplomatiques stratégiques." # replay en français ? -#: gnu/packages/games.scm:4081 +#: gnu/packages/games.scm:4082 msgid "" "GNUjump is a simple, yet addictive game in which you must jump from\n" "platform to platform to avoid falling, while the platforms drop at faster rates\n" @@ -4478,7 +4599,7 @@ msgstr "" "propose du multijoueur, des FPS illimités, une chute douce du sol des\n" "graphismes et des sons personnalisables et des replays." -#: gnu/packages/games.scm:4117 +#: gnu/packages/games.scm:4118 msgid "" "The Battle for Wesnoth is a fantasy, turn based tactical strategy game,\n" "with several single player campaigns, and multiplayer games (both networked and\n" @@ -4498,7 +4619,7 @@ msgstr "" "gagnent de l'expérience et augmentent de niveau, et sont rejoués d'un scénario\n" "à la campagne suivante." -#: gnu/packages/games.scm:4137 +#: gnu/packages/games.scm:4138 msgid "" "This package contains a dedicated server for @emph{The\n" "Battle for Wesnoth}." @@ -4506,7 +4627,7 @@ msgstr "" "Ce paquet contient un serveur dédié pour @emph{La bataille\n" "pour Wesnoth}." -#: gnu/packages/games.scm:4179 +#: gnu/packages/games.scm:4180 msgid "" "Gamine is a game designed for young children who are learning to use the\n" "mouse and keyboard. The child uses the mouse to draw colored dots and lines\n" @@ -4516,7 +4637,7 @@ msgstr "" "souris et le clavier. L'enfant utilise la souris pour dessiner des points colorés\n" "et des lignes sur l'écran et le clavier pour afficher des lettres." -#: gnu/packages/games.scm:4211 +#: gnu/packages/games.scm:4212 msgid "" "ManaPlus is a 2D MMORPG client for game servers. It is the only\n" "fully supported client for @uref{http://www.themanaworld.org, The mana\n" @@ -4527,7 +4648,7 @@ msgstr "" "client entièrement supporté par @uref{http://www.themanaworld.org, the Mana World},\n" "@uref{http://evolonline.org, Evol Online} et @uref{http://landoffire.org, Land of fire}." -#: gnu/packages/games.scm:4243 +#: gnu/packages/games.scm:4244 msgid "" "OpenTTD is a game in which you transport goods and\n" "passengers by land, water and air. It is a re-implementation of Transport\n" @@ -4544,7 +4665,7 @@ msgstr "" "ne contient que le moteur de jeu. Lorsque vous le démarrez, il vous sera demandé de télécharger\n" "un thème graphique." -#: gnu/packages/games.scm:4303 +#: gnu/packages/games.scm:4304 msgid "" "The OpenGFX project is an implementation of the OpenTTD base graphics\n" "set that aims to ensure the best possible out-of-the-box experience.\n" @@ -4569,29 +4690,29 @@ msgstr "" "@item Des bouées qui prennent la neige en compte\n" "@end enumerate" -#: gnu/packages/games.scm:4361 +#: gnu/packages/games.scm:4362 msgid "" "OpenSFX is a set of free base sounds for OpenTTD which make\n" "it possible to play OpenTTD without requiring the proprietary sound files from\n" "the original Transport Tycoon Deluxe." msgstr "OpenSFX est un ensemble de sons de base pour OpenTTD qui rendent possible de jouer à OpenTTD sans les fichiers privateurs du jeu d'origine Transport Tycoon Deluxe." -#: gnu/packages/games.scm:4404 +#: gnu/packages/games.scm:4405 msgid "" "OpenMSX is a music set for OpenTTD which makes it possible\n" "to play OpenTTD without requiring the proprietary music from the original\n" "Transport Tycoon Deluxe." msgstr "OpenMSX est un ensemble de musiques pour OpenTTD qui rend possible de jouer à OpenTTD sans avoir besoin des musiques privatrices du jeu original Transport Tycoon Deluxe." -#: gnu/packages/games.scm:4473 +#: gnu/packages/games.scm:4474 msgid "openrct2-title-sequences is a set of title sequences for OpenRCT2." msgstr "openrct2-title-sequences est un ensemble de séquences titres pour OpenRCT2." -#: gnu/packages/games.scm:4513 +#: gnu/packages/games.scm:4514 msgid "openrct2-objects is a set of objects for OpenRCT2." msgstr "openrct2-objects est un ensemble d'objets pour OpenRCT2." -#: gnu/packages/games.scm:4576 +#: gnu/packages/games.scm:4577 msgid "" "OpenRCT2 is a free software re-implementation of\n" "RollerCoaster Tycoon 2 (RCT2). The gameplay revolves around building and\n" @@ -4604,27 +4725,27 @@ msgstr "" "\n" "Remarquez que ce paquet ne fournit @emph{pas} les ressources du jeu (musiques, images, etc)." -#: gnu/packages/games.scm:4630 +#: gnu/packages/games.scm:4631 msgid "" "The Emilia Pinball Project is a pinball simulator. There\n" "are only two levels to play with, but they are very addictive." msgstr "Le projet Emilia Pinball est un simulateur de pinball. Il y a seulement deux niveaux à jouer, mais ils sont très addictifs." -#: gnu/packages/games.scm:4659 +#: gnu/packages/games.scm:4660 msgid "" "Pioneers is an emulation of the board game The Settlers of\n" "Catan. It can be played on a local network, on the internet, and with AI\n" "players." msgstr "Pioneers est une simulation du jeu de plateau The Settlers of Catan. Il est jouable en réseau local, sur internet et avec des joueurs IA." -#: gnu/packages/games.scm:4701 +#: gnu/packages/games.scm:4702 msgid "" "The goal of this logic game is to open all cards in a 6x6\n" "grid, using a number of hints as to their relative position. The game idea\n" "is attributed to Albert Einstein." msgstr "Le but de ce jeu de logique est d'ouvrir toutes les cartes d'une grille en 6x6, en utilisant les des astuces sur leur position relative. L'idée du jeu est attribuée à Albert Einstein." -#: gnu/packages/games.scm:4731 +#: gnu/packages/games.scm:4732 msgid "" "POWWOW is a client software which can be used for telnet as well as for\n" "@dfn{Multi-User Dungeon} (MUD). Additionally it can serve as a nice client for\n" @@ -4632,21 +4753,21 @@ msgid "" "http://lavachat.symlynx.com/unix/" msgstr "POWWOW est un client qui peut être utilisé pour telnet ainsi que pour des @dfn{Donjons Multijoueurs} (MUD). En plus il peut servir de client pour le serveur de discussion psyced avec la configuration spécifique située sur http://lavachat.symlynx.com/unix/" -#: gnu/packages/games.scm:4838 +#: gnu/packages/games.scm:4839 msgid "" "Red Eclipse is an arena shooter, created from the Cube2 engine.\n" "Offering an innovative parkour system and distinct but all potent weapons,\n" "Red Eclipse provides fast paced and accessible gameplay." msgstr "Red Eclipse est un jeu de tir en arène, créé avec le moteur Cube2. Il offre un système de parkour innovant et des armes distinctes mais toutes puissantes. Red Eclipse propose une expérience de jeu nerveuse et accessible." -#: gnu/packages/games.scm:4903 +#: gnu/packages/games.scm:4904 msgid "" "Grue Hunter is a text adventure game written in Perl. You must make\n" "your way through an underground cave system in search of the Grue. Can you\n" "capture it and get out alive?" msgstr "Grue Hunter est un jeu d'aventure en mode texte écrit en Perl. Vous devez vous déplacer dans un système de grottes souterraines à la recherche de la Grue. Arriverez-vous à la capturer et à sortir vivant ?" -#: gnu/packages/games.scm:4942 +#: gnu/packages/games.scm:4943 msgid "" "lierolibre is an earthworm action game where you fight another player\n" "(or the computer) underground using a wide array of weapons.\n" @@ -4690,14 +4811,14 @@ msgstr "" "\n" "Pour passer entre les différentes tailles de fenêtres, utilisez F6, F7 et F8. Pour passer en plein-écran, utilisez F5 ou Alt+Entrée." -#: gnu/packages/games.scm:5021 +#: gnu/packages/games.scm:5022 msgid "" "Tennix is a 2D tennis game. You can play against the\n" "computer or against another player using the keyboard. The game runs\n" "in-window at 640x480 resolution or fullscreen." msgstr "Tennix est un jeu de tennis en 2D. Vous pouvez jouer contre l'ordinateur ou contre un autre jouer en utilisant le clavier. Le jeu se lance dans une fenêtre 640x480 ou en plein-écran." -#: gnu/packages/games.scm:5105 +#: gnu/packages/games.scm:5106 msgid "" "Warzone 2100 offers campaign, multi-player, and single-player skirmish\n" "modes. An extensive tech tree with over 400 different technologies, combined\n" @@ -4705,7 +4826,7 @@ msgid "" "tactics." msgstr "Warzone 2100 propose un mode campagne, multijoueur et escarmouche en solo. Un arbre de technologie complet avec plus de 400 technologies différentes, avec le système de conception d'unités vous permet une grande variété d'unités et de tactiques." -#: gnu/packages/games.scm:5184 +#: gnu/packages/games.scm:5185 msgid "" "In Widelands, you are the regent of a small clan. You start out with\n" "nothing but your headquarters, where all your resources are stored.\n" @@ -4734,7 +4855,7 @@ msgstr "" "\n" "Widelands propose un mode solo avec différentes campagnes ; les campagnes racontent toutes les histoires de tribus et de leurs luttes dans l'univers de Widelands ! Cependant, votre colonie commence vraiment quand vous vous associez avec des amis sur internet ou en LAN pour construire de nouveaux empires ensemble — ou pour vous détruire les uns les autres par des guerres sans merci. Widelands a aussi une intelligence artificielle si vous cherchez un défi." -#: gnu/packages/games.scm:5236 +#: gnu/packages/games.scm:5237 msgid "" "In the year 2579, the intergalactic weapons corporation, WEAPCO, has\n" "dominated the galaxy. Guide Chris Bainfield and his friend Sid Wilson on\n" @@ -4743,7 +4864,7 @@ msgid "" "in strikes against the evil corporation." msgstr "En l'an 2579, la compagnie des armes intergalactique, WEAPCO, a dominé la galaxie. Guidez Chris Bainfield et son ami Sid Wilson dans leur quête pour libérer la galaxie de l'emprise de WEACO. Sur votre route, vous rencontrerez de nouveaux ennemis, vous ferez de nouveaux alliés et aiderez des rebelles à frapper la compagnie maléfique." -#: gnu/packages/games.scm:5267 +#: gnu/packages/games.scm:5268 msgid "" "In this game you are the captain of the cargo ship Chromium B.S.U. and\n" "are responsible for delivering supplies to the troops on the front line. Your\n" @@ -4751,7 +4872,7 @@ msgid "" "safety of the Chromium vessel." msgstr "Dans ce jeu vous êtes les capitaine du vaisseau cargo Chromium B.S.U. et vous êtes responsable de l'acheminement de matériels et de troupes vers la ligne de front. Votre vaisseau a une petite flotte de chasseurs robotisés que vous contrôlez depuis la relative sécurité de votre vaisseau." -#: gnu/packages/games.scm:5350 +#: gnu/packages/games.scm:5351 msgid "" "Tux Paint is a free drawing program designed for young children (kids\n" "ages 3 and up). It has a simple, easy-to-use interface; fun sound effects;\n" @@ -4760,23 +4881,23 @@ msgid "" "your child be creative." msgstr "Tux Paint est un programme de dessin conçu pour les jeunes enfants (à partir de 3 ans). Il possède une interface simple et facile à utiliser, des effets sonores rigolos, et une mascotte encourageante qui guide les enfants dans leur utilisation du programme. Il fournit un tableau blanc et divers outils de dessin pour aider votre enfant à être créatif." -#: gnu/packages/games.scm:5390 +#: gnu/packages/games.scm:5391 msgid "" "This package contains a set of \"Rubber Stamp\" images which can be used\n" "with the \"Stamp\" tool within Tux Paint." msgstr "Ce paquet contient un ensemble de « tampons » qu'on peut utiliser avec l'outil tampon de Tux Paint." -#: gnu/packages/games.scm:5439 +#: gnu/packages/games.scm:5440 msgid "Tux Paint Config is a graphical configuration editor for Tux Paint." msgstr "Tux Paint Config est un éditeur de configuration graphique pour Tux Paint." -#: gnu/packages/games.scm:5491 +#: gnu/packages/games.scm:5492 msgid "" "SuperTux is a classic 2D jump'n run sidescroller game in\n" "a style similar to the original Super Mario games." msgstr "SuperTux est un jeu de saut et de course classique en 2D à défilement horizontal dans un style similaire aux jeux Super Mario originaux." -#: gnu/packages/games.scm:5523 +#: gnu/packages/games.scm:5524 msgid "" "TinTin++ is a MUD client which supports MCCP (Mud Client Compression\n" "Protocol), MMCP (Mud Master Chat Protocol), xterm 256 colors, most TELNET\n" @@ -4784,7 +4905,7 @@ msgid "" "Linux / Mac OS X servers, and an auto mapper with a VT100 map display." msgstr "TinTin++ est un client MUD qui prend en charge le MCCP (Mud Client Compression Protocol), MMCP (Mud Master Chat Protocol), xterm avec 256 couleurs, la plupart des options TELNET utilisées par les MUD, ainsi que celles requises pour l'authentification par telnet sur les serveurs Linux / Mac OS X, et une correspondance automatique avec l'affichage VT100." -#: gnu/packages/games.scm:5563 +#: gnu/packages/games.scm:5564 msgid "" "Learn programming, playing with ants and spider webs ;-)\n" "Your robot ant can be programmed in many languages: OCaml, Python, C, C++,\n" @@ -4792,14 +4913,14 @@ msgid "" "programmers may also add their own favorite language." msgstr "Apprenez à programmer, en jouant avec des fourmis et des toiles d'araignées ;-) Votre fourmi robot peut être programmées dans plusieurs langages : OCaml, Python, C, C++, Java, Ruby, Lua, JavaScript, Pascal, Perl, Scheme, Vala, Prolog. Les programmeur expérimentés peuvent aussi ajouter leur langage préféré." -#: gnu/packages/games.scm:5602 +#: gnu/packages/games.scm:5603 msgid "" "Bambam is a simple baby keyboard (and gamepad) masher\n" "application that locks the keyboard and mouse and instead displays bright\n" "colors, pictures, and sounds." msgstr "Bambam est une application de frappe de clavier (et de manettes) simple pour les bébés qui verrouille le clavier et la souris et montre à la place des couleurs, des images et des sons." -#: gnu/packages/games.scm:5663 +#: gnu/packages/games.scm:5664 msgid "" "Mr. Rescue is an arcade styled 2d action game centered around evacuating\n" "civilians from burning buildings. The game features fast-paced fire\n" @@ -4807,7 +4928,7 @@ msgid "" "throwing people around in pseudo-randomly generated buildings." msgstr "Mr. Rescue est une jeu d'action en 2d dans un style arcade centré sur l'évacuation de civils de bâtiments en flammes. Le jeu propose de l'action d'extinction d'incendie nerveuse, des combats de boss intenses, une musique entrainante et beaucoup de lancer de personnes dans les bâtiments générés aléatoirement." -#: gnu/packages/games.scm:5770 +#: gnu/packages/games.scm:5771 msgid "" "HyperRogue is a game in which the player collects treasures and fights\n" "monsters -- rogue-like but for the fact that it is played on the hyperbolic\n" @@ -4826,13 +4947,13 @@ msgstr "" "\n" "Bien que le jeu puisse utiliser les caractères ASCII pour afficher les symboles classiques pour un roguelike, il a quand même besoin de graphismes pour afficher le monde non-euclidien." -#: gnu/packages/games.scm:5817 +#: gnu/packages/games.scm:5818 msgid "" "Kobo Deluxe is an enhanced version of Akira Higuchi's XKobo graphical game\n" "for Un*x systems with X11." msgstr "Kobo Deluxe est une version améliorée du jeu graphique XKobo d'Akira Higuchi pour les système Un*x avec X11." -#: gnu/packages/games.scm:5845 +#: gnu/packages/games.scm:5846 msgid "" "Freeciv is a turn-based empire building strategy game\n" "inspired by the history of human civilization. The game commences in\n" @@ -4840,7 +4961,7 @@ msgid "" "into the Space Age." msgstr "Freeciv est un jeu de stratégie et de construction d'empire inspiré de l'histoire des civilisations humaines. Le jeu commence à la préhistoire et votre mission est de gérer une tribu de l'âge de pierre à l'âge de l'espace." -#: gnu/packages/games.scm:5878 +#: gnu/packages/games.scm:5879 msgid "" "@code{No More Secrets} provides a command line tool called \"nms\"\n" "that recreates the famous data decryption effect seen on screen in the 1992\n" @@ -4854,25 +4975,25 @@ msgstr "" "\n" "Cette commande fonctionne sur les données passées dans un tube. Passez n'importe quel texte ASCII ou UTF-8 à nms, et il appliquera l'effet hollywoodien, montrant d'abord des données chiffrées, puis en commençant la séquence de déchiffrement pour révéler les caractères en texte clair." -#: gnu/packages/games.scm:5906 +#: gnu/packages/games.scm:5907 msgid "This package contains the data files required for MegaGlest." msgstr "Ce paquet contient les fichiers de données requis par MegaGlest." -#: gnu/packages/games.scm:5961 +#: gnu/packages/games.scm:5962 msgid "" "MegaGlest is a cross-platform 3D real-time strategy (RTS)\n" "game, where you control the armies of one of seven different factions: Tech,\n" "Magic, Egypt, Indians, Norsemen, Persian or Romans." msgstr "MegaGlest est un jeu de stratégie en temps réel (RTS) multiplateforme en 3D, où vous contrôlez les armées d'une des sept factions : Tech, Magie, Égypte, Indiens, Normands, Perses ou Romains." -#: gnu/packages/games.scm:6013 +#: gnu/packages/games.scm:6014 msgid "" "In FreeGish you control Gish, a ball of tar who lives\n" "happily with his girlfriend Brea, until one day a mysterious dark creature\n" "emerges from a sewer hole and pulls her below ground." msgstr "Dans FreeGish vous contrôlez Gish, une boule de goudron qui vit gaiment avec sa copine Brea, jusqu'au jour où une mystérieuse créature sombre émerge d'une plaque d'égout et l'emporte sous terre." -#: gnu/packages/games.scm:6049 +#: gnu/packages/games.scm:6050 msgid "" "C-Dogs SDL is a classic overhead run-and-gun game,\n" "supporting up to 4 players in co-op and deathmatch modes. Customize your\n" @@ -4880,21 +5001,21 @@ msgid "" "over 100 user-created campaigns." msgstr "C-Dogs SDL est un jeu de tir classique en vue de dessus. On peut y jouer à jusqu'à 4 joueurs en mode coop et en mode match à mort. Personnalisez votre joueur, choisissez une arme parmi les nombreuses armes proposées et défoncez, slalomez et dégagez votre passage à travers plus de 100 campagnes créées par les joueurs." -#: gnu/packages/games.scm:6149 +#: gnu/packages/games.scm:6150 msgid "" "Kiki the nano bot is a 3D puzzle game. It is basically a\n" "mixture of the games Sokoban and Kula-World. Your task is to help Kiki, a\n" "small robot living in the nano world, repair its maker." msgstr "Kiki le nano bot est un jeu de puzzle en 3D. C'est un mélange des jeux Sokoban et Kula-World. Votre but est d'aider Kiki, un petit robot qui vit dans le nanomonde à réparer son créateur." -#: gnu/packages/games.scm:6225 +#: gnu/packages/games.scm:6226 msgid "" "Teeworlds is an online multiplayer game. Battle with up to\n" "16 players in a variety of game modes, including Team Deathmatch and Capture\n" "The Flag. You can even design your own maps!" msgstr "Teeworlds est un jeu multijoueur en ligne. Combattez jusqu'à 16 joueurs dans divers modes de jeu, dont le match à mort en équipe ou la capture de drapeau. Vous pouvez même concevoir vous propres cartes !" -#: gnu/packages/games.scm:6285 +#: gnu/packages/games.scm:6286 msgid "" "Enigma is a puzzle game with 550 unique levels. The object\n" "of the game is to find and uncover pairs of identically colored ‘Oxyd’ stones.\n" @@ -4906,7 +5027,7 @@ msgid "" "with the mouse isn’t always trivial." msgstr "Enigma est un jeu de puzzle avec 550 niveaux uniques. Le but du jeu est de trouver et de découvrir les paries de pierres d'Oxyd de même couleur. Simple ? oui. Facile ? Surement pas ! Des pièges cachés, de vastes labyrinthes, des rayons laser, et surtout, de nombreux puzzle à s'arracher les cheveux vous bloque en général le passage vers le pierre d'Oxyd. Les objets du jeu Enigma (et il y en a des centaines, pas moyen de vous ennuyer) interagissent de manière inattendue et comme beaucoup d'entre eux suivent les lois de la physique (c'est-à-dire les lois spéciales d'Enigma), les contrôler à la souris n'est pas toujours évident." -#: gnu/packages/games.scm:6319 +#: gnu/packages/games.scm:6320 msgid "" "Chroma is an abstract puzzle game. A variety of colourful\n" "shapes are arranged in a series of increasingly complex patterns, forming\n" @@ -4916,7 +5037,7 @@ msgid "" "becoming difficult enough to tax even the brightest of minds." msgstr "Chroma est un jeu de puzzle abstrait. Diverses formes colorées sont arrangées en séries de formes de plus en plus complexes, formant des pièges vicieux qui doivent être désactivés et de mystérieux puzzles qui doivent être manipulés avant qu'ils ne crachent leurs subtils secrets. Au départ si évident que n'importe qui peut commencer à jouer, mais à la difficulté grandissante qui fera réfléchir même les esprits les plus brillants." -#: gnu/packages/games.scm:6384 +#: gnu/packages/games.scm:6385 msgid "" "Fish Fillets NG is strictly a puzzle game. The goal in\n" "every of the seventy levels is always the same: find a safe way out. The fish\n" @@ -4925,14 +5046,14 @@ msgid "" "fish. The whole game is accompanied by quiet, comforting music." msgstr "Fish Fillets NG est purement un jeu de puzzle. Le but dans chacun des 70 niveaux est toujours le même : trouver une sortie sure. Le poisson vous fera des remarques spirituelles sur ses environs, les habitants du monde sous-marin se querellent ou commentent les efforts de votre poisson. Le jeu est accompagné d'une musique calme et confortable." -#: gnu/packages/games.scm:6452 +#: gnu/packages/games.scm:6453 msgid "" "Dungeon Crawl Stone Soup (also known as \"Crawl\" or DCSS\n" "for short) is a roguelike adventure through dungeons filled with dangerous\n" "monsters in a quest to find the mystifyingly fabulous Orb of Zot." msgstr "Dungeon Crawl Stone Soup (aussi connu sous le nom de « Crawl » ou DCSS) est une aventure roguelike à travers des donjons remplis de monstres dangereux en quête de la mystique Orbe de Zot." -#: gnu/packages/games.scm:6529 +#: gnu/packages/games.scm:6530 msgid "" "Lugaru is a third-person action game. The main character,\n" "Turner, is an anthropomorphic rebel bunny rabbit with impressive combat skills.\n" @@ -4942,11 +5063,11 @@ msgid "" "fight against their plot and save his fellow rabbits from slavery." msgstr "Lugaru est un jeu d'action en vu à la troisième personne. Le personnage principal, turner, est un lapin anthropomorphique rebelle avec des capacités de combat impressionnantes. Dans sa quête pour trouver les responsables de la tuerie de son village, il découvre une terrible conspiration qui remonte aux chefs de la république lapinesque et aux loups morts de fin d'une tanière proche. Turner prend sur lui de combattre leurs plans et de sauver ses amis lapins de l'esclavage." -#: gnu/packages/games.scm:6574 +#: gnu/packages/games.scm:6575 msgid "0ad-data provides the data files required by the game 0ad." msgstr "0ad-data fournit les fichiers de données nécessaires pour le jeu 0ad." -#: gnu/packages/games.scm:6710 +#: gnu/packages/games.scm:6711 msgid "" "0 A.D. is a real-time strategy (RTS) game of ancient\n" "warfare. It's a historically-based war/economy game that allows players to\n" @@ -4959,7 +5080,7 @@ msgstr "" "\n" "0ad a besoin d'un gestionnaire de fenêtres qui prend en charge les indications étendues pour les gestionnaires de fenêtre (« Extended Window Manager Hints »)." -#: gnu/packages/games.scm:6776 +#: gnu/packages/games.scm:6777 msgid "" "The original Colossal Cave Adventure from 1976 was the origin of all\n" "text adventures, dungeon-crawl (computer) games, and computer-hosted\n" @@ -4968,7 +5089,7 @@ msgid "" "``adventure 2.5'' and ``430-point adventure''." msgstr "Le jeu Colossal Cave Adventure original de 1976 a été à l'origine de toutes les aventures textuelles, des jeux d'exploration de donjon (sur ordinateur) et des jeux de rôles sur ordinateur. Ceci est un port récent de la dernière version publiée par Crowther & Woods, ses auteurs originaux, en 1995. Il est connu sous le nom de « adventure 2.5 » et « 430-point adventure »." -#: gnu/packages/games.scm:6899 +#: gnu/packages/games.scm:6900 msgid "" "Tales of Maj’Eyal (ToME) RPG, featuring tactical turn-based\n" "combat and advanced character building. Play as one of many unique races and\n" @@ -4979,21 +5100,21 @@ msgid "" "Tales of Maj’Eyal offers engaging roguelike gameplay for the 21st century." msgstr "Talkes of Maj'Eyal (ToME) est un RPG qui propose des combats tactiques en tour par tour et une construction de personnage avancée. Jouez l'une des races et des classes uniques dans le monde plein de lore d'Eyal, explorez des donjons aléatoires, faites face à des combats difficiles et développez vos personnages avec votre propre mélange de capacités et de pouvoirs. Avec une interface graphique moderne et personnalisable, des contrôles à la souris intuitifs, des mécaniques bien pensées et un combat difficile et profond, Tales of Maj'Eyal propose une expérience du jeu roguelike pour le 21ème siècle." -#: gnu/packages/games.scm:6945 +#: gnu/packages/games.scm:6946 msgid "" "Quakespasm is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "Quakespasm est un moteur moderne pour Quake 1 de id software. Il contient la prise en charge des CPU 64 bits, la lecture de musiques personnalisées, un nouveau pilote de son, des améliorations graphiques et diverses corrections de bogues et d'autres améliorations." -#: gnu/packages/games.scm:7002 +#: gnu/packages/games.scm:7003 msgid "" "vkquake is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "vkquake est un moteur moderne pour Quake 1 de id software. Il contient la prise en charge des CPU 64 bits, la lecture de musiques personnalisées, un nouveau pilote de son, des améliorations graphiques et diverses corrections de bogues et d'autres améliorations." -#: gnu/packages/games.scm:7067 +#: gnu/packages/games.scm:7068 msgid "" "Yamagi Quake II is an enhanced client for id Software's Quake II.\n" "The main focus is an unchanged single player experience like back in 1997,\n" @@ -5003,18 +5124,18 @@ msgid "" "making Yamagi Quake II one of the most solid Quake II implementations available." msgstr "Yamagi Quake II est un client amélioré pour Quake II de id Software. Le but principal est de ne pas changer l'expérience de jeu de 1997, donc le jeu et les graphiques sont inchangés. Cependant l'utilisateur peut utiliser l'un des packs de textures non officiel. Comparé au client officiel, plus de 1000 bogues ont été corrigés et un audit de code complet a été réalisé, ce qui rend Yamagi Quake II l'une des implémentations de Quake II la plus solide qui existe." -#: gnu/packages/games.scm:7100 +#: gnu/packages/games.scm:7101 msgid "Nudoku is a ncurses-based Sudoku game for your terminal." msgstr "Nudoku est un jeu de Sudoku basé sur ncurses pour votre terminal." -#: gnu/packages/games.scm:7146 +#: gnu/packages/games.scm:7147 msgid "" "The Butterfly Effect (tbe) is a game that uses\n" "realistic physics simulations to combine lots of simple mechanical\n" "elements to achieve a simple goal in the most complex way possible." msgstr "The Butterfly Effect (tbe) est un jeu qui utilise des simulations physiques réalistes pour combiner plusieurs éléments mécaniques simples pour atteindre un but simple de la manière la plus complexe possible." -#: gnu/packages/games.scm:7192 +#: gnu/packages/games.scm:7193 msgid "" "Pioneer is a space adventure game set in our galaxy at the turn of the\n" "31st century. The game is open-ended, and you are free to eke out whatever\n" @@ -5025,14 +5146,14 @@ msgid "" "whatever you make of it." msgstr "Pioneer est un jeu d'aventure spatiale dans notre galaxie au tournant du 31ème siècle. Le jeu est ouvert et vous êtes libre de vivre n'importe quel style de vie spatiale que vous voulez. Recherchez la gloire ou la richesse en explorant des millions de systèmes stellaires. Tombez dans la criminalité en devenant pirate, contrebandier ou chasseur de primes. Forgez et déliez des alliances avec diverses factions qui se battent pour le pouvoir, la liberté et l'autodétermination. L'univers est ce que vous en faites." -#: gnu/packages/games.scm:7221 +#: gnu/packages/games.scm:7222 msgid "" "Badass generates false commits for a range of dates, essentially\n" "hacking the gamification of contribution graphs on platforms such as\n" "Github or Gitlab." msgstr "Badass génère de faux commits pour une période de dates données, pour pirater le système de gamification des graphes de contribution comme Github ou Gitlab." -#: gnu/packages/games.scm:7294 +#: gnu/packages/games.scm:7295 msgid "" "Colobot: Gold Edition is a real-time strategy game, where\n" "you can program your units (bots) in a language called CBOT, which is similar\n" @@ -5040,7 +5161,7 @@ msgid "" "You can save humanity and get programming skills!" msgstr "Colobot : Gold Edition est un jeu de stratégie en temps réel, où vous pouvez programmer vos unités (des robots) dans un langage CBOT, similaire à C++ et Java. Votre mission est de trouver une nouvelle planète où vivre et prospérer. Vous pouvez sauver l'humanité et gagner des compétences en programmation !" -#: gnu/packages/games.scm:7386 +#: gnu/packages/games.scm:7387 msgid "" "GZdoom is a port of the Doom 2 game engine, with a modern\n" "renderer. It improves modding support with ZDoom's advanced mapping features\n" @@ -5048,14 +5169,14 @@ msgid "" "Strife, Chex Quest, and fan-created games like Harmony, Hacx and Freedoom." msgstr "GZdoom est un port du moteur de jeu Doom 2, avec un rendu moderne. Il améliore la prise en charge du modding avec les fonctionalités avancées de ZDoom et le nouveau langage ZScript. En plus de Doom, il prend en charge Heretic, Hexen, Strife, Chex Quest et les jeux créés par les fan comme Harmony, Hacx et Freedoom." -#: gnu/packages/games.scm:7425 +#: gnu/packages/games.scm:7426 msgid "" "Odamex is a modification of the Doom engine that\n" "allows players to easily join servers dedicated to playing Doom\n" "online." msgstr "Odamex est une modification du moteur de Doom qui permet aux joueurs de facilement rejoindre des dédiés pour jouer à Doom en ligne." -#: gnu/packages/games.scm:7453 +#: gnu/packages/games.scm:7454 msgid "" "Chocolate Doom takes a different approach to other source ports. Its\n" "aim is to accurately reproduce the experience of playing Vanilla Doom. It is\n" @@ -5068,7 +5189,7 @@ msgid "" "affect gameplay)." msgstr "Chocolate Doom prend une autre approche par rapport aux autres ports des sources. Il a pour but de reproduire avec fidélité l'expérience de jeu de Doom. C'est un port des sources conservateur et historiquement exact de Doom, compatible avec les milliers de mods et de niveaux qui ont été construits avant la sortie du code source de Doom. Au lieu de nouveaux graphiques tape-à-l'œil, la principale fonction de Chocolate Doom est de reproduire fidèlement de jeu tel qu'il se jouait dans les années 90. Le projet est développé autour d'une philosophie réfléchie qui restreint volontairement les fonctionnalités qui peuvent être ajoutées (et rejette tout ce qui affecte l'expérience de jeu)." -#: gnu/packages/games.scm:7493 +#: gnu/packages/games.scm:7494 msgid "" "Crispy Doom is a friendly fork of Chocolate Doom that provides a higher\n" "display resolution, removes the static limits of the Doom engine and offers\n" @@ -5077,21 +5198,21 @@ msgid "" "original." msgstr "Crispy Doom est un fork de Chocolate Doom qui fournit une plus grande résolution, supprime les limites statiques du moteur Doom et propose des améliorations visuelles, tactiques et physiques facultatives tout en restant complètement compatible avec les fichiers de sauvegarde, de configuration, avec le netplay et les démos de l'original." -#: gnu/packages/games.scm:7566 +#: gnu/packages/games.scm:7567 msgid "This package provides C11 / gnu11 utilities C library" msgstr "Ce paquet fournit une bibliothèques C d'outils C11/gnu11" -#: gnu/packages/games.scm:7635 +#: gnu/packages/games.scm:7636 msgid "" "Fortune is a command-line utility which displays a random\n" "quotation from a collection of quotes." msgstr "Fortune est un utilitaire en ligne de commandes qui affiche une citation aléatoire parmi une collection de citations." -#: gnu/packages/games.scm:7677 +#: gnu/packages/games.scm:7678 msgid "Xonotic-data provides the data files required by the game Xonotic." msgstr "Ce paquet contient les fichiers de données requis par le jeu Xonotic." -#: gnu/packages/games.scm:7873 +#: gnu/packages/games.scm:7874 msgid "" "Xonotic is a free, fast-paced first-person shooter.\n" "The project is geared towards providing addictive arena shooter\n" @@ -5101,7 +5222,7 @@ msgid "" "open-source FPS of its kind." msgstr "Xonotic est un jeu de tir à la première personne libre et nerveux. Le projet veut proposer un jeu de tir en arène addictif entièrement créé et piloté par la communauté elle-même. Xonotic est le descendant direct du projet Nexuiz avec des années de développement entre les deux, et il a pour but de devenir le meilleur FPS libre de sa catégorie." -#: gnu/packages/games.scm:7920 +#: gnu/packages/games.scm:7921 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -5110,7 +5231,7 @@ msgid "" "ncurses for text display." msgstr "Frotz est un interpréteur pour les jeux Infocom et les autres jeux Z-machine du genre aventure textuelle et fiction interactive. Cette version de Frotz est compilée avec le standard 1.0 de la spécification de Graham Nelson. Il peut lancer tous les jeux Z-code V1-V8, sauf la V6, avec le son à travers libao et il utilise ncurses pour l'affichage du texte." -#: gnu/packages/games.scm:7964 +#: gnu/packages/games.scm:7966 msgid "" "Naev is a 2d action/rpg space game that combines elements from\n" "the action, RPG and simulation genres. You pilot a spaceship from\n" @@ -5122,7 +5243,7 @@ msgid "" "of lore accompanying everything from planets to equipment." msgstr "" -#: gnu/packages/games.scm:8013 +#: gnu/packages/games.scm:8015 msgid "" "Frotz is an interpreter for Infocom games and\n" "other Z-machine games in the text adventure/interactive fiction genre.\n" @@ -5134,7 +5255,7 @@ msgid "" "to play games on webpages. It can also be made into a chat bot." msgstr "Frotz est un interpréteur pour les jeux Infocom et les autres jeux Z-machine du genre aventure textuelle et fiction interactive. dfrotz est la version avec interface bête. Vous n'avez pas le contrôle de l'écran ; tout est affiché sur le terminal ligne à ligne. Le terminal gère tout le défilement. Vous avez peut-être envie de savoir ce que ça fait de jouer à Adventure sur un téléscripteur. Une utilisation plus intéressante de Frotz avec l'interface bête est qu'il peut être utilisé avec des scripts CGI, PHP, etc, pour permettre aux gens de jouer sur une page web. On peut aussi en faire un chatbot." -#: gnu/packages/games.scm:8075 +#: gnu/packages/games.scm:8077 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -5144,7 +5265,7 @@ msgid "" "when packaged in Blorb container files or optionally from individual files." msgstr "Frotz est un interpréteur pour les jeux Infocom et les autres jeux Z-machine du genre aventure textuelle et fiction interactive. Cett eversion de Frotz utilise SDL pour prendre complètement en charge toutes les versions de la Z-Machine, dont la version graphique 6. Les graphiques et les sons sont créés en utilisant les bibliothèques SDL. Les effets sonores AIFF et la musique au format MOD et OGG sont pris en charge lorsqu'ils sont empaquetés dans des fichiers conteneurs Blorb ou éventuellement dans des fichiers individuels." -#: gnu/packages/games.scm:8166 +#: gnu/packages/games.scm:8168 msgid "" "Frozen-Bubble is a clone of the popular Puzzle Bobble game, in which\n" "you attempt to shoot bubbles into groups of the same color to cause them to\n" @@ -5164,7 +5285,7 @@ msgstr "" "\n" "Il propose 100 niveaux solos, un mode deux joueurs, de la musique et des graphiques remarquables. Un éditeur de niveau est aussi inclus et permet aux joueurs de créer et de jouer à leur propres niveaux." -#: gnu/packages/games.scm:8199 +#: gnu/packages/games.scm:8201 msgid "" "Libmanette is a small GObject library giving you simple\n" "access to game controllers. It supports the de-facto standard gamepads as\n" @@ -5172,7 +5293,7 @@ msgid "" "GameController." msgstr "Libmanette est une petite bibliothèque GObject qui donne un accès simplifié aux manettes de jeu. Il prend en charge les manettes standards de fait définies par la spécification des manettes standards du W3C ou implémentées par le GameController de SDL." -#: gnu/packages/games.scm:8245 +#: gnu/packages/games.scm:8247 msgid "" "Quadrapassel comes from the classic falling-block game,\n" "Tetris. The goal of the game is to create complete horizontal lines of\n" @@ -5184,7 +5305,7 @@ msgid "" "your score gets higher, you level up and the blocks fall faster." msgstr "Quadrapassel vient du jeu de blocs classique Tetris. Le but du jeu est de créer des lignes horizontales complètes qui disparaissent. Les blocs qui arrivent ont sept formes possibles à partir de quatre blocs : une forme droite, deux formes en L, un carré et deux formes en S. Les blocs tombent depuis le centre haut de l'écran dans un ordre aléatoire. Vous pouvez tourner les blocs et les déplacer sur l'écran pour les faire tomber et compléter les lignes. Vous gagnez des points en faisant tomber les blocs plus vite et en complétant des lignes. Quand votre score augmente, vous augmentez de niveau et les blocs tombent plus vite." -#: gnu/packages/games.scm:8294 +#: gnu/packages/games.scm:8296 msgid "" "Endless Sky is a 2D space trading and combat game. Explore\n" "other star systems. Earn money by trading, carrying passengers, or completing\n" @@ -5194,7 +5315,7 @@ msgid "" "civilized than your own." msgstr "Endless Sky est un jeu de commerce et de combat spatial. Explorez d'autres systèmes stellaires. Gagnez de l'argent en commerçant, en transportant des passagers ou en complétant des missions. Utilisez vos gains pour acheter un meilleur vaisseau ou pour améliorer vos armes et moteurs sur votre vaisseau actuel. Explosez des pirates. Prenez partie dans une guerre civile. Ou laissez l'espace humain derrière vous pour trouver des aliens sympathiques dont la culture est bien plus civilisée que la vôtre." -#: gnu/packages/games.scm:8443 +#: gnu/packages/games.scm:8445 msgid "" "StepMania is a dance and rhythm game. It features 3D\n" "graphics, keyboard and dance pad support, and an editor for creating your own\n" @@ -5207,7 +5328,7 @@ msgstr "" "\n" "Ce paquet fournit l'application de cœur, mais aucune chanson n'est fournie. Vous devez les télécharger et les installer dans le répertoire @file{$HOME/.stepmania-X.Y/Songs}." -#: gnu/packages/games.scm:8479 +#: gnu/packages/games.scm:8481 msgid "" "@i{oshu!} is a minimalist variant of the @i{osu!} rhythm game,\n" "which is played by pressing buttons and following along sliders as they appear\n" @@ -5223,7 +5344,7 @@ msgstr "" "Ce paquet fournit l'application de base, mais aucune piste. Vous devrez les télécharger\n" "et les extraire séparément." -#: gnu/packages/games.scm:8562 +#: gnu/packages/games.scm:8564 msgid "" "Battle Tanks (also known as \"btanks\") is a funny battle\n" "game, where you can choose one of three vehicles and eliminate your enemy\n" @@ -5232,7 +5353,7 @@ msgid "" "and cooperative." msgstr "Battle Tanks (aussi connu sous le nom de « btanks ») est un jeu de combat drôle, où vous pouvez choisir l'un des trois véhicules et éliminer vos ennemis avec tout un arsenal. Il possède des graphiques dessinés originaux et une musique sympa, il est drôle et dynamique, il a plusieurs modes en réseau pour les matchs à mort et la coop." -#: gnu/packages/games.scm:8596 +#: gnu/packages/games.scm:8598 msgid "" "Slime Volley is a 2D arcade-oriented volleyball simulation, in\n" "the spirit of some Java games of the same name.\n" @@ -5250,7 +5371,7 @@ msgstr "" "8 balles dans le jeu. Une fois qu'une balle touche le sol, le set est terminé\n" "et toutes les balles sont à nouveau servies." -#: gnu/packages/games.scm:8626 +#: gnu/packages/games.scm:8628 msgid "" "Slingshot is a two-dimensional strategy game where two\n" "players attempt to shoot one another through a section of space populated by\n" @@ -5258,14 +5379,14 @@ msgid "" "affected by the gravity of the planets." msgstr "Slingshot est un jeu de stratégie spatiale en deux dimensions où deux joueurs tentent de se tirer l'un sur l'autre à travers une section d'espace remplie de planètes. La principale difficulté du jeu est que les coups, une fois tirés, sont affectés par la gravité des planètes." -#: gnu/packages/games.scm:8674 +#: gnu/packages/games.scm:8676 msgid "" "4D-TRIS is an alteration of the well-known Tetris game. The\n" "game field is extended to 4D space, which has to filled up by the gamer with\n" "4D hyper cubes." msgstr "4D-TRIS est une modification du jeu bien connu Tetris. L'air de jeu est étendu à un espace 4D, qui doit être rempli par le joueur avec des hypercubes en 4D." -#: gnu/packages/games.scm:8751 +#: gnu/packages/games.scm:8753 msgid "" "Arx Libertatis is a cross-platform port of Arx Fatalis, a 2002\n" "first-person role-playing game / dungeon crawler developed by Arkane Studios.\n" @@ -5275,7 +5396,7 @@ msgid "" "where the player draws runes in real time to effect the desired spell." msgstr "Arx libertatis est un port multiplateforme de Arx Fatalis, un jeu de rôle et d'exploration de donjon en vue à la première personne de 2002 développé par Arkane Studios. Ce port n'inclut pas les données du jeu, donc vous devez obtenir une copie du jeu originale ou d'une démo pour jouer à Arx Libertatis. Arx Fatalis propose de la construction d'objets, du combat rapproché et à distance, ainsi qu'un système de lancer de sorts unique où le joueur dessine des runes en temps réel pour lancer le sort désiré." -#: gnu/packages/games.scm:8797 +#: gnu/packages/games.scm:8799 msgid "" "The Legend of Edgar is a 2D platform game with a persistent world.\n" "When Edgar's father fails to return home after venturing out one dark and stormy night,\n" @@ -5283,7 +5404,7 @@ msgid "" "a fortress beyond the forbidden swamp." msgstr "The Legend of edgar est un jeu de plateforme en 2D avec un monde persistant. Lorsque le père d'Edgar ne rentre pas à la maison après être sortie une nuit noire en pleine tempête, Edgar craint le pire : qu'il ait été capturé par le terrible sorcier qui habite dans une forteresse au delà du marré interdit." -#: gnu/packages/games.scm:8899 +#: gnu/packages/games.scm:8901 msgid "" "OpenClonk is a multiplayer action/tactics/skill game. It is\n" "often referred to as a mixture of The Settlers and Worms. In a simple 2D\n" @@ -5293,20 +5414,20 @@ msgid "" "fight each other on an arena-like map." msgstr "OpenClonk est un jeu multijoueur d'action, tactique et d'habileté. Il est souvent comparé à un mélange de The Settlers et de Worms. Dans un paysage 2D simple semblable à antfarm, le joueur contrôle un équipage de clonks, des être humanoïdes petits mais robustes. le jeu encourage le jeu libre mais le but est normalement soit d'exploiter des ressources précieuses de la terre en construisant une mine, soit de se battre sur une carte d'arène." -#: gnu/packages/games.scm:8931 +#: gnu/packages/games.scm:8933 msgid "" "Flare (Free Libre Action Roleplaying Engine) is a simple\n" "game engine built to handle a very specific kind of game: single-player 2D\n" "action RPGs." msgstr "Flare (Free libre action roleplaying engine) est un moteur de jeu simple construit pour gérer un type de jeu spécifique : les RPG actions solos en 2D." -#: gnu/packages/games.scm:8994 +#: gnu/packages/games.scm:8996 msgid "" "Flare is a single-player 2D action RPG with\n" "fast-paced action and a dark fantasy style." msgstr "Flare est un JdR action solo en 2D avec de l'action nerveuse et un style dark fantasy." -#: gnu/packages/games.scm:9046 +#: gnu/packages/games.scm:9048 msgid "" "Far below the surface of the planet is a place of limitless\n" "power. Those that seek to control such a utopia will soon bring an end to\n" @@ -5323,7 +5444,7 @@ msgstr "" "\n" "Meritous est un jeu d'action-aventure avec des contrôles simple mais où l'équilibre entre puissance et temps de soin est un vrai défi dans les combats en temps réel. Dans un monde généré procéduralement, le joueur peut explorer des milliers de pièces à la recherche d'artéfacts puissants, d'outils pour l'aider et pour finalement libérer le dôme d'Orcus du mal qui l'habite." -#: gnu/packages/games.scm:9108 +#: gnu/packages/games.scm:9110 msgid "" "Marble Marcher is a video game that uses a fractal physics\n" "engine and fully procedural rendering to produce beautiful and unique\n" @@ -5333,7 +5454,7 @@ msgid "" "levels to unlock." msgstr "Marble Marcher est un jeu vidéo qui utilise un moteur de physique fractal et un rendu complètement procédural pour produire une expérience de jeu unique. Le jeu se joue sur la surface d'une fractale en évolution. Le but du jeu est de faire atteindre le drapeau à votre bille le plus vite possible. Mais soyez attentif et ne tombez pas hors du niveau, ou ne vous faites pas broyé par la fractale ! Il y a 24 niveaux à débloquer." -#: gnu/packages/games.scm:9159 +#: gnu/packages/games.scm:9161 msgid "" "SimGear is a set of libraries designed to be used as\n" "building blocks for quickly assembling 3D simulations, games, and\n" @@ -5341,7 +5462,7 @@ msgid "" "and also provides the base for the FlightGear Flight Simulator." msgstr "SimGear est un ensemble de bibliothèques conçues pour être utilisées comme des briques de base pour assembler des simulations 3D, des jeux et des applications visuelles. SimGear est développé par le projet FlightGear et fournit aussi une base pour le simulateur de vol FlightGear." -#: gnu/packages/games.scm:9253 +#: gnu/packages/games.scm:9255 msgid "" "The goal of the FlightGear project is to create a\n" "sophisticated flight simulator framework for use in research or academic\n" @@ -5351,14 +5472,14 @@ msgid "" "simulator." msgstr "le but de FlightGear est de créer un simulateur de vol sophistiqué à utiliser pour la recherche ou dans des environnements académiques, pour l'entrainement au pilotage, comme outil de conception industrielle, pour les bricoleurs qui veulent implémenter leurs idées de simulation de vol favorites, et surtout pour un simulateur de vol sur PC fun, réaliste et stimulant." -#: gnu/packages/games.scm:9306 +#: gnu/packages/games.scm:9308 msgid "" "You, as a bunny, have to jump on your opponents to make them\n" "explode. It is a true multiplayer game; you cannot play this alone. You can\n" "play with up to four players simultaneously. It has network support." msgstr "Vous, un lapin, devez sauter sur vos ennemis pour les faire exploser. C'est un vrai jeu multijoueur ; vous ne pouvez pas y jouer seul. Vous pouvez jouer à jusqu'à quatre joueurs simultanément. Il prend en charge le réseau." -#: gnu/packages/games.scm:9373 +#: gnu/packages/games.scm:9375 msgid "" "Hedgewars is a turn based strategy, artillery, action and comedy game,\n" "featuring the antics of pink hedgehogs with attitude as they battle from the\n" @@ -5371,7 +5492,7 @@ msgstr "" "\n" "En tant que commandant, c'est votre boulot de rassembler votre équipe triée sur le volet de soldats hérissons et d'amener la guerre aux portes de l'ennemie." -#: gnu/packages/games.scm:9407 +#: gnu/packages/games.scm:9409 msgid "" "The gruid module provides packages for easily building\n" "grid-based applications in Go. The library abstracts rendering and input for\n" @@ -5387,7 +5508,7 @@ msgstr "" "bibliothèque est de créer des jeux en grille, mais elle est aussi bien adaptée pour\n" "n'importe quelle application basée sur une grille." -#: gnu/packages/games.scm:9437 +#: gnu/packages/games.scm:9439 msgid "" "The gruid-tcell module provides a Gruid driver for building\n" "terminal full-window applications." @@ -5395,7 +5516,7 @@ msgstr "" "Le module gruid-tcell fournit un pilote Gruid pour construire des\n" "applications en terminal qui utilisent toute la fenêtre." -#: gnu/packages/games.scm:9464 +#: gnu/packages/games.scm:9466 msgid "" "Harmonist: Dayoriah Clan Infiltration is a stealth\n" "coffee-break roguelike game. The game has a heavy focus on tactical\n" @@ -5405,7 +5526,7 @@ msgid "" "on items and player adaptability for character progression." msgstr "Harmonist : Dayoriah Clan Infiltration est un jeu d'infiltration roguelike pour la pause café. le jeu est centré autour du positionnement tactique, des mécaniques de lumières et de bruit, l'utilisation des types de terrains et des cônes de vision des monstres. Ayant pour but une expérience de rejouabilité bien pensée, le jeu évite la gestion d'un inventaire trop complexe et la construction d'un personnage, se reposant sur l'adaptabilité des objets et des joueurs pour la progression du personnage." -#: gnu/packages/games.scm:9573 +#: gnu/packages/games.scm:9575 msgid "" "Drascula: The Vampire Strikes Back is a classic humorous 2D\n" "point and click adventure game.\n" @@ -5420,7 +5541,7 @@ msgstr "" "\n" "Dans Drascula vous jouez le rôle de John Hacker, un agent immobilier britannique, qui rencontre une superbe blonde qui se fait kidnapper par un vampire notoire, le compte Drascula, et s'engage dans une quête drôle mais dangereuse pour la sauver. Malheureusement, Hacker n'est pas au courant des véritables ambitions de Drascula : DOMINER le Monde et démontrer qu'il est plus méchant que son frère Vlad." -#: gnu/packages/games.scm:9653 +#: gnu/packages/games.scm:9655 msgid "" "Lure of the Temptress is a classic 2D point and click adventure game.\n" "\n" @@ -5444,7 +5565,7 @@ msgstr "" "\n" "Les hommes du roi sont défaits, le roi est tué et vous tombez de votre cheval vous fracassez le crâne par terre. Vous avez été inconscient pendant un moment quand vous réalisez que vous êtes dans une cellule miteuse gardée par un Skorl pas très amical. Il serait peut-être judicieux de vous échapper…" -#: gnu/packages/games.scm:9752 +#: gnu/packages/games.scm:9754 msgid "" "Flight of the Amazon Queen is a 2D point-and-click\n" "adventure game set in the 1940s.\n" @@ -5464,7 +5585,7 @@ msgstr "" "\n" "Vous jouez Joe King, un pilote en recherche d'emploi qui doit amener Faye Russel (un célèbre acteur de cinéma) dans la jungle amazonienne pour une séance photo. Bien sûr, les choses ne se passent pas comme prévu. Après un malheureux concours de circonstances, ils se retrouvent perdus au cœur de la forêt amazonienne, où Joe s'embarque dans une quête pour secourir une princesse kidnappée et ce faisant, découvre les vrais intentions sinistres d'une compagnie Lederhosen située à un endroit suspect. Dans un environnement 2D riche, Joe croisera une foule d'habitants improbables de la jungle, dont, mais pas seulement, une tribu de femmes amazones et des pygmées de 6 pieds de haut." -#: gnu/packages/games.scm:9852 +#: gnu/packages/games.scm:9854 msgid "" "Beneath a Steel Sky is a science-fiction thriller set in a bleak\n" "post-apocalyptic vision of the future. It revolves around Union City,\n" @@ -5492,7 +5613,7 @@ msgstr "" "\n" "Des années plus tard, la sécurité d'Union City fait son apparition et enlève Robert, tuant sa tribu dans l'opération ; au moment d'arriver à la ville, l'hélicoptère le transportant s'écrase et il s'échappe tout en haut d'une tour au milieu de la ville. Il part alors découvrir la vérité sur son passé, et cherche à se venger pour la mort de sa tribu." -#: gnu/packages/games.scm:9911 +#: gnu/packages/games.scm:9913 msgid "" "GNU Robots is a game in which you program a robot to explore a world\n" "full of enemies that can hurt it, obstacles and food to be eaten. The goal of\n" @@ -5500,14 +5621,14 @@ msgid "" "may be written in a plain text file in the Scheme programming language." msgstr "GNU Robots est un jeu dans lequel vous programmez un robot pour explorer un monde plein d'ennemis qui vous blessent, d'obstacles et de nourriture à manger. Le but du jeu est de rester un vie et de récolter des prix. Le programme du robot peut être écrit dans un fichier en texte brut dans le langage de programmation Scheme." -#: gnu/packages/games.scm:9981 +#: gnu/packages/games.scm:9983 msgid "" "Ri-li is a game in which you drive a wooden toy\n" "steam locomotive across many levels and collect all the coaches to\n" "win." msgstr "Ri-li est un jeu dans lequel vous conduisez une locomotive à vapeur jouet en bois à travers des niveaux et récupérez tous les wagons pour gagner." -#: gnu/packages/games.scm:10037 +#: gnu/packages/games.scm:10039 msgid "" "FreeOrion is a turn-based space empire and galactic conquest (4X)\n" "computer game being designed and built by the FreeOrion project. Control an\n" @@ -5517,14 +5638,14 @@ msgid "" "remake of that series or any other game." msgstr "FreeOrion est un jeu de conquête spatiale et d'empire galactique (4X) au tour par tour conçu et construit par le projet FreeOrion. Contrôlez un empire dans le but d'explorer la galaxie, d'étendre votre territoire, d'exploiter les ressources et d'exterminer les empires alien rivaux. FreeOrion est inspiré des jeux Master of Orion traditionnels, mais ce n'est pas un clone ou une copie de cette série ou d'autres jeux du genre." -#: gnu/packages/games.scm:10093 +#: gnu/packages/games.scm:10095 msgid "" "Leela-zero is a Go engine with no human-provided knowledge, modeled after\n" "the AlphaGo Zero paper. The current best network weights file for the engine\n" "can be downloaded from @url{https://zero.sjeng.org/best-network}." msgstr "Leela-zero est un moteur en Go sans connaissance pré-établie par un humain, modelée d'après le papier AlphaGo Zero. Le fichier de poids du meilleur réseau actuel pour le moteur se trouve sur @url{https://zero.sjeng.org/best-network}." -#: gnu/packages/games.scm:10171 +#: gnu/packages/games.scm:10173 msgid "" "This a tool for Go players which performs the following functions:\n" "@itemize\n" @@ -5544,7 +5665,7 @@ msgstr "" "@item export des jeux dans divers formats\n" "@end itemize" -#: gnu/packages/games.scm:10214 +#: gnu/packages/games.scm:10216 msgid "" "KTuberling is a drawing toy intended for small children and\n" "adults who remain young at heart. The game has no winner; the only purpose is\n" @@ -5575,7 +5696,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:10260 +#: gnu/packages/games.scm:10262 msgid "" "Picmi is a number logic game in which cells in a grid have\n" "to be colored or left blank according to numbers given at the side of the\n" @@ -5587,7 +5708,7 @@ msgstr "" "\n" "Ce paquet fait partie du modules des jeux de KDE." -#: gnu/packages/games.scm:10297 +#: gnu/packages/games.scm:10299 msgid "" "Kolf is a miniature golf game for one to ten players. The\n" "game is played from an overhead view, with a short bar representing the golf\n" @@ -5618,13 +5739,13 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:10341 +#: gnu/packages/games.scm:10343 msgid "" "Shared library and common files for kmahjongg, kshisen and\n" "other Mah Jongg like games." msgstr "Bibliothèque partagée et fichiers communs pour kmahjongg, kshisen et d'autres jeux utilisant les tuiles de Mah Jongg." -#: gnu/packages/games.scm:10374 +#: gnu/packages/games.scm:10376 msgid "" "In KMahjongg the tiles are scrambled and staked on top of\n" "each other to resemble a certain shape. The player is then expected to remove\n" @@ -5641,7 +5762,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:10416 +#: gnu/packages/games.scm:10418 msgid "" "KShisen is a solitaire-like game played using the standard\n" "set of Mahjong tiles. Unlike Mahjong however, KShisen has only one layer of\n" @@ -5653,7 +5774,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:10471 +#: gnu/packages/games.scm:10473 msgid "" "Kajongg is the ancient Chinese board game for 4 players.\n" "\n" @@ -5675,7 +5796,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:10513 +#: gnu/packages/games.scm:10515 msgid "" "KBreakout is similar to the classics breakout and xboing,\n" "featuring a number of added graphical enhancements and effects. You control a\n" @@ -5688,7 +5809,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:10551 +#: gnu/packages/games.scm:10553 msgid "" "KMines is a classic Minesweeper game. The idea is to\n" "uncover all the squares without blowing up any mines. When a mine is blown\n" @@ -5700,7 +5821,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:10588 +#: gnu/packages/games.scm:10590 msgid "" "Konquest is the KDE version of Gnu-Lactic Konquest. Players\n" "conquer other planets by sending ships to them. The goal is to build an\n" @@ -5714,7 +5835,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:10627 +#: gnu/packages/games.scm:10629 msgid "" "KBounce is a single player arcade game with the elements of\n" "puzzle. It is played on a field, surrounded by wall, with two or more balls\n" @@ -5727,7 +5848,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:10665 +#: gnu/packages/games.scm:10667 msgid "" "KBlocks is the classic Tetris-like falling blocks game.\n" "\n" @@ -5744,7 +5865,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:10708 +#: gnu/packages/games.scm:10710 msgid "" "KSudoku is a Sudoku game and solver, supporting a range of\n" "2D and 3D Sudoku variants. In addition to playing Sudoku, it can print Sudoku\n" @@ -5784,7 +5905,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:10763 +#: gnu/packages/games.scm:10765 msgid "" "KLines is a simple but highly addictive one player game.\n" "\n" @@ -5808,7 +5929,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:10806 +#: gnu/packages/games.scm:10808 msgid "" "KGoldrunner is an action game where the hero runs through a\n" "maze, climbs stairs, dig holes and dodges enemies in order to collect all the\n" @@ -5827,7 +5948,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:10849 +#: gnu/packages/games.scm:10851 msgid "" "KDiamond is a three-in-a-row game like Bejeweled. It\n" "features unlimited fun with randomly generated games and five difficulty\n" @@ -5839,7 +5960,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:10885 +#: gnu/packages/games.scm:10887 msgid "" "KFourInLine is a board game for two players based on the\n" "Connect-Four game.\n" @@ -5855,7 +5976,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:10924 +#: gnu/packages/games.scm:10926 msgid "" "KBlackbox is a game of hide and seek played on a grid of\n" "boxes where the computer has hidden several balls. The position of the hidden\n" @@ -5872,7 +5993,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:10964 +#: gnu/packages/games.scm:10966 msgid "" "KNetWalk is a small game where you have to build up a\n" "computer network by rotating the wires to connect the terminals to the server.\n" @@ -5890,7 +6011,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:11002 +#: gnu/packages/games.scm:11004 msgid "" "Bomber is a single player arcade game.\n" "\n" @@ -5913,7 +6034,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:11047 +#: gnu/packages/games.scm:11049 msgid "" "Granatier is a clone of the classic Bomberman game,\n" "inspired by the work of the Clanbomber clone.\n" @@ -5924,7 +6045,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:11085 +#: gnu/packages/games.scm:11087 msgid "" "KsirK is a multi-player network-enabled game. The goal of\n" "the game is simply to conquer the world by attacking your neighbors with your\n" @@ -5962,7 +6083,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:11145 +#: gnu/packages/games.scm:11147 msgid "" "Palapeli is a jigsaw puzzle game. Unlike other games in\n" "that genre, you are not limited to aligning pieces on imaginary grids. The\n" @@ -5979,7 +6100,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:11184 +#: gnu/packages/games.scm:11186 msgid "" "Kiriki is an addictive and fun dice game, designed to be\n" "played by as many as six players.\n" @@ -5995,7 +6116,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:11224 +#: gnu/packages/games.scm:11226 msgid "" "Kigo is an open-source implementation of the popular Go\n" "game.\n" @@ -6019,7 +6140,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:11269 +#: gnu/packages/games.scm:11271 msgid "" "Kubrick is a game based on the Rubik's Cube puzzle.\n" "\n" @@ -6037,7 +6158,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:11309 +#: gnu/packages/games.scm:11311 msgid "" "Lieutnant Skat (from German \"Offiziersskat\") is a fun and\n" "engaging card game for two players, where the second player is either live\n" @@ -6053,7 +6174,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:11347 +#: gnu/packages/games.scm:11349 msgid "" "Kapman is a clone of the well known game Pac-Man.\n" "\n" @@ -6070,7 +6191,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:11386 +#: gnu/packages/games.scm:11388 msgid "" "KSpaceduel is a space battle game for one or two players,\n" "where two ships fly around a star in a struggle to be the only survivor.\n" @@ -6081,7 +6202,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:11419 +#: gnu/packages/games.scm:11421 msgid "" "Bovo is a Gomoku (from Japanese 五目並べ - lit. \"five\n" "points\") like game for two players, where the opponents alternate in placing\n" @@ -6095,7 +6216,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:11457 +#: gnu/packages/games.scm:11459 msgid "" "Killbots is a simple game of evading killer robots.\n" "\n" @@ -6114,7 +6235,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:11499 +#: gnu/packages/games.scm:11501 msgid "" "KSnakeDuel is a fast action game where you steer a snake\n" "which has to eat food. While eating the snake grows. But once a player\n" @@ -6127,7 +6248,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:11535 +#: gnu/packages/games.scm:11537 msgid "" "In Kollision you use mouse to control a small blue ball in a\n" "closed space environment filled with small red balls, which move about\n" @@ -6141,7 +6262,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:11575 +#: gnu/packages/games.scm:11577 msgid "" "KBattleship is a Battle Ship game for KDE.\n" "\n" @@ -6157,7 +6278,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:11615 +#: gnu/packages/games.scm:11617 msgid "" "KReversi is a simple one player strategy game played\n" "against the computer.\n" @@ -6175,7 +6296,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:11655 +#: gnu/packages/games.scm:11657 msgid "" "KSquares is an implementation of the popular paper based\n" "game Squares. Two players take turns connecting dots on a grid to complete\n" @@ -6187,7 +6308,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:11692 +#: gnu/packages/games.scm:11694 msgid "" "KJumpingcube is a simple tactical game for one or two\n" "players, played on a grid of numbered squares. Each turn, players compete for\n" @@ -6199,7 +6320,7 @@ msgstr "" "\n" "Ce paquet fait partie du module des jeux de KDE." -#: gnu/packages/games.scm:11782 +#: gnu/packages/games.scm:11784 msgid "" "X-Moto is a challenging 2D motocross platform game, where\n" "physics play an all important role in the gameplay. You need to\n" @@ -6207,27 +6328,27 @@ msgid "" "the more difficult challenges." msgstr "X-Moto est un jeu de plateforme en 2D stimulant, où la physique joue une part important dans l'expérience de jeu. Vous devez contrôler une moto et la pousser à ses limites, si vous voulez avoir une chance de réussir les défis les plus difficiles." -#: gnu/packages/games.scm:11827 +#: gnu/packages/games.scm:11829 msgid "" "Eboard is a chess board interface for ICS (Internet Chess Servers)\n" "and chess engines." msgstr "Eboard est une interface de plateau d'échecs pour ICS (Internet Chess Servers) et les moteurs d'échecs." -#: gnu/packages/games.scm:11880 +#: gnu/packages/games.scm:11882 msgid "" "ChessX is a chess database. With ChessX you can operate on your\n" "collection of chess games in many ways: browse, edit, add, organize, analyze,\n" "etc. You can also play games on FICS or against an engine." msgstr "ChessX est une base de données d'échecs. Avec ChessX vous pouvez gérer votre propre collections de jeux d'échecs de plusieurs façons : en navigant, modifiant, ajoutant, organisant, analysant les parties, etc. Vous pouvez aussi jouer des parties sur FICS ou contre un moteur." -#: gnu/packages/games.scm:11935 +#: gnu/packages/games.scm:11937 msgid "" "Stockfish is a very strong chess engine. It is much stronger than the\n" "best human chess grandmasters. It can be used with UCI-compatible GUIs like\n" "ChessX." msgstr "Stockfish est un moteur d'échecs très puissant. Il est plus fort que les meilleurs humains. Il peut être utilisé avec les interfaces graphiques compatibles UCI comme ChessX." -#: gnu/packages/games.scm:11964 +#: gnu/packages/games.scm:11966 msgid "" "Barrage is a rather destructive action game that puts you on a shooting\n" "range with the objective to hit as many dummy targets as possible within\n" @@ -6236,7 +6357,7 @@ msgid "" "get high scores." msgstr "Barrage est un jeu d'action plutôt destructif qui vous place sur un champ de tir avec pour objectif de toucher le plus de cibles possible en 3 minutes. Vous contrôlez une arme qui peut lancer des petites ou grande grenades sur des soldats, des jeeps et des tanks. Le jeu est simple mais ce n'est pas si facile d'avoir de bons scores." -#: gnu/packages/games.scm:11990 +#: gnu/packages/games.scm:11992 msgid "" "This is a clone of the classic game BurgerTime. In it, you play\n" "the part of a chef who must create burgers by stepping repeatedly on\n" @@ -6246,7 +6367,7 @@ msgid "" "protect you." msgstr "C'est un clone de BurgerTime. Dedans, vous jouez un chef qui doit créer des burgers et trébucher sur les ingrédients jusqu'à ce qu'ils soient à leur place. Et pour compliquer les choses, vous devez aussi éviter les ingrédients maléfiques animés tout en effectuant cette tache, avec rien d'autre que votre moulin à poivre pour vous protéger." -#: gnu/packages/games.scm:12018 +#: gnu/packages/games.scm:12020 msgid "" "Seven Kingdoms, designed by Trevor Chan, brings a blend of Real-Time\n" "Strategy with the addition of trade, diplomacy, and espionage. The game\n" @@ -6256,7 +6377,7 @@ msgid "" "kingdom." msgstr "Seven Kingdoms, conçu par Trevor Chan, apporte un mélange de stratégie en temps réel et de commerce, diplomatie et d'espionnage. Le jeu permet aux joueurs de se battre contre jusqu'à six autres royaumes et permet aux joueurs de conquérir leurs adversaires en les battant à la guerre (avec des troupes et des machines), en capturant leurs bâtiments avec des espions, ou en offrant d'acheter leur royaume." -#: gnu/packages/games.scm:12134 +#: gnu/packages/games.scm:12136 msgid "" "In the grand tradition of Marble Madness and Super Monkey Ball,\n" "Neverball has you guide a rolling ball through dangerous territory. Balance\n" @@ -6266,13 +6387,13 @@ msgid "" "game." msgstr "Dans la grande tradition de Marble Madness et Super Monkey Ball, Neverball vous fait guider une bille à travers un territoire dangereux. Gardez l'équilibre sur des ponts étroits, naviguez dans des labyrinthes, prenez des plateformes mouvantes, et évitez les éléments qui vous poussent ou vous attirent pour atteindre le but. Faites la course contre la montre pour récupérer des pièces et gagner des billes supplémentaires. Neverputt est aussi inclus, un jeu de minigolf en 3D." -#: gnu/packages/games.scm:12210 +#: gnu/packages/games.scm:12212 msgid "" "With PokerTH you can play the Texas holdem poker game, either against\n" "computer opponents or against real players online." msgstr "Avec PokerTH vous pouvez jouer au jeu de poker Texas Holdem, contre l'ordinateur ou contre des joueurs en ligne." -#: gnu/packages/games.scm:12281 +#: gnu/packages/games.scm:12283 msgid "" "Xblackjack is a MOTIF/OLIT based tool constructed to get you ready for\n" "the casino. It was inspired by a book called \"Beat the Dealer\" by Edward\n" @@ -6281,13 +6402,13 @@ msgid "" "System\" (high-low system)." msgstr "" -#: gnu/packages/games.scm:12321 +#: gnu/packages/games.scm:12323 msgid "" "Pilot your ship inside a planet to find and rescue the colonists trapped\n" "inside the Zenith Colony." msgstr "Pilotez votre vaisseau dans une planète pour trouver et secourir les colons piégés dans la colonie de Zenith." -#: gnu/packages/games.scm:12341 +#: gnu/packages/games.scm:12343 msgid "" "Provides a large set of Go-related services for X11:\n" "@itemize\n" @@ -6306,7 +6427,7 @@ msgstr "" "capables d'utiliser le modem comme GnuGo.\n" "@end itemize" -#: gnu/packages/games.scm:12401 +#: gnu/packages/games.scm:12403 msgid "" "Passage is meant to be a memento mori game. It presents an entire life,\n" "from young adulthood through old age and death, in the span of five minutes.\n" @@ -6320,7 +6441,7 @@ msgstr "" "joueur sont cruciaux. Il n'y a pas de « bonne » façon de jouer à Passage, comme il n'y\n" "a pas de bonne façon de l'interpréter." -#: gnu/packages/games.scm:12435 +#: gnu/packages/games.scm:12437 msgid "" "High performance animated desktop background setter for\n" "X11 that won't set your CPU on fire, drain your laptop battery, or lower video\n" @@ -6330,7 +6451,7 @@ msgstr "" "ne mettra pas le feu à votre CPU, ne déchargera pas la batterie de votre ordinateur portable,\n" "ni ne baissera les FPS de vos jeux." -#: gnu/packages/games.scm:12465 +#: gnu/packages/games.scm:12467 msgid "" "Curse of War is a fast-paced action strategy game originally\n" "implemented using ncurses user interface. An SDL graphical version is also\n" @@ -6340,7 +6461,7 @@ msgstr "" "avec une interface en ncurses. Une version graphique avec SDL est aussi\n" "disponible." -#: gnu/packages/games.scm:12496 +#: gnu/packages/games.scm:12498 msgid "" "Schiffbruch is a mix of building, strategy and adventure and gets played\n" "with a two-dimensional view. The game deals with the consequences of a ship\n" @@ -6354,7 +6475,7 @@ msgstr "" "l'île, trouver de la nourriture, construire un abris et essayer d'attirer l'attention,\n" "pour qu'on puisse vous retrouver." -#: gnu/packages/games.scm:12556 +#: gnu/packages/games.scm:12558 msgid "" "This package provides port of Prince of Persia, based on the\n" "disassembly of the DOS version, extended with new features." @@ -6362,7 +6483,7 @@ msgstr "" "Ce paquet fournit un port de Prince of Persia, basé sur le désassemblage\n" "de la version DOS, étendue avec de nouvelles fonctionnalités." -#: gnu/packages/games.scm:12587 +#: gnu/packages/games.scm:12589 #, scheme-format msgid "" "@code{fheroes2} is an implementation of Heroes of Might and\n" @@ -6487,7 +6608,7 @@ msgid "" "from Markdown files." msgstr "" -#: gnu/packages/gettext.scm:311 +#: gnu/packages/gettext.scm:304 msgid "" "The po4a (PO for anything) project goal is to ease translations (and\n" "more interestingly, the maintenance of translations) using gettext tools on\n" @@ -6586,18 +6707,18 @@ msgid "" "system. It was forked from the GNU Image Manipulation Program." msgstr "" -#: gnu/packages/gnome.scm:284 +#: gnu/packages/gnome.scm:288 msgid "GUPnP-IGD is a library to handle UPnP IGD port mapping." msgstr "" -#: gnu/packages/gnome.scm:340 +#: gnu/packages/gnome.scm:344 msgid "" "Brasero is an application to burn CD/DVD for the Gnome\n" "Desktop. It is designed to be as simple as possible and has some unique\n" "features to enable users to create their discs easily and quickly." msgstr "" -#: gnu/packages/gnome.scm:372 +#: gnu/packages/gnome.scm:376 msgid "" "Libcloudproviders is a DBus API that allows cloud storage sync\n" "clients to expose their services. Clients such as file managers and desktop\n" @@ -6605,19 +6726,19 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:444 +#: gnu/packages/gnome.scm:448 msgid "" "LibGRSS is a Glib abstraction to handle feeds in RSS, Atom,\n" "and other formats." msgstr "" -#: gnu/packages/gnome.scm:472 +#: gnu/packages/gnome.scm:476 msgid "" "GNOME-JS-Common provides common modules for GNOME JavaScript\n" "bindings." msgstr "" -#: gnu/packages/gnome.scm:555 +#: gnu/packages/gnome.scm:559 msgid "" "Seed is a library and interpreter, dynamically bridging\n" "(through GObjectIntrospection) the WebKit JavaScriptCore engine, with the\n" @@ -6626,21 +6747,21 @@ msgid "" "in JavaScript." msgstr "" -#: gnu/packages/gnome.scm:611 +#: gnu/packages/gnome.scm:615 msgid "" "Libdmapsharing is a library which allows programs to access,\n" "share and control the playback of media content using DMAP (DAAP, DPAP & DACP).\n" "It is written in C using GObject and libsoup." msgstr "" -#: gnu/packages/gnome.scm:644 +#: gnu/packages/gnome.scm:648 msgid "" "GTX is a small collection of convenience functions intended to\n" "enhance the GLib testing framework. With specific emphasis on easing the pain\n" "of writing test cases for asynchronous interactions." msgstr "" -#: gnu/packages/gnome.scm:721 +#: gnu/packages/gnome.scm:725 msgid "" "Dee is a library that uses DBus to provide objects allowing\n" "you to create Model-View-Controller type programs across DBus. It also consists\n" @@ -6648,7 +6769,7 @@ msgid "" "of known objects without needing a central registrar." msgstr "" -#: gnu/packages/gnome.scm:802 +#: gnu/packages/gnome.scm:806 msgid "" "Zeitgeist is a service which logs the users’s activities and\n" "events, anywhere from files opened to websites visited and conversations. It\n" @@ -6657,27 +6778,27 @@ msgid "" "patterns." msgstr "" -#: gnu/packages/gnome.scm:869 +#: gnu/packages/gnome.scm:871 msgid "" "GNOME Recipes helps you discover what to cook today,\n" "tomorrow, the rest of the week and for special occasions." msgstr "" -#: gnu/packages/gnome.scm:939 +#: gnu/packages/gnome.scm:940 msgid "" "GNOME Photos is a simple and elegant replacement for using a\n" "file manager to deal with photos. Enhance, crop and edit in a snap. Seamless\n" "cloud integration is offered through GNOME Online Accounts." msgstr "" -#: gnu/packages/gnome.scm:1007 +#: gnu/packages/gnome.scm:1008 msgid "" "GNOME Music is the new GNOME music playing application that\n" "aims to combine an elegant and immersive browsing experience with simple\n" "and straightforward controls." msgstr "" -#: gnu/packages/gnome.scm:1028 +#: gnu/packages/gnome.scm:1029 msgid "" "PortableXDR is an implementation of External Data\n" "Representation (XDR) Library. It is a standard data serialization format, for\n" @@ -6685,25 +6806,25 @@ msgid "" "between different kinds of computer systems." msgstr "" -#: gnu/packages/gnome.scm:1066 +#: gnu/packages/gnome.scm:1067 msgid "" "Tepl is a library that eases the development of\n" "GtkSourceView-based text editors and IDEs." msgstr "" -#: gnu/packages/gnome.scm:1107 +#: gnu/packages/gnome.scm:1108 msgid "" "krb5-auth-dialog is a simple dialog that monitors Kerberos\n" "tickets, and pops up a dialog when they are about to expire." msgstr "" -#: gnu/packages/gnome.scm:1132 +#: gnu/packages/gnome.scm:1133 msgid "" "Notification-Daemon is the server implementation of the\n" "freedesktop.org desktop notification specification." msgstr "" -#: gnu/packages/gnome.scm:1168 +#: gnu/packages/gnome.scm:1169 msgid "" "The mm-common module provides the build infrastructure\n" "and utilities shared among the GNOME C++ binding libraries. Release\n" @@ -6711,55 +6832,55 @@ msgid "" "Library reference documentation." msgstr "" -#: gnu/packages/gnome.scm:1214 +#: gnu/packages/gnome.scm:1215 msgid "" "PhoDav was initially developed as a file-sharing mechanism for Spice,\n" "but it is generic enough to be reused in other projects,\n" "in particular in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1267 +#: gnu/packages/gnome.scm:1268 msgid "" "GNOME Color Manager is a session framework that makes\n" "it easy to manage, install and generate color profiles\n" "in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1319 +#: gnu/packages/gnome.scm:1320 msgid "" "GNOME Online Miners provides a set of crawlers that\n" "go through your online content and index them locally in Tracker.\n" "It has miners for Facebook, Flickr, Google, ownCloud and SkyDrive." msgstr "" -#: gnu/packages/gnome.scm:1352 +#: gnu/packages/gnome.scm:1353 msgid "" "This package provides a library to handle resource discovery\n" "and announcement over @acronym{SSDP, Simple Service Discovery Protocol} and\n" "a debugging tool, @command{gssdp-device-sniffer}." msgstr "" -#: gnu/packages/gnome.scm:1391 +#: gnu/packages/gnome.scm:1392 msgid "" "This package provides GUPnP, an object-oriented framework\n" "for creating UPnP devices and control points, written in C using\n" "@code{GObject} and @code{libsoup}." msgstr "" -#: gnu/packages/gnome.scm:1423 +#: gnu/packages/gnome.scm:1424 msgid "" "This package provides a small utility library to\n" "support DLNA-related tasks such as media profile guessing, transcoding to a\n" "given profile, etc. DLNA is a subset of UPnP A/V." msgstr "" -#: gnu/packages/gnome.scm:1453 +#: gnu/packages/gnome.scm:1454 msgid "" "This package provides a small library for handling\n" "and implementation of UPnP A/V profiles." msgstr "" -#: gnu/packages/gnome.scm:1478 +#: gnu/packages/gnome.scm:1479 msgid "" "The libmediaart library is the foundation for media art caching,\n" "extraction, and lookup for applications on the desktop." @@ -6772,14 +6893,14 @@ msgid "" "tour of all gnome components and allows the user to set them up." msgstr "" -#: gnu/packages/gnome.scm:1584 +#: gnu/packages/gnome.scm:1583 msgid "" "GNOME User Share is a small package that binds together\n" "various free software projects to bring easy to use user-level file\n" "sharing to the masses." msgstr "" -#: gnu/packages/gnome.scm:1639 +#: gnu/packages/gnome.scm:1638 msgid "" "Sushi is a DBus-activated service that allows applications\n" "to preview files on the GNOME desktop." @@ -6831,7 +6952,7 @@ msgid "" "and system administrators." msgstr "" -#: gnu/packages/gnome.scm:1946 +#: gnu/packages/gnome.scm:1950 msgid "" "Dia can be used to draw different types of diagrams, and\n" "includes support for UML static structure diagrams (class diagrams), entity\n" @@ -6839,28 +6960,28 @@ msgid "" "formats like PNG, SVG, PDF and EPS." msgstr "" -#: gnu/packages/gnome.scm:1991 +#: gnu/packages/gnome.scm:1995 msgid "" "libgdata is a GLib-based library for accessing online service APIs using\n" "the GData protocol — most notably, Google's services. It provides APIs to\n" "access the common Google services, and has full asynchronous support." msgstr "" -#: gnu/packages/gnome.scm:2019 +#: gnu/packages/gnome.scm:2023 msgid "" "libgxps is a GObject-based library for handling and rendering XPS\n" "documents. This package also contains binaries that can convert XPS documents\n" "to other formats." msgstr "" -#: gnu/packages/gnome.scm:2060 +#: gnu/packages/gnome.scm:2063 msgid "" "Characters is a simple utility application to find\n" "and insert unusual characters. It allows you to quickly find the\n" "character you are looking for by searching for keywords." msgstr "" -#: gnu/packages/gnome.scm:2081 +#: gnu/packages/gnome.scm:2084 msgid "" "gnome-common contains various files needed to bootstrap\n" "GNOME modules built from Git. It contains a common \"autogen.sh\" script that\n" @@ -6868,13 +6989,13 @@ msgid "" "commonly used macros." msgstr "" -#: gnu/packages/gnome.scm:2142 +#: gnu/packages/gnome.scm:2145 msgid "" "GNOME Contacts organizes your contact information from online and\n" "offline sources, providing a centralized place for managing your contacts." msgstr "" -#: gnu/packages/gnome.scm:2222 +#: gnu/packages/gnome.scm:2225 msgid "" "The libgnome-desktop library provides API shared by several applications\n" "on the desktop, but that cannot live in the platform for various reasons.\n" @@ -6884,40 +7005,40 @@ msgid "" "The gnome-about program helps find which version of GNOME is installed." msgstr "" -#: gnu/packages/gnome.scm:2257 +#: gnu/packages/gnome.scm:2260 msgid "" "Gnome-doc-utils is a collection of documentation utilities for the\n" "Gnome project. It includes xml2po tool which makes it easier to translate\n" "and keep up to date translations of documentation." msgstr "" -#: gnu/packages/gnome.scm:2309 +#: gnu/packages/gnome.scm:2311 msgid "Disk management utility for GNOME." -msgstr "" +msgstr "Gestionnaire de disques pour GNOME." -#: gnu/packages/gnome.scm:2352 +#: gnu/packages/gnome.scm:2353 msgid "" "Application to show you the fonts installed on your computer\n" "for your use as thumbnails. Selecting any thumbnails shows the full view of how\n" "the font would look under various sizes." msgstr "" -#: gnu/packages/gnome.scm:2420 +#: gnu/packages/gnome.scm:2421 msgid "" "The GCR package contains libraries used for displaying certificates and\n" "accessing key stores. It also provides the viewer for crypto files on the\n" "GNOME Desktop." msgstr "" -#: gnu/packages/gnome.scm:2459 +#: gnu/packages/gnome.scm:2460 msgid "This library provides docking features for gtk+." msgstr "" -#: gnu/packages/gnome.scm:2505 +#: gnu/packages/gnome.scm:2506 msgid "Client library to access passwords from the GNOME keyring." msgstr "" -#: gnu/packages/gnome.scm:2575 +#: gnu/packages/gnome.scm:2576 msgid "" "gnome-keyring is a program that keeps passwords and other secrets for\n" "users. It is run as a daemon in the session, similar to ssh-agent, and other\n" @@ -6936,13 +7057,13 @@ msgid "" "on the GNOME Desktop with a single simple application." msgstr "" -#: gnu/packages/gnome.scm:2693 +#: gnu/packages/gnome.scm:2692 msgid "" "Gsettings-desktop-schemas contains a collection of GSettings\n" "schemas for settings shared by various components of the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:2729 +#: gnu/packages/gnome.scm:2728 msgid "" "Liblarch is a Python library built to easily handle data structures such\n" "as lists, trees and acyclic graphs. There's also a GTK binding that will\n" @@ -6953,7 +7074,7 @@ msgid "" "and how they are displayed (View)." msgstr "" -#: gnu/packages/gnome.scm:2790 +#: gnu/packages/gnome.scm:2789 msgid "" "Getting Things GNOME! (GTG) is a personal tasks and TODO list items\n" "organizer for the GNOME desktop environment inspired by the Getting Things\n" @@ -6963,24 +7084,24 @@ msgid "" "know, from small tasks to large projects." msgstr "" -#: gnu/packages/gnome.scm:2829 +#: gnu/packages/gnome.scm:2828 msgid "" "To help with the transition to the Freedesktop Icon Naming\n" "Specification, the icon naming utility maps the icon names used by the\n" "GNOME and KDE desktops to the icon names proposed in the specification." msgstr "" -#: gnu/packages/gnome.scm:2858 +#: gnu/packages/gnome.scm:2857 msgid "Icons for the GNOME desktop." -msgstr "" +msgstr "Icônes pour le bureau GNOME." -#: gnu/packages/gnome.scm:2897 +#: gnu/packages/gnome.scm:2896 msgid "" "This is an icon theme that follows the Tango visual\n" "guidelines." msgstr "" -#: gnu/packages/gnome.scm:2927 +#: gnu/packages/gnome.scm:2926 msgid "" "The shared-mime-info package contains the core database of common types\n" "and the update-mime-database command used to extend it. It requires glib2 to\n" @@ -6989,18 +7110,18 @@ msgid "" "database is translated at Transifex." msgstr "" -#: gnu/packages/gnome.scm:3012 +#: gnu/packages/gnome.scm:3011 msgid "" "system-config-printer is a CUPS administration tool. It's written in\n" "Python using GTK+, and uses the @acronym{IPP, Internet Printing Protocol} when\n" "configuring CUPS." msgstr "" -#: gnu/packages/gnome.scm:3036 +#: gnu/packages/gnome.scm:3035 msgid "Freedesktop icon theme." msgstr "" -#: gnu/packages/gnome.scm:3085 +#: gnu/packages/gnome.scm:3084 msgid "" "Libnotify is a library that sends desktop notifications to a\n" "notification daemon, as defined in the Desktop Notifications spec. These\n" @@ -7008,7 +7129,7 @@ msgid "" "some form of information without getting in the user's way." msgstr "" -#: gnu/packages/gnome.scm:3132 +#: gnu/packages/gnome.scm:3131 msgid "" "Libpeas is a gobject-based plugin engine, targeted at giving every\n" "application the chance to assume its own extensibility. It also has a set of\n" @@ -7017,21 +7138,21 @@ msgid "" "API." msgstr "" -#: gnu/packages/gnome.scm:3168 +#: gnu/packages/gnome.scm:3167 msgid "" "GtkGLExt is an OpenGL extension to GTK+. It provides\n" "additional GDK objects which support OpenGL rendering in GTK+ and GtkWidget\n" "API add-ons to make GTK+ widgets OpenGL-capable." msgstr "" -#: gnu/packages/gnome.scm:3248 +#: gnu/packages/gnome.scm:3247 msgid "" "Glade is a rapid application development (RAD) tool to\n" "enable quick & easy development of user interfaces for the GTK+ toolkit and\n" "the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:3280 +#: gnu/packages/gnome.scm:3279 msgid "" "Libcroco is a standalone CSS2 parsing and manipulation library.\n" "The parser provides a low level event driven SAC-like API and a CSS object\n" @@ -7039,13 +7160,13 @@ msgid "" "XML/CSS rendering engine." msgstr "" -#: gnu/packages/gnome.scm:3347 +#: gnu/packages/gnome.scm:3346 msgid "" "Libgsf aims to provide an efficient extensible I/O abstraction\n" "for dealing with different structured file formats." msgstr "" -#: gnu/packages/gnome.scm:3526 +#: gnu/packages/gnome.scm:3525 msgid "" "Librsvg is a library to render SVG images to Cairo surfaces.\n" "GNOME uses this to render SVG icons. Outside of GNOME, other desktop\n" @@ -7053,7 +7174,7 @@ msgid "" "diagrams." msgstr "" -#: gnu/packages/gnome.scm:3649 +#: gnu/packages/gnome.scm:3648 msgid "" "Libidl is a library for creating trees of CORBA Interface\n" "Definition Language (idl) files, which is a specification for defining\n" @@ -7062,82 +7183,82 @@ msgid "" "functionality was designed to be as reusable and portable as possible." msgstr "" -#: gnu/packages/gnome.scm:3704 +#: gnu/packages/gnome.scm:3703 msgid "" "ORBit2 is a CORBA 2.4-compliant Object Request Broker (orb)\n" "featuring mature C, C++ and Python bindings." msgstr "" -#: gnu/packages/gnome.scm:3758 +#: gnu/packages/gnome.scm:3757 msgid "" "Bonobo is a framework for creating reusable components for\n" "use in GNOME applications, built on top of CORBA." msgstr "" -#: gnu/packages/gnome.scm:3789 +#: gnu/packages/gnome.scm:3788 msgid "" "Gconf is a system for storing application preferences. It\n" "is intended for user preferences; not arbitrary data storage." msgstr "" -#: gnu/packages/gnome.scm:3823 +#: gnu/packages/gnome.scm:3822 msgid "" "GNOME Mime Data is a module which contains the base MIME\n" "and Application database for GNOME. The data stored by this module is\n" "designed to be accessed through the MIME functions in GnomeVFS." msgstr "" -#: gnu/packages/gnome.scm:3863 +#: gnu/packages/gnome.scm:3862 msgid "" "GnomeVFS is the core library used to access files and folders in GNOME\n" "applications. It provides a file system abstraction which allows applications\n" "to access local and remote files with a single consistent API." msgstr "" -#: gnu/packages/gnome.scm:3904 +#: gnu/packages/gnome.scm:3903 msgid "" "The libgnome library provides a number of useful routines\n" "for building modern applications, including session management, activation of\n" "files and URIs, and displaying help." msgstr "" -#: gnu/packages/gnome.scm:3928 +#: gnu/packages/gnome.scm:3927 msgid "" "Libart is a 2D drawing library intended as a\n" "high-quality vector-based 2D library with antialiasing and alpha composition." msgstr "" -#: gnu/packages/gnome.scm:3955 +#: gnu/packages/gnome.scm:3954 msgid "" "The GnomeCanvas widget provides a flexible widget for\n" "creating interactive structured graphics." msgstr "" -#: gnu/packages/gnome.scm:3977 +#: gnu/packages/gnome.scm:3976 msgid "C++ bindings to the GNOME Canvas library." msgstr "" -#: gnu/packages/gnome.scm:4003 +#: gnu/packages/gnome.scm:4002 msgid "" "The libgnomeui library provides additional widgets for\n" "applications. Many of the widgets from libgnomeui have already been\n" "ported to GTK+." msgstr "" -#: gnu/packages/gnome.scm:4029 +#: gnu/packages/gnome.scm:4028 msgid "" "Libglade is a library that provides interfaces for loading\n" "graphical interfaces described in glade files and for accessing the\n" "widgets built in the loading process." msgstr "" -#: gnu/packages/gnome.scm:4071 +#: gnu/packages/gnome.scm:4070 msgid "" "The Bonobo UI library provides a number of user interface\n" "controls using the Bonobo component framework." msgstr "" -#: gnu/packages/gnome.scm:4098 +#: gnu/packages/gnome.scm:4097 msgid "" "Libwnck is the Window Navigator Construction Kit, a library for use in\n" "writing pagers, tasklists, and more generally applications that are dealing\n" @@ -7145,11 +7266,11 @@ msgid "" "Hints specification (EWMH)." msgstr "" -#: gnu/packages/gnome.scm:4148 +#: gnu/packages/gnome.scm:4147 msgid "A GLib/GTK+ set of document-centric objects and utilities." msgstr "" -#: gnu/packages/gnome.scm:4234 +#: gnu/packages/gnome.scm:4233 msgid "" "GNUmeric is a GNU spreadsheet application, running under GNOME. It is\n" "interoperable with other spreadsheet applications. It has a vast array of\n" @@ -7158,11 +7279,11 @@ msgid "" "engineering." msgstr "" -#: gnu/packages/gnome.scm:4290 +#: gnu/packages/gnome.scm:4289 msgid "Drawing is a basic image editor aiming at the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:4326 +#: gnu/packages/gnome.scm:4325 msgid "The default GNOME 3 themes (Adwaita and some accessibility themes)." msgstr "" @@ -7181,7 +7302,7 @@ msgid "" "targeting the GNOME stack simple." msgstr "" -#: gnu/packages/gnome.scm:4481 +#: gnu/packages/gnome.scm:4482 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, and a minimal sample application (vte) using that. Vte is mainly used in\n" @@ -7189,34 +7310,34 @@ msgid "" "editors, IDEs, etc." msgstr "" -#: gnu/packages/gnome.scm:4505 +#: gnu/packages/gnome.scm:4506 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, this fork provides additional functions exposed for keyboard text\n" "selection and URL hints." msgstr "" -#: gnu/packages/gnome.scm:4585 +#: gnu/packages/gnome.scm:4586 msgid "" "Vinagre is a remote display client supporting the VNC, SPICE\n" "and RDP protocols." msgstr "" -#: gnu/packages/gnome.scm:4631 +#: gnu/packages/gnome.scm:4633 msgid "" "Dconf is a low-level configuration system. Its main purpose\n" "is to provide a backend to GSettings on platforms that don't already have\n" "configuration storage systems." msgstr "" -#: gnu/packages/gnome.scm:4661 +#: gnu/packages/gnome.scm:4663 msgid "" "JSON-GLib is a library providing serialization and\n" "described by RFC 4627. It implements a full JSON parser and generator using\n" "GLib and GObject, and integrates JSON with GLib data types." msgstr "" -#: gnu/packages/gnome.scm:4760 +#: gnu/packages/gnome.scm:4762 msgid "" "LibXklavier is a library providing high-level API for X Keyboard\n" "Extension known as XKB. This library is intended to support XFree86 and other\n" @@ -7224,7 +7345,7 @@ msgid "" "indicators etc)." msgstr "" -#: gnu/packages/gnome.scm:4788 +#: gnu/packages/gnome.scm:4790 msgid "" "This package provides Python bindings to librsvg, the SVG rendering\n" "library." @@ -7232,7 +7353,7 @@ msgstr "" "Ce paquet fournit les liaisons Python pour librsvg, la bibliothèque\n" "de rendu SVG." -#: gnu/packages/gnome.scm:4829 +#: gnu/packages/gnome.scm:4831 msgid "" "Glib-networking contains the implementations of certain GLib networking\n" "features that cannot be implemented directly in GLib itself because of their\n" @@ -7242,26 +7363,26 @@ msgid "" "from the GSettings schemas in gsettings-desktop-schemas." msgstr "" -#: gnu/packages/gnome.scm:4866 +#: gnu/packages/gnome.scm:4868 msgid "" "This library was designed to make it easier to access web services that\n" "claim to be \"RESTful\". It includes convenience wrappers for libsoup and\n" "libxml to ease remote use of the RESTful API." msgstr "" -#: gnu/packages/gnome.scm:4931 +#: gnu/packages/gnome.scm:4933 msgid "" "LibSoup is an HTTP client/server library for GNOME. It uses GObjects\n" "and the GLib main loop, to integrate well with GNOME applications." msgstr "" -#: gnu/packages/gnome.scm:5035 +#: gnu/packages/gnome.scm:5037 msgid "" "Libsecret is a GObject based library for storing and retrieving passwords\n" "and other secrets. It communicates with the \"Secret Service\" using DBus." msgstr "" -#: gnu/packages/gnome.scm:5074 +#: gnu/packages/gnome.scm:5076 msgid "" "Five or More is a game where you try to align\n" " five or more objects of the same color and shape causing them to disappear.\n" @@ -7269,19 +7390,19 @@ msgid "" " Try to last as long as possible." msgstr "" -#: gnu/packages/gnome.scm:5116 +#: gnu/packages/gnome.scm:5118 msgid "" "Mines (previously gnomine) is a puzzle game where you locate mines\n" "floating in an ocean using only your brain and a little bit of luck." msgstr "" -#: gnu/packages/gnome.scm:5157 +#: gnu/packages/gnome.scm:5159 msgid "" "MultiWriter can be used to write an ISO file to multiple USB devices at\n" "once." msgstr "" -#: gnu/packages/gnome.scm:5197 +#: gnu/packages/gnome.scm:5198 msgid "" "Sudoku is a Japanese logic game that exploded in popularity in 2005.\n" "GNOME Sudoku is meant to have an interface as simple and unobstrusive as\n" @@ -7289,7 +7410,7 @@ msgid "" "more fun." msgstr "" -#: gnu/packages/gnome.scm:5247 +#: gnu/packages/gnome.scm:5248 msgid "" "GNOME Terminal is a terminal emulator application for accessing a\n" "UNIX shell environment which can be used to run programs available on\n" @@ -7299,14 +7420,14 @@ msgid "" "keyboard shortcuts." msgstr "" -#: gnu/packages/gnome.scm:5319 +#: gnu/packages/gnome.scm:5320 msgid "" "Colord is a system service that makes it easy to manage,\n" "install and generate color profiles to accurately color manage input and\n" "output devices." msgstr "" -#: gnu/packages/gnome.scm:5390 +#: gnu/packages/gnome.scm:5391 msgid "" "Geoclue is a D-Bus service that provides location\n" "information. The primary goal of the Geoclue project is to make creating\n" @@ -7315,7 +7436,7 @@ msgid "" "permission from user." msgstr "" -#: gnu/packages/gnome.scm:5434 +#: gnu/packages/gnome.scm:5435 msgid "" "geocode-glib is a convenience library for geocoding (finding longitude,\n" "and latitude from an address) and reverse geocoding (finding an address from\n" @@ -7323,7 +7444,7 @@ msgid "" "faster results and to avoid unnecessary server load." msgstr "" -#: gnu/packages/gnome.scm:5510 +#: gnu/packages/gnome.scm:5511 msgid "" "UPower is an abstraction for enumerating power devices,\n" "listening to device events and querying history and statistics. Any\n" @@ -7331,13 +7452,13 @@ msgid "" "service via the system message bus." msgstr "" -#: gnu/packages/gnome.scm:5555 +#: gnu/packages/gnome.scm:5557 msgid "" "libgweather is a library to access weather information from online\n" "services for numerous locations." msgstr "" -#: gnu/packages/gnome.scm:5639 +#: gnu/packages/gnome.scm:5640 msgid "" "This package contains the daemon responsible for setting the various\n" "parameters of a GNOME session and the applications that run under it. It\n" @@ -7345,19 +7466,19 @@ msgid "" "settings, themes, mouse settings, and startup of other daemons." msgstr "" -#: gnu/packages/gnome.scm:5670 +#: gnu/packages/gnome.scm:5671 msgid "" "Totem-pl-parser is a GObjects-based library to parse and save\n" "playlists in a variety of formats." msgstr "" -#: gnu/packages/gnome.scm:5703 +#: gnu/packages/gnome.scm:5704 msgid "" "Aisleriot (also known as Solitaire or sol) is a collection of card games\n" "which are easy to play with the aid of a mouse." msgstr "" -#: gnu/packages/gnome.scm:5729 +#: gnu/packages/gnome.scm:5730 msgid "" "Amtk is the acronym for @acronym{Amtk, Actions Menus and Toolbars Kit}.\n" "It is a basic GtkUIManager replacement based on GAction. It is suitable for\n" @@ -7436,13 +7557,13 @@ msgid "" "discovery protocols." msgstr "" -#: gnu/packages/gnome.scm:6324 +#: gnu/packages/gnome.scm:6323 msgid "" "Totem is a simple yet featureful media player for GNOME\n" "which can read a large number of file formats." msgstr "" -#: gnu/packages/gnome.scm:6415 +#: gnu/packages/gnome.scm:6414 msgid "" "Rhythmbox is a music playing application for GNOME. It\n" "supports playlists, song ratings, and any codecs installed through gstreamer." @@ -7473,7 +7594,7 @@ msgid "" "part of udev-extras, then udev, then systemd. It's now a project on its own." msgstr "" -#: gnu/packages/gnome.scm:6611 +#: gnu/packages/gnome.scm:6610 msgid "" "GVFS is a userspace virtual file system designed to work with the I/O\n" "abstraction of GIO. It contains a GIO module that seamlessly adds GVFS\n" @@ -7484,7 +7605,7 @@ msgid "" "DAV, and others." msgstr "" -#: gnu/packages/gnome.scm:6652 +#: gnu/packages/gnome.scm:6651 msgid "" "GUsb is a GObject wrapper for libusb1 that makes it easy to do\n" "asynchronous control, bulk and interrupt transfers with proper cancellation\n" @@ -7492,7 +7613,7 @@ msgid "" "USB transfers with your high-level application or system daemon." msgstr "" -#: gnu/packages/gnome.scm:6706 +#: gnu/packages/gnome.scm:6705 msgid "" "Document Scanner is an easy-to-use application that lets you connect your\n" "scanner and quickly capture images and documents in an appropriate format. It\n" @@ -7500,25 +7621,25 @@ msgid "" "almost all of them." msgstr "" -#: gnu/packages/gnome.scm:6778 +#: gnu/packages/gnome.scm:6777 msgid "" "Eolie is a new web browser for GNOME. It features Firefox sync support,\n" "a secret password store, an adblocker, and a modern UI." msgstr "" -#: gnu/packages/gnome.scm:6855 +#: gnu/packages/gnome.scm:6854 msgid "" "Epiphany is a GNOME web browser targeted at non-technical users. Its\n" "principles are simplicity and standards compliance." msgstr "" -#: gnu/packages/gnome.scm:6914 +#: gnu/packages/gnome.scm:6913 msgid "" "D-Feet is a D-Bus debugger, which can be used to inspect D-Bus interfaces\n" "of running programs and invoke methods on those interfaces." msgstr "" -#: gnu/packages/gnome.scm:6944 +#: gnu/packages/gnome.scm:6943 msgid "" "Yelp-XSL is a collection of programs and data files to help\n" "you build, maintain, and distribute documentation. It provides XSLT stylesheets\n" @@ -7528,14 +7649,14 @@ msgid "" "jQuery.Syntax JavaScript libraries." msgstr "" -#: gnu/packages/gnome.scm:6983 +#: gnu/packages/gnome.scm:6982 msgid "" "Yelp is the help viewer in Gnome. It natively views Mallard, DocBook,\n" "man, info, and HTML documents. It can locate documents according to the\n" "freedesktop.org help system specification." msgstr "" -#: gnu/packages/gnome.scm:7013 +#: gnu/packages/gnome.scm:7012 msgid "" "Yelp-tools is a collection of scripts and build utilities to help create,\n" "manage, and publish documentation for Yelp and the web. Most of the heavy\n" @@ -7543,13 +7664,13 @@ msgid "" "wraps things up in a developer-friendly way." msgstr "" -#: gnu/packages/gnome.scm:7051 +#: gnu/packages/gnome.scm:7050 msgid "" "Libgee is a utility library providing GObject-based interfaces and\n" "classes for commonly used data structures." msgstr "" -#: gnu/packages/gnome.scm:7079 +#: gnu/packages/gnome.scm:7078 msgid "" "Gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. It\n" "allows for GNOME applications to easily inspect and update EXIF, IPTC, and XMP\n" @@ -7564,7 +7685,7 @@ msgid "" "share them with others via social networking and more." msgstr "" -#: gnu/packages/gnome.scm:7168 +#: gnu/packages/gnome.scm:7169 msgid "" "File Roller is an archive manager for the GNOME desktop\n" "environment that allows users to view, unpack, and create compressed archives\n" @@ -7577,25 +7698,25 @@ msgid "" "configuration program to choose applications starting on login." msgstr "" -#: gnu/packages/gnome.scm:7284 +#: gnu/packages/gnome.scm:7287 msgid "" "Gjs is a javascript binding for GNOME. It's mainly based on spidermonkey\n" "javascript engine and the GObject introspection framework." msgstr "" -#: gnu/packages/gnome.scm:7381 +#: gnu/packages/gnome.scm:7383 msgid "" "While aiming at simplicity and ease of use, gedit is a\n" "powerful general purpose text editor." msgstr "" -#: gnu/packages/gnome.scm:7405 +#: gnu/packages/gnome.scm:7407 msgid "" "Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you\n" "to display dialog boxes from the commandline and shell scripts." msgstr "" -#: gnu/packages/gnome.scm:7595 +#: gnu/packages/gnome.scm:7598 msgid "" "Mutter is a window and compositing manager that displays and manages your\n" "desktop via OpenGL. Mutter combines a sophisticated display engine using the\n" @@ -7603,7 +7724,7 @@ msgid "" "window manager." msgstr "" -#: gnu/packages/gnome.scm:7653 +#: gnu/packages/gnome.scm:7656 msgid "" "GNOME Online Accounts provides interfaces so that applications and\n" "libraries in GNOME can access the user's online accounts. It has providers\n" @@ -7611,20 +7732,20 @@ msgid "" "Microsoft Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos." msgstr "" -#: gnu/packages/gnome.scm:7740 +#: gnu/packages/gnome.scm:7743 msgid "" "This package provides a unified backend for programs that work with\n" "contacts, tasks, and calendar information. It was originally developed for\n" "Evolution (hence the name), but is now used by other packages as well." msgstr "" -#: gnu/packages/gnome.scm:7803 +#: gnu/packages/gnome.scm:7806 msgid "" "Caribou is an input assistive technology intended for switch and pointer\n" "users." msgstr "" -#: gnu/packages/gnome.scm:7953 +#: gnu/packages/gnome.scm:7958 msgid "" "NetworkManager is a system network service that manages your network\n" "devices and connections, attempting to keep active network connectivity when\n" @@ -7633,36 +7754,36 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:8009 +#: gnu/packages/gnome.scm:8014 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to virtual private networks (VPNs) via OpenVPN." msgstr "" -#: gnu/packages/gnome.scm:8059 +#: gnu/packages/gnome.scm:8064 msgid "" "Support for configuring virtual private networks based on VPNC.\n" "Compatible with Cisco VPN concentrators configured to use IPsec." msgstr "" -#: gnu/packages/gnome.scm:8106 +#: gnu/packages/gnome.scm:8111 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to @acronym{VPNs, virtual private networks} via OpenConnect, an open client for\n" "Cisco's AnyConnect SSL VPN." msgstr "" -#: gnu/packages/gnome.scm:8135 +#: gnu/packages/gnome.scm:8140 msgid "Database of broadband connection configuration." msgstr "" -#: gnu/packages/gnome.scm:8179 +#: gnu/packages/gnome.scm:8183 msgid "" "This package contains a systray applet for NetworkManager. It displays\n" "the available networks and allows users to easily switch between them." msgstr "" -#: gnu/packages/gnome.scm:8234 +#: gnu/packages/gnome.scm:8238 msgid "" "This package provides a C++ interface to the libxml2 XML parser\n" "library." @@ -7670,19 +7791,19 @@ msgstr "" "Ce paquet fournit une interface en C++ autour de la bibliothèque d'analyseur XML\n" "libxml2." -#: gnu/packages/gnome.scm:8466 +#: gnu/packages/gnome.scm:8470 msgid "" "GNOME Display Manager is a system service that is responsible for\n" "providing graphical log-ins and managing local and remote displays." msgstr "" -#: gnu/packages/gnome.scm:8490 +#: gnu/packages/gnome.scm:8494 msgid "" "LibGTop is a library to get system specific data such as CPU and memory\n" "usage and information about running processes." msgstr "" -#: gnu/packages/gnome.scm:8525 +#: gnu/packages/gnome.scm:8528 msgid "" "This package contains tools for managing and manipulating Bluetooth\n" "devices using the GNOME desktop." @@ -7690,7 +7811,7 @@ msgstr "" "Ce paquet contient des outils pour gérer et manipuler des appareils bluetooth\n" "depuis le bureau GNOME." -#: gnu/packages/gnome.scm:8636 +#: gnu/packages/gnome.scm:8646 msgid "" "This package contains configuration applets for the GNOME desktop,\n" "allowing to set accessibility configuration, desktop fonts, keyboard and mouse\n" @@ -7698,13 +7819,13 @@ msgid "" "properties, screen resolution, and other GNOME parameters." msgstr "" -#: gnu/packages/gnome.scm:8802 +#: gnu/packages/gnome.scm:8811 msgid "" "GNOME Shell provides core user interface functions for the GNOME desktop,\n" "like switching to windows and launching applications." msgstr "" -#: gnu/packages/gnome.scm:8845 +#: gnu/packages/gnome.scm:8858 msgid "" "GTK-VNC is a project providing client side APIs for the RFB\n" "protocol / VNC remote desktop technology. It is built using coroutines allowing\n" @@ -7712,13 +7833,13 @@ msgid "" "core C library, and bindings for Python (PyGTK)." msgstr "" -#: gnu/packages/gnome.scm:8875 +#: gnu/packages/gnome.scm:8888 msgid "" "GNOME Autoar is a library which makes creating and extracting archives\n" "easy, safe, and automatic." msgstr "" -#: gnu/packages/gnome.scm:8945 +#: gnu/packages/gnome.scm:8959 msgid "" "Tracker is a search engine and triplestore for desktop, embedded and mobile.\n" "\n" @@ -7741,21 +7862,21 @@ msgid "" "endpoint and it understands SPARQL." msgstr "" -#: gnu/packages/gnome.scm:9074 +#: gnu/packages/gnome.scm:9088 msgid "" "Tracker is an advanced framework for first class objects with associated\n" "metadata and tags. It provides a one stop solution for all metadata, tags,\n" "shared object databases, search tools and indexing." msgstr "" -#: gnu/packages/gnome.scm:9167 +#: gnu/packages/gnome.scm:9185 msgid "" "Nautilus (Files) is a file manager designed to fit the GNOME desktop\n" "design and behaviour, giving the user a simple way to navigate and manage its\n" "files." msgstr "" -#: gnu/packages/gnome.scm:9201 +#: gnu/packages/gnome.scm:9220 msgid "" "Baobab (Disk Usage Analyzer) is a graphical application to analyse disk\n" "usage in the GNOME desktop environment. It can easily scan device volumes or\n" @@ -7763,7 +7884,7 @@ msgid "" "is complete it provides a graphical representation of each selected folder." msgstr "" -#: gnu/packages/gnome.scm:9227 +#: gnu/packages/gnome.scm:9245 msgid "" "GNOME backgrounds package contains a collection of graphics files which\n" "can be used as backgrounds in the GNOME Desktop environment. Additionally,\n" @@ -7771,21 +7892,21 @@ msgid "" "can add your own files to the collection." msgstr "" -#: gnu/packages/gnome.scm:9272 +#: gnu/packages/gnome.scm:9290 msgid "" "GNOME Screenshot is a utility used for taking screenshots of the entire\n" "screen, a window or a user defined area of the screen, with optional\n" "beautifying border effects." msgstr "" -#: gnu/packages/gnome.scm:9304 +#: gnu/packages/gnome.scm:9320 msgid "" "Dconf-editor is a graphical tool for browsing and editing the dconf\n" "configuration system for GNOME. It allows users to configure desktop\n" "software that do not provide their own configuration interface." msgstr "" -#: gnu/packages/gnome.scm:9334 +#: gnu/packages/gnome.scm:9350 msgid "" "Given many installed packages which might handle a given MIME type, a\n" "user running the GNOME desktop probably has some preferences: for example,\n" @@ -7794,32 +7915,32 @@ msgid "" "associations for GNOME." msgstr "" -#: gnu/packages/gnome.scm:9366 +#: gnu/packages/gnome.scm:9382 msgid "GoVirt is a GObject wrapper for the oVirt REST API." msgstr "" -#: gnu/packages/gnome.scm:9424 +#: gnu/packages/gnome.scm:9439 msgid "" "GNOME Weather is a small application that allows you to\n" "monitor the current weather conditions for your city, or anywhere in the\n" "world." msgstr "" -#: gnu/packages/gnome.scm:9528 +#: gnu/packages/gnome.scm:9543 msgid "" "GNOME is the graphical desktop for GNU. It includes a wide variety of\n" "applications for browsing the web, editing text and images, creating\n" "documents and diagrams, playing media, scanning, and much more." msgstr "" -#: gnu/packages/gnome.scm:9574 +#: gnu/packages/gnome.scm:9589 msgid "" "Byzanz is a simple desktop recording program with a\n" "command-line interface. It can record part or all of an X display for a\n" "specified duration and save it as a GIF encoded animated image file." msgstr "" -#: gnu/packages/gnome.scm:9634 +#: gnu/packages/gnome.scm:9651 msgid "" "Authenticator is a two-factor authentication (2FA) application built for\n" "the GNOME desktop environment.\n" @@ -7836,44 +7957,44 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/gnome.scm:9669 +#: gnu/packages/gnome.scm:9686 msgid "" "GSound is a small library for playing system sounds. It's designed to be\n" "used via GObject Introspection, and is a thin wrapper around the libcanberra C\n" "library." msgstr "" -#: gnu/packages/gnome.scm:9694 +#: gnu/packages/gnome.scm:9711 msgid "" "Libzapojit is a GLib-based library for accessing online service APIs of\n" "Microsoft SkyDrive and Hotmail, using their REST protocols." msgstr "" -#: gnu/packages/gnome.scm:9739 +#: gnu/packages/gnome.scm:9756 msgid "" "GNOME Clocks is a simple clocks application designed to fit the GNOME\n" "desktop. It supports world clock, stop watch, alarms, and count down timer." msgstr "" -#: gnu/packages/gnome.scm:9787 +#: gnu/packages/gnome.scm:9803 msgid "" "GNOME Calendar is a simple calendar application designed to fit the GNOME\n" "desktop. It supports multiple calendars, month, week and year view." msgstr "" -#: gnu/packages/gnome.scm:9838 +#: gnu/packages/gnome.scm:9860 msgid "" -"GNOME To Do is a simplistic personal task manager designed to perfectly\n" -"fit the GNOME desktop." +"GNOME To Do is a simplistic personal task manager designed\n" +"to perfectly fit the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:9877 +#: gnu/packages/gnome.scm:9899 msgid "" "GNOME Dictionary can look for the definition or translation of a word in\n" "existing databases over the internet." msgstr "" -#: gnu/packages/gnome.scm:9943 +#: gnu/packages/gnome.scm:9964 msgid "" "GNOME Tweaks allows adjusting advanced configuration settings in\n" "GNOME 3. This includes things like the fonts used in user interface elements,\n" @@ -7881,13 +8002,13 @@ msgid "" "GNOME Shell appearance and extension, etc." msgstr "" -#: gnu/packages/gnome.scm:9971 +#: gnu/packages/gnome.scm:9992 msgid "" "GNOME Shell extensions modify and extend GNOME Shell\n" "functionality and behavior." msgstr "" -#: gnu/packages/gnome.scm:10015 +#: gnu/packages/gnome.scm:10036 msgid "" "Libfolks is a library that aggregates information about people\n" "from multiple sources (e.g., Telepathy connection managers for IM contacts,\n" @@ -7896,19 +8017,19 @@ msgid "" "compiled." msgstr "" -#: gnu/packages/gnome.scm:10056 +#: gnu/packages/gnome.scm:10077 msgid "" "This library allows you to use the Facebook API from\n" "GLib/GObject code." msgstr "" -#: gnu/packages/gnome.scm:10083 +#: gnu/packages/gnome.scm:10104 msgid "" "Libgnomekbd is a keyboard configuration library for the GNOME desktop\n" "environment, which can notably display keyboard layouts." msgstr "" -#: gnu/packages/gnome.scm:10119 +#: gnu/packages/gnome.scm:10140 msgid "" "Libunique is a library for writing single instance applications. If you\n" "launch a single instance application twice, the second instance will either just\n" @@ -7918,20 +8039,20 @@ msgid "" "handling the startup notification side." msgstr "" -#: gnu/packages/gnome.scm:10168 +#: gnu/packages/gnome.scm:10190 msgid "" "Calculator is an application that solves mathematical equations and\n" "is suitable as a default application in a Desktop environment." msgstr "" -#: gnu/packages/gnome.scm:10194 +#: gnu/packages/gnome.scm:10216 msgid "" "Xpad is a sticky note that strives to be simple, fault tolerant,\n" "and customizable. Xpad consists of independent pad windows, each is\n" "basically a text box in which notes can be written." msgstr "" -#: gnu/packages/gnome.scm:10267 +#: gnu/packages/gnome.scm:10289 msgid "" "This program allows you to browse through all the available Unicode\n" "characters and categories for the installed fonts, and to examine their\n" @@ -7939,20 +8060,20 @@ msgid "" "only know by its Unicode name or code point." msgstr "" -#: gnu/packages/gnome.scm:10299 +#: gnu/packages/gnome.scm:10321 msgid "" "Color Picker is a simple color chooser written in GTK3. It\n" "supports both X and Wayland display servers." msgstr "" -#: gnu/packages/gnome.scm:10322 +#: gnu/packages/gnome.scm:10344 msgid "" "Bluefish is an editor aimed at programmers and web developers,\n" "with many options to write web sites, scripts and other code.\n" "Bluefish supports many programming and markup languages." msgstr "" -#: gnu/packages/gnome.scm:10363 +#: gnu/packages/gnome.scm:10385 msgid "" "GNOME System Monitor is a GNOME process viewer and system monitor with\n" "an attractive, easy-to-use interface. It has features, such as a tree view\n" @@ -7961,27 +8082,27 @@ msgid "" "kill/reinice processes." msgstr "" -#: gnu/packages/gnome.scm:10405 +#: gnu/packages/gnome.scm:10427 msgid "" "This package includes a python client library for the AT-SPI D-Bus\n" "accessibility infrastructure." msgstr "" -#: gnu/packages/gnome.scm:10475 +#: gnu/packages/gnome.scm:10495 msgid "" "Orca is a screen reader that provides access to the graphical desktop\n" "via speech and refreshable braille. Orca works with applications and toolkits\n" "that support the Assistive Technology Service Provider Interface (AT-SPI)." msgstr "" -#: gnu/packages/gnome.scm:10529 +#: gnu/packages/gnome.scm:10549 msgid "" "gspell provides a flexible API to add spell-checking to a GTK+\n" "application. It provides a GObject API, spell-checking to text entries and\n" "text views, and buttons to choose the language." msgstr "" -#: gnu/packages/gnome.scm:10571 +#: gnu/packages/gnome.scm:10591 msgid "" "GNOME Planner is a project management tool based on the Work Breakdown\n" "Structure (WBS). Its goal is to enable you to easily plan projects. Based on\n" @@ -7993,7 +8114,7 @@ msgid "" "views can be printed as PDF or PostScript files, or exported to HTML." msgstr "" -#: gnu/packages/gnome.scm:10644 +#: gnu/packages/gnome.scm:10664 msgid "" "Lollypop is a music player designed to play well with GNOME desktop.\n" "Lollypop plays audio formats such as mp3, mp4, ogg and flac and gets information\n" @@ -8001,26 +8122,26 @@ msgid "" "automatically and it can stream songs from online music services and charts." msgstr "" -#: gnu/packages/gnome.scm:10668 +#: gnu/packages/gnome.scm:10688 msgid "" "A collection of GStreamer video filters and effects to be used in\n" "photo-booth-like software, such as Cheese." msgstr "" -#: gnu/packages/gnome.scm:10747 +#: gnu/packages/gnome.scm:10766 msgid "" "Cheese uses your webcam to take photos and videos. Cheese can also\n" "apply fancy special effects and lets you share the fun with others." msgstr "" -#: gnu/packages/gnome.scm:10801 +#: gnu/packages/gnome.scm:10820 msgid "" "Password Safe is a password manager which makes use of the KeePass v4\n" "format. It integrates perfectly with the GNOME desktop and provides an easy\n" "and uncluttered interface for the management of password databases." msgstr "" -#: gnu/packages/gnome.scm:10836 +#: gnu/packages/gnome.scm:10855 msgid "" "Sound Juicer extracts audio from compact discs and convert it\n" "into audio files that a personal computer or digital audio player can play.\n" @@ -8028,27 +8149,27 @@ msgid "" "mp3, Ogg Vorbis and FLAC" msgstr "" -#: gnu/packages/gnome.scm:10888 +#: gnu/packages/gnome.scm:10907 msgid "" "SoundConverter supports converting between many audio formats including\n" "Opus, Ogg Vorbis, FLAC and more. It supports parallel conversion, and\n" "configurable file renaming." msgstr "" -#: gnu/packages/gnome.scm:10936 +#: gnu/packages/gnome.scm:10955 msgid "" "Workrave is a program that assists in the recovery and prevention of\n" "repetitive strain injury (@dfn{RSI}). The program frequently alerts you to take\n" "micro-pauses and rest breaks, and restricts you to your daily limit." msgstr "" -#: gnu/packages/gnome.scm:10977 +#: gnu/packages/gnome.scm:10996 msgid "" "The GHex program can view and edit files in two ways:\n" "hexadecimal or ASCII. It is useful for editing binary files in general." msgstr "" -#: gnu/packages/gnome.scm:11013 +#: gnu/packages/gnome.scm:11032 msgid "" "The libdazzle library is a companion library to GObject and\n" "Gtk+. It provides various features that the authors wish were in the\n" @@ -8057,40 +8178,40 @@ msgid "" "generic enough to work for everyone." msgstr "" -#: gnu/packages/gnome.scm:11080 +#: gnu/packages/gnome.scm:11099 msgid "" "Evolution is a personal information management application\n" "that provides integrated mail, calendaring and address book\n" "functionality." msgstr "" -#: gnu/packages/gnome.scm:11140 +#: gnu/packages/gnome.scm:11154 msgid "" "GThumb is an image viewer, browser, organizer, editor and\n" "advanced image management tool" msgstr "" -#: gnu/packages/gnome.scm:11213 +#: gnu/packages/gnome.scm:11227 msgid "" "Terminator allows you to run multiple GNOME terminals in a grid and\n" "tabs, and it supports drag and drop re-ordering of terminals." msgstr "" -#: gnu/packages/gnome.scm:11274 +#: gnu/packages/gnome.scm:11288 msgid "" "The aim of the handy library is to help with developing user\n" "interfaces for mobile devices using GTK+. It provides responsive GTK+ widgets\n" "for usage on small and big screens." msgstr "" -#: gnu/packages/gnome.scm:11323 +#: gnu/packages/gnome.scm:11337 msgid "" "libgit2-glib is a GLib wrapper library around the libgit2 Git\n" "access library. It only implements the core plumbing functions, not really the\n" "higher level porcelain stuff." msgstr "" -#: gnu/packages/gnome.scm:11402 +#: gnu/packages/gnome.scm:11415 msgid "" "gitg is a graphical user interface for git. It aims at being a small,\n" "fast and convenient tool to visualize the history of git repositories.\n" @@ -8098,21 +8219,21 @@ msgid "" "repository and commit your work." msgstr "" -#: gnu/packages/gnome.scm:11474 +#: gnu/packages/gnome.scm:11487 msgid "" "Gamin is a file and directory monitoring system defined to be a subset\n" "of the FAM (File Alteration Monitor) system. This is a service provided by a\n" "library which detects when a file or a directory has been modified." msgstr "" -#: gnu/packages/gnome.scm:11508 +#: gnu/packages/gnome.scm:11521 msgid "" "GNOME Mahjongg is a game based on the classic Chinese\n" -"tile-matching game Mahjong. It features multiple board layouts, tile themes,\n" +"tile-matching game Mahjongg. It features multiple board layouts, tile themes,\n" "and a high score table." msgstr "" -#: gnu/packages/gnome.scm:11546 +#: gnu/packages/gnome.scm:11559 msgid "" "This package provides themes and related elements that don't\n" "really fit in other upstream packages. It offers legacy support for GTK+ 2\n" @@ -8120,19 +8241,21 @@ msgid "" "index files needed for Adwaita to be used outside of GNOME." msgstr "" -#: gnu/packages/gnome.scm:11585 +#: gnu/packages/gnome.scm:11605 +#, fuzzy +#| msgid "Note-taking application for the GNOME desktop" msgid "" -"Gnote is a note-taking application written for the GNOME desktop\n" -"environment." -msgstr "" +"Gnote is a note-taking application written for the GNOME\n" +"desktop environment." +msgstr "Application de prise de notes du bureau GNOME" -#: gnu/packages/gnome.scm:11647 +#: gnu/packages/gnome.scm:11664 msgid "" "Polari is a simple Internet Relay Chat (IRC) client that is designed to\n" "integrate seamlessly with the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:11706 +#: gnu/packages/gnome.scm:11723 msgid "" "GNOME Boxes is a simple application to view, access, and\n" "manage remote and virtual systems. Note that this application requires the\n" @@ -8141,7 +8264,7 @@ msgid "" "these services on the Guix System." msgstr "" -#: gnu/packages/gnome.scm:11806 +#: gnu/packages/gnome.scm:11823 msgid "" "Geary collects related messages together into conversations,\n" "making it easy to find and follow your discussions. Full-text and keyword\n" @@ -8153,14 +8276,14 @@ msgid "" "to." msgstr "" -#: gnu/packages/gnome.scm:11851 +#: gnu/packages/gnome.scm:11868 msgid "" "gLabels is a program for creating labels and business cards. It is\n" "designed to work with various laser/ink-jet peel-off label and business\n" "card sheets that you’ll find at most office supply stores." msgstr "" -#: gnu/packages/gnome.scm:11892 +#: gnu/packages/gnome.scm:11909 msgid "" "GNOME LaTeX is a LaTeX editor for the GNOME desktop. It has features\n" "such as build tools, completion of LaTeX commands, structure navigation,\n" @@ -8168,19 +8291,19 @@ msgid "" "and toolbars." msgstr "" -#: gnu/packages/gnome.scm:11951 +#: gnu/packages/gnome.scm:11968 msgid "" "Setzer is a simple yet full-featured LaTeX editor written in Python with\n" "GTK+. It integrates well with the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:12017 +#: gnu/packages/gnome.scm:12034 msgid "" "Apostrophe is a GTK+ based distraction-free Markdown editor.\n" "It uses pandoc as back-end for parsing Markdown." msgstr "" -#: gnu/packages/gnome.scm:12070 +#: gnu/packages/gnome.scm:12088 msgid "" "libratbag provides @command{ratbagd}, a DBus daemon to\n" "configure input devices, mainly gaming mice. The daemon provides a generic\n" @@ -8197,7 +8320,7 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12140 +#: gnu/packages/gnome.scm:12156 msgid "" "Piper is a GTK+ application for configuring gaming mice with\n" "onboard configuration for key bindings via libratbag. Piper requires\n" @@ -8209,14 +8332,14 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12202 +#: gnu/packages/gnome.scm:12218 msgid "" "Parlatype is an audio player for the GNOME desktop\n" "environment. Its main purpose is the manual transcription of spoken\n" "audio files." msgstr "" -#: gnu/packages/gnome.scm:12228 +#: gnu/packages/gnome.scm:12244 msgid "" "Jsonrpc-GLib is a library to communicate with JSON-RPC based\n" "peers in either a synchronous or asynchronous fashion. It also allows\n" @@ -8225,14 +8348,14 @@ msgid "" "host to avoid parser overhead and memory-allocator fragmentation." msgstr "" -#: gnu/packages/gnome.scm:12256 +#: gnu/packages/gnome.scm:12272 msgid "" "Feedbackd provides a DBus daemon to act on events to provide\n" "haptic, visual and audio feedback. It offers the libfeedbackd library and\n" "GObject introspection bindings." msgstr "" -#: gnu/packages/gnome.scm:12305 +#: gnu/packages/gnome.scm:12321 msgid "" "Sysprof performs detailed, accurate, and fast CPU profiling of an entire\n" "GNU/Linux system including the kernel and all user-space applications. This\n" @@ -8242,21 +8365,21 @@ msgid "" "libraries. Applications do not need to be recompiled--or even restarted." msgstr "" -#: gnu/packages/gnome.scm:12388 +#: gnu/packages/gnome.scm:12406 msgid "" -"Builder aims to be an integrated development\n" -"environment (IDE) for writing GNOME-based software. It features fuzzy search,\n" -"auto-completion, a mini code map, documentation browsing, Git integration, an\n" -"integrated profiler via Sysprof, debugging support, and more." +"Builder aims to be an integrated development environment (IDE) for\n" +"writing GNOME-based software. It features fuzzy search, auto-completion,\n" +"a mini code map, documentation browsing, Git integration, an integrated\n" +"profiler via Sysprof, debugging support, and more." msgstr "" -#: gnu/packages/gnome.scm:12461 +#: gnu/packages/gnome.scm:12480 msgid "" "Komikku is an online/offline manga reader for GNOME,\n" "developed with the aim of being used with the Librem 5 phone." msgstr "" -#: gnu/packages/gnome.scm:12545 +#: gnu/packages/gnome.scm:12564 msgid "" "GNU Data Access (GDA) is an attempt to provide uniform access to\n" "different kinds of data sources (databases, information servers, mail spools,\n" @@ -8264,7 +8387,7 @@ msgid "" "your data." msgstr "" -#: gnu/packages/gnome.scm:12596 +#: gnu/packages/gnome.scm:12614 msgid "" "gtranslator is a quite comfortable gettext po/po.gz/(g)mo files editor\n" "for the GNOME 3.x platform with many features. It aims to be a very complete\n" @@ -8272,32 +8395,38 @@ msgid "" "world." msgstr "" -#: gnu/packages/gnome.scm:12662 +#: gnu/packages/gnome.scm:12680 msgid "" "OCRFeeder is a complete Optical Character Recognition and\n" "Document Analysis and Recognition program." msgstr "" -#: gnu/packages/gnome.scm:12702 +#: gnu/packages/gnome.scm:12720 msgid "" "@code{libadwaita} offers widgets and objects to build GNOME\n" "applications scaling from desktop workstations to mobile phones. It is the\n" "successor of @code{libhandy} for GTK4." msgstr "" -#: gnu/packages/gnome.scm:12727 +#: gnu/packages/gnome.scm:12745 msgid "" "@code{gnome-power-manager} is a tool for viewing present and\n" "historical battery usage and related statistics." msgstr "" +#: gnu/packages/gnome.scm:12789 +#, fuzzy +#| msgid "This package provides a Git implementation library." +msgid "This package provides a graphical file manager." +msgstr "Ce paquet fournit une bibliothèque implémentant git." + #: gnu/packages/gnuzilla.scm:155 msgid "" "SpiderMonkey is Mozilla's JavaScript engine written\n" "in C/C++." msgstr "" -#: gnu/packages/gnuzilla.scm:1314 +#: gnu/packages/gnuzilla.scm:1315 msgid "" "IceCat is the GNU version of the Firefox browser. It is entirely free\n" "software, which does not recommend non-free plugins and addons. It also\n" @@ -8310,19 +8439,19 @@ msgid "" "standards of the IceCat project." msgstr "" -#: gnu/packages/gnuzilla.scm:1642 +#: gnu/packages/gnuzilla.scm:1648 msgid "" "This package provides an email client built based on Mozilla\n" "Thunderbird. It supports email, news feeds, chat, calendar and contacts." msgstr "" -#: gnu/packages/gnuzilla.scm:1717 +#: gnu/packages/gnuzilla.scm:1723 msgid "" "Firefox Decrypt is a tool to extract passwords from\n" "Mozilla (Firefox, Waterfox, Thunderbird, SeaMonkey) profiles." msgstr "" -#: gnu/packages/gnuzilla.scm:1754 +#: gnu/packages/gnuzilla.scm:1760 msgid "" "@code{lz4json} is a little utility to unpack lz4json files as generated\n" "by Firefox's bookmark backups and session restore. This is a different format\n" @@ -8336,7 +8465,7 @@ msgid "" "tools have full access to view and control running applications." msgstr "" -#: gnu/packages/gtk.scm:215 +#: gnu/packages/gtk.scm:212 msgid "" "Cairo is a 2D graphics library with support for multiple output\n" "devices. Currently supported output targets include the X Window System (via\n" @@ -8344,24 +8473,24 @@ msgid "" "output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB." msgstr "" -#: gnu/packages/gtk.scm:277 +#: gnu/packages/gtk.scm:274 msgid "HarfBuzz is an OpenType text shaping engine." msgstr "" -#: gnu/packages/gtk.scm:320 +#: gnu/packages/gtk.scm:317 msgid "" "Libdatrie is an implementation of double-array structure for\n" "representing trie. Trie is a kind of digital search tree." msgstr "" -#: gnu/packages/gtk.scm:352 +#: gnu/packages/gtk.scm:349 msgid "" "LibThai is a set of Thai language support routines aimed to\n" "ease developers’ tasks to incorporate Thai language support in their\n" "applications." msgstr "" -#: gnu/packages/gtk.scm:407 +#: gnu/packages/gtk.scm:404 msgid "" "Pango is a library for laying out and rendering of text, with\n" "an emphasis on internationalization. Pango can be used anywhere that text\n" @@ -8370,21 +8499,21 @@ msgid "" "handling for GTK+-2.x." msgstr "" -#: gnu/packages/gtk.scm:461 +#: gnu/packages/gtk.scm:458 msgid "" "Pangox was a X backend to pango. It is now obsolete and no\n" "longer provided by recent pango releases. pangox-compat provides the\n" "functions which were removed." msgstr "" -#: gnu/packages/gtk.scm:498 +#: gnu/packages/gtk.scm:495 msgid "" "Ganv is an interactive GTK+ widget for interactive “boxes and lines” or\n" "graph-like environments, e.g. modular synths or finite state machine\n" "diagrams." msgstr "" -#: gnu/packages/gtk.scm:554 +#: gnu/packages/gtk.scm:551 msgid "" "GtkSourceView is a portable C library that extends the standard GTK+\n" "framework for multiline text editing with support for configurable syntax\n" @@ -8392,33 +8521,33 @@ msgid "" "printing and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:602 +#: gnu/packages/gtk.scm:599 msgid "" "GtkSourceView is a text widget that extends the standard\n" "GTK+ text widget GtkTextView. It improves GtkTextView by implementing syntax\n" "highlighting and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:698 +#: gnu/packages/gtk.scm:695 msgid "" "GdkPixbuf is a library that loads image data in various\n" "formats and stores it as linear buffers in memory. The buffers can then be\n" "scaled, composited, modified, saved, or rendered." msgstr "" -#: gnu/packages/gtk.scm:746 +#: gnu/packages/gtk.scm:743 msgid "" "The Assistive Technology Service Provider Interface, core components,\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:827 +#: gnu/packages/gtk.scm:824 msgid "" "The Assistive Technology Service Provider Interface\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:921 +#: gnu/packages/gtk.scm:918 msgid "" "GTK+, or the GIMP Toolkit, is a multi-platform toolkit for creating\n" "graphical user interfaces. Offering a complete set of widgets, GTK+ is\n" @@ -8426,14 +8555,14 @@ msgid "" "application suites." msgstr "" -#: gnu/packages/gtk.scm:1234 +#: gnu/packages/gtk.scm:1238 msgid "" "GTK is a multi-platform toolkit for creating graphical user\n" "interfaces. Offering a complete set of widgets, GTK is suitable for projects\n" "ranging from small one-off tools to complete application suites." msgstr "" -#: gnu/packages/gtk.scm:1308 +#: gnu/packages/gtk.scm:1312 msgid "" "Guile-Cairo wraps the Cairo graphics library for Guile Scheme.\n" "Guile-Cairo is complete, wrapping almost all of the Cairo API. It is API\n" @@ -8443,13 +8572,13 @@ msgid "" "exceptions, macros, and a dynamic programming environment." msgstr "" -#: gnu/packages/gtk.scm:1389 +#: gnu/packages/gtk.scm:1393 msgid "" "Guile-RSVG wraps the RSVG library for Guile, allowing you to render SVG\n" "images onto Cairo surfaces." msgstr "" -#: gnu/packages/gtk.scm:1456 +#: gnu/packages/gtk.scm:1460 msgid "" "Guile-Present defines a declarative vocabulary for presentations,\n" "together with tools to render presentation documents as SVG or PDF.\n" @@ -8458,31 +8587,31 @@ msgid "" "documents." msgstr "" -#: gnu/packages/gtk.scm:1522 +#: gnu/packages/gtk.scm:1526 msgid "" "Includes guile-clutter, guile-gnome-gstreamer,\n" "guile-gnome-platform (GNOME developer libraries), and guile-gtksourceview." msgstr "" -#: gnu/packages/gtk.scm:1578 +#: gnu/packages/gtk.scm:1582 msgid "" "Cairomm provides a C++ programming interface to the Cairo 2D graphics\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1642 +#: gnu/packages/gtk.scm:1647 msgid "" "Pangomm provides a C++ programming interface to the Pango text rendering\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1704 +#: gnu/packages/gtk.scm:1709 #, fuzzy #| msgid "C++ bindings for the ØMQ messaging library" msgid "ATKmm is the C++ binding for the ATK library." msgstr "Liaisons C++ pour la bibliothèque de messagerie ØMQ" -#: gnu/packages/gtk.scm:1784 +#: gnu/packages/gtk.scm:1790 msgid "" "GTKmm is the official C++ interface for the popular GUI\n" "library GTK+. Highlights include typesafe callbacks, and a comprehensive set\n" @@ -8711,7 +8840,7 @@ msgid "" "excellent pavucontrol." msgstr "" -#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:238 +#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:241 msgid "" "Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" "official extension language of the GNU system. It is an implementation of\n" @@ -8724,14 +8853,14 @@ msgstr "" "Scheme qui peut être facilement incluse dans d'autres applications pour faciliter\n" "l'ajout de fonctionnalités sans avoir à réécrire le code source." -#: gnu/packages/guile.scm:502 +#: gnu/packages/guile.scm:506 msgid "" "This module provides line editing support via the Readline library for\n" "GNU@tie{}Guile. Use the @code{(ice-9 readline)} module and call its\n" "@code{activate-readline} procedure to enable it." msgstr "" -#: gnu/packages/guile.scm:604 +#: gnu/packages/guile.scm:608 msgid "" "Guile-JSON supports parsing and building JSON documents according to the\n" "specification. These are the main features:\n" @@ -8753,17 +8882,17 @@ msgstr "" "@item formatage élégant.\n" "@end itemize\n" -#: gnu/packages/guile.scm:701 +#: gnu/packages/guile.scm:705 msgid "" "Guile bindings to the GDBM key-value storage system, using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:730 +#: gnu/packages/guile.scm:734 msgid "This package provides Guile bindings to the SQLite database system." msgstr "Ce paquet fournit les liaisons Guile pour le système de base de données SQLite." -#: gnu/packages/guile.scm:769 +#: gnu/packages/guile.scm:773 msgid "" "Guile bytestructures offers a system imitating the type system\n" "of the C programming language, to be used on bytevectors. C's type\n" @@ -8772,27 +8901,27 @@ msgid "" "type system, elevating types to first-class status." msgstr "" -#: gnu/packages/guile.scm:810 +#: gnu/packages/guile.scm:814 msgid "" "This package provides Guile bindings to libgit2, a library to\n" "manipulate repositories of the Git version control system." msgstr "" -#: gnu/packages/guile.scm:846 +#: gnu/packages/guile.scm:850 msgid "" "This package provides Guile bindings for zlib, a lossless\n" "data-compression library. The bindings are written in pure Scheme by using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:877 +#: gnu/packages/guile.scm:881 msgid "" "This package provides Guile bindings for lzlib, a C library for\n" "in-memory LZMA compression and decompression. The bindings are written in\n" "pure Scheme by using Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:904 +#: gnu/packages/guile.scm:908 msgid "" "This package provides a GNU Guile interface to the zstd (``zstandard'')\n" "compression library." @@ -8800,7 +8929,7 @@ msgstr "" "Ce paquet fournit une interface de programmation Guile pour la bibliothèque\n" "de compression zstd (« zstandard »)." -#: gnu/packages/guile.scm:926 +#: gnu/packages/guile.scm:930 msgid "" "Guile-LZMA is a Guile wrapper for the liblzma (XZ)\n" "library. It exposes an interface similar to other Guile compression\n" @@ -9394,7 +9523,7 @@ msgid "" "It supports JPEG, PNG and GIF formats." msgstr "" -#: gnu/packages/image-viewers.scm:640 +#: gnu/packages/image-viewers.scm:643 msgid "" "Luminance HDR (formerly QtPFSGui) is a graphical user interface\n" "application that aims to provide a workflow for high dynamic range (HDR)\n" @@ -9410,7 +9539,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:735 +#: gnu/packages/image-viewers.scm:738 msgid "" "MComix is a customizable image viewer that specializes as\n" "a comic and manga reader. It supports a variety of container formats\n" @@ -9419,7 +9548,7 @@ msgid "" "For PDF support, install the @emph{mupdf} package." msgstr "" -#: gnu/packages/image-viewers.scm:775 +#: gnu/packages/image-viewers.scm:778 msgid "" "qView is a Qt image viewer designed with visually\n" "minimalism and usability in mind. Its features include animated GIF\n" @@ -9427,14 +9556,14 @@ msgid "" "preloading." msgstr "" -#: gnu/packages/image-viewers.scm:799 +#: gnu/packages/image-viewers.scm:802 msgid "" "Chafa is a command-line utility that converts all kinds of images,\n" "including animated GIFs, into ANSI/Unicode character output that can be\n" "displayed in a terminal." msgstr "" -#: gnu/packages/image-viewers.scm:847 +#: gnu/packages/image-viewers.scm:850 msgid "" "@code{imv} is a command line image viewer intended for use\n" "with tiling window managers. Features include:\n" @@ -9456,7 +9585,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:924 +#: gnu/packages/image-viewers.scm:927 msgid "" "Quick Image Viewer is a small and fast GDK/Imlib2 image viewer.\n" "Features include zoom, maxpect, scale down, fullscreen, slideshow, delete,\n" @@ -9465,7 +9594,7 @@ msgid "" "to set X desktop background." msgstr "" -#: gnu/packages/image-viewers.scm:968 +#: gnu/packages/image-viewers.scm:971 msgid "" "pqiv is a GTK-3 based command-line image viewer with a minimal UI.\n" "It is highly customizable, can be fully controlled from scripts, and has\n" @@ -9473,7 +9602,7 @@ msgid "" "archives." msgstr "" -#: gnu/packages/image-viewers.scm:1025 +#: gnu/packages/image-viewers.scm:1028 msgid "" "Nomacs is a simple to use image lounge featuring\n" "semi-transparent widgets that display additional information such as metadata,\n" @@ -9486,7 +9615,7 @@ msgid "" "synchronization of multiple instances." msgstr "" -#: gnu/packages/image-viewers.scm:1070 +#: gnu/packages/image-viewers.scm:1073 msgid "xzgv is a fast image viewer that provides extensive keyboard support." msgstr "" @@ -9751,11 +9880,11 @@ msgid "" "Math for editing mathematics." msgstr "" -#: gnu/packages/linux.scm:604 +#: gnu/packages/linux.scm:625 msgid "Headers of the Linux-Libre kernel." msgstr "Fichiers d'en-tête pour le noyau Linux-Libre." -#: gnu/packages/linux.scm:905 +#: gnu/packages/linux.scm:935 msgid "" "GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.\n" "It has been modified to remove all non-free binary blobs." @@ -9763,7 +9892,7 @@ msgstr "" "GNU Linux-Libre est une variante libre du noyau Linux.\n" "Il a été modifié pour en retirer toutes les composantes non-libres." -#: gnu/packages/linux.scm:1215 +#: gnu/packages/linux.scm:1252 msgid "" "This simple Linux kernel module allows calls from user space to any\n" "@acronym{ACPI, Advanced Configuration and Power Interface} method provided by\n" @@ -9775,7 +9904,7 @@ msgid "" "and should be used with caution, especially on untested models." msgstr "" -#: gnu/packages/linux.scm:1283 +#: gnu/packages/linux.scm:1320 msgid "" "CoreFreq is a CPU monitor that reports low-level processor settings and\n" "performance data with notably high precision by using a loadable Linux kernel\n" @@ -9806,7 +9935,7 @@ msgid "" "@file{README.md} before loading it." msgstr "" -#: gnu/packages/linux.scm:1332 +#: gnu/packages/linux.scm:1369 msgid "" "This is the Linux kernel @acronym{ACPI, Advanced Configuration and Power\n" "Interface} platform driver for the @acronym{EC, Embedded Controller} firmware\n" @@ -9815,13 +9944,13 @@ msgid "" "and the notification, WiFi, and Bluetooth LED." msgstr "" -#: gnu/packages/linux.scm:1375 +#: gnu/packages/linux.scm:1413 msgid "" "This is Realtek's RTL8821CE Linux driver for wireless\n" "network adapters." msgstr "" -#: gnu/packages/linux.scm:1407 +#: gnu/packages/linux.scm:1445 msgid "" "This is Realtek's rtl8812au Linux driver for USB 802.11n wireless\n" "network adapters, modified by the aircrack-ng project to support monitor mode\n" @@ -9829,7 +9958,7 @@ msgid "" "RTL8812AU, RTL8821AU, and RTL8814AU chips." msgstr "" -#: gnu/packages/linux.scm:1431 +#: gnu/packages/linux.scm:1469 msgid "" "The @acronym{VHBA, Virtual SCSI Host Bus Adapter} module is the link\n" "between the CDemu user-space daemon and the kernel Linux. It acts as a\n" @@ -9838,13 +9967,13 @@ msgid "" "emulate optical devices such as DVD and CD-ROM drives." msgstr "" -#: gnu/packages/linux.scm:1460 +#: gnu/packages/linux.scm:1497 msgid "" "The bbswitch module provides a way to toggle the Nvidia\n" "graphics card on Optimus laptops." msgstr "" -#: gnu/packages/linux.scm:1501 +#: gnu/packages/linux.scm:1536 msgid "" "This package provides two Linux kernel drivers, ddcci and\n" "ddcci-backlight, that allows the control of DDC/CI monitors through the sysfs\n" @@ -9854,7 +9983,7 @@ msgid "" "supported under @file{/sys/class/backlight/}." msgstr "" -#: gnu/packages/linux.scm:1528 +#: gnu/packages/linux.scm:1563 msgid "" "This Linux module creates virtual video devices. @acronym{V4L2, Video\n" "for Linux 2} applications will treat these as ordinary video devices but read\n" @@ -9866,7 +9995,7 @@ msgid "" "application by hooking GStreamer into the loopback device." msgstr "" -#: gnu/packages/linux.scm:1569 +#: gnu/packages/linux.scm:1604 msgid "" "This package provides a driver for the XBox One S Wireless controller\n" "and some newer models when connected via Bluetooth. In addition to the included\n" @@ -9874,7 +10003,7 @@ msgid "" "which need to be installed separately." msgstr "" -#: gnu/packages/linux.scm:1622 +#: gnu/packages/linux.scm:1657 msgid "" "A *Free* project to implement OSF's RFC 86.0.\n" "Pluggable authentication modules are small shared object files that can\n" @@ -9887,18 +10016,18 @@ msgstr "" "d'un utilisateur au moment de la connexion. Ses principales fonctionnalités sont\n" "la reconfiguration locale et dynamique." -#: gnu/packages/linux.scm:1683 +#: gnu/packages/linux.scm:1718 msgid "This package provides a PAM interface using @code{ctypes}." msgstr "Ce paquet fournit une interface PAM avec @code{ctypes}." -#: gnu/packages/linux.scm:1712 +#: gnu/packages/linux.scm:1747 msgid "" "This package provides a PAM module that hands over your\n" "login password to @code{gpg-agent}. This can be useful if you are using a\n" "GnuPG-based password manager like @code{pass}." msgstr "" -#: gnu/packages/linux.scm:1741 +#: gnu/packages/linux.scm:1776 msgid "" "This package contains utilities for accessing the powercap\n" "Linux kernel feature through sysfs. It includes an implementation for working\n" @@ -9906,7 +10035,7 @@ msgid "" "It provides the commands @code{powercap-info} and @code{powercap-set}." msgstr "" -#: gnu/packages/linux.scm:1772 +#: gnu/packages/linux.scm:1807 msgid "" "Powerstat measures and reports your computer's power consumption in real\n" "time. On mobile PCs, it uses ACPI battery information to measure the power\n" @@ -9923,7 +10052,7 @@ msgid "" "deviation, and minimum and maximum values. It can show a nice histogram too." msgstr "" -#: gnu/packages/linux.scm:1810 +#: gnu/packages/linux.scm:1845 msgid "" "This PSmisc package is a set of some small useful utilities that\n" "use the proc file system. We're not about changing the world, but\n" @@ -9934,21 +10063,21 @@ msgstr "" "mais simplement de fournir de l'aide à l'administrateur système dans ses\n" "tâches les plus courantes." -#: gnu/packages/linux.scm:1948 +#: gnu/packages/linux.scm:1984 msgid "" "Util-linux is a diverse collection of Linux kernel\n" "utilities. It provides dmesg and includes tools for working with file systems,\n" "block devices, UUIDs, TTYs, and many other tools." msgstr "" -#: gnu/packages/linux.scm:1986 +#: gnu/packages/linux.scm:2037 msgid "" "ddate displays the Discordian date and holidays of a given date.\n" "The Discordian calendar was made popular by the \"Illuminatus!\" trilogy\n" "by Robert Shea and Robert Anton Wilson." msgstr "" -#: gnu/packages/linux.scm:2040 +#: gnu/packages/linux.scm:2091 msgid "" "The kernel Linux's @dfn{frame buffers} provide a simple interface to\n" "different kinds of graphic displays. The @command{fbset} utility can query and\n" @@ -9956,7 +10085,7 @@ msgid "" "parameters." msgstr "" -#: gnu/packages/linux.scm:2085 +#: gnu/packages/linux.scm:2136 msgid "" "Procps is the package that has a bunch of small useful utilities\n" "that give information about processes using the Linux /proc file system.\n" @@ -9968,11 +10097,11 @@ msgstr "" "Le paquet inclut les programmes free, pgrep, pidof, pkill, pmap, ps, pwdx,\n" "slabtop, tload, top, vmstat, w, watch et sysctl." -#: gnu/packages/linux.scm:2130 +#: gnu/packages/linux.scm:2181 msgid "Tools for working with USB devices, such as lsusb." msgstr "Outils de manipulation des périphériques USB, tels que lsusb." -#: gnu/packages/linux.scm:2154 +#: gnu/packages/linux.scm:2205 msgid "" "The USB/IP protocol enables to pass USB device from a server to\n" "a client over the network. The server is a machine which shares an\n" @@ -9985,11 +10114,11 @@ msgid "" "module." msgstr "" -#: gnu/packages/linux.scm:2237 +#: gnu/packages/linux.scm:2288 msgid "This package provides tools for manipulating ext2/ext3/ext4 file systems." msgstr "Ce paquet fournit des outils pour manipuler les systèmes de fichiers ext2/ext3/ext4." -#: gnu/packages/linux.scm:2279 +#: gnu/packages/linux.scm:2330 msgid "" "This package provides statically-linked e2fsck command taken\n" "from the e2fsprogs package. It is meant to be used in initrds." @@ -9997,13 +10126,13 @@ msgstr "" "Ce paquet fournit la commande e2fsck liée statiquement issue\n" "du paquet e2fsprogs. Il est censé être utilisé dans les initrds." -#: gnu/packages/linux.scm:2302 +#: gnu/packages/linux.scm:2353 msgid "" "Extundelete is a set of tools that can recover deleted files from an\n" "ext3 or ext4 partition." msgstr "" -#: gnu/packages/linux.scm:2335 +#: gnu/packages/linux.scm:2386 msgid "" "Zerofree finds the unallocated blocks with non-zero value content in an\n" "ext2, ext3, or ext4 file system and fills them with zeroes (or another value).\n" @@ -10011,7 +10140,7 @@ msgid "" "Zerofree requires the file system to be unmounted or mounted read-only." msgstr "" -#: gnu/packages/linux.scm:2380 +#: gnu/packages/linux.scm:2431 msgid "" "strace is a system call tracer, i.e. a debugging tool which prints out a\n" "trace of all the system calls made by a another process/program." @@ -10019,27 +10148,27 @@ msgstr "" "strace est un traceur d'appels système, c-à-d un outil de débogage affichant\n" "les appels système effectués par un autre processus/programme." -#: gnu/packages/linux.scm:2403 +#: gnu/packages/linux.scm:2454 msgid "" "ltrace intercepts and records dynamic library calls which are called by\n" "an executed process and the signals received by that process. It can also\n" "intercept and print the system calls executed by the program." msgstr "" -#: gnu/packages/linux.scm:2428 +#: gnu/packages/linux.scm:2479 msgid "" "This package contains Advanced Linux Sound Architecture Use Case Manager\n" "configuration of audio input/output names and routing for specific audio\n" "hardware." msgstr "" -#: gnu/packages/linux.scm:2452 +#: gnu/packages/linux.scm:2503 msgid "" "This package contains Advanced Linux Sound Architecture topology\n" "configuration files that can be used for specific audio hardware." msgstr "" -#: gnu/packages/linux.scm:2499 gnu/packages/linux.scm:2548 +#: gnu/packages/linux.scm:2550 gnu/packages/linux.scm:2599 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system." @@ -10047,7 +10176,7 @@ msgstr "" "ALSA fournit des fonctionnalités audio et MIDI pour les sytèmes\n" "basés sur Linux." -#: gnu/packages/linux.scm:2617 +#: gnu/packages/linux.scm:2668 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system. This package enhances ALSA\n" @@ -10056,7 +10185,7 @@ msgid "" "external rate conversion." msgstr "" -#: gnu/packages/linux.scm:2655 +#: gnu/packages/linux.scm:2706 msgid "" "@command{iptables} is the user-space command line program used to\n" "configure the Linux 2.4.x and later IPv4 packet filtering ruleset\n" @@ -10076,7 +10205,7 @@ msgstr "" "\n" "Les deux commandes sont destinées aux administrateurs système." -#: gnu/packages/linux.scm:2691 +#: gnu/packages/linux.scm:2742 msgid "" "This simple daemon feeds entropy from the CPU Jitter @acronym{RNG, random\n" "number generator} core to the kernel Linux's entropy estimator. This prevents\n" @@ -10098,7 +10227,7 @@ msgid "" "early boot when entropy may be low, especially in virtualised environments." msgstr "" -#: gnu/packages/linux.scm:2727 +#: gnu/packages/linux.scm:2778 msgid "" "@command{lsscsi} lists SCSI logical units or SCSI targets. It can\n" "also list NVMe namespaces or controllers and show the relationship between a\n" @@ -10106,7 +10235,7 @@ msgid "" "name." msgstr "" -#: gnu/packages/linux.scm:2751 +#: gnu/packages/linux.scm:2802 msgid "" "ebtables is an application program used to set up and maintain the\n" "tables of rules (inside the Linux kernel) that inspect Ethernet frames. It is\n" @@ -10114,7 +10243,7 @@ msgid "" "that the Ethernet protocol is much simpler than the IP protocol." msgstr "" -#: gnu/packages/linux.scm:2816 +#: gnu/packages/linux.scm:2867 msgid "" "Iproute2 is a collection of utilities for controlling TCP/IP networking\n" "and traffic with the Linux kernel. The most important of these are\n" @@ -10126,7 +10255,7 @@ msgid "" "inadequately in modern network environments, and both should be deprecated." msgstr "" -#: gnu/packages/linux.scm:2896 +#: gnu/packages/linux.scm:2947 msgid "" "This package includes the important tools for controlling the network\n" "subsystem of the Linux kernel. This includes arp, ifconfig, netstat, rarp and\n" @@ -10140,13 +10269,13 @@ msgstr "" "particulières (pliconfig, slattach) et à des aspects avancés de la configuration\n" "réseau (iptunnel, ipmaddr)." -#: gnu/packages/linux.scm:2947 +#: gnu/packages/linux.scm:2989 msgid "" "Libcap2 provides a programming interface to POSIX capabilities on\n" "Linux-based operating systems." msgstr "Libcap2 fournit une interface de programmation POSIX aux systèmes basés sur Linux." -#: gnu/packages/linux.scm:2974 +#: gnu/packages/linux.scm:3016 msgid "" "Utilities for Linux's Ethernet bridging facilities. A bridge is a way\n" "to connect two Ethernet segments together in a protocol independent way.\n" @@ -10161,7 +10290,7 @@ msgstr "" "niveau 2, tous les protocoles peuvent transiter de manière transparente sur\n" "un pont." -#: gnu/packages/linux.scm:3025 +#: gnu/packages/linux.scm:3067 msgid "" "The libnl suite is a collection of libraries providing APIs to netlink\n" "protocol based Linux kernel interfaces. Netlink is an IPC mechanism primarily\n" @@ -10175,13 +10304,13 @@ msgstr "" "est conçu pour être un successeur plus flexible à ioctl permettant de configurer\n" "le réseau au niveau noyau et surveiller les interfaces." -#: gnu/packages/linux.scm:3099 +#: gnu/packages/linux.scm:3141 msgid "" "iw is a new nl80211 based CLI configuration utility for wireless\n" "devices. It replaces @code{iwconfig}, which is deprecated." msgstr "" -#: gnu/packages/linux.scm:3149 +#: gnu/packages/linux.scm:3191 msgid "" "PowerTOP is a Linux tool to diagnose issues with power consumption and\n" "power management. In addition to being a diagnostic tool, PowerTOP also has\n" @@ -10196,7 +10325,7 @@ msgstr "" "l'énergie pour des cas où le système d'exploitation n'a pas activé ces\n" "paramètres." -#: gnu/packages/linux.scm:3176 +#: gnu/packages/linux.scm:3218 msgid "" "Aumix adjusts an audio mixer from X, the console, a terminal,\n" "the command line or a script." @@ -10204,7 +10333,7 @@ msgstr "" "Aumix ajuste un mixer audio depuis X, la console, un terminal,\n" "la ligne de commande ou un script." -#: gnu/packages/linux.scm:3207 +#: gnu/packages/linux.scm:3249 msgid "" "Iotop is a Python program with a top like user interface to show the\n" "processes currently causing I/O." @@ -10212,7 +10341,7 @@ msgstr "" "Iotop est un programme Python doté d'une interface utilisateur affichant les\n" "entrées-sorties en cours des processus." -#: gnu/packages/linux.scm:3265 +#: gnu/packages/linux.scm:3307 msgid "" "As a consequence of its monolithic design, file system code for Linux\n" "normally goes into the kernel itself---which is not only a robustness issue,\n" @@ -10229,7 +10358,7 @@ msgstr "" "ce problème en permettant aux utilisateurs de lancer les implantations de\n" "systèmes de fichiers comme des processus utilisateur." -#: gnu/packages/linux.scm:3358 +#: gnu/packages/linux.scm:3400 msgid "" "UnionFS-FUSE is a flexible union file system implementation in user\n" "space, using the FUSE library. Mounting a union file system allows you to\n" @@ -10237,7 +10366,7 @@ msgid "" "UnionFS-FUSE additionally supports copy-on-write." msgstr "" -#: gnu/packages/linux.scm:3437 +#: gnu/packages/linux.scm:3479 msgid "" "This is a file system client based on the SSH File Transfer Protocol.\n" "Since most SSH servers already support this protocol it is very easy to set\n" @@ -10250,7 +10379,7 @@ msgstr "" "aussi facile de monter le système de fichiers que de se connecter avec un client\n" "SSH." -#: gnu/packages/linux.scm:3464 +#: gnu/packages/linux.scm:3506 msgid "" "archivemount is a FUSE-based file system for Unix variants,\n" "including Linux. Its purpose is to mount archives (i.e. tar, tar.gz, etc.) to a\n" @@ -10259,7 +10388,7 @@ msgid "" "compressed, transparent to other programs, without decompressing them." msgstr "" -#: gnu/packages/linux.scm:3495 +#: gnu/packages/linux.scm:3537 msgid "" "NUMA stands for Non-Uniform Memory Access, in other words a system whose\n" "memory is not all in one place. The @command{numactl} program allows you to\n" @@ -10281,20 +10410,20 @@ msgstr "" "et @command{numademo} qui fournissent un rapide aperçu des performances\n" "NUMA de votre système." -#: gnu/packages/linux.scm:3533 +#: gnu/packages/linux.scm:3575 msgid "" "Kbd-neo provides the Neo2 keyboard layout for use with\n" "@command{loadkeys(1)} from @code{kbd(4)}." msgstr "" -#: gnu/packages/linux.scm:3599 +#: gnu/packages/linux.scm:3641 msgid "" "This package contains keytable files and keyboard utilities compatible\n" "for systems using the Linux kernel. This includes commands such as\n" "@code{loadkeys}, @code{setfont}, @code{kbdinfo}, and @code{chvt}." msgstr "" -#: gnu/packages/linux.scm:3662 +#: gnu/packages/linux.scm:3704 msgid "" "The inotify-tools packages provides a C library and command-line tools\n" "to use Linux' inotify mechanism, which allows file accesses to be monitored." @@ -10303,7 +10432,7 @@ msgstr "" "permettant d'utiliser le mécanisme inotify de Linux qui autorise la surveillance\n" "des accès fichier." -#: gnu/packages/linux.scm:3714 +#: gnu/packages/linux.scm:3756 msgid "" "Kmod is a set of tools to handle common tasks with Linux\n" "kernel modules like insert, remove, list, check properties, resolve\n" @@ -10321,14 +10450,14 @@ msgstr "" "kmod. L'objectif est d'être compatible avec les outils, les configurations et\n" "les indices du projet module-init-tools." -#: gnu/packages/linux.scm:3769 +#: gnu/packages/linux.scm:3812 msgid "" "Early OOM is a minimalist out of memory (OOM) daemon that\n" "runs in user space and provides a more responsive and configurable alternative\n" "to the in-kernel OOM killer." msgstr "" -#: gnu/packages/linux.scm:3867 +#: gnu/packages/linux.scm:3892 msgid "" "Udev is a daemon which dynamically creates and removes\n" "device nodes from /dev/, handles hotplug events and loads drivers at boot\n" @@ -10338,7 +10467,7 @@ msgstr "" "des noeuds de périphériques dans /dev/, gérer leur branchement à chaud\n" "et charger leur pilotes au démarrage." -#: gnu/packages/linux.scm:3897 +#: gnu/packages/linux.scm:3922 msgid "" "Python-evdev provides bindings to the generic input event interface in\n" "Linux. The @code{evdev} interface serves the purpose of passing events\n" @@ -10350,7 +10479,7 @@ msgid "" "devices that can inject events directly into the input subsystem." msgstr "" -#: gnu/packages/linux.scm:3930 +#: gnu/packages/linux.scm:3955 msgid "" "Interception Tools provides a composable infrastructure on top of\n" "@code{libudev} and @code{libevdev}. The following utilities are provided:\n" @@ -10363,33 +10492,33 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/linux.scm:3979 +#: gnu/packages/linux.scm:4004 msgid "" "Dual Function Keys is a plugin for @code{interception-tools} that allows\n" "one to send arbitrary keycodes when a given key is tapped or held." msgstr "" -#: gnu/packages/linux.scm:4056 +#: gnu/packages/linux.scm:4081 msgid "" "LVM2 is the logical volume management tool set for Linux-based systems.\n" "This package includes the user-space libraries and tools, including the device\n" "mapper. Kernel components are part of Linux-libre." msgstr "" -#: gnu/packages/linux.scm:4122 +#: gnu/packages/linux.scm:4147 msgid "" "A suite of tools for manipulating the metadata of the\n" "dm-thin, dm-cache and dm-era device-mapper targets." msgstr "" -#: gnu/packages/linux.scm:4144 +#: gnu/packages/linux.scm:4169 msgid "" "This package provides an advanced monitor of critical system\n" "resources, supervises the heartbeat of processes, records deadline\n" "transgressions, and initiates a controlled reset if needed." msgstr "" -#: gnu/packages/linux.scm:4189 +#: gnu/packages/linux.scm:4214 msgid "" "Wireless Tools are used to manipulate the now-deprecated\n" "Linux Wireless Extensions; consider using @code{iw} instead. The Wireless\n" @@ -10398,21 +10527,21 @@ msgid "" "interface." msgstr "" -#: gnu/packages/linux.scm:4280 +#: gnu/packages/linux.scm:4305 msgid "" "The Central Regulatory Domain Agent (CRDA) acts as the udev helper for\n" "communication between the kernel Linux and user space for regulatory\n" "compliance." msgstr "" -#: gnu/packages/linux.scm:4350 +#: gnu/packages/linux.scm:4375 msgid "" "This package contains the wireless regulatory database for the Central\n" "Regulatory Database Agent (CRDA). The database contains information on\n" "country-specific regulations for the wireless spectrum." msgstr "" -#: gnu/packages/linux.scm:4424 +#: gnu/packages/linux.scm:4449 msgid "" "Lm-sensors is a hardware health monitoring package for Linux. It allows\n" "you to access information from temperature, voltage, and fan speed sensors.\n" @@ -10423,14 +10552,14 @@ msgstr "" "le voltage ou la vitesse des ventilatuers. Il fonctionne avec la plupart des\n" "systèmes les plus récents." -#: gnu/packages/linux.scm:4444 +#: gnu/packages/linux.scm:4469 msgid "" "@command{iucode_tool} is a utility to work with microcode packages for\n" "Intel processors. It can convert between formats, extract specific versions,\n" "create a firmware image suitable for the Linux kernel, and more." msgstr "" -#: gnu/packages/linux.scm:4475 +#: gnu/packages/linux.scm:4501 msgid "" "The i2c-tools package contains a heterogeneous set of I2C tools for\n" "Linux: a bus probing tool, a chip dumper, register-level SMBus access helpers,\n" @@ -10438,7 +10567,7 @@ msgid "" "SMBus access." msgstr "" -#: gnu/packages/linux.scm:4514 +#: gnu/packages/linux.scm:4540 msgid "" "Xsensors reads data from the libsensors library regarding hardware\n" "health such as temperature, voltage and fan speed and displays the information\n" @@ -10448,7 +10577,7 @@ msgstr "" "la vitesse des ventilateurs depuis la bibliothèque libsensors et affiche les informations\n" "numériquement." -#: gnu/packages/linux.scm:4568 +#: gnu/packages/linux.scm:4600 msgid "" "perf is a tool suite for profiling using hardware performance counters,\n" "with support in the Linux kernel. perf can instrument CPU performance\n" @@ -10457,7 +10586,7 @@ msgid "" "particular the @code{perf} command." msgstr "" -#: gnu/packages/linux.scm:4593 +#: gnu/packages/linux.scm:4625 msgid "" "pflask is a simple tool for creating Linux namespace\n" "containers. It can be used for running a command or even booting an OS inside\n" @@ -10466,7 +10595,7 @@ msgid "" "thanks to the use of namespaces." msgstr "" -#: gnu/packages/linux.scm:4678 +#: gnu/packages/linux.scm:4710 msgid "" "Singularity is a container platform supporting a number of\n" "container image formats. It can build SquashFS container images or import\n" @@ -10474,7 +10603,7 @@ msgid "" "isolation or root privileges." msgstr "" -#: gnu/packages/linux.scm:4711 +#: gnu/packages/linux.scm:4742 msgid "" "@command{hdparm} is a command-line utility to control ATA controllers and\n" "disk drives. It can increase performance and/or reliability by careful tuning\n" @@ -10488,21 +10617,21 @@ msgid "" "Translation (@dfn{SAT}) are also supported." msgstr "" -#: gnu/packages/linux.scm:4750 +#: gnu/packages/linux.scm:4782 msgid "" "Nvme-cli is a utility to provide standards compliant tooling\n" "for NVM-Express drives. It was made specifically for Linux as it relies on the\n" "IOCTLs defined by the mainline kernel driver." msgstr "" -#: gnu/packages/linux.scm:4776 +#: gnu/packages/linux.scm:4808 msgid "" "rfkill is a simple tool for accessing the rfkill device interface,\n" "which is used to enable and disable wireless networking devices, typically\n" "WLAN, Bluetooth and mobile broadband." msgstr "" -#: gnu/packages/linux.scm:4798 +#: gnu/packages/linux.scm:4830 msgid "" "@code{acpi} attempts to replicate the functionality of the\n" "\"old\" @code{apm} command on ACPI systems, including battery and thermal\n" @@ -10510,7 +10639,7 @@ msgid "" "about ACPI devices." msgstr "" -#: gnu/packages/linux.scm:4819 +#: gnu/packages/linux.scm:4851 msgid "" "acpid is designed to notify user-space programs of Advanced\n" "Configuration and Power Interface (ACPI) events. acpid should be started\n" @@ -10519,28 +10648,28 @@ msgid "" "specified in /etc/acpi/events and execute the rules that match the event." msgstr "" -#: gnu/packages/linux.scm:4843 +#: gnu/packages/linux.scm:4875 msgid "" "These are a set of utilities built upon sysfs, a virtual file system in\n" "Linux kernel versions 2.5+ that exposes a system's device tree. The package\n" "also contains the libsysfs library." msgstr "" -#: gnu/packages/linux.scm:4886 +#: gnu/packages/linux.scm:4918 msgid "" "The cpufrequtils suite contains utilities to retrieve CPU frequency\n" "information, and set the CPU frequency if supported, using the cpufreq\n" "capabilities of the Linux kernel." msgstr "" -#: gnu/packages/linux.scm:4922 +#: gnu/packages/linux.scm:4954 msgid "" "This package provides many of the missing pieces in GNU\n" "libc. Most notably the string functions: strlcpy(3), strlcat(3) and the *BSD\n" "sys/queue.h and sys/tree.h API's." msgstr "" -#: gnu/packages/linux.scm:4945 +#: gnu/packages/linux.scm:4977 #, fuzzy #| msgid "This package provides an database interface for Perl." msgid "" @@ -10548,7 +10677,7 @@ msgid "" "epoll family of APIs." msgstr "Ce paquet fournit une interface de base de données pour Perl." -#: gnu/packages/linux.scm:4966 +#: gnu/packages/linux.scm:4998 msgid "" "Libraw1394 is the only supported interface to the kernel side raw1394 of\n" "the Linux IEEE-1394 subsystem, which provides direct access to the connected\n" @@ -10557,26 +10686,26 @@ msgid "" "protocol in question." msgstr "" -#: gnu/packages/linux.scm:4992 +#: gnu/packages/linux.scm:5024 msgid "" "Libavc1394 is a programming interface to the AV/C specification from\n" "the 1394 Trade Association. AV/C stands for Audio/Video Control." msgstr "" -#: gnu/packages/linux.scm:5016 +#: gnu/packages/linux.scm:5048 msgid "" "The libiec61883 library provides a higher level API for streaming DV,\n" "MPEG-2 and audio over Linux IEEE 1394." msgstr "" -#: gnu/packages/linux.scm:5067 +#: gnu/packages/linux.scm:5099 msgid "" "mdadm is a tool for managing Linux Software RAID arrays. It can create,\n" "assemble, report on, and monitor arrays. It can also move spares between raid\n" "arrays when needed." msgstr "" -#: gnu/packages/linux.scm:5199 +#: gnu/packages/linux.scm:5231 msgid "" "This package provides the following binaries to drive the\n" "Linux Device Mapper multipathing driver:\n" @@ -10589,60 +10718,60 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:5244 +#: gnu/packages/linux.scm:5288 msgid "" "This library enables userspace to use Linux kernel asynchronous I/O\n" "system calls, important for the performance of databases and other advanced\n" "applications." msgstr "" -#: gnu/packages/linux.scm:5287 +#: gnu/packages/linux.scm:5331 msgid "" "Blktrace is a block layer IO tracing mechanism which provides\n" "detailed information about request queue operations to user space. It extracts\n" "event traces from the kernel (via the relaying through the debug file system)." msgstr "" -#: gnu/packages/linux.scm:5312 +#: gnu/packages/linux.scm:5356 msgid "" "The SBC is a digital audio encoder and decoder used to transfer data to\n" "Bluetooth audio output devices like headphones or loudspeakers." msgstr "" -#: gnu/packages/linux.scm:5379 +#: gnu/packages/linux.scm:5423 msgid "" "BlueZ provides support for the core Bluetooth layers and protocols. It\n" "is flexible, efficient and uses a modular implementation." msgstr "" -#: gnu/packages/linux.scm:5403 +#: gnu/packages/linux.scm:5447 msgid "" "This package provides a FUSE-based file system that provides read and\n" "write access to exFAT devices." msgstr "" -#: gnu/packages/linux.scm:5426 +#: gnu/packages/linux.scm:5470 msgid "" "FuseISO is a FUSE module to mount ISO file system images (.iso, .nrg,\n" ".bin, .mdf and .img files). It supports plain ISO9660 Level 1 and 2, Rock\n" "Ridge, Joliet, and zisofs." msgstr "" -#: gnu/packages/linux.scm:5480 +#: gnu/packages/linux.scm:5524 msgid "" "The GPM (general-purpose mouse) daemon is a mouse server for\n" "applications running on the Linux console. It allows users to select items\n" "and copy/paste text in the console and in xterm." msgstr "" -#: gnu/packages/linux.scm:5551 +#: gnu/packages/linux.scm:5595 msgid "" "Btrfs is a @dfn{copy-on-write} (CoW) file system for Linux\n" "aimed at implementing advanced features while focusing on fault tolerance,\n" "repair and easy administration." msgstr "" -#: gnu/packages/linux.scm:5585 +#: gnu/packages/linux.scm:5629 msgid "" "This package provides the statically-linked @command{btrfs}\n" "from the btrfs-progs package. It is meant to be used in initrds." @@ -10650,7 +10779,7 @@ msgstr "" "Ce paquet fournit la commande liée statiquement @command{btrfs}\n" "issue du paquet btrfs-progs. Il est censé être utilisé dans les initrd." -#: gnu/packages/linux.scm:5617 +#: gnu/packages/linux.scm:5661 msgid "" "Cramfs is a Linux file system designed to be simple, small,\n" "and to compress things well. It is used on a number of embedded systems and\n" @@ -10658,7 +10787,7 @@ msgid "" "blocks and random block placement." msgstr "" -#: gnu/packages/linux.scm:5652 +#: gnu/packages/linux.scm:5696 msgid "" "@command{compsize} takes a list of files (given as\n" "arguments) on a Btrfs file system and measures used compression types and\n" @@ -10675,14 +10804,14 @@ msgid "" "obviously it can be shared with files outside our set)." msgstr "" -#: gnu/packages/linux.scm:5700 +#: gnu/packages/linux.scm:5744 msgid "" "F2FS, the Flash-Friendly File System, is a modern file system\n" "designed to be fast and durable on flash devices such as solid-state\n" "disks and SD cards. This package provides the userland utilities." msgstr "" -#: gnu/packages/linux.scm:5790 +#: gnu/packages/linux.scm:5834 msgid "" "This package provides statically-linked fsck.f2fs command taken\n" "from the f2fs-tools package. It is meant to be used in initrds." @@ -10690,7 +10819,7 @@ msgstr "" "Ce paquet fournit la commande fsck.f2fs liée statiquement issue\n" "du paquet f2fs-tools. Il est censé être utilisé dans les initrds." -#: gnu/packages/linux.scm:5821 +#: gnu/packages/linux.scm:5865 msgid "" "Prevents shock damage to the internal spinning hard drive(s) of some\n" "HP and Dell laptops. When sudden movement is detected, all input/output\n" @@ -10700,7 +10829,7 @@ msgid "" "feature, and a laptop with an accelerometer. It has no effect on SSDs." msgstr "" -#: gnu/packages/linux.scm:5879 +#: gnu/packages/linux.scm:5923 msgid "" "Thinkfan is a simple fan control program. It reads temperatures,\n" "checks them against configured limits and switches to appropriate (also\n" @@ -10709,7 +10838,7 @@ msgid "" "from userspace." msgstr "" -#: gnu/packages/linux.scm:5935 +#: gnu/packages/linux.scm:5979 msgid "" "Tpacpi-bat is a command-line interface to control battery charging on\n" "@uref{https://github.com/teleshoes/tpacpi-bat/wiki/Supported-Hardware, Lenovo\n" @@ -10724,7 +10853,7 @@ msgid "" "supported." msgstr "" -#: gnu/packages/linux.scm:5979 +#: gnu/packages/linux.scm:6023 msgid "" "Tmon is a tool to interact with the complex thermal subsystem of the\n" "kernel Linux. It helps visualize thermal relationships and real-time thermal\n" @@ -10741,7 +10870,7 @@ msgid "" "by hand is no trivial task: @command{tmon} aims to make it understandable." msgstr "" -#: gnu/packages/linux.scm:6021 +#: gnu/packages/linux.scm:6065 msgid "" "Turbostat reports x86 processor topology, frequency, idle power state\n" "statistics, temperature, and power consumption. Some information is unavailable\n" @@ -10756,14 +10885,14 @@ msgid "" "invocations of itself." msgstr "" -#: gnu/packages/linux.scm:6080 +#: gnu/packages/linux.scm:6124 msgid "" "NTFS-3G provides read-write access to NTFS file systems, which are\n" "commonly found on Microsoft Windows. It is implemented as a FUSE file system.\n" "The package provides additional NTFS tools." msgstr "" -#: gnu/packages/linux.scm:6127 +#: gnu/packages/linux.scm:6171 msgid "" "This package provides a statically linked @command{ntfsfix} taken\n" "from the ntfs-3g package. It is meant to be used in initrds." @@ -10771,7 +10900,7 @@ msgstr "" "Ce paquet fournit une commande @command{ntfsfix} liée statiquement issue\n" "du paquet ntfs-3g. Il est censé être utilisé dans les initrds." -#: gnu/packages/linux.scm:6174 +#: gnu/packages/linux.scm:6218 msgid "" "This package provides userspace components for the InfiniBand\n" "subsystem of the Linux kernel. Specifically it contains userspace\n" @@ -10791,7 +10920,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6228 +#: gnu/packages/linux.scm:6272 msgid "" "This is a collection of tests written over uverbs intended for\n" "use as a performance micro-benchmark. The tests may be used for hardware or\n" @@ -10807,20 +10936,20 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6270 +#: gnu/packages/linux.scm:6314 msgid "" "Monitor a hardware random number generator, and supply entropy\n" "from that to the system kernel's @file{/dev/random} machinery." msgstr "" -#: gnu/packages/linux.scm:6312 +#: gnu/packages/linux.scm:6356 msgid "" "cpupower is a set of user-space tools that use the cpufreq feature of the\n" "Linux kernel to retrieve and control processor features related to power saving,\n" "such as frequency and voltage scaling." msgstr "" -#: gnu/packages/linux.scm:6344 +#: gnu/packages/linux.scm:6388 msgid "" "@command{x86_energy_perf_policy} displays and updates energy-performance\n" "policy settings specific to Intel Architecture Processors. Settings are\n" @@ -10828,7 +10957,7 @@ msgid "" "cpufreq sub-system is enabled or not." msgstr "" -#: gnu/packages/linux.scm:6370 +#: gnu/packages/linux.scm:6414 msgid "" "haveged generates an unpredictable stream of random numbers for use by\n" "Linux's @file{/dev/random} and @file{/dev/urandom} devices. The kernel's\n" @@ -10846,7 +10975,7 @@ msgid "" "not as a replacement for it." msgstr "" -#: gnu/packages/linux.scm:6456 +#: gnu/packages/linux.scm:6500 msgid "" "eCryptfs is a POSIX-compliant stacked cryptographic file system for Linux.\n" "Each file's cryptographic meta-data is stored inside the file itself, along\n" @@ -10856,7 +10985,7 @@ msgid "" "2.6.19. This package contains the userland utilities to manage it." msgstr "" -#: gnu/packages/linux.scm:6488 +#: gnu/packages/linux.scm:6532 msgid "" "Libnfsidmap is a library holding mulitiple methods of\n" "mapping names to ids and visa versa, mainly for NFSv4. It provides an\n" @@ -10864,7 +10993,7 @@ msgid "" "the default @code{nsswitch} and the experimental @code{umich_ldap}." msgstr "" -#: gnu/packages/linux.scm:6524 +#: gnu/packages/linux.scm:6568 msgid "" "Tools for loading and managing Linux kernel modules, such as\n" "@code{modprobe}, @code{insmod}, @code{lsmod}, and more." @@ -10872,7 +11001,7 @@ msgstr "" "Outils pour le chargement et la gestion des modules noyau Linux, tels que\n" "@code{modprobe}, @code{insmod}, @code{lsmod} et plus." -#: gnu/packages/linux.scm:6565 +#: gnu/packages/linux.scm:6609 msgid "" "The mcelog daemon logs memory, I/O, CPU, and other hardware errors on x86\n" "systems running the kernel Linux. It can also perform user-defined tasks, such\n" @@ -10880,7 +11009,7 @@ msgid "" "exceeded." msgstr "" -#: gnu/packages/linux.scm:6596 +#: gnu/packages/linux.scm:6640 msgid "" "This package provides utilities for testing, partitioning, etc\n" "of flash storage." @@ -10888,7 +11017,7 @@ msgstr "" "Ce paquet fournit des outils pour tester, partitionner, etc\n" "les périphériques flash." -#: gnu/packages/linux.scm:6628 +#: gnu/packages/linux.scm:6672 msgid "" "The libseccomp library provides an easy to use, platform\n" "independent, interface to the Linux Kernel's syscall filtering mechanism. The\n" @@ -10898,7 +11027,7 @@ msgid "" "developers." msgstr "" -#: gnu/packages/linux.scm:6671 +#: gnu/packages/linux.scm:6715 msgid "" "RadeonTop monitors resource consumption on supported AMD\n" "Radeon Graphics Processing Units (GPUs), either in real time as bar graphs on\n" @@ -10908,13 +11037,13 @@ msgid "" "under OpenGL graphics workloads." msgstr "" -#: gnu/packages/linux.scm:6718 +#: gnu/packages/linux.scm:6762 msgid "" "This package provides a library and a command line\n" "interface to the variable facility of UEFI boot firmware." msgstr "" -#: gnu/packages/linux.scm:6755 +#: gnu/packages/linux.scm:6799 msgid "" "@code{efibootmgr} is a user-space application to modify the Intel\n" "Extensible Firmware Interface (EFI) Boot Manager. This application can\n" @@ -10922,7 +11051,7 @@ msgid "" "running boot option, and more." msgstr "" -#: gnu/packages/linux.scm:6791 +#: gnu/packages/linux.scm:6835 msgid "" "The sysstat utilities are a collection of performance\n" "monitoring tools for Linux. These include @code{mpstat}, @code{iostat},\n" @@ -10930,7 +11059,7 @@ msgid "" "@code{sadf} and @code{sa}." msgstr "" -#: gnu/packages/linux.scm:6832 +#: gnu/packages/linux.scm:6876 msgid "" "Light is a program to send commands to screen backlight controllers\n" "under GNU/Linux. Features include:\n" @@ -10944,7 +11073,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/linux.scm:6880 +#: gnu/packages/linux.scm:6924 msgid "" "This program allows you read and control device brightness. Devices\n" "include backlight and LEDs. It can also preserve current brightness before\n" @@ -10954,7 +11083,7 @@ msgid "" "interface in sysfs, which can be accomplished with the included udev rules." msgstr "" -#: gnu/packages/linux.scm:7007 +#: gnu/packages/linux.scm:7048 msgid "" "TLP is a power management tool for Linux. It comes with\n" "a default configuration already optimized for battery life. Nevertheless,\n" @@ -10962,7 +11091,7 @@ msgid "" "every time the power supply source is changed." msgstr "" -#: gnu/packages/linux.scm:7073 +#: gnu/packages/linux.scm:7114 msgid "" "The Python scripts in this project generate a GTK-UI to change\n" "TLP configuration files easily. It aims to protect users from setting\n" @@ -10970,7 +11099,7 @@ msgid "" "configuration values." msgstr "" -#: gnu/packages/linux.scm:7099 +#: gnu/packages/linux.scm:7140 msgid "" "@command{lshw} (Hardware Lister) is a small tool to provide\n" "detailed information on the hardware configuration of the machine.\n" @@ -10980,7 +11109,7 @@ msgid "" "machines (PowerMac G4 is known to work)." msgstr "" -#: gnu/packages/linux.scm:7123 +#: gnu/packages/linux.scm:7164 msgid "" "Libmnl is a minimalistic user-space library oriented to\n" "Netlink developers. There are a lot of common tasks in parsing, validating,\n" @@ -10989,7 +11118,7 @@ msgid "" "re-use code and to avoid re-inventing the wheel." msgstr "" -#: gnu/packages/linux.scm:7148 +#: gnu/packages/linux.scm:7189 msgid "" "Libnftnl is a userspace library providing a low-level netlink\n" "programming interface to the in-kernel nf_tables subsystem. The library\n" @@ -10997,7 +11126,7 @@ msgid "" "used by nftables." msgstr "" -#: gnu/packages/linux.scm:7194 +#: gnu/packages/linux.scm:7235 msgid "" "nftables is the project that aims to replace the existing\n" "{ip,ip6,arp,eb}tables framework. Basically, this project provides a new packet\n" @@ -11007,7 +11136,7 @@ msgid "" "userspace queueing component and the logging subsystem." msgstr "" -#: gnu/packages/linux.scm:7336 +#: gnu/packages/linux.scm:7377 msgid "" "PRoot is a user-space implementation of @code{chroot}, @code{mount --bind},\n" "and @code{binfmt_misc}. This means that users don't need any privileges or\n" @@ -11020,7 +11149,7 @@ msgid "" "available in the kernel Linux." msgstr "" -#: gnu/packages/linux.scm:7399 +#: gnu/packages/linux.scm:7437 msgid "" "cpuid dumps detailed information about the CPU(s) gathered\n" "from the CPUID instruction, and also determines the exact model of CPU(s). It\n" @@ -11028,14 +11157,14 @@ msgid "" "NexGen, Rise, and SiS CPUs." msgstr "" -#: gnu/packages/linux.scm:7426 +#: gnu/packages/linux.scm:7464 msgid "" "jmtpfs uses FUSE (file system in userspace) to provide access\n" "to data over the Media Transfer Protocol (MTP). Unprivileged users can mount\n" "the MTP device as a file system." msgstr "" -#: gnu/packages/linux.scm:7453 +#: gnu/packages/linux.scm:7491 msgid "" "Procenv is a command-line tool that displays as much detail about\n" "itself and its environment as possible. It can be used as a test\n" @@ -11043,7 +11172,7 @@ msgid "" "comparing system environments." msgstr "" -#: gnu/packages/linux.scm:7482 +#: gnu/packages/linux.scm:7520 msgid "" "OpenFabrics Interfaces (OFI) is a framework focused on exporting fabric\n" "communication services to applications. OFI is best described as a collection\n" @@ -11057,7 +11186,7 @@ msgid "" "libraries, which are often integrated directly into libfabric." msgstr "" -#: gnu/packages/linux.scm:7544 +#: gnu/packages/linux.scm:7582 msgid "" "The PSM Messaging API, or PSM API, is Intel's low-level user-level\n" "communications interface for the True Scale family of products. PSM users are\n" @@ -11065,14 +11194,14 @@ msgid "" "interfaces in parallel environments." msgstr "" -#: gnu/packages/linux.scm:7587 +#: gnu/packages/linux.scm:7625 msgid "" "snapscreenshot saves a screenshot of one or more Linux text consoles as a\n" "Targa (@dfn{.tga}) image. It can be used by anyone with read access to the\n" "relevant @file{/dev/vcs*} file(s)." msgstr "" -#: gnu/packages/linux.scm:7641 +#: gnu/packages/linux.scm:7679 msgid "" "fbcat saves the contents of the Linux framebuffer (@file{/dev/fb*}), or\n" "a dump therof. It supports a wide range of drivers and pixel formats.\n" @@ -11084,14 +11213,14 @@ msgid "" "emulates the behaviour of Gunnar Monell's older fbgrab utility." msgstr "" -#: gnu/packages/linux.scm:7672 +#: gnu/packages/linux.scm:7710 msgid "" "Control groups is Linux kernel method for process resource\n" "restriction, permission handling and more. This package provides userspace\n" "interface to this kernel feature." msgstr "" -#: gnu/packages/linux.scm:7707 +#: gnu/packages/linux.scm:7745 msgid "" "mbpfan is a fan control daemon for Apple Macbooks. It uses input from\n" "the @code{coretemp} module and sets the fan speed using the @code{applesmc}\n" @@ -11099,7 +11228,7 @@ msgid "" "privileges." msgstr "" -#: gnu/packages/linux.scm:7751 +#: gnu/packages/linux.scm:7789 msgid "" "This package is low-level user-level Intel's communications interface.\n" "The PSM2 API is a high-performance vendor-specific protocol that provides a\n" @@ -11107,7 +11236,7 @@ msgid "" "high-speed networking devices." msgstr "" -#: gnu/packages/linux.scm:7794 +#: gnu/packages/linux.scm:7832 msgid "" "This package provides a library called libpfm4, which is used to develop\n" "monitoring tools exploiting the performance monitoring events such as those\n" @@ -11122,7 +11251,7 @@ msgid "" "introduced in Linux 2.6.31." msgstr "" -#: gnu/packages/linux.scm:7824 +#: gnu/packages/linux.scm:7862 msgid "" "@code{libnfnetlink} is the low-level library for netfilter related\n" "kernel/userspace communication. It provides a generic messaging\n" @@ -11131,7 +11260,7 @@ msgid "" "management tools in userspace." msgstr "" -#: gnu/packages/linux.scm:7851 +#: gnu/packages/linux.scm:7889 msgid "" "The netlink package provides a simple netlink library for\n" "Go. Netlink is the interface a user-space program in Linux uses to\n" @@ -11139,7 +11268,7 @@ msgid "" "IP addresses and routes, and configure IPsec." msgstr "" -#: gnu/packages/linux.scm:7891 +#: gnu/packages/linux.scm:7929 msgid "" "The inih (INI Not Invented Here) library is a simple .INI file\n" "parser written in C. It's only a couple of pages of code, and it was designed to\n" @@ -11148,7 +11277,7 @@ msgid "" "822-style multi-line syntax and name: value entries." msgstr "" -#: gnu/packages/linux.scm:7942 +#: gnu/packages/linux.scm:7980 msgid "" "This package provides commands to create and check XFS\n" "file systems." @@ -11156,7 +11285,7 @@ msgstr "" "Ce paquet fournit des fonctions pour créer et vérifier\n" "des systèmes de fichiers XFS." -#: gnu/packages/linux.scm:7998 +#: gnu/packages/linux.scm:8036 msgid "" "This package provides a statically linked @command{xfs_repair} taken\n" "from the xfsprogs package. It is meant to be used in initrds." @@ -11164,7 +11293,7 @@ msgstr "" "Ce paquet fournit une commande @command{xfs_repair} liée statiquement issue\n" "du paquet xfsprogs. Il est censé être utilisé dans les initrds." -#: gnu/packages/linux.scm:8034 +#: gnu/packages/linux.scm:8072 msgid "" "This package provides a program to generate an ext2\n" "file system as a normal (non-root) user. It does not require you to mount\n" @@ -11172,7 +11301,7 @@ msgid "" "the superuser to make device nodes." msgstr "" -#: gnu/packages/linux.scm:8129 +#: gnu/packages/linux.scm:8167 msgid "" "@command{fakeroot} runs a command in an environment where it appears to\n" "have root privileges for file manipulation. This is useful for allowing users\n" @@ -11185,7 +11314,7 @@ msgid "" "without using the archiver." msgstr "" -#: gnu/packages/linux.scm:8169 +#: gnu/packages/linux.scm:8207 msgid "" "@command{fakechroot} runs a command in an environment were is additional\n" "possibility to use @code{chroot} command without root privileges. This is\n" @@ -11196,13 +11325,13 @@ msgid "" "set as @code{LD_PRELOAD} to override the C library file system functions." msgstr "" -#: gnu/packages/linux.scm:8215 +#: gnu/packages/linux.scm:8253 msgid "" "inputattach dispatches input events from several device\n" "types and interfaces and translates so that the X server can use them." msgstr "" -#: gnu/packages/linux.scm:8251 +#: gnu/packages/linux.scm:8289 msgid "" "PipeWire is a project that aims to greatly improve handling of audio and\n" "video under Linux. It aims to support the usecases currently handled by both\n" @@ -11214,7 +11343,7 @@ msgid "" "of Linux application development." msgstr "" -#: gnu/packages/linux.scm:8318 +#: gnu/packages/linux.scm:8356 msgid "" "WirePlumber is a modular session / policy manager for\n" "PipeWire and a GObject-based high-level library that wraps PipeWire's API,\n" @@ -11222,7 +11351,7 @@ msgid "" "tools for managing PipeWire." msgstr "" -#: gnu/packages/linux.scm:8357 +#: gnu/packages/linux.scm:8395 msgid "" "The Embedded Linux* Library (ELL) provides core, low-level\n" "functionality for system daemons. It typically has no dependencies other than\n" @@ -11231,7 +11360,7 @@ msgid "" "platforms, it is not limited to resource-constrained systems." msgstr "" -#: gnu/packages/linux.scm:8386 +#: gnu/packages/linux.scm:8424 msgid "" "This package provides the @code{kexec} program and ancillary\n" "utilities. Using @code{kexec}, it is possible to boot directly into a new\n" @@ -11239,7 +11368,7 @@ msgid "" "system boot process." msgstr "" -#: gnu/packages/linux.scm:8419 +#: gnu/packages/linux.scm:8457 msgid "" "@code{cachefilesd} is a userspace daemon that manages the\n" "cache data store that is used by network file systems such as @code{AFS} and\n" @@ -11247,14 +11376,14 @@ msgid "" "persistent over reboots." msgstr "" -#: gnu/packages/linux.scm:8463 +#: gnu/packages/linux.scm:8501 msgid "" "Libbpf supports building BPF CO-RE-enabled applications, which, in\n" "contrast to BCC, do not require the Clang/LLVM runtime or linux kernel\n" "headers." msgstr "" -#: gnu/packages/linux.scm:8541 +#: gnu/packages/linux.scm:8579 msgid "" "BCC is a toolkit for creating efficient kernel tracing and manipulation\n" "programs, and includes several useful tools and examples. It makes use of\n" @@ -11263,7 +11392,7 @@ msgid "" "and above." msgstr "" -#: gnu/packages/linux.scm:8577 +#: gnu/packages/linux.scm:8615 msgid "" "bpftrace is a high-level tracing language for Linux enhanced Berkeley\n" "Packet Filter (eBPF) available in recent Linux kernels (4.x). bpftrace uses\n" @@ -11275,14 +11404,14 @@ msgid "" "created by Alastair Robertson." msgstr "" -#: gnu/packages/linux.scm:8609 +#: gnu/packages/linux.scm:8647 msgid "" "This package provides a Linux kernel module that will\n" "provide a serial device @code{/dev/ttyebus} with almost no latency upon\n" "receiving. It is dedicated to the PL011 UART of the Raspberry Pi." msgstr "" -#: gnu/packages/linux.scm:8635 +#: gnu/packages/linux.scm:8673 msgid "" "IP sets are a framework inside the Linux 2.4.x and 2.6.x kernel which\n" "can be administered by the ipset utility. Depending on the type,\n" @@ -11303,7 +11432,7 @@ msgid "" "then IP sets may be the proper tool for you." msgstr "" -#: gnu/packages/linux.scm:8682 +#: gnu/packages/linux.scm:8720 msgid "" "This is the io_uring library, liburing. liburing provides\n" "helpers to setup and teardown io_uring instances, and also a simplified\n" @@ -11311,14 +11440,14 @@ msgid "" "kernel side implementation." msgstr "" -#: gnu/packages/linux.scm:8710 +#: gnu/packages/linux.scm:8748 msgid "" "@acronym{EROFS, The Enhanced Read-Only File System} is a compressed,\n" "read-only file system optimized for resource-scarce devices. This package\n" "provides user-space tools for creating EROFS file systems." msgstr "" -#: gnu/packages/linux.scm:8754 +#: gnu/packages/linux.scm:8792 msgid "" "The @code{rasdaemon} daemon monitors platform @acronym{RAS, Reliability\n" "Availability and Serviceability} reports from Linux kernel trace events.\n" @@ -11326,7 +11455,7 @@ msgid "" "through standard log mechanisms like syslog." msgstr "" -#: gnu/packages/linux.scm:8788 +#: gnu/packages/linux.scm:8826 msgid "" "This package provides a C library with C++/Python bindings and\n" "command-line tools for interacting with GPIO devices that avoids the usage of\n" @@ -11352,33 +11481,33 @@ msgid "" "beginning." msgstr "" -#: gnu/packages/messaging.scm:181 +#: gnu/packages/messaging.scm:183 msgid "" "OMEMO-wget is a tool to handle cryptographic URLs, generated\n" "by @acronym{OMEMO, OMEMO Multi-End Message and Object Encryption}, during\n" "XMPP-based sessions." msgstr "" -#: gnu/packages/messaging.scm:237 +#: gnu/packages/messaging.scm:239 msgid "" "Psi is a capable XMPP client aimed at experienced users.\n" "Its design goals are simplicity and stability." msgstr "" -#: gnu/packages/messaging.scm:295 +#: gnu/packages/messaging.scm:297 msgid "" "GNT is an ncurses toolkit for creating text-mode graphical\n" "user interfaces in a fast and easy way. It is based on GLib and ncurses." msgstr "" -#: gnu/packages/messaging.scm:346 +#: gnu/packages/messaging.scm:348 msgid "" "LibGadu is library for handling Gadu-Gadu instant messenger\n" "protocol. The library is written in C and aims to be operating system and\n" "environment independent." msgstr "" -#: gnu/packages/messaging.scm:381 +#: gnu/packages/messaging.scm:383 msgid "" "SILC (Secure Internet Live Conferencing) is a modern and secure\n" "conferencing protocol. It provides all the common conferencing services like\n" @@ -11386,14 +11515,14 @@ msgid "" "conferencing." msgstr "" -#: gnu/packages/messaging.scm:427 +#: gnu/packages/messaging.scm:429 msgid "" "QXmpp is a XMPP client and server library written in C++ and uses the Qt\n" "framework. It builds XMPP clients complying with the XMPP Compliance Suites\n" "2021 for IM and Advanced Mobile." msgstr "" -#: gnu/packages/messaging.scm:454 +#: gnu/packages/messaging.scm:456 msgid "" "Meanwhile is a library for connecting to a LIM (Lotus Instant\n" "Messaging, formerly Lotus Sametime, formerly VPBuddy) community. It uses a\n" @@ -11401,7 +11530,7 @@ msgid "" "TCP sessions from existing clients." msgstr "" -#: gnu/packages/messaging.scm:500 +#: gnu/packages/messaging.scm:502 msgid "" "Poezio is a free console XMPP client (the protocol on which\n" "the Jabber IM network is built).\n" @@ -11414,7 +11543,7 @@ msgid "" "powerful, standard and open protocol." msgstr "" -#: gnu/packages/messaging.scm:533 +#: gnu/packages/messaging.scm:535 msgid "" "OTR allows you to have private conversations over instant\n" "messaging by providing: (1) Encryption: No one else can read your instant\n" @@ -11427,7 +11556,7 @@ msgid "" "your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:572 +#: gnu/packages/messaging.scm:574 msgid "" "libsignal-protocol-c is an implementation of a ratcheting\n" "forward secrecy protocol that works in synchronous and asynchronous\n" @@ -11435,20 +11564,20 @@ msgid "" "end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:609 +#: gnu/packages/messaging.scm:611 msgid "" "This is a client library for @code{libsignal-protocol-c}.\n" "It implements the necessary interfaces using @code{libgcrypt} and\n" "@code{sqlite}." msgstr "" -#: gnu/packages/messaging.scm:641 +#: gnu/packages/messaging.scm:643 msgid "" "This library implements @acronym{OMEMO, OMEMO Multi-End\n" "Message and Object Encryption} of XMPP (XEP-0384) in C." msgstr "" -#: gnu/packages/messaging.scm:681 +#: gnu/packages/messaging.scm:683 msgid "" "BitlBee brings IM (instant messaging) to IRC clients, for\n" "people who have an IRC client running all the time and don't want to run an\n" @@ -11458,20 +11587,20 @@ msgid "" "identi.ca and status.net)." msgstr "" -#: gnu/packages/messaging.scm:748 +#: gnu/packages/messaging.scm:750 msgid "" "Bitlbee-discord is a plugin for Bitlbee which provides\n" "access to servers running the Discord protocol." msgstr "" -#: gnu/packages/messaging.scm:794 +#: gnu/packages/messaging.scm:796 msgid "" "Purple-Mattermost is a plug-in for Purple, the instant messaging library\n" "used by Pidgin and Bitlbee, among others, to access\n" "@uref{https://mattermost.com/, Mattermost} servers." msgstr "" -#: gnu/packages/messaging.scm:852 +#: gnu/packages/messaging.scm:854 msgid "" "HexChat lets you connect to multiple IRC networks at once. The main\n" "window shows the list of currently connected networks and their channels, the\n" @@ -11480,7 +11609,7 @@ msgid "" "dictionaries. HexChat can be extended with multiple addons." msgstr "" -#: gnu/packages/messaging.scm:917 +#: gnu/packages/messaging.scm:919 msgid "" "ngIRCd is a lightweight @dfn{Internet Relay Chat} (IRC) server for small\n" "or private networks. It is easy to configure, can cope with dynamic IP\n" @@ -11488,13 +11617,13 @@ msgid "" "authentication." msgstr "" -#: gnu/packages/messaging.scm:1024 +#: gnu/packages/messaging.scm:1026 msgid "" "Pidgin is a modular instant messaging client that supports\n" "many popular chat protocols." msgstr "" -#: gnu/packages/messaging.scm:1064 +#: gnu/packages/messaging.scm:1066 msgid "" "Pidgin-OTR is a plugin that adds support for OTR to the Pidgin\n" "instant messaging client. OTR (Off-the-Record) Messaging allows you to have\n" @@ -11508,7 +11637,7 @@ msgid "" "control of your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:1118 +#: gnu/packages/messaging.scm:1120 msgid "" "ZNC is an @dfn{IRC network bouncer} or @dfn{BNC}. It can\n" "detach the client from the actual IRC server, and also from selected channels.\n" @@ -11516,41 +11645,41 @@ msgid "" "simultaneously and therefore appear under the same nickname on IRC." msgstr "" -#: gnu/packages/messaging.scm:1147 +#: gnu/packages/messaging.scm:1149 msgid "" "Python-nbxmpp is a Python library that provides a way for\n" "Python applications to use the XMPP network. This library was initially a fork\n" "of xmpppy." msgstr "" -#: gnu/packages/messaging.scm:1274 +#: gnu/packages/messaging.scm:1276 msgid "" "Gajim aims to be an easy to use and fully-featured XMPP chat\n" "client. It is extensible via plugins, supports end-to-end encryption (OMEMO\n" "and OpenPGP) and available in 29 languages." msgstr "" -#: gnu/packages/messaging.scm:1309 +#: gnu/packages/messaging.scm:1311 msgid "" "Gajim-OMEMO is a plugin that adds support for the OMEMO\n" "Encryption to Gajim. OMEMO is an XMPP Extension Protocol (XEP) for secure\n" "multi-client end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:1344 +#: gnu/packages/messaging.scm:1346 msgid "" "Gajim-OpenPGP is a plugin that adds support for the OpenPGP\n" "Encryption to Gajim." msgstr "" -#: gnu/packages/messaging.scm:1418 +#: gnu/packages/messaging.scm:1420 msgid "" "Dino is a chat client for the desktop. It focuses on providing\n" "a minimal yet reliable Jabber/XMPP experience and having encryption enabled by\n" "default." msgstr "" -#: gnu/packages/messaging.scm:1505 +#: gnu/packages/messaging.scm:1507 msgid "" "Prosody is a modern XMPP communication server. It aims to\n" "be easy to set up and configure, and efficient with system resources.\n" @@ -11559,43 +11688,43 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/messaging.scm:1540 +#: gnu/packages/messaging.scm:1542 msgid "" "This module implements XEP-0363: it allows clients to\n" "upload files over HTTP." msgstr "" -#: gnu/packages/messaging.scm:1572 +#: gnu/packages/messaging.scm:1574 msgid "" "This module implements XEP-0198: when supported by both\n" "the client and server, it can allow clients to resume a disconnected session,\n" "and prevent message loss." msgstr "" -#: gnu/packages/messaging.scm:1601 +#: gnu/packages/messaging.scm:1603 msgid "C library implementation of the Tox encrypted messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1633 +#: gnu/packages/messaging.scm:1635 msgid "" "Official fork of the C library implementation of the Tox encrypted\n" "messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1687 +#: gnu/packages/messaging.scm:1689 msgid "" "uTox is a lightweight Tox client. Tox is a distributed and secure\n" "instant messenger with audio and video chat capabilities." msgstr "" -#: gnu/packages/messaging.scm:1750 +#: gnu/packages/messaging.scm:1752 msgid "" "qTox is a Tox client that follows the Tox design\n" "guidelines. It provides an easy to use application that allows you to\n" "connect with friends and family without anyone else listening in." msgstr "" -#: gnu/packages/messaging.scm:1772 +#: gnu/packages/messaging.scm:1774 msgid "" "Ytalk is a replacement for the BSD talk program. Its main\n" "advantage is the ability to communicate with any arbitrary number of users at\n" @@ -11603,7 +11732,7 @@ msgid "" "with several different talk daemons at the same time." msgstr "" -#: gnu/packages/messaging.scm:1796 +#: gnu/packages/messaging.scm:1798 msgid "" "gloox is a full-featured Jabber/XMPP client library,\n" "written in ANSI C++. It makes writing spec-compliant clients easy\n" @@ -11611,7 +11740,7 @@ msgid "" "into existing applications." msgstr "" -#: gnu/packages/messaging.scm:1866 +#: gnu/packages/messaging.scm:1868 msgid "" "@code{Net::PSYC} with support for TCP, UDP, Event.pm, @code{IO::Select} and\n" "Gtk2 event loops. This package includes 12 applications and additional scripts:\n" @@ -11619,14 +11748,14 @@ msgid "" "for @uref{https://torproject.org,tor} router) and many more." msgstr "" -#: gnu/packages/messaging.scm:1907 +#: gnu/packages/messaging.scm:1909 msgid "" "@code{libpsyc} is a PSYC library in C which implements\n" "core aspects of PSYC, useful for all kinds of clients and servers\n" "including psyced." msgstr "" -#: gnu/packages/messaging.scm:1949 +#: gnu/packages/messaging.scm:1951 msgid "" "Loudmouth is a lightweight and easy-to-use C library for programming\n" "with the XMPP (formerly known as Jabber) protocol. It is designed to be\n" @@ -11634,7 +11763,7 @@ msgid "" "protocol allows." msgstr "" -#: gnu/packages/messaging.scm:1991 +#: gnu/packages/messaging.scm:1993 msgid "" "Mcabber is a small XMPP (Jabber) console client, which includes features\n" "such as SASL and TLS support, @dfn{Multi-User Chat} (MUC) support, logging,\n" @@ -11642,7 +11771,7 @@ msgid "" "support, and more." msgstr "" -#: gnu/packages/messaging.scm:2039 +#: gnu/packages/messaging.scm:2041 msgid "" "GNU Freetalk is a command-line Jabber/XMPP chat client. It notably uses\n" "the Readline library to handle input, so it features convenient navigation of\n" @@ -11650,27 +11779,27 @@ msgid "" "is also scriptable and extensible via Guile." msgstr "" -#: gnu/packages/messaging.scm:2074 +#: gnu/packages/messaging.scm:2076 msgid "" "Libmesode is a fork of libstrophe for use with Profanity\n" "XMPP Client. In particular, libmesode provides extra TLS functionality such as\n" "manual SSL certificate verification." msgstr "" -#: gnu/packages/messaging.scm:2109 +#: gnu/packages/messaging.scm:2111 msgid "" "Libstrophe is a minimal XMPP library written in C. It has\n" "almost no external dependencies, only an XML parsing library (expat or libxml\n" "are both supported)." msgstr "" -#: gnu/packages/messaging.scm:2167 +#: gnu/packages/messaging.scm:2169 msgid "" "Profanity is a console based XMPP client written in C\n" "using ncurses and libmesode, inspired by Irssi." msgstr "" -#: gnu/packages/messaging.scm:2197 +#: gnu/packages/messaging.scm:2199 msgid "" "Libircclient is a library which implements the client IRC\n" "protocol. It is designed to be small, fast, portable and compatible with the\n" @@ -11678,14 +11807,14 @@ msgid "" "building the IRC clients and bots." msgstr "" -#: gnu/packages/messaging.scm:2255 +#: gnu/packages/messaging.scm:2257 msgid "" "Toxic is a console-based instant messaging client, using\n" "c-toxcore and ncurses. It provides audio calls, sound and desktop\n" "notifications, and Python scripting support." msgstr "" -#: gnu/packages/messaging.scm:2281 +#: gnu/packages/messaging.scm:2283 msgid "" "libqmatrixclient is a Qt5 library to write clients for the\n" "Matrix instant messaging protocol. Quaternion is the reference client\n" @@ -11693,13 +11822,13 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2326 +#: gnu/packages/messaging.scm:2330 msgid "" "@code{mtxclient} is a C++ library that implements client API\n" "for the Matrix protocol. It is built on to of @code{Boost.Asio}." msgstr "" -#: gnu/packages/messaging.scm:2418 +#: gnu/packages/messaging.scm:2423 msgid "" "@code{Nheko} want to provide a native desktop app for the\n" "Matrix protocol that feels more like a mainstream chat app and less like an IRC\n" @@ -11709,7 +11838,7 @@ msgid "" "notification, emojis, E2E encryption, and voip calls." msgstr "" -#: gnu/packages/messaging.scm:2455 +#: gnu/packages/messaging.scm:2460 msgid "" "Quaternion is a Qt5 desktop client for the Matrix instant\n" "messaging protocol. It uses libqmatrixclient and is its reference client\n" @@ -11717,7 +11846,7 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2502 +#: gnu/packages/messaging.scm:2507 msgid "" "Hangups is an instant messaging client for Google Hangouts. It includes\n" "both a Python library and a reference client with a text-based user interface.\n" @@ -11727,7 +11856,7 @@ msgid "" "messaging that aren’t available to clients that connect over XMPP." msgstr "" -#: gnu/packages/messaging.scm:2584 +#: gnu/packages/messaging.scm:2589 msgid "" "Telegram-purple is a plugin for Libpurple, the communication library\n" "used by the Pidgin instant messaging client, that adds support for the\n" @@ -11737,7 +11866,7 @@ msgid "" "replacement." msgstr "" -#: gnu/packages/messaging.scm:2629 +#: gnu/packages/messaging.scm:2632 msgid "" "Tdlib is a cross-platform library for creating custom\n" "Telegram clients following the official Telegram API. It can be easily used\n" @@ -11745,11 +11874,11 @@ msgid "" "support for high performance Telegram Bot creation." msgstr "" -#: gnu/packages/messaging.scm:2667 +#: gnu/packages/messaging.scm:2670 msgid "Plugin for libpurple to allow sending SMS using ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2712 +#: gnu/packages/messaging.scm:2715 msgid "" "Purple-lurch plugin adds end-to-end encryption support\n" "through the Double Ratchet (Axolotl) algorithm, to @code{libpurple}\n" @@ -11760,19 +11889,19 @@ msgid "" "asynchronicity." msgstr "" -#: gnu/packages/messaging.scm:2748 +#: gnu/packages/messaging.scm:2751 msgid "" "This package provides a C++ library for parsing, formatting, and\n" "validating international phone numbers." msgstr "" -#: gnu/packages/messaging.scm:2793 +#: gnu/packages/messaging.scm:2796 msgid "" "Chatty is a chat program for XMPP and SMS. It works on mobile\n" "as well as on desktop platforms. It's based on libpurple and ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2814 +#: gnu/packages/messaging.scm:2817 msgid "" "This package provides Eclipse Mosquitto, a message broker\n" "that implements the MQTT protocol versions 5.0, 3.1.1 and 3.1. Mosquitto\n" @@ -11785,27 +11914,27 @@ msgid "" "as phones, embedded computers or microcontrollers." msgstr "" -#: gnu/packages/messaging.scm:2864 +#: gnu/packages/messaging.scm:2867 msgid "" "Movim-Desktop is a desktop application, relying on Qt, for the Movim\n" "social and chat platform." msgstr "" -#: gnu/packages/messaging.scm:2999 +#: gnu/packages/messaging.scm:3002 msgid "" "Psi+ is a spin-off of Psi XMPP client. It is a powerful XMPP client\n" "designed for experienced users." msgstr "" -#: gnu/packages/messaging.scm:3039 +#: gnu/packages/messaging.scm:3042 msgid "This package provides Python bindings to Zulip's API." msgstr "Ce paquet fournit les liaisons Python pour l'API de Zulip." -#: gnu/packages/messaging.scm:3088 +#: gnu/packages/messaging.scm:3091 msgid "This package contains Zulip's official terminal client." msgstr "Ce paquet contient le client terminal officiel de Zulip." -#: gnu/packages/messaging.scm:3110 +#: gnu/packages/messaging.scm:3113 msgid "" "Relays messages between different channels from various\n" "messaging networks and protocols. So far it supports mattermost, IRC, gitter,\n" @@ -11814,20 +11943,20 @@ msgid "" "API. Mattermost is not required." msgstr "" -#: gnu/packages/messaging.scm:3143 +#: gnu/packages/messaging.scm:3146 msgid "" "@command{pounce} is a multi-client, TLS-only IRC bouncer. It maintains\n" "a persistent connection to an IRC server, acting as a proxy and buffer for\n" "a number of clients." msgstr "" -#: gnu/packages/messaging.scm:3209 +#: gnu/packages/messaging.scm:3212 msgid "" "@code{weechat-matrix} is a Python plugin for Weechat that lets\n" "Weechat communicate over the Matrix protocol." msgstr "" -#: gnu/packages/messaging.scm:3256 +#: gnu/packages/messaging.scm:3259 msgid "" "@code{weechat-wee-slack} is a WeeChat native client for\n" "Slack. It provides supplemental features only available in the web/mobile\n" @@ -11936,14 +12065,14 @@ msgid "" "themselves." msgstr "" -#: gnu/packages/networking.scm:174 +#: gnu/packages/networking.scm:176 msgid "" "UsrSCTP is a portable SCTP userland stack. SCTP is a message\n" "oriented, reliable transport protocol with direct support for multihoming that\n" "runs on top of IP or UDP, and supports both v4 and v6 versions." msgstr "" -#: gnu/packages/networking.scm:199 +#: gnu/packages/networking.scm:201 msgid "" "Axel tries to accelerate the download process by using multiple\n" "connections per file, and can also balance the load between different\n" @@ -11952,38 +12081,38 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/networking.scm:264 +#: gnu/packages/networking.scm:266 msgid "" "LibCamera is a complex camera support library for GNU+Linux,\n" "Android, and ChromeOS." msgstr "" -#: gnu/packages/networking.scm:334 +#: gnu/packages/networking.scm:336 msgid "" "LibNice is a library that implements the Interactive\n" "Connectivity Establishment (ICE) standard (RFC 5245 & RFC 8445). It provides a\n" "GLib-based library, libnice, as well as GStreamer elements to use it." msgstr "" -#: gnu/packages/networking.scm:393 +#: gnu/packages/networking.scm:395 msgid "" "RTMPdump is a toolkit for RTMP streams. All forms of RTMP are\n" "supported, including rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps://." msgstr "" -#: gnu/packages/networking.scm:422 +#: gnu/packages/networking.scm:424 msgid "" "Slurm is a network load monitor. It shows real-time traffic statistics\n" "from any network device in any of three ASCII graph formats." msgstr "" -#: gnu/packages/networking.scm:457 +#: gnu/packages/networking.scm:459 msgid "" "SRT is a transport technology that optimizes streaming\n" "performance across unpredictable networks, such as the Internet." msgstr "" -#: gnu/packages/networking.scm:500 +#: gnu/packages/networking.scm:502 msgid "" "The lksctp-tools project provides a user-space library for @acronym{SCTP,\n" "the Stream Control Transmission Protocol} (@file{libsctp}) and C language header\n" @@ -11992,13 +12121,13 @@ msgid "" "It also includes some SCTP-related helper utilities." msgstr "" -#: gnu/packages/networking.scm:541 +#: gnu/packages/networking.scm:543 msgid "" "@code{pysctp} implements the SCTP socket API. You need a\n" "SCTP-aware kernel (most are)." msgstr "" -#: gnu/packages/networking.scm:565 +#: gnu/packages/networking.scm:567 msgid "" "@command{knockd} is a port-knock daemon. It listens to all traffic on\n" "an ethernet or PPP interface, looking for special \"knock\" sequences of @dfn{port-hits}\n" @@ -12006,7 +12135,7 @@ msgid "" "at the link-layer level." msgstr "" -#: gnu/packages/networking.scm:605 +#: gnu/packages/networking.scm:607 msgid "" "NNG project is a rewrite of the scalability protocols library\n" "known as libnanomsg, and adds significant new capabilities, while retaining\n" @@ -12015,7 +12144,7 @@ msgid "" "publish/subscribe, RPC-style request/reply, or service discovery." msgstr "" -#: gnu/packages/networking.scm:648 +#: gnu/packages/networking.scm:650 msgid "" "Nanomsg is a socket library that provides several common\n" "communication patterns. It aims to make the networking layer fast, scalable,\n" @@ -12023,14 +12152,14 @@ msgid "" "systems with no further dependencies." msgstr "" -#: gnu/packages/networking.scm:758 +#: gnu/packages/networking.scm:760 msgid "" "Blueman is a Bluetooth management utility using the Bluez\n" "D-Bus backend. It is designed to be easy to use for most common Bluetooth\n" "tasks." msgstr "" -#: gnu/packages/networking.scm:783 +#: gnu/packages/networking.scm:785 msgid "" "GNU MAC Changer is a utility for viewing and changing MAC\n" "addresses of networking devices. New addresses may be set explicitly or\n" @@ -12038,14 +12167,14 @@ msgid "" "or, more generally, MAC addresses of the same category of hardware." msgstr "" -#: gnu/packages/networking.scm:831 +#: gnu/packages/networking.scm:833 msgid "" "Miredo is an implementation (client, relay, server) of the Teredo\n" "specification, which provides IPv6 Internet connectivity to IPv6 enabled hosts\n" "residing in IPv4-only networks, even when they are behind a NAT device." msgstr "" -#: gnu/packages/networking.scm:851 +#: gnu/packages/networking.scm:853 msgid "" "NDisc6 is a collection of tools for IPv6 networking diagnostics.\n" "It includes the following programs:\n" @@ -12059,7 +12188,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:904 +#: gnu/packages/networking.scm:906 msgid "" "@command{parprouted} is a daemon for transparent IP (Layer@tie{}3)\n" "proxy ARP bridging. Unlike standard bridging, proxy ARP bridging can bridge\n" @@ -12069,7 +12198,14 @@ msgid "" "useful for making transparent firewalls." msgstr "" -#: gnu/packages/networking.scm:931 +#: gnu/packages/networking.scm:945 +msgid "" +"@command{pproxy} is an asynchronuous proxy server implemented with\n" +"Python 3 @code{asyncio}. Among the supported protocols are HTTP, SOCKS\n" +"and SSH, and it can use both TCP and UDP as transport mechanisms." +msgstr "" + +#: gnu/packages/networking.scm:969 msgid "" "socat is a relay for bidirectional data transfer between two independent\n" "data channels---files, pipes, devices, sockets, etc. It can create\n" @@ -12082,7 +12218,7 @@ msgid "" "or server shell scripts with network connections." msgstr "" -#: gnu/packages/networking.scm:962 +#: gnu/packages/networking.scm:1000 msgid "" "mbuffer is a tool for buffering data streams with a large set of features:\n" "\n" @@ -12098,14 +12234,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1058 +#: gnu/packages/networking.scm:1096 msgid "" "With this package you can monitor and filter incoming requests for\n" "network services. It includes a library which may be used by daemons to\n" "transparently check connection attempts against an access control list." msgstr "" -#: gnu/packages/networking.scm:1081 +#: gnu/packages/networking.scm:1119 msgid "" "The 0MQ lightweight messaging kernel is a library which extends the\n" "standard socket interfaces with features traditionally provided by specialized\n" @@ -12115,46 +12251,46 @@ msgid "" "more." msgstr "" -#: gnu/packages/networking.scm:1110 +#: gnu/packages/networking.scm:1148 msgid "" "czmq provides bindings for the ØMQ core API that hides the differences\n" "between different versions of ØMQ." msgstr "" -#: gnu/packages/networking.scm:1141 +#: gnu/packages/networking.scm:1179 msgid "" "This package provides header-only C++ bindings for ØMQ. The header\n" "files contain direct mappings of the abstractions provided by the ØMQ C API." msgstr "" -#: gnu/packages/networking.scm:1175 +#: gnu/packages/networking.scm:1213 msgid "" "@code{libnatpmp} is a portable and asynchronous implementation of\n" "the Network Address Translation - Port Mapping Protocol (NAT-PMP)\n" "written in the C programming language." msgstr "" -#: gnu/packages/networking.scm:1213 +#: gnu/packages/networking.scm:1251 msgid "" "librdkafka is a C library implementation of the Apache Kafka protocol,\n" "containing both Producer and Consumer support." msgstr "" -#: gnu/packages/networking.scm:1232 +#: gnu/packages/networking.scm:1270 msgid "" "libndp contains a library which provides a wrapper for IPv6 Neighbor\n" "Discovery Protocol. It also provides a tool named ndptool for sending and\n" "receiving NDP messages." msgstr "" -#: gnu/packages/networking.scm:1256 +#: gnu/packages/networking.scm:1294 msgid "" "ethtool can be used to query and change settings such as speed,\n" "auto-negotiation and checksum offload on many network devices, especially\n" "Ethernet devices." msgstr "" -#: gnu/packages/networking.scm:1298 +#: gnu/packages/networking.scm:1336 msgid "" "IFStatus is a simple, easy-to-use program for displaying commonly\n" "needed/wanted real-time traffic statistics of multiple network\n" @@ -12162,7 +12298,7 @@ msgid "" "intended as a substitute for the PPPStatus and EthStatus projects." msgstr "" -#: gnu/packages/networking.scm:1347 +#: gnu/packages/networking.scm:1385 msgid "" "This package contains a variety of tools for dealing with network\n" "configuration, troubleshooting, or servers. Utilities included are:\n" @@ -12183,7 +12319,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1388 +#: gnu/packages/networking.scm:1426 msgid "" "Nload is a console application which monitors network traffic and\n" "bandwidth usage in real time. It visualizes the in- and outgoing traffic using\n" @@ -12191,7 +12327,7 @@ msgid "" "and min/max network usage." msgstr "" -#: gnu/packages/networking.scm:1432 +#: gnu/packages/networking.scm:1470 msgid "" "Iodine tunnels IPv4 data through a DNS server. This\n" "can be useful in different situations where internet access is firewalled, but\n" @@ -12199,7 +12335,7 @@ msgid "" "and up to 1 Mbit/s downstream." msgstr "" -#: gnu/packages/networking.scm:1473 +#: gnu/packages/networking.scm:1511 msgid "" "whois searches for an object in a @dfn{WHOIS} (RFC 3912) database.\n" "It is commonly used to look up the registered users or assignees of an Internet\n" @@ -12211,14 +12347,14 @@ msgid "" "of the same name." msgstr "" -#: gnu/packages/networking.scm:1553 +#: gnu/packages/networking.scm:1591 msgid "" "Wireshark is a network protocol analyzer, or @dfn{packet\n" "sniffer}, that lets you capture and interactively browse the contents of\n" "network frames." msgstr "" -#: gnu/packages/networking.scm:1574 +#: gnu/packages/networking.scm:1613 msgid "" "fping is a ping-like program which uses @acronym{ICMP, Internet Control\n" "Message Protocol} echo requests to determine if a target host is responding.\n" @@ -12230,26 +12366,26 @@ msgid "" "round-robin fashion." msgstr "" -#: gnu/packages/networking.scm:1625 +#: gnu/packages/networking.scm:1664 msgid "" "This package provides a command-line client (@command{gandi}) to buy,\n" "manage, and delete Internet resources from Gandi.net such as domain names,\n" "virtual machines, and certificates." msgstr "" -#: gnu/packages/networking.scm:1651 +#: gnu/packages/networking.scm:1690 msgid "" "The netns package provides a simple interface for\n" "handling network namespaces in Go." msgstr "Le paquet netns fournit une interface simple pour gérer les espaces de noms réseaux en Go." -#: gnu/packages/networking.scm:1678 +#: gnu/packages/networking.scm:1717 msgid "" "This library provides methods for using the stream control\n" "transmission protocol (SCTP) in a Go application." msgstr "" -#: gnu/packages/networking.scm:1707 +#: gnu/packages/networking.scm:1746 msgid "" "httping measures how long it takes to connect to a web server, send an\n" "HTTP(S) request, and receive the reply headers. It is somewhat similar to\n" @@ -12258,7 +12394,7 @@ msgid "" "application stack itself." msgstr "" -#: gnu/packages/networking.scm:1746 +#: gnu/packages/networking.scm:1785 msgid "" "@command{httpstat} is a tool to visualize statistics from the\n" "@command{curl} HTTP client. It acts as a wrapper for @command{curl} and\n" @@ -12266,20 +12402,20 @@ msgid "" "TCP connection, TLS handshake and so on) in the terminal." msgstr "" -#: gnu/packages/networking.scm:1788 +#: gnu/packages/networking.scm:1827 msgid "" "Squid is a caching proxy for the Web supporting HTTP, HTTPS,\n" "FTP, and more. It reduces bandwidth and improves response times by caching and\n" "reusing frequently-requested web pages." msgstr "" -#: gnu/packages/networking.scm:1822 +#: gnu/packages/networking.scm:1861 msgid "" "Bandwidth Monitor NG is a small and simple console based\n" "live network and disk I/O bandwidth monitor." msgstr "" -#: gnu/packages/networking.scm:1874 +#: gnu/packages/networking.scm:1913 msgid "" "Aircrack-ng is a complete suite of tools to assess WiFi network\n" "security. It focuses on different areas of WiFi security: monitoring,\n" @@ -12287,14 +12423,14 @@ msgid "" "allows for heavy scripting." msgstr "" -#: gnu/packages/networking.scm:1903 +#: gnu/packages/networking.scm:1942 msgid "" "Pixiewps implements the pixie-dust attack to brute\n" "force the Wi-Fi Protected Setup (WPS) PIN by exploiting the low or\n" "non-existing entropy of some access points." msgstr "" -#: gnu/packages/networking.scm:1949 +#: gnu/packages/networking.scm:1988 msgid "" "Reaver performs a brute force attack against an access\n" "point's Wi-Fi Protected Setup (WPS) PIN. Once the PIN is found, the WPA\n" @@ -12302,7 +12438,7 @@ msgid "" "reconfigured." msgstr "" -#: gnu/packages/networking.scm:1974 +#: gnu/packages/networking.scm:2013 msgid "" "Danga::Socket is an abstract base class for objects backed by a socket\n" "which provides the basic framework for event-driven asynchronous IO, designed\n" @@ -12310,7 +12446,7 @@ msgid "" "loop." msgstr "" -#: gnu/packages/networking.scm:2000 +#: gnu/packages/networking.scm:2039 msgid "" "This module provides several IP address validation subroutines that both\n" "validate and untaint their input. This includes both basic validation\n" @@ -12319,62 +12455,62 @@ msgid "" "private (reserved)." msgstr "" -#: gnu/packages/networking.scm:2028 +#: gnu/packages/networking.scm:2067 msgid "Net::DNS is the Perl Interface to the Domain Name System." msgstr "" -#: gnu/packages/networking.scm:2060 +#: gnu/packages/networking.scm:2099 msgid "" "Socket6 binds the IPv6 related part of the C socket header\n" "definitions and structure manipulators for Perl." msgstr "" -#: gnu/packages/networking.scm:2087 +#: gnu/packages/networking.scm:2126 msgid "" "Net::DNS::Resolver::Programmable is a programmable DNS resolver for\n" "offline emulation of DNS." msgstr "" -#: gnu/packages/networking.scm:2109 +#: gnu/packages/networking.scm:2148 msgid "" "Net::DNS::Resolver::Mock is a subclass of Net::DNS::Resolver, but returns\n" "static data from any provided DNS zone file instead of querying the network.\n" "It is intended primarily for use in testing." msgstr "" -#: gnu/packages/networking.scm:2144 +#: gnu/packages/networking.scm:2183 msgid "NetAddr::IP manages IPv4 and IPv6 addresses and subsets." msgstr "" -#: gnu/packages/networking.scm:2177 +#: gnu/packages/networking.scm:2216 msgid "Net::Patricia does IP address lookups quickly in Perl." msgstr "" -#: gnu/packages/networking.scm:2198 +#: gnu/packages/networking.scm:2237 msgid "Net::CIDR::Lite merges IPv4 or IPv6 CIDR addresses." msgstr "" -#: gnu/packages/networking.scm:2225 +#: gnu/packages/networking.scm:2264 msgid "" "IO::Socket::INET6 is an interface for AF_INET/AF_INET6 domain\n" "sockets in Perl." msgstr "" -#: gnu/packages/networking.scm:2258 +#: gnu/packages/networking.scm:2293 msgid "" "Libproxy handles the details of HTTP/HTTPS proxy\n" "configuration for applications across all scenarios. Applications using\n" "libproxy only have to specify which proxy to use." msgstr "" -#: gnu/packages/networking.scm:2292 +#: gnu/packages/networking.scm:2327 msgid "" "Proxychains-ng is a preloader which hooks calls to sockets\n" "in dynamically linked programs and redirects them through one or more SOCKS or\n" "HTTP proxies." msgstr "" -#: gnu/packages/networking.scm:2314 +#: gnu/packages/networking.scm:2349 msgid "" "ENet's purpose is to provide a relatively thin, simple and robust network\n" "communication layer on top of UDP. The primary feature it provides is optional\n" @@ -12384,7 +12520,7 @@ msgid "" "library remains flexible, portable, and easily embeddable." msgstr "" -#: gnu/packages/networking.scm:2378 +#: gnu/packages/networking.scm:2413 msgid "" "sslh is a network protocol demultiplexer. It acts like a switchboard,\n" "accepting connections from clients on one port and forwarding them to different\n" @@ -12396,7 +12532,7 @@ msgid "" "that block port 22." msgstr "" -#: gnu/packages/networking.scm:2408 +#: gnu/packages/networking.scm:2443 msgid "" "iPerf is a tool to measure achievable bandwidth on IP networks. It\n" "supports tuning of various parameters related to timing, buffers and\n" @@ -12404,7 +12540,7 @@ msgid "" "the bandwidth, loss, and other parameters." msgstr "" -#: gnu/packages/networking.scm:2445 +#: gnu/packages/networking.scm:2480 msgid "" "NetHogs is a small 'net top' tool for Linux. Instead of\n" "breaking the traffic down per protocol or per subnet, like most tools do, it\n" @@ -12416,7 +12552,7 @@ msgid "" "gone wild and are suddenly taking up your bandwidth." msgstr "" -#: gnu/packages/networking.scm:2481 +#: gnu/packages/networking.scm:2516 msgid "" "NZBGet is a binary newsgrabber, which downloads files from Usenet based\n" "on information given in @code{nzb} files. NZBGet can be used in standalone\n" @@ -12426,7 +12562,7 @@ msgid "" "procedure calls (RPCs)." msgstr "" -#: gnu/packages/networking.scm:2562 +#: gnu/packages/networking.scm:2597 msgid "" "Open vSwitch is a multilayer virtual switch. It is designed to enable\n" "massive network automation through programmatic extension, while still\n" @@ -12434,27 +12570,27 @@ msgid "" "IPFIX, RSPAN, CLI, LACP, 802.1ag)." msgstr "" -#: gnu/packages/networking.scm:2585 +#: gnu/packages/networking.scm:2620 msgid "" "The @code{IP} class allows a comfortable parsing and\n" "handling for most notations in use for IPv4 and IPv6 addresses and\n" "networks." msgstr "" -#: gnu/packages/networking.scm:2610 +#: gnu/packages/networking.scm:2645 msgid "" "Command line interface for testing internet bandwidth using\n" "speedtest.net." msgstr "" -#: gnu/packages/networking.scm:2630 +#: gnu/packages/networking.scm:2668 msgid "" "This is a tftp client derived from OpenBSD tftp with some extra options\n" "added and bugs fixed. The source includes readline support but it is not\n" "enabled due to license conflicts between the BSD advertising clause and the GPL." msgstr "" -#: gnu/packages/networking.scm:2682 +#: gnu/packages/networking.scm:2720 msgid "" "Spiped (pronounced \"ess-pipe-dee\") is a utility for creating\n" "symmetrically encrypted and authenticated pipes between socket addresses, so\n" @@ -12464,7 +12600,7 @@ msgid "" "does not use SSH and requires a pre-shared symmetric key." msgstr "" -#: gnu/packages/networking.scm:2708 +#: gnu/packages/networking.scm:2746 msgid "" "Quagga is a routing software suite, providing implementations\n" "of OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4 for Unix platforms.\n" @@ -12476,14 +12612,14 @@ msgid "" "updates to the zebra daemon." msgstr "" -#: gnu/packages/networking.scm:2758 +#: gnu/packages/networking.scm:2796 msgid "" "The THC IPv6 Toolkit provides command-line tools and a library\n" "for researching IPv6 implementations and deployments. It requires Linux 2.6 or\n" "newer and only works on Ethernet network interfaces." msgstr "" -#: gnu/packages/networking.scm:2783 +#: gnu/packages/networking.scm:2821 msgid "" "bmon is a monitoring and debugging tool to capture\n" "networking-related statistics and prepare them visually in a human-friendly\n" @@ -12491,7 +12627,7 @@ msgid "" "interface and a programmable text output for scripting." msgstr "" -#: gnu/packages/networking.scm:2821 +#: gnu/packages/networking.scm:2859 msgid "" "Libnet provides a fairly portable framework for network packet\n" "construction and injection. It features portable packet creation interfaces\n" @@ -12500,7 +12636,7 @@ msgid "" "can be whipped up with little effort." msgstr "" -#: gnu/packages/networking.scm:2847 +#: gnu/packages/networking.scm:2885 msgid "" "@acronym{mtr, My TraceRoute} combines the functionality of the\n" "@command{traceroute} and @command{ping} programs in a single network diagnostic\n" @@ -12510,7 +12646,7 @@ msgid "" "displays the results in real time." msgstr "" -#: gnu/packages/networking.scm:2900 +#: gnu/packages/networking.scm:2938 msgid "" "aMule is an eMule-like client for the eD2k and Kademlia peer-to-peer\n" "file sharing networks. It includes a graphical user interface (GUI), a daemon\n" @@ -12519,7 +12655,7 @@ msgid "" "remotely." msgstr "" -#: gnu/packages/networking.scm:2922 +#: gnu/packages/networking.scm:2960 msgid "" "Zyre provides reliable group messaging over local area\n" "networks using zeromq. It has these key characteristics:\n" @@ -12536,13 +12672,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:2956 +#: gnu/packages/networking.scm:2994 msgid "" "This library allows controlling basic functions in SocketCAN\n" "from user-space. It requires a kernel built with SocketCAN support." msgstr "" -#: gnu/packages/networking.scm:2985 +#: gnu/packages/networking.scm:3023 msgid "" "This package provides CAN utilities in the following areas:\n" "\n" @@ -12558,14 +12694,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3021 +#: gnu/packages/networking.scm:3059 msgid "" "Asio is a cross-platform C++ library for network and\n" "low-level I/O programming that provides developers with a consistent\n" "asynchronous model using a modern C++ approach." msgstr "" -#: gnu/packages/networking.scm:3056 +#: gnu/packages/networking.scm:3094 msgid "" "This package is a fast tunnel proxy that helps you bypass firewalls.\n" "\n" @@ -12579,7 +12715,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3134 +#: gnu/packages/networking.scm:3172 msgid "" "The @dfn{Simple Network Management Protocol} (SNMP) is a\n" "widely used protocol for monitoring the health and welfare of network\n" @@ -12588,20 +12724,20 @@ msgid "" "SNMP v3 using both IPv4 and IPv6." msgstr "" -#: gnu/packages/networking.scm:3181 +#: gnu/packages/networking.scm:3219 msgid "" "uBridge is a simple program to create user-land bridges\n" "between various technologies. Currently, bridging between UDP tunnels,\n" "Ethernet and TAP interfaces is supported. Packet capture is also supported." msgstr "" -#: gnu/packages/networking.scm:3213 +#: gnu/packages/networking.scm:3251 msgid "" "This package contains a small set of tools to capture and convert\n" "packets from wireless devices for use with hashcat or John the Ripper." msgstr "" -#: gnu/packages/networking.scm:3244 +#: gnu/packages/networking.scm:3282 msgid "" "Small tool to capture packets from WLAN devices. After capturing,\n" "upload the \"uncleaned\" cap to @url{https://wpa-sec.stanev.org/?submit} to\n" @@ -12611,7 +12747,7 @@ msgid "" "and check if the WLAN key or the master key was transmitted unencrypted." msgstr "" -#: gnu/packages/networking.scm:3271 +#: gnu/packages/networking.scm:3309 msgid "" "Dante is a SOCKS client and server implementation. It can\n" "be installed on a machine with access to an external TCP/IP network and will\n" @@ -12620,21 +12756,21 @@ msgid "" "never see any machines other than the one Dante is running on." msgstr "" -#: gnu/packages/networking.scm:3318 +#: gnu/packages/networking.scm:3356 msgid "" "Restbed is a comprehensive and consistent programming\n" "model for building applications that require seamless and secure\n" "communication over HTTP." msgstr "" -#: gnu/packages/networking.scm:3358 +#: gnu/packages/networking.scm:3396 msgid "" "RESTinio is a header-only C++14 library that gives you an embedded\n" "HTTP/Websocket server. It is based on standalone version of ASIO\n" "and targeted primarily for asynchronous processing of HTTP-requests." msgstr "" -#: gnu/packages/networking.scm:3446 +#: gnu/packages/networking.scm:3487 msgid "" "OpenDHT provides an easy to use distributed in-memory data\n" "store. Every node in the network can read and write values to the store.\n" @@ -12661,20 +12797,20 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/networking.scm:3490 +#: gnu/packages/networking.scm:3531 msgid "" "FRRouting (FRR) is an IP routing protocol suite which includes\n" "protocol daemons for BGP, IS-IS, LDP, OSPF, PIM, and RIP." msgstr "" -#: gnu/packages/networking.scm:3520 +#: gnu/packages/networking.scm:3561 msgid "" "BIRD is an Internet routing daemon with full support for all\n" "the major routing protocols. It allows redistribution between protocols with a\n" "powerful route filtering syntax and an easy-to-use configuration interface." msgstr "" -#: gnu/packages/networking.scm:3568 +#: gnu/packages/networking.scm:3609 msgid "" "iwd is a wireless daemon for Linux that aims to replace WPA\n" "Supplicant. It optimizes resource utilization by not depending on any external\n" @@ -12682,21 +12818,21 @@ msgid "" "maximum extent possible." msgstr "" -#: gnu/packages/networking.scm:3595 +#: gnu/packages/networking.scm:3636 msgid "" "libyang is a YANG data modelling language parser and toolkit\n" "written (and providing API) in C. Current implementation covers YANG 1.0 (RFC\n" "6020) as well as YANG 1.1 (RFC 7950)." msgstr "" -#: gnu/packages/networking.scm:3629 +#: gnu/packages/networking.scm:3670 msgid "" "This package provides a control tool for the\n" "B.A.T.M.A.N. mesh networking routing protocol provided by the Linux kernel\n" "module @code{batman-adv}, for Layer 2." msgstr "" -#: gnu/packages/networking.scm:3662 +#: gnu/packages/networking.scm:3703 msgid "" "PageKite implements a tunneled reverse proxy which makes it easy to make\n" "a service (such as an HTTP or SSH server) on localhost visible to the wider\n" @@ -12704,7 +12840,7 @@ msgid "" "service is available at @url{https://pagekite.net/}, or you can run your own." msgstr "" -#: gnu/packages/networking.scm:3706 +#: gnu/packages/networking.scm:3747 msgid "" "ipcalc takes an IP address and netmask and calculates the\n" "resulting broadcast, network, Cisco wildcard mask, and host range. By giving\n" @@ -12713,7 +12849,7 @@ msgid "" "easy-to-understand binary values." msgstr "" -#: gnu/packages/networking.scm:3745 +#: gnu/packages/networking.scm:3786 msgid "" "Tunctl is used to set up and maintain persistent TUN/TAP\n" "network interfaces, enabling user applications to simulate network traffic.\n" @@ -12721,13 +12857,13 @@ msgid "" "simulation, and a number of other applications." msgstr "" -#: gnu/packages/networking.scm:3765 +#: gnu/packages/networking.scm:3806 msgid "" "Tool to send a magic packet to wake another host on the\n" "network. This must be enabled on the target host, usually in the BIOS." msgstr "" -#: gnu/packages/networking.scm:3802 +#: gnu/packages/networking.scm:3843 msgid "" "This package provides a modern, but Linux-specific\n" "implementation of the @command{traceroute} command that can be used to follow\n" @@ -12738,7 +12874,7 @@ msgid "" "some traces for unprivileged users." msgstr "" -#: gnu/packages/networking.scm:3836 +#: gnu/packages/networking.scm:3877 msgid "" "VDE is a set of programs to provide virtual software-defined\n" "Ethernet network interface controllers across multiple virtual or\n" @@ -12747,7 +12883,7 @@ msgid "" "cables." msgstr "" -#: gnu/packages/networking.scm:3878 +#: gnu/packages/networking.scm:3919 msgid "" "HAProxy is a free, very fast and reliable solution offering\n" "high availability, load balancing, and proxying for TCP and HTTP-based\n" @@ -12756,7 +12892,7 @@ msgid "" "thousands of connections is clearly realistic with today's hardware." msgstr "" -#: gnu/packages/networking.scm:3924 +#: gnu/packages/networking.scm:3965 msgid "" "The @dfn{Link Layer Discovery Protocol} (LLDP) is an industry standard\n" "protocol designed to supplant proprietary Link-Layer protocols such as EDP or\n" @@ -12765,7 +12901,7 @@ msgid "" "an implementation of LLDP. It also supports some proprietary protocols." msgstr "" -#: gnu/packages/networking.scm:3966 +#: gnu/packages/networking.scm:4007 msgid "" "Hashcash is a proof-of-work algorithm, which has been used\n" "as a denial-of-service countermeasure technique in a number of systems.\n" @@ -12778,14 +12914,14 @@ msgid "" "stamps." msgstr "" -#: gnu/packages/networking.scm:3995 +#: gnu/packages/networking.scm:4036 msgid "" "This package provides the NBD (Network Block Devices)\n" "client and server. It allows you to use remote block devices over a TCP/IP\n" "network." msgstr "" -#: gnu/packages/networking.scm:4062 +#: gnu/packages/networking.scm:4103 msgid "" "Yggdrasil is an early-stage implementation of a fully end-to-end encrypted\n" "IPv6 network. It is lightweight, self-arranging, supported on multiple\n" @@ -12794,7 +12930,7 @@ msgid "" "IPv6 Internet connectivity - it also works over IPv4." msgstr "" -#: gnu/packages/networking.scm:4106 +#: gnu/packages/networking.scm:4147 msgid "" "Netdiscover is a network address discovery tool developed\n" "mainly for wireless networks without a @acronym{DHCP} server. It also works\n" @@ -12802,7 +12938,7 @@ msgid "" "@acronym{ARP} requests and sniff for replies." msgstr "" -#: gnu/packages/networking.scm:4138 +#: gnu/packages/networking.scm:4179 msgid "" "PuTTY is a graphical text terminal client. It supports\n" "@acronym{SSH, Secure SHell}, telnet, and raw socket connections with good\n" @@ -12915,14 +13051,14 @@ msgid "" "by using the poppler rendering engine." msgstr "" -#: gnu/packages/pdf.scm:654 +#: gnu/packages/pdf.scm:653 msgid "" "Zathura is a customizable document viewer. It provides a\n" "minimalistic interface and an interface that mainly focuses on keyboard\n" "interaction." msgstr "" -#: gnu/packages/pdf.scm:697 +#: gnu/packages/pdf.scm:696 msgid "" "PoDoFo is a C++ library and set of command-line tools to work with the\n" "PDF file format. It can parse PDF files and load them into memory, and makes\n" @@ -12931,7 +13067,7 @@ msgid "" "extracting content or merging files." msgstr "" -#: gnu/packages/pdf.scm:764 +#: gnu/packages/pdf.scm:763 msgid "" "MuPDF is a C library that implements a PDF and XPS parsing and\n" "rendering engine. It is used primarily to render pages into bitmaps,\n" @@ -12951,7 +13087,7 @@ msgstr "" "d'outils en ligne de commande pour le rendu par lots (@command{pdfdraw}),\n" "la réécriture de fichiers (pdfclean) et l'analyse de structure (@command{pdfshow})." -#: gnu/packages/pdf.scm:811 +#: gnu/packages/pdf.scm:810 msgid "" "QPDF is a command-line program that does structural, content-preserving\n" "transformations on PDF files. It could have been called something like\n" @@ -12960,7 +13096,7 @@ msgid "" "program capable of converting PDF into other formats." msgstr "" -#: gnu/packages/pdf.scm:855 +#: gnu/packages/pdf.scm:854 msgid "" "@command{qpdfview} is a document viewer for PDF, PS and DJVU\n" "files. It uses the Qt toolkit and features persistent per-file settings,\n" @@ -12968,13 +13104,13 @@ msgid "" "SyncTeX support, and rudimentary support for annotations and forms." msgstr "" -#: gnu/packages/pdf.scm:881 +#: gnu/packages/pdf.scm:880 msgid "" "Xournal is an application for notetaking, sketching, keeping a journal\n" "using a stylus." msgstr "" -#: gnu/packages/pdf.scm:940 +#: gnu/packages/pdf.scm:939 msgid "" "Xournal++ is a hand note taking software written in\n" "C++ with the target of flexibility, functionality and speed. Stroke\n" @@ -13010,14 +13146,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1019 +#: gnu/packages/pdf.scm:1018 msgid "" "This is the ReportLab PDF Toolkit. It allows rapid creation\n" "of rich PDF documents, and also creation of charts in a variety of bitmap and\n" "vector formats." msgstr "" -#: gnu/packages/pdf.scm:1071 +#: gnu/packages/pdf.scm:1070 msgid "" "Impressive is a tool to display PDF files that provides visual effects\n" "such as smooth alpha-blended slide transitions. It provides additional tools\n" @@ -13025,26 +13161,26 @@ msgid "" "the PDF pages." msgstr "" -#: gnu/packages/pdf.scm:1094 +#: gnu/packages/pdf.scm:1093 msgid "" "img2pdf converts images to PDF via direct JPEG inclusion. That\n" "conversion is lossless: the image embedded in the PDF has the exact same color\n" "information for every pixel as the input." msgstr "" -#: gnu/packages/pdf.scm:1147 +#: gnu/packages/pdf.scm:1146 msgid "" "fbida contains a few applications for viewing and editing images on\n" "the framebuffer." msgstr "" -#: gnu/packages/pdf.scm:1171 +#: gnu/packages/pdf.scm:1170 msgid "" "@command{pdf2svg} is a simple command-line PDF to SVG\n" "converter using the Poppler and Cairo libraries." msgstr "" -#: gnu/packages/pdf.scm:1203 +#: gnu/packages/pdf.scm:1202 msgid "" "PyPDF2 is a pure Python PDF library capable of:\n" "\n" @@ -13064,7 +13200,7 @@ msgid "" "manage or manipulate PDFs." msgstr "" -#: gnu/packages/pdf.scm:1240 +#: gnu/packages/pdf.scm:1239 msgid "" "PyPDF2 is a pure Python PDF toolkit.\n" "\n" @@ -13072,7 +13208,7 @@ msgid "" "python-pypdf2 instead." msgstr "" -#: gnu/packages/pdf.scm:1284 +#: gnu/packages/pdf.scm:1283 msgid "" "PDF Arranger is a small application which allows one to merge or split\n" "PDF documents and rotate, crop and rearrange their pages using an interactive\n" @@ -13081,7 +13217,7 @@ msgid "" "PDF Arranger was formerly known as PDF-Shuffler." msgstr "" -#: gnu/packages/pdf.scm:1308 +#: gnu/packages/pdf.scm:1307 msgid "" "@command{pdfposter} can be used to create a large poster by\n" "building it from multiple pages and/or printing it on large media. It expects\n" @@ -13094,7 +13230,7 @@ msgid "" "PDF. Indeed @command{pdfposter} was inspired by @command{poster}." msgstr "" -#: gnu/packages/pdf.scm:1339 +#: gnu/packages/pdf.scm:1338 msgid "" "Pdfgrep searches in pdf files for strings matching a regular expression.\n" "Support some GNU grep options as file name output, page number output,\n" @@ -13102,7 +13238,7 @@ msgid "" "multiple files." msgstr "" -#: gnu/packages/pdf.scm:1387 +#: gnu/packages/pdf.scm:1386 msgid "" "pdfpc is a presentation viewer application which uses multi-monitor\n" "output to provide meta information to the speaker during the presentation. It\n" @@ -13112,13 +13248,13 @@ msgid "" "presentation. The input files processed by pdfpc are PDF documents." msgstr "" -#: gnu/packages/pdf.scm:1414 +#: gnu/packages/pdf.scm:1413 msgid "" "Paps reads a UTF-8 encoded file and generates a PostScript language\n" "rendering of the file through the Pango Cairo back end." msgstr "" -#: gnu/packages/pdf.scm:1444 +#: gnu/packages/pdf.scm:1443 msgid "" "Stapler is a pure Python alternative to PDFtk, a tool for\n" "manipulating PDF documents from the command line. It supports\n" @@ -13132,7 +13268,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1532 +#: gnu/packages/pdf.scm:1531 msgid "" "WeasyPrint helps web developers to create PDF documents. It\n" "turns simple HTML pages into gorgeous statistical reports, invoices, tickets,\n" @@ -16891,7 +17027,7 @@ msgid "" "and enhance them." msgstr "" -#: gnu/packages/photo.scm:601 +#: gnu/packages/photo.scm:603 msgid "" "Photoflare is a cross-platform image editor with an aim\n" "to balance between powerful features and a very friendly graphical user\n" @@ -16901,7 +17037,7 @@ msgid "" "such as Batch image processing." msgstr "" -#: gnu/packages/photo.scm:669 +#: gnu/packages/photo.scm:670 msgid "" "Entangle is an application which uses GTK and libgphoto2 to provide a\n" "graphical interface for tethered photography with digital cameras. It\n" @@ -16909,14 +17045,14 @@ msgid "" "off' shooting directly from the controlling computer." msgstr "" -#: gnu/packages/photo.scm:740 +#: gnu/packages/photo.scm:741 msgid "" "Hugin is an easy to use panoramic imaging toolchain with a graphical\n" "user interface. It can be used to assemble a mosaic of photographs into\n" "a complete panorama and stitch any series of overlapping pictures." msgstr "" -#: gnu/packages/photo.scm:794 +#: gnu/packages/photo.scm:795 msgid "" "RawTherapee is a raw image processing suite. It comprises a\n" "subset of image editing operations specifically aimed at non-destructive raw\n" @@ -16960,7 +17096,28 @@ msgid "" "`special effects' using the filter mechanism." msgstr "" -#: gnu/packages/scanner.scm:144 +#: gnu/packages/scanner.scm:83 +msgid "" +"This SANE backend lets you scan documents and images from scanners and\n" +"multi-function printers that speak eSCL (marketed as ``AirScan'') or\n" +"@acronym{WSD, Web Services for Devices} (or ``WS-Scan'').\n" +"\n" +"Both are vendor-neutral protocols that allow ``driverless'' scanning over IPv4\n" +"and IPv6 networks without the vendor-specific drivers that make up most of the\n" +"sane-backends collection. This is similar to how most contemporary printers\n" +"speak the universal @acronym{IPP, Internet Printing Protocol}.\n" +"\n" +"Only scanners that support eSCL will also work over USB. This requires a\n" +"suitable IPP-over-USB daemon like ipp-usb to be installed and configured.\n" +"\n" +"Any eSCL or WSD-capable scanner should just work. sane-airscan automatically\n" +"discovers and configures devices, including which protocol to use. It was\n" +"successfully tested with many devices from Brother, Canon, Dell, Kyocera,\n" +"Lexmark, Epson, HP, OKI, Panasonic, Pantum, Ricoh, Samsung, and Xerox, with both\n" +"WSD and eSCL." +msgstr "" + +#: gnu/packages/scanner.scm:200 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -16968,7 +17125,7 @@ msgid "" "package contains the library, but no drivers." msgstr "" -#: gnu/packages/scanner.scm:192 +#: gnu/packages/scanner.scm:248 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -16976,7 +17133,7 @@ msgid "" "package contains the library and drivers." msgstr "" -#: gnu/packages/scanner.scm:243 +#: gnu/packages/scanner.scm:299 msgid "" "Scanbd stands for scanner button daemon. It regularly polls\n" "scanners for pressed buttons, function knob changes, or other events such\n" @@ -16992,7 +17149,7 @@ msgid "" "provided the driver also exposes the buttons." msgstr "" -#: gnu/packages/scanner.scm:331 +#: gnu/packages/scanner.scm:387 msgid "" "XSane is a graphical interface for controlling a scanner and acquiring\n" "images from it. You can photocopy multi-page documents and save, fax, print,\n" @@ -17004,7 +17161,7 @@ msgid "" "back-end library, which supports almost all existing scanners." msgstr "" -#: gnu/packages/scheme.scm:225 +#: gnu/packages/scheme.scm:226 msgid "" "GNU/MIT Scheme is an implementation of the Scheme programming\n" "language. It provides an interpreter, a compiler and a debugger. It also\n" @@ -17014,7 +17171,7 @@ msgstr "" "Il fournit un interpréteur, un compilateur et un débogueur. Il intègre\n" "également un éditeur sur le modèle d'Emacs et une librairie d'exécution complète." -#: gnu/packages/scheme.scm:324 +#: gnu/packages/scheme.scm:325 msgid "" "Bigloo is a Scheme implementation devoted to one goal: enabling Scheme\n" "based programming style where C(++) is usually required. Bigloo attempts to\n" @@ -17034,7 +17191,7 @@ msgstr "" "Bigloo permet de connecter complètement des programmes Scheme et C\n" "et des programmes Scheme et Java." -#: gnu/packages/scheme.scm:377 +#: gnu/packages/scheme.scm:378 msgid "" "HOP is a multi-tier programming language for the Web 2.0 and the\n" "so-called diffuse Web. It is designed for programming interactive web\n" @@ -17043,7 +17200,7 @@ msgid "" "mashups, office (web agendas, mail clients, ...), etc." msgstr "" -#: gnu/packages/scheme.scm:400 +#: gnu/packages/scheme.scm:401 msgid "" "Scheme 48 is an implementation of Scheme based on a byte-code\n" "interpreter and is designed to be used as a testbed for experiments in\n" @@ -17053,7 +17210,7 @@ msgstr "" "destinée à être utilisée comme un banc d'essai pour des expérimentations\n" "portant sur des techniques d'implantation et comme un outil d'exposition." -#: gnu/packages/scheme.scm:430 +#: gnu/packages/scheme.scm:431 msgid "" "Gambit consists of two main programs: gsi, the Gambit Scheme\n" "interpreter, and gsc, the Gambit Scheme compiler. The interpreter contains\n" @@ -17064,7 +17221,7 @@ msgid "" "mixed." msgstr "" -#: gnu/packages/scheme.scm:464 +#: gnu/packages/scheme.scm:465 msgid "" "Chibi-Scheme is a very small library with no external dependencies\n" "intended for use as an extension and scripting language in C programs. In\n" @@ -17073,7 +17230,7 @@ msgid "" "threads." msgstr "" -#: gnu/packages/scheme.scm:512 +#: gnu/packages/scheme.scm:513 msgid "" "Structure and Interpretation of Computer Programs (SICP) is\n" "a textbook aiming to teach the principles of computer programming.\n" @@ -17083,19 +17240,19 @@ msgid "" "metalinguistic abstraction, recursion, interpreters, and modular programming." msgstr "" -#: gnu/packages/scheme.scm:556 +#: gnu/packages/scheme.scm:557 msgid "" "String pattern-matching library for scheme48 based on the SRE\n" "regular-expression notation." msgstr "" -#: gnu/packages/scheme.scm:589 +#: gnu/packages/scheme.scm:590 msgid "" "SLIB is a portable Scheme library providing compatibility and\n" "utility functions for all standard Scheme implementations." msgstr "" -#: gnu/packages/scheme.scm:643 +#: gnu/packages/scheme.scm:644 msgid "" "GNU SCM is an implementation of Scheme. This\n" "implementation includes Hobbit, a Scheme-to-C compiler, which can\n" @@ -17103,7 +17260,7 @@ msgid "" "linked with a SCM executable." msgstr "" -#: gnu/packages/scheme.scm:702 +#: gnu/packages/scheme.scm:703 msgid "" "TinyScheme is a light-weight Scheme interpreter that implements as large a\n" "subset of R5RS as was possible without getting very large and complicated.\n" @@ -17119,7 +17276,7 @@ msgid "" "small program, it is easy to comprehend, get to grips with, and use." msgstr "" -#: gnu/packages/scheme.scm:783 +#: gnu/packages/scheme.scm:784 msgid "" "Stalin is an aggressively optimizing whole-program compiler\n" "for Scheme that does polyvariant interprocedural flow analysis,\n" @@ -17131,7 +17288,7 @@ msgid "" "generation." msgstr "" -#: gnu/packages/scheme.scm:819 +#: gnu/packages/scheme.scm:820 msgid "" "Scheme 9 from Empty Space (S9fES) is a mature, portable, and\n" "comprehensible public-domain interpreter for R4RS Scheme offering:\n" @@ -17146,14 +17303,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/scheme.scm:877 +#: gnu/packages/scheme.scm:878 msgid "" "@code{femtolisp} is a scheme-like lisp implementation with a\n" "simple, elegant Scheme dialect. It is a lisp-1 with lexical scope.\n" "The core is 12 builtin special forms and 33 builtin functions." msgstr "" -#: gnu/packages/scheme.scm:940 +#: gnu/packages/scheme.scm:941 msgid "" "Gauche is a R7RS Scheme scripting engine aiming at being a\n" "handy tool that helps programmers and system administrators to write small to\n" @@ -17163,7 +17320,7 @@ msgid "" "and list gauche extension packages." msgstr "" -#: gnu/packages/scheme.scm:1038 +#: gnu/packages/scheme.scm:1039 msgid "" "Gerbil is an opinionated dialect of Scheme designed for Systems\n" "Programming, with a state of the art macro and module system on top of the Gambit\n" @@ -17300,7 +17457,7 @@ msgid "" "server and an IRC server." msgstr "" -#: gnu/packages/shells.scm:107 +#: gnu/packages/shells.scm:108 msgid "" "dash is a POSIX-compliant @command{/bin/sh} implementation that aims to be\n" "as small as possible, often without sacrificing speed. It is faster than the\n" @@ -17308,7 +17465,7 @@ msgid "" "direct descendant of NetBSD's Almquist Shell (@command{ash})." msgstr "" -#: gnu/packages/shells.scm:255 +#: gnu/packages/shells.scm:256 msgid "" "Fish (friendly interactive shell) is a shell focused on interactive use,\n" "discoverability, and friendliness. Fish has very user-friendly and powerful\n" @@ -17320,20 +17477,20 @@ msgid "" "and syntax highlighting." msgstr "" -#: gnu/packages/shells.scm:308 +#: gnu/packages/shells.scm:309 msgid "" "@code{fish-foreign-env} wraps bash script execution in a way\n" "that environment variables that are exported or modified get imported back\n" "into fish." msgstr "" -#: gnu/packages/shells.scm:344 +#: gnu/packages/shells.scm:345 msgid "" "This is a reimplementation by Byron Rakitzis of the Plan 9 shell. It\n" "has a small feature set similar to a traditional Bourne shell." msgstr "" -#: gnu/packages/shells.scm:377 +#: gnu/packages/shells.scm:378 msgid "" "Es is an extensible shell. The language was derived from the Plan 9\n" "shell, rc, and was influenced by functional programming languages, such as\n" @@ -17342,7 +17499,7 @@ msgid "" "written by Paul Haahr and Byron Rakitzis." msgstr "" -#: gnu/packages/shells.scm:455 +#: gnu/packages/shells.scm:456 msgid "" "Tcsh is an enhanced, but completely compatible version of the Berkeley\n" "UNIX C shell (csh). It is a command language interpreter usable both as an\n" @@ -17351,7 +17508,7 @@ msgid "" "history mechanism, job control and a C-like syntax." msgstr "" -#: gnu/packages/shells.scm:522 +#: gnu/packages/shells.scm:523 msgid "" "The Z shell (zsh) is a Unix shell that can be used\n" "as an interactive login shell and as a powerful command interpreter\n" @@ -17364,7 +17521,7 @@ msgstr "" "shell. Zsh peut être vu comme un Bourn shell étendu doté de nombreuses améliorations\n" "et incluant certaines fonctionnalités de bash, ksh et tcsh." -#: gnu/packages/shells.scm:572 +#: gnu/packages/shells.scm:573 msgid "" "Xonsh is a Python-ish, BASHwards-looking shell language and command\n" "prompt. The language is a superset of Python 3.4+ with additional shell\n" @@ -17373,7 +17530,7 @@ msgid "" "use of experts and novices alike." msgstr "" -#: gnu/packages/shells.scm:616 +#: gnu/packages/shells.scm:617 msgid "" "Scsh is a Unix shell embedded in Scheme. Scsh has two main\n" "components: a process notation for running programs and setting up pipelines\n" @@ -17381,7 +17538,7 @@ msgid "" "operating system." msgstr "" -#: gnu/packages/shells.scm:658 +#: gnu/packages/shells.scm:659 msgid "" "Linenoise is a minimal, zero-config, readline replacement.\n" "Its features include:\n" @@ -17395,7 +17552,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/shells.scm:722 +#: gnu/packages/shells.scm:723 msgid "" "S is a new shell that aims to be extremely simple. It does not\n" "implement the POSIX shell standard.\n" @@ -17409,19 +17566,19 @@ msgid "" "A @code{andglob} program is also provided along with s." msgstr "" -#: gnu/packages/shells.scm:753 +#: gnu/packages/shells.scm:754 msgid "" "Oksh is a port of the OpenBSD Korn Shell.\n" "The OpenBSD Korn Shell is a cleaned up and enhanced ksh." msgstr "" -#: gnu/packages/shells.scm:783 +#: gnu/packages/shells.scm:784 msgid "" "loksh is a Linux port of OpenBSD's @command{ksh}. It is a small,\n" "interactive POSIX shell targeted at resource-constrained systems." msgstr "" -#: gnu/packages/shells.scm:821 +#: gnu/packages/shells.scm:822 msgid "" "mksh is an actively developed free implementation of the\n" "Korn Shell programming language and a successor to the Public Domain Korn\n" @@ -17453,7 +17610,7 @@ msgid "" "files and text." msgstr "" -#: gnu/packages/shells.scm:1006 +#: gnu/packages/shells.scm:1005 msgid "" "Nu draws inspiration from projects like PowerShell, functional\n" "programming languages, and modern CLI tools. Rather than thinking of files\n" @@ -17464,7 +17621,7 @@ msgid "" "of commands called a ``pipeline''." msgstr "" -#: gnu/packages/shells.scm:1037 +#: gnu/packages/shells.scm:1036 msgid "" "This package is a library for ANSI terminal colors and styles (bold,\n" "underline)." @@ -17732,19 +17889,19 @@ msgid "" "your calls and messages." msgstr "" -#: gnu/packages/telephony.scm:874 +#: gnu/packages/telephony.scm:869 msgid "" "PJProject provides an implementation of the Session\n" "Initiation Protocol (SIP) and a multimedia framework." msgstr "" -#: gnu/packages/telephony.scm:916 +#: gnu/packages/telephony.scm:911 msgid "" "A collection of libraries and header files for implementing\n" "telephony functionality into custom Telegram clients." msgstr "" -#: gnu/packages/tex.scm:532 +#: gnu/packages/tex.scm:543 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -17754,20 +17911,20 @@ msgid "" "This package contains the binaries." msgstr "" -#: gnu/packages/tex.scm:571 +#: gnu/packages/tex.scm:582 msgid "" "kpathsea is a library, whose purpose is to return a filename\n" "from a list of user-specified directories similar to how shells look up\n" "executables. It is maintained as a part of TeX Live." msgstr "" -#: gnu/packages/tex.scm:591 +#: gnu/packages/tex.scm:602 msgid "" "This package provides the docstrip utility to strip\n" "documentation from TeX files. It is part of the LaTeX base." msgstr "" -#: gnu/packages/tex.scm:606 +#: gnu/packages/tex.scm:617 msgid "" "This bundle provides generic access to Unicode Consortium\n" "data for TeX use. It contains a set of text files provided by the Unicode\n" @@ -17780,7 +17937,7 @@ msgid "" "out to date by @code{unicode-letters.tex}." msgstr "" -#: gnu/packages/tex.scm:638 +#: gnu/packages/tex.scm:649 msgid "" "This package includes Knuth's original @file{hyphen.tex},\n" "@file{zerohyph.tex} to disable hyphenation, @file{language.us} which starts\n" @@ -17788,7 +17945,7 @@ msgid "" "default versions of those), etc." msgstr "" -#: gnu/packages/tex.scm:659 +#: gnu/packages/tex.scm:670 msgid "" "This package provides files needed for converting DVI files\n" "to PostScript." @@ -17796,7 +17953,7 @@ msgstr "" "Ce paquet fournit des outils requis pour convertir des fichiers\n" "DVI en PostScript." -#: gnu/packages/tex.scm:673 +#: gnu/packages/tex.scm:684 msgid "" "This bundle provides a collection of model \".ini\" files\n" "for creating TeX formats. These files are commonly used to introduced\n" @@ -17805,13 +17962,13 @@ msgid "" "to adapt the plain e-TeX source file to work with XeTeX and LuaTeX." msgstr "" -#: gnu/packages/tex.scm:736 +#: gnu/packages/tex.scm:747 msgid "" "This package provides the Metafont base files needed to\n" "build fonts using the Metafont system." msgstr "" -#: gnu/packages/tex.scm:821 +#: gnu/packages/tex.scm:832 msgid "" "This package provides TeX macros for converting Adobe Font\n" "Metric files to TeX metric and virtual font format. Fontinst helps mainly\n" @@ -17821,7 +17978,7 @@ msgid "" "typesetting in these fonts." msgstr "" -#: gnu/packages/tex.scm:842 +#: gnu/packages/tex.scm:853 msgid "" "This is Fontname, a naming scheme for (the base part of)\n" "external TeX font filenames. This makes at most eight-character names\n" @@ -17829,7 +17986,7 @@ msgid "" "documents." msgstr "" -#: gnu/packages/tex.scm:915 +#: gnu/packages/tex.scm:926 msgid "" "This package provides the Computer Modern fonts by Donald\n" "Knuth. The Computer Modern font family is a large collection of text,\n" @@ -17837,7 +17994,7 @@ msgid "" "8A." msgstr "" -#: gnu/packages/tex.scm:946 +#: gnu/packages/tex.scm:957 msgid "" "The CM-Super family provides Adobe Type 1 fonts that replace\n" "the T1/TS1-encoded Computer Modern (EC/TC), T1/TS1-encoded Concrete,\n" @@ -17847,7 +18004,7 @@ msgid "" "originals." msgstr "" -#: gnu/packages/tex.scm:979 +#: gnu/packages/tex.scm:990 msgid "" "This package provides a drop-in replacements for the Courier\n" "font from Adobe's basic set." @@ -17855,7 +18012,7 @@ msgstr "" "Ce paquet fournit un remplaçant direct aux polices Courier de\n" "l'ensemble Adobe de base." -#: gnu/packages/tex.scm:1002 +#: gnu/packages/tex.scm:1013 msgid "" "The TeX-GYRE bundle consist of multiple font families:\n" "@itemize @bullet\n" @@ -17875,21 +18032,21 @@ msgid "" "support (for use with a variety of encodings) is provided." msgstr "" -#: gnu/packages/tex.scm:1041 +#: gnu/packages/tex.scm:1052 msgid "" "The Latin Modern fonts are derived from the famous Computer\n" "Modern fonts designed by Donald E. Knuth and described in Volume E of his\n" "Computers & Typesetting series." msgstr "" -#: gnu/packages/tex.scm:1106 +#: gnu/packages/tex.scm:1117 msgid "" "This is a collection of core TeX and METAFONT macro files\n" "from Donald Knuth, including the plain format, plain base, and the MF logo\n" "fonts." msgstr "" -#: gnu/packages/tex.scm:1181 +#: gnu/packages/tex.scm:1192 msgid "" "This is a collection of fonts for use with standard LaTeX\n" "packages and classes. It includes invisible fonts (for use with the slides\n" @@ -17897,14 +18054,14 @@ msgid "" "symbol fonts." msgstr "" -#: gnu/packages/tex.scm:1253 +#: gnu/packages/tex.scm:1264 msgid "" "This package provides LaTeX and font definition files to access the\n" "Knuthian mflogo fonts described in The Metafontbook and to typeset Metafont\n" "logos in LaTeX documents." msgstr "" -#: gnu/packages/tex.scm:1274 +#: gnu/packages/tex.scm:1285 msgid "" "These fonts were created in METAFONT by Knuth, for his own publications.\n" "At some stage, the letters P and S were added, so that the METAPOST logo could\n" @@ -17913,7 +18070,7 @@ msgid "" "Taco Hoekwater." msgstr "" -#: gnu/packages/tex.scm:1402 +#: gnu/packages/tex.scm:1415 gnu/packages/tex.scm:1579 msgid "" "This package provides an extended set of fonts for use in mathematics,\n" "including: extra mathematical symbols; blackboard bold letters (uppercase\n" @@ -17927,7 +18084,7 @@ msgid "" "details can be found in the documentation." msgstr "" -#: gnu/packages/tex.scm:1432 +#: gnu/packages/tex.scm:1609 msgid "" "Mkpattern is a general purpose program for the generation of\n" "hyphenation patterns, with definition of letter sets and template-like\n" @@ -17935,7 +18092,7 @@ msgid "" "output encodings, and features generation of clean UTF-8 patterns." msgstr "" -#: gnu/packages/tex.scm:1489 +#: gnu/packages/tex.scm:1666 msgid "" "This package provides an extended version of TeX (which is capable of\n" "running as if it were TeX unmodified). E-TeX has been specified by the LaTeX\n" @@ -17944,14 +18101,23 @@ msgid "" "incorporates the e-TeX extensions." msgstr "" -#: gnu/packages/tex.scm:1507 +#: gnu/packages/tex.scm:1684 msgid "" "This package contains files used to build the Plain TeX format, as\n" "described in the TeXbook, together with various supporting files (some also\n" "discussed in the book)." msgstr "" -#: gnu/packages/tex.scm:1533 +#: gnu/packages/tex.scm:1702 +msgid "" +"The package facilitates wrapping text to a specific character width, breaking\n" +"lines by words rather than, as done by TeX, by characters. The primary use for\n" +"these facilities is to aid the generation of messages sent to the log file or\n" +"console output to display messages to the user. Package authors may also find\n" +"this useful when writing out arbitary text to an external file." +msgstr "" + +#: gnu/packages/tex.scm:1730 msgid "" "This package provides a drop-in replacements for the Helvetica\n" "font from Adobe's basic set." @@ -17959,37 +18125,37 @@ msgstr "" "Ce paquet fournit un remplaçant direct aux polices Helvetica de\n" "l'ensemble Adobe de base." -#: gnu/packages/tex.scm:1546 +#: gnu/packages/tex.scm:1743 msgid "" "The package provides hyphenation patterns for the Afrikaans\n" "language." msgstr "Ce paquet fournit des modèles de séparation de mots pour l'afrikaans." -#: gnu/packages/tex.scm:1560 +#: gnu/packages/tex.scm:1757 msgid "" "The package provides hyphenation patterns for ancient\n" "Greek." msgstr "Ce paquet fournit des modèles de séparation de mots pour le grec ancien." -#: gnu/packages/tex.scm:1573 +#: gnu/packages/tex.scm:1770 msgid "" "The package provides hyphenation patterns for the Armenian\n" "language." msgstr "Ce paquet fournit des modèles de séparation de mots pour l'arménien." -#: gnu/packages/tex.scm:1587 +#: gnu/packages/tex.scm:1784 msgid "" "The package provides hyphenation patterns for the Basque\n" "language." msgstr "Ce paquet fournit des modèles de séparation de mots pour le basque." -#: gnu/packages/tex.scm:1601 +#: gnu/packages/tex.scm:1798 msgid "" "The package provides hyphenation patterns for the Belarusian\n" "language." msgstr "Ce paquet fournit des modèles de séparation de mots pour le biélorusse." -#: gnu/packages/tex.scm:1613 +#: gnu/packages/tex.scm:1810 msgid "" "The package provides hyphenation patterns for the Bulgarian\n" "language in T2A and UTF-8 encodings." @@ -17997,7 +18163,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le bulgare\n" "en encodages T2A et UTF-8." -#: gnu/packages/tex.scm:1627 +#: gnu/packages/tex.scm:1824 msgid "" "The package provides hyphenation patterns for Catalan in\n" "T1/EC and UTF-8 encodings." @@ -18005,7 +18171,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le catalan\n" "dans les encodages T1/EC et UTF-8." -#: gnu/packages/tex.scm:1640 +#: gnu/packages/tex.scm:1837 msgid "" "The package provides hyphenation patterns for unaccented\n" "Chinese pinyin T1/EC and UTF-8 encodings." @@ -18013,7 +18179,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le pinyin\n" "chinois sans accent en encodages T1/EC et UTF-8." -#: gnu/packages/tex.scm:1652 +#: gnu/packages/tex.scm:1849 msgid "" "The package provides hyphenation patterns for Church\n" "Slavonic in UTF-8 encoding." @@ -18021,7 +18187,7 @@ msgstr "" "Ce paquet fournit .des modèles de séparation de mots pour le slavon d'église\n" "en encodage UTF-8." -#: gnu/packages/tex.scm:1665 +#: gnu/packages/tex.scm:1862 msgid "" "The package provides hyphenation patterns for Coptic in\n" "UTF-8 encoding as well as in ASCII-based encoding for 8-bit engines." @@ -18029,7 +18195,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le copte\n" "en encodage UTF-8 et en encodage ASCII pour les moteur 8-bit." -#: gnu/packages/tex.scm:1678 +#: gnu/packages/tex.scm:1875 msgid "" "The package provides hyphenation patterns for Croatian in\n" "T1/EC and UTF-8 encodings." @@ -18037,7 +18203,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le croate\n" "en encodage T1/EC et UTF-8." -#: gnu/packages/tex.scm:1690 +#: gnu/packages/tex.scm:1887 msgid "" "The package provides hyphenation patterns for Czech in T1/EC\n" "and UTF-8 encodings." @@ -18045,7 +18211,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le tchèque en\n" "encodage T1/EC et UTF-8." -#: gnu/packages/tex.scm:1702 +#: gnu/packages/tex.scm:1899 msgid "" "The package provides hyphenation patterns for Danish in\n" "T1/EC and UTF-8 encodings." @@ -18053,7 +18219,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le danois en\n" "encodage T1/EC et UTF-8." -#: gnu/packages/tex.scm:1715 +#: gnu/packages/tex.scm:1912 msgid "" "The package provides hyphenation patterns for Dutch in T1/EC\n" "and UTF-8 encodings." @@ -18061,7 +18227,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le néerlandais en\n" "encodage T1/EC et UTF-8." -#: gnu/packages/tex.scm:1728 +#: gnu/packages/tex.scm:1925 msgid "" "The package provides additional hyphenation patterns for\n" "American and British English in ASCII encoding." @@ -18069,7 +18235,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour l'anglais\n" "américain et britannique en encodage ASCII." -#: gnu/packages/tex.scm:1742 +#: gnu/packages/tex.scm:1939 msgid "" "The package provides hyphenation patterns for Esperanto ISO\n" "Latin 3 and UTF-8 encodings." @@ -18077,7 +18243,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour l'espéranto en\n" "encodage ISO Latin 3 et UTF-8." -#: gnu/packages/tex.scm:1754 +#: gnu/packages/tex.scm:1951 msgid "" "The package provides hyphenation patterns for Estonian in\n" "T1/EC and UTF-8 encodings." @@ -18085,7 +18251,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour l’estonien en\n" "encodage T1/EC et UTF-8." -#: gnu/packages/tex.scm:1768 +#: gnu/packages/tex.scm:1965 msgid "" "The package provides hyphenation patterns for languages\n" "written using the Ethiopic script for Unicode engines. They are not supposed\n" @@ -18097,7 +18263,7 @@ msgstr "" "sensés être linguistiquement justes dans tous les cas et devraient, pour une bonne\n" "typographie, être remplacés par des fichiers spécifiques à chaque langue." -#: gnu/packages/tex.scm:1782 +#: gnu/packages/tex.scm:1979 msgid "" "The package provides hyphenation patterns for Finnish in\n" "T1/EC and UTF-8 encodings." @@ -18105,19 +18271,15 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le finnois en\n" "encodage T1/EC et UTF-8." -#: gnu/packages/tex.scm:1794 -#, fuzzy -#| msgid "" -#| "The package provides hyphenation patterns for Finnish in\n" -#| "T1/EC and UTF-8 encodings." +#: gnu/packages/tex.scm:1991 msgid "" "The package provides hyphenation patterns for Finnish for\n" "school in T1/EC and UTF-8 encodings." msgstr "" -"Ce paquet fournit des modèles de séparation de mots pour le finnois en\n" -"encodage T1/EC et UTF-8." +"Ce paquet fournit des modèles de séparation de mots pour le finnois à\n" +"l'école en encodage T1/EC et UTF-8." -#: gnu/packages/tex.scm:1806 +#: gnu/packages/tex.scm:2003 msgid "" "The package provides hyphenation patterns for French in\n" "T1/EC and UTF-8 encodings." @@ -18125,7 +18287,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le français en\n" "encodage T1/EC et UTF-8." -#: gnu/packages/tex.scm:1818 +#: gnu/packages/tex.scm:2015 msgid "" "The package provides hyphenation patterns for Friulan in\n" "ASCII encodings." @@ -18133,7 +18295,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le frioulan\n" "en encodage ASCII." -#: gnu/packages/tex.scm:1831 +#: gnu/packages/tex.scm:2028 msgid "" "The package provides hyphenation patterns for Galician in\n" "T1/EC and UTF-8 encodings." @@ -18141,7 +18303,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le galicien en\n" "encodage T1/EC et UTF-8." -#: gnu/packages/tex.scm:1843 +#: gnu/packages/tex.scm:2040 msgid "" "The package provides hyphenation patterns for Georgian in\n" "T8M, T8K, and UTF-8 encodings." @@ -18149,7 +18311,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le géorgien en\n" "encodage T8M, T8K et UTF-8." -#: gnu/packages/tex.scm:1861 +#: gnu/packages/tex.scm:2058 msgid "" "This package provides hyphenation patterns for German in\n" "T1/EC and UTF-8 encodings, for traditional and reformed spelling, including\n" @@ -18159,7 +18321,7 @@ msgstr "" "encodage T1/EC et UTF-8, pour l'orthographe traditionnelle et réformée,\n" "ce qui inclut de suisse allemand." -#: gnu/packages/tex.scm:1880 +#: gnu/packages/tex.scm:2077 msgid "" "This package provides hyphenation patterns for Modern Greek\n" "in monotonic and polytonic spelling in LGR and UTF-8 encodings." @@ -18167,7 +18329,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le grecque moderne en\n" "orthographe monotonique et polytonique en encodage LGR et UTF-8." -#: gnu/packages/tex.scm:1894 +#: gnu/packages/tex.scm:2091 msgid "" "This package provides hyphenation patterns for Hungarian in\n" "T1/EC and UTF-8 encodings." @@ -18175,7 +18337,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le hongrois\n" "en encodage T1/EC et UTF-8." -#: gnu/packages/tex.scm:1907 +#: gnu/packages/tex.scm:2104 msgid "" "This package provides hyphenation patterns for Icelandic in\n" "T1/EC and UTF-8 encodings." @@ -18183,7 +18345,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour l'islandais en\n" "encodage T1/EC et UTF-8." -#: gnu/packages/tex.scm:1930 +#: gnu/packages/tex.scm:2127 msgid "" "This package provides hyphenation patterns for Assamese,\n" "Bengali, Gujarati, Hindi, Kannada, Malayalam, Marathi, Oriya, Panjabi, Tamil\n" @@ -18193,7 +18355,7 @@ msgstr "" "le bengali, le gujarati, l'hindi, le kannada, le malayalam, le marathi, l'oriya,\n" "le penjabi, le tamil et le telugu en encodage UTF-8." -#: gnu/packages/tex.scm:1943 +#: gnu/packages/tex.scm:2140 msgid "" "This package provides hyphenation patterns for\n" "Indonesian (Bahasa Indonesia) in ASCII encoding. They are probably also\n" @@ -18203,7 +18365,7 @@ msgstr "" "l'indonésien (Bahasa Indonesia) en encodage ASCII. Ils sont probablement\n" "aussi utilisables pour le malais (Bahasa Melayu)." -#: gnu/packages/tex.scm:1956 +#: gnu/packages/tex.scm:2153 msgid "" "This package provides hyphenation patterns for Interlingua\n" "in ASCII encoding." @@ -18211,7 +18373,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour l'interlingua en\n" "encodage ASCII." -#: gnu/packages/tex.scm:1968 +#: gnu/packages/tex.scm:2165 msgid "" "This package provides hyphenation patterns for\n" "Irish (Gaeilge) in T1/EC and UTF-8 encodings." @@ -18219,7 +18381,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour\n" "l'irlandais (gaeilge) en encodage T1/EC et UTF-8." -#: gnu/packages/tex.scm:1981 +#: gnu/packages/tex.scm:2178 msgid "" "This package provides hyphenation patterns for Italian in\n" "ASCII encoding. Compliant with the Recommendation UNI 6461 on hyphenation\n" @@ -18231,7 +18393,7 @@ msgstr "" "publiée par l'institut de standardisation italien (Ente Nazionale di Unificazione\n" "UNI)." -#: gnu/packages/tex.scm:1995 +#: gnu/packages/tex.scm:2192 msgid "" "This package provides hyphenation patterns for\n" "Kurmanji (Northern Kurdish) as spoken in Turkey and by the Kurdish diaspora in\n" @@ -18241,7 +18403,7 @@ msgstr "" "le kurmandji (kurde du nord) parlé en Turquie et par la diaspora kurde en\n" "Europe, en encodage T1/EC et UTF-8." -#: gnu/packages/tex.scm:2011 +#: gnu/packages/tex.scm:2208 msgid "" "This package provides hyphenation patterns for Latin in\n" "T1/EC and UTF-8 encodings, mainly in modern spelling (u when u is needed and v\n" @@ -18265,7 +18427,7 @@ msgstr "" "Il fournit aussi les modèles de séparation de mots pour le latin liturgique en encodage\n" "T1/EC et UTF-8." -#: gnu/packages/tex.scm:2032 +#: gnu/packages/tex.scm:2229 msgid "" "This package provides hyphenation patterns for Latvian in\n" "L7X and UTF-8 encodings." @@ -18273,7 +18435,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le letton en\n" "encodage L7X et UTF-8." -#: gnu/packages/tex.scm:2045 +#: gnu/packages/tex.scm:2242 msgid "" "This package provides hyphenation patterns for Lithuanian in\n" "L7X and UTF-8 encodings." @@ -18281,15 +18443,15 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le lithuanien en\n" "encodage L7X et UTF-8." -#: gnu/packages/tex.scm:2060 +#: gnu/packages/tex.scm:2257 #, fuzzy #| msgid "" #| "The package provides hyphenation patterns for ancient\n" #| "Greek." -msgid "This package provides hypenation patterns for Macedonian." +msgid "This package provides hyphenation patterns for Macedonian." msgstr "Ce paquet fournit des modèles de séparation de mots pour le grec ancien." -#: gnu/packages/tex.scm:2073 +#: gnu/packages/tex.scm:2270 msgid "" "This package provides hyphenation patterns for Mongolian in\n" "T2A, LMC and UTF-8 encodings." @@ -18297,7 +18459,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le mongole en\n" "encodage T2A, LMC et UTF-8." -#: gnu/packages/tex.scm:2088 +#: gnu/packages/tex.scm:2285 msgid "" "This package provides hyphenation patterns for Norwegian\n" "Bokmal and Nynorsk in T1/EC and UTF-8 encodings." @@ -18305,7 +18467,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le norvégien\n" "bokmal et nynorsk en encodage T1/EC et UTF-8." -#: gnu/packages/tex.scm:2102 +#: gnu/packages/tex.scm:2299 msgid "" "This package provides hyphenation patterns for Occitan in\n" "T1/EC and UTF-8 encodings. They are supposed to be valid for all the Occitan\n" @@ -18319,7 +18481,7 @@ msgstr "" "au sud-ouest des Alpes italiennes, en prenant en compte la moitié sud\n" "de l'hexagone." -#: gnu/packages/tex.scm:2117 +#: gnu/packages/tex.scm:2314 msgid "" "This package provides hyphenation patterns for Panjabi in\n" "T1/EC encoding." @@ -18327,7 +18489,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le pendjabi\n" "en encodage T1/EC." -#: gnu/packages/tex.scm:2130 +#: gnu/packages/tex.scm:2327 msgid "" "This package provides hyphenation patterns for Piedmontese\n" "in ASCII encoding. Compliant with 'Gramatica dla lengua piemonteisa' by\n" @@ -18337,7 +18499,7 @@ msgstr "" "encodage ASCII. Il respecte le « Gramatica dla lengue piemonteisa » par\n" "Camillo Brero." -#: gnu/packages/tex.scm:2143 +#: gnu/packages/tex.scm:2340 msgid "" "This package provides hyphenation patterns for Polish in QX\n" "and UTF-8 encodings." @@ -18345,7 +18507,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le polonais en\n" "encodage QX et UTF-8." -#: gnu/packages/tex.scm:2156 +#: gnu/packages/tex.scm:2353 msgid "" "This package provides hyphenation patterns for Portuguese in\n" "T1/EC and UTF-8 encodings." @@ -18353,7 +18515,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le portugais en\n" "encodage T1/EC et UTF-8." -#: gnu/packages/tex.scm:2168 +#: gnu/packages/tex.scm:2365 msgid "" "This package provides hyphenation patterns for Romanian in\n" "T1/EC and UTF-8 encodings." @@ -18361,7 +18523,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le roumain en\n" "encodage T1/EC et UTF-8." -#: gnu/packages/tex.scm:2181 +#: gnu/packages/tex.scm:2378 msgid "" "This package provides hyphenation patterns for Romansh in\n" "ASCII encodings. They are supposed to comply with the rules indicated by the\n" @@ -18371,7 +18533,7 @@ msgstr "" "encodage ASCII. Ils sont censés être conformes aux règles recommandées par la\n" "Lia Rumantscha (société de la langue romanche)." -#: gnu/packages/tex.scm:2194 +#: gnu/packages/tex.scm:2391 msgid "" "This package provides hyphenation patterns for Russian in\n" "T2A and UTF-8 encodings." @@ -18379,7 +18541,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le russe en\n" "encodage T2A et UTF-8." -#: gnu/packages/tex.scm:2207 +#: gnu/packages/tex.scm:2404 msgid "" "This package provides hyphenation patterns for Sanskrit and\n" "Prakrit in longdesc transliteration, and in Devanagari, Bengali, Kannada,\n" @@ -18389,7 +18551,7 @@ msgstr "" "le prakrit en translittération longdesc, et en dévanagari, en bengali, en kannada,\n" "en longdesc malais et en écriture telugu pour les moteurs Unicode." -#: gnu/packages/tex.scm:2224 +#: gnu/packages/tex.scm:2421 msgid "" "This package provides hyphenation patterns for Serbian in\n" "T1/EC, T2A and UTF-8 encodings." @@ -18397,7 +18559,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le serbe en\n" "encodage T1/EC, T2A et UTF-8." -#: gnu/packages/tex.scm:2237 +#: gnu/packages/tex.scm:2434 msgid "" "This package provides hyphenation patterns for Slovak in\n" "T1/EC and UTF-8 encodings." @@ -18405,7 +18567,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le slovaque en\n" "encodage T1/EC et UTF-8." -#: gnu/packages/tex.scm:2249 +#: gnu/packages/tex.scm:2446 msgid "" "This package provides hyphenation patterns for Slovenian in\n" "T1/EC and UTF-8 encodings." @@ -18413,7 +18575,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le slovénien en\n" "encodage T1/EC et UTF-8." -#: gnu/packages/tex.scm:2265 +#: gnu/packages/tex.scm:2462 msgid "" "The package provides hyphenation patterns for Spanish in\n" "T1/EC and UTF-8 encodings." @@ -18421,7 +18583,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour l'espagnol en\n" "encodage T1/EC et UTF-8." -#: gnu/packages/tex.scm:2277 +#: gnu/packages/tex.scm:2474 msgid "" "This package provides hyphenation patterns for Swedish in\n" "T1/EC and UTF-8 encodings." @@ -18429,7 +18591,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le suédois en\n" "encodage T1/EC et UTF-8." -#: gnu/packages/tex.scm:2289 +#: gnu/packages/tex.scm:2486 msgid "" "This package provides hyphenation patterns for Thai in LTH\n" "and UTF-8 encodings." @@ -18437,7 +18599,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le thaï en\n" "encodage LTH et UTF-8." -#: gnu/packages/tex.scm:2302 +#: gnu/packages/tex.scm:2499 msgid "" "The package provides hyphenation patterns for Turkish in\n" "T1/EC and UTF-8 encodings. The patterns for Turkish were first produced for\n" @@ -18453,7 +18615,7 @@ msgstr "" "en encodage EC, donc la prise en charge pour le turque ottoman a été retiré pour\n" "garder la compatibilité avec les moteurs 8-bit." -#: gnu/packages/tex.scm:2319 +#: gnu/packages/tex.scm:2516 msgid "" "The package provides hyphenation patterns for Turkmen in\n" "T1/EC and UTF-8 encodings." @@ -18461,7 +18623,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le turkmène en\n" "encodage T1/EC et UTF-8." -#: gnu/packages/tex.scm:2331 +#: gnu/packages/tex.scm:2528 msgid "" "This package provides hyphenation patterns for Ukrainian in\n" "T2A and UTF-8 encodings." @@ -18469,7 +18631,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour l'ukrainien en\n" "encodage T2A et UTF-8." -#: gnu/packages/tex.scm:2344 +#: gnu/packages/tex.scm:2541 msgid "" "This package provides hyphenation patterns for Upper Sorbian\n" "in T1/EC and UTF-8 encodings." @@ -18477,7 +18639,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le haut sorabe en\n" "encodage T1/EC et UTF-8." -#: gnu/packages/tex.scm:2356 +#: gnu/packages/tex.scm:2553 msgid "" "This package provides hyphenation patterns for Welsh in\n" "T1/EC and UTF-8 encodings." @@ -18485,7 +18647,7 @@ msgstr "" "Ce paquet fournit des modèles de séparation de mots pour le galois en\n" "encodage T1/EC et UTF-8." -#: gnu/packages/tex.scm:2477 +#: gnu/packages/tex.scm:2674 msgid "" "Modern native UTF-8 engines such as XeTeX and LuaTeX need\n" "hyphenation patterns in UTF-8 format, whereas older systems require\n" @@ -18498,7 +18660,7 @@ msgid "" "converters, will completely supplant the older patterns." msgstr "" -#: gnu/packages/tex.scm:2521 +#: gnu/packages/tex.scm:2718 msgid "" "The package provides experimental hyphenation patterns for\n" "the German language, covering both traditional and reformed orthography. The\n" @@ -18506,21 +18668,29 @@ msgid "" "bundle." msgstr "" -#: gnu/packages/tex.scm:2542 +#: gnu/packages/tex.scm:2739 msgid "" "The package provides a range of hyphenation patterns for\n" "Ukrainian, depending on the encoding of the output font including the standard\n" "T2A." msgstr "" -#: gnu/packages/tex.scm:2577 +#: gnu/packages/tex.scm:2774 msgid "" "The package provides a collection of Russian hyphenation\n" "patterns supporting a number of Cyrillic font encodings, including T2,\n" "UCY (Omega Unicode Cyrillic), LCY, LWN (OT2), and koi8-r." msgstr "" -#: gnu/packages/tex.scm:2620 +#: gnu/packages/tex.scm:2792 +msgid "" +"This package deals with input encodings. It provides a wider range of input\n" +"encodings using standard mappings, than does inputenc; it also covers nearly all\n" +"slots. In this way, it serves as more uptodate replacement for package\n" +"inputenc." +msgstr "" + +#: gnu/packages/tex.scm:2853 msgid "" "Kpathsea is a library and utility programs which provide\n" "path searching facilities for TeX file types, including the self-locating\n" @@ -18528,13 +18698,27 @@ msgid "" "mechanism. This package provides supporting files." msgstr "" -#: gnu/packages/tex.scm:2636 +#: gnu/packages/tex.scm:2876 +msgid "" +"The family contains text fonts in roman, sans-serif and monospaced\n" +"shapes, with true small caps and old-style numbers; the package offers full\n" +"support of the textcomp package. The mathematics fonts include all the AMS\n" +"fonts, in both normal and bold weights. Each of the font types is available\n" +"in two main versions: default and light. Each version is available in four\n" +"variants: default; oldstyle numbers; oldstyle numbers with old ligatures such\n" +"as ct and st, and long-tailed capital Q; and veryoldstyle with long s. Other\n" +"variants include small caps as default or large small caps, and for\n" +"mathematics both upright and slanted shapes for Greek letters, as well as\n" +"default and narrow versions of multiple integrals." +msgstr "" + +#: gnu/packages/tex.scm:2898 msgid "" "The package provides configuration files for LaTeX-related\n" "formats." msgstr "Ce paquet fournit des fichiers de configuration pour les formats liés à LaTeX." -#: gnu/packages/tex.scm:2867 +#: gnu/packages/tex.scm:3127 msgid "" "This bundle comprises the source of LaTeX itself, together with several\n" "packages which are considered \"part of the kernel\". This bundle, together\n" @@ -18542,7 +18726,7 @@ msgid "" "contain." msgstr "" -#: gnu/packages/tex.scm:2885 +#: gnu/packages/tex.scm:3145 msgid "" "This LaTeX packages provides two hooks for @code{\\end@{document@}}\n" "that are executed after the hook of @code{\\AtEndDocument}:\n" @@ -18552,7 +18736,7 @@ msgid "" "of the @file{.aux} file." msgstr "" -#: gnu/packages/tex.scm:2905 +#: gnu/packages/tex.scm:3165 #, fuzzy #| msgid "This package provides tools for manipulating ext2/ext3/ext4 file systems." msgid "" @@ -18560,7 +18744,7 @@ msgid "" "@file{.aux} files." msgstr "Ce paquet fournit des outils pour manipuler les systèmes de fichiers ext2/ext3/ext4." -#: gnu/packages/tex.scm:2921 +#: gnu/packages/tex.scm:3181 msgid "" "The package adds support for EPS files in the @code{graphicx} package\n" "when running under pdfTeX. If an EPS graphic is detected, the package\n" @@ -18568,7 +18752,7 @@ msgid "" "@command{epstopdf}." msgstr "" -#: gnu/packages/tex.scm:2943 +#: gnu/packages/tex.scm:3203 msgid "" "LaTeX2e's @code{filecontents} and @code{filecontents*} environments\n" "enable a LaTeX source file to generate external files as it runs through\n" @@ -18579,7 +18763,7 @@ msgid "" "@code{filecontents*} anywhere." msgstr "" -#: gnu/packages/tex.scm:2964 +#: gnu/packages/tex.scm:3224 msgid "" "This package provides the original (and now obsolescent) graphics\n" "inclusion macros for use with dvips, still widely used by Plain TeX users (in\n" @@ -18589,7 +18773,7 @@ msgid "" "users, via its Plain TeX version.)" msgstr "" -#: gnu/packages/tex.scm:2986 +#: gnu/packages/tex.scm:3246 msgid "" "This package provides tools for the flexible handling of verbatim text\n" "including: verbatim commands in footnotes; a variety of verbatim environments\n" @@ -18599,7 +18783,7 @@ msgid "" "verbatim source)." msgstr "" -#: gnu/packages/tex.scm:3008 +#: gnu/packages/tex.scm:3268 msgid "" "This bundle is a combined distribution consisting of @file{dvips.def},\n" "@file{pdftex.def}, @file{luatex.def}, @file{xetex.def}, @file{dvipdfmx.def},\n" @@ -18607,13 +18791,19 @@ msgid "" "packages." msgstr "" -#: gnu/packages/tex.scm:3026 +#: gnu/packages/tex.scm:3286 msgid "" "This bundle includes @file{color.cfg} and @file{graphics.cfg} files that\n" "set default \"driver\" options for the color and graphics packages." msgstr "" -#: gnu/packages/tex.scm:3048 +#: gnu/packages/tex.scm:3303 +msgid "" +"The package provides Greek LICR macro definitions and encoding definition files\n" +"for Greek text font encodings for use with fontenc." +msgstr "" + +#: gnu/packages/tex.scm:3325 msgid "" "This is a collection of LaTeX packages for producing color, including\n" "graphics (e.g. PostScript) files, and rotation and scaling of text in LaTeX\n" @@ -18621,13 +18811,13 @@ msgid "" "keyval, and lscape." msgstr "" -#: gnu/packages/tex.scm:3066 +#: gnu/packages/tex.scm:3343 msgid "" "This package provides the code for the @code{color} option that is\n" "used by @code{hyperref} and @code{bookmark}." msgstr "" -#: gnu/packages/tex.scm:3098 +#: gnu/packages/tex.scm:3375 msgid "" "The package starts from the basic facilities of the colorcolor package,\n" "and provides easy driver-independent access to several kinds of color tints,\n" @@ -18638,7 +18828,7 @@ msgid "" "tables." msgstr "" -#: gnu/packages/tex.scm:3171 +#: gnu/packages/tex.scm:3448 msgid "" "The package provides an implementation of a parser for\n" "documents matching the XML 1.0 and XML Namespace Recommendations. Element and\n" @@ -18646,7 +18836,7 @@ msgid "" "XML, using UTF-8 or a suitable 8-bit encoding." msgstr "" -#: gnu/packages/tex.scm:3222 +#: gnu/packages/tex.scm:3499 msgid "" "The @code{hyperref} package is used to handle cross-referencing commands\n" "in LaTeX to produce hypertext links in the document. The package provides\n" @@ -18658,20 +18848,20 @@ msgid "" "@code{nameref} packages, which make use of the facilities of @code{hyperref}." msgstr "" -#: gnu/packages/tex.scm:3262 +#: gnu/packages/tex.scm:3539 msgid "" "The bundle comprises various LaTeX packages, providing among others:\n" "better accessibility support for PDF files; extensible chemists reaction\n" "arrows; record information about document class(es) used; and many more." msgstr "" -#: gnu/packages/tex.scm:3285 +#: gnu/packages/tex.scm:3562 msgid "" "This package provides additional rerun warnings if some auxiliary\n" "files have changed. It is based on MD5 checksum, provided by pdfTeX." msgstr "" -#: gnu/packages/tex.scm:3319 +#: gnu/packages/tex.scm:3596 msgid "" "This package is a collection of (variously) simple tools provided as\n" "part of the LaTeX required tools distribution, comprising the following\n" @@ -18681,7 +18871,7 @@ msgid "" "xr, and xspace." msgstr "" -#: gnu/packages/tex.scm:3338 +#: gnu/packages/tex.scm:3615 msgid "" "The command @code{\\url} is a form of verbatim command that\n" "allows linebreaks at certain characters or combinations of characters, accepts\n" @@ -18693,14 +18883,14 @@ msgid "" "of file names." msgstr "" -#: gnu/packages/tex.scm:3364 +#: gnu/packages/tex.scm:3641 msgid "" "This package provides font maps that were originally part of\n" "the now obsolete teTeX distributions but are still used at the core of the TeX\n" "Live distribution." msgstr "" -#: gnu/packages/tex.scm:3391 +#: gnu/packages/tex.scm:3668 msgid "" "The l3kernel bundle provides an implementation of the LaTeX3\n" "programmers’ interface, as a set of packages that run under LaTeX 2e. The\n" @@ -18709,7 +18899,7 @@ msgid "" "that the LaTeX3 conventions can be used with regular LaTeX 2e packages." msgstr "" -#: gnu/packages/tex.scm:3420 +#: gnu/packages/tex.scm:3697 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" @@ -18718,7 +18908,7 @@ msgid "" "an independent schedule." msgstr "" -#: gnu/packages/tex.scm:3484 +#: gnu/packages/tex.scm:3761 msgid "" "This bundle holds prototype implementations of concepts for a LaTeX\n" "designer interface, to be used with the experimental LaTeX kernel as\n" @@ -18735,14 +18925,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:3511 +#: gnu/packages/tex.scm:3788 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" "here are defined for the dvips engine only." msgstr "" -#: gnu/packages/tex.scm:3539 +#: gnu/packages/tex.scm:3816 msgid "" "Fontspec is a package for XeLaTeX and LuaLaTeX. It provides an\n" "automatic and unified interface to feature-rich AAT and OpenType fonts through\n" @@ -18750,7 +18940,7 @@ msgid "" "the l3kernel and xparse bundles from the LaTeX 3 development team." msgstr "" -#: gnu/packages/tex.scm:3569 +#: gnu/packages/tex.scm:3846 msgid "" "The original grffile package extended the file name processing of the\n" "@code{graphics} package to support a larger range of file names. The base\n" @@ -18758,13 +18948,13 @@ msgid "" "is a stub that just loads @code{graphicx}." msgstr "" -#: gnu/packages/tex.scm:3610 +#: gnu/packages/tex.scm:3887 msgid "" "This package provides @code{\\StringEncodingConvert} for converting a\n" "string between different encodings. Both LaTeX and plain-TeX are supported." msgstr "" -#: gnu/packages/tex.scm:3653 +#: gnu/packages/tex.scm:3930 msgid "" "The l3build module is designed to support the development of\n" "high-quality LaTeX code by providing: a unit testing system, automated\n" @@ -18773,14 +18963,20 @@ msgid "" "@code{.tex} file which provides the testing environment." msgstr "" -#: gnu/packages/tex.scm:3690 +#: gnu/packages/tex.scm:3953 msgid "" "Lualibs is a collection of Lua modules useful for general programming.\n" "The bundle is based on Lua modules shipped with ConTeXt, and made available in\n" "this bundle for use independent of ConTeXt." msgstr "" -#: gnu/packages/tex.scm:3718 +#: gnu/packages/tex.scm:3972 +msgid "" +"This package provides a Lua module for processing application arguments\n" +"in the same way as BSD/GNU @code{getopt_long(3)} functions do." +msgstr "" + +#: gnu/packages/tex.scm:3999 msgid "" "Luaotfload is an adaptation of the ConTeXt font loading system for the\n" "Plain and LaTeX formats. It allows OpenType fonts to be loaded with font\n" @@ -18789,11 +18985,7 @@ msgid "" "loading fonts by their proper names instead of file names." msgstr "" -#: gnu/packages/tex.scm:3790 -msgid "This package is necessary to use LaTeX with the LuaTeX engine." -msgstr "" - -#: gnu/packages/tex.scm:3809 +#: gnu/packages/tex.scm:4025 msgid "" "This is the principal package in the AMS-LaTeX distribution. It adapts\n" "for use in LaTeX most of the mathematical features found in AMS-TeX; it is\n" @@ -18808,7 +19000,7 @@ msgid "" "definitions." msgstr "" -#: gnu/packages/tex.scm:3843 +#: gnu/packages/tex.scm:4059 msgid "" "This bundle contains three AMS classes: @code{amsartamsart} (for writing\n" "articles for the AMS), @code{amsbookamsbook} (for books) and\n" @@ -18817,7 +19009,7 @@ msgid "" "distribution." msgstr "" -#: gnu/packages/tex.scm:3890 +#: gnu/packages/tex.scm:4106 msgid "" "The package manages culturally-determined typographical (and other)\n" "rules, and hyphenation patterns for a wide range of languages. A document may\n" @@ -18828,7 +19020,7 @@ msgid "" "polyglossia package rather than Babel." msgstr "" -#: gnu/packages/tex.scm:3917 +#: gnu/packages/tex.scm:4133 msgid "" "This package provides the language definition file for support of\n" "English in @code{babel}. Care is taken to select British hyphenation patterns\n" @@ -18836,19 +19028,14 @@ msgid "" "for Canadian and USA text." msgstr "" -#: gnu/packages/tex.scm:3939 -#, fuzzy -#| msgid "" -#| "This package provides support for writing Nushell\n" -#| "tests." +#: gnu/packages/tex.scm:4173 msgid "" -"This package provides support for the French language for the\n" -"babel multilingual system." +"The package, formerly known as frenchb, establishes French conventions\n" +"in a document (or a subset of the conventions, if French is not the main\n" +"language of the document)." msgstr "" -"Ce paquet fournit la prise en charge de l'écriture de tests pour\n" -"Nushell." -#: gnu/packages/tex.scm:3959 +#: gnu/packages/tex.scm:4196 msgid "" "This package provides the language definition file for support of German\n" "in @code{babel}. It provides all the necessary macros, definitions and\n" @@ -18857,14 +19044,14 @@ msgid "" "Swiss varieties of German." msgstr "" -#: gnu/packages/tex.scm:3986 +#: gnu/packages/tex.scm:4223 msgid "" "This package provides the language definition file for\n" "support of Swedish in @code{babel}. It provides all the necessary macros,\n" "definitions and settings to typeset Swedish documents." msgstr "" -#: gnu/packages/tex.scm:4008 +#: gnu/packages/tex.scm:4245 msgid "" "This bundle of macros files provides macro support (including font\n" "encoding macros) for the use of Cyrillic characters in fonts encoded under the\n" @@ -18872,7 +19059,7 @@ msgid "" "language that is written in a Cyrillic alphabet." msgstr "" -#: gnu/packages/tex.scm:4126 +#: gnu/packages/tex.scm:4363 msgid "" "The PSNFSS collection includes a set of files that provide a complete\n" "working setup of the LaTeX font selection scheme (NFSS2) for use with common\n" @@ -18887,20 +19074,20 @@ msgid "" "part of the LaTeX required set of packages." msgstr "" -#: gnu/packages/tex.scm:4177 gnu/packages/tex.scm:4269 +#: gnu/packages/tex.scm:4414 gnu/packages/tex.scm:4506 msgid "" "This is a very limited subset of the TeX Live distribution.\n" "It includes little more than the required set of LaTeX packages." msgstr "" -#: gnu/packages/tex.scm:4248 +#: gnu/packages/tex.scm:4485 msgid "" "This package contains the fonts map configuration file\n" "generated for the base TeX Live packages as well as, optionally, user-provided\n" "ones." msgstr "" -#: gnu/packages/tex.scm:4288 +#: gnu/packages/tex.scm:4525 msgid "" "These fonts are considered the \"ultimate answer\" to IPA\n" "typesetting. The encoding of these 8-bit fonts has been registered as LaTeX\n" @@ -18909,7 +19096,7 @@ msgid "" "TS3 fonts." msgstr "" -#: gnu/packages/tex.scm:4311 +#: gnu/packages/tex.scm:4548 msgid "" "Amsrefs is a LaTeX package for bibliographies that provides an archival\n" "data format similar to the format of BibTeX database files, but adapted to\n" @@ -18917,7 +19104,7 @@ msgid "" "conjunction with BibTeX or as a replacement for BibTeX." msgstr "" -#: gnu/packages/tex.scm:4340 +#: gnu/packages/tex.scm:4577 msgid "" "This package aims to provide a one-stop solution to requirements for\n" "footnotes. It offers: Multiple footnote apparatus superior to that of\n" @@ -18931,7 +19118,7 @@ msgid "" "@code{suffix} packages." msgstr "" -#: gnu/packages/tex.scm:4368 +#: gnu/packages/tex.scm:4605 msgid "" "The package provides the commands @code{\\blindtext} and\n" "@code{\\Blindtext} for creating \"blind\" text useful in testing new classes\n" @@ -18942,7 +19129,7 @@ msgid "" "ipsum\" text, see the @code{lipsum} package)." msgstr "" -#: gnu/packages/tex.scm:4407 +#: gnu/packages/tex.scm:4644 msgid "" "This package implements a document layout for writing letters according\n" "to the rules of DIN (Deutsches Institut für Normung, German standardisation\n" @@ -18954,7 +19141,7 @@ msgid "" "package." msgstr "" -#: gnu/packages/tex.scm:4433 +#: gnu/packages/tex.scm:4670 msgid "" "This package provides a means to add a textual, light grey watermark on\n" "every page or on the first page of a document. Typical usage may consist in\n" @@ -18964,7 +19151,7 @@ msgid "" "on everypage." msgstr "" -#: gnu/packages/tex.scm:4457 +#: gnu/packages/tex.scm:4694 msgid "" "This package provides the @code{\\collect@@body} command (as in\n" "@code{amsmath}), as well as a @code{\\long} version @code{\\Collect@@Body},\n" @@ -18972,7 +19159,7 @@ msgid "" "define a new author interface to creating new environments." msgstr "" -#: gnu/packages/tex.scm:4479 +#: gnu/packages/tex.scm:4716 msgid "" "LaTeX users sometimes need to ensure that two or more blocks of text\n" "occupy the same amount of horizontal space on the page. To that end, the\n" @@ -18986,7 +19173,7 @@ msgid "" "also provided." msgstr "" -#: gnu/packages/tex.scm:4504 +#: gnu/packages/tex.scm:4741 msgid "" "This package gives the user complete control of how the entries of\n" "the table of contents should be constituted from the name, number, and page\n" @@ -19006,7 +19193,7 @@ msgid "" "table of contents." msgstr "" -#: gnu/packages/tex.scm:4546 +#: gnu/packages/tex.scm:4783 msgid "" "The package provides additional features for the LaTeX\n" "@code{description} environment, including adjustable left margin. The package\n" @@ -19015,7 +19202,7 @@ msgid "" "@code{enumerate} lists, and numbered lists remain in sequence)." msgstr "" -#: gnu/packages/tex.scm:4566 +#: gnu/packages/tex.scm:4803 msgid "" "This package provides macros to read and compare the modification dates\n" "of files. The files may be @code{.tex} files, images or other files (as long\n" @@ -19027,14 +19214,14 @@ msgid "" "but non-expandable ones." msgstr "" -#: gnu/packages/tex.scm:4589 +#: gnu/packages/tex.scm:4826 msgid "" "The @code{hanging} package facilitates the typesetting of hanging\n" "paragraphs. The package also enables typesetting with hanging punctuation,\n" "by making punctuation characters active." msgstr "" -#: gnu/packages/tex.scm:4612 +#: gnu/packages/tex.scm:4849 msgid "" "This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX support for\n" "the Fira Sans family of fonts designed by Erik Spiekermann and Ralph du\n" @@ -19042,7 +19229,7 @@ msgid "" "corresponding italics: light, regular, medium, bold, ..." msgstr "" -#: gnu/packages/tex.scm:4635 +#: gnu/packages/tex.scm:4872 msgid "" "This package uses the (La)TeX extension @code{-shell-escape} to\n" "establish whether the document is being processed on a Windows or on a\n" @@ -19053,7 +19240,7 @@ msgid "" "classes of systems." msgstr "" -#: gnu/packages/tex.scm:4660 +#: gnu/packages/tex.scm:4897 msgid "" "This bundle provides a package that implements both author-year and\n" "numbered references, as well as much detailed of support for other\n" @@ -19063,20 +19250,20 @@ msgid "" "designed from the start to be compatible with @code{natbib}." msgstr "" -#: gnu/packages/tex.scm:4679 +#: gnu/packages/tex.scm:4916 msgid "" "This package provides a friendly interface for defining the meaning of\n" "Unicode characters. The document should be processed by (pdf)LaTeX with the\n" "Unicode option of @code{inputenc} or @code{inputenx}, or by XeLaTeX/LuaLaTeX." msgstr "" -#: gnu/packages/tex.scm:4699 +#: gnu/packages/tex.scm:4936 msgid "" "This package makes a number of utility functions from pdfTeX\n" "available for luaTeX by reimplementing them using Lua." msgstr "" -#: gnu/packages/tex.scm:4719 +#: gnu/packages/tex.scm:4956 msgid "" "This package allows LaTeX constructions (equations, picture\n" "environments, etc.) to be precisely superimposed over Encapsulated PostScript\n" @@ -19087,7 +19274,7 @@ msgid "" "rotated." msgstr "" -#: gnu/packages/tex.scm:4751 +#: gnu/packages/tex.scm:4988 msgid "" "This is a package for processing PostScript graphics with @code{psfrag}\n" "labels within pdfLaTeX documents. Every graphic is compiled individually,\n" @@ -19095,7 +19282,7 @@ msgid "" "re-processing." msgstr "" -#: gnu/packages/tex.scm:4771 +#: gnu/packages/tex.scm:5008 msgid "" "This package provides the @code{\\setcounterref} and\n" "@code{\\addtocounterref} commands which use the section (or other) number\n" @@ -19104,7 +19291,7 @@ msgid "" "corresponding thing with the page reference of the label." msgstr "" -#: gnu/packages/tex.scm:4791 +#: gnu/packages/tex.scm:5028 msgid "" "This package provides a class that produces overhead\n" "slides (transparencies), with many facilities. Seminar is not nowadays\n" @@ -19113,14 +19300,14 @@ msgid "" "21st-century presentation styles." msgstr "" -#: gnu/packages/tex.scm:4812 +#: gnu/packages/tex.scm:5049 msgid "" "The package provides a versatile way to stack objects vertically in a\n" "variety of customizable ways. A number of useful macros are provided, all\n" "of which make use of the @code{stackengine} core." msgstr "" -#: gnu/packages/tex.scm:4828 +#: gnu/packages/tex.scm:5065 msgid "" "This package provides control over the typography of the\n" "@dfn{Table of Contents}, @dfn{List of Figures} and @dfn{List of Tables},\n" @@ -19128,7 +19315,7 @@ msgid "" "be changed." msgstr "" -#: gnu/packages/tex.scm:4862 +#: gnu/packages/tex.scm:5099 msgid "" "This very short package allows you to expandably remove spaces around a\n" "token list (commands are provided to remove spaces before, spaces after, or\n" @@ -19136,13 +19323,28 @@ msgid "" "space-stripped macros." msgstr "" -#: gnu/packages/tex.scm:4897 +#: gnu/packages/tex.scm:5115 +#, fuzzy +#| msgid "This package provides a Python interface to the Redis key-value store." +msgid "This package provides a math interface to the Rsfs fonts." +msgstr "Ce paquet fournit une interface Python pour le dépôt clef-valeur Redis." + +#: gnu/packages/tex.scm:5152 msgid "" "This package defines a command @code{\\captionof} for putting a caption\n" "to something that's not a float." msgstr "" -#: gnu/packages/tex.scm:4913 +#: gnu/packages/tex.scm:5170 +msgid "" +"Many of David Carlisle's more substantial packages stand on their own,\n" +"or as part of the LaTeX latex-tools set; this set contains: making dotless\n" +"@emph{j} characters for fonts that don't have them; a method for combining the\n" +"capabilities of longtable and tabularx; an environment for including plain TeX\n" +"in LaTeX documents; a jiffy to create slashed characters for physicists." +msgstr "" + +#: gnu/packages/tex.scm:5189 msgid "" "You can hyperlink DOI numbers to doi.org. However, some publishers have\n" "elected to use nasty characters in their DOI numbering scheme (@code{<},\n" @@ -19152,7 +19354,7 @@ msgid "" "hyperlink to the target of the DOI." msgstr "" -#: gnu/packages/tex.scm:4936 +#: gnu/packages/tex.scm:5212 msgid "" "This package is a toolbox of programming facilities geared primarily\n" "towards LaTeX class and package authors. It provides LaTeX frontends to some\n" @@ -19163,7 +19365,7 @@ msgid "" "of the LaTeX kernel." msgstr "" -#: gnu/packages/tex.scm:4976 +#: gnu/packages/tex.scm:5252 msgid "" "This package provides seven predefined chapter heading styles. Each\n" "style can be modified using a set of simple commands. Optionally one can\n" @@ -19171,7 +19373,7 @@ msgid "" "headings." msgstr "" -#: gnu/packages/tex.scm:5011 +#: gnu/packages/tex.scm:5287 msgid "" "The package creates three environments: @code{framed}, which puts an\n" "ordinary frame box around the region, @code{shaded}, which shades the region,\n" @@ -19182,7 +19384,7 @@ msgid "" "@code{\\MakeFramed} to make your own framed-style environments." msgstr "" -#: gnu/packages/tex.scm:5045 +#: gnu/packages/tex.scm:5321 msgid "" "This package is designed for formatting formless letters in German; it\n" "can also be used for English (by those who can read the documentation). There\n" @@ -19190,13 +19392,13 @@ msgid "" "\"old\" and a \"new\" version of g-brief." msgstr "" -#: gnu/packages/tex.scm:5067 +#: gnu/packages/tex.scm:5343 msgid "" "The package deals with connections in two-dimensional style, optionally\n" "in colour." msgstr "" -#: gnu/packages/tex.scm:5087 +#: gnu/packages/tex.scm:5363 msgid "" "The package allows citations in the German style, which is considered by\n" "many to be particularly reader-friendly. The citation provides a small amount\n" @@ -19206,7 +19408,7 @@ msgid "" "BibLaTeX, and is considered experimental." msgstr "" -#: gnu/packages/tex.scm:5113 +#: gnu/packages/tex.scm:5389 msgid "" "This package provides an easy and flexible user interface to customize\n" "page layout, implementing auto-centering and auto-balancing mechanisms so that\n" @@ -19217,7 +19419,7 @@ msgid "" "ability to communicate the paper size it's set up to the output." msgstr "" -#: gnu/packages/tex.scm:5138 +#: gnu/packages/tex.scm:5414 msgid "" "This collection of tools includes: @code{atsupport} for short commands\n" "starting with @code{@@}, macros to sanitize the OT1 encoding of the\n" @@ -19227,13 +19429,13 @@ msgid "" "array environments; verbatim handling; and syntax diagrams." msgstr "" -#: gnu/packages/tex.scm:5162 +#: gnu/packages/tex.scm:5438 msgid "" "This package provides a complete Babel replacement for users of LuaLaTeX\n" "and XeLaTeX; it relies on the @code{fontspec} package, version 2.0 at least." msgstr "" -#: gnu/packages/tex.scm:5182 +#: gnu/packages/tex.scm:5458 msgid "" "This package was a predecessor of @code{longtable}; the newer\n" "package (designed on quite different principles) is easier to use and more\n" @@ -19241,7 +19443,7 @@ msgid "" "situations where longtable has problems." msgstr "" -#: gnu/packages/tex.scm:5217 +#: gnu/packages/tex.scm:5493 msgid "" "Texinfo is the preferred format for documentation in the GNU project;\n" "the format may be used to produce online or printed output from a single\n" @@ -19250,7 +19452,23 @@ msgid "" "hypertext linkages in some cases)." msgstr "" -#: gnu/packages/tex.scm:5240 +#: gnu/packages/tex.scm:5513 +msgid "" +"The textcase package offers commands @code{\\MakeTextUppercase} and\n" +"@code{\\MakeTextLowercase} are similar to the standard @code{\\MakeUppercase}\n" +"and @code{\\MakeLowercase}, but they do not change the case of any sections of\n" +"mathematics, or the arguments of @code{\\cite}, @code{\\label} and\n" +"@code{\\ref} commands within the argument. A further command\n" +"@code{\\NoCaseChange} does nothing but suppress case change within its\n" +"argument, so to force uppercase of a section including an environment, one\n" +"might say:\n" +"\n" +"@example\n" +"\\MakeTextUppercase{...\\NoCaseChange{\\begin{foo}} ...\\NoCaseChange{\\end{foo}}...}\n" +"@end example\n" +msgstr "" + +#: gnu/packages/tex.scm:5543 msgid "" "Typewriter-style fonts are best for program listings, but Computer\n" "Modern Typewriter prints @code{`} and @code{'} as bent opening and closing\n" @@ -19264,14 +19482,14 @@ msgid "" "does not affect @code{\\tt}, @code{\\texttt}, etc." msgstr "" -#: gnu/packages/tex.scm:5281 +#: gnu/packages/tex.scm:5584 msgid "" "This is a simple package to set up document margins. This package is\n" "considered obsolete; alternatives are the @code{typearea} package from the\n" "@code{koma-script} bundle, or the @code{geometry} package." msgstr "" -#: gnu/packages/tex.scm:5302 +#: gnu/packages/tex.scm:5605 msgid "" "The appendix package provides various ways of formatting the titles of\n" "appendices. Also (sub)appendices environments are provided that can be used,\n" @@ -19280,14 +19498,14 @@ msgid "" "command." msgstr "" -#: gnu/packages/tex.scm:5321 +#: gnu/packages/tex.scm:5624 msgid "" "This package implements a new bookmark (outline) organization for the\n" "@code{hyperref} package. Bookmark properties such as style and color. Other\n" "action types are available (URI, GoToR, Named)." msgstr "" -#: gnu/packages/tex.scm:5342 +#: gnu/packages/tex.scm:5645 msgid "" "Identify areas of text to be marked with changebars with the\n" "@code{\\cbstart} and @code{\\cbend} commands; the bars may be coloured. The\n" @@ -19296,19 +19514,19 @@ msgid "" "drivers, and VTeX and pdfTeX." msgstr "" -#: gnu/packages/tex.scm:5379 +#: gnu/packages/tex.scm:5682 msgid "" "This package embeds CMap tables into PDF files to make search and\n" "copy-and-paste functions work properly." msgstr "" -#: gnu/packages/tex.scm:5399 +#: gnu/packages/tex.scm:5702 msgid "" "This package allows rows, columns, and even individual cells in LaTeX\n" "tables to be coloured." msgstr "" -#: gnu/packages/tex.scm:5432 +#: gnu/packages/tex.scm:5735 msgid "" "This package provides variants of @code{\\fbox}: @code{\\shadowbox},\n" "@code{\\doublebox}, @code{\\ovalbox}, @code{\\Ovalbox}, with helpful tools for\n" @@ -19316,14 +19534,14 @@ msgid "" "floats, center, flushleft, and flushright, lists, and pages." msgstr "" -#: gnu/packages/tex.scm:5467 +#: gnu/packages/tex.scm:5770 msgid "" "The package provides extensive facilities, both for constructing headers\n" "and footers, and for controlling their use (for example, at times when LaTeX\n" "would automatically change the heading style in use)." msgstr "" -#: gnu/packages/tex.scm:5488 +#: gnu/packages/tex.scm:5791 msgid "" "This package improves the interface for defining floating objects such\n" "as figures and tables. It introduces the boxed float, the ruled float and the\n" @@ -19333,7 +19551,7 @@ msgid "" "with @code{\\floatplacement{figure}{H}}." msgstr "" -#: gnu/packages/tex.scm:5512 +#: gnu/packages/tex.scm:5815 msgid "" "This is a collection of ways to change the typesetting of footnotes.\n" "The package provides means of changing the layout of the footnotes themselves,\n" @@ -19343,7 +19561,7 @@ msgid "" "footnotes with symbols rather than numbers." msgstr "" -#: gnu/packages/tex.scm:5532 +#: gnu/packages/tex.scm:5835 msgid "" "TeX’s @code{\\let} assignment does not work for LaTeX macros with\n" "optional arguments, or for macros that are defined as robust macros by\n" @@ -19351,7 +19569,7 @@ msgid "" "that also takes care of the involved internal macros." msgstr "" -#: gnu/packages/tex.scm:5556 +#: gnu/packages/tex.scm:5859 msgid "" "The package enables the user to typeset programs (programming code)\n" "within LaTeX; the source code is read directly by TeX---no front-end processor\n" @@ -19359,7 +19577,7 @@ msgid "" "styles. Support for @code{hyperref} is provided." msgstr "" -#: gnu/packages/tex.scm:5591 +#: gnu/packages/tex.scm:5894 msgid "" "This package provides miscellaneous macros by Joerg Knappen, including:\n" "represent counters in greek; Maxwell's non-commutative division;\n" @@ -19371,7 +19589,7 @@ msgid "" "in SGML; use maths minus in text as appropriate; simple Young tableaux." msgstr "" -#: gnu/packages/tex.scm:5615 +#: gnu/packages/tex.scm:5918 #, fuzzy #| msgid "" #| "This package provides tools for sorting and comparing\n" @@ -19383,7 +19601,7 @@ msgstr "" "Ce paquet fournit des outils pour trier et comparer des\n" "données Unicode." -#: gnu/packages/tex.scm:5684 +#: gnu/packages/tex.scm:5987 msgid "" "The EC fonts are European Computer Modern Fonts, supporting the complete\n" "LaTeX T1 encoding defined at the 1990 TUG conference hold at Cork/Ireland.\n" @@ -19400,7 +19618,7 @@ msgid "" "differs from the EC in a number of particulars." msgstr "" -#: gnu/packages/tex.scm:5717 +#: gnu/packages/tex.scm:6020 msgid "" "This package provides a set of virtual fonts which emulates T1 coded\n" "fonts using the standard CM fonts. The package name, AE fonts, supposedly\n" @@ -19410,7 +19628,7 @@ msgid "" "via the CM-super, Latin Modern and (in a restricted way) CM-LGC font sets." msgstr "" -#: gnu/packages/tex.scm:5742 +#: gnu/packages/tex.scm:6045 msgid "" "Inconsolata is a monospaced font designed by Raph Levien. This package\n" "contains the font (in both Adobe Type 1 and OpenType formats) in regular and\n" @@ -19419,7 +19637,7 @@ msgid "" "TeX, and LaTeX font definition and other relevant files." msgstr "" -#: gnu/packages/tex.scm:5771 +#: gnu/packages/tex.scm:6074 msgid "" "This package provides a drop-in replacements for the Times font from\n" "Adobe's basic set." @@ -19427,7 +19645,7 @@ msgstr "" "Ce paquet fournit un remplaçant direct aux polices Times de\n" "l'ensemble Adobe de base." -#: gnu/packages/tex.scm:5799 +#: gnu/packages/tex.scm:6102 msgid "" "This package provides a drop-in replacements for the Palatino font from\n" "Adobe's basic set." @@ -19435,7 +19653,7 @@ msgstr "" "Ce paquet fournit un remplaçant direct aux polices Palatino de\n" "l'ensemble Adobe de base." -#: gnu/packages/tex.scm:5824 +#: gnu/packages/tex.scm:6127 msgid "" "This package provides a drop-in replacements for the Zapfding font from\n" "Adobe's basic set." @@ -19443,7 +19661,7 @@ msgstr "" "Ce paquet fournit un remplaçant direct aux polices Zapfding de\n" "l'ensemble Adobe de base." -#: gnu/packages/tex.scm:5896 +#: gnu/packages/tex.scm:6199 msgid "" "The fonts provide uppercase formal script letters for use as symbols in\n" "scientific and mathematical typesetting (in contrast to the informal script\n" @@ -19453,14 +19671,14 @@ msgid "" "one of the packages @code{calrsfs} and @code{mathrsfs}." msgstr "" -#: gnu/packages/tex.scm:5920 +#: gnu/packages/tex.scm:6223 msgid "" "The package adds one or more user commands to LaTeX's @code{shipout}\n" "routine, which may be used to place the output at fixed positions. The\n" "@code{grid} option may be used to find the correct places." msgstr "" -#: gnu/packages/tex.scm:5954 +#: gnu/packages/tex.scm:6257 msgid "" "Extensions to @code{epic} and the LaTeX picture drawing environment,\n" "include the drawing of lines at any slope, the drawing of circles in any\n" @@ -19470,7 +19688,7 @@ msgid "" "@code{\\special} commands." msgstr "" -#: gnu/packages/tex.scm:5991 +#: gnu/packages/tex.scm:6276 msgid "" "This package is intended to ease customizing the three basic list\n" "environments: @code{enumerate}, @code{itemize} and @code{description}. It\n" @@ -19479,14 +19697,14 @@ msgid "" "@code{\\begin{itemize}[itemsep=1ex,leftmargin=1cm]}." msgstr "" -#: gnu/packages/tex.scm:6014 +#: gnu/packages/tex.scm:6301 msgid "" "The package provides tools for creating tabular cells spanning multiple\n" "rows. It has a lot of flexibility, including an option for specifying an\n" "entry at the \"natural\" width of its text." msgstr "" -#: gnu/packages/tex.scm:6048 +#: gnu/packages/tex.scm:6335 msgid "" "The @code{overpic} environment is a cross between the LaTeX\n" "@code{picture} environment and the @code{\\includegraphics} command of\n" @@ -19495,14 +19713,14 @@ msgid "" "positions; a grid for orientation is available." msgstr "" -#: gnu/packages/tex.scm:6084 +#: gnu/packages/tex.scm:6371 msgid "" "Simply changing @code{\\parskip} and @code{\\parindent} leaves a layout\n" "that is untidy; this package (though it is no substitute for a properly\n" "designed class) helps alleviate this untidiness." msgstr "" -#: gnu/packages/tex.scm:6105 +#: gnu/packages/tex.scm:6392 msgid "" "This package simplifies the inclusion of external multi-page PDF\n" "documents in LaTeX documents. Pages may be freely selected and it is possible\n" @@ -19512,7 +19730,7 @@ msgid "" "use this package to insert PostScript files, in addition to PDF files." msgstr "" -#: gnu/packages/tex.scm:6146 +#: gnu/packages/tex.scm:6433 msgid "" "The fonts were originally distributed as Metafont sources only, but\n" "Adobe Type 1 versions are also now available. Macro support is provided for\n" @@ -19521,7 +19739,7 @@ msgid "" "the whole font." msgstr "" -#: gnu/packages/tex.scm:6171 +#: gnu/packages/tex.scm:6458 msgid "" "This (deprecated) package provides support for the manipulation and\n" "reference of small or \"sub\" figures and tables within a single figure or\n" @@ -19534,7 +19752,7 @@ msgid "" "the more recent @code{subcaption} package more satisfactory." msgstr "" -#: gnu/packages/tex.scm:6198 +#: gnu/packages/tex.scm:6485 msgid "" "The package defines a @code{tabular*}-like environment, @code{tabulary},\n" "taking a \"total width\" argument as well as the column specifications. The\n" @@ -19545,7 +19763,7 @@ msgid "" "according to the natural width of the widest cell in the column." msgstr "" -#: gnu/packages/tex.scm:6236 +#: gnu/packages/tex.scm:6523 msgid "" "This package facilitates tables with titles (captions) and notes. The\n" "title and notes are given a width equal to the body of the table (a\n" @@ -19554,7 +19772,7 @@ msgid "" "environment." msgstr "" -#: gnu/packages/tex.scm:6263 +#: gnu/packages/tex.scm:6550 msgid "" "Txfonts supplies virtual text roman fonts using Adobe Times (or URW\n" "NimbusRomNo9L) with some modified and additional text symbols in the OT1, T1,\n" @@ -19570,7 +19788,7 @@ msgid "" "TeX metrics (VF and TFM files) and macros for use with LaTeX." msgstr "" -#: gnu/packages/tex.scm:6312 +#: gnu/packages/tex.scm:6599 msgid "" "Iwona is a two-element sans-serif typeface. It was created\n" "as an alternative version of the Kurier typeface, which was designed in 1975\n" @@ -19581,7 +19799,7 @@ msgid "" "of ink traps which typify the Kurier font." msgstr "" -#: gnu/packages/tex.scm:6335 +#: gnu/packages/tex.scm:6622 msgid "" "This package contains a collection of macros by Jörg Knappen:\n" "@table @code\n" @@ -19617,7 +19835,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/tex.scm:6442 +#: gnu/packages/tex.scm:6729 msgid "" "JadeTeX is a companion package to the OpenJade DSSSL\n" "processor. OpenJade applies a DSSSL stylesheet to an SGML or XML document.\n" @@ -19628,7 +19846,7 @@ msgid "" "command)." msgstr "" -#: gnu/packages/tex.scm:6472 +#: gnu/packages/tex.scm:6759 msgid "" "The package provides the Libertine and Biolinum fonts in both Type 1 and\n" "OTF styles, together with support macros for their use. Monospaced and\n" @@ -19638,7 +19856,7 @@ msgid "" "@code{libertine-legacy} packages." msgstr "" -#: gnu/packages/tex.scm:6504 +#: gnu/packages/tex.scm:6791 msgid "" "The package contains LaTeX support for the DejaVu fonts, which are\n" "derived from the Vera fonts but contain more characters and styles. The fonts\n" @@ -19647,7 +19865,7 @@ msgid "" "LGR. The package doesn't (currently) support mathematics." msgstr "" -#: gnu/packages/tex.scm:6540 +#: gnu/packages/tex.scm:6827 msgid "" "This package provides an interface to sectioning commands for selection\n" "from various title styles, e.g. for marginal titles and to change the font of\n" @@ -19656,7 +19874,7 @@ msgid "" "floats in a page. You may assign headers/footers to individual floats, too." msgstr "" -#: gnu/packages/tex.scm:6563 +#: gnu/packages/tex.scm:6850 msgid "" "LaTeX, by default, restricts the sizes at which you can use its default\n" "computer modern fonts, to a fixed set of discrete sizes (effectively, a set\n" @@ -19671,7 +19889,7 @@ msgid "" "@code{ec} fonts." msgstr "" -#: gnu/packages/tex.scm:6617 +#: gnu/packages/tex.scm:6904 msgid "" "The LH fonts address the problem of the wide variety of alphabets that\n" "are written with Cyrillic-style characters. The fonts are the original basis\n" @@ -19684,7 +19902,7 @@ msgid "" "OT2 encoded fonts, CM bright shaped fonts and Concrete shaped fonts." msgstr "" -#: gnu/packages/tex.scm:6647 +#: gnu/packages/tex.scm:6934 msgid "" "The Martin Vogel’s Symbols fonts (marvosym) contains the\n" "Euro currency symbol as defined by the European commission, along with symbols\n" @@ -19694,34 +19912,41 @@ msgid "" "the derived Type 1 font, together with support files for TeX (LaTeX)." msgstr "" -#: gnu/packages/tex.scm:6685 +#: gnu/packages/tex.scm:6972 msgid "" "MetaPost uses a language based on that of Metafont to produce precise\n" "technical illustrations. Its output is scalable PostScript or SVG, rather\n" "than the bitmaps Metafont creates." msgstr "" -#: gnu/packages/tex.scm:6706 +#: gnu/packages/tex.scm:6993 msgid "" "This package provides a class for typesetting publications of the\n" "Association for Computing Machinery (ACM)." msgstr "" -#: gnu/packages/tex.scm:6739 +#: gnu/packages/tex.scm:7026 msgid "" "The @code{varwidth} environment is superficially similar to\n" "@code{minipage}, but the specified width is just a maximum value — the box may\n" "get a narrower “natural” width." msgstr "" -#: gnu/packages/tex.scm:6757 +#: gnu/packages/tex.scm:7041 +msgid "" +"The varwidth environment is superficially similar to minipage, but the\n" +"specified width is just a maximum value --- the box may get a narrower natural\n" +"width." +msgstr "" + +#: gnu/packages/tex.scm:7059 msgid "" "This package provides the @code{wasy} (Waldi symbol) fonts,\n" "in the Metafont and Adobe Type 1 formats. Support under LaTeX is provided by\n" "the @code{wasysym} package." msgstr "" -#: gnu/packages/tex.scm:6778 +#: gnu/packages/tex.scm:7080 msgid "" "The @code{wasy} (Waldi Symbol) font by Roland Waldi provides many glyphs like\n" "male and female symbols and astronomical symbols, as well as the complete\n" @@ -19729,14 +19954,14 @@ msgid "" "implements an easy to use interface for these symbols." msgstr "" -#: gnu/packages/tex.scm:6815 +#: gnu/packages/tex.scm:7117 msgid "" "This package allows figures or tables to have text wrapped around them.\n" "It does not work in combination with list environments, but can be used in a\n" "@code{parbox} or @code{minipage}, and in two-column format." msgstr "" -#: gnu/packages/tex.scm:6849 +#: gnu/packages/tex.scm:7151 msgid "" "The bundle provides the @code{ucs} package, and @code{utf8x.def},\n" "together with a large number of support files. The @code{utf8x.def}\n" @@ -19749,7 +19974,7 @@ msgid "" "package of that name now exists." msgstr "" -#: gnu/packages/tex.scm:6883 +#: gnu/packages/tex.scm:7185 msgid "" "The main purpose of the preview package is the extraction of selected\n" "elements from a LaTeX source, like formulas or graphics, into separate\n" @@ -19760,7 +19985,7 @@ msgid "" "files." msgstr "" -#: gnu/packages/tex.scm:6908 +#: gnu/packages/tex.scm:7210 msgid "" "This package ensures that all acronyms used in the text are spelled out\n" "in full at least once. It also provides an environment to build a list of\n" @@ -19769,13 +19994,13 @@ msgid "" "e-TeX." msgstr "" -#: gnu/packages/tex.scm:6945 +#: gnu/packages/tex.scm:7247 msgid "" "This package provides an extension of TeX which can be configured to\n" "directly generate PDF documents instead of DVI." msgstr "" -#: gnu/packages/tex.scm:7025 +#: gnu/packages/tex.scm:7327 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -19785,7 +20010,7 @@ msgid "" "This package contains the complete tree of texmf-dist data." msgstr "" -#: gnu/packages/tex.scm:7088 +#: gnu/packages/tex.scm:7390 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -19795,7 +20020,7 @@ msgid "" "This package contains the complete TeX Live distribution." msgstr "" -#: gnu/packages/tex.scm:7130 +#: gnu/packages/tex.scm:7432 msgid "" "@code{Text::BibTeX} is a Perl library for reading, parsing,\n" "and processing BibTeX files. @code{Text::BibTeX} gives you access to the data\n" @@ -19804,13 +20029,13 @@ msgid "" "values (strings, macros, or numbers) pasted together." msgstr "" -#: gnu/packages/tex.scm:7216 +#: gnu/packages/tex.scm:7518 msgid "" "Biber is a BibTeX replacement for users of biblatex. Among\n" "other things it comes with full Unicode support." msgstr "" -#: gnu/packages/tex.scm:7250 +#: gnu/packages/tex.scm:7552 msgid "" "Rubber is a program whose purpose is to handle all tasks related to the\n" "compilation of LaTeX documents. This includes compiling the document itself,\n" @@ -19820,20 +20045,20 @@ msgid "" "PDF documents." msgstr "" -#: gnu/packages/tex.scm:7289 +#: gnu/packages/tex.scm:7591 msgid "" "Texmaker is a program that integrates many tools needed to\n" "develop documents with LaTeX, in a single application." msgstr "" -#: gnu/packages/tex.scm:7330 +#: gnu/packages/tex.scm:7632 msgid "" "@i{TeX for the Impatient} is a ~350 page book on TeX,\n" "plain TeX, and Eplain, originally written by Paul Abrahams, Kathryn Hargreaves,\n" "and Karl Berry." msgstr "" -#: gnu/packages/tex.scm:7394 +#: gnu/packages/tex.scm:7696 msgid "" "LyX is a document preparation system. It excels at letting\n" "you create complex technical and scientific articles with mathematics,\n" @@ -19842,7 +20067,7 @@ msgid "" "required: automatic sectioning and pagination, spell checking and so forth." msgstr "" -#: gnu/packages/tex.scm:7430 +#: gnu/packages/tex.scm:7732 msgid "" "The package provides an interface to embed interactive Flash (SWF) and 3D\n" "objects (Adobe U3D & PRC), as well as video and sound files or streams in the\n" @@ -19855,7 +20080,7 @@ msgid "" "specification. It replaces the now obsolete @code{movie15} package." msgstr "" -#: gnu/packages/tex.scm:7470 +#: gnu/packages/tex.scm:7772 msgid "" "This package provides OCG (Optional Content Groups) support within a PDF\n" "document.\n" @@ -19873,7 +20098,7 @@ msgid "" "It also ensures compatibility with the @code{media9} and @code{animate} packages." msgstr "" -#: gnu/packages/tex.scm:7504 +#: gnu/packages/tex.scm:7806 msgid "" "A bundle of LATEX packages by Martin Schröder; the collection comprises:\n" "\n" @@ -19887,7 +20112,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/tex.scm:7532 +#: gnu/packages/tex.scm:7852 msgid "" "The package numprint prints numbers with a separator every three\n" "digits and converts numbers given as 12345.6e789 to 12\\,345,6\\cdot\n" @@ -19908,14 +20133,14 @@ msgid "" "and after the formatted number." msgstr "" -#: gnu/packages/tex.scm:7571 +#: gnu/packages/tex.scm:7893 msgid "" "Provides commands to disable pagebreaking within a given vertical\n" "space. If there is not enough space between the command and the bottom of the\n" "page, a new page will be started." msgstr "" -#: gnu/packages/tex.scm:7597 +#: gnu/packages/tex.scm:7919 msgid "" "The package provides commands to change the page layout in the middle of\n" "a document, and to robustly check for typesetting on odd or even pages.\n" @@ -19923,7 +20148,7 @@ msgid "" "of code from the @code{memoir} class, whose user interface it shares." msgstr "" -#: gnu/packages/tex.scm:7633 +#: gnu/packages/tex.scm:7955 msgid "" "The package is used to change the format of @code{\\today}’s date,\n" "including the weekday, e.g., \"Saturday, 26 June 2008\", the 'UK format', which\n" @@ -19931,7 +20156,7 @@ msgid "" "@code{\\maketitle} of the article class, \"June 26, 2008\", the 'US format'." msgstr "" -#: gnu/packages/tex.scm:7669 +#: gnu/packages/tex.scm:7971 msgid "" "The package provides an @code{\\ul} (underline) command which will break\n" "over line ends; this technique may be used to replace @code{\\em} (both in that\n" @@ -19940,7 +20165,7 @@ msgid "" "striking out (line through words) and crossing out (/// over words)." msgstr "" -#: gnu/packages/tex.scm:7725 +#: gnu/packages/tex.scm:8029 msgid "" "PGF is a macro package for creating graphics. It is platform- and\n" "format-independent and works together with the most important TeX backend\n" @@ -19952,7 +20177,7 @@ msgid "" "produce either PostScript or PDF output." msgstr "" -#: gnu/packages/tex.scm:7771 +#: gnu/packages/tex.scm:8075 msgid "" "The KOMA-Script bundle provides replacements for the article, report, and\n" "book classes with emphasis on typography and versatility. There is also a\n" @@ -19977,7 +20202,7 @@ msgid "" "typearea (which are the main parts of the bundle)." msgstr "" -#: gnu/packages/tex.scm:7806 +#: gnu/packages/tex.scm:8110 msgid "" "This package is a modern reimplementation of package @code{everyshi},\n" "providing various commands to be executed before a @code{\\shipout} command.\n" @@ -19985,20 +20210,20 @@ msgid "" "be used either with LaTeX or with plain TeX." msgstr "" -#: gnu/packages/tex.scm:7826 +#: gnu/packages/tex.scm:8130 msgid "" "This package provides expandable arithmetic operations with big\n" "integers that can exceed TeX's number limits." msgstr "" -#: gnu/packages/tex.scm:7845 +#: gnu/packages/tex.scm:8149 msgid "" "This package defines and implements the data type bit set, a vector\n" "of bits. The size of the vector may grow dynamically. Individual bits\n" "can be manipulated." msgstr "" -#: gnu/packages/tex.scm:7864 +#: gnu/packages/tex.scm:8168 msgid "" "New primitive commands are introduced in e-TeX; sometimes the names\n" "collide with existing macros. This package solves the name clashes by\n" @@ -20006,14 +20231,14 @@ msgid "" "@code{\\unexpanded} is provided as @code{\\etex@@unexpanded}." msgstr "" -#: gnu/packages/tex.scm:7882 +#: gnu/packages/tex.scm:8186 msgid "" "This package provides commands for cleaning up the title string\n" "(such as removing @code{\\label} commands) for packages that typeset such\n" "strings." msgstr "" -#: gnu/packages/tex.scm:7898 +#: gnu/packages/tex.scm:8202 msgid "" "This package provides a complete set of macros for information,\n" "warning and error messages. Under LaTeX, the commands are wrappers for\n" @@ -20021,19 +20246,19 @@ msgid "" "complete implementations." msgstr "" -#: gnu/packages/tex.scm:7915 +#: gnu/packages/tex.scm:8219 msgid "" "This package provides expandable arithmetic operations with integers,\n" "using the e-TeX extension @code{\\numexpr} if it is available." msgstr "" -#: gnu/packages/tex.scm:7930 +#: gnu/packages/tex.scm:8234 msgid "" "This package provides the @code{\\kv@@define@@key} (analogous to\n" "keyval’s @code{\\define@@key}, to define keys for use by @code{kvsetkeys}." msgstr "" -#: gnu/packages/tex.scm:7945 +#: gnu/packages/tex.scm:8249 msgid "" "This package provides @code{\\kvsetkeys}, a variant of @code{\\setkeys}\n" "from the @code{keyval} package. Users can specify a handler that deals with\n" @@ -20041,35 +20266,35 @@ msgid "" "level of curly braces are removed from the values." msgstr "" -#: gnu/packages/tex.scm:7980 +#: gnu/packages/tex.scm:8284 msgid "" "This package allows one to capture all the items of a list, for which\n" "the parsing character has been selected by the user, and to access any of\n" "these items with a simple syntax." msgstr "" -#: gnu/packages/tex.scm:7996 +#: gnu/packages/tex.scm:8300 msgid "" "This package exports some utility macros from the LaTeX kernel into\n" "a separate namespace and also makes them available for other formats such\n" "as plain TeX." msgstr "" -#: gnu/packages/tex.scm:8012 +#: gnu/packages/tex.scm:8316 msgid "" "This package implements pdfTeX's escape features (@code{\\pdfescapehex},\n" "@code{\\pdfunescapehex}, @code{\\pdfescapename}, @code{\\pdfescapestring})\n" "using TeX or e-TeX." msgstr "" -#: gnu/packages/tex.scm:8031 +#: gnu/packages/tex.scm:8335 msgid "" "This package provides a kind of counter that provides unique number\n" "values. Several counters can be created with different names. The numeric\n" "values are not limited." msgstr "" -#: gnu/packages/tex.scm:8067 +#: gnu/packages/tex.scm:8371 msgid "" "This package allows the user to input formatted data into elements of a\n" "2-D or 3-D array and to recall that data at will by individual cell number.\n" @@ -20077,7 +20302,7 @@ msgid "" "formatted text." msgstr "" -#: gnu/packages/tex.scm:8104 +#: gnu/packages/tex.scm:8408 msgid "" "The package provides a @code{verbbox} environment to place its contents\n" "into a globally available box, or into a box specified by the user. The\n" @@ -20087,7 +20312,7 @@ msgid "" "@code{trivlist}) may not appear." msgstr "" -#: gnu/packages/tex.scm:8141 +#: gnu/packages/tex.scm:8445 msgid "" "Examplep provides sophisticated features for typesetting verbatim source\n" "code listings, including the display of the source code and its compiled LaTeX\n" @@ -20100,7 +20325,7 @@ msgid "" "titles." msgstr "" -#: gnu/packages/tex.scm:8178 +#: gnu/packages/tex.scm:8482 msgid "" "This is a package for typesetting a variety of graphs and\n" "diagrams with TeX. Xy-pic works with most formats (including LaTeX,\n" @@ -20108,7 +20333,7 @@ msgid "" "@code{diag} package, which was previously distributed stand-alone." msgstr "" -#: gnu/packages/tex.scm:8218 +#: gnu/packages/tex.scm:8522 msgid "" "BibTeX allows the user to store his citation data in generic form, while\n" "printing citations in a document in the form specified by a BibTeX style, to\n" @@ -20116,7 +20341,7 @@ msgid "" "package, such as @command{natbib} as well)." msgstr "" -#: gnu/packages/tex.scm:8241 +#: gnu/packages/tex.scm:8545 msgid "" "This package provides a copy of the Charter Type-1 fonts\n" "which Bitstream contributed to the X consortium, renamed for use with TeX.\n" @@ -20124,14 +20349,14 @@ msgid "" "@command{psnfss}." msgstr "" -#: gnu/packages/tex.scm:8337 +#: gnu/packages/tex.scm:8641 msgid "" "ConTeXt is a full featured, parameter driven macro package,\n" "which fully supports advanced interactive documents. See the ConTeXt garden\n" "for a wealth of support information." msgstr "" -#: gnu/packages/tex.scm:8362 +#: gnu/packages/tex.scm:8666 msgid "" "The beamer LaTeX class can be used for producing slides.\n" "The class works in both PostScript and direct PDF output modes, using the\n" @@ -20144,7 +20369,7 @@ msgid "" "effects, varying slide transitions and animations." msgstr "" -#: gnu/packages/tex.scm:8394 +#: gnu/packages/tex.scm:8698 msgid "" "The XMP (eXtensible Metadata platform) is a framework to add metadata to\n" "digital material to enhance the workflow in publication. The essence is that\n" @@ -20152,13 +20377,13 @@ msgid "" "the file to which it applies." msgstr "" -#: gnu/packages/tex.scm:8433 +#: gnu/packages/tex.scm:8737 msgid "" "This package helps LaTeX users to create PDF/X, PDF/A and other\n" "standards-compliant PDF documents with pdfTeX, LuaTeX and XeTeX." msgstr "" -#: gnu/packages/tex.scm:8468 +#: gnu/packages/tex.scm:8772 msgid "" "The package provides macros and environments to document\n" "LaTeX packages and classes. It is an (as yet unfinished) alternative to the\n" @@ -20169,7 +20394,7 @@ msgid "" "change." msgstr "" -#: gnu/packages/tex.scm:8496 +#: gnu/packages/tex.scm:8800 msgid "" "PSTricks offers an extensive collection of macros for\n" "generating PostScript that is usable with most TeX macro formats, including\n" @@ -20180,14 +20405,14 @@ msgid "" "or shading the cells of tables." msgstr "" -#: gnu/packages/tex.scm:8521 +#: gnu/packages/tex.scm:8825 msgid "" "Pst-text is a PSTricks based package for plotting text along\n" "a different path and manipulating characters. It includes the functionality\n" "of the old package @code{pst-char}." msgstr "" -#: gnu/packages/tex.scm:8546 +#: gnu/packages/tex.scm:8850 msgid "" "This package provides the command @code{\\marginnote} that\n" "may be used instead of @code{\\marginpar} at almost every place where\n" @@ -20195,7 +20420,7 @@ msgid "" "frames made with the @code{framed} package." msgstr "" -#: gnu/packages/tex.scm:8564 +#: gnu/packages/tex.scm:8868 msgid "" "This package, which works both for Plain TeX and for\n" "LaTeX, defines the @code{\\ifPDFTeX}, @code{\\ifXeTeX}, and @code{\\ifLuaTeX}\n" @@ -20205,7 +20430,19 @@ msgid "" "LuaTeX (respectively) is not the engine in use." msgstr "" -#: gnu/packages/tex.scm:8597 +#: gnu/packages/tex.scm:8914 +msgid "" +"The package provides an environment, tabu, which will make any sort of\n" +"tabular, and an environment longtabu which provides the facilities of tabu in\n" +"a modified longtable environment. The package requires array, xcolor for\n" +"coloured rules in tables, and colortbl for coloured cells. The longtabu\n" +"environment further requires that longtable be loaded. The package itself\n" +"does not load any of these packages for the user. The tabu environment may be\n" +"used in place of @code{tabular}, @code{tabular*} and @code{tabularx}\n" +"environments, as well as the @code{array} environment in maths mode." +msgstr "" + +#: gnu/packages/tex.scm:8945 msgid "" "This package provides a collection of simple tools that\n" "are part of the LaTeX required tools distribution, comprising the packages:\n" @@ -20217,7 +20454,7 @@ msgid "" "@code{varioref}, @code{verbatim}, @code{xr}, and @code{xspace}." msgstr "" -#: gnu/packages/tex.scm:8678 +#: gnu/packages/tex.scm:9026 msgid "" "This package is an extension of the keyval package and offers additional\n" "macros for setting keys and declaring and setting class or package options.\n" @@ -20227,7 +20464,7 @@ msgid "" "keys." msgstr "" -#: gnu/packages/tex.scm:8706 +#: gnu/packages/tex.scm:9054 msgid "" "A class and package is provided which allows TeX pictures or\n" "other TeX code to be compiled standalone or as part of a main document.\n" @@ -20239,7 +20476,7 @@ msgid "" "@code{standalone.cfg} to redefine the standalone environment." msgstr "" -#: gnu/packages/tex.scm:8739 +#: gnu/packages/tex.scm:9087 msgid "" "Typesetting values with units requires care to ensure that the combined\n" "mathematical meaning of the value plus unit combination is clear. In\n" @@ -20255,7 +20492,7 @@ msgid "" "package to handle all of the possible unit-related needs of LaTeX users." msgstr "" -#: gnu/packages/tex.scm:8770 +#: gnu/packages/tex.scm:9118 msgid "" "This package enhances the quality of tables in LaTeX, providing extra\n" "commands as well as behind-the-scenes optimisation. Guidelines are given as\n" @@ -20263,7 +20500,7 @@ msgid "" "@code{longtable} compatibility." msgstr "" -#: gnu/packages/tex.scm:8790 +#: gnu/packages/tex.scm:9138 msgid "" "This package provides advanced facilities for inline and\n" "display quotations. It is designed for a wide range of tasks ranging from the\n" @@ -20277,7 +20514,7 @@ msgid "" "styles as well as the optional active quotes are freely configurable." msgstr "" -#: gnu/packages/tex.scm:8816 +#: gnu/packages/tex.scm:9164 msgid "" "The package helps to automate a typical LaTeX\n" "workflow that involves running LaTeX several times and running tools\n" @@ -20297,7 +20534,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8848 +#: gnu/packages/tex.scm:9196 msgid "" "BibLaTeX is a complete reimplementation of the\n" "bibliographic facilities provided by LaTeX. Formatting of the\n" @@ -20323,7 +20560,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8886 +#: gnu/packages/tex.scm:9234 msgid "" "The @code{todonotes} package lets the user mark\n" "things to do later, in a simple and visually appealing way. The\n" @@ -20331,7 +20568,7 @@ msgid "" "of the visual appearance." msgstr "" -#: gnu/packages/tex.scm:8904 +#: gnu/packages/tex.scm:9252 msgid "" "@code{units} is a package for typesetting physical\n" "units in a standard-looking way. The package is based upon\n" @@ -20339,7 +20576,7 @@ msgid "" "included in the @code{units} bundle." msgstr "" -#: gnu/packages/tex.scm:8922 +#: gnu/packages/tex.scm:9270 msgid "" "@code{microtype} provides a LaTeX interface to the\n" "micro-typographic extensions that were introduced by pdfTeX and have\n" @@ -20354,7 +20591,7 @@ msgid "" "the bundle." msgstr "" -#: gnu/packages/tex.scm:8947 +#: gnu/packages/tex.scm:9295 msgid "" "The @code{caption} package provides many ways to\n" "customise the captions in floating environments like figure and table.\n" @@ -20368,7 +20605,7 @@ msgid "" "@code{subcaption} and @code{totalcount} are included in the bundle." msgstr "" -#: gnu/packages/tex.scm:8976 +#: gnu/packages/tex.scm:9324 msgid "" "This package provides a drop-in replacement for the\n" "Symbol font from Adobe's basic set." @@ -20376,7 +20613,7 @@ msgstr "" "Ce paquet fournit un remplaçant direct aux polices Symbol de\n" "l'ensemble Adobe de base." -#: gnu/packages/tex.scm:8994 +#: gnu/packages/tex.scm:9342 msgid "" "The Pazo Math fonts are a family of PostScript fonts\n" "suitable for typesetting mathematics in combination with the Palatino\n" @@ -20390,7 +20627,7 @@ msgid "" "LaTeX macro support is provided in package @code{psnfss}." msgstr "" -#: gnu/packages/tex.scm:9019 +#: gnu/packages/tex.scm:9367 msgid "" "The FPL Fonts provide a set of SC/OsF fonts for URW\n" "Palladio L which are compatible with the Palatino SC/OsF fonts from\n" @@ -20398,7 +20635,7 @@ msgid "" "the @code{psnfss} distribution." msgstr "" -#: gnu/packages/tex.scm:9043 +#: gnu/packages/tex.scm:9391 msgid "" "The @code{arev} package provides type 1 fonts,\n" "virtual fonts and LaTeX packages for using Arev Sans in both text and\n" @@ -20412,7 +20649,7 @@ msgid "" "support packages. Others are cmbright, hvmath and kerkis." msgstr "" -#: gnu/packages/tex.scm:9074 +#: gnu/packages/tex.scm:9422 msgid "" "The Math Design project offers free mathematical\n" "fonts that match with existing text fonts. To date, three free font\n" @@ -20423,7 +20660,7 @@ msgid "" "created by the Greek Font Society)." msgstr "" -#: gnu/packages/tex.scm:9099 +#: gnu/packages/tex.scm:9447 msgid "" "The @code{bera} package contains the Bera Type 1\n" "fonts and files to use the fonts with LaTeX. Bera is a set of three\n" @@ -20432,7 +20669,7 @@ msgid "" "a repackaging, for use with TeX, of the Bitstream Vera family." msgstr "" -#: gnu/packages/tex.scm:9122 +#: gnu/packages/tex.scm:9470 msgid "" "Fourier-GUTenberg is a LaTeX typesetting system\n" "which uses Adobe Utopia as its standard base font. Fourier-GUTenberg\n" @@ -20443,7 +20680,7 @@ msgid "" "trademark of Adobe Systems Incorporated." msgstr "" -#: gnu/packages/tex.scm:9145 +#: gnu/packages/tex.scm:9493 msgid "" "The Adobe Standard Encoding set of the Utopia font\n" "family, as contributed to the X Consortium. The set comprises upright\n" @@ -20452,7 +20689,7 @@ msgid "" "@code{mathdesign} font packages." msgstr "" -#: gnu/packages/tex.scm:9169 +#: gnu/packages/tex.scm:9517 msgid "" "The @code{fontaxes} package adds several new font\n" "axes on top of LaTeX's New Font Selection Scheme (NFSS). In\n" @@ -20461,7 +20698,7 @@ msgid "" "figure versions offered by many professional fonts." msgstr "" -#: gnu/packages/tex.scm:9192 +#: gnu/packages/tex.scm:9540 msgid "" "The bundle comprises: @code{authblk}, which permits\n" "footnote style author/affiliation input in the @command{\\author} command,\n" @@ -20471,7 +20708,7 @@ msgid "" "@code{sublabel}, which permits counters to be subnumbered." msgstr "" -#: gnu/packages/tex.scm:9211 +#: gnu/packages/tex.scm:9559 msgid "" "Many font families available for use with LaTeX are\n" "available at multiple weights. Many Type 1-oriented support packages\n" @@ -20482,7 +20719,7 @@ msgid "" "@code{mweights} package provides a solution to these difficulties." msgstr "" -#: gnu/packages/tex.scm:9237 +#: gnu/packages/tex.scm:9585 msgid "" "Cabin is a humanist sans with four weights, true\n" "italics and small capitals. According to its designer, Pablo\n" @@ -20496,7 +20733,7 @@ msgid "" "use with [pdf]LaTeX." msgstr "" -#: gnu/packages/tex.scm:9268 +#: gnu/packages/tex.scm:9616 msgid "" "The @code{newtx} bundle splits\n" "@code{txfonts.sty} (from the TX fonts distribution) into two\n" @@ -20508,7 +20745,7 @@ msgid "" "mathematics package that matches Libertine text quite well." msgstr "" -#: gnu/packages/tex.scm:9296 +#: gnu/packages/tex.scm:9644 msgid "" "@code{xcharter} repackages Bitstream Charter with an\n" "extended set of features. The extension provides small caps, oldstyle\n" @@ -20517,7 +20754,7 @@ msgid "" "Type 1 and OTF formats, with supporting files as necessary." msgstr "" -#: gnu/packages/tex.scm:9320 +#: gnu/packages/tex.scm:9668 msgid "" "The legacy @emph{texnansi} (TeX and ANSI) encoding\n" "is known in the LaTeX scheme of things as @emph{LY1} encoding. The\n" @@ -20526,14 +20763,14 @@ msgid "" "LY1 encoding." msgstr "" -#: gnu/packages/tex.scm:9349 +#: gnu/packages/tex.scm:9697 msgid "" "This is a LaTeX2ε package to help change the style of any or\n" "all of LaTeX's sectional headers in the article, book, or report classes.\n" "Examples include the addition of rules above or below a section title." msgstr "" -#: gnu/packages/tex.scm:9375 +#: gnu/packages/tex.scm:9723 msgid "" "LaTeX can, by default, only cope with 18 outstanding floats;\n" "any more, and you get the error “too many unprocessed floats”. This package\n" @@ -20544,19 +20781,19 @@ msgid "" "floats merely delays the arrival of the inevitable error message." msgstr "" -#: gnu/packages/tex.scm:9408 +#: gnu/packages/tex.scm:9756 msgid "" "This package provides a command for the LaTeX programmer for\n" "testing whether an argument is empty." msgstr "" -#: gnu/packages/tex.scm:9435 +#: gnu/packages/tex.scm:9783 msgid "" "The pagenote package provides tagged notes on a separate\n" "page (also known as ‘end notes’)." msgstr "" -#: gnu/packages/tex.scm:9463 +#: gnu/packages/tex.scm:9811 msgid "" "The @code{titling} package provides control over the\n" "typesetting of the @code{\\maketitle} command and @code{\\thanks} commands,\n" @@ -20566,7 +20803,7 @@ msgid "" "a physical page." msgstr "" -#: gnu/packages/tex.scm:9493 +#: gnu/packages/tex.scm:9841 msgid "" "This package provides an @code{\\ifoddpage} conditional to\n" "determine if the current page is odd or even. The macro @code{\\checkoddpage}\n" @@ -20576,7 +20813,7 @@ msgid "" "@code{oneside} mode where all pages use the odd page layout." msgstr "" -#: gnu/packages/tex.scm:9523 +#: gnu/packages/tex.scm:9871 msgid "" "The package provides \"store boxes\" whose user interface\n" "matches that of normal LaTeX \"save boxes\", except that the content of a\n" @@ -20585,7 +20822,7 @@ msgid "" "DVI is output, store boxes behave the same as save boxes." msgstr "" -#: gnu/packages/tex.scm:9552 +#: gnu/packages/tex.scm:9900 msgid "" "The package provides macros to collect and process a macro\n" "argument (i.e., something which looks like a macro argument) as a horizontal\n" @@ -20598,13 +20835,13 @@ msgid "" "The macros were designed for use within other macros." msgstr "" -#: gnu/packages/tex.scm:9584 +#: gnu/packages/tex.scm:9932 msgid "" "This package provides macros for adding to, and reordering\n" "the list of graphics file extensions recognised by package graphics." msgstr "" -#: gnu/packages/tex.scm:9618 +#: gnu/packages/tex.scm:9966 msgid "" "The package provides several macros to adjust boxed\n" "content. One purpose is to supplement the standard @code{graphics} package,\n" @@ -20617,7 +20854,7 @@ msgid "" "@code{\\minsizebox}, @code{\\maxsizebox} and @code{\\phantombox}." msgstr "" -#: gnu/packages/tex.scm:9644 +#: gnu/packages/tex.scm:9992 msgid "" "This package provides an environment for colored and\n" "framed text boxes with a heading line. Optionally, such a box may be split in\n" @@ -20628,7 +20865,7 @@ msgid "" "parts." msgstr "" -#: gnu/packages/tex.scm:9675 +#: gnu/packages/tex.scm:10023 msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems. The commands allow for writing\n" @@ -20637,7 +20874,7 @@ msgid "" "styles of inference rules, placement of labels, etc." msgstr "" -#: gnu/packages/tex.scm:9704 +#: gnu/packages/tex.scm:10052 #, fuzzy #| msgid "" #| "This package provides commands to create and check XFS\n" @@ -20649,7 +20886,7 @@ msgstr "" "Ce paquet fournit des fonctions pour créer et vérifier\n" "des systèmes de fichiers XFS." -#: gnu/packages/tex.scm:9724 +#: gnu/packages/tex.scm:10072 msgid "" "This package provides the European currency symbol for the\n" "Euro implemented in METAFONT, using the official European Commission\n" @@ -20658,7 +20895,7 @@ msgid "" "pre-compiled font files, and documentation." msgstr "" -#: gnu/packages/tex.scm:9754 +#: gnu/packages/tex.scm:10102 msgid "" "The @code{kastrup} package provides the\n" "@emph{binhex.tex} file. This file provides expandable macros for both\n" @@ -20668,7 +20905,7 @@ msgid "" "LaTeX and plain TeX." msgstr "" -#: gnu/packages/tex.scm:9774 +#: gnu/packages/tex.scm:10122 msgid "" "This LaTeX package provides a flexible mechanism for translating\n" "individual words into different languages. For example, it can be used to\n" @@ -20679,7 +20916,7 @@ msgid "" "automatically translate more than a few words." msgstr "" -#: gnu/packages/tex.scm:9795 +#: gnu/packages/tex.scm:10143 msgid "" "This package facilitates placing boxes at absolute positions on the\n" "LaTeX page. There are several reasons why this might be useful, but the main\n" @@ -20692,7 +20929,7 @@ msgid "" "accompanied by various configuration commands." msgstr "" -#: gnu/packages/tex.scm:9819 +#: gnu/packages/tex.scm:10167 msgid "" "This package extends the @code{ifthen} package by implementing new\n" "commands to go within the first argument of @code{\\\\ifthenelse}: to test\n" @@ -20702,14 +20939,14 @@ msgid "" "handle complex tests." msgstr "" -#: gnu/packages/tex.scm:9852 +#: gnu/packages/tex.scm:10200 msgid "" "BibTool manipulates BibTeX files. The possibilities of BibTool include\n" "sorting and merging of BibTeX databases, generation of uniform reference keys,\n" "and selecting references used in a publication." msgstr "" -#: gnu/packages/texinfo.scm:87 +#: gnu/packages/texinfo.scm:88 msgid "" "Texinfo is the official documentation format of the GNU project. It\n" "uses a single source file using explicit commands to produce a final document\n" @@ -20719,7 +20956,7 @@ msgid "" "is on expressing the content semantically, avoiding physical markup commands." msgstr "" -#: gnu/packages/texinfo.scm:216 +#: gnu/packages/texinfo.scm:230 msgid "" "Texi2HTML is a Perl script which converts Texinfo source files to HTML\n" "output. It now supports many advanced features, such as internationalization\n" @@ -20734,7 +20971,7 @@ msgid "" "Texi2HTML." msgstr "" -#: gnu/packages/texinfo.scm:283 +#: gnu/packages/texinfo.scm:297 msgid "" "Pinfo is an Info file viewer. Pinfo is similar in use to the Lynx web\n" "browser. You just move across info nodes, and select links, follow them, etc.\n" @@ -21093,6 +21330,12 @@ msgstr "" #: gnu/packages/textutils.scm:1406 msgid "" +"@code{utf-8-lineseparator} provides a tool to efficiently check text\n" +"files for valid UTF-8 use and to report which line endings they use." +msgstr "" + +#: gnu/packages/textutils.scm:1439 +msgid "" "@code{csvdiff} is a diff tool to compute changes between two\n" "CSV files. It can compare CSV files with a million records in under 2\n" "seconds. It is specifically suited for comparing CSV files dumped from\n" @@ -21294,27 +21537,27 @@ msgid "" "visualize your public Git repositories on a web interface." msgstr "" -#: gnu/packages/version-control.scm:1706 +#: gnu/packages/version-control.scm:1699 msgid "" "Pre-commit is a multi-language package manager for pre-commit hooks. You\n" "specify a list of hooks you want and pre-commit manages the installation and\n" "execution of any hook written in any language before every commit." msgstr "" -#: gnu/packages/version-control.scm:1796 +#: gnu/packages/version-control.scm:1789 msgid "" "Mercurial is a free, distributed source control management tool. It\n" "efficiently handles projects of any size and offers an easy and intuitive\n" "interface." msgstr "" -#: gnu/packages/version-control.scm:1823 +#: gnu/packages/version-control.scm:1816 msgid "" "Evolve is a Mercurial extension for faster and safer mutable\n" "history. It implements the changeset evolution concept for Mercurial." msgstr "" -#: gnu/packages/version-control.scm:1879 +#: gnu/packages/version-control.scm:1872 msgid "" "This package provides a Mercurial extension for signing\n" "the changeset hash of commits. The signure is embedded directly in the\n" @@ -21322,7 +21565,7 @@ msgid "" "can be used for signing." msgstr "" -#: gnu/packages/version-control.scm:1914 +#: gnu/packages/version-control.scm:1907 msgid "" "Neon is an HTTP and WebDAV client library, with a C interface and the\n" "following features:\n" @@ -21344,7 +21587,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/version-control.scm:2010 +#: gnu/packages/version-control.scm:2003 msgid "" "@dfn{Subversion} (svn) exists to be recognized and adopted as a\n" "centralized version control system characterized by its\n" @@ -21353,7 +21596,7 @@ msgid "" "projects, from individuals to large-scale enterprise operations." msgstr "" -#: gnu/packages/version-control.scm:2044 +#: gnu/packages/version-control.scm:2037 msgid "" "RCS is the original Revision Control System. It works on a\n" "file-by-file basis, in contrast to subsequent version control systems such as\n" @@ -21362,21 +21605,21 @@ msgid "" "machine." msgstr "" -#: gnu/packages/version-control.scm:2067 +#: gnu/packages/version-control.scm:2060 msgid "" "@code{blame} outputs an annotated revision from each RCS file. An\n" "annotated RCS file describes the revision and date in which each line was\n" "added to the file, and the author of each line." msgstr "" -#: gnu/packages/version-control.scm:2088 +#: gnu/packages/version-control.scm:2081 msgid "" "The @code{rcshist} utility displays the complete revision history of a\n" "set of RCS files including log messages and patches. It can also display the\n" "patch associated with a particular revision of an RCS file." msgstr "" -#: gnu/packages/version-control.scm:2116 +#: gnu/packages/version-control.scm:2109 msgid "" "CVS is a version control system, an important component of Source\n" "Configuration Management (SCM). Using it, you can record the history of\n" @@ -21384,7 +21627,7 @@ msgid "" "RCS, PRCS, and Aegis packages." msgstr "" -#: gnu/packages/version-control.scm:2150 +#: gnu/packages/version-control.scm:2143 msgid "" "This program analyzes a collection of RCS files in a CVS\n" "repository (or outside of one) and, when possible, emits an equivalent history\n" @@ -21397,7 +21640,7 @@ msgid "" "masters from remote CVS hosts." msgstr "" -#: gnu/packages/version-control.scm:2180 +#: gnu/packages/version-control.scm:2173 msgid "" "The vc-dwim package contains two tools, \"vc-dwim\" and \"vc-chlog\".\n" "vc-dwim is a tool that simplifies the task of maintaining a ChangeLog and\n" @@ -21407,21 +21650,21 @@ msgid "" "standards-compliant ChangeLog entries based on the changes that it detects." msgstr "" -#: gnu/packages/version-control.scm:2207 +#: gnu/packages/version-control.scm:2200 msgid "" "Diffstat reads the output of @command{diff} and displays a histogram of\n" "the insertions, deletions, and modifications per file. It is useful for\n" "reviewing large, complex patch files." msgstr "" -#: gnu/packages/version-control.scm:2246 +#: gnu/packages/version-control.scm:2239 msgid "" "GNU CSSC provides a replacement for the legacy Unix source\n" "code control system SCCS. This allows old code still under that system to be\n" "accessed and migrated on modern systems." msgstr "" -#: gnu/packages/version-control.scm:2338 +#: gnu/packages/version-control.scm:2331 msgid "" "Aegis is a project change supervisor, and performs some of\n" "the Software Configuration Management needed in a CASE environment. Aegis\n" @@ -21432,7 +21675,7 @@ msgid "" "any project with more than one developer, is one of Aegis's major functions." msgstr "" -#: gnu/packages/version-control.scm:2412 +#: gnu/packages/version-control.scm:2405 msgid "" "Reposurgeon enables risky operations that version-control\n" "systems don't want to let you do, such as editing past comments and metadata\n" @@ -21443,20 +21686,20 @@ msgid "" "from Subversion to any supported Distributed Version Control System (DVCS)." msgstr "" -#: gnu/packages/version-control.scm:2451 +#: gnu/packages/version-control.scm:2444 msgid "" "Tig is an ncurses text user interface for Git, primarily intended as\n" "a history browser. It can also stage hunks for commit, or colorize the\n" "output of the @code{git} command." msgstr "" -#: gnu/packages/version-control.scm:2474 +#: gnu/packages/version-control.scm:2467 msgid "" "Recursively find the newest file in a file tree and print its\n" "modification time." msgstr "" -#: gnu/packages/version-control.scm:2521 +#: gnu/packages/version-control.scm:2514 msgid "" "Myrepos provides the @code{mr} command, which maps an operation (e.g.,\n" "fetching updates) over a collection of version control repositories. It\n" @@ -21464,14 +21707,14 @@ msgid "" "Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity." msgstr "" -#: gnu/packages/version-control.scm:2558 +#: gnu/packages/version-control.scm:2551 msgid "" "Grokmirror enables replicating large git repository\n" "collections efficiently. Mirrors decide to clone and update repositories\n" "based on a manifest file published by servers." msgstr "" -#: gnu/packages/version-control.scm:2588 +#: gnu/packages/version-control.scm:2581 msgid "" "The @code{b4} command is designed to make it easier to participate in\n" "patch-based workflows for projects that have public-inbox archives.\n" @@ -21485,26 +21728,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/version-control.scm:2635 +#: gnu/packages/version-control.scm:2628 msgid "" "This wrapper around rclone makes any destination supported\n" "by rclone usable with git-annex." msgstr "" -#: gnu/packages/version-control.scm:2689 +#: gnu/packages/version-control.scm:2682 msgid "" "Fossil is a distributed source control management system which supports\n" "access and administration over HTTP CGI or via a built-in HTTP server. It has\n" "a built-in wiki, built-in file browsing, built-in tickets system, etc." msgstr "" -#: gnu/packages/version-control.scm:2720 +#: gnu/packages/version-control.scm:2713 msgid "" "Stagit creates static pages for git repositories, the results can\n" "be served with a HTTP file server of your choice." msgstr "" -#: gnu/packages/version-control.scm:2756 +#: gnu/packages/version-control.scm:2749 msgid "" "@code{gource} provides a software version control\n" "visualization. The repository is displayed as a tree where the root of the\n" @@ -21513,7 +21756,7 @@ msgid "" "specific files and directories." msgstr "" -#: gnu/packages/version-control.scm:2804 +#: gnu/packages/version-control.scm:2797 #, scheme-format msgid "" "SRC (or src) is simple revision control, a version-control system for\n" @@ -21523,7 +21766,7 @@ msgid "" "directory full of HOWTOs." msgstr "" -#: gnu/packages/version-control.scm:2856 +#: gnu/packages/version-control.scm:2849 msgid "" "This Git extension defines a subcommand,\n" "@code{when-merged}, whose core operation is to find the merge that brought a\n" @@ -21531,7 +21774,7 @@ msgid "" "how information about the merge is displayed." msgstr "" -#: gnu/packages/version-control.scm:2900 +#: gnu/packages/version-control.scm:2893 msgid "" "This Git extension defines a subcommand, @code{imerge},\n" "which performs an incremental merge between two branches. Its two primary\n" @@ -21540,20 +21783,20 @@ msgid "" "interrupted, published, and collaborated on while in progress." msgstr "" -#: gnu/packages/version-control.scm:2951 +#: gnu/packages/version-control.scm:2944 msgid "" "Git Large File Storage (LFS) replaces large files such as audio samples,\n" "videos, datasets, and graphics with text pointers inside Git, while storing the\n" "file contents on a remote server." msgstr "" -#: gnu/packages/version-control.scm:2986 +#: gnu/packages/version-control.scm:2979 msgid "" "@code{git open} opens the repository's website from the command-line,\n" "guessing the URL pattern from the @code{origin} remote." msgstr "" -#: gnu/packages/version-control.scm:3040 +#: gnu/packages/version-control.scm:3033 msgid "" "GNU Arch, aka. @code{tla}, was one of the first free distributed\n" "version-control systems (DVCS). It saw its last release in 2006. This\n" @@ -21561,18 +21804,18 @@ msgid "" "for historians." msgstr "" -#: gnu/packages/version-control.scm:3086 +#: gnu/packages/version-control.scm:3079 msgid "" "@code{diff-so-fancy} strives to make your diffs human readable instead\n" "of machine readable. This helps improve code quality and helps you spot\n" "defects faster." msgstr "" -#: gnu/packages/version-control.scm:3142 +#: gnu/packages/version-control.scm:3135 msgid "This package provides a Git implementation library." msgstr "Ce paquet fournit une bibliothèque implémentant git." -#: gnu/packages/version-control.scm:3192 +#: gnu/packages/version-control.scm:3185 msgid "" "This package provides a command-line tool to manage\n" "multiple Git repos.\n" @@ -21587,7 +21830,7 @@ msgid "" "If several repos are related, it helps to see their status together." msgstr "" -#: gnu/packages/version-control.scm:3250 +#: gnu/packages/version-control.scm:3243 #, scheme-format msgid "" "@code{ghq} provides a way to organize remote repository clones, like\n" @@ -21596,7 +21839,7 @@ msgid "" "using the remote repository URL's host and path." msgstr "" -#: gnu/packages/version-control.scm:3295 +#: gnu/packages/version-control.scm:3288 msgid "" "TkRev (formerly TkCVS) is a Tcl/Tk-based graphical interface to the CVS,\n" "Subversion and Git configuration management systems. It will also help with\n" @@ -21605,7 +21848,7 @@ msgid "" "TkDiff is included for browsing and merging your changes." msgstr "" -#: gnu/packages/version-control.scm:3328 +#: gnu/packages/version-control.scm:3321 msgid "" "@command{git filter-repo} is a versatile tool for rewriting history,\n" "which roughly falls into the same space of tool like git filter-branch but\n" @@ -21643,7 +21886,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:865 +#: gnu/packages/virtualization.scm:870 msgid "" "Ganeti is a virtual machine management tool built on top of existing\n" "virtualization technologies such as Xen or KVM. Ganeti controls:\n" @@ -21660,19 +21903,19 @@ msgid "" "commodity hardware." msgstr "" -#: gnu/packages/virtualization.scm:902 +#: gnu/packages/virtualization.scm:907 msgid "" "This package provides a guest OS definition for Ganeti that uses\n" "Guix to build virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:996 +#: gnu/packages/virtualization.scm:1001 msgid "" "This package provides a guest OS definition for Ganeti. It installs\n" "Debian or a derivative using @command{debootstrap}." msgstr "" -#: gnu/packages/virtualization.scm:1056 +#: gnu/packages/virtualization.scm:1061 msgid "" "libosinfo is a GObject based library API for managing\n" "information about operating systems, hypervisors and the (virtual) hardware\n" @@ -21682,21 +21925,21 @@ msgid "" "all common programming languages. Vala bindings are also provided." msgstr "" -#: gnu/packages/virtualization.scm:1105 +#: gnu/packages/virtualization.scm:1109 msgid "" "LXC is a userspace interface for the Linux kernel containment features.\n" "Through a powerful API and simple tools, it lets Linux users easily create and\n" "manage system or application containers." msgstr "" -#: gnu/packages/virtualization.scm:1131 +#: gnu/packages/virtualization.scm:1135 msgid "" "LXCFS is a small FUSE file system written with the intention\n" "of making Linux containers feel more like a virtual machine.\n" "It started as a side project of LXC but can be used by any run-time." msgstr "" -#: gnu/packages/virtualization.scm:1239 +#: gnu/packages/virtualization.scm:1237 msgid "" "LXD is a next generation system container manager. It\n" "offers a user experience similar to virtual machines but using Linux\n" @@ -21705,7 +21948,7 @@ msgid "" "pretty simple, REST API." msgstr "" -#: gnu/packages/virtualization.scm:1332 +#: gnu/packages/virtualization.scm:1330 msgid "" "Libvirt is a C toolkit to interact with the virtualization\n" "capabilities of recent versions of Linux. The library aims at providing long\n" @@ -21713,7 +21956,7 @@ msgid "" "to integrate other virtualization mechanisms if needed." msgstr "" -#: gnu/packages/virtualization.scm:1363 +#: gnu/packages/virtualization.scm:1359 msgid "" "libvirt-glib wraps the libvirt library to provide a\n" "high-level object-oriented API better suited for glib-based applications, via\n" @@ -21726,13 +21969,13 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/virtualization.scm:1407 +#: gnu/packages/virtualization.scm:1403 msgid "" "This package provides Python bindings to the libvirt\n" "virtualization library." msgstr "" -#: gnu/packages/virtualization.scm:1520 +#: gnu/packages/virtualization.scm:1516 msgid "" "The virt-manager application is a desktop user interface for managing\n" "virtual machines through libvirt. It primarily targets KVM VMs, but also\n" @@ -21740,7 +21983,7 @@ msgid "" "domains, their live performance and resource utilization statistics." msgstr "" -#: gnu/packages/virtualization.scm:1620 +#: gnu/packages/virtualization.scm:1616 msgid "" "Using this tool, you can freeze a running application (or\n" "part of it) and checkpoint it to a hard drive as a collection of files. You\n" @@ -21749,14 +21992,14 @@ msgid "" "mainly implemented in user space." msgstr "" -#: gnu/packages/virtualization.scm:1647 +#: gnu/packages/virtualization.scm:1643 msgid "" "qmpbackup is designed to create and restore full and\n" "incremental backups of running QEMU virtual machines via QMP, the QEMU\n" "Machine Protocol." msgstr "" -#: gnu/packages/virtualization.scm:1731 +#: gnu/packages/virtualization.scm:1727 msgid "" "Looking Glass allows the use of a KVM (Kernel-based Virtual\n" "Machine) configured for VGA PCI Pass-through without an attached physical\n" @@ -21764,7 +22007,7 @@ msgid "" "main monitor/GPU." msgstr "" -#: gnu/packages/virtualization.scm:1783 +#: gnu/packages/virtualization.scm:1779 msgid "" "@command{runc} is a command line client for running applications\n" "packaged according to the\n" @@ -21773,13 +22016,13 @@ msgid "" "Open Container Initiative specification." msgstr "" -#: gnu/packages/virtualization.scm:1832 +#: gnu/packages/virtualization.scm:1828 msgid "" "@command{umoci} is a tool that allows for high-level modification of an\n" "Open Container Initiative (OCI) image layout and its tagged images." msgstr "" -#: gnu/packages/virtualization.scm:1886 +#: gnu/packages/virtualization.scm:1882 msgid "" "@command{skopeo} is a command line utility providing various operations\n" "with container images and container image registries. It can:\n" @@ -21800,14 +22043,14 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:1922 +#: gnu/packages/virtualization.scm:1918 msgid "" "Python-vagrant is a Python module that provides a thin wrapper around the\n" "@code{vagrant} command line executable, allowing programmatic control of Vagrant\n" "virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:1977 +#: gnu/packages/virtualization.scm:1979 msgid "" "Bubblewrap is aimed at running applications in a sandbox,\n" "restricting their access to parts of the operating system or user data such as\n" @@ -21817,7 +22060,7 @@ msgid "" "by default and can be made read-only." msgstr "" -#: gnu/packages/virtualization.scm:2004 +#: gnu/packages/virtualization.scm:2006 msgid "" "Bochs is an emulator which can emulate Intel x86 CPU, common I/O\n" "devices, and a custom BIOS. It can also be compiled to emulate many different\n" @@ -21826,7 +22069,7 @@ msgid "" "DOS or Microsoft Windows." msgstr "" -#: gnu/packages/virtualization.scm:2210 +#: gnu/packages/virtualization.scm:2212 msgid "" "This package provides the Xen Virtual Machine Monitor\n" "which is a hypervisor." @@ -21834,58 +22077,61 @@ msgstr "" "Ce paquet fournit le moniteur de machines virtuelles Xen\n" "qui est un hyperviseur." -#: gnu/packages/virtualization.scm:2242 +#: gnu/packages/virtualization.scm:2244 msgid "" "This package contains a set of tools to assist\n" "administrators and developers in managing the database." msgstr "" -#: gnu/packages/virtualization.scm:2275 +#: gnu/packages/virtualization.scm:2277 msgid "" "Osinfo-db provides the database files for use with the\n" "libosinfo library. It provides information about guest operating systems for\n" "use with virtualization provisioning tools" msgstr "" -#: gnu/packages/virtualization.scm:2317 +#: gnu/packages/virtualization.scm:2319 msgid "" "@code{transient} is a wrapper for QEMU allowing the creation of virtual\n" "machines with shared folder, ssh, and disk creation support." msgstr "" -#: gnu/packages/webkit.scm:93 +#: gnu/packages/webkit.scm:94 msgid "" "LibWPE is general-purpose library specifically developed for\n" "the WPE-flavored port of WebKit." msgstr "" -#: gnu/packages/webkit.scm:119 +#: gnu/packages/webkit.scm:120 msgid "" "This package provides a backend implementation for the WPE WebKit\n" "engine that uses Wayland for graphics output." msgstr "" -#: gnu/packages/webkit.scm:216 +#: gnu/packages/webkit.scm:227 msgid "" "WPE WebKit allows embedders to create simple and performant\n" "systems based on Web platform technologies. It is designed with hardware\n" "acceleration in mind, leveraging common 3D graphics APIs for best performance." msgstr "" -#: gnu/packages/webkit.scm:351 +#: gnu/packages/webkit.scm:355 msgid "" "WebKitGTK+ is a full-featured port of the WebKit rendering engine,\n" "suitable for projects requiring any kind of web integration, from hybrid\n" -"HTML/CSS applications to full-fledged web browsers." +"HTML/CSS applications to full-fledged web browsers. WebKitGTK+ video playing\n" +"capabilities can be extended through the use of GStreamer plugins (not\n" +"propagated by default) such as @code{gst-plugins-good} and\n" +"@code{gst-plugins-bad}." msgstr "" -#: gnu/packages/web.scm:250 +#: gnu/packages/web.scm:251 msgid "" "Qhttp is a light-weight and asynchronous HTTP library\n" "(both server & client) in Qt5 and C++14." msgstr "" -#: gnu/packages/web.scm:280 +#: gnu/packages/web.scm:281 msgid "" "The Apache HTTP Server Project is a collaborative software development\n" "effort aimed at creating a robust, commercial-grade, featureful, and\n" @@ -21895,14 +22141,14 @@ msgid "" "and its related documentation." msgstr "" -#: gnu/packages/web.scm:314 +#: gnu/packages/web.scm:315 msgid "" "The mod_wsgi module for the Apache HTTPD Server adds support for running\n" "applications that support the Python @acronym{WSGI, Web Server Gateway\n" "Interface} specification." msgstr "" -#: gnu/packages/web.scm:356 +#: gnu/packages/web.scm:357 msgid "" "Monolith bundles any web page into a single HTML file.\n" "\n" @@ -21915,38 +22161,38 @@ msgid "" "the same, being completely separated from the Internet." msgstr "" -#: gnu/packages/web.scm:460 +#: gnu/packages/web.scm:461 msgid "" "Nginx (\"engine X\") is a high-performance web and reverse proxy server\n" "created by Igor Sysoev. It can be used both as a stand-alone web server\n" "and as a proxy to reduce the load on back-end HTTP or mail servers." msgstr "" -#: gnu/packages/web.scm:518 +#: gnu/packages/web.scm:519 msgid "This package provides HTML documentation for the nginx web server." msgstr "Ce paquet fournit la documentation HTML du serveur web nginx." -#: gnu/packages/web.scm:647 +#: gnu/packages/web.scm:648 msgid "" "This nginx module parses the Accept-Language field in HTTP headers and\n" "chooses the most suitable locale for the user from the list of locales\n" "supported at your website." msgstr "" -#: gnu/packages/web.scm:694 +#: gnu/packages/web.scm:695 msgid "" "XSLScript is a terse notation for writing complex XSLT stylesheets.\n" "This is modified version, specifically intended for use with the NGinx\n" "documentation." msgstr "" -#: gnu/packages/web.scm:767 +#: gnu/packages/web.scm:768 msgid "" "This NGINX module provides a scripting support with Lua\n" "programming language." msgstr "" -#: gnu/packages/web.scm:820 +#: gnu/packages/web.scm:821 msgid "" "This NGINX module provides streaming with the @acronym{RTMP,\n" "Real-Time Messaging Protocol}, @acronym{DASH, Dynamic Adaptive Streaming over HTTP},\n" @@ -21956,7 +22202,7 @@ msgid "" "stream. Remote control of the module is possible over HTTP." msgstr "" -#: gnu/packages/web.scm:882 +#: gnu/packages/web.scm:883 msgid "" "Lighttpd is a secure, fast, compliant, and very flexible web-server that\n" "has been optimized for high-performance environments. It has a very low\n" @@ -21964,41 +22210,41 @@ msgid "" "CGI, authentication, output compression, URL rewriting and many more." msgstr "" -#: gnu/packages/web.scm:910 +#: gnu/packages/web.scm:911 msgid "" "FastCGI is a language-independent, scalable extension to CGI\n" "that provides high performance without the limitations of server specific\n" "APIs." msgstr "" -#: gnu/packages/web.scm:948 +#: gnu/packages/web.scm:949 msgid "" "Fcgiwrap is a simple server for running CGI applications\n" "over FastCGI. It hopes to provide clean CGI support to Nginx (and other web\n" "servers that may need it)." msgstr "" -#: gnu/packages/web.scm:977 +#: gnu/packages/web.scm:978 msgid "" "Starman is a PSGI perl web server that has unique features\n" "such as high performance, preforking, signal support, superdaemon awareness,\n" "and UNIX socket support." msgstr "" -#: gnu/packages/web.scm:1010 +#: gnu/packages/web.scm:1011 msgid "" "IcedTea-Web is an implementation of the @dfn{Java Network Launching\n" "Protocol}, also known as Java Web Start. This package provides tools and\n" "libraries for working with JNLP applets." msgstr "" -#: gnu/packages/web.scm:1035 +#: gnu/packages/web.scm:1036 msgid "" "Jansson is a C library for encoding, decoding and manipulating JSON\n" "data." msgstr "" -#: gnu/packages/web.scm:1055 +#: gnu/packages/web.scm:1056 msgid "" "JSON-C implements a reference counting object model that allows you to\n" "easily construct JSON objects in C, output them as JSON-formatted strings and\n" @@ -22006,7 +22252,7 @@ msgid "" "It aims to conform to RFC 7159." msgstr "" -#: gnu/packages/web.scm:1131 +#: gnu/packages/web.scm:1132 msgid "" "This package provides a very low footprint JSON parser\n" "written in portable ANSI C.\n" @@ -22019,21 +22265,21 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:1176 +#: gnu/packages/web.scm:1177 msgid "" "QJson is a Qt-based library that maps JSON data to\n" "@code{QVariant} objects. JSON arrays will be mapped to @code{QVariantList}\n" "instances, while JSON's objects will be mapped to @code{QVariantMap}." msgstr "" -#: gnu/packages/web.scm:1227 +#: gnu/packages/web.scm:1228 msgid "" "QOAuth is an attempt to support interaction with\n" "OAuth-powered network services in a Qt way, i.e. simply, clearly and\n" "efficiently. It gives the application developer no more than 4 methods." msgstr "" -#: gnu/packages/web.scm:1339 +#: gnu/packages/web.scm:1340 msgid "" "Krona is a flexible tool for exploring the relative proportions of\n" "hierarchical data, such as metagenomic classifications, using a radial,\n" @@ -22042,26 +22288,26 @@ msgid "" "current version of any major web browser." msgstr "" -#: gnu/packages/web.scm:1380 +#: gnu/packages/web.scm:1381 msgid "" "RapidJSON is a fast JSON parser/generator for C++ with both SAX/DOM\n" "style API." msgstr "" -#: gnu/packages/web.scm:1409 +#: gnu/packages/web.scm:1410 msgid "" "Yet Another JSON Library (YAJL) is a small event-driven (SAX-style) JSON\n" "parser written in ANSI C and a small validating JSON generator." msgstr "" -#: gnu/packages/web.scm:1439 +#: gnu/packages/web.scm:1440 msgid "" "Libwebsockets is a library that allows C programs to establish client\n" "and server WebSockets connections---a protocol layered above HTTP that allows\n" "for efficient socket-like bidirectional reliable communication channels." msgstr "" -#: gnu/packages/web.scm:1468 +#: gnu/packages/web.scm:1469 msgid "" "WABT (pronounced: wabbit) is a suite of tools for\n" "WebAssembly, including:\n" @@ -22086,7 +22332,7 @@ msgid "" "other systems that want to manipulate WebAssembly files." msgstr "" -#: gnu/packages/web.scm:1518 +#: gnu/packages/web.scm:1519 msgid "" "WebSocket++ is a C++ library that can be used to implement\n" "WebSocket functionality. The goals of the project are to provide a WebSocket\n" @@ -22094,7 +22340,7 @@ msgid "" "high performance." msgstr "" -#: gnu/packages/web.scm:1558 +#: gnu/packages/web.scm:1559 msgid "" "@code{Wslay} is an event-based C library for the WebSocket\n" "protocol version 13, described in RFC 6455. Besides a high-level API it\n" @@ -22103,7 +22349,7 @@ msgid "" "perform the opening handshake in HTTP." msgstr "" -#: gnu/packages/web.scm:1588 +#: gnu/packages/web.scm:1589 msgid "" "A \"public suffix\" is a domain name under which Internet users can\n" "directly register own names.\n" @@ -22121,20 +22367,20 @@ msgid "" "UTS#46." msgstr "" -#: gnu/packages/web.scm:1633 +#: gnu/packages/web.scm:1634 msgid "" "HTML Tidy is a command-line tool and C library that can be\n" "used to validate and fix HTML data." msgstr "" -#: gnu/packages/web.scm:1680 +#: gnu/packages/web.scm:1681 msgid "" "The esbuild tool provides a unified bundler, transpiler and\n" "minifier. It packages up JavaScript and TypeScript code, along with JSON\n" "and other data, for distribution on the web." msgstr "" -#: gnu/packages/web.scm:1716 +#: gnu/packages/web.scm:1717 msgid "" "Tinyproxy is a light-weight HTTP/HTTPS proxy\n" "daemon. Designed from the ground up to be fast and yet small, it is an ideal\n" @@ -22143,14 +22389,14 @@ msgid "" "unavailable." msgstr "" -#: gnu/packages/web.scm:1751 +#: gnu/packages/web.scm:1752 msgid "" "Polipo is a small caching web proxy (web cache, HTTP proxy, and proxy\n" "server). It was primarily designed to be used by one person or a small group\n" "of people." msgstr "" -#: gnu/packages/web.scm:1779 +#: gnu/packages/web.scm:1780 msgid "" "Websockify translates WebSockets traffic to normal socket\n" "traffic. Websockify accepts the WebSockets handshake, parses it, and then\n" @@ -22158,7 +22404,7 @@ msgid "" "directions." msgstr "" -#: gnu/packages/web.scm:1806 +#: gnu/packages/web.scm:1807 msgid "" "WWWOFFLE is a proxy web server that is especially good for\n" "intermittent internet links. It can cache HTTP, HTTPS, FTP, and finger\n" @@ -22167,7 +22413,7 @@ msgid "" "changes, and much more." msgstr "" -#: gnu/packages/web.scm:1832 +#: gnu/packages/web.scm:1833 msgid "" "liboauth is a collection of C functions implementing the OAuth API.\n" "liboauth provides functions to escape and encode strings according to OAuth\n" @@ -22176,25 +22422,25 @@ msgid "" "hash/signatures." msgstr "" -#: gnu/packages/web.scm:1855 +#: gnu/packages/web.scm:1856 msgid "" "This package contains support scripts called by libquvi to\n" "parse media stream properties." msgstr "" -#: gnu/packages/web.scm:1889 +#: gnu/packages/web.scm:1890 msgid "" "libquvi is a library with a C API for parsing media stream\n" "URLs and extracting their actual media files." msgstr "" -#: gnu/packages/web.scm:1911 +#: gnu/packages/web.scm:1912 msgid "" "quvi is a command-line-tool suite to extract media files\n" "from streaming URLs. It is a command-line wrapper for the libquvi library." msgstr "" -#: gnu/packages/web.scm:1983 +#: gnu/packages/web.scm:1984 msgid "" "serf is a C-based HTTP client library built upon the Apache Portable\n" "Runtime (APR) library. It multiplexes connections, running the read/write\n" @@ -22202,7 +22448,7 @@ msgid "" "minimum to provide high performance operation." msgstr "" -#: gnu/packages/web.scm:2018 +#: gnu/packages/web.scm:2019 msgid "" "LibSass is a @acronym{SASS,Syntactically awesome style sheets} compiler\n" "library designed for portability and efficiency. To actually compile SASS\n" @@ -22210,29 +22456,29 @@ msgid "" "@var{sassc} for example." msgstr "" -#: gnu/packages/web.scm:2067 +#: gnu/packages/web.scm:2068 msgid "" "SassC is a compiler written in C for the CSS pre-processor\n" "language known as SASS." msgstr "" -#: gnu/packages/web.scm:2112 +#: gnu/packages/web.scm:2113 msgid "" "This module provides methods to compile a log format string\n" "to perl-code, for faster generation of access_log lines." msgstr "" -#: gnu/packages/web.scm:2140 +#: gnu/packages/web.scm:2141 msgid "Authen::SASL provides an SASL authentication framework." msgstr "" -#: gnu/packages/web.scm:2163 +#: gnu/packages/web.scm:2164 msgid "" "This Catalyst action implements a sensible default end\n" "action, which will forward to the first available view." msgstr "" -#: gnu/packages/web.scm:2195 +#: gnu/packages/web.scm:2196 msgid "" "This Action handles doing automatic method dispatching for\n" "REST requests. It takes a normal Catalyst action, and changes the dispatch to\n" @@ -22241,20 +22487,20 @@ msgid "" "regular method." msgstr "" -#: gnu/packages/web.scm:2226 +#: gnu/packages/web.scm:2227 msgid "" "The Catalyst::Authentication::Store::DBIx::Class class\n" "provides access to authentication information stored in a database via\n" "DBIx::Class." msgstr "" -#: gnu/packages/web.scm:2252 +#: gnu/packages/web.scm:2253 msgid "" "Catalyst::Component::InstancePerContext returns a new\n" "instance of a component on each request." msgstr "" -#: gnu/packages/web.scm:2288 +#: gnu/packages/web.scm:2289 msgid "" "The Catalyst-Devel distribution includes a variety of\n" "modules useful for the development of Catalyst applications, but not required\n" @@ -22264,7 +22510,7 @@ msgid "" "modules." msgstr "" -#: gnu/packages/web.scm:2316 +#: gnu/packages/web.scm:2317 msgid "" "Dispatch type managing path-matching behaviour using\n" "regexes. Regex dispatch types have been deprecated and removed from Catalyst\n" @@ -22274,20 +22520,20 @@ msgid "" "when the dispatch type is first seen in your application." msgstr "" -#: gnu/packages/web.scm:2363 +#: gnu/packages/web.scm:2364 msgid "" "This is a Catalyst Model for DBIx::Class::Schema-based\n" "Models." msgstr "" -#: gnu/packages/web.scm:2385 +#: gnu/packages/web.scm:2386 msgid "" "This Catalyst plugin enables you to create \"access logs\"\n" "from within a Catalyst application instead of requiring a webserver to do it\n" "for you. It will work even with Catalyst debug logging turned off." msgstr "" -#: gnu/packages/web.scm:2419 +#: gnu/packages/web.scm:2420 msgid "" "The authentication plugin provides generic user support for\n" "Catalyst apps. It is the basis for both authentication (checking the user is\n" @@ -22295,32 +22541,32 @@ msgid "" "system authorises them to do)." msgstr "" -#: gnu/packages/web.scm:2447 +#: gnu/packages/web.scm:2448 msgid "" "Catalyst::Plugin::Authorization::Roles provides role-based\n" "authorization for Catalyst based on Catalyst::Plugin::Authentication." msgstr "" -#: gnu/packages/web.scm:2469 +#: gnu/packages/web.scm:2470 msgid "" "This plugin creates and validates Captcha images for\n" "Catalyst." msgstr "" -#: gnu/packages/web.scm:2493 +#: gnu/packages/web.scm:2494 msgid "" "This module will attempt to load find and load configuration\n" "files of various types. Currently it supports YAML, JSON, XML, INI and Perl\n" "formats." msgstr "" -#: gnu/packages/web.scm:2522 +#: gnu/packages/web.scm:2523 msgid "" "This plugin links the two pieces required for session\n" "management in web applications together: the state, and the store." msgstr "" -#: gnu/packages/web.scm:2548 +#: gnu/packages/web.scm:2549 msgid "" "In order for Catalyst::Plugin::Session to work, the session\n" "ID needs to be stored on the client, and the session data needs to be stored\n" @@ -22328,14 +22574,14 @@ msgid "" "cookie mechanism." msgstr "" -#: gnu/packages/web.scm:2578 +#: gnu/packages/web.scm:2579 msgid "" "Catalyst::Plugin::Session::Store::FastMmap is a fast session\n" "storage plugin for Catalyst that uses an mmap'ed file to act as a shared\n" "memory interprocess cache. It is based on Cache::FastMmap." msgstr "" -#: gnu/packages/web.scm:2602 +#: gnu/packages/web.scm:2603 msgid "" "This plugin enhances the standard Catalyst debug screen by\n" "including a stack trace of your application up to the point where the error\n" @@ -22343,7 +22589,7 @@ msgid "" "number, file name, and code context surrounding the line number." msgstr "" -#: gnu/packages/web.scm:2628 +#: gnu/packages/web.scm:2629 msgid "" "The Static::Simple plugin is designed to make serving static\n" "content in your application during development quick and easy, without\n" @@ -22354,7 +22600,7 @@ msgid "" "MIME type directly to the browser, without being processed through Catalyst." msgstr "" -#: gnu/packages/web.scm:2687 +#: gnu/packages/web.scm:2688 msgid "" "Catalyst is a modern framework for making web applications.\n" "It is designed to make it easy to manage the various tasks you need to do to\n" @@ -22362,7 +22608,7 @@ msgid "" "\"plug in\" existing Perl modules that do what you need." msgstr "" -#: gnu/packages/web.scm:2715 +#: gnu/packages/web.scm:2716 msgid "" "This module is a Moose::Role which allows you more\n" "flexibility in your application's deployment configurations when deployed\n" @@ -22370,26 +22616,26 @@ msgid "" "replaced with the contents of the X-Request-Base header." msgstr "" -#: gnu/packages/web.scm:2743 +#: gnu/packages/web.scm:2744 msgid "" "The purpose of this module is to provide a method for\n" "downloading data into many supportable formats. For example, downloading a\n" "table based report in a variety of formats (CSV, HTML, etc.)." msgstr "" -#: gnu/packages/web.scm:2767 +#: gnu/packages/web.scm:2768 msgid "" "Catalyst::View::JSON is a Catalyst View handler that returns\n" "stash data in JSON format." msgstr "" -#: gnu/packages/web.scm:2793 +#: gnu/packages/web.scm:2794 msgid "" "This module is a Catalyst view class for the Template\n" "Toolkit." msgstr "" -#: gnu/packages/web.scm:2821 +#: gnu/packages/web.scm:2822 msgid "" "Adds a \"COMPONENT\" in Catalyst::Component method to your\n" "Catalyst component base class that reads the optional \"traits\" parameter\n" @@ -22398,19 +22644,19 @@ msgid "" "MooseX::Traits::Pluggable." msgstr "" -#: gnu/packages/web.scm:2845 +#: gnu/packages/web.scm:2846 msgid "" "CatalystX::RoleApplicator applies roles to Catalyst\n" "application classes." msgstr "" -#: gnu/packages/web.scm:2870 +#: gnu/packages/web.scm:2871 msgid "" "This module provides a Catalyst extension to replace the\n" "development server with Starman." msgstr "" -#: gnu/packages/web.scm:2892 +#: gnu/packages/web.scm:2893 msgid "" "CGI.pm is a stable, complete and mature solution for\n" "processing and preparing HTTP requests and responses. Major features include\n" @@ -22419,44 +22665,44 @@ msgid "" "headers." msgstr "" -#: gnu/packages/web.scm:2919 +#: gnu/packages/web.scm:2920 msgid "" "@code{CGI::FormBuilder} provides an easy way to generate and process CGI\n" "form-based applications." msgstr "" -#: gnu/packages/web.scm:2946 +#: gnu/packages/web.scm:2947 msgid "" "@code{CGI::Session} provides modular session management system across\n" "HTTP requests." msgstr "" -#: gnu/packages/web.scm:2967 +#: gnu/packages/web.scm:2968 msgid "" "CGI::Simple provides a relatively lightweight drop in\n" "replacement for CGI.pm. It shares an identical OO interface to CGI.pm for\n" "parameter parsing, file upload, cookie handling and header generation." msgstr "" -#: gnu/packages/web.scm:2989 +#: gnu/packages/web.scm:2990 msgid "" "This is a module for building structured data from CGI\n" "inputs, in a manner reminiscent of how PHP does." msgstr "" -#: gnu/packages/web.scm:3012 +#: gnu/packages/web.scm:3013 msgid "" "This module provides functions that deal with the date\n" "formats used by the HTTP protocol." msgstr "" -#: gnu/packages/web.scm:3033 +#: gnu/packages/web.scm:3034 msgid "" "Digest::MD5::File is a Perl extension for getting MD5 sums\n" "for files and urls." msgstr "" -#: gnu/packages/web.scm:3053 +#: gnu/packages/web.scm:3054 msgid "" "The POSIX locale system is used to specify both the language\n" "conventions requested by the user and the preferred character set to\n" @@ -22468,66 +22714,66 @@ msgid "" "with Encode::decode(locale => $string)." msgstr "" -#: gnu/packages/web.scm:3086 +#: gnu/packages/web.scm:3087 msgid "" "@code{Feed::Find} implements feed auto-discovery for finding\n" "syndication feeds, given a URI. It will discover the following feed formats:\n" "RSS 0.91, RSS 1.0, RSS 2.0, Atom." msgstr "" -#: gnu/packages/web.scm:3109 +#: gnu/packages/web.scm:3110 msgid "" "The File::Listing module exports a single function called parse_dir(),\n" "which can be used to parse directory listings." msgstr "" -#: gnu/packages/web.scm:3142 +#: gnu/packages/web.scm:3143 msgid "" "Finance::Quote gets stock quotes from various internet sources, including\n" "Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange." msgstr "" -#: gnu/packages/web.scm:3165 +#: gnu/packages/web.scm:3166 msgid "" "This is a Perl extension for using GSSAPI C bindings as\n" "described in RFC 2744." msgstr "" -#: gnu/packages/web.scm:3187 +#: gnu/packages/web.scm:3188 msgid "" "HTML::Element::Extended is a Perl extension for manipulating a table\n" "composed of HTML::Element style components." msgstr "" -#: gnu/packages/web.scm:3208 +#: gnu/packages/web.scm:3209 msgid "" "Objects of the HTML::Form class represents a single HTML\n" "
...
instance." msgstr "" -#: gnu/packages/web.scm:3241 +#: gnu/packages/web.scm:3242 msgid "@code{HTML::Scrubber} Perl extension for scrubbing/sanitizing HTML." msgstr "" -#: gnu/packages/web.scm:3260 +#: gnu/packages/web.scm:3261 msgid "" "HTML::Lint is a pure-Perl HTML parser and checker for\n" "syntactic legitmacy." msgstr "" -#: gnu/packages/web.scm:3282 +#: gnu/packages/web.scm:3283 msgid "" "HTML::TableExtract is a Perl module for extracting the content contained\n" "in tables within an HTML document, either as text or encoded element trees." msgstr "" -#: gnu/packages/web.scm:3305 +#: gnu/packages/web.scm:3306 msgid "" "This distribution contains a suite of modules for\n" "representing, creating, and extracting information from HTML syntax trees." msgstr "" -#: gnu/packages/web.scm:3327 +#: gnu/packages/web.scm:3328 msgid "" "Objects of the HTML::Parser class will recognize markup and separate\n" "it from plain text (alias data content) in HTML documents. As different\n" @@ -22535,13 +22781,13 @@ msgid "" "are invoked." msgstr "" -#: gnu/packages/web.scm:3349 +#: gnu/packages/web.scm:3350 msgid "" "The HTML::Tagset module contains several data tables useful in various\n" "kinds of HTML parsing operations." msgstr "" -#: gnu/packages/web.scm:3370 +#: gnu/packages/web.scm:3371 msgid "" "This module attempts to make using HTML templates simple and natural.\n" "It extends standard HTML with a few new HTML-esque tags: @code{},\n" @@ -22552,40 +22798,40 @@ msgid "" "you to separate design from the data." msgstr "" -#: gnu/packages/web.scm:3398 +#: gnu/packages/web.scm:3399 msgid "" "HTTP::Body parses chunks of HTTP POST data and supports\n" "application/octet-stream, application/json, application/x-www-form-urlencoded,\n" "and multipart/form-data." msgstr "" -#: gnu/packages/web.scm:3421 +#: gnu/packages/web.scm:3422 msgid "" "This module implements a minimalist HTTP user agent cookie\n" "jar in conformance with RFC 6265 ." msgstr "" -#: gnu/packages/web.scm:3443 +#: gnu/packages/web.scm:3444 msgid "" "The HTTP::Cookies class is for objects that represent a cookie jar,\n" "that is, a database of all the HTTP cookies that a given LWP::UserAgent\n" "object knows about." msgstr "" -#: gnu/packages/web.scm:3466 +#: gnu/packages/web.scm:3467 msgid "" "Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen\n" "on a socket for incoming requests. The HTTP::Daemon is a subclass of\n" "IO::Socket::INET, so you can perform socket operations directly on it too." msgstr "" -#: gnu/packages/web.scm:3487 +#: gnu/packages/web.scm:3488 msgid "" "The HTTP::Date module provides functions that deal with date formats\n" "used by the HTTP protocol (and then some more)." msgstr "" -#: gnu/packages/web.scm:3508 +#: gnu/packages/web.scm:3509 msgid "" "@code{HTTP::Lite} is a stand-alone lightweight\n" "HTTP/1.1 implementation for perl. It is intended for use in\n" @@ -22599,11 +22845,11 @@ msgid "" "processing of request data as it arrives." msgstr "" -#: gnu/packages/web.scm:3541 +#: gnu/packages/web.scm:3542 msgid "An HTTP::Message object contains some headers and a content body." msgstr "" -#: gnu/packages/web.scm:3562 +#: gnu/packages/web.scm:3563 msgid "" "The HTTP::Negotiate module provides a complete implementation of the\n" "HTTP content negotiation algorithm specified in\n" @@ -22613,7 +22859,7 @@ msgid "" "fields in the request." msgstr "" -#: gnu/packages/web.scm:3587 +#: gnu/packages/web.scm:3588 msgid "" "This is an HTTP request parser. It takes chunks of text as\n" "received and returns a @code{hint} as to what is required, or returns the\n" @@ -22621,33 +22867,33 @@ msgid "" "supported." msgstr "" -#: gnu/packages/web.scm:3610 +#: gnu/packages/web.scm:3611 msgid "" "HTTP::Parser::XS is a fast, primitive HTTP request/response\n" "parser." msgstr "" -#: gnu/packages/web.scm:3631 +#: gnu/packages/web.scm:3632 msgid "" "This module provides a convenient way to set up a CGI\n" "environment from an HTTP::Request." msgstr "" -#: gnu/packages/web.scm:3665 +#: gnu/packages/web.scm:3666 msgid "" "HTTP::Server::Simple is a simple standalone HTTP daemon with\n" "no non-core module dependencies. It can be used for building a standalone\n" "http-based UI to your existing tools." msgstr "" -#: gnu/packages/web.scm:3688 +#: gnu/packages/web.scm:3689 msgid "" "This is a very simple HTTP/1.1 client, designed for doing\n" "simple requests without the overhead of a large framework like LWP::UserAgent.\n" "It supports proxies and redirection. It also correctly resumes after EINTR." msgstr "" -#: gnu/packages/web.scm:3713 +#: gnu/packages/web.scm:3714 msgid "" "@code{HTTP::Tinyish} is a wrapper module for @acronym{LWP,libwww-perl},\n" "@code{HTTP::Tiny}, curl and wget.\n" @@ -22655,20 +22901,20 @@ msgid "" "It provides an API compatible to HTTP::Tiny." msgstr "" -#: gnu/packages/web.scm:3735 +#: gnu/packages/web.scm:3736 msgid "" "IO::HTML provides an easy way to open a file containing HTML while\n" "automatically determining its encoding. It uses the HTML5 encoding sniffing\n" "algorithm specified in section 8.2.2.1 of the draft standard." msgstr "" -#: gnu/packages/web.scm:3755 +#: gnu/packages/web.scm:3756 msgid "" "This module provides a protocol-independent way to use IPv4\n" "and IPv6 sockets, intended as a replacement for IO::Socket::INET." msgstr "" -#: gnu/packages/web.scm:3777 +#: gnu/packages/web.scm:3778 msgid "" "IO::Socket::SSL makes using SSL/TLS much easier by wrapping the\n" "necessary functionality into the familiar IO::Socket interface and providing\n" @@ -22677,7 +22923,7 @@ msgid "" "select or poll." msgstr "" -#: gnu/packages/web.scm:3816 +#: gnu/packages/web.scm:3817 msgid "" "The libwww-perl collection is a set of Perl modules which provides a\n" "simple and consistent application programming interface to the\n" @@ -22687,7 +22933,7 @@ msgid "" "help you implement simple HTTP servers." msgstr "" -#: gnu/packages/web.scm:3844 +#: gnu/packages/web.scm:3845 msgid "" "This module attempts to answer, as accurately as it can, one\n" "of the nastiest technical questions there is: am I on the internet?\n" @@ -22697,7 +22943,7 @@ msgid "" "not have DNS. We might not have a network card at all!" msgstr "" -#: gnu/packages/web.scm:3870 +#: gnu/packages/web.scm:3871 #, scheme-format msgid "" "The LWP::MediaTypes module provides functions for handling media (also\n" @@ -22706,20 +22952,20 @@ msgid "" "exists it is used instead." msgstr "" -#: gnu/packages/web.scm:3895 +#: gnu/packages/web.scm:3896 msgid "" "The LWP::Protocol::https module provides support for using\n" "https schemed URLs with LWP." msgstr "" -#: gnu/packages/web.scm:3916 +#: gnu/packages/web.scm:3917 msgid "" "LWP::UserAgent::Cached is an LWP::UserAgent subclass with\n" "cache support. It returns responses from the local file system, if available,\n" "instead of making an HTTP request." msgstr "" -#: gnu/packages/web.scm:3938 +#: gnu/packages/web.scm:3939 msgid "" "LWP::UserAgent::Determined works just like LWP::UserAgent,\n" "except that when you use it to get a web page but run into a\n" @@ -22727,7 +22973,7 @@ msgid "" "and retry a few times." msgstr "" -#: gnu/packages/web.scm:3965 +#: gnu/packages/web.scm:3966 msgid "" "@code{LWPx::ParanoidAgent} is a class subclassing\n" "@code{LWP::UserAgent} but paranoid against attackers. Its purpose is\n" @@ -22737,11 +22983,11 @@ msgid "" "is limited to http and https." msgstr "" -#: gnu/packages/web.scm:4011 +#: gnu/packages/web.scm:4012 msgid "This module provides a Perlish interface to Amazon S3." msgstr "Ce paquet fournit une interface de type Perl pour Amazon S3." -#: gnu/packages/web.scm:4032 +#: gnu/packages/web.scm:4033 msgid "" "The Net::HTTP class is a low-level HTTP client. An instance of the\n" "Net::HTTP class represents a connection to an HTTP server. The HTTP protocol\n" @@ -22749,7 +22995,7 @@ msgid "" "HTTP/1.1." msgstr "" -#: gnu/packages/web.scm:4053 +#: gnu/packages/web.scm:4054 msgid "" "Net::Server is an extensible, generic Perl server engine.\n" "It attempts to be a generic server as in Net::Daemon and NetServer::Generic.\n" @@ -22763,11 +23009,11 @@ msgid "" "or to multiple server ports." msgstr "" -#: gnu/packages/web.scm:4082 +#: gnu/packages/web.scm:4083 msgid "SSL support for Net::SMTP." msgstr "" -#: gnu/packages/web.scm:4116 +#: gnu/packages/web.scm:4117 msgid "" "Plack is a set of tools for using the PSGI stack. It\n" "contains middleware components, a reference server, and utilities for Web\n" @@ -22775,7 +23021,7 @@ msgid "" "WSGI." msgstr "" -#: gnu/packages/web.scm:4143 +#: gnu/packages/web.scm:4144 msgid "" "Plack::Middleware::Deflater is a middleware to encode your response body\n" "in gzip or deflate, based on \"Accept-Encoding\" HTTP request header. It\n" @@ -22784,13 +23030,13 @@ msgid "" "servers." msgstr "" -#: gnu/packages/web.scm:4170 +#: gnu/packages/web.scm:4171 msgid "" "This module sets the body in redirect response, if it's not\n" "already set." msgstr "" -#: gnu/packages/web.scm:4193 +#: gnu/packages/web.scm:4194 msgid "" "This middleware allows for POST requests that pretend to be\n" "something else: by adding either a header named X-HTTP-Method-Override to the\n" @@ -22798,44 +23044,44 @@ msgid "" "can say what method it actually meant." msgstr "" -#: gnu/packages/web.scm:4217 +#: gnu/packages/web.scm:4218 msgid "" "This module removes the body in an HTTP response if it's not\n" "required." msgstr "" -#: gnu/packages/web.scm:4240 +#: gnu/packages/web.scm:4241 msgid "" "Plack::Middleware::ReverseProxy resets some HTTP headers,\n" "which are changed by reverse-proxy. You can specify the reverse proxy address\n" "and stop fake requests using @code{enable_if} directive in your app.psgi." msgstr "" -#: gnu/packages/web.scm:4261 +#: gnu/packages/web.scm:4262 msgid "" "This module allows your to run your Plack::Test tests\n" "against an external server instead of just against a local application through\n" "either mocked HTTP or a locally spawned server." msgstr "" -#: gnu/packages/web.scm:4283 +#: gnu/packages/web.scm:4284 msgid "Test::TCP is test utilities for TCP/IP programs." msgstr "" -#: gnu/packages/web.scm:4308 +#: gnu/packages/web.scm:4309 msgid "" "Test::WWW::Mechanize is a subclass of the Perl module\n" "WWW::Mechanize that incorporates features for web application testing." msgstr "" -#: gnu/packages/web.scm:4341 +#: gnu/packages/web.scm:4342 msgid "" "The Test::WWW::Mechanize::Catalyst module meshes the\n" "Test::WWW:Mechanize module and the Catalyst web application framework to allow\n" "testing of Catalyst applications without needing to start up a web server." msgstr "" -#: gnu/packages/web.scm:4365 +#: gnu/packages/web.scm:4366 msgid "" "PSGI is a specification to decouple web server environments\n" "from web application framework code. Test::WWW::Mechanize is a subclass of\n" @@ -22844,21 +23090,21 @@ msgid "" "applications." msgstr "" -#: gnu/packages/web.scm:4390 +#: gnu/packages/web.scm:4391 msgid "" "The URI module implements the URI class. Objects of this class\n" "represent \"Uniform Resource Identifier references\" as specified in RFC 2396\n" "and updated by RFC 2732." msgstr "" -#: gnu/packages/web.scm:4413 +#: gnu/packages/web.scm:4414 msgid "" "@code{URI::Fetch} is a smart client for fetching HTTP pages,\n" "notably syndication feeds (RSS, Atom, and others), in an intelligent, bandwidth-\n" "and time-saving way." msgstr "" -#: gnu/packages/web.scm:4437 +#: gnu/packages/web.scm:4438 msgid "" "This module finds URIs and URLs (according to what URI.pm\n" "considers a URI) in plain text. It only finds URIs which include a\n" @@ -22866,37 +23112,37 @@ msgid "" "URI::Find::Schemeless. For a command-line interface, urifind is provided." msgstr "" -#: gnu/packages/web.scm:4460 +#: gnu/packages/web.scm:4461 msgid "" "With this module, the URI package provides the same set of\n" "methods for WebSocket URIs as it does for HTTP URIs." msgstr "" -#: gnu/packages/web.scm:4483 +#: gnu/packages/web.scm:4484 msgid "" "This perl module provides a wrapper around URI templates as described in\n" "RFC 6570." msgstr "" -#: gnu/packages/web.scm:4517 +#: gnu/packages/web.scm:4518 msgid "" "This is a Perl extension interface for the libcurl file downloading\n" "library." msgstr "" -#: gnu/packages/web.scm:4548 +#: gnu/packages/web.scm:4549 msgid "" "WWW::Mechanize is a Perl module for stateful programmatic\n" "web browsing, used for automating interaction with websites." msgstr "" -#: gnu/packages/web.scm:4586 +#: gnu/packages/web.scm:4587 msgid "" "@code{WWW::OpenSearch} is a module to search @url{A9's OpenSearch,\n" "http://opensearch.a9.com} compatible search engines." msgstr "" -#: gnu/packages/web.scm:4608 +#: gnu/packages/web.scm:4609 msgid "" "The WWW::RobotRules module parses /robots.txt files as specified in\n" "\"A Standard for Robot Exclusion\", at\n" @@ -22905,13 +23151,13 @@ msgid "" "their web site." msgstr "" -#: gnu/packages/web.scm:4635 gnu/packages/web.scm:4659 +#: gnu/packages/web.scm:4640 gnu/packages/web.scm:4664 msgid "" "Universal feed parser which handles RSS 0.9x, RSS 1.0, RSS 2.0,\n" "CDF, Atom 0.3, and Atom 1.0 feeds." msgstr "" -#: gnu/packages/web.scm:4756 +#: gnu/packages/web.scm:4761 msgid "" "The Guix Data Service stores data about GNU Guix, and provides this\n" "through a web interface. It supports listening to the guix-commits mailing\n" @@ -22919,20 +23165,20 @@ msgid "" "PostgreSQL database." msgstr "" -#: gnu/packages/web.scm:4785 +#: gnu/packages/web.scm:4790 msgid "" "Gumbo is an implementation of the HTML5 parsing algorithm implemented as\n" "a pure C99 library." msgstr "" -#: gnu/packages/web.scm:4858 +#: gnu/packages/web.scm:4863 msgid "" "uWSGI presents a complete stack for networked/clustered web applications,\n" "implementing message/object passing, caching, RPC and process management.\n" "It uses the uwsgi protocol for all the networking/interprocess communications." msgstr "" -#: gnu/packages/web.scm:4891 +#: gnu/packages/web.scm:4896 msgid "" "jq is like sed for JSON data – you can use it to slice and\n" "filter and map and transform structured data with the same ease that sed, awk,\n" @@ -22942,7 +23188,7 @@ msgid "" "you'd expect." msgstr "" -#: gnu/packages/web.scm:4920 +#: gnu/packages/web.scm:4925 msgid "" "@command{pup} is a command line tool for processing HTML. It reads\n" "from stdin, prints to stdout, and allows the user to filter parts of the page\n" @@ -22950,66 +23196,66 @@ msgid "" "fast and flexible way of exploring HTML from the terminal." msgstr "" -#: gnu/packages/web.scm:4953 +#: gnu/packages/web.scm:4958 msgid "" "Uhttpmock is a project for mocking web service APIs which use HTTP or\n" "HTTPS. It provides a library, libuhttpmock, which implements recording and\n" "playback of HTTP request/response traces." msgstr "" -#: gnu/packages/web.scm:4989 +#: gnu/packages/web.scm:4994 msgid "" "Woof (Web Offer One File) is a small simple web server that\n" "can easily be invoked on a single file. Your partner can access the file with\n" "tools they trust (e.g. wget)." msgstr "" -#: gnu/packages/web.scm:5017 +#: gnu/packages/web.scm:5022 msgid "" "This package provides the shared build system for Netsurf project\n" "libraries." msgstr "" -#: gnu/packages/web.scm:5052 +#: gnu/packages/web.scm:5057 msgid "" "LibParserUtils is a library for building efficient parsers, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5082 +#: gnu/packages/web.scm:5087 msgid "" "Hubbub is an HTML5 compliant parsing library, written in C, which can\n" "parse both valid and invalid web content. It is developed as part of the\n" "NetSurf project." msgstr "" -#: gnu/packages/web.scm:5203 +#: gnu/packages/web.scm:5208 msgid "" "Ikiwiki is a wiki compiler, capable of generating a static set of web\n" "pages, but also incorporating dynamic features like a web based editor and\n" "commenting." msgstr "" -#: gnu/packages/web.scm:5227 +#: gnu/packages/web.scm:5232 msgid "" "LibWapcaplet provides a reference counted string internment system\n" "designed to store small strings and allow rapid comparison of them. It is\n" "developed as part of the Netsurf project." msgstr "" -#: gnu/packages/web.scm:5259 +#: gnu/packages/web.scm:5264 msgid "" "LibCSS is a CSS (Cascading Style Sheet) parser and selection engine,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5294 +#: gnu/packages/web.scm:5299 msgid "" "LibDOM is an implementation of the W3C DOM, written in C. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5321 +#: gnu/packages/web.scm:5326 msgid "" "Libsvgtiny takes some SVG as input and returns a list of paths and texts\n" "which can be rendered easily, as defined in\n" @@ -23017,65 +23263,65 @@ msgid "" "project." msgstr "" -#: gnu/packages/web.scm:5346 +#: gnu/packages/web.scm:5351 msgid "" "Libnsbmp is a decoding library for BMP and ICO image file formats,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5369 +#: gnu/packages/web.scm:5374 msgid "" "Libnsgif is a decoding library for the GIF image file format, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5396 +#: gnu/packages/web.scm:5401 msgid "" "Libnslog provides a category-based logging library which supports\n" "complex logging filters, multiple log levels, and provides context through to\n" "client applications. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5420 +#: gnu/packages/web.scm:5425 msgid "" "Libnsutils provides a small number of useful utility routines. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5443 +#: gnu/packages/web.scm:5448 msgid "" "Libnspsl is a library to generate a static code representation of the\n" "Public Suffix List. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5469 +#: gnu/packages/web.scm:5474 msgid "" "@code{nsgenbind} is a tool to generate JavaScript to DOM bindings from\n" "w3c webidl files and a binding configuration file." msgstr "" -#: gnu/packages/web.scm:5592 +#: gnu/packages/web.scm:5597 msgid "" "NetSurf is a lightweight web browser that has its own layout and\n" "rendering engine entirely written from scratch. It is small and capable of\n" "handling many of the web standards in use today." msgstr "" -#: gnu/packages/web.scm:5631 +#: gnu/packages/web.scm:5636 msgid "" "Surfraw (Shell Users' Revolutionary Front Rage Against the Web)\n" "provides a unix command line interface to a variety of popular www search engines\n" "and similar services." msgstr "" -#: gnu/packages/web.scm:5664 +#: gnu/packages/web.scm:5669 msgid "" "darkhttpd is a simple static web server. It is\n" "standalone and does not need inetd or ucspi-tcp. It does not need any\n" "config files---you only have to specify the www root." msgstr "" -#: gnu/packages/web.scm:5695 +#: gnu/packages/web.scm:5700 msgid "" "GoAccess is a real-time web log analyzer and interactive viewer that\n" "runs in a terminal or through your browser. It provides fast and valuable\n" @@ -23083,7 +23329,7 @@ msgid "" "on the fly." msgstr "" -#: gnu/packages/web.scm:5749 +#: gnu/packages/web.scm:5754 msgid "" "Hitch is a performant TLS proxy based on @code{libev}. It terminates\n" "SSL/TLS connections and forwards the unencrypted traffic to a backend such\n" @@ -23091,7 +23337,7 @@ msgid "" "multicore machines." msgstr "" -#: gnu/packages/web.scm:5786 +#: gnu/packages/web.scm:5791 msgid "" "httptunnel creates a bidirectional virtual data connection\n" "tunnelled through HTTP (HyperText Transfer Protocol) requests. This can be\n" @@ -23109,7 +23355,7 @@ msgid "" "deployments." msgstr "" -#: gnu/packages/web.scm:5915 +#: gnu/packages/web.scm:5912 msgid "" "Varnish is a high-performance HTTP accelerator. It acts as a caching\n" "reverse proxy and load balancer. You install it in front of any server that\n" @@ -23117,14 +23363,14 @@ msgid "" "configuration language." msgstr "" -#: gnu/packages/web.scm:5949 +#: gnu/packages/web.scm:5946 msgid "" "This package provides a collection of modules (@dfn{vmods}) for the Varnish\n" "cache server, extending the @acronym{VCL, Varnish Configuration Language} with\n" "additional capabilities." msgstr "" -#: gnu/packages/web.scm:5976 +#: gnu/packages/web.scm:5973 msgid "" "@code{xinetd}, a more secure replacement for @code{inetd},\n" "listens for incoming requests over a network and launches the appropriate\n" @@ -23133,7 +23379,7 @@ msgid "" "used to start services with both privileged and non-privileged port numbers." msgstr "" -#: gnu/packages/web.scm:6023 +#: gnu/packages/web.scm:6020 msgid "" "Tidy is a console application which corrects and cleans up\n" "HTML and XML documents by fixing markup errors and upgrading\n" @@ -23144,14 +23390,14 @@ msgid "" "functions of Tidy." msgstr "" -#: gnu/packages/web.scm:6085 +#: gnu/packages/web.scm:6082 msgid "" "Hiawatha has been written with security in mind.\n" "Features include the ability to stop SQL injections, XSS and CSRF attacks and\n" "exploit attempts." msgstr "" -#: gnu/packages/web.scm:6107 +#: gnu/packages/web.scm:6104 msgid "" "Testing an HTTP Library can become difficult sometimes.\n" "@code{RequestBin} is fantastic for testing POST requests, but doesn't let you control the\n" @@ -23159,14 +23405,14 @@ msgid "" "JSON-encoded." msgstr "" -#: gnu/packages/web.scm:6132 +#: gnu/packages/web.scm:6129 msgid "" "@code{Pytest-httpbin} creates a @code{pytest} fixture that is dependency-injected\n" "into your tests. It automatically starts up a HTTP server in a separate thread running\n" "@code{httpbin} and provides your test with the URL in the fixture." msgstr "" -#: gnu/packages/web.scm:6199 +#: gnu/packages/web.scm:6196 msgid "" "This is a parser for HTTP messages written in C. It\n" "parses both requests and responses. The parser is designed to be used in\n" @@ -23176,40 +23422,40 @@ msgid "" "message stream (in a web server that is per connection)." msgstr "" -#: gnu/packages/web.scm:6236 +#: gnu/packages/web.scm:6233 msgid "" "@code{httpretty} is a helper for faking web requests,\n" "inspired by Ruby's @code{fakeweb}." msgstr "" -#: gnu/packages/web.scm:6254 +#: gnu/packages/web.scm:6251 msgid "" "jo is a command-line utility to create JSON objects or\n" "arrays. It creates a JSON string on stdout from words provided as\n" "command-line arguments or read from stdin." msgstr "" -#: gnu/packages/web.scm:6313 +#: gnu/packages/web.scm:6310 msgid "" "@code{ia} is a command-line tool for using\n" "@url{archive.org} from the command-line. It also implements the\n" "internetarchive python module for programmatic access to archive.org." msgstr "" -#: gnu/packages/web.scm:6364 +#: gnu/packages/web.scm:6361 msgid "" "@code{clf} is a command line tool for searching code\n" "snippets on @url{https://commandlinefu.com}." msgstr "" -#: gnu/packages/web.scm:6402 +#: gnu/packages/web.scm:6399 msgid "" "rss-bridge generates Atom feeds for social networking\n" "websites lacking feeds. Supported websites include Facebook, Twitter,\n" "Instagram and YouTube." msgstr "" -#: gnu/packages/web.scm:6440 +#: gnu/packages/web.scm:6437 msgid "" "LinkChecker is a website validator. It checks for broken\n" "links in websites. It is recursive and multithreaded providing output in\n" @@ -23218,67 +23464,67 @@ msgid "" "file links." msgstr "" -#: gnu/packages/web.scm:6488 +#: gnu/packages/web.scm:6485 msgid "" "Castor is a graphical client for plain-text protocols written in\n" "Rust with GTK. It currently supports the Gemini, Gopher and Finger\n" "protocols." msgstr "" -#: gnu/packages/web.scm:6575 +#: gnu/packages/web.scm:6572 msgid "" "This package includes Clearsilver, the CGI kit and HTML templating\n" "system." msgstr "" -#: gnu/packages/web.scm:6594 +#: gnu/packages/web.scm:6591 msgid "" "Py-ubjson is a Python module providing an Universal Binary JSON\n" "encoder/decoder based on the draft-12 specification for UBJSON." msgstr "" -#: gnu/packages/web.scm:6689 +#: gnu/packages/web.scm:6686 msgid "" "Apache Tomcat is a free implementation of the Java\n" "Servlet, JavaServer Pages, Java Expression Language and Java WebSocket\n" "technologies." msgstr "" -#: gnu/packages/web.scm:6743 +#: gnu/packages/web.scm:6740 msgid "" "This package contains helper classes for testing the Jetty\n" "Web Server." msgstr "" -#: gnu/packages/web.scm:6802 +#: gnu/packages/web.scm:6799 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides utility classes." msgstr "" -#: gnu/packages/web.scm:6880 +#: gnu/packages/web.scm:6877 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides IO-related utility classes." msgstr "" -#: gnu/packages/web.scm:6925 +#: gnu/packages/web.scm:6922 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides HTTP-related utility classes." msgstr "" -#: gnu/packages/web.scm:6959 +#: gnu/packages/web.scm:6956 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides the JMX management." msgstr "" -#: gnu/packages/web.scm:7045 +#: gnu/packages/web.scm:7042 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -23286,7 +23532,7 @@ msgid "" "artifact." msgstr "" -#: gnu/packages/web.scm:7088 +#: gnu/packages/web.scm:7085 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -23294,7 +23540,7 @@ msgid "" "infrastructure" msgstr "" -#: gnu/packages/web.scm:7144 +#: gnu/packages/web.scm:7141 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -23302,14 +23548,14 @@ msgid "" "container." msgstr "" -#: gnu/packages/web.scm:7308 +#: gnu/packages/web.scm:7305 msgid "" "Jsoup is a Java library for working with real-world HTML. It\n" "provides a very convenient API for extracting and manipulating data, using the\n" "best of DOM, CSS, and jQuery-like methods." msgstr "" -#: gnu/packages/web.scm:7337 +#: gnu/packages/web.scm:7334 msgid "" "Signpost is the easy and intuitive solution for signing\n" "HTTP messages on the Java platform in conformance with the OAuth Core 1.0a\n" @@ -23317,7 +23563,7 @@ msgid "" "combine it with different HTTP messaging layers." msgstr "" -#: gnu/packages/web.scm:7360 +#: gnu/packages/web.scm:7357 msgid "" "Tidyp is a program that can validate your HTML, as well as\n" "modify it to be more clean and standard. tidyp does not validate HTML 5.\n" @@ -23327,14 +23573,14 @@ msgid "" "based on this library, allowing Perl programmers to easily validate HTML." msgstr "" -#: gnu/packages/web.scm:7401 +#: gnu/packages/web.scm:7398 msgid "" "@code{HTML::Tidy} is an HTML checker in a handy dandy\n" "object. It's meant as a replacement for @code{HTML::Lint}, which is written\n" "in Perl but is not nearly as capable as @code{HTML::Tidy}." msgstr "" -#: gnu/packages/web.scm:7430 +#: gnu/packages/web.scm:7427 msgid "" "Geomyidae is a server for distributed hypertext protocol Gopher. Its\n" "features include:\n" @@ -23348,14 +23594,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/web.scm:7478 +#: gnu/packages/web.scm:7475 msgid "" "Cat avatar generator is a generator of cat pictures optimised\n" "to generate random avatars, or defined avatar from a \"seed\". This is a\n" "derivation by David Revoy from the original MonsterID by Andreas Gohr." msgstr "" -#: gnu/packages/web.scm:7548 +#: gnu/packages/web.scm:7545 msgid "" "nghttp2 implements the Hypertext Transfer Protocol, version\n" "2 (@dfn{HTTP/2}).\n" @@ -23381,14 +23627,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7647 +#: gnu/packages/web.scm:7644 msgid "" "Hpcguix-web provides a web interface to the list of packages\n" "provided by Guix. The list of packages is searchable and provides\n" "instructions on how to use Guix in a shared HPC environment." msgstr "" -#: gnu/packages/web.scm:7668 +#: gnu/packages/web.scm:7665 msgid "" "HTTrack allows you to download a World Wide Web site from\n" "the Internet to a local directory, building recursively all directories,\n" @@ -23402,7 +23648,7 @@ msgid "" "HTTrack is fully configurable, and has an integrated help system." msgstr "" -#: gnu/packages/web.scm:7703 +#: gnu/packages/web.scm:7700 msgid "" "buku is a powerful bookmark manager written in Python3 and SQLite3.\n" "@command{buku} can auto-import bookmarks from your browser and present them\n" @@ -23411,7 +23657,7 @@ msgid "" "@command{bukuserver}." msgstr "" -#: gnu/packages/web.scm:7724 +#: gnu/packages/web.scm:7721 msgid "" "Anonip masks the last bits of IPv4 and IPv6 addresses in log files.\n" "That way most of the relevant information is preserved, while the IP address\n" @@ -23426,7 +23672,7 @@ msgid "" "Anonip can also be uses as a Python module in your own Python application." msgstr "" -#: gnu/packages/web.scm:7758 +#: gnu/packages/web.scm:7755 msgid "" "Poussetaches (which literally means \"push tasks\" in\n" "French) is a lightweight asynchronous task execution service that aims to\n" @@ -23438,7 +23684,7 @@ msgid "" "returned." msgstr "" -#: gnu/packages/web.scm:7783 +#: gnu/packages/web.scm:7780 msgid "" "htmlcxx is a simple non-validating CSS1 and HTML parser for\n" "C++. Although there are several other HTML parsers available, htmlcxx has some\n" @@ -23456,7 +23702,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:7827 +#: gnu/packages/web.scm:7824 msgid "" "libRocket is a C++ user interface package based on the HTML\n" "and CSS standards. libRocket uses the open standards XHTML1.0 and\n" @@ -23473,11 +23719,11 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7869 +#: gnu/packages/web.scm:7866 msgid "gmnisrv is a simple Gemini protocol server written in C." msgstr "" -#: gnu/packages/web.scm:7900 +#: gnu/packages/web.scm:7898 msgid "" "The openZIM project proposes offline storage solutions for\n" "content coming from the Web. The zimlib is the standard implementation of the\n" @@ -23509,14 +23755,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:8081 +#: gnu/packages/web.scm:8078 msgid "" "uriparser is a strictly RFC 3986 compliant URI parsing and\n" "handling library written in C89 (\"ANSI C\"). uriparser is fast and supports\n" "Unicode." msgstr "" -#: gnu/packages/web.scm:8115 +#: gnu/packages/web.scm:8112 msgid "" "Quark is an extremely small and simple HTTP GET/HEAD only\n" "web server for static content. TLS is not natively supported and should be\n" @@ -23722,7 +23968,7 @@ msgid "" "Enhancement}." msgstr "" -#: gnu/services/base.scm:276 +#: gnu/services/base.scm:279 msgid "" "Populate the @file{/etc/fstab} based on the given file\n" "system objects." @@ -23730,7 +23976,7 @@ msgstr "" "Rempli @file{/etc/fstab} en fonction des objets de systèmes de\n" "fichiers donnés." -#: gnu/services/base.scm:314 +#: gnu/services/base.scm:317 msgid "" "Take care of syncing the root file\n" "system and of remounting it read-only when the system shuts down." @@ -23738,7 +23984,7 @@ msgstr "" "S'occupe de synchroniser le système de fichiers racine et de le\n" "remonter en lecture-seule à l'extinction du système." -#: gnu/services/base.scm:481 +#: gnu/services/base.scm:484 msgid "" "Provide Shepherd services to mount and unmount the given\n" "file systems, as well as corresponding @file{/etc/fstab} entries." @@ -23746,7 +23992,7 @@ msgstr "" "Fournit des services Shepherd pour monter et démonter les systèmes\n" "de fichiers donnés, ainsi que les entrées @file{/etc/fstab} correspondantes." -#: gnu/services/base.scm:579 +#: gnu/services/base.scm:582 msgid "" "Seed the @file{/dev/urandom} pseudo-random number\n" "generator (RNG) with the value recorded when the system was last shut\n" @@ -23755,7 +24001,7 @@ msgstr "" "Initialise le générateur de nombres pseudo-aléatoires (PRNG) @file{/dev/urandom}\n" "avec la valeur enregistrée lors de la dernière extinction du système." -#: gnu/services/base.scm:611 +#: gnu/services/base.scm:614 msgid "" "Run the @command{rngd} random number generation daemon to\n" "supply entropy to the kernel's pool." @@ -23763,15 +24009,15 @@ msgstr "" "Lance le démon de génération de nombres aléatoires @command{rngd} pour\n" "fournir de l'entropie à la réserve du noyau." -#: gnu/services/base.scm:640 +#: gnu/services/base.scm:643 msgid "Initialize the machine's host name." msgstr "Initialise le nom d'hôte de la machine." -#: gnu/services/base.scm:670 +#: gnu/services/base.scm:673 msgid "Ensure the Linux virtual terminals run in UTF-8 mode." msgstr "S’assure que les terminaux virtuels de Linux sont lancés en mode UTF-8." -#: gnu/services/base.scm:683 +#: gnu/services/base.scm:686 msgid "" "@emph{This service is deprecated in favor of the\n" "@code{keyboard-layout} field of @code{operating-system}.} Load the given list\n" @@ -23781,7 +24027,7 @@ msgstr "" "@code{keyboard-layout} de @code{operating-system}.} Charge la liste donnée\n" "de configurations du clavier pour la console avec @command{loadkeys}." -#: gnu/services/base.scm:743 +#: gnu/services/base.scm:746 msgid "" "Install the given fonts on the specified ttys (fonts are per\n" "virtual console on GNU/Linux). The value of this service is a list of\n" @@ -23813,7 +24059,7 @@ msgstr "" " \"/share/consolefonts/ter-132n\"))) ; for HDPI\n" "@end example\n" -#: gnu/services/base.scm:795 +#: gnu/services/base.scm:798 msgid "" "Provide a console log-in service as specified by its\n" "configuration value, a @code{login-configuration} object." @@ -23821,19 +24067,19 @@ msgstr "" "Fournit un service de connexion en console tel que spécifié par sa\n" "valeur de configuration, un objet @code{login-configuration}." -#: gnu/services/base.scm:1063 +#: gnu/services/base.scm:1066 msgid "" "Provide console login using the @command{agetty}\n" "program." msgstr "Fournit la connexion en console avec le programme @command{agetty}." -#: gnu/services/base.scm:1128 +#: gnu/services/base.scm:1131 msgid "" "Provide console login using the @command{mingetty}\n" "program." msgstr "Fournit la connexion en console avec le programme @command{mingetty}." -#: gnu/services/base.scm:1345 +#: gnu/services/base.scm:1348 msgid "" "Runs libc's @dfn{name service cache daemon} (nscd) with the\n" "given configuration---an @code{} object. @xref{Name\n" @@ -23843,7 +24089,7 @@ msgstr "" "configuration donnée — un objet @code{}. @xref{Name\n" "Service Switch}, pour un exemple." -#: gnu/services/base.scm:1384 +#: gnu/services/base.scm:1387 msgid "" "Run the syslog daemon, @command{syslogd}, which is\n" "responsible for logging system messages." @@ -23851,7 +24097,7 @@ msgstr "" "Lance le démon syslog, @command{syslogd} qui est responsable\n" "de la journalisation des messages du système." -#: gnu/services/base.scm:1448 +#: gnu/services/base.scm:1451 msgid "" "Install the specified resource usage limits by populating\n" "@file{/etc/security/limits.conf} and using the @code{pam_limits}\n" @@ -23861,11 +24107,11 @@ msgstr "" "en remplissant @file{/etc/security/limits.conf} et en utilisant le module\n" "d'authentification @code{pam_limits}." -#: gnu/services/base.scm:1794 +#: gnu/services/base.scm:1804 msgid "Run the build daemon of GNU@tie{}Guix, aka. @command{guix-daemon}." msgstr "Lance le démon de construction de GNU@tie{}Guix, c'est à dire @command{guix-daemon}." -#: gnu/services/base.scm:1944 +#: gnu/services/base.scm:1961 msgid "" "Add a Shepherd service running @command{guix publish}, a\n" "command that allows you to share pre-built binaries with others over HTTP." @@ -23873,7 +24119,7 @@ msgstr "" "Ajout un service Shepher qui lance @command{guix publish}, une\n" "commande qui vous permet de partager les binaires préconstruits sur HTTP." -#: gnu/services/base.scm:2150 +#: gnu/services/base.scm:2167 msgid "" "Run @command{udev}, which populates the @file{/dev}\n" "directory dynamically. Get extra rules from the packages listed in the\n" @@ -23883,11 +24129,11 @@ msgstr "" "dynamiquement. Il prend des règles supplémentaires des paquets listés\n" "dans le champ @code{rules} de sa valeur, un objet @code{udev-configuration}." -#: gnu/services/base.scm:2267 +#: gnu/services/base.scm:2284 msgid "Turn on the virtual memory swap area." msgstr "Active l'espace d'échange mémoire virtuel." -#: gnu/services/base.scm:2309 +#: gnu/services/base.scm:2326 msgid "" "Run GPM, the general-purpose mouse daemon, with the given\n" "command-line options. GPM allows users to use the mouse in the console,\n" @@ -23900,7 +24146,7 @@ msgstr "" "par défaut utilisent le protocole @code{ps2} qui fonctionne aussi bien pour les\n" "souris USB que PS/2." -#: gnu/services/base.scm:2382 +#: gnu/services/base.scm:2399 msgid "" "Start the @command{kmscon} virtual terminal emulator for the\n" "Linux @dfn{kernel mode setting} (KMS)." @@ -23908,27 +24154,27 @@ msgstr "" "Démarre l'émulateur de terminal virtuel @command{kmscon} pour le\n" "@dfn{paramétrage en mode noyau} (KMS) de Linux." -#: gnu/services/base.scm:2403 +#: gnu/services/base.scm:2416 #, scheme-format msgid "address '~a' lacks a network mask" msgstr "" -#: gnu/services/base.scm:2409 +#: gnu/services/base.scm:2422 #, scheme-format msgid "Write, say, @samp{\"~a/24\"} for a 24-bit network mask." msgstr "" -#: gnu/services/base.scm:2489 +#: gnu/services/base.scm:2502 #, scheme-format msgid "network links are currently ignored on GNU/Hurd~%" msgstr "" -#: gnu/services/base.scm:2514 +#: gnu/services/base.scm:2527 #, scheme-format msgid "ignoring network route for '~a'~%" msgstr "" -#: gnu/services/base.scm:2698 +#: gnu/services/base.scm:2711 msgid "" "Turn up the specified network interfaces upon startup,\n" "with the given IP address, gateway, netmask, and so on. The value for\n" @@ -24209,6 +24455,17 @@ msgstr "" "Lance Gitile, une petite forge Git. Expose les dépôts publics\n" "sur le web." +#, fuzzy +#~| msgid "" +#~| "This package provides support for writing Nushell\n" +#~| "tests." +#~ msgid "" +#~ "This package provides support for the French language for the\n" +#~ "babel multilingual system." +#~ msgstr "" +#~ "Ce paquet fournit la prise en charge de l'écriture de tests pour\n" +#~ "Nushell." + #, fuzzy #~| msgid "This package contains maps and other assets for UFO: Alien Invasion." #~ msgid "This package contains graphics and sound files for Naev." @@ -25438,9 +25695,6 @@ msgstr "" #~ msgid "Graphical user interface for git" #~ msgstr "Interface utilisateur graphique pour git" -#~ msgid "Note-taking application for the GNOME desktop" -#~ msgstr "Application de prise de notes du bureau GNOME" - #~ msgid "LaTeX editor for the GNOME desktop" #~ msgstr "Éditeur LaTeX du bureau GNOME" @@ -25756,9 +26010,6 @@ msgstr "" #~ msgid "Command-line interface to the Gandi.net Web API" #~ msgstr "Interface en ligne de commande pour l'API Web de Gandi.net" -#~ msgid "SCTP library for the Go programming language" -#~ msgstr "Bibliothèque SCTP pour le langage de programmation Go" - #~ msgid "IP routing protocol suite" #~ msgstr "Suite protocolaire pour le routage IP" diff --git a/po/packages/hu.po b/po/packages/hu.po index d4140d12af..6cafe6624b 100644 --- a/po/packages/hu.po +++ b/po/packages/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: guix-packages 0.14.0\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" "PO-Revision-Date: 2018-01-10 11:26+0100\n" "Last-Translator: Balázs Úr \n" "Language-Team: Hungarian \n" @@ -50,7 +50,7 @@ msgstr "" msgid "This package provides a dictionary for the GNU Aspell spell checker." msgstr "Ez a csomag egy szótárat biztosít a GNU Aspell helyesírás-ellenőrzőhöz." -#: gnu/packages/aspell.scm:445 gnu/packages/libreoffice.scm:845 +#: gnu/packages/aspell.scm:450 gnu/packages/libreoffice.scm:845 #: gnu/packages/libreoffice.scm:918 msgid "" "This package provides a dictionary for the Hunspell spell-checking\n" @@ -59,13 +59,13 @@ msgstr "" "Ez a csomag egy szótárat biztosít a Hunspell helyesírás-ellenőrző\n" "programkönyvtárhoz." -#: gnu/packages/aspell.scm:525 +#: gnu/packages/aspell.scm:530 msgid "" "Ispell is an interactive spell-checking tool supporting many\n" "European languages." msgstr "" -#: gnu/packages/audio.scm:197 +#: gnu/packages/audio.scm:198 msgid "" "OpenSLES is a royalty-free, cross-platform,\n" "hardware-accelerated audio API tuned for embedded systems. It provides a\n" @@ -76,31 +76,31 @@ msgid "" "promoting the market for advanced audio." msgstr "" -#: gnu/packages/audio.scm:233 +#: gnu/packages/audio.scm:234 msgid "" "WildMIDI is a simple software midi player which has a core\n" "softsynth library that can be use with other applications." msgstr "" -#: gnu/packages/audio.scm:257 +#: gnu/packages/audio.scm:258 msgid "" "WebRTC-Audio-Processing library based on Google's\n" "implementation of WebRTC." msgstr "" -#: gnu/packages/audio.scm:277 +#: gnu/packages/audio.scm:278 msgid "" "VO-AACENC is the VisualOn implementation of Advanced Audio\n" "Coding (AAC) encoder." msgstr "" -#: gnu/packages/audio.scm:306 +#: gnu/packages/audio.scm:307 msgid "" "TinyALSA is a small library to interface with ALSA in the\n" "Linux kernel." msgstr "" -#: gnu/packages/audio.scm:329 +#: gnu/packages/audio.scm:330 msgid "" "Game-music-emu is a collection of video game music file emulators that\n" "support the following formats and systems:\n" @@ -126,44 +126,44 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/audio.scm:393 +#: gnu/packages/audio.scm:394 msgid "" "LibOpenMPT is a cross-platform C++ and C module playback\n" "library. It is based on the player code of the Open ModPlug Tracker project." msgstr "" -#: gnu/packages/audio.scm:424 +#: gnu/packages/audio.scm:425 msgid "" "LibOFA is an audio fingerprint library, created and provided\n" "by MusicIP." msgstr "" -#: gnu/packages/audio.scm:445 +#: gnu/packages/audio.scm:446 #, fuzzy msgid "FAAC is an MPEG-4 and MPEG-2 AAC encoder." msgstr "MPEG-4 és MPEG-2 AAC dekódoló" -#: gnu/packages/audio.scm:474 +#: gnu/packages/audio.scm:475 msgid "" "LibTiMidity is a MIDI to WAVE converter library that uses\n" "Gravis Ultrasound-compatible patch files to generate digital audio data from\n" "General MIDI files." msgstr "" -#: gnu/packages/audio.scm:499 +#: gnu/packages/audio.scm:500 msgid "" "VO-AMR is a library of VisualOn implementation of\n" "Adaptive Multi Rate Narrowband and Wideband (AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:518 +#: gnu/packages/audio.scm:519 msgid "" "OpenCore-AMR is a library of OpenCORE Framework\n" "implementation of Adaptive Multi Rate Narrowband and Wideband\n" "(AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:551 +#: gnu/packages/audio.scm:552 msgid "" "AlsaModularSynth is a digital implementation of a classical analog\n" "modular synthesizer system. It uses virtual control voltages to control the\n" @@ -177,7 +177,7 @@ msgstr "" "(feszültség-vezérelt oszcillátor) és a VCF (feszültség-vezérelt szűrő)\n" "modulok frekvenciáját vezérlik, az 1V/oktávos egyezményt követik." -#: gnu/packages/audio.scm:588 +#: gnu/packages/audio.scm:589 msgid "" "aubio is a tool designed for the extraction of annotations from audio\n" "signals. Its features include segmenting a sound file before each of its\n" @@ -189,7 +189,7 @@ msgstr "" "a számok határainál, hangmagasság-érzékelés végrehajtása, az ütem\n" "meghatározása, valamint MIDI adatfolyam előállítása élő hangból." -#: gnu/packages/audio.scm:719 +#: gnu/packages/audio.scm:720 msgid "" "Ardour is a multi-channel digital audio workstation, allowing users to\n" "record, edit, mix and master audio and MIDI projects. It is targeted at audio\n" @@ -200,7 +200,7 @@ msgstr "" "és elsajátítsák a hang- és MIDI-projekteket. A célközönsége hangmérnökök,\n" "zenészek, hangsávszerkesztők és zeneszerzők." -#: gnu/packages/audio.scm:833 +#: gnu/packages/audio.scm:853 msgid "" "Audacity is a multi-track audio editor designed for recording, playing\n" "and editing digital audio. It features digital effects and spectrum analysis\n" @@ -210,7 +210,7 @@ msgstr "" "felvételére, lejátszására és szerkesztésére terveztek. Digitális hatásokkal\n" "és spektrumelemző eszközökkel is rendelkezik." -#: gnu/packages/audio.scm:889 +#: gnu/packages/audio.scm:909 msgid "" "This is an open-source version of SGI's audiofile library.\n" "It provides a uniform programming interface for processing of audio data to\n" @@ -221,14 +221,14 @@ msgid "" "G.711 mu-law and A-law." msgstr "" -#: gnu/packages/audio.scm:931 +#: gnu/packages/audio.scm:951 msgid "" "Autotalent is a LADSPA plugin for real-time pitch-correction. Among its\n" "controls are allowable notes, strength of correction, LFO for vibrato and\n" "formant warp." msgstr "" -#: gnu/packages/audio.scm:972 +#: gnu/packages/audio.scm:992 msgid "" "AZR-3 is a port of the free VST plugin AZR-3. It is a tonewheel organ\n" "with drawbars, distortion and rotating speakers. The organ has three\n" @@ -242,7 +242,7 @@ msgstr "" "valamint egy monofonikus basszusregiszter öt regiszterhúzóval. A csomag egy\n" "önálló JACK alkalmazást és LV2 bővítményeket is tartalmaz." -#: gnu/packages/audio.scm:1011 +#: gnu/packages/audio.scm:1031 msgid "" "Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments.\n" "The suite contains lots of effects (delay, modulation, signal processing,\n" @@ -256,14 +256,14 @@ msgstr "" "hangszert (SF2 lejátszó, orgona szimulátor és monofonikus szintetizátor) és\n" "eszközt (analizátort, monó/sztereó eszközök, hangváltók) tartalmaz." -#: gnu/packages/audio.scm:1053 +#: gnu/packages/audio.scm:1073 msgid "" "LV2 port of CAPS, a collection of audio plugins comprising basic virtual\n" "guitar amplification and a small range of classic effects, signal processors and\n" "generators of mostly elementary and occasionally exotic nature." msgstr "" -#: gnu/packages/audio.scm:1094 +#: gnu/packages/audio.scm:1114 msgid "" "The infamous plugins are a collection of LV2 audio plugins for live\n" "performances. The plugins include a cellular automaton synthesizer, an\n" @@ -273,18 +273,18 @@ msgstr "" "bővítmények közt megtalálható egy sejtautomata szintetizátor, burkolókövető,\n" "torzító hatások, szalag hatások és még sok más." -#: gnu/packages/audio.scm:1129 +#: gnu/packages/audio.scm:1149 msgid "" "Snapcast is a multi-room client-server audio player. Clients are time\n" "synchronized with the server to play synced audio." msgstr "" -#: gnu/packages/audio.scm:1159 +#: gnu/packages/audio.scm:1179 #, fuzzy msgid "This package provides Steve Harris's LADSPA plugins." msgstr "Ez a csomag egy LADSPA bővítményt biztosít egy sztereó visszhang hatáshoz." -#: gnu/packages/audio.scm:1199 +#: gnu/packages/audio.scm:1219 msgid "" "Swh-plugins-lv2 is a collection of audio plugins in LV2 format. Plugin\n" "classes include: dynamics (compressor, limiter), time (delay, chorus,\n" @@ -297,13 +297,13 @@ msgstr "" "hangmagasság-eltolás, oszcillátorok, emuláció (szelep, szalag), bit\n" "manipuláció (decimátor, pointer átváltás), stb." -#: gnu/packages/audio.scm:1233 +#: gnu/packages/audio.scm:1253 msgid "" "@code{libdjinterop} is a C++ library that allows access to database\n" "formats used to store information about DJ record libraries." msgstr "" -#: gnu/packages/audio.scm:1295 gnu/packages/audio.scm:1326 +#: gnu/packages/audio.scm:1315 gnu/packages/audio.scm:1346 msgid "" "Tao is a software package for sound synthesis using physical\n" "models. It provides a virtual acoustic material constructed from masses and\n" @@ -313,7 +313,7 @@ msgid "" "object library." msgstr "" -#: gnu/packages/audio.scm:1361 +#: gnu/packages/audio.scm:1381 msgid "" "Csound is a user-programmable and user-extensible sound processing\n" "language and software synthesizer." @@ -321,7 +321,7 @@ msgstr "" "A csound egy felhasználók számára programozható és kiterjeszthető\n" "hangfeldolgozó nyelv és szoftveres szintetizátor." -#: gnu/packages/audio.scm:1388 +#: gnu/packages/audio.scm:1408 msgid "" "midicomp can manipulate SMF (Standard MIDI File) files. It can both\n" " read and write SMF files in 0 or format 1 and also read and write its own\n" @@ -330,7 +330,7 @@ msgid "" " language, and recompiled back into a binary SMF file." msgstr "" -#: gnu/packages/audio.scm:1435 +#: gnu/packages/audio.scm:1455 msgid "" "clalsadrv is a C++ wrapper around the ALSA API simplifying access to\n" "ALSA PCM devices." @@ -338,7 +338,7 @@ msgstr "" "A clalsadrv egy C++ csomagoló az ALSA API-hoz, amely megkönnyíti a\n" "hozzáférést az ALSA PCM eszközökhöz." -#: gnu/packages/audio.scm:1474 +#: gnu/packages/audio.scm:1494 msgid "" "The AMB plugins are a set of LADSPA ambisonics plugins, mainly to be\n" "used within Ardour. Features include: mono and stereo to B-format panning,\n" @@ -349,7 +349,7 @@ msgstr "" "sztereó B-formátumra alakítása, vízszintes forgató, négyzet, hatszög és\n" "kockadekóderek." -#: gnu/packages/audio.scm:1511 +#: gnu/packages/audio.scm:1531 msgid "" "This package provides various LADSPA plugins. @code{cs_chorus} and\n" "@code{cs_phaser} provide chorus and phaser effects, respectively;\n" @@ -366,7 +366,7 @@ msgstr "" "szűrőkön alapul. A szűrők megpróbálják pontosan emulálni a eredeti analóg\n" "társainak nemlineáris áramkörelemeit." -#: gnu/packages/audio.scm:1551 +#: gnu/packages/audio.scm:1571 msgid "" "This package provides a stereo reverb LADSPA plugin based on the\n" "well-known greverb." @@ -374,7 +374,7 @@ msgstr "" "Ez a csomag egy sztereó visszhang LADSPA bővítményt biztosít a jól ismert\n" "greverb alapján." -#: gnu/packages/audio.scm:1587 +#: gnu/packages/audio.scm:1607 #, fuzzy msgid "" "This package provides a LADSPA plugin for a four-band parametric\n" @@ -400,7 +400,7 @@ msgstr "" "használatra, amelyek lehetővé teszik a bővítményvezérlő portok\n" "automatizálását (mint például az Adour) vagy színpadi használatra." -#: gnu/packages/audio.scm:1632 +#: gnu/packages/audio.scm:1652 msgid "" "This package provides a LADSPA plugin to manipulate the stereo width of\n" "audio signals." @@ -408,7 +408,7 @@ msgstr "" "Ez a csomag egy LADSPA bővítményt biztosít a hangjelek sztereó szélességének\n" "módosításához." -#: gnu/packages/audio.scm:1669 +#: gnu/packages/audio.scm:1689 #, fuzzy msgid "" "The @code{blvco} LADSPA plugin provides three anti-aliased oscillators:\n" @@ -436,7 +436,7 @@ msgstr "" "szintetizátorok kimenetéhez hasonló hullámformákat biztosítsanak, mint\n" "például a Moog Voyager." -#: gnu/packages/audio.scm:1713 +#: gnu/packages/audio.scm:1733 msgid "" "This package provides a LADSPA plugin for a Wah effect with envelope\n" "follower." @@ -444,11 +444,11 @@ msgstr "" "Ez a csomag egy LADSPA bővítményt biztosít egy burokkövetővel rendelkező\n" "Wah hatáshoz." -#: gnu/packages/audio.scm:1749 +#: gnu/packages/audio.scm:1769 msgid "This package provides a LADSPA plugin for a stereo reverb effect." msgstr "Ez a csomag egy LADSPA bővítményt biztosít egy sztereó visszhang hatáshoz." -#: gnu/packages/audio.scm:1791 +#: gnu/packages/audio.scm:1811 msgid "" "FluidSynth is a real-time software synthesizer based on the SoundFont 2\n" "specifications. FluidSynth reads and handles MIDI events from the MIDI input\n" @@ -460,18 +460,18 @@ msgstr "" "érkező MIDI eseményeket. Ez egy MIDI szintetizátor szoftveres megfelelője.\n" "A FluidSynth képes midi fájlok lejátszására is egy Soundfont használatával." -#: gnu/packages/audio.scm:1814 +#: gnu/packages/audio.scm:1834 #, fuzzy msgid "FAAD2 is an MPEG-4 and MPEG-2 AAC decoder supporting LC, Main, LTP, SBR, -PS, and DAB+." msgstr "" "Az FAAD2 egy MPEG-4 és MPEG-2 AAC dekódoló, amely támogatja az LC, Main,\n" "LTP, SBR, PS és DAB+ formátumokat." -#: gnu/packages/audio.scm:1855 +#: gnu/packages/audio.scm:1875 msgid "Faust is a programming language for realtime audio signal processing." msgstr "A Faust egy programozási nyelv a valós idejű hangjelfeldolgozáshoz." -#: gnu/packages/audio.scm:1919 +#: gnu/packages/audio.scm:1939 msgid "" "FreePats is a project to create a free and open set of GUS compatible\n" "patches that can be used with softsynths such as Timidity and WildMidi." @@ -480,7 +480,7 @@ msgstr "" "javítócsomagok létrehozásához, amelyeket olyan szintetizátor programokkal\n" "lehet használni, mint például a Timidity vagy a WildMidi." -#: gnu/packages/audio.scm:1972 +#: gnu/packages/audio.scm:1992 msgid "" "Guitarix is a virtual guitar amplifier running JACK.\n" "Guitarix takes the signal from your guitar as a mono-signal from your sound\n" @@ -498,7 +498,7 @@ msgstr "" "beleértve az egyszerű zajkapuktól az olyan modulációs hatásokig, mint\n" "például flanger, fézer vagy auto-wah hatás." -#: gnu/packages/audio.scm:2028 +#: gnu/packages/audio.scm:2048 msgid "" "Rakarrack is a richly featured multi-effects processor emulating a\n" "guitar effects pedalboard. Effects include compressor, expander, noise gate,\n" @@ -519,7 +519,7 @@ msgstr "" "miközben nem alkalmaz belső sávkorlátozó szűrést, így bármilyen hangszerhez\n" "és énekhanghoz is tökéletesen megfelelő." -#: gnu/packages/audio.scm:2084 +#: gnu/packages/audio.scm:2104 msgid "" "IR is a low-latency, real-time, high performance signal convolver\n" "especially for creating reverb effects. It supports impulse responses with 1,\n" @@ -530,7 +530,7 @@ msgstr "" "csatornás impulzusválaszokat a libsndfile által támogatott bármely\n" "hangfájlformátumban." -#: gnu/packages/audio.scm:2124 +#: gnu/packages/audio.scm:2144 msgid "" "JACK is a low-latency audio server. It can connect a number of\n" "different applications to an audio device, as well as allowing them to share\n" @@ -547,7 +547,7 @@ msgstr "" "területre fekteti a hangsúlyt: az összes ügyfél egyidejű végrehajtására és\n" "az alacsony késleltetésű működésre." -#: gnu/packages/audio.scm:2220 +#: gnu/packages/audio.scm:2240 msgid "" "Jalv is a simple but fully featured LV2 host for JACK. It runs LV2\n" "plugins and exposes their ports as JACK ports, essentially making any LV2\n" @@ -558,7 +558,7 @@ msgstr "" "átiratokként, lényegében ezzel bármely LV2 bővítményfunkciót JACK\n" "alkalmazássá alakítva." -#: gnu/packages/audio.scm:2266 +#: gnu/packages/audio.scm:2286 msgid "" "LADSPA is a standard that allows software audio processors and effects\n" "to be plugged into a wide range of audio synthesis and recording packages." @@ -567,7 +567,7 @@ msgstr "" "hangfeldolgozók és hatások bővítményként való alkalmazását számos\n" "hangszintetizátor és hangrögzítő csomag számára." -#: gnu/packages/audio.scm:2318 +#: gnu/packages/audio.scm:2338 msgid "" "LASH is a session management system for audio applications. It allows\n" "you to save and restore audio sessions consisting of multiple interconneced\n" @@ -579,7 +579,7 @@ msgstr "" "visszaállítását, a program állapotának (azaz a betöltött javítócsomagok) és\n" "a köztük lévő kapcsolatok visszaállítását." -#: gnu/packages/audio.scm:2341 +#: gnu/packages/audio.scm:2361 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is\n" "designed to improve headphone listening of stereo audio records. Recommended\n" @@ -592,7 +592,7 @@ msgstr "" "használatnál, hogy megkímélje a szupersztereó hatás okozta fáradástól\n" "lényeges torzítás nélkül." -#: gnu/packages/audio.scm:2364 +#: gnu/packages/audio.scm:2384 #, fuzzy msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and\n" @@ -607,7 +607,7 @@ msgstr "" "használatnál, hogy megkímélje a szupersztereó hatás okozta fáradástól\n" "lényeges torzítás nélkül." -#: gnu/packages/audio.scm:2390 +#: gnu/packages/audio.scm:2410 #, fuzzy msgid "" "liblo is a lightweight library that provides an easy to use\n" @@ -616,7 +616,7 @@ msgstr "" "A liblo egy könnyűsúlyú programkönyvtár, amely az Open Sound Control (OSC)\n" "protokoll egy könnyen használható megvalósítását nyújtja." -#: gnu/packages/audio.scm:2426 +#: gnu/packages/audio.scm:2446 msgid "" "RtAudio is a set of C++ classes that provides a common API for real-time\n" "audio input/output. It was designed with the following objectives:\n" @@ -635,13 +635,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/audio.scm:2462 +#: gnu/packages/audio.scm:2482 msgid "" "This package provides bindings for PortAudio v19, the\n" "cross-platform audio input/output stream library." msgstr "" -#: gnu/packages/audio.scm:2489 +#: gnu/packages/audio.scm:2509 msgid "" "Pyliblo is a Python wrapper for the liblo Open Sound Control (OSC)\n" "library. It supports almost the complete functionality of liblo, allowing you\n" @@ -654,7 +654,7 @@ msgstr "" "Python API használatával. Tartalmazza a @code{send_osc} és a @code{dump_osc}\n" "parancssori segédprogramokat is." -#: gnu/packages/audio.scm:2526 +#: gnu/packages/audio.scm:2546 #, fuzzy msgid "" "This package provides python bindings for libsndfile based on\n" @@ -663,14 +663,14 @@ msgstr "" "Ez a csomag egy szótárat biztosít a Hunspell helyesírás-ellenőrző\n" "programkönyvtárhoz." -#: gnu/packages/audio.scm:2544 +#: gnu/packages/audio.scm:2564 #, fuzzy msgid "" "This package provides a python API to read and write MIDI\n" "files." msgstr "Ez a csomag egy Python felületet biztosít a Redis kulcs-érték tároláshoz." -#: gnu/packages/audio.scm:2581 +#: gnu/packages/audio.scm:2601 msgid "" "@command{audio-to-midi} converts audio files to multichannel\n" "MIDI files. It accomplishes this by performing FFTs on all channels of the\n" @@ -680,7 +680,7 @@ msgid "" "frequencies. This data is then formatted to MIDI and written to disk." msgstr "" -#: gnu/packages/audio.scm:2624 +#: gnu/packages/audio.scm:2644 msgid "" "Lilv is a C library to make the use of LV2 plugins as simple as possible\n" "for applications. Lilv is the successor to SLV2, rewritten to be\n" @@ -691,7 +691,7 @@ msgstr "" "amelyet újraírtak, hogy lényegesen gyorsabb legyen és a lehető legkevesebb\n" "függőséggel rendelkezzen." -#: gnu/packages/audio.scm:2652 +#: gnu/packages/audio.scm:2672 msgid "" "LV2 is an open specification for audio plugins and host applications.\n" "At its core, LV2 is a simple stable interface, accompanied by extensions which\n" @@ -703,15 +703,15 @@ msgstr "" "kiterjesztésekkel együtt, amelyek funkcionalitást adnak az egyre nagyobb\n" "teljesítményű hangprogramok támogatásához." -#: gnu/packages/audio.scm:2688 +#: gnu/packages/audio.scm:2708 msgid "An LV2 port of the mda Piano VSTi." msgstr "Az mda Piano VSTi LV2 átirata." -#: gnu/packages/audio.scm:2702 +#: gnu/packages/audio.scm:2722 msgid "An LV2 port of the mda EPiano VSTi." msgstr "Az mda EPiano VSTi LV2 átirata." -#: gnu/packages/audio.scm:2732 +#: gnu/packages/audio.scm:2752 msgid "" "The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and\n" "extensions into easy to use C++ classes. It is the successor of\n" @@ -721,7 +721,7 @@ msgstr "" "becsomagolják az LV2 C API-t és kiterjesztéseket egyszerűen használható C++\n" "osztályokba. Ez az lv2-c++-tools utódja." -#: gnu/packages/audio.scm:2774 +#: gnu/packages/audio.scm:2794 msgid "" "OpenAL provides capabilities for playing audio in a virtual 3D\n" "environment. Distance attenuation, doppler shift, and directional sound\n" @@ -737,11 +737,11 @@ msgstr "" "EFX kiterjesztésen keresztül érhetők el. Leegyszerűsíti a műsorszórást, a\n" "több csatornás pufferelést és hangfelvételt is." -#: gnu/packages/audio.scm:2805 +#: gnu/packages/audio.scm:2825 msgid "freealut is the OpenAL Utility Toolkit." msgstr "A freealut az OpenAL segédprogram eszközkészlet." -#: gnu/packages/audio.scm:2837 +#: gnu/packages/audio.scm:2857 msgid "" "Patchage is a modular patch bay for audio and MIDI systems based on JACK\n" "and ALSA." @@ -749,13 +749,13 @@ msgstr "" "A Patchage egy moduláris patch panel JACK-en és ALSA-n alapuló hang- és MIDI\n" "rendszerekhez." -#: gnu/packages/audio.scm:2862 +#: gnu/packages/audio.scm:2882 msgid "" "The Portable C Audio Library (pcaudiolib) provides a C@tie{}API to\n" "different audio devices such as ALSA or PulseAudio." msgstr "" -#: gnu/packages/audio.scm:2889 +#: gnu/packages/audio.scm:2909 msgid "" "Control a Jack server. Allows you to plug various sources\n" "into various outputs and to start, stop and configure jackd" @@ -764,14 +764,14 @@ msgstr "" "kapcsoljon a különféle kimenetekre, valamint elindítsa, leállítsa és\n" "beállítsa a jackd démont." -#: gnu/packages/audio.scm:2921 +#: gnu/packages/audio.scm:2941 msgid "" "QJackRcd is a simple graphical stereo recorder for JACK\n" "supporting silence processing for automatic pause, file splitting, and\n" "background file post-processing." msgstr "" -#: gnu/packages/audio.scm:3029 +#: gnu/packages/audio.scm:3049 msgid "" "SuperCollider is a synthesis engine (@code{scsynth} or\n" "@code{supernova}) and programming language (@code{sclang}). It can be used\n" @@ -783,14 +783,14 @@ msgid "" "using Guix System." msgstr "" -#: gnu/packages/audio.scm:3057 +#: gnu/packages/audio.scm:3077 #, fuzzy msgid "This package provides libshout plus IDJC extensions." msgstr "" "Ez a csomag egy szótárat biztosít a Hunspell helyesírás-ellenőrző\n" "programkönyvtárhoz." -#: gnu/packages/audio.scm:3083 +#: gnu/packages/audio.scm:3103 msgid "" "Raul (Real-time Audio Utility Library) is a C++ utility library primarily\n" "aimed at audio/musical applications." @@ -798,7 +798,7 @@ msgstr "" "A Raul (valós idejű hang segédprogramkönyvtár) egy C++ segédprogramkönyvtár,\n" "amelynek elsődleges célterülete a hang- és zenei alkalmazások." -#: gnu/packages/audio.scm:3119 +#: gnu/packages/audio.scm:3139 msgid "" "This package contains the @command{resample} and\n" "@command{windowfilter} command line utilities. The @command{resample} command\n" @@ -807,7 +807,7 @@ msgid "" "filters using the so-called @emph{window method}." msgstr "" -#: gnu/packages/audio.scm:3160 +#: gnu/packages/audio.scm:3180 msgid "" "Rubber Band is a library and utility program that permits changing the\n" "tempo and pitch of an audio recording independently of one another." @@ -816,7 +816,7 @@ msgstr "" "teszi egy hangfelvétel tempójának és hangmagasságának egymástól függetlenül\n" "történő megváltoztatását." -#: gnu/packages/audio.scm:3184 +#: gnu/packages/audio.scm:3204 msgid "" "RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut, and API specific\n" "classes) that provide a common cross-platform API for realtime MIDI\n" @@ -826,7 +826,7 @@ msgstr "" "jellemző osztályok), amelyek egy közös, keresztplatformos API-t biztosítanak\n" "valós idejű MIDI bemenethez és kimenethez." -#: gnu/packages/audio.scm:3210 +#: gnu/packages/audio.scm:3230 msgid "" "Sratom is a library for serialising LV2 atoms to/from RDF, particularly\n" "the Turtle syntax." @@ -834,7 +834,7 @@ msgstr "" "A Sratom egy programkönyvtár LV2 atomok RDF sorbafejtésére és\n" "visszafejtésére, különösen a Turtle szintaxis használatával." -#: gnu/packages/audio.scm:3238 +#: gnu/packages/audio.scm:3258 msgid "" "Suil is a lightweight C library for loading and wrapping LV2 plugin UIs.\n" "\n" @@ -858,13 +858,13 @@ msgstr "" "\n" "A Suil jelenleg a Gtk, a Qt és az X11 összes kombinációját támogatja." -#: gnu/packages/audio.scm:3270 +#: gnu/packages/audio.scm:3290 msgid "" "@code{libebur128} is a C library that implements the EBU R 128 standard\n" "for loudness normalisation." msgstr "" -#: gnu/packages/audio.scm:3324 +#: gnu/packages/audio.scm:3344 msgid "" "TiMidity++ is a software synthesizer. It can play MIDI files by\n" "converting them into PCM waveform data; give it a MIDI data along with digital\n" @@ -879,7 +879,7 @@ msgstr "" "hanem el is tudja menteni az előállított hullámformákat a merevlemezre\n" "különféle hangfájl formátumként." -#: gnu/packages/audio.scm:3364 +#: gnu/packages/audio.scm:3384 msgid "" "Vamp is an audio processing plugin system for plugins that extract\n" "descriptive information from audio data — typically referred to as audio\n" @@ -890,7 +890,7 @@ msgstr "" "analízis bővítményekként vagy hangjellemző-kinyerő bővítményekként\n" "hivatkoznak rájuk." -#: gnu/packages/audio.scm:3408 +#: gnu/packages/audio.scm:3428 msgid "" "SBSMS (Subband Sinusoidal Modeling Synthesis) is software for time\n" "stretching and pitch scaling of audio. This package contains the library." @@ -899,13 +899,13 @@ msgstr "" "idejének nyújtásához és hangmagasságának skálázásához. Ez a csomag a\n" "programkönyvtárat tartalmazza." -#: gnu/packages/audio.scm:3435 +#: gnu/packages/audio.scm:3455 msgid "" "@code{libkeyfinder} is a small C++11 library for estimating the musical\n" "key of digital audio." msgstr "" -#: gnu/packages/audio.scm:3465 +#: gnu/packages/audio.scm:3485 msgid "" "WavPack is an audio compression format with lossless, lossy and hybrid\n" "compression modes. This package contains command-line programs and library to\n" @@ -915,7 +915,7 @@ msgstr "" "hibrid tömörítési módokkal. Ez a csomag parancssori programokat és egy\n" "programkönyvtárat tartalmaz wavpack fájlok kódolásához és dekódolásához." -#: gnu/packages/audio.scm:3486 +#: gnu/packages/audio.scm:3506 msgid "" "Libmodplug renders mod music files as raw audio data, for playing or\n" "conversion. mod, .s3m, .it, .xm, and a number of lesser-known formats are\n" @@ -927,7 +927,7 @@ msgstr "" "ismert formátum támogatott. A választható funkciók között megtalálható a jó\n" "minőségű újramintavételezés, a basszus kiemelés, a térhatás és a visszhang." -#: gnu/packages/audio.scm:3507 +#: gnu/packages/audio.scm:3527 msgid "" "Libxmp is a library that renders module files to PCM data. It supports\n" "over 90 mainstream and obscure module formats including Protracker (MOD),\n" @@ -938,7 +938,7 @@ msgstr "" "Protracker (MOD), Scream Tracker 3 (S3M), Fast Tracker II (XM) és az Impulse\n" "Tracker (IT) fájlokat." -#: gnu/packages/audio.scm:3531 +#: gnu/packages/audio.scm:3551 msgid "" "Xmp is a portable module player that plays over 90 mainstream and\n" "obscure module formats, including Protracker MOD, Fasttracker II XM, Scream\n" @@ -949,7 +949,7 @@ msgstr "" "Fasttracker II (XM), Scream Tracker 3 (S3M) és az Impulse Tracker (IT)\n" "fájlokat." -#: gnu/packages/audio.scm:3556 +#: gnu/packages/audio.scm:3576 msgid "" "SoundTouch is an audio processing library for changing the tempo, pitch\n" "and playback rates of audio streams or audio files. It is intended for\n" @@ -963,7 +963,7 @@ msgstr "" "tempó/hangmagasság vezérlő funkcionalitásra, vagy csak hanghatásokkal\n" "játszanak." -#: gnu/packages/audio.scm:3595 +#: gnu/packages/audio.scm:3615 msgid "" "SoX (Sound eXchange) is a command line utility that can convert\n" "various formats of computer audio files to other formats. It can also\n" @@ -975,7 +975,7 @@ msgstr "" "hangfájlokra különféle hanghatásokat is alkalmazni, valamint hozzáadott\n" "funkcióként a SoX képes lejátszani és rögzíteni a hangfájlokat." -#: gnu/packages/audio.scm:3620 +#: gnu/packages/audio.scm:3640 msgid "" "The SoX Resampler library (libsoxr) performs one-dimensional sample-rate\n" "conversion. It may be used, for example, to resample PCM-encoded audio." @@ -984,7 +984,7 @@ msgstr "" "gyakoriság átalakítást hajt végre. Használható például PCM kódolású hang\n" "újramintavételezésére." -#: gnu/packages/audio.scm:3643 +#: gnu/packages/audio.scm:3663 msgid "" "TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder based on\n" "tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code and\n" @@ -994,7 +994,7 @@ msgstr "" "tooLAME programján alapul, amelyet felváltva az ISO dist10 kód és a LAME\n" "bizonyos részei alapján fejlesztettek." -#: gnu/packages/audio.scm:3699 +#: gnu/packages/audio.scm:3719 msgid "" "PortAudio is a portable C/C++ audio I/O library providing a simple API\n" "to record and/or play sound using a callback function or a blocking read/write\n" @@ -1004,7 +1004,7 @@ msgstr "" "egyszerű API-t biztosít hangok felvételéhez és lejátszásához visszahívó\n" "függvények vagy blokkoló olvasó/író felületek használatával." -#: gnu/packages/audio.scm:3728 +#: gnu/packages/audio.scm:3748 msgid "" "Qsynth is a GUI front-end application for the FluidSynth SoundFont\n" "synthesizer written in C++." @@ -1012,7 +1012,7 @@ msgstr "" "A Qsynth egy C++-ban írt grafikus felhasználó felület előtérprogram\n" "alkalmazás a FluidSynth SoundFont szintetizátorhoz." -#: gnu/packages/audio.scm:3767 +#: gnu/packages/audio.scm:3787 msgid "" "RSound allows you to send audio from an application and transfer it\n" "directly to a different computer on your LAN network. It is an audio daemon\n" @@ -1022,7 +1022,7 @@ msgstr "" "közvetlenül átvigye a helyi hálózat valamelyik másik számítógépére. Ez egy\n" "hangdémon, amely jelentősen különbözik a legtöbb egyéb hangdémontól." -#: gnu/packages/audio.scm:3797 +#: gnu/packages/audio.scm:3817 msgid "" "XJackFreak is an audio analysis and equalizing tool for the Jack Audio\n" "Connection Kit. It can display the FFT of any input, modify it and output the\n" @@ -1032,7 +1032,7 @@ msgstr "" "készlethez. Képes bármely bement gyors Fourier transzformáltjának\n" "megjelenítésére, módosítására és az eredmény lejátszására." -#: gnu/packages/audio.scm:3849 +#: gnu/packages/audio.scm:3869 msgid "" "Zita convolver is a C++ library providing a real-time convolution\n" "engine." @@ -1040,7 +1040,7 @@ msgstr "" "A Zita konvolver egy C++ programkönyvtár, amely egy valós idejű konvolúciós\n" "motort biztosít." -#: gnu/packages/audio.scm:3901 +#: gnu/packages/audio.scm:3921 msgid "" "Libzita-resampler is a C++ library for resampling audio signals. It is\n" "designed to be used within a real-time processing context, to be fast, and to\n" @@ -1051,7 +1051,7 @@ msgstr "" "feldolgozókörnyezetben használják, gyors legyen és jó minőségű\n" "mintavételezési gyakoriság átalakítást biztosítson." -#: gnu/packages/audio.scm:3947 +#: gnu/packages/audio.scm:3967 msgid "" "Zita-alsa-pcmi is a C++ wrapper around the ALSA API. It provides easy\n" "access to ALSA PCM devices, taking care of the many functions required to\n" @@ -1063,7 +1063,7 @@ msgstr "" "hardver megnyitásához, előkészítéséhez és használatához szükségesek:\n" "például mmap módú eszközök és lebegőpontos hangadatok megadása." -#: gnu/packages/audio.scm:3971 +#: gnu/packages/audio.scm:3991 msgid "" "Cuetools is a set of programs that are useful for manipulating\n" "and using CUE sheet (cue) files and Table of Contents (toc) files. CUE and TOC\n" @@ -1075,14 +1075,14 @@ msgstr "" "és TOC fájlok módot adnak arra, hogy az adat vagy hang CD-k kiosztását egy\n" "számítógép által olvasható ASCII formátumban jelenítse meg." -#: gnu/packages/audio.scm:4000 +#: gnu/packages/audio.scm:4020 msgid "" "mp3guessenc is a command line utility that tries to detect the\n" "encoder used for an MPEG Layer III (MP3) file, as well as scan any MPEG audio\n" "file (any layer) and print a lot of useful information." msgstr "" -#: gnu/packages/audio.scm:4021 +#: gnu/packages/audio.scm:4041 msgid "" "shntool is a multi-purpose WAVE data processing and reporting\n" "utility. File formats are abstracted from its core, so it can process any file\n" @@ -1097,7 +1097,7 @@ msgstr "" "fájltípust kezelni képes formátummodul. Képes CUE fájlok előállítására is,\n" "valamint azok használatával a WAVE adatokat több fájlba tudja darabolni." -#: gnu/packages/audio.scm:4061 +#: gnu/packages/audio.scm:4081 msgid "" "Dcadec is a DTS Coherent Acoustics surround sound decoder\n" "with support for HD extensions." @@ -1105,7 +1105,7 @@ msgstr "" "A Dcadec egy DTS koherens akusztikus környezeti hang dekódoló HD\n" "kiterjesztések támogatásával." -#: gnu/packages/audio.scm:4098 +#: gnu/packages/audio.scm:4118 msgid "" "BS1770GAIN is a loudness scanner compliant with ITU-R BS.1770 and its\n" "flavors EBU R128, ATSC A/85, and ReplayGain 2.0. It helps normalizing the\n" @@ -1115,33 +1115,33 @@ msgstr "" "szabványnak és az EBU R128, ATSC A/85 és ReplayGain 2.0 mellékszabványainak.\n" "Segít azonos szintre hozni a hang- és videofájlok hangosságát." -#: gnu/packages/audio.scm:4130 +#: gnu/packages/audio.scm:4150 msgid "" "An easy to use audio filtering library made from webrtc\n" "code, used in @code{libtoxcore}." msgstr "" -#: gnu/packages/audio.scm:4183 +#: gnu/packages/audio.scm:4203 msgid "" "This C library provides an encoder and a decoder for the GSM\n" "06.10 RPE-LTP lossy speech compression algorithm." msgstr "" -#: gnu/packages/audio.scm:4206 +#: gnu/packages/audio.scm:4226 msgid "" "This package contains wrappers for accessing the ALSA API from Python.\n" "It is currently fairly complete for PCM devices, and has some support for\n" "mixers." msgstr "" -#: gnu/packages/audio.scm:4230 +#: gnu/packages/audio.scm:4250 msgid "" "This package provides an encoder for the LDAC\n" "high-resolution Bluetooth audio streaming codec for streaming at up to 990\n" "kbps at 24 bit/96 kHz." msgstr "" -#: gnu/packages/audio.scm:4274 +#: gnu/packages/audio.scm:4294 msgid "" "This project is a rebirth of a direct integration between\n" "Bluez and ALSA. Since Bluez >= 5, the built-in integration has been removed\n" @@ -1154,14 +1154,14 @@ msgid "" "on the ALSA software PCM plugin." msgstr "" -#: gnu/packages/audio.scm:4340 +#: gnu/packages/audio.scm:4360 msgid "" "Snd is a sound editor modelled loosely after Emacs. It can be\n" "customized and extended using either the s7 Scheme implementation (included in\n" "the Snd sources), Ruby, or Forth." msgstr "" -#: gnu/packages/audio.scm:4369 +#: gnu/packages/audio.scm:4389 msgid "" "Noise Repellent is an LV2 plugin to reduce noise. It has\n" "the following features:\n" @@ -1181,31 +1181,31 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/audio.scm:4436 +#: gnu/packages/audio.scm:4456 msgid "" "RNNoise is a library that uses deep learning to apply\n" "noise suppression to audio sources with voice presence. This package provides\n" "an LV2 audio plugin." msgstr "" -#: gnu/packages/audio.scm:4480 +#: gnu/packages/audio.scm:4500 msgid "" "@code{cli-visualizer} displays fast-Fourier\n" "transforms (FFTs) of the sound being played, as well as other graphical\n" "representations." msgstr "" -#: gnu/packages/audio.scm:4530 +#: gnu/packages/audio.scm:4550 msgid "" "C.A.V.A. is a bar audio spectrum visualizer for the terminal\n" "using ALSA, MPD, PulseAudio, or a FIFO buffer as its input." msgstr "" -#: gnu/packages/audio.scm:4564 +#: gnu/packages/audio.scm:4584 msgid "Fluid-3 is Frank Wen's pro-quality GM soundfont." msgstr "" -#: gnu/packages/audio.scm:4586 +#: gnu/packages/audio.scm:4606 msgid "" "FDK is a library for encoding and decoding Advanced Audio\n" "Coding (AAC) format audio, developed by Fraunhofer IIS, and included as part of\n" @@ -1216,20 +1216,20 @@ msgid "" " surround)." msgstr "" -#: gnu/packages/audio.scm:4626 +#: gnu/packages/audio.scm:4646 msgid "" "OpenShot Audio Library (libopenshot-audio) allows\n" "high-quality editing and playback of audio, and is based on the JUCE\n" "library." msgstr "" -#: gnu/packages/audio.scm:4652 +#: gnu/packages/audio.scm:4672 msgid "" "FAudio is an XAudio reimplementation that focuses solely on\n" "developing fully accurate DirectX Audio runtime libraries." msgstr "" -#: gnu/packages/audio.scm:4679 +#: gnu/packages/audio.scm:4699 msgid "" "Gnaural is a programmable auditory binaural beat synthesizer\n" "intended to be used for brainwave entrainment. Gnaural supports creation of\n" @@ -1238,20 +1238,20 @@ msgid "" "other Gnaural instances, allowing synchronous sessions between many users." msgstr "" -#: gnu/packages/audio.scm:4714 +#: gnu/packages/audio.scm:4734 msgid "" "DarkIce is a live audio streamer. It takes audio input from\n" "a sound card, encodes it into Ogg Vorbis and/or mp3, and sends the audio\n" "stream to one or more IceCast and/or ShoutCast servers." msgstr "" -#: gnu/packages/audio.scm:4738 +#: gnu/packages/audio.scm:4758 msgid "" "Libltc is a POSIX-C Library for handling\n" "@dfn{Linear/Longitudinal Time Code} (LTC) data." msgstr "" -#: gnu/packages/audio.scm:4772 +#: gnu/packages/audio.scm:4792 msgid "" "TTA performs lossless compression on multichannel 8,16 and 24 bits\n" "data of the Wav audio files. Being lossless means that no data-\n" @@ -1262,14 +1262,14 @@ msgid "" "supports both of ID3v1/v2 and APEv2 tags." msgstr "" -#: gnu/packages/audio.scm:4805 +#: gnu/packages/audio.scm:4825 msgid "" "@code{libsoundio} is a C library providing audio input and\n" "output. The API is suitable for real-time software such as digital audio\n" "workstations as well as consumer software such as music players." msgstr "" -#: gnu/packages/audio.scm:4831 +#: gnu/packages/audio.scm:4851 msgid "" "Redkite is a small GUI toolkit developed in C++17 and\n" "inspired from other well known GUI toolkits such as Qt and GTK. It is\n" @@ -1278,7 +1278,7 @@ msgid "" "as is the case with audio plugins." msgstr "" -#: gnu/packages/audio.scm:4903 +#: gnu/packages/audio.scm:4923 msgid "" "Carla is a modular audio plugin host, with features like\n" "transport control, automation of parameters via MIDI CC and remote control\n" @@ -1287,7 +1287,7 @@ msgid "" "default and preferred audio driver but also supports native drivers like ALSA." msgstr "" -#: gnu/packages/audio.scm:4939 +#: gnu/packages/audio.scm:4959 msgid "" "Ecasound is a software package designed for multitrack audio\n" "processing. It can be used for simple tasks like audio playback, recording and\n" @@ -1299,28 +1299,28 @@ msgid "" "in the package." msgstr "" -#: gnu/packages/audio.scm:4977 +#: gnu/packages/audio.scm:4997 msgid "" "libaudec is a wrapper library over ffmpeg, sndfile and\n" "libsamplerate for reading and resampling audio files, based on Robin Gareus'\n" "@code{audio_decoder} code." msgstr "" -#: gnu/packages/audio.scm:5007 +#: gnu/packages/audio.scm:5027 msgid "" "lv2lint is an LV2 lint-like tool that checks whether a\n" "given plugin and its UI(s) match up with the provided metadata and adhere\n" "to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5041 +#: gnu/packages/audio.scm:5061 msgid "" "lv2toweb allows the user to create an xhtml page with information\n" "about the given LV2 plugin, provided that the plugin and its UI(s) match up\n" "with the provided metadata and adhere to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5069 +#: gnu/packages/audio.scm:5089 msgid "" "ZToolkit (Ztk) is a cross-platform GUI toolkit heavily\n" "inspired by GTK. It handles events and low level drawing on behalf of\n" @@ -1330,7 +1330,7 @@ msgid "" "minimum." msgstr "" -#: gnu/packages/audio.scm:5102 +#: gnu/packages/audio.scm:5122 msgid "" "libInstPatch is a library for processing digital sample based MIDI\n" "instrument \"patch\" files. The types of files libInstPatch supports are used\n" @@ -1339,28 +1339,28 @@ msgid "" "edited, converted, compressed and saved." msgstr "" -#: gnu/packages/audio.scm:5149 +#: gnu/packages/audio.scm:5169 msgid "" "The LSP DSP library provides a set of functions that perform\n" "SIMD-optimized computing on several hardware architectures. All functions\n" "currently operate on IEEE-754 single-precision floating-point numbers." msgstr "" -#: gnu/packages/audio.scm:5180 +#: gnu/packages/audio.scm:5200 msgid "" "Codec 2 is a speech codec designed for communications quality speech\n" "between 700 and 3200 bit/s. The main application is low bandwidth HF/VHF\n" "digital radio." msgstr "" -#: gnu/packages/audio.scm:5206 +#: gnu/packages/audio.scm:5226 msgid "" "The mbelib library provides support for the 7200x4400 bit/s codec used\n" "in P25 Phase 1, the 7100x4400 bit/s codec used in ProVoice and the @emph{Half\n" "Rate} 3600x2250 bit/s vocoder used in various radio systems." msgstr "" -#: gnu/packages/audio.scm:5299 +#: gnu/packages/audio.scm:5319 msgid "" "Ableton Link is a C++ library that synchronizes musical beat, tempo, and phase\n" "across multiple applications running on one or more devices. Applications on devices\n" @@ -1369,20 +1369,20 @@ msgid "" "while still staying in time." msgstr "" -#: gnu/packages/audio.scm:5360 +#: gnu/packages/audio.scm:5380 msgid "" "Butt is a tool to stream audio to a ShoutCast or\n" "Icecast server." msgstr "" -#: gnu/packages/audio.scm:5406 +#: gnu/packages/audio.scm:5426 msgid "" "siggen is a set of tools for imitating a laboratory signal\n" "generator, generating audio signals out of Linux's /dev/dsp audio\n" "device. There is support for mono and/or stereo and 8 or 16 bit samples." msgstr "" -#: gnu/packages/audio.scm:5453 +#: gnu/packages/audio.scm:5473 msgid "" "@code{python-pysox} is a wrapper around the @command{sox}\n" "command line tool. The API offers @code{Transformer} and @code{Combiner}\n" @@ -1392,7 +1392,7 @@ msgid "" "and much more." msgstr "" -#: gnu/packages/audio.scm:5492 +#: gnu/packages/audio.scm:5512 msgid "" "@code{python-resampy} implements the band-limited sinc interpolation\n" "method for sampling rate conversion as described by Julius O. Smith at the\n" @@ -1400,34 +1400,34 @@ msgid "" "Home Page}." msgstr "" -#: gnu/packages/audio.scm:5528 +#: gnu/packages/audio.scm:5548 msgid "" "@code{librosa} is a python package for music and audio analysis. It\n" "provides the building blocks necessary to create music information retrieval\n" "systems." msgstr "" -#: gnu/packages/audio.scm:5561 +#: gnu/packages/audio.scm:5581 msgid "" "MDA-LV2 is an LV2 port of the MDA plugins. It includes effects and a few\n" "instrument plugins." msgstr "" -#: gnu/packages/audio.scm:5593 +#: gnu/packages/audio.scm:5613 msgid "" "The Odio SACD shared library is a decoding engine which takes a Super\n" "Audio CD source and extracts a 24-bit high resolution WAV file. It handles\n" "both DST and DSD streams." msgstr "" -#: gnu/packages/audio.scm:5618 +#: gnu/packages/audio.scm:5638 msgid "" "Odio SACD is a command-line application which takes a Super Audio CD\n" "source and extracts a 24-bit high resolution WAV file. It handles both DST\n" "and DSD streams." msgstr "" -#: gnu/packages/backup.scm:155 +#: gnu/packages/backup.scm:165 msgid "" "Duplicity backs up directories by producing encrypted tar-format volumes\n" "and uploading them to a remote or local file server. Because duplicity uses\n" @@ -1437,7 +1437,7 @@ msgid "" "spying and/or modification by the server." msgstr "" -#: gnu/packages/backup.scm:180 +#: gnu/packages/backup.scm:190 msgid "" "Par2cmdline uses Reed-Solomon error-correcting codes to\n" "generate and verify PAR2 recovery files. These files can be distributed\n" @@ -1449,7 +1449,7 @@ msgid "" "can even repair them." msgstr "" -#: gnu/packages/backup.scm:219 +#: gnu/packages/backup.scm:229 msgid "" "Hdup2 is a backup utility, its aim is to make backup really simple. The\n" "backup scheduling is done by means of a cron job. It supports an\n" @@ -1457,7 +1457,7 @@ msgid "" "backups (called chunks) to allow easy burning to CD/DVD." msgstr "" -#: gnu/packages/backup.scm:316 +#: gnu/packages/backup.scm:326 msgid "" "Libarchive provides a flexible interface for reading and writing\n" "archives in various formats such as tar and cpio. Libarchive also supports\n" @@ -1468,7 +1468,7 @@ msgid "" "random access nor for in-place modification." msgstr "" -#: gnu/packages/backup.scm:380 +#: gnu/packages/backup.scm:390 msgid "" "Rdup is a utility inspired by rsync and the plan9 way of doing backups.\n" "Rdup itself does not backup anything, it only print a list of absolute\n" @@ -1476,7 +1476,7 @@ msgid "" "list and implement the backup strategy." msgstr "" -#: gnu/packages/backup.scm:419 +#: gnu/packages/backup.scm:429 msgid "" "SnapRAID backs up files stored across multiple storage devices, such as\n" "disk arrays, in an efficient way reminiscent of its namesake @acronym{RAID,\n" @@ -1502,7 +1502,7 @@ msgid "" "remain fully idle, saving power and producing less noise." msgstr "" -#: gnu/packages/backup.scm:469 +#: gnu/packages/backup.scm:479 msgid "" "Btar is a tar-compatible archiver which allows arbitrary compression and\n" "ciphering, redundancy, differential backup, indexed extraction, multicore\n" @@ -1510,7 +1510,7 @@ msgid "" "errors." msgstr "" -#: gnu/packages/backup.scm:496 +#: gnu/packages/backup.scm:506 msgid "" "Rdiff-backup backs up one directory to another, possibly over a network.\n" "The target directory ends up a copy of the source directory, but extra reverse\n" @@ -1525,7 +1525,7 @@ msgid "" "rdiff-backup is easy to use and settings have sensible defaults." msgstr "" -#: gnu/packages/backup.scm:532 +#: gnu/packages/backup.scm:542 msgid "" "rsnapshot is a file system snapshot utility based on rsync.\n" "rsnapshot makes it easy to make periodic snapshots of local machines, and\n" @@ -1533,7 +1533,7 @@ msgid "" "rsnapshot uses hard links to deduplicate identical files." msgstr "" -#: gnu/packages/backup.scm:610 +#: gnu/packages/backup.scm:620 msgid "" "Libchop is a set of utilities and library for data backup and\n" "distributed storage. Its main application is @command{chop-backup}, an\n" @@ -1544,17 +1544,17 @@ msgid "" "detection, and lossless compression." msgstr "" -#: gnu/packages/backup.scm:740 +#: gnu/packages/backup.scm:750 msgid "" "Borg is a deduplicating backup program. Optionally, it\n" "supports compression and authenticated encryption. The main goal of Borg is to\n" "provide an efficient and secure way to backup data. The data deduplication\n" "technique used makes Borg suitable for daily backups since only changes are\n" -"stored. The authenticated encryption technique makes it suitable for backups\n" -"to not fully trusted targets. Borg is a fork of Attic." +"stored. The authenticated encryption technique makes it suitable for\n" +"storing backups on untrusted computers." msgstr "" -#: gnu/packages/backup.scm:771 +#: gnu/packages/backup.scm:781 msgid "" "wimlib is a C library and set of command-line utilities for\n" "creating, modifying, extracting, and mounting archives in the Windows Imaging\n" @@ -1562,14 +1562,14 @@ msgid "" "NTFS volumes using @code{ntfs-3g}, preserving NTFS-specific attributes." msgstr "" -#: gnu/packages/backup.scm:879 +#: gnu/packages/backup.scm:889 msgid "" "With dirvish you can maintain a set of complete images of your\n" "file systems with unattended creation and expiration. A dirvish backup vault\n" "is like a time machine for your data." msgstr "" -#: gnu/packages/backup.scm:974 +#: gnu/packages/backup.scm:984 msgid "" "Restic is a program that does backups right and was designed\n" "with the following principles in mind:\n" @@ -1601,7 +1601,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/backup.scm:1025 +#: gnu/packages/backup.scm:1035 msgid "" "ZBackup is a globally-deduplicating backup tool, based on the\n" "ideas found in Rsync. Feed a large @file{.tar} into it, and it will\n" @@ -1614,7 +1614,7 @@ msgid "" "is format-agnostic, so you can feed virtually any files to it." msgstr "" -#: gnu/packages/backup.scm:1061 +#: gnu/packages/backup.scm:1071 msgid "" "Dump examines files in a file system, determines which ones\n" "need to be backed up, and copies those files to a specified disk, tape or\n" @@ -1625,14 +1625,44 @@ msgid "" "interactive mode." msgstr "" -#: gnu/packages/backup.scm:1105 +#: gnu/packages/backup.scm:1131 +msgid "" +"Btrbk is a backup tool for Btrfs subvolumes, taking\n" +"advantage of Btrfs specific capabilities to create atomic snapshots and\n" +"transfer them incrementally to your backup locations. The source and target\n" +"locations are specified in a config file, which allows easily configuring\n" +"simple scenarios like e.g. a @i{laptop with locally attached backup disks}, as\n" +"well as more complex ones, e.g. a @i{server receiving backups from several\n" +"hosts via SSH, with different retention policy}. It has features such as:\n" +"@itemize\n" +"@item atomic snapshots\n" +"@item incremental backups\n" +"@item flexible retention policy\n" +"@item backups to multiple destinations\n" +"@item transfer via SSH\n" +"@item resume backups (for removable and mobile devices)\n" +"@item archive to offline storage\n" +"@item encrypted backups to non-btrfs storage\n" +"@item wildcard subvolumes (useful for Docker and LXC containers)\n" +"@item transaction log\n" +"@item comprehensive list and statistics output\n" +"@item resolve and trace Btrfs parent-child and received-from relationships\n" +"@item list file changes between backups\n" +"@item calculate accurate disk space usage based on block regions.\n" +"@end itemize\n" +"Btrbk is designed to run as a cron job for triggering periodic snapshots and\n" +"backups, as well as from the command line (e.g. for instantly creating\n" +"additional snapshots)." +msgstr "" + +#: gnu/packages/backup.scm:1194 msgid "" "Burp is a network backup and restore program. It attempts\n" "to reduce network traffic and the amount of space that is used by each\n" "backup." msgstr "" -#: gnu/packages/backup.scm:1136 +#: gnu/packages/backup.scm:1225 msgid "" "Disarchive can disassemble software archives into data\n" "and metadata. The goal is to create a small amount of metadata that\n" @@ -1642,7 +1672,7 @@ msgid "" "compression parameters used by Gzip." msgstr "" -#: gnu/packages/backup.scm:1181 +#: gnu/packages/backup.scm:1270 msgid "" "borgmatic is simple, configuration-driven backup software for servers\n" "and workstations. Protect your files with client-side encryption. Backup\n" @@ -1650,6 +1680,14 @@ msgid "" "borgmatic is powered by borg." msgstr "" +#: gnu/packages/backup.scm:1330 +msgid "" +"Vorta is a graphical backup client based on the Borg backup\n" +"tool. It supports the use of remote backup repositories. It can perform\n" +"scheduled backups, and has a graphical tool for browsing and extracting the Borg\n" +"archives." +msgstr "" + #: gnu/packages/base.scm:98 msgid "" "GNU Hello prints the message \"Hello, world!\" and then exits. It\n" @@ -1750,7 +1788,7 @@ msgid "" "change. GNU make offers many powerful extensions over the standard utility." msgstr "" -#: gnu/packages/base.scm:550 +#: gnu/packages/base.scm:558 msgid "" "GNU Binutils is a collection of tools for working with binary files.\n" "Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler.\n" @@ -1760,14 +1798,14 @@ msgid "" "included." msgstr "" -#: gnu/packages/base.scm:694 +#: gnu/packages/base.scm:685 msgid "" "The linker wrapper (or @code{ld-wrapper}) wraps the linker to add any\n" "missing @code{-rpath} flags, and to detect any misuse of libraries outside of\n" "the store." msgstr "" -#: gnu/packages/base.scm:930 +#: gnu/packages/base.scm:921 msgid "" "Any Unix-like operating system needs a C library: the library which\n" "defines the \"system calls\" and other basic facilities such as open, malloc,\n" @@ -1777,21 +1815,21 @@ msgid "" "with the Linux kernel." msgstr "" -#: gnu/packages/base.scm:1057 +#: gnu/packages/base.scm:1048 msgid "" "This package provides all the locales supported by the GNU C Library,\n" "more than 400 in total. To use them set the @code{LOCPATH} environment variable\n" "to the @code{share/locale} sub-directory of this package." msgstr "" -#: gnu/packages/base.scm:1206 +#: gnu/packages/base.scm:1198 msgid "" "The which program finds the location of executables in PATH, with a\n" "variety of options. It is an alternative to the shell \"type\" built-in\n" "command." msgstr "" -#: gnu/packages/base.scm:1329 +#: gnu/packages/base.scm:1321 msgid "" "The Time Zone Database (often called tz or zoneinfo)\n" "contains code and data that represent the history of local time for many\n" @@ -1800,14 +1838,14 @@ msgid "" "and daylight-saving rules." msgstr "" -#: gnu/packages/base.scm:1367 +#: gnu/packages/base.scm:1359 msgid "" "libiconv provides an implementation of the iconv function for systems\n" "that lack it. iconv is used to convert between character encodings in a\n" "program. It supports a wide variety of different encodings." msgstr "" -#: gnu/packages/bittorrent.scm:131 +#: gnu/packages/bittorrent.scm:135 msgid "" "Transmission is a BitTorrent client that comes with graphical,\n" "textual, and Web user interfaces. Transmission also has a daemon for\n" @@ -1815,54 +1853,54 @@ msgid "" "DHT, µTP, PEX and Magnet Links." msgstr "" -#: gnu/packages/bittorrent.scm:165 +#: gnu/packages/bittorrent.scm:169 msgid "" "transmission-remote-gtk is a GTK client for remote management\n" "of the Transmission BitTorrent client, using its HTTP RPC protocol." msgstr "" -#: gnu/packages/bittorrent.scm:187 +#: gnu/packages/bittorrent.scm:191 msgid "" "LibTorrent is a BitTorrent library used by and developed in parallel\n" "with the BitTorrent client rtorrent. It is written in C++ with emphasis on\n" "speed and efficiency." msgstr "" -#: gnu/packages/bittorrent.scm:215 +#: gnu/packages/bittorrent.scm:219 msgid "" "rTorrent is a BitTorrent client with an ncurses interface. It supports\n" "full encryption, DHT, PEX, and Magnet Links. It can also be controlled via\n" "XML-RPC over SCGI." msgstr "" -#: gnu/packages/bittorrent.scm:249 +#: gnu/packages/bittorrent.scm:253 msgid "" "Tremc is a console client, with a curses interface, for the\n" "Transmission BitTorrent daemon." msgstr "" -#: gnu/packages/bittorrent.scm:290 +#: gnu/packages/bittorrent.scm:294 msgid "" "Transmission-remote-cli is a console client, with a curses\n" "interface, for the Transmission BitTorrent daemon. This package is no longer\n" "maintained upstream." msgstr "" -#: gnu/packages/bittorrent.scm:340 +#: gnu/packages/bittorrent.scm:345 msgid "" "Aria2 is a lightweight, multi-protocol & multi-source command-line\n" "download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and Metalink.\n" "Aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces." msgstr "" -#: gnu/packages/bittorrent.scm:374 +#: gnu/packages/bittorrent.scm:381 msgid "" "uGet is portable download manager with GTK+ interface supporting\n" "HTTP, HTTPS, BitTorrent and Metalink, supporting multi-connection\n" "downloads, download scheduling, download rate limiting." msgstr "" -#: gnu/packages/bittorrent.scm:406 +#: gnu/packages/bittorrent.scm:413 msgid "" "mktorrent is a simple command-line utility to create BitTorrent\n" "@dfn{metainfo} files, often known simply as @dfn{torrents}, from both single\n" @@ -1872,14 +1910,14 @@ msgid "" "and will take advantage of multiple processor cores where possible." msgstr "" -#: gnu/packages/bittorrent.scm:457 +#: gnu/packages/bittorrent.scm:472 msgid "" "libtorrent-rasterbar is a feature-complete C++ BitTorrent implementation\n" "focusing on efficiency and scalability. It runs on embedded devices as well as\n" "desktops." msgstr "" -#: gnu/packages/bittorrent.scm:508 +#: gnu/packages/bittorrent.scm:523 msgid "" "qBittorrent is a BitTorrent client programmed in C++/Qt that uses\n" "libtorrent (sometimes called libtorrent-rasterbar) by Arvid Norberg.\n" @@ -1889,7 +1927,7 @@ msgid "" "features." msgstr "" -#: gnu/packages/bittorrent.scm:580 +#: gnu/packages/bittorrent.scm:604 msgid "" "Deluge contains the common features to BitTorrent clients such as\n" "Protocol Encryption, DHT, Local Peer Discovery (LSD), Peer Exchange\n" @@ -2201,7 +2239,16 @@ msgid "" "functionality in a C++ iostream." msgstr "" -#: gnu/packages/compression.scm:1443 +#: gnu/packages/compression.scm:1416 +msgid "" +"Zopfli Compression Algorithm is a compression library\n" +"programmed in C to perform very good, but slow, deflate or zlib compression.\n" +"ZopfliCompress supports the deflate, gzip and zlib output formats. This\n" +"library can only compress, not decompress; existing zlib or deflate libraries\n" +"can decompress the data." +msgstr "" + +#: gnu/packages/compression.scm:1469 msgid "" "ZPAQ is a command-line archiver for realistic situations with\n" "many duplicate and already compressed files. It backs up only those files\n" @@ -2215,13 +2262,13 @@ msgid "" "or junctions, and always follows hard links." msgstr "" -#: gnu/packages/compression.scm:1545 +#: gnu/packages/compression.scm:1571 msgid "" "@command{unshield} is a tool and library for extracting @file{.cab}\n" " archives from InstallShield installers." msgstr "" -#: gnu/packages/compression.scm:1624 +#: gnu/packages/compression.scm:1650 msgid "" "Zstandard (@command{zstd}) is a lossless compression algorithm\n" "that combines very fast operation with a compression ratio comparable to that of\n" @@ -2231,7 +2278,7 @@ msgid "" "speed." msgstr "" -#: gnu/packages/compression.scm:1672 +#: gnu/packages/compression.scm:1698 msgid "" "Parallel Zstandard (PZstandard or @command{pzstd}) is a\n" "multi-threaded implementation of the @uref{http://zstd.net/, Zstandard\n" @@ -2244,7 +2291,7 @@ msgid "" "the actual decompression, the other input and output." msgstr "" -#: gnu/packages/compression.scm:1712 +#: gnu/packages/compression.scm:1738 msgid "" "Zip is a compression and file packaging/archive utility. Zip is useful\n" "for packaging a set of files for distribution, for archiving files, and for\n" @@ -2259,7 +2306,7 @@ msgid "" "Compression ratios of 2:1 to 3:1 are common for text files." msgstr "" -#: gnu/packages/compression.scm:1801 +#: gnu/packages/compression.scm:1827 msgid "" "UnZip is an extraction utility for archives compressed in .zip format,\n" "also called \"zipfiles\".\n" @@ -2270,7 +2317,7 @@ msgid "" "recreates the stored directory structure by default." msgstr "" -#: gnu/packages/compression.scm:1853 +#: gnu/packages/compression.scm:1879 msgid "" "Ziptime helps make @file{.zip} archives reproducible by replacing\n" "timestamps in the file header with a fixed time (1 January 2008).\n" @@ -2279,11 +2326,11 @@ msgid "" "@command{zip} to prevent it from storing the ``universal time'' field." msgstr "" -#: gnu/packages/compression.scm:1880 +#: gnu/packages/compression.scm:1906 msgid "ZZipLib is a library based on zlib for accessing zip files." msgstr "" -#: gnu/packages/compression.scm:1904 +#: gnu/packages/compression.scm:1930 msgid "" "Libzip is a C library for reading, creating, and modifying\n" "zip archives. Files can be added from data buffers, files, or compressed data\n" @@ -2291,7 +2338,7 @@ msgid "" "archive can be reverted." msgstr "" -#: gnu/packages/compression.scm:1937 +#: gnu/packages/compression.scm:1963 msgid "" "The main command is @command{aunpack} which extracts files\n" "from an archive. The other commands provided are @command{apack} (to create\n" @@ -2301,7 +2348,7 @@ msgid "" "of archives." msgstr "" -#: gnu/packages/compression.scm:1963 +#: gnu/packages/compression.scm:1989 msgid "" "Lunzip is a decompressor for files in the lzip compression format (.lz),\n" "written as a single small C tool with no dependencies. This makes it\n" @@ -2311,7 +2358,7 @@ msgid "" "Lunzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:1990 +#: gnu/packages/compression.scm:2016 msgid "" "Clzip is a compressor and decompressor for files in the lzip compression\n" "format (.lz), written as a single small C tool with no dependencies. This makes\n" @@ -2320,7 +2367,7 @@ msgid "" "Clzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:2018 +#: gnu/packages/compression.scm:2044 msgid "" "Lzlib is a C library for in-memory LZMA compression and decompression in\n" "the lzip format. It supports integrity checking of the decompressed data, and\n" @@ -2328,7 +2375,7 @@ msgid "" "corrupted input." msgstr "" -#: gnu/packages/compression.scm:2042 +#: gnu/packages/compression.scm:2068 msgid "" "Plzip is a massively parallel (multi-threaded) lossless data compressor\n" "and decompressor that uses the lzip file format (.lz). Files produced by plzip\n" @@ -2342,13 +2389,13 @@ msgid "" "single-member files which can't be decompressed in parallel." msgstr "" -#: gnu/packages/compression.scm:2074 +#: gnu/packages/compression.scm:2100 msgid "" "innoextract allows extracting Inno Setup installers under\n" "non-Windows systems without running the actual installer using wine." msgstr "" -#: gnu/packages/compression.scm:2096 +#: gnu/packages/compression.scm:2122 msgid "" "ISA-L is a collection of optimized low-level functions\n" "targeting storage applications. ISA-L includes:\n" @@ -2366,7 +2413,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/compression.scm:2156 +#: gnu/packages/compression.scm:2182 msgid "" "This package provides the reference implementation of Brotli,\n" "a generic-purpose lossless compression algorithm that compresses data using a\n" @@ -2378,13 +2425,13 @@ msgid "" "The specification of the Brotli Compressed Data Format is defined in RFC 7932." msgstr "" -#: gnu/packages/compression.scm:2176 +#: gnu/packages/compression.scm:2202 msgid "" "This package provides a Python interface to the @code{brotli}\n" "package, an implementation of the Brotli lossless compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2200 +#: gnu/packages/compression.scm:2226 msgid "" "UCL implements a number of compression algorithms that\n" "achieve an excellent compression ratio while allowing fast decompression.\n" @@ -2394,7 +2441,7 @@ msgid "" "decompression is a little bit slower." msgstr "" -#: gnu/packages/compression.scm:2248 +#: gnu/packages/compression.scm:2274 msgid "" "The Ultimate Packer for eXecutables (UPX) is an executable file\n" "compressor. UPX typically reduces the file size of programs and shared\n" @@ -2402,7 +2449,7 @@ msgid "" "download times, and other distribution and storage costs." msgstr "" -#: gnu/packages/compression.scm:2276 +#: gnu/packages/compression.scm:2302 msgid "" "QuaZIP is a simple C++ wrapper over Gilles Vollant's\n" "ZIP/UNZIP package that can be used to access ZIP archives. It uses\n" @@ -2416,7 +2463,7 @@ msgid "" "reading from and writing to ZIP archives." msgstr "" -#: gnu/packages/compression.scm:2335 +#: gnu/packages/compression.scm:2361 msgid "" "The zchunk compressed file format allows splitting a file\n" "into independent chunks. This makes it possible to retrieve only changed\n" @@ -2439,7 +2486,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/compression.scm:2391 +#: gnu/packages/compression.scm:2417 msgid "" "Zutils is a collection of utilities able to process any combination of\n" "compressed and uncompressed files transparently. If any given file, including\n" @@ -2456,14 +2503,14 @@ msgid "" "at run time, and must be installed separately." msgstr "" -#: gnu/packages/compression.scm:2449 +#: gnu/packages/compression.scm:2475 msgid "" "This package provides a script to unpack self-extracting\n" "archives generated by @command{makeself} or @command{mojo} without running the\n" "possibly untrusted extraction shell script." msgstr "" -#: gnu/packages/compression.scm:2477 +#: gnu/packages/compression.scm:2503 msgid "" "(N)compress provides the original compress and uncompress\n" "programs that used to be the de facto UNIX standard for compressing and\n" @@ -2471,7 +2518,7 @@ msgid "" "file compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2504 +#: gnu/packages/compression.scm:2530 msgid "" "Xarchiver is a front-end to various command line archiving\n" "tools. It uses GTK+ tool-kit and is designed to be desktop-environment\n" @@ -2480,13 +2527,13 @@ msgid "" "archiver is not installed." msgstr "" -#: gnu/packages/compression.scm:2541 +#: gnu/packages/compression.scm:2567 msgid "" "Archive huge numbers of files, or split massive tar archives into smaller\n" "chunks." msgstr "" -#: gnu/packages/compression.scm:2574 +#: gnu/packages/compression.scm:2600 msgid "" "Blosc is a high performance compressor optimized for binary data. It has\n" "been designed to transmit data to the processor cache faster than the\n" @@ -2496,14 +2543,14 @@ msgid "" "computations." msgstr "" -#: gnu/packages/compression.scm:2612 +#: gnu/packages/compression.scm:2638 msgid "" "ECM is a utility that converts ECM files, i.e., CD data files\n" "with their error correction data losslessly rearranged for better compression,\n" "to their original, binary CD format." msgstr "" -#: gnu/packages/compression.scm:2642 +#: gnu/packages/compression.scm:2668 msgid "" "Libdeflate is a library for fast, whole-buffer DEFLATE-based\n" "compression and decompression. The supported formats are:\n" @@ -2515,7 +2562,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/compression.scm:2672 +#: gnu/packages/compression.scm:2698 msgid "" "Tarlz is a massively parallel (multi-threaded) combined implementation of\n" "the tar archiver and the lzip compressor. Tarlz creates, lists, and extracts\n" @@ -2526,7 +2573,7 @@ msgid "" "can append files to the end of such compressed archives." msgstr "" -#: gnu/packages/compression.scm:2706 +#: gnu/packages/compression.scm:2732 msgid "" "The Concise Binary Object Representation (CBOR) is a data format whose\n" "design goals include the possibility of extremely small code size, fairly\n" @@ -2535,17 +2582,17 @@ msgid "" "serializations such as ASN.1 and MessagePack." msgstr "" -#: gnu/packages/compression.scm:2739 +#: gnu/packages/compression.scm:2765 msgid "Fcrackzip is a Zip file password cracker." msgstr "" -#: gnu/packages/databases.scm:211 +#: gnu/packages/databases.scm:216 msgid "" "4store is a RDF/SPARQL store written in C, supporting\n" "either single machines or networked clusters." msgstr "" -#: gnu/packages/databases.scm:255 +#: gnu/packages/databases.scm:260 msgid "" "@code{pg_tmp} creates temporary PostgreSQL databases, suitable for tasks\n" "like running software test suites. Temporary databases created with\n" @@ -2554,14 +2601,14 @@ msgid "" "60)." msgstr "" -#: gnu/packages/databases.scm:281 +#: gnu/packages/databases.scm:286 msgid "" "This package provides a utility for dumping the contents of an\n" "ElasticSearch index to a compressed file and restoring the dumpfile back to an\n" "ElasticSearch server" msgstr "" -#: gnu/packages/databases.scm:433 +#: gnu/packages/databases.scm:438 msgid "" "Firebird is an SQL @acronym{RDBMS, relational database management system}\n" "with rich support for ANSI SQL (e.g., @code{INSERT...RETURNING}) including\n" @@ -2581,20 +2628,20 @@ msgid "" "database later." msgstr "" -#: gnu/packages/databases.scm:506 +#: gnu/packages/databases.scm:511 msgid "" "LevelDB is a fast key-value storage library that provides an ordered\n" "mapping from string keys to string values." msgstr "" -#: gnu/packages/databases.scm:526 +#: gnu/packages/databases.scm:531 msgid "" "Memcached is an in-memory key-value store. It has a small\n" "and generic API, and was originally intended for use with dynamic web\n" "applications." msgstr "" -#: gnu/packages/databases.scm:588 +#: gnu/packages/databases.scm:593 msgid "" "libMemcached is a library to use memcached in C/C++\n" "applications. It comes with a complete reference guide and documentation of\n" @@ -2608,51 +2655,74 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:625 +#: gnu/packages/databases.scm:630 msgid "" "@code{pylibmc} is a client in Python for memcached. It is a wrapper\n" "around TangentOrg’s libmemcached library, and can be used as a drop-in\n" "replacement for the code@{python-memcached} library." msgstr "" -#: gnu/packages/databases.scm:653 +#: gnu/packages/databases.scm:662 +msgid "This is a memcache client library for the Go programming language." +msgstr "" + +#: gnu/packages/databases.scm:685 +#, fuzzy +msgid "This package provides memcache client and server functionality." +msgstr "" +"Ez a csomag egy szótárat biztosít a Hunspell helyesírás-ellenőrző\n" +"programkönyvtárhoz." + +#: gnu/packages/databases.scm:711 msgid "" "@code{litecli} is a command-line client for SQLite databases that has\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:685 +#: gnu/packages/databases.scm:732 +msgid "" +"This Python package provides an API to execute meta-commands (AKA\n" +"\"special\", or \"backslash commands\") on PostgreSQL." +msgstr "" + +#: gnu/packages/databases.scm:763 +msgid "" +"@code{pgcli} is a command line interface for PostgreSQL with\n" +"autocompletion and syntax highlighting." +msgstr "" + +#: gnu/packages/databases.scm:801 msgid "" "MyCLI is a command line interface for MySQL, MariaDB, and Percona with\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:782 +#: gnu/packages/databases.scm:898 msgid "" "MySQL is a fast, reliable, and easy to use relational database\n" "management system that supports the standardized Structured Query\n" "Language." msgstr "" -#: gnu/packages/databases.scm:1045 +#: gnu/packages/databases.scm:1161 msgid "" "MariaDB is a multi-user and multi-threaded SQL database server, designed\n" "as a drop-in replacement of MySQL." msgstr "" -#: gnu/packages/databases.scm:1070 +#: gnu/packages/databases.scm:1186 msgid "" "The MariaDB Connector/C is used to connect applications\n" "developed in C/C++ to MariaDB and MySQL databases." msgstr "" -#: gnu/packages/databases.scm:1093 +#: gnu/packages/databases.scm:1209 msgid "" "Galera is a wsrep-provider that is used with MariaDB for load-balancing\n" "and high-availability (HA)." msgstr "" -#: gnu/packages/databases.scm:1147 +#: gnu/packages/databases.scm:1263 msgid "" "PostgreSQL is a powerful object-relational database system. It is fully\n" "ACID compliant, has full support for foreign keys, joins, views, triggers, and\n" @@ -2662,19 +2732,27 @@ msgid "" "pictures, sounds, or video." msgstr "" -#: gnu/packages/databases.scm:1269 +#: gnu/packages/databases.scm:1395 +msgid "" +"TimescaleDB is an database designed to make SQL scalable for\n" +"time-series data. It is engineered up from PostgreSQL and packaged as a\n" +"PostgreSQL extension, providing automatic partitioning across time and space\n" +"(partitioning key), as well as full SQL support." +msgstr "" + +#: gnu/packages/databases.scm:1476 msgid "" "@code{pgloader} is a program that can load data or migrate databases from\n" "CSV, DB3, iXF, SQLite, MS-SQL or MySQL to PostgreSQL." msgstr "" -#: gnu/packages/databases.scm:1293 +#: gnu/packages/databases.scm:1500 msgid "" "PyMySQL is a pure-Python MySQL client library, based on PEP 249.\n" "Most public APIs are compatible with @command{mysqlclient} and MySQLdb." msgstr "" -#: gnu/packages/databases.scm:1320 +#: gnu/packages/databases.scm:1527 msgid "" "QDBM is a library of routines for managing a\n" "database. The database is a simple data file containing key-value\n" @@ -2684,7 +2762,7 @@ msgid "" "organized in a hash table or B+ tree." msgstr "" -#: gnu/packages/databases.scm:1357 +#: gnu/packages/databases.scm:1564 msgid "" "GNU Recutils is a set of tools and libraries for creating and\n" "manipulating text-based, human-editable databases. Despite being text-based,\n" @@ -2693,7 +2771,7 @@ msgid "" "types are supported, as is encryption." msgstr "" -#: gnu/packages/databases.scm:1389 +#: gnu/packages/databases.scm:1596 msgid "" "This package provides an Emacs major mode @code{rec-mode}\n" "for working with GNU Recutils text-based, human-editable databases. It\n" @@ -2701,7 +2779,7 @@ msgid "" "including field and record folding." msgstr "" -#: gnu/packages/databases.scm:1457 +#: gnu/packages/databases.scm:1664 msgid "" "RocksDB is a library that forms the core building block for a fast\n" "key-value server, especially suited for storing data on flash drives. It\n" @@ -2712,7 +2790,7 @@ msgid "" "data in a single database. RocksDB is partially based on @code{LevelDB}." msgstr "" -#: gnu/packages/databases.scm:1515 +#: gnu/packages/databases.scm:1722 msgid "" "Sparql-query is a command-line tool for accessing SPARQL\n" "endpoints over HTTP. It has been intentionally designed to @code{feel} similar to\n" @@ -2723,13 +2801,13 @@ msgid "" "for example from a shell script." msgstr "" -#: gnu/packages/databases.scm:1608 +#: gnu/packages/databases.scm:1815 msgid "" "Sqitch is a standalone change management system for database schemas,\n" "which uses SQL to describe changes." msgstr "" -#: gnu/packages/databases.scm:1635 +#: gnu/packages/databases.scm:1842 msgid "" "SQLcrush lets you view and edit a database directly from the text\n" "console through an ncurses interface. You can explore each table's structure,\n" @@ -2737,7 +2815,7 @@ msgid "" "changes." msgstr "" -#: gnu/packages/databases.scm:1673 +#: gnu/packages/databases.scm:1880 msgid "" "TDB is a Trivial Database. In concept, it is very much like GDBM,\n" "and BSD's DB except that it allows multiple simultaneous writers and uses\n" @@ -2745,11 +2823,11 @@ msgid "" "extremely small." msgstr "" -#: gnu/packages/databases.scm:1693 +#: gnu/packages/databases.scm:1900 msgid "This package provides an database interface for Perl." msgstr "" -#: gnu/packages/databases.scm:1741 +#: gnu/packages/databases.scm:1948 msgid "" "An SQL to OO mapper with an object API inspired by\n" "Class::DBI (with a compatibility layer as a springboard for porting) and a\n" @@ -2761,13 +2839,13 @@ msgid "" "\"ORDER BY\" and \"HAVING\" support." msgstr "" -#: gnu/packages/databases.scm:1770 +#: gnu/packages/databases.scm:1977 msgid "" "DBIx::Class::Cursor::Cached provides a cursor class with\n" "built-in caching support." msgstr "" -#: gnu/packages/databases.scm:1793 +#: gnu/packages/databases.scm:2000 msgid "" "Because the many-to-many relationships are not real\n" "relationships, they can not be introspected with DBIx::Class. Many-to-many\n" @@ -2777,20 +2855,20 @@ msgid "" "introspected and examined." msgstr "" -#: gnu/packages/databases.scm:1852 +#: gnu/packages/databases.scm:2059 msgid "" "DBIx::Class::Schema::Loader automates the definition of a\n" "DBIx::Class::Schema by scanning database table definitions and setting up the\n" "columns, primary keys, unique constraints and relationships." msgstr "" -#: gnu/packages/databases.scm:1876 +#: gnu/packages/databases.scm:2083 msgid "" "This package provides a PostgreSQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." msgstr "" -#: gnu/packages/databases.scm:1914 +#: gnu/packages/databases.scm:2121 msgid "" "This package provides a MySQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." @@ -2798,7 +2876,7 @@ msgstr "" "Ez a csomag egy MySQL meghajtóprogramot biztosít a Perl5\n" "@dfn{Database Interface} (DBI) csatolóhoz." -#: gnu/packages/databases.scm:1934 +#: gnu/packages/databases.scm:2141 msgid "" "DBD::SQLite is a Perl DBI driver for SQLite, that includes\n" "the entire thing in the distribution. So in order to get a fast transaction\n" @@ -2806,14 +2884,14 @@ msgid "" "module, and nothing else." msgstr "" -#: gnu/packages/databases.scm:1959 +#: gnu/packages/databases.scm:2166 msgid "" "@code{MySQL::Config} emulates the @code{load_defaults} function from\n" "libmysqlclient. It will fill an array with long options, ready to be parsed by\n" "@code{Getopt::Long}." msgstr "" -#: gnu/packages/databases.scm:1983 +#: gnu/packages/databases.scm:2190 msgid "" "This module was inspired by the excellent DBIx::Abstract.\n" "While based on the concepts used by DBIx::Abstract, the concepts used have\n" @@ -2823,7 +2901,7 @@ msgid "" "time your data changes." msgstr "" -#: gnu/packages/databases.scm:2010 +#: gnu/packages/databases.scm:2217 msgid "" "This module is nearly identical to @code{SQL::Abstract} 1.81, and exists\n" "to preserve the ability of users to opt into the new way of doing things in\n" @@ -2839,34 +2917,34 @@ msgid "" "your data changes, as this module figures it out." msgstr "" -#: gnu/packages/databases.scm:2043 +#: gnu/packages/databases.scm:2250 msgid "" "This module tries to split any SQL code, even including\n" "non-standard extensions, into the atomic statements it is composed of." msgstr "" -#: gnu/packages/databases.scm:2062 +#: gnu/packages/databases.scm:2269 msgid "" "SQL::Tokenizer is a tokenizer for SQL queries. It does not\n" "claim to be a parser or query verifier. It just creates sane tokens from a\n" "valid SQL query." msgstr "" -#: gnu/packages/databases.scm:2081 +#: gnu/packages/databases.scm:2288 msgid "" "Unixodbc is a library providing an API with which to access\n" "data sources. Data sources include SQL Servers and any software with an ODBC\n" "Driver." msgstr "" -#: gnu/packages/databases.scm:2113 +#: gnu/packages/databases.scm:2320 msgid "" "The goal for nanodbc is to make developers happy by providing\n" "a simpler and less verbose API for working with ODBC. Common tasks should be\n" "easy, requiring concise and simple code." msgstr "" -#: gnu/packages/databases.scm:2174 +#: gnu/packages/databases.scm:2381 msgid "" "UnQLite is an in-process software library which implements a\n" "self-contained, serverless, zero-configuration, transactional NoSQL\n" @@ -2875,27 +2953,35 @@ msgid "" "similar to BerkeleyDB, LevelDB, etc." msgstr "" -#: gnu/packages/databases.scm:2225 +#: gnu/packages/databases.scm:2432 msgid "" "Redis is an advanced key-value cache and store. Redis\n" "supports many data structures including strings, hashes, lists, sets, sorted\n" "sets, bitmaps and hyperloglogs." msgstr "" -#: gnu/packages/databases.scm:2247 +#: gnu/packages/databases.scm:2454 msgid "" "This package provides a Ruby client that tries to match Redis' API\n" "one-to-one, while still providing an idiomatic interface." msgstr "" -#: gnu/packages/databases.scm:2275 +#: gnu/packages/databases.scm:2479 +msgid "Package rdb implements parsing and encoding of the Redis RDB file format." +msgstr "" + +#: gnu/packages/databases.scm:2505 +msgid "Redigo is a Go client for the Redis database." +msgstr "" + +#: gnu/packages/databases.scm:2531 msgid "" "Kyoto Cabinet is a standalone file-based database that supports Hash\n" "and B+ Tree data storage models. It is a fast key-value lightweight\n" "database and supports many programming languages. It is a NoSQL database." msgstr "" -#: gnu/packages/databases.scm:2303 +#: gnu/packages/databases.scm:2559 msgid "" "Tokyo Cabinet is a library of routines for managing a database.\n" "The database is a simple data file containing records, each is a pair of a\n" @@ -2905,7 +2991,7 @@ msgid "" "organized in hash table, B+ tree, or fixed-length array." msgstr "" -#: gnu/packages/databases.scm:2339 +#: gnu/packages/databases.scm:2595 msgid "" "WiredTiger is an extensible platform for data management. It supports\n" "row-oriented storage (where all columns of a row are stored together),\n" @@ -2914,17 +3000,17 @@ msgid "" "trees (LSM), for sustained throughput under random insert workloads." msgstr "" -#: gnu/packages/databases.scm:2389 +#: gnu/packages/databases.scm:2645 msgid "" "This package provides Guile bindings to the WiredTiger ``NoSQL''\n" "database." msgstr "" -#: gnu/packages/databases.scm:2419 +#: gnu/packages/databases.scm:2675 msgid "The DB::File module provides Perl bindings to the Berkeley DB version 1.x." msgstr "" -#: gnu/packages/databases.scm:2467 +#: gnu/packages/databases.scm:2723 msgid "" "The @dfn{Lightning Memory-Mapped Database} (LMDB) is a high-performance\n" "transactional database. Unlike more complex relational databases, LMDB handles\n" @@ -2937,7 +3023,7 @@ msgid "" "virtual address space — not physical RAM." msgstr "" -#: gnu/packages/databases.scm:2501 +#: gnu/packages/databases.scm:2757 msgid "" "@code{lmdbxx} is a comprehensive @code{C++} wrapper for the\n" "@code{LMDB} embedded database library, offering both an error-checked\n" @@ -2945,14 +3031,22 @@ msgid "" "semantics." msgstr "" -#: gnu/packages/databases.scm:2535 +#: gnu/packages/databases.scm:2791 msgid "" "Libpqxx is a C++ library to enable user programs to communicate with the\n" "PostgreSQL database back-end. The database back-end can be local or it may be\n" "on another machine, accessed via TCP/IP." msgstr "" -#: gnu/packages/databases.scm:2561 +#: gnu/packages/databases.scm:2819 +msgid "" +"Bolt is a pure Go key/value store inspired by Howard Chu's\n" +"LMDB project. The goal of the project is to provide a simple, fast, and\n" +"reliable database for projects that don't require a full database server such as\n" +"Postgres or MySQL." +msgstr "" + +#: gnu/packages/databases.scm:2845 msgid "" "Peewee is a simple and small ORM (object-relation mapping) tool. Peewee\n" "handles converting between pythonic values and those used by databases, so you\n" @@ -2961,20 +3055,20 @@ msgid "" "can autogenerate peewee models using @code{pwiz}, a model generator." msgstr "" -#: gnu/packages/databases.scm:2584 +#: gnu/packages/databases.scm:2868 msgid "" "Pypika-tortoise is a fork of pypika which has been\n" "streamlined for its use in the context of tortoise-orm. It removes support\n" "for many database kinds that tortoise-orm doesn't need, for example." msgstr "" -#: gnu/packages/databases.scm:2604 +#: gnu/packages/databases.scm:2888 msgid "" "This package is a Sphinx extension providing additional\n" "coroutine-specific markup." msgstr "" -#: gnu/packages/databases.scm:2632 +#: gnu/packages/databases.scm:2916 msgid "" "@code{asyncpg} is a database interface library designed\n" "specifically for PostgreSQL and Python/asyncio. @code{asyncpg} is an\n" @@ -2982,14 +3076,14 @@ msgid "" "with Python's asyncio framework." msgstr "" -#: gnu/packages/databases.scm:2652 +#: gnu/packages/databases.scm:2936 msgid "" "@code{asyncmy} is a fast @code{asyncio} MySQL driver, which\n" "reuses most of @code{pymysql} and @code{aiomysql} but rewrites the core\n" "protocol with Cython for performance." msgstr "" -#: gnu/packages/databases.scm:2672 +#: gnu/packages/databases.scm:2956 msgid "" "@code{aiomysql} is a driver for accessing a MySQL database\n" "from the @code{asyncio} Python framework. It depends on and reuses most parts\n" @@ -2997,7 +3091,7 @@ msgid "" "@code{aiopg} library." msgstr "" -#: gnu/packages/databases.scm:2705 +#: gnu/packages/databases.scm:2989 msgid "" "Tortoise ORM is an easy-to-use asyncio ORM (Object\n" "Relational Mapper) inspired by Django. Tortoise ORM was built with relations\n" @@ -3006,7 +3100,7 @@ msgid "" "with relational data." msgstr "" -#: gnu/packages/databases.scm:2749 +#: gnu/packages/databases.scm:3033 msgid "" "SQLCipher is an implementation of SQLite, extended to\n" "provide transparent 256-bit AES encryption of database files. Pages are\n" @@ -3015,19 +3109,19 @@ msgid "" "development." msgstr "" -#: gnu/packages/databases.scm:2782 +#: gnu/packages/databases.scm:3066 msgid "" "@code{python-pyodbc-c} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2807 +#: gnu/packages/databases.scm:3091 msgid "" "@code{python-pyodbc} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2840 +#: gnu/packages/databases.scm:3124 msgid "" "MDB Tools is a set of tools and applications to read the\n" "proprietary MDB file format used in Microsoft's Access database package. This\n" @@ -3036,39 +3130,44 @@ msgid "" "etc., and an SQL engine for performing simple SQL queries." msgstr "" -#: gnu/packages/databases.scm:2886 +#: gnu/packages/databases.scm:3153 +#, fuzzy +msgid "This package provides a MongoDB driver for Go." +msgstr "Ez a csomag egy LADSPA bővítményt biztosít egy sztereó visszhang hatáshoz." + +#: gnu/packages/databases.scm:3194 msgid "" "python-lmdb or py-lmdb is a Python binding for the @dfn{Lightning\n" "Memory-Mapped Database} (LMDB), a high-performance key-value store." msgstr "" -#: gnu/packages/databases.scm:2925 +#: gnu/packages/databases.scm:3233 msgid "" "Orator provides a simple ActiveRecord-like Object Relational Mapping\n" "implementation for Python." msgstr "" -#: gnu/packages/databases.scm:2963 +#: gnu/packages/databases.scm:3271 msgid "" "Virtuoso is a scalable cross-platform server that combines\n" "relational, graph, and document data management with web application server\n" "and web services platform functionality." msgstr "" -#: gnu/packages/databases.scm:2990 +#: gnu/packages/databases.scm:3298 msgid "" "Cassandra Cluster Manager is a development tool for testing\n" "local Cassandra clusters. It creates, launches and removes Cassandra clusters\n" "on localhost." msgstr "" -#: gnu/packages/databases.scm:3018 +#: gnu/packages/databases.scm:3326 msgid "" "Pysqlite provides SQLite bindings for Python that comply to the\n" "Database API 2.0T." msgstr "" -#: gnu/packages/databases.scm:3048 +#: gnu/packages/databases.scm:3356 msgid "" "SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that\n" "gives application developers the full power and flexibility of SQL. It\n" @@ -3077,14 +3176,14 @@ msgid "" "simple and Pythonic domain language." msgstr "" -#: gnu/packages/databases.scm:3086 +#: gnu/packages/databases.scm:3382 msgid "" "This package contains type stubs and a mypy plugin to\n" "provide more precise static types and type inference for SQLAlchemy\n" "framework." msgstr "" -#: gnu/packages/databases.scm:3118 +#: gnu/packages/databases.scm:3414 msgid "" "SQLAlchemy-utils provides various utility functions and custom data types\n" "for SQLAlchemy. SQLAlchemy is an SQL database abstraction library for Python.\n" @@ -3101,7 +3200,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/databases.scm:3165 +#: gnu/packages/databases.scm:3461 msgid "" "This package provides mock helpers for SQLAlchemy that makes it easy\n" "to mock an SQLAlchemy session while preserving the ability to do asserts.\n" @@ -3111,13 +3210,13 @@ msgid "" "this library provides functions to facilitate such comparisons." msgstr "" -#: gnu/packages/databases.scm:3196 +#: gnu/packages/databases.scm:3492 msgid "" "Alembic is a lightweight database migration tool for usage with the\n" "SQLAlchemy Database Toolkit for Python." msgstr "" -#: gnu/packages/databases.scm:3221 +#: gnu/packages/databases.scm:3517 msgid "" "PickleShare is a small ‘shelve’-like datastore with concurrency support.\n" "Like shelve, a PickleShareDB object acts like a normal dictionary. Unlike\n" @@ -3128,7 +3227,7 @@ msgid "" "PickleShare." msgstr "" -#: gnu/packages/databases.scm:3275 +#: gnu/packages/databases.scm:3571 msgid "" "APSW is a Python wrapper for the SQLite\n" "embedded relational database engine. In contrast to other wrappers such as\n" @@ -3136,21 +3235,21 @@ msgid "" "translate the complete SQLite API into Python." msgstr "" -#: gnu/packages/databases.scm:3312 +#: gnu/packages/databases.scm:3608 msgid "" "The package aiosqlite replicates the standard sqlite3 module, but with\n" "async versions of all the standard connection and cursor methods, and context\n" "managers for automatically closing connections." msgstr "" -#: gnu/packages/databases.scm:3333 +#: gnu/packages/databases.scm:3629 msgid "" "This package provides the Neo4j Python driver that connects\n" "to the database using Neo4j's binary protocol. It aims to be minimal, while\n" "being idiomatic to Python." msgstr "" -#: gnu/packages/databases.scm:3353 +#: gnu/packages/databases.scm:3649 msgid "" "This package provides a client library and toolkit for\n" "working with Neo4j from within Python applications and from the command\n" @@ -3158,26 +3257,38 @@ msgid "" "designed to be easy and intuitive to use." msgstr "" -#: gnu/packages/databases.scm:3379 +#: gnu/packages/databases.scm:3675 msgid "" "psycopg2 is a thread-safe PostgreSQL adapter that implements DB-API\n" "2.0." msgstr "" -#: gnu/packages/databases.scm:3413 +#: gnu/packages/databases.scm:3702 +msgid "" +"This module provides connection pool implementations that can be used\n" +"with the @code{psycopg} PostgreSQL driver." +msgstr "" + +#: gnu/packages/databases.scm:3776 +msgid "" +"Psycopg 3 is a new implementation of the popular @code{psycopg2}\n" +"database adapter for Python." +msgstr "" + +#: gnu/packages/databases.scm:3810 msgid "" "This package provides a program to build Entity\n" "Relationship diagrams from a SQLAlchemy model (or directly from the\n" "database)." msgstr "" -#: gnu/packages/databases.scm:3443 +#: gnu/packages/databases.scm:3840 msgid "" "Yoyo is a database schema migration tool. Migrations are written as SQL\n" "files or Python scripts that define a list of migration steps." msgstr "" -#: gnu/packages/databases.scm:3464 +#: gnu/packages/databases.scm:3861 msgid "" "MySQLdb is an interface to the popular MySQL database server\n" "for Python. The design goals are:\n" @@ -3188,13 +3299,13 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/databases.scm:3490 +#: gnu/packages/databases.scm:3887 msgid "" "Python-hiredis is a python extension that wraps protocol\n" "parsing code in hiredis. It primarily speeds up parsing of multi bulk replies." msgstr "" -#: gnu/packages/databases.scm:3517 +#: gnu/packages/databases.scm:3914 msgid "" "Fakeredis is a pure-Python implementation of the redis-py Python client\n" "that simulates talking to a redis server. It was created for a single purpose:\n" @@ -3205,49 +3316,49 @@ msgid "" "reasonable substitute." msgstr "" -#: gnu/packages/databases.scm:3545 +#: gnu/packages/databases.scm:3942 msgid "This package provides a Python interface to the Redis key-value store." msgstr "Ez a csomag egy Python felületet biztosít a Redis kulcs-érték tároláshoz." -#: gnu/packages/databases.scm:3586 +#: gnu/packages/databases.scm:3983 msgid "" "RQ (Redis Queue) is a simple Python library for queueing jobs and\n" "processing them in the background with workers. It is backed by Redis and it\n" "is designed to have a low barrier to entry." msgstr "" -#: gnu/packages/databases.scm:3623 +#: gnu/packages/databases.scm:4020 msgid "" "This package provides job scheduling capabilities to @code{python-rq}\n" "(Redis Queue)." msgstr "" -#: gnu/packages/databases.scm:3643 +#: gnu/packages/databases.scm:4040 msgid "" "@code{trollius-redis} is a Redis client for Python\n" " trollius. It is an asynchronous IO (PEP 3156) implementation of the\n" " Redis protocol." msgstr "" -#: gnu/packages/databases.scm:3686 +#: gnu/packages/databases.scm:4083 msgid "" "Sqlparse is a non-validating SQL parser for Python. It\n" "provides support for parsing, splitting and formatting SQL statements." msgstr "" -#: gnu/packages/databases.scm:3703 +#: gnu/packages/databases.scm:4101 msgid "" "@code{python-sql} is a library to write SQL queries, that\n" "transforms idiomatic python function calls to well-formed SQL queries." msgstr "" -#: gnu/packages/databases.scm:3726 +#: gnu/packages/databases.scm:4124 msgid "" "PyPika is a python SQL query builder that exposes the full richness of\n" "the SQL language using a syntax that reflects the resulting query." msgstr "" -#: gnu/packages/databases.scm:3852 +#: gnu/packages/databases.scm:4250 msgid "" "Apache Arrow is a columnar in-memory analytics layer\n" "designed to accelerate big data. It houses a set of canonical in-memory\n" @@ -3256,21 +3367,21 @@ msgid "" "algorithm implementations." msgstr "" -#: gnu/packages/databases.scm:3912 +#: gnu/packages/databases.scm:4310 msgid "" "This library provides a Pythonic API wrapper for the reference Arrow C++\n" "implementation, along with tools for interoperability with pandas, NumPy, and\n" "other traditional Python scientific computing packages." msgstr "" -#: gnu/packages/databases.scm:3933 +#: gnu/packages/databases.scm:4331 msgid "" "This package provides a Python client library for CrateDB.\n" "It implements the Python DB API 2.0 specification and includes support for\n" "SQLAlchemy." msgstr "" -#: gnu/packages/databases.scm:3952 +#: gnu/packages/databases.scm:4350 msgid "" "This library implements a database independent abstraction layer in C,\n" "similar to the DBI/DBD layer in Perl. Writing one generic set of code,\n" @@ -3278,7 +3389,7 @@ msgid "" "simultaneous database connections by using this framework." msgstr "" -#: gnu/packages/databases.scm:4018 +#: gnu/packages/databases.scm:4416 msgid "" "The @code{libdbi-drivers} library provides the database specific drivers\n" "for the @code{libdbi} framework.\n" @@ -3291,26 +3402,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:4060 +#: gnu/packages/databases.scm:4458 msgid "" "SOCI is an abstraction layer for several database backends, including\n" "PostreSQL, SQLite, ODBC and MySQL." msgstr "" -#: gnu/packages/databases.scm:4084 +#: gnu/packages/databases.scm:4482 msgid "" "FreeTDS is an implementation of the Tabular DataStream protocol, used for\n" "connecting to MS SQL and Sybase servers over TCP/IP." msgstr "" -#: gnu/packages/databases.scm:4106 +#: gnu/packages/databases.scm:4504 msgid "" "TinyDB is a small document oriented database written in pure Python\n" "with no external dependencies. The targets are small apps that would\n" "be blown away by a SQL-DB or an external database server." msgstr "" -#: gnu/packages/databases.scm:4154 +#: gnu/packages/databases.scm:4552 msgid "" "Sequeler is a native Linux SQL client built in Vala and\n" "Gtk. It allows you to connect to your local and remote databases, write SQL in\n" @@ -3318,7 +3429,13 @@ msgid "" "a Gtk.Grid Widget." msgstr "" -#: gnu/packages/debug.scm:111 +#: gnu/packages/databases.scm:4594 +msgid "" +"Sqlitebrowser is a high quaility, visual, open source tool to\n" +"create design, and edit database file compatible with SQLite." +msgstr "" + +#: gnu/packages/debug.scm:112 msgid "" "Delta assists you in minimizing \"interesting\" files subject to a test\n" "of their interestingness. A common such situation is when attempting to\n" @@ -3326,7 +3443,7 @@ msgid "" "program to exhibit a bug." msgstr "" -#: gnu/packages/debug.scm:172 +#: gnu/packages/debug.scm:173 msgid "" "C-Reduce is a tool that takes a large C or C++ program that has a\n" "property of interest (such as triggering a compiler bug) and automatically\n" @@ -3335,14 +3452,14 @@ msgid "" "tools that process C/C++ code." msgstr "" -#: gnu/packages/debug.scm:219 +#: gnu/packages/debug.scm:220 msgid "" "C-Vise is a Python port of the C-Reduce tool that is fully compatible\n" "and uses the same efficient LLVM-based C/C++ @code{clang_delta} reduction\n" "tool." msgstr "" -#: gnu/packages/debug.scm:289 +#: gnu/packages/debug.scm:290 msgid "" "American fuzzy lop is a security-oriented fuzzer that employs a novel\n" "type of compile-time instrumentation and genetic algorithms to automatically\n" @@ -3353,7 +3470,7 @@ msgid "" "down the road." msgstr "" -#: gnu/packages/debug.scm:433 +#: gnu/packages/debug.scm:434 msgid "" "QEMU is a generic machine emulator and virtualizer. This package\n" "of QEMU is used only by the american fuzzy lop package.\n" @@ -3369,7 +3486,7 @@ msgid "" "server and embedded PowerPC, and S390 guests." msgstr "" -#: gnu/packages/debug.scm:501 +#: gnu/packages/debug.scm:502 msgid "" "Stress Make is a customized GNU Make that explicitly manages the order\n" "in which concurrent jobs are run to provoke erroneous behavior into becoming\n" @@ -3379,14 +3496,14 @@ msgid "" "conditions." msgstr "" -#: gnu/packages/debug.scm:529 +#: gnu/packages/debug.scm:530 msgid "" "Zzuf is a transparent application input fuzzer. It works by\n" "intercepting file operations and changing random bits in the program's\n" "input. Zzuf's behaviour is deterministic, making it easy to reproduce bugs." msgstr "" -#: gnu/packages/debug.scm:581 +#: gnu/packages/debug.scm:582 msgid "" "Scanmem is a debugging utility designed to isolate the\n" "address of an arbitrary variable in an executing process. Scanmem simply\n" @@ -3395,13 +3512,13 @@ msgid "" "the position of the variable and allows you to modify its value." msgstr "" -#: gnu/packages/debug.scm:611 +#: gnu/packages/debug.scm:612 msgid "" "Remake is an enhanced version of GNU Make that adds improved\n" "error reporting, better tracing, profiling, and a debugger." msgstr "" -#: gnu/packages/debug.scm:667 +#: gnu/packages/debug.scm:668 msgid "" "rr is a lightweight tool for recording, replaying and debugging\n" "execution of applications (trees of processes and threads). Debugging extends\n" @@ -3410,13 +3527,13 @@ msgid "" "fun." msgstr "" -#: gnu/packages/debug.scm:695 +#: gnu/packages/debug.scm:696 msgid "" "The @code{libbacktrace} library can be linked into a C/C++\n" "program to produce symbolic backtraces." msgstr "" -#: gnu/packages/debug.scm:735 +#: gnu/packages/debug.scm:736 msgid "" "The libleak tool detects memory leaks by hooking memory\n" "functions such as @code{malloc}. It comes as a shared object to be pre-loaded\n" @@ -3428,7 +3545,7 @@ msgid "" "use than similar tools like @command{mtrace}." msgstr "" -#: gnu/packages/debug.scm:763 +#: gnu/packages/debug.scm:764 msgid "" "@code{cgdb} is a lightweight curses (terminal-based) interface to the\n" "GNU Debugger (GDB). In addition to the standard gdb console, cgdb provides\n" @@ -3437,7 +3554,7 @@ msgid "" "using cgdb." msgstr "" -#: gnu/packages/debug.scm:798 +#: gnu/packages/debug.scm:799 msgid "" "MspDebug supports FET430UIF, eZ430, RF2500 and Olimex\n" "MSP430-JTAG-TINY programmers, as well as many other compatible\n" @@ -3453,14 +3570,14 @@ msgid "" "multiple test suites, which are then all managed by a single harness." msgstr "" -#: gnu/packages/games.scm:287 +#: gnu/packages/games.scm:288 msgid "" "Abe's Amazing Adventure is a scrolling,\n" "platform-jumping, key-collecting, ancient pyramid exploring game, vaguely in\n" "the style of similar games for the Commodore+4." msgstr "" -#: gnu/packages/games.scm:357 +#: gnu/packages/games.scm:358 msgid "" "Adanaxis is a fast-moving first person shooter set in deep space, where\n" "the fundamentals of space itself are changed. By adding another dimension to\n" @@ -3471,7 +3588,7 @@ msgid "" "mouse and joystick control, and original music." msgstr "" -#: gnu/packages/games.scm:401 +#: gnu/packages/games.scm:402 msgid "" "Guide Alex the Allegator through the jungle in order to save his\n" "girlfriend Lola from evil humans who want to make a pair of shoes out of her.\n" @@ -3480,7 +3597,7 @@ msgid "" "The game includes a built-in editor so you can design and share your own maps." msgstr "" -#: gnu/packages/games.scm:431 +#: gnu/packages/games.scm:432 msgid "" "Armagetron Advanced is a multiplayer game in 3d that\n" "attempts to emulate and expand on the lightcycle sequence from the movie Tron.\n" @@ -3490,7 +3607,7 @@ msgid "" "physics settings to tweak as well." msgstr "" -#: gnu/packages/games.scm:489 +#: gnu/packages/games.scm:490 msgid "" "Space is a vast area, an unbounded territory where it seems there is\n" "a room for everybody, but reversal of fortune put things differently. The\n" @@ -3502,7 +3619,7 @@ msgid "" "regret their insolence." msgstr "" -#: gnu/packages/games.scm:556 +#: gnu/packages/games.scm:557 msgid "" "Bastet (short for Bastard Tetris) is a simple ncurses-based falling brick\n" "game. Unlike normal Tetris, Bastet does not choose the next brick at random.\n" @@ -3512,19 +3629,19 @@ msgid "" "canyons and wait for the long I-shaped block to clear four rows at a time." msgstr "" -#: gnu/packages/games.scm:601 +#: gnu/packages/games.scm:602 msgid "" "Tetrinet is a multiplayer Tetris-like game with powerups and\n" "attacks you can use on opponents." msgstr "" -#: gnu/packages/games.scm:635 +#: gnu/packages/games.scm:636 msgid "" "Vitetris is a classic multiplayer Tetris clone for the\n" "terminal." msgstr "" -#: gnu/packages/games.scm:678 +#: gnu/packages/games.scm:679 msgid "" "Blobwars: Metal Blob Solid is a 2D platform game, the first\n" "in the Blobwars series. You take on the role of a fearless Blob agent. Your\n" @@ -3532,7 +3649,7 @@ msgid "" "possible, while battling many vicious aliens." msgstr "" -#: gnu/packages/games.scm:771 +#: gnu/packages/games.scm:772 msgid "" "These are the BSD games. See the fortune-mod package for fortunes.\n" "\n" @@ -3565,7 +3682,7 @@ msgid "" "Quizzes: arithmetic and quiz." msgstr "" -#: gnu/packages/games.scm:866 +#: gnu/packages/games.scm:867 msgid "" "BZFlag is a 3D multi-player multiplatform tank battle game that\n" "allows users to play against each other in a network environment.\n" @@ -3585,7 +3702,7 @@ msgid "" "high a score as possible." msgstr "" -#: gnu/packages/games.scm:949 +#: gnu/packages/games.scm:950 msgid "" "Cataclysm: Dark Days Ahead (or \"DDA\" for short) is a roguelike set\n" "in a post-apocalyptic world. Struggle to survive in a harsh, persistent,\n" @@ -3597,7 +3714,7 @@ msgid "" "want what you have." msgstr "" -#: gnu/packages/games.scm:998 +#: gnu/packages/games.scm:999 msgid "" "Cockatrice is a program for playing tabletop card games\n" "over a network. Its server design prevents users from manipulating the game\n" @@ -3605,7 +3722,7 @@ msgid "" "allows users to brew while offline." msgstr "" -#: gnu/packages/games.scm:1052 +#: gnu/packages/games.scm:1053 msgid "" "This package provides a reimplementation of the 1997 Bullfrog business\n" "simulation game @i{Theme Hospital}. As well as faithfully recreating the\n" @@ -3613,7 +3730,7 @@ msgid "" "more. This package does @emph{not} provide the game assets." msgstr "" -#: gnu/packages/games.scm:1094 +#: gnu/packages/games.scm:1095 msgid "" "Cowsay is basically a text filter. Send some text into it,\n" "and you get a cow saying your text. If you think a talking cow isn't enough,\n" @@ -3621,21 +3738,21 @@ msgid "" "tired of cows, a variety of other ASCII-art messengers are available." msgstr "" -#: gnu/packages/games.scm:1135 +#: gnu/packages/games.scm:1136 msgid "" "@command{lolcat} concatenates files and streams like\n" "regular @command{cat}, but it also adds terminal escape codes between\n" "characters and lines resulting in a rainbow effect." msgstr "" -#: gnu/packages/games.scm:1164 +#: gnu/packages/games.scm:1165 #, scheme-format msgid "" "This package provides the Fallout 2 game engine. Game data\n" "should be placed in @file{~/.local/share/falltergeist}." msgstr "" -#: gnu/packages/games.scm:1275 +#: gnu/packages/games.scm:1276 msgid "" "FooBillard++ is an advanced 3D OpenGL billiard game\n" "based on the original foobillard 3.0a sources from Florian Berger.\n" @@ -3657,7 +3774,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:1342 +#: gnu/packages/games.scm:1343 msgid "" "The Freedoom project aims to create a complete free content first person\n" "shooter game. Freedoom by itself is just the raw material for a game: it must\n" @@ -3666,7 +3783,7 @@ msgid "" "effects and music to make a completely free game." msgstr "" -#: gnu/packages/games.scm:1392 +#: gnu/packages/games.scm:1394 msgid "" "Freedroid RPG is an @dfn{RPG} (Role-Playing Game) with isometric graphics.\n" "The game tells the story of a world destroyed by a conflict between robots and\n" @@ -3676,7 +3793,7 @@ msgid "" "real-time combat." msgstr "" -#: gnu/packages/games.scm:1471 +#: gnu/packages/games.scm:1473 msgid "" "Golly simulates Conway's Game of Life and many other types of cellular\n" "automata. The following features are available:\n" @@ -3697,7 +3814,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:1527 +#: gnu/packages/games.scm:1529 #, fuzzy #| msgid "This package provides HTML documentation for the nginx web server." msgid "" @@ -3705,7 +3822,7 @@ msgid "" "Joy-Con controllers." msgstr "Ez a csomag egy HTML dokumentációt biztosít az nginx webkiszolgálóhoz." -#: gnu/packages/games.scm:1557 +#: gnu/packages/games.scm:1559 msgid "" "Engine for Caesar III, a city-building real-time strategy game.\n" "Julius includes some UI enhancements while preserving the logic (including\n" @@ -3713,7 +3830,7 @@ msgid "" "does not include game data." msgstr "" -#: gnu/packages/games.scm:1591 +#: gnu/packages/games.scm:1593 msgid "" "Fork of Julius, an engine for the a city-building real-time strategy\n" "game Caesar III. Gameplay enhancements include:\n" @@ -3728,7 +3845,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/games.scm:1630 +#: gnu/packages/games.scm:1632 msgid "" "Me and My Shadow is a puzzle/platform game in which you try\n" "to reach the exit by solving puzzles. Spikes, moving blocks, fragile blocks\n" @@ -3736,7 +3853,7 @@ msgid "" "shadow mimic them to reach blocks you couldn't reach alone." msgstr "" -#: gnu/packages/games.scm:1686 +#: gnu/packages/games.scm:1688 msgid "" "@code{Open Surge} is a 2D retro side-scrolling platformer\n" "inspired by the Sonic games. The player runs at high speeds through each\n" @@ -3744,7 +3861,7 @@ msgid "" "built-in level editor." msgstr "" -#: gnu/packages/games.scm:1732 +#: gnu/packages/games.scm:1734 msgid "" "Knights is a multiplayer game involving several knights who\n" "must run around a dungeon and complete various quests. Each game revolves\n" @@ -3756,7 +3873,7 @@ msgid "" "destroying an ancient book using a special wand." msgstr "" -#: gnu/packages/games.scm:1780 +#: gnu/packages/games.scm:1781 msgid "" "GNOME 2048 provides a 2D grid for playing 2048, a\n" "single-player sliding tile puzzle game. The objective of the game is to merge\n" @@ -3764,7 +3881,7 @@ msgid "" "in one tile." msgstr "" -#: gnu/packages/games.scm:1819 +#: gnu/packages/games.scm:1820 msgid "" "GNOME Chess provides a 2D board for playing chess games\n" "against human or computer players. It supports loading and saving games in\n" @@ -3772,7 +3889,7 @@ msgid "" "such as chess or stockfish." msgstr "" -#: gnu/packages/games.scm:1880 +#: gnu/packages/games.scm:1881 msgid "" "The GNU backgammon application (also known as \"gnubg\") can\n" "be used for playing, analyzing and teaching the game. It has an advanced\n" @@ -3781,7 +3898,7 @@ msgid "" "also features an attractive, 3D representation of the playing board." msgstr "" -#: gnu/packages/games.scm:1921 +#: gnu/packages/games.scm:1922 msgid "" "GNUbik is a puzzle game in which you must manipulate a cube to make\n" "each of its faces have a uniform color. The game is customizable, allowing\n" @@ -3790,13 +3907,13 @@ msgid "" "scriptable with Guile." msgstr "" -#: gnu/packages/games.scm:1944 +#: gnu/packages/games.scm:1945 msgid "" "GNU Shogi is a program that plays the game Shogi (Japanese\n" "Chess). It is similar to standard chess but this variant is far more complicated." msgstr "" -#: gnu/packages/games.scm:1974 +#: gnu/packages/games.scm:1975 msgid "" "LTris is a tetris clone: differently shaped blocks are falling down the\n" "rectangular playing field and can be moved sideways or rotated by 90 degree\n" @@ -3810,7 +3927,7 @@ msgid "" "watch your CPU playing while enjoying a cup of tea!" msgstr "" -#: gnu/packages/games.scm:2097 +#: gnu/packages/games.scm:2098 msgid "" "NetHack is a single player dungeon exploration game that runs\n" "on a wide variety of computer systems, with a variety of graphical and text\n" @@ -3824,7 +3941,7 @@ msgid "" "role, and your gender." msgstr "" -#: gnu/packages/games.scm:2141 +#: gnu/packages/games.scm:2142 msgid "" "PipeWalker is a simple puzzle game with many diffent themes: connect all\n" "computers to one network server, bring water from a source to the taps, etc.\n" @@ -3833,17 +3950,17 @@ msgid "" "Every puzzle has a complete solution, although there may be more than one." msgstr "" -#: gnu/packages/games.scm:2190 +#: gnu/packages/games.scm:2191 msgid "PrBoom+ is a Doom source port developed from the original PrBoom project." msgstr "" -#: gnu/packages/games.scm:2240 +#: gnu/packages/games.scm:2241 msgid "" "ReTux is an action platformer loosely inspired by the Mario games,\n" "utilizing the art assets from the @code{SuperTux} project." msgstr "" -#: gnu/packages/games.scm:2350 +#: gnu/packages/games.scm:2351 msgid "" "RogueBox Adventures is a graphical roguelike with strong influences\n" "from sandbox games like Minecraft or Terraria. The main idea of RogueBox\n" @@ -3851,7 +3968,7 @@ msgid "" "can be explored and changed freely." msgstr "" -#: gnu/packages/games.scm:2462 +#: gnu/packages/games.scm:2463 msgid "" "Barbie Seahorse Adventures is a retro style platform arcade game.\n" "You are Barbie the seahorse who travels through the jungle, up to the\n" @@ -3861,27 +3978,27 @@ msgid "" "and defeat them with your bubbles!" msgstr "" -#: gnu/packages/games.scm:2522 +#: gnu/packages/games.scm:2523 msgid "" "Solarus is a 2D game engine written in C++, that can run games\n" "scripted in Lua. It has been designed with 16-bit classic Action-RPGs\n" "in mind." msgstr "" -#: gnu/packages/games.scm:2551 +#: gnu/packages/games.scm:2552 msgid "" "Solarus Quest Editor is a graphical user interface to create and\n" "modify quests for the Solarus engine." msgstr "" -#: gnu/packages/games.scm:2627 +#: gnu/packages/games.scm:2628 msgid "" "In SuperStarfighter, up to four local players compete in a\n" "2D arena with fast-moving ships and missiles. Different game types are\n" "available, as well as a single-player mode with AI-controlled ships." msgstr "" -#: gnu/packages/games.scm:2760 +#: gnu/packages/games.scm:2761 msgid "" "Trigger-rally is a 3D rally simulation with great physics\n" "for drifting on over 200 maps. Different terrain materials like dirt,\n" @@ -3893,17 +4010,17 @@ msgid "" "equipped with spoken co-driver notes and co-driver icons." msgstr "" -#: gnu/packages/games.scm:2816 +#: gnu/packages/games.scm:2817 msgid "" "This package provides @command{ufo2map}, a program used to generate\n" "maps for the UFO: Alien Invasion strategy game." msgstr "" -#: gnu/packages/games.scm:2858 +#: gnu/packages/games.scm:2859 msgid "This package contains maps and other assets for UFO: Alien Invasion." msgstr "" -#: gnu/packages/games.scm:2945 +#: gnu/packages/games.scm:2946 msgid "" "UFO: Alien Invasion is a tactical strategy game set in the year 2084.\n" "You control a secret organisation charged with defending Earth from a brutal\n" @@ -3921,11 +4038,11 @@ msgid "" "properly." msgstr "" -#: gnu/packages/games.scm:2982 +#: gnu/packages/games.scm:2983 msgid "A graphical user interface for the package @code{gnushogi}." msgstr "" -#: gnu/packages/games.scm:3035 +#: gnu/packages/games.scm:3036 msgid "" "L'Abbaye des Morts is a 2D platform game set in 13th century\n" "France. The Cathars, who preach about good Christian beliefs, were being\n" @@ -3934,14 +4051,14 @@ msgid "" "that beneath its ruins lay buried an ancient evil." msgstr "" -#: gnu/packages/games.scm:3081 +#: gnu/packages/games.scm:3082 msgid "" "Angband is a Classic dungeon exploration roguelike. Explore\n" "the depths below Angband, seeking riches, fighting monsters, and preparing to\n" "fight Morgoth, the Lord of Darkness." msgstr "" -#: gnu/packages/games.scm:3129 +#: gnu/packages/games.scm:3130 msgid "" "Pingus is a free Lemmings-like puzzle game in which the player takes\n" "command of a bunch of small animals and has to guide them through levels.\n" @@ -3951,21 +4068,21 @@ msgid "" "level's exit. The game is presented in a 2D side view." msgstr "" -#: gnu/packages/games.scm:3152 +#: gnu/packages/games.scm:3153 msgid "" "The GNU Talk Filters are programs that convert English text\n" "into stereotyped or otherwise humorous dialects. The filters are provided as\n" "a C library, so they can easily be integrated into other programs." msgstr "" -#: gnu/packages/games.scm:3196 +#: gnu/packages/games.scm:3197 msgid "" "The player controls a character (one of three: Good, Bad, and Dead),\n" "dodges the missiles (lots of it cover the screen, but the character's hitbox\n" "is very small), and shoot at the adversaries that keep appear on the screen." msgstr "" -#: gnu/packages/games.scm:3239 +#: gnu/packages/games.scm:3240 msgid "" "CMatrix simulates the display from \"The Matrix\" and is\n" "based on the screensaver from the movie's website. It works with terminal\n" @@ -3973,14 +4090,14 @@ msgid "" "asynchronously and at a user-defined speed." msgstr "" -#: gnu/packages/games.scm:3270 +#: gnu/packages/games.scm:3271 msgid "" "GNU Chess is a chess engine. It allows you to compete\n" "against the computer in a game of chess, either through the default terminal\n" "interface or via an external visual interface such as GNU XBoard." msgstr "" -#: gnu/packages/games.scm:3332 +#: gnu/packages/games.scm:3333 msgid "" "GNU FreeDink is a free and portable re-implementation of the engine\n" "for the role-playing game Dink Smallwood. It supports not only the original\n" @@ -3988,17 +4105,17 @@ msgid "" "To that extent, it also includes a front-end for managing all of your D-Mods." msgstr "" -#: gnu/packages/games.scm:3360 +#: gnu/packages/games.scm:3361 msgid "This package contains the game data of GNU Freedink." msgstr "" -#: gnu/packages/games.scm:3383 +#: gnu/packages/games.scm:3384 msgid "" "DFArc makes it easy to play and manage the GNU FreeDink game\n" "and its numerous D-Mods." msgstr "" -#: gnu/packages/games.scm:3453 +#: gnu/packages/games.scm:3454 msgid "" "GNU XBoard is a graphical board for all varieties of chess,\n" "including international chess, xiangqi (Chinese chess), shogi (Japanese chess)\n" @@ -4007,7 +4124,7 @@ msgid "" "Portable Game Notation." msgstr "" -#: gnu/packages/games.scm:3488 +#: gnu/packages/games.scm:3489 msgid "" "GNU Typist is a universal typing tutor. It can be used to learn and\n" "practice touch-typing. Several tutorials are included; in addition to\n" @@ -4016,7 +4133,7 @@ msgid "" "are primarily in English, however some in other languages are provided." msgstr "" -#: gnu/packages/games.scm:3560 +#: gnu/packages/games.scm:3561 msgid "" "The Irrlicht Engine is a high performance realtime 3D engine written in\n" "C++. Features include an OpenGL renderer, extensible materials, scene graph\n" @@ -4024,7 +4141,7 @@ msgid "" "for common mesh file formats, and collision detection." msgstr "" -#: gnu/packages/games.scm:3611 +#: gnu/packages/games.scm:3612 msgid "" "M.A.R.S. is a 2D space shooter with pretty visual effects and\n" "attractive physics. Players can battle each other or computer controlled\n" @@ -4032,7 +4149,7 @@ msgid "" "match, cannon keep, and grave-itation pit." msgstr "" -#: gnu/packages/games.scm:3650 +#: gnu/packages/games.scm:3651 msgid "" "Glk defines a portable API for applications with text UIs. It was\n" "primarily designed for interactive fiction, but it should be suitable for many\n" @@ -4041,7 +4158,7 @@ msgid "" "using the @code{curses.h} library for screen control." msgstr "" -#: gnu/packages/games.scm:3690 +#: gnu/packages/games.scm:3691 msgid "" "Glulx is a 32-bit portable virtual machine intended for writing and\n" "playing interactive fiction. It was designed by Andrew Plotkin to relieve\n" @@ -4049,28 +4166,28 @@ msgid "" "reference interpreter, using the Glk API." msgstr "" -#: gnu/packages/games.scm:3716 +#: gnu/packages/games.scm:3717 msgid "" "Fifechan is a lightweight cross platform GUI library written in C++\n" "specifically designed for games. It has a built in set of extendable GUI\n" "Widgets, and allows users to create more." msgstr "" -#: gnu/packages/games.scm:3791 +#: gnu/packages/games.scm:3792 msgid "" "@acronym{FIFE, Flexible Isometric Free Engine} is a multi-platform\n" "isometric game engine. Python bindings are included allowing users to create\n" "games using Python as well as C++." msgstr "" -#: gnu/packages/games.scm:3826 +#: gnu/packages/games.scm:3827 msgid "" "Fizmo is a console-based Z-machine interpreter. It is used to play\n" "interactive fiction, also known as text adventures, which were implemented\n" "either by Infocom or created using the Inform compiler." msgstr "" -#: gnu/packages/games.scm:3849 +#: gnu/packages/games.scm:3850 msgid "" "GNU Go is a program that plays the game of Go, in which players\n" "place stones on a grid to form territory or capture other stones. While\n" @@ -4081,7 +4198,7 @@ msgid "" "Protocol)." msgstr "" -#: gnu/packages/games.scm:3878 +#: gnu/packages/games.scm:3879 msgid "" "Extreme Tux Racer, or etracer as it is called for short, is\n" "a simple OpenGL racing game featuring Tux, the Linux mascot. The goal of the\n" @@ -4094,7 +4211,7 @@ msgid "" "This game is based on the GPL version of the famous game TuxRacer." msgstr "" -#: gnu/packages/games.scm:3952 +#: gnu/packages/games.scm:3953 msgid "" "SuperTuxKart is a 3D kart racing game, with a focus on\n" "having fun over realism. You can play with up to 4 friends on one PC, racing\n" @@ -4102,7 +4219,7 @@ msgid "" "also available." msgstr "" -#: gnu/packages/games.scm:4028 +#: gnu/packages/games.scm:4029 msgid "" "Unknown Horizons is a 2D realtime strategy simulation with an emphasis\n" "on economy and city building. Expand your small settlement to a strong and\n" @@ -4111,7 +4228,7 @@ msgid "" "trade and diplomacy." msgstr "" -#: gnu/packages/games.scm:4081 +#: gnu/packages/games.scm:4082 msgid "" "GNUjump is a simple, yet addictive game in which you must jump from\n" "platform to platform to avoid falling, while the platforms drop at faster rates\n" @@ -4119,7 +4236,7 @@ msgid "" "falling, themeable graphics and sounds, and replays." msgstr "" -#: gnu/packages/games.scm:4117 +#: gnu/packages/games.scm:4118 msgid "" "The Battle for Wesnoth is a fantasy, turn based tactical strategy game,\n" "with several single player campaigns, and multiplayer games (both networked and\n" @@ -4131,20 +4248,20 @@ msgid "" "next campaign." msgstr "" -#: gnu/packages/games.scm:4137 +#: gnu/packages/games.scm:4138 msgid "" "This package contains a dedicated server for @emph{The\n" "Battle for Wesnoth}." msgstr "" -#: gnu/packages/games.scm:4179 +#: gnu/packages/games.scm:4180 msgid "" "Gamine is a game designed for young children who are learning to use the\n" "mouse and keyboard. The child uses the mouse to draw colored dots and lines\n" "on the screen and keyboard to display letters." msgstr "" -#: gnu/packages/games.scm:4211 +#: gnu/packages/games.scm:4212 msgid "" "ManaPlus is a 2D MMORPG client for game servers. It is the only\n" "fully supported client for @uref{http://www.themanaworld.org, The mana\n" @@ -4152,7 +4269,7 @@ msgid "" "@uref{http://landoffire.org, Land of fire}." msgstr "" -#: gnu/packages/games.scm:4243 +#: gnu/packages/games.scm:4244 msgid "" "OpenTTD is a game in which you transport goods and\n" "passengers by land, water and air. It is a re-implementation of Transport\n" @@ -4162,7 +4279,7 @@ msgid "" "engine. When you start it you will be prompted to download a graphics set." msgstr "" -#: gnu/packages/games.scm:4303 +#: gnu/packages/games.scm:4304 msgid "" "The OpenGFX project is an implementation of the OpenTTD base graphics\n" "set that aims to ensure the best possible out-of-the-box experience.\n" @@ -4177,29 +4294,29 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:4361 +#: gnu/packages/games.scm:4362 msgid "" "OpenSFX is a set of free base sounds for OpenTTD which make\n" "it possible to play OpenTTD without requiring the proprietary sound files from\n" "the original Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4404 +#: gnu/packages/games.scm:4405 msgid "" "OpenMSX is a music set for OpenTTD which makes it possible\n" "to play OpenTTD without requiring the proprietary music from the original\n" "Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4473 +#: gnu/packages/games.scm:4474 msgid "openrct2-title-sequences is a set of title sequences for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4513 +#: gnu/packages/games.scm:4514 msgid "openrct2-objects is a set of objects for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4576 +#: gnu/packages/games.scm:4577 msgid "" "OpenRCT2 is a free software re-implementation of\n" "RollerCoaster Tycoon 2 (RCT2). The gameplay revolves around building and\n" @@ -4209,27 +4326,27 @@ msgid "" "images, etc.)" msgstr "" -#: gnu/packages/games.scm:4630 +#: gnu/packages/games.scm:4631 msgid "" "The Emilia Pinball Project is a pinball simulator. There\n" "are only two levels to play with, but they are very addictive." msgstr "" -#: gnu/packages/games.scm:4659 +#: gnu/packages/games.scm:4660 msgid "" "Pioneers is an emulation of the board game The Settlers of\n" "Catan. It can be played on a local network, on the internet, and with AI\n" "players." msgstr "" -#: gnu/packages/games.scm:4701 +#: gnu/packages/games.scm:4702 msgid "" "The goal of this logic game is to open all cards in a 6x6\n" "grid, using a number of hints as to their relative position. The game idea\n" "is attributed to Albert Einstein." msgstr "" -#: gnu/packages/games.scm:4731 +#: gnu/packages/games.scm:4732 msgid "" "POWWOW is a client software which can be used for telnet as well as for\n" "@dfn{Multi-User Dungeon} (MUD). Additionally it can serve as a nice client for\n" @@ -4237,21 +4354,21 @@ msgid "" "http://lavachat.symlynx.com/unix/" msgstr "" -#: gnu/packages/games.scm:4838 +#: gnu/packages/games.scm:4839 msgid "" "Red Eclipse is an arena shooter, created from the Cube2 engine.\n" "Offering an innovative parkour system and distinct but all potent weapons,\n" "Red Eclipse provides fast paced and accessible gameplay." msgstr "" -#: gnu/packages/games.scm:4903 +#: gnu/packages/games.scm:4904 msgid "" "Grue Hunter is a text adventure game written in Perl. You must make\n" "your way through an underground cave system in search of the Grue. Can you\n" "capture it and get out alive?" msgstr "" -#: gnu/packages/games.scm:4942 +#: gnu/packages/games.scm:4943 msgid "" "lierolibre is an earthworm action game where you fight another player\n" "(or the computer) underground using a wide array of weapons.\n" @@ -4276,14 +4393,14 @@ msgid "" "fullscreen, use F5 or Alt+Enter." msgstr "" -#: gnu/packages/games.scm:5021 +#: gnu/packages/games.scm:5022 msgid "" "Tennix is a 2D tennis game. You can play against the\n" "computer or against another player using the keyboard. The game runs\n" "in-window at 640x480 resolution or fullscreen." msgstr "" -#: gnu/packages/games.scm:5105 +#: gnu/packages/games.scm:5106 msgid "" "Warzone 2100 offers campaign, multi-player, and single-player skirmish\n" "modes. An extensive tech tree with over 400 different technologies, combined\n" @@ -4291,7 +4408,7 @@ msgid "" "tactics." msgstr "" -#: gnu/packages/games.scm:5184 +#: gnu/packages/games.scm:5185 msgid "" "In Widelands, you are the regent of a small clan. You start out with\n" "nothing but your headquarters, where all your resources are stored.\n" @@ -4313,7 +4430,7 @@ msgid "" "of war. Widelands also offers an Artificial Intelligence to challenge you." msgstr "" -#: gnu/packages/games.scm:5236 +#: gnu/packages/games.scm:5237 msgid "" "In the year 2579, the intergalactic weapons corporation, WEAPCO, has\n" "dominated the galaxy. Guide Chris Bainfield and his friend Sid Wilson on\n" @@ -4322,7 +4439,7 @@ msgid "" "in strikes against the evil corporation." msgstr "" -#: gnu/packages/games.scm:5267 +#: gnu/packages/games.scm:5268 msgid "" "In this game you are the captain of the cargo ship Chromium B.S.U. and\n" "are responsible for delivering supplies to the troops on the front line. Your\n" @@ -4330,7 +4447,7 @@ msgid "" "safety of the Chromium vessel." msgstr "" -#: gnu/packages/games.scm:5350 +#: gnu/packages/games.scm:5351 msgid "" "Tux Paint is a free drawing program designed for young children (kids\n" "ages 3 and up). It has a simple, easy-to-use interface; fun sound effects;\n" @@ -4339,23 +4456,23 @@ msgid "" "your child be creative." msgstr "" -#: gnu/packages/games.scm:5390 +#: gnu/packages/games.scm:5391 msgid "" "This package contains a set of \"Rubber Stamp\" images which can be used\n" "with the \"Stamp\" tool within Tux Paint." msgstr "" -#: gnu/packages/games.scm:5439 +#: gnu/packages/games.scm:5440 msgid "Tux Paint Config is a graphical configuration editor for Tux Paint." msgstr "" -#: gnu/packages/games.scm:5491 +#: gnu/packages/games.scm:5492 msgid "" "SuperTux is a classic 2D jump'n run sidescroller game in\n" "a style similar to the original Super Mario games." msgstr "" -#: gnu/packages/games.scm:5523 +#: gnu/packages/games.scm:5524 msgid "" "TinTin++ is a MUD client which supports MCCP (Mud Client Compression\n" "Protocol), MMCP (Mud Master Chat Protocol), xterm 256 colors, most TELNET\n" @@ -4363,7 +4480,7 @@ msgid "" "Linux / Mac OS X servers, and an auto mapper with a VT100 map display." msgstr "" -#: gnu/packages/games.scm:5563 +#: gnu/packages/games.scm:5564 msgid "" "Learn programming, playing with ants and spider webs ;-)\n" "Your robot ant can be programmed in many languages: OCaml, Python, C, C++,\n" @@ -4371,14 +4488,14 @@ msgid "" "programmers may also add their own favorite language." msgstr "" -#: gnu/packages/games.scm:5602 +#: gnu/packages/games.scm:5603 msgid "" "Bambam is a simple baby keyboard (and gamepad) masher\n" "application that locks the keyboard and mouse and instead displays bright\n" "colors, pictures, and sounds." msgstr "" -#: gnu/packages/games.scm:5663 +#: gnu/packages/games.scm:5664 msgid "" "Mr. Rescue is an arcade styled 2d action game centered around evacuating\n" "civilians from burning buildings. The game features fast-paced fire\n" @@ -4386,7 +4503,7 @@ msgid "" "throwing people around in pseudo-randomly generated buildings." msgstr "" -#: gnu/packages/games.scm:5770 +#: gnu/packages/games.scm:5771 msgid "" "HyperRogue is a game in which the player collects treasures and fights\n" "monsters -- rogue-like but for the fact that it is played on the hyperbolic\n" @@ -4400,13 +4517,13 @@ msgid "" "symbols, it still needs graphics to render the non-euclidean world." msgstr "" -#: gnu/packages/games.scm:5817 +#: gnu/packages/games.scm:5818 msgid "" "Kobo Deluxe is an enhanced version of Akira Higuchi's XKobo graphical game\n" "for Un*x systems with X11." msgstr "" -#: gnu/packages/games.scm:5845 +#: gnu/packages/games.scm:5846 msgid "" "Freeciv is a turn-based empire building strategy game\n" "inspired by the history of human civilization. The game commences in\n" @@ -4414,7 +4531,7 @@ msgid "" "into the Space Age." msgstr "" -#: gnu/packages/games.scm:5878 +#: gnu/packages/games.scm:5879 msgid "" "@code{No More Secrets} provides a command line tool called \"nms\"\n" "that recreates the famous data decryption effect seen on screen in the 1992\n" @@ -4425,25 +4542,25 @@ msgid "" "starting a decryption sequence to reveal the original plaintext characters." msgstr "" -#: gnu/packages/games.scm:5906 +#: gnu/packages/games.scm:5907 msgid "This package contains the data files required for MegaGlest." msgstr "" -#: gnu/packages/games.scm:5961 +#: gnu/packages/games.scm:5962 msgid "" "MegaGlest is a cross-platform 3D real-time strategy (RTS)\n" "game, where you control the armies of one of seven different factions: Tech,\n" "Magic, Egypt, Indians, Norsemen, Persian or Romans." msgstr "" -#: gnu/packages/games.scm:6013 +#: gnu/packages/games.scm:6014 msgid "" "In FreeGish you control Gish, a ball of tar who lives\n" "happily with his girlfriend Brea, until one day a mysterious dark creature\n" "emerges from a sewer hole and pulls her below ground." msgstr "" -#: gnu/packages/games.scm:6049 +#: gnu/packages/games.scm:6050 msgid "" "C-Dogs SDL is a classic overhead run-and-gun game,\n" "supporting up to 4 players in co-op and deathmatch modes. Customize your\n" @@ -4451,21 +4568,21 @@ msgid "" "over 100 user-created campaigns." msgstr "" -#: gnu/packages/games.scm:6149 +#: gnu/packages/games.scm:6150 msgid "" "Kiki the nano bot is a 3D puzzle game. It is basically a\n" "mixture of the games Sokoban and Kula-World. Your task is to help Kiki, a\n" "small robot living in the nano world, repair its maker." msgstr "" -#: gnu/packages/games.scm:6225 +#: gnu/packages/games.scm:6226 msgid "" "Teeworlds is an online multiplayer game. Battle with up to\n" "16 players in a variety of game modes, including Team Deathmatch and Capture\n" "The Flag. You can even design your own maps!" msgstr "" -#: gnu/packages/games.scm:6285 +#: gnu/packages/games.scm:6286 msgid "" "Enigma is a puzzle game with 550 unique levels. The object\n" "of the game is to find and uncover pairs of identically colored ‘Oxyd’ stones.\n" @@ -4477,7 +4594,7 @@ msgid "" "with the mouse isn’t always trivial." msgstr "" -#: gnu/packages/games.scm:6319 +#: gnu/packages/games.scm:6320 msgid "" "Chroma is an abstract puzzle game. A variety of colourful\n" "shapes are arranged in a series of increasingly complex patterns, forming\n" @@ -4487,7 +4604,7 @@ msgid "" "becoming difficult enough to tax even the brightest of minds." msgstr "" -#: gnu/packages/games.scm:6384 +#: gnu/packages/games.scm:6385 msgid "" "Fish Fillets NG is strictly a puzzle game. The goal in\n" "every of the seventy levels is always the same: find a safe way out. The fish\n" @@ -4496,14 +4613,14 @@ msgid "" "fish. The whole game is accompanied by quiet, comforting music." msgstr "" -#: gnu/packages/games.scm:6452 +#: gnu/packages/games.scm:6453 msgid "" "Dungeon Crawl Stone Soup (also known as \"Crawl\" or DCSS\n" "for short) is a roguelike adventure through dungeons filled with dangerous\n" "monsters in a quest to find the mystifyingly fabulous Orb of Zot." msgstr "" -#: gnu/packages/games.scm:6529 +#: gnu/packages/games.scm:6530 msgid "" "Lugaru is a third-person action game. The main character,\n" "Turner, is an anthropomorphic rebel bunny rabbit with impressive combat skills.\n" @@ -4513,11 +4630,11 @@ msgid "" "fight against their plot and save his fellow rabbits from slavery." msgstr "" -#: gnu/packages/games.scm:6574 +#: gnu/packages/games.scm:6575 msgid "0ad-data provides the data files required by the game 0ad." msgstr "A 0ad-data biztosítja a 0ad játékhoz szükséges adatfájlokat." -#: gnu/packages/games.scm:6710 +#: gnu/packages/games.scm:6711 msgid "" "0 A.D. is a real-time strategy (RTS) game of ancient\n" "warfare. It's a historically-based war/economy game that allows players to\n" @@ -4527,7 +4644,7 @@ msgid "" "0ad needs a window manager that supports 'Extended Window Manager Hints'." msgstr "" -#: gnu/packages/games.scm:6776 +#: gnu/packages/games.scm:6777 msgid "" "The original Colossal Cave Adventure from 1976 was the origin of all\n" "text adventures, dungeon-crawl (computer) games, and computer-hosted\n" @@ -4536,7 +4653,7 @@ msgid "" "``adventure 2.5'' and ``430-point adventure''." msgstr "" -#: gnu/packages/games.scm:6899 +#: gnu/packages/games.scm:6900 msgid "" "Tales of Maj’Eyal (ToME) RPG, featuring tactical turn-based\n" "combat and advanced character building. Play as one of many unique races and\n" @@ -4547,21 +4664,21 @@ msgid "" "Tales of Maj’Eyal offers engaging roguelike gameplay for the 21st century." msgstr "" -#: gnu/packages/games.scm:6945 +#: gnu/packages/games.scm:6946 msgid "" "Quakespasm is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7002 +#: gnu/packages/games.scm:7003 msgid "" "vkquake is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7067 +#: gnu/packages/games.scm:7068 msgid "" "Yamagi Quake II is an enhanced client for id Software's Quake II.\n" "The main focus is an unchanged single player experience like back in 1997,\n" @@ -4571,18 +4688,18 @@ msgid "" "making Yamagi Quake II one of the most solid Quake II implementations available." msgstr "" -#: gnu/packages/games.scm:7100 +#: gnu/packages/games.scm:7101 msgid "Nudoku is a ncurses-based Sudoku game for your terminal." msgstr "" -#: gnu/packages/games.scm:7146 +#: gnu/packages/games.scm:7147 msgid "" "The Butterfly Effect (tbe) is a game that uses\n" "realistic physics simulations to combine lots of simple mechanical\n" "elements to achieve a simple goal in the most complex way possible." msgstr "" -#: gnu/packages/games.scm:7192 +#: gnu/packages/games.scm:7193 msgid "" "Pioneer is a space adventure game set in our galaxy at the turn of the\n" "31st century. The game is open-ended, and you are free to eke out whatever\n" @@ -4593,14 +4710,14 @@ msgid "" "whatever you make of it." msgstr "" -#: gnu/packages/games.scm:7221 +#: gnu/packages/games.scm:7222 msgid "" "Badass generates false commits for a range of dates, essentially\n" "hacking the gamification of contribution graphs on platforms such as\n" "Github or Gitlab." msgstr "" -#: gnu/packages/games.scm:7294 +#: gnu/packages/games.scm:7295 msgid "" "Colobot: Gold Edition is a real-time strategy game, where\n" "you can program your units (bots) in a language called CBOT, which is similar\n" @@ -4608,7 +4725,7 @@ msgid "" "You can save humanity and get programming skills!" msgstr "" -#: gnu/packages/games.scm:7386 +#: gnu/packages/games.scm:7387 msgid "" "GZdoom is a port of the Doom 2 game engine, with a modern\n" "renderer. It improves modding support with ZDoom's advanced mapping features\n" @@ -4616,14 +4733,14 @@ msgid "" "Strife, Chex Quest, and fan-created games like Harmony, Hacx and Freedoom." msgstr "" -#: gnu/packages/games.scm:7425 +#: gnu/packages/games.scm:7426 msgid "" "Odamex is a modification of the Doom engine that\n" "allows players to easily join servers dedicated to playing Doom\n" "online." msgstr "" -#: gnu/packages/games.scm:7453 +#: gnu/packages/games.scm:7454 msgid "" "Chocolate Doom takes a different approach to other source ports. Its\n" "aim is to accurately reproduce the experience of playing Vanilla Doom. It is\n" @@ -4636,7 +4753,7 @@ msgid "" "affect gameplay)." msgstr "" -#: gnu/packages/games.scm:7493 +#: gnu/packages/games.scm:7494 msgid "" "Crispy Doom is a friendly fork of Chocolate Doom that provides a higher\n" "display resolution, removes the static limits of the Doom engine and offers\n" @@ -4645,22 +4762,22 @@ msgid "" "original." msgstr "" -#: gnu/packages/games.scm:7566 +#: gnu/packages/games.scm:7567 msgid "This package provides C11 / gnu11 utilities C library" msgstr "" -#: gnu/packages/games.scm:7635 +#: gnu/packages/games.scm:7636 msgid "" "Fortune is a command-line utility which displays a random\n" "quotation from a collection of quotes." msgstr "" -#: gnu/packages/games.scm:7677 +#: gnu/packages/games.scm:7678 #, fuzzy msgid "Xonotic-data provides the data files required by the game Xonotic." msgstr "A 0ad-data biztosítja a 0ad játékhoz szükséges adatfájlokat." -#: gnu/packages/games.scm:7873 +#: gnu/packages/games.scm:7874 msgid "" "Xonotic is a free, fast-paced first-person shooter.\n" "The project is geared towards providing addictive arena shooter\n" @@ -4670,7 +4787,7 @@ msgid "" "open-source FPS of its kind." msgstr "" -#: gnu/packages/games.scm:7920 +#: gnu/packages/games.scm:7921 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4679,7 +4796,7 @@ msgid "" "ncurses for text display." msgstr "" -#: gnu/packages/games.scm:7964 +#: gnu/packages/games.scm:7966 msgid "" "Naev is a 2d action/rpg space game that combines elements from\n" "the action, RPG and simulation genres. You pilot a spaceship from\n" @@ -4691,7 +4808,7 @@ msgid "" "of lore accompanying everything from planets to equipment." msgstr "" -#: gnu/packages/games.scm:8013 +#: gnu/packages/games.scm:8015 msgid "" "Frotz is an interpreter for Infocom games and\n" "other Z-machine games in the text adventure/interactive fiction genre.\n" @@ -4703,7 +4820,7 @@ msgid "" "to play games on webpages. It can also be made into a chat bot." msgstr "" -#: gnu/packages/games.scm:8075 +#: gnu/packages/games.scm:8077 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4713,7 +4830,7 @@ msgid "" "when packaged in Blorb container files or optionally from individual files." msgstr "" -#: gnu/packages/games.scm:8166 +#: gnu/packages/games.scm:8168 msgid "" "Frozen-Bubble is a clone of the popular Puzzle Bobble game, in which\n" "you attempt to shoot bubbles into groups of the same color to cause them to\n" @@ -4728,7 +4845,7 @@ msgid "" "their own levels." msgstr "" -#: gnu/packages/games.scm:8199 +#: gnu/packages/games.scm:8201 msgid "" "Libmanette is a small GObject library giving you simple\n" "access to game controllers. It supports the de-facto standard gamepads as\n" @@ -4736,7 +4853,7 @@ msgid "" "GameController." msgstr "" -#: gnu/packages/games.scm:8245 +#: gnu/packages/games.scm:8247 msgid "" "Quadrapassel comes from the classic falling-block game,\n" "Tetris. The goal of the game is to create complete horizontal lines of\n" @@ -4748,7 +4865,7 @@ msgid "" "your score gets higher, you level up and the blocks fall faster." msgstr "" -#: gnu/packages/games.scm:8294 +#: gnu/packages/games.scm:8296 msgid "" "Endless Sky is a 2D space trading and combat game. Explore\n" "other star systems. Earn money by trading, carrying passengers, or completing\n" @@ -4758,7 +4875,7 @@ msgid "" "civilized than your own." msgstr "" -#: gnu/packages/games.scm:8443 +#: gnu/packages/games.scm:8445 msgid "" "StepMania is a dance and rhythm game. It features 3D\n" "graphics, keyboard and dance pad support, and an editor for creating your own\n" @@ -4768,7 +4885,7 @@ msgid "" "to download and install them in @file{$HOME/.stepmania-X.Y/Songs} directory." msgstr "" -#: gnu/packages/games.scm:8479 +#: gnu/packages/games.scm:8481 msgid "" "@i{oshu!} is a minimalist variant of the @i{osu!} rhythm game,\n" "which is played by pressing buttons and following along sliders as they appear\n" @@ -4778,7 +4895,7 @@ msgid "" "download and unpack them separately." msgstr "" -#: gnu/packages/games.scm:8562 +#: gnu/packages/games.scm:8564 msgid "" "Battle Tanks (also known as \"btanks\") is a funny battle\n" "game, where you can choose one of three vehicles and eliminate your enemy\n" @@ -4787,7 +4904,7 @@ msgid "" "and cooperative." msgstr "" -#: gnu/packages/games.scm:8596 +#: gnu/packages/games.scm:8598 msgid "" "Slime Volley is a 2D arcade-oriented volleyball simulation, in\n" "the spirit of some Java games of the same name.\n" @@ -4798,7 +4915,7 @@ msgid "" "the ground, the set ends and all balls are served again." msgstr "" -#: gnu/packages/games.scm:8626 +#: gnu/packages/games.scm:8628 msgid "" "Slingshot is a two-dimensional strategy game where two\n" "players attempt to shoot one another through a section of space populated by\n" @@ -4806,14 +4923,14 @@ msgid "" "affected by the gravity of the planets." msgstr "" -#: gnu/packages/games.scm:8674 +#: gnu/packages/games.scm:8676 msgid "" "4D-TRIS is an alteration of the well-known Tetris game. The\n" "game field is extended to 4D space, which has to filled up by the gamer with\n" "4D hyper cubes." msgstr "" -#: gnu/packages/games.scm:8751 +#: gnu/packages/games.scm:8753 msgid "" "Arx Libertatis is a cross-platform port of Arx Fatalis, a 2002\n" "first-person role-playing game / dungeon crawler developed by Arkane Studios.\n" @@ -4823,7 +4940,7 @@ msgid "" "where the player draws runes in real time to effect the desired spell." msgstr "" -#: gnu/packages/games.scm:8797 +#: gnu/packages/games.scm:8799 msgid "" "The Legend of Edgar is a 2D platform game with a persistent world.\n" "When Edgar's father fails to return home after venturing out one dark and stormy night,\n" @@ -4831,7 +4948,7 @@ msgid "" "a fortress beyond the forbidden swamp." msgstr "" -#: gnu/packages/games.scm:8899 +#: gnu/packages/games.scm:8901 msgid "" "OpenClonk is a multiplayer action/tactics/skill game. It is\n" "often referred to as a mixture of The Settlers and Worms. In a simple 2D\n" @@ -4841,20 +4958,20 @@ msgid "" "fight each other on an arena-like map." msgstr "" -#: gnu/packages/games.scm:8931 +#: gnu/packages/games.scm:8933 msgid "" "Flare (Free Libre Action Roleplaying Engine) is a simple\n" "game engine built to handle a very specific kind of game: single-player 2D\n" "action RPGs." msgstr "" -#: gnu/packages/games.scm:8994 +#: gnu/packages/games.scm:8996 msgid "" "Flare is a single-player 2D action RPG with\n" "fast-paced action and a dark fantasy style." msgstr "" -#: gnu/packages/games.scm:9046 +#: gnu/packages/games.scm:9048 msgid "" "Far below the surface of the planet is a place of limitless\n" "power. Those that seek to control such a utopia will soon bring an end to\n" @@ -4868,7 +4985,7 @@ msgid "" "Orcus Dome from evil." msgstr "" -#: gnu/packages/games.scm:9108 +#: gnu/packages/games.scm:9110 msgid "" "Marble Marcher is a video game that uses a fractal physics\n" "engine and fully procedural rendering to produce beautiful and unique\n" @@ -4878,7 +4995,7 @@ msgid "" "levels to unlock." msgstr "" -#: gnu/packages/games.scm:9159 +#: gnu/packages/games.scm:9161 msgid "" "SimGear is a set of libraries designed to be used as\n" "building blocks for quickly assembling 3D simulations, games, and\n" @@ -4886,7 +5003,7 @@ msgid "" "and also provides the base for the FlightGear Flight Simulator." msgstr "" -#: gnu/packages/games.scm:9253 +#: gnu/packages/games.scm:9255 msgid "" "The goal of the FlightGear project is to create a\n" "sophisticated flight simulator framework for use in research or academic\n" @@ -4896,14 +5013,14 @@ msgid "" "simulator." msgstr "" -#: gnu/packages/games.scm:9306 +#: gnu/packages/games.scm:9308 msgid "" "You, as a bunny, have to jump on your opponents to make them\n" "explode. It is a true multiplayer game; you cannot play this alone. You can\n" "play with up to four players simultaneously. It has network support." msgstr "" -#: gnu/packages/games.scm:9373 +#: gnu/packages/games.scm:9375 msgid "" "Hedgewars is a turn based strategy, artillery, action and comedy game,\n" "featuring the antics of pink hedgehogs with attitude as they battle from the\n" @@ -4913,7 +5030,7 @@ msgid "" "and bring the war to your enemy." msgstr "" -#: gnu/packages/games.scm:9407 +#: gnu/packages/games.scm:9409 msgid "" "The gruid module provides packages for easily building\n" "grid-based applications in Go. The library abstracts rendering and input for\n" @@ -4923,13 +5040,13 @@ msgid "" "application." msgstr "" -#: gnu/packages/games.scm:9437 +#: gnu/packages/games.scm:9439 msgid "" "The gruid-tcell module provides a Gruid driver for building\n" "terminal full-window applications." msgstr "" -#: gnu/packages/games.scm:9464 +#: gnu/packages/games.scm:9466 msgid "" "Harmonist: Dayoriah Clan Infiltration is a stealth\n" "coffee-break roguelike game. The game has a heavy focus on tactical\n" @@ -4939,7 +5056,7 @@ msgid "" "on items and player adaptability for character progression." msgstr "" -#: gnu/packages/games.scm:9573 +#: gnu/packages/games.scm:9575 msgid "" "Drascula: The Vampire Strikes Back is a classic humorous 2D\n" "point and click adventure game.\n" @@ -4951,7 +5068,7 @@ msgid "" "the World and demonstrating that he is even more evil than his brother Vlad." msgstr "" -#: gnu/packages/games.scm:9653 +#: gnu/packages/games.scm:9655 msgid "" "Lure of the Temptress is a classic 2D point and click adventure game.\n" "\n" @@ -4970,7 +5087,7 @@ msgid "" "Skorl. Maybe it would be an idea to try and escape..." msgstr "" -#: gnu/packages/games.scm:9752 +#: gnu/packages/games.scm:9754 msgid "" "Flight of the Amazon Queen is a 2D point-and-click\n" "adventure game set in the 1940s.\n" @@ -4987,7 +5104,7 @@ msgid "" "women and 6-foot-tall pygmies." msgstr "" -#: gnu/packages/games.scm:9852 +#: gnu/packages/games.scm:9854 msgid "" "Beneath a Steel Sky is a science-fiction thriller set in a bleak\n" "post-apocalyptic vision of the future. It revolves around Union City,\n" @@ -5010,7 +5127,7 @@ msgid "" "and to seek vengeance for the killing of his tribe." msgstr "" -#: gnu/packages/games.scm:9911 +#: gnu/packages/games.scm:9913 msgid "" "GNU Robots is a game in which you program a robot to explore a world\n" "full of enemies that can hurt it, obstacles and food to be eaten. The goal of\n" @@ -5018,14 +5135,14 @@ msgid "" "may be written in a plain text file in the Scheme programming language." msgstr "" -#: gnu/packages/games.scm:9981 +#: gnu/packages/games.scm:9983 msgid "" "Ri-li is a game in which you drive a wooden toy\n" "steam locomotive across many levels and collect all the coaches to\n" "win." msgstr "" -#: gnu/packages/games.scm:10037 +#: gnu/packages/games.scm:10039 msgid "" "FreeOrion is a turn-based space empire and galactic conquest (4X)\n" "computer game being designed and built by the FreeOrion project. Control an\n" @@ -5035,14 +5152,14 @@ msgid "" "remake of that series or any other game." msgstr "" -#: gnu/packages/games.scm:10093 +#: gnu/packages/games.scm:10095 msgid "" "Leela-zero is a Go engine with no human-provided knowledge, modeled after\n" "the AlphaGo Zero paper. The current best network weights file for the engine\n" "can be downloaded from @url{https://zero.sjeng.org/best-network}." msgstr "" -#: gnu/packages/games.scm:10171 +#: gnu/packages/games.scm:10173 msgid "" "This a tool for Go players which performs the following functions:\n" "@itemize\n" @@ -5054,7 +5171,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:10214 +#: gnu/packages/games.scm:10216 msgid "" "KTuberling is a drawing toy intended for small children and\n" "adults who remain young at heart. The game has no winner; the only purpose is\n" @@ -5073,7 +5190,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10260 +#: gnu/packages/games.scm:10262 msgid "" "Picmi is a number logic game in which cells in a grid have\n" "to be colored or left blank according to numbers given at the side of the\n" @@ -5082,7 +5199,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10297 +#: gnu/packages/games.scm:10299 msgid "" "Kolf is a miniature golf game for one to ten players. The\n" "game is played from an overhead view, with a short bar representing the golf\n" @@ -5101,13 +5218,13 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10341 +#: gnu/packages/games.scm:10343 msgid "" "Shared library and common files for kmahjongg, kshisen and\n" "other Mah Jongg like games." msgstr "" -#: gnu/packages/games.scm:10374 +#: gnu/packages/games.scm:10376 msgid "" "In KMahjongg the tiles are scrambled and staked on top of\n" "each other to resemble a certain shape. The player is then expected to remove\n" @@ -5119,7 +5236,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10416 +#: gnu/packages/games.scm:10418 msgid "" "KShisen is a solitaire-like game played using the standard\n" "set of Mahjong tiles. Unlike Mahjong however, KShisen has only one layer of\n" @@ -5128,7 +5245,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10471 +#: gnu/packages/games.scm:10473 msgid "" "Kajongg is the ancient Chinese board game for 4 players.\n" "\n" @@ -5143,7 +5260,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10513 +#: gnu/packages/games.scm:10515 msgid "" "KBreakout is similar to the classics breakout and xboing,\n" "featuring a number of added graphical enhancements and effects. You control a\n" @@ -5153,7 +5270,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10551 +#: gnu/packages/games.scm:10553 msgid "" "KMines is a classic Minesweeper game. The idea is to\n" "uncover all the squares without blowing up any mines. When a mine is blown\n" @@ -5162,7 +5279,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10588 +#: gnu/packages/games.scm:10590 msgid "" "Konquest is the KDE version of Gnu-Lactic Konquest. Players\n" "conquer other planets by sending ships to them. The goal is to build an\n" @@ -5173,7 +5290,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10627 +#: gnu/packages/games.scm:10629 msgid "" "KBounce is a single player arcade game with the elements of\n" "puzzle. It is played on a field, surrounded by wall, with two or more balls\n" @@ -5183,7 +5300,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10665 +#: gnu/packages/games.scm:10667 msgid "" "KBlocks is the classic Tetris-like falling blocks game.\n" "\n" @@ -5195,7 +5312,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10708 +#: gnu/packages/games.scm:10710 msgid "" "KSudoku is a Sudoku game and solver, supporting a range of\n" "2D and 3D Sudoku variants. In addition to playing Sudoku, it can print Sudoku\n" @@ -5224,7 +5341,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10763 +#: gnu/packages/games.scm:10765 msgid "" "KLines is a simple but highly addictive one player game.\n" "\n" @@ -5241,7 +5358,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10806 +#: gnu/packages/games.scm:10808 msgid "" "KGoldrunner is an action game where the hero runs through a\n" "maze, climbs stairs, dig holes and dodges enemies in order to collect all the\n" @@ -5255,7 +5372,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10849 +#: gnu/packages/games.scm:10851 msgid "" "KDiamond is a three-in-a-row game like Bejeweled. It\n" "features unlimited fun with randomly generated games and five difficulty\n" @@ -5264,7 +5381,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10885 +#: gnu/packages/games.scm:10887 msgid "" "KFourInLine is a board game for two players based on the\n" "Connect-Four game.\n" @@ -5275,7 +5392,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10924 +#: gnu/packages/games.scm:10926 msgid "" "KBlackbox is a game of hide and seek played on a grid of\n" "boxes where the computer has hidden several balls. The position of the hidden\n" @@ -5287,7 +5404,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10964 +#: gnu/packages/games.scm:10966 msgid "" "KNetWalk is a small game where you have to build up a\n" "computer network by rotating the wires to connect the terminals to the server.\n" @@ -5300,7 +5417,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11002 +#: gnu/packages/games.scm:11004 msgid "" "Bomber is a single player arcade game.\n" "\n" @@ -5316,7 +5433,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11047 +#: gnu/packages/games.scm:11049 msgid "" "Granatier is a clone of the classic Bomberman game,\n" "inspired by the work of the Clanbomber clone.\n" @@ -5324,7 +5441,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11085 +#: gnu/packages/games.scm:11087 msgid "" "KsirK is a multi-player network-enabled game. The goal of\n" "the game is simply to conquer the world by attacking your neighbors with your\n" @@ -5349,7 +5466,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11145 +#: gnu/packages/games.scm:11147 msgid "" "Palapeli is a jigsaw puzzle game. Unlike other games in\n" "that genre, you are not limited to aligning pieces on imaginary grids. The\n" @@ -5361,7 +5478,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11184 +#: gnu/packages/games.scm:11186 msgid "" "Kiriki is an addictive and fun dice game, designed to be\n" "played by as many as six players.\n" @@ -5372,7 +5489,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11224 +#: gnu/packages/games.scm:11226 msgid "" "Kigo is an open-source implementation of the popular Go\n" "game.\n" @@ -5389,7 +5506,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11269 +#: gnu/packages/games.scm:11271 msgid "" "Kubrick is a game based on the Rubik's Cube puzzle.\n" "\n" @@ -5402,7 +5519,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11309 +#: gnu/packages/games.scm:11311 msgid "" "Lieutnant Skat (from German \"Offiziersskat\") is a fun and\n" "engaging card game for two players, where the second player is either live\n" @@ -5413,7 +5530,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11347 +#: gnu/packages/games.scm:11349 msgid "" "Kapman is a clone of the well known game Pac-Man.\n" "\n" @@ -5425,7 +5542,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11386 +#: gnu/packages/games.scm:11388 msgid "" "KSpaceduel is a space battle game for one or two players,\n" "where two ships fly around a star in a struggle to be the only survivor.\n" @@ -5433,7 +5550,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11419 +#: gnu/packages/games.scm:11421 msgid "" "Bovo is a Gomoku (from Japanese 五目並べ - lit. \"five\n" "points\") like game for two players, where the opponents alternate in placing\n" @@ -5444,7 +5561,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11457 +#: gnu/packages/games.scm:11459 msgid "" "Killbots is a simple game of evading killer robots.\n" "\n" @@ -5458,7 +5575,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11499 +#: gnu/packages/games.scm:11501 msgid "" "KSnakeDuel is a fast action game where you steer a snake\n" "which has to eat food. While eating the snake grows. But once a player\n" @@ -5468,7 +5585,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11535 +#: gnu/packages/games.scm:11537 msgid "" "In Kollision you use mouse to control a small blue ball in a\n" "closed space environment filled with small red balls, which move about\n" @@ -5479,7 +5596,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11575 +#: gnu/packages/games.scm:11577 msgid "" "KBattleship is a Battle Ship game for KDE.\n" "\n" @@ -5490,7 +5607,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11615 +#: gnu/packages/games.scm:11617 msgid "" "KReversi is a simple one player strategy game played\n" "against the computer.\n" @@ -5503,7 +5620,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11655 +#: gnu/packages/games.scm:11657 msgid "" "KSquares is an implementation of the popular paper based\n" "game Squares. Two players take turns connecting dots on a grid to complete\n" @@ -5512,7 +5629,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11692 +#: gnu/packages/games.scm:11694 msgid "" "KJumpingcube is a simple tactical game for one or two\n" "players, played on a grid of numbered squares. Each turn, players compete for\n" @@ -5521,7 +5638,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11782 +#: gnu/packages/games.scm:11784 msgid "" "X-Moto is a challenging 2D motocross platform game, where\n" "physics play an all important role in the gameplay. You need to\n" @@ -5529,27 +5646,27 @@ msgid "" "the more difficult challenges." msgstr "" -#: gnu/packages/games.scm:11827 +#: gnu/packages/games.scm:11829 msgid "" "Eboard is a chess board interface for ICS (Internet Chess Servers)\n" "and chess engines." msgstr "" -#: gnu/packages/games.scm:11880 +#: gnu/packages/games.scm:11882 msgid "" "ChessX is a chess database. With ChessX you can operate on your\n" "collection of chess games in many ways: browse, edit, add, organize, analyze,\n" "etc. You can also play games on FICS or against an engine." msgstr "" -#: gnu/packages/games.scm:11935 +#: gnu/packages/games.scm:11937 msgid "" "Stockfish is a very strong chess engine. It is much stronger than the\n" "best human chess grandmasters. It can be used with UCI-compatible GUIs like\n" "ChessX." msgstr "" -#: gnu/packages/games.scm:11964 +#: gnu/packages/games.scm:11966 msgid "" "Barrage is a rather destructive action game that puts you on a shooting\n" "range with the objective to hit as many dummy targets as possible within\n" @@ -5558,7 +5675,7 @@ msgid "" "get high scores." msgstr "" -#: gnu/packages/games.scm:11990 +#: gnu/packages/games.scm:11992 msgid "" "This is a clone of the classic game BurgerTime. In it, you play\n" "the part of a chef who must create burgers by stepping repeatedly on\n" @@ -5568,7 +5685,7 @@ msgid "" "protect you." msgstr "" -#: gnu/packages/games.scm:12018 +#: gnu/packages/games.scm:12020 msgid "" "Seven Kingdoms, designed by Trevor Chan, brings a blend of Real-Time\n" "Strategy with the addition of trade, diplomacy, and espionage. The game\n" @@ -5578,7 +5695,7 @@ msgid "" "kingdom." msgstr "" -#: gnu/packages/games.scm:12134 +#: gnu/packages/games.scm:12136 msgid "" "In the grand tradition of Marble Madness and Super Monkey Ball,\n" "Neverball has you guide a rolling ball through dangerous territory. Balance\n" @@ -5588,13 +5705,13 @@ msgid "" "game." msgstr "" -#: gnu/packages/games.scm:12210 +#: gnu/packages/games.scm:12212 msgid "" "With PokerTH you can play the Texas holdem poker game, either against\n" "computer opponents or against real players online." msgstr "" -#: gnu/packages/games.scm:12281 +#: gnu/packages/games.scm:12283 msgid "" "Xblackjack is a MOTIF/OLIT based tool constructed to get you ready for\n" "the casino. It was inspired by a book called \"Beat the Dealer\" by Edward\n" @@ -5603,13 +5720,13 @@ msgid "" "System\" (high-low system)." msgstr "" -#: gnu/packages/games.scm:12321 +#: gnu/packages/games.scm:12323 msgid "" "Pilot your ship inside a planet to find and rescue the colonists trapped\n" "inside the Zenith Colony." msgstr "" -#: gnu/packages/games.scm:12341 +#: gnu/packages/games.scm:12343 msgid "" "Provides a large set of Go-related services for X11:\n" "@itemize\n" @@ -5620,7 +5737,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:12401 +#: gnu/packages/games.scm:12403 msgid "" "Passage is meant to be a memento mori game. It presents an entire life,\n" "from young adulthood through old age and death, in the span of five minutes.\n" @@ -5629,21 +5746,21 @@ msgid "" "there's no right way to interpret it." msgstr "" -#: gnu/packages/games.scm:12435 +#: gnu/packages/games.scm:12437 msgid "" "High performance animated desktop background setter for\n" "X11 that won't set your CPU on fire, drain your laptop battery, or lower video\n" "game FPS." msgstr "" -#: gnu/packages/games.scm:12465 +#: gnu/packages/games.scm:12467 msgid "" "Curse of War is a fast-paced action strategy game originally\n" "implemented using ncurses user interface. An SDL graphical version is also\n" "available." msgstr "" -#: gnu/packages/games.scm:12496 +#: gnu/packages/games.scm:12498 msgid "" "Schiffbruch is a mix of building, strategy and adventure and gets played\n" "with a two-dimensional view. The game deals with the consequences of a ship\n" @@ -5652,13 +5769,13 @@ msgid "" "get attention, so you get found." msgstr "" -#: gnu/packages/games.scm:12556 +#: gnu/packages/games.scm:12558 msgid "" "This package provides port of Prince of Persia, based on the\n" "disassembly of the DOS version, extended with new features." msgstr "" -#: gnu/packages/games.scm:12587 +#: gnu/packages/games.scm:12589 #, scheme-format msgid "" "@code{fheroes2} is an implementation of Heroes of Might and\n" @@ -5754,7 +5871,7 @@ msgid "" "from Markdown files." msgstr "" -#: gnu/packages/gettext.scm:311 +#: gnu/packages/gettext.scm:304 msgid "" "The po4a (PO for anything) project goal is to ease translations (and\n" "more interestingly, the maintenance of translations) using gettext tools on\n" @@ -5838,11 +5955,11 @@ msgid "" "system. It was forked from the GNU Image Manipulation Program." msgstr "" -#: gnu/packages/gnome.scm:284 +#: gnu/packages/gnome.scm:288 msgid "GUPnP-IGD is a library to handle UPnP IGD port mapping." msgstr "" -#: gnu/packages/gnome.scm:340 +#: gnu/packages/gnome.scm:344 msgid "" "Brasero is an application to burn CD/DVD for the Gnome\n" "Desktop. It is designed to be as simple as possible and has some unique\n" @@ -5853,7 +5970,7 @@ msgstr "" "rendelkezik egyedi jellemzőkkel, amelyekkel a felhasználók egyszerűen és\n" "gyorsan hozhatnak létre lemezeket." -#: gnu/packages/gnome.scm:372 +#: gnu/packages/gnome.scm:376 msgid "" "Libcloudproviders is a DBus API that allows cloud storage sync\n" "clients to expose their services. Clients such as file managers and desktop\n" @@ -5861,19 +5978,19 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:444 +#: gnu/packages/gnome.scm:448 msgid "" "LibGRSS is a Glib abstraction to handle feeds in RSS, Atom,\n" "and other formats." msgstr "" -#: gnu/packages/gnome.scm:472 +#: gnu/packages/gnome.scm:476 msgid "" "GNOME-JS-Common provides common modules for GNOME JavaScript\n" "bindings." msgstr "" -#: gnu/packages/gnome.scm:555 +#: gnu/packages/gnome.scm:559 msgid "" "Seed is a library and interpreter, dynamically bridging\n" "(through GObjectIntrospection) the WebKit JavaScriptCore engine, with the\n" @@ -5882,21 +5999,21 @@ msgid "" "in JavaScript." msgstr "" -#: gnu/packages/gnome.scm:611 +#: gnu/packages/gnome.scm:615 msgid "" "Libdmapsharing is a library which allows programs to access,\n" "share and control the playback of media content using DMAP (DAAP, DPAP & DACP).\n" "It is written in C using GObject and libsoup." msgstr "" -#: gnu/packages/gnome.scm:644 +#: gnu/packages/gnome.scm:648 msgid "" "GTX is a small collection of convenience functions intended to\n" "enhance the GLib testing framework. With specific emphasis on easing the pain\n" "of writing test cases for asynchronous interactions." msgstr "" -#: gnu/packages/gnome.scm:721 +#: gnu/packages/gnome.scm:725 msgid "" "Dee is a library that uses DBus to provide objects allowing\n" "you to create Model-View-Controller type programs across DBus. It also consists\n" @@ -5904,7 +6021,7 @@ msgid "" "of known objects without needing a central registrar." msgstr "" -#: gnu/packages/gnome.scm:802 +#: gnu/packages/gnome.scm:806 msgid "" "Zeitgeist is a service which logs the users’s activities and\n" "events, anywhere from files opened to websites visited and conversations. It\n" @@ -5913,27 +6030,27 @@ msgid "" "patterns." msgstr "" -#: gnu/packages/gnome.scm:869 +#: gnu/packages/gnome.scm:871 msgid "" "GNOME Recipes helps you discover what to cook today,\n" "tomorrow, the rest of the week and for special occasions." msgstr "" -#: gnu/packages/gnome.scm:939 +#: gnu/packages/gnome.scm:940 msgid "" "GNOME Photos is a simple and elegant replacement for using a\n" "file manager to deal with photos. Enhance, crop and edit in a snap. Seamless\n" "cloud integration is offered through GNOME Online Accounts." msgstr "" -#: gnu/packages/gnome.scm:1007 +#: gnu/packages/gnome.scm:1008 msgid "" "GNOME Music is the new GNOME music playing application that\n" "aims to combine an elegant and immersive browsing experience with simple\n" "and straightforward controls." msgstr "" -#: gnu/packages/gnome.scm:1028 +#: gnu/packages/gnome.scm:1029 msgid "" "PortableXDR is an implementation of External Data\n" "Representation (XDR) Library. It is a standard data serialization format, for\n" @@ -5941,25 +6058,25 @@ msgid "" "between different kinds of computer systems." msgstr "" -#: gnu/packages/gnome.scm:1066 +#: gnu/packages/gnome.scm:1067 msgid "" "Tepl is a library that eases the development of\n" "GtkSourceView-based text editors and IDEs." msgstr "" -#: gnu/packages/gnome.scm:1107 +#: gnu/packages/gnome.scm:1108 msgid "" "krb5-auth-dialog is a simple dialog that monitors Kerberos\n" "tickets, and pops up a dialog when they are about to expire." msgstr "" -#: gnu/packages/gnome.scm:1132 +#: gnu/packages/gnome.scm:1133 msgid "" "Notification-Daemon is the server implementation of the\n" "freedesktop.org desktop notification specification." msgstr "" -#: gnu/packages/gnome.scm:1168 +#: gnu/packages/gnome.scm:1169 msgid "" "The mm-common module provides the build infrastructure\n" "and utilities shared among the GNOME C++ binding libraries. Release\n" @@ -5967,55 +6084,55 @@ msgid "" "Library reference documentation." msgstr "" -#: gnu/packages/gnome.scm:1214 +#: gnu/packages/gnome.scm:1215 msgid "" "PhoDav was initially developed as a file-sharing mechanism for Spice,\n" "but it is generic enough to be reused in other projects,\n" "in particular in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1267 +#: gnu/packages/gnome.scm:1268 msgid "" "GNOME Color Manager is a session framework that makes\n" "it easy to manage, install and generate color profiles\n" "in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1319 +#: gnu/packages/gnome.scm:1320 msgid "" "GNOME Online Miners provides a set of crawlers that\n" "go through your online content and index them locally in Tracker.\n" "It has miners for Facebook, Flickr, Google, ownCloud and SkyDrive." msgstr "" -#: gnu/packages/gnome.scm:1352 +#: gnu/packages/gnome.scm:1353 msgid "" "This package provides a library to handle resource discovery\n" "and announcement over @acronym{SSDP, Simple Service Discovery Protocol} and\n" "a debugging tool, @command{gssdp-device-sniffer}." msgstr "" -#: gnu/packages/gnome.scm:1391 +#: gnu/packages/gnome.scm:1392 msgid "" "This package provides GUPnP, an object-oriented framework\n" "for creating UPnP devices and control points, written in C using\n" "@code{GObject} and @code{libsoup}." msgstr "" -#: gnu/packages/gnome.scm:1423 +#: gnu/packages/gnome.scm:1424 msgid "" "This package provides a small utility library to\n" "support DLNA-related tasks such as media profile guessing, transcoding to a\n" "given profile, etc. DLNA is a subset of UPnP A/V." msgstr "" -#: gnu/packages/gnome.scm:1453 +#: gnu/packages/gnome.scm:1454 msgid "" "This package provides a small library for handling\n" "and implementation of UPnP A/V profiles." msgstr "" -#: gnu/packages/gnome.scm:1478 +#: gnu/packages/gnome.scm:1479 msgid "" "The libmediaart library is the foundation for media art caching,\n" "extraction, and lookup for applications on the desktop." @@ -6028,14 +6145,14 @@ msgid "" "tour of all gnome components and allows the user to set them up." msgstr "" -#: gnu/packages/gnome.scm:1584 +#: gnu/packages/gnome.scm:1583 msgid "" "GNOME User Share is a small package that binds together\n" "various free software projects to bring easy to use user-level file\n" "sharing to the masses." msgstr "" -#: gnu/packages/gnome.scm:1639 +#: gnu/packages/gnome.scm:1638 msgid "" "Sushi is a DBus-activated service that allows applications\n" "to preview files on the GNOME desktop." @@ -6087,7 +6204,7 @@ msgid "" "and system administrators." msgstr "" -#: gnu/packages/gnome.scm:1946 +#: gnu/packages/gnome.scm:1950 msgid "" "Dia can be used to draw different types of diagrams, and\n" "includes support for UML static structure diagrams (class diagrams), entity\n" @@ -6095,28 +6212,28 @@ msgid "" "formats like PNG, SVG, PDF and EPS." msgstr "" -#: gnu/packages/gnome.scm:1991 +#: gnu/packages/gnome.scm:1995 msgid "" "libgdata is a GLib-based library for accessing online service APIs using\n" "the GData protocol — most notably, Google's services. It provides APIs to\n" "access the common Google services, and has full asynchronous support." msgstr "" -#: gnu/packages/gnome.scm:2019 +#: gnu/packages/gnome.scm:2023 msgid "" "libgxps is a GObject-based library for handling and rendering XPS\n" "documents. This package also contains binaries that can convert XPS documents\n" "to other formats." msgstr "" -#: gnu/packages/gnome.scm:2060 +#: gnu/packages/gnome.scm:2063 msgid "" "Characters is a simple utility application to find\n" "and insert unusual characters. It allows you to quickly find the\n" "character you are looking for by searching for keywords." msgstr "" -#: gnu/packages/gnome.scm:2081 +#: gnu/packages/gnome.scm:2084 msgid "" "gnome-common contains various files needed to bootstrap\n" "GNOME modules built from Git. It contains a common \"autogen.sh\" script that\n" @@ -6124,13 +6241,13 @@ msgid "" "commonly used macros." msgstr "" -#: gnu/packages/gnome.scm:2142 +#: gnu/packages/gnome.scm:2145 msgid "" "GNOME Contacts organizes your contact information from online and\n" "offline sources, providing a centralized place for managing your contacts." msgstr "" -#: gnu/packages/gnome.scm:2222 +#: gnu/packages/gnome.scm:2225 msgid "" "The libgnome-desktop library provides API shared by several applications\n" "on the desktop, but that cannot live in the platform for various reasons.\n" @@ -6140,40 +6257,40 @@ msgid "" "The gnome-about program helps find which version of GNOME is installed." msgstr "" -#: gnu/packages/gnome.scm:2257 +#: gnu/packages/gnome.scm:2260 msgid "" "Gnome-doc-utils is a collection of documentation utilities for the\n" "Gnome project. It includes xml2po tool which makes it easier to translate\n" "and keep up to date translations of documentation." msgstr "" -#: gnu/packages/gnome.scm:2309 +#: gnu/packages/gnome.scm:2311 msgid "Disk management utility for GNOME." msgstr "" -#: gnu/packages/gnome.scm:2352 +#: gnu/packages/gnome.scm:2353 msgid "" "Application to show you the fonts installed on your computer\n" "for your use as thumbnails. Selecting any thumbnails shows the full view of how\n" "the font would look under various sizes." msgstr "" -#: gnu/packages/gnome.scm:2420 +#: gnu/packages/gnome.scm:2421 msgid "" "The GCR package contains libraries used for displaying certificates and\n" "accessing key stores. It also provides the viewer for crypto files on the\n" "GNOME Desktop." msgstr "" -#: gnu/packages/gnome.scm:2459 +#: gnu/packages/gnome.scm:2460 msgid "This library provides docking features for gtk+." msgstr "" -#: gnu/packages/gnome.scm:2505 +#: gnu/packages/gnome.scm:2506 msgid "Client library to access passwords from the GNOME keyring." msgstr "" -#: gnu/packages/gnome.scm:2575 +#: gnu/packages/gnome.scm:2576 msgid "" "gnome-keyring is a program that keeps passwords and other secrets for\n" "users. It is run as a daemon in the session, similar to ssh-agent, and other\n" @@ -6192,13 +6309,13 @@ msgid "" "on the GNOME Desktop with a single simple application." msgstr "" -#: gnu/packages/gnome.scm:2693 +#: gnu/packages/gnome.scm:2692 msgid "" "Gsettings-desktop-schemas contains a collection of GSettings\n" "schemas for settings shared by various components of the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:2729 +#: gnu/packages/gnome.scm:2728 msgid "" "Liblarch is a Python library built to easily handle data structures such\n" "as lists, trees and acyclic graphs. There's also a GTK binding that will\n" @@ -6209,7 +6326,7 @@ msgid "" "and how they are displayed (View)." msgstr "" -#: gnu/packages/gnome.scm:2790 +#: gnu/packages/gnome.scm:2789 msgid "" "Getting Things GNOME! (GTG) is a personal tasks and TODO list items\n" "organizer for the GNOME desktop environment inspired by the Getting Things\n" @@ -6219,24 +6336,24 @@ msgid "" "know, from small tasks to large projects." msgstr "" -#: gnu/packages/gnome.scm:2829 +#: gnu/packages/gnome.scm:2828 msgid "" "To help with the transition to the Freedesktop Icon Naming\n" "Specification, the icon naming utility maps the icon names used by the\n" "GNOME and KDE desktops to the icon names proposed in the specification." msgstr "" -#: gnu/packages/gnome.scm:2858 +#: gnu/packages/gnome.scm:2857 msgid "Icons for the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:2897 +#: gnu/packages/gnome.scm:2896 msgid "" "This is an icon theme that follows the Tango visual\n" "guidelines." msgstr "" -#: gnu/packages/gnome.scm:2927 +#: gnu/packages/gnome.scm:2926 msgid "" "The shared-mime-info package contains the core database of common types\n" "and the update-mime-database command used to extend it. It requires glib2 to\n" @@ -6245,18 +6362,18 @@ msgid "" "database is translated at Transifex." msgstr "" -#: gnu/packages/gnome.scm:3012 +#: gnu/packages/gnome.scm:3011 msgid "" "system-config-printer is a CUPS administration tool. It's written in\n" "Python using GTK+, and uses the @acronym{IPP, Internet Printing Protocol} when\n" "configuring CUPS." msgstr "" -#: gnu/packages/gnome.scm:3036 +#: gnu/packages/gnome.scm:3035 msgid "Freedesktop icon theme." msgstr "" -#: gnu/packages/gnome.scm:3085 +#: gnu/packages/gnome.scm:3084 msgid "" "Libnotify is a library that sends desktop notifications to a\n" "notification daemon, as defined in the Desktop Notifications spec. These\n" @@ -6264,7 +6381,7 @@ msgid "" "some form of information without getting in the user's way." msgstr "" -#: gnu/packages/gnome.scm:3132 +#: gnu/packages/gnome.scm:3131 msgid "" "Libpeas is a gobject-based plugin engine, targeted at giving every\n" "application the chance to assume its own extensibility. It also has a set of\n" @@ -6273,21 +6390,21 @@ msgid "" "API." msgstr "" -#: gnu/packages/gnome.scm:3168 +#: gnu/packages/gnome.scm:3167 msgid "" "GtkGLExt is an OpenGL extension to GTK+. It provides\n" "additional GDK objects which support OpenGL rendering in GTK+ and GtkWidget\n" "API add-ons to make GTK+ widgets OpenGL-capable." msgstr "" -#: gnu/packages/gnome.scm:3248 +#: gnu/packages/gnome.scm:3247 msgid "" "Glade is a rapid application development (RAD) tool to\n" "enable quick & easy development of user interfaces for the GTK+ toolkit and\n" "the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:3280 +#: gnu/packages/gnome.scm:3279 msgid "" "Libcroco is a standalone CSS2 parsing and manipulation library.\n" "The parser provides a low level event driven SAC-like API and a CSS object\n" @@ -6295,13 +6412,13 @@ msgid "" "XML/CSS rendering engine." msgstr "" -#: gnu/packages/gnome.scm:3347 +#: gnu/packages/gnome.scm:3346 msgid "" "Libgsf aims to provide an efficient extensible I/O abstraction\n" "for dealing with different structured file formats." msgstr "" -#: gnu/packages/gnome.scm:3526 +#: gnu/packages/gnome.scm:3525 msgid "" "Librsvg is a library to render SVG images to Cairo surfaces.\n" "GNOME uses this to render SVG icons. Outside of GNOME, other desktop\n" @@ -6309,7 +6426,7 @@ msgid "" "diagrams." msgstr "" -#: gnu/packages/gnome.scm:3649 +#: gnu/packages/gnome.scm:3648 msgid "" "Libidl is a library for creating trees of CORBA Interface\n" "Definition Language (idl) files, which is a specification for defining\n" @@ -6318,82 +6435,82 @@ msgid "" "functionality was designed to be as reusable and portable as possible." msgstr "" -#: gnu/packages/gnome.scm:3704 +#: gnu/packages/gnome.scm:3703 msgid "" "ORBit2 is a CORBA 2.4-compliant Object Request Broker (orb)\n" "featuring mature C, C++ and Python bindings." msgstr "" -#: gnu/packages/gnome.scm:3758 +#: gnu/packages/gnome.scm:3757 msgid "" "Bonobo is a framework for creating reusable components for\n" "use in GNOME applications, built on top of CORBA." msgstr "" -#: gnu/packages/gnome.scm:3789 +#: gnu/packages/gnome.scm:3788 msgid "" "Gconf is a system for storing application preferences. It\n" "is intended for user preferences; not arbitrary data storage." msgstr "" -#: gnu/packages/gnome.scm:3823 +#: gnu/packages/gnome.scm:3822 msgid "" "GNOME Mime Data is a module which contains the base MIME\n" "and Application database for GNOME. The data stored by this module is\n" "designed to be accessed through the MIME functions in GnomeVFS." msgstr "" -#: gnu/packages/gnome.scm:3863 +#: gnu/packages/gnome.scm:3862 msgid "" "GnomeVFS is the core library used to access files and folders in GNOME\n" "applications. It provides a file system abstraction which allows applications\n" "to access local and remote files with a single consistent API." msgstr "" -#: gnu/packages/gnome.scm:3904 +#: gnu/packages/gnome.scm:3903 msgid "" "The libgnome library provides a number of useful routines\n" "for building modern applications, including session management, activation of\n" "files and URIs, and displaying help." msgstr "" -#: gnu/packages/gnome.scm:3928 +#: gnu/packages/gnome.scm:3927 msgid "" "Libart is a 2D drawing library intended as a\n" "high-quality vector-based 2D library with antialiasing and alpha composition." msgstr "" -#: gnu/packages/gnome.scm:3955 +#: gnu/packages/gnome.scm:3954 msgid "" "The GnomeCanvas widget provides a flexible widget for\n" "creating interactive structured graphics." msgstr "" -#: gnu/packages/gnome.scm:3977 +#: gnu/packages/gnome.scm:3976 msgid "C++ bindings to the GNOME Canvas library." msgstr "" -#: gnu/packages/gnome.scm:4003 +#: gnu/packages/gnome.scm:4002 msgid "" "The libgnomeui library provides additional widgets for\n" "applications. Many of the widgets from libgnomeui have already been\n" "ported to GTK+." msgstr "" -#: gnu/packages/gnome.scm:4029 +#: gnu/packages/gnome.scm:4028 msgid "" "Libglade is a library that provides interfaces for loading\n" "graphical interfaces described in glade files and for accessing the\n" "widgets built in the loading process." msgstr "" -#: gnu/packages/gnome.scm:4071 +#: gnu/packages/gnome.scm:4070 msgid "" "The Bonobo UI library provides a number of user interface\n" "controls using the Bonobo component framework." msgstr "" -#: gnu/packages/gnome.scm:4098 +#: gnu/packages/gnome.scm:4097 msgid "" "Libwnck is the Window Navigator Construction Kit, a library for use in\n" "writing pagers, tasklists, and more generally applications that are dealing\n" @@ -6401,11 +6518,11 @@ msgid "" "Hints specification (EWMH)." msgstr "" -#: gnu/packages/gnome.scm:4148 +#: gnu/packages/gnome.scm:4147 msgid "A GLib/GTK+ set of document-centric objects and utilities." msgstr "" -#: gnu/packages/gnome.scm:4234 +#: gnu/packages/gnome.scm:4233 msgid "" "GNUmeric is a GNU spreadsheet application, running under GNOME. It is\n" "interoperable with other spreadsheet applications. It has a vast array of\n" @@ -6414,11 +6531,11 @@ msgid "" "engineering." msgstr "" -#: gnu/packages/gnome.scm:4290 +#: gnu/packages/gnome.scm:4289 msgid "Drawing is a basic image editor aiming at the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:4326 +#: gnu/packages/gnome.scm:4325 msgid "The default GNOME 3 themes (Adwaita and some accessibility themes)." msgstr "" @@ -6437,7 +6554,7 @@ msgid "" "targeting the GNOME stack simple." msgstr "" -#: gnu/packages/gnome.scm:4481 +#: gnu/packages/gnome.scm:4482 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, and a minimal sample application (vte) using that. Vte is mainly used in\n" @@ -6445,34 +6562,34 @@ msgid "" "editors, IDEs, etc." msgstr "" -#: gnu/packages/gnome.scm:4505 +#: gnu/packages/gnome.scm:4506 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, this fork provides additional functions exposed for keyboard text\n" "selection and URL hints." msgstr "" -#: gnu/packages/gnome.scm:4585 +#: gnu/packages/gnome.scm:4586 msgid "" "Vinagre is a remote display client supporting the VNC, SPICE\n" "and RDP protocols." msgstr "" -#: gnu/packages/gnome.scm:4631 +#: gnu/packages/gnome.scm:4633 msgid "" "Dconf is a low-level configuration system. Its main purpose\n" "is to provide a backend to GSettings on platforms that don't already have\n" "configuration storage systems." msgstr "" -#: gnu/packages/gnome.scm:4661 +#: gnu/packages/gnome.scm:4663 msgid "" "JSON-GLib is a library providing serialization and\n" "described by RFC 4627. It implements a full JSON parser and generator using\n" "GLib and GObject, and integrates JSON with GLib data types." msgstr "" -#: gnu/packages/gnome.scm:4760 +#: gnu/packages/gnome.scm:4762 msgid "" "LibXklavier is a library providing high-level API for X Keyboard\n" "Extension known as XKB. This library is intended to support XFree86 and other\n" @@ -6480,7 +6597,7 @@ msgid "" "indicators etc)." msgstr "" -#: gnu/packages/gnome.scm:4788 +#: gnu/packages/gnome.scm:4790 #, fuzzy msgid "" "This package provides Python bindings to librsvg, the SVG rendering\n" @@ -6489,7 +6606,7 @@ msgstr "" "Ez a csomag egy szótárat biztosít a Hunspell helyesírás-ellenőrző\n" "programkönyvtárhoz." -#: gnu/packages/gnome.scm:4829 +#: gnu/packages/gnome.scm:4831 msgid "" "Glib-networking contains the implementations of certain GLib networking\n" "features that cannot be implemented directly in GLib itself because of their\n" @@ -6499,26 +6616,26 @@ msgid "" "from the GSettings schemas in gsettings-desktop-schemas." msgstr "" -#: gnu/packages/gnome.scm:4866 +#: gnu/packages/gnome.scm:4868 msgid "" "This library was designed to make it easier to access web services that\n" "claim to be \"RESTful\". It includes convenience wrappers for libsoup and\n" "libxml to ease remote use of the RESTful API." msgstr "" -#: gnu/packages/gnome.scm:4931 +#: gnu/packages/gnome.scm:4933 msgid "" "LibSoup is an HTTP client/server library for GNOME. It uses GObjects\n" "and the GLib main loop, to integrate well with GNOME applications." msgstr "" -#: gnu/packages/gnome.scm:5035 +#: gnu/packages/gnome.scm:5037 msgid "" "Libsecret is a GObject based library for storing and retrieving passwords\n" "and other secrets. It communicates with the \"Secret Service\" using DBus." msgstr "" -#: gnu/packages/gnome.scm:5074 +#: gnu/packages/gnome.scm:5076 msgid "" "Five or More is a game where you try to align\n" " five or more objects of the same color and shape causing them to disappear.\n" @@ -6526,19 +6643,19 @@ msgid "" " Try to last as long as possible." msgstr "" -#: gnu/packages/gnome.scm:5116 +#: gnu/packages/gnome.scm:5118 msgid "" "Mines (previously gnomine) is a puzzle game where you locate mines\n" "floating in an ocean using only your brain and a little bit of luck." msgstr "" -#: gnu/packages/gnome.scm:5157 +#: gnu/packages/gnome.scm:5159 msgid "" "MultiWriter can be used to write an ISO file to multiple USB devices at\n" "once." msgstr "" -#: gnu/packages/gnome.scm:5197 +#: gnu/packages/gnome.scm:5198 msgid "" "Sudoku is a Japanese logic game that exploded in popularity in 2005.\n" "GNOME Sudoku is meant to have an interface as simple and unobstrusive as\n" @@ -6546,7 +6663,7 @@ msgid "" "more fun." msgstr "" -#: gnu/packages/gnome.scm:5247 +#: gnu/packages/gnome.scm:5248 msgid "" "GNOME Terminal is a terminal emulator application for accessing a\n" "UNIX shell environment which can be used to run programs available on\n" @@ -6556,14 +6673,14 @@ msgid "" "keyboard shortcuts." msgstr "" -#: gnu/packages/gnome.scm:5319 +#: gnu/packages/gnome.scm:5320 msgid "" "Colord is a system service that makes it easy to manage,\n" "install and generate color profiles to accurately color manage input and\n" "output devices." msgstr "" -#: gnu/packages/gnome.scm:5390 +#: gnu/packages/gnome.scm:5391 msgid "" "Geoclue is a D-Bus service that provides location\n" "information. The primary goal of the Geoclue project is to make creating\n" @@ -6572,7 +6689,7 @@ msgid "" "permission from user." msgstr "" -#: gnu/packages/gnome.scm:5434 +#: gnu/packages/gnome.scm:5435 msgid "" "geocode-glib is a convenience library for geocoding (finding longitude,\n" "and latitude from an address) and reverse geocoding (finding an address from\n" @@ -6580,7 +6697,7 @@ msgid "" "faster results and to avoid unnecessary server load." msgstr "" -#: gnu/packages/gnome.scm:5510 +#: gnu/packages/gnome.scm:5511 msgid "" "UPower is an abstraction for enumerating power devices,\n" "listening to device events and querying history and statistics. Any\n" @@ -6588,13 +6705,13 @@ msgid "" "service via the system message bus." msgstr "" -#: gnu/packages/gnome.scm:5555 +#: gnu/packages/gnome.scm:5557 msgid "" "libgweather is a library to access weather information from online\n" "services for numerous locations." msgstr "" -#: gnu/packages/gnome.scm:5639 +#: gnu/packages/gnome.scm:5640 msgid "" "This package contains the daemon responsible for setting the various\n" "parameters of a GNOME session and the applications that run under it. It\n" @@ -6602,19 +6719,19 @@ msgid "" "settings, themes, mouse settings, and startup of other daemons." msgstr "" -#: gnu/packages/gnome.scm:5670 +#: gnu/packages/gnome.scm:5671 msgid "" "Totem-pl-parser is a GObjects-based library to parse and save\n" "playlists in a variety of formats." msgstr "" -#: gnu/packages/gnome.scm:5703 +#: gnu/packages/gnome.scm:5704 msgid "" "Aisleriot (also known as Solitaire or sol) is a collection of card games\n" "which are easy to play with the aid of a mouse." msgstr "" -#: gnu/packages/gnome.scm:5729 +#: gnu/packages/gnome.scm:5730 msgid "" "Amtk is the acronym for @acronym{Amtk, Actions Menus and Toolbars Kit}.\n" "It is a basic GtkUIManager replacement based on GAction. It is suitable for\n" @@ -6693,13 +6810,13 @@ msgid "" "discovery protocols." msgstr "" -#: gnu/packages/gnome.scm:6324 +#: gnu/packages/gnome.scm:6323 msgid "" "Totem is a simple yet featureful media player for GNOME\n" "which can read a large number of file formats." msgstr "" -#: gnu/packages/gnome.scm:6415 +#: gnu/packages/gnome.scm:6414 msgid "" "Rhythmbox is a music playing application for GNOME. It\n" "supports playlists, song ratings, and any codecs installed through gstreamer." @@ -6730,7 +6847,7 @@ msgid "" "part of udev-extras, then udev, then systemd. It's now a project on its own." msgstr "" -#: gnu/packages/gnome.scm:6611 +#: gnu/packages/gnome.scm:6610 msgid "" "GVFS is a userspace virtual file system designed to work with the I/O\n" "abstraction of GIO. It contains a GIO module that seamlessly adds GVFS\n" @@ -6741,7 +6858,7 @@ msgid "" "DAV, and others." msgstr "" -#: gnu/packages/gnome.scm:6652 +#: gnu/packages/gnome.scm:6651 msgid "" "GUsb is a GObject wrapper for libusb1 that makes it easy to do\n" "asynchronous control, bulk and interrupt transfers with proper cancellation\n" @@ -6749,7 +6866,7 @@ msgid "" "USB transfers with your high-level application or system daemon." msgstr "" -#: gnu/packages/gnome.scm:6706 +#: gnu/packages/gnome.scm:6705 msgid "" "Document Scanner is an easy-to-use application that lets you connect your\n" "scanner and quickly capture images and documents in an appropriate format. It\n" @@ -6757,25 +6874,25 @@ msgid "" "almost all of them." msgstr "" -#: gnu/packages/gnome.scm:6778 +#: gnu/packages/gnome.scm:6777 msgid "" "Eolie is a new web browser for GNOME. It features Firefox sync support,\n" "a secret password store, an adblocker, and a modern UI." msgstr "" -#: gnu/packages/gnome.scm:6855 +#: gnu/packages/gnome.scm:6854 msgid "" "Epiphany is a GNOME web browser targeted at non-technical users. Its\n" "principles are simplicity and standards compliance." msgstr "" -#: gnu/packages/gnome.scm:6914 +#: gnu/packages/gnome.scm:6913 msgid "" "D-Feet is a D-Bus debugger, which can be used to inspect D-Bus interfaces\n" "of running programs and invoke methods on those interfaces." msgstr "" -#: gnu/packages/gnome.scm:6944 +#: gnu/packages/gnome.scm:6943 msgid "" "Yelp-XSL is a collection of programs and data files to help\n" "you build, maintain, and distribute documentation. It provides XSLT stylesheets\n" @@ -6785,14 +6902,14 @@ msgid "" "jQuery.Syntax JavaScript libraries." msgstr "" -#: gnu/packages/gnome.scm:6983 +#: gnu/packages/gnome.scm:6982 msgid "" "Yelp is the help viewer in Gnome. It natively views Mallard, DocBook,\n" "man, info, and HTML documents. It can locate documents according to the\n" "freedesktop.org help system specification." msgstr "" -#: gnu/packages/gnome.scm:7013 +#: gnu/packages/gnome.scm:7012 msgid "" "Yelp-tools is a collection of scripts and build utilities to help create,\n" "manage, and publish documentation for Yelp and the web. Most of the heavy\n" @@ -6800,13 +6917,13 @@ msgid "" "wraps things up in a developer-friendly way." msgstr "" -#: gnu/packages/gnome.scm:7051 +#: gnu/packages/gnome.scm:7050 msgid "" "Libgee is a utility library providing GObject-based interfaces and\n" "classes for commonly used data structures." msgstr "" -#: gnu/packages/gnome.scm:7079 +#: gnu/packages/gnome.scm:7078 msgid "" "Gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. It\n" "allows for GNOME applications to easily inspect and update EXIF, IPTC, and XMP\n" @@ -6821,7 +6938,7 @@ msgid "" "share them with others via social networking and more." msgstr "" -#: gnu/packages/gnome.scm:7168 +#: gnu/packages/gnome.scm:7169 msgid "" "File Roller is an archive manager for the GNOME desktop\n" "environment that allows users to view, unpack, and create compressed archives\n" @@ -6834,13 +6951,13 @@ msgid "" "configuration program to choose applications starting on login." msgstr "" -#: gnu/packages/gnome.scm:7284 +#: gnu/packages/gnome.scm:7287 msgid "" "Gjs is a javascript binding for GNOME. It's mainly based on spidermonkey\n" "javascript engine and the GObject introspection framework." msgstr "" -#: gnu/packages/gnome.scm:7381 +#: gnu/packages/gnome.scm:7383 msgid "" "While aiming at simplicity and ease of use, gedit is a\n" "powerful general purpose text editor." @@ -6848,13 +6965,13 @@ msgstr "" "Noha az egyszerűségre és egyszerű felhasználhatóságra törekszik, a gedit\n" "egy hatékony általános célú szövegszerkesztő." -#: gnu/packages/gnome.scm:7405 +#: gnu/packages/gnome.scm:7407 msgid "" "Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you\n" "to display dialog boxes from the commandline and shell scripts." msgstr "" -#: gnu/packages/gnome.scm:7595 +#: gnu/packages/gnome.scm:7598 msgid "" "Mutter is a window and compositing manager that displays and manages your\n" "desktop via OpenGL. Mutter combines a sophisticated display engine using the\n" @@ -6862,7 +6979,7 @@ msgid "" "window manager." msgstr "" -#: gnu/packages/gnome.scm:7653 +#: gnu/packages/gnome.scm:7656 msgid "" "GNOME Online Accounts provides interfaces so that applications and\n" "libraries in GNOME can access the user's online accounts. It has providers\n" @@ -6870,20 +6987,20 @@ msgid "" "Microsoft Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos." msgstr "" -#: gnu/packages/gnome.scm:7740 +#: gnu/packages/gnome.scm:7743 msgid "" "This package provides a unified backend for programs that work with\n" "contacts, tasks, and calendar information. It was originally developed for\n" "Evolution (hence the name), but is now used by other packages as well." msgstr "" -#: gnu/packages/gnome.scm:7803 +#: gnu/packages/gnome.scm:7806 msgid "" "Caribou is an input assistive technology intended for switch and pointer\n" "users." msgstr "" -#: gnu/packages/gnome.scm:7953 +#: gnu/packages/gnome.scm:7958 msgid "" "NetworkManager is a system network service that manages your network\n" "devices and connections, attempting to keep active network connectivity when\n" @@ -6892,36 +7009,36 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:8009 +#: gnu/packages/gnome.scm:8014 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to virtual private networks (VPNs) via OpenVPN." msgstr "" -#: gnu/packages/gnome.scm:8059 +#: gnu/packages/gnome.scm:8064 msgid "" "Support for configuring virtual private networks based on VPNC.\n" "Compatible with Cisco VPN concentrators configured to use IPsec." msgstr "" -#: gnu/packages/gnome.scm:8106 +#: gnu/packages/gnome.scm:8111 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to @acronym{VPNs, virtual private networks} via OpenConnect, an open client for\n" "Cisco's AnyConnect SSL VPN." msgstr "" -#: gnu/packages/gnome.scm:8135 +#: gnu/packages/gnome.scm:8140 msgid "Database of broadband connection configuration." msgstr "" -#: gnu/packages/gnome.scm:8179 +#: gnu/packages/gnome.scm:8183 msgid "" "This package contains a systray applet for NetworkManager. It displays\n" "the available networks and allows users to easily switch between them." msgstr "" -#: gnu/packages/gnome.scm:8234 +#: gnu/packages/gnome.scm:8238 #, fuzzy #| msgid "" #| "This package provides a C++ wrapper for the XML parser library\n" @@ -6933,25 +7050,25 @@ msgstr "" "Ez a csomag egy C++ csomagolót biztosít a libxml2 XML-feldolgozó\n" "programkönyvtárhoz." -#: gnu/packages/gnome.scm:8466 +#: gnu/packages/gnome.scm:8470 msgid "" "GNOME Display Manager is a system service that is responsible for\n" "providing graphical log-ins and managing local and remote displays." msgstr "" -#: gnu/packages/gnome.scm:8490 +#: gnu/packages/gnome.scm:8494 msgid "" "LibGTop is a library to get system specific data such as CPU and memory\n" "usage and information about running processes." msgstr "" -#: gnu/packages/gnome.scm:8525 +#: gnu/packages/gnome.scm:8528 msgid "" "This package contains tools for managing and manipulating Bluetooth\n" "devices using the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:8636 +#: gnu/packages/gnome.scm:8646 msgid "" "This package contains configuration applets for the GNOME desktop,\n" "allowing to set accessibility configuration, desktop fonts, keyboard and mouse\n" @@ -6959,13 +7076,13 @@ msgid "" "properties, screen resolution, and other GNOME parameters." msgstr "" -#: gnu/packages/gnome.scm:8802 +#: gnu/packages/gnome.scm:8811 msgid "" "GNOME Shell provides core user interface functions for the GNOME desktop,\n" "like switching to windows and launching applications." msgstr "" -#: gnu/packages/gnome.scm:8845 +#: gnu/packages/gnome.scm:8858 msgid "" "GTK-VNC is a project providing client side APIs for the RFB\n" "protocol / VNC remote desktop technology. It is built using coroutines allowing\n" @@ -6973,13 +7090,13 @@ msgid "" "core C library, and bindings for Python (PyGTK)." msgstr "" -#: gnu/packages/gnome.scm:8875 +#: gnu/packages/gnome.scm:8888 msgid "" "GNOME Autoar is a library which makes creating and extracting archives\n" "easy, safe, and automatic." msgstr "" -#: gnu/packages/gnome.scm:8945 +#: gnu/packages/gnome.scm:8959 msgid "" "Tracker is a search engine and triplestore for desktop, embedded and mobile.\n" "\n" @@ -7002,21 +7119,21 @@ msgid "" "endpoint and it understands SPARQL." msgstr "" -#: gnu/packages/gnome.scm:9074 +#: gnu/packages/gnome.scm:9088 msgid "" "Tracker is an advanced framework for first class objects with associated\n" "metadata and tags. It provides a one stop solution for all metadata, tags,\n" "shared object databases, search tools and indexing." msgstr "" -#: gnu/packages/gnome.scm:9167 +#: gnu/packages/gnome.scm:9185 msgid "" "Nautilus (Files) is a file manager designed to fit the GNOME desktop\n" "design and behaviour, giving the user a simple way to navigate and manage its\n" "files." msgstr "" -#: gnu/packages/gnome.scm:9201 +#: gnu/packages/gnome.scm:9220 msgid "" "Baobab (Disk Usage Analyzer) is a graphical application to analyse disk\n" "usage in the GNOME desktop environment. It can easily scan device volumes or\n" @@ -7024,7 +7141,7 @@ msgid "" "is complete it provides a graphical representation of each selected folder." msgstr "" -#: gnu/packages/gnome.scm:9227 +#: gnu/packages/gnome.scm:9245 msgid "" "GNOME backgrounds package contains a collection of graphics files which\n" "can be used as backgrounds in the GNOME Desktop environment. Additionally,\n" @@ -7032,21 +7149,21 @@ msgid "" "can add your own files to the collection." msgstr "" -#: gnu/packages/gnome.scm:9272 +#: gnu/packages/gnome.scm:9290 msgid "" "GNOME Screenshot is a utility used for taking screenshots of the entire\n" "screen, a window or a user defined area of the screen, with optional\n" "beautifying border effects." msgstr "" -#: gnu/packages/gnome.scm:9304 +#: gnu/packages/gnome.scm:9320 msgid "" "Dconf-editor is a graphical tool for browsing and editing the dconf\n" "configuration system for GNOME. It allows users to configure desktop\n" "software that do not provide their own configuration interface." msgstr "" -#: gnu/packages/gnome.scm:9334 +#: gnu/packages/gnome.scm:9350 msgid "" "Given many installed packages which might handle a given MIME type, a\n" "user running the GNOME desktop probably has some preferences: for example,\n" @@ -7055,32 +7172,32 @@ msgid "" "associations for GNOME." msgstr "" -#: gnu/packages/gnome.scm:9366 +#: gnu/packages/gnome.scm:9382 msgid "GoVirt is a GObject wrapper for the oVirt REST API." msgstr "" -#: gnu/packages/gnome.scm:9424 +#: gnu/packages/gnome.scm:9439 msgid "" "GNOME Weather is a small application that allows you to\n" "monitor the current weather conditions for your city, or anywhere in the\n" "world." msgstr "" -#: gnu/packages/gnome.scm:9528 +#: gnu/packages/gnome.scm:9543 msgid "" "GNOME is the graphical desktop for GNU. It includes a wide variety of\n" "applications for browsing the web, editing text and images, creating\n" "documents and diagrams, playing media, scanning, and much more." msgstr "" -#: gnu/packages/gnome.scm:9574 +#: gnu/packages/gnome.scm:9589 msgid "" "Byzanz is a simple desktop recording program with a\n" "command-line interface. It can record part or all of an X display for a\n" "specified duration and save it as a GIF encoded animated image file." msgstr "" -#: gnu/packages/gnome.scm:9634 +#: gnu/packages/gnome.scm:9651 msgid "" "Authenticator is a two-factor authentication (2FA) application built for\n" "the GNOME desktop environment.\n" @@ -7097,44 +7214,44 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/gnome.scm:9669 +#: gnu/packages/gnome.scm:9686 msgid "" "GSound is a small library for playing system sounds. It's designed to be\n" "used via GObject Introspection, and is a thin wrapper around the libcanberra C\n" "library." msgstr "" -#: gnu/packages/gnome.scm:9694 +#: gnu/packages/gnome.scm:9711 msgid "" "Libzapojit is a GLib-based library for accessing online service APIs of\n" "Microsoft SkyDrive and Hotmail, using their REST protocols." msgstr "" -#: gnu/packages/gnome.scm:9739 +#: gnu/packages/gnome.scm:9756 msgid "" "GNOME Clocks is a simple clocks application designed to fit the GNOME\n" "desktop. It supports world clock, stop watch, alarms, and count down timer." msgstr "" -#: gnu/packages/gnome.scm:9787 +#: gnu/packages/gnome.scm:9803 msgid "" "GNOME Calendar is a simple calendar application designed to fit the GNOME\n" "desktop. It supports multiple calendars, month, week and year view." msgstr "" -#: gnu/packages/gnome.scm:9838 +#: gnu/packages/gnome.scm:9860 msgid "" -"GNOME To Do is a simplistic personal task manager designed to perfectly\n" -"fit the GNOME desktop." +"GNOME To Do is a simplistic personal task manager designed\n" +"to perfectly fit the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:9877 +#: gnu/packages/gnome.scm:9899 msgid "" "GNOME Dictionary can look for the definition or translation of a word in\n" "existing databases over the internet." msgstr "" -#: gnu/packages/gnome.scm:9943 +#: gnu/packages/gnome.scm:9964 msgid "" "GNOME Tweaks allows adjusting advanced configuration settings in\n" "GNOME 3. This includes things like the fonts used in user interface elements,\n" @@ -7142,13 +7259,13 @@ msgid "" "GNOME Shell appearance and extension, etc." msgstr "" -#: gnu/packages/gnome.scm:9971 +#: gnu/packages/gnome.scm:9992 msgid "" "GNOME Shell extensions modify and extend GNOME Shell\n" "functionality and behavior." msgstr "" -#: gnu/packages/gnome.scm:10015 +#: gnu/packages/gnome.scm:10036 msgid "" "Libfolks is a library that aggregates information about people\n" "from multiple sources (e.g., Telepathy connection managers for IM contacts,\n" @@ -7157,19 +7274,19 @@ msgid "" "compiled." msgstr "" -#: gnu/packages/gnome.scm:10056 +#: gnu/packages/gnome.scm:10077 msgid "" "This library allows you to use the Facebook API from\n" "GLib/GObject code." msgstr "" -#: gnu/packages/gnome.scm:10083 +#: gnu/packages/gnome.scm:10104 msgid "" "Libgnomekbd is a keyboard configuration library for the GNOME desktop\n" "environment, which can notably display keyboard layouts." msgstr "" -#: gnu/packages/gnome.scm:10119 +#: gnu/packages/gnome.scm:10140 msgid "" "Libunique is a library for writing single instance applications. If you\n" "launch a single instance application twice, the second instance will either just\n" @@ -7179,20 +7296,20 @@ msgid "" "handling the startup notification side." msgstr "" -#: gnu/packages/gnome.scm:10168 +#: gnu/packages/gnome.scm:10190 msgid "" "Calculator is an application that solves mathematical equations and\n" "is suitable as a default application in a Desktop environment." msgstr "" -#: gnu/packages/gnome.scm:10194 +#: gnu/packages/gnome.scm:10216 msgid "" "Xpad is a sticky note that strives to be simple, fault tolerant,\n" "and customizable. Xpad consists of independent pad windows, each is\n" "basically a text box in which notes can be written." msgstr "" -#: gnu/packages/gnome.scm:10267 +#: gnu/packages/gnome.scm:10289 msgid "" "This program allows you to browse through all the available Unicode\n" "characters and categories for the installed fonts, and to examine their\n" @@ -7200,20 +7317,20 @@ msgid "" "only know by its Unicode name or code point." msgstr "" -#: gnu/packages/gnome.scm:10299 +#: gnu/packages/gnome.scm:10321 msgid "" "Color Picker is a simple color chooser written in GTK3. It\n" "supports both X and Wayland display servers." msgstr "" -#: gnu/packages/gnome.scm:10322 +#: gnu/packages/gnome.scm:10344 msgid "" "Bluefish is an editor aimed at programmers and web developers,\n" "with many options to write web sites, scripts and other code.\n" "Bluefish supports many programming and markup languages." msgstr "" -#: gnu/packages/gnome.scm:10363 +#: gnu/packages/gnome.scm:10385 msgid "" "GNOME System Monitor is a GNOME process viewer and system monitor with\n" "an attractive, easy-to-use interface. It has features, such as a tree view\n" @@ -7222,27 +7339,27 @@ msgid "" "kill/reinice processes." msgstr "" -#: gnu/packages/gnome.scm:10405 +#: gnu/packages/gnome.scm:10427 msgid "" "This package includes a python client library for the AT-SPI D-Bus\n" "accessibility infrastructure." msgstr "" -#: gnu/packages/gnome.scm:10475 +#: gnu/packages/gnome.scm:10495 msgid "" "Orca is a screen reader that provides access to the graphical desktop\n" "via speech and refreshable braille. Orca works with applications and toolkits\n" "that support the Assistive Technology Service Provider Interface (AT-SPI)." msgstr "" -#: gnu/packages/gnome.scm:10529 +#: gnu/packages/gnome.scm:10549 msgid "" "gspell provides a flexible API to add spell-checking to a GTK+\n" "application. It provides a GObject API, spell-checking to text entries and\n" "text views, and buttons to choose the language." msgstr "" -#: gnu/packages/gnome.scm:10571 +#: gnu/packages/gnome.scm:10591 msgid "" "GNOME Planner is a project management tool based on the Work Breakdown\n" "Structure (WBS). Its goal is to enable you to easily plan projects. Based on\n" @@ -7254,7 +7371,7 @@ msgid "" "views can be printed as PDF or PostScript files, or exported to HTML." msgstr "" -#: gnu/packages/gnome.scm:10644 +#: gnu/packages/gnome.scm:10664 msgid "" "Lollypop is a music player designed to play well with GNOME desktop.\n" "Lollypop plays audio formats such as mp3, mp4, ogg and flac and gets information\n" @@ -7262,13 +7379,13 @@ msgid "" "automatically and it can stream songs from online music services and charts." msgstr "" -#: gnu/packages/gnome.scm:10668 +#: gnu/packages/gnome.scm:10688 msgid "" "A collection of GStreamer video filters and effects to be used in\n" "photo-booth-like software, such as Cheese." msgstr "" -#: gnu/packages/gnome.scm:10747 +#: gnu/packages/gnome.scm:10766 msgid "" "Cheese uses your webcam to take photos and videos. Cheese can also\n" "apply fancy special effects and lets you share the fun with others." @@ -7277,14 +7394,14 @@ msgstr "" "használható jó kinézetű, különleges hatások alkalmazásához is, és lehetővé\n" "teszi a vicces képek megosztását másokkal." -#: gnu/packages/gnome.scm:10801 +#: gnu/packages/gnome.scm:10820 msgid "" "Password Safe is a password manager which makes use of the KeePass v4\n" "format. It integrates perfectly with the GNOME desktop and provides an easy\n" "and uncluttered interface for the management of password databases." msgstr "" -#: gnu/packages/gnome.scm:10836 +#: gnu/packages/gnome.scm:10855 msgid "" "Sound Juicer extracts audio from compact discs and convert it\n" "into audio files that a personal computer or digital audio player can play.\n" @@ -7292,27 +7409,27 @@ msgid "" "mp3, Ogg Vorbis and FLAC" msgstr "" -#: gnu/packages/gnome.scm:10888 +#: gnu/packages/gnome.scm:10907 msgid "" "SoundConverter supports converting between many audio formats including\n" "Opus, Ogg Vorbis, FLAC and more. It supports parallel conversion, and\n" "configurable file renaming." msgstr "" -#: gnu/packages/gnome.scm:10936 +#: gnu/packages/gnome.scm:10955 msgid "" "Workrave is a program that assists in the recovery and prevention of\n" "repetitive strain injury (@dfn{RSI}). The program frequently alerts you to take\n" "micro-pauses and rest breaks, and restricts you to your daily limit." msgstr "" -#: gnu/packages/gnome.scm:10977 +#: gnu/packages/gnome.scm:10996 msgid "" "The GHex program can view and edit files in two ways:\n" "hexadecimal or ASCII. It is useful for editing binary files in general." msgstr "" -#: gnu/packages/gnome.scm:11013 +#: gnu/packages/gnome.scm:11032 msgid "" "The libdazzle library is a companion library to GObject and\n" "Gtk+. It provides various features that the authors wish were in the\n" @@ -7321,40 +7438,40 @@ msgid "" "generic enough to work for everyone." msgstr "" -#: gnu/packages/gnome.scm:11080 +#: gnu/packages/gnome.scm:11099 msgid "" "Evolution is a personal information management application\n" "that provides integrated mail, calendaring and address book\n" "functionality." msgstr "" -#: gnu/packages/gnome.scm:11140 +#: gnu/packages/gnome.scm:11154 msgid "" "GThumb is an image viewer, browser, organizer, editor and\n" "advanced image management tool" msgstr "" -#: gnu/packages/gnome.scm:11213 +#: gnu/packages/gnome.scm:11227 msgid "" "Terminator allows you to run multiple GNOME terminals in a grid and\n" "tabs, and it supports drag and drop re-ordering of terminals." msgstr "" -#: gnu/packages/gnome.scm:11274 +#: gnu/packages/gnome.scm:11288 msgid "" "The aim of the handy library is to help with developing user\n" "interfaces for mobile devices using GTK+. It provides responsive GTK+ widgets\n" "for usage on small and big screens." msgstr "" -#: gnu/packages/gnome.scm:11323 +#: gnu/packages/gnome.scm:11337 msgid "" "libgit2-glib is a GLib wrapper library around the libgit2 Git\n" "access library. It only implements the core plumbing functions, not really the\n" "higher level porcelain stuff." msgstr "" -#: gnu/packages/gnome.scm:11402 +#: gnu/packages/gnome.scm:11415 msgid "" "gitg is a graphical user interface for git. It aims at being a small,\n" "fast and convenient tool to visualize the history of git repositories.\n" @@ -7362,21 +7479,21 @@ msgid "" "repository and commit your work." msgstr "" -#: gnu/packages/gnome.scm:11474 +#: gnu/packages/gnome.scm:11487 msgid "" "Gamin is a file and directory monitoring system defined to be a subset\n" "of the FAM (File Alteration Monitor) system. This is a service provided by a\n" "library which detects when a file or a directory has been modified." msgstr "" -#: gnu/packages/gnome.scm:11508 +#: gnu/packages/gnome.scm:11521 msgid "" "GNOME Mahjongg is a game based on the classic Chinese\n" -"tile-matching game Mahjong. It features multiple board layouts, tile themes,\n" +"tile-matching game Mahjongg. It features multiple board layouts, tile themes,\n" "and a high score table." msgstr "" -#: gnu/packages/gnome.scm:11546 +#: gnu/packages/gnome.scm:11559 msgid "" "This package provides themes and related elements that don't\n" "really fit in other upstream packages. It offers legacy support for GTK+ 2\n" @@ -7384,19 +7501,19 @@ msgid "" "index files needed for Adwaita to be used outside of GNOME." msgstr "" -#: gnu/packages/gnome.scm:11585 +#: gnu/packages/gnome.scm:11605 msgid "" -"Gnote is a note-taking application written for the GNOME desktop\n" -"environment." +"Gnote is a note-taking application written for the GNOME\n" +"desktop environment." msgstr "" -#: gnu/packages/gnome.scm:11647 +#: gnu/packages/gnome.scm:11664 msgid "" "Polari is a simple Internet Relay Chat (IRC) client that is designed to\n" "integrate seamlessly with the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:11706 +#: gnu/packages/gnome.scm:11723 msgid "" "GNOME Boxes is a simple application to view, access, and\n" "manage remote and virtual systems. Note that this application requires the\n" @@ -7405,7 +7522,7 @@ msgid "" "these services on the Guix System." msgstr "" -#: gnu/packages/gnome.scm:11806 +#: gnu/packages/gnome.scm:11823 msgid "" "Geary collects related messages together into conversations,\n" "making it easy to find and follow your discussions. Full-text and keyword\n" @@ -7417,14 +7534,14 @@ msgid "" "to." msgstr "" -#: gnu/packages/gnome.scm:11851 +#: gnu/packages/gnome.scm:11868 msgid "" "gLabels is a program for creating labels and business cards. It is\n" "designed to work with various laser/ink-jet peel-off label and business\n" "card sheets that you’ll find at most office supply stores." msgstr "" -#: gnu/packages/gnome.scm:11892 +#: gnu/packages/gnome.scm:11909 msgid "" "GNOME LaTeX is a LaTeX editor for the GNOME desktop. It has features\n" "such as build tools, completion of LaTeX commands, structure navigation,\n" @@ -7432,19 +7549,19 @@ msgid "" "and toolbars." msgstr "" -#: gnu/packages/gnome.scm:11951 +#: gnu/packages/gnome.scm:11968 msgid "" "Setzer is a simple yet full-featured LaTeX editor written in Python with\n" "GTK+. It integrates well with the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:12017 +#: gnu/packages/gnome.scm:12034 msgid "" "Apostrophe is a GTK+ based distraction-free Markdown editor.\n" "It uses pandoc as back-end for parsing Markdown." msgstr "" -#: gnu/packages/gnome.scm:12070 +#: gnu/packages/gnome.scm:12088 msgid "" "libratbag provides @command{ratbagd}, a DBus daemon to\n" "configure input devices, mainly gaming mice. The daemon provides a generic\n" @@ -7461,7 +7578,7 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12140 +#: gnu/packages/gnome.scm:12156 msgid "" "Piper is a GTK+ application for configuring gaming mice with\n" "onboard configuration for key bindings via libratbag. Piper requires\n" @@ -7473,14 +7590,14 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12202 +#: gnu/packages/gnome.scm:12218 msgid "" "Parlatype is an audio player for the GNOME desktop\n" "environment. Its main purpose is the manual transcription of spoken\n" "audio files." msgstr "" -#: gnu/packages/gnome.scm:12228 +#: gnu/packages/gnome.scm:12244 msgid "" "Jsonrpc-GLib is a library to communicate with JSON-RPC based\n" "peers in either a synchronous or asynchronous fashion. It also allows\n" @@ -7489,14 +7606,14 @@ msgid "" "host to avoid parser overhead and memory-allocator fragmentation." msgstr "" -#: gnu/packages/gnome.scm:12256 +#: gnu/packages/gnome.scm:12272 msgid "" "Feedbackd provides a DBus daemon to act on events to provide\n" "haptic, visual and audio feedback. It offers the libfeedbackd library and\n" "GObject introspection bindings." msgstr "" -#: gnu/packages/gnome.scm:12305 +#: gnu/packages/gnome.scm:12321 msgid "" "Sysprof performs detailed, accurate, and fast CPU profiling of an entire\n" "GNU/Linux system including the kernel and all user-space applications. This\n" @@ -7506,21 +7623,21 @@ msgid "" "libraries. Applications do not need to be recompiled--or even restarted." msgstr "" -#: gnu/packages/gnome.scm:12388 +#: gnu/packages/gnome.scm:12406 msgid "" -"Builder aims to be an integrated development\n" -"environment (IDE) for writing GNOME-based software. It features fuzzy search,\n" -"auto-completion, a mini code map, documentation browsing, Git integration, an\n" -"integrated profiler via Sysprof, debugging support, and more." +"Builder aims to be an integrated development environment (IDE) for\n" +"writing GNOME-based software. It features fuzzy search, auto-completion,\n" +"a mini code map, documentation browsing, Git integration, an integrated\n" +"profiler via Sysprof, debugging support, and more." msgstr "" -#: gnu/packages/gnome.scm:12461 +#: gnu/packages/gnome.scm:12480 msgid "" "Komikku is an online/offline manga reader for GNOME,\n" "developed with the aim of being used with the Librem 5 phone." msgstr "" -#: gnu/packages/gnome.scm:12545 +#: gnu/packages/gnome.scm:12564 msgid "" "GNU Data Access (GDA) is an attempt to provide uniform access to\n" "different kinds of data sources (databases, information servers, mail spools,\n" @@ -7528,7 +7645,7 @@ msgid "" "your data." msgstr "" -#: gnu/packages/gnome.scm:12596 +#: gnu/packages/gnome.scm:12614 msgid "" "gtranslator is a quite comfortable gettext po/po.gz/(g)mo files editor\n" "for the GNOME 3.x platform with many features. It aims to be a very complete\n" @@ -7536,32 +7653,39 @@ msgid "" "world." msgstr "" -#: gnu/packages/gnome.scm:12662 +#: gnu/packages/gnome.scm:12680 msgid "" "OCRFeeder is a complete Optical Character Recognition and\n" "Document Analysis and Recognition program." msgstr "" -#: gnu/packages/gnome.scm:12702 +#: gnu/packages/gnome.scm:12720 msgid "" "@code{libadwaita} offers widgets and objects to build GNOME\n" "applications scaling from desktop workstations to mobile phones. It is the\n" "successor of @code{libhandy} for GTK4." msgstr "" -#: gnu/packages/gnome.scm:12727 +#: gnu/packages/gnome.scm:12745 msgid "" "@code{gnome-power-manager} is a tool for viewing present and\n" "historical battery usage and related statistics." msgstr "" +#: gnu/packages/gnome.scm:12789 +#, fuzzy +msgid "This package provides a graphical file manager." +msgstr "" +"Ez a csomag egy szótárat biztosít a Hunspell helyesírás-ellenőrző\n" +"programkönyvtárhoz." + #: gnu/packages/gnuzilla.scm:155 msgid "" "SpiderMonkey is Mozilla's JavaScript engine written\n" "in C/C++." msgstr "A SpiderMonkey a Mozilla C/C++-ban írt JavaScript motorja." -#: gnu/packages/gnuzilla.scm:1314 +#: gnu/packages/gnuzilla.scm:1315 #, fuzzy msgid "" "IceCat is the GNU version of the Firefox browser. It is entirely free\n" @@ -7578,19 +7702,19 @@ msgstr "" "amely nem javasol nem szabad bővítményeket és kiegészítőket. Beépített\n" "magánszféravédelmi funkciókkal is rendelkezik." -#: gnu/packages/gnuzilla.scm:1642 +#: gnu/packages/gnuzilla.scm:1648 msgid "" "This package provides an email client built based on Mozilla\n" "Thunderbird. It supports email, news feeds, chat, calendar and contacts." msgstr "" -#: gnu/packages/gnuzilla.scm:1717 +#: gnu/packages/gnuzilla.scm:1723 msgid "" "Firefox Decrypt is a tool to extract passwords from\n" "Mozilla (Firefox, Waterfox, Thunderbird, SeaMonkey) profiles." msgstr "" -#: gnu/packages/gnuzilla.scm:1754 +#: gnu/packages/gnuzilla.scm:1760 msgid "" "@code{lz4json} is a little utility to unpack lz4json files as generated\n" "by Firefox's bookmark backups and session restore. This is a different format\n" @@ -7608,7 +7732,7 @@ msgstr "" "használatával az akadálymentesítési eszközök teljes hozzáférést kapnak a\n" "futó alkalmazások megtekintéséhez és vezérléséhez." -#: gnu/packages/gtk.scm:215 +#: gnu/packages/gtk.scm:212 msgid "" "Cairo is a 2D graphics library with support for multiple output\n" "devices. Currently supported output targets include the X Window System (via\n" @@ -7616,24 +7740,24 @@ msgid "" "output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB." msgstr "" -#: gnu/packages/gtk.scm:277 +#: gnu/packages/gtk.scm:274 msgid "HarfBuzz is an OpenType text shaping engine." msgstr "A HarfBuzz egy OpenType szövegformázó motor." -#: gnu/packages/gtk.scm:320 +#: gnu/packages/gtk.scm:317 msgid "" "Libdatrie is an implementation of double-array structure for\n" "representing trie. Trie is a kind of digital search tree." msgstr "" -#: gnu/packages/gtk.scm:352 +#: gnu/packages/gtk.scm:349 msgid "" "LibThai is a set of Thai language support routines aimed to\n" "ease developers’ tasks to incorporate Thai language support in their\n" "applications." msgstr "" -#: gnu/packages/gtk.scm:407 +#: gnu/packages/gtk.scm:404 msgid "" "Pango is a library for laying out and rendering of text, with\n" "an emphasis on internationalization. Pango can be used anywhere that text\n" @@ -7642,7 +7766,7 @@ msgid "" "handling for GTK+-2.x." msgstr "" -#: gnu/packages/gtk.scm:461 +#: gnu/packages/gtk.scm:458 msgid "" "Pangox was a X backend to pango. It is now obsolete and no\n" "longer provided by recent pango releases. pangox-compat provides the\n" @@ -7653,7 +7777,7 @@ msgstr "" "pangox-compat biztosítja azokat a függvényeket, amelyek eltávolításra\n" "kerültek." -#: gnu/packages/gtk.scm:498 +#: gnu/packages/gtk.scm:495 msgid "" "Ganv is an interactive GTK+ widget for interactive “boxes and lines” or\n" "graph-like environments, e.g. modular synths or finite state machine\n" @@ -7663,7 +7787,7 @@ msgstr "" "vagy gráfszerű környezetekhez, például moduláris szintetizátorokhoz vagy\n" "véges állapotgép diagramokhoz." -#: gnu/packages/gtk.scm:554 +#: gnu/packages/gtk.scm:551 msgid "" "GtkSourceView is a portable C library that extends the standard GTK+\n" "framework for multiline text editing with support for configurable syntax\n" @@ -7676,7 +7800,7 @@ msgstr "" "kiegészítő keretrendszer, nyomtatás, valamint egy forráskódszerkesztőre\n" "jellemző egyéb funkciók támogatásával." -#: gnu/packages/gtk.scm:602 +#: gnu/packages/gtk.scm:599 msgid "" "GtkSourceView is a text widget that extends the standard\n" "GTK+ text widget GtkTextView. It improves GtkTextView by implementing syntax\n" @@ -7687,14 +7811,14 @@ msgstr "" "GtkTextView felületi elemet szintaxiskiemeléssel és egy\n" "forráskódszerkesztőre jellemző egyéb funkciókkal." -#: gnu/packages/gtk.scm:698 +#: gnu/packages/gtk.scm:695 msgid "" "GdkPixbuf is a library that loads image data in various\n" "formats and stores it as linear buffers in memory. The buffers can then be\n" "scaled, composited, modified, saved, or rendered." msgstr "" -#: gnu/packages/gtk.scm:746 +#: gnu/packages/gtk.scm:743 msgid "" "The Assistive Technology Service Provider Interface, core components,\n" "is part of the GNOME accessibility project." @@ -7702,7 +7826,7 @@ msgstr "" "A kisegítő technológia szolgáltató felület alap összetevői a GNOME\n" "akadálymentesítési projekt részei." -#: gnu/packages/gtk.scm:827 +#: gnu/packages/gtk.scm:824 msgid "" "The Assistive Technology Service Provider Interface\n" "is part of the GNOME accessibility project." @@ -7710,7 +7834,7 @@ msgstr "" "A kisegítő technológia szolgáltató felület a GNOME akadálymentesítési\n" "projekt része." -#: gnu/packages/gtk.scm:921 +#: gnu/packages/gtk.scm:918 msgid "" "GTK+, or the GIMP Toolkit, is a multi-platform toolkit for creating\n" "graphical user interfaces. Offering a complete set of widgets, GTK+ is\n" @@ -7722,7 +7846,7 @@ msgstr "" "nyújtva a GTK+ alkalmas a kicsi, egyszeri eszközöktől kezdve a teljes\n" "alkalmazáscsomagokig terjedő projektekhez." -#: gnu/packages/gtk.scm:1234 +#: gnu/packages/gtk.scm:1238 #, fuzzy #| msgid "" #| "GTK+, or the GIMP Toolkit, is a multi-platform toolkit for creating\n" @@ -7739,7 +7863,7 @@ msgstr "" "nyújtva a GTK+ alkalmas a kicsi, egyszeri eszközöktől kezdve a teljes\n" "alkalmazáscsomagokig terjedő projektekhez." -#: gnu/packages/gtk.scm:1308 +#: gnu/packages/gtk.scm:1312 msgid "" "Guile-Cairo wraps the Cairo graphics library for Guile Scheme.\n" "Guile-Cairo is complete, wrapping almost all of the Cairo API. It is API\n" @@ -7755,7 +7879,7 @@ msgstr "" "grafikus programkönyvtárat kap a Scheme programozási nyelv összes előnyével:\n" "memóriakezelés, kivételek, makrók és egy dinamikus programozási környezet." -#: gnu/packages/gtk.scm:1389 +#: gnu/packages/gtk.scm:1393 msgid "" "Guile-RSVG wraps the RSVG library for Guile, allowing you to render SVG\n" "images onto Cairo surfaces." @@ -7763,7 +7887,7 @@ msgstr "" "A Guile-RSVG becsomagolja az RSVG programkönyvtárat a Guile programhoz,\n" "amely lehetővé teszi az SVG-képek megjelenítését a Cairo felületeken." -#: gnu/packages/gtk.scm:1456 +#: gnu/packages/gtk.scm:1460 msgid "" "Guile-Present defines a declarative vocabulary for presentations,\n" "together with tools to render presentation documents as SVG or PDF.\n" @@ -7777,7 +7901,7 @@ msgstr "" "segítségével, de tartalmaz egy eszközt az Org módon kívülről történő PDF\n" "bemutatók és Texinfo dokumentumok előállításához is." -#: gnu/packages/gtk.scm:1522 +#: gnu/packages/gtk.scm:1526 msgid "" "Includes guile-clutter, guile-gnome-gstreamer,\n" "guile-gnome-platform (GNOME developer libraries), and guile-gtksourceview." @@ -7786,7 +7910,7 @@ msgstr "" "guile-gnome-platform (GNOME fejlesztői programkönyvtárak) és\n" "guile-gtksourceview." -#: gnu/packages/gtk.scm:1578 +#: gnu/packages/gtk.scm:1582 msgid "" "Cairomm provides a C++ programming interface to the Cairo 2D graphics\n" "library." @@ -7794,7 +7918,7 @@ msgstr "" "A Cairomm egy C++ programozási felületet biztosít a Cairo 2D grafikai\n" "programkönyvtárhoz." -#: gnu/packages/gtk.scm:1642 +#: gnu/packages/gtk.scm:1647 msgid "" "Pangomm provides a C++ programming interface to the Pango text rendering\n" "library." @@ -7802,11 +7926,11 @@ msgstr "" "A Pangomm egy C++ programozási felületet biztosít a Pango szövegmegjelenítő\n" "programkönyvtárhoz." -#: gnu/packages/gtk.scm:1704 +#: gnu/packages/gtk.scm:1709 msgid "ATKmm is the C++ binding for the ATK library." msgstr "" -#: gnu/packages/gtk.scm:1784 +#: gnu/packages/gtk.scm:1790 #, fuzzy #| msgid "" #| "gtkmm is the official C++ interface for the popular GUI library GTK+.\n" @@ -8081,7 +8205,7 @@ msgid "" "excellent pavucontrol." msgstr "" -#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:238 +#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:241 msgid "" "Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" "official extension language of the GNU system. It is an implementation of\n" @@ -8096,14 +8220,14 @@ msgstr "" "biztosítson az alkalmazás funkcionalitásának kiterjesztéséhez anélkül,\n" "hogy a forráskódot újra kellene írni." -#: gnu/packages/guile.scm:502 +#: gnu/packages/guile.scm:506 msgid "" "This module provides line editing support via the Readline library for\n" "GNU@tie{}Guile. Use the @code{(ice-9 readline)} module and call its\n" "@code{activate-readline} procedure to enable it." msgstr "" -#: gnu/packages/guile.scm:604 +#: gnu/packages/guile.scm:608 msgid "" "Guile-JSON supports parsing and building JSON documents according to the\n" "specification. These are the main features:\n" @@ -8125,17 +8249,17 @@ msgstr "" "@item Lehetővé teszi a szépített JSON kiíratást.\n" "@end itemize\n" -#: gnu/packages/guile.scm:701 +#: gnu/packages/guile.scm:705 msgid "" "Guile bindings to the GDBM key-value storage system, using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:730 +#: gnu/packages/guile.scm:734 msgid "This package provides Guile bindings to the SQLite database system." msgstr "" -#: gnu/packages/guile.scm:769 +#: gnu/packages/guile.scm:773 msgid "" "Guile bytestructures offers a system imitating the type system\n" "of the C programming language, to be used on bytevectors. C's type\n" @@ -8144,27 +8268,27 @@ msgid "" "type system, elevating types to first-class status." msgstr "" -#: gnu/packages/guile.scm:810 +#: gnu/packages/guile.scm:814 msgid "" "This package provides Guile bindings to libgit2, a library to\n" "manipulate repositories of the Git version control system." msgstr "" -#: gnu/packages/guile.scm:846 +#: gnu/packages/guile.scm:850 msgid "" "This package provides Guile bindings for zlib, a lossless\n" "data-compression library. The bindings are written in pure Scheme by using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:877 +#: gnu/packages/guile.scm:881 msgid "" "This package provides Guile bindings for lzlib, a C library for\n" "in-memory LZMA compression and decompression. The bindings are written in\n" "pure Scheme by using Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:904 +#: gnu/packages/guile.scm:908 #, fuzzy msgid "" "This package provides a GNU Guile interface to the zstd (``zstandard'')\n" @@ -8173,7 +8297,7 @@ msgstr "" "Ez a csomag egy szótárat biztosít a Hunspell helyesírás-ellenőrző\n" "programkönyvtárhoz." -#: gnu/packages/guile.scm:926 +#: gnu/packages/guile.scm:930 msgid "" "Guile-LZMA is a Guile wrapper for the liblzma (XZ)\n" "library. It exposes an interface similar to other Guile compression\n" @@ -8760,7 +8884,7 @@ msgid "" "It supports JPEG, PNG and GIF formats." msgstr "" -#: gnu/packages/image-viewers.scm:640 +#: gnu/packages/image-viewers.scm:643 msgid "" "Luminance HDR (formerly QtPFSGui) is a graphical user interface\n" "application that aims to provide a workflow for high dynamic range (HDR)\n" @@ -8776,7 +8900,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:735 +#: gnu/packages/image-viewers.scm:738 msgid "" "MComix is a customizable image viewer that specializes as\n" "a comic and manga reader. It supports a variety of container formats\n" @@ -8785,7 +8909,7 @@ msgid "" "For PDF support, install the @emph{mupdf} package." msgstr "" -#: gnu/packages/image-viewers.scm:775 +#: gnu/packages/image-viewers.scm:778 msgid "" "qView is a Qt image viewer designed with visually\n" "minimalism and usability in mind. Its features include animated GIF\n" @@ -8793,14 +8917,14 @@ msgid "" "preloading." msgstr "" -#: gnu/packages/image-viewers.scm:799 +#: gnu/packages/image-viewers.scm:802 msgid "" "Chafa is a command-line utility that converts all kinds of images,\n" "including animated GIFs, into ANSI/Unicode character output that can be\n" "displayed in a terminal." msgstr "" -#: gnu/packages/image-viewers.scm:847 +#: gnu/packages/image-viewers.scm:850 msgid "" "@code{imv} is a command line image viewer intended for use\n" "with tiling window managers. Features include:\n" @@ -8822,7 +8946,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:924 +#: gnu/packages/image-viewers.scm:927 msgid "" "Quick Image Viewer is a small and fast GDK/Imlib2 image viewer.\n" "Features include zoom, maxpect, scale down, fullscreen, slideshow, delete,\n" @@ -8831,7 +8955,7 @@ msgid "" "to set X desktop background." msgstr "" -#: gnu/packages/image-viewers.scm:968 +#: gnu/packages/image-viewers.scm:971 msgid "" "pqiv is a GTK-3 based command-line image viewer with a minimal UI.\n" "It is highly customizable, can be fully controlled from scripts, and has\n" @@ -8839,7 +8963,7 @@ msgid "" "archives." msgstr "" -#: gnu/packages/image-viewers.scm:1025 +#: gnu/packages/image-viewers.scm:1028 msgid "" "Nomacs is a simple to use image lounge featuring\n" "semi-transparent widgets that display additional information such as metadata,\n" @@ -8852,7 +8976,7 @@ msgid "" "synchronization of multiple instances." msgstr "" -#: gnu/packages/image-viewers.scm:1070 +#: gnu/packages/image-viewers.scm:1073 msgid "xzgv is a fast image viewer that provides extensive keyboard support." msgstr "" @@ -9118,17 +9242,17 @@ msgid "" "Math for editing mathematics." msgstr "" -#: gnu/packages/linux.scm:604 +#: gnu/packages/linux.scm:625 msgid "Headers of the Linux-Libre kernel." msgstr "" -#: gnu/packages/linux.scm:905 +#: gnu/packages/linux.scm:935 msgid "" "GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.\n" "It has been modified to remove all non-free binary blobs." msgstr "" -#: gnu/packages/linux.scm:1215 +#: gnu/packages/linux.scm:1252 msgid "" "This simple Linux kernel module allows calls from user space to any\n" "@acronym{ACPI, Advanced Configuration and Power Interface} method provided by\n" @@ -9140,7 +9264,7 @@ msgid "" "and should be used with caution, especially on untested models." msgstr "" -#: gnu/packages/linux.scm:1283 +#: gnu/packages/linux.scm:1320 msgid "" "CoreFreq is a CPU monitor that reports low-level processor settings and\n" "performance data with notably high precision by using a loadable Linux kernel\n" @@ -9171,7 +9295,7 @@ msgid "" "@file{README.md} before loading it." msgstr "" -#: gnu/packages/linux.scm:1332 +#: gnu/packages/linux.scm:1369 msgid "" "This is the Linux kernel @acronym{ACPI, Advanced Configuration and Power\n" "Interface} platform driver for the @acronym{EC, Embedded Controller} firmware\n" @@ -9180,13 +9304,13 @@ msgid "" "and the notification, WiFi, and Bluetooth LED." msgstr "" -#: gnu/packages/linux.scm:1375 +#: gnu/packages/linux.scm:1413 msgid "" "This is Realtek's RTL8821CE Linux driver for wireless\n" "network adapters." msgstr "" -#: gnu/packages/linux.scm:1407 +#: gnu/packages/linux.scm:1445 msgid "" "This is Realtek's rtl8812au Linux driver for USB 802.11n wireless\n" "network adapters, modified by the aircrack-ng project to support monitor mode\n" @@ -9194,7 +9318,7 @@ msgid "" "RTL8812AU, RTL8821AU, and RTL8814AU chips." msgstr "" -#: gnu/packages/linux.scm:1431 +#: gnu/packages/linux.scm:1469 msgid "" "The @acronym{VHBA, Virtual SCSI Host Bus Adapter} module is the link\n" "between the CDemu user-space daemon and the kernel Linux. It acts as a\n" @@ -9203,13 +9327,13 @@ msgid "" "emulate optical devices such as DVD and CD-ROM drives." msgstr "" -#: gnu/packages/linux.scm:1460 +#: gnu/packages/linux.scm:1497 msgid "" "The bbswitch module provides a way to toggle the Nvidia\n" "graphics card on Optimus laptops." msgstr "" -#: gnu/packages/linux.scm:1501 +#: gnu/packages/linux.scm:1536 msgid "" "This package provides two Linux kernel drivers, ddcci and\n" "ddcci-backlight, that allows the control of DDC/CI monitors through the sysfs\n" @@ -9219,7 +9343,7 @@ msgid "" "supported under @file{/sys/class/backlight/}." msgstr "" -#: gnu/packages/linux.scm:1528 +#: gnu/packages/linux.scm:1563 msgid "" "This Linux module creates virtual video devices. @acronym{V4L2, Video\n" "for Linux 2} applications will treat these as ordinary video devices but read\n" @@ -9231,7 +9355,7 @@ msgid "" "application by hooking GStreamer into the loopback device." msgstr "" -#: gnu/packages/linux.scm:1569 +#: gnu/packages/linux.scm:1604 msgid "" "This package provides a driver for the XBox One S Wireless controller\n" "and some newer models when connected via Bluetooth. In addition to the included\n" @@ -9239,7 +9363,7 @@ msgid "" "which need to be installed separately." msgstr "" -#: gnu/packages/linux.scm:1622 +#: gnu/packages/linux.scm:1657 msgid "" "A *Free* project to implement OSF's RFC 86.0.\n" "Pluggable authentication modules are small shared object files that can\n" @@ -9247,19 +9371,19 @@ msgid "" "at login. Local and dynamic reconfiguration are its key features." msgstr "" -#: gnu/packages/linux.scm:1683 +#: gnu/packages/linux.scm:1718 #, fuzzy msgid "This package provides a PAM interface using @code{ctypes}." msgstr "Ez a csomag egy Python felületet biztosít a Redis kulcs-érték tároláshoz." -#: gnu/packages/linux.scm:1712 +#: gnu/packages/linux.scm:1747 msgid "" "This package provides a PAM module that hands over your\n" "login password to @code{gpg-agent}. This can be useful if you are using a\n" "GnuPG-based password manager like @code{pass}." msgstr "" -#: gnu/packages/linux.scm:1741 +#: gnu/packages/linux.scm:1776 msgid "" "This package contains utilities for accessing the powercap\n" "Linux kernel feature through sysfs. It includes an implementation for working\n" @@ -9267,7 +9391,7 @@ msgid "" "It provides the commands @code{powercap-info} and @code{powercap-set}." msgstr "" -#: gnu/packages/linux.scm:1772 +#: gnu/packages/linux.scm:1807 msgid "" "Powerstat measures and reports your computer's power consumption in real\n" "time. On mobile PCs, it uses ACPI battery information to measure the power\n" @@ -9284,28 +9408,28 @@ msgid "" "deviation, and minimum and maximum values. It can show a nice histogram too." msgstr "" -#: gnu/packages/linux.scm:1810 +#: gnu/packages/linux.scm:1845 msgid "" "This PSmisc package is a set of some small useful utilities that\n" "use the proc file system. We're not about changing the world, but\n" "providing the system administrator with some help in common tasks." msgstr "" -#: gnu/packages/linux.scm:1948 +#: gnu/packages/linux.scm:1984 msgid "" "Util-linux is a diverse collection of Linux kernel\n" "utilities. It provides dmesg and includes tools for working with file systems,\n" "block devices, UUIDs, TTYs, and many other tools." msgstr "" -#: gnu/packages/linux.scm:1986 +#: gnu/packages/linux.scm:2037 msgid "" "ddate displays the Discordian date and holidays of a given date.\n" "The Discordian calendar was made popular by the \"Illuminatus!\" trilogy\n" "by Robert Shea and Robert Anton Wilson." msgstr "" -#: gnu/packages/linux.scm:2040 +#: gnu/packages/linux.scm:2091 msgid "" "The kernel Linux's @dfn{frame buffers} provide a simple interface to\n" "different kinds of graphic displays. The @command{fbset} utility can query and\n" @@ -9313,7 +9437,7 @@ msgid "" "parameters." msgstr "" -#: gnu/packages/linux.scm:2085 +#: gnu/packages/linux.scm:2136 msgid "" "Procps is the package that has a bunch of small useful utilities\n" "that give information about processes using the Linux /proc file system.\n" @@ -9321,11 +9445,11 @@ msgid "" "slabtop, tload, top, vmstat, w, watch and sysctl." msgstr "" -#: gnu/packages/linux.scm:2130 +#: gnu/packages/linux.scm:2181 msgid "Tools for working with USB devices, such as lsusb." msgstr "" -#: gnu/packages/linux.scm:2154 +#: gnu/packages/linux.scm:2205 msgid "" "The USB/IP protocol enables to pass USB device from a server to\n" "a client over the network. The server is a machine which shares an\n" @@ -9338,23 +9462,23 @@ msgid "" "module." msgstr "" -#: gnu/packages/linux.scm:2237 +#: gnu/packages/linux.scm:2288 msgid "This package provides tools for manipulating ext2/ext3/ext4 file systems." msgstr "" -#: gnu/packages/linux.scm:2279 +#: gnu/packages/linux.scm:2330 msgid "" "This package provides statically-linked e2fsck command taken\n" "from the e2fsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:2302 +#: gnu/packages/linux.scm:2353 msgid "" "Extundelete is a set of tools that can recover deleted files from an\n" "ext3 or ext4 partition." msgstr "" -#: gnu/packages/linux.scm:2335 +#: gnu/packages/linux.scm:2386 msgid "" "Zerofree finds the unallocated blocks with non-zero value content in an\n" "ext2, ext3, or ext4 file system and fills them with zeroes (or another value).\n" @@ -9362,39 +9486,39 @@ msgid "" "Zerofree requires the file system to be unmounted or mounted read-only." msgstr "" -#: gnu/packages/linux.scm:2380 +#: gnu/packages/linux.scm:2431 msgid "" "strace is a system call tracer, i.e. a debugging tool which prints out a\n" "trace of all the system calls made by a another process/program." msgstr "" -#: gnu/packages/linux.scm:2403 +#: gnu/packages/linux.scm:2454 msgid "" "ltrace intercepts and records dynamic library calls which are called by\n" "an executed process and the signals received by that process. It can also\n" "intercept and print the system calls executed by the program." msgstr "" -#: gnu/packages/linux.scm:2428 +#: gnu/packages/linux.scm:2479 msgid "" "This package contains Advanced Linux Sound Architecture Use Case Manager\n" "configuration of audio input/output names and routing for specific audio\n" "hardware." msgstr "" -#: gnu/packages/linux.scm:2452 +#: gnu/packages/linux.scm:2503 msgid "" "This package contains Advanced Linux Sound Architecture topology\n" "configuration files that can be used for specific audio hardware." msgstr "" -#: gnu/packages/linux.scm:2499 gnu/packages/linux.scm:2548 +#: gnu/packages/linux.scm:2550 gnu/packages/linux.scm:2599 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system." msgstr "" -#: gnu/packages/linux.scm:2617 +#: gnu/packages/linux.scm:2668 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system. This package enhances ALSA\n" @@ -9403,7 +9527,7 @@ msgid "" "external rate conversion." msgstr "" -#: gnu/packages/linux.scm:2655 +#: gnu/packages/linux.scm:2706 msgid "" "@command{iptables} is the user-space command line program used to\n" "configure the Linux 2.4.x and later IPv4 packet filtering ruleset\n" @@ -9415,7 +9539,7 @@ msgid "" "Both commands are targeted at system administrators." msgstr "" -#: gnu/packages/linux.scm:2691 +#: gnu/packages/linux.scm:2742 msgid "" "This simple daemon feeds entropy from the CPU Jitter @acronym{RNG, random\n" "number generator} core to the kernel Linux's entropy estimator. This prevents\n" @@ -9437,7 +9561,7 @@ msgid "" "early boot when entropy may be low, especially in virtualised environments." msgstr "" -#: gnu/packages/linux.scm:2727 +#: gnu/packages/linux.scm:2778 msgid "" "@command{lsscsi} lists SCSI logical units or SCSI targets. It can\n" "also list NVMe namespaces or controllers and show the relationship between a\n" @@ -9445,7 +9569,7 @@ msgid "" "name." msgstr "" -#: gnu/packages/linux.scm:2751 +#: gnu/packages/linux.scm:2802 msgid "" "ebtables is an application program used to set up and maintain the\n" "tables of rules (inside the Linux kernel) that inspect Ethernet frames. It is\n" @@ -9453,7 +9577,7 @@ msgid "" "that the Ethernet protocol is much simpler than the IP protocol." msgstr "" -#: gnu/packages/linux.scm:2816 +#: gnu/packages/linux.scm:2867 msgid "" "Iproute2 is a collection of utilities for controlling TCP/IP networking\n" "and traffic with the Linux kernel. The most important of these are\n" @@ -9465,7 +9589,7 @@ msgid "" "inadequately in modern network environments, and both should be deprecated." msgstr "" -#: gnu/packages/linux.scm:2896 +#: gnu/packages/linux.scm:2947 msgid "" "This package includes the important tools for controlling the network\n" "subsystem of the Linux kernel. This includes arp, ifconfig, netstat, rarp and\n" @@ -9474,13 +9598,13 @@ msgid "" "configuration (iptunnel, ipmaddr)." msgstr "" -#: gnu/packages/linux.scm:2947 +#: gnu/packages/linux.scm:2989 msgid "" "Libcap2 provides a programming interface to POSIX capabilities on\n" "Linux-based operating systems." msgstr "" -#: gnu/packages/linux.scm:2974 +#: gnu/packages/linux.scm:3016 msgid "" "Utilities for Linux's Ethernet bridging facilities. A bridge is a way\n" "to connect two Ethernet segments together in a protocol independent way.\n" @@ -9489,7 +9613,7 @@ msgid "" "transparently through a bridge." msgstr "" -#: gnu/packages/linux.scm:3025 +#: gnu/packages/linux.scm:3067 msgid "" "The libnl suite is a collection of libraries providing APIs to netlink\n" "protocol based Linux kernel interfaces. Netlink is an IPC mechanism primarily\n" @@ -9498,13 +9622,13 @@ msgid "" "configuration and monitoring interfaces." msgstr "" -#: gnu/packages/linux.scm:3099 +#: gnu/packages/linux.scm:3141 msgid "" "iw is a new nl80211 based CLI configuration utility for wireless\n" "devices. It replaces @code{iwconfig}, which is deprecated." msgstr "" -#: gnu/packages/linux.scm:3149 +#: gnu/packages/linux.scm:3191 msgid "" "PowerTOP is a Linux tool to diagnose issues with power consumption and\n" "power management. In addition to being a diagnostic tool, PowerTOP also has\n" @@ -9513,19 +9637,19 @@ msgid "" "settings." msgstr "" -#: gnu/packages/linux.scm:3176 +#: gnu/packages/linux.scm:3218 msgid "" "Aumix adjusts an audio mixer from X, the console, a terminal,\n" "the command line or a script." msgstr "" -#: gnu/packages/linux.scm:3207 +#: gnu/packages/linux.scm:3249 msgid "" "Iotop is a Python program with a top like user interface to show the\n" "processes currently causing I/O." msgstr "" -#: gnu/packages/linux.scm:3265 +#: gnu/packages/linux.scm:3307 msgid "" "As a consequence of its monolithic design, file system code for Linux\n" "normally goes into the kernel itself---which is not only a robustness issue,\n" @@ -9535,7 +9659,7 @@ msgid "" "user-space processes." msgstr "" -#: gnu/packages/linux.scm:3358 +#: gnu/packages/linux.scm:3400 msgid "" "UnionFS-FUSE is a flexible union file system implementation in user\n" "space, using the FUSE library. Mounting a union file system allows you to\n" @@ -9543,7 +9667,7 @@ msgid "" "UnionFS-FUSE additionally supports copy-on-write." msgstr "" -#: gnu/packages/linux.scm:3437 +#: gnu/packages/linux.scm:3479 msgid "" "This is a file system client based on the SSH File Transfer Protocol.\n" "Since most SSH servers already support this protocol it is very easy to set\n" @@ -9551,7 +9675,7 @@ msgid "" "file system is as easy as logging into the server with an SSH client." msgstr "" -#: gnu/packages/linux.scm:3464 +#: gnu/packages/linux.scm:3506 msgid "" "archivemount is a FUSE-based file system for Unix variants,\n" "including Linux. Its purpose is to mount archives (i.e. tar, tar.gz, etc.) to a\n" @@ -9560,7 +9684,7 @@ msgid "" "compressed, transparent to other programs, without decompressing them." msgstr "" -#: gnu/packages/linux.scm:3495 +#: gnu/packages/linux.scm:3537 msgid "" "NUMA stands for Non-Uniform Memory Access, in other words a system whose\n" "memory is not all in one place. The @command{numactl} program allows you to\n" @@ -9573,26 +9697,26 @@ msgid "" "NUMA performance on your system." msgstr "" -#: gnu/packages/linux.scm:3533 +#: gnu/packages/linux.scm:3575 msgid "" "Kbd-neo provides the Neo2 keyboard layout for use with\n" "@command{loadkeys(1)} from @code{kbd(4)}." msgstr "" -#: gnu/packages/linux.scm:3599 +#: gnu/packages/linux.scm:3641 msgid "" "This package contains keytable files and keyboard utilities compatible\n" "for systems using the Linux kernel. This includes commands such as\n" "@code{loadkeys}, @code{setfont}, @code{kbdinfo}, and @code{chvt}." msgstr "" -#: gnu/packages/linux.scm:3662 +#: gnu/packages/linux.scm:3704 msgid "" "The inotify-tools packages provides a C library and command-line tools\n" "to use Linux' inotify mechanism, which allows file accesses to be monitored." msgstr "" -#: gnu/packages/linux.scm:3714 +#: gnu/packages/linux.scm:3756 msgid "" "Kmod is a set of tools to handle common tasks with Linux\n" "kernel modules like insert, remove, list, check properties, resolve\n" @@ -9603,21 +9727,21 @@ msgid "" "from the module-init-tools project." msgstr "" -#: gnu/packages/linux.scm:3769 +#: gnu/packages/linux.scm:3812 msgid "" "Early OOM is a minimalist out of memory (OOM) daemon that\n" "runs in user space and provides a more responsive and configurable alternative\n" "to the in-kernel OOM killer." msgstr "" -#: gnu/packages/linux.scm:3867 +#: gnu/packages/linux.scm:3892 msgid "" "Udev is a daemon which dynamically creates and removes\n" "device nodes from /dev/, handles hotplug events and loads drivers at boot\n" "time." msgstr "" -#: gnu/packages/linux.scm:3897 +#: gnu/packages/linux.scm:3922 msgid "" "Python-evdev provides bindings to the generic input event interface in\n" "Linux. The @code{evdev} interface serves the purpose of passing events\n" @@ -9629,7 +9753,7 @@ msgid "" "devices that can inject events directly into the input subsystem." msgstr "" -#: gnu/packages/linux.scm:3930 +#: gnu/packages/linux.scm:3955 msgid "" "Interception Tools provides a composable infrastructure on top of\n" "@code{libudev} and @code{libevdev}. The following utilities are provided:\n" @@ -9642,33 +9766,33 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/linux.scm:3979 +#: gnu/packages/linux.scm:4004 msgid "" "Dual Function Keys is a plugin for @code{interception-tools} that allows\n" "one to send arbitrary keycodes when a given key is tapped or held." msgstr "" -#: gnu/packages/linux.scm:4056 +#: gnu/packages/linux.scm:4081 msgid "" "LVM2 is the logical volume management tool set for Linux-based systems.\n" "This package includes the user-space libraries and tools, including the device\n" "mapper. Kernel components are part of Linux-libre." msgstr "" -#: gnu/packages/linux.scm:4122 +#: gnu/packages/linux.scm:4147 msgid "" "A suite of tools for manipulating the metadata of the\n" "dm-thin, dm-cache and dm-era device-mapper targets." msgstr "" -#: gnu/packages/linux.scm:4144 +#: gnu/packages/linux.scm:4169 msgid "" "This package provides an advanced monitor of critical system\n" "resources, supervises the heartbeat of processes, records deadline\n" "transgressions, and initiates a controlled reset if needed." msgstr "" -#: gnu/packages/linux.scm:4189 +#: gnu/packages/linux.scm:4214 msgid "" "Wireless Tools are used to manipulate the now-deprecated\n" "Linux Wireless Extensions; consider using @code{iw} instead. The Wireless\n" @@ -9677,35 +9801,35 @@ msgid "" "interface." msgstr "" -#: gnu/packages/linux.scm:4280 +#: gnu/packages/linux.scm:4305 msgid "" "The Central Regulatory Domain Agent (CRDA) acts as the udev helper for\n" "communication between the kernel Linux and user space for regulatory\n" "compliance." msgstr "" -#: gnu/packages/linux.scm:4350 +#: gnu/packages/linux.scm:4375 msgid "" "This package contains the wireless regulatory database for the Central\n" "Regulatory Database Agent (CRDA). The database contains information on\n" "country-specific regulations for the wireless spectrum." msgstr "" -#: gnu/packages/linux.scm:4424 +#: gnu/packages/linux.scm:4449 msgid "" "Lm-sensors is a hardware health monitoring package for Linux. It allows\n" "you to access information from temperature, voltage, and fan speed sensors.\n" "It works with most newer systems." msgstr "" -#: gnu/packages/linux.scm:4444 +#: gnu/packages/linux.scm:4469 msgid "" "@command{iucode_tool} is a utility to work with microcode packages for\n" "Intel processors. It can convert between formats, extract specific versions,\n" "create a firmware image suitable for the Linux kernel, and more." msgstr "" -#: gnu/packages/linux.scm:4475 +#: gnu/packages/linux.scm:4501 msgid "" "The i2c-tools package contains a heterogeneous set of I2C tools for\n" "Linux: a bus probing tool, a chip dumper, register-level SMBus access helpers,\n" @@ -9713,14 +9837,14 @@ msgid "" "SMBus access." msgstr "" -#: gnu/packages/linux.scm:4514 +#: gnu/packages/linux.scm:4540 msgid "" "Xsensors reads data from the libsensors library regarding hardware\n" "health such as temperature, voltage and fan speed and displays the information\n" "in a digital read-out." msgstr "" -#: gnu/packages/linux.scm:4568 +#: gnu/packages/linux.scm:4600 msgid "" "perf is a tool suite for profiling using hardware performance counters,\n" "with support in the Linux kernel. perf can instrument CPU performance\n" @@ -9729,7 +9853,7 @@ msgid "" "particular the @code{perf} command." msgstr "" -#: gnu/packages/linux.scm:4593 +#: gnu/packages/linux.scm:4625 msgid "" "pflask is a simple tool for creating Linux namespace\n" "containers. It can be used for running a command or even booting an OS inside\n" @@ -9738,7 +9862,7 @@ msgid "" "thanks to the use of namespaces." msgstr "" -#: gnu/packages/linux.scm:4678 +#: gnu/packages/linux.scm:4710 msgid "" "Singularity is a container platform supporting a number of\n" "container image formats. It can build SquashFS container images or import\n" @@ -9746,7 +9870,7 @@ msgid "" "isolation or root privileges." msgstr "" -#: gnu/packages/linux.scm:4711 +#: gnu/packages/linux.scm:4742 msgid "" "@command{hdparm} is a command-line utility to control ATA controllers and\n" "disk drives. It can increase performance and/or reliability by careful tuning\n" @@ -9760,21 +9884,21 @@ msgid "" "Translation (@dfn{SAT}) are also supported." msgstr "" -#: gnu/packages/linux.scm:4750 +#: gnu/packages/linux.scm:4782 msgid "" "Nvme-cli is a utility to provide standards compliant tooling\n" "for NVM-Express drives. It was made specifically for Linux as it relies on the\n" "IOCTLs defined by the mainline kernel driver." msgstr "" -#: gnu/packages/linux.scm:4776 +#: gnu/packages/linux.scm:4808 msgid "" "rfkill is a simple tool for accessing the rfkill device interface,\n" "which is used to enable and disable wireless networking devices, typically\n" "WLAN, Bluetooth and mobile broadband." msgstr "" -#: gnu/packages/linux.scm:4798 +#: gnu/packages/linux.scm:4830 msgid "" "@code{acpi} attempts to replicate the functionality of the\n" "\"old\" @code{apm} command on ACPI systems, including battery and thermal\n" @@ -9782,7 +9906,7 @@ msgid "" "about ACPI devices." msgstr "" -#: gnu/packages/linux.scm:4819 +#: gnu/packages/linux.scm:4851 msgid "" "acpid is designed to notify user-space programs of Advanced\n" "Configuration and Power Interface (ACPI) events. acpid should be started\n" @@ -9791,34 +9915,34 @@ msgid "" "specified in /etc/acpi/events and execute the rules that match the event." msgstr "" -#: gnu/packages/linux.scm:4843 +#: gnu/packages/linux.scm:4875 msgid "" "These are a set of utilities built upon sysfs, a virtual file system in\n" "Linux kernel versions 2.5+ that exposes a system's device tree. The package\n" "also contains the libsysfs library." msgstr "" -#: gnu/packages/linux.scm:4886 +#: gnu/packages/linux.scm:4918 msgid "" "The cpufrequtils suite contains utilities to retrieve CPU frequency\n" "information, and set the CPU frequency if supported, using the cpufreq\n" "capabilities of the Linux kernel." msgstr "" -#: gnu/packages/linux.scm:4922 +#: gnu/packages/linux.scm:4954 msgid "" "This package provides many of the missing pieces in GNU\n" "libc. Most notably the string functions: strlcpy(3), strlcat(3) and the *BSD\n" "sys/queue.h and sys/tree.h API's." msgstr "" -#: gnu/packages/linux.scm:4945 +#: gnu/packages/linux.scm:4977 msgid "" "This package provides small event loop that wraps the\n" "epoll family of APIs." msgstr "" -#: gnu/packages/linux.scm:4966 +#: gnu/packages/linux.scm:4998 msgid "" "Libraw1394 is the only supported interface to the kernel side raw1394 of\n" "the Linux IEEE-1394 subsystem, which provides direct access to the connected\n" @@ -9827,26 +9951,26 @@ msgid "" "protocol in question." msgstr "" -#: gnu/packages/linux.scm:4992 +#: gnu/packages/linux.scm:5024 msgid "" "Libavc1394 is a programming interface to the AV/C specification from\n" "the 1394 Trade Association. AV/C stands for Audio/Video Control." msgstr "" -#: gnu/packages/linux.scm:5016 +#: gnu/packages/linux.scm:5048 msgid "" "The libiec61883 library provides a higher level API for streaming DV,\n" "MPEG-2 and audio over Linux IEEE 1394." msgstr "" -#: gnu/packages/linux.scm:5067 +#: gnu/packages/linux.scm:5099 msgid "" "mdadm is a tool for managing Linux Software RAID arrays. It can create,\n" "assemble, report on, and monitor arrays. It can also move spares between raid\n" "arrays when needed." msgstr "" -#: gnu/packages/linux.scm:5199 +#: gnu/packages/linux.scm:5231 msgid "" "This package provides the following binaries to drive the\n" "Linux Device Mapper multipathing driver:\n" @@ -9859,66 +9983,66 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:5244 +#: gnu/packages/linux.scm:5288 msgid "" "This library enables userspace to use Linux kernel asynchronous I/O\n" "system calls, important for the performance of databases and other advanced\n" "applications." msgstr "" -#: gnu/packages/linux.scm:5287 +#: gnu/packages/linux.scm:5331 msgid "" "Blktrace is a block layer IO tracing mechanism which provides\n" "detailed information about request queue operations to user space. It extracts\n" "event traces from the kernel (via the relaying through the debug file system)." msgstr "" -#: gnu/packages/linux.scm:5312 +#: gnu/packages/linux.scm:5356 msgid "" "The SBC is a digital audio encoder and decoder used to transfer data to\n" "Bluetooth audio output devices like headphones or loudspeakers." msgstr "" -#: gnu/packages/linux.scm:5379 +#: gnu/packages/linux.scm:5423 msgid "" "BlueZ provides support for the core Bluetooth layers and protocols. It\n" "is flexible, efficient and uses a modular implementation." msgstr "" -#: gnu/packages/linux.scm:5403 +#: gnu/packages/linux.scm:5447 msgid "" "This package provides a FUSE-based file system that provides read and\n" "write access to exFAT devices." msgstr "" -#: gnu/packages/linux.scm:5426 +#: gnu/packages/linux.scm:5470 msgid "" "FuseISO is a FUSE module to mount ISO file system images (.iso, .nrg,\n" ".bin, .mdf and .img files). It supports plain ISO9660 Level 1 and 2, Rock\n" "Ridge, Joliet, and zisofs." msgstr "" -#: gnu/packages/linux.scm:5480 +#: gnu/packages/linux.scm:5524 msgid "" "The GPM (general-purpose mouse) daemon is a mouse server for\n" "applications running on the Linux console. It allows users to select items\n" "and copy/paste text in the console and in xterm." msgstr "" -#: gnu/packages/linux.scm:5551 +#: gnu/packages/linux.scm:5595 msgid "" "Btrfs is a @dfn{copy-on-write} (CoW) file system for Linux\n" "aimed at implementing advanced features while focusing on fault tolerance,\n" "repair and easy administration." msgstr "" -#: gnu/packages/linux.scm:5585 +#: gnu/packages/linux.scm:5629 msgid "" "This package provides the statically-linked @command{btrfs}\n" "from the btrfs-progs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5617 +#: gnu/packages/linux.scm:5661 msgid "" "Cramfs is a Linux file system designed to be simple, small,\n" "and to compress things well. It is used on a number of embedded systems and\n" @@ -9926,7 +10050,7 @@ msgid "" "blocks and random block placement." msgstr "" -#: gnu/packages/linux.scm:5652 +#: gnu/packages/linux.scm:5696 msgid "" "@command{compsize} takes a list of files (given as\n" "arguments) on a Btrfs file system and measures used compression types and\n" @@ -9943,20 +10067,20 @@ msgid "" "obviously it can be shared with files outside our set)." msgstr "" -#: gnu/packages/linux.scm:5700 +#: gnu/packages/linux.scm:5744 msgid "" "F2FS, the Flash-Friendly File System, is a modern file system\n" "designed to be fast and durable on flash devices such as solid-state\n" "disks and SD cards. This package provides the userland utilities." msgstr "" -#: gnu/packages/linux.scm:5790 +#: gnu/packages/linux.scm:5834 msgid "" "This package provides statically-linked fsck.f2fs command taken\n" "from the f2fs-tools package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5821 +#: gnu/packages/linux.scm:5865 msgid "" "Prevents shock damage to the internal spinning hard drive(s) of some\n" "HP and Dell laptops. When sudden movement is detected, all input/output\n" @@ -9966,7 +10090,7 @@ msgid "" "feature, and a laptop with an accelerometer. It has no effect on SSDs." msgstr "" -#: gnu/packages/linux.scm:5879 +#: gnu/packages/linux.scm:5923 msgid "" "Thinkfan is a simple fan control program. It reads temperatures,\n" "checks them against configured limits and switches to appropriate (also\n" @@ -9975,7 +10099,7 @@ msgid "" "from userspace." msgstr "" -#: gnu/packages/linux.scm:5935 +#: gnu/packages/linux.scm:5979 msgid "" "Tpacpi-bat is a command-line interface to control battery charging on\n" "@uref{https://github.com/teleshoes/tpacpi-bat/wiki/Supported-Hardware, Lenovo\n" @@ -9990,7 +10114,7 @@ msgid "" "supported." msgstr "" -#: gnu/packages/linux.scm:5979 +#: gnu/packages/linux.scm:6023 msgid "" "Tmon is a tool to interact with the complex thermal subsystem of the\n" "kernel Linux. It helps visualize thermal relationships and real-time thermal\n" @@ -10007,7 +10131,7 @@ msgid "" "by hand is no trivial task: @command{tmon} aims to make it understandable." msgstr "" -#: gnu/packages/linux.scm:6021 +#: gnu/packages/linux.scm:6065 msgid "" "Turbostat reports x86 processor topology, frequency, idle power state\n" "statistics, temperature, and power consumption. Some information is unavailable\n" @@ -10022,20 +10146,20 @@ msgid "" "invocations of itself." msgstr "" -#: gnu/packages/linux.scm:6080 +#: gnu/packages/linux.scm:6124 msgid "" "NTFS-3G provides read-write access to NTFS file systems, which are\n" "commonly found on Microsoft Windows. It is implemented as a FUSE file system.\n" "The package provides additional NTFS tools." msgstr "" -#: gnu/packages/linux.scm:6127 +#: gnu/packages/linux.scm:6171 msgid "" "This package provides a statically linked @command{ntfsfix} taken\n" "from the ntfs-3g package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:6174 +#: gnu/packages/linux.scm:6218 msgid "" "This package provides userspace components for the InfiniBand\n" "subsystem of the Linux kernel. Specifically it contains userspace\n" @@ -10055,7 +10179,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6228 +#: gnu/packages/linux.scm:6272 msgid "" "This is a collection of tests written over uverbs intended for\n" "use as a performance micro-benchmark. The tests may be used for hardware or\n" @@ -10071,20 +10195,20 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6270 +#: gnu/packages/linux.scm:6314 msgid "" "Monitor a hardware random number generator, and supply entropy\n" "from that to the system kernel's @file{/dev/random} machinery." msgstr "" -#: gnu/packages/linux.scm:6312 +#: gnu/packages/linux.scm:6356 msgid "" "cpupower is a set of user-space tools that use the cpufreq feature of the\n" "Linux kernel to retrieve and control processor features related to power saving,\n" "such as frequency and voltage scaling." msgstr "" -#: gnu/packages/linux.scm:6344 +#: gnu/packages/linux.scm:6388 msgid "" "@command{x86_energy_perf_policy} displays and updates energy-performance\n" "policy settings specific to Intel Architecture Processors. Settings are\n" @@ -10092,7 +10216,7 @@ msgid "" "cpufreq sub-system is enabled or not." msgstr "" -#: gnu/packages/linux.scm:6370 +#: gnu/packages/linux.scm:6414 msgid "" "haveged generates an unpredictable stream of random numbers for use by\n" "Linux's @file{/dev/random} and @file{/dev/urandom} devices. The kernel's\n" @@ -10110,7 +10234,7 @@ msgid "" "not as a replacement for it." msgstr "" -#: gnu/packages/linux.scm:6456 +#: gnu/packages/linux.scm:6500 msgid "" "eCryptfs is a POSIX-compliant stacked cryptographic file system for Linux.\n" "Each file's cryptographic meta-data is stored inside the file itself, along\n" @@ -10120,7 +10244,7 @@ msgid "" "2.6.19. This package contains the userland utilities to manage it." msgstr "" -#: gnu/packages/linux.scm:6488 +#: gnu/packages/linux.scm:6532 msgid "" "Libnfsidmap is a library holding mulitiple methods of\n" "mapping names to ids and visa versa, mainly for NFSv4. It provides an\n" @@ -10128,13 +10252,13 @@ msgid "" "the default @code{nsswitch} and the experimental @code{umich_ldap}." msgstr "" -#: gnu/packages/linux.scm:6524 +#: gnu/packages/linux.scm:6568 msgid "" "Tools for loading and managing Linux kernel modules, such as\n" "@code{modprobe}, @code{insmod}, @code{lsmod}, and more." msgstr "" -#: gnu/packages/linux.scm:6565 +#: gnu/packages/linux.scm:6609 msgid "" "The mcelog daemon logs memory, I/O, CPU, and other hardware errors on x86\n" "systems running the kernel Linux. It can also perform user-defined tasks, such\n" @@ -10142,13 +10266,13 @@ msgid "" "exceeded." msgstr "" -#: gnu/packages/linux.scm:6596 +#: gnu/packages/linux.scm:6640 msgid "" "This package provides utilities for testing, partitioning, etc\n" "of flash storage." msgstr "" -#: gnu/packages/linux.scm:6628 +#: gnu/packages/linux.scm:6672 msgid "" "The libseccomp library provides an easy to use, platform\n" "independent, interface to the Linux Kernel's syscall filtering mechanism. The\n" @@ -10158,7 +10282,7 @@ msgid "" "developers." msgstr "" -#: gnu/packages/linux.scm:6671 +#: gnu/packages/linux.scm:6715 msgid "" "RadeonTop monitors resource consumption on supported AMD\n" "Radeon Graphics Processing Units (GPUs), either in real time as bar graphs on\n" @@ -10168,13 +10292,13 @@ msgid "" "under OpenGL graphics workloads." msgstr "" -#: gnu/packages/linux.scm:6718 +#: gnu/packages/linux.scm:6762 msgid "" "This package provides a library and a command line\n" "interface to the variable facility of UEFI boot firmware." msgstr "" -#: gnu/packages/linux.scm:6755 +#: gnu/packages/linux.scm:6799 msgid "" "@code{efibootmgr} is a user-space application to modify the Intel\n" "Extensible Firmware Interface (EFI) Boot Manager. This application can\n" @@ -10182,7 +10306,7 @@ msgid "" "running boot option, and more." msgstr "" -#: gnu/packages/linux.scm:6791 +#: gnu/packages/linux.scm:6835 msgid "" "The sysstat utilities are a collection of performance\n" "monitoring tools for Linux. These include @code{mpstat}, @code{iostat},\n" @@ -10190,7 +10314,7 @@ msgid "" "@code{sadf} and @code{sa}." msgstr "" -#: gnu/packages/linux.scm:6832 +#: gnu/packages/linux.scm:6876 msgid "" "Light is a program to send commands to screen backlight controllers\n" "under GNU/Linux. Features include:\n" @@ -10204,7 +10328,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/linux.scm:6880 +#: gnu/packages/linux.scm:6924 msgid "" "This program allows you read and control device brightness. Devices\n" "include backlight and LEDs. It can also preserve current brightness before\n" @@ -10214,7 +10338,7 @@ msgid "" "interface in sysfs, which can be accomplished with the included udev rules." msgstr "" -#: gnu/packages/linux.scm:7007 +#: gnu/packages/linux.scm:7048 msgid "" "TLP is a power management tool for Linux. It comes with\n" "a default configuration already optimized for battery life. Nevertheless,\n" @@ -10222,7 +10346,7 @@ msgid "" "every time the power supply source is changed." msgstr "" -#: gnu/packages/linux.scm:7073 +#: gnu/packages/linux.scm:7114 msgid "" "The Python scripts in this project generate a GTK-UI to change\n" "TLP configuration files easily. It aims to protect users from setting\n" @@ -10230,7 +10354,7 @@ msgid "" "configuration values." msgstr "" -#: gnu/packages/linux.scm:7099 +#: gnu/packages/linux.scm:7140 msgid "" "@command{lshw} (Hardware Lister) is a small tool to provide\n" "detailed information on the hardware configuration of the machine.\n" @@ -10240,7 +10364,7 @@ msgid "" "machines (PowerMac G4 is known to work)." msgstr "" -#: gnu/packages/linux.scm:7123 +#: gnu/packages/linux.scm:7164 msgid "" "Libmnl is a minimalistic user-space library oriented to\n" "Netlink developers. There are a lot of common tasks in parsing, validating,\n" @@ -10249,7 +10373,7 @@ msgid "" "re-use code and to avoid re-inventing the wheel." msgstr "" -#: gnu/packages/linux.scm:7148 +#: gnu/packages/linux.scm:7189 msgid "" "Libnftnl is a userspace library providing a low-level netlink\n" "programming interface to the in-kernel nf_tables subsystem. The library\n" @@ -10257,7 +10381,7 @@ msgid "" "used by nftables." msgstr "" -#: gnu/packages/linux.scm:7194 +#: gnu/packages/linux.scm:7235 msgid "" "nftables is the project that aims to replace the existing\n" "{ip,ip6,arp,eb}tables framework. Basically, this project provides a new packet\n" @@ -10267,7 +10391,7 @@ msgid "" "userspace queueing component and the logging subsystem." msgstr "" -#: gnu/packages/linux.scm:7336 +#: gnu/packages/linux.scm:7377 msgid "" "PRoot is a user-space implementation of @code{chroot}, @code{mount --bind},\n" "and @code{binfmt_misc}. This means that users don't need any privileges or\n" @@ -10280,7 +10404,7 @@ msgid "" "available in the kernel Linux." msgstr "" -#: gnu/packages/linux.scm:7399 +#: gnu/packages/linux.scm:7437 msgid "" "cpuid dumps detailed information about the CPU(s) gathered\n" "from the CPUID instruction, and also determines the exact model of CPU(s). It\n" @@ -10288,14 +10412,14 @@ msgid "" "NexGen, Rise, and SiS CPUs." msgstr "" -#: gnu/packages/linux.scm:7426 +#: gnu/packages/linux.scm:7464 msgid "" "jmtpfs uses FUSE (file system in userspace) to provide access\n" "to data over the Media Transfer Protocol (MTP). Unprivileged users can mount\n" "the MTP device as a file system." msgstr "" -#: gnu/packages/linux.scm:7453 +#: gnu/packages/linux.scm:7491 msgid "" "Procenv is a command-line tool that displays as much detail about\n" "itself and its environment as possible. It can be used as a test\n" @@ -10303,7 +10427,7 @@ msgid "" "comparing system environments." msgstr "" -#: gnu/packages/linux.scm:7482 +#: gnu/packages/linux.scm:7520 msgid "" "OpenFabrics Interfaces (OFI) is a framework focused on exporting fabric\n" "communication services to applications. OFI is best described as a collection\n" @@ -10317,7 +10441,7 @@ msgid "" "libraries, which are often integrated directly into libfabric." msgstr "" -#: gnu/packages/linux.scm:7544 +#: gnu/packages/linux.scm:7582 msgid "" "The PSM Messaging API, or PSM API, is Intel's low-level user-level\n" "communications interface for the True Scale family of products. PSM users are\n" @@ -10325,14 +10449,14 @@ msgid "" "interfaces in parallel environments." msgstr "" -#: gnu/packages/linux.scm:7587 +#: gnu/packages/linux.scm:7625 msgid "" "snapscreenshot saves a screenshot of one or more Linux text consoles as a\n" "Targa (@dfn{.tga}) image. It can be used by anyone with read access to the\n" "relevant @file{/dev/vcs*} file(s)." msgstr "" -#: gnu/packages/linux.scm:7641 +#: gnu/packages/linux.scm:7679 msgid "" "fbcat saves the contents of the Linux framebuffer (@file{/dev/fb*}), or\n" "a dump therof. It supports a wide range of drivers and pixel formats.\n" @@ -10344,14 +10468,14 @@ msgid "" "emulates the behaviour of Gunnar Monell's older fbgrab utility." msgstr "" -#: gnu/packages/linux.scm:7672 +#: gnu/packages/linux.scm:7710 msgid "" "Control groups is Linux kernel method for process resource\n" "restriction, permission handling and more. This package provides userspace\n" "interface to this kernel feature." msgstr "" -#: gnu/packages/linux.scm:7707 +#: gnu/packages/linux.scm:7745 msgid "" "mbpfan is a fan control daemon for Apple Macbooks. It uses input from\n" "the @code{coretemp} module and sets the fan speed using the @code{applesmc}\n" @@ -10359,7 +10483,7 @@ msgid "" "privileges." msgstr "" -#: gnu/packages/linux.scm:7751 +#: gnu/packages/linux.scm:7789 msgid "" "This package is low-level user-level Intel's communications interface.\n" "The PSM2 API is a high-performance vendor-specific protocol that provides a\n" @@ -10367,7 +10491,7 @@ msgid "" "high-speed networking devices." msgstr "" -#: gnu/packages/linux.scm:7794 +#: gnu/packages/linux.scm:7832 msgid "" "This package provides a library called libpfm4, which is used to develop\n" "monitoring tools exploiting the performance monitoring events such as those\n" @@ -10382,7 +10506,7 @@ msgid "" "introduced in Linux 2.6.31." msgstr "" -#: gnu/packages/linux.scm:7824 +#: gnu/packages/linux.scm:7862 msgid "" "@code{libnfnetlink} is the low-level library for netfilter related\n" "kernel/userspace communication. It provides a generic messaging\n" @@ -10391,7 +10515,7 @@ msgid "" "management tools in userspace." msgstr "" -#: gnu/packages/linux.scm:7851 +#: gnu/packages/linux.scm:7889 msgid "" "The netlink package provides a simple netlink library for\n" "Go. Netlink is the interface a user-space program in Linux uses to\n" @@ -10399,7 +10523,7 @@ msgid "" "IP addresses and routes, and configure IPsec." msgstr "" -#: gnu/packages/linux.scm:7891 +#: gnu/packages/linux.scm:7929 msgid "" "The inih (INI Not Invented Here) library is a simple .INI file\n" "parser written in C. It's only a couple of pages of code, and it was designed to\n" @@ -10408,20 +10532,20 @@ msgid "" "822-style multi-line syntax and name: value entries." msgstr "" -#: gnu/packages/linux.scm:7942 +#: gnu/packages/linux.scm:7980 #, fuzzy msgid "" "This package provides commands to create and check XFS\n" "file systems." msgstr "Ez a csomag egy Python felületet biztosít a Redis kulcs-érték tároláshoz." -#: gnu/packages/linux.scm:7998 +#: gnu/packages/linux.scm:8036 msgid "" "This package provides a statically linked @command{xfs_repair} taken\n" "from the xfsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:8034 +#: gnu/packages/linux.scm:8072 msgid "" "This package provides a program to generate an ext2\n" "file system as a normal (non-root) user. It does not require you to mount\n" @@ -10429,7 +10553,7 @@ msgid "" "the superuser to make device nodes." msgstr "" -#: gnu/packages/linux.scm:8129 +#: gnu/packages/linux.scm:8167 msgid "" "@command{fakeroot} runs a command in an environment where it appears to\n" "have root privileges for file manipulation. This is useful for allowing users\n" @@ -10442,7 +10566,7 @@ msgid "" "without using the archiver." msgstr "" -#: gnu/packages/linux.scm:8169 +#: gnu/packages/linux.scm:8207 msgid "" "@command{fakechroot} runs a command in an environment were is additional\n" "possibility to use @code{chroot} command without root privileges. This is\n" @@ -10453,13 +10577,13 @@ msgid "" "set as @code{LD_PRELOAD} to override the C library file system functions." msgstr "" -#: gnu/packages/linux.scm:8215 +#: gnu/packages/linux.scm:8253 msgid "" "inputattach dispatches input events from several device\n" "types and interfaces and translates so that the X server can use them." msgstr "" -#: gnu/packages/linux.scm:8251 +#: gnu/packages/linux.scm:8289 msgid "" "PipeWire is a project that aims to greatly improve handling of audio and\n" "video under Linux. It aims to support the usecases currently handled by both\n" @@ -10471,7 +10595,7 @@ msgid "" "of Linux application development." msgstr "" -#: gnu/packages/linux.scm:8318 +#: gnu/packages/linux.scm:8356 msgid "" "WirePlumber is a modular session / policy manager for\n" "PipeWire and a GObject-based high-level library that wraps PipeWire's API,\n" @@ -10479,7 +10603,7 @@ msgid "" "tools for managing PipeWire." msgstr "" -#: gnu/packages/linux.scm:8357 +#: gnu/packages/linux.scm:8395 msgid "" "The Embedded Linux* Library (ELL) provides core, low-level\n" "functionality for system daemons. It typically has no dependencies other than\n" @@ -10488,7 +10612,7 @@ msgid "" "platforms, it is not limited to resource-constrained systems." msgstr "" -#: gnu/packages/linux.scm:8386 +#: gnu/packages/linux.scm:8424 msgid "" "This package provides the @code{kexec} program and ancillary\n" "utilities. Using @code{kexec}, it is possible to boot directly into a new\n" @@ -10496,7 +10620,7 @@ msgid "" "system boot process." msgstr "" -#: gnu/packages/linux.scm:8419 +#: gnu/packages/linux.scm:8457 msgid "" "@code{cachefilesd} is a userspace daemon that manages the\n" "cache data store that is used by network file systems such as @code{AFS} and\n" @@ -10504,14 +10628,14 @@ msgid "" "persistent over reboots." msgstr "" -#: gnu/packages/linux.scm:8463 +#: gnu/packages/linux.scm:8501 msgid "" "Libbpf supports building BPF CO-RE-enabled applications, which, in\n" "contrast to BCC, do not require the Clang/LLVM runtime or linux kernel\n" "headers." msgstr "" -#: gnu/packages/linux.scm:8541 +#: gnu/packages/linux.scm:8579 msgid "" "BCC is a toolkit for creating efficient kernel tracing and manipulation\n" "programs, and includes several useful tools and examples. It makes use of\n" @@ -10520,7 +10644,7 @@ msgid "" "and above." msgstr "" -#: gnu/packages/linux.scm:8577 +#: gnu/packages/linux.scm:8615 msgid "" "bpftrace is a high-level tracing language for Linux enhanced Berkeley\n" "Packet Filter (eBPF) available in recent Linux kernels (4.x). bpftrace uses\n" @@ -10532,14 +10656,14 @@ msgid "" "created by Alastair Robertson." msgstr "" -#: gnu/packages/linux.scm:8609 +#: gnu/packages/linux.scm:8647 msgid "" "This package provides a Linux kernel module that will\n" "provide a serial device @code{/dev/ttyebus} with almost no latency upon\n" "receiving. It is dedicated to the PL011 UART of the Raspberry Pi." msgstr "" -#: gnu/packages/linux.scm:8635 +#: gnu/packages/linux.scm:8673 msgid "" "IP sets are a framework inside the Linux 2.4.x and 2.6.x kernel which\n" "can be administered by the ipset utility. Depending on the type,\n" @@ -10560,7 +10684,7 @@ msgid "" "then IP sets may be the proper tool for you." msgstr "" -#: gnu/packages/linux.scm:8682 +#: gnu/packages/linux.scm:8720 msgid "" "This is the io_uring library, liburing. liburing provides\n" "helpers to setup and teardown io_uring instances, and also a simplified\n" @@ -10568,14 +10692,14 @@ msgid "" "kernel side implementation." msgstr "" -#: gnu/packages/linux.scm:8710 +#: gnu/packages/linux.scm:8748 msgid "" "@acronym{EROFS, The Enhanced Read-Only File System} is a compressed,\n" "read-only file system optimized for resource-scarce devices. This package\n" "provides user-space tools for creating EROFS file systems." msgstr "" -#: gnu/packages/linux.scm:8754 +#: gnu/packages/linux.scm:8792 msgid "" "The @code{rasdaemon} daemon monitors platform @acronym{RAS, Reliability\n" "Availability and Serviceability} reports from Linux kernel trace events.\n" @@ -10583,7 +10707,7 @@ msgid "" "through standard log mechanisms like syslog." msgstr "" -#: gnu/packages/linux.scm:8788 +#: gnu/packages/linux.scm:8826 msgid "" "This package provides a C library with C++/Python bindings and\n" "command-line tools for interacting with GPIO devices that avoids the usage of\n" @@ -10609,33 +10733,33 @@ msgid "" "beginning." msgstr "" -#: gnu/packages/messaging.scm:181 +#: gnu/packages/messaging.scm:183 msgid "" "OMEMO-wget is a tool to handle cryptographic URLs, generated\n" "by @acronym{OMEMO, OMEMO Multi-End Message and Object Encryption}, during\n" "XMPP-based sessions." msgstr "" -#: gnu/packages/messaging.scm:237 +#: gnu/packages/messaging.scm:239 msgid "" "Psi is a capable XMPP client aimed at experienced users.\n" "Its design goals are simplicity and stability." msgstr "" -#: gnu/packages/messaging.scm:295 +#: gnu/packages/messaging.scm:297 msgid "" "GNT is an ncurses toolkit for creating text-mode graphical\n" "user interfaces in a fast and easy way. It is based on GLib and ncurses." msgstr "" -#: gnu/packages/messaging.scm:346 +#: gnu/packages/messaging.scm:348 msgid "" "LibGadu is library for handling Gadu-Gadu instant messenger\n" "protocol. The library is written in C and aims to be operating system and\n" "environment independent." msgstr "" -#: gnu/packages/messaging.scm:381 +#: gnu/packages/messaging.scm:383 msgid "" "SILC (Secure Internet Live Conferencing) is a modern and secure\n" "conferencing protocol. It provides all the common conferencing services like\n" @@ -10643,14 +10767,14 @@ msgid "" "conferencing." msgstr "" -#: gnu/packages/messaging.scm:427 +#: gnu/packages/messaging.scm:429 msgid "" "QXmpp is a XMPP client and server library written in C++ and uses the Qt\n" "framework. It builds XMPP clients complying with the XMPP Compliance Suites\n" "2021 for IM and Advanced Mobile." msgstr "" -#: gnu/packages/messaging.scm:454 +#: gnu/packages/messaging.scm:456 msgid "" "Meanwhile is a library for connecting to a LIM (Lotus Instant\n" "Messaging, formerly Lotus Sametime, formerly VPBuddy) community. It uses a\n" @@ -10658,7 +10782,7 @@ msgid "" "TCP sessions from existing clients." msgstr "" -#: gnu/packages/messaging.scm:500 +#: gnu/packages/messaging.scm:502 msgid "" "Poezio is a free console XMPP client (the protocol on which\n" "the Jabber IM network is built).\n" @@ -10671,7 +10795,7 @@ msgid "" "powerful, standard and open protocol." msgstr "" -#: gnu/packages/messaging.scm:533 +#: gnu/packages/messaging.scm:535 msgid "" "OTR allows you to have private conversations over instant\n" "messaging by providing: (1) Encryption: No one else can read your instant\n" @@ -10684,7 +10808,7 @@ msgid "" "your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:572 +#: gnu/packages/messaging.scm:574 msgid "" "libsignal-protocol-c is an implementation of a ratcheting\n" "forward secrecy protocol that works in synchronous and asynchronous\n" @@ -10692,20 +10816,20 @@ msgid "" "end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:609 +#: gnu/packages/messaging.scm:611 msgid "" "This is a client library for @code{libsignal-protocol-c}.\n" "It implements the necessary interfaces using @code{libgcrypt} and\n" "@code{sqlite}." msgstr "" -#: gnu/packages/messaging.scm:641 +#: gnu/packages/messaging.scm:643 msgid "" "This library implements @acronym{OMEMO, OMEMO Multi-End\n" "Message and Object Encryption} of XMPP (XEP-0384) in C." msgstr "" -#: gnu/packages/messaging.scm:681 +#: gnu/packages/messaging.scm:683 msgid "" "BitlBee brings IM (instant messaging) to IRC clients, for\n" "people who have an IRC client running all the time and don't want to run an\n" @@ -10715,20 +10839,20 @@ msgid "" "identi.ca and status.net)." msgstr "" -#: gnu/packages/messaging.scm:748 +#: gnu/packages/messaging.scm:750 msgid "" "Bitlbee-discord is a plugin for Bitlbee which provides\n" "access to servers running the Discord protocol." msgstr "" -#: gnu/packages/messaging.scm:794 +#: gnu/packages/messaging.scm:796 msgid "" "Purple-Mattermost is a plug-in for Purple, the instant messaging library\n" "used by Pidgin and Bitlbee, among others, to access\n" "@uref{https://mattermost.com/, Mattermost} servers." msgstr "" -#: gnu/packages/messaging.scm:852 +#: gnu/packages/messaging.scm:854 msgid "" "HexChat lets you connect to multiple IRC networks at once. The main\n" "window shows the list of currently connected networks and their channels, the\n" @@ -10737,7 +10861,7 @@ msgid "" "dictionaries. HexChat can be extended with multiple addons." msgstr "" -#: gnu/packages/messaging.scm:917 +#: gnu/packages/messaging.scm:919 msgid "" "ngIRCd is a lightweight @dfn{Internet Relay Chat} (IRC) server for small\n" "or private networks. It is easy to configure, can cope with dynamic IP\n" @@ -10745,13 +10869,13 @@ msgid "" "authentication." msgstr "" -#: gnu/packages/messaging.scm:1024 +#: gnu/packages/messaging.scm:1026 msgid "" "Pidgin is a modular instant messaging client that supports\n" "many popular chat protocols." msgstr "" -#: gnu/packages/messaging.scm:1064 +#: gnu/packages/messaging.scm:1066 msgid "" "Pidgin-OTR is a plugin that adds support for OTR to the Pidgin\n" "instant messaging client. OTR (Off-the-Record) Messaging allows you to have\n" @@ -10765,7 +10889,7 @@ msgid "" "control of your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:1118 +#: gnu/packages/messaging.scm:1120 msgid "" "ZNC is an @dfn{IRC network bouncer} or @dfn{BNC}. It can\n" "detach the client from the actual IRC server, and also from selected channels.\n" @@ -10773,41 +10897,41 @@ msgid "" "simultaneously and therefore appear under the same nickname on IRC." msgstr "" -#: gnu/packages/messaging.scm:1147 +#: gnu/packages/messaging.scm:1149 msgid "" "Python-nbxmpp is a Python library that provides a way for\n" "Python applications to use the XMPP network. This library was initially a fork\n" "of xmpppy." msgstr "" -#: gnu/packages/messaging.scm:1274 +#: gnu/packages/messaging.scm:1276 msgid "" "Gajim aims to be an easy to use and fully-featured XMPP chat\n" "client. It is extensible via plugins, supports end-to-end encryption (OMEMO\n" "and OpenPGP) and available in 29 languages." msgstr "" -#: gnu/packages/messaging.scm:1309 +#: gnu/packages/messaging.scm:1311 msgid "" "Gajim-OMEMO is a plugin that adds support for the OMEMO\n" "Encryption to Gajim. OMEMO is an XMPP Extension Protocol (XEP) for secure\n" "multi-client end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:1344 +#: gnu/packages/messaging.scm:1346 msgid "" "Gajim-OpenPGP is a plugin that adds support for the OpenPGP\n" "Encryption to Gajim." msgstr "" -#: gnu/packages/messaging.scm:1418 +#: gnu/packages/messaging.scm:1420 msgid "" "Dino is a chat client for the desktop. It focuses on providing\n" "a minimal yet reliable Jabber/XMPP experience and having encryption enabled by\n" "default." msgstr "" -#: gnu/packages/messaging.scm:1505 +#: gnu/packages/messaging.scm:1507 msgid "" "Prosody is a modern XMPP communication server. It aims to\n" "be easy to set up and configure, and efficient with system resources.\n" @@ -10816,43 +10940,43 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/messaging.scm:1540 +#: gnu/packages/messaging.scm:1542 msgid "" "This module implements XEP-0363: it allows clients to\n" "upload files over HTTP." msgstr "" -#: gnu/packages/messaging.scm:1572 +#: gnu/packages/messaging.scm:1574 msgid "" "This module implements XEP-0198: when supported by both\n" "the client and server, it can allow clients to resume a disconnected session,\n" "and prevent message loss." msgstr "" -#: gnu/packages/messaging.scm:1601 +#: gnu/packages/messaging.scm:1603 msgid "C library implementation of the Tox encrypted messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1633 +#: gnu/packages/messaging.scm:1635 msgid "" "Official fork of the C library implementation of the Tox encrypted\n" "messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1687 +#: gnu/packages/messaging.scm:1689 msgid "" "uTox is a lightweight Tox client. Tox is a distributed and secure\n" "instant messenger with audio and video chat capabilities." msgstr "" -#: gnu/packages/messaging.scm:1750 +#: gnu/packages/messaging.scm:1752 msgid "" "qTox is a Tox client that follows the Tox design\n" "guidelines. It provides an easy to use application that allows you to\n" "connect with friends and family without anyone else listening in." msgstr "" -#: gnu/packages/messaging.scm:1772 +#: gnu/packages/messaging.scm:1774 msgid "" "Ytalk is a replacement for the BSD talk program. Its main\n" "advantage is the ability to communicate with any arbitrary number of users at\n" @@ -10860,7 +10984,7 @@ msgid "" "with several different talk daemons at the same time." msgstr "" -#: gnu/packages/messaging.scm:1796 +#: gnu/packages/messaging.scm:1798 msgid "" "gloox is a full-featured Jabber/XMPP client library,\n" "written in ANSI C++. It makes writing spec-compliant clients easy\n" @@ -10868,7 +10992,7 @@ msgid "" "into existing applications." msgstr "" -#: gnu/packages/messaging.scm:1866 +#: gnu/packages/messaging.scm:1868 msgid "" "@code{Net::PSYC} with support for TCP, UDP, Event.pm, @code{IO::Select} and\n" "Gtk2 event loops. This package includes 12 applications and additional scripts:\n" @@ -10876,14 +11000,14 @@ msgid "" "for @uref{https://torproject.org,tor} router) and many more." msgstr "" -#: gnu/packages/messaging.scm:1907 +#: gnu/packages/messaging.scm:1909 msgid "" "@code{libpsyc} is a PSYC library in C which implements\n" "core aspects of PSYC, useful for all kinds of clients and servers\n" "including psyced." msgstr "" -#: gnu/packages/messaging.scm:1949 +#: gnu/packages/messaging.scm:1951 msgid "" "Loudmouth is a lightweight and easy-to-use C library for programming\n" "with the XMPP (formerly known as Jabber) protocol. It is designed to be\n" @@ -10891,7 +11015,7 @@ msgid "" "protocol allows." msgstr "" -#: gnu/packages/messaging.scm:1991 +#: gnu/packages/messaging.scm:1993 msgid "" "Mcabber is a small XMPP (Jabber) console client, which includes features\n" "such as SASL and TLS support, @dfn{Multi-User Chat} (MUC) support, logging,\n" @@ -10899,7 +11023,7 @@ msgid "" "support, and more." msgstr "" -#: gnu/packages/messaging.scm:2039 +#: gnu/packages/messaging.scm:2041 msgid "" "GNU Freetalk is a command-line Jabber/XMPP chat client. It notably uses\n" "the Readline library to handle input, so it features convenient navigation of\n" @@ -10907,27 +11031,27 @@ msgid "" "is also scriptable and extensible via Guile." msgstr "" -#: gnu/packages/messaging.scm:2074 +#: gnu/packages/messaging.scm:2076 msgid "" "Libmesode is a fork of libstrophe for use with Profanity\n" "XMPP Client. In particular, libmesode provides extra TLS functionality such as\n" "manual SSL certificate verification." msgstr "" -#: gnu/packages/messaging.scm:2109 +#: gnu/packages/messaging.scm:2111 msgid "" "Libstrophe is a minimal XMPP library written in C. It has\n" "almost no external dependencies, only an XML parsing library (expat or libxml\n" "are both supported)." msgstr "" -#: gnu/packages/messaging.scm:2167 +#: gnu/packages/messaging.scm:2169 msgid "" "Profanity is a console based XMPP client written in C\n" "using ncurses and libmesode, inspired by Irssi." msgstr "" -#: gnu/packages/messaging.scm:2197 +#: gnu/packages/messaging.scm:2199 msgid "" "Libircclient is a library which implements the client IRC\n" "protocol. It is designed to be small, fast, portable and compatible with the\n" @@ -10935,14 +11059,14 @@ msgid "" "building the IRC clients and bots." msgstr "" -#: gnu/packages/messaging.scm:2255 +#: gnu/packages/messaging.scm:2257 msgid "" "Toxic is a console-based instant messaging client, using\n" "c-toxcore and ncurses. It provides audio calls, sound and desktop\n" "notifications, and Python scripting support." msgstr "" -#: gnu/packages/messaging.scm:2281 +#: gnu/packages/messaging.scm:2283 msgid "" "libqmatrixclient is a Qt5 library to write clients for the\n" "Matrix instant messaging protocol. Quaternion is the reference client\n" @@ -10950,13 +11074,13 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2326 +#: gnu/packages/messaging.scm:2330 msgid "" "@code{mtxclient} is a C++ library that implements client API\n" "for the Matrix protocol. It is built on to of @code{Boost.Asio}." msgstr "" -#: gnu/packages/messaging.scm:2418 +#: gnu/packages/messaging.scm:2423 msgid "" "@code{Nheko} want to provide a native desktop app for the\n" "Matrix protocol that feels more like a mainstream chat app and less like an IRC\n" @@ -10966,7 +11090,7 @@ msgid "" "notification, emojis, E2E encryption, and voip calls." msgstr "" -#: gnu/packages/messaging.scm:2455 +#: gnu/packages/messaging.scm:2460 msgid "" "Quaternion is a Qt5 desktop client for the Matrix instant\n" "messaging protocol. It uses libqmatrixclient and is its reference client\n" @@ -10974,7 +11098,7 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2502 +#: gnu/packages/messaging.scm:2507 msgid "" "Hangups is an instant messaging client for Google Hangouts. It includes\n" "both a Python library and a reference client with a text-based user interface.\n" @@ -10984,7 +11108,7 @@ msgid "" "messaging that aren’t available to clients that connect over XMPP." msgstr "" -#: gnu/packages/messaging.scm:2584 +#: gnu/packages/messaging.scm:2589 msgid "" "Telegram-purple is a plugin for Libpurple, the communication library\n" "used by the Pidgin instant messaging client, that adds support for the\n" @@ -10994,7 +11118,7 @@ msgid "" "replacement." msgstr "" -#: gnu/packages/messaging.scm:2629 +#: gnu/packages/messaging.scm:2632 msgid "" "Tdlib is a cross-platform library for creating custom\n" "Telegram clients following the official Telegram API. It can be easily used\n" @@ -11002,11 +11126,11 @@ msgid "" "support for high performance Telegram Bot creation." msgstr "" -#: gnu/packages/messaging.scm:2667 +#: gnu/packages/messaging.scm:2670 msgid "Plugin for libpurple to allow sending SMS using ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2712 +#: gnu/packages/messaging.scm:2715 msgid "" "Purple-lurch plugin adds end-to-end encryption support\n" "through the Double Ratchet (Axolotl) algorithm, to @code{libpurple}\n" @@ -11017,19 +11141,19 @@ msgid "" "asynchronicity." msgstr "" -#: gnu/packages/messaging.scm:2748 +#: gnu/packages/messaging.scm:2751 msgid "" "This package provides a C++ library for parsing, formatting, and\n" "validating international phone numbers." msgstr "" -#: gnu/packages/messaging.scm:2793 +#: gnu/packages/messaging.scm:2796 msgid "" "Chatty is a chat program for XMPP and SMS. It works on mobile\n" "as well as on desktop platforms. It's based on libpurple and ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2814 +#: gnu/packages/messaging.scm:2817 msgid "" "This package provides Eclipse Mosquitto, a message broker\n" "that implements the MQTT protocol versions 5.0, 3.1.1 and 3.1. Mosquitto\n" @@ -11042,30 +11166,30 @@ msgid "" "as phones, embedded computers or microcontrollers." msgstr "" -#: gnu/packages/messaging.scm:2864 +#: gnu/packages/messaging.scm:2867 msgid "" "Movim-Desktop is a desktop application, relying on Qt, for the Movim\n" "social and chat platform." msgstr "" -#: gnu/packages/messaging.scm:2999 +#: gnu/packages/messaging.scm:3002 msgid "" "Psi+ is a spin-off of Psi XMPP client. It is a powerful XMPP client\n" "designed for experienced users." msgstr "" -#: gnu/packages/messaging.scm:3039 +#: gnu/packages/messaging.scm:3042 #, fuzzy msgid "This package provides Python bindings to Zulip's API." msgstr "" "Ez a csomag egy szótárat biztosít a Hunspell helyesírás-ellenőrző\n" "programkönyvtárhoz." -#: gnu/packages/messaging.scm:3088 +#: gnu/packages/messaging.scm:3091 msgid "This package contains Zulip's official terminal client." msgstr "" -#: gnu/packages/messaging.scm:3110 +#: gnu/packages/messaging.scm:3113 msgid "" "Relays messages between different channels from various\n" "messaging networks and protocols. So far it supports mattermost, IRC, gitter,\n" @@ -11074,20 +11198,20 @@ msgid "" "API. Mattermost is not required." msgstr "" -#: gnu/packages/messaging.scm:3143 +#: gnu/packages/messaging.scm:3146 msgid "" "@command{pounce} is a multi-client, TLS-only IRC bouncer. It maintains\n" "a persistent connection to an IRC server, acting as a proxy and buffer for\n" "a number of clients." msgstr "" -#: gnu/packages/messaging.scm:3209 +#: gnu/packages/messaging.scm:3212 msgid "" "@code{weechat-matrix} is a Python plugin for Weechat that lets\n" "Weechat communicate over the Matrix protocol." msgstr "" -#: gnu/packages/messaging.scm:3256 +#: gnu/packages/messaging.scm:3259 msgid "" "@code{weechat-wee-slack} is a WeeChat native client for\n" "Slack. It provides supplemental features only available in the web/mobile\n" @@ -11196,14 +11320,14 @@ msgid "" "themselves." msgstr "" -#: gnu/packages/networking.scm:174 +#: gnu/packages/networking.scm:176 msgid "" "UsrSCTP is a portable SCTP userland stack. SCTP is a message\n" "oriented, reliable transport protocol with direct support for multihoming that\n" "runs on top of IP or UDP, and supports both v4 and v6 versions." msgstr "" -#: gnu/packages/networking.scm:199 +#: gnu/packages/networking.scm:201 msgid "" "Axel tries to accelerate the download process by using multiple\n" "connections per file, and can also balance the load between different\n" @@ -11212,38 +11336,38 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/networking.scm:264 +#: gnu/packages/networking.scm:266 msgid "" "LibCamera is a complex camera support library for GNU+Linux,\n" "Android, and ChromeOS." msgstr "" -#: gnu/packages/networking.scm:334 +#: gnu/packages/networking.scm:336 msgid "" "LibNice is a library that implements the Interactive\n" "Connectivity Establishment (ICE) standard (RFC 5245 & RFC 8445). It provides a\n" "GLib-based library, libnice, as well as GStreamer elements to use it." msgstr "" -#: gnu/packages/networking.scm:393 +#: gnu/packages/networking.scm:395 msgid "" "RTMPdump is a toolkit for RTMP streams. All forms of RTMP are\n" "supported, including rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps://." msgstr "" -#: gnu/packages/networking.scm:422 +#: gnu/packages/networking.scm:424 msgid "" "Slurm is a network load monitor. It shows real-time traffic statistics\n" "from any network device in any of three ASCII graph formats." msgstr "" -#: gnu/packages/networking.scm:457 +#: gnu/packages/networking.scm:459 msgid "" "SRT is a transport technology that optimizes streaming\n" "performance across unpredictable networks, such as the Internet." msgstr "" -#: gnu/packages/networking.scm:500 +#: gnu/packages/networking.scm:502 msgid "" "The lksctp-tools project provides a user-space library for @acronym{SCTP,\n" "the Stream Control Transmission Protocol} (@file{libsctp}) and C language header\n" @@ -11252,13 +11376,13 @@ msgid "" "It also includes some SCTP-related helper utilities." msgstr "" -#: gnu/packages/networking.scm:541 +#: gnu/packages/networking.scm:543 msgid "" "@code{pysctp} implements the SCTP socket API. You need a\n" "SCTP-aware kernel (most are)." msgstr "" -#: gnu/packages/networking.scm:565 +#: gnu/packages/networking.scm:567 msgid "" "@command{knockd} is a port-knock daemon. It listens to all traffic on\n" "an ethernet or PPP interface, looking for special \"knock\" sequences of @dfn{port-hits}\n" @@ -11266,7 +11390,7 @@ msgid "" "at the link-layer level." msgstr "" -#: gnu/packages/networking.scm:605 +#: gnu/packages/networking.scm:607 msgid "" "NNG project is a rewrite of the scalability protocols library\n" "known as libnanomsg, and adds significant new capabilities, while retaining\n" @@ -11275,7 +11399,7 @@ msgid "" "publish/subscribe, RPC-style request/reply, or service discovery." msgstr "" -#: gnu/packages/networking.scm:648 +#: gnu/packages/networking.scm:650 msgid "" "Nanomsg is a socket library that provides several common\n" "communication patterns. It aims to make the networking layer fast, scalable,\n" @@ -11283,14 +11407,14 @@ msgid "" "systems with no further dependencies." msgstr "" -#: gnu/packages/networking.scm:758 +#: gnu/packages/networking.scm:760 msgid "" "Blueman is a Bluetooth management utility using the Bluez\n" "D-Bus backend. It is designed to be easy to use for most common Bluetooth\n" "tasks." msgstr "" -#: gnu/packages/networking.scm:783 +#: gnu/packages/networking.scm:785 msgid "" "GNU MAC Changer is a utility for viewing and changing MAC\n" "addresses of networking devices. New addresses may be set explicitly or\n" @@ -11298,14 +11422,14 @@ msgid "" "or, more generally, MAC addresses of the same category of hardware." msgstr "" -#: gnu/packages/networking.scm:831 +#: gnu/packages/networking.scm:833 msgid "" "Miredo is an implementation (client, relay, server) of the Teredo\n" "specification, which provides IPv6 Internet connectivity to IPv6 enabled hosts\n" "residing in IPv4-only networks, even when they are behind a NAT device." msgstr "" -#: gnu/packages/networking.scm:851 +#: gnu/packages/networking.scm:853 msgid "" "NDisc6 is a collection of tools for IPv6 networking diagnostics.\n" "It includes the following programs:\n" @@ -11319,7 +11443,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:904 +#: gnu/packages/networking.scm:906 msgid "" "@command{parprouted} is a daemon for transparent IP (Layer@tie{}3)\n" "proxy ARP bridging. Unlike standard bridging, proxy ARP bridging can bridge\n" @@ -11329,7 +11453,14 @@ msgid "" "useful for making transparent firewalls." msgstr "" -#: gnu/packages/networking.scm:931 +#: gnu/packages/networking.scm:945 +msgid "" +"@command{pproxy} is an asynchronuous proxy server implemented with\n" +"Python 3 @code{asyncio}. Among the supported protocols are HTTP, SOCKS\n" +"and SSH, and it can use both TCP and UDP as transport mechanisms." +msgstr "" + +#: gnu/packages/networking.scm:969 msgid "" "socat is a relay for bidirectional data transfer between two independent\n" "data channels---files, pipes, devices, sockets, etc. It can create\n" @@ -11342,7 +11473,7 @@ msgid "" "or server shell scripts with network connections." msgstr "" -#: gnu/packages/networking.scm:962 +#: gnu/packages/networking.scm:1000 msgid "" "mbuffer is a tool for buffering data streams with a large set of features:\n" "\n" @@ -11358,14 +11489,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1058 +#: gnu/packages/networking.scm:1096 msgid "" "With this package you can monitor and filter incoming requests for\n" "network services. It includes a library which may be used by daemons to\n" "transparently check connection attempts against an access control list." msgstr "" -#: gnu/packages/networking.scm:1081 +#: gnu/packages/networking.scm:1119 msgid "" "The 0MQ lightweight messaging kernel is a library which extends the\n" "standard socket interfaces with features traditionally provided by specialized\n" @@ -11375,46 +11506,46 @@ msgid "" "more." msgstr "" -#: gnu/packages/networking.scm:1110 +#: gnu/packages/networking.scm:1148 msgid "" "czmq provides bindings for the ØMQ core API that hides the differences\n" "between different versions of ØMQ." msgstr "" -#: gnu/packages/networking.scm:1141 +#: gnu/packages/networking.scm:1179 msgid "" "This package provides header-only C++ bindings for ØMQ. The header\n" "files contain direct mappings of the abstractions provided by the ØMQ C API." msgstr "" -#: gnu/packages/networking.scm:1175 +#: gnu/packages/networking.scm:1213 msgid "" "@code{libnatpmp} is a portable and asynchronous implementation of\n" "the Network Address Translation - Port Mapping Protocol (NAT-PMP)\n" "written in the C programming language." msgstr "" -#: gnu/packages/networking.scm:1213 +#: gnu/packages/networking.scm:1251 msgid "" "librdkafka is a C library implementation of the Apache Kafka protocol,\n" "containing both Producer and Consumer support." msgstr "" -#: gnu/packages/networking.scm:1232 +#: gnu/packages/networking.scm:1270 msgid "" "libndp contains a library which provides a wrapper for IPv6 Neighbor\n" "Discovery Protocol. It also provides a tool named ndptool for sending and\n" "receiving NDP messages." msgstr "" -#: gnu/packages/networking.scm:1256 +#: gnu/packages/networking.scm:1294 msgid "" "ethtool can be used to query and change settings such as speed,\n" "auto-negotiation and checksum offload on many network devices, especially\n" "Ethernet devices." msgstr "" -#: gnu/packages/networking.scm:1298 +#: gnu/packages/networking.scm:1336 msgid "" "IFStatus is a simple, easy-to-use program for displaying commonly\n" "needed/wanted real-time traffic statistics of multiple network\n" @@ -11422,7 +11553,7 @@ msgid "" "intended as a substitute for the PPPStatus and EthStatus projects." msgstr "" -#: gnu/packages/networking.scm:1347 +#: gnu/packages/networking.scm:1385 msgid "" "This package contains a variety of tools for dealing with network\n" "configuration, troubleshooting, or servers. Utilities included are:\n" @@ -11443,7 +11574,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1388 +#: gnu/packages/networking.scm:1426 msgid "" "Nload is a console application which monitors network traffic and\n" "bandwidth usage in real time. It visualizes the in- and outgoing traffic using\n" @@ -11451,7 +11582,7 @@ msgid "" "and min/max network usage." msgstr "" -#: gnu/packages/networking.scm:1432 +#: gnu/packages/networking.scm:1470 msgid "" "Iodine tunnels IPv4 data through a DNS server. This\n" "can be useful in different situations where internet access is firewalled, but\n" @@ -11459,7 +11590,7 @@ msgid "" "and up to 1 Mbit/s downstream." msgstr "" -#: gnu/packages/networking.scm:1473 +#: gnu/packages/networking.scm:1511 msgid "" "whois searches for an object in a @dfn{WHOIS} (RFC 3912) database.\n" "It is commonly used to look up the registered users or assignees of an Internet\n" @@ -11471,14 +11602,14 @@ msgid "" "of the same name." msgstr "" -#: gnu/packages/networking.scm:1553 +#: gnu/packages/networking.scm:1591 msgid "" "Wireshark is a network protocol analyzer, or @dfn{packet\n" "sniffer}, that lets you capture and interactively browse the contents of\n" "network frames." msgstr "" -#: gnu/packages/networking.scm:1574 +#: gnu/packages/networking.scm:1613 msgid "" "fping is a ping-like program which uses @acronym{ICMP, Internet Control\n" "Message Protocol} echo requests to determine if a target host is responding.\n" @@ -11490,26 +11621,26 @@ msgid "" "round-robin fashion." msgstr "" -#: gnu/packages/networking.scm:1625 +#: gnu/packages/networking.scm:1664 msgid "" "This package provides a command-line client (@command{gandi}) to buy,\n" "manage, and delete Internet resources from Gandi.net such as domain names,\n" "virtual machines, and certificates." msgstr "" -#: gnu/packages/networking.scm:1651 +#: gnu/packages/networking.scm:1690 msgid "" "The netns package provides a simple interface for\n" "handling network namespaces in Go." msgstr "" -#: gnu/packages/networking.scm:1678 +#: gnu/packages/networking.scm:1717 msgid "" "This library provides methods for using the stream control\n" "transmission protocol (SCTP) in a Go application." msgstr "" -#: gnu/packages/networking.scm:1707 +#: gnu/packages/networking.scm:1746 msgid "" "httping measures how long it takes to connect to a web server, send an\n" "HTTP(S) request, and receive the reply headers. It is somewhat similar to\n" @@ -11518,7 +11649,7 @@ msgid "" "application stack itself." msgstr "" -#: gnu/packages/networking.scm:1746 +#: gnu/packages/networking.scm:1785 msgid "" "@command{httpstat} is a tool to visualize statistics from the\n" "@command{curl} HTTP client. It acts as a wrapper for @command{curl} and\n" @@ -11526,20 +11657,20 @@ msgid "" "TCP connection, TLS handshake and so on) in the terminal." msgstr "" -#: gnu/packages/networking.scm:1788 +#: gnu/packages/networking.scm:1827 msgid "" "Squid is a caching proxy for the Web supporting HTTP, HTTPS,\n" "FTP, and more. It reduces bandwidth and improves response times by caching and\n" "reusing frequently-requested web pages." msgstr "" -#: gnu/packages/networking.scm:1822 +#: gnu/packages/networking.scm:1861 msgid "" "Bandwidth Monitor NG is a small and simple console based\n" "live network and disk I/O bandwidth monitor." msgstr "" -#: gnu/packages/networking.scm:1874 +#: gnu/packages/networking.scm:1913 msgid "" "Aircrack-ng is a complete suite of tools to assess WiFi network\n" "security. It focuses on different areas of WiFi security: monitoring,\n" @@ -11547,14 +11678,14 @@ msgid "" "allows for heavy scripting." msgstr "" -#: gnu/packages/networking.scm:1903 +#: gnu/packages/networking.scm:1942 msgid "" "Pixiewps implements the pixie-dust attack to brute\n" "force the Wi-Fi Protected Setup (WPS) PIN by exploiting the low or\n" "non-existing entropy of some access points." msgstr "" -#: gnu/packages/networking.scm:1949 +#: gnu/packages/networking.scm:1988 msgid "" "Reaver performs a brute force attack against an access\n" "point's Wi-Fi Protected Setup (WPS) PIN. Once the PIN is found, the WPA\n" @@ -11562,7 +11693,7 @@ msgid "" "reconfigured." msgstr "" -#: gnu/packages/networking.scm:1974 +#: gnu/packages/networking.scm:2013 msgid "" "Danga::Socket is an abstract base class for objects backed by a socket\n" "which provides the basic framework for event-driven asynchronous IO, designed\n" @@ -11570,7 +11701,7 @@ msgid "" "loop." msgstr "" -#: gnu/packages/networking.scm:2000 +#: gnu/packages/networking.scm:2039 msgid "" "This module provides several IP address validation subroutines that both\n" "validate and untaint their input. This includes both basic validation\n" @@ -11579,62 +11710,62 @@ msgid "" "private (reserved)." msgstr "" -#: gnu/packages/networking.scm:2028 +#: gnu/packages/networking.scm:2067 msgid "Net::DNS is the Perl Interface to the Domain Name System." msgstr "" -#: gnu/packages/networking.scm:2060 +#: gnu/packages/networking.scm:2099 msgid "" "Socket6 binds the IPv6 related part of the C socket header\n" "definitions and structure manipulators for Perl." msgstr "" -#: gnu/packages/networking.scm:2087 +#: gnu/packages/networking.scm:2126 msgid "" "Net::DNS::Resolver::Programmable is a programmable DNS resolver for\n" "offline emulation of DNS." msgstr "" -#: gnu/packages/networking.scm:2109 +#: gnu/packages/networking.scm:2148 msgid "" "Net::DNS::Resolver::Mock is a subclass of Net::DNS::Resolver, but returns\n" "static data from any provided DNS zone file instead of querying the network.\n" "It is intended primarily for use in testing." msgstr "" -#: gnu/packages/networking.scm:2144 +#: gnu/packages/networking.scm:2183 msgid "NetAddr::IP manages IPv4 and IPv6 addresses and subsets." msgstr "" -#: gnu/packages/networking.scm:2177 +#: gnu/packages/networking.scm:2216 msgid "Net::Patricia does IP address lookups quickly in Perl." msgstr "" -#: gnu/packages/networking.scm:2198 +#: gnu/packages/networking.scm:2237 msgid "Net::CIDR::Lite merges IPv4 or IPv6 CIDR addresses." msgstr "" -#: gnu/packages/networking.scm:2225 +#: gnu/packages/networking.scm:2264 msgid "" "IO::Socket::INET6 is an interface for AF_INET/AF_INET6 domain\n" "sockets in Perl." msgstr "" -#: gnu/packages/networking.scm:2258 +#: gnu/packages/networking.scm:2293 msgid "" "Libproxy handles the details of HTTP/HTTPS proxy\n" "configuration for applications across all scenarios. Applications using\n" "libproxy only have to specify which proxy to use." msgstr "" -#: gnu/packages/networking.scm:2292 +#: gnu/packages/networking.scm:2327 msgid "" "Proxychains-ng is a preloader which hooks calls to sockets\n" "in dynamically linked programs and redirects them through one or more SOCKS or\n" "HTTP proxies." msgstr "" -#: gnu/packages/networking.scm:2314 +#: gnu/packages/networking.scm:2349 msgid "" "ENet's purpose is to provide a relatively thin, simple and robust network\n" "communication layer on top of UDP. The primary feature it provides is optional\n" @@ -11644,7 +11775,7 @@ msgid "" "library remains flexible, portable, and easily embeddable." msgstr "" -#: gnu/packages/networking.scm:2378 +#: gnu/packages/networking.scm:2413 msgid "" "sslh is a network protocol demultiplexer. It acts like a switchboard,\n" "accepting connections from clients on one port and forwarding them to different\n" @@ -11656,7 +11787,7 @@ msgid "" "that block port 22." msgstr "" -#: gnu/packages/networking.scm:2408 +#: gnu/packages/networking.scm:2443 msgid "" "iPerf is a tool to measure achievable bandwidth on IP networks. It\n" "supports tuning of various parameters related to timing, buffers and\n" @@ -11664,7 +11795,7 @@ msgid "" "the bandwidth, loss, and other parameters." msgstr "" -#: gnu/packages/networking.scm:2445 +#: gnu/packages/networking.scm:2480 msgid "" "NetHogs is a small 'net top' tool for Linux. Instead of\n" "breaking the traffic down per protocol or per subnet, like most tools do, it\n" @@ -11676,7 +11807,7 @@ msgid "" "gone wild and are suddenly taking up your bandwidth." msgstr "" -#: gnu/packages/networking.scm:2481 +#: gnu/packages/networking.scm:2516 msgid "" "NZBGet is a binary newsgrabber, which downloads files from Usenet based\n" "on information given in @code{nzb} files. NZBGet can be used in standalone\n" @@ -11686,7 +11817,7 @@ msgid "" "procedure calls (RPCs)." msgstr "" -#: gnu/packages/networking.scm:2562 +#: gnu/packages/networking.scm:2597 msgid "" "Open vSwitch is a multilayer virtual switch. It is designed to enable\n" "massive network automation through programmatic extension, while still\n" @@ -11694,27 +11825,27 @@ msgid "" "IPFIX, RSPAN, CLI, LACP, 802.1ag)." msgstr "" -#: gnu/packages/networking.scm:2585 +#: gnu/packages/networking.scm:2620 msgid "" "The @code{IP} class allows a comfortable parsing and\n" "handling for most notations in use for IPv4 and IPv6 addresses and\n" "networks." msgstr "" -#: gnu/packages/networking.scm:2610 +#: gnu/packages/networking.scm:2645 msgid "" "Command line interface for testing internet bandwidth using\n" "speedtest.net." msgstr "" -#: gnu/packages/networking.scm:2630 +#: gnu/packages/networking.scm:2668 msgid "" "This is a tftp client derived from OpenBSD tftp with some extra options\n" "added and bugs fixed. The source includes readline support but it is not\n" "enabled due to license conflicts between the BSD advertising clause and the GPL." msgstr "" -#: gnu/packages/networking.scm:2682 +#: gnu/packages/networking.scm:2720 msgid "" "Spiped (pronounced \"ess-pipe-dee\") is a utility for creating\n" "symmetrically encrypted and authenticated pipes between socket addresses, so\n" @@ -11724,7 +11855,7 @@ msgid "" "does not use SSH and requires a pre-shared symmetric key." msgstr "" -#: gnu/packages/networking.scm:2708 +#: gnu/packages/networking.scm:2746 msgid "" "Quagga is a routing software suite, providing implementations\n" "of OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4 for Unix platforms.\n" @@ -11736,14 +11867,14 @@ msgid "" "updates to the zebra daemon." msgstr "" -#: gnu/packages/networking.scm:2758 +#: gnu/packages/networking.scm:2796 msgid "" "The THC IPv6 Toolkit provides command-line tools and a library\n" "for researching IPv6 implementations and deployments. It requires Linux 2.6 or\n" "newer and only works on Ethernet network interfaces." msgstr "" -#: gnu/packages/networking.scm:2783 +#: gnu/packages/networking.scm:2821 msgid "" "bmon is a monitoring and debugging tool to capture\n" "networking-related statistics and prepare them visually in a human-friendly\n" @@ -11751,7 +11882,7 @@ msgid "" "interface and a programmable text output for scripting." msgstr "" -#: gnu/packages/networking.scm:2821 +#: gnu/packages/networking.scm:2859 msgid "" "Libnet provides a fairly portable framework for network packet\n" "construction and injection. It features portable packet creation interfaces\n" @@ -11760,7 +11891,7 @@ msgid "" "can be whipped up with little effort." msgstr "" -#: gnu/packages/networking.scm:2847 +#: gnu/packages/networking.scm:2885 msgid "" "@acronym{mtr, My TraceRoute} combines the functionality of the\n" "@command{traceroute} and @command{ping} programs in a single network diagnostic\n" @@ -11770,7 +11901,7 @@ msgid "" "displays the results in real time." msgstr "" -#: gnu/packages/networking.scm:2900 +#: gnu/packages/networking.scm:2938 msgid "" "aMule is an eMule-like client for the eD2k and Kademlia peer-to-peer\n" "file sharing networks. It includes a graphical user interface (GUI), a daemon\n" @@ -11779,7 +11910,7 @@ msgid "" "remotely." msgstr "" -#: gnu/packages/networking.scm:2922 +#: gnu/packages/networking.scm:2960 msgid "" "Zyre provides reliable group messaging over local area\n" "networks using zeromq. It has these key characteristics:\n" @@ -11796,13 +11927,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:2956 +#: gnu/packages/networking.scm:2994 msgid "" "This library allows controlling basic functions in SocketCAN\n" "from user-space. It requires a kernel built with SocketCAN support." msgstr "" -#: gnu/packages/networking.scm:2985 +#: gnu/packages/networking.scm:3023 msgid "" "This package provides CAN utilities in the following areas:\n" "\n" @@ -11818,14 +11949,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3021 +#: gnu/packages/networking.scm:3059 msgid "" "Asio is a cross-platform C++ library for network and\n" "low-level I/O programming that provides developers with a consistent\n" "asynchronous model using a modern C++ approach." msgstr "" -#: gnu/packages/networking.scm:3056 +#: gnu/packages/networking.scm:3094 msgid "" "This package is a fast tunnel proxy that helps you bypass firewalls.\n" "\n" @@ -11839,7 +11970,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3134 +#: gnu/packages/networking.scm:3172 msgid "" "The @dfn{Simple Network Management Protocol} (SNMP) is a\n" "widely used protocol for monitoring the health and welfare of network\n" @@ -11848,20 +11979,20 @@ msgid "" "SNMP v3 using both IPv4 and IPv6." msgstr "" -#: gnu/packages/networking.scm:3181 +#: gnu/packages/networking.scm:3219 msgid "" "uBridge is a simple program to create user-land bridges\n" "between various technologies. Currently, bridging between UDP tunnels,\n" "Ethernet and TAP interfaces is supported. Packet capture is also supported." msgstr "" -#: gnu/packages/networking.scm:3213 +#: gnu/packages/networking.scm:3251 msgid "" "This package contains a small set of tools to capture and convert\n" "packets from wireless devices for use with hashcat or John the Ripper." msgstr "" -#: gnu/packages/networking.scm:3244 +#: gnu/packages/networking.scm:3282 msgid "" "Small tool to capture packets from WLAN devices. After capturing,\n" "upload the \"uncleaned\" cap to @url{https://wpa-sec.stanev.org/?submit} to\n" @@ -11871,7 +12002,7 @@ msgid "" "and check if the WLAN key or the master key was transmitted unencrypted." msgstr "" -#: gnu/packages/networking.scm:3271 +#: gnu/packages/networking.scm:3309 msgid "" "Dante is a SOCKS client and server implementation. It can\n" "be installed on a machine with access to an external TCP/IP network and will\n" @@ -11880,21 +12011,21 @@ msgid "" "never see any machines other than the one Dante is running on." msgstr "" -#: gnu/packages/networking.scm:3318 +#: gnu/packages/networking.scm:3356 msgid "" "Restbed is a comprehensive and consistent programming\n" "model for building applications that require seamless and secure\n" "communication over HTTP." msgstr "" -#: gnu/packages/networking.scm:3358 +#: gnu/packages/networking.scm:3396 msgid "" "RESTinio is a header-only C++14 library that gives you an embedded\n" "HTTP/Websocket server. It is based on standalone version of ASIO\n" "and targeted primarily for asynchronous processing of HTTP-requests." msgstr "" -#: gnu/packages/networking.scm:3446 +#: gnu/packages/networking.scm:3487 msgid "" "OpenDHT provides an easy to use distributed in-memory data\n" "store. Every node in the network can read and write values to the store.\n" @@ -11921,20 +12052,20 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/networking.scm:3490 +#: gnu/packages/networking.scm:3531 msgid "" "FRRouting (FRR) is an IP routing protocol suite which includes\n" "protocol daemons for BGP, IS-IS, LDP, OSPF, PIM, and RIP." msgstr "" -#: gnu/packages/networking.scm:3520 +#: gnu/packages/networking.scm:3561 msgid "" "BIRD is an Internet routing daemon with full support for all\n" "the major routing protocols. It allows redistribution between protocols with a\n" "powerful route filtering syntax and an easy-to-use configuration interface." msgstr "" -#: gnu/packages/networking.scm:3568 +#: gnu/packages/networking.scm:3609 msgid "" "iwd is a wireless daemon for Linux that aims to replace WPA\n" "Supplicant. It optimizes resource utilization by not depending on any external\n" @@ -11942,21 +12073,21 @@ msgid "" "maximum extent possible." msgstr "" -#: gnu/packages/networking.scm:3595 +#: gnu/packages/networking.scm:3636 msgid "" "libyang is a YANG data modelling language parser and toolkit\n" "written (and providing API) in C. Current implementation covers YANG 1.0 (RFC\n" "6020) as well as YANG 1.1 (RFC 7950)." msgstr "" -#: gnu/packages/networking.scm:3629 +#: gnu/packages/networking.scm:3670 msgid "" "This package provides a control tool for the\n" "B.A.T.M.A.N. mesh networking routing protocol provided by the Linux kernel\n" "module @code{batman-adv}, for Layer 2." msgstr "" -#: gnu/packages/networking.scm:3662 +#: gnu/packages/networking.scm:3703 msgid "" "PageKite implements a tunneled reverse proxy which makes it easy to make\n" "a service (such as an HTTP or SSH server) on localhost visible to the wider\n" @@ -11964,7 +12095,7 @@ msgid "" "service is available at @url{https://pagekite.net/}, or you can run your own." msgstr "" -#: gnu/packages/networking.scm:3706 +#: gnu/packages/networking.scm:3747 msgid "" "ipcalc takes an IP address and netmask and calculates the\n" "resulting broadcast, network, Cisco wildcard mask, and host range. By giving\n" @@ -11973,7 +12104,7 @@ msgid "" "easy-to-understand binary values." msgstr "" -#: gnu/packages/networking.scm:3745 +#: gnu/packages/networking.scm:3786 msgid "" "Tunctl is used to set up and maintain persistent TUN/TAP\n" "network interfaces, enabling user applications to simulate network traffic.\n" @@ -11981,13 +12112,13 @@ msgid "" "simulation, and a number of other applications." msgstr "" -#: gnu/packages/networking.scm:3765 +#: gnu/packages/networking.scm:3806 msgid "" "Tool to send a magic packet to wake another host on the\n" "network. This must be enabled on the target host, usually in the BIOS." msgstr "" -#: gnu/packages/networking.scm:3802 +#: gnu/packages/networking.scm:3843 msgid "" "This package provides a modern, but Linux-specific\n" "implementation of the @command{traceroute} command that can be used to follow\n" @@ -11998,7 +12129,7 @@ msgid "" "some traces for unprivileged users." msgstr "" -#: gnu/packages/networking.scm:3836 +#: gnu/packages/networking.scm:3877 msgid "" "VDE is a set of programs to provide virtual software-defined\n" "Ethernet network interface controllers across multiple virtual or\n" @@ -12007,7 +12138,7 @@ msgid "" "cables." msgstr "" -#: gnu/packages/networking.scm:3878 +#: gnu/packages/networking.scm:3919 msgid "" "HAProxy is a free, very fast and reliable solution offering\n" "high availability, load balancing, and proxying for TCP and HTTP-based\n" @@ -12016,7 +12147,7 @@ msgid "" "thousands of connections is clearly realistic with today's hardware." msgstr "" -#: gnu/packages/networking.scm:3924 +#: gnu/packages/networking.scm:3965 msgid "" "The @dfn{Link Layer Discovery Protocol} (LLDP) is an industry standard\n" "protocol designed to supplant proprietary Link-Layer protocols such as EDP or\n" @@ -12025,7 +12156,7 @@ msgid "" "an implementation of LLDP. It also supports some proprietary protocols." msgstr "" -#: gnu/packages/networking.scm:3966 +#: gnu/packages/networking.scm:4007 msgid "" "Hashcash is a proof-of-work algorithm, which has been used\n" "as a denial-of-service countermeasure technique in a number of systems.\n" @@ -12038,14 +12169,14 @@ msgid "" "stamps." msgstr "" -#: gnu/packages/networking.scm:3995 +#: gnu/packages/networking.scm:4036 msgid "" "This package provides the NBD (Network Block Devices)\n" "client and server. It allows you to use remote block devices over a TCP/IP\n" "network." msgstr "" -#: gnu/packages/networking.scm:4062 +#: gnu/packages/networking.scm:4103 msgid "" "Yggdrasil is an early-stage implementation of a fully end-to-end encrypted\n" "IPv6 network. It is lightweight, self-arranging, supported on multiple\n" @@ -12054,7 +12185,7 @@ msgid "" "IPv6 Internet connectivity - it also works over IPv4." msgstr "" -#: gnu/packages/networking.scm:4106 +#: gnu/packages/networking.scm:4147 msgid "" "Netdiscover is a network address discovery tool developed\n" "mainly for wireless networks without a @acronym{DHCP} server. It also works\n" @@ -12062,7 +12193,7 @@ msgid "" "@acronym{ARP} requests and sniff for replies." msgstr "" -#: gnu/packages/networking.scm:4138 +#: gnu/packages/networking.scm:4179 msgid "" "PuTTY is a graphical text terminal client. It supports\n" "@acronym{SSH, Secure SHell}, telnet, and raw socket connections with good\n" @@ -12173,14 +12304,14 @@ msgid "" "by using the poppler rendering engine." msgstr "" -#: gnu/packages/pdf.scm:654 +#: gnu/packages/pdf.scm:653 msgid "" "Zathura is a customizable document viewer. It provides a\n" "minimalistic interface and an interface that mainly focuses on keyboard\n" "interaction." msgstr "" -#: gnu/packages/pdf.scm:697 +#: gnu/packages/pdf.scm:696 msgid "" "PoDoFo is a C++ library and set of command-line tools to work with the\n" "PDF file format. It can parse PDF files and load them into memory, and makes\n" @@ -12189,7 +12320,7 @@ msgid "" "extracting content or merging files." msgstr "" -#: gnu/packages/pdf.scm:764 +#: gnu/packages/pdf.scm:763 msgid "" "MuPDF is a C library that implements a PDF and XPS parsing and\n" "rendering engine. It is used primarily to render pages into bitmaps,\n" @@ -12201,7 +12332,7 @@ msgid "" "@command{pdfclean}, and examining the file structure @command{pdfshow}." msgstr "" -#: gnu/packages/pdf.scm:811 +#: gnu/packages/pdf.scm:810 msgid "" "QPDF is a command-line program that does structural, content-preserving\n" "transformations on PDF files. It could have been called something like\n" @@ -12210,7 +12341,7 @@ msgid "" "program capable of converting PDF into other formats." msgstr "" -#: gnu/packages/pdf.scm:855 +#: gnu/packages/pdf.scm:854 msgid "" "@command{qpdfview} is a document viewer for PDF, PS and DJVU\n" "files. It uses the Qt toolkit and features persistent per-file settings,\n" @@ -12218,13 +12349,13 @@ msgid "" "SyncTeX support, and rudimentary support for annotations and forms." msgstr "" -#: gnu/packages/pdf.scm:881 +#: gnu/packages/pdf.scm:880 msgid "" "Xournal is an application for notetaking, sketching, keeping a journal\n" "using a stylus." msgstr "" -#: gnu/packages/pdf.scm:940 +#: gnu/packages/pdf.scm:939 msgid "" "Xournal++ is a hand note taking software written in\n" "C++ with the target of flexibility, functionality and speed. Stroke\n" @@ -12260,14 +12391,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1019 +#: gnu/packages/pdf.scm:1018 msgid "" "This is the ReportLab PDF Toolkit. It allows rapid creation\n" "of rich PDF documents, and also creation of charts in a variety of bitmap and\n" "vector formats." msgstr "" -#: gnu/packages/pdf.scm:1071 +#: gnu/packages/pdf.scm:1070 msgid "" "Impressive is a tool to display PDF files that provides visual effects\n" "such as smooth alpha-blended slide transitions. It provides additional tools\n" @@ -12275,26 +12406,26 @@ msgid "" "the PDF pages." msgstr "" -#: gnu/packages/pdf.scm:1094 +#: gnu/packages/pdf.scm:1093 msgid "" "img2pdf converts images to PDF via direct JPEG inclusion. That\n" "conversion is lossless: the image embedded in the PDF has the exact same color\n" "information for every pixel as the input." msgstr "" -#: gnu/packages/pdf.scm:1147 +#: gnu/packages/pdf.scm:1146 msgid "" "fbida contains a few applications for viewing and editing images on\n" "the framebuffer." msgstr "" -#: gnu/packages/pdf.scm:1171 +#: gnu/packages/pdf.scm:1170 msgid "" "@command{pdf2svg} is a simple command-line PDF to SVG\n" "converter using the Poppler and Cairo libraries." msgstr "" -#: gnu/packages/pdf.scm:1203 +#: gnu/packages/pdf.scm:1202 msgid "" "PyPDF2 is a pure Python PDF library capable of:\n" "\n" @@ -12314,7 +12445,7 @@ msgid "" "manage or manipulate PDFs." msgstr "" -#: gnu/packages/pdf.scm:1240 +#: gnu/packages/pdf.scm:1239 msgid "" "PyPDF2 is a pure Python PDF toolkit.\n" "\n" @@ -12322,7 +12453,7 @@ msgid "" "python-pypdf2 instead." msgstr "" -#: gnu/packages/pdf.scm:1284 +#: gnu/packages/pdf.scm:1283 msgid "" "PDF Arranger is a small application which allows one to merge or split\n" "PDF documents and rotate, crop and rearrange their pages using an interactive\n" @@ -12331,7 +12462,7 @@ msgid "" "PDF Arranger was formerly known as PDF-Shuffler." msgstr "" -#: gnu/packages/pdf.scm:1308 +#: gnu/packages/pdf.scm:1307 msgid "" "@command{pdfposter} can be used to create a large poster by\n" "building it from multiple pages and/or printing it on large media. It expects\n" @@ -12344,7 +12475,7 @@ msgid "" "PDF. Indeed @command{pdfposter} was inspired by @command{poster}." msgstr "" -#: gnu/packages/pdf.scm:1339 +#: gnu/packages/pdf.scm:1338 msgid "" "Pdfgrep searches in pdf files for strings matching a regular expression.\n" "Support some GNU grep options as file name output, page number output,\n" @@ -12352,7 +12483,7 @@ msgid "" "multiple files." msgstr "" -#: gnu/packages/pdf.scm:1387 +#: gnu/packages/pdf.scm:1386 msgid "" "pdfpc is a presentation viewer application which uses multi-monitor\n" "output to provide meta information to the speaker during the presentation. It\n" @@ -12362,13 +12493,13 @@ msgid "" "presentation. The input files processed by pdfpc are PDF documents." msgstr "" -#: gnu/packages/pdf.scm:1414 +#: gnu/packages/pdf.scm:1413 msgid "" "Paps reads a UTF-8 encoded file and generates a PostScript language\n" "rendering of the file through the Pango Cairo back end." msgstr "" -#: gnu/packages/pdf.scm:1444 +#: gnu/packages/pdf.scm:1443 msgid "" "Stapler is a pure Python alternative to PDFtk, a tool for\n" "manipulating PDF documents from the command line. It supports\n" @@ -12382,7 +12513,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1532 +#: gnu/packages/pdf.scm:1531 msgid "" "WeasyPrint helps web developers to create PDF documents. It\n" "turns simple HTML pages into gorgeous statistical reports, invoices, tickets,\n" @@ -16108,7 +16239,7 @@ msgid "" "and enhance them." msgstr "" -#: gnu/packages/photo.scm:601 +#: gnu/packages/photo.scm:603 msgid "" "Photoflare is a cross-platform image editor with an aim\n" "to balance between powerful features and a very friendly graphical user\n" @@ -16118,7 +16249,7 @@ msgid "" "such as Batch image processing." msgstr "" -#: gnu/packages/photo.scm:669 +#: gnu/packages/photo.scm:670 msgid "" "Entangle is an application which uses GTK and libgphoto2 to provide a\n" "graphical interface for tethered photography with digital cameras. It\n" @@ -16126,14 +16257,14 @@ msgid "" "off' shooting directly from the controlling computer." msgstr "" -#: gnu/packages/photo.scm:740 +#: gnu/packages/photo.scm:741 msgid "" "Hugin is an easy to use panoramic imaging toolchain with a graphical\n" "user interface. It can be used to assemble a mosaic of photographs into\n" "a complete panorama and stitch any series of overlapping pictures." msgstr "" -#: gnu/packages/photo.scm:794 +#: gnu/packages/photo.scm:795 msgid "" "RawTherapee is a raw image processing suite. It comprises a\n" "subset of image editing operations specifically aimed at non-destructive raw\n" @@ -16177,7 +16308,28 @@ msgid "" "`special effects' using the filter mechanism." msgstr "" -#: gnu/packages/scanner.scm:144 +#: gnu/packages/scanner.scm:83 +msgid "" +"This SANE backend lets you scan documents and images from scanners and\n" +"multi-function printers that speak eSCL (marketed as ``AirScan'') or\n" +"@acronym{WSD, Web Services for Devices} (or ``WS-Scan'').\n" +"\n" +"Both are vendor-neutral protocols that allow ``driverless'' scanning over IPv4\n" +"and IPv6 networks without the vendor-specific drivers that make up most of the\n" +"sane-backends collection. This is similar to how most contemporary printers\n" +"speak the universal @acronym{IPP, Internet Printing Protocol}.\n" +"\n" +"Only scanners that support eSCL will also work over USB. This requires a\n" +"suitable IPP-over-USB daemon like ipp-usb to be installed and configured.\n" +"\n" +"Any eSCL or WSD-capable scanner should just work. sane-airscan automatically\n" +"discovers and configures devices, including which protocol to use. It was\n" +"successfully tested with many devices from Brother, Canon, Dell, Kyocera,\n" +"Lexmark, Epson, HP, OKI, Panasonic, Pantum, Ricoh, Samsung, and Xerox, with both\n" +"WSD and eSCL." +msgstr "" + +#: gnu/packages/scanner.scm:200 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -16185,7 +16337,7 @@ msgid "" "package contains the library, but no drivers." msgstr "" -#: gnu/packages/scanner.scm:192 +#: gnu/packages/scanner.scm:248 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -16193,7 +16345,7 @@ msgid "" "package contains the library and drivers." msgstr "" -#: gnu/packages/scanner.scm:243 +#: gnu/packages/scanner.scm:299 msgid "" "Scanbd stands for scanner button daemon. It regularly polls\n" "scanners for pressed buttons, function knob changes, or other events such\n" @@ -16209,7 +16361,7 @@ msgid "" "provided the driver also exposes the buttons." msgstr "" -#: gnu/packages/scanner.scm:331 +#: gnu/packages/scanner.scm:387 msgid "" "XSane is a graphical interface for controlling a scanner and acquiring\n" "images from it. You can photocopy multi-page documents and save, fax, print,\n" @@ -16221,14 +16373,14 @@ msgid "" "back-end library, which supports almost all existing scanners." msgstr "" -#: gnu/packages/scheme.scm:225 +#: gnu/packages/scheme.scm:226 msgid "" "GNU/MIT Scheme is an implementation of the Scheme programming\n" "language. It provides an interpreter, a compiler and a debugger. It also\n" "features an integrated Emacs-like editor and a large runtime library." msgstr "" -#: gnu/packages/scheme.scm:324 +#: gnu/packages/scheme.scm:325 msgid "" "Bigloo is a Scheme implementation devoted to one goal: enabling Scheme\n" "based programming style where C(++) is usually required. Bigloo attempts to\n" @@ -16239,7 +16391,7 @@ msgid "" "and between Scheme and Java programs." msgstr "" -#: gnu/packages/scheme.scm:377 +#: gnu/packages/scheme.scm:378 msgid "" "HOP is a multi-tier programming language for the Web 2.0 and the\n" "so-called diffuse Web. It is designed for programming interactive web\n" @@ -16248,14 +16400,14 @@ msgid "" "mashups, office (web agendas, mail clients, ...), etc." msgstr "" -#: gnu/packages/scheme.scm:400 +#: gnu/packages/scheme.scm:401 msgid "" "Scheme 48 is an implementation of Scheme based on a byte-code\n" "interpreter and is designed to be used as a testbed for experiments in\n" "implementation techniques and as an expository tool." msgstr "" -#: gnu/packages/scheme.scm:430 +#: gnu/packages/scheme.scm:431 msgid "" "Gambit consists of two main programs: gsi, the Gambit Scheme\n" "interpreter, and gsc, the Gambit Scheme compiler. The interpreter contains\n" @@ -16266,7 +16418,7 @@ msgid "" "mixed." msgstr "" -#: gnu/packages/scheme.scm:464 +#: gnu/packages/scheme.scm:465 msgid "" "Chibi-Scheme is a very small library with no external dependencies\n" "intended for use as an extension and scripting language in C programs. In\n" @@ -16275,7 +16427,7 @@ msgid "" "threads." msgstr "" -#: gnu/packages/scheme.scm:512 +#: gnu/packages/scheme.scm:513 msgid "" "Structure and Interpretation of Computer Programs (SICP) is\n" "a textbook aiming to teach the principles of computer programming.\n" @@ -16285,19 +16437,19 @@ msgid "" "metalinguistic abstraction, recursion, interpreters, and modular programming." msgstr "" -#: gnu/packages/scheme.scm:556 +#: gnu/packages/scheme.scm:557 msgid "" "String pattern-matching library for scheme48 based on the SRE\n" "regular-expression notation." msgstr "" -#: gnu/packages/scheme.scm:589 +#: gnu/packages/scheme.scm:590 msgid "" "SLIB is a portable Scheme library providing compatibility and\n" "utility functions for all standard Scheme implementations." msgstr "" -#: gnu/packages/scheme.scm:643 +#: gnu/packages/scheme.scm:644 msgid "" "GNU SCM is an implementation of Scheme. This\n" "implementation includes Hobbit, a Scheme-to-C compiler, which can\n" @@ -16305,7 +16457,7 @@ msgid "" "linked with a SCM executable." msgstr "" -#: gnu/packages/scheme.scm:702 +#: gnu/packages/scheme.scm:703 msgid "" "TinyScheme is a light-weight Scheme interpreter that implements as large a\n" "subset of R5RS as was possible without getting very large and complicated.\n" @@ -16321,7 +16473,7 @@ msgid "" "small program, it is easy to comprehend, get to grips with, and use." msgstr "" -#: gnu/packages/scheme.scm:783 +#: gnu/packages/scheme.scm:784 msgid "" "Stalin is an aggressively optimizing whole-program compiler\n" "for Scheme that does polyvariant interprocedural flow analysis,\n" @@ -16333,7 +16485,7 @@ msgid "" "generation." msgstr "" -#: gnu/packages/scheme.scm:819 +#: gnu/packages/scheme.scm:820 msgid "" "Scheme 9 from Empty Space (S9fES) is a mature, portable, and\n" "comprehensible public-domain interpreter for R4RS Scheme offering:\n" @@ -16348,14 +16500,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/scheme.scm:877 +#: gnu/packages/scheme.scm:878 msgid "" "@code{femtolisp} is a scheme-like lisp implementation with a\n" "simple, elegant Scheme dialect. It is a lisp-1 with lexical scope.\n" "The core is 12 builtin special forms and 33 builtin functions." msgstr "" -#: gnu/packages/scheme.scm:940 +#: gnu/packages/scheme.scm:941 msgid "" "Gauche is a R7RS Scheme scripting engine aiming at being a\n" "handy tool that helps programmers and system administrators to write small to\n" @@ -16365,7 +16517,7 @@ msgid "" "and list gauche extension packages." msgstr "" -#: gnu/packages/scheme.scm:1038 +#: gnu/packages/scheme.scm:1039 msgid "" "Gerbil is an opinionated dialect of Scheme designed for Systems\n" "Programming, with a state of the art macro and module system on top of the Gambit\n" @@ -16502,7 +16654,7 @@ msgid "" "server and an IRC server." msgstr "" -#: gnu/packages/shells.scm:107 +#: gnu/packages/shells.scm:108 msgid "" "dash is a POSIX-compliant @command{/bin/sh} implementation that aims to be\n" "as small as possible, often without sacrificing speed. It is faster than the\n" @@ -16510,7 +16662,7 @@ msgid "" "direct descendant of NetBSD's Almquist Shell (@command{ash})." msgstr "" -#: gnu/packages/shells.scm:255 +#: gnu/packages/shells.scm:256 msgid "" "Fish (friendly interactive shell) is a shell focused on interactive use,\n" "discoverability, and friendliness. Fish has very user-friendly and powerful\n" @@ -16522,20 +16674,20 @@ msgid "" "and syntax highlighting." msgstr "" -#: gnu/packages/shells.scm:308 +#: gnu/packages/shells.scm:309 msgid "" "@code{fish-foreign-env} wraps bash script execution in a way\n" "that environment variables that are exported or modified get imported back\n" "into fish." msgstr "" -#: gnu/packages/shells.scm:344 +#: gnu/packages/shells.scm:345 msgid "" "This is a reimplementation by Byron Rakitzis of the Plan 9 shell. It\n" "has a small feature set similar to a traditional Bourne shell." msgstr "" -#: gnu/packages/shells.scm:377 +#: gnu/packages/shells.scm:378 msgid "" "Es is an extensible shell. The language was derived from the Plan 9\n" "shell, rc, and was influenced by functional programming languages, such as\n" @@ -16544,7 +16696,7 @@ msgid "" "written by Paul Haahr and Byron Rakitzis." msgstr "" -#: gnu/packages/shells.scm:455 +#: gnu/packages/shells.scm:456 msgid "" "Tcsh is an enhanced, but completely compatible version of the Berkeley\n" "UNIX C shell (csh). It is a command language interpreter usable both as an\n" @@ -16553,7 +16705,7 @@ msgid "" "history mechanism, job control and a C-like syntax." msgstr "" -#: gnu/packages/shells.scm:522 +#: gnu/packages/shells.scm:523 msgid "" "The Z shell (zsh) is a Unix shell that can be used\n" "as an interactive login shell and as a powerful command interpreter\n" @@ -16562,7 +16714,7 @@ msgid "" "ksh, and tcsh." msgstr "" -#: gnu/packages/shells.scm:572 +#: gnu/packages/shells.scm:573 msgid "" "Xonsh is a Python-ish, BASHwards-looking shell language and command\n" "prompt. The language is a superset of Python 3.4+ with additional shell\n" @@ -16571,7 +16723,7 @@ msgid "" "use of experts and novices alike." msgstr "" -#: gnu/packages/shells.scm:616 +#: gnu/packages/shells.scm:617 msgid "" "Scsh is a Unix shell embedded in Scheme. Scsh has two main\n" "components: a process notation for running programs and setting up pipelines\n" @@ -16579,7 +16731,7 @@ msgid "" "operating system." msgstr "" -#: gnu/packages/shells.scm:658 +#: gnu/packages/shells.scm:659 msgid "" "Linenoise is a minimal, zero-config, readline replacement.\n" "Its features include:\n" @@ -16593,7 +16745,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/shells.scm:722 +#: gnu/packages/shells.scm:723 msgid "" "S is a new shell that aims to be extremely simple. It does not\n" "implement the POSIX shell standard.\n" @@ -16607,19 +16759,19 @@ msgid "" "A @code{andglob} program is also provided along with s." msgstr "" -#: gnu/packages/shells.scm:753 +#: gnu/packages/shells.scm:754 msgid "" "Oksh is a port of the OpenBSD Korn Shell.\n" "The OpenBSD Korn Shell is a cleaned up and enhanced ksh." msgstr "" -#: gnu/packages/shells.scm:783 +#: gnu/packages/shells.scm:784 msgid "" "loksh is a Linux port of OpenBSD's @command{ksh}. It is a small,\n" "interactive POSIX shell targeted at resource-constrained systems." msgstr "" -#: gnu/packages/shells.scm:821 +#: gnu/packages/shells.scm:822 msgid "" "mksh is an actively developed free implementation of the\n" "Korn Shell programming language and a successor to the Public Domain Korn\n" @@ -16651,7 +16803,7 @@ msgid "" "files and text." msgstr "" -#: gnu/packages/shells.scm:1006 +#: gnu/packages/shells.scm:1005 msgid "" "Nu draws inspiration from projects like PowerShell, functional\n" "programming languages, and modern CLI tools. Rather than thinking of files\n" @@ -16662,7 +16814,7 @@ msgid "" "of commands called a ``pipeline''." msgstr "" -#: gnu/packages/shells.scm:1037 +#: gnu/packages/shells.scm:1036 msgid "" "This package is a library for ANSI terminal colors and styles (bold,\n" "underline)." @@ -16937,19 +17089,19 @@ msgid "" "your calls and messages." msgstr "" -#: gnu/packages/telephony.scm:874 +#: gnu/packages/telephony.scm:869 msgid "" "PJProject provides an implementation of the Session\n" "Initiation Protocol (SIP) and a multimedia framework." msgstr "" -#: gnu/packages/telephony.scm:916 +#: gnu/packages/telephony.scm:911 msgid "" "A collection of libraries and header files for implementing\n" "telephony functionality into custom Telegram clients." msgstr "" -#: gnu/packages/tex.scm:532 +#: gnu/packages/tex.scm:543 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -16959,20 +17111,20 @@ msgid "" "This package contains the binaries." msgstr "" -#: gnu/packages/tex.scm:571 +#: gnu/packages/tex.scm:582 msgid "" "kpathsea is a library, whose purpose is to return a filename\n" "from a list of user-specified directories similar to how shells look up\n" "executables. It is maintained as a part of TeX Live." msgstr "" -#: gnu/packages/tex.scm:591 +#: gnu/packages/tex.scm:602 msgid "" "This package provides the docstrip utility to strip\n" "documentation from TeX files. It is part of the LaTeX base." msgstr "" -#: gnu/packages/tex.scm:606 +#: gnu/packages/tex.scm:617 msgid "" "This bundle provides generic access to Unicode Consortium\n" "data for TeX use. It contains a set of text files provided by the Unicode\n" @@ -16985,7 +17137,7 @@ msgid "" "out to date by @code{unicode-letters.tex}." msgstr "" -#: gnu/packages/tex.scm:638 +#: gnu/packages/tex.scm:649 msgid "" "This package includes Knuth's original @file{hyphen.tex},\n" "@file{zerohyph.tex} to disable hyphenation, @file{language.us} which starts\n" @@ -16993,13 +17145,13 @@ msgid "" "default versions of those), etc." msgstr "" -#: gnu/packages/tex.scm:659 +#: gnu/packages/tex.scm:670 msgid "" "This package provides files needed for converting DVI files\n" "to PostScript." msgstr "" -#: gnu/packages/tex.scm:673 +#: gnu/packages/tex.scm:684 msgid "" "This bundle provides a collection of model \".ini\" files\n" "for creating TeX formats. These files are commonly used to introduced\n" @@ -17008,13 +17160,13 @@ msgid "" "to adapt the plain e-TeX source file to work with XeTeX and LuaTeX." msgstr "" -#: gnu/packages/tex.scm:736 +#: gnu/packages/tex.scm:747 msgid "" "This package provides the Metafont base files needed to\n" "build fonts using the Metafont system." msgstr "" -#: gnu/packages/tex.scm:821 +#: gnu/packages/tex.scm:832 msgid "" "This package provides TeX macros for converting Adobe Font\n" "Metric files to TeX metric and virtual font format. Fontinst helps mainly\n" @@ -17024,7 +17176,7 @@ msgid "" "typesetting in these fonts." msgstr "" -#: gnu/packages/tex.scm:842 +#: gnu/packages/tex.scm:853 msgid "" "This is Fontname, a naming scheme for (the base part of)\n" "external TeX font filenames. This makes at most eight-character names\n" @@ -17032,7 +17184,7 @@ msgid "" "documents." msgstr "" -#: gnu/packages/tex.scm:915 +#: gnu/packages/tex.scm:926 msgid "" "This package provides the Computer Modern fonts by Donald\n" "Knuth. The Computer Modern font family is a large collection of text,\n" @@ -17040,7 +17192,7 @@ msgid "" "8A." msgstr "" -#: gnu/packages/tex.scm:946 +#: gnu/packages/tex.scm:957 msgid "" "The CM-Super family provides Adobe Type 1 fonts that replace\n" "the T1/TS1-encoded Computer Modern (EC/TC), T1/TS1-encoded Concrete,\n" @@ -17050,14 +17202,14 @@ msgid "" "originals." msgstr "" -#: gnu/packages/tex.scm:979 +#: gnu/packages/tex.scm:990 #, fuzzy msgid "" "This package provides a drop-in replacements for the Courier\n" "font from Adobe's basic set." msgstr "Ez a csomag egy HTML dokumentációt biztosít az nginx webkiszolgálóhoz." -#: gnu/packages/tex.scm:1002 +#: gnu/packages/tex.scm:1013 msgid "" "The TeX-GYRE bundle consist of multiple font families:\n" "@itemize @bullet\n" @@ -17077,21 +17229,21 @@ msgid "" "support (for use with a variety of encodings) is provided." msgstr "" -#: gnu/packages/tex.scm:1041 +#: gnu/packages/tex.scm:1052 msgid "" "The Latin Modern fonts are derived from the famous Computer\n" "Modern fonts designed by Donald E. Knuth and described in Volume E of his\n" "Computers & Typesetting series." msgstr "" -#: gnu/packages/tex.scm:1106 +#: gnu/packages/tex.scm:1117 msgid "" "This is a collection of core TeX and METAFONT macro files\n" "from Donald Knuth, including the plain format, plain base, and the MF logo\n" "fonts." msgstr "" -#: gnu/packages/tex.scm:1181 +#: gnu/packages/tex.scm:1192 msgid "" "This is a collection of fonts for use with standard LaTeX\n" "packages and classes. It includes invisible fonts (for use with the slides\n" @@ -17099,14 +17251,14 @@ msgid "" "symbol fonts." msgstr "" -#: gnu/packages/tex.scm:1253 +#: gnu/packages/tex.scm:1264 msgid "" "This package provides LaTeX and font definition files to access the\n" "Knuthian mflogo fonts described in The Metafontbook and to typeset Metafont\n" "logos in LaTeX documents." msgstr "" -#: gnu/packages/tex.scm:1274 +#: gnu/packages/tex.scm:1285 msgid "" "These fonts were created in METAFONT by Knuth, for his own publications.\n" "At some stage, the letters P and S were added, so that the METAPOST logo could\n" @@ -17115,7 +17267,7 @@ msgid "" "Taco Hoekwater." msgstr "" -#: gnu/packages/tex.scm:1402 +#: gnu/packages/tex.scm:1415 gnu/packages/tex.scm:1579 msgid "" "This package provides an extended set of fonts for use in mathematics,\n" "including: extra mathematical symbols; blackboard bold letters (uppercase\n" @@ -17129,7 +17281,7 @@ msgid "" "details can be found in the documentation." msgstr "" -#: gnu/packages/tex.scm:1432 +#: gnu/packages/tex.scm:1609 msgid "" "Mkpattern is a general purpose program for the generation of\n" "hyphenation patterns, with definition of letter sets and template-like\n" @@ -17137,7 +17289,7 @@ msgid "" "output encodings, and features generation of clean UTF-8 patterns." msgstr "" -#: gnu/packages/tex.scm:1489 +#: gnu/packages/tex.scm:1666 msgid "" "This package provides an extended version of TeX (which is capable of\n" "running as if it were TeX unmodified). E-TeX has been specified by the LaTeX\n" @@ -17146,49 +17298,58 @@ msgid "" "incorporates the e-TeX extensions." msgstr "" -#: gnu/packages/tex.scm:1507 +#: gnu/packages/tex.scm:1684 msgid "" "This package contains files used to build the Plain TeX format, as\n" "described in the TeXbook, together with various supporting files (some also\n" "discussed in the book)." msgstr "" -#: gnu/packages/tex.scm:1533 +#: gnu/packages/tex.scm:1702 +msgid "" +"The package facilitates wrapping text to a specific character width, breaking\n" +"lines by words rather than, as done by TeX, by characters. The primary use for\n" +"these facilities is to aid the generation of messages sent to the log file or\n" +"console output to display messages to the user. Package authors may also find\n" +"this useful when writing out arbitary text to an external file." +msgstr "" + +#: gnu/packages/tex.scm:1730 #, fuzzy msgid "" "This package provides a drop-in replacements for the Helvetica\n" "font from Adobe's basic set." msgstr "Ez a csomag egy HTML dokumentációt biztosít az nginx webkiszolgálóhoz." -#: gnu/packages/tex.scm:1546 +#: gnu/packages/tex.scm:1743 #, fuzzy msgid "" "The package provides hyphenation patterns for the Afrikaans\n" "language." msgstr "Ez a csomag egy HTML dokumentációt biztosít az nginx webkiszolgálóhoz." -#: gnu/packages/tex.scm:1560 +#: gnu/packages/tex.scm:1757 #, fuzzy msgid "" "The package provides hyphenation patterns for ancient\n" "Greek." msgstr "Ez a csomag egy HTML dokumentációt biztosít az nginx webkiszolgálóhoz." -#: gnu/packages/tex.scm:1573 +#: gnu/packages/tex.scm:1770 #, fuzzy msgid "" "The package provides hyphenation patterns for the Armenian\n" "language." msgstr "Ez a csomag egy ASCII leképezést biztosít az eucJP kódoláshoz." -#: gnu/packages/tex.scm:1587 +#: gnu/packages/tex.scm:1784 #, fuzzy msgid "" "The package provides hyphenation patterns for the Basque\n" "language." msgstr "Ez a csomag egy szótárat biztosít a GNU Aspell helyesírás-ellenőrzőhöz." -#: gnu/packages/tex.scm:1601 +#: gnu/packages/tex.scm:1798 #, fuzzy msgid "" "The package provides hyphenation patterns for the Belarusian\n" @@ -17197,81 +17358,81 @@ msgstr "" "Ez a csomag egy szótárat biztosít a Hunspell helyesírás-ellenőrző\n" "programkönyvtárhoz." -#: gnu/packages/tex.scm:1613 +#: gnu/packages/tex.scm:1810 msgid "" "The package provides hyphenation patterns for the Bulgarian\n" "language in T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1627 +#: gnu/packages/tex.scm:1824 msgid "" "The package provides hyphenation patterns for Catalan in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1640 +#: gnu/packages/tex.scm:1837 msgid "" "The package provides hyphenation patterns for unaccented\n" "Chinese pinyin T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1652 +#: gnu/packages/tex.scm:1849 #, fuzzy msgid "" "The package provides hyphenation patterns for Church\n" "Slavonic in UTF-8 encoding." msgstr "Ez a csomag egy ASCII leképezést biztosít az eucJP kódoláshoz." -#: gnu/packages/tex.scm:1665 +#: gnu/packages/tex.scm:1862 msgid "" "The package provides hyphenation patterns for Coptic in\n" "UTF-8 encoding as well as in ASCII-based encoding for 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:1678 +#: gnu/packages/tex.scm:1875 msgid "" "The package provides hyphenation patterns for Croatian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1690 +#: gnu/packages/tex.scm:1887 msgid "" "The package provides hyphenation patterns for Czech in T1/EC\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1702 +#: gnu/packages/tex.scm:1899 msgid "" "The package provides hyphenation patterns for Danish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1715 +#: gnu/packages/tex.scm:1912 #, fuzzy msgid "" "The package provides hyphenation patterns for Dutch in T1/EC\n" "and UTF-8 encodings." msgstr "Ez a csomag egy ASCII leképezést biztosít az eucJP kódoláshoz." -#: gnu/packages/tex.scm:1728 +#: gnu/packages/tex.scm:1925 msgid "" "The package provides additional hyphenation patterns for\n" "American and British English in ASCII encoding." msgstr "" -#: gnu/packages/tex.scm:1742 +#: gnu/packages/tex.scm:1939 msgid "" "The package provides hyphenation patterns for Esperanto ISO\n" "Latin 3 and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1754 +#: gnu/packages/tex.scm:1951 msgid "" "The package provides hyphenation patterns for Estonian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1768 +#: gnu/packages/tex.scm:1965 msgid "" "The package provides hyphenation patterns for languages\n" "written using the Ethiopic script for Unicode engines. They are not supposed\n" @@ -17279,97 +17440,97 @@ msgid "" "be replaced by files tailored to individual languages." msgstr "" -#: gnu/packages/tex.scm:1782 +#: gnu/packages/tex.scm:1979 msgid "" "The package provides hyphenation patterns for Finnish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1794 +#: gnu/packages/tex.scm:1991 #, fuzzy msgid "" "The package provides hyphenation patterns for Finnish for\n" "school in T1/EC and UTF-8 encodings." msgstr "Ez a csomag egy ASCII leképezést biztosít az eucJP kódoláshoz." -#: gnu/packages/tex.scm:1806 +#: gnu/packages/tex.scm:2003 msgid "" "The package provides hyphenation patterns for French in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1818 +#: gnu/packages/tex.scm:2015 #, fuzzy msgid "" "The package provides hyphenation patterns for Friulan in\n" "ASCII encodings." msgstr "Ez a csomag egy ASCII leképezést biztosít az eucJP kódoláshoz." -#: gnu/packages/tex.scm:1831 +#: gnu/packages/tex.scm:2028 msgid "" "The package provides hyphenation patterns for Galician in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1843 +#: gnu/packages/tex.scm:2040 msgid "" "The package provides hyphenation patterns for Georgian in\n" "T8M, T8K, and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1861 +#: gnu/packages/tex.scm:2058 msgid "" "This package provides hyphenation patterns for German in\n" "T1/EC and UTF-8 encodings, for traditional and reformed spelling, including\n" "Swiss German." msgstr "" -#: gnu/packages/tex.scm:1880 +#: gnu/packages/tex.scm:2077 msgid "" "This package provides hyphenation patterns for Modern Greek\n" "in monotonic and polytonic spelling in LGR and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1894 +#: gnu/packages/tex.scm:2091 msgid "" "This package provides hyphenation patterns for Hungarian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1907 +#: gnu/packages/tex.scm:2104 msgid "" "This package provides hyphenation patterns for Icelandic in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1930 +#: gnu/packages/tex.scm:2127 msgid "" "This package provides hyphenation patterns for Assamese,\n" "Bengali, Gujarati, Hindi, Kannada, Malayalam, Marathi, Oriya, Panjabi, Tamil\n" "and Telugu for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:1943 +#: gnu/packages/tex.scm:2140 msgid "" "This package provides hyphenation patterns for\n" "Indonesian (Bahasa Indonesia) in ASCII encoding. They are probably also\n" "usable for Malay (Bahasa Melayu)." msgstr "" -#: gnu/packages/tex.scm:1956 +#: gnu/packages/tex.scm:2153 #, fuzzy msgid "" "This package provides hyphenation patterns for Interlingua\n" "in ASCII encoding." msgstr "Ez a csomag egy ASCII leképezést biztosít az eucJP kódoláshoz." -#: gnu/packages/tex.scm:1968 +#: gnu/packages/tex.scm:2165 msgid "" "This package provides hyphenation patterns for\n" "Irish (Gaeilge) in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1981 +#: gnu/packages/tex.scm:2178 msgid "" "This package provides hyphenation patterns for Italian in\n" "ASCII encoding. Compliant with the Recommendation UNI 6461 on hyphenation\n" @@ -17377,14 +17538,14 @@ msgid "" "UNI)." msgstr "" -#: gnu/packages/tex.scm:1995 +#: gnu/packages/tex.scm:2192 msgid "" "This package provides hyphenation patterns for\n" "Kurmanji (Northern Kurdish) as spoken in Turkey and by the Kurdish diaspora in\n" "Europe, in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2011 +#: gnu/packages/tex.scm:2208 msgid "" "This package provides hyphenation patterns for Latin in\n" "T1/EC and UTF-8 encodings, mainly in modern spelling (u when u is needed and v\n" @@ -17398,38 +17559,38 @@ msgid "" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2032 +#: gnu/packages/tex.scm:2229 #, fuzzy msgid "" "This package provides hyphenation patterns for Latvian in\n" "L7X and UTF-8 encodings." msgstr "Ez a csomag egy ASCII leképezést biztosít az eucJP kódoláshoz." -#: gnu/packages/tex.scm:2045 +#: gnu/packages/tex.scm:2242 #, fuzzy msgid "" "This package provides hyphenation patterns for Lithuanian in\n" "L7X and UTF-8 encodings." msgstr "Ez a csomag egy ASCII leképezést biztosít az eucJP kódoláshoz." -#: gnu/packages/tex.scm:2060 +#: gnu/packages/tex.scm:2257 #, fuzzy -msgid "This package provides hypenation patterns for Macedonian." +msgid "This package provides hyphenation patterns for Macedonian." msgstr "Ez a csomag egy HTML dokumentációt biztosít az nginx webkiszolgálóhoz." -#: gnu/packages/tex.scm:2073 +#: gnu/packages/tex.scm:2270 msgid "" "This package provides hyphenation patterns for Mongolian in\n" "T2A, LMC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2088 +#: gnu/packages/tex.scm:2285 msgid "" "This package provides hyphenation patterns for Norwegian\n" "Bokmal and Nynorsk in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2102 +#: gnu/packages/tex.scm:2299 msgid "" "This package provides hyphenation patterns for Occitan in\n" "T1/EC and UTF-8 encodings. They are supposed to be valid for all the Occitan\n" @@ -17438,99 +17599,99 @@ msgid "" "Alps encompassing the southern half of the French pentagon." msgstr "" -#: gnu/packages/tex.scm:2117 +#: gnu/packages/tex.scm:2314 #, fuzzy msgid "" "This package provides hyphenation patterns for Panjabi in\n" "T1/EC encoding." msgstr "Ez a csomag egy ASCII leképezést biztosít az eucJP kódoláshoz." -#: gnu/packages/tex.scm:2130 +#: gnu/packages/tex.scm:2327 msgid "" "This package provides hyphenation patterns for Piedmontese\n" "in ASCII encoding. Compliant with 'Gramatica dla lengua piemonteisa' by\n" "Camillo Brero." msgstr "" -#: gnu/packages/tex.scm:2143 +#: gnu/packages/tex.scm:2340 #, fuzzy msgid "" "This package provides hyphenation patterns for Polish in QX\n" "and UTF-8 encodings." msgstr "Ez a csomag egy ASCII leképezést biztosít az eucJP kódoláshoz." -#: gnu/packages/tex.scm:2156 +#: gnu/packages/tex.scm:2353 #, fuzzy msgid "" "This package provides hyphenation patterns for Portuguese in\n" "T1/EC and UTF-8 encodings." msgstr "Ez a csomag egy ASCII leképezést biztosít az eucJP kódoláshoz." -#: gnu/packages/tex.scm:2168 +#: gnu/packages/tex.scm:2365 msgid "" "This package provides hyphenation patterns for Romanian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2181 +#: gnu/packages/tex.scm:2378 msgid "" "This package provides hyphenation patterns for Romansh in\n" "ASCII encodings. They are supposed to comply with the rules indicated by the\n" "Lia Rumantscha (Romansh language society)." msgstr "" -#: gnu/packages/tex.scm:2194 +#: gnu/packages/tex.scm:2391 msgid "" "This package provides hyphenation patterns for Russian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2207 +#: gnu/packages/tex.scm:2404 msgid "" "This package provides hyphenation patterns for Sanskrit and\n" "Prakrit in longdesc transliteration, and in Devanagari, Bengali, Kannada,\n" "Malayalam longdesc and Telugu scripts for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:2224 +#: gnu/packages/tex.scm:2421 msgid "" "This package provides hyphenation patterns for Serbian in\n" "T1/EC, T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2237 +#: gnu/packages/tex.scm:2434 msgid "" "This package provides hyphenation patterns for Slovak in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2249 +#: gnu/packages/tex.scm:2446 msgid "" "This package provides hyphenation patterns for Slovenian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2265 +#: gnu/packages/tex.scm:2462 msgid "" "The package provides hyphenation patterns for Spanish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2277 +#: gnu/packages/tex.scm:2474 #, fuzzy msgid "" "This package provides hyphenation patterns for Swedish in\n" "T1/EC and UTF-8 encodings." msgstr "Ez a csomag egy ASCII leképezést biztosít az eucJP kódoláshoz." -#: gnu/packages/tex.scm:2289 +#: gnu/packages/tex.scm:2486 #, fuzzy msgid "" "This package provides hyphenation patterns for Thai in LTH\n" "and UTF-8 encodings." msgstr "Ez a csomag egy ASCII leképezést biztosít az eucJP kódoláshoz." -#: gnu/packages/tex.scm:2302 +#: gnu/packages/tex.scm:2499 msgid "" "The package provides hyphenation patterns for Turkish in\n" "T1/EC and UTF-8 encodings. The patterns for Turkish were first produced for\n" @@ -17540,32 +17701,32 @@ msgid "" "compatibility with 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:2319 +#: gnu/packages/tex.scm:2516 msgid "" "The package provides hyphenation patterns for Turkmen in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2331 +#: gnu/packages/tex.scm:2528 msgid "" "This package provides hyphenation patterns for Ukrainian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2344 +#: gnu/packages/tex.scm:2541 msgid "" "This package provides hyphenation patterns for Upper Sorbian\n" "in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2356 +#: gnu/packages/tex.scm:2553 #, fuzzy msgid "" "This package provides hyphenation patterns for Welsh in\n" "T1/EC and UTF-8 encodings." msgstr "Ez a csomag egy ASCII leképezést biztosít az eucJP kódoláshoz." -#: gnu/packages/tex.scm:2477 +#: gnu/packages/tex.scm:2674 msgid "" "Modern native UTF-8 engines such as XeTeX and LuaTeX need\n" "hyphenation patterns in UTF-8 format, whereas older systems require\n" @@ -17578,7 +17739,7 @@ msgid "" "converters, will completely supplant the older patterns." msgstr "" -#: gnu/packages/tex.scm:2521 +#: gnu/packages/tex.scm:2718 msgid "" "The package provides experimental hyphenation patterns for\n" "the German language, covering both traditional and reformed orthography. The\n" @@ -17586,21 +17747,29 @@ msgid "" "bundle." msgstr "" -#: gnu/packages/tex.scm:2542 +#: gnu/packages/tex.scm:2739 msgid "" "The package provides a range of hyphenation patterns for\n" "Ukrainian, depending on the encoding of the output font including the standard\n" "T2A." msgstr "" -#: gnu/packages/tex.scm:2577 +#: gnu/packages/tex.scm:2774 msgid "" "The package provides a collection of Russian hyphenation\n" "patterns supporting a number of Cyrillic font encodings, including T2,\n" "UCY (Omega Unicode Cyrillic), LCY, LWN (OT2), and koi8-r." msgstr "" -#: gnu/packages/tex.scm:2620 +#: gnu/packages/tex.scm:2792 +msgid "" +"This package deals with input encodings. It provides a wider range of input\n" +"encodings using standard mappings, than does inputenc; it also covers nearly all\n" +"slots. In this way, it serves as more uptodate replacement for package\n" +"inputenc." +msgstr "" + +#: gnu/packages/tex.scm:2853 msgid "" "Kpathsea is a library and utility programs which provide\n" "path searching facilities for TeX file types, including the self-locating\n" @@ -17608,13 +17777,27 @@ msgid "" "mechanism. This package provides supporting files." msgstr "" -#: gnu/packages/tex.scm:2636 +#: gnu/packages/tex.scm:2876 +msgid "" +"The family contains text fonts in roman, sans-serif and monospaced\n" +"shapes, with true small caps and old-style numbers; the package offers full\n" +"support of the textcomp package. The mathematics fonts include all the AMS\n" +"fonts, in both normal and bold weights. Each of the font types is available\n" +"in two main versions: default and light. Each version is available in four\n" +"variants: default; oldstyle numbers; oldstyle numbers with old ligatures such\n" +"as ct and st, and long-tailed capital Q; and veryoldstyle with long s. Other\n" +"variants include small caps as default or large small caps, and for\n" +"mathematics both upright and slanted shapes for Greek letters, as well as\n" +"default and narrow versions of multiple integrals." +msgstr "" + +#: gnu/packages/tex.scm:2898 msgid "" "The package provides configuration files for LaTeX-related\n" "formats." msgstr "" -#: gnu/packages/tex.scm:2867 +#: gnu/packages/tex.scm:3127 msgid "" "This bundle comprises the source of LaTeX itself, together with several\n" "packages which are considered \"part of the kernel\". This bundle, together\n" @@ -17622,7 +17805,7 @@ msgid "" "contain." msgstr "" -#: gnu/packages/tex.scm:2885 +#: gnu/packages/tex.scm:3145 msgid "" "This LaTeX packages provides two hooks for @code{\\end@{document@}}\n" "that are executed after the hook of @code{\\AtEndDocument}:\n" @@ -17632,13 +17815,13 @@ msgid "" "of the @file{.aux} file." msgstr "" -#: gnu/packages/tex.scm:2905 +#: gnu/packages/tex.scm:3165 msgid "" "This package provides hooks for adding code at the beginning of\n" "@file{.aux} files." msgstr "" -#: gnu/packages/tex.scm:2921 +#: gnu/packages/tex.scm:3181 msgid "" "The package adds support for EPS files in the @code{graphicx} package\n" "when running under pdfTeX. If an EPS graphic is detected, the package\n" @@ -17646,7 +17829,7 @@ msgid "" "@command{epstopdf}." msgstr "" -#: gnu/packages/tex.scm:2943 +#: gnu/packages/tex.scm:3203 msgid "" "LaTeX2e's @code{filecontents} and @code{filecontents*} environments\n" "enable a LaTeX source file to generate external files as it runs through\n" @@ -17657,7 +17840,7 @@ msgid "" "@code{filecontents*} anywhere." msgstr "" -#: gnu/packages/tex.scm:2964 +#: gnu/packages/tex.scm:3224 msgid "" "This package provides the original (and now obsolescent) graphics\n" "inclusion macros for use with dvips, still widely used by Plain TeX users (in\n" @@ -17667,7 +17850,7 @@ msgid "" "users, via its Plain TeX version.)" msgstr "" -#: gnu/packages/tex.scm:2986 +#: gnu/packages/tex.scm:3246 msgid "" "This package provides tools for the flexible handling of verbatim text\n" "including: verbatim commands in footnotes; a variety of verbatim environments\n" @@ -17677,7 +17860,7 @@ msgid "" "verbatim source)." msgstr "" -#: gnu/packages/tex.scm:3008 +#: gnu/packages/tex.scm:3268 msgid "" "This bundle is a combined distribution consisting of @file{dvips.def},\n" "@file{pdftex.def}, @file{luatex.def}, @file{xetex.def}, @file{dvipdfmx.def},\n" @@ -17685,13 +17868,19 @@ msgid "" "packages." msgstr "" -#: gnu/packages/tex.scm:3026 +#: gnu/packages/tex.scm:3286 msgid "" "This bundle includes @file{color.cfg} and @file{graphics.cfg} files that\n" "set default \"driver\" options for the color and graphics packages." msgstr "" -#: gnu/packages/tex.scm:3048 +#: gnu/packages/tex.scm:3303 +msgid "" +"The package provides Greek LICR macro definitions and encoding definition files\n" +"for Greek text font encodings for use with fontenc." +msgstr "" + +#: gnu/packages/tex.scm:3325 msgid "" "This is a collection of LaTeX packages for producing color, including\n" "graphics (e.g. PostScript) files, and rotation and scaling of text in LaTeX\n" @@ -17699,13 +17888,13 @@ msgid "" "keyval, and lscape." msgstr "" -#: gnu/packages/tex.scm:3066 +#: gnu/packages/tex.scm:3343 msgid "" "This package provides the code for the @code{color} option that is\n" "used by @code{hyperref} and @code{bookmark}." msgstr "" -#: gnu/packages/tex.scm:3098 +#: gnu/packages/tex.scm:3375 msgid "" "The package starts from the basic facilities of the colorcolor package,\n" "and provides easy driver-independent access to several kinds of color tints,\n" @@ -17716,7 +17905,7 @@ msgid "" "tables." msgstr "" -#: gnu/packages/tex.scm:3171 +#: gnu/packages/tex.scm:3448 msgid "" "The package provides an implementation of a parser for\n" "documents matching the XML 1.0 and XML Namespace Recommendations. Element and\n" @@ -17724,7 +17913,7 @@ msgid "" "XML, using UTF-8 or a suitable 8-bit encoding." msgstr "" -#: gnu/packages/tex.scm:3222 +#: gnu/packages/tex.scm:3499 msgid "" "The @code{hyperref} package is used to handle cross-referencing commands\n" "in LaTeX to produce hypertext links in the document. The package provides\n" @@ -17736,20 +17925,20 @@ msgid "" "@code{nameref} packages, which make use of the facilities of @code{hyperref}." msgstr "" -#: gnu/packages/tex.scm:3262 +#: gnu/packages/tex.scm:3539 msgid "" "The bundle comprises various LaTeX packages, providing among others:\n" "better accessibility support for PDF files; extensible chemists reaction\n" "arrows; record information about document class(es) used; and many more." msgstr "" -#: gnu/packages/tex.scm:3285 +#: gnu/packages/tex.scm:3562 msgid "" "This package provides additional rerun warnings if some auxiliary\n" "files have changed. It is based on MD5 checksum, provided by pdfTeX." msgstr "" -#: gnu/packages/tex.scm:3319 +#: gnu/packages/tex.scm:3596 msgid "" "This package is a collection of (variously) simple tools provided as\n" "part of the LaTeX required tools distribution, comprising the following\n" @@ -17759,7 +17948,7 @@ msgid "" "xr, and xspace." msgstr "" -#: gnu/packages/tex.scm:3338 +#: gnu/packages/tex.scm:3615 msgid "" "The command @code{\\url} is a form of verbatim command that\n" "allows linebreaks at certain characters or combinations of characters, accepts\n" @@ -17771,14 +17960,14 @@ msgid "" "of file names." msgstr "" -#: gnu/packages/tex.scm:3364 +#: gnu/packages/tex.scm:3641 msgid "" "This package provides font maps that were originally part of\n" "the now obsolete teTeX distributions but are still used at the core of the TeX\n" "Live distribution." msgstr "" -#: gnu/packages/tex.scm:3391 +#: gnu/packages/tex.scm:3668 msgid "" "The l3kernel bundle provides an implementation of the LaTeX3\n" "programmers’ interface, as a set of packages that run under LaTeX 2e. The\n" @@ -17787,7 +17976,7 @@ msgid "" "that the LaTeX3 conventions can be used with regular LaTeX 2e packages." msgstr "" -#: gnu/packages/tex.scm:3420 +#: gnu/packages/tex.scm:3697 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" @@ -17796,7 +17985,7 @@ msgid "" "an independent schedule." msgstr "" -#: gnu/packages/tex.scm:3484 +#: gnu/packages/tex.scm:3761 msgid "" "This bundle holds prototype implementations of concepts for a LaTeX\n" "designer interface, to be used with the experimental LaTeX kernel as\n" @@ -17813,14 +18002,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:3511 +#: gnu/packages/tex.scm:3788 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" "here are defined for the dvips engine only." msgstr "" -#: gnu/packages/tex.scm:3539 +#: gnu/packages/tex.scm:3816 msgid "" "Fontspec is a package for XeLaTeX and LuaLaTeX. It provides an\n" "automatic and unified interface to feature-rich AAT and OpenType fonts through\n" @@ -17828,7 +18017,7 @@ msgid "" "the l3kernel and xparse bundles from the LaTeX 3 development team." msgstr "" -#: gnu/packages/tex.scm:3569 +#: gnu/packages/tex.scm:3846 msgid "" "The original grffile package extended the file name processing of the\n" "@code{graphics} package to support a larger range of file names. The base\n" @@ -17836,13 +18025,13 @@ msgid "" "is a stub that just loads @code{graphicx}." msgstr "" -#: gnu/packages/tex.scm:3610 +#: gnu/packages/tex.scm:3887 msgid "" "This package provides @code{\\StringEncodingConvert} for converting a\n" "string between different encodings. Both LaTeX and plain-TeX are supported." msgstr "" -#: gnu/packages/tex.scm:3653 +#: gnu/packages/tex.scm:3930 msgid "" "The l3build module is designed to support the development of\n" "high-quality LaTeX code by providing: a unit testing system, automated\n" @@ -17851,14 +18040,20 @@ msgid "" "@code{.tex} file which provides the testing environment." msgstr "" -#: gnu/packages/tex.scm:3690 +#: gnu/packages/tex.scm:3953 msgid "" "Lualibs is a collection of Lua modules useful for general programming.\n" "The bundle is based on Lua modules shipped with ConTeXt, and made available in\n" "this bundle for use independent of ConTeXt." msgstr "" -#: gnu/packages/tex.scm:3718 +#: gnu/packages/tex.scm:3972 +msgid "" +"This package provides a Lua module for processing application arguments\n" +"in the same way as BSD/GNU @code{getopt_long(3)} functions do." +msgstr "" + +#: gnu/packages/tex.scm:3999 msgid "" "Luaotfload is an adaptation of the ConTeXt font loading system for the\n" "Plain and LaTeX formats. It allows OpenType fonts to be loaded with font\n" @@ -17867,11 +18062,7 @@ msgid "" "loading fonts by their proper names instead of file names." msgstr "" -#: gnu/packages/tex.scm:3790 -msgid "This package is necessary to use LaTeX with the LuaTeX engine." -msgstr "" - -#: gnu/packages/tex.scm:3809 +#: gnu/packages/tex.scm:4025 msgid "" "This is the principal package in the AMS-LaTeX distribution. It adapts\n" "for use in LaTeX most of the mathematical features found in AMS-TeX; it is\n" @@ -17886,7 +18077,7 @@ msgid "" "definitions." msgstr "" -#: gnu/packages/tex.scm:3843 +#: gnu/packages/tex.scm:4059 msgid "" "This bundle contains three AMS classes: @code{amsartamsart} (for writing\n" "articles for the AMS), @code{amsbookamsbook} (for books) and\n" @@ -17895,7 +18086,7 @@ msgid "" "distribution." msgstr "" -#: gnu/packages/tex.scm:3890 +#: gnu/packages/tex.scm:4106 msgid "" "The package manages culturally-determined typographical (and other)\n" "rules, and hyphenation patterns for a wide range of languages. A document may\n" @@ -17906,7 +18097,7 @@ msgid "" "polyglossia package rather than Babel." msgstr "" -#: gnu/packages/tex.scm:3917 +#: gnu/packages/tex.scm:4133 msgid "" "This package provides the language definition file for support of\n" "English in @code{babel}. Care is taken to select British hyphenation patterns\n" @@ -17914,14 +18105,14 @@ msgid "" "for Canadian and USA text." msgstr "" -#: gnu/packages/tex.scm:3939 -#, fuzzy +#: gnu/packages/tex.scm:4173 msgid "" -"This package provides support for the French language for the\n" -"babel multilingual system." -msgstr "Ez a csomag egy Python felületet biztosít a Redis kulcs-érték tároláshoz." +"The package, formerly known as frenchb, establishes French conventions\n" +"in a document (or a subset of the conventions, if French is not the main\n" +"language of the document)." +msgstr "" -#: gnu/packages/tex.scm:3959 +#: gnu/packages/tex.scm:4196 msgid "" "This package provides the language definition file for support of German\n" "in @code{babel}. It provides all the necessary macros, definitions and\n" @@ -17930,14 +18121,14 @@ msgid "" "Swiss varieties of German." msgstr "" -#: gnu/packages/tex.scm:3986 +#: gnu/packages/tex.scm:4223 msgid "" "This package provides the language definition file for\n" "support of Swedish in @code{babel}. It provides all the necessary macros,\n" "definitions and settings to typeset Swedish documents." msgstr "" -#: gnu/packages/tex.scm:4008 +#: gnu/packages/tex.scm:4245 msgid "" "This bundle of macros files provides macro support (including font\n" "encoding macros) for the use of Cyrillic characters in fonts encoded under the\n" @@ -17945,7 +18136,7 @@ msgid "" "language that is written in a Cyrillic alphabet." msgstr "" -#: gnu/packages/tex.scm:4126 +#: gnu/packages/tex.scm:4363 msgid "" "The PSNFSS collection includes a set of files that provide a complete\n" "working setup of the LaTeX font selection scheme (NFSS2) for use with common\n" @@ -17960,20 +18151,20 @@ msgid "" "part of the LaTeX required set of packages." msgstr "" -#: gnu/packages/tex.scm:4177 gnu/packages/tex.scm:4269 +#: gnu/packages/tex.scm:4414 gnu/packages/tex.scm:4506 msgid "" "This is a very limited subset of the TeX Live distribution.\n" "It includes little more than the required set of LaTeX packages." msgstr "" -#: gnu/packages/tex.scm:4248 +#: gnu/packages/tex.scm:4485 msgid "" "This package contains the fonts map configuration file\n" "generated for the base TeX Live packages as well as, optionally, user-provided\n" "ones." msgstr "" -#: gnu/packages/tex.scm:4288 +#: gnu/packages/tex.scm:4525 msgid "" "These fonts are considered the \"ultimate answer\" to IPA\n" "typesetting. The encoding of these 8-bit fonts has been registered as LaTeX\n" @@ -17982,7 +18173,7 @@ msgid "" "TS3 fonts." msgstr "" -#: gnu/packages/tex.scm:4311 +#: gnu/packages/tex.scm:4548 msgid "" "Amsrefs is a LaTeX package for bibliographies that provides an archival\n" "data format similar to the format of BibTeX database files, but adapted to\n" @@ -17990,7 +18181,7 @@ msgid "" "conjunction with BibTeX or as a replacement for BibTeX." msgstr "" -#: gnu/packages/tex.scm:4340 +#: gnu/packages/tex.scm:4577 msgid "" "This package aims to provide a one-stop solution to requirements for\n" "footnotes. It offers: Multiple footnote apparatus superior to that of\n" @@ -18004,7 +18195,7 @@ msgid "" "@code{suffix} packages." msgstr "" -#: gnu/packages/tex.scm:4368 +#: gnu/packages/tex.scm:4605 msgid "" "The package provides the commands @code{\\blindtext} and\n" "@code{\\Blindtext} for creating \"blind\" text useful in testing new classes\n" @@ -18015,7 +18206,7 @@ msgid "" "ipsum\" text, see the @code{lipsum} package)." msgstr "" -#: gnu/packages/tex.scm:4407 +#: gnu/packages/tex.scm:4644 msgid "" "This package implements a document layout for writing letters according\n" "to the rules of DIN (Deutsches Institut für Normung, German standardisation\n" @@ -18027,7 +18218,7 @@ msgid "" "package." msgstr "" -#: gnu/packages/tex.scm:4433 +#: gnu/packages/tex.scm:4670 msgid "" "This package provides a means to add a textual, light grey watermark on\n" "every page or on the first page of a document. Typical usage may consist in\n" @@ -18037,7 +18228,7 @@ msgid "" "on everypage." msgstr "" -#: gnu/packages/tex.scm:4457 +#: gnu/packages/tex.scm:4694 msgid "" "This package provides the @code{\\collect@@body} command (as in\n" "@code{amsmath}), as well as a @code{\\long} version @code{\\Collect@@Body},\n" @@ -18045,7 +18236,7 @@ msgid "" "define a new author interface to creating new environments." msgstr "" -#: gnu/packages/tex.scm:4479 +#: gnu/packages/tex.scm:4716 msgid "" "LaTeX users sometimes need to ensure that two or more blocks of text\n" "occupy the same amount of horizontal space on the page. To that end, the\n" @@ -18059,7 +18250,7 @@ msgid "" "also provided." msgstr "" -#: gnu/packages/tex.scm:4504 +#: gnu/packages/tex.scm:4741 msgid "" "This package gives the user complete control of how the entries of\n" "the table of contents should be constituted from the name, number, and page\n" @@ -18079,7 +18270,7 @@ msgid "" "table of contents." msgstr "" -#: gnu/packages/tex.scm:4546 +#: gnu/packages/tex.scm:4783 msgid "" "The package provides additional features for the LaTeX\n" "@code{description} environment, including adjustable left margin. The package\n" @@ -18088,7 +18279,7 @@ msgid "" "@code{enumerate} lists, and numbered lists remain in sequence)." msgstr "" -#: gnu/packages/tex.scm:4566 +#: gnu/packages/tex.scm:4803 msgid "" "This package provides macros to read and compare the modification dates\n" "of files. The files may be @code{.tex} files, images or other files (as long\n" @@ -18100,14 +18291,14 @@ msgid "" "but non-expandable ones." msgstr "" -#: gnu/packages/tex.scm:4589 +#: gnu/packages/tex.scm:4826 msgid "" "The @code{hanging} package facilitates the typesetting of hanging\n" "paragraphs. The package also enables typesetting with hanging punctuation,\n" "by making punctuation characters active." msgstr "" -#: gnu/packages/tex.scm:4612 +#: gnu/packages/tex.scm:4849 msgid "" "This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX support for\n" "the Fira Sans family of fonts designed by Erik Spiekermann and Ralph du\n" @@ -18115,7 +18306,7 @@ msgid "" "corresponding italics: light, regular, medium, bold, ..." msgstr "" -#: gnu/packages/tex.scm:4635 +#: gnu/packages/tex.scm:4872 msgid "" "This package uses the (La)TeX extension @code{-shell-escape} to\n" "establish whether the document is being processed on a Windows or on a\n" @@ -18126,7 +18317,7 @@ msgid "" "classes of systems." msgstr "" -#: gnu/packages/tex.scm:4660 +#: gnu/packages/tex.scm:4897 msgid "" "This bundle provides a package that implements both author-year and\n" "numbered references, as well as much detailed of support for other\n" @@ -18136,20 +18327,20 @@ msgid "" "designed from the start to be compatible with @code{natbib}." msgstr "" -#: gnu/packages/tex.scm:4679 +#: gnu/packages/tex.scm:4916 msgid "" "This package provides a friendly interface for defining the meaning of\n" "Unicode characters. The document should be processed by (pdf)LaTeX with the\n" "Unicode option of @code{inputenc} or @code{inputenx}, or by XeLaTeX/LuaLaTeX." msgstr "" -#: gnu/packages/tex.scm:4699 +#: gnu/packages/tex.scm:4936 msgid "" "This package makes a number of utility functions from pdfTeX\n" "available for luaTeX by reimplementing them using Lua." msgstr "" -#: gnu/packages/tex.scm:4719 +#: gnu/packages/tex.scm:4956 msgid "" "This package allows LaTeX constructions (equations, picture\n" "environments, etc.) to be precisely superimposed over Encapsulated PostScript\n" @@ -18160,7 +18351,7 @@ msgid "" "rotated." msgstr "" -#: gnu/packages/tex.scm:4751 +#: gnu/packages/tex.scm:4988 msgid "" "This is a package for processing PostScript graphics with @code{psfrag}\n" "labels within pdfLaTeX documents. Every graphic is compiled individually,\n" @@ -18168,7 +18359,7 @@ msgid "" "re-processing." msgstr "" -#: gnu/packages/tex.scm:4771 +#: gnu/packages/tex.scm:5008 msgid "" "This package provides the @code{\\setcounterref} and\n" "@code{\\addtocounterref} commands which use the section (or other) number\n" @@ -18177,7 +18368,7 @@ msgid "" "corresponding thing with the page reference of the label." msgstr "" -#: gnu/packages/tex.scm:4791 +#: gnu/packages/tex.scm:5028 msgid "" "This package provides a class that produces overhead\n" "slides (transparencies), with many facilities. Seminar is not nowadays\n" @@ -18186,14 +18377,14 @@ msgid "" "21st-century presentation styles." msgstr "" -#: gnu/packages/tex.scm:4812 +#: gnu/packages/tex.scm:5049 msgid "" "The package provides a versatile way to stack objects vertically in a\n" "variety of customizable ways. A number of useful macros are provided, all\n" "of which make use of the @code{stackengine} core." msgstr "" -#: gnu/packages/tex.scm:4828 +#: gnu/packages/tex.scm:5065 msgid "" "This package provides control over the typography of the\n" "@dfn{Table of Contents}, @dfn{List of Figures} and @dfn{List of Tables},\n" @@ -18201,7 +18392,7 @@ msgid "" "be changed." msgstr "" -#: gnu/packages/tex.scm:4862 +#: gnu/packages/tex.scm:5099 msgid "" "This very short package allows you to expandably remove spaces around a\n" "token list (commands are provided to remove spaces before, spaces after, or\n" @@ -18209,13 +18400,28 @@ msgid "" "space-stripped macros." msgstr "" -#: gnu/packages/tex.scm:4897 +#: gnu/packages/tex.scm:5115 +#, fuzzy +#| msgid "This package provides a Python interface to the Redis key-value store." +msgid "This package provides a math interface to the Rsfs fonts." +msgstr "Ez a csomag egy Python felületet biztosít a Redis kulcs-érték tároláshoz." + +#: gnu/packages/tex.scm:5152 msgid "" "This package defines a command @code{\\captionof} for putting a caption\n" "to something that's not a float." msgstr "" -#: gnu/packages/tex.scm:4913 +#: gnu/packages/tex.scm:5170 +msgid "" +"Many of David Carlisle's more substantial packages stand on their own,\n" +"or as part of the LaTeX latex-tools set; this set contains: making dotless\n" +"@emph{j} characters for fonts that don't have them; a method for combining the\n" +"capabilities of longtable and tabularx; an environment for including plain TeX\n" +"in LaTeX documents; a jiffy to create slashed characters for physicists." +msgstr "" + +#: gnu/packages/tex.scm:5189 msgid "" "You can hyperlink DOI numbers to doi.org. However, some publishers have\n" "elected to use nasty characters in their DOI numbering scheme (@code{<},\n" @@ -18225,7 +18431,7 @@ msgid "" "hyperlink to the target of the DOI." msgstr "" -#: gnu/packages/tex.scm:4936 +#: gnu/packages/tex.scm:5212 msgid "" "This package is a toolbox of programming facilities geared primarily\n" "towards LaTeX class and package authors. It provides LaTeX frontends to some\n" @@ -18236,7 +18442,7 @@ msgid "" "of the LaTeX kernel." msgstr "" -#: gnu/packages/tex.scm:4976 +#: gnu/packages/tex.scm:5252 msgid "" "This package provides seven predefined chapter heading styles. Each\n" "style can be modified using a set of simple commands. Optionally one can\n" @@ -18244,7 +18450,7 @@ msgid "" "headings." msgstr "" -#: gnu/packages/tex.scm:5011 +#: gnu/packages/tex.scm:5287 msgid "" "The package creates three environments: @code{framed}, which puts an\n" "ordinary frame box around the region, @code{shaded}, which shades the region,\n" @@ -18255,7 +18461,7 @@ msgid "" "@code{\\MakeFramed} to make your own framed-style environments." msgstr "" -#: gnu/packages/tex.scm:5045 +#: gnu/packages/tex.scm:5321 msgid "" "This package is designed for formatting formless letters in German; it\n" "can also be used for English (by those who can read the documentation). There\n" @@ -18263,13 +18469,13 @@ msgid "" "\"old\" and a \"new\" version of g-brief." msgstr "" -#: gnu/packages/tex.scm:5067 +#: gnu/packages/tex.scm:5343 msgid "" "The package deals with connections in two-dimensional style, optionally\n" "in colour." msgstr "" -#: gnu/packages/tex.scm:5087 +#: gnu/packages/tex.scm:5363 msgid "" "The package allows citations in the German style, which is considered by\n" "many to be particularly reader-friendly. The citation provides a small amount\n" @@ -18279,7 +18485,7 @@ msgid "" "BibLaTeX, and is considered experimental." msgstr "" -#: gnu/packages/tex.scm:5113 +#: gnu/packages/tex.scm:5389 msgid "" "This package provides an easy and flexible user interface to customize\n" "page layout, implementing auto-centering and auto-balancing mechanisms so that\n" @@ -18290,7 +18496,7 @@ msgid "" "ability to communicate the paper size it's set up to the output." msgstr "" -#: gnu/packages/tex.scm:5138 +#: gnu/packages/tex.scm:5414 msgid "" "This collection of tools includes: @code{atsupport} for short commands\n" "starting with @code{@@}, macros to sanitize the OT1 encoding of the\n" @@ -18300,13 +18506,13 @@ msgid "" "array environments; verbatim handling; and syntax diagrams." msgstr "" -#: gnu/packages/tex.scm:5162 +#: gnu/packages/tex.scm:5438 msgid "" "This package provides a complete Babel replacement for users of LuaLaTeX\n" "and XeLaTeX; it relies on the @code{fontspec} package, version 2.0 at least." msgstr "" -#: gnu/packages/tex.scm:5182 +#: gnu/packages/tex.scm:5458 msgid "" "This package was a predecessor of @code{longtable}; the newer\n" "package (designed on quite different principles) is easier to use and more\n" @@ -18314,7 +18520,7 @@ msgid "" "situations where longtable has problems." msgstr "" -#: gnu/packages/tex.scm:5217 +#: gnu/packages/tex.scm:5493 msgid "" "Texinfo is the preferred format for documentation in the GNU project;\n" "the format may be used to produce online or printed output from a single\n" @@ -18323,7 +18529,23 @@ msgid "" "hypertext linkages in some cases)." msgstr "" -#: gnu/packages/tex.scm:5240 +#: gnu/packages/tex.scm:5513 +msgid "" +"The textcase package offers commands @code{\\MakeTextUppercase} and\n" +"@code{\\MakeTextLowercase} are similar to the standard @code{\\MakeUppercase}\n" +"and @code{\\MakeLowercase}, but they do not change the case of any sections of\n" +"mathematics, or the arguments of @code{\\cite}, @code{\\label} and\n" +"@code{\\ref} commands within the argument. A further command\n" +"@code{\\NoCaseChange} does nothing but suppress case change within its\n" +"argument, so to force uppercase of a section including an environment, one\n" +"might say:\n" +"\n" +"@example\n" +"\\MakeTextUppercase{...\\NoCaseChange{\\begin{foo}} ...\\NoCaseChange{\\end{foo}}...}\n" +"@end example\n" +msgstr "" + +#: gnu/packages/tex.scm:5543 msgid "" "Typewriter-style fonts are best for program listings, but Computer\n" "Modern Typewriter prints @code{`} and @code{'} as bent opening and closing\n" @@ -18337,14 +18559,14 @@ msgid "" "does not affect @code{\\tt}, @code{\\texttt}, etc." msgstr "" -#: gnu/packages/tex.scm:5281 +#: gnu/packages/tex.scm:5584 msgid "" "This is a simple package to set up document margins. This package is\n" "considered obsolete; alternatives are the @code{typearea} package from the\n" "@code{koma-script} bundle, or the @code{geometry} package." msgstr "" -#: gnu/packages/tex.scm:5302 +#: gnu/packages/tex.scm:5605 msgid "" "The appendix package provides various ways of formatting the titles of\n" "appendices. Also (sub)appendices environments are provided that can be used,\n" @@ -18353,14 +18575,14 @@ msgid "" "command." msgstr "" -#: gnu/packages/tex.scm:5321 +#: gnu/packages/tex.scm:5624 msgid "" "This package implements a new bookmark (outline) organization for the\n" "@code{hyperref} package. Bookmark properties such as style and color. Other\n" "action types are available (URI, GoToR, Named)." msgstr "" -#: gnu/packages/tex.scm:5342 +#: gnu/packages/tex.scm:5645 msgid "" "Identify areas of text to be marked with changebars with the\n" "@code{\\cbstart} and @code{\\cbend} commands; the bars may be coloured. The\n" @@ -18369,19 +18591,19 @@ msgid "" "drivers, and VTeX and pdfTeX." msgstr "" -#: gnu/packages/tex.scm:5379 +#: gnu/packages/tex.scm:5682 msgid "" "This package embeds CMap tables into PDF files to make search and\n" "copy-and-paste functions work properly." msgstr "" -#: gnu/packages/tex.scm:5399 +#: gnu/packages/tex.scm:5702 msgid "" "This package allows rows, columns, and even individual cells in LaTeX\n" "tables to be coloured." msgstr "" -#: gnu/packages/tex.scm:5432 +#: gnu/packages/tex.scm:5735 msgid "" "This package provides variants of @code{\\fbox}: @code{\\shadowbox},\n" "@code{\\doublebox}, @code{\\ovalbox}, @code{\\Ovalbox}, with helpful tools for\n" @@ -18389,14 +18611,14 @@ msgid "" "floats, center, flushleft, and flushright, lists, and pages." msgstr "" -#: gnu/packages/tex.scm:5467 +#: gnu/packages/tex.scm:5770 msgid "" "The package provides extensive facilities, both for constructing headers\n" "and footers, and for controlling their use (for example, at times when LaTeX\n" "would automatically change the heading style in use)." msgstr "" -#: gnu/packages/tex.scm:5488 +#: gnu/packages/tex.scm:5791 msgid "" "This package improves the interface for defining floating objects such\n" "as figures and tables. It introduces the boxed float, the ruled float and the\n" @@ -18406,7 +18628,7 @@ msgid "" "with @code{\\floatplacement{figure}{H}}." msgstr "" -#: gnu/packages/tex.scm:5512 +#: gnu/packages/tex.scm:5815 msgid "" "This is a collection of ways to change the typesetting of footnotes.\n" "The package provides means of changing the layout of the footnotes themselves,\n" @@ -18416,7 +18638,7 @@ msgid "" "footnotes with symbols rather than numbers." msgstr "" -#: gnu/packages/tex.scm:5532 +#: gnu/packages/tex.scm:5835 msgid "" "TeX’s @code{\\let} assignment does not work for LaTeX macros with\n" "optional arguments, or for macros that are defined as robust macros by\n" @@ -18424,7 +18646,7 @@ msgid "" "that also takes care of the involved internal macros." msgstr "" -#: gnu/packages/tex.scm:5556 +#: gnu/packages/tex.scm:5859 msgid "" "The package enables the user to typeset programs (programming code)\n" "within LaTeX; the source code is read directly by TeX---no front-end processor\n" @@ -18432,7 +18654,7 @@ msgid "" "styles. Support for @code{hyperref} is provided." msgstr "" -#: gnu/packages/tex.scm:5591 +#: gnu/packages/tex.scm:5894 msgid "" "This package provides miscellaneous macros by Joerg Knappen, including:\n" "represent counters in greek; Maxwell's non-commutative division;\n" @@ -18444,7 +18666,7 @@ msgid "" "in SGML; use maths minus in text as appropriate; simple Young tableaux." msgstr "" -#: gnu/packages/tex.scm:5615 +#: gnu/packages/tex.scm:5918 #, fuzzy #| msgid "This package provides a Python interface to the Redis key-value store." msgid "" @@ -18452,7 +18674,7 @@ msgid "" "package options." msgstr "Ez a csomag egy Python felületet biztosít a Redis kulcs-érték tároláshoz." -#: gnu/packages/tex.scm:5684 +#: gnu/packages/tex.scm:5987 msgid "" "The EC fonts are European Computer Modern Fonts, supporting the complete\n" "LaTeX T1 encoding defined at the 1990 TUG conference hold at Cork/Ireland.\n" @@ -18469,7 +18691,7 @@ msgid "" "differs from the EC in a number of particulars." msgstr "" -#: gnu/packages/tex.scm:5717 +#: gnu/packages/tex.scm:6020 msgid "" "This package provides a set of virtual fonts which emulates T1 coded\n" "fonts using the standard CM fonts. The package name, AE fonts, supposedly\n" @@ -18479,7 +18701,7 @@ msgid "" "via the CM-super, Latin Modern and (in a restricted way) CM-LGC font sets." msgstr "" -#: gnu/packages/tex.scm:5742 +#: gnu/packages/tex.scm:6045 msgid "" "Inconsolata is a monospaced font designed by Raph Levien. This package\n" "contains the font (in both Adobe Type 1 and OpenType formats) in regular and\n" @@ -18488,28 +18710,28 @@ msgid "" "TeX, and LaTeX font definition and other relevant files." msgstr "" -#: gnu/packages/tex.scm:5771 +#: gnu/packages/tex.scm:6074 #, fuzzy msgid "" "This package provides a drop-in replacements for the Times font from\n" "Adobe's basic set." msgstr "Ez a csomag egy HTML dokumentációt biztosít az nginx webkiszolgálóhoz." -#: gnu/packages/tex.scm:5799 +#: gnu/packages/tex.scm:6102 #, fuzzy msgid "" "This package provides a drop-in replacements for the Palatino font from\n" "Adobe's basic set." msgstr "Ez a csomag egy HTML dokumentációt biztosít az nginx webkiszolgálóhoz." -#: gnu/packages/tex.scm:5824 +#: gnu/packages/tex.scm:6127 #, fuzzy msgid "" "This package provides a drop-in replacements for the Zapfding font from\n" "Adobe's basic set." msgstr "Ez a csomag egy HTML dokumentációt biztosít az nginx webkiszolgálóhoz." -#: gnu/packages/tex.scm:5896 +#: gnu/packages/tex.scm:6199 msgid "" "The fonts provide uppercase formal script letters for use as symbols in\n" "scientific and mathematical typesetting (in contrast to the informal script\n" @@ -18519,14 +18741,14 @@ msgid "" "one of the packages @code{calrsfs} and @code{mathrsfs}." msgstr "" -#: gnu/packages/tex.scm:5920 +#: gnu/packages/tex.scm:6223 msgid "" "The package adds one or more user commands to LaTeX's @code{shipout}\n" "routine, which may be used to place the output at fixed positions. The\n" "@code{grid} option may be used to find the correct places." msgstr "" -#: gnu/packages/tex.scm:5954 +#: gnu/packages/tex.scm:6257 msgid "" "Extensions to @code{epic} and the LaTeX picture drawing environment,\n" "include the drawing of lines at any slope, the drawing of circles in any\n" @@ -18536,7 +18758,7 @@ msgid "" "@code{\\special} commands." msgstr "" -#: gnu/packages/tex.scm:5991 +#: gnu/packages/tex.scm:6276 msgid "" "This package is intended to ease customizing the three basic list\n" "environments: @code{enumerate}, @code{itemize} and @code{description}. It\n" @@ -18545,14 +18767,14 @@ msgid "" "@code{\\begin{itemize}[itemsep=1ex,leftmargin=1cm]}." msgstr "" -#: gnu/packages/tex.scm:6014 +#: gnu/packages/tex.scm:6301 msgid "" "The package provides tools for creating tabular cells spanning multiple\n" "rows. It has a lot of flexibility, including an option for specifying an\n" "entry at the \"natural\" width of its text." msgstr "" -#: gnu/packages/tex.scm:6048 +#: gnu/packages/tex.scm:6335 msgid "" "The @code{overpic} environment is a cross between the LaTeX\n" "@code{picture} environment and the @code{\\includegraphics} command of\n" @@ -18561,14 +18783,14 @@ msgid "" "positions; a grid for orientation is available." msgstr "" -#: gnu/packages/tex.scm:6084 +#: gnu/packages/tex.scm:6371 msgid "" "Simply changing @code{\\parskip} and @code{\\parindent} leaves a layout\n" "that is untidy; this package (though it is no substitute for a properly\n" "designed class) helps alleviate this untidiness." msgstr "" -#: gnu/packages/tex.scm:6105 +#: gnu/packages/tex.scm:6392 msgid "" "This package simplifies the inclusion of external multi-page PDF\n" "documents in LaTeX documents. Pages may be freely selected and it is possible\n" @@ -18578,7 +18800,7 @@ msgid "" "use this package to insert PostScript files, in addition to PDF files." msgstr "" -#: gnu/packages/tex.scm:6146 +#: gnu/packages/tex.scm:6433 msgid "" "The fonts were originally distributed as Metafont sources only, but\n" "Adobe Type 1 versions are also now available. Macro support is provided for\n" @@ -18587,7 +18809,7 @@ msgid "" "the whole font." msgstr "" -#: gnu/packages/tex.scm:6171 +#: gnu/packages/tex.scm:6458 msgid "" "This (deprecated) package provides support for the manipulation and\n" "reference of small or \"sub\" figures and tables within a single figure or\n" @@ -18600,7 +18822,7 @@ msgid "" "the more recent @code{subcaption} package more satisfactory." msgstr "" -#: gnu/packages/tex.scm:6198 +#: gnu/packages/tex.scm:6485 msgid "" "The package defines a @code{tabular*}-like environment, @code{tabulary},\n" "taking a \"total width\" argument as well as the column specifications. The\n" @@ -18611,7 +18833,7 @@ msgid "" "according to the natural width of the widest cell in the column." msgstr "" -#: gnu/packages/tex.scm:6236 +#: gnu/packages/tex.scm:6523 msgid "" "This package facilitates tables with titles (captions) and notes. The\n" "title and notes are given a width equal to the body of the table (a\n" @@ -18620,7 +18842,7 @@ msgid "" "environment." msgstr "" -#: gnu/packages/tex.scm:6263 +#: gnu/packages/tex.scm:6550 msgid "" "Txfonts supplies virtual text roman fonts using Adobe Times (or URW\n" "NimbusRomNo9L) with some modified and additional text symbols in the OT1, T1,\n" @@ -18636,7 +18858,7 @@ msgid "" "TeX metrics (VF and TFM files) and macros for use with LaTeX." msgstr "" -#: gnu/packages/tex.scm:6312 +#: gnu/packages/tex.scm:6599 msgid "" "Iwona is a two-element sans-serif typeface. It was created\n" "as an alternative version of the Kurier typeface, which was designed in 1975\n" @@ -18647,7 +18869,7 @@ msgid "" "of ink traps which typify the Kurier font." msgstr "" -#: gnu/packages/tex.scm:6335 +#: gnu/packages/tex.scm:6622 msgid "" "This package contains a collection of macros by Jörg Knappen:\n" "@table @code\n" @@ -18683,7 +18905,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/tex.scm:6442 +#: gnu/packages/tex.scm:6729 msgid "" "JadeTeX is a companion package to the OpenJade DSSSL\n" "processor. OpenJade applies a DSSSL stylesheet to an SGML or XML document.\n" @@ -18694,7 +18916,7 @@ msgid "" "command)." msgstr "" -#: gnu/packages/tex.scm:6472 +#: gnu/packages/tex.scm:6759 msgid "" "The package provides the Libertine and Biolinum fonts in both Type 1 and\n" "OTF styles, together with support macros for their use. Monospaced and\n" @@ -18704,7 +18926,7 @@ msgid "" "@code{libertine-legacy} packages." msgstr "" -#: gnu/packages/tex.scm:6504 +#: gnu/packages/tex.scm:6791 msgid "" "The package contains LaTeX support for the DejaVu fonts, which are\n" "derived from the Vera fonts but contain more characters and styles. The fonts\n" @@ -18713,7 +18935,7 @@ msgid "" "LGR. The package doesn't (currently) support mathematics." msgstr "" -#: gnu/packages/tex.scm:6540 +#: gnu/packages/tex.scm:6827 msgid "" "This package provides an interface to sectioning commands for selection\n" "from various title styles, e.g. for marginal titles and to change the font of\n" @@ -18722,7 +18944,7 @@ msgid "" "floats in a page. You may assign headers/footers to individual floats, too." msgstr "" -#: gnu/packages/tex.scm:6563 +#: gnu/packages/tex.scm:6850 msgid "" "LaTeX, by default, restricts the sizes at which you can use its default\n" "computer modern fonts, to a fixed set of discrete sizes (effectively, a set\n" @@ -18737,7 +18959,7 @@ msgid "" "@code{ec} fonts." msgstr "" -#: gnu/packages/tex.scm:6617 +#: gnu/packages/tex.scm:6904 msgid "" "The LH fonts address the problem of the wide variety of alphabets that\n" "are written with Cyrillic-style characters. The fonts are the original basis\n" @@ -18750,7 +18972,7 @@ msgid "" "OT2 encoded fonts, CM bright shaped fonts and Concrete shaped fonts." msgstr "" -#: gnu/packages/tex.scm:6647 +#: gnu/packages/tex.scm:6934 msgid "" "The Martin Vogel’s Symbols fonts (marvosym) contains the\n" "Euro currency symbol as defined by the European commission, along with symbols\n" @@ -18760,34 +18982,41 @@ msgid "" "the derived Type 1 font, together with support files for TeX (LaTeX)." msgstr "" -#: gnu/packages/tex.scm:6685 +#: gnu/packages/tex.scm:6972 msgid "" "MetaPost uses a language based on that of Metafont to produce precise\n" "technical illustrations. Its output is scalable PostScript or SVG, rather\n" "than the bitmaps Metafont creates." msgstr "" -#: gnu/packages/tex.scm:6706 +#: gnu/packages/tex.scm:6993 msgid "" "This package provides a class for typesetting publications of the\n" "Association for Computing Machinery (ACM)." msgstr "" -#: gnu/packages/tex.scm:6739 +#: gnu/packages/tex.scm:7026 msgid "" "The @code{varwidth} environment is superficially similar to\n" "@code{minipage}, but the specified width is just a maximum value — the box may\n" "get a narrower “natural” width." msgstr "" -#: gnu/packages/tex.scm:6757 +#: gnu/packages/tex.scm:7041 +msgid "" +"The varwidth environment is superficially similar to minipage, but the\n" +"specified width is just a maximum value --- the box may get a narrower natural\n" +"width." +msgstr "" + +#: gnu/packages/tex.scm:7059 msgid "" "This package provides the @code{wasy} (Waldi symbol) fonts,\n" "in the Metafont and Adobe Type 1 formats. Support under LaTeX is provided by\n" "the @code{wasysym} package." msgstr "" -#: gnu/packages/tex.scm:6778 +#: gnu/packages/tex.scm:7080 msgid "" "The @code{wasy} (Waldi Symbol) font by Roland Waldi provides many glyphs like\n" "male and female symbols and astronomical symbols, as well as the complete\n" @@ -18795,14 +19024,14 @@ msgid "" "implements an easy to use interface for these symbols." msgstr "" -#: gnu/packages/tex.scm:6815 +#: gnu/packages/tex.scm:7117 msgid "" "This package allows figures or tables to have text wrapped around them.\n" "It does not work in combination with list environments, but can be used in a\n" "@code{parbox} or @code{minipage}, and in two-column format." msgstr "" -#: gnu/packages/tex.scm:6849 +#: gnu/packages/tex.scm:7151 msgid "" "The bundle provides the @code{ucs} package, and @code{utf8x.def},\n" "together with a large number of support files. The @code{utf8x.def}\n" @@ -18815,7 +19044,7 @@ msgid "" "package of that name now exists." msgstr "" -#: gnu/packages/tex.scm:6883 +#: gnu/packages/tex.scm:7185 msgid "" "The main purpose of the preview package is the extraction of selected\n" "elements from a LaTeX source, like formulas or graphics, into separate\n" @@ -18826,7 +19055,7 @@ msgid "" "files." msgstr "" -#: gnu/packages/tex.scm:6908 +#: gnu/packages/tex.scm:7210 msgid "" "This package ensures that all acronyms used in the text are spelled out\n" "in full at least once. It also provides an environment to build a list of\n" @@ -18835,13 +19064,13 @@ msgid "" "e-TeX." msgstr "" -#: gnu/packages/tex.scm:6945 +#: gnu/packages/tex.scm:7247 msgid "" "This package provides an extension of TeX which can be configured to\n" "directly generate PDF documents instead of DVI." msgstr "" -#: gnu/packages/tex.scm:7025 +#: gnu/packages/tex.scm:7327 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18851,7 +19080,7 @@ msgid "" "This package contains the complete tree of texmf-dist data." msgstr "" -#: gnu/packages/tex.scm:7088 +#: gnu/packages/tex.scm:7390 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18861,7 +19090,7 @@ msgid "" "This package contains the complete TeX Live distribution." msgstr "" -#: gnu/packages/tex.scm:7130 +#: gnu/packages/tex.scm:7432 msgid "" "@code{Text::BibTeX} is a Perl library for reading, parsing,\n" "and processing BibTeX files. @code{Text::BibTeX} gives you access to the data\n" @@ -18870,13 +19099,13 @@ msgid "" "values (strings, macros, or numbers) pasted together." msgstr "" -#: gnu/packages/tex.scm:7216 +#: gnu/packages/tex.scm:7518 msgid "" "Biber is a BibTeX replacement for users of biblatex. Among\n" "other things it comes with full Unicode support." msgstr "" -#: gnu/packages/tex.scm:7250 +#: gnu/packages/tex.scm:7552 msgid "" "Rubber is a program whose purpose is to handle all tasks related to the\n" "compilation of LaTeX documents. This includes compiling the document itself,\n" @@ -18886,20 +19115,20 @@ msgid "" "PDF documents." msgstr "" -#: gnu/packages/tex.scm:7289 +#: gnu/packages/tex.scm:7591 msgid "" "Texmaker is a program that integrates many tools needed to\n" "develop documents with LaTeX, in a single application." msgstr "" -#: gnu/packages/tex.scm:7330 +#: gnu/packages/tex.scm:7632 msgid "" "@i{TeX for the Impatient} is a ~350 page book on TeX,\n" "plain TeX, and Eplain, originally written by Paul Abrahams, Kathryn Hargreaves,\n" "and Karl Berry." msgstr "" -#: gnu/packages/tex.scm:7394 +#: gnu/packages/tex.scm:7696 msgid "" "LyX is a document preparation system. It excels at letting\n" "you create complex technical and scientific articles with mathematics,\n" @@ -18908,7 +19137,7 @@ msgid "" "required: automatic sectioning and pagination, spell checking and so forth." msgstr "" -#: gnu/packages/tex.scm:7430 +#: gnu/packages/tex.scm:7732 msgid "" "The package provides an interface to embed interactive Flash (SWF) and 3D\n" "objects (Adobe U3D & PRC), as well as video and sound files or streams in the\n" @@ -18921,7 +19150,7 @@ msgid "" "specification. It replaces the now obsolete @code{movie15} package." msgstr "" -#: gnu/packages/tex.scm:7470 +#: gnu/packages/tex.scm:7772 msgid "" "This package provides OCG (Optional Content Groups) support within a PDF\n" "document.\n" @@ -18939,7 +19168,7 @@ msgid "" "It also ensures compatibility with the @code{media9} and @code{animate} packages." msgstr "" -#: gnu/packages/tex.scm:7504 +#: gnu/packages/tex.scm:7806 msgid "" "A bundle of LATEX packages by Martin Schröder; the collection comprises:\n" "\n" @@ -18953,7 +19182,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/tex.scm:7532 +#: gnu/packages/tex.scm:7852 msgid "" "The package numprint prints numbers with a separator every three\n" "digits and converts numbers given as 12345.6e789 to 12\\,345,6\\cdot\n" @@ -18974,14 +19203,14 @@ msgid "" "and after the formatted number." msgstr "" -#: gnu/packages/tex.scm:7571 +#: gnu/packages/tex.scm:7893 msgid "" "Provides commands to disable pagebreaking within a given vertical\n" "space. If there is not enough space between the command and the bottom of the\n" "page, a new page will be started." msgstr "" -#: gnu/packages/tex.scm:7597 +#: gnu/packages/tex.scm:7919 msgid "" "The package provides commands to change the page layout in the middle of\n" "a document, and to robustly check for typesetting on odd or even pages.\n" @@ -18989,7 +19218,7 @@ msgid "" "of code from the @code{memoir} class, whose user interface it shares." msgstr "" -#: gnu/packages/tex.scm:7633 +#: gnu/packages/tex.scm:7955 msgid "" "The package is used to change the format of @code{\\today}’s date,\n" "including the weekday, e.g., \"Saturday, 26 June 2008\", the 'UK format', which\n" @@ -18997,7 +19226,7 @@ msgid "" "@code{\\maketitle} of the article class, \"June 26, 2008\", the 'US format'." msgstr "" -#: gnu/packages/tex.scm:7669 +#: gnu/packages/tex.scm:7971 msgid "" "The package provides an @code{\\ul} (underline) command which will break\n" "over line ends; this technique may be used to replace @code{\\em} (both in that\n" @@ -19006,7 +19235,7 @@ msgid "" "striking out (line through words) and crossing out (/// over words)." msgstr "" -#: gnu/packages/tex.scm:7725 +#: gnu/packages/tex.scm:8029 msgid "" "PGF is a macro package for creating graphics. It is platform- and\n" "format-independent and works together with the most important TeX backend\n" @@ -19018,7 +19247,7 @@ msgid "" "produce either PostScript or PDF output." msgstr "" -#: gnu/packages/tex.scm:7771 +#: gnu/packages/tex.scm:8075 msgid "" "The KOMA-Script bundle provides replacements for the article, report, and\n" "book classes with emphasis on typography and versatility. There is also a\n" @@ -19043,7 +19272,7 @@ msgid "" "typearea (which are the main parts of the bundle)." msgstr "" -#: gnu/packages/tex.scm:7806 +#: gnu/packages/tex.scm:8110 msgid "" "This package is a modern reimplementation of package @code{everyshi},\n" "providing various commands to be executed before a @code{\\shipout} command.\n" @@ -19051,20 +19280,20 @@ msgid "" "be used either with LaTeX or with plain TeX." msgstr "" -#: gnu/packages/tex.scm:7826 +#: gnu/packages/tex.scm:8130 msgid "" "This package provides expandable arithmetic operations with big\n" "integers that can exceed TeX's number limits." msgstr "" -#: gnu/packages/tex.scm:7845 +#: gnu/packages/tex.scm:8149 msgid "" "This package defines and implements the data type bit set, a vector\n" "of bits. The size of the vector may grow dynamically. Individual bits\n" "can be manipulated." msgstr "" -#: gnu/packages/tex.scm:7864 +#: gnu/packages/tex.scm:8168 msgid "" "New primitive commands are introduced in e-TeX; sometimes the names\n" "collide with existing macros. This package solves the name clashes by\n" @@ -19072,14 +19301,14 @@ msgid "" "@code{\\unexpanded} is provided as @code{\\etex@@unexpanded}." msgstr "" -#: gnu/packages/tex.scm:7882 +#: gnu/packages/tex.scm:8186 msgid "" "This package provides commands for cleaning up the title string\n" "(such as removing @code{\\label} commands) for packages that typeset such\n" "strings." msgstr "" -#: gnu/packages/tex.scm:7898 +#: gnu/packages/tex.scm:8202 msgid "" "This package provides a complete set of macros for information,\n" "warning and error messages. Under LaTeX, the commands are wrappers for\n" @@ -19087,19 +19316,19 @@ msgid "" "complete implementations." msgstr "" -#: gnu/packages/tex.scm:7915 +#: gnu/packages/tex.scm:8219 msgid "" "This package provides expandable arithmetic operations with integers,\n" "using the e-TeX extension @code{\\numexpr} if it is available." msgstr "" -#: gnu/packages/tex.scm:7930 +#: gnu/packages/tex.scm:8234 msgid "" "This package provides the @code{\\kv@@define@@key} (analogous to\n" "keyval’s @code{\\define@@key}, to define keys for use by @code{kvsetkeys}." msgstr "" -#: gnu/packages/tex.scm:7945 +#: gnu/packages/tex.scm:8249 msgid "" "This package provides @code{\\kvsetkeys}, a variant of @code{\\setkeys}\n" "from the @code{keyval} package. Users can specify a handler that deals with\n" @@ -19107,35 +19336,35 @@ msgid "" "level of curly braces are removed from the values." msgstr "" -#: gnu/packages/tex.scm:7980 +#: gnu/packages/tex.scm:8284 msgid "" "This package allows one to capture all the items of a list, for which\n" "the parsing character has been selected by the user, and to access any of\n" "these items with a simple syntax." msgstr "" -#: gnu/packages/tex.scm:7996 +#: gnu/packages/tex.scm:8300 msgid "" "This package exports some utility macros from the LaTeX kernel into\n" "a separate namespace and also makes them available for other formats such\n" "as plain TeX." msgstr "" -#: gnu/packages/tex.scm:8012 +#: gnu/packages/tex.scm:8316 msgid "" "This package implements pdfTeX's escape features (@code{\\pdfescapehex},\n" "@code{\\pdfunescapehex}, @code{\\pdfescapename}, @code{\\pdfescapestring})\n" "using TeX or e-TeX." msgstr "" -#: gnu/packages/tex.scm:8031 +#: gnu/packages/tex.scm:8335 msgid "" "This package provides a kind of counter that provides unique number\n" "values. Several counters can be created with different names. The numeric\n" "values are not limited." msgstr "" -#: gnu/packages/tex.scm:8067 +#: gnu/packages/tex.scm:8371 msgid "" "This package allows the user to input formatted data into elements of a\n" "2-D or 3-D array and to recall that data at will by individual cell number.\n" @@ -19143,7 +19372,7 @@ msgid "" "formatted text." msgstr "" -#: gnu/packages/tex.scm:8104 +#: gnu/packages/tex.scm:8408 msgid "" "The package provides a @code{verbbox} environment to place its contents\n" "into a globally available box, or into a box specified by the user. The\n" @@ -19153,7 +19382,7 @@ msgid "" "@code{trivlist}) may not appear." msgstr "" -#: gnu/packages/tex.scm:8141 +#: gnu/packages/tex.scm:8445 msgid "" "Examplep provides sophisticated features for typesetting verbatim source\n" "code listings, including the display of the source code and its compiled LaTeX\n" @@ -19166,7 +19395,7 @@ msgid "" "titles." msgstr "" -#: gnu/packages/tex.scm:8178 +#: gnu/packages/tex.scm:8482 msgid "" "This is a package for typesetting a variety of graphs and\n" "diagrams with TeX. Xy-pic works with most formats (including LaTeX,\n" @@ -19174,7 +19403,7 @@ msgid "" "@code{diag} package, which was previously distributed stand-alone." msgstr "" -#: gnu/packages/tex.scm:8218 +#: gnu/packages/tex.scm:8522 msgid "" "BibTeX allows the user to store his citation data in generic form, while\n" "printing citations in a document in the form specified by a BibTeX style, to\n" @@ -19182,7 +19411,7 @@ msgid "" "package, such as @command{natbib} as well)." msgstr "" -#: gnu/packages/tex.scm:8241 +#: gnu/packages/tex.scm:8545 msgid "" "This package provides a copy of the Charter Type-1 fonts\n" "which Bitstream contributed to the X consortium, renamed for use with TeX.\n" @@ -19190,14 +19419,14 @@ msgid "" "@command{psnfss}." msgstr "" -#: gnu/packages/tex.scm:8337 +#: gnu/packages/tex.scm:8641 msgid "" "ConTeXt is a full featured, parameter driven macro package,\n" "which fully supports advanced interactive documents. See the ConTeXt garden\n" "for a wealth of support information." msgstr "" -#: gnu/packages/tex.scm:8362 +#: gnu/packages/tex.scm:8666 msgid "" "The beamer LaTeX class can be used for producing slides.\n" "The class works in both PostScript and direct PDF output modes, using the\n" @@ -19210,7 +19439,7 @@ msgid "" "effects, varying slide transitions and animations." msgstr "" -#: gnu/packages/tex.scm:8394 +#: gnu/packages/tex.scm:8698 msgid "" "The XMP (eXtensible Metadata platform) is a framework to add metadata to\n" "digital material to enhance the workflow in publication. The essence is that\n" @@ -19218,13 +19447,13 @@ msgid "" "the file to which it applies." msgstr "" -#: gnu/packages/tex.scm:8433 +#: gnu/packages/tex.scm:8737 msgid "" "This package helps LaTeX users to create PDF/X, PDF/A and other\n" "standards-compliant PDF documents with pdfTeX, LuaTeX and XeTeX." msgstr "" -#: gnu/packages/tex.scm:8468 +#: gnu/packages/tex.scm:8772 msgid "" "The package provides macros and environments to document\n" "LaTeX packages and classes. It is an (as yet unfinished) alternative to the\n" @@ -19235,7 +19464,7 @@ msgid "" "change." msgstr "" -#: gnu/packages/tex.scm:8496 +#: gnu/packages/tex.scm:8800 msgid "" "PSTricks offers an extensive collection of macros for\n" "generating PostScript that is usable with most TeX macro formats, including\n" @@ -19246,14 +19475,14 @@ msgid "" "or shading the cells of tables." msgstr "" -#: gnu/packages/tex.scm:8521 +#: gnu/packages/tex.scm:8825 msgid "" "Pst-text is a PSTricks based package for plotting text along\n" "a different path and manipulating characters. It includes the functionality\n" "of the old package @code{pst-char}." msgstr "" -#: gnu/packages/tex.scm:8546 +#: gnu/packages/tex.scm:8850 msgid "" "This package provides the command @code{\\marginnote} that\n" "may be used instead of @code{\\marginpar} at almost every place where\n" @@ -19261,7 +19490,7 @@ msgid "" "frames made with the @code{framed} package." msgstr "" -#: gnu/packages/tex.scm:8564 +#: gnu/packages/tex.scm:8868 msgid "" "This package, which works both for Plain TeX and for\n" "LaTeX, defines the @code{\\ifPDFTeX}, @code{\\ifXeTeX}, and @code{\\ifLuaTeX}\n" @@ -19271,7 +19500,19 @@ msgid "" "LuaTeX (respectively) is not the engine in use." msgstr "" -#: gnu/packages/tex.scm:8597 +#: gnu/packages/tex.scm:8914 +msgid "" +"The package provides an environment, tabu, which will make any sort of\n" +"tabular, and an environment longtabu which provides the facilities of tabu in\n" +"a modified longtable environment. The package requires array, xcolor for\n" +"coloured rules in tables, and colortbl for coloured cells. The longtabu\n" +"environment further requires that longtable be loaded. The package itself\n" +"does not load any of these packages for the user. The tabu environment may be\n" +"used in place of @code{tabular}, @code{tabular*} and @code{tabularx}\n" +"environments, as well as the @code{array} environment in maths mode." +msgstr "" + +#: gnu/packages/tex.scm:8945 msgid "" "This package provides a collection of simple tools that\n" "are part of the LaTeX required tools distribution, comprising the packages:\n" @@ -19283,7 +19524,7 @@ msgid "" "@code{varioref}, @code{verbatim}, @code{xr}, and @code{xspace}." msgstr "" -#: gnu/packages/tex.scm:8678 +#: gnu/packages/tex.scm:9026 msgid "" "This package is an extension of the keyval package and offers additional\n" "macros for setting keys and declaring and setting class or package options.\n" @@ -19293,7 +19534,7 @@ msgid "" "keys." msgstr "" -#: gnu/packages/tex.scm:8706 +#: gnu/packages/tex.scm:9054 msgid "" "A class and package is provided which allows TeX pictures or\n" "other TeX code to be compiled standalone or as part of a main document.\n" @@ -19305,7 +19546,7 @@ msgid "" "@code{standalone.cfg} to redefine the standalone environment." msgstr "" -#: gnu/packages/tex.scm:8739 +#: gnu/packages/tex.scm:9087 msgid "" "Typesetting values with units requires care to ensure that the combined\n" "mathematical meaning of the value plus unit combination is clear. In\n" @@ -19321,7 +19562,7 @@ msgid "" "package to handle all of the possible unit-related needs of LaTeX users." msgstr "" -#: gnu/packages/tex.scm:8770 +#: gnu/packages/tex.scm:9118 msgid "" "This package enhances the quality of tables in LaTeX, providing extra\n" "commands as well as behind-the-scenes optimisation. Guidelines are given as\n" @@ -19329,7 +19570,7 @@ msgid "" "@code{longtable} compatibility." msgstr "" -#: gnu/packages/tex.scm:8790 +#: gnu/packages/tex.scm:9138 msgid "" "This package provides advanced facilities for inline and\n" "display quotations. It is designed for a wide range of tasks ranging from the\n" @@ -19343,7 +19584,7 @@ msgid "" "styles as well as the optional active quotes are freely configurable." msgstr "" -#: gnu/packages/tex.scm:8816 +#: gnu/packages/tex.scm:9164 msgid "" "The package helps to automate a typical LaTeX\n" "workflow that involves running LaTeX several times and running tools\n" @@ -19363,7 +19604,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8848 +#: gnu/packages/tex.scm:9196 msgid "" "BibLaTeX is a complete reimplementation of the\n" "bibliographic facilities provided by LaTeX. Formatting of the\n" @@ -19389,7 +19630,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8886 +#: gnu/packages/tex.scm:9234 msgid "" "The @code{todonotes} package lets the user mark\n" "things to do later, in a simple and visually appealing way. The\n" @@ -19397,7 +19638,7 @@ msgid "" "of the visual appearance." msgstr "" -#: gnu/packages/tex.scm:8904 +#: gnu/packages/tex.scm:9252 msgid "" "@code{units} is a package for typesetting physical\n" "units in a standard-looking way. The package is based upon\n" @@ -19405,7 +19646,7 @@ msgid "" "included in the @code{units} bundle." msgstr "" -#: gnu/packages/tex.scm:8922 +#: gnu/packages/tex.scm:9270 msgid "" "@code{microtype} provides a LaTeX interface to the\n" "micro-typographic extensions that were introduced by pdfTeX and have\n" @@ -19420,7 +19661,7 @@ msgid "" "the bundle." msgstr "" -#: gnu/packages/tex.scm:8947 +#: gnu/packages/tex.scm:9295 msgid "" "The @code{caption} package provides many ways to\n" "customise the captions in floating environments like figure and table.\n" @@ -19434,14 +19675,14 @@ msgid "" "@code{subcaption} and @code{totalcount} are included in the bundle." msgstr "" -#: gnu/packages/tex.scm:8976 +#: gnu/packages/tex.scm:9324 #, fuzzy msgid "" "This package provides a drop-in replacement for the\n" "Symbol font from Adobe's basic set." msgstr "Ez a csomag egy HTML dokumentációt biztosít az nginx webkiszolgálóhoz." -#: gnu/packages/tex.scm:8994 +#: gnu/packages/tex.scm:9342 msgid "" "The Pazo Math fonts are a family of PostScript fonts\n" "suitable for typesetting mathematics in combination with the Palatino\n" @@ -19455,7 +19696,7 @@ msgid "" "LaTeX macro support is provided in package @code{psnfss}." msgstr "" -#: gnu/packages/tex.scm:9019 +#: gnu/packages/tex.scm:9367 msgid "" "The FPL Fonts provide a set of SC/OsF fonts for URW\n" "Palladio L which are compatible with the Palatino SC/OsF fonts from\n" @@ -19463,7 +19704,7 @@ msgid "" "the @code{psnfss} distribution." msgstr "" -#: gnu/packages/tex.scm:9043 +#: gnu/packages/tex.scm:9391 msgid "" "The @code{arev} package provides type 1 fonts,\n" "virtual fonts and LaTeX packages for using Arev Sans in both text and\n" @@ -19477,7 +19718,7 @@ msgid "" "support packages. Others are cmbright, hvmath and kerkis." msgstr "" -#: gnu/packages/tex.scm:9074 +#: gnu/packages/tex.scm:9422 msgid "" "The Math Design project offers free mathematical\n" "fonts that match with existing text fonts. To date, three free font\n" @@ -19488,7 +19729,7 @@ msgid "" "created by the Greek Font Society)." msgstr "" -#: gnu/packages/tex.scm:9099 +#: gnu/packages/tex.scm:9447 msgid "" "The @code{bera} package contains the Bera Type 1\n" "fonts and files to use the fonts with LaTeX. Bera is a set of three\n" @@ -19497,7 +19738,7 @@ msgid "" "a repackaging, for use with TeX, of the Bitstream Vera family." msgstr "" -#: gnu/packages/tex.scm:9122 +#: gnu/packages/tex.scm:9470 msgid "" "Fourier-GUTenberg is a LaTeX typesetting system\n" "which uses Adobe Utopia as its standard base font. Fourier-GUTenberg\n" @@ -19508,7 +19749,7 @@ msgid "" "trademark of Adobe Systems Incorporated." msgstr "" -#: gnu/packages/tex.scm:9145 +#: gnu/packages/tex.scm:9493 msgid "" "The Adobe Standard Encoding set of the Utopia font\n" "family, as contributed to the X Consortium. The set comprises upright\n" @@ -19517,7 +19758,7 @@ msgid "" "@code{mathdesign} font packages." msgstr "" -#: gnu/packages/tex.scm:9169 +#: gnu/packages/tex.scm:9517 msgid "" "The @code{fontaxes} package adds several new font\n" "axes on top of LaTeX's New Font Selection Scheme (NFSS). In\n" @@ -19526,7 +19767,7 @@ msgid "" "figure versions offered by many professional fonts." msgstr "" -#: gnu/packages/tex.scm:9192 +#: gnu/packages/tex.scm:9540 msgid "" "The bundle comprises: @code{authblk}, which permits\n" "footnote style author/affiliation input in the @command{\\author} command,\n" @@ -19536,7 +19777,7 @@ msgid "" "@code{sublabel}, which permits counters to be subnumbered." msgstr "" -#: gnu/packages/tex.scm:9211 +#: gnu/packages/tex.scm:9559 msgid "" "Many font families available for use with LaTeX are\n" "available at multiple weights. Many Type 1-oriented support packages\n" @@ -19547,7 +19788,7 @@ msgid "" "@code{mweights} package provides a solution to these difficulties." msgstr "" -#: gnu/packages/tex.scm:9237 +#: gnu/packages/tex.scm:9585 msgid "" "Cabin is a humanist sans with four weights, true\n" "italics and small capitals. According to its designer, Pablo\n" @@ -19561,7 +19802,7 @@ msgid "" "use with [pdf]LaTeX." msgstr "" -#: gnu/packages/tex.scm:9268 +#: gnu/packages/tex.scm:9616 msgid "" "The @code{newtx} bundle splits\n" "@code{txfonts.sty} (from the TX fonts distribution) into two\n" @@ -19573,7 +19814,7 @@ msgid "" "mathematics package that matches Libertine text quite well." msgstr "" -#: gnu/packages/tex.scm:9296 +#: gnu/packages/tex.scm:9644 msgid "" "@code{xcharter} repackages Bitstream Charter with an\n" "extended set of features. The extension provides small caps, oldstyle\n" @@ -19582,7 +19823,7 @@ msgid "" "Type 1 and OTF formats, with supporting files as necessary." msgstr "" -#: gnu/packages/tex.scm:9320 +#: gnu/packages/tex.scm:9668 msgid "" "The legacy @emph{texnansi} (TeX and ANSI) encoding\n" "is known in the LaTeX scheme of things as @emph{LY1} encoding. The\n" @@ -19591,14 +19832,14 @@ msgid "" "LY1 encoding." msgstr "" -#: gnu/packages/tex.scm:9349 +#: gnu/packages/tex.scm:9697 msgid "" "This is a LaTeX2ε package to help change the style of any or\n" "all of LaTeX's sectional headers in the article, book, or report classes.\n" "Examples include the addition of rules above or below a section title." msgstr "" -#: gnu/packages/tex.scm:9375 +#: gnu/packages/tex.scm:9723 msgid "" "LaTeX can, by default, only cope with 18 outstanding floats;\n" "any more, and you get the error “too many unprocessed floats”. This package\n" @@ -19609,19 +19850,19 @@ msgid "" "floats merely delays the arrival of the inevitable error message." msgstr "" -#: gnu/packages/tex.scm:9408 +#: gnu/packages/tex.scm:9756 msgid "" "This package provides a command for the LaTeX programmer for\n" "testing whether an argument is empty." msgstr "" -#: gnu/packages/tex.scm:9435 +#: gnu/packages/tex.scm:9783 msgid "" "The pagenote package provides tagged notes on a separate\n" "page (also known as ‘end notes’)." msgstr "" -#: gnu/packages/tex.scm:9463 +#: gnu/packages/tex.scm:9811 msgid "" "The @code{titling} package provides control over the\n" "typesetting of the @code{\\maketitle} command and @code{\\thanks} commands,\n" @@ -19631,7 +19872,7 @@ msgid "" "a physical page." msgstr "" -#: gnu/packages/tex.scm:9493 +#: gnu/packages/tex.scm:9841 msgid "" "This package provides an @code{\\ifoddpage} conditional to\n" "determine if the current page is odd or even. The macro @code{\\checkoddpage}\n" @@ -19641,7 +19882,7 @@ msgid "" "@code{oneside} mode where all pages use the odd page layout." msgstr "" -#: gnu/packages/tex.scm:9523 +#: gnu/packages/tex.scm:9871 msgid "" "The package provides \"store boxes\" whose user interface\n" "matches that of normal LaTeX \"save boxes\", except that the content of a\n" @@ -19650,7 +19891,7 @@ msgid "" "DVI is output, store boxes behave the same as save boxes." msgstr "" -#: gnu/packages/tex.scm:9552 +#: gnu/packages/tex.scm:9900 msgid "" "The package provides macros to collect and process a macro\n" "argument (i.e., something which looks like a macro argument) as a horizontal\n" @@ -19663,13 +19904,13 @@ msgid "" "The macros were designed for use within other macros." msgstr "" -#: gnu/packages/tex.scm:9584 +#: gnu/packages/tex.scm:9932 msgid "" "This package provides macros for adding to, and reordering\n" "the list of graphics file extensions recognised by package graphics." msgstr "" -#: gnu/packages/tex.scm:9618 +#: gnu/packages/tex.scm:9966 msgid "" "The package provides several macros to adjust boxed\n" "content. One purpose is to supplement the standard @code{graphics} package,\n" @@ -19682,7 +19923,7 @@ msgid "" "@code{\\minsizebox}, @code{\\maxsizebox} and @code{\\phantombox}." msgstr "" -#: gnu/packages/tex.scm:9644 +#: gnu/packages/tex.scm:9992 msgid "" "This package provides an environment for colored and\n" "framed text boxes with a heading line. Optionally, such a box may be split in\n" @@ -19693,7 +19934,7 @@ msgid "" "parts." msgstr "" -#: gnu/packages/tex.scm:9675 +#: gnu/packages/tex.scm:10023 msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems. The commands allow for writing\n" @@ -19702,14 +19943,14 @@ msgid "" "styles of inference rules, placement of labels, etc." msgstr "" -#: gnu/packages/tex.scm:9704 +#: gnu/packages/tex.scm:10052 #, fuzzy msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems." msgstr "Ez a csomag egy Python felületet biztosít a Redis kulcs-érték tároláshoz." -#: gnu/packages/tex.scm:9724 +#: gnu/packages/tex.scm:10072 msgid "" "This package provides the European currency symbol for the\n" "Euro implemented in METAFONT, using the official European Commission\n" @@ -19718,7 +19959,7 @@ msgid "" "pre-compiled font files, and documentation." msgstr "" -#: gnu/packages/tex.scm:9754 +#: gnu/packages/tex.scm:10102 msgid "" "The @code{kastrup} package provides the\n" "@emph{binhex.tex} file. This file provides expandable macros for both\n" @@ -19728,7 +19969,7 @@ msgid "" "LaTeX and plain TeX." msgstr "" -#: gnu/packages/tex.scm:9774 +#: gnu/packages/tex.scm:10122 msgid "" "This LaTeX package provides a flexible mechanism for translating\n" "individual words into different languages. For example, it can be used to\n" @@ -19739,7 +19980,7 @@ msgid "" "automatically translate more than a few words." msgstr "" -#: gnu/packages/tex.scm:9795 +#: gnu/packages/tex.scm:10143 msgid "" "This package facilitates placing boxes at absolute positions on the\n" "LaTeX page. There are several reasons why this might be useful, but the main\n" @@ -19752,7 +19993,7 @@ msgid "" "accompanied by various configuration commands." msgstr "" -#: gnu/packages/tex.scm:9819 +#: gnu/packages/tex.scm:10167 msgid "" "This package extends the @code{ifthen} package by implementing new\n" "commands to go within the first argument of @code{\\\\ifthenelse}: to test\n" @@ -19762,14 +20003,14 @@ msgid "" "handle complex tests." msgstr "" -#: gnu/packages/tex.scm:9852 +#: gnu/packages/tex.scm:10200 msgid "" "BibTool manipulates BibTeX files. The possibilities of BibTool include\n" "sorting and merging of BibTeX databases, generation of uniform reference keys,\n" "and selecting references used in a publication." msgstr "" -#: gnu/packages/texinfo.scm:87 +#: gnu/packages/texinfo.scm:88 msgid "" "Texinfo is the official documentation format of the GNU project. It\n" "uses a single source file using explicit commands to produce a final document\n" @@ -19779,7 +20020,7 @@ msgid "" "is on expressing the content semantically, avoiding physical markup commands." msgstr "" -#: gnu/packages/texinfo.scm:216 +#: gnu/packages/texinfo.scm:230 msgid "" "Texi2HTML is a Perl script which converts Texinfo source files to HTML\n" "output. It now supports many advanced features, such as internationalization\n" @@ -19794,7 +20035,7 @@ msgid "" "Texi2HTML." msgstr "" -#: gnu/packages/texinfo.scm:283 +#: gnu/packages/texinfo.scm:297 msgid "" "Pinfo is an Info file viewer. Pinfo is similar in use to the Lynx web\n" "browser. You just move across info nodes, and select links, follow them, etc.\n" @@ -20153,6 +20394,12 @@ msgstr "" #: gnu/packages/textutils.scm:1406 msgid "" +"@code{utf-8-lineseparator} provides a tool to efficiently check text\n" +"files for valid UTF-8 use and to report which line endings they use." +msgstr "" + +#: gnu/packages/textutils.scm:1439 +msgid "" "@code{csvdiff} is a diff tool to compute changes between two\n" "CSV files. It can compare CSV files with a million records in under 2\n" "seconds. It is specifically suited for comparing CSV files dumped from\n" @@ -20354,27 +20601,27 @@ msgid "" "visualize your public Git repositories on a web interface." msgstr "" -#: gnu/packages/version-control.scm:1706 +#: gnu/packages/version-control.scm:1699 msgid "" "Pre-commit is a multi-language package manager for pre-commit hooks. You\n" "specify a list of hooks you want and pre-commit manages the installation and\n" "execution of any hook written in any language before every commit." msgstr "" -#: gnu/packages/version-control.scm:1796 +#: gnu/packages/version-control.scm:1789 msgid "" "Mercurial is a free, distributed source control management tool. It\n" "efficiently handles projects of any size and offers an easy and intuitive\n" "interface." msgstr "" -#: gnu/packages/version-control.scm:1823 +#: gnu/packages/version-control.scm:1816 msgid "" "Evolve is a Mercurial extension for faster and safer mutable\n" "history. It implements the changeset evolution concept for Mercurial." msgstr "" -#: gnu/packages/version-control.scm:1879 +#: gnu/packages/version-control.scm:1872 msgid "" "This package provides a Mercurial extension for signing\n" "the changeset hash of commits. The signure is embedded directly in the\n" @@ -20382,7 +20629,7 @@ msgid "" "can be used for signing." msgstr "" -#: gnu/packages/version-control.scm:1914 +#: gnu/packages/version-control.scm:1907 msgid "" "Neon is an HTTP and WebDAV client library, with a C interface and the\n" "following features:\n" @@ -20404,7 +20651,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/version-control.scm:2010 +#: gnu/packages/version-control.scm:2003 msgid "" "@dfn{Subversion} (svn) exists to be recognized and adopted as a\n" "centralized version control system characterized by its\n" @@ -20413,7 +20660,7 @@ msgid "" "projects, from individuals to large-scale enterprise operations." msgstr "" -#: gnu/packages/version-control.scm:2044 +#: gnu/packages/version-control.scm:2037 msgid "" "RCS is the original Revision Control System. It works on a\n" "file-by-file basis, in contrast to subsequent version control systems such as\n" @@ -20422,21 +20669,21 @@ msgid "" "machine." msgstr "" -#: gnu/packages/version-control.scm:2067 +#: gnu/packages/version-control.scm:2060 msgid "" "@code{blame} outputs an annotated revision from each RCS file. An\n" "annotated RCS file describes the revision and date in which each line was\n" "added to the file, and the author of each line." msgstr "" -#: gnu/packages/version-control.scm:2088 +#: gnu/packages/version-control.scm:2081 msgid "" "The @code{rcshist} utility displays the complete revision history of a\n" "set of RCS files including log messages and patches. It can also display the\n" "patch associated with a particular revision of an RCS file." msgstr "" -#: gnu/packages/version-control.scm:2116 +#: gnu/packages/version-control.scm:2109 msgid "" "CVS is a version control system, an important component of Source\n" "Configuration Management (SCM). Using it, you can record the history of\n" @@ -20444,7 +20691,7 @@ msgid "" "RCS, PRCS, and Aegis packages." msgstr "" -#: gnu/packages/version-control.scm:2150 +#: gnu/packages/version-control.scm:2143 msgid "" "This program analyzes a collection of RCS files in a CVS\n" "repository (or outside of one) and, when possible, emits an equivalent history\n" @@ -20457,7 +20704,7 @@ msgid "" "masters from remote CVS hosts." msgstr "" -#: gnu/packages/version-control.scm:2180 +#: gnu/packages/version-control.scm:2173 msgid "" "The vc-dwim package contains two tools, \"vc-dwim\" and \"vc-chlog\".\n" "vc-dwim is a tool that simplifies the task of maintaining a ChangeLog and\n" @@ -20467,21 +20714,21 @@ msgid "" "standards-compliant ChangeLog entries based on the changes that it detects." msgstr "" -#: gnu/packages/version-control.scm:2207 +#: gnu/packages/version-control.scm:2200 msgid "" "Diffstat reads the output of @command{diff} and displays a histogram of\n" "the insertions, deletions, and modifications per file. It is useful for\n" "reviewing large, complex patch files." msgstr "" -#: gnu/packages/version-control.scm:2246 +#: gnu/packages/version-control.scm:2239 msgid "" "GNU CSSC provides a replacement for the legacy Unix source\n" "code control system SCCS. This allows old code still under that system to be\n" "accessed and migrated on modern systems." msgstr "" -#: gnu/packages/version-control.scm:2338 +#: gnu/packages/version-control.scm:2331 msgid "" "Aegis is a project change supervisor, and performs some of\n" "the Software Configuration Management needed in a CASE environment. Aegis\n" @@ -20492,7 +20739,7 @@ msgid "" "any project with more than one developer, is one of Aegis's major functions." msgstr "" -#: gnu/packages/version-control.scm:2412 +#: gnu/packages/version-control.scm:2405 msgid "" "Reposurgeon enables risky operations that version-control\n" "systems don't want to let you do, such as editing past comments and metadata\n" @@ -20503,20 +20750,20 @@ msgid "" "from Subversion to any supported Distributed Version Control System (DVCS)." msgstr "" -#: gnu/packages/version-control.scm:2451 +#: gnu/packages/version-control.scm:2444 msgid "" "Tig is an ncurses text user interface for Git, primarily intended as\n" "a history browser. It can also stage hunks for commit, or colorize the\n" "output of the @code{git} command." msgstr "" -#: gnu/packages/version-control.scm:2474 +#: gnu/packages/version-control.scm:2467 msgid "" "Recursively find the newest file in a file tree and print its\n" "modification time." msgstr "" -#: gnu/packages/version-control.scm:2521 +#: gnu/packages/version-control.scm:2514 msgid "" "Myrepos provides the @code{mr} command, which maps an operation (e.g.,\n" "fetching updates) over a collection of version control repositories. It\n" @@ -20524,14 +20771,14 @@ msgid "" "Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity." msgstr "" -#: gnu/packages/version-control.scm:2558 +#: gnu/packages/version-control.scm:2551 msgid "" "Grokmirror enables replicating large git repository\n" "collections efficiently. Mirrors decide to clone and update repositories\n" "based on a manifest file published by servers." msgstr "" -#: gnu/packages/version-control.scm:2588 +#: gnu/packages/version-control.scm:2581 msgid "" "The @code{b4} command is designed to make it easier to participate in\n" "patch-based workflows for projects that have public-inbox archives.\n" @@ -20545,26 +20792,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/version-control.scm:2635 +#: gnu/packages/version-control.scm:2628 msgid "" "This wrapper around rclone makes any destination supported\n" "by rclone usable with git-annex." msgstr "" -#: gnu/packages/version-control.scm:2689 +#: gnu/packages/version-control.scm:2682 msgid "" "Fossil is a distributed source control management system which supports\n" "access and administration over HTTP CGI or via a built-in HTTP server. It has\n" "a built-in wiki, built-in file browsing, built-in tickets system, etc." msgstr "" -#: gnu/packages/version-control.scm:2720 +#: gnu/packages/version-control.scm:2713 msgid "" "Stagit creates static pages for git repositories, the results can\n" "be served with a HTTP file server of your choice." msgstr "" -#: gnu/packages/version-control.scm:2756 +#: gnu/packages/version-control.scm:2749 msgid "" "@code{gource} provides a software version control\n" "visualization. The repository is displayed as a tree where the root of the\n" @@ -20573,7 +20820,7 @@ msgid "" "specific files and directories." msgstr "" -#: gnu/packages/version-control.scm:2804 +#: gnu/packages/version-control.scm:2797 #, scheme-format msgid "" "SRC (or src) is simple revision control, a version-control system for\n" @@ -20583,7 +20830,7 @@ msgid "" "directory full of HOWTOs." msgstr "" -#: gnu/packages/version-control.scm:2856 +#: gnu/packages/version-control.scm:2849 msgid "" "This Git extension defines a subcommand,\n" "@code{when-merged}, whose core operation is to find the merge that brought a\n" @@ -20591,7 +20838,7 @@ msgid "" "how information about the merge is displayed." msgstr "" -#: gnu/packages/version-control.scm:2900 +#: gnu/packages/version-control.scm:2893 msgid "" "This Git extension defines a subcommand, @code{imerge},\n" "which performs an incremental merge between two branches. Its two primary\n" @@ -20600,20 +20847,20 @@ msgid "" "interrupted, published, and collaborated on while in progress." msgstr "" -#: gnu/packages/version-control.scm:2951 +#: gnu/packages/version-control.scm:2944 msgid "" "Git Large File Storage (LFS) replaces large files such as audio samples,\n" "videos, datasets, and graphics with text pointers inside Git, while storing the\n" "file contents on a remote server." msgstr "" -#: gnu/packages/version-control.scm:2986 +#: gnu/packages/version-control.scm:2979 msgid "" "@code{git open} opens the repository's website from the command-line,\n" "guessing the URL pattern from the @code{origin} remote." msgstr "" -#: gnu/packages/version-control.scm:3040 +#: gnu/packages/version-control.scm:3033 msgid "" "GNU Arch, aka. @code{tla}, was one of the first free distributed\n" "version-control systems (DVCS). It saw its last release in 2006. This\n" @@ -20621,21 +20868,21 @@ msgid "" "for historians." msgstr "" -#: gnu/packages/version-control.scm:3086 +#: gnu/packages/version-control.scm:3079 msgid "" "@code{diff-so-fancy} strives to make your diffs human readable instead\n" "of machine readable. This helps improve code quality and helps you spot\n" "defects faster." msgstr "" -#: gnu/packages/version-control.scm:3142 +#: gnu/packages/version-control.scm:3135 #, fuzzy msgid "This package provides a Git implementation library." msgstr "" "Ez a csomag egy szótárat biztosít a Hunspell helyesírás-ellenőrző\n" "programkönyvtárhoz." -#: gnu/packages/version-control.scm:3192 +#: gnu/packages/version-control.scm:3185 msgid "" "This package provides a command-line tool to manage\n" "multiple Git repos.\n" @@ -20650,7 +20897,7 @@ msgid "" "If several repos are related, it helps to see their status together." msgstr "" -#: gnu/packages/version-control.scm:3250 +#: gnu/packages/version-control.scm:3243 #, scheme-format msgid "" "@code{ghq} provides a way to organize remote repository clones, like\n" @@ -20659,7 +20906,7 @@ msgid "" "using the remote repository URL's host and path." msgstr "" -#: gnu/packages/version-control.scm:3295 +#: gnu/packages/version-control.scm:3288 msgid "" "TkRev (formerly TkCVS) is a Tcl/Tk-based graphical interface to the CVS,\n" "Subversion and Git configuration management systems. It will also help with\n" @@ -20668,7 +20915,7 @@ msgid "" "TkDiff is included for browsing and merging your changes." msgstr "" -#: gnu/packages/version-control.scm:3328 +#: gnu/packages/version-control.scm:3321 msgid "" "@command{git filter-repo} is a versatile tool for rewriting history,\n" "which roughly falls into the same space of tool like git filter-branch but\n" @@ -20706,7 +20953,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:865 +#: gnu/packages/virtualization.scm:870 msgid "" "Ganeti is a virtual machine management tool built on top of existing\n" "virtualization technologies such as Xen or KVM. Ganeti controls:\n" @@ -20723,19 +20970,19 @@ msgid "" "commodity hardware." msgstr "" -#: gnu/packages/virtualization.scm:902 +#: gnu/packages/virtualization.scm:907 msgid "" "This package provides a guest OS definition for Ganeti that uses\n" "Guix to build virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:996 +#: gnu/packages/virtualization.scm:1001 msgid "" "This package provides a guest OS definition for Ganeti. It installs\n" "Debian or a derivative using @command{debootstrap}." msgstr "" -#: gnu/packages/virtualization.scm:1056 +#: gnu/packages/virtualization.scm:1061 msgid "" "libosinfo is a GObject based library API for managing\n" "information about operating systems, hypervisors and the (virtual) hardware\n" @@ -20745,21 +20992,21 @@ msgid "" "all common programming languages. Vala bindings are also provided." msgstr "" -#: gnu/packages/virtualization.scm:1105 +#: gnu/packages/virtualization.scm:1109 msgid "" "LXC is a userspace interface for the Linux kernel containment features.\n" "Through a powerful API and simple tools, it lets Linux users easily create and\n" "manage system or application containers." msgstr "" -#: gnu/packages/virtualization.scm:1131 +#: gnu/packages/virtualization.scm:1135 msgid "" "LXCFS is a small FUSE file system written with the intention\n" "of making Linux containers feel more like a virtual machine.\n" "It started as a side project of LXC but can be used by any run-time." msgstr "" -#: gnu/packages/virtualization.scm:1239 +#: gnu/packages/virtualization.scm:1237 msgid "" "LXD is a next generation system container manager. It\n" "offers a user experience similar to virtual machines but using Linux\n" @@ -20768,7 +21015,7 @@ msgid "" "pretty simple, REST API." msgstr "" -#: gnu/packages/virtualization.scm:1332 +#: gnu/packages/virtualization.scm:1330 msgid "" "Libvirt is a C toolkit to interact with the virtualization\n" "capabilities of recent versions of Linux. The library aims at providing long\n" @@ -20776,7 +21023,7 @@ msgid "" "to integrate other virtualization mechanisms if needed." msgstr "" -#: gnu/packages/virtualization.scm:1363 +#: gnu/packages/virtualization.scm:1359 msgid "" "libvirt-glib wraps the libvirt library to provide a\n" "high-level object-oriented API better suited for glib-based applications, via\n" @@ -20789,13 +21036,13 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/virtualization.scm:1407 +#: gnu/packages/virtualization.scm:1403 msgid "" "This package provides Python bindings to the libvirt\n" "virtualization library." msgstr "" -#: gnu/packages/virtualization.scm:1520 +#: gnu/packages/virtualization.scm:1516 msgid "" "The virt-manager application is a desktop user interface for managing\n" "virtual machines through libvirt. It primarily targets KVM VMs, but also\n" @@ -20803,7 +21050,7 @@ msgid "" "domains, their live performance and resource utilization statistics." msgstr "" -#: gnu/packages/virtualization.scm:1620 +#: gnu/packages/virtualization.scm:1616 msgid "" "Using this tool, you can freeze a running application (or\n" "part of it) and checkpoint it to a hard drive as a collection of files. You\n" @@ -20812,14 +21059,14 @@ msgid "" "mainly implemented in user space." msgstr "" -#: gnu/packages/virtualization.scm:1647 +#: gnu/packages/virtualization.scm:1643 msgid "" "qmpbackup is designed to create and restore full and\n" "incremental backups of running QEMU virtual machines via QMP, the QEMU\n" "Machine Protocol." msgstr "" -#: gnu/packages/virtualization.scm:1731 +#: gnu/packages/virtualization.scm:1727 msgid "" "Looking Glass allows the use of a KVM (Kernel-based Virtual\n" "Machine) configured for VGA PCI Pass-through without an attached physical\n" @@ -20827,7 +21074,7 @@ msgid "" "main monitor/GPU." msgstr "" -#: gnu/packages/virtualization.scm:1783 +#: gnu/packages/virtualization.scm:1779 msgid "" "@command{runc} is a command line client for running applications\n" "packaged according to the\n" @@ -20836,13 +21083,13 @@ msgid "" "Open Container Initiative specification." msgstr "" -#: gnu/packages/virtualization.scm:1832 +#: gnu/packages/virtualization.scm:1828 msgid "" "@command{umoci} is a tool that allows for high-level modification of an\n" "Open Container Initiative (OCI) image layout and its tagged images." msgstr "" -#: gnu/packages/virtualization.scm:1886 +#: gnu/packages/virtualization.scm:1882 msgid "" "@command{skopeo} is a command line utility providing various operations\n" "with container images and container image registries. It can:\n" @@ -20863,14 +21110,14 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:1922 +#: gnu/packages/virtualization.scm:1918 msgid "" "Python-vagrant is a Python module that provides a thin wrapper around the\n" "@code{vagrant} command line executable, allowing programmatic control of Vagrant\n" "virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:1977 +#: gnu/packages/virtualization.scm:1979 msgid "" "Bubblewrap is aimed at running applications in a sandbox,\n" "restricting their access to parts of the operating system or user data such as\n" @@ -20880,7 +21127,7 @@ msgid "" "by default and can be made read-only." msgstr "" -#: gnu/packages/virtualization.scm:2004 +#: gnu/packages/virtualization.scm:2006 msgid "" "Bochs is an emulator which can emulate Intel x86 CPU, common I/O\n" "devices, and a custom BIOS. It can also be compiled to emulate many different\n" @@ -20889,65 +21136,68 @@ msgid "" "DOS or Microsoft Windows." msgstr "" -#: gnu/packages/virtualization.scm:2210 +#: gnu/packages/virtualization.scm:2212 #, fuzzy msgid "" "This package provides the Xen Virtual Machine Monitor\n" "which is a hypervisor." msgstr "Ez a csomag egy Python felületet biztosít a Redis kulcs-érték tároláshoz." -#: gnu/packages/virtualization.scm:2242 +#: gnu/packages/virtualization.scm:2244 msgid "" "This package contains a set of tools to assist\n" "administrators and developers in managing the database." msgstr "" -#: gnu/packages/virtualization.scm:2275 +#: gnu/packages/virtualization.scm:2277 msgid "" "Osinfo-db provides the database files for use with the\n" "libosinfo library. It provides information about guest operating systems for\n" "use with virtualization provisioning tools" msgstr "" -#: gnu/packages/virtualization.scm:2317 +#: gnu/packages/virtualization.scm:2319 msgid "" "@code{transient} is a wrapper for QEMU allowing the creation of virtual\n" "machines with shared folder, ssh, and disk creation support." msgstr "" -#: gnu/packages/webkit.scm:93 +#: gnu/packages/webkit.scm:94 msgid "" "LibWPE is general-purpose library specifically developed for\n" "the WPE-flavored port of WebKit." msgstr "" -#: gnu/packages/webkit.scm:119 +#: gnu/packages/webkit.scm:120 msgid "" "This package provides a backend implementation for the WPE WebKit\n" "engine that uses Wayland for graphics output." msgstr "" -#: gnu/packages/webkit.scm:216 +#: gnu/packages/webkit.scm:227 msgid "" "WPE WebKit allows embedders to create simple and performant\n" "systems based on Web platform technologies. It is designed with hardware\n" "acceleration in mind, leveraging common 3D graphics APIs for best performance." msgstr "" -#: gnu/packages/webkit.scm:351 +#: gnu/packages/webkit.scm:355 msgid "" "WebKitGTK+ is a full-featured port of the WebKit rendering engine,\n" "suitable for projects requiring any kind of web integration, from hybrid\n" -"HTML/CSS applications to full-fledged web browsers." +"HTML/CSS applications to full-fledged web browsers. WebKitGTK+ video playing\n" +"capabilities can be extended through the use of GStreamer plugins (not\n" +"propagated by default) such as @code{gst-plugins-good} and\n" +"@code{gst-plugins-bad}." msgstr "" -#: gnu/packages/web.scm:250 +#: gnu/packages/web.scm:251 msgid "" "Qhttp is a light-weight and asynchronous HTTP library\n" "(both server & client) in Qt5 and C++14." msgstr "" -#: gnu/packages/web.scm:280 +#: gnu/packages/web.scm:281 msgid "" "The Apache HTTP Server Project is a collaborative software development\n" "effort aimed at creating a robust, commercial-grade, featureful, and\n" @@ -20957,14 +21207,14 @@ msgid "" "and its related documentation." msgstr "" -#: gnu/packages/web.scm:314 +#: gnu/packages/web.scm:315 msgid "" "The mod_wsgi module for the Apache HTTPD Server adds support for running\n" "applications that support the Python @acronym{WSGI, Web Server Gateway\n" "Interface} specification." msgstr "" -#: gnu/packages/web.scm:356 +#: gnu/packages/web.scm:357 msgid "" "Monolith bundles any web page into a single HTML file.\n" "\n" @@ -20977,38 +21227,38 @@ msgid "" "the same, being completely separated from the Internet." msgstr "" -#: gnu/packages/web.scm:460 +#: gnu/packages/web.scm:461 msgid "" "Nginx (\"engine X\") is a high-performance web and reverse proxy server\n" "created by Igor Sysoev. It can be used both as a stand-alone web server\n" "and as a proxy to reduce the load on back-end HTTP or mail servers." msgstr "" -#: gnu/packages/web.scm:518 +#: gnu/packages/web.scm:519 msgid "This package provides HTML documentation for the nginx web server." msgstr "Ez a csomag egy HTML dokumentációt biztosít az nginx webkiszolgálóhoz." -#: gnu/packages/web.scm:647 +#: gnu/packages/web.scm:648 msgid "" "This nginx module parses the Accept-Language field in HTTP headers and\n" "chooses the most suitable locale for the user from the list of locales\n" "supported at your website." msgstr "" -#: gnu/packages/web.scm:694 +#: gnu/packages/web.scm:695 msgid "" "XSLScript is a terse notation for writing complex XSLT stylesheets.\n" "This is modified version, specifically intended for use with the NGinx\n" "documentation." msgstr "" -#: gnu/packages/web.scm:767 +#: gnu/packages/web.scm:768 msgid "" "This NGINX module provides a scripting support with Lua\n" "programming language." msgstr "" -#: gnu/packages/web.scm:820 +#: gnu/packages/web.scm:821 msgid "" "This NGINX module provides streaming with the @acronym{RTMP,\n" "Real-Time Messaging Protocol}, @acronym{DASH, Dynamic Adaptive Streaming over HTTP},\n" @@ -21018,7 +21268,7 @@ msgid "" "stream. Remote control of the module is possible over HTTP." msgstr "" -#: gnu/packages/web.scm:882 +#: gnu/packages/web.scm:883 msgid "" "Lighttpd is a secure, fast, compliant, and very flexible web-server that\n" "has been optimized for high-performance environments. It has a very low\n" @@ -21026,41 +21276,41 @@ msgid "" "CGI, authentication, output compression, URL rewriting and many more." msgstr "" -#: gnu/packages/web.scm:910 +#: gnu/packages/web.scm:911 msgid "" "FastCGI is a language-independent, scalable extension to CGI\n" "that provides high performance without the limitations of server specific\n" "APIs." msgstr "" -#: gnu/packages/web.scm:948 +#: gnu/packages/web.scm:949 msgid "" "Fcgiwrap is a simple server for running CGI applications\n" "over FastCGI. It hopes to provide clean CGI support to Nginx (and other web\n" "servers that may need it)." msgstr "" -#: gnu/packages/web.scm:977 +#: gnu/packages/web.scm:978 msgid "" "Starman is a PSGI perl web server that has unique features\n" "such as high performance, preforking, signal support, superdaemon awareness,\n" "and UNIX socket support." msgstr "" -#: gnu/packages/web.scm:1010 +#: gnu/packages/web.scm:1011 msgid "" "IcedTea-Web is an implementation of the @dfn{Java Network Launching\n" "Protocol}, also known as Java Web Start. This package provides tools and\n" "libraries for working with JNLP applets." msgstr "" -#: gnu/packages/web.scm:1035 +#: gnu/packages/web.scm:1036 msgid "" "Jansson is a C library for encoding, decoding and manipulating JSON\n" "data." msgstr "" -#: gnu/packages/web.scm:1055 +#: gnu/packages/web.scm:1056 msgid "" "JSON-C implements a reference counting object model that allows you to\n" "easily construct JSON objects in C, output them as JSON-formatted strings and\n" @@ -21068,7 +21318,7 @@ msgid "" "It aims to conform to RFC 7159." msgstr "" -#: gnu/packages/web.scm:1131 +#: gnu/packages/web.scm:1132 msgid "" "This package provides a very low footprint JSON parser\n" "written in portable ANSI C.\n" @@ -21081,21 +21331,21 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:1176 +#: gnu/packages/web.scm:1177 msgid "" "QJson is a Qt-based library that maps JSON data to\n" "@code{QVariant} objects. JSON arrays will be mapped to @code{QVariantList}\n" "instances, while JSON's objects will be mapped to @code{QVariantMap}." msgstr "" -#: gnu/packages/web.scm:1227 +#: gnu/packages/web.scm:1228 msgid "" "QOAuth is an attempt to support interaction with\n" "OAuth-powered network services in a Qt way, i.e. simply, clearly and\n" "efficiently. It gives the application developer no more than 4 methods." msgstr "" -#: gnu/packages/web.scm:1339 +#: gnu/packages/web.scm:1340 msgid "" "Krona is a flexible tool for exploring the relative proportions of\n" "hierarchical data, such as metagenomic classifications, using a radial,\n" @@ -21104,26 +21354,26 @@ msgid "" "current version of any major web browser." msgstr "" -#: gnu/packages/web.scm:1380 +#: gnu/packages/web.scm:1381 msgid "" "RapidJSON is a fast JSON parser/generator for C++ with both SAX/DOM\n" "style API." msgstr "" -#: gnu/packages/web.scm:1409 +#: gnu/packages/web.scm:1410 msgid "" "Yet Another JSON Library (YAJL) is a small event-driven (SAX-style) JSON\n" "parser written in ANSI C and a small validating JSON generator." msgstr "" -#: gnu/packages/web.scm:1439 +#: gnu/packages/web.scm:1440 msgid "" "Libwebsockets is a library that allows C programs to establish client\n" "and server WebSockets connections---a protocol layered above HTTP that allows\n" "for efficient socket-like bidirectional reliable communication channels." msgstr "" -#: gnu/packages/web.scm:1468 +#: gnu/packages/web.scm:1469 msgid "" "WABT (pronounced: wabbit) is a suite of tools for\n" "WebAssembly, including:\n" @@ -21148,7 +21398,7 @@ msgid "" "other systems that want to manipulate WebAssembly files." msgstr "" -#: gnu/packages/web.scm:1518 +#: gnu/packages/web.scm:1519 msgid "" "WebSocket++ is a C++ library that can be used to implement\n" "WebSocket functionality. The goals of the project are to provide a WebSocket\n" @@ -21156,7 +21406,7 @@ msgid "" "high performance." msgstr "" -#: gnu/packages/web.scm:1558 +#: gnu/packages/web.scm:1559 msgid "" "@code{Wslay} is an event-based C library for the WebSocket\n" "protocol version 13, described in RFC 6455. Besides a high-level API it\n" @@ -21165,7 +21415,7 @@ msgid "" "perform the opening handshake in HTTP." msgstr "" -#: gnu/packages/web.scm:1588 +#: gnu/packages/web.scm:1589 msgid "" "A \"public suffix\" is a domain name under which Internet users can\n" "directly register own names.\n" @@ -21183,20 +21433,20 @@ msgid "" "UTS#46." msgstr "" -#: gnu/packages/web.scm:1633 +#: gnu/packages/web.scm:1634 msgid "" "HTML Tidy is a command-line tool and C library that can be\n" "used to validate and fix HTML data." msgstr "" -#: gnu/packages/web.scm:1680 +#: gnu/packages/web.scm:1681 msgid "" "The esbuild tool provides a unified bundler, transpiler and\n" "minifier. It packages up JavaScript and TypeScript code, along with JSON\n" "and other data, for distribution on the web." msgstr "" -#: gnu/packages/web.scm:1716 +#: gnu/packages/web.scm:1717 msgid "" "Tinyproxy is a light-weight HTTP/HTTPS proxy\n" "daemon. Designed from the ground up to be fast and yet small, it is an ideal\n" @@ -21205,14 +21455,14 @@ msgid "" "unavailable." msgstr "" -#: gnu/packages/web.scm:1751 +#: gnu/packages/web.scm:1752 msgid "" "Polipo is a small caching web proxy (web cache, HTTP proxy, and proxy\n" "server). It was primarily designed to be used by one person or a small group\n" "of people." msgstr "" -#: gnu/packages/web.scm:1779 +#: gnu/packages/web.scm:1780 msgid "" "Websockify translates WebSockets traffic to normal socket\n" "traffic. Websockify accepts the WebSockets handshake, parses it, and then\n" @@ -21220,7 +21470,7 @@ msgid "" "directions." msgstr "" -#: gnu/packages/web.scm:1806 +#: gnu/packages/web.scm:1807 msgid "" "WWWOFFLE is a proxy web server that is especially good for\n" "intermittent internet links. It can cache HTTP, HTTPS, FTP, and finger\n" @@ -21229,7 +21479,7 @@ msgid "" "changes, and much more." msgstr "" -#: gnu/packages/web.scm:1832 +#: gnu/packages/web.scm:1833 msgid "" "liboauth is a collection of C functions implementing the OAuth API.\n" "liboauth provides functions to escape and encode strings according to OAuth\n" @@ -21238,25 +21488,25 @@ msgid "" "hash/signatures." msgstr "" -#: gnu/packages/web.scm:1855 +#: gnu/packages/web.scm:1856 msgid "" "This package contains support scripts called by libquvi to\n" "parse media stream properties." msgstr "" -#: gnu/packages/web.scm:1889 +#: gnu/packages/web.scm:1890 msgid "" "libquvi is a library with a C API for parsing media stream\n" "URLs and extracting their actual media files." msgstr "" -#: gnu/packages/web.scm:1911 +#: gnu/packages/web.scm:1912 msgid "" "quvi is a command-line-tool suite to extract media files\n" "from streaming URLs. It is a command-line wrapper for the libquvi library." msgstr "" -#: gnu/packages/web.scm:1983 +#: gnu/packages/web.scm:1984 msgid "" "serf is a C-based HTTP client library built upon the Apache Portable\n" "Runtime (APR) library. It multiplexes connections, running the read/write\n" @@ -21264,7 +21514,7 @@ msgid "" "minimum to provide high performance operation." msgstr "" -#: gnu/packages/web.scm:2018 +#: gnu/packages/web.scm:2019 msgid "" "LibSass is a @acronym{SASS,Syntactically awesome style sheets} compiler\n" "library designed for portability and efficiency. To actually compile SASS\n" @@ -21272,29 +21522,29 @@ msgid "" "@var{sassc} for example." msgstr "" -#: gnu/packages/web.scm:2067 +#: gnu/packages/web.scm:2068 msgid "" "SassC is a compiler written in C for the CSS pre-processor\n" "language known as SASS." msgstr "" -#: gnu/packages/web.scm:2112 +#: gnu/packages/web.scm:2113 msgid "" "This module provides methods to compile a log format string\n" "to perl-code, for faster generation of access_log lines." msgstr "" -#: gnu/packages/web.scm:2140 +#: gnu/packages/web.scm:2141 msgid "Authen::SASL provides an SASL authentication framework." msgstr "" -#: gnu/packages/web.scm:2163 +#: gnu/packages/web.scm:2164 msgid "" "This Catalyst action implements a sensible default end\n" "action, which will forward to the first available view." msgstr "" -#: gnu/packages/web.scm:2195 +#: gnu/packages/web.scm:2196 msgid "" "This Action handles doing automatic method dispatching for\n" "REST requests. It takes a normal Catalyst action, and changes the dispatch to\n" @@ -21303,20 +21553,20 @@ msgid "" "regular method." msgstr "" -#: gnu/packages/web.scm:2226 +#: gnu/packages/web.scm:2227 msgid "" "The Catalyst::Authentication::Store::DBIx::Class class\n" "provides access to authentication information stored in a database via\n" "DBIx::Class." msgstr "" -#: gnu/packages/web.scm:2252 +#: gnu/packages/web.scm:2253 msgid "" "Catalyst::Component::InstancePerContext returns a new\n" "instance of a component on each request." msgstr "" -#: gnu/packages/web.scm:2288 +#: gnu/packages/web.scm:2289 msgid "" "The Catalyst-Devel distribution includes a variety of\n" "modules useful for the development of Catalyst applications, but not required\n" @@ -21326,7 +21576,7 @@ msgid "" "modules." msgstr "" -#: gnu/packages/web.scm:2316 +#: gnu/packages/web.scm:2317 msgid "" "Dispatch type managing path-matching behaviour using\n" "regexes. Regex dispatch types have been deprecated and removed from Catalyst\n" @@ -21336,20 +21586,20 @@ msgid "" "when the dispatch type is first seen in your application." msgstr "" -#: gnu/packages/web.scm:2363 +#: gnu/packages/web.scm:2364 msgid "" "This is a Catalyst Model for DBIx::Class::Schema-based\n" "Models." msgstr "" -#: gnu/packages/web.scm:2385 +#: gnu/packages/web.scm:2386 msgid "" "This Catalyst plugin enables you to create \"access logs\"\n" "from within a Catalyst application instead of requiring a webserver to do it\n" "for you. It will work even with Catalyst debug logging turned off." msgstr "" -#: gnu/packages/web.scm:2419 +#: gnu/packages/web.scm:2420 msgid "" "The authentication plugin provides generic user support for\n" "Catalyst apps. It is the basis for both authentication (checking the user is\n" @@ -21357,32 +21607,32 @@ msgid "" "system authorises them to do)." msgstr "" -#: gnu/packages/web.scm:2447 +#: gnu/packages/web.scm:2448 msgid "" "Catalyst::Plugin::Authorization::Roles provides role-based\n" "authorization for Catalyst based on Catalyst::Plugin::Authentication." msgstr "" -#: gnu/packages/web.scm:2469 +#: gnu/packages/web.scm:2470 msgid "" "This plugin creates and validates Captcha images for\n" "Catalyst." msgstr "" -#: gnu/packages/web.scm:2493 +#: gnu/packages/web.scm:2494 msgid "" "This module will attempt to load find and load configuration\n" "files of various types. Currently it supports YAML, JSON, XML, INI and Perl\n" "formats." msgstr "" -#: gnu/packages/web.scm:2522 +#: gnu/packages/web.scm:2523 msgid "" "This plugin links the two pieces required for session\n" "management in web applications together: the state, and the store." msgstr "" -#: gnu/packages/web.scm:2548 +#: gnu/packages/web.scm:2549 msgid "" "In order for Catalyst::Plugin::Session to work, the session\n" "ID needs to be stored on the client, and the session data needs to be stored\n" @@ -21390,14 +21640,14 @@ msgid "" "cookie mechanism." msgstr "" -#: gnu/packages/web.scm:2578 +#: gnu/packages/web.scm:2579 msgid "" "Catalyst::Plugin::Session::Store::FastMmap is a fast session\n" "storage plugin for Catalyst that uses an mmap'ed file to act as a shared\n" "memory interprocess cache. It is based on Cache::FastMmap." msgstr "" -#: gnu/packages/web.scm:2602 +#: gnu/packages/web.scm:2603 msgid "" "This plugin enhances the standard Catalyst debug screen by\n" "including a stack trace of your application up to the point where the error\n" @@ -21405,7 +21655,7 @@ msgid "" "number, file name, and code context surrounding the line number." msgstr "" -#: gnu/packages/web.scm:2628 +#: gnu/packages/web.scm:2629 msgid "" "The Static::Simple plugin is designed to make serving static\n" "content in your application during development quick and easy, without\n" @@ -21416,7 +21666,7 @@ msgid "" "MIME type directly to the browser, without being processed through Catalyst." msgstr "" -#: gnu/packages/web.scm:2687 +#: gnu/packages/web.scm:2688 msgid "" "Catalyst is a modern framework for making web applications.\n" "It is designed to make it easy to manage the various tasks you need to do to\n" @@ -21424,7 +21674,7 @@ msgid "" "\"plug in\" existing Perl modules that do what you need." msgstr "" -#: gnu/packages/web.scm:2715 +#: gnu/packages/web.scm:2716 msgid "" "This module is a Moose::Role which allows you more\n" "flexibility in your application's deployment configurations when deployed\n" @@ -21432,26 +21682,26 @@ msgid "" "replaced with the contents of the X-Request-Base header." msgstr "" -#: gnu/packages/web.scm:2743 +#: gnu/packages/web.scm:2744 msgid "" "The purpose of this module is to provide a method for\n" "downloading data into many supportable formats. For example, downloading a\n" "table based report in a variety of formats (CSV, HTML, etc.)." msgstr "" -#: gnu/packages/web.scm:2767 +#: gnu/packages/web.scm:2768 msgid "" "Catalyst::View::JSON is a Catalyst View handler that returns\n" "stash data in JSON format." msgstr "" -#: gnu/packages/web.scm:2793 +#: gnu/packages/web.scm:2794 msgid "" "This module is a Catalyst view class for the Template\n" "Toolkit." msgstr "" -#: gnu/packages/web.scm:2821 +#: gnu/packages/web.scm:2822 msgid "" "Adds a \"COMPONENT\" in Catalyst::Component method to your\n" "Catalyst component base class that reads the optional \"traits\" parameter\n" @@ -21460,19 +21710,19 @@ msgid "" "MooseX::Traits::Pluggable." msgstr "" -#: gnu/packages/web.scm:2845 +#: gnu/packages/web.scm:2846 msgid "" "CatalystX::RoleApplicator applies roles to Catalyst\n" "application classes." msgstr "" -#: gnu/packages/web.scm:2870 +#: gnu/packages/web.scm:2871 msgid "" "This module provides a Catalyst extension to replace the\n" "development server with Starman." msgstr "" -#: gnu/packages/web.scm:2892 +#: gnu/packages/web.scm:2893 msgid "" "CGI.pm is a stable, complete and mature solution for\n" "processing and preparing HTTP requests and responses. Major features include\n" @@ -21481,44 +21731,44 @@ msgid "" "headers." msgstr "" -#: gnu/packages/web.scm:2919 +#: gnu/packages/web.scm:2920 msgid "" "@code{CGI::FormBuilder} provides an easy way to generate and process CGI\n" "form-based applications." msgstr "" -#: gnu/packages/web.scm:2946 +#: gnu/packages/web.scm:2947 msgid "" "@code{CGI::Session} provides modular session management system across\n" "HTTP requests." msgstr "" -#: gnu/packages/web.scm:2967 +#: gnu/packages/web.scm:2968 msgid "" "CGI::Simple provides a relatively lightweight drop in\n" "replacement for CGI.pm. It shares an identical OO interface to CGI.pm for\n" "parameter parsing, file upload, cookie handling and header generation." msgstr "" -#: gnu/packages/web.scm:2989 +#: gnu/packages/web.scm:2990 msgid "" "This is a module for building structured data from CGI\n" "inputs, in a manner reminiscent of how PHP does." msgstr "" -#: gnu/packages/web.scm:3012 +#: gnu/packages/web.scm:3013 msgid "" "This module provides functions that deal with the date\n" "formats used by the HTTP protocol." msgstr "" -#: gnu/packages/web.scm:3033 +#: gnu/packages/web.scm:3034 msgid "" "Digest::MD5::File is a Perl extension for getting MD5 sums\n" "for files and urls." msgstr "" -#: gnu/packages/web.scm:3053 +#: gnu/packages/web.scm:3054 msgid "" "The POSIX locale system is used to specify both the language\n" "conventions requested by the user and the preferred character set to\n" @@ -21530,66 +21780,66 @@ msgid "" "with Encode::decode(locale => $string)." msgstr "" -#: gnu/packages/web.scm:3086 +#: gnu/packages/web.scm:3087 msgid "" "@code{Feed::Find} implements feed auto-discovery for finding\n" "syndication feeds, given a URI. It will discover the following feed formats:\n" "RSS 0.91, RSS 1.0, RSS 2.0, Atom." msgstr "" -#: gnu/packages/web.scm:3109 +#: gnu/packages/web.scm:3110 msgid "" "The File::Listing module exports a single function called parse_dir(),\n" "which can be used to parse directory listings." msgstr "" -#: gnu/packages/web.scm:3142 +#: gnu/packages/web.scm:3143 msgid "" "Finance::Quote gets stock quotes from various internet sources, including\n" "Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange." msgstr "" -#: gnu/packages/web.scm:3165 +#: gnu/packages/web.scm:3166 msgid "" "This is a Perl extension for using GSSAPI C bindings as\n" "described in RFC 2744." msgstr "" -#: gnu/packages/web.scm:3187 +#: gnu/packages/web.scm:3188 msgid "" "HTML::Element::Extended is a Perl extension for manipulating a table\n" "composed of HTML::Element style components." msgstr "" -#: gnu/packages/web.scm:3208 +#: gnu/packages/web.scm:3209 msgid "" "Objects of the HTML::Form class represents a single HTML\n" "
...
instance." msgstr "" -#: gnu/packages/web.scm:3241 +#: gnu/packages/web.scm:3242 msgid "@code{HTML::Scrubber} Perl extension for scrubbing/sanitizing HTML." msgstr "" -#: gnu/packages/web.scm:3260 +#: gnu/packages/web.scm:3261 msgid "" "HTML::Lint is a pure-Perl HTML parser and checker for\n" "syntactic legitmacy." msgstr "" -#: gnu/packages/web.scm:3282 +#: gnu/packages/web.scm:3283 msgid "" "HTML::TableExtract is a Perl module for extracting the content contained\n" "in tables within an HTML document, either as text or encoded element trees." msgstr "" -#: gnu/packages/web.scm:3305 +#: gnu/packages/web.scm:3306 msgid "" "This distribution contains a suite of modules for\n" "representing, creating, and extracting information from HTML syntax trees." msgstr "" -#: gnu/packages/web.scm:3327 +#: gnu/packages/web.scm:3328 msgid "" "Objects of the HTML::Parser class will recognize markup and separate\n" "it from plain text (alias data content) in HTML documents. As different\n" @@ -21597,13 +21847,13 @@ msgid "" "are invoked." msgstr "" -#: gnu/packages/web.scm:3349 +#: gnu/packages/web.scm:3350 msgid "" "The HTML::Tagset module contains several data tables useful in various\n" "kinds of HTML parsing operations." msgstr "" -#: gnu/packages/web.scm:3370 +#: gnu/packages/web.scm:3371 msgid "" "This module attempts to make using HTML templates simple and natural.\n" "It extends standard HTML with a few new HTML-esque tags: @code{},\n" @@ -21614,40 +21864,40 @@ msgid "" "you to separate design from the data." msgstr "" -#: gnu/packages/web.scm:3398 +#: gnu/packages/web.scm:3399 msgid "" "HTTP::Body parses chunks of HTTP POST data and supports\n" "application/octet-stream, application/json, application/x-www-form-urlencoded,\n" "and multipart/form-data." msgstr "" -#: gnu/packages/web.scm:3421 +#: gnu/packages/web.scm:3422 msgid "" "This module implements a minimalist HTTP user agent cookie\n" "jar in conformance with RFC 6265 ." msgstr "" -#: gnu/packages/web.scm:3443 +#: gnu/packages/web.scm:3444 msgid "" "The HTTP::Cookies class is for objects that represent a cookie jar,\n" "that is, a database of all the HTTP cookies that a given LWP::UserAgent\n" "object knows about." msgstr "" -#: gnu/packages/web.scm:3466 +#: gnu/packages/web.scm:3467 msgid "" "Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen\n" "on a socket for incoming requests. The HTTP::Daemon is a subclass of\n" "IO::Socket::INET, so you can perform socket operations directly on it too." msgstr "" -#: gnu/packages/web.scm:3487 +#: gnu/packages/web.scm:3488 msgid "" "The HTTP::Date module provides functions that deal with date formats\n" "used by the HTTP protocol (and then some more)." msgstr "" -#: gnu/packages/web.scm:3508 +#: gnu/packages/web.scm:3509 msgid "" "@code{HTTP::Lite} is a stand-alone lightweight\n" "HTTP/1.1 implementation for perl. It is intended for use in\n" @@ -21661,11 +21911,11 @@ msgid "" "processing of request data as it arrives." msgstr "" -#: gnu/packages/web.scm:3541 +#: gnu/packages/web.scm:3542 msgid "An HTTP::Message object contains some headers and a content body." msgstr "" -#: gnu/packages/web.scm:3562 +#: gnu/packages/web.scm:3563 msgid "" "The HTTP::Negotiate module provides a complete implementation of the\n" "HTTP content negotiation algorithm specified in\n" @@ -21675,7 +21925,7 @@ msgid "" "fields in the request." msgstr "" -#: gnu/packages/web.scm:3587 +#: gnu/packages/web.scm:3588 msgid "" "This is an HTTP request parser. It takes chunks of text as\n" "received and returns a @code{hint} as to what is required, or returns the\n" @@ -21683,33 +21933,33 @@ msgid "" "supported." msgstr "" -#: gnu/packages/web.scm:3610 +#: gnu/packages/web.scm:3611 msgid "" "HTTP::Parser::XS is a fast, primitive HTTP request/response\n" "parser." msgstr "" -#: gnu/packages/web.scm:3631 +#: gnu/packages/web.scm:3632 msgid "" "This module provides a convenient way to set up a CGI\n" "environment from an HTTP::Request." msgstr "" -#: gnu/packages/web.scm:3665 +#: gnu/packages/web.scm:3666 msgid "" "HTTP::Server::Simple is a simple standalone HTTP daemon with\n" "no non-core module dependencies. It can be used for building a standalone\n" "http-based UI to your existing tools." msgstr "" -#: gnu/packages/web.scm:3688 +#: gnu/packages/web.scm:3689 msgid "" "This is a very simple HTTP/1.1 client, designed for doing\n" "simple requests without the overhead of a large framework like LWP::UserAgent.\n" "It supports proxies and redirection. It also correctly resumes after EINTR." msgstr "" -#: gnu/packages/web.scm:3713 +#: gnu/packages/web.scm:3714 msgid "" "@code{HTTP::Tinyish} is a wrapper module for @acronym{LWP,libwww-perl},\n" "@code{HTTP::Tiny}, curl and wget.\n" @@ -21717,20 +21967,20 @@ msgid "" "It provides an API compatible to HTTP::Tiny." msgstr "" -#: gnu/packages/web.scm:3735 +#: gnu/packages/web.scm:3736 msgid "" "IO::HTML provides an easy way to open a file containing HTML while\n" "automatically determining its encoding. It uses the HTML5 encoding sniffing\n" "algorithm specified in section 8.2.2.1 of the draft standard." msgstr "" -#: gnu/packages/web.scm:3755 +#: gnu/packages/web.scm:3756 msgid "" "This module provides a protocol-independent way to use IPv4\n" "and IPv6 sockets, intended as a replacement for IO::Socket::INET." msgstr "" -#: gnu/packages/web.scm:3777 +#: gnu/packages/web.scm:3778 msgid "" "IO::Socket::SSL makes using SSL/TLS much easier by wrapping the\n" "necessary functionality into the familiar IO::Socket interface and providing\n" @@ -21739,7 +21989,7 @@ msgid "" "select or poll." msgstr "" -#: gnu/packages/web.scm:3816 +#: gnu/packages/web.scm:3817 msgid "" "The libwww-perl collection is a set of Perl modules which provides a\n" "simple and consistent application programming interface to the\n" @@ -21749,7 +21999,7 @@ msgid "" "help you implement simple HTTP servers." msgstr "" -#: gnu/packages/web.scm:3844 +#: gnu/packages/web.scm:3845 msgid "" "This module attempts to answer, as accurately as it can, one\n" "of the nastiest technical questions there is: am I on the internet?\n" @@ -21759,7 +22009,7 @@ msgid "" "not have DNS. We might not have a network card at all!" msgstr "" -#: gnu/packages/web.scm:3870 +#: gnu/packages/web.scm:3871 #, scheme-format msgid "" "The LWP::MediaTypes module provides functions for handling media (also\n" @@ -21768,20 +22018,20 @@ msgid "" "exists it is used instead." msgstr "" -#: gnu/packages/web.scm:3895 +#: gnu/packages/web.scm:3896 msgid "" "The LWP::Protocol::https module provides support for using\n" "https schemed URLs with LWP." msgstr "" -#: gnu/packages/web.scm:3916 +#: gnu/packages/web.scm:3917 msgid "" "LWP::UserAgent::Cached is an LWP::UserAgent subclass with\n" "cache support. It returns responses from the local file system, if available,\n" "instead of making an HTTP request." msgstr "" -#: gnu/packages/web.scm:3938 +#: gnu/packages/web.scm:3939 msgid "" "LWP::UserAgent::Determined works just like LWP::UserAgent,\n" "except that when you use it to get a web page but run into a\n" @@ -21789,7 +22039,7 @@ msgid "" "and retry a few times." msgstr "" -#: gnu/packages/web.scm:3965 +#: gnu/packages/web.scm:3966 msgid "" "@code{LWPx::ParanoidAgent} is a class subclassing\n" "@code{LWP::UserAgent} but paranoid against attackers. Its purpose is\n" @@ -21799,11 +22049,11 @@ msgid "" "is limited to http and https." msgstr "" -#: gnu/packages/web.scm:4011 +#: gnu/packages/web.scm:4012 msgid "This module provides a Perlish interface to Amazon S3." msgstr "" -#: gnu/packages/web.scm:4032 +#: gnu/packages/web.scm:4033 msgid "" "The Net::HTTP class is a low-level HTTP client. An instance of the\n" "Net::HTTP class represents a connection to an HTTP server. The HTTP protocol\n" @@ -21811,7 +22061,7 @@ msgid "" "HTTP/1.1." msgstr "" -#: gnu/packages/web.scm:4053 +#: gnu/packages/web.scm:4054 msgid "" "Net::Server is an extensible, generic Perl server engine.\n" "It attempts to be a generic server as in Net::Daemon and NetServer::Generic.\n" @@ -21825,11 +22075,11 @@ msgid "" "or to multiple server ports." msgstr "" -#: gnu/packages/web.scm:4082 +#: gnu/packages/web.scm:4083 msgid "SSL support for Net::SMTP." msgstr "" -#: gnu/packages/web.scm:4116 +#: gnu/packages/web.scm:4117 msgid "" "Plack is a set of tools for using the PSGI stack. It\n" "contains middleware components, a reference server, and utilities for Web\n" @@ -21837,7 +22087,7 @@ msgid "" "WSGI." msgstr "" -#: gnu/packages/web.scm:4143 +#: gnu/packages/web.scm:4144 msgid "" "Plack::Middleware::Deflater is a middleware to encode your response body\n" "in gzip or deflate, based on \"Accept-Encoding\" HTTP request header. It\n" @@ -21846,13 +22096,13 @@ msgid "" "servers." msgstr "" -#: gnu/packages/web.scm:4170 +#: gnu/packages/web.scm:4171 msgid "" "This module sets the body in redirect response, if it's not\n" "already set." msgstr "" -#: gnu/packages/web.scm:4193 +#: gnu/packages/web.scm:4194 msgid "" "This middleware allows for POST requests that pretend to be\n" "something else: by adding either a header named X-HTTP-Method-Override to the\n" @@ -21860,44 +22110,44 @@ msgid "" "can say what method it actually meant." msgstr "" -#: gnu/packages/web.scm:4217 +#: gnu/packages/web.scm:4218 msgid "" "This module removes the body in an HTTP response if it's not\n" "required." msgstr "" -#: gnu/packages/web.scm:4240 +#: gnu/packages/web.scm:4241 msgid "" "Plack::Middleware::ReverseProxy resets some HTTP headers,\n" "which are changed by reverse-proxy. You can specify the reverse proxy address\n" "and stop fake requests using @code{enable_if} directive in your app.psgi." msgstr "" -#: gnu/packages/web.scm:4261 +#: gnu/packages/web.scm:4262 msgid "" "This module allows your to run your Plack::Test tests\n" "against an external server instead of just against a local application through\n" "either mocked HTTP or a locally spawned server." msgstr "" -#: gnu/packages/web.scm:4283 +#: gnu/packages/web.scm:4284 msgid "Test::TCP is test utilities for TCP/IP programs." msgstr "" -#: gnu/packages/web.scm:4308 +#: gnu/packages/web.scm:4309 msgid "" "Test::WWW::Mechanize is a subclass of the Perl module\n" "WWW::Mechanize that incorporates features for web application testing." msgstr "" -#: gnu/packages/web.scm:4341 +#: gnu/packages/web.scm:4342 msgid "" "The Test::WWW::Mechanize::Catalyst module meshes the\n" "Test::WWW:Mechanize module and the Catalyst web application framework to allow\n" "testing of Catalyst applications without needing to start up a web server." msgstr "" -#: gnu/packages/web.scm:4365 +#: gnu/packages/web.scm:4366 msgid "" "PSGI is a specification to decouple web server environments\n" "from web application framework code. Test::WWW::Mechanize is a subclass of\n" @@ -21906,21 +22156,21 @@ msgid "" "applications." msgstr "" -#: gnu/packages/web.scm:4390 +#: gnu/packages/web.scm:4391 msgid "" "The URI module implements the URI class. Objects of this class\n" "represent \"Uniform Resource Identifier references\" as specified in RFC 2396\n" "and updated by RFC 2732." msgstr "" -#: gnu/packages/web.scm:4413 +#: gnu/packages/web.scm:4414 msgid "" "@code{URI::Fetch} is a smart client for fetching HTTP pages,\n" "notably syndication feeds (RSS, Atom, and others), in an intelligent, bandwidth-\n" "and time-saving way." msgstr "" -#: gnu/packages/web.scm:4437 +#: gnu/packages/web.scm:4438 msgid "" "This module finds URIs and URLs (according to what URI.pm\n" "considers a URI) in plain text. It only finds URIs which include a\n" @@ -21928,37 +22178,37 @@ msgid "" "URI::Find::Schemeless. For a command-line interface, urifind is provided." msgstr "" -#: gnu/packages/web.scm:4460 +#: gnu/packages/web.scm:4461 msgid "" "With this module, the URI package provides the same set of\n" "methods for WebSocket URIs as it does for HTTP URIs." msgstr "" -#: gnu/packages/web.scm:4483 +#: gnu/packages/web.scm:4484 msgid "" "This perl module provides a wrapper around URI templates as described in\n" "RFC 6570." msgstr "" -#: gnu/packages/web.scm:4517 +#: gnu/packages/web.scm:4518 msgid "" "This is a Perl extension interface for the libcurl file downloading\n" "library." msgstr "" -#: gnu/packages/web.scm:4548 +#: gnu/packages/web.scm:4549 msgid "" "WWW::Mechanize is a Perl module for stateful programmatic\n" "web browsing, used for automating interaction with websites." msgstr "" -#: gnu/packages/web.scm:4586 +#: gnu/packages/web.scm:4587 msgid "" "@code{WWW::OpenSearch} is a module to search @url{A9's OpenSearch,\n" "http://opensearch.a9.com} compatible search engines." msgstr "" -#: gnu/packages/web.scm:4608 +#: gnu/packages/web.scm:4609 msgid "" "The WWW::RobotRules module parses /robots.txt files as specified in\n" "\"A Standard for Robot Exclusion\", at\n" @@ -21967,13 +22217,13 @@ msgid "" "their web site." msgstr "" -#: gnu/packages/web.scm:4635 gnu/packages/web.scm:4659 +#: gnu/packages/web.scm:4640 gnu/packages/web.scm:4664 msgid "" "Universal feed parser which handles RSS 0.9x, RSS 1.0, RSS 2.0,\n" "CDF, Atom 0.3, and Atom 1.0 feeds." msgstr "" -#: gnu/packages/web.scm:4756 +#: gnu/packages/web.scm:4761 msgid "" "The Guix Data Service stores data about GNU Guix, and provides this\n" "through a web interface. It supports listening to the guix-commits mailing\n" @@ -21981,20 +22231,20 @@ msgid "" "PostgreSQL database." msgstr "" -#: gnu/packages/web.scm:4785 +#: gnu/packages/web.scm:4790 msgid "" "Gumbo is an implementation of the HTML5 parsing algorithm implemented as\n" "a pure C99 library." msgstr "" -#: gnu/packages/web.scm:4858 +#: gnu/packages/web.scm:4863 msgid "" "uWSGI presents a complete stack for networked/clustered web applications,\n" "implementing message/object passing, caching, RPC and process management.\n" "It uses the uwsgi protocol for all the networking/interprocess communications." msgstr "" -#: gnu/packages/web.scm:4891 +#: gnu/packages/web.scm:4896 msgid "" "jq is like sed for JSON data – you can use it to slice and\n" "filter and map and transform structured data with the same ease that sed, awk,\n" @@ -22004,7 +22254,7 @@ msgid "" "you'd expect." msgstr "" -#: gnu/packages/web.scm:4920 +#: gnu/packages/web.scm:4925 msgid "" "@command{pup} is a command line tool for processing HTML. It reads\n" "from stdin, prints to stdout, and allows the user to filter parts of the page\n" @@ -22012,66 +22262,66 @@ msgid "" "fast and flexible way of exploring HTML from the terminal." msgstr "" -#: gnu/packages/web.scm:4953 +#: gnu/packages/web.scm:4958 msgid "" "Uhttpmock is a project for mocking web service APIs which use HTTP or\n" "HTTPS. It provides a library, libuhttpmock, which implements recording and\n" "playback of HTTP request/response traces." msgstr "" -#: gnu/packages/web.scm:4989 +#: gnu/packages/web.scm:4994 msgid "" "Woof (Web Offer One File) is a small simple web server that\n" "can easily be invoked on a single file. Your partner can access the file with\n" "tools they trust (e.g. wget)." msgstr "" -#: gnu/packages/web.scm:5017 +#: gnu/packages/web.scm:5022 msgid "" "This package provides the shared build system for Netsurf project\n" "libraries." msgstr "" -#: gnu/packages/web.scm:5052 +#: gnu/packages/web.scm:5057 msgid "" "LibParserUtils is a library for building efficient parsers, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5082 +#: gnu/packages/web.scm:5087 msgid "" "Hubbub is an HTML5 compliant parsing library, written in C, which can\n" "parse both valid and invalid web content. It is developed as part of the\n" "NetSurf project." msgstr "" -#: gnu/packages/web.scm:5203 +#: gnu/packages/web.scm:5208 msgid "" "Ikiwiki is a wiki compiler, capable of generating a static set of web\n" "pages, but also incorporating dynamic features like a web based editor and\n" "commenting." msgstr "" -#: gnu/packages/web.scm:5227 +#: gnu/packages/web.scm:5232 msgid "" "LibWapcaplet provides a reference counted string internment system\n" "designed to store small strings and allow rapid comparison of them. It is\n" "developed as part of the Netsurf project." msgstr "" -#: gnu/packages/web.scm:5259 +#: gnu/packages/web.scm:5264 msgid "" "LibCSS is a CSS (Cascading Style Sheet) parser and selection engine,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5294 +#: gnu/packages/web.scm:5299 msgid "" "LibDOM is an implementation of the W3C DOM, written in C. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5321 +#: gnu/packages/web.scm:5326 msgid "" "Libsvgtiny takes some SVG as input and returns a list of paths and texts\n" "which can be rendered easily, as defined in\n" @@ -22079,65 +22329,65 @@ msgid "" "project." msgstr "" -#: gnu/packages/web.scm:5346 +#: gnu/packages/web.scm:5351 msgid "" "Libnsbmp is a decoding library for BMP and ICO image file formats,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5369 +#: gnu/packages/web.scm:5374 msgid "" "Libnsgif is a decoding library for the GIF image file format, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5396 +#: gnu/packages/web.scm:5401 msgid "" "Libnslog provides a category-based logging library which supports\n" "complex logging filters, multiple log levels, and provides context through to\n" "client applications. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5420 +#: gnu/packages/web.scm:5425 msgid "" "Libnsutils provides a small number of useful utility routines. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5443 +#: gnu/packages/web.scm:5448 msgid "" "Libnspsl is a library to generate a static code representation of the\n" "Public Suffix List. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5469 +#: gnu/packages/web.scm:5474 msgid "" "@code{nsgenbind} is a tool to generate JavaScript to DOM bindings from\n" "w3c webidl files and a binding configuration file." msgstr "" -#: gnu/packages/web.scm:5592 +#: gnu/packages/web.scm:5597 msgid "" "NetSurf is a lightweight web browser that has its own layout and\n" "rendering engine entirely written from scratch. It is small and capable of\n" "handling many of the web standards in use today." msgstr "" -#: gnu/packages/web.scm:5631 +#: gnu/packages/web.scm:5636 msgid "" "Surfraw (Shell Users' Revolutionary Front Rage Against the Web)\n" "provides a unix command line interface to a variety of popular www search engines\n" "and similar services." msgstr "" -#: gnu/packages/web.scm:5664 +#: gnu/packages/web.scm:5669 msgid "" "darkhttpd is a simple static web server. It is\n" "standalone and does not need inetd or ucspi-tcp. It does not need any\n" "config files---you only have to specify the www root." msgstr "" -#: gnu/packages/web.scm:5695 +#: gnu/packages/web.scm:5700 msgid "" "GoAccess is a real-time web log analyzer and interactive viewer that\n" "runs in a terminal or through your browser. It provides fast and valuable\n" @@ -22145,7 +22395,7 @@ msgid "" "on the fly." msgstr "" -#: gnu/packages/web.scm:5749 +#: gnu/packages/web.scm:5754 msgid "" "Hitch is a performant TLS proxy based on @code{libev}. It terminates\n" "SSL/TLS connections and forwards the unencrypted traffic to a backend such\n" @@ -22153,7 +22403,7 @@ msgid "" "multicore machines." msgstr "" -#: gnu/packages/web.scm:5786 +#: gnu/packages/web.scm:5791 msgid "" "httptunnel creates a bidirectional virtual data connection\n" "tunnelled through HTTP (HyperText Transfer Protocol) requests. This can be\n" @@ -22171,7 +22421,7 @@ msgid "" "deployments." msgstr "" -#: gnu/packages/web.scm:5915 +#: gnu/packages/web.scm:5912 msgid "" "Varnish is a high-performance HTTP accelerator. It acts as a caching\n" "reverse proxy and load balancer. You install it in front of any server that\n" @@ -22179,14 +22429,14 @@ msgid "" "configuration language." msgstr "" -#: gnu/packages/web.scm:5949 +#: gnu/packages/web.scm:5946 msgid "" "This package provides a collection of modules (@dfn{vmods}) for the Varnish\n" "cache server, extending the @acronym{VCL, Varnish Configuration Language} with\n" "additional capabilities." msgstr "" -#: gnu/packages/web.scm:5976 +#: gnu/packages/web.scm:5973 msgid "" "@code{xinetd}, a more secure replacement for @code{inetd},\n" "listens for incoming requests over a network and launches the appropriate\n" @@ -22195,7 +22445,7 @@ msgid "" "used to start services with both privileged and non-privileged port numbers." msgstr "" -#: gnu/packages/web.scm:6023 +#: gnu/packages/web.scm:6020 msgid "" "Tidy is a console application which corrects and cleans up\n" "HTML and XML documents by fixing markup errors and upgrading\n" @@ -22206,14 +22456,14 @@ msgid "" "functions of Tidy." msgstr "" -#: gnu/packages/web.scm:6085 +#: gnu/packages/web.scm:6082 msgid "" "Hiawatha has been written with security in mind.\n" "Features include the ability to stop SQL injections, XSS and CSRF attacks and\n" "exploit attempts." msgstr "" -#: gnu/packages/web.scm:6107 +#: gnu/packages/web.scm:6104 msgid "" "Testing an HTTP Library can become difficult sometimes.\n" "@code{RequestBin} is fantastic for testing POST requests, but doesn't let you control the\n" @@ -22221,14 +22471,14 @@ msgid "" "JSON-encoded." msgstr "" -#: gnu/packages/web.scm:6132 +#: gnu/packages/web.scm:6129 msgid "" "@code{Pytest-httpbin} creates a @code{pytest} fixture that is dependency-injected\n" "into your tests. It automatically starts up a HTTP server in a separate thread running\n" "@code{httpbin} and provides your test with the URL in the fixture." msgstr "" -#: gnu/packages/web.scm:6199 +#: gnu/packages/web.scm:6196 msgid "" "This is a parser for HTTP messages written in C. It\n" "parses both requests and responses. The parser is designed to be used in\n" @@ -22238,40 +22488,40 @@ msgid "" "message stream (in a web server that is per connection)." msgstr "" -#: gnu/packages/web.scm:6236 +#: gnu/packages/web.scm:6233 msgid "" "@code{httpretty} is a helper for faking web requests,\n" "inspired by Ruby's @code{fakeweb}." msgstr "" -#: gnu/packages/web.scm:6254 +#: gnu/packages/web.scm:6251 msgid "" "jo is a command-line utility to create JSON objects or\n" "arrays. It creates a JSON string on stdout from words provided as\n" "command-line arguments or read from stdin." msgstr "" -#: gnu/packages/web.scm:6313 +#: gnu/packages/web.scm:6310 msgid "" "@code{ia} is a command-line tool for using\n" "@url{archive.org} from the command-line. It also implements the\n" "internetarchive python module for programmatic access to archive.org." msgstr "" -#: gnu/packages/web.scm:6364 +#: gnu/packages/web.scm:6361 msgid "" "@code{clf} is a command line tool for searching code\n" "snippets on @url{https://commandlinefu.com}." msgstr "" -#: gnu/packages/web.scm:6402 +#: gnu/packages/web.scm:6399 msgid "" "rss-bridge generates Atom feeds for social networking\n" "websites lacking feeds. Supported websites include Facebook, Twitter,\n" "Instagram and YouTube." msgstr "" -#: gnu/packages/web.scm:6440 +#: gnu/packages/web.scm:6437 msgid "" "LinkChecker is a website validator. It checks for broken\n" "links in websites. It is recursive and multithreaded providing output in\n" @@ -22280,67 +22530,67 @@ msgid "" "file links." msgstr "" -#: gnu/packages/web.scm:6488 +#: gnu/packages/web.scm:6485 msgid "" "Castor is a graphical client for plain-text protocols written in\n" "Rust with GTK. It currently supports the Gemini, Gopher and Finger\n" "protocols." msgstr "" -#: gnu/packages/web.scm:6575 +#: gnu/packages/web.scm:6572 msgid "" "This package includes Clearsilver, the CGI kit and HTML templating\n" "system." msgstr "" -#: gnu/packages/web.scm:6594 +#: gnu/packages/web.scm:6591 msgid "" "Py-ubjson is a Python module providing an Universal Binary JSON\n" "encoder/decoder based on the draft-12 specification for UBJSON." msgstr "" -#: gnu/packages/web.scm:6689 +#: gnu/packages/web.scm:6686 msgid "" "Apache Tomcat is a free implementation of the Java\n" "Servlet, JavaServer Pages, Java Expression Language and Java WebSocket\n" "technologies." msgstr "" -#: gnu/packages/web.scm:6743 +#: gnu/packages/web.scm:6740 msgid "" "This package contains helper classes for testing the Jetty\n" "Web Server." msgstr "" -#: gnu/packages/web.scm:6802 +#: gnu/packages/web.scm:6799 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides utility classes." msgstr "" -#: gnu/packages/web.scm:6880 +#: gnu/packages/web.scm:6877 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides IO-related utility classes." msgstr "" -#: gnu/packages/web.scm:6925 +#: gnu/packages/web.scm:6922 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides HTTP-related utility classes." msgstr "" -#: gnu/packages/web.scm:6959 +#: gnu/packages/web.scm:6956 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides the JMX management." msgstr "" -#: gnu/packages/web.scm:7045 +#: gnu/packages/web.scm:7042 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -22348,7 +22598,7 @@ msgid "" "artifact." msgstr "" -#: gnu/packages/web.scm:7088 +#: gnu/packages/web.scm:7085 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -22356,7 +22606,7 @@ msgid "" "infrastructure" msgstr "" -#: gnu/packages/web.scm:7144 +#: gnu/packages/web.scm:7141 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -22364,14 +22614,14 @@ msgid "" "container." msgstr "" -#: gnu/packages/web.scm:7308 +#: gnu/packages/web.scm:7305 msgid "" "Jsoup is a Java library for working with real-world HTML. It\n" "provides a very convenient API for extracting and manipulating data, using the\n" "best of DOM, CSS, and jQuery-like methods." msgstr "" -#: gnu/packages/web.scm:7337 +#: gnu/packages/web.scm:7334 msgid "" "Signpost is the easy and intuitive solution for signing\n" "HTTP messages on the Java platform in conformance with the OAuth Core 1.0a\n" @@ -22379,7 +22629,7 @@ msgid "" "combine it with different HTTP messaging layers." msgstr "" -#: gnu/packages/web.scm:7360 +#: gnu/packages/web.scm:7357 msgid "" "Tidyp is a program that can validate your HTML, as well as\n" "modify it to be more clean and standard. tidyp does not validate HTML 5.\n" @@ -22389,14 +22639,14 @@ msgid "" "based on this library, allowing Perl programmers to easily validate HTML." msgstr "" -#: gnu/packages/web.scm:7401 +#: gnu/packages/web.scm:7398 msgid "" "@code{HTML::Tidy} is an HTML checker in a handy dandy\n" "object. It's meant as a replacement for @code{HTML::Lint}, which is written\n" "in Perl but is not nearly as capable as @code{HTML::Tidy}." msgstr "" -#: gnu/packages/web.scm:7430 +#: gnu/packages/web.scm:7427 msgid "" "Geomyidae is a server for distributed hypertext protocol Gopher. Its\n" "features include:\n" @@ -22410,14 +22660,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/web.scm:7478 +#: gnu/packages/web.scm:7475 msgid "" "Cat avatar generator is a generator of cat pictures optimised\n" "to generate random avatars, or defined avatar from a \"seed\". This is a\n" "derivation by David Revoy from the original MonsterID by Andreas Gohr." msgstr "" -#: gnu/packages/web.scm:7548 +#: gnu/packages/web.scm:7545 msgid "" "nghttp2 implements the Hypertext Transfer Protocol, version\n" "2 (@dfn{HTTP/2}).\n" @@ -22443,14 +22693,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7647 +#: gnu/packages/web.scm:7644 msgid "" "Hpcguix-web provides a web interface to the list of packages\n" "provided by Guix. The list of packages is searchable and provides\n" "instructions on how to use Guix in a shared HPC environment." msgstr "" -#: gnu/packages/web.scm:7668 +#: gnu/packages/web.scm:7665 msgid "" "HTTrack allows you to download a World Wide Web site from\n" "the Internet to a local directory, building recursively all directories,\n" @@ -22464,7 +22714,7 @@ msgid "" "HTTrack is fully configurable, and has an integrated help system." msgstr "" -#: gnu/packages/web.scm:7703 +#: gnu/packages/web.scm:7700 msgid "" "buku is a powerful bookmark manager written in Python3 and SQLite3.\n" "@command{buku} can auto-import bookmarks from your browser and present them\n" @@ -22473,7 +22723,7 @@ msgid "" "@command{bukuserver}." msgstr "" -#: gnu/packages/web.scm:7724 +#: gnu/packages/web.scm:7721 msgid "" "Anonip masks the last bits of IPv4 and IPv6 addresses in log files.\n" "That way most of the relevant information is preserved, while the IP address\n" @@ -22488,7 +22738,7 @@ msgid "" "Anonip can also be uses as a Python module in your own Python application." msgstr "" -#: gnu/packages/web.scm:7758 +#: gnu/packages/web.scm:7755 msgid "" "Poussetaches (which literally means \"push tasks\" in\n" "French) is a lightweight asynchronous task execution service that aims to\n" @@ -22500,7 +22750,7 @@ msgid "" "returned." msgstr "" -#: gnu/packages/web.scm:7783 +#: gnu/packages/web.scm:7780 msgid "" "htmlcxx is a simple non-validating CSS1 and HTML parser for\n" "C++. Although there are several other HTML parsers available, htmlcxx has some\n" @@ -22518,7 +22768,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:7827 +#: gnu/packages/web.scm:7824 msgid "" "libRocket is a C++ user interface package based on the HTML\n" "and CSS standards. libRocket uses the open standards XHTML1.0 and\n" @@ -22535,11 +22785,11 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7869 +#: gnu/packages/web.scm:7866 msgid "gmnisrv is a simple Gemini protocol server written in C." msgstr "" -#: gnu/packages/web.scm:7900 +#: gnu/packages/web.scm:7898 msgid "" "The openZIM project proposes offline storage solutions for\n" "content coming from the Web. The zimlib is the standard implementation of the\n" @@ -22571,14 +22821,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:8081 +#: gnu/packages/web.scm:8078 msgid "" "uriparser is a strictly RFC 3986 compliant URI parsing and\n" "handling library written in C89 (\"ANSI C\"). uriparser is fast and supports\n" "Unicode." msgstr "" -#: gnu/packages/web.scm:8115 +#: gnu/packages/web.scm:8112 msgid "" "Quark is an extremely small and simple HTTP GET/HEAD only\n" "web server for static content. TLS is not natively supported and should be\n" @@ -22748,53 +22998,53 @@ msgid "" "Enhancement}." msgstr "" -#: gnu/services/base.scm:276 +#: gnu/services/base.scm:279 msgid "" "Populate the @file{/etc/fstab} based on the given file\n" "system objects." msgstr "" -#: gnu/services/base.scm:314 +#: gnu/services/base.scm:317 msgid "" "Take care of syncing the root file\n" "system and of remounting it read-only when the system shuts down." msgstr "" -#: gnu/services/base.scm:481 +#: gnu/services/base.scm:484 msgid "" "Provide Shepherd services to mount and unmount the given\n" "file systems, as well as corresponding @file{/etc/fstab} entries." msgstr "" -#: gnu/services/base.scm:579 +#: gnu/services/base.scm:582 msgid "" "Seed the @file{/dev/urandom} pseudo-random number\n" "generator (RNG) with the value recorded when the system was last shut\n" "down." msgstr "" -#: gnu/services/base.scm:611 +#: gnu/services/base.scm:614 msgid "" "Run the @command{rngd} random number generation daemon to\n" "supply entropy to the kernel's pool." msgstr "" -#: gnu/services/base.scm:640 +#: gnu/services/base.scm:643 msgid "Initialize the machine's host name." msgstr "" -#: gnu/services/base.scm:670 +#: gnu/services/base.scm:673 msgid "Ensure the Linux virtual terminals run in UTF-8 mode." msgstr "" -#: gnu/services/base.scm:683 +#: gnu/services/base.scm:686 msgid "" "@emph{This service is deprecated in favor of the\n" "@code{keyboard-layout} field of @code{operating-system}.} Load the given list\n" "of console keymaps with @command{loadkeys}." msgstr "" -#: gnu/services/base.scm:743 +#: gnu/services/base.scm:746 msgid "" "Install the given fonts on the specified ttys (fonts are per\n" "virtual console on GNU/Linux). The value of this service is a list of\n" @@ -22812,66 +23062,66 @@ msgid "" "@end example\n" msgstr "" -#: gnu/services/base.scm:795 +#: gnu/services/base.scm:798 msgid "" "Provide a console log-in service as specified by its\n" "configuration value, a @code{login-configuration} object." msgstr "" -#: gnu/services/base.scm:1063 +#: gnu/services/base.scm:1066 msgid "" "Provide console login using the @command{agetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1128 +#: gnu/services/base.scm:1131 msgid "" "Provide console login using the @command{mingetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1345 +#: gnu/services/base.scm:1348 msgid "" "Runs libc's @dfn{name service cache daemon} (nscd) with the\n" "given configuration---an @code{} object. @xref{Name\n" "Service Switch}, for an example." msgstr "" -#: gnu/services/base.scm:1384 +#: gnu/services/base.scm:1387 msgid "" "Run the syslog daemon, @command{syslogd}, which is\n" "responsible for logging system messages." msgstr "" -#: gnu/services/base.scm:1448 +#: gnu/services/base.scm:1451 msgid "" "Install the specified resource usage limits by populating\n" "@file{/etc/security/limits.conf} and using the @code{pam_limits}\n" "authentication module." msgstr "" -#: gnu/services/base.scm:1794 +#: gnu/services/base.scm:1804 msgid "Run the build daemon of GNU@tie{}Guix, aka. @command{guix-daemon}." msgstr "" -#: gnu/services/base.scm:1944 +#: gnu/services/base.scm:1961 msgid "" "Add a Shepherd service running @command{guix publish}, a\n" "command that allows you to share pre-built binaries with others over HTTP." msgstr "" -#: gnu/services/base.scm:2150 +#: gnu/services/base.scm:2167 msgid "" "Run @command{udev}, which populates the @file{/dev}\n" "directory dynamically. Get extra rules from the packages listed in the\n" "@code{rules} field of its value, @code{udev-configuration} object." msgstr "" -#: gnu/services/base.scm:2267 +#: gnu/services/base.scm:2284 msgid "Turn on the virtual memory swap area." msgstr "" -#: gnu/services/base.scm:2309 +#: gnu/services/base.scm:2326 msgid "" "Run GPM, the general-purpose mouse daemon, with the given\n" "command-line options. GPM allows users to use the mouse in the console,\n" @@ -22879,33 +23129,33 @@ msgid "" "@code{ps2} protocol, which works for both USB and PS/2 mice." msgstr "" -#: gnu/services/base.scm:2382 +#: gnu/services/base.scm:2399 msgid "" "Start the @command{kmscon} virtual terminal emulator for the\n" "Linux @dfn{kernel mode setting} (KMS)." msgstr "" -#: gnu/services/base.scm:2403 +#: gnu/services/base.scm:2416 #, scheme-format msgid "address '~a' lacks a network mask" msgstr "" -#: gnu/services/base.scm:2409 +#: gnu/services/base.scm:2422 #, scheme-format msgid "Write, say, @samp{\"~a/24\"} for a 24-bit network mask." msgstr "" -#: gnu/services/base.scm:2489 +#: gnu/services/base.scm:2502 #, scheme-format msgid "network links are currently ignored on GNU/Hurd~%" msgstr "" -#: gnu/services/base.scm:2514 +#: gnu/services/base.scm:2527 #, scheme-format msgid "ignoring network route for '~a'~%" msgstr "" -#: gnu/services/base.scm:2698 +#: gnu/services/base.scm:2711 msgid "" "Turn up the specified network interfaces upon startup,\n" "with the given IP address, gateway, netmask, and so on. The value for\n" @@ -23118,6 +23368,12 @@ msgid "" "on the web." msgstr "" +#, fuzzy +#~ msgid "" +#~ "This package provides support for the French language for the\n" +#~ "babel multilingual system." +#~ msgstr "Ez a csomag egy Python felületet biztosít a Redis kulcs-érték tároláshoz." + #, fuzzy #~ msgid "This package provides a URL fetch plugin for Nushell." #~ msgstr "Ez a csomag egy LADSPA bővítményt biztosít egy sztereó visszhang hatáshoz." diff --git a/po/packages/it.po b/po/packages/it.po index 706d44c5d3..796d6b97cc 100644 --- a/po/packages/it.po +++ b/po/packages/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: GNU guix\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" "PO-Revision-Date: 2021-08-26 14:42+0000\n" "Last-Translator: Nathan \n" "Language-Team: Italian \n" @@ -48,7 +48,7 @@ msgstr "" msgid "This package provides a dictionary for the GNU Aspell spell checker." msgstr "Questo pacchetto fornisce un dizionario per il correttore ortografico GNU Aspell." -#: gnu/packages/aspell.scm:445 gnu/packages/libreoffice.scm:845 +#: gnu/packages/aspell.scm:450 gnu/packages/libreoffice.scm:845 #: gnu/packages/libreoffice.scm:918 msgid "" "This package provides a dictionary for the Hunspell spell-checking\n" @@ -57,7 +57,7 @@ msgstr "" "Questo pacchetto fornisce un dizionario per il controllo ortografico per la libreria \n" "Hunspell." -#: gnu/packages/aspell.scm:525 +#: gnu/packages/aspell.scm:530 msgid "" "Ispell is an interactive spell-checking tool supporting many\n" "European languages." @@ -65,7 +65,7 @@ msgstr "" "Ispell è uno strumento interattivo di controllo ortografico che supporta molte\n" "lingue europee." -#: gnu/packages/audio.scm:197 +#: gnu/packages/audio.scm:198 msgid "" "OpenSLES is a royalty-free, cross-platform,\n" "hardware-accelerated audio API tuned for embedded systems. It provides a\n" @@ -76,31 +76,31 @@ msgid "" "promoting the market for advanced audio." msgstr "" -#: gnu/packages/audio.scm:233 +#: gnu/packages/audio.scm:234 msgid "" "WildMIDI is a simple software midi player which has a core\n" "softsynth library that can be use with other applications." msgstr "" -#: gnu/packages/audio.scm:257 +#: gnu/packages/audio.scm:258 msgid "" "WebRTC-Audio-Processing library based on Google's\n" "implementation of WebRTC." msgstr "" -#: gnu/packages/audio.scm:277 +#: gnu/packages/audio.scm:278 msgid "" "VO-AACENC is the VisualOn implementation of Advanced Audio\n" "Coding (AAC) encoder." msgstr "" -#: gnu/packages/audio.scm:306 +#: gnu/packages/audio.scm:307 msgid "" "TinyALSA is a small library to interface with ALSA in the\n" "Linux kernel." msgstr "" -#: gnu/packages/audio.scm:329 +#: gnu/packages/audio.scm:330 msgid "" "Game-music-emu is a collection of video game music file emulators that\n" "support the following formats and systems:\n" @@ -126,43 +126,43 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/audio.scm:393 +#: gnu/packages/audio.scm:394 msgid "" "LibOpenMPT is a cross-platform C++ and C module playback\n" "library. It is based on the player code of the Open ModPlug Tracker project." msgstr "" -#: gnu/packages/audio.scm:424 +#: gnu/packages/audio.scm:425 msgid "" "LibOFA is an audio fingerprint library, created and provided\n" "by MusicIP." msgstr "" -#: gnu/packages/audio.scm:445 +#: gnu/packages/audio.scm:446 msgid "FAAC is an MPEG-4 and MPEG-2 AAC encoder." msgstr "" -#: gnu/packages/audio.scm:474 +#: gnu/packages/audio.scm:475 msgid "" "LibTiMidity is a MIDI to WAVE converter library that uses\n" "Gravis Ultrasound-compatible patch files to generate digital audio data from\n" "General MIDI files." msgstr "" -#: gnu/packages/audio.scm:499 +#: gnu/packages/audio.scm:500 msgid "" "VO-AMR is a library of VisualOn implementation of\n" "Adaptive Multi Rate Narrowband and Wideband (AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:518 +#: gnu/packages/audio.scm:519 msgid "" "OpenCore-AMR is a library of OpenCORE Framework\n" "implementation of Adaptive Multi Rate Narrowband and Wideband\n" "(AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:551 +#: gnu/packages/audio.scm:552 msgid "" "AlsaModularSynth is a digital implementation of a classical analog\n" "modular synthesizer system. It uses virtual control voltages to control the\n" @@ -171,7 +171,7 @@ msgid "" "Filter) modules follow the convention of 1V / Octave." msgstr "" -#: gnu/packages/audio.scm:588 +#: gnu/packages/audio.scm:589 msgid "" "aubio is a tool designed for the extraction of annotations from audio\n" "signals. Its features include segmenting a sound file before each of its\n" @@ -179,21 +179,21 @@ msgid "" "streams from live audio." msgstr "" -#: gnu/packages/audio.scm:719 +#: gnu/packages/audio.scm:720 msgid "" "Ardour is a multi-channel digital audio workstation, allowing users to\n" "record, edit, mix and master audio and MIDI projects. It is targeted at audio\n" "engineers, musicians, soundtrack editors and composers." msgstr "" -#: gnu/packages/audio.scm:833 +#: gnu/packages/audio.scm:853 msgid "" "Audacity is a multi-track audio editor designed for recording, playing\n" "and editing digital audio. It features digital effects and spectrum analysis\n" "tools." msgstr "" -#: gnu/packages/audio.scm:889 +#: gnu/packages/audio.scm:909 msgid "" "This is an open-source version of SGI's audiofile library.\n" "It provides a uniform programming interface for processing of audio data to\n" @@ -204,14 +204,14 @@ msgid "" "G.711 mu-law and A-law." msgstr "" -#: gnu/packages/audio.scm:931 +#: gnu/packages/audio.scm:951 msgid "" "Autotalent is a LADSPA plugin for real-time pitch-correction. Among its\n" "controls are allowable notes, strength of correction, LFO for vibrato and\n" "formant warp." msgstr "" -#: gnu/packages/audio.scm:972 +#: gnu/packages/audio.scm:992 msgid "" "AZR-3 is a port of the free VST plugin AZR-3. It is a tonewheel organ\n" "with drawbars, distortion and rotating speakers. The organ has three\n" @@ -220,7 +220,7 @@ msgid "" "plugins are provided." msgstr "" -#: gnu/packages/audio.scm:1011 +#: gnu/packages/audio.scm:1031 msgid "" "Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments.\n" "The suite contains lots of effects (delay, modulation, signal processing,\n" @@ -229,31 +229,31 @@ msgid "" "tools (analyzer, mono/stereo tools, crossovers)." msgstr "" -#: gnu/packages/audio.scm:1053 +#: gnu/packages/audio.scm:1073 msgid "" "LV2 port of CAPS, a collection of audio plugins comprising basic virtual\n" "guitar amplification and a small range of classic effects, signal processors and\n" "generators of mostly elementary and occasionally exotic nature." msgstr "" -#: gnu/packages/audio.scm:1094 +#: gnu/packages/audio.scm:1114 msgid "" "The infamous plugins are a collection of LV2 audio plugins for live\n" "performances. The plugins include a cellular automaton synthesizer, an\n" "envelope follower, distortion effects, tape effects and more." msgstr "" -#: gnu/packages/audio.scm:1129 +#: gnu/packages/audio.scm:1149 msgid "" "Snapcast is a multi-room client-server audio player. Clients are time\n" "synchronized with the server to play synced audio." msgstr "" -#: gnu/packages/audio.scm:1159 +#: gnu/packages/audio.scm:1179 msgid "This package provides Steve Harris's LADSPA plugins." msgstr "" -#: gnu/packages/audio.scm:1199 +#: gnu/packages/audio.scm:1219 msgid "" "Swh-plugins-lv2 is a collection of audio plugins in LV2 format. Plugin\n" "classes include: dynamics (compressor, limiter), time (delay, chorus,\n" @@ -261,13 +261,13 @@ msgid "" "emulation (valve, tape), bit fiddling (decimator, pointer-cast), etc." msgstr "" -#: gnu/packages/audio.scm:1233 +#: gnu/packages/audio.scm:1253 msgid "" "@code{libdjinterop} is a C++ library that allows access to database\n" "formats used to store information about DJ record libraries." msgstr "" -#: gnu/packages/audio.scm:1295 gnu/packages/audio.scm:1326 +#: gnu/packages/audio.scm:1315 gnu/packages/audio.scm:1346 msgid "" "Tao is a software package for sound synthesis using physical\n" "models. It provides a virtual acoustic material constructed from masses and\n" @@ -277,13 +277,13 @@ msgid "" "object library." msgstr "" -#: gnu/packages/audio.scm:1361 +#: gnu/packages/audio.scm:1381 msgid "" "Csound is a user-programmable and user-extensible sound processing\n" "language and software synthesizer." msgstr "" -#: gnu/packages/audio.scm:1388 +#: gnu/packages/audio.scm:1408 msgid "" "midicomp can manipulate SMF (Standard MIDI File) files. It can both\n" " read and write SMF files in 0 or format 1 and also read and write its own\n" @@ -292,20 +292,20 @@ msgid "" " language, and recompiled back into a binary SMF file." msgstr "" -#: gnu/packages/audio.scm:1435 +#: gnu/packages/audio.scm:1455 msgid "" "clalsadrv is a C++ wrapper around the ALSA API simplifying access to\n" "ALSA PCM devices." msgstr "" -#: gnu/packages/audio.scm:1474 +#: gnu/packages/audio.scm:1494 msgid "" "The AMB plugins are a set of LADSPA ambisonics plugins, mainly to be\n" "used within Ardour. Features include: mono and stereo to B-format panning,\n" "horizontal rotator, square, hexagon and cube decoders." msgstr "" -#: gnu/packages/audio.scm:1511 +#: gnu/packages/audio.scm:1531 msgid "" "This package provides various LADSPA plugins. @code{cs_chorus} and\n" "@code{cs_phaser} provide chorus and phaser effects, respectively;\n" @@ -315,13 +315,13 @@ msgid "" "the non-linear circuit elements of their original analog counterparts." msgstr "" -#: gnu/packages/audio.scm:1551 +#: gnu/packages/audio.scm:1571 msgid "" "This package provides a stereo reverb LADSPA plugin based on the\n" "well-known greverb." msgstr "" -#: gnu/packages/audio.scm:1587 +#: gnu/packages/audio.scm:1607 msgid "" "This package provides a LADSPA plugin for a four-band parametric\n" "equalizer. Each section has an active/bypass switch, frequency, bandwidth and\n" @@ -336,13 +336,13 @@ msgid "" "for stage use." msgstr "" -#: gnu/packages/audio.scm:1632 +#: gnu/packages/audio.scm:1652 msgid "" "This package provides a LADSPA plugin to manipulate the stereo width of\n" "audio signals." msgstr "" -#: gnu/packages/audio.scm:1669 +#: gnu/packages/audio.scm:1689 msgid "" "The @code{blvco} LADSPA plugin provides three anti-aliased oscillators:\n" "\n" @@ -357,17 +357,17 @@ msgid "" "output of analog synthesizers such as the Moog Voyager." msgstr "" -#: gnu/packages/audio.scm:1713 +#: gnu/packages/audio.scm:1733 msgid "" "This package provides a LADSPA plugin for a Wah effect with envelope\n" "follower." msgstr "" -#: gnu/packages/audio.scm:1749 +#: gnu/packages/audio.scm:1769 msgid "This package provides a LADSPA plugin for a stereo reverb effect." msgstr "" -#: gnu/packages/audio.scm:1791 +#: gnu/packages/audio.scm:1811 msgid "" "FluidSynth is a real-time software synthesizer based on the SoundFont 2\n" "specifications. FluidSynth reads and handles MIDI events from the MIDI input\n" @@ -375,21 +375,21 @@ msgid "" "also play midifiles using a Soundfont." msgstr "" -#: gnu/packages/audio.scm:1814 +#: gnu/packages/audio.scm:1834 msgid "FAAD2 is an MPEG-4 and MPEG-2 AAC decoder supporting LC, Main, LTP, SBR, -PS, and DAB+." msgstr "" -#: gnu/packages/audio.scm:1855 +#: gnu/packages/audio.scm:1875 msgid "Faust is a programming language for realtime audio signal processing." msgstr "" -#: gnu/packages/audio.scm:1919 +#: gnu/packages/audio.scm:1939 msgid "" "FreePats is a project to create a free and open set of GUS compatible\n" "patches that can be used with softsynths such as Timidity and WildMidi." msgstr "" -#: gnu/packages/audio.scm:1972 +#: gnu/packages/audio.scm:1992 msgid "" "Guitarix is a virtual guitar amplifier running JACK.\n" "Guitarix takes the signal from your guitar as a mono-signal from your sound\n" @@ -400,7 +400,7 @@ msgid "" "auto-wah." msgstr "" -#: gnu/packages/audio.scm:2028 +#: gnu/packages/audio.scm:2048 msgid "" "Rakarrack is a richly featured multi-effects processor emulating a\n" "guitar effects pedalboard. Effects include compressor, expander, noise gate,\n" @@ -412,14 +412,14 @@ msgid "" "well suited to all musical instruments and vocals." msgstr "" -#: gnu/packages/audio.scm:2084 +#: gnu/packages/audio.scm:2104 msgid "" "IR is a low-latency, real-time, high performance signal convolver\n" "especially for creating reverb effects. It supports impulse responses with 1,\n" "2 or 4 channels, in any soundfile format supported by libsndfile." msgstr "" -#: gnu/packages/audio.scm:2124 +#: gnu/packages/audio.scm:2144 msgid "" "JACK is a low-latency audio server. It can connect a number of\n" "different applications to an audio device, as well as allowing them to share\n" @@ -429,20 +429,20 @@ msgid "" "synchronous execution of all clients, and low latency operation." msgstr "" -#: gnu/packages/audio.scm:2220 +#: gnu/packages/audio.scm:2240 msgid "" "Jalv is a simple but fully featured LV2 host for JACK. It runs LV2\n" "plugins and exposes their ports as JACK ports, essentially making any LV2\n" "plugin function as a JACK application." msgstr "" -#: gnu/packages/audio.scm:2266 +#: gnu/packages/audio.scm:2286 msgid "" "LADSPA is a standard that allows software audio processors and effects\n" "to be plugged into a wide range of audio synthesis and recording packages." msgstr "" -#: gnu/packages/audio.scm:2318 +#: gnu/packages/audio.scm:2338 msgid "" "LASH is a session management system for audio applications. It allows\n" "you to save and restore audio sessions consisting of multiple interconneced\n" @@ -450,7 +450,7 @@ msgid "" "connections between them." msgstr "" -#: gnu/packages/audio.scm:2341 +#: gnu/packages/audio.scm:2361 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is\n" "designed to improve headphone listening of stereo audio records. Recommended\n" @@ -458,7 +458,7 @@ msgid "" "essential distortions." msgstr "" -#: gnu/packages/audio.scm:2364 +#: gnu/packages/audio.scm:2384 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and\n" "plugins is designed to improve headphone listening of stereo audio records.\n" @@ -467,13 +467,13 @@ msgid "" "with applications that support them (e.g. PulseAudio)." msgstr "" -#: gnu/packages/audio.scm:2390 +#: gnu/packages/audio.scm:2410 msgid "" "liblo is a lightweight library that provides an easy to use\n" "implementation of the Open Sound Control (@dfn{OSC}) protocol." msgstr "" -#: gnu/packages/audio.scm:2426 +#: gnu/packages/audio.scm:2446 msgid "" "RtAudio is a set of C++ classes that provides a common API for real-time\n" "audio input/output. It was designed with the following objectives:\n" @@ -492,13 +492,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/audio.scm:2462 +#: gnu/packages/audio.scm:2482 msgid "" "This package provides bindings for PortAudio v19, the\n" "cross-platform audio input/output stream library." msgstr "" -#: gnu/packages/audio.scm:2489 +#: gnu/packages/audio.scm:2509 msgid "" "Pyliblo is a Python wrapper for the liblo Open Sound Control (OSC)\n" "library. It supports almost the complete functionality of liblo, allowing you\n" @@ -506,19 +506,19 @@ msgid "" "included are the command line utilities @code{send_osc} and @code{dump_osc}." msgstr "" -#: gnu/packages/audio.scm:2526 +#: gnu/packages/audio.scm:2546 msgid "" "This package provides python bindings for libsndfile based on\n" "CFFI and NumPy." msgstr "" -#: gnu/packages/audio.scm:2544 +#: gnu/packages/audio.scm:2564 msgid "" "This package provides a python API to read and write MIDI\n" "files." msgstr "" -#: gnu/packages/audio.scm:2581 +#: gnu/packages/audio.scm:2601 msgid "" "@command{audio-to-midi} converts audio files to multichannel\n" "MIDI files. It accomplishes this by performing FFTs on all channels of the\n" @@ -528,14 +528,14 @@ msgid "" "frequencies. This data is then formatted to MIDI and written to disk." msgstr "" -#: gnu/packages/audio.scm:2624 +#: gnu/packages/audio.scm:2644 msgid "" "Lilv is a C library to make the use of LV2 plugins as simple as possible\n" "for applications. Lilv is the successor to SLV2, rewritten to be\n" "significantly faster and have minimal dependencies." msgstr "" -#: gnu/packages/audio.scm:2652 +#: gnu/packages/audio.scm:2672 msgid "" "LV2 is an open specification for audio plugins and host applications.\n" "At its core, LV2 is a simple stable interface, accompanied by extensions which\n" @@ -543,22 +543,22 @@ msgid "" "software." msgstr "" -#: gnu/packages/audio.scm:2688 +#: gnu/packages/audio.scm:2708 msgid "An LV2 port of the mda Piano VSTi." msgstr "" -#: gnu/packages/audio.scm:2702 +#: gnu/packages/audio.scm:2722 msgid "An LV2 port of the mda EPiano VSTi." msgstr "" -#: gnu/packages/audio.scm:2732 +#: gnu/packages/audio.scm:2752 msgid "" "The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and\n" "extensions into easy to use C++ classes. It is the successor of\n" "lv2-c++-tools." msgstr "" -#: gnu/packages/audio.scm:2774 +#: gnu/packages/audio.scm:2794 msgid "" "OpenAL provides capabilities for playing audio in a virtual 3D\n" "environment. Distance attenuation, doppler shift, and directional sound\n" @@ -568,36 +568,36 @@ msgid "" "buffers, and audio capture." msgstr "" -#: gnu/packages/audio.scm:2805 +#: gnu/packages/audio.scm:2825 msgid "freealut is the OpenAL Utility Toolkit." msgstr "" -#: gnu/packages/audio.scm:2837 +#: gnu/packages/audio.scm:2857 msgid "" "Patchage is a modular patch bay for audio and MIDI systems based on JACK\n" "and ALSA." msgstr "" -#: gnu/packages/audio.scm:2862 +#: gnu/packages/audio.scm:2882 msgid "" "The Portable C Audio Library (pcaudiolib) provides a C@tie{}API to\n" "different audio devices such as ALSA or PulseAudio." msgstr "" -#: gnu/packages/audio.scm:2889 +#: gnu/packages/audio.scm:2909 msgid "" "Control a Jack server. Allows you to plug various sources\n" "into various outputs and to start, stop and configure jackd" msgstr "" -#: gnu/packages/audio.scm:2921 +#: gnu/packages/audio.scm:2941 msgid "" "QJackRcd is a simple graphical stereo recorder for JACK\n" "supporting silence processing for automatic pause, file splitting, and\n" "background file post-processing." msgstr "" -#: gnu/packages/audio.scm:3029 +#: gnu/packages/audio.scm:3049 msgid "" "SuperCollider is a synthesis engine (@code{scsynth} or\n" "@code{supernova}) and programming language (@code{sclang}). It can be used\n" @@ -609,17 +609,17 @@ msgid "" "using Guix System." msgstr "" -#: gnu/packages/audio.scm:3057 +#: gnu/packages/audio.scm:3077 msgid "This package provides libshout plus IDJC extensions." msgstr "" -#: gnu/packages/audio.scm:3083 +#: gnu/packages/audio.scm:3103 msgid "" "Raul (Real-time Audio Utility Library) is a C++ utility library primarily\n" "aimed at audio/musical applications." msgstr "" -#: gnu/packages/audio.scm:3119 +#: gnu/packages/audio.scm:3139 msgid "" "This package contains the @command{resample} and\n" "@command{windowfilter} command line utilities. The @command{resample} command\n" @@ -628,26 +628,26 @@ msgid "" "filters using the so-called @emph{window method}." msgstr "" -#: gnu/packages/audio.scm:3160 +#: gnu/packages/audio.scm:3180 msgid "" "Rubber Band is a library and utility program that permits changing the\n" "tempo and pitch of an audio recording independently of one another." msgstr "" -#: gnu/packages/audio.scm:3184 +#: gnu/packages/audio.scm:3204 msgid "" "RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut, and API specific\n" "classes) that provide a common cross-platform API for realtime MIDI\n" "input/output." msgstr "" -#: gnu/packages/audio.scm:3210 +#: gnu/packages/audio.scm:3230 msgid "" "Sratom is a library for serialising LV2 atoms to/from RDF, particularly\n" "the Turtle syntax." msgstr "" -#: gnu/packages/audio.scm:3238 +#: gnu/packages/audio.scm:3258 msgid "" "Suil is a lightweight C library for loading and wrapping LV2 plugin UIs.\n" "\n" @@ -659,13 +659,13 @@ msgid "" "Suil currently supports every combination of Gtk, Qt, and X11." msgstr "" -#: gnu/packages/audio.scm:3270 +#: gnu/packages/audio.scm:3290 msgid "" "@code{libebur128} is a C library that implements the EBU R 128 standard\n" "for loudness normalisation." msgstr "" -#: gnu/packages/audio.scm:3324 +#: gnu/packages/audio.scm:3344 msgid "" "TiMidity++ is a software synthesizer. It can play MIDI files by\n" "converting them into PCM waveform data; give it a MIDI data along with digital\n" @@ -674,33 +674,33 @@ msgid "" "disks as various audio file formats." msgstr "" -#: gnu/packages/audio.scm:3364 +#: gnu/packages/audio.scm:3384 msgid "" "Vamp is an audio processing plugin system for plugins that extract\n" "descriptive information from audio data — typically referred to as audio\n" "analysis plugins or audio feature extraction plugins." msgstr "" -#: gnu/packages/audio.scm:3408 +#: gnu/packages/audio.scm:3428 msgid "" "SBSMS (Subband Sinusoidal Modeling Synthesis) is software for time\n" "stretching and pitch scaling of audio. This package contains the library." msgstr "" -#: gnu/packages/audio.scm:3435 +#: gnu/packages/audio.scm:3455 msgid "" "@code{libkeyfinder} is a small C++11 library for estimating the musical\n" "key of digital audio." msgstr "" -#: gnu/packages/audio.scm:3465 +#: gnu/packages/audio.scm:3485 msgid "" "WavPack is an audio compression format with lossless, lossy and hybrid\n" "compression modes. This package contains command-line programs and library to\n" "encode and decode wavpack files." msgstr "" -#: gnu/packages/audio.scm:3486 +#: gnu/packages/audio.scm:3506 msgid "" "Libmodplug renders mod music files as raw audio data, for playing or\n" "conversion. mod, .s3m, .it, .xm, and a number of lesser-known formats are\n" @@ -708,21 +708,21 @@ msgid "" "surround and reverb." msgstr "" -#: gnu/packages/audio.scm:3507 +#: gnu/packages/audio.scm:3527 msgid "" "Libxmp is a library that renders module files to PCM data. It supports\n" "over 90 mainstream and obscure module formats including Protracker (MOD),\n" "Scream Tracker 3 (S3M), Fast Tracker II (XM), and Impulse Tracker (IT)." msgstr "" -#: gnu/packages/audio.scm:3531 +#: gnu/packages/audio.scm:3551 msgid "" "Xmp is a portable module player that plays over 90 mainstream and\n" "obscure module formats, including Protracker MOD, Fasttracker II XM, Scream\n" "Tracker 3 S3M and Impulse Tracker IT files." msgstr "" -#: gnu/packages/audio.scm:3556 +#: gnu/packages/audio.scm:3576 msgid "" "SoundTouch is an audio processing library for changing the tempo, pitch\n" "and playback rates of audio streams or audio files. It is intended for\n" @@ -730,7 +730,7 @@ msgid "" "control functionality, or just for playing around with the sound effects." msgstr "" -#: gnu/packages/audio.scm:3595 +#: gnu/packages/audio.scm:3615 msgid "" "SoX (Sound eXchange) is a command line utility that can convert\n" "various formats of computer audio files to other formats. It can also\n" @@ -738,60 +738,60 @@ msgid "" "can play and record audio files." msgstr "" -#: gnu/packages/audio.scm:3620 +#: gnu/packages/audio.scm:3640 msgid "" "The SoX Resampler library (libsoxr) performs one-dimensional sample-rate\n" "conversion. It may be used, for example, to resample PCM-encoded audio." msgstr "" -#: gnu/packages/audio.scm:3643 +#: gnu/packages/audio.scm:3663 msgid "" "TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder based on\n" "tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code and\n" "portions of LAME." msgstr "" -#: gnu/packages/audio.scm:3699 +#: gnu/packages/audio.scm:3719 msgid "" "PortAudio is a portable C/C++ audio I/O library providing a simple API\n" "to record and/or play sound using a callback function or a blocking read/write\n" "interface." msgstr "" -#: gnu/packages/audio.scm:3728 +#: gnu/packages/audio.scm:3748 msgid "" "Qsynth is a GUI front-end application for the FluidSynth SoundFont\n" "synthesizer written in C++." msgstr "" -#: gnu/packages/audio.scm:3767 +#: gnu/packages/audio.scm:3787 msgid "" "RSound allows you to send audio from an application and transfer it\n" "directly to a different computer on your LAN network. It is an audio daemon\n" "with a much different focus than most other audio daemons." msgstr "" -#: gnu/packages/audio.scm:3797 +#: gnu/packages/audio.scm:3817 msgid "" "XJackFreak is an audio analysis and equalizing tool for the Jack Audio\n" "Connection Kit. It can display the FFT of any input, modify it and output the\n" "result." msgstr "" -#: gnu/packages/audio.scm:3849 +#: gnu/packages/audio.scm:3869 msgid "" "Zita convolver is a C++ library providing a real-time convolution\n" "engine." msgstr "" -#: gnu/packages/audio.scm:3901 +#: gnu/packages/audio.scm:3921 msgid "" "Libzita-resampler is a C++ library for resampling audio signals. It is\n" "designed to be used within a real-time processing context, to be fast, and to\n" "provide high-quality sample rate conversion." msgstr "" -#: gnu/packages/audio.scm:3947 +#: gnu/packages/audio.scm:3967 msgid "" "Zita-alsa-pcmi is a C++ wrapper around the ALSA API. It provides easy\n" "access to ALSA PCM devices, taking care of the many functions required to\n" @@ -799,7 +799,7 @@ msgid "" "point audio data." msgstr "" -#: gnu/packages/audio.scm:3971 +#: gnu/packages/audio.scm:3991 msgid "" "Cuetools is a set of programs that are useful for manipulating\n" "and using CUE sheet (cue) files and Table of Contents (toc) files. CUE and TOC\n" @@ -807,14 +807,14 @@ msgid "" "machine-readable ASCII format." msgstr "" -#: gnu/packages/audio.scm:4000 +#: gnu/packages/audio.scm:4020 msgid "" "mp3guessenc is a command line utility that tries to detect the\n" "encoder used for an MPEG Layer III (MP3) file, as well as scan any MPEG audio\n" "file (any layer) and print a lot of useful information." msgstr "" -#: gnu/packages/audio.scm:4021 +#: gnu/packages/audio.scm:4041 msgid "" "shntool is a multi-purpose WAVE data processing and reporting\n" "utility. File formats are abstracted from its core, so it can process any file\n" @@ -823,46 +823,46 @@ msgid "" "use them split WAVE data into multiple files." msgstr "" -#: gnu/packages/audio.scm:4061 +#: gnu/packages/audio.scm:4081 msgid "" "Dcadec is a DTS Coherent Acoustics surround sound decoder\n" "with support for HD extensions." msgstr "" -#: gnu/packages/audio.scm:4098 +#: gnu/packages/audio.scm:4118 msgid "" "BS1770GAIN is a loudness scanner compliant with ITU-R BS.1770 and its\n" "flavors EBU R128, ATSC A/85, and ReplayGain 2.0. It helps normalizing the\n" "loudness of audio and video files to the same level." msgstr "" -#: gnu/packages/audio.scm:4130 +#: gnu/packages/audio.scm:4150 msgid "" "An easy to use audio filtering library made from webrtc\n" "code, used in @code{libtoxcore}." msgstr "" -#: gnu/packages/audio.scm:4183 +#: gnu/packages/audio.scm:4203 msgid "" "This C library provides an encoder and a decoder for the GSM\n" "06.10 RPE-LTP lossy speech compression algorithm." msgstr "" -#: gnu/packages/audio.scm:4206 +#: gnu/packages/audio.scm:4226 msgid "" "This package contains wrappers for accessing the ALSA API from Python.\n" "It is currently fairly complete for PCM devices, and has some support for\n" "mixers." msgstr "" -#: gnu/packages/audio.scm:4230 +#: gnu/packages/audio.scm:4250 msgid "" "This package provides an encoder for the LDAC\n" "high-resolution Bluetooth audio streaming codec for streaming at up to 990\n" "kbps at 24 bit/96 kHz." msgstr "" -#: gnu/packages/audio.scm:4274 +#: gnu/packages/audio.scm:4294 msgid "" "This project is a rebirth of a direct integration between\n" "Bluez and ALSA. Since Bluez >= 5, the built-in integration has been removed\n" @@ -875,14 +875,14 @@ msgid "" "on the ALSA software PCM plugin." msgstr "" -#: gnu/packages/audio.scm:4340 +#: gnu/packages/audio.scm:4360 msgid "" "Snd is a sound editor modelled loosely after Emacs. It can be\n" "customized and extended using either the s7 Scheme implementation (included in\n" "the Snd sources), Ruby, or Forth." msgstr "" -#: gnu/packages/audio.scm:4369 +#: gnu/packages/audio.scm:4389 msgid "" "Noise Repellent is an LV2 plugin to reduce noise. It has\n" "the following features:\n" @@ -902,31 +902,31 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/audio.scm:4436 +#: gnu/packages/audio.scm:4456 msgid "" "RNNoise is a library that uses deep learning to apply\n" "noise suppression to audio sources with voice presence. This package provides\n" "an LV2 audio plugin." msgstr "" -#: gnu/packages/audio.scm:4480 +#: gnu/packages/audio.scm:4500 msgid "" "@code{cli-visualizer} displays fast-Fourier\n" "transforms (FFTs) of the sound being played, as well as other graphical\n" "representations." msgstr "" -#: gnu/packages/audio.scm:4530 +#: gnu/packages/audio.scm:4550 msgid "" "C.A.V.A. is a bar audio spectrum visualizer for the terminal\n" "using ALSA, MPD, PulseAudio, or a FIFO buffer as its input." msgstr "" -#: gnu/packages/audio.scm:4564 +#: gnu/packages/audio.scm:4584 msgid "Fluid-3 is Frank Wen's pro-quality GM soundfont." msgstr "" -#: gnu/packages/audio.scm:4586 +#: gnu/packages/audio.scm:4606 msgid "" "FDK is a library for encoding and decoding Advanced Audio\n" "Coding (AAC) format audio, developed by Fraunhofer IIS, and included as part of\n" @@ -937,20 +937,20 @@ msgid "" " surround)." msgstr "" -#: gnu/packages/audio.scm:4626 +#: gnu/packages/audio.scm:4646 msgid "" "OpenShot Audio Library (libopenshot-audio) allows\n" "high-quality editing and playback of audio, and is based on the JUCE\n" "library." msgstr "" -#: gnu/packages/audio.scm:4652 +#: gnu/packages/audio.scm:4672 msgid "" "FAudio is an XAudio reimplementation that focuses solely on\n" "developing fully accurate DirectX Audio runtime libraries." msgstr "" -#: gnu/packages/audio.scm:4679 +#: gnu/packages/audio.scm:4699 msgid "" "Gnaural is a programmable auditory binaural beat synthesizer\n" "intended to be used for brainwave entrainment. Gnaural supports creation of\n" @@ -959,20 +959,20 @@ msgid "" "other Gnaural instances, allowing synchronous sessions between many users." msgstr "" -#: gnu/packages/audio.scm:4714 +#: gnu/packages/audio.scm:4734 msgid "" "DarkIce is a live audio streamer. It takes audio input from\n" "a sound card, encodes it into Ogg Vorbis and/or mp3, and sends the audio\n" "stream to one or more IceCast and/or ShoutCast servers." msgstr "" -#: gnu/packages/audio.scm:4738 +#: gnu/packages/audio.scm:4758 msgid "" "Libltc is a POSIX-C Library for handling\n" "@dfn{Linear/Longitudinal Time Code} (LTC) data." msgstr "" -#: gnu/packages/audio.scm:4772 +#: gnu/packages/audio.scm:4792 msgid "" "TTA performs lossless compression on multichannel 8,16 and 24 bits\n" "data of the Wav audio files. Being lossless means that no data-\n" @@ -983,14 +983,14 @@ msgid "" "supports both of ID3v1/v2 and APEv2 tags." msgstr "" -#: gnu/packages/audio.scm:4805 +#: gnu/packages/audio.scm:4825 msgid "" "@code{libsoundio} is a C library providing audio input and\n" "output. The API is suitable for real-time software such as digital audio\n" "workstations as well as consumer software such as music players." msgstr "" -#: gnu/packages/audio.scm:4831 +#: gnu/packages/audio.scm:4851 msgid "" "Redkite is a small GUI toolkit developed in C++17 and\n" "inspired from other well known GUI toolkits such as Qt and GTK. It is\n" @@ -999,7 +999,7 @@ msgid "" "as is the case with audio plugins." msgstr "" -#: gnu/packages/audio.scm:4903 +#: gnu/packages/audio.scm:4923 msgid "" "Carla is a modular audio plugin host, with features like\n" "transport control, automation of parameters via MIDI CC and remote control\n" @@ -1008,7 +1008,7 @@ msgid "" "default and preferred audio driver but also supports native drivers like ALSA." msgstr "" -#: gnu/packages/audio.scm:4939 +#: gnu/packages/audio.scm:4959 msgid "" "Ecasound is a software package designed for multitrack audio\n" "processing. It can be used for simple tasks like audio playback, recording and\n" @@ -1020,28 +1020,28 @@ msgid "" "in the package." msgstr "" -#: gnu/packages/audio.scm:4977 +#: gnu/packages/audio.scm:4997 msgid "" "libaudec is a wrapper library over ffmpeg, sndfile and\n" "libsamplerate for reading and resampling audio files, based on Robin Gareus'\n" "@code{audio_decoder} code." msgstr "" -#: gnu/packages/audio.scm:5007 +#: gnu/packages/audio.scm:5027 msgid "" "lv2lint is an LV2 lint-like tool that checks whether a\n" "given plugin and its UI(s) match up with the provided metadata and adhere\n" "to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5041 +#: gnu/packages/audio.scm:5061 msgid "" "lv2toweb allows the user to create an xhtml page with information\n" "about the given LV2 plugin, provided that the plugin and its UI(s) match up\n" "with the provided metadata and adhere to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5069 +#: gnu/packages/audio.scm:5089 msgid "" "ZToolkit (Ztk) is a cross-platform GUI toolkit heavily\n" "inspired by GTK. It handles events and low level drawing on behalf of\n" @@ -1051,7 +1051,7 @@ msgid "" "minimum." msgstr "" -#: gnu/packages/audio.scm:5102 +#: gnu/packages/audio.scm:5122 msgid "" "libInstPatch is a library for processing digital sample based MIDI\n" "instrument \"patch\" files. The types of files libInstPatch supports are used\n" @@ -1060,28 +1060,28 @@ msgid "" "edited, converted, compressed and saved." msgstr "" -#: gnu/packages/audio.scm:5149 +#: gnu/packages/audio.scm:5169 msgid "" "The LSP DSP library provides a set of functions that perform\n" "SIMD-optimized computing on several hardware architectures. All functions\n" "currently operate on IEEE-754 single-precision floating-point numbers." msgstr "" -#: gnu/packages/audio.scm:5180 +#: gnu/packages/audio.scm:5200 msgid "" "Codec 2 is a speech codec designed for communications quality speech\n" "between 700 and 3200 bit/s. The main application is low bandwidth HF/VHF\n" "digital radio." msgstr "" -#: gnu/packages/audio.scm:5206 +#: gnu/packages/audio.scm:5226 msgid "" "The mbelib library provides support for the 7200x4400 bit/s codec used\n" "in P25 Phase 1, the 7100x4400 bit/s codec used in ProVoice and the @emph{Half\n" "Rate} 3600x2250 bit/s vocoder used in various radio systems." msgstr "" -#: gnu/packages/audio.scm:5299 +#: gnu/packages/audio.scm:5319 msgid "" "Ableton Link is a C++ library that synchronizes musical beat, tempo, and phase\n" "across multiple applications running on one or more devices. Applications on devices\n" @@ -1090,20 +1090,20 @@ msgid "" "while still staying in time." msgstr "" -#: gnu/packages/audio.scm:5360 +#: gnu/packages/audio.scm:5380 msgid "" "Butt is a tool to stream audio to a ShoutCast or\n" "Icecast server." msgstr "" -#: gnu/packages/audio.scm:5406 +#: gnu/packages/audio.scm:5426 msgid "" "siggen is a set of tools for imitating a laboratory signal\n" "generator, generating audio signals out of Linux's /dev/dsp audio\n" "device. There is support for mono and/or stereo and 8 or 16 bit samples." msgstr "" -#: gnu/packages/audio.scm:5453 +#: gnu/packages/audio.scm:5473 msgid "" "@code{python-pysox} is a wrapper around the @command{sox}\n" "command line tool. The API offers @code{Transformer} and @code{Combiner}\n" @@ -1113,7 +1113,7 @@ msgid "" "and much more." msgstr "" -#: gnu/packages/audio.scm:5492 +#: gnu/packages/audio.scm:5512 msgid "" "@code{python-resampy} implements the band-limited sinc interpolation\n" "method for sampling rate conversion as described by Julius O. Smith at the\n" @@ -1121,34 +1121,34 @@ msgid "" "Home Page}." msgstr "" -#: gnu/packages/audio.scm:5528 +#: gnu/packages/audio.scm:5548 msgid "" "@code{librosa} is a python package for music and audio analysis. It\n" "provides the building blocks necessary to create music information retrieval\n" "systems." msgstr "" -#: gnu/packages/audio.scm:5561 +#: gnu/packages/audio.scm:5581 msgid "" "MDA-LV2 is an LV2 port of the MDA plugins. It includes effects and a few\n" "instrument plugins." msgstr "" -#: gnu/packages/audio.scm:5593 +#: gnu/packages/audio.scm:5613 msgid "" "The Odio SACD shared library is a decoding engine which takes a Super\n" "Audio CD source and extracts a 24-bit high resolution WAV file. It handles\n" "both DST and DSD streams." msgstr "" -#: gnu/packages/audio.scm:5618 +#: gnu/packages/audio.scm:5638 msgid "" "Odio SACD is a command-line application which takes a Super Audio CD\n" "source and extracts a 24-bit high resolution WAV file. It handles both DST\n" "and DSD streams." msgstr "" -#: gnu/packages/backup.scm:155 +#: gnu/packages/backup.scm:165 msgid "" "Duplicity backs up directories by producing encrypted tar-format volumes\n" "and uploading them to a remote or local file server. Because duplicity uses\n" @@ -1158,7 +1158,7 @@ msgid "" "spying and/or modification by the server." msgstr "" -#: gnu/packages/backup.scm:180 +#: gnu/packages/backup.scm:190 msgid "" "Par2cmdline uses Reed-Solomon error-correcting codes to\n" "generate and verify PAR2 recovery files. These files can be distributed\n" @@ -1170,7 +1170,7 @@ msgid "" "can even repair them." msgstr "" -#: gnu/packages/backup.scm:219 +#: gnu/packages/backup.scm:229 msgid "" "Hdup2 is a backup utility, its aim is to make backup really simple. The\n" "backup scheduling is done by means of a cron job. It supports an\n" @@ -1178,7 +1178,7 @@ msgid "" "backups (called chunks) to allow easy burning to CD/DVD." msgstr "" -#: gnu/packages/backup.scm:316 +#: gnu/packages/backup.scm:326 msgid "" "Libarchive provides a flexible interface for reading and writing\n" "archives in various formats such as tar and cpio. Libarchive also supports\n" @@ -1189,7 +1189,7 @@ msgid "" "random access nor for in-place modification." msgstr "" -#: gnu/packages/backup.scm:380 +#: gnu/packages/backup.scm:390 msgid "" "Rdup is a utility inspired by rsync and the plan9 way of doing backups.\n" "Rdup itself does not backup anything, it only print a list of absolute\n" @@ -1197,7 +1197,7 @@ msgid "" "list and implement the backup strategy." msgstr "" -#: gnu/packages/backup.scm:419 +#: gnu/packages/backup.scm:429 msgid "" "SnapRAID backs up files stored across multiple storage devices, such as\n" "disk arrays, in an efficient way reminiscent of its namesake @acronym{RAID,\n" @@ -1223,7 +1223,7 @@ msgid "" "remain fully idle, saving power and producing less noise." msgstr "" -#: gnu/packages/backup.scm:469 +#: gnu/packages/backup.scm:479 msgid "" "Btar is a tar-compatible archiver which allows arbitrary compression and\n" "ciphering, redundancy, differential backup, indexed extraction, multicore\n" @@ -1231,7 +1231,7 @@ msgid "" "errors." msgstr "" -#: gnu/packages/backup.scm:496 +#: gnu/packages/backup.scm:506 msgid "" "Rdiff-backup backs up one directory to another, possibly over a network.\n" "The target directory ends up a copy of the source directory, but extra reverse\n" @@ -1246,7 +1246,7 @@ msgid "" "rdiff-backup is easy to use and settings have sensible defaults." msgstr "" -#: gnu/packages/backup.scm:532 +#: gnu/packages/backup.scm:542 msgid "" "rsnapshot is a file system snapshot utility based on rsync.\n" "rsnapshot makes it easy to make periodic snapshots of local machines, and\n" @@ -1254,7 +1254,7 @@ msgid "" "rsnapshot uses hard links to deduplicate identical files." msgstr "" -#: gnu/packages/backup.scm:610 +#: gnu/packages/backup.scm:620 msgid "" "Libchop is a set of utilities and library for data backup and\n" "distributed storage. Its main application is @command{chop-backup}, an\n" @@ -1265,17 +1265,17 @@ msgid "" "detection, and lossless compression." msgstr "" -#: gnu/packages/backup.scm:740 +#: gnu/packages/backup.scm:750 msgid "" "Borg is a deduplicating backup program. Optionally, it\n" "supports compression and authenticated encryption. The main goal of Borg is to\n" "provide an efficient and secure way to backup data. The data deduplication\n" "technique used makes Borg suitable for daily backups since only changes are\n" -"stored. The authenticated encryption technique makes it suitable for backups\n" -"to not fully trusted targets. Borg is a fork of Attic." +"stored. The authenticated encryption technique makes it suitable for\n" +"storing backups on untrusted computers." msgstr "" -#: gnu/packages/backup.scm:771 +#: gnu/packages/backup.scm:781 msgid "" "wimlib is a C library and set of command-line utilities for\n" "creating, modifying, extracting, and mounting archives in the Windows Imaging\n" @@ -1283,14 +1283,14 @@ msgid "" "NTFS volumes using @code{ntfs-3g}, preserving NTFS-specific attributes." msgstr "" -#: gnu/packages/backup.scm:879 +#: gnu/packages/backup.scm:889 msgid "" "With dirvish you can maintain a set of complete images of your\n" "file systems with unattended creation and expiration. A dirvish backup vault\n" "is like a time machine for your data." msgstr "" -#: gnu/packages/backup.scm:974 +#: gnu/packages/backup.scm:984 msgid "" "Restic is a program that does backups right and was designed\n" "with the following principles in mind:\n" @@ -1322,7 +1322,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/backup.scm:1025 +#: gnu/packages/backup.scm:1035 msgid "" "ZBackup is a globally-deduplicating backup tool, based on the\n" "ideas found in Rsync. Feed a large @file{.tar} into it, and it will\n" @@ -1335,7 +1335,7 @@ msgid "" "is format-agnostic, so you can feed virtually any files to it." msgstr "" -#: gnu/packages/backup.scm:1061 +#: gnu/packages/backup.scm:1071 msgid "" "Dump examines files in a file system, determines which ones\n" "need to be backed up, and copies those files to a specified disk, tape or\n" @@ -1346,14 +1346,44 @@ msgid "" "interactive mode." msgstr "" -#: gnu/packages/backup.scm:1105 +#: gnu/packages/backup.scm:1131 +msgid "" +"Btrbk is a backup tool for Btrfs subvolumes, taking\n" +"advantage of Btrfs specific capabilities to create atomic snapshots and\n" +"transfer them incrementally to your backup locations. The source and target\n" +"locations are specified in a config file, which allows easily configuring\n" +"simple scenarios like e.g. a @i{laptop with locally attached backup disks}, as\n" +"well as more complex ones, e.g. a @i{server receiving backups from several\n" +"hosts via SSH, with different retention policy}. It has features such as:\n" +"@itemize\n" +"@item atomic snapshots\n" +"@item incremental backups\n" +"@item flexible retention policy\n" +"@item backups to multiple destinations\n" +"@item transfer via SSH\n" +"@item resume backups (for removable and mobile devices)\n" +"@item archive to offline storage\n" +"@item encrypted backups to non-btrfs storage\n" +"@item wildcard subvolumes (useful for Docker and LXC containers)\n" +"@item transaction log\n" +"@item comprehensive list and statistics output\n" +"@item resolve and trace Btrfs parent-child and received-from relationships\n" +"@item list file changes between backups\n" +"@item calculate accurate disk space usage based on block regions.\n" +"@end itemize\n" +"Btrbk is designed to run as a cron job for triggering periodic snapshots and\n" +"backups, as well as from the command line (e.g. for instantly creating\n" +"additional snapshots)." +msgstr "" + +#: gnu/packages/backup.scm:1194 msgid "" "Burp is a network backup and restore program. It attempts\n" "to reduce network traffic and the amount of space that is used by each\n" "backup." msgstr "" -#: gnu/packages/backup.scm:1136 +#: gnu/packages/backup.scm:1225 msgid "" "Disarchive can disassemble software archives into data\n" "and metadata. The goal is to create a small amount of metadata that\n" @@ -1363,7 +1393,7 @@ msgid "" "compression parameters used by Gzip." msgstr "" -#: gnu/packages/backup.scm:1181 +#: gnu/packages/backup.scm:1270 msgid "" "borgmatic is simple, configuration-driven backup software for servers\n" "and workstations. Protect your files with client-side encryption. Backup\n" @@ -1371,6 +1401,14 @@ msgid "" "borgmatic is powered by borg." msgstr "" +#: gnu/packages/backup.scm:1330 +msgid "" +"Vorta is a graphical backup client based on the Borg backup\n" +"tool. It supports the use of remote backup repositories. It can perform\n" +"scheduled backups, and has a graphical tool for browsing and extracting the Borg\n" +"archives." +msgstr "" + #: gnu/packages/base.scm:98 msgid "" "GNU Hello prints the message \"Hello, world!\" and then exits. It\n" @@ -1455,7 +1493,7 @@ msgid "" "change. GNU make offers many powerful extensions over the standard utility." msgstr "" -#: gnu/packages/base.scm:550 +#: gnu/packages/base.scm:558 msgid "" "GNU Binutils is a collection of tools for working with binary files.\n" "Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler.\n" @@ -1465,14 +1503,14 @@ msgid "" "included." msgstr "" -#: gnu/packages/base.scm:694 +#: gnu/packages/base.scm:685 msgid "" "The linker wrapper (or @code{ld-wrapper}) wraps the linker to add any\n" "missing @code{-rpath} flags, and to detect any misuse of libraries outside of\n" "the store." msgstr "" -#: gnu/packages/base.scm:930 +#: gnu/packages/base.scm:921 msgid "" "Any Unix-like operating system needs a C library: the library which\n" "defines the \"system calls\" and other basic facilities such as open, malloc,\n" @@ -1482,21 +1520,21 @@ msgid "" "with the Linux kernel." msgstr "" -#: gnu/packages/base.scm:1057 +#: gnu/packages/base.scm:1048 msgid "" "This package provides all the locales supported by the GNU C Library,\n" "more than 400 in total. To use them set the @code{LOCPATH} environment variable\n" "to the @code{share/locale} sub-directory of this package." msgstr "" -#: gnu/packages/base.scm:1206 +#: gnu/packages/base.scm:1198 msgid "" "The which program finds the location of executables in PATH, with a\n" "variety of options. It is an alternative to the shell \"type\" built-in\n" "command." msgstr "" -#: gnu/packages/base.scm:1329 +#: gnu/packages/base.scm:1321 msgid "" "The Time Zone Database (often called tz or zoneinfo)\n" "contains code and data that represent the history of local time for many\n" @@ -1505,14 +1543,14 @@ msgid "" "and daylight-saving rules." msgstr "" -#: gnu/packages/base.scm:1367 +#: gnu/packages/base.scm:1359 msgid "" "libiconv provides an implementation of the iconv function for systems\n" "that lack it. iconv is used to convert between character encodings in a\n" "program. It supports a wide variety of different encodings." msgstr "" -#: gnu/packages/bittorrent.scm:131 +#: gnu/packages/bittorrent.scm:135 msgid "" "Transmission is a BitTorrent client that comes with graphical,\n" "textual, and Web user interfaces. Transmission also has a daemon for\n" @@ -1520,54 +1558,54 @@ msgid "" "DHT, µTP, PEX and Magnet Links." msgstr "" -#: gnu/packages/bittorrent.scm:165 +#: gnu/packages/bittorrent.scm:169 msgid "" "transmission-remote-gtk is a GTK client for remote management\n" "of the Transmission BitTorrent client, using its HTTP RPC protocol." msgstr "" -#: gnu/packages/bittorrent.scm:187 +#: gnu/packages/bittorrent.scm:191 msgid "" "LibTorrent is a BitTorrent library used by and developed in parallel\n" "with the BitTorrent client rtorrent. It is written in C++ with emphasis on\n" "speed and efficiency." msgstr "" -#: gnu/packages/bittorrent.scm:215 +#: gnu/packages/bittorrent.scm:219 msgid "" "rTorrent is a BitTorrent client with an ncurses interface. It supports\n" "full encryption, DHT, PEX, and Magnet Links. It can also be controlled via\n" "XML-RPC over SCGI." msgstr "" -#: gnu/packages/bittorrent.scm:249 +#: gnu/packages/bittorrent.scm:253 msgid "" "Tremc is a console client, with a curses interface, for the\n" "Transmission BitTorrent daemon." msgstr "" -#: gnu/packages/bittorrent.scm:290 +#: gnu/packages/bittorrent.scm:294 msgid "" "Transmission-remote-cli is a console client, with a curses\n" "interface, for the Transmission BitTorrent daemon. This package is no longer\n" "maintained upstream." msgstr "" -#: gnu/packages/bittorrent.scm:340 +#: gnu/packages/bittorrent.scm:345 msgid "" "Aria2 is a lightweight, multi-protocol & multi-source command-line\n" "download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and Metalink.\n" "Aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces." msgstr "" -#: gnu/packages/bittorrent.scm:374 +#: gnu/packages/bittorrent.scm:381 msgid "" "uGet is portable download manager with GTK+ interface supporting\n" "HTTP, HTTPS, BitTorrent and Metalink, supporting multi-connection\n" "downloads, download scheduling, download rate limiting." msgstr "" -#: gnu/packages/bittorrent.scm:406 +#: gnu/packages/bittorrent.scm:413 msgid "" "mktorrent is a simple command-line utility to create BitTorrent\n" "@dfn{metainfo} files, often known simply as @dfn{torrents}, from both single\n" @@ -1577,14 +1615,14 @@ msgid "" "and will take advantage of multiple processor cores where possible." msgstr "" -#: gnu/packages/bittorrent.scm:457 +#: gnu/packages/bittorrent.scm:472 msgid "" "libtorrent-rasterbar is a feature-complete C++ BitTorrent implementation\n" "focusing on efficiency and scalability. It runs on embedded devices as well as\n" "desktops." msgstr "" -#: gnu/packages/bittorrent.scm:508 +#: gnu/packages/bittorrent.scm:523 msgid "" "qBittorrent is a BitTorrent client programmed in C++/Qt that uses\n" "libtorrent (sometimes called libtorrent-rasterbar) by Arvid Norberg.\n" @@ -1594,7 +1632,7 @@ msgid "" "features." msgstr "" -#: gnu/packages/bittorrent.scm:580 +#: gnu/packages/bittorrent.scm:604 msgid "" "Deluge contains the common features to BitTorrent clients such as\n" "Protocol Encryption, DHT, Local Peer Discovery (LSD), Peer Exchange\n" @@ -1906,7 +1944,16 @@ msgid "" "functionality in a C++ iostream." msgstr "" -#: gnu/packages/compression.scm:1443 +#: gnu/packages/compression.scm:1416 +msgid "" +"Zopfli Compression Algorithm is a compression library\n" +"programmed in C to perform very good, but slow, deflate or zlib compression.\n" +"ZopfliCompress supports the deflate, gzip and zlib output formats. This\n" +"library can only compress, not decompress; existing zlib or deflate libraries\n" +"can decompress the data." +msgstr "" + +#: gnu/packages/compression.scm:1469 msgid "" "ZPAQ is a command-line archiver for realistic situations with\n" "many duplicate and already compressed files. It backs up only those files\n" @@ -1920,13 +1967,13 @@ msgid "" "or junctions, and always follows hard links." msgstr "" -#: gnu/packages/compression.scm:1545 +#: gnu/packages/compression.scm:1571 msgid "" "@command{unshield} is a tool and library for extracting @file{.cab}\n" " archives from InstallShield installers." msgstr "" -#: gnu/packages/compression.scm:1624 +#: gnu/packages/compression.scm:1650 msgid "" "Zstandard (@command{zstd}) is a lossless compression algorithm\n" "that combines very fast operation with a compression ratio comparable to that of\n" @@ -1936,7 +1983,7 @@ msgid "" "speed." msgstr "" -#: gnu/packages/compression.scm:1672 +#: gnu/packages/compression.scm:1698 msgid "" "Parallel Zstandard (PZstandard or @command{pzstd}) is a\n" "multi-threaded implementation of the @uref{http://zstd.net/, Zstandard\n" @@ -1949,7 +1996,7 @@ msgid "" "the actual decompression, the other input and output." msgstr "" -#: gnu/packages/compression.scm:1712 +#: gnu/packages/compression.scm:1738 msgid "" "Zip is a compression and file packaging/archive utility. Zip is useful\n" "for packaging a set of files for distribution, for archiving files, and for\n" @@ -1964,7 +2011,7 @@ msgid "" "Compression ratios of 2:1 to 3:1 are common for text files." msgstr "" -#: gnu/packages/compression.scm:1801 +#: gnu/packages/compression.scm:1827 msgid "" "UnZip is an extraction utility for archives compressed in .zip format,\n" "also called \"zipfiles\".\n" @@ -1975,7 +2022,7 @@ msgid "" "recreates the stored directory structure by default." msgstr "" -#: gnu/packages/compression.scm:1853 +#: gnu/packages/compression.scm:1879 msgid "" "Ziptime helps make @file{.zip} archives reproducible by replacing\n" "timestamps in the file header with a fixed time (1 January 2008).\n" @@ -1984,11 +2031,11 @@ msgid "" "@command{zip} to prevent it from storing the ``universal time'' field." msgstr "" -#: gnu/packages/compression.scm:1880 +#: gnu/packages/compression.scm:1906 msgid "ZZipLib is a library based on zlib for accessing zip files." msgstr "" -#: gnu/packages/compression.scm:1904 +#: gnu/packages/compression.scm:1930 msgid "" "Libzip is a C library for reading, creating, and modifying\n" "zip archives. Files can be added from data buffers, files, or compressed data\n" @@ -1996,7 +2043,7 @@ msgid "" "archive can be reverted." msgstr "" -#: gnu/packages/compression.scm:1937 +#: gnu/packages/compression.scm:1963 msgid "" "The main command is @command{aunpack} which extracts files\n" "from an archive. The other commands provided are @command{apack} (to create\n" @@ -2006,7 +2053,7 @@ msgid "" "of archives." msgstr "" -#: gnu/packages/compression.scm:1963 +#: gnu/packages/compression.scm:1989 msgid "" "Lunzip is a decompressor for files in the lzip compression format (.lz),\n" "written as a single small C tool with no dependencies. This makes it\n" @@ -2016,7 +2063,7 @@ msgid "" "Lunzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:1990 +#: gnu/packages/compression.scm:2016 msgid "" "Clzip is a compressor and decompressor for files in the lzip compression\n" "format (.lz), written as a single small C tool with no dependencies. This makes\n" @@ -2025,7 +2072,7 @@ msgid "" "Clzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:2018 +#: gnu/packages/compression.scm:2044 msgid "" "Lzlib is a C library for in-memory LZMA compression and decompression in\n" "the lzip format. It supports integrity checking of the decompressed data, and\n" @@ -2033,7 +2080,7 @@ msgid "" "corrupted input." msgstr "" -#: gnu/packages/compression.scm:2042 +#: gnu/packages/compression.scm:2068 msgid "" "Plzip is a massively parallel (multi-threaded) lossless data compressor\n" "and decompressor that uses the lzip file format (.lz). Files produced by plzip\n" @@ -2047,13 +2094,13 @@ msgid "" "single-member files which can't be decompressed in parallel." msgstr "" -#: gnu/packages/compression.scm:2074 +#: gnu/packages/compression.scm:2100 msgid "" "innoextract allows extracting Inno Setup installers under\n" "non-Windows systems without running the actual installer using wine." msgstr "" -#: gnu/packages/compression.scm:2096 +#: gnu/packages/compression.scm:2122 msgid "" "ISA-L is a collection of optimized low-level functions\n" "targeting storage applications. ISA-L includes:\n" @@ -2071,7 +2118,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/compression.scm:2156 +#: gnu/packages/compression.scm:2182 msgid "" "This package provides the reference implementation of Brotli,\n" "a generic-purpose lossless compression algorithm that compresses data using a\n" @@ -2083,13 +2130,13 @@ msgid "" "The specification of the Brotli Compressed Data Format is defined in RFC 7932." msgstr "" -#: gnu/packages/compression.scm:2176 +#: gnu/packages/compression.scm:2202 msgid "" "This package provides a Python interface to the @code{brotli}\n" "package, an implementation of the Brotli lossless compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2200 +#: gnu/packages/compression.scm:2226 msgid "" "UCL implements a number of compression algorithms that\n" "achieve an excellent compression ratio while allowing fast decompression.\n" @@ -2099,7 +2146,7 @@ msgid "" "decompression is a little bit slower." msgstr "" -#: gnu/packages/compression.scm:2248 +#: gnu/packages/compression.scm:2274 msgid "" "The Ultimate Packer for eXecutables (UPX) is an executable file\n" "compressor. UPX typically reduces the file size of programs and shared\n" @@ -2107,7 +2154,7 @@ msgid "" "download times, and other distribution and storage costs." msgstr "" -#: gnu/packages/compression.scm:2276 +#: gnu/packages/compression.scm:2302 msgid "" "QuaZIP is a simple C++ wrapper over Gilles Vollant's\n" "ZIP/UNZIP package that can be used to access ZIP archives. It uses\n" @@ -2121,7 +2168,7 @@ msgid "" "reading from and writing to ZIP archives." msgstr "" -#: gnu/packages/compression.scm:2335 +#: gnu/packages/compression.scm:2361 msgid "" "The zchunk compressed file format allows splitting a file\n" "into independent chunks. This makes it possible to retrieve only changed\n" @@ -2144,7 +2191,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/compression.scm:2391 +#: gnu/packages/compression.scm:2417 msgid "" "Zutils is a collection of utilities able to process any combination of\n" "compressed and uncompressed files transparently. If any given file, including\n" @@ -2161,14 +2208,14 @@ msgid "" "at run time, and must be installed separately." msgstr "" -#: gnu/packages/compression.scm:2449 +#: gnu/packages/compression.scm:2475 msgid "" "This package provides a script to unpack self-extracting\n" "archives generated by @command{makeself} or @command{mojo} without running the\n" "possibly untrusted extraction shell script." msgstr "" -#: gnu/packages/compression.scm:2477 +#: gnu/packages/compression.scm:2503 msgid "" "(N)compress provides the original compress and uncompress\n" "programs that used to be the de facto UNIX standard for compressing and\n" @@ -2176,7 +2223,7 @@ msgid "" "file compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2504 +#: gnu/packages/compression.scm:2530 msgid "" "Xarchiver is a front-end to various command line archiving\n" "tools. It uses GTK+ tool-kit and is designed to be desktop-environment\n" @@ -2185,13 +2232,13 @@ msgid "" "archiver is not installed." msgstr "" -#: gnu/packages/compression.scm:2541 +#: gnu/packages/compression.scm:2567 msgid "" "Archive huge numbers of files, or split massive tar archives into smaller\n" "chunks." msgstr "" -#: gnu/packages/compression.scm:2574 +#: gnu/packages/compression.scm:2600 msgid "" "Blosc is a high performance compressor optimized for binary data. It has\n" "been designed to transmit data to the processor cache faster than the\n" @@ -2201,14 +2248,14 @@ msgid "" "computations." msgstr "" -#: gnu/packages/compression.scm:2612 +#: gnu/packages/compression.scm:2638 msgid "" "ECM is a utility that converts ECM files, i.e., CD data files\n" "with their error correction data losslessly rearranged for better compression,\n" "to their original, binary CD format." msgstr "" -#: gnu/packages/compression.scm:2642 +#: gnu/packages/compression.scm:2668 msgid "" "Libdeflate is a library for fast, whole-buffer DEFLATE-based\n" "compression and decompression. The supported formats are:\n" @@ -2220,7 +2267,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/compression.scm:2672 +#: gnu/packages/compression.scm:2698 msgid "" "Tarlz is a massively parallel (multi-threaded) combined implementation of\n" "the tar archiver and the lzip compressor. Tarlz creates, lists, and extracts\n" @@ -2231,7 +2278,7 @@ msgid "" "can append files to the end of such compressed archives." msgstr "" -#: gnu/packages/compression.scm:2706 +#: gnu/packages/compression.scm:2732 msgid "" "The Concise Binary Object Representation (CBOR) is a data format whose\n" "design goals include the possibility of extremely small code size, fairly\n" @@ -2240,17 +2287,17 @@ msgid "" "serializations such as ASN.1 and MessagePack." msgstr "" -#: gnu/packages/compression.scm:2739 +#: gnu/packages/compression.scm:2765 msgid "Fcrackzip is a Zip file password cracker." msgstr "" -#: gnu/packages/databases.scm:211 +#: gnu/packages/databases.scm:216 msgid "" "4store is a RDF/SPARQL store written in C, supporting\n" "either single machines or networked clusters." msgstr "" -#: gnu/packages/databases.scm:255 +#: gnu/packages/databases.scm:260 msgid "" "@code{pg_tmp} creates temporary PostgreSQL databases, suitable for tasks\n" "like running software test suites. Temporary databases created with\n" @@ -2259,14 +2306,14 @@ msgid "" "60)." msgstr "" -#: gnu/packages/databases.scm:281 +#: gnu/packages/databases.scm:286 msgid "" "This package provides a utility for dumping the contents of an\n" "ElasticSearch index to a compressed file and restoring the dumpfile back to an\n" "ElasticSearch server" msgstr "" -#: gnu/packages/databases.scm:433 +#: gnu/packages/databases.scm:438 msgid "" "Firebird is an SQL @acronym{RDBMS, relational database management system}\n" "with rich support for ANSI SQL (e.g., @code{INSERT...RETURNING}) including\n" @@ -2286,20 +2333,20 @@ msgid "" "database later." msgstr "" -#: gnu/packages/databases.scm:506 +#: gnu/packages/databases.scm:511 msgid "" "LevelDB is a fast key-value storage library that provides an ordered\n" "mapping from string keys to string values." msgstr "" -#: gnu/packages/databases.scm:526 +#: gnu/packages/databases.scm:531 msgid "" "Memcached is an in-memory key-value store. It has a small\n" "and generic API, and was originally intended for use with dynamic web\n" "applications." msgstr "" -#: gnu/packages/databases.scm:588 +#: gnu/packages/databases.scm:593 msgid "" "libMemcached is a library to use memcached in C/C++\n" "applications. It comes with a complete reference guide and documentation of\n" @@ -2313,51 +2360,77 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:625 +#: gnu/packages/databases.scm:630 msgid "" "@code{pylibmc} is a client in Python for memcached. It is a wrapper\n" "around TangentOrg’s libmemcached library, and can be used as a drop-in\n" "replacement for the code@{python-memcached} library." msgstr "" -#: gnu/packages/databases.scm:653 +#: gnu/packages/databases.scm:662 +msgid "This is a memcache client library for the Go programming language." +msgstr "" + +#: gnu/packages/databases.scm:685 +#, fuzzy +#| msgid "" +#| "This package provides a dictionary for the Hunspell spell-checking\n" +#| "library." +msgid "This package provides memcache client and server functionality." +msgstr "" +"Questo pacchetto fornisce un dizionario per il controllo ortografico per la libreria \n" +"Hunspell." + +#: gnu/packages/databases.scm:711 msgid "" "@code{litecli} is a command-line client for SQLite databases that has\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:685 +#: gnu/packages/databases.scm:732 +msgid "" +"This Python package provides an API to execute meta-commands (AKA\n" +"\"special\", or \"backslash commands\") on PostgreSQL." +msgstr "" + +#: gnu/packages/databases.scm:763 +msgid "" +"@code{pgcli} is a command line interface for PostgreSQL with\n" +"autocompletion and syntax highlighting." +msgstr "" + +#: gnu/packages/databases.scm:801 msgid "" "MyCLI is a command line interface for MySQL, MariaDB, and Percona with\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:782 +#: gnu/packages/databases.scm:898 msgid "" "MySQL is a fast, reliable, and easy to use relational database\n" "management system that supports the standardized Structured Query\n" "Language." msgstr "" -#: gnu/packages/databases.scm:1045 +#: gnu/packages/databases.scm:1161 msgid "" "MariaDB is a multi-user and multi-threaded SQL database server, designed\n" "as a drop-in replacement of MySQL." msgstr "" -#: gnu/packages/databases.scm:1070 +#: gnu/packages/databases.scm:1186 msgid "" "The MariaDB Connector/C is used to connect applications\n" "developed in C/C++ to MariaDB and MySQL databases." msgstr "" -#: gnu/packages/databases.scm:1093 +#: gnu/packages/databases.scm:1209 msgid "" "Galera is a wsrep-provider that is used with MariaDB for load-balancing\n" "and high-availability (HA)." msgstr "" -#: gnu/packages/databases.scm:1147 +#: gnu/packages/databases.scm:1263 msgid "" "PostgreSQL is a powerful object-relational database system. It is fully\n" "ACID compliant, has full support for foreign keys, joins, views, triggers, and\n" @@ -2367,19 +2440,27 @@ msgid "" "pictures, sounds, or video." msgstr "" -#: gnu/packages/databases.scm:1269 +#: gnu/packages/databases.scm:1395 +msgid "" +"TimescaleDB is an database designed to make SQL scalable for\n" +"time-series data. It is engineered up from PostgreSQL and packaged as a\n" +"PostgreSQL extension, providing automatic partitioning across time and space\n" +"(partitioning key), as well as full SQL support." +msgstr "" + +#: gnu/packages/databases.scm:1476 msgid "" "@code{pgloader} is a program that can load data or migrate databases from\n" "CSV, DB3, iXF, SQLite, MS-SQL or MySQL to PostgreSQL." msgstr "" -#: gnu/packages/databases.scm:1293 +#: gnu/packages/databases.scm:1500 msgid "" "PyMySQL is a pure-Python MySQL client library, based on PEP 249.\n" "Most public APIs are compatible with @command{mysqlclient} and MySQLdb." msgstr "" -#: gnu/packages/databases.scm:1320 +#: gnu/packages/databases.scm:1527 msgid "" "QDBM is a library of routines for managing a\n" "database. The database is a simple data file containing key-value\n" @@ -2389,7 +2470,7 @@ msgid "" "organized in a hash table or B+ tree." msgstr "" -#: gnu/packages/databases.scm:1357 +#: gnu/packages/databases.scm:1564 msgid "" "GNU Recutils is a set of tools and libraries for creating and\n" "manipulating text-based, human-editable databases. Despite being text-based,\n" @@ -2398,7 +2479,7 @@ msgid "" "types are supported, as is encryption." msgstr "" -#: gnu/packages/databases.scm:1389 +#: gnu/packages/databases.scm:1596 msgid "" "This package provides an Emacs major mode @code{rec-mode}\n" "for working with GNU Recutils text-based, human-editable databases. It\n" @@ -2406,7 +2487,7 @@ msgid "" "including field and record folding." msgstr "" -#: gnu/packages/databases.scm:1457 +#: gnu/packages/databases.scm:1664 msgid "" "RocksDB is a library that forms the core building block for a fast\n" "key-value server, especially suited for storing data on flash drives. It\n" @@ -2417,7 +2498,7 @@ msgid "" "data in a single database. RocksDB is partially based on @code{LevelDB}." msgstr "" -#: gnu/packages/databases.scm:1515 +#: gnu/packages/databases.scm:1722 msgid "" "Sparql-query is a command-line tool for accessing SPARQL\n" "endpoints over HTTP. It has been intentionally designed to @code{feel} similar to\n" @@ -2428,13 +2509,13 @@ msgid "" "for example from a shell script." msgstr "" -#: gnu/packages/databases.scm:1608 +#: gnu/packages/databases.scm:1815 msgid "" "Sqitch is a standalone change management system for database schemas,\n" "which uses SQL to describe changes." msgstr "" -#: gnu/packages/databases.scm:1635 +#: gnu/packages/databases.scm:1842 msgid "" "SQLcrush lets you view and edit a database directly from the text\n" "console through an ncurses interface. You can explore each table's structure,\n" @@ -2442,7 +2523,7 @@ msgid "" "changes." msgstr "" -#: gnu/packages/databases.scm:1673 +#: gnu/packages/databases.scm:1880 msgid "" "TDB is a Trivial Database. In concept, it is very much like GDBM,\n" "and BSD's DB except that it allows multiple simultaneous writers and uses\n" @@ -2450,11 +2531,11 @@ msgid "" "extremely small." msgstr "" -#: gnu/packages/databases.scm:1693 +#: gnu/packages/databases.scm:1900 msgid "This package provides an database interface for Perl." msgstr "" -#: gnu/packages/databases.scm:1741 +#: gnu/packages/databases.scm:1948 msgid "" "An SQL to OO mapper with an object API inspired by\n" "Class::DBI (with a compatibility layer as a springboard for porting) and a\n" @@ -2466,13 +2547,13 @@ msgid "" "\"ORDER BY\" and \"HAVING\" support." msgstr "" -#: gnu/packages/databases.scm:1770 +#: gnu/packages/databases.scm:1977 msgid "" "DBIx::Class::Cursor::Cached provides a cursor class with\n" "built-in caching support." msgstr "" -#: gnu/packages/databases.scm:1793 +#: gnu/packages/databases.scm:2000 msgid "" "Because the many-to-many relationships are not real\n" "relationships, they can not be introspected with DBIx::Class. Many-to-many\n" @@ -2482,26 +2563,26 @@ msgid "" "introspected and examined." msgstr "" -#: gnu/packages/databases.scm:1852 +#: gnu/packages/databases.scm:2059 msgid "" "DBIx::Class::Schema::Loader automates the definition of a\n" "DBIx::Class::Schema by scanning database table definitions and setting up the\n" "columns, primary keys, unique constraints and relationships." msgstr "" -#: gnu/packages/databases.scm:1876 +#: gnu/packages/databases.scm:2083 msgid "" "This package provides a PostgreSQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." msgstr "" -#: gnu/packages/databases.scm:1914 +#: gnu/packages/databases.scm:2121 msgid "" "This package provides a MySQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." msgstr "" -#: gnu/packages/databases.scm:1934 +#: gnu/packages/databases.scm:2141 msgid "" "DBD::SQLite is a Perl DBI driver for SQLite, that includes\n" "the entire thing in the distribution. So in order to get a fast transaction\n" @@ -2509,14 +2590,14 @@ msgid "" "module, and nothing else." msgstr "" -#: gnu/packages/databases.scm:1959 +#: gnu/packages/databases.scm:2166 msgid "" "@code{MySQL::Config} emulates the @code{load_defaults} function from\n" "libmysqlclient. It will fill an array with long options, ready to be parsed by\n" "@code{Getopt::Long}." msgstr "" -#: gnu/packages/databases.scm:1983 +#: gnu/packages/databases.scm:2190 msgid "" "This module was inspired by the excellent DBIx::Abstract.\n" "While based on the concepts used by DBIx::Abstract, the concepts used have\n" @@ -2526,7 +2607,7 @@ msgid "" "time your data changes." msgstr "" -#: gnu/packages/databases.scm:2010 +#: gnu/packages/databases.scm:2217 msgid "" "This module is nearly identical to @code{SQL::Abstract} 1.81, and exists\n" "to preserve the ability of users to opt into the new way of doing things in\n" @@ -2542,34 +2623,34 @@ msgid "" "your data changes, as this module figures it out." msgstr "" -#: gnu/packages/databases.scm:2043 +#: gnu/packages/databases.scm:2250 msgid "" "This module tries to split any SQL code, even including\n" "non-standard extensions, into the atomic statements it is composed of." msgstr "" -#: gnu/packages/databases.scm:2062 +#: gnu/packages/databases.scm:2269 msgid "" "SQL::Tokenizer is a tokenizer for SQL queries. It does not\n" "claim to be a parser or query verifier. It just creates sane tokens from a\n" "valid SQL query." msgstr "" -#: gnu/packages/databases.scm:2081 +#: gnu/packages/databases.scm:2288 msgid "" "Unixodbc is a library providing an API with which to access\n" "data sources. Data sources include SQL Servers and any software with an ODBC\n" "Driver." msgstr "" -#: gnu/packages/databases.scm:2113 +#: gnu/packages/databases.scm:2320 msgid "" "The goal for nanodbc is to make developers happy by providing\n" "a simpler and less verbose API for working with ODBC. Common tasks should be\n" "easy, requiring concise and simple code." msgstr "" -#: gnu/packages/databases.scm:2174 +#: gnu/packages/databases.scm:2381 msgid "" "UnQLite is an in-process software library which implements a\n" "self-contained, serverless, zero-configuration, transactional NoSQL\n" @@ -2578,27 +2659,35 @@ msgid "" "similar to BerkeleyDB, LevelDB, etc." msgstr "" -#: gnu/packages/databases.scm:2225 +#: gnu/packages/databases.scm:2432 msgid "" "Redis is an advanced key-value cache and store. Redis\n" "supports many data structures including strings, hashes, lists, sets, sorted\n" "sets, bitmaps and hyperloglogs." msgstr "" -#: gnu/packages/databases.scm:2247 +#: gnu/packages/databases.scm:2454 msgid "" "This package provides a Ruby client that tries to match Redis' API\n" "one-to-one, while still providing an idiomatic interface." msgstr "" -#: gnu/packages/databases.scm:2275 +#: gnu/packages/databases.scm:2479 +msgid "Package rdb implements parsing and encoding of the Redis RDB file format." +msgstr "" + +#: gnu/packages/databases.scm:2505 +msgid "Redigo is a Go client for the Redis database." +msgstr "" + +#: gnu/packages/databases.scm:2531 msgid "" "Kyoto Cabinet is a standalone file-based database that supports Hash\n" "and B+ Tree data storage models. It is a fast key-value lightweight\n" "database and supports many programming languages. It is a NoSQL database." msgstr "" -#: gnu/packages/databases.scm:2303 +#: gnu/packages/databases.scm:2559 msgid "" "Tokyo Cabinet is a library of routines for managing a database.\n" "The database is a simple data file containing records, each is a pair of a\n" @@ -2608,7 +2697,7 @@ msgid "" "organized in hash table, B+ tree, or fixed-length array." msgstr "" -#: gnu/packages/databases.scm:2339 +#: gnu/packages/databases.scm:2595 msgid "" "WiredTiger is an extensible platform for data management. It supports\n" "row-oriented storage (where all columns of a row are stored together),\n" @@ -2617,17 +2706,17 @@ msgid "" "trees (LSM), for sustained throughput under random insert workloads." msgstr "" -#: gnu/packages/databases.scm:2389 +#: gnu/packages/databases.scm:2645 msgid "" "This package provides Guile bindings to the WiredTiger ``NoSQL''\n" "database." msgstr "" -#: gnu/packages/databases.scm:2419 +#: gnu/packages/databases.scm:2675 msgid "The DB::File module provides Perl bindings to the Berkeley DB version 1.x." msgstr "" -#: gnu/packages/databases.scm:2467 +#: gnu/packages/databases.scm:2723 msgid "" "The @dfn{Lightning Memory-Mapped Database} (LMDB) is a high-performance\n" "transactional database. Unlike more complex relational databases, LMDB handles\n" @@ -2640,7 +2729,7 @@ msgid "" "virtual address space — not physical RAM." msgstr "" -#: gnu/packages/databases.scm:2501 +#: gnu/packages/databases.scm:2757 msgid "" "@code{lmdbxx} is a comprehensive @code{C++} wrapper for the\n" "@code{LMDB} embedded database library, offering both an error-checked\n" @@ -2648,14 +2737,22 @@ msgid "" "semantics." msgstr "" -#: gnu/packages/databases.scm:2535 +#: gnu/packages/databases.scm:2791 msgid "" "Libpqxx is a C++ library to enable user programs to communicate with the\n" "PostgreSQL database back-end. The database back-end can be local or it may be\n" "on another machine, accessed via TCP/IP." msgstr "" -#: gnu/packages/databases.scm:2561 +#: gnu/packages/databases.scm:2819 +msgid "" +"Bolt is a pure Go key/value store inspired by Howard Chu's\n" +"LMDB project. The goal of the project is to provide a simple, fast, and\n" +"reliable database for projects that don't require a full database server such as\n" +"Postgres or MySQL." +msgstr "" + +#: gnu/packages/databases.scm:2845 msgid "" "Peewee is a simple and small ORM (object-relation mapping) tool. Peewee\n" "handles converting between pythonic values and those used by databases, so you\n" @@ -2664,20 +2761,20 @@ msgid "" "can autogenerate peewee models using @code{pwiz}, a model generator." msgstr "" -#: gnu/packages/databases.scm:2584 +#: gnu/packages/databases.scm:2868 msgid "" "Pypika-tortoise is a fork of pypika which has been\n" "streamlined for its use in the context of tortoise-orm. It removes support\n" "for many database kinds that tortoise-orm doesn't need, for example." msgstr "" -#: gnu/packages/databases.scm:2604 +#: gnu/packages/databases.scm:2888 msgid "" "This package is a Sphinx extension providing additional\n" "coroutine-specific markup." msgstr "" -#: gnu/packages/databases.scm:2632 +#: gnu/packages/databases.scm:2916 msgid "" "@code{asyncpg} is a database interface library designed\n" "specifically for PostgreSQL and Python/asyncio. @code{asyncpg} is an\n" @@ -2685,14 +2782,14 @@ msgid "" "with Python's asyncio framework." msgstr "" -#: gnu/packages/databases.scm:2652 +#: gnu/packages/databases.scm:2936 msgid "" "@code{asyncmy} is a fast @code{asyncio} MySQL driver, which\n" "reuses most of @code{pymysql} and @code{aiomysql} but rewrites the core\n" "protocol with Cython for performance." msgstr "" -#: gnu/packages/databases.scm:2672 +#: gnu/packages/databases.scm:2956 msgid "" "@code{aiomysql} is a driver for accessing a MySQL database\n" "from the @code{asyncio} Python framework. It depends on and reuses most parts\n" @@ -2700,7 +2797,7 @@ msgid "" "@code{aiopg} library." msgstr "" -#: gnu/packages/databases.scm:2705 +#: gnu/packages/databases.scm:2989 msgid "" "Tortoise ORM is an easy-to-use asyncio ORM (Object\n" "Relational Mapper) inspired by Django. Tortoise ORM was built with relations\n" @@ -2709,7 +2806,7 @@ msgid "" "with relational data." msgstr "" -#: gnu/packages/databases.scm:2749 +#: gnu/packages/databases.scm:3033 msgid "" "SQLCipher is an implementation of SQLite, extended to\n" "provide transparent 256-bit AES encryption of database files. Pages are\n" @@ -2718,19 +2815,19 @@ msgid "" "development." msgstr "" -#: gnu/packages/databases.scm:2782 +#: gnu/packages/databases.scm:3066 msgid "" "@code{python-pyodbc-c} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2807 +#: gnu/packages/databases.scm:3091 msgid "" "@code{python-pyodbc} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2840 +#: gnu/packages/databases.scm:3124 msgid "" "MDB Tools is a set of tools and applications to read the\n" "proprietary MDB file format used in Microsoft's Access database package. This\n" @@ -2739,39 +2836,49 @@ msgid "" "etc., and an SQL engine for performing simple SQL queries." msgstr "" -#: gnu/packages/databases.scm:2886 +#: gnu/packages/databases.scm:3153 +#, fuzzy +#| msgid "" +#| "This package provides a dictionary for the Hunspell spell-checking\n" +#| "library." +msgid "This package provides a MongoDB driver for Go." +msgstr "" +"Questo pacchetto fornisce un dizionario per il controllo ortografico per la libreria \n" +"Hunspell." + +#: gnu/packages/databases.scm:3194 msgid "" "python-lmdb or py-lmdb is a Python binding for the @dfn{Lightning\n" "Memory-Mapped Database} (LMDB), a high-performance key-value store." msgstr "" -#: gnu/packages/databases.scm:2925 +#: gnu/packages/databases.scm:3233 msgid "" "Orator provides a simple ActiveRecord-like Object Relational Mapping\n" "implementation for Python." msgstr "" -#: gnu/packages/databases.scm:2963 +#: gnu/packages/databases.scm:3271 msgid "" "Virtuoso is a scalable cross-platform server that combines\n" "relational, graph, and document data management with web application server\n" "and web services platform functionality." msgstr "" -#: gnu/packages/databases.scm:2990 +#: gnu/packages/databases.scm:3298 msgid "" "Cassandra Cluster Manager is a development tool for testing\n" "local Cassandra clusters. It creates, launches and removes Cassandra clusters\n" "on localhost." msgstr "" -#: gnu/packages/databases.scm:3018 +#: gnu/packages/databases.scm:3326 msgid "" "Pysqlite provides SQLite bindings for Python that comply to the\n" "Database API 2.0T." msgstr "" -#: gnu/packages/databases.scm:3048 +#: gnu/packages/databases.scm:3356 msgid "" "SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that\n" "gives application developers the full power and flexibility of SQL. It\n" @@ -2780,14 +2887,14 @@ msgid "" "simple and Pythonic domain language." msgstr "" -#: gnu/packages/databases.scm:3086 +#: gnu/packages/databases.scm:3382 msgid "" "This package contains type stubs and a mypy plugin to\n" "provide more precise static types and type inference for SQLAlchemy\n" "framework." msgstr "" -#: gnu/packages/databases.scm:3118 +#: gnu/packages/databases.scm:3414 msgid "" "SQLAlchemy-utils provides various utility functions and custom data types\n" "for SQLAlchemy. SQLAlchemy is an SQL database abstraction library for Python.\n" @@ -2804,7 +2911,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/databases.scm:3165 +#: gnu/packages/databases.scm:3461 msgid "" "This package provides mock helpers for SQLAlchemy that makes it easy\n" "to mock an SQLAlchemy session while preserving the ability to do asserts.\n" @@ -2814,13 +2921,13 @@ msgid "" "this library provides functions to facilitate such comparisons." msgstr "" -#: gnu/packages/databases.scm:3196 +#: gnu/packages/databases.scm:3492 msgid "" "Alembic is a lightweight database migration tool for usage with the\n" "SQLAlchemy Database Toolkit for Python." msgstr "" -#: gnu/packages/databases.scm:3221 +#: gnu/packages/databases.scm:3517 msgid "" "PickleShare is a small ‘shelve’-like datastore with concurrency support.\n" "Like shelve, a PickleShareDB object acts like a normal dictionary. Unlike\n" @@ -2831,7 +2938,7 @@ msgid "" "PickleShare." msgstr "" -#: gnu/packages/databases.scm:3275 +#: gnu/packages/databases.scm:3571 msgid "" "APSW is a Python wrapper for the SQLite\n" "embedded relational database engine. In contrast to other wrappers such as\n" @@ -2839,21 +2946,21 @@ msgid "" "translate the complete SQLite API into Python." msgstr "" -#: gnu/packages/databases.scm:3312 +#: gnu/packages/databases.scm:3608 msgid "" "The package aiosqlite replicates the standard sqlite3 module, but with\n" "async versions of all the standard connection and cursor methods, and context\n" "managers for automatically closing connections." msgstr "" -#: gnu/packages/databases.scm:3333 +#: gnu/packages/databases.scm:3629 msgid "" "This package provides the Neo4j Python driver that connects\n" "to the database using Neo4j's binary protocol. It aims to be minimal, while\n" "being idiomatic to Python." msgstr "" -#: gnu/packages/databases.scm:3353 +#: gnu/packages/databases.scm:3649 msgid "" "This package provides a client library and toolkit for\n" "working with Neo4j from within Python applications and from the command\n" @@ -2861,26 +2968,38 @@ msgid "" "designed to be easy and intuitive to use." msgstr "" -#: gnu/packages/databases.scm:3379 +#: gnu/packages/databases.scm:3675 msgid "" "psycopg2 is a thread-safe PostgreSQL adapter that implements DB-API\n" "2.0." msgstr "" -#: gnu/packages/databases.scm:3413 +#: gnu/packages/databases.scm:3702 +msgid "" +"This module provides connection pool implementations that can be used\n" +"with the @code{psycopg} PostgreSQL driver." +msgstr "" + +#: gnu/packages/databases.scm:3776 +msgid "" +"Psycopg 3 is a new implementation of the popular @code{psycopg2}\n" +"database adapter for Python." +msgstr "" + +#: gnu/packages/databases.scm:3810 msgid "" "This package provides a program to build Entity\n" "Relationship diagrams from a SQLAlchemy model (or directly from the\n" "database)." msgstr "" -#: gnu/packages/databases.scm:3443 +#: gnu/packages/databases.scm:3840 msgid "" "Yoyo is a database schema migration tool. Migrations are written as SQL\n" "files or Python scripts that define a list of migration steps." msgstr "" -#: gnu/packages/databases.scm:3464 +#: gnu/packages/databases.scm:3861 msgid "" "MySQLdb is an interface to the popular MySQL database server\n" "for Python. The design goals are:\n" @@ -2891,13 +3010,13 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/databases.scm:3490 +#: gnu/packages/databases.scm:3887 msgid "" "Python-hiredis is a python extension that wraps protocol\n" "parsing code in hiredis. It primarily speeds up parsing of multi bulk replies." msgstr "" -#: gnu/packages/databases.scm:3517 +#: gnu/packages/databases.scm:3914 msgid "" "Fakeredis is a pure-Python implementation of the redis-py Python client\n" "that simulates talking to a redis server. It was created for a single purpose:\n" @@ -2908,49 +3027,49 @@ msgid "" "reasonable substitute." msgstr "" -#: gnu/packages/databases.scm:3545 +#: gnu/packages/databases.scm:3942 msgid "This package provides a Python interface to the Redis key-value store." msgstr "" -#: gnu/packages/databases.scm:3586 +#: gnu/packages/databases.scm:3983 msgid "" "RQ (Redis Queue) is a simple Python library for queueing jobs and\n" "processing them in the background with workers. It is backed by Redis and it\n" "is designed to have a low barrier to entry." msgstr "" -#: gnu/packages/databases.scm:3623 +#: gnu/packages/databases.scm:4020 msgid "" "This package provides job scheduling capabilities to @code{python-rq}\n" "(Redis Queue)." msgstr "" -#: gnu/packages/databases.scm:3643 +#: gnu/packages/databases.scm:4040 msgid "" "@code{trollius-redis} is a Redis client for Python\n" " trollius. It is an asynchronous IO (PEP 3156) implementation of the\n" " Redis protocol." msgstr "" -#: gnu/packages/databases.scm:3686 +#: gnu/packages/databases.scm:4083 msgid "" "Sqlparse is a non-validating SQL parser for Python. It\n" "provides support for parsing, splitting and formatting SQL statements." msgstr "" -#: gnu/packages/databases.scm:3703 +#: gnu/packages/databases.scm:4101 msgid "" "@code{python-sql} is a library to write SQL queries, that\n" "transforms idiomatic python function calls to well-formed SQL queries." msgstr "" -#: gnu/packages/databases.scm:3726 +#: gnu/packages/databases.scm:4124 msgid "" "PyPika is a python SQL query builder that exposes the full richness of\n" "the SQL language using a syntax that reflects the resulting query." msgstr "" -#: gnu/packages/databases.scm:3852 +#: gnu/packages/databases.scm:4250 msgid "" "Apache Arrow is a columnar in-memory analytics layer\n" "designed to accelerate big data. It houses a set of canonical in-memory\n" @@ -2959,21 +3078,21 @@ msgid "" "algorithm implementations." msgstr "" -#: gnu/packages/databases.scm:3912 +#: gnu/packages/databases.scm:4310 msgid "" "This library provides a Pythonic API wrapper for the reference Arrow C++\n" "implementation, along with tools for interoperability with pandas, NumPy, and\n" "other traditional Python scientific computing packages." msgstr "" -#: gnu/packages/databases.scm:3933 +#: gnu/packages/databases.scm:4331 msgid "" "This package provides a Python client library for CrateDB.\n" "It implements the Python DB API 2.0 specification and includes support for\n" "SQLAlchemy." msgstr "" -#: gnu/packages/databases.scm:3952 +#: gnu/packages/databases.scm:4350 msgid "" "This library implements a database independent abstraction layer in C,\n" "similar to the DBI/DBD layer in Perl. Writing one generic set of code,\n" @@ -2981,7 +3100,7 @@ msgid "" "simultaneous database connections by using this framework." msgstr "" -#: gnu/packages/databases.scm:4018 +#: gnu/packages/databases.scm:4416 msgid "" "The @code{libdbi-drivers} library provides the database specific drivers\n" "for the @code{libdbi} framework.\n" @@ -2994,26 +3113,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:4060 +#: gnu/packages/databases.scm:4458 msgid "" "SOCI is an abstraction layer for several database backends, including\n" "PostreSQL, SQLite, ODBC and MySQL." msgstr "" -#: gnu/packages/databases.scm:4084 +#: gnu/packages/databases.scm:4482 msgid "" "FreeTDS is an implementation of the Tabular DataStream protocol, used for\n" "connecting to MS SQL and Sybase servers over TCP/IP." msgstr "" -#: gnu/packages/databases.scm:4106 +#: gnu/packages/databases.scm:4504 msgid "" "TinyDB is a small document oriented database written in pure Python\n" "with no external dependencies. The targets are small apps that would\n" "be blown away by a SQL-DB or an external database server." msgstr "" -#: gnu/packages/databases.scm:4154 +#: gnu/packages/databases.scm:4552 msgid "" "Sequeler is a native Linux SQL client built in Vala and\n" "Gtk. It allows you to connect to your local and remote databases, write SQL in\n" @@ -3021,7 +3140,13 @@ msgid "" "a Gtk.Grid Widget." msgstr "" -#: gnu/packages/debug.scm:111 +#: gnu/packages/databases.scm:4594 +msgid "" +"Sqlitebrowser is a high quaility, visual, open source tool to\n" +"create design, and edit database file compatible with SQLite." +msgstr "" + +#: gnu/packages/debug.scm:112 msgid "" "Delta assists you in minimizing \"interesting\" files subject to a test\n" "of their interestingness. A common such situation is when attempting to\n" @@ -3029,7 +3154,7 @@ msgid "" "program to exhibit a bug." msgstr "" -#: gnu/packages/debug.scm:172 +#: gnu/packages/debug.scm:173 msgid "" "C-Reduce is a tool that takes a large C or C++ program that has a\n" "property of interest (such as triggering a compiler bug) and automatically\n" @@ -3038,14 +3163,14 @@ msgid "" "tools that process C/C++ code." msgstr "" -#: gnu/packages/debug.scm:219 +#: gnu/packages/debug.scm:220 msgid "" "C-Vise is a Python port of the C-Reduce tool that is fully compatible\n" "and uses the same efficient LLVM-based C/C++ @code{clang_delta} reduction\n" "tool." msgstr "" -#: gnu/packages/debug.scm:289 +#: gnu/packages/debug.scm:290 msgid "" "American fuzzy lop is a security-oriented fuzzer that employs a novel\n" "type of compile-time instrumentation and genetic algorithms to automatically\n" @@ -3056,7 +3181,7 @@ msgid "" "down the road." msgstr "" -#: gnu/packages/debug.scm:433 +#: gnu/packages/debug.scm:434 msgid "" "QEMU is a generic machine emulator and virtualizer. This package\n" "of QEMU is used only by the american fuzzy lop package.\n" @@ -3072,7 +3197,7 @@ msgid "" "server and embedded PowerPC, and S390 guests." msgstr "" -#: gnu/packages/debug.scm:501 +#: gnu/packages/debug.scm:502 msgid "" "Stress Make is a customized GNU Make that explicitly manages the order\n" "in which concurrent jobs are run to provoke erroneous behavior into becoming\n" @@ -3082,14 +3207,14 @@ msgid "" "conditions." msgstr "" -#: gnu/packages/debug.scm:529 +#: gnu/packages/debug.scm:530 msgid "" "Zzuf is a transparent application input fuzzer. It works by\n" "intercepting file operations and changing random bits in the program's\n" "input. Zzuf's behaviour is deterministic, making it easy to reproduce bugs." msgstr "" -#: gnu/packages/debug.scm:581 +#: gnu/packages/debug.scm:582 msgid "" "Scanmem is a debugging utility designed to isolate the\n" "address of an arbitrary variable in an executing process. Scanmem simply\n" @@ -3098,13 +3223,13 @@ msgid "" "the position of the variable and allows you to modify its value." msgstr "" -#: gnu/packages/debug.scm:611 +#: gnu/packages/debug.scm:612 msgid "" "Remake is an enhanced version of GNU Make that adds improved\n" "error reporting, better tracing, profiling, and a debugger." msgstr "" -#: gnu/packages/debug.scm:667 +#: gnu/packages/debug.scm:668 msgid "" "rr is a lightweight tool for recording, replaying and debugging\n" "execution of applications (trees of processes and threads). Debugging extends\n" @@ -3113,13 +3238,13 @@ msgid "" "fun." msgstr "" -#: gnu/packages/debug.scm:695 +#: gnu/packages/debug.scm:696 msgid "" "The @code{libbacktrace} library can be linked into a C/C++\n" "program to produce symbolic backtraces." msgstr "" -#: gnu/packages/debug.scm:735 +#: gnu/packages/debug.scm:736 msgid "" "The libleak tool detects memory leaks by hooking memory\n" "functions such as @code{malloc}. It comes as a shared object to be pre-loaded\n" @@ -3131,7 +3256,7 @@ msgid "" "use than similar tools like @command{mtrace}." msgstr "" -#: gnu/packages/debug.scm:763 +#: gnu/packages/debug.scm:764 msgid "" "@code{cgdb} is a lightweight curses (terminal-based) interface to the\n" "GNU Debugger (GDB). In addition to the standard gdb console, cgdb provides\n" @@ -3140,7 +3265,7 @@ msgid "" "using cgdb." msgstr "" -#: gnu/packages/debug.scm:798 +#: gnu/packages/debug.scm:799 msgid "" "MspDebug supports FET430UIF, eZ430, RF2500 and Olimex\n" "MSP430-JTAG-TINY programmers, as well as many other compatible\n" @@ -3156,14 +3281,14 @@ msgid "" "multiple test suites, which are then all managed by a single harness." msgstr "" -#: gnu/packages/games.scm:287 +#: gnu/packages/games.scm:288 msgid "" "Abe's Amazing Adventure is a scrolling,\n" "platform-jumping, key-collecting, ancient pyramid exploring game, vaguely in\n" "the style of similar games for the Commodore+4." msgstr "" -#: gnu/packages/games.scm:357 +#: gnu/packages/games.scm:358 msgid "" "Adanaxis is a fast-moving first person shooter set in deep space, where\n" "the fundamentals of space itself are changed. By adding another dimension to\n" @@ -3174,7 +3299,7 @@ msgid "" "mouse and joystick control, and original music." msgstr "" -#: gnu/packages/games.scm:401 +#: gnu/packages/games.scm:402 msgid "" "Guide Alex the Allegator through the jungle in order to save his\n" "girlfriend Lola from evil humans who want to make a pair of shoes out of her.\n" @@ -3183,7 +3308,7 @@ msgid "" "The game includes a built-in editor so you can design and share your own maps." msgstr "" -#: gnu/packages/games.scm:431 +#: gnu/packages/games.scm:432 msgid "" "Armagetron Advanced is a multiplayer game in 3d that\n" "attempts to emulate and expand on the lightcycle sequence from the movie Tron.\n" @@ -3193,7 +3318,7 @@ msgid "" "physics settings to tweak as well." msgstr "" -#: gnu/packages/games.scm:489 +#: gnu/packages/games.scm:490 msgid "" "Space is a vast area, an unbounded territory where it seems there is\n" "a room for everybody, but reversal of fortune put things differently. The\n" @@ -3205,7 +3330,7 @@ msgid "" "regret their insolence." msgstr "" -#: gnu/packages/games.scm:556 +#: gnu/packages/games.scm:557 msgid "" "Bastet (short for Bastard Tetris) is a simple ncurses-based falling brick\n" "game. Unlike normal Tetris, Bastet does not choose the next brick at random.\n" @@ -3215,19 +3340,19 @@ msgid "" "canyons and wait for the long I-shaped block to clear four rows at a time." msgstr "" -#: gnu/packages/games.scm:601 +#: gnu/packages/games.scm:602 msgid "" "Tetrinet is a multiplayer Tetris-like game with powerups and\n" "attacks you can use on opponents." msgstr "" -#: gnu/packages/games.scm:635 +#: gnu/packages/games.scm:636 msgid "" "Vitetris is a classic multiplayer Tetris clone for the\n" "terminal." msgstr "" -#: gnu/packages/games.scm:678 +#: gnu/packages/games.scm:679 msgid "" "Blobwars: Metal Blob Solid is a 2D platform game, the first\n" "in the Blobwars series. You take on the role of a fearless Blob agent. Your\n" @@ -3235,7 +3360,7 @@ msgid "" "possible, while battling many vicious aliens." msgstr "" -#: gnu/packages/games.scm:771 +#: gnu/packages/games.scm:772 msgid "" "These are the BSD games. See the fortune-mod package for fortunes.\n" "\n" @@ -3268,7 +3393,7 @@ msgid "" "Quizzes: arithmetic and quiz." msgstr "" -#: gnu/packages/games.scm:866 +#: gnu/packages/games.scm:867 msgid "" "BZFlag is a 3D multi-player multiplatform tank battle game that\n" "allows users to play against each other in a network environment.\n" @@ -3288,7 +3413,7 @@ msgid "" "high a score as possible." msgstr "" -#: gnu/packages/games.scm:949 +#: gnu/packages/games.scm:950 msgid "" "Cataclysm: Dark Days Ahead (or \"DDA\" for short) is a roguelike set\n" "in a post-apocalyptic world. Struggle to survive in a harsh, persistent,\n" @@ -3300,7 +3425,7 @@ msgid "" "want what you have." msgstr "" -#: gnu/packages/games.scm:998 +#: gnu/packages/games.scm:999 msgid "" "Cockatrice is a program for playing tabletop card games\n" "over a network. Its server design prevents users from manipulating the game\n" @@ -3308,7 +3433,7 @@ msgid "" "allows users to brew while offline." msgstr "" -#: gnu/packages/games.scm:1052 +#: gnu/packages/games.scm:1053 msgid "" "This package provides a reimplementation of the 1997 Bullfrog business\n" "simulation game @i{Theme Hospital}. As well as faithfully recreating the\n" @@ -3316,7 +3441,7 @@ msgid "" "more. This package does @emph{not} provide the game assets." msgstr "" -#: gnu/packages/games.scm:1094 +#: gnu/packages/games.scm:1095 msgid "" "Cowsay is basically a text filter. Send some text into it,\n" "and you get a cow saying your text. If you think a talking cow isn't enough,\n" @@ -3324,21 +3449,21 @@ msgid "" "tired of cows, a variety of other ASCII-art messengers are available." msgstr "" -#: gnu/packages/games.scm:1135 +#: gnu/packages/games.scm:1136 msgid "" "@command{lolcat} concatenates files and streams like\n" "regular @command{cat}, but it also adds terminal escape codes between\n" "characters and lines resulting in a rainbow effect." msgstr "" -#: gnu/packages/games.scm:1164 +#: gnu/packages/games.scm:1165 #, scheme-format msgid "" "This package provides the Fallout 2 game engine. Game data\n" "should be placed in @file{~/.local/share/falltergeist}." msgstr "" -#: gnu/packages/games.scm:1275 +#: gnu/packages/games.scm:1276 msgid "" "FooBillard++ is an advanced 3D OpenGL billiard game\n" "based on the original foobillard 3.0a sources from Florian Berger.\n" @@ -3360,7 +3485,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:1342 +#: gnu/packages/games.scm:1343 msgid "" "The Freedoom project aims to create a complete free content first person\n" "shooter game. Freedoom by itself is just the raw material for a game: it must\n" @@ -3369,7 +3494,7 @@ msgid "" "effects and music to make a completely free game." msgstr "" -#: gnu/packages/games.scm:1392 +#: gnu/packages/games.scm:1394 msgid "" "Freedroid RPG is an @dfn{RPG} (Role-Playing Game) with isometric graphics.\n" "The game tells the story of a world destroyed by a conflict between robots and\n" @@ -3379,7 +3504,7 @@ msgid "" "real-time combat." msgstr "" -#: gnu/packages/games.scm:1471 +#: gnu/packages/games.scm:1473 msgid "" "Golly simulates Conway's Game of Life and many other types of cellular\n" "automata. The following features are available:\n" @@ -3400,7 +3525,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:1527 +#: gnu/packages/games.scm:1529 #, fuzzy #| msgid "This package provides a dictionary for the GNU Aspell spell checker." msgid "" @@ -3408,7 +3533,7 @@ msgid "" "Joy-Con controllers." msgstr "Questo pacchetto fornisce un dizionario per il correttore ortografico GNU Aspell." -#: gnu/packages/games.scm:1557 +#: gnu/packages/games.scm:1559 msgid "" "Engine for Caesar III, a city-building real-time strategy game.\n" "Julius includes some UI enhancements while preserving the logic (including\n" @@ -3416,7 +3541,7 @@ msgid "" "does not include game data." msgstr "" -#: gnu/packages/games.scm:1591 +#: gnu/packages/games.scm:1593 msgid "" "Fork of Julius, an engine for the a city-building real-time strategy\n" "game Caesar III. Gameplay enhancements include:\n" @@ -3431,7 +3556,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/games.scm:1630 +#: gnu/packages/games.scm:1632 msgid "" "Me and My Shadow is a puzzle/platform game in which you try\n" "to reach the exit by solving puzzles. Spikes, moving blocks, fragile blocks\n" @@ -3439,7 +3564,7 @@ msgid "" "shadow mimic them to reach blocks you couldn't reach alone." msgstr "" -#: gnu/packages/games.scm:1686 +#: gnu/packages/games.scm:1688 msgid "" "@code{Open Surge} is a 2D retro side-scrolling platformer\n" "inspired by the Sonic games. The player runs at high speeds through each\n" @@ -3447,7 +3572,7 @@ msgid "" "built-in level editor." msgstr "" -#: gnu/packages/games.scm:1732 +#: gnu/packages/games.scm:1734 msgid "" "Knights is a multiplayer game involving several knights who\n" "must run around a dungeon and complete various quests. Each game revolves\n" @@ -3459,7 +3584,7 @@ msgid "" "destroying an ancient book using a special wand." msgstr "" -#: gnu/packages/games.scm:1780 +#: gnu/packages/games.scm:1781 msgid "" "GNOME 2048 provides a 2D grid for playing 2048, a\n" "single-player sliding tile puzzle game. The objective of the game is to merge\n" @@ -3467,7 +3592,7 @@ msgid "" "in one tile." msgstr "" -#: gnu/packages/games.scm:1819 +#: gnu/packages/games.scm:1820 msgid "" "GNOME Chess provides a 2D board for playing chess games\n" "against human or computer players. It supports loading and saving games in\n" @@ -3475,7 +3600,7 @@ msgid "" "such as chess or stockfish." msgstr "" -#: gnu/packages/games.scm:1880 +#: gnu/packages/games.scm:1881 msgid "" "The GNU backgammon application (also known as \"gnubg\") can\n" "be used for playing, analyzing and teaching the game. It has an advanced\n" @@ -3484,7 +3609,7 @@ msgid "" "also features an attractive, 3D representation of the playing board." msgstr "" -#: gnu/packages/games.scm:1921 +#: gnu/packages/games.scm:1922 msgid "" "GNUbik is a puzzle game in which you must manipulate a cube to make\n" "each of its faces have a uniform color. The game is customizable, allowing\n" @@ -3493,13 +3618,13 @@ msgid "" "scriptable with Guile." msgstr "" -#: gnu/packages/games.scm:1944 +#: gnu/packages/games.scm:1945 msgid "" "GNU Shogi is a program that plays the game Shogi (Japanese\n" "Chess). It is similar to standard chess but this variant is far more complicated." msgstr "" -#: gnu/packages/games.scm:1974 +#: gnu/packages/games.scm:1975 msgid "" "LTris is a tetris clone: differently shaped blocks are falling down the\n" "rectangular playing field and can be moved sideways or rotated by 90 degree\n" @@ -3513,7 +3638,7 @@ msgid "" "watch your CPU playing while enjoying a cup of tea!" msgstr "" -#: gnu/packages/games.scm:2097 +#: gnu/packages/games.scm:2098 msgid "" "NetHack is a single player dungeon exploration game that runs\n" "on a wide variety of computer systems, with a variety of graphical and text\n" @@ -3527,7 +3652,7 @@ msgid "" "role, and your gender." msgstr "" -#: gnu/packages/games.scm:2141 +#: gnu/packages/games.scm:2142 msgid "" "PipeWalker is a simple puzzle game with many diffent themes: connect all\n" "computers to one network server, bring water from a source to the taps, etc.\n" @@ -3536,17 +3661,17 @@ msgid "" "Every puzzle has a complete solution, although there may be more than one." msgstr "" -#: gnu/packages/games.scm:2190 +#: gnu/packages/games.scm:2191 msgid "PrBoom+ is a Doom source port developed from the original PrBoom project." msgstr "" -#: gnu/packages/games.scm:2240 +#: gnu/packages/games.scm:2241 msgid "" "ReTux is an action platformer loosely inspired by the Mario games,\n" "utilizing the art assets from the @code{SuperTux} project." msgstr "" -#: gnu/packages/games.scm:2350 +#: gnu/packages/games.scm:2351 msgid "" "RogueBox Adventures is a graphical roguelike with strong influences\n" "from sandbox games like Minecraft or Terraria. The main idea of RogueBox\n" @@ -3554,7 +3679,7 @@ msgid "" "can be explored and changed freely." msgstr "" -#: gnu/packages/games.scm:2462 +#: gnu/packages/games.scm:2463 msgid "" "Barbie Seahorse Adventures is a retro style platform arcade game.\n" "You are Barbie the seahorse who travels through the jungle, up to the\n" @@ -3564,27 +3689,27 @@ msgid "" "and defeat them with your bubbles!" msgstr "" -#: gnu/packages/games.scm:2522 +#: gnu/packages/games.scm:2523 msgid "" "Solarus is a 2D game engine written in C++, that can run games\n" "scripted in Lua. It has been designed with 16-bit classic Action-RPGs\n" "in mind." msgstr "" -#: gnu/packages/games.scm:2551 +#: gnu/packages/games.scm:2552 msgid "" "Solarus Quest Editor is a graphical user interface to create and\n" "modify quests for the Solarus engine." msgstr "" -#: gnu/packages/games.scm:2627 +#: gnu/packages/games.scm:2628 msgid "" "In SuperStarfighter, up to four local players compete in a\n" "2D arena with fast-moving ships and missiles. Different game types are\n" "available, as well as a single-player mode with AI-controlled ships." msgstr "" -#: gnu/packages/games.scm:2760 +#: gnu/packages/games.scm:2761 msgid "" "Trigger-rally is a 3D rally simulation with great physics\n" "for drifting on over 200 maps. Different terrain materials like dirt,\n" @@ -3596,17 +3721,17 @@ msgid "" "equipped with spoken co-driver notes and co-driver icons." msgstr "" -#: gnu/packages/games.scm:2816 +#: gnu/packages/games.scm:2817 msgid "" "This package provides @command{ufo2map}, a program used to generate\n" "maps for the UFO: Alien Invasion strategy game." msgstr "" -#: gnu/packages/games.scm:2858 +#: gnu/packages/games.scm:2859 msgid "This package contains maps and other assets for UFO: Alien Invasion." msgstr "" -#: gnu/packages/games.scm:2945 +#: gnu/packages/games.scm:2946 msgid "" "UFO: Alien Invasion is a tactical strategy game set in the year 2084.\n" "You control a secret organisation charged with defending Earth from a brutal\n" @@ -3624,11 +3749,11 @@ msgid "" "properly." msgstr "" -#: gnu/packages/games.scm:2982 +#: gnu/packages/games.scm:2983 msgid "A graphical user interface for the package @code{gnushogi}." msgstr "" -#: gnu/packages/games.scm:3035 +#: gnu/packages/games.scm:3036 msgid "" "L'Abbaye des Morts is a 2D platform game set in 13th century\n" "France. The Cathars, who preach about good Christian beliefs, were being\n" @@ -3637,14 +3762,14 @@ msgid "" "that beneath its ruins lay buried an ancient evil." msgstr "" -#: gnu/packages/games.scm:3081 +#: gnu/packages/games.scm:3082 msgid "" "Angband is a Classic dungeon exploration roguelike. Explore\n" "the depths below Angband, seeking riches, fighting monsters, and preparing to\n" "fight Morgoth, the Lord of Darkness." msgstr "" -#: gnu/packages/games.scm:3129 +#: gnu/packages/games.scm:3130 msgid "" "Pingus is a free Lemmings-like puzzle game in which the player takes\n" "command of a bunch of small animals and has to guide them through levels.\n" @@ -3654,21 +3779,21 @@ msgid "" "level's exit. The game is presented in a 2D side view." msgstr "" -#: gnu/packages/games.scm:3152 +#: gnu/packages/games.scm:3153 msgid "" "The GNU Talk Filters are programs that convert English text\n" "into stereotyped or otherwise humorous dialects. The filters are provided as\n" "a C library, so they can easily be integrated into other programs." msgstr "" -#: gnu/packages/games.scm:3196 +#: gnu/packages/games.scm:3197 msgid "" "The player controls a character (one of three: Good, Bad, and Dead),\n" "dodges the missiles (lots of it cover the screen, but the character's hitbox\n" "is very small), and shoot at the adversaries that keep appear on the screen." msgstr "" -#: gnu/packages/games.scm:3239 +#: gnu/packages/games.scm:3240 msgid "" "CMatrix simulates the display from \"The Matrix\" and is\n" "based on the screensaver from the movie's website. It works with terminal\n" @@ -3676,14 +3801,14 @@ msgid "" "asynchronously and at a user-defined speed." msgstr "" -#: gnu/packages/games.scm:3270 +#: gnu/packages/games.scm:3271 msgid "" "GNU Chess is a chess engine. It allows you to compete\n" "against the computer in a game of chess, either through the default terminal\n" "interface or via an external visual interface such as GNU XBoard." msgstr "" -#: gnu/packages/games.scm:3332 +#: gnu/packages/games.scm:3333 msgid "" "GNU FreeDink is a free and portable re-implementation of the engine\n" "for the role-playing game Dink Smallwood. It supports not only the original\n" @@ -3691,17 +3816,17 @@ msgid "" "To that extent, it also includes a front-end for managing all of your D-Mods." msgstr "" -#: gnu/packages/games.scm:3360 +#: gnu/packages/games.scm:3361 msgid "This package contains the game data of GNU Freedink." msgstr "" -#: gnu/packages/games.scm:3383 +#: gnu/packages/games.scm:3384 msgid "" "DFArc makes it easy to play and manage the GNU FreeDink game\n" "and its numerous D-Mods." msgstr "" -#: gnu/packages/games.scm:3453 +#: gnu/packages/games.scm:3454 msgid "" "GNU XBoard is a graphical board for all varieties of chess,\n" "including international chess, xiangqi (Chinese chess), shogi (Japanese chess)\n" @@ -3710,7 +3835,7 @@ msgid "" "Portable Game Notation." msgstr "" -#: gnu/packages/games.scm:3488 +#: gnu/packages/games.scm:3489 msgid "" "GNU Typist is a universal typing tutor. It can be used to learn and\n" "practice touch-typing. Several tutorials are included; in addition to\n" @@ -3719,7 +3844,7 @@ msgid "" "are primarily in English, however some in other languages are provided." msgstr "" -#: gnu/packages/games.scm:3560 +#: gnu/packages/games.scm:3561 msgid "" "The Irrlicht Engine is a high performance realtime 3D engine written in\n" "C++. Features include an OpenGL renderer, extensible materials, scene graph\n" @@ -3727,7 +3852,7 @@ msgid "" "for common mesh file formats, and collision detection." msgstr "" -#: gnu/packages/games.scm:3611 +#: gnu/packages/games.scm:3612 msgid "" "M.A.R.S. is a 2D space shooter with pretty visual effects and\n" "attractive physics. Players can battle each other or computer controlled\n" @@ -3735,7 +3860,7 @@ msgid "" "match, cannon keep, and grave-itation pit." msgstr "" -#: gnu/packages/games.scm:3650 +#: gnu/packages/games.scm:3651 msgid "" "Glk defines a portable API for applications with text UIs. It was\n" "primarily designed for interactive fiction, but it should be suitable for many\n" @@ -3744,7 +3869,7 @@ msgid "" "using the @code{curses.h} library for screen control." msgstr "" -#: gnu/packages/games.scm:3690 +#: gnu/packages/games.scm:3691 msgid "" "Glulx is a 32-bit portable virtual machine intended for writing and\n" "playing interactive fiction. It was designed by Andrew Plotkin to relieve\n" @@ -3752,28 +3877,28 @@ msgid "" "reference interpreter, using the Glk API." msgstr "" -#: gnu/packages/games.scm:3716 +#: gnu/packages/games.scm:3717 msgid "" "Fifechan is a lightweight cross platform GUI library written in C++\n" "specifically designed for games. It has a built in set of extendable GUI\n" "Widgets, and allows users to create more." msgstr "" -#: gnu/packages/games.scm:3791 +#: gnu/packages/games.scm:3792 msgid "" "@acronym{FIFE, Flexible Isometric Free Engine} is a multi-platform\n" "isometric game engine. Python bindings are included allowing users to create\n" "games using Python as well as C++." msgstr "" -#: gnu/packages/games.scm:3826 +#: gnu/packages/games.scm:3827 msgid "" "Fizmo is a console-based Z-machine interpreter. It is used to play\n" "interactive fiction, also known as text adventures, which were implemented\n" "either by Infocom or created using the Inform compiler." msgstr "" -#: gnu/packages/games.scm:3849 +#: gnu/packages/games.scm:3850 msgid "" "GNU Go is a program that plays the game of Go, in which players\n" "place stones on a grid to form territory or capture other stones. While\n" @@ -3784,7 +3909,7 @@ msgid "" "Protocol)." msgstr "" -#: gnu/packages/games.scm:3878 +#: gnu/packages/games.scm:3879 msgid "" "Extreme Tux Racer, or etracer as it is called for short, is\n" "a simple OpenGL racing game featuring Tux, the Linux mascot. The goal of the\n" @@ -3797,7 +3922,7 @@ msgid "" "This game is based on the GPL version of the famous game TuxRacer." msgstr "" -#: gnu/packages/games.scm:3952 +#: gnu/packages/games.scm:3953 msgid "" "SuperTuxKart is a 3D kart racing game, with a focus on\n" "having fun over realism. You can play with up to 4 friends on one PC, racing\n" @@ -3805,7 +3930,7 @@ msgid "" "also available." msgstr "" -#: gnu/packages/games.scm:4028 +#: gnu/packages/games.scm:4029 msgid "" "Unknown Horizons is a 2D realtime strategy simulation with an emphasis\n" "on economy and city building. Expand your small settlement to a strong and\n" @@ -3814,7 +3939,7 @@ msgid "" "trade and diplomacy." msgstr "" -#: gnu/packages/games.scm:4081 +#: gnu/packages/games.scm:4082 msgid "" "GNUjump is a simple, yet addictive game in which you must jump from\n" "platform to platform to avoid falling, while the platforms drop at faster rates\n" @@ -3822,7 +3947,7 @@ msgid "" "falling, themeable graphics and sounds, and replays." msgstr "" -#: gnu/packages/games.scm:4117 +#: gnu/packages/games.scm:4118 msgid "" "The Battle for Wesnoth is a fantasy, turn based tactical strategy game,\n" "with several single player campaigns, and multiplayer games (both networked and\n" @@ -3834,20 +3959,20 @@ msgid "" "next campaign." msgstr "" -#: gnu/packages/games.scm:4137 +#: gnu/packages/games.scm:4138 msgid "" "This package contains a dedicated server for @emph{The\n" "Battle for Wesnoth}." msgstr "" -#: gnu/packages/games.scm:4179 +#: gnu/packages/games.scm:4180 msgid "" "Gamine is a game designed for young children who are learning to use the\n" "mouse and keyboard. The child uses the mouse to draw colored dots and lines\n" "on the screen and keyboard to display letters." msgstr "" -#: gnu/packages/games.scm:4211 +#: gnu/packages/games.scm:4212 msgid "" "ManaPlus is a 2D MMORPG client for game servers. It is the only\n" "fully supported client for @uref{http://www.themanaworld.org, The mana\n" @@ -3855,7 +3980,7 @@ msgid "" "@uref{http://landoffire.org, Land of fire}." msgstr "" -#: gnu/packages/games.scm:4243 +#: gnu/packages/games.scm:4244 msgid "" "OpenTTD is a game in which you transport goods and\n" "passengers by land, water and air. It is a re-implementation of Transport\n" @@ -3865,7 +3990,7 @@ msgid "" "engine. When you start it you will be prompted to download a graphics set." msgstr "" -#: gnu/packages/games.scm:4303 +#: gnu/packages/games.scm:4304 msgid "" "The OpenGFX project is an implementation of the OpenTTD base graphics\n" "set that aims to ensure the best possible out-of-the-box experience.\n" @@ -3880,29 +4005,29 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:4361 +#: gnu/packages/games.scm:4362 msgid "" "OpenSFX is a set of free base sounds for OpenTTD which make\n" "it possible to play OpenTTD without requiring the proprietary sound files from\n" "the original Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4404 +#: gnu/packages/games.scm:4405 msgid "" "OpenMSX is a music set for OpenTTD which makes it possible\n" "to play OpenTTD without requiring the proprietary music from the original\n" "Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4473 +#: gnu/packages/games.scm:4474 msgid "openrct2-title-sequences is a set of title sequences for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4513 +#: gnu/packages/games.scm:4514 msgid "openrct2-objects is a set of objects for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4576 +#: gnu/packages/games.scm:4577 msgid "" "OpenRCT2 is a free software re-implementation of\n" "RollerCoaster Tycoon 2 (RCT2). The gameplay revolves around building and\n" @@ -3912,27 +4037,27 @@ msgid "" "images, etc.)" msgstr "" -#: gnu/packages/games.scm:4630 +#: gnu/packages/games.scm:4631 msgid "" "The Emilia Pinball Project is a pinball simulator. There\n" "are only two levels to play with, but they are very addictive." msgstr "" -#: gnu/packages/games.scm:4659 +#: gnu/packages/games.scm:4660 msgid "" "Pioneers is an emulation of the board game The Settlers of\n" "Catan. It can be played on a local network, on the internet, and with AI\n" "players." msgstr "" -#: gnu/packages/games.scm:4701 +#: gnu/packages/games.scm:4702 msgid "" "The goal of this logic game is to open all cards in a 6x6\n" "grid, using a number of hints as to their relative position. The game idea\n" "is attributed to Albert Einstein." msgstr "" -#: gnu/packages/games.scm:4731 +#: gnu/packages/games.scm:4732 msgid "" "POWWOW is a client software which can be used for telnet as well as for\n" "@dfn{Multi-User Dungeon} (MUD). Additionally it can serve as a nice client for\n" @@ -3940,21 +4065,21 @@ msgid "" "http://lavachat.symlynx.com/unix/" msgstr "" -#: gnu/packages/games.scm:4838 +#: gnu/packages/games.scm:4839 msgid "" "Red Eclipse is an arena shooter, created from the Cube2 engine.\n" "Offering an innovative parkour system and distinct but all potent weapons,\n" "Red Eclipse provides fast paced and accessible gameplay." msgstr "" -#: gnu/packages/games.scm:4903 +#: gnu/packages/games.scm:4904 msgid "" "Grue Hunter is a text adventure game written in Perl. You must make\n" "your way through an underground cave system in search of the Grue. Can you\n" "capture it and get out alive?" msgstr "" -#: gnu/packages/games.scm:4942 +#: gnu/packages/games.scm:4943 msgid "" "lierolibre is an earthworm action game where you fight another player\n" "(or the computer) underground using a wide array of weapons.\n" @@ -3979,14 +4104,14 @@ msgid "" "fullscreen, use F5 or Alt+Enter." msgstr "" -#: gnu/packages/games.scm:5021 +#: gnu/packages/games.scm:5022 msgid "" "Tennix is a 2D tennis game. You can play against the\n" "computer or against another player using the keyboard. The game runs\n" "in-window at 640x480 resolution or fullscreen." msgstr "" -#: gnu/packages/games.scm:5105 +#: gnu/packages/games.scm:5106 msgid "" "Warzone 2100 offers campaign, multi-player, and single-player skirmish\n" "modes. An extensive tech tree with over 400 different technologies, combined\n" @@ -3994,7 +4119,7 @@ msgid "" "tactics." msgstr "" -#: gnu/packages/games.scm:5184 +#: gnu/packages/games.scm:5185 msgid "" "In Widelands, you are the regent of a small clan. You start out with\n" "nothing but your headquarters, where all your resources are stored.\n" @@ -4016,7 +4141,7 @@ msgid "" "of war. Widelands also offers an Artificial Intelligence to challenge you." msgstr "" -#: gnu/packages/games.scm:5236 +#: gnu/packages/games.scm:5237 msgid "" "In the year 2579, the intergalactic weapons corporation, WEAPCO, has\n" "dominated the galaxy. Guide Chris Bainfield and his friend Sid Wilson on\n" @@ -4025,7 +4150,7 @@ msgid "" "in strikes against the evil corporation." msgstr "" -#: gnu/packages/games.scm:5267 +#: gnu/packages/games.scm:5268 msgid "" "In this game you are the captain of the cargo ship Chromium B.S.U. and\n" "are responsible for delivering supplies to the troops on the front line. Your\n" @@ -4033,7 +4158,7 @@ msgid "" "safety of the Chromium vessel." msgstr "" -#: gnu/packages/games.scm:5350 +#: gnu/packages/games.scm:5351 msgid "" "Tux Paint is a free drawing program designed for young children (kids\n" "ages 3 and up). It has a simple, easy-to-use interface; fun sound effects;\n" @@ -4042,23 +4167,23 @@ msgid "" "your child be creative." msgstr "" -#: gnu/packages/games.scm:5390 +#: gnu/packages/games.scm:5391 msgid "" "This package contains a set of \"Rubber Stamp\" images which can be used\n" "with the \"Stamp\" tool within Tux Paint." msgstr "" -#: gnu/packages/games.scm:5439 +#: gnu/packages/games.scm:5440 msgid "Tux Paint Config is a graphical configuration editor for Tux Paint." msgstr "" -#: gnu/packages/games.scm:5491 +#: gnu/packages/games.scm:5492 msgid "" "SuperTux is a classic 2D jump'n run sidescroller game in\n" "a style similar to the original Super Mario games." msgstr "" -#: gnu/packages/games.scm:5523 +#: gnu/packages/games.scm:5524 msgid "" "TinTin++ is a MUD client which supports MCCP (Mud Client Compression\n" "Protocol), MMCP (Mud Master Chat Protocol), xterm 256 colors, most TELNET\n" @@ -4066,7 +4191,7 @@ msgid "" "Linux / Mac OS X servers, and an auto mapper with a VT100 map display." msgstr "" -#: gnu/packages/games.scm:5563 +#: gnu/packages/games.scm:5564 msgid "" "Learn programming, playing with ants and spider webs ;-)\n" "Your robot ant can be programmed in many languages: OCaml, Python, C, C++,\n" @@ -4074,14 +4199,14 @@ msgid "" "programmers may also add their own favorite language." msgstr "" -#: gnu/packages/games.scm:5602 +#: gnu/packages/games.scm:5603 msgid "" "Bambam is a simple baby keyboard (and gamepad) masher\n" "application that locks the keyboard and mouse and instead displays bright\n" "colors, pictures, and sounds." msgstr "" -#: gnu/packages/games.scm:5663 +#: gnu/packages/games.scm:5664 msgid "" "Mr. Rescue is an arcade styled 2d action game centered around evacuating\n" "civilians from burning buildings. The game features fast-paced fire\n" @@ -4089,7 +4214,7 @@ msgid "" "throwing people around in pseudo-randomly generated buildings." msgstr "" -#: gnu/packages/games.scm:5770 +#: gnu/packages/games.scm:5771 msgid "" "HyperRogue is a game in which the player collects treasures and fights\n" "monsters -- rogue-like but for the fact that it is played on the hyperbolic\n" @@ -4103,13 +4228,13 @@ msgid "" "symbols, it still needs graphics to render the non-euclidean world." msgstr "" -#: gnu/packages/games.scm:5817 +#: gnu/packages/games.scm:5818 msgid "" "Kobo Deluxe is an enhanced version of Akira Higuchi's XKobo graphical game\n" "for Un*x systems with X11." msgstr "" -#: gnu/packages/games.scm:5845 +#: gnu/packages/games.scm:5846 msgid "" "Freeciv is a turn-based empire building strategy game\n" "inspired by the history of human civilization. The game commences in\n" @@ -4117,7 +4242,7 @@ msgid "" "into the Space Age." msgstr "" -#: gnu/packages/games.scm:5878 +#: gnu/packages/games.scm:5879 msgid "" "@code{No More Secrets} provides a command line tool called \"nms\"\n" "that recreates the famous data decryption effect seen on screen in the 1992\n" @@ -4128,25 +4253,25 @@ msgid "" "starting a decryption sequence to reveal the original plaintext characters." msgstr "" -#: gnu/packages/games.scm:5906 +#: gnu/packages/games.scm:5907 msgid "This package contains the data files required for MegaGlest." msgstr "" -#: gnu/packages/games.scm:5961 +#: gnu/packages/games.scm:5962 msgid "" "MegaGlest is a cross-platform 3D real-time strategy (RTS)\n" "game, where you control the armies of one of seven different factions: Tech,\n" "Magic, Egypt, Indians, Norsemen, Persian or Romans." msgstr "" -#: gnu/packages/games.scm:6013 +#: gnu/packages/games.scm:6014 msgid "" "In FreeGish you control Gish, a ball of tar who lives\n" "happily with his girlfriend Brea, until one day a mysterious dark creature\n" "emerges from a sewer hole and pulls her below ground." msgstr "" -#: gnu/packages/games.scm:6049 +#: gnu/packages/games.scm:6050 msgid "" "C-Dogs SDL is a classic overhead run-and-gun game,\n" "supporting up to 4 players in co-op and deathmatch modes. Customize your\n" @@ -4154,21 +4279,21 @@ msgid "" "over 100 user-created campaigns." msgstr "" -#: gnu/packages/games.scm:6149 +#: gnu/packages/games.scm:6150 msgid "" "Kiki the nano bot is a 3D puzzle game. It is basically a\n" "mixture of the games Sokoban and Kula-World. Your task is to help Kiki, a\n" "small robot living in the nano world, repair its maker." msgstr "" -#: gnu/packages/games.scm:6225 +#: gnu/packages/games.scm:6226 msgid "" "Teeworlds is an online multiplayer game. Battle with up to\n" "16 players in a variety of game modes, including Team Deathmatch and Capture\n" "The Flag. You can even design your own maps!" msgstr "" -#: gnu/packages/games.scm:6285 +#: gnu/packages/games.scm:6286 msgid "" "Enigma is a puzzle game with 550 unique levels. The object\n" "of the game is to find and uncover pairs of identically colored ‘Oxyd’ stones.\n" @@ -4180,7 +4305,7 @@ msgid "" "with the mouse isn’t always trivial." msgstr "" -#: gnu/packages/games.scm:6319 +#: gnu/packages/games.scm:6320 msgid "" "Chroma is an abstract puzzle game. A variety of colourful\n" "shapes are arranged in a series of increasingly complex patterns, forming\n" @@ -4190,7 +4315,7 @@ msgid "" "becoming difficult enough to tax even the brightest of minds." msgstr "" -#: gnu/packages/games.scm:6384 +#: gnu/packages/games.scm:6385 msgid "" "Fish Fillets NG is strictly a puzzle game. The goal in\n" "every of the seventy levels is always the same: find a safe way out. The fish\n" @@ -4199,14 +4324,14 @@ msgid "" "fish. The whole game is accompanied by quiet, comforting music." msgstr "" -#: gnu/packages/games.scm:6452 +#: gnu/packages/games.scm:6453 msgid "" "Dungeon Crawl Stone Soup (also known as \"Crawl\" or DCSS\n" "for short) is a roguelike adventure through dungeons filled with dangerous\n" "monsters in a quest to find the mystifyingly fabulous Orb of Zot." msgstr "" -#: gnu/packages/games.scm:6529 +#: gnu/packages/games.scm:6530 msgid "" "Lugaru is a third-person action game. The main character,\n" "Turner, is an anthropomorphic rebel bunny rabbit with impressive combat skills.\n" @@ -4216,11 +4341,11 @@ msgid "" "fight against their plot and save his fellow rabbits from slavery." msgstr "" -#: gnu/packages/games.scm:6574 +#: gnu/packages/games.scm:6575 msgid "0ad-data provides the data files required by the game 0ad." msgstr "" -#: gnu/packages/games.scm:6710 +#: gnu/packages/games.scm:6711 msgid "" "0 A.D. is a real-time strategy (RTS) game of ancient\n" "warfare. It's a historically-based war/economy game that allows players to\n" @@ -4230,7 +4355,7 @@ msgid "" "0ad needs a window manager that supports 'Extended Window Manager Hints'." msgstr "" -#: gnu/packages/games.scm:6776 +#: gnu/packages/games.scm:6777 msgid "" "The original Colossal Cave Adventure from 1976 was the origin of all\n" "text adventures, dungeon-crawl (computer) games, and computer-hosted\n" @@ -4239,7 +4364,7 @@ msgid "" "``adventure 2.5'' and ``430-point adventure''." msgstr "" -#: gnu/packages/games.scm:6899 +#: gnu/packages/games.scm:6900 msgid "" "Tales of Maj’Eyal (ToME) RPG, featuring tactical turn-based\n" "combat and advanced character building. Play as one of many unique races and\n" @@ -4250,21 +4375,21 @@ msgid "" "Tales of Maj’Eyal offers engaging roguelike gameplay for the 21st century." msgstr "" -#: gnu/packages/games.scm:6945 +#: gnu/packages/games.scm:6946 msgid "" "Quakespasm is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7002 +#: gnu/packages/games.scm:7003 msgid "" "vkquake is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7067 +#: gnu/packages/games.scm:7068 msgid "" "Yamagi Quake II is an enhanced client for id Software's Quake II.\n" "The main focus is an unchanged single player experience like back in 1997,\n" @@ -4274,18 +4399,18 @@ msgid "" "making Yamagi Quake II one of the most solid Quake II implementations available." msgstr "" -#: gnu/packages/games.scm:7100 +#: gnu/packages/games.scm:7101 msgid "Nudoku is a ncurses-based Sudoku game for your terminal." msgstr "" -#: gnu/packages/games.scm:7146 +#: gnu/packages/games.scm:7147 msgid "" "The Butterfly Effect (tbe) is a game that uses\n" "realistic physics simulations to combine lots of simple mechanical\n" "elements to achieve a simple goal in the most complex way possible." msgstr "" -#: gnu/packages/games.scm:7192 +#: gnu/packages/games.scm:7193 msgid "" "Pioneer is a space adventure game set in our galaxy at the turn of the\n" "31st century. The game is open-ended, and you are free to eke out whatever\n" @@ -4296,14 +4421,14 @@ msgid "" "whatever you make of it." msgstr "" -#: gnu/packages/games.scm:7221 +#: gnu/packages/games.scm:7222 msgid "" "Badass generates false commits for a range of dates, essentially\n" "hacking the gamification of contribution graphs on platforms such as\n" "Github or Gitlab." msgstr "" -#: gnu/packages/games.scm:7294 +#: gnu/packages/games.scm:7295 msgid "" "Colobot: Gold Edition is a real-time strategy game, where\n" "you can program your units (bots) in a language called CBOT, which is similar\n" @@ -4311,7 +4436,7 @@ msgid "" "You can save humanity and get programming skills!" msgstr "" -#: gnu/packages/games.scm:7386 +#: gnu/packages/games.scm:7387 msgid "" "GZdoom is a port of the Doom 2 game engine, with a modern\n" "renderer. It improves modding support with ZDoom's advanced mapping features\n" @@ -4319,14 +4444,14 @@ msgid "" "Strife, Chex Quest, and fan-created games like Harmony, Hacx and Freedoom." msgstr "" -#: gnu/packages/games.scm:7425 +#: gnu/packages/games.scm:7426 msgid "" "Odamex is a modification of the Doom engine that\n" "allows players to easily join servers dedicated to playing Doom\n" "online." msgstr "" -#: gnu/packages/games.scm:7453 +#: gnu/packages/games.scm:7454 msgid "" "Chocolate Doom takes a different approach to other source ports. Its\n" "aim is to accurately reproduce the experience of playing Vanilla Doom. It is\n" @@ -4339,7 +4464,7 @@ msgid "" "affect gameplay)." msgstr "" -#: gnu/packages/games.scm:7493 +#: gnu/packages/games.scm:7494 msgid "" "Crispy Doom is a friendly fork of Chocolate Doom that provides a higher\n" "display resolution, removes the static limits of the Doom engine and offers\n" @@ -4348,21 +4473,21 @@ msgid "" "original." msgstr "" -#: gnu/packages/games.scm:7566 +#: gnu/packages/games.scm:7567 msgid "This package provides C11 / gnu11 utilities C library" msgstr "" -#: gnu/packages/games.scm:7635 +#: gnu/packages/games.scm:7636 msgid "" "Fortune is a command-line utility which displays a random\n" "quotation from a collection of quotes." msgstr "" -#: gnu/packages/games.scm:7677 +#: gnu/packages/games.scm:7678 msgid "Xonotic-data provides the data files required by the game Xonotic." msgstr "" -#: gnu/packages/games.scm:7873 +#: gnu/packages/games.scm:7874 msgid "" "Xonotic is a free, fast-paced first-person shooter.\n" "The project is geared towards providing addictive arena shooter\n" @@ -4372,7 +4497,7 @@ msgid "" "open-source FPS of its kind." msgstr "" -#: gnu/packages/games.scm:7920 +#: gnu/packages/games.scm:7921 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4381,7 +4506,7 @@ msgid "" "ncurses for text display." msgstr "" -#: gnu/packages/games.scm:7964 +#: gnu/packages/games.scm:7966 msgid "" "Naev is a 2d action/rpg space game that combines elements from\n" "the action, RPG and simulation genres. You pilot a spaceship from\n" @@ -4393,7 +4518,7 @@ msgid "" "of lore accompanying everything from planets to equipment." msgstr "" -#: gnu/packages/games.scm:8013 +#: gnu/packages/games.scm:8015 msgid "" "Frotz is an interpreter for Infocom games and\n" "other Z-machine games in the text adventure/interactive fiction genre.\n" @@ -4405,7 +4530,7 @@ msgid "" "to play games on webpages. It can also be made into a chat bot." msgstr "" -#: gnu/packages/games.scm:8075 +#: gnu/packages/games.scm:8077 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4415,7 +4540,7 @@ msgid "" "when packaged in Blorb container files or optionally from individual files." msgstr "" -#: gnu/packages/games.scm:8166 +#: gnu/packages/games.scm:8168 msgid "" "Frozen-Bubble is a clone of the popular Puzzle Bobble game, in which\n" "you attempt to shoot bubbles into groups of the same color to cause them to\n" @@ -4430,7 +4555,7 @@ msgid "" "their own levels." msgstr "" -#: gnu/packages/games.scm:8199 +#: gnu/packages/games.scm:8201 msgid "" "Libmanette is a small GObject library giving you simple\n" "access to game controllers. It supports the de-facto standard gamepads as\n" @@ -4438,7 +4563,7 @@ msgid "" "GameController." msgstr "" -#: gnu/packages/games.scm:8245 +#: gnu/packages/games.scm:8247 msgid "" "Quadrapassel comes from the classic falling-block game,\n" "Tetris. The goal of the game is to create complete horizontal lines of\n" @@ -4450,7 +4575,7 @@ msgid "" "your score gets higher, you level up and the blocks fall faster." msgstr "" -#: gnu/packages/games.scm:8294 +#: gnu/packages/games.scm:8296 msgid "" "Endless Sky is a 2D space trading and combat game. Explore\n" "other star systems. Earn money by trading, carrying passengers, or completing\n" @@ -4460,7 +4585,7 @@ msgid "" "civilized than your own." msgstr "" -#: gnu/packages/games.scm:8443 +#: gnu/packages/games.scm:8445 msgid "" "StepMania is a dance and rhythm game. It features 3D\n" "graphics, keyboard and dance pad support, and an editor for creating your own\n" @@ -4470,7 +4595,7 @@ msgid "" "to download and install them in @file{$HOME/.stepmania-X.Y/Songs} directory." msgstr "" -#: gnu/packages/games.scm:8479 +#: gnu/packages/games.scm:8481 msgid "" "@i{oshu!} is a minimalist variant of the @i{osu!} rhythm game,\n" "which is played by pressing buttons and following along sliders as they appear\n" @@ -4480,7 +4605,7 @@ msgid "" "download and unpack them separately." msgstr "" -#: gnu/packages/games.scm:8562 +#: gnu/packages/games.scm:8564 msgid "" "Battle Tanks (also known as \"btanks\") is a funny battle\n" "game, where you can choose one of three vehicles and eliminate your enemy\n" @@ -4489,7 +4614,7 @@ msgid "" "and cooperative." msgstr "" -#: gnu/packages/games.scm:8596 +#: gnu/packages/games.scm:8598 msgid "" "Slime Volley is a 2D arcade-oriented volleyball simulation, in\n" "the spirit of some Java games of the same name.\n" @@ -4500,7 +4625,7 @@ msgid "" "the ground, the set ends and all balls are served again." msgstr "" -#: gnu/packages/games.scm:8626 +#: gnu/packages/games.scm:8628 msgid "" "Slingshot is a two-dimensional strategy game where two\n" "players attempt to shoot one another through a section of space populated by\n" @@ -4508,14 +4633,14 @@ msgid "" "affected by the gravity of the planets." msgstr "" -#: gnu/packages/games.scm:8674 +#: gnu/packages/games.scm:8676 msgid "" "4D-TRIS is an alteration of the well-known Tetris game. The\n" "game field is extended to 4D space, which has to filled up by the gamer with\n" "4D hyper cubes." msgstr "" -#: gnu/packages/games.scm:8751 +#: gnu/packages/games.scm:8753 msgid "" "Arx Libertatis is a cross-platform port of Arx Fatalis, a 2002\n" "first-person role-playing game / dungeon crawler developed by Arkane Studios.\n" @@ -4525,7 +4650,7 @@ msgid "" "where the player draws runes in real time to effect the desired spell." msgstr "" -#: gnu/packages/games.scm:8797 +#: gnu/packages/games.scm:8799 msgid "" "The Legend of Edgar is a 2D platform game with a persistent world.\n" "When Edgar's father fails to return home after venturing out one dark and stormy night,\n" @@ -4533,7 +4658,7 @@ msgid "" "a fortress beyond the forbidden swamp." msgstr "" -#: gnu/packages/games.scm:8899 +#: gnu/packages/games.scm:8901 msgid "" "OpenClonk is a multiplayer action/tactics/skill game. It is\n" "often referred to as a mixture of The Settlers and Worms. In a simple 2D\n" @@ -4543,20 +4668,20 @@ msgid "" "fight each other on an arena-like map." msgstr "" -#: gnu/packages/games.scm:8931 +#: gnu/packages/games.scm:8933 msgid "" "Flare (Free Libre Action Roleplaying Engine) is a simple\n" "game engine built to handle a very specific kind of game: single-player 2D\n" "action RPGs." msgstr "" -#: gnu/packages/games.scm:8994 +#: gnu/packages/games.scm:8996 msgid "" "Flare is a single-player 2D action RPG with\n" "fast-paced action and a dark fantasy style." msgstr "" -#: gnu/packages/games.scm:9046 +#: gnu/packages/games.scm:9048 msgid "" "Far below the surface of the planet is a place of limitless\n" "power. Those that seek to control such a utopia will soon bring an end to\n" @@ -4570,7 +4695,7 @@ msgid "" "Orcus Dome from evil." msgstr "" -#: gnu/packages/games.scm:9108 +#: gnu/packages/games.scm:9110 msgid "" "Marble Marcher is a video game that uses a fractal physics\n" "engine and fully procedural rendering to produce beautiful and unique\n" @@ -4580,7 +4705,7 @@ msgid "" "levels to unlock." msgstr "" -#: gnu/packages/games.scm:9159 +#: gnu/packages/games.scm:9161 msgid "" "SimGear is a set of libraries designed to be used as\n" "building blocks for quickly assembling 3D simulations, games, and\n" @@ -4588,7 +4713,7 @@ msgid "" "and also provides the base for the FlightGear Flight Simulator." msgstr "" -#: gnu/packages/games.scm:9253 +#: gnu/packages/games.scm:9255 msgid "" "The goal of the FlightGear project is to create a\n" "sophisticated flight simulator framework for use in research or academic\n" @@ -4598,14 +4723,14 @@ msgid "" "simulator." msgstr "" -#: gnu/packages/games.scm:9306 +#: gnu/packages/games.scm:9308 msgid "" "You, as a bunny, have to jump on your opponents to make them\n" "explode. It is a true multiplayer game; you cannot play this alone. You can\n" "play with up to four players simultaneously. It has network support." msgstr "" -#: gnu/packages/games.scm:9373 +#: gnu/packages/games.scm:9375 msgid "" "Hedgewars is a turn based strategy, artillery, action and comedy game,\n" "featuring the antics of pink hedgehogs with attitude as they battle from the\n" @@ -4615,7 +4740,7 @@ msgid "" "and bring the war to your enemy." msgstr "" -#: gnu/packages/games.scm:9407 +#: gnu/packages/games.scm:9409 msgid "" "The gruid module provides packages for easily building\n" "grid-based applications in Go. The library abstracts rendering and input for\n" @@ -4625,13 +4750,13 @@ msgid "" "application." msgstr "" -#: gnu/packages/games.scm:9437 +#: gnu/packages/games.scm:9439 msgid "" "The gruid-tcell module provides a Gruid driver for building\n" "terminal full-window applications." msgstr "" -#: gnu/packages/games.scm:9464 +#: gnu/packages/games.scm:9466 msgid "" "Harmonist: Dayoriah Clan Infiltration is a stealth\n" "coffee-break roguelike game. The game has a heavy focus on tactical\n" @@ -4641,7 +4766,7 @@ msgid "" "on items and player adaptability for character progression." msgstr "" -#: gnu/packages/games.scm:9573 +#: gnu/packages/games.scm:9575 msgid "" "Drascula: The Vampire Strikes Back is a classic humorous 2D\n" "point and click adventure game.\n" @@ -4653,7 +4778,7 @@ msgid "" "the World and demonstrating that he is even more evil than his brother Vlad." msgstr "" -#: gnu/packages/games.scm:9653 +#: gnu/packages/games.scm:9655 msgid "" "Lure of the Temptress is a classic 2D point and click adventure game.\n" "\n" @@ -4672,7 +4797,7 @@ msgid "" "Skorl. Maybe it would be an idea to try and escape..." msgstr "" -#: gnu/packages/games.scm:9752 +#: gnu/packages/games.scm:9754 msgid "" "Flight of the Amazon Queen is a 2D point-and-click\n" "adventure game set in the 1940s.\n" @@ -4689,7 +4814,7 @@ msgid "" "women and 6-foot-tall pygmies." msgstr "" -#: gnu/packages/games.scm:9852 +#: gnu/packages/games.scm:9854 msgid "" "Beneath a Steel Sky is a science-fiction thriller set in a bleak\n" "post-apocalyptic vision of the future. It revolves around Union City,\n" @@ -4712,7 +4837,7 @@ msgid "" "and to seek vengeance for the killing of his tribe." msgstr "" -#: gnu/packages/games.scm:9911 +#: gnu/packages/games.scm:9913 msgid "" "GNU Robots is a game in which you program a robot to explore a world\n" "full of enemies that can hurt it, obstacles and food to be eaten. The goal of\n" @@ -4720,14 +4845,14 @@ msgid "" "may be written in a plain text file in the Scheme programming language." msgstr "" -#: gnu/packages/games.scm:9981 +#: gnu/packages/games.scm:9983 msgid "" "Ri-li is a game in which you drive a wooden toy\n" "steam locomotive across many levels and collect all the coaches to\n" "win." msgstr "" -#: gnu/packages/games.scm:10037 +#: gnu/packages/games.scm:10039 msgid "" "FreeOrion is a turn-based space empire and galactic conquest (4X)\n" "computer game being designed and built by the FreeOrion project. Control an\n" @@ -4737,14 +4862,14 @@ msgid "" "remake of that series or any other game." msgstr "" -#: gnu/packages/games.scm:10093 +#: gnu/packages/games.scm:10095 msgid "" "Leela-zero is a Go engine with no human-provided knowledge, modeled after\n" "the AlphaGo Zero paper. The current best network weights file for the engine\n" "can be downloaded from @url{https://zero.sjeng.org/best-network}." msgstr "" -#: gnu/packages/games.scm:10171 +#: gnu/packages/games.scm:10173 msgid "" "This a tool for Go players which performs the following functions:\n" "@itemize\n" @@ -4756,7 +4881,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:10214 +#: gnu/packages/games.scm:10216 msgid "" "KTuberling is a drawing toy intended for small children and\n" "adults who remain young at heart. The game has no winner; the only purpose is\n" @@ -4775,7 +4900,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10260 +#: gnu/packages/games.scm:10262 msgid "" "Picmi is a number logic game in which cells in a grid have\n" "to be colored or left blank according to numbers given at the side of the\n" @@ -4784,7 +4909,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10297 +#: gnu/packages/games.scm:10299 msgid "" "Kolf is a miniature golf game for one to ten players. The\n" "game is played from an overhead view, with a short bar representing the golf\n" @@ -4803,13 +4928,13 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10341 +#: gnu/packages/games.scm:10343 msgid "" "Shared library and common files for kmahjongg, kshisen and\n" "other Mah Jongg like games." msgstr "" -#: gnu/packages/games.scm:10374 +#: gnu/packages/games.scm:10376 msgid "" "In KMahjongg the tiles are scrambled and staked on top of\n" "each other to resemble a certain shape. The player is then expected to remove\n" @@ -4821,7 +4946,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10416 +#: gnu/packages/games.scm:10418 msgid "" "KShisen is a solitaire-like game played using the standard\n" "set of Mahjong tiles. Unlike Mahjong however, KShisen has only one layer of\n" @@ -4830,7 +4955,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10471 +#: gnu/packages/games.scm:10473 msgid "" "Kajongg is the ancient Chinese board game for 4 players.\n" "\n" @@ -4845,7 +4970,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10513 +#: gnu/packages/games.scm:10515 msgid "" "KBreakout is similar to the classics breakout and xboing,\n" "featuring a number of added graphical enhancements and effects. You control a\n" @@ -4855,7 +4980,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10551 +#: gnu/packages/games.scm:10553 msgid "" "KMines is a classic Minesweeper game. The idea is to\n" "uncover all the squares without blowing up any mines. When a mine is blown\n" @@ -4864,7 +4989,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10588 +#: gnu/packages/games.scm:10590 msgid "" "Konquest is the KDE version of Gnu-Lactic Konquest. Players\n" "conquer other planets by sending ships to them. The goal is to build an\n" @@ -4875,7 +5000,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10627 +#: gnu/packages/games.scm:10629 msgid "" "KBounce is a single player arcade game with the elements of\n" "puzzle. It is played on a field, surrounded by wall, with two or more balls\n" @@ -4885,7 +5010,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10665 +#: gnu/packages/games.scm:10667 msgid "" "KBlocks is the classic Tetris-like falling blocks game.\n" "\n" @@ -4897,7 +5022,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10708 +#: gnu/packages/games.scm:10710 msgid "" "KSudoku is a Sudoku game and solver, supporting a range of\n" "2D and 3D Sudoku variants. In addition to playing Sudoku, it can print Sudoku\n" @@ -4926,7 +5051,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10763 +#: gnu/packages/games.scm:10765 msgid "" "KLines is a simple but highly addictive one player game.\n" "\n" @@ -4943,7 +5068,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10806 +#: gnu/packages/games.scm:10808 msgid "" "KGoldrunner is an action game where the hero runs through a\n" "maze, climbs stairs, dig holes and dodges enemies in order to collect all the\n" @@ -4957,7 +5082,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10849 +#: gnu/packages/games.scm:10851 msgid "" "KDiamond is a three-in-a-row game like Bejeweled. It\n" "features unlimited fun with randomly generated games and five difficulty\n" @@ -4966,7 +5091,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10885 +#: gnu/packages/games.scm:10887 msgid "" "KFourInLine is a board game for two players based on the\n" "Connect-Four game.\n" @@ -4977,7 +5102,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10924 +#: gnu/packages/games.scm:10926 msgid "" "KBlackbox is a game of hide and seek played on a grid of\n" "boxes where the computer has hidden several balls. The position of the hidden\n" @@ -4989,7 +5114,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10964 +#: gnu/packages/games.scm:10966 msgid "" "KNetWalk is a small game where you have to build up a\n" "computer network by rotating the wires to connect the terminals to the server.\n" @@ -5002,7 +5127,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11002 +#: gnu/packages/games.scm:11004 msgid "" "Bomber is a single player arcade game.\n" "\n" @@ -5018,7 +5143,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11047 +#: gnu/packages/games.scm:11049 msgid "" "Granatier is a clone of the classic Bomberman game,\n" "inspired by the work of the Clanbomber clone.\n" @@ -5026,7 +5151,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11085 +#: gnu/packages/games.scm:11087 msgid "" "KsirK is a multi-player network-enabled game. The goal of\n" "the game is simply to conquer the world by attacking your neighbors with your\n" @@ -5051,7 +5176,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11145 +#: gnu/packages/games.scm:11147 msgid "" "Palapeli is a jigsaw puzzle game. Unlike other games in\n" "that genre, you are not limited to aligning pieces on imaginary grids. The\n" @@ -5063,7 +5188,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11184 +#: gnu/packages/games.scm:11186 msgid "" "Kiriki is an addictive and fun dice game, designed to be\n" "played by as many as six players.\n" @@ -5074,7 +5199,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11224 +#: gnu/packages/games.scm:11226 msgid "" "Kigo is an open-source implementation of the popular Go\n" "game.\n" @@ -5091,7 +5216,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11269 +#: gnu/packages/games.scm:11271 msgid "" "Kubrick is a game based on the Rubik's Cube puzzle.\n" "\n" @@ -5104,7 +5229,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11309 +#: gnu/packages/games.scm:11311 msgid "" "Lieutnant Skat (from German \"Offiziersskat\") is a fun and\n" "engaging card game for two players, where the second player is either live\n" @@ -5115,7 +5240,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11347 +#: gnu/packages/games.scm:11349 msgid "" "Kapman is a clone of the well known game Pac-Man.\n" "\n" @@ -5127,7 +5252,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11386 +#: gnu/packages/games.scm:11388 msgid "" "KSpaceduel is a space battle game for one or two players,\n" "where two ships fly around a star in a struggle to be the only survivor.\n" @@ -5135,7 +5260,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11419 +#: gnu/packages/games.scm:11421 msgid "" "Bovo is a Gomoku (from Japanese 五目並べ - lit. \"five\n" "points\") like game for two players, where the opponents alternate in placing\n" @@ -5146,7 +5271,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11457 +#: gnu/packages/games.scm:11459 msgid "" "Killbots is a simple game of evading killer robots.\n" "\n" @@ -5160,7 +5285,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11499 +#: gnu/packages/games.scm:11501 msgid "" "KSnakeDuel is a fast action game where you steer a snake\n" "which has to eat food. While eating the snake grows. But once a player\n" @@ -5170,7 +5295,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11535 +#: gnu/packages/games.scm:11537 msgid "" "In Kollision you use mouse to control a small blue ball in a\n" "closed space environment filled with small red balls, which move about\n" @@ -5181,7 +5306,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11575 +#: gnu/packages/games.scm:11577 msgid "" "KBattleship is a Battle Ship game for KDE.\n" "\n" @@ -5192,7 +5317,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11615 +#: gnu/packages/games.scm:11617 msgid "" "KReversi is a simple one player strategy game played\n" "against the computer.\n" @@ -5205,7 +5330,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11655 +#: gnu/packages/games.scm:11657 msgid "" "KSquares is an implementation of the popular paper based\n" "game Squares. Two players take turns connecting dots on a grid to complete\n" @@ -5214,7 +5339,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11692 +#: gnu/packages/games.scm:11694 msgid "" "KJumpingcube is a simple tactical game for one or two\n" "players, played on a grid of numbered squares. Each turn, players compete for\n" @@ -5223,7 +5348,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11782 +#: gnu/packages/games.scm:11784 msgid "" "X-Moto is a challenging 2D motocross platform game, where\n" "physics play an all important role in the gameplay. You need to\n" @@ -5231,27 +5356,27 @@ msgid "" "the more difficult challenges." msgstr "" -#: gnu/packages/games.scm:11827 +#: gnu/packages/games.scm:11829 msgid "" "Eboard is a chess board interface for ICS (Internet Chess Servers)\n" "and chess engines." msgstr "" -#: gnu/packages/games.scm:11880 +#: gnu/packages/games.scm:11882 msgid "" "ChessX is a chess database. With ChessX you can operate on your\n" "collection of chess games in many ways: browse, edit, add, organize, analyze,\n" "etc. You can also play games on FICS or against an engine." msgstr "" -#: gnu/packages/games.scm:11935 +#: gnu/packages/games.scm:11937 msgid "" "Stockfish is a very strong chess engine. It is much stronger than the\n" "best human chess grandmasters. It can be used with UCI-compatible GUIs like\n" "ChessX." msgstr "" -#: gnu/packages/games.scm:11964 +#: gnu/packages/games.scm:11966 msgid "" "Barrage is a rather destructive action game that puts you on a shooting\n" "range with the objective to hit as many dummy targets as possible within\n" @@ -5260,7 +5385,7 @@ msgid "" "get high scores." msgstr "" -#: gnu/packages/games.scm:11990 +#: gnu/packages/games.scm:11992 msgid "" "This is a clone of the classic game BurgerTime. In it, you play\n" "the part of a chef who must create burgers by stepping repeatedly on\n" @@ -5270,7 +5395,7 @@ msgid "" "protect you." msgstr "" -#: gnu/packages/games.scm:12018 +#: gnu/packages/games.scm:12020 msgid "" "Seven Kingdoms, designed by Trevor Chan, brings a blend of Real-Time\n" "Strategy with the addition of trade, diplomacy, and espionage. The game\n" @@ -5280,7 +5405,7 @@ msgid "" "kingdom." msgstr "" -#: gnu/packages/games.scm:12134 +#: gnu/packages/games.scm:12136 msgid "" "In the grand tradition of Marble Madness and Super Monkey Ball,\n" "Neverball has you guide a rolling ball through dangerous territory. Balance\n" @@ -5290,13 +5415,13 @@ msgid "" "game." msgstr "" -#: gnu/packages/games.scm:12210 +#: gnu/packages/games.scm:12212 msgid "" "With PokerTH you can play the Texas holdem poker game, either against\n" "computer opponents or against real players online." msgstr "" -#: gnu/packages/games.scm:12281 +#: gnu/packages/games.scm:12283 msgid "" "Xblackjack is a MOTIF/OLIT based tool constructed to get you ready for\n" "the casino. It was inspired by a book called \"Beat the Dealer\" by Edward\n" @@ -5305,13 +5430,13 @@ msgid "" "System\" (high-low system)." msgstr "" -#: gnu/packages/games.scm:12321 +#: gnu/packages/games.scm:12323 msgid "" "Pilot your ship inside a planet to find and rescue the colonists trapped\n" "inside the Zenith Colony." msgstr "" -#: gnu/packages/games.scm:12341 +#: gnu/packages/games.scm:12343 msgid "" "Provides a large set of Go-related services for X11:\n" "@itemize\n" @@ -5322,7 +5447,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:12401 +#: gnu/packages/games.scm:12403 msgid "" "Passage is meant to be a memento mori game. It presents an entire life,\n" "from young adulthood through old age and death, in the span of five minutes.\n" @@ -5331,21 +5456,21 @@ msgid "" "there's no right way to interpret it." msgstr "" -#: gnu/packages/games.scm:12435 +#: gnu/packages/games.scm:12437 msgid "" "High performance animated desktop background setter for\n" "X11 that won't set your CPU on fire, drain your laptop battery, or lower video\n" "game FPS." msgstr "" -#: gnu/packages/games.scm:12465 +#: gnu/packages/games.scm:12467 msgid "" "Curse of War is a fast-paced action strategy game originally\n" "implemented using ncurses user interface. An SDL graphical version is also\n" "available." msgstr "" -#: gnu/packages/games.scm:12496 +#: gnu/packages/games.scm:12498 msgid "" "Schiffbruch is a mix of building, strategy and adventure and gets played\n" "with a two-dimensional view. The game deals with the consequences of a ship\n" @@ -5354,13 +5479,13 @@ msgid "" "get attention, so you get found." msgstr "" -#: gnu/packages/games.scm:12556 +#: gnu/packages/games.scm:12558 msgid "" "This package provides port of Prince of Persia, based on the\n" "disassembly of the DOS version, extended with new features." msgstr "" -#: gnu/packages/games.scm:12587 +#: gnu/packages/games.scm:12589 #, scheme-format msgid "" "@code{fheroes2} is an implementation of Heroes of Might and\n" @@ -5456,7 +5581,7 @@ msgid "" "from Markdown files." msgstr "" -#: gnu/packages/gettext.scm:311 +#: gnu/packages/gettext.scm:304 msgid "" "The po4a (PO for anything) project goal is to ease translations (and\n" "more interestingly, the maintenance of translations) using gettext tools on\n" @@ -5539,18 +5664,18 @@ msgid "" "system. It was forked from the GNU Image Manipulation Program." msgstr "" -#: gnu/packages/gnome.scm:284 +#: gnu/packages/gnome.scm:288 msgid "GUPnP-IGD is a library to handle UPnP IGD port mapping." msgstr "" -#: gnu/packages/gnome.scm:340 +#: gnu/packages/gnome.scm:344 msgid "" "Brasero is an application to burn CD/DVD for the Gnome\n" "Desktop. It is designed to be as simple as possible and has some unique\n" "features to enable users to create their discs easily and quickly." msgstr "" -#: gnu/packages/gnome.scm:372 +#: gnu/packages/gnome.scm:376 msgid "" "Libcloudproviders is a DBus API that allows cloud storage sync\n" "clients to expose their services. Clients such as file managers and desktop\n" @@ -5558,19 +5683,19 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:444 +#: gnu/packages/gnome.scm:448 msgid "" "LibGRSS is a Glib abstraction to handle feeds in RSS, Atom,\n" "and other formats." msgstr "" -#: gnu/packages/gnome.scm:472 +#: gnu/packages/gnome.scm:476 msgid "" "GNOME-JS-Common provides common modules for GNOME JavaScript\n" "bindings." msgstr "" -#: gnu/packages/gnome.scm:555 +#: gnu/packages/gnome.scm:559 msgid "" "Seed is a library and interpreter, dynamically bridging\n" "(through GObjectIntrospection) the WebKit JavaScriptCore engine, with the\n" @@ -5579,21 +5704,21 @@ msgid "" "in JavaScript." msgstr "" -#: gnu/packages/gnome.scm:611 +#: gnu/packages/gnome.scm:615 msgid "" "Libdmapsharing is a library which allows programs to access,\n" "share and control the playback of media content using DMAP (DAAP, DPAP & DACP).\n" "It is written in C using GObject and libsoup." msgstr "" -#: gnu/packages/gnome.scm:644 +#: gnu/packages/gnome.scm:648 msgid "" "GTX is a small collection of convenience functions intended to\n" "enhance the GLib testing framework. With specific emphasis on easing the pain\n" "of writing test cases for asynchronous interactions." msgstr "" -#: gnu/packages/gnome.scm:721 +#: gnu/packages/gnome.scm:725 msgid "" "Dee is a library that uses DBus to provide objects allowing\n" "you to create Model-View-Controller type programs across DBus. It also consists\n" @@ -5601,7 +5726,7 @@ msgid "" "of known objects without needing a central registrar." msgstr "" -#: gnu/packages/gnome.scm:802 +#: gnu/packages/gnome.scm:806 msgid "" "Zeitgeist is a service which logs the users’s activities and\n" "events, anywhere from files opened to websites visited and conversations. It\n" @@ -5610,27 +5735,27 @@ msgid "" "patterns." msgstr "" -#: gnu/packages/gnome.scm:869 +#: gnu/packages/gnome.scm:871 msgid "" "GNOME Recipes helps you discover what to cook today,\n" "tomorrow, the rest of the week and for special occasions." msgstr "" -#: gnu/packages/gnome.scm:939 +#: gnu/packages/gnome.scm:940 msgid "" "GNOME Photos is a simple and elegant replacement for using a\n" "file manager to deal with photos. Enhance, crop and edit in a snap. Seamless\n" "cloud integration is offered through GNOME Online Accounts." msgstr "" -#: gnu/packages/gnome.scm:1007 +#: gnu/packages/gnome.scm:1008 msgid "" "GNOME Music is the new GNOME music playing application that\n" "aims to combine an elegant and immersive browsing experience with simple\n" "and straightforward controls." msgstr "" -#: gnu/packages/gnome.scm:1028 +#: gnu/packages/gnome.scm:1029 msgid "" "PortableXDR is an implementation of External Data\n" "Representation (XDR) Library. It is a standard data serialization format, for\n" @@ -5638,25 +5763,25 @@ msgid "" "between different kinds of computer systems." msgstr "" -#: gnu/packages/gnome.scm:1066 +#: gnu/packages/gnome.scm:1067 msgid "" "Tepl is a library that eases the development of\n" "GtkSourceView-based text editors and IDEs." msgstr "" -#: gnu/packages/gnome.scm:1107 +#: gnu/packages/gnome.scm:1108 msgid "" "krb5-auth-dialog is a simple dialog that monitors Kerberos\n" "tickets, and pops up a dialog when they are about to expire." msgstr "" -#: gnu/packages/gnome.scm:1132 +#: gnu/packages/gnome.scm:1133 msgid "" "Notification-Daemon is the server implementation of the\n" "freedesktop.org desktop notification specification." msgstr "" -#: gnu/packages/gnome.scm:1168 +#: gnu/packages/gnome.scm:1169 msgid "" "The mm-common module provides the build infrastructure\n" "and utilities shared among the GNOME C++ binding libraries. Release\n" @@ -5664,55 +5789,55 @@ msgid "" "Library reference documentation." msgstr "" -#: gnu/packages/gnome.scm:1214 +#: gnu/packages/gnome.scm:1215 msgid "" "PhoDav was initially developed as a file-sharing mechanism for Spice,\n" "but it is generic enough to be reused in other projects,\n" "in particular in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1267 +#: gnu/packages/gnome.scm:1268 msgid "" "GNOME Color Manager is a session framework that makes\n" "it easy to manage, install and generate color profiles\n" "in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1319 +#: gnu/packages/gnome.scm:1320 msgid "" "GNOME Online Miners provides a set of crawlers that\n" "go through your online content and index them locally in Tracker.\n" "It has miners for Facebook, Flickr, Google, ownCloud and SkyDrive." msgstr "" -#: gnu/packages/gnome.scm:1352 +#: gnu/packages/gnome.scm:1353 msgid "" "This package provides a library to handle resource discovery\n" "and announcement over @acronym{SSDP, Simple Service Discovery Protocol} and\n" "a debugging tool, @command{gssdp-device-sniffer}." msgstr "" -#: gnu/packages/gnome.scm:1391 +#: gnu/packages/gnome.scm:1392 msgid "" "This package provides GUPnP, an object-oriented framework\n" "for creating UPnP devices and control points, written in C using\n" "@code{GObject} and @code{libsoup}." msgstr "" -#: gnu/packages/gnome.scm:1423 +#: gnu/packages/gnome.scm:1424 msgid "" "This package provides a small utility library to\n" "support DLNA-related tasks such as media profile guessing, transcoding to a\n" "given profile, etc. DLNA is a subset of UPnP A/V." msgstr "" -#: gnu/packages/gnome.scm:1453 +#: gnu/packages/gnome.scm:1454 msgid "" "This package provides a small library for handling\n" "and implementation of UPnP A/V profiles." msgstr "" -#: gnu/packages/gnome.scm:1478 +#: gnu/packages/gnome.scm:1479 msgid "" "The libmediaart library is the foundation for media art caching,\n" "extraction, and lookup for applications on the desktop." @@ -5725,14 +5850,14 @@ msgid "" "tour of all gnome components and allows the user to set them up." msgstr "" -#: gnu/packages/gnome.scm:1584 +#: gnu/packages/gnome.scm:1583 msgid "" "GNOME User Share is a small package that binds together\n" "various free software projects to bring easy to use user-level file\n" "sharing to the masses." msgstr "" -#: gnu/packages/gnome.scm:1639 +#: gnu/packages/gnome.scm:1638 msgid "" "Sushi is a DBus-activated service that allows applications\n" "to preview files on the GNOME desktop." @@ -5784,7 +5909,7 @@ msgid "" "and system administrators." msgstr "" -#: gnu/packages/gnome.scm:1946 +#: gnu/packages/gnome.scm:1950 msgid "" "Dia can be used to draw different types of diagrams, and\n" "includes support for UML static structure diagrams (class diagrams), entity\n" @@ -5792,28 +5917,28 @@ msgid "" "formats like PNG, SVG, PDF and EPS." msgstr "" -#: gnu/packages/gnome.scm:1991 +#: gnu/packages/gnome.scm:1995 msgid "" "libgdata is a GLib-based library for accessing online service APIs using\n" "the GData protocol — most notably, Google's services. It provides APIs to\n" "access the common Google services, and has full asynchronous support." msgstr "" -#: gnu/packages/gnome.scm:2019 +#: gnu/packages/gnome.scm:2023 msgid "" "libgxps is a GObject-based library for handling and rendering XPS\n" "documents. This package also contains binaries that can convert XPS documents\n" "to other formats." msgstr "" -#: gnu/packages/gnome.scm:2060 +#: gnu/packages/gnome.scm:2063 msgid "" "Characters is a simple utility application to find\n" "and insert unusual characters. It allows you to quickly find the\n" "character you are looking for by searching for keywords." msgstr "" -#: gnu/packages/gnome.scm:2081 +#: gnu/packages/gnome.scm:2084 msgid "" "gnome-common contains various files needed to bootstrap\n" "GNOME modules built from Git. It contains a common \"autogen.sh\" script that\n" @@ -5821,13 +5946,13 @@ msgid "" "commonly used macros." msgstr "" -#: gnu/packages/gnome.scm:2142 +#: gnu/packages/gnome.scm:2145 msgid "" "GNOME Contacts organizes your contact information from online and\n" "offline sources, providing a centralized place for managing your contacts." msgstr "" -#: gnu/packages/gnome.scm:2222 +#: gnu/packages/gnome.scm:2225 msgid "" "The libgnome-desktop library provides API shared by several applications\n" "on the desktop, but that cannot live in the platform for various reasons.\n" @@ -5837,40 +5962,40 @@ msgid "" "The gnome-about program helps find which version of GNOME is installed." msgstr "" -#: gnu/packages/gnome.scm:2257 +#: gnu/packages/gnome.scm:2260 msgid "" "Gnome-doc-utils is a collection of documentation utilities for the\n" "Gnome project. It includes xml2po tool which makes it easier to translate\n" "and keep up to date translations of documentation." msgstr "" -#: gnu/packages/gnome.scm:2309 +#: gnu/packages/gnome.scm:2311 msgid "Disk management utility for GNOME." msgstr "" -#: gnu/packages/gnome.scm:2352 +#: gnu/packages/gnome.scm:2353 msgid "" "Application to show you the fonts installed on your computer\n" "for your use as thumbnails. Selecting any thumbnails shows the full view of how\n" "the font would look under various sizes." msgstr "" -#: gnu/packages/gnome.scm:2420 +#: gnu/packages/gnome.scm:2421 msgid "" "The GCR package contains libraries used for displaying certificates and\n" "accessing key stores. It also provides the viewer for crypto files on the\n" "GNOME Desktop." msgstr "" -#: gnu/packages/gnome.scm:2459 +#: gnu/packages/gnome.scm:2460 msgid "This library provides docking features for gtk+." msgstr "" -#: gnu/packages/gnome.scm:2505 +#: gnu/packages/gnome.scm:2506 msgid "Client library to access passwords from the GNOME keyring." msgstr "" -#: gnu/packages/gnome.scm:2575 +#: gnu/packages/gnome.scm:2576 msgid "" "gnome-keyring is a program that keeps passwords and other secrets for\n" "users. It is run as a daemon in the session, similar to ssh-agent, and other\n" @@ -5889,13 +6014,13 @@ msgid "" "on the GNOME Desktop with a single simple application." msgstr "" -#: gnu/packages/gnome.scm:2693 +#: gnu/packages/gnome.scm:2692 msgid "" "Gsettings-desktop-schemas contains a collection of GSettings\n" "schemas for settings shared by various components of the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:2729 +#: gnu/packages/gnome.scm:2728 msgid "" "Liblarch is a Python library built to easily handle data structures such\n" "as lists, trees and acyclic graphs. There's also a GTK binding that will\n" @@ -5906,7 +6031,7 @@ msgid "" "and how they are displayed (View)." msgstr "" -#: gnu/packages/gnome.scm:2790 +#: gnu/packages/gnome.scm:2789 msgid "" "Getting Things GNOME! (GTG) is a personal tasks and TODO list items\n" "organizer for the GNOME desktop environment inspired by the Getting Things\n" @@ -5916,24 +6041,24 @@ msgid "" "know, from small tasks to large projects." msgstr "" -#: gnu/packages/gnome.scm:2829 +#: gnu/packages/gnome.scm:2828 msgid "" "To help with the transition to the Freedesktop Icon Naming\n" "Specification, the icon naming utility maps the icon names used by the\n" "GNOME and KDE desktops to the icon names proposed in the specification." msgstr "" -#: gnu/packages/gnome.scm:2858 +#: gnu/packages/gnome.scm:2857 msgid "Icons for the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:2897 +#: gnu/packages/gnome.scm:2896 msgid "" "This is an icon theme that follows the Tango visual\n" "guidelines." msgstr "" -#: gnu/packages/gnome.scm:2927 +#: gnu/packages/gnome.scm:2926 msgid "" "The shared-mime-info package contains the core database of common types\n" "and the update-mime-database command used to extend it. It requires glib2 to\n" @@ -5942,18 +6067,18 @@ msgid "" "database is translated at Transifex." msgstr "" -#: gnu/packages/gnome.scm:3012 +#: gnu/packages/gnome.scm:3011 msgid "" "system-config-printer is a CUPS administration tool. It's written in\n" "Python using GTK+, and uses the @acronym{IPP, Internet Printing Protocol} when\n" "configuring CUPS." msgstr "" -#: gnu/packages/gnome.scm:3036 +#: gnu/packages/gnome.scm:3035 msgid "Freedesktop icon theme." msgstr "" -#: gnu/packages/gnome.scm:3085 +#: gnu/packages/gnome.scm:3084 msgid "" "Libnotify is a library that sends desktop notifications to a\n" "notification daemon, as defined in the Desktop Notifications spec. These\n" @@ -5961,7 +6086,7 @@ msgid "" "some form of information without getting in the user's way." msgstr "" -#: gnu/packages/gnome.scm:3132 +#: gnu/packages/gnome.scm:3131 msgid "" "Libpeas is a gobject-based plugin engine, targeted at giving every\n" "application the chance to assume its own extensibility. It also has a set of\n" @@ -5970,21 +6095,21 @@ msgid "" "API." msgstr "" -#: gnu/packages/gnome.scm:3168 +#: gnu/packages/gnome.scm:3167 msgid "" "GtkGLExt is an OpenGL extension to GTK+. It provides\n" "additional GDK objects which support OpenGL rendering in GTK+ and GtkWidget\n" "API add-ons to make GTK+ widgets OpenGL-capable." msgstr "" -#: gnu/packages/gnome.scm:3248 +#: gnu/packages/gnome.scm:3247 msgid "" "Glade is a rapid application development (RAD) tool to\n" "enable quick & easy development of user interfaces for the GTK+ toolkit and\n" "the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:3280 +#: gnu/packages/gnome.scm:3279 msgid "" "Libcroco is a standalone CSS2 parsing and manipulation library.\n" "The parser provides a low level event driven SAC-like API and a CSS object\n" @@ -5992,13 +6117,13 @@ msgid "" "XML/CSS rendering engine." msgstr "" -#: gnu/packages/gnome.scm:3347 +#: gnu/packages/gnome.scm:3346 msgid "" "Libgsf aims to provide an efficient extensible I/O abstraction\n" "for dealing with different structured file formats." msgstr "" -#: gnu/packages/gnome.scm:3526 +#: gnu/packages/gnome.scm:3525 msgid "" "Librsvg is a library to render SVG images to Cairo surfaces.\n" "GNOME uses this to render SVG icons. Outside of GNOME, other desktop\n" @@ -6006,7 +6131,7 @@ msgid "" "diagrams." msgstr "" -#: gnu/packages/gnome.scm:3649 +#: gnu/packages/gnome.scm:3648 msgid "" "Libidl is a library for creating trees of CORBA Interface\n" "Definition Language (idl) files, which is a specification for defining\n" @@ -6015,82 +6140,82 @@ msgid "" "functionality was designed to be as reusable and portable as possible." msgstr "" -#: gnu/packages/gnome.scm:3704 +#: gnu/packages/gnome.scm:3703 msgid "" "ORBit2 is a CORBA 2.4-compliant Object Request Broker (orb)\n" "featuring mature C, C++ and Python bindings." msgstr "" -#: gnu/packages/gnome.scm:3758 +#: gnu/packages/gnome.scm:3757 msgid "" "Bonobo is a framework for creating reusable components for\n" "use in GNOME applications, built on top of CORBA." msgstr "" -#: gnu/packages/gnome.scm:3789 +#: gnu/packages/gnome.scm:3788 msgid "" "Gconf is a system for storing application preferences. It\n" "is intended for user preferences; not arbitrary data storage." msgstr "" -#: gnu/packages/gnome.scm:3823 +#: gnu/packages/gnome.scm:3822 msgid "" "GNOME Mime Data is a module which contains the base MIME\n" "and Application database for GNOME. The data stored by this module is\n" "designed to be accessed through the MIME functions in GnomeVFS." msgstr "" -#: gnu/packages/gnome.scm:3863 +#: gnu/packages/gnome.scm:3862 msgid "" "GnomeVFS is the core library used to access files and folders in GNOME\n" "applications. It provides a file system abstraction which allows applications\n" "to access local and remote files with a single consistent API." msgstr "" -#: gnu/packages/gnome.scm:3904 +#: gnu/packages/gnome.scm:3903 msgid "" "The libgnome library provides a number of useful routines\n" "for building modern applications, including session management, activation of\n" "files and URIs, and displaying help." msgstr "" -#: gnu/packages/gnome.scm:3928 +#: gnu/packages/gnome.scm:3927 msgid "" "Libart is a 2D drawing library intended as a\n" "high-quality vector-based 2D library with antialiasing and alpha composition." msgstr "" -#: gnu/packages/gnome.scm:3955 +#: gnu/packages/gnome.scm:3954 msgid "" "The GnomeCanvas widget provides a flexible widget for\n" "creating interactive structured graphics." msgstr "" -#: gnu/packages/gnome.scm:3977 +#: gnu/packages/gnome.scm:3976 msgid "C++ bindings to the GNOME Canvas library." msgstr "" -#: gnu/packages/gnome.scm:4003 +#: gnu/packages/gnome.scm:4002 msgid "" "The libgnomeui library provides additional widgets for\n" "applications. Many of the widgets from libgnomeui have already been\n" "ported to GTK+." msgstr "" -#: gnu/packages/gnome.scm:4029 +#: gnu/packages/gnome.scm:4028 msgid "" "Libglade is a library that provides interfaces for loading\n" "graphical interfaces described in glade files and for accessing the\n" "widgets built in the loading process." msgstr "" -#: gnu/packages/gnome.scm:4071 +#: gnu/packages/gnome.scm:4070 msgid "" "The Bonobo UI library provides a number of user interface\n" "controls using the Bonobo component framework." msgstr "" -#: gnu/packages/gnome.scm:4098 +#: gnu/packages/gnome.scm:4097 msgid "" "Libwnck is the Window Navigator Construction Kit, a library for use in\n" "writing pagers, tasklists, and more generally applications that are dealing\n" @@ -6098,11 +6223,11 @@ msgid "" "Hints specification (EWMH)." msgstr "" -#: gnu/packages/gnome.scm:4148 +#: gnu/packages/gnome.scm:4147 msgid "A GLib/GTK+ set of document-centric objects and utilities." msgstr "" -#: gnu/packages/gnome.scm:4234 +#: gnu/packages/gnome.scm:4233 msgid "" "GNUmeric is a GNU spreadsheet application, running under GNOME. It is\n" "interoperable with other spreadsheet applications. It has a vast array of\n" @@ -6111,11 +6236,11 @@ msgid "" "engineering." msgstr "" -#: gnu/packages/gnome.scm:4290 +#: gnu/packages/gnome.scm:4289 msgid "Drawing is a basic image editor aiming at the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:4326 +#: gnu/packages/gnome.scm:4325 msgid "The default GNOME 3 themes (Adwaita and some accessibility themes)." msgstr "" @@ -6134,7 +6259,7 @@ msgid "" "targeting the GNOME stack simple." msgstr "" -#: gnu/packages/gnome.scm:4481 +#: gnu/packages/gnome.scm:4482 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, and a minimal sample application (vte) using that. Vte is mainly used in\n" @@ -6142,34 +6267,34 @@ msgid "" "editors, IDEs, etc." msgstr "" -#: gnu/packages/gnome.scm:4505 +#: gnu/packages/gnome.scm:4506 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, this fork provides additional functions exposed for keyboard text\n" "selection and URL hints." msgstr "" -#: gnu/packages/gnome.scm:4585 +#: gnu/packages/gnome.scm:4586 msgid "" "Vinagre is a remote display client supporting the VNC, SPICE\n" "and RDP protocols." msgstr "" -#: gnu/packages/gnome.scm:4631 +#: gnu/packages/gnome.scm:4633 msgid "" "Dconf is a low-level configuration system. Its main purpose\n" "is to provide a backend to GSettings on platforms that don't already have\n" "configuration storage systems." msgstr "" -#: gnu/packages/gnome.scm:4661 +#: gnu/packages/gnome.scm:4663 msgid "" "JSON-GLib is a library providing serialization and\n" "described by RFC 4627. It implements a full JSON parser and generator using\n" "GLib and GObject, and integrates JSON with GLib data types." msgstr "" -#: gnu/packages/gnome.scm:4760 +#: gnu/packages/gnome.scm:4762 msgid "" "LibXklavier is a library providing high-level API for X Keyboard\n" "Extension known as XKB. This library is intended to support XFree86 and other\n" @@ -6177,13 +6302,13 @@ msgid "" "indicators etc)." msgstr "" -#: gnu/packages/gnome.scm:4788 +#: gnu/packages/gnome.scm:4790 msgid "" "This package provides Python bindings to librsvg, the SVG rendering\n" "library." msgstr "" -#: gnu/packages/gnome.scm:4829 +#: gnu/packages/gnome.scm:4831 msgid "" "Glib-networking contains the implementations of certain GLib networking\n" "features that cannot be implemented directly in GLib itself because of their\n" @@ -6193,26 +6318,26 @@ msgid "" "from the GSettings schemas in gsettings-desktop-schemas." msgstr "" -#: gnu/packages/gnome.scm:4866 +#: gnu/packages/gnome.scm:4868 msgid "" "This library was designed to make it easier to access web services that\n" "claim to be \"RESTful\". It includes convenience wrappers for libsoup and\n" "libxml to ease remote use of the RESTful API." msgstr "" -#: gnu/packages/gnome.scm:4931 +#: gnu/packages/gnome.scm:4933 msgid "" "LibSoup is an HTTP client/server library for GNOME. It uses GObjects\n" "and the GLib main loop, to integrate well with GNOME applications." msgstr "" -#: gnu/packages/gnome.scm:5035 +#: gnu/packages/gnome.scm:5037 msgid "" "Libsecret is a GObject based library for storing and retrieving passwords\n" "and other secrets. It communicates with the \"Secret Service\" using DBus." msgstr "" -#: gnu/packages/gnome.scm:5074 +#: gnu/packages/gnome.scm:5076 msgid "" "Five or More is a game where you try to align\n" " five or more objects of the same color and shape causing them to disappear.\n" @@ -6220,19 +6345,19 @@ msgid "" " Try to last as long as possible." msgstr "" -#: gnu/packages/gnome.scm:5116 +#: gnu/packages/gnome.scm:5118 msgid "" "Mines (previously gnomine) is a puzzle game where you locate mines\n" "floating in an ocean using only your brain and a little bit of luck." msgstr "" -#: gnu/packages/gnome.scm:5157 +#: gnu/packages/gnome.scm:5159 msgid "" "MultiWriter can be used to write an ISO file to multiple USB devices at\n" "once." msgstr "" -#: gnu/packages/gnome.scm:5197 +#: gnu/packages/gnome.scm:5198 msgid "" "Sudoku is a Japanese logic game that exploded in popularity in 2005.\n" "GNOME Sudoku is meant to have an interface as simple and unobstrusive as\n" @@ -6240,7 +6365,7 @@ msgid "" "more fun." msgstr "" -#: gnu/packages/gnome.scm:5247 +#: gnu/packages/gnome.scm:5248 msgid "" "GNOME Terminal is a terminal emulator application for accessing a\n" "UNIX shell environment which can be used to run programs available on\n" @@ -6250,14 +6375,14 @@ msgid "" "keyboard shortcuts." msgstr "" -#: gnu/packages/gnome.scm:5319 +#: gnu/packages/gnome.scm:5320 msgid "" "Colord is a system service that makes it easy to manage,\n" "install and generate color profiles to accurately color manage input and\n" "output devices." msgstr "" -#: gnu/packages/gnome.scm:5390 +#: gnu/packages/gnome.scm:5391 msgid "" "Geoclue is a D-Bus service that provides location\n" "information. The primary goal of the Geoclue project is to make creating\n" @@ -6266,7 +6391,7 @@ msgid "" "permission from user." msgstr "" -#: gnu/packages/gnome.scm:5434 +#: gnu/packages/gnome.scm:5435 msgid "" "geocode-glib is a convenience library for geocoding (finding longitude,\n" "and latitude from an address) and reverse geocoding (finding an address from\n" @@ -6274,7 +6399,7 @@ msgid "" "faster results and to avoid unnecessary server load." msgstr "" -#: gnu/packages/gnome.scm:5510 +#: gnu/packages/gnome.scm:5511 msgid "" "UPower is an abstraction for enumerating power devices,\n" "listening to device events and querying history and statistics. Any\n" @@ -6282,13 +6407,13 @@ msgid "" "service via the system message bus." msgstr "" -#: gnu/packages/gnome.scm:5555 +#: gnu/packages/gnome.scm:5557 msgid "" "libgweather is a library to access weather information from online\n" "services for numerous locations." msgstr "" -#: gnu/packages/gnome.scm:5639 +#: gnu/packages/gnome.scm:5640 msgid "" "This package contains the daemon responsible for setting the various\n" "parameters of a GNOME session and the applications that run under it. It\n" @@ -6296,19 +6421,19 @@ msgid "" "settings, themes, mouse settings, and startup of other daemons." msgstr "" -#: gnu/packages/gnome.scm:5670 +#: gnu/packages/gnome.scm:5671 msgid "" "Totem-pl-parser is a GObjects-based library to parse and save\n" "playlists in a variety of formats." msgstr "" -#: gnu/packages/gnome.scm:5703 +#: gnu/packages/gnome.scm:5704 msgid "" "Aisleriot (also known as Solitaire or sol) is a collection of card games\n" "which are easy to play with the aid of a mouse." msgstr "" -#: gnu/packages/gnome.scm:5729 +#: gnu/packages/gnome.scm:5730 msgid "" "Amtk is the acronym for @acronym{Amtk, Actions Menus and Toolbars Kit}.\n" "It is a basic GtkUIManager replacement based on GAction. It is suitable for\n" @@ -6387,13 +6512,13 @@ msgid "" "discovery protocols." msgstr "" -#: gnu/packages/gnome.scm:6324 +#: gnu/packages/gnome.scm:6323 msgid "" "Totem is a simple yet featureful media player for GNOME\n" "which can read a large number of file formats." msgstr "" -#: gnu/packages/gnome.scm:6415 +#: gnu/packages/gnome.scm:6414 msgid "" "Rhythmbox is a music playing application for GNOME. It\n" "supports playlists, song ratings, and any codecs installed through gstreamer." @@ -6424,7 +6549,7 @@ msgid "" "part of udev-extras, then udev, then systemd. It's now a project on its own." msgstr "" -#: gnu/packages/gnome.scm:6611 +#: gnu/packages/gnome.scm:6610 msgid "" "GVFS is a userspace virtual file system designed to work with the I/O\n" "abstraction of GIO. It contains a GIO module that seamlessly adds GVFS\n" @@ -6435,7 +6560,7 @@ msgid "" "DAV, and others." msgstr "" -#: gnu/packages/gnome.scm:6652 +#: gnu/packages/gnome.scm:6651 msgid "" "GUsb is a GObject wrapper for libusb1 that makes it easy to do\n" "asynchronous control, bulk and interrupt transfers with proper cancellation\n" @@ -6443,7 +6568,7 @@ msgid "" "USB transfers with your high-level application or system daemon." msgstr "" -#: gnu/packages/gnome.scm:6706 +#: gnu/packages/gnome.scm:6705 msgid "" "Document Scanner is an easy-to-use application that lets you connect your\n" "scanner and quickly capture images and documents in an appropriate format. It\n" @@ -6451,25 +6576,25 @@ msgid "" "almost all of them." msgstr "" -#: gnu/packages/gnome.scm:6778 +#: gnu/packages/gnome.scm:6777 msgid "" "Eolie is a new web browser for GNOME. It features Firefox sync support,\n" "a secret password store, an adblocker, and a modern UI." msgstr "" -#: gnu/packages/gnome.scm:6855 +#: gnu/packages/gnome.scm:6854 msgid "" "Epiphany is a GNOME web browser targeted at non-technical users. Its\n" "principles are simplicity and standards compliance." msgstr "" -#: gnu/packages/gnome.scm:6914 +#: gnu/packages/gnome.scm:6913 msgid "" "D-Feet is a D-Bus debugger, which can be used to inspect D-Bus interfaces\n" "of running programs and invoke methods on those interfaces." msgstr "" -#: gnu/packages/gnome.scm:6944 +#: gnu/packages/gnome.scm:6943 msgid "" "Yelp-XSL is a collection of programs and data files to help\n" "you build, maintain, and distribute documentation. It provides XSLT stylesheets\n" @@ -6479,14 +6604,14 @@ msgid "" "jQuery.Syntax JavaScript libraries." msgstr "" -#: gnu/packages/gnome.scm:6983 +#: gnu/packages/gnome.scm:6982 msgid "" "Yelp is the help viewer in Gnome. It natively views Mallard, DocBook,\n" "man, info, and HTML documents. It can locate documents according to the\n" "freedesktop.org help system specification." msgstr "" -#: gnu/packages/gnome.scm:7013 +#: gnu/packages/gnome.scm:7012 msgid "" "Yelp-tools is a collection of scripts and build utilities to help create,\n" "manage, and publish documentation for Yelp and the web. Most of the heavy\n" @@ -6494,13 +6619,13 @@ msgid "" "wraps things up in a developer-friendly way." msgstr "" -#: gnu/packages/gnome.scm:7051 +#: gnu/packages/gnome.scm:7050 msgid "" "Libgee is a utility library providing GObject-based interfaces and\n" "classes for commonly used data structures." msgstr "" -#: gnu/packages/gnome.scm:7079 +#: gnu/packages/gnome.scm:7078 msgid "" "Gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. It\n" "allows for GNOME applications to easily inspect and update EXIF, IPTC, and XMP\n" @@ -6515,7 +6640,7 @@ msgid "" "share them with others via social networking and more." msgstr "" -#: gnu/packages/gnome.scm:7168 +#: gnu/packages/gnome.scm:7169 msgid "" "File Roller is an archive manager for the GNOME desktop\n" "environment that allows users to view, unpack, and create compressed archives\n" @@ -6528,25 +6653,25 @@ msgid "" "configuration program to choose applications starting on login." msgstr "" -#: gnu/packages/gnome.scm:7284 +#: gnu/packages/gnome.scm:7287 msgid "" "Gjs is a javascript binding for GNOME. It's mainly based on spidermonkey\n" "javascript engine and the GObject introspection framework." msgstr "" -#: gnu/packages/gnome.scm:7381 +#: gnu/packages/gnome.scm:7383 msgid "" "While aiming at simplicity and ease of use, gedit is a\n" "powerful general purpose text editor." msgstr "" -#: gnu/packages/gnome.scm:7405 +#: gnu/packages/gnome.scm:7407 msgid "" "Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you\n" "to display dialog boxes from the commandline and shell scripts." msgstr "" -#: gnu/packages/gnome.scm:7595 +#: gnu/packages/gnome.scm:7598 msgid "" "Mutter is a window and compositing manager that displays and manages your\n" "desktop via OpenGL. Mutter combines a sophisticated display engine using the\n" @@ -6554,7 +6679,7 @@ msgid "" "window manager." msgstr "" -#: gnu/packages/gnome.scm:7653 +#: gnu/packages/gnome.scm:7656 msgid "" "GNOME Online Accounts provides interfaces so that applications and\n" "libraries in GNOME can access the user's online accounts. It has providers\n" @@ -6562,20 +6687,20 @@ msgid "" "Microsoft Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos." msgstr "" -#: gnu/packages/gnome.scm:7740 +#: gnu/packages/gnome.scm:7743 msgid "" "This package provides a unified backend for programs that work with\n" "contacts, tasks, and calendar information. It was originally developed for\n" "Evolution (hence the name), but is now used by other packages as well." msgstr "" -#: gnu/packages/gnome.scm:7803 +#: gnu/packages/gnome.scm:7806 msgid "" "Caribou is an input assistive technology intended for switch and pointer\n" "users." msgstr "" -#: gnu/packages/gnome.scm:7953 +#: gnu/packages/gnome.scm:7958 msgid "" "NetworkManager is a system network service that manages your network\n" "devices and connections, attempting to keep active network connectivity when\n" @@ -6584,36 +6709,36 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:8009 +#: gnu/packages/gnome.scm:8014 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to virtual private networks (VPNs) via OpenVPN." msgstr "" -#: gnu/packages/gnome.scm:8059 +#: gnu/packages/gnome.scm:8064 msgid "" "Support for configuring virtual private networks based on VPNC.\n" "Compatible with Cisco VPN concentrators configured to use IPsec." msgstr "" -#: gnu/packages/gnome.scm:8106 +#: gnu/packages/gnome.scm:8111 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to @acronym{VPNs, virtual private networks} via OpenConnect, an open client for\n" "Cisco's AnyConnect SSL VPN." msgstr "" -#: gnu/packages/gnome.scm:8135 +#: gnu/packages/gnome.scm:8140 msgid "Database of broadband connection configuration." msgstr "" -#: gnu/packages/gnome.scm:8179 +#: gnu/packages/gnome.scm:8183 msgid "" "This package contains a systray applet for NetworkManager. It displays\n" "the available networks and allows users to easily switch between them." msgstr "" -#: gnu/packages/gnome.scm:8234 +#: gnu/packages/gnome.scm:8238 #, fuzzy #| msgid "" #| "This package provides a dictionary for the Hunspell spell-checking\n" @@ -6625,25 +6750,25 @@ msgstr "" "Questo pacchetto fornisce un dizionario per il controllo ortografico per la libreria \n" "Hunspell." -#: gnu/packages/gnome.scm:8466 +#: gnu/packages/gnome.scm:8470 msgid "" "GNOME Display Manager is a system service that is responsible for\n" "providing graphical log-ins and managing local and remote displays." msgstr "" -#: gnu/packages/gnome.scm:8490 +#: gnu/packages/gnome.scm:8494 msgid "" "LibGTop is a library to get system specific data such as CPU and memory\n" "usage and information about running processes." msgstr "" -#: gnu/packages/gnome.scm:8525 +#: gnu/packages/gnome.scm:8528 msgid "" "This package contains tools for managing and manipulating Bluetooth\n" "devices using the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:8636 +#: gnu/packages/gnome.scm:8646 msgid "" "This package contains configuration applets for the GNOME desktop,\n" "allowing to set accessibility configuration, desktop fonts, keyboard and mouse\n" @@ -6651,13 +6776,13 @@ msgid "" "properties, screen resolution, and other GNOME parameters." msgstr "" -#: gnu/packages/gnome.scm:8802 +#: gnu/packages/gnome.scm:8811 msgid "" "GNOME Shell provides core user interface functions for the GNOME desktop,\n" "like switching to windows and launching applications." msgstr "" -#: gnu/packages/gnome.scm:8845 +#: gnu/packages/gnome.scm:8858 msgid "" "GTK-VNC is a project providing client side APIs for the RFB\n" "protocol / VNC remote desktop technology. It is built using coroutines allowing\n" @@ -6665,13 +6790,13 @@ msgid "" "core C library, and bindings for Python (PyGTK)." msgstr "" -#: gnu/packages/gnome.scm:8875 +#: gnu/packages/gnome.scm:8888 msgid "" "GNOME Autoar is a library which makes creating and extracting archives\n" "easy, safe, and automatic." msgstr "" -#: gnu/packages/gnome.scm:8945 +#: gnu/packages/gnome.scm:8959 msgid "" "Tracker is a search engine and triplestore for desktop, embedded and mobile.\n" "\n" @@ -6694,21 +6819,21 @@ msgid "" "endpoint and it understands SPARQL." msgstr "" -#: gnu/packages/gnome.scm:9074 +#: gnu/packages/gnome.scm:9088 msgid "" "Tracker is an advanced framework for first class objects with associated\n" "metadata and tags. It provides a one stop solution for all metadata, tags,\n" "shared object databases, search tools and indexing." msgstr "" -#: gnu/packages/gnome.scm:9167 +#: gnu/packages/gnome.scm:9185 msgid "" "Nautilus (Files) is a file manager designed to fit the GNOME desktop\n" "design and behaviour, giving the user a simple way to navigate and manage its\n" "files." msgstr "" -#: gnu/packages/gnome.scm:9201 +#: gnu/packages/gnome.scm:9220 msgid "" "Baobab (Disk Usage Analyzer) is a graphical application to analyse disk\n" "usage in the GNOME desktop environment. It can easily scan device volumes or\n" @@ -6716,7 +6841,7 @@ msgid "" "is complete it provides a graphical representation of each selected folder." msgstr "" -#: gnu/packages/gnome.scm:9227 +#: gnu/packages/gnome.scm:9245 msgid "" "GNOME backgrounds package contains a collection of graphics files which\n" "can be used as backgrounds in the GNOME Desktop environment. Additionally,\n" @@ -6724,21 +6849,21 @@ msgid "" "can add your own files to the collection." msgstr "" -#: gnu/packages/gnome.scm:9272 +#: gnu/packages/gnome.scm:9290 msgid "" "GNOME Screenshot is a utility used for taking screenshots of the entire\n" "screen, a window or a user defined area of the screen, with optional\n" "beautifying border effects." msgstr "" -#: gnu/packages/gnome.scm:9304 +#: gnu/packages/gnome.scm:9320 msgid "" "Dconf-editor is a graphical tool for browsing and editing the dconf\n" "configuration system for GNOME. It allows users to configure desktop\n" "software that do not provide their own configuration interface." msgstr "" -#: gnu/packages/gnome.scm:9334 +#: gnu/packages/gnome.scm:9350 msgid "" "Given many installed packages which might handle a given MIME type, a\n" "user running the GNOME desktop probably has some preferences: for example,\n" @@ -6747,32 +6872,32 @@ msgid "" "associations for GNOME." msgstr "" -#: gnu/packages/gnome.scm:9366 +#: gnu/packages/gnome.scm:9382 msgid "GoVirt is a GObject wrapper for the oVirt REST API." msgstr "" -#: gnu/packages/gnome.scm:9424 +#: gnu/packages/gnome.scm:9439 msgid "" "GNOME Weather is a small application that allows you to\n" "monitor the current weather conditions for your city, or anywhere in the\n" "world." msgstr "" -#: gnu/packages/gnome.scm:9528 +#: gnu/packages/gnome.scm:9543 msgid "" "GNOME is the graphical desktop for GNU. It includes a wide variety of\n" "applications for browsing the web, editing text and images, creating\n" "documents and diagrams, playing media, scanning, and much more." msgstr "" -#: gnu/packages/gnome.scm:9574 +#: gnu/packages/gnome.scm:9589 msgid "" "Byzanz is a simple desktop recording program with a\n" "command-line interface. It can record part or all of an X display for a\n" "specified duration and save it as a GIF encoded animated image file." msgstr "" -#: gnu/packages/gnome.scm:9634 +#: gnu/packages/gnome.scm:9651 msgid "" "Authenticator is a two-factor authentication (2FA) application built for\n" "the GNOME desktop environment.\n" @@ -6789,44 +6914,44 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/gnome.scm:9669 +#: gnu/packages/gnome.scm:9686 msgid "" "GSound is a small library for playing system sounds. It's designed to be\n" "used via GObject Introspection, and is a thin wrapper around the libcanberra C\n" "library." msgstr "" -#: gnu/packages/gnome.scm:9694 +#: gnu/packages/gnome.scm:9711 msgid "" "Libzapojit is a GLib-based library for accessing online service APIs of\n" "Microsoft SkyDrive and Hotmail, using their REST protocols." msgstr "" -#: gnu/packages/gnome.scm:9739 +#: gnu/packages/gnome.scm:9756 msgid "" "GNOME Clocks is a simple clocks application designed to fit the GNOME\n" "desktop. It supports world clock, stop watch, alarms, and count down timer." msgstr "" -#: gnu/packages/gnome.scm:9787 +#: gnu/packages/gnome.scm:9803 msgid "" "GNOME Calendar is a simple calendar application designed to fit the GNOME\n" "desktop. It supports multiple calendars, month, week and year view." msgstr "" -#: gnu/packages/gnome.scm:9838 +#: gnu/packages/gnome.scm:9860 msgid "" -"GNOME To Do is a simplistic personal task manager designed to perfectly\n" -"fit the GNOME desktop." +"GNOME To Do is a simplistic personal task manager designed\n" +"to perfectly fit the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:9877 +#: gnu/packages/gnome.scm:9899 msgid "" "GNOME Dictionary can look for the definition or translation of a word in\n" "existing databases over the internet." msgstr "" -#: gnu/packages/gnome.scm:9943 +#: gnu/packages/gnome.scm:9964 msgid "" "GNOME Tweaks allows adjusting advanced configuration settings in\n" "GNOME 3. This includes things like the fonts used in user interface elements,\n" @@ -6834,13 +6959,13 @@ msgid "" "GNOME Shell appearance and extension, etc." msgstr "" -#: gnu/packages/gnome.scm:9971 +#: gnu/packages/gnome.scm:9992 msgid "" "GNOME Shell extensions modify and extend GNOME Shell\n" "functionality and behavior." msgstr "" -#: gnu/packages/gnome.scm:10015 +#: gnu/packages/gnome.scm:10036 msgid "" "Libfolks is a library that aggregates information about people\n" "from multiple sources (e.g., Telepathy connection managers for IM contacts,\n" @@ -6849,19 +6974,19 @@ msgid "" "compiled." msgstr "" -#: gnu/packages/gnome.scm:10056 +#: gnu/packages/gnome.scm:10077 msgid "" "This library allows you to use the Facebook API from\n" "GLib/GObject code." msgstr "" -#: gnu/packages/gnome.scm:10083 +#: gnu/packages/gnome.scm:10104 msgid "" "Libgnomekbd is a keyboard configuration library for the GNOME desktop\n" "environment, which can notably display keyboard layouts." msgstr "" -#: gnu/packages/gnome.scm:10119 +#: gnu/packages/gnome.scm:10140 msgid "" "Libunique is a library for writing single instance applications. If you\n" "launch a single instance application twice, the second instance will either just\n" @@ -6871,20 +6996,20 @@ msgid "" "handling the startup notification side." msgstr "" -#: gnu/packages/gnome.scm:10168 +#: gnu/packages/gnome.scm:10190 msgid "" "Calculator is an application that solves mathematical equations and\n" "is suitable as a default application in a Desktop environment." msgstr "" -#: gnu/packages/gnome.scm:10194 +#: gnu/packages/gnome.scm:10216 msgid "" "Xpad is a sticky note that strives to be simple, fault tolerant,\n" "and customizable. Xpad consists of independent pad windows, each is\n" "basically a text box in which notes can be written." msgstr "" -#: gnu/packages/gnome.scm:10267 +#: gnu/packages/gnome.scm:10289 msgid "" "This program allows you to browse through all the available Unicode\n" "characters and categories for the installed fonts, and to examine their\n" @@ -6892,20 +7017,20 @@ msgid "" "only know by its Unicode name or code point." msgstr "" -#: gnu/packages/gnome.scm:10299 +#: gnu/packages/gnome.scm:10321 msgid "" "Color Picker is a simple color chooser written in GTK3. It\n" "supports both X and Wayland display servers." msgstr "" -#: gnu/packages/gnome.scm:10322 +#: gnu/packages/gnome.scm:10344 msgid "" "Bluefish is an editor aimed at programmers and web developers,\n" "with many options to write web sites, scripts and other code.\n" "Bluefish supports many programming and markup languages." msgstr "" -#: gnu/packages/gnome.scm:10363 +#: gnu/packages/gnome.scm:10385 msgid "" "GNOME System Monitor is a GNOME process viewer and system monitor with\n" "an attractive, easy-to-use interface. It has features, such as a tree view\n" @@ -6914,27 +7039,27 @@ msgid "" "kill/reinice processes." msgstr "" -#: gnu/packages/gnome.scm:10405 +#: gnu/packages/gnome.scm:10427 msgid "" "This package includes a python client library for the AT-SPI D-Bus\n" "accessibility infrastructure." msgstr "" -#: gnu/packages/gnome.scm:10475 +#: gnu/packages/gnome.scm:10495 msgid "" "Orca is a screen reader that provides access to the graphical desktop\n" "via speech and refreshable braille. Orca works with applications and toolkits\n" "that support the Assistive Technology Service Provider Interface (AT-SPI)." msgstr "" -#: gnu/packages/gnome.scm:10529 +#: gnu/packages/gnome.scm:10549 msgid "" "gspell provides a flexible API to add spell-checking to a GTK+\n" "application. It provides a GObject API, spell-checking to text entries and\n" "text views, and buttons to choose the language." msgstr "" -#: gnu/packages/gnome.scm:10571 +#: gnu/packages/gnome.scm:10591 msgid "" "GNOME Planner is a project management tool based on the Work Breakdown\n" "Structure (WBS). Its goal is to enable you to easily plan projects. Based on\n" @@ -6946,7 +7071,7 @@ msgid "" "views can be printed as PDF or PostScript files, or exported to HTML." msgstr "" -#: gnu/packages/gnome.scm:10644 +#: gnu/packages/gnome.scm:10664 msgid "" "Lollypop is a music player designed to play well with GNOME desktop.\n" "Lollypop plays audio formats such as mp3, mp4, ogg and flac and gets information\n" @@ -6954,26 +7079,26 @@ msgid "" "automatically and it can stream songs from online music services and charts." msgstr "" -#: gnu/packages/gnome.scm:10668 +#: gnu/packages/gnome.scm:10688 msgid "" "A collection of GStreamer video filters and effects to be used in\n" "photo-booth-like software, such as Cheese." msgstr "" -#: gnu/packages/gnome.scm:10747 +#: gnu/packages/gnome.scm:10766 msgid "" "Cheese uses your webcam to take photos and videos. Cheese can also\n" "apply fancy special effects and lets you share the fun with others." msgstr "" -#: gnu/packages/gnome.scm:10801 +#: gnu/packages/gnome.scm:10820 msgid "" "Password Safe is a password manager which makes use of the KeePass v4\n" "format. It integrates perfectly with the GNOME desktop and provides an easy\n" "and uncluttered interface for the management of password databases." msgstr "" -#: gnu/packages/gnome.scm:10836 +#: gnu/packages/gnome.scm:10855 msgid "" "Sound Juicer extracts audio from compact discs and convert it\n" "into audio files that a personal computer or digital audio player can play.\n" @@ -6981,27 +7106,27 @@ msgid "" "mp3, Ogg Vorbis and FLAC" msgstr "" -#: gnu/packages/gnome.scm:10888 +#: gnu/packages/gnome.scm:10907 msgid "" "SoundConverter supports converting between many audio formats including\n" "Opus, Ogg Vorbis, FLAC and more. It supports parallel conversion, and\n" "configurable file renaming." msgstr "" -#: gnu/packages/gnome.scm:10936 +#: gnu/packages/gnome.scm:10955 msgid "" "Workrave is a program that assists in the recovery and prevention of\n" "repetitive strain injury (@dfn{RSI}). The program frequently alerts you to take\n" "micro-pauses and rest breaks, and restricts you to your daily limit." msgstr "" -#: gnu/packages/gnome.scm:10977 +#: gnu/packages/gnome.scm:10996 msgid "" "The GHex program can view and edit files in two ways:\n" "hexadecimal or ASCII. It is useful for editing binary files in general." msgstr "" -#: gnu/packages/gnome.scm:11013 +#: gnu/packages/gnome.scm:11032 msgid "" "The libdazzle library is a companion library to GObject and\n" "Gtk+. It provides various features that the authors wish were in the\n" @@ -7010,40 +7135,40 @@ msgid "" "generic enough to work for everyone." msgstr "" -#: gnu/packages/gnome.scm:11080 +#: gnu/packages/gnome.scm:11099 msgid "" "Evolution is a personal information management application\n" "that provides integrated mail, calendaring and address book\n" "functionality." msgstr "" -#: gnu/packages/gnome.scm:11140 +#: gnu/packages/gnome.scm:11154 msgid "" "GThumb is an image viewer, browser, organizer, editor and\n" "advanced image management tool" msgstr "" -#: gnu/packages/gnome.scm:11213 +#: gnu/packages/gnome.scm:11227 msgid "" "Terminator allows you to run multiple GNOME terminals in a grid and\n" "tabs, and it supports drag and drop re-ordering of terminals." msgstr "" -#: gnu/packages/gnome.scm:11274 +#: gnu/packages/gnome.scm:11288 msgid "" "The aim of the handy library is to help with developing user\n" "interfaces for mobile devices using GTK+. It provides responsive GTK+ widgets\n" "for usage on small and big screens." msgstr "" -#: gnu/packages/gnome.scm:11323 +#: gnu/packages/gnome.scm:11337 msgid "" "libgit2-glib is a GLib wrapper library around the libgit2 Git\n" "access library. It only implements the core plumbing functions, not really the\n" "higher level porcelain stuff." msgstr "" -#: gnu/packages/gnome.scm:11402 +#: gnu/packages/gnome.scm:11415 msgid "" "gitg is a graphical user interface for git. It aims at being a small,\n" "fast and convenient tool to visualize the history of git repositories.\n" @@ -7051,21 +7176,21 @@ msgid "" "repository and commit your work." msgstr "" -#: gnu/packages/gnome.scm:11474 +#: gnu/packages/gnome.scm:11487 msgid "" "Gamin is a file and directory monitoring system defined to be a subset\n" "of the FAM (File Alteration Monitor) system. This is a service provided by a\n" "library which detects when a file or a directory has been modified." msgstr "" -#: gnu/packages/gnome.scm:11508 +#: gnu/packages/gnome.scm:11521 msgid "" "GNOME Mahjongg is a game based on the classic Chinese\n" -"tile-matching game Mahjong. It features multiple board layouts, tile themes,\n" +"tile-matching game Mahjongg. It features multiple board layouts, tile themes,\n" "and a high score table." msgstr "" -#: gnu/packages/gnome.scm:11546 +#: gnu/packages/gnome.scm:11559 msgid "" "This package provides themes and related elements that don't\n" "really fit in other upstream packages. It offers legacy support for GTK+ 2\n" @@ -7073,19 +7198,19 @@ msgid "" "index files needed for Adwaita to be used outside of GNOME." msgstr "" -#: gnu/packages/gnome.scm:11585 +#: gnu/packages/gnome.scm:11605 msgid "" -"Gnote is a note-taking application written for the GNOME desktop\n" -"environment." +"Gnote is a note-taking application written for the GNOME\n" +"desktop environment." msgstr "" -#: gnu/packages/gnome.scm:11647 +#: gnu/packages/gnome.scm:11664 msgid "" "Polari is a simple Internet Relay Chat (IRC) client that is designed to\n" "integrate seamlessly with the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:11706 +#: gnu/packages/gnome.scm:11723 msgid "" "GNOME Boxes is a simple application to view, access, and\n" "manage remote and virtual systems. Note that this application requires the\n" @@ -7094,7 +7219,7 @@ msgid "" "these services on the Guix System." msgstr "" -#: gnu/packages/gnome.scm:11806 +#: gnu/packages/gnome.scm:11823 msgid "" "Geary collects related messages together into conversations,\n" "making it easy to find and follow your discussions. Full-text and keyword\n" @@ -7106,14 +7231,14 @@ msgid "" "to." msgstr "" -#: gnu/packages/gnome.scm:11851 +#: gnu/packages/gnome.scm:11868 msgid "" "gLabels is a program for creating labels and business cards. It is\n" "designed to work with various laser/ink-jet peel-off label and business\n" "card sheets that you’ll find at most office supply stores." msgstr "" -#: gnu/packages/gnome.scm:11892 +#: gnu/packages/gnome.scm:11909 msgid "" "GNOME LaTeX is a LaTeX editor for the GNOME desktop. It has features\n" "such as build tools, completion of LaTeX commands, structure navigation,\n" @@ -7121,19 +7246,19 @@ msgid "" "and toolbars." msgstr "" -#: gnu/packages/gnome.scm:11951 +#: gnu/packages/gnome.scm:11968 msgid "" "Setzer is a simple yet full-featured LaTeX editor written in Python with\n" "GTK+. It integrates well with the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:12017 +#: gnu/packages/gnome.scm:12034 msgid "" "Apostrophe is a GTK+ based distraction-free Markdown editor.\n" "It uses pandoc as back-end for parsing Markdown." msgstr "" -#: gnu/packages/gnome.scm:12070 +#: gnu/packages/gnome.scm:12088 msgid "" "libratbag provides @command{ratbagd}, a DBus daemon to\n" "configure input devices, mainly gaming mice. The daemon provides a generic\n" @@ -7150,7 +7275,7 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12140 +#: gnu/packages/gnome.scm:12156 msgid "" "Piper is a GTK+ application for configuring gaming mice with\n" "onboard configuration for key bindings via libratbag. Piper requires\n" @@ -7162,14 +7287,14 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12202 +#: gnu/packages/gnome.scm:12218 msgid "" "Parlatype is an audio player for the GNOME desktop\n" "environment. Its main purpose is the manual transcription of spoken\n" "audio files." msgstr "" -#: gnu/packages/gnome.scm:12228 +#: gnu/packages/gnome.scm:12244 msgid "" "Jsonrpc-GLib is a library to communicate with JSON-RPC based\n" "peers in either a synchronous or asynchronous fashion. It also allows\n" @@ -7178,14 +7303,14 @@ msgid "" "host to avoid parser overhead and memory-allocator fragmentation." msgstr "" -#: gnu/packages/gnome.scm:12256 +#: gnu/packages/gnome.scm:12272 msgid "" "Feedbackd provides a DBus daemon to act on events to provide\n" "haptic, visual and audio feedback. It offers the libfeedbackd library and\n" "GObject introspection bindings." msgstr "" -#: gnu/packages/gnome.scm:12305 +#: gnu/packages/gnome.scm:12321 msgid "" "Sysprof performs detailed, accurate, and fast CPU profiling of an entire\n" "GNU/Linux system including the kernel and all user-space applications. This\n" @@ -7195,21 +7320,21 @@ msgid "" "libraries. Applications do not need to be recompiled--or even restarted." msgstr "" -#: gnu/packages/gnome.scm:12388 +#: gnu/packages/gnome.scm:12406 msgid "" -"Builder aims to be an integrated development\n" -"environment (IDE) for writing GNOME-based software. It features fuzzy search,\n" -"auto-completion, a mini code map, documentation browsing, Git integration, an\n" -"integrated profiler via Sysprof, debugging support, and more." +"Builder aims to be an integrated development environment (IDE) for\n" +"writing GNOME-based software. It features fuzzy search, auto-completion,\n" +"a mini code map, documentation browsing, Git integration, an integrated\n" +"profiler via Sysprof, debugging support, and more." msgstr "" -#: gnu/packages/gnome.scm:12461 +#: gnu/packages/gnome.scm:12480 msgid "" "Komikku is an online/offline manga reader for GNOME,\n" "developed with the aim of being used with the Librem 5 phone." msgstr "" -#: gnu/packages/gnome.scm:12545 +#: gnu/packages/gnome.scm:12564 msgid "" "GNU Data Access (GDA) is an attempt to provide uniform access to\n" "different kinds of data sources (databases, information servers, mail spools,\n" @@ -7217,7 +7342,7 @@ msgid "" "your data." msgstr "" -#: gnu/packages/gnome.scm:12596 +#: gnu/packages/gnome.scm:12614 msgid "" "gtranslator is a quite comfortable gettext po/po.gz/(g)mo files editor\n" "for the GNOME 3.x platform with many features. It aims to be a very complete\n" @@ -7225,32 +7350,42 @@ msgid "" "world." msgstr "" -#: gnu/packages/gnome.scm:12662 +#: gnu/packages/gnome.scm:12680 msgid "" "OCRFeeder is a complete Optical Character Recognition and\n" "Document Analysis and Recognition program." msgstr "" -#: gnu/packages/gnome.scm:12702 +#: gnu/packages/gnome.scm:12720 msgid "" "@code{libadwaita} offers widgets and objects to build GNOME\n" "applications scaling from desktop workstations to mobile phones. It is the\n" "successor of @code{libhandy} for GTK4." msgstr "" -#: gnu/packages/gnome.scm:12727 +#: gnu/packages/gnome.scm:12745 msgid "" "@code{gnome-power-manager} is a tool for viewing present and\n" "historical battery usage and related statistics." msgstr "" +#: gnu/packages/gnome.scm:12789 +#, fuzzy +#| msgid "" +#| "This package provides a dictionary for the Hunspell spell-checking\n" +#| "library." +msgid "This package provides a graphical file manager." +msgstr "" +"Questo pacchetto fornisce un dizionario per il controllo ortografico per la libreria \n" +"Hunspell." + #: gnu/packages/gnuzilla.scm:155 msgid "" "SpiderMonkey is Mozilla's JavaScript engine written\n" "in C/C++." msgstr "" -#: gnu/packages/gnuzilla.scm:1314 +#: gnu/packages/gnuzilla.scm:1315 msgid "" "IceCat is the GNU version of the Firefox browser. It is entirely free\n" "software, which does not recommend non-free plugins and addons. It also\n" @@ -7263,19 +7398,19 @@ msgid "" "standards of the IceCat project." msgstr "" -#: gnu/packages/gnuzilla.scm:1642 +#: gnu/packages/gnuzilla.scm:1648 msgid "" "This package provides an email client built based on Mozilla\n" "Thunderbird. It supports email, news feeds, chat, calendar and contacts." msgstr "" -#: gnu/packages/gnuzilla.scm:1717 +#: gnu/packages/gnuzilla.scm:1723 msgid "" "Firefox Decrypt is a tool to extract passwords from\n" "Mozilla (Firefox, Waterfox, Thunderbird, SeaMonkey) profiles." msgstr "" -#: gnu/packages/gnuzilla.scm:1754 +#: gnu/packages/gnuzilla.scm:1760 msgid "" "@code{lz4json} is a little utility to unpack lz4json files as generated\n" "by Firefox's bookmark backups and session restore. This is a different format\n" @@ -7289,7 +7424,7 @@ msgid "" "tools have full access to view and control running applications." msgstr "" -#: gnu/packages/gtk.scm:215 +#: gnu/packages/gtk.scm:212 msgid "" "Cairo is a 2D graphics library with support for multiple output\n" "devices. Currently supported output targets include the X Window System (via\n" @@ -7297,24 +7432,24 @@ msgid "" "output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB." msgstr "" -#: gnu/packages/gtk.scm:277 +#: gnu/packages/gtk.scm:274 msgid "HarfBuzz is an OpenType text shaping engine." msgstr "" -#: gnu/packages/gtk.scm:320 +#: gnu/packages/gtk.scm:317 msgid "" "Libdatrie is an implementation of double-array structure for\n" "representing trie. Trie is a kind of digital search tree." msgstr "" -#: gnu/packages/gtk.scm:352 +#: gnu/packages/gtk.scm:349 msgid "" "LibThai is a set of Thai language support routines aimed to\n" "ease developers’ tasks to incorporate Thai language support in their\n" "applications." msgstr "" -#: gnu/packages/gtk.scm:407 +#: gnu/packages/gtk.scm:404 msgid "" "Pango is a library for laying out and rendering of text, with\n" "an emphasis on internationalization. Pango can be used anywhere that text\n" @@ -7323,21 +7458,21 @@ msgid "" "handling for GTK+-2.x." msgstr "" -#: gnu/packages/gtk.scm:461 +#: gnu/packages/gtk.scm:458 msgid "" "Pangox was a X backend to pango. It is now obsolete and no\n" "longer provided by recent pango releases. pangox-compat provides the\n" "functions which were removed." msgstr "" -#: gnu/packages/gtk.scm:498 +#: gnu/packages/gtk.scm:495 msgid "" "Ganv is an interactive GTK+ widget for interactive “boxes and lines” or\n" "graph-like environments, e.g. modular synths or finite state machine\n" "diagrams." msgstr "" -#: gnu/packages/gtk.scm:554 +#: gnu/packages/gtk.scm:551 msgid "" "GtkSourceView is a portable C library that extends the standard GTK+\n" "framework for multiline text editing with support for configurable syntax\n" @@ -7345,33 +7480,33 @@ msgid "" "printing and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:602 +#: gnu/packages/gtk.scm:599 msgid "" "GtkSourceView is a text widget that extends the standard\n" "GTK+ text widget GtkTextView. It improves GtkTextView by implementing syntax\n" "highlighting and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:698 +#: gnu/packages/gtk.scm:695 msgid "" "GdkPixbuf is a library that loads image data in various\n" "formats and stores it as linear buffers in memory. The buffers can then be\n" "scaled, composited, modified, saved, or rendered." msgstr "" -#: gnu/packages/gtk.scm:746 +#: gnu/packages/gtk.scm:743 msgid "" "The Assistive Technology Service Provider Interface, core components,\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:827 +#: gnu/packages/gtk.scm:824 msgid "" "The Assistive Technology Service Provider Interface\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:921 +#: gnu/packages/gtk.scm:918 msgid "" "GTK+, or the GIMP Toolkit, is a multi-platform toolkit for creating\n" "graphical user interfaces. Offering a complete set of widgets, GTK+ is\n" @@ -7379,14 +7514,14 @@ msgid "" "application suites." msgstr "" -#: gnu/packages/gtk.scm:1234 +#: gnu/packages/gtk.scm:1238 msgid "" "GTK is a multi-platform toolkit for creating graphical user\n" "interfaces. Offering a complete set of widgets, GTK is suitable for projects\n" "ranging from small one-off tools to complete application suites." msgstr "" -#: gnu/packages/gtk.scm:1308 +#: gnu/packages/gtk.scm:1312 msgid "" "Guile-Cairo wraps the Cairo graphics library for Guile Scheme.\n" "Guile-Cairo is complete, wrapping almost all of the Cairo API. It is API\n" @@ -7396,13 +7531,13 @@ msgid "" "exceptions, macros, and a dynamic programming environment." msgstr "" -#: gnu/packages/gtk.scm:1389 +#: gnu/packages/gtk.scm:1393 msgid "" "Guile-RSVG wraps the RSVG library for Guile, allowing you to render SVG\n" "images onto Cairo surfaces." msgstr "" -#: gnu/packages/gtk.scm:1456 +#: gnu/packages/gtk.scm:1460 msgid "" "Guile-Present defines a declarative vocabulary for presentations,\n" "together with tools to render presentation documents as SVG or PDF.\n" @@ -7411,29 +7546,29 @@ msgid "" "documents." msgstr "" -#: gnu/packages/gtk.scm:1522 +#: gnu/packages/gtk.scm:1526 msgid "" "Includes guile-clutter, guile-gnome-gstreamer,\n" "guile-gnome-platform (GNOME developer libraries), and guile-gtksourceview." msgstr "" -#: gnu/packages/gtk.scm:1578 +#: gnu/packages/gtk.scm:1582 msgid "" "Cairomm provides a C++ programming interface to the Cairo 2D graphics\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1642 +#: gnu/packages/gtk.scm:1647 msgid "" "Pangomm provides a C++ programming interface to the Pango text rendering\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1704 +#: gnu/packages/gtk.scm:1709 msgid "ATKmm is the C++ binding for the ATK library." msgstr "" -#: gnu/packages/gtk.scm:1784 +#: gnu/packages/gtk.scm:1790 msgid "" "GTKmm is the official C++ interface for the popular GUI\n" "library GTK+. Highlights include typesafe callbacks, and a comprehensive set\n" @@ -7662,7 +7797,7 @@ msgid "" "excellent pavucontrol." msgstr "" -#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:238 +#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:241 msgid "" "Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" "official extension language of the GNU system. It is an implementation of\n" @@ -7671,14 +7806,14 @@ msgid "" "without requiring the source code to be rewritten." msgstr "" -#: gnu/packages/guile.scm:502 +#: gnu/packages/guile.scm:506 msgid "" "This module provides line editing support via the Readline library for\n" "GNU@tie{}Guile. Use the @code{(ice-9 readline)} module and call its\n" "@code{activate-readline} procedure to enable it." msgstr "" -#: gnu/packages/guile.scm:604 +#: gnu/packages/guile.scm:608 msgid "" "Guile-JSON supports parsing and building JSON documents according to the\n" "specification. These are the main features:\n" @@ -7691,17 +7826,17 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/guile.scm:701 +#: gnu/packages/guile.scm:705 msgid "" "Guile bindings to the GDBM key-value storage system, using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:730 +#: gnu/packages/guile.scm:734 msgid "This package provides Guile bindings to the SQLite database system." msgstr "" -#: gnu/packages/guile.scm:769 +#: gnu/packages/guile.scm:773 msgid "" "Guile bytestructures offers a system imitating the type system\n" "of the C programming language, to be used on bytevectors. C's type\n" @@ -7710,33 +7845,33 @@ msgid "" "type system, elevating types to first-class status." msgstr "" -#: gnu/packages/guile.scm:810 +#: gnu/packages/guile.scm:814 msgid "" "This package provides Guile bindings to libgit2, a library to\n" "manipulate repositories of the Git version control system." msgstr "" -#: gnu/packages/guile.scm:846 +#: gnu/packages/guile.scm:850 msgid "" "This package provides Guile bindings for zlib, a lossless\n" "data-compression library. The bindings are written in pure Scheme by using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:877 +#: gnu/packages/guile.scm:881 msgid "" "This package provides Guile bindings for lzlib, a C library for\n" "in-memory LZMA compression and decompression. The bindings are written in\n" "pure Scheme by using Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:904 +#: gnu/packages/guile.scm:908 msgid "" "This package provides a GNU Guile interface to the zstd (``zstandard'')\n" "compression library." msgstr "" -#: gnu/packages/guile.scm:926 +#: gnu/packages/guile.scm:930 msgid "" "Guile-LZMA is a Guile wrapper for the liblzma (XZ)\n" "library. It exposes an interface similar to other Guile compression\n" @@ -8323,7 +8458,7 @@ msgid "" "It supports JPEG, PNG and GIF formats." msgstr "" -#: gnu/packages/image-viewers.scm:640 +#: gnu/packages/image-viewers.scm:643 msgid "" "Luminance HDR (formerly QtPFSGui) is a graphical user interface\n" "application that aims to provide a workflow for high dynamic range (HDR)\n" @@ -8339,7 +8474,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:735 +#: gnu/packages/image-viewers.scm:738 msgid "" "MComix is a customizable image viewer that specializes as\n" "a comic and manga reader. It supports a variety of container formats\n" @@ -8348,7 +8483,7 @@ msgid "" "For PDF support, install the @emph{mupdf} package." msgstr "" -#: gnu/packages/image-viewers.scm:775 +#: gnu/packages/image-viewers.scm:778 msgid "" "qView is a Qt image viewer designed with visually\n" "minimalism and usability in mind. Its features include animated GIF\n" @@ -8356,14 +8491,14 @@ msgid "" "preloading." msgstr "" -#: gnu/packages/image-viewers.scm:799 +#: gnu/packages/image-viewers.scm:802 msgid "" "Chafa is a command-line utility that converts all kinds of images,\n" "including animated GIFs, into ANSI/Unicode character output that can be\n" "displayed in a terminal." msgstr "" -#: gnu/packages/image-viewers.scm:847 +#: gnu/packages/image-viewers.scm:850 msgid "" "@code{imv} is a command line image viewer intended for use\n" "with tiling window managers. Features include:\n" @@ -8385,7 +8520,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:924 +#: gnu/packages/image-viewers.scm:927 msgid "" "Quick Image Viewer is a small and fast GDK/Imlib2 image viewer.\n" "Features include zoom, maxpect, scale down, fullscreen, slideshow, delete,\n" @@ -8394,7 +8529,7 @@ msgid "" "to set X desktop background." msgstr "" -#: gnu/packages/image-viewers.scm:968 +#: gnu/packages/image-viewers.scm:971 msgid "" "pqiv is a GTK-3 based command-line image viewer with a minimal UI.\n" "It is highly customizable, can be fully controlled from scripts, and has\n" @@ -8402,7 +8537,7 @@ msgid "" "archives." msgstr "" -#: gnu/packages/image-viewers.scm:1025 +#: gnu/packages/image-viewers.scm:1028 msgid "" "Nomacs is a simple to use image lounge featuring\n" "semi-transparent widgets that display additional information such as metadata,\n" @@ -8415,7 +8550,7 @@ msgid "" "synchronization of multiple instances." msgstr "" -#: gnu/packages/image-viewers.scm:1070 +#: gnu/packages/image-viewers.scm:1073 msgid "xzgv is a fast image viewer that provides extensive keyboard support." msgstr "" @@ -8678,17 +8813,17 @@ msgid "" "Math for editing mathematics." msgstr "" -#: gnu/packages/linux.scm:604 +#: gnu/packages/linux.scm:625 msgid "Headers of the Linux-Libre kernel." msgstr "" -#: gnu/packages/linux.scm:905 +#: gnu/packages/linux.scm:935 msgid "" "GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.\n" "It has been modified to remove all non-free binary blobs." msgstr "" -#: gnu/packages/linux.scm:1215 +#: gnu/packages/linux.scm:1252 msgid "" "This simple Linux kernel module allows calls from user space to any\n" "@acronym{ACPI, Advanced Configuration and Power Interface} method provided by\n" @@ -8700,7 +8835,7 @@ msgid "" "and should be used with caution, especially on untested models." msgstr "" -#: gnu/packages/linux.scm:1283 +#: gnu/packages/linux.scm:1320 msgid "" "CoreFreq is a CPU monitor that reports low-level processor settings and\n" "performance data with notably high precision by using a loadable Linux kernel\n" @@ -8731,7 +8866,7 @@ msgid "" "@file{README.md} before loading it." msgstr "" -#: gnu/packages/linux.scm:1332 +#: gnu/packages/linux.scm:1369 msgid "" "This is the Linux kernel @acronym{ACPI, Advanced Configuration and Power\n" "Interface} platform driver for the @acronym{EC, Embedded Controller} firmware\n" @@ -8740,13 +8875,13 @@ msgid "" "and the notification, WiFi, and Bluetooth LED." msgstr "" -#: gnu/packages/linux.scm:1375 +#: gnu/packages/linux.scm:1413 msgid "" "This is Realtek's RTL8821CE Linux driver for wireless\n" "network adapters." msgstr "" -#: gnu/packages/linux.scm:1407 +#: gnu/packages/linux.scm:1445 msgid "" "This is Realtek's rtl8812au Linux driver for USB 802.11n wireless\n" "network adapters, modified by the aircrack-ng project to support monitor mode\n" @@ -8754,7 +8889,7 @@ msgid "" "RTL8812AU, RTL8821AU, and RTL8814AU chips." msgstr "" -#: gnu/packages/linux.scm:1431 +#: gnu/packages/linux.scm:1469 msgid "" "The @acronym{VHBA, Virtual SCSI Host Bus Adapter} module is the link\n" "between the CDemu user-space daemon and the kernel Linux. It acts as a\n" @@ -8763,13 +8898,13 @@ msgid "" "emulate optical devices such as DVD and CD-ROM drives." msgstr "" -#: gnu/packages/linux.scm:1460 +#: gnu/packages/linux.scm:1497 msgid "" "The bbswitch module provides a way to toggle the Nvidia\n" "graphics card on Optimus laptops." msgstr "" -#: gnu/packages/linux.scm:1501 +#: gnu/packages/linux.scm:1536 msgid "" "This package provides two Linux kernel drivers, ddcci and\n" "ddcci-backlight, that allows the control of DDC/CI monitors through the sysfs\n" @@ -8779,7 +8914,7 @@ msgid "" "supported under @file{/sys/class/backlight/}." msgstr "" -#: gnu/packages/linux.scm:1528 +#: gnu/packages/linux.scm:1563 msgid "" "This Linux module creates virtual video devices. @acronym{V4L2, Video\n" "for Linux 2} applications will treat these as ordinary video devices but read\n" @@ -8791,7 +8926,7 @@ msgid "" "application by hooking GStreamer into the loopback device." msgstr "" -#: gnu/packages/linux.scm:1569 +#: gnu/packages/linux.scm:1604 msgid "" "This package provides a driver for the XBox One S Wireless controller\n" "and some newer models when connected via Bluetooth. In addition to the included\n" @@ -8799,7 +8934,7 @@ msgid "" "which need to be installed separately." msgstr "" -#: gnu/packages/linux.scm:1622 +#: gnu/packages/linux.scm:1657 msgid "" "A *Free* project to implement OSF's RFC 86.0.\n" "Pluggable authentication modules are small shared object files that can\n" @@ -8807,18 +8942,18 @@ msgid "" "at login. Local and dynamic reconfiguration are its key features." msgstr "" -#: gnu/packages/linux.scm:1683 +#: gnu/packages/linux.scm:1718 msgid "This package provides a PAM interface using @code{ctypes}." msgstr "" -#: gnu/packages/linux.scm:1712 +#: gnu/packages/linux.scm:1747 msgid "" "This package provides a PAM module that hands over your\n" "login password to @code{gpg-agent}. This can be useful if you are using a\n" "GnuPG-based password manager like @code{pass}." msgstr "" -#: gnu/packages/linux.scm:1741 +#: gnu/packages/linux.scm:1776 msgid "" "This package contains utilities for accessing the powercap\n" "Linux kernel feature through sysfs. It includes an implementation for working\n" @@ -8826,7 +8961,7 @@ msgid "" "It provides the commands @code{powercap-info} and @code{powercap-set}." msgstr "" -#: gnu/packages/linux.scm:1772 +#: gnu/packages/linux.scm:1807 msgid "" "Powerstat measures and reports your computer's power consumption in real\n" "time. On mobile PCs, it uses ACPI battery information to measure the power\n" @@ -8843,28 +8978,28 @@ msgid "" "deviation, and minimum and maximum values. It can show a nice histogram too." msgstr "" -#: gnu/packages/linux.scm:1810 +#: gnu/packages/linux.scm:1845 msgid "" "This PSmisc package is a set of some small useful utilities that\n" "use the proc file system. We're not about changing the world, but\n" "providing the system administrator with some help in common tasks." msgstr "" -#: gnu/packages/linux.scm:1948 +#: gnu/packages/linux.scm:1984 msgid "" "Util-linux is a diverse collection of Linux kernel\n" "utilities. It provides dmesg and includes tools for working with file systems,\n" "block devices, UUIDs, TTYs, and many other tools." msgstr "" -#: gnu/packages/linux.scm:1986 +#: gnu/packages/linux.scm:2037 msgid "" "ddate displays the Discordian date and holidays of a given date.\n" "The Discordian calendar was made popular by the \"Illuminatus!\" trilogy\n" "by Robert Shea and Robert Anton Wilson." msgstr "" -#: gnu/packages/linux.scm:2040 +#: gnu/packages/linux.scm:2091 msgid "" "The kernel Linux's @dfn{frame buffers} provide a simple interface to\n" "different kinds of graphic displays. The @command{fbset} utility can query and\n" @@ -8872,7 +9007,7 @@ msgid "" "parameters." msgstr "" -#: gnu/packages/linux.scm:2085 +#: gnu/packages/linux.scm:2136 msgid "" "Procps is the package that has a bunch of small useful utilities\n" "that give information about processes using the Linux /proc file system.\n" @@ -8880,11 +9015,11 @@ msgid "" "slabtop, tload, top, vmstat, w, watch and sysctl." msgstr "" -#: gnu/packages/linux.scm:2130 +#: gnu/packages/linux.scm:2181 msgid "Tools for working with USB devices, such as lsusb." msgstr "" -#: gnu/packages/linux.scm:2154 +#: gnu/packages/linux.scm:2205 msgid "" "The USB/IP protocol enables to pass USB device from a server to\n" "a client over the network. The server is a machine which shares an\n" @@ -8897,23 +9032,23 @@ msgid "" "module." msgstr "" -#: gnu/packages/linux.scm:2237 +#: gnu/packages/linux.scm:2288 msgid "This package provides tools for manipulating ext2/ext3/ext4 file systems." msgstr "" -#: gnu/packages/linux.scm:2279 +#: gnu/packages/linux.scm:2330 msgid "" "This package provides statically-linked e2fsck command taken\n" "from the e2fsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:2302 +#: gnu/packages/linux.scm:2353 msgid "" "Extundelete is a set of tools that can recover deleted files from an\n" "ext3 or ext4 partition." msgstr "" -#: gnu/packages/linux.scm:2335 +#: gnu/packages/linux.scm:2386 msgid "" "Zerofree finds the unallocated blocks with non-zero value content in an\n" "ext2, ext3, or ext4 file system and fills them with zeroes (or another value).\n" @@ -8921,39 +9056,39 @@ msgid "" "Zerofree requires the file system to be unmounted or mounted read-only." msgstr "" -#: gnu/packages/linux.scm:2380 +#: gnu/packages/linux.scm:2431 msgid "" "strace is a system call tracer, i.e. a debugging tool which prints out a\n" "trace of all the system calls made by a another process/program." msgstr "" -#: gnu/packages/linux.scm:2403 +#: gnu/packages/linux.scm:2454 msgid "" "ltrace intercepts and records dynamic library calls which are called by\n" "an executed process and the signals received by that process. It can also\n" "intercept and print the system calls executed by the program." msgstr "" -#: gnu/packages/linux.scm:2428 +#: gnu/packages/linux.scm:2479 msgid "" "This package contains Advanced Linux Sound Architecture Use Case Manager\n" "configuration of audio input/output names and routing for specific audio\n" "hardware." msgstr "" -#: gnu/packages/linux.scm:2452 +#: gnu/packages/linux.scm:2503 msgid "" "This package contains Advanced Linux Sound Architecture topology\n" "configuration files that can be used for specific audio hardware." msgstr "" -#: gnu/packages/linux.scm:2499 gnu/packages/linux.scm:2548 +#: gnu/packages/linux.scm:2550 gnu/packages/linux.scm:2599 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system." msgstr "" -#: gnu/packages/linux.scm:2617 +#: gnu/packages/linux.scm:2668 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system. This package enhances ALSA\n" @@ -8962,7 +9097,7 @@ msgid "" "external rate conversion." msgstr "" -#: gnu/packages/linux.scm:2655 +#: gnu/packages/linux.scm:2706 msgid "" "@command{iptables} is the user-space command line program used to\n" "configure the Linux 2.4.x and later IPv4 packet filtering ruleset\n" @@ -8974,7 +9109,7 @@ msgid "" "Both commands are targeted at system administrators." msgstr "" -#: gnu/packages/linux.scm:2691 +#: gnu/packages/linux.scm:2742 msgid "" "This simple daemon feeds entropy from the CPU Jitter @acronym{RNG, random\n" "number generator} core to the kernel Linux's entropy estimator. This prevents\n" @@ -8996,7 +9131,7 @@ msgid "" "early boot when entropy may be low, especially in virtualised environments." msgstr "" -#: gnu/packages/linux.scm:2727 +#: gnu/packages/linux.scm:2778 msgid "" "@command{lsscsi} lists SCSI logical units or SCSI targets. It can\n" "also list NVMe namespaces or controllers and show the relationship between a\n" @@ -9004,7 +9139,7 @@ msgid "" "name." msgstr "" -#: gnu/packages/linux.scm:2751 +#: gnu/packages/linux.scm:2802 msgid "" "ebtables is an application program used to set up and maintain the\n" "tables of rules (inside the Linux kernel) that inspect Ethernet frames. It is\n" @@ -9012,7 +9147,7 @@ msgid "" "that the Ethernet protocol is much simpler than the IP protocol." msgstr "" -#: gnu/packages/linux.scm:2816 +#: gnu/packages/linux.scm:2867 msgid "" "Iproute2 is a collection of utilities for controlling TCP/IP networking\n" "and traffic with the Linux kernel. The most important of these are\n" @@ -9024,7 +9159,7 @@ msgid "" "inadequately in modern network environments, and both should be deprecated." msgstr "" -#: gnu/packages/linux.scm:2896 +#: gnu/packages/linux.scm:2947 msgid "" "This package includes the important tools for controlling the network\n" "subsystem of the Linux kernel. This includes arp, ifconfig, netstat, rarp and\n" @@ -9033,13 +9168,13 @@ msgid "" "configuration (iptunnel, ipmaddr)." msgstr "" -#: gnu/packages/linux.scm:2947 +#: gnu/packages/linux.scm:2989 msgid "" "Libcap2 provides a programming interface to POSIX capabilities on\n" "Linux-based operating systems." msgstr "" -#: gnu/packages/linux.scm:2974 +#: gnu/packages/linux.scm:3016 msgid "" "Utilities for Linux's Ethernet bridging facilities. A bridge is a way\n" "to connect two Ethernet segments together in a protocol independent way.\n" @@ -9048,7 +9183,7 @@ msgid "" "transparently through a bridge." msgstr "" -#: gnu/packages/linux.scm:3025 +#: gnu/packages/linux.scm:3067 msgid "" "The libnl suite is a collection of libraries providing APIs to netlink\n" "protocol based Linux kernel interfaces. Netlink is an IPC mechanism primarily\n" @@ -9057,13 +9192,13 @@ msgid "" "configuration and monitoring interfaces." msgstr "" -#: gnu/packages/linux.scm:3099 +#: gnu/packages/linux.scm:3141 msgid "" "iw is a new nl80211 based CLI configuration utility for wireless\n" "devices. It replaces @code{iwconfig}, which is deprecated." msgstr "" -#: gnu/packages/linux.scm:3149 +#: gnu/packages/linux.scm:3191 msgid "" "PowerTOP is a Linux tool to diagnose issues with power consumption and\n" "power management. In addition to being a diagnostic tool, PowerTOP also has\n" @@ -9072,19 +9207,19 @@ msgid "" "settings." msgstr "" -#: gnu/packages/linux.scm:3176 +#: gnu/packages/linux.scm:3218 msgid "" "Aumix adjusts an audio mixer from X, the console, a terminal,\n" "the command line or a script." msgstr "" -#: gnu/packages/linux.scm:3207 +#: gnu/packages/linux.scm:3249 msgid "" "Iotop is a Python program with a top like user interface to show the\n" "processes currently causing I/O." msgstr "" -#: gnu/packages/linux.scm:3265 +#: gnu/packages/linux.scm:3307 msgid "" "As a consequence of its monolithic design, file system code for Linux\n" "normally goes into the kernel itself---which is not only a robustness issue,\n" @@ -9094,7 +9229,7 @@ msgid "" "user-space processes." msgstr "" -#: gnu/packages/linux.scm:3358 +#: gnu/packages/linux.scm:3400 msgid "" "UnionFS-FUSE is a flexible union file system implementation in user\n" "space, using the FUSE library. Mounting a union file system allows you to\n" @@ -9102,7 +9237,7 @@ msgid "" "UnionFS-FUSE additionally supports copy-on-write." msgstr "" -#: gnu/packages/linux.scm:3437 +#: gnu/packages/linux.scm:3479 msgid "" "This is a file system client based on the SSH File Transfer Protocol.\n" "Since most SSH servers already support this protocol it is very easy to set\n" @@ -9110,7 +9245,7 @@ msgid "" "file system is as easy as logging into the server with an SSH client." msgstr "" -#: gnu/packages/linux.scm:3464 +#: gnu/packages/linux.scm:3506 msgid "" "archivemount is a FUSE-based file system for Unix variants,\n" "including Linux. Its purpose is to mount archives (i.e. tar, tar.gz, etc.) to a\n" @@ -9119,7 +9254,7 @@ msgid "" "compressed, transparent to other programs, without decompressing them." msgstr "" -#: gnu/packages/linux.scm:3495 +#: gnu/packages/linux.scm:3537 msgid "" "NUMA stands for Non-Uniform Memory Access, in other words a system whose\n" "memory is not all in one place. The @command{numactl} program allows you to\n" @@ -9132,26 +9267,26 @@ msgid "" "NUMA performance on your system." msgstr "" -#: gnu/packages/linux.scm:3533 +#: gnu/packages/linux.scm:3575 msgid "" "Kbd-neo provides the Neo2 keyboard layout for use with\n" "@command{loadkeys(1)} from @code{kbd(4)}." msgstr "" -#: gnu/packages/linux.scm:3599 +#: gnu/packages/linux.scm:3641 msgid "" "This package contains keytable files and keyboard utilities compatible\n" "for systems using the Linux kernel. This includes commands such as\n" "@code{loadkeys}, @code{setfont}, @code{kbdinfo}, and @code{chvt}." msgstr "" -#: gnu/packages/linux.scm:3662 +#: gnu/packages/linux.scm:3704 msgid "" "The inotify-tools packages provides a C library and command-line tools\n" "to use Linux' inotify mechanism, which allows file accesses to be monitored." msgstr "" -#: gnu/packages/linux.scm:3714 +#: gnu/packages/linux.scm:3756 msgid "" "Kmod is a set of tools to handle common tasks with Linux\n" "kernel modules like insert, remove, list, check properties, resolve\n" @@ -9162,21 +9297,21 @@ msgid "" "from the module-init-tools project." msgstr "" -#: gnu/packages/linux.scm:3769 +#: gnu/packages/linux.scm:3812 msgid "" "Early OOM is a minimalist out of memory (OOM) daemon that\n" "runs in user space and provides a more responsive and configurable alternative\n" "to the in-kernel OOM killer." msgstr "" -#: gnu/packages/linux.scm:3867 +#: gnu/packages/linux.scm:3892 msgid "" "Udev is a daemon which dynamically creates and removes\n" "device nodes from /dev/, handles hotplug events and loads drivers at boot\n" "time." msgstr "" -#: gnu/packages/linux.scm:3897 +#: gnu/packages/linux.scm:3922 msgid "" "Python-evdev provides bindings to the generic input event interface in\n" "Linux. The @code{evdev} interface serves the purpose of passing events\n" @@ -9188,7 +9323,7 @@ msgid "" "devices that can inject events directly into the input subsystem." msgstr "" -#: gnu/packages/linux.scm:3930 +#: gnu/packages/linux.scm:3955 msgid "" "Interception Tools provides a composable infrastructure on top of\n" "@code{libudev} and @code{libevdev}. The following utilities are provided:\n" @@ -9201,33 +9336,33 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/linux.scm:3979 +#: gnu/packages/linux.scm:4004 msgid "" "Dual Function Keys is a plugin for @code{interception-tools} that allows\n" "one to send arbitrary keycodes when a given key is tapped or held." msgstr "" -#: gnu/packages/linux.scm:4056 +#: gnu/packages/linux.scm:4081 msgid "" "LVM2 is the logical volume management tool set for Linux-based systems.\n" "This package includes the user-space libraries and tools, including the device\n" "mapper. Kernel components are part of Linux-libre." msgstr "" -#: gnu/packages/linux.scm:4122 +#: gnu/packages/linux.scm:4147 msgid "" "A suite of tools for manipulating the metadata of the\n" "dm-thin, dm-cache and dm-era device-mapper targets." msgstr "" -#: gnu/packages/linux.scm:4144 +#: gnu/packages/linux.scm:4169 msgid "" "This package provides an advanced monitor of critical system\n" "resources, supervises the heartbeat of processes, records deadline\n" "transgressions, and initiates a controlled reset if needed." msgstr "" -#: gnu/packages/linux.scm:4189 +#: gnu/packages/linux.scm:4214 msgid "" "Wireless Tools are used to manipulate the now-deprecated\n" "Linux Wireless Extensions; consider using @code{iw} instead. The Wireless\n" @@ -9236,35 +9371,35 @@ msgid "" "interface." msgstr "" -#: gnu/packages/linux.scm:4280 +#: gnu/packages/linux.scm:4305 msgid "" "The Central Regulatory Domain Agent (CRDA) acts as the udev helper for\n" "communication between the kernel Linux and user space for regulatory\n" "compliance." msgstr "" -#: gnu/packages/linux.scm:4350 +#: gnu/packages/linux.scm:4375 msgid "" "This package contains the wireless regulatory database for the Central\n" "Regulatory Database Agent (CRDA). The database contains information on\n" "country-specific regulations for the wireless spectrum." msgstr "" -#: gnu/packages/linux.scm:4424 +#: gnu/packages/linux.scm:4449 msgid "" "Lm-sensors is a hardware health monitoring package for Linux. It allows\n" "you to access information from temperature, voltage, and fan speed sensors.\n" "It works with most newer systems." msgstr "" -#: gnu/packages/linux.scm:4444 +#: gnu/packages/linux.scm:4469 msgid "" "@command{iucode_tool} is a utility to work with microcode packages for\n" "Intel processors. It can convert between formats, extract specific versions,\n" "create a firmware image suitable for the Linux kernel, and more." msgstr "" -#: gnu/packages/linux.scm:4475 +#: gnu/packages/linux.scm:4501 msgid "" "The i2c-tools package contains a heterogeneous set of I2C tools for\n" "Linux: a bus probing tool, a chip dumper, register-level SMBus access helpers,\n" @@ -9272,14 +9407,14 @@ msgid "" "SMBus access." msgstr "" -#: gnu/packages/linux.scm:4514 +#: gnu/packages/linux.scm:4540 msgid "" "Xsensors reads data from the libsensors library regarding hardware\n" "health such as temperature, voltage and fan speed and displays the information\n" "in a digital read-out." msgstr "" -#: gnu/packages/linux.scm:4568 +#: gnu/packages/linux.scm:4600 msgid "" "perf is a tool suite for profiling using hardware performance counters,\n" "with support in the Linux kernel. perf can instrument CPU performance\n" @@ -9288,7 +9423,7 @@ msgid "" "particular the @code{perf} command." msgstr "" -#: gnu/packages/linux.scm:4593 +#: gnu/packages/linux.scm:4625 msgid "" "pflask is a simple tool for creating Linux namespace\n" "containers. It can be used for running a command or even booting an OS inside\n" @@ -9297,7 +9432,7 @@ msgid "" "thanks to the use of namespaces." msgstr "" -#: gnu/packages/linux.scm:4678 +#: gnu/packages/linux.scm:4710 msgid "" "Singularity is a container platform supporting a number of\n" "container image formats. It can build SquashFS container images or import\n" @@ -9305,7 +9440,7 @@ msgid "" "isolation or root privileges." msgstr "" -#: gnu/packages/linux.scm:4711 +#: gnu/packages/linux.scm:4742 msgid "" "@command{hdparm} is a command-line utility to control ATA controllers and\n" "disk drives. It can increase performance and/or reliability by careful tuning\n" @@ -9319,21 +9454,21 @@ msgid "" "Translation (@dfn{SAT}) are also supported." msgstr "" -#: gnu/packages/linux.scm:4750 +#: gnu/packages/linux.scm:4782 msgid "" "Nvme-cli is a utility to provide standards compliant tooling\n" "for NVM-Express drives. It was made specifically for Linux as it relies on the\n" "IOCTLs defined by the mainline kernel driver." msgstr "" -#: gnu/packages/linux.scm:4776 +#: gnu/packages/linux.scm:4808 msgid "" "rfkill is a simple tool for accessing the rfkill device interface,\n" "which is used to enable and disable wireless networking devices, typically\n" "WLAN, Bluetooth and mobile broadband." msgstr "" -#: gnu/packages/linux.scm:4798 +#: gnu/packages/linux.scm:4830 msgid "" "@code{acpi} attempts to replicate the functionality of the\n" "\"old\" @code{apm} command on ACPI systems, including battery and thermal\n" @@ -9341,7 +9476,7 @@ msgid "" "about ACPI devices." msgstr "" -#: gnu/packages/linux.scm:4819 +#: gnu/packages/linux.scm:4851 msgid "" "acpid is designed to notify user-space programs of Advanced\n" "Configuration and Power Interface (ACPI) events. acpid should be started\n" @@ -9350,34 +9485,34 @@ msgid "" "specified in /etc/acpi/events and execute the rules that match the event." msgstr "" -#: gnu/packages/linux.scm:4843 +#: gnu/packages/linux.scm:4875 msgid "" "These are a set of utilities built upon sysfs, a virtual file system in\n" "Linux kernel versions 2.5+ that exposes a system's device tree. The package\n" "also contains the libsysfs library." msgstr "" -#: gnu/packages/linux.scm:4886 +#: gnu/packages/linux.scm:4918 msgid "" "The cpufrequtils suite contains utilities to retrieve CPU frequency\n" "information, and set the CPU frequency if supported, using the cpufreq\n" "capabilities of the Linux kernel." msgstr "" -#: gnu/packages/linux.scm:4922 +#: gnu/packages/linux.scm:4954 msgid "" "This package provides many of the missing pieces in GNU\n" "libc. Most notably the string functions: strlcpy(3), strlcat(3) and the *BSD\n" "sys/queue.h and sys/tree.h API's." msgstr "" -#: gnu/packages/linux.scm:4945 +#: gnu/packages/linux.scm:4977 msgid "" "This package provides small event loop that wraps the\n" "epoll family of APIs." msgstr "" -#: gnu/packages/linux.scm:4966 +#: gnu/packages/linux.scm:4998 msgid "" "Libraw1394 is the only supported interface to the kernel side raw1394 of\n" "the Linux IEEE-1394 subsystem, which provides direct access to the connected\n" @@ -9386,26 +9521,26 @@ msgid "" "protocol in question." msgstr "" -#: gnu/packages/linux.scm:4992 +#: gnu/packages/linux.scm:5024 msgid "" "Libavc1394 is a programming interface to the AV/C specification from\n" "the 1394 Trade Association. AV/C stands for Audio/Video Control." msgstr "" -#: gnu/packages/linux.scm:5016 +#: gnu/packages/linux.scm:5048 msgid "" "The libiec61883 library provides a higher level API for streaming DV,\n" "MPEG-2 and audio over Linux IEEE 1394." msgstr "" -#: gnu/packages/linux.scm:5067 +#: gnu/packages/linux.scm:5099 msgid "" "mdadm is a tool for managing Linux Software RAID arrays. It can create,\n" "assemble, report on, and monitor arrays. It can also move spares between raid\n" "arrays when needed." msgstr "" -#: gnu/packages/linux.scm:5199 +#: gnu/packages/linux.scm:5231 msgid "" "This package provides the following binaries to drive the\n" "Linux Device Mapper multipathing driver:\n" @@ -9418,66 +9553,66 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:5244 +#: gnu/packages/linux.scm:5288 msgid "" "This library enables userspace to use Linux kernel asynchronous I/O\n" "system calls, important for the performance of databases and other advanced\n" "applications." msgstr "" -#: gnu/packages/linux.scm:5287 +#: gnu/packages/linux.scm:5331 msgid "" "Blktrace is a block layer IO tracing mechanism which provides\n" "detailed information about request queue operations to user space. It extracts\n" "event traces from the kernel (via the relaying through the debug file system)." msgstr "" -#: gnu/packages/linux.scm:5312 +#: gnu/packages/linux.scm:5356 msgid "" "The SBC is a digital audio encoder and decoder used to transfer data to\n" "Bluetooth audio output devices like headphones or loudspeakers." msgstr "" -#: gnu/packages/linux.scm:5379 +#: gnu/packages/linux.scm:5423 msgid "" "BlueZ provides support for the core Bluetooth layers and protocols. It\n" "is flexible, efficient and uses a modular implementation." msgstr "" -#: gnu/packages/linux.scm:5403 +#: gnu/packages/linux.scm:5447 msgid "" "This package provides a FUSE-based file system that provides read and\n" "write access to exFAT devices." msgstr "" -#: gnu/packages/linux.scm:5426 +#: gnu/packages/linux.scm:5470 msgid "" "FuseISO is a FUSE module to mount ISO file system images (.iso, .nrg,\n" ".bin, .mdf and .img files). It supports plain ISO9660 Level 1 and 2, Rock\n" "Ridge, Joliet, and zisofs." msgstr "" -#: gnu/packages/linux.scm:5480 +#: gnu/packages/linux.scm:5524 msgid "" "The GPM (general-purpose mouse) daemon is a mouse server for\n" "applications running on the Linux console. It allows users to select items\n" "and copy/paste text in the console and in xterm." msgstr "" -#: gnu/packages/linux.scm:5551 +#: gnu/packages/linux.scm:5595 msgid "" "Btrfs is a @dfn{copy-on-write} (CoW) file system for Linux\n" "aimed at implementing advanced features while focusing on fault tolerance,\n" "repair and easy administration." msgstr "" -#: gnu/packages/linux.scm:5585 +#: gnu/packages/linux.scm:5629 msgid "" "This package provides the statically-linked @command{btrfs}\n" "from the btrfs-progs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5617 +#: gnu/packages/linux.scm:5661 msgid "" "Cramfs is a Linux file system designed to be simple, small,\n" "and to compress things well. It is used on a number of embedded systems and\n" @@ -9485,7 +9620,7 @@ msgid "" "blocks and random block placement." msgstr "" -#: gnu/packages/linux.scm:5652 +#: gnu/packages/linux.scm:5696 msgid "" "@command{compsize} takes a list of files (given as\n" "arguments) on a Btrfs file system and measures used compression types and\n" @@ -9502,20 +9637,20 @@ msgid "" "obviously it can be shared with files outside our set)." msgstr "" -#: gnu/packages/linux.scm:5700 +#: gnu/packages/linux.scm:5744 msgid "" "F2FS, the Flash-Friendly File System, is a modern file system\n" "designed to be fast and durable on flash devices such as solid-state\n" "disks and SD cards. This package provides the userland utilities." msgstr "" -#: gnu/packages/linux.scm:5790 +#: gnu/packages/linux.scm:5834 msgid "" "This package provides statically-linked fsck.f2fs command taken\n" "from the f2fs-tools package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5821 +#: gnu/packages/linux.scm:5865 msgid "" "Prevents shock damage to the internal spinning hard drive(s) of some\n" "HP and Dell laptops. When sudden movement is detected, all input/output\n" @@ -9525,7 +9660,7 @@ msgid "" "feature, and a laptop with an accelerometer. It has no effect on SSDs." msgstr "" -#: gnu/packages/linux.scm:5879 +#: gnu/packages/linux.scm:5923 msgid "" "Thinkfan is a simple fan control program. It reads temperatures,\n" "checks them against configured limits and switches to appropriate (also\n" @@ -9534,7 +9669,7 @@ msgid "" "from userspace." msgstr "" -#: gnu/packages/linux.scm:5935 +#: gnu/packages/linux.scm:5979 msgid "" "Tpacpi-bat is a command-line interface to control battery charging on\n" "@uref{https://github.com/teleshoes/tpacpi-bat/wiki/Supported-Hardware, Lenovo\n" @@ -9549,7 +9684,7 @@ msgid "" "supported." msgstr "" -#: gnu/packages/linux.scm:5979 +#: gnu/packages/linux.scm:6023 msgid "" "Tmon is a tool to interact with the complex thermal subsystem of the\n" "kernel Linux. It helps visualize thermal relationships and real-time thermal\n" @@ -9566,7 +9701,7 @@ msgid "" "by hand is no trivial task: @command{tmon} aims to make it understandable." msgstr "" -#: gnu/packages/linux.scm:6021 +#: gnu/packages/linux.scm:6065 msgid "" "Turbostat reports x86 processor topology, frequency, idle power state\n" "statistics, temperature, and power consumption. Some information is unavailable\n" @@ -9581,20 +9716,20 @@ msgid "" "invocations of itself." msgstr "" -#: gnu/packages/linux.scm:6080 +#: gnu/packages/linux.scm:6124 msgid "" "NTFS-3G provides read-write access to NTFS file systems, which are\n" "commonly found on Microsoft Windows. It is implemented as a FUSE file system.\n" "The package provides additional NTFS tools." msgstr "" -#: gnu/packages/linux.scm:6127 +#: gnu/packages/linux.scm:6171 msgid "" "This package provides a statically linked @command{ntfsfix} taken\n" "from the ntfs-3g package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:6174 +#: gnu/packages/linux.scm:6218 msgid "" "This package provides userspace components for the InfiniBand\n" "subsystem of the Linux kernel. Specifically it contains userspace\n" @@ -9614,7 +9749,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6228 +#: gnu/packages/linux.scm:6272 msgid "" "This is a collection of tests written over uverbs intended for\n" "use as a performance micro-benchmark. The tests may be used for hardware or\n" @@ -9630,20 +9765,20 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6270 +#: gnu/packages/linux.scm:6314 msgid "" "Monitor a hardware random number generator, and supply entropy\n" "from that to the system kernel's @file{/dev/random} machinery." msgstr "" -#: gnu/packages/linux.scm:6312 +#: gnu/packages/linux.scm:6356 msgid "" "cpupower is a set of user-space tools that use the cpufreq feature of the\n" "Linux kernel to retrieve and control processor features related to power saving,\n" "such as frequency and voltage scaling." msgstr "" -#: gnu/packages/linux.scm:6344 +#: gnu/packages/linux.scm:6388 msgid "" "@command{x86_energy_perf_policy} displays and updates energy-performance\n" "policy settings specific to Intel Architecture Processors. Settings are\n" @@ -9651,7 +9786,7 @@ msgid "" "cpufreq sub-system is enabled or not." msgstr "" -#: gnu/packages/linux.scm:6370 +#: gnu/packages/linux.scm:6414 msgid "" "haveged generates an unpredictable stream of random numbers for use by\n" "Linux's @file{/dev/random} and @file{/dev/urandom} devices. The kernel's\n" @@ -9669,7 +9804,7 @@ msgid "" "not as a replacement for it." msgstr "" -#: gnu/packages/linux.scm:6456 +#: gnu/packages/linux.scm:6500 msgid "" "eCryptfs is a POSIX-compliant stacked cryptographic file system for Linux.\n" "Each file's cryptographic meta-data is stored inside the file itself, along\n" @@ -9679,7 +9814,7 @@ msgid "" "2.6.19. This package contains the userland utilities to manage it." msgstr "" -#: gnu/packages/linux.scm:6488 +#: gnu/packages/linux.scm:6532 msgid "" "Libnfsidmap is a library holding mulitiple methods of\n" "mapping names to ids and visa versa, mainly for NFSv4. It provides an\n" @@ -9687,13 +9822,13 @@ msgid "" "the default @code{nsswitch} and the experimental @code{umich_ldap}." msgstr "" -#: gnu/packages/linux.scm:6524 +#: gnu/packages/linux.scm:6568 msgid "" "Tools for loading and managing Linux kernel modules, such as\n" "@code{modprobe}, @code{insmod}, @code{lsmod}, and more." msgstr "" -#: gnu/packages/linux.scm:6565 +#: gnu/packages/linux.scm:6609 msgid "" "The mcelog daemon logs memory, I/O, CPU, and other hardware errors on x86\n" "systems running the kernel Linux. It can also perform user-defined tasks, such\n" @@ -9701,13 +9836,13 @@ msgid "" "exceeded." msgstr "" -#: gnu/packages/linux.scm:6596 +#: gnu/packages/linux.scm:6640 msgid "" "This package provides utilities for testing, partitioning, etc\n" "of flash storage." msgstr "" -#: gnu/packages/linux.scm:6628 +#: gnu/packages/linux.scm:6672 msgid "" "The libseccomp library provides an easy to use, platform\n" "independent, interface to the Linux Kernel's syscall filtering mechanism. The\n" @@ -9717,7 +9852,7 @@ msgid "" "developers." msgstr "" -#: gnu/packages/linux.scm:6671 +#: gnu/packages/linux.scm:6715 msgid "" "RadeonTop monitors resource consumption on supported AMD\n" "Radeon Graphics Processing Units (GPUs), either in real time as bar graphs on\n" @@ -9727,13 +9862,13 @@ msgid "" "under OpenGL graphics workloads." msgstr "" -#: gnu/packages/linux.scm:6718 +#: gnu/packages/linux.scm:6762 msgid "" "This package provides a library and a command line\n" "interface to the variable facility of UEFI boot firmware." msgstr "" -#: gnu/packages/linux.scm:6755 +#: gnu/packages/linux.scm:6799 msgid "" "@code{efibootmgr} is a user-space application to modify the Intel\n" "Extensible Firmware Interface (EFI) Boot Manager. This application can\n" @@ -9741,7 +9876,7 @@ msgid "" "running boot option, and more." msgstr "" -#: gnu/packages/linux.scm:6791 +#: gnu/packages/linux.scm:6835 msgid "" "The sysstat utilities are a collection of performance\n" "monitoring tools for Linux. These include @code{mpstat}, @code{iostat},\n" @@ -9749,7 +9884,7 @@ msgid "" "@code{sadf} and @code{sa}." msgstr "" -#: gnu/packages/linux.scm:6832 +#: gnu/packages/linux.scm:6876 msgid "" "Light is a program to send commands to screen backlight controllers\n" "under GNU/Linux. Features include:\n" @@ -9763,7 +9898,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/linux.scm:6880 +#: gnu/packages/linux.scm:6924 msgid "" "This program allows you read and control device brightness. Devices\n" "include backlight and LEDs. It can also preserve current brightness before\n" @@ -9773,7 +9908,7 @@ msgid "" "interface in sysfs, which can be accomplished with the included udev rules." msgstr "" -#: gnu/packages/linux.scm:7007 +#: gnu/packages/linux.scm:7048 msgid "" "TLP is a power management tool for Linux. It comes with\n" "a default configuration already optimized for battery life. Nevertheless,\n" @@ -9781,7 +9916,7 @@ msgid "" "every time the power supply source is changed." msgstr "" -#: gnu/packages/linux.scm:7073 +#: gnu/packages/linux.scm:7114 msgid "" "The Python scripts in this project generate a GTK-UI to change\n" "TLP configuration files easily. It aims to protect users from setting\n" @@ -9789,7 +9924,7 @@ msgid "" "configuration values." msgstr "" -#: gnu/packages/linux.scm:7099 +#: gnu/packages/linux.scm:7140 msgid "" "@command{lshw} (Hardware Lister) is a small tool to provide\n" "detailed information on the hardware configuration of the machine.\n" @@ -9799,7 +9934,7 @@ msgid "" "machines (PowerMac G4 is known to work)." msgstr "" -#: gnu/packages/linux.scm:7123 +#: gnu/packages/linux.scm:7164 msgid "" "Libmnl is a minimalistic user-space library oriented to\n" "Netlink developers. There are a lot of common tasks in parsing, validating,\n" @@ -9808,7 +9943,7 @@ msgid "" "re-use code and to avoid re-inventing the wheel." msgstr "" -#: gnu/packages/linux.scm:7148 +#: gnu/packages/linux.scm:7189 msgid "" "Libnftnl is a userspace library providing a low-level netlink\n" "programming interface to the in-kernel nf_tables subsystem. The library\n" @@ -9816,7 +9951,7 @@ msgid "" "used by nftables." msgstr "" -#: gnu/packages/linux.scm:7194 +#: gnu/packages/linux.scm:7235 msgid "" "nftables is the project that aims to replace the existing\n" "{ip,ip6,arp,eb}tables framework. Basically, this project provides a new packet\n" @@ -9826,7 +9961,7 @@ msgid "" "userspace queueing component and the logging subsystem." msgstr "" -#: gnu/packages/linux.scm:7336 +#: gnu/packages/linux.scm:7377 msgid "" "PRoot is a user-space implementation of @code{chroot}, @code{mount --bind},\n" "and @code{binfmt_misc}. This means that users don't need any privileges or\n" @@ -9839,7 +9974,7 @@ msgid "" "available in the kernel Linux." msgstr "" -#: gnu/packages/linux.scm:7399 +#: gnu/packages/linux.scm:7437 msgid "" "cpuid dumps detailed information about the CPU(s) gathered\n" "from the CPUID instruction, and also determines the exact model of CPU(s). It\n" @@ -9847,14 +9982,14 @@ msgid "" "NexGen, Rise, and SiS CPUs." msgstr "" -#: gnu/packages/linux.scm:7426 +#: gnu/packages/linux.scm:7464 msgid "" "jmtpfs uses FUSE (file system in userspace) to provide access\n" "to data over the Media Transfer Protocol (MTP). Unprivileged users can mount\n" "the MTP device as a file system." msgstr "" -#: gnu/packages/linux.scm:7453 +#: gnu/packages/linux.scm:7491 msgid "" "Procenv is a command-line tool that displays as much detail about\n" "itself and its environment as possible. It can be used as a test\n" @@ -9862,7 +9997,7 @@ msgid "" "comparing system environments." msgstr "" -#: gnu/packages/linux.scm:7482 +#: gnu/packages/linux.scm:7520 msgid "" "OpenFabrics Interfaces (OFI) is a framework focused on exporting fabric\n" "communication services to applications. OFI is best described as a collection\n" @@ -9876,7 +10011,7 @@ msgid "" "libraries, which are often integrated directly into libfabric." msgstr "" -#: gnu/packages/linux.scm:7544 +#: gnu/packages/linux.scm:7582 msgid "" "The PSM Messaging API, or PSM API, is Intel's low-level user-level\n" "communications interface for the True Scale family of products. PSM users are\n" @@ -9884,14 +10019,14 @@ msgid "" "interfaces in parallel environments." msgstr "" -#: gnu/packages/linux.scm:7587 +#: gnu/packages/linux.scm:7625 msgid "" "snapscreenshot saves a screenshot of one or more Linux text consoles as a\n" "Targa (@dfn{.tga}) image. It can be used by anyone with read access to the\n" "relevant @file{/dev/vcs*} file(s)." msgstr "" -#: gnu/packages/linux.scm:7641 +#: gnu/packages/linux.scm:7679 msgid "" "fbcat saves the contents of the Linux framebuffer (@file{/dev/fb*}), or\n" "a dump therof. It supports a wide range of drivers and pixel formats.\n" @@ -9903,14 +10038,14 @@ msgid "" "emulates the behaviour of Gunnar Monell's older fbgrab utility." msgstr "" -#: gnu/packages/linux.scm:7672 +#: gnu/packages/linux.scm:7710 msgid "" "Control groups is Linux kernel method for process resource\n" "restriction, permission handling and more. This package provides userspace\n" "interface to this kernel feature." msgstr "" -#: gnu/packages/linux.scm:7707 +#: gnu/packages/linux.scm:7745 msgid "" "mbpfan is a fan control daemon for Apple Macbooks. It uses input from\n" "the @code{coretemp} module and sets the fan speed using the @code{applesmc}\n" @@ -9918,7 +10053,7 @@ msgid "" "privileges." msgstr "" -#: gnu/packages/linux.scm:7751 +#: gnu/packages/linux.scm:7789 msgid "" "This package is low-level user-level Intel's communications interface.\n" "The PSM2 API is a high-performance vendor-specific protocol that provides a\n" @@ -9926,7 +10061,7 @@ msgid "" "high-speed networking devices." msgstr "" -#: gnu/packages/linux.scm:7794 +#: gnu/packages/linux.scm:7832 msgid "" "This package provides a library called libpfm4, which is used to develop\n" "monitoring tools exploiting the performance monitoring events such as those\n" @@ -9941,7 +10076,7 @@ msgid "" "introduced in Linux 2.6.31." msgstr "" -#: gnu/packages/linux.scm:7824 +#: gnu/packages/linux.scm:7862 msgid "" "@code{libnfnetlink} is the low-level library for netfilter related\n" "kernel/userspace communication. It provides a generic messaging\n" @@ -9950,7 +10085,7 @@ msgid "" "management tools in userspace." msgstr "" -#: gnu/packages/linux.scm:7851 +#: gnu/packages/linux.scm:7889 msgid "" "The netlink package provides a simple netlink library for\n" "Go. Netlink is the interface a user-space program in Linux uses to\n" @@ -9958,7 +10093,7 @@ msgid "" "IP addresses and routes, and configure IPsec." msgstr "" -#: gnu/packages/linux.scm:7891 +#: gnu/packages/linux.scm:7929 msgid "" "The inih (INI Not Invented Here) library is a simple .INI file\n" "parser written in C. It's only a couple of pages of code, and it was designed to\n" @@ -9967,19 +10102,19 @@ msgid "" "822-style multi-line syntax and name: value entries." msgstr "" -#: gnu/packages/linux.scm:7942 +#: gnu/packages/linux.scm:7980 msgid "" "This package provides commands to create and check XFS\n" "file systems." msgstr "" -#: gnu/packages/linux.scm:7998 +#: gnu/packages/linux.scm:8036 msgid "" "This package provides a statically linked @command{xfs_repair} taken\n" "from the xfsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:8034 +#: gnu/packages/linux.scm:8072 msgid "" "This package provides a program to generate an ext2\n" "file system as a normal (non-root) user. It does not require you to mount\n" @@ -9987,7 +10122,7 @@ msgid "" "the superuser to make device nodes." msgstr "" -#: gnu/packages/linux.scm:8129 +#: gnu/packages/linux.scm:8167 msgid "" "@command{fakeroot} runs a command in an environment where it appears to\n" "have root privileges for file manipulation. This is useful for allowing users\n" @@ -10000,7 +10135,7 @@ msgid "" "without using the archiver." msgstr "" -#: gnu/packages/linux.scm:8169 +#: gnu/packages/linux.scm:8207 msgid "" "@command{fakechroot} runs a command in an environment were is additional\n" "possibility to use @code{chroot} command without root privileges. This is\n" @@ -10011,13 +10146,13 @@ msgid "" "set as @code{LD_PRELOAD} to override the C library file system functions." msgstr "" -#: gnu/packages/linux.scm:8215 +#: gnu/packages/linux.scm:8253 msgid "" "inputattach dispatches input events from several device\n" "types and interfaces and translates so that the X server can use them." msgstr "" -#: gnu/packages/linux.scm:8251 +#: gnu/packages/linux.scm:8289 msgid "" "PipeWire is a project that aims to greatly improve handling of audio and\n" "video under Linux. It aims to support the usecases currently handled by both\n" @@ -10029,7 +10164,7 @@ msgid "" "of Linux application development." msgstr "" -#: gnu/packages/linux.scm:8318 +#: gnu/packages/linux.scm:8356 msgid "" "WirePlumber is a modular session / policy manager for\n" "PipeWire and a GObject-based high-level library that wraps PipeWire's API,\n" @@ -10037,7 +10172,7 @@ msgid "" "tools for managing PipeWire." msgstr "" -#: gnu/packages/linux.scm:8357 +#: gnu/packages/linux.scm:8395 msgid "" "The Embedded Linux* Library (ELL) provides core, low-level\n" "functionality for system daemons. It typically has no dependencies other than\n" @@ -10046,7 +10181,7 @@ msgid "" "platforms, it is not limited to resource-constrained systems." msgstr "" -#: gnu/packages/linux.scm:8386 +#: gnu/packages/linux.scm:8424 msgid "" "This package provides the @code{kexec} program and ancillary\n" "utilities. Using @code{kexec}, it is possible to boot directly into a new\n" @@ -10054,7 +10189,7 @@ msgid "" "system boot process." msgstr "" -#: gnu/packages/linux.scm:8419 +#: gnu/packages/linux.scm:8457 msgid "" "@code{cachefilesd} is a userspace daemon that manages the\n" "cache data store that is used by network file systems such as @code{AFS} and\n" @@ -10062,14 +10197,14 @@ msgid "" "persistent over reboots." msgstr "" -#: gnu/packages/linux.scm:8463 +#: gnu/packages/linux.scm:8501 msgid "" "Libbpf supports building BPF CO-RE-enabled applications, which, in\n" "contrast to BCC, do not require the Clang/LLVM runtime or linux kernel\n" "headers." msgstr "" -#: gnu/packages/linux.scm:8541 +#: gnu/packages/linux.scm:8579 msgid "" "BCC is a toolkit for creating efficient kernel tracing and manipulation\n" "programs, and includes several useful tools and examples. It makes use of\n" @@ -10078,7 +10213,7 @@ msgid "" "and above." msgstr "" -#: gnu/packages/linux.scm:8577 +#: gnu/packages/linux.scm:8615 msgid "" "bpftrace is a high-level tracing language for Linux enhanced Berkeley\n" "Packet Filter (eBPF) available in recent Linux kernels (4.x). bpftrace uses\n" @@ -10090,14 +10225,14 @@ msgid "" "created by Alastair Robertson." msgstr "" -#: gnu/packages/linux.scm:8609 +#: gnu/packages/linux.scm:8647 msgid "" "This package provides a Linux kernel module that will\n" "provide a serial device @code{/dev/ttyebus} with almost no latency upon\n" "receiving. It is dedicated to the PL011 UART of the Raspberry Pi." msgstr "" -#: gnu/packages/linux.scm:8635 +#: gnu/packages/linux.scm:8673 msgid "" "IP sets are a framework inside the Linux 2.4.x and 2.6.x kernel which\n" "can be administered by the ipset utility. Depending on the type,\n" @@ -10118,7 +10253,7 @@ msgid "" "then IP sets may be the proper tool for you." msgstr "" -#: gnu/packages/linux.scm:8682 +#: gnu/packages/linux.scm:8720 msgid "" "This is the io_uring library, liburing. liburing provides\n" "helpers to setup and teardown io_uring instances, and also a simplified\n" @@ -10126,14 +10261,14 @@ msgid "" "kernel side implementation." msgstr "" -#: gnu/packages/linux.scm:8710 +#: gnu/packages/linux.scm:8748 msgid "" "@acronym{EROFS, The Enhanced Read-Only File System} is a compressed,\n" "read-only file system optimized for resource-scarce devices. This package\n" "provides user-space tools for creating EROFS file systems." msgstr "" -#: gnu/packages/linux.scm:8754 +#: gnu/packages/linux.scm:8792 msgid "" "The @code{rasdaemon} daemon monitors platform @acronym{RAS, Reliability\n" "Availability and Serviceability} reports from Linux kernel trace events.\n" @@ -10141,7 +10276,7 @@ msgid "" "through standard log mechanisms like syslog." msgstr "" -#: gnu/packages/linux.scm:8788 +#: gnu/packages/linux.scm:8826 msgid "" "This package provides a C library with C++/Python bindings and\n" "command-line tools for interacting with GPIO devices that avoids the usage of\n" @@ -10167,33 +10302,33 @@ msgid "" "beginning." msgstr "" -#: gnu/packages/messaging.scm:181 +#: gnu/packages/messaging.scm:183 msgid "" "OMEMO-wget is a tool to handle cryptographic URLs, generated\n" "by @acronym{OMEMO, OMEMO Multi-End Message and Object Encryption}, during\n" "XMPP-based sessions." msgstr "" -#: gnu/packages/messaging.scm:237 +#: gnu/packages/messaging.scm:239 msgid "" "Psi is a capable XMPP client aimed at experienced users.\n" "Its design goals are simplicity and stability." msgstr "" -#: gnu/packages/messaging.scm:295 +#: gnu/packages/messaging.scm:297 msgid "" "GNT is an ncurses toolkit for creating text-mode graphical\n" "user interfaces in a fast and easy way. It is based on GLib and ncurses." msgstr "" -#: gnu/packages/messaging.scm:346 +#: gnu/packages/messaging.scm:348 msgid "" "LibGadu is library for handling Gadu-Gadu instant messenger\n" "protocol. The library is written in C and aims to be operating system and\n" "environment independent." msgstr "" -#: gnu/packages/messaging.scm:381 +#: gnu/packages/messaging.scm:383 msgid "" "SILC (Secure Internet Live Conferencing) is a modern and secure\n" "conferencing protocol. It provides all the common conferencing services like\n" @@ -10201,14 +10336,14 @@ msgid "" "conferencing." msgstr "" -#: gnu/packages/messaging.scm:427 +#: gnu/packages/messaging.scm:429 msgid "" "QXmpp is a XMPP client and server library written in C++ and uses the Qt\n" "framework. It builds XMPP clients complying with the XMPP Compliance Suites\n" "2021 for IM and Advanced Mobile." msgstr "" -#: gnu/packages/messaging.scm:454 +#: gnu/packages/messaging.scm:456 msgid "" "Meanwhile is a library for connecting to a LIM (Lotus Instant\n" "Messaging, formerly Lotus Sametime, formerly VPBuddy) community. It uses a\n" @@ -10216,7 +10351,7 @@ msgid "" "TCP sessions from existing clients." msgstr "" -#: gnu/packages/messaging.scm:500 +#: gnu/packages/messaging.scm:502 msgid "" "Poezio is a free console XMPP client (the protocol on which\n" "the Jabber IM network is built).\n" @@ -10229,7 +10364,7 @@ msgid "" "powerful, standard and open protocol." msgstr "" -#: gnu/packages/messaging.scm:533 +#: gnu/packages/messaging.scm:535 msgid "" "OTR allows you to have private conversations over instant\n" "messaging by providing: (1) Encryption: No one else can read your instant\n" @@ -10242,7 +10377,7 @@ msgid "" "your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:572 +#: gnu/packages/messaging.scm:574 msgid "" "libsignal-protocol-c is an implementation of a ratcheting\n" "forward secrecy protocol that works in synchronous and asynchronous\n" @@ -10250,20 +10385,20 @@ msgid "" "end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:609 +#: gnu/packages/messaging.scm:611 msgid "" "This is a client library for @code{libsignal-protocol-c}.\n" "It implements the necessary interfaces using @code{libgcrypt} and\n" "@code{sqlite}." msgstr "" -#: gnu/packages/messaging.scm:641 +#: gnu/packages/messaging.scm:643 msgid "" "This library implements @acronym{OMEMO, OMEMO Multi-End\n" "Message and Object Encryption} of XMPP (XEP-0384) in C." msgstr "" -#: gnu/packages/messaging.scm:681 +#: gnu/packages/messaging.scm:683 msgid "" "BitlBee brings IM (instant messaging) to IRC clients, for\n" "people who have an IRC client running all the time and don't want to run an\n" @@ -10273,20 +10408,20 @@ msgid "" "identi.ca and status.net)." msgstr "" -#: gnu/packages/messaging.scm:748 +#: gnu/packages/messaging.scm:750 msgid "" "Bitlbee-discord is a plugin for Bitlbee which provides\n" "access to servers running the Discord protocol." msgstr "" -#: gnu/packages/messaging.scm:794 +#: gnu/packages/messaging.scm:796 msgid "" "Purple-Mattermost is a plug-in for Purple, the instant messaging library\n" "used by Pidgin and Bitlbee, among others, to access\n" "@uref{https://mattermost.com/, Mattermost} servers." msgstr "" -#: gnu/packages/messaging.scm:852 +#: gnu/packages/messaging.scm:854 msgid "" "HexChat lets you connect to multiple IRC networks at once. The main\n" "window shows the list of currently connected networks and their channels, the\n" @@ -10295,7 +10430,7 @@ msgid "" "dictionaries. HexChat can be extended with multiple addons." msgstr "" -#: gnu/packages/messaging.scm:917 +#: gnu/packages/messaging.scm:919 msgid "" "ngIRCd is a lightweight @dfn{Internet Relay Chat} (IRC) server for small\n" "or private networks. It is easy to configure, can cope with dynamic IP\n" @@ -10303,13 +10438,13 @@ msgid "" "authentication." msgstr "" -#: gnu/packages/messaging.scm:1024 +#: gnu/packages/messaging.scm:1026 msgid "" "Pidgin is a modular instant messaging client that supports\n" "many popular chat protocols." msgstr "" -#: gnu/packages/messaging.scm:1064 +#: gnu/packages/messaging.scm:1066 msgid "" "Pidgin-OTR is a plugin that adds support for OTR to the Pidgin\n" "instant messaging client. OTR (Off-the-Record) Messaging allows you to have\n" @@ -10323,7 +10458,7 @@ msgid "" "control of your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:1118 +#: gnu/packages/messaging.scm:1120 msgid "" "ZNC is an @dfn{IRC network bouncer} or @dfn{BNC}. It can\n" "detach the client from the actual IRC server, and also from selected channels.\n" @@ -10331,41 +10466,41 @@ msgid "" "simultaneously and therefore appear under the same nickname on IRC." msgstr "" -#: gnu/packages/messaging.scm:1147 +#: gnu/packages/messaging.scm:1149 msgid "" "Python-nbxmpp is a Python library that provides a way for\n" "Python applications to use the XMPP network. This library was initially a fork\n" "of xmpppy." msgstr "" -#: gnu/packages/messaging.scm:1274 +#: gnu/packages/messaging.scm:1276 msgid "" "Gajim aims to be an easy to use and fully-featured XMPP chat\n" "client. It is extensible via plugins, supports end-to-end encryption (OMEMO\n" "and OpenPGP) and available in 29 languages." msgstr "" -#: gnu/packages/messaging.scm:1309 +#: gnu/packages/messaging.scm:1311 msgid "" "Gajim-OMEMO is a plugin that adds support for the OMEMO\n" "Encryption to Gajim. OMEMO is an XMPP Extension Protocol (XEP) for secure\n" "multi-client end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:1344 +#: gnu/packages/messaging.scm:1346 msgid "" "Gajim-OpenPGP is a plugin that adds support for the OpenPGP\n" "Encryption to Gajim." msgstr "" -#: gnu/packages/messaging.scm:1418 +#: gnu/packages/messaging.scm:1420 msgid "" "Dino is a chat client for the desktop. It focuses on providing\n" "a minimal yet reliable Jabber/XMPP experience and having encryption enabled by\n" "default." msgstr "" -#: gnu/packages/messaging.scm:1505 +#: gnu/packages/messaging.scm:1507 msgid "" "Prosody is a modern XMPP communication server. It aims to\n" "be easy to set up and configure, and efficient with system resources.\n" @@ -10374,43 +10509,43 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/messaging.scm:1540 +#: gnu/packages/messaging.scm:1542 msgid "" "This module implements XEP-0363: it allows clients to\n" "upload files over HTTP." msgstr "" -#: gnu/packages/messaging.scm:1572 +#: gnu/packages/messaging.scm:1574 msgid "" "This module implements XEP-0198: when supported by both\n" "the client and server, it can allow clients to resume a disconnected session,\n" "and prevent message loss." msgstr "" -#: gnu/packages/messaging.scm:1601 +#: gnu/packages/messaging.scm:1603 msgid "C library implementation of the Tox encrypted messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1633 +#: gnu/packages/messaging.scm:1635 msgid "" "Official fork of the C library implementation of the Tox encrypted\n" "messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1687 +#: gnu/packages/messaging.scm:1689 msgid "" "uTox is a lightweight Tox client. Tox is a distributed and secure\n" "instant messenger with audio and video chat capabilities." msgstr "" -#: gnu/packages/messaging.scm:1750 +#: gnu/packages/messaging.scm:1752 msgid "" "qTox is a Tox client that follows the Tox design\n" "guidelines. It provides an easy to use application that allows you to\n" "connect with friends and family without anyone else listening in." msgstr "" -#: gnu/packages/messaging.scm:1772 +#: gnu/packages/messaging.scm:1774 msgid "" "Ytalk is a replacement for the BSD talk program. Its main\n" "advantage is the ability to communicate with any arbitrary number of users at\n" @@ -10418,7 +10553,7 @@ msgid "" "with several different talk daemons at the same time." msgstr "" -#: gnu/packages/messaging.scm:1796 +#: gnu/packages/messaging.scm:1798 msgid "" "gloox is a full-featured Jabber/XMPP client library,\n" "written in ANSI C++. It makes writing spec-compliant clients easy\n" @@ -10426,7 +10561,7 @@ msgid "" "into existing applications." msgstr "" -#: gnu/packages/messaging.scm:1866 +#: gnu/packages/messaging.scm:1868 msgid "" "@code{Net::PSYC} with support for TCP, UDP, Event.pm, @code{IO::Select} and\n" "Gtk2 event loops. This package includes 12 applications and additional scripts:\n" @@ -10434,14 +10569,14 @@ msgid "" "for @uref{https://torproject.org,tor} router) and many more." msgstr "" -#: gnu/packages/messaging.scm:1907 +#: gnu/packages/messaging.scm:1909 msgid "" "@code{libpsyc} is a PSYC library in C which implements\n" "core aspects of PSYC, useful for all kinds of clients and servers\n" "including psyced." msgstr "" -#: gnu/packages/messaging.scm:1949 +#: gnu/packages/messaging.scm:1951 msgid "" "Loudmouth is a lightweight and easy-to-use C library for programming\n" "with the XMPP (formerly known as Jabber) protocol. It is designed to be\n" @@ -10449,7 +10584,7 @@ msgid "" "protocol allows." msgstr "" -#: gnu/packages/messaging.scm:1991 +#: gnu/packages/messaging.scm:1993 msgid "" "Mcabber is a small XMPP (Jabber) console client, which includes features\n" "such as SASL and TLS support, @dfn{Multi-User Chat} (MUC) support, logging,\n" @@ -10457,7 +10592,7 @@ msgid "" "support, and more." msgstr "" -#: gnu/packages/messaging.scm:2039 +#: gnu/packages/messaging.scm:2041 msgid "" "GNU Freetalk is a command-line Jabber/XMPP chat client. It notably uses\n" "the Readline library to handle input, so it features convenient navigation of\n" @@ -10465,27 +10600,27 @@ msgid "" "is also scriptable and extensible via Guile." msgstr "" -#: gnu/packages/messaging.scm:2074 +#: gnu/packages/messaging.scm:2076 msgid "" "Libmesode is a fork of libstrophe for use with Profanity\n" "XMPP Client. In particular, libmesode provides extra TLS functionality such as\n" "manual SSL certificate verification." msgstr "" -#: gnu/packages/messaging.scm:2109 +#: gnu/packages/messaging.scm:2111 msgid "" "Libstrophe is a minimal XMPP library written in C. It has\n" "almost no external dependencies, only an XML parsing library (expat or libxml\n" "are both supported)." msgstr "" -#: gnu/packages/messaging.scm:2167 +#: gnu/packages/messaging.scm:2169 msgid "" "Profanity is a console based XMPP client written in C\n" "using ncurses and libmesode, inspired by Irssi." msgstr "" -#: gnu/packages/messaging.scm:2197 +#: gnu/packages/messaging.scm:2199 msgid "" "Libircclient is a library which implements the client IRC\n" "protocol. It is designed to be small, fast, portable and compatible with the\n" @@ -10493,14 +10628,14 @@ msgid "" "building the IRC clients and bots." msgstr "" -#: gnu/packages/messaging.scm:2255 +#: gnu/packages/messaging.scm:2257 msgid "" "Toxic is a console-based instant messaging client, using\n" "c-toxcore and ncurses. It provides audio calls, sound and desktop\n" "notifications, and Python scripting support." msgstr "" -#: gnu/packages/messaging.scm:2281 +#: gnu/packages/messaging.scm:2283 msgid "" "libqmatrixclient is a Qt5 library to write clients for the\n" "Matrix instant messaging protocol. Quaternion is the reference client\n" @@ -10508,13 +10643,13 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2326 +#: gnu/packages/messaging.scm:2330 msgid "" "@code{mtxclient} is a C++ library that implements client API\n" "for the Matrix protocol. It is built on to of @code{Boost.Asio}." msgstr "" -#: gnu/packages/messaging.scm:2418 +#: gnu/packages/messaging.scm:2423 msgid "" "@code{Nheko} want to provide a native desktop app for the\n" "Matrix protocol that feels more like a mainstream chat app and less like an IRC\n" @@ -10524,7 +10659,7 @@ msgid "" "notification, emojis, E2E encryption, and voip calls." msgstr "" -#: gnu/packages/messaging.scm:2455 +#: gnu/packages/messaging.scm:2460 msgid "" "Quaternion is a Qt5 desktop client for the Matrix instant\n" "messaging protocol. It uses libqmatrixclient and is its reference client\n" @@ -10532,7 +10667,7 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2502 +#: gnu/packages/messaging.scm:2507 msgid "" "Hangups is an instant messaging client for Google Hangouts. It includes\n" "both a Python library and a reference client with a text-based user interface.\n" @@ -10542,7 +10677,7 @@ msgid "" "messaging that aren’t available to clients that connect over XMPP." msgstr "" -#: gnu/packages/messaging.scm:2584 +#: gnu/packages/messaging.scm:2589 msgid "" "Telegram-purple is a plugin for Libpurple, the communication library\n" "used by the Pidgin instant messaging client, that adds support for the\n" @@ -10552,7 +10687,7 @@ msgid "" "replacement." msgstr "" -#: gnu/packages/messaging.scm:2629 +#: gnu/packages/messaging.scm:2632 msgid "" "Tdlib is a cross-platform library for creating custom\n" "Telegram clients following the official Telegram API. It can be easily used\n" @@ -10560,11 +10695,11 @@ msgid "" "support for high performance Telegram Bot creation." msgstr "" -#: gnu/packages/messaging.scm:2667 +#: gnu/packages/messaging.scm:2670 msgid "Plugin for libpurple to allow sending SMS using ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2712 +#: gnu/packages/messaging.scm:2715 msgid "" "Purple-lurch plugin adds end-to-end encryption support\n" "through the Double Ratchet (Axolotl) algorithm, to @code{libpurple}\n" @@ -10575,19 +10710,19 @@ msgid "" "asynchronicity." msgstr "" -#: gnu/packages/messaging.scm:2748 +#: gnu/packages/messaging.scm:2751 msgid "" "This package provides a C++ library for parsing, formatting, and\n" "validating international phone numbers." msgstr "" -#: gnu/packages/messaging.scm:2793 +#: gnu/packages/messaging.scm:2796 msgid "" "Chatty is a chat program for XMPP and SMS. It works on mobile\n" "as well as on desktop platforms. It's based on libpurple and ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2814 +#: gnu/packages/messaging.scm:2817 msgid "" "This package provides Eclipse Mosquitto, a message broker\n" "that implements the MQTT protocol versions 5.0, 3.1.1 and 3.1. Mosquitto\n" @@ -10600,27 +10735,27 @@ msgid "" "as phones, embedded computers or microcontrollers." msgstr "" -#: gnu/packages/messaging.scm:2864 +#: gnu/packages/messaging.scm:2867 msgid "" "Movim-Desktop is a desktop application, relying on Qt, for the Movim\n" "social and chat platform." msgstr "" -#: gnu/packages/messaging.scm:2999 +#: gnu/packages/messaging.scm:3002 msgid "" "Psi+ is a spin-off of Psi XMPP client. It is a powerful XMPP client\n" "designed for experienced users." msgstr "" -#: gnu/packages/messaging.scm:3039 +#: gnu/packages/messaging.scm:3042 msgid "This package provides Python bindings to Zulip's API." msgstr "" -#: gnu/packages/messaging.scm:3088 +#: gnu/packages/messaging.scm:3091 msgid "This package contains Zulip's official terminal client." msgstr "" -#: gnu/packages/messaging.scm:3110 +#: gnu/packages/messaging.scm:3113 msgid "" "Relays messages between different channels from various\n" "messaging networks and protocols. So far it supports mattermost, IRC, gitter,\n" @@ -10629,20 +10764,20 @@ msgid "" "API. Mattermost is not required." msgstr "" -#: gnu/packages/messaging.scm:3143 +#: gnu/packages/messaging.scm:3146 msgid "" "@command{pounce} is a multi-client, TLS-only IRC bouncer. It maintains\n" "a persistent connection to an IRC server, acting as a proxy and buffer for\n" "a number of clients." msgstr "" -#: gnu/packages/messaging.scm:3209 +#: gnu/packages/messaging.scm:3212 msgid "" "@code{weechat-matrix} is a Python plugin for Weechat that lets\n" "Weechat communicate over the Matrix protocol." msgstr "" -#: gnu/packages/messaging.scm:3256 +#: gnu/packages/messaging.scm:3259 msgid "" "@code{weechat-wee-slack} is a WeeChat native client for\n" "Slack. It provides supplemental features only available in the web/mobile\n" @@ -10751,14 +10886,14 @@ msgid "" "themselves." msgstr "" -#: gnu/packages/networking.scm:174 +#: gnu/packages/networking.scm:176 msgid "" "UsrSCTP is a portable SCTP userland stack. SCTP is a message\n" "oriented, reliable transport protocol with direct support for multihoming that\n" "runs on top of IP or UDP, and supports both v4 and v6 versions." msgstr "" -#: gnu/packages/networking.scm:199 +#: gnu/packages/networking.scm:201 msgid "" "Axel tries to accelerate the download process by using multiple\n" "connections per file, and can also balance the load between different\n" @@ -10767,38 +10902,38 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/networking.scm:264 +#: gnu/packages/networking.scm:266 msgid "" "LibCamera is a complex camera support library for GNU+Linux,\n" "Android, and ChromeOS." msgstr "" -#: gnu/packages/networking.scm:334 +#: gnu/packages/networking.scm:336 msgid "" "LibNice is a library that implements the Interactive\n" "Connectivity Establishment (ICE) standard (RFC 5245 & RFC 8445). It provides a\n" "GLib-based library, libnice, as well as GStreamer elements to use it." msgstr "" -#: gnu/packages/networking.scm:393 +#: gnu/packages/networking.scm:395 msgid "" "RTMPdump is a toolkit for RTMP streams. All forms of RTMP are\n" "supported, including rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps://." msgstr "" -#: gnu/packages/networking.scm:422 +#: gnu/packages/networking.scm:424 msgid "" "Slurm is a network load monitor. It shows real-time traffic statistics\n" "from any network device in any of three ASCII graph formats." msgstr "" -#: gnu/packages/networking.scm:457 +#: gnu/packages/networking.scm:459 msgid "" "SRT is a transport technology that optimizes streaming\n" "performance across unpredictable networks, such as the Internet." msgstr "" -#: gnu/packages/networking.scm:500 +#: gnu/packages/networking.scm:502 msgid "" "The lksctp-tools project provides a user-space library for @acronym{SCTP,\n" "the Stream Control Transmission Protocol} (@file{libsctp}) and C language header\n" @@ -10807,13 +10942,13 @@ msgid "" "It also includes some SCTP-related helper utilities." msgstr "" -#: gnu/packages/networking.scm:541 +#: gnu/packages/networking.scm:543 msgid "" "@code{pysctp} implements the SCTP socket API. You need a\n" "SCTP-aware kernel (most are)." msgstr "" -#: gnu/packages/networking.scm:565 +#: gnu/packages/networking.scm:567 msgid "" "@command{knockd} is a port-knock daemon. It listens to all traffic on\n" "an ethernet or PPP interface, looking for special \"knock\" sequences of @dfn{port-hits}\n" @@ -10821,7 +10956,7 @@ msgid "" "at the link-layer level." msgstr "" -#: gnu/packages/networking.scm:605 +#: gnu/packages/networking.scm:607 msgid "" "NNG project is a rewrite of the scalability protocols library\n" "known as libnanomsg, and adds significant new capabilities, while retaining\n" @@ -10830,7 +10965,7 @@ msgid "" "publish/subscribe, RPC-style request/reply, or service discovery." msgstr "" -#: gnu/packages/networking.scm:648 +#: gnu/packages/networking.scm:650 msgid "" "Nanomsg is a socket library that provides several common\n" "communication patterns. It aims to make the networking layer fast, scalable,\n" @@ -10838,14 +10973,14 @@ msgid "" "systems with no further dependencies." msgstr "" -#: gnu/packages/networking.scm:758 +#: gnu/packages/networking.scm:760 msgid "" "Blueman is a Bluetooth management utility using the Bluez\n" "D-Bus backend. It is designed to be easy to use for most common Bluetooth\n" "tasks." msgstr "" -#: gnu/packages/networking.scm:783 +#: gnu/packages/networking.scm:785 msgid "" "GNU MAC Changer is a utility for viewing and changing MAC\n" "addresses of networking devices. New addresses may be set explicitly or\n" @@ -10853,14 +10988,14 @@ msgid "" "or, more generally, MAC addresses of the same category of hardware." msgstr "" -#: gnu/packages/networking.scm:831 +#: gnu/packages/networking.scm:833 msgid "" "Miredo is an implementation (client, relay, server) of the Teredo\n" "specification, which provides IPv6 Internet connectivity to IPv6 enabled hosts\n" "residing in IPv4-only networks, even when they are behind a NAT device." msgstr "" -#: gnu/packages/networking.scm:851 +#: gnu/packages/networking.scm:853 msgid "" "NDisc6 is a collection of tools for IPv6 networking diagnostics.\n" "It includes the following programs:\n" @@ -10874,7 +11009,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:904 +#: gnu/packages/networking.scm:906 msgid "" "@command{parprouted} is a daemon for transparent IP (Layer@tie{}3)\n" "proxy ARP bridging. Unlike standard bridging, proxy ARP bridging can bridge\n" @@ -10884,7 +11019,14 @@ msgid "" "useful for making transparent firewalls." msgstr "" -#: gnu/packages/networking.scm:931 +#: gnu/packages/networking.scm:945 +msgid "" +"@command{pproxy} is an asynchronuous proxy server implemented with\n" +"Python 3 @code{asyncio}. Among the supported protocols are HTTP, SOCKS\n" +"and SSH, and it can use both TCP and UDP as transport mechanisms." +msgstr "" + +#: gnu/packages/networking.scm:969 msgid "" "socat is a relay for bidirectional data transfer between two independent\n" "data channels---files, pipes, devices, sockets, etc. It can create\n" @@ -10897,7 +11039,7 @@ msgid "" "or server shell scripts with network connections." msgstr "" -#: gnu/packages/networking.scm:962 +#: gnu/packages/networking.scm:1000 msgid "" "mbuffer is a tool for buffering data streams with a large set of features:\n" "\n" @@ -10913,14 +11055,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1058 +#: gnu/packages/networking.scm:1096 msgid "" "With this package you can monitor and filter incoming requests for\n" "network services. It includes a library which may be used by daemons to\n" "transparently check connection attempts against an access control list." msgstr "" -#: gnu/packages/networking.scm:1081 +#: gnu/packages/networking.scm:1119 msgid "" "The 0MQ lightweight messaging kernel is a library which extends the\n" "standard socket interfaces with features traditionally provided by specialized\n" @@ -10930,46 +11072,46 @@ msgid "" "more." msgstr "" -#: gnu/packages/networking.scm:1110 +#: gnu/packages/networking.scm:1148 msgid "" "czmq provides bindings for the ØMQ core API that hides the differences\n" "between different versions of ØMQ." msgstr "" -#: gnu/packages/networking.scm:1141 +#: gnu/packages/networking.scm:1179 msgid "" "This package provides header-only C++ bindings for ØMQ. The header\n" "files contain direct mappings of the abstractions provided by the ØMQ C API." msgstr "" -#: gnu/packages/networking.scm:1175 +#: gnu/packages/networking.scm:1213 msgid "" "@code{libnatpmp} is a portable and asynchronous implementation of\n" "the Network Address Translation - Port Mapping Protocol (NAT-PMP)\n" "written in the C programming language." msgstr "" -#: gnu/packages/networking.scm:1213 +#: gnu/packages/networking.scm:1251 msgid "" "librdkafka is a C library implementation of the Apache Kafka protocol,\n" "containing both Producer and Consumer support." msgstr "" -#: gnu/packages/networking.scm:1232 +#: gnu/packages/networking.scm:1270 msgid "" "libndp contains a library which provides a wrapper for IPv6 Neighbor\n" "Discovery Protocol. It also provides a tool named ndptool for sending and\n" "receiving NDP messages." msgstr "" -#: gnu/packages/networking.scm:1256 +#: gnu/packages/networking.scm:1294 msgid "" "ethtool can be used to query and change settings such as speed,\n" "auto-negotiation and checksum offload on many network devices, especially\n" "Ethernet devices." msgstr "" -#: gnu/packages/networking.scm:1298 +#: gnu/packages/networking.scm:1336 msgid "" "IFStatus is a simple, easy-to-use program for displaying commonly\n" "needed/wanted real-time traffic statistics of multiple network\n" @@ -10977,7 +11119,7 @@ msgid "" "intended as a substitute for the PPPStatus and EthStatus projects." msgstr "" -#: gnu/packages/networking.scm:1347 +#: gnu/packages/networking.scm:1385 msgid "" "This package contains a variety of tools for dealing with network\n" "configuration, troubleshooting, or servers. Utilities included are:\n" @@ -10998,7 +11140,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1388 +#: gnu/packages/networking.scm:1426 msgid "" "Nload is a console application which monitors network traffic and\n" "bandwidth usage in real time. It visualizes the in- and outgoing traffic using\n" @@ -11006,7 +11148,7 @@ msgid "" "and min/max network usage." msgstr "" -#: gnu/packages/networking.scm:1432 +#: gnu/packages/networking.scm:1470 msgid "" "Iodine tunnels IPv4 data through a DNS server. This\n" "can be useful in different situations where internet access is firewalled, but\n" @@ -11014,7 +11156,7 @@ msgid "" "and up to 1 Mbit/s downstream." msgstr "" -#: gnu/packages/networking.scm:1473 +#: gnu/packages/networking.scm:1511 msgid "" "whois searches for an object in a @dfn{WHOIS} (RFC 3912) database.\n" "It is commonly used to look up the registered users or assignees of an Internet\n" @@ -11026,14 +11168,14 @@ msgid "" "of the same name." msgstr "" -#: gnu/packages/networking.scm:1553 +#: gnu/packages/networking.scm:1591 msgid "" "Wireshark is a network protocol analyzer, or @dfn{packet\n" "sniffer}, that lets you capture and interactively browse the contents of\n" "network frames." msgstr "" -#: gnu/packages/networking.scm:1574 +#: gnu/packages/networking.scm:1613 msgid "" "fping is a ping-like program which uses @acronym{ICMP, Internet Control\n" "Message Protocol} echo requests to determine if a target host is responding.\n" @@ -11045,26 +11187,26 @@ msgid "" "round-robin fashion." msgstr "" -#: gnu/packages/networking.scm:1625 +#: gnu/packages/networking.scm:1664 msgid "" "This package provides a command-line client (@command{gandi}) to buy,\n" "manage, and delete Internet resources from Gandi.net such as domain names,\n" "virtual machines, and certificates." msgstr "" -#: gnu/packages/networking.scm:1651 +#: gnu/packages/networking.scm:1690 msgid "" "The netns package provides a simple interface for\n" "handling network namespaces in Go." msgstr "" -#: gnu/packages/networking.scm:1678 +#: gnu/packages/networking.scm:1717 msgid "" "This library provides methods for using the stream control\n" "transmission protocol (SCTP) in a Go application." msgstr "" -#: gnu/packages/networking.scm:1707 +#: gnu/packages/networking.scm:1746 msgid "" "httping measures how long it takes to connect to a web server, send an\n" "HTTP(S) request, and receive the reply headers. It is somewhat similar to\n" @@ -11073,7 +11215,7 @@ msgid "" "application stack itself." msgstr "" -#: gnu/packages/networking.scm:1746 +#: gnu/packages/networking.scm:1785 msgid "" "@command{httpstat} is a tool to visualize statistics from the\n" "@command{curl} HTTP client. It acts as a wrapper for @command{curl} and\n" @@ -11081,20 +11223,20 @@ msgid "" "TCP connection, TLS handshake and so on) in the terminal." msgstr "" -#: gnu/packages/networking.scm:1788 +#: gnu/packages/networking.scm:1827 msgid "" "Squid is a caching proxy for the Web supporting HTTP, HTTPS,\n" "FTP, and more. It reduces bandwidth and improves response times by caching and\n" "reusing frequently-requested web pages." msgstr "" -#: gnu/packages/networking.scm:1822 +#: gnu/packages/networking.scm:1861 msgid "" "Bandwidth Monitor NG is a small and simple console based\n" "live network and disk I/O bandwidth monitor." msgstr "" -#: gnu/packages/networking.scm:1874 +#: gnu/packages/networking.scm:1913 msgid "" "Aircrack-ng is a complete suite of tools to assess WiFi network\n" "security. It focuses on different areas of WiFi security: monitoring,\n" @@ -11102,14 +11244,14 @@ msgid "" "allows for heavy scripting." msgstr "" -#: gnu/packages/networking.scm:1903 +#: gnu/packages/networking.scm:1942 msgid "" "Pixiewps implements the pixie-dust attack to brute\n" "force the Wi-Fi Protected Setup (WPS) PIN by exploiting the low or\n" "non-existing entropy of some access points." msgstr "" -#: gnu/packages/networking.scm:1949 +#: gnu/packages/networking.scm:1988 msgid "" "Reaver performs a brute force attack against an access\n" "point's Wi-Fi Protected Setup (WPS) PIN. Once the PIN is found, the WPA\n" @@ -11117,7 +11259,7 @@ msgid "" "reconfigured." msgstr "" -#: gnu/packages/networking.scm:1974 +#: gnu/packages/networking.scm:2013 msgid "" "Danga::Socket is an abstract base class for objects backed by a socket\n" "which provides the basic framework for event-driven asynchronous IO, designed\n" @@ -11125,7 +11267,7 @@ msgid "" "loop." msgstr "" -#: gnu/packages/networking.scm:2000 +#: gnu/packages/networking.scm:2039 msgid "" "This module provides several IP address validation subroutines that both\n" "validate and untaint their input. This includes both basic validation\n" @@ -11134,62 +11276,62 @@ msgid "" "private (reserved)." msgstr "" -#: gnu/packages/networking.scm:2028 +#: gnu/packages/networking.scm:2067 msgid "Net::DNS is the Perl Interface to the Domain Name System." msgstr "" -#: gnu/packages/networking.scm:2060 +#: gnu/packages/networking.scm:2099 msgid "" "Socket6 binds the IPv6 related part of the C socket header\n" "definitions and structure manipulators for Perl." msgstr "" -#: gnu/packages/networking.scm:2087 +#: gnu/packages/networking.scm:2126 msgid "" "Net::DNS::Resolver::Programmable is a programmable DNS resolver for\n" "offline emulation of DNS." msgstr "" -#: gnu/packages/networking.scm:2109 +#: gnu/packages/networking.scm:2148 msgid "" "Net::DNS::Resolver::Mock is a subclass of Net::DNS::Resolver, but returns\n" "static data from any provided DNS zone file instead of querying the network.\n" "It is intended primarily for use in testing." msgstr "" -#: gnu/packages/networking.scm:2144 +#: gnu/packages/networking.scm:2183 msgid "NetAddr::IP manages IPv4 and IPv6 addresses and subsets." msgstr "" -#: gnu/packages/networking.scm:2177 +#: gnu/packages/networking.scm:2216 msgid "Net::Patricia does IP address lookups quickly in Perl." msgstr "" -#: gnu/packages/networking.scm:2198 +#: gnu/packages/networking.scm:2237 msgid "Net::CIDR::Lite merges IPv4 or IPv6 CIDR addresses." msgstr "" -#: gnu/packages/networking.scm:2225 +#: gnu/packages/networking.scm:2264 msgid "" "IO::Socket::INET6 is an interface for AF_INET/AF_INET6 domain\n" "sockets in Perl." msgstr "" -#: gnu/packages/networking.scm:2258 +#: gnu/packages/networking.scm:2293 msgid "" "Libproxy handles the details of HTTP/HTTPS proxy\n" "configuration for applications across all scenarios. Applications using\n" "libproxy only have to specify which proxy to use." msgstr "" -#: gnu/packages/networking.scm:2292 +#: gnu/packages/networking.scm:2327 msgid "" "Proxychains-ng is a preloader which hooks calls to sockets\n" "in dynamically linked programs and redirects them through one or more SOCKS or\n" "HTTP proxies." msgstr "" -#: gnu/packages/networking.scm:2314 +#: gnu/packages/networking.scm:2349 msgid "" "ENet's purpose is to provide a relatively thin, simple and robust network\n" "communication layer on top of UDP. The primary feature it provides is optional\n" @@ -11199,7 +11341,7 @@ msgid "" "library remains flexible, portable, and easily embeddable." msgstr "" -#: gnu/packages/networking.scm:2378 +#: gnu/packages/networking.scm:2413 msgid "" "sslh is a network protocol demultiplexer. It acts like a switchboard,\n" "accepting connections from clients on one port and forwarding them to different\n" @@ -11211,7 +11353,7 @@ msgid "" "that block port 22." msgstr "" -#: gnu/packages/networking.scm:2408 +#: gnu/packages/networking.scm:2443 msgid "" "iPerf is a tool to measure achievable bandwidth on IP networks. It\n" "supports tuning of various parameters related to timing, buffers and\n" @@ -11219,7 +11361,7 @@ msgid "" "the bandwidth, loss, and other parameters." msgstr "" -#: gnu/packages/networking.scm:2445 +#: gnu/packages/networking.scm:2480 msgid "" "NetHogs is a small 'net top' tool for Linux. Instead of\n" "breaking the traffic down per protocol or per subnet, like most tools do, it\n" @@ -11231,7 +11373,7 @@ msgid "" "gone wild and are suddenly taking up your bandwidth." msgstr "" -#: gnu/packages/networking.scm:2481 +#: gnu/packages/networking.scm:2516 msgid "" "NZBGet is a binary newsgrabber, which downloads files from Usenet based\n" "on information given in @code{nzb} files. NZBGet can be used in standalone\n" @@ -11241,7 +11383,7 @@ msgid "" "procedure calls (RPCs)." msgstr "" -#: gnu/packages/networking.scm:2562 +#: gnu/packages/networking.scm:2597 msgid "" "Open vSwitch is a multilayer virtual switch. It is designed to enable\n" "massive network automation through programmatic extension, while still\n" @@ -11249,27 +11391,27 @@ msgid "" "IPFIX, RSPAN, CLI, LACP, 802.1ag)." msgstr "" -#: gnu/packages/networking.scm:2585 +#: gnu/packages/networking.scm:2620 msgid "" "The @code{IP} class allows a comfortable parsing and\n" "handling for most notations in use for IPv4 and IPv6 addresses and\n" "networks." msgstr "" -#: gnu/packages/networking.scm:2610 +#: gnu/packages/networking.scm:2645 msgid "" "Command line interface for testing internet bandwidth using\n" "speedtest.net." msgstr "" -#: gnu/packages/networking.scm:2630 +#: gnu/packages/networking.scm:2668 msgid "" "This is a tftp client derived from OpenBSD tftp with some extra options\n" "added and bugs fixed. The source includes readline support but it is not\n" "enabled due to license conflicts between the BSD advertising clause and the GPL." msgstr "" -#: gnu/packages/networking.scm:2682 +#: gnu/packages/networking.scm:2720 msgid "" "Spiped (pronounced \"ess-pipe-dee\") is a utility for creating\n" "symmetrically encrypted and authenticated pipes between socket addresses, so\n" @@ -11279,7 +11421,7 @@ msgid "" "does not use SSH and requires a pre-shared symmetric key." msgstr "" -#: gnu/packages/networking.scm:2708 +#: gnu/packages/networking.scm:2746 msgid "" "Quagga is a routing software suite, providing implementations\n" "of OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4 for Unix platforms.\n" @@ -11291,14 +11433,14 @@ msgid "" "updates to the zebra daemon." msgstr "" -#: gnu/packages/networking.scm:2758 +#: gnu/packages/networking.scm:2796 msgid "" "The THC IPv6 Toolkit provides command-line tools and a library\n" "for researching IPv6 implementations and deployments. It requires Linux 2.6 or\n" "newer and only works on Ethernet network interfaces." msgstr "" -#: gnu/packages/networking.scm:2783 +#: gnu/packages/networking.scm:2821 msgid "" "bmon is a monitoring and debugging tool to capture\n" "networking-related statistics and prepare them visually in a human-friendly\n" @@ -11306,7 +11448,7 @@ msgid "" "interface and a programmable text output for scripting." msgstr "" -#: gnu/packages/networking.scm:2821 +#: gnu/packages/networking.scm:2859 msgid "" "Libnet provides a fairly portable framework for network packet\n" "construction and injection. It features portable packet creation interfaces\n" @@ -11315,7 +11457,7 @@ msgid "" "can be whipped up with little effort." msgstr "" -#: gnu/packages/networking.scm:2847 +#: gnu/packages/networking.scm:2885 msgid "" "@acronym{mtr, My TraceRoute} combines the functionality of the\n" "@command{traceroute} and @command{ping} programs in a single network diagnostic\n" @@ -11325,7 +11467,7 @@ msgid "" "displays the results in real time." msgstr "" -#: gnu/packages/networking.scm:2900 +#: gnu/packages/networking.scm:2938 msgid "" "aMule is an eMule-like client for the eD2k and Kademlia peer-to-peer\n" "file sharing networks. It includes a graphical user interface (GUI), a daemon\n" @@ -11334,7 +11476,7 @@ msgid "" "remotely." msgstr "" -#: gnu/packages/networking.scm:2922 +#: gnu/packages/networking.scm:2960 msgid "" "Zyre provides reliable group messaging over local area\n" "networks using zeromq. It has these key characteristics:\n" @@ -11351,13 +11493,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:2956 +#: gnu/packages/networking.scm:2994 msgid "" "This library allows controlling basic functions in SocketCAN\n" "from user-space. It requires a kernel built with SocketCAN support." msgstr "" -#: gnu/packages/networking.scm:2985 +#: gnu/packages/networking.scm:3023 msgid "" "This package provides CAN utilities in the following areas:\n" "\n" @@ -11373,14 +11515,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3021 +#: gnu/packages/networking.scm:3059 msgid "" "Asio is a cross-platform C++ library for network and\n" "low-level I/O programming that provides developers with a consistent\n" "asynchronous model using a modern C++ approach." msgstr "" -#: gnu/packages/networking.scm:3056 +#: gnu/packages/networking.scm:3094 msgid "" "This package is a fast tunnel proxy that helps you bypass firewalls.\n" "\n" @@ -11394,7 +11536,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3134 +#: gnu/packages/networking.scm:3172 msgid "" "The @dfn{Simple Network Management Protocol} (SNMP) is a\n" "widely used protocol for monitoring the health and welfare of network\n" @@ -11403,20 +11545,20 @@ msgid "" "SNMP v3 using both IPv4 and IPv6." msgstr "" -#: gnu/packages/networking.scm:3181 +#: gnu/packages/networking.scm:3219 msgid "" "uBridge is a simple program to create user-land bridges\n" "between various technologies. Currently, bridging between UDP tunnels,\n" "Ethernet and TAP interfaces is supported. Packet capture is also supported." msgstr "" -#: gnu/packages/networking.scm:3213 +#: gnu/packages/networking.scm:3251 msgid "" "This package contains a small set of tools to capture and convert\n" "packets from wireless devices for use with hashcat or John the Ripper." msgstr "" -#: gnu/packages/networking.scm:3244 +#: gnu/packages/networking.scm:3282 msgid "" "Small tool to capture packets from WLAN devices. After capturing,\n" "upload the \"uncleaned\" cap to @url{https://wpa-sec.stanev.org/?submit} to\n" @@ -11426,7 +11568,7 @@ msgid "" "and check if the WLAN key or the master key was transmitted unencrypted." msgstr "" -#: gnu/packages/networking.scm:3271 +#: gnu/packages/networking.scm:3309 msgid "" "Dante is a SOCKS client and server implementation. It can\n" "be installed on a machine with access to an external TCP/IP network and will\n" @@ -11435,21 +11577,21 @@ msgid "" "never see any machines other than the one Dante is running on." msgstr "" -#: gnu/packages/networking.scm:3318 +#: gnu/packages/networking.scm:3356 msgid "" "Restbed is a comprehensive and consistent programming\n" "model for building applications that require seamless and secure\n" "communication over HTTP." msgstr "" -#: gnu/packages/networking.scm:3358 +#: gnu/packages/networking.scm:3396 msgid "" "RESTinio is a header-only C++14 library that gives you an embedded\n" "HTTP/Websocket server. It is based on standalone version of ASIO\n" "and targeted primarily for asynchronous processing of HTTP-requests." msgstr "" -#: gnu/packages/networking.scm:3446 +#: gnu/packages/networking.scm:3487 msgid "" "OpenDHT provides an easy to use distributed in-memory data\n" "store. Every node in the network can read and write values to the store.\n" @@ -11476,20 +11618,20 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/networking.scm:3490 +#: gnu/packages/networking.scm:3531 msgid "" "FRRouting (FRR) is an IP routing protocol suite which includes\n" "protocol daemons for BGP, IS-IS, LDP, OSPF, PIM, and RIP." msgstr "" -#: gnu/packages/networking.scm:3520 +#: gnu/packages/networking.scm:3561 msgid "" "BIRD is an Internet routing daemon with full support for all\n" "the major routing protocols. It allows redistribution between protocols with a\n" "powerful route filtering syntax and an easy-to-use configuration interface." msgstr "" -#: gnu/packages/networking.scm:3568 +#: gnu/packages/networking.scm:3609 msgid "" "iwd is a wireless daemon for Linux that aims to replace WPA\n" "Supplicant. It optimizes resource utilization by not depending on any external\n" @@ -11497,21 +11639,21 @@ msgid "" "maximum extent possible." msgstr "" -#: gnu/packages/networking.scm:3595 +#: gnu/packages/networking.scm:3636 msgid "" "libyang is a YANG data modelling language parser and toolkit\n" "written (and providing API) in C. Current implementation covers YANG 1.0 (RFC\n" "6020) as well as YANG 1.1 (RFC 7950)." msgstr "" -#: gnu/packages/networking.scm:3629 +#: gnu/packages/networking.scm:3670 msgid "" "This package provides a control tool for the\n" "B.A.T.M.A.N. mesh networking routing protocol provided by the Linux kernel\n" "module @code{batman-adv}, for Layer 2." msgstr "" -#: gnu/packages/networking.scm:3662 +#: gnu/packages/networking.scm:3703 msgid "" "PageKite implements a tunneled reverse proxy which makes it easy to make\n" "a service (such as an HTTP or SSH server) on localhost visible to the wider\n" @@ -11519,7 +11661,7 @@ msgid "" "service is available at @url{https://pagekite.net/}, or you can run your own." msgstr "" -#: gnu/packages/networking.scm:3706 +#: gnu/packages/networking.scm:3747 msgid "" "ipcalc takes an IP address and netmask and calculates the\n" "resulting broadcast, network, Cisco wildcard mask, and host range. By giving\n" @@ -11528,7 +11670,7 @@ msgid "" "easy-to-understand binary values." msgstr "" -#: gnu/packages/networking.scm:3745 +#: gnu/packages/networking.scm:3786 msgid "" "Tunctl is used to set up and maintain persistent TUN/TAP\n" "network interfaces, enabling user applications to simulate network traffic.\n" @@ -11536,13 +11678,13 @@ msgid "" "simulation, and a number of other applications." msgstr "" -#: gnu/packages/networking.scm:3765 +#: gnu/packages/networking.scm:3806 msgid "" "Tool to send a magic packet to wake another host on the\n" "network. This must be enabled on the target host, usually in the BIOS." msgstr "" -#: gnu/packages/networking.scm:3802 +#: gnu/packages/networking.scm:3843 msgid "" "This package provides a modern, but Linux-specific\n" "implementation of the @command{traceroute} command that can be used to follow\n" @@ -11553,7 +11695,7 @@ msgid "" "some traces for unprivileged users." msgstr "" -#: gnu/packages/networking.scm:3836 +#: gnu/packages/networking.scm:3877 msgid "" "VDE is a set of programs to provide virtual software-defined\n" "Ethernet network interface controllers across multiple virtual or\n" @@ -11562,7 +11704,7 @@ msgid "" "cables." msgstr "" -#: gnu/packages/networking.scm:3878 +#: gnu/packages/networking.scm:3919 msgid "" "HAProxy is a free, very fast and reliable solution offering\n" "high availability, load balancing, and proxying for TCP and HTTP-based\n" @@ -11571,7 +11713,7 @@ msgid "" "thousands of connections is clearly realistic with today's hardware." msgstr "" -#: gnu/packages/networking.scm:3924 +#: gnu/packages/networking.scm:3965 msgid "" "The @dfn{Link Layer Discovery Protocol} (LLDP) is an industry standard\n" "protocol designed to supplant proprietary Link-Layer protocols such as EDP or\n" @@ -11580,7 +11722,7 @@ msgid "" "an implementation of LLDP. It also supports some proprietary protocols." msgstr "" -#: gnu/packages/networking.scm:3966 +#: gnu/packages/networking.scm:4007 msgid "" "Hashcash is a proof-of-work algorithm, which has been used\n" "as a denial-of-service countermeasure technique in a number of systems.\n" @@ -11593,14 +11735,14 @@ msgid "" "stamps." msgstr "" -#: gnu/packages/networking.scm:3995 +#: gnu/packages/networking.scm:4036 msgid "" "This package provides the NBD (Network Block Devices)\n" "client and server. It allows you to use remote block devices over a TCP/IP\n" "network." msgstr "" -#: gnu/packages/networking.scm:4062 +#: gnu/packages/networking.scm:4103 msgid "" "Yggdrasil is an early-stage implementation of a fully end-to-end encrypted\n" "IPv6 network. It is lightweight, self-arranging, supported on multiple\n" @@ -11609,7 +11751,7 @@ msgid "" "IPv6 Internet connectivity - it also works over IPv4." msgstr "" -#: gnu/packages/networking.scm:4106 +#: gnu/packages/networking.scm:4147 msgid "" "Netdiscover is a network address discovery tool developed\n" "mainly for wireless networks without a @acronym{DHCP} server. It also works\n" @@ -11617,7 +11759,7 @@ msgid "" "@acronym{ARP} requests and sniff for replies." msgstr "" -#: gnu/packages/networking.scm:4138 +#: gnu/packages/networking.scm:4179 msgid "" "PuTTY is a graphical text terminal client. It supports\n" "@acronym{SSH, Secure SHell}, telnet, and raw socket connections with good\n" @@ -11728,14 +11870,14 @@ msgid "" "by using the poppler rendering engine." msgstr "" -#: gnu/packages/pdf.scm:654 +#: gnu/packages/pdf.scm:653 msgid "" "Zathura is a customizable document viewer. It provides a\n" "minimalistic interface and an interface that mainly focuses on keyboard\n" "interaction." msgstr "" -#: gnu/packages/pdf.scm:697 +#: gnu/packages/pdf.scm:696 msgid "" "PoDoFo is a C++ library and set of command-line tools to work with the\n" "PDF file format. It can parse PDF files and load them into memory, and makes\n" @@ -11744,7 +11886,7 @@ msgid "" "extracting content or merging files." msgstr "" -#: gnu/packages/pdf.scm:764 +#: gnu/packages/pdf.scm:763 msgid "" "MuPDF is a C library that implements a PDF and XPS parsing and\n" "rendering engine. It is used primarily to render pages into bitmaps,\n" @@ -11756,7 +11898,7 @@ msgid "" "@command{pdfclean}, and examining the file structure @command{pdfshow}." msgstr "" -#: gnu/packages/pdf.scm:811 +#: gnu/packages/pdf.scm:810 msgid "" "QPDF is a command-line program that does structural, content-preserving\n" "transformations on PDF files. It could have been called something like\n" @@ -11765,7 +11907,7 @@ msgid "" "program capable of converting PDF into other formats." msgstr "" -#: gnu/packages/pdf.scm:855 +#: gnu/packages/pdf.scm:854 msgid "" "@command{qpdfview} is a document viewer for PDF, PS and DJVU\n" "files. It uses the Qt toolkit and features persistent per-file settings,\n" @@ -11773,13 +11915,13 @@ msgid "" "SyncTeX support, and rudimentary support for annotations and forms." msgstr "" -#: gnu/packages/pdf.scm:881 +#: gnu/packages/pdf.scm:880 msgid "" "Xournal is an application for notetaking, sketching, keeping a journal\n" "using a stylus." msgstr "" -#: gnu/packages/pdf.scm:940 +#: gnu/packages/pdf.scm:939 msgid "" "Xournal++ is a hand note taking software written in\n" "C++ with the target of flexibility, functionality and speed. Stroke\n" @@ -11815,14 +11957,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1019 +#: gnu/packages/pdf.scm:1018 msgid "" "This is the ReportLab PDF Toolkit. It allows rapid creation\n" "of rich PDF documents, and also creation of charts in a variety of bitmap and\n" "vector formats." msgstr "" -#: gnu/packages/pdf.scm:1071 +#: gnu/packages/pdf.scm:1070 msgid "" "Impressive is a tool to display PDF files that provides visual effects\n" "such as smooth alpha-blended slide transitions. It provides additional tools\n" @@ -11830,26 +11972,26 @@ msgid "" "the PDF pages." msgstr "" -#: gnu/packages/pdf.scm:1094 +#: gnu/packages/pdf.scm:1093 msgid "" "img2pdf converts images to PDF via direct JPEG inclusion. That\n" "conversion is lossless: the image embedded in the PDF has the exact same color\n" "information for every pixel as the input." msgstr "" -#: gnu/packages/pdf.scm:1147 +#: gnu/packages/pdf.scm:1146 msgid "" "fbida contains a few applications for viewing and editing images on\n" "the framebuffer." msgstr "" -#: gnu/packages/pdf.scm:1171 +#: gnu/packages/pdf.scm:1170 msgid "" "@command{pdf2svg} is a simple command-line PDF to SVG\n" "converter using the Poppler and Cairo libraries." msgstr "" -#: gnu/packages/pdf.scm:1203 +#: gnu/packages/pdf.scm:1202 msgid "" "PyPDF2 is a pure Python PDF library capable of:\n" "\n" @@ -11869,7 +12011,7 @@ msgid "" "manage or manipulate PDFs." msgstr "" -#: gnu/packages/pdf.scm:1240 +#: gnu/packages/pdf.scm:1239 msgid "" "PyPDF2 is a pure Python PDF toolkit.\n" "\n" @@ -11877,7 +12019,7 @@ msgid "" "python-pypdf2 instead." msgstr "" -#: gnu/packages/pdf.scm:1284 +#: gnu/packages/pdf.scm:1283 msgid "" "PDF Arranger is a small application which allows one to merge or split\n" "PDF documents and rotate, crop and rearrange their pages using an interactive\n" @@ -11886,7 +12028,7 @@ msgid "" "PDF Arranger was formerly known as PDF-Shuffler." msgstr "" -#: gnu/packages/pdf.scm:1308 +#: gnu/packages/pdf.scm:1307 msgid "" "@command{pdfposter} can be used to create a large poster by\n" "building it from multiple pages and/or printing it on large media. It expects\n" @@ -11899,7 +12041,7 @@ msgid "" "PDF. Indeed @command{pdfposter} was inspired by @command{poster}." msgstr "" -#: gnu/packages/pdf.scm:1339 +#: gnu/packages/pdf.scm:1338 msgid "" "Pdfgrep searches in pdf files for strings matching a regular expression.\n" "Support some GNU grep options as file name output, page number output,\n" @@ -11907,7 +12049,7 @@ msgid "" "multiple files." msgstr "" -#: gnu/packages/pdf.scm:1387 +#: gnu/packages/pdf.scm:1386 msgid "" "pdfpc is a presentation viewer application which uses multi-monitor\n" "output to provide meta information to the speaker during the presentation. It\n" @@ -11917,13 +12059,13 @@ msgid "" "presentation. The input files processed by pdfpc are PDF documents." msgstr "" -#: gnu/packages/pdf.scm:1414 +#: gnu/packages/pdf.scm:1413 msgid "" "Paps reads a UTF-8 encoded file and generates a PostScript language\n" "rendering of the file through the Pango Cairo back end." msgstr "" -#: gnu/packages/pdf.scm:1444 +#: gnu/packages/pdf.scm:1443 msgid "" "Stapler is a pure Python alternative to PDFtk, a tool for\n" "manipulating PDF documents from the command line. It supports\n" @@ -11937,7 +12079,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1532 +#: gnu/packages/pdf.scm:1531 msgid "" "WeasyPrint helps web developers to create PDF documents. It\n" "turns simple HTML pages into gorgeous statistical reports, invoices, tickets,\n" @@ -15659,7 +15801,7 @@ msgid "" "and enhance them." msgstr "" -#: gnu/packages/photo.scm:601 +#: gnu/packages/photo.scm:603 msgid "" "Photoflare is a cross-platform image editor with an aim\n" "to balance between powerful features and a very friendly graphical user\n" @@ -15669,7 +15811,7 @@ msgid "" "such as Batch image processing." msgstr "" -#: gnu/packages/photo.scm:669 +#: gnu/packages/photo.scm:670 msgid "" "Entangle is an application which uses GTK and libgphoto2 to provide a\n" "graphical interface for tethered photography with digital cameras. It\n" @@ -15677,14 +15819,14 @@ msgid "" "off' shooting directly from the controlling computer." msgstr "" -#: gnu/packages/photo.scm:740 +#: gnu/packages/photo.scm:741 msgid "" "Hugin is an easy to use panoramic imaging toolchain with a graphical\n" "user interface. It can be used to assemble a mosaic of photographs into\n" "a complete panorama and stitch any series of overlapping pictures." msgstr "" -#: gnu/packages/photo.scm:794 +#: gnu/packages/photo.scm:795 msgid "" "RawTherapee is a raw image processing suite. It comprises a\n" "subset of image editing operations specifically aimed at non-destructive raw\n" @@ -15728,7 +15870,28 @@ msgid "" "`special effects' using the filter mechanism." msgstr "" -#: gnu/packages/scanner.scm:144 +#: gnu/packages/scanner.scm:83 +msgid "" +"This SANE backend lets you scan documents and images from scanners and\n" +"multi-function printers that speak eSCL (marketed as ``AirScan'') or\n" +"@acronym{WSD, Web Services for Devices} (or ``WS-Scan'').\n" +"\n" +"Both are vendor-neutral protocols that allow ``driverless'' scanning over IPv4\n" +"and IPv6 networks without the vendor-specific drivers that make up most of the\n" +"sane-backends collection. This is similar to how most contemporary printers\n" +"speak the universal @acronym{IPP, Internet Printing Protocol}.\n" +"\n" +"Only scanners that support eSCL will also work over USB. This requires a\n" +"suitable IPP-over-USB daemon like ipp-usb to be installed and configured.\n" +"\n" +"Any eSCL or WSD-capable scanner should just work. sane-airscan automatically\n" +"discovers and configures devices, including which protocol to use. It was\n" +"successfully tested with many devices from Brother, Canon, Dell, Kyocera,\n" +"Lexmark, Epson, HP, OKI, Panasonic, Pantum, Ricoh, Samsung, and Xerox, with both\n" +"WSD and eSCL." +msgstr "" + +#: gnu/packages/scanner.scm:200 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -15736,7 +15899,7 @@ msgid "" "package contains the library, but no drivers." msgstr "" -#: gnu/packages/scanner.scm:192 +#: gnu/packages/scanner.scm:248 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -15744,7 +15907,7 @@ msgid "" "package contains the library and drivers." msgstr "" -#: gnu/packages/scanner.scm:243 +#: gnu/packages/scanner.scm:299 msgid "" "Scanbd stands for scanner button daemon. It regularly polls\n" "scanners for pressed buttons, function knob changes, or other events such\n" @@ -15760,7 +15923,7 @@ msgid "" "provided the driver also exposes the buttons." msgstr "" -#: gnu/packages/scanner.scm:331 +#: gnu/packages/scanner.scm:387 msgid "" "XSane is a graphical interface for controlling a scanner and acquiring\n" "images from it. You can photocopy multi-page documents and save, fax, print,\n" @@ -15772,14 +15935,14 @@ msgid "" "back-end library, which supports almost all existing scanners." msgstr "" -#: gnu/packages/scheme.scm:225 +#: gnu/packages/scheme.scm:226 msgid "" "GNU/MIT Scheme is an implementation of the Scheme programming\n" "language. It provides an interpreter, a compiler and a debugger. It also\n" "features an integrated Emacs-like editor and a large runtime library." msgstr "" -#: gnu/packages/scheme.scm:324 +#: gnu/packages/scheme.scm:325 msgid "" "Bigloo is a Scheme implementation devoted to one goal: enabling Scheme\n" "based programming style where C(++) is usually required. Bigloo attempts to\n" @@ -15790,7 +15953,7 @@ msgid "" "and between Scheme and Java programs." msgstr "" -#: gnu/packages/scheme.scm:377 +#: gnu/packages/scheme.scm:378 msgid "" "HOP is a multi-tier programming language for the Web 2.0 and the\n" "so-called diffuse Web. It is designed for programming interactive web\n" @@ -15799,14 +15962,14 @@ msgid "" "mashups, office (web agendas, mail clients, ...), etc." msgstr "" -#: gnu/packages/scheme.scm:400 +#: gnu/packages/scheme.scm:401 msgid "" "Scheme 48 is an implementation of Scheme based on a byte-code\n" "interpreter and is designed to be used as a testbed for experiments in\n" "implementation techniques and as an expository tool." msgstr "" -#: gnu/packages/scheme.scm:430 +#: gnu/packages/scheme.scm:431 msgid "" "Gambit consists of two main programs: gsi, the Gambit Scheme\n" "interpreter, and gsc, the Gambit Scheme compiler. The interpreter contains\n" @@ -15817,7 +15980,7 @@ msgid "" "mixed." msgstr "" -#: gnu/packages/scheme.scm:464 +#: gnu/packages/scheme.scm:465 msgid "" "Chibi-Scheme is a very small library with no external dependencies\n" "intended for use as an extension and scripting language in C programs. In\n" @@ -15826,7 +15989,7 @@ msgid "" "threads." msgstr "" -#: gnu/packages/scheme.scm:512 +#: gnu/packages/scheme.scm:513 msgid "" "Structure and Interpretation of Computer Programs (SICP) is\n" "a textbook aiming to teach the principles of computer programming.\n" @@ -15836,19 +15999,19 @@ msgid "" "metalinguistic abstraction, recursion, interpreters, and modular programming." msgstr "" -#: gnu/packages/scheme.scm:556 +#: gnu/packages/scheme.scm:557 msgid "" "String pattern-matching library for scheme48 based on the SRE\n" "regular-expression notation." msgstr "" -#: gnu/packages/scheme.scm:589 +#: gnu/packages/scheme.scm:590 msgid "" "SLIB is a portable Scheme library providing compatibility and\n" "utility functions for all standard Scheme implementations." msgstr "" -#: gnu/packages/scheme.scm:643 +#: gnu/packages/scheme.scm:644 msgid "" "GNU SCM is an implementation of Scheme. This\n" "implementation includes Hobbit, a Scheme-to-C compiler, which can\n" @@ -15856,7 +16019,7 @@ msgid "" "linked with a SCM executable." msgstr "" -#: gnu/packages/scheme.scm:702 +#: gnu/packages/scheme.scm:703 msgid "" "TinyScheme is a light-weight Scheme interpreter that implements as large a\n" "subset of R5RS as was possible without getting very large and complicated.\n" @@ -15872,7 +16035,7 @@ msgid "" "small program, it is easy to comprehend, get to grips with, and use." msgstr "" -#: gnu/packages/scheme.scm:783 +#: gnu/packages/scheme.scm:784 msgid "" "Stalin is an aggressively optimizing whole-program compiler\n" "for Scheme that does polyvariant interprocedural flow analysis,\n" @@ -15884,7 +16047,7 @@ msgid "" "generation." msgstr "" -#: gnu/packages/scheme.scm:819 +#: gnu/packages/scheme.scm:820 msgid "" "Scheme 9 from Empty Space (S9fES) is a mature, portable, and\n" "comprehensible public-domain interpreter for R4RS Scheme offering:\n" @@ -15899,14 +16062,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/scheme.scm:877 +#: gnu/packages/scheme.scm:878 msgid "" "@code{femtolisp} is a scheme-like lisp implementation with a\n" "simple, elegant Scheme dialect. It is a lisp-1 with lexical scope.\n" "The core is 12 builtin special forms and 33 builtin functions." msgstr "" -#: gnu/packages/scheme.scm:940 +#: gnu/packages/scheme.scm:941 msgid "" "Gauche is a R7RS Scheme scripting engine aiming at being a\n" "handy tool that helps programmers and system administrators to write small to\n" @@ -15916,7 +16079,7 @@ msgid "" "and list gauche extension packages." msgstr "" -#: gnu/packages/scheme.scm:1038 +#: gnu/packages/scheme.scm:1039 msgid "" "Gerbil is an opinionated dialect of Scheme designed for Systems\n" "Programming, with a state of the art macro and module system on top of the Gambit\n" @@ -16053,7 +16216,7 @@ msgid "" "server and an IRC server." msgstr "" -#: gnu/packages/shells.scm:107 +#: gnu/packages/shells.scm:108 msgid "" "dash is a POSIX-compliant @command{/bin/sh} implementation that aims to be\n" "as small as possible, often without sacrificing speed. It is faster than the\n" @@ -16061,7 +16224,7 @@ msgid "" "direct descendant of NetBSD's Almquist Shell (@command{ash})." msgstr "" -#: gnu/packages/shells.scm:255 +#: gnu/packages/shells.scm:256 msgid "" "Fish (friendly interactive shell) is a shell focused on interactive use,\n" "discoverability, and friendliness. Fish has very user-friendly and powerful\n" @@ -16073,20 +16236,20 @@ msgid "" "and syntax highlighting." msgstr "" -#: gnu/packages/shells.scm:308 +#: gnu/packages/shells.scm:309 msgid "" "@code{fish-foreign-env} wraps bash script execution in a way\n" "that environment variables that are exported or modified get imported back\n" "into fish." msgstr "" -#: gnu/packages/shells.scm:344 +#: gnu/packages/shells.scm:345 msgid "" "This is a reimplementation by Byron Rakitzis of the Plan 9 shell. It\n" "has a small feature set similar to a traditional Bourne shell." msgstr "" -#: gnu/packages/shells.scm:377 +#: gnu/packages/shells.scm:378 msgid "" "Es is an extensible shell. The language was derived from the Plan 9\n" "shell, rc, and was influenced by functional programming languages, such as\n" @@ -16095,7 +16258,7 @@ msgid "" "written by Paul Haahr and Byron Rakitzis." msgstr "" -#: gnu/packages/shells.scm:455 +#: gnu/packages/shells.scm:456 msgid "" "Tcsh is an enhanced, but completely compatible version of the Berkeley\n" "UNIX C shell (csh). It is a command language interpreter usable both as an\n" @@ -16104,7 +16267,7 @@ msgid "" "history mechanism, job control and a C-like syntax." msgstr "" -#: gnu/packages/shells.scm:522 +#: gnu/packages/shells.scm:523 msgid "" "The Z shell (zsh) is a Unix shell that can be used\n" "as an interactive login shell and as a powerful command interpreter\n" @@ -16113,7 +16276,7 @@ msgid "" "ksh, and tcsh." msgstr "" -#: gnu/packages/shells.scm:572 +#: gnu/packages/shells.scm:573 msgid "" "Xonsh is a Python-ish, BASHwards-looking shell language and command\n" "prompt. The language is a superset of Python 3.4+ with additional shell\n" @@ -16122,7 +16285,7 @@ msgid "" "use of experts and novices alike." msgstr "" -#: gnu/packages/shells.scm:616 +#: gnu/packages/shells.scm:617 msgid "" "Scsh is a Unix shell embedded in Scheme. Scsh has two main\n" "components: a process notation for running programs and setting up pipelines\n" @@ -16130,7 +16293,7 @@ msgid "" "operating system." msgstr "" -#: gnu/packages/shells.scm:658 +#: gnu/packages/shells.scm:659 msgid "" "Linenoise is a minimal, zero-config, readline replacement.\n" "Its features include:\n" @@ -16144,7 +16307,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/shells.scm:722 +#: gnu/packages/shells.scm:723 msgid "" "S is a new shell that aims to be extremely simple. It does not\n" "implement the POSIX shell standard.\n" @@ -16158,19 +16321,19 @@ msgid "" "A @code{andglob} program is also provided along with s." msgstr "" -#: gnu/packages/shells.scm:753 +#: gnu/packages/shells.scm:754 msgid "" "Oksh is a port of the OpenBSD Korn Shell.\n" "The OpenBSD Korn Shell is a cleaned up and enhanced ksh." msgstr "" -#: gnu/packages/shells.scm:783 +#: gnu/packages/shells.scm:784 msgid "" "loksh is a Linux port of OpenBSD's @command{ksh}. It is a small,\n" "interactive POSIX shell targeted at resource-constrained systems." msgstr "" -#: gnu/packages/shells.scm:821 +#: gnu/packages/shells.scm:822 msgid "" "mksh is an actively developed free implementation of the\n" "Korn Shell programming language and a successor to the Public Domain Korn\n" @@ -16202,7 +16365,7 @@ msgid "" "files and text." msgstr "" -#: gnu/packages/shells.scm:1006 +#: gnu/packages/shells.scm:1005 msgid "" "Nu draws inspiration from projects like PowerShell, functional\n" "programming languages, and modern CLI tools. Rather than thinking of files\n" @@ -16213,7 +16376,7 @@ msgid "" "of commands called a ``pipeline''." msgstr "" -#: gnu/packages/shells.scm:1037 +#: gnu/packages/shells.scm:1036 msgid "" "This package is a library for ANSI terminal colors and styles (bold,\n" "underline)." @@ -16469,19 +16632,19 @@ msgid "" "your calls and messages." msgstr "" -#: gnu/packages/telephony.scm:874 +#: gnu/packages/telephony.scm:869 msgid "" "PJProject provides an implementation of the Session\n" "Initiation Protocol (SIP) and a multimedia framework." msgstr "" -#: gnu/packages/telephony.scm:916 +#: gnu/packages/telephony.scm:911 msgid "" "A collection of libraries and header files for implementing\n" "telephony functionality into custom Telegram clients." msgstr "" -#: gnu/packages/tex.scm:532 +#: gnu/packages/tex.scm:543 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -16491,20 +16654,20 @@ msgid "" "This package contains the binaries." msgstr "" -#: gnu/packages/tex.scm:571 +#: gnu/packages/tex.scm:582 msgid "" "kpathsea is a library, whose purpose is to return a filename\n" "from a list of user-specified directories similar to how shells look up\n" "executables. It is maintained as a part of TeX Live." msgstr "" -#: gnu/packages/tex.scm:591 +#: gnu/packages/tex.scm:602 msgid "" "This package provides the docstrip utility to strip\n" "documentation from TeX files. It is part of the LaTeX base." msgstr "" -#: gnu/packages/tex.scm:606 +#: gnu/packages/tex.scm:617 msgid "" "This bundle provides generic access to Unicode Consortium\n" "data for TeX use. It contains a set of text files provided by the Unicode\n" @@ -16517,7 +16680,7 @@ msgid "" "out to date by @code{unicode-letters.tex}." msgstr "" -#: gnu/packages/tex.scm:638 +#: gnu/packages/tex.scm:649 msgid "" "This package includes Knuth's original @file{hyphen.tex},\n" "@file{zerohyph.tex} to disable hyphenation, @file{language.us} which starts\n" @@ -16525,13 +16688,13 @@ msgid "" "default versions of those), etc." msgstr "" -#: gnu/packages/tex.scm:659 +#: gnu/packages/tex.scm:670 msgid "" "This package provides files needed for converting DVI files\n" "to PostScript." msgstr "" -#: gnu/packages/tex.scm:673 +#: gnu/packages/tex.scm:684 msgid "" "This bundle provides a collection of model \".ini\" files\n" "for creating TeX formats. These files are commonly used to introduced\n" @@ -16540,13 +16703,13 @@ msgid "" "to adapt the plain e-TeX source file to work with XeTeX and LuaTeX." msgstr "" -#: gnu/packages/tex.scm:736 +#: gnu/packages/tex.scm:747 msgid "" "This package provides the Metafont base files needed to\n" "build fonts using the Metafont system." msgstr "" -#: gnu/packages/tex.scm:821 +#: gnu/packages/tex.scm:832 msgid "" "This package provides TeX macros for converting Adobe Font\n" "Metric files to TeX metric and virtual font format. Fontinst helps mainly\n" @@ -16556,7 +16719,7 @@ msgid "" "typesetting in these fonts." msgstr "" -#: gnu/packages/tex.scm:842 +#: gnu/packages/tex.scm:853 msgid "" "This is Fontname, a naming scheme for (the base part of)\n" "external TeX font filenames. This makes at most eight-character names\n" @@ -16564,7 +16727,7 @@ msgid "" "documents." msgstr "" -#: gnu/packages/tex.scm:915 +#: gnu/packages/tex.scm:926 msgid "" "This package provides the Computer Modern fonts by Donald\n" "Knuth. The Computer Modern font family is a large collection of text,\n" @@ -16572,7 +16735,7 @@ msgid "" "8A." msgstr "" -#: gnu/packages/tex.scm:946 +#: gnu/packages/tex.scm:957 msgid "" "The CM-Super family provides Adobe Type 1 fonts that replace\n" "the T1/TS1-encoded Computer Modern (EC/TC), T1/TS1-encoded Concrete,\n" @@ -16582,13 +16745,13 @@ msgid "" "originals." msgstr "" -#: gnu/packages/tex.scm:979 +#: gnu/packages/tex.scm:990 msgid "" "This package provides a drop-in replacements for the Courier\n" "font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:1002 +#: gnu/packages/tex.scm:1013 msgid "" "The TeX-GYRE bundle consist of multiple font families:\n" "@itemize @bullet\n" @@ -16608,21 +16771,21 @@ msgid "" "support (for use with a variety of encodings) is provided." msgstr "" -#: gnu/packages/tex.scm:1041 +#: gnu/packages/tex.scm:1052 msgid "" "The Latin Modern fonts are derived from the famous Computer\n" "Modern fonts designed by Donald E. Knuth and described in Volume E of his\n" "Computers & Typesetting series." msgstr "" -#: gnu/packages/tex.scm:1106 +#: gnu/packages/tex.scm:1117 msgid "" "This is a collection of core TeX and METAFONT macro files\n" "from Donald Knuth, including the plain format, plain base, and the MF logo\n" "fonts." msgstr "" -#: gnu/packages/tex.scm:1181 +#: gnu/packages/tex.scm:1192 msgid "" "This is a collection of fonts for use with standard LaTeX\n" "packages and classes. It includes invisible fonts (for use with the slides\n" @@ -16630,14 +16793,14 @@ msgid "" "symbol fonts." msgstr "" -#: gnu/packages/tex.scm:1253 +#: gnu/packages/tex.scm:1264 msgid "" "This package provides LaTeX and font definition files to access the\n" "Knuthian mflogo fonts described in The Metafontbook and to typeset Metafont\n" "logos in LaTeX documents." msgstr "" -#: gnu/packages/tex.scm:1274 +#: gnu/packages/tex.scm:1285 msgid "" "These fonts were created in METAFONT by Knuth, for his own publications.\n" "At some stage, the letters P and S were added, so that the METAPOST logo could\n" @@ -16646,7 +16809,7 @@ msgid "" "Taco Hoekwater." msgstr "" -#: gnu/packages/tex.scm:1402 +#: gnu/packages/tex.scm:1415 gnu/packages/tex.scm:1579 msgid "" "This package provides an extended set of fonts for use in mathematics,\n" "including: extra mathematical symbols; blackboard bold letters (uppercase\n" @@ -16660,7 +16823,7 @@ msgid "" "details can be found in the documentation." msgstr "" -#: gnu/packages/tex.scm:1432 +#: gnu/packages/tex.scm:1609 msgid "" "Mkpattern is a general purpose program for the generation of\n" "hyphenation patterns, with definition of letter sets and template-like\n" @@ -16668,7 +16831,7 @@ msgid "" "output encodings, and features generation of clean UTF-8 patterns." msgstr "" -#: gnu/packages/tex.scm:1489 +#: gnu/packages/tex.scm:1666 msgid "" "This package provides an extended version of TeX (which is capable of\n" "running as if it were TeX unmodified). E-TeX has been specified by the LaTeX\n" @@ -16677,122 +16840,131 @@ msgid "" "incorporates the e-TeX extensions." msgstr "" -#: gnu/packages/tex.scm:1507 +#: gnu/packages/tex.scm:1684 msgid "" "This package contains files used to build the Plain TeX format, as\n" "described in the TeXbook, together with various supporting files (some also\n" "discussed in the book)." msgstr "" -#: gnu/packages/tex.scm:1533 +#: gnu/packages/tex.scm:1702 +msgid "" +"The package facilitates wrapping text to a specific character width, breaking\n" +"lines by words rather than, as done by TeX, by characters. The primary use for\n" +"these facilities is to aid the generation of messages sent to the log file or\n" +"console output to display messages to the user. Package authors may also find\n" +"this useful when writing out arbitary text to an external file." +msgstr "" + +#: gnu/packages/tex.scm:1730 msgid "" "This package provides a drop-in replacements for the Helvetica\n" "font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:1546 +#: gnu/packages/tex.scm:1743 msgid "" "The package provides hyphenation patterns for the Afrikaans\n" "language." msgstr "" -#: gnu/packages/tex.scm:1560 +#: gnu/packages/tex.scm:1757 msgid "" "The package provides hyphenation patterns for ancient\n" "Greek." msgstr "" -#: gnu/packages/tex.scm:1573 +#: gnu/packages/tex.scm:1770 msgid "" "The package provides hyphenation patterns for the Armenian\n" "language." msgstr "" -#: gnu/packages/tex.scm:1587 +#: gnu/packages/tex.scm:1784 msgid "" "The package provides hyphenation patterns for the Basque\n" "language." msgstr "" -#: gnu/packages/tex.scm:1601 +#: gnu/packages/tex.scm:1798 msgid "" "The package provides hyphenation patterns for the Belarusian\n" "language." msgstr "" -#: gnu/packages/tex.scm:1613 +#: gnu/packages/tex.scm:1810 msgid "" "The package provides hyphenation patterns for the Bulgarian\n" "language in T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1627 +#: gnu/packages/tex.scm:1824 msgid "" "The package provides hyphenation patterns for Catalan in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1640 +#: gnu/packages/tex.scm:1837 msgid "" "The package provides hyphenation patterns for unaccented\n" "Chinese pinyin T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1652 +#: gnu/packages/tex.scm:1849 msgid "" "The package provides hyphenation patterns for Church\n" "Slavonic in UTF-8 encoding." msgstr "" -#: gnu/packages/tex.scm:1665 +#: gnu/packages/tex.scm:1862 msgid "" "The package provides hyphenation patterns for Coptic in\n" "UTF-8 encoding as well as in ASCII-based encoding for 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:1678 +#: gnu/packages/tex.scm:1875 msgid "" "The package provides hyphenation patterns for Croatian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1690 +#: gnu/packages/tex.scm:1887 msgid "" "The package provides hyphenation patterns for Czech in T1/EC\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1702 +#: gnu/packages/tex.scm:1899 msgid "" "The package provides hyphenation patterns for Danish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1715 +#: gnu/packages/tex.scm:1912 msgid "" "The package provides hyphenation patterns for Dutch in T1/EC\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1728 +#: gnu/packages/tex.scm:1925 msgid "" "The package provides additional hyphenation patterns for\n" "American and British English in ASCII encoding." msgstr "" -#: gnu/packages/tex.scm:1742 +#: gnu/packages/tex.scm:1939 msgid "" "The package provides hyphenation patterns for Esperanto ISO\n" "Latin 3 and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1754 +#: gnu/packages/tex.scm:1951 msgid "" "The package provides hyphenation patterns for Estonian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1768 +#: gnu/packages/tex.scm:1965 msgid "" "The package provides hyphenation patterns for languages\n" "written using the Ethiopic script for Unicode engines. They are not supposed\n" @@ -16800,94 +16972,94 @@ msgid "" "be replaced by files tailored to individual languages." msgstr "" -#: gnu/packages/tex.scm:1782 +#: gnu/packages/tex.scm:1979 msgid "" "The package provides hyphenation patterns for Finnish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1794 +#: gnu/packages/tex.scm:1991 msgid "" "The package provides hyphenation patterns for Finnish for\n" "school in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1806 +#: gnu/packages/tex.scm:2003 msgid "" "The package provides hyphenation patterns for French in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1818 +#: gnu/packages/tex.scm:2015 msgid "" "The package provides hyphenation patterns for Friulan in\n" "ASCII encodings." msgstr "" -#: gnu/packages/tex.scm:1831 +#: gnu/packages/tex.scm:2028 msgid "" "The package provides hyphenation patterns for Galician in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1843 +#: gnu/packages/tex.scm:2040 msgid "" "The package provides hyphenation patterns for Georgian in\n" "T8M, T8K, and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1861 +#: gnu/packages/tex.scm:2058 msgid "" "This package provides hyphenation patterns for German in\n" "T1/EC and UTF-8 encodings, for traditional and reformed spelling, including\n" "Swiss German." msgstr "" -#: gnu/packages/tex.scm:1880 +#: gnu/packages/tex.scm:2077 msgid "" "This package provides hyphenation patterns for Modern Greek\n" "in monotonic and polytonic spelling in LGR and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1894 +#: gnu/packages/tex.scm:2091 msgid "" "This package provides hyphenation patterns for Hungarian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1907 +#: gnu/packages/tex.scm:2104 msgid "" "This package provides hyphenation patterns for Icelandic in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1930 +#: gnu/packages/tex.scm:2127 msgid "" "This package provides hyphenation patterns for Assamese,\n" "Bengali, Gujarati, Hindi, Kannada, Malayalam, Marathi, Oriya, Panjabi, Tamil\n" "and Telugu for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:1943 +#: gnu/packages/tex.scm:2140 msgid "" "This package provides hyphenation patterns for\n" "Indonesian (Bahasa Indonesia) in ASCII encoding. They are probably also\n" "usable for Malay (Bahasa Melayu)." msgstr "" -#: gnu/packages/tex.scm:1956 +#: gnu/packages/tex.scm:2153 msgid "" "This package provides hyphenation patterns for Interlingua\n" "in ASCII encoding." msgstr "" -#: gnu/packages/tex.scm:1968 +#: gnu/packages/tex.scm:2165 msgid "" "This package provides hyphenation patterns for\n" "Irish (Gaeilge) in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1981 +#: gnu/packages/tex.scm:2178 msgid "" "This package provides hyphenation patterns for Italian in\n" "ASCII encoding. Compliant with the Recommendation UNI 6461 on hyphenation\n" @@ -16895,14 +17067,14 @@ msgid "" "UNI)." msgstr "" -#: gnu/packages/tex.scm:1995 +#: gnu/packages/tex.scm:2192 msgid "" "This package provides hyphenation patterns for\n" "Kurmanji (Northern Kurdish) as spoken in Turkey and by the Kurdish diaspora in\n" "Europe, in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2011 +#: gnu/packages/tex.scm:2208 msgid "" "This package provides hyphenation patterns for Latin in\n" "T1/EC and UTF-8 encodings, mainly in modern spelling (u when u is needed and v\n" @@ -16916,41 +17088,41 @@ msgid "" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2032 +#: gnu/packages/tex.scm:2229 msgid "" "This package provides hyphenation patterns for Latvian in\n" "L7X and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2045 +#: gnu/packages/tex.scm:2242 msgid "" "This package provides hyphenation patterns for Lithuanian in\n" "L7X and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2060 +#: gnu/packages/tex.scm:2257 #, fuzzy #| msgid "" #| "This package provides a dictionary for the Hunspell spell-checking\n" #| "library." -msgid "This package provides hypenation patterns for Macedonian." +msgid "This package provides hyphenation patterns for Macedonian." msgstr "" "Questo pacchetto fornisce un dizionario per il controllo ortografico per la libreria \n" "Hunspell." -#: gnu/packages/tex.scm:2073 +#: gnu/packages/tex.scm:2270 msgid "" "This package provides hyphenation patterns for Mongolian in\n" "T2A, LMC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2088 +#: gnu/packages/tex.scm:2285 msgid "" "This package provides hyphenation patterns for Norwegian\n" "Bokmal and Nynorsk in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2102 +#: gnu/packages/tex.scm:2299 msgid "" "This package provides hyphenation patterns for Occitan in\n" "T1/EC and UTF-8 encodings. They are supposed to be valid for all the Occitan\n" @@ -16959,94 +17131,94 @@ msgid "" "Alps encompassing the southern half of the French pentagon." msgstr "" -#: gnu/packages/tex.scm:2117 +#: gnu/packages/tex.scm:2314 msgid "" "This package provides hyphenation patterns for Panjabi in\n" "T1/EC encoding." msgstr "" -#: gnu/packages/tex.scm:2130 +#: gnu/packages/tex.scm:2327 msgid "" "This package provides hyphenation patterns for Piedmontese\n" "in ASCII encoding. Compliant with 'Gramatica dla lengua piemonteisa' by\n" "Camillo Brero." msgstr "" -#: gnu/packages/tex.scm:2143 +#: gnu/packages/tex.scm:2340 msgid "" "This package provides hyphenation patterns for Polish in QX\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2156 +#: gnu/packages/tex.scm:2353 msgid "" "This package provides hyphenation patterns for Portuguese in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2168 +#: gnu/packages/tex.scm:2365 msgid "" "This package provides hyphenation patterns for Romanian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2181 +#: gnu/packages/tex.scm:2378 msgid "" "This package provides hyphenation patterns for Romansh in\n" "ASCII encodings. They are supposed to comply with the rules indicated by the\n" "Lia Rumantscha (Romansh language society)." msgstr "" -#: gnu/packages/tex.scm:2194 +#: gnu/packages/tex.scm:2391 msgid "" "This package provides hyphenation patterns for Russian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2207 +#: gnu/packages/tex.scm:2404 msgid "" "This package provides hyphenation patterns for Sanskrit and\n" "Prakrit in longdesc transliteration, and in Devanagari, Bengali, Kannada,\n" "Malayalam longdesc and Telugu scripts for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:2224 +#: gnu/packages/tex.scm:2421 msgid "" "This package provides hyphenation patterns for Serbian in\n" "T1/EC, T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2237 +#: gnu/packages/tex.scm:2434 msgid "" "This package provides hyphenation patterns for Slovak in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2249 +#: gnu/packages/tex.scm:2446 msgid "" "This package provides hyphenation patterns for Slovenian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2265 +#: gnu/packages/tex.scm:2462 msgid "" "The package provides hyphenation patterns for Spanish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2277 +#: gnu/packages/tex.scm:2474 msgid "" "This package provides hyphenation patterns for Swedish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2289 +#: gnu/packages/tex.scm:2486 msgid "" "This package provides hyphenation patterns for Thai in LTH\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2302 +#: gnu/packages/tex.scm:2499 msgid "" "The package provides hyphenation patterns for Turkish in\n" "T1/EC and UTF-8 encodings. The patterns for Turkish were first produced for\n" @@ -17056,31 +17228,31 @@ msgid "" "compatibility with 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:2319 +#: gnu/packages/tex.scm:2516 msgid "" "The package provides hyphenation patterns for Turkmen in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2331 +#: gnu/packages/tex.scm:2528 msgid "" "This package provides hyphenation patterns for Ukrainian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2344 +#: gnu/packages/tex.scm:2541 msgid "" "This package provides hyphenation patterns for Upper Sorbian\n" "in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2356 +#: gnu/packages/tex.scm:2553 msgid "" "This package provides hyphenation patterns for Welsh in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2477 +#: gnu/packages/tex.scm:2674 msgid "" "Modern native UTF-8 engines such as XeTeX and LuaTeX need\n" "hyphenation patterns in UTF-8 format, whereas older systems require\n" @@ -17093,7 +17265,7 @@ msgid "" "converters, will completely supplant the older patterns." msgstr "" -#: gnu/packages/tex.scm:2521 +#: gnu/packages/tex.scm:2718 msgid "" "The package provides experimental hyphenation patterns for\n" "the German language, covering both traditional and reformed orthography. The\n" @@ -17101,21 +17273,29 @@ msgid "" "bundle." msgstr "" -#: gnu/packages/tex.scm:2542 +#: gnu/packages/tex.scm:2739 msgid "" "The package provides a range of hyphenation patterns for\n" "Ukrainian, depending on the encoding of the output font including the standard\n" "T2A." msgstr "" -#: gnu/packages/tex.scm:2577 +#: gnu/packages/tex.scm:2774 msgid "" "The package provides a collection of Russian hyphenation\n" "patterns supporting a number of Cyrillic font encodings, including T2,\n" "UCY (Omega Unicode Cyrillic), LCY, LWN (OT2), and koi8-r." msgstr "" -#: gnu/packages/tex.scm:2620 +#: gnu/packages/tex.scm:2792 +msgid "" +"This package deals with input encodings. It provides a wider range of input\n" +"encodings using standard mappings, than does inputenc; it also covers nearly all\n" +"slots. In this way, it serves as more uptodate replacement for package\n" +"inputenc." +msgstr "" + +#: gnu/packages/tex.scm:2853 msgid "" "Kpathsea is a library and utility programs which provide\n" "path searching facilities for TeX file types, including the self-locating\n" @@ -17123,13 +17303,27 @@ msgid "" "mechanism. This package provides supporting files." msgstr "" -#: gnu/packages/tex.scm:2636 +#: gnu/packages/tex.scm:2876 +msgid "" +"The family contains text fonts in roman, sans-serif and monospaced\n" +"shapes, with true small caps and old-style numbers; the package offers full\n" +"support of the textcomp package. The mathematics fonts include all the AMS\n" +"fonts, in both normal and bold weights. Each of the font types is available\n" +"in two main versions: default and light. Each version is available in four\n" +"variants: default; oldstyle numbers; oldstyle numbers with old ligatures such\n" +"as ct and st, and long-tailed capital Q; and veryoldstyle with long s. Other\n" +"variants include small caps as default or large small caps, and for\n" +"mathematics both upright and slanted shapes for Greek letters, as well as\n" +"default and narrow versions of multiple integrals." +msgstr "" + +#: gnu/packages/tex.scm:2898 msgid "" "The package provides configuration files for LaTeX-related\n" "formats." msgstr "" -#: gnu/packages/tex.scm:2867 +#: gnu/packages/tex.scm:3127 msgid "" "This bundle comprises the source of LaTeX itself, together with several\n" "packages which are considered \"part of the kernel\". This bundle, together\n" @@ -17137,7 +17331,7 @@ msgid "" "contain." msgstr "" -#: gnu/packages/tex.scm:2885 +#: gnu/packages/tex.scm:3145 msgid "" "This LaTeX packages provides two hooks for @code{\\end@{document@}}\n" "that are executed after the hook of @code{\\AtEndDocument}:\n" @@ -17147,13 +17341,13 @@ msgid "" "of the @file{.aux} file." msgstr "" -#: gnu/packages/tex.scm:2905 +#: gnu/packages/tex.scm:3165 msgid "" "This package provides hooks for adding code at the beginning of\n" "@file{.aux} files." msgstr "" -#: gnu/packages/tex.scm:2921 +#: gnu/packages/tex.scm:3181 msgid "" "The package adds support for EPS files in the @code{graphicx} package\n" "when running under pdfTeX. If an EPS graphic is detected, the package\n" @@ -17161,7 +17355,7 @@ msgid "" "@command{epstopdf}." msgstr "" -#: gnu/packages/tex.scm:2943 +#: gnu/packages/tex.scm:3203 msgid "" "LaTeX2e's @code{filecontents} and @code{filecontents*} environments\n" "enable a LaTeX source file to generate external files as it runs through\n" @@ -17172,7 +17366,7 @@ msgid "" "@code{filecontents*} anywhere." msgstr "" -#: gnu/packages/tex.scm:2964 +#: gnu/packages/tex.scm:3224 msgid "" "This package provides the original (and now obsolescent) graphics\n" "inclusion macros for use with dvips, still widely used by Plain TeX users (in\n" @@ -17182,7 +17376,7 @@ msgid "" "users, via its Plain TeX version.)" msgstr "" -#: gnu/packages/tex.scm:2986 +#: gnu/packages/tex.scm:3246 msgid "" "This package provides tools for the flexible handling of verbatim text\n" "including: verbatim commands in footnotes; a variety of verbatim environments\n" @@ -17192,7 +17386,7 @@ msgid "" "verbatim source)." msgstr "" -#: gnu/packages/tex.scm:3008 +#: gnu/packages/tex.scm:3268 msgid "" "This bundle is a combined distribution consisting of @file{dvips.def},\n" "@file{pdftex.def}, @file{luatex.def}, @file{xetex.def}, @file{dvipdfmx.def},\n" @@ -17200,13 +17394,19 @@ msgid "" "packages." msgstr "" -#: gnu/packages/tex.scm:3026 +#: gnu/packages/tex.scm:3286 msgid "" "This bundle includes @file{color.cfg} and @file{graphics.cfg} files that\n" "set default \"driver\" options for the color and graphics packages." msgstr "" -#: gnu/packages/tex.scm:3048 +#: gnu/packages/tex.scm:3303 +msgid "" +"The package provides Greek LICR macro definitions and encoding definition files\n" +"for Greek text font encodings for use with fontenc." +msgstr "" + +#: gnu/packages/tex.scm:3325 msgid "" "This is a collection of LaTeX packages for producing color, including\n" "graphics (e.g. PostScript) files, and rotation and scaling of text in LaTeX\n" @@ -17214,13 +17414,13 @@ msgid "" "keyval, and lscape." msgstr "" -#: gnu/packages/tex.scm:3066 +#: gnu/packages/tex.scm:3343 msgid "" "This package provides the code for the @code{color} option that is\n" "used by @code{hyperref} and @code{bookmark}." msgstr "" -#: gnu/packages/tex.scm:3098 +#: gnu/packages/tex.scm:3375 msgid "" "The package starts from the basic facilities of the colorcolor package,\n" "and provides easy driver-independent access to several kinds of color tints,\n" @@ -17231,7 +17431,7 @@ msgid "" "tables." msgstr "" -#: gnu/packages/tex.scm:3171 +#: gnu/packages/tex.scm:3448 msgid "" "The package provides an implementation of a parser for\n" "documents matching the XML 1.0 and XML Namespace Recommendations. Element and\n" @@ -17239,7 +17439,7 @@ msgid "" "XML, using UTF-8 or a suitable 8-bit encoding." msgstr "" -#: gnu/packages/tex.scm:3222 +#: gnu/packages/tex.scm:3499 msgid "" "The @code{hyperref} package is used to handle cross-referencing commands\n" "in LaTeX to produce hypertext links in the document. The package provides\n" @@ -17251,20 +17451,20 @@ msgid "" "@code{nameref} packages, which make use of the facilities of @code{hyperref}." msgstr "" -#: gnu/packages/tex.scm:3262 +#: gnu/packages/tex.scm:3539 msgid "" "The bundle comprises various LaTeX packages, providing among others:\n" "better accessibility support for PDF files; extensible chemists reaction\n" "arrows; record information about document class(es) used; and many more." msgstr "" -#: gnu/packages/tex.scm:3285 +#: gnu/packages/tex.scm:3562 msgid "" "This package provides additional rerun warnings if some auxiliary\n" "files have changed. It is based on MD5 checksum, provided by pdfTeX." msgstr "" -#: gnu/packages/tex.scm:3319 +#: gnu/packages/tex.scm:3596 msgid "" "This package is a collection of (variously) simple tools provided as\n" "part of the LaTeX required tools distribution, comprising the following\n" @@ -17274,7 +17474,7 @@ msgid "" "xr, and xspace." msgstr "" -#: gnu/packages/tex.scm:3338 +#: gnu/packages/tex.scm:3615 msgid "" "The command @code{\\url} is a form of verbatim command that\n" "allows linebreaks at certain characters or combinations of characters, accepts\n" @@ -17286,14 +17486,14 @@ msgid "" "of file names." msgstr "" -#: gnu/packages/tex.scm:3364 +#: gnu/packages/tex.scm:3641 msgid "" "This package provides font maps that were originally part of\n" "the now obsolete teTeX distributions but are still used at the core of the TeX\n" "Live distribution." msgstr "" -#: gnu/packages/tex.scm:3391 +#: gnu/packages/tex.scm:3668 msgid "" "The l3kernel bundle provides an implementation of the LaTeX3\n" "programmers’ interface, as a set of packages that run under LaTeX 2e. The\n" @@ -17302,7 +17502,7 @@ msgid "" "that the LaTeX3 conventions can be used with regular LaTeX 2e packages." msgstr "" -#: gnu/packages/tex.scm:3420 +#: gnu/packages/tex.scm:3697 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" @@ -17311,7 +17511,7 @@ msgid "" "an independent schedule." msgstr "" -#: gnu/packages/tex.scm:3484 +#: gnu/packages/tex.scm:3761 msgid "" "This bundle holds prototype implementations of concepts for a LaTeX\n" "designer interface, to be used with the experimental LaTeX kernel as\n" @@ -17328,14 +17528,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:3511 +#: gnu/packages/tex.scm:3788 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" "here are defined for the dvips engine only." msgstr "" -#: gnu/packages/tex.scm:3539 +#: gnu/packages/tex.scm:3816 msgid "" "Fontspec is a package for XeLaTeX and LuaLaTeX. It provides an\n" "automatic and unified interface to feature-rich AAT and OpenType fonts through\n" @@ -17343,7 +17543,7 @@ msgid "" "the l3kernel and xparse bundles from the LaTeX 3 development team." msgstr "" -#: gnu/packages/tex.scm:3569 +#: gnu/packages/tex.scm:3846 msgid "" "The original grffile package extended the file name processing of the\n" "@code{graphics} package to support a larger range of file names. The base\n" @@ -17351,13 +17551,13 @@ msgid "" "is a stub that just loads @code{graphicx}." msgstr "" -#: gnu/packages/tex.scm:3610 +#: gnu/packages/tex.scm:3887 msgid "" "This package provides @code{\\StringEncodingConvert} for converting a\n" "string between different encodings. Both LaTeX and plain-TeX are supported." msgstr "" -#: gnu/packages/tex.scm:3653 +#: gnu/packages/tex.scm:3930 msgid "" "The l3build module is designed to support the development of\n" "high-quality LaTeX code by providing: a unit testing system, automated\n" @@ -17366,14 +17566,20 @@ msgid "" "@code{.tex} file which provides the testing environment." msgstr "" -#: gnu/packages/tex.scm:3690 +#: gnu/packages/tex.scm:3953 msgid "" "Lualibs is a collection of Lua modules useful for general programming.\n" "The bundle is based on Lua modules shipped with ConTeXt, and made available in\n" "this bundle for use independent of ConTeXt." msgstr "" -#: gnu/packages/tex.scm:3718 +#: gnu/packages/tex.scm:3972 +msgid "" +"This package provides a Lua module for processing application arguments\n" +"in the same way as BSD/GNU @code{getopt_long(3)} functions do." +msgstr "" + +#: gnu/packages/tex.scm:3999 msgid "" "Luaotfload is an adaptation of the ConTeXt font loading system for the\n" "Plain and LaTeX formats. It allows OpenType fonts to be loaded with font\n" @@ -17382,11 +17588,7 @@ msgid "" "loading fonts by their proper names instead of file names." msgstr "" -#: gnu/packages/tex.scm:3790 -msgid "This package is necessary to use LaTeX with the LuaTeX engine." -msgstr "" - -#: gnu/packages/tex.scm:3809 +#: gnu/packages/tex.scm:4025 msgid "" "This is the principal package in the AMS-LaTeX distribution. It adapts\n" "for use in LaTeX most of the mathematical features found in AMS-TeX; it is\n" @@ -17401,7 +17603,7 @@ msgid "" "definitions." msgstr "" -#: gnu/packages/tex.scm:3843 +#: gnu/packages/tex.scm:4059 msgid "" "This bundle contains three AMS classes: @code{amsartamsart} (for writing\n" "articles for the AMS), @code{amsbookamsbook} (for books) and\n" @@ -17410,7 +17612,7 @@ msgid "" "distribution." msgstr "" -#: gnu/packages/tex.scm:3890 +#: gnu/packages/tex.scm:4106 msgid "" "The package manages culturally-determined typographical (and other)\n" "rules, and hyphenation patterns for a wide range of languages. A document may\n" @@ -17421,7 +17623,7 @@ msgid "" "polyglossia package rather than Babel." msgstr "" -#: gnu/packages/tex.scm:3917 +#: gnu/packages/tex.scm:4133 msgid "" "This package provides the language definition file for support of\n" "English in @code{babel}. Care is taken to select British hyphenation patterns\n" @@ -17429,13 +17631,14 @@ msgid "" "for Canadian and USA text." msgstr "" -#: gnu/packages/tex.scm:3939 +#: gnu/packages/tex.scm:4173 msgid "" -"This package provides support for the French language for the\n" -"babel multilingual system." +"The package, formerly known as frenchb, establishes French conventions\n" +"in a document (or a subset of the conventions, if French is not the main\n" +"language of the document)." msgstr "" -#: gnu/packages/tex.scm:3959 +#: gnu/packages/tex.scm:4196 msgid "" "This package provides the language definition file for support of German\n" "in @code{babel}. It provides all the necessary macros, definitions and\n" @@ -17444,14 +17647,14 @@ msgid "" "Swiss varieties of German." msgstr "" -#: gnu/packages/tex.scm:3986 +#: gnu/packages/tex.scm:4223 msgid "" "This package provides the language definition file for\n" "support of Swedish in @code{babel}. It provides all the necessary macros,\n" "definitions and settings to typeset Swedish documents." msgstr "" -#: gnu/packages/tex.scm:4008 +#: gnu/packages/tex.scm:4245 msgid "" "This bundle of macros files provides macro support (including font\n" "encoding macros) for the use of Cyrillic characters in fonts encoded under the\n" @@ -17459,7 +17662,7 @@ msgid "" "language that is written in a Cyrillic alphabet." msgstr "" -#: gnu/packages/tex.scm:4126 +#: gnu/packages/tex.scm:4363 msgid "" "The PSNFSS collection includes a set of files that provide a complete\n" "working setup of the LaTeX font selection scheme (NFSS2) for use with common\n" @@ -17474,20 +17677,20 @@ msgid "" "part of the LaTeX required set of packages." msgstr "" -#: gnu/packages/tex.scm:4177 gnu/packages/tex.scm:4269 +#: gnu/packages/tex.scm:4414 gnu/packages/tex.scm:4506 msgid "" "This is a very limited subset of the TeX Live distribution.\n" "It includes little more than the required set of LaTeX packages." msgstr "" -#: gnu/packages/tex.scm:4248 +#: gnu/packages/tex.scm:4485 msgid "" "This package contains the fonts map configuration file\n" "generated for the base TeX Live packages as well as, optionally, user-provided\n" "ones." msgstr "" -#: gnu/packages/tex.scm:4288 +#: gnu/packages/tex.scm:4525 msgid "" "These fonts are considered the \"ultimate answer\" to IPA\n" "typesetting. The encoding of these 8-bit fonts has been registered as LaTeX\n" @@ -17496,7 +17699,7 @@ msgid "" "TS3 fonts." msgstr "" -#: gnu/packages/tex.scm:4311 +#: gnu/packages/tex.scm:4548 msgid "" "Amsrefs is a LaTeX package for bibliographies that provides an archival\n" "data format similar to the format of BibTeX database files, but adapted to\n" @@ -17504,7 +17707,7 @@ msgid "" "conjunction with BibTeX or as a replacement for BibTeX." msgstr "" -#: gnu/packages/tex.scm:4340 +#: gnu/packages/tex.scm:4577 msgid "" "This package aims to provide a one-stop solution to requirements for\n" "footnotes. It offers: Multiple footnote apparatus superior to that of\n" @@ -17518,7 +17721,7 @@ msgid "" "@code{suffix} packages." msgstr "" -#: gnu/packages/tex.scm:4368 +#: gnu/packages/tex.scm:4605 msgid "" "The package provides the commands @code{\\blindtext} and\n" "@code{\\Blindtext} for creating \"blind\" text useful in testing new classes\n" @@ -17529,7 +17732,7 @@ msgid "" "ipsum\" text, see the @code{lipsum} package)." msgstr "" -#: gnu/packages/tex.scm:4407 +#: gnu/packages/tex.scm:4644 msgid "" "This package implements a document layout for writing letters according\n" "to the rules of DIN (Deutsches Institut für Normung, German standardisation\n" @@ -17541,7 +17744,7 @@ msgid "" "package." msgstr "" -#: gnu/packages/tex.scm:4433 +#: gnu/packages/tex.scm:4670 msgid "" "This package provides a means to add a textual, light grey watermark on\n" "every page or on the first page of a document. Typical usage may consist in\n" @@ -17551,7 +17754,7 @@ msgid "" "on everypage." msgstr "" -#: gnu/packages/tex.scm:4457 +#: gnu/packages/tex.scm:4694 msgid "" "This package provides the @code{\\collect@@body} command (as in\n" "@code{amsmath}), as well as a @code{\\long} version @code{\\Collect@@Body},\n" @@ -17559,7 +17762,7 @@ msgid "" "define a new author interface to creating new environments." msgstr "" -#: gnu/packages/tex.scm:4479 +#: gnu/packages/tex.scm:4716 msgid "" "LaTeX users sometimes need to ensure that two or more blocks of text\n" "occupy the same amount of horizontal space on the page. To that end, the\n" @@ -17573,7 +17776,7 @@ msgid "" "also provided." msgstr "" -#: gnu/packages/tex.scm:4504 +#: gnu/packages/tex.scm:4741 msgid "" "This package gives the user complete control of how the entries of\n" "the table of contents should be constituted from the name, number, and page\n" @@ -17593,7 +17796,7 @@ msgid "" "table of contents." msgstr "" -#: gnu/packages/tex.scm:4546 +#: gnu/packages/tex.scm:4783 msgid "" "The package provides additional features for the LaTeX\n" "@code{description} environment, including adjustable left margin. The package\n" @@ -17602,7 +17805,7 @@ msgid "" "@code{enumerate} lists, and numbered lists remain in sequence)." msgstr "" -#: gnu/packages/tex.scm:4566 +#: gnu/packages/tex.scm:4803 msgid "" "This package provides macros to read and compare the modification dates\n" "of files. The files may be @code{.tex} files, images or other files (as long\n" @@ -17614,14 +17817,14 @@ msgid "" "but non-expandable ones." msgstr "" -#: gnu/packages/tex.scm:4589 +#: gnu/packages/tex.scm:4826 msgid "" "The @code{hanging} package facilitates the typesetting of hanging\n" "paragraphs. The package also enables typesetting with hanging punctuation,\n" "by making punctuation characters active." msgstr "" -#: gnu/packages/tex.scm:4612 +#: gnu/packages/tex.scm:4849 msgid "" "This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX support for\n" "the Fira Sans family of fonts designed by Erik Spiekermann and Ralph du\n" @@ -17629,7 +17832,7 @@ msgid "" "corresponding italics: light, regular, medium, bold, ..." msgstr "" -#: gnu/packages/tex.scm:4635 +#: gnu/packages/tex.scm:4872 msgid "" "This package uses the (La)TeX extension @code{-shell-escape} to\n" "establish whether the document is being processed on a Windows or on a\n" @@ -17640,7 +17843,7 @@ msgid "" "classes of systems." msgstr "" -#: gnu/packages/tex.scm:4660 +#: gnu/packages/tex.scm:4897 msgid "" "This bundle provides a package that implements both author-year and\n" "numbered references, as well as much detailed of support for other\n" @@ -17650,20 +17853,20 @@ msgid "" "designed from the start to be compatible with @code{natbib}." msgstr "" -#: gnu/packages/tex.scm:4679 +#: gnu/packages/tex.scm:4916 msgid "" "This package provides a friendly interface for defining the meaning of\n" "Unicode characters. The document should be processed by (pdf)LaTeX with the\n" "Unicode option of @code{inputenc} or @code{inputenx}, or by XeLaTeX/LuaLaTeX." msgstr "" -#: gnu/packages/tex.scm:4699 +#: gnu/packages/tex.scm:4936 msgid "" "This package makes a number of utility functions from pdfTeX\n" "available for luaTeX by reimplementing them using Lua." msgstr "" -#: gnu/packages/tex.scm:4719 +#: gnu/packages/tex.scm:4956 msgid "" "This package allows LaTeX constructions (equations, picture\n" "environments, etc.) to be precisely superimposed over Encapsulated PostScript\n" @@ -17674,7 +17877,7 @@ msgid "" "rotated." msgstr "" -#: gnu/packages/tex.scm:4751 +#: gnu/packages/tex.scm:4988 msgid "" "This is a package for processing PostScript graphics with @code{psfrag}\n" "labels within pdfLaTeX documents. Every graphic is compiled individually,\n" @@ -17682,7 +17885,7 @@ msgid "" "re-processing." msgstr "" -#: gnu/packages/tex.scm:4771 +#: gnu/packages/tex.scm:5008 msgid "" "This package provides the @code{\\setcounterref} and\n" "@code{\\addtocounterref} commands which use the section (or other) number\n" @@ -17691,7 +17894,7 @@ msgid "" "corresponding thing with the page reference of the label." msgstr "" -#: gnu/packages/tex.scm:4791 +#: gnu/packages/tex.scm:5028 msgid "" "This package provides a class that produces overhead\n" "slides (transparencies), with many facilities. Seminar is not nowadays\n" @@ -17700,14 +17903,14 @@ msgid "" "21st-century presentation styles." msgstr "" -#: gnu/packages/tex.scm:4812 +#: gnu/packages/tex.scm:5049 msgid "" "The package provides a versatile way to stack objects vertically in a\n" "variety of customizable ways. A number of useful macros are provided, all\n" "of which make use of the @code{stackengine} core." msgstr "" -#: gnu/packages/tex.scm:4828 +#: gnu/packages/tex.scm:5065 msgid "" "This package provides control over the typography of the\n" "@dfn{Table of Contents}, @dfn{List of Figures} and @dfn{List of Tables},\n" @@ -17715,7 +17918,7 @@ msgid "" "be changed." msgstr "" -#: gnu/packages/tex.scm:4862 +#: gnu/packages/tex.scm:5099 msgid "" "This very short package allows you to expandably remove spaces around a\n" "token list (commands are provided to remove spaces before, spaces after, or\n" @@ -17723,13 +17926,32 @@ msgid "" "space-stripped macros." msgstr "" -#: gnu/packages/tex.scm:4897 +#: gnu/packages/tex.scm:5115 +#, fuzzy +#| msgid "" +#| "This package provides a dictionary for the Hunspell spell-checking\n" +#| "library." +msgid "This package provides a math interface to the Rsfs fonts." +msgstr "" +"Questo pacchetto fornisce un dizionario per il controllo ortografico per la libreria \n" +"Hunspell." + +#: gnu/packages/tex.scm:5152 msgid "" "This package defines a command @code{\\captionof} for putting a caption\n" "to something that's not a float." msgstr "" -#: gnu/packages/tex.scm:4913 +#: gnu/packages/tex.scm:5170 +msgid "" +"Many of David Carlisle's more substantial packages stand on their own,\n" +"or as part of the LaTeX latex-tools set; this set contains: making dotless\n" +"@emph{j} characters for fonts that don't have them; a method for combining the\n" +"capabilities of longtable and tabularx; an environment for including plain TeX\n" +"in LaTeX documents; a jiffy to create slashed characters for physicists." +msgstr "" + +#: gnu/packages/tex.scm:5189 msgid "" "You can hyperlink DOI numbers to doi.org. However, some publishers have\n" "elected to use nasty characters in their DOI numbering scheme (@code{<},\n" @@ -17739,7 +17961,7 @@ msgid "" "hyperlink to the target of the DOI." msgstr "" -#: gnu/packages/tex.scm:4936 +#: gnu/packages/tex.scm:5212 msgid "" "This package is a toolbox of programming facilities geared primarily\n" "towards LaTeX class and package authors. It provides LaTeX frontends to some\n" @@ -17750,7 +17972,7 @@ msgid "" "of the LaTeX kernel." msgstr "" -#: gnu/packages/tex.scm:4976 +#: gnu/packages/tex.scm:5252 msgid "" "This package provides seven predefined chapter heading styles. Each\n" "style can be modified using a set of simple commands. Optionally one can\n" @@ -17758,7 +17980,7 @@ msgid "" "headings." msgstr "" -#: gnu/packages/tex.scm:5011 +#: gnu/packages/tex.scm:5287 msgid "" "The package creates three environments: @code{framed}, which puts an\n" "ordinary frame box around the region, @code{shaded}, which shades the region,\n" @@ -17769,7 +17991,7 @@ msgid "" "@code{\\MakeFramed} to make your own framed-style environments." msgstr "" -#: gnu/packages/tex.scm:5045 +#: gnu/packages/tex.scm:5321 msgid "" "This package is designed for formatting formless letters in German; it\n" "can also be used for English (by those who can read the documentation). There\n" @@ -17777,13 +17999,13 @@ msgid "" "\"old\" and a \"new\" version of g-brief." msgstr "" -#: gnu/packages/tex.scm:5067 +#: gnu/packages/tex.scm:5343 msgid "" "The package deals with connections in two-dimensional style, optionally\n" "in colour." msgstr "" -#: gnu/packages/tex.scm:5087 +#: gnu/packages/tex.scm:5363 msgid "" "The package allows citations in the German style, which is considered by\n" "many to be particularly reader-friendly. The citation provides a small amount\n" @@ -17793,7 +18015,7 @@ msgid "" "BibLaTeX, and is considered experimental." msgstr "" -#: gnu/packages/tex.scm:5113 +#: gnu/packages/tex.scm:5389 msgid "" "This package provides an easy and flexible user interface to customize\n" "page layout, implementing auto-centering and auto-balancing mechanisms so that\n" @@ -17804,7 +18026,7 @@ msgid "" "ability to communicate the paper size it's set up to the output." msgstr "" -#: gnu/packages/tex.scm:5138 +#: gnu/packages/tex.scm:5414 msgid "" "This collection of tools includes: @code{atsupport} for short commands\n" "starting with @code{@@}, macros to sanitize the OT1 encoding of the\n" @@ -17814,13 +18036,13 @@ msgid "" "array environments; verbatim handling; and syntax diagrams." msgstr "" -#: gnu/packages/tex.scm:5162 +#: gnu/packages/tex.scm:5438 msgid "" "This package provides a complete Babel replacement for users of LuaLaTeX\n" "and XeLaTeX; it relies on the @code{fontspec} package, version 2.0 at least." msgstr "" -#: gnu/packages/tex.scm:5182 +#: gnu/packages/tex.scm:5458 msgid "" "This package was a predecessor of @code{longtable}; the newer\n" "package (designed on quite different principles) is easier to use and more\n" @@ -17828,7 +18050,7 @@ msgid "" "situations where longtable has problems." msgstr "" -#: gnu/packages/tex.scm:5217 +#: gnu/packages/tex.scm:5493 msgid "" "Texinfo is the preferred format for documentation in the GNU project;\n" "the format may be used to produce online or printed output from a single\n" @@ -17837,7 +18059,23 @@ msgid "" "hypertext linkages in some cases)." msgstr "" -#: gnu/packages/tex.scm:5240 +#: gnu/packages/tex.scm:5513 +msgid "" +"The textcase package offers commands @code{\\MakeTextUppercase} and\n" +"@code{\\MakeTextLowercase} are similar to the standard @code{\\MakeUppercase}\n" +"and @code{\\MakeLowercase}, but they do not change the case of any sections of\n" +"mathematics, or the arguments of @code{\\cite}, @code{\\label} and\n" +"@code{\\ref} commands within the argument. A further command\n" +"@code{\\NoCaseChange} does nothing but suppress case change within its\n" +"argument, so to force uppercase of a section including an environment, one\n" +"might say:\n" +"\n" +"@example\n" +"\\MakeTextUppercase{...\\NoCaseChange{\\begin{foo}} ...\\NoCaseChange{\\end{foo}}...}\n" +"@end example\n" +msgstr "" + +#: gnu/packages/tex.scm:5543 msgid "" "Typewriter-style fonts are best for program listings, but Computer\n" "Modern Typewriter prints @code{`} and @code{'} as bent opening and closing\n" @@ -17851,14 +18089,14 @@ msgid "" "does not affect @code{\\tt}, @code{\\texttt}, etc." msgstr "" -#: gnu/packages/tex.scm:5281 +#: gnu/packages/tex.scm:5584 msgid "" "This is a simple package to set up document margins. This package is\n" "considered obsolete; alternatives are the @code{typearea} package from the\n" "@code{koma-script} bundle, or the @code{geometry} package." msgstr "" -#: gnu/packages/tex.scm:5302 +#: gnu/packages/tex.scm:5605 msgid "" "The appendix package provides various ways of formatting the titles of\n" "appendices. Also (sub)appendices environments are provided that can be used,\n" @@ -17867,14 +18105,14 @@ msgid "" "command." msgstr "" -#: gnu/packages/tex.scm:5321 +#: gnu/packages/tex.scm:5624 msgid "" "This package implements a new bookmark (outline) organization for the\n" "@code{hyperref} package. Bookmark properties such as style and color. Other\n" "action types are available (URI, GoToR, Named)." msgstr "" -#: gnu/packages/tex.scm:5342 +#: gnu/packages/tex.scm:5645 msgid "" "Identify areas of text to be marked with changebars with the\n" "@code{\\cbstart} and @code{\\cbend} commands; the bars may be coloured. The\n" @@ -17883,19 +18121,19 @@ msgid "" "drivers, and VTeX and pdfTeX." msgstr "" -#: gnu/packages/tex.scm:5379 +#: gnu/packages/tex.scm:5682 msgid "" "This package embeds CMap tables into PDF files to make search and\n" "copy-and-paste functions work properly." msgstr "" -#: gnu/packages/tex.scm:5399 +#: gnu/packages/tex.scm:5702 msgid "" "This package allows rows, columns, and even individual cells in LaTeX\n" "tables to be coloured." msgstr "" -#: gnu/packages/tex.scm:5432 +#: gnu/packages/tex.scm:5735 msgid "" "This package provides variants of @code{\\fbox}: @code{\\shadowbox},\n" "@code{\\doublebox}, @code{\\ovalbox}, @code{\\Ovalbox}, with helpful tools for\n" @@ -17903,14 +18141,14 @@ msgid "" "floats, center, flushleft, and flushright, lists, and pages." msgstr "" -#: gnu/packages/tex.scm:5467 +#: gnu/packages/tex.scm:5770 msgid "" "The package provides extensive facilities, both for constructing headers\n" "and footers, and for controlling their use (for example, at times when LaTeX\n" "would automatically change the heading style in use)." msgstr "" -#: gnu/packages/tex.scm:5488 +#: gnu/packages/tex.scm:5791 msgid "" "This package improves the interface for defining floating objects such\n" "as figures and tables. It introduces the boxed float, the ruled float and the\n" @@ -17920,7 +18158,7 @@ msgid "" "with @code{\\floatplacement{figure}{H}}." msgstr "" -#: gnu/packages/tex.scm:5512 +#: gnu/packages/tex.scm:5815 msgid "" "This is a collection of ways to change the typesetting of footnotes.\n" "The package provides means of changing the layout of the footnotes themselves,\n" @@ -17930,7 +18168,7 @@ msgid "" "footnotes with symbols rather than numbers." msgstr "" -#: gnu/packages/tex.scm:5532 +#: gnu/packages/tex.scm:5835 msgid "" "TeX’s @code{\\let} assignment does not work for LaTeX macros with\n" "optional arguments, or for macros that are defined as robust macros by\n" @@ -17938,7 +18176,7 @@ msgid "" "that also takes care of the involved internal macros." msgstr "" -#: gnu/packages/tex.scm:5556 +#: gnu/packages/tex.scm:5859 msgid "" "The package enables the user to typeset programs (programming code)\n" "within LaTeX; the source code is read directly by TeX---no front-end processor\n" @@ -17946,7 +18184,7 @@ msgid "" "styles. Support for @code{hyperref} is provided." msgstr "" -#: gnu/packages/tex.scm:5591 +#: gnu/packages/tex.scm:5894 msgid "" "This package provides miscellaneous macros by Joerg Knappen, including:\n" "represent counters in greek; Maxwell's non-commutative division;\n" @@ -17958,13 +18196,13 @@ msgid "" "in SGML; use maths minus in text as appropriate; simple Young tableaux." msgstr "" -#: gnu/packages/tex.scm:5615 +#: gnu/packages/tex.scm:5918 msgid "" "This package provides facilities for using key-value format in\n" "package options." msgstr "" -#: gnu/packages/tex.scm:5684 +#: gnu/packages/tex.scm:5987 msgid "" "The EC fonts are European Computer Modern Fonts, supporting the complete\n" "LaTeX T1 encoding defined at the 1990 TUG conference hold at Cork/Ireland.\n" @@ -17981,7 +18219,7 @@ msgid "" "differs from the EC in a number of particulars." msgstr "" -#: gnu/packages/tex.scm:5717 +#: gnu/packages/tex.scm:6020 msgid "" "This package provides a set of virtual fonts which emulates T1 coded\n" "fonts using the standard CM fonts. The package name, AE fonts, supposedly\n" @@ -17991,7 +18229,7 @@ msgid "" "via the CM-super, Latin Modern and (in a restricted way) CM-LGC font sets." msgstr "" -#: gnu/packages/tex.scm:5742 +#: gnu/packages/tex.scm:6045 msgid "" "Inconsolata is a monospaced font designed by Raph Levien. This package\n" "contains the font (in both Adobe Type 1 and OpenType formats) in regular and\n" @@ -18000,25 +18238,25 @@ msgid "" "TeX, and LaTeX font definition and other relevant files." msgstr "" -#: gnu/packages/tex.scm:5771 +#: gnu/packages/tex.scm:6074 msgid "" "This package provides a drop-in replacements for the Times font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5799 +#: gnu/packages/tex.scm:6102 msgid "" "This package provides a drop-in replacements for the Palatino font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5824 +#: gnu/packages/tex.scm:6127 msgid "" "This package provides a drop-in replacements for the Zapfding font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5896 +#: gnu/packages/tex.scm:6199 msgid "" "The fonts provide uppercase formal script letters for use as symbols in\n" "scientific and mathematical typesetting (in contrast to the informal script\n" @@ -18028,14 +18266,14 @@ msgid "" "one of the packages @code{calrsfs} and @code{mathrsfs}." msgstr "" -#: gnu/packages/tex.scm:5920 +#: gnu/packages/tex.scm:6223 msgid "" "The package adds one or more user commands to LaTeX's @code{shipout}\n" "routine, which may be used to place the output at fixed positions. The\n" "@code{grid} option may be used to find the correct places." msgstr "" -#: gnu/packages/tex.scm:5954 +#: gnu/packages/tex.scm:6257 msgid "" "Extensions to @code{epic} and the LaTeX picture drawing environment,\n" "include the drawing of lines at any slope, the drawing of circles in any\n" @@ -18045,7 +18283,7 @@ msgid "" "@code{\\special} commands." msgstr "" -#: gnu/packages/tex.scm:5991 +#: gnu/packages/tex.scm:6276 msgid "" "This package is intended to ease customizing the three basic list\n" "environments: @code{enumerate}, @code{itemize} and @code{description}. It\n" @@ -18054,14 +18292,14 @@ msgid "" "@code{\\begin{itemize}[itemsep=1ex,leftmargin=1cm]}." msgstr "" -#: gnu/packages/tex.scm:6014 +#: gnu/packages/tex.scm:6301 msgid "" "The package provides tools for creating tabular cells spanning multiple\n" "rows. It has a lot of flexibility, including an option for specifying an\n" "entry at the \"natural\" width of its text." msgstr "" -#: gnu/packages/tex.scm:6048 +#: gnu/packages/tex.scm:6335 msgid "" "The @code{overpic} environment is a cross between the LaTeX\n" "@code{picture} environment and the @code{\\includegraphics} command of\n" @@ -18070,14 +18308,14 @@ msgid "" "positions; a grid for orientation is available." msgstr "" -#: gnu/packages/tex.scm:6084 +#: gnu/packages/tex.scm:6371 msgid "" "Simply changing @code{\\parskip} and @code{\\parindent} leaves a layout\n" "that is untidy; this package (though it is no substitute for a properly\n" "designed class) helps alleviate this untidiness." msgstr "" -#: gnu/packages/tex.scm:6105 +#: gnu/packages/tex.scm:6392 msgid "" "This package simplifies the inclusion of external multi-page PDF\n" "documents in LaTeX documents. Pages may be freely selected and it is possible\n" @@ -18087,7 +18325,7 @@ msgid "" "use this package to insert PostScript files, in addition to PDF files." msgstr "" -#: gnu/packages/tex.scm:6146 +#: gnu/packages/tex.scm:6433 msgid "" "The fonts were originally distributed as Metafont sources only, but\n" "Adobe Type 1 versions are also now available. Macro support is provided for\n" @@ -18096,7 +18334,7 @@ msgid "" "the whole font." msgstr "" -#: gnu/packages/tex.scm:6171 +#: gnu/packages/tex.scm:6458 msgid "" "This (deprecated) package provides support for the manipulation and\n" "reference of small or \"sub\" figures and tables within a single figure or\n" @@ -18109,7 +18347,7 @@ msgid "" "the more recent @code{subcaption} package more satisfactory." msgstr "" -#: gnu/packages/tex.scm:6198 +#: gnu/packages/tex.scm:6485 msgid "" "The package defines a @code{tabular*}-like environment, @code{tabulary},\n" "taking a \"total width\" argument as well as the column specifications. The\n" @@ -18120,7 +18358,7 @@ msgid "" "according to the natural width of the widest cell in the column." msgstr "" -#: gnu/packages/tex.scm:6236 +#: gnu/packages/tex.scm:6523 msgid "" "This package facilitates tables with titles (captions) and notes. The\n" "title and notes are given a width equal to the body of the table (a\n" @@ -18129,7 +18367,7 @@ msgid "" "environment." msgstr "" -#: gnu/packages/tex.scm:6263 +#: gnu/packages/tex.scm:6550 msgid "" "Txfonts supplies virtual text roman fonts using Adobe Times (or URW\n" "NimbusRomNo9L) with some modified and additional text symbols in the OT1, T1,\n" @@ -18145,7 +18383,7 @@ msgid "" "TeX metrics (VF and TFM files) and macros for use with LaTeX." msgstr "" -#: gnu/packages/tex.scm:6312 +#: gnu/packages/tex.scm:6599 msgid "" "Iwona is a two-element sans-serif typeface. It was created\n" "as an alternative version of the Kurier typeface, which was designed in 1975\n" @@ -18156,7 +18394,7 @@ msgid "" "of ink traps which typify the Kurier font." msgstr "" -#: gnu/packages/tex.scm:6335 +#: gnu/packages/tex.scm:6622 msgid "" "This package contains a collection of macros by Jörg Knappen:\n" "@table @code\n" @@ -18192,7 +18430,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/tex.scm:6442 +#: gnu/packages/tex.scm:6729 msgid "" "JadeTeX is a companion package to the OpenJade DSSSL\n" "processor. OpenJade applies a DSSSL stylesheet to an SGML or XML document.\n" @@ -18203,7 +18441,7 @@ msgid "" "command)." msgstr "" -#: gnu/packages/tex.scm:6472 +#: gnu/packages/tex.scm:6759 msgid "" "The package provides the Libertine and Biolinum fonts in both Type 1 and\n" "OTF styles, together with support macros for their use. Monospaced and\n" @@ -18213,7 +18451,7 @@ msgid "" "@code{libertine-legacy} packages." msgstr "" -#: gnu/packages/tex.scm:6504 +#: gnu/packages/tex.scm:6791 msgid "" "The package contains LaTeX support for the DejaVu fonts, which are\n" "derived from the Vera fonts but contain more characters and styles. The fonts\n" @@ -18222,7 +18460,7 @@ msgid "" "LGR. The package doesn't (currently) support mathematics." msgstr "" -#: gnu/packages/tex.scm:6540 +#: gnu/packages/tex.scm:6827 msgid "" "This package provides an interface to sectioning commands for selection\n" "from various title styles, e.g. for marginal titles and to change the font of\n" @@ -18231,7 +18469,7 @@ msgid "" "floats in a page. You may assign headers/footers to individual floats, too." msgstr "" -#: gnu/packages/tex.scm:6563 +#: gnu/packages/tex.scm:6850 msgid "" "LaTeX, by default, restricts the sizes at which you can use its default\n" "computer modern fonts, to a fixed set of discrete sizes (effectively, a set\n" @@ -18246,7 +18484,7 @@ msgid "" "@code{ec} fonts." msgstr "" -#: gnu/packages/tex.scm:6617 +#: gnu/packages/tex.scm:6904 msgid "" "The LH fonts address the problem of the wide variety of alphabets that\n" "are written with Cyrillic-style characters. The fonts are the original basis\n" @@ -18259,7 +18497,7 @@ msgid "" "OT2 encoded fonts, CM bright shaped fonts and Concrete shaped fonts." msgstr "" -#: gnu/packages/tex.scm:6647 +#: gnu/packages/tex.scm:6934 msgid "" "The Martin Vogel’s Symbols fonts (marvosym) contains the\n" "Euro currency symbol as defined by the European commission, along with symbols\n" @@ -18269,34 +18507,41 @@ msgid "" "the derived Type 1 font, together with support files for TeX (LaTeX)." msgstr "" -#: gnu/packages/tex.scm:6685 +#: gnu/packages/tex.scm:6972 msgid "" "MetaPost uses a language based on that of Metafont to produce precise\n" "technical illustrations. Its output is scalable PostScript or SVG, rather\n" "than the bitmaps Metafont creates." msgstr "" -#: gnu/packages/tex.scm:6706 +#: gnu/packages/tex.scm:6993 msgid "" "This package provides a class for typesetting publications of the\n" "Association for Computing Machinery (ACM)." msgstr "" -#: gnu/packages/tex.scm:6739 +#: gnu/packages/tex.scm:7026 msgid "" "The @code{varwidth} environment is superficially similar to\n" "@code{minipage}, but the specified width is just a maximum value — the box may\n" "get a narrower “natural” width." msgstr "" -#: gnu/packages/tex.scm:6757 +#: gnu/packages/tex.scm:7041 +msgid "" +"The varwidth environment is superficially similar to minipage, but the\n" +"specified width is just a maximum value --- the box may get a narrower natural\n" +"width." +msgstr "" + +#: gnu/packages/tex.scm:7059 msgid "" "This package provides the @code{wasy} (Waldi symbol) fonts,\n" "in the Metafont and Adobe Type 1 formats. Support under LaTeX is provided by\n" "the @code{wasysym} package." msgstr "" -#: gnu/packages/tex.scm:6778 +#: gnu/packages/tex.scm:7080 msgid "" "The @code{wasy} (Waldi Symbol) font by Roland Waldi provides many glyphs like\n" "male and female symbols and astronomical symbols, as well as the complete\n" @@ -18304,14 +18549,14 @@ msgid "" "implements an easy to use interface for these symbols." msgstr "" -#: gnu/packages/tex.scm:6815 +#: gnu/packages/tex.scm:7117 msgid "" "This package allows figures or tables to have text wrapped around them.\n" "It does not work in combination with list environments, but can be used in a\n" "@code{parbox} or @code{minipage}, and in two-column format." msgstr "" -#: gnu/packages/tex.scm:6849 +#: gnu/packages/tex.scm:7151 msgid "" "The bundle provides the @code{ucs} package, and @code{utf8x.def},\n" "together with a large number of support files. The @code{utf8x.def}\n" @@ -18324,7 +18569,7 @@ msgid "" "package of that name now exists." msgstr "" -#: gnu/packages/tex.scm:6883 +#: gnu/packages/tex.scm:7185 msgid "" "The main purpose of the preview package is the extraction of selected\n" "elements from a LaTeX source, like formulas or graphics, into separate\n" @@ -18335,7 +18580,7 @@ msgid "" "files." msgstr "" -#: gnu/packages/tex.scm:6908 +#: gnu/packages/tex.scm:7210 msgid "" "This package ensures that all acronyms used in the text are spelled out\n" "in full at least once. It also provides an environment to build a list of\n" @@ -18344,13 +18589,13 @@ msgid "" "e-TeX." msgstr "" -#: gnu/packages/tex.scm:6945 +#: gnu/packages/tex.scm:7247 msgid "" "This package provides an extension of TeX which can be configured to\n" "directly generate PDF documents instead of DVI." msgstr "" -#: gnu/packages/tex.scm:7025 +#: gnu/packages/tex.scm:7327 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18360,7 +18605,7 @@ msgid "" "This package contains the complete tree of texmf-dist data." msgstr "" -#: gnu/packages/tex.scm:7088 +#: gnu/packages/tex.scm:7390 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18370,7 +18615,7 @@ msgid "" "This package contains the complete TeX Live distribution." msgstr "" -#: gnu/packages/tex.scm:7130 +#: gnu/packages/tex.scm:7432 msgid "" "@code{Text::BibTeX} is a Perl library for reading, parsing,\n" "and processing BibTeX files. @code{Text::BibTeX} gives you access to the data\n" @@ -18379,13 +18624,13 @@ msgid "" "values (strings, macros, or numbers) pasted together." msgstr "" -#: gnu/packages/tex.scm:7216 +#: gnu/packages/tex.scm:7518 msgid "" "Biber is a BibTeX replacement for users of biblatex. Among\n" "other things it comes with full Unicode support." msgstr "" -#: gnu/packages/tex.scm:7250 +#: gnu/packages/tex.scm:7552 msgid "" "Rubber is a program whose purpose is to handle all tasks related to the\n" "compilation of LaTeX documents. This includes compiling the document itself,\n" @@ -18395,20 +18640,20 @@ msgid "" "PDF documents." msgstr "" -#: gnu/packages/tex.scm:7289 +#: gnu/packages/tex.scm:7591 msgid "" "Texmaker is a program that integrates many tools needed to\n" "develop documents with LaTeX, in a single application." msgstr "" -#: gnu/packages/tex.scm:7330 +#: gnu/packages/tex.scm:7632 msgid "" "@i{TeX for the Impatient} is a ~350 page book on TeX,\n" "plain TeX, and Eplain, originally written by Paul Abrahams, Kathryn Hargreaves,\n" "and Karl Berry." msgstr "" -#: gnu/packages/tex.scm:7394 +#: gnu/packages/tex.scm:7696 msgid "" "LyX is a document preparation system. It excels at letting\n" "you create complex technical and scientific articles with mathematics,\n" @@ -18417,7 +18662,7 @@ msgid "" "required: automatic sectioning and pagination, spell checking and so forth." msgstr "" -#: gnu/packages/tex.scm:7430 +#: gnu/packages/tex.scm:7732 msgid "" "The package provides an interface to embed interactive Flash (SWF) and 3D\n" "objects (Adobe U3D & PRC), as well as video and sound files or streams in the\n" @@ -18430,7 +18675,7 @@ msgid "" "specification. It replaces the now obsolete @code{movie15} package." msgstr "" -#: gnu/packages/tex.scm:7470 +#: gnu/packages/tex.scm:7772 msgid "" "This package provides OCG (Optional Content Groups) support within a PDF\n" "document.\n" @@ -18448,7 +18693,7 @@ msgid "" "It also ensures compatibility with the @code{media9} and @code{animate} packages." msgstr "" -#: gnu/packages/tex.scm:7504 +#: gnu/packages/tex.scm:7806 msgid "" "A bundle of LATEX packages by Martin Schröder; the collection comprises:\n" "\n" @@ -18462,7 +18707,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/tex.scm:7532 +#: gnu/packages/tex.scm:7852 msgid "" "The package numprint prints numbers with a separator every three\n" "digits and converts numbers given as 12345.6e789 to 12\\,345,6\\cdot\n" @@ -18483,14 +18728,14 @@ msgid "" "and after the formatted number." msgstr "" -#: gnu/packages/tex.scm:7571 +#: gnu/packages/tex.scm:7893 msgid "" "Provides commands to disable pagebreaking within a given vertical\n" "space. If there is not enough space between the command and the bottom of the\n" "page, a new page will be started." msgstr "" -#: gnu/packages/tex.scm:7597 +#: gnu/packages/tex.scm:7919 msgid "" "The package provides commands to change the page layout in the middle of\n" "a document, and to robustly check for typesetting on odd or even pages.\n" @@ -18498,7 +18743,7 @@ msgid "" "of code from the @code{memoir} class, whose user interface it shares." msgstr "" -#: gnu/packages/tex.scm:7633 +#: gnu/packages/tex.scm:7955 msgid "" "The package is used to change the format of @code{\\today}’s date,\n" "including the weekday, e.g., \"Saturday, 26 June 2008\", the 'UK format', which\n" @@ -18506,7 +18751,7 @@ msgid "" "@code{\\maketitle} of the article class, \"June 26, 2008\", the 'US format'." msgstr "" -#: gnu/packages/tex.scm:7669 +#: gnu/packages/tex.scm:7971 msgid "" "The package provides an @code{\\ul} (underline) command which will break\n" "over line ends; this technique may be used to replace @code{\\em} (both in that\n" @@ -18515,7 +18760,7 @@ msgid "" "striking out (line through words) and crossing out (/// over words)." msgstr "" -#: gnu/packages/tex.scm:7725 +#: gnu/packages/tex.scm:8029 msgid "" "PGF is a macro package for creating graphics. It is platform- and\n" "format-independent and works together with the most important TeX backend\n" @@ -18527,7 +18772,7 @@ msgid "" "produce either PostScript or PDF output." msgstr "" -#: gnu/packages/tex.scm:7771 +#: gnu/packages/tex.scm:8075 msgid "" "The KOMA-Script bundle provides replacements for the article, report, and\n" "book classes with emphasis on typography and versatility. There is also a\n" @@ -18552,7 +18797,7 @@ msgid "" "typearea (which are the main parts of the bundle)." msgstr "" -#: gnu/packages/tex.scm:7806 +#: gnu/packages/tex.scm:8110 msgid "" "This package is a modern reimplementation of package @code{everyshi},\n" "providing various commands to be executed before a @code{\\shipout} command.\n" @@ -18560,20 +18805,20 @@ msgid "" "be used either with LaTeX or with plain TeX." msgstr "" -#: gnu/packages/tex.scm:7826 +#: gnu/packages/tex.scm:8130 msgid "" "This package provides expandable arithmetic operations with big\n" "integers that can exceed TeX's number limits." msgstr "" -#: gnu/packages/tex.scm:7845 +#: gnu/packages/tex.scm:8149 msgid "" "This package defines and implements the data type bit set, a vector\n" "of bits. The size of the vector may grow dynamically. Individual bits\n" "can be manipulated." msgstr "" -#: gnu/packages/tex.scm:7864 +#: gnu/packages/tex.scm:8168 msgid "" "New primitive commands are introduced in e-TeX; sometimes the names\n" "collide with existing macros. This package solves the name clashes by\n" @@ -18581,14 +18826,14 @@ msgid "" "@code{\\unexpanded} is provided as @code{\\etex@@unexpanded}." msgstr "" -#: gnu/packages/tex.scm:7882 +#: gnu/packages/tex.scm:8186 msgid "" "This package provides commands for cleaning up the title string\n" "(such as removing @code{\\label} commands) for packages that typeset such\n" "strings." msgstr "" -#: gnu/packages/tex.scm:7898 +#: gnu/packages/tex.scm:8202 msgid "" "This package provides a complete set of macros for information,\n" "warning and error messages. Under LaTeX, the commands are wrappers for\n" @@ -18596,19 +18841,19 @@ msgid "" "complete implementations." msgstr "" -#: gnu/packages/tex.scm:7915 +#: gnu/packages/tex.scm:8219 msgid "" "This package provides expandable arithmetic operations with integers,\n" "using the e-TeX extension @code{\\numexpr} if it is available." msgstr "" -#: gnu/packages/tex.scm:7930 +#: gnu/packages/tex.scm:8234 msgid "" "This package provides the @code{\\kv@@define@@key} (analogous to\n" "keyval’s @code{\\define@@key}, to define keys for use by @code{kvsetkeys}." msgstr "" -#: gnu/packages/tex.scm:7945 +#: gnu/packages/tex.scm:8249 msgid "" "This package provides @code{\\kvsetkeys}, a variant of @code{\\setkeys}\n" "from the @code{keyval} package. Users can specify a handler that deals with\n" @@ -18616,35 +18861,35 @@ msgid "" "level of curly braces are removed from the values." msgstr "" -#: gnu/packages/tex.scm:7980 +#: gnu/packages/tex.scm:8284 msgid "" "This package allows one to capture all the items of a list, for which\n" "the parsing character has been selected by the user, and to access any of\n" "these items with a simple syntax." msgstr "" -#: gnu/packages/tex.scm:7996 +#: gnu/packages/tex.scm:8300 msgid "" "This package exports some utility macros from the LaTeX kernel into\n" "a separate namespace and also makes them available for other formats such\n" "as plain TeX." msgstr "" -#: gnu/packages/tex.scm:8012 +#: gnu/packages/tex.scm:8316 msgid "" "This package implements pdfTeX's escape features (@code{\\pdfescapehex},\n" "@code{\\pdfunescapehex}, @code{\\pdfescapename}, @code{\\pdfescapestring})\n" "using TeX or e-TeX." msgstr "" -#: gnu/packages/tex.scm:8031 +#: gnu/packages/tex.scm:8335 msgid "" "This package provides a kind of counter that provides unique number\n" "values. Several counters can be created with different names. The numeric\n" "values are not limited." msgstr "" -#: gnu/packages/tex.scm:8067 +#: gnu/packages/tex.scm:8371 msgid "" "This package allows the user to input formatted data into elements of a\n" "2-D or 3-D array and to recall that data at will by individual cell number.\n" @@ -18652,7 +18897,7 @@ msgid "" "formatted text." msgstr "" -#: gnu/packages/tex.scm:8104 +#: gnu/packages/tex.scm:8408 msgid "" "The package provides a @code{verbbox} environment to place its contents\n" "into a globally available box, or into a box specified by the user. The\n" @@ -18662,7 +18907,7 @@ msgid "" "@code{trivlist}) may not appear." msgstr "" -#: gnu/packages/tex.scm:8141 +#: gnu/packages/tex.scm:8445 msgid "" "Examplep provides sophisticated features for typesetting verbatim source\n" "code listings, including the display of the source code and its compiled LaTeX\n" @@ -18675,7 +18920,7 @@ msgid "" "titles." msgstr "" -#: gnu/packages/tex.scm:8178 +#: gnu/packages/tex.scm:8482 msgid "" "This is a package for typesetting a variety of graphs and\n" "diagrams with TeX. Xy-pic works with most formats (including LaTeX,\n" @@ -18683,7 +18928,7 @@ msgid "" "@code{diag} package, which was previously distributed stand-alone." msgstr "" -#: gnu/packages/tex.scm:8218 +#: gnu/packages/tex.scm:8522 msgid "" "BibTeX allows the user to store his citation data in generic form, while\n" "printing citations in a document in the form specified by a BibTeX style, to\n" @@ -18691,7 +18936,7 @@ msgid "" "package, such as @command{natbib} as well)." msgstr "" -#: gnu/packages/tex.scm:8241 +#: gnu/packages/tex.scm:8545 msgid "" "This package provides a copy of the Charter Type-1 fonts\n" "which Bitstream contributed to the X consortium, renamed for use with TeX.\n" @@ -18699,14 +18944,14 @@ msgid "" "@command{psnfss}." msgstr "" -#: gnu/packages/tex.scm:8337 +#: gnu/packages/tex.scm:8641 msgid "" "ConTeXt is a full featured, parameter driven macro package,\n" "which fully supports advanced interactive documents. See the ConTeXt garden\n" "for a wealth of support information." msgstr "" -#: gnu/packages/tex.scm:8362 +#: gnu/packages/tex.scm:8666 msgid "" "The beamer LaTeX class can be used for producing slides.\n" "The class works in both PostScript and direct PDF output modes, using the\n" @@ -18719,7 +18964,7 @@ msgid "" "effects, varying slide transitions and animations." msgstr "" -#: gnu/packages/tex.scm:8394 +#: gnu/packages/tex.scm:8698 msgid "" "The XMP (eXtensible Metadata platform) is a framework to add metadata to\n" "digital material to enhance the workflow in publication. The essence is that\n" @@ -18727,13 +18972,13 @@ msgid "" "the file to which it applies." msgstr "" -#: gnu/packages/tex.scm:8433 +#: gnu/packages/tex.scm:8737 msgid "" "This package helps LaTeX users to create PDF/X, PDF/A and other\n" "standards-compliant PDF documents with pdfTeX, LuaTeX and XeTeX." msgstr "" -#: gnu/packages/tex.scm:8468 +#: gnu/packages/tex.scm:8772 msgid "" "The package provides macros and environments to document\n" "LaTeX packages and classes. It is an (as yet unfinished) alternative to the\n" @@ -18744,7 +18989,7 @@ msgid "" "change." msgstr "" -#: gnu/packages/tex.scm:8496 +#: gnu/packages/tex.scm:8800 msgid "" "PSTricks offers an extensive collection of macros for\n" "generating PostScript that is usable with most TeX macro formats, including\n" @@ -18755,14 +19000,14 @@ msgid "" "or shading the cells of tables." msgstr "" -#: gnu/packages/tex.scm:8521 +#: gnu/packages/tex.scm:8825 msgid "" "Pst-text is a PSTricks based package for plotting text along\n" "a different path and manipulating characters. It includes the functionality\n" "of the old package @code{pst-char}." msgstr "" -#: gnu/packages/tex.scm:8546 +#: gnu/packages/tex.scm:8850 msgid "" "This package provides the command @code{\\marginnote} that\n" "may be used instead of @code{\\marginpar} at almost every place where\n" @@ -18770,7 +19015,7 @@ msgid "" "frames made with the @code{framed} package." msgstr "" -#: gnu/packages/tex.scm:8564 +#: gnu/packages/tex.scm:8868 msgid "" "This package, which works both for Plain TeX and for\n" "LaTeX, defines the @code{\\ifPDFTeX}, @code{\\ifXeTeX}, and @code{\\ifLuaTeX}\n" @@ -18780,7 +19025,19 @@ msgid "" "LuaTeX (respectively) is not the engine in use." msgstr "" -#: gnu/packages/tex.scm:8597 +#: gnu/packages/tex.scm:8914 +msgid "" +"The package provides an environment, tabu, which will make any sort of\n" +"tabular, and an environment longtabu which provides the facilities of tabu in\n" +"a modified longtable environment. The package requires array, xcolor for\n" +"coloured rules in tables, and colortbl for coloured cells. The longtabu\n" +"environment further requires that longtable be loaded. The package itself\n" +"does not load any of these packages for the user. The tabu environment may be\n" +"used in place of @code{tabular}, @code{tabular*} and @code{tabularx}\n" +"environments, as well as the @code{array} environment in maths mode." +msgstr "" + +#: gnu/packages/tex.scm:8945 msgid "" "This package provides a collection of simple tools that\n" "are part of the LaTeX required tools distribution, comprising the packages:\n" @@ -18792,7 +19049,7 @@ msgid "" "@code{varioref}, @code{verbatim}, @code{xr}, and @code{xspace}." msgstr "" -#: gnu/packages/tex.scm:8678 +#: gnu/packages/tex.scm:9026 msgid "" "This package is an extension of the keyval package and offers additional\n" "macros for setting keys and declaring and setting class or package options.\n" @@ -18802,7 +19059,7 @@ msgid "" "keys." msgstr "" -#: gnu/packages/tex.scm:8706 +#: gnu/packages/tex.scm:9054 msgid "" "A class and package is provided which allows TeX pictures or\n" "other TeX code to be compiled standalone or as part of a main document.\n" @@ -18814,7 +19071,7 @@ msgid "" "@code{standalone.cfg} to redefine the standalone environment." msgstr "" -#: gnu/packages/tex.scm:8739 +#: gnu/packages/tex.scm:9087 msgid "" "Typesetting values with units requires care to ensure that the combined\n" "mathematical meaning of the value plus unit combination is clear. In\n" @@ -18830,7 +19087,7 @@ msgid "" "package to handle all of the possible unit-related needs of LaTeX users." msgstr "" -#: gnu/packages/tex.scm:8770 +#: gnu/packages/tex.scm:9118 msgid "" "This package enhances the quality of tables in LaTeX, providing extra\n" "commands as well as behind-the-scenes optimisation. Guidelines are given as\n" @@ -18838,7 +19095,7 @@ msgid "" "@code{longtable} compatibility." msgstr "" -#: gnu/packages/tex.scm:8790 +#: gnu/packages/tex.scm:9138 msgid "" "This package provides advanced facilities for inline and\n" "display quotations. It is designed for a wide range of tasks ranging from the\n" @@ -18852,7 +19109,7 @@ msgid "" "styles as well as the optional active quotes are freely configurable." msgstr "" -#: gnu/packages/tex.scm:8816 +#: gnu/packages/tex.scm:9164 msgid "" "The package helps to automate a typical LaTeX\n" "workflow that involves running LaTeX several times and running tools\n" @@ -18872,7 +19129,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8848 +#: gnu/packages/tex.scm:9196 msgid "" "BibLaTeX is a complete reimplementation of the\n" "bibliographic facilities provided by LaTeX. Formatting of the\n" @@ -18898,7 +19155,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8886 +#: gnu/packages/tex.scm:9234 msgid "" "The @code{todonotes} package lets the user mark\n" "things to do later, in a simple and visually appealing way. The\n" @@ -18906,7 +19163,7 @@ msgid "" "of the visual appearance." msgstr "" -#: gnu/packages/tex.scm:8904 +#: gnu/packages/tex.scm:9252 msgid "" "@code{units} is a package for typesetting physical\n" "units in a standard-looking way. The package is based upon\n" @@ -18914,7 +19171,7 @@ msgid "" "included in the @code{units} bundle." msgstr "" -#: gnu/packages/tex.scm:8922 +#: gnu/packages/tex.scm:9270 msgid "" "@code{microtype} provides a LaTeX interface to the\n" "micro-typographic extensions that were introduced by pdfTeX and have\n" @@ -18929,7 +19186,7 @@ msgid "" "the bundle." msgstr "" -#: gnu/packages/tex.scm:8947 +#: gnu/packages/tex.scm:9295 msgid "" "The @code{caption} package provides many ways to\n" "customise the captions in floating environments like figure and table.\n" @@ -18943,13 +19200,13 @@ msgid "" "@code{subcaption} and @code{totalcount} are included in the bundle." msgstr "" -#: gnu/packages/tex.scm:8976 +#: gnu/packages/tex.scm:9324 msgid "" "This package provides a drop-in replacement for the\n" "Symbol font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:8994 +#: gnu/packages/tex.scm:9342 msgid "" "The Pazo Math fonts are a family of PostScript fonts\n" "suitable for typesetting mathematics in combination with the Palatino\n" @@ -18963,7 +19220,7 @@ msgid "" "LaTeX macro support is provided in package @code{psnfss}." msgstr "" -#: gnu/packages/tex.scm:9019 +#: gnu/packages/tex.scm:9367 msgid "" "The FPL Fonts provide a set of SC/OsF fonts for URW\n" "Palladio L which are compatible with the Palatino SC/OsF fonts from\n" @@ -18971,7 +19228,7 @@ msgid "" "the @code{psnfss} distribution." msgstr "" -#: gnu/packages/tex.scm:9043 +#: gnu/packages/tex.scm:9391 msgid "" "The @code{arev} package provides type 1 fonts,\n" "virtual fonts and LaTeX packages for using Arev Sans in both text and\n" @@ -18985,7 +19242,7 @@ msgid "" "support packages. Others are cmbright, hvmath and kerkis." msgstr "" -#: gnu/packages/tex.scm:9074 +#: gnu/packages/tex.scm:9422 msgid "" "The Math Design project offers free mathematical\n" "fonts that match with existing text fonts. To date, three free font\n" @@ -18996,7 +19253,7 @@ msgid "" "created by the Greek Font Society)." msgstr "" -#: gnu/packages/tex.scm:9099 +#: gnu/packages/tex.scm:9447 msgid "" "The @code{bera} package contains the Bera Type 1\n" "fonts and files to use the fonts with LaTeX. Bera is a set of three\n" @@ -19005,7 +19262,7 @@ msgid "" "a repackaging, for use with TeX, of the Bitstream Vera family." msgstr "" -#: gnu/packages/tex.scm:9122 +#: gnu/packages/tex.scm:9470 msgid "" "Fourier-GUTenberg is a LaTeX typesetting system\n" "which uses Adobe Utopia as its standard base font. Fourier-GUTenberg\n" @@ -19016,7 +19273,7 @@ msgid "" "trademark of Adobe Systems Incorporated." msgstr "" -#: gnu/packages/tex.scm:9145 +#: gnu/packages/tex.scm:9493 msgid "" "The Adobe Standard Encoding set of the Utopia font\n" "family, as contributed to the X Consortium. The set comprises upright\n" @@ -19025,7 +19282,7 @@ msgid "" "@code{mathdesign} font packages." msgstr "" -#: gnu/packages/tex.scm:9169 +#: gnu/packages/tex.scm:9517 msgid "" "The @code{fontaxes} package adds several new font\n" "axes on top of LaTeX's New Font Selection Scheme (NFSS). In\n" @@ -19034,7 +19291,7 @@ msgid "" "figure versions offered by many professional fonts." msgstr "" -#: gnu/packages/tex.scm:9192 +#: gnu/packages/tex.scm:9540 msgid "" "The bundle comprises: @code{authblk}, which permits\n" "footnote style author/affiliation input in the @command{\\author} command,\n" @@ -19044,7 +19301,7 @@ msgid "" "@code{sublabel}, which permits counters to be subnumbered." msgstr "" -#: gnu/packages/tex.scm:9211 +#: gnu/packages/tex.scm:9559 msgid "" "Many font families available for use with LaTeX are\n" "available at multiple weights. Many Type 1-oriented support packages\n" @@ -19055,7 +19312,7 @@ msgid "" "@code{mweights} package provides a solution to these difficulties." msgstr "" -#: gnu/packages/tex.scm:9237 +#: gnu/packages/tex.scm:9585 msgid "" "Cabin is a humanist sans with four weights, true\n" "italics and small capitals. According to its designer, Pablo\n" @@ -19069,7 +19326,7 @@ msgid "" "use with [pdf]LaTeX." msgstr "" -#: gnu/packages/tex.scm:9268 +#: gnu/packages/tex.scm:9616 msgid "" "The @code{newtx} bundle splits\n" "@code{txfonts.sty} (from the TX fonts distribution) into two\n" @@ -19081,7 +19338,7 @@ msgid "" "mathematics package that matches Libertine text quite well." msgstr "" -#: gnu/packages/tex.scm:9296 +#: gnu/packages/tex.scm:9644 msgid "" "@code{xcharter} repackages Bitstream Charter with an\n" "extended set of features. The extension provides small caps, oldstyle\n" @@ -19090,7 +19347,7 @@ msgid "" "Type 1 and OTF formats, with supporting files as necessary." msgstr "" -#: gnu/packages/tex.scm:9320 +#: gnu/packages/tex.scm:9668 msgid "" "The legacy @emph{texnansi} (TeX and ANSI) encoding\n" "is known in the LaTeX scheme of things as @emph{LY1} encoding. The\n" @@ -19099,14 +19356,14 @@ msgid "" "LY1 encoding." msgstr "" -#: gnu/packages/tex.scm:9349 +#: gnu/packages/tex.scm:9697 msgid "" "This is a LaTeX2ε package to help change the style of any or\n" "all of LaTeX's sectional headers in the article, book, or report classes.\n" "Examples include the addition of rules above or below a section title." msgstr "" -#: gnu/packages/tex.scm:9375 +#: gnu/packages/tex.scm:9723 msgid "" "LaTeX can, by default, only cope with 18 outstanding floats;\n" "any more, and you get the error “too many unprocessed floats”. This package\n" @@ -19117,19 +19374,19 @@ msgid "" "floats merely delays the arrival of the inevitable error message." msgstr "" -#: gnu/packages/tex.scm:9408 +#: gnu/packages/tex.scm:9756 msgid "" "This package provides a command for the LaTeX programmer for\n" "testing whether an argument is empty." msgstr "" -#: gnu/packages/tex.scm:9435 +#: gnu/packages/tex.scm:9783 msgid "" "The pagenote package provides tagged notes on a separate\n" "page (also known as ‘end notes’)." msgstr "" -#: gnu/packages/tex.scm:9463 +#: gnu/packages/tex.scm:9811 msgid "" "The @code{titling} package provides control over the\n" "typesetting of the @code{\\maketitle} command and @code{\\thanks} commands,\n" @@ -19139,7 +19396,7 @@ msgid "" "a physical page." msgstr "" -#: gnu/packages/tex.scm:9493 +#: gnu/packages/tex.scm:9841 msgid "" "This package provides an @code{\\ifoddpage} conditional to\n" "determine if the current page is odd or even. The macro @code{\\checkoddpage}\n" @@ -19149,7 +19406,7 @@ msgid "" "@code{oneside} mode where all pages use the odd page layout." msgstr "" -#: gnu/packages/tex.scm:9523 +#: gnu/packages/tex.scm:9871 msgid "" "The package provides \"store boxes\" whose user interface\n" "matches that of normal LaTeX \"save boxes\", except that the content of a\n" @@ -19158,7 +19415,7 @@ msgid "" "DVI is output, store boxes behave the same as save boxes." msgstr "" -#: gnu/packages/tex.scm:9552 +#: gnu/packages/tex.scm:9900 msgid "" "The package provides macros to collect and process a macro\n" "argument (i.e., something which looks like a macro argument) as a horizontal\n" @@ -19171,13 +19428,13 @@ msgid "" "The macros were designed for use within other macros." msgstr "" -#: gnu/packages/tex.scm:9584 +#: gnu/packages/tex.scm:9932 msgid "" "This package provides macros for adding to, and reordering\n" "the list of graphics file extensions recognised by package graphics." msgstr "" -#: gnu/packages/tex.scm:9618 +#: gnu/packages/tex.scm:9966 msgid "" "The package provides several macros to adjust boxed\n" "content. One purpose is to supplement the standard @code{graphics} package,\n" @@ -19190,7 +19447,7 @@ msgid "" "@code{\\minsizebox}, @code{\\maxsizebox} and @code{\\phantombox}." msgstr "" -#: gnu/packages/tex.scm:9644 +#: gnu/packages/tex.scm:9992 msgid "" "This package provides an environment for colored and\n" "framed text boxes with a heading line. Optionally, such a box may be split in\n" @@ -19201,7 +19458,7 @@ msgid "" "parts." msgstr "" -#: gnu/packages/tex.scm:9675 +#: gnu/packages/tex.scm:10023 msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems. The commands allow for writing\n" @@ -19210,13 +19467,13 @@ msgid "" "styles of inference rules, placement of labels, etc." msgstr "" -#: gnu/packages/tex.scm:9704 +#: gnu/packages/tex.scm:10052 msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems." msgstr "" -#: gnu/packages/tex.scm:9724 +#: gnu/packages/tex.scm:10072 msgid "" "This package provides the European currency symbol for the\n" "Euro implemented in METAFONT, using the official European Commission\n" @@ -19225,7 +19482,7 @@ msgid "" "pre-compiled font files, and documentation." msgstr "" -#: gnu/packages/tex.scm:9754 +#: gnu/packages/tex.scm:10102 msgid "" "The @code{kastrup} package provides the\n" "@emph{binhex.tex} file. This file provides expandable macros for both\n" @@ -19235,7 +19492,7 @@ msgid "" "LaTeX and plain TeX." msgstr "" -#: gnu/packages/tex.scm:9774 +#: gnu/packages/tex.scm:10122 msgid "" "This LaTeX package provides a flexible mechanism for translating\n" "individual words into different languages. For example, it can be used to\n" @@ -19246,7 +19503,7 @@ msgid "" "automatically translate more than a few words." msgstr "" -#: gnu/packages/tex.scm:9795 +#: gnu/packages/tex.scm:10143 msgid "" "This package facilitates placing boxes at absolute positions on the\n" "LaTeX page. There are several reasons why this might be useful, but the main\n" @@ -19259,7 +19516,7 @@ msgid "" "accompanied by various configuration commands." msgstr "" -#: gnu/packages/tex.scm:9819 +#: gnu/packages/tex.scm:10167 msgid "" "This package extends the @code{ifthen} package by implementing new\n" "commands to go within the first argument of @code{\\\\ifthenelse}: to test\n" @@ -19269,14 +19526,14 @@ msgid "" "handle complex tests." msgstr "" -#: gnu/packages/tex.scm:9852 +#: gnu/packages/tex.scm:10200 msgid "" "BibTool manipulates BibTeX files. The possibilities of BibTool include\n" "sorting and merging of BibTeX databases, generation of uniform reference keys,\n" "and selecting references used in a publication." msgstr "" -#: gnu/packages/texinfo.scm:87 +#: gnu/packages/texinfo.scm:88 msgid "" "Texinfo is the official documentation format of the GNU project. It\n" "uses a single source file using explicit commands to produce a final document\n" @@ -19286,7 +19543,7 @@ msgid "" "is on expressing the content semantically, avoiding physical markup commands." msgstr "" -#: gnu/packages/texinfo.scm:216 +#: gnu/packages/texinfo.scm:230 msgid "" "Texi2HTML is a Perl script which converts Texinfo source files to HTML\n" "output. It now supports many advanced features, such as internationalization\n" @@ -19301,7 +19558,7 @@ msgid "" "Texi2HTML." msgstr "" -#: gnu/packages/texinfo.scm:283 +#: gnu/packages/texinfo.scm:297 msgid "" "Pinfo is an Info file viewer. Pinfo is similar in use to the Lynx web\n" "browser. You just move across info nodes, and select links, follow them, etc.\n" @@ -19660,6 +19917,12 @@ msgstr "" #: gnu/packages/textutils.scm:1406 msgid "" +"@code{utf-8-lineseparator} provides a tool to efficiently check text\n" +"files for valid UTF-8 use and to report which line endings they use." +msgstr "" + +#: gnu/packages/textutils.scm:1439 +msgid "" "@code{csvdiff} is a diff tool to compute changes between two\n" "CSV files. It can compare CSV files with a million records in under 2\n" "seconds. It is specifically suited for comparing CSV files dumped from\n" @@ -19861,27 +20124,27 @@ msgid "" "visualize your public Git repositories on a web interface." msgstr "" -#: gnu/packages/version-control.scm:1706 +#: gnu/packages/version-control.scm:1699 msgid "" "Pre-commit is a multi-language package manager for pre-commit hooks. You\n" "specify a list of hooks you want and pre-commit manages the installation and\n" "execution of any hook written in any language before every commit." msgstr "" -#: gnu/packages/version-control.scm:1796 +#: gnu/packages/version-control.scm:1789 msgid "" "Mercurial is a free, distributed source control management tool. It\n" "efficiently handles projects of any size and offers an easy and intuitive\n" "interface." msgstr "" -#: gnu/packages/version-control.scm:1823 +#: gnu/packages/version-control.scm:1816 msgid "" "Evolve is a Mercurial extension for faster and safer mutable\n" "history. It implements the changeset evolution concept for Mercurial." msgstr "" -#: gnu/packages/version-control.scm:1879 +#: gnu/packages/version-control.scm:1872 msgid "" "This package provides a Mercurial extension for signing\n" "the changeset hash of commits. The signure is embedded directly in the\n" @@ -19889,7 +20152,7 @@ msgid "" "can be used for signing." msgstr "" -#: gnu/packages/version-control.scm:1914 +#: gnu/packages/version-control.scm:1907 msgid "" "Neon is an HTTP and WebDAV client library, with a C interface and the\n" "following features:\n" @@ -19911,7 +20174,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/version-control.scm:2010 +#: gnu/packages/version-control.scm:2003 msgid "" "@dfn{Subversion} (svn) exists to be recognized and adopted as a\n" "centralized version control system characterized by its\n" @@ -19920,7 +20183,7 @@ msgid "" "projects, from individuals to large-scale enterprise operations." msgstr "" -#: gnu/packages/version-control.scm:2044 +#: gnu/packages/version-control.scm:2037 msgid "" "RCS is the original Revision Control System. It works on a\n" "file-by-file basis, in contrast to subsequent version control systems such as\n" @@ -19929,21 +20192,21 @@ msgid "" "machine." msgstr "" -#: gnu/packages/version-control.scm:2067 +#: gnu/packages/version-control.scm:2060 msgid "" "@code{blame} outputs an annotated revision from each RCS file. An\n" "annotated RCS file describes the revision and date in which each line was\n" "added to the file, and the author of each line." msgstr "" -#: gnu/packages/version-control.scm:2088 +#: gnu/packages/version-control.scm:2081 msgid "" "The @code{rcshist} utility displays the complete revision history of a\n" "set of RCS files including log messages and patches. It can also display the\n" "patch associated with a particular revision of an RCS file." msgstr "" -#: gnu/packages/version-control.scm:2116 +#: gnu/packages/version-control.scm:2109 msgid "" "CVS is a version control system, an important component of Source\n" "Configuration Management (SCM). Using it, you can record the history of\n" @@ -19951,7 +20214,7 @@ msgid "" "RCS, PRCS, and Aegis packages." msgstr "" -#: gnu/packages/version-control.scm:2150 +#: gnu/packages/version-control.scm:2143 msgid "" "This program analyzes a collection of RCS files in a CVS\n" "repository (or outside of one) and, when possible, emits an equivalent history\n" @@ -19964,7 +20227,7 @@ msgid "" "masters from remote CVS hosts." msgstr "" -#: gnu/packages/version-control.scm:2180 +#: gnu/packages/version-control.scm:2173 msgid "" "The vc-dwim package contains two tools, \"vc-dwim\" and \"vc-chlog\".\n" "vc-dwim is a tool that simplifies the task of maintaining a ChangeLog and\n" @@ -19974,21 +20237,21 @@ msgid "" "standards-compliant ChangeLog entries based on the changes that it detects." msgstr "" -#: gnu/packages/version-control.scm:2207 +#: gnu/packages/version-control.scm:2200 msgid "" "Diffstat reads the output of @command{diff} and displays a histogram of\n" "the insertions, deletions, and modifications per file. It is useful for\n" "reviewing large, complex patch files." msgstr "" -#: gnu/packages/version-control.scm:2246 +#: gnu/packages/version-control.scm:2239 msgid "" "GNU CSSC provides a replacement for the legacy Unix source\n" "code control system SCCS. This allows old code still under that system to be\n" "accessed and migrated on modern systems." msgstr "" -#: gnu/packages/version-control.scm:2338 +#: gnu/packages/version-control.scm:2331 msgid "" "Aegis is a project change supervisor, and performs some of\n" "the Software Configuration Management needed in a CASE environment. Aegis\n" @@ -19999,7 +20262,7 @@ msgid "" "any project with more than one developer, is one of Aegis's major functions." msgstr "" -#: gnu/packages/version-control.scm:2412 +#: gnu/packages/version-control.scm:2405 msgid "" "Reposurgeon enables risky operations that version-control\n" "systems don't want to let you do, such as editing past comments and metadata\n" @@ -20010,20 +20273,20 @@ msgid "" "from Subversion to any supported Distributed Version Control System (DVCS)." msgstr "" -#: gnu/packages/version-control.scm:2451 +#: gnu/packages/version-control.scm:2444 msgid "" "Tig is an ncurses text user interface for Git, primarily intended as\n" "a history browser. It can also stage hunks for commit, or colorize the\n" "output of the @code{git} command." msgstr "" -#: gnu/packages/version-control.scm:2474 +#: gnu/packages/version-control.scm:2467 msgid "" "Recursively find the newest file in a file tree and print its\n" "modification time." msgstr "" -#: gnu/packages/version-control.scm:2521 +#: gnu/packages/version-control.scm:2514 msgid "" "Myrepos provides the @code{mr} command, which maps an operation (e.g.,\n" "fetching updates) over a collection of version control repositories. It\n" @@ -20031,14 +20294,14 @@ msgid "" "Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity." msgstr "" -#: gnu/packages/version-control.scm:2558 +#: gnu/packages/version-control.scm:2551 msgid "" "Grokmirror enables replicating large git repository\n" "collections efficiently. Mirrors decide to clone and update repositories\n" "based on a manifest file published by servers." msgstr "" -#: gnu/packages/version-control.scm:2588 +#: gnu/packages/version-control.scm:2581 msgid "" "The @code{b4} command is designed to make it easier to participate in\n" "patch-based workflows for projects that have public-inbox archives.\n" @@ -20052,26 +20315,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/version-control.scm:2635 +#: gnu/packages/version-control.scm:2628 msgid "" "This wrapper around rclone makes any destination supported\n" "by rclone usable with git-annex." msgstr "" -#: gnu/packages/version-control.scm:2689 +#: gnu/packages/version-control.scm:2682 msgid "" "Fossil is a distributed source control management system which supports\n" "access and administration over HTTP CGI or via a built-in HTTP server. It has\n" "a built-in wiki, built-in file browsing, built-in tickets system, etc." msgstr "" -#: gnu/packages/version-control.scm:2720 +#: gnu/packages/version-control.scm:2713 msgid "" "Stagit creates static pages for git repositories, the results can\n" "be served with a HTTP file server of your choice." msgstr "" -#: gnu/packages/version-control.scm:2756 +#: gnu/packages/version-control.scm:2749 msgid "" "@code{gource} provides a software version control\n" "visualization. The repository is displayed as a tree where the root of the\n" @@ -20080,7 +20343,7 @@ msgid "" "specific files and directories." msgstr "" -#: gnu/packages/version-control.scm:2804 +#: gnu/packages/version-control.scm:2797 #, scheme-format msgid "" "SRC (or src) is simple revision control, a version-control system for\n" @@ -20090,7 +20353,7 @@ msgid "" "directory full of HOWTOs." msgstr "" -#: gnu/packages/version-control.scm:2856 +#: gnu/packages/version-control.scm:2849 msgid "" "This Git extension defines a subcommand,\n" "@code{when-merged}, whose core operation is to find the merge that brought a\n" @@ -20098,7 +20361,7 @@ msgid "" "how information about the merge is displayed." msgstr "" -#: gnu/packages/version-control.scm:2900 +#: gnu/packages/version-control.scm:2893 msgid "" "This Git extension defines a subcommand, @code{imerge},\n" "which performs an incremental merge between two branches. Its two primary\n" @@ -20107,20 +20370,20 @@ msgid "" "interrupted, published, and collaborated on while in progress." msgstr "" -#: gnu/packages/version-control.scm:2951 +#: gnu/packages/version-control.scm:2944 msgid "" "Git Large File Storage (LFS) replaces large files such as audio samples,\n" "videos, datasets, and graphics with text pointers inside Git, while storing the\n" "file contents on a remote server." msgstr "" -#: gnu/packages/version-control.scm:2986 +#: gnu/packages/version-control.scm:2979 msgid "" "@code{git open} opens the repository's website from the command-line,\n" "guessing the URL pattern from the @code{origin} remote." msgstr "" -#: gnu/packages/version-control.scm:3040 +#: gnu/packages/version-control.scm:3033 msgid "" "GNU Arch, aka. @code{tla}, was one of the first free distributed\n" "version-control systems (DVCS). It saw its last release in 2006. This\n" @@ -20128,18 +20391,18 @@ msgid "" "for historians." msgstr "" -#: gnu/packages/version-control.scm:3086 +#: gnu/packages/version-control.scm:3079 msgid "" "@code{diff-so-fancy} strives to make your diffs human readable instead\n" "of machine readable. This helps improve code quality and helps you spot\n" "defects faster." msgstr "" -#: gnu/packages/version-control.scm:3142 +#: gnu/packages/version-control.scm:3135 msgid "This package provides a Git implementation library." msgstr "" -#: gnu/packages/version-control.scm:3192 +#: gnu/packages/version-control.scm:3185 msgid "" "This package provides a command-line tool to manage\n" "multiple Git repos.\n" @@ -20154,7 +20417,7 @@ msgid "" "If several repos are related, it helps to see their status together." msgstr "" -#: gnu/packages/version-control.scm:3250 +#: gnu/packages/version-control.scm:3243 #, scheme-format msgid "" "@code{ghq} provides a way to organize remote repository clones, like\n" @@ -20163,7 +20426,7 @@ msgid "" "using the remote repository URL's host and path." msgstr "" -#: gnu/packages/version-control.scm:3295 +#: gnu/packages/version-control.scm:3288 msgid "" "TkRev (formerly TkCVS) is a Tcl/Tk-based graphical interface to the CVS,\n" "Subversion and Git configuration management systems. It will also help with\n" @@ -20172,7 +20435,7 @@ msgid "" "TkDiff is included for browsing and merging your changes." msgstr "" -#: gnu/packages/version-control.scm:3328 +#: gnu/packages/version-control.scm:3321 msgid "" "@command{git filter-repo} is a versatile tool for rewriting history,\n" "which roughly falls into the same space of tool like git filter-branch but\n" @@ -20210,7 +20473,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:865 +#: gnu/packages/virtualization.scm:870 msgid "" "Ganeti is a virtual machine management tool built on top of existing\n" "virtualization technologies such as Xen or KVM. Ganeti controls:\n" @@ -20227,19 +20490,19 @@ msgid "" "commodity hardware." msgstr "" -#: gnu/packages/virtualization.scm:902 +#: gnu/packages/virtualization.scm:907 msgid "" "This package provides a guest OS definition for Ganeti that uses\n" "Guix to build virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:996 +#: gnu/packages/virtualization.scm:1001 msgid "" "This package provides a guest OS definition for Ganeti. It installs\n" "Debian or a derivative using @command{debootstrap}." msgstr "" -#: gnu/packages/virtualization.scm:1056 +#: gnu/packages/virtualization.scm:1061 msgid "" "libosinfo is a GObject based library API for managing\n" "information about operating systems, hypervisors and the (virtual) hardware\n" @@ -20249,21 +20512,21 @@ msgid "" "all common programming languages. Vala bindings are also provided." msgstr "" -#: gnu/packages/virtualization.scm:1105 +#: gnu/packages/virtualization.scm:1109 msgid "" "LXC is a userspace interface for the Linux kernel containment features.\n" "Through a powerful API and simple tools, it lets Linux users easily create and\n" "manage system or application containers." msgstr "" -#: gnu/packages/virtualization.scm:1131 +#: gnu/packages/virtualization.scm:1135 msgid "" "LXCFS is a small FUSE file system written with the intention\n" "of making Linux containers feel more like a virtual machine.\n" "It started as a side project of LXC but can be used by any run-time." msgstr "" -#: gnu/packages/virtualization.scm:1239 +#: gnu/packages/virtualization.scm:1237 msgid "" "LXD is a next generation system container manager. It\n" "offers a user experience similar to virtual machines but using Linux\n" @@ -20272,7 +20535,7 @@ msgid "" "pretty simple, REST API." msgstr "" -#: gnu/packages/virtualization.scm:1332 +#: gnu/packages/virtualization.scm:1330 msgid "" "Libvirt is a C toolkit to interact with the virtualization\n" "capabilities of recent versions of Linux. The library aims at providing long\n" @@ -20280,7 +20543,7 @@ msgid "" "to integrate other virtualization mechanisms if needed." msgstr "" -#: gnu/packages/virtualization.scm:1363 +#: gnu/packages/virtualization.scm:1359 msgid "" "libvirt-glib wraps the libvirt library to provide a\n" "high-level object-oriented API better suited for glib-based applications, via\n" @@ -20293,13 +20556,13 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/virtualization.scm:1407 +#: gnu/packages/virtualization.scm:1403 msgid "" "This package provides Python bindings to the libvirt\n" "virtualization library." msgstr "" -#: gnu/packages/virtualization.scm:1520 +#: gnu/packages/virtualization.scm:1516 msgid "" "The virt-manager application is a desktop user interface for managing\n" "virtual machines through libvirt. It primarily targets KVM VMs, but also\n" @@ -20307,7 +20570,7 @@ msgid "" "domains, their live performance and resource utilization statistics." msgstr "" -#: gnu/packages/virtualization.scm:1620 +#: gnu/packages/virtualization.scm:1616 msgid "" "Using this tool, you can freeze a running application (or\n" "part of it) and checkpoint it to a hard drive as a collection of files. You\n" @@ -20316,14 +20579,14 @@ msgid "" "mainly implemented in user space." msgstr "" -#: gnu/packages/virtualization.scm:1647 +#: gnu/packages/virtualization.scm:1643 msgid "" "qmpbackup is designed to create and restore full and\n" "incremental backups of running QEMU virtual machines via QMP, the QEMU\n" "Machine Protocol." msgstr "" -#: gnu/packages/virtualization.scm:1731 +#: gnu/packages/virtualization.scm:1727 msgid "" "Looking Glass allows the use of a KVM (Kernel-based Virtual\n" "Machine) configured for VGA PCI Pass-through without an attached physical\n" @@ -20331,7 +20594,7 @@ msgid "" "main monitor/GPU." msgstr "" -#: gnu/packages/virtualization.scm:1783 +#: gnu/packages/virtualization.scm:1779 msgid "" "@command{runc} is a command line client for running applications\n" "packaged according to the\n" @@ -20340,13 +20603,13 @@ msgid "" "Open Container Initiative specification." msgstr "" -#: gnu/packages/virtualization.scm:1832 +#: gnu/packages/virtualization.scm:1828 msgid "" "@command{umoci} is a tool that allows for high-level modification of an\n" "Open Container Initiative (OCI) image layout and its tagged images." msgstr "" -#: gnu/packages/virtualization.scm:1886 +#: gnu/packages/virtualization.scm:1882 msgid "" "@command{skopeo} is a command line utility providing various operations\n" "with container images and container image registries. It can:\n" @@ -20367,14 +20630,14 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:1922 +#: gnu/packages/virtualization.scm:1918 msgid "" "Python-vagrant is a Python module that provides a thin wrapper around the\n" "@code{vagrant} command line executable, allowing programmatic control of Vagrant\n" "virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:1977 +#: gnu/packages/virtualization.scm:1979 msgid "" "Bubblewrap is aimed at running applications in a sandbox,\n" "restricting their access to parts of the operating system or user data such as\n" @@ -20384,7 +20647,7 @@ msgid "" "by default and can be made read-only." msgstr "" -#: gnu/packages/virtualization.scm:2004 +#: gnu/packages/virtualization.scm:2006 msgid "" "Bochs is an emulator which can emulate Intel x86 CPU, common I/O\n" "devices, and a custom BIOS. It can also be compiled to emulate many different\n" @@ -20393,64 +20656,67 @@ msgid "" "DOS or Microsoft Windows." msgstr "" -#: gnu/packages/virtualization.scm:2210 +#: gnu/packages/virtualization.scm:2212 msgid "" "This package provides the Xen Virtual Machine Monitor\n" "which is a hypervisor." msgstr "" -#: gnu/packages/virtualization.scm:2242 +#: gnu/packages/virtualization.scm:2244 msgid "" "This package contains a set of tools to assist\n" "administrators and developers in managing the database." msgstr "" -#: gnu/packages/virtualization.scm:2275 +#: gnu/packages/virtualization.scm:2277 msgid "" "Osinfo-db provides the database files for use with the\n" "libosinfo library. It provides information about guest operating systems for\n" "use with virtualization provisioning tools" msgstr "" -#: gnu/packages/virtualization.scm:2317 +#: gnu/packages/virtualization.scm:2319 msgid "" "@code{transient} is a wrapper for QEMU allowing the creation of virtual\n" "machines with shared folder, ssh, and disk creation support." msgstr "" -#: gnu/packages/webkit.scm:93 +#: gnu/packages/webkit.scm:94 msgid "" "LibWPE is general-purpose library specifically developed for\n" "the WPE-flavored port of WebKit." msgstr "" -#: gnu/packages/webkit.scm:119 +#: gnu/packages/webkit.scm:120 msgid "" "This package provides a backend implementation for the WPE WebKit\n" "engine that uses Wayland for graphics output." msgstr "" -#: gnu/packages/webkit.scm:216 +#: gnu/packages/webkit.scm:227 msgid "" "WPE WebKit allows embedders to create simple and performant\n" "systems based on Web platform technologies. It is designed with hardware\n" "acceleration in mind, leveraging common 3D graphics APIs for best performance." msgstr "" -#: gnu/packages/webkit.scm:351 +#: gnu/packages/webkit.scm:355 msgid "" "WebKitGTK+ is a full-featured port of the WebKit rendering engine,\n" "suitable for projects requiring any kind of web integration, from hybrid\n" -"HTML/CSS applications to full-fledged web browsers." +"HTML/CSS applications to full-fledged web browsers. WebKitGTK+ video playing\n" +"capabilities can be extended through the use of GStreamer plugins (not\n" +"propagated by default) such as @code{gst-plugins-good} and\n" +"@code{gst-plugins-bad}." msgstr "" -#: gnu/packages/web.scm:250 +#: gnu/packages/web.scm:251 msgid "" "Qhttp is a light-weight and asynchronous HTTP library\n" "(both server & client) in Qt5 and C++14." msgstr "" -#: gnu/packages/web.scm:280 +#: gnu/packages/web.scm:281 msgid "" "The Apache HTTP Server Project is a collaborative software development\n" "effort aimed at creating a robust, commercial-grade, featureful, and\n" @@ -20460,14 +20726,14 @@ msgid "" "and its related documentation." msgstr "" -#: gnu/packages/web.scm:314 +#: gnu/packages/web.scm:315 msgid "" "The mod_wsgi module for the Apache HTTPD Server adds support for running\n" "applications that support the Python @acronym{WSGI, Web Server Gateway\n" "Interface} specification." msgstr "" -#: gnu/packages/web.scm:356 +#: gnu/packages/web.scm:357 msgid "" "Monolith bundles any web page into a single HTML file.\n" "\n" @@ -20480,38 +20746,38 @@ msgid "" "the same, being completely separated from the Internet." msgstr "" -#: gnu/packages/web.scm:460 +#: gnu/packages/web.scm:461 msgid "" "Nginx (\"engine X\") is a high-performance web and reverse proxy server\n" "created by Igor Sysoev. It can be used both as a stand-alone web server\n" "and as a proxy to reduce the load on back-end HTTP or mail servers." msgstr "" -#: gnu/packages/web.scm:518 +#: gnu/packages/web.scm:519 msgid "This package provides HTML documentation for the nginx web server." msgstr "" -#: gnu/packages/web.scm:647 +#: gnu/packages/web.scm:648 msgid "" "This nginx module parses the Accept-Language field in HTTP headers and\n" "chooses the most suitable locale for the user from the list of locales\n" "supported at your website." msgstr "" -#: gnu/packages/web.scm:694 +#: gnu/packages/web.scm:695 msgid "" "XSLScript is a terse notation for writing complex XSLT stylesheets.\n" "This is modified version, specifically intended for use with the NGinx\n" "documentation." msgstr "" -#: gnu/packages/web.scm:767 +#: gnu/packages/web.scm:768 msgid "" "This NGINX module provides a scripting support with Lua\n" "programming language." msgstr "" -#: gnu/packages/web.scm:820 +#: gnu/packages/web.scm:821 msgid "" "This NGINX module provides streaming with the @acronym{RTMP,\n" "Real-Time Messaging Protocol}, @acronym{DASH, Dynamic Adaptive Streaming over HTTP},\n" @@ -20521,7 +20787,7 @@ msgid "" "stream. Remote control of the module is possible over HTTP." msgstr "" -#: gnu/packages/web.scm:882 +#: gnu/packages/web.scm:883 msgid "" "Lighttpd is a secure, fast, compliant, and very flexible web-server that\n" "has been optimized for high-performance environments. It has a very low\n" @@ -20529,41 +20795,41 @@ msgid "" "CGI, authentication, output compression, URL rewriting and many more." msgstr "" -#: gnu/packages/web.scm:910 +#: gnu/packages/web.scm:911 msgid "" "FastCGI is a language-independent, scalable extension to CGI\n" "that provides high performance without the limitations of server specific\n" "APIs." msgstr "" -#: gnu/packages/web.scm:948 +#: gnu/packages/web.scm:949 msgid "" "Fcgiwrap is a simple server for running CGI applications\n" "over FastCGI. It hopes to provide clean CGI support to Nginx (and other web\n" "servers that may need it)." msgstr "" -#: gnu/packages/web.scm:977 +#: gnu/packages/web.scm:978 msgid "" "Starman is a PSGI perl web server that has unique features\n" "such as high performance, preforking, signal support, superdaemon awareness,\n" "and UNIX socket support." msgstr "" -#: gnu/packages/web.scm:1010 +#: gnu/packages/web.scm:1011 msgid "" "IcedTea-Web is an implementation of the @dfn{Java Network Launching\n" "Protocol}, also known as Java Web Start. This package provides tools and\n" "libraries for working with JNLP applets." msgstr "" -#: gnu/packages/web.scm:1035 +#: gnu/packages/web.scm:1036 msgid "" "Jansson is a C library for encoding, decoding and manipulating JSON\n" "data." msgstr "" -#: gnu/packages/web.scm:1055 +#: gnu/packages/web.scm:1056 msgid "" "JSON-C implements a reference counting object model that allows you to\n" "easily construct JSON objects in C, output them as JSON-formatted strings and\n" @@ -20571,7 +20837,7 @@ msgid "" "It aims to conform to RFC 7159." msgstr "" -#: gnu/packages/web.scm:1131 +#: gnu/packages/web.scm:1132 msgid "" "This package provides a very low footprint JSON parser\n" "written in portable ANSI C.\n" @@ -20584,21 +20850,21 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:1176 +#: gnu/packages/web.scm:1177 msgid "" "QJson is a Qt-based library that maps JSON data to\n" "@code{QVariant} objects. JSON arrays will be mapped to @code{QVariantList}\n" "instances, while JSON's objects will be mapped to @code{QVariantMap}." msgstr "" -#: gnu/packages/web.scm:1227 +#: gnu/packages/web.scm:1228 msgid "" "QOAuth is an attempt to support interaction with\n" "OAuth-powered network services in a Qt way, i.e. simply, clearly and\n" "efficiently. It gives the application developer no more than 4 methods." msgstr "" -#: gnu/packages/web.scm:1339 +#: gnu/packages/web.scm:1340 msgid "" "Krona is a flexible tool for exploring the relative proportions of\n" "hierarchical data, such as metagenomic classifications, using a radial,\n" @@ -20607,26 +20873,26 @@ msgid "" "current version of any major web browser." msgstr "" -#: gnu/packages/web.scm:1380 +#: gnu/packages/web.scm:1381 msgid "" "RapidJSON is a fast JSON parser/generator for C++ with both SAX/DOM\n" "style API." msgstr "" -#: gnu/packages/web.scm:1409 +#: gnu/packages/web.scm:1410 msgid "" "Yet Another JSON Library (YAJL) is a small event-driven (SAX-style) JSON\n" "parser written in ANSI C and a small validating JSON generator." msgstr "" -#: gnu/packages/web.scm:1439 +#: gnu/packages/web.scm:1440 msgid "" "Libwebsockets is a library that allows C programs to establish client\n" "and server WebSockets connections---a protocol layered above HTTP that allows\n" "for efficient socket-like bidirectional reliable communication channels." msgstr "" -#: gnu/packages/web.scm:1468 +#: gnu/packages/web.scm:1469 msgid "" "WABT (pronounced: wabbit) is a suite of tools for\n" "WebAssembly, including:\n" @@ -20651,7 +20917,7 @@ msgid "" "other systems that want to manipulate WebAssembly files." msgstr "" -#: gnu/packages/web.scm:1518 +#: gnu/packages/web.scm:1519 msgid "" "WebSocket++ is a C++ library that can be used to implement\n" "WebSocket functionality. The goals of the project are to provide a WebSocket\n" @@ -20659,7 +20925,7 @@ msgid "" "high performance." msgstr "" -#: gnu/packages/web.scm:1558 +#: gnu/packages/web.scm:1559 msgid "" "@code{Wslay} is an event-based C library for the WebSocket\n" "protocol version 13, described in RFC 6455. Besides a high-level API it\n" @@ -20668,7 +20934,7 @@ msgid "" "perform the opening handshake in HTTP." msgstr "" -#: gnu/packages/web.scm:1588 +#: gnu/packages/web.scm:1589 msgid "" "A \"public suffix\" is a domain name under which Internet users can\n" "directly register own names.\n" @@ -20686,20 +20952,20 @@ msgid "" "UTS#46." msgstr "" -#: gnu/packages/web.scm:1633 +#: gnu/packages/web.scm:1634 msgid "" "HTML Tidy is a command-line tool and C library that can be\n" "used to validate and fix HTML data." msgstr "" -#: gnu/packages/web.scm:1680 +#: gnu/packages/web.scm:1681 msgid "" "The esbuild tool provides a unified bundler, transpiler and\n" "minifier. It packages up JavaScript and TypeScript code, along with JSON\n" "and other data, for distribution on the web." msgstr "" -#: gnu/packages/web.scm:1716 +#: gnu/packages/web.scm:1717 msgid "" "Tinyproxy is a light-weight HTTP/HTTPS proxy\n" "daemon. Designed from the ground up to be fast and yet small, it is an ideal\n" @@ -20708,14 +20974,14 @@ msgid "" "unavailable." msgstr "" -#: gnu/packages/web.scm:1751 +#: gnu/packages/web.scm:1752 msgid "" "Polipo is a small caching web proxy (web cache, HTTP proxy, and proxy\n" "server). It was primarily designed to be used by one person or a small group\n" "of people." msgstr "" -#: gnu/packages/web.scm:1779 +#: gnu/packages/web.scm:1780 msgid "" "Websockify translates WebSockets traffic to normal socket\n" "traffic. Websockify accepts the WebSockets handshake, parses it, and then\n" @@ -20723,7 +20989,7 @@ msgid "" "directions." msgstr "" -#: gnu/packages/web.scm:1806 +#: gnu/packages/web.scm:1807 msgid "" "WWWOFFLE is a proxy web server that is especially good for\n" "intermittent internet links. It can cache HTTP, HTTPS, FTP, and finger\n" @@ -20732,7 +20998,7 @@ msgid "" "changes, and much more." msgstr "" -#: gnu/packages/web.scm:1832 +#: gnu/packages/web.scm:1833 msgid "" "liboauth is a collection of C functions implementing the OAuth API.\n" "liboauth provides functions to escape and encode strings according to OAuth\n" @@ -20741,25 +21007,25 @@ msgid "" "hash/signatures." msgstr "" -#: gnu/packages/web.scm:1855 +#: gnu/packages/web.scm:1856 msgid "" "This package contains support scripts called by libquvi to\n" "parse media stream properties." msgstr "" -#: gnu/packages/web.scm:1889 +#: gnu/packages/web.scm:1890 msgid "" "libquvi is a library with a C API for parsing media stream\n" "URLs and extracting their actual media files." msgstr "" -#: gnu/packages/web.scm:1911 +#: gnu/packages/web.scm:1912 msgid "" "quvi is a command-line-tool suite to extract media files\n" "from streaming URLs. It is a command-line wrapper for the libquvi library." msgstr "" -#: gnu/packages/web.scm:1983 +#: gnu/packages/web.scm:1984 msgid "" "serf is a C-based HTTP client library built upon the Apache Portable\n" "Runtime (APR) library. It multiplexes connections, running the read/write\n" @@ -20767,7 +21033,7 @@ msgid "" "minimum to provide high performance operation." msgstr "" -#: gnu/packages/web.scm:2018 +#: gnu/packages/web.scm:2019 msgid "" "LibSass is a @acronym{SASS,Syntactically awesome style sheets} compiler\n" "library designed for portability and efficiency. To actually compile SASS\n" @@ -20775,29 +21041,29 @@ msgid "" "@var{sassc} for example." msgstr "" -#: gnu/packages/web.scm:2067 +#: gnu/packages/web.scm:2068 msgid "" "SassC is a compiler written in C for the CSS pre-processor\n" "language known as SASS." msgstr "" -#: gnu/packages/web.scm:2112 +#: gnu/packages/web.scm:2113 msgid "" "This module provides methods to compile a log format string\n" "to perl-code, for faster generation of access_log lines." msgstr "" -#: gnu/packages/web.scm:2140 +#: gnu/packages/web.scm:2141 msgid "Authen::SASL provides an SASL authentication framework." msgstr "" -#: gnu/packages/web.scm:2163 +#: gnu/packages/web.scm:2164 msgid "" "This Catalyst action implements a sensible default end\n" "action, which will forward to the first available view." msgstr "" -#: gnu/packages/web.scm:2195 +#: gnu/packages/web.scm:2196 msgid "" "This Action handles doing automatic method dispatching for\n" "REST requests. It takes a normal Catalyst action, and changes the dispatch to\n" @@ -20806,20 +21072,20 @@ msgid "" "regular method." msgstr "" -#: gnu/packages/web.scm:2226 +#: gnu/packages/web.scm:2227 msgid "" "The Catalyst::Authentication::Store::DBIx::Class class\n" "provides access to authentication information stored in a database via\n" "DBIx::Class." msgstr "" -#: gnu/packages/web.scm:2252 +#: gnu/packages/web.scm:2253 msgid "" "Catalyst::Component::InstancePerContext returns a new\n" "instance of a component on each request." msgstr "" -#: gnu/packages/web.scm:2288 +#: gnu/packages/web.scm:2289 msgid "" "The Catalyst-Devel distribution includes a variety of\n" "modules useful for the development of Catalyst applications, but not required\n" @@ -20829,7 +21095,7 @@ msgid "" "modules." msgstr "" -#: gnu/packages/web.scm:2316 +#: gnu/packages/web.scm:2317 msgid "" "Dispatch type managing path-matching behaviour using\n" "regexes. Regex dispatch types have been deprecated and removed from Catalyst\n" @@ -20839,20 +21105,20 @@ msgid "" "when the dispatch type is first seen in your application." msgstr "" -#: gnu/packages/web.scm:2363 +#: gnu/packages/web.scm:2364 msgid "" "This is a Catalyst Model for DBIx::Class::Schema-based\n" "Models." msgstr "" -#: gnu/packages/web.scm:2385 +#: gnu/packages/web.scm:2386 msgid "" "This Catalyst plugin enables you to create \"access logs\"\n" "from within a Catalyst application instead of requiring a webserver to do it\n" "for you. It will work even with Catalyst debug logging turned off." msgstr "" -#: gnu/packages/web.scm:2419 +#: gnu/packages/web.scm:2420 msgid "" "The authentication plugin provides generic user support for\n" "Catalyst apps. It is the basis for both authentication (checking the user is\n" @@ -20860,32 +21126,32 @@ msgid "" "system authorises them to do)." msgstr "" -#: gnu/packages/web.scm:2447 +#: gnu/packages/web.scm:2448 msgid "" "Catalyst::Plugin::Authorization::Roles provides role-based\n" "authorization for Catalyst based on Catalyst::Plugin::Authentication." msgstr "" -#: gnu/packages/web.scm:2469 +#: gnu/packages/web.scm:2470 msgid "" "This plugin creates and validates Captcha images for\n" "Catalyst." msgstr "" -#: gnu/packages/web.scm:2493 +#: gnu/packages/web.scm:2494 msgid "" "This module will attempt to load find and load configuration\n" "files of various types. Currently it supports YAML, JSON, XML, INI and Perl\n" "formats." msgstr "" -#: gnu/packages/web.scm:2522 +#: gnu/packages/web.scm:2523 msgid "" "This plugin links the two pieces required for session\n" "management in web applications together: the state, and the store." msgstr "" -#: gnu/packages/web.scm:2548 +#: gnu/packages/web.scm:2549 msgid "" "In order for Catalyst::Plugin::Session to work, the session\n" "ID needs to be stored on the client, and the session data needs to be stored\n" @@ -20893,14 +21159,14 @@ msgid "" "cookie mechanism." msgstr "" -#: gnu/packages/web.scm:2578 +#: gnu/packages/web.scm:2579 msgid "" "Catalyst::Plugin::Session::Store::FastMmap is a fast session\n" "storage plugin for Catalyst that uses an mmap'ed file to act as a shared\n" "memory interprocess cache. It is based on Cache::FastMmap." msgstr "" -#: gnu/packages/web.scm:2602 +#: gnu/packages/web.scm:2603 msgid "" "This plugin enhances the standard Catalyst debug screen by\n" "including a stack trace of your application up to the point where the error\n" @@ -20908,7 +21174,7 @@ msgid "" "number, file name, and code context surrounding the line number." msgstr "" -#: gnu/packages/web.scm:2628 +#: gnu/packages/web.scm:2629 msgid "" "The Static::Simple plugin is designed to make serving static\n" "content in your application during development quick and easy, without\n" @@ -20919,7 +21185,7 @@ msgid "" "MIME type directly to the browser, without being processed through Catalyst." msgstr "" -#: gnu/packages/web.scm:2687 +#: gnu/packages/web.scm:2688 msgid "" "Catalyst is a modern framework for making web applications.\n" "It is designed to make it easy to manage the various tasks you need to do to\n" @@ -20927,7 +21193,7 @@ msgid "" "\"plug in\" existing Perl modules that do what you need." msgstr "" -#: gnu/packages/web.scm:2715 +#: gnu/packages/web.scm:2716 msgid "" "This module is a Moose::Role which allows you more\n" "flexibility in your application's deployment configurations when deployed\n" @@ -20935,26 +21201,26 @@ msgid "" "replaced with the contents of the X-Request-Base header." msgstr "" -#: gnu/packages/web.scm:2743 +#: gnu/packages/web.scm:2744 msgid "" "The purpose of this module is to provide a method for\n" "downloading data into many supportable formats. For example, downloading a\n" "table based report in a variety of formats (CSV, HTML, etc.)." msgstr "" -#: gnu/packages/web.scm:2767 +#: gnu/packages/web.scm:2768 msgid "" "Catalyst::View::JSON is a Catalyst View handler that returns\n" "stash data in JSON format." msgstr "" -#: gnu/packages/web.scm:2793 +#: gnu/packages/web.scm:2794 msgid "" "This module is a Catalyst view class for the Template\n" "Toolkit." msgstr "" -#: gnu/packages/web.scm:2821 +#: gnu/packages/web.scm:2822 msgid "" "Adds a \"COMPONENT\" in Catalyst::Component method to your\n" "Catalyst component base class that reads the optional \"traits\" parameter\n" @@ -20963,19 +21229,19 @@ msgid "" "MooseX::Traits::Pluggable." msgstr "" -#: gnu/packages/web.scm:2845 +#: gnu/packages/web.scm:2846 msgid "" "CatalystX::RoleApplicator applies roles to Catalyst\n" "application classes." msgstr "" -#: gnu/packages/web.scm:2870 +#: gnu/packages/web.scm:2871 msgid "" "This module provides a Catalyst extension to replace the\n" "development server with Starman." msgstr "" -#: gnu/packages/web.scm:2892 +#: gnu/packages/web.scm:2893 msgid "" "CGI.pm is a stable, complete and mature solution for\n" "processing and preparing HTTP requests and responses. Major features include\n" @@ -20984,44 +21250,44 @@ msgid "" "headers." msgstr "" -#: gnu/packages/web.scm:2919 +#: gnu/packages/web.scm:2920 msgid "" "@code{CGI::FormBuilder} provides an easy way to generate and process CGI\n" "form-based applications." msgstr "" -#: gnu/packages/web.scm:2946 +#: gnu/packages/web.scm:2947 msgid "" "@code{CGI::Session} provides modular session management system across\n" "HTTP requests." msgstr "" -#: gnu/packages/web.scm:2967 +#: gnu/packages/web.scm:2968 msgid "" "CGI::Simple provides a relatively lightweight drop in\n" "replacement for CGI.pm. It shares an identical OO interface to CGI.pm for\n" "parameter parsing, file upload, cookie handling and header generation." msgstr "" -#: gnu/packages/web.scm:2989 +#: gnu/packages/web.scm:2990 msgid "" "This is a module for building structured data from CGI\n" "inputs, in a manner reminiscent of how PHP does." msgstr "" -#: gnu/packages/web.scm:3012 +#: gnu/packages/web.scm:3013 msgid "" "This module provides functions that deal with the date\n" "formats used by the HTTP protocol." msgstr "" -#: gnu/packages/web.scm:3033 +#: gnu/packages/web.scm:3034 msgid "" "Digest::MD5::File is a Perl extension for getting MD5 sums\n" "for files and urls." msgstr "" -#: gnu/packages/web.scm:3053 +#: gnu/packages/web.scm:3054 msgid "" "The POSIX locale system is used to specify both the language\n" "conventions requested by the user and the preferred character set to\n" @@ -21033,66 +21299,66 @@ msgid "" "with Encode::decode(locale => $string)." msgstr "" -#: gnu/packages/web.scm:3086 +#: gnu/packages/web.scm:3087 msgid "" "@code{Feed::Find} implements feed auto-discovery for finding\n" "syndication feeds, given a URI. It will discover the following feed formats:\n" "RSS 0.91, RSS 1.0, RSS 2.0, Atom." msgstr "" -#: gnu/packages/web.scm:3109 +#: gnu/packages/web.scm:3110 msgid "" "The File::Listing module exports a single function called parse_dir(),\n" "which can be used to parse directory listings." msgstr "" -#: gnu/packages/web.scm:3142 +#: gnu/packages/web.scm:3143 msgid "" "Finance::Quote gets stock quotes from various internet sources, including\n" "Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange." msgstr "" -#: gnu/packages/web.scm:3165 +#: gnu/packages/web.scm:3166 msgid "" "This is a Perl extension for using GSSAPI C bindings as\n" "described in RFC 2744." msgstr "" -#: gnu/packages/web.scm:3187 +#: gnu/packages/web.scm:3188 msgid "" "HTML::Element::Extended is a Perl extension for manipulating a table\n" "composed of HTML::Element style components." msgstr "" -#: gnu/packages/web.scm:3208 +#: gnu/packages/web.scm:3209 msgid "" "Objects of the HTML::Form class represents a single HTML\n" "
...
instance." msgstr "" -#: gnu/packages/web.scm:3241 +#: gnu/packages/web.scm:3242 msgid "@code{HTML::Scrubber} Perl extension for scrubbing/sanitizing HTML." msgstr "" -#: gnu/packages/web.scm:3260 +#: gnu/packages/web.scm:3261 msgid "" "HTML::Lint is a pure-Perl HTML parser and checker for\n" "syntactic legitmacy." msgstr "" -#: gnu/packages/web.scm:3282 +#: gnu/packages/web.scm:3283 msgid "" "HTML::TableExtract is a Perl module for extracting the content contained\n" "in tables within an HTML document, either as text or encoded element trees." msgstr "" -#: gnu/packages/web.scm:3305 +#: gnu/packages/web.scm:3306 msgid "" "This distribution contains a suite of modules for\n" "representing, creating, and extracting information from HTML syntax trees." msgstr "" -#: gnu/packages/web.scm:3327 +#: gnu/packages/web.scm:3328 msgid "" "Objects of the HTML::Parser class will recognize markup and separate\n" "it from plain text (alias data content) in HTML documents. As different\n" @@ -21100,13 +21366,13 @@ msgid "" "are invoked." msgstr "" -#: gnu/packages/web.scm:3349 +#: gnu/packages/web.scm:3350 msgid "" "The HTML::Tagset module contains several data tables useful in various\n" "kinds of HTML parsing operations." msgstr "" -#: gnu/packages/web.scm:3370 +#: gnu/packages/web.scm:3371 msgid "" "This module attempts to make using HTML templates simple and natural.\n" "It extends standard HTML with a few new HTML-esque tags: @code{},\n" @@ -21117,40 +21383,40 @@ msgid "" "you to separate design from the data." msgstr "" -#: gnu/packages/web.scm:3398 +#: gnu/packages/web.scm:3399 msgid "" "HTTP::Body parses chunks of HTTP POST data and supports\n" "application/octet-stream, application/json, application/x-www-form-urlencoded,\n" "and multipart/form-data." msgstr "" -#: gnu/packages/web.scm:3421 +#: gnu/packages/web.scm:3422 msgid "" "This module implements a minimalist HTTP user agent cookie\n" "jar in conformance with RFC 6265 ." msgstr "" -#: gnu/packages/web.scm:3443 +#: gnu/packages/web.scm:3444 msgid "" "The HTTP::Cookies class is for objects that represent a cookie jar,\n" "that is, a database of all the HTTP cookies that a given LWP::UserAgent\n" "object knows about." msgstr "" -#: gnu/packages/web.scm:3466 +#: gnu/packages/web.scm:3467 msgid "" "Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen\n" "on a socket for incoming requests. The HTTP::Daemon is a subclass of\n" "IO::Socket::INET, so you can perform socket operations directly on it too." msgstr "" -#: gnu/packages/web.scm:3487 +#: gnu/packages/web.scm:3488 msgid "" "The HTTP::Date module provides functions that deal with date formats\n" "used by the HTTP protocol (and then some more)." msgstr "" -#: gnu/packages/web.scm:3508 +#: gnu/packages/web.scm:3509 msgid "" "@code{HTTP::Lite} is a stand-alone lightweight\n" "HTTP/1.1 implementation for perl. It is intended for use in\n" @@ -21164,11 +21430,11 @@ msgid "" "processing of request data as it arrives." msgstr "" -#: gnu/packages/web.scm:3541 +#: gnu/packages/web.scm:3542 msgid "An HTTP::Message object contains some headers and a content body." msgstr "" -#: gnu/packages/web.scm:3562 +#: gnu/packages/web.scm:3563 msgid "" "The HTTP::Negotiate module provides a complete implementation of the\n" "HTTP content negotiation algorithm specified in\n" @@ -21178,7 +21444,7 @@ msgid "" "fields in the request." msgstr "" -#: gnu/packages/web.scm:3587 +#: gnu/packages/web.scm:3588 msgid "" "This is an HTTP request parser. It takes chunks of text as\n" "received and returns a @code{hint} as to what is required, or returns the\n" @@ -21186,33 +21452,33 @@ msgid "" "supported." msgstr "" -#: gnu/packages/web.scm:3610 +#: gnu/packages/web.scm:3611 msgid "" "HTTP::Parser::XS is a fast, primitive HTTP request/response\n" "parser." msgstr "" -#: gnu/packages/web.scm:3631 +#: gnu/packages/web.scm:3632 msgid "" "This module provides a convenient way to set up a CGI\n" "environment from an HTTP::Request." msgstr "" -#: gnu/packages/web.scm:3665 +#: gnu/packages/web.scm:3666 msgid "" "HTTP::Server::Simple is a simple standalone HTTP daemon with\n" "no non-core module dependencies. It can be used for building a standalone\n" "http-based UI to your existing tools." msgstr "" -#: gnu/packages/web.scm:3688 +#: gnu/packages/web.scm:3689 msgid "" "This is a very simple HTTP/1.1 client, designed for doing\n" "simple requests without the overhead of a large framework like LWP::UserAgent.\n" "It supports proxies and redirection. It also correctly resumes after EINTR." msgstr "" -#: gnu/packages/web.scm:3713 +#: gnu/packages/web.scm:3714 msgid "" "@code{HTTP::Tinyish} is a wrapper module for @acronym{LWP,libwww-perl},\n" "@code{HTTP::Tiny}, curl and wget.\n" @@ -21220,20 +21486,20 @@ msgid "" "It provides an API compatible to HTTP::Tiny." msgstr "" -#: gnu/packages/web.scm:3735 +#: gnu/packages/web.scm:3736 msgid "" "IO::HTML provides an easy way to open a file containing HTML while\n" "automatically determining its encoding. It uses the HTML5 encoding sniffing\n" "algorithm specified in section 8.2.2.1 of the draft standard." msgstr "" -#: gnu/packages/web.scm:3755 +#: gnu/packages/web.scm:3756 msgid "" "This module provides a protocol-independent way to use IPv4\n" "and IPv6 sockets, intended as a replacement for IO::Socket::INET." msgstr "" -#: gnu/packages/web.scm:3777 +#: gnu/packages/web.scm:3778 msgid "" "IO::Socket::SSL makes using SSL/TLS much easier by wrapping the\n" "necessary functionality into the familiar IO::Socket interface and providing\n" @@ -21242,7 +21508,7 @@ msgid "" "select or poll." msgstr "" -#: gnu/packages/web.scm:3816 +#: gnu/packages/web.scm:3817 msgid "" "The libwww-perl collection is a set of Perl modules which provides a\n" "simple and consistent application programming interface to the\n" @@ -21252,7 +21518,7 @@ msgid "" "help you implement simple HTTP servers." msgstr "" -#: gnu/packages/web.scm:3844 +#: gnu/packages/web.scm:3845 msgid "" "This module attempts to answer, as accurately as it can, one\n" "of the nastiest technical questions there is: am I on the internet?\n" @@ -21262,7 +21528,7 @@ msgid "" "not have DNS. We might not have a network card at all!" msgstr "" -#: gnu/packages/web.scm:3870 +#: gnu/packages/web.scm:3871 #, scheme-format msgid "" "The LWP::MediaTypes module provides functions for handling media (also\n" @@ -21271,20 +21537,20 @@ msgid "" "exists it is used instead." msgstr "" -#: gnu/packages/web.scm:3895 +#: gnu/packages/web.scm:3896 msgid "" "The LWP::Protocol::https module provides support for using\n" "https schemed URLs with LWP." msgstr "" -#: gnu/packages/web.scm:3916 +#: gnu/packages/web.scm:3917 msgid "" "LWP::UserAgent::Cached is an LWP::UserAgent subclass with\n" "cache support. It returns responses from the local file system, if available,\n" "instead of making an HTTP request." msgstr "" -#: gnu/packages/web.scm:3938 +#: gnu/packages/web.scm:3939 msgid "" "LWP::UserAgent::Determined works just like LWP::UserAgent,\n" "except that when you use it to get a web page but run into a\n" @@ -21292,7 +21558,7 @@ msgid "" "and retry a few times." msgstr "" -#: gnu/packages/web.scm:3965 +#: gnu/packages/web.scm:3966 msgid "" "@code{LWPx::ParanoidAgent} is a class subclassing\n" "@code{LWP::UserAgent} but paranoid against attackers. Its purpose is\n" @@ -21302,11 +21568,11 @@ msgid "" "is limited to http and https." msgstr "" -#: gnu/packages/web.scm:4011 +#: gnu/packages/web.scm:4012 msgid "This module provides a Perlish interface to Amazon S3." msgstr "" -#: gnu/packages/web.scm:4032 +#: gnu/packages/web.scm:4033 msgid "" "The Net::HTTP class is a low-level HTTP client. An instance of the\n" "Net::HTTP class represents a connection to an HTTP server. The HTTP protocol\n" @@ -21314,7 +21580,7 @@ msgid "" "HTTP/1.1." msgstr "" -#: gnu/packages/web.scm:4053 +#: gnu/packages/web.scm:4054 msgid "" "Net::Server is an extensible, generic Perl server engine.\n" "It attempts to be a generic server as in Net::Daemon and NetServer::Generic.\n" @@ -21328,11 +21594,11 @@ msgid "" "or to multiple server ports." msgstr "" -#: gnu/packages/web.scm:4082 +#: gnu/packages/web.scm:4083 msgid "SSL support for Net::SMTP." msgstr "" -#: gnu/packages/web.scm:4116 +#: gnu/packages/web.scm:4117 msgid "" "Plack is a set of tools for using the PSGI stack. It\n" "contains middleware components, a reference server, and utilities for Web\n" @@ -21340,7 +21606,7 @@ msgid "" "WSGI." msgstr "" -#: gnu/packages/web.scm:4143 +#: gnu/packages/web.scm:4144 msgid "" "Plack::Middleware::Deflater is a middleware to encode your response body\n" "in gzip or deflate, based on \"Accept-Encoding\" HTTP request header. It\n" @@ -21349,13 +21615,13 @@ msgid "" "servers." msgstr "" -#: gnu/packages/web.scm:4170 +#: gnu/packages/web.scm:4171 msgid "" "This module sets the body in redirect response, if it's not\n" "already set." msgstr "" -#: gnu/packages/web.scm:4193 +#: gnu/packages/web.scm:4194 msgid "" "This middleware allows for POST requests that pretend to be\n" "something else: by adding either a header named X-HTTP-Method-Override to the\n" @@ -21363,44 +21629,44 @@ msgid "" "can say what method it actually meant." msgstr "" -#: gnu/packages/web.scm:4217 +#: gnu/packages/web.scm:4218 msgid "" "This module removes the body in an HTTP response if it's not\n" "required." msgstr "" -#: gnu/packages/web.scm:4240 +#: gnu/packages/web.scm:4241 msgid "" "Plack::Middleware::ReverseProxy resets some HTTP headers,\n" "which are changed by reverse-proxy. You can specify the reverse proxy address\n" "and stop fake requests using @code{enable_if} directive in your app.psgi." msgstr "" -#: gnu/packages/web.scm:4261 +#: gnu/packages/web.scm:4262 msgid "" "This module allows your to run your Plack::Test tests\n" "against an external server instead of just against a local application through\n" "either mocked HTTP or a locally spawned server." msgstr "" -#: gnu/packages/web.scm:4283 +#: gnu/packages/web.scm:4284 msgid "Test::TCP is test utilities for TCP/IP programs." msgstr "" -#: gnu/packages/web.scm:4308 +#: gnu/packages/web.scm:4309 msgid "" "Test::WWW::Mechanize is a subclass of the Perl module\n" "WWW::Mechanize that incorporates features for web application testing." msgstr "" -#: gnu/packages/web.scm:4341 +#: gnu/packages/web.scm:4342 msgid "" "The Test::WWW::Mechanize::Catalyst module meshes the\n" "Test::WWW:Mechanize module and the Catalyst web application framework to allow\n" "testing of Catalyst applications without needing to start up a web server." msgstr "" -#: gnu/packages/web.scm:4365 +#: gnu/packages/web.scm:4366 msgid "" "PSGI is a specification to decouple web server environments\n" "from web application framework code. Test::WWW::Mechanize is a subclass of\n" @@ -21409,21 +21675,21 @@ msgid "" "applications." msgstr "" -#: gnu/packages/web.scm:4390 +#: gnu/packages/web.scm:4391 msgid "" "The URI module implements the URI class. Objects of this class\n" "represent \"Uniform Resource Identifier references\" as specified in RFC 2396\n" "and updated by RFC 2732." msgstr "" -#: gnu/packages/web.scm:4413 +#: gnu/packages/web.scm:4414 msgid "" "@code{URI::Fetch} is a smart client for fetching HTTP pages,\n" "notably syndication feeds (RSS, Atom, and others), in an intelligent, bandwidth-\n" "and time-saving way." msgstr "" -#: gnu/packages/web.scm:4437 +#: gnu/packages/web.scm:4438 msgid "" "This module finds URIs and URLs (according to what URI.pm\n" "considers a URI) in plain text. It only finds URIs which include a\n" @@ -21431,37 +21697,37 @@ msgid "" "URI::Find::Schemeless. For a command-line interface, urifind is provided." msgstr "" -#: gnu/packages/web.scm:4460 +#: gnu/packages/web.scm:4461 msgid "" "With this module, the URI package provides the same set of\n" "methods for WebSocket URIs as it does for HTTP URIs." msgstr "" -#: gnu/packages/web.scm:4483 +#: gnu/packages/web.scm:4484 msgid "" "This perl module provides a wrapper around URI templates as described in\n" "RFC 6570." msgstr "" -#: gnu/packages/web.scm:4517 +#: gnu/packages/web.scm:4518 msgid "" "This is a Perl extension interface for the libcurl file downloading\n" "library." msgstr "" -#: gnu/packages/web.scm:4548 +#: gnu/packages/web.scm:4549 msgid "" "WWW::Mechanize is a Perl module for stateful programmatic\n" "web browsing, used for automating interaction with websites." msgstr "" -#: gnu/packages/web.scm:4586 +#: gnu/packages/web.scm:4587 msgid "" "@code{WWW::OpenSearch} is a module to search @url{A9's OpenSearch,\n" "http://opensearch.a9.com} compatible search engines." msgstr "" -#: gnu/packages/web.scm:4608 +#: gnu/packages/web.scm:4609 msgid "" "The WWW::RobotRules module parses /robots.txt files as specified in\n" "\"A Standard for Robot Exclusion\", at\n" @@ -21470,13 +21736,13 @@ msgid "" "their web site." msgstr "" -#: gnu/packages/web.scm:4635 gnu/packages/web.scm:4659 +#: gnu/packages/web.scm:4640 gnu/packages/web.scm:4664 msgid "" "Universal feed parser which handles RSS 0.9x, RSS 1.0, RSS 2.0,\n" "CDF, Atom 0.3, and Atom 1.0 feeds." msgstr "" -#: gnu/packages/web.scm:4756 +#: gnu/packages/web.scm:4761 msgid "" "The Guix Data Service stores data about GNU Guix, and provides this\n" "through a web interface. It supports listening to the guix-commits mailing\n" @@ -21484,20 +21750,20 @@ msgid "" "PostgreSQL database." msgstr "" -#: gnu/packages/web.scm:4785 +#: gnu/packages/web.scm:4790 msgid "" "Gumbo is an implementation of the HTML5 parsing algorithm implemented as\n" "a pure C99 library." msgstr "" -#: gnu/packages/web.scm:4858 +#: gnu/packages/web.scm:4863 msgid "" "uWSGI presents a complete stack for networked/clustered web applications,\n" "implementing message/object passing, caching, RPC and process management.\n" "It uses the uwsgi protocol for all the networking/interprocess communications." msgstr "" -#: gnu/packages/web.scm:4891 +#: gnu/packages/web.scm:4896 msgid "" "jq is like sed for JSON data – you can use it to slice and\n" "filter and map and transform structured data with the same ease that sed, awk,\n" @@ -21507,7 +21773,7 @@ msgid "" "you'd expect." msgstr "" -#: gnu/packages/web.scm:4920 +#: gnu/packages/web.scm:4925 msgid "" "@command{pup} is a command line tool for processing HTML. It reads\n" "from stdin, prints to stdout, and allows the user to filter parts of the page\n" @@ -21515,66 +21781,66 @@ msgid "" "fast and flexible way of exploring HTML from the terminal." msgstr "" -#: gnu/packages/web.scm:4953 +#: gnu/packages/web.scm:4958 msgid "" "Uhttpmock is a project for mocking web service APIs which use HTTP or\n" "HTTPS. It provides a library, libuhttpmock, which implements recording and\n" "playback of HTTP request/response traces." msgstr "" -#: gnu/packages/web.scm:4989 +#: gnu/packages/web.scm:4994 msgid "" "Woof (Web Offer One File) is a small simple web server that\n" "can easily be invoked on a single file. Your partner can access the file with\n" "tools they trust (e.g. wget)." msgstr "" -#: gnu/packages/web.scm:5017 +#: gnu/packages/web.scm:5022 msgid "" "This package provides the shared build system for Netsurf project\n" "libraries." msgstr "" -#: gnu/packages/web.scm:5052 +#: gnu/packages/web.scm:5057 msgid "" "LibParserUtils is a library for building efficient parsers, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5082 +#: gnu/packages/web.scm:5087 msgid "" "Hubbub is an HTML5 compliant parsing library, written in C, which can\n" "parse both valid and invalid web content. It is developed as part of the\n" "NetSurf project." msgstr "" -#: gnu/packages/web.scm:5203 +#: gnu/packages/web.scm:5208 msgid "" "Ikiwiki is a wiki compiler, capable of generating a static set of web\n" "pages, but also incorporating dynamic features like a web based editor and\n" "commenting." msgstr "" -#: gnu/packages/web.scm:5227 +#: gnu/packages/web.scm:5232 msgid "" "LibWapcaplet provides a reference counted string internment system\n" "designed to store small strings and allow rapid comparison of them. It is\n" "developed as part of the Netsurf project." msgstr "" -#: gnu/packages/web.scm:5259 +#: gnu/packages/web.scm:5264 msgid "" "LibCSS is a CSS (Cascading Style Sheet) parser and selection engine,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5294 +#: gnu/packages/web.scm:5299 msgid "" "LibDOM is an implementation of the W3C DOM, written in C. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5321 +#: gnu/packages/web.scm:5326 msgid "" "Libsvgtiny takes some SVG as input and returns a list of paths and texts\n" "which can be rendered easily, as defined in\n" @@ -21582,65 +21848,65 @@ msgid "" "project." msgstr "" -#: gnu/packages/web.scm:5346 +#: gnu/packages/web.scm:5351 msgid "" "Libnsbmp is a decoding library for BMP and ICO image file formats,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5369 +#: gnu/packages/web.scm:5374 msgid "" "Libnsgif is a decoding library for the GIF image file format, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5396 +#: gnu/packages/web.scm:5401 msgid "" "Libnslog provides a category-based logging library which supports\n" "complex logging filters, multiple log levels, and provides context through to\n" "client applications. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5420 +#: gnu/packages/web.scm:5425 msgid "" "Libnsutils provides a small number of useful utility routines. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5443 +#: gnu/packages/web.scm:5448 msgid "" "Libnspsl is a library to generate a static code representation of the\n" "Public Suffix List. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5469 +#: gnu/packages/web.scm:5474 msgid "" "@code{nsgenbind} is a tool to generate JavaScript to DOM bindings from\n" "w3c webidl files and a binding configuration file." msgstr "" -#: gnu/packages/web.scm:5592 +#: gnu/packages/web.scm:5597 msgid "" "NetSurf is a lightweight web browser that has its own layout and\n" "rendering engine entirely written from scratch. It is small and capable of\n" "handling many of the web standards in use today." msgstr "" -#: gnu/packages/web.scm:5631 +#: gnu/packages/web.scm:5636 msgid "" "Surfraw (Shell Users' Revolutionary Front Rage Against the Web)\n" "provides a unix command line interface to a variety of popular www search engines\n" "and similar services." msgstr "" -#: gnu/packages/web.scm:5664 +#: gnu/packages/web.scm:5669 msgid "" "darkhttpd is a simple static web server. It is\n" "standalone and does not need inetd or ucspi-tcp. It does not need any\n" "config files---you only have to specify the www root." msgstr "" -#: gnu/packages/web.scm:5695 +#: gnu/packages/web.scm:5700 msgid "" "GoAccess is a real-time web log analyzer and interactive viewer that\n" "runs in a terminal or through your browser. It provides fast and valuable\n" @@ -21648,7 +21914,7 @@ msgid "" "on the fly." msgstr "" -#: gnu/packages/web.scm:5749 +#: gnu/packages/web.scm:5754 msgid "" "Hitch is a performant TLS proxy based on @code{libev}. It terminates\n" "SSL/TLS connections and forwards the unencrypted traffic to a backend such\n" @@ -21656,7 +21922,7 @@ msgid "" "multicore machines." msgstr "" -#: gnu/packages/web.scm:5786 +#: gnu/packages/web.scm:5791 msgid "" "httptunnel creates a bidirectional virtual data connection\n" "tunnelled through HTTP (HyperText Transfer Protocol) requests. This can be\n" @@ -21674,7 +21940,7 @@ msgid "" "deployments." msgstr "" -#: gnu/packages/web.scm:5915 +#: gnu/packages/web.scm:5912 msgid "" "Varnish is a high-performance HTTP accelerator. It acts as a caching\n" "reverse proxy and load balancer. You install it in front of any server that\n" @@ -21682,14 +21948,14 @@ msgid "" "configuration language." msgstr "" -#: gnu/packages/web.scm:5949 +#: gnu/packages/web.scm:5946 msgid "" "This package provides a collection of modules (@dfn{vmods}) for the Varnish\n" "cache server, extending the @acronym{VCL, Varnish Configuration Language} with\n" "additional capabilities." msgstr "" -#: gnu/packages/web.scm:5976 +#: gnu/packages/web.scm:5973 msgid "" "@code{xinetd}, a more secure replacement for @code{inetd},\n" "listens for incoming requests over a network and launches the appropriate\n" @@ -21698,7 +21964,7 @@ msgid "" "used to start services with both privileged and non-privileged port numbers." msgstr "" -#: gnu/packages/web.scm:6023 +#: gnu/packages/web.scm:6020 msgid "" "Tidy is a console application which corrects and cleans up\n" "HTML and XML documents by fixing markup errors and upgrading\n" @@ -21709,14 +21975,14 @@ msgid "" "functions of Tidy." msgstr "" -#: gnu/packages/web.scm:6085 +#: gnu/packages/web.scm:6082 msgid "" "Hiawatha has been written with security in mind.\n" "Features include the ability to stop SQL injections, XSS and CSRF attacks and\n" "exploit attempts." msgstr "" -#: gnu/packages/web.scm:6107 +#: gnu/packages/web.scm:6104 msgid "" "Testing an HTTP Library can become difficult sometimes.\n" "@code{RequestBin} is fantastic for testing POST requests, but doesn't let you control the\n" @@ -21724,14 +21990,14 @@ msgid "" "JSON-encoded." msgstr "" -#: gnu/packages/web.scm:6132 +#: gnu/packages/web.scm:6129 msgid "" "@code{Pytest-httpbin} creates a @code{pytest} fixture that is dependency-injected\n" "into your tests. It automatically starts up a HTTP server in a separate thread running\n" "@code{httpbin} and provides your test with the URL in the fixture." msgstr "" -#: gnu/packages/web.scm:6199 +#: gnu/packages/web.scm:6196 msgid "" "This is a parser for HTTP messages written in C. It\n" "parses both requests and responses. The parser is designed to be used in\n" @@ -21741,40 +22007,40 @@ msgid "" "message stream (in a web server that is per connection)." msgstr "" -#: gnu/packages/web.scm:6236 +#: gnu/packages/web.scm:6233 msgid "" "@code{httpretty} is a helper for faking web requests,\n" "inspired by Ruby's @code{fakeweb}." msgstr "" -#: gnu/packages/web.scm:6254 +#: gnu/packages/web.scm:6251 msgid "" "jo is a command-line utility to create JSON objects or\n" "arrays. It creates a JSON string on stdout from words provided as\n" "command-line arguments or read from stdin." msgstr "" -#: gnu/packages/web.scm:6313 +#: gnu/packages/web.scm:6310 msgid "" "@code{ia} is a command-line tool for using\n" "@url{archive.org} from the command-line. It also implements the\n" "internetarchive python module for programmatic access to archive.org." msgstr "" -#: gnu/packages/web.scm:6364 +#: gnu/packages/web.scm:6361 msgid "" "@code{clf} is a command line tool for searching code\n" "snippets on @url{https://commandlinefu.com}." msgstr "" -#: gnu/packages/web.scm:6402 +#: gnu/packages/web.scm:6399 msgid "" "rss-bridge generates Atom feeds for social networking\n" "websites lacking feeds. Supported websites include Facebook, Twitter,\n" "Instagram and YouTube." msgstr "" -#: gnu/packages/web.scm:6440 +#: gnu/packages/web.scm:6437 msgid "" "LinkChecker is a website validator. It checks for broken\n" "links in websites. It is recursive and multithreaded providing output in\n" @@ -21783,67 +22049,67 @@ msgid "" "file links." msgstr "" -#: gnu/packages/web.scm:6488 +#: gnu/packages/web.scm:6485 msgid "" "Castor is a graphical client for plain-text protocols written in\n" "Rust with GTK. It currently supports the Gemini, Gopher and Finger\n" "protocols." msgstr "" -#: gnu/packages/web.scm:6575 +#: gnu/packages/web.scm:6572 msgid "" "This package includes Clearsilver, the CGI kit and HTML templating\n" "system." msgstr "" -#: gnu/packages/web.scm:6594 +#: gnu/packages/web.scm:6591 msgid "" "Py-ubjson is a Python module providing an Universal Binary JSON\n" "encoder/decoder based on the draft-12 specification for UBJSON." msgstr "" -#: gnu/packages/web.scm:6689 +#: gnu/packages/web.scm:6686 msgid "" "Apache Tomcat is a free implementation of the Java\n" "Servlet, JavaServer Pages, Java Expression Language and Java WebSocket\n" "technologies." msgstr "" -#: gnu/packages/web.scm:6743 +#: gnu/packages/web.scm:6740 msgid "" "This package contains helper classes for testing the Jetty\n" "Web Server." msgstr "" -#: gnu/packages/web.scm:6802 +#: gnu/packages/web.scm:6799 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides utility classes." msgstr "" -#: gnu/packages/web.scm:6880 +#: gnu/packages/web.scm:6877 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides IO-related utility classes." msgstr "" -#: gnu/packages/web.scm:6925 +#: gnu/packages/web.scm:6922 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides HTTP-related utility classes." msgstr "" -#: gnu/packages/web.scm:6959 +#: gnu/packages/web.scm:6956 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides the JMX management." msgstr "" -#: gnu/packages/web.scm:7045 +#: gnu/packages/web.scm:7042 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21851,7 +22117,7 @@ msgid "" "artifact." msgstr "" -#: gnu/packages/web.scm:7088 +#: gnu/packages/web.scm:7085 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21859,7 +22125,7 @@ msgid "" "infrastructure" msgstr "" -#: gnu/packages/web.scm:7144 +#: gnu/packages/web.scm:7141 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21867,14 +22133,14 @@ msgid "" "container." msgstr "" -#: gnu/packages/web.scm:7308 +#: gnu/packages/web.scm:7305 msgid "" "Jsoup is a Java library for working with real-world HTML. It\n" "provides a very convenient API for extracting and manipulating data, using the\n" "best of DOM, CSS, and jQuery-like methods." msgstr "" -#: gnu/packages/web.scm:7337 +#: gnu/packages/web.scm:7334 msgid "" "Signpost is the easy and intuitive solution for signing\n" "HTTP messages on the Java platform in conformance with the OAuth Core 1.0a\n" @@ -21882,7 +22148,7 @@ msgid "" "combine it with different HTTP messaging layers." msgstr "" -#: gnu/packages/web.scm:7360 +#: gnu/packages/web.scm:7357 msgid "" "Tidyp is a program that can validate your HTML, as well as\n" "modify it to be more clean and standard. tidyp does not validate HTML 5.\n" @@ -21892,14 +22158,14 @@ msgid "" "based on this library, allowing Perl programmers to easily validate HTML." msgstr "" -#: gnu/packages/web.scm:7401 +#: gnu/packages/web.scm:7398 msgid "" "@code{HTML::Tidy} is an HTML checker in a handy dandy\n" "object. It's meant as a replacement for @code{HTML::Lint}, which is written\n" "in Perl but is not nearly as capable as @code{HTML::Tidy}." msgstr "" -#: gnu/packages/web.scm:7430 +#: gnu/packages/web.scm:7427 msgid "" "Geomyidae is a server for distributed hypertext protocol Gopher. Its\n" "features include:\n" @@ -21913,14 +22179,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/web.scm:7478 +#: gnu/packages/web.scm:7475 msgid "" "Cat avatar generator is a generator of cat pictures optimised\n" "to generate random avatars, or defined avatar from a \"seed\". This is a\n" "derivation by David Revoy from the original MonsterID by Andreas Gohr." msgstr "" -#: gnu/packages/web.scm:7548 +#: gnu/packages/web.scm:7545 msgid "" "nghttp2 implements the Hypertext Transfer Protocol, version\n" "2 (@dfn{HTTP/2}).\n" @@ -21946,14 +22212,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7647 +#: gnu/packages/web.scm:7644 msgid "" "Hpcguix-web provides a web interface to the list of packages\n" "provided by Guix. The list of packages is searchable and provides\n" "instructions on how to use Guix in a shared HPC environment." msgstr "" -#: gnu/packages/web.scm:7668 +#: gnu/packages/web.scm:7665 msgid "" "HTTrack allows you to download a World Wide Web site from\n" "the Internet to a local directory, building recursively all directories,\n" @@ -21967,7 +22233,7 @@ msgid "" "HTTrack is fully configurable, and has an integrated help system." msgstr "" -#: gnu/packages/web.scm:7703 +#: gnu/packages/web.scm:7700 msgid "" "buku is a powerful bookmark manager written in Python3 and SQLite3.\n" "@command{buku} can auto-import bookmarks from your browser and present them\n" @@ -21976,7 +22242,7 @@ msgid "" "@command{bukuserver}." msgstr "" -#: gnu/packages/web.scm:7724 +#: gnu/packages/web.scm:7721 msgid "" "Anonip masks the last bits of IPv4 and IPv6 addresses in log files.\n" "That way most of the relevant information is preserved, while the IP address\n" @@ -21991,7 +22257,7 @@ msgid "" "Anonip can also be uses as a Python module in your own Python application." msgstr "" -#: gnu/packages/web.scm:7758 +#: gnu/packages/web.scm:7755 msgid "" "Poussetaches (which literally means \"push tasks\" in\n" "French) is a lightweight asynchronous task execution service that aims to\n" @@ -22003,7 +22269,7 @@ msgid "" "returned." msgstr "" -#: gnu/packages/web.scm:7783 +#: gnu/packages/web.scm:7780 msgid "" "htmlcxx is a simple non-validating CSS1 and HTML parser for\n" "C++. Although there are several other HTML parsers available, htmlcxx has some\n" @@ -22021,7 +22287,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:7827 +#: gnu/packages/web.scm:7824 msgid "" "libRocket is a C++ user interface package based on the HTML\n" "and CSS standards. libRocket uses the open standards XHTML1.0 and\n" @@ -22038,11 +22304,11 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7869 +#: gnu/packages/web.scm:7866 msgid "gmnisrv is a simple Gemini protocol server written in C." msgstr "" -#: gnu/packages/web.scm:7900 +#: gnu/packages/web.scm:7898 msgid "" "The openZIM project proposes offline storage solutions for\n" "content coming from the Web. The zimlib is the standard implementation of the\n" @@ -22074,14 +22340,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:8081 +#: gnu/packages/web.scm:8078 msgid "" "uriparser is a strictly RFC 3986 compliant URI parsing and\n" "handling library written in C89 (\"ANSI C\"). uriparser is fast and supports\n" "Unicode." msgstr "" -#: gnu/packages/web.scm:8115 +#: gnu/packages/web.scm:8112 msgid "" "Quark is an extremely small and simple HTTP GET/HEAD only\n" "web server for static content. TLS is not natively supported and should be\n" @@ -22251,53 +22517,53 @@ msgid "" "Enhancement}." msgstr "" -#: gnu/services/base.scm:276 +#: gnu/services/base.scm:279 msgid "" "Populate the @file{/etc/fstab} based on the given file\n" "system objects." msgstr "" -#: gnu/services/base.scm:314 +#: gnu/services/base.scm:317 msgid "" "Take care of syncing the root file\n" "system and of remounting it read-only when the system shuts down." msgstr "" -#: gnu/services/base.scm:481 +#: gnu/services/base.scm:484 msgid "" "Provide Shepherd services to mount and unmount the given\n" "file systems, as well as corresponding @file{/etc/fstab} entries." msgstr "" -#: gnu/services/base.scm:579 +#: gnu/services/base.scm:582 msgid "" "Seed the @file{/dev/urandom} pseudo-random number\n" "generator (RNG) with the value recorded when the system was last shut\n" "down." msgstr "" -#: gnu/services/base.scm:611 +#: gnu/services/base.scm:614 msgid "" "Run the @command{rngd} random number generation daemon to\n" "supply entropy to the kernel's pool." msgstr "" -#: gnu/services/base.scm:640 +#: gnu/services/base.scm:643 msgid "Initialize the machine's host name." msgstr "" -#: gnu/services/base.scm:670 +#: gnu/services/base.scm:673 msgid "Ensure the Linux virtual terminals run in UTF-8 mode." msgstr "" -#: gnu/services/base.scm:683 +#: gnu/services/base.scm:686 msgid "" "@emph{This service is deprecated in favor of the\n" "@code{keyboard-layout} field of @code{operating-system}.} Load the given list\n" "of console keymaps with @command{loadkeys}." msgstr "" -#: gnu/services/base.scm:743 +#: gnu/services/base.scm:746 msgid "" "Install the given fonts on the specified ttys (fonts are per\n" "virtual console on GNU/Linux). The value of this service is a list of\n" @@ -22315,66 +22581,66 @@ msgid "" "@end example\n" msgstr "" -#: gnu/services/base.scm:795 +#: gnu/services/base.scm:798 msgid "" "Provide a console log-in service as specified by its\n" "configuration value, a @code{login-configuration} object." msgstr "" -#: gnu/services/base.scm:1063 +#: gnu/services/base.scm:1066 msgid "" "Provide console login using the @command{agetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1128 +#: gnu/services/base.scm:1131 msgid "" "Provide console login using the @command{mingetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1345 +#: gnu/services/base.scm:1348 msgid "" "Runs libc's @dfn{name service cache daemon} (nscd) with the\n" "given configuration---an @code{} object. @xref{Name\n" "Service Switch}, for an example." msgstr "" -#: gnu/services/base.scm:1384 +#: gnu/services/base.scm:1387 msgid "" "Run the syslog daemon, @command{syslogd}, which is\n" "responsible for logging system messages." msgstr "" -#: gnu/services/base.scm:1448 +#: gnu/services/base.scm:1451 msgid "" "Install the specified resource usage limits by populating\n" "@file{/etc/security/limits.conf} and using the @code{pam_limits}\n" "authentication module." msgstr "" -#: gnu/services/base.scm:1794 +#: gnu/services/base.scm:1804 msgid "Run the build daemon of GNU@tie{}Guix, aka. @command{guix-daemon}." msgstr "" -#: gnu/services/base.scm:1944 +#: gnu/services/base.scm:1961 msgid "" "Add a Shepherd service running @command{guix publish}, a\n" "command that allows you to share pre-built binaries with others over HTTP." msgstr "" -#: gnu/services/base.scm:2150 +#: gnu/services/base.scm:2167 msgid "" "Run @command{udev}, which populates the @file{/dev}\n" "directory dynamically. Get extra rules from the packages listed in the\n" "@code{rules} field of its value, @code{udev-configuration} object." msgstr "" -#: gnu/services/base.scm:2267 +#: gnu/services/base.scm:2284 msgid "Turn on the virtual memory swap area." msgstr "" -#: gnu/services/base.scm:2309 +#: gnu/services/base.scm:2326 msgid "" "Run GPM, the general-purpose mouse daemon, with the given\n" "command-line options. GPM allows users to use the mouse in the console,\n" @@ -22382,33 +22648,33 @@ msgid "" "@code{ps2} protocol, which works for both USB and PS/2 mice." msgstr "" -#: gnu/services/base.scm:2382 +#: gnu/services/base.scm:2399 msgid "" "Start the @command{kmscon} virtual terminal emulator for the\n" "Linux @dfn{kernel mode setting} (KMS)." msgstr "" -#: gnu/services/base.scm:2403 +#: gnu/services/base.scm:2416 #, scheme-format msgid "address '~a' lacks a network mask" msgstr "" -#: gnu/services/base.scm:2409 +#: gnu/services/base.scm:2422 #, scheme-format msgid "Write, say, @samp{\"~a/24\"} for a 24-bit network mask." msgstr "" -#: gnu/services/base.scm:2489 +#: gnu/services/base.scm:2502 #, scheme-format msgid "network links are currently ignored on GNU/Hurd~%" msgstr "" -#: gnu/services/base.scm:2514 +#: gnu/services/base.scm:2527 #, scheme-format msgid "ignoring network route for '~a'~%" msgstr "" -#: gnu/services/base.scm:2698 +#: gnu/services/base.scm:2711 msgid "" "Turn up the specified network interfaces upon startup,\n" "with the given IP address, gateway, netmask, and so on. The value for\n" diff --git a/po/packages/ko.po b/po/packages/ko.po index 412f0ae137..b390fde900 100644 --- a/po/packages/ko.po +++ b/po/packages/ko.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) 2021 the authors of Guix (msgids) and the following authors (msgstr) # This file is distributed under the same license as the GNU guix package. -# simmon , 2021. +# simmon , 2021, 2022. msgid "" msgstr "" "Project-Id-Version: GNU guix\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" -"PO-Revision-Date: 2021-10-09 15:27+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" +"PO-Revision-Date: 2022-02-01 06:16+0000\n" "Last-Translator: simmon \n" "Language-Team: Korean \n" "Language: ko\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.8\n" +"X-Generator: Weblate 4.10.1\n" #. TRANSLATORS: Dear translator, We would like to inform you that package #. descriptions may occasionally include Texinfo markup. Texinfo markup @@ -43,7 +43,7 @@ msgstr "" msgid "This package provides a dictionary for the GNU Aspell spell checker." msgstr "이 꾸러미는 GNU Aspell 맞춤법 검사기를 위한 사전을 제공합니다." -#: gnu/packages/aspell.scm:445 gnu/packages/libreoffice.scm:845 +#: gnu/packages/aspell.scm:450 gnu/packages/libreoffice.scm:845 #: gnu/packages/libreoffice.scm:918 msgid "" "This package provides a dictionary for the Hunspell spell-checking\n" @@ -52,7 +52,7 @@ msgstr "" "이 꾸러미는 Hunspell 맞춤법 검사를 위해 라이브러리를\n" "제공합니다." -#: gnu/packages/aspell.scm:525 +#: gnu/packages/aspell.scm:530 msgid "" "Ispell is an interactive spell-checking tool supporting many\n" "European languages." @@ -60,7 +60,7 @@ msgstr "" "Ispell은 수많은 유럽 언어 지원하는 상호작용 맞춤법 검사용\n" "도구입니다." -#: gnu/packages/audio.scm:197 +#: gnu/packages/audio.scm:198 msgid "" "OpenSLES is a royalty-free, cross-platform,\n" "hardware-accelerated audio API tuned for embedded systems. It provides a\n" @@ -71,31 +71,31 @@ msgid "" "promoting the market for advanced audio." msgstr "" -#: gnu/packages/audio.scm:233 +#: gnu/packages/audio.scm:234 msgid "" "WildMIDI is a simple software midi player which has a core\n" "softsynth library that can be use with other applications." msgstr "" -#: gnu/packages/audio.scm:257 +#: gnu/packages/audio.scm:258 msgid "" "WebRTC-Audio-Processing library based on Google's\n" "implementation of WebRTC." msgstr "" -#: gnu/packages/audio.scm:277 +#: gnu/packages/audio.scm:278 msgid "" "VO-AACENC is the VisualOn implementation of Advanced Audio\n" "Coding (AAC) encoder." msgstr "" -#: gnu/packages/audio.scm:306 +#: gnu/packages/audio.scm:307 msgid "" "TinyALSA is a small library to interface with ALSA in the\n" "Linux kernel." msgstr "" -#: gnu/packages/audio.scm:329 +#: gnu/packages/audio.scm:330 msgid "" "Game-music-emu is a collection of video game music file emulators that\n" "support the following formats and systems:\n" @@ -121,43 +121,43 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/audio.scm:393 +#: gnu/packages/audio.scm:394 msgid "" "LibOpenMPT is a cross-platform C++ and C module playback\n" "library. It is based on the player code of the Open ModPlug Tracker project." msgstr "" -#: gnu/packages/audio.scm:424 +#: gnu/packages/audio.scm:425 msgid "" "LibOFA is an audio fingerprint library, created and provided\n" "by MusicIP." msgstr "" -#: gnu/packages/audio.scm:445 +#: gnu/packages/audio.scm:446 msgid "FAAC is an MPEG-4 and MPEG-2 AAC encoder." msgstr "FAA는 MPEG-4와 MPEG-2 AAA 인코더입니다." -#: gnu/packages/audio.scm:474 +#: gnu/packages/audio.scm:475 msgid "" "LibTiMidity is a MIDI to WAVE converter library that uses\n" "Gravis Ultrasound-compatible patch files to generate digital audio data from\n" "General MIDI files." msgstr "" -#: gnu/packages/audio.scm:499 +#: gnu/packages/audio.scm:500 msgid "" "VO-AMR is a library of VisualOn implementation of\n" "Adaptive Multi Rate Narrowband and Wideband (AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:518 +#: gnu/packages/audio.scm:519 msgid "" "OpenCore-AMR is a library of OpenCORE Framework\n" "implementation of Adaptive Multi Rate Narrowband and Wideband\n" "(AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:551 +#: gnu/packages/audio.scm:552 msgid "" "AlsaModularSynth is a digital implementation of a classical analog\n" "modular synthesizer system. It uses virtual control voltages to control the\n" @@ -166,7 +166,7 @@ msgid "" "Filter) modules follow the convention of 1V / Octave." msgstr "" -#: gnu/packages/audio.scm:588 +#: gnu/packages/audio.scm:589 msgid "" "aubio is a tool designed for the extraction of annotations from audio\n" "signals. Its features include segmenting a sound file before each of its\n" @@ -174,21 +174,21 @@ msgid "" "streams from live audio." msgstr "" -#: gnu/packages/audio.scm:719 +#: gnu/packages/audio.scm:720 msgid "" "Ardour is a multi-channel digital audio workstation, allowing users to\n" "record, edit, mix and master audio and MIDI projects. It is targeted at audio\n" "engineers, musicians, soundtrack editors and composers." msgstr "" -#: gnu/packages/audio.scm:833 +#: gnu/packages/audio.scm:853 msgid "" "Audacity is a multi-track audio editor designed for recording, playing\n" "and editing digital audio. It features digital effects and spectrum analysis\n" "tools." msgstr "" -#: gnu/packages/audio.scm:889 +#: gnu/packages/audio.scm:909 msgid "" "This is an open-source version of SGI's audiofile library.\n" "It provides a uniform programming interface for processing of audio data to\n" @@ -199,14 +199,14 @@ msgid "" "G.711 mu-law and A-law." msgstr "" -#: gnu/packages/audio.scm:931 +#: gnu/packages/audio.scm:951 msgid "" "Autotalent is a LADSPA plugin for real-time pitch-correction. Among its\n" "controls are allowable notes, strength of correction, LFO for vibrato and\n" "formant warp." msgstr "" -#: gnu/packages/audio.scm:972 +#: gnu/packages/audio.scm:992 msgid "" "AZR-3 is a port of the free VST plugin AZR-3. It is a tonewheel organ\n" "with drawbars, distortion and rotating speakers. The organ has three\n" @@ -215,7 +215,7 @@ msgid "" "plugins are provided." msgstr "" -#: gnu/packages/audio.scm:1011 +#: gnu/packages/audio.scm:1031 msgid "" "Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments.\n" "The suite contains lots of effects (delay, modulation, signal processing,\n" @@ -224,31 +224,31 @@ msgid "" "tools (analyzer, mono/stereo tools, crossovers)." msgstr "" -#: gnu/packages/audio.scm:1053 +#: gnu/packages/audio.scm:1073 msgid "" "LV2 port of CAPS, a collection of audio plugins comprising basic virtual\n" "guitar amplification and a small range of classic effects, signal processors and\n" "generators of mostly elementary and occasionally exotic nature." msgstr "" -#: gnu/packages/audio.scm:1094 +#: gnu/packages/audio.scm:1114 msgid "" "The infamous plugins are a collection of LV2 audio plugins for live\n" "performances. The plugins include a cellular automaton synthesizer, an\n" "envelope follower, distortion effects, tape effects and more." msgstr "" -#: gnu/packages/audio.scm:1129 +#: gnu/packages/audio.scm:1149 msgid "" "Snapcast is a multi-room client-server audio player. Clients are time\n" "synchronized with the server to play synced audio." msgstr "" -#: gnu/packages/audio.scm:1159 +#: gnu/packages/audio.scm:1179 msgid "This package provides Steve Harris's LADSPA plugins." msgstr "이 꾸러미는 스티브 해리스씨의 LADSPA 플러그인을 제공합니다." -#: gnu/packages/audio.scm:1199 +#: gnu/packages/audio.scm:1219 msgid "" "Swh-plugins-lv2 is a collection of audio plugins in LV2 format. Plugin\n" "classes include: dynamics (compressor, limiter), time (delay, chorus,\n" @@ -256,13 +256,13 @@ msgid "" "emulation (valve, tape), bit fiddling (decimator, pointer-cast), etc." msgstr "" -#: gnu/packages/audio.scm:1233 +#: gnu/packages/audio.scm:1253 msgid "" "@code{libdjinterop} is a C++ library that allows access to database\n" "formats used to store information about DJ record libraries." msgstr "" -#: gnu/packages/audio.scm:1295 gnu/packages/audio.scm:1326 +#: gnu/packages/audio.scm:1315 gnu/packages/audio.scm:1346 msgid "" "Tao is a software package for sound synthesis using physical\n" "models. It provides a virtual acoustic material constructed from masses and\n" @@ -272,13 +272,13 @@ msgid "" "object library." msgstr "" -#: gnu/packages/audio.scm:1361 +#: gnu/packages/audio.scm:1381 msgid "" "Csound is a user-programmable and user-extensible sound processing\n" "language and software synthesizer." msgstr "" -#: gnu/packages/audio.scm:1388 +#: gnu/packages/audio.scm:1408 msgid "" "midicomp can manipulate SMF (Standard MIDI File) files. It can both\n" " read and write SMF files in 0 or format 1 and also read and write its own\n" @@ -287,20 +287,20 @@ msgid "" " language, and recompiled back into a binary SMF file." msgstr "" -#: gnu/packages/audio.scm:1435 +#: gnu/packages/audio.scm:1455 msgid "" "clalsadrv is a C++ wrapper around the ALSA API simplifying access to\n" "ALSA PCM devices." msgstr "" -#: gnu/packages/audio.scm:1474 +#: gnu/packages/audio.scm:1494 msgid "" "The AMB plugins are a set of LADSPA ambisonics plugins, mainly to be\n" "used within Ardour. Features include: mono and stereo to B-format panning,\n" "horizontal rotator, square, hexagon and cube decoders." msgstr "" -#: gnu/packages/audio.scm:1511 +#: gnu/packages/audio.scm:1531 msgid "" "This package provides various LADSPA plugins. @code{cs_chorus} and\n" "@code{cs_phaser} provide chorus and phaser effects, respectively;\n" @@ -310,13 +310,13 @@ msgid "" "the non-linear circuit elements of their original analog counterparts." msgstr "" -#: gnu/packages/audio.scm:1551 +#: gnu/packages/audio.scm:1571 msgid "" "This package provides a stereo reverb LADSPA plugin based on the\n" "well-known greverb." msgstr "" -#: gnu/packages/audio.scm:1587 +#: gnu/packages/audio.scm:1607 msgid "" "This package provides a LADSPA plugin for a four-band parametric\n" "equalizer. Each section has an active/bypass switch, frequency, bandwidth and\n" @@ -331,13 +331,13 @@ msgid "" "for stage use." msgstr "" -#: gnu/packages/audio.scm:1632 +#: gnu/packages/audio.scm:1652 msgid "" "This package provides a LADSPA plugin to manipulate the stereo width of\n" "audio signals." msgstr "" -#: gnu/packages/audio.scm:1669 +#: gnu/packages/audio.scm:1689 msgid "" "The @code{blvco} LADSPA plugin provides three anti-aliased oscillators:\n" "\n" @@ -352,17 +352,17 @@ msgid "" "output of analog synthesizers such as the Moog Voyager." msgstr "" -#: gnu/packages/audio.scm:1713 +#: gnu/packages/audio.scm:1733 msgid "" "This package provides a LADSPA plugin for a Wah effect with envelope\n" "follower." msgstr "" -#: gnu/packages/audio.scm:1749 +#: gnu/packages/audio.scm:1769 msgid "This package provides a LADSPA plugin for a stereo reverb effect." msgstr "" -#: gnu/packages/audio.scm:1791 +#: gnu/packages/audio.scm:1811 msgid "" "FluidSynth is a real-time software synthesizer based on the SoundFont 2\n" "specifications. FluidSynth reads and handles MIDI events from the MIDI input\n" @@ -370,21 +370,21 @@ msgid "" "also play midifiles using a Soundfont." msgstr "" -#: gnu/packages/audio.scm:1814 +#: gnu/packages/audio.scm:1834 msgid "FAAD2 is an MPEG-4 and MPEG-2 AAC decoder supporting LC, Main, LTP, SBR, -PS, and DAB+." msgstr "" -#: gnu/packages/audio.scm:1855 +#: gnu/packages/audio.scm:1875 msgid "Faust is a programming language for realtime audio signal processing." msgstr "" -#: gnu/packages/audio.scm:1919 +#: gnu/packages/audio.scm:1939 msgid "" "FreePats is a project to create a free and open set of GUS compatible\n" "patches that can be used with softsynths such as Timidity and WildMidi." msgstr "" -#: gnu/packages/audio.scm:1972 +#: gnu/packages/audio.scm:1992 msgid "" "Guitarix is a virtual guitar amplifier running JACK.\n" "Guitarix takes the signal from your guitar as a mono-signal from your sound\n" @@ -395,7 +395,7 @@ msgid "" "auto-wah." msgstr "" -#: gnu/packages/audio.scm:2028 +#: gnu/packages/audio.scm:2048 msgid "" "Rakarrack is a richly featured multi-effects processor emulating a\n" "guitar effects pedalboard. Effects include compressor, expander, noise gate,\n" @@ -407,14 +407,14 @@ msgid "" "well suited to all musical instruments and vocals." msgstr "" -#: gnu/packages/audio.scm:2084 +#: gnu/packages/audio.scm:2104 msgid "" "IR is a low-latency, real-time, high performance signal convolver\n" "especially for creating reverb effects. It supports impulse responses with 1,\n" "2 or 4 channels, in any soundfile format supported by libsndfile." msgstr "" -#: gnu/packages/audio.scm:2124 +#: gnu/packages/audio.scm:2144 msgid "" "JACK is a low-latency audio server. It can connect a number of\n" "different applications to an audio device, as well as allowing them to share\n" @@ -424,20 +424,20 @@ msgid "" "synchronous execution of all clients, and low latency operation." msgstr "" -#: gnu/packages/audio.scm:2220 +#: gnu/packages/audio.scm:2240 msgid "" "Jalv is a simple but fully featured LV2 host for JACK. It runs LV2\n" "plugins and exposes their ports as JACK ports, essentially making any LV2\n" "plugin function as a JACK application." msgstr "" -#: gnu/packages/audio.scm:2266 +#: gnu/packages/audio.scm:2286 msgid "" "LADSPA is a standard that allows software audio processors and effects\n" "to be plugged into a wide range of audio synthesis and recording packages." msgstr "" -#: gnu/packages/audio.scm:2318 +#: gnu/packages/audio.scm:2338 msgid "" "LASH is a session management system for audio applications. It allows\n" "you to save and restore audio sessions consisting of multiple interconneced\n" @@ -445,7 +445,7 @@ msgid "" "connections between them." msgstr "" -#: gnu/packages/audio.scm:2341 +#: gnu/packages/audio.scm:2361 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is\n" "designed to improve headphone listening of stereo audio records. Recommended\n" @@ -453,7 +453,7 @@ msgid "" "essential distortions." msgstr "" -#: gnu/packages/audio.scm:2364 +#: gnu/packages/audio.scm:2384 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and\n" "plugins is designed to improve headphone listening of stereo audio records.\n" @@ -462,13 +462,13 @@ msgid "" "with applications that support them (e.g. PulseAudio)." msgstr "" -#: gnu/packages/audio.scm:2390 +#: gnu/packages/audio.scm:2410 msgid "" "liblo is a lightweight library that provides an easy to use\n" "implementation of the Open Sound Control (@dfn{OSC}) protocol." msgstr "" -#: gnu/packages/audio.scm:2426 +#: gnu/packages/audio.scm:2446 msgid "" "RtAudio is a set of C++ classes that provides a common API for real-time\n" "audio input/output. It was designed with the following objectives:\n" @@ -487,13 +487,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/audio.scm:2462 +#: gnu/packages/audio.scm:2482 msgid "" "This package provides bindings for PortAudio v19, the\n" "cross-platform audio input/output stream library." msgstr "" -#: gnu/packages/audio.scm:2489 +#: gnu/packages/audio.scm:2509 msgid "" "Pyliblo is a Python wrapper for the liblo Open Sound Control (OSC)\n" "library. It supports almost the complete functionality of liblo, allowing you\n" @@ -501,13 +501,13 @@ msgid "" "included are the command line utilities @code{send_osc} and @code{dump_osc}." msgstr "" -#: gnu/packages/audio.scm:2526 +#: gnu/packages/audio.scm:2546 msgid "" "This package provides python bindings for libsndfile based on\n" "CFFI and NumPy." msgstr "" -#: gnu/packages/audio.scm:2544 +#: gnu/packages/audio.scm:2564 msgid "" "This package provides a python API to read and write MIDI\n" "files." @@ -515,7 +515,7 @@ msgstr "" "이 꾸러미는 파이썬 API를 미디 파일 읽기와 쓰기는데\n" "제공합니다." -#: gnu/packages/audio.scm:2581 +#: gnu/packages/audio.scm:2601 msgid "" "@command{audio-to-midi} converts audio files to multichannel\n" "MIDI files. It accomplishes this by performing FFTs on all channels of the\n" @@ -525,14 +525,14 @@ msgid "" "frequencies. This data is then formatted to MIDI and written to disk." msgstr "" -#: gnu/packages/audio.scm:2624 +#: gnu/packages/audio.scm:2644 msgid "" "Lilv is a C library to make the use of LV2 plugins as simple as possible\n" "for applications. Lilv is the successor to SLV2, rewritten to be\n" "significantly faster and have minimal dependencies." msgstr "" -#: gnu/packages/audio.scm:2652 +#: gnu/packages/audio.scm:2672 msgid "" "LV2 is an open specification for audio plugins and host applications.\n" "At its core, LV2 is a simple stable interface, accompanied by extensions which\n" @@ -540,22 +540,22 @@ msgid "" "software." msgstr "" -#: gnu/packages/audio.scm:2688 +#: gnu/packages/audio.scm:2708 msgid "An LV2 port of the mda Piano VSTi." msgstr "mda Piano VSTi의 LV2 포트." -#: gnu/packages/audio.scm:2702 +#: gnu/packages/audio.scm:2722 msgid "An LV2 port of the mda EPiano VSTi." msgstr "mda EPiano VSTi의 VL2 포트." -#: gnu/packages/audio.scm:2732 +#: gnu/packages/audio.scm:2752 msgid "" "The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and\n" "extensions into easy to use C++ classes. It is the successor of\n" "lv2-c++-tools." msgstr "" -#: gnu/packages/audio.scm:2774 +#: gnu/packages/audio.scm:2794 msgid "" "OpenAL provides capabilities for playing audio in a virtual 3D\n" "environment. Distance attenuation, doppler shift, and directional sound\n" @@ -565,36 +565,36 @@ msgid "" "buffers, and audio capture." msgstr "" -#: gnu/packages/audio.scm:2805 +#: gnu/packages/audio.scm:2825 msgid "freealut is the OpenAL Utility Toolkit." msgstr "freealut는 OpenAL 유틸리티 툴킷입니다." -#: gnu/packages/audio.scm:2837 +#: gnu/packages/audio.scm:2857 msgid "" "Patchage is a modular patch bay for audio and MIDI systems based on JACK\n" "and ALSA." msgstr "" -#: gnu/packages/audio.scm:2862 +#: gnu/packages/audio.scm:2882 msgid "" "The Portable C Audio Library (pcaudiolib) provides a C@tie{}API to\n" "different audio devices such as ALSA or PulseAudio." msgstr "" -#: gnu/packages/audio.scm:2889 +#: gnu/packages/audio.scm:2909 msgid "" "Control a Jack server. Allows you to plug various sources\n" "into various outputs and to start, stop and configure jackd" msgstr "" -#: gnu/packages/audio.scm:2921 +#: gnu/packages/audio.scm:2941 msgid "" "QJackRcd is a simple graphical stereo recorder for JACK\n" "supporting silence processing for automatic pause, file splitting, and\n" "background file post-processing." msgstr "" -#: gnu/packages/audio.scm:3029 +#: gnu/packages/audio.scm:3049 msgid "" "SuperCollider is a synthesis engine (@code{scsynth} or\n" "@code{supernova}) and programming language (@code{sclang}). It can be used\n" @@ -606,19 +606,19 @@ msgid "" "using Guix System." msgstr "" -#: gnu/packages/audio.scm:3057 +#: gnu/packages/audio.scm:3077 #, fuzzy #| msgid "This package provides Steve Harris's LADSPA plugins." msgid "This package provides libshout plus IDJC extensions." msgstr "이 꾸러미는 스티브 해리스씨의 LADSPA 플러그인을 제공합니다." -#: gnu/packages/audio.scm:3083 +#: gnu/packages/audio.scm:3103 msgid "" "Raul (Real-time Audio Utility Library) is a C++ utility library primarily\n" "aimed at audio/musical applications." msgstr "" -#: gnu/packages/audio.scm:3119 +#: gnu/packages/audio.scm:3139 msgid "" "This package contains the @command{resample} and\n" "@command{windowfilter} command line utilities. The @command{resample} command\n" @@ -627,26 +627,26 @@ msgid "" "filters using the so-called @emph{window method}." msgstr "" -#: gnu/packages/audio.scm:3160 +#: gnu/packages/audio.scm:3180 msgid "" "Rubber Band is a library and utility program that permits changing the\n" "tempo and pitch of an audio recording independently of one another." msgstr "" -#: gnu/packages/audio.scm:3184 +#: gnu/packages/audio.scm:3204 msgid "" "RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut, and API specific\n" "classes) that provide a common cross-platform API for realtime MIDI\n" "input/output." msgstr "" -#: gnu/packages/audio.scm:3210 +#: gnu/packages/audio.scm:3230 msgid "" "Sratom is a library for serialising LV2 atoms to/from RDF, particularly\n" "the Turtle syntax." msgstr "" -#: gnu/packages/audio.scm:3238 +#: gnu/packages/audio.scm:3258 msgid "" "Suil is a lightweight C library for loading and wrapping LV2 plugin UIs.\n" "\n" @@ -658,13 +658,13 @@ msgid "" "Suil currently supports every combination of Gtk, Qt, and X11." msgstr "" -#: gnu/packages/audio.scm:3270 +#: gnu/packages/audio.scm:3290 msgid "" "@code{libebur128} is a C library that implements the EBU R 128 standard\n" "for loudness normalisation." msgstr "" -#: gnu/packages/audio.scm:3324 +#: gnu/packages/audio.scm:3344 msgid "" "TiMidity++ is a software synthesizer. It can play MIDI files by\n" "converting them into PCM waveform data; give it a MIDI data along with digital\n" @@ -673,33 +673,33 @@ msgid "" "disks as various audio file formats." msgstr "" -#: gnu/packages/audio.scm:3364 +#: gnu/packages/audio.scm:3384 msgid "" "Vamp is an audio processing plugin system for plugins that extract\n" "descriptive information from audio data — typically referred to as audio\n" "analysis plugins or audio feature extraction plugins." msgstr "" -#: gnu/packages/audio.scm:3408 +#: gnu/packages/audio.scm:3428 msgid "" "SBSMS (Subband Sinusoidal Modeling Synthesis) is software for time\n" "stretching and pitch scaling of audio. This package contains the library." msgstr "" -#: gnu/packages/audio.scm:3435 +#: gnu/packages/audio.scm:3455 msgid "" "@code{libkeyfinder} is a small C++11 library for estimating the musical\n" "key of digital audio." msgstr "" -#: gnu/packages/audio.scm:3465 +#: gnu/packages/audio.scm:3485 msgid "" "WavPack is an audio compression format with lossless, lossy and hybrid\n" "compression modes. This package contains command-line programs and library to\n" "encode and decode wavpack files." msgstr "" -#: gnu/packages/audio.scm:3486 +#: gnu/packages/audio.scm:3506 msgid "" "Libmodplug renders mod music files as raw audio data, for playing or\n" "conversion. mod, .s3m, .it, .xm, and a number of lesser-known formats are\n" @@ -707,21 +707,21 @@ msgid "" "surround and reverb." msgstr "" -#: gnu/packages/audio.scm:3507 +#: gnu/packages/audio.scm:3527 msgid "" "Libxmp is a library that renders module files to PCM data. It supports\n" "over 90 mainstream and obscure module formats including Protracker (MOD),\n" "Scream Tracker 3 (S3M), Fast Tracker II (XM), and Impulse Tracker (IT)." msgstr "" -#: gnu/packages/audio.scm:3531 +#: gnu/packages/audio.scm:3551 msgid "" "Xmp is a portable module player that plays over 90 mainstream and\n" "obscure module formats, including Protracker MOD, Fasttracker II XM, Scream\n" "Tracker 3 S3M and Impulse Tracker IT files." msgstr "" -#: gnu/packages/audio.scm:3556 +#: gnu/packages/audio.scm:3576 msgid "" "SoundTouch is an audio processing library for changing the tempo, pitch\n" "and playback rates of audio streams or audio files. It is intended for\n" @@ -729,7 +729,7 @@ msgid "" "control functionality, or just for playing around with the sound effects." msgstr "" -#: gnu/packages/audio.scm:3595 +#: gnu/packages/audio.scm:3615 msgid "" "SoX (Sound eXchange) is a command line utility that can convert\n" "various formats of computer audio files to other formats. It can also\n" @@ -737,60 +737,60 @@ msgid "" "can play and record audio files." msgstr "" -#: gnu/packages/audio.scm:3620 +#: gnu/packages/audio.scm:3640 msgid "" "The SoX Resampler library (libsoxr) performs one-dimensional sample-rate\n" "conversion. It may be used, for example, to resample PCM-encoded audio." msgstr "" -#: gnu/packages/audio.scm:3643 +#: gnu/packages/audio.scm:3663 msgid "" "TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder based on\n" "tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code and\n" "portions of LAME." msgstr "" -#: gnu/packages/audio.scm:3699 +#: gnu/packages/audio.scm:3719 msgid "" "PortAudio is a portable C/C++ audio I/O library providing a simple API\n" "to record and/or play sound using a callback function or a blocking read/write\n" "interface." msgstr "" -#: gnu/packages/audio.scm:3728 +#: gnu/packages/audio.scm:3748 msgid "" "Qsynth is a GUI front-end application for the FluidSynth SoundFont\n" "synthesizer written in C++." msgstr "" -#: gnu/packages/audio.scm:3767 +#: gnu/packages/audio.scm:3787 msgid "" "RSound allows you to send audio from an application and transfer it\n" "directly to a different computer on your LAN network. It is an audio daemon\n" "with a much different focus than most other audio daemons." msgstr "" -#: gnu/packages/audio.scm:3797 +#: gnu/packages/audio.scm:3817 msgid "" "XJackFreak is an audio analysis and equalizing tool for the Jack Audio\n" "Connection Kit. It can display the FFT of any input, modify it and output the\n" "result." msgstr "" -#: gnu/packages/audio.scm:3849 +#: gnu/packages/audio.scm:3869 msgid "" "Zita convolver is a C++ library providing a real-time convolution\n" "engine." msgstr "" -#: gnu/packages/audio.scm:3901 +#: gnu/packages/audio.scm:3921 msgid "" "Libzita-resampler is a C++ library for resampling audio signals. It is\n" "designed to be used within a real-time processing context, to be fast, and to\n" "provide high-quality sample rate conversion." msgstr "" -#: gnu/packages/audio.scm:3947 +#: gnu/packages/audio.scm:3967 msgid "" "Zita-alsa-pcmi is a C++ wrapper around the ALSA API. It provides easy\n" "access to ALSA PCM devices, taking care of the many functions required to\n" @@ -798,7 +798,7 @@ msgid "" "point audio data." msgstr "" -#: gnu/packages/audio.scm:3971 +#: gnu/packages/audio.scm:3991 msgid "" "Cuetools is a set of programs that are useful for manipulating\n" "and using CUE sheet (cue) files and Table of Contents (toc) files. CUE and TOC\n" @@ -806,14 +806,14 @@ msgid "" "machine-readable ASCII format." msgstr "" -#: gnu/packages/audio.scm:4000 +#: gnu/packages/audio.scm:4020 msgid "" "mp3guessenc is a command line utility that tries to detect the\n" "encoder used for an MPEG Layer III (MP3) file, as well as scan any MPEG audio\n" "file (any layer) and print a lot of useful information." msgstr "" -#: gnu/packages/audio.scm:4021 +#: gnu/packages/audio.scm:4041 msgid "" "shntool is a multi-purpose WAVE data processing and reporting\n" "utility. File formats are abstracted from its core, so it can process any file\n" @@ -822,46 +822,46 @@ msgid "" "use them split WAVE data into multiple files." msgstr "" -#: gnu/packages/audio.scm:4061 +#: gnu/packages/audio.scm:4081 msgid "" "Dcadec is a DTS Coherent Acoustics surround sound decoder\n" "with support for HD extensions." msgstr "" -#: gnu/packages/audio.scm:4098 +#: gnu/packages/audio.scm:4118 msgid "" "BS1770GAIN is a loudness scanner compliant with ITU-R BS.1770 and its\n" "flavors EBU R128, ATSC A/85, and ReplayGain 2.0. It helps normalizing the\n" "loudness of audio and video files to the same level." msgstr "" -#: gnu/packages/audio.scm:4130 +#: gnu/packages/audio.scm:4150 msgid "" "An easy to use audio filtering library made from webrtc\n" "code, used in @code{libtoxcore}." msgstr "" -#: gnu/packages/audio.scm:4183 +#: gnu/packages/audio.scm:4203 msgid "" "This C library provides an encoder and a decoder for the GSM\n" "06.10 RPE-LTP lossy speech compression algorithm." msgstr "" -#: gnu/packages/audio.scm:4206 +#: gnu/packages/audio.scm:4226 msgid "" "This package contains wrappers for accessing the ALSA API from Python.\n" "It is currently fairly complete for PCM devices, and has some support for\n" "mixers." msgstr "" -#: gnu/packages/audio.scm:4230 +#: gnu/packages/audio.scm:4250 msgid "" "This package provides an encoder for the LDAC\n" "high-resolution Bluetooth audio streaming codec for streaming at up to 990\n" "kbps at 24 bit/96 kHz." msgstr "" -#: gnu/packages/audio.scm:4274 +#: gnu/packages/audio.scm:4294 msgid "" "This project is a rebirth of a direct integration between\n" "Bluez and ALSA. Since Bluez >= 5, the built-in integration has been removed\n" @@ -874,14 +874,14 @@ msgid "" "on the ALSA software PCM plugin." msgstr "" -#: gnu/packages/audio.scm:4340 +#: gnu/packages/audio.scm:4360 msgid "" "Snd is a sound editor modelled loosely after Emacs. It can be\n" "customized and extended using either the s7 Scheme implementation (included in\n" "the Snd sources), Ruby, or Forth." msgstr "" -#: gnu/packages/audio.scm:4369 +#: gnu/packages/audio.scm:4389 msgid "" "Noise Repellent is an LV2 plugin to reduce noise. It has\n" "the following features:\n" @@ -901,31 +901,31 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/audio.scm:4436 +#: gnu/packages/audio.scm:4456 msgid "" "RNNoise is a library that uses deep learning to apply\n" "noise suppression to audio sources with voice presence. This package provides\n" "an LV2 audio plugin." msgstr "" -#: gnu/packages/audio.scm:4480 +#: gnu/packages/audio.scm:4500 msgid "" "@code{cli-visualizer} displays fast-Fourier\n" "transforms (FFTs) of the sound being played, as well as other graphical\n" "representations." msgstr "" -#: gnu/packages/audio.scm:4530 +#: gnu/packages/audio.scm:4550 msgid "" "C.A.V.A. is a bar audio spectrum visualizer for the terminal\n" "using ALSA, MPD, PulseAudio, or a FIFO buffer as its input." msgstr "" -#: gnu/packages/audio.scm:4564 +#: gnu/packages/audio.scm:4584 msgid "Fluid-3 is Frank Wen's pro-quality GM soundfont." msgstr "" -#: gnu/packages/audio.scm:4586 +#: gnu/packages/audio.scm:4606 msgid "" "FDK is a library for encoding and decoding Advanced Audio\n" "Coding (AAC) format audio, developed by Fraunhofer IIS, and included as part of\n" @@ -936,20 +936,20 @@ msgid "" " surround)." msgstr "" -#: gnu/packages/audio.scm:4626 +#: gnu/packages/audio.scm:4646 msgid "" "OpenShot Audio Library (libopenshot-audio) allows\n" "high-quality editing and playback of audio, and is based on the JUCE\n" "library." msgstr "" -#: gnu/packages/audio.scm:4652 +#: gnu/packages/audio.scm:4672 msgid "" "FAudio is an XAudio reimplementation that focuses solely on\n" "developing fully accurate DirectX Audio runtime libraries." msgstr "" -#: gnu/packages/audio.scm:4679 +#: gnu/packages/audio.scm:4699 msgid "" "Gnaural is a programmable auditory binaural beat synthesizer\n" "intended to be used for brainwave entrainment. Gnaural supports creation of\n" @@ -958,20 +958,20 @@ msgid "" "other Gnaural instances, allowing synchronous sessions between many users." msgstr "" -#: gnu/packages/audio.scm:4714 +#: gnu/packages/audio.scm:4734 msgid "" "DarkIce is a live audio streamer. It takes audio input from\n" "a sound card, encodes it into Ogg Vorbis and/or mp3, and sends the audio\n" "stream to one or more IceCast and/or ShoutCast servers." msgstr "" -#: gnu/packages/audio.scm:4738 +#: gnu/packages/audio.scm:4758 msgid "" "Libltc is a POSIX-C Library for handling\n" "@dfn{Linear/Longitudinal Time Code} (LTC) data." msgstr "" -#: gnu/packages/audio.scm:4772 +#: gnu/packages/audio.scm:4792 msgid "" "TTA performs lossless compression on multichannel 8,16 and 24 bits\n" "data of the Wav audio files. Being lossless means that no data-\n" @@ -982,14 +982,14 @@ msgid "" "supports both of ID3v1/v2 and APEv2 tags." msgstr "" -#: gnu/packages/audio.scm:4805 +#: gnu/packages/audio.scm:4825 msgid "" "@code{libsoundio} is a C library providing audio input and\n" "output. The API is suitable for real-time software such as digital audio\n" "workstations as well as consumer software such as music players." msgstr "" -#: gnu/packages/audio.scm:4831 +#: gnu/packages/audio.scm:4851 msgid "" "Redkite is a small GUI toolkit developed in C++17 and\n" "inspired from other well known GUI toolkits such as Qt and GTK. It is\n" @@ -998,7 +998,7 @@ msgid "" "as is the case with audio plugins." msgstr "" -#: gnu/packages/audio.scm:4903 +#: gnu/packages/audio.scm:4923 msgid "" "Carla is a modular audio plugin host, with features like\n" "transport control, automation of parameters via MIDI CC and remote control\n" @@ -1007,7 +1007,7 @@ msgid "" "default and preferred audio driver but also supports native drivers like ALSA." msgstr "" -#: gnu/packages/audio.scm:4939 +#: gnu/packages/audio.scm:4959 msgid "" "Ecasound is a software package designed for multitrack audio\n" "processing. It can be used for simple tasks like audio playback, recording and\n" @@ -1019,28 +1019,28 @@ msgid "" "in the package." msgstr "" -#: gnu/packages/audio.scm:4977 +#: gnu/packages/audio.scm:4997 msgid "" "libaudec is a wrapper library over ffmpeg, sndfile and\n" "libsamplerate for reading and resampling audio files, based on Robin Gareus'\n" "@code{audio_decoder} code." msgstr "" -#: gnu/packages/audio.scm:5007 +#: gnu/packages/audio.scm:5027 msgid "" "lv2lint is an LV2 lint-like tool that checks whether a\n" "given plugin and its UI(s) match up with the provided metadata and adhere\n" "to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5041 +#: gnu/packages/audio.scm:5061 msgid "" "lv2toweb allows the user to create an xhtml page with information\n" "about the given LV2 plugin, provided that the plugin and its UI(s) match up\n" "with the provided metadata and adhere to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5069 +#: gnu/packages/audio.scm:5089 msgid "" "ZToolkit (Ztk) is a cross-platform GUI toolkit heavily\n" "inspired by GTK. It handles events and low level drawing on behalf of\n" @@ -1050,7 +1050,7 @@ msgid "" "minimum." msgstr "" -#: gnu/packages/audio.scm:5102 +#: gnu/packages/audio.scm:5122 msgid "" "libInstPatch is a library for processing digital sample based MIDI\n" "instrument \"patch\" files. The types of files libInstPatch supports are used\n" @@ -1059,28 +1059,28 @@ msgid "" "edited, converted, compressed and saved." msgstr "" -#: gnu/packages/audio.scm:5149 +#: gnu/packages/audio.scm:5169 msgid "" "The LSP DSP library provides a set of functions that perform\n" "SIMD-optimized computing on several hardware architectures. All functions\n" "currently operate on IEEE-754 single-precision floating-point numbers." msgstr "" -#: gnu/packages/audio.scm:5180 +#: gnu/packages/audio.scm:5200 msgid "" "Codec 2 is a speech codec designed for communications quality speech\n" "between 700 and 3200 bit/s. The main application is low bandwidth HF/VHF\n" "digital radio." msgstr "" -#: gnu/packages/audio.scm:5206 +#: gnu/packages/audio.scm:5226 msgid "" "The mbelib library provides support for the 7200x4400 bit/s codec used\n" "in P25 Phase 1, the 7100x4400 bit/s codec used in ProVoice and the @emph{Half\n" "Rate} 3600x2250 bit/s vocoder used in various radio systems." msgstr "" -#: gnu/packages/audio.scm:5299 +#: gnu/packages/audio.scm:5319 msgid "" "Ableton Link is a C++ library that synchronizes musical beat, tempo, and phase\n" "across multiple applications running on one or more devices. Applications on devices\n" @@ -1089,20 +1089,20 @@ msgid "" "while still staying in time." msgstr "" -#: gnu/packages/audio.scm:5360 +#: gnu/packages/audio.scm:5380 msgid "" "Butt is a tool to stream audio to a ShoutCast or\n" "Icecast server." msgstr "" -#: gnu/packages/audio.scm:5406 +#: gnu/packages/audio.scm:5426 msgid "" "siggen is a set of tools for imitating a laboratory signal\n" "generator, generating audio signals out of Linux's /dev/dsp audio\n" "device. There is support for mono and/or stereo and 8 or 16 bit samples." msgstr "" -#: gnu/packages/audio.scm:5453 +#: gnu/packages/audio.scm:5473 msgid "" "@code{python-pysox} is a wrapper around the @command{sox}\n" "command line tool. The API offers @code{Transformer} and @code{Combiner}\n" @@ -1112,7 +1112,7 @@ msgid "" "and much more." msgstr "" -#: gnu/packages/audio.scm:5492 +#: gnu/packages/audio.scm:5512 msgid "" "@code{python-resampy} implements the band-limited sinc interpolation\n" "method for sampling rate conversion as described by Julius O. Smith at the\n" @@ -1120,34 +1120,34 @@ msgid "" "Home Page}." msgstr "" -#: gnu/packages/audio.scm:5528 +#: gnu/packages/audio.scm:5548 msgid "" "@code{librosa} is a python package for music and audio analysis. It\n" "provides the building blocks necessary to create music information retrieval\n" "systems." msgstr "" -#: gnu/packages/audio.scm:5561 +#: gnu/packages/audio.scm:5581 msgid "" "MDA-LV2 is an LV2 port of the MDA plugins. It includes effects and a few\n" "instrument plugins." msgstr "" -#: gnu/packages/audio.scm:5593 +#: gnu/packages/audio.scm:5613 msgid "" "The Odio SACD shared library is a decoding engine which takes a Super\n" "Audio CD source and extracts a 24-bit high resolution WAV file. It handles\n" "both DST and DSD streams." msgstr "" -#: gnu/packages/audio.scm:5618 +#: gnu/packages/audio.scm:5638 msgid "" "Odio SACD is a command-line application which takes a Super Audio CD\n" "source and extracts a 24-bit high resolution WAV file. It handles both DST\n" "and DSD streams." msgstr "" -#: gnu/packages/backup.scm:155 +#: gnu/packages/backup.scm:165 msgid "" "Duplicity backs up directories by producing encrypted tar-format volumes\n" "and uploading them to a remote or local file server. Because duplicity uses\n" @@ -1157,7 +1157,7 @@ msgid "" "spying and/or modification by the server." msgstr "" -#: gnu/packages/backup.scm:180 +#: gnu/packages/backup.scm:190 msgid "" "Par2cmdline uses Reed-Solomon error-correcting codes to\n" "generate and verify PAR2 recovery files. These files can be distributed\n" @@ -1169,7 +1169,7 @@ msgid "" "can even repair them." msgstr "" -#: gnu/packages/backup.scm:219 +#: gnu/packages/backup.scm:229 msgid "" "Hdup2 is a backup utility, its aim is to make backup really simple. The\n" "backup scheduling is done by means of a cron job. It supports an\n" @@ -1177,7 +1177,7 @@ msgid "" "backups (called chunks) to allow easy burning to CD/DVD." msgstr "" -#: gnu/packages/backup.scm:316 +#: gnu/packages/backup.scm:326 msgid "" "Libarchive provides a flexible interface for reading and writing\n" "archives in various formats such as tar and cpio. Libarchive also supports\n" @@ -1188,7 +1188,7 @@ msgid "" "random access nor for in-place modification." msgstr "" -#: gnu/packages/backup.scm:380 +#: gnu/packages/backup.scm:390 msgid "" "Rdup is a utility inspired by rsync and the plan9 way of doing backups.\n" "Rdup itself does not backup anything, it only print a list of absolute\n" @@ -1196,7 +1196,7 @@ msgid "" "list and implement the backup strategy." msgstr "" -#: gnu/packages/backup.scm:419 +#: gnu/packages/backup.scm:429 msgid "" "SnapRAID backs up files stored across multiple storage devices, such as\n" "disk arrays, in an efficient way reminiscent of its namesake @acronym{RAID,\n" @@ -1222,7 +1222,7 @@ msgid "" "remain fully idle, saving power and producing less noise." msgstr "" -#: gnu/packages/backup.scm:469 +#: gnu/packages/backup.scm:479 msgid "" "Btar is a tar-compatible archiver which allows arbitrary compression and\n" "ciphering, redundancy, differential backup, indexed extraction, multicore\n" @@ -1230,7 +1230,7 @@ msgid "" "errors." msgstr "" -#: gnu/packages/backup.scm:496 +#: gnu/packages/backup.scm:506 msgid "" "Rdiff-backup backs up one directory to another, possibly over a network.\n" "The target directory ends up a copy of the source directory, but extra reverse\n" @@ -1245,7 +1245,7 @@ msgid "" "rdiff-backup is easy to use and settings have sensible defaults." msgstr "" -#: gnu/packages/backup.scm:532 +#: gnu/packages/backup.scm:542 msgid "" "rsnapshot is a file system snapshot utility based on rsync.\n" "rsnapshot makes it easy to make periodic snapshots of local machines, and\n" @@ -1253,7 +1253,7 @@ msgid "" "rsnapshot uses hard links to deduplicate identical files." msgstr "" -#: gnu/packages/backup.scm:610 +#: gnu/packages/backup.scm:620 msgid "" "Libchop is a set of utilities and library for data backup and\n" "distributed storage. Its main application is @command{chop-backup}, an\n" @@ -1264,17 +1264,17 @@ msgid "" "detection, and lossless compression." msgstr "" -#: gnu/packages/backup.scm:740 +#: gnu/packages/backup.scm:750 msgid "" "Borg is a deduplicating backup program. Optionally, it\n" "supports compression and authenticated encryption. The main goal of Borg is to\n" "provide an efficient and secure way to backup data. The data deduplication\n" "technique used makes Borg suitable for daily backups since only changes are\n" -"stored. The authenticated encryption technique makes it suitable for backups\n" -"to not fully trusted targets. Borg is a fork of Attic." +"stored. The authenticated encryption technique makes it suitable for\n" +"storing backups on untrusted computers." msgstr "" -#: gnu/packages/backup.scm:771 +#: gnu/packages/backup.scm:781 msgid "" "wimlib is a C library and set of command-line utilities for\n" "creating, modifying, extracting, and mounting archives in the Windows Imaging\n" @@ -1282,14 +1282,14 @@ msgid "" "NTFS volumes using @code{ntfs-3g}, preserving NTFS-specific attributes." msgstr "" -#: gnu/packages/backup.scm:879 +#: gnu/packages/backup.scm:889 msgid "" "With dirvish you can maintain a set of complete images of your\n" "file systems with unattended creation and expiration. A dirvish backup vault\n" "is like a time machine for your data." msgstr "" -#: gnu/packages/backup.scm:974 +#: gnu/packages/backup.scm:984 msgid "" "Restic is a program that does backups right and was designed\n" "with the following principles in mind:\n" @@ -1321,7 +1321,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/backup.scm:1025 +#: gnu/packages/backup.scm:1035 msgid "" "ZBackup is a globally-deduplicating backup tool, based on the\n" "ideas found in Rsync. Feed a large @file{.tar} into it, and it will\n" @@ -1334,7 +1334,7 @@ msgid "" "is format-agnostic, so you can feed virtually any files to it." msgstr "" -#: gnu/packages/backup.scm:1061 +#: gnu/packages/backup.scm:1071 msgid "" "Dump examines files in a file system, determines which ones\n" "need to be backed up, and copies those files to a specified disk, tape or\n" @@ -1345,14 +1345,44 @@ msgid "" "interactive mode." msgstr "" -#: gnu/packages/backup.scm:1105 +#: gnu/packages/backup.scm:1131 +msgid "" +"Btrbk is a backup tool for Btrfs subvolumes, taking\n" +"advantage of Btrfs specific capabilities to create atomic snapshots and\n" +"transfer them incrementally to your backup locations. The source and target\n" +"locations are specified in a config file, which allows easily configuring\n" +"simple scenarios like e.g. a @i{laptop with locally attached backup disks}, as\n" +"well as more complex ones, e.g. a @i{server receiving backups from several\n" +"hosts via SSH, with different retention policy}. It has features such as:\n" +"@itemize\n" +"@item atomic snapshots\n" +"@item incremental backups\n" +"@item flexible retention policy\n" +"@item backups to multiple destinations\n" +"@item transfer via SSH\n" +"@item resume backups (for removable and mobile devices)\n" +"@item archive to offline storage\n" +"@item encrypted backups to non-btrfs storage\n" +"@item wildcard subvolumes (useful for Docker and LXC containers)\n" +"@item transaction log\n" +"@item comprehensive list and statistics output\n" +"@item resolve and trace Btrfs parent-child and received-from relationships\n" +"@item list file changes between backups\n" +"@item calculate accurate disk space usage based on block regions.\n" +"@end itemize\n" +"Btrbk is designed to run as a cron job for triggering periodic snapshots and\n" +"backups, as well as from the command line (e.g. for instantly creating\n" +"additional snapshots)." +msgstr "" + +#: gnu/packages/backup.scm:1194 msgid "" "Burp is a network backup and restore program. It attempts\n" "to reduce network traffic and the amount of space that is used by each\n" "backup." msgstr "" -#: gnu/packages/backup.scm:1136 +#: gnu/packages/backup.scm:1225 msgid "" "Disarchive can disassemble software archives into data\n" "and metadata. The goal is to create a small amount of metadata that\n" @@ -1362,7 +1392,7 @@ msgid "" "compression parameters used by Gzip." msgstr "" -#: gnu/packages/backup.scm:1181 +#: gnu/packages/backup.scm:1270 msgid "" "borgmatic is simple, configuration-driven backup software for servers\n" "and workstations. Protect your files with client-side encryption. Backup\n" @@ -1370,6 +1400,14 @@ msgid "" "borgmatic is powered by borg." msgstr "" +#: gnu/packages/backup.scm:1330 +msgid "" +"Vorta is a graphical backup client based on the Borg backup\n" +"tool. It supports the use of remote backup repositories. It can perform\n" +"scheduled backups, and has a graphical tool for browsing and extracting the Borg\n" +"archives." +msgstr "" + #: gnu/packages/base.scm:98 msgid "" "GNU Hello prints the message \"Hello, world!\" and then exits. It\n" @@ -1454,7 +1492,7 @@ msgid "" "change. GNU make offers many powerful extensions over the standard utility." msgstr "" -#: gnu/packages/base.scm:550 +#: gnu/packages/base.scm:558 msgid "" "GNU Binutils is a collection of tools for working with binary files.\n" "Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler.\n" @@ -1464,14 +1502,14 @@ msgid "" "included." msgstr "" -#: gnu/packages/base.scm:694 +#: gnu/packages/base.scm:685 msgid "" "The linker wrapper (or @code{ld-wrapper}) wraps the linker to add any\n" "missing @code{-rpath} flags, and to detect any misuse of libraries outside of\n" "the store." msgstr "" -#: gnu/packages/base.scm:930 +#: gnu/packages/base.scm:921 msgid "" "Any Unix-like operating system needs a C library: the library which\n" "defines the \"system calls\" and other basic facilities such as open, malloc,\n" @@ -1481,21 +1519,21 @@ msgid "" "with the Linux kernel." msgstr "" -#: gnu/packages/base.scm:1057 +#: gnu/packages/base.scm:1048 msgid "" "This package provides all the locales supported by the GNU C Library,\n" "more than 400 in total. To use them set the @code{LOCPATH} environment variable\n" "to the @code{share/locale} sub-directory of this package." msgstr "" -#: gnu/packages/base.scm:1206 +#: gnu/packages/base.scm:1198 msgid "" "The which program finds the location of executables in PATH, with a\n" "variety of options. It is an alternative to the shell \"type\" built-in\n" "command." msgstr "" -#: gnu/packages/base.scm:1329 +#: gnu/packages/base.scm:1321 msgid "" "The Time Zone Database (often called tz or zoneinfo)\n" "contains code and data that represent the history of local time for many\n" @@ -1504,14 +1542,14 @@ msgid "" "and daylight-saving rules." msgstr "" -#: gnu/packages/base.scm:1367 +#: gnu/packages/base.scm:1359 msgid "" "libiconv provides an implementation of the iconv function for systems\n" "that lack it. iconv is used to convert between character encodings in a\n" "program. It supports a wide variety of different encodings." msgstr "" -#: gnu/packages/bittorrent.scm:131 +#: gnu/packages/bittorrent.scm:135 msgid "" "Transmission is a BitTorrent client that comes with graphical,\n" "textual, and Web user interfaces. Transmission also has a daemon for\n" @@ -1519,54 +1557,54 @@ msgid "" "DHT, µTP, PEX and Magnet Links." msgstr "" -#: gnu/packages/bittorrent.scm:165 +#: gnu/packages/bittorrent.scm:169 msgid "" "transmission-remote-gtk is a GTK client for remote management\n" "of the Transmission BitTorrent client, using its HTTP RPC protocol." msgstr "" -#: gnu/packages/bittorrent.scm:187 +#: gnu/packages/bittorrent.scm:191 msgid "" "LibTorrent is a BitTorrent library used by and developed in parallel\n" "with the BitTorrent client rtorrent. It is written in C++ with emphasis on\n" "speed and efficiency." msgstr "" -#: gnu/packages/bittorrent.scm:215 +#: gnu/packages/bittorrent.scm:219 msgid "" "rTorrent is a BitTorrent client with an ncurses interface. It supports\n" "full encryption, DHT, PEX, and Magnet Links. It can also be controlled via\n" "XML-RPC over SCGI." msgstr "" -#: gnu/packages/bittorrent.scm:249 +#: gnu/packages/bittorrent.scm:253 msgid "" "Tremc is a console client, with a curses interface, for the\n" "Transmission BitTorrent daemon." msgstr "" -#: gnu/packages/bittorrent.scm:290 +#: gnu/packages/bittorrent.scm:294 msgid "" "Transmission-remote-cli is a console client, with a curses\n" "interface, for the Transmission BitTorrent daemon. This package is no longer\n" "maintained upstream." msgstr "" -#: gnu/packages/bittorrent.scm:340 +#: gnu/packages/bittorrent.scm:345 msgid "" "Aria2 is a lightweight, multi-protocol & multi-source command-line\n" "download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and Metalink.\n" "Aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces." msgstr "" -#: gnu/packages/bittorrent.scm:374 +#: gnu/packages/bittorrent.scm:381 msgid "" "uGet is portable download manager with GTK+ interface supporting\n" "HTTP, HTTPS, BitTorrent and Metalink, supporting multi-connection\n" "downloads, download scheduling, download rate limiting." msgstr "" -#: gnu/packages/bittorrent.scm:406 +#: gnu/packages/bittorrent.scm:413 msgid "" "mktorrent is a simple command-line utility to create BitTorrent\n" "@dfn{metainfo} files, often known simply as @dfn{torrents}, from both single\n" @@ -1576,14 +1614,14 @@ msgid "" "and will take advantage of multiple processor cores where possible." msgstr "" -#: gnu/packages/bittorrent.scm:457 +#: gnu/packages/bittorrent.scm:472 msgid "" "libtorrent-rasterbar is a feature-complete C++ BitTorrent implementation\n" "focusing on efficiency and scalability. It runs on embedded devices as well as\n" "desktops." msgstr "" -#: gnu/packages/bittorrent.scm:508 +#: gnu/packages/bittorrent.scm:523 msgid "" "qBittorrent is a BitTorrent client programmed in C++/Qt that uses\n" "libtorrent (sometimes called libtorrent-rasterbar) by Arvid Norberg.\n" @@ -1593,7 +1631,7 @@ msgid "" "features." msgstr "" -#: gnu/packages/bittorrent.scm:580 +#: gnu/packages/bittorrent.scm:604 msgid "" "Deluge contains the common features to BitTorrent clients such as\n" "Protocol Encryption, DHT, Local Peer Discovery (LSD), Peer Exchange\n" @@ -1905,7 +1943,16 @@ msgid "" "functionality in a C++ iostream." msgstr "" -#: gnu/packages/compression.scm:1443 +#: gnu/packages/compression.scm:1416 +msgid "" +"Zopfli Compression Algorithm is a compression library\n" +"programmed in C to perform very good, but slow, deflate or zlib compression.\n" +"ZopfliCompress supports the deflate, gzip and zlib output formats. This\n" +"library can only compress, not decompress; existing zlib or deflate libraries\n" +"can decompress the data." +msgstr "" + +#: gnu/packages/compression.scm:1469 msgid "" "ZPAQ is a command-line archiver for realistic situations with\n" "many duplicate and already compressed files. It backs up only those files\n" @@ -1919,13 +1966,13 @@ msgid "" "or junctions, and always follows hard links." msgstr "" -#: gnu/packages/compression.scm:1545 +#: gnu/packages/compression.scm:1571 msgid "" "@command{unshield} is a tool and library for extracting @file{.cab}\n" " archives from InstallShield installers." msgstr "" -#: gnu/packages/compression.scm:1624 +#: gnu/packages/compression.scm:1650 msgid "" "Zstandard (@command{zstd}) is a lossless compression algorithm\n" "that combines very fast operation with a compression ratio comparable to that of\n" @@ -1935,7 +1982,7 @@ msgid "" "speed." msgstr "" -#: gnu/packages/compression.scm:1672 +#: gnu/packages/compression.scm:1698 msgid "" "Parallel Zstandard (PZstandard or @command{pzstd}) is a\n" "multi-threaded implementation of the @uref{http://zstd.net/, Zstandard\n" @@ -1948,7 +1995,7 @@ msgid "" "the actual decompression, the other input and output." msgstr "" -#: gnu/packages/compression.scm:1712 +#: gnu/packages/compression.scm:1738 msgid "" "Zip is a compression and file packaging/archive utility. Zip is useful\n" "for packaging a set of files for distribution, for archiving files, and for\n" @@ -1963,7 +2010,7 @@ msgid "" "Compression ratios of 2:1 to 3:1 are common for text files." msgstr "" -#: gnu/packages/compression.scm:1801 +#: gnu/packages/compression.scm:1827 msgid "" "UnZip is an extraction utility for archives compressed in .zip format,\n" "also called \"zipfiles\".\n" @@ -1974,7 +2021,7 @@ msgid "" "recreates the stored directory structure by default." msgstr "" -#: gnu/packages/compression.scm:1853 +#: gnu/packages/compression.scm:1879 msgid "" "Ziptime helps make @file{.zip} archives reproducible by replacing\n" "timestamps in the file header with a fixed time (1 January 2008).\n" @@ -1983,11 +2030,11 @@ msgid "" "@command{zip} to prevent it from storing the ``universal time'' field." msgstr "" -#: gnu/packages/compression.scm:1880 +#: gnu/packages/compression.scm:1906 msgid "ZZipLib is a library based on zlib for accessing zip files." msgstr "" -#: gnu/packages/compression.scm:1904 +#: gnu/packages/compression.scm:1930 msgid "" "Libzip is a C library for reading, creating, and modifying\n" "zip archives. Files can be added from data buffers, files, or compressed data\n" @@ -1995,7 +2042,7 @@ msgid "" "archive can be reverted." msgstr "" -#: gnu/packages/compression.scm:1937 +#: gnu/packages/compression.scm:1963 msgid "" "The main command is @command{aunpack} which extracts files\n" "from an archive. The other commands provided are @command{apack} (to create\n" @@ -2005,7 +2052,7 @@ msgid "" "of archives." msgstr "" -#: gnu/packages/compression.scm:1963 +#: gnu/packages/compression.scm:1989 msgid "" "Lunzip is a decompressor for files in the lzip compression format (.lz),\n" "written as a single small C tool with no dependencies. This makes it\n" @@ -2015,7 +2062,7 @@ msgid "" "Lunzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:1990 +#: gnu/packages/compression.scm:2016 msgid "" "Clzip is a compressor and decompressor for files in the lzip compression\n" "format (.lz), written as a single small C tool with no dependencies. This makes\n" @@ -2024,7 +2071,7 @@ msgid "" "Clzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:2018 +#: gnu/packages/compression.scm:2044 msgid "" "Lzlib is a C library for in-memory LZMA compression and decompression in\n" "the lzip format. It supports integrity checking of the decompressed data, and\n" @@ -2032,7 +2079,7 @@ msgid "" "corrupted input." msgstr "" -#: gnu/packages/compression.scm:2042 +#: gnu/packages/compression.scm:2068 msgid "" "Plzip is a massively parallel (multi-threaded) lossless data compressor\n" "and decompressor that uses the lzip file format (.lz). Files produced by plzip\n" @@ -2046,13 +2093,13 @@ msgid "" "single-member files which can't be decompressed in parallel." msgstr "" -#: gnu/packages/compression.scm:2074 +#: gnu/packages/compression.scm:2100 msgid "" "innoextract allows extracting Inno Setup installers under\n" "non-Windows systems without running the actual installer using wine." msgstr "" -#: gnu/packages/compression.scm:2096 +#: gnu/packages/compression.scm:2122 msgid "" "ISA-L is a collection of optimized low-level functions\n" "targeting storage applications. ISA-L includes:\n" @@ -2070,7 +2117,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/compression.scm:2156 +#: gnu/packages/compression.scm:2182 msgid "" "This package provides the reference implementation of Brotli,\n" "a generic-purpose lossless compression algorithm that compresses data using a\n" @@ -2082,13 +2129,13 @@ msgid "" "The specification of the Brotli Compressed Data Format is defined in RFC 7932." msgstr "" -#: gnu/packages/compression.scm:2176 +#: gnu/packages/compression.scm:2202 msgid "" "This package provides a Python interface to the @code{brotli}\n" "package, an implementation of the Brotli lossless compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2200 +#: gnu/packages/compression.scm:2226 msgid "" "UCL implements a number of compression algorithms that\n" "achieve an excellent compression ratio while allowing fast decompression.\n" @@ -2098,7 +2145,7 @@ msgid "" "decompression is a little bit slower." msgstr "" -#: gnu/packages/compression.scm:2248 +#: gnu/packages/compression.scm:2274 msgid "" "The Ultimate Packer for eXecutables (UPX) is an executable file\n" "compressor. UPX typically reduces the file size of programs and shared\n" @@ -2106,7 +2153,7 @@ msgid "" "download times, and other distribution and storage costs." msgstr "" -#: gnu/packages/compression.scm:2276 +#: gnu/packages/compression.scm:2302 msgid "" "QuaZIP is a simple C++ wrapper over Gilles Vollant's\n" "ZIP/UNZIP package that can be used to access ZIP archives. It uses\n" @@ -2120,7 +2167,7 @@ msgid "" "reading from and writing to ZIP archives." msgstr "" -#: gnu/packages/compression.scm:2335 +#: gnu/packages/compression.scm:2361 msgid "" "The zchunk compressed file format allows splitting a file\n" "into independent chunks. This makes it possible to retrieve only changed\n" @@ -2143,7 +2190,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/compression.scm:2391 +#: gnu/packages/compression.scm:2417 msgid "" "Zutils is a collection of utilities able to process any combination of\n" "compressed and uncompressed files transparently. If any given file, including\n" @@ -2160,14 +2207,14 @@ msgid "" "at run time, and must be installed separately." msgstr "" -#: gnu/packages/compression.scm:2449 +#: gnu/packages/compression.scm:2475 msgid "" "This package provides a script to unpack self-extracting\n" "archives generated by @command{makeself} or @command{mojo} without running the\n" "possibly untrusted extraction shell script." msgstr "" -#: gnu/packages/compression.scm:2477 +#: gnu/packages/compression.scm:2503 msgid "" "(N)compress provides the original compress and uncompress\n" "programs that used to be the de facto UNIX standard for compressing and\n" @@ -2175,7 +2222,7 @@ msgid "" "file compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2504 +#: gnu/packages/compression.scm:2530 msgid "" "Xarchiver is a front-end to various command line archiving\n" "tools. It uses GTK+ tool-kit and is designed to be desktop-environment\n" @@ -2184,13 +2231,13 @@ msgid "" "archiver is not installed." msgstr "" -#: gnu/packages/compression.scm:2541 +#: gnu/packages/compression.scm:2567 msgid "" "Archive huge numbers of files, or split massive tar archives into smaller\n" "chunks." msgstr "" -#: gnu/packages/compression.scm:2574 +#: gnu/packages/compression.scm:2600 msgid "" "Blosc is a high performance compressor optimized for binary data. It has\n" "been designed to transmit data to the processor cache faster than the\n" @@ -2200,14 +2247,14 @@ msgid "" "computations." msgstr "" -#: gnu/packages/compression.scm:2612 +#: gnu/packages/compression.scm:2638 msgid "" "ECM is a utility that converts ECM files, i.e., CD data files\n" "with their error correction data losslessly rearranged for better compression,\n" "to their original, binary CD format." msgstr "" -#: gnu/packages/compression.scm:2642 +#: gnu/packages/compression.scm:2668 msgid "" "Libdeflate is a library for fast, whole-buffer DEFLATE-based\n" "compression and decompression. The supported formats are:\n" @@ -2219,7 +2266,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/compression.scm:2672 +#: gnu/packages/compression.scm:2698 msgid "" "Tarlz is a massively parallel (multi-threaded) combined implementation of\n" "the tar archiver and the lzip compressor. Tarlz creates, lists, and extracts\n" @@ -2230,7 +2277,7 @@ msgid "" "can append files to the end of such compressed archives." msgstr "" -#: gnu/packages/compression.scm:2706 +#: gnu/packages/compression.scm:2732 msgid "" "The Concise Binary Object Representation (CBOR) is a data format whose\n" "design goals include the possibility of extremely small code size, fairly\n" @@ -2239,17 +2286,17 @@ msgid "" "serializations such as ASN.1 and MessagePack." msgstr "" -#: gnu/packages/compression.scm:2739 +#: gnu/packages/compression.scm:2765 msgid "Fcrackzip is a Zip file password cracker." msgstr "" -#: gnu/packages/databases.scm:211 +#: gnu/packages/databases.scm:216 msgid "" "4store is a RDF/SPARQL store written in C, supporting\n" "either single machines or networked clusters." msgstr "" -#: gnu/packages/databases.scm:255 +#: gnu/packages/databases.scm:260 msgid "" "@code{pg_tmp} creates temporary PostgreSQL databases, suitable for tasks\n" "like running software test suites. Temporary databases created with\n" @@ -2258,14 +2305,14 @@ msgid "" "60)." msgstr "" -#: gnu/packages/databases.scm:281 +#: gnu/packages/databases.scm:286 msgid "" "This package provides a utility for dumping the contents of an\n" "ElasticSearch index to a compressed file and restoring the dumpfile back to an\n" "ElasticSearch server" msgstr "" -#: gnu/packages/databases.scm:433 +#: gnu/packages/databases.scm:438 msgid "" "Firebird is an SQL @acronym{RDBMS, relational database management system}\n" "with rich support for ANSI SQL (e.g., @code{INSERT...RETURNING}) including\n" @@ -2285,20 +2332,20 @@ msgid "" "database later." msgstr "" -#: gnu/packages/databases.scm:506 +#: gnu/packages/databases.scm:511 msgid "" "LevelDB is a fast key-value storage library that provides an ordered\n" "mapping from string keys to string values." msgstr "" -#: gnu/packages/databases.scm:526 +#: gnu/packages/databases.scm:531 msgid "" "Memcached is an in-memory key-value store. It has a small\n" "and generic API, and was originally intended for use with dynamic web\n" "applications." msgstr "" -#: gnu/packages/databases.scm:588 +#: gnu/packages/databases.scm:593 msgid "" "libMemcached is a library to use memcached in C/C++\n" "applications. It comes with a complete reference guide and documentation of\n" @@ -2312,51 +2359,73 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:625 +#: gnu/packages/databases.scm:630 msgid "" "@code{pylibmc} is a client in Python for memcached. It is a wrapper\n" "around TangentOrg’s libmemcached library, and can be used as a drop-in\n" "replacement for the code@{python-memcached} library." msgstr "" -#: gnu/packages/databases.scm:653 +#: gnu/packages/databases.scm:662 +msgid "This is a memcache client library for the Go programming language." +msgstr "" + +#: gnu/packages/databases.scm:685 +#, fuzzy +#| msgid "This package provides an database interface for Perl." +msgid "This package provides memcache client and server functionality." +msgstr "이 꾸러미는 펄을 위한 데이타베이스 연결장치를 제공합니다." + +#: gnu/packages/databases.scm:711 msgid "" "@code{litecli} is a command-line client for SQLite databases that has\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:685 +#: gnu/packages/databases.scm:732 +msgid "" +"This Python package provides an API to execute meta-commands (AKA\n" +"\"special\", or \"backslash commands\") on PostgreSQL." +msgstr "" + +#: gnu/packages/databases.scm:763 +msgid "" +"@code{pgcli} is a command line interface for PostgreSQL with\n" +"autocompletion and syntax highlighting." +msgstr "" + +#: gnu/packages/databases.scm:801 msgid "" "MyCLI is a command line interface for MySQL, MariaDB, and Percona with\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:782 +#: gnu/packages/databases.scm:898 msgid "" "MySQL is a fast, reliable, and easy to use relational database\n" "management system that supports the standardized Structured Query\n" "Language." msgstr "" -#: gnu/packages/databases.scm:1045 +#: gnu/packages/databases.scm:1161 msgid "" "MariaDB is a multi-user and multi-threaded SQL database server, designed\n" "as a drop-in replacement of MySQL." msgstr "" -#: gnu/packages/databases.scm:1070 +#: gnu/packages/databases.scm:1186 msgid "" "The MariaDB Connector/C is used to connect applications\n" "developed in C/C++ to MariaDB and MySQL databases." msgstr "" -#: gnu/packages/databases.scm:1093 +#: gnu/packages/databases.scm:1209 msgid "" "Galera is a wsrep-provider that is used with MariaDB for load-balancing\n" "and high-availability (HA)." msgstr "" -#: gnu/packages/databases.scm:1147 +#: gnu/packages/databases.scm:1263 msgid "" "PostgreSQL is a powerful object-relational database system. It is fully\n" "ACID compliant, has full support for foreign keys, joins, views, triggers, and\n" @@ -2366,19 +2435,27 @@ msgid "" "pictures, sounds, or video." msgstr "" -#: gnu/packages/databases.scm:1269 +#: gnu/packages/databases.scm:1395 +msgid "" +"TimescaleDB is an database designed to make SQL scalable for\n" +"time-series data. It is engineered up from PostgreSQL and packaged as a\n" +"PostgreSQL extension, providing automatic partitioning across time and space\n" +"(partitioning key), as well as full SQL support." +msgstr "" + +#: gnu/packages/databases.scm:1476 msgid "" "@code{pgloader} is a program that can load data or migrate databases from\n" "CSV, DB3, iXF, SQLite, MS-SQL or MySQL to PostgreSQL." msgstr "" -#: gnu/packages/databases.scm:1293 +#: gnu/packages/databases.scm:1500 msgid "" "PyMySQL is a pure-Python MySQL client library, based on PEP 249.\n" "Most public APIs are compatible with @command{mysqlclient} and MySQLdb." msgstr "" -#: gnu/packages/databases.scm:1320 +#: gnu/packages/databases.scm:1527 msgid "" "QDBM is a library of routines for managing a\n" "database. The database is a simple data file containing key-value\n" @@ -2388,7 +2465,7 @@ msgid "" "organized in a hash table or B+ tree." msgstr "" -#: gnu/packages/databases.scm:1357 +#: gnu/packages/databases.scm:1564 msgid "" "GNU Recutils is a set of tools and libraries for creating and\n" "manipulating text-based, human-editable databases. Despite being text-based,\n" @@ -2397,7 +2474,7 @@ msgid "" "types are supported, as is encryption." msgstr "" -#: gnu/packages/databases.scm:1389 +#: gnu/packages/databases.scm:1596 msgid "" "This package provides an Emacs major mode @code{rec-mode}\n" "for working with GNU Recutils text-based, human-editable databases. It\n" @@ -2405,7 +2482,7 @@ msgid "" "including field and record folding." msgstr "" -#: gnu/packages/databases.scm:1457 +#: gnu/packages/databases.scm:1664 msgid "" "RocksDB is a library that forms the core building block for a fast\n" "key-value server, especially suited for storing data on flash drives. It\n" @@ -2416,7 +2493,7 @@ msgid "" "data in a single database. RocksDB is partially based on @code{LevelDB}." msgstr "" -#: gnu/packages/databases.scm:1515 +#: gnu/packages/databases.scm:1722 msgid "" "Sparql-query is a command-line tool for accessing SPARQL\n" "endpoints over HTTP. It has been intentionally designed to @code{feel} similar to\n" @@ -2427,13 +2504,13 @@ msgid "" "for example from a shell script." msgstr "" -#: gnu/packages/databases.scm:1608 +#: gnu/packages/databases.scm:1815 msgid "" "Sqitch is a standalone change management system for database schemas,\n" "which uses SQL to describe changes." msgstr "" -#: gnu/packages/databases.scm:1635 +#: gnu/packages/databases.scm:1842 msgid "" "SQLcrush lets you view and edit a database directly from the text\n" "console through an ncurses interface. You can explore each table's structure,\n" @@ -2441,7 +2518,7 @@ msgid "" "changes." msgstr "" -#: gnu/packages/databases.scm:1673 +#: gnu/packages/databases.scm:1880 msgid "" "TDB is a Trivial Database. In concept, it is very much like GDBM,\n" "and BSD's DB except that it allows multiple simultaneous writers and uses\n" @@ -2449,11 +2526,11 @@ msgid "" "extremely small." msgstr "" -#: gnu/packages/databases.scm:1693 +#: gnu/packages/databases.scm:1900 msgid "This package provides an database interface for Perl." msgstr "이 꾸러미는 펄을 위한 데이타베이스 연결장치를 제공합니다." -#: gnu/packages/databases.scm:1741 +#: gnu/packages/databases.scm:1948 msgid "" "An SQL to OO mapper with an object API inspired by\n" "Class::DBI (with a compatibility layer as a springboard for porting) and a\n" @@ -2465,13 +2542,13 @@ msgid "" "\"ORDER BY\" and \"HAVING\" support." msgstr "" -#: gnu/packages/databases.scm:1770 +#: gnu/packages/databases.scm:1977 msgid "" "DBIx::Class::Cursor::Cached provides a cursor class with\n" "built-in caching support." msgstr "" -#: gnu/packages/databases.scm:1793 +#: gnu/packages/databases.scm:2000 msgid "" "Because the many-to-many relationships are not real\n" "relationships, they can not be introspected with DBIx::Class. Many-to-many\n" @@ -2481,26 +2558,26 @@ msgid "" "introspected and examined." msgstr "" -#: gnu/packages/databases.scm:1852 +#: gnu/packages/databases.scm:2059 msgid "" "DBIx::Class::Schema::Loader automates the definition of a\n" "DBIx::Class::Schema by scanning database table definitions and setting up the\n" "columns, primary keys, unique constraints and relationships." msgstr "" -#: gnu/packages/databases.scm:1876 +#: gnu/packages/databases.scm:2083 msgid "" "This package provides a PostgreSQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." msgstr "" -#: gnu/packages/databases.scm:1914 +#: gnu/packages/databases.scm:2121 msgid "" "This package provides a MySQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." msgstr "" -#: gnu/packages/databases.scm:1934 +#: gnu/packages/databases.scm:2141 msgid "" "DBD::SQLite is a Perl DBI driver for SQLite, that includes\n" "the entire thing in the distribution. So in order to get a fast transaction\n" @@ -2508,14 +2585,14 @@ msgid "" "module, and nothing else." msgstr "" -#: gnu/packages/databases.scm:1959 +#: gnu/packages/databases.scm:2166 msgid "" "@code{MySQL::Config} emulates the @code{load_defaults} function from\n" "libmysqlclient. It will fill an array with long options, ready to be parsed by\n" "@code{Getopt::Long}." msgstr "" -#: gnu/packages/databases.scm:1983 +#: gnu/packages/databases.scm:2190 msgid "" "This module was inspired by the excellent DBIx::Abstract.\n" "While based on the concepts used by DBIx::Abstract, the concepts used have\n" @@ -2525,7 +2602,7 @@ msgid "" "time your data changes." msgstr "" -#: gnu/packages/databases.scm:2010 +#: gnu/packages/databases.scm:2217 msgid "" "This module is nearly identical to @code{SQL::Abstract} 1.81, and exists\n" "to preserve the ability of users to opt into the new way of doing things in\n" @@ -2541,34 +2618,34 @@ msgid "" "your data changes, as this module figures it out." msgstr "" -#: gnu/packages/databases.scm:2043 +#: gnu/packages/databases.scm:2250 msgid "" "This module tries to split any SQL code, even including\n" "non-standard extensions, into the atomic statements it is composed of." msgstr "" -#: gnu/packages/databases.scm:2062 +#: gnu/packages/databases.scm:2269 msgid "" "SQL::Tokenizer is a tokenizer for SQL queries. It does not\n" "claim to be a parser or query verifier. It just creates sane tokens from a\n" "valid SQL query." msgstr "" -#: gnu/packages/databases.scm:2081 +#: gnu/packages/databases.scm:2288 msgid "" "Unixodbc is a library providing an API with which to access\n" "data sources. Data sources include SQL Servers and any software with an ODBC\n" "Driver." msgstr "" -#: gnu/packages/databases.scm:2113 +#: gnu/packages/databases.scm:2320 msgid "" "The goal for nanodbc is to make developers happy by providing\n" "a simpler and less verbose API for working with ODBC. Common tasks should be\n" "easy, requiring concise and simple code." msgstr "" -#: gnu/packages/databases.scm:2174 +#: gnu/packages/databases.scm:2381 msgid "" "UnQLite is an in-process software library which implements a\n" "self-contained, serverless, zero-configuration, transactional NoSQL\n" @@ -2577,27 +2654,35 @@ msgid "" "similar to BerkeleyDB, LevelDB, etc." msgstr "" -#: gnu/packages/databases.scm:2225 +#: gnu/packages/databases.scm:2432 msgid "" "Redis is an advanced key-value cache and store. Redis\n" "supports many data structures including strings, hashes, lists, sets, sorted\n" "sets, bitmaps and hyperloglogs." msgstr "" -#: gnu/packages/databases.scm:2247 +#: gnu/packages/databases.scm:2454 msgid "" "This package provides a Ruby client that tries to match Redis' API\n" "one-to-one, while still providing an idiomatic interface." msgstr "" -#: gnu/packages/databases.scm:2275 +#: gnu/packages/databases.scm:2479 +msgid "Package rdb implements parsing and encoding of the Redis RDB file format." +msgstr "" + +#: gnu/packages/databases.scm:2505 +msgid "Redigo is a Go client for the Redis database." +msgstr "" + +#: gnu/packages/databases.scm:2531 msgid "" "Kyoto Cabinet is a standalone file-based database that supports Hash\n" "and B+ Tree data storage models. It is a fast key-value lightweight\n" "database and supports many programming languages. It is a NoSQL database." msgstr "" -#: gnu/packages/databases.scm:2303 +#: gnu/packages/databases.scm:2559 msgid "" "Tokyo Cabinet is a library of routines for managing a database.\n" "The database is a simple data file containing records, each is a pair of a\n" @@ -2607,7 +2692,7 @@ msgid "" "organized in hash table, B+ tree, or fixed-length array." msgstr "" -#: gnu/packages/databases.scm:2339 +#: gnu/packages/databases.scm:2595 msgid "" "WiredTiger is an extensible platform for data management. It supports\n" "row-oriented storage (where all columns of a row are stored together),\n" @@ -2616,17 +2701,17 @@ msgid "" "trees (LSM), for sustained throughput under random insert workloads." msgstr "" -#: gnu/packages/databases.scm:2389 +#: gnu/packages/databases.scm:2645 msgid "" "This package provides Guile bindings to the WiredTiger ``NoSQL''\n" "database." msgstr "" -#: gnu/packages/databases.scm:2419 +#: gnu/packages/databases.scm:2675 msgid "The DB::File module provides Perl bindings to the Berkeley DB version 1.x." msgstr "" -#: gnu/packages/databases.scm:2467 +#: gnu/packages/databases.scm:2723 msgid "" "The @dfn{Lightning Memory-Mapped Database} (LMDB) is a high-performance\n" "transactional database. Unlike more complex relational databases, LMDB handles\n" @@ -2639,7 +2724,7 @@ msgid "" "virtual address space — not physical RAM." msgstr "" -#: gnu/packages/databases.scm:2501 +#: gnu/packages/databases.scm:2757 msgid "" "@code{lmdbxx} is a comprehensive @code{C++} wrapper for the\n" "@code{LMDB} embedded database library, offering both an error-checked\n" @@ -2647,14 +2732,22 @@ msgid "" "semantics." msgstr "" -#: gnu/packages/databases.scm:2535 +#: gnu/packages/databases.scm:2791 msgid "" "Libpqxx is a C++ library to enable user programs to communicate with the\n" "PostgreSQL database back-end. The database back-end can be local or it may be\n" "on another machine, accessed via TCP/IP." msgstr "" -#: gnu/packages/databases.scm:2561 +#: gnu/packages/databases.scm:2819 +msgid "" +"Bolt is a pure Go key/value store inspired by Howard Chu's\n" +"LMDB project. The goal of the project is to provide a simple, fast, and\n" +"reliable database for projects that don't require a full database server such as\n" +"Postgres or MySQL." +msgstr "" + +#: gnu/packages/databases.scm:2845 msgid "" "Peewee is a simple and small ORM (object-relation mapping) tool. Peewee\n" "handles converting between pythonic values and those used by databases, so you\n" @@ -2663,20 +2756,20 @@ msgid "" "can autogenerate peewee models using @code{pwiz}, a model generator." msgstr "" -#: gnu/packages/databases.scm:2584 +#: gnu/packages/databases.scm:2868 msgid "" "Pypika-tortoise is a fork of pypika which has been\n" "streamlined for its use in the context of tortoise-orm. It removes support\n" "for many database kinds that tortoise-orm doesn't need, for example." msgstr "" -#: gnu/packages/databases.scm:2604 +#: gnu/packages/databases.scm:2888 msgid "" "This package is a Sphinx extension providing additional\n" "coroutine-specific markup." msgstr "" -#: gnu/packages/databases.scm:2632 +#: gnu/packages/databases.scm:2916 msgid "" "@code{asyncpg} is a database interface library designed\n" "specifically for PostgreSQL and Python/asyncio. @code{asyncpg} is an\n" @@ -2684,14 +2777,14 @@ msgid "" "with Python's asyncio framework." msgstr "" -#: gnu/packages/databases.scm:2652 +#: gnu/packages/databases.scm:2936 msgid "" "@code{asyncmy} is a fast @code{asyncio} MySQL driver, which\n" "reuses most of @code{pymysql} and @code{aiomysql} but rewrites the core\n" "protocol with Cython for performance." msgstr "" -#: gnu/packages/databases.scm:2672 +#: gnu/packages/databases.scm:2956 msgid "" "@code{aiomysql} is a driver for accessing a MySQL database\n" "from the @code{asyncio} Python framework. It depends on and reuses most parts\n" @@ -2699,7 +2792,7 @@ msgid "" "@code{aiopg} library." msgstr "" -#: gnu/packages/databases.scm:2705 +#: gnu/packages/databases.scm:2989 msgid "" "Tortoise ORM is an easy-to-use asyncio ORM (Object\n" "Relational Mapper) inspired by Django. Tortoise ORM was built with relations\n" @@ -2708,7 +2801,7 @@ msgid "" "with relational data." msgstr "" -#: gnu/packages/databases.scm:2749 +#: gnu/packages/databases.scm:3033 msgid "" "SQLCipher is an implementation of SQLite, extended to\n" "provide transparent 256-bit AES encryption of database files. Pages are\n" @@ -2717,19 +2810,19 @@ msgid "" "development." msgstr "" -#: gnu/packages/databases.scm:2782 +#: gnu/packages/databases.scm:3066 msgid "" "@code{python-pyodbc-c} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2807 +#: gnu/packages/databases.scm:3091 msgid "" "@code{python-pyodbc} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2840 +#: gnu/packages/databases.scm:3124 msgid "" "MDB Tools is a set of tools and applications to read the\n" "proprietary MDB file format used in Microsoft's Access database package. This\n" @@ -2738,39 +2831,45 @@ msgid "" "etc., and an SQL engine for performing simple SQL queries." msgstr "" -#: gnu/packages/databases.scm:2886 +#: gnu/packages/databases.scm:3153 +#, fuzzy +#| msgid "This package provides an database interface for Perl." +msgid "This package provides a MongoDB driver for Go." +msgstr "이 꾸러미는 펄을 위한 데이타베이스 연결장치를 제공합니다." + +#: gnu/packages/databases.scm:3194 msgid "" "python-lmdb or py-lmdb is a Python binding for the @dfn{Lightning\n" "Memory-Mapped Database} (LMDB), a high-performance key-value store." msgstr "" -#: gnu/packages/databases.scm:2925 +#: gnu/packages/databases.scm:3233 msgid "" "Orator provides a simple ActiveRecord-like Object Relational Mapping\n" "implementation for Python." msgstr "" -#: gnu/packages/databases.scm:2963 +#: gnu/packages/databases.scm:3271 msgid "" "Virtuoso is a scalable cross-platform server that combines\n" "relational, graph, and document data management with web application server\n" "and web services platform functionality." msgstr "" -#: gnu/packages/databases.scm:2990 +#: gnu/packages/databases.scm:3298 msgid "" "Cassandra Cluster Manager is a development tool for testing\n" "local Cassandra clusters. It creates, launches and removes Cassandra clusters\n" "on localhost." msgstr "" -#: gnu/packages/databases.scm:3018 +#: gnu/packages/databases.scm:3326 msgid "" "Pysqlite provides SQLite bindings for Python that comply to the\n" "Database API 2.0T." msgstr "" -#: gnu/packages/databases.scm:3048 +#: gnu/packages/databases.scm:3356 msgid "" "SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that\n" "gives application developers the full power and flexibility of SQL. It\n" @@ -2779,14 +2878,14 @@ msgid "" "simple and Pythonic domain language." msgstr "" -#: gnu/packages/databases.scm:3086 +#: gnu/packages/databases.scm:3382 msgid "" "This package contains type stubs and a mypy plugin to\n" "provide more precise static types and type inference for SQLAlchemy\n" "framework." msgstr "" -#: gnu/packages/databases.scm:3118 +#: gnu/packages/databases.scm:3414 msgid "" "SQLAlchemy-utils provides various utility functions and custom data types\n" "for SQLAlchemy. SQLAlchemy is an SQL database abstraction library for Python.\n" @@ -2803,7 +2902,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/databases.scm:3165 +#: gnu/packages/databases.scm:3461 msgid "" "This package provides mock helpers for SQLAlchemy that makes it easy\n" "to mock an SQLAlchemy session while preserving the ability to do asserts.\n" @@ -2813,13 +2912,13 @@ msgid "" "this library provides functions to facilitate such comparisons." msgstr "" -#: gnu/packages/databases.scm:3196 +#: gnu/packages/databases.scm:3492 msgid "" "Alembic is a lightweight database migration tool for usage with the\n" "SQLAlchemy Database Toolkit for Python." msgstr "" -#: gnu/packages/databases.scm:3221 +#: gnu/packages/databases.scm:3517 msgid "" "PickleShare is a small ‘shelve’-like datastore with concurrency support.\n" "Like shelve, a PickleShareDB object acts like a normal dictionary. Unlike\n" @@ -2830,7 +2929,7 @@ msgid "" "PickleShare." msgstr "" -#: gnu/packages/databases.scm:3275 +#: gnu/packages/databases.scm:3571 msgid "" "APSW is a Python wrapper for the SQLite\n" "embedded relational database engine. In contrast to other wrappers such as\n" @@ -2838,21 +2937,21 @@ msgid "" "translate the complete SQLite API into Python." msgstr "" -#: gnu/packages/databases.scm:3312 +#: gnu/packages/databases.scm:3608 msgid "" "The package aiosqlite replicates the standard sqlite3 module, but with\n" "async versions of all the standard connection and cursor methods, and context\n" "managers for automatically closing connections." msgstr "" -#: gnu/packages/databases.scm:3333 +#: gnu/packages/databases.scm:3629 msgid "" "This package provides the Neo4j Python driver that connects\n" "to the database using Neo4j's binary protocol. It aims to be minimal, while\n" "being idiomatic to Python." msgstr "" -#: gnu/packages/databases.scm:3353 +#: gnu/packages/databases.scm:3649 msgid "" "This package provides a client library and toolkit for\n" "working with Neo4j from within Python applications and from the command\n" @@ -2860,26 +2959,38 @@ msgid "" "designed to be easy and intuitive to use." msgstr "" -#: gnu/packages/databases.scm:3379 +#: gnu/packages/databases.scm:3675 msgid "" "psycopg2 is a thread-safe PostgreSQL adapter that implements DB-API\n" "2.0." msgstr "" -#: gnu/packages/databases.scm:3413 +#: gnu/packages/databases.scm:3702 +msgid "" +"This module provides connection pool implementations that can be used\n" +"with the @code{psycopg} PostgreSQL driver." +msgstr "" + +#: gnu/packages/databases.scm:3776 +msgid "" +"Psycopg 3 is a new implementation of the popular @code{psycopg2}\n" +"database adapter for Python." +msgstr "" + +#: gnu/packages/databases.scm:3810 msgid "" "This package provides a program to build Entity\n" "Relationship diagrams from a SQLAlchemy model (or directly from the\n" "database)." msgstr "" -#: gnu/packages/databases.scm:3443 +#: gnu/packages/databases.scm:3840 msgid "" "Yoyo is a database schema migration tool. Migrations are written as SQL\n" "files or Python scripts that define a list of migration steps." msgstr "" -#: gnu/packages/databases.scm:3464 +#: gnu/packages/databases.scm:3861 msgid "" "MySQLdb is an interface to the popular MySQL database server\n" "for Python. The design goals are:\n" @@ -2890,13 +3001,13 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/databases.scm:3490 +#: gnu/packages/databases.scm:3887 msgid "" "Python-hiredis is a python extension that wraps protocol\n" "parsing code in hiredis. It primarily speeds up parsing of multi bulk replies." msgstr "" -#: gnu/packages/databases.scm:3517 +#: gnu/packages/databases.scm:3914 msgid "" "Fakeredis is a pure-Python implementation of the redis-py Python client\n" "that simulates talking to a redis server. It was created for a single purpose:\n" @@ -2907,49 +3018,49 @@ msgid "" "reasonable substitute." msgstr "" -#: gnu/packages/databases.scm:3545 +#: gnu/packages/databases.scm:3942 msgid "This package provides a Python interface to the Redis key-value store." msgstr "" -#: gnu/packages/databases.scm:3586 +#: gnu/packages/databases.scm:3983 msgid "" "RQ (Redis Queue) is a simple Python library for queueing jobs and\n" "processing them in the background with workers. It is backed by Redis and it\n" "is designed to have a low barrier to entry." msgstr "" -#: gnu/packages/databases.scm:3623 +#: gnu/packages/databases.scm:4020 msgid "" "This package provides job scheduling capabilities to @code{python-rq}\n" "(Redis Queue)." msgstr "" -#: gnu/packages/databases.scm:3643 +#: gnu/packages/databases.scm:4040 msgid "" "@code{trollius-redis} is a Redis client for Python\n" " trollius. It is an asynchronous IO (PEP 3156) implementation of the\n" " Redis protocol." msgstr "" -#: gnu/packages/databases.scm:3686 +#: gnu/packages/databases.scm:4083 msgid "" "Sqlparse is a non-validating SQL parser for Python. It\n" "provides support for parsing, splitting and formatting SQL statements." msgstr "" -#: gnu/packages/databases.scm:3703 +#: gnu/packages/databases.scm:4101 msgid "" "@code{python-sql} is a library to write SQL queries, that\n" "transforms idiomatic python function calls to well-formed SQL queries." msgstr "" -#: gnu/packages/databases.scm:3726 +#: gnu/packages/databases.scm:4124 msgid "" "PyPika is a python SQL query builder that exposes the full richness of\n" "the SQL language using a syntax that reflects the resulting query." msgstr "" -#: gnu/packages/databases.scm:3852 +#: gnu/packages/databases.scm:4250 msgid "" "Apache Arrow is a columnar in-memory analytics layer\n" "designed to accelerate big data. It houses a set of canonical in-memory\n" @@ -2958,21 +3069,21 @@ msgid "" "algorithm implementations." msgstr "" -#: gnu/packages/databases.scm:3912 +#: gnu/packages/databases.scm:4310 msgid "" "This library provides a Pythonic API wrapper for the reference Arrow C++\n" "implementation, along with tools for interoperability with pandas, NumPy, and\n" "other traditional Python scientific computing packages." msgstr "" -#: gnu/packages/databases.scm:3933 +#: gnu/packages/databases.scm:4331 msgid "" "This package provides a Python client library for CrateDB.\n" "It implements the Python DB API 2.0 specification and includes support for\n" "SQLAlchemy." msgstr "" -#: gnu/packages/databases.scm:3952 +#: gnu/packages/databases.scm:4350 msgid "" "This library implements a database independent abstraction layer in C,\n" "similar to the DBI/DBD layer in Perl. Writing one generic set of code,\n" @@ -2980,7 +3091,7 @@ msgid "" "simultaneous database connections by using this framework." msgstr "" -#: gnu/packages/databases.scm:4018 +#: gnu/packages/databases.scm:4416 msgid "" "The @code{libdbi-drivers} library provides the database specific drivers\n" "for the @code{libdbi} framework.\n" @@ -2993,26 +3104,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:4060 +#: gnu/packages/databases.scm:4458 msgid "" "SOCI is an abstraction layer for several database backends, including\n" "PostreSQL, SQLite, ODBC and MySQL." msgstr "" -#: gnu/packages/databases.scm:4084 +#: gnu/packages/databases.scm:4482 msgid "" "FreeTDS is an implementation of the Tabular DataStream protocol, used for\n" "connecting to MS SQL and Sybase servers over TCP/IP." msgstr "" -#: gnu/packages/databases.scm:4106 +#: gnu/packages/databases.scm:4504 msgid "" "TinyDB is a small document oriented database written in pure Python\n" "with no external dependencies. The targets are small apps that would\n" "be blown away by a SQL-DB or an external database server." msgstr "" -#: gnu/packages/databases.scm:4154 +#: gnu/packages/databases.scm:4552 msgid "" "Sequeler is a native Linux SQL client built in Vala and\n" "Gtk. It allows you to connect to your local and remote databases, write SQL in\n" @@ -3020,7 +3131,13 @@ msgid "" "a Gtk.Grid Widget." msgstr "" -#: gnu/packages/debug.scm:111 +#: gnu/packages/databases.scm:4594 +msgid "" +"Sqlitebrowser is a high quaility, visual, open source tool to\n" +"create design, and edit database file compatible with SQLite." +msgstr "" + +#: gnu/packages/debug.scm:112 msgid "" "Delta assists you in minimizing \"interesting\" files subject to a test\n" "of their interestingness. A common such situation is when attempting to\n" @@ -3028,7 +3145,7 @@ msgid "" "program to exhibit a bug." msgstr "" -#: gnu/packages/debug.scm:172 +#: gnu/packages/debug.scm:173 msgid "" "C-Reduce is a tool that takes a large C or C++ program that has a\n" "property of interest (such as triggering a compiler bug) and automatically\n" @@ -3037,14 +3154,14 @@ msgid "" "tools that process C/C++ code." msgstr "" -#: gnu/packages/debug.scm:219 +#: gnu/packages/debug.scm:220 msgid "" "C-Vise is a Python port of the C-Reduce tool that is fully compatible\n" "and uses the same efficient LLVM-based C/C++ @code{clang_delta} reduction\n" "tool." msgstr "" -#: gnu/packages/debug.scm:289 +#: gnu/packages/debug.scm:290 msgid "" "American fuzzy lop is a security-oriented fuzzer that employs a novel\n" "type of compile-time instrumentation and genetic algorithms to automatically\n" @@ -3055,7 +3172,7 @@ msgid "" "down the road." msgstr "" -#: gnu/packages/debug.scm:433 +#: gnu/packages/debug.scm:434 msgid "" "QEMU is a generic machine emulator and virtualizer. This package\n" "of QEMU is used only by the american fuzzy lop package.\n" @@ -3071,7 +3188,7 @@ msgid "" "server and embedded PowerPC, and S390 guests." msgstr "" -#: gnu/packages/debug.scm:501 +#: gnu/packages/debug.scm:502 msgid "" "Stress Make is a customized GNU Make that explicitly manages the order\n" "in which concurrent jobs are run to provoke erroneous behavior into becoming\n" @@ -3081,14 +3198,14 @@ msgid "" "conditions." msgstr "" -#: gnu/packages/debug.scm:529 +#: gnu/packages/debug.scm:530 msgid "" "Zzuf is a transparent application input fuzzer. It works by\n" "intercepting file operations and changing random bits in the program's\n" "input. Zzuf's behaviour is deterministic, making it easy to reproduce bugs." msgstr "" -#: gnu/packages/debug.scm:581 +#: gnu/packages/debug.scm:582 msgid "" "Scanmem is a debugging utility designed to isolate the\n" "address of an arbitrary variable in an executing process. Scanmem simply\n" @@ -3097,13 +3214,13 @@ msgid "" "the position of the variable and allows you to modify its value." msgstr "" -#: gnu/packages/debug.scm:611 +#: gnu/packages/debug.scm:612 msgid "" "Remake is an enhanced version of GNU Make that adds improved\n" "error reporting, better tracing, profiling, and a debugger." msgstr "" -#: gnu/packages/debug.scm:667 +#: gnu/packages/debug.scm:668 msgid "" "rr is a lightweight tool for recording, replaying and debugging\n" "execution of applications (trees of processes and threads). Debugging extends\n" @@ -3112,13 +3229,13 @@ msgid "" "fun." msgstr "" -#: gnu/packages/debug.scm:695 +#: gnu/packages/debug.scm:696 msgid "" "The @code{libbacktrace} library can be linked into a C/C++\n" "program to produce symbolic backtraces." msgstr "" -#: gnu/packages/debug.scm:735 +#: gnu/packages/debug.scm:736 msgid "" "The libleak tool detects memory leaks by hooking memory\n" "functions such as @code{malloc}. It comes as a shared object to be pre-loaded\n" @@ -3130,7 +3247,7 @@ msgid "" "use than similar tools like @command{mtrace}." msgstr "" -#: gnu/packages/debug.scm:763 +#: gnu/packages/debug.scm:764 msgid "" "@code{cgdb} is a lightweight curses (terminal-based) interface to the\n" "GNU Debugger (GDB). In addition to the standard gdb console, cgdb provides\n" @@ -3139,7 +3256,7 @@ msgid "" "using cgdb." msgstr "" -#: gnu/packages/debug.scm:798 +#: gnu/packages/debug.scm:799 msgid "" "MspDebug supports FET430UIF, eZ430, RF2500 and Olimex\n" "MSP430-JTAG-TINY programmers, as well as many other compatible\n" @@ -3155,14 +3272,14 @@ msgid "" "multiple test suites, which are then all managed by a single harness." msgstr "" -#: gnu/packages/games.scm:287 +#: gnu/packages/games.scm:288 msgid "" "Abe's Amazing Adventure is a scrolling,\n" "platform-jumping, key-collecting, ancient pyramid exploring game, vaguely in\n" "the style of similar games for the Commodore+4." msgstr "" -#: gnu/packages/games.scm:357 +#: gnu/packages/games.scm:358 msgid "" "Adanaxis is a fast-moving first person shooter set in deep space, where\n" "the fundamentals of space itself are changed. By adding another dimension to\n" @@ -3173,7 +3290,7 @@ msgid "" "mouse and joystick control, and original music." msgstr "" -#: gnu/packages/games.scm:401 +#: gnu/packages/games.scm:402 msgid "" "Guide Alex the Allegator through the jungle in order to save his\n" "girlfriend Lola from evil humans who want to make a pair of shoes out of her.\n" @@ -3182,7 +3299,7 @@ msgid "" "The game includes a built-in editor so you can design and share your own maps." msgstr "" -#: gnu/packages/games.scm:431 +#: gnu/packages/games.scm:432 msgid "" "Armagetron Advanced is a multiplayer game in 3d that\n" "attempts to emulate and expand on the lightcycle sequence from the movie Tron.\n" @@ -3192,7 +3309,7 @@ msgid "" "physics settings to tweak as well." msgstr "" -#: gnu/packages/games.scm:489 +#: gnu/packages/games.scm:490 msgid "" "Space is a vast area, an unbounded territory where it seems there is\n" "a room for everybody, but reversal of fortune put things differently. The\n" @@ -3204,7 +3321,7 @@ msgid "" "regret their insolence." msgstr "" -#: gnu/packages/games.scm:556 +#: gnu/packages/games.scm:557 msgid "" "Bastet (short for Bastard Tetris) is a simple ncurses-based falling brick\n" "game. Unlike normal Tetris, Bastet does not choose the next brick at random.\n" @@ -3214,19 +3331,19 @@ msgid "" "canyons and wait for the long I-shaped block to clear four rows at a time." msgstr "" -#: gnu/packages/games.scm:601 +#: gnu/packages/games.scm:602 msgid "" "Tetrinet is a multiplayer Tetris-like game with powerups and\n" "attacks you can use on opponents." msgstr "" -#: gnu/packages/games.scm:635 +#: gnu/packages/games.scm:636 msgid "" "Vitetris is a classic multiplayer Tetris clone for the\n" "terminal." msgstr "" -#: gnu/packages/games.scm:678 +#: gnu/packages/games.scm:679 msgid "" "Blobwars: Metal Blob Solid is a 2D platform game, the first\n" "in the Blobwars series. You take on the role of a fearless Blob agent. Your\n" @@ -3234,7 +3351,7 @@ msgid "" "possible, while battling many vicious aliens." msgstr "" -#: gnu/packages/games.scm:771 +#: gnu/packages/games.scm:772 msgid "" "These are the BSD games. See the fortune-mod package for fortunes.\n" "\n" @@ -3267,7 +3384,7 @@ msgid "" "Quizzes: arithmetic and quiz." msgstr "" -#: gnu/packages/games.scm:866 +#: gnu/packages/games.scm:867 msgid "" "BZFlag is a 3D multi-player multiplatform tank battle game that\n" "allows users to play against each other in a network environment.\n" @@ -3287,7 +3404,7 @@ msgid "" "high a score as possible." msgstr "" -#: gnu/packages/games.scm:949 +#: gnu/packages/games.scm:950 msgid "" "Cataclysm: Dark Days Ahead (or \"DDA\" for short) is a roguelike set\n" "in a post-apocalyptic world. Struggle to survive in a harsh, persistent,\n" @@ -3299,7 +3416,7 @@ msgid "" "want what you have." msgstr "" -#: gnu/packages/games.scm:998 +#: gnu/packages/games.scm:999 msgid "" "Cockatrice is a program for playing tabletop card games\n" "over a network. Its server design prevents users from manipulating the game\n" @@ -3307,7 +3424,7 @@ msgid "" "allows users to brew while offline." msgstr "" -#: gnu/packages/games.scm:1052 +#: gnu/packages/games.scm:1053 msgid "" "This package provides a reimplementation of the 1997 Bullfrog business\n" "simulation game @i{Theme Hospital}. As well as faithfully recreating the\n" @@ -3315,7 +3432,7 @@ msgid "" "more. This package does @emph{not} provide the game assets." msgstr "" -#: gnu/packages/games.scm:1094 +#: gnu/packages/games.scm:1095 msgid "" "Cowsay is basically a text filter. Send some text into it,\n" "and you get a cow saying your text. If you think a talking cow isn't enough,\n" @@ -3323,21 +3440,21 @@ msgid "" "tired of cows, a variety of other ASCII-art messengers are available." msgstr "" -#: gnu/packages/games.scm:1135 +#: gnu/packages/games.scm:1136 msgid "" "@command{lolcat} concatenates files and streams like\n" "regular @command{cat}, but it also adds terminal escape codes between\n" "characters and lines resulting in a rainbow effect." msgstr "" -#: gnu/packages/games.scm:1164 +#: gnu/packages/games.scm:1165 #, scheme-format msgid "" "This package provides the Fallout 2 game engine. Game data\n" "should be placed in @file{~/.local/share/falltergeist}." msgstr "" -#: gnu/packages/games.scm:1275 +#: gnu/packages/games.scm:1276 msgid "" "FooBillard++ is an advanced 3D OpenGL billiard game\n" "based on the original foobillard 3.0a sources from Florian Berger.\n" @@ -3359,7 +3476,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:1342 +#: gnu/packages/games.scm:1343 msgid "" "The Freedoom project aims to create a complete free content first person\n" "shooter game. Freedoom by itself is just the raw material for a game: it must\n" @@ -3368,7 +3485,7 @@ msgid "" "effects and music to make a completely free game." msgstr "" -#: gnu/packages/games.scm:1392 +#: gnu/packages/games.scm:1394 msgid "" "Freedroid RPG is an @dfn{RPG} (Role-Playing Game) with isometric graphics.\n" "The game tells the story of a world destroyed by a conflict between robots and\n" @@ -3378,7 +3495,7 @@ msgid "" "real-time combat." msgstr "" -#: gnu/packages/games.scm:1471 +#: gnu/packages/games.scm:1473 msgid "" "Golly simulates Conway's Game of Life and many other types of cellular\n" "automata. The following features are available:\n" @@ -3399,7 +3516,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:1527 +#: gnu/packages/games.scm:1529 msgid "" "This package provides a userspace daemon for the Nintendo\n" "Joy-Con controllers." @@ -3407,7 +3524,7 @@ msgstr "" "이 꾸러미는 닌텐도를 위한 사용자 공간을 제공합니다\n" "Joy-Con 제어기." -#: gnu/packages/games.scm:1557 +#: gnu/packages/games.scm:1559 msgid "" "Engine for Caesar III, a city-building real-time strategy game.\n" "Julius includes some UI enhancements while preserving the logic (including\n" @@ -3415,7 +3532,7 @@ msgid "" "does not include game data." msgstr "" -#: gnu/packages/games.scm:1591 +#: gnu/packages/games.scm:1593 msgid "" "Fork of Julius, an engine for the a city-building real-time strategy\n" "game Caesar III. Gameplay enhancements include:\n" @@ -3430,7 +3547,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/games.scm:1630 +#: gnu/packages/games.scm:1632 msgid "" "Me and My Shadow is a puzzle/platform game in which you try\n" "to reach the exit by solving puzzles. Spikes, moving blocks, fragile blocks\n" @@ -3438,7 +3555,7 @@ msgid "" "shadow mimic them to reach blocks you couldn't reach alone." msgstr "" -#: gnu/packages/games.scm:1686 +#: gnu/packages/games.scm:1688 msgid "" "@code{Open Surge} is a 2D retro side-scrolling platformer\n" "inspired by the Sonic games. The player runs at high speeds through each\n" @@ -3446,7 +3563,7 @@ msgid "" "built-in level editor." msgstr "" -#: gnu/packages/games.scm:1732 +#: gnu/packages/games.scm:1734 msgid "" "Knights is a multiplayer game involving several knights who\n" "must run around a dungeon and complete various quests. Each game revolves\n" @@ -3458,7 +3575,7 @@ msgid "" "destroying an ancient book using a special wand." msgstr "" -#: gnu/packages/games.scm:1780 +#: gnu/packages/games.scm:1781 msgid "" "GNOME 2048 provides a 2D grid for playing 2048, a\n" "single-player sliding tile puzzle game. The objective of the game is to merge\n" @@ -3466,7 +3583,7 @@ msgid "" "in one tile." msgstr "" -#: gnu/packages/games.scm:1819 +#: gnu/packages/games.scm:1820 msgid "" "GNOME Chess provides a 2D board for playing chess games\n" "against human or computer players. It supports loading and saving games in\n" @@ -3474,7 +3591,7 @@ msgid "" "such as chess or stockfish." msgstr "" -#: gnu/packages/games.scm:1880 +#: gnu/packages/games.scm:1881 msgid "" "The GNU backgammon application (also known as \"gnubg\") can\n" "be used for playing, analyzing and teaching the game. It has an advanced\n" @@ -3483,7 +3600,7 @@ msgid "" "also features an attractive, 3D representation of the playing board." msgstr "" -#: gnu/packages/games.scm:1921 +#: gnu/packages/games.scm:1922 msgid "" "GNUbik is a puzzle game in which you must manipulate a cube to make\n" "each of its faces have a uniform color. The game is customizable, allowing\n" @@ -3492,13 +3609,13 @@ msgid "" "scriptable with Guile." msgstr "" -#: gnu/packages/games.scm:1944 +#: gnu/packages/games.scm:1945 msgid "" "GNU Shogi is a program that plays the game Shogi (Japanese\n" "Chess). It is similar to standard chess but this variant is far more complicated." msgstr "" -#: gnu/packages/games.scm:1974 +#: gnu/packages/games.scm:1975 msgid "" "LTris is a tetris clone: differently shaped blocks are falling down the\n" "rectangular playing field and can be moved sideways or rotated by 90 degree\n" @@ -3512,7 +3629,7 @@ msgid "" "watch your CPU playing while enjoying a cup of tea!" msgstr "" -#: gnu/packages/games.scm:2097 +#: gnu/packages/games.scm:2098 msgid "" "NetHack is a single player dungeon exploration game that runs\n" "on a wide variety of computer systems, with a variety of graphical and text\n" @@ -3526,7 +3643,7 @@ msgid "" "role, and your gender." msgstr "" -#: gnu/packages/games.scm:2141 +#: gnu/packages/games.scm:2142 msgid "" "PipeWalker is a simple puzzle game with many diffent themes: connect all\n" "computers to one network server, bring water from a source to the taps, etc.\n" @@ -3535,17 +3652,17 @@ msgid "" "Every puzzle has a complete solution, although there may be more than one." msgstr "" -#: gnu/packages/games.scm:2190 +#: gnu/packages/games.scm:2191 msgid "PrBoom+ is a Doom source port developed from the original PrBoom project." msgstr "" -#: gnu/packages/games.scm:2240 +#: gnu/packages/games.scm:2241 msgid "" "ReTux is an action platformer loosely inspired by the Mario games,\n" "utilizing the art assets from the @code{SuperTux} project." msgstr "" -#: gnu/packages/games.scm:2350 +#: gnu/packages/games.scm:2351 msgid "" "RogueBox Adventures is a graphical roguelike with strong influences\n" "from sandbox games like Minecraft or Terraria. The main idea of RogueBox\n" @@ -3553,7 +3670,7 @@ msgid "" "can be explored and changed freely." msgstr "" -#: gnu/packages/games.scm:2462 +#: gnu/packages/games.scm:2463 msgid "" "Barbie Seahorse Adventures is a retro style platform arcade game.\n" "You are Barbie the seahorse who travels through the jungle, up to the\n" @@ -3563,27 +3680,27 @@ msgid "" "and defeat them with your bubbles!" msgstr "" -#: gnu/packages/games.scm:2522 +#: gnu/packages/games.scm:2523 msgid "" "Solarus is a 2D game engine written in C++, that can run games\n" "scripted in Lua. It has been designed with 16-bit classic Action-RPGs\n" "in mind." msgstr "" -#: gnu/packages/games.scm:2551 +#: gnu/packages/games.scm:2552 msgid "" "Solarus Quest Editor is a graphical user interface to create and\n" "modify quests for the Solarus engine." msgstr "" -#: gnu/packages/games.scm:2627 +#: gnu/packages/games.scm:2628 msgid "" "In SuperStarfighter, up to four local players compete in a\n" "2D arena with fast-moving ships and missiles. Different game types are\n" "available, as well as a single-player mode with AI-controlled ships." msgstr "" -#: gnu/packages/games.scm:2760 +#: gnu/packages/games.scm:2761 msgid "" "Trigger-rally is a 3D rally simulation with great physics\n" "for drifting on over 200 maps. Different terrain materials like dirt,\n" @@ -3595,17 +3712,17 @@ msgid "" "equipped with spoken co-driver notes and co-driver icons." msgstr "" -#: gnu/packages/games.scm:2816 +#: gnu/packages/games.scm:2817 msgid "" "This package provides @command{ufo2map}, a program used to generate\n" "maps for the UFO: Alien Invasion strategy game." msgstr "" -#: gnu/packages/games.scm:2858 +#: gnu/packages/games.scm:2859 msgid "This package contains maps and other assets for UFO: Alien Invasion." msgstr "" -#: gnu/packages/games.scm:2945 +#: gnu/packages/games.scm:2946 msgid "" "UFO: Alien Invasion is a tactical strategy game set in the year 2084.\n" "You control a secret organisation charged with defending Earth from a brutal\n" @@ -3623,11 +3740,11 @@ msgid "" "properly." msgstr "" -#: gnu/packages/games.scm:2982 +#: gnu/packages/games.scm:2983 msgid "A graphical user interface for the package @code{gnushogi}." msgstr "꾸러미 @code{gnushogi}을 위한 그래픽 사용자 연결장치." -#: gnu/packages/games.scm:3035 +#: gnu/packages/games.scm:3036 msgid "" "L'Abbaye des Morts is a 2D platform game set in 13th century\n" "France. The Cathars, who preach about good Christian beliefs, were being\n" @@ -3636,14 +3753,14 @@ msgid "" "that beneath its ruins lay buried an ancient evil." msgstr "" -#: gnu/packages/games.scm:3081 +#: gnu/packages/games.scm:3082 msgid "" "Angband is a Classic dungeon exploration roguelike. Explore\n" "the depths below Angband, seeking riches, fighting monsters, and preparing to\n" "fight Morgoth, the Lord of Darkness." msgstr "" -#: gnu/packages/games.scm:3129 +#: gnu/packages/games.scm:3130 msgid "" "Pingus is a free Lemmings-like puzzle game in which the player takes\n" "command of a bunch of small animals and has to guide them through levels.\n" @@ -3653,21 +3770,21 @@ msgid "" "level's exit. The game is presented in a 2D side view." msgstr "" -#: gnu/packages/games.scm:3152 +#: gnu/packages/games.scm:3153 msgid "" "The GNU Talk Filters are programs that convert English text\n" "into stereotyped or otherwise humorous dialects. The filters are provided as\n" "a C library, so they can easily be integrated into other programs." msgstr "" -#: gnu/packages/games.scm:3196 +#: gnu/packages/games.scm:3197 msgid "" "The player controls a character (one of three: Good, Bad, and Dead),\n" "dodges the missiles (lots of it cover the screen, but the character's hitbox\n" "is very small), and shoot at the adversaries that keep appear on the screen." msgstr "" -#: gnu/packages/games.scm:3239 +#: gnu/packages/games.scm:3240 msgid "" "CMatrix simulates the display from \"The Matrix\" and is\n" "based on the screensaver from the movie's website. It works with terminal\n" @@ -3675,14 +3792,14 @@ msgid "" "asynchronously and at a user-defined speed." msgstr "" -#: gnu/packages/games.scm:3270 +#: gnu/packages/games.scm:3271 msgid "" "GNU Chess is a chess engine. It allows you to compete\n" "against the computer in a game of chess, either through the default terminal\n" "interface or via an external visual interface such as GNU XBoard." msgstr "" -#: gnu/packages/games.scm:3332 +#: gnu/packages/games.scm:3333 msgid "" "GNU FreeDink is a free and portable re-implementation of the engine\n" "for the role-playing game Dink Smallwood. It supports not only the original\n" @@ -3690,17 +3807,17 @@ msgid "" "To that extent, it also includes a front-end for managing all of your D-Mods." msgstr "" -#: gnu/packages/games.scm:3360 +#: gnu/packages/games.scm:3361 msgid "This package contains the game data of GNU Freedink." msgstr "이 꾸러미는 GNU Freedink의 게임 자료를 포함합니다." -#: gnu/packages/games.scm:3383 +#: gnu/packages/games.scm:3384 msgid "" "DFArc makes it easy to play and manage the GNU FreeDink game\n" "and its numerous D-Mods." msgstr "" -#: gnu/packages/games.scm:3453 +#: gnu/packages/games.scm:3454 msgid "" "GNU XBoard is a graphical board for all varieties of chess,\n" "including international chess, xiangqi (Chinese chess), shogi (Japanese chess)\n" @@ -3709,7 +3826,7 @@ msgid "" "Portable Game Notation." msgstr "" -#: gnu/packages/games.scm:3488 +#: gnu/packages/games.scm:3489 msgid "" "GNU Typist is a universal typing tutor. It can be used to learn and\n" "practice touch-typing. Several tutorials are included; in addition to\n" @@ -3718,7 +3835,7 @@ msgid "" "are primarily in English, however some in other languages are provided." msgstr "" -#: gnu/packages/games.scm:3560 +#: gnu/packages/games.scm:3561 msgid "" "The Irrlicht Engine is a high performance realtime 3D engine written in\n" "C++. Features include an OpenGL renderer, extensible materials, scene graph\n" @@ -3726,7 +3843,7 @@ msgid "" "for common mesh file formats, and collision detection." msgstr "" -#: gnu/packages/games.scm:3611 +#: gnu/packages/games.scm:3612 msgid "" "M.A.R.S. is a 2D space shooter with pretty visual effects and\n" "attractive physics. Players can battle each other or computer controlled\n" @@ -3734,7 +3851,7 @@ msgid "" "match, cannon keep, and grave-itation pit." msgstr "" -#: gnu/packages/games.scm:3650 +#: gnu/packages/games.scm:3651 msgid "" "Glk defines a portable API for applications with text UIs. It was\n" "primarily designed for interactive fiction, but it should be suitable for many\n" @@ -3743,7 +3860,7 @@ msgid "" "using the @code{curses.h} library for screen control." msgstr "" -#: gnu/packages/games.scm:3690 +#: gnu/packages/games.scm:3691 msgid "" "Glulx is a 32-bit portable virtual machine intended for writing and\n" "playing interactive fiction. It was designed by Andrew Plotkin to relieve\n" @@ -3751,28 +3868,28 @@ msgid "" "reference interpreter, using the Glk API." msgstr "" -#: gnu/packages/games.scm:3716 +#: gnu/packages/games.scm:3717 msgid "" "Fifechan is a lightweight cross platform GUI library written in C++\n" "specifically designed for games. It has a built in set of extendable GUI\n" "Widgets, and allows users to create more." msgstr "" -#: gnu/packages/games.scm:3791 +#: gnu/packages/games.scm:3792 msgid "" "@acronym{FIFE, Flexible Isometric Free Engine} is a multi-platform\n" "isometric game engine. Python bindings are included allowing users to create\n" "games using Python as well as C++." msgstr "" -#: gnu/packages/games.scm:3826 +#: gnu/packages/games.scm:3827 msgid "" "Fizmo is a console-based Z-machine interpreter. It is used to play\n" "interactive fiction, also known as text adventures, which were implemented\n" "either by Infocom or created using the Inform compiler." msgstr "" -#: gnu/packages/games.scm:3849 +#: gnu/packages/games.scm:3850 msgid "" "GNU Go is a program that plays the game of Go, in which players\n" "place stones on a grid to form territory or capture other stones. While\n" @@ -3783,7 +3900,7 @@ msgid "" "Protocol)." msgstr "" -#: gnu/packages/games.scm:3878 +#: gnu/packages/games.scm:3879 msgid "" "Extreme Tux Racer, or etracer as it is called for short, is\n" "a simple OpenGL racing game featuring Tux, the Linux mascot. The goal of the\n" @@ -3796,7 +3913,7 @@ msgid "" "This game is based on the GPL version of the famous game TuxRacer." msgstr "" -#: gnu/packages/games.scm:3952 +#: gnu/packages/games.scm:3953 msgid "" "SuperTuxKart is a 3D kart racing game, with a focus on\n" "having fun over realism. You can play with up to 4 friends on one PC, racing\n" @@ -3804,7 +3921,7 @@ msgid "" "also available." msgstr "" -#: gnu/packages/games.scm:4028 +#: gnu/packages/games.scm:4029 msgid "" "Unknown Horizons is a 2D realtime strategy simulation with an emphasis\n" "on economy and city building. Expand your small settlement to a strong and\n" @@ -3813,7 +3930,7 @@ msgid "" "trade and diplomacy." msgstr "" -#: gnu/packages/games.scm:4081 +#: gnu/packages/games.scm:4082 msgid "" "GNUjump is a simple, yet addictive game in which you must jump from\n" "platform to platform to avoid falling, while the platforms drop at faster rates\n" @@ -3821,7 +3938,7 @@ msgid "" "falling, themeable graphics and sounds, and replays." msgstr "" -#: gnu/packages/games.scm:4117 +#: gnu/packages/games.scm:4118 msgid "" "The Battle for Wesnoth is a fantasy, turn based tactical strategy game,\n" "with several single player campaigns, and multiplayer games (both networked and\n" @@ -3833,20 +3950,20 @@ msgid "" "next campaign." msgstr "" -#: gnu/packages/games.scm:4137 +#: gnu/packages/games.scm:4138 msgid "" "This package contains a dedicated server for @emph{The\n" "Battle for Wesnoth}." msgstr "" -#: gnu/packages/games.scm:4179 +#: gnu/packages/games.scm:4180 msgid "" "Gamine is a game designed for young children who are learning to use the\n" "mouse and keyboard. The child uses the mouse to draw colored dots and lines\n" "on the screen and keyboard to display letters." msgstr "" -#: gnu/packages/games.scm:4211 +#: gnu/packages/games.scm:4212 msgid "" "ManaPlus is a 2D MMORPG client for game servers. It is the only\n" "fully supported client for @uref{http://www.themanaworld.org, The mana\n" @@ -3854,7 +3971,7 @@ msgid "" "@uref{http://landoffire.org, Land of fire}." msgstr "" -#: gnu/packages/games.scm:4243 +#: gnu/packages/games.scm:4244 msgid "" "OpenTTD is a game in which you transport goods and\n" "passengers by land, water and air. It is a re-implementation of Transport\n" @@ -3864,7 +3981,7 @@ msgid "" "engine. When you start it you will be prompted to download a graphics set." msgstr "" -#: gnu/packages/games.scm:4303 +#: gnu/packages/games.scm:4304 msgid "" "The OpenGFX project is an implementation of the OpenTTD base graphics\n" "set that aims to ensure the best possible out-of-the-box experience.\n" @@ -3879,29 +3996,29 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:4361 +#: gnu/packages/games.scm:4362 msgid "" "OpenSFX is a set of free base sounds for OpenTTD which make\n" "it possible to play OpenTTD without requiring the proprietary sound files from\n" "the original Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4404 +#: gnu/packages/games.scm:4405 msgid "" "OpenMSX is a music set for OpenTTD which makes it possible\n" "to play OpenTTD without requiring the proprietary music from the original\n" "Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4473 +#: gnu/packages/games.scm:4474 msgid "openrct2-title-sequences is a set of title sequences for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4513 +#: gnu/packages/games.scm:4514 msgid "openrct2-objects is a set of objects for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4576 +#: gnu/packages/games.scm:4577 msgid "" "OpenRCT2 is a free software re-implementation of\n" "RollerCoaster Tycoon 2 (RCT2). The gameplay revolves around building and\n" @@ -3911,27 +4028,27 @@ msgid "" "images, etc.)" msgstr "" -#: gnu/packages/games.scm:4630 +#: gnu/packages/games.scm:4631 msgid "" "The Emilia Pinball Project is a pinball simulator. There\n" "are only two levels to play with, but they are very addictive." msgstr "" -#: gnu/packages/games.scm:4659 +#: gnu/packages/games.scm:4660 msgid "" "Pioneers is an emulation of the board game The Settlers of\n" "Catan. It can be played on a local network, on the internet, and with AI\n" "players." msgstr "" -#: gnu/packages/games.scm:4701 +#: gnu/packages/games.scm:4702 msgid "" "The goal of this logic game is to open all cards in a 6x6\n" "grid, using a number of hints as to their relative position. The game idea\n" "is attributed to Albert Einstein." msgstr "" -#: gnu/packages/games.scm:4731 +#: gnu/packages/games.scm:4732 msgid "" "POWWOW is a client software which can be used for telnet as well as for\n" "@dfn{Multi-User Dungeon} (MUD). Additionally it can serve as a nice client for\n" @@ -3939,21 +4056,21 @@ msgid "" "http://lavachat.symlynx.com/unix/" msgstr "" -#: gnu/packages/games.scm:4838 +#: gnu/packages/games.scm:4839 msgid "" "Red Eclipse is an arena shooter, created from the Cube2 engine.\n" "Offering an innovative parkour system and distinct but all potent weapons,\n" "Red Eclipse provides fast paced and accessible gameplay." msgstr "" -#: gnu/packages/games.scm:4903 +#: gnu/packages/games.scm:4904 msgid "" "Grue Hunter is a text adventure game written in Perl. You must make\n" "your way through an underground cave system in search of the Grue. Can you\n" "capture it and get out alive?" msgstr "" -#: gnu/packages/games.scm:4942 +#: gnu/packages/games.scm:4943 msgid "" "lierolibre is an earthworm action game where you fight another player\n" "(or the computer) underground using a wide array of weapons.\n" @@ -3978,14 +4095,14 @@ msgid "" "fullscreen, use F5 or Alt+Enter." msgstr "" -#: gnu/packages/games.scm:5021 +#: gnu/packages/games.scm:5022 msgid "" "Tennix is a 2D tennis game. You can play against the\n" "computer or against another player using the keyboard. The game runs\n" "in-window at 640x480 resolution or fullscreen." msgstr "" -#: gnu/packages/games.scm:5105 +#: gnu/packages/games.scm:5106 msgid "" "Warzone 2100 offers campaign, multi-player, and single-player skirmish\n" "modes. An extensive tech tree with over 400 different technologies, combined\n" @@ -3993,7 +4110,7 @@ msgid "" "tactics." msgstr "" -#: gnu/packages/games.scm:5184 +#: gnu/packages/games.scm:5185 msgid "" "In Widelands, you are the regent of a small clan. You start out with\n" "nothing but your headquarters, where all your resources are stored.\n" @@ -4015,7 +4132,7 @@ msgid "" "of war. Widelands also offers an Artificial Intelligence to challenge you." msgstr "" -#: gnu/packages/games.scm:5236 +#: gnu/packages/games.scm:5237 msgid "" "In the year 2579, the intergalactic weapons corporation, WEAPCO, has\n" "dominated the galaxy. Guide Chris Bainfield and his friend Sid Wilson on\n" @@ -4024,7 +4141,7 @@ msgid "" "in strikes against the evil corporation." msgstr "" -#: gnu/packages/games.scm:5267 +#: gnu/packages/games.scm:5268 msgid "" "In this game you are the captain of the cargo ship Chromium B.S.U. and\n" "are responsible for delivering supplies to the troops on the front line. Your\n" @@ -4032,7 +4149,7 @@ msgid "" "safety of the Chromium vessel." msgstr "" -#: gnu/packages/games.scm:5350 +#: gnu/packages/games.scm:5351 msgid "" "Tux Paint is a free drawing program designed for young children (kids\n" "ages 3 and up). It has a simple, easy-to-use interface; fun sound effects;\n" @@ -4041,23 +4158,23 @@ msgid "" "your child be creative." msgstr "" -#: gnu/packages/games.scm:5390 +#: gnu/packages/games.scm:5391 msgid "" "This package contains a set of \"Rubber Stamp\" images which can be used\n" "with the \"Stamp\" tool within Tux Paint." msgstr "" -#: gnu/packages/games.scm:5439 +#: gnu/packages/games.scm:5440 msgid "Tux Paint Config is a graphical configuration editor for Tux Paint." msgstr "" -#: gnu/packages/games.scm:5491 +#: gnu/packages/games.scm:5492 msgid "" "SuperTux is a classic 2D jump'n run sidescroller game in\n" "a style similar to the original Super Mario games." msgstr "" -#: gnu/packages/games.scm:5523 +#: gnu/packages/games.scm:5524 msgid "" "TinTin++ is a MUD client which supports MCCP (Mud Client Compression\n" "Protocol), MMCP (Mud Master Chat Protocol), xterm 256 colors, most TELNET\n" @@ -4065,7 +4182,7 @@ msgid "" "Linux / Mac OS X servers, and an auto mapper with a VT100 map display." msgstr "" -#: gnu/packages/games.scm:5563 +#: gnu/packages/games.scm:5564 msgid "" "Learn programming, playing with ants and spider webs ;-)\n" "Your robot ant can be programmed in many languages: OCaml, Python, C, C++,\n" @@ -4073,14 +4190,14 @@ msgid "" "programmers may also add their own favorite language." msgstr "" -#: gnu/packages/games.scm:5602 +#: gnu/packages/games.scm:5603 msgid "" "Bambam is a simple baby keyboard (and gamepad) masher\n" "application that locks the keyboard and mouse and instead displays bright\n" "colors, pictures, and sounds." msgstr "" -#: gnu/packages/games.scm:5663 +#: gnu/packages/games.scm:5664 msgid "" "Mr. Rescue is an arcade styled 2d action game centered around evacuating\n" "civilians from burning buildings. The game features fast-paced fire\n" @@ -4088,7 +4205,7 @@ msgid "" "throwing people around in pseudo-randomly generated buildings." msgstr "" -#: gnu/packages/games.scm:5770 +#: gnu/packages/games.scm:5771 msgid "" "HyperRogue is a game in which the player collects treasures and fights\n" "monsters -- rogue-like but for the fact that it is played on the hyperbolic\n" @@ -4102,13 +4219,13 @@ msgid "" "symbols, it still needs graphics to render the non-euclidean world." msgstr "" -#: gnu/packages/games.scm:5817 +#: gnu/packages/games.scm:5818 msgid "" "Kobo Deluxe is an enhanced version of Akira Higuchi's XKobo graphical game\n" "for Un*x systems with X11." msgstr "" -#: gnu/packages/games.scm:5845 +#: gnu/packages/games.scm:5846 msgid "" "Freeciv is a turn-based empire building strategy game\n" "inspired by the history of human civilization. The game commences in\n" @@ -4116,7 +4233,7 @@ msgid "" "into the Space Age." msgstr "" -#: gnu/packages/games.scm:5878 +#: gnu/packages/games.scm:5879 msgid "" "@code{No More Secrets} provides a command line tool called \"nms\"\n" "that recreates the famous data decryption effect seen on screen in the 1992\n" @@ -4127,25 +4244,25 @@ msgid "" "starting a decryption sequence to reveal the original plaintext characters." msgstr "" -#: gnu/packages/games.scm:5906 +#: gnu/packages/games.scm:5907 msgid "This package contains the data files required for MegaGlest." msgstr "" -#: gnu/packages/games.scm:5961 +#: gnu/packages/games.scm:5962 msgid "" "MegaGlest is a cross-platform 3D real-time strategy (RTS)\n" "game, where you control the armies of one of seven different factions: Tech,\n" "Magic, Egypt, Indians, Norsemen, Persian or Romans." msgstr "" -#: gnu/packages/games.scm:6013 +#: gnu/packages/games.scm:6014 msgid "" "In FreeGish you control Gish, a ball of tar who lives\n" "happily with his girlfriend Brea, until one day a mysterious dark creature\n" "emerges from a sewer hole and pulls her below ground." msgstr "" -#: gnu/packages/games.scm:6049 +#: gnu/packages/games.scm:6050 msgid "" "C-Dogs SDL is a classic overhead run-and-gun game,\n" "supporting up to 4 players in co-op and deathmatch modes. Customize your\n" @@ -4153,21 +4270,21 @@ msgid "" "over 100 user-created campaigns." msgstr "" -#: gnu/packages/games.scm:6149 +#: gnu/packages/games.scm:6150 msgid "" "Kiki the nano bot is a 3D puzzle game. It is basically a\n" "mixture of the games Sokoban and Kula-World. Your task is to help Kiki, a\n" "small robot living in the nano world, repair its maker." msgstr "" -#: gnu/packages/games.scm:6225 +#: gnu/packages/games.scm:6226 msgid "" "Teeworlds is an online multiplayer game. Battle with up to\n" "16 players in a variety of game modes, including Team Deathmatch and Capture\n" "The Flag. You can even design your own maps!" msgstr "" -#: gnu/packages/games.scm:6285 +#: gnu/packages/games.scm:6286 msgid "" "Enigma is a puzzle game with 550 unique levels. The object\n" "of the game is to find and uncover pairs of identically colored ‘Oxyd’ stones.\n" @@ -4179,7 +4296,7 @@ msgid "" "with the mouse isn’t always trivial." msgstr "" -#: gnu/packages/games.scm:6319 +#: gnu/packages/games.scm:6320 msgid "" "Chroma is an abstract puzzle game. A variety of colourful\n" "shapes are arranged in a series of increasingly complex patterns, forming\n" @@ -4189,7 +4306,7 @@ msgid "" "becoming difficult enough to tax even the brightest of minds." msgstr "" -#: gnu/packages/games.scm:6384 +#: gnu/packages/games.scm:6385 msgid "" "Fish Fillets NG is strictly a puzzle game. The goal in\n" "every of the seventy levels is always the same: find a safe way out. The fish\n" @@ -4198,14 +4315,14 @@ msgid "" "fish. The whole game is accompanied by quiet, comforting music." msgstr "" -#: gnu/packages/games.scm:6452 +#: gnu/packages/games.scm:6453 msgid "" "Dungeon Crawl Stone Soup (also known as \"Crawl\" or DCSS\n" "for short) is a roguelike adventure through dungeons filled with dangerous\n" "monsters in a quest to find the mystifyingly fabulous Orb of Zot." msgstr "" -#: gnu/packages/games.scm:6529 +#: gnu/packages/games.scm:6530 msgid "" "Lugaru is a third-person action game. The main character,\n" "Turner, is an anthropomorphic rebel bunny rabbit with impressive combat skills.\n" @@ -4215,11 +4332,11 @@ msgid "" "fight against their plot and save his fellow rabbits from slavery." msgstr "" -#: gnu/packages/games.scm:6574 +#: gnu/packages/games.scm:6575 msgid "0ad-data provides the data files required by the game 0ad." msgstr "" -#: gnu/packages/games.scm:6710 +#: gnu/packages/games.scm:6711 msgid "" "0 A.D. is a real-time strategy (RTS) game of ancient\n" "warfare. It's a historically-based war/economy game that allows players to\n" @@ -4229,7 +4346,7 @@ msgid "" "0ad needs a window manager that supports 'Extended Window Manager Hints'." msgstr "" -#: gnu/packages/games.scm:6776 +#: gnu/packages/games.scm:6777 msgid "" "The original Colossal Cave Adventure from 1976 was the origin of all\n" "text adventures, dungeon-crawl (computer) games, and computer-hosted\n" @@ -4238,7 +4355,7 @@ msgid "" "``adventure 2.5'' and ``430-point adventure''." msgstr "" -#: gnu/packages/games.scm:6899 +#: gnu/packages/games.scm:6900 msgid "" "Tales of Maj’Eyal (ToME) RPG, featuring tactical turn-based\n" "combat and advanced character building. Play as one of many unique races and\n" @@ -4249,21 +4366,21 @@ msgid "" "Tales of Maj’Eyal offers engaging roguelike gameplay for the 21st century." msgstr "" -#: gnu/packages/games.scm:6945 +#: gnu/packages/games.scm:6946 msgid "" "Quakespasm is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7002 +#: gnu/packages/games.scm:7003 msgid "" "vkquake is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7067 +#: gnu/packages/games.scm:7068 msgid "" "Yamagi Quake II is an enhanced client for id Software's Quake II.\n" "The main focus is an unchanged single player experience like back in 1997,\n" @@ -4273,18 +4390,18 @@ msgid "" "making Yamagi Quake II one of the most solid Quake II implementations available." msgstr "" -#: gnu/packages/games.scm:7100 +#: gnu/packages/games.scm:7101 msgid "Nudoku is a ncurses-based Sudoku game for your terminal." msgstr "" -#: gnu/packages/games.scm:7146 +#: gnu/packages/games.scm:7147 msgid "" "The Butterfly Effect (tbe) is a game that uses\n" "realistic physics simulations to combine lots of simple mechanical\n" "elements to achieve a simple goal in the most complex way possible." msgstr "" -#: gnu/packages/games.scm:7192 +#: gnu/packages/games.scm:7193 msgid "" "Pioneer is a space adventure game set in our galaxy at the turn of the\n" "31st century. The game is open-ended, and you are free to eke out whatever\n" @@ -4295,14 +4412,14 @@ msgid "" "whatever you make of it." msgstr "" -#: gnu/packages/games.scm:7221 +#: gnu/packages/games.scm:7222 msgid "" "Badass generates false commits for a range of dates, essentially\n" "hacking the gamification of contribution graphs on platforms such as\n" "Github or Gitlab." msgstr "" -#: gnu/packages/games.scm:7294 +#: gnu/packages/games.scm:7295 msgid "" "Colobot: Gold Edition is a real-time strategy game, where\n" "you can program your units (bots) in a language called CBOT, which is similar\n" @@ -4310,7 +4427,7 @@ msgid "" "You can save humanity and get programming skills!" msgstr "" -#: gnu/packages/games.scm:7386 +#: gnu/packages/games.scm:7387 msgid "" "GZdoom is a port of the Doom 2 game engine, with a modern\n" "renderer. It improves modding support with ZDoom's advanced mapping features\n" @@ -4318,14 +4435,14 @@ msgid "" "Strife, Chex Quest, and fan-created games like Harmony, Hacx and Freedoom." msgstr "" -#: gnu/packages/games.scm:7425 +#: gnu/packages/games.scm:7426 msgid "" "Odamex is a modification of the Doom engine that\n" "allows players to easily join servers dedicated to playing Doom\n" "online." msgstr "" -#: gnu/packages/games.scm:7453 +#: gnu/packages/games.scm:7454 msgid "" "Chocolate Doom takes a different approach to other source ports. Its\n" "aim is to accurately reproduce the experience of playing Vanilla Doom. It is\n" @@ -4338,7 +4455,7 @@ msgid "" "affect gameplay)." msgstr "" -#: gnu/packages/games.scm:7493 +#: gnu/packages/games.scm:7494 msgid "" "Crispy Doom is a friendly fork of Chocolate Doom that provides a higher\n" "display resolution, removes the static limits of the Doom engine and offers\n" @@ -4347,21 +4464,21 @@ msgid "" "original." msgstr "" -#: gnu/packages/games.scm:7566 +#: gnu/packages/games.scm:7567 msgid "This package provides C11 / gnu11 utilities C library" msgstr "" -#: gnu/packages/games.scm:7635 +#: gnu/packages/games.scm:7636 msgid "" "Fortune is a command-line utility which displays a random\n" "quotation from a collection of quotes." msgstr "" -#: gnu/packages/games.scm:7677 +#: gnu/packages/games.scm:7678 msgid "Xonotic-data provides the data files required by the game Xonotic." msgstr "" -#: gnu/packages/games.scm:7873 +#: gnu/packages/games.scm:7874 msgid "" "Xonotic is a free, fast-paced first-person shooter.\n" "The project is geared towards providing addictive arena shooter\n" @@ -4371,7 +4488,7 @@ msgid "" "open-source FPS of its kind." msgstr "" -#: gnu/packages/games.scm:7920 +#: gnu/packages/games.scm:7921 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4380,7 +4497,7 @@ msgid "" "ncurses for text display." msgstr "" -#: gnu/packages/games.scm:7964 +#: gnu/packages/games.scm:7966 msgid "" "Naev is a 2d action/rpg space game that combines elements from\n" "the action, RPG and simulation genres. You pilot a spaceship from\n" @@ -4392,7 +4509,7 @@ msgid "" "of lore accompanying everything from planets to equipment." msgstr "" -#: gnu/packages/games.scm:8013 +#: gnu/packages/games.scm:8015 msgid "" "Frotz is an interpreter for Infocom games and\n" "other Z-machine games in the text adventure/interactive fiction genre.\n" @@ -4404,7 +4521,7 @@ msgid "" "to play games on webpages. It can also be made into a chat bot." msgstr "" -#: gnu/packages/games.scm:8075 +#: gnu/packages/games.scm:8077 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4414,7 +4531,7 @@ msgid "" "when packaged in Blorb container files or optionally from individual files." msgstr "" -#: gnu/packages/games.scm:8166 +#: gnu/packages/games.scm:8168 msgid "" "Frozen-Bubble is a clone of the popular Puzzle Bobble game, in which\n" "you attempt to shoot bubbles into groups of the same color to cause them to\n" @@ -4429,7 +4546,7 @@ msgid "" "their own levels." msgstr "" -#: gnu/packages/games.scm:8199 +#: gnu/packages/games.scm:8201 msgid "" "Libmanette is a small GObject library giving you simple\n" "access to game controllers. It supports the de-facto standard gamepads as\n" @@ -4437,7 +4554,7 @@ msgid "" "GameController." msgstr "" -#: gnu/packages/games.scm:8245 +#: gnu/packages/games.scm:8247 msgid "" "Quadrapassel comes from the classic falling-block game,\n" "Tetris. The goal of the game is to create complete horizontal lines of\n" @@ -4449,7 +4566,7 @@ msgid "" "your score gets higher, you level up and the blocks fall faster." msgstr "" -#: gnu/packages/games.scm:8294 +#: gnu/packages/games.scm:8296 msgid "" "Endless Sky is a 2D space trading and combat game. Explore\n" "other star systems. Earn money by trading, carrying passengers, or completing\n" @@ -4459,7 +4576,7 @@ msgid "" "civilized than your own." msgstr "" -#: gnu/packages/games.scm:8443 +#: gnu/packages/games.scm:8445 msgid "" "StepMania is a dance and rhythm game. It features 3D\n" "graphics, keyboard and dance pad support, and an editor for creating your own\n" @@ -4469,7 +4586,7 @@ msgid "" "to download and install them in @file{$HOME/.stepmania-X.Y/Songs} directory." msgstr "" -#: gnu/packages/games.scm:8479 +#: gnu/packages/games.scm:8481 msgid "" "@i{oshu!} is a minimalist variant of the @i{osu!} rhythm game,\n" "which is played by pressing buttons and following along sliders as they appear\n" @@ -4479,7 +4596,7 @@ msgid "" "download and unpack them separately." msgstr "" -#: gnu/packages/games.scm:8562 +#: gnu/packages/games.scm:8564 msgid "" "Battle Tanks (also known as \"btanks\") is a funny battle\n" "game, where you can choose one of three vehicles and eliminate your enemy\n" @@ -4488,7 +4605,7 @@ msgid "" "and cooperative." msgstr "" -#: gnu/packages/games.scm:8596 +#: gnu/packages/games.scm:8598 msgid "" "Slime Volley is a 2D arcade-oriented volleyball simulation, in\n" "the spirit of some Java games of the same name.\n" @@ -4499,7 +4616,7 @@ msgid "" "the ground, the set ends and all balls are served again." msgstr "" -#: gnu/packages/games.scm:8626 +#: gnu/packages/games.scm:8628 msgid "" "Slingshot is a two-dimensional strategy game where two\n" "players attempt to shoot one another through a section of space populated by\n" @@ -4507,14 +4624,14 @@ msgid "" "affected by the gravity of the planets." msgstr "" -#: gnu/packages/games.scm:8674 +#: gnu/packages/games.scm:8676 msgid "" "4D-TRIS is an alteration of the well-known Tetris game. The\n" "game field is extended to 4D space, which has to filled up by the gamer with\n" "4D hyper cubes." msgstr "" -#: gnu/packages/games.scm:8751 +#: gnu/packages/games.scm:8753 msgid "" "Arx Libertatis is a cross-platform port of Arx Fatalis, a 2002\n" "first-person role-playing game / dungeon crawler developed by Arkane Studios.\n" @@ -4524,7 +4641,7 @@ msgid "" "where the player draws runes in real time to effect the desired spell." msgstr "" -#: gnu/packages/games.scm:8797 +#: gnu/packages/games.scm:8799 msgid "" "The Legend of Edgar is a 2D platform game with a persistent world.\n" "When Edgar's father fails to return home after venturing out one dark and stormy night,\n" @@ -4532,7 +4649,7 @@ msgid "" "a fortress beyond the forbidden swamp." msgstr "" -#: gnu/packages/games.scm:8899 +#: gnu/packages/games.scm:8901 msgid "" "OpenClonk is a multiplayer action/tactics/skill game. It is\n" "often referred to as a mixture of The Settlers and Worms. In a simple 2D\n" @@ -4542,20 +4659,20 @@ msgid "" "fight each other on an arena-like map." msgstr "" -#: gnu/packages/games.scm:8931 +#: gnu/packages/games.scm:8933 msgid "" "Flare (Free Libre Action Roleplaying Engine) is a simple\n" "game engine built to handle a very specific kind of game: single-player 2D\n" "action RPGs." msgstr "" -#: gnu/packages/games.scm:8994 +#: gnu/packages/games.scm:8996 msgid "" "Flare is a single-player 2D action RPG with\n" "fast-paced action and a dark fantasy style." msgstr "" -#: gnu/packages/games.scm:9046 +#: gnu/packages/games.scm:9048 msgid "" "Far below the surface of the planet is a place of limitless\n" "power. Those that seek to control such a utopia will soon bring an end to\n" @@ -4569,7 +4686,7 @@ msgid "" "Orcus Dome from evil." msgstr "" -#: gnu/packages/games.scm:9108 +#: gnu/packages/games.scm:9110 msgid "" "Marble Marcher is a video game that uses a fractal physics\n" "engine and fully procedural rendering to produce beautiful and unique\n" @@ -4579,7 +4696,7 @@ msgid "" "levels to unlock." msgstr "" -#: gnu/packages/games.scm:9159 +#: gnu/packages/games.scm:9161 msgid "" "SimGear is a set of libraries designed to be used as\n" "building blocks for quickly assembling 3D simulations, games, and\n" @@ -4587,7 +4704,7 @@ msgid "" "and also provides the base for the FlightGear Flight Simulator." msgstr "" -#: gnu/packages/games.scm:9253 +#: gnu/packages/games.scm:9255 msgid "" "The goal of the FlightGear project is to create a\n" "sophisticated flight simulator framework for use in research or academic\n" @@ -4597,14 +4714,14 @@ msgid "" "simulator." msgstr "" -#: gnu/packages/games.scm:9306 +#: gnu/packages/games.scm:9308 msgid "" "You, as a bunny, have to jump on your opponents to make them\n" "explode. It is a true multiplayer game; you cannot play this alone. You can\n" "play with up to four players simultaneously. It has network support." msgstr "" -#: gnu/packages/games.scm:9373 +#: gnu/packages/games.scm:9375 msgid "" "Hedgewars is a turn based strategy, artillery, action and comedy game,\n" "featuring the antics of pink hedgehogs with attitude as they battle from the\n" @@ -4614,7 +4731,7 @@ msgid "" "and bring the war to your enemy." msgstr "" -#: gnu/packages/games.scm:9407 +#: gnu/packages/games.scm:9409 msgid "" "The gruid module provides packages for easily building\n" "grid-based applications in Go. The library abstracts rendering and input for\n" @@ -4624,13 +4741,13 @@ msgid "" "application." msgstr "" -#: gnu/packages/games.scm:9437 +#: gnu/packages/games.scm:9439 msgid "" "The gruid-tcell module provides a Gruid driver for building\n" "terminal full-window applications." msgstr "" -#: gnu/packages/games.scm:9464 +#: gnu/packages/games.scm:9466 msgid "" "Harmonist: Dayoriah Clan Infiltration is a stealth\n" "coffee-break roguelike game. The game has a heavy focus on tactical\n" @@ -4640,7 +4757,7 @@ msgid "" "on items and player adaptability for character progression." msgstr "" -#: gnu/packages/games.scm:9573 +#: gnu/packages/games.scm:9575 msgid "" "Drascula: The Vampire Strikes Back is a classic humorous 2D\n" "point and click adventure game.\n" @@ -4652,7 +4769,7 @@ msgid "" "the World and demonstrating that he is even more evil than his brother Vlad." msgstr "" -#: gnu/packages/games.scm:9653 +#: gnu/packages/games.scm:9655 msgid "" "Lure of the Temptress is a classic 2D point and click adventure game.\n" "\n" @@ -4671,7 +4788,7 @@ msgid "" "Skorl. Maybe it would be an idea to try and escape..." msgstr "" -#: gnu/packages/games.scm:9752 +#: gnu/packages/games.scm:9754 msgid "" "Flight of the Amazon Queen is a 2D point-and-click\n" "adventure game set in the 1940s.\n" @@ -4688,7 +4805,7 @@ msgid "" "women and 6-foot-tall pygmies." msgstr "" -#: gnu/packages/games.scm:9852 +#: gnu/packages/games.scm:9854 msgid "" "Beneath a Steel Sky is a science-fiction thriller set in a bleak\n" "post-apocalyptic vision of the future. It revolves around Union City,\n" @@ -4711,7 +4828,7 @@ msgid "" "and to seek vengeance for the killing of his tribe." msgstr "" -#: gnu/packages/games.scm:9911 +#: gnu/packages/games.scm:9913 msgid "" "GNU Robots is a game in which you program a robot to explore a world\n" "full of enemies that can hurt it, obstacles and food to be eaten. The goal of\n" @@ -4719,14 +4836,14 @@ msgid "" "may be written in a plain text file in the Scheme programming language." msgstr "" -#: gnu/packages/games.scm:9981 +#: gnu/packages/games.scm:9983 msgid "" "Ri-li is a game in which you drive a wooden toy\n" "steam locomotive across many levels and collect all the coaches to\n" "win." msgstr "" -#: gnu/packages/games.scm:10037 +#: gnu/packages/games.scm:10039 msgid "" "FreeOrion is a turn-based space empire and galactic conquest (4X)\n" "computer game being designed and built by the FreeOrion project. Control an\n" @@ -4736,14 +4853,14 @@ msgid "" "remake of that series or any other game." msgstr "" -#: gnu/packages/games.scm:10093 +#: gnu/packages/games.scm:10095 msgid "" "Leela-zero is a Go engine with no human-provided knowledge, modeled after\n" "the AlphaGo Zero paper. The current best network weights file for the engine\n" "can be downloaded from @url{https://zero.sjeng.org/best-network}." msgstr "" -#: gnu/packages/games.scm:10171 +#: gnu/packages/games.scm:10173 msgid "" "This a tool for Go players which performs the following functions:\n" "@itemize\n" @@ -4755,7 +4872,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:10214 +#: gnu/packages/games.scm:10216 msgid "" "KTuberling is a drawing toy intended for small children and\n" "adults who remain young at heart. The game has no winner; the only purpose is\n" @@ -4774,7 +4891,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10260 +#: gnu/packages/games.scm:10262 msgid "" "Picmi is a number logic game in which cells in a grid have\n" "to be colored or left blank according to numbers given at the side of the\n" @@ -4783,7 +4900,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10297 +#: gnu/packages/games.scm:10299 msgid "" "Kolf is a miniature golf game for one to ten players. The\n" "game is played from an overhead view, with a short bar representing the golf\n" @@ -4802,13 +4919,13 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10341 +#: gnu/packages/games.scm:10343 msgid "" "Shared library and common files for kmahjongg, kshisen and\n" "other Mah Jongg like games." msgstr "" -#: gnu/packages/games.scm:10374 +#: gnu/packages/games.scm:10376 msgid "" "In KMahjongg the tiles are scrambled and staked on top of\n" "each other to resemble a certain shape. The player is then expected to remove\n" @@ -4820,7 +4937,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10416 +#: gnu/packages/games.scm:10418 msgid "" "KShisen is a solitaire-like game played using the standard\n" "set of Mahjong tiles. Unlike Mahjong however, KShisen has only one layer of\n" @@ -4829,7 +4946,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10471 +#: gnu/packages/games.scm:10473 msgid "" "Kajongg is the ancient Chinese board game for 4 players.\n" "\n" @@ -4844,7 +4961,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10513 +#: gnu/packages/games.scm:10515 msgid "" "KBreakout is similar to the classics breakout and xboing,\n" "featuring a number of added graphical enhancements and effects. You control a\n" @@ -4854,7 +4971,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10551 +#: gnu/packages/games.scm:10553 msgid "" "KMines is a classic Minesweeper game. The idea is to\n" "uncover all the squares without blowing up any mines. When a mine is blown\n" @@ -4863,7 +4980,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10588 +#: gnu/packages/games.scm:10590 msgid "" "Konquest is the KDE version of Gnu-Lactic Konquest. Players\n" "conquer other planets by sending ships to them. The goal is to build an\n" @@ -4874,7 +4991,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10627 +#: gnu/packages/games.scm:10629 msgid "" "KBounce is a single player arcade game with the elements of\n" "puzzle. It is played on a field, surrounded by wall, with two or more balls\n" @@ -4884,7 +5001,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10665 +#: gnu/packages/games.scm:10667 msgid "" "KBlocks is the classic Tetris-like falling blocks game.\n" "\n" @@ -4896,7 +5013,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10708 +#: gnu/packages/games.scm:10710 msgid "" "KSudoku is a Sudoku game and solver, supporting a range of\n" "2D and 3D Sudoku variants. In addition to playing Sudoku, it can print Sudoku\n" @@ -4925,7 +5042,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10763 +#: gnu/packages/games.scm:10765 msgid "" "KLines is a simple but highly addictive one player game.\n" "\n" @@ -4942,7 +5059,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10806 +#: gnu/packages/games.scm:10808 msgid "" "KGoldrunner is an action game where the hero runs through a\n" "maze, climbs stairs, dig holes and dodges enemies in order to collect all the\n" @@ -4956,7 +5073,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10849 +#: gnu/packages/games.scm:10851 msgid "" "KDiamond is a three-in-a-row game like Bejeweled. It\n" "features unlimited fun with randomly generated games and five difficulty\n" @@ -4965,7 +5082,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10885 +#: gnu/packages/games.scm:10887 msgid "" "KFourInLine is a board game for two players based on the\n" "Connect-Four game.\n" @@ -4976,7 +5093,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10924 +#: gnu/packages/games.scm:10926 msgid "" "KBlackbox is a game of hide and seek played on a grid of\n" "boxes where the computer has hidden several balls. The position of the hidden\n" @@ -4988,7 +5105,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10964 +#: gnu/packages/games.scm:10966 msgid "" "KNetWalk is a small game where you have to build up a\n" "computer network by rotating the wires to connect the terminals to the server.\n" @@ -5001,7 +5118,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11002 +#: gnu/packages/games.scm:11004 msgid "" "Bomber is a single player arcade game.\n" "\n" @@ -5017,7 +5134,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11047 +#: gnu/packages/games.scm:11049 msgid "" "Granatier is a clone of the classic Bomberman game,\n" "inspired by the work of the Clanbomber clone.\n" @@ -5025,7 +5142,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11085 +#: gnu/packages/games.scm:11087 msgid "" "KsirK is a multi-player network-enabled game. The goal of\n" "the game is simply to conquer the world by attacking your neighbors with your\n" @@ -5050,7 +5167,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11145 +#: gnu/packages/games.scm:11147 msgid "" "Palapeli is a jigsaw puzzle game. Unlike other games in\n" "that genre, you are not limited to aligning pieces on imaginary grids. The\n" @@ -5062,7 +5179,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11184 +#: gnu/packages/games.scm:11186 msgid "" "Kiriki is an addictive and fun dice game, designed to be\n" "played by as many as six players.\n" @@ -5073,7 +5190,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11224 +#: gnu/packages/games.scm:11226 msgid "" "Kigo is an open-source implementation of the popular Go\n" "game.\n" @@ -5090,7 +5207,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11269 +#: gnu/packages/games.scm:11271 msgid "" "Kubrick is a game based on the Rubik's Cube puzzle.\n" "\n" @@ -5103,7 +5220,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11309 +#: gnu/packages/games.scm:11311 msgid "" "Lieutnant Skat (from German \"Offiziersskat\") is a fun and\n" "engaging card game for two players, where the second player is either live\n" @@ -5114,7 +5231,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11347 +#: gnu/packages/games.scm:11349 msgid "" "Kapman is a clone of the well known game Pac-Man.\n" "\n" @@ -5126,7 +5243,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11386 +#: gnu/packages/games.scm:11388 msgid "" "KSpaceduel is a space battle game for one or two players,\n" "where two ships fly around a star in a struggle to be the only survivor.\n" @@ -5134,7 +5251,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11419 +#: gnu/packages/games.scm:11421 msgid "" "Bovo is a Gomoku (from Japanese 五目並べ - lit. \"five\n" "points\") like game for two players, where the opponents alternate in placing\n" @@ -5145,7 +5262,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11457 +#: gnu/packages/games.scm:11459 msgid "" "Killbots is a simple game of evading killer robots.\n" "\n" @@ -5159,7 +5276,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11499 +#: gnu/packages/games.scm:11501 msgid "" "KSnakeDuel is a fast action game where you steer a snake\n" "which has to eat food. While eating the snake grows. But once a player\n" @@ -5169,7 +5286,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11535 +#: gnu/packages/games.scm:11537 msgid "" "In Kollision you use mouse to control a small blue ball in a\n" "closed space environment filled with small red balls, which move about\n" @@ -5180,7 +5297,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11575 +#: gnu/packages/games.scm:11577 msgid "" "KBattleship is a Battle Ship game for KDE.\n" "\n" @@ -5191,7 +5308,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11615 +#: gnu/packages/games.scm:11617 msgid "" "KReversi is a simple one player strategy game played\n" "against the computer.\n" @@ -5204,7 +5321,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11655 +#: gnu/packages/games.scm:11657 msgid "" "KSquares is an implementation of the popular paper based\n" "game Squares. Two players take turns connecting dots on a grid to complete\n" @@ -5213,7 +5330,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11692 +#: gnu/packages/games.scm:11694 msgid "" "KJumpingcube is a simple tactical game for one or two\n" "players, played on a grid of numbered squares. Each turn, players compete for\n" @@ -5222,7 +5339,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11782 +#: gnu/packages/games.scm:11784 msgid "" "X-Moto is a challenging 2D motocross platform game, where\n" "physics play an all important role in the gameplay. You need to\n" @@ -5230,27 +5347,27 @@ msgid "" "the more difficult challenges." msgstr "" -#: gnu/packages/games.scm:11827 +#: gnu/packages/games.scm:11829 msgid "" "Eboard is a chess board interface for ICS (Internet Chess Servers)\n" "and chess engines." msgstr "" -#: gnu/packages/games.scm:11880 +#: gnu/packages/games.scm:11882 msgid "" "ChessX is a chess database. With ChessX you can operate on your\n" "collection of chess games in many ways: browse, edit, add, organize, analyze,\n" "etc. You can also play games on FICS or against an engine." msgstr "" -#: gnu/packages/games.scm:11935 +#: gnu/packages/games.scm:11937 msgid "" "Stockfish is a very strong chess engine. It is much stronger than the\n" "best human chess grandmasters. It can be used with UCI-compatible GUIs like\n" "ChessX." msgstr "" -#: gnu/packages/games.scm:11964 +#: gnu/packages/games.scm:11966 msgid "" "Barrage is a rather destructive action game that puts you on a shooting\n" "range with the objective to hit as many dummy targets as possible within\n" @@ -5259,7 +5376,7 @@ msgid "" "get high scores." msgstr "" -#: gnu/packages/games.scm:11990 +#: gnu/packages/games.scm:11992 msgid "" "This is a clone of the classic game BurgerTime. In it, you play\n" "the part of a chef who must create burgers by stepping repeatedly on\n" @@ -5269,7 +5386,7 @@ msgid "" "protect you." msgstr "" -#: gnu/packages/games.scm:12018 +#: gnu/packages/games.scm:12020 msgid "" "Seven Kingdoms, designed by Trevor Chan, brings a blend of Real-Time\n" "Strategy with the addition of trade, diplomacy, and espionage. The game\n" @@ -5279,7 +5396,7 @@ msgid "" "kingdom." msgstr "" -#: gnu/packages/games.scm:12134 +#: gnu/packages/games.scm:12136 msgid "" "In the grand tradition of Marble Madness and Super Monkey Ball,\n" "Neverball has you guide a rolling ball through dangerous territory. Balance\n" @@ -5289,13 +5406,13 @@ msgid "" "game." msgstr "" -#: gnu/packages/games.scm:12210 +#: gnu/packages/games.scm:12212 msgid "" "With PokerTH you can play the Texas holdem poker game, either against\n" "computer opponents or against real players online." msgstr "" -#: gnu/packages/games.scm:12281 +#: gnu/packages/games.scm:12283 msgid "" "Xblackjack is a MOTIF/OLIT based tool constructed to get you ready for\n" "the casino. It was inspired by a book called \"Beat the Dealer\" by Edward\n" @@ -5304,13 +5421,13 @@ msgid "" "System\" (high-low system)." msgstr "" -#: gnu/packages/games.scm:12321 +#: gnu/packages/games.scm:12323 msgid "" "Pilot your ship inside a planet to find and rescue the colonists trapped\n" "inside the Zenith Colony." msgstr "" -#: gnu/packages/games.scm:12341 +#: gnu/packages/games.scm:12343 msgid "" "Provides a large set of Go-related services for X11:\n" "@itemize\n" @@ -5321,7 +5438,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:12401 +#: gnu/packages/games.scm:12403 msgid "" "Passage is meant to be a memento mori game. It presents an entire life,\n" "from young adulthood through old age and death, in the span of five minutes.\n" @@ -5330,21 +5447,21 @@ msgid "" "there's no right way to interpret it." msgstr "" -#: gnu/packages/games.scm:12435 +#: gnu/packages/games.scm:12437 msgid "" "High performance animated desktop background setter for\n" "X11 that won't set your CPU on fire, drain your laptop battery, or lower video\n" "game FPS." msgstr "" -#: gnu/packages/games.scm:12465 +#: gnu/packages/games.scm:12467 msgid "" "Curse of War is a fast-paced action strategy game originally\n" "implemented using ncurses user interface. An SDL graphical version is also\n" "available." msgstr "" -#: gnu/packages/games.scm:12496 +#: gnu/packages/games.scm:12498 msgid "" "Schiffbruch is a mix of building, strategy and adventure and gets played\n" "with a two-dimensional view. The game deals with the consequences of a ship\n" @@ -5353,13 +5470,13 @@ msgid "" "get attention, so you get found." msgstr "" -#: gnu/packages/games.scm:12556 +#: gnu/packages/games.scm:12558 msgid "" "This package provides port of Prince of Persia, based on the\n" "disassembly of the DOS version, extended with new features." msgstr "" -#: gnu/packages/games.scm:12587 +#: gnu/packages/games.scm:12589 #, scheme-format msgid "" "@code{fheroes2} is an implementation of Heroes of Might and\n" @@ -5455,7 +5572,7 @@ msgid "" "from Markdown files." msgstr "" -#: gnu/packages/gettext.scm:311 +#: gnu/packages/gettext.scm:304 msgid "" "The po4a (PO for anything) project goal is to ease translations (and\n" "more interestingly, the maintenance of translations) using gettext tools on\n" @@ -5538,18 +5655,18 @@ msgid "" "system. It was forked from the GNU Image Manipulation Program." msgstr "" -#: gnu/packages/gnome.scm:284 +#: gnu/packages/gnome.scm:288 msgid "GUPnP-IGD is a library to handle UPnP IGD port mapping." msgstr "" -#: gnu/packages/gnome.scm:340 +#: gnu/packages/gnome.scm:344 msgid "" "Brasero is an application to burn CD/DVD for the Gnome\n" "Desktop. It is designed to be as simple as possible and has some unique\n" "features to enable users to create their discs easily and quickly." msgstr "" -#: gnu/packages/gnome.scm:372 +#: gnu/packages/gnome.scm:376 msgid "" "Libcloudproviders is a DBus API that allows cloud storage sync\n" "clients to expose their services. Clients such as file managers and desktop\n" @@ -5557,19 +5674,19 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:444 +#: gnu/packages/gnome.scm:448 msgid "" "LibGRSS is a Glib abstraction to handle feeds in RSS, Atom,\n" "and other formats." msgstr "" -#: gnu/packages/gnome.scm:472 +#: gnu/packages/gnome.scm:476 msgid "" "GNOME-JS-Common provides common modules for GNOME JavaScript\n" "bindings." msgstr "" -#: gnu/packages/gnome.scm:555 +#: gnu/packages/gnome.scm:559 msgid "" "Seed is a library and interpreter, dynamically bridging\n" "(through GObjectIntrospection) the WebKit JavaScriptCore engine, with the\n" @@ -5578,21 +5695,21 @@ msgid "" "in JavaScript." msgstr "" -#: gnu/packages/gnome.scm:611 +#: gnu/packages/gnome.scm:615 msgid "" "Libdmapsharing is a library which allows programs to access,\n" "share and control the playback of media content using DMAP (DAAP, DPAP & DACP).\n" "It is written in C using GObject and libsoup." msgstr "" -#: gnu/packages/gnome.scm:644 +#: gnu/packages/gnome.scm:648 msgid "" "GTX is a small collection of convenience functions intended to\n" "enhance the GLib testing framework. With specific emphasis on easing the pain\n" "of writing test cases for asynchronous interactions." msgstr "" -#: gnu/packages/gnome.scm:721 +#: gnu/packages/gnome.scm:725 msgid "" "Dee is a library that uses DBus to provide objects allowing\n" "you to create Model-View-Controller type programs across DBus. It also consists\n" @@ -5600,7 +5717,7 @@ msgid "" "of known objects without needing a central registrar." msgstr "" -#: gnu/packages/gnome.scm:802 +#: gnu/packages/gnome.scm:806 msgid "" "Zeitgeist is a service which logs the users’s activities and\n" "events, anywhere from files opened to websites visited and conversations. It\n" @@ -5609,27 +5726,27 @@ msgid "" "patterns." msgstr "" -#: gnu/packages/gnome.scm:869 +#: gnu/packages/gnome.scm:871 msgid "" "GNOME Recipes helps you discover what to cook today,\n" "tomorrow, the rest of the week and for special occasions." msgstr "" -#: gnu/packages/gnome.scm:939 +#: gnu/packages/gnome.scm:940 msgid "" "GNOME Photos is a simple and elegant replacement for using a\n" "file manager to deal with photos. Enhance, crop and edit in a snap. Seamless\n" "cloud integration is offered through GNOME Online Accounts." msgstr "" -#: gnu/packages/gnome.scm:1007 +#: gnu/packages/gnome.scm:1008 msgid "" "GNOME Music is the new GNOME music playing application that\n" "aims to combine an elegant and immersive browsing experience with simple\n" "and straightforward controls." msgstr "" -#: gnu/packages/gnome.scm:1028 +#: gnu/packages/gnome.scm:1029 msgid "" "PortableXDR is an implementation of External Data\n" "Representation (XDR) Library. It is a standard data serialization format, for\n" @@ -5637,25 +5754,25 @@ msgid "" "between different kinds of computer systems." msgstr "" -#: gnu/packages/gnome.scm:1066 +#: gnu/packages/gnome.scm:1067 msgid "" "Tepl is a library that eases the development of\n" "GtkSourceView-based text editors and IDEs." msgstr "" -#: gnu/packages/gnome.scm:1107 +#: gnu/packages/gnome.scm:1108 msgid "" "krb5-auth-dialog is a simple dialog that monitors Kerberos\n" "tickets, and pops up a dialog when they are about to expire." msgstr "" -#: gnu/packages/gnome.scm:1132 +#: gnu/packages/gnome.scm:1133 msgid "" "Notification-Daemon is the server implementation of the\n" "freedesktop.org desktop notification specification." msgstr "" -#: gnu/packages/gnome.scm:1168 +#: gnu/packages/gnome.scm:1169 msgid "" "The mm-common module provides the build infrastructure\n" "and utilities shared among the GNOME C++ binding libraries. Release\n" @@ -5663,55 +5780,55 @@ msgid "" "Library reference documentation." msgstr "" -#: gnu/packages/gnome.scm:1214 +#: gnu/packages/gnome.scm:1215 msgid "" "PhoDav was initially developed as a file-sharing mechanism for Spice,\n" "but it is generic enough to be reused in other projects,\n" "in particular in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1267 +#: gnu/packages/gnome.scm:1268 msgid "" "GNOME Color Manager is a session framework that makes\n" "it easy to manage, install and generate color profiles\n" "in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1319 +#: gnu/packages/gnome.scm:1320 msgid "" "GNOME Online Miners provides a set of crawlers that\n" "go through your online content and index them locally in Tracker.\n" "It has miners for Facebook, Flickr, Google, ownCloud and SkyDrive." msgstr "" -#: gnu/packages/gnome.scm:1352 +#: gnu/packages/gnome.scm:1353 msgid "" "This package provides a library to handle resource discovery\n" "and announcement over @acronym{SSDP, Simple Service Discovery Protocol} and\n" "a debugging tool, @command{gssdp-device-sniffer}." msgstr "" -#: gnu/packages/gnome.scm:1391 +#: gnu/packages/gnome.scm:1392 msgid "" "This package provides GUPnP, an object-oriented framework\n" "for creating UPnP devices and control points, written in C using\n" "@code{GObject} and @code{libsoup}." msgstr "" -#: gnu/packages/gnome.scm:1423 +#: gnu/packages/gnome.scm:1424 msgid "" "This package provides a small utility library to\n" "support DLNA-related tasks such as media profile guessing, transcoding to a\n" "given profile, etc. DLNA is a subset of UPnP A/V." msgstr "" -#: gnu/packages/gnome.scm:1453 +#: gnu/packages/gnome.scm:1454 msgid "" "This package provides a small library for handling\n" "and implementation of UPnP A/V profiles." msgstr "" -#: gnu/packages/gnome.scm:1478 +#: gnu/packages/gnome.scm:1479 msgid "" "The libmediaart library is the foundation for media art caching,\n" "extraction, and lookup for applications on the desktop." @@ -5724,14 +5841,14 @@ msgid "" "tour of all gnome components and allows the user to set them up." msgstr "" -#: gnu/packages/gnome.scm:1584 +#: gnu/packages/gnome.scm:1583 msgid "" "GNOME User Share is a small package that binds together\n" "various free software projects to bring easy to use user-level file\n" "sharing to the masses." msgstr "" -#: gnu/packages/gnome.scm:1639 +#: gnu/packages/gnome.scm:1638 msgid "" "Sushi is a DBus-activated service that allows applications\n" "to preview files on the GNOME desktop." @@ -5783,7 +5900,7 @@ msgid "" "and system administrators." msgstr "" -#: gnu/packages/gnome.scm:1946 +#: gnu/packages/gnome.scm:1950 msgid "" "Dia can be used to draw different types of diagrams, and\n" "includes support for UML static structure diagrams (class diagrams), entity\n" @@ -5791,28 +5908,28 @@ msgid "" "formats like PNG, SVG, PDF and EPS." msgstr "" -#: gnu/packages/gnome.scm:1991 +#: gnu/packages/gnome.scm:1995 msgid "" "libgdata is a GLib-based library for accessing online service APIs using\n" "the GData protocol — most notably, Google's services. It provides APIs to\n" "access the common Google services, and has full asynchronous support." msgstr "" -#: gnu/packages/gnome.scm:2019 +#: gnu/packages/gnome.scm:2023 msgid "" "libgxps is a GObject-based library for handling and rendering XPS\n" "documents. This package also contains binaries that can convert XPS documents\n" "to other formats." msgstr "" -#: gnu/packages/gnome.scm:2060 +#: gnu/packages/gnome.scm:2063 msgid "" "Characters is a simple utility application to find\n" "and insert unusual characters. It allows you to quickly find the\n" "character you are looking for by searching for keywords." msgstr "" -#: gnu/packages/gnome.scm:2081 +#: gnu/packages/gnome.scm:2084 msgid "" "gnome-common contains various files needed to bootstrap\n" "GNOME modules built from Git. It contains a common \"autogen.sh\" script that\n" @@ -5820,13 +5937,13 @@ msgid "" "commonly used macros." msgstr "" -#: gnu/packages/gnome.scm:2142 +#: gnu/packages/gnome.scm:2145 msgid "" "GNOME Contacts organizes your contact information from online and\n" "offline sources, providing a centralized place for managing your contacts." msgstr "" -#: gnu/packages/gnome.scm:2222 +#: gnu/packages/gnome.scm:2225 msgid "" "The libgnome-desktop library provides API shared by several applications\n" "on the desktop, but that cannot live in the platform for various reasons.\n" @@ -5836,40 +5953,40 @@ msgid "" "The gnome-about program helps find which version of GNOME is installed." msgstr "" -#: gnu/packages/gnome.scm:2257 +#: gnu/packages/gnome.scm:2260 msgid "" "Gnome-doc-utils is a collection of documentation utilities for the\n" "Gnome project. It includes xml2po tool which makes it easier to translate\n" "and keep up to date translations of documentation." msgstr "" -#: gnu/packages/gnome.scm:2309 +#: gnu/packages/gnome.scm:2311 msgid "Disk management utility for GNOME." msgstr "" -#: gnu/packages/gnome.scm:2352 +#: gnu/packages/gnome.scm:2353 msgid "" "Application to show you the fonts installed on your computer\n" "for your use as thumbnails. Selecting any thumbnails shows the full view of how\n" "the font would look under various sizes." msgstr "" -#: gnu/packages/gnome.scm:2420 +#: gnu/packages/gnome.scm:2421 msgid "" "The GCR package contains libraries used for displaying certificates and\n" "accessing key stores. It also provides the viewer for crypto files on the\n" "GNOME Desktop." msgstr "" -#: gnu/packages/gnome.scm:2459 +#: gnu/packages/gnome.scm:2460 msgid "This library provides docking features for gtk+." msgstr "" -#: gnu/packages/gnome.scm:2505 +#: gnu/packages/gnome.scm:2506 msgid "Client library to access passwords from the GNOME keyring." msgstr "" -#: gnu/packages/gnome.scm:2575 +#: gnu/packages/gnome.scm:2576 msgid "" "gnome-keyring is a program that keeps passwords and other secrets for\n" "users. It is run as a daemon in the session, similar to ssh-agent, and other\n" @@ -5888,13 +6005,13 @@ msgid "" "on the GNOME Desktop with a single simple application." msgstr "" -#: gnu/packages/gnome.scm:2693 +#: gnu/packages/gnome.scm:2692 msgid "" "Gsettings-desktop-schemas contains a collection of GSettings\n" "schemas for settings shared by various components of the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:2729 +#: gnu/packages/gnome.scm:2728 msgid "" "Liblarch is a Python library built to easily handle data structures such\n" "as lists, trees and acyclic graphs. There's also a GTK binding that will\n" @@ -5905,7 +6022,7 @@ msgid "" "and how they are displayed (View)." msgstr "" -#: gnu/packages/gnome.scm:2790 +#: gnu/packages/gnome.scm:2789 msgid "" "Getting Things GNOME! (GTG) is a personal tasks and TODO list items\n" "organizer for the GNOME desktop environment inspired by the Getting Things\n" @@ -5915,24 +6032,24 @@ msgid "" "know, from small tasks to large projects." msgstr "" -#: gnu/packages/gnome.scm:2829 +#: gnu/packages/gnome.scm:2828 msgid "" "To help with the transition to the Freedesktop Icon Naming\n" "Specification, the icon naming utility maps the icon names used by the\n" "GNOME and KDE desktops to the icon names proposed in the specification." msgstr "" -#: gnu/packages/gnome.scm:2858 +#: gnu/packages/gnome.scm:2857 msgid "Icons for the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:2897 +#: gnu/packages/gnome.scm:2896 msgid "" "This is an icon theme that follows the Tango visual\n" "guidelines." msgstr "" -#: gnu/packages/gnome.scm:2927 +#: gnu/packages/gnome.scm:2926 msgid "" "The shared-mime-info package contains the core database of common types\n" "and the update-mime-database command used to extend it. It requires glib2 to\n" @@ -5941,18 +6058,18 @@ msgid "" "database is translated at Transifex." msgstr "" -#: gnu/packages/gnome.scm:3012 +#: gnu/packages/gnome.scm:3011 msgid "" "system-config-printer is a CUPS administration tool. It's written in\n" "Python using GTK+, and uses the @acronym{IPP, Internet Printing Protocol} when\n" "configuring CUPS." msgstr "" -#: gnu/packages/gnome.scm:3036 +#: gnu/packages/gnome.scm:3035 msgid "Freedesktop icon theme." msgstr "" -#: gnu/packages/gnome.scm:3085 +#: gnu/packages/gnome.scm:3084 msgid "" "Libnotify is a library that sends desktop notifications to a\n" "notification daemon, as defined in the Desktop Notifications spec. These\n" @@ -5960,7 +6077,7 @@ msgid "" "some form of information without getting in the user's way." msgstr "" -#: gnu/packages/gnome.scm:3132 +#: gnu/packages/gnome.scm:3131 msgid "" "Libpeas is a gobject-based plugin engine, targeted at giving every\n" "application the chance to assume its own extensibility. It also has a set of\n" @@ -5969,21 +6086,21 @@ msgid "" "API." msgstr "" -#: gnu/packages/gnome.scm:3168 +#: gnu/packages/gnome.scm:3167 msgid "" "GtkGLExt is an OpenGL extension to GTK+. It provides\n" "additional GDK objects which support OpenGL rendering in GTK+ and GtkWidget\n" "API add-ons to make GTK+ widgets OpenGL-capable." msgstr "" -#: gnu/packages/gnome.scm:3248 +#: gnu/packages/gnome.scm:3247 msgid "" "Glade is a rapid application development (RAD) tool to\n" "enable quick & easy development of user interfaces for the GTK+ toolkit and\n" "the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:3280 +#: gnu/packages/gnome.scm:3279 msgid "" "Libcroco is a standalone CSS2 parsing and manipulation library.\n" "The parser provides a low level event driven SAC-like API and a CSS object\n" @@ -5991,13 +6108,13 @@ msgid "" "XML/CSS rendering engine." msgstr "" -#: gnu/packages/gnome.scm:3347 +#: gnu/packages/gnome.scm:3346 msgid "" "Libgsf aims to provide an efficient extensible I/O abstraction\n" "for dealing with different structured file formats." msgstr "" -#: gnu/packages/gnome.scm:3526 +#: gnu/packages/gnome.scm:3525 msgid "" "Librsvg is a library to render SVG images to Cairo surfaces.\n" "GNOME uses this to render SVG icons. Outside of GNOME, other desktop\n" @@ -6005,7 +6122,7 @@ msgid "" "diagrams." msgstr "" -#: gnu/packages/gnome.scm:3649 +#: gnu/packages/gnome.scm:3648 msgid "" "Libidl is a library for creating trees of CORBA Interface\n" "Definition Language (idl) files, which is a specification for defining\n" @@ -6014,82 +6131,82 @@ msgid "" "functionality was designed to be as reusable and portable as possible." msgstr "" -#: gnu/packages/gnome.scm:3704 +#: gnu/packages/gnome.scm:3703 msgid "" "ORBit2 is a CORBA 2.4-compliant Object Request Broker (orb)\n" "featuring mature C, C++ and Python bindings." msgstr "" -#: gnu/packages/gnome.scm:3758 +#: gnu/packages/gnome.scm:3757 msgid "" "Bonobo is a framework for creating reusable components for\n" "use in GNOME applications, built on top of CORBA." msgstr "" -#: gnu/packages/gnome.scm:3789 +#: gnu/packages/gnome.scm:3788 msgid "" "Gconf is a system for storing application preferences. It\n" "is intended for user preferences; not arbitrary data storage." msgstr "" -#: gnu/packages/gnome.scm:3823 +#: gnu/packages/gnome.scm:3822 msgid "" "GNOME Mime Data is a module which contains the base MIME\n" "and Application database for GNOME. The data stored by this module is\n" "designed to be accessed through the MIME functions in GnomeVFS." msgstr "" -#: gnu/packages/gnome.scm:3863 +#: gnu/packages/gnome.scm:3862 msgid "" "GnomeVFS is the core library used to access files and folders in GNOME\n" "applications. It provides a file system abstraction which allows applications\n" "to access local and remote files with a single consistent API." msgstr "" -#: gnu/packages/gnome.scm:3904 +#: gnu/packages/gnome.scm:3903 msgid "" "The libgnome library provides a number of useful routines\n" "for building modern applications, including session management, activation of\n" "files and URIs, and displaying help." msgstr "" -#: gnu/packages/gnome.scm:3928 +#: gnu/packages/gnome.scm:3927 msgid "" "Libart is a 2D drawing library intended as a\n" "high-quality vector-based 2D library with antialiasing and alpha composition." msgstr "" -#: gnu/packages/gnome.scm:3955 +#: gnu/packages/gnome.scm:3954 msgid "" "The GnomeCanvas widget provides a flexible widget for\n" "creating interactive structured graphics." msgstr "" -#: gnu/packages/gnome.scm:3977 +#: gnu/packages/gnome.scm:3976 msgid "C++ bindings to the GNOME Canvas library." msgstr "" -#: gnu/packages/gnome.scm:4003 +#: gnu/packages/gnome.scm:4002 msgid "" "The libgnomeui library provides additional widgets for\n" "applications. Many of the widgets from libgnomeui have already been\n" "ported to GTK+." msgstr "" -#: gnu/packages/gnome.scm:4029 +#: gnu/packages/gnome.scm:4028 msgid "" "Libglade is a library that provides interfaces for loading\n" "graphical interfaces described in glade files and for accessing the\n" "widgets built in the loading process." msgstr "" -#: gnu/packages/gnome.scm:4071 +#: gnu/packages/gnome.scm:4070 msgid "" "The Bonobo UI library provides a number of user interface\n" "controls using the Bonobo component framework." msgstr "" -#: gnu/packages/gnome.scm:4098 +#: gnu/packages/gnome.scm:4097 msgid "" "Libwnck is the Window Navigator Construction Kit, a library for use in\n" "writing pagers, tasklists, and more generally applications that are dealing\n" @@ -6097,11 +6214,11 @@ msgid "" "Hints specification (EWMH)." msgstr "" -#: gnu/packages/gnome.scm:4148 +#: gnu/packages/gnome.scm:4147 msgid "A GLib/GTK+ set of document-centric objects and utilities." msgstr "" -#: gnu/packages/gnome.scm:4234 +#: gnu/packages/gnome.scm:4233 msgid "" "GNUmeric is a GNU spreadsheet application, running under GNOME. It is\n" "interoperable with other spreadsheet applications. It has a vast array of\n" @@ -6110,11 +6227,11 @@ msgid "" "engineering." msgstr "" -#: gnu/packages/gnome.scm:4290 +#: gnu/packages/gnome.scm:4289 msgid "Drawing is a basic image editor aiming at the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:4326 +#: gnu/packages/gnome.scm:4325 msgid "The default GNOME 3 themes (Adwaita and some accessibility themes)." msgstr "" @@ -6133,7 +6250,7 @@ msgid "" "targeting the GNOME stack simple." msgstr "" -#: gnu/packages/gnome.scm:4481 +#: gnu/packages/gnome.scm:4482 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, and a minimal sample application (vte) using that. Vte is mainly used in\n" @@ -6141,34 +6258,34 @@ msgid "" "editors, IDEs, etc." msgstr "" -#: gnu/packages/gnome.scm:4505 +#: gnu/packages/gnome.scm:4506 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, this fork provides additional functions exposed for keyboard text\n" "selection and URL hints." msgstr "" -#: gnu/packages/gnome.scm:4585 +#: gnu/packages/gnome.scm:4586 msgid "" "Vinagre is a remote display client supporting the VNC, SPICE\n" "and RDP protocols." msgstr "" -#: gnu/packages/gnome.scm:4631 +#: gnu/packages/gnome.scm:4633 msgid "" "Dconf is a low-level configuration system. Its main purpose\n" "is to provide a backend to GSettings on platforms that don't already have\n" "configuration storage systems." msgstr "" -#: gnu/packages/gnome.scm:4661 +#: gnu/packages/gnome.scm:4663 msgid "" "JSON-GLib is a library providing serialization and\n" "described by RFC 4627. It implements a full JSON parser and generator using\n" "GLib and GObject, and integrates JSON with GLib data types." msgstr "" -#: gnu/packages/gnome.scm:4760 +#: gnu/packages/gnome.scm:4762 msgid "" "LibXklavier is a library providing high-level API for X Keyboard\n" "Extension known as XKB. This library is intended to support XFree86 and other\n" @@ -6176,13 +6293,13 @@ msgid "" "indicators etc)." msgstr "" -#: gnu/packages/gnome.scm:4788 +#: gnu/packages/gnome.scm:4790 msgid "" "This package provides Python bindings to librsvg, the SVG rendering\n" "library." msgstr "" -#: gnu/packages/gnome.scm:4829 +#: gnu/packages/gnome.scm:4831 msgid "" "Glib-networking contains the implementations of certain GLib networking\n" "features that cannot be implemented directly in GLib itself because of their\n" @@ -6192,26 +6309,26 @@ msgid "" "from the GSettings schemas in gsettings-desktop-schemas." msgstr "" -#: gnu/packages/gnome.scm:4866 +#: gnu/packages/gnome.scm:4868 msgid "" "This library was designed to make it easier to access web services that\n" "claim to be \"RESTful\". It includes convenience wrappers for libsoup and\n" "libxml to ease remote use of the RESTful API." msgstr "" -#: gnu/packages/gnome.scm:4931 +#: gnu/packages/gnome.scm:4933 msgid "" "LibSoup is an HTTP client/server library for GNOME. It uses GObjects\n" "and the GLib main loop, to integrate well with GNOME applications." msgstr "" -#: gnu/packages/gnome.scm:5035 +#: gnu/packages/gnome.scm:5037 msgid "" "Libsecret is a GObject based library for storing and retrieving passwords\n" "and other secrets. It communicates with the \"Secret Service\" using DBus." msgstr "" -#: gnu/packages/gnome.scm:5074 +#: gnu/packages/gnome.scm:5076 msgid "" "Five or More is a game where you try to align\n" " five or more objects of the same color and shape causing them to disappear.\n" @@ -6219,19 +6336,19 @@ msgid "" " Try to last as long as possible." msgstr "" -#: gnu/packages/gnome.scm:5116 +#: gnu/packages/gnome.scm:5118 msgid "" "Mines (previously gnomine) is a puzzle game where you locate mines\n" "floating in an ocean using only your brain and a little bit of luck." msgstr "" -#: gnu/packages/gnome.scm:5157 +#: gnu/packages/gnome.scm:5159 msgid "" "MultiWriter can be used to write an ISO file to multiple USB devices at\n" "once." msgstr "" -#: gnu/packages/gnome.scm:5197 +#: gnu/packages/gnome.scm:5198 msgid "" "Sudoku is a Japanese logic game that exploded in popularity in 2005.\n" "GNOME Sudoku is meant to have an interface as simple and unobstrusive as\n" @@ -6239,7 +6356,7 @@ msgid "" "more fun." msgstr "" -#: gnu/packages/gnome.scm:5247 +#: gnu/packages/gnome.scm:5248 msgid "" "GNOME Terminal is a terminal emulator application for accessing a\n" "UNIX shell environment which can be used to run programs available on\n" @@ -6249,14 +6366,14 @@ msgid "" "keyboard shortcuts." msgstr "" -#: gnu/packages/gnome.scm:5319 +#: gnu/packages/gnome.scm:5320 msgid "" "Colord is a system service that makes it easy to manage,\n" "install and generate color profiles to accurately color manage input and\n" "output devices." msgstr "" -#: gnu/packages/gnome.scm:5390 +#: gnu/packages/gnome.scm:5391 msgid "" "Geoclue is a D-Bus service that provides location\n" "information. The primary goal of the Geoclue project is to make creating\n" @@ -6265,7 +6382,7 @@ msgid "" "permission from user." msgstr "" -#: gnu/packages/gnome.scm:5434 +#: gnu/packages/gnome.scm:5435 msgid "" "geocode-glib is a convenience library for geocoding (finding longitude,\n" "and latitude from an address) and reverse geocoding (finding an address from\n" @@ -6273,7 +6390,7 @@ msgid "" "faster results and to avoid unnecessary server load." msgstr "" -#: gnu/packages/gnome.scm:5510 +#: gnu/packages/gnome.scm:5511 msgid "" "UPower is an abstraction for enumerating power devices,\n" "listening to device events and querying history and statistics. Any\n" @@ -6281,13 +6398,13 @@ msgid "" "service via the system message bus." msgstr "" -#: gnu/packages/gnome.scm:5555 +#: gnu/packages/gnome.scm:5557 msgid "" "libgweather is a library to access weather information from online\n" "services for numerous locations." msgstr "" -#: gnu/packages/gnome.scm:5639 +#: gnu/packages/gnome.scm:5640 msgid "" "This package contains the daemon responsible for setting the various\n" "parameters of a GNOME session and the applications that run under it. It\n" @@ -6295,19 +6412,19 @@ msgid "" "settings, themes, mouse settings, and startup of other daemons." msgstr "" -#: gnu/packages/gnome.scm:5670 +#: gnu/packages/gnome.scm:5671 msgid "" "Totem-pl-parser is a GObjects-based library to parse and save\n" "playlists in a variety of formats." msgstr "" -#: gnu/packages/gnome.scm:5703 +#: gnu/packages/gnome.scm:5704 msgid "" "Aisleriot (also known as Solitaire or sol) is a collection of card games\n" "which are easy to play with the aid of a mouse." msgstr "" -#: gnu/packages/gnome.scm:5729 +#: gnu/packages/gnome.scm:5730 msgid "" "Amtk is the acronym for @acronym{Amtk, Actions Menus and Toolbars Kit}.\n" "It is a basic GtkUIManager replacement based on GAction. It is suitable for\n" @@ -6386,13 +6503,13 @@ msgid "" "discovery protocols." msgstr "" -#: gnu/packages/gnome.scm:6324 +#: gnu/packages/gnome.scm:6323 msgid "" "Totem is a simple yet featureful media player for GNOME\n" "which can read a large number of file formats." msgstr "" -#: gnu/packages/gnome.scm:6415 +#: gnu/packages/gnome.scm:6414 msgid "" "Rhythmbox is a music playing application for GNOME. It\n" "supports playlists, song ratings, and any codecs installed through gstreamer." @@ -6423,7 +6540,7 @@ msgid "" "part of udev-extras, then udev, then systemd. It's now a project on its own." msgstr "" -#: gnu/packages/gnome.scm:6611 +#: gnu/packages/gnome.scm:6610 msgid "" "GVFS is a userspace virtual file system designed to work with the I/O\n" "abstraction of GIO. It contains a GIO module that seamlessly adds GVFS\n" @@ -6434,7 +6551,7 @@ msgid "" "DAV, and others." msgstr "" -#: gnu/packages/gnome.scm:6652 +#: gnu/packages/gnome.scm:6651 msgid "" "GUsb is a GObject wrapper for libusb1 that makes it easy to do\n" "asynchronous control, bulk and interrupt transfers with proper cancellation\n" @@ -6442,7 +6559,7 @@ msgid "" "USB transfers with your high-level application or system daemon." msgstr "" -#: gnu/packages/gnome.scm:6706 +#: gnu/packages/gnome.scm:6705 msgid "" "Document Scanner is an easy-to-use application that lets you connect your\n" "scanner and quickly capture images and documents in an appropriate format. It\n" @@ -6450,25 +6567,25 @@ msgid "" "almost all of them." msgstr "" -#: gnu/packages/gnome.scm:6778 +#: gnu/packages/gnome.scm:6777 msgid "" "Eolie is a new web browser for GNOME. It features Firefox sync support,\n" "a secret password store, an adblocker, and a modern UI." msgstr "" -#: gnu/packages/gnome.scm:6855 +#: gnu/packages/gnome.scm:6854 msgid "" "Epiphany is a GNOME web browser targeted at non-technical users. Its\n" "principles are simplicity and standards compliance." msgstr "" -#: gnu/packages/gnome.scm:6914 +#: gnu/packages/gnome.scm:6913 msgid "" "D-Feet is a D-Bus debugger, which can be used to inspect D-Bus interfaces\n" "of running programs and invoke methods on those interfaces." msgstr "" -#: gnu/packages/gnome.scm:6944 +#: gnu/packages/gnome.scm:6943 msgid "" "Yelp-XSL is a collection of programs and data files to help\n" "you build, maintain, and distribute documentation. It provides XSLT stylesheets\n" @@ -6478,14 +6595,14 @@ msgid "" "jQuery.Syntax JavaScript libraries." msgstr "" -#: gnu/packages/gnome.scm:6983 +#: gnu/packages/gnome.scm:6982 msgid "" "Yelp is the help viewer in Gnome. It natively views Mallard, DocBook,\n" "man, info, and HTML documents. It can locate documents according to the\n" "freedesktop.org help system specification." msgstr "" -#: gnu/packages/gnome.scm:7013 +#: gnu/packages/gnome.scm:7012 msgid "" "Yelp-tools is a collection of scripts and build utilities to help create,\n" "manage, and publish documentation for Yelp and the web. Most of the heavy\n" @@ -6493,13 +6610,13 @@ msgid "" "wraps things up in a developer-friendly way." msgstr "" -#: gnu/packages/gnome.scm:7051 +#: gnu/packages/gnome.scm:7050 msgid "" "Libgee is a utility library providing GObject-based interfaces and\n" "classes for commonly used data structures." msgstr "" -#: gnu/packages/gnome.scm:7079 +#: gnu/packages/gnome.scm:7078 msgid "" "Gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. It\n" "allows for GNOME applications to easily inspect and update EXIF, IPTC, and XMP\n" @@ -6514,7 +6631,7 @@ msgid "" "share them with others via social networking and more." msgstr "" -#: gnu/packages/gnome.scm:7168 +#: gnu/packages/gnome.scm:7169 msgid "" "File Roller is an archive manager for the GNOME desktop\n" "environment that allows users to view, unpack, and create compressed archives\n" @@ -6527,25 +6644,25 @@ msgid "" "configuration program to choose applications starting on login." msgstr "" -#: gnu/packages/gnome.scm:7284 +#: gnu/packages/gnome.scm:7287 msgid "" "Gjs is a javascript binding for GNOME. It's mainly based on spidermonkey\n" "javascript engine and the GObject introspection framework." msgstr "" -#: gnu/packages/gnome.scm:7381 +#: gnu/packages/gnome.scm:7383 msgid "" "While aiming at simplicity and ease of use, gedit is a\n" "powerful general purpose text editor." msgstr "" -#: gnu/packages/gnome.scm:7405 +#: gnu/packages/gnome.scm:7407 msgid "" "Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you\n" "to display dialog boxes from the commandline and shell scripts." msgstr "" -#: gnu/packages/gnome.scm:7595 +#: gnu/packages/gnome.scm:7598 msgid "" "Mutter is a window and compositing manager that displays and manages your\n" "desktop via OpenGL. Mutter combines a sophisticated display engine using the\n" @@ -6553,7 +6670,7 @@ msgid "" "window manager." msgstr "" -#: gnu/packages/gnome.scm:7653 +#: gnu/packages/gnome.scm:7656 msgid "" "GNOME Online Accounts provides interfaces so that applications and\n" "libraries in GNOME can access the user's online accounts. It has providers\n" @@ -6561,20 +6678,20 @@ msgid "" "Microsoft Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos." msgstr "" -#: gnu/packages/gnome.scm:7740 +#: gnu/packages/gnome.scm:7743 msgid "" "This package provides a unified backend for programs that work with\n" "contacts, tasks, and calendar information. It was originally developed for\n" "Evolution (hence the name), but is now used by other packages as well." msgstr "" -#: gnu/packages/gnome.scm:7803 +#: gnu/packages/gnome.scm:7806 msgid "" "Caribou is an input assistive technology intended for switch and pointer\n" "users." msgstr "" -#: gnu/packages/gnome.scm:7953 +#: gnu/packages/gnome.scm:7958 msgid "" "NetworkManager is a system network service that manages your network\n" "devices and connections, attempting to keep active network connectivity when\n" @@ -6583,36 +6700,36 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:8009 +#: gnu/packages/gnome.scm:8014 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to virtual private networks (VPNs) via OpenVPN." msgstr "" -#: gnu/packages/gnome.scm:8059 +#: gnu/packages/gnome.scm:8064 msgid "" "Support for configuring virtual private networks based on VPNC.\n" "Compatible with Cisco VPN concentrators configured to use IPsec." msgstr "" -#: gnu/packages/gnome.scm:8106 +#: gnu/packages/gnome.scm:8111 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to @acronym{VPNs, virtual private networks} via OpenConnect, an open client for\n" "Cisco's AnyConnect SSL VPN." msgstr "" -#: gnu/packages/gnome.scm:8135 +#: gnu/packages/gnome.scm:8140 msgid "Database of broadband connection configuration." msgstr "" -#: gnu/packages/gnome.scm:8179 +#: gnu/packages/gnome.scm:8183 msgid "" "This package contains a systray applet for NetworkManager. It displays\n" "the available networks and allows users to easily switch between them." msgstr "" -#: gnu/packages/gnome.scm:8234 +#: gnu/packages/gnome.scm:8238 msgid "" "This package provides a C++ interface to the libxml2 XML parser\n" "library." @@ -6620,25 +6737,25 @@ msgstr "" "이 꾸러미는 libxml2 XML 구문 분석기 라이브러리에 C++ 연결장치를\n" "제공합니다." -#: gnu/packages/gnome.scm:8466 +#: gnu/packages/gnome.scm:8470 msgid "" "GNOME Display Manager is a system service that is responsible for\n" "providing graphical log-ins and managing local and remote displays." msgstr "" -#: gnu/packages/gnome.scm:8490 +#: gnu/packages/gnome.scm:8494 msgid "" "LibGTop is a library to get system specific data such as CPU and memory\n" "usage and information about running processes." msgstr "" -#: gnu/packages/gnome.scm:8525 +#: gnu/packages/gnome.scm:8528 msgid "" "This package contains tools for managing and manipulating Bluetooth\n" "devices using the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:8636 +#: gnu/packages/gnome.scm:8646 msgid "" "This package contains configuration applets for the GNOME desktop,\n" "allowing to set accessibility configuration, desktop fonts, keyboard and mouse\n" @@ -6646,13 +6763,13 @@ msgid "" "properties, screen resolution, and other GNOME parameters." msgstr "" -#: gnu/packages/gnome.scm:8802 +#: gnu/packages/gnome.scm:8811 msgid "" "GNOME Shell provides core user interface functions for the GNOME desktop,\n" "like switching to windows and launching applications." msgstr "" -#: gnu/packages/gnome.scm:8845 +#: gnu/packages/gnome.scm:8858 msgid "" "GTK-VNC is a project providing client side APIs for the RFB\n" "protocol / VNC remote desktop technology. It is built using coroutines allowing\n" @@ -6660,13 +6777,13 @@ msgid "" "core C library, and bindings for Python (PyGTK)." msgstr "" -#: gnu/packages/gnome.scm:8875 +#: gnu/packages/gnome.scm:8888 msgid "" "GNOME Autoar is a library which makes creating and extracting archives\n" "easy, safe, and automatic." msgstr "" -#: gnu/packages/gnome.scm:8945 +#: gnu/packages/gnome.scm:8959 msgid "" "Tracker is a search engine and triplestore for desktop, embedded and mobile.\n" "\n" @@ -6689,21 +6806,21 @@ msgid "" "endpoint and it understands SPARQL." msgstr "" -#: gnu/packages/gnome.scm:9074 +#: gnu/packages/gnome.scm:9088 msgid "" "Tracker is an advanced framework for first class objects with associated\n" "metadata and tags. It provides a one stop solution for all metadata, tags,\n" "shared object databases, search tools and indexing." msgstr "" -#: gnu/packages/gnome.scm:9167 +#: gnu/packages/gnome.scm:9185 msgid "" "Nautilus (Files) is a file manager designed to fit the GNOME desktop\n" "design and behaviour, giving the user a simple way to navigate and manage its\n" "files." msgstr "" -#: gnu/packages/gnome.scm:9201 +#: gnu/packages/gnome.scm:9220 msgid "" "Baobab (Disk Usage Analyzer) is a graphical application to analyse disk\n" "usage in the GNOME desktop environment. It can easily scan device volumes or\n" @@ -6711,7 +6828,7 @@ msgid "" "is complete it provides a graphical representation of each selected folder." msgstr "" -#: gnu/packages/gnome.scm:9227 +#: gnu/packages/gnome.scm:9245 msgid "" "GNOME backgrounds package contains a collection of graphics files which\n" "can be used as backgrounds in the GNOME Desktop environment. Additionally,\n" @@ -6719,21 +6836,21 @@ msgid "" "can add your own files to the collection." msgstr "" -#: gnu/packages/gnome.scm:9272 +#: gnu/packages/gnome.scm:9290 msgid "" "GNOME Screenshot is a utility used for taking screenshots of the entire\n" "screen, a window or a user defined area of the screen, with optional\n" "beautifying border effects." msgstr "" -#: gnu/packages/gnome.scm:9304 +#: gnu/packages/gnome.scm:9320 msgid "" "Dconf-editor is a graphical tool for browsing and editing the dconf\n" "configuration system for GNOME. It allows users to configure desktop\n" "software that do not provide their own configuration interface." msgstr "" -#: gnu/packages/gnome.scm:9334 +#: gnu/packages/gnome.scm:9350 msgid "" "Given many installed packages which might handle a given MIME type, a\n" "user running the GNOME desktop probably has some preferences: for example,\n" @@ -6742,32 +6859,32 @@ msgid "" "associations for GNOME." msgstr "" -#: gnu/packages/gnome.scm:9366 +#: gnu/packages/gnome.scm:9382 msgid "GoVirt is a GObject wrapper for the oVirt REST API." msgstr "" -#: gnu/packages/gnome.scm:9424 +#: gnu/packages/gnome.scm:9439 msgid "" "GNOME Weather is a small application that allows you to\n" "monitor the current weather conditions for your city, or anywhere in the\n" "world." msgstr "" -#: gnu/packages/gnome.scm:9528 +#: gnu/packages/gnome.scm:9543 msgid "" "GNOME is the graphical desktop for GNU. It includes a wide variety of\n" "applications for browsing the web, editing text and images, creating\n" "documents and diagrams, playing media, scanning, and much more." msgstr "" -#: gnu/packages/gnome.scm:9574 +#: gnu/packages/gnome.scm:9589 msgid "" "Byzanz is a simple desktop recording program with a\n" "command-line interface. It can record part or all of an X display for a\n" "specified duration and save it as a GIF encoded animated image file." msgstr "" -#: gnu/packages/gnome.scm:9634 +#: gnu/packages/gnome.scm:9651 msgid "" "Authenticator is a two-factor authentication (2FA) application built for\n" "the GNOME desktop environment.\n" @@ -6784,44 +6901,44 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/gnome.scm:9669 +#: gnu/packages/gnome.scm:9686 msgid "" "GSound is a small library for playing system sounds. It's designed to be\n" "used via GObject Introspection, and is a thin wrapper around the libcanberra C\n" "library." msgstr "" -#: gnu/packages/gnome.scm:9694 +#: gnu/packages/gnome.scm:9711 msgid "" "Libzapojit is a GLib-based library for accessing online service APIs of\n" "Microsoft SkyDrive and Hotmail, using their REST protocols." msgstr "" -#: gnu/packages/gnome.scm:9739 +#: gnu/packages/gnome.scm:9756 msgid "" "GNOME Clocks is a simple clocks application designed to fit the GNOME\n" "desktop. It supports world clock, stop watch, alarms, and count down timer." msgstr "" -#: gnu/packages/gnome.scm:9787 +#: gnu/packages/gnome.scm:9803 msgid "" "GNOME Calendar is a simple calendar application designed to fit the GNOME\n" "desktop. It supports multiple calendars, month, week and year view." msgstr "" -#: gnu/packages/gnome.scm:9838 +#: gnu/packages/gnome.scm:9860 msgid "" -"GNOME To Do is a simplistic personal task manager designed to perfectly\n" -"fit the GNOME desktop." +"GNOME To Do is a simplistic personal task manager designed\n" +"to perfectly fit the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:9877 +#: gnu/packages/gnome.scm:9899 msgid "" "GNOME Dictionary can look for the definition or translation of a word in\n" "existing databases over the internet." msgstr "" -#: gnu/packages/gnome.scm:9943 +#: gnu/packages/gnome.scm:9964 msgid "" "GNOME Tweaks allows adjusting advanced configuration settings in\n" "GNOME 3. This includes things like the fonts used in user interface elements,\n" @@ -6829,13 +6946,13 @@ msgid "" "GNOME Shell appearance and extension, etc." msgstr "" -#: gnu/packages/gnome.scm:9971 +#: gnu/packages/gnome.scm:9992 msgid "" "GNOME Shell extensions modify and extend GNOME Shell\n" "functionality and behavior." msgstr "" -#: gnu/packages/gnome.scm:10015 +#: gnu/packages/gnome.scm:10036 msgid "" "Libfolks is a library that aggregates information about people\n" "from multiple sources (e.g., Telepathy connection managers for IM contacts,\n" @@ -6844,19 +6961,19 @@ msgid "" "compiled." msgstr "" -#: gnu/packages/gnome.scm:10056 +#: gnu/packages/gnome.scm:10077 msgid "" "This library allows you to use the Facebook API from\n" "GLib/GObject code." msgstr "" -#: gnu/packages/gnome.scm:10083 +#: gnu/packages/gnome.scm:10104 msgid "" "Libgnomekbd is a keyboard configuration library for the GNOME desktop\n" "environment, which can notably display keyboard layouts." msgstr "" -#: gnu/packages/gnome.scm:10119 +#: gnu/packages/gnome.scm:10140 msgid "" "Libunique is a library for writing single instance applications. If you\n" "launch a single instance application twice, the second instance will either just\n" @@ -6866,20 +6983,20 @@ msgid "" "handling the startup notification side." msgstr "" -#: gnu/packages/gnome.scm:10168 +#: gnu/packages/gnome.scm:10190 msgid "" "Calculator is an application that solves mathematical equations and\n" "is suitable as a default application in a Desktop environment." msgstr "" -#: gnu/packages/gnome.scm:10194 +#: gnu/packages/gnome.scm:10216 msgid "" "Xpad is a sticky note that strives to be simple, fault tolerant,\n" "and customizable. Xpad consists of independent pad windows, each is\n" "basically a text box in which notes can be written." msgstr "" -#: gnu/packages/gnome.scm:10267 +#: gnu/packages/gnome.scm:10289 msgid "" "This program allows you to browse through all the available Unicode\n" "characters and categories for the installed fonts, and to examine their\n" @@ -6887,20 +7004,20 @@ msgid "" "only know by its Unicode name or code point." msgstr "" -#: gnu/packages/gnome.scm:10299 +#: gnu/packages/gnome.scm:10321 msgid "" "Color Picker is a simple color chooser written in GTK3. It\n" "supports both X and Wayland display servers." msgstr "" -#: gnu/packages/gnome.scm:10322 +#: gnu/packages/gnome.scm:10344 msgid "" "Bluefish is an editor aimed at programmers and web developers,\n" "with many options to write web sites, scripts and other code.\n" "Bluefish supports many programming and markup languages." msgstr "" -#: gnu/packages/gnome.scm:10363 +#: gnu/packages/gnome.scm:10385 msgid "" "GNOME System Monitor is a GNOME process viewer and system monitor with\n" "an attractive, easy-to-use interface. It has features, such as a tree view\n" @@ -6909,27 +7026,27 @@ msgid "" "kill/reinice processes." msgstr "" -#: gnu/packages/gnome.scm:10405 +#: gnu/packages/gnome.scm:10427 msgid "" "This package includes a python client library for the AT-SPI D-Bus\n" "accessibility infrastructure." msgstr "" -#: gnu/packages/gnome.scm:10475 +#: gnu/packages/gnome.scm:10495 msgid "" "Orca is a screen reader that provides access to the graphical desktop\n" "via speech and refreshable braille. Orca works with applications and toolkits\n" "that support the Assistive Technology Service Provider Interface (AT-SPI)." msgstr "" -#: gnu/packages/gnome.scm:10529 +#: gnu/packages/gnome.scm:10549 msgid "" "gspell provides a flexible API to add spell-checking to a GTK+\n" "application. It provides a GObject API, spell-checking to text entries and\n" "text views, and buttons to choose the language." msgstr "" -#: gnu/packages/gnome.scm:10571 +#: gnu/packages/gnome.scm:10591 msgid "" "GNOME Planner is a project management tool based on the Work Breakdown\n" "Structure (WBS). Its goal is to enable you to easily plan projects. Based on\n" @@ -6941,7 +7058,7 @@ msgid "" "views can be printed as PDF or PostScript files, or exported to HTML." msgstr "" -#: gnu/packages/gnome.scm:10644 +#: gnu/packages/gnome.scm:10664 msgid "" "Lollypop is a music player designed to play well with GNOME desktop.\n" "Lollypop plays audio formats such as mp3, mp4, ogg and flac and gets information\n" @@ -6949,26 +7066,26 @@ msgid "" "automatically and it can stream songs from online music services and charts." msgstr "" -#: gnu/packages/gnome.scm:10668 +#: gnu/packages/gnome.scm:10688 msgid "" "A collection of GStreamer video filters and effects to be used in\n" "photo-booth-like software, such as Cheese." msgstr "" -#: gnu/packages/gnome.scm:10747 +#: gnu/packages/gnome.scm:10766 msgid "" "Cheese uses your webcam to take photos and videos. Cheese can also\n" "apply fancy special effects and lets you share the fun with others." msgstr "" -#: gnu/packages/gnome.scm:10801 +#: gnu/packages/gnome.scm:10820 msgid "" "Password Safe is a password manager which makes use of the KeePass v4\n" "format. It integrates perfectly with the GNOME desktop and provides an easy\n" "and uncluttered interface for the management of password databases." msgstr "" -#: gnu/packages/gnome.scm:10836 +#: gnu/packages/gnome.scm:10855 msgid "" "Sound Juicer extracts audio from compact discs and convert it\n" "into audio files that a personal computer or digital audio player can play.\n" @@ -6976,27 +7093,27 @@ msgid "" "mp3, Ogg Vorbis and FLAC" msgstr "" -#: gnu/packages/gnome.scm:10888 +#: gnu/packages/gnome.scm:10907 msgid "" "SoundConverter supports converting between many audio formats including\n" "Opus, Ogg Vorbis, FLAC and more. It supports parallel conversion, and\n" "configurable file renaming." msgstr "" -#: gnu/packages/gnome.scm:10936 +#: gnu/packages/gnome.scm:10955 msgid "" "Workrave is a program that assists in the recovery and prevention of\n" "repetitive strain injury (@dfn{RSI}). The program frequently alerts you to take\n" "micro-pauses and rest breaks, and restricts you to your daily limit." msgstr "" -#: gnu/packages/gnome.scm:10977 +#: gnu/packages/gnome.scm:10996 msgid "" "The GHex program can view and edit files in two ways:\n" "hexadecimal or ASCII. It is useful for editing binary files in general." msgstr "" -#: gnu/packages/gnome.scm:11013 +#: gnu/packages/gnome.scm:11032 msgid "" "The libdazzle library is a companion library to GObject and\n" "Gtk+. It provides various features that the authors wish were in the\n" @@ -7005,40 +7122,40 @@ msgid "" "generic enough to work for everyone." msgstr "" -#: gnu/packages/gnome.scm:11080 +#: gnu/packages/gnome.scm:11099 msgid "" "Evolution is a personal information management application\n" "that provides integrated mail, calendaring and address book\n" "functionality." msgstr "" -#: gnu/packages/gnome.scm:11140 +#: gnu/packages/gnome.scm:11154 msgid "" "GThumb is an image viewer, browser, organizer, editor and\n" "advanced image management tool" msgstr "" -#: gnu/packages/gnome.scm:11213 +#: gnu/packages/gnome.scm:11227 msgid "" "Terminator allows you to run multiple GNOME terminals in a grid and\n" "tabs, and it supports drag and drop re-ordering of terminals." msgstr "" -#: gnu/packages/gnome.scm:11274 +#: gnu/packages/gnome.scm:11288 msgid "" "The aim of the handy library is to help with developing user\n" "interfaces for mobile devices using GTK+. It provides responsive GTK+ widgets\n" "for usage on small and big screens." msgstr "" -#: gnu/packages/gnome.scm:11323 +#: gnu/packages/gnome.scm:11337 msgid "" "libgit2-glib is a GLib wrapper library around the libgit2 Git\n" "access library. It only implements the core plumbing functions, not really the\n" "higher level porcelain stuff." msgstr "" -#: gnu/packages/gnome.scm:11402 +#: gnu/packages/gnome.scm:11415 msgid "" "gitg is a graphical user interface for git. It aims at being a small,\n" "fast and convenient tool to visualize the history of git repositories.\n" @@ -7046,21 +7163,21 @@ msgid "" "repository and commit your work." msgstr "" -#: gnu/packages/gnome.scm:11474 +#: gnu/packages/gnome.scm:11487 msgid "" "Gamin is a file and directory monitoring system defined to be a subset\n" "of the FAM (File Alteration Monitor) system. This is a service provided by a\n" "library which detects when a file or a directory has been modified." msgstr "" -#: gnu/packages/gnome.scm:11508 +#: gnu/packages/gnome.scm:11521 msgid "" "GNOME Mahjongg is a game based on the classic Chinese\n" -"tile-matching game Mahjong. It features multiple board layouts, tile themes,\n" +"tile-matching game Mahjongg. It features multiple board layouts, tile themes,\n" "and a high score table." msgstr "" -#: gnu/packages/gnome.scm:11546 +#: gnu/packages/gnome.scm:11559 msgid "" "This package provides themes and related elements that don't\n" "really fit in other upstream packages. It offers legacy support for GTK+ 2\n" @@ -7068,19 +7185,19 @@ msgid "" "index files needed for Adwaita to be used outside of GNOME." msgstr "" -#: gnu/packages/gnome.scm:11585 +#: gnu/packages/gnome.scm:11605 msgid "" -"Gnote is a note-taking application written for the GNOME desktop\n" -"environment." +"Gnote is a note-taking application written for the GNOME\n" +"desktop environment." msgstr "" -#: gnu/packages/gnome.scm:11647 +#: gnu/packages/gnome.scm:11664 msgid "" "Polari is a simple Internet Relay Chat (IRC) client that is designed to\n" "integrate seamlessly with the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:11706 +#: gnu/packages/gnome.scm:11723 msgid "" "GNOME Boxes is a simple application to view, access, and\n" "manage remote and virtual systems. Note that this application requires the\n" @@ -7089,7 +7206,7 @@ msgid "" "these services on the Guix System." msgstr "" -#: gnu/packages/gnome.scm:11806 +#: gnu/packages/gnome.scm:11823 msgid "" "Geary collects related messages together into conversations,\n" "making it easy to find and follow your discussions. Full-text and keyword\n" @@ -7101,14 +7218,14 @@ msgid "" "to." msgstr "" -#: gnu/packages/gnome.scm:11851 +#: gnu/packages/gnome.scm:11868 msgid "" "gLabels is a program for creating labels and business cards. It is\n" "designed to work with various laser/ink-jet peel-off label and business\n" "card sheets that you’ll find at most office supply stores." msgstr "" -#: gnu/packages/gnome.scm:11892 +#: gnu/packages/gnome.scm:11909 msgid "" "GNOME LaTeX is a LaTeX editor for the GNOME desktop. It has features\n" "such as build tools, completion of LaTeX commands, structure navigation,\n" @@ -7116,19 +7233,19 @@ msgid "" "and toolbars." msgstr "" -#: gnu/packages/gnome.scm:11951 +#: gnu/packages/gnome.scm:11968 msgid "" "Setzer is a simple yet full-featured LaTeX editor written in Python with\n" "GTK+. It integrates well with the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:12017 +#: gnu/packages/gnome.scm:12034 msgid "" "Apostrophe is a GTK+ based distraction-free Markdown editor.\n" "It uses pandoc as back-end for parsing Markdown." msgstr "" -#: gnu/packages/gnome.scm:12070 +#: gnu/packages/gnome.scm:12088 msgid "" "libratbag provides @command{ratbagd}, a DBus daemon to\n" "configure input devices, mainly gaming mice. The daemon provides a generic\n" @@ -7145,7 +7262,7 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12140 +#: gnu/packages/gnome.scm:12156 msgid "" "Piper is a GTK+ application for configuring gaming mice with\n" "onboard configuration for key bindings via libratbag. Piper requires\n" @@ -7157,14 +7274,14 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12202 +#: gnu/packages/gnome.scm:12218 msgid "" "Parlatype is an audio player for the GNOME desktop\n" "environment. Its main purpose is the manual transcription of spoken\n" "audio files." msgstr "" -#: gnu/packages/gnome.scm:12228 +#: gnu/packages/gnome.scm:12244 msgid "" "Jsonrpc-GLib is a library to communicate with JSON-RPC based\n" "peers in either a synchronous or asynchronous fashion. It also allows\n" @@ -7173,14 +7290,14 @@ msgid "" "host to avoid parser overhead and memory-allocator fragmentation." msgstr "" -#: gnu/packages/gnome.scm:12256 +#: gnu/packages/gnome.scm:12272 msgid "" "Feedbackd provides a DBus daemon to act on events to provide\n" "haptic, visual and audio feedback. It offers the libfeedbackd library and\n" "GObject introspection bindings." msgstr "" -#: gnu/packages/gnome.scm:12305 +#: gnu/packages/gnome.scm:12321 msgid "" "Sysprof performs detailed, accurate, and fast CPU profiling of an entire\n" "GNU/Linux system including the kernel and all user-space applications. This\n" @@ -7190,21 +7307,21 @@ msgid "" "libraries. Applications do not need to be recompiled--or even restarted." msgstr "" -#: gnu/packages/gnome.scm:12388 +#: gnu/packages/gnome.scm:12406 msgid "" -"Builder aims to be an integrated development\n" -"environment (IDE) for writing GNOME-based software. It features fuzzy search,\n" -"auto-completion, a mini code map, documentation browsing, Git integration, an\n" -"integrated profiler via Sysprof, debugging support, and more." +"Builder aims to be an integrated development environment (IDE) for\n" +"writing GNOME-based software. It features fuzzy search, auto-completion,\n" +"a mini code map, documentation browsing, Git integration, an integrated\n" +"profiler via Sysprof, debugging support, and more." msgstr "" -#: gnu/packages/gnome.scm:12461 +#: gnu/packages/gnome.scm:12480 msgid "" "Komikku is an online/offline manga reader for GNOME,\n" "developed with the aim of being used with the Librem 5 phone." msgstr "" -#: gnu/packages/gnome.scm:12545 +#: gnu/packages/gnome.scm:12564 msgid "" "GNU Data Access (GDA) is an attempt to provide uniform access to\n" "different kinds of data sources (databases, information servers, mail spools,\n" @@ -7212,7 +7329,7 @@ msgid "" "your data." msgstr "" -#: gnu/packages/gnome.scm:12596 +#: gnu/packages/gnome.scm:12614 msgid "" "gtranslator is a quite comfortable gettext po/po.gz/(g)mo files editor\n" "for the GNOME 3.x platform with many features. It aims to be a very complete\n" @@ -7220,32 +7337,38 @@ msgid "" "world." msgstr "" -#: gnu/packages/gnome.scm:12662 +#: gnu/packages/gnome.scm:12680 msgid "" "OCRFeeder is a complete Optical Character Recognition and\n" "Document Analysis and Recognition program." msgstr "" -#: gnu/packages/gnome.scm:12702 +#: gnu/packages/gnome.scm:12720 msgid "" "@code{libadwaita} offers widgets and objects to build GNOME\n" "applications scaling from desktop workstations to mobile phones. It is the\n" "successor of @code{libhandy} for GTK4." msgstr "" -#: gnu/packages/gnome.scm:12727 +#: gnu/packages/gnome.scm:12745 msgid "" "@code{gnome-power-manager} is a tool for viewing present and\n" "historical battery usage and related statistics." msgstr "" +#: gnu/packages/gnome.scm:12789 +#, fuzzy +#| msgid "This package contains the game data of GNU Freedink." +msgid "This package provides a graphical file manager." +msgstr "이 꾸러미는 GNU Freedink의 게임 자료를 포함합니다." + #: gnu/packages/gnuzilla.scm:155 msgid "" "SpiderMonkey is Mozilla's JavaScript engine written\n" "in C/C++." msgstr "" -#: gnu/packages/gnuzilla.scm:1314 +#: gnu/packages/gnuzilla.scm:1315 msgid "" "IceCat is the GNU version of the Firefox browser. It is entirely free\n" "software, which does not recommend non-free plugins and addons. It also\n" @@ -7258,19 +7381,19 @@ msgid "" "standards of the IceCat project." msgstr "" -#: gnu/packages/gnuzilla.scm:1642 +#: gnu/packages/gnuzilla.scm:1648 msgid "" "This package provides an email client built based on Mozilla\n" "Thunderbird. It supports email, news feeds, chat, calendar and contacts." msgstr "" -#: gnu/packages/gnuzilla.scm:1717 +#: gnu/packages/gnuzilla.scm:1723 msgid "" "Firefox Decrypt is a tool to extract passwords from\n" "Mozilla (Firefox, Waterfox, Thunderbird, SeaMonkey) profiles." msgstr "" -#: gnu/packages/gnuzilla.scm:1754 +#: gnu/packages/gnuzilla.scm:1760 msgid "" "@code{lz4json} is a little utility to unpack lz4json files as generated\n" "by Firefox's bookmark backups and session restore. This is a different format\n" @@ -7284,7 +7407,7 @@ msgid "" "tools have full access to view and control running applications." msgstr "" -#: gnu/packages/gtk.scm:215 +#: gnu/packages/gtk.scm:212 msgid "" "Cairo is a 2D graphics library with support for multiple output\n" "devices. Currently supported output targets include the X Window System (via\n" @@ -7292,24 +7415,24 @@ msgid "" "output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB." msgstr "" -#: gnu/packages/gtk.scm:277 +#: gnu/packages/gtk.scm:274 msgid "HarfBuzz is an OpenType text shaping engine." msgstr "" -#: gnu/packages/gtk.scm:320 +#: gnu/packages/gtk.scm:317 msgid "" "Libdatrie is an implementation of double-array structure for\n" "representing trie. Trie is a kind of digital search tree." msgstr "" -#: gnu/packages/gtk.scm:352 +#: gnu/packages/gtk.scm:349 msgid "" "LibThai is a set of Thai language support routines aimed to\n" "ease developers’ tasks to incorporate Thai language support in their\n" "applications." msgstr "" -#: gnu/packages/gtk.scm:407 +#: gnu/packages/gtk.scm:404 msgid "" "Pango is a library for laying out and rendering of text, with\n" "an emphasis on internationalization. Pango can be used anywhere that text\n" @@ -7318,21 +7441,21 @@ msgid "" "handling for GTK+-2.x." msgstr "" -#: gnu/packages/gtk.scm:461 +#: gnu/packages/gtk.scm:458 msgid "" "Pangox was a X backend to pango. It is now obsolete and no\n" "longer provided by recent pango releases. pangox-compat provides the\n" "functions which were removed." msgstr "" -#: gnu/packages/gtk.scm:498 +#: gnu/packages/gtk.scm:495 msgid "" "Ganv is an interactive GTK+ widget for interactive “boxes and lines” or\n" "graph-like environments, e.g. modular synths or finite state machine\n" "diagrams." msgstr "" -#: gnu/packages/gtk.scm:554 +#: gnu/packages/gtk.scm:551 msgid "" "GtkSourceView is a portable C library that extends the standard GTK+\n" "framework for multiline text editing with support for configurable syntax\n" @@ -7340,33 +7463,33 @@ msgid "" "printing and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:602 +#: gnu/packages/gtk.scm:599 msgid "" "GtkSourceView is a text widget that extends the standard\n" "GTK+ text widget GtkTextView. It improves GtkTextView by implementing syntax\n" "highlighting and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:698 +#: gnu/packages/gtk.scm:695 msgid "" "GdkPixbuf is a library that loads image data in various\n" "formats and stores it as linear buffers in memory. The buffers can then be\n" "scaled, composited, modified, saved, or rendered." msgstr "" -#: gnu/packages/gtk.scm:746 +#: gnu/packages/gtk.scm:743 msgid "" "The Assistive Technology Service Provider Interface, core components,\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:827 +#: gnu/packages/gtk.scm:824 msgid "" "The Assistive Technology Service Provider Interface\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:921 +#: gnu/packages/gtk.scm:918 msgid "" "GTK+, or the GIMP Toolkit, is a multi-platform toolkit for creating\n" "graphical user interfaces. Offering a complete set of widgets, GTK+ is\n" @@ -7374,14 +7497,14 @@ msgid "" "application suites." msgstr "" -#: gnu/packages/gtk.scm:1234 +#: gnu/packages/gtk.scm:1238 msgid "" "GTK is a multi-platform toolkit for creating graphical user\n" "interfaces. Offering a complete set of widgets, GTK is suitable for projects\n" "ranging from small one-off tools to complete application suites." msgstr "" -#: gnu/packages/gtk.scm:1308 +#: gnu/packages/gtk.scm:1312 msgid "" "Guile-Cairo wraps the Cairo graphics library for Guile Scheme.\n" "Guile-Cairo is complete, wrapping almost all of the Cairo API. It is API\n" @@ -7391,13 +7514,13 @@ msgid "" "exceptions, macros, and a dynamic programming environment." msgstr "" -#: gnu/packages/gtk.scm:1389 +#: gnu/packages/gtk.scm:1393 msgid "" "Guile-RSVG wraps the RSVG library for Guile, allowing you to render SVG\n" "images onto Cairo surfaces." msgstr "" -#: gnu/packages/gtk.scm:1456 +#: gnu/packages/gtk.scm:1460 msgid "" "Guile-Present defines a declarative vocabulary for presentations,\n" "together with tools to render presentation documents as SVG or PDF.\n" @@ -7406,29 +7529,29 @@ msgid "" "documents." msgstr "" -#: gnu/packages/gtk.scm:1522 +#: gnu/packages/gtk.scm:1526 msgid "" "Includes guile-clutter, guile-gnome-gstreamer,\n" "guile-gnome-platform (GNOME developer libraries), and guile-gtksourceview." msgstr "" -#: gnu/packages/gtk.scm:1578 +#: gnu/packages/gtk.scm:1582 msgid "" "Cairomm provides a C++ programming interface to the Cairo 2D graphics\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1642 +#: gnu/packages/gtk.scm:1647 msgid "" "Pangomm provides a C++ programming interface to the Pango text rendering\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1704 +#: gnu/packages/gtk.scm:1709 msgid "ATKmm is the C++ binding for the ATK library." msgstr "" -#: gnu/packages/gtk.scm:1784 +#: gnu/packages/gtk.scm:1790 msgid "" "GTKmm is the official C++ interface for the popular GUI\n" "library GTK+. Highlights include typesafe callbacks, and a comprehensive set\n" @@ -7657,7 +7780,7 @@ msgid "" "excellent pavucontrol." msgstr "" -#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:238 +#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:241 msgid "" "Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" "official extension language of the GNU system. It is an implementation of\n" @@ -7666,14 +7789,14 @@ msgid "" "without requiring the source code to be rewritten." msgstr "" -#: gnu/packages/guile.scm:502 +#: gnu/packages/guile.scm:506 msgid "" "This module provides line editing support via the Readline library for\n" "GNU@tie{}Guile. Use the @code{(ice-9 readline)} module and call its\n" "@code{activate-readline} procedure to enable it." msgstr "" -#: gnu/packages/guile.scm:604 +#: gnu/packages/guile.scm:608 msgid "" "Guile-JSON supports parsing and building JSON documents according to the\n" "specification. These are the main features:\n" @@ -7686,17 +7809,17 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/guile.scm:701 +#: gnu/packages/guile.scm:705 msgid "" "Guile bindings to the GDBM key-value storage system, using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:730 +#: gnu/packages/guile.scm:734 msgid "This package provides Guile bindings to the SQLite database system." msgstr "" -#: gnu/packages/guile.scm:769 +#: gnu/packages/guile.scm:773 msgid "" "Guile bytestructures offers a system imitating the type system\n" "of the C programming language, to be used on bytevectors. C's type\n" @@ -7705,33 +7828,33 @@ msgid "" "type system, elevating types to first-class status." msgstr "" -#: gnu/packages/guile.scm:810 +#: gnu/packages/guile.scm:814 msgid "" "This package provides Guile bindings to libgit2, a library to\n" "manipulate repositories of the Git version control system." msgstr "" -#: gnu/packages/guile.scm:846 +#: gnu/packages/guile.scm:850 msgid "" "This package provides Guile bindings for zlib, a lossless\n" "data-compression library. The bindings are written in pure Scheme by using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:877 +#: gnu/packages/guile.scm:881 msgid "" "This package provides Guile bindings for lzlib, a C library for\n" "in-memory LZMA compression and decompression. The bindings are written in\n" "pure Scheme by using Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:904 +#: gnu/packages/guile.scm:908 msgid "" "This package provides a GNU Guile interface to the zstd (``zstandard'')\n" "compression library." msgstr "" -#: gnu/packages/guile.scm:926 +#: gnu/packages/guile.scm:930 msgid "" "Guile-LZMA is a Guile wrapper for the liblzma (XZ)\n" "library. It exposes an interface similar to other Guile compression\n" @@ -8318,7 +8441,7 @@ msgid "" "It supports JPEG, PNG and GIF formats." msgstr "" -#: gnu/packages/image-viewers.scm:640 +#: gnu/packages/image-viewers.scm:643 msgid "" "Luminance HDR (formerly QtPFSGui) is a graphical user interface\n" "application that aims to provide a workflow for high dynamic range (HDR)\n" @@ -8334,7 +8457,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:735 +#: gnu/packages/image-viewers.scm:738 msgid "" "MComix is a customizable image viewer that specializes as\n" "a comic and manga reader. It supports a variety of container formats\n" @@ -8343,7 +8466,7 @@ msgid "" "For PDF support, install the @emph{mupdf} package." msgstr "" -#: gnu/packages/image-viewers.scm:775 +#: gnu/packages/image-viewers.scm:778 msgid "" "qView is a Qt image viewer designed with visually\n" "minimalism and usability in mind. Its features include animated GIF\n" @@ -8351,14 +8474,14 @@ msgid "" "preloading." msgstr "" -#: gnu/packages/image-viewers.scm:799 +#: gnu/packages/image-viewers.scm:802 msgid "" "Chafa is a command-line utility that converts all kinds of images,\n" "including animated GIFs, into ANSI/Unicode character output that can be\n" "displayed in a terminal." msgstr "" -#: gnu/packages/image-viewers.scm:847 +#: gnu/packages/image-viewers.scm:850 msgid "" "@code{imv} is a command line image viewer intended for use\n" "with tiling window managers. Features include:\n" @@ -8380,7 +8503,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:924 +#: gnu/packages/image-viewers.scm:927 msgid "" "Quick Image Viewer is a small and fast GDK/Imlib2 image viewer.\n" "Features include zoom, maxpect, scale down, fullscreen, slideshow, delete,\n" @@ -8389,7 +8512,7 @@ msgid "" "to set X desktop background." msgstr "" -#: gnu/packages/image-viewers.scm:968 +#: gnu/packages/image-viewers.scm:971 msgid "" "pqiv is a GTK-3 based command-line image viewer with a minimal UI.\n" "It is highly customizable, can be fully controlled from scripts, and has\n" @@ -8397,7 +8520,7 @@ msgid "" "archives." msgstr "" -#: gnu/packages/image-viewers.scm:1025 +#: gnu/packages/image-viewers.scm:1028 msgid "" "Nomacs is a simple to use image lounge featuring\n" "semi-transparent widgets that display additional information such as metadata,\n" @@ -8410,7 +8533,7 @@ msgid "" "synchronization of multiple instances." msgstr "" -#: gnu/packages/image-viewers.scm:1070 +#: gnu/packages/image-viewers.scm:1073 msgid "xzgv is a fast image viewer that provides extensive keyboard support." msgstr "" @@ -8673,17 +8796,17 @@ msgid "" "Math for editing mathematics." msgstr "" -#: gnu/packages/linux.scm:604 +#: gnu/packages/linux.scm:625 msgid "Headers of the Linux-Libre kernel." msgstr "" -#: gnu/packages/linux.scm:905 +#: gnu/packages/linux.scm:935 msgid "" "GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.\n" "It has been modified to remove all non-free binary blobs." msgstr "" -#: gnu/packages/linux.scm:1215 +#: gnu/packages/linux.scm:1252 msgid "" "This simple Linux kernel module allows calls from user space to any\n" "@acronym{ACPI, Advanced Configuration and Power Interface} method provided by\n" @@ -8695,7 +8818,7 @@ msgid "" "and should be used with caution, especially on untested models." msgstr "" -#: gnu/packages/linux.scm:1283 +#: gnu/packages/linux.scm:1320 msgid "" "CoreFreq is a CPU monitor that reports low-level processor settings and\n" "performance data with notably high precision by using a loadable Linux kernel\n" @@ -8726,7 +8849,7 @@ msgid "" "@file{README.md} before loading it." msgstr "" -#: gnu/packages/linux.scm:1332 +#: gnu/packages/linux.scm:1369 msgid "" "This is the Linux kernel @acronym{ACPI, Advanced Configuration and Power\n" "Interface} platform driver for the @acronym{EC, Embedded Controller} firmware\n" @@ -8735,13 +8858,13 @@ msgid "" "and the notification, WiFi, and Bluetooth LED." msgstr "" -#: gnu/packages/linux.scm:1375 +#: gnu/packages/linux.scm:1413 msgid "" "This is Realtek's RTL8821CE Linux driver for wireless\n" "network adapters." msgstr "" -#: gnu/packages/linux.scm:1407 +#: gnu/packages/linux.scm:1445 msgid "" "This is Realtek's rtl8812au Linux driver for USB 802.11n wireless\n" "network adapters, modified by the aircrack-ng project to support monitor mode\n" @@ -8749,7 +8872,7 @@ msgid "" "RTL8812AU, RTL8821AU, and RTL8814AU chips." msgstr "" -#: gnu/packages/linux.scm:1431 +#: gnu/packages/linux.scm:1469 msgid "" "The @acronym{VHBA, Virtual SCSI Host Bus Adapter} module is the link\n" "between the CDemu user-space daemon and the kernel Linux. It acts as a\n" @@ -8758,13 +8881,13 @@ msgid "" "emulate optical devices such as DVD and CD-ROM drives." msgstr "" -#: gnu/packages/linux.scm:1460 +#: gnu/packages/linux.scm:1497 msgid "" "The bbswitch module provides a way to toggle the Nvidia\n" "graphics card on Optimus laptops." msgstr "" -#: gnu/packages/linux.scm:1501 +#: gnu/packages/linux.scm:1536 msgid "" "This package provides two Linux kernel drivers, ddcci and\n" "ddcci-backlight, that allows the control of DDC/CI monitors through the sysfs\n" @@ -8774,7 +8897,7 @@ msgid "" "supported under @file{/sys/class/backlight/}." msgstr "" -#: gnu/packages/linux.scm:1528 +#: gnu/packages/linux.scm:1563 msgid "" "This Linux module creates virtual video devices. @acronym{V4L2, Video\n" "for Linux 2} applications will treat these as ordinary video devices but read\n" @@ -8786,7 +8909,7 @@ msgid "" "application by hooking GStreamer into the loopback device." msgstr "" -#: gnu/packages/linux.scm:1569 +#: gnu/packages/linux.scm:1604 msgid "" "This package provides a driver for the XBox One S Wireless controller\n" "and some newer models when connected via Bluetooth. In addition to the included\n" @@ -8794,7 +8917,7 @@ msgid "" "which need to be installed separately." msgstr "" -#: gnu/packages/linux.scm:1622 +#: gnu/packages/linux.scm:1657 msgid "" "A *Free* project to implement OSF's RFC 86.0.\n" "Pluggable authentication modules are small shared object files that can\n" @@ -8802,18 +8925,18 @@ msgid "" "at login. Local and dynamic reconfiguration are its key features." msgstr "" -#: gnu/packages/linux.scm:1683 +#: gnu/packages/linux.scm:1718 msgid "This package provides a PAM interface using @code{ctypes}." msgstr "" -#: gnu/packages/linux.scm:1712 +#: gnu/packages/linux.scm:1747 msgid "" "This package provides a PAM module that hands over your\n" "login password to @code{gpg-agent}. This can be useful if you are using a\n" "GnuPG-based password manager like @code{pass}." msgstr "" -#: gnu/packages/linux.scm:1741 +#: gnu/packages/linux.scm:1776 msgid "" "This package contains utilities for accessing the powercap\n" "Linux kernel feature through sysfs. It includes an implementation for working\n" @@ -8821,7 +8944,7 @@ msgid "" "It provides the commands @code{powercap-info} and @code{powercap-set}." msgstr "" -#: gnu/packages/linux.scm:1772 +#: gnu/packages/linux.scm:1807 msgid "" "Powerstat measures and reports your computer's power consumption in real\n" "time. On mobile PCs, it uses ACPI battery information to measure the power\n" @@ -8838,28 +8961,28 @@ msgid "" "deviation, and minimum and maximum values. It can show a nice histogram too." msgstr "" -#: gnu/packages/linux.scm:1810 +#: gnu/packages/linux.scm:1845 msgid "" "This PSmisc package is a set of some small useful utilities that\n" "use the proc file system. We're not about changing the world, but\n" "providing the system administrator with some help in common tasks." msgstr "" -#: gnu/packages/linux.scm:1948 +#: gnu/packages/linux.scm:1984 msgid "" "Util-linux is a diverse collection of Linux kernel\n" "utilities. It provides dmesg and includes tools for working with file systems,\n" "block devices, UUIDs, TTYs, and many other tools." msgstr "" -#: gnu/packages/linux.scm:1986 +#: gnu/packages/linux.scm:2037 msgid "" "ddate displays the Discordian date and holidays of a given date.\n" "The Discordian calendar was made popular by the \"Illuminatus!\" trilogy\n" "by Robert Shea and Robert Anton Wilson." msgstr "" -#: gnu/packages/linux.scm:2040 +#: gnu/packages/linux.scm:2091 msgid "" "The kernel Linux's @dfn{frame buffers} provide a simple interface to\n" "different kinds of graphic displays. The @command{fbset} utility can query and\n" @@ -8867,7 +8990,7 @@ msgid "" "parameters." msgstr "" -#: gnu/packages/linux.scm:2085 +#: gnu/packages/linux.scm:2136 msgid "" "Procps is the package that has a bunch of small useful utilities\n" "that give information about processes using the Linux /proc file system.\n" @@ -8875,11 +8998,11 @@ msgid "" "slabtop, tload, top, vmstat, w, watch and sysctl." msgstr "" -#: gnu/packages/linux.scm:2130 +#: gnu/packages/linux.scm:2181 msgid "Tools for working with USB devices, such as lsusb." msgstr "" -#: gnu/packages/linux.scm:2154 +#: gnu/packages/linux.scm:2205 msgid "" "The USB/IP protocol enables to pass USB device from a server to\n" "a client over the network. The server is a machine which shares an\n" @@ -8892,23 +9015,23 @@ msgid "" "module." msgstr "" -#: gnu/packages/linux.scm:2237 +#: gnu/packages/linux.scm:2288 msgid "This package provides tools for manipulating ext2/ext3/ext4 file systems." msgstr "" -#: gnu/packages/linux.scm:2279 +#: gnu/packages/linux.scm:2330 msgid "" "This package provides statically-linked e2fsck command taken\n" "from the e2fsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:2302 +#: gnu/packages/linux.scm:2353 msgid "" "Extundelete is a set of tools that can recover deleted files from an\n" "ext3 or ext4 partition." msgstr "" -#: gnu/packages/linux.scm:2335 +#: gnu/packages/linux.scm:2386 msgid "" "Zerofree finds the unallocated blocks with non-zero value content in an\n" "ext2, ext3, or ext4 file system and fills them with zeroes (or another value).\n" @@ -8916,39 +9039,39 @@ msgid "" "Zerofree requires the file system to be unmounted or mounted read-only." msgstr "" -#: gnu/packages/linux.scm:2380 +#: gnu/packages/linux.scm:2431 msgid "" "strace is a system call tracer, i.e. a debugging tool which prints out a\n" "trace of all the system calls made by a another process/program." msgstr "" -#: gnu/packages/linux.scm:2403 +#: gnu/packages/linux.scm:2454 msgid "" "ltrace intercepts and records dynamic library calls which are called by\n" "an executed process and the signals received by that process. It can also\n" "intercept and print the system calls executed by the program." msgstr "" -#: gnu/packages/linux.scm:2428 +#: gnu/packages/linux.scm:2479 msgid "" "This package contains Advanced Linux Sound Architecture Use Case Manager\n" "configuration of audio input/output names and routing for specific audio\n" "hardware." msgstr "" -#: gnu/packages/linux.scm:2452 +#: gnu/packages/linux.scm:2503 msgid "" "This package contains Advanced Linux Sound Architecture topology\n" "configuration files that can be used for specific audio hardware." msgstr "" -#: gnu/packages/linux.scm:2499 gnu/packages/linux.scm:2548 +#: gnu/packages/linux.scm:2550 gnu/packages/linux.scm:2599 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system." msgstr "" -#: gnu/packages/linux.scm:2617 +#: gnu/packages/linux.scm:2668 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system. This package enhances ALSA\n" @@ -8957,7 +9080,7 @@ msgid "" "external rate conversion." msgstr "" -#: gnu/packages/linux.scm:2655 +#: gnu/packages/linux.scm:2706 msgid "" "@command{iptables} is the user-space command line program used to\n" "configure the Linux 2.4.x and later IPv4 packet filtering ruleset\n" @@ -8969,7 +9092,7 @@ msgid "" "Both commands are targeted at system administrators." msgstr "" -#: gnu/packages/linux.scm:2691 +#: gnu/packages/linux.scm:2742 msgid "" "This simple daemon feeds entropy from the CPU Jitter @acronym{RNG, random\n" "number generator} core to the kernel Linux's entropy estimator. This prevents\n" @@ -8991,7 +9114,7 @@ msgid "" "early boot when entropy may be low, especially in virtualised environments." msgstr "" -#: gnu/packages/linux.scm:2727 +#: gnu/packages/linux.scm:2778 msgid "" "@command{lsscsi} lists SCSI logical units or SCSI targets. It can\n" "also list NVMe namespaces or controllers and show the relationship between a\n" @@ -8999,7 +9122,7 @@ msgid "" "name." msgstr "" -#: gnu/packages/linux.scm:2751 +#: gnu/packages/linux.scm:2802 msgid "" "ebtables is an application program used to set up and maintain the\n" "tables of rules (inside the Linux kernel) that inspect Ethernet frames. It is\n" @@ -9007,7 +9130,7 @@ msgid "" "that the Ethernet protocol is much simpler than the IP protocol." msgstr "" -#: gnu/packages/linux.scm:2816 +#: gnu/packages/linux.scm:2867 msgid "" "Iproute2 is a collection of utilities for controlling TCP/IP networking\n" "and traffic with the Linux kernel. The most important of these are\n" @@ -9019,7 +9142,7 @@ msgid "" "inadequately in modern network environments, and both should be deprecated." msgstr "" -#: gnu/packages/linux.scm:2896 +#: gnu/packages/linux.scm:2947 msgid "" "This package includes the important tools for controlling the network\n" "subsystem of the Linux kernel. This includes arp, ifconfig, netstat, rarp and\n" @@ -9028,13 +9151,13 @@ msgid "" "configuration (iptunnel, ipmaddr)." msgstr "" -#: gnu/packages/linux.scm:2947 +#: gnu/packages/linux.scm:2989 msgid "" "Libcap2 provides a programming interface to POSIX capabilities on\n" "Linux-based operating systems." msgstr "" -#: gnu/packages/linux.scm:2974 +#: gnu/packages/linux.scm:3016 msgid "" "Utilities for Linux's Ethernet bridging facilities. A bridge is a way\n" "to connect two Ethernet segments together in a protocol independent way.\n" @@ -9043,7 +9166,7 @@ msgid "" "transparently through a bridge." msgstr "" -#: gnu/packages/linux.scm:3025 +#: gnu/packages/linux.scm:3067 msgid "" "The libnl suite is a collection of libraries providing APIs to netlink\n" "protocol based Linux kernel interfaces. Netlink is an IPC mechanism primarily\n" @@ -9052,13 +9175,13 @@ msgid "" "configuration and monitoring interfaces." msgstr "" -#: gnu/packages/linux.scm:3099 +#: gnu/packages/linux.scm:3141 msgid "" "iw is a new nl80211 based CLI configuration utility for wireless\n" "devices. It replaces @code{iwconfig}, which is deprecated." msgstr "" -#: gnu/packages/linux.scm:3149 +#: gnu/packages/linux.scm:3191 msgid "" "PowerTOP is a Linux tool to diagnose issues with power consumption and\n" "power management. In addition to being a diagnostic tool, PowerTOP also has\n" @@ -9067,19 +9190,19 @@ msgid "" "settings." msgstr "" -#: gnu/packages/linux.scm:3176 +#: gnu/packages/linux.scm:3218 msgid "" "Aumix adjusts an audio mixer from X, the console, a terminal,\n" "the command line or a script." msgstr "" -#: gnu/packages/linux.scm:3207 +#: gnu/packages/linux.scm:3249 msgid "" "Iotop is a Python program with a top like user interface to show the\n" "processes currently causing I/O." msgstr "" -#: gnu/packages/linux.scm:3265 +#: gnu/packages/linux.scm:3307 msgid "" "As a consequence of its monolithic design, file system code for Linux\n" "normally goes into the kernel itself---which is not only a robustness issue,\n" @@ -9089,7 +9212,7 @@ msgid "" "user-space processes." msgstr "" -#: gnu/packages/linux.scm:3358 +#: gnu/packages/linux.scm:3400 msgid "" "UnionFS-FUSE is a flexible union file system implementation in user\n" "space, using the FUSE library. Mounting a union file system allows you to\n" @@ -9097,7 +9220,7 @@ msgid "" "UnionFS-FUSE additionally supports copy-on-write." msgstr "" -#: gnu/packages/linux.scm:3437 +#: gnu/packages/linux.scm:3479 msgid "" "This is a file system client based on the SSH File Transfer Protocol.\n" "Since most SSH servers already support this protocol it is very easy to set\n" @@ -9105,7 +9228,7 @@ msgid "" "file system is as easy as logging into the server with an SSH client." msgstr "" -#: gnu/packages/linux.scm:3464 +#: gnu/packages/linux.scm:3506 msgid "" "archivemount is a FUSE-based file system for Unix variants,\n" "including Linux. Its purpose is to mount archives (i.e. tar, tar.gz, etc.) to a\n" @@ -9114,7 +9237,7 @@ msgid "" "compressed, transparent to other programs, without decompressing them." msgstr "" -#: gnu/packages/linux.scm:3495 +#: gnu/packages/linux.scm:3537 msgid "" "NUMA stands for Non-Uniform Memory Access, in other words a system whose\n" "memory is not all in one place. The @command{numactl} program allows you to\n" @@ -9127,26 +9250,26 @@ msgid "" "NUMA performance on your system." msgstr "" -#: gnu/packages/linux.scm:3533 +#: gnu/packages/linux.scm:3575 msgid "" "Kbd-neo provides the Neo2 keyboard layout for use with\n" "@command{loadkeys(1)} from @code{kbd(4)}." msgstr "" -#: gnu/packages/linux.scm:3599 +#: gnu/packages/linux.scm:3641 msgid "" "This package contains keytable files and keyboard utilities compatible\n" "for systems using the Linux kernel. This includes commands such as\n" "@code{loadkeys}, @code{setfont}, @code{kbdinfo}, and @code{chvt}." msgstr "" -#: gnu/packages/linux.scm:3662 +#: gnu/packages/linux.scm:3704 msgid "" "The inotify-tools packages provides a C library and command-line tools\n" "to use Linux' inotify mechanism, which allows file accesses to be monitored." msgstr "" -#: gnu/packages/linux.scm:3714 +#: gnu/packages/linux.scm:3756 msgid "" "Kmod is a set of tools to handle common tasks with Linux\n" "kernel modules like insert, remove, list, check properties, resolve\n" @@ -9157,21 +9280,21 @@ msgid "" "from the module-init-tools project." msgstr "" -#: gnu/packages/linux.scm:3769 +#: gnu/packages/linux.scm:3812 msgid "" "Early OOM is a minimalist out of memory (OOM) daemon that\n" "runs in user space and provides a more responsive and configurable alternative\n" "to the in-kernel OOM killer." msgstr "" -#: gnu/packages/linux.scm:3867 +#: gnu/packages/linux.scm:3892 msgid "" "Udev is a daemon which dynamically creates and removes\n" "device nodes from /dev/, handles hotplug events and loads drivers at boot\n" "time." msgstr "" -#: gnu/packages/linux.scm:3897 +#: gnu/packages/linux.scm:3922 msgid "" "Python-evdev provides bindings to the generic input event interface in\n" "Linux. The @code{evdev} interface serves the purpose of passing events\n" @@ -9183,7 +9306,7 @@ msgid "" "devices that can inject events directly into the input subsystem." msgstr "" -#: gnu/packages/linux.scm:3930 +#: gnu/packages/linux.scm:3955 msgid "" "Interception Tools provides a composable infrastructure on top of\n" "@code{libudev} and @code{libevdev}. The following utilities are provided:\n" @@ -9196,33 +9319,33 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/linux.scm:3979 +#: gnu/packages/linux.scm:4004 msgid "" "Dual Function Keys is a plugin for @code{interception-tools} that allows\n" "one to send arbitrary keycodes when a given key is tapped or held." msgstr "" -#: gnu/packages/linux.scm:4056 +#: gnu/packages/linux.scm:4081 msgid "" "LVM2 is the logical volume management tool set for Linux-based systems.\n" "This package includes the user-space libraries and tools, including the device\n" "mapper. Kernel components are part of Linux-libre." msgstr "" -#: gnu/packages/linux.scm:4122 +#: gnu/packages/linux.scm:4147 msgid "" "A suite of tools for manipulating the metadata of the\n" "dm-thin, dm-cache and dm-era device-mapper targets." msgstr "" -#: gnu/packages/linux.scm:4144 +#: gnu/packages/linux.scm:4169 msgid "" "This package provides an advanced monitor of critical system\n" "resources, supervises the heartbeat of processes, records deadline\n" "transgressions, and initiates a controlled reset if needed." msgstr "" -#: gnu/packages/linux.scm:4189 +#: gnu/packages/linux.scm:4214 msgid "" "Wireless Tools are used to manipulate the now-deprecated\n" "Linux Wireless Extensions; consider using @code{iw} instead. The Wireless\n" @@ -9231,35 +9354,35 @@ msgid "" "interface." msgstr "" -#: gnu/packages/linux.scm:4280 +#: gnu/packages/linux.scm:4305 msgid "" "The Central Regulatory Domain Agent (CRDA) acts as the udev helper for\n" "communication between the kernel Linux and user space for regulatory\n" "compliance." msgstr "" -#: gnu/packages/linux.scm:4350 +#: gnu/packages/linux.scm:4375 msgid "" "This package contains the wireless regulatory database for the Central\n" "Regulatory Database Agent (CRDA). The database contains information on\n" "country-specific regulations for the wireless spectrum." msgstr "" -#: gnu/packages/linux.scm:4424 +#: gnu/packages/linux.scm:4449 msgid "" "Lm-sensors is a hardware health monitoring package for Linux. It allows\n" "you to access information from temperature, voltage, and fan speed sensors.\n" "It works with most newer systems." msgstr "" -#: gnu/packages/linux.scm:4444 +#: gnu/packages/linux.scm:4469 msgid "" "@command{iucode_tool} is a utility to work with microcode packages for\n" "Intel processors. It can convert between formats, extract specific versions,\n" "create a firmware image suitable for the Linux kernel, and more." msgstr "" -#: gnu/packages/linux.scm:4475 +#: gnu/packages/linux.scm:4501 msgid "" "The i2c-tools package contains a heterogeneous set of I2C tools for\n" "Linux: a bus probing tool, a chip dumper, register-level SMBus access helpers,\n" @@ -9267,14 +9390,14 @@ msgid "" "SMBus access." msgstr "" -#: gnu/packages/linux.scm:4514 +#: gnu/packages/linux.scm:4540 msgid "" "Xsensors reads data from the libsensors library regarding hardware\n" "health such as temperature, voltage and fan speed and displays the information\n" "in a digital read-out." msgstr "" -#: gnu/packages/linux.scm:4568 +#: gnu/packages/linux.scm:4600 msgid "" "perf is a tool suite for profiling using hardware performance counters,\n" "with support in the Linux kernel. perf can instrument CPU performance\n" @@ -9283,7 +9406,7 @@ msgid "" "particular the @code{perf} command." msgstr "" -#: gnu/packages/linux.scm:4593 +#: gnu/packages/linux.scm:4625 msgid "" "pflask is a simple tool for creating Linux namespace\n" "containers. It can be used for running a command or even booting an OS inside\n" @@ -9292,7 +9415,7 @@ msgid "" "thanks to the use of namespaces." msgstr "" -#: gnu/packages/linux.scm:4678 +#: gnu/packages/linux.scm:4710 msgid "" "Singularity is a container platform supporting a number of\n" "container image formats. It can build SquashFS container images or import\n" @@ -9300,7 +9423,7 @@ msgid "" "isolation or root privileges." msgstr "" -#: gnu/packages/linux.scm:4711 +#: gnu/packages/linux.scm:4742 msgid "" "@command{hdparm} is a command-line utility to control ATA controllers and\n" "disk drives. It can increase performance and/or reliability by careful tuning\n" @@ -9314,21 +9437,21 @@ msgid "" "Translation (@dfn{SAT}) are also supported." msgstr "" -#: gnu/packages/linux.scm:4750 +#: gnu/packages/linux.scm:4782 msgid "" "Nvme-cli is a utility to provide standards compliant tooling\n" "for NVM-Express drives. It was made specifically for Linux as it relies on the\n" "IOCTLs defined by the mainline kernel driver." msgstr "" -#: gnu/packages/linux.scm:4776 +#: gnu/packages/linux.scm:4808 msgid "" "rfkill is a simple tool for accessing the rfkill device interface,\n" "which is used to enable and disable wireless networking devices, typically\n" "WLAN, Bluetooth and mobile broadband." msgstr "" -#: gnu/packages/linux.scm:4798 +#: gnu/packages/linux.scm:4830 msgid "" "@code{acpi} attempts to replicate the functionality of the\n" "\"old\" @code{apm} command on ACPI systems, including battery and thermal\n" @@ -9336,7 +9459,7 @@ msgid "" "about ACPI devices." msgstr "" -#: gnu/packages/linux.scm:4819 +#: gnu/packages/linux.scm:4851 msgid "" "acpid is designed to notify user-space programs of Advanced\n" "Configuration and Power Interface (ACPI) events. acpid should be started\n" @@ -9345,36 +9468,36 @@ msgid "" "specified in /etc/acpi/events and execute the rules that match the event." msgstr "" -#: gnu/packages/linux.scm:4843 +#: gnu/packages/linux.scm:4875 msgid "" "These are a set of utilities built upon sysfs, a virtual file system in\n" "Linux kernel versions 2.5+ that exposes a system's device tree. The package\n" "also contains the libsysfs library." msgstr "" -#: gnu/packages/linux.scm:4886 +#: gnu/packages/linux.scm:4918 msgid "" "The cpufrequtils suite contains utilities to retrieve CPU frequency\n" "information, and set the CPU frequency if supported, using the cpufreq\n" "capabilities of the Linux kernel." msgstr "" -#: gnu/packages/linux.scm:4922 +#: gnu/packages/linux.scm:4954 msgid "" "This package provides many of the missing pieces in GNU\n" "libc. Most notably the string functions: strlcpy(3), strlcat(3) and the *BSD\n" "sys/queue.h and sys/tree.h API's." msgstr "" -#: gnu/packages/linux.scm:4945 -#, fuzzy -#| msgid "This package provides an database interface for Perl." +#: gnu/packages/linux.scm:4977 msgid "" "This package provides small event loop that wraps the\n" "epoll family of APIs." -msgstr "이 꾸러미는 펄을 위한 데이타베이스 연결장치를 제공합니다." +msgstr "" +"이 꾸러미는 API의 epoll 제품군을 감싸는 작은 이벤트\n" +"루프를 제공합니다." -#: gnu/packages/linux.scm:4966 +#: gnu/packages/linux.scm:4998 msgid "" "Libraw1394 is the only supported interface to the kernel side raw1394 of\n" "the Linux IEEE-1394 subsystem, which provides direct access to the connected\n" @@ -9383,26 +9506,26 @@ msgid "" "protocol in question." msgstr "" -#: gnu/packages/linux.scm:4992 +#: gnu/packages/linux.scm:5024 msgid "" "Libavc1394 is a programming interface to the AV/C specification from\n" "the 1394 Trade Association. AV/C stands for Audio/Video Control." msgstr "" -#: gnu/packages/linux.scm:5016 +#: gnu/packages/linux.scm:5048 msgid "" "The libiec61883 library provides a higher level API for streaming DV,\n" "MPEG-2 and audio over Linux IEEE 1394." msgstr "" -#: gnu/packages/linux.scm:5067 +#: gnu/packages/linux.scm:5099 msgid "" "mdadm is a tool for managing Linux Software RAID arrays. It can create,\n" "assemble, report on, and monitor arrays. It can also move spares between raid\n" "arrays when needed." msgstr "" -#: gnu/packages/linux.scm:5199 +#: gnu/packages/linux.scm:5231 msgid "" "This package provides the following binaries to drive the\n" "Linux Device Mapper multipathing driver:\n" @@ -9415,66 +9538,66 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:5244 +#: gnu/packages/linux.scm:5288 msgid "" "This library enables userspace to use Linux kernel asynchronous I/O\n" "system calls, important for the performance of databases and other advanced\n" "applications." msgstr "" -#: gnu/packages/linux.scm:5287 +#: gnu/packages/linux.scm:5331 msgid "" "Blktrace is a block layer IO tracing mechanism which provides\n" "detailed information about request queue operations to user space. It extracts\n" "event traces from the kernel (via the relaying through the debug file system)." msgstr "" -#: gnu/packages/linux.scm:5312 +#: gnu/packages/linux.scm:5356 msgid "" "The SBC is a digital audio encoder and decoder used to transfer data to\n" "Bluetooth audio output devices like headphones or loudspeakers." msgstr "" -#: gnu/packages/linux.scm:5379 +#: gnu/packages/linux.scm:5423 msgid "" "BlueZ provides support for the core Bluetooth layers and protocols. It\n" "is flexible, efficient and uses a modular implementation." msgstr "" -#: gnu/packages/linux.scm:5403 +#: gnu/packages/linux.scm:5447 msgid "" "This package provides a FUSE-based file system that provides read and\n" "write access to exFAT devices." msgstr "" -#: gnu/packages/linux.scm:5426 +#: gnu/packages/linux.scm:5470 msgid "" "FuseISO is a FUSE module to mount ISO file system images (.iso, .nrg,\n" ".bin, .mdf and .img files). It supports plain ISO9660 Level 1 and 2, Rock\n" "Ridge, Joliet, and zisofs." msgstr "" -#: gnu/packages/linux.scm:5480 +#: gnu/packages/linux.scm:5524 msgid "" "The GPM (general-purpose mouse) daemon is a mouse server for\n" "applications running on the Linux console. It allows users to select items\n" "and copy/paste text in the console and in xterm." msgstr "" -#: gnu/packages/linux.scm:5551 +#: gnu/packages/linux.scm:5595 msgid "" "Btrfs is a @dfn{copy-on-write} (CoW) file system for Linux\n" "aimed at implementing advanced features while focusing on fault tolerance,\n" "repair and easy administration." msgstr "" -#: gnu/packages/linux.scm:5585 +#: gnu/packages/linux.scm:5629 msgid "" "This package provides the statically-linked @command{btrfs}\n" "from the btrfs-progs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5617 +#: gnu/packages/linux.scm:5661 msgid "" "Cramfs is a Linux file system designed to be simple, small,\n" "and to compress things well. It is used on a number of embedded systems and\n" @@ -9482,7 +9605,7 @@ msgid "" "blocks and random block placement." msgstr "" -#: gnu/packages/linux.scm:5652 +#: gnu/packages/linux.scm:5696 msgid "" "@command{compsize} takes a list of files (given as\n" "arguments) on a Btrfs file system and measures used compression types and\n" @@ -9499,20 +9622,20 @@ msgid "" "obviously it can be shared with files outside our set)." msgstr "" -#: gnu/packages/linux.scm:5700 +#: gnu/packages/linux.scm:5744 msgid "" "F2FS, the Flash-Friendly File System, is a modern file system\n" "designed to be fast and durable on flash devices such as solid-state\n" "disks and SD cards. This package provides the userland utilities." msgstr "" -#: gnu/packages/linux.scm:5790 +#: gnu/packages/linux.scm:5834 msgid "" "This package provides statically-linked fsck.f2fs command taken\n" "from the f2fs-tools package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5821 +#: gnu/packages/linux.scm:5865 msgid "" "Prevents shock damage to the internal spinning hard drive(s) of some\n" "HP and Dell laptops. When sudden movement is detected, all input/output\n" @@ -9522,7 +9645,7 @@ msgid "" "feature, and a laptop with an accelerometer. It has no effect on SSDs." msgstr "" -#: gnu/packages/linux.scm:5879 +#: gnu/packages/linux.scm:5923 msgid "" "Thinkfan is a simple fan control program. It reads temperatures,\n" "checks them against configured limits and switches to appropriate (also\n" @@ -9531,7 +9654,7 @@ msgid "" "from userspace." msgstr "" -#: gnu/packages/linux.scm:5935 +#: gnu/packages/linux.scm:5979 msgid "" "Tpacpi-bat is a command-line interface to control battery charging on\n" "@uref{https://github.com/teleshoes/tpacpi-bat/wiki/Supported-Hardware, Lenovo\n" @@ -9546,7 +9669,7 @@ msgid "" "supported." msgstr "" -#: gnu/packages/linux.scm:5979 +#: gnu/packages/linux.scm:6023 msgid "" "Tmon is a tool to interact with the complex thermal subsystem of the\n" "kernel Linux. It helps visualize thermal relationships and real-time thermal\n" @@ -9563,7 +9686,7 @@ msgid "" "by hand is no trivial task: @command{tmon} aims to make it understandable." msgstr "" -#: gnu/packages/linux.scm:6021 +#: gnu/packages/linux.scm:6065 msgid "" "Turbostat reports x86 processor topology, frequency, idle power state\n" "statistics, temperature, and power consumption. Some information is unavailable\n" @@ -9578,20 +9701,20 @@ msgid "" "invocations of itself." msgstr "" -#: gnu/packages/linux.scm:6080 +#: gnu/packages/linux.scm:6124 msgid "" "NTFS-3G provides read-write access to NTFS file systems, which are\n" "commonly found on Microsoft Windows. It is implemented as a FUSE file system.\n" "The package provides additional NTFS tools." msgstr "" -#: gnu/packages/linux.scm:6127 +#: gnu/packages/linux.scm:6171 msgid "" "This package provides a statically linked @command{ntfsfix} taken\n" "from the ntfs-3g package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:6174 +#: gnu/packages/linux.scm:6218 msgid "" "This package provides userspace components for the InfiniBand\n" "subsystem of the Linux kernel. Specifically it contains userspace\n" @@ -9611,7 +9734,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6228 +#: gnu/packages/linux.scm:6272 msgid "" "This is a collection of tests written over uverbs intended for\n" "use as a performance micro-benchmark. The tests may be used for hardware or\n" @@ -9627,20 +9750,20 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6270 +#: gnu/packages/linux.scm:6314 msgid "" "Monitor a hardware random number generator, and supply entropy\n" "from that to the system kernel's @file{/dev/random} machinery." msgstr "" -#: gnu/packages/linux.scm:6312 +#: gnu/packages/linux.scm:6356 msgid "" "cpupower is a set of user-space tools that use the cpufreq feature of the\n" "Linux kernel to retrieve and control processor features related to power saving,\n" "such as frequency and voltage scaling." msgstr "" -#: gnu/packages/linux.scm:6344 +#: gnu/packages/linux.scm:6388 msgid "" "@command{x86_energy_perf_policy} displays and updates energy-performance\n" "policy settings specific to Intel Architecture Processors. Settings are\n" @@ -9648,7 +9771,7 @@ msgid "" "cpufreq sub-system is enabled or not." msgstr "" -#: gnu/packages/linux.scm:6370 +#: gnu/packages/linux.scm:6414 msgid "" "haveged generates an unpredictable stream of random numbers for use by\n" "Linux's @file{/dev/random} and @file{/dev/urandom} devices. The kernel's\n" @@ -9666,7 +9789,7 @@ msgid "" "not as a replacement for it." msgstr "" -#: gnu/packages/linux.scm:6456 +#: gnu/packages/linux.scm:6500 msgid "" "eCryptfs is a POSIX-compliant stacked cryptographic file system for Linux.\n" "Each file's cryptographic meta-data is stored inside the file itself, along\n" @@ -9676,7 +9799,7 @@ msgid "" "2.6.19. This package contains the userland utilities to manage it." msgstr "" -#: gnu/packages/linux.scm:6488 +#: gnu/packages/linux.scm:6532 msgid "" "Libnfsidmap is a library holding mulitiple methods of\n" "mapping names to ids and visa versa, mainly for NFSv4. It provides an\n" @@ -9684,13 +9807,13 @@ msgid "" "the default @code{nsswitch} and the experimental @code{umich_ldap}." msgstr "" -#: gnu/packages/linux.scm:6524 +#: gnu/packages/linux.scm:6568 msgid "" "Tools for loading and managing Linux kernel modules, such as\n" "@code{modprobe}, @code{insmod}, @code{lsmod}, and more." msgstr "" -#: gnu/packages/linux.scm:6565 +#: gnu/packages/linux.scm:6609 msgid "" "The mcelog daemon logs memory, I/O, CPU, and other hardware errors on x86\n" "systems running the kernel Linux. It can also perform user-defined tasks, such\n" @@ -9698,13 +9821,13 @@ msgid "" "exceeded." msgstr "" -#: gnu/packages/linux.scm:6596 +#: gnu/packages/linux.scm:6640 msgid "" "This package provides utilities for testing, partitioning, etc\n" "of flash storage." msgstr "" -#: gnu/packages/linux.scm:6628 +#: gnu/packages/linux.scm:6672 msgid "" "The libseccomp library provides an easy to use, platform\n" "independent, interface to the Linux Kernel's syscall filtering mechanism. The\n" @@ -9714,7 +9837,7 @@ msgid "" "developers." msgstr "" -#: gnu/packages/linux.scm:6671 +#: gnu/packages/linux.scm:6715 msgid "" "RadeonTop monitors resource consumption on supported AMD\n" "Radeon Graphics Processing Units (GPUs), either in real time as bar graphs on\n" @@ -9724,13 +9847,13 @@ msgid "" "under OpenGL graphics workloads." msgstr "" -#: gnu/packages/linux.scm:6718 +#: gnu/packages/linux.scm:6762 msgid "" "This package provides a library and a command line\n" "interface to the variable facility of UEFI boot firmware." msgstr "" -#: gnu/packages/linux.scm:6755 +#: gnu/packages/linux.scm:6799 msgid "" "@code{efibootmgr} is a user-space application to modify the Intel\n" "Extensible Firmware Interface (EFI) Boot Manager. This application can\n" @@ -9738,7 +9861,7 @@ msgid "" "running boot option, and more." msgstr "" -#: gnu/packages/linux.scm:6791 +#: gnu/packages/linux.scm:6835 msgid "" "The sysstat utilities are a collection of performance\n" "monitoring tools for Linux. These include @code{mpstat}, @code{iostat},\n" @@ -9746,7 +9869,7 @@ msgid "" "@code{sadf} and @code{sa}." msgstr "" -#: gnu/packages/linux.scm:6832 +#: gnu/packages/linux.scm:6876 msgid "" "Light is a program to send commands to screen backlight controllers\n" "under GNU/Linux. Features include:\n" @@ -9760,7 +9883,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/linux.scm:6880 +#: gnu/packages/linux.scm:6924 msgid "" "This program allows you read and control device brightness. Devices\n" "include backlight and LEDs. It can also preserve current brightness before\n" @@ -9770,7 +9893,7 @@ msgid "" "interface in sysfs, which can be accomplished with the included udev rules." msgstr "" -#: gnu/packages/linux.scm:7007 +#: gnu/packages/linux.scm:7048 msgid "" "TLP is a power management tool for Linux. It comes with\n" "a default configuration already optimized for battery life. Nevertheless,\n" @@ -9778,7 +9901,7 @@ msgid "" "every time the power supply source is changed." msgstr "" -#: gnu/packages/linux.scm:7073 +#: gnu/packages/linux.scm:7114 msgid "" "The Python scripts in this project generate a GTK-UI to change\n" "TLP configuration files easily. It aims to protect users from setting\n" @@ -9786,7 +9909,7 @@ msgid "" "configuration values." msgstr "" -#: gnu/packages/linux.scm:7099 +#: gnu/packages/linux.scm:7140 msgid "" "@command{lshw} (Hardware Lister) is a small tool to provide\n" "detailed information on the hardware configuration of the machine.\n" @@ -9796,7 +9919,7 @@ msgid "" "machines (PowerMac G4 is known to work)." msgstr "" -#: gnu/packages/linux.scm:7123 +#: gnu/packages/linux.scm:7164 msgid "" "Libmnl is a minimalistic user-space library oriented to\n" "Netlink developers. There are a lot of common tasks in parsing, validating,\n" @@ -9805,7 +9928,7 @@ msgid "" "re-use code and to avoid re-inventing the wheel." msgstr "" -#: gnu/packages/linux.scm:7148 +#: gnu/packages/linux.scm:7189 msgid "" "Libnftnl is a userspace library providing a low-level netlink\n" "programming interface to the in-kernel nf_tables subsystem. The library\n" @@ -9813,7 +9936,7 @@ msgid "" "used by nftables." msgstr "" -#: gnu/packages/linux.scm:7194 +#: gnu/packages/linux.scm:7235 msgid "" "nftables is the project that aims to replace the existing\n" "{ip,ip6,arp,eb}tables framework. Basically, this project provides a new packet\n" @@ -9823,7 +9946,7 @@ msgid "" "userspace queueing component and the logging subsystem." msgstr "" -#: gnu/packages/linux.scm:7336 +#: gnu/packages/linux.scm:7377 msgid "" "PRoot is a user-space implementation of @code{chroot}, @code{mount --bind},\n" "and @code{binfmt_misc}. This means that users don't need any privileges or\n" @@ -9836,7 +9959,7 @@ msgid "" "available in the kernel Linux." msgstr "" -#: gnu/packages/linux.scm:7399 +#: gnu/packages/linux.scm:7437 msgid "" "cpuid dumps detailed information about the CPU(s) gathered\n" "from the CPUID instruction, and also determines the exact model of CPU(s). It\n" @@ -9844,14 +9967,14 @@ msgid "" "NexGen, Rise, and SiS CPUs." msgstr "" -#: gnu/packages/linux.scm:7426 +#: gnu/packages/linux.scm:7464 msgid "" "jmtpfs uses FUSE (file system in userspace) to provide access\n" "to data over the Media Transfer Protocol (MTP). Unprivileged users can mount\n" "the MTP device as a file system." msgstr "" -#: gnu/packages/linux.scm:7453 +#: gnu/packages/linux.scm:7491 msgid "" "Procenv is a command-line tool that displays as much detail about\n" "itself and its environment as possible. It can be used as a test\n" @@ -9859,7 +9982,7 @@ msgid "" "comparing system environments." msgstr "" -#: gnu/packages/linux.scm:7482 +#: gnu/packages/linux.scm:7520 msgid "" "OpenFabrics Interfaces (OFI) is a framework focused on exporting fabric\n" "communication services to applications. OFI is best described as a collection\n" @@ -9873,7 +9996,7 @@ msgid "" "libraries, which are often integrated directly into libfabric." msgstr "" -#: gnu/packages/linux.scm:7544 +#: gnu/packages/linux.scm:7582 msgid "" "The PSM Messaging API, or PSM API, is Intel's low-level user-level\n" "communications interface for the True Scale family of products. PSM users are\n" @@ -9881,14 +10004,14 @@ msgid "" "interfaces in parallel environments." msgstr "" -#: gnu/packages/linux.scm:7587 +#: gnu/packages/linux.scm:7625 msgid "" "snapscreenshot saves a screenshot of one or more Linux text consoles as a\n" "Targa (@dfn{.tga}) image. It can be used by anyone with read access to the\n" "relevant @file{/dev/vcs*} file(s)." msgstr "" -#: gnu/packages/linux.scm:7641 +#: gnu/packages/linux.scm:7679 msgid "" "fbcat saves the contents of the Linux framebuffer (@file{/dev/fb*}), or\n" "a dump therof. It supports a wide range of drivers and pixel formats.\n" @@ -9900,14 +10023,14 @@ msgid "" "emulates the behaviour of Gunnar Monell's older fbgrab utility." msgstr "" -#: gnu/packages/linux.scm:7672 +#: gnu/packages/linux.scm:7710 msgid "" "Control groups is Linux kernel method for process resource\n" "restriction, permission handling and more. This package provides userspace\n" "interface to this kernel feature." msgstr "" -#: gnu/packages/linux.scm:7707 +#: gnu/packages/linux.scm:7745 msgid "" "mbpfan is a fan control daemon for Apple Macbooks. It uses input from\n" "the @code{coretemp} module and sets the fan speed using the @code{applesmc}\n" @@ -9915,7 +10038,7 @@ msgid "" "privileges." msgstr "" -#: gnu/packages/linux.scm:7751 +#: gnu/packages/linux.scm:7789 msgid "" "This package is low-level user-level Intel's communications interface.\n" "The PSM2 API is a high-performance vendor-specific protocol that provides a\n" @@ -9923,7 +10046,7 @@ msgid "" "high-speed networking devices." msgstr "" -#: gnu/packages/linux.scm:7794 +#: gnu/packages/linux.scm:7832 msgid "" "This package provides a library called libpfm4, which is used to develop\n" "monitoring tools exploiting the performance monitoring events such as those\n" @@ -9938,7 +10061,7 @@ msgid "" "introduced in Linux 2.6.31." msgstr "" -#: gnu/packages/linux.scm:7824 +#: gnu/packages/linux.scm:7862 msgid "" "@code{libnfnetlink} is the low-level library for netfilter related\n" "kernel/userspace communication. It provides a generic messaging\n" @@ -9947,7 +10070,7 @@ msgid "" "management tools in userspace." msgstr "" -#: gnu/packages/linux.scm:7851 +#: gnu/packages/linux.scm:7889 msgid "" "The netlink package provides a simple netlink library for\n" "Go. Netlink is the interface a user-space program in Linux uses to\n" @@ -9955,7 +10078,7 @@ msgid "" "IP addresses and routes, and configure IPsec." msgstr "" -#: gnu/packages/linux.scm:7891 +#: gnu/packages/linux.scm:7929 msgid "" "The inih (INI Not Invented Here) library is a simple .INI file\n" "parser written in C. It's only a couple of pages of code, and it was designed to\n" @@ -9964,19 +10087,19 @@ msgid "" "822-style multi-line syntax and name: value entries." msgstr "" -#: gnu/packages/linux.scm:7942 +#: gnu/packages/linux.scm:7980 msgid "" "This package provides commands to create and check XFS\n" "file systems." msgstr "" -#: gnu/packages/linux.scm:7998 +#: gnu/packages/linux.scm:8036 msgid "" "This package provides a statically linked @command{xfs_repair} taken\n" "from the xfsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:8034 +#: gnu/packages/linux.scm:8072 msgid "" "This package provides a program to generate an ext2\n" "file system as a normal (non-root) user. It does not require you to mount\n" @@ -9984,7 +10107,7 @@ msgid "" "the superuser to make device nodes." msgstr "" -#: gnu/packages/linux.scm:8129 +#: gnu/packages/linux.scm:8167 msgid "" "@command{fakeroot} runs a command in an environment where it appears to\n" "have root privileges for file manipulation. This is useful for allowing users\n" @@ -9997,7 +10120,7 @@ msgid "" "without using the archiver." msgstr "" -#: gnu/packages/linux.scm:8169 +#: gnu/packages/linux.scm:8207 msgid "" "@command{fakechroot} runs a command in an environment were is additional\n" "possibility to use @code{chroot} command without root privileges. This is\n" @@ -10008,13 +10131,13 @@ msgid "" "set as @code{LD_PRELOAD} to override the C library file system functions." msgstr "" -#: gnu/packages/linux.scm:8215 +#: gnu/packages/linux.scm:8253 msgid "" "inputattach dispatches input events from several device\n" "types and interfaces and translates so that the X server can use them." msgstr "" -#: gnu/packages/linux.scm:8251 +#: gnu/packages/linux.scm:8289 msgid "" "PipeWire is a project that aims to greatly improve handling of audio and\n" "video under Linux. It aims to support the usecases currently handled by both\n" @@ -10026,7 +10149,7 @@ msgid "" "of Linux application development." msgstr "" -#: gnu/packages/linux.scm:8318 +#: gnu/packages/linux.scm:8356 msgid "" "WirePlumber is a modular session / policy manager for\n" "PipeWire and a GObject-based high-level library that wraps PipeWire's API,\n" @@ -10034,7 +10157,7 @@ msgid "" "tools for managing PipeWire." msgstr "" -#: gnu/packages/linux.scm:8357 +#: gnu/packages/linux.scm:8395 msgid "" "The Embedded Linux* Library (ELL) provides core, low-level\n" "functionality for system daemons. It typically has no dependencies other than\n" @@ -10043,7 +10166,7 @@ msgid "" "platforms, it is not limited to resource-constrained systems." msgstr "" -#: gnu/packages/linux.scm:8386 +#: gnu/packages/linux.scm:8424 msgid "" "This package provides the @code{kexec} program and ancillary\n" "utilities. Using @code{kexec}, it is possible to boot directly into a new\n" @@ -10051,7 +10174,7 @@ msgid "" "system boot process." msgstr "" -#: gnu/packages/linux.scm:8419 +#: gnu/packages/linux.scm:8457 msgid "" "@code{cachefilesd} is a userspace daemon that manages the\n" "cache data store that is used by network file systems such as @code{AFS} and\n" @@ -10059,14 +10182,14 @@ msgid "" "persistent over reboots." msgstr "" -#: gnu/packages/linux.scm:8463 +#: gnu/packages/linux.scm:8501 msgid "" "Libbpf supports building BPF CO-RE-enabled applications, which, in\n" "contrast to BCC, do not require the Clang/LLVM runtime or linux kernel\n" "headers." msgstr "" -#: gnu/packages/linux.scm:8541 +#: gnu/packages/linux.scm:8579 msgid "" "BCC is a toolkit for creating efficient kernel tracing and manipulation\n" "programs, and includes several useful tools and examples. It makes use of\n" @@ -10075,7 +10198,7 @@ msgid "" "and above." msgstr "" -#: gnu/packages/linux.scm:8577 +#: gnu/packages/linux.scm:8615 msgid "" "bpftrace is a high-level tracing language for Linux enhanced Berkeley\n" "Packet Filter (eBPF) available in recent Linux kernels (4.x). bpftrace uses\n" @@ -10087,14 +10210,14 @@ msgid "" "created by Alastair Robertson." msgstr "" -#: gnu/packages/linux.scm:8609 +#: gnu/packages/linux.scm:8647 msgid "" "This package provides a Linux kernel module that will\n" "provide a serial device @code{/dev/ttyebus} with almost no latency upon\n" "receiving. It is dedicated to the PL011 UART of the Raspberry Pi." msgstr "" -#: gnu/packages/linux.scm:8635 +#: gnu/packages/linux.scm:8673 msgid "" "IP sets are a framework inside the Linux 2.4.x and 2.6.x kernel which\n" "can be administered by the ipset utility. Depending on the type,\n" @@ -10115,7 +10238,7 @@ msgid "" "then IP sets may be the proper tool for you." msgstr "" -#: gnu/packages/linux.scm:8682 +#: gnu/packages/linux.scm:8720 msgid "" "This is the io_uring library, liburing. liburing provides\n" "helpers to setup and teardown io_uring instances, and also a simplified\n" @@ -10123,14 +10246,14 @@ msgid "" "kernel side implementation." msgstr "" -#: gnu/packages/linux.scm:8710 +#: gnu/packages/linux.scm:8748 msgid "" "@acronym{EROFS, The Enhanced Read-Only File System} is a compressed,\n" "read-only file system optimized for resource-scarce devices. This package\n" "provides user-space tools for creating EROFS file systems." msgstr "" -#: gnu/packages/linux.scm:8754 +#: gnu/packages/linux.scm:8792 msgid "" "The @code{rasdaemon} daemon monitors platform @acronym{RAS, Reliability\n" "Availability and Serviceability} reports from Linux kernel trace events.\n" @@ -10138,7 +10261,7 @@ msgid "" "through standard log mechanisms like syslog." msgstr "" -#: gnu/packages/linux.scm:8788 +#: gnu/packages/linux.scm:8826 msgid "" "This package provides a C library with C++/Python bindings and\n" "command-line tools for interacting with GPIO devices that avoids the usage of\n" @@ -10164,33 +10287,33 @@ msgid "" "beginning." msgstr "" -#: gnu/packages/messaging.scm:181 +#: gnu/packages/messaging.scm:183 msgid "" "OMEMO-wget is a tool to handle cryptographic URLs, generated\n" "by @acronym{OMEMO, OMEMO Multi-End Message and Object Encryption}, during\n" "XMPP-based sessions." msgstr "" -#: gnu/packages/messaging.scm:237 +#: gnu/packages/messaging.scm:239 msgid "" "Psi is a capable XMPP client aimed at experienced users.\n" "Its design goals are simplicity and stability." msgstr "" -#: gnu/packages/messaging.scm:295 +#: gnu/packages/messaging.scm:297 msgid "" "GNT is an ncurses toolkit for creating text-mode graphical\n" "user interfaces in a fast and easy way. It is based on GLib and ncurses." msgstr "" -#: gnu/packages/messaging.scm:346 +#: gnu/packages/messaging.scm:348 msgid "" "LibGadu is library for handling Gadu-Gadu instant messenger\n" "protocol. The library is written in C and aims to be operating system and\n" "environment independent." msgstr "" -#: gnu/packages/messaging.scm:381 +#: gnu/packages/messaging.scm:383 msgid "" "SILC (Secure Internet Live Conferencing) is a modern and secure\n" "conferencing protocol. It provides all the common conferencing services like\n" @@ -10198,14 +10321,14 @@ msgid "" "conferencing." msgstr "" -#: gnu/packages/messaging.scm:427 +#: gnu/packages/messaging.scm:429 msgid "" "QXmpp is a XMPP client and server library written in C++ and uses the Qt\n" "framework. It builds XMPP clients complying with the XMPP Compliance Suites\n" "2021 for IM and Advanced Mobile." msgstr "" -#: gnu/packages/messaging.scm:454 +#: gnu/packages/messaging.scm:456 msgid "" "Meanwhile is a library for connecting to a LIM (Lotus Instant\n" "Messaging, formerly Lotus Sametime, formerly VPBuddy) community. It uses a\n" @@ -10213,7 +10336,7 @@ msgid "" "TCP sessions from existing clients." msgstr "" -#: gnu/packages/messaging.scm:500 +#: gnu/packages/messaging.scm:502 msgid "" "Poezio is a free console XMPP client (the protocol on which\n" "the Jabber IM network is built).\n" @@ -10226,7 +10349,7 @@ msgid "" "powerful, standard and open protocol." msgstr "" -#: gnu/packages/messaging.scm:533 +#: gnu/packages/messaging.scm:535 msgid "" "OTR allows you to have private conversations over instant\n" "messaging by providing: (1) Encryption: No one else can read your instant\n" @@ -10239,7 +10362,7 @@ msgid "" "your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:572 +#: gnu/packages/messaging.scm:574 msgid "" "libsignal-protocol-c is an implementation of a ratcheting\n" "forward secrecy protocol that works in synchronous and asynchronous\n" @@ -10247,20 +10370,20 @@ msgid "" "end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:609 +#: gnu/packages/messaging.scm:611 msgid "" "This is a client library for @code{libsignal-protocol-c}.\n" "It implements the necessary interfaces using @code{libgcrypt} and\n" "@code{sqlite}." msgstr "" -#: gnu/packages/messaging.scm:641 +#: gnu/packages/messaging.scm:643 msgid "" "This library implements @acronym{OMEMO, OMEMO Multi-End\n" "Message and Object Encryption} of XMPP (XEP-0384) in C." msgstr "" -#: gnu/packages/messaging.scm:681 +#: gnu/packages/messaging.scm:683 msgid "" "BitlBee brings IM (instant messaging) to IRC clients, for\n" "people who have an IRC client running all the time and don't want to run an\n" @@ -10270,20 +10393,20 @@ msgid "" "identi.ca and status.net)." msgstr "" -#: gnu/packages/messaging.scm:748 +#: gnu/packages/messaging.scm:750 msgid "" "Bitlbee-discord is a plugin for Bitlbee which provides\n" "access to servers running the Discord protocol." msgstr "" -#: gnu/packages/messaging.scm:794 +#: gnu/packages/messaging.scm:796 msgid "" "Purple-Mattermost is a plug-in for Purple, the instant messaging library\n" "used by Pidgin and Bitlbee, among others, to access\n" "@uref{https://mattermost.com/, Mattermost} servers." msgstr "" -#: gnu/packages/messaging.scm:852 +#: gnu/packages/messaging.scm:854 msgid "" "HexChat lets you connect to multiple IRC networks at once. The main\n" "window shows the list of currently connected networks and their channels, the\n" @@ -10292,7 +10415,7 @@ msgid "" "dictionaries. HexChat can be extended with multiple addons." msgstr "" -#: gnu/packages/messaging.scm:917 +#: gnu/packages/messaging.scm:919 msgid "" "ngIRCd is a lightweight @dfn{Internet Relay Chat} (IRC) server for small\n" "or private networks. It is easy to configure, can cope with dynamic IP\n" @@ -10300,13 +10423,13 @@ msgid "" "authentication." msgstr "" -#: gnu/packages/messaging.scm:1024 +#: gnu/packages/messaging.scm:1026 msgid "" "Pidgin is a modular instant messaging client that supports\n" "many popular chat protocols." msgstr "" -#: gnu/packages/messaging.scm:1064 +#: gnu/packages/messaging.scm:1066 msgid "" "Pidgin-OTR is a plugin that adds support for OTR to the Pidgin\n" "instant messaging client. OTR (Off-the-Record) Messaging allows you to have\n" @@ -10320,7 +10443,7 @@ msgid "" "control of your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:1118 +#: gnu/packages/messaging.scm:1120 msgid "" "ZNC is an @dfn{IRC network bouncer} or @dfn{BNC}. It can\n" "detach the client from the actual IRC server, and also from selected channels.\n" @@ -10328,41 +10451,41 @@ msgid "" "simultaneously and therefore appear under the same nickname on IRC." msgstr "" -#: gnu/packages/messaging.scm:1147 +#: gnu/packages/messaging.scm:1149 msgid "" "Python-nbxmpp is a Python library that provides a way for\n" "Python applications to use the XMPP network. This library was initially a fork\n" "of xmpppy." msgstr "" -#: gnu/packages/messaging.scm:1274 +#: gnu/packages/messaging.scm:1276 msgid "" "Gajim aims to be an easy to use and fully-featured XMPP chat\n" "client. It is extensible via plugins, supports end-to-end encryption (OMEMO\n" "and OpenPGP) and available in 29 languages." msgstr "" -#: gnu/packages/messaging.scm:1309 +#: gnu/packages/messaging.scm:1311 msgid "" "Gajim-OMEMO is a plugin that adds support for the OMEMO\n" "Encryption to Gajim. OMEMO is an XMPP Extension Protocol (XEP) for secure\n" "multi-client end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:1344 +#: gnu/packages/messaging.scm:1346 msgid "" "Gajim-OpenPGP is a plugin that adds support for the OpenPGP\n" "Encryption to Gajim." msgstr "" -#: gnu/packages/messaging.scm:1418 +#: gnu/packages/messaging.scm:1420 msgid "" "Dino is a chat client for the desktop. It focuses on providing\n" "a minimal yet reliable Jabber/XMPP experience and having encryption enabled by\n" "default." msgstr "" -#: gnu/packages/messaging.scm:1505 +#: gnu/packages/messaging.scm:1507 msgid "" "Prosody is a modern XMPP communication server. It aims to\n" "be easy to set up and configure, and efficient with system resources.\n" @@ -10371,43 +10494,43 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/messaging.scm:1540 +#: gnu/packages/messaging.scm:1542 msgid "" "This module implements XEP-0363: it allows clients to\n" "upload files over HTTP." msgstr "" -#: gnu/packages/messaging.scm:1572 +#: gnu/packages/messaging.scm:1574 msgid "" "This module implements XEP-0198: when supported by both\n" "the client and server, it can allow clients to resume a disconnected session,\n" "and prevent message loss." msgstr "" -#: gnu/packages/messaging.scm:1601 +#: gnu/packages/messaging.scm:1603 msgid "C library implementation of the Tox encrypted messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1633 +#: gnu/packages/messaging.scm:1635 msgid "" "Official fork of the C library implementation of the Tox encrypted\n" "messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1687 +#: gnu/packages/messaging.scm:1689 msgid "" "uTox is a lightweight Tox client. Tox is a distributed and secure\n" "instant messenger with audio and video chat capabilities." msgstr "" -#: gnu/packages/messaging.scm:1750 +#: gnu/packages/messaging.scm:1752 msgid "" "qTox is a Tox client that follows the Tox design\n" "guidelines. It provides an easy to use application that allows you to\n" "connect with friends and family without anyone else listening in." msgstr "" -#: gnu/packages/messaging.scm:1772 +#: gnu/packages/messaging.scm:1774 msgid "" "Ytalk is a replacement for the BSD talk program. Its main\n" "advantage is the ability to communicate with any arbitrary number of users at\n" @@ -10415,7 +10538,7 @@ msgid "" "with several different talk daemons at the same time." msgstr "" -#: gnu/packages/messaging.scm:1796 +#: gnu/packages/messaging.scm:1798 msgid "" "gloox is a full-featured Jabber/XMPP client library,\n" "written in ANSI C++. It makes writing spec-compliant clients easy\n" @@ -10423,7 +10546,7 @@ msgid "" "into existing applications." msgstr "" -#: gnu/packages/messaging.scm:1866 +#: gnu/packages/messaging.scm:1868 msgid "" "@code{Net::PSYC} with support for TCP, UDP, Event.pm, @code{IO::Select} and\n" "Gtk2 event loops. This package includes 12 applications and additional scripts:\n" @@ -10431,14 +10554,14 @@ msgid "" "for @uref{https://torproject.org,tor} router) and many more." msgstr "" -#: gnu/packages/messaging.scm:1907 +#: gnu/packages/messaging.scm:1909 msgid "" "@code{libpsyc} is a PSYC library in C which implements\n" "core aspects of PSYC, useful for all kinds of clients and servers\n" "including psyced." msgstr "" -#: gnu/packages/messaging.scm:1949 +#: gnu/packages/messaging.scm:1951 msgid "" "Loudmouth is a lightweight and easy-to-use C library for programming\n" "with the XMPP (formerly known as Jabber) protocol. It is designed to be\n" @@ -10446,7 +10569,7 @@ msgid "" "protocol allows." msgstr "" -#: gnu/packages/messaging.scm:1991 +#: gnu/packages/messaging.scm:1993 msgid "" "Mcabber is a small XMPP (Jabber) console client, which includes features\n" "such as SASL and TLS support, @dfn{Multi-User Chat} (MUC) support, logging,\n" @@ -10454,7 +10577,7 @@ msgid "" "support, and more." msgstr "" -#: gnu/packages/messaging.scm:2039 +#: gnu/packages/messaging.scm:2041 msgid "" "GNU Freetalk is a command-line Jabber/XMPP chat client. It notably uses\n" "the Readline library to handle input, so it features convenient navigation of\n" @@ -10462,27 +10585,27 @@ msgid "" "is also scriptable and extensible via Guile." msgstr "" -#: gnu/packages/messaging.scm:2074 +#: gnu/packages/messaging.scm:2076 msgid "" "Libmesode is a fork of libstrophe for use with Profanity\n" "XMPP Client. In particular, libmesode provides extra TLS functionality such as\n" "manual SSL certificate verification." msgstr "" -#: gnu/packages/messaging.scm:2109 +#: gnu/packages/messaging.scm:2111 msgid "" "Libstrophe is a minimal XMPP library written in C. It has\n" "almost no external dependencies, only an XML parsing library (expat or libxml\n" "are both supported)." msgstr "" -#: gnu/packages/messaging.scm:2167 +#: gnu/packages/messaging.scm:2169 msgid "" "Profanity is a console based XMPP client written in C\n" "using ncurses and libmesode, inspired by Irssi." msgstr "" -#: gnu/packages/messaging.scm:2197 +#: gnu/packages/messaging.scm:2199 msgid "" "Libircclient is a library which implements the client IRC\n" "protocol. It is designed to be small, fast, portable and compatible with the\n" @@ -10490,14 +10613,14 @@ msgid "" "building the IRC clients and bots." msgstr "" -#: gnu/packages/messaging.scm:2255 +#: gnu/packages/messaging.scm:2257 msgid "" "Toxic is a console-based instant messaging client, using\n" "c-toxcore and ncurses. It provides audio calls, sound and desktop\n" "notifications, and Python scripting support." msgstr "" -#: gnu/packages/messaging.scm:2281 +#: gnu/packages/messaging.scm:2283 msgid "" "libqmatrixclient is a Qt5 library to write clients for the\n" "Matrix instant messaging protocol. Quaternion is the reference client\n" @@ -10505,13 +10628,13 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2326 +#: gnu/packages/messaging.scm:2330 msgid "" "@code{mtxclient} is a C++ library that implements client API\n" "for the Matrix protocol. It is built on to of @code{Boost.Asio}." msgstr "" -#: gnu/packages/messaging.scm:2418 +#: gnu/packages/messaging.scm:2423 msgid "" "@code{Nheko} want to provide a native desktop app for the\n" "Matrix protocol that feels more like a mainstream chat app and less like an IRC\n" @@ -10521,7 +10644,7 @@ msgid "" "notification, emojis, E2E encryption, and voip calls." msgstr "" -#: gnu/packages/messaging.scm:2455 +#: gnu/packages/messaging.scm:2460 msgid "" "Quaternion is a Qt5 desktop client for the Matrix instant\n" "messaging protocol. It uses libqmatrixclient and is its reference client\n" @@ -10529,7 +10652,7 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2502 +#: gnu/packages/messaging.scm:2507 msgid "" "Hangups is an instant messaging client for Google Hangouts. It includes\n" "both a Python library and a reference client with a text-based user interface.\n" @@ -10539,7 +10662,7 @@ msgid "" "messaging that aren’t available to clients that connect over XMPP." msgstr "" -#: gnu/packages/messaging.scm:2584 +#: gnu/packages/messaging.scm:2589 msgid "" "Telegram-purple is a plugin for Libpurple, the communication library\n" "used by the Pidgin instant messaging client, that adds support for the\n" @@ -10549,7 +10672,7 @@ msgid "" "replacement." msgstr "" -#: gnu/packages/messaging.scm:2629 +#: gnu/packages/messaging.scm:2632 msgid "" "Tdlib is a cross-platform library for creating custom\n" "Telegram clients following the official Telegram API. It can be easily used\n" @@ -10557,11 +10680,11 @@ msgid "" "support for high performance Telegram Bot creation." msgstr "" -#: gnu/packages/messaging.scm:2667 +#: gnu/packages/messaging.scm:2670 msgid "Plugin for libpurple to allow sending SMS using ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2712 +#: gnu/packages/messaging.scm:2715 msgid "" "Purple-lurch plugin adds end-to-end encryption support\n" "through the Double Ratchet (Axolotl) algorithm, to @code{libpurple}\n" @@ -10572,19 +10695,19 @@ msgid "" "asynchronicity." msgstr "" -#: gnu/packages/messaging.scm:2748 +#: gnu/packages/messaging.scm:2751 msgid "" "This package provides a C++ library for parsing, formatting, and\n" "validating international phone numbers." msgstr "" -#: gnu/packages/messaging.scm:2793 +#: gnu/packages/messaging.scm:2796 msgid "" "Chatty is a chat program for XMPP and SMS. It works on mobile\n" "as well as on desktop platforms. It's based on libpurple and ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2814 +#: gnu/packages/messaging.scm:2817 msgid "" "This package provides Eclipse Mosquitto, a message broker\n" "that implements the MQTT protocol versions 5.0, 3.1.1 and 3.1. Mosquitto\n" @@ -10597,27 +10720,27 @@ msgid "" "as phones, embedded computers or microcontrollers." msgstr "" -#: gnu/packages/messaging.scm:2864 +#: gnu/packages/messaging.scm:2867 msgid "" "Movim-Desktop is a desktop application, relying on Qt, for the Movim\n" "social and chat platform." msgstr "" -#: gnu/packages/messaging.scm:2999 +#: gnu/packages/messaging.scm:3002 msgid "" "Psi+ is a spin-off of Psi XMPP client. It is a powerful XMPP client\n" "designed for experienced users." msgstr "" -#: gnu/packages/messaging.scm:3039 +#: gnu/packages/messaging.scm:3042 msgid "This package provides Python bindings to Zulip's API." msgstr "" -#: gnu/packages/messaging.scm:3088 +#: gnu/packages/messaging.scm:3091 msgid "This package contains Zulip's official terminal client." msgstr "" -#: gnu/packages/messaging.scm:3110 +#: gnu/packages/messaging.scm:3113 msgid "" "Relays messages between different channels from various\n" "messaging networks and protocols. So far it supports mattermost, IRC, gitter,\n" @@ -10626,20 +10749,20 @@ msgid "" "API. Mattermost is not required." msgstr "" -#: gnu/packages/messaging.scm:3143 +#: gnu/packages/messaging.scm:3146 msgid "" "@command{pounce} is a multi-client, TLS-only IRC bouncer. It maintains\n" "a persistent connection to an IRC server, acting as a proxy and buffer for\n" "a number of clients." msgstr "" -#: gnu/packages/messaging.scm:3209 +#: gnu/packages/messaging.scm:3212 msgid "" "@code{weechat-matrix} is a Python plugin for Weechat that lets\n" "Weechat communicate over the Matrix protocol." msgstr "" -#: gnu/packages/messaging.scm:3256 +#: gnu/packages/messaging.scm:3259 msgid "" "@code{weechat-wee-slack} is a WeeChat native client for\n" "Slack. It provides supplemental features only available in the web/mobile\n" @@ -10748,14 +10871,14 @@ msgid "" "themselves." msgstr "" -#: gnu/packages/networking.scm:174 +#: gnu/packages/networking.scm:176 msgid "" "UsrSCTP is a portable SCTP userland stack. SCTP is a message\n" "oriented, reliable transport protocol with direct support for multihoming that\n" "runs on top of IP or UDP, and supports both v4 and v6 versions." msgstr "" -#: gnu/packages/networking.scm:199 +#: gnu/packages/networking.scm:201 msgid "" "Axel tries to accelerate the download process by using multiple\n" "connections per file, and can also balance the load between different\n" @@ -10764,38 +10887,38 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/networking.scm:264 +#: gnu/packages/networking.scm:266 msgid "" "LibCamera is a complex camera support library for GNU+Linux,\n" "Android, and ChromeOS." msgstr "" -#: gnu/packages/networking.scm:334 +#: gnu/packages/networking.scm:336 msgid "" "LibNice is a library that implements the Interactive\n" "Connectivity Establishment (ICE) standard (RFC 5245 & RFC 8445). It provides a\n" "GLib-based library, libnice, as well as GStreamer elements to use it." msgstr "" -#: gnu/packages/networking.scm:393 +#: gnu/packages/networking.scm:395 msgid "" "RTMPdump is a toolkit for RTMP streams. All forms of RTMP are\n" "supported, including rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps://." msgstr "" -#: gnu/packages/networking.scm:422 +#: gnu/packages/networking.scm:424 msgid "" "Slurm is a network load monitor. It shows real-time traffic statistics\n" "from any network device in any of three ASCII graph formats." msgstr "" -#: gnu/packages/networking.scm:457 +#: gnu/packages/networking.scm:459 msgid "" "SRT is a transport technology that optimizes streaming\n" "performance across unpredictable networks, such as the Internet." msgstr "" -#: gnu/packages/networking.scm:500 +#: gnu/packages/networking.scm:502 msgid "" "The lksctp-tools project provides a user-space library for @acronym{SCTP,\n" "the Stream Control Transmission Protocol} (@file{libsctp}) and C language header\n" @@ -10804,13 +10927,13 @@ msgid "" "It also includes some SCTP-related helper utilities." msgstr "" -#: gnu/packages/networking.scm:541 +#: gnu/packages/networking.scm:543 msgid "" "@code{pysctp} implements the SCTP socket API. You need a\n" "SCTP-aware kernel (most are)." msgstr "" -#: gnu/packages/networking.scm:565 +#: gnu/packages/networking.scm:567 msgid "" "@command{knockd} is a port-knock daemon. It listens to all traffic on\n" "an ethernet or PPP interface, looking for special \"knock\" sequences of @dfn{port-hits}\n" @@ -10818,7 +10941,7 @@ msgid "" "at the link-layer level." msgstr "" -#: gnu/packages/networking.scm:605 +#: gnu/packages/networking.scm:607 msgid "" "NNG project is a rewrite of the scalability protocols library\n" "known as libnanomsg, and adds significant new capabilities, while retaining\n" @@ -10827,7 +10950,7 @@ msgid "" "publish/subscribe, RPC-style request/reply, or service discovery." msgstr "" -#: gnu/packages/networking.scm:648 +#: gnu/packages/networking.scm:650 msgid "" "Nanomsg is a socket library that provides several common\n" "communication patterns. It aims to make the networking layer fast, scalable,\n" @@ -10835,14 +10958,14 @@ msgid "" "systems with no further dependencies." msgstr "" -#: gnu/packages/networking.scm:758 +#: gnu/packages/networking.scm:760 msgid "" "Blueman is a Bluetooth management utility using the Bluez\n" "D-Bus backend. It is designed to be easy to use for most common Bluetooth\n" "tasks." msgstr "" -#: gnu/packages/networking.scm:783 +#: gnu/packages/networking.scm:785 msgid "" "GNU MAC Changer is a utility for viewing and changing MAC\n" "addresses of networking devices. New addresses may be set explicitly or\n" @@ -10850,14 +10973,14 @@ msgid "" "or, more generally, MAC addresses of the same category of hardware." msgstr "" -#: gnu/packages/networking.scm:831 +#: gnu/packages/networking.scm:833 msgid "" "Miredo is an implementation (client, relay, server) of the Teredo\n" "specification, which provides IPv6 Internet connectivity to IPv6 enabled hosts\n" "residing in IPv4-only networks, even when they are behind a NAT device." msgstr "" -#: gnu/packages/networking.scm:851 +#: gnu/packages/networking.scm:853 msgid "" "NDisc6 is a collection of tools for IPv6 networking diagnostics.\n" "It includes the following programs:\n" @@ -10871,7 +10994,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:904 +#: gnu/packages/networking.scm:906 msgid "" "@command{parprouted} is a daemon for transparent IP (Layer@tie{}3)\n" "proxy ARP bridging. Unlike standard bridging, proxy ARP bridging can bridge\n" @@ -10881,7 +11004,14 @@ msgid "" "useful for making transparent firewalls." msgstr "" -#: gnu/packages/networking.scm:931 +#: gnu/packages/networking.scm:945 +msgid "" +"@command{pproxy} is an asynchronuous proxy server implemented with\n" +"Python 3 @code{asyncio}. Among the supported protocols are HTTP, SOCKS\n" +"and SSH, and it can use both TCP and UDP as transport mechanisms." +msgstr "" + +#: gnu/packages/networking.scm:969 msgid "" "socat is a relay for bidirectional data transfer between two independent\n" "data channels---files, pipes, devices, sockets, etc. It can create\n" @@ -10894,7 +11024,7 @@ msgid "" "or server shell scripts with network connections." msgstr "" -#: gnu/packages/networking.scm:962 +#: gnu/packages/networking.scm:1000 msgid "" "mbuffer is a tool for buffering data streams with a large set of features:\n" "\n" @@ -10910,14 +11040,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1058 +#: gnu/packages/networking.scm:1096 msgid "" "With this package you can monitor and filter incoming requests for\n" "network services. It includes a library which may be used by daemons to\n" "transparently check connection attempts against an access control list." msgstr "" -#: gnu/packages/networking.scm:1081 +#: gnu/packages/networking.scm:1119 msgid "" "The 0MQ lightweight messaging kernel is a library which extends the\n" "standard socket interfaces with features traditionally provided by specialized\n" @@ -10927,46 +11057,46 @@ msgid "" "more." msgstr "" -#: gnu/packages/networking.scm:1110 +#: gnu/packages/networking.scm:1148 msgid "" "czmq provides bindings for the ØMQ core API that hides the differences\n" "between different versions of ØMQ." msgstr "" -#: gnu/packages/networking.scm:1141 +#: gnu/packages/networking.scm:1179 msgid "" "This package provides header-only C++ bindings for ØMQ. The header\n" "files contain direct mappings of the abstractions provided by the ØMQ C API." msgstr "" -#: gnu/packages/networking.scm:1175 +#: gnu/packages/networking.scm:1213 msgid "" "@code{libnatpmp} is a portable and asynchronous implementation of\n" "the Network Address Translation - Port Mapping Protocol (NAT-PMP)\n" "written in the C programming language." msgstr "" -#: gnu/packages/networking.scm:1213 +#: gnu/packages/networking.scm:1251 msgid "" "librdkafka is a C library implementation of the Apache Kafka protocol,\n" "containing both Producer and Consumer support." msgstr "" -#: gnu/packages/networking.scm:1232 +#: gnu/packages/networking.scm:1270 msgid "" "libndp contains a library which provides a wrapper for IPv6 Neighbor\n" "Discovery Protocol. It also provides a tool named ndptool for sending and\n" "receiving NDP messages." msgstr "" -#: gnu/packages/networking.scm:1256 +#: gnu/packages/networking.scm:1294 msgid "" "ethtool can be used to query and change settings such as speed,\n" "auto-negotiation and checksum offload on many network devices, especially\n" "Ethernet devices." msgstr "" -#: gnu/packages/networking.scm:1298 +#: gnu/packages/networking.scm:1336 msgid "" "IFStatus is a simple, easy-to-use program for displaying commonly\n" "needed/wanted real-time traffic statistics of multiple network\n" @@ -10974,7 +11104,7 @@ msgid "" "intended as a substitute for the PPPStatus and EthStatus projects." msgstr "" -#: gnu/packages/networking.scm:1347 +#: gnu/packages/networking.scm:1385 msgid "" "This package contains a variety of tools for dealing with network\n" "configuration, troubleshooting, or servers. Utilities included are:\n" @@ -10995,7 +11125,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1388 +#: gnu/packages/networking.scm:1426 msgid "" "Nload is a console application which monitors network traffic and\n" "bandwidth usage in real time. It visualizes the in- and outgoing traffic using\n" @@ -11003,7 +11133,7 @@ msgid "" "and min/max network usage." msgstr "" -#: gnu/packages/networking.scm:1432 +#: gnu/packages/networking.scm:1470 msgid "" "Iodine tunnels IPv4 data through a DNS server. This\n" "can be useful in different situations where internet access is firewalled, but\n" @@ -11011,7 +11141,7 @@ msgid "" "and up to 1 Mbit/s downstream." msgstr "" -#: gnu/packages/networking.scm:1473 +#: gnu/packages/networking.scm:1511 msgid "" "whois searches for an object in a @dfn{WHOIS} (RFC 3912) database.\n" "It is commonly used to look up the registered users or assignees of an Internet\n" @@ -11023,14 +11153,14 @@ msgid "" "of the same name." msgstr "" -#: gnu/packages/networking.scm:1553 +#: gnu/packages/networking.scm:1591 msgid "" "Wireshark is a network protocol analyzer, or @dfn{packet\n" "sniffer}, that lets you capture and interactively browse the contents of\n" "network frames." msgstr "" -#: gnu/packages/networking.scm:1574 +#: gnu/packages/networking.scm:1613 msgid "" "fping is a ping-like program which uses @acronym{ICMP, Internet Control\n" "Message Protocol} echo requests to determine if a target host is responding.\n" @@ -11042,26 +11172,26 @@ msgid "" "round-robin fashion." msgstr "" -#: gnu/packages/networking.scm:1625 +#: gnu/packages/networking.scm:1664 msgid "" "This package provides a command-line client (@command{gandi}) to buy,\n" "manage, and delete Internet resources from Gandi.net such as domain names,\n" "virtual machines, and certificates." msgstr "" -#: gnu/packages/networking.scm:1651 +#: gnu/packages/networking.scm:1690 msgid "" "The netns package provides a simple interface for\n" "handling network namespaces in Go." msgstr "" -#: gnu/packages/networking.scm:1678 +#: gnu/packages/networking.scm:1717 msgid "" "This library provides methods for using the stream control\n" "transmission protocol (SCTP) in a Go application." msgstr "" -#: gnu/packages/networking.scm:1707 +#: gnu/packages/networking.scm:1746 msgid "" "httping measures how long it takes to connect to a web server, send an\n" "HTTP(S) request, and receive the reply headers. It is somewhat similar to\n" @@ -11070,7 +11200,7 @@ msgid "" "application stack itself." msgstr "" -#: gnu/packages/networking.scm:1746 +#: gnu/packages/networking.scm:1785 msgid "" "@command{httpstat} is a tool to visualize statistics from the\n" "@command{curl} HTTP client. It acts as a wrapper for @command{curl} and\n" @@ -11078,20 +11208,20 @@ msgid "" "TCP connection, TLS handshake and so on) in the terminal." msgstr "" -#: gnu/packages/networking.scm:1788 +#: gnu/packages/networking.scm:1827 msgid "" "Squid is a caching proxy for the Web supporting HTTP, HTTPS,\n" "FTP, and more. It reduces bandwidth and improves response times by caching and\n" "reusing frequently-requested web pages." msgstr "" -#: gnu/packages/networking.scm:1822 +#: gnu/packages/networking.scm:1861 msgid "" "Bandwidth Monitor NG is a small and simple console based\n" "live network and disk I/O bandwidth monitor." msgstr "" -#: gnu/packages/networking.scm:1874 +#: gnu/packages/networking.scm:1913 msgid "" "Aircrack-ng is a complete suite of tools to assess WiFi network\n" "security. It focuses on different areas of WiFi security: monitoring,\n" @@ -11099,14 +11229,14 @@ msgid "" "allows for heavy scripting." msgstr "" -#: gnu/packages/networking.scm:1903 +#: gnu/packages/networking.scm:1942 msgid "" "Pixiewps implements the pixie-dust attack to brute\n" "force the Wi-Fi Protected Setup (WPS) PIN by exploiting the low or\n" "non-existing entropy of some access points." msgstr "" -#: gnu/packages/networking.scm:1949 +#: gnu/packages/networking.scm:1988 msgid "" "Reaver performs a brute force attack against an access\n" "point's Wi-Fi Protected Setup (WPS) PIN. Once the PIN is found, the WPA\n" @@ -11114,7 +11244,7 @@ msgid "" "reconfigured." msgstr "" -#: gnu/packages/networking.scm:1974 +#: gnu/packages/networking.scm:2013 msgid "" "Danga::Socket is an abstract base class for objects backed by a socket\n" "which provides the basic framework for event-driven asynchronous IO, designed\n" @@ -11122,7 +11252,7 @@ msgid "" "loop." msgstr "" -#: gnu/packages/networking.scm:2000 +#: gnu/packages/networking.scm:2039 msgid "" "This module provides several IP address validation subroutines that both\n" "validate and untaint their input. This includes both basic validation\n" @@ -11131,62 +11261,62 @@ msgid "" "private (reserved)." msgstr "" -#: gnu/packages/networking.scm:2028 +#: gnu/packages/networking.scm:2067 msgid "Net::DNS is the Perl Interface to the Domain Name System." msgstr "" -#: gnu/packages/networking.scm:2060 +#: gnu/packages/networking.scm:2099 msgid "" "Socket6 binds the IPv6 related part of the C socket header\n" "definitions and structure manipulators for Perl." msgstr "" -#: gnu/packages/networking.scm:2087 +#: gnu/packages/networking.scm:2126 msgid "" "Net::DNS::Resolver::Programmable is a programmable DNS resolver for\n" "offline emulation of DNS." msgstr "" -#: gnu/packages/networking.scm:2109 +#: gnu/packages/networking.scm:2148 msgid "" "Net::DNS::Resolver::Mock is a subclass of Net::DNS::Resolver, but returns\n" "static data from any provided DNS zone file instead of querying the network.\n" "It is intended primarily for use in testing." msgstr "" -#: gnu/packages/networking.scm:2144 +#: gnu/packages/networking.scm:2183 msgid "NetAddr::IP manages IPv4 and IPv6 addresses and subsets." msgstr "" -#: gnu/packages/networking.scm:2177 +#: gnu/packages/networking.scm:2216 msgid "Net::Patricia does IP address lookups quickly in Perl." msgstr "" -#: gnu/packages/networking.scm:2198 +#: gnu/packages/networking.scm:2237 msgid "Net::CIDR::Lite merges IPv4 or IPv6 CIDR addresses." msgstr "" -#: gnu/packages/networking.scm:2225 +#: gnu/packages/networking.scm:2264 msgid "" "IO::Socket::INET6 is an interface for AF_INET/AF_INET6 domain\n" "sockets in Perl." msgstr "" -#: gnu/packages/networking.scm:2258 +#: gnu/packages/networking.scm:2293 msgid "" "Libproxy handles the details of HTTP/HTTPS proxy\n" "configuration for applications across all scenarios. Applications using\n" "libproxy only have to specify which proxy to use." msgstr "" -#: gnu/packages/networking.scm:2292 +#: gnu/packages/networking.scm:2327 msgid "" "Proxychains-ng is a preloader which hooks calls to sockets\n" "in dynamically linked programs and redirects them through one or more SOCKS or\n" "HTTP proxies." msgstr "" -#: gnu/packages/networking.scm:2314 +#: gnu/packages/networking.scm:2349 msgid "" "ENet's purpose is to provide a relatively thin, simple and robust network\n" "communication layer on top of UDP. The primary feature it provides is optional\n" @@ -11196,7 +11326,7 @@ msgid "" "library remains flexible, portable, and easily embeddable." msgstr "" -#: gnu/packages/networking.scm:2378 +#: gnu/packages/networking.scm:2413 msgid "" "sslh is a network protocol demultiplexer. It acts like a switchboard,\n" "accepting connections from clients on one port and forwarding them to different\n" @@ -11208,7 +11338,7 @@ msgid "" "that block port 22." msgstr "" -#: gnu/packages/networking.scm:2408 +#: gnu/packages/networking.scm:2443 msgid "" "iPerf is a tool to measure achievable bandwidth on IP networks. It\n" "supports tuning of various parameters related to timing, buffers and\n" @@ -11216,7 +11346,7 @@ msgid "" "the bandwidth, loss, and other parameters." msgstr "" -#: gnu/packages/networking.scm:2445 +#: gnu/packages/networking.scm:2480 msgid "" "NetHogs is a small 'net top' tool for Linux. Instead of\n" "breaking the traffic down per protocol or per subnet, like most tools do, it\n" @@ -11228,7 +11358,7 @@ msgid "" "gone wild and are suddenly taking up your bandwidth." msgstr "" -#: gnu/packages/networking.scm:2481 +#: gnu/packages/networking.scm:2516 msgid "" "NZBGet is a binary newsgrabber, which downloads files from Usenet based\n" "on information given in @code{nzb} files. NZBGet can be used in standalone\n" @@ -11238,7 +11368,7 @@ msgid "" "procedure calls (RPCs)." msgstr "" -#: gnu/packages/networking.scm:2562 +#: gnu/packages/networking.scm:2597 msgid "" "Open vSwitch is a multilayer virtual switch. It is designed to enable\n" "massive network automation through programmatic extension, while still\n" @@ -11246,27 +11376,27 @@ msgid "" "IPFIX, RSPAN, CLI, LACP, 802.1ag)." msgstr "" -#: gnu/packages/networking.scm:2585 +#: gnu/packages/networking.scm:2620 msgid "" "The @code{IP} class allows a comfortable parsing and\n" "handling for most notations in use for IPv4 and IPv6 addresses and\n" "networks." msgstr "" -#: gnu/packages/networking.scm:2610 +#: gnu/packages/networking.scm:2645 msgid "" "Command line interface for testing internet bandwidth using\n" "speedtest.net." msgstr "" -#: gnu/packages/networking.scm:2630 +#: gnu/packages/networking.scm:2668 msgid "" "This is a tftp client derived from OpenBSD tftp with some extra options\n" "added and bugs fixed. The source includes readline support but it is not\n" "enabled due to license conflicts between the BSD advertising clause and the GPL." msgstr "" -#: gnu/packages/networking.scm:2682 +#: gnu/packages/networking.scm:2720 msgid "" "Spiped (pronounced \"ess-pipe-dee\") is a utility for creating\n" "symmetrically encrypted and authenticated pipes between socket addresses, so\n" @@ -11276,7 +11406,7 @@ msgid "" "does not use SSH and requires a pre-shared symmetric key." msgstr "" -#: gnu/packages/networking.scm:2708 +#: gnu/packages/networking.scm:2746 msgid "" "Quagga is a routing software suite, providing implementations\n" "of OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4 for Unix platforms.\n" @@ -11288,14 +11418,14 @@ msgid "" "updates to the zebra daemon." msgstr "" -#: gnu/packages/networking.scm:2758 +#: gnu/packages/networking.scm:2796 msgid "" "The THC IPv6 Toolkit provides command-line tools and a library\n" "for researching IPv6 implementations and deployments. It requires Linux 2.6 or\n" "newer and only works on Ethernet network interfaces." msgstr "" -#: gnu/packages/networking.scm:2783 +#: gnu/packages/networking.scm:2821 msgid "" "bmon is a monitoring and debugging tool to capture\n" "networking-related statistics and prepare them visually in a human-friendly\n" @@ -11303,7 +11433,7 @@ msgid "" "interface and a programmable text output for scripting." msgstr "" -#: gnu/packages/networking.scm:2821 +#: gnu/packages/networking.scm:2859 msgid "" "Libnet provides a fairly portable framework for network packet\n" "construction and injection. It features portable packet creation interfaces\n" @@ -11312,7 +11442,7 @@ msgid "" "can be whipped up with little effort." msgstr "" -#: gnu/packages/networking.scm:2847 +#: gnu/packages/networking.scm:2885 msgid "" "@acronym{mtr, My TraceRoute} combines the functionality of the\n" "@command{traceroute} and @command{ping} programs in a single network diagnostic\n" @@ -11322,7 +11452,7 @@ msgid "" "displays the results in real time." msgstr "" -#: gnu/packages/networking.scm:2900 +#: gnu/packages/networking.scm:2938 msgid "" "aMule is an eMule-like client for the eD2k and Kademlia peer-to-peer\n" "file sharing networks. It includes a graphical user interface (GUI), a daemon\n" @@ -11331,7 +11461,7 @@ msgid "" "remotely." msgstr "" -#: gnu/packages/networking.scm:2922 +#: gnu/packages/networking.scm:2960 msgid "" "Zyre provides reliable group messaging over local area\n" "networks using zeromq. It has these key characteristics:\n" @@ -11348,13 +11478,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:2956 +#: gnu/packages/networking.scm:2994 msgid "" "This library allows controlling basic functions in SocketCAN\n" "from user-space. It requires a kernel built with SocketCAN support." msgstr "" -#: gnu/packages/networking.scm:2985 +#: gnu/packages/networking.scm:3023 msgid "" "This package provides CAN utilities in the following areas:\n" "\n" @@ -11370,14 +11500,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3021 +#: gnu/packages/networking.scm:3059 msgid "" "Asio is a cross-platform C++ library for network and\n" "low-level I/O programming that provides developers with a consistent\n" "asynchronous model using a modern C++ approach." msgstr "" -#: gnu/packages/networking.scm:3056 +#: gnu/packages/networking.scm:3094 msgid "" "This package is a fast tunnel proxy that helps you bypass firewalls.\n" "\n" @@ -11391,7 +11521,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3134 +#: gnu/packages/networking.scm:3172 msgid "" "The @dfn{Simple Network Management Protocol} (SNMP) is a\n" "widely used protocol for monitoring the health and welfare of network\n" @@ -11400,20 +11530,20 @@ msgid "" "SNMP v3 using both IPv4 and IPv6." msgstr "" -#: gnu/packages/networking.scm:3181 +#: gnu/packages/networking.scm:3219 msgid "" "uBridge is a simple program to create user-land bridges\n" "between various technologies. Currently, bridging between UDP tunnels,\n" "Ethernet and TAP interfaces is supported. Packet capture is also supported." msgstr "" -#: gnu/packages/networking.scm:3213 +#: gnu/packages/networking.scm:3251 msgid "" "This package contains a small set of tools to capture and convert\n" "packets from wireless devices for use with hashcat or John the Ripper." msgstr "" -#: gnu/packages/networking.scm:3244 +#: gnu/packages/networking.scm:3282 msgid "" "Small tool to capture packets from WLAN devices. After capturing,\n" "upload the \"uncleaned\" cap to @url{https://wpa-sec.stanev.org/?submit} to\n" @@ -11423,7 +11553,7 @@ msgid "" "and check if the WLAN key or the master key was transmitted unencrypted." msgstr "" -#: gnu/packages/networking.scm:3271 +#: gnu/packages/networking.scm:3309 msgid "" "Dante is a SOCKS client and server implementation. It can\n" "be installed on a machine with access to an external TCP/IP network and will\n" @@ -11432,21 +11562,21 @@ msgid "" "never see any machines other than the one Dante is running on." msgstr "" -#: gnu/packages/networking.scm:3318 +#: gnu/packages/networking.scm:3356 msgid "" "Restbed is a comprehensive and consistent programming\n" "model for building applications that require seamless and secure\n" "communication over HTTP." msgstr "" -#: gnu/packages/networking.scm:3358 +#: gnu/packages/networking.scm:3396 msgid "" "RESTinio is a header-only C++14 library that gives you an embedded\n" "HTTP/Websocket server. It is based on standalone version of ASIO\n" "and targeted primarily for asynchronous processing of HTTP-requests." msgstr "" -#: gnu/packages/networking.scm:3446 +#: gnu/packages/networking.scm:3487 msgid "" "OpenDHT provides an easy to use distributed in-memory data\n" "store. Every node in the network can read and write values to the store.\n" @@ -11473,20 +11603,20 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/networking.scm:3490 +#: gnu/packages/networking.scm:3531 msgid "" "FRRouting (FRR) is an IP routing protocol suite which includes\n" "protocol daemons for BGP, IS-IS, LDP, OSPF, PIM, and RIP." msgstr "" -#: gnu/packages/networking.scm:3520 +#: gnu/packages/networking.scm:3561 msgid "" "BIRD is an Internet routing daemon with full support for all\n" "the major routing protocols. It allows redistribution between protocols with a\n" "powerful route filtering syntax and an easy-to-use configuration interface." msgstr "" -#: gnu/packages/networking.scm:3568 +#: gnu/packages/networking.scm:3609 msgid "" "iwd is a wireless daemon for Linux that aims to replace WPA\n" "Supplicant. It optimizes resource utilization by not depending on any external\n" @@ -11494,21 +11624,21 @@ msgid "" "maximum extent possible." msgstr "" -#: gnu/packages/networking.scm:3595 +#: gnu/packages/networking.scm:3636 msgid "" "libyang is a YANG data modelling language parser and toolkit\n" "written (and providing API) in C. Current implementation covers YANG 1.0 (RFC\n" "6020) as well as YANG 1.1 (RFC 7950)." msgstr "" -#: gnu/packages/networking.scm:3629 +#: gnu/packages/networking.scm:3670 msgid "" "This package provides a control tool for the\n" "B.A.T.M.A.N. mesh networking routing protocol provided by the Linux kernel\n" "module @code{batman-adv}, for Layer 2." msgstr "" -#: gnu/packages/networking.scm:3662 +#: gnu/packages/networking.scm:3703 msgid "" "PageKite implements a tunneled reverse proxy which makes it easy to make\n" "a service (such as an HTTP or SSH server) on localhost visible to the wider\n" @@ -11516,7 +11646,7 @@ msgid "" "service is available at @url{https://pagekite.net/}, or you can run your own." msgstr "" -#: gnu/packages/networking.scm:3706 +#: gnu/packages/networking.scm:3747 msgid "" "ipcalc takes an IP address and netmask and calculates the\n" "resulting broadcast, network, Cisco wildcard mask, and host range. By giving\n" @@ -11525,7 +11655,7 @@ msgid "" "easy-to-understand binary values." msgstr "" -#: gnu/packages/networking.scm:3745 +#: gnu/packages/networking.scm:3786 msgid "" "Tunctl is used to set up and maintain persistent TUN/TAP\n" "network interfaces, enabling user applications to simulate network traffic.\n" @@ -11533,13 +11663,13 @@ msgid "" "simulation, and a number of other applications." msgstr "" -#: gnu/packages/networking.scm:3765 +#: gnu/packages/networking.scm:3806 msgid "" "Tool to send a magic packet to wake another host on the\n" "network. This must be enabled on the target host, usually in the BIOS." msgstr "" -#: gnu/packages/networking.scm:3802 +#: gnu/packages/networking.scm:3843 msgid "" "This package provides a modern, but Linux-specific\n" "implementation of the @command{traceroute} command that can be used to follow\n" @@ -11550,7 +11680,7 @@ msgid "" "some traces for unprivileged users." msgstr "" -#: gnu/packages/networking.scm:3836 +#: gnu/packages/networking.scm:3877 msgid "" "VDE is a set of programs to provide virtual software-defined\n" "Ethernet network interface controllers across multiple virtual or\n" @@ -11559,7 +11689,7 @@ msgid "" "cables." msgstr "" -#: gnu/packages/networking.scm:3878 +#: gnu/packages/networking.scm:3919 msgid "" "HAProxy is a free, very fast and reliable solution offering\n" "high availability, load balancing, and proxying for TCP and HTTP-based\n" @@ -11568,7 +11698,7 @@ msgid "" "thousands of connections is clearly realistic with today's hardware." msgstr "" -#: gnu/packages/networking.scm:3924 +#: gnu/packages/networking.scm:3965 msgid "" "The @dfn{Link Layer Discovery Protocol} (LLDP) is an industry standard\n" "protocol designed to supplant proprietary Link-Layer protocols such as EDP or\n" @@ -11577,7 +11707,7 @@ msgid "" "an implementation of LLDP. It also supports some proprietary protocols." msgstr "" -#: gnu/packages/networking.scm:3966 +#: gnu/packages/networking.scm:4007 msgid "" "Hashcash is a proof-of-work algorithm, which has been used\n" "as a denial-of-service countermeasure technique in a number of systems.\n" @@ -11590,14 +11720,14 @@ msgid "" "stamps." msgstr "" -#: gnu/packages/networking.scm:3995 +#: gnu/packages/networking.scm:4036 msgid "" "This package provides the NBD (Network Block Devices)\n" "client and server. It allows you to use remote block devices over a TCP/IP\n" "network." msgstr "" -#: gnu/packages/networking.scm:4062 +#: gnu/packages/networking.scm:4103 msgid "" "Yggdrasil is an early-stage implementation of a fully end-to-end encrypted\n" "IPv6 network. It is lightweight, self-arranging, supported on multiple\n" @@ -11606,7 +11736,7 @@ msgid "" "IPv6 Internet connectivity - it also works over IPv4." msgstr "" -#: gnu/packages/networking.scm:4106 +#: gnu/packages/networking.scm:4147 msgid "" "Netdiscover is a network address discovery tool developed\n" "mainly for wireless networks without a @acronym{DHCP} server. It also works\n" @@ -11614,7 +11744,7 @@ msgid "" "@acronym{ARP} requests and sniff for replies." msgstr "" -#: gnu/packages/networking.scm:4138 +#: gnu/packages/networking.scm:4179 msgid "" "PuTTY is a graphical text terminal client. It supports\n" "@acronym{SSH, Secure SHell}, telnet, and raw socket connections with good\n" @@ -11725,14 +11855,14 @@ msgid "" "by using the poppler rendering engine." msgstr "" -#: gnu/packages/pdf.scm:654 +#: gnu/packages/pdf.scm:653 msgid "" "Zathura is a customizable document viewer. It provides a\n" "minimalistic interface and an interface that mainly focuses on keyboard\n" "interaction." msgstr "" -#: gnu/packages/pdf.scm:697 +#: gnu/packages/pdf.scm:696 msgid "" "PoDoFo is a C++ library and set of command-line tools to work with the\n" "PDF file format. It can parse PDF files and load them into memory, and makes\n" @@ -11741,7 +11871,7 @@ msgid "" "extracting content or merging files." msgstr "" -#: gnu/packages/pdf.scm:764 +#: gnu/packages/pdf.scm:763 msgid "" "MuPDF is a C library that implements a PDF and XPS parsing and\n" "rendering engine. It is used primarily to render pages into bitmaps,\n" @@ -11753,7 +11883,7 @@ msgid "" "@command{pdfclean}, and examining the file structure @command{pdfshow}." msgstr "" -#: gnu/packages/pdf.scm:811 +#: gnu/packages/pdf.scm:810 msgid "" "QPDF is a command-line program that does structural, content-preserving\n" "transformations on PDF files. It could have been called something like\n" @@ -11762,7 +11892,7 @@ msgid "" "program capable of converting PDF into other formats." msgstr "" -#: gnu/packages/pdf.scm:855 +#: gnu/packages/pdf.scm:854 msgid "" "@command{qpdfview} is a document viewer for PDF, PS and DJVU\n" "files. It uses the Qt toolkit and features persistent per-file settings,\n" @@ -11770,13 +11900,13 @@ msgid "" "SyncTeX support, and rudimentary support for annotations and forms." msgstr "" -#: gnu/packages/pdf.scm:881 +#: gnu/packages/pdf.scm:880 msgid "" "Xournal is an application for notetaking, sketching, keeping a journal\n" "using a stylus." msgstr "" -#: gnu/packages/pdf.scm:940 +#: gnu/packages/pdf.scm:939 msgid "" "Xournal++ is a hand note taking software written in\n" "C++ with the target of flexibility, functionality and speed. Stroke\n" @@ -11812,14 +11942,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1019 +#: gnu/packages/pdf.scm:1018 msgid "" "This is the ReportLab PDF Toolkit. It allows rapid creation\n" "of rich PDF documents, and also creation of charts in a variety of bitmap and\n" "vector formats." msgstr "" -#: gnu/packages/pdf.scm:1071 +#: gnu/packages/pdf.scm:1070 msgid "" "Impressive is a tool to display PDF files that provides visual effects\n" "such as smooth alpha-blended slide transitions. It provides additional tools\n" @@ -11827,26 +11957,26 @@ msgid "" "the PDF pages." msgstr "" -#: gnu/packages/pdf.scm:1094 +#: gnu/packages/pdf.scm:1093 msgid "" "img2pdf converts images to PDF via direct JPEG inclusion. That\n" "conversion is lossless: the image embedded in the PDF has the exact same color\n" "information for every pixel as the input." msgstr "" -#: gnu/packages/pdf.scm:1147 +#: gnu/packages/pdf.scm:1146 msgid "" "fbida contains a few applications for viewing and editing images on\n" "the framebuffer." msgstr "" -#: gnu/packages/pdf.scm:1171 +#: gnu/packages/pdf.scm:1170 msgid "" "@command{pdf2svg} is a simple command-line PDF to SVG\n" "converter using the Poppler and Cairo libraries." msgstr "" -#: gnu/packages/pdf.scm:1203 +#: gnu/packages/pdf.scm:1202 msgid "" "PyPDF2 is a pure Python PDF library capable of:\n" "\n" @@ -11866,7 +11996,7 @@ msgid "" "manage or manipulate PDFs." msgstr "" -#: gnu/packages/pdf.scm:1240 +#: gnu/packages/pdf.scm:1239 msgid "" "PyPDF2 is a pure Python PDF toolkit.\n" "\n" @@ -11874,7 +12004,7 @@ msgid "" "python-pypdf2 instead." msgstr "" -#: gnu/packages/pdf.scm:1284 +#: gnu/packages/pdf.scm:1283 msgid "" "PDF Arranger is a small application which allows one to merge or split\n" "PDF documents and rotate, crop and rearrange their pages using an interactive\n" @@ -11883,7 +12013,7 @@ msgid "" "PDF Arranger was formerly known as PDF-Shuffler." msgstr "" -#: gnu/packages/pdf.scm:1308 +#: gnu/packages/pdf.scm:1307 msgid "" "@command{pdfposter} can be used to create a large poster by\n" "building it from multiple pages and/or printing it on large media. It expects\n" @@ -11896,7 +12026,7 @@ msgid "" "PDF. Indeed @command{pdfposter} was inspired by @command{poster}." msgstr "" -#: gnu/packages/pdf.scm:1339 +#: gnu/packages/pdf.scm:1338 msgid "" "Pdfgrep searches in pdf files for strings matching a regular expression.\n" "Support some GNU grep options as file name output, page number output,\n" @@ -11904,7 +12034,7 @@ msgid "" "multiple files." msgstr "" -#: gnu/packages/pdf.scm:1387 +#: gnu/packages/pdf.scm:1386 msgid "" "pdfpc is a presentation viewer application which uses multi-monitor\n" "output to provide meta information to the speaker during the presentation. It\n" @@ -11914,13 +12044,13 @@ msgid "" "presentation. The input files processed by pdfpc are PDF documents." msgstr "" -#: gnu/packages/pdf.scm:1414 +#: gnu/packages/pdf.scm:1413 msgid "" "Paps reads a UTF-8 encoded file and generates a PostScript language\n" "rendering of the file through the Pango Cairo back end." msgstr "" -#: gnu/packages/pdf.scm:1444 +#: gnu/packages/pdf.scm:1443 msgid "" "Stapler is a pure Python alternative to PDFtk, a tool for\n" "manipulating PDF documents from the command line. It supports\n" @@ -11934,7 +12064,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1532 +#: gnu/packages/pdf.scm:1531 msgid "" "WeasyPrint helps web developers to create PDF documents. It\n" "turns simple HTML pages into gorgeous statistical reports, invoices, tickets,\n" @@ -15656,7 +15786,7 @@ msgid "" "and enhance them." msgstr "" -#: gnu/packages/photo.scm:601 +#: gnu/packages/photo.scm:603 msgid "" "Photoflare is a cross-platform image editor with an aim\n" "to balance between powerful features and a very friendly graphical user\n" @@ -15666,7 +15796,7 @@ msgid "" "such as Batch image processing." msgstr "" -#: gnu/packages/photo.scm:669 +#: gnu/packages/photo.scm:670 msgid "" "Entangle is an application which uses GTK and libgphoto2 to provide a\n" "graphical interface for tethered photography with digital cameras. It\n" @@ -15674,14 +15804,14 @@ msgid "" "off' shooting directly from the controlling computer." msgstr "" -#: gnu/packages/photo.scm:740 +#: gnu/packages/photo.scm:741 msgid "" "Hugin is an easy to use panoramic imaging toolchain with a graphical\n" "user interface. It can be used to assemble a mosaic of photographs into\n" "a complete panorama and stitch any series of overlapping pictures." msgstr "" -#: gnu/packages/photo.scm:794 +#: gnu/packages/photo.scm:795 msgid "" "RawTherapee is a raw image processing suite. It comprises a\n" "subset of image editing operations specifically aimed at non-destructive raw\n" @@ -15725,7 +15855,28 @@ msgid "" "`special effects' using the filter mechanism." msgstr "" -#: gnu/packages/scanner.scm:144 +#: gnu/packages/scanner.scm:83 +msgid "" +"This SANE backend lets you scan documents and images from scanners and\n" +"multi-function printers that speak eSCL (marketed as ``AirScan'') or\n" +"@acronym{WSD, Web Services for Devices} (or ``WS-Scan'').\n" +"\n" +"Both are vendor-neutral protocols that allow ``driverless'' scanning over IPv4\n" +"and IPv6 networks without the vendor-specific drivers that make up most of the\n" +"sane-backends collection. This is similar to how most contemporary printers\n" +"speak the universal @acronym{IPP, Internet Printing Protocol}.\n" +"\n" +"Only scanners that support eSCL will also work over USB. This requires a\n" +"suitable IPP-over-USB daemon like ipp-usb to be installed and configured.\n" +"\n" +"Any eSCL or WSD-capable scanner should just work. sane-airscan automatically\n" +"discovers and configures devices, including which protocol to use. It was\n" +"successfully tested with many devices from Brother, Canon, Dell, Kyocera,\n" +"Lexmark, Epson, HP, OKI, Panasonic, Pantum, Ricoh, Samsung, and Xerox, with both\n" +"WSD and eSCL." +msgstr "" + +#: gnu/packages/scanner.scm:200 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -15733,7 +15884,7 @@ msgid "" "package contains the library, but no drivers." msgstr "" -#: gnu/packages/scanner.scm:192 +#: gnu/packages/scanner.scm:248 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -15741,7 +15892,7 @@ msgid "" "package contains the library and drivers." msgstr "" -#: gnu/packages/scanner.scm:243 +#: gnu/packages/scanner.scm:299 msgid "" "Scanbd stands for scanner button daemon. It regularly polls\n" "scanners for pressed buttons, function knob changes, or other events such\n" @@ -15757,7 +15908,7 @@ msgid "" "provided the driver also exposes the buttons." msgstr "" -#: gnu/packages/scanner.scm:331 +#: gnu/packages/scanner.scm:387 msgid "" "XSane is a graphical interface for controlling a scanner and acquiring\n" "images from it. You can photocopy multi-page documents and save, fax, print,\n" @@ -15769,14 +15920,14 @@ msgid "" "back-end library, which supports almost all existing scanners." msgstr "" -#: gnu/packages/scheme.scm:225 +#: gnu/packages/scheme.scm:226 msgid "" "GNU/MIT Scheme is an implementation of the Scheme programming\n" "language. It provides an interpreter, a compiler and a debugger. It also\n" "features an integrated Emacs-like editor and a large runtime library." msgstr "" -#: gnu/packages/scheme.scm:324 +#: gnu/packages/scheme.scm:325 msgid "" "Bigloo is a Scheme implementation devoted to one goal: enabling Scheme\n" "based programming style where C(++) is usually required. Bigloo attempts to\n" @@ -15787,7 +15938,7 @@ msgid "" "and between Scheme and Java programs." msgstr "" -#: gnu/packages/scheme.scm:377 +#: gnu/packages/scheme.scm:378 msgid "" "HOP is a multi-tier programming language for the Web 2.0 and the\n" "so-called diffuse Web. It is designed for programming interactive web\n" @@ -15796,14 +15947,14 @@ msgid "" "mashups, office (web agendas, mail clients, ...), etc." msgstr "" -#: gnu/packages/scheme.scm:400 +#: gnu/packages/scheme.scm:401 msgid "" "Scheme 48 is an implementation of Scheme based on a byte-code\n" "interpreter and is designed to be used as a testbed for experiments in\n" "implementation techniques and as an expository tool." msgstr "" -#: gnu/packages/scheme.scm:430 +#: gnu/packages/scheme.scm:431 msgid "" "Gambit consists of two main programs: gsi, the Gambit Scheme\n" "interpreter, and gsc, the Gambit Scheme compiler. The interpreter contains\n" @@ -15814,7 +15965,7 @@ msgid "" "mixed." msgstr "" -#: gnu/packages/scheme.scm:464 +#: gnu/packages/scheme.scm:465 msgid "" "Chibi-Scheme is a very small library with no external dependencies\n" "intended for use as an extension and scripting language in C programs. In\n" @@ -15823,7 +15974,7 @@ msgid "" "threads." msgstr "" -#: gnu/packages/scheme.scm:512 +#: gnu/packages/scheme.scm:513 msgid "" "Structure and Interpretation of Computer Programs (SICP) is\n" "a textbook aiming to teach the principles of computer programming.\n" @@ -15833,19 +15984,19 @@ msgid "" "metalinguistic abstraction, recursion, interpreters, and modular programming." msgstr "" -#: gnu/packages/scheme.scm:556 +#: gnu/packages/scheme.scm:557 msgid "" "String pattern-matching library for scheme48 based on the SRE\n" "regular-expression notation." msgstr "" -#: gnu/packages/scheme.scm:589 +#: gnu/packages/scheme.scm:590 msgid "" "SLIB is a portable Scheme library providing compatibility and\n" "utility functions for all standard Scheme implementations." msgstr "" -#: gnu/packages/scheme.scm:643 +#: gnu/packages/scheme.scm:644 msgid "" "GNU SCM is an implementation of Scheme. This\n" "implementation includes Hobbit, a Scheme-to-C compiler, which can\n" @@ -15853,7 +16004,7 @@ msgid "" "linked with a SCM executable." msgstr "" -#: gnu/packages/scheme.scm:702 +#: gnu/packages/scheme.scm:703 msgid "" "TinyScheme is a light-weight Scheme interpreter that implements as large a\n" "subset of R5RS as was possible without getting very large and complicated.\n" @@ -15869,7 +16020,7 @@ msgid "" "small program, it is easy to comprehend, get to grips with, and use." msgstr "" -#: gnu/packages/scheme.scm:783 +#: gnu/packages/scheme.scm:784 msgid "" "Stalin is an aggressively optimizing whole-program compiler\n" "for Scheme that does polyvariant interprocedural flow analysis,\n" @@ -15881,7 +16032,7 @@ msgid "" "generation." msgstr "" -#: gnu/packages/scheme.scm:819 +#: gnu/packages/scheme.scm:820 msgid "" "Scheme 9 from Empty Space (S9fES) is a mature, portable, and\n" "comprehensible public-domain interpreter for R4RS Scheme offering:\n" @@ -15896,14 +16047,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/scheme.scm:877 +#: gnu/packages/scheme.scm:878 msgid "" "@code{femtolisp} is a scheme-like lisp implementation with a\n" "simple, elegant Scheme dialect. It is a lisp-1 with lexical scope.\n" "The core is 12 builtin special forms and 33 builtin functions." msgstr "" -#: gnu/packages/scheme.scm:940 +#: gnu/packages/scheme.scm:941 msgid "" "Gauche is a R7RS Scheme scripting engine aiming at being a\n" "handy tool that helps programmers and system administrators to write small to\n" @@ -15913,7 +16064,7 @@ msgid "" "and list gauche extension packages." msgstr "" -#: gnu/packages/scheme.scm:1038 +#: gnu/packages/scheme.scm:1039 msgid "" "Gerbil is an opinionated dialect of Scheme designed for Systems\n" "Programming, with a state of the art macro and module system on top of the Gambit\n" @@ -16050,7 +16201,7 @@ msgid "" "server and an IRC server." msgstr "" -#: gnu/packages/shells.scm:107 +#: gnu/packages/shells.scm:108 msgid "" "dash is a POSIX-compliant @command{/bin/sh} implementation that aims to be\n" "as small as possible, often without sacrificing speed. It is faster than the\n" @@ -16058,7 +16209,7 @@ msgid "" "direct descendant of NetBSD's Almquist Shell (@command{ash})." msgstr "" -#: gnu/packages/shells.scm:255 +#: gnu/packages/shells.scm:256 msgid "" "Fish (friendly interactive shell) is a shell focused on interactive use,\n" "discoverability, and friendliness. Fish has very user-friendly and powerful\n" @@ -16070,20 +16221,20 @@ msgid "" "and syntax highlighting." msgstr "" -#: gnu/packages/shells.scm:308 +#: gnu/packages/shells.scm:309 msgid "" "@code{fish-foreign-env} wraps bash script execution in a way\n" "that environment variables that are exported or modified get imported back\n" "into fish." msgstr "" -#: gnu/packages/shells.scm:344 +#: gnu/packages/shells.scm:345 msgid "" "This is a reimplementation by Byron Rakitzis of the Plan 9 shell. It\n" "has a small feature set similar to a traditional Bourne shell." msgstr "" -#: gnu/packages/shells.scm:377 +#: gnu/packages/shells.scm:378 msgid "" "Es is an extensible shell. The language was derived from the Plan 9\n" "shell, rc, and was influenced by functional programming languages, such as\n" @@ -16092,7 +16243,7 @@ msgid "" "written by Paul Haahr and Byron Rakitzis." msgstr "" -#: gnu/packages/shells.scm:455 +#: gnu/packages/shells.scm:456 msgid "" "Tcsh is an enhanced, but completely compatible version of the Berkeley\n" "UNIX C shell (csh). It is a command language interpreter usable both as an\n" @@ -16101,7 +16252,7 @@ msgid "" "history mechanism, job control and a C-like syntax." msgstr "" -#: gnu/packages/shells.scm:522 +#: gnu/packages/shells.scm:523 msgid "" "The Z shell (zsh) is a Unix shell that can be used\n" "as an interactive login shell and as a powerful command interpreter\n" @@ -16110,7 +16261,7 @@ msgid "" "ksh, and tcsh." msgstr "" -#: gnu/packages/shells.scm:572 +#: gnu/packages/shells.scm:573 msgid "" "Xonsh is a Python-ish, BASHwards-looking shell language and command\n" "prompt. The language is a superset of Python 3.4+ with additional shell\n" @@ -16119,7 +16270,7 @@ msgid "" "use of experts and novices alike." msgstr "" -#: gnu/packages/shells.scm:616 +#: gnu/packages/shells.scm:617 msgid "" "Scsh is a Unix shell embedded in Scheme. Scsh has two main\n" "components: a process notation for running programs and setting up pipelines\n" @@ -16127,7 +16278,7 @@ msgid "" "operating system." msgstr "" -#: gnu/packages/shells.scm:658 +#: gnu/packages/shells.scm:659 msgid "" "Linenoise is a minimal, zero-config, readline replacement.\n" "Its features include:\n" @@ -16141,7 +16292,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/shells.scm:722 +#: gnu/packages/shells.scm:723 msgid "" "S is a new shell that aims to be extremely simple. It does not\n" "implement the POSIX shell standard.\n" @@ -16155,19 +16306,19 @@ msgid "" "A @code{andglob} program is also provided along with s." msgstr "" -#: gnu/packages/shells.scm:753 +#: gnu/packages/shells.scm:754 msgid "" "Oksh is a port of the OpenBSD Korn Shell.\n" "The OpenBSD Korn Shell is a cleaned up and enhanced ksh." msgstr "" -#: gnu/packages/shells.scm:783 +#: gnu/packages/shells.scm:784 msgid "" "loksh is a Linux port of OpenBSD's @command{ksh}. It is a small,\n" "interactive POSIX shell targeted at resource-constrained systems." msgstr "" -#: gnu/packages/shells.scm:821 +#: gnu/packages/shells.scm:822 msgid "" "mksh is an actively developed free implementation of the\n" "Korn Shell programming language and a successor to the Public Domain Korn\n" @@ -16199,7 +16350,7 @@ msgid "" "files and text." msgstr "" -#: gnu/packages/shells.scm:1006 +#: gnu/packages/shells.scm:1005 msgid "" "Nu draws inspiration from projects like PowerShell, functional\n" "programming languages, and modern CLI tools. Rather than thinking of files\n" @@ -16210,7 +16361,7 @@ msgid "" "of commands called a ``pipeline''." msgstr "" -#: gnu/packages/shells.scm:1037 +#: gnu/packages/shells.scm:1036 msgid "" "This package is a library for ANSI terminal colors and styles (bold,\n" "underline)." @@ -16466,19 +16617,19 @@ msgid "" "your calls and messages." msgstr "" -#: gnu/packages/telephony.scm:874 +#: gnu/packages/telephony.scm:869 msgid "" "PJProject provides an implementation of the Session\n" "Initiation Protocol (SIP) and a multimedia framework." msgstr "" -#: gnu/packages/telephony.scm:916 +#: gnu/packages/telephony.scm:911 msgid "" "A collection of libraries and header files for implementing\n" "telephony functionality into custom Telegram clients." msgstr "" -#: gnu/packages/tex.scm:532 +#: gnu/packages/tex.scm:543 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -16488,20 +16639,20 @@ msgid "" "This package contains the binaries." msgstr "" -#: gnu/packages/tex.scm:571 +#: gnu/packages/tex.scm:582 msgid "" "kpathsea is a library, whose purpose is to return a filename\n" "from a list of user-specified directories similar to how shells look up\n" "executables. It is maintained as a part of TeX Live." msgstr "" -#: gnu/packages/tex.scm:591 +#: gnu/packages/tex.scm:602 msgid "" "This package provides the docstrip utility to strip\n" "documentation from TeX files. It is part of the LaTeX base." msgstr "" -#: gnu/packages/tex.scm:606 +#: gnu/packages/tex.scm:617 msgid "" "This bundle provides generic access to Unicode Consortium\n" "data for TeX use. It contains a set of text files provided by the Unicode\n" @@ -16514,7 +16665,7 @@ msgid "" "out to date by @code{unicode-letters.tex}." msgstr "" -#: gnu/packages/tex.scm:638 +#: gnu/packages/tex.scm:649 msgid "" "This package includes Knuth's original @file{hyphen.tex},\n" "@file{zerohyph.tex} to disable hyphenation, @file{language.us} which starts\n" @@ -16522,13 +16673,13 @@ msgid "" "default versions of those), etc." msgstr "" -#: gnu/packages/tex.scm:659 +#: gnu/packages/tex.scm:670 msgid "" "This package provides files needed for converting DVI files\n" "to PostScript." msgstr "" -#: gnu/packages/tex.scm:673 +#: gnu/packages/tex.scm:684 msgid "" "This bundle provides a collection of model \".ini\" files\n" "for creating TeX formats. These files are commonly used to introduced\n" @@ -16537,13 +16688,13 @@ msgid "" "to adapt the plain e-TeX source file to work with XeTeX and LuaTeX." msgstr "" -#: gnu/packages/tex.scm:736 +#: gnu/packages/tex.scm:747 msgid "" "This package provides the Metafont base files needed to\n" "build fonts using the Metafont system." msgstr "" -#: gnu/packages/tex.scm:821 +#: gnu/packages/tex.scm:832 msgid "" "This package provides TeX macros for converting Adobe Font\n" "Metric files to TeX metric and virtual font format. Fontinst helps mainly\n" @@ -16553,7 +16704,7 @@ msgid "" "typesetting in these fonts." msgstr "" -#: gnu/packages/tex.scm:842 +#: gnu/packages/tex.scm:853 msgid "" "This is Fontname, a naming scheme for (the base part of)\n" "external TeX font filenames. This makes at most eight-character names\n" @@ -16561,7 +16712,7 @@ msgid "" "documents." msgstr "" -#: gnu/packages/tex.scm:915 +#: gnu/packages/tex.scm:926 msgid "" "This package provides the Computer Modern fonts by Donald\n" "Knuth. The Computer Modern font family is a large collection of text,\n" @@ -16569,7 +16720,7 @@ msgid "" "8A." msgstr "" -#: gnu/packages/tex.scm:946 +#: gnu/packages/tex.scm:957 msgid "" "The CM-Super family provides Adobe Type 1 fonts that replace\n" "the T1/TS1-encoded Computer Modern (EC/TC), T1/TS1-encoded Concrete,\n" @@ -16579,13 +16730,13 @@ msgid "" "originals." msgstr "" -#: gnu/packages/tex.scm:979 +#: gnu/packages/tex.scm:990 msgid "" "This package provides a drop-in replacements for the Courier\n" "font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:1002 +#: gnu/packages/tex.scm:1013 msgid "" "The TeX-GYRE bundle consist of multiple font families:\n" "@itemize @bullet\n" @@ -16605,21 +16756,21 @@ msgid "" "support (for use with a variety of encodings) is provided." msgstr "" -#: gnu/packages/tex.scm:1041 +#: gnu/packages/tex.scm:1052 msgid "" "The Latin Modern fonts are derived from the famous Computer\n" "Modern fonts designed by Donald E. Knuth and described in Volume E of his\n" "Computers & Typesetting series." msgstr "" -#: gnu/packages/tex.scm:1106 +#: gnu/packages/tex.scm:1117 msgid "" "This is a collection of core TeX and METAFONT macro files\n" "from Donald Knuth, including the plain format, plain base, and the MF logo\n" "fonts." msgstr "" -#: gnu/packages/tex.scm:1181 +#: gnu/packages/tex.scm:1192 msgid "" "This is a collection of fonts for use with standard LaTeX\n" "packages and classes. It includes invisible fonts (for use with the slides\n" @@ -16627,14 +16778,14 @@ msgid "" "symbol fonts." msgstr "" -#: gnu/packages/tex.scm:1253 +#: gnu/packages/tex.scm:1264 msgid "" "This package provides LaTeX and font definition files to access the\n" "Knuthian mflogo fonts described in The Metafontbook and to typeset Metafont\n" "logos in LaTeX documents." msgstr "" -#: gnu/packages/tex.scm:1274 +#: gnu/packages/tex.scm:1285 msgid "" "These fonts were created in METAFONT by Knuth, for his own publications.\n" "At some stage, the letters P and S were added, so that the METAPOST logo could\n" @@ -16643,7 +16794,7 @@ msgid "" "Taco Hoekwater." msgstr "" -#: gnu/packages/tex.scm:1402 +#: gnu/packages/tex.scm:1415 gnu/packages/tex.scm:1579 msgid "" "This package provides an extended set of fonts for use in mathematics,\n" "including: extra mathematical symbols; blackboard bold letters (uppercase\n" @@ -16657,7 +16808,7 @@ msgid "" "details can be found in the documentation." msgstr "" -#: gnu/packages/tex.scm:1432 +#: gnu/packages/tex.scm:1609 msgid "" "Mkpattern is a general purpose program for the generation of\n" "hyphenation patterns, with definition of letter sets and template-like\n" @@ -16665,7 +16816,7 @@ msgid "" "output encodings, and features generation of clean UTF-8 patterns." msgstr "" -#: gnu/packages/tex.scm:1489 +#: gnu/packages/tex.scm:1666 msgid "" "This package provides an extended version of TeX (which is capable of\n" "running as if it were TeX unmodified). E-TeX has been specified by the LaTeX\n" @@ -16674,122 +16825,131 @@ msgid "" "incorporates the e-TeX extensions." msgstr "" -#: gnu/packages/tex.scm:1507 +#: gnu/packages/tex.scm:1684 msgid "" "This package contains files used to build the Plain TeX format, as\n" "described in the TeXbook, together with various supporting files (some also\n" "discussed in the book)." msgstr "" -#: gnu/packages/tex.scm:1533 +#: gnu/packages/tex.scm:1702 +msgid "" +"The package facilitates wrapping text to a specific character width, breaking\n" +"lines by words rather than, as done by TeX, by characters. The primary use for\n" +"these facilities is to aid the generation of messages sent to the log file or\n" +"console output to display messages to the user. Package authors may also find\n" +"this useful when writing out arbitary text to an external file." +msgstr "" + +#: gnu/packages/tex.scm:1730 msgid "" "This package provides a drop-in replacements for the Helvetica\n" "font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:1546 +#: gnu/packages/tex.scm:1743 msgid "" "The package provides hyphenation patterns for the Afrikaans\n" "language." msgstr "" -#: gnu/packages/tex.scm:1560 +#: gnu/packages/tex.scm:1757 msgid "" "The package provides hyphenation patterns for ancient\n" "Greek." msgstr "" -#: gnu/packages/tex.scm:1573 +#: gnu/packages/tex.scm:1770 msgid "" "The package provides hyphenation patterns for the Armenian\n" "language." msgstr "" -#: gnu/packages/tex.scm:1587 +#: gnu/packages/tex.scm:1784 msgid "" "The package provides hyphenation patterns for the Basque\n" "language." msgstr "" -#: gnu/packages/tex.scm:1601 +#: gnu/packages/tex.scm:1798 msgid "" "The package provides hyphenation patterns for the Belarusian\n" "language." msgstr "" -#: gnu/packages/tex.scm:1613 +#: gnu/packages/tex.scm:1810 msgid "" "The package provides hyphenation patterns for the Bulgarian\n" "language in T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1627 +#: gnu/packages/tex.scm:1824 msgid "" "The package provides hyphenation patterns for Catalan in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1640 +#: gnu/packages/tex.scm:1837 msgid "" "The package provides hyphenation patterns for unaccented\n" "Chinese pinyin T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1652 +#: gnu/packages/tex.scm:1849 msgid "" "The package provides hyphenation patterns for Church\n" "Slavonic in UTF-8 encoding." msgstr "" -#: gnu/packages/tex.scm:1665 +#: gnu/packages/tex.scm:1862 msgid "" "The package provides hyphenation patterns for Coptic in\n" "UTF-8 encoding as well as in ASCII-based encoding for 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:1678 +#: gnu/packages/tex.scm:1875 msgid "" "The package provides hyphenation patterns for Croatian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1690 +#: gnu/packages/tex.scm:1887 msgid "" "The package provides hyphenation patterns for Czech in T1/EC\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1702 +#: gnu/packages/tex.scm:1899 msgid "" "The package provides hyphenation patterns for Danish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1715 +#: gnu/packages/tex.scm:1912 msgid "" "The package provides hyphenation patterns for Dutch in T1/EC\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1728 +#: gnu/packages/tex.scm:1925 msgid "" "The package provides additional hyphenation patterns for\n" "American and British English in ASCII encoding." msgstr "" -#: gnu/packages/tex.scm:1742 +#: gnu/packages/tex.scm:1939 msgid "" "The package provides hyphenation patterns for Esperanto ISO\n" "Latin 3 and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1754 +#: gnu/packages/tex.scm:1951 msgid "" "The package provides hyphenation patterns for Estonian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1768 +#: gnu/packages/tex.scm:1965 msgid "" "The package provides hyphenation patterns for languages\n" "written using the Ethiopic script for Unicode engines. They are not supposed\n" @@ -16797,94 +16957,94 @@ msgid "" "be replaced by files tailored to individual languages." msgstr "" -#: gnu/packages/tex.scm:1782 +#: gnu/packages/tex.scm:1979 msgid "" "The package provides hyphenation patterns for Finnish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1794 +#: gnu/packages/tex.scm:1991 msgid "" "The package provides hyphenation patterns for Finnish for\n" "school in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1806 +#: gnu/packages/tex.scm:2003 msgid "" "The package provides hyphenation patterns for French in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1818 +#: gnu/packages/tex.scm:2015 msgid "" "The package provides hyphenation patterns for Friulan in\n" "ASCII encodings." msgstr "" -#: gnu/packages/tex.scm:1831 +#: gnu/packages/tex.scm:2028 msgid "" "The package provides hyphenation patterns for Galician in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1843 +#: gnu/packages/tex.scm:2040 msgid "" "The package provides hyphenation patterns for Georgian in\n" "T8M, T8K, and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1861 +#: gnu/packages/tex.scm:2058 msgid "" "This package provides hyphenation patterns for German in\n" "T1/EC and UTF-8 encodings, for traditional and reformed spelling, including\n" "Swiss German." msgstr "" -#: gnu/packages/tex.scm:1880 +#: gnu/packages/tex.scm:2077 msgid "" "This package provides hyphenation patterns for Modern Greek\n" "in monotonic and polytonic spelling in LGR and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1894 +#: gnu/packages/tex.scm:2091 msgid "" "This package provides hyphenation patterns for Hungarian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1907 +#: gnu/packages/tex.scm:2104 msgid "" "This package provides hyphenation patterns for Icelandic in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1930 +#: gnu/packages/tex.scm:2127 msgid "" "This package provides hyphenation patterns for Assamese,\n" "Bengali, Gujarati, Hindi, Kannada, Malayalam, Marathi, Oriya, Panjabi, Tamil\n" "and Telugu for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:1943 +#: gnu/packages/tex.scm:2140 msgid "" "This package provides hyphenation patterns for\n" "Indonesian (Bahasa Indonesia) in ASCII encoding. They are probably also\n" "usable for Malay (Bahasa Melayu)." msgstr "" -#: gnu/packages/tex.scm:1956 +#: gnu/packages/tex.scm:2153 msgid "" "This package provides hyphenation patterns for Interlingua\n" "in ASCII encoding." msgstr "" -#: gnu/packages/tex.scm:1968 +#: gnu/packages/tex.scm:2165 msgid "" "This package provides hyphenation patterns for\n" "Irish (Gaeilge) in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1981 +#: gnu/packages/tex.scm:2178 msgid "" "This package provides hyphenation patterns for Italian in\n" "ASCII encoding. Compliant with the Recommendation UNI 6461 on hyphenation\n" @@ -16892,14 +17052,14 @@ msgid "" "UNI)." msgstr "" -#: gnu/packages/tex.scm:1995 +#: gnu/packages/tex.scm:2192 msgid "" "This package provides hyphenation patterns for\n" "Kurmanji (Northern Kurdish) as spoken in Turkey and by the Kurdish diaspora in\n" "Europe, in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2011 +#: gnu/packages/tex.scm:2208 msgid "" "This package provides hyphenation patterns for Latin in\n" "T1/EC and UTF-8 encodings, mainly in modern spelling (u when u is needed and v\n" @@ -16913,37 +17073,37 @@ msgid "" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2032 +#: gnu/packages/tex.scm:2229 msgid "" "This package provides hyphenation patterns for Latvian in\n" "L7X and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2045 +#: gnu/packages/tex.scm:2242 msgid "" "This package provides hyphenation patterns for Lithuanian in\n" "L7X and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2060 +#: gnu/packages/tex.scm:2257 #, fuzzy #| msgid "This package provides an database interface for Perl." -msgid "This package provides hypenation patterns for Macedonian." +msgid "This package provides hyphenation patterns for Macedonian." msgstr "이 꾸러미는 펄을 위한 데이타베이스 연결장치를 제공합니다." -#: gnu/packages/tex.scm:2073 +#: gnu/packages/tex.scm:2270 msgid "" "This package provides hyphenation patterns for Mongolian in\n" "T2A, LMC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2088 +#: gnu/packages/tex.scm:2285 msgid "" "This package provides hyphenation patterns for Norwegian\n" "Bokmal and Nynorsk in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2102 +#: gnu/packages/tex.scm:2299 msgid "" "This package provides hyphenation patterns for Occitan in\n" "T1/EC and UTF-8 encodings. They are supposed to be valid for all the Occitan\n" @@ -16952,94 +17112,94 @@ msgid "" "Alps encompassing the southern half of the French pentagon." msgstr "" -#: gnu/packages/tex.scm:2117 +#: gnu/packages/tex.scm:2314 msgid "" "This package provides hyphenation patterns for Panjabi in\n" "T1/EC encoding." msgstr "" -#: gnu/packages/tex.scm:2130 +#: gnu/packages/tex.scm:2327 msgid "" "This package provides hyphenation patterns for Piedmontese\n" "in ASCII encoding. Compliant with 'Gramatica dla lengua piemonteisa' by\n" "Camillo Brero." msgstr "" -#: gnu/packages/tex.scm:2143 +#: gnu/packages/tex.scm:2340 msgid "" "This package provides hyphenation patterns for Polish in QX\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2156 +#: gnu/packages/tex.scm:2353 msgid "" "This package provides hyphenation patterns for Portuguese in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2168 +#: gnu/packages/tex.scm:2365 msgid "" "This package provides hyphenation patterns for Romanian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2181 +#: gnu/packages/tex.scm:2378 msgid "" "This package provides hyphenation patterns for Romansh in\n" "ASCII encodings. They are supposed to comply with the rules indicated by the\n" "Lia Rumantscha (Romansh language society)." msgstr "" -#: gnu/packages/tex.scm:2194 +#: gnu/packages/tex.scm:2391 msgid "" "This package provides hyphenation patterns for Russian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2207 +#: gnu/packages/tex.scm:2404 msgid "" "This package provides hyphenation patterns for Sanskrit and\n" "Prakrit in longdesc transliteration, and in Devanagari, Bengali, Kannada,\n" "Malayalam longdesc and Telugu scripts for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:2224 +#: gnu/packages/tex.scm:2421 msgid "" "This package provides hyphenation patterns for Serbian in\n" "T1/EC, T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2237 +#: gnu/packages/tex.scm:2434 msgid "" "This package provides hyphenation patterns for Slovak in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2249 +#: gnu/packages/tex.scm:2446 msgid "" "This package provides hyphenation patterns for Slovenian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2265 +#: gnu/packages/tex.scm:2462 msgid "" "The package provides hyphenation patterns for Spanish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2277 +#: gnu/packages/tex.scm:2474 msgid "" "This package provides hyphenation patterns for Swedish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2289 +#: gnu/packages/tex.scm:2486 msgid "" "This package provides hyphenation patterns for Thai in LTH\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2302 +#: gnu/packages/tex.scm:2499 msgid "" "The package provides hyphenation patterns for Turkish in\n" "T1/EC and UTF-8 encodings. The patterns for Turkish were first produced for\n" @@ -17049,31 +17209,31 @@ msgid "" "compatibility with 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:2319 +#: gnu/packages/tex.scm:2516 msgid "" "The package provides hyphenation patterns for Turkmen in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2331 +#: gnu/packages/tex.scm:2528 msgid "" "This package provides hyphenation patterns for Ukrainian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2344 +#: gnu/packages/tex.scm:2541 msgid "" "This package provides hyphenation patterns for Upper Sorbian\n" "in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2356 +#: gnu/packages/tex.scm:2553 msgid "" "This package provides hyphenation patterns for Welsh in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2477 +#: gnu/packages/tex.scm:2674 msgid "" "Modern native UTF-8 engines such as XeTeX and LuaTeX need\n" "hyphenation patterns in UTF-8 format, whereas older systems require\n" @@ -17086,7 +17246,7 @@ msgid "" "converters, will completely supplant the older patterns." msgstr "" -#: gnu/packages/tex.scm:2521 +#: gnu/packages/tex.scm:2718 msgid "" "The package provides experimental hyphenation patterns for\n" "the German language, covering both traditional and reformed orthography. The\n" @@ -17094,21 +17254,29 @@ msgid "" "bundle." msgstr "" -#: gnu/packages/tex.scm:2542 +#: gnu/packages/tex.scm:2739 msgid "" "The package provides a range of hyphenation patterns for\n" "Ukrainian, depending on the encoding of the output font including the standard\n" "T2A." msgstr "" -#: gnu/packages/tex.scm:2577 +#: gnu/packages/tex.scm:2774 msgid "" "The package provides a collection of Russian hyphenation\n" "patterns supporting a number of Cyrillic font encodings, including T2,\n" "UCY (Omega Unicode Cyrillic), LCY, LWN (OT2), and koi8-r." msgstr "" -#: gnu/packages/tex.scm:2620 +#: gnu/packages/tex.scm:2792 +msgid "" +"This package deals with input encodings. It provides a wider range of input\n" +"encodings using standard mappings, than does inputenc; it also covers nearly all\n" +"slots. In this way, it serves as more uptodate replacement for package\n" +"inputenc." +msgstr "" + +#: gnu/packages/tex.scm:2853 msgid "" "Kpathsea is a library and utility programs which provide\n" "path searching facilities for TeX file types, including the self-locating\n" @@ -17116,13 +17284,27 @@ msgid "" "mechanism. This package provides supporting files." msgstr "" -#: gnu/packages/tex.scm:2636 +#: gnu/packages/tex.scm:2876 +msgid "" +"The family contains text fonts in roman, sans-serif and monospaced\n" +"shapes, with true small caps and old-style numbers; the package offers full\n" +"support of the textcomp package. The mathematics fonts include all the AMS\n" +"fonts, in both normal and bold weights. Each of the font types is available\n" +"in two main versions: default and light. Each version is available in four\n" +"variants: default; oldstyle numbers; oldstyle numbers with old ligatures such\n" +"as ct and st, and long-tailed capital Q; and veryoldstyle with long s. Other\n" +"variants include small caps as default or large small caps, and for\n" +"mathematics both upright and slanted shapes for Greek letters, as well as\n" +"default and narrow versions of multiple integrals." +msgstr "" + +#: gnu/packages/tex.scm:2898 msgid "" "The package provides configuration files for LaTeX-related\n" "formats." msgstr "" -#: gnu/packages/tex.scm:2867 +#: gnu/packages/tex.scm:3127 msgid "" "This bundle comprises the source of LaTeX itself, together with several\n" "packages which are considered \"part of the kernel\". This bundle, together\n" @@ -17130,7 +17312,7 @@ msgid "" "contain." msgstr "" -#: gnu/packages/tex.scm:2885 +#: gnu/packages/tex.scm:3145 msgid "" "This LaTeX packages provides two hooks for @code{\\end@{document@}}\n" "that are executed after the hook of @code{\\AtEndDocument}:\n" @@ -17140,13 +17322,13 @@ msgid "" "of the @file{.aux} file." msgstr "" -#: gnu/packages/tex.scm:2905 +#: gnu/packages/tex.scm:3165 msgid "" "This package provides hooks for adding code at the beginning of\n" "@file{.aux} files." msgstr "" -#: gnu/packages/tex.scm:2921 +#: gnu/packages/tex.scm:3181 msgid "" "The package adds support for EPS files in the @code{graphicx} package\n" "when running under pdfTeX. If an EPS graphic is detected, the package\n" @@ -17154,7 +17336,7 @@ msgid "" "@command{epstopdf}." msgstr "" -#: gnu/packages/tex.scm:2943 +#: gnu/packages/tex.scm:3203 msgid "" "LaTeX2e's @code{filecontents} and @code{filecontents*} environments\n" "enable a LaTeX source file to generate external files as it runs through\n" @@ -17165,7 +17347,7 @@ msgid "" "@code{filecontents*} anywhere." msgstr "" -#: gnu/packages/tex.scm:2964 +#: gnu/packages/tex.scm:3224 msgid "" "This package provides the original (and now obsolescent) graphics\n" "inclusion macros for use with dvips, still widely used by Plain TeX users (in\n" @@ -17175,7 +17357,7 @@ msgid "" "users, via its Plain TeX version.)" msgstr "" -#: gnu/packages/tex.scm:2986 +#: gnu/packages/tex.scm:3246 msgid "" "This package provides tools for the flexible handling of verbatim text\n" "including: verbatim commands in footnotes; a variety of verbatim environments\n" @@ -17185,7 +17367,7 @@ msgid "" "verbatim source)." msgstr "" -#: gnu/packages/tex.scm:3008 +#: gnu/packages/tex.scm:3268 msgid "" "This bundle is a combined distribution consisting of @file{dvips.def},\n" "@file{pdftex.def}, @file{luatex.def}, @file{xetex.def}, @file{dvipdfmx.def},\n" @@ -17193,13 +17375,19 @@ msgid "" "packages." msgstr "" -#: gnu/packages/tex.scm:3026 +#: gnu/packages/tex.scm:3286 msgid "" "This bundle includes @file{color.cfg} and @file{graphics.cfg} files that\n" "set default \"driver\" options for the color and graphics packages." msgstr "" -#: gnu/packages/tex.scm:3048 +#: gnu/packages/tex.scm:3303 +msgid "" +"The package provides Greek LICR macro definitions and encoding definition files\n" +"for Greek text font encodings for use with fontenc." +msgstr "" + +#: gnu/packages/tex.scm:3325 msgid "" "This is a collection of LaTeX packages for producing color, including\n" "graphics (e.g. PostScript) files, and rotation and scaling of text in LaTeX\n" @@ -17207,13 +17395,13 @@ msgid "" "keyval, and lscape." msgstr "" -#: gnu/packages/tex.scm:3066 +#: gnu/packages/tex.scm:3343 msgid "" "This package provides the code for the @code{color} option that is\n" "used by @code{hyperref} and @code{bookmark}." msgstr "" -#: gnu/packages/tex.scm:3098 +#: gnu/packages/tex.scm:3375 msgid "" "The package starts from the basic facilities of the colorcolor package,\n" "and provides easy driver-independent access to several kinds of color tints,\n" @@ -17224,7 +17412,7 @@ msgid "" "tables." msgstr "" -#: gnu/packages/tex.scm:3171 +#: gnu/packages/tex.scm:3448 msgid "" "The package provides an implementation of a parser for\n" "documents matching the XML 1.0 and XML Namespace Recommendations. Element and\n" @@ -17232,7 +17420,7 @@ msgid "" "XML, using UTF-8 or a suitable 8-bit encoding." msgstr "" -#: gnu/packages/tex.scm:3222 +#: gnu/packages/tex.scm:3499 msgid "" "The @code{hyperref} package is used to handle cross-referencing commands\n" "in LaTeX to produce hypertext links in the document. The package provides\n" @@ -17244,20 +17432,20 @@ msgid "" "@code{nameref} packages, which make use of the facilities of @code{hyperref}." msgstr "" -#: gnu/packages/tex.scm:3262 +#: gnu/packages/tex.scm:3539 msgid "" "The bundle comprises various LaTeX packages, providing among others:\n" "better accessibility support for PDF files; extensible chemists reaction\n" "arrows; record information about document class(es) used; and many more." msgstr "" -#: gnu/packages/tex.scm:3285 +#: gnu/packages/tex.scm:3562 msgid "" "This package provides additional rerun warnings if some auxiliary\n" "files have changed. It is based on MD5 checksum, provided by pdfTeX." msgstr "" -#: gnu/packages/tex.scm:3319 +#: gnu/packages/tex.scm:3596 msgid "" "This package is a collection of (variously) simple tools provided as\n" "part of the LaTeX required tools distribution, comprising the following\n" @@ -17267,7 +17455,7 @@ msgid "" "xr, and xspace." msgstr "" -#: gnu/packages/tex.scm:3338 +#: gnu/packages/tex.scm:3615 msgid "" "The command @code{\\url} is a form of verbatim command that\n" "allows linebreaks at certain characters or combinations of characters, accepts\n" @@ -17279,14 +17467,14 @@ msgid "" "of file names." msgstr "" -#: gnu/packages/tex.scm:3364 +#: gnu/packages/tex.scm:3641 msgid "" "This package provides font maps that were originally part of\n" "the now obsolete teTeX distributions but are still used at the core of the TeX\n" "Live distribution." msgstr "" -#: gnu/packages/tex.scm:3391 +#: gnu/packages/tex.scm:3668 msgid "" "The l3kernel bundle provides an implementation of the LaTeX3\n" "programmers’ interface, as a set of packages that run under LaTeX 2e. The\n" @@ -17295,7 +17483,7 @@ msgid "" "that the LaTeX3 conventions can be used with regular LaTeX 2e packages." msgstr "" -#: gnu/packages/tex.scm:3420 +#: gnu/packages/tex.scm:3697 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" @@ -17304,7 +17492,7 @@ msgid "" "an independent schedule." msgstr "" -#: gnu/packages/tex.scm:3484 +#: gnu/packages/tex.scm:3761 msgid "" "This bundle holds prototype implementations of concepts for a LaTeX\n" "designer interface, to be used with the experimental LaTeX kernel as\n" @@ -17321,14 +17509,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:3511 +#: gnu/packages/tex.scm:3788 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" "here are defined for the dvips engine only." msgstr "" -#: gnu/packages/tex.scm:3539 +#: gnu/packages/tex.scm:3816 msgid "" "Fontspec is a package for XeLaTeX and LuaLaTeX. It provides an\n" "automatic and unified interface to feature-rich AAT and OpenType fonts through\n" @@ -17336,7 +17524,7 @@ msgid "" "the l3kernel and xparse bundles from the LaTeX 3 development team." msgstr "" -#: gnu/packages/tex.scm:3569 +#: gnu/packages/tex.scm:3846 msgid "" "The original grffile package extended the file name processing of the\n" "@code{graphics} package to support a larger range of file names. The base\n" @@ -17344,13 +17532,13 @@ msgid "" "is a stub that just loads @code{graphicx}." msgstr "" -#: gnu/packages/tex.scm:3610 +#: gnu/packages/tex.scm:3887 msgid "" "This package provides @code{\\StringEncodingConvert} for converting a\n" "string between different encodings. Both LaTeX and plain-TeX are supported." msgstr "" -#: gnu/packages/tex.scm:3653 +#: gnu/packages/tex.scm:3930 msgid "" "The l3build module is designed to support the development of\n" "high-quality LaTeX code by providing: a unit testing system, automated\n" @@ -17359,14 +17547,20 @@ msgid "" "@code{.tex} file which provides the testing environment." msgstr "" -#: gnu/packages/tex.scm:3690 +#: gnu/packages/tex.scm:3953 msgid "" "Lualibs is a collection of Lua modules useful for general programming.\n" "The bundle is based on Lua modules shipped with ConTeXt, and made available in\n" "this bundle for use independent of ConTeXt." msgstr "" -#: gnu/packages/tex.scm:3718 +#: gnu/packages/tex.scm:3972 +msgid "" +"This package provides a Lua module for processing application arguments\n" +"in the same way as BSD/GNU @code{getopt_long(3)} functions do." +msgstr "" + +#: gnu/packages/tex.scm:3999 msgid "" "Luaotfload is an adaptation of the ConTeXt font loading system for the\n" "Plain and LaTeX formats. It allows OpenType fonts to be loaded with font\n" @@ -17375,11 +17569,7 @@ msgid "" "loading fonts by their proper names instead of file names." msgstr "" -#: gnu/packages/tex.scm:3790 -msgid "This package is necessary to use LaTeX with the LuaTeX engine." -msgstr "" - -#: gnu/packages/tex.scm:3809 +#: gnu/packages/tex.scm:4025 msgid "" "This is the principal package in the AMS-LaTeX distribution. It adapts\n" "for use in LaTeX most of the mathematical features found in AMS-TeX; it is\n" @@ -17394,7 +17584,7 @@ msgid "" "definitions." msgstr "" -#: gnu/packages/tex.scm:3843 +#: gnu/packages/tex.scm:4059 msgid "" "This bundle contains three AMS classes: @code{amsartamsart} (for writing\n" "articles for the AMS), @code{amsbookamsbook} (for books) and\n" @@ -17403,7 +17593,7 @@ msgid "" "distribution." msgstr "" -#: gnu/packages/tex.scm:3890 +#: gnu/packages/tex.scm:4106 msgid "" "The package manages culturally-determined typographical (and other)\n" "rules, and hyphenation patterns for a wide range of languages. A document may\n" @@ -17414,7 +17604,7 @@ msgid "" "polyglossia package rather than Babel." msgstr "" -#: gnu/packages/tex.scm:3917 +#: gnu/packages/tex.scm:4133 msgid "" "This package provides the language definition file for support of\n" "English in @code{babel}. Care is taken to select British hyphenation patterns\n" @@ -17422,13 +17612,14 @@ msgid "" "for Canadian and USA text." msgstr "" -#: gnu/packages/tex.scm:3939 +#: gnu/packages/tex.scm:4173 msgid "" -"This package provides support for the French language for the\n" -"babel multilingual system." +"The package, formerly known as frenchb, establishes French conventions\n" +"in a document (or a subset of the conventions, if French is not the main\n" +"language of the document)." msgstr "" -#: gnu/packages/tex.scm:3959 +#: gnu/packages/tex.scm:4196 msgid "" "This package provides the language definition file for support of German\n" "in @code{babel}. It provides all the necessary macros, definitions and\n" @@ -17437,14 +17628,14 @@ msgid "" "Swiss varieties of German." msgstr "" -#: gnu/packages/tex.scm:3986 +#: gnu/packages/tex.scm:4223 msgid "" "This package provides the language definition file for\n" "support of Swedish in @code{babel}. It provides all the necessary macros,\n" "definitions and settings to typeset Swedish documents." msgstr "" -#: gnu/packages/tex.scm:4008 +#: gnu/packages/tex.scm:4245 msgid "" "This bundle of macros files provides macro support (including font\n" "encoding macros) for the use of Cyrillic characters in fonts encoded under the\n" @@ -17452,7 +17643,7 @@ msgid "" "language that is written in a Cyrillic alphabet." msgstr "" -#: gnu/packages/tex.scm:4126 +#: gnu/packages/tex.scm:4363 msgid "" "The PSNFSS collection includes a set of files that provide a complete\n" "working setup of the LaTeX font selection scheme (NFSS2) for use with common\n" @@ -17467,20 +17658,20 @@ msgid "" "part of the LaTeX required set of packages." msgstr "" -#: gnu/packages/tex.scm:4177 gnu/packages/tex.scm:4269 +#: gnu/packages/tex.scm:4414 gnu/packages/tex.scm:4506 msgid "" "This is a very limited subset of the TeX Live distribution.\n" "It includes little more than the required set of LaTeX packages." msgstr "" -#: gnu/packages/tex.scm:4248 +#: gnu/packages/tex.scm:4485 msgid "" "This package contains the fonts map configuration file\n" "generated for the base TeX Live packages as well as, optionally, user-provided\n" "ones." msgstr "" -#: gnu/packages/tex.scm:4288 +#: gnu/packages/tex.scm:4525 msgid "" "These fonts are considered the \"ultimate answer\" to IPA\n" "typesetting. The encoding of these 8-bit fonts has been registered as LaTeX\n" @@ -17489,7 +17680,7 @@ msgid "" "TS3 fonts." msgstr "" -#: gnu/packages/tex.scm:4311 +#: gnu/packages/tex.scm:4548 msgid "" "Amsrefs is a LaTeX package for bibliographies that provides an archival\n" "data format similar to the format of BibTeX database files, but adapted to\n" @@ -17497,7 +17688,7 @@ msgid "" "conjunction with BibTeX or as a replacement for BibTeX." msgstr "" -#: gnu/packages/tex.scm:4340 +#: gnu/packages/tex.scm:4577 msgid "" "This package aims to provide a one-stop solution to requirements for\n" "footnotes. It offers: Multiple footnote apparatus superior to that of\n" @@ -17511,7 +17702,7 @@ msgid "" "@code{suffix} packages." msgstr "" -#: gnu/packages/tex.scm:4368 +#: gnu/packages/tex.scm:4605 msgid "" "The package provides the commands @code{\\blindtext} and\n" "@code{\\Blindtext} for creating \"blind\" text useful in testing new classes\n" @@ -17522,7 +17713,7 @@ msgid "" "ipsum\" text, see the @code{lipsum} package)." msgstr "" -#: gnu/packages/tex.scm:4407 +#: gnu/packages/tex.scm:4644 msgid "" "This package implements a document layout for writing letters according\n" "to the rules of DIN (Deutsches Institut für Normung, German standardisation\n" @@ -17534,7 +17725,7 @@ msgid "" "package." msgstr "" -#: gnu/packages/tex.scm:4433 +#: gnu/packages/tex.scm:4670 msgid "" "This package provides a means to add a textual, light grey watermark on\n" "every page or on the first page of a document. Typical usage may consist in\n" @@ -17544,7 +17735,7 @@ msgid "" "on everypage." msgstr "" -#: gnu/packages/tex.scm:4457 +#: gnu/packages/tex.scm:4694 msgid "" "This package provides the @code{\\collect@@body} command (as in\n" "@code{amsmath}), as well as a @code{\\long} version @code{\\Collect@@Body},\n" @@ -17552,7 +17743,7 @@ msgid "" "define a new author interface to creating new environments." msgstr "" -#: gnu/packages/tex.scm:4479 +#: gnu/packages/tex.scm:4716 msgid "" "LaTeX users sometimes need to ensure that two or more blocks of text\n" "occupy the same amount of horizontal space on the page. To that end, the\n" @@ -17566,7 +17757,7 @@ msgid "" "also provided." msgstr "" -#: gnu/packages/tex.scm:4504 +#: gnu/packages/tex.scm:4741 msgid "" "This package gives the user complete control of how the entries of\n" "the table of contents should be constituted from the name, number, and page\n" @@ -17586,7 +17777,7 @@ msgid "" "table of contents." msgstr "" -#: gnu/packages/tex.scm:4546 +#: gnu/packages/tex.scm:4783 msgid "" "The package provides additional features for the LaTeX\n" "@code{description} environment, including adjustable left margin. The package\n" @@ -17595,7 +17786,7 @@ msgid "" "@code{enumerate} lists, and numbered lists remain in sequence)." msgstr "" -#: gnu/packages/tex.scm:4566 +#: gnu/packages/tex.scm:4803 msgid "" "This package provides macros to read and compare the modification dates\n" "of files. The files may be @code{.tex} files, images or other files (as long\n" @@ -17607,14 +17798,14 @@ msgid "" "but non-expandable ones." msgstr "" -#: gnu/packages/tex.scm:4589 +#: gnu/packages/tex.scm:4826 msgid "" "The @code{hanging} package facilitates the typesetting of hanging\n" "paragraphs. The package also enables typesetting with hanging punctuation,\n" "by making punctuation characters active." msgstr "" -#: gnu/packages/tex.scm:4612 +#: gnu/packages/tex.scm:4849 msgid "" "This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX support for\n" "the Fira Sans family of fonts designed by Erik Spiekermann and Ralph du\n" @@ -17622,7 +17813,7 @@ msgid "" "corresponding italics: light, regular, medium, bold, ..." msgstr "" -#: gnu/packages/tex.scm:4635 +#: gnu/packages/tex.scm:4872 msgid "" "This package uses the (La)TeX extension @code{-shell-escape} to\n" "establish whether the document is being processed on a Windows or on a\n" @@ -17633,7 +17824,7 @@ msgid "" "classes of systems." msgstr "" -#: gnu/packages/tex.scm:4660 +#: gnu/packages/tex.scm:4897 msgid "" "This bundle provides a package that implements both author-year and\n" "numbered references, as well as much detailed of support for other\n" @@ -17643,20 +17834,20 @@ msgid "" "designed from the start to be compatible with @code{natbib}." msgstr "" -#: gnu/packages/tex.scm:4679 +#: gnu/packages/tex.scm:4916 msgid "" "This package provides a friendly interface for defining the meaning of\n" "Unicode characters. The document should be processed by (pdf)LaTeX with the\n" "Unicode option of @code{inputenc} or @code{inputenx}, or by XeLaTeX/LuaLaTeX." msgstr "" -#: gnu/packages/tex.scm:4699 +#: gnu/packages/tex.scm:4936 msgid "" "This package makes a number of utility functions from pdfTeX\n" "available for luaTeX by reimplementing them using Lua." msgstr "" -#: gnu/packages/tex.scm:4719 +#: gnu/packages/tex.scm:4956 msgid "" "This package allows LaTeX constructions (equations, picture\n" "environments, etc.) to be precisely superimposed over Encapsulated PostScript\n" @@ -17667,7 +17858,7 @@ msgid "" "rotated." msgstr "" -#: gnu/packages/tex.scm:4751 +#: gnu/packages/tex.scm:4988 msgid "" "This is a package for processing PostScript graphics with @code{psfrag}\n" "labels within pdfLaTeX documents. Every graphic is compiled individually,\n" @@ -17675,7 +17866,7 @@ msgid "" "re-processing." msgstr "" -#: gnu/packages/tex.scm:4771 +#: gnu/packages/tex.scm:5008 msgid "" "This package provides the @code{\\setcounterref} and\n" "@code{\\addtocounterref} commands which use the section (or other) number\n" @@ -17684,7 +17875,7 @@ msgid "" "corresponding thing with the page reference of the label." msgstr "" -#: gnu/packages/tex.scm:4791 +#: gnu/packages/tex.scm:5028 msgid "" "This package provides a class that produces overhead\n" "slides (transparencies), with many facilities. Seminar is not nowadays\n" @@ -17693,14 +17884,14 @@ msgid "" "21st-century presentation styles." msgstr "" -#: gnu/packages/tex.scm:4812 +#: gnu/packages/tex.scm:5049 msgid "" "The package provides a versatile way to stack objects vertically in a\n" "variety of customizable ways. A number of useful macros are provided, all\n" "of which make use of the @code{stackengine} core." msgstr "" -#: gnu/packages/tex.scm:4828 +#: gnu/packages/tex.scm:5065 msgid "" "This package provides control over the typography of the\n" "@dfn{Table of Contents}, @dfn{List of Figures} and @dfn{List of Tables},\n" @@ -17708,7 +17899,7 @@ msgid "" "be changed." msgstr "" -#: gnu/packages/tex.scm:4862 +#: gnu/packages/tex.scm:5099 msgid "" "This very short package allows you to expandably remove spaces around a\n" "token list (commands are provided to remove spaces before, spaces after, or\n" @@ -17716,13 +17907,28 @@ msgid "" "space-stripped macros." msgstr "" -#: gnu/packages/tex.scm:4897 +#: gnu/packages/tex.scm:5115 +#, fuzzy +#| msgid "This package provides an database interface for Perl." +msgid "This package provides a math interface to the Rsfs fonts." +msgstr "이 꾸러미는 펄을 위한 데이타베이스 연결장치를 제공합니다." + +#: gnu/packages/tex.scm:5152 msgid "" "This package defines a command @code{\\captionof} for putting a caption\n" "to something that's not a float." msgstr "" -#: gnu/packages/tex.scm:4913 +#: gnu/packages/tex.scm:5170 +msgid "" +"Many of David Carlisle's more substantial packages stand on their own,\n" +"or as part of the LaTeX latex-tools set; this set contains: making dotless\n" +"@emph{j} characters for fonts that don't have them; a method for combining the\n" +"capabilities of longtable and tabularx; an environment for including plain TeX\n" +"in LaTeX documents; a jiffy to create slashed characters for physicists." +msgstr "" + +#: gnu/packages/tex.scm:5189 msgid "" "You can hyperlink DOI numbers to doi.org. However, some publishers have\n" "elected to use nasty characters in their DOI numbering scheme (@code{<},\n" @@ -17732,7 +17938,7 @@ msgid "" "hyperlink to the target of the DOI." msgstr "" -#: gnu/packages/tex.scm:4936 +#: gnu/packages/tex.scm:5212 msgid "" "This package is a toolbox of programming facilities geared primarily\n" "towards LaTeX class and package authors. It provides LaTeX frontends to some\n" @@ -17743,7 +17949,7 @@ msgid "" "of the LaTeX kernel." msgstr "" -#: gnu/packages/tex.scm:4976 +#: gnu/packages/tex.scm:5252 msgid "" "This package provides seven predefined chapter heading styles. Each\n" "style can be modified using a set of simple commands. Optionally one can\n" @@ -17751,7 +17957,7 @@ msgid "" "headings." msgstr "" -#: gnu/packages/tex.scm:5011 +#: gnu/packages/tex.scm:5287 msgid "" "The package creates three environments: @code{framed}, which puts an\n" "ordinary frame box around the region, @code{shaded}, which shades the region,\n" @@ -17762,7 +17968,7 @@ msgid "" "@code{\\MakeFramed} to make your own framed-style environments." msgstr "" -#: gnu/packages/tex.scm:5045 +#: gnu/packages/tex.scm:5321 msgid "" "This package is designed for formatting formless letters in German; it\n" "can also be used for English (by those who can read the documentation). There\n" @@ -17770,13 +17976,13 @@ msgid "" "\"old\" and a \"new\" version of g-brief." msgstr "" -#: gnu/packages/tex.scm:5067 +#: gnu/packages/tex.scm:5343 msgid "" "The package deals with connections in two-dimensional style, optionally\n" "in colour." msgstr "" -#: gnu/packages/tex.scm:5087 +#: gnu/packages/tex.scm:5363 msgid "" "The package allows citations in the German style, which is considered by\n" "many to be particularly reader-friendly. The citation provides a small amount\n" @@ -17786,7 +17992,7 @@ msgid "" "BibLaTeX, and is considered experimental." msgstr "" -#: gnu/packages/tex.scm:5113 +#: gnu/packages/tex.scm:5389 msgid "" "This package provides an easy and flexible user interface to customize\n" "page layout, implementing auto-centering and auto-balancing mechanisms so that\n" @@ -17797,7 +18003,7 @@ msgid "" "ability to communicate the paper size it's set up to the output." msgstr "" -#: gnu/packages/tex.scm:5138 +#: gnu/packages/tex.scm:5414 msgid "" "This collection of tools includes: @code{atsupport} for short commands\n" "starting with @code{@@}, macros to sanitize the OT1 encoding of the\n" @@ -17807,13 +18013,13 @@ msgid "" "array environments; verbatim handling; and syntax diagrams." msgstr "" -#: gnu/packages/tex.scm:5162 +#: gnu/packages/tex.scm:5438 msgid "" "This package provides a complete Babel replacement for users of LuaLaTeX\n" "and XeLaTeX; it relies on the @code{fontspec} package, version 2.0 at least." msgstr "" -#: gnu/packages/tex.scm:5182 +#: gnu/packages/tex.scm:5458 msgid "" "This package was a predecessor of @code{longtable}; the newer\n" "package (designed on quite different principles) is easier to use and more\n" @@ -17821,7 +18027,7 @@ msgid "" "situations where longtable has problems." msgstr "" -#: gnu/packages/tex.scm:5217 +#: gnu/packages/tex.scm:5493 msgid "" "Texinfo is the preferred format for documentation in the GNU project;\n" "the format may be used to produce online or printed output from a single\n" @@ -17830,7 +18036,23 @@ msgid "" "hypertext linkages in some cases)." msgstr "" -#: gnu/packages/tex.scm:5240 +#: gnu/packages/tex.scm:5513 +msgid "" +"The textcase package offers commands @code{\\MakeTextUppercase} and\n" +"@code{\\MakeTextLowercase} are similar to the standard @code{\\MakeUppercase}\n" +"and @code{\\MakeLowercase}, but they do not change the case of any sections of\n" +"mathematics, or the arguments of @code{\\cite}, @code{\\label} and\n" +"@code{\\ref} commands within the argument. A further command\n" +"@code{\\NoCaseChange} does nothing but suppress case change within its\n" +"argument, so to force uppercase of a section including an environment, one\n" +"might say:\n" +"\n" +"@example\n" +"\\MakeTextUppercase{...\\NoCaseChange{\\begin{foo}} ...\\NoCaseChange{\\end{foo}}...}\n" +"@end example\n" +msgstr "" + +#: gnu/packages/tex.scm:5543 msgid "" "Typewriter-style fonts are best for program listings, but Computer\n" "Modern Typewriter prints @code{`} and @code{'} as bent opening and closing\n" @@ -17844,14 +18066,14 @@ msgid "" "does not affect @code{\\tt}, @code{\\texttt}, etc." msgstr "" -#: gnu/packages/tex.scm:5281 +#: gnu/packages/tex.scm:5584 msgid "" "This is a simple package to set up document margins. This package is\n" "considered obsolete; alternatives are the @code{typearea} package from the\n" "@code{koma-script} bundle, or the @code{geometry} package." msgstr "" -#: gnu/packages/tex.scm:5302 +#: gnu/packages/tex.scm:5605 msgid "" "The appendix package provides various ways of formatting the titles of\n" "appendices. Also (sub)appendices environments are provided that can be used,\n" @@ -17860,14 +18082,14 @@ msgid "" "command." msgstr "" -#: gnu/packages/tex.scm:5321 +#: gnu/packages/tex.scm:5624 msgid "" "This package implements a new bookmark (outline) organization for the\n" "@code{hyperref} package. Bookmark properties such as style and color. Other\n" "action types are available (URI, GoToR, Named)." msgstr "" -#: gnu/packages/tex.scm:5342 +#: gnu/packages/tex.scm:5645 msgid "" "Identify areas of text to be marked with changebars with the\n" "@code{\\cbstart} and @code{\\cbend} commands; the bars may be coloured. The\n" @@ -17876,19 +18098,19 @@ msgid "" "drivers, and VTeX and pdfTeX." msgstr "" -#: gnu/packages/tex.scm:5379 +#: gnu/packages/tex.scm:5682 msgid "" "This package embeds CMap tables into PDF files to make search and\n" "copy-and-paste functions work properly." msgstr "" -#: gnu/packages/tex.scm:5399 +#: gnu/packages/tex.scm:5702 msgid "" "This package allows rows, columns, and even individual cells in LaTeX\n" "tables to be coloured." msgstr "" -#: gnu/packages/tex.scm:5432 +#: gnu/packages/tex.scm:5735 msgid "" "This package provides variants of @code{\\fbox}: @code{\\shadowbox},\n" "@code{\\doublebox}, @code{\\ovalbox}, @code{\\Ovalbox}, with helpful tools for\n" @@ -17896,14 +18118,14 @@ msgid "" "floats, center, flushleft, and flushright, lists, and pages." msgstr "" -#: gnu/packages/tex.scm:5467 +#: gnu/packages/tex.scm:5770 msgid "" "The package provides extensive facilities, both for constructing headers\n" "and footers, and for controlling their use (for example, at times when LaTeX\n" "would automatically change the heading style in use)." msgstr "" -#: gnu/packages/tex.scm:5488 +#: gnu/packages/tex.scm:5791 msgid "" "This package improves the interface for defining floating objects such\n" "as figures and tables. It introduces the boxed float, the ruled float and the\n" @@ -17913,7 +18135,7 @@ msgid "" "with @code{\\floatplacement{figure}{H}}." msgstr "" -#: gnu/packages/tex.scm:5512 +#: gnu/packages/tex.scm:5815 msgid "" "This is a collection of ways to change the typesetting of footnotes.\n" "The package provides means of changing the layout of the footnotes themselves,\n" @@ -17923,7 +18145,7 @@ msgid "" "footnotes with symbols rather than numbers." msgstr "" -#: gnu/packages/tex.scm:5532 +#: gnu/packages/tex.scm:5835 msgid "" "TeX’s @code{\\let} assignment does not work for LaTeX macros with\n" "optional arguments, or for macros that are defined as robust macros by\n" @@ -17931,7 +18153,7 @@ msgid "" "that also takes care of the involved internal macros." msgstr "" -#: gnu/packages/tex.scm:5556 +#: gnu/packages/tex.scm:5859 msgid "" "The package enables the user to typeset programs (programming code)\n" "within LaTeX; the source code is read directly by TeX---no front-end processor\n" @@ -17939,7 +18161,7 @@ msgid "" "styles. Support for @code{hyperref} is provided." msgstr "" -#: gnu/packages/tex.scm:5591 +#: gnu/packages/tex.scm:5894 msgid "" "This package provides miscellaneous macros by Joerg Knappen, including:\n" "represent counters in greek; Maxwell's non-commutative division;\n" @@ -17951,13 +18173,13 @@ msgid "" "in SGML; use maths minus in text as appropriate; simple Young tableaux." msgstr "" -#: gnu/packages/tex.scm:5615 +#: gnu/packages/tex.scm:5918 msgid "" "This package provides facilities for using key-value format in\n" "package options." msgstr "" -#: gnu/packages/tex.scm:5684 +#: gnu/packages/tex.scm:5987 msgid "" "The EC fonts are European Computer Modern Fonts, supporting the complete\n" "LaTeX T1 encoding defined at the 1990 TUG conference hold at Cork/Ireland.\n" @@ -17974,7 +18196,7 @@ msgid "" "differs from the EC in a number of particulars." msgstr "" -#: gnu/packages/tex.scm:5717 +#: gnu/packages/tex.scm:6020 msgid "" "This package provides a set of virtual fonts which emulates T1 coded\n" "fonts using the standard CM fonts. The package name, AE fonts, supposedly\n" @@ -17984,7 +18206,7 @@ msgid "" "via the CM-super, Latin Modern and (in a restricted way) CM-LGC font sets." msgstr "" -#: gnu/packages/tex.scm:5742 +#: gnu/packages/tex.scm:6045 msgid "" "Inconsolata is a monospaced font designed by Raph Levien. This package\n" "contains the font (in both Adobe Type 1 and OpenType formats) in regular and\n" @@ -17993,25 +18215,25 @@ msgid "" "TeX, and LaTeX font definition and other relevant files." msgstr "" -#: gnu/packages/tex.scm:5771 +#: gnu/packages/tex.scm:6074 msgid "" "This package provides a drop-in replacements for the Times font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5799 +#: gnu/packages/tex.scm:6102 msgid "" "This package provides a drop-in replacements for the Palatino font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5824 +#: gnu/packages/tex.scm:6127 msgid "" "This package provides a drop-in replacements for the Zapfding font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5896 +#: gnu/packages/tex.scm:6199 msgid "" "The fonts provide uppercase formal script letters for use as symbols in\n" "scientific and mathematical typesetting (in contrast to the informal script\n" @@ -18021,14 +18243,14 @@ msgid "" "one of the packages @code{calrsfs} and @code{mathrsfs}." msgstr "" -#: gnu/packages/tex.scm:5920 +#: gnu/packages/tex.scm:6223 msgid "" "The package adds one or more user commands to LaTeX's @code{shipout}\n" "routine, which may be used to place the output at fixed positions. The\n" "@code{grid} option may be used to find the correct places." msgstr "" -#: gnu/packages/tex.scm:5954 +#: gnu/packages/tex.scm:6257 msgid "" "Extensions to @code{epic} and the LaTeX picture drawing environment,\n" "include the drawing of lines at any slope, the drawing of circles in any\n" @@ -18038,7 +18260,7 @@ msgid "" "@code{\\special} commands." msgstr "" -#: gnu/packages/tex.scm:5991 +#: gnu/packages/tex.scm:6276 msgid "" "This package is intended to ease customizing the three basic list\n" "environments: @code{enumerate}, @code{itemize} and @code{description}. It\n" @@ -18047,14 +18269,14 @@ msgid "" "@code{\\begin{itemize}[itemsep=1ex,leftmargin=1cm]}." msgstr "" -#: gnu/packages/tex.scm:6014 +#: gnu/packages/tex.scm:6301 msgid "" "The package provides tools for creating tabular cells spanning multiple\n" "rows. It has a lot of flexibility, including an option for specifying an\n" "entry at the \"natural\" width of its text." msgstr "" -#: gnu/packages/tex.scm:6048 +#: gnu/packages/tex.scm:6335 msgid "" "The @code{overpic} environment is a cross between the LaTeX\n" "@code{picture} environment and the @code{\\includegraphics} command of\n" @@ -18063,14 +18285,14 @@ msgid "" "positions; a grid for orientation is available." msgstr "" -#: gnu/packages/tex.scm:6084 +#: gnu/packages/tex.scm:6371 msgid "" "Simply changing @code{\\parskip} and @code{\\parindent} leaves a layout\n" "that is untidy; this package (though it is no substitute for a properly\n" "designed class) helps alleviate this untidiness." msgstr "" -#: gnu/packages/tex.scm:6105 +#: gnu/packages/tex.scm:6392 msgid "" "This package simplifies the inclusion of external multi-page PDF\n" "documents in LaTeX documents. Pages may be freely selected and it is possible\n" @@ -18080,7 +18302,7 @@ msgid "" "use this package to insert PostScript files, in addition to PDF files." msgstr "" -#: gnu/packages/tex.scm:6146 +#: gnu/packages/tex.scm:6433 msgid "" "The fonts were originally distributed as Metafont sources only, but\n" "Adobe Type 1 versions are also now available. Macro support is provided for\n" @@ -18089,7 +18311,7 @@ msgid "" "the whole font." msgstr "" -#: gnu/packages/tex.scm:6171 +#: gnu/packages/tex.scm:6458 msgid "" "This (deprecated) package provides support for the manipulation and\n" "reference of small or \"sub\" figures and tables within a single figure or\n" @@ -18102,7 +18324,7 @@ msgid "" "the more recent @code{subcaption} package more satisfactory." msgstr "" -#: gnu/packages/tex.scm:6198 +#: gnu/packages/tex.scm:6485 msgid "" "The package defines a @code{tabular*}-like environment, @code{tabulary},\n" "taking a \"total width\" argument as well as the column specifications. The\n" @@ -18113,7 +18335,7 @@ msgid "" "according to the natural width of the widest cell in the column." msgstr "" -#: gnu/packages/tex.scm:6236 +#: gnu/packages/tex.scm:6523 msgid "" "This package facilitates tables with titles (captions) and notes. The\n" "title and notes are given a width equal to the body of the table (a\n" @@ -18122,7 +18344,7 @@ msgid "" "environment." msgstr "" -#: gnu/packages/tex.scm:6263 +#: gnu/packages/tex.scm:6550 msgid "" "Txfonts supplies virtual text roman fonts using Adobe Times (or URW\n" "NimbusRomNo9L) with some modified and additional text symbols in the OT1, T1,\n" @@ -18138,7 +18360,7 @@ msgid "" "TeX metrics (VF and TFM files) and macros for use with LaTeX." msgstr "" -#: gnu/packages/tex.scm:6312 +#: gnu/packages/tex.scm:6599 msgid "" "Iwona is a two-element sans-serif typeface. It was created\n" "as an alternative version of the Kurier typeface, which was designed in 1975\n" @@ -18149,7 +18371,7 @@ msgid "" "of ink traps which typify the Kurier font." msgstr "" -#: gnu/packages/tex.scm:6335 +#: gnu/packages/tex.scm:6622 msgid "" "This package contains a collection of macros by Jörg Knappen:\n" "@table @code\n" @@ -18185,7 +18407,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/tex.scm:6442 +#: gnu/packages/tex.scm:6729 msgid "" "JadeTeX is a companion package to the OpenJade DSSSL\n" "processor. OpenJade applies a DSSSL stylesheet to an SGML or XML document.\n" @@ -18196,7 +18418,7 @@ msgid "" "command)." msgstr "" -#: gnu/packages/tex.scm:6472 +#: gnu/packages/tex.scm:6759 msgid "" "The package provides the Libertine and Biolinum fonts in both Type 1 and\n" "OTF styles, together with support macros for their use. Monospaced and\n" @@ -18206,7 +18428,7 @@ msgid "" "@code{libertine-legacy} packages." msgstr "" -#: gnu/packages/tex.scm:6504 +#: gnu/packages/tex.scm:6791 msgid "" "The package contains LaTeX support for the DejaVu fonts, which are\n" "derived from the Vera fonts but contain more characters and styles. The fonts\n" @@ -18215,7 +18437,7 @@ msgid "" "LGR. The package doesn't (currently) support mathematics." msgstr "" -#: gnu/packages/tex.scm:6540 +#: gnu/packages/tex.scm:6827 msgid "" "This package provides an interface to sectioning commands for selection\n" "from various title styles, e.g. for marginal titles and to change the font of\n" @@ -18224,7 +18446,7 @@ msgid "" "floats in a page. You may assign headers/footers to individual floats, too." msgstr "" -#: gnu/packages/tex.scm:6563 +#: gnu/packages/tex.scm:6850 msgid "" "LaTeX, by default, restricts the sizes at which you can use its default\n" "computer modern fonts, to a fixed set of discrete sizes (effectively, a set\n" @@ -18239,7 +18461,7 @@ msgid "" "@code{ec} fonts." msgstr "" -#: gnu/packages/tex.scm:6617 +#: gnu/packages/tex.scm:6904 msgid "" "The LH fonts address the problem of the wide variety of alphabets that\n" "are written with Cyrillic-style characters. The fonts are the original basis\n" @@ -18252,7 +18474,7 @@ msgid "" "OT2 encoded fonts, CM bright shaped fonts and Concrete shaped fonts." msgstr "" -#: gnu/packages/tex.scm:6647 +#: gnu/packages/tex.scm:6934 msgid "" "The Martin Vogel’s Symbols fonts (marvosym) contains the\n" "Euro currency symbol as defined by the European commission, along with symbols\n" @@ -18262,34 +18484,41 @@ msgid "" "the derived Type 1 font, together with support files for TeX (LaTeX)." msgstr "" -#: gnu/packages/tex.scm:6685 +#: gnu/packages/tex.scm:6972 msgid "" "MetaPost uses a language based on that of Metafont to produce precise\n" "technical illustrations. Its output is scalable PostScript or SVG, rather\n" "than the bitmaps Metafont creates." msgstr "" -#: gnu/packages/tex.scm:6706 +#: gnu/packages/tex.scm:6993 msgid "" "This package provides a class for typesetting publications of the\n" "Association for Computing Machinery (ACM)." msgstr "" -#: gnu/packages/tex.scm:6739 +#: gnu/packages/tex.scm:7026 msgid "" "The @code{varwidth} environment is superficially similar to\n" "@code{minipage}, but the specified width is just a maximum value — the box may\n" "get a narrower “natural” width." msgstr "" -#: gnu/packages/tex.scm:6757 +#: gnu/packages/tex.scm:7041 +msgid "" +"The varwidth environment is superficially similar to minipage, but the\n" +"specified width is just a maximum value --- the box may get a narrower natural\n" +"width." +msgstr "" + +#: gnu/packages/tex.scm:7059 msgid "" "This package provides the @code{wasy} (Waldi symbol) fonts,\n" "in the Metafont and Adobe Type 1 formats. Support under LaTeX is provided by\n" "the @code{wasysym} package." msgstr "" -#: gnu/packages/tex.scm:6778 +#: gnu/packages/tex.scm:7080 msgid "" "The @code{wasy} (Waldi Symbol) font by Roland Waldi provides many glyphs like\n" "male and female symbols and astronomical symbols, as well as the complete\n" @@ -18297,14 +18526,14 @@ msgid "" "implements an easy to use interface for these symbols." msgstr "" -#: gnu/packages/tex.scm:6815 +#: gnu/packages/tex.scm:7117 msgid "" "This package allows figures or tables to have text wrapped around them.\n" "It does not work in combination with list environments, but can be used in a\n" "@code{parbox} or @code{minipage}, and in two-column format." msgstr "" -#: gnu/packages/tex.scm:6849 +#: gnu/packages/tex.scm:7151 msgid "" "The bundle provides the @code{ucs} package, and @code{utf8x.def},\n" "together with a large number of support files. The @code{utf8x.def}\n" @@ -18317,7 +18546,7 @@ msgid "" "package of that name now exists." msgstr "" -#: gnu/packages/tex.scm:6883 +#: gnu/packages/tex.scm:7185 msgid "" "The main purpose of the preview package is the extraction of selected\n" "elements from a LaTeX source, like formulas or graphics, into separate\n" @@ -18328,7 +18557,7 @@ msgid "" "files." msgstr "" -#: gnu/packages/tex.scm:6908 +#: gnu/packages/tex.scm:7210 msgid "" "This package ensures that all acronyms used in the text are spelled out\n" "in full at least once. It also provides an environment to build a list of\n" @@ -18337,13 +18566,13 @@ msgid "" "e-TeX." msgstr "" -#: gnu/packages/tex.scm:6945 +#: gnu/packages/tex.scm:7247 msgid "" "This package provides an extension of TeX which can be configured to\n" "directly generate PDF documents instead of DVI." msgstr "" -#: gnu/packages/tex.scm:7025 +#: gnu/packages/tex.scm:7327 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18353,7 +18582,7 @@ msgid "" "This package contains the complete tree of texmf-dist data." msgstr "" -#: gnu/packages/tex.scm:7088 +#: gnu/packages/tex.scm:7390 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18363,7 +18592,7 @@ msgid "" "This package contains the complete TeX Live distribution." msgstr "" -#: gnu/packages/tex.scm:7130 +#: gnu/packages/tex.scm:7432 msgid "" "@code{Text::BibTeX} is a Perl library for reading, parsing,\n" "and processing BibTeX files. @code{Text::BibTeX} gives you access to the data\n" @@ -18372,13 +18601,13 @@ msgid "" "values (strings, macros, or numbers) pasted together." msgstr "" -#: gnu/packages/tex.scm:7216 +#: gnu/packages/tex.scm:7518 msgid "" "Biber is a BibTeX replacement for users of biblatex. Among\n" "other things it comes with full Unicode support." msgstr "" -#: gnu/packages/tex.scm:7250 +#: gnu/packages/tex.scm:7552 msgid "" "Rubber is a program whose purpose is to handle all tasks related to the\n" "compilation of LaTeX documents. This includes compiling the document itself,\n" @@ -18388,20 +18617,20 @@ msgid "" "PDF documents." msgstr "" -#: gnu/packages/tex.scm:7289 +#: gnu/packages/tex.scm:7591 msgid "" "Texmaker is a program that integrates many tools needed to\n" "develop documents with LaTeX, in a single application." msgstr "" -#: gnu/packages/tex.scm:7330 +#: gnu/packages/tex.scm:7632 msgid "" "@i{TeX for the Impatient} is a ~350 page book on TeX,\n" "plain TeX, and Eplain, originally written by Paul Abrahams, Kathryn Hargreaves,\n" "and Karl Berry." msgstr "" -#: gnu/packages/tex.scm:7394 +#: gnu/packages/tex.scm:7696 msgid "" "LyX is a document preparation system. It excels at letting\n" "you create complex technical and scientific articles with mathematics,\n" @@ -18410,7 +18639,7 @@ msgid "" "required: automatic sectioning and pagination, spell checking and so forth." msgstr "" -#: gnu/packages/tex.scm:7430 +#: gnu/packages/tex.scm:7732 msgid "" "The package provides an interface to embed interactive Flash (SWF) and 3D\n" "objects (Adobe U3D & PRC), as well as video and sound files or streams in the\n" @@ -18423,7 +18652,7 @@ msgid "" "specification. It replaces the now obsolete @code{movie15} package." msgstr "" -#: gnu/packages/tex.scm:7470 +#: gnu/packages/tex.scm:7772 msgid "" "This package provides OCG (Optional Content Groups) support within a PDF\n" "document.\n" @@ -18441,7 +18670,7 @@ msgid "" "It also ensures compatibility with the @code{media9} and @code{animate} packages." msgstr "" -#: gnu/packages/tex.scm:7504 +#: gnu/packages/tex.scm:7806 msgid "" "A bundle of LATEX packages by Martin Schröder; the collection comprises:\n" "\n" @@ -18455,7 +18684,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/tex.scm:7532 +#: gnu/packages/tex.scm:7852 msgid "" "The package numprint prints numbers with a separator every three\n" "digits and converts numbers given as 12345.6e789 to 12\\,345,6\\cdot\n" @@ -18476,14 +18705,14 @@ msgid "" "and after the formatted number." msgstr "" -#: gnu/packages/tex.scm:7571 +#: gnu/packages/tex.scm:7893 msgid "" "Provides commands to disable pagebreaking within a given vertical\n" "space. If there is not enough space between the command and the bottom of the\n" "page, a new page will be started." msgstr "" -#: gnu/packages/tex.scm:7597 +#: gnu/packages/tex.scm:7919 msgid "" "The package provides commands to change the page layout in the middle of\n" "a document, and to robustly check for typesetting on odd or even pages.\n" @@ -18491,7 +18720,7 @@ msgid "" "of code from the @code{memoir} class, whose user interface it shares." msgstr "" -#: gnu/packages/tex.scm:7633 +#: gnu/packages/tex.scm:7955 msgid "" "The package is used to change the format of @code{\\today}’s date,\n" "including the weekday, e.g., \"Saturday, 26 June 2008\", the 'UK format', which\n" @@ -18499,7 +18728,7 @@ msgid "" "@code{\\maketitle} of the article class, \"June 26, 2008\", the 'US format'." msgstr "" -#: gnu/packages/tex.scm:7669 +#: gnu/packages/tex.scm:7971 msgid "" "The package provides an @code{\\ul} (underline) command which will break\n" "over line ends; this technique may be used to replace @code{\\em} (both in that\n" @@ -18508,7 +18737,7 @@ msgid "" "striking out (line through words) and crossing out (/// over words)." msgstr "" -#: gnu/packages/tex.scm:7725 +#: gnu/packages/tex.scm:8029 msgid "" "PGF is a macro package for creating graphics. It is platform- and\n" "format-independent and works together with the most important TeX backend\n" @@ -18520,7 +18749,7 @@ msgid "" "produce either PostScript or PDF output." msgstr "" -#: gnu/packages/tex.scm:7771 +#: gnu/packages/tex.scm:8075 msgid "" "The KOMA-Script bundle provides replacements for the article, report, and\n" "book classes with emphasis on typography and versatility. There is also a\n" @@ -18545,7 +18774,7 @@ msgid "" "typearea (which are the main parts of the bundle)." msgstr "" -#: gnu/packages/tex.scm:7806 +#: gnu/packages/tex.scm:8110 msgid "" "This package is a modern reimplementation of package @code{everyshi},\n" "providing various commands to be executed before a @code{\\shipout} command.\n" @@ -18553,20 +18782,20 @@ msgid "" "be used either with LaTeX or with plain TeX." msgstr "" -#: gnu/packages/tex.scm:7826 +#: gnu/packages/tex.scm:8130 msgid "" "This package provides expandable arithmetic operations with big\n" "integers that can exceed TeX's number limits." msgstr "" -#: gnu/packages/tex.scm:7845 +#: gnu/packages/tex.scm:8149 msgid "" "This package defines and implements the data type bit set, a vector\n" "of bits. The size of the vector may grow dynamically. Individual bits\n" "can be manipulated." msgstr "" -#: gnu/packages/tex.scm:7864 +#: gnu/packages/tex.scm:8168 msgid "" "New primitive commands are introduced in e-TeX; sometimes the names\n" "collide with existing macros. This package solves the name clashes by\n" @@ -18574,14 +18803,14 @@ msgid "" "@code{\\unexpanded} is provided as @code{\\etex@@unexpanded}." msgstr "" -#: gnu/packages/tex.scm:7882 +#: gnu/packages/tex.scm:8186 msgid "" "This package provides commands for cleaning up the title string\n" "(such as removing @code{\\label} commands) for packages that typeset such\n" "strings." msgstr "" -#: gnu/packages/tex.scm:7898 +#: gnu/packages/tex.scm:8202 msgid "" "This package provides a complete set of macros for information,\n" "warning and error messages. Under LaTeX, the commands are wrappers for\n" @@ -18589,19 +18818,19 @@ msgid "" "complete implementations." msgstr "" -#: gnu/packages/tex.scm:7915 +#: gnu/packages/tex.scm:8219 msgid "" "This package provides expandable arithmetic operations with integers,\n" "using the e-TeX extension @code{\\numexpr} if it is available." msgstr "" -#: gnu/packages/tex.scm:7930 +#: gnu/packages/tex.scm:8234 msgid "" "This package provides the @code{\\kv@@define@@key} (analogous to\n" "keyval’s @code{\\define@@key}, to define keys for use by @code{kvsetkeys}." msgstr "" -#: gnu/packages/tex.scm:7945 +#: gnu/packages/tex.scm:8249 msgid "" "This package provides @code{\\kvsetkeys}, a variant of @code{\\setkeys}\n" "from the @code{keyval} package. Users can specify a handler that deals with\n" @@ -18609,35 +18838,35 @@ msgid "" "level of curly braces are removed from the values." msgstr "" -#: gnu/packages/tex.scm:7980 +#: gnu/packages/tex.scm:8284 msgid "" "This package allows one to capture all the items of a list, for which\n" "the parsing character has been selected by the user, and to access any of\n" "these items with a simple syntax." msgstr "" -#: gnu/packages/tex.scm:7996 +#: gnu/packages/tex.scm:8300 msgid "" "This package exports some utility macros from the LaTeX kernel into\n" "a separate namespace and also makes them available for other formats such\n" "as plain TeX." msgstr "" -#: gnu/packages/tex.scm:8012 +#: gnu/packages/tex.scm:8316 msgid "" "This package implements pdfTeX's escape features (@code{\\pdfescapehex},\n" "@code{\\pdfunescapehex}, @code{\\pdfescapename}, @code{\\pdfescapestring})\n" "using TeX or e-TeX." msgstr "" -#: gnu/packages/tex.scm:8031 +#: gnu/packages/tex.scm:8335 msgid "" "This package provides a kind of counter that provides unique number\n" "values. Several counters can be created with different names. The numeric\n" "values are not limited." msgstr "" -#: gnu/packages/tex.scm:8067 +#: gnu/packages/tex.scm:8371 msgid "" "This package allows the user to input formatted data into elements of a\n" "2-D or 3-D array and to recall that data at will by individual cell number.\n" @@ -18645,7 +18874,7 @@ msgid "" "formatted text." msgstr "" -#: gnu/packages/tex.scm:8104 +#: gnu/packages/tex.scm:8408 msgid "" "The package provides a @code{verbbox} environment to place its contents\n" "into a globally available box, or into a box specified by the user. The\n" @@ -18655,7 +18884,7 @@ msgid "" "@code{trivlist}) may not appear." msgstr "" -#: gnu/packages/tex.scm:8141 +#: gnu/packages/tex.scm:8445 msgid "" "Examplep provides sophisticated features for typesetting verbatim source\n" "code listings, including the display of the source code and its compiled LaTeX\n" @@ -18668,7 +18897,7 @@ msgid "" "titles." msgstr "" -#: gnu/packages/tex.scm:8178 +#: gnu/packages/tex.scm:8482 msgid "" "This is a package for typesetting a variety of graphs and\n" "diagrams with TeX. Xy-pic works with most formats (including LaTeX,\n" @@ -18676,7 +18905,7 @@ msgid "" "@code{diag} package, which was previously distributed stand-alone." msgstr "" -#: gnu/packages/tex.scm:8218 +#: gnu/packages/tex.scm:8522 msgid "" "BibTeX allows the user to store his citation data in generic form, while\n" "printing citations in a document in the form specified by a BibTeX style, to\n" @@ -18684,7 +18913,7 @@ msgid "" "package, such as @command{natbib} as well)." msgstr "" -#: gnu/packages/tex.scm:8241 +#: gnu/packages/tex.scm:8545 msgid "" "This package provides a copy of the Charter Type-1 fonts\n" "which Bitstream contributed to the X consortium, renamed for use with TeX.\n" @@ -18692,14 +18921,14 @@ msgid "" "@command{psnfss}." msgstr "" -#: gnu/packages/tex.scm:8337 +#: gnu/packages/tex.scm:8641 msgid "" "ConTeXt is a full featured, parameter driven macro package,\n" "which fully supports advanced interactive documents. See the ConTeXt garden\n" "for a wealth of support information." msgstr "" -#: gnu/packages/tex.scm:8362 +#: gnu/packages/tex.scm:8666 msgid "" "The beamer LaTeX class can be used for producing slides.\n" "The class works in both PostScript and direct PDF output modes, using the\n" @@ -18712,7 +18941,7 @@ msgid "" "effects, varying slide transitions and animations." msgstr "" -#: gnu/packages/tex.scm:8394 +#: gnu/packages/tex.scm:8698 msgid "" "The XMP (eXtensible Metadata platform) is a framework to add metadata to\n" "digital material to enhance the workflow in publication. The essence is that\n" @@ -18720,13 +18949,13 @@ msgid "" "the file to which it applies." msgstr "" -#: gnu/packages/tex.scm:8433 +#: gnu/packages/tex.scm:8737 msgid "" "This package helps LaTeX users to create PDF/X, PDF/A and other\n" "standards-compliant PDF documents with pdfTeX, LuaTeX and XeTeX." msgstr "" -#: gnu/packages/tex.scm:8468 +#: gnu/packages/tex.scm:8772 msgid "" "The package provides macros and environments to document\n" "LaTeX packages and classes. It is an (as yet unfinished) alternative to the\n" @@ -18737,7 +18966,7 @@ msgid "" "change." msgstr "" -#: gnu/packages/tex.scm:8496 +#: gnu/packages/tex.scm:8800 msgid "" "PSTricks offers an extensive collection of macros for\n" "generating PostScript that is usable with most TeX macro formats, including\n" @@ -18748,14 +18977,14 @@ msgid "" "or shading the cells of tables." msgstr "" -#: gnu/packages/tex.scm:8521 +#: gnu/packages/tex.scm:8825 msgid "" "Pst-text is a PSTricks based package for plotting text along\n" "a different path and manipulating characters. It includes the functionality\n" "of the old package @code{pst-char}." msgstr "" -#: gnu/packages/tex.scm:8546 +#: gnu/packages/tex.scm:8850 msgid "" "This package provides the command @code{\\marginnote} that\n" "may be used instead of @code{\\marginpar} at almost every place where\n" @@ -18763,7 +18992,7 @@ msgid "" "frames made with the @code{framed} package." msgstr "" -#: gnu/packages/tex.scm:8564 +#: gnu/packages/tex.scm:8868 msgid "" "This package, which works both for Plain TeX and for\n" "LaTeX, defines the @code{\\ifPDFTeX}, @code{\\ifXeTeX}, and @code{\\ifLuaTeX}\n" @@ -18773,7 +19002,19 @@ msgid "" "LuaTeX (respectively) is not the engine in use." msgstr "" -#: gnu/packages/tex.scm:8597 +#: gnu/packages/tex.scm:8914 +msgid "" +"The package provides an environment, tabu, which will make any sort of\n" +"tabular, and an environment longtabu which provides the facilities of tabu in\n" +"a modified longtable environment. The package requires array, xcolor for\n" +"coloured rules in tables, and colortbl for coloured cells. The longtabu\n" +"environment further requires that longtable be loaded. The package itself\n" +"does not load any of these packages for the user. The tabu environment may be\n" +"used in place of @code{tabular}, @code{tabular*} and @code{tabularx}\n" +"environments, as well as the @code{array} environment in maths mode." +msgstr "" + +#: gnu/packages/tex.scm:8945 msgid "" "This package provides a collection of simple tools that\n" "are part of the LaTeX required tools distribution, comprising the packages:\n" @@ -18785,7 +19026,7 @@ msgid "" "@code{varioref}, @code{verbatim}, @code{xr}, and @code{xspace}." msgstr "" -#: gnu/packages/tex.scm:8678 +#: gnu/packages/tex.scm:9026 msgid "" "This package is an extension of the keyval package and offers additional\n" "macros for setting keys and declaring and setting class or package options.\n" @@ -18795,7 +19036,7 @@ msgid "" "keys." msgstr "" -#: gnu/packages/tex.scm:8706 +#: gnu/packages/tex.scm:9054 msgid "" "A class and package is provided which allows TeX pictures or\n" "other TeX code to be compiled standalone or as part of a main document.\n" @@ -18807,7 +19048,7 @@ msgid "" "@code{standalone.cfg} to redefine the standalone environment." msgstr "" -#: gnu/packages/tex.scm:8739 +#: gnu/packages/tex.scm:9087 msgid "" "Typesetting values with units requires care to ensure that the combined\n" "mathematical meaning of the value plus unit combination is clear. In\n" @@ -18823,7 +19064,7 @@ msgid "" "package to handle all of the possible unit-related needs of LaTeX users." msgstr "" -#: gnu/packages/tex.scm:8770 +#: gnu/packages/tex.scm:9118 msgid "" "This package enhances the quality of tables in LaTeX, providing extra\n" "commands as well as behind-the-scenes optimisation. Guidelines are given as\n" @@ -18831,7 +19072,7 @@ msgid "" "@code{longtable} compatibility." msgstr "" -#: gnu/packages/tex.scm:8790 +#: gnu/packages/tex.scm:9138 msgid "" "This package provides advanced facilities for inline and\n" "display quotations. It is designed for a wide range of tasks ranging from the\n" @@ -18845,7 +19086,7 @@ msgid "" "styles as well as the optional active quotes are freely configurable." msgstr "" -#: gnu/packages/tex.scm:8816 +#: gnu/packages/tex.scm:9164 msgid "" "The package helps to automate a typical LaTeX\n" "workflow that involves running LaTeX several times and running tools\n" @@ -18865,7 +19106,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8848 +#: gnu/packages/tex.scm:9196 msgid "" "BibLaTeX is a complete reimplementation of the\n" "bibliographic facilities provided by LaTeX. Formatting of the\n" @@ -18891,7 +19132,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8886 +#: gnu/packages/tex.scm:9234 msgid "" "The @code{todonotes} package lets the user mark\n" "things to do later, in a simple and visually appealing way. The\n" @@ -18899,7 +19140,7 @@ msgid "" "of the visual appearance." msgstr "" -#: gnu/packages/tex.scm:8904 +#: gnu/packages/tex.scm:9252 msgid "" "@code{units} is a package for typesetting physical\n" "units in a standard-looking way. The package is based upon\n" @@ -18907,7 +19148,7 @@ msgid "" "included in the @code{units} bundle." msgstr "" -#: gnu/packages/tex.scm:8922 +#: gnu/packages/tex.scm:9270 msgid "" "@code{microtype} provides a LaTeX interface to the\n" "micro-typographic extensions that were introduced by pdfTeX and have\n" @@ -18922,7 +19163,7 @@ msgid "" "the bundle." msgstr "" -#: gnu/packages/tex.scm:8947 +#: gnu/packages/tex.scm:9295 msgid "" "The @code{caption} package provides many ways to\n" "customise the captions in floating environments like figure and table.\n" @@ -18936,13 +19177,13 @@ msgid "" "@code{subcaption} and @code{totalcount} are included in the bundle." msgstr "" -#: gnu/packages/tex.scm:8976 +#: gnu/packages/tex.scm:9324 msgid "" "This package provides a drop-in replacement for the\n" "Symbol font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:8994 +#: gnu/packages/tex.scm:9342 msgid "" "The Pazo Math fonts are a family of PostScript fonts\n" "suitable for typesetting mathematics in combination with the Palatino\n" @@ -18956,7 +19197,7 @@ msgid "" "LaTeX macro support is provided in package @code{psnfss}." msgstr "" -#: gnu/packages/tex.scm:9019 +#: gnu/packages/tex.scm:9367 msgid "" "The FPL Fonts provide a set of SC/OsF fonts for URW\n" "Palladio L which are compatible with the Palatino SC/OsF fonts from\n" @@ -18964,7 +19205,7 @@ msgid "" "the @code{psnfss} distribution." msgstr "" -#: gnu/packages/tex.scm:9043 +#: gnu/packages/tex.scm:9391 msgid "" "The @code{arev} package provides type 1 fonts,\n" "virtual fonts and LaTeX packages for using Arev Sans in both text and\n" @@ -18978,7 +19219,7 @@ msgid "" "support packages. Others are cmbright, hvmath and kerkis." msgstr "" -#: gnu/packages/tex.scm:9074 +#: gnu/packages/tex.scm:9422 msgid "" "The Math Design project offers free mathematical\n" "fonts that match with existing text fonts. To date, three free font\n" @@ -18989,7 +19230,7 @@ msgid "" "created by the Greek Font Society)." msgstr "" -#: gnu/packages/tex.scm:9099 +#: gnu/packages/tex.scm:9447 msgid "" "The @code{bera} package contains the Bera Type 1\n" "fonts and files to use the fonts with LaTeX. Bera is a set of three\n" @@ -18998,7 +19239,7 @@ msgid "" "a repackaging, for use with TeX, of the Bitstream Vera family." msgstr "" -#: gnu/packages/tex.scm:9122 +#: gnu/packages/tex.scm:9470 msgid "" "Fourier-GUTenberg is a LaTeX typesetting system\n" "which uses Adobe Utopia as its standard base font. Fourier-GUTenberg\n" @@ -19009,7 +19250,7 @@ msgid "" "trademark of Adobe Systems Incorporated." msgstr "" -#: gnu/packages/tex.scm:9145 +#: gnu/packages/tex.scm:9493 msgid "" "The Adobe Standard Encoding set of the Utopia font\n" "family, as contributed to the X Consortium. The set comprises upright\n" @@ -19018,7 +19259,7 @@ msgid "" "@code{mathdesign} font packages." msgstr "" -#: gnu/packages/tex.scm:9169 +#: gnu/packages/tex.scm:9517 msgid "" "The @code{fontaxes} package adds several new font\n" "axes on top of LaTeX's New Font Selection Scheme (NFSS). In\n" @@ -19027,7 +19268,7 @@ msgid "" "figure versions offered by many professional fonts." msgstr "" -#: gnu/packages/tex.scm:9192 +#: gnu/packages/tex.scm:9540 msgid "" "The bundle comprises: @code{authblk}, which permits\n" "footnote style author/affiliation input in the @command{\\author} command,\n" @@ -19037,7 +19278,7 @@ msgid "" "@code{sublabel}, which permits counters to be subnumbered." msgstr "" -#: gnu/packages/tex.scm:9211 +#: gnu/packages/tex.scm:9559 msgid "" "Many font families available for use with LaTeX are\n" "available at multiple weights. Many Type 1-oriented support packages\n" @@ -19048,7 +19289,7 @@ msgid "" "@code{mweights} package provides a solution to these difficulties." msgstr "" -#: gnu/packages/tex.scm:9237 +#: gnu/packages/tex.scm:9585 msgid "" "Cabin is a humanist sans with four weights, true\n" "italics and small capitals. According to its designer, Pablo\n" @@ -19062,7 +19303,7 @@ msgid "" "use with [pdf]LaTeX." msgstr "" -#: gnu/packages/tex.scm:9268 +#: gnu/packages/tex.scm:9616 msgid "" "The @code{newtx} bundle splits\n" "@code{txfonts.sty} (from the TX fonts distribution) into two\n" @@ -19074,7 +19315,7 @@ msgid "" "mathematics package that matches Libertine text quite well." msgstr "" -#: gnu/packages/tex.scm:9296 +#: gnu/packages/tex.scm:9644 msgid "" "@code{xcharter} repackages Bitstream Charter with an\n" "extended set of features. The extension provides small caps, oldstyle\n" @@ -19083,7 +19324,7 @@ msgid "" "Type 1 and OTF formats, with supporting files as necessary." msgstr "" -#: gnu/packages/tex.scm:9320 +#: gnu/packages/tex.scm:9668 msgid "" "The legacy @emph{texnansi} (TeX and ANSI) encoding\n" "is known in the LaTeX scheme of things as @emph{LY1} encoding. The\n" @@ -19092,14 +19333,14 @@ msgid "" "LY1 encoding." msgstr "" -#: gnu/packages/tex.scm:9349 +#: gnu/packages/tex.scm:9697 msgid "" "This is a LaTeX2ε package to help change the style of any or\n" "all of LaTeX's sectional headers in the article, book, or report classes.\n" "Examples include the addition of rules above or below a section title." msgstr "" -#: gnu/packages/tex.scm:9375 +#: gnu/packages/tex.scm:9723 msgid "" "LaTeX can, by default, only cope with 18 outstanding floats;\n" "any more, and you get the error “too many unprocessed floats”. This package\n" @@ -19110,19 +19351,19 @@ msgid "" "floats merely delays the arrival of the inevitable error message." msgstr "" -#: gnu/packages/tex.scm:9408 +#: gnu/packages/tex.scm:9756 msgid "" "This package provides a command for the LaTeX programmer for\n" "testing whether an argument is empty." msgstr "" -#: gnu/packages/tex.scm:9435 +#: gnu/packages/tex.scm:9783 msgid "" "The pagenote package provides tagged notes on a separate\n" "page (also known as ‘end notes’)." msgstr "" -#: gnu/packages/tex.scm:9463 +#: gnu/packages/tex.scm:9811 msgid "" "The @code{titling} package provides control over the\n" "typesetting of the @code{\\maketitle} command and @code{\\thanks} commands,\n" @@ -19132,7 +19373,7 @@ msgid "" "a physical page." msgstr "" -#: gnu/packages/tex.scm:9493 +#: gnu/packages/tex.scm:9841 msgid "" "This package provides an @code{\\ifoddpage} conditional to\n" "determine if the current page is odd or even. The macro @code{\\checkoddpage}\n" @@ -19142,7 +19383,7 @@ msgid "" "@code{oneside} mode where all pages use the odd page layout." msgstr "" -#: gnu/packages/tex.scm:9523 +#: gnu/packages/tex.scm:9871 msgid "" "The package provides \"store boxes\" whose user interface\n" "matches that of normal LaTeX \"save boxes\", except that the content of a\n" @@ -19151,7 +19392,7 @@ msgid "" "DVI is output, store boxes behave the same as save boxes." msgstr "" -#: gnu/packages/tex.scm:9552 +#: gnu/packages/tex.scm:9900 msgid "" "The package provides macros to collect and process a macro\n" "argument (i.e., something which looks like a macro argument) as a horizontal\n" @@ -19164,13 +19405,13 @@ msgid "" "The macros were designed for use within other macros." msgstr "" -#: gnu/packages/tex.scm:9584 +#: gnu/packages/tex.scm:9932 msgid "" "This package provides macros for adding to, and reordering\n" "the list of graphics file extensions recognised by package graphics." msgstr "" -#: gnu/packages/tex.scm:9618 +#: gnu/packages/tex.scm:9966 msgid "" "The package provides several macros to adjust boxed\n" "content. One purpose is to supplement the standard @code{graphics} package,\n" @@ -19183,7 +19424,7 @@ msgid "" "@code{\\minsizebox}, @code{\\maxsizebox} and @code{\\phantombox}." msgstr "" -#: gnu/packages/tex.scm:9644 +#: gnu/packages/tex.scm:9992 msgid "" "This package provides an environment for colored and\n" "framed text boxes with a heading line. Optionally, such a box may be split in\n" @@ -19194,7 +19435,7 @@ msgid "" "parts." msgstr "" -#: gnu/packages/tex.scm:9675 +#: gnu/packages/tex.scm:10023 msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems. The commands allow for writing\n" @@ -19203,13 +19444,13 @@ msgid "" "styles of inference rules, placement of labels, etc." msgstr "" -#: gnu/packages/tex.scm:9704 +#: gnu/packages/tex.scm:10052 msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems." msgstr "" -#: gnu/packages/tex.scm:9724 +#: gnu/packages/tex.scm:10072 msgid "" "This package provides the European currency symbol for the\n" "Euro implemented in METAFONT, using the official European Commission\n" @@ -19218,7 +19459,7 @@ msgid "" "pre-compiled font files, and documentation." msgstr "" -#: gnu/packages/tex.scm:9754 +#: gnu/packages/tex.scm:10102 msgid "" "The @code{kastrup} package provides the\n" "@emph{binhex.tex} file. This file provides expandable macros for both\n" @@ -19228,7 +19469,7 @@ msgid "" "LaTeX and plain TeX." msgstr "" -#: gnu/packages/tex.scm:9774 +#: gnu/packages/tex.scm:10122 msgid "" "This LaTeX package provides a flexible mechanism for translating\n" "individual words into different languages. For example, it can be used to\n" @@ -19239,7 +19480,7 @@ msgid "" "automatically translate more than a few words." msgstr "" -#: gnu/packages/tex.scm:9795 +#: gnu/packages/tex.scm:10143 msgid "" "This package facilitates placing boxes at absolute positions on the\n" "LaTeX page. There are several reasons why this might be useful, but the main\n" @@ -19252,7 +19493,7 @@ msgid "" "accompanied by various configuration commands." msgstr "" -#: gnu/packages/tex.scm:9819 +#: gnu/packages/tex.scm:10167 msgid "" "This package extends the @code{ifthen} package by implementing new\n" "commands to go within the first argument of @code{\\\\ifthenelse}: to test\n" @@ -19262,14 +19503,14 @@ msgid "" "handle complex tests." msgstr "" -#: gnu/packages/tex.scm:9852 +#: gnu/packages/tex.scm:10200 msgid "" "BibTool manipulates BibTeX files. The possibilities of BibTool include\n" "sorting and merging of BibTeX databases, generation of uniform reference keys,\n" "and selecting references used in a publication." msgstr "" -#: gnu/packages/texinfo.scm:87 +#: gnu/packages/texinfo.scm:88 msgid "" "Texinfo is the official documentation format of the GNU project. It\n" "uses a single source file using explicit commands to produce a final document\n" @@ -19279,7 +19520,7 @@ msgid "" "is on expressing the content semantically, avoiding physical markup commands." msgstr "" -#: gnu/packages/texinfo.scm:216 +#: gnu/packages/texinfo.scm:230 msgid "" "Texi2HTML is a Perl script which converts Texinfo source files to HTML\n" "output. It now supports many advanced features, such as internationalization\n" @@ -19294,7 +19535,7 @@ msgid "" "Texi2HTML." msgstr "" -#: gnu/packages/texinfo.scm:283 +#: gnu/packages/texinfo.scm:297 msgid "" "Pinfo is an Info file viewer. Pinfo is similar in use to the Lynx web\n" "browser. You just move across info nodes, and select links, follow them, etc.\n" @@ -19653,6 +19894,12 @@ msgstr "" #: gnu/packages/textutils.scm:1406 msgid "" +"@code{utf-8-lineseparator} provides a tool to efficiently check text\n" +"files for valid UTF-8 use and to report which line endings they use." +msgstr "" + +#: gnu/packages/textutils.scm:1439 +msgid "" "@code{csvdiff} is a diff tool to compute changes between two\n" "CSV files. It can compare CSV files with a million records in under 2\n" "seconds. It is specifically suited for comparing CSV files dumped from\n" @@ -19854,27 +20101,27 @@ msgid "" "visualize your public Git repositories on a web interface." msgstr "" -#: gnu/packages/version-control.scm:1706 +#: gnu/packages/version-control.scm:1699 msgid "" "Pre-commit is a multi-language package manager for pre-commit hooks. You\n" "specify a list of hooks you want and pre-commit manages the installation and\n" "execution of any hook written in any language before every commit." msgstr "" -#: gnu/packages/version-control.scm:1796 +#: gnu/packages/version-control.scm:1789 msgid "" "Mercurial is a free, distributed source control management tool. It\n" "efficiently handles projects of any size and offers an easy and intuitive\n" "interface." msgstr "" -#: gnu/packages/version-control.scm:1823 +#: gnu/packages/version-control.scm:1816 msgid "" "Evolve is a Mercurial extension for faster and safer mutable\n" "history. It implements the changeset evolution concept for Mercurial." msgstr "" -#: gnu/packages/version-control.scm:1879 +#: gnu/packages/version-control.scm:1872 msgid "" "This package provides a Mercurial extension for signing\n" "the changeset hash of commits. The signure is embedded directly in the\n" @@ -19882,7 +20129,7 @@ msgid "" "can be used for signing." msgstr "" -#: gnu/packages/version-control.scm:1914 +#: gnu/packages/version-control.scm:1907 msgid "" "Neon is an HTTP and WebDAV client library, with a C interface and the\n" "following features:\n" @@ -19904,7 +20151,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/version-control.scm:2010 +#: gnu/packages/version-control.scm:2003 msgid "" "@dfn{Subversion} (svn) exists to be recognized and adopted as a\n" "centralized version control system characterized by its\n" @@ -19913,7 +20160,7 @@ msgid "" "projects, from individuals to large-scale enterprise operations." msgstr "" -#: gnu/packages/version-control.scm:2044 +#: gnu/packages/version-control.scm:2037 msgid "" "RCS is the original Revision Control System. It works on a\n" "file-by-file basis, in contrast to subsequent version control systems such as\n" @@ -19922,21 +20169,21 @@ msgid "" "machine." msgstr "" -#: gnu/packages/version-control.scm:2067 +#: gnu/packages/version-control.scm:2060 msgid "" "@code{blame} outputs an annotated revision from each RCS file. An\n" "annotated RCS file describes the revision and date in which each line was\n" "added to the file, and the author of each line." msgstr "" -#: gnu/packages/version-control.scm:2088 +#: gnu/packages/version-control.scm:2081 msgid "" "The @code{rcshist} utility displays the complete revision history of a\n" "set of RCS files including log messages and patches. It can also display the\n" "patch associated with a particular revision of an RCS file." msgstr "" -#: gnu/packages/version-control.scm:2116 +#: gnu/packages/version-control.scm:2109 msgid "" "CVS is a version control system, an important component of Source\n" "Configuration Management (SCM). Using it, you can record the history of\n" @@ -19944,7 +20191,7 @@ msgid "" "RCS, PRCS, and Aegis packages." msgstr "" -#: gnu/packages/version-control.scm:2150 +#: gnu/packages/version-control.scm:2143 msgid "" "This program analyzes a collection of RCS files in a CVS\n" "repository (or outside of one) and, when possible, emits an equivalent history\n" @@ -19957,7 +20204,7 @@ msgid "" "masters from remote CVS hosts." msgstr "" -#: gnu/packages/version-control.scm:2180 +#: gnu/packages/version-control.scm:2173 msgid "" "The vc-dwim package contains two tools, \"vc-dwim\" and \"vc-chlog\".\n" "vc-dwim is a tool that simplifies the task of maintaining a ChangeLog and\n" @@ -19967,21 +20214,21 @@ msgid "" "standards-compliant ChangeLog entries based on the changes that it detects." msgstr "" -#: gnu/packages/version-control.scm:2207 +#: gnu/packages/version-control.scm:2200 msgid "" "Diffstat reads the output of @command{diff} and displays a histogram of\n" "the insertions, deletions, and modifications per file. It is useful for\n" "reviewing large, complex patch files." msgstr "" -#: gnu/packages/version-control.scm:2246 +#: gnu/packages/version-control.scm:2239 msgid "" "GNU CSSC provides a replacement for the legacy Unix source\n" "code control system SCCS. This allows old code still under that system to be\n" "accessed and migrated on modern systems." msgstr "" -#: gnu/packages/version-control.scm:2338 +#: gnu/packages/version-control.scm:2331 msgid "" "Aegis is a project change supervisor, and performs some of\n" "the Software Configuration Management needed in a CASE environment. Aegis\n" @@ -19992,7 +20239,7 @@ msgid "" "any project with more than one developer, is one of Aegis's major functions." msgstr "" -#: gnu/packages/version-control.scm:2412 +#: gnu/packages/version-control.scm:2405 msgid "" "Reposurgeon enables risky operations that version-control\n" "systems don't want to let you do, such as editing past comments and metadata\n" @@ -20003,20 +20250,20 @@ msgid "" "from Subversion to any supported Distributed Version Control System (DVCS)." msgstr "" -#: gnu/packages/version-control.scm:2451 +#: gnu/packages/version-control.scm:2444 msgid "" "Tig is an ncurses text user interface for Git, primarily intended as\n" "a history browser. It can also stage hunks for commit, or colorize the\n" "output of the @code{git} command." msgstr "" -#: gnu/packages/version-control.scm:2474 +#: gnu/packages/version-control.scm:2467 msgid "" "Recursively find the newest file in a file tree and print its\n" "modification time." msgstr "" -#: gnu/packages/version-control.scm:2521 +#: gnu/packages/version-control.scm:2514 msgid "" "Myrepos provides the @code{mr} command, which maps an operation (e.g.,\n" "fetching updates) over a collection of version control repositories. It\n" @@ -20024,14 +20271,14 @@ msgid "" "Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity." msgstr "" -#: gnu/packages/version-control.scm:2558 +#: gnu/packages/version-control.scm:2551 msgid "" "Grokmirror enables replicating large git repository\n" "collections efficiently. Mirrors decide to clone and update repositories\n" "based on a manifest file published by servers." msgstr "" -#: gnu/packages/version-control.scm:2588 +#: gnu/packages/version-control.scm:2581 msgid "" "The @code{b4} command is designed to make it easier to participate in\n" "patch-based workflows for projects that have public-inbox archives.\n" @@ -20045,26 +20292,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/version-control.scm:2635 +#: gnu/packages/version-control.scm:2628 msgid "" "This wrapper around rclone makes any destination supported\n" "by rclone usable with git-annex." msgstr "" -#: gnu/packages/version-control.scm:2689 +#: gnu/packages/version-control.scm:2682 msgid "" "Fossil is a distributed source control management system which supports\n" "access and administration over HTTP CGI or via a built-in HTTP server. It has\n" "a built-in wiki, built-in file browsing, built-in tickets system, etc." msgstr "" -#: gnu/packages/version-control.scm:2720 +#: gnu/packages/version-control.scm:2713 msgid "" "Stagit creates static pages for git repositories, the results can\n" "be served with a HTTP file server of your choice." msgstr "" -#: gnu/packages/version-control.scm:2756 +#: gnu/packages/version-control.scm:2749 msgid "" "@code{gource} provides a software version control\n" "visualization. The repository is displayed as a tree where the root of the\n" @@ -20073,7 +20320,7 @@ msgid "" "specific files and directories." msgstr "" -#: gnu/packages/version-control.scm:2804 +#: gnu/packages/version-control.scm:2797 #, scheme-format msgid "" "SRC (or src) is simple revision control, a version-control system for\n" @@ -20083,7 +20330,7 @@ msgid "" "directory full of HOWTOs." msgstr "" -#: gnu/packages/version-control.scm:2856 +#: gnu/packages/version-control.scm:2849 msgid "" "This Git extension defines a subcommand,\n" "@code{when-merged}, whose core operation is to find the merge that brought a\n" @@ -20091,7 +20338,7 @@ msgid "" "how information about the merge is displayed." msgstr "" -#: gnu/packages/version-control.scm:2900 +#: gnu/packages/version-control.scm:2893 msgid "" "This Git extension defines a subcommand, @code{imerge},\n" "which performs an incremental merge between two branches. Its two primary\n" @@ -20100,20 +20347,20 @@ msgid "" "interrupted, published, and collaborated on while in progress." msgstr "" -#: gnu/packages/version-control.scm:2951 +#: gnu/packages/version-control.scm:2944 msgid "" "Git Large File Storage (LFS) replaces large files such as audio samples,\n" "videos, datasets, and graphics with text pointers inside Git, while storing the\n" "file contents on a remote server." msgstr "" -#: gnu/packages/version-control.scm:2986 +#: gnu/packages/version-control.scm:2979 msgid "" "@code{git open} opens the repository's website from the command-line,\n" "guessing the URL pattern from the @code{origin} remote." msgstr "" -#: gnu/packages/version-control.scm:3040 +#: gnu/packages/version-control.scm:3033 msgid "" "GNU Arch, aka. @code{tla}, was one of the first free distributed\n" "version-control systems (DVCS). It saw its last release in 2006. This\n" @@ -20121,18 +20368,18 @@ msgid "" "for historians." msgstr "" -#: gnu/packages/version-control.scm:3086 +#: gnu/packages/version-control.scm:3079 msgid "" "@code{diff-so-fancy} strives to make your diffs human readable instead\n" "of machine readable. This helps improve code quality and helps you spot\n" "defects faster." msgstr "" -#: gnu/packages/version-control.scm:3142 +#: gnu/packages/version-control.scm:3135 msgid "This package provides a Git implementation library." msgstr "" -#: gnu/packages/version-control.scm:3192 +#: gnu/packages/version-control.scm:3185 msgid "" "This package provides a command-line tool to manage\n" "multiple Git repos.\n" @@ -20147,7 +20394,7 @@ msgid "" "If several repos are related, it helps to see their status together." msgstr "" -#: gnu/packages/version-control.scm:3250 +#: gnu/packages/version-control.scm:3243 #, scheme-format msgid "" "@code{ghq} provides a way to organize remote repository clones, like\n" @@ -20156,7 +20403,7 @@ msgid "" "using the remote repository URL's host and path." msgstr "" -#: gnu/packages/version-control.scm:3295 +#: gnu/packages/version-control.scm:3288 msgid "" "TkRev (formerly TkCVS) is a Tcl/Tk-based graphical interface to the CVS,\n" "Subversion and Git configuration management systems. It will also help with\n" @@ -20165,7 +20412,7 @@ msgid "" "TkDiff is included for browsing and merging your changes." msgstr "" -#: gnu/packages/version-control.scm:3328 +#: gnu/packages/version-control.scm:3321 msgid "" "@command{git filter-repo} is a versatile tool for rewriting history,\n" "which roughly falls into the same space of tool like git filter-branch but\n" @@ -20203,7 +20450,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:865 +#: gnu/packages/virtualization.scm:870 msgid "" "Ganeti is a virtual machine management tool built on top of existing\n" "virtualization technologies such as Xen or KVM. Ganeti controls:\n" @@ -20220,19 +20467,19 @@ msgid "" "commodity hardware." msgstr "" -#: gnu/packages/virtualization.scm:902 +#: gnu/packages/virtualization.scm:907 msgid "" "This package provides a guest OS definition for Ganeti that uses\n" "Guix to build virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:996 +#: gnu/packages/virtualization.scm:1001 msgid "" "This package provides a guest OS definition for Ganeti. It installs\n" "Debian or a derivative using @command{debootstrap}." msgstr "" -#: gnu/packages/virtualization.scm:1056 +#: gnu/packages/virtualization.scm:1061 msgid "" "libosinfo is a GObject based library API for managing\n" "information about operating systems, hypervisors and the (virtual) hardware\n" @@ -20242,21 +20489,21 @@ msgid "" "all common programming languages. Vala bindings are also provided." msgstr "" -#: gnu/packages/virtualization.scm:1105 +#: gnu/packages/virtualization.scm:1109 msgid "" "LXC is a userspace interface for the Linux kernel containment features.\n" "Through a powerful API and simple tools, it lets Linux users easily create and\n" "manage system or application containers." msgstr "" -#: gnu/packages/virtualization.scm:1131 +#: gnu/packages/virtualization.scm:1135 msgid "" "LXCFS is a small FUSE file system written with the intention\n" "of making Linux containers feel more like a virtual machine.\n" "It started as a side project of LXC but can be used by any run-time." msgstr "" -#: gnu/packages/virtualization.scm:1239 +#: gnu/packages/virtualization.scm:1237 msgid "" "LXD is a next generation system container manager. It\n" "offers a user experience similar to virtual machines but using Linux\n" @@ -20265,7 +20512,7 @@ msgid "" "pretty simple, REST API." msgstr "" -#: gnu/packages/virtualization.scm:1332 +#: gnu/packages/virtualization.scm:1330 msgid "" "Libvirt is a C toolkit to interact with the virtualization\n" "capabilities of recent versions of Linux. The library aims at providing long\n" @@ -20273,7 +20520,7 @@ msgid "" "to integrate other virtualization mechanisms if needed." msgstr "" -#: gnu/packages/virtualization.scm:1363 +#: gnu/packages/virtualization.scm:1359 msgid "" "libvirt-glib wraps the libvirt library to provide a\n" "high-level object-oriented API better suited for glib-based applications, via\n" @@ -20286,13 +20533,13 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/virtualization.scm:1407 +#: gnu/packages/virtualization.scm:1403 msgid "" "This package provides Python bindings to the libvirt\n" "virtualization library." msgstr "" -#: gnu/packages/virtualization.scm:1520 +#: gnu/packages/virtualization.scm:1516 msgid "" "The virt-manager application is a desktop user interface for managing\n" "virtual machines through libvirt. It primarily targets KVM VMs, but also\n" @@ -20300,7 +20547,7 @@ msgid "" "domains, their live performance and resource utilization statistics." msgstr "" -#: gnu/packages/virtualization.scm:1620 +#: gnu/packages/virtualization.scm:1616 msgid "" "Using this tool, you can freeze a running application (or\n" "part of it) and checkpoint it to a hard drive as a collection of files. You\n" @@ -20309,14 +20556,14 @@ msgid "" "mainly implemented in user space." msgstr "" -#: gnu/packages/virtualization.scm:1647 +#: gnu/packages/virtualization.scm:1643 msgid "" "qmpbackup is designed to create and restore full and\n" "incremental backups of running QEMU virtual machines via QMP, the QEMU\n" "Machine Protocol." msgstr "" -#: gnu/packages/virtualization.scm:1731 +#: gnu/packages/virtualization.scm:1727 msgid "" "Looking Glass allows the use of a KVM (Kernel-based Virtual\n" "Machine) configured for VGA PCI Pass-through without an attached physical\n" @@ -20324,7 +20571,7 @@ msgid "" "main monitor/GPU." msgstr "" -#: gnu/packages/virtualization.scm:1783 +#: gnu/packages/virtualization.scm:1779 msgid "" "@command{runc} is a command line client for running applications\n" "packaged according to the\n" @@ -20333,13 +20580,13 @@ msgid "" "Open Container Initiative specification." msgstr "" -#: gnu/packages/virtualization.scm:1832 +#: gnu/packages/virtualization.scm:1828 msgid "" "@command{umoci} is a tool that allows for high-level modification of an\n" "Open Container Initiative (OCI) image layout and its tagged images." msgstr "" -#: gnu/packages/virtualization.scm:1886 +#: gnu/packages/virtualization.scm:1882 msgid "" "@command{skopeo} is a command line utility providing various operations\n" "with container images and container image registries. It can:\n" @@ -20360,14 +20607,14 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:1922 +#: gnu/packages/virtualization.scm:1918 msgid "" "Python-vagrant is a Python module that provides a thin wrapper around the\n" "@code{vagrant} command line executable, allowing programmatic control of Vagrant\n" "virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:1977 +#: gnu/packages/virtualization.scm:1979 msgid "" "Bubblewrap is aimed at running applications in a sandbox,\n" "restricting their access to parts of the operating system or user data such as\n" @@ -20377,7 +20624,7 @@ msgid "" "by default and can be made read-only." msgstr "" -#: gnu/packages/virtualization.scm:2004 +#: gnu/packages/virtualization.scm:2006 msgid "" "Bochs is an emulator which can emulate Intel x86 CPU, common I/O\n" "devices, and a custom BIOS. It can also be compiled to emulate many different\n" @@ -20386,64 +20633,67 @@ msgid "" "DOS or Microsoft Windows." msgstr "" -#: gnu/packages/virtualization.scm:2210 +#: gnu/packages/virtualization.scm:2212 msgid "" "This package provides the Xen Virtual Machine Monitor\n" "which is a hypervisor." msgstr "" -#: gnu/packages/virtualization.scm:2242 +#: gnu/packages/virtualization.scm:2244 msgid "" "This package contains a set of tools to assist\n" "administrators and developers in managing the database." msgstr "" -#: gnu/packages/virtualization.scm:2275 +#: gnu/packages/virtualization.scm:2277 msgid "" "Osinfo-db provides the database files for use with the\n" "libosinfo library. It provides information about guest operating systems for\n" "use with virtualization provisioning tools" msgstr "" -#: gnu/packages/virtualization.scm:2317 +#: gnu/packages/virtualization.scm:2319 msgid "" "@code{transient} is a wrapper for QEMU allowing the creation of virtual\n" "machines with shared folder, ssh, and disk creation support." msgstr "" -#: gnu/packages/webkit.scm:93 +#: gnu/packages/webkit.scm:94 msgid "" "LibWPE is general-purpose library specifically developed for\n" "the WPE-flavored port of WebKit." msgstr "" -#: gnu/packages/webkit.scm:119 +#: gnu/packages/webkit.scm:120 msgid "" "This package provides a backend implementation for the WPE WebKit\n" "engine that uses Wayland for graphics output." msgstr "" -#: gnu/packages/webkit.scm:216 +#: gnu/packages/webkit.scm:227 msgid "" "WPE WebKit allows embedders to create simple and performant\n" "systems based on Web platform technologies. It is designed with hardware\n" "acceleration in mind, leveraging common 3D graphics APIs for best performance." msgstr "" -#: gnu/packages/webkit.scm:351 +#: gnu/packages/webkit.scm:355 msgid "" "WebKitGTK+ is a full-featured port of the WebKit rendering engine,\n" "suitable for projects requiring any kind of web integration, from hybrid\n" -"HTML/CSS applications to full-fledged web browsers." +"HTML/CSS applications to full-fledged web browsers. WebKitGTK+ video playing\n" +"capabilities can be extended through the use of GStreamer plugins (not\n" +"propagated by default) such as @code{gst-plugins-good} and\n" +"@code{gst-plugins-bad}." msgstr "" -#: gnu/packages/web.scm:250 +#: gnu/packages/web.scm:251 msgid "" "Qhttp is a light-weight and asynchronous HTTP library\n" "(both server & client) in Qt5 and C++14." msgstr "" -#: gnu/packages/web.scm:280 +#: gnu/packages/web.scm:281 msgid "" "The Apache HTTP Server Project is a collaborative software development\n" "effort aimed at creating a robust, commercial-grade, featureful, and\n" @@ -20453,14 +20703,14 @@ msgid "" "and its related documentation." msgstr "" -#: gnu/packages/web.scm:314 +#: gnu/packages/web.scm:315 msgid "" "The mod_wsgi module for the Apache HTTPD Server adds support for running\n" "applications that support the Python @acronym{WSGI, Web Server Gateway\n" "Interface} specification." msgstr "" -#: gnu/packages/web.scm:356 +#: gnu/packages/web.scm:357 msgid "" "Monolith bundles any web page into a single HTML file.\n" "\n" @@ -20473,38 +20723,38 @@ msgid "" "the same, being completely separated from the Internet." msgstr "" -#: gnu/packages/web.scm:460 +#: gnu/packages/web.scm:461 msgid "" "Nginx (\"engine X\") is a high-performance web and reverse proxy server\n" "created by Igor Sysoev. It can be used both as a stand-alone web server\n" "and as a proxy to reduce the load on back-end HTTP or mail servers." msgstr "" -#: gnu/packages/web.scm:518 +#: gnu/packages/web.scm:519 msgid "This package provides HTML documentation for the nginx web server." msgstr "" -#: gnu/packages/web.scm:647 +#: gnu/packages/web.scm:648 msgid "" "This nginx module parses the Accept-Language field in HTTP headers and\n" "chooses the most suitable locale for the user from the list of locales\n" "supported at your website." msgstr "" -#: gnu/packages/web.scm:694 +#: gnu/packages/web.scm:695 msgid "" "XSLScript is a terse notation for writing complex XSLT stylesheets.\n" "This is modified version, specifically intended for use with the NGinx\n" "documentation." msgstr "" -#: gnu/packages/web.scm:767 +#: gnu/packages/web.scm:768 msgid "" "This NGINX module provides a scripting support with Lua\n" "programming language." msgstr "" -#: gnu/packages/web.scm:820 +#: gnu/packages/web.scm:821 msgid "" "This NGINX module provides streaming with the @acronym{RTMP,\n" "Real-Time Messaging Protocol}, @acronym{DASH, Dynamic Adaptive Streaming over HTTP},\n" @@ -20514,7 +20764,7 @@ msgid "" "stream. Remote control of the module is possible over HTTP." msgstr "" -#: gnu/packages/web.scm:882 +#: gnu/packages/web.scm:883 msgid "" "Lighttpd is a secure, fast, compliant, and very flexible web-server that\n" "has been optimized for high-performance environments. It has a very low\n" @@ -20522,41 +20772,41 @@ msgid "" "CGI, authentication, output compression, URL rewriting and many more." msgstr "" -#: gnu/packages/web.scm:910 +#: gnu/packages/web.scm:911 msgid "" "FastCGI is a language-independent, scalable extension to CGI\n" "that provides high performance without the limitations of server specific\n" "APIs." msgstr "" -#: gnu/packages/web.scm:948 +#: gnu/packages/web.scm:949 msgid "" "Fcgiwrap is a simple server for running CGI applications\n" "over FastCGI. It hopes to provide clean CGI support to Nginx (and other web\n" "servers that may need it)." msgstr "" -#: gnu/packages/web.scm:977 +#: gnu/packages/web.scm:978 msgid "" "Starman is a PSGI perl web server that has unique features\n" "such as high performance, preforking, signal support, superdaemon awareness,\n" "and UNIX socket support." msgstr "" -#: gnu/packages/web.scm:1010 +#: gnu/packages/web.scm:1011 msgid "" "IcedTea-Web is an implementation of the @dfn{Java Network Launching\n" "Protocol}, also known as Java Web Start. This package provides tools and\n" "libraries for working with JNLP applets." msgstr "" -#: gnu/packages/web.scm:1035 +#: gnu/packages/web.scm:1036 msgid "" "Jansson is a C library for encoding, decoding and manipulating JSON\n" "data." msgstr "" -#: gnu/packages/web.scm:1055 +#: gnu/packages/web.scm:1056 msgid "" "JSON-C implements a reference counting object model that allows you to\n" "easily construct JSON objects in C, output them as JSON-formatted strings and\n" @@ -20564,7 +20814,7 @@ msgid "" "It aims to conform to RFC 7159." msgstr "" -#: gnu/packages/web.scm:1131 +#: gnu/packages/web.scm:1132 msgid "" "This package provides a very low footprint JSON parser\n" "written in portable ANSI C.\n" @@ -20577,21 +20827,21 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:1176 +#: gnu/packages/web.scm:1177 msgid "" "QJson is a Qt-based library that maps JSON data to\n" "@code{QVariant} objects. JSON arrays will be mapped to @code{QVariantList}\n" "instances, while JSON's objects will be mapped to @code{QVariantMap}." msgstr "" -#: gnu/packages/web.scm:1227 +#: gnu/packages/web.scm:1228 msgid "" "QOAuth is an attempt to support interaction with\n" "OAuth-powered network services in a Qt way, i.e. simply, clearly and\n" "efficiently. It gives the application developer no more than 4 methods." msgstr "" -#: gnu/packages/web.scm:1339 +#: gnu/packages/web.scm:1340 msgid "" "Krona is a flexible tool for exploring the relative proportions of\n" "hierarchical data, such as metagenomic classifications, using a radial,\n" @@ -20600,26 +20850,26 @@ msgid "" "current version of any major web browser." msgstr "" -#: gnu/packages/web.scm:1380 +#: gnu/packages/web.scm:1381 msgid "" "RapidJSON is a fast JSON parser/generator for C++ with both SAX/DOM\n" "style API." msgstr "" -#: gnu/packages/web.scm:1409 +#: gnu/packages/web.scm:1410 msgid "" "Yet Another JSON Library (YAJL) is a small event-driven (SAX-style) JSON\n" "parser written in ANSI C and a small validating JSON generator." msgstr "" -#: gnu/packages/web.scm:1439 +#: gnu/packages/web.scm:1440 msgid "" "Libwebsockets is a library that allows C programs to establish client\n" "and server WebSockets connections---a protocol layered above HTTP that allows\n" "for efficient socket-like bidirectional reliable communication channels." msgstr "" -#: gnu/packages/web.scm:1468 +#: gnu/packages/web.scm:1469 msgid "" "WABT (pronounced: wabbit) is a suite of tools for\n" "WebAssembly, including:\n" @@ -20644,7 +20894,7 @@ msgid "" "other systems that want to manipulate WebAssembly files." msgstr "" -#: gnu/packages/web.scm:1518 +#: gnu/packages/web.scm:1519 msgid "" "WebSocket++ is a C++ library that can be used to implement\n" "WebSocket functionality. The goals of the project are to provide a WebSocket\n" @@ -20652,7 +20902,7 @@ msgid "" "high performance." msgstr "" -#: gnu/packages/web.scm:1558 +#: gnu/packages/web.scm:1559 msgid "" "@code{Wslay} is an event-based C library for the WebSocket\n" "protocol version 13, described in RFC 6455. Besides a high-level API it\n" @@ -20661,7 +20911,7 @@ msgid "" "perform the opening handshake in HTTP." msgstr "" -#: gnu/packages/web.scm:1588 +#: gnu/packages/web.scm:1589 msgid "" "A \"public suffix\" is a domain name under which Internet users can\n" "directly register own names.\n" @@ -20679,20 +20929,20 @@ msgid "" "UTS#46." msgstr "" -#: gnu/packages/web.scm:1633 +#: gnu/packages/web.scm:1634 msgid "" "HTML Tidy is a command-line tool and C library that can be\n" "used to validate and fix HTML data." msgstr "" -#: gnu/packages/web.scm:1680 +#: gnu/packages/web.scm:1681 msgid "" "The esbuild tool provides a unified bundler, transpiler and\n" "minifier. It packages up JavaScript and TypeScript code, along with JSON\n" "and other data, for distribution on the web." msgstr "" -#: gnu/packages/web.scm:1716 +#: gnu/packages/web.scm:1717 msgid "" "Tinyproxy is a light-weight HTTP/HTTPS proxy\n" "daemon. Designed from the ground up to be fast and yet small, it is an ideal\n" @@ -20701,14 +20951,14 @@ msgid "" "unavailable." msgstr "" -#: gnu/packages/web.scm:1751 +#: gnu/packages/web.scm:1752 msgid "" "Polipo is a small caching web proxy (web cache, HTTP proxy, and proxy\n" "server). It was primarily designed to be used by one person or a small group\n" "of people." msgstr "" -#: gnu/packages/web.scm:1779 +#: gnu/packages/web.scm:1780 msgid "" "Websockify translates WebSockets traffic to normal socket\n" "traffic. Websockify accepts the WebSockets handshake, parses it, and then\n" @@ -20716,7 +20966,7 @@ msgid "" "directions." msgstr "" -#: gnu/packages/web.scm:1806 +#: gnu/packages/web.scm:1807 msgid "" "WWWOFFLE is a proxy web server that is especially good for\n" "intermittent internet links. It can cache HTTP, HTTPS, FTP, and finger\n" @@ -20725,7 +20975,7 @@ msgid "" "changes, and much more." msgstr "" -#: gnu/packages/web.scm:1832 +#: gnu/packages/web.scm:1833 msgid "" "liboauth is a collection of C functions implementing the OAuth API.\n" "liboauth provides functions to escape and encode strings according to OAuth\n" @@ -20734,25 +20984,25 @@ msgid "" "hash/signatures." msgstr "" -#: gnu/packages/web.scm:1855 +#: gnu/packages/web.scm:1856 msgid "" "This package contains support scripts called by libquvi to\n" "parse media stream properties." msgstr "" -#: gnu/packages/web.scm:1889 +#: gnu/packages/web.scm:1890 msgid "" "libquvi is a library with a C API for parsing media stream\n" "URLs and extracting their actual media files." msgstr "" -#: gnu/packages/web.scm:1911 +#: gnu/packages/web.scm:1912 msgid "" "quvi is a command-line-tool suite to extract media files\n" "from streaming URLs. It is a command-line wrapper for the libquvi library." msgstr "" -#: gnu/packages/web.scm:1983 +#: gnu/packages/web.scm:1984 msgid "" "serf is a C-based HTTP client library built upon the Apache Portable\n" "Runtime (APR) library. It multiplexes connections, running the read/write\n" @@ -20760,7 +21010,7 @@ msgid "" "minimum to provide high performance operation." msgstr "" -#: gnu/packages/web.scm:2018 +#: gnu/packages/web.scm:2019 msgid "" "LibSass is a @acronym{SASS,Syntactically awesome style sheets} compiler\n" "library designed for portability and efficiency. To actually compile SASS\n" @@ -20768,29 +21018,29 @@ msgid "" "@var{sassc} for example." msgstr "" -#: gnu/packages/web.scm:2067 +#: gnu/packages/web.scm:2068 msgid "" "SassC is a compiler written in C for the CSS pre-processor\n" "language known as SASS." msgstr "" -#: gnu/packages/web.scm:2112 +#: gnu/packages/web.scm:2113 msgid "" "This module provides methods to compile a log format string\n" "to perl-code, for faster generation of access_log lines." msgstr "" -#: gnu/packages/web.scm:2140 +#: gnu/packages/web.scm:2141 msgid "Authen::SASL provides an SASL authentication framework." msgstr "" -#: gnu/packages/web.scm:2163 +#: gnu/packages/web.scm:2164 msgid "" "This Catalyst action implements a sensible default end\n" "action, which will forward to the first available view." msgstr "" -#: gnu/packages/web.scm:2195 +#: gnu/packages/web.scm:2196 msgid "" "This Action handles doing automatic method dispatching for\n" "REST requests. It takes a normal Catalyst action, and changes the dispatch to\n" @@ -20799,20 +21049,20 @@ msgid "" "regular method." msgstr "" -#: gnu/packages/web.scm:2226 +#: gnu/packages/web.scm:2227 msgid "" "The Catalyst::Authentication::Store::DBIx::Class class\n" "provides access to authentication information stored in a database via\n" "DBIx::Class." msgstr "" -#: gnu/packages/web.scm:2252 +#: gnu/packages/web.scm:2253 msgid "" "Catalyst::Component::InstancePerContext returns a new\n" "instance of a component on each request." msgstr "" -#: gnu/packages/web.scm:2288 +#: gnu/packages/web.scm:2289 msgid "" "The Catalyst-Devel distribution includes a variety of\n" "modules useful for the development of Catalyst applications, but not required\n" @@ -20822,7 +21072,7 @@ msgid "" "modules." msgstr "" -#: gnu/packages/web.scm:2316 +#: gnu/packages/web.scm:2317 msgid "" "Dispatch type managing path-matching behaviour using\n" "regexes. Regex dispatch types have been deprecated and removed from Catalyst\n" @@ -20832,20 +21082,20 @@ msgid "" "when the dispatch type is first seen in your application." msgstr "" -#: gnu/packages/web.scm:2363 +#: gnu/packages/web.scm:2364 msgid "" "This is a Catalyst Model for DBIx::Class::Schema-based\n" "Models." msgstr "" -#: gnu/packages/web.scm:2385 +#: gnu/packages/web.scm:2386 msgid "" "This Catalyst plugin enables you to create \"access logs\"\n" "from within a Catalyst application instead of requiring a webserver to do it\n" "for you. It will work even with Catalyst debug logging turned off." msgstr "" -#: gnu/packages/web.scm:2419 +#: gnu/packages/web.scm:2420 msgid "" "The authentication plugin provides generic user support for\n" "Catalyst apps. It is the basis for both authentication (checking the user is\n" @@ -20853,32 +21103,32 @@ msgid "" "system authorises them to do)." msgstr "" -#: gnu/packages/web.scm:2447 +#: gnu/packages/web.scm:2448 msgid "" "Catalyst::Plugin::Authorization::Roles provides role-based\n" "authorization for Catalyst based on Catalyst::Plugin::Authentication." msgstr "" -#: gnu/packages/web.scm:2469 +#: gnu/packages/web.scm:2470 msgid "" "This plugin creates and validates Captcha images for\n" "Catalyst." msgstr "" -#: gnu/packages/web.scm:2493 +#: gnu/packages/web.scm:2494 msgid "" "This module will attempt to load find and load configuration\n" "files of various types. Currently it supports YAML, JSON, XML, INI and Perl\n" "formats." msgstr "" -#: gnu/packages/web.scm:2522 +#: gnu/packages/web.scm:2523 msgid "" "This plugin links the two pieces required for session\n" "management in web applications together: the state, and the store." msgstr "" -#: gnu/packages/web.scm:2548 +#: gnu/packages/web.scm:2549 msgid "" "In order for Catalyst::Plugin::Session to work, the session\n" "ID needs to be stored on the client, and the session data needs to be stored\n" @@ -20886,14 +21136,14 @@ msgid "" "cookie mechanism." msgstr "" -#: gnu/packages/web.scm:2578 +#: gnu/packages/web.scm:2579 msgid "" "Catalyst::Plugin::Session::Store::FastMmap is a fast session\n" "storage plugin for Catalyst that uses an mmap'ed file to act as a shared\n" "memory interprocess cache. It is based on Cache::FastMmap." msgstr "" -#: gnu/packages/web.scm:2602 +#: gnu/packages/web.scm:2603 msgid "" "This plugin enhances the standard Catalyst debug screen by\n" "including a stack trace of your application up to the point where the error\n" @@ -20901,7 +21151,7 @@ msgid "" "number, file name, and code context surrounding the line number." msgstr "" -#: gnu/packages/web.scm:2628 +#: gnu/packages/web.scm:2629 msgid "" "The Static::Simple plugin is designed to make serving static\n" "content in your application during development quick and easy, without\n" @@ -20912,7 +21162,7 @@ msgid "" "MIME type directly to the browser, without being processed through Catalyst." msgstr "" -#: gnu/packages/web.scm:2687 +#: gnu/packages/web.scm:2688 msgid "" "Catalyst is a modern framework for making web applications.\n" "It is designed to make it easy to manage the various tasks you need to do to\n" @@ -20920,7 +21170,7 @@ msgid "" "\"plug in\" existing Perl modules that do what you need." msgstr "" -#: gnu/packages/web.scm:2715 +#: gnu/packages/web.scm:2716 msgid "" "This module is a Moose::Role which allows you more\n" "flexibility in your application's deployment configurations when deployed\n" @@ -20928,26 +21178,26 @@ msgid "" "replaced with the contents of the X-Request-Base header." msgstr "" -#: gnu/packages/web.scm:2743 +#: gnu/packages/web.scm:2744 msgid "" "The purpose of this module is to provide a method for\n" "downloading data into many supportable formats. For example, downloading a\n" "table based report in a variety of formats (CSV, HTML, etc.)." msgstr "" -#: gnu/packages/web.scm:2767 +#: gnu/packages/web.scm:2768 msgid "" "Catalyst::View::JSON is a Catalyst View handler that returns\n" "stash data in JSON format." msgstr "" -#: gnu/packages/web.scm:2793 +#: gnu/packages/web.scm:2794 msgid "" "This module is a Catalyst view class for the Template\n" "Toolkit." msgstr "" -#: gnu/packages/web.scm:2821 +#: gnu/packages/web.scm:2822 msgid "" "Adds a \"COMPONENT\" in Catalyst::Component method to your\n" "Catalyst component base class that reads the optional \"traits\" parameter\n" @@ -20956,19 +21206,19 @@ msgid "" "MooseX::Traits::Pluggable." msgstr "" -#: gnu/packages/web.scm:2845 +#: gnu/packages/web.scm:2846 msgid "" "CatalystX::RoleApplicator applies roles to Catalyst\n" "application classes." msgstr "" -#: gnu/packages/web.scm:2870 +#: gnu/packages/web.scm:2871 msgid "" "This module provides a Catalyst extension to replace the\n" "development server with Starman." msgstr "" -#: gnu/packages/web.scm:2892 +#: gnu/packages/web.scm:2893 msgid "" "CGI.pm is a stable, complete and mature solution for\n" "processing and preparing HTTP requests and responses. Major features include\n" @@ -20977,44 +21227,44 @@ msgid "" "headers." msgstr "" -#: gnu/packages/web.scm:2919 +#: gnu/packages/web.scm:2920 msgid "" "@code{CGI::FormBuilder} provides an easy way to generate and process CGI\n" "form-based applications." msgstr "" -#: gnu/packages/web.scm:2946 +#: gnu/packages/web.scm:2947 msgid "" "@code{CGI::Session} provides modular session management system across\n" "HTTP requests." msgstr "" -#: gnu/packages/web.scm:2967 +#: gnu/packages/web.scm:2968 msgid "" "CGI::Simple provides a relatively lightweight drop in\n" "replacement for CGI.pm. It shares an identical OO interface to CGI.pm for\n" "parameter parsing, file upload, cookie handling and header generation." msgstr "" -#: gnu/packages/web.scm:2989 +#: gnu/packages/web.scm:2990 msgid "" "This is a module for building structured data from CGI\n" "inputs, in a manner reminiscent of how PHP does." msgstr "" -#: gnu/packages/web.scm:3012 +#: gnu/packages/web.scm:3013 msgid "" "This module provides functions that deal with the date\n" "formats used by the HTTP protocol." msgstr "" -#: gnu/packages/web.scm:3033 +#: gnu/packages/web.scm:3034 msgid "" "Digest::MD5::File is a Perl extension for getting MD5 sums\n" "for files and urls." msgstr "" -#: gnu/packages/web.scm:3053 +#: gnu/packages/web.scm:3054 msgid "" "The POSIX locale system is used to specify both the language\n" "conventions requested by the user and the preferred character set to\n" @@ -21026,66 +21276,66 @@ msgid "" "with Encode::decode(locale => $string)." msgstr "" -#: gnu/packages/web.scm:3086 +#: gnu/packages/web.scm:3087 msgid "" "@code{Feed::Find} implements feed auto-discovery for finding\n" "syndication feeds, given a URI. It will discover the following feed formats:\n" "RSS 0.91, RSS 1.0, RSS 2.0, Atom." msgstr "" -#: gnu/packages/web.scm:3109 +#: gnu/packages/web.scm:3110 msgid "" "The File::Listing module exports a single function called parse_dir(),\n" "which can be used to parse directory listings." msgstr "" -#: gnu/packages/web.scm:3142 +#: gnu/packages/web.scm:3143 msgid "" "Finance::Quote gets stock quotes from various internet sources, including\n" "Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange." msgstr "" -#: gnu/packages/web.scm:3165 +#: gnu/packages/web.scm:3166 msgid "" "This is a Perl extension for using GSSAPI C bindings as\n" "described in RFC 2744." msgstr "" -#: gnu/packages/web.scm:3187 +#: gnu/packages/web.scm:3188 msgid "" "HTML::Element::Extended is a Perl extension for manipulating a table\n" "composed of HTML::Element style components." msgstr "" -#: gnu/packages/web.scm:3208 +#: gnu/packages/web.scm:3209 msgid "" "Objects of the HTML::Form class represents a single HTML\n" "
...
instance." msgstr "" -#: gnu/packages/web.scm:3241 +#: gnu/packages/web.scm:3242 msgid "@code{HTML::Scrubber} Perl extension for scrubbing/sanitizing HTML." msgstr "" -#: gnu/packages/web.scm:3260 +#: gnu/packages/web.scm:3261 msgid "" "HTML::Lint is a pure-Perl HTML parser and checker for\n" "syntactic legitmacy." msgstr "" -#: gnu/packages/web.scm:3282 +#: gnu/packages/web.scm:3283 msgid "" "HTML::TableExtract is a Perl module for extracting the content contained\n" "in tables within an HTML document, either as text or encoded element trees." msgstr "" -#: gnu/packages/web.scm:3305 +#: gnu/packages/web.scm:3306 msgid "" "This distribution contains a suite of modules for\n" "representing, creating, and extracting information from HTML syntax trees." msgstr "" -#: gnu/packages/web.scm:3327 +#: gnu/packages/web.scm:3328 msgid "" "Objects of the HTML::Parser class will recognize markup and separate\n" "it from plain text (alias data content) in HTML documents. As different\n" @@ -21093,13 +21343,13 @@ msgid "" "are invoked." msgstr "" -#: gnu/packages/web.scm:3349 +#: gnu/packages/web.scm:3350 msgid "" "The HTML::Tagset module contains several data tables useful in various\n" "kinds of HTML parsing operations." msgstr "" -#: gnu/packages/web.scm:3370 +#: gnu/packages/web.scm:3371 msgid "" "This module attempts to make using HTML templates simple and natural.\n" "It extends standard HTML with a few new HTML-esque tags: @code{},\n" @@ -21110,40 +21360,40 @@ msgid "" "you to separate design from the data." msgstr "" -#: gnu/packages/web.scm:3398 +#: gnu/packages/web.scm:3399 msgid "" "HTTP::Body parses chunks of HTTP POST data and supports\n" "application/octet-stream, application/json, application/x-www-form-urlencoded,\n" "and multipart/form-data." msgstr "" -#: gnu/packages/web.scm:3421 +#: gnu/packages/web.scm:3422 msgid "" "This module implements a minimalist HTTP user agent cookie\n" "jar in conformance with RFC 6265 ." msgstr "" -#: gnu/packages/web.scm:3443 +#: gnu/packages/web.scm:3444 msgid "" "The HTTP::Cookies class is for objects that represent a cookie jar,\n" "that is, a database of all the HTTP cookies that a given LWP::UserAgent\n" "object knows about." msgstr "" -#: gnu/packages/web.scm:3466 +#: gnu/packages/web.scm:3467 msgid "" "Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen\n" "on a socket for incoming requests. The HTTP::Daemon is a subclass of\n" "IO::Socket::INET, so you can perform socket operations directly on it too." msgstr "" -#: gnu/packages/web.scm:3487 +#: gnu/packages/web.scm:3488 msgid "" "The HTTP::Date module provides functions that deal with date formats\n" "used by the HTTP protocol (and then some more)." msgstr "" -#: gnu/packages/web.scm:3508 +#: gnu/packages/web.scm:3509 msgid "" "@code{HTTP::Lite} is a stand-alone lightweight\n" "HTTP/1.1 implementation for perl. It is intended for use in\n" @@ -21157,11 +21407,11 @@ msgid "" "processing of request data as it arrives." msgstr "" -#: gnu/packages/web.scm:3541 +#: gnu/packages/web.scm:3542 msgid "An HTTP::Message object contains some headers and a content body." msgstr "" -#: gnu/packages/web.scm:3562 +#: gnu/packages/web.scm:3563 msgid "" "The HTTP::Negotiate module provides a complete implementation of the\n" "HTTP content negotiation algorithm specified in\n" @@ -21171,7 +21421,7 @@ msgid "" "fields in the request." msgstr "" -#: gnu/packages/web.scm:3587 +#: gnu/packages/web.scm:3588 msgid "" "This is an HTTP request parser. It takes chunks of text as\n" "received and returns a @code{hint} as to what is required, or returns the\n" @@ -21179,33 +21429,33 @@ msgid "" "supported." msgstr "" -#: gnu/packages/web.scm:3610 +#: gnu/packages/web.scm:3611 msgid "" "HTTP::Parser::XS is a fast, primitive HTTP request/response\n" "parser." msgstr "" -#: gnu/packages/web.scm:3631 +#: gnu/packages/web.scm:3632 msgid "" "This module provides a convenient way to set up a CGI\n" "environment from an HTTP::Request." msgstr "" -#: gnu/packages/web.scm:3665 +#: gnu/packages/web.scm:3666 msgid "" "HTTP::Server::Simple is a simple standalone HTTP daemon with\n" "no non-core module dependencies. It can be used for building a standalone\n" "http-based UI to your existing tools." msgstr "" -#: gnu/packages/web.scm:3688 +#: gnu/packages/web.scm:3689 msgid "" "This is a very simple HTTP/1.1 client, designed for doing\n" "simple requests without the overhead of a large framework like LWP::UserAgent.\n" "It supports proxies and redirection. It also correctly resumes after EINTR." msgstr "" -#: gnu/packages/web.scm:3713 +#: gnu/packages/web.scm:3714 msgid "" "@code{HTTP::Tinyish} is a wrapper module for @acronym{LWP,libwww-perl},\n" "@code{HTTP::Tiny}, curl and wget.\n" @@ -21213,20 +21463,20 @@ msgid "" "It provides an API compatible to HTTP::Tiny." msgstr "" -#: gnu/packages/web.scm:3735 +#: gnu/packages/web.scm:3736 msgid "" "IO::HTML provides an easy way to open a file containing HTML while\n" "automatically determining its encoding. It uses the HTML5 encoding sniffing\n" "algorithm specified in section 8.2.2.1 of the draft standard." msgstr "" -#: gnu/packages/web.scm:3755 +#: gnu/packages/web.scm:3756 msgid "" "This module provides a protocol-independent way to use IPv4\n" "and IPv6 sockets, intended as a replacement for IO::Socket::INET." msgstr "" -#: gnu/packages/web.scm:3777 +#: gnu/packages/web.scm:3778 msgid "" "IO::Socket::SSL makes using SSL/TLS much easier by wrapping the\n" "necessary functionality into the familiar IO::Socket interface and providing\n" @@ -21235,7 +21485,7 @@ msgid "" "select or poll." msgstr "" -#: gnu/packages/web.scm:3816 +#: gnu/packages/web.scm:3817 msgid "" "The libwww-perl collection is a set of Perl modules which provides a\n" "simple and consistent application programming interface to the\n" @@ -21245,7 +21495,7 @@ msgid "" "help you implement simple HTTP servers." msgstr "" -#: gnu/packages/web.scm:3844 +#: gnu/packages/web.scm:3845 msgid "" "This module attempts to answer, as accurately as it can, one\n" "of the nastiest technical questions there is: am I on the internet?\n" @@ -21255,7 +21505,7 @@ msgid "" "not have DNS. We might not have a network card at all!" msgstr "" -#: gnu/packages/web.scm:3870 +#: gnu/packages/web.scm:3871 #, scheme-format msgid "" "The LWP::MediaTypes module provides functions for handling media (also\n" @@ -21264,20 +21514,20 @@ msgid "" "exists it is used instead." msgstr "" -#: gnu/packages/web.scm:3895 +#: gnu/packages/web.scm:3896 msgid "" "The LWP::Protocol::https module provides support for using\n" "https schemed URLs with LWP." msgstr "" -#: gnu/packages/web.scm:3916 +#: gnu/packages/web.scm:3917 msgid "" "LWP::UserAgent::Cached is an LWP::UserAgent subclass with\n" "cache support. It returns responses from the local file system, if available,\n" "instead of making an HTTP request." msgstr "" -#: gnu/packages/web.scm:3938 +#: gnu/packages/web.scm:3939 msgid "" "LWP::UserAgent::Determined works just like LWP::UserAgent,\n" "except that when you use it to get a web page but run into a\n" @@ -21285,7 +21535,7 @@ msgid "" "and retry a few times." msgstr "" -#: gnu/packages/web.scm:3965 +#: gnu/packages/web.scm:3966 msgid "" "@code{LWPx::ParanoidAgent} is a class subclassing\n" "@code{LWP::UserAgent} but paranoid against attackers. Its purpose is\n" @@ -21295,11 +21545,11 @@ msgid "" "is limited to http and https." msgstr "" -#: gnu/packages/web.scm:4011 +#: gnu/packages/web.scm:4012 msgid "This module provides a Perlish interface to Amazon S3." msgstr "" -#: gnu/packages/web.scm:4032 +#: gnu/packages/web.scm:4033 msgid "" "The Net::HTTP class is a low-level HTTP client. An instance of the\n" "Net::HTTP class represents a connection to an HTTP server. The HTTP protocol\n" @@ -21307,7 +21557,7 @@ msgid "" "HTTP/1.1." msgstr "" -#: gnu/packages/web.scm:4053 +#: gnu/packages/web.scm:4054 msgid "" "Net::Server is an extensible, generic Perl server engine.\n" "It attempts to be a generic server as in Net::Daemon and NetServer::Generic.\n" @@ -21321,11 +21571,11 @@ msgid "" "or to multiple server ports." msgstr "" -#: gnu/packages/web.scm:4082 +#: gnu/packages/web.scm:4083 msgid "SSL support for Net::SMTP." msgstr "" -#: gnu/packages/web.scm:4116 +#: gnu/packages/web.scm:4117 msgid "" "Plack is a set of tools for using the PSGI stack. It\n" "contains middleware components, a reference server, and utilities for Web\n" @@ -21333,7 +21583,7 @@ msgid "" "WSGI." msgstr "" -#: gnu/packages/web.scm:4143 +#: gnu/packages/web.scm:4144 msgid "" "Plack::Middleware::Deflater is a middleware to encode your response body\n" "in gzip or deflate, based on \"Accept-Encoding\" HTTP request header. It\n" @@ -21342,13 +21592,13 @@ msgid "" "servers." msgstr "" -#: gnu/packages/web.scm:4170 +#: gnu/packages/web.scm:4171 msgid "" "This module sets the body in redirect response, if it's not\n" "already set." msgstr "" -#: gnu/packages/web.scm:4193 +#: gnu/packages/web.scm:4194 msgid "" "This middleware allows for POST requests that pretend to be\n" "something else: by adding either a header named X-HTTP-Method-Override to the\n" @@ -21356,44 +21606,44 @@ msgid "" "can say what method it actually meant." msgstr "" -#: gnu/packages/web.scm:4217 +#: gnu/packages/web.scm:4218 msgid "" "This module removes the body in an HTTP response if it's not\n" "required." msgstr "" -#: gnu/packages/web.scm:4240 +#: gnu/packages/web.scm:4241 msgid "" "Plack::Middleware::ReverseProxy resets some HTTP headers,\n" "which are changed by reverse-proxy. You can specify the reverse proxy address\n" "and stop fake requests using @code{enable_if} directive in your app.psgi." msgstr "" -#: gnu/packages/web.scm:4261 +#: gnu/packages/web.scm:4262 msgid "" "This module allows your to run your Plack::Test tests\n" "against an external server instead of just against a local application through\n" "either mocked HTTP or a locally spawned server." msgstr "" -#: gnu/packages/web.scm:4283 +#: gnu/packages/web.scm:4284 msgid "Test::TCP is test utilities for TCP/IP programs." msgstr "" -#: gnu/packages/web.scm:4308 +#: gnu/packages/web.scm:4309 msgid "" "Test::WWW::Mechanize is a subclass of the Perl module\n" "WWW::Mechanize that incorporates features for web application testing." msgstr "" -#: gnu/packages/web.scm:4341 +#: gnu/packages/web.scm:4342 msgid "" "The Test::WWW::Mechanize::Catalyst module meshes the\n" "Test::WWW:Mechanize module and the Catalyst web application framework to allow\n" "testing of Catalyst applications without needing to start up a web server." msgstr "" -#: gnu/packages/web.scm:4365 +#: gnu/packages/web.scm:4366 msgid "" "PSGI is a specification to decouple web server environments\n" "from web application framework code. Test::WWW::Mechanize is a subclass of\n" @@ -21402,21 +21652,21 @@ msgid "" "applications." msgstr "" -#: gnu/packages/web.scm:4390 +#: gnu/packages/web.scm:4391 msgid "" "The URI module implements the URI class. Objects of this class\n" "represent \"Uniform Resource Identifier references\" as specified in RFC 2396\n" "and updated by RFC 2732." msgstr "" -#: gnu/packages/web.scm:4413 +#: gnu/packages/web.scm:4414 msgid "" "@code{URI::Fetch} is a smart client for fetching HTTP pages,\n" "notably syndication feeds (RSS, Atom, and others), in an intelligent, bandwidth-\n" "and time-saving way." msgstr "" -#: gnu/packages/web.scm:4437 +#: gnu/packages/web.scm:4438 msgid "" "This module finds URIs and URLs (according to what URI.pm\n" "considers a URI) in plain text. It only finds URIs which include a\n" @@ -21424,37 +21674,37 @@ msgid "" "URI::Find::Schemeless. For a command-line interface, urifind is provided." msgstr "" -#: gnu/packages/web.scm:4460 +#: gnu/packages/web.scm:4461 msgid "" "With this module, the URI package provides the same set of\n" "methods for WebSocket URIs as it does for HTTP URIs." msgstr "" -#: gnu/packages/web.scm:4483 +#: gnu/packages/web.scm:4484 msgid "" "This perl module provides a wrapper around URI templates as described in\n" "RFC 6570." msgstr "" -#: gnu/packages/web.scm:4517 +#: gnu/packages/web.scm:4518 msgid "" "This is a Perl extension interface for the libcurl file downloading\n" "library." msgstr "" -#: gnu/packages/web.scm:4548 +#: gnu/packages/web.scm:4549 msgid "" "WWW::Mechanize is a Perl module for stateful programmatic\n" "web browsing, used for automating interaction with websites." msgstr "" -#: gnu/packages/web.scm:4586 +#: gnu/packages/web.scm:4587 msgid "" "@code{WWW::OpenSearch} is a module to search @url{A9's OpenSearch,\n" "http://opensearch.a9.com} compatible search engines." msgstr "" -#: gnu/packages/web.scm:4608 +#: gnu/packages/web.scm:4609 msgid "" "The WWW::RobotRules module parses /robots.txt files as specified in\n" "\"A Standard for Robot Exclusion\", at\n" @@ -21463,13 +21713,13 @@ msgid "" "their web site." msgstr "" -#: gnu/packages/web.scm:4635 gnu/packages/web.scm:4659 +#: gnu/packages/web.scm:4640 gnu/packages/web.scm:4664 msgid "" "Universal feed parser which handles RSS 0.9x, RSS 1.0, RSS 2.0,\n" "CDF, Atom 0.3, and Atom 1.0 feeds." msgstr "" -#: gnu/packages/web.scm:4756 +#: gnu/packages/web.scm:4761 msgid "" "The Guix Data Service stores data about GNU Guix, and provides this\n" "through a web interface. It supports listening to the guix-commits mailing\n" @@ -21477,20 +21727,20 @@ msgid "" "PostgreSQL database." msgstr "" -#: gnu/packages/web.scm:4785 +#: gnu/packages/web.scm:4790 msgid "" "Gumbo is an implementation of the HTML5 parsing algorithm implemented as\n" "a pure C99 library." msgstr "" -#: gnu/packages/web.scm:4858 +#: gnu/packages/web.scm:4863 msgid "" "uWSGI presents a complete stack for networked/clustered web applications,\n" "implementing message/object passing, caching, RPC and process management.\n" "It uses the uwsgi protocol for all the networking/interprocess communications." msgstr "" -#: gnu/packages/web.scm:4891 +#: gnu/packages/web.scm:4896 msgid "" "jq is like sed for JSON data – you can use it to slice and\n" "filter and map and transform structured data with the same ease that sed, awk,\n" @@ -21500,7 +21750,7 @@ msgid "" "you'd expect." msgstr "" -#: gnu/packages/web.scm:4920 +#: gnu/packages/web.scm:4925 msgid "" "@command{pup} is a command line tool for processing HTML. It reads\n" "from stdin, prints to stdout, and allows the user to filter parts of the page\n" @@ -21508,66 +21758,66 @@ msgid "" "fast and flexible way of exploring HTML from the terminal." msgstr "" -#: gnu/packages/web.scm:4953 +#: gnu/packages/web.scm:4958 msgid "" "Uhttpmock is a project for mocking web service APIs which use HTTP or\n" "HTTPS. It provides a library, libuhttpmock, which implements recording and\n" "playback of HTTP request/response traces." msgstr "" -#: gnu/packages/web.scm:4989 +#: gnu/packages/web.scm:4994 msgid "" "Woof (Web Offer One File) is a small simple web server that\n" "can easily be invoked on a single file. Your partner can access the file with\n" "tools they trust (e.g. wget)." msgstr "" -#: gnu/packages/web.scm:5017 +#: gnu/packages/web.scm:5022 msgid "" "This package provides the shared build system for Netsurf project\n" "libraries." msgstr "" -#: gnu/packages/web.scm:5052 +#: gnu/packages/web.scm:5057 msgid "" "LibParserUtils is a library for building efficient parsers, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5082 +#: gnu/packages/web.scm:5087 msgid "" "Hubbub is an HTML5 compliant parsing library, written in C, which can\n" "parse both valid and invalid web content. It is developed as part of the\n" "NetSurf project." msgstr "" -#: gnu/packages/web.scm:5203 +#: gnu/packages/web.scm:5208 msgid "" "Ikiwiki is a wiki compiler, capable of generating a static set of web\n" "pages, but also incorporating dynamic features like a web based editor and\n" "commenting." msgstr "" -#: gnu/packages/web.scm:5227 +#: gnu/packages/web.scm:5232 msgid "" "LibWapcaplet provides a reference counted string internment system\n" "designed to store small strings and allow rapid comparison of them. It is\n" "developed as part of the Netsurf project." msgstr "" -#: gnu/packages/web.scm:5259 +#: gnu/packages/web.scm:5264 msgid "" "LibCSS is a CSS (Cascading Style Sheet) parser and selection engine,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5294 +#: gnu/packages/web.scm:5299 msgid "" "LibDOM is an implementation of the W3C DOM, written in C. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5321 +#: gnu/packages/web.scm:5326 msgid "" "Libsvgtiny takes some SVG as input and returns a list of paths and texts\n" "which can be rendered easily, as defined in\n" @@ -21575,65 +21825,65 @@ msgid "" "project." msgstr "" -#: gnu/packages/web.scm:5346 +#: gnu/packages/web.scm:5351 msgid "" "Libnsbmp is a decoding library for BMP and ICO image file formats,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5369 +#: gnu/packages/web.scm:5374 msgid "" "Libnsgif is a decoding library for the GIF image file format, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5396 +#: gnu/packages/web.scm:5401 msgid "" "Libnslog provides a category-based logging library which supports\n" "complex logging filters, multiple log levels, and provides context through to\n" "client applications. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5420 +#: gnu/packages/web.scm:5425 msgid "" "Libnsutils provides a small number of useful utility routines. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5443 +#: gnu/packages/web.scm:5448 msgid "" "Libnspsl is a library to generate a static code representation of the\n" "Public Suffix List. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5469 +#: gnu/packages/web.scm:5474 msgid "" "@code{nsgenbind} is a tool to generate JavaScript to DOM bindings from\n" "w3c webidl files and a binding configuration file." msgstr "" -#: gnu/packages/web.scm:5592 +#: gnu/packages/web.scm:5597 msgid "" "NetSurf is a lightweight web browser that has its own layout and\n" "rendering engine entirely written from scratch. It is small and capable of\n" "handling many of the web standards in use today." msgstr "" -#: gnu/packages/web.scm:5631 +#: gnu/packages/web.scm:5636 msgid "" "Surfraw (Shell Users' Revolutionary Front Rage Against the Web)\n" "provides a unix command line interface to a variety of popular www search engines\n" "and similar services." msgstr "" -#: gnu/packages/web.scm:5664 +#: gnu/packages/web.scm:5669 msgid "" "darkhttpd is a simple static web server. It is\n" "standalone and does not need inetd or ucspi-tcp. It does not need any\n" "config files---you only have to specify the www root." msgstr "" -#: gnu/packages/web.scm:5695 +#: gnu/packages/web.scm:5700 msgid "" "GoAccess is a real-time web log analyzer and interactive viewer that\n" "runs in a terminal or through your browser. It provides fast and valuable\n" @@ -21641,7 +21891,7 @@ msgid "" "on the fly." msgstr "" -#: gnu/packages/web.scm:5749 +#: gnu/packages/web.scm:5754 msgid "" "Hitch is a performant TLS proxy based on @code{libev}. It terminates\n" "SSL/TLS connections and forwards the unencrypted traffic to a backend such\n" @@ -21649,7 +21899,7 @@ msgid "" "multicore machines." msgstr "" -#: gnu/packages/web.scm:5786 +#: gnu/packages/web.scm:5791 msgid "" "httptunnel creates a bidirectional virtual data connection\n" "tunnelled through HTTP (HyperText Transfer Protocol) requests. This can be\n" @@ -21667,7 +21917,7 @@ msgid "" "deployments." msgstr "" -#: gnu/packages/web.scm:5915 +#: gnu/packages/web.scm:5912 msgid "" "Varnish is a high-performance HTTP accelerator. It acts as a caching\n" "reverse proxy and load balancer. You install it in front of any server that\n" @@ -21675,14 +21925,14 @@ msgid "" "configuration language." msgstr "" -#: gnu/packages/web.scm:5949 +#: gnu/packages/web.scm:5946 msgid "" "This package provides a collection of modules (@dfn{vmods}) for the Varnish\n" "cache server, extending the @acronym{VCL, Varnish Configuration Language} with\n" "additional capabilities." msgstr "" -#: gnu/packages/web.scm:5976 +#: gnu/packages/web.scm:5973 msgid "" "@code{xinetd}, a more secure replacement for @code{inetd},\n" "listens for incoming requests over a network and launches the appropriate\n" @@ -21691,7 +21941,7 @@ msgid "" "used to start services with both privileged and non-privileged port numbers." msgstr "" -#: gnu/packages/web.scm:6023 +#: gnu/packages/web.scm:6020 msgid "" "Tidy is a console application which corrects and cleans up\n" "HTML and XML documents by fixing markup errors and upgrading\n" @@ -21702,14 +21952,14 @@ msgid "" "functions of Tidy." msgstr "" -#: gnu/packages/web.scm:6085 +#: gnu/packages/web.scm:6082 msgid "" "Hiawatha has been written with security in mind.\n" "Features include the ability to stop SQL injections, XSS and CSRF attacks and\n" "exploit attempts." msgstr "" -#: gnu/packages/web.scm:6107 +#: gnu/packages/web.scm:6104 msgid "" "Testing an HTTP Library can become difficult sometimes.\n" "@code{RequestBin} is fantastic for testing POST requests, but doesn't let you control the\n" @@ -21717,14 +21967,14 @@ msgid "" "JSON-encoded." msgstr "" -#: gnu/packages/web.scm:6132 +#: gnu/packages/web.scm:6129 msgid "" "@code{Pytest-httpbin} creates a @code{pytest} fixture that is dependency-injected\n" "into your tests. It automatically starts up a HTTP server in a separate thread running\n" "@code{httpbin} and provides your test with the URL in the fixture." msgstr "" -#: gnu/packages/web.scm:6199 +#: gnu/packages/web.scm:6196 msgid "" "This is a parser for HTTP messages written in C. It\n" "parses both requests and responses. The parser is designed to be used in\n" @@ -21734,40 +21984,40 @@ msgid "" "message stream (in a web server that is per connection)." msgstr "" -#: gnu/packages/web.scm:6236 +#: gnu/packages/web.scm:6233 msgid "" "@code{httpretty} is a helper for faking web requests,\n" "inspired by Ruby's @code{fakeweb}." msgstr "" -#: gnu/packages/web.scm:6254 +#: gnu/packages/web.scm:6251 msgid "" "jo is a command-line utility to create JSON objects or\n" "arrays. It creates a JSON string on stdout from words provided as\n" "command-line arguments or read from stdin." msgstr "" -#: gnu/packages/web.scm:6313 +#: gnu/packages/web.scm:6310 msgid "" "@code{ia} is a command-line tool for using\n" "@url{archive.org} from the command-line. It also implements the\n" "internetarchive python module for programmatic access to archive.org." msgstr "" -#: gnu/packages/web.scm:6364 +#: gnu/packages/web.scm:6361 msgid "" "@code{clf} is a command line tool for searching code\n" "snippets on @url{https://commandlinefu.com}." msgstr "" -#: gnu/packages/web.scm:6402 +#: gnu/packages/web.scm:6399 msgid "" "rss-bridge generates Atom feeds for social networking\n" "websites lacking feeds. Supported websites include Facebook, Twitter,\n" "Instagram and YouTube." msgstr "" -#: gnu/packages/web.scm:6440 +#: gnu/packages/web.scm:6437 msgid "" "LinkChecker is a website validator. It checks for broken\n" "links in websites. It is recursive and multithreaded providing output in\n" @@ -21776,67 +22026,67 @@ msgid "" "file links." msgstr "" -#: gnu/packages/web.scm:6488 +#: gnu/packages/web.scm:6485 msgid "" "Castor is a graphical client for plain-text protocols written in\n" "Rust with GTK. It currently supports the Gemini, Gopher and Finger\n" "protocols." msgstr "" -#: gnu/packages/web.scm:6575 +#: gnu/packages/web.scm:6572 msgid "" "This package includes Clearsilver, the CGI kit and HTML templating\n" "system." msgstr "" -#: gnu/packages/web.scm:6594 +#: gnu/packages/web.scm:6591 msgid "" "Py-ubjson is a Python module providing an Universal Binary JSON\n" "encoder/decoder based on the draft-12 specification for UBJSON." msgstr "" -#: gnu/packages/web.scm:6689 +#: gnu/packages/web.scm:6686 msgid "" "Apache Tomcat is a free implementation of the Java\n" "Servlet, JavaServer Pages, Java Expression Language and Java WebSocket\n" "technologies." msgstr "" -#: gnu/packages/web.scm:6743 +#: gnu/packages/web.scm:6740 msgid "" "This package contains helper classes for testing the Jetty\n" "Web Server." msgstr "" -#: gnu/packages/web.scm:6802 +#: gnu/packages/web.scm:6799 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides utility classes." msgstr "" -#: gnu/packages/web.scm:6880 +#: gnu/packages/web.scm:6877 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides IO-related utility classes." msgstr "" -#: gnu/packages/web.scm:6925 +#: gnu/packages/web.scm:6922 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides HTTP-related utility classes." msgstr "" -#: gnu/packages/web.scm:6959 +#: gnu/packages/web.scm:6956 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides the JMX management." msgstr "" -#: gnu/packages/web.scm:7045 +#: gnu/packages/web.scm:7042 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21844,7 +22094,7 @@ msgid "" "artifact." msgstr "" -#: gnu/packages/web.scm:7088 +#: gnu/packages/web.scm:7085 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21852,7 +22102,7 @@ msgid "" "infrastructure" msgstr "" -#: gnu/packages/web.scm:7144 +#: gnu/packages/web.scm:7141 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21860,14 +22110,14 @@ msgid "" "container." msgstr "" -#: gnu/packages/web.scm:7308 +#: gnu/packages/web.scm:7305 msgid "" "Jsoup is a Java library for working with real-world HTML. It\n" "provides a very convenient API for extracting and manipulating data, using the\n" "best of DOM, CSS, and jQuery-like methods." msgstr "" -#: gnu/packages/web.scm:7337 +#: gnu/packages/web.scm:7334 msgid "" "Signpost is the easy and intuitive solution for signing\n" "HTTP messages on the Java platform in conformance with the OAuth Core 1.0a\n" @@ -21875,7 +22125,7 @@ msgid "" "combine it with different HTTP messaging layers." msgstr "" -#: gnu/packages/web.scm:7360 +#: gnu/packages/web.scm:7357 msgid "" "Tidyp is a program that can validate your HTML, as well as\n" "modify it to be more clean and standard. tidyp does not validate HTML 5.\n" @@ -21885,14 +22135,14 @@ msgid "" "based on this library, allowing Perl programmers to easily validate HTML." msgstr "" -#: gnu/packages/web.scm:7401 +#: gnu/packages/web.scm:7398 msgid "" "@code{HTML::Tidy} is an HTML checker in a handy dandy\n" "object. It's meant as a replacement for @code{HTML::Lint}, which is written\n" "in Perl but is not nearly as capable as @code{HTML::Tidy}." msgstr "" -#: gnu/packages/web.scm:7430 +#: gnu/packages/web.scm:7427 msgid "" "Geomyidae is a server for distributed hypertext protocol Gopher. Its\n" "features include:\n" @@ -21906,14 +22156,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/web.scm:7478 +#: gnu/packages/web.scm:7475 msgid "" "Cat avatar generator is a generator of cat pictures optimised\n" "to generate random avatars, or defined avatar from a \"seed\". This is a\n" "derivation by David Revoy from the original MonsterID by Andreas Gohr." msgstr "" -#: gnu/packages/web.scm:7548 +#: gnu/packages/web.scm:7545 msgid "" "nghttp2 implements the Hypertext Transfer Protocol, version\n" "2 (@dfn{HTTP/2}).\n" @@ -21939,14 +22189,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7647 +#: gnu/packages/web.scm:7644 msgid "" "Hpcguix-web provides a web interface to the list of packages\n" "provided by Guix. The list of packages is searchable and provides\n" "instructions on how to use Guix in a shared HPC environment." msgstr "" -#: gnu/packages/web.scm:7668 +#: gnu/packages/web.scm:7665 msgid "" "HTTrack allows you to download a World Wide Web site from\n" "the Internet to a local directory, building recursively all directories,\n" @@ -21960,7 +22210,7 @@ msgid "" "HTTrack is fully configurable, and has an integrated help system." msgstr "" -#: gnu/packages/web.scm:7703 +#: gnu/packages/web.scm:7700 msgid "" "buku is a powerful bookmark manager written in Python3 and SQLite3.\n" "@command{buku} can auto-import bookmarks from your browser and present them\n" @@ -21969,7 +22219,7 @@ msgid "" "@command{bukuserver}." msgstr "" -#: gnu/packages/web.scm:7724 +#: gnu/packages/web.scm:7721 msgid "" "Anonip masks the last bits of IPv4 and IPv6 addresses in log files.\n" "That way most of the relevant information is preserved, while the IP address\n" @@ -21984,7 +22234,7 @@ msgid "" "Anonip can also be uses as a Python module in your own Python application." msgstr "" -#: gnu/packages/web.scm:7758 +#: gnu/packages/web.scm:7755 msgid "" "Poussetaches (which literally means \"push tasks\" in\n" "French) is a lightweight asynchronous task execution service that aims to\n" @@ -21996,7 +22246,7 @@ msgid "" "returned." msgstr "" -#: gnu/packages/web.scm:7783 +#: gnu/packages/web.scm:7780 msgid "" "htmlcxx is a simple non-validating CSS1 and HTML parser for\n" "C++. Although there are several other HTML parsers available, htmlcxx has some\n" @@ -22014,7 +22264,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:7827 +#: gnu/packages/web.scm:7824 msgid "" "libRocket is a C++ user interface package based on the HTML\n" "and CSS standards. libRocket uses the open standards XHTML1.0 and\n" @@ -22031,11 +22281,11 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7869 +#: gnu/packages/web.scm:7866 msgid "gmnisrv is a simple Gemini protocol server written in C." msgstr "" -#: gnu/packages/web.scm:7900 +#: gnu/packages/web.scm:7898 msgid "" "The openZIM project proposes offline storage solutions for\n" "content coming from the Web. The zimlib is the standard implementation of the\n" @@ -22067,14 +22317,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:8081 +#: gnu/packages/web.scm:8078 msgid "" "uriparser is a strictly RFC 3986 compliant URI parsing and\n" "handling library written in C89 (\"ANSI C\"). uriparser is fast and supports\n" "Unicode." msgstr "" -#: gnu/packages/web.scm:8115 +#: gnu/packages/web.scm:8112 msgid "" "Quark is an extremely small and simple HTTP GET/HEAD only\n" "web server for static content. TLS is not natively supported and should be\n" @@ -22244,53 +22494,53 @@ msgid "" "Enhancement}." msgstr "" -#: gnu/services/base.scm:276 +#: gnu/services/base.scm:279 msgid "" "Populate the @file{/etc/fstab} based on the given file\n" "system objects." msgstr "" -#: gnu/services/base.scm:314 +#: gnu/services/base.scm:317 msgid "" "Take care of syncing the root file\n" "system and of remounting it read-only when the system shuts down." msgstr "" -#: gnu/services/base.scm:481 +#: gnu/services/base.scm:484 msgid "" "Provide Shepherd services to mount and unmount the given\n" "file systems, as well as corresponding @file{/etc/fstab} entries." msgstr "" -#: gnu/services/base.scm:579 +#: gnu/services/base.scm:582 msgid "" "Seed the @file{/dev/urandom} pseudo-random number\n" "generator (RNG) with the value recorded when the system was last shut\n" "down." msgstr "" -#: gnu/services/base.scm:611 +#: gnu/services/base.scm:614 msgid "" "Run the @command{rngd} random number generation daemon to\n" "supply entropy to the kernel's pool." msgstr "" -#: gnu/services/base.scm:640 +#: gnu/services/base.scm:643 msgid "Initialize the machine's host name." msgstr "" -#: gnu/services/base.scm:670 +#: gnu/services/base.scm:673 msgid "Ensure the Linux virtual terminals run in UTF-8 mode." msgstr "" -#: gnu/services/base.scm:683 +#: gnu/services/base.scm:686 msgid "" "@emph{This service is deprecated in favor of the\n" "@code{keyboard-layout} field of @code{operating-system}.} Load the given list\n" "of console keymaps with @command{loadkeys}." msgstr "" -#: gnu/services/base.scm:743 +#: gnu/services/base.scm:746 msgid "" "Install the given fonts on the specified ttys (fonts are per\n" "virtual console on GNU/Linux). The value of this service is a list of\n" @@ -22308,66 +22558,66 @@ msgid "" "@end example\n" msgstr "" -#: gnu/services/base.scm:795 +#: gnu/services/base.scm:798 msgid "" "Provide a console log-in service as specified by its\n" "configuration value, a @code{login-configuration} object." msgstr "" -#: gnu/services/base.scm:1063 +#: gnu/services/base.scm:1066 msgid "" "Provide console login using the @command{agetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1128 +#: gnu/services/base.scm:1131 msgid "" "Provide console login using the @command{mingetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1345 +#: gnu/services/base.scm:1348 msgid "" "Runs libc's @dfn{name service cache daemon} (nscd) with the\n" "given configuration---an @code{} object. @xref{Name\n" "Service Switch}, for an example." msgstr "" -#: gnu/services/base.scm:1384 +#: gnu/services/base.scm:1387 msgid "" "Run the syslog daemon, @command{syslogd}, which is\n" "responsible for logging system messages." msgstr "" -#: gnu/services/base.scm:1448 +#: gnu/services/base.scm:1451 msgid "" "Install the specified resource usage limits by populating\n" "@file{/etc/security/limits.conf} and using the @code{pam_limits}\n" "authentication module." msgstr "" -#: gnu/services/base.scm:1794 +#: gnu/services/base.scm:1804 msgid "Run the build daemon of GNU@tie{}Guix, aka. @command{guix-daemon}." msgstr "" -#: gnu/services/base.scm:1944 +#: gnu/services/base.scm:1961 msgid "" "Add a Shepherd service running @command{guix publish}, a\n" "command that allows you to share pre-built binaries with others over HTTP." msgstr "" -#: gnu/services/base.scm:2150 +#: gnu/services/base.scm:2167 msgid "" "Run @command{udev}, which populates the @file{/dev}\n" "directory dynamically. Get extra rules from the packages listed in the\n" "@code{rules} field of its value, @code{udev-configuration} object." msgstr "" -#: gnu/services/base.scm:2267 +#: gnu/services/base.scm:2284 msgid "Turn on the virtual memory swap area." msgstr "" -#: gnu/services/base.scm:2309 +#: gnu/services/base.scm:2326 msgid "" "Run GPM, the general-purpose mouse daemon, with the given\n" "command-line options. GPM allows users to use the mouse in the console,\n" @@ -22375,33 +22625,33 @@ msgid "" "@code{ps2} protocol, which works for both USB and PS/2 mice." msgstr "" -#: gnu/services/base.scm:2382 +#: gnu/services/base.scm:2399 msgid "" "Start the @command{kmscon} virtual terminal emulator for the\n" "Linux @dfn{kernel mode setting} (KMS)." msgstr "" -#: gnu/services/base.scm:2403 +#: gnu/services/base.scm:2416 #, scheme-format msgid "address '~a' lacks a network mask" msgstr "" -#: gnu/services/base.scm:2409 +#: gnu/services/base.scm:2422 #, scheme-format msgid "Write, say, @samp{\"~a/24\"} for a 24-bit network mask." msgstr "" -#: gnu/services/base.scm:2489 +#: gnu/services/base.scm:2502 #, scheme-format msgid "network links are currently ignored on GNU/Hurd~%" msgstr "" -#: gnu/services/base.scm:2514 +#: gnu/services/base.scm:2527 #, scheme-format msgid "ignoring network route for '~a'~%" msgstr "" -#: gnu/services/base.scm:2698 +#: gnu/services/base.scm:2711 msgid "" "Turn up the specified network interfaces upon startup,\n" "with the given IP address, gateway, netmask, and so on. The value for\n" @@ -22613,8 +22863,3 @@ msgid "" "Run Gitile, a small Git forge. Expose public repositories\n" "on the web." msgstr "" - -#, fuzzy -#~| msgid "This package contains the game data of GNU Freedink." -#~ msgid "This package contains graphics and sound files for Naev." -#~ msgstr "이 꾸러미는 GNU Freedink의 게임 자료를 포함합니다." diff --git a/po/packages/nl.po b/po/packages/nl.po index 017d367f0f..20b372f2a3 100644 --- a/po/packages/nl.po +++ b/po/packages/nl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: GNU guix\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" "PO-Revision-Date: 2021-08-28 14:44+0000\n" "Last-Translator: Maxime Devos \n" "Language-Team: Dutch \n" @@ -46,20 +46,20 @@ msgstr "" msgid "This package provides a dictionary for the GNU Aspell spell checker." msgstr "Dit pakket stelt een woordenboek ter beschikking voor de spellingscontroleur GNU Aspell." -#: gnu/packages/aspell.scm:445 gnu/packages/libreoffice.scm:845 +#: gnu/packages/aspell.scm:450 gnu/packages/libreoffice.scm:845 #: gnu/packages/libreoffice.scm:918 msgid "" "This package provides a dictionary for the Hunspell spell-checking\n" "library." msgstr "Dit pakket stelt een woordenboe ter beschikking voor de spellingscontroleur Hunspell." -#: gnu/packages/aspell.scm:525 +#: gnu/packages/aspell.scm:530 msgid "" "Ispell is an interactive spell-checking tool supporting many\n" "European languages." msgstr "Ispell is een interactieve spellingscontroleur die vele Europese talen ondersteunt." -#: gnu/packages/audio.scm:197 +#: gnu/packages/audio.scm:198 msgid "" "OpenSLES is a royalty-free, cross-platform,\n" "hardware-accelerated audio API tuned for embedded systems. It provides a\n" @@ -70,7 +70,7 @@ msgid "" "promoting the market for advanced audio." msgstr "" -#: gnu/packages/audio.scm:233 +#: gnu/packages/audio.scm:234 msgid "" "WildMIDI is a simple software midi player which has a core\n" "softsynth library that can be use with other applications." @@ -78,7 +78,7 @@ msgstr "" "WildMIDI een eenvoudige MIDI-speler met een ‘softsynth’-bibliotheek\n" "die gebruikt kan worden door andere toepassingen." -#: gnu/packages/audio.scm:257 +#: gnu/packages/audio.scm:258 msgid "" "WebRTC-Audio-Processing library based on Google's\n" "implementation of WebRTC." @@ -86,7 +86,7 @@ msgstr "" "Bibliotheek voor WebRTC audioverwerking gebaseerd op Google's\n" "implementatie van WebRTC." -#: gnu/packages/audio.scm:277 +#: gnu/packages/audio.scm:278 msgid "" "VO-AACENC is the VisualOn implementation of Advanced Audio\n" "Coding (AAC) encoder." @@ -94,7 +94,7 @@ msgstr "" "VO-AACENC is VisualOn's implementatie van de audiocodering\n" "Advanced Audio Coding (AAC)." -#: gnu/packages/audio.scm:306 +#: gnu/packages/audio.scm:307 msgid "" "TinyALSA is a small library to interface with ALSA in the\n" "Linux kernel." @@ -102,7 +102,7 @@ msgstr "" "TinyALSA is een bibliotheekje voor te interageren met ALSA\n" "in de Linux-kernel." -#: gnu/packages/audio.scm:329 +#: gnu/packages/audio.scm:330 msgid "" "Game-music-emu is a collection of video game music file emulators that\n" "support the following formats and systems:\n" @@ -128,43 +128,43 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/audio.scm:393 +#: gnu/packages/audio.scm:394 msgid "" "LibOpenMPT is a cross-platform C++ and C module playback\n" "library. It is based on the player code of the Open ModPlug Tracker project." msgstr "" -#: gnu/packages/audio.scm:424 +#: gnu/packages/audio.scm:425 msgid "" "LibOFA is an audio fingerprint library, created and provided\n" "by MusicIP." msgstr "" -#: gnu/packages/audio.scm:445 +#: gnu/packages/audio.scm:446 msgid "FAAC is an MPEG-4 and MPEG-2 AAC encoder." msgstr "" -#: gnu/packages/audio.scm:474 +#: gnu/packages/audio.scm:475 msgid "" "LibTiMidity is a MIDI to WAVE converter library that uses\n" "Gravis Ultrasound-compatible patch files to generate digital audio data from\n" "General MIDI files." msgstr "" -#: gnu/packages/audio.scm:499 +#: gnu/packages/audio.scm:500 msgid "" "VO-AMR is a library of VisualOn implementation of\n" "Adaptive Multi Rate Narrowband and Wideband (AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:518 +#: gnu/packages/audio.scm:519 msgid "" "OpenCore-AMR is a library of OpenCORE Framework\n" "implementation of Adaptive Multi Rate Narrowband and Wideband\n" "(AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:551 +#: gnu/packages/audio.scm:552 msgid "" "AlsaModularSynth is a digital implementation of a classical analog\n" "modular synthesizer system. It uses virtual control voltages to control the\n" @@ -173,7 +173,7 @@ msgid "" "Filter) modules follow the convention of 1V / Octave." msgstr "" -#: gnu/packages/audio.scm:588 +#: gnu/packages/audio.scm:589 msgid "" "aubio is a tool designed for the extraction of annotations from audio\n" "signals. Its features include segmenting a sound file before each of its\n" @@ -181,21 +181,21 @@ msgid "" "streams from live audio." msgstr "" -#: gnu/packages/audio.scm:719 +#: gnu/packages/audio.scm:720 msgid "" "Ardour is a multi-channel digital audio workstation, allowing users to\n" "record, edit, mix and master audio and MIDI projects. It is targeted at audio\n" "engineers, musicians, soundtrack editors and composers." msgstr "" -#: gnu/packages/audio.scm:833 +#: gnu/packages/audio.scm:853 msgid "" "Audacity is a multi-track audio editor designed for recording, playing\n" "and editing digital audio. It features digital effects and spectrum analysis\n" "tools." msgstr "" -#: gnu/packages/audio.scm:889 +#: gnu/packages/audio.scm:909 msgid "" "This is an open-source version of SGI's audiofile library.\n" "It provides a uniform programming interface for processing of audio data to\n" @@ -206,14 +206,14 @@ msgid "" "G.711 mu-law and A-law." msgstr "" -#: gnu/packages/audio.scm:931 +#: gnu/packages/audio.scm:951 msgid "" "Autotalent is a LADSPA plugin for real-time pitch-correction. Among its\n" "controls are allowable notes, strength of correction, LFO for vibrato and\n" "formant warp." msgstr "" -#: gnu/packages/audio.scm:972 +#: gnu/packages/audio.scm:992 msgid "" "AZR-3 is a port of the free VST plugin AZR-3. It is a tonewheel organ\n" "with drawbars, distortion and rotating speakers. The organ has three\n" @@ -222,7 +222,7 @@ msgid "" "plugins are provided." msgstr "" -#: gnu/packages/audio.scm:1011 +#: gnu/packages/audio.scm:1031 msgid "" "Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments.\n" "The suite contains lots of effects (delay, modulation, signal processing,\n" @@ -231,31 +231,31 @@ msgid "" "tools (analyzer, mono/stereo tools, crossovers)." msgstr "" -#: gnu/packages/audio.scm:1053 +#: gnu/packages/audio.scm:1073 msgid "" "LV2 port of CAPS, a collection of audio plugins comprising basic virtual\n" "guitar amplification and a small range of classic effects, signal processors and\n" "generators of mostly elementary and occasionally exotic nature." msgstr "" -#: gnu/packages/audio.scm:1094 +#: gnu/packages/audio.scm:1114 msgid "" "The infamous plugins are a collection of LV2 audio plugins for live\n" "performances. The plugins include a cellular automaton synthesizer, an\n" "envelope follower, distortion effects, tape effects and more." msgstr "" -#: gnu/packages/audio.scm:1129 +#: gnu/packages/audio.scm:1149 msgid "" "Snapcast is a multi-room client-server audio player. Clients are time\n" "synchronized with the server to play synced audio." msgstr "" -#: gnu/packages/audio.scm:1159 +#: gnu/packages/audio.scm:1179 msgid "This package provides Steve Harris's LADSPA plugins." msgstr "" -#: gnu/packages/audio.scm:1199 +#: gnu/packages/audio.scm:1219 msgid "" "Swh-plugins-lv2 is a collection of audio plugins in LV2 format. Plugin\n" "classes include: dynamics (compressor, limiter), time (delay, chorus,\n" @@ -263,13 +263,13 @@ msgid "" "emulation (valve, tape), bit fiddling (decimator, pointer-cast), etc." msgstr "" -#: gnu/packages/audio.scm:1233 +#: gnu/packages/audio.scm:1253 msgid "" "@code{libdjinterop} is a C++ library that allows access to database\n" "formats used to store information about DJ record libraries." msgstr "" -#: gnu/packages/audio.scm:1295 gnu/packages/audio.scm:1326 +#: gnu/packages/audio.scm:1315 gnu/packages/audio.scm:1346 msgid "" "Tao is a software package for sound synthesis using physical\n" "models. It provides a virtual acoustic material constructed from masses and\n" @@ -279,13 +279,13 @@ msgid "" "object library." msgstr "" -#: gnu/packages/audio.scm:1361 +#: gnu/packages/audio.scm:1381 msgid "" "Csound is a user-programmable and user-extensible sound processing\n" "language and software synthesizer." msgstr "" -#: gnu/packages/audio.scm:1388 +#: gnu/packages/audio.scm:1408 msgid "" "midicomp can manipulate SMF (Standard MIDI File) files. It can both\n" " read and write SMF files in 0 or format 1 and also read and write its own\n" @@ -294,20 +294,20 @@ msgid "" " language, and recompiled back into a binary SMF file." msgstr "" -#: gnu/packages/audio.scm:1435 +#: gnu/packages/audio.scm:1455 msgid "" "clalsadrv is a C++ wrapper around the ALSA API simplifying access to\n" "ALSA PCM devices." msgstr "" -#: gnu/packages/audio.scm:1474 +#: gnu/packages/audio.scm:1494 msgid "" "The AMB plugins are a set of LADSPA ambisonics plugins, mainly to be\n" "used within Ardour. Features include: mono and stereo to B-format panning,\n" "horizontal rotator, square, hexagon and cube decoders." msgstr "" -#: gnu/packages/audio.scm:1511 +#: gnu/packages/audio.scm:1531 msgid "" "This package provides various LADSPA plugins. @code{cs_chorus} and\n" "@code{cs_phaser} provide chorus and phaser effects, respectively;\n" @@ -317,13 +317,13 @@ msgid "" "the non-linear circuit elements of their original analog counterparts." msgstr "" -#: gnu/packages/audio.scm:1551 +#: gnu/packages/audio.scm:1571 msgid "" "This package provides a stereo reverb LADSPA plugin based on the\n" "well-known greverb." msgstr "" -#: gnu/packages/audio.scm:1587 +#: gnu/packages/audio.scm:1607 msgid "" "This package provides a LADSPA plugin for a four-band parametric\n" "equalizer. Each section has an active/bypass switch, frequency, bandwidth and\n" @@ -338,13 +338,13 @@ msgid "" "for stage use." msgstr "" -#: gnu/packages/audio.scm:1632 +#: gnu/packages/audio.scm:1652 msgid "" "This package provides a LADSPA plugin to manipulate the stereo width of\n" "audio signals." msgstr "" -#: gnu/packages/audio.scm:1669 +#: gnu/packages/audio.scm:1689 msgid "" "The @code{blvco} LADSPA plugin provides three anti-aliased oscillators:\n" "\n" @@ -359,17 +359,17 @@ msgid "" "output of analog synthesizers such as the Moog Voyager." msgstr "" -#: gnu/packages/audio.scm:1713 +#: gnu/packages/audio.scm:1733 msgid "" "This package provides a LADSPA plugin for a Wah effect with envelope\n" "follower." msgstr "" -#: gnu/packages/audio.scm:1749 +#: gnu/packages/audio.scm:1769 msgid "This package provides a LADSPA plugin for a stereo reverb effect." msgstr "" -#: gnu/packages/audio.scm:1791 +#: gnu/packages/audio.scm:1811 msgid "" "FluidSynth is a real-time software synthesizer based on the SoundFont 2\n" "specifications. FluidSynth reads and handles MIDI events from the MIDI input\n" @@ -377,21 +377,21 @@ msgid "" "also play midifiles using a Soundfont." msgstr "" -#: gnu/packages/audio.scm:1814 +#: gnu/packages/audio.scm:1834 msgid "FAAD2 is an MPEG-4 and MPEG-2 AAC decoder supporting LC, Main, LTP, SBR, -PS, and DAB+." msgstr "" -#: gnu/packages/audio.scm:1855 +#: gnu/packages/audio.scm:1875 msgid "Faust is a programming language for realtime audio signal processing." msgstr "" -#: gnu/packages/audio.scm:1919 +#: gnu/packages/audio.scm:1939 msgid "" "FreePats is a project to create a free and open set of GUS compatible\n" "patches that can be used with softsynths such as Timidity and WildMidi." msgstr "" -#: gnu/packages/audio.scm:1972 +#: gnu/packages/audio.scm:1992 msgid "" "Guitarix is a virtual guitar amplifier running JACK.\n" "Guitarix takes the signal from your guitar as a mono-signal from your sound\n" @@ -402,7 +402,7 @@ msgid "" "auto-wah." msgstr "" -#: gnu/packages/audio.scm:2028 +#: gnu/packages/audio.scm:2048 msgid "" "Rakarrack is a richly featured multi-effects processor emulating a\n" "guitar effects pedalboard. Effects include compressor, expander, noise gate,\n" @@ -414,14 +414,14 @@ msgid "" "well suited to all musical instruments and vocals." msgstr "" -#: gnu/packages/audio.scm:2084 +#: gnu/packages/audio.scm:2104 msgid "" "IR is a low-latency, real-time, high performance signal convolver\n" "especially for creating reverb effects. It supports impulse responses with 1,\n" "2 or 4 channels, in any soundfile format supported by libsndfile." msgstr "" -#: gnu/packages/audio.scm:2124 +#: gnu/packages/audio.scm:2144 msgid "" "JACK is a low-latency audio server. It can connect a number of\n" "different applications to an audio device, as well as allowing them to share\n" @@ -431,20 +431,20 @@ msgid "" "synchronous execution of all clients, and low latency operation." msgstr "" -#: gnu/packages/audio.scm:2220 +#: gnu/packages/audio.scm:2240 msgid "" "Jalv is a simple but fully featured LV2 host for JACK. It runs LV2\n" "plugins and exposes their ports as JACK ports, essentially making any LV2\n" "plugin function as a JACK application." msgstr "" -#: gnu/packages/audio.scm:2266 +#: gnu/packages/audio.scm:2286 msgid "" "LADSPA is a standard that allows software audio processors and effects\n" "to be plugged into a wide range of audio synthesis and recording packages." msgstr "" -#: gnu/packages/audio.scm:2318 +#: gnu/packages/audio.scm:2338 msgid "" "LASH is a session management system for audio applications. It allows\n" "you to save and restore audio sessions consisting of multiple interconneced\n" @@ -452,7 +452,7 @@ msgid "" "connections between them." msgstr "" -#: gnu/packages/audio.scm:2341 +#: gnu/packages/audio.scm:2361 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is\n" "designed to improve headphone listening of stereo audio records. Recommended\n" @@ -460,7 +460,7 @@ msgid "" "essential distortions." msgstr "" -#: gnu/packages/audio.scm:2364 +#: gnu/packages/audio.scm:2384 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and\n" "plugins is designed to improve headphone listening of stereo audio records.\n" @@ -469,13 +469,13 @@ msgid "" "with applications that support them (e.g. PulseAudio)." msgstr "" -#: gnu/packages/audio.scm:2390 +#: gnu/packages/audio.scm:2410 msgid "" "liblo is a lightweight library that provides an easy to use\n" "implementation of the Open Sound Control (@dfn{OSC}) protocol." msgstr "" -#: gnu/packages/audio.scm:2426 +#: gnu/packages/audio.scm:2446 msgid "" "RtAudio is a set of C++ classes that provides a common API for real-time\n" "audio input/output. It was designed with the following objectives:\n" @@ -494,13 +494,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/audio.scm:2462 +#: gnu/packages/audio.scm:2482 msgid "" "This package provides bindings for PortAudio v19, the\n" "cross-platform audio input/output stream library." msgstr "" -#: gnu/packages/audio.scm:2489 +#: gnu/packages/audio.scm:2509 msgid "" "Pyliblo is a Python wrapper for the liblo Open Sound Control (OSC)\n" "library. It supports almost the complete functionality of liblo, allowing you\n" @@ -508,19 +508,19 @@ msgid "" "included are the command line utilities @code{send_osc} and @code{dump_osc}." msgstr "" -#: gnu/packages/audio.scm:2526 +#: gnu/packages/audio.scm:2546 msgid "" "This package provides python bindings for libsndfile based on\n" "CFFI and NumPy." msgstr "" -#: gnu/packages/audio.scm:2544 +#: gnu/packages/audio.scm:2564 msgid "" "This package provides a python API to read and write MIDI\n" "files." msgstr "" -#: gnu/packages/audio.scm:2581 +#: gnu/packages/audio.scm:2601 msgid "" "@command{audio-to-midi} converts audio files to multichannel\n" "MIDI files. It accomplishes this by performing FFTs on all channels of the\n" @@ -530,14 +530,14 @@ msgid "" "frequencies. This data is then formatted to MIDI and written to disk." msgstr "" -#: gnu/packages/audio.scm:2624 +#: gnu/packages/audio.scm:2644 msgid "" "Lilv is a C library to make the use of LV2 plugins as simple as possible\n" "for applications. Lilv is the successor to SLV2, rewritten to be\n" "significantly faster and have minimal dependencies." msgstr "" -#: gnu/packages/audio.scm:2652 +#: gnu/packages/audio.scm:2672 msgid "" "LV2 is an open specification for audio plugins and host applications.\n" "At its core, LV2 is a simple stable interface, accompanied by extensions which\n" @@ -545,22 +545,22 @@ msgid "" "software." msgstr "" -#: gnu/packages/audio.scm:2688 +#: gnu/packages/audio.scm:2708 msgid "An LV2 port of the mda Piano VSTi." msgstr "" -#: gnu/packages/audio.scm:2702 +#: gnu/packages/audio.scm:2722 msgid "An LV2 port of the mda EPiano VSTi." msgstr "" -#: gnu/packages/audio.scm:2732 +#: gnu/packages/audio.scm:2752 msgid "" "The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and\n" "extensions into easy to use C++ classes. It is the successor of\n" "lv2-c++-tools." msgstr "" -#: gnu/packages/audio.scm:2774 +#: gnu/packages/audio.scm:2794 msgid "" "OpenAL provides capabilities for playing audio in a virtual 3D\n" "environment. Distance attenuation, doppler shift, and directional sound\n" @@ -570,36 +570,36 @@ msgid "" "buffers, and audio capture." msgstr "" -#: gnu/packages/audio.scm:2805 +#: gnu/packages/audio.scm:2825 msgid "freealut is the OpenAL Utility Toolkit." msgstr "" -#: gnu/packages/audio.scm:2837 +#: gnu/packages/audio.scm:2857 msgid "" "Patchage is a modular patch bay for audio and MIDI systems based on JACK\n" "and ALSA." msgstr "" -#: gnu/packages/audio.scm:2862 +#: gnu/packages/audio.scm:2882 msgid "" "The Portable C Audio Library (pcaudiolib) provides a C@tie{}API to\n" "different audio devices such as ALSA or PulseAudio." msgstr "" -#: gnu/packages/audio.scm:2889 +#: gnu/packages/audio.scm:2909 msgid "" "Control a Jack server. Allows you to plug various sources\n" "into various outputs and to start, stop and configure jackd" msgstr "" -#: gnu/packages/audio.scm:2921 +#: gnu/packages/audio.scm:2941 msgid "" "QJackRcd is a simple graphical stereo recorder for JACK\n" "supporting silence processing for automatic pause, file splitting, and\n" "background file post-processing." msgstr "" -#: gnu/packages/audio.scm:3029 +#: gnu/packages/audio.scm:3049 msgid "" "SuperCollider is a synthesis engine (@code{scsynth} or\n" "@code{supernova}) and programming language (@code{sclang}). It can be used\n" @@ -611,17 +611,17 @@ msgid "" "using Guix System." msgstr "" -#: gnu/packages/audio.scm:3057 +#: gnu/packages/audio.scm:3077 msgid "This package provides libshout plus IDJC extensions." msgstr "" -#: gnu/packages/audio.scm:3083 +#: gnu/packages/audio.scm:3103 msgid "" "Raul (Real-time Audio Utility Library) is a C++ utility library primarily\n" "aimed at audio/musical applications." msgstr "" -#: gnu/packages/audio.scm:3119 +#: gnu/packages/audio.scm:3139 msgid "" "This package contains the @command{resample} and\n" "@command{windowfilter} command line utilities. The @command{resample} command\n" @@ -630,26 +630,26 @@ msgid "" "filters using the so-called @emph{window method}." msgstr "" -#: gnu/packages/audio.scm:3160 +#: gnu/packages/audio.scm:3180 msgid "" "Rubber Band is a library and utility program that permits changing the\n" "tempo and pitch of an audio recording independently of one another." msgstr "" -#: gnu/packages/audio.scm:3184 +#: gnu/packages/audio.scm:3204 msgid "" "RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut, and API specific\n" "classes) that provide a common cross-platform API for realtime MIDI\n" "input/output." msgstr "" -#: gnu/packages/audio.scm:3210 +#: gnu/packages/audio.scm:3230 msgid "" "Sratom is a library for serialising LV2 atoms to/from RDF, particularly\n" "the Turtle syntax." msgstr "" -#: gnu/packages/audio.scm:3238 +#: gnu/packages/audio.scm:3258 msgid "" "Suil is a lightweight C library for loading and wrapping LV2 plugin UIs.\n" "\n" @@ -661,13 +661,13 @@ msgid "" "Suil currently supports every combination of Gtk, Qt, and X11." msgstr "" -#: gnu/packages/audio.scm:3270 +#: gnu/packages/audio.scm:3290 msgid "" "@code{libebur128} is a C library that implements the EBU R 128 standard\n" "for loudness normalisation." msgstr "" -#: gnu/packages/audio.scm:3324 +#: gnu/packages/audio.scm:3344 msgid "" "TiMidity++ is a software synthesizer. It can play MIDI files by\n" "converting them into PCM waveform data; give it a MIDI data along with digital\n" @@ -676,33 +676,33 @@ msgid "" "disks as various audio file formats." msgstr "" -#: gnu/packages/audio.scm:3364 +#: gnu/packages/audio.scm:3384 msgid "" "Vamp is an audio processing plugin system for plugins that extract\n" "descriptive information from audio data — typically referred to as audio\n" "analysis plugins or audio feature extraction plugins." msgstr "" -#: gnu/packages/audio.scm:3408 +#: gnu/packages/audio.scm:3428 msgid "" "SBSMS (Subband Sinusoidal Modeling Synthesis) is software for time\n" "stretching and pitch scaling of audio. This package contains the library." msgstr "" -#: gnu/packages/audio.scm:3435 +#: gnu/packages/audio.scm:3455 msgid "" "@code{libkeyfinder} is a small C++11 library for estimating the musical\n" "key of digital audio." msgstr "" -#: gnu/packages/audio.scm:3465 +#: gnu/packages/audio.scm:3485 msgid "" "WavPack is an audio compression format with lossless, lossy and hybrid\n" "compression modes. This package contains command-line programs and library to\n" "encode and decode wavpack files." msgstr "" -#: gnu/packages/audio.scm:3486 +#: gnu/packages/audio.scm:3506 msgid "" "Libmodplug renders mod music files as raw audio data, for playing or\n" "conversion. mod, .s3m, .it, .xm, and a number of lesser-known formats are\n" @@ -710,21 +710,21 @@ msgid "" "surround and reverb." msgstr "" -#: gnu/packages/audio.scm:3507 +#: gnu/packages/audio.scm:3527 msgid "" "Libxmp is a library that renders module files to PCM data. It supports\n" "over 90 mainstream and obscure module formats including Protracker (MOD),\n" "Scream Tracker 3 (S3M), Fast Tracker II (XM), and Impulse Tracker (IT)." msgstr "" -#: gnu/packages/audio.scm:3531 +#: gnu/packages/audio.scm:3551 msgid "" "Xmp is a portable module player that plays over 90 mainstream and\n" "obscure module formats, including Protracker MOD, Fasttracker II XM, Scream\n" "Tracker 3 S3M and Impulse Tracker IT files." msgstr "" -#: gnu/packages/audio.scm:3556 +#: gnu/packages/audio.scm:3576 msgid "" "SoundTouch is an audio processing library for changing the tempo, pitch\n" "and playback rates of audio streams or audio files. It is intended for\n" @@ -732,7 +732,7 @@ msgid "" "control functionality, or just for playing around with the sound effects." msgstr "" -#: gnu/packages/audio.scm:3595 +#: gnu/packages/audio.scm:3615 msgid "" "SoX (Sound eXchange) is a command line utility that can convert\n" "various formats of computer audio files to other formats. It can also\n" @@ -740,60 +740,60 @@ msgid "" "can play and record audio files." msgstr "" -#: gnu/packages/audio.scm:3620 +#: gnu/packages/audio.scm:3640 msgid "" "The SoX Resampler library (libsoxr) performs one-dimensional sample-rate\n" "conversion. It may be used, for example, to resample PCM-encoded audio." msgstr "" -#: gnu/packages/audio.scm:3643 +#: gnu/packages/audio.scm:3663 msgid "" "TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder based on\n" "tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code and\n" "portions of LAME." msgstr "" -#: gnu/packages/audio.scm:3699 +#: gnu/packages/audio.scm:3719 msgid "" "PortAudio is a portable C/C++ audio I/O library providing a simple API\n" "to record and/or play sound using a callback function or a blocking read/write\n" "interface." msgstr "" -#: gnu/packages/audio.scm:3728 +#: gnu/packages/audio.scm:3748 msgid "" "Qsynth is a GUI front-end application for the FluidSynth SoundFont\n" "synthesizer written in C++." msgstr "" -#: gnu/packages/audio.scm:3767 +#: gnu/packages/audio.scm:3787 msgid "" "RSound allows you to send audio from an application and transfer it\n" "directly to a different computer on your LAN network. It is an audio daemon\n" "with a much different focus than most other audio daemons." msgstr "" -#: gnu/packages/audio.scm:3797 +#: gnu/packages/audio.scm:3817 msgid "" "XJackFreak is an audio analysis and equalizing tool for the Jack Audio\n" "Connection Kit. It can display the FFT of any input, modify it and output the\n" "result." msgstr "" -#: gnu/packages/audio.scm:3849 +#: gnu/packages/audio.scm:3869 msgid "" "Zita convolver is a C++ library providing a real-time convolution\n" "engine." msgstr "" -#: gnu/packages/audio.scm:3901 +#: gnu/packages/audio.scm:3921 msgid "" "Libzita-resampler is a C++ library for resampling audio signals. It is\n" "designed to be used within a real-time processing context, to be fast, and to\n" "provide high-quality sample rate conversion." msgstr "" -#: gnu/packages/audio.scm:3947 +#: gnu/packages/audio.scm:3967 msgid "" "Zita-alsa-pcmi is a C++ wrapper around the ALSA API. It provides easy\n" "access to ALSA PCM devices, taking care of the many functions required to\n" @@ -801,7 +801,7 @@ msgid "" "point audio data." msgstr "" -#: gnu/packages/audio.scm:3971 +#: gnu/packages/audio.scm:3991 msgid "" "Cuetools is a set of programs that are useful for manipulating\n" "and using CUE sheet (cue) files and Table of Contents (toc) files. CUE and TOC\n" @@ -809,14 +809,14 @@ msgid "" "machine-readable ASCII format." msgstr "" -#: gnu/packages/audio.scm:4000 +#: gnu/packages/audio.scm:4020 msgid "" "mp3guessenc is a command line utility that tries to detect the\n" "encoder used for an MPEG Layer III (MP3) file, as well as scan any MPEG audio\n" "file (any layer) and print a lot of useful information." msgstr "" -#: gnu/packages/audio.scm:4021 +#: gnu/packages/audio.scm:4041 msgid "" "shntool is a multi-purpose WAVE data processing and reporting\n" "utility. File formats are abstracted from its core, so it can process any file\n" @@ -825,46 +825,46 @@ msgid "" "use them split WAVE data into multiple files." msgstr "" -#: gnu/packages/audio.scm:4061 +#: gnu/packages/audio.scm:4081 msgid "" "Dcadec is a DTS Coherent Acoustics surround sound decoder\n" "with support for HD extensions." msgstr "" -#: gnu/packages/audio.scm:4098 +#: gnu/packages/audio.scm:4118 msgid "" "BS1770GAIN is a loudness scanner compliant with ITU-R BS.1770 and its\n" "flavors EBU R128, ATSC A/85, and ReplayGain 2.0. It helps normalizing the\n" "loudness of audio and video files to the same level." msgstr "" -#: gnu/packages/audio.scm:4130 +#: gnu/packages/audio.scm:4150 msgid "" "An easy to use audio filtering library made from webrtc\n" "code, used in @code{libtoxcore}." msgstr "" -#: gnu/packages/audio.scm:4183 +#: gnu/packages/audio.scm:4203 msgid "" "This C library provides an encoder and a decoder for the GSM\n" "06.10 RPE-LTP lossy speech compression algorithm." msgstr "" -#: gnu/packages/audio.scm:4206 +#: gnu/packages/audio.scm:4226 msgid "" "This package contains wrappers for accessing the ALSA API from Python.\n" "It is currently fairly complete for PCM devices, and has some support for\n" "mixers." msgstr "" -#: gnu/packages/audio.scm:4230 +#: gnu/packages/audio.scm:4250 msgid "" "This package provides an encoder for the LDAC\n" "high-resolution Bluetooth audio streaming codec for streaming at up to 990\n" "kbps at 24 bit/96 kHz." msgstr "" -#: gnu/packages/audio.scm:4274 +#: gnu/packages/audio.scm:4294 msgid "" "This project is a rebirth of a direct integration between\n" "Bluez and ALSA. Since Bluez >= 5, the built-in integration has been removed\n" @@ -877,14 +877,14 @@ msgid "" "on the ALSA software PCM plugin." msgstr "" -#: gnu/packages/audio.scm:4340 +#: gnu/packages/audio.scm:4360 msgid "" "Snd is a sound editor modelled loosely after Emacs. It can be\n" "customized and extended using either the s7 Scheme implementation (included in\n" "the Snd sources), Ruby, or Forth." msgstr "" -#: gnu/packages/audio.scm:4369 +#: gnu/packages/audio.scm:4389 msgid "" "Noise Repellent is an LV2 plugin to reduce noise. It has\n" "the following features:\n" @@ -904,31 +904,31 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/audio.scm:4436 +#: gnu/packages/audio.scm:4456 msgid "" "RNNoise is a library that uses deep learning to apply\n" "noise suppression to audio sources with voice presence. This package provides\n" "an LV2 audio plugin." msgstr "" -#: gnu/packages/audio.scm:4480 +#: gnu/packages/audio.scm:4500 msgid "" "@code{cli-visualizer} displays fast-Fourier\n" "transforms (FFTs) of the sound being played, as well as other graphical\n" "representations." msgstr "" -#: gnu/packages/audio.scm:4530 +#: gnu/packages/audio.scm:4550 msgid "" "C.A.V.A. is a bar audio spectrum visualizer for the terminal\n" "using ALSA, MPD, PulseAudio, or a FIFO buffer as its input." msgstr "" -#: gnu/packages/audio.scm:4564 +#: gnu/packages/audio.scm:4584 msgid "Fluid-3 is Frank Wen's pro-quality GM soundfont." msgstr "" -#: gnu/packages/audio.scm:4586 +#: gnu/packages/audio.scm:4606 msgid "" "FDK is a library for encoding and decoding Advanced Audio\n" "Coding (AAC) format audio, developed by Fraunhofer IIS, and included as part of\n" @@ -939,20 +939,20 @@ msgid "" " surround)." msgstr "" -#: gnu/packages/audio.scm:4626 +#: gnu/packages/audio.scm:4646 msgid "" "OpenShot Audio Library (libopenshot-audio) allows\n" "high-quality editing and playback of audio, and is based on the JUCE\n" "library." msgstr "" -#: gnu/packages/audio.scm:4652 +#: gnu/packages/audio.scm:4672 msgid "" "FAudio is an XAudio reimplementation that focuses solely on\n" "developing fully accurate DirectX Audio runtime libraries." msgstr "" -#: gnu/packages/audio.scm:4679 +#: gnu/packages/audio.scm:4699 msgid "" "Gnaural is a programmable auditory binaural beat synthesizer\n" "intended to be used for brainwave entrainment. Gnaural supports creation of\n" @@ -961,20 +961,20 @@ msgid "" "other Gnaural instances, allowing synchronous sessions between many users." msgstr "" -#: gnu/packages/audio.scm:4714 +#: gnu/packages/audio.scm:4734 msgid "" "DarkIce is a live audio streamer. It takes audio input from\n" "a sound card, encodes it into Ogg Vorbis and/or mp3, and sends the audio\n" "stream to one or more IceCast and/or ShoutCast servers." msgstr "" -#: gnu/packages/audio.scm:4738 +#: gnu/packages/audio.scm:4758 msgid "" "Libltc is a POSIX-C Library for handling\n" "@dfn{Linear/Longitudinal Time Code} (LTC) data." msgstr "" -#: gnu/packages/audio.scm:4772 +#: gnu/packages/audio.scm:4792 msgid "" "TTA performs lossless compression on multichannel 8,16 and 24 bits\n" "data of the Wav audio files. Being lossless means that no data-\n" @@ -985,14 +985,14 @@ msgid "" "supports both of ID3v1/v2 and APEv2 tags." msgstr "" -#: gnu/packages/audio.scm:4805 +#: gnu/packages/audio.scm:4825 msgid "" "@code{libsoundio} is a C library providing audio input and\n" "output. The API is suitable for real-time software such as digital audio\n" "workstations as well as consumer software such as music players." msgstr "" -#: gnu/packages/audio.scm:4831 +#: gnu/packages/audio.scm:4851 msgid "" "Redkite is a small GUI toolkit developed in C++17 and\n" "inspired from other well known GUI toolkits such as Qt and GTK. It is\n" @@ -1001,7 +1001,7 @@ msgid "" "as is the case with audio plugins." msgstr "" -#: gnu/packages/audio.scm:4903 +#: gnu/packages/audio.scm:4923 msgid "" "Carla is a modular audio plugin host, with features like\n" "transport control, automation of parameters via MIDI CC and remote control\n" @@ -1010,7 +1010,7 @@ msgid "" "default and preferred audio driver but also supports native drivers like ALSA." msgstr "" -#: gnu/packages/audio.scm:4939 +#: gnu/packages/audio.scm:4959 msgid "" "Ecasound is a software package designed for multitrack audio\n" "processing. It can be used for simple tasks like audio playback, recording and\n" @@ -1022,28 +1022,28 @@ msgid "" "in the package." msgstr "" -#: gnu/packages/audio.scm:4977 +#: gnu/packages/audio.scm:4997 msgid "" "libaudec is a wrapper library over ffmpeg, sndfile and\n" "libsamplerate for reading and resampling audio files, based on Robin Gareus'\n" "@code{audio_decoder} code." msgstr "" -#: gnu/packages/audio.scm:5007 +#: gnu/packages/audio.scm:5027 msgid "" "lv2lint is an LV2 lint-like tool that checks whether a\n" "given plugin and its UI(s) match up with the provided metadata and adhere\n" "to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5041 +#: gnu/packages/audio.scm:5061 msgid "" "lv2toweb allows the user to create an xhtml page with information\n" "about the given LV2 plugin, provided that the plugin and its UI(s) match up\n" "with the provided metadata and adhere to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5069 +#: gnu/packages/audio.scm:5089 msgid "" "ZToolkit (Ztk) is a cross-platform GUI toolkit heavily\n" "inspired by GTK. It handles events and low level drawing on behalf of\n" @@ -1053,7 +1053,7 @@ msgid "" "minimum." msgstr "" -#: gnu/packages/audio.scm:5102 +#: gnu/packages/audio.scm:5122 msgid "" "libInstPatch is a library for processing digital sample based MIDI\n" "instrument \"patch\" files. The types of files libInstPatch supports are used\n" @@ -1062,28 +1062,28 @@ msgid "" "edited, converted, compressed and saved." msgstr "" -#: gnu/packages/audio.scm:5149 +#: gnu/packages/audio.scm:5169 msgid "" "The LSP DSP library provides a set of functions that perform\n" "SIMD-optimized computing on several hardware architectures. All functions\n" "currently operate on IEEE-754 single-precision floating-point numbers." msgstr "" -#: gnu/packages/audio.scm:5180 +#: gnu/packages/audio.scm:5200 msgid "" "Codec 2 is a speech codec designed for communications quality speech\n" "between 700 and 3200 bit/s. The main application is low bandwidth HF/VHF\n" "digital radio." msgstr "" -#: gnu/packages/audio.scm:5206 +#: gnu/packages/audio.scm:5226 msgid "" "The mbelib library provides support for the 7200x4400 bit/s codec used\n" "in P25 Phase 1, the 7100x4400 bit/s codec used in ProVoice and the @emph{Half\n" "Rate} 3600x2250 bit/s vocoder used in various radio systems." msgstr "" -#: gnu/packages/audio.scm:5299 +#: gnu/packages/audio.scm:5319 msgid "" "Ableton Link is a C++ library that synchronizes musical beat, tempo, and phase\n" "across multiple applications running on one or more devices. Applications on devices\n" @@ -1092,20 +1092,20 @@ msgid "" "while still staying in time." msgstr "" -#: gnu/packages/audio.scm:5360 +#: gnu/packages/audio.scm:5380 msgid "" "Butt is a tool to stream audio to a ShoutCast or\n" "Icecast server." msgstr "" -#: gnu/packages/audio.scm:5406 +#: gnu/packages/audio.scm:5426 msgid "" "siggen is a set of tools for imitating a laboratory signal\n" "generator, generating audio signals out of Linux's /dev/dsp audio\n" "device. There is support for mono and/or stereo and 8 or 16 bit samples." msgstr "" -#: gnu/packages/audio.scm:5453 +#: gnu/packages/audio.scm:5473 msgid "" "@code{python-pysox} is a wrapper around the @command{sox}\n" "command line tool. The API offers @code{Transformer} and @code{Combiner}\n" @@ -1115,7 +1115,7 @@ msgid "" "and much more." msgstr "" -#: gnu/packages/audio.scm:5492 +#: gnu/packages/audio.scm:5512 msgid "" "@code{python-resampy} implements the band-limited sinc interpolation\n" "method for sampling rate conversion as described by Julius O. Smith at the\n" @@ -1123,34 +1123,34 @@ msgid "" "Home Page}." msgstr "" -#: gnu/packages/audio.scm:5528 +#: gnu/packages/audio.scm:5548 msgid "" "@code{librosa} is a python package for music and audio analysis. It\n" "provides the building blocks necessary to create music information retrieval\n" "systems." msgstr "" -#: gnu/packages/audio.scm:5561 +#: gnu/packages/audio.scm:5581 msgid "" "MDA-LV2 is an LV2 port of the MDA plugins. It includes effects and a few\n" "instrument plugins." msgstr "" -#: gnu/packages/audio.scm:5593 +#: gnu/packages/audio.scm:5613 msgid "" "The Odio SACD shared library is a decoding engine which takes a Super\n" "Audio CD source and extracts a 24-bit high resolution WAV file. It handles\n" "both DST and DSD streams." msgstr "" -#: gnu/packages/audio.scm:5618 +#: gnu/packages/audio.scm:5638 msgid "" "Odio SACD is a command-line application which takes a Super Audio CD\n" "source and extracts a 24-bit high resolution WAV file. It handles both DST\n" "and DSD streams." msgstr "" -#: gnu/packages/backup.scm:155 +#: gnu/packages/backup.scm:165 msgid "" "Duplicity backs up directories by producing encrypted tar-format volumes\n" "and uploading them to a remote or local file server. Because duplicity uses\n" @@ -1160,7 +1160,7 @@ msgid "" "spying and/or modification by the server." msgstr "" -#: gnu/packages/backup.scm:180 +#: gnu/packages/backup.scm:190 msgid "" "Par2cmdline uses Reed-Solomon error-correcting codes to\n" "generate and verify PAR2 recovery files. These files can be distributed\n" @@ -1172,7 +1172,7 @@ msgid "" "can even repair them." msgstr "" -#: gnu/packages/backup.scm:219 +#: gnu/packages/backup.scm:229 msgid "" "Hdup2 is a backup utility, its aim is to make backup really simple. The\n" "backup scheduling is done by means of a cron job. It supports an\n" @@ -1180,7 +1180,7 @@ msgid "" "backups (called chunks) to allow easy burning to CD/DVD." msgstr "" -#: gnu/packages/backup.scm:316 +#: gnu/packages/backup.scm:326 msgid "" "Libarchive provides a flexible interface for reading and writing\n" "archives in various formats such as tar and cpio. Libarchive also supports\n" @@ -1191,7 +1191,7 @@ msgid "" "random access nor for in-place modification." msgstr "" -#: gnu/packages/backup.scm:380 +#: gnu/packages/backup.scm:390 msgid "" "Rdup is a utility inspired by rsync and the plan9 way of doing backups.\n" "Rdup itself does not backup anything, it only print a list of absolute\n" @@ -1199,7 +1199,7 @@ msgid "" "list and implement the backup strategy." msgstr "" -#: gnu/packages/backup.scm:419 +#: gnu/packages/backup.scm:429 msgid "" "SnapRAID backs up files stored across multiple storage devices, such as\n" "disk arrays, in an efficient way reminiscent of its namesake @acronym{RAID,\n" @@ -1225,7 +1225,7 @@ msgid "" "remain fully idle, saving power and producing less noise." msgstr "" -#: gnu/packages/backup.scm:469 +#: gnu/packages/backup.scm:479 msgid "" "Btar is a tar-compatible archiver which allows arbitrary compression and\n" "ciphering, redundancy, differential backup, indexed extraction, multicore\n" @@ -1233,7 +1233,7 @@ msgid "" "errors." msgstr "" -#: gnu/packages/backup.scm:496 +#: gnu/packages/backup.scm:506 msgid "" "Rdiff-backup backs up one directory to another, possibly over a network.\n" "The target directory ends up a copy of the source directory, but extra reverse\n" @@ -1248,7 +1248,7 @@ msgid "" "rdiff-backup is easy to use and settings have sensible defaults." msgstr "" -#: gnu/packages/backup.scm:532 +#: gnu/packages/backup.scm:542 msgid "" "rsnapshot is a file system snapshot utility based on rsync.\n" "rsnapshot makes it easy to make periodic snapshots of local machines, and\n" @@ -1256,7 +1256,7 @@ msgid "" "rsnapshot uses hard links to deduplicate identical files." msgstr "" -#: gnu/packages/backup.scm:610 +#: gnu/packages/backup.scm:620 msgid "" "Libchop is a set of utilities and library for data backup and\n" "distributed storage. Its main application is @command{chop-backup}, an\n" @@ -1267,17 +1267,17 @@ msgid "" "detection, and lossless compression." msgstr "" -#: gnu/packages/backup.scm:740 +#: gnu/packages/backup.scm:750 msgid "" "Borg is a deduplicating backup program. Optionally, it\n" "supports compression and authenticated encryption. The main goal of Borg is to\n" "provide an efficient and secure way to backup data. The data deduplication\n" "technique used makes Borg suitable for daily backups since only changes are\n" -"stored. The authenticated encryption technique makes it suitable for backups\n" -"to not fully trusted targets. Borg is a fork of Attic." +"stored. The authenticated encryption technique makes it suitable for\n" +"storing backups on untrusted computers." msgstr "" -#: gnu/packages/backup.scm:771 +#: gnu/packages/backup.scm:781 msgid "" "wimlib is a C library and set of command-line utilities for\n" "creating, modifying, extracting, and mounting archives in the Windows Imaging\n" @@ -1285,14 +1285,14 @@ msgid "" "NTFS volumes using @code{ntfs-3g}, preserving NTFS-specific attributes." msgstr "" -#: gnu/packages/backup.scm:879 +#: gnu/packages/backup.scm:889 msgid "" "With dirvish you can maintain a set of complete images of your\n" "file systems with unattended creation and expiration. A dirvish backup vault\n" "is like a time machine for your data." msgstr "" -#: gnu/packages/backup.scm:974 +#: gnu/packages/backup.scm:984 msgid "" "Restic is a program that does backups right and was designed\n" "with the following principles in mind:\n" @@ -1324,7 +1324,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/backup.scm:1025 +#: gnu/packages/backup.scm:1035 msgid "" "ZBackup is a globally-deduplicating backup tool, based on the\n" "ideas found in Rsync. Feed a large @file{.tar} into it, and it will\n" @@ -1337,7 +1337,7 @@ msgid "" "is format-agnostic, so you can feed virtually any files to it." msgstr "" -#: gnu/packages/backup.scm:1061 +#: gnu/packages/backup.scm:1071 msgid "" "Dump examines files in a file system, determines which ones\n" "need to be backed up, and copies those files to a specified disk, tape or\n" @@ -1348,14 +1348,44 @@ msgid "" "interactive mode." msgstr "" -#: gnu/packages/backup.scm:1105 +#: gnu/packages/backup.scm:1131 +msgid "" +"Btrbk is a backup tool for Btrfs subvolumes, taking\n" +"advantage of Btrfs specific capabilities to create atomic snapshots and\n" +"transfer them incrementally to your backup locations. The source and target\n" +"locations are specified in a config file, which allows easily configuring\n" +"simple scenarios like e.g. a @i{laptop with locally attached backup disks}, as\n" +"well as more complex ones, e.g. a @i{server receiving backups from several\n" +"hosts via SSH, with different retention policy}. It has features such as:\n" +"@itemize\n" +"@item atomic snapshots\n" +"@item incremental backups\n" +"@item flexible retention policy\n" +"@item backups to multiple destinations\n" +"@item transfer via SSH\n" +"@item resume backups (for removable and mobile devices)\n" +"@item archive to offline storage\n" +"@item encrypted backups to non-btrfs storage\n" +"@item wildcard subvolumes (useful for Docker and LXC containers)\n" +"@item transaction log\n" +"@item comprehensive list and statistics output\n" +"@item resolve and trace Btrfs parent-child and received-from relationships\n" +"@item list file changes between backups\n" +"@item calculate accurate disk space usage based on block regions.\n" +"@end itemize\n" +"Btrbk is designed to run as a cron job for triggering periodic snapshots and\n" +"backups, as well as from the command line (e.g. for instantly creating\n" +"additional snapshots)." +msgstr "" + +#: gnu/packages/backup.scm:1194 msgid "" "Burp is a network backup and restore program. It attempts\n" "to reduce network traffic and the amount of space that is used by each\n" "backup." msgstr "" -#: gnu/packages/backup.scm:1136 +#: gnu/packages/backup.scm:1225 msgid "" "Disarchive can disassemble software archives into data\n" "and metadata. The goal is to create a small amount of metadata that\n" @@ -1365,7 +1395,7 @@ msgid "" "compression parameters used by Gzip." msgstr "" -#: gnu/packages/backup.scm:1181 +#: gnu/packages/backup.scm:1270 msgid "" "borgmatic is simple, configuration-driven backup software for servers\n" "and workstations. Protect your files with client-side encryption. Backup\n" @@ -1373,6 +1403,14 @@ msgid "" "borgmatic is powered by borg." msgstr "" +#: gnu/packages/backup.scm:1330 +msgid "" +"Vorta is a graphical backup client based on the Borg backup\n" +"tool. It supports the use of remote backup repositories. It can perform\n" +"scheduled backups, and has a graphical tool for browsing and extracting the Borg\n" +"archives." +msgstr "" + #: gnu/packages/base.scm:98 msgid "" "GNU Hello prints the message \"Hello, world!\" and then exits. It\n" @@ -1463,7 +1501,7 @@ msgid "" "change. GNU make offers many powerful extensions over the standard utility." msgstr "" -#: gnu/packages/base.scm:550 +#: gnu/packages/base.scm:558 msgid "" "GNU Binutils is a collection of tools for working with binary files.\n" "Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler.\n" @@ -1473,14 +1511,14 @@ msgid "" "included." msgstr "" -#: gnu/packages/base.scm:694 +#: gnu/packages/base.scm:685 msgid "" "The linker wrapper (or @code{ld-wrapper}) wraps the linker to add any\n" "missing @code{-rpath} flags, and to detect any misuse of libraries outside of\n" "the store." msgstr "" -#: gnu/packages/base.scm:930 +#: gnu/packages/base.scm:921 msgid "" "Any Unix-like operating system needs a C library: the library which\n" "defines the \"system calls\" and other basic facilities such as open, malloc,\n" @@ -1490,21 +1528,21 @@ msgid "" "with the Linux kernel." msgstr "" -#: gnu/packages/base.scm:1057 +#: gnu/packages/base.scm:1048 msgid "" "This package provides all the locales supported by the GNU C Library,\n" "more than 400 in total. To use them set the @code{LOCPATH} environment variable\n" "to the @code{share/locale} sub-directory of this package." msgstr "" -#: gnu/packages/base.scm:1206 +#: gnu/packages/base.scm:1198 msgid "" "The which program finds the location of executables in PATH, with a\n" "variety of options. It is an alternative to the shell \"type\" built-in\n" "command." msgstr "" -#: gnu/packages/base.scm:1329 +#: gnu/packages/base.scm:1321 msgid "" "The Time Zone Database (often called tz or zoneinfo)\n" "contains code and data that represent the history of local time for many\n" @@ -1513,14 +1551,14 @@ msgid "" "and daylight-saving rules." msgstr "" -#: gnu/packages/base.scm:1367 +#: gnu/packages/base.scm:1359 msgid "" "libiconv provides an implementation of the iconv function for systems\n" "that lack it. iconv is used to convert between character encodings in a\n" "program. It supports a wide variety of different encodings." msgstr "" -#: gnu/packages/bittorrent.scm:131 +#: gnu/packages/bittorrent.scm:135 msgid "" "Transmission is a BitTorrent client that comes with graphical,\n" "textual, and Web user interfaces. Transmission also has a daemon for\n" @@ -1528,54 +1566,54 @@ msgid "" "DHT, µTP, PEX and Magnet Links." msgstr "" -#: gnu/packages/bittorrent.scm:165 +#: gnu/packages/bittorrent.scm:169 msgid "" "transmission-remote-gtk is a GTK client for remote management\n" "of the Transmission BitTorrent client, using its HTTP RPC protocol." msgstr "" -#: gnu/packages/bittorrent.scm:187 +#: gnu/packages/bittorrent.scm:191 msgid "" "LibTorrent is a BitTorrent library used by and developed in parallel\n" "with the BitTorrent client rtorrent. It is written in C++ with emphasis on\n" "speed and efficiency." msgstr "" -#: gnu/packages/bittorrent.scm:215 +#: gnu/packages/bittorrent.scm:219 msgid "" "rTorrent is a BitTorrent client with an ncurses interface. It supports\n" "full encryption, DHT, PEX, and Magnet Links. It can also be controlled via\n" "XML-RPC over SCGI." msgstr "" -#: gnu/packages/bittorrent.scm:249 +#: gnu/packages/bittorrent.scm:253 msgid "" "Tremc is a console client, with a curses interface, for the\n" "Transmission BitTorrent daemon." msgstr "" -#: gnu/packages/bittorrent.scm:290 +#: gnu/packages/bittorrent.scm:294 msgid "" "Transmission-remote-cli is a console client, with a curses\n" "interface, for the Transmission BitTorrent daemon. This package is no longer\n" "maintained upstream." msgstr "" -#: gnu/packages/bittorrent.scm:340 +#: gnu/packages/bittorrent.scm:345 msgid "" "Aria2 is a lightweight, multi-protocol & multi-source command-line\n" "download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and Metalink.\n" "Aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces." msgstr "" -#: gnu/packages/bittorrent.scm:374 +#: gnu/packages/bittorrent.scm:381 msgid "" "uGet is portable download manager with GTK+ interface supporting\n" "HTTP, HTTPS, BitTorrent and Metalink, supporting multi-connection\n" "downloads, download scheduling, download rate limiting." msgstr "" -#: gnu/packages/bittorrent.scm:406 +#: gnu/packages/bittorrent.scm:413 msgid "" "mktorrent is a simple command-line utility to create BitTorrent\n" "@dfn{metainfo} files, often known simply as @dfn{torrents}, from both single\n" @@ -1585,14 +1623,14 @@ msgid "" "and will take advantage of multiple processor cores where possible." msgstr "" -#: gnu/packages/bittorrent.scm:457 +#: gnu/packages/bittorrent.scm:472 msgid "" "libtorrent-rasterbar is a feature-complete C++ BitTorrent implementation\n" "focusing on efficiency and scalability. It runs on embedded devices as well as\n" "desktops." msgstr "" -#: gnu/packages/bittorrent.scm:508 +#: gnu/packages/bittorrent.scm:523 msgid "" "qBittorrent is a BitTorrent client programmed in C++/Qt that uses\n" "libtorrent (sometimes called libtorrent-rasterbar) by Arvid Norberg.\n" @@ -1602,7 +1640,7 @@ msgid "" "features." msgstr "" -#: gnu/packages/bittorrent.scm:580 +#: gnu/packages/bittorrent.scm:604 msgid "" "Deluge contains the common features to BitTorrent clients such as\n" "Protocol Encryption, DHT, Local Peer Discovery (LSD), Peer Exchange\n" @@ -1914,7 +1952,16 @@ msgid "" "functionality in a C++ iostream." msgstr "" -#: gnu/packages/compression.scm:1443 +#: gnu/packages/compression.scm:1416 +msgid "" +"Zopfli Compression Algorithm is a compression library\n" +"programmed in C to perform very good, but slow, deflate or zlib compression.\n" +"ZopfliCompress supports the deflate, gzip and zlib output formats. This\n" +"library can only compress, not decompress; existing zlib or deflate libraries\n" +"can decompress the data." +msgstr "" + +#: gnu/packages/compression.scm:1469 msgid "" "ZPAQ is a command-line archiver for realistic situations with\n" "many duplicate and already compressed files. It backs up only those files\n" @@ -1928,13 +1975,13 @@ msgid "" "or junctions, and always follows hard links." msgstr "" -#: gnu/packages/compression.scm:1545 +#: gnu/packages/compression.scm:1571 msgid "" "@command{unshield} is a tool and library for extracting @file{.cab}\n" " archives from InstallShield installers." msgstr "" -#: gnu/packages/compression.scm:1624 +#: gnu/packages/compression.scm:1650 msgid "" "Zstandard (@command{zstd}) is a lossless compression algorithm\n" "that combines very fast operation with a compression ratio comparable to that of\n" @@ -1944,7 +1991,7 @@ msgid "" "speed." msgstr "" -#: gnu/packages/compression.scm:1672 +#: gnu/packages/compression.scm:1698 msgid "" "Parallel Zstandard (PZstandard or @command{pzstd}) is a\n" "multi-threaded implementation of the @uref{http://zstd.net/, Zstandard\n" @@ -1957,7 +2004,7 @@ msgid "" "the actual decompression, the other input and output." msgstr "" -#: gnu/packages/compression.scm:1712 +#: gnu/packages/compression.scm:1738 msgid "" "Zip is a compression and file packaging/archive utility. Zip is useful\n" "for packaging a set of files for distribution, for archiving files, and for\n" @@ -1972,7 +2019,7 @@ msgid "" "Compression ratios of 2:1 to 3:1 are common for text files." msgstr "" -#: gnu/packages/compression.scm:1801 +#: gnu/packages/compression.scm:1827 msgid "" "UnZip is an extraction utility for archives compressed in .zip format,\n" "also called \"zipfiles\".\n" @@ -1983,7 +2030,7 @@ msgid "" "recreates the stored directory structure by default." msgstr "" -#: gnu/packages/compression.scm:1853 +#: gnu/packages/compression.scm:1879 msgid "" "Ziptime helps make @file{.zip} archives reproducible by replacing\n" "timestamps in the file header with a fixed time (1 January 2008).\n" @@ -1992,11 +2039,11 @@ msgid "" "@command{zip} to prevent it from storing the ``universal time'' field." msgstr "" -#: gnu/packages/compression.scm:1880 +#: gnu/packages/compression.scm:1906 msgid "ZZipLib is a library based on zlib for accessing zip files." msgstr "" -#: gnu/packages/compression.scm:1904 +#: gnu/packages/compression.scm:1930 msgid "" "Libzip is a C library for reading, creating, and modifying\n" "zip archives. Files can be added from data buffers, files, or compressed data\n" @@ -2004,7 +2051,7 @@ msgid "" "archive can be reverted." msgstr "" -#: gnu/packages/compression.scm:1937 +#: gnu/packages/compression.scm:1963 msgid "" "The main command is @command{aunpack} which extracts files\n" "from an archive. The other commands provided are @command{apack} (to create\n" @@ -2014,7 +2061,7 @@ msgid "" "of archives." msgstr "" -#: gnu/packages/compression.scm:1963 +#: gnu/packages/compression.scm:1989 msgid "" "Lunzip is a decompressor for files in the lzip compression format (.lz),\n" "written as a single small C tool with no dependencies. This makes it\n" @@ -2024,7 +2071,7 @@ msgid "" "Lunzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:1990 +#: gnu/packages/compression.scm:2016 msgid "" "Clzip is a compressor and decompressor for files in the lzip compression\n" "format (.lz), written as a single small C tool with no dependencies. This makes\n" @@ -2033,7 +2080,7 @@ msgid "" "Clzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:2018 +#: gnu/packages/compression.scm:2044 msgid "" "Lzlib is a C library for in-memory LZMA compression and decompression in\n" "the lzip format. It supports integrity checking of the decompressed data, and\n" @@ -2041,7 +2088,7 @@ msgid "" "corrupted input." msgstr "" -#: gnu/packages/compression.scm:2042 +#: gnu/packages/compression.scm:2068 msgid "" "Plzip is a massively parallel (multi-threaded) lossless data compressor\n" "and decompressor that uses the lzip file format (.lz). Files produced by plzip\n" @@ -2055,13 +2102,13 @@ msgid "" "single-member files which can't be decompressed in parallel." msgstr "" -#: gnu/packages/compression.scm:2074 +#: gnu/packages/compression.scm:2100 msgid "" "innoextract allows extracting Inno Setup installers under\n" "non-Windows systems without running the actual installer using wine." msgstr "" -#: gnu/packages/compression.scm:2096 +#: gnu/packages/compression.scm:2122 msgid "" "ISA-L is a collection of optimized low-level functions\n" "targeting storage applications. ISA-L includes:\n" @@ -2079,7 +2126,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/compression.scm:2156 +#: gnu/packages/compression.scm:2182 msgid "" "This package provides the reference implementation of Brotli,\n" "a generic-purpose lossless compression algorithm that compresses data using a\n" @@ -2091,13 +2138,13 @@ msgid "" "The specification of the Brotli Compressed Data Format is defined in RFC 7932." msgstr "" -#: gnu/packages/compression.scm:2176 +#: gnu/packages/compression.scm:2202 msgid "" "This package provides a Python interface to the @code{brotli}\n" "package, an implementation of the Brotli lossless compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2200 +#: gnu/packages/compression.scm:2226 msgid "" "UCL implements a number of compression algorithms that\n" "achieve an excellent compression ratio while allowing fast decompression.\n" @@ -2107,7 +2154,7 @@ msgid "" "decompression is a little bit slower." msgstr "" -#: gnu/packages/compression.scm:2248 +#: gnu/packages/compression.scm:2274 msgid "" "The Ultimate Packer for eXecutables (UPX) is an executable file\n" "compressor. UPX typically reduces the file size of programs and shared\n" @@ -2115,7 +2162,7 @@ msgid "" "download times, and other distribution and storage costs." msgstr "" -#: gnu/packages/compression.scm:2276 +#: gnu/packages/compression.scm:2302 msgid "" "QuaZIP is a simple C++ wrapper over Gilles Vollant's\n" "ZIP/UNZIP package that can be used to access ZIP archives. It uses\n" @@ -2129,7 +2176,7 @@ msgid "" "reading from and writing to ZIP archives." msgstr "" -#: gnu/packages/compression.scm:2335 +#: gnu/packages/compression.scm:2361 msgid "" "The zchunk compressed file format allows splitting a file\n" "into independent chunks. This makes it possible to retrieve only changed\n" @@ -2152,7 +2199,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/compression.scm:2391 +#: gnu/packages/compression.scm:2417 msgid "" "Zutils is a collection of utilities able to process any combination of\n" "compressed and uncompressed files transparently. If any given file, including\n" @@ -2169,14 +2216,14 @@ msgid "" "at run time, and must be installed separately." msgstr "" -#: gnu/packages/compression.scm:2449 +#: gnu/packages/compression.scm:2475 msgid "" "This package provides a script to unpack self-extracting\n" "archives generated by @command{makeself} or @command{mojo} without running the\n" "possibly untrusted extraction shell script." msgstr "" -#: gnu/packages/compression.scm:2477 +#: gnu/packages/compression.scm:2503 msgid "" "(N)compress provides the original compress and uncompress\n" "programs that used to be the de facto UNIX standard for compressing and\n" @@ -2184,7 +2231,7 @@ msgid "" "file compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2504 +#: gnu/packages/compression.scm:2530 msgid "" "Xarchiver is a front-end to various command line archiving\n" "tools. It uses GTK+ tool-kit and is designed to be desktop-environment\n" @@ -2193,13 +2240,13 @@ msgid "" "archiver is not installed." msgstr "" -#: gnu/packages/compression.scm:2541 +#: gnu/packages/compression.scm:2567 msgid "" "Archive huge numbers of files, or split massive tar archives into smaller\n" "chunks." msgstr "" -#: gnu/packages/compression.scm:2574 +#: gnu/packages/compression.scm:2600 msgid "" "Blosc is a high performance compressor optimized for binary data. It has\n" "been designed to transmit data to the processor cache faster than the\n" @@ -2209,14 +2256,14 @@ msgid "" "computations." msgstr "" -#: gnu/packages/compression.scm:2612 +#: gnu/packages/compression.scm:2638 msgid "" "ECM is a utility that converts ECM files, i.e., CD data files\n" "with their error correction data losslessly rearranged for better compression,\n" "to their original, binary CD format." msgstr "" -#: gnu/packages/compression.scm:2642 +#: gnu/packages/compression.scm:2668 msgid "" "Libdeflate is a library for fast, whole-buffer DEFLATE-based\n" "compression and decompression. The supported formats are:\n" @@ -2228,7 +2275,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/compression.scm:2672 +#: gnu/packages/compression.scm:2698 msgid "" "Tarlz is a massively parallel (multi-threaded) combined implementation of\n" "the tar archiver and the lzip compressor. Tarlz creates, lists, and extracts\n" @@ -2239,7 +2286,7 @@ msgid "" "can append files to the end of such compressed archives." msgstr "" -#: gnu/packages/compression.scm:2706 +#: gnu/packages/compression.scm:2732 msgid "" "The Concise Binary Object Representation (CBOR) is a data format whose\n" "design goals include the possibility of extremely small code size, fairly\n" @@ -2248,17 +2295,17 @@ msgid "" "serializations such as ASN.1 and MessagePack." msgstr "" -#: gnu/packages/compression.scm:2739 +#: gnu/packages/compression.scm:2765 msgid "Fcrackzip is a Zip file password cracker." msgstr "" -#: gnu/packages/databases.scm:211 +#: gnu/packages/databases.scm:216 msgid "" "4store is a RDF/SPARQL store written in C, supporting\n" "either single machines or networked clusters." msgstr "" -#: gnu/packages/databases.scm:255 +#: gnu/packages/databases.scm:260 msgid "" "@code{pg_tmp} creates temporary PostgreSQL databases, suitable for tasks\n" "like running software test suites. Temporary databases created with\n" @@ -2267,14 +2314,14 @@ msgid "" "60)." msgstr "" -#: gnu/packages/databases.scm:281 +#: gnu/packages/databases.scm:286 msgid "" "This package provides a utility for dumping the contents of an\n" "ElasticSearch index to a compressed file and restoring the dumpfile back to an\n" "ElasticSearch server" msgstr "" -#: gnu/packages/databases.scm:433 +#: gnu/packages/databases.scm:438 msgid "" "Firebird is an SQL @acronym{RDBMS, relational database management system}\n" "with rich support for ANSI SQL (e.g., @code{INSERT...RETURNING}) including\n" @@ -2294,20 +2341,20 @@ msgid "" "database later." msgstr "" -#: gnu/packages/databases.scm:506 +#: gnu/packages/databases.scm:511 msgid "" "LevelDB is a fast key-value storage library that provides an ordered\n" "mapping from string keys to string values." msgstr "" -#: gnu/packages/databases.scm:526 +#: gnu/packages/databases.scm:531 msgid "" "Memcached is an in-memory key-value store. It has a small\n" "and generic API, and was originally intended for use with dynamic web\n" "applications." msgstr "" -#: gnu/packages/databases.scm:588 +#: gnu/packages/databases.scm:593 msgid "" "libMemcached is a library to use memcached in C/C++\n" "applications. It comes with a complete reference guide and documentation of\n" @@ -2321,51 +2368,75 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:625 +#: gnu/packages/databases.scm:630 msgid "" "@code{pylibmc} is a client in Python for memcached. It is a wrapper\n" "around TangentOrg’s libmemcached library, and can be used as a drop-in\n" "replacement for the code@{python-memcached} library." msgstr "" -#: gnu/packages/databases.scm:653 +#: gnu/packages/databases.scm:662 +msgid "This is a memcache client library for the Go programming language." +msgstr "" + +#: gnu/packages/databases.scm:685 +#, fuzzy +#| msgid "" +#| "This package provides a dictionary for the Hunspell spell-checking\n" +#| "library." +msgid "This package provides memcache client and server functionality." +msgstr "Dit pakket stelt een woordenboe ter beschikking voor de spellingscontroleur Hunspell." + +#: gnu/packages/databases.scm:711 msgid "" "@code{litecli} is a command-line client for SQLite databases that has\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:685 +#: gnu/packages/databases.scm:732 +msgid "" +"This Python package provides an API to execute meta-commands (AKA\n" +"\"special\", or \"backslash commands\") on PostgreSQL." +msgstr "" + +#: gnu/packages/databases.scm:763 +msgid "" +"@code{pgcli} is a command line interface for PostgreSQL with\n" +"autocompletion and syntax highlighting." +msgstr "" + +#: gnu/packages/databases.scm:801 msgid "" "MyCLI is a command line interface for MySQL, MariaDB, and Percona with\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:782 +#: gnu/packages/databases.scm:898 msgid "" "MySQL is a fast, reliable, and easy to use relational database\n" "management system that supports the standardized Structured Query\n" "Language." msgstr "" -#: gnu/packages/databases.scm:1045 +#: gnu/packages/databases.scm:1161 msgid "" "MariaDB is a multi-user and multi-threaded SQL database server, designed\n" "as a drop-in replacement of MySQL." msgstr "" -#: gnu/packages/databases.scm:1070 +#: gnu/packages/databases.scm:1186 msgid "" "The MariaDB Connector/C is used to connect applications\n" "developed in C/C++ to MariaDB and MySQL databases." msgstr "" -#: gnu/packages/databases.scm:1093 +#: gnu/packages/databases.scm:1209 msgid "" "Galera is a wsrep-provider that is used with MariaDB for load-balancing\n" "and high-availability (HA)." msgstr "" -#: gnu/packages/databases.scm:1147 +#: gnu/packages/databases.scm:1263 msgid "" "PostgreSQL is a powerful object-relational database system. It is fully\n" "ACID compliant, has full support for foreign keys, joins, views, triggers, and\n" @@ -2375,19 +2446,27 @@ msgid "" "pictures, sounds, or video." msgstr "" -#: gnu/packages/databases.scm:1269 +#: gnu/packages/databases.scm:1395 +msgid "" +"TimescaleDB is an database designed to make SQL scalable for\n" +"time-series data. It is engineered up from PostgreSQL and packaged as a\n" +"PostgreSQL extension, providing automatic partitioning across time and space\n" +"(partitioning key), as well as full SQL support." +msgstr "" + +#: gnu/packages/databases.scm:1476 msgid "" "@code{pgloader} is a program that can load data or migrate databases from\n" "CSV, DB3, iXF, SQLite, MS-SQL or MySQL to PostgreSQL." msgstr "" -#: gnu/packages/databases.scm:1293 +#: gnu/packages/databases.scm:1500 msgid "" "PyMySQL is a pure-Python MySQL client library, based on PEP 249.\n" "Most public APIs are compatible with @command{mysqlclient} and MySQLdb." msgstr "" -#: gnu/packages/databases.scm:1320 +#: gnu/packages/databases.scm:1527 msgid "" "QDBM is a library of routines for managing a\n" "database. The database is a simple data file containing key-value\n" @@ -2397,7 +2476,7 @@ msgid "" "organized in a hash table or B+ tree." msgstr "" -#: gnu/packages/databases.scm:1357 +#: gnu/packages/databases.scm:1564 msgid "" "GNU Recutils is a set of tools and libraries for creating and\n" "manipulating text-based, human-editable databases. Despite being text-based,\n" @@ -2406,7 +2485,7 @@ msgid "" "types are supported, as is encryption." msgstr "" -#: gnu/packages/databases.scm:1389 +#: gnu/packages/databases.scm:1596 msgid "" "This package provides an Emacs major mode @code{rec-mode}\n" "for working with GNU Recutils text-based, human-editable databases. It\n" @@ -2414,7 +2493,7 @@ msgid "" "including field and record folding." msgstr "" -#: gnu/packages/databases.scm:1457 +#: gnu/packages/databases.scm:1664 msgid "" "RocksDB is a library that forms the core building block for a fast\n" "key-value server, especially suited for storing data on flash drives. It\n" @@ -2425,7 +2504,7 @@ msgid "" "data in a single database. RocksDB is partially based on @code{LevelDB}." msgstr "" -#: gnu/packages/databases.scm:1515 +#: gnu/packages/databases.scm:1722 msgid "" "Sparql-query is a command-line tool for accessing SPARQL\n" "endpoints over HTTP. It has been intentionally designed to @code{feel} similar to\n" @@ -2436,13 +2515,13 @@ msgid "" "for example from a shell script." msgstr "" -#: gnu/packages/databases.scm:1608 +#: gnu/packages/databases.scm:1815 msgid "" "Sqitch is a standalone change management system for database schemas,\n" "which uses SQL to describe changes." msgstr "" -#: gnu/packages/databases.scm:1635 +#: gnu/packages/databases.scm:1842 msgid "" "SQLcrush lets you view and edit a database directly from the text\n" "console through an ncurses interface. You can explore each table's structure,\n" @@ -2450,7 +2529,7 @@ msgid "" "changes." msgstr "" -#: gnu/packages/databases.scm:1673 +#: gnu/packages/databases.scm:1880 msgid "" "TDB is a Trivial Database. In concept, it is very much like GDBM,\n" "and BSD's DB except that it allows multiple simultaneous writers and uses\n" @@ -2458,11 +2537,11 @@ msgid "" "extremely small." msgstr "" -#: gnu/packages/databases.scm:1693 +#: gnu/packages/databases.scm:1900 msgid "This package provides an database interface for Perl." msgstr "" -#: gnu/packages/databases.scm:1741 +#: gnu/packages/databases.scm:1948 msgid "" "An SQL to OO mapper with an object API inspired by\n" "Class::DBI (with a compatibility layer as a springboard for porting) and a\n" @@ -2474,13 +2553,13 @@ msgid "" "\"ORDER BY\" and \"HAVING\" support." msgstr "" -#: gnu/packages/databases.scm:1770 +#: gnu/packages/databases.scm:1977 msgid "" "DBIx::Class::Cursor::Cached provides a cursor class with\n" "built-in caching support." msgstr "" -#: gnu/packages/databases.scm:1793 +#: gnu/packages/databases.scm:2000 msgid "" "Because the many-to-many relationships are not real\n" "relationships, they can not be introspected with DBIx::Class. Many-to-many\n" @@ -2490,26 +2569,26 @@ msgid "" "introspected and examined." msgstr "" -#: gnu/packages/databases.scm:1852 +#: gnu/packages/databases.scm:2059 msgid "" "DBIx::Class::Schema::Loader automates the definition of a\n" "DBIx::Class::Schema by scanning database table definitions and setting up the\n" "columns, primary keys, unique constraints and relationships." msgstr "" -#: gnu/packages/databases.scm:1876 +#: gnu/packages/databases.scm:2083 msgid "" "This package provides a PostgreSQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." msgstr "" -#: gnu/packages/databases.scm:1914 +#: gnu/packages/databases.scm:2121 msgid "" "This package provides a MySQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." msgstr "" -#: gnu/packages/databases.scm:1934 +#: gnu/packages/databases.scm:2141 msgid "" "DBD::SQLite is a Perl DBI driver for SQLite, that includes\n" "the entire thing in the distribution. So in order to get a fast transaction\n" @@ -2517,14 +2596,14 @@ msgid "" "module, and nothing else." msgstr "" -#: gnu/packages/databases.scm:1959 +#: gnu/packages/databases.scm:2166 msgid "" "@code{MySQL::Config} emulates the @code{load_defaults} function from\n" "libmysqlclient. It will fill an array with long options, ready to be parsed by\n" "@code{Getopt::Long}." msgstr "" -#: gnu/packages/databases.scm:1983 +#: gnu/packages/databases.scm:2190 msgid "" "This module was inspired by the excellent DBIx::Abstract.\n" "While based on the concepts used by DBIx::Abstract, the concepts used have\n" @@ -2534,7 +2613,7 @@ msgid "" "time your data changes." msgstr "" -#: gnu/packages/databases.scm:2010 +#: gnu/packages/databases.scm:2217 msgid "" "This module is nearly identical to @code{SQL::Abstract} 1.81, and exists\n" "to preserve the ability of users to opt into the new way of doing things in\n" @@ -2550,34 +2629,34 @@ msgid "" "your data changes, as this module figures it out." msgstr "" -#: gnu/packages/databases.scm:2043 +#: gnu/packages/databases.scm:2250 msgid "" "This module tries to split any SQL code, even including\n" "non-standard extensions, into the atomic statements it is composed of." msgstr "" -#: gnu/packages/databases.scm:2062 +#: gnu/packages/databases.scm:2269 msgid "" "SQL::Tokenizer is a tokenizer for SQL queries. It does not\n" "claim to be a parser or query verifier. It just creates sane tokens from a\n" "valid SQL query." msgstr "" -#: gnu/packages/databases.scm:2081 +#: gnu/packages/databases.scm:2288 msgid "" "Unixodbc is a library providing an API with which to access\n" "data sources. Data sources include SQL Servers and any software with an ODBC\n" "Driver." msgstr "" -#: gnu/packages/databases.scm:2113 +#: gnu/packages/databases.scm:2320 msgid "" "The goal for nanodbc is to make developers happy by providing\n" "a simpler and less verbose API for working with ODBC. Common tasks should be\n" "easy, requiring concise and simple code." msgstr "" -#: gnu/packages/databases.scm:2174 +#: gnu/packages/databases.scm:2381 msgid "" "UnQLite is an in-process software library which implements a\n" "self-contained, serverless, zero-configuration, transactional NoSQL\n" @@ -2586,27 +2665,35 @@ msgid "" "similar to BerkeleyDB, LevelDB, etc." msgstr "" -#: gnu/packages/databases.scm:2225 +#: gnu/packages/databases.scm:2432 msgid "" "Redis is an advanced key-value cache and store. Redis\n" "supports many data structures including strings, hashes, lists, sets, sorted\n" "sets, bitmaps and hyperloglogs." msgstr "" -#: gnu/packages/databases.scm:2247 +#: gnu/packages/databases.scm:2454 msgid "" "This package provides a Ruby client that tries to match Redis' API\n" "one-to-one, while still providing an idiomatic interface." msgstr "" -#: gnu/packages/databases.scm:2275 +#: gnu/packages/databases.scm:2479 +msgid "Package rdb implements parsing and encoding of the Redis RDB file format." +msgstr "" + +#: gnu/packages/databases.scm:2505 +msgid "Redigo is a Go client for the Redis database." +msgstr "" + +#: gnu/packages/databases.scm:2531 msgid "" "Kyoto Cabinet is a standalone file-based database that supports Hash\n" "and B+ Tree data storage models. It is a fast key-value lightweight\n" "database and supports many programming languages. It is a NoSQL database." msgstr "" -#: gnu/packages/databases.scm:2303 +#: gnu/packages/databases.scm:2559 msgid "" "Tokyo Cabinet is a library of routines for managing a database.\n" "The database is a simple data file containing records, each is a pair of a\n" @@ -2616,7 +2703,7 @@ msgid "" "organized in hash table, B+ tree, or fixed-length array." msgstr "" -#: gnu/packages/databases.scm:2339 +#: gnu/packages/databases.scm:2595 msgid "" "WiredTiger is an extensible platform for data management. It supports\n" "row-oriented storage (where all columns of a row are stored together),\n" @@ -2625,17 +2712,17 @@ msgid "" "trees (LSM), for sustained throughput under random insert workloads." msgstr "" -#: gnu/packages/databases.scm:2389 +#: gnu/packages/databases.scm:2645 msgid "" "This package provides Guile bindings to the WiredTiger ``NoSQL''\n" "database." msgstr "" -#: gnu/packages/databases.scm:2419 +#: gnu/packages/databases.scm:2675 msgid "The DB::File module provides Perl bindings to the Berkeley DB version 1.x." msgstr "" -#: gnu/packages/databases.scm:2467 +#: gnu/packages/databases.scm:2723 msgid "" "The @dfn{Lightning Memory-Mapped Database} (LMDB) is a high-performance\n" "transactional database. Unlike more complex relational databases, LMDB handles\n" @@ -2648,7 +2735,7 @@ msgid "" "virtual address space — not physical RAM." msgstr "" -#: gnu/packages/databases.scm:2501 +#: gnu/packages/databases.scm:2757 msgid "" "@code{lmdbxx} is a comprehensive @code{C++} wrapper for the\n" "@code{LMDB} embedded database library, offering both an error-checked\n" @@ -2656,14 +2743,22 @@ msgid "" "semantics." msgstr "" -#: gnu/packages/databases.scm:2535 +#: gnu/packages/databases.scm:2791 msgid "" "Libpqxx is a C++ library to enable user programs to communicate with the\n" "PostgreSQL database back-end. The database back-end can be local or it may be\n" "on another machine, accessed via TCP/IP." msgstr "" -#: gnu/packages/databases.scm:2561 +#: gnu/packages/databases.scm:2819 +msgid "" +"Bolt is a pure Go key/value store inspired by Howard Chu's\n" +"LMDB project. The goal of the project is to provide a simple, fast, and\n" +"reliable database for projects that don't require a full database server such as\n" +"Postgres or MySQL." +msgstr "" + +#: gnu/packages/databases.scm:2845 msgid "" "Peewee is a simple and small ORM (object-relation mapping) tool. Peewee\n" "handles converting between pythonic values and those used by databases, so you\n" @@ -2672,20 +2767,20 @@ msgid "" "can autogenerate peewee models using @code{pwiz}, a model generator." msgstr "" -#: gnu/packages/databases.scm:2584 +#: gnu/packages/databases.scm:2868 msgid "" "Pypika-tortoise is a fork of pypika which has been\n" "streamlined for its use in the context of tortoise-orm. It removes support\n" "for many database kinds that tortoise-orm doesn't need, for example." msgstr "" -#: gnu/packages/databases.scm:2604 +#: gnu/packages/databases.scm:2888 msgid "" "This package is a Sphinx extension providing additional\n" "coroutine-specific markup." msgstr "" -#: gnu/packages/databases.scm:2632 +#: gnu/packages/databases.scm:2916 msgid "" "@code{asyncpg} is a database interface library designed\n" "specifically for PostgreSQL and Python/asyncio. @code{asyncpg} is an\n" @@ -2693,14 +2788,14 @@ msgid "" "with Python's asyncio framework." msgstr "" -#: gnu/packages/databases.scm:2652 +#: gnu/packages/databases.scm:2936 msgid "" "@code{asyncmy} is a fast @code{asyncio} MySQL driver, which\n" "reuses most of @code{pymysql} and @code{aiomysql} but rewrites the core\n" "protocol with Cython for performance." msgstr "" -#: gnu/packages/databases.scm:2672 +#: gnu/packages/databases.scm:2956 msgid "" "@code{aiomysql} is a driver for accessing a MySQL database\n" "from the @code{asyncio} Python framework. It depends on and reuses most parts\n" @@ -2708,7 +2803,7 @@ msgid "" "@code{aiopg} library." msgstr "" -#: gnu/packages/databases.scm:2705 +#: gnu/packages/databases.scm:2989 msgid "" "Tortoise ORM is an easy-to-use asyncio ORM (Object\n" "Relational Mapper) inspired by Django. Tortoise ORM was built with relations\n" @@ -2717,7 +2812,7 @@ msgid "" "with relational data." msgstr "" -#: gnu/packages/databases.scm:2749 +#: gnu/packages/databases.scm:3033 msgid "" "SQLCipher is an implementation of SQLite, extended to\n" "provide transparent 256-bit AES encryption of database files. Pages are\n" @@ -2726,19 +2821,19 @@ msgid "" "development." msgstr "" -#: gnu/packages/databases.scm:2782 +#: gnu/packages/databases.scm:3066 msgid "" "@code{python-pyodbc-c} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2807 +#: gnu/packages/databases.scm:3091 msgid "" "@code{python-pyodbc} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2840 +#: gnu/packages/databases.scm:3124 msgid "" "MDB Tools is a set of tools and applications to read the\n" "proprietary MDB file format used in Microsoft's Access database package. This\n" @@ -2747,39 +2842,47 @@ msgid "" "etc., and an SQL engine for performing simple SQL queries." msgstr "" -#: gnu/packages/databases.scm:2886 +#: gnu/packages/databases.scm:3153 +#, fuzzy +#| msgid "" +#| "This package provides a dictionary for the Hunspell spell-checking\n" +#| "library." +msgid "This package provides a MongoDB driver for Go." +msgstr "Dit pakket stelt een woordenboe ter beschikking voor de spellingscontroleur Hunspell." + +#: gnu/packages/databases.scm:3194 msgid "" "python-lmdb or py-lmdb is a Python binding for the @dfn{Lightning\n" "Memory-Mapped Database} (LMDB), a high-performance key-value store." msgstr "" -#: gnu/packages/databases.scm:2925 +#: gnu/packages/databases.scm:3233 msgid "" "Orator provides a simple ActiveRecord-like Object Relational Mapping\n" "implementation for Python." msgstr "" -#: gnu/packages/databases.scm:2963 +#: gnu/packages/databases.scm:3271 msgid "" "Virtuoso is a scalable cross-platform server that combines\n" "relational, graph, and document data management with web application server\n" "and web services platform functionality." msgstr "" -#: gnu/packages/databases.scm:2990 +#: gnu/packages/databases.scm:3298 msgid "" "Cassandra Cluster Manager is a development tool for testing\n" "local Cassandra clusters. It creates, launches and removes Cassandra clusters\n" "on localhost." msgstr "" -#: gnu/packages/databases.scm:3018 +#: gnu/packages/databases.scm:3326 msgid "" "Pysqlite provides SQLite bindings for Python that comply to the\n" "Database API 2.0T." msgstr "" -#: gnu/packages/databases.scm:3048 +#: gnu/packages/databases.scm:3356 msgid "" "SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that\n" "gives application developers the full power and flexibility of SQL. It\n" @@ -2788,14 +2891,14 @@ msgid "" "simple and Pythonic domain language." msgstr "" -#: gnu/packages/databases.scm:3086 +#: gnu/packages/databases.scm:3382 msgid "" "This package contains type stubs and a mypy plugin to\n" "provide more precise static types and type inference for SQLAlchemy\n" "framework." msgstr "" -#: gnu/packages/databases.scm:3118 +#: gnu/packages/databases.scm:3414 msgid "" "SQLAlchemy-utils provides various utility functions and custom data types\n" "for SQLAlchemy. SQLAlchemy is an SQL database abstraction library for Python.\n" @@ -2812,7 +2915,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/databases.scm:3165 +#: gnu/packages/databases.scm:3461 msgid "" "This package provides mock helpers for SQLAlchemy that makes it easy\n" "to mock an SQLAlchemy session while preserving the ability to do asserts.\n" @@ -2822,13 +2925,13 @@ msgid "" "this library provides functions to facilitate such comparisons." msgstr "" -#: gnu/packages/databases.scm:3196 +#: gnu/packages/databases.scm:3492 msgid "" "Alembic is a lightweight database migration tool for usage with the\n" "SQLAlchemy Database Toolkit for Python." msgstr "" -#: gnu/packages/databases.scm:3221 +#: gnu/packages/databases.scm:3517 msgid "" "PickleShare is a small ‘shelve’-like datastore with concurrency support.\n" "Like shelve, a PickleShareDB object acts like a normal dictionary. Unlike\n" @@ -2839,7 +2942,7 @@ msgid "" "PickleShare." msgstr "" -#: gnu/packages/databases.scm:3275 +#: gnu/packages/databases.scm:3571 msgid "" "APSW is a Python wrapper for the SQLite\n" "embedded relational database engine. In contrast to other wrappers such as\n" @@ -2847,21 +2950,21 @@ msgid "" "translate the complete SQLite API into Python." msgstr "" -#: gnu/packages/databases.scm:3312 +#: gnu/packages/databases.scm:3608 msgid "" "The package aiosqlite replicates the standard sqlite3 module, but with\n" "async versions of all the standard connection and cursor methods, and context\n" "managers for automatically closing connections." msgstr "" -#: gnu/packages/databases.scm:3333 +#: gnu/packages/databases.scm:3629 msgid "" "This package provides the Neo4j Python driver that connects\n" "to the database using Neo4j's binary protocol. It aims to be minimal, while\n" "being idiomatic to Python." msgstr "" -#: gnu/packages/databases.scm:3353 +#: gnu/packages/databases.scm:3649 msgid "" "This package provides a client library and toolkit for\n" "working with Neo4j from within Python applications and from the command\n" @@ -2869,26 +2972,38 @@ msgid "" "designed to be easy and intuitive to use." msgstr "" -#: gnu/packages/databases.scm:3379 +#: gnu/packages/databases.scm:3675 msgid "" "psycopg2 is a thread-safe PostgreSQL adapter that implements DB-API\n" "2.0." msgstr "" -#: gnu/packages/databases.scm:3413 +#: gnu/packages/databases.scm:3702 +msgid "" +"This module provides connection pool implementations that can be used\n" +"with the @code{psycopg} PostgreSQL driver." +msgstr "" + +#: gnu/packages/databases.scm:3776 +msgid "" +"Psycopg 3 is a new implementation of the popular @code{psycopg2}\n" +"database adapter for Python." +msgstr "" + +#: gnu/packages/databases.scm:3810 msgid "" "This package provides a program to build Entity\n" "Relationship diagrams from a SQLAlchemy model (or directly from the\n" "database)." msgstr "" -#: gnu/packages/databases.scm:3443 +#: gnu/packages/databases.scm:3840 msgid "" "Yoyo is a database schema migration tool. Migrations are written as SQL\n" "files or Python scripts that define a list of migration steps." msgstr "" -#: gnu/packages/databases.scm:3464 +#: gnu/packages/databases.scm:3861 msgid "" "MySQLdb is an interface to the popular MySQL database server\n" "for Python. The design goals are:\n" @@ -2899,13 +3014,13 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/databases.scm:3490 +#: gnu/packages/databases.scm:3887 msgid "" "Python-hiredis is a python extension that wraps protocol\n" "parsing code in hiredis. It primarily speeds up parsing of multi bulk replies." msgstr "" -#: gnu/packages/databases.scm:3517 +#: gnu/packages/databases.scm:3914 msgid "" "Fakeredis is a pure-Python implementation of the redis-py Python client\n" "that simulates talking to a redis server. It was created for a single purpose:\n" @@ -2916,49 +3031,49 @@ msgid "" "reasonable substitute." msgstr "" -#: gnu/packages/databases.scm:3545 +#: gnu/packages/databases.scm:3942 msgid "This package provides a Python interface to the Redis key-value store." msgstr "" -#: gnu/packages/databases.scm:3586 +#: gnu/packages/databases.scm:3983 msgid "" "RQ (Redis Queue) is a simple Python library for queueing jobs and\n" "processing them in the background with workers. It is backed by Redis and it\n" "is designed to have a low barrier to entry." msgstr "" -#: gnu/packages/databases.scm:3623 +#: gnu/packages/databases.scm:4020 msgid "" "This package provides job scheduling capabilities to @code{python-rq}\n" "(Redis Queue)." msgstr "" -#: gnu/packages/databases.scm:3643 +#: gnu/packages/databases.scm:4040 msgid "" "@code{trollius-redis} is a Redis client for Python\n" " trollius. It is an asynchronous IO (PEP 3156) implementation of the\n" " Redis protocol." msgstr "" -#: gnu/packages/databases.scm:3686 +#: gnu/packages/databases.scm:4083 msgid "" "Sqlparse is a non-validating SQL parser for Python. It\n" "provides support for parsing, splitting and formatting SQL statements." msgstr "" -#: gnu/packages/databases.scm:3703 +#: gnu/packages/databases.scm:4101 msgid "" "@code{python-sql} is a library to write SQL queries, that\n" "transforms idiomatic python function calls to well-formed SQL queries." msgstr "" -#: gnu/packages/databases.scm:3726 +#: gnu/packages/databases.scm:4124 msgid "" "PyPika is a python SQL query builder that exposes the full richness of\n" "the SQL language using a syntax that reflects the resulting query." msgstr "" -#: gnu/packages/databases.scm:3852 +#: gnu/packages/databases.scm:4250 msgid "" "Apache Arrow is a columnar in-memory analytics layer\n" "designed to accelerate big data. It houses a set of canonical in-memory\n" @@ -2967,21 +3082,21 @@ msgid "" "algorithm implementations." msgstr "" -#: gnu/packages/databases.scm:3912 +#: gnu/packages/databases.scm:4310 msgid "" "This library provides a Pythonic API wrapper for the reference Arrow C++\n" "implementation, along with tools for interoperability with pandas, NumPy, and\n" "other traditional Python scientific computing packages." msgstr "" -#: gnu/packages/databases.scm:3933 +#: gnu/packages/databases.scm:4331 msgid "" "This package provides a Python client library for CrateDB.\n" "It implements the Python DB API 2.0 specification and includes support for\n" "SQLAlchemy." msgstr "" -#: gnu/packages/databases.scm:3952 +#: gnu/packages/databases.scm:4350 msgid "" "This library implements a database independent abstraction layer in C,\n" "similar to the DBI/DBD layer in Perl. Writing one generic set of code,\n" @@ -2989,7 +3104,7 @@ msgid "" "simultaneous database connections by using this framework." msgstr "" -#: gnu/packages/databases.scm:4018 +#: gnu/packages/databases.scm:4416 msgid "" "The @code{libdbi-drivers} library provides the database specific drivers\n" "for the @code{libdbi} framework.\n" @@ -3002,26 +3117,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:4060 +#: gnu/packages/databases.scm:4458 msgid "" "SOCI is an abstraction layer for several database backends, including\n" "PostreSQL, SQLite, ODBC and MySQL." msgstr "" -#: gnu/packages/databases.scm:4084 +#: gnu/packages/databases.scm:4482 msgid "" "FreeTDS is an implementation of the Tabular DataStream protocol, used for\n" "connecting to MS SQL and Sybase servers over TCP/IP." msgstr "" -#: gnu/packages/databases.scm:4106 +#: gnu/packages/databases.scm:4504 msgid "" "TinyDB is a small document oriented database written in pure Python\n" "with no external dependencies. The targets are small apps that would\n" "be blown away by a SQL-DB or an external database server." msgstr "" -#: gnu/packages/databases.scm:4154 +#: gnu/packages/databases.scm:4552 msgid "" "Sequeler is a native Linux SQL client built in Vala and\n" "Gtk. It allows you to connect to your local and remote databases, write SQL in\n" @@ -3029,7 +3144,13 @@ msgid "" "a Gtk.Grid Widget." msgstr "" -#: gnu/packages/debug.scm:111 +#: gnu/packages/databases.scm:4594 +msgid "" +"Sqlitebrowser is a high quaility, visual, open source tool to\n" +"create design, and edit database file compatible with SQLite." +msgstr "" + +#: gnu/packages/debug.scm:112 msgid "" "Delta assists you in minimizing \"interesting\" files subject to a test\n" "of their interestingness. A common such situation is when attempting to\n" @@ -3037,7 +3158,7 @@ msgid "" "program to exhibit a bug." msgstr "" -#: gnu/packages/debug.scm:172 +#: gnu/packages/debug.scm:173 msgid "" "C-Reduce is a tool that takes a large C or C++ program that has a\n" "property of interest (such as triggering a compiler bug) and automatically\n" @@ -3046,14 +3167,14 @@ msgid "" "tools that process C/C++ code." msgstr "" -#: gnu/packages/debug.scm:219 +#: gnu/packages/debug.scm:220 msgid "" "C-Vise is a Python port of the C-Reduce tool that is fully compatible\n" "and uses the same efficient LLVM-based C/C++ @code{clang_delta} reduction\n" "tool." msgstr "" -#: gnu/packages/debug.scm:289 +#: gnu/packages/debug.scm:290 msgid "" "American fuzzy lop is a security-oriented fuzzer that employs a novel\n" "type of compile-time instrumentation and genetic algorithms to automatically\n" @@ -3064,7 +3185,7 @@ msgid "" "down the road." msgstr "" -#: gnu/packages/debug.scm:433 +#: gnu/packages/debug.scm:434 msgid "" "QEMU is a generic machine emulator and virtualizer. This package\n" "of QEMU is used only by the american fuzzy lop package.\n" @@ -3080,7 +3201,7 @@ msgid "" "server and embedded PowerPC, and S390 guests." msgstr "" -#: gnu/packages/debug.scm:501 +#: gnu/packages/debug.scm:502 msgid "" "Stress Make is a customized GNU Make that explicitly manages the order\n" "in which concurrent jobs are run to provoke erroneous behavior into becoming\n" @@ -3090,14 +3211,14 @@ msgid "" "conditions." msgstr "" -#: gnu/packages/debug.scm:529 +#: gnu/packages/debug.scm:530 msgid "" "Zzuf is a transparent application input fuzzer. It works by\n" "intercepting file operations and changing random bits in the program's\n" "input. Zzuf's behaviour is deterministic, making it easy to reproduce bugs." msgstr "" -#: gnu/packages/debug.scm:581 +#: gnu/packages/debug.scm:582 msgid "" "Scanmem is a debugging utility designed to isolate the\n" "address of an arbitrary variable in an executing process. Scanmem simply\n" @@ -3106,13 +3227,13 @@ msgid "" "the position of the variable and allows you to modify its value." msgstr "" -#: gnu/packages/debug.scm:611 +#: gnu/packages/debug.scm:612 msgid "" "Remake is an enhanced version of GNU Make that adds improved\n" "error reporting, better tracing, profiling, and a debugger." msgstr "" -#: gnu/packages/debug.scm:667 +#: gnu/packages/debug.scm:668 msgid "" "rr is a lightweight tool for recording, replaying and debugging\n" "execution of applications (trees of processes and threads). Debugging extends\n" @@ -3121,13 +3242,13 @@ msgid "" "fun." msgstr "" -#: gnu/packages/debug.scm:695 +#: gnu/packages/debug.scm:696 msgid "" "The @code{libbacktrace} library can be linked into a C/C++\n" "program to produce symbolic backtraces." msgstr "" -#: gnu/packages/debug.scm:735 +#: gnu/packages/debug.scm:736 msgid "" "The libleak tool detects memory leaks by hooking memory\n" "functions such as @code{malloc}. It comes as a shared object to be pre-loaded\n" @@ -3139,7 +3260,7 @@ msgid "" "use than similar tools like @command{mtrace}." msgstr "" -#: gnu/packages/debug.scm:763 +#: gnu/packages/debug.scm:764 msgid "" "@code{cgdb} is a lightweight curses (terminal-based) interface to the\n" "GNU Debugger (GDB). In addition to the standard gdb console, cgdb provides\n" @@ -3148,7 +3269,7 @@ msgid "" "using cgdb." msgstr "" -#: gnu/packages/debug.scm:798 +#: gnu/packages/debug.scm:799 msgid "" "MspDebug supports FET430UIF, eZ430, RF2500 and Olimex\n" "MSP430-JTAG-TINY programmers, as well as many other compatible\n" @@ -3164,14 +3285,14 @@ msgid "" "multiple test suites, which are then all managed by a single harness." msgstr "" -#: gnu/packages/games.scm:287 +#: gnu/packages/games.scm:288 msgid "" "Abe's Amazing Adventure is a scrolling,\n" "platform-jumping, key-collecting, ancient pyramid exploring game, vaguely in\n" "the style of similar games for the Commodore+4." msgstr "" -#: gnu/packages/games.scm:357 +#: gnu/packages/games.scm:358 msgid "" "Adanaxis is a fast-moving first person shooter set in deep space, where\n" "the fundamentals of space itself are changed. By adding another dimension to\n" @@ -3182,7 +3303,7 @@ msgid "" "mouse and joystick control, and original music." msgstr "" -#: gnu/packages/games.scm:401 +#: gnu/packages/games.scm:402 msgid "" "Guide Alex the Allegator through the jungle in order to save his\n" "girlfriend Lola from evil humans who want to make a pair of shoes out of her.\n" @@ -3191,7 +3312,7 @@ msgid "" "The game includes a built-in editor so you can design and share your own maps." msgstr "" -#: gnu/packages/games.scm:431 +#: gnu/packages/games.scm:432 msgid "" "Armagetron Advanced is a multiplayer game in 3d that\n" "attempts to emulate and expand on the lightcycle sequence from the movie Tron.\n" @@ -3201,7 +3322,7 @@ msgid "" "physics settings to tweak as well." msgstr "" -#: gnu/packages/games.scm:489 +#: gnu/packages/games.scm:490 msgid "" "Space is a vast area, an unbounded territory where it seems there is\n" "a room for everybody, but reversal of fortune put things differently. The\n" @@ -3213,7 +3334,7 @@ msgid "" "regret their insolence." msgstr "" -#: gnu/packages/games.scm:556 +#: gnu/packages/games.scm:557 msgid "" "Bastet (short for Bastard Tetris) is a simple ncurses-based falling brick\n" "game. Unlike normal Tetris, Bastet does not choose the next brick at random.\n" @@ -3223,19 +3344,19 @@ msgid "" "canyons and wait for the long I-shaped block to clear four rows at a time." msgstr "" -#: gnu/packages/games.scm:601 +#: gnu/packages/games.scm:602 msgid "" "Tetrinet is a multiplayer Tetris-like game with powerups and\n" "attacks you can use on opponents." msgstr "" -#: gnu/packages/games.scm:635 +#: gnu/packages/games.scm:636 msgid "" "Vitetris is a classic multiplayer Tetris clone for the\n" "terminal." msgstr "" -#: gnu/packages/games.scm:678 +#: gnu/packages/games.scm:679 msgid "" "Blobwars: Metal Blob Solid is a 2D platform game, the first\n" "in the Blobwars series. You take on the role of a fearless Blob agent. Your\n" @@ -3243,7 +3364,7 @@ msgid "" "possible, while battling many vicious aliens." msgstr "" -#: gnu/packages/games.scm:771 +#: gnu/packages/games.scm:772 msgid "" "These are the BSD games. See the fortune-mod package for fortunes.\n" "\n" @@ -3276,7 +3397,7 @@ msgid "" "Quizzes: arithmetic and quiz." msgstr "" -#: gnu/packages/games.scm:866 +#: gnu/packages/games.scm:867 msgid "" "BZFlag is a 3D multi-player multiplatform tank battle game that\n" "allows users to play against each other in a network environment.\n" @@ -3296,7 +3417,7 @@ msgid "" "high a score as possible." msgstr "" -#: gnu/packages/games.scm:949 +#: gnu/packages/games.scm:950 msgid "" "Cataclysm: Dark Days Ahead (or \"DDA\" for short) is a roguelike set\n" "in a post-apocalyptic world. Struggle to survive in a harsh, persistent,\n" @@ -3308,7 +3429,7 @@ msgid "" "want what you have." msgstr "" -#: gnu/packages/games.scm:998 +#: gnu/packages/games.scm:999 msgid "" "Cockatrice is a program for playing tabletop card games\n" "over a network. Its server design prevents users from manipulating the game\n" @@ -3316,7 +3437,7 @@ msgid "" "allows users to brew while offline." msgstr "" -#: gnu/packages/games.scm:1052 +#: gnu/packages/games.scm:1053 msgid "" "This package provides a reimplementation of the 1997 Bullfrog business\n" "simulation game @i{Theme Hospital}. As well as faithfully recreating the\n" @@ -3324,7 +3445,7 @@ msgid "" "more. This package does @emph{not} provide the game assets." msgstr "" -#: gnu/packages/games.scm:1094 +#: gnu/packages/games.scm:1095 msgid "" "Cowsay is basically a text filter. Send some text into it,\n" "and you get a cow saying your text. If you think a talking cow isn't enough,\n" @@ -3332,21 +3453,21 @@ msgid "" "tired of cows, a variety of other ASCII-art messengers are available." msgstr "" -#: gnu/packages/games.scm:1135 +#: gnu/packages/games.scm:1136 msgid "" "@command{lolcat} concatenates files and streams like\n" "regular @command{cat}, but it also adds terminal escape codes between\n" "characters and lines resulting in a rainbow effect." msgstr "" -#: gnu/packages/games.scm:1164 +#: gnu/packages/games.scm:1165 #, scheme-format msgid "" "This package provides the Fallout 2 game engine. Game data\n" "should be placed in @file{~/.local/share/falltergeist}." msgstr "" -#: gnu/packages/games.scm:1275 +#: gnu/packages/games.scm:1276 msgid "" "FooBillard++ is an advanced 3D OpenGL billiard game\n" "based on the original foobillard 3.0a sources from Florian Berger.\n" @@ -3368,7 +3489,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:1342 +#: gnu/packages/games.scm:1343 msgid "" "The Freedoom project aims to create a complete free content first person\n" "shooter game. Freedoom by itself is just the raw material for a game: it must\n" @@ -3377,7 +3498,7 @@ msgid "" "effects and music to make a completely free game." msgstr "" -#: gnu/packages/games.scm:1392 +#: gnu/packages/games.scm:1394 msgid "" "Freedroid RPG is an @dfn{RPG} (Role-Playing Game) with isometric graphics.\n" "The game tells the story of a world destroyed by a conflict between robots and\n" @@ -3387,7 +3508,7 @@ msgid "" "real-time combat." msgstr "" -#: gnu/packages/games.scm:1471 +#: gnu/packages/games.scm:1473 msgid "" "Golly simulates Conway's Game of Life and many other types of cellular\n" "automata. The following features are available:\n" @@ -3408,7 +3529,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:1527 +#: gnu/packages/games.scm:1529 #, fuzzy #| msgid "This package provides a dictionary for the GNU Aspell spell checker." msgid "" @@ -3416,7 +3537,7 @@ msgid "" "Joy-Con controllers." msgstr "Dit pakket stelt een woordenboek ter beschikking voor de spellingscontroleur GNU Aspell." -#: gnu/packages/games.scm:1557 +#: gnu/packages/games.scm:1559 msgid "" "Engine for Caesar III, a city-building real-time strategy game.\n" "Julius includes some UI enhancements while preserving the logic (including\n" @@ -3424,7 +3545,7 @@ msgid "" "does not include game data." msgstr "" -#: gnu/packages/games.scm:1591 +#: gnu/packages/games.scm:1593 msgid "" "Fork of Julius, an engine for the a city-building real-time strategy\n" "game Caesar III. Gameplay enhancements include:\n" @@ -3439,7 +3560,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/games.scm:1630 +#: gnu/packages/games.scm:1632 msgid "" "Me and My Shadow is a puzzle/platform game in which you try\n" "to reach the exit by solving puzzles. Spikes, moving blocks, fragile blocks\n" @@ -3447,7 +3568,7 @@ msgid "" "shadow mimic them to reach blocks you couldn't reach alone." msgstr "" -#: gnu/packages/games.scm:1686 +#: gnu/packages/games.scm:1688 msgid "" "@code{Open Surge} is a 2D retro side-scrolling platformer\n" "inspired by the Sonic games. The player runs at high speeds through each\n" @@ -3455,7 +3576,7 @@ msgid "" "built-in level editor." msgstr "" -#: gnu/packages/games.scm:1732 +#: gnu/packages/games.scm:1734 msgid "" "Knights is a multiplayer game involving several knights who\n" "must run around a dungeon and complete various quests. Each game revolves\n" @@ -3467,7 +3588,7 @@ msgid "" "destroying an ancient book using a special wand." msgstr "" -#: gnu/packages/games.scm:1780 +#: gnu/packages/games.scm:1781 msgid "" "GNOME 2048 provides a 2D grid for playing 2048, a\n" "single-player sliding tile puzzle game. The objective of the game is to merge\n" @@ -3475,7 +3596,7 @@ msgid "" "in one tile." msgstr "" -#: gnu/packages/games.scm:1819 +#: gnu/packages/games.scm:1820 msgid "" "GNOME Chess provides a 2D board for playing chess games\n" "against human or computer players. It supports loading and saving games in\n" @@ -3483,7 +3604,7 @@ msgid "" "such as chess or stockfish." msgstr "" -#: gnu/packages/games.scm:1880 +#: gnu/packages/games.scm:1881 msgid "" "The GNU backgammon application (also known as \"gnubg\") can\n" "be used for playing, analyzing and teaching the game. It has an advanced\n" @@ -3492,7 +3613,7 @@ msgid "" "also features an attractive, 3D representation of the playing board." msgstr "" -#: gnu/packages/games.scm:1921 +#: gnu/packages/games.scm:1922 msgid "" "GNUbik is a puzzle game in which you must manipulate a cube to make\n" "each of its faces have a uniform color. The game is customizable, allowing\n" @@ -3501,13 +3622,13 @@ msgid "" "scriptable with Guile." msgstr "" -#: gnu/packages/games.scm:1944 +#: gnu/packages/games.scm:1945 msgid "" "GNU Shogi is a program that plays the game Shogi (Japanese\n" "Chess). It is similar to standard chess but this variant is far more complicated." msgstr "" -#: gnu/packages/games.scm:1974 +#: gnu/packages/games.scm:1975 msgid "" "LTris is a tetris clone: differently shaped blocks are falling down the\n" "rectangular playing field and can be moved sideways or rotated by 90 degree\n" @@ -3521,7 +3642,7 @@ msgid "" "watch your CPU playing while enjoying a cup of tea!" msgstr "" -#: gnu/packages/games.scm:2097 +#: gnu/packages/games.scm:2098 msgid "" "NetHack is a single player dungeon exploration game that runs\n" "on a wide variety of computer systems, with a variety of graphical and text\n" @@ -3535,7 +3656,7 @@ msgid "" "role, and your gender." msgstr "" -#: gnu/packages/games.scm:2141 +#: gnu/packages/games.scm:2142 msgid "" "PipeWalker is a simple puzzle game with many diffent themes: connect all\n" "computers to one network server, bring water from a source to the taps, etc.\n" @@ -3544,17 +3665,17 @@ msgid "" "Every puzzle has a complete solution, although there may be more than one." msgstr "" -#: gnu/packages/games.scm:2190 +#: gnu/packages/games.scm:2191 msgid "PrBoom+ is a Doom source port developed from the original PrBoom project." msgstr "" -#: gnu/packages/games.scm:2240 +#: gnu/packages/games.scm:2241 msgid "" "ReTux is an action platformer loosely inspired by the Mario games,\n" "utilizing the art assets from the @code{SuperTux} project." msgstr "" -#: gnu/packages/games.scm:2350 +#: gnu/packages/games.scm:2351 msgid "" "RogueBox Adventures is a graphical roguelike with strong influences\n" "from sandbox games like Minecraft or Terraria. The main idea of RogueBox\n" @@ -3562,7 +3683,7 @@ msgid "" "can be explored and changed freely." msgstr "" -#: gnu/packages/games.scm:2462 +#: gnu/packages/games.scm:2463 msgid "" "Barbie Seahorse Adventures is a retro style platform arcade game.\n" "You are Barbie the seahorse who travels through the jungle, up to the\n" @@ -3572,27 +3693,27 @@ msgid "" "and defeat them with your bubbles!" msgstr "" -#: gnu/packages/games.scm:2522 +#: gnu/packages/games.scm:2523 msgid "" "Solarus is a 2D game engine written in C++, that can run games\n" "scripted in Lua. It has been designed with 16-bit classic Action-RPGs\n" "in mind." msgstr "" -#: gnu/packages/games.scm:2551 +#: gnu/packages/games.scm:2552 msgid "" "Solarus Quest Editor is a graphical user interface to create and\n" "modify quests for the Solarus engine." msgstr "" -#: gnu/packages/games.scm:2627 +#: gnu/packages/games.scm:2628 msgid "" "In SuperStarfighter, up to four local players compete in a\n" "2D arena with fast-moving ships and missiles. Different game types are\n" "available, as well as a single-player mode with AI-controlled ships." msgstr "" -#: gnu/packages/games.scm:2760 +#: gnu/packages/games.scm:2761 msgid "" "Trigger-rally is a 3D rally simulation with great physics\n" "for drifting on over 200 maps. Different terrain materials like dirt,\n" @@ -3604,17 +3725,17 @@ msgid "" "equipped with spoken co-driver notes and co-driver icons." msgstr "" -#: gnu/packages/games.scm:2816 +#: gnu/packages/games.scm:2817 msgid "" "This package provides @command{ufo2map}, a program used to generate\n" "maps for the UFO: Alien Invasion strategy game." msgstr "" -#: gnu/packages/games.scm:2858 +#: gnu/packages/games.scm:2859 msgid "This package contains maps and other assets for UFO: Alien Invasion." msgstr "" -#: gnu/packages/games.scm:2945 +#: gnu/packages/games.scm:2946 msgid "" "UFO: Alien Invasion is a tactical strategy game set in the year 2084.\n" "You control a secret organisation charged with defending Earth from a brutal\n" @@ -3632,11 +3753,11 @@ msgid "" "properly." msgstr "" -#: gnu/packages/games.scm:2982 +#: gnu/packages/games.scm:2983 msgid "A graphical user interface for the package @code{gnushogi}." msgstr "" -#: gnu/packages/games.scm:3035 +#: gnu/packages/games.scm:3036 msgid "" "L'Abbaye des Morts is a 2D platform game set in 13th century\n" "France. The Cathars, who preach about good Christian beliefs, were being\n" @@ -3645,14 +3766,14 @@ msgid "" "that beneath its ruins lay buried an ancient evil." msgstr "" -#: gnu/packages/games.scm:3081 +#: gnu/packages/games.scm:3082 msgid "" "Angband is a Classic dungeon exploration roguelike. Explore\n" "the depths below Angband, seeking riches, fighting monsters, and preparing to\n" "fight Morgoth, the Lord of Darkness." msgstr "" -#: gnu/packages/games.scm:3129 +#: gnu/packages/games.scm:3130 msgid "" "Pingus is a free Lemmings-like puzzle game in which the player takes\n" "command of a bunch of small animals and has to guide them through levels.\n" @@ -3662,21 +3783,21 @@ msgid "" "level's exit. The game is presented in a 2D side view." msgstr "" -#: gnu/packages/games.scm:3152 +#: gnu/packages/games.scm:3153 msgid "" "The GNU Talk Filters are programs that convert English text\n" "into stereotyped or otherwise humorous dialects. The filters are provided as\n" "a C library, so they can easily be integrated into other programs." msgstr "" -#: gnu/packages/games.scm:3196 +#: gnu/packages/games.scm:3197 msgid "" "The player controls a character (one of three: Good, Bad, and Dead),\n" "dodges the missiles (lots of it cover the screen, but the character's hitbox\n" "is very small), and shoot at the adversaries that keep appear on the screen." msgstr "" -#: gnu/packages/games.scm:3239 +#: gnu/packages/games.scm:3240 msgid "" "CMatrix simulates the display from \"The Matrix\" and is\n" "based on the screensaver from the movie's website. It works with terminal\n" @@ -3684,14 +3805,14 @@ msgid "" "asynchronously and at a user-defined speed." msgstr "" -#: gnu/packages/games.scm:3270 +#: gnu/packages/games.scm:3271 msgid "" "GNU Chess is a chess engine. It allows you to compete\n" "against the computer in a game of chess, either through the default terminal\n" "interface or via an external visual interface such as GNU XBoard." msgstr "" -#: gnu/packages/games.scm:3332 +#: gnu/packages/games.scm:3333 msgid "" "GNU FreeDink is a free and portable re-implementation of the engine\n" "for the role-playing game Dink Smallwood. It supports not only the original\n" @@ -3699,17 +3820,17 @@ msgid "" "To that extent, it also includes a front-end for managing all of your D-Mods." msgstr "" -#: gnu/packages/games.scm:3360 +#: gnu/packages/games.scm:3361 msgid "This package contains the game data of GNU Freedink." msgstr "" -#: gnu/packages/games.scm:3383 +#: gnu/packages/games.scm:3384 msgid "" "DFArc makes it easy to play and manage the GNU FreeDink game\n" "and its numerous D-Mods." msgstr "" -#: gnu/packages/games.scm:3453 +#: gnu/packages/games.scm:3454 msgid "" "GNU XBoard is a graphical board for all varieties of chess,\n" "including international chess, xiangqi (Chinese chess), shogi (Japanese chess)\n" @@ -3718,7 +3839,7 @@ msgid "" "Portable Game Notation." msgstr "" -#: gnu/packages/games.scm:3488 +#: gnu/packages/games.scm:3489 msgid "" "GNU Typist is a universal typing tutor. It can be used to learn and\n" "practice touch-typing. Several tutorials are included; in addition to\n" @@ -3727,7 +3848,7 @@ msgid "" "are primarily in English, however some in other languages are provided." msgstr "" -#: gnu/packages/games.scm:3560 +#: gnu/packages/games.scm:3561 msgid "" "The Irrlicht Engine is a high performance realtime 3D engine written in\n" "C++. Features include an OpenGL renderer, extensible materials, scene graph\n" @@ -3735,7 +3856,7 @@ msgid "" "for common mesh file formats, and collision detection." msgstr "" -#: gnu/packages/games.scm:3611 +#: gnu/packages/games.scm:3612 msgid "" "M.A.R.S. is a 2D space shooter with pretty visual effects and\n" "attractive physics. Players can battle each other or computer controlled\n" @@ -3743,7 +3864,7 @@ msgid "" "match, cannon keep, and grave-itation pit." msgstr "" -#: gnu/packages/games.scm:3650 +#: gnu/packages/games.scm:3651 msgid "" "Glk defines a portable API for applications with text UIs. It was\n" "primarily designed for interactive fiction, but it should be suitable for many\n" @@ -3752,7 +3873,7 @@ msgid "" "using the @code{curses.h} library for screen control." msgstr "" -#: gnu/packages/games.scm:3690 +#: gnu/packages/games.scm:3691 msgid "" "Glulx is a 32-bit portable virtual machine intended for writing and\n" "playing interactive fiction. It was designed by Andrew Plotkin to relieve\n" @@ -3760,28 +3881,28 @@ msgid "" "reference interpreter, using the Glk API." msgstr "" -#: gnu/packages/games.scm:3716 +#: gnu/packages/games.scm:3717 msgid "" "Fifechan is a lightweight cross platform GUI library written in C++\n" "specifically designed for games. It has a built in set of extendable GUI\n" "Widgets, and allows users to create more." msgstr "" -#: gnu/packages/games.scm:3791 +#: gnu/packages/games.scm:3792 msgid "" "@acronym{FIFE, Flexible Isometric Free Engine} is a multi-platform\n" "isometric game engine. Python bindings are included allowing users to create\n" "games using Python as well as C++." msgstr "" -#: gnu/packages/games.scm:3826 +#: gnu/packages/games.scm:3827 msgid "" "Fizmo is a console-based Z-machine interpreter. It is used to play\n" "interactive fiction, also known as text adventures, which were implemented\n" "either by Infocom or created using the Inform compiler." msgstr "" -#: gnu/packages/games.scm:3849 +#: gnu/packages/games.scm:3850 msgid "" "GNU Go is a program that plays the game of Go, in which players\n" "place stones on a grid to form territory or capture other stones. While\n" @@ -3792,7 +3913,7 @@ msgid "" "Protocol)." msgstr "" -#: gnu/packages/games.scm:3878 +#: gnu/packages/games.scm:3879 msgid "" "Extreme Tux Racer, or etracer as it is called for short, is\n" "a simple OpenGL racing game featuring Tux, the Linux mascot. The goal of the\n" @@ -3805,7 +3926,7 @@ msgid "" "This game is based on the GPL version of the famous game TuxRacer." msgstr "" -#: gnu/packages/games.scm:3952 +#: gnu/packages/games.scm:3953 msgid "" "SuperTuxKart is a 3D kart racing game, with a focus on\n" "having fun over realism. You can play with up to 4 friends on one PC, racing\n" @@ -3813,7 +3934,7 @@ msgid "" "also available." msgstr "" -#: gnu/packages/games.scm:4028 +#: gnu/packages/games.scm:4029 msgid "" "Unknown Horizons is a 2D realtime strategy simulation with an emphasis\n" "on economy and city building. Expand your small settlement to a strong and\n" @@ -3822,7 +3943,7 @@ msgid "" "trade and diplomacy." msgstr "" -#: gnu/packages/games.scm:4081 +#: gnu/packages/games.scm:4082 msgid "" "GNUjump is a simple, yet addictive game in which you must jump from\n" "platform to platform to avoid falling, while the platforms drop at faster rates\n" @@ -3830,7 +3951,7 @@ msgid "" "falling, themeable graphics and sounds, and replays." msgstr "" -#: gnu/packages/games.scm:4117 +#: gnu/packages/games.scm:4118 msgid "" "The Battle for Wesnoth is a fantasy, turn based tactical strategy game,\n" "with several single player campaigns, and multiplayer games (both networked and\n" @@ -3842,20 +3963,20 @@ msgid "" "next campaign." msgstr "" -#: gnu/packages/games.scm:4137 +#: gnu/packages/games.scm:4138 msgid "" "This package contains a dedicated server for @emph{The\n" "Battle for Wesnoth}." msgstr "" -#: gnu/packages/games.scm:4179 +#: gnu/packages/games.scm:4180 msgid "" "Gamine is a game designed for young children who are learning to use the\n" "mouse and keyboard. The child uses the mouse to draw colored dots and lines\n" "on the screen and keyboard to display letters." msgstr "" -#: gnu/packages/games.scm:4211 +#: gnu/packages/games.scm:4212 msgid "" "ManaPlus is a 2D MMORPG client for game servers. It is the only\n" "fully supported client for @uref{http://www.themanaworld.org, The mana\n" @@ -3863,7 +3984,7 @@ msgid "" "@uref{http://landoffire.org, Land of fire}." msgstr "" -#: gnu/packages/games.scm:4243 +#: gnu/packages/games.scm:4244 msgid "" "OpenTTD is a game in which you transport goods and\n" "passengers by land, water and air. It is a re-implementation of Transport\n" @@ -3882,7 +4003,7 @@ msgstr "" "Dit pakket bevat enkel de spelmotor.\n" "Wanneer je het start, zal er je gevraagd worden een grafisch thema te downloaden." -#: gnu/packages/games.scm:4303 +#: gnu/packages/games.scm:4304 msgid "" "The OpenGFX project is an implementation of the OpenTTD base graphics\n" "set that aims to ensure the best possible out-of-the-box experience.\n" @@ -3897,29 +4018,29 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:4361 +#: gnu/packages/games.scm:4362 msgid "" "OpenSFX is a set of free base sounds for OpenTTD which make\n" "it possible to play OpenTTD without requiring the proprietary sound files from\n" "the original Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4404 +#: gnu/packages/games.scm:4405 msgid "" "OpenMSX is a music set for OpenTTD which makes it possible\n" "to play OpenTTD without requiring the proprietary music from the original\n" "Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4473 +#: gnu/packages/games.scm:4474 msgid "openrct2-title-sequences is a set of title sequences for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4513 +#: gnu/packages/games.scm:4514 msgid "openrct2-objects is a set of objects for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4576 +#: gnu/packages/games.scm:4577 msgid "" "OpenRCT2 is a free software re-implementation of\n" "RollerCoaster Tycoon 2 (RCT2). The gameplay revolves around building and\n" @@ -3929,27 +4050,27 @@ msgid "" "images, etc.)" msgstr "" -#: gnu/packages/games.scm:4630 +#: gnu/packages/games.scm:4631 msgid "" "The Emilia Pinball Project is a pinball simulator. There\n" "are only two levels to play with, but they are very addictive." msgstr "" -#: gnu/packages/games.scm:4659 +#: gnu/packages/games.scm:4660 msgid "" "Pioneers is an emulation of the board game The Settlers of\n" "Catan. It can be played on a local network, on the internet, and with AI\n" "players." msgstr "" -#: gnu/packages/games.scm:4701 +#: gnu/packages/games.scm:4702 msgid "" "The goal of this logic game is to open all cards in a 6x6\n" "grid, using a number of hints as to their relative position. The game idea\n" "is attributed to Albert Einstein." msgstr "" -#: gnu/packages/games.scm:4731 +#: gnu/packages/games.scm:4732 msgid "" "POWWOW is a client software which can be used for telnet as well as for\n" "@dfn{Multi-User Dungeon} (MUD). Additionally it can serve as a nice client for\n" @@ -3957,21 +4078,21 @@ msgid "" "http://lavachat.symlynx.com/unix/" msgstr "" -#: gnu/packages/games.scm:4838 +#: gnu/packages/games.scm:4839 msgid "" "Red Eclipse is an arena shooter, created from the Cube2 engine.\n" "Offering an innovative parkour system and distinct but all potent weapons,\n" "Red Eclipse provides fast paced and accessible gameplay." msgstr "" -#: gnu/packages/games.scm:4903 +#: gnu/packages/games.scm:4904 msgid "" "Grue Hunter is a text adventure game written in Perl. You must make\n" "your way through an underground cave system in search of the Grue. Can you\n" "capture it and get out alive?" msgstr "" -#: gnu/packages/games.scm:4942 +#: gnu/packages/games.scm:4943 msgid "" "lierolibre is an earthworm action game where you fight another player\n" "(or the computer) underground using a wide array of weapons.\n" @@ -3996,14 +4117,14 @@ msgid "" "fullscreen, use F5 or Alt+Enter." msgstr "" -#: gnu/packages/games.scm:5021 +#: gnu/packages/games.scm:5022 msgid "" "Tennix is a 2D tennis game. You can play against the\n" "computer or against another player using the keyboard. The game runs\n" "in-window at 640x480 resolution or fullscreen." msgstr "" -#: gnu/packages/games.scm:5105 +#: gnu/packages/games.scm:5106 msgid "" "Warzone 2100 offers campaign, multi-player, and single-player skirmish\n" "modes. An extensive tech tree with over 400 different technologies, combined\n" @@ -4011,7 +4132,7 @@ msgid "" "tactics." msgstr "" -#: gnu/packages/games.scm:5184 +#: gnu/packages/games.scm:5185 msgid "" "In Widelands, you are the regent of a small clan. You start out with\n" "nothing but your headquarters, where all your resources are stored.\n" @@ -4033,7 +4154,7 @@ msgid "" "of war. Widelands also offers an Artificial Intelligence to challenge you." msgstr "" -#: gnu/packages/games.scm:5236 +#: gnu/packages/games.scm:5237 msgid "" "In the year 2579, the intergalactic weapons corporation, WEAPCO, has\n" "dominated the galaxy. Guide Chris Bainfield and his friend Sid Wilson on\n" @@ -4042,7 +4163,7 @@ msgid "" "in strikes against the evil corporation." msgstr "" -#: gnu/packages/games.scm:5267 +#: gnu/packages/games.scm:5268 msgid "" "In this game you are the captain of the cargo ship Chromium B.S.U. and\n" "are responsible for delivering supplies to the troops on the front line. Your\n" @@ -4050,7 +4171,7 @@ msgid "" "safety of the Chromium vessel." msgstr "" -#: gnu/packages/games.scm:5350 +#: gnu/packages/games.scm:5351 msgid "" "Tux Paint is a free drawing program designed for young children (kids\n" "ages 3 and up). It has a simple, easy-to-use interface; fun sound effects;\n" @@ -4059,23 +4180,23 @@ msgid "" "your child be creative." msgstr "" -#: gnu/packages/games.scm:5390 +#: gnu/packages/games.scm:5391 msgid "" "This package contains a set of \"Rubber Stamp\" images which can be used\n" "with the \"Stamp\" tool within Tux Paint." msgstr "" -#: gnu/packages/games.scm:5439 +#: gnu/packages/games.scm:5440 msgid "Tux Paint Config is a graphical configuration editor for Tux Paint." msgstr "" -#: gnu/packages/games.scm:5491 +#: gnu/packages/games.scm:5492 msgid "" "SuperTux is a classic 2D jump'n run sidescroller game in\n" "a style similar to the original Super Mario games." msgstr "" -#: gnu/packages/games.scm:5523 +#: gnu/packages/games.scm:5524 msgid "" "TinTin++ is a MUD client which supports MCCP (Mud Client Compression\n" "Protocol), MMCP (Mud Master Chat Protocol), xterm 256 colors, most TELNET\n" @@ -4083,7 +4204,7 @@ msgid "" "Linux / Mac OS X servers, and an auto mapper with a VT100 map display." msgstr "" -#: gnu/packages/games.scm:5563 +#: gnu/packages/games.scm:5564 msgid "" "Learn programming, playing with ants and spider webs ;-)\n" "Your robot ant can be programmed in many languages: OCaml, Python, C, C++,\n" @@ -4091,14 +4212,14 @@ msgid "" "programmers may also add their own favorite language." msgstr "" -#: gnu/packages/games.scm:5602 +#: gnu/packages/games.scm:5603 msgid "" "Bambam is a simple baby keyboard (and gamepad) masher\n" "application that locks the keyboard and mouse and instead displays bright\n" "colors, pictures, and sounds." msgstr "" -#: gnu/packages/games.scm:5663 +#: gnu/packages/games.scm:5664 msgid "" "Mr. Rescue is an arcade styled 2d action game centered around evacuating\n" "civilians from burning buildings. The game features fast-paced fire\n" @@ -4106,7 +4227,7 @@ msgid "" "throwing people around in pseudo-randomly generated buildings." msgstr "" -#: gnu/packages/games.scm:5770 +#: gnu/packages/games.scm:5771 msgid "" "HyperRogue is a game in which the player collects treasures and fights\n" "monsters -- rogue-like but for the fact that it is played on the hyperbolic\n" @@ -4120,13 +4241,13 @@ msgid "" "symbols, it still needs graphics to render the non-euclidean world." msgstr "" -#: gnu/packages/games.scm:5817 +#: gnu/packages/games.scm:5818 msgid "" "Kobo Deluxe is an enhanced version of Akira Higuchi's XKobo graphical game\n" "for Un*x systems with X11." msgstr "" -#: gnu/packages/games.scm:5845 +#: gnu/packages/games.scm:5846 msgid "" "Freeciv is a turn-based empire building strategy game\n" "inspired by the history of human civilization. The game commences in\n" @@ -4134,7 +4255,7 @@ msgid "" "into the Space Age." msgstr "" -#: gnu/packages/games.scm:5878 +#: gnu/packages/games.scm:5879 msgid "" "@code{No More Secrets} provides a command line tool called \"nms\"\n" "that recreates the famous data decryption effect seen on screen in the 1992\n" @@ -4145,25 +4266,25 @@ msgid "" "starting a decryption sequence to reveal the original plaintext characters." msgstr "" -#: gnu/packages/games.scm:5906 +#: gnu/packages/games.scm:5907 msgid "This package contains the data files required for MegaGlest." msgstr "" -#: gnu/packages/games.scm:5961 +#: gnu/packages/games.scm:5962 msgid "" "MegaGlest is a cross-platform 3D real-time strategy (RTS)\n" "game, where you control the armies of one of seven different factions: Tech,\n" "Magic, Egypt, Indians, Norsemen, Persian or Romans." msgstr "" -#: gnu/packages/games.scm:6013 +#: gnu/packages/games.scm:6014 msgid "" "In FreeGish you control Gish, a ball of tar who lives\n" "happily with his girlfriend Brea, until one day a mysterious dark creature\n" "emerges from a sewer hole and pulls her below ground." msgstr "" -#: gnu/packages/games.scm:6049 +#: gnu/packages/games.scm:6050 msgid "" "C-Dogs SDL is a classic overhead run-and-gun game,\n" "supporting up to 4 players in co-op and deathmatch modes. Customize your\n" @@ -4171,21 +4292,21 @@ msgid "" "over 100 user-created campaigns." msgstr "" -#: gnu/packages/games.scm:6149 +#: gnu/packages/games.scm:6150 msgid "" "Kiki the nano bot is a 3D puzzle game. It is basically a\n" "mixture of the games Sokoban and Kula-World. Your task is to help Kiki, a\n" "small robot living in the nano world, repair its maker." msgstr "" -#: gnu/packages/games.scm:6225 +#: gnu/packages/games.scm:6226 msgid "" "Teeworlds is an online multiplayer game. Battle with up to\n" "16 players in a variety of game modes, including Team Deathmatch and Capture\n" "The Flag. You can even design your own maps!" msgstr "" -#: gnu/packages/games.scm:6285 +#: gnu/packages/games.scm:6286 msgid "" "Enigma is a puzzle game with 550 unique levels. The object\n" "of the game is to find and uncover pairs of identically colored ‘Oxyd’ stones.\n" @@ -4197,7 +4318,7 @@ msgid "" "with the mouse isn’t always trivial." msgstr "" -#: gnu/packages/games.scm:6319 +#: gnu/packages/games.scm:6320 msgid "" "Chroma is an abstract puzzle game. A variety of colourful\n" "shapes are arranged in a series of increasingly complex patterns, forming\n" @@ -4207,7 +4328,7 @@ msgid "" "becoming difficult enough to tax even the brightest of minds." msgstr "" -#: gnu/packages/games.scm:6384 +#: gnu/packages/games.scm:6385 msgid "" "Fish Fillets NG is strictly a puzzle game. The goal in\n" "every of the seventy levels is always the same: find a safe way out. The fish\n" @@ -4216,14 +4337,14 @@ msgid "" "fish. The whole game is accompanied by quiet, comforting music." msgstr "" -#: gnu/packages/games.scm:6452 +#: gnu/packages/games.scm:6453 msgid "" "Dungeon Crawl Stone Soup (also known as \"Crawl\" or DCSS\n" "for short) is a roguelike adventure through dungeons filled with dangerous\n" "monsters in a quest to find the mystifyingly fabulous Orb of Zot." msgstr "" -#: gnu/packages/games.scm:6529 +#: gnu/packages/games.scm:6530 msgid "" "Lugaru is a third-person action game. The main character,\n" "Turner, is an anthropomorphic rebel bunny rabbit with impressive combat skills.\n" @@ -4233,11 +4354,11 @@ msgid "" "fight against their plot and save his fellow rabbits from slavery." msgstr "" -#: gnu/packages/games.scm:6574 +#: gnu/packages/games.scm:6575 msgid "0ad-data provides the data files required by the game 0ad." msgstr "" -#: gnu/packages/games.scm:6710 +#: gnu/packages/games.scm:6711 msgid "" "0 A.D. is a real-time strategy (RTS) game of ancient\n" "warfare. It's a historically-based war/economy game that allows players to\n" @@ -4247,7 +4368,7 @@ msgid "" "0ad needs a window manager that supports 'Extended Window Manager Hints'." msgstr "" -#: gnu/packages/games.scm:6776 +#: gnu/packages/games.scm:6777 msgid "" "The original Colossal Cave Adventure from 1976 was the origin of all\n" "text adventures, dungeon-crawl (computer) games, and computer-hosted\n" @@ -4256,7 +4377,7 @@ msgid "" "``adventure 2.5'' and ``430-point adventure''." msgstr "" -#: gnu/packages/games.scm:6899 +#: gnu/packages/games.scm:6900 msgid "" "Tales of Maj’Eyal (ToME) RPG, featuring tactical turn-based\n" "combat and advanced character building. Play as one of many unique races and\n" @@ -4267,21 +4388,21 @@ msgid "" "Tales of Maj’Eyal offers engaging roguelike gameplay for the 21st century." msgstr "" -#: gnu/packages/games.scm:6945 +#: gnu/packages/games.scm:6946 msgid "" "Quakespasm is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7002 +#: gnu/packages/games.scm:7003 msgid "" "vkquake is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7067 +#: gnu/packages/games.scm:7068 msgid "" "Yamagi Quake II is an enhanced client for id Software's Quake II.\n" "The main focus is an unchanged single player experience like back in 1997,\n" @@ -4291,18 +4412,18 @@ msgid "" "making Yamagi Quake II one of the most solid Quake II implementations available." msgstr "" -#: gnu/packages/games.scm:7100 +#: gnu/packages/games.scm:7101 msgid "Nudoku is a ncurses-based Sudoku game for your terminal." msgstr "" -#: gnu/packages/games.scm:7146 +#: gnu/packages/games.scm:7147 msgid "" "The Butterfly Effect (tbe) is a game that uses\n" "realistic physics simulations to combine lots of simple mechanical\n" "elements to achieve a simple goal in the most complex way possible." msgstr "" -#: gnu/packages/games.scm:7192 +#: gnu/packages/games.scm:7193 msgid "" "Pioneer is a space adventure game set in our galaxy at the turn of the\n" "31st century. The game is open-ended, and you are free to eke out whatever\n" @@ -4313,14 +4434,14 @@ msgid "" "whatever you make of it." msgstr "" -#: gnu/packages/games.scm:7221 +#: gnu/packages/games.scm:7222 msgid "" "Badass generates false commits for a range of dates, essentially\n" "hacking the gamification of contribution graphs on platforms such as\n" "Github or Gitlab." msgstr "" -#: gnu/packages/games.scm:7294 +#: gnu/packages/games.scm:7295 msgid "" "Colobot: Gold Edition is a real-time strategy game, where\n" "you can program your units (bots) in a language called CBOT, which is similar\n" @@ -4328,7 +4449,7 @@ msgid "" "You can save humanity and get programming skills!" msgstr "" -#: gnu/packages/games.scm:7386 +#: gnu/packages/games.scm:7387 msgid "" "GZdoom is a port of the Doom 2 game engine, with a modern\n" "renderer. It improves modding support with ZDoom's advanced mapping features\n" @@ -4336,14 +4457,14 @@ msgid "" "Strife, Chex Quest, and fan-created games like Harmony, Hacx and Freedoom." msgstr "" -#: gnu/packages/games.scm:7425 +#: gnu/packages/games.scm:7426 msgid "" "Odamex is a modification of the Doom engine that\n" "allows players to easily join servers dedicated to playing Doom\n" "online." msgstr "" -#: gnu/packages/games.scm:7453 +#: gnu/packages/games.scm:7454 msgid "" "Chocolate Doom takes a different approach to other source ports. Its\n" "aim is to accurately reproduce the experience of playing Vanilla Doom. It is\n" @@ -4356,7 +4477,7 @@ msgid "" "affect gameplay)." msgstr "" -#: gnu/packages/games.scm:7493 +#: gnu/packages/games.scm:7494 msgid "" "Crispy Doom is a friendly fork of Chocolate Doom that provides a higher\n" "display resolution, removes the static limits of the Doom engine and offers\n" @@ -4365,21 +4486,21 @@ msgid "" "original." msgstr "" -#: gnu/packages/games.scm:7566 +#: gnu/packages/games.scm:7567 msgid "This package provides C11 / gnu11 utilities C library" msgstr "" -#: gnu/packages/games.scm:7635 +#: gnu/packages/games.scm:7636 msgid "" "Fortune is a command-line utility which displays a random\n" "quotation from a collection of quotes." msgstr "" -#: gnu/packages/games.scm:7677 +#: gnu/packages/games.scm:7678 msgid "Xonotic-data provides the data files required by the game Xonotic." msgstr "" -#: gnu/packages/games.scm:7873 +#: gnu/packages/games.scm:7874 msgid "" "Xonotic is a free, fast-paced first-person shooter.\n" "The project is geared towards providing addictive arena shooter\n" @@ -4389,7 +4510,7 @@ msgid "" "open-source FPS of its kind." msgstr "" -#: gnu/packages/games.scm:7920 +#: gnu/packages/games.scm:7921 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4398,7 +4519,7 @@ msgid "" "ncurses for text display." msgstr "" -#: gnu/packages/games.scm:7964 +#: gnu/packages/games.scm:7966 msgid "" "Naev is a 2d action/rpg space game that combines elements from\n" "the action, RPG and simulation genres. You pilot a spaceship from\n" @@ -4410,7 +4531,7 @@ msgid "" "of lore accompanying everything from planets to equipment." msgstr "" -#: gnu/packages/games.scm:8013 +#: gnu/packages/games.scm:8015 msgid "" "Frotz is an interpreter for Infocom games and\n" "other Z-machine games in the text adventure/interactive fiction genre.\n" @@ -4422,7 +4543,7 @@ msgid "" "to play games on webpages. It can also be made into a chat bot." msgstr "" -#: gnu/packages/games.scm:8075 +#: gnu/packages/games.scm:8077 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4432,7 +4553,7 @@ msgid "" "when packaged in Blorb container files or optionally from individual files." msgstr "" -#: gnu/packages/games.scm:8166 +#: gnu/packages/games.scm:8168 msgid "" "Frozen-Bubble is a clone of the popular Puzzle Bobble game, in which\n" "you attempt to shoot bubbles into groups of the same color to cause them to\n" @@ -4447,7 +4568,7 @@ msgid "" "their own levels." msgstr "" -#: gnu/packages/games.scm:8199 +#: gnu/packages/games.scm:8201 msgid "" "Libmanette is a small GObject library giving you simple\n" "access to game controllers. It supports the de-facto standard gamepads as\n" @@ -4455,7 +4576,7 @@ msgid "" "GameController." msgstr "" -#: gnu/packages/games.scm:8245 +#: gnu/packages/games.scm:8247 msgid "" "Quadrapassel comes from the classic falling-block game,\n" "Tetris. The goal of the game is to create complete horizontal lines of\n" @@ -4467,7 +4588,7 @@ msgid "" "your score gets higher, you level up and the blocks fall faster." msgstr "" -#: gnu/packages/games.scm:8294 +#: gnu/packages/games.scm:8296 msgid "" "Endless Sky is a 2D space trading and combat game. Explore\n" "other star systems. Earn money by trading, carrying passengers, or completing\n" @@ -4477,7 +4598,7 @@ msgid "" "civilized than your own." msgstr "" -#: gnu/packages/games.scm:8443 +#: gnu/packages/games.scm:8445 msgid "" "StepMania is a dance and rhythm game. It features 3D\n" "graphics, keyboard and dance pad support, and an editor for creating your own\n" @@ -4487,7 +4608,7 @@ msgid "" "to download and install them in @file{$HOME/.stepmania-X.Y/Songs} directory." msgstr "" -#: gnu/packages/games.scm:8479 +#: gnu/packages/games.scm:8481 msgid "" "@i{oshu!} is a minimalist variant of the @i{osu!} rhythm game,\n" "which is played by pressing buttons and following along sliders as they appear\n" @@ -4497,7 +4618,7 @@ msgid "" "download and unpack them separately." msgstr "" -#: gnu/packages/games.scm:8562 +#: gnu/packages/games.scm:8564 msgid "" "Battle Tanks (also known as \"btanks\") is a funny battle\n" "game, where you can choose one of three vehicles and eliminate your enemy\n" @@ -4506,7 +4627,7 @@ msgid "" "and cooperative." msgstr "" -#: gnu/packages/games.scm:8596 +#: gnu/packages/games.scm:8598 msgid "" "Slime Volley is a 2D arcade-oriented volleyball simulation, in\n" "the spirit of some Java games of the same name.\n" @@ -4517,7 +4638,7 @@ msgid "" "the ground, the set ends and all balls are served again." msgstr "" -#: gnu/packages/games.scm:8626 +#: gnu/packages/games.scm:8628 msgid "" "Slingshot is a two-dimensional strategy game where two\n" "players attempt to shoot one another through a section of space populated by\n" @@ -4525,14 +4646,14 @@ msgid "" "affected by the gravity of the planets." msgstr "" -#: gnu/packages/games.scm:8674 +#: gnu/packages/games.scm:8676 msgid "" "4D-TRIS is an alteration of the well-known Tetris game. The\n" "game field is extended to 4D space, which has to filled up by the gamer with\n" "4D hyper cubes." msgstr "" -#: gnu/packages/games.scm:8751 +#: gnu/packages/games.scm:8753 msgid "" "Arx Libertatis is a cross-platform port of Arx Fatalis, a 2002\n" "first-person role-playing game / dungeon crawler developed by Arkane Studios.\n" @@ -4542,7 +4663,7 @@ msgid "" "where the player draws runes in real time to effect the desired spell." msgstr "" -#: gnu/packages/games.scm:8797 +#: gnu/packages/games.scm:8799 msgid "" "The Legend of Edgar is a 2D platform game with a persistent world.\n" "When Edgar's father fails to return home after venturing out one dark and stormy night,\n" @@ -4550,7 +4671,7 @@ msgid "" "a fortress beyond the forbidden swamp." msgstr "" -#: gnu/packages/games.scm:8899 +#: gnu/packages/games.scm:8901 msgid "" "OpenClonk is a multiplayer action/tactics/skill game. It is\n" "often referred to as a mixture of The Settlers and Worms. In a simple 2D\n" @@ -4560,20 +4681,20 @@ msgid "" "fight each other on an arena-like map." msgstr "" -#: gnu/packages/games.scm:8931 +#: gnu/packages/games.scm:8933 msgid "" "Flare (Free Libre Action Roleplaying Engine) is a simple\n" "game engine built to handle a very specific kind of game: single-player 2D\n" "action RPGs." msgstr "" -#: gnu/packages/games.scm:8994 +#: gnu/packages/games.scm:8996 msgid "" "Flare is a single-player 2D action RPG with\n" "fast-paced action and a dark fantasy style." msgstr "" -#: gnu/packages/games.scm:9046 +#: gnu/packages/games.scm:9048 msgid "" "Far below the surface of the planet is a place of limitless\n" "power. Those that seek to control such a utopia will soon bring an end to\n" @@ -4587,7 +4708,7 @@ msgid "" "Orcus Dome from evil." msgstr "" -#: gnu/packages/games.scm:9108 +#: gnu/packages/games.scm:9110 msgid "" "Marble Marcher is a video game that uses a fractal physics\n" "engine and fully procedural rendering to produce beautiful and unique\n" @@ -4597,7 +4718,7 @@ msgid "" "levels to unlock." msgstr "" -#: gnu/packages/games.scm:9159 +#: gnu/packages/games.scm:9161 msgid "" "SimGear is a set of libraries designed to be used as\n" "building blocks for quickly assembling 3D simulations, games, and\n" @@ -4605,7 +4726,7 @@ msgid "" "and also provides the base for the FlightGear Flight Simulator." msgstr "" -#: gnu/packages/games.scm:9253 +#: gnu/packages/games.scm:9255 msgid "" "The goal of the FlightGear project is to create a\n" "sophisticated flight simulator framework for use in research or academic\n" @@ -4615,14 +4736,14 @@ msgid "" "simulator." msgstr "" -#: gnu/packages/games.scm:9306 +#: gnu/packages/games.scm:9308 msgid "" "You, as a bunny, have to jump on your opponents to make them\n" "explode. It is a true multiplayer game; you cannot play this alone. You can\n" "play with up to four players simultaneously. It has network support." msgstr "" -#: gnu/packages/games.scm:9373 +#: gnu/packages/games.scm:9375 msgid "" "Hedgewars is a turn based strategy, artillery, action and comedy game,\n" "featuring the antics of pink hedgehogs with attitude as they battle from the\n" @@ -4632,7 +4753,7 @@ msgid "" "and bring the war to your enemy." msgstr "" -#: gnu/packages/games.scm:9407 +#: gnu/packages/games.scm:9409 msgid "" "The gruid module provides packages for easily building\n" "grid-based applications in Go. The library abstracts rendering and input for\n" @@ -4642,13 +4763,13 @@ msgid "" "application." msgstr "" -#: gnu/packages/games.scm:9437 +#: gnu/packages/games.scm:9439 msgid "" "The gruid-tcell module provides a Gruid driver for building\n" "terminal full-window applications." msgstr "" -#: gnu/packages/games.scm:9464 +#: gnu/packages/games.scm:9466 msgid "" "Harmonist: Dayoriah Clan Infiltration is a stealth\n" "coffee-break roguelike game. The game has a heavy focus on tactical\n" @@ -4658,7 +4779,7 @@ msgid "" "on items and player adaptability for character progression." msgstr "" -#: gnu/packages/games.scm:9573 +#: gnu/packages/games.scm:9575 msgid "" "Drascula: The Vampire Strikes Back is a classic humorous 2D\n" "point and click adventure game.\n" @@ -4670,7 +4791,7 @@ msgid "" "the World and demonstrating that he is even more evil than his brother Vlad." msgstr "" -#: gnu/packages/games.scm:9653 +#: gnu/packages/games.scm:9655 msgid "" "Lure of the Temptress is a classic 2D point and click adventure game.\n" "\n" @@ -4689,7 +4810,7 @@ msgid "" "Skorl. Maybe it would be an idea to try and escape..." msgstr "" -#: gnu/packages/games.scm:9752 +#: gnu/packages/games.scm:9754 msgid "" "Flight of the Amazon Queen is a 2D point-and-click\n" "adventure game set in the 1940s.\n" @@ -4706,7 +4827,7 @@ msgid "" "women and 6-foot-tall pygmies." msgstr "" -#: gnu/packages/games.scm:9852 +#: gnu/packages/games.scm:9854 msgid "" "Beneath a Steel Sky is a science-fiction thriller set in a bleak\n" "post-apocalyptic vision of the future. It revolves around Union City,\n" @@ -4729,7 +4850,7 @@ msgid "" "and to seek vengeance for the killing of his tribe." msgstr "" -#: gnu/packages/games.scm:9911 +#: gnu/packages/games.scm:9913 msgid "" "GNU Robots is a game in which you program a robot to explore a world\n" "full of enemies that can hurt it, obstacles and food to be eaten. The goal of\n" @@ -4737,14 +4858,14 @@ msgid "" "may be written in a plain text file in the Scheme programming language." msgstr "" -#: gnu/packages/games.scm:9981 +#: gnu/packages/games.scm:9983 msgid "" "Ri-li is a game in which you drive a wooden toy\n" "steam locomotive across many levels and collect all the coaches to\n" "win." msgstr "" -#: gnu/packages/games.scm:10037 +#: gnu/packages/games.scm:10039 msgid "" "FreeOrion is a turn-based space empire and galactic conquest (4X)\n" "computer game being designed and built by the FreeOrion project. Control an\n" @@ -4754,14 +4875,14 @@ msgid "" "remake of that series or any other game." msgstr "" -#: gnu/packages/games.scm:10093 +#: gnu/packages/games.scm:10095 msgid "" "Leela-zero is a Go engine with no human-provided knowledge, modeled after\n" "the AlphaGo Zero paper. The current best network weights file for the engine\n" "can be downloaded from @url{https://zero.sjeng.org/best-network}." msgstr "" -#: gnu/packages/games.scm:10171 +#: gnu/packages/games.scm:10173 msgid "" "This a tool for Go players which performs the following functions:\n" "@itemize\n" @@ -4773,7 +4894,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:10214 +#: gnu/packages/games.scm:10216 msgid "" "KTuberling is a drawing toy intended for small children and\n" "adults who remain young at heart. The game has no winner; the only purpose is\n" @@ -4792,7 +4913,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10260 +#: gnu/packages/games.scm:10262 msgid "" "Picmi is a number logic game in which cells in a grid have\n" "to be colored or left blank according to numbers given at the side of the\n" @@ -4801,7 +4922,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10297 +#: gnu/packages/games.scm:10299 msgid "" "Kolf is a miniature golf game for one to ten players. The\n" "game is played from an overhead view, with a short bar representing the golf\n" @@ -4820,13 +4941,13 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10341 +#: gnu/packages/games.scm:10343 msgid "" "Shared library and common files for kmahjongg, kshisen and\n" "other Mah Jongg like games." msgstr "" -#: gnu/packages/games.scm:10374 +#: gnu/packages/games.scm:10376 msgid "" "In KMahjongg the tiles are scrambled and staked on top of\n" "each other to resemble a certain shape. The player is then expected to remove\n" @@ -4838,7 +4959,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10416 +#: gnu/packages/games.scm:10418 msgid "" "KShisen is a solitaire-like game played using the standard\n" "set of Mahjong tiles. Unlike Mahjong however, KShisen has only one layer of\n" @@ -4847,7 +4968,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10471 +#: gnu/packages/games.scm:10473 msgid "" "Kajongg is the ancient Chinese board game for 4 players.\n" "\n" @@ -4862,7 +4983,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10513 +#: gnu/packages/games.scm:10515 msgid "" "KBreakout is similar to the classics breakout and xboing,\n" "featuring a number of added graphical enhancements and effects. You control a\n" @@ -4872,7 +4993,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10551 +#: gnu/packages/games.scm:10553 msgid "" "KMines is a classic Minesweeper game. The idea is to\n" "uncover all the squares without blowing up any mines. When a mine is blown\n" @@ -4881,7 +5002,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10588 +#: gnu/packages/games.scm:10590 msgid "" "Konquest is the KDE version of Gnu-Lactic Konquest. Players\n" "conquer other planets by sending ships to them. The goal is to build an\n" @@ -4892,7 +5013,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10627 +#: gnu/packages/games.scm:10629 msgid "" "KBounce is a single player arcade game with the elements of\n" "puzzle. It is played on a field, surrounded by wall, with two or more balls\n" @@ -4902,7 +5023,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10665 +#: gnu/packages/games.scm:10667 msgid "" "KBlocks is the classic Tetris-like falling blocks game.\n" "\n" @@ -4914,7 +5035,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10708 +#: gnu/packages/games.scm:10710 msgid "" "KSudoku is a Sudoku game and solver, supporting a range of\n" "2D and 3D Sudoku variants. In addition to playing Sudoku, it can print Sudoku\n" @@ -4943,7 +5064,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10763 +#: gnu/packages/games.scm:10765 msgid "" "KLines is a simple but highly addictive one player game.\n" "\n" @@ -4960,7 +5081,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10806 +#: gnu/packages/games.scm:10808 msgid "" "KGoldrunner is an action game where the hero runs through a\n" "maze, climbs stairs, dig holes and dodges enemies in order to collect all the\n" @@ -4974,7 +5095,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10849 +#: gnu/packages/games.scm:10851 msgid "" "KDiamond is a three-in-a-row game like Bejeweled. It\n" "features unlimited fun with randomly generated games and five difficulty\n" @@ -4983,7 +5104,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10885 +#: gnu/packages/games.scm:10887 msgid "" "KFourInLine is a board game for two players based on the\n" "Connect-Four game.\n" @@ -4994,7 +5115,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10924 +#: gnu/packages/games.scm:10926 msgid "" "KBlackbox is a game of hide and seek played on a grid of\n" "boxes where the computer has hidden several balls. The position of the hidden\n" @@ -5006,7 +5127,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10964 +#: gnu/packages/games.scm:10966 msgid "" "KNetWalk is a small game where you have to build up a\n" "computer network by rotating the wires to connect the terminals to the server.\n" @@ -5019,7 +5140,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11002 +#: gnu/packages/games.scm:11004 msgid "" "Bomber is a single player arcade game.\n" "\n" @@ -5035,7 +5156,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11047 +#: gnu/packages/games.scm:11049 msgid "" "Granatier is a clone of the classic Bomberman game,\n" "inspired by the work of the Clanbomber clone.\n" @@ -5043,7 +5164,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11085 +#: gnu/packages/games.scm:11087 msgid "" "KsirK is a multi-player network-enabled game. The goal of\n" "the game is simply to conquer the world by attacking your neighbors with your\n" @@ -5068,7 +5189,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11145 +#: gnu/packages/games.scm:11147 msgid "" "Palapeli is a jigsaw puzzle game. Unlike other games in\n" "that genre, you are not limited to aligning pieces on imaginary grids. The\n" @@ -5080,7 +5201,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11184 +#: gnu/packages/games.scm:11186 msgid "" "Kiriki is an addictive and fun dice game, designed to be\n" "played by as many as six players.\n" @@ -5091,7 +5212,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11224 +#: gnu/packages/games.scm:11226 msgid "" "Kigo is an open-source implementation of the popular Go\n" "game.\n" @@ -5108,7 +5229,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11269 +#: gnu/packages/games.scm:11271 msgid "" "Kubrick is a game based on the Rubik's Cube puzzle.\n" "\n" @@ -5121,7 +5242,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11309 +#: gnu/packages/games.scm:11311 msgid "" "Lieutnant Skat (from German \"Offiziersskat\") is a fun and\n" "engaging card game for two players, where the second player is either live\n" @@ -5132,7 +5253,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11347 +#: gnu/packages/games.scm:11349 msgid "" "Kapman is a clone of the well known game Pac-Man.\n" "\n" @@ -5144,7 +5265,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11386 +#: gnu/packages/games.scm:11388 msgid "" "KSpaceduel is a space battle game for one or two players,\n" "where two ships fly around a star in a struggle to be the only survivor.\n" @@ -5152,7 +5273,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11419 +#: gnu/packages/games.scm:11421 msgid "" "Bovo is a Gomoku (from Japanese 五目並べ - lit. \"five\n" "points\") like game for two players, where the opponents alternate in placing\n" @@ -5163,7 +5284,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11457 +#: gnu/packages/games.scm:11459 msgid "" "Killbots is a simple game of evading killer robots.\n" "\n" @@ -5177,7 +5298,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11499 +#: gnu/packages/games.scm:11501 msgid "" "KSnakeDuel is a fast action game where you steer a snake\n" "which has to eat food. While eating the snake grows. But once a player\n" @@ -5187,7 +5308,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11535 +#: gnu/packages/games.scm:11537 msgid "" "In Kollision you use mouse to control a small blue ball in a\n" "closed space environment filled with small red balls, which move about\n" @@ -5198,7 +5319,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11575 +#: gnu/packages/games.scm:11577 msgid "" "KBattleship is a Battle Ship game for KDE.\n" "\n" @@ -5209,7 +5330,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11615 +#: gnu/packages/games.scm:11617 msgid "" "KReversi is a simple one player strategy game played\n" "against the computer.\n" @@ -5222,7 +5343,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11655 +#: gnu/packages/games.scm:11657 msgid "" "KSquares is an implementation of the popular paper based\n" "game Squares. Two players take turns connecting dots on a grid to complete\n" @@ -5231,7 +5352,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11692 +#: gnu/packages/games.scm:11694 msgid "" "KJumpingcube is a simple tactical game for one or two\n" "players, played on a grid of numbered squares. Each turn, players compete for\n" @@ -5240,7 +5361,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11782 +#: gnu/packages/games.scm:11784 msgid "" "X-Moto is a challenging 2D motocross platform game, where\n" "physics play an all important role in the gameplay. You need to\n" @@ -5248,27 +5369,27 @@ msgid "" "the more difficult challenges." msgstr "" -#: gnu/packages/games.scm:11827 +#: gnu/packages/games.scm:11829 msgid "" "Eboard is a chess board interface for ICS (Internet Chess Servers)\n" "and chess engines." msgstr "" -#: gnu/packages/games.scm:11880 +#: gnu/packages/games.scm:11882 msgid "" "ChessX is a chess database. With ChessX you can operate on your\n" "collection of chess games in many ways: browse, edit, add, organize, analyze,\n" "etc. You can also play games on FICS or against an engine." msgstr "" -#: gnu/packages/games.scm:11935 +#: gnu/packages/games.scm:11937 msgid "" "Stockfish is a very strong chess engine. It is much stronger than the\n" "best human chess grandmasters. It can be used with UCI-compatible GUIs like\n" "ChessX." msgstr "" -#: gnu/packages/games.scm:11964 +#: gnu/packages/games.scm:11966 msgid "" "Barrage is a rather destructive action game that puts you on a shooting\n" "range with the objective to hit as many dummy targets as possible within\n" @@ -5277,7 +5398,7 @@ msgid "" "get high scores." msgstr "" -#: gnu/packages/games.scm:11990 +#: gnu/packages/games.scm:11992 msgid "" "This is a clone of the classic game BurgerTime. In it, you play\n" "the part of a chef who must create burgers by stepping repeatedly on\n" @@ -5287,7 +5408,7 @@ msgid "" "protect you." msgstr "" -#: gnu/packages/games.scm:12018 +#: gnu/packages/games.scm:12020 msgid "" "Seven Kingdoms, designed by Trevor Chan, brings a blend of Real-Time\n" "Strategy with the addition of trade, diplomacy, and espionage. The game\n" @@ -5297,7 +5418,7 @@ msgid "" "kingdom." msgstr "" -#: gnu/packages/games.scm:12134 +#: gnu/packages/games.scm:12136 msgid "" "In the grand tradition of Marble Madness and Super Monkey Ball,\n" "Neverball has you guide a rolling ball through dangerous territory. Balance\n" @@ -5307,13 +5428,13 @@ msgid "" "game." msgstr "" -#: gnu/packages/games.scm:12210 +#: gnu/packages/games.scm:12212 msgid "" "With PokerTH you can play the Texas holdem poker game, either against\n" "computer opponents or against real players online." msgstr "" -#: gnu/packages/games.scm:12281 +#: gnu/packages/games.scm:12283 msgid "" "Xblackjack is a MOTIF/OLIT based tool constructed to get you ready for\n" "the casino. It was inspired by a book called \"Beat the Dealer\" by Edward\n" @@ -5322,13 +5443,13 @@ msgid "" "System\" (high-low system)." msgstr "" -#: gnu/packages/games.scm:12321 +#: gnu/packages/games.scm:12323 msgid "" "Pilot your ship inside a planet to find and rescue the colonists trapped\n" "inside the Zenith Colony." msgstr "" -#: gnu/packages/games.scm:12341 +#: gnu/packages/games.scm:12343 msgid "" "Provides a large set of Go-related services for X11:\n" "@itemize\n" @@ -5339,7 +5460,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:12401 +#: gnu/packages/games.scm:12403 msgid "" "Passage is meant to be a memento mori game. It presents an entire life,\n" "from young adulthood through old age and death, in the span of five minutes.\n" @@ -5348,21 +5469,21 @@ msgid "" "there's no right way to interpret it." msgstr "" -#: gnu/packages/games.scm:12435 +#: gnu/packages/games.scm:12437 msgid "" "High performance animated desktop background setter for\n" "X11 that won't set your CPU on fire, drain your laptop battery, or lower video\n" "game FPS." msgstr "" -#: gnu/packages/games.scm:12465 +#: gnu/packages/games.scm:12467 msgid "" "Curse of War is a fast-paced action strategy game originally\n" "implemented using ncurses user interface. An SDL graphical version is also\n" "available." msgstr "" -#: gnu/packages/games.scm:12496 +#: gnu/packages/games.scm:12498 msgid "" "Schiffbruch is a mix of building, strategy and adventure and gets played\n" "with a two-dimensional view. The game deals with the consequences of a ship\n" @@ -5371,13 +5492,13 @@ msgid "" "get attention, so you get found." msgstr "" -#: gnu/packages/games.scm:12556 +#: gnu/packages/games.scm:12558 msgid "" "This package provides port of Prince of Persia, based on the\n" "disassembly of the DOS version, extended with new features." msgstr "" -#: gnu/packages/games.scm:12587 +#: gnu/packages/games.scm:12589 #, scheme-format msgid "" "@code{fheroes2} is an implementation of Heroes of Might and\n" @@ -5473,7 +5594,7 @@ msgid "" "from Markdown files." msgstr "" -#: gnu/packages/gettext.scm:311 +#: gnu/packages/gettext.scm:304 msgid "" "The po4a (PO for anything) project goal is to ease translations (and\n" "more interestingly, the maintenance of translations) using gettext tools on\n" @@ -5556,18 +5677,18 @@ msgid "" "system. It was forked from the GNU Image Manipulation Program." msgstr "" -#: gnu/packages/gnome.scm:284 +#: gnu/packages/gnome.scm:288 msgid "GUPnP-IGD is a library to handle UPnP IGD port mapping." msgstr "" -#: gnu/packages/gnome.scm:340 +#: gnu/packages/gnome.scm:344 msgid "" "Brasero is an application to burn CD/DVD for the Gnome\n" "Desktop. It is designed to be as simple as possible and has some unique\n" "features to enable users to create their discs easily and quickly." msgstr "" -#: gnu/packages/gnome.scm:372 +#: gnu/packages/gnome.scm:376 msgid "" "Libcloudproviders is a DBus API that allows cloud storage sync\n" "clients to expose their services. Clients such as file managers and desktop\n" @@ -5575,19 +5696,19 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:444 +#: gnu/packages/gnome.scm:448 msgid "" "LibGRSS is a Glib abstraction to handle feeds in RSS, Atom,\n" "and other formats." msgstr "" -#: gnu/packages/gnome.scm:472 +#: gnu/packages/gnome.scm:476 msgid "" "GNOME-JS-Common provides common modules for GNOME JavaScript\n" "bindings." msgstr "" -#: gnu/packages/gnome.scm:555 +#: gnu/packages/gnome.scm:559 msgid "" "Seed is a library and interpreter, dynamically bridging\n" "(through GObjectIntrospection) the WebKit JavaScriptCore engine, with the\n" @@ -5596,21 +5717,21 @@ msgid "" "in JavaScript." msgstr "" -#: gnu/packages/gnome.scm:611 +#: gnu/packages/gnome.scm:615 msgid "" "Libdmapsharing is a library which allows programs to access,\n" "share and control the playback of media content using DMAP (DAAP, DPAP & DACP).\n" "It is written in C using GObject and libsoup." msgstr "" -#: gnu/packages/gnome.scm:644 +#: gnu/packages/gnome.scm:648 msgid "" "GTX is a small collection of convenience functions intended to\n" "enhance the GLib testing framework. With specific emphasis on easing the pain\n" "of writing test cases for asynchronous interactions." msgstr "" -#: gnu/packages/gnome.scm:721 +#: gnu/packages/gnome.scm:725 msgid "" "Dee is a library that uses DBus to provide objects allowing\n" "you to create Model-View-Controller type programs across DBus. It also consists\n" @@ -5618,7 +5739,7 @@ msgid "" "of known objects without needing a central registrar." msgstr "" -#: gnu/packages/gnome.scm:802 +#: gnu/packages/gnome.scm:806 msgid "" "Zeitgeist is a service which logs the users’s activities and\n" "events, anywhere from files opened to websites visited and conversations. It\n" @@ -5627,27 +5748,27 @@ msgid "" "patterns." msgstr "" -#: gnu/packages/gnome.scm:869 +#: gnu/packages/gnome.scm:871 msgid "" "GNOME Recipes helps you discover what to cook today,\n" "tomorrow, the rest of the week and for special occasions." msgstr "" -#: gnu/packages/gnome.scm:939 +#: gnu/packages/gnome.scm:940 msgid "" "GNOME Photos is a simple and elegant replacement for using a\n" "file manager to deal with photos. Enhance, crop and edit in a snap. Seamless\n" "cloud integration is offered through GNOME Online Accounts." msgstr "" -#: gnu/packages/gnome.scm:1007 +#: gnu/packages/gnome.scm:1008 msgid "" "GNOME Music is the new GNOME music playing application that\n" "aims to combine an elegant and immersive browsing experience with simple\n" "and straightforward controls." msgstr "" -#: gnu/packages/gnome.scm:1028 +#: gnu/packages/gnome.scm:1029 msgid "" "PortableXDR is an implementation of External Data\n" "Representation (XDR) Library. It is a standard data serialization format, for\n" @@ -5655,25 +5776,25 @@ msgid "" "between different kinds of computer systems." msgstr "" -#: gnu/packages/gnome.scm:1066 +#: gnu/packages/gnome.scm:1067 msgid "" "Tepl is a library that eases the development of\n" "GtkSourceView-based text editors and IDEs." msgstr "" -#: gnu/packages/gnome.scm:1107 +#: gnu/packages/gnome.scm:1108 msgid "" "krb5-auth-dialog is a simple dialog that monitors Kerberos\n" "tickets, and pops up a dialog when they are about to expire." msgstr "" -#: gnu/packages/gnome.scm:1132 +#: gnu/packages/gnome.scm:1133 msgid "" "Notification-Daemon is the server implementation of the\n" "freedesktop.org desktop notification specification." msgstr "" -#: gnu/packages/gnome.scm:1168 +#: gnu/packages/gnome.scm:1169 msgid "" "The mm-common module provides the build infrastructure\n" "and utilities shared among the GNOME C++ binding libraries. Release\n" @@ -5681,55 +5802,55 @@ msgid "" "Library reference documentation." msgstr "" -#: gnu/packages/gnome.scm:1214 +#: gnu/packages/gnome.scm:1215 msgid "" "PhoDav was initially developed as a file-sharing mechanism for Spice,\n" "but it is generic enough to be reused in other projects,\n" "in particular in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1267 +#: gnu/packages/gnome.scm:1268 msgid "" "GNOME Color Manager is a session framework that makes\n" "it easy to manage, install and generate color profiles\n" "in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1319 +#: gnu/packages/gnome.scm:1320 msgid "" "GNOME Online Miners provides a set of crawlers that\n" "go through your online content and index them locally in Tracker.\n" "It has miners for Facebook, Flickr, Google, ownCloud and SkyDrive." msgstr "" -#: gnu/packages/gnome.scm:1352 +#: gnu/packages/gnome.scm:1353 msgid "" "This package provides a library to handle resource discovery\n" "and announcement over @acronym{SSDP, Simple Service Discovery Protocol} and\n" "a debugging tool, @command{gssdp-device-sniffer}." msgstr "" -#: gnu/packages/gnome.scm:1391 +#: gnu/packages/gnome.scm:1392 msgid "" "This package provides GUPnP, an object-oriented framework\n" "for creating UPnP devices and control points, written in C using\n" "@code{GObject} and @code{libsoup}." msgstr "" -#: gnu/packages/gnome.scm:1423 +#: gnu/packages/gnome.scm:1424 msgid "" "This package provides a small utility library to\n" "support DLNA-related tasks such as media profile guessing, transcoding to a\n" "given profile, etc. DLNA is a subset of UPnP A/V." msgstr "" -#: gnu/packages/gnome.scm:1453 +#: gnu/packages/gnome.scm:1454 msgid "" "This package provides a small library for handling\n" "and implementation of UPnP A/V profiles." msgstr "" -#: gnu/packages/gnome.scm:1478 +#: gnu/packages/gnome.scm:1479 msgid "" "The libmediaart library is the foundation for media art caching,\n" "extraction, and lookup for applications on the desktop." @@ -5742,14 +5863,14 @@ msgid "" "tour of all gnome components and allows the user to set them up." msgstr "" -#: gnu/packages/gnome.scm:1584 +#: gnu/packages/gnome.scm:1583 msgid "" "GNOME User Share is a small package that binds together\n" "various free software projects to bring easy to use user-level file\n" "sharing to the masses." msgstr "" -#: gnu/packages/gnome.scm:1639 +#: gnu/packages/gnome.scm:1638 msgid "" "Sushi is a DBus-activated service that allows applications\n" "to preview files on the GNOME desktop." @@ -5801,7 +5922,7 @@ msgid "" "and system administrators." msgstr "" -#: gnu/packages/gnome.scm:1946 +#: gnu/packages/gnome.scm:1950 msgid "" "Dia can be used to draw different types of diagrams, and\n" "includes support for UML static structure diagrams (class diagrams), entity\n" @@ -5809,28 +5930,28 @@ msgid "" "formats like PNG, SVG, PDF and EPS." msgstr "" -#: gnu/packages/gnome.scm:1991 +#: gnu/packages/gnome.scm:1995 msgid "" "libgdata is a GLib-based library for accessing online service APIs using\n" "the GData protocol — most notably, Google's services. It provides APIs to\n" "access the common Google services, and has full asynchronous support." msgstr "" -#: gnu/packages/gnome.scm:2019 +#: gnu/packages/gnome.scm:2023 msgid "" "libgxps is a GObject-based library for handling and rendering XPS\n" "documents. This package also contains binaries that can convert XPS documents\n" "to other formats." msgstr "" -#: gnu/packages/gnome.scm:2060 +#: gnu/packages/gnome.scm:2063 msgid "" "Characters is a simple utility application to find\n" "and insert unusual characters. It allows you to quickly find the\n" "character you are looking for by searching for keywords." msgstr "" -#: gnu/packages/gnome.scm:2081 +#: gnu/packages/gnome.scm:2084 msgid "" "gnome-common contains various files needed to bootstrap\n" "GNOME modules built from Git. It contains a common \"autogen.sh\" script that\n" @@ -5838,13 +5959,13 @@ msgid "" "commonly used macros." msgstr "" -#: gnu/packages/gnome.scm:2142 +#: gnu/packages/gnome.scm:2145 msgid "" "GNOME Contacts organizes your contact information from online and\n" "offline sources, providing a centralized place for managing your contacts." msgstr "" -#: gnu/packages/gnome.scm:2222 +#: gnu/packages/gnome.scm:2225 msgid "" "The libgnome-desktop library provides API shared by several applications\n" "on the desktop, but that cannot live in the platform for various reasons.\n" @@ -5854,40 +5975,40 @@ msgid "" "The gnome-about program helps find which version of GNOME is installed." msgstr "" -#: gnu/packages/gnome.scm:2257 +#: gnu/packages/gnome.scm:2260 msgid "" "Gnome-doc-utils is a collection of documentation utilities for the\n" "Gnome project. It includes xml2po tool which makes it easier to translate\n" "and keep up to date translations of documentation." msgstr "" -#: gnu/packages/gnome.scm:2309 +#: gnu/packages/gnome.scm:2311 msgid "Disk management utility for GNOME." msgstr "" -#: gnu/packages/gnome.scm:2352 +#: gnu/packages/gnome.scm:2353 msgid "" "Application to show you the fonts installed on your computer\n" "for your use as thumbnails. Selecting any thumbnails shows the full view of how\n" "the font would look under various sizes." msgstr "" -#: gnu/packages/gnome.scm:2420 +#: gnu/packages/gnome.scm:2421 msgid "" "The GCR package contains libraries used for displaying certificates and\n" "accessing key stores. It also provides the viewer for crypto files on the\n" "GNOME Desktop." msgstr "" -#: gnu/packages/gnome.scm:2459 +#: gnu/packages/gnome.scm:2460 msgid "This library provides docking features for gtk+." msgstr "" -#: gnu/packages/gnome.scm:2505 +#: gnu/packages/gnome.scm:2506 msgid "Client library to access passwords from the GNOME keyring." msgstr "" -#: gnu/packages/gnome.scm:2575 +#: gnu/packages/gnome.scm:2576 msgid "" "gnome-keyring is a program that keeps passwords and other secrets for\n" "users. It is run as a daemon in the session, similar to ssh-agent, and other\n" @@ -5906,13 +6027,13 @@ msgid "" "on the GNOME Desktop with a single simple application." msgstr "" -#: gnu/packages/gnome.scm:2693 +#: gnu/packages/gnome.scm:2692 msgid "" "Gsettings-desktop-schemas contains a collection of GSettings\n" "schemas for settings shared by various components of the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:2729 +#: gnu/packages/gnome.scm:2728 msgid "" "Liblarch is a Python library built to easily handle data structures such\n" "as lists, trees and acyclic graphs. There's also a GTK binding that will\n" @@ -5923,7 +6044,7 @@ msgid "" "and how they are displayed (View)." msgstr "" -#: gnu/packages/gnome.scm:2790 +#: gnu/packages/gnome.scm:2789 msgid "" "Getting Things GNOME! (GTG) is a personal tasks and TODO list items\n" "organizer for the GNOME desktop environment inspired by the Getting Things\n" @@ -5933,24 +6054,24 @@ msgid "" "know, from small tasks to large projects." msgstr "" -#: gnu/packages/gnome.scm:2829 +#: gnu/packages/gnome.scm:2828 msgid "" "To help with the transition to the Freedesktop Icon Naming\n" "Specification, the icon naming utility maps the icon names used by the\n" "GNOME and KDE desktops to the icon names proposed in the specification." msgstr "" -#: gnu/packages/gnome.scm:2858 +#: gnu/packages/gnome.scm:2857 msgid "Icons for the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:2897 +#: gnu/packages/gnome.scm:2896 msgid "" "This is an icon theme that follows the Tango visual\n" "guidelines." msgstr "" -#: gnu/packages/gnome.scm:2927 +#: gnu/packages/gnome.scm:2926 msgid "" "The shared-mime-info package contains the core database of common types\n" "and the update-mime-database command used to extend it. It requires glib2 to\n" @@ -5959,18 +6080,18 @@ msgid "" "database is translated at Transifex." msgstr "" -#: gnu/packages/gnome.scm:3012 +#: gnu/packages/gnome.scm:3011 msgid "" "system-config-printer is a CUPS administration tool. It's written in\n" "Python using GTK+, and uses the @acronym{IPP, Internet Printing Protocol} when\n" "configuring CUPS." msgstr "" -#: gnu/packages/gnome.scm:3036 +#: gnu/packages/gnome.scm:3035 msgid "Freedesktop icon theme." msgstr "" -#: gnu/packages/gnome.scm:3085 +#: gnu/packages/gnome.scm:3084 msgid "" "Libnotify is a library that sends desktop notifications to a\n" "notification daemon, as defined in the Desktop Notifications spec. These\n" @@ -5978,7 +6099,7 @@ msgid "" "some form of information without getting in the user's way." msgstr "" -#: gnu/packages/gnome.scm:3132 +#: gnu/packages/gnome.scm:3131 msgid "" "Libpeas is a gobject-based plugin engine, targeted at giving every\n" "application the chance to assume its own extensibility. It also has a set of\n" @@ -5987,21 +6108,21 @@ msgid "" "API." msgstr "" -#: gnu/packages/gnome.scm:3168 +#: gnu/packages/gnome.scm:3167 msgid "" "GtkGLExt is an OpenGL extension to GTK+. It provides\n" "additional GDK objects which support OpenGL rendering in GTK+ and GtkWidget\n" "API add-ons to make GTK+ widgets OpenGL-capable." msgstr "" -#: gnu/packages/gnome.scm:3248 +#: gnu/packages/gnome.scm:3247 msgid "" "Glade is a rapid application development (RAD) tool to\n" "enable quick & easy development of user interfaces for the GTK+ toolkit and\n" "the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:3280 +#: gnu/packages/gnome.scm:3279 msgid "" "Libcroco is a standalone CSS2 parsing and manipulation library.\n" "The parser provides a low level event driven SAC-like API and a CSS object\n" @@ -6009,13 +6130,13 @@ msgid "" "XML/CSS rendering engine." msgstr "" -#: gnu/packages/gnome.scm:3347 +#: gnu/packages/gnome.scm:3346 msgid "" "Libgsf aims to provide an efficient extensible I/O abstraction\n" "for dealing with different structured file formats." msgstr "" -#: gnu/packages/gnome.scm:3526 +#: gnu/packages/gnome.scm:3525 msgid "" "Librsvg is a library to render SVG images to Cairo surfaces.\n" "GNOME uses this to render SVG icons. Outside of GNOME, other desktop\n" @@ -6023,7 +6144,7 @@ msgid "" "diagrams." msgstr "" -#: gnu/packages/gnome.scm:3649 +#: gnu/packages/gnome.scm:3648 msgid "" "Libidl is a library for creating trees of CORBA Interface\n" "Definition Language (idl) files, which is a specification for defining\n" @@ -6032,82 +6153,82 @@ msgid "" "functionality was designed to be as reusable and portable as possible." msgstr "" -#: gnu/packages/gnome.scm:3704 +#: gnu/packages/gnome.scm:3703 msgid "" "ORBit2 is a CORBA 2.4-compliant Object Request Broker (orb)\n" "featuring mature C, C++ and Python bindings." msgstr "" -#: gnu/packages/gnome.scm:3758 +#: gnu/packages/gnome.scm:3757 msgid "" "Bonobo is a framework for creating reusable components for\n" "use in GNOME applications, built on top of CORBA." msgstr "" -#: gnu/packages/gnome.scm:3789 +#: gnu/packages/gnome.scm:3788 msgid "" "Gconf is a system for storing application preferences. It\n" "is intended for user preferences; not arbitrary data storage." msgstr "" -#: gnu/packages/gnome.scm:3823 +#: gnu/packages/gnome.scm:3822 msgid "" "GNOME Mime Data is a module which contains the base MIME\n" "and Application database for GNOME. The data stored by this module is\n" "designed to be accessed through the MIME functions in GnomeVFS." msgstr "" -#: gnu/packages/gnome.scm:3863 +#: gnu/packages/gnome.scm:3862 msgid "" "GnomeVFS is the core library used to access files and folders in GNOME\n" "applications. It provides a file system abstraction which allows applications\n" "to access local and remote files with a single consistent API." msgstr "" -#: gnu/packages/gnome.scm:3904 +#: gnu/packages/gnome.scm:3903 msgid "" "The libgnome library provides a number of useful routines\n" "for building modern applications, including session management, activation of\n" "files and URIs, and displaying help." msgstr "" -#: gnu/packages/gnome.scm:3928 +#: gnu/packages/gnome.scm:3927 msgid "" "Libart is a 2D drawing library intended as a\n" "high-quality vector-based 2D library with antialiasing and alpha composition." msgstr "" -#: gnu/packages/gnome.scm:3955 +#: gnu/packages/gnome.scm:3954 msgid "" "The GnomeCanvas widget provides a flexible widget for\n" "creating interactive structured graphics." msgstr "" -#: gnu/packages/gnome.scm:3977 +#: gnu/packages/gnome.scm:3976 msgid "C++ bindings to the GNOME Canvas library." msgstr "" -#: gnu/packages/gnome.scm:4003 +#: gnu/packages/gnome.scm:4002 msgid "" "The libgnomeui library provides additional widgets for\n" "applications. Many of the widgets from libgnomeui have already been\n" "ported to GTK+." msgstr "" -#: gnu/packages/gnome.scm:4029 +#: gnu/packages/gnome.scm:4028 msgid "" "Libglade is a library that provides interfaces for loading\n" "graphical interfaces described in glade files and for accessing the\n" "widgets built in the loading process." msgstr "" -#: gnu/packages/gnome.scm:4071 +#: gnu/packages/gnome.scm:4070 msgid "" "The Bonobo UI library provides a number of user interface\n" "controls using the Bonobo component framework." msgstr "" -#: gnu/packages/gnome.scm:4098 +#: gnu/packages/gnome.scm:4097 msgid "" "Libwnck is the Window Navigator Construction Kit, a library for use in\n" "writing pagers, tasklists, and more generally applications that are dealing\n" @@ -6115,11 +6236,11 @@ msgid "" "Hints specification (EWMH)." msgstr "" -#: gnu/packages/gnome.scm:4148 +#: gnu/packages/gnome.scm:4147 msgid "A GLib/GTK+ set of document-centric objects and utilities." msgstr "" -#: gnu/packages/gnome.scm:4234 +#: gnu/packages/gnome.scm:4233 msgid "" "GNUmeric is a GNU spreadsheet application, running under GNOME. It is\n" "interoperable with other spreadsheet applications. It has a vast array of\n" @@ -6128,11 +6249,11 @@ msgid "" "engineering." msgstr "" -#: gnu/packages/gnome.scm:4290 +#: gnu/packages/gnome.scm:4289 msgid "Drawing is a basic image editor aiming at the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:4326 +#: gnu/packages/gnome.scm:4325 msgid "The default GNOME 3 themes (Adwaita and some accessibility themes)." msgstr "" @@ -6151,7 +6272,7 @@ msgid "" "targeting the GNOME stack simple." msgstr "" -#: gnu/packages/gnome.scm:4481 +#: gnu/packages/gnome.scm:4482 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, and a minimal sample application (vte) using that. Vte is mainly used in\n" @@ -6159,34 +6280,34 @@ msgid "" "editors, IDEs, etc." msgstr "" -#: gnu/packages/gnome.scm:4505 +#: gnu/packages/gnome.scm:4506 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, this fork provides additional functions exposed for keyboard text\n" "selection and URL hints." msgstr "" -#: gnu/packages/gnome.scm:4585 +#: gnu/packages/gnome.scm:4586 msgid "" "Vinagre is a remote display client supporting the VNC, SPICE\n" "and RDP protocols." msgstr "" -#: gnu/packages/gnome.scm:4631 +#: gnu/packages/gnome.scm:4633 msgid "" "Dconf is a low-level configuration system. Its main purpose\n" "is to provide a backend to GSettings on platforms that don't already have\n" "configuration storage systems." msgstr "" -#: gnu/packages/gnome.scm:4661 +#: gnu/packages/gnome.scm:4663 msgid "" "JSON-GLib is a library providing serialization and\n" "described by RFC 4627. It implements a full JSON parser and generator using\n" "GLib and GObject, and integrates JSON with GLib data types." msgstr "" -#: gnu/packages/gnome.scm:4760 +#: gnu/packages/gnome.scm:4762 msgid "" "LibXklavier is a library providing high-level API for X Keyboard\n" "Extension known as XKB. This library is intended to support XFree86 and other\n" @@ -6194,13 +6315,13 @@ msgid "" "indicators etc)." msgstr "" -#: gnu/packages/gnome.scm:4788 +#: gnu/packages/gnome.scm:4790 msgid "" "This package provides Python bindings to librsvg, the SVG rendering\n" "library." msgstr "" -#: gnu/packages/gnome.scm:4829 +#: gnu/packages/gnome.scm:4831 msgid "" "Glib-networking contains the implementations of certain GLib networking\n" "features that cannot be implemented directly in GLib itself because of their\n" @@ -6210,26 +6331,26 @@ msgid "" "from the GSettings schemas in gsettings-desktop-schemas." msgstr "" -#: gnu/packages/gnome.scm:4866 +#: gnu/packages/gnome.scm:4868 msgid "" "This library was designed to make it easier to access web services that\n" "claim to be \"RESTful\". It includes convenience wrappers for libsoup and\n" "libxml to ease remote use of the RESTful API." msgstr "" -#: gnu/packages/gnome.scm:4931 +#: gnu/packages/gnome.scm:4933 msgid "" "LibSoup is an HTTP client/server library for GNOME. It uses GObjects\n" "and the GLib main loop, to integrate well with GNOME applications." msgstr "" -#: gnu/packages/gnome.scm:5035 +#: gnu/packages/gnome.scm:5037 msgid "" "Libsecret is a GObject based library for storing and retrieving passwords\n" "and other secrets. It communicates with the \"Secret Service\" using DBus." msgstr "" -#: gnu/packages/gnome.scm:5074 +#: gnu/packages/gnome.scm:5076 msgid "" "Five or More is a game where you try to align\n" " five or more objects of the same color and shape causing them to disappear.\n" @@ -6237,19 +6358,19 @@ msgid "" " Try to last as long as possible." msgstr "" -#: gnu/packages/gnome.scm:5116 +#: gnu/packages/gnome.scm:5118 msgid "" "Mines (previously gnomine) is a puzzle game where you locate mines\n" "floating in an ocean using only your brain and a little bit of luck." msgstr "" -#: gnu/packages/gnome.scm:5157 +#: gnu/packages/gnome.scm:5159 msgid "" "MultiWriter can be used to write an ISO file to multiple USB devices at\n" "once." msgstr "" -#: gnu/packages/gnome.scm:5197 +#: gnu/packages/gnome.scm:5198 msgid "" "Sudoku is a Japanese logic game that exploded in popularity in 2005.\n" "GNOME Sudoku is meant to have an interface as simple and unobstrusive as\n" @@ -6257,7 +6378,7 @@ msgid "" "more fun." msgstr "" -#: gnu/packages/gnome.scm:5247 +#: gnu/packages/gnome.scm:5248 msgid "" "GNOME Terminal is a terminal emulator application for accessing a\n" "UNIX shell environment which can be used to run programs available on\n" @@ -6267,14 +6388,14 @@ msgid "" "keyboard shortcuts." msgstr "" -#: gnu/packages/gnome.scm:5319 +#: gnu/packages/gnome.scm:5320 msgid "" "Colord is a system service that makes it easy to manage,\n" "install and generate color profiles to accurately color manage input and\n" "output devices." msgstr "" -#: gnu/packages/gnome.scm:5390 +#: gnu/packages/gnome.scm:5391 msgid "" "Geoclue is a D-Bus service that provides location\n" "information. The primary goal of the Geoclue project is to make creating\n" @@ -6283,7 +6404,7 @@ msgid "" "permission from user." msgstr "" -#: gnu/packages/gnome.scm:5434 +#: gnu/packages/gnome.scm:5435 msgid "" "geocode-glib is a convenience library for geocoding (finding longitude,\n" "and latitude from an address) and reverse geocoding (finding an address from\n" @@ -6291,7 +6412,7 @@ msgid "" "faster results and to avoid unnecessary server load." msgstr "" -#: gnu/packages/gnome.scm:5510 +#: gnu/packages/gnome.scm:5511 msgid "" "UPower is an abstraction for enumerating power devices,\n" "listening to device events and querying history and statistics. Any\n" @@ -6299,13 +6420,13 @@ msgid "" "service via the system message bus." msgstr "" -#: gnu/packages/gnome.scm:5555 +#: gnu/packages/gnome.scm:5557 msgid "" "libgweather is a library to access weather information from online\n" "services for numerous locations." msgstr "" -#: gnu/packages/gnome.scm:5639 +#: gnu/packages/gnome.scm:5640 msgid "" "This package contains the daemon responsible for setting the various\n" "parameters of a GNOME session and the applications that run under it. It\n" @@ -6313,19 +6434,19 @@ msgid "" "settings, themes, mouse settings, and startup of other daemons." msgstr "" -#: gnu/packages/gnome.scm:5670 +#: gnu/packages/gnome.scm:5671 msgid "" "Totem-pl-parser is a GObjects-based library to parse and save\n" "playlists in a variety of formats." msgstr "" -#: gnu/packages/gnome.scm:5703 +#: gnu/packages/gnome.scm:5704 msgid "" "Aisleriot (also known as Solitaire or sol) is a collection of card games\n" "which are easy to play with the aid of a mouse." msgstr "" -#: gnu/packages/gnome.scm:5729 +#: gnu/packages/gnome.scm:5730 msgid "" "Amtk is the acronym for @acronym{Amtk, Actions Menus and Toolbars Kit}.\n" "It is a basic GtkUIManager replacement based on GAction. It is suitable for\n" @@ -6404,13 +6525,13 @@ msgid "" "discovery protocols." msgstr "" -#: gnu/packages/gnome.scm:6324 +#: gnu/packages/gnome.scm:6323 msgid "" "Totem is a simple yet featureful media player for GNOME\n" "which can read a large number of file formats." msgstr "" -#: gnu/packages/gnome.scm:6415 +#: gnu/packages/gnome.scm:6414 msgid "" "Rhythmbox is a music playing application for GNOME. It\n" "supports playlists, song ratings, and any codecs installed through gstreamer." @@ -6441,7 +6562,7 @@ msgid "" "part of udev-extras, then udev, then systemd. It's now a project on its own." msgstr "" -#: gnu/packages/gnome.scm:6611 +#: gnu/packages/gnome.scm:6610 msgid "" "GVFS is a userspace virtual file system designed to work with the I/O\n" "abstraction of GIO. It contains a GIO module that seamlessly adds GVFS\n" @@ -6452,7 +6573,7 @@ msgid "" "DAV, and others." msgstr "" -#: gnu/packages/gnome.scm:6652 +#: gnu/packages/gnome.scm:6651 msgid "" "GUsb is a GObject wrapper for libusb1 that makes it easy to do\n" "asynchronous control, bulk and interrupt transfers with proper cancellation\n" @@ -6460,7 +6581,7 @@ msgid "" "USB transfers with your high-level application or system daemon." msgstr "" -#: gnu/packages/gnome.scm:6706 +#: gnu/packages/gnome.scm:6705 msgid "" "Document Scanner is an easy-to-use application that lets you connect your\n" "scanner and quickly capture images and documents in an appropriate format. It\n" @@ -6468,25 +6589,25 @@ msgid "" "almost all of them." msgstr "" -#: gnu/packages/gnome.scm:6778 +#: gnu/packages/gnome.scm:6777 msgid "" "Eolie is a new web browser for GNOME. It features Firefox sync support,\n" "a secret password store, an adblocker, and a modern UI." msgstr "" -#: gnu/packages/gnome.scm:6855 +#: gnu/packages/gnome.scm:6854 msgid "" "Epiphany is a GNOME web browser targeted at non-technical users. Its\n" "principles are simplicity and standards compliance." msgstr "" -#: gnu/packages/gnome.scm:6914 +#: gnu/packages/gnome.scm:6913 msgid "" "D-Feet is a D-Bus debugger, which can be used to inspect D-Bus interfaces\n" "of running programs and invoke methods on those interfaces." msgstr "" -#: gnu/packages/gnome.scm:6944 +#: gnu/packages/gnome.scm:6943 msgid "" "Yelp-XSL is a collection of programs and data files to help\n" "you build, maintain, and distribute documentation. It provides XSLT stylesheets\n" @@ -6496,14 +6617,14 @@ msgid "" "jQuery.Syntax JavaScript libraries." msgstr "" -#: gnu/packages/gnome.scm:6983 +#: gnu/packages/gnome.scm:6982 msgid "" "Yelp is the help viewer in Gnome. It natively views Mallard, DocBook,\n" "man, info, and HTML documents. It can locate documents according to the\n" "freedesktop.org help system specification." msgstr "" -#: gnu/packages/gnome.scm:7013 +#: gnu/packages/gnome.scm:7012 msgid "" "Yelp-tools is a collection of scripts and build utilities to help create,\n" "manage, and publish documentation for Yelp and the web. Most of the heavy\n" @@ -6511,13 +6632,13 @@ msgid "" "wraps things up in a developer-friendly way." msgstr "" -#: gnu/packages/gnome.scm:7051 +#: gnu/packages/gnome.scm:7050 msgid "" "Libgee is a utility library providing GObject-based interfaces and\n" "classes for commonly used data structures." msgstr "" -#: gnu/packages/gnome.scm:7079 +#: gnu/packages/gnome.scm:7078 msgid "" "Gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. It\n" "allows for GNOME applications to easily inspect and update EXIF, IPTC, and XMP\n" @@ -6532,7 +6653,7 @@ msgid "" "share them with others via social networking and more." msgstr "" -#: gnu/packages/gnome.scm:7168 +#: gnu/packages/gnome.scm:7169 msgid "" "File Roller is an archive manager for the GNOME desktop\n" "environment that allows users to view, unpack, and create compressed archives\n" @@ -6545,25 +6666,25 @@ msgid "" "configuration program to choose applications starting on login." msgstr "" -#: gnu/packages/gnome.scm:7284 +#: gnu/packages/gnome.scm:7287 msgid "" "Gjs is a javascript binding for GNOME. It's mainly based on spidermonkey\n" "javascript engine and the GObject introspection framework." msgstr "" -#: gnu/packages/gnome.scm:7381 +#: gnu/packages/gnome.scm:7383 msgid "" "While aiming at simplicity and ease of use, gedit is a\n" "powerful general purpose text editor." msgstr "" -#: gnu/packages/gnome.scm:7405 +#: gnu/packages/gnome.scm:7407 msgid "" "Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you\n" "to display dialog boxes from the commandline and shell scripts." msgstr "" -#: gnu/packages/gnome.scm:7595 +#: gnu/packages/gnome.scm:7598 msgid "" "Mutter is a window and compositing manager that displays and manages your\n" "desktop via OpenGL. Mutter combines a sophisticated display engine using the\n" @@ -6571,7 +6692,7 @@ msgid "" "window manager." msgstr "" -#: gnu/packages/gnome.scm:7653 +#: gnu/packages/gnome.scm:7656 msgid "" "GNOME Online Accounts provides interfaces so that applications and\n" "libraries in GNOME can access the user's online accounts. It has providers\n" @@ -6579,20 +6700,20 @@ msgid "" "Microsoft Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos." msgstr "" -#: gnu/packages/gnome.scm:7740 +#: gnu/packages/gnome.scm:7743 msgid "" "This package provides a unified backend for programs that work with\n" "contacts, tasks, and calendar information. It was originally developed for\n" "Evolution (hence the name), but is now used by other packages as well." msgstr "" -#: gnu/packages/gnome.scm:7803 +#: gnu/packages/gnome.scm:7806 msgid "" "Caribou is an input assistive technology intended for switch and pointer\n" "users." msgstr "" -#: gnu/packages/gnome.scm:7953 +#: gnu/packages/gnome.scm:7958 msgid "" "NetworkManager is a system network service that manages your network\n" "devices and connections, attempting to keep active network connectivity when\n" @@ -6601,36 +6722,36 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:8009 +#: gnu/packages/gnome.scm:8014 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to virtual private networks (VPNs) via OpenVPN." msgstr "" -#: gnu/packages/gnome.scm:8059 +#: gnu/packages/gnome.scm:8064 msgid "" "Support for configuring virtual private networks based on VPNC.\n" "Compatible with Cisco VPN concentrators configured to use IPsec." msgstr "" -#: gnu/packages/gnome.scm:8106 +#: gnu/packages/gnome.scm:8111 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to @acronym{VPNs, virtual private networks} via OpenConnect, an open client for\n" "Cisco's AnyConnect SSL VPN." msgstr "" -#: gnu/packages/gnome.scm:8135 +#: gnu/packages/gnome.scm:8140 msgid "Database of broadband connection configuration." msgstr "" -#: gnu/packages/gnome.scm:8179 +#: gnu/packages/gnome.scm:8183 msgid "" "This package contains a systray applet for NetworkManager. It displays\n" "the available networks and allows users to easily switch between them." msgstr "" -#: gnu/packages/gnome.scm:8234 +#: gnu/packages/gnome.scm:8238 #, fuzzy #| msgid "" #| "This package provides a GNU Guile interface to the zstd (``zstandard'')\n" @@ -6642,25 +6763,25 @@ msgstr "" "Dit pakket voorziet een GNU Guile-interface voor de zstd-compressiebibliotheek\n" "(‘zstandard’)." -#: gnu/packages/gnome.scm:8466 +#: gnu/packages/gnome.scm:8470 msgid "" "GNOME Display Manager is a system service that is responsible for\n" "providing graphical log-ins and managing local and remote displays." msgstr "" -#: gnu/packages/gnome.scm:8490 +#: gnu/packages/gnome.scm:8494 msgid "" "LibGTop is a library to get system specific data such as CPU and memory\n" "usage and information about running processes." msgstr "" -#: gnu/packages/gnome.scm:8525 +#: gnu/packages/gnome.scm:8528 msgid "" "This package contains tools for managing and manipulating Bluetooth\n" "devices using the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:8636 +#: gnu/packages/gnome.scm:8646 msgid "" "This package contains configuration applets for the GNOME desktop,\n" "allowing to set accessibility configuration, desktop fonts, keyboard and mouse\n" @@ -6668,13 +6789,13 @@ msgid "" "properties, screen resolution, and other GNOME parameters." msgstr "" -#: gnu/packages/gnome.scm:8802 +#: gnu/packages/gnome.scm:8811 msgid "" "GNOME Shell provides core user interface functions for the GNOME desktop,\n" "like switching to windows and launching applications." msgstr "" -#: gnu/packages/gnome.scm:8845 +#: gnu/packages/gnome.scm:8858 msgid "" "GTK-VNC is a project providing client side APIs for the RFB\n" "protocol / VNC remote desktop technology. It is built using coroutines allowing\n" @@ -6682,13 +6803,13 @@ msgid "" "core C library, and bindings for Python (PyGTK)." msgstr "" -#: gnu/packages/gnome.scm:8875 +#: gnu/packages/gnome.scm:8888 msgid "" "GNOME Autoar is a library which makes creating and extracting archives\n" "easy, safe, and automatic." msgstr "" -#: gnu/packages/gnome.scm:8945 +#: gnu/packages/gnome.scm:8959 msgid "" "Tracker is a search engine and triplestore for desktop, embedded and mobile.\n" "\n" @@ -6711,21 +6832,21 @@ msgid "" "endpoint and it understands SPARQL." msgstr "" -#: gnu/packages/gnome.scm:9074 +#: gnu/packages/gnome.scm:9088 msgid "" "Tracker is an advanced framework for first class objects with associated\n" "metadata and tags. It provides a one stop solution for all metadata, tags,\n" "shared object databases, search tools and indexing." msgstr "" -#: gnu/packages/gnome.scm:9167 +#: gnu/packages/gnome.scm:9185 msgid "" "Nautilus (Files) is a file manager designed to fit the GNOME desktop\n" "design and behaviour, giving the user a simple way to navigate and manage its\n" "files." msgstr "" -#: gnu/packages/gnome.scm:9201 +#: gnu/packages/gnome.scm:9220 msgid "" "Baobab (Disk Usage Analyzer) is a graphical application to analyse disk\n" "usage in the GNOME desktop environment. It can easily scan device volumes or\n" @@ -6733,7 +6854,7 @@ msgid "" "is complete it provides a graphical representation of each selected folder." msgstr "" -#: gnu/packages/gnome.scm:9227 +#: gnu/packages/gnome.scm:9245 msgid "" "GNOME backgrounds package contains a collection of graphics files which\n" "can be used as backgrounds in the GNOME Desktop environment. Additionally,\n" @@ -6741,21 +6862,21 @@ msgid "" "can add your own files to the collection." msgstr "" -#: gnu/packages/gnome.scm:9272 +#: gnu/packages/gnome.scm:9290 msgid "" "GNOME Screenshot is a utility used for taking screenshots of the entire\n" "screen, a window or a user defined area of the screen, with optional\n" "beautifying border effects." msgstr "" -#: gnu/packages/gnome.scm:9304 +#: gnu/packages/gnome.scm:9320 msgid "" "Dconf-editor is a graphical tool for browsing and editing the dconf\n" "configuration system for GNOME. It allows users to configure desktop\n" "software that do not provide their own configuration interface." msgstr "" -#: gnu/packages/gnome.scm:9334 +#: gnu/packages/gnome.scm:9350 msgid "" "Given many installed packages which might handle a given MIME type, a\n" "user running the GNOME desktop probably has some preferences: for example,\n" @@ -6764,32 +6885,32 @@ msgid "" "associations for GNOME." msgstr "" -#: gnu/packages/gnome.scm:9366 +#: gnu/packages/gnome.scm:9382 msgid "GoVirt is a GObject wrapper for the oVirt REST API." msgstr "" -#: gnu/packages/gnome.scm:9424 +#: gnu/packages/gnome.scm:9439 msgid "" "GNOME Weather is a small application that allows you to\n" "monitor the current weather conditions for your city, or anywhere in the\n" "world." msgstr "" -#: gnu/packages/gnome.scm:9528 +#: gnu/packages/gnome.scm:9543 msgid "" "GNOME is the graphical desktop for GNU. It includes a wide variety of\n" "applications for browsing the web, editing text and images, creating\n" "documents and diagrams, playing media, scanning, and much more." msgstr "" -#: gnu/packages/gnome.scm:9574 +#: gnu/packages/gnome.scm:9589 msgid "" "Byzanz is a simple desktop recording program with a\n" "command-line interface. It can record part or all of an X display for a\n" "specified duration and save it as a GIF encoded animated image file." msgstr "" -#: gnu/packages/gnome.scm:9634 +#: gnu/packages/gnome.scm:9651 msgid "" "Authenticator is a two-factor authentication (2FA) application built for\n" "the GNOME desktop environment.\n" @@ -6806,44 +6927,44 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/gnome.scm:9669 +#: gnu/packages/gnome.scm:9686 msgid "" "GSound is a small library for playing system sounds. It's designed to be\n" "used via GObject Introspection, and is a thin wrapper around the libcanberra C\n" "library." msgstr "" -#: gnu/packages/gnome.scm:9694 +#: gnu/packages/gnome.scm:9711 msgid "" "Libzapojit is a GLib-based library for accessing online service APIs of\n" "Microsoft SkyDrive and Hotmail, using their REST protocols." msgstr "" -#: gnu/packages/gnome.scm:9739 +#: gnu/packages/gnome.scm:9756 msgid "" "GNOME Clocks is a simple clocks application designed to fit the GNOME\n" "desktop. It supports world clock, stop watch, alarms, and count down timer." msgstr "" -#: gnu/packages/gnome.scm:9787 +#: gnu/packages/gnome.scm:9803 msgid "" "GNOME Calendar is a simple calendar application designed to fit the GNOME\n" "desktop. It supports multiple calendars, month, week and year view." msgstr "" -#: gnu/packages/gnome.scm:9838 +#: gnu/packages/gnome.scm:9860 msgid "" -"GNOME To Do is a simplistic personal task manager designed to perfectly\n" -"fit the GNOME desktop." +"GNOME To Do is a simplistic personal task manager designed\n" +"to perfectly fit the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:9877 +#: gnu/packages/gnome.scm:9899 msgid "" "GNOME Dictionary can look for the definition or translation of a word in\n" "existing databases over the internet." msgstr "" -#: gnu/packages/gnome.scm:9943 +#: gnu/packages/gnome.scm:9964 msgid "" "GNOME Tweaks allows adjusting advanced configuration settings in\n" "GNOME 3. This includes things like the fonts used in user interface elements,\n" @@ -6851,13 +6972,13 @@ msgid "" "GNOME Shell appearance and extension, etc." msgstr "" -#: gnu/packages/gnome.scm:9971 +#: gnu/packages/gnome.scm:9992 msgid "" "GNOME Shell extensions modify and extend GNOME Shell\n" "functionality and behavior." msgstr "" -#: gnu/packages/gnome.scm:10015 +#: gnu/packages/gnome.scm:10036 msgid "" "Libfolks is a library that aggregates information about people\n" "from multiple sources (e.g., Telepathy connection managers for IM contacts,\n" @@ -6866,19 +6987,19 @@ msgid "" "compiled." msgstr "" -#: gnu/packages/gnome.scm:10056 +#: gnu/packages/gnome.scm:10077 msgid "" "This library allows you to use the Facebook API from\n" "GLib/GObject code." msgstr "" -#: gnu/packages/gnome.scm:10083 +#: gnu/packages/gnome.scm:10104 msgid "" "Libgnomekbd is a keyboard configuration library for the GNOME desktop\n" "environment, which can notably display keyboard layouts." msgstr "" -#: gnu/packages/gnome.scm:10119 +#: gnu/packages/gnome.scm:10140 msgid "" "Libunique is a library for writing single instance applications. If you\n" "launch a single instance application twice, the second instance will either just\n" @@ -6888,20 +7009,20 @@ msgid "" "handling the startup notification side." msgstr "" -#: gnu/packages/gnome.scm:10168 +#: gnu/packages/gnome.scm:10190 msgid "" "Calculator is an application that solves mathematical equations and\n" "is suitable as a default application in a Desktop environment." msgstr "" -#: gnu/packages/gnome.scm:10194 +#: gnu/packages/gnome.scm:10216 msgid "" "Xpad is a sticky note that strives to be simple, fault tolerant,\n" "and customizable. Xpad consists of independent pad windows, each is\n" "basically a text box in which notes can be written." msgstr "" -#: gnu/packages/gnome.scm:10267 +#: gnu/packages/gnome.scm:10289 msgid "" "This program allows you to browse through all the available Unicode\n" "characters and categories for the installed fonts, and to examine their\n" @@ -6909,20 +7030,20 @@ msgid "" "only know by its Unicode name or code point." msgstr "" -#: gnu/packages/gnome.scm:10299 +#: gnu/packages/gnome.scm:10321 msgid "" "Color Picker is a simple color chooser written in GTK3. It\n" "supports both X and Wayland display servers." msgstr "" -#: gnu/packages/gnome.scm:10322 +#: gnu/packages/gnome.scm:10344 msgid "" "Bluefish is an editor aimed at programmers and web developers,\n" "with many options to write web sites, scripts and other code.\n" "Bluefish supports many programming and markup languages." msgstr "" -#: gnu/packages/gnome.scm:10363 +#: gnu/packages/gnome.scm:10385 msgid "" "GNOME System Monitor is a GNOME process viewer and system monitor with\n" "an attractive, easy-to-use interface. It has features, such as a tree view\n" @@ -6931,27 +7052,27 @@ msgid "" "kill/reinice processes." msgstr "" -#: gnu/packages/gnome.scm:10405 +#: gnu/packages/gnome.scm:10427 msgid "" "This package includes a python client library for the AT-SPI D-Bus\n" "accessibility infrastructure." msgstr "" -#: gnu/packages/gnome.scm:10475 +#: gnu/packages/gnome.scm:10495 msgid "" "Orca is a screen reader that provides access to the graphical desktop\n" "via speech and refreshable braille. Orca works with applications and toolkits\n" "that support the Assistive Technology Service Provider Interface (AT-SPI)." msgstr "" -#: gnu/packages/gnome.scm:10529 +#: gnu/packages/gnome.scm:10549 msgid "" "gspell provides a flexible API to add spell-checking to a GTK+\n" "application. It provides a GObject API, spell-checking to text entries and\n" "text views, and buttons to choose the language." msgstr "" -#: gnu/packages/gnome.scm:10571 +#: gnu/packages/gnome.scm:10591 msgid "" "GNOME Planner is a project management tool based on the Work Breakdown\n" "Structure (WBS). Its goal is to enable you to easily plan projects. Based on\n" @@ -6963,7 +7084,7 @@ msgid "" "views can be printed as PDF or PostScript files, or exported to HTML." msgstr "" -#: gnu/packages/gnome.scm:10644 +#: gnu/packages/gnome.scm:10664 msgid "" "Lollypop is a music player designed to play well with GNOME desktop.\n" "Lollypop plays audio formats such as mp3, mp4, ogg and flac and gets information\n" @@ -6971,26 +7092,26 @@ msgid "" "automatically and it can stream songs from online music services and charts." msgstr "" -#: gnu/packages/gnome.scm:10668 +#: gnu/packages/gnome.scm:10688 msgid "" "A collection of GStreamer video filters and effects to be used in\n" "photo-booth-like software, such as Cheese." msgstr "" -#: gnu/packages/gnome.scm:10747 +#: gnu/packages/gnome.scm:10766 msgid "" "Cheese uses your webcam to take photos and videos. Cheese can also\n" "apply fancy special effects and lets you share the fun with others." msgstr "" -#: gnu/packages/gnome.scm:10801 +#: gnu/packages/gnome.scm:10820 msgid "" "Password Safe is a password manager which makes use of the KeePass v4\n" "format. It integrates perfectly with the GNOME desktop and provides an easy\n" "and uncluttered interface for the management of password databases." msgstr "" -#: gnu/packages/gnome.scm:10836 +#: gnu/packages/gnome.scm:10855 msgid "" "Sound Juicer extracts audio from compact discs and convert it\n" "into audio files that a personal computer or digital audio player can play.\n" @@ -6998,27 +7119,27 @@ msgid "" "mp3, Ogg Vorbis and FLAC" msgstr "" -#: gnu/packages/gnome.scm:10888 +#: gnu/packages/gnome.scm:10907 msgid "" "SoundConverter supports converting between many audio formats including\n" "Opus, Ogg Vorbis, FLAC and more. It supports parallel conversion, and\n" "configurable file renaming." msgstr "" -#: gnu/packages/gnome.scm:10936 +#: gnu/packages/gnome.scm:10955 msgid "" "Workrave is a program that assists in the recovery and prevention of\n" "repetitive strain injury (@dfn{RSI}). The program frequently alerts you to take\n" "micro-pauses and rest breaks, and restricts you to your daily limit." msgstr "" -#: gnu/packages/gnome.scm:10977 +#: gnu/packages/gnome.scm:10996 msgid "" "The GHex program can view and edit files in two ways:\n" "hexadecimal or ASCII. It is useful for editing binary files in general." msgstr "" -#: gnu/packages/gnome.scm:11013 +#: gnu/packages/gnome.scm:11032 msgid "" "The libdazzle library is a companion library to GObject and\n" "Gtk+. It provides various features that the authors wish were in the\n" @@ -7027,40 +7148,40 @@ msgid "" "generic enough to work for everyone." msgstr "" -#: gnu/packages/gnome.scm:11080 +#: gnu/packages/gnome.scm:11099 msgid "" "Evolution is a personal information management application\n" "that provides integrated mail, calendaring and address book\n" "functionality." msgstr "" -#: gnu/packages/gnome.scm:11140 +#: gnu/packages/gnome.scm:11154 msgid "" "GThumb is an image viewer, browser, organizer, editor and\n" "advanced image management tool" msgstr "" -#: gnu/packages/gnome.scm:11213 +#: gnu/packages/gnome.scm:11227 msgid "" "Terminator allows you to run multiple GNOME terminals in a grid and\n" "tabs, and it supports drag and drop re-ordering of terminals." msgstr "" -#: gnu/packages/gnome.scm:11274 +#: gnu/packages/gnome.scm:11288 msgid "" "The aim of the handy library is to help with developing user\n" "interfaces for mobile devices using GTK+. It provides responsive GTK+ widgets\n" "for usage on small and big screens." msgstr "" -#: gnu/packages/gnome.scm:11323 +#: gnu/packages/gnome.scm:11337 msgid "" "libgit2-glib is a GLib wrapper library around the libgit2 Git\n" "access library. It only implements the core plumbing functions, not really the\n" "higher level porcelain stuff." msgstr "" -#: gnu/packages/gnome.scm:11402 +#: gnu/packages/gnome.scm:11415 msgid "" "gitg is a graphical user interface for git. It aims at being a small,\n" "fast and convenient tool to visualize the history of git repositories.\n" @@ -7068,21 +7189,21 @@ msgid "" "repository and commit your work." msgstr "" -#: gnu/packages/gnome.scm:11474 +#: gnu/packages/gnome.scm:11487 msgid "" "Gamin is a file and directory monitoring system defined to be a subset\n" "of the FAM (File Alteration Monitor) system. This is a service provided by a\n" "library which detects when a file or a directory has been modified." msgstr "" -#: gnu/packages/gnome.scm:11508 +#: gnu/packages/gnome.scm:11521 msgid "" "GNOME Mahjongg is a game based on the classic Chinese\n" -"tile-matching game Mahjong. It features multiple board layouts, tile themes,\n" +"tile-matching game Mahjongg. It features multiple board layouts, tile themes,\n" "and a high score table." msgstr "" -#: gnu/packages/gnome.scm:11546 +#: gnu/packages/gnome.scm:11559 msgid "" "This package provides themes and related elements that don't\n" "really fit in other upstream packages. It offers legacy support for GTK+ 2\n" @@ -7090,19 +7211,19 @@ msgid "" "index files needed for Adwaita to be used outside of GNOME." msgstr "" -#: gnu/packages/gnome.scm:11585 +#: gnu/packages/gnome.scm:11605 msgid "" -"Gnote is a note-taking application written for the GNOME desktop\n" -"environment." +"Gnote is a note-taking application written for the GNOME\n" +"desktop environment." msgstr "" -#: gnu/packages/gnome.scm:11647 +#: gnu/packages/gnome.scm:11664 msgid "" "Polari is a simple Internet Relay Chat (IRC) client that is designed to\n" "integrate seamlessly with the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:11706 +#: gnu/packages/gnome.scm:11723 msgid "" "GNOME Boxes is a simple application to view, access, and\n" "manage remote and virtual systems. Note that this application requires the\n" @@ -7111,7 +7232,7 @@ msgid "" "these services on the Guix System." msgstr "" -#: gnu/packages/gnome.scm:11806 +#: gnu/packages/gnome.scm:11823 msgid "" "Geary collects related messages together into conversations,\n" "making it easy to find and follow your discussions. Full-text and keyword\n" @@ -7123,14 +7244,14 @@ msgid "" "to." msgstr "" -#: gnu/packages/gnome.scm:11851 +#: gnu/packages/gnome.scm:11868 msgid "" "gLabels is a program for creating labels and business cards. It is\n" "designed to work with various laser/ink-jet peel-off label and business\n" "card sheets that you’ll find at most office supply stores." msgstr "" -#: gnu/packages/gnome.scm:11892 +#: gnu/packages/gnome.scm:11909 msgid "" "GNOME LaTeX is a LaTeX editor for the GNOME desktop. It has features\n" "such as build tools, completion of LaTeX commands, structure navigation,\n" @@ -7138,19 +7259,19 @@ msgid "" "and toolbars." msgstr "" -#: gnu/packages/gnome.scm:11951 +#: gnu/packages/gnome.scm:11968 msgid "" "Setzer is a simple yet full-featured LaTeX editor written in Python with\n" "GTK+. It integrates well with the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:12017 +#: gnu/packages/gnome.scm:12034 msgid "" "Apostrophe is a GTK+ based distraction-free Markdown editor.\n" "It uses pandoc as back-end for parsing Markdown." msgstr "" -#: gnu/packages/gnome.scm:12070 +#: gnu/packages/gnome.scm:12088 msgid "" "libratbag provides @command{ratbagd}, a DBus daemon to\n" "configure input devices, mainly gaming mice. The daemon provides a generic\n" @@ -7167,7 +7288,7 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12140 +#: gnu/packages/gnome.scm:12156 msgid "" "Piper is a GTK+ application for configuring gaming mice with\n" "onboard configuration for key bindings via libratbag. Piper requires\n" @@ -7179,14 +7300,14 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12202 +#: gnu/packages/gnome.scm:12218 msgid "" "Parlatype is an audio player for the GNOME desktop\n" "environment. Its main purpose is the manual transcription of spoken\n" "audio files." msgstr "" -#: gnu/packages/gnome.scm:12228 +#: gnu/packages/gnome.scm:12244 msgid "" "Jsonrpc-GLib is a library to communicate with JSON-RPC based\n" "peers in either a synchronous or asynchronous fashion. It also allows\n" @@ -7195,14 +7316,14 @@ msgid "" "host to avoid parser overhead and memory-allocator fragmentation." msgstr "" -#: gnu/packages/gnome.scm:12256 +#: gnu/packages/gnome.scm:12272 msgid "" "Feedbackd provides a DBus daemon to act on events to provide\n" "haptic, visual and audio feedback. It offers the libfeedbackd library and\n" "GObject introspection bindings." msgstr "" -#: gnu/packages/gnome.scm:12305 +#: gnu/packages/gnome.scm:12321 msgid "" "Sysprof performs detailed, accurate, and fast CPU profiling of an entire\n" "GNU/Linux system including the kernel and all user-space applications. This\n" @@ -7212,21 +7333,21 @@ msgid "" "libraries. Applications do not need to be recompiled--or even restarted." msgstr "" -#: gnu/packages/gnome.scm:12388 +#: gnu/packages/gnome.scm:12406 msgid "" -"Builder aims to be an integrated development\n" -"environment (IDE) for writing GNOME-based software. It features fuzzy search,\n" -"auto-completion, a mini code map, documentation browsing, Git integration, an\n" -"integrated profiler via Sysprof, debugging support, and more." +"Builder aims to be an integrated development environment (IDE) for\n" +"writing GNOME-based software. It features fuzzy search, auto-completion,\n" +"a mini code map, documentation browsing, Git integration, an integrated\n" +"profiler via Sysprof, debugging support, and more." msgstr "" -#: gnu/packages/gnome.scm:12461 +#: gnu/packages/gnome.scm:12480 msgid "" "Komikku is an online/offline manga reader for GNOME,\n" "developed with the aim of being used with the Librem 5 phone." msgstr "" -#: gnu/packages/gnome.scm:12545 +#: gnu/packages/gnome.scm:12564 msgid "" "GNU Data Access (GDA) is an attempt to provide uniform access to\n" "different kinds of data sources (databases, information servers, mail spools,\n" @@ -7234,7 +7355,7 @@ msgid "" "your data." msgstr "" -#: gnu/packages/gnome.scm:12596 +#: gnu/packages/gnome.scm:12614 msgid "" "gtranslator is a quite comfortable gettext po/po.gz/(g)mo files editor\n" "for the GNOME 3.x platform with many features. It aims to be a very complete\n" @@ -7242,32 +7363,40 @@ msgid "" "world." msgstr "" -#: gnu/packages/gnome.scm:12662 +#: gnu/packages/gnome.scm:12680 msgid "" "OCRFeeder is a complete Optical Character Recognition and\n" "Document Analysis and Recognition program." msgstr "" -#: gnu/packages/gnome.scm:12702 +#: gnu/packages/gnome.scm:12720 msgid "" "@code{libadwaita} offers widgets and objects to build GNOME\n" "applications scaling from desktop workstations to mobile phones. It is the\n" "successor of @code{libhandy} for GTK4." msgstr "" -#: gnu/packages/gnome.scm:12727 +#: gnu/packages/gnome.scm:12745 msgid "" "@code{gnome-power-manager} is a tool for viewing present and\n" "historical battery usage and related statistics." msgstr "" +#: gnu/packages/gnome.scm:12789 +#, fuzzy +#| msgid "" +#| "This package provides a dictionary for the Hunspell spell-checking\n" +#| "library." +msgid "This package provides a graphical file manager." +msgstr "Dit pakket stelt een woordenboe ter beschikking voor de spellingscontroleur Hunspell." + #: gnu/packages/gnuzilla.scm:155 msgid "" "SpiderMonkey is Mozilla's JavaScript engine written\n" "in C/C++." msgstr "" -#: gnu/packages/gnuzilla.scm:1314 +#: gnu/packages/gnuzilla.scm:1315 msgid "" "IceCat is the GNU version of the Firefox browser. It is entirely free\n" "software, which does not recommend non-free plugins and addons. It also\n" @@ -7280,19 +7409,19 @@ msgid "" "standards of the IceCat project." msgstr "" -#: gnu/packages/gnuzilla.scm:1642 +#: gnu/packages/gnuzilla.scm:1648 msgid "" "This package provides an email client built based on Mozilla\n" "Thunderbird. It supports email, news feeds, chat, calendar and contacts." msgstr "" -#: gnu/packages/gnuzilla.scm:1717 +#: gnu/packages/gnuzilla.scm:1723 msgid "" "Firefox Decrypt is a tool to extract passwords from\n" "Mozilla (Firefox, Waterfox, Thunderbird, SeaMonkey) profiles." msgstr "" -#: gnu/packages/gnuzilla.scm:1754 +#: gnu/packages/gnuzilla.scm:1760 msgid "" "@code{lz4json} is a little utility to unpack lz4json files as generated\n" "by Firefox's bookmark backups and session restore. This is a different format\n" @@ -7306,7 +7435,7 @@ msgid "" "tools have full access to view and control running applications." msgstr "" -#: gnu/packages/gtk.scm:215 +#: gnu/packages/gtk.scm:212 msgid "" "Cairo is a 2D graphics library with support for multiple output\n" "devices. Currently supported output targets include the X Window System (via\n" @@ -7314,24 +7443,24 @@ msgid "" "output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB." msgstr "" -#: gnu/packages/gtk.scm:277 +#: gnu/packages/gtk.scm:274 msgid "HarfBuzz is an OpenType text shaping engine." msgstr "" -#: gnu/packages/gtk.scm:320 +#: gnu/packages/gtk.scm:317 msgid "" "Libdatrie is an implementation of double-array structure for\n" "representing trie. Trie is a kind of digital search tree." msgstr "" -#: gnu/packages/gtk.scm:352 +#: gnu/packages/gtk.scm:349 msgid "" "LibThai is a set of Thai language support routines aimed to\n" "ease developers’ tasks to incorporate Thai language support in their\n" "applications." msgstr "" -#: gnu/packages/gtk.scm:407 +#: gnu/packages/gtk.scm:404 msgid "" "Pango is a library for laying out and rendering of text, with\n" "an emphasis on internationalization. Pango can be used anywhere that text\n" @@ -7340,21 +7469,21 @@ msgid "" "handling for GTK+-2.x." msgstr "" -#: gnu/packages/gtk.scm:461 +#: gnu/packages/gtk.scm:458 msgid "" "Pangox was a X backend to pango. It is now obsolete and no\n" "longer provided by recent pango releases. pangox-compat provides the\n" "functions which were removed." msgstr "" -#: gnu/packages/gtk.scm:498 +#: gnu/packages/gtk.scm:495 msgid "" "Ganv is an interactive GTK+ widget for interactive “boxes and lines” or\n" "graph-like environments, e.g. modular synths or finite state machine\n" "diagrams." msgstr "" -#: gnu/packages/gtk.scm:554 +#: gnu/packages/gtk.scm:551 msgid "" "GtkSourceView is a portable C library that extends the standard GTK+\n" "framework for multiline text editing with support for configurable syntax\n" @@ -7362,33 +7491,33 @@ msgid "" "printing and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:602 +#: gnu/packages/gtk.scm:599 msgid "" "GtkSourceView is a text widget that extends the standard\n" "GTK+ text widget GtkTextView. It improves GtkTextView by implementing syntax\n" "highlighting and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:698 +#: gnu/packages/gtk.scm:695 msgid "" "GdkPixbuf is a library that loads image data in various\n" "formats and stores it as linear buffers in memory. The buffers can then be\n" "scaled, composited, modified, saved, or rendered." msgstr "" -#: gnu/packages/gtk.scm:746 +#: gnu/packages/gtk.scm:743 msgid "" "The Assistive Technology Service Provider Interface, core components,\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:827 +#: gnu/packages/gtk.scm:824 msgid "" "The Assistive Technology Service Provider Interface\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:921 +#: gnu/packages/gtk.scm:918 msgid "" "GTK+, or the GIMP Toolkit, is a multi-platform toolkit for creating\n" "graphical user interfaces. Offering a complete set of widgets, GTK+ is\n" @@ -7396,14 +7525,14 @@ msgid "" "application suites." msgstr "" -#: gnu/packages/gtk.scm:1234 +#: gnu/packages/gtk.scm:1238 msgid "" "GTK is a multi-platform toolkit for creating graphical user\n" "interfaces. Offering a complete set of widgets, GTK is suitable for projects\n" "ranging from small one-off tools to complete application suites." msgstr "" -#: gnu/packages/gtk.scm:1308 +#: gnu/packages/gtk.scm:1312 msgid "" "Guile-Cairo wraps the Cairo graphics library for Guile Scheme.\n" "Guile-Cairo is complete, wrapping almost all of the Cairo API. It is API\n" @@ -7413,13 +7542,13 @@ msgid "" "exceptions, macros, and a dynamic programming environment." msgstr "" -#: gnu/packages/gtk.scm:1389 +#: gnu/packages/gtk.scm:1393 msgid "" "Guile-RSVG wraps the RSVG library for Guile, allowing you to render SVG\n" "images onto Cairo surfaces." msgstr "" -#: gnu/packages/gtk.scm:1456 +#: gnu/packages/gtk.scm:1460 msgid "" "Guile-Present defines a declarative vocabulary for presentations,\n" "together with tools to render presentation documents as SVG or PDF.\n" @@ -7428,29 +7557,29 @@ msgid "" "documents." msgstr "" -#: gnu/packages/gtk.scm:1522 +#: gnu/packages/gtk.scm:1526 msgid "" "Includes guile-clutter, guile-gnome-gstreamer,\n" "guile-gnome-platform (GNOME developer libraries), and guile-gtksourceview." msgstr "" -#: gnu/packages/gtk.scm:1578 +#: gnu/packages/gtk.scm:1582 msgid "" "Cairomm provides a C++ programming interface to the Cairo 2D graphics\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1642 +#: gnu/packages/gtk.scm:1647 msgid "" "Pangomm provides a C++ programming interface to the Pango text rendering\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1704 +#: gnu/packages/gtk.scm:1709 msgid "ATKmm is the C++ binding for the ATK library." msgstr "" -#: gnu/packages/gtk.scm:1784 +#: gnu/packages/gtk.scm:1790 msgid "" "GTKmm is the official C++ interface for the popular GUI\n" "library GTK+. Highlights include typesafe callbacks, and a comprehensive set\n" @@ -7679,7 +7808,7 @@ msgid "" "excellent pavucontrol." msgstr "" -#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:238 +#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:241 msgid "" "Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" "official extension language of the GNU system. It is an implementation of\n" @@ -7691,14 +7820,14 @@ msgstr "" "worden in andere toepassingen om een praktische manier aan te bieden voor het uitbreiden\n" "van de functionaliteit van een toepassing, zonder te vereisen dat de hele broncode herschreven moet worden." -#: gnu/packages/guile.scm:502 +#: gnu/packages/guile.scm:506 msgid "" "This module provides line editing support via the Readline library for\n" "GNU@tie{}Guile. Use the @code{(ice-9 readline)} module and call its\n" "@code{activate-readline} procedure to enable it." msgstr "" -#: gnu/packages/guile.scm:604 +#: gnu/packages/guile.scm:608 msgid "" "Guile-JSON supports parsing and building JSON documents according to the\n" "specification. These are the main features:\n" @@ -7711,17 +7840,17 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/guile.scm:701 +#: gnu/packages/guile.scm:705 msgid "" "Guile bindings to the GDBM key-value storage system, using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:730 +#: gnu/packages/guile.scm:734 msgid "This package provides Guile bindings to the SQLite database system." msgstr "" -#: gnu/packages/guile.scm:769 +#: gnu/packages/guile.scm:773 msgid "" "Guile bytestructures offers a system imitating the type system\n" "of the C programming language, to be used on bytevectors. C's type\n" @@ -7730,13 +7859,13 @@ msgid "" "type system, elevating types to first-class status." msgstr "" -#: gnu/packages/guile.scm:810 +#: gnu/packages/guile.scm:814 msgid "" "This package provides Guile bindings to libgit2, a library to\n" "manipulate repositories of the Git version control system." msgstr "" -#: gnu/packages/guile.scm:846 +#: gnu/packages/guile.scm:850 msgid "" "This package provides Guile bindings for zlib, a lossless\n" "data-compression library. The bindings are written in pure Scheme by using\n" @@ -7746,14 +7875,14 @@ msgstr "" "voor verliesloze datacompressie. De bindsels zijn geschreven in puur Scheme door\n" "gebruik te maken van Guile's ‘foreign function interface’." -#: gnu/packages/guile.scm:877 +#: gnu/packages/guile.scm:881 msgid "" "This package provides Guile bindings for lzlib, a C library for\n" "in-memory LZMA compression and decompression. The bindings are written in\n" "pure Scheme by using Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:904 +#: gnu/packages/guile.scm:908 msgid "" "This package provides a GNU Guile interface to the zstd (``zstandard'')\n" "compression library." @@ -7761,7 +7890,7 @@ msgstr "" "Dit pakket voorziet een GNU Guile-interface voor de zstd-compressiebibliotheek\n" "(‘zstandard’)." -#: gnu/packages/guile.scm:926 +#: gnu/packages/guile.scm:930 msgid "" "Guile-LZMA is a Guile wrapper for the liblzma (XZ)\n" "library. It exposes an interface similar to other Guile compression\n" @@ -8348,7 +8477,7 @@ msgid "" "It supports JPEG, PNG and GIF formats." msgstr "" -#: gnu/packages/image-viewers.scm:640 +#: gnu/packages/image-viewers.scm:643 msgid "" "Luminance HDR (formerly QtPFSGui) is a graphical user interface\n" "application that aims to provide a workflow for high dynamic range (HDR)\n" @@ -8364,7 +8493,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:735 +#: gnu/packages/image-viewers.scm:738 msgid "" "MComix is a customizable image viewer that specializes as\n" "a comic and manga reader. It supports a variety of container formats\n" @@ -8373,7 +8502,7 @@ msgid "" "For PDF support, install the @emph{mupdf} package." msgstr "" -#: gnu/packages/image-viewers.scm:775 +#: gnu/packages/image-viewers.scm:778 msgid "" "qView is a Qt image viewer designed with visually\n" "minimalism and usability in mind. Its features include animated GIF\n" @@ -8381,14 +8510,14 @@ msgid "" "preloading." msgstr "" -#: gnu/packages/image-viewers.scm:799 +#: gnu/packages/image-viewers.scm:802 msgid "" "Chafa is a command-line utility that converts all kinds of images,\n" "including animated GIFs, into ANSI/Unicode character output that can be\n" "displayed in a terminal." msgstr "" -#: gnu/packages/image-viewers.scm:847 +#: gnu/packages/image-viewers.scm:850 msgid "" "@code{imv} is a command line image viewer intended for use\n" "with tiling window managers. Features include:\n" @@ -8410,7 +8539,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:924 +#: gnu/packages/image-viewers.scm:927 msgid "" "Quick Image Viewer is a small and fast GDK/Imlib2 image viewer.\n" "Features include zoom, maxpect, scale down, fullscreen, slideshow, delete,\n" @@ -8419,7 +8548,7 @@ msgid "" "to set X desktop background." msgstr "" -#: gnu/packages/image-viewers.scm:968 +#: gnu/packages/image-viewers.scm:971 msgid "" "pqiv is a GTK-3 based command-line image viewer with a minimal UI.\n" "It is highly customizable, can be fully controlled from scripts, and has\n" @@ -8427,7 +8556,7 @@ msgid "" "archives." msgstr "" -#: gnu/packages/image-viewers.scm:1025 +#: gnu/packages/image-viewers.scm:1028 msgid "" "Nomacs is a simple to use image lounge featuring\n" "semi-transparent widgets that display additional information such as metadata,\n" @@ -8440,7 +8569,7 @@ msgid "" "synchronization of multiple instances." msgstr "" -#: gnu/packages/image-viewers.scm:1070 +#: gnu/packages/image-viewers.scm:1073 msgid "xzgv is a fast image viewer that provides extensive keyboard support." msgstr "" @@ -8703,17 +8832,17 @@ msgid "" "Math for editing mathematics." msgstr "" -#: gnu/packages/linux.scm:604 +#: gnu/packages/linux.scm:625 msgid "Headers of the Linux-Libre kernel." msgstr "" -#: gnu/packages/linux.scm:905 +#: gnu/packages/linux.scm:935 msgid "" "GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.\n" "It has been modified to remove all non-free binary blobs." msgstr "" -#: gnu/packages/linux.scm:1215 +#: gnu/packages/linux.scm:1252 msgid "" "This simple Linux kernel module allows calls from user space to any\n" "@acronym{ACPI, Advanced Configuration and Power Interface} method provided by\n" @@ -8725,7 +8854,7 @@ msgid "" "and should be used with caution, especially on untested models." msgstr "" -#: gnu/packages/linux.scm:1283 +#: gnu/packages/linux.scm:1320 msgid "" "CoreFreq is a CPU monitor that reports low-level processor settings and\n" "performance data with notably high precision by using a loadable Linux kernel\n" @@ -8756,7 +8885,7 @@ msgid "" "@file{README.md} before loading it." msgstr "" -#: gnu/packages/linux.scm:1332 +#: gnu/packages/linux.scm:1369 msgid "" "This is the Linux kernel @acronym{ACPI, Advanced Configuration and Power\n" "Interface} platform driver for the @acronym{EC, Embedded Controller} firmware\n" @@ -8765,13 +8894,13 @@ msgid "" "and the notification, WiFi, and Bluetooth LED." msgstr "" -#: gnu/packages/linux.scm:1375 +#: gnu/packages/linux.scm:1413 msgid "" "This is Realtek's RTL8821CE Linux driver for wireless\n" "network adapters." msgstr "" -#: gnu/packages/linux.scm:1407 +#: gnu/packages/linux.scm:1445 msgid "" "This is Realtek's rtl8812au Linux driver for USB 802.11n wireless\n" "network adapters, modified by the aircrack-ng project to support monitor mode\n" @@ -8779,7 +8908,7 @@ msgid "" "RTL8812AU, RTL8821AU, and RTL8814AU chips." msgstr "" -#: gnu/packages/linux.scm:1431 +#: gnu/packages/linux.scm:1469 msgid "" "The @acronym{VHBA, Virtual SCSI Host Bus Adapter} module is the link\n" "between the CDemu user-space daemon and the kernel Linux. It acts as a\n" @@ -8788,13 +8917,13 @@ msgid "" "emulate optical devices such as DVD and CD-ROM drives." msgstr "" -#: gnu/packages/linux.scm:1460 +#: gnu/packages/linux.scm:1497 msgid "" "The bbswitch module provides a way to toggle the Nvidia\n" "graphics card on Optimus laptops." msgstr "" -#: gnu/packages/linux.scm:1501 +#: gnu/packages/linux.scm:1536 msgid "" "This package provides two Linux kernel drivers, ddcci and\n" "ddcci-backlight, that allows the control of DDC/CI monitors through the sysfs\n" @@ -8804,7 +8933,7 @@ msgid "" "supported under @file{/sys/class/backlight/}." msgstr "" -#: gnu/packages/linux.scm:1528 +#: gnu/packages/linux.scm:1563 msgid "" "This Linux module creates virtual video devices. @acronym{V4L2, Video\n" "for Linux 2} applications will treat these as ordinary video devices but read\n" @@ -8816,7 +8945,7 @@ msgid "" "application by hooking GStreamer into the loopback device." msgstr "" -#: gnu/packages/linux.scm:1569 +#: gnu/packages/linux.scm:1604 msgid "" "This package provides a driver for the XBox One S Wireless controller\n" "and some newer models when connected via Bluetooth. In addition to the included\n" @@ -8824,7 +8953,7 @@ msgid "" "which need to be installed separately." msgstr "" -#: gnu/packages/linux.scm:1622 +#: gnu/packages/linux.scm:1657 msgid "" "A *Free* project to implement OSF's RFC 86.0.\n" "Pluggable authentication modules are small shared object files that can\n" @@ -8832,18 +8961,18 @@ msgid "" "at login. Local and dynamic reconfiguration are its key features." msgstr "" -#: gnu/packages/linux.scm:1683 +#: gnu/packages/linux.scm:1718 msgid "This package provides a PAM interface using @code{ctypes}." msgstr "" -#: gnu/packages/linux.scm:1712 +#: gnu/packages/linux.scm:1747 msgid "" "This package provides a PAM module that hands over your\n" "login password to @code{gpg-agent}. This can be useful if you are using a\n" "GnuPG-based password manager like @code{pass}." msgstr "" -#: gnu/packages/linux.scm:1741 +#: gnu/packages/linux.scm:1776 msgid "" "This package contains utilities for accessing the powercap\n" "Linux kernel feature through sysfs. It includes an implementation for working\n" @@ -8851,7 +8980,7 @@ msgid "" "It provides the commands @code{powercap-info} and @code{powercap-set}." msgstr "" -#: gnu/packages/linux.scm:1772 +#: gnu/packages/linux.scm:1807 msgid "" "Powerstat measures and reports your computer's power consumption in real\n" "time. On mobile PCs, it uses ACPI battery information to measure the power\n" @@ -8868,28 +8997,28 @@ msgid "" "deviation, and minimum and maximum values. It can show a nice histogram too." msgstr "" -#: gnu/packages/linux.scm:1810 +#: gnu/packages/linux.scm:1845 msgid "" "This PSmisc package is a set of some small useful utilities that\n" "use the proc file system. We're not about changing the world, but\n" "providing the system administrator with some help in common tasks." msgstr "" -#: gnu/packages/linux.scm:1948 +#: gnu/packages/linux.scm:1984 msgid "" "Util-linux is a diverse collection of Linux kernel\n" "utilities. It provides dmesg and includes tools for working with file systems,\n" "block devices, UUIDs, TTYs, and many other tools." msgstr "" -#: gnu/packages/linux.scm:1986 +#: gnu/packages/linux.scm:2037 msgid "" "ddate displays the Discordian date and holidays of a given date.\n" "The Discordian calendar was made popular by the \"Illuminatus!\" trilogy\n" "by Robert Shea and Robert Anton Wilson." msgstr "" -#: gnu/packages/linux.scm:2040 +#: gnu/packages/linux.scm:2091 msgid "" "The kernel Linux's @dfn{frame buffers} provide a simple interface to\n" "different kinds of graphic displays. The @command{fbset} utility can query and\n" @@ -8897,7 +9026,7 @@ msgid "" "parameters." msgstr "" -#: gnu/packages/linux.scm:2085 +#: gnu/packages/linux.scm:2136 msgid "" "Procps is the package that has a bunch of small useful utilities\n" "that give information about processes using the Linux /proc file system.\n" @@ -8905,11 +9034,11 @@ msgid "" "slabtop, tload, top, vmstat, w, watch and sysctl." msgstr "" -#: gnu/packages/linux.scm:2130 +#: gnu/packages/linux.scm:2181 msgid "Tools for working with USB devices, such as lsusb." msgstr "" -#: gnu/packages/linux.scm:2154 +#: gnu/packages/linux.scm:2205 msgid "" "The USB/IP protocol enables to pass USB device from a server to\n" "a client over the network. The server is a machine which shares an\n" @@ -8922,23 +9051,23 @@ msgid "" "module." msgstr "" -#: gnu/packages/linux.scm:2237 +#: gnu/packages/linux.scm:2288 msgid "This package provides tools for manipulating ext2/ext3/ext4 file systems." msgstr "" -#: gnu/packages/linux.scm:2279 +#: gnu/packages/linux.scm:2330 msgid "" "This package provides statically-linked e2fsck command taken\n" "from the e2fsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:2302 +#: gnu/packages/linux.scm:2353 msgid "" "Extundelete is a set of tools that can recover deleted files from an\n" "ext3 or ext4 partition." msgstr "" -#: gnu/packages/linux.scm:2335 +#: gnu/packages/linux.scm:2386 msgid "" "Zerofree finds the unallocated blocks with non-zero value content in an\n" "ext2, ext3, or ext4 file system and fills them with zeroes (or another value).\n" @@ -8946,39 +9075,39 @@ msgid "" "Zerofree requires the file system to be unmounted or mounted read-only." msgstr "" -#: gnu/packages/linux.scm:2380 +#: gnu/packages/linux.scm:2431 msgid "" "strace is a system call tracer, i.e. a debugging tool which prints out a\n" "trace of all the system calls made by a another process/program." msgstr "" -#: gnu/packages/linux.scm:2403 +#: gnu/packages/linux.scm:2454 msgid "" "ltrace intercepts and records dynamic library calls which are called by\n" "an executed process and the signals received by that process. It can also\n" "intercept and print the system calls executed by the program." msgstr "" -#: gnu/packages/linux.scm:2428 +#: gnu/packages/linux.scm:2479 msgid "" "This package contains Advanced Linux Sound Architecture Use Case Manager\n" "configuration of audio input/output names and routing for specific audio\n" "hardware." msgstr "" -#: gnu/packages/linux.scm:2452 +#: gnu/packages/linux.scm:2503 msgid "" "This package contains Advanced Linux Sound Architecture topology\n" "configuration files that can be used for specific audio hardware." msgstr "" -#: gnu/packages/linux.scm:2499 gnu/packages/linux.scm:2548 +#: gnu/packages/linux.scm:2550 gnu/packages/linux.scm:2599 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system." msgstr "" -#: gnu/packages/linux.scm:2617 +#: gnu/packages/linux.scm:2668 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system. This package enhances ALSA\n" @@ -8987,7 +9116,7 @@ msgid "" "external rate conversion." msgstr "" -#: gnu/packages/linux.scm:2655 +#: gnu/packages/linux.scm:2706 msgid "" "@command{iptables} is the user-space command line program used to\n" "configure the Linux 2.4.x and later IPv4 packet filtering ruleset\n" @@ -8999,7 +9128,7 @@ msgid "" "Both commands are targeted at system administrators." msgstr "" -#: gnu/packages/linux.scm:2691 +#: gnu/packages/linux.scm:2742 msgid "" "This simple daemon feeds entropy from the CPU Jitter @acronym{RNG, random\n" "number generator} core to the kernel Linux's entropy estimator. This prevents\n" @@ -9021,7 +9150,7 @@ msgid "" "early boot when entropy may be low, especially in virtualised environments." msgstr "" -#: gnu/packages/linux.scm:2727 +#: gnu/packages/linux.scm:2778 msgid "" "@command{lsscsi} lists SCSI logical units or SCSI targets. It can\n" "also list NVMe namespaces or controllers and show the relationship between a\n" @@ -9029,7 +9158,7 @@ msgid "" "name." msgstr "" -#: gnu/packages/linux.scm:2751 +#: gnu/packages/linux.scm:2802 msgid "" "ebtables is an application program used to set up and maintain the\n" "tables of rules (inside the Linux kernel) that inspect Ethernet frames. It is\n" @@ -9037,7 +9166,7 @@ msgid "" "that the Ethernet protocol is much simpler than the IP protocol." msgstr "" -#: gnu/packages/linux.scm:2816 +#: gnu/packages/linux.scm:2867 msgid "" "Iproute2 is a collection of utilities for controlling TCP/IP networking\n" "and traffic with the Linux kernel. The most important of these are\n" @@ -9049,7 +9178,7 @@ msgid "" "inadequately in modern network environments, and both should be deprecated." msgstr "" -#: gnu/packages/linux.scm:2896 +#: gnu/packages/linux.scm:2947 msgid "" "This package includes the important tools for controlling the network\n" "subsystem of the Linux kernel. This includes arp, ifconfig, netstat, rarp and\n" @@ -9058,13 +9187,13 @@ msgid "" "configuration (iptunnel, ipmaddr)." msgstr "" -#: gnu/packages/linux.scm:2947 +#: gnu/packages/linux.scm:2989 msgid "" "Libcap2 provides a programming interface to POSIX capabilities on\n" "Linux-based operating systems." msgstr "" -#: gnu/packages/linux.scm:2974 +#: gnu/packages/linux.scm:3016 msgid "" "Utilities for Linux's Ethernet bridging facilities. A bridge is a way\n" "to connect two Ethernet segments together in a protocol independent way.\n" @@ -9073,7 +9202,7 @@ msgid "" "transparently through a bridge." msgstr "" -#: gnu/packages/linux.scm:3025 +#: gnu/packages/linux.scm:3067 msgid "" "The libnl suite is a collection of libraries providing APIs to netlink\n" "protocol based Linux kernel interfaces. Netlink is an IPC mechanism primarily\n" @@ -9082,13 +9211,13 @@ msgid "" "configuration and monitoring interfaces." msgstr "" -#: gnu/packages/linux.scm:3099 +#: gnu/packages/linux.scm:3141 msgid "" "iw is a new nl80211 based CLI configuration utility for wireless\n" "devices. It replaces @code{iwconfig}, which is deprecated." msgstr "" -#: gnu/packages/linux.scm:3149 +#: gnu/packages/linux.scm:3191 msgid "" "PowerTOP is a Linux tool to diagnose issues with power consumption and\n" "power management. In addition to being a diagnostic tool, PowerTOP also has\n" @@ -9097,19 +9226,19 @@ msgid "" "settings." msgstr "" -#: gnu/packages/linux.scm:3176 +#: gnu/packages/linux.scm:3218 msgid "" "Aumix adjusts an audio mixer from X, the console, a terminal,\n" "the command line or a script." msgstr "" -#: gnu/packages/linux.scm:3207 +#: gnu/packages/linux.scm:3249 msgid "" "Iotop is a Python program with a top like user interface to show the\n" "processes currently causing I/O." msgstr "" -#: gnu/packages/linux.scm:3265 +#: gnu/packages/linux.scm:3307 msgid "" "As a consequence of its monolithic design, file system code for Linux\n" "normally goes into the kernel itself---which is not only a robustness issue,\n" @@ -9119,7 +9248,7 @@ msgid "" "user-space processes." msgstr "" -#: gnu/packages/linux.scm:3358 +#: gnu/packages/linux.scm:3400 msgid "" "UnionFS-FUSE is a flexible union file system implementation in user\n" "space, using the FUSE library. Mounting a union file system allows you to\n" @@ -9127,7 +9256,7 @@ msgid "" "UnionFS-FUSE additionally supports copy-on-write." msgstr "" -#: gnu/packages/linux.scm:3437 +#: gnu/packages/linux.scm:3479 msgid "" "This is a file system client based on the SSH File Transfer Protocol.\n" "Since most SSH servers already support this protocol it is very easy to set\n" @@ -9135,7 +9264,7 @@ msgid "" "file system is as easy as logging into the server with an SSH client." msgstr "" -#: gnu/packages/linux.scm:3464 +#: gnu/packages/linux.scm:3506 msgid "" "archivemount is a FUSE-based file system for Unix variants,\n" "including Linux. Its purpose is to mount archives (i.e. tar, tar.gz, etc.) to a\n" @@ -9144,7 +9273,7 @@ msgid "" "compressed, transparent to other programs, without decompressing them." msgstr "" -#: gnu/packages/linux.scm:3495 +#: gnu/packages/linux.scm:3537 msgid "" "NUMA stands for Non-Uniform Memory Access, in other words a system whose\n" "memory is not all in one place. The @command{numactl} program allows you to\n" @@ -9157,26 +9286,26 @@ msgid "" "NUMA performance on your system." msgstr "" -#: gnu/packages/linux.scm:3533 +#: gnu/packages/linux.scm:3575 msgid "" "Kbd-neo provides the Neo2 keyboard layout for use with\n" "@command{loadkeys(1)} from @code{kbd(4)}." msgstr "" -#: gnu/packages/linux.scm:3599 +#: gnu/packages/linux.scm:3641 msgid "" "This package contains keytable files and keyboard utilities compatible\n" "for systems using the Linux kernel. This includes commands such as\n" "@code{loadkeys}, @code{setfont}, @code{kbdinfo}, and @code{chvt}." msgstr "" -#: gnu/packages/linux.scm:3662 +#: gnu/packages/linux.scm:3704 msgid "" "The inotify-tools packages provides a C library and command-line tools\n" "to use Linux' inotify mechanism, which allows file accesses to be monitored." msgstr "" -#: gnu/packages/linux.scm:3714 +#: gnu/packages/linux.scm:3756 msgid "" "Kmod is a set of tools to handle common tasks with Linux\n" "kernel modules like insert, remove, list, check properties, resolve\n" @@ -9187,21 +9316,21 @@ msgid "" "from the module-init-tools project." msgstr "" -#: gnu/packages/linux.scm:3769 +#: gnu/packages/linux.scm:3812 msgid "" "Early OOM is a minimalist out of memory (OOM) daemon that\n" "runs in user space and provides a more responsive and configurable alternative\n" "to the in-kernel OOM killer." msgstr "" -#: gnu/packages/linux.scm:3867 +#: gnu/packages/linux.scm:3892 msgid "" "Udev is a daemon which dynamically creates and removes\n" "device nodes from /dev/, handles hotplug events and loads drivers at boot\n" "time." msgstr "" -#: gnu/packages/linux.scm:3897 +#: gnu/packages/linux.scm:3922 msgid "" "Python-evdev provides bindings to the generic input event interface in\n" "Linux. The @code{evdev} interface serves the purpose of passing events\n" @@ -9213,7 +9342,7 @@ msgid "" "devices that can inject events directly into the input subsystem." msgstr "" -#: gnu/packages/linux.scm:3930 +#: gnu/packages/linux.scm:3955 msgid "" "Interception Tools provides a composable infrastructure on top of\n" "@code{libudev} and @code{libevdev}. The following utilities are provided:\n" @@ -9226,33 +9355,33 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/linux.scm:3979 +#: gnu/packages/linux.scm:4004 msgid "" "Dual Function Keys is a plugin for @code{interception-tools} that allows\n" "one to send arbitrary keycodes when a given key is tapped or held." msgstr "" -#: gnu/packages/linux.scm:4056 +#: gnu/packages/linux.scm:4081 msgid "" "LVM2 is the logical volume management tool set for Linux-based systems.\n" "This package includes the user-space libraries and tools, including the device\n" "mapper. Kernel components are part of Linux-libre." msgstr "" -#: gnu/packages/linux.scm:4122 +#: gnu/packages/linux.scm:4147 msgid "" "A suite of tools for manipulating the metadata of the\n" "dm-thin, dm-cache and dm-era device-mapper targets." msgstr "" -#: gnu/packages/linux.scm:4144 +#: gnu/packages/linux.scm:4169 msgid "" "This package provides an advanced monitor of critical system\n" "resources, supervises the heartbeat of processes, records deadline\n" "transgressions, and initiates a controlled reset if needed." msgstr "" -#: gnu/packages/linux.scm:4189 +#: gnu/packages/linux.scm:4214 msgid "" "Wireless Tools are used to manipulate the now-deprecated\n" "Linux Wireless Extensions; consider using @code{iw} instead. The Wireless\n" @@ -9261,35 +9390,35 @@ msgid "" "interface." msgstr "" -#: gnu/packages/linux.scm:4280 +#: gnu/packages/linux.scm:4305 msgid "" "The Central Regulatory Domain Agent (CRDA) acts as the udev helper for\n" "communication between the kernel Linux and user space for regulatory\n" "compliance." msgstr "" -#: gnu/packages/linux.scm:4350 +#: gnu/packages/linux.scm:4375 msgid "" "This package contains the wireless regulatory database for the Central\n" "Regulatory Database Agent (CRDA). The database contains information on\n" "country-specific regulations for the wireless spectrum." msgstr "" -#: gnu/packages/linux.scm:4424 +#: gnu/packages/linux.scm:4449 msgid "" "Lm-sensors is a hardware health monitoring package for Linux. It allows\n" "you to access information from temperature, voltage, and fan speed sensors.\n" "It works with most newer systems." msgstr "" -#: gnu/packages/linux.scm:4444 +#: gnu/packages/linux.scm:4469 msgid "" "@command{iucode_tool} is a utility to work with microcode packages for\n" "Intel processors. It can convert between formats, extract specific versions,\n" "create a firmware image suitable for the Linux kernel, and more." msgstr "" -#: gnu/packages/linux.scm:4475 +#: gnu/packages/linux.scm:4501 msgid "" "The i2c-tools package contains a heterogeneous set of I2C tools for\n" "Linux: a bus probing tool, a chip dumper, register-level SMBus access helpers,\n" @@ -9297,14 +9426,14 @@ msgid "" "SMBus access." msgstr "" -#: gnu/packages/linux.scm:4514 +#: gnu/packages/linux.scm:4540 msgid "" "Xsensors reads data from the libsensors library regarding hardware\n" "health such as temperature, voltage and fan speed and displays the information\n" "in a digital read-out." msgstr "" -#: gnu/packages/linux.scm:4568 +#: gnu/packages/linux.scm:4600 msgid "" "perf is a tool suite for profiling using hardware performance counters,\n" "with support in the Linux kernel. perf can instrument CPU performance\n" @@ -9313,7 +9442,7 @@ msgid "" "particular the @code{perf} command." msgstr "" -#: gnu/packages/linux.scm:4593 +#: gnu/packages/linux.scm:4625 msgid "" "pflask is a simple tool for creating Linux namespace\n" "containers. It can be used for running a command or even booting an OS inside\n" @@ -9322,7 +9451,7 @@ msgid "" "thanks to the use of namespaces." msgstr "" -#: gnu/packages/linux.scm:4678 +#: gnu/packages/linux.scm:4710 msgid "" "Singularity is a container platform supporting a number of\n" "container image formats. It can build SquashFS container images or import\n" @@ -9330,7 +9459,7 @@ msgid "" "isolation or root privileges." msgstr "" -#: gnu/packages/linux.scm:4711 +#: gnu/packages/linux.scm:4742 msgid "" "@command{hdparm} is a command-line utility to control ATA controllers and\n" "disk drives. It can increase performance and/or reliability by careful tuning\n" @@ -9344,21 +9473,21 @@ msgid "" "Translation (@dfn{SAT}) are also supported." msgstr "" -#: gnu/packages/linux.scm:4750 +#: gnu/packages/linux.scm:4782 msgid "" "Nvme-cli is a utility to provide standards compliant tooling\n" "for NVM-Express drives. It was made specifically for Linux as it relies on the\n" "IOCTLs defined by the mainline kernel driver." msgstr "" -#: gnu/packages/linux.scm:4776 +#: gnu/packages/linux.scm:4808 msgid "" "rfkill is a simple tool for accessing the rfkill device interface,\n" "which is used to enable and disable wireless networking devices, typically\n" "WLAN, Bluetooth and mobile broadband." msgstr "" -#: gnu/packages/linux.scm:4798 +#: gnu/packages/linux.scm:4830 msgid "" "@code{acpi} attempts to replicate the functionality of the\n" "\"old\" @code{apm} command on ACPI systems, including battery and thermal\n" @@ -9366,7 +9495,7 @@ msgid "" "about ACPI devices." msgstr "" -#: gnu/packages/linux.scm:4819 +#: gnu/packages/linux.scm:4851 msgid "" "acpid is designed to notify user-space programs of Advanced\n" "Configuration and Power Interface (ACPI) events. acpid should be started\n" @@ -9375,34 +9504,34 @@ msgid "" "specified in /etc/acpi/events and execute the rules that match the event." msgstr "" -#: gnu/packages/linux.scm:4843 +#: gnu/packages/linux.scm:4875 msgid "" "These are a set of utilities built upon sysfs, a virtual file system in\n" "Linux kernel versions 2.5+ that exposes a system's device tree. The package\n" "also contains the libsysfs library." msgstr "" -#: gnu/packages/linux.scm:4886 +#: gnu/packages/linux.scm:4918 msgid "" "The cpufrequtils suite contains utilities to retrieve CPU frequency\n" "information, and set the CPU frequency if supported, using the cpufreq\n" "capabilities of the Linux kernel." msgstr "" -#: gnu/packages/linux.scm:4922 +#: gnu/packages/linux.scm:4954 msgid "" "This package provides many of the missing pieces in GNU\n" "libc. Most notably the string functions: strlcpy(3), strlcat(3) and the *BSD\n" "sys/queue.h and sys/tree.h API's." msgstr "" -#: gnu/packages/linux.scm:4945 +#: gnu/packages/linux.scm:4977 msgid "" "This package provides small event loop that wraps the\n" "epoll family of APIs." msgstr "" -#: gnu/packages/linux.scm:4966 +#: gnu/packages/linux.scm:4998 msgid "" "Libraw1394 is the only supported interface to the kernel side raw1394 of\n" "the Linux IEEE-1394 subsystem, which provides direct access to the connected\n" @@ -9411,26 +9540,26 @@ msgid "" "protocol in question." msgstr "" -#: gnu/packages/linux.scm:4992 +#: gnu/packages/linux.scm:5024 msgid "" "Libavc1394 is a programming interface to the AV/C specification from\n" "the 1394 Trade Association. AV/C stands for Audio/Video Control." msgstr "" -#: gnu/packages/linux.scm:5016 +#: gnu/packages/linux.scm:5048 msgid "" "The libiec61883 library provides a higher level API for streaming DV,\n" "MPEG-2 and audio over Linux IEEE 1394." msgstr "" -#: gnu/packages/linux.scm:5067 +#: gnu/packages/linux.scm:5099 msgid "" "mdadm is a tool for managing Linux Software RAID arrays. It can create,\n" "assemble, report on, and monitor arrays. It can also move spares between raid\n" "arrays when needed." msgstr "" -#: gnu/packages/linux.scm:5199 +#: gnu/packages/linux.scm:5231 msgid "" "This package provides the following binaries to drive the\n" "Linux Device Mapper multipathing driver:\n" @@ -9443,66 +9572,66 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:5244 +#: gnu/packages/linux.scm:5288 msgid "" "This library enables userspace to use Linux kernel asynchronous I/O\n" "system calls, important for the performance of databases and other advanced\n" "applications." msgstr "" -#: gnu/packages/linux.scm:5287 +#: gnu/packages/linux.scm:5331 msgid "" "Blktrace is a block layer IO tracing mechanism which provides\n" "detailed information about request queue operations to user space. It extracts\n" "event traces from the kernel (via the relaying through the debug file system)." msgstr "" -#: gnu/packages/linux.scm:5312 +#: gnu/packages/linux.scm:5356 msgid "" "The SBC is a digital audio encoder and decoder used to transfer data to\n" "Bluetooth audio output devices like headphones or loudspeakers." msgstr "" -#: gnu/packages/linux.scm:5379 +#: gnu/packages/linux.scm:5423 msgid "" "BlueZ provides support for the core Bluetooth layers and protocols. It\n" "is flexible, efficient and uses a modular implementation." msgstr "" -#: gnu/packages/linux.scm:5403 +#: gnu/packages/linux.scm:5447 msgid "" "This package provides a FUSE-based file system that provides read and\n" "write access to exFAT devices." msgstr "" -#: gnu/packages/linux.scm:5426 +#: gnu/packages/linux.scm:5470 msgid "" "FuseISO is a FUSE module to mount ISO file system images (.iso, .nrg,\n" ".bin, .mdf and .img files). It supports plain ISO9660 Level 1 and 2, Rock\n" "Ridge, Joliet, and zisofs." msgstr "" -#: gnu/packages/linux.scm:5480 +#: gnu/packages/linux.scm:5524 msgid "" "The GPM (general-purpose mouse) daemon is a mouse server for\n" "applications running on the Linux console. It allows users to select items\n" "and copy/paste text in the console and in xterm." msgstr "" -#: gnu/packages/linux.scm:5551 +#: gnu/packages/linux.scm:5595 msgid "" "Btrfs is a @dfn{copy-on-write} (CoW) file system for Linux\n" "aimed at implementing advanced features while focusing on fault tolerance,\n" "repair and easy administration." msgstr "" -#: gnu/packages/linux.scm:5585 +#: gnu/packages/linux.scm:5629 msgid "" "This package provides the statically-linked @command{btrfs}\n" "from the btrfs-progs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5617 +#: gnu/packages/linux.scm:5661 msgid "" "Cramfs is a Linux file system designed to be simple, small,\n" "and to compress things well. It is used on a number of embedded systems and\n" @@ -9510,7 +9639,7 @@ msgid "" "blocks and random block placement." msgstr "" -#: gnu/packages/linux.scm:5652 +#: gnu/packages/linux.scm:5696 msgid "" "@command{compsize} takes a list of files (given as\n" "arguments) on a Btrfs file system and measures used compression types and\n" @@ -9527,20 +9656,20 @@ msgid "" "obviously it can be shared with files outside our set)." msgstr "" -#: gnu/packages/linux.scm:5700 +#: gnu/packages/linux.scm:5744 msgid "" "F2FS, the Flash-Friendly File System, is a modern file system\n" "designed to be fast and durable on flash devices such as solid-state\n" "disks and SD cards. This package provides the userland utilities." msgstr "" -#: gnu/packages/linux.scm:5790 +#: gnu/packages/linux.scm:5834 msgid "" "This package provides statically-linked fsck.f2fs command taken\n" "from the f2fs-tools package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5821 +#: gnu/packages/linux.scm:5865 msgid "" "Prevents shock damage to the internal spinning hard drive(s) of some\n" "HP and Dell laptops. When sudden movement is detected, all input/output\n" @@ -9550,7 +9679,7 @@ msgid "" "feature, and a laptop with an accelerometer. It has no effect on SSDs." msgstr "" -#: gnu/packages/linux.scm:5879 +#: gnu/packages/linux.scm:5923 msgid "" "Thinkfan is a simple fan control program. It reads temperatures,\n" "checks them against configured limits and switches to appropriate (also\n" @@ -9559,7 +9688,7 @@ msgid "" "from userspace." msgstr "" -#: gnu/packages/linux.scm:5935 +#: gnu/packages/linux.scm:5979 msgid "" "Tpacpi-bat is a command-line interface to control battery charging on\n" "@uref{https://github.com/teleshoes/tpacpi-bat/wiki/Supported-Hardware, Lenovo\n" @@ -9574,7 +9703,7 @@ msgid "" "supported." msgstr "" -#: gnu/packages/linux.scm:5979 +#: gnu/packages/linux.scm:6023 msgid "" "Tmon is a tool to interact with the complex thermal subsystem of the\n" "kernel Linux. It helps visualize thermal relationships and real-time thermal\n" @@ -9591,7 +9720,7 @@ msgid "" "by hand is no trivial task: @command{tmon} aims to make it understandable." msgstr "" -#: gnu/packages/linux.scm:6021 +#: gnu/packages/linux.scm:6065 msgid "" "Turbostat reports x86 processor topology, frequency, idle power state\n" "statistics, temperature, and power consumption. Some information is unavailable\n" @@ -9606,20 +9735,20 @@ msgid "" "invocations of itself." msgstr "" -#: gnu/packages/linux.scm:6080 +#: gnu/packages/linux.scm:6124 msgid "" "NTFS-3G provides read-write access to NTFS file systems, which are\n" "commonly found on Microsoft Windows. It is implemented as a FUSE file system.\n" "The package provides additional NTFS tools." msgstr "" -#: gnu/packages/linux.scm:6127 +#: gnu/packages/linux.scm:6171 msgid "" "This package provides a statically linked @command{ntfsfix} taken\n" "from the ntfs-3g package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:6174 +#: gnu/packages/linux.scm:6218 msgid "" "This package provides userspace components for the InfiniBand\n" "subsystem of the Linux kernel. Specifically it contains userspace\n" @@ -9639,7 +9768,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6228 +#: gnu/packages/linux.scm:6272 msgid "" "This is a collection of tests written over uverbs intended for\n" "use as a performance micro-benchmark. The tests may be used for hardware or\n" @@ -9655,20 +9784,20 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6270 +#: gnu/packages/linux.scm:6314 msgid "" "Monitor a hardware random number generator, and supply entropy\n" "from that to the system kernel's @file{/dev/random} machinery." msgstr "" -#: gnu/packages/linux.scm:6312 +#: gnu/packages/linux.scm:6356 msgid "" "cpupower is a set of user-space tools that use the cpufreq feature of the\n" "Linux kernel to retrieve and control processor features related to power saving,\n" "such as frequency and voltage scaling." msgstr "" -#: gnu/packages/linux.scm:6344 +#: gnu/packages/linux.scm:6388 msgid "" "@command{x86_energy_perf_policy} displays and updates energy-performance\n" "policy settings specific to Intel Architecture Processors. Settings are\n" @@ -9676,7 +9805,7 @@ msgid "" "cpufreq sub-system is enabled or not." msgstr "" -#: gnu/packages/linux.scm:6370 +#: gnu/packages/linux.scm:6414 msgid "" "haveged generates an unpredictable stream of random numbers for use by\n" "Linux's @file{/dev/random} and @file{/dev/urandom} devices. The kernel's\n" @@ -9694,7 +9823,7 @@ msgid "" "not as a replacement for it." msgstr "" -#: gnu/packages/linux.scm:6456 +#: gnu/packages/linux.scm:6500 msgid "" "eCryptfs is a POSIX-compliant stacked cryptographic file system for Linux.\n" "Each file's cryptographic meta-data is stored inside the file itself, along\n" @@ -9704,7 +9833,7 @@ msgid "" "2.6.19. This package contains the userland utilities to manage it." msgstr "" -#: gnu/packages/linux.scm:6488 +#: gnu/packages/linux.scm:6532 msgid "" "Libnfsidmap is a library holding mulitiple methods of\n" "mapping names to ids and visa versa, mainly for NFSv4. It provides an\n" @@ -9712,13 +9841,13 @@ msgid "" "the default @code{nsswitch} and the experimental @code{umich_ldap}." msgstr "" -#: gnu/packages/linux.scm:6524 +#: gnu/packages/linux.scm:6568 msgid "" "Tools for loading and managing Linux kernel modules, such as\n" "@code{modprobe}, @code{insmod}, @code{lsmod}, and more." msgstr "" -#: gnu/packages/linux.scm:6565 +#: gnu/packages/linux.scm:6609 msgid "" "The mcelog daemon logs memory, I/O, CPU, and other hardware errors on x86\n" "systems running the kernel Linux. It can also perform user-defined tasks, such\n" @@ -9726,13 +9855,13 @@ msgid "" "exceeded." msgstr "" -#: gnu/packages/linux.scm:6596 +#: gnu/packages/linux.scm:6640 msgid "" "This package provides utilities for testing, partitioning, etc\n" "of flash storage." msgstr "" -#: gnu/packages/linux.scm:6628 +#: gnu/packages/linux.scm:6672 msgid "" "The libseccomp library provides an easy to use, platform\n" "independent, interface to the Linux Kernel's syscall filtering mechanism. The\n" @@ -9742,7 +9871,7 @@ msgid "" "developers." msgstr "" -#: gnu/packages/linux.scm:6671 +#: gnu/packages/linux.scm:6715 msgid "" "RadeonTop monitors resource consumption on supported AMD\n" "Radeon Graphics Processing Units (GPUs), either in real time as bar graphs on\n" @@ -9752,13 +9881,13 @@ msgid "" "under OpenGL graphics workloads." msgstr "" -#: gnu/packages/linux.scm:6718 +#: gnu/packages/linux.scm:6762 msgid "" "This package provides a library and a command line\n" "interface to the variable facility of UEFI boot firmware." msgstr "" -#: gnu/packages/linux.scm:6755 +#: gnu/packages/linux.scm:6799 msgid "" "@code{efibootmgr} is a user-space application to modify the Intel\n" "Extensible Firmware Interface (EFI) Boot Manager. This application can\n" @@ -9766,7 +9895,7 @@ msgid "" "running boot option, and more." msgstr "" -#: gnu/packages/linux.scm:6791 +#: gnu/packages/linux.scm:6835 msgid "" "The sysstat utilities are a collection of performance\n" "monitoring tools for Linux. These include @code{mpstat}, @code{iostat},\n" @@ -9774,7 +9903,7 @@ msgid "" "@code{sadf} and @code{sa}." msgstr "" -#: gnu/packages/linux.scm:6832 +#: gnu/packages/linux.scm:6876 msgid "" "Light is a program to send commands to screen backlight controllers\n" "under GNU/Linux. Features include:\n" @@ -9788,7 +9917,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/linux.scm:6880 +#: gnu/packages/linux.scm:6924 msgid "" "This program allows you read and control device brightness. Devices\n" "include backlight and LEDs. It can also preserve current brightness before\n" @@ -9798,7 +9927,7 @@ msgid "" "interface in sysfs, which can be accomplished with the included udev rules." msgstr "" -#: gnu/packages/linux.scm:7007 +#: gnu/packages/linux.scm:7048 msgid "" "TLP is a power management tool for Linux. It comes with\n" "a default configuration already optimized for battery life. Nevertheless,\n" @@ -9806,7 +9935,7 @@ msgid "" "every time the power supply source is changed." msgstr "" -#: gnu/packages/linux.scm:7073 +#: gnu/packages/linux.scm:7114 msgid "" "The Python scripts in this project generate a GTK-UI to change\n" "TLP configuration files easily. It aims to protect users from setting\n" @@ -9814,7 +9943,7 @@ msgid "" "configuration values." msgstr "" -#: gnu/packages/linux.scm:7099 +#: gnu/packages/linux.scm:7140 msgid "" "@command{lshw} (Hardware Lister) is a small tool to provide\n" "detailed information on the hardware configuration of the machine.\n" @@ -9824,7 +9953,7 @@ msgid "" "machines (PowerMac G4 is known to work)." msgstr "" -#: gnu/packages/linux.scm:7123 +#: gnu/packages/linux.scm:7164 msgid "" "Libmnl is a minimalistic user-space library oriented to\n" "Netlink developers. There are a lot of common tasks in parsing, validating,\n" @@ -9833,7 +9962,7 @@ msgid "" "re-use code and to avoid re-inventing the wheel." msgstr "" -#: gnu/packages/linux.scm:7148 +#: gnu/packages/linux.scm:7189 msgid "" "Libnftnl is a userspace library providing a low-level netlink\n" "programming interface to the in-kernel nf_tables subsystem. The library\n" @@ -9841,7 +9970,7 @@ msgid "" "used by nftables." msgstr "" -#: gnu/packages/linux.scm:7194 +#: gnu/packages/linux.scm:7235 msgid "" "nftables is the project that aims to replace the existing\n" "{ip,ip6,arp,eb}tables framework. Basically, this project provides a new packet\n" @@ -9851,7 +9980,7 @@ msgid "" "userspace queueing component and the logging subsystem." msgstr "" -#: gnu/packages/linux.scm:7336 +#: gnu/packages/linux.scm:7377 msgid "" "PRoot is a user-space implementation of @code{chroot}, @code{mount --bind},\n" "and @code{binfmt_misc}. This means that users don't need any privileges or\n" @@ -9864,7 +9993,7 @@ msgid "" "available in the kernel Linux." msgstr "" -#: gnu/packages/linux.scm:7399 +#: gnu/packages/linux.scm:7437 msgid "" "cpuid dumps detailed information about the CPU(s) gathered\n" "from the CPUID instruction, and also determines the exact model of CPU(s). It\n" @@ -9872,14 +10001,14 @@ msgid "" "NexGen, Rise, and SiS CPUs." msgstr "" -#: gnu/packages/linux.scm:7426 +#: gnu/packages/linux.scm:7464 msgid "" "jmtpfs uses FUSE (file system in userspace) to provide access\n" "to data over the Media Transfer Protocol (MTP). Unprivileged users can mount\n" "the MTP device as a file system." msgstr "" -#: gnu/packages/linux.scm:7453 +#: gnu/packages/linux.scm:7491 msgid "" "Procenv is a command-line tool that displays as much detail about\n" "itself and its environment as possible. It can be used as a test\n" @@ -9887,7 +10016,7 @@ msgid "" "comparing system environments." msgstr "" -#: gnu/packages/linux.scm:7482 +#: gnu/packages/linux.scm:7520 msgid "" "OpenFabrics Interfaces (OFI) is a framework focused on exporting fabric\n" "communication services to applications. OFI is best described as a collection\n" @@ -9901,7 +10030,7 @@ msgid "" "libraries, which are often integrated directly into libfabric." msgstr "" -#: gnu/packages/linux.scm:7544 +#: gnu/packages/linux.scm:7582 msgid "" "The PSM Messaging API, or PSM API, is Intel's low-level user-level\n" "communications interface for the True Scale family of products. PSM users are\n" @@ -9909,14 +10038,14 @@ msgid "" "interfaces in parallel environments." msgstr "" -#: gnu/packages/linux.scm:7587 +#: gnu/packages/linux.scm:7625 msgid "" "snapscreenshot saves a screenshot of one or more Linux text consoles as a\n" "Targa (@dfn{.tga}) image. It can be used by anyone with read access to the\n" "relevant @file{/dev/vcs*} file(s)." msgstr "" -#: gnu/packages/linux.scm:7641 +#: gnu/packages/linux.scm:7679 msgid "" "fbcat saves the contents of the Linux framebuffer (@file{/dev/fb*}), or\n" "a dump therof. It supports a wide range of drivers and pixel formats.\n" @@ -9928,14 +10057,14 @@ msgid "" "emulates the behaviour of Gunnar Monell's older fbgrab utility." msgstr "" -#: gnu/packages/linux.scm:7672 +#: gnu/packages/linux.scm:7710 msgid "" "Control groups is Linux kernel method for process resource\n" "restriction, permission handling and more. This package provides userspace\n" "interface to this kernel feature." msgstr "" -#: gnu/packages/linux.scm:7707 +#: gnu/packages/linux.scm:7745 msgid "" "mbpfan is a fan control daemon for Apple Macbooks. It uses input from\n" "the @code{coretemp} module and sets the fan speed using the @code{applesmc}\n" @@ -9943,7 +10072,7 @@ msgid "" "privileges." msgstr "" -#: gnu/packages/linux.scm:7751 +#: gnu/packages/linux.scm:7789 msgid "" "This package is low-level user-level Intel's communications interface.\n" "The PSM2 API is a high-performance vendor-specific protocol that provides a\n" @@ -9951,7 +10080,7 @@ msgid "" "high-speed networking devices." msgstr "" -#: gnu/packages/linux.scm:7794 +#: gnu/packages/linux.scm:7832 msgid "" "This package provides a library called libpfm4, which is used to develop\n" "monitoring tools exploiting the performance monitoring events such as those\n" @@ -9966,7 +10095,7 @@ msgid "" "introduced in Linux 2.6.31." msgstr "" -#: gnu/packages/linux.scm:7824 +#: gnu/packages/linux.scm:7862 msgid "" "@code{libnfnetlink} is the low-level library for netfilter related\n" "kernel/userspace communication. It provides a generic messaging\n" @@ -9975,7 +10104,7 @@ msgid "" "management tools in userspace." msgstr "" -#: gnu/packages/linux.scm:7851 +#: gnu/packages/linux.scm:7889 msgid "" "The netlink package provides a simple netlink library for\n" "Go. Netlink is the interface a user-space program in Linux uses to\n" @@ -9983,7 +10112,7 @@ msgid "" "IP addresses and routes, and configure IPsec." msgstr "" -#: gnu/packages/linux.scm:7891 +#: gnu/packages/linux.scm:7929 msgid "" "The inih (INI Not Invented Here) library is a simple .INI file\n" "parser written in C. It's only a couple of pages of code, and it was designed to\n" @@ -9992,19 +10121,19 @@ msgid "" "822-style multi-line syntax and name: value entries." msgstr "" -#: gnu/packages/linux.scm:7942 +#: gnu/packages/linux.scm:7980 msgid "" "This package provides commands to create and check XFS\n" "file systems." msgstr "" -#: gnu/packages/linux.scm:7998 +#: gnu/packages/linux.scm:8036 msgid "" "This package provides a statically linked @command{xfs_repair} taken\n" "from the xfsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:8034 +#: gnu/packages/linux.scm:8072 msgid "" "This package provides a program to generate an ext2\n" "file system as a normal (non-root) user. It does not require you to mount\n" @@ -10012,7 +10141,7 @@ msgid "" "the superuser to make device nodes." msgstr "" -#: gnu/packages/linux.scm:8129 +#: gnu/packages/linux.scm:8167 msgid "" "@command{fakeroot} runs a command in an environment where it appears to\n" "have root privileges for file manipulation. This is useful for allowing users\n" @@ -10025,7 +10154,7 @@ msgid "" "without using the archiver." msgstr "" -#: gnu/packages/linux.scm:8169 +#: gnu/packages/linux.scm:8207 msgid "" "@command{fakechroot} runs a command in an environment were is additional\n" "possibility to use @code{chroot} command without root privileges. This is\n" @@ -10036,13 +10165,13 @@ msgid "" "set as @code{LD_PRELOAD} to override the C library file system functions." msgstr "" -#: gnu/packages/linux.scm:8215 +#: gnu/packages/linux.scm:8253 msgid "" "inputattach dispatches input events from several device\n" "types and interfaces and translates so that the X server can use them." msgstr "" -#: gnu/packages/linux.scm:8251 +#: gnu/packages/linux.scm:8289 msgid "" "PipeWire is a project that aims to greatly improve handling of audio and\n" "video under Linux. It aims to support the usecases currently handled by both\n" @@ -10054,7 +10183,7 @@ msgid "" "of Linux application development." msgstr "" -#: gnu/packages/linux.scm:8318 +#: gnu/packages/linux.scm:8356 msgid "" "WirePlumber is a modular session / policy manager for\n" "PipeWire and a GObject-based high-level library that wraps PipeWire's API,\n" @@ -10062,7 +10191,7 @@ msgid "" "tools for managing PipeWire." msgstr "" -#: gnu/packages/linux.scm:8357 +#: gnu/packages/linux.scm:8395 msgid "" "The Embedded Linux* Library (ELL) provides core, low-level\n" "functionality for system daemons. It typically has no dependencies other than\n" @@ -10071,7 +10200,7 @@ msgid "" "platforms, it is not limited to resource-constrained systems." msgstr "" -#: gnu/packages/linux.scm:8386 +#: gnu/packages/linux.scm:8424 msgid "" "This package provides the @code{kexec} program and ancillary\n" "utilities. Using @code{kexec}, it is possible to boot directly into a new\n" @@ -10079,7 +10208,7 @@ msgid "" "system boot process." msgstr "" -#: gnu/packages/linux.scm:8419 +#: gnu/packages/linux.scm:8457 msgid "" "@code{cachefilesd} is a userspace daemon that manages the\n" "cache data store that is used by network file systems such as @code{AFS} and\n" @@ -10087,14 +10216,14 @@ msgid "" "persistent over reboots." msgstr "" -#: gnu/packages/linux.scm:8463 +#: gnu/packages/linux.scm:8501 msgid "" "Libbpf supports building BPF CO-RE-enabled applications, which, in\n" "contrast to BCC, do not require the Clang/LLVM runtime or linux kernel\n" "headers." msgstr "" -#: gnu/packages/linux.scm:8541 +#: gnu/packages/linux.scm:8579 msgid "" "BCC is a toolkit for creating efficient kernel tracing and manipulation\n" "programs, and includes several useful tools and examples. It makes use of\n" @@ -10103,7 +10232,7 @@ msgid "" "and above." msgstr "" -#: gnu/packages/linux.scm:8577 +#: gnu/packages/linux.scm:8615 msgid "" "bpftrace is a high-level tracing language for Linux enhanced Berkeley\n" "Packet Filter (eBPF) available in recent Linux kernels (4.x). bpftrace uses\n" @@ -10115,14 +10244,14 @@ msgid "" "created by Alastair Robertson." msgstr "" -#: gnu/packages/linux.scm:8609 +#: gnu/packages/linux.scm:8647 msgid "" "This package provides a Linux kernel module that will\n" "provide a serial device @code{/dev/ttyebus} with almost no latency upon\n" "receiving. It is dedicated to the PL011 UART of the Raspberry Pi." msgstr "" -#: gnu/packages/linux.scm:8635 +#: gnu/packages/linux.scm:8673 msgid "" "IP sets are a framework inside the Linux 2.4.x and 2.6.x kernel which\n" "can be administered by the ipset utility. Depending on the type,\n" @@ -10143,7 +10272,7 @@ msgid "" "then IP sets may be the proper tool for you." msgstr "" -#: gnu/packages/linux.scm:8682 +#: gnu/packages/linux.scm:8720 msgid "" "This is the io_uring library, liburing. liburing provides\n" "helpers to setup and teardown io_uring instances, and also a simplified\n" @@ -10151,14 +10280,14 @@ msgid "" "kernel side implementation." msgstr "" -#: gnu/packages/linux.scm:8710 +#: gnu/packages/linux.scm:8748 msgid "" "@acronym{EROFS, The Enhanced Read-Only File System} is a compressed,\n" "read-only file system optimized for resource-scarce devices. This package\n" "provides user-space tools for creating EROFS file systems." msgstr "" -#: gnu/packages/linux.scm:8754 +#: gnu/packages/linux.scm:8792 msgid "" "The @code{rasdaemon} daemon monitors platform @acronym{RAS, Reliability\n" "Availability and Serviceability} reports from Linux kernel trace events.\n" @@ -10166,7 +10295,7 @@ msgid "" "through standard log mechanisms like syslog." msgstr "" -#: gnu/packages/linux.scm:8788 +#: gnu/packages/linux.scm:8826 msgid "" "This package provides a C library with C++/Python bindings and\n" "command-line tools for interacting with GPIO devices that avoids the usage of\n" @@ -10192,33 +10321,33 @@ msgid "" "beginning." msgstr "" -#: gnu/packages/messaging.scm:181 +#: gnu/packages/messaging.scm:183 msgid "" "OMEMO-wget is a tool to handle cryptographic URLs, generated\n" "by @acronym{OMEMO, OMEMO Multi-End Message and Object Encryption}, during\n" "XMPP-based sessions." msgstr "" -#: gnu/packages/messaging.scm:237 +#: gnu/packages/messaging.scm:239 msgid "" "Psi is a capable XMPP client aimed at experienced users.\n" "Its design goals are simplicity and stability." msgstr "" -#: gnu/packages/messaging.scm:295 +#: gnu/packages/messaging.scm:297 msgid "" "GNT is an ncurses toolkit for creating text-mode graphical\n" "user interfaces in a fast and easy way. It is based on GLib and ncurses." msgstr "" -#: gnu/packages/messaging.scm:346 +#: gnu/packages/messaging.scm:348 msgid "" "LibGadu is library for handling Gadu-Gadu instant messenger\n" "protocol. The library is written in C and aims to be operating system and\n" "environment independent." msgstr "" -#: gnu/packages/messaging.scm:381 +#: gnu/packages/messaging.scm:383 msgid "" "SILC (Secure Internet Live Conferencing) is a modern and secure\n" "conferencing protocol. It provides all the common conferencing services like\n" @@ -10226,14 +10355,14 @@ msgid "" "conferencing." msgstr "" -#: gnu/packages/messaging.scm:427 +#: gnu/packages/messaging.scm:429 msgid "" "QXmpp is a XMPP client and server library written in C++ and uses the Qt\n" "framework. It builds XMPP clients complying with the XMPP Compliance Suites\n" "2021 for IM and Advanced Mobile." msgstr "" -#: gnu/packages/messaging.scm:454 +#: gnu/packages/messaging.scm:456 msgid "" "Meanwhile is a library for connecting to a LIM (Lotus Instant\n" "Messaging, formerly Lotus Sametime, formerly VPBuddy) community. It uses a\n" @@ -10241,7 +10370,7 @@ msgid "" "TCP sessions from existing clients." msgstr "" -#: gnu/packages/messaging.scm:500 +#: gnu/packages/messaging.scm:502 msgid "" "Poezio is a free console XMPP client (the protocol on which\n" "the Jabber IM network is built).\n" @@ -10254,7 +10383,7 @@ msgid "" "powerful, standard and open protocol." msgstr "" -#: gnu/packages/messaging.scm:533 +#: gnu/packages/messaging.scm:535 msgid "" "OTR allows you to have private conversations over instant\n" "messaging by providing: (1) Encryption: No one else can read your instant\n" @@ -10267,7 +10396,7 @@ msgid "" "your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:572 +#: gnu/packages/messaging.scm:574 msgid "" "libsignal-protocol-c is an implementation of a ratcheting\n" "forward secrecy protocol that works in synchronous and asynchronous\n" @@ -10275,20 +10404,20 @@ msgid "" "end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:609 +#: gnu/packages/messaging.scm:611 msgid "" "This is a client library for @code{libsignal-protocol-c}.\n" "It implements the necessary interfaces using @code{libgcrypt} and\n" "@code{sqlite}." msgstr "" -#: gnu/packages/messaging.scm:641 +#: gnu/packages/messaging.scm:643 msgid "" "This library implements @acronym{OMEMO, OMEMO Multi-End\n" "Message and Object Encryption} of XMPP (XEP-0384) in C." msgstr "" -#: gnu/packages/messaging.scm:681 +#: gnu/packages/messaging.scm:683 msgid "" "BitlBee brings IM (instant messaging) to IRC clients, for\n" "people who have an IRC client running all the time and don't want to run an\n" @@ -10298,20 +10427,20 @@ msgid "" "identi.ca and status.net)." msgstr "" -#: gnu/packages/messaging.scm:748 +#: gnu/packages/messaging.scm:750 msgid "" "Bitlbee-discord is a plugin for Bitlbee which provides\n" "access to servers running the Discord protocol." msgstr "" -#: gnu/packages/messaging.scm:794 +#: gnu/packages/messaging.scm:796 msgid "" "Purple-Mattermost is a plug-in for Purple, the instant messaging library\n" "used by Pidgin and Bitlbee, among others, to access\n" "@uref{https://mattermost.com/, Mattermost} servers." msgstr "" -#: gnu/packages/messaging.scm:852 +#: gnu/packages/messaging.scm:854 msgid "" "HexChat lets you connect to multiple IRC networks at once. The main\n" "window shows the list of currently connected networks and their channels, the\n" @@ -10320,7 +10449,7 @@ msgid "" "dictionaries. HexChat can be extended with multiple addons." msgstr "" -#: gnu/packages/messaging.scm:917 +#: gnu/packages/messaging.scm:919 msgid "" "ngIRCd is a lightweight @dfn{Internet Relay Chat} (IRC) server for small\n" "or private networks. It is easy to configure, can cope with dynamic IP\n" @@ -10328,13 +10457,13 @@ msgid "" "authentication." msgstr "" -#: gnu/packages/messaging.scm:1024 +#: gnu/packages/messaging.scm:1026 msgid "" "Pidgin is a modular instant messaging client that supports\n" "many popular chat protocols." msgstr "" -#: gnu/packages/messaging.scm:1064 +#: gnu/packages/messaging.scm:1066 msgid "" "Pidgin-OTR is a plugin that adds support for OTR to the Pidgin\n" "instant messaging client. OTR (Off-the-Record) Messaging allows you to have\n" @@ -10348,7 +10477,7 @@ msgid "" "control of your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:1118 +#: gnu/packages/messaging.scm:1120 msgid "" "ZNC is an @dfn{IRC network bouncer} or @dfn{BNC}. It can\n" "detach the client from the actual IRC server, and also from selected channels.\n" @@ -10356,41 +10485,41 @@ msgid "" "simultaneously and therefore appear under the same nickname on IRC." msgstr "" -#: gnu/packages/messaging.scm:1147 +#: gnu/packages/messaging.scm:1149 msgid "" "Python-nbxmpp is a Python library that provides a way for\n" "Python applications to use the XMPP network. This library was initially a fork\n" "of xmpppy." msgstr "" -#: gnu/packages/messaging.scm:1274 +#: gnu/packages/messaging.scm:1276 msgid "" "Gajim aims to be an easy to use and fully-featured XMPP chat\n" "client. It is extensible via plugins, supports end-to-end encryption (OMEMO\n" "and OpenPGP) and available in 29 languages." msgstr "" -#: gnu/packages/messaging.scm:1309 +#: gnu/packages/messaging.scm:1311 msgid "" "Gajim-OMEMO is a plugin that adds support for the OMEMO\n" "Encryption to Gajim. OMEMO is an XMPP Extension Protocol (XEP) for secure\n" "multi-client end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:1344 +#: gnu/packages/messaging.scm:1346 msgid "" "Gajim-OpenPGP is a plugin that adds support for the OpenPGP\n" "Encryption to Gajim." msgstr "" -#: gnu/packages/messaging.scm:1418 +#: gnu/packages/messaging.scm:1420 msgid "" "Dino is a chat client for the desktop. It focuses on providing\n" "a minimal yet reliable Jabber/XMPP experience and having encryption enabled by\n" "default." msgstr "" -#: gnu/packages/messaging.scm:1505 +#: gnu/packages/messaging.scm:1507 msgid "" "Prosody is a modern XMPP communication server. It aims to\n" "be easy to set up and configure, and efficient with system resources.\n" @@ -10399,43 +10528,43 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/messaging.scm:1540 +#: gnu/packages/messaging.scm:1542 msgid "" "This module implements XEP-0363: it allows clients to\n" "upload files over HTTP." msgstr "" -#: gnu/packages/messaging.scm:1572 +#: gnu/packages/messaging.scm:1574 msgid "" "This module implements XEP-0198: when supported by both\n" "the client and server, it can allow clients to resume a disconnected session,\n" "and prevent message loss." msgstr "" -#: gnu/packages/messaging.scm:1601 +#: gnu/packages/messaging.scm:1603 msgid "C library implementation of the Tox encrypted messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1633 +#: gnu/packages/messaging.scm:1635 msgid "" "Official fork of the C library implementation of the Tox encrypted\n" "messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1687 +#: gnu/packages/messaging.scm:1689 msgid "" "uTox is a lightweight Tox client. Tox is a distributed and secure\n" "instant messenger with audio and video chat capabilities." msgstr "" -#: gnu/packages/messaging.scm:1750 +#: gnu/packages/messaging.scm:1752 msgid "" "qTox is a Tox client that follows the Tox design\n" "guidelines. It provides an easy to use application that allows you to\n" "connect with friends and family without anyone else listening in." msgstr "" -#: gnu/packages/messaging.scm:1772 +#: gnu/packages/messaging.scm:1774 msgid "" "Ytalk is a replacement for the BSD talk program. Its main\n" "advantage is the ability to communicate with any arbitrary number of users at\n" @@ -10443,7 +10572,7 @@ msgid "" "with several different talk daemons at the same time." msgstr "" -#: gnu/packages/messaging.scm:1796 +#: gnu/packages/messaging.scm:1798 msgid "" "gloox is a full-featured Jabber/XMPP client library,\n" "written in ANSI C++. It makes writing spec-compliant clients easy\n" @@ -10451,7 +10580,7 @@ msgid "" "into existing applications." msgstr "" -#: gnu/packages/messaging.scm:1866 +#: gnu/packages/messaging.scm:1868 msgid "" "@code{Net::PSYC} with support for TCP, UDP, Event.pm, @code{IO::Select} and\n" "Gtk2 event loops. This package includes 12 applications and additional scripts:\n" @@ -10459,14 +10588,14 @@ msgid "" "for @uref{https://torproject.org,tor} router) and many more." msgstr "" -#: gnu/packages/messaging.scm:1907 +#: gnu/packages/messaging.scm:1909 msgid "" "@code{libpsyc} is a PSYC library in C which implements\n" "core aspects of PSYC, useful for all kinds of clients and servers\n" "including psyced." msgstr "" -#: gnu/packages/messaging.scm:1949 +#: gnu/packages/messaging.scm:1951 msgid "" "Loudmouth is a lightweight and easy-to-use C library for programming\n" "with the XMPP (formerly known as Jabber) protocol. It is designed to be\n" @@ -10474,7 +10603,7 @@ msgid "" "protocol allows." msgstr "" -#: gnu/packages/messaging.scm:1991 +#: gnu/packages/messaging.scm:1993 msgid "" "Mcabber is a small XMPP (Jabber) console client, which includes features\n" "such as SASL and TLS support, @dfn{Multi-User Chat} (MUC) support, logging,\n" @@ -10482,7 +10611,7 @@ msgid "" "support, and more." msgstr "" -#: gnu/packages/messaging.scm:2039 +#: gnu/packages/messaging.scm:2041 msgid "" "GNU Freetalk is a command-line Jabber/XMPP chat client. It notably uses\n" "the Readline library to handle input, so it features convenient navigation of\n" @@ -10490,27 +10619,27 @@ msgid "" "is also scriptable and extensible via Guile." msgstr "" -#: gnu/packages/messaging.scm:2074 +#: gnu/packages/messaging.scm:2076 msgid "" "Libmesode is a fork of libstrophe for use with Profanity\n" "XMPP Client. In particular, libmesode provides extra TLS functionality such as\n" "manual SSL certificate verification." msgstr "" -#: gnu/packages/messaging.scm:2109 +#: gnu/packages/messaging.scm:2111 msgid "" "Libstrophe is a minimal XMPP library written in C. It has\n" "almost no external dependencies, only an XML parsing library (expat or libxml\n" "are both supported)." msgstr "" -#: gnu/packages/messaging.scm:2167 +#: gnu/packages/messaging.scm:2169 msgid "" "Profanity is a console based XMPP client written in C\n" "using ncurses and libmesode, inspired by Irssi." msgstr "" -#: gnu/packages/messaging.scm:2197 +#: gnu/packages/messaging.scm:2199 msgid "" "Libircclient is a library which implements the client IRC\n" "protocol. It is designed to be small, fast, portable and compatible with the\n" @@ -10518,14 +10647,14 @@ msgid "" "building the IRC clients and bots." msgstr "" -#: gnu/packages/messaging.scm:2255 +#: gnu/packages/messaging.scm:2257 msgid "" "Toxic is a console-based instant messaging client, using\n" "c-toxcore and ncurses. It provides audio calls, sound and desktop\n" "notifications, and Python scripting support." msgstr "" -#: gnu/packages/messaging.scm:2281 +#: gnu/packages/messaging.scm:2283 msgid "" "libqmatrixclient is a Qt5 library to write clients for the\n" "Matrix instant messaging protocol. Quaternion is the reference client\n" @@ -10533,13 +10662,13 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2326 +#: gnu/packages/messaging.scm:2330 msgid "" "@code{mtxclient} is a C++ library that implements client API\n" "for the Matrix protocol. It is built on to of @code{Boost.Asio}." msgstr "" -#: gnu/packages/messaging.scm:2418 +#: gnu/packages/messaging.scm:2423 msgid "" "@code{Nheko} want to provide a native desktop app for the\n" "Matrix protocol that feels more like a mainstream chat app and less like an IRC\n" @@ -10549,7 +10678,7 @@ msgid "" "notification, emojis, E2E encryption, and voip calls." msgstr "" -#: gnu/packages/messaging.scm:2455 +#: gnu/packages/messaging.scm:2460 msgid "" "Quaternion is a Qt5 desktop client for the Matrix instant\n" "messaging protocol. It uses libqmatrixclient and is its reference client\n" @@ -10557,7 +10686,7 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2502 +#: gnu/packages/messaging.scm:2507 msgid "" "Hangups is an instant messaging client for Google Hangouts. It includes\n" "both a Python library and a reference client with a text-based user interface.\n" @@ -10567,7 +10696,7 @@ msgid "" "messaging that aren’t available to clients that connect over XMPP." msgstr "" -#: gnu/packages/messaging.scm:2584 +#: gnu/packages/messaging.scm:2589 msgid "" "Telegram-purple is a plugin for Libpurple, the communication library\n" "used by the Pidgin instant messaging client, that adds support for the\n" @@ -10577,7 +10706,7 @@ msgid "" "replacement." msgstr "" -#: gnu/packages/messaging.scm:2629 +#: gnu/packages/messaging.scm:2632 msgid "" "Tdlib is a cross-platform library for creating custom\n" "Telegram clients following the official Telegram API. It can be easily used\n" @@ -10585,11 +10714,11 @@ msgid "" "support for high performance Telegram Bot creation." msgstr "" -#: gnu/packages/messaging.scm:2667 +#: gnu/packages/messaging.scm:2670 msgid "Plugin for libpurple to allow sending SMS using ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2712 +#: gnu/packages/messaging.scm:2715 msgid "" "Purple-lurch plugin adds end-to-end encryption support\n" "through the Double Ratchet (Axolotl) algorithm, to @code{libpurple}\n" @@ -10600,19 +10729,19 @@ msgid "" "asynchronicity." msgstr "" -#: gnu/packages/messaging.scm:2748 +#: gnu/packages/messaging.scm:2751 msgid "" "This package provides a C++ library for parsing, formatting, and\n" "validating international phone numbers." msgstr "" -#: gnu/packages/messaging.scm:2793 +#: gnu/packages/messaging.scm:2796 msgid "" "Chatty is a chat program for XMPP and SMS. It works on mobile\n" "as well as on desktop platforms. It's based on libpurple and ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2814 +#: gnu/packages/messaging.scm:2817 msgid "" "This package provides Eclipse Mosquitto, a message broker\n" "that implements the MQTT protocol versions 5.0, 3.1.1 and 3.1. Mosquitto\n" @@ -10625,27 +10754,27 @@ msgid "" "as phones, embedded computers or microcontrollers." msgstr "" -#: gnu/packages/messaging.scm:2864 +#: gnu/packages/messaging.scm:2867 msgid "" "Movim-Desktop is a desktop application, relying on Qt, for the Movim\n" "social and chat platform." msgstr "" -#: gnu/packages/messaging.scm:2999 +#: gnu/packages/messaging.scm:3002 msgid "" "Psi+ is a spin-off of Psi XMPP client. It is a powerful XMPP client\n" "designed for experienced users." msgstr "" -#: gnu/packages/messaging.scm:3039 +#: gnu/packages/messaging.scm:3042 msgid "This package provides Python bindings to Zulip's API." msgstr "" -#: gnu/packages/messaging.scm:3088 +#: gnu/packages/messaging.scm:3091 msgid "This package contains Zulip's official terminal client." msgstr "" -#: gnu/packages/messaging.scm:3110 +#: gnu/packages/messaging.scm:3113 msgid "" "Relays messages between different channels from various\n" "messaging networks and protocols. So far it supports mattermost, IRC, gitter,\n" @@ -10654,20 +10783,20 @@ msgid "" "API. Mattermost is not required." msgstr "" -#: gnu/packages/messaging.scm:3143 +#: gnu/packages/messaging.scm:3146 msgid "" "@command{pounce} is a multi-client, TLS-only IRC bouncer. It maintains\n" "a persistent connection to an IRC server, acting as a proxy and buffer for\n" "a number of clients." msgstr "" -#: gnu/packages/messaging.scm:3209 +#: gnu/packages/messaging.scm:3212 msgid "" "@code{weechat-matrix} is a Python plugin for Weechat that lets\n" "Weechat communicate over the Matrix protocol." msgstr "" -#: gnu/packages/messaging.scm:3256 +#: gnu/packages/messaging.scm:3259 msgid "" "@code{weechat-wee-slack} is a WeeChat native client for\n" "Slack. It provides supplemental features only available in the web/mobile\n" @@ -10776,14 +10905,14 @@ msgid "" "themselves." msgstr "" -#: gnu/packages/networking.scm:174 +#: gnu/packages/networking.scm:176 msgid "" "UsrSCTP is a portable SCTP userland stack. SCTP is a message\n" "oriented, reliable transport protocol with direct support for multihoming that\n" "runs on top of IP or UDP, and supports both v4 and v6 versions." msgstr "" -#: gnu/packages/networking.scm:199 +#: gnu/packages/networking.scm:201 msgid "" "Axel tries to accelerate the download process by using multiple\n" "connections per file, and can also balance the load between different\n" @@ -10792,38 +10921,38 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/networking.scm:264 +#: gnu/packages/networking.scm:266 msgid "" "LibCamera is a complex camera support library for GNU+Linux,\n" "Android, and ChromeOS." msgstr "" -#: gnu/packages/networking.scm:334 +#: gnu/packages/networking.scm:336 msgid "" "LibNice is a library that implements the Interactive\n" "Connectivity Establishment (ICE) standard (RFC 5245 & RFC 8445). It provides a\n" "GLib-based library, libnice, as well as GStreamer elements to use it." msgstr "" -#: gnu/packages/networking.scm:393 +#: gnu/packages/networking.scm:395 msgid "" "RTMPdump is a toolkit for RTMP streams. All forms of RTMP are\n" "supported, including rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps://." msgstr "" -#: gnu/packages/networking.scm:422 +#: gnu/packages/networking.scm:424 msgid "" "Slurm is a network load monitor. It shows real-time traffic statistics\n" "from any network device in any of three ASCII graph formats." msgstr "" -#: gnu/packages/networking.scm:457 +#: gnu/packages/networking.scm:459 msgid "" "SRT is a transport technology that optimizes streaming\n" "performance across unpredictable networks, such as the Internet." msgstr "" -#: gnu/packages/networking.scm:500 +#: gnu/packages/networking.scm:502 msgid "" "The lksctp-tools project provides a user-space library for @acronym{SCTP,\n" "the Stream Control Transmission Protocol} (@file{libsctp}) and C language header\n" @@ -10832,13 +10961,13 @@ msgid "" "It also includes some SCTP-related helper utilities." msgstr "" -#: gnu/packages/networking.scm:541 +#: gnu/packages/networking.scm:543 msgid "" "@code{pysctp} implements the SCTP socket API. You need a\n" "SCTP-aware kernel (most are)." msgstr "" -#: gnu/packages/networking.scm:565 +#: gnu/packages/networking.scm:567 msgid "" "@command{knockd} is a port-knock daemon. It listens to all traffic on\n" "an ethernet or PPP interface, looking for special \"knock\" sequences of @dfn{port-hits}\n" @@ -10846,7 +10975,7 @@ msgid "" "at the link-layer level." msgstr "" -#: gnu/packages/networking.scm:605 +#: gnu/packages/networking.scm:607 msgid "" "NNG project is a rewrite of the scalability protocols library\n" "known as libnanomsg, and adds significant new capabilities, while retaining\n" @@ -10855,7 +10984,7 @@ msgid "" "publish/subscribe, RPC-style request/reply, or service discovery." msgstr "" -#: gnu/packages/networking.scm:648 +#: gnu/packages/networking.scm:650 msgid "" "Nanomsg is a socket library that provides several common\n" "communication patterns. It aims to make the networking layer fast, scalable,\n" @@ -10863,14 +10992,14 @@ msgid "" "systems with no further dependencies." msgstr "" -#: gnu/packages/networking.scm:758 +#: gnu/packages/networking.scm:760 msgid "" "Blueman is a Bluetooth management utility using the Bluez\n" "D-Bus backend. It is designed to be easy to use for most common Bluetooth\n" "tasks." msgstr "" -#: gnu/packages/networking.scm:783 +#: gnu/packages/networking.scm:785 msgid "" "GNU MAC Changer is a utility for viewing and changing MAC\n" "addresses of networking devices. New addresses may be set explicitly or\n" @@ -10878,14 +11007,14 @@ msgid "" "or, more generally, MAC addresses of the same category of hardware." msgstr "" -#: gnu/packages/networking.scm:831 +#: gnu/packages/networking.scm:833 msgid "" "Miredo is an implementation (client, relay, server) of the Teredo\n" "specification, which provides IPv6 Internet connectivity to IPv6 enabled hosts\n" "residing in IPv4-only networks, even when they are behind a NAT device." msgstr "" -#: gnu/packages/networking.scm:851 +#: gnu/packages/networking.scm:853 msgid "" "NDisc6 is a collection of tools for IPv6 networking diagnostics.\n" "It includes the following programs:\n" @@ -10899,7 +11028,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:904 +#: gnu/packages/networking.scm:906 msgid "" "@command{parprouted} is a daemon for transparent IP (Layer@tie{}3)\n" "proxy ARP bridging. Unlike standard bridging, proxy ARP bridging can bridge\n" @@ -10909,7 +11038,14 @@ msgid "" "useful for making transparent firewalls." msgstr "" -#: gnu/packages/networking.scm:931 +#: gnu/packages/networking.scm:945 +msgid "" +"@command{pproxy} is an asynchronuous proxy server implemented with\n" +"Python 3 @code{asyncio}. Among the supported protocols are HTTP, SOCKS\n" +"and SSH, and it can use both TCP and UDP as transport mechanisms." +msgstr "" + +#: gnu/packages/networking.scm:969 msgid "" "socat is a relay for bidirectional data transfer between two independent\n" "data channels---files, pipes, devices, sockets, etc. It can create\n" @@ -10922,7 +11058,7 @@ msgid "" "or server shell scripts with network connections." msgstr "" -#: gnu/packages/networking.scm:962 +#: gnu/packages/networking.scm:1000 msgid "" "mbuffer is a tool for buffering data streams with a large set of features:\n" "\n" @@ -10938,14 +11074,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1058 +#: gnu/packages/networking.scm:1096 msgid "" "With this package you can monitor and filter incoming requests for\n" "network services. It includes a library which may be used by daemons to\n" "transparently check connection attempts against an access control list." msgstr "" -#: gnu/packages/networking.scm:1081 +#: gnu/packages/networking.scm:1119 msgid "" "The 0MQ lightweight messaging kernel is a library which extends the\n" "standard socket interfaces with features traditionally provided by specialized\n" @@ -10955,46 +11091,46 @@ msgid "" "more." msgstr "" -#: gnu/packages/networking.scm:1110 +#: gnu/packages/networking.scm:1148 msgid "" "czmq provides bindings for the ØMQ core API that hides the differences\n" "between different versions of ØMQ." msgstr "" -#: gnu/packages/networking.scm:1141 +#: gnu/packages/networking.scm:1179 msgid "" "This package provides header-only C++ bindings for ØMQ. The header\n" "files contain direct mappings of the abstractions provided by the ØMQ C API." msgstr "" -#: gnu/packages/networking.scm:1175 +#: gnu/packages/networking.scm:1213 msgid "" "@code{libnatpmp} is a portable and asynchronous implementation of\n" "the Network Address Translation - Port Mapping Protocol (NAT-PMP)\n" "written in the C programming language." msgstr "" -#: gnu/packages/networking.scm:1213 +#: gnu/packages/networking.scm:1251 msgid "" "librdkafka is a C library implementation of the Apache Kafka protocol,\n" "containing both Producer and Consumer support." msgstr "" -#: gnu/packages/networking.scm:1232 +#: gnu/packages/networking.scm:1270 msgid "" "libndp contains a library which provides a wrapper for IPv6 Neighbor\n" "Discovery Protocol. It also provides a tool named ndptool for sending and\n" "receiving NDP messages." msgstr "" -#: gnu/packages/networking.scm:1256 +#: gnu/packages/networking.scm:1294 msgid "" "ethtool can be used to query and change settings such as speed,\n" "auto-negotiation and checksum offload on many network devices, especially\n" "Ethernet devices." msgstr "" -#: gnu/packages/networking.scm:1298 +#: gnu/packages/networking.scm:1336 msgid "" "IFStatus is a simple, easy-to-use program for displaying commonly\n" "needed/wanted real-time traffic statistics of multiple network\n" @@ -11002,7 +11138,7 @@ msgid "" "intended as a substitute for the PPPStatus and EthStatus projects." msgstr "" -#: gnu/packages/networking.scm:1347 +#: gnu/packages/networking.scm:1385 msgid "" "This package contains a variety of tools for dealing with network\n" "configuration, troubleshooting, or servers. Utilities included are:\n" @@ -11023,7 +11159,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1388 +#: gnu/packages/networking.scm:1426 msgid "" "Nload is a console application which monitors network traffic and\n" "bandwidth usage in real time. It visualizes the in- and outgoing traffic using\n" @@ -11031,7 +11167,7 @@ msgid "" "and min/max network usage." msgstr "" -#: gnu/packages/networking.scm:1432 +#: gnu/packages/networking.scm:1470 msgid "" "Iodine tunnels IPv4 data through a DNS server. This\n" "can be useful in different situations where internet access is firewalled, but\n" @@ -11039,7 +11175,7 @@ msgid "" "and up to 1 Mbit/s downstream." msgstr "" -#: gnu/packages/networking.scm:1473 +#: gnu/packages/networking.scm:1511 msgid "" "whois searches for an object in a @dfn{WHOIS} (RFC 3912) database.\n" "It is commonly used to look up the registered users or assignees of an Internet\n" @@ -11051,14 +11187,14 @@ msgid "" "of the same name." msgstr "" -#: gnu/packages/networking.scm:1553 +#: gnu/packages/networking.scm:1591 msgid "" "Wireshark is a network protocol analyzer, or @dfn{packet\n" "sniffer}, that lets you capture and interactively browse the contents of\n" "network frames." msgstr "" -#: gnu/packages/networking.scm:1574 +#: gnu/packages/networking.scm:1613 msgid "" "fping is a ping-like program which uses @acronym{ICMP, Internet Control\n" "Message Protocol} echo requests to determine if a target host is responding.\n" @@ -11070,26 +11206,26 @@ msgid "" "round-robin fashion." msgstr "" -#: gnu/packages/networking.scm:1625 +#: gnu/packages/networking.scm:1664 msgid "" "This package provides a command-line client (@command{gandi}) to buy,\n" "manage, and delete Internet resources from Gandi.net such as domain names,\n" "virtual machines, and certificates." msgstr "" -#: gnu/packages/networking.scm:1651 +#: gnu/packages/networking.scm:1690 msgid "" "The netns package provides a simple interface for\n" "handling network namespaces in Go." msgstr "" -#: gnu/packages/networking.scm:1678 +#: gnu/packages/networking.scm:1717 msgid "" "This library provides methods for using the stream control\n" "transmission protocol (SCTP) in a Go application." msgstr "" -#: gnu/packages/networking.scm:1707 +#: gnu/packages/networking.scm:1746 msgid "" "httping measures how long it takes to connect to a web server, send an\n" "HTTP(S) request, and receive the reply headers. It is somewhat similar to\n" @@ -11098,7 +11234,7 @@ msgid "" "application stack itself." msgstr "" -#: gnu/packages/networking.scm:1746 +#: gnu/packages/networking.scm:1785 msgid "" "@command{httpstat} is a tool to visualize statistics from the\n" "@command{curl} HTTP client. It acts as a wrapper for @command{curl} and\n" @@ -11106,20 +11242,20 @@ msgid "" "TCP connection, TLS handshake and so on) in the terminal." msgstr "" -#: gnu/packages/networking.scm:1788 +#: gnu/packages/networking.scm:1827 msgid "" "Squid is a caching proxy for the Web supporting HTTP, HTTPS,\n" "FTP, and more. It reduces bandwidth and improves response times by caching and\n" "reusing frequently-requested web pages." msgstr "" -#: gnu/packages/networking.scm:1822 +#: gnu/packages/networking.scm:1861 msgid "" "Bandwidth Monitor NG is a small and simple console based\n" "live network and disk I/O bandwidth monitor." msgstr "" -#: gnu/packages/networking.scm:1874 +#: gnu/packages/networking.scm:1913 msgid "" "Aircrack-ng is a complete suite of tools to assess WiFi network\n" "security. It focuses on different areas of WiFi security: monitoring,\n" @@ -11127,14 +11263,14 @@ msgid "" "allows for heavy scripting." msgstr "" -#: gnu/packages/networking.scm:1903 +#: gnu/packages/networking.scm:1942 msgid "" "Pixiewps implements the pixie-dust attack to brute\n" "force the Wi-Fi Protected Setup (WPS) PIN by exploiting the low or\n" "non-existing entropy of some access points." msgstr "" -#: gnu/packages/networking.scm:1949 +#: gnu/packages/networking.scm:1988 msgid "" "Reaver performs a brute force attack against an access\n" "point's Wi-Fi Protected Setup (WPS) PIN. Once the PIN is found, the WPA\n" @@ -11142,7 +11278,7 @@ msgid "" "reconfigured." msgstr "" -#: gnu/packages/networking.scm:1974 +#: gnu/packages/networking.scm:2013 msgid "" "Danga::Socket is an abstract base class for objects backed by a socket\n" "which provides the basic framework for event-driven asynchronous IO, designed\n" @@ -11150,7 +11286,7 @@ msgid "" "loop." msgstr "" -#: gnu/packages/networking.scm:2000 +#: gnu/packages/networking.scm:2039 msgid "" "This module provides several IP address validation subroutines that both\n" "validate and untaint their input. This includes both basic validation\n" @@ -11159,62 +11295,62 @@ msgid "" "private (reserved)." msgstr "" -#: gnu/packages/networking.scm:2028 +#: gnu/packages/networking.scm:2067 msgid "Net::DNS is the Perl Interface to the Domain Name System." msgstr "" -#: gnu/packages/networking.scm:2060 +#: gnu/packages/networking.scm:2099 msgid "" "Socket6 binds the IPv6 related part of the C socket header\n" "definitions and structure manipulators for Perl." msgstr "" -#: gnu/packages/networking.scm:2087 +#: gnu/packages/networking.scm:2126 msgid "" "Net::DNS::Resolver::Programmable is a programmable DNS resolver for\n" "offline emulation of DNS." msgstr "" -#: gnu/packages/networking.scm:2109 +#: gnu/packages/networking.scm:2148 msgid "" "Net::DNS::Resolver::Mock is a subclass of Net::DNS::Resolver, but returns\n" "static data from any provided DNS zone file instead of querying the network.\n" "It is intended primarily for use in testing." msgstr "" -#: gnu/packages/networking.scm:2144 +#: gnu/packages/networking.scm:2183 msgid "NetAddr::IP manages IPv4 and IPv6 addresses and subsets." msgstr "" -#: gnu/packages/networking.scm:2177 +#: gnu/packages/networking.scm:2216 msgid "Net::Patricia does IP address lookups quickly in Perl." msgstr "" -#: gnu/packages/networking.scm:2198 +#: gnu/packages/networking.scm:2237 msgid "Net::CIDR::Lite merges IPv4 or IPv6 CIDR addresses." msgstr "" -#: gnu/packages/networking.scm:2225 +#: gnu/packages/networking.scm:2264 msgid "" "IO::Socket::INET6 is an interface for AF_INET/AF_INET6 domain\n" "sockets in Perl." msgstr "" -#: gnu/packages/networking.scm:2258 +#: gnu/packages/networking.scm:2293 msgid "" "Libproxy handles the details of HTTP/HTTPS proxy\n" "configuration for applications across all scenarios. Applications using\n" "libproxy only have to specify which proxy to use." msgstr "" -#: gnu/packages/networking.scm:2292 +#: gnu/packages/networking.scm:2327 msgid "" "Proxychains-ng is a preloader which hooks calls to sockets\n" "in dynamically linked programs and redirects them through one or more SOCKS or\n" "HTTP proxies." msgstr "" -#: gnu/packages/networking.scm:2314 +#: gnu/packages/networking.scm:2349 msgid "" "ENet's purpose is to provide a relatively thin, simple and robust network\n" "communication layer on top of UDP. The primary feature it provides is optional\n" @@ -11224,7 +11360,7 @@ msgid "" "library remains flexible, portable, and easily embeddable." msgstr "" -#: gnu/packages/networking.scm:2378 +#: gnu/packages/networking.scm:2413 msgid "" "sslh is a network protocol demultiplexer. It acts like a switchboard,\n" "accepting connections from clients on one port and forwarding them to different\n" @@ -11236,7 +11372,7 @@ msgid "" "that block port 22." msgstr "" -#: gnu/packages/networking.scm:2408 +#: gnu/packages/networking.scm:2443 msgid "" "iPerf is a tool to measure achievable bandwidth on IP networks. It\n" "supports tuning of various parameters related to timing, buffers and\n" @@ -11244,7 +11380,7 @@ msgid "" "the bandwidth, loss, and other parameters." msgstr "" -#: gnu/packages/networking.scm:2445 +#: gnu/packages/networking.scm:2480 msgid "" "NetHogs is a small 'net top' tool for Linux. Instead of\n" "breaking the traffic down per protocol or per subnet, like most tools do, it\n" @@ -11256,7 +11392,7 @@ msgid "" "gone wild and are suddenly taking up your bandwidth." msgstr "" -#: gnu/packages/networking.scm:2481 +#: gnu/packages/networking.scm:2516 msgid "" "NZBGet is a binary newsgrabber, which downloads files from Usenet based\n" "on information given in @code{nzb} files. NZBGet can be used in standalone\n" @@ -11266,7 +11402,7 @@ msgid "" "procedure calls (RPCs)." msgstr "" -#: gnu/packages/networking.scm:2562 +#: gnu/packages/networking.scm:2597 msgid "" "Open vSwitch is a multilayer virtual switch. It is designed to enable\n" "massive network automation through programmatic extension, while still\n" @@ -11274,27 +11410,27 @@ msgid "" "IPFIX, RSPAN, CLI, LACP, 802.1ag)." msgstr "" -#: gnu/packages/networking.scm:2585 +#: gnu/packages/networking.scm:2620 msgid "" "The @code{IP} class allows a comfortable parsing and\n" "handling for most notations in use for IPv4 and IPv6 addresses and\n" "networks." msgstr "" -#: gnu/packages/networking.scm:2610 +#: gnu/packages/networking.scm:2645 msgid "" "Command line interface for testing internet bandwidth using\n" "speedtest.net." msgstr "" -#: gnu/packages/networking.scm:2630 +#: gnu/packages/networking.scm:2668 msgid "" "This is a tftp client derived from OpenBSD tftp with some extra options\n" "added and bugs fixed. The source includes readline support but it is not\n" "enabled due to license conflicts between the BSD advertising clause and the GPL." msgstr "" -#: gnu/packages/networking.scm:2682 +#: gnu/packages/networking.scm:2720 msgid "" "Spiped (pronounced \"ess-pipe-dee\") is a utility for creating\n" "symmetrically encrypted and authenticated pipes between socket addresses, so\n" @@ -11304,7 +11440,7 @@ msgid "" "does not use SSH and requires a pre-shared symmetric key." msgstr "" -#: gnu/packages/networking.scm:2708 +#: gnu/packages/networking.scm:2746 msgid "" "Quagga is a routing software suite, providing implementations\n" "of OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4 for Unix platforms.\n" @@ -11316,14 +11452,14 @@ msgid "" "updates to the zebra daemon." msgstr "" -#: gnu/packages/networking.scm:2758 +#: gnu/packages/networking.scm:2796 msgid "" "The THC IPv6 Toolkit provides command-line tools and a library\n" "for researching IPv6 implementations and deployments. It requires Linux 2.6 or\n" "newer and only works on Ethernet network interfaces." msgstr "" -#: gnu/packages/networking.scm:2783 +#: gnu/packages/networking.scm:2821 msgid "" "bmon is a monitoring and debugging tool to capture\n" "networking-related statistics and prepare them visually in a human-friendly\n" @@ -11331,7 +11467,7 @@ msgid "" "interface and a programmable text output for scripting." msgstr "" -#: gnu/packages/networking.scm:2821 +#: gnu/packages/networking.scm:2859 msgid "" "Libnet provides a fairly portable framework for network packet\n" "construction and injection. It features portable packet creation interfaces\n" @@ -11340,7 +11476,7 @@ msgid "" "can be whipped up with little effort." msgstr "" -#: gnu/packages/networking.scm:2847 +#: gnu/packages/networking.scm:2885 msgid "" "@acronym{mtr, My TraceRoute} combines the functionality of the\n" "@command{traceroute} and @command{ping} programs in a single network diagnostic\n" @@ -11350,7 +11486,7 @@ msgid "" "displays the results in real time." msgstr "" -#: gnu/packages/networking.scm:2900 +#: gnu/packages/networking.scm:2938 msgid "" "aMule is an eMule-like client for the eD2k and Kademlia peer-to-peer\n" "file sharing networks. It includes a graphical user interface (GUI), a daemon\n" @@ -11359,7 +11495,7 @@ msgid "" "remotely." msgstr "" -#: gnu/packages/networking.scm:2922 +#: gnu/packages/networking.scm:2960 msgid "" "Zyre provides reliable group messaging over local area\n" "networks using zeromq. It has these key characteristics:\n" @@ -11376,13 +11512,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:2956 +#: gnu/packages/networking.scm:2994 msgid "" "This library allows controlling basic functions in SocketCAN\n" "from user-space. It requires a kernel built with SocketCAN support." msgstr "" -#: gnu/packages/networking.scm:2985 +#: gnu/packages/networking.scm:3023 msgid "" "This package provides CAN utilities in the following areas:\n" "\n" @@ -11398,14 +11534,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3021 +#: gnu/packages/networking.scm:3059 msgid "" "Asio is a cross-platform C++ library for network and\n" "low-level I/O programming that provides developers with a consistent\n" "asynchronous model using a modern C++ approach." msgstr "" -#: gnu/packages/networking.scm:3056 +#: gnu/packages/networking.scm:3094 msgid "" "This package is a fast tunnel proxy that helps you bypass firewalls.\n" "\n" @@ -11419,7 +11555,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3134 +#: gnu/packages/networking.scm:3172 msgid "" "The @dfn{Simple Network Management Protocol} (SNMP) is a\n" "widely used protocol for monitoring the health and welfare of network\n" @@ -11428,20 +11564,20 @@ msgid "" "SNMP v3 using both IPv4 and IPv6." msgstr "" -#: gnu/packages/networking.scm:3181 +#: gnu/packages/networking.scm:3219 msgid "" "uBridge is a simple program to create user-land bridges\n" "between various technologies. Currently, bridging between UDP tunnels,\n" "Ethernet and TAP interfaces is supported. Packet capture is also supported." msgstr "" -#: gnu/packages/networking.scm:3213 +#: gnu/packages/networking.scm:3251 msgid "" "This package contains a small set of tools to capture and convert\n" "packets from wireless devices for use with hashcat or John the Ripper." msgstr "" -#: gnu/packages/networking.scm:3244 +#: gnu/packages/networking.scm:3282 msgid "" "Small tool to capture packets from WLAN devices. After capturing,\n" "upload the \"uncleaned\" cap to @url{https://wpa-sec.stanev.org/?submit} to\n" @@ -11451,7 +11587,7 @@ msgid "" "and check if the WLAN key or the master key was transmitted unencrypted." msgstr "" -#: gnu/packages/networking.scm:3271 +#: gnu/packages/networking.scm:3309 msgid "" "Dante is a SOCKS client and server implementation. It can\n" "be installed on a machine with access to an external TCP/IP network and will\n" @@ -11460,21 +11596,21 @@ msgid "" "never see any machines other than the one Dante is running on." msgstr "" -#: gnu/packages/networking.scm:3318 +#: gnu/packages/networking.scm:3356 msgid "" "Restbed is a comprehensive and consistent programming\n" "model for building applications that require seamless and secure\n" "communication over HTTP." msgstr "" -#: gnu/packages/networking.scm:3358 +#: gnu/packages/networking.scm:3396 msgid "" "RESTinio is a header-only C++14 library that gives you an embedded\n" "HTTP/Websocket server. It is based on standalone version of ASIO\n" "and targeted primarily for asynchronous processing of HTTP-requests." msgstr "" -#: gnu/packages/networking.scm:3446 +#: gnu/packages/networking.scm:3487 msgid "" "OpenDHT provides an easy to use distributed in-memory data\n" "store. Every node in the network can read and write values to the store.\n" @@ -11501,20 +11637,20 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/networking.scm:3490 +#: gnu/packages/networking.scm:3531 msgid "" "FRRouting (FRR) is an IP routing protocol suite which includes\n" "protocol daemons for BGP, IS-IS, LDP, OSPF, PIM, and RIP." msgstr "" -#: gnu/packages/networking.scm:3520 +#: gnu/packages/networking.scm:3561 msgid "" "BIRD is an Internet routing daemon with full support for all\n" "the major routing protocols. It allows redistribution between protocols with a\n" "powerful route filtering syntax and an easy-to-use configuration interface." msgstr "" -#: gnu/packages/networking.scm:3568 +#: gnu/packages/networking.scm:3609 msgid "" "iwd is a wireless daemon for Linux that aims to replace WPA\n" "Supplicant. It optimizes resource utilization by not depending on any external\n" @@ -11522,21 +11658,21 @@ msgid "" "maximum extent possible." msgstr "" -#: gnu/packages/networking.scm:3595 +#: gnu/packages/networking.scm:3636 msgid "" "libyang is a YANG data modelling language parser and toolkit\n" "written (and providing API) in C. Current implementation covers YANG 1.0 (RFC\n" "6020) as well as YANG 1.1 (RFC 7950)." msgstr "" -#: gnu/packages/networking.scm:3629 +#: gnu/packages/networking.scm:3670 msgid "" "This package provides a control tool for the\n" "B.A.T.M.A.N. mesh networking routing protocol provided by the Linux kernel\n" "module @code{batman-adv}, for Layer 2." msgstr "" -#: gnu/packages/networking.scm:3662 +#: gnu/packages/networking.scm:3703 msgid "" "PageKite implements a tunneled reverse proxy which makes it easy to make\n" "a service (such as an HTTP or SSH server) on localhost visible to the wider\n" @@ -11544,7 +11680,7 @@ msgid "" "service is available at @url{https://pagekite.net/}, or you can run your own." msgstr "" -#: gnu/packages/networking.scm:3706 +#: gnu/packages/networking.scm:3747 msgid "" "ipcalc takes an IP address and netmask and calculates the\n" "resulting broadcast, network, Cisco wildcard mask, and host range. By giving\n" @@ -11553,7 +11689,7 @@ msgid "" "easy-to-understand binary values." msgstr "" -#: gnu/packages/networking.scm:3745 +#: gnu/packages/networking.scm:3786 msgid "" "Tunctl is used to set up and maintain persistent TUN/TAP\n" "network interfaces, enabling user applications to simulate network traffic.\n" @@ -11561,13 +11697,13 @@ msgid "" "simulation, and a number of other applications." msgstr "" -#: gnu/packages/networking.scm:3765 +#: gnu/packages/networking.scm:3806 msgid "" "Tool to send a magic packet to wake another host on the\n" "network. This must be enabled on the target host, usually in the BIOS." msgstr "" -#: gnu/packages/networking.scm:3802 +#: gnu/packages/networking.scm:3843 msgid "" "This package provides a modern, but Linux-specific\n" "implementation of the @command{traceroute} command that can be used to follow\n" @@ -11578,7 +11714,7 @@ msgid "" "some traces for unprivileged users." msgstr "" -#: gnu/packages/networking.scm:3836 +#: gnu/packages/networking.scm:3877 msgid "" "VDE is a set of programs to provide virtual software-defined\n" "Ethernet network interface controllers across multiple virtual or\n" @@ -11587,7 +11723,7 @@ msgid "" "cables." msgstr "" -#: gnu/packages/networking.scm:3878 +#: gnu/packages/networking.scm:3919 msgid "" "HAProxy is a free, very fast and reliable solution offering\n" "high availability, load balancing, and proxying for TCP and HTTP-based\n" @@ -11596,7 +11732,7 @@ msgid "" "thousands of connections is clearly realistic with today's hardware." msgstr "" -#: gnu/packages/networking.scm:3924 +#: gnu/packages/networking.scm:3965 msgid "" "The @dfn{Link Layer Discovery Protocol} (LLDP) is an industry standard\n" "protocol designed to supplant proprietary Link-Layer protocols such as EDP or\n" @@ -11605,7 +11741,7 @@ msgid "" "an implementation of LLDP. It also supports some proprietary protocols." msgstr "" -#: gnu/packages/networking.scm:3966 +#: gnu/packages/networking.scm:4007 msgid "" "Hashcash is a proof-of-work algorithm, which has been used\n" "as a denial-of-service countermeasure technique in a number of systems.\n" @@ -11618,14 +11754,14 @@ msgid "" "stamps." msgstr "" -#: gnu/packages/networking.scm:3995 +#: gnu/packages/networking.scm:4036 msgid "" "This package provides the NBD (Network Block Devices)\n" "client and server. It allows you to use remote block devices over a TCP/IP\n" "network." msgstr "" -#: gnu/packages/networking.scm:4062 +#: gnu/packages/networking.scm:4103 msgid "" "Yggdrasil is an early-stage implementation of a fully end-to-end encrypted\n" "IPv6 network. It is lightweight, self-arranging, supported on multiple\n" @@ -11634,7 +11770,7 @@ msgid "" "IPv6 Internet connectivity - it also works over IPv4." msgstr "" -#: gnu/packages/networking.scm:4106 +#: gnu/packages/networking.scm:4147 msgid "" "Netdiscover is a network address discovery tool developed\n" "mainly for wireless networks without a @acronym{DHCP} server. It also works\n" @@ -11642,7 +11778,7 @@ msgid "" "@acronym{ARP} requests and sniff for replies." msgstr "" -#: gnu/packages/networking.scm:4138 +#: gnu/packages/networking.scm:4179 msgid "" "PuTTY is a graphical text terminal client. It supports\n" "@acronym{SSH, Secure SHell}, telnet, and raw socket connections with good\n" @@ -11753,14 +11889,14 @@ msgid "" "by using the poppler rendering engine." msgstr "" -#: gnu/packages/pdf.scm:654 +#: gnu/packages/pdf.scm:653 msgid "" "Zathura is a customizable document viewer. It provides a\n" "minimalistic interface and an interface that mainly focuses on keyboard\n" "interaction." msgstr "" -#: gnu/packages/pdf.scm:697 +#: gnu/packages/pdf.scm:696 msgid "" "PoDoFo is a C++ library and set of command-line tools to work with the\n" "PDF file format. It can parse PDF files and load them into memory, and makes\n" @@ -11769,7 +11905,7 @@ msgid "" "extracting content or merging files." msgstr "" -#: gnu/packages/pdf.scm:764 +#: gnu/packages/pdf.scm:763 msgid "" "MuPDF is a C library that implements a PDF and XPS parsing and\n" "rendering engine. It is used primarily to render pages into bitmaps,\n" @@ -11781,7 +11917,7 @@ msgid "" "@command{pdfclean}, and examining the file structure @command{pdfshow}." msgstr "" -#: gnu/packages/pdf.scm:811 +#: gnu/packages/pdf.scm:810 msgid "" "QPDF is a command-line program that does structural, content-preserving\n" "transformations on PDF files. It could have been called something like\n" @@ -11790,7 +11926,7 @@ msgid "" "program capable of converting PDF into other formats." msgstr "" -#: gnu/packages/pdf.scm:855 +#: gnu/packages/pdf.scm:854 msgid "" "@command{qpdfview} is a document viewer for PDF, PS and DJVU\n" "files. It uses the Qt toolkit and features persistent per-file settings,\n" @@ -11798,13 +11934,13 @@ msgid "" "SyncTeX support, and rudimentary support for annotations and forms." msgstr "" -#: gnu/packages/pdf.scm:881 +#: gnu/packages/pdf.scm:880 msgid "" "Xournal is an application for notetaking, sketching, keeping a journal\n" "using a stylus." msgstr "" -#: gnu/packages/pdf.scm:940 +#: gnu/packages/pdf.scm:939 msgid "" "Xournal++ is a hand note taking software written in\n" "C++ with the target of flexibility, functionality and speed. Stroke\n" @@ -11840,14 +11976,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1019 +#: gnu/packages/pdf.scm:1018 msgid "" "This is the ReportLab PDF Toolkit. It allows rapid creation\n" "of rich PDF documents, and also creation of charts in a variety of bitmap and\n" "vector formats." msgstr "" -#: gnu/packages/pdf.scm:1071 +#: gnu/packages/pdf.scm:1070 msgid "" "Impressive is a tool to display PDF files that provides visual effects\n" "such as smooth alpha-blended slide transitions. It provides additional tools\n" @@ -11855,26 +11991,26 @@ msgid "" "the PDF pages." msgstr "" -#: gnu/packages/pdf.scm:1094 +#: gnu/packages/pdf.scm:1093 msgid "" "img2pdf converts images to PDF via direct JPEG inclusion. That\n" "conversion is lossless: the image embedded in the PDF has the exact same color\n" "information for every pixel as the input." msgstr "" -#: gnu/packages/pdf.scm:1147 +#: gnu/packages/pdf.scm:1146 msgid "" "fbida contains a few applications for viewing and editing images on\n" "the framebuffer." msgstr "" -#: gnu/packages/pdf.scm:1171 +#: gnu/packages/pdf.scm:1170 msgid "" "@command{pdf2svg} is a simple command-line PDF to SVG\n" "converter using the Poppler and Cairo libraries." msgstr "" -#: gnu/packages/pdf.scm:1203 +#: gnu/packages/pdf.scm:1202 msgid "" "PyPDF2 is a pure Python PDF library capable of:\n" "\n" @@ -11894,7 +12030,7 @@ msgid "" "manage or manipulate PDFs." msgstr "" -#: gnu/packages/pdf.scm:1240 +#: gnu/packages/pdf.scm:1239 msgid "" "PyPDF2 is a pure Python PDF toolkit.\n" "\n" @@ -11902,7 +12038,7 @@ msgid "" "python-pypdf2 instead." msgstr "" -#: gnu/packages/pdf.scm:1284 +#: gnu/packages/pdf.scm:1283 msgid "" "PDF Arranger is a small application which allows one to merge or split\n" "PDF documents and rotate, crop and rearrange their pages using an interactive\n" @@ -11911,7 +12047,7 @@ msgid "" "PDF Arranger was formerly known as PDF-Shuffler." msgstr "" -#: gnu/packages/pdf.scm:1308 +#: gnu/packages/pdf.scm:1307 msgid "" "@command{pdfposter} can be used to create a large poster by\n" "building it from multiple pages and/or printing it on large media. It expects\n" @@ -11924,7 +12060,7 @@ msgid "" "PDF. Indeed @command{pdfposter} was inspired by @command{poster}." msgstr "" -#: gnu/packages/pdf.scm:1339 +#: gnu/packages/pdf.scm:1338 msgid "" "Pdfgrep searches in pdf files for strings matching a regular expression.\n" "Support some GNU grep options as file name output, page number output,\n" @@ -11932,7 +12068,7 @@ msgid "" "multiple files." msgstr "" -#: gnu/packages/pdf.scm:1387 +#: gnu/packages/pdf.scm:1386 msgid "" "pdfpc is a presentation viewer application which uses multi-monitor\n" "output to provide meta information to the speaker during the presentation. It\n" @@ -11942,13 +12078,13 @@ msgid "" "presentation. The input files processed by pdfpc are PDF documents." msgstr "" -#: gnu/packages/pdf.scm:1414 +#: gnu/packages/pdf.scm:1413 msgid "" "Paps reads a UTF-8 encoded file and generates a PostScript language\n" "rendering of the file through the Pango Cairo back end." msgstr "" -#: gnu/packages/pdf.scm:1444 +#: gnu/packages/pdf.scm:1443 msgid "" "Stapler is a pure Python alternative to PDFtk, a tool for\n" "manipulating PDF documents from the command line. It supports\n" @@ -11962,7 +12098,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1532 +#: gnu/packages/pdf.scm:1531 msgid "" "WeasyPrint helps web developers to create PDF documents. It\n" "turns simple HTML pages into gorgeous statistical reports, invoices, tickets,\n" @@ -15684,7 +15820,7 @@ msgid "" "and enhance them." msgstr "" -#: gnu/packages/photo.scm:601 +#: gnu/packages/photo.scm:603 msgid "" "Photoflare is a cross-platform image editor with an aim\n" "to balance between powerful features and a very friendly graphical user\n" @@ -15694,7 +15830,7 @@ msgid "" "such as Batch image processing." msgstr "" -#: gnu/packages/photo.scm:669 +#: gnu/packages/photo.scm:670 msgid "" "Entangle is an application which uses GTK and libgphoto2 to provide a\n" "graphical interface for tethered photography with digital cameras. It\n" @@ -15702,14 +15838,14 @@ msgid "" "off' shooting directly from the controlling computer." msgstr "" -#: gnu/packages/photo.scm:740 +#: gnu/packages/photo.scm:741 msgid "" "Hugin is an easy to use panoramic imaging toolchain with a graphical\n" "user interface. It can be used to assemble a mosaic of photographs into\n" "a complete panorama and stitch any series of overlapping pictures." msgstr "" -#: gnu/packages/photo.scm:794 +#: gnu/packages/photo.scm:795 msgid "" "RawTherapee is a raw image processing suite. It comprises a\n" "subset of image editing operations specifically aimed at non-destructive raw\n" @@ -15753,7 +15889,28 @@ msgid "" "`special effects' using the filter mechanism." msgstr "" -#: gnu/packages/scanner.scm:144 +#: gnu/packages/scanner.scm:83 +msgid "" +"This SANE backend lets you scan documents and images from scanners and\n" +"multi-function printers that speak eSCL (marketed as ``AirScan'') or\n" +"@acronym{WSD, Web Services for Devices} (or ``WS-Scan'').\n" +"\n" +"Both are vendor-neutral protocols that allow ``driverless'' scanning over IPv4\n" +"and IPv6 networks without the vendor-specific drivers that make up most of the\n" +"sane-backends collection. This is similar to how most contemporary printers\n" +"speak the universal @acronym{IPP, Internet Printing Protocol}.\n" +"\n" +"Only scanners that support eSCL will also work over USB. This requires a\n" +"suitable IPP-over-USB daemon like ipp-usb to be installed and configured.\n" +"\n" +"Any eSCL or WSD-capable scanner should just work. sane-airscan automatically\n" +"discovers and configures devices, including which protocol to use. It was\n" +"successfully tested with many devices from Brother, Canon, Dell, Kyocera,\n" +"Lexmark, Epson, HP, OKI, Panasonic, Pantum, Ricoh, Samsung, and Xerox, with both\n" +"WSD and eSCL." +msgstr "" + +#: gnu/packages/scanner.scm:200 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -15761,7 +15918,7 @@ msgid "" "package contains the library, but no drivers." msgstr "" -#: gnu/packages/scanner.scm:192 +#: gnu/packages/scanner.scm:248 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -15769,7 +15926,7 @@ msgid "" "package contains the library and drivers." msgstr "" -#: gnu/packages/scanner.scm:243 +#: gnu/packages/scanner.scm:299 msgid "" "Scanbd stands for scanner button daemon. It regularly polls\n" "scanners for pressed buttons, function knob changes, or other events such\n" @@ -15785,7 +15942,7 @@ msgid "" "provided the driver also exposes the buttons." msgstr "" -#: gnu/packages/scanner.scm:331 +#: gnu/packages/scanner.scm:387 msgid "" "XSane is a graphical interface for controlling a scanner and acquiring\n" "images from it. You can photocopy multi-page documents and save, fax, print,\n" @@ -15797,14 +15954,14 @@ msgid "" "back-end library, which supports almost all existing scanners." msgstr "" -#: gnu/packages/scheme.scm:225 +#: gnu/packages/scheme.scm:226 msgid "" "GNU/MIT Scheme is an implementation of the Scheme programming\n" "language. It provides an interpreter, a compiler and a debugger. It also\n" "features an integrated Emacs-like editor and a large runtime library." msgstr "" -#: gnu/packages/scheme.scm:324 +#: gnu/packages/scheme.scm:325 msgid "" "Bigloo is a Scheme implementation devoted to one goal: enabling Scheme\n" "based programming style where C(++) is usually required. Bigloo attempts to\n" @@ -15815,7 +15972,7 @@ msgid "" "and between Scheme and Java programs." msgstr "" -#: gnu/packages/scheme.scm:377 +#: gnu/packages/scheme.scm:378 msgid "" "HOP is a multi-tier programming language for the Web 2.0 and the\n" "so-called diffuse Web. It is designed for programming interactive web\n" @@ -15824,7 +15981,7 @@ msgid "" "mashups, office (web agendas, mail clients, ...), etc." msgstr "" -#: gnu/packages/scheme.scm:400 +#: gnu/packages/scheme.scm:401 msgid "" "Scheme 48 is an implementation of Scheme based on a byte-code\n" "interpreter and is designed to be used as a testbed for experiments in\n" @@ -15834,7 +15991,7 @@ msgstr "" "Het dient als testlaboratorium voor te experimenteren met implementatietechnieken\n" "en om mee te exposeren." -#: gnu/packages/scheme.scm:430 +#: gnu/packages/scheme.scm:431 msgid "" "Gambit consists of two main programs: gsi, the Gambit Scheme\n" "interpreter, and gsc, the Gambit Scheme compiler. The interpreter contains\n" @@ -15845,7 +16002,7 @@ msgid "" "mixed." msgstr "" -#: gnu/packages/scheme.scm:464 +#: gnu/packages/scheme.scm:465 msgid "" "Chibi-Scheme is a very small library with no external dependencies\n" "intended for use as an extension and scripting language in C programs. In\n" @@ -15854,7 +16011,7 @@ msgid "" "threads." msgstr "" -#: gnu/packages/scheme.scm:512 +#: gnu/packages/scheme.scm:513 msgid "" "Structure and Interpretation of Computer Programs (SICP) is\n" "a textbook aiming to teach the principles of computer programming.\n" @@ -15864,19 +16021,19 @@ msgid "" "metalinguistic abstraction, recursion, interpreters, and modular programming." msgstr "" -#: gnu/packages/scheme.scm:556 +#: gnu/packages/scheme.scm:557 msgid "" "String pattern-matching library for scheme48 based on the SRE\n" "regular-expression notation." msgstr "" -#: gnu/packages/scheme.scm:589 +#: gnu/packages/scheme.scm:590 msgid "" "SLIB is a portable Scheme library providing compatibility and\n" "utility functions for all standard Scheme implementations." msgstr "" -#: gnu/packages/scheme.scm:643 +#: gnu/packages/scheme.scm:644 msgid "" "GNU SCM is an implementation of Scheme. This\n" "implementation includes Hobbit, a Scheme-to-C compiler, which can\n" @@ -15884,7 +16041,7 @@ msgid "" "linked with a SCM executable." msgstr "" -#: gnu/packages/scheme.scm:702 +#: gnu/packages/scheme.scm:703 msgid "" "TinyScheme is a light-weight Scheme interpreter that implements as large a\n" "subset of R5RS as was possible without getting very large and complicated.\n" @@ -15900,7 +16057,7 @@ msgid "" "small program, it is easy to comprehend, get to grips with, and use." msgstr "" -#: gnu/packages/scheme.scm:783 +#: gnu/packages/scheme.scm:784 msgid "" "Stalin is an aggressively optimizing whole-program compiler\n" "for Scheme that does polyvariant interprocedural flow analysis,\n" @@ -15912,7 +16069,7 @@ msgid "" "generation." msgstr "" -#: gnu/packages/scheme.scm:819 +#: gnu/packages/scheme.scm:820 msgid "" "Scheme 9 from Empty Space (S9fES) is a mature, portable, and\n" "comprehensible public-domain interpreter for R4RS Scheme offering:\n" @@ -15927,14 +16084,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/scheme.scm:877 +#: gnu/packages/scheme.scm:878 msgid "" "@code{femtolisp} is a scheme-like lisp implementation with a\n" "simple, elegant Scheme dialect. It is a lisp-1 with lexical scope.\n" "The core is 12 builtin special forms and 33 builtin functions." msgstr "" -#: gnu/packages/scheme.scm:940 +#: gnu/packages/scheme.scm:941 msgid "" "Gauche is a R7RS Scheme scripting engine aiming at being a\n" "handy tool that helps programmers and system administrators to write small to\n" @@ -15944,7 +16101,7 @@ msgid "" "and list gauche extension packages." msgstr "" -#: gnu/packages/scheme.scm:1038 +#: gnu/packages/scheme.scm:1039 msgid "" "Gerbil is an opinionated dialect of Scheme designed for Systems\n" "Programming, with a state of the art macro and module system on top of the Gambit\n" @@ -16081,7 +16238,7 @@ msgid "" "server and an IRC server." msgstr "" -#: gnu/packages/shells.scm:107 +#: gnu/packages/shells.scm:108 msgid "" "dash is a POSIX-compliant @command{/bin/sh} implementation that aims to be\n" "as small as possible, often without sacrificing speed. It is faster than the\n" @@ -16089,7 +16246,7 @@ msgid "" "direct descendant of NetBSD's Almquist Shell (@command{ash})." msgstr "" -#: gnu/packages/shells.scm:255 +#: gnu/packages/shells.scm:256 msgid "" "Fish (friendly interactive shell) is a shell focused on interactive use,\n" "discoverability, and friendliness. Fish has very user-friendly and powerful\n" @@ -16101,20 +16258,20 @@ msgid "" "and syntax highlighting." msgstr "" -#: gnu/packages/shells.scm:308 +#: gnu/packages/shells.scm:309 msgid "" "@code{fish-foreign-env} wraps bash script execution in a way\n" "that environment variables that are exported or modified get imported back\n" "into fish." msgstr "" -#: gnu/packages/shells.scm:344 +#: gnu/packages/shells.scm:345 msgid "" "This is a reimplementation by Byron Rakitzis of the Plan 9 shell. It\n" "has a small feature set similar to a traditional Bourne shell." msgstr "" -#: gnu/packages/shells.scm:377 +#: gnu/packages/shells.scm:378 msgid "" "Es is an extensible shell. The language was derived from the Plan 9\n" "shell, rc, and was influenced by functional programming languages, such as\n" @@ -16123,7 +16280,7 @@ msgid "" "written by Paul Haahr and Byron Rakitzis." msgstr "" -#: gnu/packages/shells.scm:455 +#: gnu/packages/shells.scm:456 msgid "" "Tcsh is an enhanced, but completely compatible version of the Berkeley\n" "UNIX C shell (csh). It is a command language interpreter usable both as an\n" @@ -16132,7 +16289,7 @@ msgid "" "history mechanism, job control and a C-like syntax." msgstr "" -#: gnu/packages/shells.scm:522 +#: gnu/packages/shells.scm:523 msgid "" "The Z shell (zsh) is a Unix shell that can be used\n" "as an interactive login shell and as a powerful command interpreter\n" @@ -16141,7 +16298,7 @@ msgid "" "ksh, and tcsh." msgstr "" -#: gnu/packages/shells.scm:572 +#: gnu/packages/shells.scm:573 msgid "" "Xonsh is a Python-ish, BASHwards-looking shell language and command\n" "prompt. The language is a superset of Python 3.4+ with additional shell\n" @@ -16150,7 +16307,7 @@ msgid "" "use of experts and novices alike." msgstr "" -#: gnu/packages/shells.scm:616 +#: gnu/packages/shells.scm:617 msgid "" "Scsh is a Unix shell embedded in Scheme. Scsh has two main\n" "components: a process notation for running programs and setting up pipelines\n" @@ -16158,7 +16315,7 @@ msgid "" "operating system." msgstr "" -#: gnu/packages/shells.scm:658 +#: gnu/packages/shells.scm:659 msgid "" "Linenoise is a minimal, zero-config, readline replacement.\n" "Its features include:\n" @@ -16172,7 +16329,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/shells.scm:722 +#: gnu/packages/shells.scm:723 msgid "" "S is a new shell that aims to be extremely simple. It does not\n" "implement the POSIX shell standard.\n" @@ -16186,19 +16343,19 @@ msgid "" "A @code{andglob} program is also provided along with s." msgstr "" -#: gnu/packages/shells.scm:753 +#: gnu/packages/shells.scm:754 msgid "" "Oksh is a port of the OpenBSD Korn Shell.\n" "The OpenBSD Korn Shell is a cleaned up and enhanced ksh." msgstr "" -#: gnu/packages/shells.scm:783 +#: gnu/packages/shells.scm:784 msgid "" "loksh is a Linux port of OpenBSD's @command{ksh}. It is a small,\n" "interactive POSIX shell targeted at resource-constrained systems." msgstr "" -#: gnu/packages/shells.scm:821 +#: gnu/packages/shells.scm:822 msgid "" "mksh is an actively developed free implementation of the\n" "Korn Shell programming language and a successor to the Public Domain Korn\n" @@ -16230,7 +16387,7 @@ msgid "" "files and text." msgstr "" -#: gnu/packages/shells.scm:1006 +#: gnu/packages/shells.scm:1005 msgid "" "Nu draws inspiration from projects like PowerShell, functional\n" "programming languages, and modern CLI tools. Rather than thinking of files\n" @@ -16241,7 +16398,7 @@ msgid "" "of commands called a ``pipeline''." msgstr "" -#: gnu/packages/shells.scm:1037 +#: gnu/packages/shells.scm:1036 msgid "" "This package is a library for ANSI terminal colors and styles (bold,\n" "underline)." @@ -16497,19 +16654,19 @@ msgid "" "your calls and messages." msgstr "" -#: gnu/packages/telephony.scm:874 +#: gnu/packages/telephony.scm:869 msgid "" "PJProject provides an implementation of the Session\n" "Initiation Protocol (SIP) and a multimedia framework." msgstr "" -#: gnu/packages/telephony.scm:916 +#: gnu/packages/telephony.scm:911 msgid "" "A collection of libraries and header files for implementing\n" "telephony functionality into custom Telegram clients." msgstr "" -#: gnu/packages/tex.scm:532 +#: gnu/packages/tex.scm:543 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -16519,20 +16676,20 @@ msgid "" "This package contains the binaries." msgstr "" -#: gnu/packages/tex.scm:571 +#: gnu/packages/tex.scm:582 msgid "" "kpathsea is a library, whose purpose is to return a filename\n" "from a list of user-specified directories similar to how shells look up\n" "executables. It is maintained as a part of TeX Live." msgstr "" -#: gnu/packages/tex.scm:591 +#: gnu/packages/tex.scm:602 msgid "" "This package provides the docstrip utility to strip\n" "documentation from TeX files. It is part of the LaTeX base." msgstr "" -#: gnu/packages/tex.scm:606 +#: gnu/packages/tex.scm:617 msgid "" "This bundle provides generic access to Unicode Consortium\n" "data for TeX use. It contains a set of text files provided by the Unicode\n" @@ -16545,7 +16702,7 @@ msgid "" "out to date by @code{unicode-letters.tex}." msgstr "" -#: gnu/packages/tex.scm:638 +#: gnu/packages/tex.scm:649 msgid "" "This package includes Knuth's original @file{hyphen.tex},\n" "@file{zerohyph.tex} to disable hyphenation, @file{language.us} which starts\n" @@ -16553,13 +16710,13 @@ msgid "" "default versions of those), etc." msgstr "" -#: gnu/packages/tex.scm:659 +#: gnu/packages/tex.scm:670 msgid "" "This package provides files needed for converting DVI files\n" "to PostScript." msgstr "" -#: gnu/packages/tex.scm:673 +#: gnu/packages/tex.scm:684 msgid "" "This bundle provides a collection of model \".ini\" files\n" "for creating TeX formats. These files are commonly used to introduced\n" @@ -16568,13 +16725,13 @@ msgid "" "to adapt the plain e-TeX source file to work with XeTeX and LuaTeX." msgstr "" -#: gnu/packages/tex.scm:736 +#: gnu/packages/tex.scm:747 msgid "" "This package provides the Metafont base files needed to\n" "build fonts using the Metafont system." msgstr "" -#: gnu/packages/tex.scm:821 +#: gnu/packages/tex.scm:832 msgid "" "This package provides TeX macros for converting Adobe Font\n" "Metric files to TeX metric and virtual font format. Fontinst helps mainly\n" @@ -16584,7 +16741,7 @@ msgid "" "typesetting in these fonts." msgstr "" -#: gnu/packages/tex.scm:842 +#: gnu/packages/tex.scm:853 msgid "" "This is Fontname, a naming scheme for (the base part of)\n" "external TeX font filenames. This makes at most eight-character names\n" @@ -16592,7 +16749,7 @@ msgid "" "documents." msgstr "" -#: gnu/packages/tex.scm:915 +#: gnu/packages/tex.scm:926 msgid "" "This package provides the Computer Modern fonts by Donald\n" "Knuth. The Computer Modern font family is a large collection of text,\n" @@ -16600,7 +16757,7 @@ msgid "" "8A." msgstr "" -#: gnu/packages/tex.scm:946 +#: gnu/packages/tex.scm:957 msgid "" "The CM-Super family provides Adobe Type 1 fonts that replace\n" "the T1/TS1-encoded Computer Modern (EC/TC), T1/TS1-encoded Concrete,\n" @@ -16610,13 +16767,13 @@ msgid "" "originals." msgstr "" -#: gnu/packages/tex.scm:979 +#: gnu/packages/tex.scm:990 msgid "" "This package provides a drop-in replacements for the Courier\n" "font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:1002 +#: gnu/packages/tex.scm:1013 msgid "" "The TeX-GYRE bundle consist of multiple font families:\n" "@itemize @bullet\n" @@ -16636,21 +16793,21 @@ msgid "" "support (for use with a variety of encodings) is provided." msgstr "" -#: gnu/packages/tex.scm:1041 +#: gnu/packages/tex.scm:1052 msgid "" "The Latin Modern fonts are derived from the famous Computer\n" "Modern fonts designed by Donald E. Knuth and described in Volume E of his\n" "Computers & Typesetting series." msgstr "" -#: gnu/packages/tex.scm:1106 +#: gnu/packages/tex.scm:1117 msgid "" "This is a collection of core TeX and METAFONT macro files\n" "from Donald Knuth, including the plain format, plain base, and the MF logo\n" "fonts." msgstr "" -#: gnu/packages/tex.scm:1181 +#: gnu/packages/tex.scm:1192 msgid "" "This is a collection of fonts for use with standard LaTeX\n" "packages and classes. It includes invisible fonts (for use with the slides\n" @@ -16658,14 +16815,14 @@ msgid "" "symbol fonts." msgstr "" -#: gnu/packages/tex.scm:1253 +#: gnu/packages/tex.scm:1264 msgid "" "This package provides LaTeX and font definition files to access the\n" "Knuthian mflogo fonts described in The Metafontbook and to typeset Metafont\n" "logos in LaTeX documents." msgstr "" -#: gnu/packages/tex.scm:1274 +#: gnu/packages/tex.scm:1285 msgid "" "These fonts were created in METAFONT by Knuth, for his own publications.\n" "At some stage, the letters P and S were added, so that the METAPOST logo could\n" @@ -16674,7 +16831,7 @@ msgid "" "Taco Hoekwater." msgstr "" -#: gnu/packages/tex.scm:1402 +#: gnu/packages/tex.scm:1415 gnu/packages/tex.scm:1579 msgid "" "This package provides an extended set of fonts for use in mathematics,\n" "including: extra mathematical symbols; blackboard bold letters (uppercase\n" @@ -16688,7 +16845,7 @@ msgid "" "details can be found in the documentation." msgstr "" -#: gnu/packages/tex.scm:1432 +#: gnu/packages/tex.scm:1609 msgid "" "Mkpattern is a general purpose program for the generation of\n" "hyphenation patterns, with definition of letter sets and template-like\n" @@ -16696,7 +16853,7 @@ msgid "" "output encodings, and features generation of clean UTF-8 patterns." msgstr "" -#: gnu/packages/tex.scm:1489 +#: gnu/packages/tex.scm:1666 msgid "" "This package provides an extended version of TeX (which is capable of\n" "running as if it were TeX unmodified). E-TeX has been specified by the LaTeX\n" @@ -16705,122 +16862,131 @@ msgid "" "incorporates the e-TeX extensions." msgstr "" -#: gnu/packages/tex.scm:1507 +#: gnu/packages/tex.scm:1684 msgid "" "This package contains files used to build the Plain TeX format, as\n" "described in the TeXbook, together with various supporting files (some also\n" "discussed in the book)." msgstr "" -#: gnu/packages/tex.scm:1533 +#: gnu/packages/tex.scm:1702 +msgid "" +"The package facilitates wrapping text to a specific character width, breaking\n" +"lines by words rather than, as done by TeX, by characters. The primary use for\n" +"these facilities is to aid the generation of messages sent to the log file or\n" +"console output to display messages to the user. Package authors may also find\n" +"this useful when writing out arbitary text to an external file." +msgstr "" + +#: gnu/packages/tex.scm:1730 msgid "" "This package provides a drop-in replacements for the Helvetica\n" "font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:1546 +#: gnu/packages/tex.scm:1743 msgid "" "The package provides hyphenation patterns for the Afrikaans\n" "language." msgstr "" -#: gnu/packages/tex.scm:1560 +#: gnu/packages/tex.scm:1757 msgid "" "The package provides hyphenation patterns for ancient\n" "Greek." msgstr "" -#: gnu/packages/tex.scm:1573 +#: gnu/packages/tex.scm:1770 msgid "" "The package provides hyphenation patterns for the Armenian\n" "language." msgstr "" -#: gnu/packages/tex.scm:1587 +#: gnu/packages/tex.scm:1784 msgid "" "The package provides hyphenation patterns for the Basque\n" "language." msgstr "" -#: gnu/packages/tex.scm:1601 +#: gnu/packages/tex.scm:1798 msgid "" "The package provides hyphenation patterns for the Belarusian\n" "language." msgstr "" -#: gnu/packages/tex.scm:1613 +#: gnu/packages/tex.scm:1810 msgid "" "The package provides hyphenation patterns for the Bulgarian\n" "language in T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1627 +#: gnu/packages/tex.scm:1824 msgid "" "The package provides hyphenation patterns for Catalan in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1640 +#: gnu/packages/tex.scm:1837 msgid "" "The package provides hyphenation patterns for unaccented\n" "Chinese pinyin T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1652 +#: gnu/packages/tex.scm:1849 msgid "" "The package provides hyphenation patterns for Church\n" "Slavonic in UTF-8 encoding." msgstr "" -#: gnu/packages/tex.scm:1665 +#: gnu/packages/tex.scm:1862 msgid "" "The package provides hyphenation patterns for Coptic in\n" "UTF-8 encoding as well as in ASCII-based encoding for 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:1678 +#: gnu/packages/tex.scm:1875 msgid "" "The package provides hyphenation patterns for Croatian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1690 +#: gnu/packages/tex.scm:1887 msgid "" "The package provides hyphenation patterns for Czech in T1/EC\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1702 +#: gnu/packages/tex.scm:1899 msgid "" "The package provides hyphenation patterns for Danish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1715 +#: gnu/packages/tex.scm:1912 msgid "" "The package provides hyphenation patterns for Dutch in T1/EC\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1728 +#: gnu/packages/tex.scm:1925 msgid "" "The package provides additional hyphenation patterns for\n" "American and British English in ASCII encoding." msgstr "" -#: gnu/packages/tex.scm:1742 +#: gnu/packages/tex.scm:1939 msgid "" "The package provides hyphenation patterns for Esperanto ISO\n" "Latin 3 and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1754 +#: gnu/packages/tex.scm:1951 msgid "" "The package provides hyphenation patterns for Estonian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1768 +#: gnu/packages/tex.scm:1965 msgid "" "The package provides hyphenation patterns for languages\n" "written using the Ethiopic script for Unicode engines. They are not supposed\n" @@ -16828,94 +16994,94 @@ msgid "" "be replaced by files tailored to individual languages." msgstr "" -#: gnu/packages/tex.scm:1782 +#: gnu/packages/tex.scm:1979 msgid "" "The package provides hyphenation patterns for Finnish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1794 +#: gnu/packages/tex.scm:1991 msgid "" "The package provides hyphenation patterns for Finnish for\n" "school in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1806 +#: gnu/packages/tex.scm:2003 msgid "" "The package provides hyphenation patterns for French in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1818 +#: gnu/packages/tex.scm:2015 msgid "" "The package provides hyphenation patterns for Friulan in\n" "ASCII encodings." msgstr "" -#: gnu/packages/tex.scm:1831 +#: gnu/packages/tex.scm:2028 msgid "" "The package provides hyphenation patterns for Galician in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1843 +#: gnu/packages/tex.scm:2040 msgid "" "The package provides hyphenation patterns for Georgian in\n" "T8M, T8K, and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1861 +#: gnu/packages/tex.scm:2058 msgid "" "This package provides hyphenation patterns for German in\n" "T1/EC and UTF-8 encodings, for traditional and reformed spelling, including\n" "Swiss German." msgstr "" -#: gnu/packages/tex.scm:1880 +#: gnu/packages/tex.scm:2077 msgid "" "This package provides hyphenation patterns for Modern Greek\n" "in monotonic and polytonic spelling in LGR and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1894 +#: gnu/packages/tex.scm:2091 msgid "" "This package provides hyphenation patterns for Hungarian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1907 +#: gnu/packages/tex.scm:2104 msgid "" "This package provides hyphenation patterns for Icelandic in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1930 +#: gnu/packages/tex.scm:2127 msgid "" "This package provides hyphenation patterns for Assamese,\n" "Bengali, Gujarati, Hindi, Kannada, Malayalam, Marathi, Oriya, Panjabi, Tamil\n" "and Telugu for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:1943 +#: gnu/packages/tex.scm:2140 msgid "" "This package provides hyphenation patterns for\n" "Indonesian (Bahasa Indonesia) in ASCII encoding. They are probably also\n" "usable for Malay (Bahasa Melayu)." msgstr "" -#: gnu/packages/tex.scm:1956 +#: gnu/packages/tex.scm:2153 msgid "" "This package provides hyphenation patterns for Interlingua\n" "in ASCII encoding." msgstr "" -#: gnu/packages/tex.scm:1968 +#: gnu/packages/tex.scm:2165 msgid "" "This package provides hyphenation patterns for\n" "Irish (Gaeilge) in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1981 +#: gnu/packages/tex.scm:2178 msgid "" "This package provides hyphenation patterns for Italian in\n" "ASCII encoding. Compliant with the Recommendation UNI 6461 on hyphenation\n" @@ -16923,14 +17089,14 @@ msgid "" "UNI)." msgstr "" -#: gnu/packages/tex.scm:1995 +#: gnu/packages/tex.scm:2192 msgid "" "This package provides hyphenation patterns for\n" "Kurmanji (Northern Kurdish) as spoken in Turkey and by the Kurdish diaspora in\n" "Europe, in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2011 +#: gnu/packages/tex.scm:2208 msgid "" "This package provides hyphenation patterns for Latin in\n" "T1/EC and UTF-8 encodings, mainly in modern spelling (u when u is needed and v\n" @@ -16944,39 +17110,39 @@ msgid "" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2032 +#: gnu/packages/tex.scm:2229 msgid "" "This package provides hyphenation patterns for Latvian in\n" "L7X and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2045 +#: gnu/packages/tex.scm:2242 msgid "" "This package provides hyphenation patterns for Lithuanian in\n" "L7X and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2060 +#: gnu/packages/tex.scm:2257 #, fuzzy #| msgid "" #| "This package provides a dictionary for the Hunspell spell-checking\n" #| "library." -msgid "This package provides hypenation patterns for Macedonian." +msgid "This package provides hyphenation patterns for Macedonian." msgstr "Dit pakket stelt een woordenboe ter beschikking voor de spellingscontroleur Hunspell." -#: gnu/packages/tex.scm:2073 +#: gnu/packages/tex.scm:2270 msgid "" "This package provides hyphenation patterns for Mongolian in\n" "T2A, LMC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2088 +#: gnu/packages/tex.scm:2285 msgid "" "This package provides hyphenation patterns for Norwegian\n" "Bokmal and Nynorsk in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2102 +#: gnu/packages/tex.scm:2299 msgid "" "This package provides hyphenation patterns for Occitan in\n" "T1/EC and UTF-8 encodings. They are supposed to be valid for all the Occitan\n" @@ -16985,94 +17151,94 @@ msgid "" "Alps encompassing the southern half of the French pentagon." msgstr "" -#: gnu/packages/tex.scm:2117 +#: gnu/packages/tex.scm:2314 msgid "" "This package provides hyphenation patterns for Panjabi in\n" "T1/EC encoding." msgstr "" -#: gnu/packages/tex.scm:2130 +#: gnu/packages/tex.scm:2327 msgid "" "This package provides hyphenation patterns for Piedmontese\n" "in ASCII encoding. Compliant with 'Gramatica dla lengua piemonteisa' by\n" "Camillo Brero." msgstr "" -#: gnu/packages/tex.scm:2143 +#: gnu/packages/tex.scm:2340 msgid "" "This package provides hyphenation patterns for Polish in QX\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2156 +#: gnu/packages/tex.scm:2353 msgid "" "This package provides hyphenation patterns for Portuguese in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2168 +#: gnu/packages/tex.scm:2365 msgid "" "This package provides hyphenation patterns for Romanian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2181 +#: gnu/packages/tex.scm:2378 msgid "" "This package provides hyphenation patterns for Romansh in\n" "ASCII encodings. They are supposed to comply with the rules indicated by the\n" "Lia Rumantscha (Romansh language society)." msgstr "" -#: gnu/packages/tex.scm:2194 +#: gnu/packages/tex.scm:2391 msgid "" "This package provides hyphenation patterns for Russian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2207 +#: gnu/packages/tex.scm:2404 msgid "" "This package provides hyphenation patterns for Sanskrit and\n" "Prakrit in longdesc transliteration, and in Devanagari, Bengali, Kannada,\n" "Malayalam longdesc and Telugu scripts for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:2224 +#: gnu/packages/tex.scm:2421 msgid "" "This package provides hyphenation patterns for Serbian in\n" "T1/EC, T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2237 +#: gnu/packages/tex.scm:2434 msgid "" "This package provides hyphenation patterns for Slovak in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2249 +#: gnu/packages/tex.scm:2446 msgid "" "This package provides hyphenation patterns for Slovenian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2265 +#: gnu/packages/tex.scm:2462 msgid "" "The package provides hyphenation patterns for Spanish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2277 +#: gnu/packages/tex.scm:2474 msgid "" "This package provides hyphenation patterns for Swedish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2289 +#: gnu/packages/tex.scm:2486 msgid "" "This package provides hyphenation patterns for Thai in LTH\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2302 +#: gnu/packages/tex.scm:2499 msgid "" "The package provides hyphenation patterns for Turkish in\n" "T1/EC and UTF-8 encodings. The patterns for Turkish were first produced for\n" @@ -17082,31 +17248,31 @@ msgid "" "compatibility with 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:2319 +#: gnu/packages/tex.scm:2516 msgid "" "The package provides hyphenation patterns for Turkmen in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2331 +#: gnu/packages/tex.scm:2528 msgid "" "This package provides hyphenation patterns for Ukrainian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2344 +#: gnu/packages/tex.scm:2541 msgid "" "This package provides hyphenation patterns for Upper Sorbian\n" "in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2356 +#: gnu/packages/tex.scm:2553 msgid "" "This package provides hyphenation patterns for Welsh in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2477 +#: gnu/packages/tex.scm:2674 msgid "" "Modern native UTF-8 engines such as XeTeX and LuaTeX need\n" "hyphenation patterns in UTF-8 format, whereas older systems require\n" @@ -17119,7 +17285,7 @@ msgid "" "converters, will completely supplant the older patterns." msgstr "" -#: gnu/packages/tex.scm:2521 +#: gnu/packages/tex.scm:2718 msgid "" "The package provides experimental hyphenation patterns for\n" "the German language, covering both traditional and reformed orthography. The\n" @@ -17127,21 +17293,29 @@ msgid "" "bundle." msgstr "" -#: gnu/packages/tex.scm:2542 +#: gnu/packages/tex.scm:2739 msgid "" "The package provides a range of hyphenation patterns for\n" "Ukrainian, depending on the encoding of the output font including the standard\n" "T2A." msgstr "" -#: gnu/packages/tex.scm:2577 +#: gnu/packages/tex.scm:2774 msgid "" "The package provides a collection of Russian hyphenation\n" "patterns supporting a number of Cyrillic font encodings, including T2,\n" "UCY (Omega Unicode Cyrillic), LCY, LWN (OT2), and koi8-r." msgstr "" -#: gnu/packages/tex.scm:2620 +#: gnu/packages/tex.scm:2792 +msgid "" +"This package deals with input encodings. It provides a wider range of input\n" +"encodings using standard mappings, than does inputenc; it also covers nearly all\n" +"slots. In this way, it serves as more uptodate replacement for package\n" +"inputenc." +msgstr "" + +#: gnu/packages/tex.scm:2853 msgid "" "Kpathsea is a library and utility programs which provide\n" "path searching facilities for TeX file types, including the self-locating\n" @@ -17149,13 +17323,27 @@ msgid "" "mechanism. This package provides supporting files." msgstr "" -#: gnu/packages/tex.scm:2636 +#: gnu/packages/tex.scm:2876 +msgid "" +"The family contains text fonts in roman, sans-serif and monospaced\n" +"shapes, with true small caps and old-style numbers; the package offers full\n" +"support of the textcomp package. The mathematics fonts include all the AMS\n" +"fonts, in both normal and bold weights. Each of the font types is available\n" +"in two main versions: default and light. Each version is available in four\n" +"variants: default; oldstyle numbers; oldstyle numbers with old ligatures such\n" +"as ct and st, and long-tailed capital Q; and veryoldstyle with long s. Other\n" +"variants include small caps as default or large small caps, and for\n" +"mathematics both upright and slanted shapes for Greek letters, as well as\n" +"default and narrow versions of multiple integrals." +msgstr "" + +#: gnu/packages/tex.scm:2898 msgid "" "The package provides configuration files for LaTeX-related\n" "formats." msgstr "" -#: gnu/packages/tex.scm:2867 +#: gnu/packages/tex.scm:3127 msgid "" "This bundle comprises the source of LaTeX itself, together with several\n" "packages which are considered \"part of the kernel\". This bundle, together\n" @@ -17163,7 +17351,7 @@ msgid "" "contain." msgstr "" -#: gnu/packages/tex.scm:2885 +#: gnu/packages/tex.scm:3145 msgid "" "This LaTeX packages provides two hooks for @code{\\end@{document@}}\n" "that are executed after the hook of @code{\\AtEndDocument}:\n" @@ -17173,13 +17361,13 @@ msgid "" "of the @file{.aux} file." msgstr "" -#: gnu/packages/tex.scm:2905 +#: gnu/packages/tex.scm:3165 msgid "" "This package provides hooks for adding code at the beginning of\n" "@file{.aux} files." msgstr "" -#: gnu/packages/tex.scm:2921 +#: gnu/packages/tex.scm:3181 msgid "" "The package adds support for EPS files in the @code{graphicx} package\n" "when running under pdfTeX. If an EPS graphic is detected, the package\n" @@ -17187,7 +17375,7 @@ msgid "" "@command{epstopdf}." msgstr "" -#: gnu/packages/tex.scm:2943 +#: gnu/packages/tex.scm:3203 msgid "" "LaTeX2e's @code{filecontents} and @code{filecontents*} environments\n" "enable a LaTeX source file to generate external files as it runs through\n" @@ -17198,7 +17386,7 @@ msgid "" "@code{filecontents*} anywhere." msgstr "" -#: gnu/packages/tex.scm:2964 +#: gnu/packages/tex.scm:3224 msgid "" "This package provides the original (and now obsolescent) graphics\n" "inclusion macros for use with dvips, still widely used by Plain TeX users (in\n" @@ -17208,7 +17396,7 @@ msgid "" "users, via its Plain TeX version.)" msgstr "" -#: gnu/packages/tex.scm:2986 +#: gnu/packages/tex.scm:3246 msgid "" "This package provides tools for the flexible handling of verbatim text\n" "including: verbatim commands in footnotes; a variety of verbatim environments\n" @@ -17218,7 +17406,7 @@ msgid "" "verbatim source)." msgstr "" -#: gnu/packages/tex.scm:3008 +#: gnu/packages/tex.scm:3268 msgid "" "This bundle is a combined distribution consisting of @file{dvips.def},\n" "@file{pdftex.def}, @file{luatex.def}, @file{xetex.def}, @file{dvipdfmx.def},\n" @@ -17226,13 +17414,19 @@ msgid "" "packages." msgstr "" -#: gnu/packages/tex.scm:3026 +#: gnu/packages/tex.scm:3286 msgid "" "This bundle includes @file{color.cfg} and @file{graphics.cfg} files that\n" "set default \"driver\" options for the color and graphics packages." msgstr "" -#: gnu/packages/tex.scm:3048 +#: gnu/packages/tex.scm:3303 +msgid "" +"The package provides Greek LICR macro definitions and encoding definition files\n" +"for Greek text font encodings for use with fontenc." +msgstr "" + +#: gnu/packages/tex.scm:3325 msgid "" "This is a collection of LaTeX packages for producing color, including\n" "graphics (e.g. PostScript) files, and rotation and scaling of text in LaTeX\n" @@ -17240,13 +17434,13 @@ msgid "" "keyval, and lscape." msgstr "" -#: gnu/packages/tex.scm:3066 +#: gnu/packages/tex.scm:3343 msgid "" "This package provides the code for the @code{color} option that is\n" "used by @code{hyperref} and @code{bookmark}." msgstr "" -#: gnu/packages/tex.scm:3098 +#: gnu/packages/tex.scm:3375 msgid "" "The package starts from the basic facilities of the colorcolor package,\n" "and provides easy driver-independent access to several kinds of color tints,\n" @@ -17257,7 +17451,7 @@ msgid "" "tables." msgstr "" -#: gnu/packages/tex.scm:3171 +#: gnu/packages/tex.scm:3448 msgid "" "The package provides an implementation of a parser for\n" "documents matching the XML 1.0 and XML Namespace Recommendations. Element and\n" @@ -17265,7 +17459,7 @@ msgid "" "XML, using UTF-8 or a suitable 8-bit encoding." msgstr "" -#: gnu/packages/tex.scm:3222 +#: gnu/packages/tex.scm:3499 msgid "" "The @code{hyperref} package is used to handle cross-referencing commands\n" "in LaTeX to produce hypertext links in the document. The package provides\n" @@ -17277,20 +17471,20 @@ msgid "" "@code{nameref} packages, which make use of the facilities of @code{hyperref}." msgstr "" -#: gnu/packages/tex.scm:3262 +#: gnu/packages/tex.scm:3539 msgid "" "The bundle comprises various LaTeX packages, providing among others:\n" "better accessibility support for PDF files; extensible chemists reaction\n" "arrows; record information about document class(es) used; and many more." msgstr "" -#: gnu/packages/tex.scm:3285 +#: gnu/packages/tex.scm:3562 msgid "" "This package provides additional rerun warnings if some auxiliary\n" "files have changed. It is based on MD5 checksum, provided by pdfTeX." msgstr "" -#: gnu/packages/tex.scm:3319 +#: gnu/packages/tex.scm:3596 msgid "" "This package is a collection of (variously) simple tools provided as\n" "part of the LaTeX required tools distribution, comprising the following\n" @@ -17300,7 +17494,7 @@ msgid "" "xr, and xspace." msgstr "" -#: gnu/packages/tex.scm:3338 +#: gnu/packages/tex.scm:3615 msgid "" "The command @code{\\url} is a form of verbatim command that\n" "allows linebreaks at certain characters or combinations of characters, accepts\n" @@ -17312,14 +17506,14 @@ msgid "" "of file names." msgstr "" -#: gnu/packages/tex.scm:3364 +#: gnu/packages/tex.scm:3641 msgid "" "This package provides font maps that were originally part of\n" "the now obsolete teTeX distributions but are still used at the core of the TeX\n" "Live distribution." msgstr "" -#: gnu/packages/tex.scm:3391 +#: gnu/packages/tex.scm:3668 msgid "" "The l3kernel bundle provides an implementation of the LaTeX3\n" "programmers’ interface, as a set of packages that run under LaTeX 2e. The\n" @@ -17328,7 +17522,7 @@ msgid "" "that the LaTeX3 conventions can be used with regular LaTeX 2e packages." msgstr "" -#: gnu/packages/tex.scm:3420 +#: gnu/packages/tex.scm:3697 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" @@ -17337,7 +17531,7 @@ msgid "" "an independent schedule." msgstr "" -#: gnu/packages/tex.scm:3484 +#: gnu/packages/tex.scm:3761 msgid "" "This bundle holds prototype implementations of concepts for a LaTeX\n" "designer interface, to be used with the experimental LaTeX kernel as\n" @@ -17354,14 +17548,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:3511 +#: gnu/packages/tex.scm:3788 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" "here are defined for the dvips engine only." msgstr "" -#: gnu/packages/tex.scm:3539 +#: gnu/packages/tex.scm:3816 msgid "" "Fontspec is a package for XeLaTeX and LuaLaTeX. It provides an\n" "automatic and unified interface to feature-rich AAT and OpenType fonts through\n" @@ -17369,7 +17563,7 @@ msgid "" "the l3kernel and xparse bundles from the LaTeX 3 development team." msgstr "" -#: gnu/packages/tex.scm:3569 +#: gnu/packages/tex.scm:3846 msgid "" "The original grffile package extended the file name processing of the\n" "@code{graphics} package to support a larger range of file names. The base\n" @@ -17377,13 +17571,13 @@ msgid "" "is a stub that just loads @code{graphicx}." msgstr "" -#: gnu/packages/tex.scm:3610 +#: gnu/packages/tex.scm:3887 msgid "" "This package provides @code{\\StringEncodingConvert} for converting a\n" "string between different encodings. Both LaTeX and plain-TeX are supported." msgstr "" -#: gnu/packages/tex.scm:3653 +#: gnu/packages/tex.scm:3930 msgid "" "The l3build module is designed to support the development of\n" "high-quality LaTeX code by providing: a unit testing system, automated\n" @@ -17392,14 +17586,20 @@ msgid "" "@code{.tex} file which provides the testing environment." msgstr "" -#: gnu/packages/tex.scm:3690 +#: gnu/packages/tex.scm:3953 msgid "" "Lualibs is a collection of Lua modules useful for general programming.\n" "The bundle is based on Lua modules shipped with ConTeXt, and made available in\n" "this bundle for use independent of ConTeXt." msgstr "" -#: gnu/packages/tex.scm:3718 +#: gnu/packages/tex.scm:3972 +msgid "" +"This package provides a Lua module for processing application arguments\n" +"in the same way as BSD/GNU @code{getopt_long(3)} functions do." +msgstr "" + +#: gnu/packages/tex.scm:3999 msgid "" "Luaotfload is an adaptation of the ConTeXt font loading system for the\n" "Plain and LaTeX formats. It allows OpenType fonts to be loaded with font\n" @@ -17408,11 +17608,7 @@ msgid "" "loading fonts by their proper names instead of file names." msgstr "" -#: gnu/packages/tex.scm:3790 -msgid "This package is necessary to use LaTeX with the LuaTeX engine." -msgstr "" - -#: gnu/packages/tex.scm:3809 +#: gnu/packages/tex.scm:4025 msgid "" "This is the principal package in the AMS-LaTeX distribution. It adapts\n" "for use in LaTeX most of the mathematical features found in AMS-TeX; it is\n" @@ -17427,7 +17623,7 @@ msgid "" "definitions." msgstr "" -#: gnu/packages/tex.scm:3843 +#: gnu/packages/tex.scm:4059 msgid "" "This bundle contains three AMS classes: @code{amsartamsart} (for writing\n" "articles for the AMS), @code{amsbookamsbook} (for books) and\n" @@ -17436,7 +17632,7 @@ msgid "" "distribution." msgstr "" -#: gnu/packages/tex.scm:3890 +#: gnu/packages/tex.scm:4106 msgid "" "The package manages culturally-determined typographical (and other)\n" "rules, and hyphenation patterns for a wide range of languages. A document may\n" @@ -17447,7 +17643,7 @@ msgid "" "polyglossia package rather than Babel." msgstr "" -#: gnu/packages/tex.scm:3917 +#: gnu/packages/tex.scm:4133 msgid "" "This package provides the language definition file for support of\n" "English in @code{babel}. Care is taken to select British hyphenation patterns\n" @@ -17455,13 +17651,14 @@ msgid "" "for Canadian and USA text." msgstr "" -#: gnu/packages/tex.scm:3939 +#: gnu/packages/tex.scm:4173 msgid "" -"This package provides support for the French language for the\n" -"babel multilingual system." +"The package, formerly known as frenchb, establishes French conventions\n" +"in a document (or a subset of the conventions, if French is not the main\n" +"language of the document)." msgstr "" -#: gnu/packages/tex.scm:3959 +#: gnu/packages/tex.scm:4196 msgid "" "This package provides the language definition file for support of German\n" "in @code{babel}. It provides all the necessary macros, definitions and\n" @@ -17470,14 +17667,14 @@ msgid "" "Swiss varieties of German." msgstr "" -#: gnu/packages/tex.scm:3986 +#: gnu/packages/tex.scm:4223 msgid "" "This package provides the language definition file for\n" "support of Swedish in @code{babel}. It provides all the necessary macros,\n" "definitions and settings to typeset Swedish documents." msgstr "" -#: gnu/packages/tex.scm:4008 +#: gnu/packages/tex.scm:4245 msgid "" "This bundle of macros files provides macro support (including font\n" "encoding macros) for the use of Cyrillic characters in fonts encoded under the\n" @@ -17485,7 +17682,7 @@ msgid "" "language that is written in a Cyrillic alphabet." msgstr "" -#: gnu/packages/tex.scm:4126 +#: gnu/packages/tex.scm:4363 msgid "" "The PSNFSS collection includes a set of files that provide a complete\n" "working setup of the LaTeX font selection scheme (NFSS2) for use with common\n" @@ -17500,20 +17697,20 @@ msgid "" "part of the LaTeX required set of packages." msgstr "" -#: gnu/packages/tex.scm:4177 gnu/packages/tex.scm:4269 +#: gnu/packages/tex.scm:4414 gnu/packages/tex.scm:4506 msgid "" "This is a very limited subset of the TeX Live distribution.\n" "It includes little more than the required set of LaTeX packages." msgstr "" -#: gnu/packages/tex.scm:4248 +#: gnu/packages/tex.scm:4485 msgid "" "This package contains the fonts map configuration file\n" "generated for the base TeX Live packages as well as, optionally, user-provided\n" "ones." msgstr "" -#: gnu/packages/tex.scm:4288 +#: gnu/packages/tex.scm:4525 msgid "" "These fonts are considered the \"ultimate answer\" to IPA\n" "typesetting. The encoding of these 8-bit fonts has been registered as LaTeX\n" @@ -17522,7 +17719,7 @@ msgid "" "TS3 fonts." msgstr "" -#: gnu/packages/tex.scm:4311 +#: gnu/packages/tex.scm:4548 msgid "" "Amsrefs is a LaTeX package for bibliographies that provides an archival\n" "data format similar to the format of BibTeX database files, but adapted to\n" @@ -17530,7 +17727,7 @@ msgid "" "conjunction with BibTeX or as a replacement for BibTeX." msgstr "" -#: gnu/packages/tex.scm:4340 +#: gnu/packages/tex.scm:4577 msgid "" "This package aims to provide a one-stop solution to requirements for\n" "footnotes. It offers: Multiple footnote apparatus superior to that of\n" @@ -17544,7 +17741,7 @@ msgid "" "@code{suffix} packages." msgstr "" -#: gnu/packages/tex.scm:4368 +#: gnu/packages/tex.scm:4605 msgid "" "The package provides the commands @code{\\blindtext} and\n" "@code{\\Blindtext} for creating \"blind\" text useful in testing new classes\n" @@ -17555,7 +17752,7 @@ msgid "" "ipsum\" text, see the @code{lipsum} package)." msgstr "" -#: gnu/packages/tex.scm:4407 +#: gnu/packages/tex.scm:4644 msgid "" "This package implements a document layout for writing letters according\n" "to the rules of DIN (Deutsches Institut für Normung, German standardisation\n" @@ -17567,7 +17764,7 @@ msgid "" "package." msgstr "" -#: gnu/packages/tex.scm:4433 +#: gnu/packages/tex.scm:4670 msgid "" "This package provides a means to add a textual, light grey watermark on\n" "every page or on the first page of a document. Typical usage may consist in\n" @@ -17577,7 +17774,7 @@ msgid "" "on everypage." msgstr "" -#: gnu/packages/tex.scm:4457 +#: gnu/packages/tex.scm:4694 msgid "" "This package provides the @code{\\collect@@body} command (as in\n" "@code{amsmath}), as well as a @code{\\long} version @code{\\Collect@@Body},\n" @@ -17585,7 +17782,7 @@ msgid "" "define a new author interface to creating new environments." msgstr "" -#: gnu/packages/tex.scm:4479 +#: gnu/packages/tex.scm:4716 msgid "" "LaTeX users sometimes need to ensure that two or more blocks of text\n" "occupy the same amount of horizontal space on the page. To that end, the\n" @@ -17599,7 +17796,7 @@ msgid "" "also provided." msgstr "" -#: gnu/packages/tex.scm:4504 +#: gnu/packages/tex.scm:4741 msgid "" "This package gives the user complete control of how the entries of\n" "the table of contents should be constituted from the name, number, and page\n" @@ -17619,7 +17816,7 @@ msgid "" "table of contents." msgstr "" -#: gnu/packages/tex.scm:4546 +#: gnu/packages/tex.scm:4783 msgid "" "The package provides additional features for the LaTeX\n" "@code{description} environment, including adjustable left margin. The package\n" @@ -17628,7 +17825,7 @@ msgid "" "@code{enumerate} lists, and numbered lists remain in sequence)." msgstr "" -#: gnu/packages/tex.scm:4566 +#: gnu/packages/tex.scm:4803 msgid "" "This package provides macros to read and compare the modification dates\n" "of files. The files may be @code{.tex} files, images or other files (as long\n" @@ -17640,14 +17837,14 @@ msgid "" "but non-expandable ones." msgstr "" -#: gnu/packages/tex.scm:4589 +#: gnu/packages/tex.scm:4826 msgid "" "The @code{hanging} package facilitates the typesetting of hanging\n" "paragraphs. The package also enables typesetting with hanging punctuation,\n" "by making punctuation characters active." msgstr "" -#: gnu/packages/tex.scm:4612 +#: gnu/packages/tex.scm:4849 msgid "" "This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX support for\n" "the Fira Sans family of fonts designed by Erik Spiekermann and Ralph du\n" @@ -17655,7 +17852,7 @@ msgid "" "corresponding italics: light, regular, medium, bold, ..." msgstr "" -#: gnu/packages/tex.scm:4635 +#: gnu/packages/tex.scm:4872 msgid "" "This package uses the (La)TeX extension @code{-shell-escape} to\n" "establish whether the document is being processed on a Windows or on a\n" @@ -17666,7 +17863,7 @@ msgid "" "classes of systems." msgstr "" -#: gnu/packages/tex.scm:4660 +#: gnu/packages/tex.scm:4897 msgid "" "This bundle provides a package that implements both author-year and\n" "numbered references, as well as much detailed of support for other\n" @@ -17676,20 +17873,20 @@ msgid "" "designed from the start to be compatible with @code{natbib}." msgstr "" -#: gnu/packages/tex.scm:4679 +#: gnu/packages/tex.scm:4916 msgid "" "This package provides a friendly interface for defining the meaning of\n" "Unicode characters. The document should be processed by (pdf)LaTeX with the\n" "Unicode option of @code{inputenc} or @code{inputenx}, or by XeLaTeX/LuaLaTeX." msgstr "" -#: gnu/packages/tex.scm:4699 +#: gnu/packages/tex.scm:4936 msgid "" "This package makes a number of utility functions from pdfTeX\n" "available for luaTeX by reimplementing them using Lua." msgstr "" -#: gnu/packages/tex.scm:4719 +#: gnu/packages/tex.scm:4956 msgid "" "This package allows LaTeX constructions (equations, picture\n" "environments, etc.) to be precisely superimposed over Encapsulated PostScript\n" @@ -17700,7 +17897,7 @@ msgid "" "rotated." msgstr "" -#: gnu/packages/tex.scm:4751 +#: gnu/packages/tex.scm:4988 msgid "" "This is a package for processing PostScript graphics with @code{psfrag}\n" "labels within pdfLaTeX documents. Every graphic is compiled individually,\n" @@ -17708,7 +17905,7 @@ msgid "" "re-processing." msgstr "" -#: gnu/packages/tex.scm:4771 +#: gnu/packages/tex.scm:5008 msgid "" "This package provides the @code{\\setcounterref} and\n" "@code{\\addtocounterref} commands which use the section (or other) number\n" @@ -17717,7 +17914,7 @@ msgid "" "corresponding thing with the page reference of the label." msgstr "" -#: gnu/packages/tex.scm:4791 +#: gnu/packages/tex.scm:5028 msgid "" "This package provides a class that produces overhead\n" "slides (transparencies), with many facilities. Seminar is not nowadays\n" @@ -17726,14 +17923,14 @@ msgid "" "21st-century presentation styles." msgstr "" -#: gnu/packages/tex.scm:4812 +#: gnu/packages/tex.scm:5049 msgid "" "The package provides a versatile way to stack objects vertically in a\n" "variety of customizable ways. A number of useful macros are provided, all\n" "of which make use of the @code{stackengine} core." msgstr "" -#: gnu/packages/tex.scm:4828 +#: gnu/packages/tex.scm:5065 msgid "" "This package provides control over the typography of the\n" "@dfn{Table of Contents}, @dfn{List of Figures} and @dfn{List of Tables},\n" @@ -17741,7 +17938,7 @@ msgid "" "be changed." msgstr "" -#: gnu/packages/tex.scm:4862 +#: gnu/packages/tex.scm:5099 msgid "" "This very short package allows you to expandably remove spaces around a\n" "token list (commands are provided to remove spaces before, spaces after, or\n" @@ -17749,13 +17946,32 @@ msgid "" "space-stripped macros." msgstr "" -#: gnu/packages/tex.scm:4897 +#: gnu/packages/tex.scm:5115 +#, fuzzy +#| msgid "" +#| "This package provides a GNU Guile interface to the zstd (``zstandard'')\n" +#| "compression library." +msgid "This package provides a math interface to the Rsfs fonts." +msgstr "" +"Dit pakket voorziet een GNU Guile-interface voor de zstd-compressiebibliotheek\n" +"(‘zstandard’)." + +#: gnu/packages/tex.scm:5152 msgid "" "This package defines a command @code{\\captionof} for putting a caption\n" "to something that's not a float." msgstr "" -#: gnu/packages/tex.scm:4913 +#: gnu/packages/tex.scm:5170 +msgid "" +"Many of David Carlisle's more substantial packages stand on their own,\n" +"or as part of the LaTeX latex-tools set; this set contains: making dotless\n" +"@emph{j} characters for fonts that don't have them; a method for combining the\n" +"capabilities of longtable and tabularx; an environment for including plain TeX\n" +"in LaTeX documents; a jiffy to create slashed characters for physicists." +msgstr "" + +#: gnu/packages/tex.scm:5189 msgid "" "You can hyperlink DOI numbers to doi.org. However, some publishers have\n" "elected to use nasty characters in their DOI numbering scheme (@code{<},\n" @@ -17765,7 +17981,7 @@ msgid "" "hyperlink to the target of the DOI." msgstr "" -#: gnu/packages/tex.scm:4936 +#: gnu/packages/tex.scm:5212 msgid "" "This package is a toolbox of programming facilities geared primarily\n" "towards LaTeX class and package authors. It provides LaTeX frontends to some\n" @@ -17776,7 +17992,7 @@ msgid "" "of the LaTeX kernel." msgstr "" -#: gnu/packages/tex.scm:4976 +#: gnu/packages/tex.scm:5252 msgid "" "This package provides seven predefined chapter heading styles. Each\n" "style can be modified using a set of simple commands. Optionally one can\n" @@ -17784,7 +18000,7 @@ msgid "" "headings." msgstr "" -#: gnu/packages/tex.scm:5011 +#: gnu/packages/tex.scm:5287 msgid "" "The package creates three environments: @code{framed}, which puts an\n" "ordinary frame box around the region, @code{shaded}, which shades the region,\n" @@ -17795,7 +18011,7 @@ msgid "" "@code{\\MakeFramed} to make your own framed-style environments." msgstr "" -#: gnu/packages/tex.scm:5045 +#: gnu/packages/tex.scm:5321 msgid "" "This package is designed for formatting formless letters in German; it\n" "can also be used for English (by those who can read the documentation). There\n" @@ -17803,13 +18019,13 @@ msgid "" "\"old\" and a \"new\" version of g-brief." msgstr "" -#: gnu/packages/tex.scm:5067 +#: gnu/packages/tex.scm:5343 msgid "" "The package deals with connections in two-dimensional style, optionally\n" "in colour." msgstr "" -#: gnu/packages/tex.scm:5087 +#: gnu/packages/tex.scm:5363 msgid "" "The package allows citations in the German style, which is considered by\n" "many to be particularly reader-friendly. The citation provides a small amount\n" @@ -17819,7 +18035,7 @@ msgid "" "BibLaTeX, and is considered experimental." msgstr "" -#: gnu/packages/tex.scm:5113 +#: gnu/packages/tex.scm:5389 msgid "" "This package provides an easy and flexible user interface to customize\n" "page layout, implementing auto-centering and auto-balancing mechanisms so that\n" @@ -17830,7 +18046,7 @@ msgid "" "ability to communicate the paper size it's set up to the output." msgstr "" -#: gnu/packages/tex.scm:5138 +#: gnu/packages/tex.scm:5414 msgid "" "This collection of tools includes: @code{atsupport} for short commands\n" "starting with @code{@@}, macros to sanitize the OT1 encoding of the\n" @@ -17840,13 +18056,13 @@ msgid "" "array environments; verbatim handling; and syntax diagrams." msgstr "" -#: gnu/packages/tex.scm:5162 +#: gnu/packages/tex.scm:5438 msgid "" "This package provides a complete Babel replacement for users of LuaLaTeX\n" "and XeLaTeX; it relies on the @code{fontspec} package, version 2.0 at least." msgstr "" -#: gnu/packages/tex.scm:5182 +#: gnu/packages/tex.scm:5458 msgid "" "This package was a predecessor of @code{longtable}; the newer\n" "package (designed on quite different principles) is easier to use and more\n" @@ -17854,7 +18070,7 @@ msgid "" "situations where longtable has problems." msgstr "" -#: gnu/packages/tex.scm:5217 +#: gnu/packages/tex.scm:5493 msgid "" "Texinfo is the preferred format for documentation in the GNU project;\n" "the format may be used to produce online or printed output from a single\n" @@ -17863,7 +18079,23 @@ msgid "" "hypertext linkages in some cases)." msgstr "" -#: gnu/packages/tex.scm:5240 +#: gnu/packages/tex.scm:5513 +msgid "" +"The textcase package offers commands @code{\\MakeTextUppercase} and\n" +"@code{\\MakeTextLowercase} are similar to the standard @code{\\MakeUppercase}\n" +"and @code{\\MakeLowercase}, but they do not change the case of any sections of\n" +"mathematics, or the arguments of @code{\\cite}, @code{\\label} and\n" +"@code{\\ref} commands within the argument. A further command\n" +"@code{\\NoCaseChange} does nothing but suppress case change within its\n" +"argument, so to force uppercase of a section including an environment, one\n" +"might say:\n" +"\n" +"@example\n" +"\\MakeTextUppercase{...\\NoCaseChange{\\begin{foo}} ...\\NoCaseChange{\\end{foo}}...}\n" +"@end example\n" +msgstr "" + +#: gnu/packages/tex.scm:5543 msgid "" "Typewriter-style fonts are best for program listings, but Computer\n" "Modern Typewriter prints @code{`} and @code{'} as bent opening and closing\n" @@ -17877,14 +18109,14 @@ msgid "" "does not affect @code{\\tt}, @code{\\texttt}, etc." msgstr "" -#: gnu/packages/tex.scm:5281 +#: gnu/packages/tex.scm:5584 msgid "" "This is a simple package to set up document margins. This package is\n" "considered obsolete; alternatives are the @code{typearea} package from the\n" "@code{koma-script} bundle, or the @code{geometry} package." msgstr "" -#: gnu/packages/tex.scm:5302 +#: gnu/packages/tex.scm:5605 msgid "" "The appendix package provides various ways of formatting the titles of\n" "appendices. Also (sub)appendices environments are provided that can be used,\n" @@ -17893,14 +18125,14 @@ msgid "" "command." msgstr "" -#: gnu/packages/tex.scm:5321 +#: gnu/packages/tex.scm:5624 msgid "" "This package implements a new bookmark (outline) organization for the\n" "@code{hyperref} package. Bookmark properties such as style and color. Other\n" "action types are available (URI, GoToR, Named)." msgstr "" -#: gnu/packages/tex.scm:5342 +#: gnu/packages/tex.scm:5645 msgid "" "Identify areas of text to be marked with changebars with the\n" "@code{\\cbstart} and @code{\\cbend} commands; the bars may be coloured. The\n" @@ -17909,19 +18141,19 @@ msgid "" "drivers, and VTeX and pdfTeX." msgstr "" -#: gnu/packages/tex.scm:5379 +#: gnu/packages/tex.scm:5682 msgid "" "This package embeds CMap tables into PDF files to make search and\n" "copy-and-paste functions work properly." msgstr "" -#: gnu/packages/tex.scm:5399 +#: gnu/packages/tex.scm:5702 msgid "" "This package allows rows, columns, and even individual cells in LaTeX\n" "tables to be coloured." msgstr "" -#: gnu/packages/tex.scm:5432 +#: gnu/packages/tex.scm:5735 msgid "" "This package provides variants of @code{\\fbox}: @code{\\shadowbox},\n" "@code{\\doublebox}, @code{\\ovalbox}, @code{\\Ovalbox}, with helpful tools for\n" @@ -17929,14 +18161,14 @@ msgid "" "floats, center, flushleft, and flushright, lists, and pages." msgstr "" -#: gnu/packages/tex.scm:5467 +#: gnu/packages/tex.scm:5770 msgid "" "The package provides extensive facilities, both for constructing headers\n" "and footers, and for controlling their use (for example, at times when LaTeX\n" "would automatically change the heading style in use)." msgstr "" -#: gnu/packages/tex.scm:5488 +#: gnu/packages/tex.scm:5791 msgid "" "This package improves the interface for defining floating objects such\n" "as figures and tables. It introduces the boxed float, the ruled float and the\n" @@ -17946,7 +18178,7 @@ msgid "" "with @code{\\floatplacement{figure}{H}}." msgstr "" -#: gnu/packages/tex.scm:5512 +#: gnu/packages/tex.scm:5815 msgid "" "This is a collection of ways to change the typesetting of footnotes.\n" "The package provides means of changing the layout of the footnotes themselves,\n" @@ -17956,7 +18188,7 @@ msgid "" "footnotes with symbols rather than numbers." msgstr "" -#: gnu/packages/tex.scm:5532 +#: gnu/packages/tex.scm:5835 msgid "" "TeX’s @code{\\let} assignment does not work for LaTeX macros with\n" "optional arguments, or for macros that are defined as robust macros by\n" @@ -17964,7 +18196,7 @@ msgid "" "that also takes care of the involved internal macros." msgstr "" -#: gnu/packages/tex.scm:5556 +#: gnu/packages/tex.scm:5859 msgid "" "The package enables the user to typeset programs (programming code)\n" "within LaTeX; the source code is read directly by TeX---no front-end processor\n" @@ -17972,7 +18204,7 @@ msgid "" "styles. Support for @code{hyperref} is provided." msgstr "" -#: gnu/packages/tex.scm:5591 +#: gnu/packages/tex.scm:5894 msgid "" "This package provides miscellaneous macros by Joerg Knappen, including:\n" "represent counters in greek; Maxwell's non-commutative division;\n" @@ -17984,13 +18216,13 @@ msgid "" "in SGML; use maths minus in text as appropriate; simple Young tableaux." msgstr "" -#: gnu/packages/tex.scm:5615 +#: gnu/packages/tex.scm:5918 msgid "" "This package provides facilities for using key-value format in\n" "package options." msgstr "" -#: gnu/packages/tex.scm:5684 +#: gnu/packages/tex.scm:5987 msgid "" "The EC fonts are European Computer Modern Fonts, supporting the complete\n" "LaTeX T1 encoding defined at the 1990 TUG conference hold at Cork/Ireland.\n" @@ -18007,7 +18239,7 @@ msgid "" "differs from the EC in a number of particulars." msgstr "" -#: gnu/packages/tex.scm:5717 +#: gnu/packages/tex.scm:6020 msgid "" "This package provides a set of virtual fonts which emulates T1 coded\n" "fonts using the standard CM fonts. The package name, AE fonts, supposedly\n" @@ -18017,7 +18249,7 @@ msgid "" "via the CM-super, Latin Modern and (in a restricted way) CM-LGC font sets." msgstr "" -#: gnu/packages/tex.scm:5742 +#: gnu/packages/tex.scm:6045 msgid "" "Inconsolata is a monospaced font designed by Raph Levien. This package\n" "contains the font (in both Adobe Type 1 and OpenType formats) in regular and\n" @@ -18026,25 +18258,25 @@ msgid "" "TeX, and LaTeX font definition and other relevant files." msgstr "" -#: gnu/packages/tex.scm:5771 +#: gnu/packages/tex.scm:6074 msgid "" "This package provides a drop-in replacements for the Times font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5799 +#: gnu/packages/tex.scm:6102 msgid "" "This package provides a drop-in replacements for the Palatino font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5824 +#: gnu/packages/tex.scm:6127 msgid "" "This package provides a drop-in replacements for the Zapfding font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5896 +#: gnu/packages/tex.scm:6199 msgid "" "The fonts provide uppercase formal script letters for use as symbols in\n" "scientific and mathematical typesetting (in contrast to the informal script\n" @@ -18054,14 +18286,14 @@ msgid "" "one of the packages @code{calrsfs} and @code{mathrsfs}." msgstr "" -#: gnu/packages/tex.scm:5920 +#: gnu/packages/tex.scm:6223 msgid "" "The package adds one or more user commands to LaTeX's @code{shipout}\n" "routine, which may be used to place the output at fixed positions. The\n" "@code{grid} option may be used to find the correct places." msgstr "" -#: gnu/packages/tex.scm:5954 +#: gnu/packages/tex.scm:6257 msgid "" "Extensions to @code{epic} and the LaTeX picture drawing environment,\n" "include the drawing of lines at any slope, the drawing of circles in any\n" @@ -18071,7 +18303,7 @@ msgid "" "@code{\\special} commands." msgstr "" -#: gnu/packages/tex.scm:5991 +#: gnu/packages/tex.scm:6276 msgid "" "This package is intended to ease customizing the three basic list\n" "environments: @code{enumerate}, @code{itemize} and @code{description}. It\n" @@ -18080,14 +18312,14 @@ msgid "" "@code{\\begin{itemize}[itemsep=1ex,leftmargin=1cm]}." msgstr "" -#: gnu/packages/tex.scm:6014 +#: gnu/packages/tex.scm:6301 msgid "" "The package provides tools for creating tabular cells spanning multiple\n" "rows. It has a lot of flexibility, including an option for specifying an\n" "entry at the \"natural\" width of its text." msgstr "" -#: gnu/packages/tex.scm:6048 +#: gnu/packages/tex.scm:6335 msgid "" "The @code{overpic} environment is a cross between the LaTeX\n" "@code{picture} environment and the @code{\\includegraphics} command of\n" @@ -18096,14 +18328,14 @@ msgid "" "positions; a grid for orientation is available." msgstr "" -#: gnu/packages/tex.scm:6084 +#: gnu/packages/tex.scm:6371 msgid "" "Simply changing @code{\\parskip} and @code{\\parindent} leaves a layout\n" "that is untidy; this package (though it is no substitute for a properly\n" "designed class) helps alleviate this untidiness." msgstr "" -#: gnu/packages/tex.scm:6105 +#: gnu/packages/tex.scm:6392 msgid "" "This package simplifies the inclusion of external multi-page PDF\n" "documents in LaTeX documents. Pages may be freely selected and it is possible\n" @@ -18113,7 +18345,7 @@ msgid "" "use this package to insert PostScript files, in addition to PDF files." msgstr "" -#: gnu/packages/tex.scm:6146 +#: gnu/packages/tex.scm:6433 msgid "" "The fonts were originally distributed as Metafont sources only, but\n" "Adobe Type 1 versions are also now available. Macro support is provided for\n" @@ -18122,7 +18354,7 @@ msgid "" "the whole font." msgstr "" -#: gnu/packages/tex.scm:6171 +#: gnu/packages/tex.scm:6458 msgid "" "This (deprecated) package provides support for the manipulation and\n" "reference of small or \"sub\" figures and tables within a single figure or\n" @@ -18135,7 +18367,7 @@ msgid "" "the more recent @code{subcaption} package more satisfactory." msgstr "" -#: gnu/packages/tex.scm:6198 +#: gnu/packages/tex.scm:6485 msgid "" "The package defines a @code{tabular*}-like environment, @code{tabulary},\n" "taking a \"total width\" argument as well as the column specifications. The\n" @@ -18146,7 +18378,7 @@ msgid "" "according to the natural width of the widest cell in the column." msgstr "" -#: gnu/packages/tex.scm:6236 +#: gnu/packages/tex.scm:6523 msgid "" "This package facilitates tables with titles (captions) and notes. The\n" "title and notes are given a width equal to the body of the table (a\n" @@ -18155,7 +18387,7 @@ msgid "" "environment." msgstr "" -#: gnu/packages/tex.scm:6263 +#: gnu/packages/tex.scm:6550 msgid "" "Txfonts supplies virtual text roman fonts using Adobe Times (or URW\n" "NimbusRomNo9L) with some modified and additional text symbols in the OT1, T1,\n" @@ -18171,7 +18403,7 @@ msgid "" "TeX metrics (VF and TFM files) and macros for use with LaTeX." msgstr "" -#: gnu/packages/tex.scm:6312 +#: gnu/packages/tex.scm:6599 msgid "" "Iwona is a two-element sans-serif typeface. It was created\n" "as an alternative version of the Kurier typeface, which was designed in 1975\n" @@ -18182,7 +18414,7 @@ msgid "" "of ink traps which typify the Kurier font." msgstr "" -#: gnu/packages/tex.scm:6335 +#: gnu/packages/tex.scm:6622 msgid "" "This package contains a collection of macros by Jörg Knappen:\n" "@table @code\n" @@ -18218,7 +18450,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/tex.scm:6442 +#: gnu/packages/tex.scm:6729 msgid "" "JadeTeX is a companion package to the OpenJade DSSSL\n" "processor. OpenJade applies a DSSSL stylesheet to an SGML or XML document.\n" @@ -18229,7 +18461,7 @@ msgid "" "command)." msgstr "" -#: gnu/packages/tex.scm:6472 +#: gnu/packages/tex.scm:6759 msgid "" "The package provides the Libertine and Biolinum fonts in both Type 1 and\n" "OTF styles, together with support macros for their use. Monospaced and\n" @@ -18239,7 +18471,7 @@ msgid "" "@code{libertine-legacy} packages." msgstr "" -#: gnu/packages/tex.scm:6504 +#: gnu/packages/tex.scm:6791 msgid "" "The package contains LaTeX support for the DejaVu fonts, which are\n" "derived from the Vera fonts but contain more characters and styles. The fonts\n" @@ -18248,7 +18480,7 @@ msgid "" "LGR. The package doesn't (currently) support mathematics." msgstr "" -#: gnu/packages/tex.scm:6540 +#: gnu/packages/tex.scm:6827 msgid "" "This package provides an interface to sectioning commands for selection\n" "from various title styles, e.g. for marginal titles and to change the font of\n" @@ -18257,7 +18489,7 @@ msgid "" "floats in a page. You may assign headers/footers to individual floats, too." msgstr "" -#: gnu/packages/tex.scm:6563 +#: gnu/packages/tex.scm:6850 msgid "" "LaTeX, by default, restricts the sizes at which you can use its default\n" "computer modern fonts, to a fixed set of discrete sizes (effectively, a set\n" @@ -18272,7 +18504,7 @@ msgid "" "@code{ec} fonts." msgstr "" -#: gnu/packages/tex.scm:6617 +#: gnu/packages/tex.scm:6904 msgid "" "The LH fonts address the problem of the wide variety of alphabets that\n" "are written with Cyrillic-style characters. The fonts are the original basis\n" @@ -18285,7 +18517,7 @@ msgid "" "OT2 encoded fonts, CM bright shaped fonts and Concrete shaped fonts." msgstr "" -#: gnu/packages/tex.scm:6647 +#: gnu/packages/tex.scm:6934 msgid "" "The Martin Vogel’s Symbols fonts (marvosym) contains the\n" "Euro currency symbol as defined by the European commission, along with symbols\n" @@ -18295,34 +18527,41 @@ msgid "" "the derived Type 1 font, together with support files for TeX (LaTeX)." msgstr "" -#: gnu/packages/tex.scm:6685 +#: gnu/packages/tex.scm:6972 msgid "" "MetaPost uses a language based on that of Metafont to produce precise\n" "technical illustrations. Its output is scalable PostScript or SVG, rather\n" "than the bitmaps Metafont creates." msgstr "" -#: gnu/packages/tex.scm:6706 +#: gnu/packages/tex.scm:6993 msgid "" "This package provides a class for typesetting publications of the\n" "Association for Computing Machinery (ACM)." msgstr "" -#: gnu/packages/tex.scm:6739 +#: gnu/packages/tex.scm:7026 msgid "" "The @code{varwidth} environment is superficially similar to\n" "@code{minipage}, but the specified width is just a maximum value — the box may\n" "get a narrower “natural” width." msgstr "" -#: gnu/packages/tex.scm:6757 +#: gnu/packages/tex.scm:7041 +msgid "" +"The varwidth environment is superficially similar to minipage, but the\n" +"specified width is just a maximum value --- the box may get a narrower natural\n" +"width." +msgstr "" + +#: gnu/packages/tex.scm:7059 msgid "" "This package provides the @code{wasy} (Waldi symbol) fonts,\n" "in the Metafont and Adobe Type 1 formats. Support under LaTeX is provided by\n" "the @code{wasysym} package." msgstr "" -#: gnu/packages/tex.scm:6778 +#: gnu/packages/tex.scm:7080 msgid "" "The @code{wasy} (Waldi Symbol) font by Roland Waldi provides many glyphs like\n" "male and female symbols and astronomical symbols, as well as the complete\n" @@ -18330,14 +18569,14 @@ msgid "" "implements an easy to use interface for these symbols." msgstr "" -#: gnu/packages/tex.scm:6815 +#: gnu/packages/tex.scm:7117 msgid "" "This package allows figures or tables to have text wrapped around them.\n" "It does not work in combination with list environments, but can be used in a\n" "@code{parbox} or @code{minipage}, and in two-column format." msgstr "" -#: gnu/packages/tex.scm:6849 +#: gnu/packages/tex.scm:7151 msgid "" "The bundle provides the @code{ucs} package, and @code{utf8x.def},\n" "together with a large number of support files. The @code{utf8x.def}\n" @@ -18350,7 +18589,7 @@ msgid "" "package of that name now exists." msgstr "" -#: gnu/packages/tex.scm:6883 +#: gnu/packages/tex.scm:7185 msgid "" "The main purpose of the preview package is the extraction of selected\n" "elements from a LaTeX source, like formulas or graphics, into separate\n" @@ -18361,7 +18600,7 @@ msgid "" "files." msgstr "" -#: gnu/packages/tex.scm:6908 +#: gnu/packages/tex.scm:7210 msgid "" "This package ensures that all acronyms used in the text are spelled out\n" "in full at least once. It also provides an environment to build a list of\n" @@ -18370,13 +18609,13 @@ msgid "" "e-TeX." msgstr "" -#: gnu/packages/tex.scm:6945 +#: gnu/packages/tex.scm:7247 msgid "" "This package provides an extension of TeX which can be configured to\n" "directly generate PDF documents instead of DVI." msgstr "" -#: gnu/packages/tex.scm:7025 +#: gnu/packages/tex.scm:7327 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18386,7 +18625,7 @@ msgid "" "This package contains the complete tree of texmf-dist data." msgstr "" -#: gnu/packages/tex.scm:7088 +#: gnu/packages/tex.scm:7390 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18396,7 +18635,7 @@ msgid "" "This package contains the complete TeX Live distribution." msgstr "" -#: gnu/packages/tex.scm:7130 +#: gnu/packages/tex.scm:7432 msgid "" "@code{Text::BibTeX} is a Perl library for reading, parsing,\n" "and processing BibTeX files. @code{Text::BibTeX} gives you access to the data\n" @@ -18405,13 +18644,13 @@ msgid "" "values (strings, macros, or numbers) pasted together." msgstr "" -#: gnu/packages/tex.scm:7216 +#: gnu/packages/tex.scm:7518 msgid "" "Biber is a BibTeX replacement for users of biblatex. Among\n" "other things it comes with full Unicode support." msgstr "" -#: gnu/packages/tex.scm:7250 +#: gnu/packages/tex.scm:7552 msgid "" "Rubber is a program whose purpose is to handle all tasks related to the\n" "compilation of LaTeX documents. This includes compiling the document itself,\n" @@ -18421,20 +18660,20 @@ msgid "" "PDF documents." msgstr "" -#: gnu/packages/tex.scm:7289 +#: gnu/packages/tex.scm:7591 msgid "" "Texmaker is a program that integrates many tools needed to\n" "develop documents with LaTeX, in a single application." msgstr "" -#: gnu/packages/tex.scm:7330 +#: gnu/packages/tex.scm:7632 msgid "" "@i{TeX for the Impatient} is a ~350 page book on TeX,\n" "plain TeX, and Eplain, originally written by Paul Abrahams, Kathryn Hargreaves,\n" "and Karl Berry." msgstr "" -#: gnu/packages/tex.scm:7394 +#: gnu/packages/tex.scm:7696 msgid "" "LyX is a document preparation system. It excels at letting\n" "you create complex technical and scientific articles with mathematics,\n" @@ -18443,7 +18682,7 @@ msgid "" "required: automatic sectioning and pagination, spell checking and so forth." msgstr "" -#: gnu/packages/tex.scm:7430 +#: gnu/packages/tex.scm:7732 msgid "" "The package provides an interface to embed interactive Flash (SWF) and 3D\n" "objects (Adobe U3D & PRC), as well as video and sound files or streams in the\n" @@ -18456,7 +18695,7 @@ msgid "" "specification. It replaces the now obsolete @code{movie15} package." msgstr "" -#: gnu/packages/tex.scm:7470 +#: gnu/packages/tex.scm:7772 msgid "" "This package provides OCG (Optional Content Groups) support within a PDF\n" "document.\n" @@ -18474,7 +18713,7 @@ msgid "" "It also ensures compatibility with the @code{media9} and @code{animate} packages." msgstr "" -#: gnu/packages/tex.scm:7504 +#: gnu/packages/tex.scm:7806 msgid "" "A bundle of LATEX packages by Martin Schröder; the collection comprises:\n" "\n" @@ -18488,7 +18727,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/tex.scm:7532 +#: gnu/packages/tex.scm:7852 msgid "" "The package numprint prints numbers with a separator every three\n" "digits and converts numbers given as 12345.6e789 to 12\\,345,6\\cdot\n" @@ -18509,14 +18748,14 @@ msgid "" "and after the formatted number." msgstr "" -#: gnu/packages/tex.scm:7571 +#: gnu/packages/tex.scm:7893 msgid "" "Provides commands to disable pagebreaking within a given vertical\n" "space. If there is not enough space between the command and the bottom of the\n" "page, a new page will be started." msgstr "" -#: gnu/packages/tex.scm:7597 +#: gnu/packages/tex.scm:7919 msgid "" "The package provides commands to change the page layout in the middle of\n" "a document, and to robustly check for typesetting on odd or even pages.\n" @@ -18524,7 +18763,7 @@ msgid "" "of code from the @code{memoir} class, whose user interface it shares." msgstr "" -#: gnu/packages/tex.scm:7633 +#: gnu/packages/tex.scm:7955 msgid "" "The package is used to change the format of @code{\\today}’s date,\n" "including the weekday, e.g., \"Saturday, 26 June 2008\", the 'UK format', which\n" @@ -18532,7 +18771,7 @@ msgid "" "@code{\\maketitle} of the article class, \"June 26, 2008\", the 'US format'." msgstr "" -#: gnu/packages/tex.scm:7669 +#: gnu/packages/tex.scm:7971 msgid "" "The package provides an @code{\\ul} (underline) command which will break\n" "over line ends; this technique may be used to replace @code{\\em} (both in that\n" @@ -18541,7 +18780,7 @@ msgid "" "striking out (line through words) and crossing out (/// over words)." msgstr "" -#: gnu/packages/tex.scm:7725 +#: gnu/packages/tex.scm:8029 msgid "" "PGF is a macro package for creating graphics. It is platform- and\n" "format-independent and works together with the most important TeX backend\n" @@ -18553,7 +18792,7 @@ msgid "" "produce either PostScript or PDF output." msgstr "" -#: gnu/packages/tex.scm:7771 +#: gnu/packages/tex.scm:8075 msgid "" "The KOMA-Script bundle provides replacements for the article, report, and\n" "book classes with emphasis on typography and versatility. There is also a\n" @@ -18578,7 +18817,7 @@ msgid "" "typearea (which are the main parts of the bundle)." msgstr "" -#: gnu/packages/tex.scm:7806 +#: gnu/packages/tex.scm:8110 msgid "" "This package is a modern reimplementation of package @code{everyshi},\n" "providing various commands to be executed before a @code{\\shipout} command.\n" @@ -18586,20 +18825,20 @@ msgid "" "be used either with LaTeX or with plain TeX." msgstr "" -#: gnu/packages/tex.scm:7826 +#: gnu/packages/tex.scm:8130 msgid "" "This package provides expandable arithmetic operations with big\n" "integers that can exceed TeX's number limits." msgstr "" -#: gnu/packages/tex.scm:7845 +#: gnu/packages/tex.scm:8149 msgid "" "This package defines and implements the data type bit set, a vector\n" "of bits. The size of the vector may grow dynamically. Individual bits\n" "can be manipulated." msgstr "" -#: gnu/packages/tex.scm:7864 +#: gnu/packages/tex.scm:8168 msgid "" "New primitive commands are introduced in e-TeX; sometimes the names\n" "collide with existing macros. This package solves the name clashes by\n" @@ -18607,14 +18846,14 @@ msgid "" "@code{\\unexpanded} is provided as @code{\\etex@@unexpanded}." msgstr "" -#: gnu/packages/tex.scm:7882 +#: gnu/packages/tex.scm:8186 msgid "" "This package provides commands for cleaning up the title string\n" "(such as removing @code{\\label} commands) for packages that typeset such\n" "strings." msgstr "" -#: gnu/packages/tex.scm:7898 +#: gnu/packages/tex.scm:8202 msgid "" "This package provides a complete set of macros for information,\n" "warning and error messages. Under LaTeX, the commands are wrappers for\n" @@ -18622,19 +18861,19 @@ msgid "" "complete implementations." msgstr "" -#: gnu/packages/tex.scm:7915 +#: gnu/packages/tex.scm:8219 msgid "" "This package provides expandable arithmetic operations with integers,\n" "using the e-TeX extension @code{\\numexpr} if it is available." msgstr "" -#: gnu/packages/tex.scm:7930 +#: gnu/packages/tex.scm:8234 msgid "" "This package provides the @code{\\kv@@define@@key} (analogous to\n" "keyval’s @code{\\define@@key}, to define keys for use by @code{kvsetkeys}." msgstr "" -#: gnu/packages/tex.scm:7945 +#: gnu/packages/tex.scm:8249 msgid "" "This package provides @code{\\kvsetkeys}, a variant of @code{\\setkeys}\n" "from the @code{keyval} package. Users can specify a handler that deals with\n" @@ -18642,35 +18881,35 @@ msgid "" "level of curly braces are removed from the values." msgstr "" -#: gnu/packages/tex.scm:7980 +#: gnu/packages/tex.scm:8284 msgid "" "This package allows one to capture all the items of a list, for which\n" "the parsing character has been selected by the user, and to access any of\n" "these items with a simple syntax." msgstr "" -#: gnu/packages/tex.scm:7996 +#: gnu/packages/tex.scm:8300 msgid "" "This package exports some utility macros from the LaTeX kernel into\n" "a separate namespace and also makes them available for other formats such\n" "as plain TeX." msgstr "" -#: gnu/packages/tex.scm:8012 +#: gnu/packages/tex.scm:8316 msgid "" "This package implements pdfTeX's escape features (@code{\\pdfescapehex},\n" "@code{\\pdfunescapehex}, @code{\\pdfescapename}, @code{\\pdfescapestring})\n" "using TeX or e-TeX." msgstr "" -#: gnu/packages/tex.scm:8031 +#: gnu/packages/tex.scm:8335 msgid "" "This package provides a kind of counter that provides unique number\n" "values. Several counters can be created with different names. The numeric\n" "values are not limited." msgstr "" -#: gnu/packages/tex.scm:8067 +#: gnu/packages/tex.scm:8371 msgid "" "This package allows the user to input formatted data into elements of a\n" "2-D or 3-D array and to recall that data at will by individual cell number.\n" @@ -18678,7 +18917,7 @@ msgid "" "formatted text." msgstr "" -#: gnu/packages/tex.scm:8104 +#: gnu/packages/tex.scm:8408 msgid "" "The package provides a @code{verbbox} environment to place its contents\n" "into a globally available box, or into a box specified by the user. The\n" @@ -18688,7 +18927,7 @@ msgid "" "@code{trivlist}) may not appear." msgstr "" -#: gnu/packages/tex.scm:8141 +#: gnu/packages/tex.scm:8445 msgid "" "Examplep provides sophisticated features for typesetting verbatim source\n" "code listings, including the display of the source code and its compiled LaTeX\n" @@ -18701,7 +18940,7 @@ msgid "" "titles." msgstr "" -#: gnu/packages/tex.scm:8178 +#: gnu/packages/tex.scm:8482 msgid "" "This is a package for typesetting a variety of graphs and\n" "diagrams with TeX. Xy-pic works with most formats (including LaTeX,\n" @@ -18709,7 +18948,7 @@ msgid "" "@code{diag} package, which was previously distributed stand-alone." msgstr "" -#: gnu/packages/tex.scm:8218 +#: gnu/packages/tex.scm:8522 msgid "" "BibTeX allows the user to store his citation data in generic form, while\n" "printing citations in a document in the form specified by a BibTeX style, to\n" @@ -18717,7 +18956,7 @@ msgid "" "package, such as @command{natbib} as well)." msgstr "" -#: gnu/packages/tex.scm:8241 +#: gnu/packages/tex.scm:8545 msgid "" "This package provides a copy of the Charter Type-1 fonts\n" "which Bitstream contributed to the X consortium, renamed for use with TeX.\n" @@ -18725,14 +18964,14 @@ msgid "" "@command{psnfss}." msgstr "" -#: gnu/packages/tex.scm:8337 +#: gnu/packages/tex.scm:8641 msgid "" "ConTeXt is a full featured, parameter driven macro package,\n" "which fully supports advanced interactive documents. See the ConTeXt garden\n" "for a wealth of support information." msgstr "" -#: gnu/packages/tex.scm:8362 +#: gnu/packages/tex.scm:8666 msgid "" "The beamer LaTeX class can be used for producing slides.\n" "The class works in both PostScript and direct PDF output modes, using the\n" @@ -18745,7 +18984,7 @@ msgid "" "effects, varying slide transitions and animations." msgstr "" -#: gnu/packages/tex.scm:8394 +#: gnu/packages/tex.scm:8698 msgid "" "The XMP (eXtensible Metadata platform) is a framework to add metadata to\n" "digital material to enhance the workflow in publication. The essence is that\n" @@ -18753,13 +18992,13 @@ msgid "" "the file to which it applies." msgstr "" -#: gnu/packages/tex.scm:8433 +#: gnu/packages/tex.scm:8737 msgid "" "This package helps LaTeX users to create PDF/X, PDF/A and other\n" "standards-compliant PDF documents with pdfTeX, LuaTeX and XeTeX." msgstr "" -#: gnu/packages/tex.scm:8468 +#: gnu/packages/tex.scm:8772 msgid "" "The package provides macros and environments to document\n" "LaTeX packages and classes. It is an (as yet unfinished) alternative to the\n" @@ -18770,7 +19009,7 @@ msgid "" "change." msgstr "" -#: gnu/packages/tex.scm:8496 +#: gnu/packages/tex.scm:8800 msgid "" "PSTricks offers an extensive collection of macros for\n" "generating PostScript that is usable with most TeX macro formats, including\n" @@ -18781,14 +19020,14 @@ msgid "" "or shading the cells of tables." msgstr "" -#: gnu/packages/tex.scm:8521 +#: gnu/packages/tex.scm:8825 msgid "" "Pst-text is a PSTricks based package for plotting text along\n" "a different path and manipulating characters. It includes the functionality\n" "of the old package @code{pst-char}." msgstr "" -#: gnu/packages/tex.scm:8546 +#: gnu/packages/tex.scm:8850 msgid "" "This package provides the command @code{\\marginnote} that\n" "may be used instead of @code{\\marginpar} at almost every place where\n" @@ -18796,7 +19035,7 @@ msgid "" "frames made with the @code{framed} package." msgstr "" -#: gnu/packages/tex.scm:8564 +#: gnu/packages/tex.scm:8868 msgid "" "This package, which works both for Plain TeX and for\n" "LaTeX, defines the @code{\\ifPDFTeX}, @code{\\ifXeTeX}, and @code{\\ifLuaTeX}\n" @@ -18806,7 +19045,19 @@ msgid "" "LuaTeX (respectively) is not the engine in use." msgstr "" -#: gnu/packages/tex.scm:8597 +#: gnu/packages/tex.scm:8914 +msgid "" +"The package provides an environment, tabu, which will make any sort of\n" +"tabular, and an environment longtabu which provides the facilities of tabu in\n" +"a modified longtable environment. The package requires array, xcolor for\n" +"coloured rules in tables, and colortbl for coloured cells. The longtabu\n" +"environment further requires that longtable be loaded. The package itself\n" +"does not load any of these packages for the user. The tabu environment may be\n" +"used in place of @code{tabular}, @code{tabular*} and @code{tabularx}\n" +"environments, as well as the @code{array} environment in maths mode." +msgstr "" + +#: gnu/packages/tex.scm:8945 msgid "" "This package provides a collection of simple tools that\n" "are part of the LaTeX required tools distribution, comprising the packages:\n" @@ -18818,7 +19069,7 @@ msgid "" "@code{varioref}, @code{verbatim}, @code{xr}, and @code{xspace}." msgstr "" -#: gnu/packages/tex.scm:8678 +#: gnu/packages/tex.scm:9026 msgid "" "This package is an extension of the keyval package and offers additional\n" "macros for setting keys and declaring and setting class or package options.\n" @@ -18828,7 +19079,7 @@ msgid "" "keys." msgstr "" -#: gnu/packages/tex.scm:8706 +#: gnu/packages/tex.scm:9054 msgid "" "A class and package is provided which allows TeX pictures or\n" "other TeX code to be compiled standalone or as part of a main document.\n" @@ -18840,7 +19091,7 @@ msgid "" "@code{standalone.cfg} to redefine the standalone environment." msgstr "" -#: gnu/packages/tex.scm:8739 +#: gnu/packages/tex.scm:9087 msgid "" "Typesetting values with units requires care to ensure that the combined\n" "mathematical meaning of the value plus unit combination is clear. In\n" @@ -18856,7 +19107,7 @@ msgid "" "package to handle all of the possible unit-related needs of LaTeX users." msgstr "" -#: gnu/packages/tex.scm:8770 +#: gnu/packages/tex.scm:9118 msgid "" "This package enhances the quality of tables in LaTeX, providing extra\n" "commands as well as behind-the-scenes optimisation. Guidelines are given as\n" @@ -18864,7 +19115,7 @@ msgid "" "@code{longtable} compatibility." msgstr "" -#: gnu/packages/tex.scm:8790 +#: gnu/packages/tex.scm:9138 msgid "" "This package provides advanced facilities for inline and\n" "display quotations. It is designed for a wide range of tasks ranging from the\n" @@ -18878,7 +19129,7 @@ msgid "" "styles as well as the optional active quotes are freely configurable." msgstr "" -#: gnu/packages/tex.scm:8816 +#: gnu/packages/tex.scm:9164 msgid "" "The package helps to automate a typical LaTeX\n" "workflow that involves running LaTeX several times and running tools\n" @@ -18898,7 +19149,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8848 +#: gnu/packages/tex.scm:9196 msgid "" "BibLaTeX is a complete reimplementation of the\n" "bibliographic facilities provided by LaTeX. Formatting of the\n" @@ -18924,7 +19175,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8886 +#: gnu/packages/tex.scm:9234 msgid "" "The @code{todonotes} package lets the user mark\n" "things to do later, in a simple and visually appealing way. The\n" @@ -18932,7 +19183,7 @@ msgid "" "of the visual appearance." msgstr "" -#: gnu/packages/tex.scm:8904 +#: gnu/packages/tex.scm:9252 msgid "" "@code{units} is a package for typesetting physical\n" "units in a standard-looking way. The package is based upon\n" @@ -18940,7 +19191,7 @@ msgid "" "included in the @code{units} bundle." msgstr "" -#: gnu/packages/tex.scm:8922 +#: gnu/packages/tex.scm:9270 msgid "" "@code{microtype} provides a LaTeX interface to the\n" "micro-typographic extensions that were introduced by pdfTeX and have\n" @@ -18955,7 +19206,7 @@ msgid "" "the bundle." msgstr "" -#: gnu/packages/tex.scm:8947 +#: gnu/packages/tex.scm:9295 msgid "" "The @code{caption} package provides many ways to\n" "customise the captions in floating environments like figure and table.\n" @@ -18969,13 +19220,13 @@ msgid "" "@code{subcaption} and @code{totalcount} are included in the bundle." msgstr "" -#: gnu/packages/tex.scm:8976 +#: gnu/packages/tex.scm:9324 msgid "" "This package provides a drop-in replacement for the\n" "Symbol font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:8994 +#: gnu/packages/tex.scm:9342 msgid "" "The Pazo Math fonts are a family of PostScript fonts\n" "suitable for typesetting mathematics in combination with the Palatino\n" @@ -18989,7 +19240,7 @@ msgid "" "LaTeX macro support is provided in package @code{psnfss}." msgstr "" -#: gnu/packages/tex.scm:9019 +#: gnu/packages/tex.scm:9367 msgid "" "The FPL Fonts provide a set of SC/OsF fonts for URW\n" "Palladio L which are compatible with the Palatino SC/OsF fonts from\n" @@ -18997,7 +19248,7 @@ msgid "" "the @code{psnfss} distribution." msgstr "" -#: gnu/packages/tex.scm:9043 +#: gnu/packages/tex.scm:9391 msgid "" "The @code{arev} package provides type 1 fonts,\n" "virtual fonts and LaTeX packages for using Arev Sans in both text and\n" @@ -19011,7 +19262,7 @@ msgid "" "support packages. Others are cmbright, hvmath and kerkis." msgstr "" -#: gnu/packages/tex.scm:9074 +#: gnu/packages/tex.scm:9422 msgid "" "The Math Design project offers free mathematical\n" "fonts that match with existing text fonts. To date, three free font\n" @@ -19022,7 +19273,7 @@ msgid "" "created by the Greek Font Society)." msgstr "" -#: gnu/packages/tex.scm:9099 +#: gnu/packages/tex.scm:9447 msgid "" "The @code{bera} package contains the Bera Type 1\n" "fonts and files to use the fonts with LaTeX. Bera is a set of three\n" @@ -19031,7 +19282,7 @@ msgid "" "a repackaging, for use with TeX, of the Bitstream Vera family." msgstr "" -#: gnu/packages/tex.scm:9122 +#: gnu/packages/tex.scm:9470 msgid "" "Fourier-GUTenberg is a LaTeX typesetting system\n" "which uses Adobe Utopia as its standard base font. Fourier-GUTenberg\n" @@ -19042,7 +19293,7 @@ msgid "" "trademark of Adobe Systems Incorporated." msgstr "" -#: gnu/packages/tex.scm:9145 +#: gnu/packages/tex.scm:9493 msgid "" "The Adobe Standard Encoding set of the Utopia font\n" "family, as contributed to the X Consortium. The set comprises upright\n" @@ -19051,7 +19302,7 @@ msgid "" "@code{mathdesign} font packages." msgstr "" -#: gnu/packages/tex.scm:9169 +#: gnu/packages/tex.scm:9517 msgid "" "The @code{fontaxes} package adds several new font\n" "axes on top of LaTeX's New Font Selection Scheme (NFSS). In\n" @@ -19060,7 +19311,7 @@ msgid "" "figure versions offered by many professional fonts." msgstr "" -#: gnu/packages/tex.scm:9192 +#: gnu/packages/tex.scm:9540 msgid "" "The bundle comprises: @code{authblk}, which permits\n" "footnote style author/affiliation input in the @command{\\author} command,\n" @@ -19070,7 +19321,7 @@ msgid "" "@code{sublabel}, which permits counters to be subnumbered." msgstr "" -#: gnu/packages/tex.scm:9211 +#: gnu/packages/tex.scm:9559 msgid "" "Many font families available for use with LaTeX are\n" "available at multiple weights. Many Type 1-oriented support packages\n" @@ -19081,7 +19332,7 @@ msgid "" "@code{mweights} package provides a solution to these difficulties." msgstr "" -#: gnu/packages/tex.scm:9237 +#: gnu/packages/tex.scm:9585 msgid "" "Cabin is a humanist sans with four weights, true\n" "italics and small capitals. According to its designer, Pablo\n" @@ -19095,7 +19346,7 @@ msgid "" "use with [pdf]LaTeX." msgstr "" -#: gnu/packages/tex.scm:9268 +#: gnu/packages/tex.scm:9616 msgid "" "The @code{newtx} bundle splits\n" "@code{txfonts.sty} (from the TX fonts distribution) into two\n" @@ -19107,7 +19358,7 @@ msgid "" "mathematics package that matches Libertine text quite well." msgstr "" -#: gnu/packages/tex.scm:9296 +#: gnu/packages/tex.scm:9644 msgid "" "@code{xcharter} repackages Bitstream Charter with an\n" "extended set of features. The extension provides small caps, oldstyle\n" @@ -19116,7 +19367,7 @@ msgid "" "Type 1 and OTF formats, with supporting files as necessary." msgstr "" -#: gnu/packages/tex.scm:9320 +#: gnu/packages/tex.scm:9668 msgid "" "The legacy @emph{texnansi} (TeX and ANSI) encoding\n" "is known in the LaTeX scheme of things as @emph{LY1} encoding. The\n" @@ -19125,14 +19376,14 @@ msgid "" "LY1 encoding." msgstr "" -#: gnu/packages/tex.scm:9349 +#: gnu/packages/tex.scm:9697 msgid "" "This is a LaTeX2ε package to help change the style of any or\n" "all of LaTeX's sectional headers in the article, book, or report classes.\n" "Examples include the addition of rules above or below a section title." msgstr "" -#: gnu/packages/tex.scm:9375 +#: gnu/packages/tex.scm:9723 msgid "" "LaTeX can, by default, only cope with 18 outstanding floats;\n" "any more, and you get the error “too many unprocessed floats”. This package\n" @@ -19143,19 +19394,19 @@ msgid "" "floats merely delays the arrival of the inevitable error message." msgstr "" -#: gnu/packages/tex.scm:9408 +#: gnu/packages/tex.scm:9756 msgid "" "This package provides a command for the LaTeX programmer for\n" "testing whether an argument is empty." msgstr "" -#: gnu/packages/tex.scm:9435 +#: gnu/packages/tex.scm:9783 msgid "" "The pagenote package provides tagged notes on a separate\n" "page (also known as ‘end notes’)." msgstr "" -#: gnu/packages/tex.scm:9463 +#: gnu/packages/tex.scm:9811 msgid "" "The @code{titling} package provides control over the\n" "typesetting of the @code{\\maketitle} command and @code{\\thanks} commands,\n" @@ -19165,7 +19416,7 @@ msgid "" "a physical page." msgstr "" -#: gnu/packages/tex.scm:9493 +#: gnu/packages/tex.scm:9841 msgid "" "This package provides an @code{\\ifoddpage} conditional to\n" "determine if the current page is odd or even. The macro @code{\\checkoddpage}\n" @@ -19175,7 +19426,7 @@ msgid "" "@code{oneside} mode where all pages use the odd page layout." msgstr "" -#: gnu/packages/tex.scm:9523 +#: gnu/packages/tex.scm:9871 msgid "" "The package provides \"store boxes\" whose user interface\n" "matches that of normal LaTeX \"save boxes\", except that the content of a\n" @@ -19184,7 +19435,7 @@ msgid "" "DVI is output, store boxes behave the same as save boxes." msgstr "" -#: gnu/packages/tex.scm:9552 +#: gnu/packages/tex.scm:9900 msgid "" "The package provides macros to collect and process a macro\n" "argument (i.e., something which looks like a macro argument) as a horizontal\n" @@ -19197,13 +19448,13 @@ msgid "" "The macros were designed for use within other macros." msgstr "" -#: gnu/packages/tex.scm:9584 +#: gnu/packages/tex.scm:9932 msgid "" "This package provides macros for adding to, and reordering\n" "the list of graphics file extensions recognised by package graphics." msgstr "" -#: gnu/packages/tex.scm:9618 +#: gnu/packages/tex.scm:9966 msgid "" "The package provides several macros to adjust boxed\n" "content. One purpose is to supplement the standard @code{graphics} package,\n" @@ -19216,7 +19467,7 @@ msgid "" "@code{\\minsizebox}, @code{\\maxsizebox} and @code{\\phantombox}." msgstr "" -#: gnu/packages/tex.scm:9644 +#: gnu/packages/tex.scm:9992 msgid "" "This package provides an environment for colored and\n" "framed text boxes with a heading line. Optionally, such a box may be split in\n" @@ -19227,7 +19478,7 @@ msgid "" "parts." msgstr "" -#: gnu/packages/tex.scm:9675 +#: gnu/packages/tex.scm:10023 msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems. The commands allow for writing\n" @@ -19236,13 +19487,13 @@ msgid "" "styles of inference rules, placement of labels, etc." msgstr "" -#: gnu/packages/tex.scm:9704 +#: gnu/packages/tex.scm:10052 msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems." msgstr "" -#: gnu/packages/tex.scm:9724 +#: gnu/packages/tex.scm:10072 msgid "" "This package provides the European currency symbol for the\n" "Euro implemented in METAFONT, using the official European Commission\n" @@ -19251,7 +19502,7 @@ msgid "" "pre-compiled font files, and documentation." msgstr "" -#: gnu/packages/tex.scm:9754 +#: gnu/packages/tex.scm:10102 msgid "" "The @code{kastrup} package provides the\n" "@emph{binhex.tex} file. This file provides expandable macros for both\n" @@ -19261,7 +19512,7 @@ msgid "" "LaTeX and plain TeX." msgstr "" -#: gnu/packages/tex.scm:9774 +#: gnu/packages/tex.scm:10122 msgid "" "This LaTeX package provides a flexible mechanism for translating\n" "individual words into different languages. For example, it can be used to\n" @@ -19272,7 +19523,7 @@ msgid "" "automatically translate more than a few words." msgstr "" -#: gnu/packages/tex.scm:9795 +#: gnu/packages/tex.scm:10143 msgid "" "This package facilitates placing boxes at absolute positions on the\n" "LaTeX page. There are several reasons why this might be useful, but the main\n" @@ -19285,7 +19536,7 @@ msgid "" "accompanied by various configuration commands." msgstr "" -#: gnu/packages/tex.scm:9819 +#: gnu/packages/tex.scm:10167 msgid "" "This package extends the @code{ifthen} package by implementing new\n" "commands to go within the first argument of @code{\\\\ifthenelse}: to test\n" @@ -19295,14 +19546,14 @@ msgid "" "handle complex tests." msgstr "" -#: gnu/packages/tex.scm:9852 +#: gnu/packages/tex.scm:10200 msgid "" "BibTool manipulates BibTeX files. The possibilities of BibTool include\n" "sorting and merging of BibTeX databases, generation of uniform reference keys,\n" "and selecting references used in a publication." msgstr "" -#: gnu/packages/texinfo.scm:87 +#: gnu/packages/texinfo.scm:88 msgid "" "Texinfo is the official documentation format of the GNU project. It\n" "uses a single source file using explicit commands to produce a final document\n" @@ -19312,7 +19563,7 @@ msgid "" "is on expressing the content semantically, avoiding physical markup commands." msgstr "" -#: gnu/packages/texinfo.scm:216 +#: gnu/packages/texinfo.scm:230 msgid "" "Texi2HTML is a Perl script which converts Texinfo source files to HTML\n" "output. It now supports many advanced features, such as internationalization\n" @@ -19327,7 +19578,7 @@ msgid "" "Texi2HTML." msgstr "" -#: gnu/packages/texinfo.scm:283 +#: gnu/packages/texinfo.scm:297 msgid "" "Pinfo is an Info file viewer. Pinfo is similar in use to the Lynx web\n" "browser. You just move across info nodes, and select links, follow them, etc.\n" @@ -19686,6 +19937,12 @@ msgstr "" #: gnu/packages/textutils.scm:1406 msgid "" +"@code{utf-8-lineseparator} provides a tool to efficiently check text\n" +"files for valid UTF-8 use and to report which line endings they use." +msgstr "" + +#: gnu/packages/textutils.scm:1439 +msgid "" "@code{csvdiff} is a diff tool to compute changes between two\n" "CSV files. It can compare CSV files with a million records in under 2\n" "seconds. It is specifically suited for comparing CSV files dumped from\n" @@ -19887,27 +20144,27 @@ msgid "" "visualize your public Git repositories on a web interface." msgstr "" -#: gnu/packages/version-control.scm:1706 +#: gnu/packages/version-control.scm:1699 msgid "" "Pre-commit is a multi-language package manager for pre-commit hooks. You\n" "specify a list of hooks you want and pre-commit manages the installation and\n" "execution of any hook written in any language before every commit." msgstr "" -#: gnu/packages/version-control.scm:1796 +#: gnu/packages/version-control.scm:1789 msgid "" "Mercurial is a free, distributed source control management tool. It\n" "efficiently handles projects of any size and offers an easy and intuitive\n" "interface." msgstr "" -#: gnu/packages/version-control.scm:1823 +#: gnu/packages/version-control.scm:1816 msgid "" "Evolve is a Mercurial extension for faster and safer mutable\n" "history. It implements the changeset evolution concept for Mercurial." msgstr "" -#: gnu/packages/version-control.scm:1879 +#: gnu/packages/version-control.scm:1872 msgid "" "This package provides a Mercurial extension for signing\n" "the changeset hash of commits. The signure is embedded directly in the\n" @@ -19915,7 +20172,7 @@ msgid "" "can be used for signing." msgstr "" -#: gnu/packages/version-control.scm:1914 +#: gnu/packages/version-control.scm:1907 msgid "" "Neon is an HTTP and WebDAV client library, with a C interface and the\n" "following features:\n" @@ -19937,7 +20194,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/version-control.scm:2010 +#: gnu/packages/version-control.scm:2003 msgid "" "@dfn{Subversion} (svn) exists to be recognized and adopted as a\n" "centralized version control system characterized by its\n" @@ -19946,7 +20203,7 @@ msgid "" "projects, from individuals to large-scale enterprise operations." msgstr "" -#: gnu/packages/version-control.scm:2044 +#: gnu/packages/version-control.scm:2037 msgid "" "RCS is the original Revision Control System. It works on a\n" "file-by-file basis, in contrast to subsequent version control systems such as\n" @@ -19955,21 +20212,21 @@ msgid "" "machine." msgstr "" -#: gnu/packages/version-control.scm:2067 +#: gnu/packages/version-control.scm:2060 msgid "" "@code{blame} outputs an annotated revision from each RCS file. An\n" "annotated RCS file describes the revision and date in which each line was\n" "added to the file, and the author of each line." msgstr "" -#: gnu/packages/version-control.scm:2088 +#: gnu/packages/version-control.scm:2081 msgid "" "The @code{rcshist} utility displays the complete revision history of a\n" "set of RCS files including log messages and patches. It can also display the\n" "patch associated with a particular revision of an RCS file." msgstr "" -#: gnu/packages/version-control.scm:2116 +#: gnu/packages/version-control.scm:2109 msgid "" "CVS is a version control system, an important component of Source\n" "Configuration Management (SCM). Using it, you can record the history of\n" @@ -19977,7 +20234,7 @@ msgid "" "RCS, PRCS, and Aegis packages." msgstr "" -#: gnu/packages/version-control.scm:2150 +#: gnu/packages/version-control.scm:2143 msgid "" "This program analyzes a collection of RCS files in a CVS\n" "repository (or outside of one) and, when possible, emits an equivalent history\n" @@ -19990,7 +20247,7 @@ msgid "" "masters from remote CVS hosts." msgstr "" -#: gnu/packages/version-control.scm:2180 +#: gnu/packages/version-control.scm:2173 msgid "" "The vc-dwim package contains two tools, \"vc-dwim\" and \"vc-chlog\".\n" "vc-dwim is a tool that simplifies the task of maintaining a ChangeLog and\n" @@ -20000,21 +20257,21 @@ msgid "" "standards-compliant ChangeLog entries based on the changes that it detects." msgstr "" -#: gnu/packages/version-control.scm:2207 +#: gnu/packages/version-control.scm:2200 msgid "" "Diffstat reads the output of @command{diff} and displays a histogram of\n" "the insertions, deletions, and modifications per file. It is useful for\n" "reviewing large, complex patch files." msgstr "" -#: gnu/packages/version-control.scm:2246 +#: gnu/packages/version-control.scm:2239 msgid "" "GNU CSSC provides a replacement for the legacy Unix source\n" "code control system SCCS. This allows old code still under that system to be\n" "accessed and migrated on modern systems." msgstr "" -#: gnu/packages/version-control.scm:2338 +#: gnu/packages/version-control.scm:2331 msgid "" "Aegis is a project change supervisor, and performs some of\n" "the Software Configuration Management needed in a CASE environment. Aegis\n" @@ -20025,7 +20282,7 @@ msgid "" "any project with more than one developer, is one of Aegis's major functions." msgstr "" -#: gnu/packages/version-control.scm:2412 +#: gnu/packages/version-control.scm:2405 msgid "" "Reposurgeon enables risky operations that version-control\n" "systems don't want to let you do, such as editing past comments and metadata\n" @@ -20036,20 +20293,20 @@ msgid "" "from Subversion to any supported Distributed Version Control System (DVCS)." msgstr "" -#: gnu/packages/version-control.scm:2451 +#: gnu/packages/version-control.scm:2444 msgid "" "Tig is an ncurses text user interface for Git, primarily intended as\n" "a history browser. It can also stage hunks for commit, or colorize the\n" "output of the @code{git} command." msgstr "" -#: gnu/packages/version-control.scm:2474 +#: gnu/packages/version-control.scm:2467 msgid "" "Recursively find the newest file in a file tree and print its\n" "modification time." msgstr "" -#: gnu/packages/version-control.scm:2521 +#: gnu/packages/version-control.scm:2514 msgid "" "Myrepos provides the @code{mr} command, which maps an operation (e.g.,\n" "fetching updates) over a collection of version control repositories. It\n" @@ -20057,14 +20314,14 @@ msgid "" "Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity." msgstr "" -#: gnu/packages/version-control.scm:2558 +#: gnu/packages/version-control.scm:2551 msgid "" "Grokmirror enables replicating large git repository\n" "collections efficiently. Mirrors decide to clone and update repositories\n" "based on a manifest file published by servers." msgstr "" -#: gnu/packages/version-control.scm:2588 +#: gnu/packages/version-control.scm:2581 msgid "" "The @code{b4} command is designed to make it easier to participate in\n" "patch-based workflows for projects that have public-inbox archives.\n" @@ -20078,26 +20335,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/version-control.scm:2635 +#: gnu/packages/version-control.scm:2628 msgid "" "This wrapper around rclone makes any destination supported\n" "by rclone usable with git-annex." msgstr "" -#: gnu/packages/version-control.scm:2689 +#: gnu/packages/version-control.scm:2682 msgid "" "Fossil is a distributed source control management system which supports\n" "access and administration over HTTP CGI or via a built-in HTTP server. It has\n" "a built-in wiki, built-in file browsing, built-in tickets system, etc." msgstr "" -#: gnu/packages/version-control.scm:2720 +#: gnu/packages/version-control.scm:2713 msgid "" "Stagit creates static pages for git repositories, the results can\n" "be served with a HTTP file server of your choice." msgstr "" -#: gnu/packages/version-control.scm:2756 +#: gnu/packages/version-control.scm:2749 msgid "" "@code{gource} provides a software version control\n" "visualization. The repository is displayed as a tree where the root of the\n" @@ -20106,7 +20363,7 @@ msgid "" "specific files and directories." msgstr "" -#: gnu/packages/version-control.scm:2804 +#: gnu/packages/version-control.scm:2797 #, scheme-format msgid "" "SRC (or src) is simple revision control, a version-control system for\n" @@ -20116,7 +20373,7 @@ msgid "" "directory full of HOWTOs." msgstr "" -#: gnu/packages/version-control.scm:2856 +#: gnu/packages/version-control.scm:2849 msgid "" "This Git extension defines a subcommand,\n" "@code{when-merged}, whose core operation is to find the merge that brought a\n" @@ -20124,7 +20381,7 @@ msgid "" "how information about the merge is displayed." msgstr "" -#: gnu/packages/version-control.scm:2900 +#: gnu/packages/version-control.scm:2893 msgid "" "This Git extension defines a subcommand, @code{imerge},\n" "which performs an incremental merge between two branches. Its two primary\n" @@ -20133,20 +20390,20 @@ msgid "" "interrupted, published, and collaborated on while in progress." msgstr "" -#: gnu/packages/version-control.scm:2951 +#: gnu/packages/version-control.scm:2944 msgid "" "Git Large File Storage (LFS) replaces large files such as audio samples,\n" "videos, datasets, and graphics with text pointers inside Git, while storing the\n" "file contents on a remote server." msgstr "" -#: gnu/packages/version-control.scm:2986 +#: gnu/packages/version-control.scm:2979 msgid "" "@code{git open} opens the repository's website from the command-line,\n" "guessing the URL pattern from the @code{origin} remote." msgstr "" -#: gnu/packages/version-control.scm:3040 +#: gnu/packages/version-control.scm:3033 msgid "" "GNU Arch, aka. @code{tla}, was one of the first free distributed\n" "version-control systems (DVCS). It saw its last release in 2006. This\n" @@ -20154,18 +20411,18 @@ msgid "" "for historians." msgstr "" -#: gnu/packages/version-control.scm:3086 +#: gnu/packages/version-control.scm:3079 msgid "" "@code{diff-so-fancy} strives to make your diffs human readable instead\n" "of machine readable. This helps improve code quality and helps you spot\n" "defects faster." msgstr "" -#: gnu/packages/version-control.scm:3142 +#: gnu/packages/version-control.scm:3135 msgid "This package provides a Git implementation library." msgstr "" -#: gnu/packages/version-control.scm:3192 +#: gnu/packages/version-control.scm:3185 msgid "" "This package provides a command-line tool to manage\n" "multiple Git repos.\n" @@ -20180,7 +20437,7 @@ msgid "" "If several repos are related, it helps to see their status together." msgstr "" -#: gnu/packages/version-control.scm:3250 +#: gnu/packages/version-control.scm:3243 #, scheme-format msgid "" "@code{ghq} provides a way to organize remote repository clones, like\n" @@ -20189,7 +20446,7 @@ msgid "" "using the remote repository URL's host and path." msgstr "" -#: gnu/packages/version-control.scm:3295 +#: gnu/packages/version-control.scm:3288 msgid "" "TkRev (formerly TkCVS) is a Tcl/Tk-based graphical interface to the CVS,\n" "Subversion and Git configuration management systems. It will also help with\n" @@ -20198,7 +20455,7 @@ msgid "" "TkDiff is included for browsing and merging your changes." msgstr "" -#: gnu/packages/version-control.scm:3328 +#: gnu/packages/version-control.scm:3321 msgid "" "@command{git filter-repo} is a versatile tool for rewriting history,\n" "which roughly falls into the same space of tool like git filter-branch but\n" @@ -20236,7 +20493,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:865 +#: gnu/packages/virtualization.scm:870 msgid "" "Ganeti is a virtual machine management tool built on top of existing\n" "virtualization technologies such as Xen or KVM. Ganeti controls:\n" @@ -20253,19 +20510,19 @@ msgid "" "commodity hardware." msgstr "" -#: gnu/packages/virtualization.scm:902 +#: gnu/packages/virtualization.scm:907 msgid "" "This package provides a guest OS definition for Ganeti that uses\n" "Guix to build virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:996 +#: gnu/packages/virtualization.scm:1001 msgid "" "This package provides a guest OS definition for Ganeti. It installs\n" "Debian or a derivative using @command{debootstrap}." msgstr "" -#: gnu/packages/virtualization.scm:1056 +#: gnu/packages/virtualization.scm:1061 msgid "" "libosinfo is a GObject based library API for managing\n" "information about operating systems, hypervisors and the (virtual) hardware\n" @@ -20275,21 +20532,21 @@ msgid "" "all common programming languages. Vala bindings are also provided." msgstr "" -#: gnu/packages/virtualization.scm:1105 +#: gnu/packages/virtualization.scm:1109 msgid "" "LXC is a userspace interface for the Linux kernel containment features.\n" "Through a powerful API and simple tools, it lets Linux users easily create and\n" "manage system or application containers." msgstr "" -#: gnu/packages/virtualization.scm:1131 +#: gnu/packages/virtualization.scm:1135 msgid "" "LXCFS is a small FUSE file system written with the intention\n" "of making Linux containers feel more like a virtual machine.\n" "It started as a side project of LXC but can be used by any run-time." msgstr "" -#: gnu/packages/virtualization.scm:1239 +#: gnu/packages/virtualization.scm:1237 msgid "" "LXD is a next generation system container manager. It\n" "offers a user experience similar to virtual machines but using Linux\n" @@ -20298,7 +20555,7 @@ msgid "" "pretty simple, REST API." msgstr "" -#: gnu/packages/virtualization.scm:1332 +#: gnu/packages/virtualization.scm:1330 msgid "" "Libvirt is a C toolkit to interact with the virtualization\n" "capabilities of recent versions of Linux. The library aims at providing long\n" @@ -20306,7 +20563,7 @@ msgid "" "to integrate other virtualization mechanisms if needed." msgstr "" -#: gnu/packages/virtualization.scm:1363 +#: gnu/packages/virtualization.scm:1359 msgid "" "libvirt-glib wraps the libvirt library to provide a\n" "high-level object-oriented API better suited for glib-based applications, via\n" @@ -20319,13 +20576,13 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/virtualization.scm:1407 +#: gnu/packages/virtualization.scm:1403 msgid "" "This package provides Python bindings to the libvirt\n" "virtualization library." msgstr "" -#: gnu/packages/virtualization.scm:1520 +#: gnu/packages/virtualization.scm:1516 msgid "" "The virt-manager application is a desktop user interface for managing\n" "virtual machines through libvirt. It primarily targets KVM VMs, but also\n" @@ -20333,7 +20590,7 @@ msgid "" "domains, their live performance and resource utilization statistics." msgstr "" -#: gnu/packages/virtualization.scm:1620 +#: gnu/packages/virtualization.scm:1616 msgid "" "Using this tool, you can freeze a running application (or\n" "part of it) and checkpoint it to a hard drive as a collection of files. You\n" @@ -20342,14 +20599,14 @@ msgid "" "mainly implemented in user space." msgstr "" -#: gnu/packages/virtualization.scm:1647 +#: gnu/packages/virtualization.scm:1643 msgid "" "qmpbackup is designed to create and restore full and\n" "incremental backups of running QEMU virtual machines via QMP, the QEMU\n" "Machine Protocol." msgstr "" -#: gnu/packages/virtualization.scm:1731 +#: gnu/packages/virtualization.scm:1727 msgid "" "Looking Glass allows the use of a KVM (Kernel-based Virtual\n" "Machine) configured for VGA PCI Pass-through without an attached physical\n" @@ -20357,7 +20614,7 @@ msgid "" "main monitor/GPU." msgstr "" -#: gnu/packages/virtualization.scm:1783 +#: gnu/packages/virtualization.scm:1779 msgid "" "@command{runc} is a command line client for running applications\n" "packaged according to the\n" @@ -20366,13 +20623,13 @@ msgid "" "Open Container Initiative specification." msgstr "" -#: gnu/packages/virtualization.scm:1832 +#: gnu/packages/virtualization.scm:1828 msgid "" "@command{umoci} is a tool that allows for high-level modification of an\n" "Open Container Initiative (OCI) image layout and its tagged images." msgstr "" -#: gnu/packages/virtualization.scm:1886 +#: gnu/packages/virtualization.scm:1882 msgid "" "@command{skopeo} is a command line utility providing various operations\n" "with container images and container image registries. It can:\n" @@ -20393,14 +20650,14 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:1922 +#: gnu/packages/virtualization.scm:1918 msgid "" "Python-vagrant is a Python module that provides a thin wrapper around the\n" "@code{vagrant} command line executable, allowing programmatic control of Vagrant\n" "virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:1977 +#: gnu/packages/virtualization.scm:1979 msgid "" "Bubblewrap is aimed at running applications in a sandbox,\n" "restricting their access to parts of the operating system or user data such as\n" @@ -20410,7 +20667,7 @@ msgid "" "by default and can be made read-only." msgstr "" -#: gnu/packages/virtualization.scm:2004 +#: gnu/packages/virtualization.scm:2006 msgid "" "Bochs is an emulator which can emulate Intel x86 CPU, common I/O\n" "devices, and a custom BIOS. It can also be compiled to emulate many different\n" @@ -20419,64 +20676,67 @@ msgid "" "DOS or Microsoft Windows." msgstr "" -#: gnu/packages/virtualization.scm:2210 +#: gnu/packages/virtualization.scm:2212 msgid "" "This package provides the Xen Virtual Machine Monitor\n" "which is a hypervisor." msgstr "" -#: gnu/packages/virtualization.scm:2242 +#: gnu/packages/virtualization.scm:2244 msgid "" "This package contains a set of tools to assist\n" "administrators and developers in managing the database." msgstr "" -#: gnu/packages/virtualization.scm:2275 +#: gnu/packages/virtualization.scm:2277 msgid "" "Osinfo-db provides the database files for use with the\n" "libosinfo library. It provides information about guest operating systems for\n" "use with virtualization provisioning tools" msgstr "" -#: gnu/packages/virtualization.scm:2317 +#: gnu/packages/virtualization.scm:2319 msgid "" "@code{transient} is a wrapper for QEMU allowing the creation of virtual\n" "machines with shared folder, ssh, and disk creation support." msgstr "" -#: gnu/packages/webkit.scm:93 +#: gnu/packages/webkit.scm:94 msgid "" "LibWPE is general-purpose library specifically developed for\n" "the WPE-flavored port of WebKit." msgstr "" -#: gnu/packages/webkit.scm:119 +#: gnu/packages/webkit.scm:120 msgid "" "This package provides a backend implementation for the WPE WebKit\n" "engine that uses Wayland for graphics output." msgstr "" -#: gnu/packages/webkit.scm:216 +#: gnu/packages/webkit.scm:227 msgid "" "WPE WebKit allows embedders to create simple and performant\n" "systems based on Web platform technologies. It is designed with hardware\n" "acceleration in mind, leveraging common 3D graphics APIs for best performance." msgstr "" -#: gnu/packages/webkit.scm:351 +#: gnu/packages/webkit.scm:355 msgid "" "WebKitGTK+ is a full-featured port of the WebKit rendering engine,\n" "suitable for projects requiring any kind of web integration, from hybrid\n" -"HTML/CSS applications to full-fledged web browsers." +"HTML/CSS applications to full-fledged web browsers. WebKitGTK+ video playing\n" +"capabilities can be extended through the use of GStreamer plugins (not\n" +"propagated by default) such as @code{gst-plugins-good} and\n" +"@code{gst-plugins-bad}." msgstr "" -#: gnu/packages/web.scm:250 +#: gnu/packages/web.scm:251 msgid "" "Qhttp is a light-weight and asynchronous HTTP library\n" "(both server & client) in Qt5 and C++14." msgstr "" -#: gnu/packages/web.scm:280 +#: gnu/packages/web.scm:281 msgid "" "The Apache HTTP Server Project is a collaborative software development\n" "effort aimed at creating a robust, commercial-grade, featureful, and\n" @@ -20486,14 +20746,14 @@ msgid "" "and its related documentation." msgstr "" -#: gnu/packages/web.scm:314 +#: gnu/packages/web.scm:315 msgid "" "The mod_wsgi module for the Apache HTTPD Server adds support for running\n" "applications that support the Python @acronym{WSGI, Web Server Gateway\n" "Interface} specification." msgstr "" -#: gnu/packages/web.scm:356 +#: gnu/packages/web.scm:357 msgid "" "Monolith bundles any web page into a single HTML file.\n" "\n" @@ -20506,38 +20766,38 @@ msgid "" "the same, being completely separated from the Internet." msgstr "" -#: gnu/packages/web.scm:460 +#: gnu/packages/web.scm:461 msgid "" "Nginx (\"engine X\") is a high-performance web and reverse proxy server\n" "created by Igor Sysoev. It can be used both as a stand-alone web server\n" "and as a proxy to reduce the load on back-end HTTP or mail servers." msgstr "" -#: gnu/packages/web.scm:518 +#: gnu/packages/web.scm:519 msgid "This package provides HTML documentation for the nginx web server." msgstr "" -#: gnu/packages/web.scm:647 +#: gnu/packages/web.scm:648 msgid "" "This nginx module parses the Accept-Language field in HTTP headers and\n" "chooses the most suitable locale for the user from the list of locales\n" "supported at your website." msgstr "" -#: gnu/packages/web.scm:694 +#: gnu/packages/web.scm:695 msgid "" "XSLScript is a terse notation for writing complex XSLT stylesheets.\n" "This is modified version, specifically intended for use with the NGinx\n" "documentation." msgstr "" -#: gnu/packages/web.scm:767 +#: gnu/packages/web.scm:768 msgid "" "This NGINX module provides a scripting support with Lua\n" "programming language." msgstr "" -#: gnu/packages/web.scm:820 +#: gnu/packages/web.scm:821 msgid "" "This NGINX module provides streaming with the @acronym{RTMP,\n" "Real-Time Messaging Protocol}, @acronym{DASH, Dynamic Adaptive Streaming over HTTP},\n" @@ -20547,7 +20807,7 @@ msgid "" "stream. Remote control of the module is possible over HTTP." msgstr "" -#: gnu/packages/web.scm:882 +#: gnu/packages/web.scm:883 msgid "" "Lighttpd is a secure, fast, compliant, and very flexible web-server that\n" "has been optimized for high-performance environments. It has a very low\n" @@ -20555,41 +20815,41 @@ msgid "" "CGI, authentication, output compression, URL rewriting and many more." msgstr "" -#: gnu/packages/web.scm:910 +#: gnu/packages/web.scm:911 msgid "" "FastCGI is a language-independent, scalable extension to CGI\n" "that provides high performance without the limitations of server specific\n" "APIs." msgstr "" -#: gnu/packages/web.scm:948 +#: gnu/packages/web.scm:949 msgid "" "Fcgiwrap is a simple server for running CGI applications\n" "over FastCGI. It hopes to provide clean CGI support to Nginx (and other web\n" "servers that may need it)." msgstr "" -#: gnu/packages/web.scm:977 +#: gnu/packages/web.scm:978 msgid "" "Starman is a PSGI perl web server that has unique features\n" "such as high performance, preforking, signal support, superdaemon awareness,\n" "and UNIX socket support." msgstr "" -#: gnu/packages/web.scm:1010 +#: gnu/packages/web.scm:1011 msgid "" "IcedTea-Web is an implementation of the @dfn{Java Network Launching\n" "Protocol}, also known as Java Web Start. This package provides tools and\n" "libraries for working with JNLP applets." msgstr "" -#: gnu/packages/web.scm:1035 +#: gnu/packages/web.scm:1036 msgid "" "Jansson is a C library for encoding, decoding and manipulating JSON\n" "data." msgstr "" -#: gnu/packages/web.scm:1055 +#: gnu/packages/web.scm:1056 msgid "" "JSON-C implements a reference counting object model that allows you to\n" "easily construct JSON objects in C, output them as JSON-formatted strings and\n" @@ -20597,7 +20857,7 @@ msgid "" "It aims to conform to RFC 7159." msgstr "" -#: gnu/packages/web.scm:1131 +#: gnu/packages/web.scm:1132 msgid "" "This package provides a very low footprint JSON parser\n" "written in portable ANSI C.\n" @@ -20610,21 +20870,21 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:1176 +#: gnu/packages/web.scm:1177 msgid "" "QJson is a Qt-based library that maps JSON data to\n" "@code{QVariant} objects. JSON arrays will be mapped to @code{QVariantList}\n" "instances, while JSON's objects will be mapped to @code{QVariantMap}." msgstr "" -#: gnu/packages/web.scm:1227 +#: gnu/packages/web.scm:1228 msgid "" "QOAuth is an attempt to support interaction with\n" "OAuth-powered network services in a Qt way, i.e. simply, clearly and\n" "efficiently. It gives the application developer no more than 4 methods." msgstr "" -#: gnu/packages/web.scm:1339 +#: gnu/packages/web.scm:1340 msgid "" "Krona is a flexible tool for exploring the relative proportions of\n" "hierarchical data, such as metagenomic classifications, using a radial,\n" @@ -20633,26 +20893,26 @@ msgid "" "current version of any major web browser." msgstr "" -#: gnu/packages/web.scm:1380 +#: gnu/packages/web.scm:1381 msgid "" "RapidJSON is a fast JSON parser/generator for C++ with both SAX/DOM\n" "style API." msgstr "" -#: gnu/packages/web.scm:1409 +#: gnu/packages/web.scm:1410 msgid "" "Yet Another JSON Library (YAJL) is a small event-driven (SAX-style) JSON\n" "parser written in ANSI C and a small validating JSON generator." msgstr "" -#: gnu/packages/web.scm:1439 +#: gnu/packages/web.scm:1440 msgid "" "Libwebsockets is a library that allows C programs to establish client\n" "and server WebSockets connections---a protocol layered above HTTP that allows\n" "for efficient socket-like bidirectional reliable communication channels." msgstr "" -#: gnu/packages/web.scm:1468 +#: gnu/packages/web.scm:1469 msgid "" "WABT (pronounced: wabbit) is a suite of tools for\n" "WebAssembly, including:\n" @@ -20677,7 +20937,7 @@ msgid "" "other systems that want to manipulate WebAssembly files." msgstr "" -#: gnu/packages/web.scm:1518 +#: gnu/packages/web.scm:1519 msgid "" "WebSocket++ is a C++ library that can be used to implement\n" "WebSocket functionality. The goals of the project are to provide a WebSocket\n" @@ -20685,7 +20945,7 @@ msgid "" "high performance." msgstr "" -#: gnu/packages/web.scm:1558 +#: gnu/packages/web.scm:1559 msgid "" "@code{Wslay} is an event-based C library for the WebSocket\n" "protocol version 13, described in RFC 6455. Besides a high-level API it\n" @@ -20694,7 +20954,7 @@ msgid "" "perform the opening handshake in HTTP." msgstr "" -#: gnu/packages/web.scm:1588 +#: gnu/packages/web.scm:1589 msgid "" "A \"public suffix\" is a domain name under which Internet users can\n" "directly register own names.\n" @@ -20712,20 +20972,20 @@ msgid "" "UTS#46." msgstr "" -#: gnu/packages/web.scm:1633 +#: gnu/packages/web.scm:1634 msgid "" "HTML Tidy is a command-line tool and C library that can be\n" "used to validate and fix HTML data." msgstr "" -#: gnu/packages/web.scm:1680 +#: gnu/packages/web.scm:1681 msgid "" "The esbuild tool provides a unified bundler, transpiler and\n" "minifier. It packages up JavaScript and TypeScript code, along with JSON\n" "and other data, for distribution on the web." msgstr "" -#: gnu/packages/web.scm:1716 +#: gnu/packages/web.scm:1717 msgid "" "Tinyproxy is a light-weight HTTP/HTTPS proxy\n" "daemon. Designed from the ground up to be fast and yet small, it is an ideal\n" @@ -20734,14 +20994,14 @@ msgid "" "unavailable." msgstr "" -#: gnu/packages/web.scm:1751 +#: gnu/packages/web.scm:1752 msgid "" "Polipo is a small caching web proxy (web cache, HTTP proxy, and proxy\n" "server). It was primarily designed to be used by one person or a small group\n" "of people." msgstr "" -#: gnu/packages/web.scm:1779 +#: gnu/packages/web.scm:1780 msgid "" "Websockify translates WebSockets traffic to normal socket\n" "traffic. Websockify accepts the WebSockets handshake, parses it, and then\n" @@ -20749,7 +21009,7 @@ msgid "" "directions." msgstr "" -#: gnu/packages/web.scm:1806 +#: gnu/packages/web.scm:1807 msgid "" "WWWOFFLE is a proxy web server that is especially good for\n" "intermittent internet links. It can cache HTTP, HTTPS, FTP, and finger\n" @@ -20758,7 +21018,7 @@ msgid "" "changes, and much more." msgstr "" -#: gnu/packages/web.scm:1832 +#: gnu/packages/web.scm:1833 msgid "" "liboauth is a collection of C functions implementing the OAuth API.\n" "liboauth provides functions to escape and encode strings according to OAuth\n" @@ -20767,25 +21027,25 @@ msgid "" "hash/signatures." msgstr "" -#: gnu/packages/web.scm:1855 +#: gnu/packages/web.scm:1856 msgid "" "This package contains support scripts called by libquvi to\n" "parse media stream properties." msgstr "" -#: gnu/packages/web.scm:1889 +#: gnu/packages/web.scm:1890 msgid "" "libquvi is a library with a C API for parsing media stream\n" "URLs and extracting their actual media files." msgstr "" -#: gnu/packages/web.scm:1911 +#: gnu/packages/web.scm:1912 msgid "" "quvi is a command-line-tool suite to extract media files\n" "from streaming URLs. It is a command-line wrapper for the libquvi library." msgstr "" -#: gnu/packages/web.scm:1983 +#: gnu/packages/web.scm:1984 msgid "" "serf is a C-based HTTP client library built upon the Apache Portable\n" "Runtime (APR) library. It multiplexes connections, running the read/write\n" @@ -20793,7 +21053,7 @@ msgid "" "minimum to provide high performance operation." msgstr "" -#: gnu/packages/web.scm:2018 +#: gnu/packages/web.scm:2019 msgid "" "LibSass is a @acronym{SASS,Syntactically awesome style sheets} compiler\n" "library designed for portability and efficiency. To actually compile SASS\n" @@ -20801,29 +21061,29 @@ msgid "" "@var{sassc} for example." msgstr "" -#: gnu/packages/web.scm:2067 +#: gnu/packages/web.scm:2068 msgid "" "SassC is a compiler written in C for the CSS pre-processor\n" "language known as SASS." msgstr "" -#: gnu/packages/web.scm:2112 +#: gnu/packages/web.scm:2113 msgid "" "This module provides methods to compile a log format string\n" "to perl-code, for faster generation of access_log lines." msgstr "" -#: gnu/packages/web.scm:2140 +#: gnu/packages/web.scm:2141 msgid "Authen::SASL provides an SASL authentication framework." msgstr "" -#: gnu/packages/web.scm:2163 +#: gnu/packages/web.scm:2164 msgid "" "This Catalyst action implements a sensible default end\n" "action, which will forward to the first available view." msgstr "" -#: gnu/packages/web.scm:2195 +#: gnu/packages/web.scm:2196 msgid "" "This Action handles doing automatic method dispatching for\n" "REST requests. It takes a normal Catalyst action, and changes the dispatch to\n" @@ -20832,20 +21092,20 @@ msgid "" "regular method." msgstr "" -#: gnu/packages/web.scm:2226 +#: gnu/packages/web.scm:2227 msgid "" "The Catalyst::Authentication::Store::DBIx::Class class\n" "provides access to authentication information stored in a database via\n" "DBIx::Class." msgstr "" -#: gnu/packages/web.scm:2252 +#: gnu/packages/web.scm:2253 msgid "" "Catalyst::Component::InstancePerContext returns a new\n" "instance of a component on each request." msgstr "" -#: gnu/packages/web.scm:2288 +#: gnu/packages/web.scm:2289 msgid "" "The Catalyst-Devel distribution includes a variety of\n" "modules useful for the development of Catalyst applications, but not required\n" @@ -20855,7 +21115,7 @@ msgid "" "modules." msgstr "" -#: gnu/packages/web.scm:2316 +#: gnu/packages/web.scm:2317 msgid "" "Dispatch type managing path-matching behaviour using\n" "regexes. Regex dispatch types have been deprecated and removed from Catalyst\n" @@ -20865,20 +21125,20 @@ msgid "" "when the dispatch type is first seen in your application." msgstr "" -#: gnu/packages/web.scm:2363 +#: gnu/packages/web.scm:2364 msgid "" "This is a Catalyst Model for DBIx::Class::Schema-based\n" "Models." msgstr "" -#: gnu/packages/web.scm:2385 +#: gnu/packages/web.scm:2386 msgid "" "This Catalyst plugin enables you to create \"access logs\"\n" "from within a Catalyst application instead of requiring a webserver to do it\n" "for you. It will work even with Catalyst debug logging turned off." msgstr "" -#: gnu/packages/web.scm:2419 +#: gnu/packages/web.scm:2420 msgid "" "The authentication plugin provides generic user support for\n" "Catalyst apps. It is the basis for both authentication (checking the user is\n" @@ -20886,32 +21146,32 @@ msgid "" "system authorises them to do)." msgstr "" -#: gnu/packages/web.scm:2447 +#: gnu/packages/web.scm:2448 msgid "" "Catalyst::Plugin::Authorization::Roles provides role-based\n" "authorization for Catalyst based on Catalyst::Plugin::Authentication." msgstr "" -#: gnu/packages/web.scm:2469 +#: gnu/packages/web.scm:2470 msgid "" "This plugin creates and validates Captcha images for\n" "Catalyst." msgstr "" -#: gnu/packages/web.scm:2493 +#: gnu/packages/web.scm:2494 msgid "" "This module will attempt to load find and load configuration\n" "files of various types. Currently it supports YAML, JSON, XML, INI and Perl\n" "formats." msgstr "" -#: gnu/packages/web.scm:2522 +#: gnu/packages/web.scm:2523 msgid "" "This plugin links the two pieces required for session\n" "management in web applications together: the state, and the store." msgstr "" -#: gnu/packages/web.scm:2548 +#: gnu/packages/web.scm:2549 msgid "" "In order for Catalyst::Plugin::Session to work, the session\n" "ID needs to be stored on the client, and the session data needs to be stored\n" @@ -20919,14 +21179,14 @@ msgid "" "cookie mechanism." msgstr "" -#: gnu/packages/web.scm:2578 +#: gnu/packages/web.scm:2579 msgid "" "Catalyst::Plugin::Session::Store::FastMmap is a fast session\n" "storage plugin for Catalyst that uses an mmap'ed file to act as a shared\n" "memory interprocess cache. It is based on Cache::FastMmap." msgstr "" -#: gnu/packages/web.scm:2602 +#: gnu/packages/web.scm:2603 msgid "" "This plugin enhances the standard Catalyst debug screen by\n" "including a stack trace of your application up to the point where the error\n" @@ -20934,7 +21194,7 @@ msgid "" "number, file name, and code context surrounding the line number." msgstr "" -#: gnu/packages/web.scm:2628 +#: gnu/packages/web.scm:2629 msgid "" "The Static::Simple plugin is designed to make serving static\n" "content in your application during development quick and easy, without\n" @@ -20945,7 +21205,7 @@ msgid "" "MIME type directly to the browser, without being processed through Catalyst." msgstr "" -#: gnu/packages/web.scm:2687 +#: gnu/packages/web.scm:2688 msgid "" "Catalyst is a modern framework for making web applications.\n" "It is designed to make it easy to manage the various tasks you need to do to\n" @@ -20953,7 +21213,7 @@ msgid "" "\"plug in\" existing Perl modules that do what you need." msgstr "" -#: gnu/packages/web.scm:2715 +#: gnu/packages/web.scm:2716 msgid "" "This module is a Moose::Role which allows you more\n" "flexibility in your application's deployment configurations when deployed\n" @@ -20961,26 +21221,26 @@ msgid "" "replaced with the contents of the X-Request-Base header." msgstr "" -#: gnu/packages/web.scm:2743 +#: gnu/packages/web.scm:2744 msgid "" "The purpose of this module is to provide a method for\n" "downloading data into many supportable formats. For example, downloading a\n" "table based report in a variety of formats (CSV, HTML, etc.)." msgstr "" -#: gnu/packages/web.scm:2767 +#: gnu/packages/web.scm:2768 msgid "" "Catalyst::View::JSON is a Catalyst View handler that returns\n" "stash data in JSON format." msgstr "" -#: gnu/packages/web.scm:2793 +#: gnu/packages/web.scm:2794 msgid "" "This module is a Catalyst view class for the Template\n" "Toolkit." msgstr "" -#: gnu/packages/web.scm:2821 +#: gnu/packages/web.scm:2822 msgid "" "Adds a \"COMPONENT\" in Catalyst::Component method to your\n" "Catalyst component base class that reads the optional \"traits\" parameter\n" @@ -20989,19 +21249,19 @@ msgid "" "MooseX::Traits::Pluggable." msgstr "" -#: gnu/packages/web.scm:2845 +#: gnu/packages/web.scm:2846 msgid "" "CatalystX::RoleApplicator applies roles to Catalyst\n" "application classes." msgstr "" -#: gnu/packages/web.scm:2870 +#: gnu/packages/web.scm:2871 msgid "" "This module provides a Catalyst extension to replace the\n" "development server with Starman." msgstr "" -#: gnu/packages/web.scm:2892 +#: gnu/packages/web.scm:2893 msgid "" "CGI.pm is a stable, complete and mature solution for\n" "processing and preparing HTTP requests and responses. Major features include\n" @@ -21010,44 +21270,44 @@ msgid "" "headers." msgstr "" -#: gnu/packages/web.scm:2919 +#: gnu/packages/web.scm:2920 msgid "" "@code{CGI::FormBuilder} provides an easy way to generate and process CGI\n" "form-based applications." msgstr "" -#: gnu/packages/web.scm:2946 +#: gnu/packages/web.scm:2947 msgid "" "@code{CGI::Session} provides modular session management system across\n" "HTTP requests." msgstr "" -#: gnu/packages/web.scm:2967 +#: gnu/packages/web.scm:2968 msgid "" "CGI::Simple provides a relatively lightweight drop in\n" "replacement for CGI.pm. It shares an identical OO interface to CGI.pm for\n" "parameter parsing, file upload, cookie handling and header generation." msgstr "" -#: gnu/packages/web.scm:2989 +#: gnu/packages/web.scm:2990 msgid "" "This is a module for building structured data from CGI\n" "inputs, in a manner reminiscent of how PHP does." msgstr "" -#: gnu/packages/web.scm:3012 +#: gnu/packages/web.scm:3013 msgid "" "This module provides functions that deal with the date\n" "formats used by the HTTP protocol." msgstr "" -#: gnu/packages/web.scm:3033 +#: gnu/packages/web.scm:3034 msgid "" "Digest::MD5::File is a Perl extension for getting MD5 sums\n" "for files and urls." msgstr "" -#: gnu/packages/web.scm:3053 +#: gnu/packages/web.scm:3054 msgid "" "The POSIX locale system is used to specify both the language\n" "conventions requested by the user and the preferred character set to\n" @@ -21059,66 +21319,66 @@ msgid "" "with Encode::decode(locale => $string)." msgstr "" -#: gnu/packages/web.scm:3086 +#: gnu/packages/web.scm:3087 msgid "" "@code{Feed::Find} implements feed auto-discovery for finding\n" "syndication feeds, given a URI. It will discover the following feed formats:\n" "RSS 0.91, RSS 1.0, RSS 2.0, Atom." msgstr "" -#: gnu/packages/web.scm:3109 +#: gnu/packages/web.scm:3110 msgid "" "The File::Listing module exports a single function called parse_dir(),\n" "which can be used to parse directory listings." msgstr "" -#: gnu/packages/web.scm:3142 +#: gnu/packages/web.scm:3143 msgid "" "Finance::Quote gets stock quotes from various internet sources, including\n" "Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange." msgstr "" -#: gnu/packages/web.scm:3165 +#: gnu/packages/web.scm:3166 msgid "" "This is a Perl extension for using GSSAPI C bindings as\n" "described in RFC 2744." msgstr "" -#: gnu/packages/web.scm:3187 +#: gnu/packages/web.scm:3188 msgid "" "HTML::Element::Extended is a Perl extension for manipulating a table\n" "composed of HTML::Element style components." msgstr "" -#: gnu/packages/web.scm:3208 +#: gnu/packages/web.scm:3209 msgid "" "Objects of the HTML::Form class represents a single HTML\n" "
...
instance." msgstr "" -#: gnu/packages/web.scm:3241 +#: gnu/packages/web.scm:3242 msgid "@code{HTML::Scrubber} Perl extension for scrubbing/sanitizing HTML." msgstr "" -#: gnu/packages/web.scm:3260 +#: gnu/packages/web.scm:3261 msgid "" "HTML::Lint is a pure-Perl HTML parser and checker for\n" "syntactic legitmacy." msgstr "" -#: gnu/packages/web.scm:3282 +#: gnu/packages/web.scm:3283 msgid "" "HTML::TableExtract is a Perl module for extracting the content contained\n" "in tables within an HTML document, either as text or encoded element trees." msgstr "" -#: gnu/packages/web.scm:3305 +#: gnu/packages/web.scm:3306 msgid "" "This distribution contains a suite of modules for\n" "representing, creating, and extracting information from HTML syntax trees." msgstr "" -#: gnu/packages/web.scm:3327 +#: gnu/packages/web.scm:3328 msgid "" "Objects of the HTML::Parser class will recognize markup and separate\n" "it from plain text (alias data content) in HTML documents. As different\n" @@ -21126,13 +21386,13 @@ msgid "" "are invoked." msgstr "" -#: gnu/packages/web.scm:3349 +#: gnu/packages/web.scm:3350 msgid "" "The HTML::Tagset module contains several data tables useful in various\n" "kinds of HTML parsing operations." msgstr "" -#: gnu/packages/web.scm:3370 +#: gnu/packages/web.scm:3371 msgid "" "This module attempts to make using HTML templates simple and natural.\n" "It extends standard HTML with a few new HTML-esque tags: @code{},\n" @@ -21143,40 +21403,40 @@ msgid "" "you to separate design from the data." msgstr "" -#: gnu/packages/web.scm:3398 +#: gnu/packages/web.scm:3399 msgid "" "HTTP::Body parses chunks of HTTP POST data and supports\n" "application/octet-stream, application/json, application/x-www-form-urlencoded,\n" "and multipart/form-data." msgstr "" -#: gnu/packages/web.scm:3421 +#: gnu/packages/web.scm:3422 msgid "" "This module implements a minimalist HTTP user agent cookie\n" "jar in conformance with RFC 6265 ." msgstr "" -#: gnu/packages/web.scm:3443 +#: gnu/packages/web.scm:3444 msgid "" "The HTTP::Cookies class is for objects that represent a cookie jar,\n" "that is, a database of all the HTTP cookies that a given LWP::UserAgent\n" "object knows about." msgstr "" -#: gnu/packages/web.scm:3466 +#: gnu/packages/web.scm:3467 msgid "" "Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen\n" "on a socket for incoming requests. The HTTP::Daemon is a subclass of\n" "IO::Socket::INET, so you can perform socket operations directly on it too." msgstr "" -#: gnu/packages/web.scm:3487 +#: gnu/packages/web.scm:3488 msgid "" "The HTTP::Date module provides functions that deal with date formats\n" "used by the HTTP protocol (and then some more)." msgstr "" -#: gnu/packages/web.scm:3508 +#: gnu/packages/web.scm:3509 msgid "" "@code{HTTP::Lite} is a stand-alone lightweight\n" "HTTP/1.1 implementation for perl. It is intended for use in\n" @@ -21190,11 +21450,11 @@ msgid "" "processing of request data as it arrives." msgstr "" -#: gnu/packages/web.scm:3541 +#: gnu/packages/web.scm:3542 msgid "An HTTP::Message object contains some headers and a content body." msgstr "" -#: gnu/packages/web.scm:3562 +#: gnu/packages/web.scm:3563 msgid "" "The HTTP::Negotiate module provides a complete implementation of the\n" "HTTP content negotiation algorithm specified in\n" @@ -21204,7 +21464,7 @@ msgid "" "fields in the request." msgstr "" -#: gnu/packages/web.scm:3587 +#: gnu/packages/web.scm:3588 msgid "" "This is an HTTP request parser. It takes chunks of text as\n" "received and returns a @code{hint} as to what is required, or returns the\n" @@ -21212,33 +21472,33 @@ msgid "" "supported." msgstr "" -#: gnu/packages/web.scm:3610 +#: gnu/packages/web.scm:3611 msgid "" "HTTP::Parser::XS is a fast, primitive HTTP request/response\n" "parser." msgstr "" -#: gnu/packages/web.scm:3631 +#: gnu/packages/web.scm:3632 msgid "" "This module provides a convenient way to set up a CGI\n" "environment from an HTTP::Request." msgstr "" -#: gnu/packages/web.scm:3665 +#: gnu/packages/web.scm:3666 msgid "" "HTTP::Server::Simple is a simple standalone HTTP daemon with\n" "no non-core module dependencies. It can be used for building a standalone\n" "http-based UI to your existing tools." msgstr "" -#: gnu/packages/web.scm:3688 +#: gnu/packages/web.scm:3689 msgid "" "This is a very simple HTTP/1.1 client, designed for doing\n" "simple requests without the overhead of a large framework like LWP::UserAgent.\n" "It supports proxies and redirection. It also correctly resumes after EINTR." msgstr "" -#: gnu/packages/web.scm:3713 +#: gnu/packages/web.scm:3714 msgid "" "@code{HTTP::Tinyish} is a wrapper module for @acronym{LWP,libwww-perl},\n" "@code{HTTP::Tiny}, curl and wget.\n" @@ -21246,20 +21506,20 @@ msgid "" "It provides an API compatible to HTTP::Tiny." msgstr "" -#: gnu/packages/web.scm:3735 +#: gnu/packages/web.scm:3736 msgid "" "IO::HTML provides an easy way to open a file containing HTML while\n" "automatically determining its encoding. It uses the HTML5 encoding sniffing\n" "algorithm specified in section 8.2.2.1 of the draft standard." msgstr "" -#: gnu/packages/web.scm:3755 +#: gnu/packages/web.scm:3756 msgid "" "This module provides a protocol-independent way to use IPv4\n" "and IPv6 sockets, intended as a replacement for IO::Socket::INET." msgstr "" -#: gnu/packages/web.scm:3777 +#: gnu/packages/web.scm:3778 msgid "" "IO::Socket::SSL makes using SSL/TLS much easier by wrapping the\n" "necessary functionality into the familiar IO::Socket interface and providing\n" @@ -21268,7 +21528,7 @@ msgid "" "select or poll." msgstr "" -#: gnu/packages/web.scm:3816 +#: gnu/packages/web.scm:3817 msgid "" "The libwww-perl collection is a set of Perl modules which provides a\n" "simple and consistent application programming interface to the\n" @@ -21278,7 +21538,7 @@ msgid "" "help you implement simple HTTP servers." msgstr "" -#: gnu/packages/web.scm:3844 +#: gnu/packages/web.scm:3845 msgid "" "This module attempts to answer, as accurately as it can, one\n" "of the nastiest technical questions there is: am I on the internet?\n" @@ -21288,7 +21548,7 @@ msgid "" "not have DNS. We might not have a network card at all!" msgstr "" -#: gnu/packages/web.scm:3870 +#: gnu/packages/web.scm:3871 #, scheme-format msgid "" "The LWP::MediaTypes module provides functions for handling media (also\n" @@ -21297,20 +21557,20 @@ msgid "" "exists it is used instead." msgstr "" -#: gnu/packages/web.scm:3895 +#: gnu/packages/web.scm:3896 msgid "" "The LWP::Protocol::https module provides support for using\n" "https schemed URLs with LWP." msgstr "" -#: gnu/packages/web.scm:3916 +#: gnu/packages/web.scm:3917 msgid "" "LWP::UserAgent::Cached is an LWP::UserAgent subclass with\n" "cache support. It returns responses from the local file system, if available,\n" "instead of making an HTTP request." msgstr "" -#: gnu/packages/web.scm:3938 +#: gnu/packages/web.scm:3939 msgid "" "LWP::UserAgent::Determined works just like LWP::UserAgent,\n" "except that when you use it to get a web page but run into a\n" @@ -21318,7 +21578,7 @@ msgid "" "and retry a few times." msgstr "" -#: gnu/packages/web.scm:3965 +#: gnu/packages/web.scm:3966 msgid "" "@code{LWPx::ParanoidAgent} is a class subclassing\n" "@code{LWP::UserAgent} but paranoid against attackers. Its purpose is\n" @@ -21328,11 +21588,11 @@ msgid "" "is limited to http and https." msgstr "" -#: gnu/packages/web.scm:4011 +#: gnu/packages/web.scm:4012 msgid "This module provides a Perlish interface to Amazon S3." msgstr "" -#: gnu/packages/web.scm:4032 +#: gnu/packages/web.scm:4033 msgid "" "The Net::HTTP class is a low-level HTTP client. An instance of the\n" "Net::HTTP class represents a connection to an HTTP server. The HTTP protocol\n" @@ -21340,7 +21600,7 @@ msgid "" "HTTP/1.1." msgstr "" -#: gnu/packages/web.scm:4053 +#: gnu/packages/web.scm:4054 msgid "" "Net::Server is an extensible, generic Perl server engine.\n" "It attempts to be a generic server as in Net::Daemon and NetServer::Generic.\n" @@ -21354,11 +21614,11 @@ msgid "" "or to multiple server ports." msgstr "" -#: gnu/packages/web.scm:4082 +#: gnu/packages/web.scm:4083 msgid "SSL support for Net::SMTP." msgstr "" -#: gnu/packages/web.scm:4116 +#: gnu/packages/web.scm:4117 msgid "" "Plack is a set of tools for using the PSGI stack. It\n" "contains middleware components, a reference server, and utilities for Web\n" @@ -21366,7 +21626,7 @@ msgid "" "WSGI." msgstr "" -#: gnu/packages/web.scm:4143 +#: gnu/packages/web.scm:4144 msgid "" "Plack::Middleware::Deflater is a middleware to encode your response body\n" "in gzip or deflate, based on \"Accept-Encoding\" HTTP request header. It\n" @@ -21375,13 +21635,13 @@ msgid "" "servers." msgstr "" -#: gnu/packages/web.scm:4170 +#: gnu/packages/web.scm:4171 msgid "" "This module sets the body in redirect response, if it's not\n" "already set." msgstr "" -#: gnu/packages/web.scm:4193 +#: gnu/packages/web.scm:4194 msgid "" "This middleware allows for POST requests that pretend to be\n" "something else: by adding either a header named X-HTTP-Method-Override to the\n" @@ -21389,44 +21649,44 @@ msgid "" "can say what method it actually meant." msgstr "" -#: gnu/packages/web.scm:4217 +#: gnu/packages/web.scm:4218 msgid "" "This module removes the body in an HTTP response if it's not\n" "required." msgstr "" -#: gnu/packages/web.scm:4240 +#: gnu/packages/web.scm:4241 msgid "" "Plack::Middleware::ReverseProxy resets some HTTP headers,\n" "which are changed by reverse-proxy. You can specify the reverse proxy address\n" "and stop fake requests using @code{enable_if} directive in your app.psgi." msgstr "" -#: gnu/packages/web.scm:4261 +#: gnu/packages/web.scm:4262 msgid "" "This module allows your to run your Plack::Test tests\n" "against an external server instead of just against a local application through\n" "either mocked HTTP or a locally spawned server." msgstr "" -#: gnu/packages/web.scm:4283 +#: gnu/packages/web.scm:4284 msgid "Test::TCP is test utilities for TCP/IP programs." msgstr "" -#: gnu/packages/web.scm:4308 +#: gnu/packages/web.scm:4309 msgid "" "Test::WWW::Mechanize is a subclass of the Perl module\n" "WWW::Mechanize that incorporates features for web application testing." msgstr "" -#: gnu/packages/web.scm:4341 +#: gnu/packages/web.scm:4342 msgid "" "The Test::WWW::Mechanize::Catalyst module meshes the\n" "Test::WWW:Mechanize module and the Catalyst web application framework to allow\n" "testing of Catalyst applications without needing to start up a web server." msgstr "" -#: gnu/packages/web.scm:4365 +#: gnu/packages/web.scm:4366 msgid "" "PSGI is a specification to decouple web server environments\n" "from web application framework code. Test::WWW::Mechanize is a subclass of\n" @@ -21435,21 +21695,21 @@ msgid "" "applications." msgstr "" -#: gnu/packages/web.scm:4390 +#: gnu/packages/web.scm:4391 msgid "" "The URI module implements the URI class. Objects of this class\n" "represent \"Uniform Resource Identifier references\" as specified in RFC 2396\n" "and updated by RFC 2732." msgstr "" -#: gnu/packages/web.scm:4413 +#: gnu/packages/web.scm:4414 msgid "" "@code{URI::Fetch} is a smart client for fetching HTTP pages,\n" "notably syndication feeds (RSS, Atom, and others), in an intelligent, bandwidth-\n" "and time-saving way." msgstr "" -#: gnu/packages/web.scm:4437 +#: gnu/packages/web.scm:4438 msgid "" "This module finds URIs and URLs (according to what URI.pm\n" "considers a URI) in plain text. It only finds URIs which include a\n" @@ -21457,37 +21717,37 @@ msgid "" "URI::Find::Schemeless. For a command-line interface, urifind is provided." msgstr "" -#: gnu/packages/web.scm:4460 +#: gnu/packages/web.scm:4461 msgid "" "With this module, the URI package provides the same set of\n" "methods for WebSocket URIs as it does for HTTP URIs." msgstr "" -#: gnu/packages/web.scm:4483 +#: gnu/packages/web.scm:4484 msgid "" "This perl module provides a wrapper around URI templates as described in\n" "RFC 6570." msgstr "" -#: gnu/packages/web.scm:4517 +#: gnu/packages/web.scm:4518 msgid "" "This is a Perl extension interface for the libcurl file downloading\n" "library." msgstr "" -#: gnu/packages/web.scm:4548 +#: gnu/packages/web.scm:4549 msgid "" "WWW::Mechanize is a Perl module for stateful programmatic\n" "web browsing, used for automating interaction with websites." msgstr "" -#: gnu/packages/web.scm:4586 +#: gnu/packages/web.scm:4587 msgid "" "@code{WWW::OpenSearch} is a module to search @url{A9's OpenSearch,\n" "http://opensearch.a9.com} compatible search engines." msgstr "" -#: gnu/packages/web.scm:4608 +#: gnu/packages/web.scm:4609 msgid "" "The WWW::RobotRules module parses /robots.txt files as specified in\n" "\"A Standard for Robot Exclusion\", at\n" @@ -21496,13 +21756,13 @@ msgid "" "their web site." msgstr "" -#: gnu/packages/web.scm:4635 gnu/packages/web.scm:4659 +#: gnu/packages/web.scm:4640 gnu/packages/web.scm:4664 msgid "" "Universal feed parser which handles RSS 0.9x, RSS 1.0, RSS 2.0,\n" "CDF, Atom 0.3, and Atom 1.0 feeds." msgstr "" -#: gnu/packages/web.scm:4756 +#: gnu/packages/web.scm:4761 msgid "" "The Guix Data Service stores data about GNU Guix, and provides this\n" "through a web interface. It supports listening to the guix-commits mailing\n" @@ -21514,20 +21774,20 @@ msgstr "" "om uit te vogelen wat de nieuwste aanpassingen zijn en deze data dan in te laden\n" "in een PostgreSQL-database." -#: gnu/packages/web.scm:4785 +#: gnu/packages/web.scm:4790 msgid "" "Gumbo is an implementation of the HTML5 parsing algorithm implemented as\n" "a pure C99 library." msgstr "" -#: gnu/packages/web.scm:4858 +#: gnu/packages/web.scm:4863 msgid "" "uWSGI presents a complete stack for networked/clustered web applications,\n" "implementing message/object passing, caching, RPC and process management.\n" "It uses the uwsgi protocol for all the networking/interprocess communications." msgstr "" -#: gnu/packages/web.scm:4891 +#: gnu/packages/web.scm:4896 msgid "" "jq is like sed for JSON data – you can use it to slice and\n" "filter and map and transform structured data with the same ease that sed, awk,\n" @@ -21537,7 +21797,7 @@ msgid "" "you'd expect." msgstr "" -#: gnu/packages/web.scm:4920 +#: gnu/packages/web.scm:4925 msgid "" "@command{pup} is a command line tool for processing HTML. It reads\n" "from stdin, prints to stdout, and allows the user to filter parts of the page\n" @@ -21545,66 +21805,66 @@ msgid "" "fast and flexible way of exploring HTML from the terminal." msgstr "" -#: gnu/packages/web.scm:4953 +#: gnu/packages/web.scm:4958 msgid "" "Uhttpmock is a project for mocking web service APIs which use HTTP or\n" "HTTPS. It provides a library, libuhttpmock, which implements recording and\n" "playback of HTTP request/response traces." msgstr "" -#: gnu/packages/web.scm:4989 +#: gnu/packages/web.scm:4994 msgid "" "Woof (Web Offer One File) is a small simple web server that\n" "can easily be invoked on a single file. Your partner can access the file with\n" "tools they trust (e.g. wget)." msgstr "" -#: gnu/packages/web.scm:5017 +#: gnu/packages/web.scm:5022 msgid "" "This package provides the shared build system for Netsurf project\n" "libraries." msgstr "" -#: gnu/packages/web.scm:5052 +#: gnu/packages/web.scm:5057 msgid "" "LibParserUtils is a library for building efficient parsers, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5082 +#: gnu/packages/web.scm:5087 msgid "" "Hubbub is an HTML5 compliant parsing library, written in C, which can\n" "parse both valid and invalid web content. It is developed as part of the\n" "NetSurf project." msgstr "" -#: gnu/packages/web.scm:5203 +#: gnu/packages/web.scm:5208 msgid "" "Ikiwiki is a wiki compiler, capable of generating a static set of web\n" "pages, but also incorporating dynamic features like a web based editor and\n" "commenting." msgstr "" -#: gnu/packages/web.scm:5227 +#: gnu/packages/web.scm:5232 msgid "" "LibWapcaplet provides a reference counted string internment system\n" "designed to store small strings and allow rapid comparison of them. It is\n" "developed as part of the Netsurf project." msgstr "" -#: gnu/packages/web.scm:5259 +#: gnu/packages/web.scm:5264 msgid "" "LibCSS is a CSS (Cascading Style Sheet) parser and selection engine,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5294 +#: gnu/packages/web.scm:5299 msgid "" "LibDOM is an implementation of the W3C DOM, written in C. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5321 +#: gnu/packages/web.scm:5326 msgid "" "Libsvgtiny takes some SVG as input and returns a list of paths and texts\n" "which can be rendered easily, as defined in\n" @@ -21612,65 +21872,65 @@ msgid "" "project." msgstr "" -#: gnu/packages/web.scm:5346 +#: gnu/packages/web.scm:5351 msgid "" "Libnsbmp is a decoding library for BMP and ICO image file formats,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5369 +#: gnu/packages/web.scm:5374 msgid "" "Libnsgif is a decoding library for the GIF image file format, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5396 +#: gnu/packages/web.scm:5401 msgid "" "Libnslog provides a category-based logging library which supports\n" "complex logging filters, multiple log levels, and provides context through to\n" "client applications. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5420 +#: gnu/packages/web.scm:5425 msgid "" "Libnsutils provides a small number of useful utility routines. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5443 +#: gnu/packages/web.scm:5448 msgid "" "Libnspsl is a library to generate a static code representation of the\n" "Public Suffix List. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5469 +#: gnu/packages/web.scm:5474 msgid "" "@code{nsgenbind} is a tool to generate JavaScript to DOM bindings from\n" "w3c webidl files and a binding configuration file." msgstr "" -#: gnu/packages/web.scm:5592 +#: gnu/packages/web.scm:5597 msgid "" "NetSurf is a lightweight web browser that has its own layout and\n" "rendering engine entirely written from scratch. It is small and capable of\n" "handling many of the web standards in use today." msgstr "" -#: gnu/packages/web.scm:5631 +#: gnu/packages/web.scm:5636 msgid "" "Surfraw (Shell Users' Revolutionary Front Rage Against the Web)\n" "provides a unix command line interface to a variety of popular www search engines\n" "and similar services." msgstr "" -#: gnu/packages/web.scm:5664 +#: gnu/packages/web.scm:5669 msgid "" "darkhttpd is a simple static web server. It is\n" "standalone and does not need inetd or ucspi-tcp. It does not need any\n" "config files---you only have to specify the www root." msgstr "" -#: gnu/packages/web.scm:5695 +#: gnu/packages/web.scm:5700 msgid "" "GoAccess is a real-time web log analyzer and interactive viewer that\n" "runs in a terminal or through your browser. It provides fast and valuable\n" @@ -21678,7 +21938,7 @@ msgid "" "on the fly." msgstr "" -#: gnu/packages/web.scm:5749 +#: gnu/packages/web.scm:5754 msgid "" "Hitch is a performant TLS proxy based on @code{libev}. It terminates\n" "SSL/TLS connections and forwards the unencrypted traffic to a backend such\n" @@ -21686,7 +21946,7 @@ msgid "" "multicore machines." msgstr "" -#: gnu/packages/web.scm:5786 +#: gnu/packages/web.scm:5791 msgid "" "httptunnel creates a bidirectional virtual data connection\n" "tunnelled through HTTP (HyperText Transfer Protocol) requests. This can be\n" @@ -21704,7 +21964,7 @@ msgid "" "deployments." msgstr "" -#: gnu/packages/web.scm:5915 +#: gnu/packages/web.scm:5912 msgid "" "Varnish is a high-performance HTTP accelerator. It acts as a caching\n" "reverse proxy and load balancer. You install it in front of any server that\n" @@ -21712,14 +21972,14 @@ msgid "" "configuration language." msgstr "" -#: gnu/packages/web.scm:5949 +#: gnu/packages/web.scm:5946 msgid "" "This package provides a collection of modules (@dfn{vmods}) for the Varnish\n" "cache server, extending the @acronym{VCL, Varnish Configuration Language} with\n" "additional capabilities." msgstr "" -#: gnu/packages/web.scm:5976 +#: gnu/packages/web.scm:5973 msgid "" "@code{xinetd}, a more secure replacement for @code{inetd},\n" "listens for incoming requests over a network and launches the appropriate\n" @@ -21728,7 +21988,7 @@ msgid "" "used to start services with both privileged and non-privileged port numbers." msgstr "" -#: gnu/packages/web.scm:6023 +#: gnu/packages/web.scm:6020 msgid "" "Tidy is a console application which corrects and cleans up\n" "HTML and XML documents by fixing markup errors and upgrading\n" @@ -21739,14 +21999,14 @@ msgid "" "functions of Tidy." msgstr "" -#: gnu/packages/web.scm:6085 +#: gnu/packages/web.scm:6082 msgid "" "Hiawatha has been written with security in mind.\n" "Features include the ability to stop SQL injections, XSS and CSRF attacks and\n" "exploit attempts." msgstr "" -#: gnu/packages/web.scm:6107 +#: gnu/packages/web.scm:6104 msgid "" "Testing an HTTP Library can become difficult sometimes.\n" "@code{RequestBin} is fantastic for testing POST requests, but doesn't let you control the\n" @@ -21754,14 +22014,14 @@ msgid "" "JSON-encoded." msgstr "" -#: gnu/packages/web.scm:6132 +#: gnu/packages/web.scm:6129 msgid "" "@code{Pytest-httpbin} creates a @code{pytest} fixture that is dependency-injected\n" "into your tests. It automatically starts up a HTTP server in a separate thread running\n" "@code{httpbin} and provides your test with the URL in the fixture." msgstr "" -#: gnu/packages/web.scm:6199 +#: gnu/packages/web.scm:6196 msgid "" "This is a parser for HTTP messages written in C. It\n" "parses both requests and responses. The parser is designed to be used in\n" @@ -21771,40 +22031,40 @@ msgid "" "message stream (in a web server that is per connection)." msgstr "" -#: gnu/packages/web.scm:6236 +#: gnu/packages/web.scm:6233 msgid "" "@code{httpretty} is a helper for faking web requests,\n" "inspired by Ruby's @code{fakeweb}." msgstr "" -#: gnu/packages/web.scm:6254 +#: gnu/packages/web.scm:6251 msgid "" "jo is a command-line utility to create JSON objects or\n" "arrays. It creates a JSON string on stdout from words provided as\n" "command-line arguments or read from stdin." msgstr "" -#: gnu/packages/web.scm:6313 +#: gnu/packages/web.scm:6310 msgid "" "@code{ia} is a command-line tool for using\n" "@url{archive.org} from the command-line. It also implements the\n" "internetarchive python module for programmatic access to archive.org." msgstr "" -#: gnu/packages/web.scm:6364 +#: gnu/packages/web.scm:6361 msgid "" "@code{clf} is a command line tool for searching code\n" "snippets on @url{https://commandlinefu.com}." msgstr "" -#: gnu/packages/web.scm:6402 +#: gnu/packages/web.scm:6399 msgid "" "rss-bridge generates Atom feeds for social networking\n" "websites lacking feeds. Supported websites include Facebook, Twitter,\n" "Instagram and YouTube." msgstr "" -#: gnu/packages/web.scm:6440 +#: gnu/packages/web.scm:6437 msgid "" "LinkChecker is a website validator. It checks for broken\n" "links in websites. It is recursive and multithreaded providing output in\n" @@ -21813,67 +22073,67 @@ msgid "" "file links." msgstr "" -#: gnu/packages/web.scm:6488 +#: gnu/packages/web.scm:6485 msgid "" "Castor is a graphical client for plain-text protocols written in\n" "Rust with GTK. It currently supports the Gemini, Gopher and Finger\n" "protocols." msgstr "" -#: gnu/packages/web.scm:6575 +#: gnu/packages/web.scm:6572 msgid "" "This package includes Clearsilver, the CGI kit and HTML templating\n" "system." msgstr "" -#: gnu/packages/web.scm:6594 +#: gnu/packages/web.scm:6591 msgid "" "Py-ubjson is a Python module providing an Universal Binary JSON\n" "encoder/decoder based on the draft-12 specification for UBJSON." msgstr "" -#: gnu/packages/web.scm:6689 +#: gnu/packages/web.scm:6686 msgid "" "Apache Tomcat is a free implementation of the Java\n" "Servlet, JavaServer Pages, Java Expression Language and Java WebSocket\n" "technologies." msgstr "" -#: gnu/packages/web.scm:6743 +#: gnu/packages/web.scm:6740 msgid "" "This package contains helper classes for testing the Jetty\n" "Web Server." msgstr "" -#: gnu/packages/web.scm:6802 +#: gnu/packages/web.scm:6799 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides utility classes." msgstr "" -#: gnu/packages/web.scm:6880 +#: gnu/packages/web.scm:6877 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides IO-related utility classes." msgstr "" -#: gnu/packages/web.scm:6925 +#: gnu/packages/web.scm:6922 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides HTTP-related utility classes." msgstr "" -#: gnu/packages/web.scm:6959 +#: gnu/packages/web.scm:6956 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides the JMX management." msgstr "" -#: gnu/packages/web.scm:7045 +#: gnu/packages/web.scm:7042 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21881,7 +22141,7 @@ msgid "" "artifact." msgstr "" -#: gnu/packages/web.scm:7088 +#: gnu/packages/web.scm:7085 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21889,7 +22149,7 @@ msgid "" "infrastructure" msgstr "" -#: gnu/packages/web.scm:7144 +#: gnu/packages/web.scm:7141 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21897,14 +22157,14 @@ msgid "" "container." msgstr "" -#: gnu/packages/web.scm:7308 +#: gnu/packages/web.scm:7305 msgid "" "Jsoup is a Java library for working with real-world HTML. It\n" "provides a very convenient API for extracting and manipulating data, using the\n" "best of DOM, CSS, and jQuery-like methods." msgstr "" -#: gnu/packages/web.scm:7337 +#: gnu/packages/web.scm:7334 msgid "" "Signpost is the easy and intuitive solution for signing\n" "HTTP messages on the Java platform in conformance with the OAuth Core 1.0a\n" @@ -21912,7 +22172,7 @@ msgid "" "combine it with different HTTP messaging layers." msgstr "" -#: gnu/packages/web.scm:7360 +#: gnu/packages/web.scm:7357 msgid "" "Tidyp is a program that can validate your HTML, as well as\n" "modify it to be more clean and standard. tidyp does not validate HTML 5.\n" @@ -21922,14 +22182,14 @@ msgid "" "based on this library, allowing Perl programmers to easily validate HTML." msgstr "" -#: gnu/packages/web.scm:7401 +#: gnu/packages/web.scm:7398 msgid "" "@code{HTML::Tidy} is an HTML checker in a handy dandy\n" "object. It's meant as a replacement for @code{HTML::Lint}, which is written\n" "in Perl but is not nearly as capable as @code{HTML::Tidy}." msgstr "" -#: gnu/packages/web.scm:7430 +#: gnu/packages/web.scm:7427 msgid "" "Geomyidae is a server for distributed hypertext protocol Gopher. Its\n" "features include:\n" @@ -21943,14 +22203,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/web.scm:7478 +#: gnu/packages/web.scm:7475 msgid "" "Cat avatar generator is a generator of cat pictures optimised\n" "to generate random avatars, or defined avatar from a \"seed\". This is a\n" "derivation by David Revoy from the original MonsterID by Andreas Gohr." msgstr "" -#: gnu/packages/web.scm:7548 +#: gnu/packages/web.scm:7545 msgid "" "nghttp2 implements the Hypertext Transfer Protocol, version\n" "2 (@dfn{HTTP/2}).\n" @@ -21976,14 +22236,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7647 +#: gnu/packages/web.scm:7644 msgid "" "Hpcguix-web provides a web interface to the list of packages\n" "provided by Guix. The list of packages is searchable and provides\n" "instructions on how to use Guix in a shared HPC environment." msgstr "" -#: gnu/packages/web.scm:7668 +#: gnu/packages/web.scm:7665 msgid "" "HTTrack allows you to download a World Wide Web site from\n" "the Internet to a local directory, building recursively all directories,\n" @@ -21997,7 +22257,7 @@ msgid "" "HTTrack is fully configurable, and has an integrated help system." msgstr "" -#: gnu/packages/web.scm:7703 +#: gnu/packages/web.scm:7700 msgid "" "buku is a powerful bookmark manager written in Python3 and SQLite3.\n" "@command{buku} can auto-import bookmarks from your browser and present them\n" @@ -22006,7 +22266,7 @@ msgid "" "@command{bukuserver}." msgstr "" -#: gnu/packages/web.scm:7724 +#: gnu/packages/web.scm:7721 msgid "" "Anonip masks the last bits of IPv4 and IPv6 addresses in log files.\n" "That way most of the relevant information is preserved, while the IP address\n" @@ -22021,7 +22281,7 @@ msgid "" "Anonip can also be uses as a Python module in your own Python application." msgstr "" -#: gnu/packages/web.scm:7758 +#: gnu/packages/web.scm:7755 msgid "" "Poussetaches (which literally means \"push tasks\" in\n" "French) is a lightweight asynchronous task execution service that aims to\n" @@ -22033,7 +22293,7 @@ msgid "" "returned." msgstr "" -#: gnu/packages/web.scm:7783 +#: gnu/packages/web.scm:7780 msgid "" "htmlcxx is a simple non-validating CSS1 and HTML parser for\n" "C++. Although there are several other HTML parsers available, htmlcxx has some\n" @@ -22051,7 +22311,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:7827 +#: gnu/packages/web.scm:7824 msgid "" "libRocket is a C++ user interface package based on the HTML\n" "and CSS standards. libRocket uses the open standards XHTML1.0 and\n" @@ -22068,11 +22328,11 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7869 +#: gnu/packages/web.scm:7866 msgid "gmnisrv is a simple Gemini protocol server written in C." msgstr "" -#: gnu/packages/web.scm:7900 +#: gnu/packages/web.scm:7898 msgid "" "The openZIM project proposes offline storage solutions for\n" "content coming from the Web. The zimlib is the standard implementation of the\n" @@ -22104,14 +22364,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:8081 +#: gnu/packages/web.scm:8078 msgid "" "uriparser is a strictly RFC 3986 compliant URI parsing and\n" "handling library written in C89 (\"ANSI C\"). uriparser is fast and supports\n" "Unicode." msgstr "" -#: gnu/packages/web.scm:8115 +#: gnu/packages/web.scm:8112 msgid "" "Quark is an extremely small and simple HTTP GET/HEAD only\n" "web server for static content. TLS is not natively supported and should be\n" @@ -22281,53 +22541,53 @@ msgid "" "Enhancement}." msgstr "" -#: gnu/services/base.scm:276 +#: gnu/services/base.scm:279 msgid "" "Populate the @file{/etc/fstab} based on the given file\n" "system objects." msgstr "" -#: gnu/services/base.scm:314 +#: gnu/services/base.scm:317 msgid "" "Take care of syncing the root file\n" "system and of remounting it read-only when the system shuts down." msgstr "" -#: gnu/services/base.scm:481 +#: gnu/services/base.scm:484 msgid "" "Provide Shepherd services to mount and unmount the given\n" "file systems, as well as corresponding @file{/etc/fstab} entries." msgstr "" -#: gnu/services/base.scm:579 +#: gnu/services/base.scm:582 msgid "" "Seed the @file{/dev/urandom} pseudo-random number\n" "generator (RNG) with the value recorded when the system was last shut\n" "down." msgstr "" -#: gnu/services/base.scm:611 +#: gnu/services/base.scm:614 msgid "" "Run the @command{rngd} random number generation daemon to\n" "supply entropy to the kernel's pool." msgstr "" -#: gnu/services/base.scm:640 +#: gnu/services/base.scm:643 msgid "Initialize the machine's host name." msgstr "" -#: gnu/services/base.scm:670 +#: gnu/services/base.scm:673 msgid "Ensure the Linux virtual terminals run in UTF-8 mode." msgstr "" -#: gnu/services/base.scm:683 +#: gnu/services/base.scm:686 msgid "" "@emph{This service is deprecated in favor of the\n" "@code{keyboard-layout} field of @code{operating-system}.} Load the given list\n" "of console keymaps with @command{loadkeys}." msgstr "" -#: gnu/services/base.scm:743 +#: gnu/services/base.scm:746 msgid "" "Install the given fonts on the specified ttys (fonts are per\n" "virtual console on GNU/Linux). The value of this service is a list of\n" @@ -22345,66 +22605,66 @@ msgid "" "@end example\n" msgstr "" -#: gnu/services/base.scm:795 +#: gnu/services/base.scm:798 msgid "" "Provide a console log-in service as specified by its\n" "configuration value, a @code{login-configuration} object." msgstr "" -#: gnu/services/base.scm:1063 +#: gnu/services/base.scm:1066 msgid "" "Provide console login using the @command{agetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1128 +#: gnu/services/base.scm:1131 msgid "" "Provide console login using the @command{mingetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1345 +#: gnu/services/base.scm:1348 msgid "" "Runs libc's @dfn{name service cache daemon} (nscd) with the\n" "given configuration---an @code{} object. @xref{Name\n" "Service Switch}, for an example." msgstr "" -#: gnu/services/base.scm:1384 +#: gnu/services/base.scm:1387 msgid "" "Run the syslog daemon, @command{syslogd}, which is\n" "responsible for logging system messages." msgstr "" -#: gnu/services/base.scm:1448 +#: gnu/services/base.scm:1451 msgid "" "Install the specified resource usage limits by populating\n" "@file{/etc/security/limits.conf} and using the @code{pam_limits}\n" "authentication module." msgstr "" -#: gnu/services/base.scm:1794 +#: gnu/services/base.scm:1804 msgid "Run the build daemon of GNU@tie{}Guix, aka. @command{guix-daemon}." msgstr "" -#: gnu/services/base.scm:1944 +#: gnu/services/base.scm:1961 msgid "" "Add a Shepherd service running @command{guix publish}, a\n" "command that allows you to share pre-built binaries with others over HTTP." msgstr "" -#: gnu/services/base.scm:2150 +#: gnu/services/base.scm:2167 msgid "" "Run @command{udev}, which populates the @file{/dev}\n" "directory dynamically. Get extra rules from the packages listed in the\n" "@code{rules} field of its value, @code{udev-configuration} object." msgstr "" -#: gnu/services/base.scm:2267 +#: gnu/services/base.scm:2284 msgid "Turn on the virtual memory swap area." msgstr "" -#: gnu/services/base.scm:2309 +#: gnu/services/base.scm:2326 msgid "" "Run GPM, the general-purpose mouse daemon, with the given\n" "command-line options. GPM allows users to use the mouse in the console,\n" @@ -22412,33 +22672,33 @@ msgid "" "@code{ps2} protocol, which works for both USB and PS/2 mice." msgstr "" -#: gnu/services/base.scm:2382 +#: gnu/services/base.scm:2399 msgid "" "Start the @command{kmscon} virtual terminal emulator for the\n" "Linux @dfn{kernel mode setting} (KMS)." msgstr "" -#: gnu/services/base.scm:2403 +#: gnu/services/base.scm:2416 #, scheme-format msgid "address '~a' lacks a network mask" msgstr "" -#: gnu/services/base.scm:2409 +#: gnu/services/base.scm:2422 #, scheme-format msgid "Write, say, @samp{\"~a/24\"} for a 24-bit network mask." msgstr "" -#: gnu/services/base.scm:2489 +#: gnu/services/base.scm:2502 #, scheme-format msgid "network links are currently ignored on GNU/Hurd~%" msgstr "" -#: gnu/services/base.scm:2514 +#: gnu/services/base.scm:2527 #, scheme-format msgid "ignoring network route for '~a'~%" msgstr "" -#: gnu/services/base.scm:2698 +#: gnu/services/base.scm:2711 msgid "" "Turn up the specified network interfaces upon startup,\n" "with the given IP address, gateway, netmask, and so on. The value for\n" diff --git a/po/packages/oc.po b/po/packages/oc.po index 5e1b844410..7a4bd08920 100644 --- a/po/packages/oc.po +++ b/po/packages/oc.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: GNU guix\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" "PO-Revision-Date: 2021-05-03 02:58+0000\n" "Last-Translator: Quentin PAGÈS \n" "Language-Team: Occitan \n" @@ -40,7 +40,7 @@ msgstr "" msgid "This package provides a dictionary for the GNU Aspell spell checker." msgstr "Aqueste paquet provesís un diccionari pel corrector ortografic GNU Aspell." -#: gnu/packages/aspell.scm:445 gnu/packages/libreoffice.scm:845 +#: gnu/packages/aspell.scm:450 gnu/packages/libreoffice.scm:845 #: gnu/packages/libreoffice.scm:918 msgid "" "This package provides a dictionary for the Hunspell spell-checking\n" @@ -49,13 +49,13 @@ msgstr "" "Aqueste paquet provesís un diccionari per la bibliotèca del\n" "corrector ortografic Hunspell." -#: gnu/packages/aspell.scm:525 +#: gnu/packages/aspell.scm:530 msgid "" "Ispell is an interactive spell-checking tool supporting many\n" "European languages." msgstr "" -#: gnu/packages/audio.scm:197 +#: gnu/packages/audio.scm:198 msgid "" "OpenSLES is a royalty-free, cross-platform,\n" "hardware-accelerated audio API tuned for embedded systems. It provides a\n" @@ -66,31 +66,31 @@ msgid "" "promoting the market for advanced audio." msgstr "" -#: gnu/packages/audio.scm:233 +#: gnu/packages/audio.scm:234 msgid "" "WildMIDI is a simple software midi player which has a core\n" "softsynth library that can be use with other applications." msgstr "" -#: gnu/packages/audio.scm:257 +#: gnu/packages/audio.scm:258 msgid "" "WebRTC-Audio-Processing library based on Google's\n" "implementation of WebRTC." msgstr "" -#: gnu/packages/audio.scm:277 +#: gnu/packages/audio.scm:278 msgid "" "VO-AACENC is the VisualOn implementation of Advanced Audio\n" "Coding (AAC) encoder." msgstr "" -#: gnu/packages/audio.scm:306 +#: gnu/packages/audio.scm:307 msgid "" "TinyALSA is a small library to interface with ALSA in the\n" "Linux kernel." msgstr "" -#: gnu/packages/audio.scm:329 +#: gnu/packages/audio.scm:330 msgid "" "Game-music-emu is a collection of video game music file emulators that\n" "support the following formats and systems:\n" @@ -116,43 +116,43 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/audio.scm:393 +#: gnu/packages/audio.scm:394 msgid "" "LibOpenMPT is a cross-platform C++ and C module playback\n" "library. It is based on the player code of the Open ModPlug Tracker project." msgstr "" -#: gnu/packages/audio.scm:424 +#: gnu/packages/audio.scm:425 msgid "" "LibOFA is an audio fingerprint library, created and provided\n" "by MusicIP." msgstr "" -#: gnu/packages/audio.scm:445 +#: gnu/packages/audio.scm:446 msgid "FAAC is an MPEG-4 and MPEG-2 AAC encoder." msgstr "" -#: gnu/packages/audio.scm:474 +#: gnu/packages/audio.scm:475 msgid "" "LibTiMidity is a MIDI to WAVE converter library that uses\n" "Gravis Ultrasound-compatible patch files to generate digital audio data from\n" "General MIDI files." msgstr "" -#: gnu/packages/audio.scm:499 +#: gnu/packages/audio.scm:500 msgid "" "VO-AMR is a library of VisualOn implementation of\n" "Adaptive Multi Rate Narrowband and Wideband (AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:518 +#: gnu/packages/audio.scm:519 msgid "" "OpenCore-AMR is a library of OpenCORE Framework\n" "implementation of Adaptive Multi Rate Narrowband and Wideband\n" "(AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:551 +#: gnu/packages/audio.scm:552 msgid "" "AlsaModularSynth is a digital implementation of a classical analog\n" "modular synthesizer system. It uses virtual control voltages to control the\n" @@ -161,7 +161,7 @@ msgid "" "Filter) modules follow the convention of 1V / Octave." msgstr "" -#: gnu/packages/audio.scm:588 +#: gnu/packages/audio.scm:589 msgid "" "aubio is a tool designed for the extraction of annotations from audio\n" "signals. Its features include segmenting a sound file before each of its\n" @@ -169,21 +169,21 @@ msgid "" "streams from live audio." msgstr "" -#: gnu/packages/audio.scm:719 +#: gnu/packages/audio.scm:720 msgid "" "Ardour is a multi-channel digital audio workstation, allowing users to\n" "record, edit, mix and master audio and MIDI projects. It is targeted at audio\n" "engineers, musicians, soundtrack editors and composers." msgstr "" -#: gnu/packages/audio.scm:833 +#: gnu/packages/audio.scm:853 msgid "" "Audacity is a multi-track audio editor designed for recording, playing\n" "and editing digital audio. It features digital effects and spectrum analysis\n" "tools." msgstr "" -#: gnu/packages/audio.scm:889 +#: gnu/packages/audio.scm:909 msgid "" "This is an open-source version of SGI's audiofile library.\n" "It provides a uniform programming interface for processing of audio data to\n" @@ -194,14 +194,14 @@ msgid "" "G.711 mu-law and A-law." msgstr "" -#: gnu/packages/audio.scm:931 +#: gnu/packages/audio.scm:951 msgid "" "Autotalent is a LADSPA plugin for real-time pitch-correction. Among its\n" "controls are allowable notes, strength of correction, LFO for vibrato and\n" "formant warp." msgstr "" -#: gnu/packages/audio.scm:972 +#: gnu/packages/audio.scm:992 msgid "" "AZR-3 is a port of the free VST plugin AZR-3. It is a tonewheel organ\n" "with drawbars, distortion and rotating speakers. The organ has three\n" @@ -210,7 +210,7 @@ msgid "" "plugins are provided." msgstr "" -#: gnu/packages/audio.scm:1011 +#: gnu/packages/audio.scm:1031 msgid "" "Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments.\n" "The suite contains lots of effects (delay, modulation, signal processing,\n" @@ -219,31 +219,31 @@ msgid "" "tools (analyzer, mono/stereo tools, crossovers)." msgstr "" -#: gnu/packages/audio.scm:1053 +#: gnu/packages/audio.scm:1073 msgid "" "LV2 port of CAPS, a collection of audio plugins comprising basic virtual\n" "guitar amplification and a small range of classic effects, signal processors and\n" "generators of mostly elementary and occasionally exotic nature." msgstr "" -#: gnu/packages/audio.scm:1094 +#: gnu/packages/audio.scm:1114 msgid "" "The infamous plugins are a collection of LV2 audio plugins for live\n" "performances. The plugins include a cellular automaton synthesizer, an\n" "envelope follower, distortion effects, tape effects and more." msgstr "" -#: gnu/packages/audio.scm:1129 +#: gnu/packages/audio.scm:1149 msgid "" "Snapcast is a multi-room client-server audio player. Clients are time\n" "synchronized with the server to play synced audio." msgstr "" -#: gnu/packages/audio.scm:1159 +#: gnu/packages/audio.scm:1179 msgid "This package provides Steve Harris's LADSPA plugins." msgstr "" -#: gnu/packages/audio.scm:1199 +#: gnu/packages/audio.scm:1219 msgid "" "Swh-plugins-lv2 is a collection of audio plugins in LV2 format. Plugin\n" "classes include: dynamics (compressor, limiter), time (delay, chorus,\n" @@ -251,13 +251,13 @@ msgid "" "emulation (valve, tape), bit fiddling (decimator, pointer-cast), etc." msgstr "" -#: gnu/packages/audio.scm:1233 +#: gnu/packages/audio.scm:1253 msgid "" "@code{libdjinterop} is a C++ library that allows access to database\n" "formats used to store information about DJ record libraries." msgstr "" -#: gnu/packages/audio.scm:1295 gnu/packages/audio.scm:1326 +#: gnu/packages/audio.scm:1315 gnu/packages/audio.scm:1346 msgid "" "Tao is a software package for sound synthesis using physical\n" "models. It provides a virtual acoustic material constructed from masses and\n" @@ -267,13 +267,13 @@ msgid "" "object library." msgstr "" -#: gnu/packages/audio.scm:1361 +#: gnu/packages/audio.scm:1381 msgid "" "Csound is a user-programmable and user-extensible sound processing\n" "language and software synthesizer." msgstr "" -#: gnu/packages/audio.scm:1388 +#: gnu/packages/audio.scm:1408 msgid "" "midicomp can manipulate SMF (Standard MIDI File) files. It can both\n" " read and write SMF files in 0 or format 1 and also read and write its own\n" @@ -282,20 +282,20 @@ msgid "" " language, and recompiled back into a binary SMF file." msgstr "" -#: gnu/packages/audio.scm:1435 +#: gnu/packages/audio.scm:1455 msgid "" "clalsadrv is a C++ wrapper around the ALSA API simplifying access to\n" "ALSA PCM devices." msgstr "" -#: gnu/packages/audio.scm:1474 +#: gnu/packages/audio.scm:1494 msgid "" "The AMB plugins are a set of LADSPA ambisonics plugins, mainly to be\n" "used within Ardour. Features include: mono and stereo to B-format panning,\n" "horizontal rotator, square, hexagon and cube decoders." msgstr "" -#: gnu/packages/audio.scm:1511 +#: gnu/packages/audio.scm:1531 msgid "" "This package provides various LADSPA plugins. @code{cs_chorus} and\n" "@code{cs_phaser} provide chorus and phaser effects, respectively;\n" @@ -305,13 +305,13 @@ msgid "" "the non-linear circuit elements of their original analog counterparts." msgstr "" -#: gnu/packages/audio.scm:1551 +#: gnu/packages/audio.scm:1571 msgid "" "This package provides a stereo reverb LADSPA plugin based on the\n" "well-known greverb." msgstr "" -#: gnu/packages/audio.scm:1587 +#: gnu/packages/audio.scm:1607 msgid "" "This package provides a LADSPA plugin for a four-band parametric\n" "equalizer. Each section has an active/bypass switch, frequency, bandwidth and\n" @@ -326,13 +326,13 @@ msgid "" "for stage use." msgstr "" -#: gnu/packages/audio.scm:1632 +#: gnu/packages/audio.scm:1652 msgid "" "This package provides a LADSPA plugin to manipulate the stereo width of\n" "audio signals." msgstr "" -#: gnu/packages/audio.scm:1669 +#: gnu/packages/audio.scm:1689 msgid "" "The @code{blvco} LADSPA plugin provides three anti-aliased oscillators:\n" "\n" @@ -347,17 +347,17 @@ msgid "" "output of analog synthesizers such as the Moog Voyager." msgstr "" -#: gnu/packages/audio.scm:1713 +#: gnu/packages/audio.scm:1733 msgid "" "This package provides a LADSPA plugin for a Wah effect with envelope\n" "follower." msgstr "" -#: gnu/packages/audio.scm:1749 +#: gnu/packages/audio.scm:1769 msgid "This package provides a LADSPA plugin for a stereo reverb effect." msgstr "" -#: gnu/packages/audio.scm:1791 +#: gnu/packages/audio.scm:1811 msgid "" "FluidSynth is a real-time software synthesizer based on the SoundFont 2\n" "specifications. FluidSynth reads and handles MIDI events from the MIDI input\n" @@ -365,21 +365,21 @@ msgid "" "also play midifiles using a Soundfont." msgstr "" -#: gnu/packages/audio.scm:1814 +#: gnu/packages/audio.scm:1834 msgid "FAAD2 is an MPEG-4 and MPEG-2 AAC decoder supporting LC, Main, LTP, SBR, -PS, and DAB+." msgstr "" -#: gnu/packages/audio.scm:1855 +#: gnu/packages/audio.scm:1875 msgid "Faust is a programming language for realtime audio signal processing." msgstr "" -#: gnu/packages/audio.scm:1919 +#: gnu/packages/audio.scm:1939 msgid "" "FreePats is a project to create a free and open set of GUS compatible\n" "patches that can be used with softsynths such as Timidity and WildMidi." msgstr "" -#: gnu/packages/audio.scm:1972 +#: gnu/packages/audio.scm:1992 msgid "" "Guitarix is a virtual guitar amplifier running JACK.\n" "Guitarix takes the signal from your guitar as a mono-signal from your sound\n" @@ -390,7 +390,7 @@ msgid "" "auto-wah." msgstr "" -#: gnu/packages/audio.scm:2028 +#: gnu/packages/audio.scm:2048 msgid "" "Rakarrack is a richly featured multi-effects processor emulating a\n" "guitar effects pedalboard. Effects include compressor, expander, noise gate,\n" @@ -402,14 +402,14 @@ msgid "" "well suited to all musical instruments and vocals." msgstr "" -#: gnu/packages/audio.scm:2084 +#: gnu/packages/audio.scm:2104 msgid "" "IR is a low-latency, real-time, high performance signal convolver\n" "especially for creating reverb effects. It supports impulse responses with 1,\n" "2 or 4 channels, in any soundfile format supported by libsndfile." msgstr "" -#: gnu/packages/audio.scm:2124 +#: gnu/packages/audio.scm:2144 msgid "" "JACK is a low-latency audio server. It can connect a number of\n" "different applications to an audio device, as well as allowing them to share\n" @@ -419,20 +419,20 @@ msgid "" "synchronous execution of all clients, and low latency operation." msgstr "" -#: gnu/packages/audio.scm:2220 +#: gnu/packages/audio.scm:2240 msgid "" "Jalv is a simple but fully featured LV2 host for JACK. It runs LV2\n" "plugins and exposes their ports as JACK ports, essentially making any LV2\n" "plugin function as a JACK application." msgstr "" -#: gnu/packages/audio.scm:2266 +#: gnu/packages/audio.scm:2286 msgid "" "LADSPA is a standard that allows software audio processors and effects\n" "to be plugged into a wide range of audio synthesis and recording packages." msgstr "" -#: gnu/packages/audio.scm:2318 +#: gnu/packages/audio.scm:2338 msgid "" "LASH is a session management system for audio applications. It allows\n" "you to save and restore audio sessions consisting of multiple interconneced\n" @@ -440,7 +440,7 @@ msgid "" "connections between them." msgstr "" -#: gnu/packages/audio.scm:2341 +#: gnu/packages/audio.scm:2361 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is\n" "designed to improve headphone listening of stereo audio records. Recommended\n" @@ -448,7 +448,7 @@ msgid "" "essential distortions." msgstr "" -#: gnu/packages/audio.scm:2364 +#: gnu/packages/audio.scm:2384 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and\n" "plugins is designed to improve headphone listening of stereo audio records.\n" @@ -457,13 +457,13 @@ msgid "" "with applications that support them (e.g. PulseAudio)." msgstr "" -#: gnu/packages/audio.scm:2390 +#: gnu/packages/audio.scm:2410 msgid "" "liblo is a lightweight library that provides an easy to use\n" "implementation of the Open Sound Control (@dfn{OSC}) protocol." msgstr "" -#: gnu/packages/audio.scm:2426 +#: gnu/packages/audio.scm:2446 msgid "" "RtAudio is a set of C++ classes that provides a common API for real-time\n" "audio input/output. It was designed with the following objectives:\n" @@ -482,13 +482,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/audio.scm:2462 +#: gnu/packages/audio.scm:2482 msgid "" "This package provides bindings for PortAudio v19, the\n" "cross-platform audio input/output stream library." msgstr "" -#: gnu/packages/audio.scm:2489 +#: gnu/packages/audio.scm:2509 msgid "" "Pyliblo is a Python wrapper for the liblo Open Sound Control (OSC)\n" "library. It supports almost the complete functionality of liblo, allowing you\n" @@ -496,19 +496,19 @@ msgid "" "included are the command line utilities @code{send_osc} and @code{dump_osc}." msgstr "" -#: gnu/packages/audio.scm:2526 +#: gnu/packages/audio.scm:2546 msgid "" "This package provides python bindings for libsndfile based on\n" "CFFI and NumPy." msgstr "" -#: gnu/packages/audio.scm:2544 +#: gnu/packages/audio.scm:2564 msgid "" "This package provides a python API to read and write MIDI\n" "files." msgstr "" -#: gnu/packages/audio.scm:2581 +#: gnu/packages/audio.scm:2601 msgid "" "@command{audio-to-midi} converts audio files to multichannel\n" "MIDI files. It accomplishes this by performing FFTs on all channels of the\n" @@ -518,14 +518,14 @@ msgid "" "frequencies. This data is then formatted to MIDI and written to disk." msgstr "" -#: gnu/packages/audio.scm:2624 +#: gnu/packages/audio.scm:2644 msgid "" "Lilv is a C library to make the use of LV2 plugins as simple as possible\n" "for applications. Lilv is the successor to SLV2, rewritten to be\n" "significantly faster and have minimal dependencies." msgstr "" -#: gnu/packages/audio.scm:2652 +#: gnu/packages/audio.scm:2672 msgid "" "LV2 is an open specification for audio plugins and host applications.\n" "At its core, LV2 is a simple stable interface, accompanied by extensions which\n" @@ -533,22 +533,22 @@ msgid "" "software." msgstr "" -#: gnu/packages/audio.scm:2688 +#: gnu/packages/audio.scm:2708 msgid "An LV2 port of the mda Piano VSTi." msgstr "" -#: gnu/packages/audio.scm:2702 +#: gnu/packages/audio.scm:2722 msgid "An LV2 port of the mda EPiano VSTi." msgstr "" -#: gnu/packages/audio.scm:2732 +#: gnu/packages/audio.scm:2752 msgid "" "The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and\n" "extensions into easy to use C++ classes. It is the successor of\n" "lv2-c++-tools." msgstr "" -#: gnu/packages/audio.scm:2774 +#: gnu/packages/audio.scm:2794 msgid "" "OpenAL provides capabilities for playing audio in a virtual 3D\n" "environment. Distance attenuation, doppler shift, and directional sound\n" @@ -558,36 +558,36 @@ msgid "" "buffers, and audio capture." msgstr "" -#: gnu/packages/audio.scm:2805 +#: gnu/packages/audio.scm:2825 msgid "freealut is the OpenAL Utility Toolkit." msgstr "" -#: gnu/packages/audio.scm:2837 +#: gnu/packages/audio.scm:2857 msgid "" "Patchage is a modular patch bay for audio and MIDI systems based on JACK\n" "and ALSA." msgstr "" -#: gnu/packages/audio.scm:2862 +#: gnu/packages/audio.scm:2882 msgid "" "The Portable C Audio Library (pcaudiolib) provides a C@tie{}API to\n" "different audio devices such as ALSA or PulseAudio." msgstr "" -#: gnu/packages/audio.scm:2889 +#: gnu/packages/audio.scm:2909 msgid "" "Control a Jack server. Allows you to plug various sources\n" "into various outputs and to start, stop and configure jackd" msgstr "" -#: gnu/packages/audio.scm:2921 +#: gnu/packages/audio.scm:2941 msgid "" "QJackRcd is a simple graphical stereo recorder for JACK\n" "supporting silence processing for automatic pause, file splitting, and\n" "background file post-processing." msgstr "" -#: gnu/packages/audio.scm:3029 +#: gnu/packages/audio.scm:3049 msgid "" "SuperCollider is a synthesis engine (@code{scsynth} or\n" "@code{supernova}) and programming language (@code{sclang}). It can be used\n" @@ -599,17 +599,17 @@ msgid "" "using Guix System." msgstr "" -#: gnu/packages/audio.scm:3057 +#: gnu/packages/audio.scm:3077 msgid "This package provides libshout plus IDJC extensions." msgstr "" -#: gnu/packages/audio.scm:3083 +#: gnu/packages/audio.scm:3103 msgid "" "Raul (Real-time Audio Utility Library) is a C++ utility library primarily\n" "aimed at audio/musical applications." msgstr "" -#: gnu/packages/audio.scm:3119 +#: gnu/packages/audio.scm:3139 msgid "" "This package contains the @command{resample} and\n" "@command{windowfilter} command line utilities. The @command{resample} command\n" @@ -618,26 +618,26 @@ msgid "" "filters using the so-called @emph{window method}." msgstr "" -#: gnu/packages/audio.scm:3160 +#: gnu/packages/audio.scm:3180 msgid "" "Rubber Band is a library and utility program that permits changing the\n" "tempo and pitch of an audio recording independently of one another." msgstr "" -#: gnu/packages/audio.scm:3184 +#: gnu/packages/audio.scm:3204 msgid "" "RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut, and API specific\n" "classes) that provide a common cross-platform API for realtime MIDI\n" "input/output." msgstr "" -#: gnu/packages/audio.scm:3210 +#: gnu/packages/audio.scm:3230 msgid "" "Sratom is a library for serialising LV2 atoms to/from RDF, particularly\n" "the Turtle syntax." msgstr "" -#: gnu/packages/audio.scm:3238 +#: gnu/packages/audio.scm:3258 msgid "" "Suil is a lightweight C library for loading and wrapping LV2 plugin UIs.\n" "\n" @@ -649,13 +649,13 @@ msgid "" "Suil currently supports every combination of Gtk, Qt, and X11." msgstr "" -#: gnu/packages/audio.scm:3270 +#: gnu/packages/audio.scm:3290 msgid "" "@code{libebur128} is a C library that implements the EBU R 128 standard\n" "for loudness normalisation." msgstr "" -#: gnu/packages/audio.scm:3324 +#: gnu/packages/audio.scm:3344 msgid "" "TiMidity++ is a software synthesizer. It can play MIDI files by\n" "converting them into PCM waveform data; give it a MIDI data along with digital\n" @@ -664,33 +664,33 @@ msgid "" "disks as various audio file formats." msgstr "" -#: gnu/packages/audio.scm:3364 +#: gnu/packages/audio.scm:3384 msgid "" "Vamp is an audio processing plugin system for plugins that extract\n" "descriptive information from audio data — typically referred to as audio\n" "analysis plugins or audio feature extraction plugins." msgstr "" -#: gnu/packages/audio.scm:3408 +#: gnu/packages/audio.scm:3428 msgid "" "SBSMS (Subband Sinusoidal Modeling Synthesis) is software for time\n" "stretching and pitch scaling of audio. This package contains the library." msgstr "" -#: gnu/packages/audio.scm:3435 +#: gnu/packages/audio.scm:3455 msgid "" "@code{libkeyfinder} is a small C++11 library for estimating the musical\n" "key of digital audio." msgstr "" -#: gnu/packages/audio.scm:3465 +#: gnu/packages/audio.scm:3485 msgid "" "WavPack is an audio compression format with lossless, lossy and hybrid\n" "compression modes. This package contains command-line programs and library to\n" "encode and decode wavpack files." msgstr "" -#: gnu/packages/audio.scm:3486 +#: gnu/packages/audio.scm:3506 msgid "" "Libmodplug renders mod music files as raw audio data, for playing or\n" "conversion. mod, .s3m, .it, .xm, and a number of lesser-known formats are\n" @@ -698,21 +698,21 @@ msgid "" "surround and reverb." msgstr "" -#: gnu/packages/audio.scm:3507 +#: gnu/packages/audio.scm:3527 msgid "" "Libxmp is a library that renders module files to PCM data. It supports\n" "over 90 mainstream and obscure module formats including Protracker (MOD),\n" "Scream Tracker 3 (S3M), Fast Tracker II (XM), and Impulse Tracker (IT)." msgstr "" -#: gnu/packages/audio.scm:3531 +#: gnu/packages/audio.scm:3551 msgid "" "Xmp is a portable module player that plays over 90 mainstream and\n" "obscure module formats, including Protracker MOD, Fasttracker II XM, Scream\n" "Tracker 3 S3M and Impulse Tracker IT files." msgstr "" -#: gnu/packages/audio.scm:3556 +#: gnu/packages/audio.scm:3576 msgid "" "SoundTouch is an audio processing library for changing the tempo, pitch\n" "and playback rates of audio streams or audio files. It is intended for\n" @@ -720,7 +720,7 @@ msgid "" "control functionality, or just for playing around with the sound effects." msgstr "" -#: gnu/packages/audio.scm:3595 +#: gnu/packages/audio.scm:3615 msgid "" "SoX (Sound eXchange) is a command line utility that can convert\n" "various formats of computer audio files to other formats. It can also\n" @@ -728,60 +728,60 @@ msgid "" "can play and record audio files." msgstr "" -#: gnu/packages/audio.scm:3620 +#: gnu/packages/audio.scm:3640 msgid "" "The SoX Resampler library (libsoxr) performs one-dimensional sample-rate\n" "conversion. It may be used, for example, to resample PCM-encoded audio." msgstr "" -#: gnu/packages/audio.scm:3643 +#: gnu/packages/audio.scm:3663 msgid "" "TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder based on\n" "tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code and\n" "portions of LAME." msgstr "" -#: gnu/packages/audio.scm:3699 +#: gnu/packages/audio.scm:3719 msgid "" "PortAudio is a portable C/C++ audio I/O library providing a simple API\n" "to record and/or play sound using a callback function or a blocking read/write\n" "interface." msgstr "" -#: gnu/packages/audio.scm:3728 +#: gnu/packages/audio.scm:3748 msgid "" "Qsynth is a GUI front-end application for the FluidSynth SoundFont\n" "synthesizer written in C++." msgstr "" -#: gnu/packages/audio.scm:3767 +#: gnu/packages/audio.scm:3787 msgid "" "RSound allows you to send audio from an application and transfer it\n" "directly to a different computer on your LAN network. It is an audio daemon\n" "with a much different focus than most other audio daemons." msgstr "" -#: gnu/packages/audio.scm:3797 +#: gnu/packages/audio.scm:3817 msgid "" "XJackFreak is an audio analysis and equalizing tool for the Jack Audio\n" "Connection Kit. It can display the FFT of any input, modify it and output the\n" "result." msgstr "" -#: gnu/packages/audio.scm:3849 +#: gnu/packages/audio.scm:3869 msgid "" "Zita convolver is a C++ library providing a real-time convolution\n" "engine." msgstr "" -#: gnu/packages/audio.scm:3901 +#: gnu/packages/audio.scm:3921 msgid "" "Libzita-resampler is a C++ library for resampling audio signals. It is\n" "designed to be used within a real-time processing context, to be fast, and to\n" "provide high-quality sample rate conversion." msgstr "" -#: gnu/packages/audio.scm:3947 +#: gnu/packages/audio.scm:3967 msgid "" "Zita-alsa-pcmi is a C++ wrapper around the ALSA API. It provides easy\n" "access to ALSA PCM devices, taking care of the many functions required to\n" @@ -789,7 +789,7 @@ msgid "" "point audio data." msgstr "" -#: gnu/packages/audio.scm:3971 +#: gnu/packages/audio.scm:3991 msgid "" "Cuetools is a set of programs that are useful for manipulating\n" "and using CUE sheet (cue) files and Table of Contents (toc) files. CUE and TOC\n" @@ -797,14 +797,14 @@ msgid "" "machine-readable ASCII format." msgstr "" -#: gnu/packages/audio.scm:4000 +#: gnu/packages/audio.scm:4020 msgid "" "mp3guessenc is a command line utility that tries to detect the\n" "encoder used for an MPEG Layer III (MP3) file, as well as scan any MPEG audio\n" "file (any layer) and print a lot of useful information." msgstr "" -#: gnu/packages/audio.scm:4021 +#: gnu/packages/audio.scm:4041 msgid "" "shntool is a multi-purpose WAVE data processing and reporting\n" "utility. File formats are abstracted from its core, so it can process any file\n" @@ -813,46 +813,46 @@ msgid "" "use them split WAVE data into multiple files." msgstr "" -#: gnu/packages/audio.scm:4061 +#: gnu/packages/audio.scm:4081 msgid "" "Dcadec is a DTS Coherent Acoustics surround sound decoder\n" "with support for HD extensions." msgstr "" -#: gnu/packages/audio.scm:4098 +#: gnu/packages/audio.scm:4118 msgid "" "BS1770GAIN is a loudness scanner compliant with ITU-R BS.1770 and its\n" "flavors EBU R128, ATSC A/85, and ReplayGain 2.0. It helps normalizing the\n" "loudness of audio and video files to the same level." msgstr "" -#: gnu/packages/audio.scm:4130 +#: gnu/packages/audio.scm:4150 msgid "" "An easy to use audio filtering library made from webrtc\n" "code, used in @code{libtoxcore}." msgstr "" -#: gnu/packages/audio.scm:4183 +#: gnu/packages/audio.scm:4203 msgid "" "This C library provides an encoder and a decoder for the GSM\n" "06.10 RPE-LTP lossy speech compression algorithm." msgstr "" -#: gnu/packages/audio.scm:4206 +#: gnu/packages/audio.scm:4226 msgid "" "This package contains wrappers for accessing the ALSA API from Python.\n" "It is currently fairly complete for PCM devices, and has some support for\n" "mixers." msgstr "" -#: gnu/packages/audio.scm:4230 +#: gnu/packages/audio.scm:4250 msgid "" "This package provides an encoder for the LDAC\n" "high-resolution Bluetooth audio streaming codec for streaming at up to 990\n" "kbps at 24 bit/96 kHz." msgstr "" -#: gnu/packages/audio.scm:4274 +#: gnu/packages/audio.scm:4294 msgid "" "This project is a rebirth of a direct integration between\n" "Bluez and ALSA. Since Bluez >= 5, the built-in integration has been removed\n" @@ -865,14 +865,14 @@ msgid "" "on the ALSA software PCM plugin." msgstr "" -#: gnu/packages/audio.scm:4340 +#: gnu/packages/audio.scm:4360 msgid "" "Snd is a sound editor modelled loosely after Emacs. It can be\n" "customized and extended using either the s7 Scheme implementation (included in\n" "the Snd sources), Ruby, or Forth." msgstr "" -#: gnu/packages/audio.scm:4369 +#: gnu/packages/audio.scm:4389 msgid "" "Noise Repellent is an LV2 plugin to reduce noise. It has\n" "the following features:\n" @@ -892,31 +892,31 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/audio.scm:4436 +#: gnu/packages/audio.scm:4456 msgid "" "RNNoise is a library that uses deep learning to apply\n" "noise suppression to audio sources with voice presence. This package provides\n" "an LV2 audio plugin." msgstr "" -#: gnu/packages/audio.scm:4480 +#: gnu/packages/audio.scm:4500 msgid "" "@code{cli-visualizer} displays fast-Fourier\n" "transforms (FFTs) of the sound being played, as well as other graphical\n" "representations." msgstr "" -#: gnu/packages/audio.scm:4530 +#: gnu/packages/audio.scm:4550 msgid "" "C.A.V.A. is a bar audio spectrum visualizer for the terminal\n" "using ALSA, MPD, PulseAudio, or a FIFO buffer as its input." msgstr "" -#: gnu/packages/audio.scm:4564 +#: gnu/packages/audio.scm:4584 msgid "Fluid-3 is Frank Wen's pro-quality GM soundfont." msgstr "" -#: gnu/packages/audio.scm:4586 +#: gnu/packages/audio.scm:4606 msgid "" "FDK is a library for encoding and decoding Advanced Audio\n" "Coding (AAC) format audio, developed by Fraunhofer IIS, and included as part of\n" @@ -927,20 +927,20 @@ msgid "" " surround)." msgstr "" -#: gnu/packages/audio.scm:4626 +#: gnu/packages/audio.scm:4646 msgid "" "OpenShot Audio Library (libopenshot-audio) allows\n" "high-quality editing and playback of audio, and is based on the JUCE\n" "library." msgstr "" -#: gnu/packages/audio.scm:4652 +#: gnu/packages/audio.scm:4672 msgid "" "FAudio is an XAudio reimplementation that focuses solely on\n" "developing fully accurate DirectX Audio runtime libraries." msgstr "" -#: gnu/packages/audio.scm:4679 +#: gnu/packages/audio.scm:4699 msgid "" "Gnaural is a programmable auditory binaural beat synthesizer\n" "intended to be used for brainwave entrainment. Gnaural supports creation of\n" @@ -949,20 +949,20 @@ msgid "" "other Gnaural instances, allowing synchronous sessions between many users." msgstr "" -#: gnu/packages/audio.scm:4714 +#: gnu/packages/audio.scm:4734 msgid "" "DarkIce is a live audio streamer. It takes audio input from\n" "a sound card, encodes it into Ogg Vorbis and/or mp3, and sends the audio\n" "stream to one or more IceCast and/or ShoutCast servers." msgstr "" -#: gnu/packages/audio.scm:4738 +#: gnu/packages/audio.scm:4758 msgid "" "Libltc is a POSIX-C Library for handling\n" "@dfn{Linear/Longitudinal Time Code} (LTC) data." msgstr "" -#: gnu/packages/audio.scm:4772 +#: gnu/packages/audio.scm:4792 msgid "" "TTA performs lossless compression on multichannel 8,16 and 24 bits\n" "data of the Wav audio files. Being lossless means that no data-\n" @@ -973,14 +973,14 @@ msgid "" "supports both of ID3v1/v2 and APEv2 tags." msgstr "" -#: gnu/packages/audio.scm:4805 +#: gnu/packages/audio.scm:4825 msgid "" "@code{libsoundio} is a C library providing audio input and\n" "output. The API is suitable for real-time software such as digital audio\n" "workstations as well as consumer software such as music players." msgstr "" -#: gnu/packages/audio.scm:4831 +#: gnu/packages/audio.scm:4851 msgid "" "Redkite is a small GUI toolkit developed in C++17 and\n" "inspired from other well known GUI toolkits such as Qt and GTK. It is\n" @@ -989,7 +989,7 @@ msgid "" "as is the case with audio plugins." msgstr "" -#: gnu/packages/audio.scm:4903 +#: gnu/packages/audio.scm:4923 msgid "" "Carla is a modular audio plugin host, with features like\n" "transport control, automation of parameters via MIDI CC and remote control\n" @@ -998,7 +998,7 @@ msgid "" "default and preferred audio driver but also supports native drivers like ALSA." msgstr "" -#: gnu/packages/audio.scm:4939 +#: gnu/packages/audio.scm:4959 msgid "" "Ecasound is a software package designed for multitrack audio\n" "processing. It can be used for simple tasks like audio playback, recording and\n" @@ -1010,28 +1010,28 @@ msgid "" "in the package." msgstr "" -#: gnu/packages/audio.scm:4977 +#: gnu/packages/audio.scm:4997 msgid "" "libaudec is a wrapper library over ffmpeg, sndfile and\n" "libsamplerate for reading and resampling audio files, based on Robin Gareus'\n" "@code{audio_decoder} code." msgstr "" -#: gnu/packages/audio.scm:5007 +#: gnu/packages/audio.scm:5027 msgid "" "lv2lint is an LV2 lint-like tool that checks whether a\n" "given plugin and its UI(s) match up with the provided metadata and adhere\n" "to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5041 +#: gnu/packages/audio.scm:5061 msgid "" "lv2toweb allows the user to create an xhtml page with information\n" "about the given LV2 plugin, provided that the plugin and its UI(s) match up\n" "with the provided metadata and adhere to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5069 +#: gnu/packages/audio.scm:5089 msgid "" "ZToolkit (Ztk) is a cross-platform GUI toolkit heavily\n" "inspired by GTK. It handles events and low level drawing on behalf of\n" @@ -1041,7 +1041,7 @@ msgid "" "minimum." msgstr "" -#: gnu/packages/audio.scm:5102 +#: gnu/packages/audio.scm:5122 msgid "" "libInstPatch is a library for processing digital sample based MIDI\n" "instrument \"patch\" files. The types of files libInstPatch supports are used\n" @@ -1050,28 +1050,28 @@ msgid "" "edited, converted, compressed and saved." msgstr "" -#: gnu/packages/audio.scm:5149 +#: gnu/packages/audio.scm:5169 msgid "" "The LSP DSP library provides a set of functions that perform\n" "SIMD-optimized computing on several hardware architectures. All functions\n" "currently operate on IEEE-754 single-precision floating-point numbers." msgstr "" -#: gnu/packages/audio.scm:5180 +#: gnu/packages/audio.scm:5200 msgid "" "Codec 2 is a speech codec designed for communications quality speech\n" "between 700 and 3200 bit/s. The main application is low bandwidth HF/VHF\n" "digital radio." msgstr "" -#: gnu/packages/audio.scm:5206 +#: gnu/packages/audio.scm:5226 msgid "" "The mbelib library provides support for the 7200x4400 bit/s codec used\n" "in P25 Phase 1, the 7100x4400 bit/s codec used in ProVoice and the @emph{Half\n" "Rate} 3600x2250 bit/s vocoder used in various radio systems." msgstr "" -#: gnu/packages/audio.scm:5299 +#: gnu/packages/audio.scm:5319 msgid "" "Ableton Link is a C++ library that synchronizes musical beat, tempo, and phase\n" "across multiple applications running on one or more devices. Applications on devices\n" @@ -1080,20 +1080,20 @@ msgid "" "while still staying in time." msgstr "" -#: gnu/packages/audio.scm:5360 +#: gnu/packages/audio.scm:5380 msgid "" "Butt is a tool to stream audio to a ShoutCast or\n" "Icecast server." msgstr "" -#: gnu/packages/audio.scm:5406 +#: gnu/packages/audio.scm:5426 msgid "" "siggen is a set of tools for imitating a laboratory signal\n" "generator, generating audio signals out of Linux's /dev/dsp audio\n" "device. There is support for mono and/or stereo and 8 or 16 bit samples." msgstr "" -#: gnu/packages/audio.scm:5453 +#: gnu/packages/audio.scm:5473 msgid "" "@code{python-pysox} is a wrapper around the @command{sox}\n" "command line tool. The API offers @code{Transformer} and @code{Combiner}\n" @@ -1103,7 +1103,7 @@ msgid "" "and much more." msgstr "" -#: gnu/packages/audio.scm:5492 +#: gnu/packages/audio.scm:5512 msgid "" "@code{python-resampy} implements the band-limited sinc interpolation\n" "method for sampling rate conversion as described by Julius O. Smith at the\n" @@ -1111,34 +1111,34 @@ msgid "" "Home Page}." msgstr "" -#: gnu/packages/audio.scm:5528 +#: gnu/packages/audio.scm:5548 msgid "" "@code{librosa} is a python package for music and audio analysis. It\n" "provides the building blocks necessary to create music information retrieval\n" "systems." msgstr "" -#: gnu/packages/audio.scm:5561 +#: gnu/packages/audio.scm:5581 msgid "" "MDA-LV2 is an LV2 port of the MDA plugins. It includes effects and a few\n" "instrument plugins." msgstr "" -#: gnu/packages/audio.scm:5593 +#: gnu/packages/audio.scm:5613 msgid "" "The Odio SACD shared library is a decoding engine which takes a Super\n" "Audio CD source and extracts a 24-bit high resolution WAV file. It handles\n" "both DST and DSD streams." msgstr "" -#: gnu/packages/audio.scm:5618 +#: gnu/packages/audio.scm:5638 msgid "" "Odio SACD is a command-line application which takes a Super Audio CD\n" "source and extracts a 24-bit high resolution WAV file. It handles both DST\n" "and DSD streams." msgstr "" -#: gnu/packages/backup.scm:155 +#: gnu/packages/backup.scm:165 msgid "" "Duplicity backs up directories by producing encrypted tar-format volumes\n" "and uploading them to a remote or local file server. Because duplicity uses\n" @@ -1148,7 +1148,7 @@ msgid "" "spying and/or modification by the server." msgstr "" -#: gnu/packages/backup.scm:180 +#: gnu/packages/backup.scm:190 msgid "" "Par2cmdline uses Reed-Solomon error-correcting codes to\n" "generate and verify PAR2 recovery files. These files can be distributed\n" @@ -1160,7 +1160,7 @@ msgid "" "can even repair them." msgstr "" -#: gnu/packages/backup.scm:219 +#: gnu/packages/backup.scm:229 msgid "" "Hdup2 is a backup utility, its aim is to make backup really simple. The\n" "backup scheduling is done by means of a cron job. It supports an\n" @@ -1168,7 +1168,7 @@ msgid "" "backups (called chunks) to allow easy burning to CD/DVD." msgstr "" -#: gnu/packages/backup.scm:316 +#: gnu/packages/backup.scm:326 msgid "" "Libarchive provides a flexible interface for reading and writing\n" "archives in various formats such as tar and cpio. Libarchive also supports\n" @@ -1179,7 +1179,7 @@ msgid "" "random access nor for in-place modification." msgstr "" -#: gnu/packages/backup.scm:380 +#: gnu/packages/backup.scm:390 msgid "" "Rdup is a utility inspired by rsync and the plan9 way of doing backups.\n" "Rdup itself does not backup anything, it only print a list of absolute\n" @@ -1187,7 +1187,7 @@ msgid "" "list and implement the backup strategy." msgstr "" -#: gnu/packages/backup.scm:419 +#: gnu/packages/backup.scm:429 msgid "" "SnapRAID backs up files stored across multiple storage devices, such as\n" "disk arrays, in an efficient way reminiscent of its namesake @acronym{RAID,\n" @@ -1213,7 +1213,7 @@ msgid "" "remain fully idle, saving power and producing less noise." msgstr "" -#: gnu/packages/backup.scm:469 +#: gnu/packages/backup.scm:479 msgid "" "Btar is a tar-compatible archiver which allows arbitrary compression and\n" "ciphering, redundancy, differential backup, indexed extraction, multicore\n" @@ -1221,7 +1221,7 @@ msgid "" "errors." msgstr "" -#: gnu/packages/backup.scm:496 +#: gnu/packages/backup.scm:506 msgid "" "Rdiff-backup backs up one directory to another, possibly over a network.\n" "The target directory ends up a copy of the source directory, but extra reverse\n" @@ -1236,7 +1236,7 @@ msgid "" "rdiff-backup is easy to use and settings have sensible defaults." msgstr "" -#: gnu/packages/backup.scm:532 +#: gnu/packages/backup.scm:542 msgid "" "rsnapshot is a file system snapshot utility based on rsync.\n" "rsnapshot makes it easy to make periodic snapshots of local machines, and\n" @@ -1244,7 +1244,7 @@ msgid "" "rsnapshot uses hard links to deduplicate identical files." msgstr "" -#: gnu/packages/backup.scm:610 +#: gnu/packages/backup.scm:620 msgid "" "Libchop is a set of utilities and library for data backup and\n" "distributed storage. Its main application is @command{chop-backup}, an\n" @@ -1255,17 +1255,17 @@ msgid "" "detection, and lossless compression." msgstr "" -#: gnu/packages/backup.scm:740 +#: gnu/packages/backup.scm:750 msgid "" "Borg is a deduplicating backup program. Optionally, it\n" "supports compression and authenticated encryption. The main goal of Borg is to\n" "provide an efficient and secure way to backup data. The data deduplication\n" "technique used makes Borg suitable for daily backups since only changes are\n" -"stored. The authenticated encryption technique makes it suitable for backups\n" -"to not fully trusted targets. Borg is a fork of Attic." +"stored. The authenticated encryption technique makes it suitable for\n" +"storing backups on untrusted computers." msgstr "" -#: gnu/packages/backup.scm:771 +#: gnu/packages/backup.scm:781 msgid "" "wimlib is a C library and set of command-line utilities for\n" "creating, modifying, extracting, and mounting archives in the Windows Imaging\n" @@ -1273,14 +1273,14 @@ msgid "" "NTFS volumes using @code{ntfs-3g}, preserving NTFS-specific attributes." msgstr "" -#: gnu/packages/backup.scm:879 +#: gnu/packages/backup.scm:889 msgid "" "With dirvish you can maintain a set of complete images of your\n" "file systems with unattended creation and expiration. A dirvish backup vault\n" "is like a time machine for your data." msgstr "" -#: gnu/packages/backup.scm:974 +#: gnu/packages/backup.scm:984 msgid "" "Restic is a program that does backups right and was designed\n" "with the following principles in mind:\n" @@ -1312,7 +1312,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/backup.scm:1025 +#: gnu/packages/backup.scm:1035 msgid "" "ZBackup is a globally-deduplicating backup tool, based on the\n" "ideas found in Rsync. Feed a large @file{.tar} into it, and it will\n" @@ -1325,7 +1325,7 @@ msgid "" "is format-agnostic, so you can feed virtually any files to it." msgstr "" -#: gnu/packages/backup.scm:1061 +#: gnu/packages/backup.scm:1071 msgid "" "Dump examines files in a file system, determines which ones\n" "need to be backed up, and copies those files to a specified disk, tape or\n" @@ -1336,14 +1336,44 @@ msgid "" "interactive mode." msgstr "" -#: gnu/packages/backup.scm:1105 +#: gnu/packages/backup.scm:1131 +msgid "" +"Btrbk is a backup tool for Btrfs subvolumes, taking\n" +"advantage of Btrfs specific capabilities to create atomic snapshots and\n" +"transfer them incrementally to your backup locations. The source and target\n" +"locations are specified in a config file, which allows easily configuring\n" +"simple scenarios like e.g. a @i{laptop with locally attached backup disks}, as\n" +"well as more complex ones, e.g. a @i{server receiving backups from several\n" +"hosts via SSH, with different retention policy}. It has features such as:\n" +"@itemize\n" +"@item atomic snapshots\n" +"@item incremental backups\n" +"@item flexible retention policy\n" +"@item backups to multiple destinations\n" +"@item transfer via SSH\n" +"@item resume backups (for removable and mobile devices)\n" +"@item archive to offline storage\n" +"@item encrypted backups to non-btrfs storage\n" +"@item wildcard subvolumes (useful for Docker and LXC containers)\n" +"@item transaction log\n" +"@item comprehensive list and statistics output\n" +"@item resolve and trace Btrfs parent-child and received-from relationships\n" +"@item list file changes between backups\n" +"@item calculate accurate disk space usage based on block regions.\n" +"@end itemize\n" +"Btrbk is designed to run as a cron job for triggering periodic snapshots and\n" +"backups, as well as from the command line (e.g. for instantly creating\n" +"additional snapshots)." +msgstr "" + +#: gnu/packages/backup.scm:1194 msgid "" "Burp is a network backup and restore program. It attempts\n" "to reduce network traffic and the amount of space that is used by each\n" "backup." msgstr "" -#: gnu/packages/backup.scm:1136 +#: gnu/packages/backup.scm:1225 msgid "" "Disarchive can disassemble software archives into data\n" "and metadata. The goal is to create a small amount of metadata that\n" @@ -1353,7 +1383,7 @@ msgid "" "compression parameters used by Gzip." msgstr "" -#: gnu/packages/backup.scm:1181 +#: gnu/packages/backup.scm:1270 msgid "" "borgmatic is simple, configuration-driven backup software for servers\n" "and workstations. Protect your files with client-side encryption. Backup\n" @@ -1361,6 +1391,14 @@ msgid "" "borgmatic is powered by borg." msgstr "" +#: gnu/packages/backup.scm:1330 +msgid "" +"Vorta is a graphical backup client based on the Borg backup\n" +"tool. It supports the use of remote backup repositories. It can perform\n" +"scheduled backups, and has a graphical tool for browsing and extracting the Borg\n" +"archives." +msgstr "" + #: gnu/packages/base.scm:98 msgid "" "GNU Hello prints the message \"Hello, world!\" and then exits. It\n" @@ -1445,7 +1483,7 @@ msgid "" "change. GNU make offers many powerful extensions over the standard utility." msgstr "" -#: gnu/packages/base.scm:550 +#: gnu/packages/base.scm:558 msgid "" "GNU Binutils is a collection of tools for working with binary files.\n" "Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler.\n" @@ -1455,14 +1493,14 @@ msgid "" "included." msgstr "" -#: gnu/packages/base.scm:694 +#: gnu/packages/base.scm:685 msgid "" "The linker wrapper (or @code{ld-wrapper}) wraps the linker to add any\n" "missing @code{-rpath} flags, and to detect any misuse of libraries outside of\n" "the store." msgstr "" -#: gnu/packages/base.scm:930 +#: gnu/packages/base.scm:921 msgid "" "Any Unix-like operating system needs a C library: the library which\n" "defines the \"system calls\" and other basic facilities such as open, malloc,\n" @@ -1472,21 +1510,21 @@ msgid "" "with the Linux kernel." msgstr "" -#: gnu/packages/base.scm:1057 +#: gnu/packages/base.scm:1048 msgid "" "This package provides all the locales supported by the GNU C Library,\n" "more than 400 in total. To use them set the @code{LOCPATH} environment variable\n" "to the @code{share/locale} sub-directory of this package." msgstr "" -#: gnu/packages/base.scm:1206 +#: gnu/packages/base.scm:1198 msgid "" "The which program finds the location of executables in PATH, with a\n" "variety of options. It is an alternative to the shell \"type\" built-in\n" "command." msgstr "" -#: gnu/packages/base.scm:1329 +#: gnu/packages/base.scm:1321 msgid "" "The Time Zone Database (often called tz or zoneinfo)\n" "contains code and data that represent the history of local time for many\n" @@ -1495,14 +1533,14 @@ msgid "" "and daylight-saving rules." msgstr "" -#: gnu/packages/base.scm:1367 +#: gnu/packages/base.scm:1359 msgid "" "libiconv provides an implementation of the iconv function for systems\n" "that lack it. iconv is used to convert between character encodings in a\n" "program. It supports a wide variety of different encodings." msgstr "" -#: gnu/packages/bittorrent.scm:131 +#: gnu/packages/bittorrent.scm:135 msgid "" "Transmission is a BitTorrent client that comes with graphical,\n" "textual, and Web user interfaces. Transmission also has a daemon for\n" @@ -1510,54 +1548,54 @@ msgid "" "DHT, µTP, PEX and Magnet Links." msgstr "" -#: gnu/packages/bittorrent.scm:165 +#: gnu/packages/bittorrent.scm:169 msgid "" "transmission-remote-gtk is a GTK client for remote management\n" "of the Transmission BitTorrent client, using its HTTP RPC protocol." msgstr "" -#: gnu/packages/bittorrent.scm:187 +#: gnu/packages/bittorrent.scm:191 msgid "" "LibTorrent is a BitTorrent library used by and developed in parallel\n" "with the BitTorrent client rtorrent. It is written in C++ with emphasis on\n" "speed and efficiency." msgstr "" -#: gnu/packages/bittorrent.scm:215 +#: gnu/packages/bittorrent.scm:219 msgid "" "rTorrent is a BitTorrent client with an ncurses interface. It supports\n" "full encryption, DHT, PEX, and Magnet Links. It can also be controlled via\n" "XML-RPC over SCGI." msgstr "" -#: gnu/packages/bittorrent.scm:249 +#: gnu/packages/bittorrent.scm:253 msgid "" "Tremc is a console client, with a curses interface, for the\n" "Transmission BitTorrent daemon." msgstr "" -#: gnu/packages/bittorrent.scm:290 +#: gnu/packages/bittorrent.scm:294 msgid "" "Transmission-remote-cli is a console client, with a curses\n" "interface, for the Transmission BitTorrent daemon. This package is no longer\n" "maintained upstream." msgstr "" -#: gnu/packages/bittorrent.scm:340 +#: gnu/packages/bittorrent.scm:345 msgid "" "Aria2 is a lightweight, multi-protocol & multi-source command-line\n" "download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and Metalink.\n" "Aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces." msgstr "" -#: gnu/packages/bittorrent.scm:374 +#: gnu/packages/bittorrent.scm:381 msgid "" "uGet is portable download manager with GTK+ interface supporting\n" "HTTP, HTTPS, BitTorrent and Metalink, supporting multi-connection\n" "downloads, download scheduling, download rate limiting." msgstr "" -#: gnu/packages/bittorrent.scm:406 +#: gnu/packages/bittorrent.scm:413 msgid "" "mktorrent is a simple command-line utility to create BitTorrent\n" "@dfn{metainfo} files, often known simply as @dfn{torrents}, from both single\n" @@ -1567,14 +1605,14 @@ msgid "" "and will take advantage of multiple processor cores where possible." msgstr "" -#: gnu/packages/bittorrent.scm:457 +#: gnu/packages/bittorrent.scm:472 msgid "" "libtorrent-rasterbar is a feature-complete C++ BitTorrent implementation\n" "focusing on efficiency and scalability. It runs on embedded devices as well as\n" "desktops." msgstr "" -#: gnu/packages/bittorrent.scm:508 +#: gnu/packages/bittorrent.scm:523 msgid "" "qBittorrent is a BitTorrent client programmed in C++/Qt that uses\n" "libtorrent (sometimes called libtorrent-rasterbar) by Arvid Norberg.\n" @@ -1584,7 +1622,7 @@ msgid "" "features." msgstr "" -#: gnu/packages/bittorrent.scm:580 +#: gnu/packages/bittorrent.scm:604 msgid "" "Deluge contains the common features to BitTorrent clients such as\n" "Protocol Encryption, DHT, Local Peer Discovery (LSD), Peer Exchange\n" @@ -1896,7 +1934,16 @@ msgid "" "functionality in a C++ iostream." msgstr "" -#: gnu/packages/compression.scm:1443 +#: gnu/packages/compression.scm:1416 +msgid "" +"Zopfli Compression Algorithm is a compression library\n" +"programmed in C to perform very good, but slow, deflate or zlib compression.\n" +"ZopfliCompress supports the deflate, gzip and zlib output formats. This\n" +"library can only compress, not decompress; existing zlib or deflate libraries\n" +"can decompress the data." +msgstr "" + +#: gnu/packages/compression.scm:1469 msgid "" "ZPAQ is a command-line archiver for realistic situations with\n" "many duplicate and already compressed files. It backs up only those files\n" @@ -1910,13 +1957,13 @@ msgid "" "or junctions, and always follows hard links." msgstr "" -#: gnu/packages/compression.scm:1545 +#: gnu/packages/compression.scm:1571 msgid "" "@command{unshield} is a tool and library for extracting @file{.cab}\n" " archives from InstallShield installers." msgstr "" -#: gnu/packages/compression.scm:1624 +#: gnu/packages/compression.scm:1650 msgid "" "Zstandard (@command{zstd}) is a lossless compression algorithm\n" "that combines very fast operation with a compression ratio comparable to that of\n" @@ -1926,7 +1973,7 @@ msgid "" "speed." msgstr "" -#: gnu/packages/compression.scm:1672 +#: gnu/packages/compression.scm:1698 msgid "" "Parallel Zstandard (PZstandard or @command{pzstd}) is a\n" "multi-threaded implementation of the @uref{http://zstd.net/, Zstandard\n" @@ -1939,7 +1986,7 @@ msgid "" "the actual decompression, the other input and output." msgstr "" -#: gnu/packages/compression.scm:1712 +#: gnu/packages/compression.scm:1738 msgid "" "Zip is a compression and file packaging/archive utility. Zip is useful\n" "for packaging a set of files for distribution, for archiving files, and for\n" @@ -1954,7 +2001,7 @@ msgid "" "Compression ratios of 2:1 to 3:1 are common for text files." msgstr "" -#: gnu/packages/compression.scm:1801 +#: gnu/packages/compression.scm:1827 msgid "" "UnZip is an extraction utility for archives compressed in .zip format,\n" "also called \"zipfiles\".\n" @@ -1965,7 +2012,7 @@ msgid "" "recreates the stored directory structure by default." msgstr "" -#: gnu/packages/compression.scm:1853 +#: gnu/packages/compression.scm:1879 msgid "" "Ziptime helps make @file{.zip} archives reproducible by replacing\n" "timestamps in the file header with a fixed time (1 January 2008).\n" @@ -1974,11 +2021,11 @@ msgid "" "@command{zip} to prevent it from storing the ``universal time'' field." msgstr "" -#: gnu/packages/compression.scm:1880 +#: gnu/packages/compression.scm:1906 msgid "ZZipLib is a library based on zlib for accessing zip files." msgstr "" -#: gnu/packages/compression.scm:1904 +#: gnu/packages/compression.scm:1930 msgid "" "Libzip is a C library for reading, creating, and modifying\n" "zip archives. Files can be added from data buffers, files, or compressed data\n" @@ -1986,7 +2033,7 @@ msgid "" "archive can be reverted." msgstr "" -#: gnu/packages/compression.scm:1937 +#: gnu/packages/compression.scm:1963 msgid "" "The main command is @command{aunpack} which extracts files\n" "from an archive. The other commands provided are @command{apack} (to create\n" @@ -1996,7 +2043,7 @@ msgid "" "of archives." msgstr "" -#: gnu/packages/compression.scm:1963 +#: gnu/packages/compression.scm:1989 msgid "" "Lunzip is a decompressor for files in the lzip compression format (.lz),\n" "written as a single small C tool with no dependencies. This makes it\n" @@ -2006,7 +2053,7 @@ msgid "" "Lunzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:1990 +#: gnu/packages/compression.scm:2016 msgid "" "Clzip is a compressor and decompressor for files in the lzip compression\n" "format (.lz), written as a single small C tool with no dependencies. This makes\n" @@ -2015,7 +2062,7 @@ msgid "" "Clzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:2018 +#: gnu/packages/compression.scm:2044 msgid "" "Lzlib is a C library for in-memory LZMA compression and decompression in\n" "the lzip format. It supports integrity checking of the decompressed data, and\n" @@ -2023,7 +2070,7 @@ msgid "" "corrupted input." msgstr "" -#: gnu/packages/compression.scm:2042 +#: gnu/packages/compression.scm:2068 msgid "" "Plzip is a massively parallel (multi-threaded) lossless data compressor\n" "and decompressor that uses the lzip file format (.lz). Files produced by plzip\n" @@ -2037,13 +2084,13 @@ msgid "" "single-member files which can't be decompressed in parallel." msgstr "" -#: gnu/packages/compression.scm:2074 +#: gnu/packages/compression.scm:2100 msgid "" "innoextract allows extracting Inno Setup installers under\n" "non-Windows systems without running the actual installer using wine." msgstr "" -#: gnu/packages/compression.scm:2096 +#: gnu/packages/compression.scm:2122 msgid "" "ISA-L is a collection of optimized low-level functions\n" "targeting storage applications. ISA-L includes:\n" @@ -2061,7 +2108,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/compression.scm:2156 +#: gnu/packages/compression.scm:2182 msgid "" "This package provides the reference implementation of Brotli,\n" "a generic-purpose lossless compression algorithm that compresses data using a\n" @@ -2073,13 +2120,13 @@ msgid "" "The specification of the Brotli Compressed Data Format is defined in RFC 7932." msgstr "" -#: gnu/packages/compression.scm:2176 +#: gnu/packages/compression.scm:2202 msgid "" "This package provides a Python interface to the @code{brotli}\n" "package, an implementation of the Brotli lossless compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2200 +#: gnu/packages/compression.scm:2226 msgid "" "UCL implements a number of compression algorithms that\n" "achieve an excellent compression ratio while allowing fast decompression.\n" @@ -2089,7 +2136,7 @@ msgid "" "decompression is a little bit slower." msgstr "" -#: gnu/packages/compression.scm:2248 +#: gnu/packages/compression.scm:2274 msgid "" "The Ultimate Packer for eXecutables (UPX) is an executable file\n" "compressor. UPX typically reduces the file size of programs and shared\n" @@ -2097,7 +2144,7 @@ msgid "" "download times, and other distribution and storage costs." msgstr "" -#: gnu/packages/compression.scm:2276 +#: gnu/packages/compression.scm:2302 msgid "" "QuaZIP is a simple C++ wrapper over Gilles Vollant's\n" "ZIP/UNZIP package that can be used to access ZIP archives. It uses\n" @@ -2111,7 +2158,7 @@ msgid "" "reading from and writing to ZIP archives." msgstr "" -#: gnu/packages/compression.scm:2335 +#: gnu/packages/compression.scm:2361 msgid "" "The zchunk compressed file format allows splitting a file\n" "into independent chunks. This makes it possible to retrieve only changed\n" @@ -2134,7 +2181,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/compression.scm:2391 +#: gnu/packages/compression.scm:2417 msgid "" "Zutils is a collection of utilities able to process any combination of\n" "compressed and uncompressed files transparently. If any given file, including\n" @@ -2151,14 +2198,14 @@ msgid "" "at run time, and must be installed separately." msgstr "" -#: gnu/packages/compression.scm:2449 +#: gnu/packages/compression.scm:2475 msgid "" "This package provides a script to unpack self-extracting\n" "archives generated by @command{makeself} or @command{mojo} without running the\n" "possibly untrusted extraction shell script." msgstr "" -#: gnu/packages/compression.scm:2477 +#: gnu/packages/compression.scm:2503 msgid "" "(N)compress provides the original compress and uncompress\n" "programs that used to be the de facto UNIX standard for compressing and\n" @@ -2166,7 +2213,7 @@ msgid "" "file compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2504 +#: gnu/packages/compression.scm:2530 msgid "" "Xarchiver is a front-end to various command line archiving\n" "tools. It uses GTK+ tool-kit and is designed to be desktop-environment\n" @@ -2175,13 +2222,13 @@ msgid "" "archiver is not installed." msgstr "" -#: gnu/packages/compression.scm:2541 +#: gnu/packages/compression.scm:2567 msgid "" "Archive huge numbers of files, or split massive tar archives into smaller\n" "chunks." msgstr "" -#: gnu/packages/compression.scm:2574 +#: gnu/packages/compression.scm:2600 msgid "" "Blosc is a high performance compressor optimized for binary data. It has\n" "been designed to transmit data to the processor cache faster than the\n" @@ -2191,14 +2238,14 @@ msgid "" "computations." msgstr "" -#: gnu/packages/compression.scm:2612 +#: gnu/packages/compression.scm:2638 msgid "" "ECM is a utility that converts ECM files, i.e., CD data files\n" "with their error correction data losslessly rearranged for better compression,\n" "to their original, binary CD format." msgstr "" -#: gnu/packages/compression.scm:2642 +#: gnu/packages/compression.scm:2668 msgid "" "Libdeflate is a library for fast, whole-buffer DEFLATE-based\n" "compression and decompression. The supported formats are:\n" @@ -2210,7 +2257,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/compression.scm:2672 +#: gnu/packages/compression.scm:2698 msgid "" "Tarlz is a massively parallel (multi-threaded) combined implementation of\n" "the tar archiver and the lzip compressor. Tarlz creates, lists, and extracts\n" @@ -2221,7 +2268,7 @@ msgid "" "can append files to the end of such compressed archives." msgstr "" -#: gnu/packages/compression.scm:2706 +#: gnu/packages/compression.scm:2732 msgid "" "The Concise Binary Object Representation (CBOR) is a data format whose\n" "design goals include the possibility of extremely small code size, fairly\n" @@ -2230,17 +2277,17 @@ msgid "" "serializations such as ASN.1 and MessagePack." msgstr "" -#: gnu/packages/compression.scm:2739 +#: gnu/packages/compression.scm:2765 msgid "Fcrackzip is a Zip file password cracker." msgstr "" -#: gnu/packages/databases.scm:211 +#: gnu/packages/databases.scm:216 msgid "" "4store is a RDF/SPARQL store written in C, supporting\n" "either single machines or networked clusters." msgstr "" -#: gnu/packages/databases.scm:255 +#: gnu/packages/databases.scm:260 msgid "" "@code{pg_tmp} creates temporary PostgreSQL databases, suitable for tasks\n" "like running software test suites. Temporary databases created with\n" @@ -2249,14 +2296,14 @@ msgid "" "60)." msgstr "" -#: gnu/packages/databases.scm:281 +#: gnu/packages/databases.scm:286 msgid "" "This package provides a utility for dumping the contents of an\n" "ElasticSearch index to a compressed file and restoring the dumpfile back to an\n" "ElasticSearch server" msgstr "" -#: gnu/packages/databases.scm:433 +#: gnu/packages/databases.scm:438 msgid "" "Firebird is an SQL @acronym{RDBMS, relational database management system}\n" "with rich support for ANSI SQL (e.g., @code{INSERT...RETURNING}) including\n" @@ -2276,20 +2323,20 @@ msgid "" "database later." msgstr "" -#: gnu/packages/databases.scm:506 +#: gnu/packages/databases.scm:511 msgid "" "LevelDB is a fast key-value storage library that provides an ordered\n" "mapping from string keys to string values." msgstr "" -#: gnu/packages/databases.scm:526 +#: gnu/packages/databases.scm:531 msgid "" "Memcached is an in-memory key-value store. It has a small\n" "and generic API, and was originally intended for use with dynamic web\n" "applications." msgstr "" -#: gnu/packages/databases.scm:588 +#: gnu/packages/databases.scm:593 msgid "" "libMemcached is a library to use memcached in C/C++\n" "applications. It comes with a complete reference guide and documentation of\n" @@ -2303,51 +2350,77 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:625 +#: gnu/packages/databases.scm:630 msgid "" "@code{pylibmc} is a client in Python for memcached. It is a wrapper\n" "around TangentOrg’s libmemcached library, and can be used as a drop-in\n" "replacement for the code@{python-memcached} library." msgstr "" -#: gnu/packages/databases.scm:653 +#: gnu/packages/databases.scm:662 +msgid "This is a memcache client library for the Go programming language." +msgstr "" + +#: gnu/packages/databases.scm:685 +#, fuzzy +#| msgid "" +#| "This package provides a dictionary for the Hunspell spell-checking\n" +#| "library." +msgid "This package provides memcache client and server functionality." +msgstr "" +"Aqueste paquet provesís un diccionari per la bibliotèca del\n" +"corrector ortografic Hunspell." + +#: gnu/packages/databases.scm:711 msgid "" "@code{litecli} is a command-line client for SQLite databases that has\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:685 +#: gnu/packages/databases.scm:732 +msgid "" +"This Python package provides an API to execute meta-commands (AKA\n" +"\"special\", or \"backslash commands\") on PostgreSQL." +msgstr "" + +#: gnu/packages/databases.scm:763 +msgid "" +"@code{pgcli} is a command line interface for PostgreSQL with\n" +"autocompletion and syntax highlighting." +msgstr "" + +#: gnu/packages/databases.scm:801 msgid "" "MyCLI is a command line interface for MySQL, MariaDB, and Percona with\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:782 +#: gnu/packages/databases.scm:898 msgid "" "MySQL is a fast, reliable, and easy to use relational database\n" "management system that supports the standardized Structured Query\n" "Language." msgstr "" -#: gnu/packages/databases.scm:1045 +#: gnu/packages/databases.scm:1161 msgid "" "MariaDB is a multi-user and multi-threaded SQL database server, designed\n" "as a drop-in replacement of MySQL." msgstr "" -#: gnu/packages/databases.scm:1070 +#: gnu/packages/databases.scm:1186 msgid "" "The MariaDB Connector/C is used to connect applications\n" "developed in C/C++ to MariaDB and MySQL databases." msgstr "" -#: gnu/packages/databases.scm:1093 +#: gnu/packages/databases.scm:1209 msgid "" "Galera is a wsrep-provider that is used with MariaDB for load-balancing\n" "and high-availability (HA)." msgstr "" -#: gnu/packages/databases.scm:1147 +#: gnu/packages/databases.scm:1263 msgid "" "PostgreSQL is a powerful object-relational database system. It is fully\n" "ACID compliant, has full support for foreign keys, joins, views, triggers, and\n" @@ -2357,19 +2430,27 @@ msgid "" "pictures, sounds, or video." msgstr "" -#: gnu/packages/databases.scm:1269 +#: gnu/packages/databases.scm:1395 +msgid "" +"TimescaleDB is an database designed to make SQL scalable for\n" +"time-series data. It is engineered up from PostgreSQL and packaged as a\n" +"PostgreSQL extension, providing automatic partitioning across time and space\n" +"(partitioning key), as well as full SQL support." +msgstr "" + +#: gnu/packages/databases.scm:1476 msgid "" "@code{pgloader} is a program that can load data or migrate databases from\n" "CSV, DB3, iXF, SQLite, MS-SQL or MySQL to PostgreSQL." msgstr "" -#: gnu/packages/databases.scm:1293 +#: gnu/packages/databases.scm:1500 msgid "" "PyMySQL is a pure-Python MySQL client library, based on PEP 249.\n" "Most public APIs are compatible with @command{mysqlclient} and MySQLdb." msgstr "" -#: gnu/packages/databases.scm:1320 +#: gnu/packages/databases.scm:1527 msgid "" "QDBM is a library of routines for managing a\n" "database. The database is a simple data file containing key-value\n" @@ -2379,7 +2460,7 @@ msgid "" "organized in a hash table or B+ tree." msgstr "" -#: gnu/packages/databases.scm:1357 +#: gnu/packages/databases.scm:1564 msgid "" "GNU Recutils is a set of tools and libraries for creating and\n" "manipulating text-based, human-editable databases. Despite being text-based,\n" @@ -2388,7 +2469,7 @@ msgid "" "types are supported, as is encryption." msgstr "" -#: gnu/packages/databases.scm:1389 +#: gnu/packages/databases.scm:1596 msgid "" "This package provides an Emacs major mode @code{rec-mode}\n" "for working with GNU Recutils text-based, human-editable databases. It\n" @@ -2396,7 +2477,7 @@ msgid "" "including field and record folding." msgstr "" -#: gnu/packages/databases.scm:1457 +#: gnu/packages/databases.scm:1664 msgid "" "RocksDB is a library that forms the core building block for a fast\n" "key-value server, especially suited for storing data on flash drives. It\n" @@ -2407,7 +2488,7 @@ msgid "" "data in a single database. RocksDB is partially based on @code{LevelDB}." msgstr "" -#: gnu/packages/databases.scm:1515 +#: gnu/packages/databases.scm:1722 msgid "" "Sparql-query is a command-line tool for accessing SPARQL\n" "endpoints over HTTP. It has been intentionally designed to @code{feel} similar to\n" @@ -2418,13 +2499,13 @@ msgid "" "for example from a shell script." msgstr "" -#: gnu/packages/databases.scm:1608 +#: gnu/packages/databases.scm:1815 msgid "" "Sqitch is a standalone change management system for database schemas,\n" "which uses SQL to describe changes." msgstr "" -#: gnu/packages/databases.scm:1635 +#: gnu/packages/databases.scm:1842 msgid "" "SQLcrush lets you view and edit a database directly from the text\n" "console through an ncurses interface. You can explore each table's structure,\n" @@ -2432,7 +2513,7 @@ msgid "" "changes." msgstr "" -#: gnu/packages/databases.scm:1673 +#: gnu/packages/databases.scm:1880 msgid "" "TDB is a Trivial Database. In concept, it is very much like GDBM,\n" "and BSD's DB except that it allows multiple simultaneous writers and uses\n" @@ -2440,11 +2521,11 @@ msgid "" "extremely small." msgstr "" -#: gnu/packages/databases.scm:1693 +#: gnu/packages/databases.scm:1900 msgid "This package provides an database interface for Perl." msgstr "" -#: gnu/packages/databases.scm:1741 +#: gnu/packages/databases.scm:1948 msgid "" "An SQL to OO mapper with an object API inspired by\n" "Class::DBI (with a compatibility layer as a springboard for porting) and a\n" @@ -2456,13 +2537,13 @@ msgid "" "\"ORDER BY\" and \"HAVING\" support." msgstr "" -#: gnu/packages/databases.scm:1770 +#: gnu/packages/databases.scm:1977 msgid "" "DBIx::Class::Cursor::Cached provides a cursor class with\n" "built-in caching support." msgstr "" -#: gnu/packages/databases.scm:1793 +#: gnu/packages/databases.scm:2000 msgid "" "Because the many-to-many relationships are not real\n" "relationships, they can not be introspected with DBIx::Class. Many-to-many\n" @@ -2472,26 +2553,26 @@ msgid "" "introspected and examined." msgstr "" -#: gnu/packages/databases.scm:1852 +#: gnu/packages/databases.scm:2059 msgid "" "DBIx::Class::Schema::Loader automates the definition of a\n" "DBIx::Class::Schema by scanning database table definitions and setting up the\n" "columns, primary keys, unique constraints and relationships." msgstr "" -#: gnu/packages/databases.scm:1876 +#: gnu/packages/databases.scm:2083 msgid "" "This package provides a PostgreSQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." msgstr "" -#: gnu/packages/databases.scm:1914 +#: gnu/packages/databases.scm:2121 msgid "" "This package provides a MySQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." msgstr "" -#: gnu/packages/databases.scm:1934 +#: gnu/packages/databases.scm:2141 msgid "" "DBD::SQLite is a Perl DBI driver for SQLite, that includes\n" "the entire thing in the distribution. So in order to get a fast transaction\n" @@ -2499,14 +2580,14 @@ msgid "" "module, and nothing else." msgstr "" -#: gnu/packages/databases.scm:1959 +#: gnu/packages/databases.scm:2166 msgid "" "@code{MySQL::Config} emulates the @code{load_defaults} function from\n" "libmysqlclient. It will fill an array with long options, ready to be parsed by\n" "@code{Getopt::Long}." msgstr "" -#: gnu/packages/databases.scm:1983 +#: gnu/packages/databases.scm:2190 msgid "" "This module was inspired by the excellent DBIx::Abstract.\n" "While based on the concepts used by DBIx::Abstract, the concepts used have\n" @@ -2516,7 +2597,7 @@ msgid "" "time your data changes." msgstr "" -#: gnu/packages/databases.scm:2010 +#: gnu/packages/databases.scm:2217 msgid "" "This module is nearly identical to @code{SQL::Abstract} 1.81, and exists\n" "to preserve the ability of users to opt into the new way of doing things in\n" @@ -2532,34 +2613,34 @@ msgid "" "your data changes, as this module figures it out." msgstr "" -#: gnu/packages/databases.scm:2043 +#: gnu/packages/databases.scm:2250 msgid "" "This module tries to split any SQL code, even including\n" "non-standard extensions, into the atomic statements it is composed of." msgstr "" -#: gnu/packages/databases.scm:2062 +#: gnu/packages/databases.scm:2269 msgid "" "SQL::Tokenizer is a tokenizer for SQL queries. It does not\n" "claim to be a parser or query verifier. It just creates sane tokens from a\n" "valid SQL query." msgstr "" -#: gnu/packages/databases.scm:2081 +#: gnu/packages/databases.scm:2288 msgid "" "Unixodbc is a library providing an API with which to access\n" "data sources. Data sources include SQL Servers and any software with an ODBC\n" "Driver." msgstr "" -#: gnu/packages/databases.scm:2113 +#: gnu/packages/databases.scm:2320 msgid "" "The goal for nanodbc is to make developers happy by providing\n" "a simpler and less verbose API for working with ODBC. Common tasks should be\n" "easy, requiring concise and simple code." msgstr "" -#: gnu/packages/databases.scm:2174 +#: gnu/packages/databases.scm:2381 msgid "" "UnQLite is an in-process software library which implements a\n" "self-contained, serverless, zero-configuration, transactional NoSQL\n" @@ -2568,27 +2649,35 @@ msgid "" "similar to BerkeleyDB, LevelDB, etc." msgstr "" -#: gnu/packages/databases.scm:2225 +#: gnu/packages/databases.scm:2432 msgid "" "Redis is an advanced key-value cache and store. Redis\n" "supports many data structures including strings, hashes, lists, sets, sorted\n" "sets, bitmaps and hyperloglogs." msgstr "" -#: gnu/packages/databases.scm:2247 +#: gnu/packages/databases.scm:2454 msgid "" "This package provides a Ruby client that tries to match Redis' API\n" "one-to-one, while still providing an idiomatic interface." msgstr "" -#: gnu/packages/databases.scm:2275 +#: gnu/packages/databases.scm:2479 +msgid "Package rdb implements parsing and encoding of the Redis RDB file format." +msgstr "" + +#: gnu/packages/databases.scm:2505 +msgid "Redigo is a Go client for the Redis database." +msgstr "" + +#: gnu/packages/databases.scm:2531 msgid "" "Kyoto Cabinet is a standalone file-based database that supports Hash\n" "and B+ Tree data storage models. It is a fast key-value lightweight\n" "database and supports many programming languages. It is a NoSQL database." msgstr "" -#: gnu/packages/databases.scm:2303 +#: gnu/packages/databases.scm:2559 msgid "" "Tokyo Cabinet is a library of routines for managing a database.\n" "The database is a simple data file containing records, each is a pair of a\n" @@ -2598,7 +2687,7 @@ msgid "" "organized in hash table, B+ tree, or fixed-length array." msgstr "" -#: gnu/packages/databases.scm:2339 +#: gnu/packages/databases.scm:2595 msgid "" "WiredTiger is an extensible platform for data management. It supports\n" "row-oriented storage (where all columns of a row are stored together),\n" @@ -2607,17 +2696,17 @@ msgid "" "trees (LSM), for sustained throughput under random insert workloads." msgstr "" -#: gnu/packages/databases.scm:2389 +#: gnu/packages/databases.scm:2645 msgid "" "This package provides Guile bindings to the WiredTiger ``NoSQL''\n" "database." msgstr "" -#: gnu/packages/databases.scm:2419 +#: gnu/packages/databases.scm:2675 msgid "The DB::File module provides Perl bindings to the Berkeley DB version 1.x." msgstr "" -#: gnu/packages/databases.scm:2467 +#: gnu/packages/databases.scm:2723 msgid "" "The @dfn{Lightning Memory-Mapped Database} (LMDB) is a high-performance\n" "transactional database. Unlike more complex relational databases, LMDB handles\n" @@ -2630,7 +2719,7 @@ msgid "" "virtual address space — not physical RAM." msgstr "" -#: gnu/packages/databases.scm:2501 +#: gnu/packages/databases.scm:2757 msgid "" "@code{lmdbxx} is a comprehensive @code{C++} wrapper for the\n" "@code{LMDB} embedded database library, offering both an error-checked\n" @@ -2638,14 +2727,22 @@ msgid "" "semantics." msgstr "" -#: gnu/packages/databases.scm:2535 +#: gnu/packages/databases.scm:2791 msgid "" "Libpqxx is a C++ library to enable user programs to communicate with the\n" "PostgreSQL database back-end. The database back-end can be local or it may be\n" "on another machine, accessed via TCP/IP." msgstr "" -#: gnu/packages/databases.scm:2561 +#: gnu/packages/databases.scm:2819 +msgid "" +"Bolt is a pure Go key/value store inspired by Howard Chu's\n" +"LMDB project. The goal of the project is to provide a simple, fast, and\n" +"reliable database for projects that don't require a full database server such as\n" +"Postgres or MySQL." +msgstr "" + +#: gnu/packages/databases.scm:2845 msgid "" "Peewee is a simple and small ORM (object-relation mapping) tool. Peewee\n" "handles converting between pythonic values and those used by databases, so you\n" @@ -2654,20 +2751,20 @@ msgid "" "can autogenerate peewee models using @code{pwiz}, a model generator." msgstr "" -#: gnu/packages/databases.scm:2584 +#: gnu/packages/databases.scm:2868 msgid "" "Pypika-tortoise is a fork of pypika which has been\n" "streamlined for its use in the context of tortoise-orm. It removes support\n" "for many database kinds that tortoise-orm doesn't need, for example." msgstr "" -#: gnu/packages/databases.scm:2604 +#: gnu/packages/databases.scm:2888 msgid "" "This package is a Sphinx extension providing additional\n" "coroutine-specific markup." msgstr "" -#: gnu/packages/databases.scm:2632 +#: gnu/packages/databases.scm:2916 msgid "" "@code{asyncpg} is a database interface library designed\n" "specifically for PostgreSQL and Python/asyncio. @code{asyncpg} is an\n" @@ -2675,14 +2772,14 @@ msgid "" "with Python's asyncio framework." msgstr "" -#: gnu/packages/databases.scm:2652 +#: gnu/packages/databases.scm:2936 msgid "" "@code{asyncmy} is a fast @code{asyncio} MySQL driver, which\n" "reuses most of @code{pymysql} and @code{aiomysql} but rewrites the core\n" "protocol with Cython for performance." msgstr "" -#: gnu/packages/databases.scm:2672 +#: gnu/packages/databases.scm:2956 msgid "" "@code{aiomysql} is a driver for accessing a MySQL database\n" "from the @code{asyncio} Python framework. It depends on and reuses most parts\n" @@ -2690,7 +2787,7 @@ msgid "" "@code{aiopg} library." msgstr "" -#: gnu/packages/databases.scm:2705 +#: gnu/packages/databases.scm:2989 msgid "" "Tortoise ORM is an easy-to-use asyncio ORM (Object\n" "Relational Mapper) inspired by Django. Tortoise ORM was built with relations\n" @@ -2699,7 +2796,7 @@ msgid "" "with relational data." msgstr "" -#: gnu/packages/databases.scm:2749 +#: gnu/packages/databases.scm:3033 msgid "" "SQLCipher is an implementation of SQLite, extended to\n" "provide transparent 256-bit AES encryption of database files. Pages are\n" @@ -2708,19 +2805,19 @@ msgid "" "development." msgstr "" -#: gnu/packages/databases.scm:2782 +#: gnu/packages/databases.scm:3066 msgid "" "@code{python-pyodbc-c} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2807 +#: gnu/packages/databases.scm:3091 msgid "" "@code{python-pyodbc} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2840 +#: gnu/packages/databases.scm:3124 msgid "" "MDB Tools is a set of tools and applications to read the\n" "proprietary MDB file format used in Microsoft's Access database package. This\n" @@ -2729,39 +2826,49 @@ msgid "" "etc., and an SQL engine for performing simple SQL queries." msgstr "" -#: gnu/packages/databases.scm:2886 +#: gnu/packages/databases.scm:3153 +#, fuzzy +#| msgid "" +#| "This package provides a dictionary for the Hunspell spell-checking\n" +#| "library." +msgid "This package provides a MongoDB driver for Go." +msgstr "" +"Aqueste paquet provesís un diccionari per la bibliotèca del\n" +"corrector ortografic Hunspell." + +#: gnu/packages/databases.scm:3194 msgid "" "python-lmdb or py-lmdb is a Python binding for the @dfn{Lightning\n" "Memory-Mapped Database} (LMDB), a high-performance key-value store." msgstr "" -#: gnu/packages/databases.scm:2925 +#: gnu/packages/databases.scm:3233 msgid "" "Orator provides a simple ActiveRecord-like Object Relational Mapping\n" "implementation for Python." msgstr "" -#: gnu/packages/databases.scm:2963 +#: gnu/packages/databases.scm:3271 msgid "" "Virtuoso is a scalable cross-platform server that combines\n" "relational, graph, and document data management with web application server\n" "and web services platform functionality." msgstr "" -#: gnu/packages/databases.scm:2990 +#: gnu/packages/databases.scm:3298 msgid "" "Cassandra Cluster Manager is a development tool for testing\n" "local Cassandra clusters. It creates, launches and removes Cassandra clusters\n" "on localhost." msgstr "" -#: gnu/packages/databases.scm:3018 +#: gnu/packages/databases.scm:3326 msgid "" "Pysqlite provides SQLite bindings for Python that comply to the\n" "Database API 2.0T." msgstr "" -#: gnu/packages/databases.scm:3048 +#: gnu/packages/databases.scm:3356 msgid "" "SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that\n" "gives application developers the full power and flexibility of SQL. It\n" @@ -2770,14 +2877,14 @@ msgid "" "simple and Pythonic domain language." msgstr "" -#: gnu/packages/databases.scm:3086 +#: gnu/packages/databases.scm:3382 msgid "" "This package contains type stubs and a mypy plugin to\n" "provide more precise static types and type inference for SQLAlchemy\n" "framework." msgstr "" -#: gnu/packages/databases.scm:3118 +#: gnu/packages/databases.scm:3414 msgid "" "SQLAlchemy-utils provides various utility functions and custom data types\n" "for SQLAlchemy. SQLAlchemy is an SQL database abstraction library for Python.\n" @@ -2794,7 +2901,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/databases.scm:3165 +#: gnu/packages/databases.scm:3461 msgid "" "This package provides mock helpers for SQLAlchemy that makes it easy\n" "to mock an SQLAlchemy session while preserving the ability to do asserts.\n" @@ -2804,13 +2911,13 @@ msgid "" "this library provides functions to facilitate such comparisons." msgstr "" -#: gnu/packages/databases.scm:3196 +#: gnu/packages/databases.scm:3492 msgid "" "Alembic is a lightweight database migration tool for usage with the\n" "SQLAlchemy Database Toolkit for Python." msgstr "" -#: gnu/packages/databases.scm:3221 +#: gnu/packages/databases.scm:3517 msgid "" "PickleShare is a small ‘shelve’-like datastore with concurrency support.\n" "Like shelve, a PickleShareDB object acts like a normal dictionary. Unlike\n" @@ -2821,7 +2928,7 @@ msgid "" "PickleShare." msgstr "" -#: gnu/packages/databases.scm:3275 +#: gnu/packages/databases.scm:3571 msgid "" "APSW is a Python wrapper for the SQLite\n" "embedded relational database engine. In contrast to other wrappers such as\n" @@ -2829,21 +2936,21 @@ msgid "" "translate the complete SQLite API into Python." msgstr "" -#: gnu/packages/databases.scm:3312 +#: gnu/packages/databases.scm:3608 msgid "" "The package aiosqlite replicates the standard sqlite3 module, but with\n" "async versions of all the standard connection and cursor methods, and context\n" "managers for automatically closing connections." msgstr "" -#: gnu/packages/databases.scm:3333 +#: gnu/packages/databases.scm:3629 msgid "" "This package provides the Neo4j Python driver that connects\n" "to the database using Neo4j's binary protocol. It aims to be minimal, while\n" "being idiomatic to Python." msgstr "" -#: gnu/packages/databases.scm:3353 +#: gnu/packages/databases.scm:3649 msgid "" "This package provides a client library and toolkit for\n" "working with Neo4j from within Python applications and from the command\n" @@ -2851,26 +2958,38 @@ msgid "" "designed to be easy and intuitive to use." msgstr "" -#: gnu/packages/databases.scm:3379 +#: gnu/packages/databases.scm:3675 msgid "" "psycopg2 is a thread-safe PostgreSQL adapter that implements DB-API\n" "2.0." msgstr "" -#: gnu/packages/databases.scm:3413 +#: gnu/packages/databases.scm:3702 +msgid "" +"This module provides connection pool implementations that can be used\n" +"with the @code{psycopg} PostgreSQL driver." +msgstr "" + +#: gnu/packages/databases.scm:3776 +msgid "" +"Psycopg 3 is a new implementation of the popular @code{psycopg2}\n" +"database adapter for Python." +msgstr "" + +#: gnu/packages/databases.scm:3810 msgid "" "This package provides a program to build Entity\n" "Relationship diagrams from a SQLAlchemy model (or directly from the\n" "database)." msgstr "" -#: gnu/packages/databases.scm:3443 +#: gnu/packages/databases.scm:3840 msgid "" "Yoyo is a database schema migration tool. Migrations are written as SQL\n" "files or Python scripts that define a list of migration steps." msgstr "" -#: gnu/packages/databases.scm:3464 +#: gnu/packages/databases.scm:3861 msgid "" "MySQLdb is an interface to the popular MySQL database server\n" "for Python. The design goals are:\n" @@ -2881,13 +3000,13 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/databases.scm:3490 +#: gnu/packages/databases.scm:3887 msgid "" "Python-hiredis is a python extension that wraps protocol\n" "parsing code in hiredis. It primarily speeds up parsing of multi bulk replies." msgstr "" -#: gnu/packages/databases.scm:3517 +#: gnu/packages/databases.scm:3914 msgid "" "Fakeredis is a pure-Python implementation of the redis-py Python client\n" "that simulates talking to a redis server. It was created for a single purpose:\n" @@ -2898,49 +3017,49 @@ msgid "" "reasonable substitute." msgstr "" -#: gnu/packages/databases.scm:3545 +#: gnu/packages/databases.scm:3942 msgid "This package provides a Python interface to the Redis key-value store." msgstr "" -#: gnu/packages/databases.scm:3586 +#: gnu/packages/databases.scm:3983 msgid "" "RQ (Redis Queue) is a simple Python library for queueing jobs and\n" "processing them in the background with workers. It is backed by Redis and it\n" "is designed to have a low barrier to entry." msgstr "" -#: gnu/packages/databases.scm:3623 +#: gnu/packages/databases.scm:4020 msgid "" "This package provides job scheduling capabilities to @code{python-rq}\n" "(Redis Queue)." msgstr "" -#: gnu/packages/databases.scm:3643 +#: gnu/packages/databases.scm:4040 msgid "" "@code{trollius-redis} is a Redis client for Python\n" " trollius. It is an asynchronous IO (PEP 3156) implementation of the\n" " Redis protocol." msgstr "" -#: gnu/packages/databases.scm:3686 +#: gnu/packages/databases.scm:4083 msgid "" "Sqlparse is a non-validating SQL parser for Python. It\n" "provides support for parsing, splitting and formatting SQL statements." msgstr "" -#: gnu/packages/databases.scm:3703 +#: gnu/packages/databases.scm:4101 msgid "" "@code{python-sql} is a library to write SQL queries, that\n" "transforms idiomatic python function calls to well-formed SQL queries." msgstr "" -#: gnu/packages/databases.scm:3726 +#: gnu/packages/databases.scm:4124 msgid "" "PyPika is a python SQL query builder that exposes the full richness of\n" "the SQL language using a syntax that reflects the resulting query." msgstr "" -#: gnu/packages/databases.scm:3852 +#: gnu/packages/databases.scm:4250 msgid "" "Apache Arrow is a columnar in-memory analytics layer\n" "designed to accelerate big data. It houses a set of canonical in-memory\n" @@ -2949,21 +3068,21 @@ msgid "" "algorithm implementations." msgstr "" -#: gnu/packages/databases.scm:3912 +#: gnu/packages/databases.scm:4310 msgid "" "This library provides a Pythonic API wrapper for the reference Arrow C++\n" "implementation, along with tools for interoperability with pandas, NumPy, and\n" "other traditional Python scientific computing packages." msgstr "" -#: gnu/packages/databases.scm:3933 +#: gnu/packages/databases.scm:4331 msgid "" "This package provides a Python client library for CrateDB.\n" "It implements the Python DB API 2.0 specification and includes support for\n" "SQLAlchemy." msgstr "" -#: gnu/packages/databases.scm:3952 +#: gnu/packages/databases.scm:4350 msgid "" "This library implements a database independent abstraction layer in C,\n" "similar to the DBI/DBD layer in Perl. Writing one generic set of code,\n" @@ -2971,7 +3090,7 @@ msgid "" "simultaneous database connections by using this framework." msgstr "" -#: gnu/packages/databases.scm:4018 +#: gnu/packages/databases.scm:4416 msgid "" "The @code{libdbi-drivers} library provides the database specific drivers\n" "for the @code{libdbi} framework.\n" @@ -2984,26 +3103,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:4060 +#: gnu/packages/databases.scm:4458 msgid "" "SOCI is an abstraction layer for several database backends, including\n" "PostreSQL, SQLite, ODBC and MySQL." msgstr "" -#: gnu/packages/databases.scm:4084 +#: gnu/packages/databases.scm:4482 msgid "" "FreeTDS is an implementation of the Tabular DataStream protocol, used for\n" "connecting to MS SQL and Sybase servers over TCP/IP." msgstr "" -#: gnu/packages/databases.scm:4106 +#: gnu/packages/databases.scm:4504 msgid "" "TinyDB is a small document oriented database written in pure Python\n" "with no external dependencies. The targets are small apps that would\n" "be blown away by a SQL-DB or an external database server." msgstr "" -#: gnu/packages/databases.scm:4154 +#: gnu/packages/databases.scm:4552 msgid "" "Sequeler is a native Linux SQL client built in Vala and\n" "Gtk. It allows you to connect to your local and remote databases, write SQL in\n" @@ -3011,7 +3130,13 @@ msgid "" "a Gtk.Grid Widget." msgstr "" -#: gnu/packages/debug.scm:111 +#: gnu/packages/databases.scm:4594 +msgid "" +"Sqlitebrowser is a high quaility, visual, open source tool to\n" +"create design, and edit database file compatible with SQLite." +msgstr "" + +#: gnu/packages/debug.scm:112 msgid "" "Delta assists you in minimizing \"interesting\" files subject to a test\n" "of their interestingness. A common such situation is when attempting to\n" @@ -3019,7 +3144,7 @@ msgid "" "program to exhibit a bug." msgstr "" -#: gnu/packages/debug.scm:172 +#: gnu/packages/debug.scm:173 msgid "" "C-Reduce is a tool that takes a large C or C++ program that has a\n" "property of interest (such as triggering a compiler bug) and automatically\n" @@ -3028,14 +3153,14 @@ msgid "" "tools that process C/C++ code." msgstr "" -#: gnu/packages/debug.scm:219 +#: gnu/packages/debug.scm:220 msgid "" "C-Vise is a Python port of the C-Reduce tool that is fully compatible\n" "and uses the same efficient LLVM-based C/C++ @code{clang_delta} reduction\n" "tool." msgstr "" -#: gnu/packages/debug.scm:289 +#: gnu/packages/debug.scm:290 msgid "" "American fuzzy lop is a security-oriented fuzzer that employs a novel\n" "type of compile-time instrumentation and genetic algorithms to automatically\n" @@ -3046,7 +3171,7 @@ msgid "" "down the road." msgstr "" -#: gnu/packages/debug.scm:433 +#: gnu/packages/debug.scm:434 msgid "" "QEMU is a generic machine emulator and virtualizer. This package\n" "of QEMU is used only by the american fuzzy lop package.\n" @@ -3062,7 +3187,7 @@ msgid "" "server and embedded PowerPC, and S390 guests." msgstr "" -#: gnu/packages/debug.scm:501 +#: gnu/packages/debug.scm:502 msgid "" "Stress Make is a customized GNU Make that explicitly manages the order\n" "in which concurrent jobs are run to provoke erroneous behavior into becoming\n" @@ -3072,14 +3197,14 @@ msgid "" "conditions." msgstr "" -#: gnu/packages/debug.scm:529 +#: gnu/packages/debug.scm:530 msgid "" "Zzuf is a transparent application input fuzzer. It works by\n" "intercepting file operations and changing random bits in the program's\n" "input. Zzuf's behaviour is deterministic, making it easy to reproduce bugs." msgstr "" -#: gnu/packages/debug.scm:581 +#: gnu/packages/debug.scm:582 msgid "" "Scanmem is a debugging utility designed to isolate the\n" "address of an arbitrary variable in an executing process. Scanmem simply\n" @@ -3088,13 +3213,13 @@ msgid "" "the position of the variable and allows you to modify its value." msgstr "" -#: gnu/packages/debug.scm:611 +#: gnu/packages/debug.scm:612 msgid "" "Remake is an enhanced version of GNU Make that adds improved\n" "error reporting, better tracing, profiling, and a debugger." msgstr "" -#: gnu/packages/debug.scm:667 +#: gnu/packages/debug.scm:668 msgid "" "rr is a lightweight tool for recording, replaying and debugging\n" "execution of applications (trees of processes and threads). Debugging extends\n" @@ -3103,13 +3228,13 @@ msgid "" "fun." msgstr "" -#: gnu/packages/debug.scm:695 +#: gnu/packages/debug.scm:696 msgid "" "The @code{libbacktrace} library can be linked into a C/C++\n" "program to produce symbolic backtraces." msgstr "" -#: gnu/packages/debug.scm:735 +#: gnu/packages/debug.scm:736 msgid "" "The libleak tool detects memory leaks by hooking memory\n" "functions such as @code{malloc}. It comes as a shared object to be pre-loaded\n" @@ -3121,7 +3246,7 @@ msgid "" "use than similar tools like @command{mtrace}." msgstr "" -#: gnu/packages/debug.scm:763 +#: gnu/packages/debug.scm:764 msgid "" "@code{cgdb} is a lightweight curses (terminal-based) interface to the\n" "GNU Debugger (GDB). In addition to the standard gdb console, cgdb provides\n" @@ -3130,7 +3255,7 @@ msgid "" "using cgdb." msgstr "" -#: gnu/packages/debug.scm:798 +#: gnu/packages/debug.scm:799 msgid "" "MspDebug supports FET430UIF, eZ430, RF2500 and Olimex\n" "MSP430-JTAG-TINY programmers, as well as many other compatible\n" @@ -3146,14 +3271,14 @@ msgid "" "multiple test suites, which are then all managed by a single harness." msgstr "" -#: gnu/packages/games.scm:287 +#: gnu/packages/games.scm:288 msgid "" "Abe's Amazing Adventure is a scrolling,\n" "platform-jumping, key-collecting, ancient pyramid exploring game, vaguely in\n" "the style of similar games for the Commodore+4." msgstr "" -#: gnu/packages/games.scm:357 +#: gnu/packages/games.scm:358 msgid "" "Adanaxis is a fast-moving first person shooter set in deep space, where\n" "the fundamentals of space itself are changed. By adding another dimension to\n" @@ -3164,7 +3289,7 @@ msgid "" "mouse and joystick control, and original music." msgstr "" -#: gnu/packages/games.scm:401 +#: gnu/packages/games.scm:402 msgid "" "Guide Alex the Allegator through the jungle in order to save his\n" "girlfriend Lola from evil humans who want to make a pair of shoes out of her.\n" @@ -3173,7 +3298,7 @@ msgid "" "The game includes a built-in editor so you can design and share your own maps." msgstr "" -#: gnu/packages/games.scm:431 +#: gnu/packages/games.scm:432 msgid "" "Armagetron Advanced is a multiplayer game in 3d that\n" "attempts to emulate and expand on the lightcycle sequence from the movie Tron.\n" @@ -3183,7 +3308,7 @@ msgid "" "physics settings to tweak as well." msgstr "" -#: gnu/packages/games.scm:489 +#: gnu/packages/games.scm:490 msgid "" "Space is a vast area, an unbounded territory where it seems there is\n" "a room for everybody, but reversal of fortune put things differently. The\n" @@ -3195,7 +3320,7 @@ msgid "" "regret their insolence." msgstr "" -#: gnu/packages/games.scm:556 +#: gnu/packages/games.scm:557 msgid "" "Bastet (short for Bastard Tetris) is a simple ncurses-based falling brick\n" "game. Unlike normal Tetris, Bastet does not choose the next brick at random.\n" @@ -3205,19 +3330,19 @@ msgid "" "canyons and wait for the long I-shaped block to clear four rows at a time." msgstr "" -#: gnu/packages/games.scm:601 +#: gnu/packages/games.scm:602 msgid "" "Tetrinet is a multiplayer Tetris-like game with powerups and\n" "attacks you can use on opponents." msgstr "" -#: gnu/packages/games.scm:635 +#: gnu/packages/games.scm:636 msgid "" "Vitetris is a classic multiplayer Tetris clone for the\n" "terminal." msgstr "" -#: gnu/packages/games.scm:678 +#: gnu/packages/games.scm:679 msgid "" "Blobwars: Metal Blob Solid is a 2D platform game, the first\n" "in the Blobwars series. You take on the role of a fearless Blob agent. Your\n" @@ -3225,7 +3350,7 @@ msgid "" "possible, while battling many vicious aliens." msgstr "" -#: gnu/packages/games.scm:771 +#: gnu/packages/games.scm:772 msgid "" "These are the BSD games. See the fortune-mod package for fortunes.\n" "\n" @@ -3258,7 +3383,7 @@ msgid "" "Quizzes: arithmetic and quiz." msgstr "" -#: gnu/packages/games.scm:866 +#: gnu/packages/games.scm:867 msgid "" "BZFlag is a 3D multi-player multiplatform tank battle game that\n" "allows users to play against each other in a network environment.\n" @@ -3278,7 +3403,7 @@ msgid "" "high a score as possible." msgstr "" -#: gnu/packages/games.scm:949 +#: gnu/packages/games.scm:950 msgid "" "Cataclysm: Dark Days Ahead (or \"DDA\" for short) is a roguelike set\n" "in a post-apocalyptic world. Struggle to survive in a harsh, persistent,\n" @@ -3290,7 +3415,7 @@ msgid "" "want what you have." msgstr "" -#: gnu/packages/games.scm:998 +#: gnu/packages/games.scm:999 msgid "" "Cockatrice is a program for playing tabletop card games\n" "over a network. Its server design prevents users from manipulating the game\n" @@ -3298,7 +3423,7 @@ msgid "" "allows users to brew while offline." msgstr "" -#: gnu/packages/games.scm:1052 +#: gnu/packages/games.scm:1053 msgid "" "This package provides a reimplementation of the 1997 Bullfrog business\n" "simulation game @i{Theme Hospital}. As well as faithfully recreating the\n" @@ -3306,7 +3431,7 @@ msgid "" "more. This package does @emph{not} provide the game assets." msgstr "" -#: gnu/packages/games.scm:1094 +#: gnu/packages/games.scm:1095 msgid "" "Cowsay is basically a text filter. Send some text into it,\n" "and you get a cow saying your text. If you think a talking cow isn't enough,\n" @@ -3314,21 +3439,21 @@ msgid "" "tired of cows, a variety of other ASCII-art messengers are available." msgstr "" -#: gnu/packages/games.scm:1135 +#: gnu/packages/games.scm:1136 msgid "" "@command{lolcat} concatenates files and streams like\n" "regular @command{cat}, but it also adds terminal escape codes between\n" "characters and lines resulting in a rainbow effect." msgstr "" -#: gnu/packages/games.scm:1164 +#: gnu/packages/games.scm:1165 #, scheme-format msgid "" "This package provides the Fallout 2 game engine. Game data\n" "should be placed in @file{~/.local/share/falltergeist}." msgstr "" -#: gnu/packages/games.scm:1275 +#: gnu/packages/games.scm:1276 msgid "" "FooBillard++ is an advanced 3D OpenGL billiard game\n" "based on the original foobillard 3.0a sources from Florian Berger.\n" @@ -3350,7 +3475,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:1342 +#: gnu/packages/games.scm:1343 msgid "" "The Freedoom project aims to create a complete free content first person\n" "shooter game. Freedoom by itself is just the raw material for a game: it must\n" @@ -3359,7 +3484,7 @@ msgid "" "effects and music to make a completely free game." msgstr "" -#: gnu/packages/games.scm:1392 +#: gnu/packages/games.scm:1394 msgid "" "Freedroid RPG is an @dfn{RPG} (Role-Playing Game) with isometric graphics.\n" "The game tells the story of a world destroyed by a conflict between robots and\n" @@ -3369,7 +3494,7 @@ msgid "" "real-time combat." msgstr "" -#: gnu/packages/games.scm:1471 +#: gnu/packages/games.scm:1473 msgid "" "Golly simulates Conway's Game of Life and many other types of cellular\n" "automata. The following features are available:\n" @@ -3390,7 +3515,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:1527 +#: gnu/packages/games.scm:1529 #, fuzzy #| msgid "This package provides a dictionary for the GNU Aspell spell checker." msgid "" @@ -3398,7 +3523,7 @@ msgid "" "Joy-Con controllers." msgstr "Aqueste paquet provesís un diccionari pel corrector ortografic GNU Aspell." -#: gnu/packages/games.scm:1557 +#: gnu/packages/games.scm:1559 msgid "" "Engine for Caesar III, a city-building real-time strategy game.\n" "Julius includes some UI enhancements while preserving the logic (including\n" @@ -3406,7 +3531,7 @@ msgid "" "does not include game data." msgstr "" -#: gnu/packages/games.scm:1591 +#: gnu/packages/games.scm:1593 msgid "" "Fork of Julius, an engine for the a city-building real-time strategy\n" "game Caesar III. Gameplay enhancements include:\n" @@ -3421,7 +3546,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/games.scm:1630 +#: gnu/packages/games.scm:1632 msgid "" "Me and My Shadow is a puzzle/platform game in which you try\n" "to reach the exit by solving puzzles. Spikes, moving blocks, fragile blocks\n" @@ -3429,7 +3554,7 @@ msgid "" "shadow mimic them to reach blocks you couldn't reach alone." msgstr "" -#: gnu/packages/games.scm:1686 +#: gnu/packages/games.scm:1688 msgid "" "@code{Open Surge} is a 2D retro side-scrolling platformer\n" "inspired by the Sonic games. The player runs at high speeds through each\n" @@ -3437,7 +3562,7 @@ msgid "" "built-in level editor." msgstr "" -#: gnu/packages/games.scm:1732 +#: gnu/packages/games.scm:1734 msgid "" "Knights is a multiplayer game involving several knights who\n" "must run around a dungeon and complete various quests. Each game revolves\n" @@ -3449,7 +3574,7 @@ msgid "" "destroying an ancient book using a special wand." msgstr "" -#: gnu/packages/games.scm:1780 +#: gnu/packages/games.scm:1781 msgid "" "GNOME 2048 provides a 2D grid for playing 2048, a\n" "single-player sliding tile puzzle game. The objective of the game is to merge\n" @@ -3457,7 +3582,7 @@ msgid "" "in one tile." msgstr "" -#: gnu/packages/games.scm:1819 +#: gnu/packages/games.scm:1820 msgid "" "GNOME Chess provides a 2D board for playing chess games\n" "against human or computer players. It supports loading and saving games in\n" @@ -3465,7 +3590,7 @@ msgid "" "such as chess or stockfish." msgstr "" -#: gnu/packages/games.scm:1880 +#: gnu/packages/games.scm:1881 msgid "" "The GNU backgammon application (also known as \"gnubg\") can\n" "be used for playing, analyzing and teaching the game. It has an advanced\n" @@ -3474,7 +3599,7 @@ msgid "" "also features an attractive, 3D representation of the playing board." msgstr "" -#: gnu/packages/games.scm:1921 +#: gnu/packages/games.scm:1922 msgid "" "GNUbik is a puzzle game in which you must manipulate a cube to make\n" "each of its faces have a uniform color. The game is customizable, allowing\n" @@ -3483,13 +3608,13 @@ msgid "" "scriptable with Guile." msgstr "" -#: gnu/packages/games.scm:1944 +#: gnu/packages/games.scm:1945 msgid "" "GNU Shogi is a program that plays the game Shogi (Japanese\n" "Chess). It is similar to standard chess but this variant is far more complicated." msgstr "" -#: gnu/packages/games.scm:1974 +#: gnu/packages/games.scm:1975 msgid "" "LTris is a tetris clone: differently shaped blocks are falling down the\n" "rectangular playing field and can be moved sideways or rotated by 90 degree\n" @@ -3503,7 +3628,7 @@ msgid "" "watch your CPU playing while enjoying a cup of tea!" msgstr "" -#: gnu/packages/games.scm:2097 +#: gnu/packages/games.scm:2098 msgid "" "NetHack is a single player dungeon exploration game that runs\n" "on a wide variety of computer systems, with a variety of graphical and text\n" @@ -3517,7 +3642,7 @@ msgid "" "role, and your gender." msgstr "" -#: gnu/packages/games.scm:2141 +#: gnu/packages/games.scm:2142 msgid "" "PipeWalker is a simple puzzle game with many diffent themes: connect all\n" "computers to one network server, bring water from a source to the taps, etc.\n" @@ -3526,17 +3651,17 @@ msgid "" "Every puzzle has a complete solution, although there may be more than one." msgstr "" -#: gnu/packages/games.scm:2190 +#: gnu/packages/games.scm:2191 msgid "PrBoom+ is a Doom source port developed from the original PrBoom project." msgstr "" -#: gnu/packages/games.scm:2240 +#: gnu/packages/games.scm:2241 msgid "" "ReTux is an action platformer loosely inspired by the Mario games,\n" "utilizing the art assets from the @code{SuperTux} project." msgstr "" -#: gnu/packages/games.scm:2350 +#: gnu/packages/games.scm:2351 msgid "" "RogueBox Adventures is a graphical roguelike with strong influences\n" "from sandbox games like Minecraft or Terraria. The main idea of RogueBox\n" @@ -3544,7 +3669,7 @@ msgid "" "can be explored and changed freely." msgstr "" -#: gnu/packages/games.scm:2462 +#: gnu/packages/games.scm:2463 msgid "" "Barbie Seahorse Adventures is a retro style platform arcade game.\n" "You are Barbie the seahorse who travels through the jungle, up to the\n" @@ -3554,27 +3679,27 @@ msgid "" "and defeat them with your bubbles!" msgstr "" -#: gnu/packages/games.scm:2522 +#: gnu/packages/games.scm:2523 msgid "" "Solarus is a 2D game engine written in C++, that can run games\n" "scripted in Lua. It has been designed with 16-bit classic Action-RPGs\n" "in mind." msgstr "" -#: gnu/packages/games.scm:2551 +#: gnu/packages/games.scm:2552 msgid "" "Solarus Quest Editor is a graphical user interface to create and\n" "modify quests for the Solarus engine." msgstr "" -#: gnu/packages/games.scm:2627 +#: gnu/packages/games.scm:2628 msgid "" "In SuperStarfighter, up to four local players compete in a\n" "2D arena with fast-moving ships and missiles. Different game types are\n" "available, as well as a single-player mode with AI-controlled ships." msgstr "" -#: gnu/packages/games.scm:2760 +#: gnu/packages/games.scm:2761 msgid "" "Trigger-rally is a 3D rally simulation with great physics\n" "for drifting on over 200 maps. Different terrain materials like dirt,\n" @@ -3586,17 +3711,17 @@ msgid "" "equipped with spoken co-driver notes and co-driver icons." msgstr "" -#: gnu/packages/games.scm:2816 +#: gnu/packages/games.scm:2817 msgid "" "This package provides @command{ufo2map}, a program used to generate\n" "maps for the UFO: Alien Invasion strategy game." msgstr "" -#: gnu/packages/games.scm:2858 +#: gnu/packages/games.scm:2859 msgid "This package contains maps and other assets for UFO: Alien Invasion." msgstr "" -#: gnu/packages/games.scm:2945 +#: gnu/packages/games.scm:2946 msgid "" "UFO: Alien Invasion is a tactical strategy game set in the year 2084.\n" "You control a secret organisation charged with defending Earth from a brutal\n" @@ -3614,11 +3739,11 @@ msgid "" "properly." msgstr "" -#: gnu/packages/games.scm:2982 +#: gnu/packages/games.scm:2983 msgid "A graphical user interface for the package @code{gnushogi}." msgstr "" -#: gnu/packages/games.scm:3035 +#: gnu/packages/games.scm:3036 msgid "" "L'Abbaye des Morts is a 2D platform game set in 13th century\n" "France. The Cathars, who preach about good Christian beliefs, were being\n" @@ -3627,14 +3752,14 @@ msgid "" "that beneath its ruins lay buried an ancient evil." msgstr "" -#: gnu/packages/games.scm:3081 +#: gnu/packages/games.scm:3082 msgid "" "Angband is a Classic dungeon exploration roguelike. Explore\n" "the depths below Angband, seeking riches, fighting monsters, and preparing to\n" "fight Morgoth, the Lord of Darkness." msgstr "" -#: gnu/packages/games.scm:3129 +#: gnu/packages/games.scm:3130 msgid "" "Pingus is a free Lemmings-like puzzle game in which the player takes\n" "command of a bunch of small animals and has to guide them through levels.\n" @@ -3644,21 +3769,21 @@ msgid "" "level's exit. The game is presented in a 2D side view." msgstr "" -#: gnu/packages/games.scm:3152 +#: gnu/packages/games.scm:3153 msgid "" "The GNU Talk Filters are programs that convert English text\n" "into stereotyped or otherwise humorous dialects. The filters are provided as\n" "a C library, so they can easily be integrated into other programs." msgstr "" -#: gnu/packages/games.scm:3196 +#: gnu/packages/games.scm:3197 msgid "" "The player controls a character (one of three: Good, Bad, and Dead),\n" "dodges the missiles (lots of it cover the screen, but the character's hitbox\n" "is very small), and shoot at the adversaries that keep appear on the screen." msgstr "" -#: gnu/packages/games.scm:3239 +#: gnu/packages/games.scm:3240 msgid "" "CMatrix simulates the display from \"The Matrix\" and is\n" "based on the screensaver from the movie's website. It works with terminal\n" @@ -3666,14 +3791,14 @@ msgid "" "asynchronously and at a user-defined speed." msgstr "" -#: gnu/packages/games.scm:3270 +#: gnu/packages/games.scm:3271 msgid "" "GNU Chess is a chess engine. It allows you to compete\n" "against the computer in a game of chess, either through the default terminal\n" "interface or via an external visual interface such as GNU XBoard." msgstr "" -#: gnu/packages/games.scm:3332 +#: gnu/packages/games.scm:3333 msgid "" "GNU FreeDink is a free and portable re-implementation of the engine\n" "for the role-playing game Dink Smallwood. It supports not only the original\n" @@ -3681,17 +3806,17 @@ msgid "" "To that extent, it also includes a front-end for managing all of your D-Mods." msgstr "" -#: gnu/packages/games.scm:3360 +#: gnu/packages/games.scm:3361 msgid "This package contains the game data of GNU Freedink." msgstr "" -#: gnu/packages/games.scm:3383 +#: gnu/packages/games.scm:3384 msgid "" "DFArc makes it easy to play and manage the GNU FreeDink game\n" "and its numerous D-Mods." msgstr "" -#: gnu/packages/games.scm:3453 +#: gnu/packages/games.scm:3454 msgid "" "GNU XBoard is a graphical board for all varieties of chess,\n" "including international chess, xiangqi (Chinese chess), shogi (Japanese chess)\n" @@ -3700,7 +3825,7 @@ msgid "" "Portable Game Notation." msgstr "" -#: gnu/packages/games.scm:3488 +#: gnu/packages/games.scm:3489 msgid "" "GNU Typist is a universal typing tutor. It can be used to learn and\n" "practice touch-typing. Several tutorials are included; in addition to\n" @@ -3709,7 +3834,7 @@ msgid "" "are primarily in English, however some in other languages are provided." msgstr "" -#: gnu/packages/games.scm:3560 +#: gnu/packages/games.scm:3561 msgid "" "The Irrlicht Engine is a high performance realtime 3D engine written in\n" "C++. Features include an OpenGL renderer, extensible materials, scene graph\n" @@ -3717,7 +3842,7 @@ msgid "" "for common mesh file formats, and collision detection." msgstr "" -#: gnu/packages/games.scm:3611 +#: gnu/packages/games.scm:3612 msgid "" "M.A.R.S. is a 2D space shooter with pretty visual effects and\n" "attractive physics. Players can battle each other or computer controlled\n" @@ -3725,7 +3850,7 @@ msgid "" "match, cannon keep, and grave-itation pit." msgstr "" -#: gnu/packages/games.scm:3650 +#: gnu/packages/games.scm:3651 msgid "" "Glk defines a portable API for applications with text UIs. It was\n" "primarily designed for interactive fiction, but it should be suitable for many\n" @@ -3734,7 +3859,7 @@ msgid "" "using the @code{curses.h} library for screen control." msgstr "" -#: gnu/packages/games.scm:3690 +#: gnu/packages/games.scm:3691 msgid "" "Glulx is a 32-bit portable virtual machine intended for writing and\n" "playing interactive fiction. It was designed by Andrew Plotkin to relieve\n" @@ -3742,28 +3867,28 @@ msgid "" "reference interpreter, using the Glk API." msgstr "" -#: gnu/packages/games.scm:3716 +#: gnu/packages/games.scm:3717 msgid "" "Fifechan is a lightweight cross platform GUI library written in C++\n" "specifically designed for games. It has a built in set of extendable GUI\n" "Widgets, and allows users to create more." msgstr "" -#: gnu/packages/games.scm:3791 +#: gnu/packages/games.scm:3792 msgid "" "@acronym{FIFE, Flexible Isometric Free Engine} is a multi-platform\n" "isometric game engine. Python bindings are included allowing users to create\n" "games using Python as well as C++." msgstr "" -#: gnu/packages/games.scm:3826 +#: gnu/packages/games.scm:3827 msgid "" "Fizmo is a console-based Z-machine interpreter. It is used to play\n" "interactive fiction, also known as text adventures, which were implemented\n" "either by Infocom or created using the Inform compiler." msgstr "" -#: gnu/packages/games.scm:3849 +#: gnu/packages/games.scm:3850 msgid "" "GNU Go is a program that plays the game of Go, in which players\n" "place stones on a grid to form territory or capture other stones. While\n" @@ -3774,7 +3899,7 @@ msgid "" "Protocol)." msgstr "" -#: gnu/packages/games.scm:3878 +#: gnu/packages/games.scm:3879 msgid "" "Extreme Tux Racer, or etracer as it is called for short, is\n" "a simple OpenGL racing game featuring Tux, the Linux mascot. The goal of the\n" @@ -3787,7 +3912,7 @@ msgid "" "This game is based on the GPL version of the famous game TuxRacer." msgstr "" -#: gnu/packages/games.scm:3952 +#: gnu/packages/games.scm:3953 msgid "" "SuperTuxKart is a 3D kart racing game, with a focus on\n" "having fun over realism. You can play with up to 4 friends on one PC, racing\n" @@ -3795,7 +3920,7 @@ msgid "" "also available." msgstr "" -#: gnu/packages/games.scm:4028 +#: gnu/packages/games.scm:4029 msgid "" "Unknown Horizons is a 2D realtime strategy simulation with an emphasis\n" "on economy and city building. Expand your small settlement to a strong and\n" @@ -3804,7 +3929,7 @@ msgid "" "trade and diplomacy." msgstr "" -#: gnu/packages/games.scm:4081 +#: gnu/packages/games.scm:4082 msgid "" "GNUjump is a simple, yet addictive game in which you must jump from\n" "platform to platform to avoid falling, while the platforms drop at faster rates\n" @@ -3812,7 +3937,7 @@ msgid "" "falling, themeable graphics and sounds, and replays." msgstr "" -#: gnu/packages/games.scm:4117 +#: gnu/packages/games.scm:4118 msgid "" "The Battle for Wesnoth is a fantasy, turn based tactical strategy game,\n" "with several single player campaigns, and multiplayer games (both networked and\n" @@ -3824,20 +3949,20 @@ msgid "" "next campaign." msgstr "" -#: gnu/packages/games.scm:4137 +#: gnu/packages/games.scm:4138 msgid "" "This package contains a dedicated server for @emph{The\n" "Battle for Wesnoth}." msgstr "" -#: gnu/packages/games.scm:4179 +#: gnu/packages/games.scm:4180 msgid "" "Gamine is a game designed for young children who are learning to use the\n" "mouse and keyboard. The child uses the mouse to draw colored dots and lines\n" "on the screen and keyboard to display letters." msgstr "" -#: gnu/packages/games.scm:4211 +#: gnu/packages/games.scm:4212 msgid "" "ManaPlus is a 2D MMORPG client for game servers. It is the only\n" "fully supported client for @uref{http://www.themanaworld.org, The mana\n" @@ -3845,7 +3970,7 @@ msgid "" "@uref{http://landoffire.org, Land of fire}." msgstr "" -#: gnu/packages/games.scm:4243 +#: gnu/packages/games.scm:4244 msgid "" "OpenTTD is a game in which you transport goods and\n" "passengers by land, water and air. It is a re-implementation of Transport\n" @@ -3855,7 +3980,7 @@ msgid "" "engine. When you start it you will be prompted to download a graphics set." msgstr "" -#: gnu/packages/games.scm:4303 +#: gnu/packages/games.scm:4304 msgid "" "The OpenGFX project is an implementation of the OpenTTD base graphics\n" "set that aims to ensure the best possible out-of-the-box experience.\n" @@ -3870,29 +3995,29 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:4361 +#: gnu/packages/games.scm:4362 msgid "" "OpenSFX is a set of free base sounds for OpenTTD which make\n" "it possible to play OpenTTD without requiring the proprietary sound files from\n" "the original Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4404 +#: gnu/packages/games.scm:4405 msgid "" "OpenMSX is a music set for OpenTTD which makes it possible\n" "to play OpenTTD without requiring the proprietary music from the original\n" "Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4473 +#: gnu/packages/games.scm:4474 msgid "openrct2-title-sequences is a set of title sequences for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4513 +#: gnu/packages/games.scm:4514 msgid "openrct2-objects is a set of objects for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4576 +#: gnu/packages/games.scm:4577 msgid "" "OpenRCT2 is a free software re-implementation of\n" "RollerCoaster Tycoon 2 (RCT2). The gameplay revolves around building and\n" @@ -3902,27 +4027,27 @@ msgid "" "images, etc.)" msgstr "" -#: gnu/packages/games.scm:4630 +#: gnu/packages/games.scm:4631 msgid "" "The Emilia Pinball Project is a pinball simulator. There\n" "are only two levels to play with, but they are very addictive." msgstr "" -#: gnu/packages/games.scm:4659 +#: gnu/packages/games.scm:4660 msgid "" "Pioneers is an emulation of the board game The Settlers of\n" "Catan. It can be played on a local network, on the internet, and with AI\n" "players." msgstr "" -#: gnu/packages/games.scm:4701 +#: gnu/packages/games.scm:4702 msgid "" "The goal of this logic game is to open all cards in a 6x6\n" "grid, using a number of hints as to their relative position. The game idea\n" "is attributed to Albert Einstein." msgstr "" -#: gnu/packages/games.scm:4731 +#: gnu/packages/games.scm:4732 msgid "" "POWWOW is a client software which can be used for telnet as well as for\n" "@dfn{Multi-User Dungeon} (MUD). Additionally it can serve as a nice client for\n" @@ -3930,21 +4055,21 @@ msgid "" "http://lavachat.symlynx.com/unix/" msgstr "" -#: gnu/packages/games.scm:4838 +#: gnu/packages/games.scm:4839 msgid "" "Red Eclipse is an arena shooter, created from the Cube2 engine.\n" "Offering an innovative parkour system and distinct but all potent weapons,\n" "Red Eclipse provides fast paced and accessible gameplay." msgstr "" -#: gnu/packages/games.scm:4903 +#: gnu/packages/games.scm:4904 msgid "" "Grue Hunter is a text adventure game written in Perl. You must make\n" "your way through an underground cave system in search of the Grue. Can you\n" "capture it and get out alive?" msgstr "" -#: gnu/packages/games.scm:4942 +#: gnu/packages/games.scm:4943 msgid "" "lierolibre is an earthworm action game where you fight another player\n" "(or the computer) underground using a wide array of weapons.\n" @@ -3969,14 +4094,14 @@ msgid "" "fullscreen, use F5 or Alt+Enter." msgstr "" -#: gnu/packages/games.scm:5021 +#: gnu/packages/games.scm:5022 msgid "" "Tennix is a 2D tennis game. You can play against the\n" "computer or against another player using the keyboard. The game runs\n" "in-window at 640x480 resolution or fullscreen." msgstr "" -#: gnu/packages/games.scm:5105 +#: gnu/packages/games.scm:5106 msgid "" "Warzone 2100 offers campaign, multi-player, and single-player skirmish\n" "modes. An extensive tech tree with over 400 different technologies, combined\n" @@ -3984,7 +4109,7 @@ msgid "" "tactics." msgstr "" -#: gnu/packages/games.scm:5184 +#: gnu/packages/games.scm:5185 msgid "" "In Widelands, you are the regent of a small clan. You start out with\n" "nothing but your headquarters, where all your resources are stored.\n" @@ -4006,7 +4131,7 @@ msgid "" "of war. Widelands also offers an Artificial Intelligence to challenge you." msgstr "" -#: gnu/packages/games.scm:5236 +#: gnu/packages/games.scm:5237 msgid "" "In the year 2579, the intergalactic weapons corporation, WEAPCO, has\n" "dominated the galaxy. Guide Chris Bainfield and his friend Sid Wilson on\n" @@ -4015,7 +4140,7 @@ msgid "" "in strikes against the evil corporation." msgstr "" -#: gnu/packages/games.scm:5267 +#: gnu/packages/games.scm:5268 msgid "" "In this game you are the captain of the cargo ship Chromium B.S.U. and\n" "are responsible for delivering supplies to the troops on the front line. Your\n" @@ -4023,7 +4148,7 @@ msgid "" "safety of the Chromium vessel." msgstr "" -#: gnu/packages/games.scm:5350 +#: gnu/packages/games.scm:5351 msgid "" "Tux Paint is a free drawing program designed for young children (kids\n" "ages 3 and up). It has a simple, easy-to-use interface; fun sound effects;\n" @@ -4032,23 +4157,23 @@ msgid "" "your child be creative." msgstr "" -#: gnu/packages/games.scm:5390 +#: gnu/packages/games.scm:5391 msgid "" "This package contains a set of \"Rubber Stamp\" images which can be used\n" "with the \"Stamp\" tool within Tux Paint." msgstr "" -#: gnu/packages/games.scm:5439 +#: gnu/packages/games.scm:5440 msgid "Tux Paint Config is a graphical configuration editor for Tux Paint." msgstr "" -#: gnu/packages/games.scm:5491 +#: gnu/packages/games.scm:5492 msgid "" "SuperTux is a classic 2D jump'n run sidescroller game in\n" "a style similar to the original Super Mario games." msgstr "" -#: gnu/packages/games.scm:5523 +#: gnu/packages/games.scm:5524 msgid "" "TinTin++ is a MUD client which supports MCCP (Mud Client Compression\n" "Protocol), MMCP (Mud Master Chat Protocol), xterm 256 colors, most TELNET\n" @@ -4056,7 +4181,7 @@ msgid "" "Linux / Mac OS X servers, and an auto mapper with a VT100 map display." msgstr "" -#: gnu/packages/games.scm:5563 +#: gnu/packages/games.scm:5564 msgid "" "Learn programming, playing with ants and spider webs ;-)\n" "Your robot ant can be programmed in many languages: OCaml, Python, C, C++,\n" @@ -4064,14 +4189,14 @@ msgid "" "programmers may also add their own favorite language." msgstr "" -#: gnu/packages/games.scm:5602 +#: gnu/packages/games.scm:5603 msgid "" "Bambam is a simple baby keyboard (and gamepad) masher\n" "application that locks the keyboard and mouse and instead displays bright\n" "colors, pictures, and sounds." msgstr "" -#: gnu/packages/games.scm:5663 +#: gnu/packages/games.scm:5664 msgid "" "Mr. Rescue is an arcade styled 2d action game centered around evacuating\n" "civilians from burning buildings. The game features fast-paced fire\n" @@ -4079,7 +4204,7 @@ msgid "" "throwing people around in pseudo-randomly generated buildings." msgstr "" -#: gnu/packages/games.scm:5770 +#: gnu/packages/games.scm:5771 msgid "" "HyperRogue is a game in which the player collects treasures and fights\n" "monsters -- rogue-like but for the fact that it is played on the hyperbolic\n" @@ -4093,13 +4218,13 @@ msgid "" "symbols, it still needs graphics to render the non-euclidean world." msgstr "" -#: gnu/packages/games.scm:5817 +#: gnu/packages/games.scm:5818 msgid "" "Kobo Deluxe is an enhanced version of Akira Higuchi's XKobo graphical game\n" "for Un*x systems with X11." msgstr "" -#: gnu/packages/games.scm:5845 +#: gnu/packages/games.scm:5846 msgid "" "Freeciv is a turn-based empire building strategy game\n" "inspired by the history of human civilization. The game commences in\n" @@ -4107,7 +4232,7 @@ msgid "" "into the Space Age." msgstr "" -#: gnu/packages/games.scm:5878 +#: gnu/packages/games.scm:5879 msgid "" "@code{No More Secrets} provides a command line tool called \"nms\"\n" "that recreates the famous data decryption effect seen on screen in the 1992\n" @@ -4118,25 +4243,25 @@ msgid "" "starting a decryption sequence to reveal the original plaintext characters." msgstr "" -#: gnu/packages/games.scm:5906 +#: gnu/packages/games.scm:5907 msgid "This package contains the data files required for MegaGlest." msgstr "" -#: gnu/packages/games.scm:5961 +#: gnu/packages/games.scm:5962 msgid "" "MegaGlest is a cross-platform 3D real-time strategy (RTS)\n" "game, where you control the armies of one of seven different factions: Tech,\n" "Magic, Egypt, Indians, Norsemen, Persian or Romans." msgstr "" -#: gnu/packages/games.scm:6013 +#: gnu/packages/games.scm:6014 msgid "" "In FreeGish you control Gish, a ball of tar who lives\n" "happily with his girlfriend Brea, until one day a mysterious dark creature\n" "emerges from a sewer hole and pulls her below ground." msgstr "" -#: gnu/packages/games.scm:6049 +#: gnu/packages/games.scm:6050 msgid "" "C-Dogs SDL is a classic overhead run-and-gun game,\n" "supporting up to 4 players in co-op and deathmatch modes. Customize your\n" @@ -4144,21 +4269,21 @@ msgid "" "over 100 user-created campaigns." msgstr "" -#: gnu/packages/games.scm:6149 +#: gnu/packages/games.scm:6150 msgid "" "Kiki the nano bot is a 3D puzzle game. It is basically a\n" "mixture of the games Sokoban and Kula-World. Your task is to help Kiki, a\n" "small robot living in the nano world, repair its maker." msgstr "" -#: gnu/packages/games.scm:6225 +#: gnu/packages/games.scm:6226 msgid "" "Teeworlds is an online multiplayer game. Battle with up to\n" "16 players in a variety of game modes, including Team Deathmatch and Capture\n" "The Flag. You can even design your own maps!" msgstr "" -#: gnu/packages/games.scm:6285 +#: gnu/packages/games.scm:6286 msgid "" "Enigma is a puzzle game with 550 unique levels. The object\n" "of the game is to find and uncover pairs of identically colored ‘Oxyd’ stones.\n" @@ -4170,7 +4295,7 @@ msgid "" "with the mouse isn’t always trivial." msgstr "" -#: gnu/packages/games.scm:6319 +#: gnu/packages/games.scm:6320 msgid "" "Chroma is an abstract puzzle game. A variety of colourful\n" "shapes are arranged in a series of increasingly complex patterns, forming\n" @@ -4180,7 +4305,7 @@ msgid "" "becoming difficult enough to tax even the brightest of minds." msgstr "" -#: gnu/packages/games.scm:6384 +#: gnu/packages/games.scm:6385 msgid "" "Fish Fillets NG is strictly a puzzle game. The goal in\n" "every of the seventy levels is always the same: find a safe way out. The fish\n" @@ -4189,14 +4314,14 @@ msgid "" "fish. The whole game is accompanied by quiet, comforting music." msgstr "" -#: gnu/packages/games.scm:6452 +#: gnu/packages/games.scm:6453 msgid "" "Dungeon Crawl Stone Soup (also known as \"Crawl\" or DCSS\n" "for short) is a roguelike adventure through dungeons filled with dangerous\n" "monsters in a quest to find the mystifyingly fabulous Orb of Zot." msgstr "" -#: gnu/packages/games.scm:6529 +#: gnu/packages/games.scm:6530 msgid "" "Lugaru is a third-person action game. The main character,\n" "Turner, is an anthropomorphic rebel bunny rabbit with impressive combat skills.\n" @@ -4206,11 +4331,11 @@ msgid "" "fight against their plot and save his fellow rabbits from slavery." msgstr "" -#: gnu/packages/games.scm:6574 +#: gnu/packages/games.scm:6575 msgid "0ad-data provides the data files required by the game 0ad." msgstr "" -#: gnu/packages/games.scm:6710 +#: gnu/packages/games.scm:6711 msgid "" "0 A.D. is a real-time strategy (RTS) game of ancient\n" "warfare. It's a historically-based war/economy game that allows players to\n" @@ -4220,7 +4345,7 @@ msgid "" "0ad needs a window manager that supports 'Extended Window Manager Hints'." msgstr "" -#: gnu/packages/games.scm:6776 +#: gnu/packages/games.scm:6777 msgid "" "The original Colossal Cave Adventure from 1976 was the origin of all\n" "text adventures, dungeon-crawl (computer) games, and computer-hosted\n" @@ -4229,7 +4354,7 @@ msgid "" "``adventure 2.5'' and ``430-point adventure''." msgstr "" -#: gnu/packages/games.scm:6899 +#: gnu/packages/games.scm:6900 msgid "" "Tales of Maj’Eyal (ToME) RPG, featuring tactical turn-based\n" "combat and advanced character building. Play as one of many unique races and\n" @@ -4240,21 +4365,21 @@ msgid "" "Tales of Maj’Eyal offers engaging roguelike gameplay for the 21st century." msgstr "" -#: gnu/packages/games.scm:6945 +#: gnu/packages/games.scm:6946 msgid "" "Quakespasm is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7002 +#: gnu/packages/games.scm:7003 msgid "" "vkquake is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7067 +#: gnu/packages/games.scm:7068 msgid "" "Yamagi Quake II is an enhanced client for id Software's Quake II.\n" "The main focus is an unchanged single player experience like back in 1997,\n" @@ -4264,18 +4389,18 @@ msgid "" "making Yamagi Quake II one of the most solid Quake II implementations available." msgstr "" -#: gnu/packages/games.scm:7100 +#: gnu/packages/games.scm:7101 msgid "Nudoku is a ncurses-based Sudoku game for your terminal." msgstr "" -#: gnu/packages/games.scm:7146 +#: gnu/packages/games.scm:7147 msgid "" "The Butterfly Effect (tbe) is a game that uses\n" "realistic physics simulations to combine lots of simple mechanical\n" "elements to achieve a simple goal in the most complex way possible." msgstr "" -#: gnu/packages/games.scm:7192 +#: gnu/packages/games.scm:7193 msgid "" "Pioneer is a space adventure game set in our galaxy at the turn of the\n" "31st century. The game is open-ended, and you are free to eke out whatever\n" @@ -4286,14 +4411,14 @@ msgid "" "whatever you make of it." msgstr "" -#: gnu/packages/games.scm:7221 +#: gnu/packages/games.scm:7222 msgid "" "Badass generates false commits for a range of dates, essentially\n" "hacking the gamification of contribution graphs on platforms such as\n" "Github or Gitlab." msgstr "" -#: gnu/packages/games.scm:7294 +#: gnu/packages/games.scm:7295 msgid "" "Colobot: Gold Edition is a real-time strategy game, where\n" "you can program your units (bots) in a language called CBOT, which is similar\n" @@ -4301,7 +4426,7 @@ msgid "" "You can save humanity and get programming skills!" msgstr "" -#: gnu/packages/games.scm:7386 +#: gnu/packages/games.scm:7387 msgid "" "GZdoom is a port of the Doom 2 game engine, with a modern\n" "renderer. It improves modding support with ZDoom's advanced mapping features\n" @@ -4309,14 +4434,14 @@ msgid "" "Strife, Chex Quest, and fan-created games like Harmony, Hacx and Freedoom." msgstr "" -#: gnu/packages/games.scm:7425 +#: gnu/packages/games.scm:7426 msgid "" "Odamex is a modification of the Doom engine that\n" "allows players to easily join servers dedicated to playing Doom\n" "online." msgstr "" -#: gnu/packages/games.scm:7453 +#: gnu/packages/games.scm:7454 msgid "" "Chocolate Doom takes a different approach to other source ports. Its\n" "aim is to accurately reproduce the experience of playing Vanilla Doom. It is\n" @@ -4329,7 +4454,7 @@ msgid "" "affect gameplay)." msgstr "" -#: gnu/packages/games.scm:7493 +#: gnu/packages/games.scm:7494 msgid "" "Crispy Doom is a friendly fork of Chocolate Doom that provides a higher\n" "display resolution, removes the static limits of the Doom engine and offers\n" @@ -4338,21 +4463,21 @@ msgid "" "original." msgstr "" -#: gnu/packages/games.scm:7566 +#: gnu/packages/games.scm:7567 msgid "This package provides C11 / gnu11 utilities C library" msgstr "" -#: gnu/packages/games.scm:7635 +#: gnu/packages/games.scm:7636 msgid "" "Fortune is a command-line utility which displays a random\n" "quotation from a collection of quotes." msgstr "" -#: gnu/packages/games.scm:7677 +#: gnu/packages/games.scm:7678 msgid "Xonotic-data provides the data files required by the game Xonotic." msgstr "" -#: gnu/packages/games.scm:7873 +#: gnu/packages/games.scm:7874 msgid "" "Xonotic is a free, fast-paced first-person shooter.\n" "The project is geared towards providing addictive arena shooter\n" @@ -4362,7 +4487,7 @@ msgid "" "open-source FPS of its kind." msgstr "" -#: gnu/packages/games.scm:7920 +#: gnu/packages/games.scm:7921 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4371,7 +4496,7 @@ msgid "" "ncurses for text display." msgstr "" -#: gnu/packages/games.scm:7964 +#: gnu/packages/games.scm:7966 msgid "" "Naev is a 2d action/rpg space game that combines elements from\n" "the action, RPG and simulation genres. You pilot a spaceship from\n" @@ -4383,7 +4508,7 @@ msgid "" "of lore accompanying everything from planets to equipment." msgstr "" -#: gnu/packages/games.scm:8013 +#: gnu/packages/games.scm:8015 msgid "" "Frotz is an interpreter for Infocom games and\n" "other Z-machine games in the text adventure/interactive fiction genre.\n" @@ -4395,7 +4520,7 @@ msgid "" "to play games on webpages. It can also be made into a chat bot." msgstr "" -#: gnu/packages/games.scm:8075 +#: gnu/packages/games.scm:8077 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4405,7 +4530,7 @@ msgid "" "when packaged in Blorb container files or optionally from individual files." msgstr "" -#: gnu/packages/games.scm:8166 +#: gnu/packages/games.scm:8168 msgid "" "Frozen-Bubble is a clone of the popular Puzzle Bobble game, in which\n" "you attempt to shoot bubbles into groups of the same color to cause them to\n" @@ -4420,7 +4545,7 @@ msgid "" "their own levels." msgstr "" -#: gnu/packages/games.scm:8199 +#: gnu/packages/games.scm:8201 msgid "" "Libmanette is a small GObject library giving you simple\n" "access to game controllers. It supports the de-facto standard gamepads as\n" @@ -4428,7 +4553,7 @@ msgid "" "GameController." msgstr "" -#: gnu/packages/games.scm:8245 +#: gnu/packages/games.scm:8247 msgid "" "Quadrapassel comes from the classic falling-block game,\n" "Tetris. The goal of the game is to create complete horizontal lines of\n" @@ -4440,7 +4565,7 @@ msgid "" "your score gets higher, you level up and the blocks fall faster." msgstr "" -#: gnu/packages/games.scm:8294 +#: gnu/packages/games.scm:8296 msgid "" "Endless Sky is a 2D space trading and combat game. Explore\n" "other star systems. Earn money by trading, carrying passengers, or completing\n" @@ -4450,7 +4575,7 @@ msgid "" "civilized than your own." msgstr "" -#: gnu/packages/games.scm:8443 +#: gnu/packages/games.scm:8445 msgid "" "StepMania is a dance and rhythm game. It features 3D\n" "graphics, keyboard and dance pad support, and an editor for creating your own\n" @@ -4460,7 +4585,7 @@ msgid "" "to download and install them in @file{$HOME/.stepmania-X.Y/Songs} directory." msgstr "" -#: gnu/packages/games.scm:8479 +#: gnu/packages/games.scm:8481 msgid "" "@i{oshu!} is a minimalist variant of the @i{osu!} rhythm game,\n" "which is played by pressing buttons and following along sliders as they appear\n" @@ -4470,7 +4595,7 @@ msgid "" "download and unpack them separately." msgstr "" -#: gnu/packages/games.scm:8562 +#: gnu/packages/games.scm:8564 msgid "" "Battle Tanks (also known as \"btanks\") is a funny battle\n" "game, where you can choose one of three vehicles and eliminate your enemy\n" @@ -4479,7 +4604,7 @@ msgid "" "and cooperative." msgstr "" -#: gnu/packages/games.scm:8596 +#: gnu/packages/games.scm:8598 msgid "" "Slime Volley is a 2D arcade-oriented volleyball simulation, in\n" "the spirit of some Java games of the same name.\n" @@ -4490,7 +4615,7 @@ msgid "" "the ground, the set ends and all balls are served again." msgstr "" -#: gnu/packages/games.scm:8626 +#: gnu/packages/games.scm:8628 msgid "" "Slingshot is a two-dimensional strategy game where two\n" "players attempt to shoot one another through a section of space populated by\n" @@ -4498,14 +4623,14 @@ msgid "" "affected by the gravity of the planets." msgstr "" -#: gnu/packages/games.scm:8674 +#: gnu/packages/games.scm:8676 msgid "" "4D-TRIS is an alteration of the well-known Tetris game. The\n" "game field is extended to 4D space, which has to filled up by the gamer with\n" "4D hyper cubes." msgstr "" -#: gnu/packages/games.scm:8751 +#: gnu/packages/games.scm:8753 msgid "" "Arx Libertatis is a cross-platform port of Arx Fatalis, a 2002\n" "first-person role-playing game / dungeon crawler developed by Arkane Studios.\n" @@ -4515,7 +4640,7 @@ msgid "" "where the player draws runes in real time to effect the desired spell." msgstr "" -#: gnu/packages/games.scm:8797 +#: gnu/packages/games.scm:8799 msgid "" "The Legend of Edgar is a 2D platform game with a persistent world.\n" "When Edgar's father fails to return home after venturing out one dark and stormy night,\n" @@ -4523,7 +4648,7 @@ msgid "" "a fortress beyond the forbidden swamp." msgstr "" -#: gnu/packages/games.scm:8899 +#: gnu/packages/games.scm:8901 msgid "" "OpenClonk is a multiplayer action/tactics/skill game. It is\n" "often referred to as a mixture of The Settlers and Worms. In a simple 2D\n" @@ -4533,20 +4658,20 @@ msgid "" "fight each other on an arena-like map." msgstr "" -#: gnu/packages/games.scm:8931 +#: gnu/packages/games.scm:8933 msgid "" "Flare (Free Libre Action Roleplaying Engine) is a simple\n" "game engine built to handle a very specific kind of game: single-player 2D\n" "action RPGs." msgstr "" -#: gnu/packages/games.scm:8994 +#: gnu/packages/games.scm:8996 msgid "" "Flare is a single-player 2D action RPG with\n" "fast-paced action and a dark fantasy style." msgstr "" -#: gnu/packages/games.scm:9046 +#: gnu/packages/games.scm:9048 msgid "" "Far below the surface of the planet is a place of limitless\n" "power. Those that seek to control such a utopia will soon bring an end to\n" @@ -4560,7 +4685,7 @@ msgid "" "Orcus Dome from evil." msgstr "" -#: gnu/packages/games.scm:9108 +#: gnu/packages/games.scm:9110 msgid "" "Marble Marcher is a video game that uses a fractal physics\n" "engine and fully procedural rendering to produce beautiful and unique\n" @@ -4570,7 +4695,7 @@ msgid "" "levels to unlock." msgstr "" -#: gnu/packages/games.scm:9159 +#: gnu/packages/games.scm:9161 msgid "" "SimGear is a set of libraries designed to be used as\n" "building blocks for quickly assembling 3D simulations, games, and\n" @@ -4578,7 +4703,7 @@ msgid "" "and also provides the base for the FlightGear Flight Simulator." msgstr "" -#: gnu/packages/games.scm:9253 +#: gnu/packages/games.scm:9255 msgid "" "The goal of the FlightGear project is to create a\n" "sophisticated flight simulator framework for use in research or academic\n" @@ -4588,14 +4713,14 @@ msgid "" "simulator." msgstr "" -#: gnu/packages/games.scm:9306 +#: gnu/packages/games.scm:9308 msgid "" "You, as a bunny, have to jump on your opponents to make them\n" "explode. It is a true multiplayer game; you cannot play this alone. You can\n" "play with up to four players simultaneously. It has network support." msgstr "" -#: gnu/packages/games.scm:9373 +#: gnu/packages/games.scm:9375 msgid "" "Hedgewars is a turn based strategy, artillery, action and comedy game,\n" "featuring the antics of pink hedgehogs with attitude as they battle from the\n" @@ -4605,7 +4730,7 @@ msgid "" "and bring the war to your enemy." msgstr "" -#: gnu/packages/games.scm:9407 +#: gnu/packages/games.scm:9409 msgid "" "The gruid module provides packages for easily building\n" "grid-based applications in Go. The library abstracts rendering and input for\n" @@ -4615,13 +4740,13 @@ msgid "" "application." msgstr "" -#: gnu/packages/games.scm:9437 +#: gnu/packages/games.scm:9439 msgid "" "The gruid-tcell module provides a Gruid driver for building\n" "terminal full-window applications." msgstr "" -#: gnu/packages/games.scm:9464 +#: gnu/packages/games.scm:9466 msgid "" "Harmonist: Dayoriah Clan Infiltration is a stealth\n" "coffee-break roguelike game. The game has a heavy focus on tactical\n" @@ -4631,7 +4756,7 @@ msgid "" "on items and player adaptability for character progression." msgstr "" -#: gnu/packages/games.scm:9573 +#: gnu/packages/games.scm:9575 msgid "" "Drascula: The Vampire Strikes Back is a classic humorous 2D\n" "point and click adventure game.\n" @@ -4643,7 +4768,7 @@ msgid "" "the World and demonstrating that he is even more evil than his brother Vlad." msgstr "" -#: gnu/packages/games.scm:9653 +#: gnu/packages/games.scm:9655 msgid "" "Lure of the Temptress is a classic 2D point and click adventure game.\n" "\n" @@ -4662,7 +4787,7 @@ msgid "" "Skorl. Maybe it would be an idea to try and escape..." msgstr "" -#: gnu/packages/games.scm:9752 +#: gnu/packages/games.scm:9754 msgid "" "Flight of the Amazon Queen is a 2D point-and-click\n" "adventure game set in the 1940s.\n" @@ -4679,7 +4804,7 @@ msgid "" "women and 6-foot-tall pygmies." msgstr "" -#: gnu/packages/games.scm:9852 +#: gnu/packages/games.scm:9854 msgid "" "Beneath a Steel Sky is a science-fiction thriller set in a bleak\n" "post-apocalyptic vision of the future. It revolves around Union City,\n" @@ -4702,7 +4827,7 @@ msgid "" "and to seek vengeance for the killing of his tribe." msgstr "" -#: gnu/packages/games.scm:9911 +#: gnu/packages/games.scm:9913 msgid "" "GNU Robots is a game in which you program a robot to explore a world\n" "full of enemies that can hurt it, obstacles and food to be eaten. The goal of\n" @@ -4710,14 +4835,14 @@ msgid "" "may be written in a plain text file in the Scheme programming language." msgstr "" -#: gnu/packages/games.scm:9981 +#: gnu/packages/games.scm:9983 msgid "" "Ri-li is a game in which you drive a wooden toy\n" "steam locomotive across many levels and collect all the coaches to\n" "win." msgstr "" -#: gnu/packages/games.scm:10037 +#: gnu/packages/games.scm:10039 msgid "" "FreeOrion is a turn-based space empire and galactic conquest (4X)\n" "computer game being designed and built by the FreeOrion project. Control an\n" @@ -4727,14 +4852,14 @@ msgid "" "remake of that series or any other game." msgstr "" -#: gnu/packages/games.scm:10093 +#: gnu/packages/games.scm:10095 msgid "" "Leela-zero is a Go engine with no human-provided knowledge, modeled after\n" "the AlphaGo Zero paper. The current best network weights file for the engine\n" "can be downloaded from @url{https://zero.sjeng.org/best-network}." msgstr "" -#: gnu/packages/games.scm:10171 +#: gnu/packages/games.scm:10173 msgid "" "This a tool for Go players which performs the following functions:\n" "@itemize\n" @@ -4746,7 +4871,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:10214 +#: gnu/packages/games.scm:10216 msgid "" "KTuberling is a drawing toy intended for small children and\n" "adults who remain young at heart. The game has no winner; the only purpose is\n" @@ -4765,7 +4890,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10260 +#: gnu/packages/games.scm:10262 msgid "" "Picmi is a number logic game in which cells in a grid have\n" "to be colored or left blank according to numbers given at the side of the\n" @@ -4774,7 +4899,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10297 +#: gnu/packages/games.scm:10299 msgid "" "Kolf is a miniature golf game for one to ten players. The\n" "game is played from an overhead view, with a short bar representing the golf\n" @@ -4793,13 +4918,13 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10341 +#: gnu/packages/games.scm:10343 msgid "" "Shared library and common files for kmahjongg, kshisen and\n" "other Mah Jongg like games." msgstr "" -#: gnu/packages/games.scm:10374 +#: gnu/packages/games.scm:10376 msgid "" "In KMahjongg the tiles are scrambled and staked on top of\n" "each other to resemble a certain shape. The player is then expected to remove\n" @@ -4811,7 +4936,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10416 +#: gnu/packages/games.scm:10418 msgid "" "KShisen is a solitaire-like game played using the standard\n" "set of Mahjong tiles. Unlike Mahjong however, KShisen has only one layer of\n" @@ -4820,7 +4945,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10471 +#: gnu/packages/games.scm:10473 msgid "" "Kajongg is the ancient Chinese board game for 4 players.\n" "\n" @@ -4835,7 +4960,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10513 +#: gnu/packages/games.scm:10515 msgid "" "KBreakout is similar to the classics breakout and xboing,\n" "featuring a number of added graphical enhancements and effects. You control a\n" @@ -4845,7 +4970,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10551 +#: gnu/packages/games.scm:10553 msgid "" "KMines is a classic Minesweeper game. The idea is to\n" "uncover all the squares without blowing up any mines. When a mine is blown\n" @@ -4854,7 +4979,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10588 +#: gnu/packages/games.scm:10590 msgid "" "Konquest is the KDE version of Gnu-Lactic Konquest. Players\n" "conquer other planets by sending ships to them. The goal is to build an\n" @@ -4865,7 +4990,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10627 +#: gnu/packages/games.scm:10629 msgid "" "KBounce is a single player arcade game with the elements of\n" "puzzle. It is played on a field, surrounded by wall, with two or more balls\n" @@ -4875,7 +5000,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10665 +#: gnu/packages/games.scm:10667 msgid "" "KBlocks is the classic Tetris-like falling blocks game.\n" "\n" @@ -4887,7 +5012,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10708 +#: gnu/packages/games.scm:10710 msgid "" "KSudoku is a Sudoku game and solver, supporting a range of\n" "2D and 3D Sudoku variants. In addition to playing Sudoku, it can print Sudoku\n" @@ -4916,7 +5041,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10763 +#: gnu/packages/games.scm:10765 msgid "" "KLines is a simple but highly addictive one player game.\n" "\n" @@ -4933,7 +5058,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10806 +#: gnu/packages/games.scm:10808 msgid "" "KGoldrunner is an action game where the hero runs through a\n" "maze, climbs stairs, dig holes and dodges enemies in order to collect all the\n" @@ -4947,7 +5072,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10849 +#: gnu/packages/games.scm:10851 msgid "" "KDiamond is a three-in-a-row game like Bejeweled. It\n" "features unlimited fun with randomly generated games and five difficulty\n" @@ -4956,7 +5081,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10885 +#: gnu/packages/games.scm:10887 msgid "" "KFourInLine is a board game for two players based on the\n" "Connect-Four game.\n" @@ -4967,7 +5092,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10924 +#: gnu/packages/games.scm:10926 msgid "" "KBlackbox is a game of hide and seek played on a grid of\n" "boxes where the computer has hidden several balls. The position of the hidden\n" @@ -4979,7 +5104,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10964 +#: gnu/packages/games.scm:10966 msgid "" "KNetWalk is a small game where you have to build up a\n" "computer network by rotating the wires to connect the terminals to the server.\n" @@ -4992,7 +5117,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11002 +#: gnu/packages/games.scm:11004 msgid "" "Bomber is a single player arcade game.\n" "\n" @@ -5008,7 +5133,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11047 +#: gnu/packages/games.scm:11049 msgid "" "Granatier is a clone of the classic Bomberman game,\n" "inspired by the work of the Clanbomber clone.\n" @@ -5016,7 +5141,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11085 +#: gnu/packages/games.scm:11087 msgid "" "KsirK is a multi-player network-enabled game. The goal of\n" "the game is simply to conquer the world by attacking your neighbors with your\n" @@ -5041,7 +5166,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11145 +#: gnu/packages/games.scm:11147 msgid "" "Palapeli is a jigsaw puzzle game. Unlike other games in\n" "that genre, you are not limited to aligning pieces on imaginary grids. The\n" @@ -5053,7 +5178,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11184 +#: gnu/packages/games.scm:11186 msgid "" "Kiriki is an addictive and fun dice game, designed to be\n" "played by as many as six players.\n" @@ -5064,7 +5189,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11224 +#: gnu/packages/games.scm:11226 msgid "" "Kigo is an open-source implementation of the popular Go\n" "game.\n" @@ -5081,7 +5206,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11269 +#: gnu/packages/games.scm:11271 msgid "" "Kubrick is a game based on the Rubik's Cube puzzle.\n" "\n" @@ -5094,7 +5219,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11309 +#: gnu/packages/games.scm:11311 msgid "" "Lieutnant Skat (from German \"Offiziersskat\") is a fun and\n" "engaging card game for two players, where the second player is either live\n" @@ -5105,7 +5230,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11347 +#: gnu/packages/games.scm:11349 msgid "" "Kapman is a clone of the well known game Pac-Man.\n" "\n" @@ -5117,7 +5242,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11386 +#: gnu/packages/games.scm:11388 msgid "" "KSpaceduel is a space battle game for one or two players,\n" "where two ships fly around a star in a struggle to be the only survivor.\n" @@ -5125,7 +5250,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11419 +#: gnu/packages/games.scm:11421 msgid "" "Bovo is a Gomoku (from Japanese 五目並べ - lit. \"five\n" "points\") like game for two players, where the opponents alternate in placing\n" @@ -5136,7 +5261,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11457 +#: gnu/packages/games.scm:11459 msgid "" "Killbots is a simple game of evading killer robots.\n" "\n" @@ -5150,7 +5275,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11499 +#: gnu/packages/games.scm:11501 msgid "" "KSnakeDuel is a fast action game where you steer a snake\n" "which has to eat food. While eating the snake grows. But once a player\n" @@ -5160,7 +5285,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11535 +#: gnu/packages/games.scm:11537 msgid "" "In Kollision you use mouse to control a small blue ball in a\n" "closed space environment filled with small red balls, which move about\n" @@ -5171,7 +5296,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11575 +#: gnu/packages/games.scm:11577 msgid "" "KBattleship is a Battle Ship game for KDE.\n" "\n" @@ -5182,7 +5307,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11615 +#: gnu/packages/games.scm:11617 msgid "" "KReversi is a simple one player strategy game played\n" "against the computer.\n" @@ -5195,7 +5320,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11655 +#: gnu/packages/games.scm:11657 msgid "" "KSquares is an implementation of the popular paper based\n" "game Squares. Two players take turns connecting dots on a grid to complete\n" @@ -5204,7 +5329,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11692 +#: gnu/packages/games.scm:11694 msgid "" "KJumpingcube is a simple tactical game for one or two\n" "players, played on a grid of numbered squares. Each turn, players compete for\n" @@ -5213,7 +5338,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11782 +#: gnu/packages/games.scm:11784 msgid "" "X-Moto is a challenging 2D motocross platform game, where\n" "physics play an all important role in the gameplay. You need to\n" @@ -5221,27 +5346,27 @@ msgid "" "the more difficult challenges." msgstr "" -#: gnu/packages/games.scm:11827 +#: gnu/packages/games.scm:11829 msgid "" "Eboard is a chess board interface for ICS (Internet Chess Servers)\n" "and chess engines." msgstr "" -#: gnu/packages/games.scm:11880 +#: gnu/packages/games.scm:11882 msgid "" "ChessX is a chess database. With ChessX you can operate on your\n" "collection of chess games in many ways: browse, edit, add, organize, analyze,\n" "etc. You can also play games on FICS or against an engine." msgstr "" -#: gnu/packages/games.scm:11935 +#: gnu/packages/games.scm:11937 msgid "" "Stockfish is a very strong chess engine. It is much stronger than the\n" "best human chess grandmasters. It can be used with UCI-compatible GUIs like\n" "ChessX." msgstr "" -#: gnu/packages/games.scm:11964 +#: gnu/packages/games.scm:11966 msgid "" "Barrage is a rather destructive action game that puts you on a shooting\n" "range with the objective to hit as many dummy targets as possible within\n" @@ -5250,7 +5375,7 @@ msgid "" "get high scores." msgstr "" -#: gnu/packages/games.scm:11990 +#: gnu/packages/games.scm:11992 msgid "" "This is a clone of the classic game BurgerTime. In it, you play\n" "the part of a chef who must create burgers by stepping repeatedly on\n" @@ -5260,7 +5385,7 @@ msgid "" "protect you." msgstr "" -#: gnu/packages/games.scm:12018 +#: gnu/packages/games.scm:12020 msgid "" "Seven Kingdoms, designed by Trevor Chan, brings a blend of Real-Time\n" "Strategy with the addition of trade, diplomacy, and espionage. The game\n" @@ -5270,7 +5395,7 @@ msgid "" "kingdom." msgstr "" -#: gnu/packages/games.scm:12134 +#: gnu/packages/games.scm:12136 msgid "" "In the grand tradition of Marble Madness and Super Monkey Ball,\n" "Neverball has you guide a rolling ball through dangerous territory. Balance\n" @@ -5280,13 +5405,13 @@ msgid "" "game." msgstr "" -#: gnu/packages/games.scm:12210 +#: gnu/packages/games.scm:12212 msgid "" "With PokerTH you can play the Texas holdem poker game, either against\n" "computer opponents or against real players online." msgstr "" -#: gnu/packages/games.scm:12281 +#: gnu/packages/games.scm:12283 msgid "" "Xblackjack is a MOTIF/OLIT based tool constructed to get you ready for\n" "the casino. It was inspired by a book called \"Beat the Dealer\" by Edward\n" @@ -5295,13 +5420,13 @@ msgid "" "System\" (high-low system)." msgstr "" -#: gnu/packages/games.scm:12321 +#: gnu/packages/games.scm:12323 msgid "" "Pilot your ship inside a planet to find and rescue the colonists trapped\n" "inside the Zenith Colony." msgstr "" -#: gnu/packages/games.scm:12341 +#: gnu/packages/games.scm:12343 msgid "" "Provides a large set of Go-related services for X11:\n" "@itemize\n" @@ -5312,7 +5437,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:12401 +#: gnu/packages/games.scm:12403 msgid "" "Passage is meant to be a memento mori game. It presents an entire life,\n" "from young adulthood through old age and death, in the span of five minutes.\n" @@ -5321,21 +5446,21 @@ msgid "" "there's no right way to interpret it." msgstr "" -#: gnu/packages/games.scm:12435 +#: gnu/packages/games.scm:12437 msgid "" "High performance animated desktop background setter for\n" "X11 that won't set your CPU on fire, drain your laptop battery, or lower video\n" "game FPS." msgstr "" -#: gnu/packages/games.scm:12465 +#: gnu/packages/games.scm:12467 msgid "" "Curse of War is a fast-paced action strategy game originally\n" "implemented using ncurses user interface. An SDL graphical version is also\n" "available." msgstr "" -#: gnu/packages/games.scm:12496 +#: gnu/packages/games.scm:12498 msgid "" "Schiffbruch is a mix of building, strategy and adventure and gets played\n" "with a two-dimensional view. The game deals with the consequences of a ship\n" @@ -5344,13 +5469,13 @@ msgid "" "get attention, so you get found." msgstr "" -#: gnu/packages/games.scm:12556 +#: gnu/packages/games.scm:12558 msgid "" "This package provides port of Prince of Persia, based on the\n" "disassembly of the DOS version, extended with new features." msgstr "" -#: gnu/packages/games.scm:12587 +#: gnu/packages/games.scm:12589 #, scheme-format msgid "" "@code{fheroes2} is an implementation of Heroes of Might and\n" @@ -5446,7 +5571,7 @@ msgid "" "from Markdown files." msgstr "" -#: gnu/packages/gettext.scm:311 +#: gnu/packages/gettext.scm:304 msgid "" "The po4a (PO for anything) project goal is to ease translations (and\n" "more interestingly, the maintenance of translations) using gettext tools on\n" @@ -5529,18 +5654,18 @@ msgid "" "system. It was forked from the GNU Image Manipulation Program." msgstr "" -#: gnu/packages/gnome.scm:284 +#: gnu/packages/gnome.scm:288 msgid "GUPnP-IGD is a library to handle UPnP IGD port mapping." msgstr "" -#: gnu/packages/gnome.scm:340 +#: gnu/packages/gnome.scm:344 msgid "" "Brasero is an application to burn CD/DVD for the Gnome\n" "Desktop. It is designed to be as simple as possible and has some unique\n" "features to enable users to create their discs easily and quickly." msgstr "" -#: gnu/packages/gnome.scm:372 +#: gnu/packages/gnome.scm:376 msgid "" "Libcloudproviders is a DBus API that allows cloud storage sync\n" "clients to expose their services. Clients such as file managers and desktop\n" @@ -5548,19 +5673,19 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:444 +#: gnu/packages/gnome.scm:448 msgid "" "LibGRSS is a Glib abstraction to handle feeds in RSS, Atom,\n" "and other formats." msgstr "" -#: gnu/packages/gnome.scm:472 +#: gnu/packages/gnome.scm:476 msgid "" "GNOME-JS-Common provides common modules for GNOME JavaScript\n" "bindings." msgstr "" -#: gnu/packages/gnome.scm:555 +#: gnu/packages/gnome.scm:559 msgid "" "Seed is a library and interpreter, dynamically bridging\n" "(through GObjectIntrospection) the WebKit JavaScriptCore engine, with the\n" @@ -5569,21 +5694,21 @@ msgid "" "in JavaScript." msgstr "" -#: gnu/packages/gnome.scm:611 +#: gnu/packages/gnome.scm:615 msgid "" "Libdmapsharing is a library which allows programs to access,\n" "share and control the playback of media content using DMAP (DAAP, DPAP & DACP).\n" "It is written in C using GObject and libsoup." msgstr "" -#: gnu/packages/gnome.scm:644 +#: gnu/packages/gnome.scm:648 msgid "" "GTX is a small collection of convenience functions intended to\n" "enhance the GLib testing framework. With specific emphasis on easing the pain\n" "of writing test cases for asynchronous interactions." msgstr "" -#: gnu/packages/gnome.scm:721 +#: gnu/packages/gnome.scm:725 msgid "" "Dee is a library that uses DBus to provide objects allowing\n" "you to create Model-View-Controller type programs across DBus. It also consists\n" @@ -5591,7 +5716,7 @@ msgid "" "of known objects without needing a central registrar." msgstr "" -#: gnu/packages/gnome.scm:802 +#: gnu/packages/gnome.scm:806 msgid "" "Zeitgeist is a service which logs the users’s activities and\n" "events, anywhere from files opened to websites visited and conversations. It\n" @@ -5600,27 +5725,27 @@ msgid "" "patterns." msgstr "" -#: gnu/packages/gnome.scm:869 +#: gnu/packages/gnome.scm:871 msgid "" "GNOME Recipes helps you discover what to cook today,\n" "tomorrow, the rest of the week and for special occasions." msgstr "" -#: gnu/packages/gnome.scm:939 +#: gnu/packages/gnome.scm:940 msgid "" "GNOME Photos is a simple and elegant replacement for using a\n" "file manager to deal with photos. Enhance, crop and edit in a snap. Seamless\n" "cloud integration is offered through GNOME Online Accounts." msgstr "" -#: gnu/packages/gnome.scm:1007 +#: gnu/packages/gnome.scm:1008 msgid "" "GNOME Music is the new GNOME music playing application that\n" "aims to combine an elegant and immersive browsing experience with simple\n" "and straightforward controls." msgstr "" -#: gnu/packages/gnome.scm:1028 +#: gnu/packages/gnome.scm:1029 msgid "" "PortableXDR is an implementation of External Data\n" "Representation (XDR) Library. It is a standard data serialization format, for\n" @@ -5628,25 +5753,25 @@ msgid "" "between different kinds of computer systems." msgstr "" -#: gnu/packages/gnome.scm:1066 +#: gnu/packages/gnome.scm:1067 msgid "" "Tepl is a library that eases the development of\n" "GtkSourceView-based text editors and IDEs." msgstr "" -#: gnu/packages/gnome.scm:1107 +#: gnu/packages/gnome.scm:1108 msgid "" "krb5-auth-dialog is a simple dialog that monitors Kerberos\n" "tickets, and pops up a dialog when they are about to expire." msgstr "" -#: gnu/packages/gnome.scm:1132 +#: gnu/packages/gnome.scm:1133 msgid "" "Notification-Daemon is the server implementation of the\n" "freedesktop.org desktop notification specification." msgstr "" -#: gnu/packages/gnome.scm:1168 +#: gnu/packages/gnome.scm:1169 msgid "" "The mm-common module provides the build infrastructure\n" "and utilities shared among the GNOME C++ binding libraries. Release\n" @@ -5654,55 +5779,55 @@ msgid "" "Library reference documentation." msgstr "" -#: gnu/packages/gnome.scm:1214 +#: gnu/packages/gnome.scm:1215 msgid "" "PhoDav was initially developed as a file-sharing mechanism for Spice,\n" "but it is generic enough to be reused in other projects,\n" "in particular in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1267 +#: gnu/packages/gnome.scm:1268 msgid "" "GNOME Color Manager is a session framework that makes\n" "it easy to manage, install and generate color profiles\n" "in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1319 +#: gnu/packages/gnome.scm:1320 msgid "" "GNOME Online Miners provides a set of crawlers that\n" "go through your online content and index them locally in Tracker.\n" "It has miners for Facebook, Flickr, Google, ownCloud and SkyDrive." msgstr "" -#: gnu/packages/gnome.scm:1352 +#: gnu/packages/gnome.scm:1353 msgid "" "This package provides a library to handle resource discovery\n" "and announcement over @acronym{SSDP, Simple Service Discovery Protocol} and\n" "a debugging tool, @command{gssdp-device-sniffer}." msgstr "" -#: gnu/packages/gnome.scm:1391 +#: gnu/packages/gnome.scm:1392 msgid "" "This package provides GUPnP, an object-oriented framework\n" "for creating UPnP devices and control points, written in C using\n" "@code{GObject} and @code{libsoup}." msgstr "" -#: gnu/packages/gnome.scm:1423 +#: gnu/packages/gnome.scm:1424 msgid "" "This package provides a small utility library to\n" "support DLNA-related tasks such as media profile guessing, transcoding to a\n" "given profile, etc. DLNA is a subset of UPnP A/V." msgstr "" -#: gnu/packages/gnome.scm:1453 +#: gnu/packages/gnome.scm:1454 msgid "" "This package provides a small library for handling\n" "and implementation of UPnP A/V profiles." msgstr "" -#: gnu/packages/gnome.scm:1478 +#: gnu/packages/gnome.scm:1479 msgid "" "The libmediaart library is the foundation for media art caching,\n" "extraction, and lookup for applications on the desktop." @@ -5715,14 +5840,14 @@ msgid "" "tour of all gnome components and allows the user to set them up." msgstr "" -#: gnu/packages/gnome.scm:1584 +#: gnu/packages/gnome.scm:1583 msgid "" "GNOME User Share is a small package that binds together\n" "various free software projects to bring easy to use user-level file\n" "sharing to the masses." msgstr "" -#: gnu/packages/gnome.scm:1639 +#: gnu/packages/gnome.scm:1638 msgid "" "Sushi is a DBus-activated service that allows applications\n" "to preview files on the GNOME desktop." @@ -5774,7 +5899,7 @@ msgid "" "and system administrators." msgstr "" -#: gnu/packages/gnome.scm:1946 +#: gnu/packages/gnome.scm:1950 msgid "" "Dia can be used to draw different types of diagrams, and\n" "includes support for UML static structure diagrams (class diagrams), entity\n" @@ -5782,28 +5907,28 @@ msgid "" "formats like PNG, SVG, PDF and EPS." msgstr "" -#: gnu/packages/gnome.scm:1991 +#: gnu/packages/gnome.scm:1995 msgid "" "libgdata is a GLib-based library for accessing online service APIs using\n" "the GData protocol — most notably, Google's services. It provides APIs to\n" "access the common Google services, and has full asynchronous support." msgstr "" -#: gnu/packages/gnome.scm:2019 +#: gnu/packages/gnome.scm:2023 msgid "" "libgxps is a GObject-based library for handling and rendering XPS\n" "documents. This package also contains binaries that can convert XPS documents\n" "to other formats." msgstr "" -#: gnu/packages/gnome.scm:2060 +#: gnu/packages/gnome.scm:2063 msgid "" "Characters is a simple utility application to find\n" "and insert unusual characters. It allows you to quickly find the\n" "character you are looking for by searching for keywords." msgstr "" -#: gnu/packages/gnome.scm:2081 +#: gnu/packages/gnome.scm:2084 msgid "" "gnome-common contains various files needed to bootstrap\n" "GNOME modules built from Git. It contains a common \"autogen.sh\" script that\n" @@ -5811,13 +5936,13 @@ msgid "" "commonly used macros." msgstr "" -#: gnu/packages/gnome.scm:2142 +#: gnu/packages/gnome.scm:2145 msgid "" "GNOME Contacts organizes your contact information from online and\n" "offline sources, providing a centralized place for managing your contacts." msgstr "" -#: gnu/packages/gnome.scm:2222 +#: gnu/packages/gnome.scm:2225 msgid "" "The libgnome-desktop library provides API shared by several applications\n" "on the desktop, but that cannot live in the platform for various reasons.\n" @@ -5827,40 +5952,40 @@ msgid "" "The gnome-about program helps find which version of GNOME is installed." msgstr "" -#: gnu/packages/gnome.scm:2257 +#: gnu/packages/gnome.scm:2260 msgid "" "Gnome-doc-utils is a collection of documentation utilities for the\n" "Gnome project. It includes xml2po tool which makes it easier to translate\n" "and keep up to date translations of documentation." msgstr "" -#: gnu/packages/gnome.scm:2309 +#: gnu/packages/gnome.scm:2311 msgid "Disk management utility for GNOME." msgstr "" -#: gnu/packages/gnome.scm:2352 +#: gnu/packages/gnome.scm:2353 msgid "" "Application to show you the fonts installed on your computer\n" "for your use as thumbnails. Selecting any thumbnails shows the full view of how\n" "the font would look under various sizes." msgstr "" -#: gnu/packages/gnome.scm:2420 +#: gnu/packages/gnome.scm:2421 msgid "" "The GCR package contains libraries used for displaying certificates and\n" "accessing key stores. It also provides the viewer for crypto files on the\n" "GNOME Desktop." msgstr "" -#: gnu/packages/gnome.scm:2459 +#: gnu/packages/gnome.scm:2460 msgid "This library provides docking features for gtk+." msgstr "" -#: gnu/packages/gnome.scm:2505 +#: gnu/packages/gnome.scm:2506 msgid "Client library to access passwords from the GNOME keyring." msgstr "" -#: gnu/packages/gnome.scm:2575 +#: gnu/packages/gnome.scm:2576 msgid "" "gnome-keyring is a program that keeps passwords and other secrets for\n" "users. It is run as a daemon in the session, similar to ssh-agent, and other\n" @@ -5879,13 +6004,13 @@ msgid "" "on the GNOME Desktop with a single simple application." msgstr "" -#: gnu/packages/gnome.scm:2693 +#: gnu/packages/gnome.scm:2692 msgid "" "Gsettings-desktop-schemas contains a collection of GSettings\n" "schemas for settings shared by various components of the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:2729 +#: gnu/packages/gnome.scm:2728 msgid "" "Liblarch is a Python library built to easily handle data structures such\n" "as lists, trees and acyclic graphs. There's also a GTK binding that will\n" @@ -5896,7 +6021,7 @@ msgid "" "and how they are displayed (View)." msgstr "" -#: gnu/packages/gnome.scm:2790 +#: gnu/packages/gnome.scm:2789 msgid "" "Getting Things GNOME! (GTG) is a personal tasks and TODO list items\n" "organizer for the GNOME desktop environment inspired by the Getting Things\n" @@ -5906,24 +6031,24 @@ msgid "" "know, from small tasks to large projects." msgstr "" -#: gnu/packages/gnome.scm:2829 +#: gnu/packages/gnome.scm:2828 msgid "" "To help with the transition to the Freedesktop Icon Naming\n" "Specification, the icon naming utility maps the icon names used by the\n" "GNOME and KDE desktops to the icon names proposed in the specification." msgstr "" -#: gnu/packages/gnome.scm:2858 +#: gnu/packages/gnome.scm:2857 msgid "Icons for the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:2897 +#: gnu/packages/gnome.scm:2896 msgid "" "This is an icon theme that follows the Tango visual\n" "guidelines." msgstr "" -#: gnu/packages/gnome.scm:2927 +#: gnu/packages/gnome.scm:2926 msgid "" "The shared-mime-info package contains the core database of common types\n" "and the update-mime-database command used to extend it. It requires glib2 to\n" @@ -5932,18 +6057,18 @@ msgid "" "database is translated at Transifex." msgstr "" -#: gnu/packages/gnome.scm:3012 +#: gnu/packages/gnome.scm:3011 msgid "" "system-config-printer is a CUPS administration tool. It's written in\n" "Python using GTK+, and uses the @acronym{IPP, Internet Printing Protocol} when\n" "configuring CUPS." msgstr "" -#: gnu/packages/gnome.scm:3036 +#: gnu/packages/gnome.scm:3035 msgid "Freedesktop icon theme." msgstr "" -#: gnu/packages/gnome.scm:3085 +#: gnu/packages/gnome.scm:3084 msgid "" "Libnotify is a library that sends desktop notifications to a\n" "notification daemon, as defined in the Desktop Notifications spec. These\n" @@ -5951,7 +6076,7 @@ msgid "" "some form of information without getting in the user's way." msgstr "" -#: gnu/packages/gnome.scm:3132 +#: gnu/packages/gnome.scm:3131 msgid "" "Libpeas is a gobject-based plugin engine, targeted at giving every\n" "application the chance to assume its own extensibility. It also has a set of\n" @@ -5960,21 +6085,21 @@ msgid "" "API." msgstr "" -#: gnu/packages/gnome.scm:3168 +#: gnu/packages/gnome.scm:3167 msgid "" "GtkGLExt is an OpenGL extension to GTK+. It provides\n" "additional GDK objects which support OpenGL rendering in GTK+ and GtkWidget\n" "API add-ons to make GTK+ widgets OpenGL-capable." msgstr "" -#: gnu/packages/gnome.scm:3248 +#: gnu/packages/gnome.scm:3247 msgid "" "Glade is a rapid application development (RAD) tool to\n" "enable quick & easy development of user interfaces for the GTK+ toolkit and\n" "the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:3280 +#: gnu/packages/gnome.scm:3279 msgid "" "Libcroco is a standalone CSS2 parsing and manipulation library.\n" "The parser provides a low level event driven SAC-like API and a CSS object\n" @@ -5982,13 +6107,13 @@ msgid "" "XML/CSS rendering engine." msgstr "" -#: gnu/packages/gnome.scm:3347 +#: gnu/packages/gnome.scm:3346 msgid "" "Libgsf aims to provide an efficient extensible I/O abstraction\n" "for dealing with different structured file formats." msgstr "" -#: gnu/packages/gnome.scm:3526 +#: gnu/packages/gnome.scm:3525 msgid "" "Librsvg is a library to render SVG images to Cairo surfaces.\n" "GNOME uses this to render SVG icons. Outside of GNOME, other desktop\n" @@ -5996,7 +6121,7 @@ msgid "" "diagrams." msgstr "" -#: gnu/packages/gnome.scm:3649 +#: gnu/packages/gnome.scm:3648 msgid "" "Libidl is a library for creating trees of CORBA Interface\n" "Definition Language (idl) files, which is a specification for defining\n" @@ -6005,82 +6130,82 @@ msgid "" "functionality was designed to be as reusable and portable as possible." msgstr "" -#: gnu/packages/gnome.scm:3704 +#: gnu/packages/gnome.scm:3703 msgid "" "ORBit2 is a CORBA 2.4-compliant Object Request Broker (orb)\n" "featuring mature C, C++ and Python bindings." msgstr "" -#: gnu/packages/gnome.scm:3758 +#: gnu/packages/gnome.scm:3757 msgid "" "Bonobo is a framework for creating reusable components for\n" "use in GNOME applications, built on top of CORBA." msgstr "" -#: gnu/packages/gnome.scm:3789 +#: gnu/packages/gnome.scm:3788 msgid "" "Gconf is a system for storing application preferences. It\n" "is intended for user preferences; not arbitrary data storage." msgstr "" -#: gnu/packages/gnome.scm:3823 +#: gnu/packages/gnome.scm:3822 msgid "" "GNOME Mime Data is a module which contains the base MIME\n" "and Application database for GNOME. The data stored by this module is\n" "designed to be accessed through the MIME functions in GnomeVFS." msgstr "" -#: gnu/packages/gnome.scm:3863 +#: gnu/packages/gnome.scm:3862 msgid "" "GnomeVFS is the core library used to access files and folders in GNOME\n" "applications. It provides a file system abstraction which allows applications\n" "to access local and remote files with a single consistent API." msgstr "" -#: gnu/packages/gnome.scm:3904 +#: gnu/packages/gnome.scm:3903 msgid "" "The libgnome library provides a number of useful routines\n" "for building modern applications, including session management, activation of\n" "files and URIs, and displaying help." msgstr "" -#: gnu/packages/gnome.scm:3928 +#: gnu/packages/gnome.scm:3927 msgid "" "Libart is a 2D drawing library intended as a\n" "high-quality vector-based 2D library with antialiasing and alpha composition." msgstr "" -#: gnu/packages/gnome.scm:3955 +#: gnu/packages/gnome.scm:3954 msgid "" "The GnomeCanvas widget provides a flexible widget for\n" "creating interactive structured graphics." msgstr "" -#: gnu/packages/gnome.scm:3977 +#: gnu/packages/gnome.scm:3976 msgid "C++ bindings to the GNOME Canvas library." msgstr "" -#: gnu/packages/gnome.scm:4003 +#: gnu/packages/gnome.scm:4002 msgid "" "The libgnomeui library provides additional widgets for\n" "applications. Many of the widgets from libgnomeui have already been\n" "ported to GTK+." msgstr "" -#: gnu/packages/gnome.scm:4029 +#: gnu/packages/gnome.scm:4028 msgid "" "Libglade is a library that provides interfaces for loading\n" "graphical interfaces described in glade files and for accessing the\n" "widgets built in the loading process." msgstr "" -#: gnu/packages/gnome.scm:4071 +#: gnu/packages/gnome.scm:4070 msgid "" "The Bonobo UI library provides a number of user interface\n" "controls using the Bonobo component framework." msgstr "" -#: gnu/packages/gnome.scm:4098 +#: gnu/packages/gnome.scm:4097 msgid "" "Libwnck is the Window Navigator Construction Kit, a library for use in\n" "writing pagers, tasklists, and more generally applications that are dealing\n" @@ -6088,11 +6213,11 @@ msgid "" "Hints specification (EWMH)." msgstr "" -#: gnu/packages/gnome.scm:4148 +#: gnu/packages/gnome.scm:4147 msgid "A GLib/GTK+ set of document-centric objects and utilities." msgstr "" -#: gnu/packages/gnome.scm:4234 +#: gnu/packages/gnome.scm:4233 msgid "" "GNUmeric is a GNU spreadsheet application, running under GNOME. It is\n" "interoperable with other spreadsheet applications. It has a vast array of\n" @@ -6101,11 +6226,11 @@ msgid "" "engineering." msgstr "" -#: gnu/packages/gnome.scm:4290 +#: gnu/packages/gnome.scm:4289 msgid "Drawing is a basic image editor aiming at the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:4326 +#: gnu/packages/gnome.scm:4325 msgid "The default GNOME 3 themes (Adwaita and some accessibility themes)." msgstr "" @@ -6124,7 +6249,7 @@ msgid "" "targeting the GNOME stack simple." msgstr "" -#: gnu/packages/gnome.scm:4481 +#: gnu/packages/gnome.scm:4482 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, and a minimal sample application (vte) using that. Vte is mainly used in\n" @@ -6132,34 +6257,34 @@ msgid "" "editors, IDEs, etc." msgstr "" -#: gnu/packages/gnome.scm:4505 +#: gnu/packages/gnome.scm:4506 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, this fork provides additional functions exposed for keyboard text\n" "selection and URL hints." msgstr "" -#: gnu/packages/gnome.scm:4585 +#: gnu/packages/gnome.scm:4586 msgid "" "Vinagre is a remote display client supporting the VNC, SPICE\n" "and RDP protocols." msgstr "" -#: gnu/packages/gnome.scm:4631 +#: gnu/packages/gnome.scm:4633 msgid "" "Dconf is a low-level configuration system. Its main purpose\n" "is to provide a backend to GSettings on platforms that don't already have\n" "configuration storage systems." msgstr "" -#: gnu/packages/gnome.scm:4661 +#: gnu/packages/gnome.scm:4663 msgid "" "JSON-GLib is a library providing serialization and\n" "described by RFC 4627. It implements a full JSON parser and generator using\n" "GLib and GObject, and integrates JSON with GLib data types." msgstr "" -#: gnu/packages/gnome.scm:4760 +#: gnu/packages/gnome.scm:4762 msgid "" "LibXklavier is a library providing high-level API for X Keyboard\n" "Extension known as XKB. This library is intended to support XFree86 and other\n" @@ -6167,13 +6292,13 @@ msgid "" "indicators etc)." msgstr "" -#: gnu/packages/gnome.scm:4788 +#: gnu/packages/gnome.scm:4790 msgid "" "This package provides Python bindings to librsvg, the SVG rendering\n" "library." msgstr "" -#: gnu/packages/gnome.scm:4829 +#: gnu/packages/gnome.scm:4831 msgid "" "Glib-networking contains the implementations of certain GLib networking\n" "features that cannot be implemented directly in GLib itself because of their\n" @@ -6183,26 +6308,26 @@ msgid "" "from the GSettings schemas in gsettings-desktop-schemas." msgstr "" -#: gnu/packages/gnome.scm:4866 +#: gnu/packages/gnome.scm:4868 msgid "" "This library was designed to make it easier to access web services that\n" "claim to be \"RESTful\". It includes convenience wrappers for libsoup and\n" "libxml to ease remote use of the RESTful API." msgstr "" -#: gnu/packages/gnome.scm:4931 +#: gnu/packages/gnome.scm:4933 msgid "" "LibSoup is an HTTP client/server library for GNOME. It uses GObjects\n" "and the GLib main loop, to integrate well with GNOME applications." msgstr "" -#: gnu/packages/gnome.scm:5035 +#: gnu/packages/gnome.scm:5037 msgid "" "Libsecret is a GObject based library for storing and retrieving passwords\n" "and other secrets. It communicates with the \"Secret Service\" using DBus." msgstr "" -#: gnu/packages/gnome.scm:5074 +#: gnu/packages/gnome.scm:5076 msgid "" "Five or More is a game where you try to align\n" " five or more objects of the same color and shape causing them to disappear.\n" @@ -6210,19 +6335,19 @@ msgid "" " Try to last as long as possible." msgstr "" -#: gnu/packages/gnome.scm:5116 +#: gnu/packages/gnome.scm:5118 msgid "" "Mines (previously gnomine) is a puzzle game where you locate mines\n" "floating in an ocean using only your brain and a little bit of luck." msgstr "" -#: gnu/packages/gnome.scm:5157 +#: gnu/packages/gnome.scm:5159 msgid "" "MultiWriter can be used to write an ISO file to multiple USB devices at\n" "once." msgstr "" -#: gnu/packages/gnome.scm:5197 +#: gnu/packages/gnome.scm:5198 msgid "" "Sudoku is a Japanese logic game that exploded in popularity in 2005.\n" "GNOME Sudoku is meant to have an interface as simple and unobstrusive as\n" @@ -6230,7 +6355,7 @@ msgid "" "more fun." msgstr "" -#: gnu/packages/gnome.scm:5247 +#: gnu/packages/gnome.scm:5248 msgid "" "GNOME Terminal is a terminal emulator application for accessing a\n" "UNIX shell environment which can be used to run programs available on\n" @@ -6240,14 +6365,14 @@ msgid "" "keyboard shortcuts." msgstr "" -#: gnu/packages/gnome.scm:5319 +#: gnu/packages/gnome.scm:5320 msgid "" "Colord is a system service that makes it easy to manage,\n" "install and generate color profiles to accurately color manage input and\n" "output devices." msgstr "" -#: gnu/packages/gnome.scm:5390 +#: gnu/packages/gnome.scm:5391 msgid "" "Geoclue is a D-Bus service that provides location\n" "information. The primary goal of the Geoclue project is to make creating\n" @@ -6256,7 +6381,7 @@ msgid "" "permission from user." msgstr "" -#: gnu/packages/gnome.scm:5434 +#: gnu/packages/gnome.scm:5435 msgid "" "geocode-glib is a convenience library for geocoding (finding longitude,\n" "and latitude from an address) and reverse geocoding (finding an address from\n" @@ -6264,7 +6389,7 @@ msgid "" "faster results and to avoid unnecessary server load." msgstr "" -#: gnu/packages/gnome.scm:5510 +#: gnu/packages/gnome.scm:5511 msgid "" "UPower is an abstraction for enumerating power devices,\n" "listening to device events and querying history and statistics. Any\n" @@ -6272,13 +6397,13 @@ msgid "" "service via the system message bus." msgstr "" -#: gnu/packages/gnome.scm:5555 +#: gnu/packages/gnome.scm:5557 msgid "" "libgweather is a library to access weather information from online\n" "services for numerous locations." msgstr "" -#: gnu/packages/gnome.scm:5639 +#: gnu/packages/gnome.scm:5640 msgid "" "This package contains the daemon responsible for setting the various\n" "parameters of a GNOME session and the applications that run under it. It\n" @@ -6286,19 +6411,19 @@ msgid "" "settings, themes, mouse settings, and startup of other daemons." msgstr "" -#: gnu/packages/gnome.scm:5670 +#: gnu/packages/gnome.scm:5671 msgid "" "Totem-pl-parser is a GObjects-based library to parse and save\n" "playlists in a variety of formats." msgstr "" -#: gnu/packages/gnome.scm:5703 +#: gnu/packages/gnome.scm:5704 msgid "" "Aisleriot (also known as Solitaire or sol) is a collection of card games\n" "which are easy to play with the aid of a mouse." msgstr "" -#: gnu/packages/gnome.scm:5729 +#: gnu/packages/gnome.scm:5730 msgid "" "Amtk is the acronym for @acronym{Amtk, Actions Menus and Toolbars Kit}.\n" "It is a basic GtkUIManager replacement based on GAction. It is suitable for\n" @@ -6377,13 +6502,13 @@ msgid "" "discovery protocols." msgstr "" -#: gnu/packages/gnome.scm:6324 +#: gnu/packages/gnome.scm:6323 msgid "" "Totem is a simple yet featureful media player for GNOME\n" "which can read a large number of file formats." msgstr "" -#: gnu/packages/gnome.scm:6415 +#: gnu/packages/gnome.scm:6414 msgid "" "Rhythmbox is a music playing application for GNOME. It\n" "supports playlists, song ratings, and any codecs installed through gstreamer." @@ -6414,7 +6539,7 @@ msgid "" "part of udev-extras, then udev, then systemd. It's now a project on its own." msgstr "" -#: gnu/packages/gnome.scm:6611 +#: gnu/packages/gnome.scm:6610 msgid "" "GVFS is a userspace virtual file system designed to work with the I/O\n" "abstraction of GIO. It contains a GIO module that seamlessly adds GVFS\n" @@ -6425,7 +6550,7 @@ msgid "" "DAV, and others." msgstr "" -#: gnu/packages/gnome.scm:6652 +#: gnu/packages/gnome.scm:6651 msgid "" "GUsb is a GObject wrapper for libusb1 that makes it easy to do\n" "asynchronous control, bulk and interrupt transfers with proper cancellation\n" @@ -6433,7 +6558,7 @@ msgid "" "USB transfers with your high-level application or system daemon." msgstr "" -#: gnu/packages/gnome.scm:6706 +#: gnu/packages/gnome.scm:6705 msgid "" "Document Scanner is an easy-to-use application that lets you connect your\n" "scanner and quickly capture images and documents in an appropriate format. It\n" @@ -6441,25 +6566,25 @@ msgid "" "almost all of them." msgstr "" -#: gnu/packages/gnome.scm:6778 +#: gnu/packages/gnome.scm:6777 msgid "" "Eolie is a new web browser for GNOME. It features Firefox sync support,\n" "a secret password store, an adblocker, and a modern UI." msgstr "" -#: gnu/packages/gnome.scm:6855 +#: gnu/packages/gnome.scm:6854 msgid "" "Epiphany is a GNOME web browser targeted at non-technical users. Its\n" "principles are simplicity and standards compliance." msgstr "" -#: gnu/packages/gnome.scm:6914 +#: gnu/packages/gnome.scm:6913 msgid "" "D-Feet is a D-Bus debugger, which can be used to inspect D-Bus interfaces\n" "of running programs and invoke methods on those interfaces." msgstr "" -#: gnu/packages/gnome.scm:6944 +#: gnu/packages/gnome.scm:6943 msgid "" "Yelp-XSL is a collection of programs and data files to help\n" "you build, maintain, and distribute documentation. It provides XSLT stylesheets\n" @@ -6469,14 +6594,14 @@ msgid "" "jQuery.Syntax JavaScript libraries." msgstr "" -#: gnu/packages/gnome.scm:6983 +#: gnu/packages/gnome.scm:6982 msgid "" "Yelp is the help viewer in Gnome. It natively views Mallard, DocBook,\n" "man, info, and HTML documents. It can locate documents according to the\n" "freedesktop.org help system specification." msgstr "" -#: gnu/packages/gnome.scm:7013 +#: gnu/packages/gnome.scm:7012 msgid "" "Yelp-tools is a collection of scripts and build utilities to help create,\n" "manage, and publish documentation for Yelp and the web. Most of the heavy\n" @@ -6484,13 +6609,13 @@ msgid "" "wraps things up in a developer-friendly way." msgstr "" -#: gnu/packages/gnome.scm:7051 +#: gnu/packages/gnome.scm:7050 msgid "" "Libgee is a utility library providing GObject-based interfaces and\n" "classes for commonly used data structures." msgstr "" -#: gnu/packages/gnome.scm:7079 +#: gnu/packages/gnome.scm:7078 msgid "" "Gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. It\n" "allows for GNOME applications to easily inspect and update EXIF, IPTC, and XMP\n" @@ -6505,7 +6630,7 @@ msgid "" "share them with others via social networking and more." msgstr "" -#: gnu/packages/gnome.scm:7168 +#: gnu/packages/gnome.scm:7169 msgid "" "File Roller is an archive manager for the GNOME desktop\n" "environment that allows users to view, unpack, and create compressed archives\n" @@ -6518,25 +6643,25 @@ msgid "" "configuration program to choose applications starting on login." msgstr "" -#: gnu/packages/gnome.scm:7284 +#: gnu/packages/gnome.scm:7287 msgid "" "Gjs is a javascript binding for GNOME. It's mainly based on spidermonkey\n" "javascript engine and the GObject introspection framework." msgstr "" -#: gnu/packages/gnome.scm:7381 +#: gnu/packages/gnome.scm:7383 msgid "" "While aiming at simplicity and ease of use, gedit is a\n" "powerful general purpose text editor." msgstr "" -#: gnu/packages/gnome.scm:7405 +#: gnu/packages/gnome.scm:7407 msgid "" "Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you\n" "to display dialog boxes from the commandline and shell scripts." msgstr "" -#: gnu/packages/gnome.scm:7595 +#: gnu/packages/gnome.scm:7598 msgid "" "Mutter is a window and compositing manager that displays and manages your\n" "desktop via OpenGL. Mutter combines a sophisticated display engine using the\n" @@ -6544,7 +6669,7 @@ msgid "" "window manager." msgstr "" -#: gnu/packages/gnome.scm:7653 +#: gnu/packages/gnome.scm:7656 msgid "" "GNOME Online Accounts provides interfaces so that applications and\n" "libraries in GNOME can access the user's online accounts. It has providers\n" @@ -6552,20 +6677,20 @@ msgid "" "Microsoft Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos." msgstr "" -#: gnu/packages/gnome.scm:7740 +#: gnu/packages/gnome.scm:7743 msgid "" "This package provides a unified backend for programs that work with\n" "contacts, tasks, and calendar information. It was originally developed for\n" "Evolution (hence the name), but is now used by other packages as well." msgstr "" -#: gnu/packages/gnome.scm:7803 +#: gnu/packages/gnome.scm:7806 msgid "" "Caribou is an input assistive technology intended for switch and pointer\n" "users." msgstr "" -#: gnu/packages/gnome.scm:7953 +#: gnu/packages/gnome.scm:7958 msgid "" "NetworkManager is a system network service that manages your network\n" "devices and connections, attempting to keep active network connectivity when\n" @@ -6574,36 +6699,36 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:8009 +#: gnu/packages/gnome.scm:8014 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to virtual private networks (VPNs) via OpenVPN." msgstr "" -#: gnu/packages/gnome.scm:8059 +#: gnu/packages/gnome.scm:8064 msgid "" "Support for configuring virtual private networks based on VPNC.\n" "Compatible with Cisco VPN concentrators configured to use IPsec." msgstr "" -#: gnu/packages/gnome.scm:8106 +#: gnu/packages/gnome.scm:8111 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to @acronym{VPNs, virtual private networks} via OpenConnect, an open client for\n" "Cisco's AnyConnect SSL VPN." msgstr "" -#: gnu/packages/gnome.scm:8135 +#: gnu/packages/gnome.scm:8140 msgid "Database of broadband connection configuration." msgstr "" -#: gnu/packages/gnome.scm:8179 +#: gnu/packages/gnome.scm:8183 msgid "" "This package contains a systray applet for NetworkManager. It displays\n" "the available networks and allows users to easily switch between them." msgstr "" -#: gnu/packages/gnome.scm:8234 +#: gnu/packages/gnome.scm:8238 #, fuzzy #| msgid "" #| "This package provides a dictionary for the Hunspell spell-checking\n" @@ -6615,25 +6740,25 @@ msgstr "" "Aqueste paquet provesís un diccionari per la bibliotèca del\n" "corrector ortografic Hunspell." -#: gnu/packages/gnome.scm:8466 +#: gnu/packages/gnome.scm:8470 msgid "" "GNOME Display Manager is a system service that is responsible for\n" "providing graphical log-ins and managing local and remote displays." msgstr "" -#: gnu/packages/gnome.scm:8490 +#: gnu/packages/gnome.scm:8494 msgid "" "LibGTop is a library to get system specific data such as CPU and memory\n" "usage and information about running processes." msgstr "" -#: gnu/packages/gnome.scm:8525 +#: gnu/packages/gnome.scm:8528 msgid "" "This package contains tools for managing and manipulating Bluetooth\n" "devices using the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:8636 +#: gnu/packages/gnome.scm:8646 msgid "" "This package contains configuration applets for the GNOME desktop,\n" "allowing to set accessibility configuration, desktop fonts, keyboard and mouse\n" @@ -6641,13 +6766,13 @@ msgid "" "properties, screen resolution, and other GNOME parameters." msgstr "" -#: gnu/packages/gnome.scm:8802 +#: gnu/packages/gnome.scm:8811 msgid "" "GNOME Shell provides core user interface functions for the GNOME desktop,\n" "like switching to windows and launching applications." msgstr "" -#: gnu/packages/gnome.scm:8845 +#: gnu/packages/gnome.scm:8858 msgid "" "GTK-VNC is a project providing client side APIs for the RFB\n" "protocol / VNC remote desktop technology. It is built using coroutines allowing\n" @@ -6655,13 +6780,13 @@ msgid "" "core C library, and bindings for Python (PyGTK)." msgstr "" -#: gnu/packages/gnome.scm:8875 +#: gnu/packages/gnome.scm:8888 msgid "" "GNOME Autoar is a library which makes creating and extracting archives\n" "easy, safe, and automatic." msgstr "" -#: gnu/packages/gnome.scm:8945 +#: gnu/packages/gnome.scm:8959 msgid "" "Tracker is a search engine and triplestore for desktop, embedded and mobile.\n" "\n" @@ -6684,21 +6809,21 @@ msgid "" "endpoint and it understands SPARQL." msgstr "" -#: gnu/packages/gnome.scm:9074 +#: gnu/packages/gnome.scm:9088 msgid "" "Tracker is an advanced framework for first class objects with associated\n" "metadata and tags. It provides a one stop solution for all metadata, tags,\n" "shared object databases, search tools and indexing." msgstr "" -#: gnu/packages/gnome.scm:9167 +#: gnu/packages/gnome.scm:9185 msgid "" "Nautilus (Files) is a file manager designed to fit the GNOME desktop\n" "design and behaviour, giving the user a simple way to navigate and manage its\n" "files." msgstr "" -#: gnu/packages/gnome.scm:9201 +#: gnu/packages/gnome.scm:9220 msgid "" "Baobab (Disk Usage Analyzer) is a graphical application to analyse disk\n" "usage in the GNOME desktop environment. It can easily scan device volumes or\n" @@ -6706,7 +6831,7 @@ msgid "" "is complete it provides a graphical representation of each selected folder." msgstr "" -#: gnu/packages/gnome.scm:9227 +#: gnu/packages/gnome.scm:9245 msgid "" "GNOME backgrounds package contains a collection of graphics files which\n" "can be used as backgrounds in the GNOME Desktop environment. Additionally,\n" @@ -6714,21 +6839,21 @@ msgid "" "can add your own files to the collection." msgstr "" -#: gnu/packages/gnome.scm:9272 +#: gnu/packages/gnome.scm:9290 msgid "" "GNOME Screenshot is a utility used for taking screenshots of the entire\n" "screen, a window or a user defined area of the screen, with optional\n" "beautifying border effects." msgstr "" -#: gnu/packages/gnome.scm:9304 +#: gnu/packages/gnome.scm:9320 msgid "" "Dconf-editor is a graphical tool for browsing and editing the dconf\n" "configuration system for GNOME. It allows users to configure desktop\n" "software that do not provide their own configuration interface." msgstr "" -#: gnu/packages/gnome.scm:9334 +#: gnu/packages/gnome.scm:9350 msgid "" "Given many installed packages which might handle a given MIME type, a\n" "user running the GNOME desktop probably has some preferences: for example,\n" @@ -6737,32 +6862,32 @@ msgid "" "associations for GNOME." msgstr "" -#: gnu/packages/gnome.scm:9366 +#: gnu/packages/gnome.scm:9382 msgid "GoVirt is a GObject wrapper for the oVirt REST API." msgstr "" -#: gnu/packages/gnome.scm:9424 +#: gnu/packages/gnome.scm:9439 msgid "" "GNOME Weather is a small application that allows you to\n" "monitor the current weather conditions for your city, or anywhere in the\n" "world." msgstr "" -#: gnu/packages/gnome.scm:9528 +#: gnu/packages/gnome.scm:9543 msgid "" "GNOME is the graphical desktop for GNU. It includes a wide variety of\n" "applications for browsing the web, editing text and images, creating\n" "documents and diagrams, playing media, scanning, and much more." msgstr "" -#: gnu/packages/gnome.scm:9574 +#: gnu/packages/gnome.scm:9589 msgid "" "Byzanz is a simple desktop recording program with a\n" "command-line interface. It can record part or all of an X display for a\n" "specified duration and save it as a GIF encoded animated image file." msgstr "" -#: gnu/packages/gnome.scm:9634 +#: gnu/packages/gnome.scm:9651 msgid "" "Authenticator is a two-factor authentication (2FA) application built for\n" "the GNOME desktop environment.\n" @@ -6779,44 +6904,44 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/gnome.scm:9669 +#: gnu/packages/gnome.scm:9686 msgid "" "GSound is a small library for playing system sounds. It's designed to be\n" "used via GObject Introspection, and is a thin wrapper around the libcanberra C\n" "library." msgstr "" -#: gnu/packages/gnome.scm:9694 +#: gnu/packages/gnome.scm:9711 msgid "" "Libzapojit is a GLib-based library for accessing online service APIs of\n" "Microsoft SkyDrive and Hotmail, using their REST protocols." msgstr "" -#: gnu/packages/gnome.scm:9739 +#: gnu/packages/gnome.scm:9756 msgid "" "GNOME Clocks is a simple clocks application designed to fit the GNOME\n" "desktop. It supports world clock, stop watch, alarms, and count down timer." msgstr "" -#: gnu/packages/gnome.scm:9787 +#: gnu/packages/gnome.scm:9803 msgid "" "GNOME Calendar is a simple calendar application designed to fit the GNOME\n" "desktop. It supports multiple calendars, month, week and year view." msgstr "" -#: gnu/packages/gnome.scm:9838 +#: gnu/packages/gnome.scm:9860 msgid "" -"GNOME To Do is a simplistic personal task manager designed to perfectly\n" -"fit the GNOME desktop." +"GNOME To Do is a simplistic personal task manager designed\n" +"to perfectly fit the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:9877 +#: gnu/packages/gnome.scm:9899 msgid "" "GNOME Dictionary can look for the definition or translation of a word in\n" "existing databases over the internet." msgstr "" -#: gnu/packages/gnome.scm:9943 +#: gnu/packages/gnome.scm:9964 msgid "" "GNOME Tweaks allows adjusting advanced configuration settings in\n" "GNOME 3. This includes things like the fonts used in user interface elements,\n" @@ -6824,13 +6949,13 @@ msgid "" "GNOME Shell appearance and extension, etc." msgstr "" -#: gnu/packages/gnome.scm:9971 +#: gnu/packages/gnome.scm:9992 msgid "" "GNOME Shell extensions modify and extend GNOME Shell\n" "functionality and behavior." msgstr "" -#: gnu/packages/gnome.scm:10015 +#: gnu/packages/gnome.scm:10036 msgid "" "Libfolks is a library that aggregates information about people\n" "from multiple sources (e.g., Telepathy connection managers for IM contacts,\n" @@ -6839,19 +6964,19 @@ msgid "" "compiled." msgstr "" -#: gnu/packages/gnome.scm:10056 +#: gnu/packages/gnome.scm:10077 msgid "" "This library allows you to use the Facebook API from\n" "GLib/GObject code." msgstr "" -#: gnu/packages/gnome.scm:10083 +#: gnu/packages/gnome.scm:10104 msgid "" "Libgnomekbd is a keyboard configuration library for the GNOME desktop\n" "environment, which can notably display keyboard layouts." msgstr "" -#: gnu/packages/gnome.scm:10119 +#: gnu/packages/gnome.scm:10140 msgid "" "Libunique is a library for writing single instance applications. If you\n" "launch a single instance application twice, the second instance will either just\n" @@ -6861,20 +6986,20 @@ msgid "" "handling the startup notification side." msgstr "" -#: gnu/packages/gnome.scm:10168 +#: gnu/packages/gnome.scm:10190 msgid "" "Calculator is an application that solves mathematical equations and\n" "is suitable as a default application in a Desktop environment." msgstr "" -#: gnu/packages/gnome.scm:10194 +#: gnu/packages/gnome.scm:10216 msgid "" "Xpad is a sticky note that strives to be simple, fault tolerant,\n" "and customizable. Xpad consists of independent pad windows, each is\n" "basically a text box in which notes can be written." msgstr "" -#: gnu/packages/gnome.scm:10267 +#: gnu/packages/gnome.scm:10289 msgid "" "This program allows you to browse through all the available Unicode\n" "characters and categories for the installed fonts, and to examine their\n" @@ -6882,20 +7007,20 @@ msgid "" "only know by its Unicode name or code point." msgstr "" -#: gnu/packages/gnome.scm:10299 +#: gnu/packages/gnome.scm:10321 msgid "" "Color Picker is a simple color chooser written in GTK3. It\n" "supports both X and Wayland display servers." msgstr "" -#: gnu/packages/gnome.scm:10322 +#: gnu/packages/gnome.scm:10344 msgid "" "Bluefish is an editor aimed at programmers and web developers,\n" "with many options to write web sites, scripts and other code.\n" "Bluefish supports many programming and markup languages." msgstr "" -#: gnu/packages/gnome.scm:10363 +#: gnu/packages/gnome.scm:10385 msgid "" "GNOME System Monitor is a GNOME process viewer and system monitor with\n" "an attractive, easy-to-use interface. It has features, such as a tree view\n" @@ -6904,27 +7029,27 @@ msgid "" "kill/reinice processes." msgstr "" -#: gnu/packages/gnome.scm:10405 +#: gnu/packages/gnome.scm:10427 msgid "" "This package includes a python client library for the AT-SPI D-Bus\n" "accessibility infrastructure." msgstr "" -#: gnu/packages/gnome.scm:10475 +#: gnu/packages/gnome.scm:10495 msgid "" "Orca is a screen reader that provides access to the graphical desktop\n" "via speech and refreshable braille. Orca works with applications and toolkits\n" "that support the Assistive Technology Service Provider Interface (AT-SPI)." msgstr "" -#: gnu/packages/gnome.scm:10529 +#: gnu/packages/gnome.scm:10549 msgid "" "gspell provides a flexible API to add spell-checking to a GTK+\n" "application. It provides a GObject API, spell-checking to text entries and\n" "text views, and buttons to choose the language." msgstr "" -#: gnu/packages/gnome.scm:10571 +#: gnu/packages/gnome.scm:10591 msgid "" "GNOME Planner is a project management tool based on the Work Breakdown\n" "Structure (WBS). Its goal is to enable you to easily plan projects. Based on\n" @@ -6936,7 +7061,7 @@ msgid "" "views can be printed as PDF or PostScript files, or exported to HTML." msgstr "" -#: gnu/packages/gnome.scm:10644 +#: gnu/packages/gnome.scm:10664 msgid "" "Lollypop is a music player designed to play well with GNOME desktop.\n" "Lollypop plays audio formats such as mp3, mp4, ogg and flac and gets information\n" @@ -6944,26 +7069,26 @@ msgid "" "automatically and it can stream songs from online music services and charts." msgstr "" -#: gnu/packages/gnome.scm:10668 +#: gnu/packages/gnome.scm:10688 msgid "" "A collection of GStreamer video filters and effects to be used in\n" "photo-booth-like software, such as Cheese." msgstr "" -#: gnu/packages/gnome.scm:10747 +#: gnu/packages/gnome.scm:10766 msgid "" "Cheese uses your webcam to take photos and videos. Cheese can also\n" "apply fancy special effects and lets you share the fun with others." msgstr "" -#: gnu/packages/gnome.scm:10801 +#: gnu/packages/gnome.scm:10820 msgid "" "Password Safe is a password manager which makes use of the KeePass v4\n" "format. It integrates perfectly with the GNOME desktop and provides an easy\n" "and uncluttered interface for the management of password databases." msgstr "" -#: gnu/packages/gnome.scm:10836 +#: gnu/packages/gnome.scm:10855 msgid "" "Sound Juicer extracts audio from compact discs and convert it\n" "into audio files that a personal computer or digital audio player can play.\n" @@ -6971,27 +7096,27 @@ msgid "" "mp3, Ogg Vorbis and FLAC" msgstr "" -#: gnu/packages/gnome.scm:10888 +#: gnu/packages/gnome.scm:10907 msgid "" "SoundConverter supports converting between many audio formats including\n" "Opus, Ogg Vorbis, FLAC and more. It supports parallel conversion, and\n" "configurable file renaming." msgstr "" -#: gnu/packages/gnome.scm:10936 +#: gnu/packages/gnome.scm:10955 msgid "" "Workrave is a program that assists in the recovery and prevention of\n" "repetitive strain injury (@dfn{RSI}). The program frequently alerts you to take\n" "micro-pauses and rest breaks, and restricts you to your daily limit." msgstr "" -#: gnu/packages/gnome.scm:10977 +#: gnu/packages/gnome.scm:10996 msgid "" "The GHex program can view and edit files in two ways:\n" "hexadecimal or ASCII. It is useful for editing binary files in general." msgstr "" -#: gnu/packages/gnome.scm:11013 +#: gnu/packages/gnome.scm:11032 msgid "" "The libdazzle library is a companion library to GObject and\n" "Gtk+. It provides various features that the authors wish were in the\n" @@ -7000,40 +7125,40 @@ msgid "" "generic enough to work for everyone." msgstr "" -#: gnu/packages/gnome.scm:11080 +#: gnu/packages/gnome.scm:11099 msgid "" "Evolution is a personal information management application\n" "that provides integrated mail, calendaring and address book\n" "functionality." msgstr "" -#: gnu/packages/gnome.scm:11140 +#: gnu/packages/gnome.scm:11154 msgid "" "GThumb is an image viewer, browser, organizer, editor and\n" "advanced image management tool" msgstr "" -#: gnu/packages/gnome.scm:11213 +#: gnu/packages/gnome.scm:11227 msgid "" "Terminator allows you to run multiple GNOME terminals in a grid and\n" "tabs, and it supports drag and drop re-ordering of terminals." msgstr "" -#: gnu/packages/gnome.scm:11274 +#: gnu/packages/gnome.scm:11288 msgid "" "The aim of the handy library is to help with developing user\n" "interfaces for mobile devices using GTK+. It provides responsive GTK+ widgets\n" "for usage on small and big screens." msgstr "" -#: gnu/packages/gnome.scm:11323 +#: gnu/packages/gnome.scm:11337 msgid "" "libgit2-glib is a GLib wrapper library around the libgit2 Git\n" "access library. It only implements the core plumbing functions, not really the\n" "higher level porcelain stuff." msgstr "" -#: gnu/packages/gnome.scm:11402 +#: gnu/packages/gnome.scm:11415 msgid "" "gitg is a graphical user interface for git. It aims at being a small,\n" "fast and convenient tool to visualize the history of git repositories.\n" @@ -7041,21 +7166,21 @@ msgid "" "repository and commit your work." msgstr "" -#: gnu/packages/gnome.scm:11474 +#: gnu/packages/gnome.scm:11487 msgid "" "Gamin is a file and directory monitoring system defined to be a subset\n" "of the FAM (File Alteration Monitor) system. This is a service provided by a\n" "library which detects when a file or a directory has been modified." msgstr "" -#: gnu/packages/gnome.scm:11508 +#: gnu/packages/gnome.scm:11521 msgid "" "GNOME Mahjongg is a game based on the classic Chinese\n" -"tile-matching game Mahjong. It features multiple board layouts, tile themes,\n" +"tile-matching game Mahjongg. It features multiple board layouts, tile themes,\n" "and a high score table." msgstr "" -#: gnu/packages/gnome.scm:11546 +#: gnu/packages/gnome.scm:11559 msgid "" "This package provides themes and related elements that don't\n" "really fit in other upstream packages. It offers legacy support for GTK+ 2\n" @@ -7063,19 +7188,19 @@ msgid "" "index files needed for Adwaita to be used outside of GNOME." msgstr "" -#: gnu/packages/gnome.scm:11585 +#: gnu/packages/gnome.scm:11605 msgid "" -"Gnote is a note-taking application written for the GNOME desktop\n" -"environment." +"Gnote is a note-taking application written for the GNOME\n" +"desktop environment." msgstr "" -#: gnu/packages/gnome.scm:11647 +#: gnu/packages/gnome.scm:11664 msgid "" "Polari is a simple Internet Relay Chat (IRC) client that is designed to\n" "integrate seamlessly with the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:11706 +#: gnu/packages/gnome.scm:11723 msgid "" "GNOME Boxes is a simple application to view, access, and\n" "manage remote and virtual systems. Note that this application requires the\n" @@ -7084,7 +7209,7 @@ msgid "" "these services on the Guix System." msgstr "" -#: gnu/packages/gnome.scm:11806 +#: gnu/packages/gnome.scm:11823 msgid "" "Geary collects related messages together into conversations,\n" "making it easy to find and follow your discussions. Full-text and keyword\n" @@ -7096,14 +7221,14 @@ msgid "" "to." msgstr "" -#: gnu/packages/gnome.scm:11851 +#: gnu/packages/gnome.scm:11868 msgid "" "gLabels is a program for creating labels and business cards. It is\n" "designed to work with various laser/ink-jet peel-off label and business\n" "card sheets that you’ll find at most office supply stores." msgstr "" -#: gnu/packages/gnome.scm:11892 +#: gnu/packages/gnome.scm:11909 msgid "" "GNOME LaTeX is a LaTeX editor for the GNOME desktop. It has features\n" "such as build tools, completion of LaTeX commands, structure navigation,\n" @@ -7111,19 +7236,19 @@ msgid "" "and toolbars." msgstr "" -#: gnu/packages/gnome.scm:11951 +#: gnu/packages/gnome.scm:11968 msgid "" "Setzer is a simple yet full-featured LaTeX editor written in Python with\n" "GTK+. It integrates well with the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:12017 +#: gnu/packages/gnome.scm:12034 msgid "" "Apostrophe is a GTK+ based distraction-free Markdown editor.\n" "It uses pandoc as back-end for parsing Markdown." msgstr "" -#: gnu/packages/gnome.scm:12070 +#: gnu/packages/gnome.scm:12088 msgid "" "libratbag provides @command{ratbagd}, a DBus daemon to\n" "configure input devices, mainly gaming mice. The daemon provides a generic\n" @@ -7140,7 +7265,7 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12140 +#: gnu/packages/gnome.scm:12156 msgid "" "Piper is a GTK+ application for configuring gaming mice with\n" "onboard configuration for key bindings via libratbag. Piper requires\n" @@ -7152,14 +7277,14 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12202 +#: gnu/packages/gnome.scm:12218 msgid "" "Parlatype is an audio player for the GNOME desktop\n" "environment. Its main purpose is the manual transcription of spoken\n" "audio files." msgstr "" -#: gnu/packages/gnome.scm:12228 +#: gnu/packages/gnome.scm:12244 msgid "" "Jsonrpc-GLib is a library to communicate with JSON-RPC based\n" "peers in either a synchronous or asynchronous fashion. It also allows\n" @@ -7168,14 +7293,14 @@ msgid "" "host to avoid parser overhead and memory-allocator fragmentation." msgstr "" -#: gnu/packages/gnome.scm:12256 +#: gnu/packages/gnome.scm:12272 msgid "" "Feedbackd provides a DBus daemon to act on events to provide\n" "haptic, visual and audio feedback. It offers the libfeedbackd library and\n" "GObject introspection bindings." msgstr "" -#: gnu/packages/gnome.scm:12305 +#: gnu/packages/gnome.scm:12321 msgid "" "Sysprof performs detailed, accurate, and fast CPU profiling of an entire\n" "GNU/Linux system including the kernel and all user-space applications. This\n" @@ -7185,21 +7310,21 @@ msgid "" "libraries. Applications do not need to be recompiled--or even restarted." msgstr "" -#: gnu/packages/gnome.scm:12388 +#: gnu/packages/gnome.scm:12406 msgid "" -"Builder aims to be an integrated development\n" -"environment (IDE) for writing GNOME-based software. It features fuzzy search,\n" -"auto-completion, a mini code map, documentation browsing, Git integration, an\n" -"integrated profiler via Sysprof, debugging support, and more." +"Builder aims to be an integrated development environment (IDE) for\n" +"writing GNOME-based software. It features fuzzy search, auto-completion,\n" +"a mini code map, documentation browsing, Git integration, an integrated\n" +"profiler via Sysprof, debugging support, and more." msgstr "" -#: gnu/packages/gnome.scm:12461 +#: gnu/packages/gnome.scm:12480 msgid "" "Komikku is an online/offline manga reader for GNOME,\n" "developed with the aim of being used with the Librem 5 phone." msgstr "" -#: gnu/packages/gnome.scm:12545 +#: gnu/packages/gnome.scm:12564 msgid "" "GNU Data Access (GDA) is an attempt to provide uniform access to\n" "different kinds of data sources (databases, information servers, mail spools,\n" @@ -7207,7 +7332,7 @@ msgid "" "your data." msgstr "" -#: gnu/packages/gnome.scm:12596 +#: gnu/packages/gnome.scm:12614 msgid "" "gtranslator is a quite comfortable gettext po/po.gz/(g)mo files editor\n" "for the GNOME 3.x platform with many features. It aims to be a very complete\n" @@ -7215,32 +7340,42 @@ msgid "" "world." msgstr "" -#: gnu/packages/gnome.scm:12662 +#: gnu/packages/gnome.scm:12680 msgid "" "OCRFeeder is a complete Optical Character Recognition and\n" "Document Analysis and Recognition program." msgstr "" -#: gnu/packages/gnome.scm:12702 +#: gnu/packages/gnome.scm:12720 msgid "" "@code{libadwaita} offers widgets and objects to build GNOME\n" "applications scaling from desktop workstations to mobile phones. It is the\n" "successor of @code{libhandy} for GTK4." msgstr "" -#: gnu/packages/gnome.scm:12727 +#: gnu/packages/gnome.scm:12745 msgid "" "@code{gnome-power-manager} is a tool for viewing present and\n" "historical battery usage and related statistics." msgstr "" +#: gnu/packages/gnome.scm:12789 +#, fuzzy +#| msgid "" +#| "This package provides a dictionary for the Hunspell spell-checking\n" +#| "library." +msgid "This package provides a graphical file manager." +msgstr "" +"Aqueste paquet provesís un diccionari per la bibliotèca del\n" +"corrector ortografic Hunspell." + #: gnu/packages/gnuzilla.scm:155 msgid "" "SpiderMonkey is Mozilla's JavaScript engine written\n" "in C/C++." msgstr "" -#: gnu/packages/gnuzilla.scm:1314 +#: gnu/packages/gnuzilla.scm:1315 msgid "" "IceCat is the GNU version of the Firefox browser. It is entirely free\n" "software, which does not recommend non-free plugins and addons. It also\n" @@ -7253,19 +7388,19 @@ msgid "" "standards of the IceCat project." msgstr "" -#: gnu/packages/gnuzilla.scm:1642 +#: gnu/packages/gnuzilla.scm:1648 msgid "" "This package provides an email client built based on Mozilla\n" "Thunderbird. It supports email, news feeds, chat, calendar and contacts." msgstr "" -#: gnu/packages/gnuzilla.scm:1717 +#: gnu/packages/gnuzilla.scm:1723 msgid "" "Firefox Decrypt is a tool to extract passwords from\n" "Mozilla (Firefox, Waterfox, Thunderbird, SeaMonkey) profiles." msgstr "" -#: gnu/packages/gnuzilla.scm:1754 +#: gnu/packages/gnuzilla.scm:1760 msgid "" "@code{lz4json} is a little utility to unpack lz4json files as generated\n" "by Firefox's bookmark backups and session restore. This is a different format\n" @@ -7279,7 +7414,7 @@ msgid "" "tools have full access to view and control running applications." msgstr "" -#: gnu/packages/gtk.scm:215 +#: gnu/packages/gtk.scm:212 msgid "" "Cairo is a 2D graphics library with support for multiple output\n" "devices. Currently supported output targets include the X Window System (via\n" @@ -7287,24 +7422,24 @@ msgid "" "output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB." msgstr "" -#: gnu/packages/gtk.scm:277 +#: gnu/packages/gtk.scm:274 msgid "HarfBuzz is an OpenType text shaping engine." msgstr "" -#: gnu/packages/gtk.scm:320 +#: gnu/packages/gtk.scm:317 msgid "" "Libdatrie is an implementation of double-array structure for\n" "representing trie. Trie is a kind of digital search tree." msgstr "" -#: gnu/packages/gtk.scm:352 +#: gnu/packages/gtk.scm:349 msgid "" "LibThai is a set of Thai language support routines aimed to\n" "ease developers’ tasks to incorporate Thai language support in their\n" "applications." msgstr "" -#: gnu/packages/gtk.scm:407 +#: gnu/packages/gtk.scm:404 msgid "" "Pango is a library for laying out and rendering of text, with\n" "an emphasis on internationalization. Pango can be used anywhere that text\n" @@ -7313,21 +7448,21 @@ msgid "" "handling for GTK+-2.x." msgstr "" -#: gnu/packages/gtk.scm:461 +#: gnu/packages/gtk.scm:458 msgid "" "Pangox was a X backend to pango. It is now obsolete and no\n" "longer provided by recent pango releases. pangox-compat provides the\n" "functions which were removed." msgstr "" -#: gnu/packages/gtk.scm:498 +#: gnu/packages/gtk.scm:495 msgid "" "Ganv is an interactive GTK+ widget for interactive “boxes and lines” or\n" "graph-like environments, e.g. modular synths or finite state machine\n" "diagrams." msgstr "" -#: gnu/packages/gtk.scm:554 +#: gnu/packages/gtk.scm:551 msgid "" "GtkSourceView is a portable C library that extends the standard GTK+\n" "framework for multiline text editing with support for configurable syntax\n" @@ -7335,33 +7470,33 @@ msgid "" "printing and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:602 +#: gnu/packages/gtk.scm:599 msgid "" "GtkSourceView is a text widget that extends the standard\n" "GTK+ text widget GtkTextView. It improves GtkTextView by implementing syntax\n" "highlighting and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:698 +#: gnu/packages/gtk.scm:695 msgid "" "GdkPixbuf is a library that loads image data in various\n" "formats and stores it as linear buffers in memory. The buffers can then be\n" "scaled, composited, modified, saved, or rendered." msgstr "" -#: gnu/packages/gtk.scm:746 +#: gnu/packages/gtk.scm:743 msgid "" "The Assistive Technology Service Provider Interface, core components,\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:827 +#: gnu/packages/gtk.scm:824 msgid "" "The Assistive Technology Service Provider Interface\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:921 +#: gnu/packages/gtk.scm:918 msgid "" "GTK+, or the GIMP Toolkit, is a multi-platform toolkit for creating\n" "graphical user interfaces. Offering a complete set of widgets, GTK+ is\n" @@ -7369,14 +7504,14 @@ msgid "" "application suites." msgstr "" -#: gnu/packages/gtk.scm:1234 +#: gnu/packages/gtk.scm:1238 msgid "" "GTK is a multi-platform toolkit for creating graphical user\n" "interfaces. Offering a complete set of widgets, GTK is suitable for projects\n" "ranging from small one-off tools to complete application suites." msgstr "" -#: gnu/packages/gtk.scm:1308 +#: gnu/packages/gtk.scm:1312 msgid "" "Guile-Cairo wraps the Cairo graphics library for Guile Scheme.\n" "Guile-Cairo is complete, wrapping almost all of the Cairo API. It is API\n" @@ -7386,13 +7521,13 @@ msgid "" "exceptions, macros, and a dynamic programming environment." msgstr "" -#: gnu/packages/gtk.scm:1389 +#: gnu/packages/gtk.scm:1393 msgid "" "Guile-RSVG wraps the RSVG library for Guile, allowing you to render SVG\n" "images onto Cairo surfaces." msgstr "" -#: gnu/packages/gtk.scm:1456 +#: gnu/packages/gtk.scm:1460 msgid "" "Guile-Present defines a declarative vocabulary for presentations,\n" "together with tools to render presentation documents as SVG or PDF.\n" @@ -7401,29 +7536,29 @@ msgid "" "documents." msgstr "" -#: gnu/packages/gtk.scm:1522 +#: gnu/packages/gtk.scm:1526 msgid "" "Includes guile-clutter, guile-gnome-gstreamer,\n" "guile-gnome-platform (GNOME developer libraries), and guile-gtksourceview." msgstr "" -#: gnu/packages/gtk.scm:1578 +#: gnu/packages/gtk.scm:1582 msgid "" "Cairomm provides a C++ programming interface to the Cairo 2D graphics\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1642 +#: gnu/packages/gtk.scm:1647 msgid "" "Pangomm provides a C++ programming interface to the Pango text rendering\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1704 +#: gnu/packages/gtk.scm:1709 msgid "ATKmm is the C++ binding for the ATK library." msgstr "" -#: gnu/packages/gtk.scm:1784 +#: gnu/packages/gtk.scm:1790 msgid "" "GTKmm is the official C++ interface for the popular GUI\n" "library GTK+. Highlights include typesafe callbacks, and a comprehensive set\n" @@ -7652,7 +7787,7 @@ msgid "" "excellent pavucontrol." msgstr "" -#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:238 +#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:241 msgid "" "Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" "official extension language of the GNU system. It is an implementation of\n" @@ -7661,14 +7796,14 @@ msgid "" "without requiring the source code to be rewritten." msgstr "" -#: gnu/packages/guile.scm:502 +#: gnu/packages/guile.scm:506 msgid "" "This module provides line editing support via the Readline library for\n" "GNU@tie{}Guile. Use the @code{(ice-9 readline)} module and call its\n" "@code{activate-readline} procedure to enable it." msgstr "" -#: gnu/packages/guile.scm:604 +#: gnu/packages/guile.scm:608 msgid "" "Guile-JSON supports parsing and building JSON documents according to the\n" "specification. These are the main features:\n" @@ -7681,17 +7816,17 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/guile.scm:701 +#: gnu/packages/guile.scm:705 msgid "" "Guile bindings to the GDBM key-value storage system, using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:730 +#: gnu/packages/guile.scm:734 msgid "This package provides Guile bindings to the SQLite database system." msgstr "" -#: gnu/packages/guile.scm:769 +#: gnu/packages/guile.scm:773 msgid "" "Guile bytestructures offers a system imitating the type system\n" "of the C programming language, to be used on bytevectors. C's type\n" @@ -7700,33 +7835,33 @@ msgid "" "type system, elevating types to first-class status." msgstr "" -#: gnu/packages/guile.scm:810 +#: gnu/packages/guile.scm:814 msgid "" "This package provides Guile bindings to libgit2, a library to\n" "manipulate repositories of the Git version control system." msgstr "" -#: gnu/packages/guile.scm:846 +#: gnu/packages/guile.scm:850 msgid "" "This package provides Guile bindings for zlib, a lossless\n" "data-compression library. The bindings are written in pure Scheme by using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:877 +#: gnu/packages/guile.scm:881 msgid "" "This package provides Guile bindings for lzlib, a C library for\n" "in-memory LZMA compression and decompression. The bindings are written in\n" "pure Scheme by using Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:904 +#: gnu/packages/guile.scm:908 msgid "" "This package provides a GNU Guile interface to the zstd (``zstandard'')\n" "compression library." msgstr "" -#: gnu/packages/guile.scm:926 +#: gnu/packages/guile.scm:930 msgid "" "Guile-LZMA is a Guile wrapper for the liblzma (XZ)\n" "library. It exposes an interface similar to other Guile compression\n" @@ -8313,7 +8448,7 @@ msgid "" "It supports JPEG, PNG and GIF formats." msgstr "" -#: gnu/packages/image-viewers.scm:640 +#: gnu/packages/image-viewers.scm:643 msgid "" "Luminance HDR (formerly QtPFSGui) is a graphical user interface\n" "application that aims to provide a workflow for high dynamic range (HDR)\n" @@ -8329,7 +8464,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:735 +#: gnu/packages/image-viewers.scm:738 msgid "" "MComix is a customizable image viewer that specializes as\n" "a comic and manga reader. It supports a variety of container formats\n" @@ -8338,7 +8473,7 @@ msgid "" "For PDF support, install the @emph{mupdf} package." msgstr "" -#: gnu/packages/image-viewers.scm:775 +#: gnu/packages/image-viewers.scm:778 msgid "" "qView is a Qt image viewer designed with visually\n" "minimalism and usability in mind. Its features include animated GIF\n" @@ -8346,14 +8481,14 @@ msgid "" "preloading." msgstr "" -#: gnu/packages/image-viewers.scm:799 +#: gnu/packages/image-viewers.scm:802 msgid "" "Chafa is a command-line utility that converts all kinds of images,\n" "including animated GIFs, into ANSI/Unicode character output that can be\n" "displayed in a terminal." msgstr "" -#: gnu/packages/image-viewers.scm:847 +#: gnu/packages/image-viewers.scm:850 msgid "" "@code{imv} is a command line image viewer intended for use\n" "with tiling window managers. Features include:\n" @@ -8375,7 +8510,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:924 +#: gnu/packages/image-viewers.scm:927 msgid "" "Quick Image Viewer is a small and fast GDK/Imlib2 image viewer.\n" "Features include zoom, maxpect, scale down, fullscreen, slideshow, delete,\n" @@ -8384,7 +8519,7 @@ msgid "" "to set X desktop background." msgstr "" -#: gnu/packages/image-viewers.scm:968 +#: gnu/packages/image-viewers.scm:971 msgid "" "pqiv is a GTK-3 based command-line image viewer with a minimal UI.\n" "It is highly customizable, can be fully controlled from scripts, and has\n" @@ -8392,7 +8527,7 @@ msgid "" "archives." msgstr "" -#: gnu/packages/image-viewers.scm:1025 +#: gnu/packages/image-viewers.scm:1028 msgid "" "Nomacs is a simple to use image lounge featuring\n" "semi-transparent widgets that display additional information such as metadata,\n" @@ -8405,7 +8540,7 @@ msgid "" "synchronization of multiple instances." msgstr "" -#: gnu/packages/image-viewers.scm:1070 +#: gnu/packages/image-viewers.scm:1073 msgid "xzgv is a fast image viewer that provides extensive keyboard support." msgstr "" @@ -8668,17 +8803,17 @@ msgid "" "Math for editing mathematics." msgstr "" -#: gnu/packages/linux.scm:604 +#: gnu/packages/linux.scm:625 msgid "Headers of the Linux-Libre kernel." msgstr "" -#: gnu/packages/linux.scm:905 +#: gnu/packages/linux.scm:935 msgid "" "GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.\n" "It has been modified to remove all non-free binary blobs." msgstr "" -#: gnu/packages/linux.scm:1215 +#: gnu/packages/linux.scm:1252 msgid "" "This simple Linux kernel module allows calls from user space to any\n" "@acronym{ACPI, Advanced Configuration and Power Interface} method provided by\n" @@ -8690,7 +8825,7 @@ msgid "" "and should be used with caution, especially on untested models." msgstr "" -#: gnu/packages/linux.scm:1283 +#: gnu/packages/linux.scm:1320 msgid "" "CoreFreq is a CPU monitor that reports low-level processor settings and\n" "performance data with notably high precision by using a loadable Linux kernel\n" @@ -8721,7 +8856,7 @@ msgid "" "@file{README.md} before loading it." msgstr "" -#: gnu/packages/linux.scm:1332 +#: gnu/packages/linux.scm:1369 msgid "" "This is the Linux kernel @acronym{ACPI, Advanced Configuration and Power\n" "Interface} platform driver for the @acronym{EC, Embedded Controller} firmware\n" @@ -8730,13 +8865,13 @@ msgid "" "and the notification, WiFi, and Bluetooth LED." msgstr "" -#: gnu/packages/linux.scm:1375 +#: gnu/packages/linux.scm:1413 msgid "" "This is Realtek's RTL8821CE Linux driver for wireless\n" "network adapters." msgstr "" -#: gnu/packages/linux.scm:1407 +#: gnu/packages/linux.scm:1445 msgid "" "This is Realtek's rtl8812au Linux driver for USB 802.11n wireless\n" "network adapters, modified by the aircrack-ng project to support monitor mode\n" @@ -8744,7 +8879,7 @@ msgid "" "RTL8812AU, RTL8821AU, and RTL8814AU chips." msgstr "" -#: gnu/packages/linux.scm:1431 +#: gnu/packages/linux.scm:1469 msgid "" "The @acronym{VHBA, Virtual SCSI Host Bus Adapter} module is the link\n" "between the CDemu user-space daemon and the kernel Linux. It acts as a\n" @@ -8753,13 +8888,13 @@ msgid "" "emulate optical devices such as DVD and CD-ROM drives." msgstr "" -#: gnu/packages/linux.scm:1460 +#: gnu/packages/linux.scm:1497 msgid "" "The bbswitch module provides a way to toggle the Nvidia\n" "graphics card on Optimus laptops." msgstr "" -#: gnu/packages/linux.scm:1501 +#: gnu/packages/linux.scm:1536 msgid "" "This package provides two Linux kernel drivers, ddcci and\n" "ddcci-backlight, that allows the control of DDC/CI monitors through the sysfs\n" @@ -8769,7 +8904,7 @@ msgid "" "supported under @file{/sys/class/backlight/}." msgstr "" -#: gnu/packages/linux.scm:1528 +#: gnu/packages/linux.scm:1563 msgid "" "This Linux module creates virtual video devices. @acronym{V4L2, Video\n" "for Linux 2} applications will treat these as ordinary video devices but read\n" @@ -8781,7 +8916,7 @@ msgid "" "application by hooking GStreamer into the loopback device." msgstr "" -#: gnu/packages/linux.scm:1569 +#: gnu/packages/linux.scm:1604 msgid "" "This package provides a driver for the XBox One S Wireless controller\n" "and some newer models when connected via Bluetooth. In addition to the included\n" @@ -8789,7 +8924,7 @@ msgid "" "which need to be installed separately." msgstr "" -#: gnu/packages/linux.scm:1622 +#: gnu/packages/linux.scm:1657 msgid "" "A *Free* project to implement OSF's RFC 86.0.\n" "Pluggable authentication modules are small shared object files that can\n" @@ -8797,18 +8932,18 @@ msgid "" "at login. Local and dynamic reconfiguration are its key features." msgstr "" -#: gnu/packages/linux.scm:1683 +#: gnu/packages/linux.scm:1718 msgid "This package provides a PAM interface using @code{ctypes}." msgstr "" -#: gnu/packages/linux.scm:1712 +#: gnu/packages/linux.scm:1747 msgid "" "This package provides a PAM module that hands over your\n" "login password to @code{gpg-agent}. This can be useful if you are using a\n" "GnuPG-based password manager like @code{pass}." msgstr "" -#: gnu/packages/linux.scm:1741 +#: gnu/packages/linux.scm:1776 msgid "" "This package contains utilities for accessing the powercap\n" "Linux kernel feature through sysfs. It includes an implementation for working\n" @@ -8816,7 +8951,7 @@ msgid "" "It provides the commands @code{powercap-info} and @code{powercap-set}." msgstr "" -#: gnu/packages/linux.scm:1772 +#: gnu/packages/linux.scm:1807 msgid "" "Powerstat measures and reports your computer's power consumption in real\n" "time. On mobile PCs, it uses ACPI battery information to measure the power\n" @@ -8833,28 +8968,28 @@ msgid "" "deviation, and minimum and maximum values. It can show a nice histogram too." msgstr "" -#: gnu/packages/linux.scm:1810 +#: gnu/packages/linux.scm:1845 msgid "" "This PSmisc package is a set of some small useful utilities that\n" "use the proc file system. We're not about changing the world, but\n" "providing the system administrator with some help in common tasks." msgstr "" -#: gnu/packages/linux.scm:1948 +#: gnu/packages/linux.scm:1984 msgid "" "Util-linux is a diverse collection of Linux kernel\n" "utilities. It provides dmesg and includes tools for working with file systems,\n" "block devices, UUIDs, TTYs, and many other tools." msgstr "" -#: gnu/packages/linux.scm:1986 +#: gnu/packages/linux.scm:2037 msgid "" "ddate displays the Discordian date and holidays of a given date.\n" "The Discordian calendar was made popular by the \"Illuminatus!\" trilogy\n" "by Robert Shea and Robert Anton Wilson." msgstr "" -#: gnu/packages/linux.scm:2040 +#: gnu/packages/linux.scm:2091 msgid "" "The kernel Linux's @dfn{frame buffers} provide a simple interface to\n" "different kinds of graphic displays. The @command{fbset} utility can query and\n" @@ -8862,7 +8997,7 @@ msgid "" "parameters." msgstr "" -#: gnu/packages/linux.scm:2085 +#: gnu/packages/linux.scm:2136 msgid "" "Procps is the package that has a bunch of small useful utilities\n" "that give information about processes using the Linux /proc file system.\n" @@ -8870,11 +9005,11 @@ msgid "" "slabtop, tload, top, vmstat, w, watch and sysctl." msgstr "" -#: gnu/packages/linux.scm:2130 +#: gnu/packages/linux.scm:2181 msgid "Tools for working with USB devices, such as lsusb." msgstr "" -#: gnu/packages/linux.scm:2154 +#: gnu/packages/linux.scm:2205 msgid "" "The USB/IP protocol enables to pass USB device from a server to\n" "a client over the network. The server is a machine which shares an\n" @@ -8887,23 +9022,23 @@ msgid "" "module." msgstr "" -#: gnu/packages/linux.scm:2237 +#: gnu/packages/linux.scm:2288 msgid "This package provides tools for manipulating ext2/ext3/ext4 file systems." msgstr "" -#: gnu/packages/linux.scm:2279 +#: gnu/packages/linux.scm:2330 msgid "" "This package provides statically-linked e2fsck command taken\n" "from the e2fsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:2302 +#: gnu/packages/linux.scm:2353 msgid "" "Extundelete is a set of tools that can recover deleted files from an\n" "ext3 or ext4 partition." msgstr "" -#: gnu/packages/linux.scm:2335 +#: gnu/packages/linux.scm:2386 msgid "" "Zerofree finds the unallocated blocks with non-zero value content in an\n" "ext2, ext3, or ext4 file system and fills them with zeroes (or another value).\n" @@ -8911,39 +9046,39 @@ msgid "" "Zerofree requires the file system to be unmounted or mounted read-only." msgstr "" -#: gnu/packages/linux.scm:2380 +#: gnu/packages/linux.scm:2431 msgid "" "strace is a system call tracer, i.e. a debugging tool which prints out a\n" "trace of all the system calls made by a another process/program." msgstr "" -#: gnu/packages/linux.scm:2403 +#: gnu/packages/linux.scm:2454 msgid "" "ltrace intercepts and records dynamic library calls which are called by\n" "an executed process and the signals received by that process. It can also\n" "intercept and print the system calls executed by the program." msgstr "" -#: gnu/packages/linux.scm:2428 +#: gnu/packages/linux.scm:2479 msgid "" "This package contains Advanced Linux Sound Architecture Use Case Manager\n" "configuration of audio input/output names and routing for specific audio\n" "hardware." msgstr "" -#: gnu/packages/linux.scm:2452 +#: gnu/packages/linux.scm:2503 msgid "" "This package contains Advanced Linux Sound Architecture topology\n" "configuration files that can be used for specific audio hardware." msgstr "" -#: gnu/packages/linux.scm:2499 gnu/packages/linux.scm:2548 +#: gnu/packages/linux.scm:2550 gnu/packages/linux.scm:2599 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system." msgstr "" -#: gnu/packages/linux.scm:2617 +#: gnu/packages/linux.scm:2668 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system. This package enhances ALSA\n" @@ -8952,7 +9087,7 @@ msgid "" "external rate conversion." msgstr "" -#: gnu/packages/linux.scm:2655 +#: gnu/packages/linux.scm:2706 msgid "" "@command{iptables} is the user-space command line program used to\n" "configure the Linux 2.4.x and later IPv4 packet filtering ruleset\n" @@ -8964,7 +9099,7 @@ msgid "" "Both commands are targeted at system administrators." msgstr "" -#: gnu/packages/linux.scm:2691 +#: gnu/packages/linux.scm:2742 msgid "" "This simple daemon feeds entropy from the CPU Jitter @acronym{RNG, random\n" "number generator} core to the kernel Linux's entropy estimator. This prevents\n" @@ -8986,7 +9121,7 @@ msgid "" "early boot when entropy may be low, especially in virtualised environments." msgstr "" -#: gnu/packages/linux.scm:2727 +#: gnu/packages/linux.scm:2778 msgid "" "@command{lsscsi} lists SCSI logical units or SCSI targets. It can\n" "also list NVMe namespaces or controllers and show the relationship between a\n" @@ -8994,7 +9129,7 @@ msgid "" "name." msgstr "" -#: gnu/packages/linux.scm:2751 +#: gnu/packages/linux.scm:2802 msgid "" "ebtables is an application program used to set up and maintain the\n" "tables of rules (inside the Linux kernel) that inspect Ethernet frames. It is\n" @@ -9002,7 +9137,7 @@ msgid "" "that the Ethernet protocol is much simpler than the IP protocol." msgstr "" -#: gnu/packages/linux.scm:2816 +#: gnu/packages/linux.scm:2867 msgid "" "Iproute2 is a collection of utilities for controlling TCP/IP networking\n" "and traffic with the Linux kernel. The most important of these are\n" @@ -9014,7 +9149,7 @@ msgid "" "inadequately in modern network environments, and both should be deprecated." msgstr "" -#: gnu/packages/linux.scm:2896 +#: gnu/packages/linux.scm:2947 msgid "" "This package includes the important tools for controlling the network\n" "subsystem of the Linux kernel. This includes arp, ifconfig, netstat, rarp and\n" @@ -9023,13 +9158,13 @@ msgid "" "configuration (iptunnel, ipmaddr)." msgstr "" -#: gnu/packages/linux.scm:2947 +#: gnu/packages/linux.scm:2989 msgid "" "Libcap2 provides a programming interface to POSIX capabilities on\n" "Linux-based operating systems." msgstr "" -#: gnu/packages/linux.scm:2974 +#: gnu/packages/linux.scm:3016 msgid "" "Utilities for Linux's Ethernet bridging facilities. A bridge is a way\n" "to connect two Ethernet segments together in a protocol independent way.\n" @@ -9038,7 +9173,7 @@ msgid "" "transparently through a bridge." msgstr "" -#: gnu/packages/linux.scm:3025 +#: gnu/packages/linux.scm:3067 msgid "" "The libnl suite is a collection of libraries providing APIs to netlink\n" "protocol based Linux kernel interfaces. Netlink is an IPC mechanism primarily\n" @@ -9047,13 +9182,13 @@ msgid "" "configuration and monitoring interfaces." msgstr "" -#: gnu/packages/linux.scm:3099 +#: gnu/packages/linux.scm:3141 msgid "" "iw is a new nl80211 based CLI configuration utility for wireless\n" "devices. It replaces @code{iwconfig}, which is deprecated." msgstr "" -#: gnu/packages/linux.scm:3149 +#: gnu/packages/linux.scm:3191 msgid "" "PowerTOP is a Linux tool to diagnose issues with power consumption and\n" "power management. In addition to being a diagnostic tool, PowerTOP also has\n" @@ -9062,19 +9197,19 @@ msgid "" "settings." msgstr "" -#: gnu/packages/linux.scm:3176 +#: gnu/packages/linux.scm:3218 msgid "" "Aumix adjusts an audio mixer from X, the console, a terminal,\n" "the command line or a script." msgstr "" -#: gnu/packages/linux.scm:3207 +#: gnu/packages/linux.scm:3249 msgid "" "Iotop is a Python program with a top like user interface to show the\n" "processes currently causing I/O." msgstr "" -#: gnu/packages/linux.scm:3265 +#: gnu/packages/linux.scm:3307 msgid "" "As a consequence of its monolithic design, file system code for Linux\n" "normally goes into the kernel itself---which is not only a robustness issue,\n" @@ -9084,7 +9219,7 @@ msgid "" "user-space processes." msgstr "" -#: gnu/packages/linux.scm:3358 +#: gnu/packages/linux.scm:3400 msgid "" "UnionFS-FUSE is a flexible union file system implementation in user\n" "space, using the FUSE library. Mounting a union file system allows you to\n" @@ -9092,7 +9227,7 @@ msgid "" "UnionFS-FUSE additionally supports copy-on-write." msgstr "" -#: gnu/packages/linux.scm:3437 +#: gnu/packages/linux.scm:3479 msgid "" "This is a file system client based on the SSH File Transfer Protocol.\n" "Since most SSH servers already support this protocol it is very easy to set\n" @@ -9100,7 +9235,7 @@ msgid "" "file system is as easy as logging into the server with an SSH client." msgstr "" -#: gnu/packages/linux.scm:3464 +#: gnu/packages/linux.scm:3506 msgid "" "archivemount is a FUSE-based file system for Unix variants,\n" "including Linux. Its purpose is to mount archives (i.e. tar, tar.gz, etc.) to a\n" @@ -9109,7 +9244,7 @@ msgid "" "compressed, transparent to other programs, without decompressing them." msgstr "" -#: gnu/packages/linux.scm:3495 +#: gnu/packages/linux.scm:3537 msgid "" "NUMA stands for Non-Uniform Memory Access, in other words a system whose\n" "memory is not all in one place. The @command{numactl} program allows you to\n" @@ -9122,26 +9257,26 @@ msgid "" "NUMA performance on your system." msgstr "" -#: gnu/packages/linux.scm:3533 +#: gnu/packages/linux.scm:3575 msgid "" "Kbd-neo provides the Neo2 keyboard layout for use with\n" "@command{loadkeys(1)} from @code{kbd(4)}." msgstr "" -#: gnu/packages/linux.scm:3599 +#: gnu/packages/linux.scm:3641 msgid "" "This package contains keytable files and keyboard utilities compatible\n" "for systems using the Linux kernel. This includes commands such as\n" "@code{loadkeys}, @code{setfont}, @code{kbdinfo}, and @code{chvt}." msgstr "" -#: gnu/packages/linux.scm:3662 +#: gnu/packages/linux.scm:3704 msgid "" "The inotify-tools packages provides a C library and command-line tools\n" "to use Linux' inotify mechanism, which allows file accesses to be monitored." msgstr "" -#: gnu/packages/linux.scm:3714 +#: gnu/packages/linux.scm:3756 msgid "" "Kmod is a set of tools to handle common tasks with Linux\n" "kernel modules like insert, remove, list, check properties, resolve\n" @@ -9152,21 +9287,21 @@ msgid "" "from the module-init-tools project." msgstr "" -#: gnu/packages/linux.scm:3769 +#: gnu/packages/linux.scm:3812 msgid "" "Early OOM is a minimalist out of memory (OOM) daemon that\n" "runs in user space and provides a more responsive and configurable alternative\n" "to the in-kernel OOM killer." msgstr "" -#: gnu/packages/linux.scm:3867 +#: gnu/packages/linux.scm:3892 msgid "" "Udev is a daemon which dynamically creates and removes\n" "device nodes from /dev/, handles hotplug events and loads drivers at boot\n" "time." msgstr "" -#: gnu/packages/linux.scm:3897 +#: gnu/packages/linux.scm:3922 msgid "" "Python-evdev provides bindings to the generic input event interface in\n" "Linux. The @code{evdev} interface serves the purpose of passing events\n" @@ -9178,7 +9313,7 @@ msgid "" "devices that can inject events directly into the input subsystem." msgstr "" -#: gnu/packages/linux.scm:3930 +#: gnu/packages/linux.scm:3955 msgid "" "Interception Tools provides a composable infrastructure on top of\n" "@code{libudev} and @code{libevdev}. The following utilities are provided:\n" @@ -9191,33 +9326,33 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/linux.scm:3979 +#: gnu/packages/linux.scm:4004 msgid "" "Dual Function Keys is a plugin for @code{interception-tools} that allows\n" "one to send arbitrary keycodes when a given key is tapped or held." msgstr "" -#: gnu/packages/linux.scm:4056 +#: gnu/packages/linux.scm:4081 msgid "" "LVM2 is the logical volume management tool set for Linux-based systems.\n" "This package includes the user-space libraries and tools, including the device\n" "mapper. Kernel components are part of Linux-libre." msgstr "" -#: gnu/packages/linux.scm:4122 +#: gnu/packages/linux.scm:4147 msgid "" "A suite of tools for manipulating the metadata of the\n" "dm-thin, dm-cache and dm-era device-mapper targets." msgstr "" -#: gnu/packages/linux.scm:4144 +#: gnu/packages/linux.scm:4169 msgid "" "This package provides an advanced monitor of critical system\n" "resources, supervises the heartbeat of processes, records deadline\n" "transgressions, and initiates a controlled reset if needed." msgstr "" -#: gnu/packages/linux.scm:4189 +#: gnu/packages/linux.scm:4214 msgid "" "Wireless Tools are used to manipulate the now-deprecated\n" "Linux Wireless Extensions; consider using @code{iw} instead. The Wireless\n" @@ -9226,35 +9361,35 @@ msgid "" "interface." msgstr "" -#: gnu/packages/linux.scm:4280 +#: gnu/packages/linux.scm:4305 msgid "" "The Central Regulatory Domain Agent (CRDA) acts as the udev helper for\n" "communication between the kernel Linux and user space for regulatory\n" "compliance." msgstr "" -#: gnu/packages/linux.scm:4350 +#: gnu/packages/linux.scm:4375 msgid "" "This package contains the wireless regulatory database for the Central\n" "Regulatory Database Agent (CRDA). The database contains information on\n" "country-specific regulations for the wireless spectrum." msgstr "" -#: gnu/packages/linux.scm:4424 +#: gnu/packages/linux.scm:4449 msgid "" "Lm-sensors is a hardware health monitoring package for Linux. It allows\n" "you to access information from temperature, voltage, and fan speed sensors.\n" "It works with most newer systems." msgstr "" -#: gnu/packages/linux.scm:4444 +#: gnu/packages/linux.scm:4469 msgid "" "@command{iucode_tool} is a utility to work with microcode packages for\n" "Intel processors. It can convert between formats, extract specific versions,\n" "create a firmware image suitable for the Linux kernel, and more." msgstr "" -#: gnu/packages/linux.scm:4475 +#: gnu/packages/linux.scm:4501 msgid "" "The i2c-tools package contains a heterogeneous set of I2C tools for\n" "Linux: a bus probing tool, a chip dumper, register-level SMBus access helpers,\n" @@ -9262,14 +9397,14 @@ msgid "" "SMBus access." msgstr "" -#: gnu/packages/linux.scm:4514 +#: gnu/packages/linux.scm:4540 msgid "" "Xsensors reads data from the libsensors library regarding hardware\n" "health such as temperature, voltage and fan speed and displays the information\n" "in a digital read-out." msgstr "" -#: gnu/packages/linux.scm:4568 +#: gnu/packages/linux.scm:4600 msgid "" "perf is a tool suite for profiling using hardware performance counters,\n" "with support in the Linux kernel. perf can instrument CPU performance\n" @@ -9278,7 +9413,7 @@ msgid "" "particular the @code{perf} command." msgstr "" -#: gnu/packages/linux.scm:4593 +#: gnu/packages/linux.scm:4625 msgid "" "pflask is a simple tool for creating Linux namespace\n" "containers. It can be used for running a command or even booting an OS inside\n" @@ -9287,7 +9422,7 @@ msgid "" "thanks to the use of namespaces." msgstr "" -#: gnu/packages/linux.scm:4678 +#: gnu/packages/linux.scm:4710 msgid "" "Singularity is a container platform supporting a number of\n" "container image formats. It can build SquashFS container images or import\n" @@ -9295,7 +9430,7 @@ msgid "" "isolation or root privileges." msgstr "" -#: gnu/packages/linux.scm:4711 +#: gnu/packages/linux.scm:4742 msgid "" "@command{hdparm} is a command-line utility to control ATA controllers and\n" "disk drives. It can increase performance and/or reliability by careful tuning\n" @@ -9309,21 +9444,21 @@ msgid "" "Translation (@dfn{SAT}) are also supported." msgstr "" -#: gnu/packages/linux.scm:4750 +#: gnu/packages/linux.scm:4782 msgid "" "Nvme-cli is a utility to provide standards compliant tooling\n" "for NVM-Express drives. It was made specifically for Linux as it relies on the\n" "IOCTLs defined by the mainline kernel driver." msgstr "" -#: gnu/packages/linux.scm:4776 +#: gnu/packages/linux.scm:4808 msgid "" "rfkill is a simple tool for accessing the rfkill device interface,\n" "which is used to enable and disable wireless networking devices, typically\n" "WLAN, Bluetooth and mobile broadband." msgstr "" -#: gnu/packages/linux.scm:4798 +#: gnu/packages/linux.scm:4830 msgid "" "@code{acpi} attempts to replicate the functionality of the\n" "\"old\" @code{apm} command on ACPI systems, including battery and thermal\n" @@ -9331,7 +9466,7 @@ msgid "" "about ACPI devices." msgstr "" -#: gnu/packages/linux.scm:4819 +#: gnu/packages/linux.scm:4851 msgid "" "acpid is designed to notify user-space programs of Advanced\n" "Configuration and Power Interface (ACPI) events. acpid should be started\n" @@ -9340,34 +9475,34 @@ msgid "" "specified in /etc/acpi/events and execute the rules that match the event." msgstr "" -#: gnu/packages/linux.scm:4843 +#: gnu/packages/linux.scm:4875 msgid "" "These are a set of utilities built upon sysfs, a virtual file system in\n" "Linux kernel versions 2.5+ that exposes a system's device tree. The package\n" "also contains the libsysfs library." msgstr "" -#: gnu/packages/linux.scm:4886 +#: gnu/packages/linux.scm:4918 msgid "" "The cpufrequtils suite contains utilities to retrieve CPU frequency\n" "information, and set the CPU frequency if supported, using the cpufreq\n" "capabilities of the Linux kernel." msgstr "" -#: gnu/packages/linux.scm:4922 +#: gnu/packages/linux.scm:4954 msgid "" "This package provides many of the missing pieces in GNU\n" "libc. Most notably the string functions: strlcpy(3), strlcat(3) and the *BSD\n" "sys/queue.h and sys/tree.h API's." msgstr "" -#: gnu/packages/linux.scm:4945 +#: gnu/packages/linux.scm:4977 msgid "" "This package provides small event loop that wraps the\n" "epoll family of APIs." msgstr "" -#: gnu/packages/linux.scm:4966 +#: gnu/packages/linux.scm:4998 msgid "" "Libraw1394 is the only supported interface to the kernel side raw1394 of\n" "the Linux IEEE-1394 subsystem, which provides direct access to the connected\n" @@ -9376,26 +9511,26 @@ msgid "" "protocol in question." msgstr "" -#: gnu/packages/linux.scm:4992 +#: gnu/packages/linux.scm:5024 msgid "" "Libavc1394 is a programming interface to the AV/C specification from\n" "the 1394 Trade Association. AV/C stands for Audio/Video Control." msgstr "" -#: gnu/packages/linux.scm:5016 +#: gnu/packages/linux.scm:5048 msgid "" "The libiec61883 library provides a higher level API for streaming DV,\n" "MPEG-2 and audio over Linux IEEE 1394." msgstr "" -#: gnu/packages/linux.scm:5067 +#: gnu/packages/linux.scm:5099 msgid "" "mdadm is a tool for managing Linux Software RAID arrays. It can create,\n" "assemble, report on, and monitor arrays. It can also move spares between raid\n" "arrays when needed." msgstr "" -#: gnu/packages/linux.scm:5199 +#: gnu/packages/linux.scm:5231 msgid "" "This package provides the following binaries to drive the\n" "Linux Device Mapper multipathing driver:\n" @@ -9408,66 +9543,66 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:5244 +#: gnu/packages/linux.scm:5288 msgid "" "This library enables userspace to use Linux kernel asynchronous I/O\n" "system calls, important for the performance of databases and other advanced\n" "applications." msgstr "" -#: gnu/packages/linux.scm:5287 +#: gnu/packages/linux.scm:5331 msgid "" "Blktrace is a block layer IO tracing mechanism which provides\n" "detailed information about request queue operations to user space. It extracts\n" "event traces from the kernel (via the relaying through the debug file system)." msgstr "" -#: gnu/packages/linux.scm:5312 +#: gnu/packages/linux.scm:5356 msgid "" "The SBC is a digital audio encoder and decoder used to transfer data to\n" "Bluetooth audio output devices like headphones or loudspeakers." msgstr "" -#: gnu/packages/linux.scm:5379 +#: gnu/packages/linux.scm:5423 msgid "" "BlueZ provides support for the core Bluetooth layers and protocols. It\n" "is flexible, efficient and uses a modular implementation." msgstr "" -#: gnu/packages/linux.scm:5403 +#: gnu/packages/linux.scm:5447 msgid "" "This package provides a FUSE-based file system that provides read and\n" "write access to exFAT devices." msgstr "" -#: gnu/packages/linux.scm:5426 +#: gnu/packages/linux.scm:5470 msgid "" "FuseISO is a FUSE module to mount ISO file system images (.iso, .nrg,\n" ".bin, .mdf and .img files). It supports plain ISO9660 Level 1 and 2, Rock\n" "Ridge, Joliet, and zisofs." msgstr "" -#: gnu/packages/linux.scm:5480 +#: gnu/packages/linux.scm:5524 msgid "" "The GPM (general-purpose mouse) daemon is a mouse server for\n" "applications running on the Linux console. It allows users to select items\n" "and copy/paste text in the console and in xterm." msgstr "" -#: gnu/packages/linux.scm:5551 +#: gnu/packages/linux.scm:5595 msgid "" "Btrfs is a @dfn{copy-on-write} (CoW) file system for Linux\n" "aimed at implementing advanced features while focusing on fault tolerance,\n" "repair and easy administration." msgstr "" -#: gnu/packages/linux.scm:5585 +#: gnu/packages/linux.scm:5629 msgid "" "This package provides the statically-linked @command{btrfs}\n" "from the btrfs-progs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5617 +#: gnu/packages/linux.scm:5661 msgid "" "Cramfs is a Linux file system designed to be simple, small,\n" "and to compress things well. It is used on a number of embedded systems and\n" @@ -9475,7 +9610,7 @@ msgid "" "blocks and random block placement." msgstr "" -#: gnu/packages/linux.scm:5652 +#: gnu/packages/linux.scm:5696 msgid "" "@command{compsize} takes a list of files (given as\n" "arguments) on a Btrfs file system and measures used compression types and\n" @@ -9492,20 +9627,20 @@ msgid "" "obviously it can be shared with files outside our set)." msgstr "" -#: gnu/packages/linux.scm:5700 +#: gnu/packages/linux.scm:5744 msgid "" "F2FS, the Flash-Friendly File System, is a modern file system\n" "designed to be fast and durable on flash devices such as solid-state\n" "disks and SD cards. This package provides the userland utilities." msgstr "" -#: gnu/packages/linux.scm:5790 +#: gnu/packages/linux.scm:5834 msgid "" "This package provides statically-linked fsck.f2fs command taken\n" "from the f2fs-tools package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5821 +#: gnu/packages/linux.scm:5865 msgid "" "Prevents shock damage to the internal spinning hard drive(s) of some\n" "HP and Dell laptops. When sudden movement is detected, all input/output\n" @@ -9515,7 +9650,7 @@ msgid "" "feature, and a laptop with an accelerometer. It has no effect on SSDs." msgstr "" -#: gnu/packages/linux.scm:5879 +#: gnu/packages/linux.scm:5923 msgid "" "Thinkfan is a simple fan control program. It reads temperatures,\n" "checks them against configured limits and switches to appropriate (also\n" @@ -9524,7 +9659,7 @@ msgid "" "from userspace." msgstr "" -#: gnu/packages/linux.scm:5935 +#: gnu/packages/linux.scm:5979 msgid "" "Tpacpi-bat is a command-line interface to control battery charging on\n" "@uref{https://github.com/teleshoes/tpacpi-bat/wiki/Supported-Hardware, Lenovo\n" @@ -9539,7 +9674,7 @@ msgid "" "supported." msgstr "" -#: gnu/packages/linux.scm:5979 +#: gnu/packages/linux.scm:6023 msgid "" "Tmon is a tool to interact with the complex thermal subsystem of the\n" "kernel Linux. It helps visualize thermal relationships and real-time thermal\n" @@ -9556,7 +9691,7 @@ msgid "" "by hand is no trivial task: @command{tmon} aims to make it understandable." msgstr "" -#: gnu/packages/linux.scm:6021 +#: gnu/packages/linux.scm:6065 msgid "" "Turbostat reports x86 processor topology, frequency, idle power state\n" "statistics, temperature, and power consumption. Some information is unavailable\n" @@ -9571,20 +9706,20 @@ msgid "" "invocations of itself." msgstr "" -#: gnu/packages/linux.scm:6080 +#: gnu/packages/linux.scm:6124 msgid "" "NTFS-3G provides read-write access to NTFS file systems, which are\n" "commonly found on Microsoft Windows. It is implemented as a FUSE file system.\n" "The package provides additional NTFS tools." msgstr "" -#: gnu/packages/linux.scm:6127 +#: gnu/packages/linux.scm:6171 msgid "" "This package provides a statically linked @command{ntfsfix} taken\n" "from the ntfs-3g package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:6174 +#: gnu/packages/linux.scm:6218 msgid "" "This package provides userspace components for the InfiniBand\n" "subsystem of the Linux kernel. Specifically it contains userspace\n" @@ -9604,7 +9739,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6228 +#: gnu/packages/linux.scm:6272 msgid "" "This is a collection of tests written over uverbs intended for\n" "use as a performance micro-benchmark. The tests may be used for hardware or\n" @@ -9620,20 +9755,20 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6270 +#: gnu/packages/linux.scm:6314 msgid "" "Monitor a hardware random number generator, and supply entropy\n" "from that to the system kernel's @file{/dev/random} machinery." msgstr "" -#: gnu/packages/linux.scm:6312 +#: gnu/packages/linux.scm:6356 msgid "" "cpupower is a set of user-space tools that use the cpufreq feature of the\n" "Linux kernel to retrieve and control processor features related to power saving,\n" "such as frequency and voltage scaling." msgstr "" -#: gnu/packages/linux.scm:6344 +#: gnu/packages/linux.scm:6388 msgid "" "@command{x86_energy_perf_policy} displays and updates energy-performance\n" "policy settings specific to Intel Architecture Processors. Settings are\n" @@ -9641,7 +9776,7 @@ msgid "" "cpufreq sub-system is enabled or not." msgstr "" -#: gnu/packages/linux.scm:6370 +#: gnu/packages/linux.scm:6414 msgid "" "haveged generates an unpredictable stream of random numbers for use by\n" "Linux's @file{/dev/random} and @file{/dev/urandom} devices. The kernel's\n" @@ -9659,7 +9794,7 @@ msgid "" "not as a replacement for it." msgstr "" -#: gnu/packages/linux.scm:6456 +#: gnu/packages/linux.scm:6500 msgid "" "eCryptfs is a POSIX-compliant stacked cryptographic file system for Linux.\n" "Each file's cryptographic meta-data is stored inside the file itself, along\n" @@ -9669,7 +9804,7 @@ msgid "" "2.6.19. This package contains the userland utilities to manage it." msgstr "" -#: gnu/packages/linux.scm:6488 +#: gnu/packages/linux.scm:6532 msgid "" "Libnfsidmap is a library holding mulitiple methods of\n" "mapping names to ids and visa versa, mainly for NFSv4. It provides an\n" @@ -9677,13 +9812,13 @@ msgid "" "the default @code{nsswitch} and the experimental @code{umich_ldap}." msgstr "" -#: gnu/packages/linux.scm:6524 +#: gnu/packages/linux.scm:6568 msgid "" "Tools for loading and managing Linux kernel modules, such as\n" "@code{modprobe}, @code{insmod}, @code{lsmod}, and more." msgstr "" -#: gnu/packages/linux.scm:6565 +#: gnu/packages/linux.scm:6609 msgid "" "The mcelog daemon logs memory, I/O, CPU, and other hardware errors on x86\n" "systems running the kernel Linux. It can also perform user-defined tasks, such\n" @@ -9691,13 +9826,13 @@ msgid "" "exceeded." msgstr "" -#: gnu/packages/linux.scm:6596 +#: gnu/packages/linux.scm:6640 msgid "" "This package provides utilities for testing, partitioning, etc\n" "of flash storage." msgstr "" -#: gnu/packages/linux.scm:6628 +#: gnu/packages/linux.scm:6672 msgid "" "The libseccomp library provides an easy to use, platform\n" "independent, interface to the Linux Kernel's syscall filtering mechanism. The\n" @@ -9707,7 +9842,7 @@ msgid "" "developers." msgstr "" -#: gnu/packages/linux.scm:6671 +#: gnu/packages/linux.scm:6715 msgid "" "RadeonTop monitors resource consumption on supported AMD\n" "Radeon Graphics Processing Units (GPUs), either in real time as bar graphs on\n" @@ -9717,13 +9852,13 @@ msgid "" "under OpenGL graphics workloads." msgstr "" -#: gnu/packages/linux.scm:6718 +#: gnu/packages/linux.scm:6762 msgid "" "This package provides a library and a command line\n" "interface to the variable facility of UEFI boot firmware." msgstr "" -#: gnu/packages/linux.scm:6755 +#: gnu/packages/linux.scm:6799 msgid "" "@code{efibootmgr} is a user-space application to modify the Intel\n" "Extensible Firmware Interface (EFI) Boot Manager. This application can\n" @@ -9731,7 +9866,7 @@ msgid "" "running boot option, and more." msgstr "" -#: gnu/packages/linux.scm:6791 +#: gnu/packages/linux.scm:6835 msgid "" "The sysstat utilities are a collection of performance\n" "monitoring tools for Linux. These include @code{mpstat}, @code{iostat},\n" @@ -9739,7 +9874,7 @@ msgid "" "@code{sadf} and @code{sa}." msgstr "" -#: gnu/packages/linux.scm:6832 +#: gnu/packages/linux.scm:6876 msgid "" "Light is a program to send commands to screen backlight controllers\n" "under GNU/Linux. Features include:\n" @@ -9753,7 +9888,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/linux.scm:6880 +#: gnu/packages/linux.scm:6924 msgid "" "This program allows you read and control device brightness. Devices\n" "include backlight and LEDs. It can also preserve current brightness before\n" @@ -9763,7 +9898,7 @@ msgid "" "interface in sysfs, which can be accomplished with the included udev rules." msgstr "" -#: gnu/packages/linux.scm:7007 +#: gnu/packages/linux.scm:7048 msgid "" "TLP is a power management tool for Linux. It comes with\n" "a default configuration already optimized for battery life. Nevertheless,\n" @@ -9771,7 +9906,7 @@ msgid "" "every time the power supply source is changed." msgstr "" -#: gnu/packages/linux.scm:7073 +#: gnu/packages/linux.scm:7114 msgid "" "The Python scripts in this project generate a GTK-UI to change\n" "TLP configuration files easily. It aims to protect users from setting\n" @@ -9779,7 +9914,7 @@ msgid "" "configuration values." msgstr "" -#: gnu/packages/linux.scm:7099 +#: gnu/packages/linux.scm:7140 msgid "" "@command{lshw} (Hardware Lister) is a small tool to provide\n" "detailed information on the hardware configuration of the machine.\n" @@ -9789,7 +9924,7 @@ msgid "" "machines (PowerMac G4 is known to work)." msgstr "" -#: gnu/packages/linux.scm:7123 +#: gnu/packages/linux.scm:7164 msgid "" "Libmnl is a minimalistic user-space library oriented to\n" "Netlink developers. There are a lot of common tasks in parsing, validating,\n" @@ -9798,7 +9933,7 @@ msgid "" "re-use code and to avoid re-inventing the wheel." msgstr "" -#: gnu/packages/linux.scm:7148 +#: gnu/packages/linux.scm:7189 msgid "" "Libnftnl is a userspace library providing a low-level netlink\n" "programming interface to the in-kernel nf_tables subsystem. The library\n" @@ -9806,7 +9941,7 @@ msgid "" "used by nftables." msgstr "" -#: gnu/packages/linux.scm:7194 +#: gnu/packages/linux.scm:7235 msgid "" "nftables is the project that aims to replace the existing\n" "{ip,ip6,arp,eb}tables framework. Basically, this project provides a new packet\n" @@ -9816,7 +9951,7 @@ msgid "" "userspace queueing component and the logging subsystem." msgstr "" -#: gnu/packages/linux.scm:7336 +#: gnu/packages/linux.scm:7377 msgid "" "PRoot is a user-space implementation of @code{chroot}, @code{mount --bind},\n" "and @code{binfmt_misc}. This means that users don't need any privileges or\n" @@ -9829,7 +9964,7 @@ msgid "" "available in the kernel Linux." msgstr "" -#: gnu/packages/linux.scm:7399 +#: gnu/packages/linux.scm:7437 msgid "" "cpuid dumps detailed information about the CPU(s) gathered\n" "from the CPUID instruction, and also determines the exact model of CPU(s). It\n" @@ -9837,14 +9972,14 @@ msgid "" "NexGen, Rise, and SiS CPUs." msgstr "" -#: gnu/packages/linux.scm:7426 +#: gnu/packages/linux.scm:7464 msgid "" "jmtpfs uses FUSE (file system in userspace) to provide access\n" "to data over the Media Transfer Protocol (MTP). Unprivileged users can mount\n" "the MTP device as a file system." msgstr "" -#: gnu/packages/linux.scm:7453 +#: gnu/packages/linux.scm:7491 msgid "" "Procenv is a command-line tool that displays as much detail about\n" "itself and its environment as possible. It can be used as a test\n" @@ -9852,7 +9987,7 @@ msgid "" "comparing system environments." msgstr "" -#: gnu/packages/linux.scm:7482 +#: gnu/packages/linux.scm:7520 msgid "" "OpenFabrics Interfaces (OFI) is a framework focused on exporting fabric\n" "communication services to applications. OFI is best described as a collection\n" @@ -9866,7 +10001,7 @@ msgid "" "libraries, which are often integrated directly into libfabric." msgstr "" -#: gnu/packages/linux.scm:7544 +#: gnu/packages/linux.scm:7582 msgid "" "The PSM Messaging API, or PSM API, is Intel's low-level user-level\n" "communications interface for the True Scale family of products. PSM users are\n" @@ -9874,14 +10009,14 @@ msgid "" "interfaces in parallel environments." msgstr "" -#: gnu/packages/linux.scm:7587 +#: gnu/packages/linux.scm:7625 msgid "" "snapscreenshot saves a screenshot of one or more Linux text consoles as a\n" "Targa (@dfn{.tga}) image. It can be used by anyone with read access to the\n" "relevant @file{/dev/vcs*} file(s)." msgstr "" -#: gnu/packages/linux.scm:7641 +#: gnu/packages/linux.scm:7679 msgid "" "fbcat saves the contents of the Linux framebuffer (@file{/dev/fb*}), or\n" "a dump therof. It supports a wide range of drivers and pixel formats.\n" @@ -9893,14 +10028,14 @@ msgid "" "emulates the behaviour of Gunnar Monell's older fbgrab utility." msgstr "" -#: gnu/packages/linux.scm:7672 +#: gnu/packages/linux.scm:7710 msgid "" "Control groups is Linux kernel method for process resource\n" "restriction, permission handling and more. This package provides userspace\n" "interface to this kernel feature." msgstr "" -#: gnu/packages/linux.scm:7707 +#: gnu/packages/linux.scm:7745 msgid "" "mbpfan is a fan control daemon for Apple Macbooks. It uses input from\n" "the @code{coretemp} module and sets the fan speed using the @code{applesmc}\n" @@ -9908,7 +10043,7 @@ msgid "" "privileges." msgstr "" -#: gnu/packages/linux.scm:7751 +#: gnu/packages/linux.scm:7789 msgid "" "This package is low-level user-level Intel's communications interface.\n" "The PSM2 API is a high-performance vendor-specific protocol that provides a\n" @@ -9916,7 +10051,7 @@ msgid "" "high-speed networking devices." msgstr "" -#: gnu/packages/linux.scm:7794 +#: gnu/packages/linux.scm:7832 msgid "" "This package provides a library called libpfm4, which is used to develop\n" "monitoring tools exploiting the performance monitoring events such as those\n" @@ -9931,7 +10066,7 @@ msgid "" "introduced in Linux 2.6.31." msgstr "" -#: gnu/packages/linux.scm:7824 +#: gnu/packages/linux.scm:7862 msgid "" "@code{libnfnetlink} is the low-level library for netfilter related\n" "kernel/userspace communication. It provides a generic messaging\n" @@ -9940,7 +10075,7 @@ msgid "" "management tools in userspace." msgstr "" -#: gnu/packages/linux.scm:7851 +#: gnu/packages/linux.scm:7889 msgid "" "The netlink package provides a simple netlink library for\n" "Go. Netlink is the interface a user-space program in Linux uses to\n" @@ -9948,7 +10083,7 @@ msgid "" "IP addresses and routes, and configure IPsec." msgstr "" -#: gnu/packages/linux.scm:7891 +#: gnu/packages/linux.scm:7929 msgid "" "The inih (INI Not Invented Here) library is a simple .INI file\n" "parser written in C. It's only a couple of pages of code, and it was designed to\n" @@ -9957,19 +10092,19 @@ msgid "" "822-style multi-line syntax and name: value entries." msgstr "" -#: gnu/packages/linux.scm:7942 +#: gnu/packages/linux.scm:7980 msgid "" "This package provides commands to create and check XFS\n" "file systems." msgstr "" -#: gnu/packages/linux.scm:7998 +#: gnu/packages/linux.scm:8036 msgid "" "This package provides a statically linked @command{xfs_repair} taken\n" "from the xfsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:8034 +#: gnu/packages/linux.scm:8072 msgid "" "This package provides a program to generate an ext2\n" "file system as a normal (non-root) user. It does not require you to mount\n" @@ -9977,7 +10112,7 @@ msgid "" "the superuser to make device nodes." msgstr "" -#: gnu/packages/linux.scm:8129 +#: gnu/packages/linux.scm:8167 msgid "" "@command{fakeroot} runs a command in an environment where it appears to\n" "have root privileges for file manipulation. This is useful for allowing users\n" @@ -9990,7 +10125,7 @@ msgid "" "without using the archiver." msgstr "" -#: gnu/packages/linux.scm:8169 +#: gnu/packages/linux.scm:8207 msgid "" "@command{fakechroot} runs a command in an environment were is additional\n" "possibility to use @code{chroot} command without root privileges. This is\n" @@ -10001,13 +10136,13 @@ msgid "" "set as @code{LD_PRELOAD} to override the C library file system functions." msgstr "" -#: gnu/packages/linux.scm:8215 +#: gnu/packages/linux.scm:8253 msgid "" "inputattach dispatches input events from several device\n" "types and interfaces and translates so that the X server can use them." msgstr "" -#: gnu/packages/linux.scm:8251 +#: gnu/packages/linux.scm:8289 msgid "" "PipeWire is a project that aims to greatly improve handling of audio and\n" "video under Linux. It aims to support the usecases currently handled by both\n" @@ -10019,7 +10154,7 @@ msgid "" "of Linux application development." msgstr "" -#: gnu/packages/linux.scm:8318 +#: gnu/packages/linux.scm:8356 msgid "" "WirePlumber is a modular session / policy manager for\n" "PipeWire and a GObject-based high-level library that wraps PipeWire's API,\n" @@ -10027,7 +10162,7 @@ msgid "" "tools for managing PipeWire." msgstr "" -#: gnu/packages/linux.scm:8357 +#: gnu/packages/linux.scm:8395 msgid "" "The Embedded Linux* Library (ELL) provides core, low-level\n" "functionality for system daemons. It typically has no dependencies other than\n" @@ -10036,7 +10171,7 @@ msgid "" "platforms, it is not limited to resource-constrained systems." msgstr "" -#: gnu/packages/linux.scm:8386 +#: gnu/packages/linux.scm:8424 msgid "" "This package provides the @code{kexec} program and ancillary\n" "utilities. Using @code{kexec}, it is possible to boot directly into a new\n" @@ -10044,7 +10179,7 @@ msgid "" "system boot process." msgstr "" -#: gnu/packages/linux.scm:8419 +#: gnu/packages/linux.scm:8457 msgid "" "@code{cachefilesd} is a userspace daemon that manages the\n" "cache data store that is used by network file systems such as @code{AFS} and\n" @@ -10052,14 +10187,14 @@ msgid "" "persistent over reboots." msgstr "" -#: gnu/packages/linux.scm:8463 +#: gnu/packages/linux.scm:8501 msgid "" "Libbpf supports building BPF CO-RE-enabled applications, which, in\n" "contrast to BCC, do not require the Clang/LLVM runtime or linux kernel\n" "headers." msgstr "" -#: gnu/packages/linux.scm:8541 +#: gnu/packages/linux.scm:8579 msgid "" "BCC is a toolkit for creating efficient kernel tracing and manipulation\n" "programs, and includes several useful tools and examples. It makes use of\n" @@ -10068,7 +10203,7 @@ msgid "" "and above." msgstr "" -#: gnu/packages/linux.scm:8577 +#: gnu/packages/linux.scm:8615 msgid "" "bpftrace is a high-level tracing language for Linux enhanced Berkeley\n" "Packet Filter (eBPF) available in recent Linux kernels (4.x). bpftrace uses\n" @@ -10080,14 +10215,14 @@ msgid "" "created by Alastair Robertson." msgstr "" -#: gnu/packages/linux.scm:8609 +#: gnu/packages/linux.scm:8647 msgid "" "This package provides a Linux kernel module that will\n" "provide a serial device @code{/dev/ttyebus} with almost no latency upon\n" "receiving. It is dedicated to the PL011 UART of the Raspberry Pi." msgstr "" -#: gnu/packages/linux.scm:8635 +#: gnu/packages/linux.scm:8673 msgid "" "IP sets are a framework inside the Linux 2.4.x and 2.6.x kernel which\n" "can be administered by the ipset utility. Depending on the type,\n" @@ -10108,7 +10243,7 @@ msgid "" "then IP sets may be the proper tool for you." msgstr "" -#: gnu/packages/linux.scm:8682 +#: gnu/packages/linux.scm:8720 msgid "" "This is the io_uring library, liburing. liburing provides\n" "helpers to setup and teardown io_uring instances, and also a simplified\n" @@ -10116,14 +10251,14 @@ msgid "" "kernel side implementation." msgstr "" -#: gnu/packages/linux.scm:8710 +#: gnu/packages/linux.scm:8748 msgid "" "@acronym{EROFS, The Enhanced Read-Only File System} is a compressed,\n" "read-only file system optimized for resource-scarce devices. This package\n" "provides user-space tools for creating EROFS file systems." msgstr "" -#: gnu/packages/linux.scm:8754 +#: gnu/packages/linux.scm:8792 msgid "" "The @code{rasdaemon} daemon monitors platform @acronym{RAS, Reliability\n" "Availability and Serviceability} reports from Linux kernel trace events.\n" @@ -10131,7 +10266,7 @@ msgid "" "through standard log mechanisms like syslog." msgstr "" -#: gnu/packages/linux.scm:8788 +#: gnu/packages/linux.scm:8826 msgid "" "This package provides a C library with C++/Python bindings and\n" "command-line tools for interacting with GPIO devices that avoids the usage of\n" @@ -10157,33 +10292,33 @@ msgid "" "beginning." msgstr "" -#: gnu/packages/messaging.scm:181 +#: gnu/packages/messaging.scm:183 msgid "" "OMEMO-wget is a tool to handle cryptographic URLs, generated\n" "by @acronym{OMEMO, OMEMO Multi-End Message and Object Encryption}, during\n" "XMPP-based sessions." msgstr "" -#: gnu/packages/messaging.scm:237 +#: gnu/packages/messaging.scm:239 msgid "" "Psi is a capable XMPP client aimed at experienced users.\n" "Its design goals are simplicity and stability." msgstr "" -#: gnu/packages/messaging.scm:295 +#: gnu/packages/messaging.scm:297 msgid "" "GNT is an ncurses toolkit for creating text-mode graphical\n" "user interfaces in a fast and easy way. It is based on GLib and ncurses." msgstr "" -#: gnu/packages/messaging.scm:346 +#: gnu/packages/messaging.scm:348 msgid "" "LibGadu is library for handling Gadu-Gadu instant messenger\n" "protocol. The library is written in C and aims to be operating system and\n" "environment independent." msgstr "" -#: gnu/packages/messaging.scm:381 +#: gnu/packages/messaging.scm:383 msgid "" "SILC (Secure Internet Live Conferencing) is a modern and secure\n" "conferencing protocol. It provides all the common conferencing services like\n" @@ -10191,14 +10326,14 @@ msgid "" "conferencing." msgstr "" -#: gnu/packages/messaging.scm:427 +#: gnu/packages/messaging.scm:429 msgid "" "QXmpp is a XMPP client and server library written in C++ and uses the Qt\n" "framework. It builds XMPP clients complying with the XMPP Compliance Suites\n" "2021 for IM and Advanced Mobile." msgstr "" -#: gnu/packages/messaging.scm:454 +#: gnu/packages/messaging.scm:456 msgid "" "Meanwhile is a library for connecting to a LIM (Lotus Instant\n" "Messaging, formerly Lotus Sametime, formerly VPBuddy) community. It uses a\n" @@ -10206,7 +10341,7 @@ msgid "" "TCP sessions from existing clients." msgstr "" -#: gnu/packages/messaging.scm:500 +#: gnu/packages/messaging.scm:502 msgid "" "Poezio is a free console XMPP client (the protocol on which\n" "the Jabber IM network is built).\n" @@ -10219,7 +10354,7 @@ msgid "" "powerful, standard and open protocol." msgstr "" -#: gnu/packages/messaging.scm:533 +#: gnu/packages/messaging.scm:535 msgid "" "OTR allows you to have private conversations over instant\n" "messaging by providing: (1) Encryption: No one else can read your instant\n" @@ -10232,7 +10367,7 @@ msgid "" "your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:572 +#: gnu/packages/messaging.scm:574 msgid "" "libsignal-protocol-c is an implementation of a ratcheting\n" "forward secrecy protocol that works in synchronous and asynchronous\n" @@ -10240,20 +10375,20 @@ msgid "" "end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:609 +#: gnu/packages/messaging.scm:611 msgid "" "This is a client library for @code{libsignal-protocol-c}.\n" "It implements the necessary interfaces using @code{libgcrypt} and\n" "@code{sqlite}." msgstr "" -#: gnu/packages/messaging.scm:641 +#: gnu/packages/messaging.scm:643 msgid "" "This library implements @acronym{OMEMO, OMEMO Multi-End\n" "Message and Object Encryption} of XMPP (XEP-0384) in C." msgstr "" -#: gnu/packages/messaging.scm:681 +#: gnu/packages/messaging.scm:683 msgid "" "BitlBee brings IM (instant messaging) to IRC clients, for\n" "people who have an IRC client running all the time and don't want to run an\n" @@ -10263,20 +10398,20 @@ msgid "" "identi.ca and status.net)." msgstr "" -#: gnu/packages/messaging.scm:748 +#: gnu/packages/messaging.scm:750 msgid "" "Bitlbee-discord is a plugin for Bitlbee which provides\n" "access to servers running the Discord protocol." msgstr "" -#: gnu/packages/messaging.scm:794 +#: gnu/packages/messaging.scm:796 msgid "" "Purple-Mattermost is a plug-in for Purple, the instant messaging library\n" "used by Pidgin and Bitlbee, among others, to access\n" "@uref{https://mattermost.com/, Mattermost} servers." msgstr "" -#: gnu/packages/messaging.scm:852 +#: gnu/packages/messaging.scm:854 msgid "" "HexChat lets you connect to multiple IRC networks at once. The main\n" "window shows the list of currently connected networks and their channels, the\n" @@ -10285,7 +10420,7 @@ msgid "" "dictionaries. HexChat can be extended with multiple addons." msgstr "" -#: gnu/packages/messaging.scm:917 +#: gnu/packages/messaging.scm:919 msgid "" "ngIRCd is a lightweight @dfn{Internet Relay Chat} (IRC) server for small\n" "or private networks. It is easy to configure, can cope with dynamic IP\n" @@ -10293,13 +10428,13 @@ msgid "" "authentication." msgstr "" -#: gnu/packages/messaging.scm:1024 +#: gnu/packages/messaging.scm:1026 msgid "" "Pidgin is a modular instant messaging client that supports\n" "many popular chat protocols." msgstr "" -#: gnu/packages/messaging.scm:1064 +#: gnu/packages/messaging.scm:1066 msgid "" "Pidgin-OTR is a plugin that adds support for OTR to the Pidgin\n" "instant messaging client. OTR (Off-the-Record) Messaging allows you to have\n" @@ -10313,7 +10448,7 @@ msgid "" "control of your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:1118 +#: gnu/packages/messaging.scm:1120 msgid "" "ZNC is an @dfn{IRC network bouncer} or @dfn{BNC}. It can\n" "detach the client from the actual IRC server, and also from selected channels.\n" @@ -10321,41 +10456,41 @@ msgid "" "simultaneously and therefore appear under the same nickname on IRC." msgstr "" -#: gnu/packages/messaging.scm:1147 +#: gnu/packages/messaging.scm:1149 msgid "" "Python-nbxmpp is a Python library that provides a way for\n" "Python applications to use the XMPP network. This library was initially a fork\n" "of xmpppy." msgstr "" -#: gnu/packages/messaging.scm:1274 +#: gnu/packages/messaging.scm:1276 msgid "" "Gajim aims to be an easy to use and fully-featured XMPP chat\n" "client. It is extensible via plugins, supports end-to-end encryption (OMEMO\n" "and OpenPGP) and available in 29 languages." msgstr "" -#: gnu/packages/messaging.scm:1309 +#: gnu/packages/messaging.scm:1311 msgid "" "Gajim-OMEMO is a plugin that adds support for the OMEMO\n" "Encryption to Gajim. OMEMO is an XMPP Extension Protocol (XEP) for secure\n" "multi-client end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:1344 +#: gnu/packages/messaging.scm:1346 msgid "" "Gajim-OpenPGP is a plugin that adds support for the OpenPGP\n" "Encryption to Gajim." msgstr "" -#: gnu/packages/messaging.scm:1418 +#: gnu/packages/messaging.scm:1420 msgid "" "Dino is a chat client for the desktop. It focuses on providing\n" "a minimal yet reliable Jabber/XMPP experience and having encryption enabled by\n" "default." msgstr "" -#: gnu/packages/messaging.scm:1505 +#: gnu/packages/messaging.scm:1507 msgid "" "Prosody is a modern XMPP communication server. It aims to\n" "be easy to set up and configure, and efficient with system resources.\n" @@ -10364,43 +10499,43 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/messaging.scm:1540 +#: gnu/packages/messaging.scm:1542 msgid "" "This module implements XEP-0363: it allows clients to\n" "upload files over HTTP." msgstr "" -#: gnu/packages/messaging.scm:1572 +#: gnu/packages/messaging.scm:1574 msgid "" "This module implements XEP-0198: when supported by both\n" "the client and server, it can allow clients to resume a disconnected session,\n" "and prevent message loss." msgstr "" -#: gnu/packages/messaging.scm:1601 +#: gnu/packages/messaging.scm:1603 msgid "C library implementation of the Tox encrypted messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1633 +#: gnu/packages/messaging.scm:1635 msgid "" "Official fork of the C library implementation of the Tox encrypted\n" "messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1687 +#: gnu/packages/messaging.scm:1689 msgid "" "uTox is a lightweight Tox client. Tox is a distributed and secure\n" "instant messenger with audio and video chat capabilities." msgstr "" -#: gnu/packages/messaging.scm:1750 +#: gnu/packages/messaging.scm:1752 msgid "" "qTox is a Tox client that follows the Tox design\n" "guidelines. It provides an easy to use application that allows you to\n" "connect with friends and family without anyone else listening in." msgstr "" -#: gnu/packages/messaging.scm:1772 +#: gnu/packages/messaging.scm:1774 msgid "" "Ytalk is a replacement for the BSD talk program. Its main\n" "advantage is the ability to communicate with any arbitrary number of users at\n" @@ -10408,7 +10543,7 @@ msgid "" "with several different talk daemons at the same time." msgstr "" -#: gnu/packages/messaging.scm:1796 +#: gnu/packages/messaging.scm:1798 msgid "" "gloox is a full-featured Jabber/XMPP client library,\n" "written in ANSI C++. It makes writing spec-compliant clients easy\n" @@ -10416,7 +10551,7 @@ msgid "" "into existing applications." msgstr "" -#: gnu/packages/messaging.scm:1866 +#: gnu/packages/messaging.scm:1868 msgid "" "@code{Net::PSYC} with support for TCP, UDP, Event.pm, @code{IO::Select} and\n" "Gtk2 event loops. This package includes 12 applications and additional scripts:\n" @@ -10424,14 +10559,14 @@ msgid "" "for @uref{https://torproject.org,tor} router) and many more." msgstr "" -#: gnu/packages/messaging.scm:1907 +#: gnu/packages/messaging.scm:1909 msgid "" "@code{libpsyc} is a PSYC library in C which implements\n" "core aspects of PSYC, useful for all kinds of clients and servers\n" "including psyced." msgstr "" -#: gnu/packages/messaging.scm:1949 +#: gnu/packages/messaging.scm:1951 msgid "" "Loudmouth is a lightweight and easy-to-use C library for programming\n" "with the XMPP (formerly known as Jabber) protocol. It is designed to be\n" @@ -10439,7 +10574,7 @@ msgid "" "protocol allows." msgstr "" -#: gnu/packages/messaging.scm:1991 +#: gnu/packages/messaging.scm:1993 msgid "" "Mcabber is a small XMPP (Jabber) console client, which includes features\n" "such as SASL and TLS support, @dfn{Multi-User Chat} (MUC) support, logging,\n" @@ -10447,7 +10582,7 @@ msgid "" "support, and more." msgstr "" -#: gnu/packages/messaging.scm:2039 +#: gnu/packages/messaging.scm:2041 msgid "" "GNU Freetalk is a command-line Jabber/XMPP chat client. It notably uses\n" "the Readline library to handle input, so it features convenient navigation of\n" @@ -10455,27 +10590,27 @@ msgid "" "is also scriptable and extensible via Guile." msgstr "" -#: gnu/packages/messaging.scm:2074 +#: gnu/packages/messaging.scm:2076 msgid "" "Libmesode is a fork of libstrophe for use with Profanity\n" "XMPP Client. In particular, libmesode provides extra TLS functionality such as\n" "manual SSL certificate verification." msgstr "" -#: gnu/packages/messaging.scm:2109 +#: gnu/packages/messaging.scm:2111 msgid "" "Libstrophe is a minimal XMPP library written in C. It has\n" "almost no external dependencies, only an XML parsing library (expat or libxml\n" "are both supported)." msgstr "" -#: gnu/packages/messaging.scm:2167 +#: gnu/packages/messaging.scm:2169 msgid "" "Profanity is a console based XMPP client written in C\n" "using ncurses and libmesode, inspired by Irssi." msgstr "" -#: gnu/packages/messaging.scm:2197 +#: gnu/packages/messaging.scm:2199 msgid "" "Libircclient is a library which implements the client IRC\n" "protocol. It is designed to be small, fast, portable and compatible with the\n" @@ -10483,14 +10618,14 @@ msgid "" "building the IRC clients and bots." msgstr "" -#: gnu/packages/messaging.scm:2255 +#: gnu/packages/messaging.scm:2257 msgid "" "Toxic is a console-based instant messaging client, using\n" "c-toxcore and ncurses. It provides audio calls, sound and desktop\n" "notifications, and Python scripting support." msgstr "" -#: gnu/packages/messaging.scm:2281 +#: gnu/packages/messaging.scm:2283 msgid "" "libqmatrixclient is a Qt5 library to write clients for the\n" "Matrix instant messaging protocol. Quaternion is the reference client\n" @@ -10498,13 +10633,13 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2326 +#: gnu/packages/messaging.scm:2330 msgid "" "@code{mtxclient} is a C++ library that implements client API\n" "for the Matrix protocol. It is built on to of @code{Boost.Asio}." msgstr "" -#: gnu/packages/messaging.scm:2418 +#: gnu/packages/messaging.scm:2423 msgid "" "@code{Nheko} want to provide a native desktop app for the\n" "Matrix protocol that feels more like a mainstream chat app and less like an IRC\n" @@ -10514,7 +10649,7 @@ msgid "" "notification, emojis, E2E encryption, and voip calls." msgstr "" -#: gnu/packages/messaging.scm:2455 +#: gnu/packages/messaging.scm:2460 msgid "" "Quaternion is a Qt5 desktop client for the Matrix instant\n" "messaging protocol. It uses libqmatrixclient and is its reference client\n" @@ -10522,7 +10657,7 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2502 +#: gnu/packages/messaging.scm:2507 msgid "" "Hangups is an instant messaging client for Google Hangouts. It includes\n" "both a Python library and a reference client with a text-based user interface.\n" @@ -10532,7 +10667,7 @@ msgid "" "messaging that aren’t available to clients that connect over XMPP." msgstr "" -#: gnu/packages/messaging.scm:2584 +#: gnu/packages/messaging.scm:2589 msgid "" "Telegram-purple is a plugin for Libpurple, the communication library\n" "used by the Pidgin instant messaging client, that adds support for the\n" @@ -10542,7 +10677,7 @@ msgid "" "replacement." msgstr "" -#: gnu/packages/messaging.scm:2629 +#: gnu/packages/messaging.scm:2632 msgid "" "Tdlib is a cross-platform library for creating custom\n" "Telegram clients following the official Telegram API. It can be easily used\n" @@ -10550,11 +10685,11 @@ msgid "" "support for high performance Telegram Bot creation." msgstr "" -#: gnu/packages/messaging.scm:2667 +#: gnu/packages/messaging.scm:2670 msgid "Plugin for libpurple to allow sending SMS using ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2712 +#: gnu/packages/messaging.scm:2715 msgid "" "Purple-lurch plugin adds end-to-end encryption support\n" "through the Double Ratchet (Axolotl) algorithm, to @code{libpurple}\n" @@ -10565,19 +10700,19 @@ msgid "" "asynchronicity." msgstr "" -#: gnu/packages/messaging.scm:2748 +#: gnu/packages/messaging.scm:2751 msgid "" "This package provides a C++ library for parsing, formatting, and\n" "validating international phone numbers." msgstr "" -#: gnu/packages/messaging.scm:2793 +#: gnu/packages/messaging.scm:2796 msgid "" "Chatty is a chat program for XMPP and SMS. It works on mobile\n" "as well as on desktop platforms. It's based on libpurple and ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2814 +#: gnu/packages/messaging.scm:2817 msgid "" "This package provides Eclipse Mosquitto, a message broker\n" "that implements the MQTT protocol versions 5.0, 3.1.1 and 3.1. Mosquitto\n" @@ -10590,27 +10725,27 @@ msgid "" "as phones, embedded computers or microcontrollers." msgstr "" -#: gnu/packages/messaging.scm:2864 +#: gnu/packages/messaging.scm:2867 msgid "" "Movim-Desktop is a desktop application, relying on Qt, for the Movim\n" "social and chat platform." msgstr "" -#: gnu/packages/messaging.scm:2999 +#: gnu/packages/messaging.scm:3002 msgid "" "Psi+ is a spin-off of Psi XMPP client. It is a powerful XMPP client\n" "designed for experienced users." msgstr "" -#: gnu/packages/messaging.scm:3039 +#: gnu/packages/messaging.scm:3042 msgid "This package provides Python bindings to Zulip's API." msgstr "" -#: gnu/packages/messaging.scm:3088 +#: gnu/packages/messaging.scm:3091 msgid "This package contains Zulip's official terminal client." msgstr "" -#: gnu/packages/messaging.scm:3110 +#: gnu/packages/messaging.scm:3113 msgid "" "Relays messages between different channels from various\n" "messaging networks and protocols. So far it supports mattermost, IRC, gitter,\n" @@ -10619,20 +10754,20 @@ msgid "" "API. Mattermost is not required." msgstr "" -#: gnu/packages/messaging.scm:3143 +#: gnu/packages/messaging.scm:3146 msgid "" "@command{pounce} is a multi-client, TLS-only IRC bouncer. It maintains\n" "a persistent connection to an IRC server, acting as a proxy and buffer for\n" "a number of clients." msgstr "" -#: gnu/packages/messaging.scm:3209 +#: gnu/packages/messaging.scm:3212 msgid "" "@code{weechat-matrix} is a Python plugin for Weechat that lets\n" "Weechat communicate over the Matrix protocol." msgstr "" -#: gnu/packages/messaging.scm:3256 +#: gnu/packages/messaging.scm:3259 msgid "" "@code{weechat-wee-slack} is a WeeChat native client for\n" "Slack. It provides supplemental features only available in the web/mobile\n" @@ -10741,14 +10876,14 @@ msgid "" "themselves." msgstr "" -#: gnu/packages/networking.scm:174 +#: gnu/packages/networking.scm:176 msgid "" "UsrSCTP is a portable SCTP userland stack. SCTP is a message\n" "oriented, reliable transport protocol with direct support for multihoming that\n" "runs on top of IP or UDP, and supports both v4 and v6 versions." msgstr "" -#: gnu/packages/networking.scm:199 +#: gnu/packages/networking.scm:201 msgid "" "Axel tries to accelerate the download process by using multiple\n" "connections per file, and can also balance the load between different\n" @@ -10757,38 +10892,38 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/networking.scm:264 +#: gnu/packages/networking.scm:266 msgid "" "LibCamera is a complex camera support library for GNU+Linux,\n" "Android, and ChromeOS." msgstr "" -#: gnu/packages/networking.scm:334 +#: gnu/packages/networking.scm:336 msgid "" "LibNice is a library that implements the Interactive\n" "Connectivity Establishment (ICE) standard (RFC 5245 & RFC 8445). It provides a\n" "GLib-based library, libnice, as well as GStreamer elements to use it." msgstr "" -#: gnu/packages/networking.scm:393 +#: gnu/packages/networking.scm:395 msgid "" "RTMPdump is a toolkit for RTMP streams. All forms of RTMP are\n" "supported, including rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps://." msgstr "" -#: gnu/packages/networking.scm:422 +#: gnu/packages/networking.scm:424 msgid "" "Slurm is a network load monitor. It shows real-time traffic statistics\n" "from any network device in any of three ASCII graph formats." msgstr "" -#: gnu/packages/networking.scm:457 +#: gnu/packages/networking.scm:459 msgid "" "SRT is a transport technology that optimizes streaming\n" "performance across unpredictable networks, such as the Internet." msgstr "" -#: gnu/packages/networking.scm:500 +#: gnu/packages/networking.scm:502 msgid "" "The lksctp-tools project provides a user-space library for @acronym{SCTP,\n" "the Stream Control Transmission Protocol} (@file{libsctp}) and C language header\n" @@ -10797,13 +10932,13 @@ msgid "" "It also includes some SCTP-related helper utilities." msgstr "" -#: gnu/packages/networking.scm:541 +#: gnu/packages/networking.scm:543 msgid "" "@code{pysctp} implements the SCTP socket API. You need a\n" "SCTP-aware kernel (most are)." msgstr "" -#: gnu/packages/networking.scm:565 +#: gnu/packages/networking.scm:567 msgid "" "@command{knockd} is a port-knock daemon. It listens to all traffic on\n" "an ethernet or PPP interface, looking for special \"knock\" sequences of @dfn{port-hits}\n" @@ -10811,7 +10946,7 @@ msgid "" "at the link-layer level." msgstr "" -#: gnu/packages/networking.scm:605 +#: gnu/packages/networking.scm:607 msgid "" "NNG project is a rewrite of the scalability protocols library\n" "known as libnanomsg, and adds significant new capabilities, while retaining\n" @@ -10820,7 +10955,7 @@ msgid "" "publish/subscribe, RPC-style request/reply, or service discovery." msgstr "" -#: gnu/packages/networking.scm:648 +#: gnu/packages/networking.scm:650 msgid "" "Nanomsg is a socket library that provides several common\n" "communication patterns. It aims to make the networking layer fast, scalable,\n" @@ -10828,14 +10963,14 @@ msgid "" "systems with no further dependencies." msgstr "" -#: gnu/packages/networking.scm:758 +#: gnu/packages/networking.scm:760 msgid "" "Blueman is a Bluetooth management utility using the Bluez\n" "D-Bus backend. It is designed to be easy to use for most common Bluetooth\n" "tasks." msgstr "" -#: gnu/packages/networking.scm:783 +#: gnu/packages/networking.scm:785 msgid "" "GNU MAC Changer is a utility for viewing and changing MAC\n" "addresses of networking devices. New addresses may be set explicitly or\n" @@ -10843,14 +10978,14 @@ msgid "" "or, more generally, MAC addresses of the same category of hardware." msgstr "" -#: gnu/packages/networking.scm:831 +#: gnu/packages/networking.scm:833 msgid "" "Miredo is an implementation (client, relay, server) of the Teredo\n" "specification, which provides IPv6 Internet connectivity to IPv6 enabled hosts\n" "residing in IPv4-only networks, even when they are behind a NAT device." msgstr "" -#: gnu/packages/networking.scm:851 +#: gnu/packages/networking.scm:853 msgid "" "NDisc6 is a collection of tools for IPv6 networking diagnostics.\n" "It includes the following programs:\n" @@ -10864,7 +10999,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:904 +#: gnu/packages/networking.scm:906 msgid "" "@command{parprouted} is a daemon for transparent IP (Layer@tie{}3)\n" "proxy ARP bridging. Unlike standard bridging, proxy ARP bridging can bridge\n" @@ -10874,7 +11009,14 @@ msgid "" "useful for making transparent firewalls." msgstr "" -#: gnu/packages/networking.scm:931 +#: gnu/packages/networking.scm:945 +msgid "" +"@command{pproxy} is an asynchronuous proxy server implemented with\n" +"Python 3 @code{asyncio}. Among the supported protocols are HTTP, SOCKS\n" +"and SSH, and it can use both TCP and UDP as transport mechanisms." +msgstr "" + +#: gnu/packages/networking.scm:969 msgid "" "socat is a relay for bidirectional data transfer between two independent\n" "data channels---files, pipes, devices, sockets, etc. It can create\n" @@ -10887,7 +11029,7 @@ msgid "" "or server shell scripts with network connections." msgstr "" -#: gnu/packages/networking.scm:962 +#: gnu/packages/networking.scm:1000 msgid "" "mbuffer is a tool for buffering data streams with a large set of features:\n" "\n" @@ -10903,14 +11045,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1058 +#: gnu/packages/networking.scm:1096 msgid "" "With this package you can monitor and filter incoming requests for\n" "network services. It includes a library which may be used by daemons to\n" "transparently check connection attempts against an access control list." msgstr "" -#: gnu/packages/networking.scm:1081 +#: gnu/packages/networking.scm:1119 msgid "" "The 0MQ lightweight messaging kernel is a library which extends the\n" "standard socket interfaces with features traditionally provided by specialized\n" @@ -10920,46 +11062,46 @@ msgid "" "more." msgstr "" -#: gnu/packages/networking.scm:1110 +#: gnu/packages/networking.scm:1148 msgid "" "czmq provides bindings for the ØMQ core API that hides the differences\n" "between different versions of ØMQ." msgstr "" -#: gnu/packages/networking.scm:1141 +#: gnu/packages/networking.scm:1179 msgid "" "This package provides header-only C++ bindings for ØMQ. The header\n" "files contain direct mappings of the abstractions provided by the ØMQ C API." msgstr "" -#: gnu/packages/networking.scm:1175 +#: gnu/packages/networking.scm:1213 msgid "" "@code{libnatpmp} is a portable and asynchronous implementation of\n" "the Network Address Translation - Port Mapping Protocol (NAT-PMP)\n" "written in the C programming language." msgstr "" -#: gnu/packages/networking.scm:1213 +#: gnu/packages/networking.scm:1251 msgid "" "librdkafka is a C library implementation of the Apache Kafka protocol,\n" "containing both Producer and Consumer support." msgstr "" -#: gnu/packages/networking.scm:1232 +#: gnu/packages/networking.scm:1270 msgid "" "libndp contains a library which provides a wrapper for IPv6 Neighbor\n" "Discovery Protocol. It also provides a tool named ndptool for sending and\n" "receiving NDP messages." msgstr "" -#: gnu/packages/networking.scm:1256 +#: gnu/packages/networking.scm:1294 msgid "" "ethtool can be used to query and change settings such as speed,\n" "auto-negotiation and checksum offload on many network devices, especially\n" "Ethernet devices." msgstr "" -#: gnu/packages/networking.scm:1298 +#: gnu/packages/networking.scm:1336 msgid "" "IFStatus is a simple, easy-to-use program for displaying commonly\n" "needed/wanted real-time traffic statistics of multiple network\n" @@ -10967,7 +11109,7 @@ msgid "" "intended as a substitute for the PPPStatus and EthStatus projects." msgstr "" -#: gnu/packages/networking.scm:1347 +#: gnu/packages/networking.scm:1385 msgid "" "This package contains a variety of tools for dealing with network\n" "configuration, troubleshooting, or servers. Utilities included are:\n" @@ -10988,7 +11130,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1388 +#: gnu/packages/networking.scm:1426 msgid "" "Nload is a console application which monitors network traffic and\n" "bandwidth usage in real time. It visualizes the in- and outgoing traffic using\n" @@ -10996,7 +11138,7 @@ msgid "" "and min/max network usage." msgstr "" -#: gnu/packages/networking.scm:1432 +#: gnu/packages/networking.scm:1470 msgid "" "Iodine tunnels IPv4 data through a DNS server. This\n" "can be useful in different situations where internet access is firewalled, but\n" @@ -11004,7 +11146,7 @@ msgid "" "and up to 1 Mbit/s downstream." msgstr "" -#: gnu/packages/networking.scm:1473 +#: gnu/packages/networking.scm:1511 msgid "" "whois searches for an object in a @dfn{WHOIS} (RFC 3912) database.\n" "It is commonly used to look up the registered users or assignees of an Internet\n" @@ -11016,14 +11158,14 @@ msgid "" "of the same name." msgstr "" -#: gnu/packages/networking.scm:1553 +#: gnu/packages/networking.scm:1591 msgid "" "Wireshark is a network protocol analyzer, or @dfn{packet\n" "sniffer}, that lets you capture and interactively browse the contents of\n" "network frames." msgstr "" -#: gnu/packages/networking.scm:1574 +#: gnu/packages/networking.scm:1613 msgid "" "fping is a ping-like program which uses @acronym{ICMP, Internet Control\n" "Message Protocol} echo requests to determine if a target host is responding.\n" @@ -11035,26 +11177,26 @@ msgid "" "round-robin fashion." msgstr "" -#: gnu/packages/networking.scm:1625 +#: gnu/packages/networking.scm:1664 msgid "" "This package provides a command-line client (@command{gandi}) to buy,\n" "manage, and delete Internet resources from Gandi.net such as domain names,\n" "virtual machines, and certificates." msgstr "" -#: gnu/packages/networking.scm:1651 +#: gnu/packages/networking.scm:1690 msgid "" "The netns package provides a simple interface for\n" "handling network namespaces in Go." msgstr "" -#: gnu/packages/networking.scm:1678 +#: gnu/packages/networking.scm:1717 msgid "" "This library provides methods for using the stream control\n" "transmission protocol (SCTP) in a Go application." msgstr "" -#: gnu/packages/networking.scm:1707 +#: gnu/packages/networking.scm:1746 msgid "" "httping measures how long it takes to connect to a web server, send an\n" "HTTP(S) request, and receive the reply headers. It is somewhat similar to\n" @@ -11063,7 +11205,7 @@ msgid "" "application stack itself." msgstr "" -#: gnu/packages/networking.scm:1746 +#: gnu/packages/networking.scm:1785 msgid "" "@command{httpstat} is a tool to visualize statistics from the\n" "@command{curl} HTTP client. It acts as a wrapper for @command{curl} and\n" @@ -11071,20 +11213,20 @@ msgid "" "TCP connection, TLS handshake and so on) in the terminal." msgstr "" -#: gnu/packages/networking.scm:1788 +#: gnu/packages/networking.scm:1827 msgid "" "Squid is a caching proxy for the Web supporting HTTP, HTTPS,\n" "FTP, and more. It reduces bandwidth and improves response times by caching and\n" "reusing frequently-requested web pages." msgstr "" -#: gnu/packages/networking.scm:1822 +#: gnu/packages/networking.scm:1861 msgid "" "Bandwidth Monitor NG is a small and simple console based\n" "live network and disk I/O bandwidth monitor." msgstr "" -#: gnu/packages/networking.scm:1874 +#: gnu/packages/networking.scm:1913 msgid "" "Aircrack-ng is a complete suite of tools to assess WiFi network\n" "security. It focuses on different areas of WiFi security: monitoring,\n" @@ -11092,14 +11234,14 @@ msgid "" "allows for heavy scripting." msgstr "" -#: gnu/packages/networking.scm:1903 +#: gnu/packages/networking.scm:1942 msgid "" "Pixiewps implements the pixie-dust attack to brute\n" "force the Wi-Fi Protected Setup (WPS) PIN by exploiting the low or\n" "non-existing entropy of some access points." msgstr "" -#: gnu/packages/networking.scm:1949 +#: gnu/packages/networking.scm:1988 msgid "" "Reaver performs a brute force attack against an access\n" "point's Wi-Fi Protected Setup (WPS) PIN. Once the PIN is found, the WPA\n" @@ -11107,7 +11249,7 @@ msgid "" "reconfigured." msgstr "" -#: gnu/packages/networking.scm:1974 +#: gnu/packages/networking.scm:2013 msgid "" "Danga::Socket is an abstract base class for objects backed by a socket\n" "which provides the basic framework for event-driven asynchronous IO, designed\n" @@ -11115,7 +11257,7 @@ msgid "" "loop." msgstr "" -#: gnu/packages/networking.scm:2000 +#: gnu/packages/networking.scm:2039 msgid "" "This module provides several IP address validation subroutines that both\n" "validate and untaint their input. This includes both basic validation\n" @@ -11124,62 +11266,62 @@ msgid "" "private (reserved)." msgstr "" -#: gnu/packages/networking.scm:2028 +#: gnu/packages/networking.scm:2067 msgid "Net::DNS is the Perl Interface to the Domain Name System." msgstr "" -#: gnu/packages/networking.scm:2060 +#: gnu/packages/networking.scm:2099 msgid "" "Socket6 binds the IPv6 related part of the C socket header\n" "definitions and structure manipulators for Perl." msgstr "" -#: gnu/packages/networking.scm:2087 +#: gnu/packages/networking.scm:2126 msgid "" "Net::DNS::Resolver::Programmable is a programmable DNS resolver for\n" "offline emulation of DNS." msgstr "" -#: gnu/packages/networking.scm:2109 +#: gnu/packages/networking.scm:2148 msgid "" "Net::DNS::Resolver::Mock is a subclass of Net::DNS::Resolver, but returns\n" "static data from any provided DNS zone file instead of querying the network.\n" "It is intended primarily for use in testing." msgstr "" -#: gnu/packages/networking.scm:2144 +#: gnu/packages/networking.scm:2183 msgid "NetAddr::IP manages IPv4 and IPv6 addresses and subsets." msgstr "" -#: gnu/packages/networking.scm:2177 +#: gnu/packages/networking.scm:2216 msgid "Net::Patricia does IP address lookups quickly in Perl." msgstr "" -#: gnu/packages/networking.scm:2198 +#: gnu/packages/networking.scm:2237 msgid "Net::CIDR::Lite merges IPv4 or IPv6 CIDR addresses." msgstr "" -#: gnu/packages/networking.scm:2225 +#: gnu/packages/networking.scm:2264 msgid "" "IO::Socket::INET6 is an interface for AF_INET/AF_INET6 domain\n" "sockets in Perl." msgstr "" -#: gnu/packages/networking.scm:2258 +#: gnu/packages/networking.scm:2293 msgid "" "Libproxy handles the details of HTTP/HTTPS proxy\n" "configuration for applications across all scenarios. Applications using\n" "libproxy only have to specify which proxy to use." msgstr "" -#: gnu/packages/networking.scm:2292 +#: gnu/packages/networking.scm:2327 msgid "" "Proxychains-ng is a preloader which hooks calls to sockets\n" "in dynamically linked programs and redirects them through one or more SOCKS or\n" "HTTP proxies." msgstr "" -#: gnu/packages/networking.scm:2314 +#: gnu/packages/networking.scm:2349 msgid "" "ENet's purpose is to provide a relatively thin, simple and robust network\n" "communication layer on top of UDP. The primary feature it provides is optional\n" @@ -11189,7 +11331,7 @@ msgid "" "library remains flexible, portable, and easily embeddable." msgstr "" -#: gnu/packages/networking.scm:2378 +#: gnu/packages/networking.scm:2413 msgid "" "sslh is a network protocol demultiplexer. It acts like a switchboard,\n" "accepting connections from clients on one port and forwarding them to different\n" @@ -11201,7 +11343,7 @@ msgid "" "that block port 22." msgstr "" -#: gnu/packages/networking.scm:2408 +#: gnu/packages/networking.scm:2443 msgid "" "iPerf is a tool to measure achievable bandwidth on IP networks. It\n" "supports tuning of various parameters related to timing, buffers and\n" @@ -11209,7 +11351,7 @@ msgid "" "the bandwidth, loss, and other parameters." msgstr "" -#: gnu/packages/networking.scm:2445 +#: gnu/packages/networking.scm:2480 msgid "" "NetHogs is a small 'net top' tool for Linux. Instead of\n" "breaking the traffic down per protocol or per subnet, like most tools do, it\n" @@ -11221,7 +11363,7 @@ msgid "" "gone wild and are suddenly taking up your bandwidth." msgstr "" -#: gnu/packages/networking.scm:2481 +#: gnu/packages/networking.scm:2516 msgid "" "NZBGet is a binary newsgrabber, which downloads files from Usenet based\n" "on information given in @code{nzb} files. NZBGet can be used in standalone\n" @@ -11231,7 +11373,7 @@ msgid "" "procedure calls (RPCs)." msgstr "" -#: gnu/packages/networking.scm:2562 +#: gnu/packages/networking.scm:2597 msgid "" "Open vSwitch is a multilayer virtual switch. It is designed to enable\n" "massive network automation through programmatic extension, while still\n" @@ -11239,27 +11381,27 @@ msgid "" "IPFIX, RSPAN, CLI, LACP, 802.1ag)." msgstr "" -#: gnu/packages/networking.scm:2585 +#: gnu/packages/networking.scm:2620 msgid "" "The @code{IP} class allows a comfortable parsing and\n" "handling for most notations in use for IPv4 and IPv6 addresses and\n" "networks." msgstr "" -#: gnu/packages/networking.scm:2610 +#: gnu/packages/networking.scm:2645 msgid "" "Command line interface for testing internet bandwidth using\n" "speedtest.net." msgstr "" -#: gnu/packages/networking.scm:2630 +#: gnu/packages/networking.scm:2668 msgid "" "This is a tftp client derived from OpenBSD tftp with some extra options\n" "added and bugs fixed. The source includes readline support but it is not\n" "enabled due to license conflicts between the BSD advertising clause and the GPL." msgstr "" -#: gnu/packages/networking.scm:2682 +#: gnu/packages/networking.scm:2720 msgid "" "Spiped (pronounced \"ess-pipe-dee\") is a utility for creating\n" "symmetrically encrypted and authenticated pipes between socket addresses, so\n" @@ -11269,7 +11411,7 @@ msgid "" "does not use SSH and requires a pre-shared symmetric key." msgstr "" -#: gnu/packages/networking.scm:2708 +#: gnu/packages/networking.scm:2746 msgid "" "Quagga is a routing software suite, providing implementations\n" "of OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4 for Unix platforms.\n" @@ -11281,14 +11423,14 @@ msgid "" "updates to the zebra daemon." msgstr "" -#: gnu/packages/networking.scm:2758 +#: gnu/packages/networking.scm:2796 msgid "" "The THC IPv6 Toolkit provides command-line tools and a library\n" "for researching IPv6 implementations and deployments. It requires Linux 2.6 or\n" "newer and only works on Ethernet network interfaces." msgstr "" -#: gnu/packages/networking.scm:2783 +#: gnu/packages/networking.scm:2821 msgid "" "bmon is a monitoring and debugging tool to capture\n" "networking-related statistics and prepare them visually in a human-friendly\n" @@ -11296,7 +11438,7 @@ msgid "" "interface and a programmable text output for scripting." msgstr "" -#: gnu/packages/networking.scm:2821 +#: gnu/packages/networking.scm:2859 msgid "" "Libnet provides a fairly portable framework for network packet\n" "construction and injection. It features portable packet creation interfaces\n" @@ -11305,7 +11447,7 @@ msgid "" "can be whipped up with little effort." msgstr "" -#: gnu/packages/networking.scm:2847 +#: gnu/packages/networking.scm:2885 msgid "" "@acronym{mtr, My TraceRoute} combines the functionality of the\n" "@command{traceroute} and @command{ping} programs in a single network diagnostic\n" @@ -11315,7 +11457,7 @@ msgid "" "displays the results in real time." msgstr "" -#: gnu/packages/networking.scm:2900 +#: gnu/packages/networking.scm:2938 msgid "" "aMule is an eMule-like client for the eD2k and Kademlia peer-to-peer\n" "file sharing networks. It includes a graphical user interface (GUI), a daemon\n" @@ -11324,7 +11466,7 @@ msgid "" "remotely." msgstr "" -#: gnu/packages/networking.scm:2922 +#: gnu/packages/networking.scm:2960 msgid "" "Zyre provides reliable group messaging over local area\n" "networks using zeromq. It has these key characteristics:\n" @@ -11341,13 +11483,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:2956 +#: gnu/packages/networking.scm:2994 msgid "" "This library allows controlling basic functions in SocketCAN\n" "from user-space. It requires a kernel built with SocketCAN support." msgstr "" -#: gnu/packages/networking.scm:2985 +#: gnu/packages/networking.scm:3023 msgid "" "This package provides CAN utilities in the following areas:\n" "\n" @@ -11363,14 +11505,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3021 +#: gnu/packages/networking.scm:3059 msgid "" "Asio is a cross-platform C++ library for network and\n" "low-level I/O programming that provides developers with a consistent\n" "asynchronous model using a modern C++ approach." msgstr "" -#: gnu/packages/networking.scm:3056 +#: gnu/packages/networking.scm:3094 msgid "" "This package is a fast tunnel proxy that helps you bypass firewalls.\n" "\n" @@ -11384,7 +11526,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3134 +#: gnu/packages/networking.scm:3172 msgid "" "The @dfn{Simple Network Management Protocol} (SNMP) is a\n" "widely used protocol for monitoring the health and welfare of network\n" @@ -11393,20 +11535,20 @@ msgid "" "SNMP v3 using both IPv4 and IPv6." msgstr "" -#: gnu/packages/networking.scm:3181 +#: gnu/packages/networking.scm:3219 msgid "" "uBridge is a simple program to create user-land bridges\n" "between various technologies. Currently, bridging between UDP tunnels,\n" "Ethernet and TAP interfaces is supported. Packet capture is also supported." msgstr "" -#: gnu/packages/networking.scm:3213 +#: gnu/packages/networking.scm:3251 msgid "" "This package contains a small set of tools to capture and convert\n" "packets from wireless devices for use with hashcat or John the Ripper." msgstr "" -#: gnu/packages/networking.scm:3244 +#: gnu/packages/networking.scm:3282 msgid "" "Small tool to capture packets from WLAN devices. After capturing,\n" "upload the \"uncleaned\" cap to @url{https://wpa-sec.stanev.org/?submit} to\n" @@ -11416,7 +11558,7 @@ msgid "" "and check if the WLAN key or the master key was transmitted unencrypted." msgstr "" -#: gnu/packages/networking.scm:3271 +#: gnu/packages/networking.scm:3309 msgid "" "Dante is a SOCKS client and server implementation. It can\n" "be installed on a machine with access to an external TCP/IP network and will\n" @@ -11425,21 +11567,21 @@ msgid "" "never see any machines other than the one Dante is running on." msgstr "" -#: gnu/packages/networking.scm:3318 +#: gnu/packages/networking.scm:3356 msgid "" "Restbed is a comprehensive and consistent programming\n" "model for building applications that require seamless and secure\n" "communication over HTTP." msgstr "" -#: gnu/packages/networking.scm:3358 +#: gnu/packages/networking.scm:3396 msgid "" "RESTinio is a header-only C++14 library that gives you an embedded\n" "HTTP/Websocket server. It is based on standalone version of ASIO\n" "and targeted primarily for asynchronous processing of HTTP-requests." msgstr "" -#: gnu/packages/networking.scm:3446 +#: gnu/packages/networking.scm:3487 msgid "" "OpenDHT provides an easy to use distributed in-memory data\n" "store. Every node in the network can read and write values to the store.\n" @@ -11466,20 +11608,20 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/networking.scm:3490 +#: gnu/packages/networking.scm:3531 msgid "" "FRRouting (FRR) is an IP routing protocol suite which includes\n" "protocol daemons for BGP, IS-IS, LDP, OSPF, PIM, and RIP." msgstr "" -#: gnu/packages/networking.scm:3520 +#: gnu/packages/networking.scm:3561 msgid "" "BIRD is an Internet routing daemon with full support for all\n" "the major routing protocols. It allows redistribution between protocols with a\n" "powerful route filtering syntax and an easy-to-use configuration interface." msgstr "" -#: gnu/packages/networking.scm:3568 +#: gnu/packages/networking.scm:3609 msgid "" "iwd is a wireless daemon for Linux that aims to replace WPA\n" "Supplicant. It optimizes resource utilization by not depending on any external\n" @@ -11487,21 +11629,21 @@ msgid "" "maximum extent possible." msgstr "" -#: gnu/packages/networking.scm:3595 +#: gnu/packages/networking.scm:3636 msgid "" "libyang is a YANG data modelling language parser and toolkit\n" "written (and providing API) in C. Current implementation covers YANG 1.0 (RFC\n" "6020) as well as YANG 1.1 (RFC 7950)." msgstr "" -#: gnu/packages/networking.scm:3629 +#: gnu/packages/networking.scm:3670 msgid "" "This package provides a control tool for the\n" "B.A.T.M.A.N. mesh networking routing protocol provided by the Linux kernel\n" "module @code{batman-adv}, for Layer 2." msgstr "" -#: gnu/packages/networking.scm:3662 +#: gnu/packages/networking.scm:3703 msgid "" "PageKite implements a tunneled reverse proxy which makes it easy to make\n" "a service (such as an HTTP or SSH server) on localhost visible to the wider\n" @@ -11509,7 +11651,7 @@ msgid "" "service is available at @url{https://pagekite.net/}, or you can run your own." msgstr "" -#: gnu/packages/networking.scm:3706 +#: gnu/packages/networking.scm:3747 msgid "" "ipcalc takes an IP address and netmask and calculates the\n" "resulting broadcast, network, Cisco wildcard mask, and host range. By giving\n" @@ -11518,7 +11660,7 @@ msgid "" "easy-to-understand binary values." msgstr "" -#: gnu/packages/networking.scm:3745 +#: gnu/packages/networking.scm:3786 msgid "" "Tunctl is used to set up and maintain persistent TUN/TAP\n" "network interfaces, enabling user applications to simulate network traffic.\n" @@ -11526,13 +11668,13 @@ msgid "" "simulation, and a number of other applications." msgstr "" -#: gnu/packages/networking.scm:3765 +#: gnu/packages/networking.scm:3806 msgid "" "Tool to send a magic packet to wake another host on the\n" "network. This must be enabled on the target host, usually in the BIOS." msgstr "" -#: gnu/packages/networking.scm:3802 +#: gnu/packages/networking.scm:3843 msgid "" "This package provides a modern, but Linux-specific\n" "implementation of the @command{traceroute} command that can be used to follow\n" @@ -11543,7 +11685,7 @@ msgid "" "some traces for unprivileged users." msgstr "" -#: gnu/packages/networking.scm:3836 +#: gnu/packages/networking.scm:3877 msgid "" "VDE is a set of programs to provide virtual software-defined\n" "Ethernet network interface controllers across multiple virtual or\n" @@ -11552,7 +11694,7 @@ msgid "" "cables." msgstr "" -#: gnu/packages/networking.scm:3878 +#: gnu/packages/networking.scm:3919 msgid "" "HAProxy is a free, very fast and reliable solution offering\n" "high availability, load balancing, and proxying for TCP and HTTP-based\n" @@ -11561,7 +11703,7 @@ msgid "" "thousands of connections is clearly realistic with today's hardware." msgstr "" -#: gnu/packages/networking.scm:3924 +#: gnu/packages/networking.scm:3965 msgid "" "The @dfn{Link Layer Discovery Protocol} (LLDP) is an industry standard\n" "protocol designed to supplant proprietary Link-Layer protocols such as EDP or\n" @@ -11570,7 +11712,7 @@ msgid "" "an implementation of LLDP. It also supports some proprietary protocols." msgstr "" -#: gnu/packages/networking.scm:3966 +#: gnu/packages/networking.scm:4007 msgid "" "Hashcash is a proof-of-work algorithm, which has been used\n" "as a denial-of-service countermeasure technique in a number of systems.\n" @@ -11583,14 +11725,14 @@ msgid "" "stamps." msgstr "" -#: gnu/packages/networking.scm:3995 +#: gnu/packages/networking.scm:4036 msgid "" "This package provides the NBD (Network Block Devices)\n" "client and server. It allows you to use remote block devices over a TCP/IP\n" "network." msgstr "" -#: gnu/packages/networking.scm:4062 +#: gnu/packages/networking.scm:4103 msgid "" "Yggdrasil is an early-stage implementation of a fully end-to-end encrypted\n" "IPv6 network. It is lightweight, self-arranging, supported on multiple\n" @@ -11599,7 +11741,7 @@ msgid "" "IPv6 Internet connectivity - it also works over IPv4." msgstr "" -#: gnu/packages/networking.scm:4106 +#: gnu/packages/networking.scm:4147 msgid "" "Netdiscover is a network address discovery tool developed\n" "mainly for wireless networks without a @acronym{DHCP} server. It also works\n" @@ -11607,7 +11749,7 @@ msgid "" "@acronym{ARP} requests and sniff for replies." msgstr "" -#: gnu/packages/networking.scm:4138 +#: gnu/packages/networking.scm:4179 msgid "" "PuTTY is a graphical text terminal client. It supports\n" "@acronym{SSH, Secure SHell}, telnet, and raw socket connections with good\n" @@ -11718,14 +11860,14 @@ msgid "" "by using the poppler rendering engine." msgstr "" -#: gnu/packages/pdf.scm:654 +#: gnu/packages/pdf.scm:653 msgid "" "Zathura is a customizable document viewer. It provides a\n" "minimalistic interface and an interface that mainly focuses on keyboard\n" "interaction." msgstr "" -#: gnu/packages/pdf.scm:697 +#: gnu/packages/pdf.scm:696 msgid "" "PoDoFo is a C++ library and set of command-line tools to work with the\n" "PDF file format. It can parse PDF files and load them into memory, and makes\n" @@ -11734,7 +11876,7 @@ msgid "" "extracting content or merging files." msgstr "" -#: gnu/packages/pdf.scm:764 +#: gnu/packages/pdf.scm:763 msgid "" "MuPDF is a C library that implements a PDF and XPS parsing and\n" "rendering engine. It is used primarily to render pages into bitmaps,\n" @@ -11746,7 +11888,7 @@ msgid "" "@command{pdfclean}, and examining the file structure @command{pdfshow}." msgstr "" -#: gnu/packages/pdf.scm:811 +#: gnu/packages/pdf.scm:810 msgid "" "QPDF is a command-line program that does structural, content-preserving\n" "transformations on PDF files. It could have been called something like\n" @@ -11755,7 +11897,7 @@ msgid "" "program capable of converting PDF into other formats." msgstr "" -#: gnu/packages/pdf.scm:855 +#: gnu/packages/pdf.scm:854 msgid "" "@command{qpdfview} is a document viewer for PDF, PS and DJVU\n" "files. It uses the Qt toolkit and features persistent per-file settings,\n" @@ -11763,13 +11905,13 @@ msgid "" "SyncTeX support, and rudimentary support for annotations and forms." msgstr "" -#: gnu/packages/pdf.scm:881 +#: gnu/packages/pdf.scm:880 msgid "" "Xournal is an application for notetaking, sketching, keeping a journal\n" "using a stylus." msgstr "" -#: gnu/packages/pdf.scm:940 +#: gnu/packages/pdf.scm:939 msgid "" "Xournal++ is a hand note taking software written in\n" "C++ with the target of flexibility, functionality and speed. Stroke\n" @@ -11805,14 +11947,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1019 +#: gnu/packages/pdf.scm:1018 msgid "" "This is the ReportLab PDF Toolkit. It allows rapid creation\n" "of rich PDF documents, and also creation of charts in a variety of bitmap and\n" "vector formats." msgstr "" -#: gnu/packages/pdf.scm:1071 +#: gnu/packages/pdf.scm:1070 msgid "" "Impressive is a tool to display PDF files that provides visual effects\n" "such as smooth alpha-blended slide transitions. It provides additional tools\n" @@ -11820,26 +11962,26 @@ msgid "" "the PDF pages." msgstr "" -#: gnu/packages/pdf.scm:1094 +#: gnu/packages/pdf.scm:1093 msgid "" "img2pdf converts images to PDF via direct JPEG inclusion. That\n" "conversion is lossless: the image embedded in the PDF has the exact same color\n" "information for every pixel as the input." msgstr "" -#: gnu/packages/pdf.scm:1147 +#: gnu/packages/pdf.scm:1146 msgid "" "fbida contains a few applications for viewing and editing images on\n" "the framebuffer." msgstr "" -#: gnu/packages/pdf.scm:1171 +#: gnu/packages/pdf.scm:1170 msgid "" "@command{pdf2svg} is a simple command-line PDF to SVG\n" "converter using the Poppler and Cairo libraries." msgstr "" -#: gnu/packages/pdf.scm:1203 +#: gnu/packages/pdf.scm:1202 msgid "" "PyPDF2 is a pure Python PDF library capable of:\n" "\n" @@ -11859,7 +12001,7 @@ msgid "" "manage or manipulate PDFs." msgstr "" -#: gnu/packages/pdf.scm:1240 +#: gnu/packages/pdf.scm:1239 msgid "" "PyPDF2 is a pure Python PDF toolkit.\n" "\n" @@ -11867,7 +12009,7 @@ msgid "" "python-pypdf2 instead." msgstr "" -#: gnu/packages/pdf.scm:1284 +#: gnu/packages/pdf.scm:1283 msgid "" "PDF Arranger is a small application which allows one to merge or split\n" "PDF documents and rotate, crop and rearrange their pages using an interactive\n" @@ -11876,7 +12018,7 @@ msgid "" "PDF Arranger was formerly known as PDF-Shuffler." msgstr "" -#: gnu/packages/pdf.scm:1308 +#: gnu/packages/pdf.scm:1307 msgid "" "@command{pdfposter} can be used to create a large poster by\n" "building it from multiple pages and/or printing it on large media. It expects\n" @@ -11889,7 +12031,7 @@ msgid "" "PDF. Indeed @command{pdfposter} was inspired by @command{poster}." msgstr "" -#: gnu/packages/pdf.scm:1339 +#: gnu/packages/pdf.scm:1338 msgid "" "Pdfgrep searches in pdf files for strings matching a regular expression.\n" "Support some GNU grep options as file name output, page number output,\n" @@ -11897,7 +12039,7 @@ msgid "" "multiple files." msgstr "" -#: gnu/packages/pdf.scm:1387 +#: gnu/packages/pdf.scm:1386 msgid "" "pdfpc is a presentation viewer application which uses multi-monitor\n" "output to provide meta information to the speaker during the presentation. It\n" @@ -11907,13 +12049,13 @@ msgid "" "presentation. The input files processed by pdfpc are PDF documents." msgstr "" -#: gnu/packages/pdf.scm:1414 +#: gnu/packages/pdf.scm:1413 msgid "" "Paps reads a UTF-8 encoded file and generates a PostScript language\n" "rendering of the file through the Pango Cairo back end." msgstr "" -#: gnu/packages/pdf.scm:1444 +#: gnu/packages/pdf.scm:1443 msgid "" "Stapler is a pure Python alternative to PDFtk, a tool for\n" "manipulating PDF documents from the command line. It supports\n" @@ -11927,7 +12069,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1532 +#: gnu/packages/pdf.scm:1531 msgid "" "WeasyPrint helps web developers to create PDF documents. It\n" "turns simple HTML pages into gorgeous statistical reports, invoices, tickets,\n" @@ -15649,7 +15791,7 @@ msgid "" "and enhance them." msgstr "" -#: gnu/packages/photo.scm:601 +#: gnu/packages/photo.scm:603 msgid "" "Photoflare is a cross-platform image editor with an aim\n" "to balance between powerful features and a very friendly graphical user\n" @@ -15659,7 +15801,7 @@ msgid "" "such as Batch image processing." msgstr "" -#: gnu/packages/photo.scm:669 +#: gnu/packages/photo.scm:670 msgid "" "Entangle is an application which uses GTK and libgphoto2 to provide a\n" "graphical interface for tethered photography with digital cameras. It\n" @@ -15667,14 +15809,14 @@ msgid "" "off' shooting directly from the controlling computer." msgstr "" -#: gnu/packages/photo.scm:740 +#: gnu/packages/photo.scm:741 msgid "" "Hugin is an easy to use panoramic imaging toolchain with a graphical\n" "user interface. It can be used to assemble a mosaic of photographs into\n" "a complete panorama and stitch any series of overlapping pictures." msgstr "" -#: gnu/packages/photo.scm:794 +#: gnu/packages/photo.scm:795 msgid "" "RawTherapee is a raw image processing suite. It comprises a\n" "subset of image editing operations specifically aimed at non-destructive raw\n" @@ -15718,7 +15860,28 @@ msgid "" "`special effects' using the filter mechanism." msgstr "" -#: gnu/packages/scanner.scm:144 +#: gnu/packages/scanner.scm:83 +msgid "" +"This SANE backend lets you scan documents and images from scanners and\n" +"multi-function printers that speak eSCL (marketed as ``AirScan'') or\n" +"@acronym{WSD, Web Services for Devices} (or ``WS-Scan'').\n" +"\n" +"Both are vendor-neutral protocols that allow ``driverless'' scanning over IPv4\n" +"and IPv6 networks without the vendor-specific drivers that make up most of the\n" +"sane-backends collection. This is similar to how most contemporary printers\n" +"speak the universal @acronym{IPP, Internet Printing Protocol}.\n" +"\n" +"Only scanners that support eSCL will also work over USB. This requires a\n" +"suitable IPP-over-USB daemon like ipp-usb to be installed and configured.\n" +"\n" +"Any eSCL or WSD-capable scanner should just work. sane-airscan automatically\n" +"discovers and configures devices, including which protocol to use. It was\n" +"successfully tested with many devices from Brother, Canon, Dell, Kyocera,\n" +"Lexmark, Epson, HP, OKI, Panasonic, Pantum, Ricoh, Samsung, and Xerox, with both\n" +"WSD and eSCL." +msgstr "" + +#: gnu/packages/scanner.scm:200 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -15726,7 +15889,7 @@ msgid "" "package contains the library, but no drivers." msgstr "" -#: gnu/packages/scanner.scm:192 +#: gnu/packages/scanner.scm:248 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -15734,7 +15897,7 @@ msgid "" "package contains the library and drivers." msgstr "" -#: gnu/packages/scanner.scm:243 +#: gnu/packages/scanner.scm:299 msgid "" "Scanbd stands for scanner button daemon. It regularly polls\n" "scanners for pressed buttons, function knob changes, or other events such\n" @@ -15750,7 +15913,7 @@ msgid "" "provided the driver also exposes the buttons." msgstr "" -#: gnu/packages/scanner.scm:331 +#: gnu/packages/scanner.scm:387 msgid "" "XSane is a graphical interface for controlling a scanner and acquiring\n" "images from it. You can photocopy multi-page documents and save, fax, print,\n" @@ -15762,14 +15925,14 @@ msgid "" "back-end library, which supports almost all existing scanners." msgstr "" -#: gnu/packages/scheme.scm:225 +#: gnu/packages/scheme.scm:226 msgid "" "GNU/MIT Scheme is an implementation of the Scheme programming\n" "language. It provides an interpreter, a compiler and a debugger. It also\n" "features an integrated Emacs-like editor and a large runtime library." msgstr "" -#: gnu/packages/scheme.scm:324 +#: gnu/packages/scheme.scm:325 msgid "" "Bigloo is a Scheme implementation devoted to one goal: enabling Scheme\n" "based programming style where C(++) is usually required. Bigloo attempts to\n" @@ -15780,7 +15943,7 @@ msgid "" "and between Scheme and Java programs." msgstr "" -#: gnu/packages/scheme.scm:377 +#: gnu/packages/scheme.scm:378 msgid "" "HOP is a multi-tier programming language for the Web 2.0 and the\n" "so-called diffuse Web. It is designed for programming interactive web\n" @@ -15789,14 +15952,14 @@ msgid "" "mashups, office (web agendas, mail clients, ...), etc." msgstr "" -#: gnu/packages/scheme.scm:400 +#: gnu/packages/scheme.scm:401 msgid "" "Scheme 48 is an implementation of Scheme based on a byte-code\n" "interpreter and is designed to be used as a testbed for experiments in\n" "implementation techniques and as an expository tool." msgstr "" -#: gnu/packages/scheme.scm:430 +#: gnu/packages/scheme.scm:431 msgid "" "Gambit consists of two main programs: gsi, the Gambit Scheme\n" "interpreter, and gsc, the Gambit Scheme compiler. The interpreter contains\n" @@ -15807,7 +15970,7 @@ msgid "" "mixed." msgstr "" -#: gnu/packages/scheme.scm:464 +#: gnu/packages/scheme.scm:465 msgid "" "Chibi-Scheme is a very small library with no external dependencies\n" "intended for use as an extension and scripting language in C programs. In\n" @@ -15816,7 +15979,7 @@ msgid "" "threads." msgstr "" -#: gnu/packages/scheme.scm:512 +#: gnu/packages/scheme.scm:513 msgid "" "Structure and Interpretation of Computer Programs (SICP) is\n" "a textbook aiming to teach the principles of computer programming.\n" @@ -15826,19 +15989,19 @@ msgid "" "metalinguistic abstraction, recursion, interpreters, and modular programming." msgstr "" -#: gnu/packages/scheme.scm:556 +#: gnu/packages/scheme.scm:557 msgid "" "String pattern-matching library for scheme48 based on the SRE\n" "regular-expression notation." msgstr "" -#: gnu/packages/scheme.scm:589 +#: gnu/packages/scheme.scm:590 msgid "" "SLIB is a portable Scheme library providing compatibility and\n" "utility functions for all standard Scheme implementations." msgstr "" -#: gnu/packages/scheme.scm:643 +#: gnu/packages/scheme.scm:644 msgid "" "GNU SCM is an implementation of Scheme. This\n" "implementation includes Hobbit, a Scheme-to-C compiler, which can\n" @@ -15846,7 +16009,7 @@ msgid "" "linked with a SCM executable." msgstr "" -#: gnu/packages/scheme.scm:702 +#: gnu/packages/scheme.scm:703 msgid "" "TinyScheme is a light-weight Scheme interpreter that implements as large a\n" "subset of R5RS as was possible without getting very large and complicated.\n" @@ -15862,7 +16025,7 @@ msgid "" "small program, it is easy to comprehend, get to grips with, and use." msgstr "" -#: gnu/packages/scheme.scm:783 +#: gnu/packages/scheme.scm:784 msgid "" "Stalin is an aggressively optimizing whole-program compiler\n" "for Scheme that does polyvariant interprocedural flow analysis,\n" @@ -15874,7 +16037,7 @@ msgid "" "generation." msgstr "" -#: gnu/packages/scheme.scm:819 +#: gnu/packages/scheme.scm:820 msgid "" "Scheme 9 from Empty Space (S9fES) is a mature, portable, and\n" "comprehensible public-domain interpreter for R4RS Scheme offering:\n" @@ -15889,14 +16052,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/scheme.scm:877 +#: gnu/packages/scheme.scm:878 msgid "" "@code{femtolisp} is a scheme-like lisp implementation with a\n" "simple, elegant Scheme dialect. It is a lisp-1 with lexical scope.\n" "The core is 12 builtin special forms and 33 builtin functions." msgstr "" -#: gnu/packages/scheme.scm:940 +#: gnu/packages/scheme.scm:941 msgid "" "Gauche is a R7RS Scheme scripting engine aiming at being a\n" "handy tool that helps programmers and system administrators to write small to\n" @@ -15906,7 +16069,7 @@ msgid "" "and list gauche extension packages." msgstr "" -#: gnu/packages/scheme.scm:1038 +#: gnu/packages/scheme.scm:1039 msgid "" "Gerbil is an opinionated dialect of Scheme designed for Systems\n" "Programming, with a state of the art macro and module system on top of the Gambit\n" @@ -16043,7 +16206,7 @@ msgid "" "server and an IRC server." msgstr "" -#: gnu/packages/shells.scm:107 +#: gnu/packages/shells.scm:108 msgid "" "dash is a POSIX-compliant @command{/bin/sh} implementation that aims to be\n" "as small as possible, often without sacrificing speed. It is faster than the\n" @@ -16051,7 +16214,7 @@ msgid "" "direct descendant of NetBSD's Almquist Shell (@command{ash})." msgstr "" -#: gnu/packages/shells.scm:255 +#: gnu/packages/shells.scm:256 msgid "" "Fish (friendly interactive shell) is a shell focused on interactive use,\n" "discoverability, and friendliness. Fish has very user-friendly and powerful\n" @@ -16063,20 +16226,20 @@ msgid "" "and syntax highlighting." msgstr "" -#: gnu/packages/shells.scm:308 +#: gnu/packages/shells.scm:309 msgid "" "@code{fish-foreign-env} wraps bash script execution in a way\n" "that environment variables that are exported or modified get imported back\n" "into fish." msgstr "" -#: gnu/packages/shells.scm:344 +#: gnu/packages/shells.scm:345 msgid "" "This is a reimplementation by Byron Rakitzis of the Plan 9 shell. It\n" "has a small feature set similar to a traditional Bourne shell." msgstr "" -#: gnu/packages/shells.scm:377 +#: gnu/packages/shells.scm:378 msgid "" "Es is an extensible shell. The language was derived from the Plan 9\n" "shell, rc, and was influenced by functional programming languages, such as\n" @@ -16085,7 +16248,7 @@ msgid "" "written by Paul Haahr and Byron Rakitzis." msgstr "" -#: gnu/packages/shells.scm:455 +#: gnu/packages/shells.scm:456 msgid "" "Tcsh is an enhanced, but completely compatible version of the Berkeley\n" "UNIX C shell (csh). It is a command language interpreter usable both as an\n" @@ -16094,7 +16257,7 @@ msgid "" "history mechanism, job control and a C-like syntax." msgstr "" -#: gnu/packages/shells.scm:522 +#: gnu/packages/shells.scm:523 msgid "" "The Z shell (zsh) is a Unix shell that can be used\n" "as an interactive login shell and as a powerful command interpreter\n" @@ -16103,7 +16266,7 @@ msgid "" "ksh, and tcsh." msgstr "" -#: gnu/packages/shells.scm:572 +#: gnu/packages/shells.scm:573 msgid "" "Xonsh is a Python-ish, BASHwards-looking shell language and command\n" "prompt. The language is a superset of Python 3.4+ with additional shell\n" @@ -16112,7 +16275,7 @@ msgid "" "use of experts and novices alike." msgstr "" -#: gnu/packages/shells.scm:616 +#: gnu/packages/shells.scm:617 msgid "" "Scsh is a Unix shell embedded in Scheme. Scsh has two main\n" "components: a process notation for running programs and setting up pipelines\n" @@ -16120,7 +16283,7 @@ msgid "" "operating system." msgstr "" -#: gnu/packages/shells.scm:658 +#: gnu/packages/shells.scm:659 msgid "" "Linenoise is a minimal, zero-config, readline replacement.\n" "Its features include:\n" @@ -16134,7 +16297,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/shells.scm:722 +#: gnu/packages/shells.scm:723 msgid "" "S is a new shell that aims to be extremely simple. It does not\n" "implement the POSIX shell standard.\n" @@ -16148,19 +16311,19 @@ msgid "" "A @code{andglob} program is also provided along with s." msgstr "" -#: gnu/packages/shells.scm:753 +#: gnu/packages/shells.scm:754 msgid "" "Oksh is a port of the OpenBSD Korn Shell.\n" "The OpenBSD Korn Shell is a cleaned up and enhanced ksh." msgstr "" -#: gnu/packages/shells.scm:783 +#: gnu/packages/shells.scm:784 msgid "" "loksh is a Linux port of OpenBSD's @command{ksh}. It is a small,\n" "interactive POSIX shell targeted at resource-constrained systems." msgstr "" -#: gnu/packages/shells.scm:821 +#: gnu/packages/shells.scm:822 msgid "" "mksh is an actively developed free implementation of the\n" "Korn Shell programming language and a successor to the Public Domain Korn\n" @@ -16192,7 +16355,7 @@ msgid "" "files and text." msgstr "" -#: gnu/packages/shells.scm:1006 +#: gnu/packages/shells.scm:1005 msgid "" "Nu draws inspiration from projects like PowerShell, functional\n" "programming languages, and modern CLI tools. Rather than thinking of files\n" @@ -16203,7 +16366,7 @@ msgid "" "of commands called a ``pipeline''." msgstr "" -#: gnu/packages/shells.scm:1037 +#: gnu/packages/shells.scm:1036 msgid "" "This package is a library for ANSI terminal colors and styles (bold,\n" "underline)." @@ -16459,19 +16622,19 @@ msgid "" "your calls and messages." msgstr "" -#: gnu/packages/telephony.scm:874 +#: gnu/packages/telephony.scm:869 msgid "" "PJProject provides an implementation of the Session\n" "Initiation Protocol (SIP) and a multimedia framework." msgstr "" -#: gnu/packages/telephony.scm:916 +#: gnu/packages/telephony.scm:911 msgid "" "A collection of libraries and header files for implementing\n" "telephony functionality into custom Telegram clients." msgstr "" -#: gnu/packages/tex.scm:532 +#: gnu/packages/tex.scm:543 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -16481,20 +16644,20 @@ msgid "" "This package contains the binaries." msgstr "" -#: gnu/packages/tex.scm:571 +#: gnu/packages/tex.scm:582 msgid "" "kpathsea is a library, whose purpose is to return a filename\n" "from a list of user-specified directories similar to how shells look up\n" "executables. It is maintained as a part of TeX Live." msgstr "" -#: gnu/packages/tex.scm:591 +#: gnu/packages/tex.scm:602 msgid "" "This package provides the docstrip utility to strip\n" "documentation from TeX files. It is part of the LaTeX base." msgstr "" -#: gnu/packages/tex.scm:606 +#: gnu/packages/tex.scm:617 msgid "" "This bundle provides generic access to Unicode Consortium\n" "data for TeX use. It contains a set of text files provided by the Unicode\n" @@ -16507,7 +16670,7 @@ msgid "" "out to date by @code{unicode-letters.tex}." msgstr "" -#: gnu/packages/tex.scm:638 +#: gnu/packages/tex.scm:649 msgid "" "This package includes Knuth's original @file{hyphen.tex},\n" "@file{zerohyph.tex} to disable hyphenation, @file{language.us} which starts\n" @@ -16515,13 +16678,13 @@ msgid "" "default versions of those), etc." msgstr "" -#: gnu/packages/tex.scm:659 +#: gnu/packages/tex.scm:670 msgid "" "This package provides files needed for converting DVI files\n" "to PostScript." msgstr "" -#: gnu/packages/tex.scm:673 +#: gnu/packages/tex.scm:684 msgid "" "This bundle provides a collection of model \".ini\" files\n" "for creating TeX formats. These files are commonly used to introduced\n" @@ -16530,13 +16693,13 @@ msgid "" "to adapt the plain e-TeX source file to work with XeTeX and LuaTeX." msgstr "" -#: gnu/packages/tex.scm:736 +#: gnu/packages/tex.scm:747 msgid "" "This package provides the Metafont base files needed to\n" "build fonts using the Metafont system." msgstr "" -#: gnu/packages/tex.scm:821 +#: gnu/packages/tex.scm:832 msgid "" "This package provides TeX macros for converting Adobe Font\n" "Metric files to TeX metric and virtual font format. Fontinst helps mainly\n" @@ -16546,7 +16709,7 @@ msgid "" "typesetting in these fonts." msgstr "" -#: gnu/packages/tex.scm:842 +#: gnu/packages/tex.scm:853 msgid "" "This is Fontname, a naming scheme for (the base part of)\n" "external TeX font filenames. This makes at most eight-character names\n" @@ -16554,7 +16717,7 @@ msgid "" "documents." msgstr "" -#: gnu/packages/tex.scm:915 +#: gnu/packages/tex.scm:926 msgid "" "This package provides the Computer Modern fonts by Donald\n" "Knuth. The Computer Modern font family is a large collection of text,\n" @@ -16562,7 +16725,7 @@ msgid "" "8A." msgstr "" -#: gnu/packages/tex.scm:946 +#: gnu/packages/tex.scm:957 msgid "" "The CM-Super family provides Adobe Type 1 fonts that replace\n" "the T1/TS1-encoded Computer Modern (EC/TC), T1/TS1-encoded Concrete,\n" @@ -16572,13 +16735,13 @@ msgid "" "originals." msgstr "" -#: gnu/packages/tex.scm:979 +#: gnu/packages/tex.scm:990 msgid "" "This package provides a drop-in replacements for the Courier\n" "font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:1002 +#: gnu/packages/tex.scm:1013 msgid "" "The TeX-GYRE bundle consist of multiple font families:\n" "@itemize @bullet\n" @@ -16598,21 +16761,21 @@ msgid "" "support (for use with a variety of encodings) is provided." msgstr "" -#: gnu/packages/tex.scm:1041 +#: gnu/packages/tex.scm:1052 msgid "" "The Latin Modern fonts are derived from the famous Computer\n" "Modern fonts designed by Donald E. Knuth and described in Volume E of his\n" "Computers & Typesetting series." msgstr "" -#: gnu/packages/tex.scm:1106 +#: gnu/packages/tex.scm:1117 msgid "" "This is a collection of core TeX and METAFONT macro files\n" "from Donald Knuth, including the plain format, plain base, and the MF logo\n" "fonts." msgstr "" -#: gnu/packages/tex.scm:1181 +#: gnu/packages/tex.scm:1192 msgid "" "This is a collection of fonts for use with standard LaTeX\n" "packages and classes. It includes invisible fonts (for use with the slides\n" @@ -16620,14 +16783,14 @@ msgid "" "symbol fonts." msgstr "" -#: gnu/packages/tex.scm:1253 +#: gnu/packages/tex.scm:1264 msgid "" "This package provides LaTeX and font definition files to access the\n" "Knuthian mflogo fonts described in The Metafontbook and to typeset Metafont\n" "logos in LaTeX documents." msgstr "" -#: gnu/packages/tex.scm:1274 +#: gnu/packages/tex.scm:1285 msgid "" "These fonts were created in METAFONT by Knuth, for his own publications.\n" "At some stage, the letters P and S were added, so that the METAPOST logo could\n" @@ -16636,7 +16799,7 @@ msgid "" "Taco Hoekwater." msgstr "" -#: gnu/packages/tex.scm:1402 +#: gnu/packages/tex.scm:1415 gnu/packages/tex.scm:1579 msgid "" "This package provides an extended set of fonts for use in mathematics,\n" "including: extra mathematical symbols; blackboard bold letters (uppercase\n" @@ -16650,7 +16813,7 @@ msgid "" "details can be found in the documentation." msgstr "" -#: gnu/packages/tex.scm:1432 +#: gnu/packages/tex.scm:1609 msgid "" "Mkpattern is a general purpose program for the generation of\n" "hyphenation patterns, with definition of letter sets and template-like\n" @@ -16658,7 +16821,7 @@ msgid "" "output encodings, and features generation of clean UTF-8 patterns." msgstr "" -#: gnu/packages/tex.scm:1489 +#: gnu/packages/tex.scm:1666 msgid "" "This package provides an extended version of TeX (which is capable of\n" "running as if it were TeX unmodified). E-TeX has been specified by the LaTeX\n" @@ -16667,122 +16830,131 @@ msgid "" "incorporates the e-TeX extensions." msgstr "" -#: gnu/packages/tex.scm:1507 +#: gnu/packages/tex.scm:1684 msgid "" "This package contains files used to build the Plain TeX format, as\n" "described in the TeXbook, together with various supporting files (some also\n" "discussed in the book)." msgstr "" -#: gnu/packages/tex.scm:1533 +#: gnu/packages/tex.scm:1702 +msgid "" +"The package facilitates wrapping text to a specific character width, breaking\n" +"lines by words rather than, as done by TeX, by characters. The primary use for\n" +"these facilities is to aid the generation of messages sent to the log file or\n" +"console output to display messages to the user. Package authors may also find\n" +"this useful when writing out arbitary text to an external file." +msgstr "" + +#: gnu/packages/tex.scm:1730 msgid "" "This package provides a drop-in replacements for the Helvetica\n" "font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:1546 +#: gnu/packages/tex.scm:1743 msgid "" "The package provides hyphenation patterns for the Afrikaans\n" "language." msgstr "" -#: gnu/packages/tex.scm:1560 +#: gnu/packages/tex.scm:1757 msgid "" "The package provides hyphenation patterns for ancient\n" "Greek." msgstr "" -#: gnu/packages/tex.scm:1573 +#: gnu/packages/tex.scm:1770 msgid "" "The package provides hyphenation patterns for the Armenian\n" "language." msgstr "" -#: gnu/packages/tex.scm:1587 +#: gnu/packages/tex.scm:1784 msgid "" "The package provides hyphenation patterns for the Basque\n" "language." msgstr "" -#: gnu/packages/tex.scm:1601 +#: gnu/packages/tex.scm:1798 msgid "" "The package provides hyphenation patterns for the Belarusian\n" "language." msgstr "" -#: gnu/packages/tex.scm:1613 +#: gnu/packages/tex.scm:1810 msgid "" "The package provides hyphenation patterns for the Bulgarian\n" "language in T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1627 +#: gnu/packages/tex.scm:1824 msgid "" "The package provides hyphenation patterns for Catalan in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1640 +#: gnu/packages/tex.scm:1837 msgid "" "The package provides hyphenation patterns for unaccented\n" "Chinese pinyin T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1652 +#: gnu/packages/tex.scm:1849 msgid "" "The package provides hyphenation patterns for Church\n" "Slavonic in UTF-8 encoding." msgstr "" -#: gnu/packages/tex.scm:1665 +#: gnu/packages/tex.scm:1862 msgid "" "The package provides hyphenation patterns for Coptic in\n" "UTF-8 encoding as well as in ASCII-based encoding for 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:1678 +#: gnu/packages/tex.scm:1875 msgid "" "The package provides hyphenation patterns for Croatian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1690 +#: gnu/packages/tex.scm:1887 msgid "" "The package provides hyphenation patterns for Czech in T1/EC\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1702 +#: gnu/packages/tex.scm:1899 msgid "" "The package provides hyphenation patterns for Danish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1715 +#: gnu/packages/tex.scm:1912 msgid "" "The package provides hyphenation patterns for Dutch in T1/EC\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1728 +#: gnu/packages/tex.scm:1925 msgid "" "The package provides additional hyphenation patterns for\n" "American and British English in ASCII encoding." msgstr "" -#: gnu/packages/tex.scm:1742 +#: gnu/packages/tex.scm:1939 msgid "" "The package provides hyphenation patterns for Esperanto ISO\n" "Latin 3 and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1754 +#: gnu/packages/tex.scm:1951 msgid "" "The package provides hyphenation patterns for Estonian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1768 +#: gnu/packages/tex.scm:1965 msgid "" "The package provides hyphenation patterns for languages\n" "written using the Ethiopic script for Unicode engines. They are not supposed\n" @@ -16790,94 +16962,94 @@ msgid "" "be replaced by files tailored to individual languages." msgstr "" -#: gnu/packages/tex.scm:1782 +#: gnu/packages/tex.scm:1979 msgid "" "The package provides hyphenation patterns for Finnish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1794 +#: gnu/packages/tex.scm:1991 msgid "" "The package provides hyphenation patterns for Finnish for\n" "school in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1806 +#: gnu/packages/tex.scm:2003 msgid "" "The package provides hyphenation patterns for French in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1818 +#: gnu/packages/tex.scm:2015 msgid "" "The package provides hyphenation patterns for Friulan in\n" "ASCII encodings." msgstr "" -#: gnu/packages/tex.scm:1831 +#: gnu/packages/tex.scm:2028 msgid "" "The package provides hyphenation patterns for Galician in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1843 +#: gnu/packages/tex.scm:2040 msgid "" "The package provides hyphenation patterns for Georgian in\n" "T8M, T8K, and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1861 +#: gnu/packages/tex.scm:2058 msgid "" "This package provides hyphenation patterns for German in\n" "T1/EC and UTF-8 encodings, for traditional and reformed spelling, including\n" "Swiss German." msgstr "" -#: gnu/packages/tex.scm:1880 +#: gnu/packages/tex.scm:2077 msgid "" "This package provides hyphenation patterns for Modern Greek\n" "in monotonic and polytonic spelling in LGR and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1894 +#: gnu/packages/tex.scm:2091 msgid "" "This package provides hyphenation patterns for Hungarian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1907 +#: gnu/packages/tex.scm:2104 msgid "" "This package provides hyphenation patterns for Icelandic in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1930 +#: gnu/packages/tex.scm:2127 msgid "" "This package provides hyphenation patterns for Assamese,\n" "Bengali, Gujarati, Hindi, Kannada, Malayalam, Marathi, Oriya, Panjabi, Tamil\n" "and Telugu for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:1943 +#: gnu/packages/tex.scm:2140 msgid "" "This package provides hyphenation patterns for\n" "Indonesian (Bahasa Indonesia) in ASCII encoding. They are probably also\n" "usable for Malay (Bahasa Melayu)." msgstr "" -#: gnu/packages/tex.scm:1956 +#: gnu/packages/tex.scm:2153 msgid "" "This package provides hyphenation patterns for Interlingua\n" "in ASCII encoding." msgstr "" -#: gnu/packages/tex.scm:1968 +#: gnu/packages/tex.scm:2165 msgid "" "This package provides hyphenation patterns for\n" "Irish (Gaeilge) in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1981 +#: gnu/packages/tex.scm:2178 msgid "" "This package provides hyphenation patterns for Italian in\n" "ASCII encoding. Compliant with the Recommendation UNI 6461 on hyphenation\n" @@ -16885,14 +17057,14 @@ msgid "" "UNI)." msgstr "" -#: gnu/packages/tex.scm:1995 +#: gnu/packages/tex.scm:2192 msgid "" "This package provides hyphenation patterns for\n" "Kurmanji (Northern Kurdish) as spoken in Turkey and by the Kurdish diaspora in\n" "Europe, in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2011 +#: gnu/packages/tex.scm:2208 msgid "" "This package provides hyphenation patterns for Latin in\n" "T1/EC and UTF-8 encodings, mainly in modern spelling (u when u is needed and v\n" @@ -16906,41 +17078,41 @@ msgid "" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2032 +#: gnu/packages/tex.scm:2229 msgid "" "This package provides hyphenation patterns for Latvian in\n" "L7X and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2045 +#: gnu/packages/tex.scm:2242 msgid "" "This package provides hyphenation patterns for Lithuanian in\n" "L7X and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2060 +#: gnu/packages/tex.scm:2257 #, fuzzy #| msgid "" #| "This package provides a dictionary for the Hunspell spell-checking\n" #| "library." -msgid "This package provides hypenation patterns for Macedonian." +msgid "This package provides hyphenation patterns for Macedonian." msgstr "" "Aqueste paquet provesís un diccionari per la bibliotèca del\n" "corrector ortografic Hunspell." -#: gnu/packages/tex.scm:2073 +#: gnu/packages/tex.scm:2270 msgid "" "This package provides hyphenation patterns for Mongolian in\n" "T2A, LMC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2088 +#: gnu/packages/tex.scm:2285 msgid "" "This package provides hyphenation patterns for Norwegian\n" "Bokmal and Nynorsk in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2102 +#: gnu/packages/tex.scm:2299 msgid "" "This package provides hyphenation patterns for Occitan in\n" "T1/EC and UTF-8 encodings. They are supposed to be valid for all the Occitan\n" @@ -16949,94 +17121,94 @@ msgid "" "Alps encompassing the southern half of the French pentagon." msgstr "" -#: gnu/packages/tex.scm:2117 +#: gnu/packages/tex.scm:2314 msgid "" "This package provides hyphenation patterns for Panjabi in\n" "T1/EC encoding." msgstr "" -#: gnu/packages/tex.scm:2130 +#: gnu/packages/tex.scm:2327 msgid "" "This package provides hyphenation patterns for Piedmontese\n" "in ASCII encoding. Compliant with 'Gramatica dla lengua piemonteisa' by\n" "Camillo Brero." msgstr "" -#: gnu/packages/tex.scm:2143 +#: gnu/packages/tex.scm:2340 msgid "" "This package provides hyphenation patterns for Polish in QX\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2156 +#: gnu/packages/tex.scm:2353 msgid "" "This package provides hyphenation patterns for Portuguese in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2168 +#: gnu/packages/tex.scm:2365 msgid "" "This package provides hyphenation patterns for Romanian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2181 +#: gnu/packages/tex.scm:2378 msgid "" "This package provides hyphenation patterns for Romansh in\n" "ASCII encodings. They are supposed to comply with the rules indicated by the\n" "Lia Rumantscha (Romansh language society)." msgstr "" -#: gnu/packages/tex.scm:2194 +#: gnu/packages/tex.scm:2391 msgid "" "This package provides hyphenation patterns for Russian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2207 +#: gnu/packages/tex.scm:2404 msgid "" "This package provides hyphenation patterns for Sanskrit and\n" "Prakrit in longdesc transliteration, and in Devanagari, Bengali, Kannada,\n" "Malayalam longdesc and Telugu scripts for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:2224 +#: gnu/packages/tex.scm:2421 msgid "" "This package provides hyphenation patterns for Serbian in\n" "T1/EC, T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2237 +#: gnu/packages/tex.scm:2434 msgid "" "This package provides hyphenation patterns for Slovak in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2249 +#: gnu/packages/tex.scm:2446 msgid "" "This package provides hyphenation patterns for Slovenian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2265 +#: gnu/packages/tex.scm:2462 msgid "" "The package provides hyphenation patterns for Spanish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2277 +#: gnu/packages/tex.scm:2474 msgid "" "This package provides hyphenation patterns for Swedish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2289 +#: gnu/packages/tex.scm:2486 msgid "" "This package provides hyphenation patterns for Thai in LTH\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2302 +#: gnu/packages/tex.scm:2499 msgid "" "The package provides hyphenation patterns for Turkish in\n" "T1/EC and UTF-8 encodings. The patterns for Turkish were first produced for\n" @@ -17046,31 +17218,31 @@ msgid "" "compatibility with 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:2319 +#: gnu/packages/tex.scm:2516 msgid "" "The package provides hyphenation patterns for Turkmen in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2331 +#: gnu/packages/tex.scm:2528 msgid "" "This package provides hyphenation patterns for Ukrainian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2344 +#: gnu/packages/tex.scm:2541 msgid "" "This package provides hyphenation patterns for Upper Sorbian\n" "in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2356 +#: gnu/packages/tex.scm:2553 msgid "" "This package provides hyphenation patterns for Welsh in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2477 +#: gnu/packages/tex.scm:2674 msgid "" "Modern native UTF-8 engines such as XeTeX and LuaTeX need\n" "hyphenation patterns in UTF-8 format, whereas older systems require\n" @@ -17083,7 +17255,7 @@ msgid "" "converters, will completely supplant the older patterns." msgstr "" -#: gnu/packages/tex.scm:2521 +#: gnu/packages/tex.scm:2718 msgid "" "The package provides experimental hyphenation patterns for\n" "the German language, covering both traditional and reformed orthography. The\n" @@ -17091,21 +17263,29 @@ msgid "" "bundle." msgstr "" -#: gnu/packages/tex.scm:2542 +#: gnu/packages/tex.scm:2739 msgid "" "The package provides a range of hyphenation patterns for\n" "Ukrainian, depending on the encoding of the output font including the standard\n" "T2A." msgstr "" -#: gnu/packages/tex.scm:2577 +#: gnu/packages/tex.scm:2774 msgid "" "The package provides a collection of Russian hyphenation\n" "patterns supporting a number of Cyrillic font encodings, including T2,\n" "UCY (Omega Unicode Cyrillic), LCY, LWN (OT2), and koi8-r." msgstr "" -#: gnu/packages/tex.scm:2620 +#: gnu/packages/tex.scm:2792 +msgid "" +"This package deals with input encodings. It provides a wider range of input\n" +"encodings using standard mappings, than does inputenc; it also covers nearly all\n" +"slots. In this way, it serves as more uptodate replacement for package\n" +"inputenc." +msgstr "" + +#: gnu/packages/tex.scm:2853 msgid "" "Kpathsea is a library and utility programs which provide\n" "path searching facilities for TeX file types, including the self-locating\n" @@ -17113,13 +17293,27 @@ msgid "" "mechanism. This package provides supporting files." msgstr "" -#: gnu/packages/tex.scm:2636 +#: gnu/packages/tex.scm:2876 +msgid "" +"The family contains text fonts in roman, sans-serif and monospaced\n" +"shapes, with true small caps and old-style numbers; the package offers full\n" +"support of the textcomp package. The mathematics fonts include all the AMS\n" +"fonts, in both normal and bold weights. Each of the font types is available\n" +"in two main versions: default and light. Each version is available in four\n" +"variants: default; oldstyle numbers; oldstyle numbers with old ligatures such\n" +"as ct and st, and long-tailed capital Q; and veryoldstyle with long s. Other\n" +"variants include small caps as default or large small caps, and for\n" +"mathematics both upright and slanted shapes for Greek letters, as well as\n" +"default and narrow versions of multiple integrals." +msgstr "" + +#: gnu/packages/tex.scm:2898 msgid "" "The package provides configuration files for LaTeX-related\n" "formats." msgstr "" -#: gnu/packages/tex.scm:2867 +#: gnu/packages/tex.scm:3127 msgid "" "This bundle comprises the source of LaTeX itself, together with several\n" "packages which are considered \"part of the kernel\". This bundle, together\n" @@ -17127,7 +17321,7 @@ msgid "" "contain." msgstr "" -#: gnu/packages/tex.scm:2885 +#: gnu/packages/tex.scm:3145 msgid "" "This LaTeX packages provides two hooks for @code{\\end@{document@}}\n" "that are executed after the hook of @code{\\AtEndDocument}:\n" @@ -17137,13 +17331,13 @@ msgid "" "of the @file{.aux} file." msgstr "" -#: gnu/packages/tex.scm:2905 +#: gnu/packages/tex.scm:3165 msgid "" "This package provides hooks for adding code at the beginning of\n" "@file{.aux} files." msgstr "" -#: gnu/packages/tex.scm:2921 +#: gnu/packages/tex.scm:3181 msgid "" "The package adds support for EPS files in the @code{graphicx} package\n" "when running under pdfTeX. If an EPS graphic is detected, the package\n" @@ -17151,7 +17345,7 @@ msgid "" "@command{epstopdf}." msgstr "" -#: gnu/packages/tex.scm:2943 +#: gnu/packages/tex.scm:3203 msgid "" "LaTeX2e's @code{filecontents} and @code{filecontents*} environments\n" "enable a LaTeX source file to generate external files as it runs through\n" @@ -17162,7 +17356,7 @@ msgid "" "@code{filecontents*} anywhere." msgstr "" -#: gnu/packages/tex.scm:2964 +#: gnu/packages/tex.scm:3224 msgid "" "This package provides the original (and now obsolescent) graphics\n" "inclusion macros for use with dvips, still widely used by Plain TeX users (in\n" @@ -17172,7 +17366,7 @@ msgid "" "users, via its Plain TeX version.)" msgstr "" -#: gnu/packages/tex.scm:2986 +#: gnu/packages/tex.scm:3246 msgid "" "This package provides tools for the flexible handling of verbatim text\n" "including: verbatim commands in footnotes; a variety of verbatim environments\n" @@ -17182,7 +17376,7 @@ msgid "" "verbatim source)." msgstr "" -#: gnu/packages/tex.scm:3008 +#: gnu/packages/tex.scm:3268 msgid "" "This bundle is a combined distribution consisting of @file{dvips.def},\n" "@file{pdftex.def}, @file{luatex.def}, @file{xetex.def}, @file{dvipdfmx.def},\n" @@ -17190,13 +17384,19 @@ msgid "" "packages." msgstr "" -#: gnu/packages/tex.scm:3026 +#: gnu/packages/tex.scm:3286 msgid "" "This bundle includes @file{color.cfg} and @file{graphics.cfg} files that\n" "set default \"driver\" options for the color and graphics packages." msgstr "" -#: gnu/packages/tex.scm:3048 +#: gnu/packages/tex.scm:3303 +msgid "" +"The package provides Greek LICR macro definitions and encoding definition files\n" +"for Greek text font encodings for use with fontenc." +msgstr "" + +#: gnu/packages/tex.scm:3325 msgid "" "This is a collection of LaTeX packages for producing color, including\n" "graphics (e.g. PostScript) files, and rotation and scaling of text in LaTeX\n" @@ -17204,13 +17404,13 @@ msgid "" "keyval, and lscape." msgstr "" -#: gnu/packages/tex.scm:3066 +#: gnu/packages/tex.scm:3343 msgid "" "This package provides the code for the @code{color} option that is\n" "used by @code{hyperref} and @code{bookmark}." msgstr "" -#: gnu/packages/tex.scm:3098 +#: gnu/packages/tex.scm:3375 msgid "" "The package starts from the basic facilities of the colorcolor package,\n" "and provides easy driver-independent access to several kinds of color tints,\n" @@ -17221,7 +17421,7 @@ msgid "" "tables." msgstr "" -#: gnu/packages/tex.scm:3171 +#: gnu/packages/tex.scm:3448 msgid "" "The package provides an implementation of a parser for\n" "documents matching the XML 1.0 and XML Namespace Recommendations. Element and\n" @@ -17229,7 +17429,7 @@ msgid "" "XML, using UTF-8 or a suitable 8-bit encoding." msgstr "" -#: gnu/packages/tex.scm:3222 +#: gnu/packages/tex.scm:3499 msgid "" "The @code{hyperref} package is used to handle cross-referencing commands\n" "in LaTeX to produce hypertext links in the document. The package provides\n" @@ -17241,20 +17441,20 @@ msgid "" "@code{nameref} packages, which make use of the facilities of @code{hyperref}." msgstr "" -#: gnu/packages/tex.scm:3262 +#: gnu/packages/tex.scm:3539 msgid "" "The bundle comprises various LaTeX packages, providing among others:\n" "better accessibility support for PDF files; extensible chemists reaction\n" "arrows; record information about document class(es) used; and many more." msgstr "" -#: gnu/packages/tex.scm:3285 +#: gnu/packages/tex.scm:3562 msgid "" "This package provides additional rerun warnings if some auxiliary\n" "files have changed. It is based on MD5 checksum, provided by pdfTeX." msgstr "" -#: gnu/packages/tex.scm:3319 +#: gnu/packages/tex.scm:3596 msgid "" "This package is a collection of (variously) simple tools provided as\n" "part of the LaTeX required tools distribution, comprising the following\n" @@ -17264,7 +17464,7 @@ msgid "" "xr, and xspace." msgstr "" -#: gnu/packages/tex.scm:3338 +#: gnu/packages/tex.scm:3615 msgid "" "The command @code{\\url} is a form of verbatim command that\n" "allows linebreaks at certain characters or combinations of characters, accepts\n" @@ -17276,14 +17476,14 @@ msgid "" "of file names." msgstr "" -#: gnu/packages/tex.scm:3364 +#: gnu/packages/tex.scm:3641 msgid "" "This package provides font maps that were originally part of\n" "the now obsolete teTeX distributions but are still used at the core of the TeX\n" "Live distribution." msgstr "" -#: gnu/packages/tex.scm:3391 +#: gnu/packages/tex.scm:3668 msgid "" "The l3kernel bundle provides an implementation of the LaTeX3\n" "programmers’ interface, as a set of packages that run under LaTeX 2e. The\n" @@ -17292,7 +17492,7 @@ msgid "" "that the LaTeX3 conventions can be used with regular LaTeX 2e packages." msgstr "" -#: gnu/packages/tex.scm:3420 +#: gnu/packages/tex.scm:3697 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" @@ -17301,7 +17501,7 @@ msgid "" "an independent schedule." msgstr "" -#: gnu/packages/tex.scm:3484 +#: gnu/packages/tex.scm:3761 msgid "" "This bundle holds prototype implementations of concepts for a LaTeX\n" "designer interface, to be used with the experimental LaTeX kernel as\n" @@ -17318,14 +17518,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:3511 +#: gnu/packages/tex.scm:3788 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" "here are defined for the dvips engine only." msgstr "" -#: gnu/packages/tex.scm:3539 +#: gnu/packages/tex.scm:3816 msgid "" "Fontspec is a package for XeLaTeX and LuaLaTeX. It provides an\n" "automatic and unified interface to feature-rich AAT and OpenType fonts through\n" @@ -17333,7 +17533,7 @@ msgid "" "the l3kernel and xparse bundles from the LaTeX 3 development team." msgstr "" -#: gnu/packages/tex.scm:3569 +#: gnu/packages/tex.scm:3846 msgid "" "The original grffile package extended the file name processing of the\n" "@code{graphics} package to support a larger range of file names. The base\n" @@ -17341,13 +17541,13 @@ msgid "" "is a stub that just loads @code{graphicx}." msgstr "" -#: gnu/packages/tex.scm:3610 +#: gnu/packages/tex.scm:3887 msgid "" "This package provides @code{\\StringEncodingConvert} for converting a\n" "string between different encodings. Both LaTeX and plain-TeX are supported." msgstr "" -#: gnu/packages/tex.scm:3653 +#: gnu/packages/tex.scm:3930 msgid "" "The l3build module is designed to support the development of\n" "high-quality LaTeX code by providing: a unit testing system, automated\n" @@ -17356,14 +17556,20 @@ msgid "" "@code{.tex} file which provides the testing environment." msgstr "" -#: gnu/packages/tex.scm:3690 +#: gnu/packages/tex.scm:3953 msgid "" "Lualibs is a collection of Lua modules useful for general programming.\n" "The bundle is based on Lua modules shipped with ConTeXt, and made available in\n" "this bundle for use independent of ConTeXt." msgstr "" -#: gnu/packages/tex.scm:3718 +#: gnu/packages/tex.scm:3972 +msgid "" +"This package provides a Lua module for processing application arguments\n" +"in the same way as BSD/GNU @code{getopt_long(3)} functions do." +msgstr "" + +#: gnu/packages/tex.scm:3999 msgid "" "Luaotfload is an adaptation of the ConTeXt font loading system for the\n" "Plain and LaTeX formats. It allows OpenType fonts to be loaded with font\n" @@ -17372,11 +17578,7 @@ msgid "" "loading fonts by their proper names instead of file names." msgstr "" -#: gnu/packages/tex.scm:3790 -msgid "This package is necessary to use LaTeX with the LuaTeX engine." -msgstr "" - -#: gnu/packages/tex.scm:3809 +#: gnu/packages/tex.scm:4025 msgid "" "This is the principal package in the AMS-LaTeX distribution. It adapts\n" "for use in LaTeX most of the mathematical features found in AMS-TeX; it is\n" @@ -17391,7 +17593,7 @@ msgid "" "definitions." msgstr "" -#: gnu/packages/tex.scm:3843 +#: gnu/packages/tex.scm:4059 msgid "" "This bundle contains three AMS classes: @code{amsartamsart} (for writing\n" "articles for the AMS), @code{amsbookamsbook} (for books) and\n" @@ -17400,7 +17602,7 @@ msgid "" "distribution." msgstr "" -#: gnu/packages/tex.scm:3890 +#: gnu/packages/tex.scm:4106 msgid "" "The package manages culturally-determined typographical (and other)\n" "rules, and hyphenation patterns for a wide range of languages. A document may\n" @@ -17411,7 +17613,7 @@ msgid "" "polyglossia package rather than Babel." msgstr "" -#: gnu/packages/tex.scm:3917 +#: gnu/packages/tex.scm:4133 msgid "" "This package provides the language definition file for support of\n" "English in @code{babel}. Care is taken to select British hyphenation patterns\n" @@ -17419,13 +17621,14 @@ msgid "" "for Canadian and USA text." msgstr "" -#: gnu/packages/tex.scm:3939 +#: gnu/packages/tex.scm:4173 msgid "" -"This package provides support for the French language for the\n" -"babel multilingual system." +"The package, formerly known as frenchb, establishes French conventions\n" +"in a document (or a subset of the conventions, if French is not the main\n" +"language of the document)." msgstr "" -#: gnu/packages/tex.scm:3959 +#: gnu/packages/tex.scm:4196 msgid "" "This package provides the language definition file for support of German\n" "in @code{babel}. It provides all the necessary macros, definitions and\n" @@ -17434,14 +17637,14 @@ msgid "" "Swiss varieties of German." msgstr "" -#: gnu/packages/tex.scm:3986 +#: gnu/packages/tex.scm:4223 msgid "" "This package provides the language definition file for\n" "support of Swedish in @code{babel}. It provides all the necessary macros,\n" "definitions and settings to typeset Swedish documents." msgstr "" -#: gnu/packages/tex.scm:4008 +#: gnu/packages/tex.scm:4245 msgid "" "This bundle of macros files provides macro support (including font\n" "encoding macros) for the use of Cyrillic characters in fonts encoded under the\n" @@ -17449,7 +17652,7 @@ msgid "" "language that is written in a Cyrillic alphabet." msgstr "" -#: gnu/packages/tex.scm:4126 +#: gnu/packages/tex.scm:4363 msgid "" "The PSNFSS collection includes a set of files that provide a complete\n" "working setup of the LaTeX font selection scheme (NFSS2) for use with common\n" @@ -17464,20 +17667,20 @@ msgid "" "part of the LaTeX required set of packages." msgstr "" -#: gnu/packages/tex.scm:4177 gnu/packages/tex.scm:4269 +#: gnu/packages/tex.scm:4414 gnu/packages/tex.scm:4506 msgid "" "This is a very limited subset of the TeX Live distribution.\n" "It includes little more than the required set of LaTeX packages." msgstr "" -#: gnu/packages/tex.scm:4248 +#: gnu/packages/tex.scm:4485 msgid "" "This package contains the fonts map configuration file\n" "generated for the base TeX Live packages as well as, optionally, user-provided\n" "ones." msgstr "" -#: gnu/packages/tex.scm:4288 +#: gnu/packages/tex.scm:4525 msgid "" "These fonts are considered the \"ultimate answer\" to IPA\n" "typesetting. The encoding of these 8-bit fonts has been registered as LaTeX\n" @@ -17486,7 +17689,7 @@ msgid "" "TS3 fonts." msgstr "" -#: gnu/packages/tex.scm:4311 +#: gnu/packages/tex.scm:4548 msgid "" "Amsrefs is a LaTeX package for bibliographies that provides an archival\n" "data format similar to the format of BibTeX database files, but adapted to\n" @@ -17494,7 +17697,7 @@ msgid "" "conjunction with BibTeX or as a replacement for BibTeX." msgstr "" -#: gnu/packages/tex.scm:4340 +#: gnu/packages/tex.scm:4577 msgid "" "This package aims to provide a one-stop solution to requirements for\n" "footnotes. It offers: Multiple footnote apparatus superior to that of\n" @@ -17508,7 +17711,7 @@ msgid "" "@code{suffix} packages." msgstr "" -#: gnu/packages/tex.scm:4368 +#: gnu/packages/tex.scm:4605 msgid "" "The package provides the commands @code{\\blindtext} and\n" "@code{\\Blindtext} for creating \"blind\" text useful in testing new classes\n" @@ -17519,7 +17722,7 @@ msgid "" "ipsum\" text, see the @code{lipsum} package)." msgstr "" -#: gnu/packages/tex.scm:4407 +#: gnu/packages/tex.scm:4644 msgid "" "This package implements a document layout for writing letters according\n" "to the rules of DIN (Deutsches Institut für Normung, German standardisation\n" @@ -17531,7 +17734,7 @@ msgid "" "package." msgstr "" -#: gnu/packages/tex.scm:4433 +#: gnu/packages/tex.scm:4670 msgid "" "This package provides a means to add a textual, light grey watermark on\n" "every page or on the first page of a document. Typical usage may consist in\n" @@ -17541,7 +17744,7 @@ msgid "" "on everypage." msgstr "" -#: gnu/packages/tex.scm:4457 +#: gnu/packages/tex.scm:4694 msgid "" "This package provides the @code{\\collect@@body} command (as in\n" "@code{amsmath}), as well as a @code{\\long} version @code{\\Collect@@Body},\n" @@ -17549,7 +17752,7 @@ msgid "" "define a new author interface to creating new environments." msgstr "" -#: gnu/packages/tex.scm:4479 +#: gnu/packages/tex.scm:4716 msgid "" "LaTeX users sometimes need to ensure that two or more blocks of text\n" "occupy the same amount of horizontal space on the page. To that end, the\n" @@ -17563,7 +17766,7 @@ msgid "" "also provided." msgstr "" -#: gnu/packages/tex.scm:4504 +#: gnu/packages/tex.scm:4741 msgid "" "This package gives the user complete control of how the entries of\n" "the table of contents should be constituted from the name, number, and page\n" @@ -17583,7 +17786,7 @@ msgid "" "table of contents." msgstr "" -#: gnu/packages/tex.scm:4546 +#: gnu/packages/tex.scm:4783 msgid "" "The package provides additional features for the LaTeX\n" "@code{description} environment, including adjustable left margin. The package\n" @@ -17592,7 +17795,7 @@ msgid "" "@code{enumerate} lists, and numbered lists remain in sequence)." msgstr "" -#: gnu/packages/tex.scm:4566 +#: gnu/packages/tex.scm:4803 msgid "" "This package provides macros to read and compare the modification dates\n" "of files. The files may be @code{.tex} files, images or other files (as long\n" @@ -17604,14 +17807,14 @@ msgid "" "but non-expandable ones." msgstr "" -#: gnu/packages/tex.scm:4589 +#: gnu/packages/tex.scm:4826 msgid "" "The @code{hanging} package facilitates the typesetting of hanging\n" "paragraphs. The package also enables typesetting with hanging punctuation,\n" "by making punctuation characters active." msgstr "" -#: gnu/packages/tex.scm:4612 +#: gnu/packages/tex.scm:4849 msgid "" "This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX support for\n" "the Fira Sans family of fonts designed by Erik Spiekermann and Ralph du\n" @@ -17619,7 +17822,7 @@ msgid "" "corresponding italics: light, regular, medium, bold, ..." msgstr "" -#: gnu/packages/tex.scm:4635 +#: gnu/packages/tex.scm:4872 msgid "" "This package uses the (La)TeX extension @code{-shell-escape} to\n" "establish whether the document is being processed on a Windows or on a\n" @@ -17630,7 +17833,7 @@ msgid "" "classes of systems." msgstr "" -#: gnu/packages/tex.scm:4660 +#: gnu/packages/tex.scm:4897 msgid "" "This bundle provides a package that implements both author-year and\n" "numbered references, as well as much detailed of support for other\n" @@ -17640,20 +17843,20 @@ msgid "" "designed from the start to be compatible with @code{natbib}." msgstr "" -#: gnu/packages/tex.scm:4679 +#: gnu/packages/tex.scm:4916 msgid "" "This package provides a friendly interface for defining the meaning of\n" "Unicode characters. The document should be processed by (pdf)LaTeX with the\n" "Unicode option of @code{inputenc} or @code{inputenx}, or by XeLaTeX/LuaLaTeX." msgstr "" -#: gnu/packages/tex.scm:4699 +#: gnu/packages/tex.scm:4936 msgid "" "This package makes a number of utility functions from pdfTeX\n" "available for luaTeX by reimplementing them using Lua." msgstr "" -#: gnu/packages/tex.scm:4719 +#: gnu/packages/tex.scm:4956 msgid "" "This package allows LaTeX constructions (equations, picture\n" "environments, etc.) to be precisely superimposed over Encapsulated PostScript\n" @@ -17664,7 +17867,7 @@ msgid "" "rotated." msgstr "" -#: gnu/packages/tex.scm:4751 +#: gnu/packages/tex.scm:4988 msgid "" "This is a package for processing PostScript graphics with @code{psfrag}\n" "labels within pdfLaTeX documents. Every graphic is compiled individually,\n" @@ -17672,7 +17875,7 @@ msgid "" "re-processing." msgstr "" -#: gnu/packages/tex.scm:4771 +#: gnu/packages/tex.scm:5008 msgid "" "This package provides the @code{\\setcounterref} and\n" "@code{\\addtocounterref} commands which use the section (or other) number\n" @@ -17681,7 +17884,7 @@ msgid "" "corresponding thing with the page reference of the label." msgstr "" -#: gnu/packages/tex.scm:4791 +#: gnu/packages/tex.scm:5028 msgid "" "This package provides a class that produces overhead\n" "slides (transparencies), with many facilities. Seminar is not nowadays\n" @@ -17690,14 +17893,14 @@ msgid "" "21st-century presentation styles." msgstr "" -#: gnu/packages/tex.scm:4812 +#: gnu/packages/tex.scm:5049 msgid "" "The package provides a versatile way to stack objects vertically in a\n" "variety of customizable ways. A number of useful macros are provided, all\n" "of which make use of the @code{stackengine} core." msgstr "" -#: gnu/packages/tex.scm:4828 +#: gnu/packages/tex.scm:5065 msgid "" "This package provides control over the typography of the\n" "@dfn{Table of Contents}, @dfn{List of Figures} and @dfn{List of Tables},\n" @@ -17705,7 +17908,7 @@ msgid "" "be changed." msgstr "" -#: gnu/packages/tex.scm:4862 +#: gnu/packages/tex.scm:5099 msgid "" "This very short package allows you to expandably remove spaces around a\n" "token list (commands are provided to remove spaces before, spaces after, or\n" @@ -17713,13 +17916,32 @@ msgid "" "space-stripped macros." msgstr "" -#: gnu/packages/tex.scm:4897 +#: gnu/packages/tex.scm:5115 +#, fuzzy +#| msgid "" +#| "This package provides a dictionary for the Hunspell spell-checking\n" +#| "library." +msgid "This package provides a math interface to the Rsfs fonts." +msgstr "" +"Aqueste paquet provesís un diccionari per la bibliotèca del\n" +"corrector ortografic Hunspell." + +#: gnu/packages/tex.scm:5152 msgid "" "This package defines a command @code{\\captionof} for putting a caption\n" "to something that's not a float." msgstr "" -#: gnu/packages/tex.scm:4913 +#: gnu/packages/tex.scm:5170 +msgid "" +"Many of David Carlisle's more substantial packages stand on their own,\n" +"or as part of the LaTeX latex-tools set; this set contains: making dotless\n" +"@emph{j} characters for fonts that don't have them; a method for combining the\n" +"capabilities of longtable and tabularx; an environment for including plain TeX\n" +"in LaTeX documents; a jiffy to create slashed characters for physicists." +msgstr "" + +#: gnu/packages/tex.scm:5189 msgid "" "You can hyperlink DOI numbers to doi.org. However, some publishers have\n" "elected to use nasty characters in their DOI numbering scheme (@code{<},\n" @@ -17729,7 +17951,7 @@ msgid "" "hyperlink to the target of the DOI." msgstr "" -#: gnu/packages/tex.scm:4936 +#: gnu/packages/tex.scm:5212 msgid "" "This package is a toolbox of programming facilities geared primarily\n" "towards LaTeX class and package authors. It provides LaTeX frontends to some\n" @@ -17740,7 +17962,7 @@ msgid "" "of the LaTeX kernel." msgstr "" -#: gnu/packages/tex.scm:4976 +#: gnu/packages/tex.scm:5252 msgid "" "This package provides seven predefined chapter heading styles. Each\n" "style can be modified using a set of simple commands. Optionally one can\n" @@ -17748,7 +17970,7 @@ msgid "" "headings." msgstr "" -#: gnu/packages/tex.scm:5011 +#: gnu/packages/tex.scm:5287 msgid "" "The package creates three environments: @code{framed}, which puts an\n" "ordinary frame box around the region, @code{shaded}, which shades the region,\n" @@ -17759,7 +17981,7 @@ msgid "" "@code{\\MakeFramed} to make your own framed-style environments." msgstr "" -#: gnu/packages/tex.scm:5045 +#: gnu/packages/tex.scm:5321 msgid "" "This package is designed for formatting formless letters in German; it\n" "can also be used for English (by those who can read the documentation). There\n" @@ -17767,13 +17989,13 @@ msgid "" "\"old\" and a \"new\" version of g-brief." msgstr "" -#: gnu/packages/tex.scm:5067 +#: gnu/packages/tex.scm:5343 msgid "" "The package deals with connections in two-dimensional style, optionally\n" "in colour." msgstr "" -#: gnu/packages/tex.scm:5087 +#: gnu/packages/tex.scm:5363 msgid "" "The package allows citations in the German style, which is considered by\n" "many to be particularly reader-friendly. The citation provides a small amount\n" @@ -17783,7 +18005,7 @@ msgid "" "BibLaTeX, and is considered experimental." msgstr "" -#: gnu/packages/tex.scm:5113 +#: gnu/packages/tex.scm:5389 msgid "" "This package provides an easy and flexible user interface to customize\n" "page layout, implementing auto-centering and auto-balancing mechanisms so that\n" @@ -17794,7 +18016,7 @@ msgid "" "ability to communicate the paper size it's set up to the output." msgstr "" -#: gnu/packages/tex.scm:5138 +#: gnu/packages/tex.scm:5414 msgid "" "This collection of tools includes: @code{atsupport} for short commands\n" "starting with @code{@@}, macros to sanitize the OT1 encoding of the\n" @@ -17804,13 +18026,13 @@ msgid "" "array environments; verbatim handling; and syntax diagrams." msgstr "" -#: gnu/packages/tex.scm:5162 +#: gnu/packages/tex.scm:5438 msgid "" "This package provides a complete Babel replacement for users of LuaLaTeX\n" "and XeLaTeX; it relies on the @code{fontspec} package, version 2.0 at least." msgstr "" -#: gnu/packages/tex.scm:5182 +#: gnu/packages/tex.scm:5458 msgid "" "This package was a predecessor of @code{longtable}; the newer\n" "package (designed on quite different principles) is easier to use and more\n" @@ -17818,7 +18040,7 @@ msgid "" "situations where longtable has problems." msgstr "" -#: gnu/packages/tex.scm:5217 +#: gnu/packages/tex.scm:5493 msgid "" "Texinfo is the preferred format for documentation in the GNU project;\n" "the format may be used to produce online or printed output from a single\n" @@ -17827,7 +18049,23 @@ msgid "" "hypertext linkages in some cases)." msgstr "" -#: gnu/packages/tex.scm:5240 +#: gnu/packages/tex.scm:5513 +msgid "" +"The textcase package offers commands @code{\\MakeTextUppercase} and\n" +"@code{\\MakeTextLowercase} are similar to the standard @code{\\MakeUppercase}\n" +"and @code{\\MakeLowercase}, but they do not change the case of any sections of\n" +"mathematics, or the arguments of @code{\\cite}, @code{\\label} and\n" +"@code{\\ref} commands within the argument. A further command\n" +"@code{\\NoCaseChange} does nothing but suppress case change within its\n" +"argument, so to force uppercase of a section including an environment, one\n" +"might say:\n" +"\n" +"@example\n" +"\\MakeTextUppercase{...\\NoCaseChange{\\begin{foo}} ...\\NoCaseChange{\\end{foo}}...}\n" +"@end example\n" +msgstr "" + +#: gnu/packages/tex.scm:5543 msgid "" "Typewriter-style fonts are best for program listings, but Computer\n" "Modern Typewriter prints @code{`} and @code{'} as bent opening and closing\n" @@ -17841,14 +18079,14 @@ msgid "" "does not affect @code{\\tt}, @code{\\texttt}, etc." msgstr "" -#: gnu/packages/tex.scm:5281 +#: gnu/packages/tex.scm:5584 msgid "" "This is a simple package to set up document margins. This package is\n" "considered obsolete; alternatives are the @code{typearea} package from the\n" "@code{koma-script} bundle, or the @code{geometry} package." msgstr "" -#: gnu/packages/tex.scm:5302 +#: gnu/packages/tex.scm:5605 msgid "" "The appendix package provides various ways of formatting the titles of\n" "appendices. Also (sub)appendices environments are provided that can be used,\n" @@ -17857,14 +18095,14 @@ msgid "" "command." msgstr "" -#: gnu/packages/tex.scm:5321 +#: gnu/packages/tex.scm:5624 msgid "" "This package implements a new bookmark (outline) organization for the\n" "@code{hyperref} package. Bookmark properties such as style and color. Other\n" "action types are available (URI, GoToR, Named)." msgstr "" -#: gnu/packages/tex.scm:5342 +#: gnu/packages/tex.scm:5645 msgid "" "Identify areas of text to be marked with changebars with the\n" "@code{\\cbstart} and @code{\\cbend} commands; the bars may be coloured. The\n" @@ -17873,19 +18111,19 @@ msgid "" "drivers, and VTeX and pdfTeX." msgstr "" -#: gnu/packages/tex.scm:5379 +#: gnu/packages/tex.scm:5682 msgid "" "This package embeds CMap tables into PDF files to make search and\n" "copy-and-paste functions work properly." msgstr "" -#: gnu/packages/tex.scm:5399 +#: gnu/packages/tex.scm:5702 msgid "" "This package allows rows, columns, and even individual cells in LaTeX\n" "tables to be coloured." msgstr "" -#: gnu/packages/tex.scm:5432 +#: gnu/packages/tex.scm:5735 msgid "" "This package provides variants of @code{\\fbox}: @code{\\shadowbox},\n" "@code{\\doublebox}, @code{\\ovalbox}, @code{\\Ovalbox}, with helpful tools for\n" @@ -17893,14 +18131,14 @@ msgid "" "floats, center, flushleft, and flushright, lists, and pages." msgstr "" -#: gnu/packages/tex.scm:5467 +#: gnu/packages/tex.scm:5770 msgid "" "The package provides extensive facilities, both for constructing headers\n" "and footers, and for controlling their use (for example, at times when LaTeX\n" "would automatically change the heading style in use)." msgstr "" -#: gnu/packages/tex.scm:5488 +#: gnu/packages/tex.scm:5791 msgid "" "This package improves the interface for defining floating objects such\n" "as figures and tables. It introduces the boxed float, the ruled float and the\n" @@ -17910,7 +18148,7 @@ msgid "" "with @code{\\floatplacement{figure}{H}}." msgstr "" -#: gnu/packages/tex.scm:5512 +#: gnu/packages/tex.scm:5815 msgid "" "This is a collection of ways to change the typesetting of footnotes.\n" "The package provides means of changing the layout of the footnotes themselves,\n" @@ -17920,7 +18158,7 @@ msgid "" "footnotes with symbols rather than numbers." msgstr "" -#: gnu/packages/tex.scm:5532 +#: gnu/packages/tex.scm:5835 msgid "" "TeX’s @code{\\let} assignment does not work for LaTeX macros with\n" "optional arguments, or for macros that are defined as robust macros by\n" @@ -17928,7 +18166,7 @@ msgid "" "that also takes care of the involved internal macros." msgstr "" -#: gnu/packages/tex.scm:5556 +#: gnu/packages/tex.scm:5859 msgid "" "The package enables the user to typeset programs (programming code)\n" "within LaTeX; the source code is read directly by TeX---no front-end processor\n" @@ -17936,7 +18174,7 @@ msgid "" "styles. Support for @code{hyperref} is provided." msgstr "" -#: gnu/packages/tex.scm:5591 +#: gnu/packages/tex.scm:5894 msgid "" "This package provides miscellaneous macros by Joerg Knappen, including:\n" "represent counters in greek; Maxwell's non-commutative division;\n" @@ -17948,13 +18186,13 @@ msgid "" "in SGML; use maths minus in text as appropriate; simple Young tableaux." msgstr "" -#: gnu/packages/tex.scm:5615 +#: gnu/packages/tex.scm:5918 msgid "" "This package provides facilities for using key-value format in\n" "package options." msgstr "" -#: gnu/packages/tex.scm:5684 +#: gnu/packages/tex.scm:5987 msgid "" "The EC fonts are European Computer Modern Fonts, supporting the complete\n" "LaTeX T1 encoding defined at the 1990 TUG conference hold at Cork/Ireland.\n" @@ -17971,7 +18209,7 @@ msgid "" "differs from the EC in a number of particulars." msgstr "" -#: gnu/packages/tex.scm:5717 +#: gnu/packages/tex.scm:6020 msgid "" "This package provides a set of virtual fonts which emulates T1 coded\n" "fonts using the standard CM fonts. The package name, AE fonts, supposedly\n" @@ -17981,7 +18219,7 @@ msgid "" "via the CM-super, Latin Modern and (in a restricted way) CM-LGC font sets." msgstr "" -#: gnu/packages/tex.scm:5742 +#: gnu/packages/tex.scm:6045 msgid "" "Inconsolata is a monospaced font designed by Raph Levien. This package\n" "contains the font (in both Adobe Type 1 and OpenType formats) in regular and\n" @@ -17990,25 +18228,25 @@ msgid "" "TeX, and LaTeX font definition and other relevant files." msgstr "" -#: gnu/packages/tex.scm:5771 +#: gnu/packages/tex.scm:6074 msgid "" "This package provides a drop-in replacements for the Times font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5799 +#: gnu/packages/tex.scm:6102 msgid "" "This package provides a drop-in replacements for the Palatino font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5824 +#: gnu/packages/tex.scm:6127 msgid "" "This package provides a drop-in replacements for the Zapfding font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5896 +#: gnu/packages/tex.scm:6199 msgid "" "The fonts provide uppercase formal script letters for use as symbols in\n" "scientific and mathematical typesetting (in contrast to the informal script\n" @@ -18018,14 +18256,14 @@ msgid "" "one of the packages @code{calrsfs} and @code{mathrsfs}." msgstr "" -#: gnu/packages/tex.scm:5920 +#: gnu/packages/tex.scm:6223 msgid "" "The package adds one or more user commands to LaTeX's @code{shipout}\n" "routine, which may be used to place the output at fixed positions. The\n" "@code{grid} option may be used to find the correct places." msgstr "" -#: gnu/packages/tex.scm:5954 +#: gnu/packages/tex.scm:6257 msgid "" "Extensions to @code{epic} and the LaTeX picture drawing environment,\n" "include the drawing of lines at any slope, the drawing of circles in any\n" @@ -18035,7 +18273,7 @@ msgid "" "@code{\\special} commands." msgstr "" -#: gnu/packages/tex.scm:5991 +#: gnu/packages/tex.scm:6276 msgid "" "This package is intended to ease customizing the three basic list\n" "environments: @code{enumerate}, @code{itemize} and @code{description}. It\n" @@ -18044,14 +18282,14 @@ msgid "" "@code{\\begin{itemize}[itemsep=1ex,leftmargin=1cm]}." msgstr "" -#: gnu/packages/tex.scm:6014 +#: gnu/packages/tex.scm:6301 msgid "" "The package provides tools for creating tabular cells spanning multiple\n" "rows. It has a lot of flexibility, including an option for specifying an\n" "entry at the \"natural\" width of its text." msgstr "" -#: gnu/packages/tex.scm:6048 +#: gnu/packages/tex.scm:6335 msgid "" "The @code{overpic} environment is a cross between the LaTeX\n" "@code{picture} environment and the @code{\\includegraphics} command of\n" @@ -18060,14 +18298,14 @@ msgid "" "positions; a grid for orientation is available." msgstr "" -#: gnu/packages/tex.scm:6084 +#: gnu/packages/tex.scm:6371 msgid "" "Simply changing @code{\\parskip} and @code{\\parindent} leaves a layout\n" "that is untidy; this package (though it is no substitute for a properly\n" "designed class) helps alleviate this untidiness." msgstr "" -#: gnu/packages/tex.scm:6105 +#: gnu/packages/tex.scm:6392 msgid "" "This package simplifies the inclusion of external multi-page PDF\n" "documents in LaTeX documents. Pages may be freely selected and it is possible\n" @@ -18077,7 +18315,7 @@ msgid "" "use this package to insert PostScript files, in addition to PDF files." msgstr "" -#: gnu/packages/tex.scm:6146 +#: gnu/packages/tex.scm:6433 msgid "" "The fonts were originally distributed as Metafont sources only, but\n" "Adobe Type 1 versions are also now available. Macro support is provided for\n" @@ -18086,7 +18324,7 @@ msgid "" "the whole font." msgstr "" -#: gnu/packages/tex.scm:6171 +#: gnu/packages/tex.scm:6458 msgid "" "This (deprecated) package provides support for the manipulation and\n" "reference of small or \"sub\" figures and tables within a single figure or\n" @@ -18099,7 +18337,7 @@ msgid "" "the more recent @code{subcaption} package more satisfactory." msgstr "" -#: gnu/packages/tex.scm:6198 +#: gnu/packages/tex.scm:6485 msgid "" "The package defines a @code{tabular*}-like environment, @code{tabulary},\n" "taking a \"total width\" argument as well as the column specifications. The\n" @@ -18110,7 +18348,7 @@ msgid "" "according to the natural width of the widest cell in the column." msgstr "" -#: gnu/packages/tex.scm:6236 +#: gnu/packages/tex.scm:6523 msgid "" "This package facilitates tables with titles (captions) and notes. The\n" "title and notes are given a width equal to the body of the table (a\n" @@ -18119,7 +18357,7 @@ msgid "" "environment." msgstr "" -#: gnu/packages/tex.scm:6263 +#: gnu/packages/tex.scm:6550 msgid "" "Txfonts supplies virtual text roman fonts using Adobe Times (or URW\n" "NimbusRomNo9L) with some modified and additional text symbols in the OT1, T1,\n" @@ -18135,7 +18373,7 @@ msgid "" "TeX metrics (VF and TFM files) and macros for use with LaTeX." msgstr "" -#: gnu/packages/tex.scm:6312 +#: gnu/packages/tex.scm:6599 msgid "" "Iwona is a two-element sans-serif typeface. It was created\n" "as an alternative version of the Kurier typeface, which was designed in 1975\n" @@ -18146,7 +18384,7 @@ msgid "" "of ink traps which typify the Kurier font." msgstr "" -#: gnu/packages/tex.scm:6335 +#: gnu/packages/tex.scm:6622 msgid "" "This package contains a collection of macros by Jörg Knappen:\n" "@table @code\n" @@ -18182,7 +18420,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/tex.scm:6442 +#: gnu/packages/tex.scm:6729 msgid "" "JadeTeX is a companion package to the OpenJade DSSSL\n" "processor. OpenJade applies a DSSSL stylesheet to an SGML or XML document.\n" @@ -18193,7 +18431,7 @@ msgid "" "command)." msgstr "" -#: gnu/packages/tex.scm:6472 +#: gnu/packages/tex.scm:6759 msgid "" "The package provides the Libertine and Biolinum fonts in both Type 1 and\n" "OTF styles, together with support macros for their use. Monospaced and\n" @@ -18203,7 +18441,7 @@ msgid "" "@code{libertine-legacy} packages." msgstr "" -#: gnu/packages/tex.scm:6504 +#: gnu/packages/tex.scm:6791 msgid "" "The package contains LaTeX support for the DejaVu fonts, which are\n" "derived from the Vera fonts but contain more characters and styles. The fonts\n" @@ -18212,7 +18450,7 @@ msgid "" "LGR. The package doesn't (currently) support mathematics." msgstr "" -#: gnu/packages/tex.scm:6540 +#: gnu/packages/tex.scm:6827 msgid "" "This package provides an interface to sectioning commands for selection\n" "from various title styles, e.g. for marginal titles and to change the font of\n" @@ -18221,7 +18459,7 @@ msgid "" "floats in a page. You may assign headers/footers to individual floats, too." msgstr "" -#: gnu/packages/tex.scm:6563 +#: gnu/packages/tex.scm:6850 msgid "" "LaTeX, by default, restricts the sizes at which you can use its default\n" "computer modern fonts, to a fixed set of discrete sizes (effectively, a set\n" @@ -18236,7 +18474,7 @@ msgid "" "@code{ec} fonts." msgstr "" -#: gnu/packages/tex.scm:6617 +#: gnu/packages/tex.scm:6904 msgid "" "The LH fonts address the problem of the wide variety of alphabets that\n" "are written with Cyrillic-style characters. The fonts are the original basis\n" @@ -18249,7 +18487,7 @@ msgid "" "OT2 encoded fonts, CM bright shaped fonts and Concrete shaped fonts." msgstr "" -#: gnu/packages/tex.scm:6647 +#: gnu/packages/tex.scm:6934 msgid "" "The Martin Vogel’s Symbols fonts (marvosym) contains the\n" "Euro currency symbol as defined by the European commission, along with symbols\n" @@ -18259,34 +18497,41 @@ msgid "" "the derived Type 1 font, together with support files for TeX (LaTeX)." msgstr "" -#: gnu/packages/tex.scm:6685 +#: gnu/packages/tex.scm:6972 msgid "" "MetaPost uses a language based on that of Metafont to produce precise\n" "technical illustrations. Its output is scalable PostScript or SVG, rather\n" "than the bitmaps Metafont creates." msgstr "" -#: gnu/packages/tex.scm:6706 +#: gnu/packages/tex.scm:6993 msgid "" "This package provides a class for typesetting publications of the\n" "Association for Computing Machinery (ACM)." msgstr "" -#: gnu/packages/tex.scm:6739 +#: gnu/packages/tex.scm:7026 msgid "" "The @code{varwidth} environment is superficially similar to\n" "@code{minipage}, but the specified width is just a maximum value — the box may\n" "get a narrower “natural” width." msgstr "" -#: gnu/packages/tex.scm:6757 +#: gnu/packages/tex.scm:7041 +msgid "" +"The varwidth environment is superficially similar to minipage, but the\n" +"specified width is just a maximum value --- the box may get a narrower natural\n" +"width." +msgstr "" + +#: gnu/packages/tex.scm:7059 msgid "" "This package provides the @code{wasy} (Waldi symbol) fonts,\n" "in the Metafont and Adobe Type 1 formats. Support under LaTeX is provided by\n" "the @code{wasysym} package." msgstr "" -#: gnu/packages/tex.scm:6778 +#: gnu/packages/tex.scm:7080 msgid "" "The @code{wasy} (Waldi Symbol) font by Roland Waldi provides many glyphs like\n" "male and female symbols and astronomical symbols, as well as the complete\n" @@ -18294,14 +18539,14 @@ msgid "" "implements an easy to use interface for these symbols." msgstr "" -#: gnu/packages/tex.scm:6815 +#: gnu/packages/tex.scm:7117 msgid "" "This package allows figures or tables to have text wrapped around them.\n" "It does not work in combination with list environments, but can be used in a\n" "@code{parbox} or @code{minipage}, and in two-column format." msgstr "" -#: gnu/packages/tex.scm:6849 +#: gnu/packages/tex.scm:7151 msgid "" "The bundle provides the @code{ucs} package, and @code{utf8x.def},\n" "together with a large number of support files. The @code{utf8x.def}\n" @@ -18314,7 +18559,7 @@ msgid "" "package of that name now exists." msgstr "" -#: gnu/packages/tex.scm:6883 +#: gnu/packages/tex.scm:7185 msgid "" "The main purpose of the preview package is the extraction of selected\n" "elements from a LaTeX source, like formulas or graphics, into separate\n" @@ -18325,7 +18570,7 @@ msgid "" "files." msgstr "" -#: gnu/packages/tex.scm:6908 +#: gnu/packages/tex.scm:7210 msgid "" "This package ensures that all acronyms used in the text are spelled out\n" "in full at least once. It also provides an environment to build a list of\n" @@ -18334,13 +18579,13 @@ msgid "" "e-TeX." msgstr "" -#: gnu/packages/tex.scm:6945 +#: gnu/packages/tex.scm:7247 msgid "" "This package provides an extension of TeX which can be configured to\n" "directly generate PDF documents instead of DVI." msgstr "" -#: gnu/packages/tex.scm:7025 +#: gnu/packages/tex.scm:7327 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18350,7 +18595,7 @@ msgid "" "This package contains the complete tree of texmf-dist data." msgstr "" -#: gnu/packages/tex.scm:7088 +#: gnu/packages/tex.scm:7390 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18360,7 +18605,7 @@ msgid "" "This package contains the complete TeX Live distribution." msgstr "" -#: gnu/packages/tex.scm:7130 +#: gnu/packages/tex.scm:7432 msgid "" "@code{Text::BibTeX} is a Perl library for reading, parsing,\n" "and processing BibTeX files. @code{Text::BibTeX} gives you access to the data\n" @@ -18369,13 +18614,13 @@ msgid "" "values (strings, macros, or numbers) pasted together." msgstr "" -#: gnu/packages/tex.scm:7216 +#: gnu/packages/tex.scm:7518 msgid "" "Biber is a BibTeX replacement for users of biblatex. Among\n" "other things it comes with full Unicode support." msgstr "" -#: gnu/packages/tex.scm:7250 +#: gnu/packages/tex.scm:7552 msgid "" "Rubber is a program whose purpose is to handle all tasks related to the\n" "compilation of LaTeX documents. This includes compiling the document itself,\n" @@ -18385,20 +18630,20 @@ msgid "" "PDF documents." msgstr "" -#: gnu/packages/tex.scm:7289 +#: gnu/packages/tex.scm:7591 msgid "" "Texmaker is a program that integrates many tools needed to\n" "develop documents with LaTeX, in a single application." msgstr "" -#: gnu/packages/tex.scm:7330 +#: gnu/packages/tex.scm:7632 msgid "" "@i{TeX for the Impatient} is a ~350 page book on TeX,\n" "plain TeX, and Eplain, originally written by Paul Abrahams, Kathryn Hargreaves,\n" "and Karl Berry." msgstr "" -#: gnu/packages/tex.scm:7394 +#: gnu/packages/tex.scm:7696 msgid "" "LyX is a document preparation system. It excels at letting\n" "you create complex technical and scientific articles with mathematics,\n" @@ -18407,7 +18652,7 @@ msgid "" "required: automatic sectioning and pagination, spell checking and so forth." msgstr "" -#: gnu/packages/tex.scm:7430 +#: gnu/packages/tex.scm:7732 msgid "" "The package provides an interface to embed interactive Flash (SWF) and 3D\n" "objects (Adobe U3D & PRC), as well as video and sound files or streams in the\n" @@ -18420,7 +18665,7 @@ msgid "" "specification. It replaces the now obsolete @code{movie15} package." msgstr "" -#: gnu/packages/tex.scm:7470 +#: gnu/packages/tex.scm:7772 msgid "" "This package provides OCG (Optional Content Groups) support within a PDF\n" "document.\n" @@ -18438,7 +18683,7 @@ msgid "" "It also ensures compatibility with the @code{media9} and @code{animate} packages." msgstr "" -#: gnu/packages/tex.scm:7504 +#: gnu/packages/tex.scm:7806 msgid "" "A bundle of LATEX packages by Martin Schröder; the collection comprises:\n" "\n" @@ -18452,7 +18697,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/tex.scm:7532 +#: gnu/packages/tex.scm:7852 msgid "" "The package numprint prints numbers with a separator every three\n" "digits and converts numbers given as 12345.6e789 to 12\\,345,6\\cdot\n" @@ -18473,14 +18718,14 @@ msgid "" "and after the formatted number." msgstr "" -#: gnu/packages/tex.scm:7571 +#: gnu/packages/tex.scm:7893 msgid "" "Provides commands to disable pagebreaking within a given vertical\n" "space. If there is not enough space between the command and the bottom of the\n" "page, a new page will be started." msgstr "" -#: gnu/packages/tex.scm:7597 +#: gnu/packages/tex.scm:7919 msgid "" "The package provides commands to change the page layout in the middle of\n" "a document, and to robustly check for typesetting on odd or even pages.\n" @@ -18488,7 +18733,7 @@ msgid "" "of code from the @code{memoir} class, whose user interface it shares." msgstr "" -#: gnu/packages/tex.scm:7633 +#: gnu/packages/tex.scm:7955 msgid "" "The package is used to change the format of @code{\\today}’s date,\n" "including the weekday, e.g., \"Saturday, 26 June 2008\", the 'UK format', which\n" @@ -18496,7 +18741,7 @@ msgid "" "@code{\\maketitle} of the article class, \"June 26, 2008\", the 'US format'." msgstr "" -#: gnu/packages/tex.scm:7669 +#: gnu/packages/tex.scm:7971 msgid "" "The package provides an @code{\\ul} (underline) command which will break\n" "over line ends; this technique may be used to replace @code{\\em} (both in that\n" @@ -18505,7 +18750,7 @@ msgid "" "striking out (line through words) and crossing out (/// over words)." msgstr "" -#: gnu/packages/tex.scm:7725 +#: gnu/packages/tex.scm:8029 msgid "" "PGF is a macro package for creating graphics. It is platform- and\n" "format-independent and works together with the most important TeX backend\n" @@ -18517,7 +18762,7 @@ msgid "" "produce either PostScript or PDF output." msgstr "" -#: gnu/packages/tex.scm:7771 +#: gnu/packages/tex.scm:8075 msgid "" "The KOMA-Script bundle provides replacements for the article, report, and\n" "book classes with emphasis on typography and versatility. There is also a\n" @@ -18542,7 +18787,7 @@ msgid "" "typearea (which are the main parts of the bundle)." msgstr "" -#: gnu/packages/tex.scm:7806 +#: gnu/packages/tex.scm:8110 msgid "" "This package is a modern reimplementation of package @code{everyshi},\n" "providing various commands to be executed before a @code{\\shipout} command.\n" @@ -18550,20 +18795,20 @@ msgid "" "be used either with LaTeX or with plain TeX." msgstr "" -#: gnu/packages/tex.scm:7826 +#: gnu/packages/tex.scm:8130 msgid "" "This package provides expandable arithmetic operations with big\n" "integers that can exceed TeX's number limits." msgstr "" -#: gnu/packages/tex.scm:7845 +#: gnu/packages/tex.scm:8149 msgid "" "This package defines and implements the data type bit set, a vector\n" "of bits. The size of the vector may grow dynamically. Individual bits\n" "can be manipulated." msgstr "" -#: gnu/packages/tex.scm:7864 +#: gnu/packages/tex.scm:8168 msgid "" "New primitive commands are introduced in e-TeX; sometimes the names\n" "collide with existing macros. This package solves the name clashes by\n" @@ -18571,14 +18816,14 @@ msgid "" "@code{\\unexpanded} is provided as @code{\\etex@@unexpanded}." msgstr "" -#: gnu/packages/tex.scm:7882 +#: gnu/packages/tex.scm:8186 msgid "" "This package provides commands for cleaning up the title string\n" "(such as removing @code{\\label} commands) for packages that typeset such\n" "strings." msgstr "" -#: gnu/packages/tex.scm:7898 +#: gnu/packages/tex.scm:8202 msgid "" "This package provides a complete set of macros for information,\n" "warning and error messages. Under LaTeX, the commands are wrappers for\n" @@ -18586,19 +18831,19 @@ msgid "" "complete implementations." msgstr "" -#: gnu/packages/tex.scm:7915 +#: gnu/packages/tex.scm:8219 msgid "" "This package provides expandable arithmetic operations with integers,\n" "using the e-TeX extension @code{\\numexpr} if it is available." msgstr "" -#: gnu/packages/tex.scm:7930 +#: gnu/packages/tex.scm:8234 msgid "" "This package provides the @code{\\kv@@define@@key} (analogous to\n" "keyval’s @code{\\define@@key}, to define keys for use by @code{kvsetkeys}." msgstr "" -#: gnu/packages/tex.scm:7945 +#: gnu/packages/tex.scm:8249 msgid "" "This package provides @code{\\kvsetkeys}, a variant of @code{\\setkeys}\n" "from the @code{keyval} package. Users can specify a handler that deals with\n" @@ -18606,35 +18851,35 @@ msgid "" "level of curly braces are removed from the values." msgstr "" -#: gnu/packages/tex.scm:7980 +#: gnu/packages/tex.scm:8284 msgid "" "This package allows one to capture all the items of a list, for which\n" "the parsing character has been selected by the user, and to access any of\n" "these items with a simple syntax." msgstr "" -#: gnu/packages/tex.scm:7996 +#: gnu/packages/tex.scm:8300 msgid "" "This package exports some utility macros from the LaTeX kernel into\n" "a separate namespace and also makes them available for other formats such\n" "as plain TeX." msgstr "" -#: gnu/packages/tex.scm:8012 +#: gnu/packages/tex.scm:8316 msgid "" "This package implements pdfTeX's escape features (@code{\\pdfescapehex},\n" "@code{\\pdfunescapehex}, @code{\\pdfescapename}, @code{\\pdfescapestring})\n" "using TeX or e-TeX." msgstr "" -#: gnu/packages/tex.scm:8031 +#: gnu/packages/tex.scm:8335 msgid "" "This package provides a kind of counter that provides unique number\n" "values. Several counters can be created with different names. The numeric\n" "values are not limited." msgstr "" -#: gnu/packages/tex.scm:8067 +#: gnu/packages/tex.scm:8371 msgid "" "This package allows the user to input formatted data into elements of a\n" "2-D or 3-D array and to recall that data at will by individual cell number.\n" @@ -18642,7 +18887,7 @@ msgid "" "formatted text." msgstr "" -#: gnu/packages/tex.scm:8104 +#: gnu/packages/tex.scm:8408 msgid "" "The package provides a @code{verbbox} environment to place its contents\n" "into a globally available box, or into a box specified by the user. The\n" @@ -18652,7 +18897,7 @@ msgid "" "@code{trivlist}) may not appear." msgstr "" -#: gnu/packages/tex.scm:8141 +#: gnu/packages/tex.scm:8445 msgid "" "Examplep provides sophisticated features for typesetting verbatim source\n" "code listings, including the display of the source code and its compiled LaTeX\n" @@ -18665,7 +18910,7 @@ msgid "" "titles." msgstr "" -#: gnu/packages/tex.scm:8178 +#: gnu/packages/tex.scm:8482 msgid "" "This is a package for typesetting a variety of graphs and\n" "diagrams with TeX. Xy-pic works with most formats (including LaTeX,\n" @@ -18673,7 +18918,7 @@ msgid "" "@code{diag} package, which was previously distributed stand-alone." msgstr "" -#: gnu/packages/tex.scm:8218 +#: gnu/packages/tex.scm:8522 msgid "" "BibTeX allows the user to store his citation data in generic form, while\n" "printing citations in a document in the form specified by a BibTeX style, to\n" @@ -18681,7 +18926,7 @@ msgid "" "package, such as @command{natbib} as well)." msgstr "" -#: gnu/packages/tex.scm:8241 +#: gnu/packages/tex.scm:8545 msgid "" "This package provides a copy of the Charter Type-1 fonts\n" "which Bitstream contributed to the X consortium, renamed for use with TeX.\n" @@ -18689,14 +18934,14 @@ msgid "" "@command{psnfss}." msgstr "" -#: gnu/packages/tex.scm:8337 +#: gnu/packages/tex.scm:8641 msgid "" "ConTeXt is a full featured, parameter driven macro package,\n" "which fully supports advanced interactive documents. See the ConTeXt garden\n" "for a wealth of support information." msgstr "" -#: gnu/packages/tex.scm:8362 +#: gnu/packages/tex.scm:8666 msgid "" "The beamer LaTeX class can be used for producing slides.\n" "The class works in both PostScript and direct PDF output modes, using the\n" @@ -18709,7 +18954,7 @@ msgid "" "effects, varying slide transitions and animations." msgstr "" -#: gnu/packages/tex.scm:8394 +#: gnu/packages/tex.scm:8698 msgid "" "The XMP (eXtensible Metadata platform) is a framework to add metadata to\n" "digital material to enhance the workflow in publication. The essence is that\n" @@ -18717,13 +18962,13 @@ msgid "" "the file to which it applies." msgstr "" -#: gnu/packages/tex.scm:8433 +#: gnu/packages/tex.scm:8737 msgid "" "This package helps LaTeX users to create PDF/X, PDF/A and other\n" "standards-compliant PDF documents with pdfTeX, LuaTeX and XeTeX." msgstr "" -#: gnu/packages/tex.scm:8468 +#: gnu/packages/tex.scm:8772 msgid "" "The package provides macros and environments to document\n" "LaTeX packages and classes. It is an (as yet unfinished) alternative to the\n" @@ -18734,7 +18979,7 @@ msgid "" "change." msgstr "" -#: gnu/packages/tex.scm:8496 +#: gnu/packages/tex.scm:8800 msgid "" "PSTricks offers an extensive collection of macros for\n" "generating PostScript that is usable with most TeX macro formats, including\n" @@ -18745,14 +18990,14 @@ msgid "" "or shading the cells of tables." msgstr "" -#: gnu/packages/tex.scm:8521 +#: gnu/packages/tex.scm:8825 msgid "" "Pst-text is a PSTricks based package for plotting text along\n" "a different path and manipulating characters. It includes the functionality\n" "of the old package @code{pst-char}." msgstr "" -#: gnu/packages/tex.scm:8546 +#: gnu/packages/tex.scm:8850 msgid "" "This package provides the command @code{\\marginnote} that\n" "may be used instead of @code{\\marginpar} at almost every place where\n" @@ -18760,7 +19005,7 @@ msgid "" "frames made with the @code{framed} package." msgstr "" -#: gnu/packages/tex.scm:8564 +#: gnu/packages/tex.scm:8868 msgid "" "This package, which works both for Plain TeX and for\n" "LaTeX, defines the @code{\\ifPDFTeX}, @code{\\ifXeTeX}, and @code{\\ifLuaTeX}\n" @@ -18770,7 +19015,19 @@ msgid "" "LuaTeX (respectively) is not the engine in use." msgstr "" -#: gnu/packages/tex.scm:8597 +#: gnu/packages/tex.scm:8914 +msgid "" +"The package provides an environment, tabu, which will make any sort of\n" +"tabular, and an environment longtabu which provides the facilities of tabu in\n" +"a modified longtable environment. The package requires array, xcolor for\n" +"coloured rules in tables, and colortbl for coloured cells. The longtabu\n" +"environment further requires that longtable be loaded. The package itself\n" +"does not load any of these packages for the user. The tabu environment may be\n" +"used in place of @code{tabular}, @code{tabular*} and @code{tabularx}\n" +"environments, as well as the @code{array} environment in maths mode." +msgstr "" + +#: gnu/packages/tex.scm:8945 msgid "" "This package provides a collection of simple tools that\n" "are part of the LaTeX required tools distribution, comprising the packages:\n" @@ -18782,7 +19039,7 @@ msgid "" "@code{varioref}, @code{verbatim}, @code{xr}, and @code{xspace}." msgstr "" -#: gnu/packages/tex.scm:8678 +#: gnu/packages/tex.scm:9026 msgid "" "This package is an extension of the keyval package and offers additional\n" "macros for setting keys and declaring and setting class or package options.\n" @@ -18792,7 +19049,7 @@ msgid "" "keys." msgstr "" -#: gnu/packages/tex.scm:8706 +#: gnu/packages/tex.scm:9054 msgid "" "A class and package is provided which allows TeX pictures or\n" "other TeX code to be compiled standalone or as part of a main document.\n" @@ -18804,7 +19061,7 @@ msgid "" "@code{standalone.cfg} to redefine the standalone environment." msgstr "" -#: gnu/packages/tex.scm:8739 +#: gnu/packages/tex.scm:9087 msgid "" "Typesetting values with units requires care to ensure that the combined\n" "mathematical meaning of the value plus unit combination is clear. In\n" @@ -18820,7 +19077,7 @@ msgid "" "package to handle all of the possible unit-related needs of LaTeX users." msgstr "" -#: gnu/packages/tex.scm:8770 +#: gnu/packages/tex.scm:9118 msgid "" "This package enhances the quality of tables in LaTeX, providing extra\n" "commands as well as behind-the-scenes optimisation. Guidelines are given as\n" @@ -18828,7 +19085,7 @@ msgid "" "@code{longtable} compatibility." msgstr "" -#: gnu/packages/tex.scm:8790 +#: gnu/packages/tex.scm:9138 msgid "" "This package provides advanced facilities for inline and\n" "display quotations. It is designed for a wide range of tasks ranging from the\n" @@ -18842,7 +19099,7 @@ msgid "" "styles as well as the optional active quotes are freely configurable." msgstr "" -#: gnu/packages/tex.scm:8816 +#: gnu/packages/tex.scm:9164 msgid "" "The package helps to automate a typical LaTeX\n" "workflow that involves running LaTeX several times and running tools\n" @@ -18862,7 +19119,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8848 +#: gnu/packages/tex.scm:9196 msgid "" "BibLaTeX is a complete reimplementation of the\n" "bibliographic facilities provided by LaTeX. Formatting of the\n" @@ -18888,7 +19145,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8886 +#: gnu/packages/tex.scm:9234 msgid "" "The @code{todonotes} package lets the user mark\n" "things to do later, in a simple and visually appealing way. The\n" @@ -18896,7 +19153,7 @@ msgid "" "of the visual appearance." msgstr "" -#: gnu/packages/tex.scm:8904 +#: gnu/packages/tex.scm:9252 msgid "" "@code{units} is a package for typesetting physical\n" "units in a standard-looking way. The package is based upon\n" @@ -18904,7 +19161,7 @@ msgid "" "included in the @code{units} bundle." msgstr "" -#: gnu/packages/tex.scm:8922 +#: gnu/packages/tex.scm:9270 msgid "" "@code{microtype} provides a LaTeX interface to the\n" "micro-typographic extensions that were introduced by pdfTeX and have\n" @@ -18919,7 +19176,7 @@ msgid "" "the bundle." msgstr "" -#: gnu/packages/tex.scm:8947 +#: gnu/packages/tex.scm:9295 msgid "" "The @code{caption} package provides many ways to\n" "customise the captions in floating environments like figure and table.\n" @@ -18933,13 +19190,13 @@ msgid "" "@code{subcaption} and @code{totalcount} are included in the bundle." msgstr "" -#: gnu/packages/tex.scm:8976 +#: gnu/packages/tex.scm:9324 msgid "" "This package provides a drop-in replacement for the\n" "Symbol font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:8994 +#: gnu/packages/tex.scm:9342 msgid "" "The Pazo Math fonts are a family of PostScript fonts\n" "suitable for typesetting mathematics in combination with the Palatino\n" @@ -18953,7 +19210,7 @@ msgid "" "LaTeX macro support is provided in package @code{psnfss}." msgstr "" -#: gnu/packages/tex.scm:9019 +#: gnu/packages/tex.scm:9367 msgid "" "The FPL Fonts provide a set of SC/OsF fonts for URW\n" "Palladio L which are compatible with the Palatino SC/OsF fonts from\n" @@ -18961,7 +19218,7 @@ msgid "" "the @code{psnfss} distribution." msgstr "" -#: gnu/packages/tex.scm:9043 +#: gnu/packages/tex.scm:9391 msgid "" "The @code{arev} package provides type 1 fonts,\n" "virtual fonts and LaTeX packages for using Arev Sans in both text and\n" @@ -18975,7 +19232,7 @@ msgid "" "support packages. Others are cmbright, hvmath and kerkis." msgstr "" -#: gnu/packages/tex.scm:9074 +#: gnu/packages/tex.scm:9422 msgid "" "The Math Design project offers free mathematical\n" "fonts that match with existing text fonts. To date, three free font\n" @@ -18986,7 +19243,7 @@ msgid "" "created by the Greek Font Society)." msgstr "" -#: gnu/packages/tex.scm:9099 +#: gnu/packages/tex.scm:9447 msgid "" "The @code{bera} package contains the Bera Type 1\n" "fonts and files to use the fonts with LaTeX. Bera is a set of three\n" @@ -18995,7 +19252,7 @@ msgid "" "a repackaging, for use with TeX, of the Bitstream Vera family." msgstr "" -#: gnu/packages/tex.scm:9122 +#: gnu/packages/tex.scm:9470 msgid "" "Fourier-GUTenberg is a LaTeX typesetting system\n" "which uses Adobe Utopia as its standard base font. Fourier-GUTenberg\n" @@ -19006,7 +19263,7 @@ msgid "" "trademark of Adobe Systems Incorporated." msgstr "" -#: gnu/packages/tex.scm:9145 +#: gnu/packages/tex.scm:9493 msgid "" "The Adobe Standard Encoding set of the Utopia font\n" "family, as contributed to the X Consortium. The set comprises upright\n" @@ -19015,7 +19272,7 @@ msgid "" "@code{mathdesign} font packages." msgstr "" -#: gnu/packages/tex.scm:9169 +#: gnu/packages/tex.scm:9517 msgid "" "The @code{fontaxes} package adds several new font\n" "axes on top of LaTeX's New Font Selection Scheme (NFSS). In\n" @@ -19024,7 +19281,7 @@ msgid "" "figure versions offered by many professional fonts." msgstr "" -#: gnu/packages/tex.scm:9192 +#: gnu/packages/tex.scm:9540 msgid "" "The bundle comprises: @code{authblk}, which permits\n" "footnote style author/affiliation input in the @command{\\author} command,\n" @@ -19034,7 +19291,7 @@ msgid "" "@code{sublabel}, which permits counters to be subnumbered." msgstr "" -#: gnu/packages/tex.scm:9211 +#: gnu/packages/tex.scm:9559 msgid "" "Many font families available for use with LaTeX are\n" "available at multiple weights. Many Type 1-oriented support packages\n" @@ -19045,7 +19302,7 @@ msgid "" "@code{mweights} package provides a solution to these difficulties." msgstr "" -#: gnu/packages/tex.scm:9237 +#: gnu/packages/tex.scm:9585 msgid "" "Cabin is a humanist sans with four weights, true\n" "italics and small capitals. According to its designer, Pablo\n" @@ -19059,7 +19316,7 @@ msgid "" "use with [pdf]LaTeX." msgstr "" -#: gnu/packages/tex.scm:9268 +#: gnu/packages/tex.scm:9616 msgid "" "The @code{newtx} bundle splits\n" "@code{txfonts.sty} (from the TX fonts distribution) into two\n" @@ -19071,7 +19328,7 @@ msgid "" "mathematics package that matches Libertine text quite well." msgstr "" -#: gnu/packages/tex.scm:9296 +#: gnu/packages/tex.scm:9644 msgid "" "@code{xcharter} repackages Bitstream Charter with an\n" "extended set of features. The extension provides small caps, oldstyle\n" @@ -19080,7 +19337,7 @@ msgid "" "Type 1 and OTF formats, with supporting files as necessary." msgstr "" -#: gnu/packages/tex.scm:9320 +#: gnu/packages/tex.scm:9668 msgid "" "The legacy @emph{texnansi} (TeX and ANSI) encoding\n" "is known in the LaTeX scheme of things as @emph{LY1} encoding. The\n" @@ -19089,14 +19346,14 @@ msgid "" "LY1 encoding." msgstr "" -#: gnu/packages/tex.scm:9349 +#: gnu/packages/tex.scm:9697 msgid "" "This is a LaTeX2ε package to help change the style of any or\n" "all of LaTeX's sectional headers in the article, book, or report classes.\n" "Examples include the addition of rules above or below a section title." msgstr "" -#: gnu/packages/tex.scm:9375 +#: gnu/packages/tex.scm:9723 msgid "" "LaTeX can, by default, only cope with 18 outstanding floats;\n" "any more, and you get the error “too many unprocessed floats”. This package\n" @@ -19107,19 +19364,19 @@ msgid "" "floats merely delays the arrival of the inevitable error message." msgstr "" -#: gnu/packages/tex.scm:9408 +#: gnu/packages/tex.scm:9756 msgid "" "This package provides a command for the LaTeX programmer for\n" "testing whether an argument is empty." msgstr "" -#: gnu/packages/tex.scm:9435 +#: gnu/packages/tex.scm:9783 msgid "" "The pagenote package provides tagged notes on a separate\n" "page (also known as ‘end notes’)." msgstr "" -#: gnu/packages/tex.scm:9463 +#: gnu/packages/tex.scm:9811 msgid "" "The @code{titling} package provides control over the\n" "typesetting of the @code{\\maketitle} command and @code{\\thanks} commands,\n" @@ -19129,7 +19386,7 @@ msgid "" "a physical page." msgstr "" -#: gnu/packages/tex.scm:9493 +#: gnu/packages/tex.scm:9841 msgid "" "This package provides an @code{\\ifoddpage} conditional to\n" "determine if the current page is odd or even. The macro @code{\\checkoddpage}\n" @@ -19139,7 +19396,7 @@ msgid "" "@code{oneside} mode where all pages use the odd page layout." msgstr "" -#: gnu/packages/tex.scm:9523 +#: gnu/packages/tex.scm:9871 msgid "" "The package provides \"store boxes\" whose user interface\n" "matches that of normal LaTeX \"save boxes\", except that the content of a\n" @@ -19148,7 +19405,7 @@ msgid "" "DVI is output, store boxes behave the same as save boxes." msgstr "" -#: gnu/packages/tex.scm:9552 +#: gnu/packages/tex.scm:9900 msgid "" "The package provides macros to collect and process a macro\n" "argument (i.e., something which looks like a macro argument) as a horizontal\n" @@ -19161,13 +19418,13 @@ msgid "" "The macros were designed for use within other macros." msgstr "" -#: gnu/packages/tex.scm:9584 +#: gnu/packages/tex.scm:9932 msgid "" "This package provides macros for adding to, and reordering\n" "the list of graphics file extensions recognised by package graphics." msgstr "" -#: gnu/packages/tex.scm:9618 +#: gnu/packages/tex.scm:9966 msgid "" "The package provides several macros to adjust boxed\n" "content. One purpose is to supplement the standard @code{graphics} package,\n" @@ -19180,7 +19437,7 @@ msgid "" "@code{\\minsizebox}, @code{\\maxsizebox} and @code{\\phantombox}." msgstr "" -#: gnu/packages/tex.scm:9644 +#: gnu/packages/tex.scm:9992 msgid "" "This package provides an environment for colored and\n" "framed text boxes with a heading line. Optionally, such a box may be split in\n" @@ -19191,7 +19448,7 @@ msgid "" "parts." msgstr "" -#: gnu/packages/tex.scm:9675 +#: gnu/packages/tex.scm:10023 msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems. The commands allow for writing\n" @@ -19200,13 +19457,13 @@ msgid "" "styles of inference rules, placement of labels, etc." msgstr "" -#: gnu/packages/tex.scm:9704 +#: gnu/packages/tex.scm:10052 msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems." msgstr "" -#: gnu/packages/tex.scm:9724 +#: gnu/packages/tex.scm:10072 msgid "" "This package provides the European currency symbol for the\n" "Euro implemented in METAFONT, using the official European Commission\n" @@ -19215,7 +19472,7 @@ msgid "" "pre-compiled font files, and documentation." msgstr "" -#: gnu/packages/tex.scm:9754 +#: gnu/packages/tex.scm:10102 msgid "" "The @code{kastrup} package provides the\n" "@emph{binhex.tex} file. This file provides expandable macros for both\n" @@ -19225,7 +19482,7 @@ msgid "" "LaTeX and plain TeX." msgstr "" -#: gnu/packages/tex.scm:9774 +#: gnu/packages/tex.scm:10122 msgid "" "This LaTeX package provides a flexible mechanism for translating\n" "individual words into different languages. For example, it can be used to\n" @@ -19236,7 +19493,7 @@ msgid "" "automatically translate more than a few words." msgstr "" -#: gnu/packages/tex.scm:9795 +#: gnu/packages/tex.scm:10143 msgid "" "This package facilitates placing boxes at absolute positions on the\n" "LaTeX page. There are several reasons why this might be useful, but the main\n" @@ -19249,7 +19506,7 @@ msgid "" "accompanied by various configuration commands." msgstr "" -#: gnu/packages/tex.scm:9819 +#: gnu/packages/tex.scm:10167 msgid "" "This package extends the @code{ifthen} package by implementing new\n" "commands to go within the first argument of @code{\\\\ifthenelse}: to test\n" @@ -19259,14 +19516,14 @@ msgid "" "handle complex tests." msgstr "" -#: gnu/packages/tex.scm:9852 +#: gnu/packages/tex.scm:10200 msgid "" "BibTool manipulates BibTeX files. The possibilities of BibTool include\n" "sorting and merging of BibTeX databases, generation of uniform reference keys,\n" "and selecting references used in a publication." msgstr "" -#: gnu/packages/texinfo.scm:87 +#: gnu/packages/texinfo.scm:88 msgid "" "Texinfo is the official documentation format of the GNU project. It\n" "uses a single source file using explicit commands to produce a final document\n" @@ -19276,7 +19533,7 @@ msgid "" "is on expressing the content semantically, avoiding physical markup commands." msgstr "" -#: gnu/packages/texinfo.scm:216 +#: gnu/packages/texinfo.scm:230 msgid "" "Texi2HTML is a Perl script which converts Texinfo source files to HTML\n" "output. It now supports many advanced features, such as internationalization\n" @@ -19291,7 +19548,7 @@ msgid "" "Texi2HTML." msgstr "" -#: gnu/packages/texinfo.scm:283 +#: gnu/packages/texinfo.scm:297 msgid "" "Pinfo is an Info file viewer. Pinfo is similar in use to the Lynx web\n" "browser. You just move across info nodes, and select links, follow them, etc.\n" @@ -19650,6 +19907,12 @@ msgstr "" #: gnu/packages/textutils.scm:1406 msgid "" +"@code{utf-8-lineseparator} provides a tool to efficiently check text\n" +"files for valid UTF-8 use and to report which line endings they use." +msgstr "" + +#: gnu/packages/textutils.scm:1439 +msgid "" "@code{csvdiff} is a diff tool to compute changes between two\n" "CSV files. It can compare CSV files with a million records in under 2\n" "seconds. It is specifically suited for comparing CSV files dumped from\n" @@ -19851,27 +20114,27 @@ msgid "" "visualize your public Git repositories on a web interface." msgstr "" -#: gnu/packages/version-control.scm:1706 +#: gnu/packages/version-control.scm:1699 msgid "" "Pre-commit is a multi-language package manager for pre-commit hooks. You\n" "specify a list of hooks you want and pre-commit manages the installation and\n" "execution of any hook written in any language before every commit." msgstr "" -#: gnu/packages/version-control.scm:1796 +#: gnu/packages/version-control.scm:1789 msgid "" "Mercurial is a free, distributed source control management tool. It\n" "efficiently handles projects of any size and offers an easy and intuitive\n" "interface." msgstr "" -#: gnu/packages/version-control.scm:1823 +#: gnu/packages/version-control.scm:1816 msgid "" "Evolve is a Mercurial extension for faster and safer mutable\n" "history. It implements the changeset evolution concept for Mercurial." msgstr "" -#: gnu/packages/version-control.scm:1879 +#: gnu/packages/version-control.scm:1872 msgid "" "This package provides a Mercurial extension for signing\n" "the changeset hash of commits. The signure is embedded directly in the\n" @@ -19879,7 +20142,7 @@ msgid "" "can be used for signing." msgstr "" -#: gnu/packages/version-control.scm:1914 +#: gnu/packages/version-control.scm:1907 msgid "" "Neon is an HTTP and WebDAV client library, with a C interface and the\n" "following features:\n" @@ -19901,7 +20164,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/version-control.scm:2010 +#: gnu/packages/version-control.scm:2003 msgid "" "@dfn{Subversion} (svn) exists to be recognized and adopted as a\n" "centralized version control system characterized by its\n" @@ -19910,7 +20173,7 @@ msgid "" "projects, from individuals to large-scale enterprise operations." msgstr "" -#: gnu/packages/version-control.scm:2044 +#: gnu/packages/version-control.scm:2037 msgid "" "RCS is the original Revision Control System. It works on a\n" "file-by-file basis, in contrast to subsequent version control systems such as\n" @@ -19919,21 +20182,21 @@ msgid "" "machine." msgstr "" -#: gnu/packages/version-control.scm:2067 +#: gnu/packages/version-control.scm:2060 msgid "" "@code{blame} outputs an annotated revision from each RCS file. An\n" "annotated RCS file describes the revision and date in which each line was\n" "added to the file, and the author of each line." msgstr "" -#: gnu/packages/version-control.scm:2088 +#: gnu/packages/version-control.scm:2081 msgid "" "The @code{rcshist} utility displays the complete revision history of a\n" "set of RCS files including log messages and patches. It can also display the\n" "patch associated with a particular revision of an RCS file." msgstr "" -#: gnu/packages/version-control.scm:2116 +#: gnu/packages/version-control.scm:2109 msgid "" "CVS is a version control system, an important component of Source\n" "Configuration Management (SCM). Using it, you can record the history of\n" @@ -19941,7 +20204,7 @@ msgid "" "RCS, PRCS, and Aegis packages." msgstr "" -#: gnu/packages/version-control.scm:2150 +#: gnu/packages/version-control.scm:2143 msgid "" "This program analyzes a collection of RCS files in a CVS\n" "repository (or outside of one) and, when possible, emits an equivalent history\n" @@ -19954,7 +20217,7 @@ msgid "" "masters from remote CVS hosts." msgstr "" -#: gnu/packages/version-control.scm:2180 +#: gnu/packages/version-control.scm:2173 msgid "" "The vc-dwim package contains two tools, \"vc-dwim\" and \"vc-chlog\".\n" "vc-dwim is a tool that simplifies the task of maintaining a ChangeLog and\n" @@ -19964,21 +20227,21 @@ msgid "" "standards-compliant ChangeLog entries based on the changes that it detects." msgstr "" -#: gnu/packages/version-control.scm:2207 +#: gnu/packages/version-control.scm:2200 msgid "" "Diffstat reads the output of @command{diff} and displays a histogram of\n" "the insertions, deletions, and modifications per file. It is useful for\n" "reviewing large, complex patch files." msgstr "" -#: gnu/packages/version-control.scm:2246 +#: gnu/packages/version-control.scm:2239 msgid "" "GNU CSSC provides a replacement for the legacy Unix source\n" "code control system SCCS. This allows old code still under that system to be\n" "accessed and migrated on modern systems." msgstr "" -#: gnu/packages/version-control.scm:2338 +#: gnu/packages/version-control.scm:2331 msgid "" "Aegis is a project change supervisor, and performs some of\n" "the Software Configuration Management needed in a CASE environment. Aegis\n" @@ -19989,7 +20252,7 @@ msgid "" "any project with more than one developer, is one of Aegis's major functions." msgstr "" -#: gnu/packages/version-control.scm:2412 +#: gnu/packages/version-control.scm:2405 msgid "" "Reposurgeon enables risky operations that version-control\n" "systems don't want to let you do, such as editing past comments and metadata\n" @@ -20000,20 +20263,20 @@ msgid "" "from Subversion to any supported Distributed Version Control System (DVCS)." msgstr "" -#: gnu/packages/version-control.scm:2451 +#: gnu/packages/version-control.scm:2444 msgid "" "Tig is an ncurses text user interface for Git, primarily intended as\n" "a history browser. It can also stage hunks for commit, or colorize the\n" "output of the @code{git} command." msgstr "" -#: gnu/packages/version-control.scm:2474 +#: gnu/packages/version-control.scm:2467 msgid "" "Recursively find the newest file in a file tree and print its\n" "modification time." msgstr "" -#: gnu/packages/version-control.scm:2521 +#: gnu/packages/version-control.scm:2514 msgid "" "Myrepos provides the @code{mr} command, which maps an operation (e.g.,\n" "fetching updates) over a collection of version control repositories. It\n" @@ -20021,14 +20284,14 @@ msgid "" "Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity." msgstr "" -#: gnu/packages/version-control.scm:2558 +#: gnu/packages/version-control.scm:2551 msgid "" "Grokmirror enables replicating large git repository\n" "collections efficiently. Mirrors decide to clone and update repositories\n" "based on a manifest file published by servers." msgstr "" -#: gnu/packages/version-control.scm:2588 +#: gnu/packages/version-control.scm:2581 msgid "" "The @code{b4} command is designed to make it easier to participate in\n" "patch-based workflows for projects that have public-inbox archives.\n" @@ -20042,26 +20305,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/version-control.scm:2635 +#: gnu/packages/version-control.scm:2628 msgid "" "This wrapper around rclone makes any destination supported\n" "by rclone usable with git-annex." msgstr "" -#: gnu/packages/version-control.scm:2689 +#: gnu/packages/version-control.scm:2682 msgid "" "Fossil is a distributed source control management system which supports\n" "access and administration over HTTP CGI or via a built-in HTTP server. It has\n" "a built-in wiki, built-in file browsing, built-in tickets system, etc." msgstr "" -#: gnu/packages/version-control.scm:2720 +#: gnu/packages/version-control.scm:2713 msgid "" "Stagit creates static pages for git repositories, the results can\n" "be served with a HTTP file server of your choice." msgstr "" -#: gnu/packages/version-control.scm:2756 +#: gnu/packages/version-control.scm:2749 msgid "" "@code{gource} provides a software version control\n" "visualization. The repository is displayed as a tree where the root of the\n" @@ -20070,7 +20333,7 @@ msgid "" "specific files and directories." msgstr "" -#: gnu/packages/version-control.scm:2804 +#: gnu/packages/version-control.scm:2797 #, scheme-format msgid "" "SRC (or src) is simple revision control, a version-control system for\n" @@ -20080,7 +20343,7 @@ msgid "" "directory full of HOWTOs." msgstr "" -#: gnu/packages/version-control.scm:2856 +#: gnu/packages/version-control.scm:2849 msgid "" "This Git extension defines a subcommand,\n" "@code{when-merged}, whose core operation is to find the merge that brought a\n" @@ -20088,7 +20351,7 @@ msgid "" "how information about the merge is displayed." msgstr "" -#: gnu/packages/version-control.scm:2900 +#: gnu/packages/version-control.scm:2893 msgid "" "This Git extension defines a subcommand, @code{imerge},\n" "which performs an incremental merge between two branches. Its two primary\n" @@ -20097,20 +20360,20 @@ msgid "" "interrupted, published, and collaborated on while in progress." msgstr "" -#: gnu/packages/version-control.scm:2951 +#: gnu/packages/version-control.scm:2944 msgid "" "Git Large File Storage (LFS) replaces large files such as audio samples,\n" "videos, datasets, and graphics with text pointers inside Git, while storing the\n" "file contents on a remote server." msgstr "" -#: gnu/packages/version-control.scm:2986 +#: gnu/packages/version-control.scm:2979 msgid "" "@code{git open} opens the repository's website from the command-line,\n" "guessing the URL pattern from the @code{origin} remote." msgstr "" -#: gnu/packages/version-control.scm:3040 +#: gnu/packages/version-control.scm:3033 msgid "" "GNU Arch, aka. @code{tla}, was one of the first free distributed\n" "version-control systems (DVCS). It saw its last release in 2006. This\n" @@ -20118,18 +20381,18 @@ msgid "" "for historians." msgstr "" -#: gnu/packages/version-control.scm:3086 +#: gnu/packages/version-control.scm:3079 msgid "" "@code{diff-so-fancy} strives to make your diffs human readable instead\n" "of machine readable. This helps improve code quality and helps you spot\n" "defects faster." msgstr "" -#: gnu/packages/version-control.scm:3142 +#: gnu/packages/version-control.scm:3135 msgid "This package provides a Git implementation library." msgstr "" -#: gnu/packages/version-control.scm:3192 +#: gnu/packages/version-control.scm:3185 msgid "" "This package provides a command-line tool to manage\n" "multiple Git repos.\n" @@ -20144,7 +20407,7 @@ msgid "" "If several repos are related, it helps to see their status together." msgstr "" -#: gnu/packages/version-control.scm:3250 +#: gnu/packages/version-control.scm:3243 #, scheme-format msgid "" "@code{ghq} provides a way to organize remote repository clones, like\n" @@ -20153,7 +20416,7 @@ msgid "" "using the remote repository URL's host and path." msgstr "" -#: gnu/packages/version-control.scm:3295 +#: gnu/packages/version-control.scm:3288 msgid "" "TkRev (formerly TkCVS) is a Tcl/Tk-based graphical interface to the CVS,\n" "Subversion and Git configuration management systems. It will also help with\n" @@ -20162,7 +20425,7 @@ msgid "" "TkDiff is included for browsing and merging your changes." msgstr "" -#: gnu/packages/version-control.scm:3328 +#: gnu/packages/version-control.scm:3321 msgid "" "@command{git filter-repo} is a versatile tool for rewriting history,\n" "which roughly falls into the same space of tool like git filter-branch but\n" @@ -20200,7 +20463,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:865 +#: gnu/packages/virtualization.scm:870 msgid "" "Ganeti is a virtual machine management tool built on top of existing\n" "virtualization technologies such as Xen or KVM. Ganeti controls:\n" @@ -20217,19 +20480,19 @@ msgid "" "commodity hardware." msgstr "" -#: gnu/packages/virtualization.scm:902 +#: gnu/packages/virtualization.scm:907 msgid "" "This package provides a guest OS definition for Ganeti that uses\n" "Guix to build virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:996 +#: gnu/packages/virtualization.scm:1001 msgid "" "This package provides a guest OS definition for Ganeti. It installs\n" "Debian or a derivative using @command{debootstrap}." msgstr "" -#: gnu/packages/virtualization.scm:1056 +#: gnu/packages/virtualization.scm:1061 msgid "" "libosinfo is a GObject based library API for managing\n" "information about operating systems, hypervisors and the (virtual) hardware\n" @@ -20239,21 +20502,21 @@ msgid "" "all common programming languages. Vala bindings are also provided." msgstr "" -#: gnu/packages/virtualization.scm:1105 +#: gnu/packages/virtualization.scm:1109 msgid "" "LXC is a userspace interface for the Linux kernel containment features.\n" "Through a powerful API and simple tools, it lets Linux users easily create and\n" "manage system or application containers." msgstr "" -#: gnu/packages/virtualization.scm:1131 +#: gnu/packages/virtualization.scm:1135 msgid "" "LXCFS is a small FUSE file system written with the intention\n" "of making Linux containers feel more like a virtual machine.\n" "It started as a side project of LXC but can be used by any run-time." msgstr "" -#: gnu/packages/virtualization.scm:1239 +#: gnu/packages/virtualization.scm:1237 msgid "" "LXD is a next generation system container manager. It\n" "offers a user experience similar to virtual machines but using Linux\n" @@ -20262,7 +20525,7 @@ msgid "" "pretty simple, REST API." msgstr "" -#: gnu/packages/virtualization.scm:1332 +#: gnu/packages/virtualization.scm:1330 msgid "" "Libvirt is a C toolkit to interact with the virtualization\n" "capabilities of recent versions of Linux. The library aims at providing long\n" @@ -20270,7 +20533,7 @@ msgid "" "to integrate other virtualization mechanisms if needed." msgstr "" -#: gnu/packages/virtualization.scm:1363 +#: gnu/packages/virtualization.scm:1359 msgid "" "libvirt-glib wraps the libvirt library to provide a\n" "high-level object-oriented API better suited for glib-based applications, via\n" @@ -20283,13 +20546,13 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/virtualization.scm:1407 +#: gnu/packages/virtualization.scm:1403 msgid "" "This package provides Python bindings to the libvirt\n" "virtualization library." msgstr "" -#: gnu/packages/virtualization.scm:1520 +#: gnu/packages/virtualization.scm:1516 msgid "" "The virt-manager application is a desktop user interface for managing\n" "virtual machines through libvirt. It primarily targets KVM VMs, but also\n" @@ -20297,7 +20560,7 @@ msgid "" "domains, their live performance and resource utilization statistics." msgstr "" -#: gnu/packages/virtualization.scm:1620 +#: gnu/packages/virtualization.scm:1616 msgid "" "Using this tool, you can freeze a running application (or\n" "part of it) and checkpoint it to a hard drive as a collection of files. You\n" @@ -20306,14 +20569,14 @@ msgid "" "mainly implemented in user space." msgstr "" -#: gnu/packages/virtualization.scm:1647 +#: gnu/packages/virtualization.scm:1643 msgid "" "qmpbackup is designed to create and restore full and\n" "incremental backups of running QEMU virtual machines via QMP, the QEMU\n" "Machine Protocol." msgstr "" -#: gnu/packages/virtualization.scm:1731 +#: gnu/packages/virtualization.scm:1727 msgid "" "Looking Glass allows the use of a KVM (Kernel-based Virtual\n" "Machine) configured for VGA PCI Pass-through without an attached physical\n" @@ -20321,7 +20584,7 @@ msgid "" "main monitor/GPU." msgstr "" -#: gnu/packages/virtualization.scm:1783 +#: gnu/packages/virtualization.scm:1779 msgid "" "@command{runc} is a command line client for running applications\n" "packaged according to the\n" @@ -20330,13 +20593,13 @@ msgid "" "Open Container Initiative specification." msgstr "" -#: gnu/packages/virtualization.scm:1832 +#: gnu/packages/virtualization.scm:1828 msgid "" "@command{umoci} is a tool that allows for high-level modification of an\n" "Open Container Initiative (OCI) image layout and its tagged images." msgstr "" -#: gnu/packages/virtualization.scm:1886 +#: gnu/packages/virtualization.scm:1882 msgid "" "@command{skopeo} is a command line utility providing various operations\n" "with container images and container image registries. It can:\n" @@ -20357,14 +20620,14 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:1922 +#: gnu/packages/virtualization.scm:1918 msgid "" "Python-vagrant is a Python module that provides a thin wrapper around the\n" "@code{vagrant} command line executable, allowing programmatic control of Vagrant\n" "virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:1977 +#: gnu/packages/virtualization.scm:1979 msgid "" "Bubblewrap is aimed at running applications in a sandbox,\n" "restricting their access to parts of the operating system or user data such as\n" @@ -20374,7 +20637,7 @@ msgid "" "by default and can be made read-only." msgstr "" -#: gnu/packages/virtualization.scm:2004 +#: gnu/packages/virtualization.scm:2006 msgid "" "Bochs is an emulator which can emulate Intel x86 CPU, common I/O\n" "devices, and a custom BIOS. It can also be compiled to emulate many different\n" @@ -20383,64 +20646,67 @@ msgid "" "DOS or Microsoft Windows." msgstr "" -#: gnu/packages/virtualization.scm:2210 +#: gnu/packages/virtualization.scm:2212 msgid "" "This package provides the Xen Virtual Machine Monitor\n" "which is a hypervisor." msgstr "" -#: gnu/packages/virtualization.scm:2242 +#: gnu/packages/virtualization.scm:2244 msgid "" "This package contains a set of tools to assist\n" "administrators and developers in managing the database." msgstr "" -#: gnu/packages/virtualization.scm:2275 +#: gnu/packages/virtualization.scm:2277 msgid "" "Osinfo-db provides the database files for use with the\n" "libosinfo library. It provides information about guest operating systems for\n" "use with virtualization provisioning tools" msgstr "" -#: gnu/packages/virtualization.scm:2317 +#: gnu/packages/virtualization.scm:2319 msgid "" "@code{transient} is a wrapper for QEMU allowing the creation of virtual\n" "machines with shared folder, ssh, and disk creation support." msgstr "" -#: gnu/packages/webkit.scm:93 +#: gnu/packages/webkit.scm:94 msgid "" "LibWPE is general-purpose library specifically developed for\n" "the WPE-flavored port of WebKit." msgstr "" -#: gnu/packages/webkit.scm:119 +#: gnu/packages/webkit.scm:120 msgid "" "This package provides a backend implementation for the WPE WebKit\n" "engine that uses Wayland for graphics output." msgstr "" -#: gnu/packages/webkit.scm:216 +#: gnu/packages/webkit.scm:227 msgid "" "WPE WebKit allows embedders to create simple and performant\n" "systems based on Web platform technologies. It is designed with hardware\n" "acceleration in mind, leveraging common 3D graphics APIs for best performance." msgstr "" -#: gnu/packages/webkit.scm:351 +#: gnu/packages/webkit.scm:355 msgid "" "WebKitGTK+ is a full-featured port of the WebKit rendering engine,\n" "suitable for projects requiring any kind of web integration, from hybrid\n" -"HTML/CSS applications to full-fledged web browsers." +"HTML/CSS applications to full-fledged web browsers. WebKitGTK+ video playing\n" +"capabilities can be extended through the use of GStreamer plugins (not\n" +"propagated by default) such as @code{gst-plugins-good} and\n" +"@code{gst-plugins-bad}." msgstr "" -#: gnu/packages/web.scm:250 +#: gnu/packages/web.scm:251 msgid "" "Qhttp is a light-weight and asynchronous HTTP library\n" "(both server & client) in Qt5 and C++14." msgstr "" -#: gnu/packages/web.scm:280 +#: gnu/packages/web.scm:281 msgid "" "The Apache HTTP Server Project is a collaborative software development\n" "effort aimed at creating a robust, commercial-grade, featureful, and\n" @@ -20450,14 +20716,14 @@ msgid "" "and its related documentation." msgstr "" -#: gnu/packages/web.scm:314 +#: gnu/packages/web.scm:315 msgid "" "The mod_wsgi module for the Apache HTTPD Server adds support for running\n" "applications that support the Python @acronym{WSGI, Web Server Gateway\n" "Interface} specification." msgstr "" -#: gnu/packages/web.scm:356 +#: gnu/packages/web.scm:357 msgid "" "Monolith bundles any web page into a single HTML file.\n" "\n" @@ -20470,38 +20736,38 @@ msgid "" "the same, being completely separated from the Internet." msgstr "" -#: gnu/packages/web.scm:460 +#: gnu/packages/web.scm:461 msgid "" "Nginx (\"engine X\") is a high-performance web and reverse proxy server\n" "created by Igor Sysoev. It can be used both as a stand-alone web server\n" "and as a proxy to reduce the load on back-end HTTP or mail servers." msgstr "" -#: gnu/packages/web.scm:518 +#: gnu/packages/web.scm:519 msgid "This package provides HTML documentation for the nginx web server." msgstr "" -#: gnu/packages/web.scm:647 +#: gnu/packages/web.scm:648 msgid "" "This nginx module parses the Accept-Language field in HTTP headers and\n" "chooses the most suitable locale for the user from the list of locales\n" "supported at your website." msgstr "" -#: gnu/packages/web.scm:694 +#: gnu/packages/web.scm:695 msgid "" "XSLScript is a terse notation for writing complex XSLT stylesheets.\n" "This is modified version, specifically intended for use with the NGinx\n" "documentation." msgstr "" -#: gnu/packages/web.scm:767 +#: gnu/packages/web.scm:768 msgid "" "This NGINX module provides a scripting support with Lua\n" "programming language." msgstr "" -#: gnu/packages/web.scm:820 +#: gnu/packages/web.scm:821 msgid "" "This NGINX module provides streaming with the @acronym{RTMP,\n" "Real-Time Messaging Protocol}, @acronym{DASH, Dynamic Adaptive Streaming over HTTP},\n" @@ -20511,7 +20777,7 @@ msgid "" "stream. Remote control of the module is possible over HTTP." msgstr "" -#: gnu/packages/web.scm:882 +#: gnu/packages/web.scm:883 msgid "" "Lighttpd is a secure, fast, compliant, and very flexible web-server that\n" "has been optimized for high-performance environments. It has a very low\n" @@ -20519,41 +20785,41 @@ msgid "" "CGI, authentication, output compression, URL rewriting and many more." msgstr "" -#: gnu/packages/web.scm:910 +#: gnu/packages/web.scm:911 msgid "" "FastCGI is a language-independent, scalable extension to CGI\n" "that provides high performance without the limitations of server specific\n" "APIs." msgstr "" -#: gnu/packages/web.scm:948 +#: gnu/packages/web.scm:949 msgid "" "Fcgiwrap is a simple server for running CGI applications\n" "over FastCGI. It hopes to provide clean CGI support to Nginx (and other web\n" "servers that may need it)." msgstr "" -#: gnu/packages/web.scm:977 +#: gnu/packages/web.scm:978 msgid "" "Starman is a PSGI perl web server that has unique features\n" "such as high performance, preforking, signal support, superdaemon awareness,\n" "and UNIX socket support." msgstr "" -#: gnu/packages/web.scm:1010 +#: gnu/packages/web.scm:1011 msgid "" "IcedTea-Web is an implementation of the @dfn{Java Network Launching\n" "Protocol}, also known as Java Web Start. This package provides tools and\n" "libraries for working with JNLP applets." msgstr "" -#: gnu/packages/web.scm:1035 +#: gnu/packages/web.scm:1036 msgid "" "Jansson is a C library for encoding, decoding and manipulating JSON\n" "data." msgstr "" -#: gnu/packages/web.scm:1055 +#: gnu/packages/web.scm:1056 msgid "" "JSON-C implements a reference counting object model that allows you to\n" "easily construct JSON objects in C, output them as JSON-formatted strings and\n" @@ -20561,7 +20827,7 @@ msgid "" "It aims to conform to RFC 7159." msgstr "" -#: gnu/packages/web.scm:1131 +#: gnu/packages/web.scm:1132 msgid "" "This package provides a very low footprint JSON parser\n" "written in portable ANSI C.\n" @@ -20574,21 +20840,21 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:1176 +#: gnu/packages/web.scm:1177 msgid "" "QJson is a Qt-based library that maps JSON data to\n" "@code{QVariant} objects. JSON arrays will be mapped to @code{QVariantList}\n" "instances, while JSON's objects will be mapped to @code{QVariantMap}." msgstr "" -#: gnu/packages/web.scm:1227 +#: gnu/packages/web.scm:1228 msgid "" "QOAuth is an attempt to support interaction with\n" "OAuth-powered network services in a Qt way, i.e. simply, clearly and\n" "efficiently. It gives the application developer no more than 4 methods." msgstr "" -#: gnu/packages/web.scm:1339 +#: gnu/packages/web.scm:1340 msgid "" "Krona is a flexible tool for exploring the relative proportions of\n" "hierarchical data, such as metagenomic classifications, using a radial,\n" @@ -20597,26 +20863,26 @@ msgid "" "current version of any major web browser." msgstr "" -#: gnu/packages/web.scm:1380 +#: gnu/packages/web.scm:1381 msgid "" "RapidJSON is a fast JSON parser/generator for C++ with both SAX/DOM\n" "style API." msgstr "" -#: gnu/packages/web.scm:1409 +#: gnu/packages/web.scm:1410 msgid "" "Yet Another JSON Library (YAJL) is a small event-driven (SAX-style) JSON\n" "parser written in ANSI C and a small validating JSON generator." msgstr "" -#: gnu/packages/web.scm:1439 +#: gnu/packages/web.scm:1440 msgid "" "Libwebsockets is a library that allows C programs to establish client\n" "and server WebSockets connections---a protocol layered above HTTP that allows\n" "for efficient socket-like bidirectional reliable communication channels." msgstr "" -#: gnu/packages/web.scm:1468 +#: gnu/packages/web.scm:1469 msgid "" "WABT (pronounced: wabbit) is a suite of tools for\n" "WebAssembly, including:\n" @@ -20641,7 +20907,7 @@ msgid "" "other systems that want to manipulate WebAssembly files." msgstr "" -#: gnu/packages/web.scm:1518 +#: gnu/packages/web.scm:1519 msgid "" "WebSocket++ is a C++ library that can be used to implement\n" "WebSocket functionality. The goals of the project are to provide a WebSocket\n" @@ -20649,7 +20915,7 @@ msgid "" "high performance." msgstr "" -#: gnu/packages/web.scm:1558 +#: gnu/packages/web.scm:1559 msgid "" "@code{Wslay} is an event-based C library for the WebSocket\n" "protocol version 13, described in RFC 6455. Besides a high-level API it\n" @@ -20658,7 +20924,7 @@ msgid "" "perform the opening handshake in HTTP." msgstr "" -#: gnu/packages/web.scm:1588 +#: gnu/packages/web.scm:1589 msgid "" "A \"public suffix\" is a domain name under which Internet users can\n" "directly register own names.\n" @@ -20676,20 +20942,20 @@ msgid "" "UTS#46." msgstr "" -#: gnu/packages/web.scm:1633 +#: gnu/packages/web.scm:1634 msgid "" "HTML Tidy is a command-line tool and C library that can be\n" "used to validate and fix HTML data." msgstr "" -#: gnu/packages/web.scm:1680 +#: gnu/packages/web.scm:1681 msgid "" "The esbuild tool provides a unified bundler, transpiler and\n" "minifier. It packages up JavaScript and TypeScript code, along with JSON\n" "and other data, for distribution on the web." msgstr "" -#: gnu/packages/web.scm:1716 +#: gnu/packages/web.scm:1717 msgid "" "Tinyproxy is a light-weight HTTP/HTTPS proxy\n" "daemon. Designed from the ground up to be fast and yet small, it is an ideal\n" @@ -20698,14 +20964,14 @@ msgid "" "unavailable." msgstr "" -#: gnu/packages/web.scm:1751 +#: gnu/packages/web.scm:1752 msgid "" "Polipo is a small caching web proxy (web cache, HTTP proxy, and proxy\n" "server). It was primarily designed to be used by one person or a small group\n" "of people." msgstr "" -#: gnu/packages/web.scm:1779 +#: gnu/packages/web.scm:1780 msgid "" "Websockify translates WebSockets traffic to normal socket\n" "traffic. Websockify accepts the WebSockets handshake, parses it, and then\n" @@ -20713,7 +20979,7 @@ msgid "" "directions." msgstr "" -#: gnu/packages/web.scm:1806 +#: gnu/packages/web.scm:1807 msgid "" "WWWOFFLE is a proxy web server that is especially good for\n" "intermittent internet links. It can cache HTTP, HTTPS, FTP, and finger\n" @@ -20722,7 +20988,7 @@ msgid "" "changes, and much more." msgstr "" -#: gnu/packages/web.scm:1832 +#: gnu/packages/web.scm:1833 msgid "" "liboauth is a collection of C functions implementing the OAuth API.\n" "liboauth provides functions to escape and encode strings according to OAuth\n" @@ -20731,25 +20997,25 @@ msgid "" "hash/signatures." msgstr "" -#: gnu/packages/web.scm:1855 +#: gnu/packages/web.scm:1856 msgid "" "This package contains support scripts called by libquvi to\n" "parse media stream properties." msgstr "" -#: gnu/packages/web.scm:1889 +#: gnu/packages/web.scm:1890 msgid "" "libquvi is a library with a C API for parsing media stream\n" "URLs and extracting their actual media files." msgstr "" -#: gnu/packages/web.scm:1911 +#: gnu/packages/web.scm:1912 msgid "" "quvi is a command-line-tool suite to extract media files\n" "from streaming URLs. It is a command-line wrapper for the libquvi library." msgstr "" -#: gnu/packages/web.scm:1983 +#: gnu/packages/web.scm:1984 msgid "" "serf is a C-based HTTP client library built upon the Apache Portable\n" "Runtime (APR) library. It multiplexes connections, running the read/write\n" @@ -20757,7 +21023,7 @@ msgid "" "minimum to provide high performance operation." msgstr "" -#: gnu/packages/web.scm:2018 +#: gnu/packages/web.scm:2019 msgid "" "LibSass is a @acronym{SASS,Syntactically awesome style sheets} compiler\n" "library designed for portability and efficiency. To actually compile SASS\n" @@ -20765,29 +21031,29 @@ msgid "" "@var{sassc} for example." msgstr "" -#: gnu/packages/web.scm:2067 +#: gnu/packages/web.scm:2068 msgid "" "SassC is a compiler written in C for the CSS pre-processor\n" "language known as SASS." msgstr "" -#: gnu/packages/web.scm:2112 +#: gnu/packages/web.scm:2113 msgid "" "This module provides methods to compile a log format string\n" "to perl-code, for faster generation of access_log lines." msgstr "" -#: gnu/packages/web.scm:2140 +#: gnu/packages/web.scm:2141 msgid "Authen::SASL provides an SASL authentication framework." msgstr "" -#: gnu/packages/web.scm:2163 +#: gnu/packages/web.scm:2164 msgid "" "This Catalyst action implements a sensible default end\n" "action, which will forward to the first available view." msgstr "" -#: gnu/packages/web.scm:2195 +#: gnu/packages/web.scm:2196 msgid "" "This Action handles doing automatic method dispatching for\n" "REST requests. It takes a normal Catalyst action, and changes the dispatch to\n" @@ -20796,20 +21062,20 @@ msgid "" "regular method." msgstr "" -#: gnu/packages/web.scm:2226 +#: gnu/packages/web.scm:2227 msgid "" "The Catalyst::Authentication::Store::DBIx::Class class\n" "provides access to authentication information stored in a database via\n" "DBIx::Class." msgstr "" -#: gnu/packages/web.scm:2252 +#: gnu/packages/web.scm:2253 msgid "" "Catalyst::Component::InstancePerContext returns a new\n" "instance of a component on each request." msgstr "" -#: gnu/packages/web.scm:2288 +#: gnu/packages/web.scm:2289 msgid "" "The Catalyst-Devel distribution includes a variety of\n" "modules useful for the development of Catalyst applications, but not required\n" @@ -20819,7 +21085,7 @@ msgid "" "modules." msgstr "" -#: gnu/packages/web.scm:2316 +#: gnu/packages/web.scm:2317 msgid "" "Dispatch type managing path-matching behaviour using\n" "regexes. Regex dispatch types have been deprecated and removed from Catalyst\n" @@ -20829,20 +21095,20 @@ msgid "" "when the dispatch type is first seen in your application." msgstr "" -#: gnu/packages/web.scm:2363 +#: gnu/packages/web.scm:2364 msgid "" "This is a Catalyst Model for DBIx::Class::Schema-based\n" "Models." msgstr "" -#: gnu/packages/web.scm:2385 +#: gnu/packages/web.scm:2386 msgid "" "This Catalyst plugin enables you to create \"access logs\"\n" "from within a Catalyst application instead of requiring a webserver to do it\n" "for you. It will work even with Catalyst debug logging turned off." msgstr "" -#: gnu/packages/web.scm:2419 +#: gnu/packages/web.scm:2420 msgid "" "The authentication plugin provides generic user support for\n" "Catalyst apps. It is the basis for both authentication (checking the user is\n" @@ -20850,32 +21116,32 @@ msgid "" "system authorises them to do)." msgstr "" -#: gnu/packages/web.scm:2447 +#: gnu/packages/web.scm:2448 msgid "" "Catalyst::Plugin::Authorization::Roles provides role-based\n" "authorization for Catalyst based on Catalyst::Plugin::Authentication." msgstr "" -#: gnu/packages/web.scm:2469 +#: gnu/packages/web.scm:2470 msgid "" "This plugin creates and validates Captcha images for\n" "Catalyst." msgstr "" -#: gnu/packages/web.scm:2493 +#: gnu/packages/web.scm:2494 msgid "" "This module will attempt to load find and load configuration\n" "files of various types. Currently it supports YAML, JSON, XML, INI and Perl\n" "formats." msgstr "" -#: gnu/packages/web.scm:2522 +#: gnu/packages/web.scm:2523 msgid "" "This plugin links the two pieces required for session\n" "management in web applications together: the state, and the store." msgstr "" -#: gnu/packages/web.scm:2548 +#: gnu/packages/web.scm:2549 msgid "" "In order for Catalyst::Plugin::Session to work, the session\n" "ID needs to be stored on the client, and the session data needs to be stored\n" @@ -20883,14 +21149,14 @@ msgid "" "cookie mechanism." msgstr "" -#: gnu/packages/web.scm:2578 +#: gnu/packages/web.scm:2579 msgid "" "Catalyst::Plugin::Session::Store::FastMmap is a fast session\n" "storage plugin for Catalyst that uses an mmap'ed file to act as a shared\n" "memory interprocess cache. It is based on Cache::FastMmap." msgstr "" -#: gnu/packages/web.scm:2602 +#: gnu/packages/web.scm:2603 msgid "" "This plugin enhances the standard Catalyst debug screen by\n" "including a stack trace of your application up to the point where the error\n" @@ -20898,7 +21164,7 @@ msgid "" "number, file name, and code context surrounding the line number." msgstr "" -#: gnu/packages/web.scm:2628 +#: gnu/packages/web.scm:2629 msgid "" "The Static::Simple plugin is designed to make serving static\n" "content in your application during development quick and easy, without\n" @@ -20909,7 +21175,7 @@ msgid "" "MIME type directly to the browser, without being processed through Catalyst." msgstr "" -#: gnu/packages/web.scm:2687 +#: gnu/packages/web.scm:2688 msgid "" "Catalyst is a modern framework for making web applications.\n" "It is designed to make it easy to manage the various tasks you need to do to\n" @@ -20917,7 +21183,7 @@ msgid "" "\"plug in\" existing Perl modules that do what you need." msgstr "" -#: gnu/packages/web.scm:2715 +#: gnu/packages/web.scm:2716 msgid "" "This module is a Moose::Role which allows you more\n" "flexibility in your application's deployment configurations when deployed\n" @@ -20925,26 +21191,26 @@ msgid "" "replaced with the contents of the X-Request-Base header." msgstr "" -#: gnu/packages/web.scm:2743 +#: gnu/packages/web.scm:2744 msgid "" "The purpose of this module is to provide a method for\n" "downloading data into many supportable formats. For example, downloading a\n" "table based report in a variety of formats (CSV, HTML, etc.)." msgstr "" -#: gnu/packages/web.scm:2767 +#: gnu/packages/web.scm:2768 msgid "" "Catalyst::View::JSON is a Catalyst View handler that returns\n" "stash data in JSON format." msgstr "" -#: gnu/packages/web.scm:2793 +#: gnu/packages/web.scm:2794 msgid "" "This module is a Catalyst view class for the Template\n" "Toolkit." msgstr "" -#: gnu/packages/web.scm:2821 +#: gnu/packages/web.scm:2822 msgid "" "Adds a \"COMPONENT\" in Catalyst::Component method to your\n" "Catalyst component base class that reads the optional \"traits\" parameter\n" @@ -20953,19 +21219,19 @@ msgid "" "MooseX::Traits::Pluggable." msgstr "" -#: gnu/packages/web.scm:2845 +#: gnu/packages/web.scm:2846 msgid "" "CatalystX::RoleApplicator applies roles to Catalyst\n" "application classes." msgstr "" -#: gnu/packages/web.scm:2870 +#: gnu/packages/web.scm:2871 msgid "" "This module provides a Catalyst extension to replace the\n" "development server with Starman." msgstr "" -#: gnu/packages/web.scm:2892 +#: gnu/packages/web.scm:2893 msgid "" "CGI.pm is a stable, complete and mature solution for\n" "processing and preparing HTTP requests and responses. Major features include\n" @@ -20974,44 +21240,44 @@ msgid "" "headers." msgstr "" -#: gnu/packages/web.scm:2919 +#: gnu/packages/web.scm:2920 msgid "" "@code{CGI::FormBuilder} provides an easy way to generate and process CGI\n" "form-based applications." msgstr "" -#: gnu/packages/web.scm:2946 +#: gnu/packages/web.scm:2947 msgid "" "@code{CGI::Session} provides modular session management system across\n" "HTTP requests." msgstr "" -#: gnu/packages/web.scm:2967 +#: gnu/packages/web.scm:2968 msgid "" "CGI::Simple provides a relatively lightweight drop in\n" "replacement for CGI.pm. It shares an identical OO interface to CGI.pm for\n" "parameter parsing, file upload, cookie handling and header generation." msgstr "" -#: gnu/packages/web.scm:2989 +#: gnu/packages/web.scm:2990 msgid "" "This is a module for building structured data from CGI\n" "inputs, in a manner reminiscent of how PHP does." msgstr "" -#: gnu/packages/web.scm:3012 +#: gnu/packages/web.scm:3013 msgid "" "This module provides functions that deal with the date\n" "formats used by the HTTP protocol." msgstr "" -#: gnu/packages/web.scm:3033 +#: gnu/packages/web.scm:3034 msgid "" "Digest::MD5::File is a Perl extension for getting MD5 sums\n" "for files and urls." msgstr "" -#: gnu/packages/web.scm:3053 +#: gnu/packages/web.scm:3054 msgid "" "The POSIX locale system is used to specify both the language\n" "conventions requested by the user and the preferred character set to\n" @@ -21023,66 +21289,66 @@ msgid "" "with Encode::decode(locale => $string)." msgstr "" -#: gnu/packages/web.scm:3086 +#: gnu/packages/web.scm:3087 msgid "" "@code{Feed::Find} implements feed auto-discovery for finding\n" "syndication feeds, given a URI. It will discover the following feed formats:\n" "RSS 0.91, RSS 1.0, RSS 2.0, Atom." msgstr "" -#: gnu/packages/web.scm:3109 +#: gnu/packages/web.scm:3110 msgid "" "The File::Listing module exports a single function called parse_dir(),\n" "which can be used to parse directory listings." msgstr "" -#: gnu/packages/web.scm:3142 +#: gnu/packages/web.scm:3143 msgid "" "Finance::Quote gets stock quotes from various internet sources, including\n" "Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange." msgstr "" -#: gnu/packages/web.scm:3165 +#: gnu/packages/web.scm:3166 msgid "" "This is a Perl extension for using GSSAPI C bindings as\n" "described in RFC 2744." msgstr "" -#: gnu/packages/web.scm:3187 +#: gnu/packages/web.scm:3188 msgid "" "HTML::Element::Extended is a Perl extension for manipulating a table\n" "composed of HTML::Element style components." msgstr "" -#: gnu/packages/web.scm:3208 +#: gnu/packages/web.scm:3209 msgid "" "Objects of the HTML::Form class represents a single HTML\n" "
...
instance." msgstr "" -#: gnu/packages/web.scm:3241 +#: gnu/packages/web.scm:3242 msgid "@code{HTML::Scrubber} Perl extension for scrubbing/sanitizing HTML." msgstr "" -#: gnu/packages/web.scm:3260 +#: gnu/packages/web.scm:3261 msgid "" "HTML::Lint is a pure-Perl HTML parser and checker for\n" "syntactic legitmacy." msgstr "" -#: gnu/packages/web.scm:3282 +#: gnu/packages/web.scm:3283 msgid "" "HTML::TableExtract is a Perl module for extracting the content contained\n" "in tables within an HTML document, either as text or encoded element trees." msgstr "" -#: gnu/packages/web.scm:3305 +#: gnu/packages/web.scm:3306 msgid "" "This distribution contains a suite of modules for\n" "representing, creating, and extracting information from HTML syntax trees." msgstr "" -#: gnu/packages/web.scm:3327 +#: gnu/packages/web.scm:3328 msgid "" "Objects of the HTML::Parser class will recognize markup and separate\n" "it from plain text (alias data content) in HTML documents. As different\n" @@ -21090,13 +21356,13 @@ msgid "" "are invoked." msgstr "" -#: gnu/packages/web.scm:3349 +#: gnu/packages/web.scm:3350 msgid "" "The HTML::Tagset module contains several data tables useful in various\n" "kinds of HTML parsing operations." msgstr "" -#: gnu/packages/web.scm:3370 +#: gnu/packages/web.scm:3371 msgid "" "This module attempts to make using HTML templates simple and natural.\n" "It extends standard HTML with a few new HTML-esque tags: @code{},\n" @@ -21107,40 +21373,40 @@ msgid "" "you to separate design from the data." msgstr "" -#: gnu/packages/web.scm:3398 +#: gnu/packages/web.scm:3399 msgid "" "HTTP::Body parses chunks of HTTP POST data and supports\n" "application/octet-stream, application/json, application/x-www-form-urlencoded,\n" "and multipart/form-data." msgstr "" -#: gnu/packages/web.scm:3421 +#: gnu/packages/web.scm:3422 msgid "" "This module implements a minimalist HTTP user agent cookie\n" "jar in conformance with RFC 6265 ." msgstr "" -#: gnu/packages/web.scm:3443 +#: gnu/packages/web.scm:3444 msgid "" "The HTTP::Cookies class is for objects that represent a cookie jar,\n" "that is, a database of all the HTTP cookies that a given LWP::UserAgent\n" "object knows about." msgstr "" -#: gnu/packages/web.scm:3466 +#: gnu/packages/web.scm:3467 msgid "" "Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen\n" "on a socket for incoming requests. The HTTP::Daemon is a subclass of\n" "IO::Socket::INET, so you can perform socket operations directly on it too." msgstr "" -#: gnu/packages/web.scm:3487 +#: gnu/packages/web.scm:3488 msgid "" "The HTTP::Date module provides functions that deal with date formats\n" "used by the HTTP protocol (and then some more)." msgstr "" -#: gnu/packages/web.scm:3508 +#: gnu/packages/web.scm:3509 msgid "" "@code{HTTP::Lite} is a stand-alone lightweight\n" "HTTP/1.1 implementation for perl. It is intended for use in\n" @@ -21154,11 +21420,11 @@ msgid "" "processing of request data as it arrives." msgstr "" -#: gnu/packages/web.scm:3541 +#: gnu/packages/web.scm:3542 msgid "An HTTP::Message object contains some headers and a content body." msgstr "" -#: gnu/packages/web.scm:3562 +#: gnu/packages/web.scm:3563 msgid "" "The HTTP::Negotiate module provides a complete implementation of the\n" "HTTP content negotiation algorithm specified in\n" @@ -21168,7 +21434,7 @@ msgid "" "fields in the request." msgstr "" -#: gnu/packages/web.scm:3587 +#: gnu/packages/web.scm:3588 msgid "" "This is an HTTP request parser. It takes chunks of text as\n" "received and returns a @code{hint} as to what is required, or returns the\n" @@ -21176,33 +21442,33 @@ msgid "" "supported." msgstr "" -#: gnu/packages/web.scm:3610 +#: gnu/packages/web.scm:3611 msgid "" "HTTP::Parser::XS is a fast, primitive HTTP request/response\n" "parser." msgstr "" -#: gnu/packages/web.scm:3631 +#: gnu/packages/web.scm:3632 msgid "" "This module provides a convenient way to set up a CGI\n" "environment from an HTTP::Request." msgstr "" -#: gnu/packages/web.scm:3665 +#: gnu/packages/web.scm:3666 msgid "" "HTTP::Server::Simple is a simple standalone HTTP daemon with\n" "no non-core module dependencies. It can be used for building a standalone\n" "http-based UI to your existing tools." msgstr "" -#: gnu/packages/web.scm:3688 +#: gnu/packages/web.scm:3689 msgid "" "This is a very simple HTTP/1.1 client, designed for doing\n" "simple requests without the overhead of a large framework like LWP::UserAgent.\n" "It supports proxies and redirection. It also correctly resumes after EINTR." msgstr "" -#: gnu/packages/web.scm:3713 +#: gnu/packages/web.scm:3714 msgid "" "@code{HTTP::Tinyish} is a wrapper module for @acronym{LWP,libwww-perl},\n" "@code{HTTP::Tiny}, curl and wget.\n" @@ -21210,20 +21476,20 @@ msgid "" "It provides an API compatible to HTTP::Tiny." msgstr "" -#: gnu/packages/web.scm:3735 +#: gnu/packages/web.scm:3736 msgid "" "IO::HTML provides an easy way to open a file containing HTML while\n" "automatically determining its encoding. It uses the HTML5 encoding sniffing\n" "algorithm specified in section 8.2.2.1 of the draft standard." msgstr "" -#: gnu/packages/web.scm:3755 +#: gnu/packages/web.scm:3756 msgid "" "This module provides a protocol-independent way to use IPv4\n" "and IPv6 sockets, intended as a replacement for IO::Socket::INET." msgstr "" -#: gnu/packages/web.scm:3777 +#: gnu/packages/web.scm:3778 msgid "" "IO::Socket::SSL makes using SSL/TLS much easier by wrapping the\n" "necessary functionality into the familiar IO::Socket interface and providing\n" @@ -21232,7 +21498,7 @@ msgid "" "select or poll." msgstr "" -#: gnu/packages/web.scm:3816 +#: gnu/packages/web.scm:3817 msgid "" "The libwww-perl collection is a set of Perl modules which provides a\n" "simple and consistent application programming interface to the\n" @@ -21242,7 +21508,7 @@ msgid "" "help you implement simple HTTP servers." msgstr "" -#: gnu/packages/web.scm:3844 +#: gnu/packages/web.scm:3845 msgid "" "This module attempts to answer, as accurately as it can, one\n" "of the nastiest technical questions there is: am I on the internet?\n" @@ -21252,7 +21518,7 @@ msgid "" "not have DNS. We might not have a network card at all!" msgstr "" -#: gnu/packages/web.scm:3870 +#: gnu/packages/web.scm:3871 #, scheme-format msgid "" "The LWP::MediaTypes module provides functions for handling media (also\n" @@ -21261,20 +21527,20 @@ msgid "" "exists it is used instead." msgstr "" -#: gnu/packages/web.scm:3895 +#: gnu/packages/web.scm:3896 msgid "" "The LWP::Protocol::https module provides support for using\n" "https schemed URLs with LWP." msgstr "" -#: gnu/packages/web.scm:3916 +#: gnu/packages/web.scm:3917 msgid "" "LWP::UserAgent::Cached is an LWP::UserAgent subclass with\n" "cache support. It returns responses from the local file system, if available,\n" "instead of making an HTTP request." msgstr "" -#: gnu/packages/web.scm:3938 +#: gnu/packages/web.scm:3939 msgid "" "LWP::UserAgent::Determined works just like LWP::UserAgent,\n" "except that when you use it to get a web page but run into a\n" @@ -21282,7 +21548,7 @@ msgid "" "and retry a few times." msgstr "" -#: gnu/packages/web.scm:3965 +#: gnu/packages/web.scm:3966 msgid "" "@code{LWPx::ParanoidAgent} is a class subclassing\n" "@code{LWP::UserAgent} but paranoid against attackers. Its purpose is\n" @@ -21292,11 +21558,11 @@ msgid "" "is limited to http and https." msgstr "" -#: gnu/packages/web.scm:4011 +#: gnu/packages/web.scm:4012 msgid "This module provides a Perlish interface to Amazon S3." msgstr "" -#: gnu/packages/web.scm:4032 +#: gnu/packages/web.scm:4033 msgid "" "The Net::HTTP class is a low-level HTTP client. An instance of the\n" "Net::HTTP class represents a connection to an HTTP server. The HTTP protocol\n" @@ -21304,7 +21570,7 @@ msgid "" "HTTP/1.1." msgstr "" -#: gnu/packages/web.scm:4053 +#: gnu/packages/web.scm:4054 msgid "" "Net::Server is an extensible, generic Perl server engine.\n" "It attempts to be a generic server as in Net::Daemon and NetServer::Generic.\n" @@ -21318,11 +21584,11 @@ msgid "" "or to multiple server ports." msgstr "" -#: gnu/packages/web.scm:4082 +#: gnu/packages/web.scm:4083 msgid "SSL support for Net::SMTP." msgstr "" -#: gnu/packages/web.scm:4116 +#: gnu/packages/web.scm:4117 msgid "" "Plack is a set of tools for using the PSGI stack. It\n" "contains middleware components, a reference server, and utilities for Web\n" @@ -21330,7 +21596,7 @@ msgid "" "WSGI." msgstr "" -#: gnu/packages/web.scm:4143 +#: gnu/packages/web.scm:4144 msgid "" "Plack::Middleware::Deflater is a middleware to encode your response body\n" "in gzip or deflate, based on \"Accept-Encoding\" HTTP request header. It\n" @@ -21339,13 +21605,13 @@ msgid "" "servers." msgstr "" -#: gnu/packages/web.scm:4170 +#: gnu/packages/web.scm:4171 msgid "" "This module sets the body in redirect response, if it's not\n" "already set." msgstr "" -#: gnu/packages/web.scm:4193 +#: gnu/packages/web.scm:4194 msgid "" "This middleware allows for POST requests that pretend to be\n" "something else: by adding either a header named X-HTTP-Method-Override to the\n" @@ -21353,44 +21619,44 @@ msgid "" "can say what method it actually meant." msgstr "" -#: gnu/packages/web.scm:4217 +#: gnu/packages/web.scm:4218 msgid "" "This module removes the body in an HTTP response if it's not\n" "required." msgstr "" -#: gnu/packages/web.scm:4240 +#: gnu/packages/web.scm:4241 msgid "" "Plack::Middleware::ReverseProxy resets some HTTP headers,\n" "which are changed by reverse-proxy. You can specify the reverse proxy address\n" "and stop fake requests using @code{enable_if} directive in your app.psgi." msgstr "" -#: gnu/packages/web.scm:4261 +#: gnu/packages/web.scm:4262 msgid "" "This module allows your to run your Plack::Test tests\n" "against an external server instead of just against a local application through\n" "either mocked HTTP or a locally spawned server." msgstr "" -#: gnu/packages/web.scm:4283 +#: gnu/packages/web.scm:4284 msgid "Test::TCP is test utilities for TCP/IP programs." msgstr "" -#: gnu/packages/web.scm:4308 +#: gnu/packages/web.scm:4309 msgid "" "Test::WWW::Mechanize is a subclass of the Perl module\n" "WWW::Mechanize that incorporates features for web application testing." msgstr "" -#: gnu/packages/web.scm:4341 +#: gnu/packages/web.scm:4342 msgid "" "The Test::WWW::Mechanize::Catalyst module meshes the\n" "Test::WWW:Mechanize module and the Catalyst web application framework to allow\n" "testing of Catalyst applications without needing to start up a web server." msgstr "" -#: gnu/packages/web.scm:4365 +#: gnu/packages/web.scm:4366 msgid "" "PSGI is a specification to decouple web server environments\n" "from web application framework code. Test::WWW::Mechanize is a subclass of\n" @@ -21399,21 +21665,21 @@ msgid "" "applications." msgstr "" -#: gnu/packages/web.scm:4390 +#: gnu/packages/web.scm:4391 msgid "" "The URI module implements the URI class. Objects of this class\n" "represent \"Uniform Resource Identifier references\" as specified in RFC 2396\n" "and updated by RFC 2732." msgstr "" -#: gnu/packages/web.scm:4413 +#: gnu/packages/web.scm:4414 msgid "" "@code{URI::Fetch} is a smart client for fetching HTTP pages,\n" "notably syndication feeds (RSS, Atom, and others), in an intelligent, bandwidth-\n" "and time-saving way." msgstr "" -#: gnu/packages/web.scm:4437 +#: gnu/packages/web.scm:4438 msgid "" "This module finds URIs and URLs (according to what URI.pm\n" "considers a URI) in plain text. It only finds URIs which include a\n" @@ -21421,37 +21687,37 @@ msgid "" "URI::Find::Schemeless. For a command-line interface, urifind is provided." msgstr "" -#: gnu/packages/web.scm:4460 +#: gnu/packages/web.scm:4461 msgid "" "With this module, the URI package provides the same set of\n" "methods for WebSocket URIs as it does for HTTP URIs." msgstr "" -#: gnu/packages/web.scm:4483 +#: gnu/packages/web.scm:4484 msgid "" "This perl module provides a wrapper around URI templates as described in\n" "RFC 6570." msgstr "" -#: gnu/packages/web.scm:4517 +#: gnu/packages/web.scm:4518 msgid "" "This is a Perl extension interface for the libcurl file downloading\n" "library." msgstr "" -#: gnu/packages/web.scm:4548 +#: gnu/packages/web.scm:4549 msgid "" "WWW::Mechanize is a Perl module for stateful programmatic\n" "web browsing, used for automating interaction with websites." msgstr "" -#: gnu/packages/web.scm:4586 +#: gnu/packages/web.scm:4587 msgid "" "@code{WWW::OpenSearch} is a module to search @url{A9's OpenSearch,\n" "http://opensearch.a9.com} compatible search engines." msgstr "" -#: gnu/packages/web.scm:4608 +#: gnu/packages/web.scm:4609 msgid "" "The WWW::RobotRules module parses /robots.txt files as specified in\n" "\"A Standard for Robot Exclusion\", at\n" @@ -21460,13 +21726,13 @@ msgid "" "their web site." msgstr "" -#: gnu/packages/web.scm:4635 gnu/packages/web.scm:4659 +#: gnu/packages/web.scm:4640 gnu/packages/web.scm:4664 msgid "" "Universal feed parser which handles RSS 0.9x, RSS 1.0, RSS 2.0,\n" "CDF, Atom 0.3, and Atom 1.0 feeds." msgstr "" -#: gnu/packages/web.scm:4756 +#: gnu/packages/web.scm:4761 msgid "" "The Guix Data Service stores data about GNU Guix, and provides this\n" "through a web interface. It supports listening to the guix-commits mailing\n" @@ -21474,20 +21740,20 @@ msgid "" "PostgreSQL database." msgstr "" -#: gnu/packages/web.scm:4785 +#: gnu/packages/web.scm:4790 msgid "" "Gumbo is an implementation of the HTML5 parsing algorithm implemented as\n" "a pure C99 library." msgstr "" -#: gnu/packages/web.scm:4858 +#: gnu/packages/web.scm:4863 msgid "" "uWSGI presents a complete stack for networked/clustered web applications,\n" "implementing message/object passing, caching, RPC and process management.\n" "It uses the uwsgi protocol for all the networking/interprocess communications." msgstr "" -#: gnu/packages/web.scm:4891 +#: gnu/packages/web.scm:4896 msgid "" "jq is like sed for JSON data – you can use it to slice and\n" "filter and map and transform structured data with the same ease that sed, awk,\n" @@ -21497,7 +21763,7 @@ msgid "" "you'd expect." msgstr "" -#: gnu/packages/web.scm:4920 +#: gnu/packages/web.scm:4925 msgid "" "@command{pup} is a command line tool for processing HTML. It reads\n" "from stdin, prints to stdout, and allows the user to filter parts of the page\n" @@ -21505,66 +21771,66 @@ msgid "" "fast and flexible way of exploring HTML from the terminal." msgstr "" -#: gnu/packages/web.scm:4953 +#: gnu/packages/web.scm:4958 msgid "" "Uhttpmock is a project for mocking web service APIs which use HTTP or\n" "HTTPS. It provides a library, libuhttpmock, which implements recording and\n" "playback of HTTP request/response traces." msgstr "" -#: gnu/packages/web.scm:4989 +#: gnu/packages/web.scm:4994 msgid "" "Woof (Web Offer One File) is a small simple web server that\n" "can easily be invoked on a single file. Your partner can access the file with\n" "tools they trust (e.g. wget)." msgstr "" -#: gnu/packages/web.scm:5017 +#: gnu/packages/web.scm:5022 msgid "" "This package provides the shared build system for Netsurf project\n" "libraries." msgstr "" -#: gnu/packages/web.scm:5052 +#: gnu/packages/web.scm:5057 msgid "" "LibParserUtils is a library for building efficient parsers, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5082 +#: gnu/packages/web.scm:5087 msgid "" "Hubbub is an HTML5 compliant parsing library, written in C, which can\n" "parse both valid and invalid web content. It is developed as part of the\n" "NetSurf project." msgstr "" -#: gnu/packages/web.scm:5203 +#: gnu/packages/web.scm:5208 msgid "" "Ikiwiki is a wiki compiler, capable of generating a static set of web\n" "pages, but also incorporating dynamic features like a web based editor and\n" "commenting." msgstr "" -#: gnu/packages/web.scm:5227 +#: gnu/packages/web.scm:5232 msgid "" "LibWapcaplet provides a reference counted string internment system\n" "designed to store small strings and allow rapid comparison of them. It is\n" "developed as part of the Netsurf project." msgstr "" -#: gnu/packages/web.scm:5259 +#: gnu/packages/web.scm:5264 msgid "" "LibCSS is a CSS (Cascading Style Sheet) parser and selection engine,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5294 +#: gnu/packages/web.scm:5299 msgid "" "LibDOM is an implementation of the W3C DOM, written in C. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5321 +#: gnu/packages/web.scm:5326 msgid "" "Libsvgtiny takes some SVG as input and returns a list of paths and texts\n" "which can be rendered easily, as defined in\n" @@ -21572,65 +21838,65 @@ msgid "" "project." msgstr "" -#: gnu/packages/web.scm:5346 +#: gnu/packages/web.scm:5351 msgid "" "Libnsbmp is a decoding library for BMP and ICO image file formats,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5369 +#: gnu/packages/web.scm:5374 msgid "" "Libnsgif is a decoding library for the GIF image file format, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5396 +#: gnu/packages/web.scm:5401 msgid "" "Libnslog provides a category-based logging library which supports\n" "complex logging filters, multiple log levels, and provides context through to\n" "client applications. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5420 +#: gnu/packages/web.scm:5425 msgid "" "Libnsutils provides a small number of useful utility routines. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5443 +#: gnu/packages/web.scm:5448 msgid "" "Libnspsl is a library to generate a static code representation of the\n" "Public Suffix List. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5469 +#: gnu/packages/web.scm:5474 msgid "" "@code{nsgenbind} is a tool to generate JavaScript to DOM bindings from\n" "w3c webidl files and a binding configuration file." msgstr "" -#: gnu/packages/web.scm:5592 +#: gnu/packages/web.scm:5597 msgid "" "NetSurf is a lightweight web browser that has its own layout and\n" "rendering engine entirely written from scratch. It is small and capable of\n" "handling many of the web standards in use today." msgstr "" -#: gnu/packages/web.scm:5631 +#: gnu/packages/web.scm:5636 msgid "" "Surfraw (Shell Users' Revolutionary Front Rage Against the Web)\n" "provides a unix command line interface to a variety of popular www search engines\n" "and similar services." msgstr "" -#: gnu/packages/web.scm:5664 +#: gnu/packages/web.scm:5669 msgid "" "darkhttpd is a simple static web server. It is\n" "standalone and does not need inetd or ucspi-tcp. It does not need any\n" "config files---you only have to specify the www root." msgstr "" -#: gnu/packages/web.scm:5695 +#: gnu/packages/web.scm:5700 msgid "" "GoAccess is a real-time web log analyzer and interactive viewer that\n" "runs in a terminal or through your browser. It provides fast and valuable\n" @@ -21638,7 +21904,7 @@ msgid "" "on the fly." msgstr "" -#: gnu/packages/web.scm:5749 +#: gnu/packages/web.scm:5754 msgid "" "Hitch is a performant TLS proxy based on @code{libev}. It terminates\n" "SSL/TLS connections and forwards the unencrypted traffic to a backend such\n" @@ -21646,7 +21912,7 @@ msgid "" "multicore machines." msgstr "" -#: gnu/packages/web.scm:5786 +#: gnu/packages/web.scm:5791 msgid "" "httptunnel creates a bidirectional virtual data connection\n" "tunnelled through HTTP (HyperText Transfer Protocol) requests. This can be\n" @@ -21664,7 +21930,7 @@ msgid "" "deployments." msgstr "" -#: gnu/packages/web.scm:5915 +#: gnu/packages/web.scm:5912 msgid "" "Varnish is a high-performance HTTP accelerator. It acts as a caching\n" "reverse proxy and load balancer. You install it in front of any server that\n" @@ -21672,14 +21938,14 @@ msgid "" "configuration language." msgstr "" -#: gnu/packages/web.scm:5949 +#: gnu/packages/web.scm:5946 msgid "" "This package provides a collection of modules (@dfn{vmods}) for the Varnish\n" "cache server, extending the @acronym{VCL, Varnish Configuration Language} with\n" "additional capabilities." msgstr "" -#: gnu/packages/web.scm:5976 +#: gnu/packages/web.scm:5973 msgid "" "@code{xinetd}, a more secure replacement for @code{inetd},\n" "listens for incoming requests over a network and launches the appropriate\n" @@ -21688,7 +21954,7 @@ msgid "" "used to start services with both privileged and non-privileged port numbers." msgstr "" -#: gnu/packages/web.scm:6023 +#: gnu/packages/web.scm:6020 msgid "" "Tidy is a console application which corrects and cleans up\n" "HTML and XML documents by fixing markup errors and upgrading\n" @@ -21699,14 +21965,14 @@ msgid "" "functions of Tidy." msgstr "" -#: gnu/packages/web.scm:6085 +#: gnu/packages/web.scm:6082 msgid "" "Hiawatha has been written with security in mind.\n" "Features include the ability to stop SQL injections, XSS and CSRF attacks and\n" "exploit attempts." msgstr "" -#: gnu/packages/web.scm:6107 +#: gnu/packages/web.scm:6104 msgid "" "Testing an HTTP Library can become difficult sometimes.\n" "@code{RequestBin} is fantastic for testing POST requests, but doesn't let you control the\n" @@ -21714,14 +21980,14 @@ msgid "" "JSON-encoded." msgstr "" -#: gnu/packages/web.scm:6132 +#: gnu/packages/web.scm:6129 msgid "" "@code{Pytest-httpbin} creates a @code{pytest} fixture that is dependency-injected\n" "into your tests. It automatically starts up a HTTP server in a separate thread running\n" "@code{httpbin} and provides your test with the URL in the fixture." msgstr "" -#: gnu/packages/web.scm:6199 +#: gnu/packages/web.scm:6196 msgid "" "This is a parser for HTTP messages written in C. It\n" "parses both requests and responses. The parser is designed to be used in\n" @@ -21731,40 +21997,40 @@ msgid "" "message stream (in a web server that is per connection)." msgstr "" -#: gnu/packages/web.scm:6236 +#: gnu/packages/web.scm:6233 msgid "" "@code{httpretty} is a helper for faking web requests,\n" "inspired by Ruby's @code{fakeweb}." msgstr "" -#: gnu/packages/web.scm:6254 +#: gnu/packages/web.scm:6251 msgid "" "jo is a command-line utility to create JSON objects or\n" "arrays. It creates a JSON string on stdout from words provided as\n" "command-line arguments or read from stdin." msgstr "" -#: gnu/packages/web.scm:6313 +#: gnu/packages/web.scm:6310 msgid "" "@code{ia} is a command-line tool for using\n" "@url{archive.org} from the command-line. It also implements the\n" "internetarchive python module for programmatic access to archive.org." msgstr "" -#: gnu/packages/web.scm:6364 +#: gnu/packages/web.scm:6361 msgid "" "@code{clf} is a command line tool for searching code\n" "snippets on @url{https://commandlinefu.com}." msgstr "" -#: gnu/packages/web.scm:6402 +#: gnu/packages/web.scm:6399 msgid "" "rss-bridge generates Atom feeds for social networking\n" "websites lacking feeds. Supported websites include Facebook, Twitter,\n" "Instagram and YouTube." msgstr "" -#: gnu/packages/web.scm:6440 +#: gnu/packages/web.scm:6437 msgid "" "LinkChecker is a website validator. It checks for broken\n" "links in websites. It is recursive and multithreaded providing output in\n" @@ -21773,67 +22039,67 @@ msgid "" "file links." msgstr "" -#: gnu/packages/web.scm:6488 +#: gnu/packages/web.scm:6485 msgid "" "Castor is a graphical client for plain-text protocols written in\n" "Rust with GTK. It currently supports the Gemini, Gopher and Finger\n" "protocols." msgstr "" -#: gnu/packages/web.scm:6575 +#: gnu/packages/web.scm:6572 msgid "" "This package includes Clearsilver, the CGI kit and HTML templating\n" "system." msgstr "" -#: gnu/packages/web.scm:6594 +#: gnu/packages/web.scm:6591 msgid "" "Py-ubjson is a Python module providing an Universal Binary JSON\n" "encoder/decoder based on the draft-12 specification for UBJSON." msgstr "" -#: gnu/packages/web.scm:6689 +#: gnu/packages/web.scm:6686 msgid "" "Apache Tomcat is a free implementation of the Java\n" "Servlet, JavaServer Pages, Java Expression Language and Java WebSocket\n" "technologies." msgstr "" -#: gnu/packages/web.scm:6743 +#: gnu/packages/web.scm:6740 msgid "" "This package contains helper classes for testing the Jetty\n" "Web Server." msgstr "" -#: gnu/packages/web.scm:6802 +#: gnu/packages/web.scm:6799 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides utility classes." msgstr "" -#: gnu/packages/web.scm:6880 +#: gnu/packages/web.scm:6877 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides IO-related utility classes." msgstr "" -#: gnu/packages/web.scm:6925 +#: gnu/packages/web.scm:6922 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides HTTP-related utility classes." msgstr "" -#: gnu/packages/web.scm:6959 +#: gnu/packages/web.scm:6956 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides the JMX management." msgstr "" -#: gnu/packages/web.scm:7045 +#: gnu/packages/web.scm:7042 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21841,7 +22107,7 @@ msgid "" "artifact." msgstr "" -#: gnu/packages/web.scm:7088 +#: gnu/packages/web.scm:7085 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21849,7 +22115,7 @@ msgid "" "infrastructure" msgstr "" -#: gnu/packages/web.scm:7144 +#: gnu/packages/web.scm:7141 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21857,14 +22123,14 @@ msgid "" "container." msgstr "" -#: gnu/packages/web.scm:7308 +#: gnu/packages/web.scm:7305 msgid "" "Jsoup is a Java library for working with real-world HTML. It\n" "provides a very convenient API for extracting and manipulating data, using the\n" "best of DOM, CSS, and jQuery-like methods." msgstr "" -#: gnu/packages/web.scm:7337 +#: gnu/packages/web.scm:7334 msgid "" "Signpost is the easy and intuitive solution for signing\n" "HTTP messages on the Java platform in conformance with the OAuth Core 1.0a\n" @@ -21872,7 +22138,7 @@ msgid "" "combine it with different HTTP messaging layers." msgstr "" -#: gnu/packages/web.scm:7360 +#: gnu/packages/web.scm:7357 msgid "" "Tidyp is a program that can validate your HTML, as well as\n" "modify it to be more clean and standard. tidyp does not validate HTML 5.\n" @@ -21882,14 +22148,14 @@ msgid "" "based on this library, allowing Perl programmers to easily validate HTML." msgstr "" -#: gnu/packages/web.scm:7401 +#: gnu/packages/web.scm:7398 msgid "" "@code{HTML::Tidy} is an HTML checker in a handy dandy\n" "object. It's meant as a replacement for @code{HTML::Lint}, which is written\n" "in Perl but is not nearly as capable as @code{HTML::Tidy}." msgstr "" -#: gnu/packages/web.scm:7430 +#: gnu/packages/web.scm:7427 msgid "" "Geomyidae is a server for distributed hypertext protocol Gopher. Its\n" "features include:\n" @@ -21903,14 +22169,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/web.scm:7478 +#: gnu/packages/web.scm:7475 msgid "" "Cat avatar generator is a generator of cat pictures optimised\n" "to generate random avatars, or defined avatar from a \"seed\". This is a\n" "derivation by David Revoy from the original MonsterID by Andreas Gohr." msgstr "" -#: gnu/packages/web.scm:7548 +#: gnu/packages/web.scm:7545 msgid "" "nghttp2 implements the Hypertext Transfer Protocol, version\n" "2 (@dfn{HTTP/2}).\n" @@ -21936,14 +22202,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7647 +#: gnu/packages/web.scm:7644 msgid "" "Hpcguix-web provides a web interface to the list of packages\n" "provided by Guix. The list of packages is searchable and provides\n" "instructions on how to use Guix in a shared HPC environment." msgstr "" -#: gnu/packages/web.scm:7668 +#: gnu/packages/web.scm:7665 msgid "" "HTTrack allows you to download a World Wide Web site from\n" "the Internet to a local directory, building recursively all directories,\n" @@ -21957,7 +22223,7 @@ msgid "" "HTTrack is fully configurable, and has an integrated help system." msgstr "" -#: gnu/packages/web.scm:7703 +#: gnu/packages/web.scm:7700 msgid "" "buku is a powerful bookmark manager written in Python3 and SQLite3.\n" "@command{buku} can auto-import bookmarks from your browser and present them\n" @@ -21966,7 +22232,7 @@ msgid "" "@command{bukuserver}." msgstr "" -#: gnu/packages/web.scm:7724 +#: gnu/packages/web.scm:7721 msgid "" "Anonip masks the last bits of IPv4 and IPv6 addresses in log files.\n" "That way most of the relevant information is preserved, while the IP address\n" @@ -21981,7 +22247,7 @@ msgid "" "Anonip can also be uses as a Python module in your own Python application." msgstr "" -#: gnu/packages/web.scm:7758 +#: gnu/packages/web.scm:7755 msgid "" "Poussetaches (which literally means \"push tasks\" in\n" "French) is a lightweight asynchronous task execution service that aims to\n" @@ -21993,7 +22259,7 @@ msgid "" "returned." msgstr "" -#: gnu/packages/web.scm:7783 +#: gnu/packages/web.scm:7780 msgid "" "htmlcxx is a simple non-validating CSS1 and HTML parser for\n" "C++. Although there are several other HTML parsers available, htmlcxx has some\n" @@ -22011,7 +22277,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:7827 +#: gnu/packages/web.scm:7824 msgid "" "libRocket is a C++ user interface package based on the HTML\n" "and CSS standards. libRocket uses the open standards XHTML1.0 and\n" @@ -22028,11 +22294,11 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7869 +#: gnu/packages/web.scm:7866 msgid "gmnisrv is a simple Gemini protocol server written in C." msgstr "" -#: gnu/packages/web.scm:7900 +#: gnu/packages/web.scm:7898 msgid "" "The openZIM project proposes offline storage solutions for\n" "content coming from the Web. The zimlib is the standard implementation of the\n" @@ -22064,14 +22330,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:8081 +#: gnu/packages/web.scm:8078 msgid "" "uriparser is a strictly RFC 3986 compliant URI parsing and\n" "handling library written in C89 (\"ANSI C\"). uriparser is fast and supports\n" "Unicode." msgstr "" -#: gnu/packages/web.scm:8115 +#: gnu/packages/web.scm:8112 msgid "" "Quark is an extremely small and simple HTTP GET/HEAD only\n" "web server for static content. TLS is not natively supported and should be\n" @@ -22241,53 +22507,53 @@ msgid "" "Enhancement}." msgstr "" -#: gnu/services/base.scm:276 +#: gnu/services/base.scm:279 msgid "" "Populate the @file{/etc/fstab} based on the given file\n" "system objects." msgstr "" -#: gnu/services/base.scm:314 +#: gnu/services/base.scm:317 msgid "" "Take care of syncing the root file\n" "system and of remounting it read-only when the system shuts down." msgstr "" -#: gnu/services/base.scm:481 +#: gnu/services/base.scm:484 msgid "" "Provide Shepherd services to mount and unmount the given\n" "file systems, as well as corresponding @file{/etc/fstab} entries." msgstr "" -#: gnu/services/base.scm:579 +#: gnu/services/base.scm:582 msgid "" "Seed the @file{/dev/urandom} pseudo-random number\n" "generator (RNG) with the value recorded when the system was last shut\n" "down." msgstr "" -#: gnu/services/base.scm:611 +#: gnu/services/base.scm:614 msgid "" "Run the @command{rngd} random number generation daemon to\n" "supply entropy to the kernel's pool." msgstr "" -#: gnu/services/base.scm:640 +#: gnu/services/base.scm:643 msgid "Initialize the machine's host name." msgstr "" -#: gnu/services/base.scm:670 +#: gnu/services/base.scm:673 msgid "Ensure the Linux virtual terminals run in UTF-8 mode." msgstr "" -#: gnu/services/base.scm:683 +#: gnu/services/base.scm:686 msgid "" "@emph{This service is deprecated in favor of the\n" "@code{keyboard-layout} field of @code{operating-system}.} Load the given list\n" "of console keymaps with @command{loadkeys}." msgstr "" -#: gnu/services/base.scm:743 +#: gnu/services/base.scm:746 msgid "" "Install the given fonts on the specified ttys (fonts are per\n" "virtual console on GNU/Linux). The value of this service is a list of\n" @@ -22305,66 +22571,66 @@ msgid "" "@end example\n" msgstr "" -#: gnu/services/base.scm:795 +#: gnu/services/base.scm:798 msgid "" "Provide a console log-in service as specified by its\n" "configuration value, a @code{login-configuration} object." msgstr "" -#: gnu/services/base.scm:1063 +#: gnu/services/base.scm:1066 msgid "" "Provide console login using the @command{agetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1128 +#: gnu/services/base.scm:1131 msgid "" "Provide console login using the @command{mingetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1345 +#: gnu/services/base.scm:1348 msgid "" "Runs libc's @dfn{name service cache daemon} (nscd) with the\n" "given configuration---an @code{} object. @xref{Name\n" "Service Switch}, for an example." msgstr "" -#: gnu/services/base.scm:1384 +#: gnu/services/base.scm:1387 msgid "" "Run the syslog daemon, @command{syslogd}, which is\n" "responsible for logging system messages." msgstr "" -#: gnu/services/base.scm:1448 +#: gnu/services/base.scm:1451 msgid "" "Install the specified resource usage limits by populating\n" "@file{/etc/security/limits.conf} and using the @code{pam_limits}\n" "authentication module." msgstr "" -#: gnu/services/base.scm:1794 +#: gnu/services/base.scm:1804 msgid "Run the build daemon of GNU@tie{}Guix, aka. @command{guix-daemon}." msgstr "" -#: gnu/services/base.scm:1944 +#: gnu/services/base.scm:1961 msgid "" "Add a Shepherd service running @command{guix publish}, a\n" "command that allows you to share pre-built binaries with others over HTTP." msgstr "" -#: gnu/services/base.scm:2150 +#: gnu/services/base.scm:2167 msgid "" "Run @command{udev}, which populates the @file{/dev}\n" "directory dynamically. Get extra rules from the packages listed in the\n" "@code{rules} field of its value, @code{udev-configuration} object." msgstr "" -#: gnu/services/base.scm:2267 +#: gnu/services/base.scm:2284 msgid "Turn on the virtual memory swap area." msgstr "" -#: gnu/services/base.scm:2309 +#: gnu/services/base.scm:2326 msgid "" "Run GPM, the general-purpose mouse daemon, with the given\n" "command-line options. GPM allows users to use the mouse in the console,\n" @@ -22372,33 +22638,33 @@ msgid "" "@code{ps2} protocol, which works for both USB and PS/2 mice." msgstr "" -#: gnu/services/base.scm:2382 +#: gnu/services/base.scm:2399 msgid "" "Start the @command{kmscon} virtual terminal emulator for the\n" "Linux @dfn{kernel mode setting} (KMS)." msgstr "" -#: gnu/services/base.scm:2403 +#: gnu/services/base.scm:2416 #, scheme-format msgid "address '~a' lacks a network mask" msgstr "" -#: gnu/services/base.scm:2409 +#: gnu/services/base.scm:2422 #, scheme-format msgid "Write, say, @samp{\"~a/24\"} for a 24-bit network mask." msgstr "" -#: gnu/services/base.scm:2489 +#: gnu/services/base.scm:2502 #, scheme-format msgid "network links are currently ignored on GNU/Hurd~%" msgstr "" -#: gnu/services/base.scm:2514 +#: gnu/services/base.scm:2527 #, scheme-format msgid "ignoring network route for '~a'~%" msgstr "" -#: gnu/services/base.scm:2698 +#: gnu/services/base.scm:2711 msgid "" "Turn up the specified network interfaces upon startup,\n" "with the given IP address, gateway, netmask, and so on. The value for\n" diff --git a/po/packages/pl.po b/po/packages/pl.po index ad33ed5c53..6bda13a694 100644 --- a/po/packages/pl.po +++ b/po/packages/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: guix-packages 0.9.0\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" "PO-Revision-Date: 2015-12-05 21:46+0100\n" "Last-Translator: Daniel Koć \n" "Language-Team: Polish \n" @@ -41,20 +41,20 @@ msgstr "" msgid "This package provides a dictionary for the GNU Aspell spell checker." msgstr "" -#: gnu/packages/aspell.scm:445 gnu/packages/libreoffice.scm:845 +#: gnu/packages/aspell.scm:450 gnu/packages/libreoffice.scm:845 #: gnu/packages/libreoffice.scm:918 msgid "" "This package provides a dictionary for the Hunspell spell-checking\n" "library." msgstr "" -#: gnu/packages/aspell.scm:525 +#: gnu/packages/aspell.scm:530 msgid "" "Ispell is an interactive spell-checking tool supporting many\n" "European languages." msgstr "" -#: gnu/packages/audio.scm:197 +#: gnu/packages/audio.scm:198 msgid "" "OpenSLES is a royalty-free, cross-platform,\n" "hardware-accelerated audio API tuned for embedded systems. It provides a\n" @@ -65,31 +65,31 @@ msgid "" "promoting the market for advanced audio." msgstr "" -#: gnu/packages/audio.scm:233 +#: gnu/packages/audio.scm:234 msgid "" "WildMIDI is a simple software midi player which has a core\n" "softsynth library that can be use with other applications." msgstr "" -#: gnu/packages/audio.scm:257 +#: gnu/packages/audio.scm:258 msgid "" "WebRTC-Audio-Processing library based on Google's\n" "implementation of WebRTC." msgstr "" -#: gnu/packages/audio.scm:277 +#: gnu/packages/audio.scm:278 msgid "" "VO-AACENC is the VisualOn implementation of Advanced Audio\n" "Coding (AAC) encoder." msgstr "" -#: gnu/packages/audio.scm:306 +#: gnu/packages/audio.scm:307 msgid "" "TinyALSA is a small library to interface with ALSA in the\n" "Linux kernel." msgstr "" -#: gnu/packages/audio.scm:329 +#: gnu/packages/audio.scm:330 msgid "" "Game-music-emu is a collection of video game music file emulators that\n" "support the following formats and systems:\n" @@ -115,43 +115,43 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/audio.scm:393 +#: gnu/packages/audio.scm:394 msgid "" "LibOpenMPT is a cross-platform C++ and C module playback\n" "library. It is based on the player code of the Open ModPlug Tracker project." msgstr "" -#: gnu/packages/audio.scm:424 +#: gnu/packages/audio.scm:425 msgid "" "LibOFA is an audio fingerprint library, created and provided\n" "by MusicIP." msgstr "" -#: gnu/packages/audio.scm:445 +#: gnu/packages/audio.scm:446 msgid "FAAC is an MPEG-4 and MPEG-2 AAC encoder." msgstr "" -#: gnu/packages/audio.scm:474 +#: gnu/packages/audio.scm:475 msgid "" "LibTiMidity is a MIDI to WAVE converter library that uses\n" "Gravis Ultrasound-compatible patch files to generate digital audio data from\n" "General MIDI files." msgstr "" -#: gnu/packages/audio.scm:499 +#: gnu/packages/audio.scm:500 msgid "" "VO-AMR is a library of VisualOn implementation of\n" "Adaptive Multi Rate Narrowband and Wideband (AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:518 +#: gnu/packages/audio.scm:519 msgid "" "OpenCore-AMR is a library of OpenCORE Framework\n" "implementation of Adaptive Multi Rate Narrowband and Wideband\n" "(AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:551 +#: gnu/packages/audio.scm:552 msgid "" "AlsaModularSynth is a digital implementation of a classical analog\n" "modular synthesizer system. It uses virtual control voltages to control the\n" @@ -160,7 +160,7 @@ msgid "" "Filter) modules follow the convention of 1V / Octave." msgstr "" -#: gnu/packages/audio.scm:588 +#: gnu/packages/audio.scm:589 msgid "" "aubio is a tool designed for the extraction of annotations from audio\n" "signals. Its features include segmenting a sound file before each of its\n" @@ -168,21 +168,21 @@ msgid "" "streams from live audio." msgstr "" -#: gnu/packages/audio.scm:719 +#: gnu/packages/audio.scm:720 msgid "" "Ardour is a multi-channel digital audio workstation, allowing users to\n" "record, edit, mix and master audio and MIDI projects. It is targeted at audio\n" "engineers, musicians, soundtrack editors and composers." msgstr "" -#: gnu/packages/audio.scm:833 +#: gnu/packages/audio.scm:853 msgid "" "Audacity is a multi-track audio editor designed for recording, playing\n" "and editing digital audio. It features digital effects and spectrum analysis\n" "tools." msgstr "" -#: gnu/packages/audio.scm:889 +#: gnu/packages/audio.scm:909 msgid "" "This is an open-source version of SGI's audiofile library.\n" "It provides a uniform programming interface for processing of audio data to\n" @@ -193,14 +193,14 @@ msgid "" "G.711 mu-law and A-law." msgstr "" -#: gnu/packages/audio.scm:931 +#: gnu/packages/audio.scm:951 msgid "" "Autotalent is a LADSPA plugin for real-time pitch-correction. Among its\n" "controls are allowable notes, strength of correction, LFO for vibrato and\n" "formant warp." msgstr "" -#: gnu/packages/audio.scm:972 +#: gnu/packages/audio.scm:992 msgid "" "AZR-3 is a port of the free VST plugin AZR-3. It is a tonewheel organ\n" "with drawbars, distortion and rotating speakers. The organ has three\n" @@ -209,7 +209,7 @@ msgid "" "plugins are provided." msgstr "" -#: gnu/packages/audio.scm:1011 +#: gnu/packages/audio.scm:1031 msgid "" "Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments.\n" "The suite contains lots of effects (delay, modulation, signal processing,\n" @@ -218,31 +218,31 @@ msgid "" "tools (analyzer, mono/stereo tools, crossovers)." msgstr "" -#: gnu/packages/audio.scm:1053 +#: gnu/packages/audio.scm:1073 msgid "" "LV2 port of CAPS, a collection of audio plugins comprising basic virtual\n" "guitar amplification and a small range of classic effects, signal processors and\n" "generators of mostly elementary and occasionally exotic nature." msgstr "" -#: gnu/packages/audio.scm:1094 +#: gnu/packages/audio.scm:1114 msgid "" "The infamous plugins are a collection of LV2 audio plugins for live\n" "performances. The plugins include a cellular automaton synthesizer, an\n" "envelope follower, distortion effects, tape effects and more." msgstr "" -#: gnu/packages/audio.scm:1129 +#: gnu/packages/audio.scm:1149 msgid "" "Snapcast is a multi-room client-server audio player. Clients are time\n" "synchronized with the server to play synced audio." msgstr "" -#: gnu/packages/audio.scm:1159 +#: gnu/packages/audio.scm:1179 msgid "This package provides Steve Harris's LADSPA plugins." msgstr "" -#: gnu/packages/audio.scm:1199 +#: gnu/packages/audio.scm:1219 msgid "" "Swh-plugins-lv2 is a collection of audio plugins in LV2 format. Plugin\n" "classes include: dynamics (compressor, limiter), time (delay, chorus,\n" @@ -250,13 +250,13 @@ msgid "" "emulation (valve, tape), bit fiddling (decimator, pointer-cast), etc." msgstr "" -#: gnu/packages/audio.scm:1233 +#: gnu/packages/audio.scm:1253 msgid "" "@code{libdjinterop} is a C++ library that allows access to database\n" "formats used to store information about DJ record libraries." msgstr "" -#: gnu/packages/audio.scm:1295 gnu/packages/audio.scm:1326 +#: gnu/packages/audio.scm:1315 gnu/packages/audio.scm:1346 msgid "" "Tao is a software package for sound synthesis using physical\n" "models. It provides a virtual acoustic material constructed from masses and\n" @@ -266,13 +266,13 @@ msgid "" "object library." msgstr "" -#: gnu/packages/audio.scm:1361 +#: gnu/packages/audio.scm:1381 msgid "" "Csound is a user-programmable and user-extensible sound processing\n" "language and software synthesizer." msgstr "" -#: gnu/packages/audio.scm:1388 +#: gnu/packages/audio.scm:1408 msgid "" "midicomp can manipulate SMF (Standard MIDI File) files. It can both\n" " read and write SMF files in 0 or format 1 and also read and write its own\n" @@ -281,20 +281,20 @@ msgid "" " language, and recompiled back into a binary SMF file." msgstr "" -#: gnu/packages/audio.scm:1435 +#: gnu/packages/audio.scm:1455 msgid "" "clalsadrv is a C++ wrapper around the ALSA API simplifying access to\n" "ALSA PCM devices." msgstr "" -#: gnu/packages/audio.scm:1474 +#: gnu/packages/audio.scm:1494 msgid "" "The AMB plugins are a set of LADSPA ambisonics plugins, mainly to be\n" "used within Ardour. Features include: mono and stereo to B-format panning,\n" "horizontal rotator, square, hexagon and cube decoders." msgstr "" -#: gnu/packages/audio.scm:1511 +#: gnu/packages/audio.scm:1531 msgid "" "This package provides various LADSPA plugins. @code{cs_chorus} and\n" "@code{cs_phaser} provide chorus and phaser effects, respectively;\n" @@ -304,13 +304,13 @@ msgid "" "the non-linear circuit elements of their original analog counterparts." msgstr "" -#: gnu/packages/audio.scm:1551 +#: gnu/packages/audio.scm:1571 msgid "" "This package provides a stereo reverb LADSPA plugin based on the\n" "well-known greverb." msgstr "" -#: gnu/packages/audio.scm:1587 +#: gnu/packages/audio.scm:1607 msgid "" "This package provides a LADSPA plugin for a four-band parametric\n" "equalizer. Each section has an active/bypass switch, frequency, bandwidth and\n" @@ -325,13 +325,13 @@ msgid "" "for stage use." msgstr "" -#: gnu/packages/audio.scm:1632 +#: gnu/packages/audio.scm:1652 msgid "" "This package provides a LADSPA plugin to manipulate the stereo width of\n" "audio signals." msgstr "" -#: gnu/packages/audio.scm:1669 +#: gnu/packages/audio.scm:1689 msgid "" "The @code{blvco} LADSPA plugin provides three anti-aliased oscillators:\n" "\n" @@ -346,17 +346,17 @@ msgid "" "output of analog synthesizers such as the Moog Voyager." msgstr "" -#: gnu/packages/audio.scm:1713 +#: gnu/packages/audio.scm:1733 msgid "" "This package provides a LADSPA plugin for a Wah effect with envelope\n" "follower." msgstr "" -#: gnu/packages/audio.scm:1749 +#: gnu/packages/audio.scm:1769 msgid "This package provides a LADSPA plugin for a stereo reverb effect." msgstr "" -#: gnu/packages/audio.scm:1791 +#: gnu/packages/audio.scm:1811 msgid "" "FluidSynth is a real-time software synthesizer based on the SoundFont 2\n" "specifications. FluidSynth reads and handles MIDI events from the MIDI input\n" @@ -364,21 +364,21 @@ msgid "" "also play midifiles using a Soundfont." msgstr "" -#: gnu/packages/audio.scm:1814 +#: gnu/packages/audio.scm:1834 msgid "FAAD2 is an MPEG-4 and MPEG-2 AAC decoder supporting LC, Main, LTP, SBR, -PS, and DAB+." msgstr "" -#: gnu/packages/audio.scm:1855 +#: gnu/packages/audio.scm:1875 msgid "Faust is a programming language for realtime audio signal processing." msgstr "" -#: gnu/packages/audio.scm:1919 +#: gnu/packages/audio.scm:1939 msgid "" "FreePats is a project to create a free and open set of GUS compatible\n" "patches that can be used with softsynths such as Timidity and WildMidi." msgstr "" -#: gnu/packages/audio.scm:1972 +#: gnu/packages/audio.scm:1992 msgid "" "Guitarix is a virtual guitar amplifier running JACK.\n" "Guitarix takes the signal from your guitar as a mono-signal from your sound\n" @@ -389,7 +389,7 @@ msgid "" "auto-wah." msgstr "" -#: gnu/packages/audio.scm:2028 +#: gnu/packages/audio.scm:2048 msgid "" "Rakarrack is a richly featured multi-effects processor emulating a\n" "guitar effects pedalboard. Effects include compressor, expander, noise gate,\n" @@ -401,14 +401,14 @@ msgid "" "well suited to all musical instruments and vocals." msgstr "" -#: gnu/packages/audio.scm:2084 +#: gnu/packages/audio.scm:2104 msgid "" "IR is a low-latency, real-time, high performance signal convolver\n" "especially for creating reverb effects. It supports impulse responses with 1,\n" "2 or 4 channels, in any soundfile format supported by libsndfile." msgstr "" -#: gnu/packages/audio.scm:2124 +#: gnu/packages/audio.scm:2144 msgid "" "JACK is a low-latency audio server. It can connect a number of\n" "different applications to an audio device, as well as allowing them to share\n" @@ -418,20 +418,20 @@ msgid "" "synchronous execution of all clients, and low latency operation." msgstr "" -#: gnu/packages/audio.scm:2220 +#: gnu/packages/audio.scm:2240 msgid "" "Jalv is a simple but fully featured LV2 host for JACK. It runs LV2\n" "plugins and exposes their ports as JACK ports, essentially making any LV2\n" "plugin function as a JACK application." msgstr "" -#: gnu/packages/audio.scm:2266 +#: gnu/packages/audio.scm:2286 msgid "" "LADSPA is a standard that allows software audio processors and effects\n" "to be plugged into a wide range of audio synthesis and recording packages." msgstr "" -#: gnu/packages/audio.scm:2318 +#: gnu/packages/audio.scm:2338 msgid "" "LASH is a session management system for audio applications. It allows\n" "you to save and restore audio sessions consisting of multiple interconneced\n" @@ -439,7 +439,7 @@ msgid "" "connections between them." msgstr "" -#: gnu/packages/audio.scm:2341 +#: gnu/packages/audio.scm:2361 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is\n" "designed to improve headphone listening of stereo audio records. Recommended\n" @@ -447,7 +447,7 @@ msgid "" "essential distortions." msgstr "" -#: gnu/packages/audio.scm:2364 +#: gnu/packages/audio.scm:2384 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and\n" "plugins is designed to improve headphone listening of stereo audio records.\n" @@ -456,13 +456,13 @@ msgid "" "with applications that support them (e.g. PulseAudio)." msgstr "" -#: gnu/packages/audio.scm:2390 +#: gnu/packages/audio.scm:2410 msgid "" "liblo is a lightweight library that provides an easy to use\n" "implementation of the Open Sound Control (@dfn{OSC}) protocol." msgstr "" -#: gnu/packages/audio.scm:2426 +#: gnu/packages/audio.scm:2446 msgid "" "RtAudio is a set of C++ classes that provides a common API for real-time\n" "audio input/output. It was designed with the following objectives:\n" @@ -481,13 +481,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/audio.scm:2462 +#: gnu/packages/audio.scm:2482 msgid "" "This package provides bindings for PortAudio v19, the\n" "cross-platform audio input/output stream library." msgstr "" -#: gnu/packages/audio.scm:2489 +#: gnu/packages/audio.scm:2509 msgid "" "Pyliblo is a Python wrapper for the liblo Open Sound Control (OSC)\n" "library. It supports almost the complete functionality of liblo, allowing you\n" @@ -495,19 +495,19 @@ msgid "" "included are the command line utilities @code{send_osc} and @code{dump_osc}." msgstr "" -#: gnu/packages/audio.scm:2526 +#: gnu/packages/audio.scm:2546 msgid "" "This package provides python bindings for libsndfile based on\n" "CFFI and NumPy." msgstr "" -#: gnu/packages/audio.scm:2544 +#: gnu/packages/audio.scm:2564 msgid "" "This package provides a python API to read and write MIDI\n" "files." msgstr "" -#: gnu/packages/audio.scm:2581 +#: gnu/packages/audio.scm:2601 msgid "" "@command{audio-to-midi} converts audio files to multichannel\n" "MIDI files. It accomplishes this by performing FFTs on all channels of the\n" @@ -517,14 +517,14 @@ msgid "" "frequencies. This data is then formatted to MIDI and written to disk." msgstr "" -#: gnu/packages/audio.scm:2624 +#: gnu/packages/audio.scm:2644 msgid "" "Lilv is a C library to make the use of LV2 plugins as simple as possible\n" "for applications. Lilv is the successor to SLV2, rewritten to be\n" "significantly faster and have minimal dependencies." msgstr "" -#: gnu/packages/audio.scm:2652 +#: gnu/packages/audio.scm:2672 msgid "" "LV2 is an open specification for audio plugins and host applications.\n" "At its core, LV2 is a simple stable interface, accompanied by extensions which\n" @@ -532,22 +532,22 @@ msgid "" "software." msgstr "" -#: gnu/packages/audio.scm:2688 +#: gnu/packages/audio.scm:2708 msgid "An LV2 port of the mda Piano VSTi." msgstr "" -#: gnu/packages/audio.scm:2702 +#: gnu/packages/audio.scm:2722 msgid "An LV2 port of the mda EPiano VSTi." msgstr "" -#: gnu/packages/audio.scm:2732 +#: gnu/packages/audio.scm:2752 msgid "" "The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and\n" "extensions into easy to use C++ classes. It is the successor of\n" "lv2-c++-tools." msgstr "" -#: gnu/packages/audio.scm:2774 +#: gnu/packages/audio.scm:2794 msgid "" "OpenAL provides capabilities for playing audio in a virtual 3D\n" "environment. Distance attenuation, doppler shift, and directional sound\n" @@ -557,36 +557,36 @@ msgid "" "buffers, and audio capture." msgstr "" -#: gnu/packages/audio.scm:2805 +#: gnu/packages/audio.scm:2825 msgid "freealut is the OpenAL Utility Toolkit." msgstr "" -#: gnu/packages/audio.scm:2837 +#: gnu/packages/audio.scm:2857 msgid "" "Patchage is a modular patch bay for audio and MIDI systems based on JACK\n" "and ALSA." msgstr "" -#: gnu/packages/audio.scm:2862 +#: gnu/packages/audio.scm:2882 msgid "" "The Portable C Audio Library (pcaudiolib) provides a C@tie{}API to\n" "different audio devices such as ALSA or PulseAudio." msgstr "" -#: gnu/packages/audio.scm:2889 +#: gnu/packages/audio.scm:2909 msgid "" "Control a Jack server. Allows you to plug various sources\n" "into various outputs and to start, stop and configure jackd" msgstr "" -#: gnu/packages/audio.scm:2921 +#: gnu/packages/audio.scm:2941 msgid "" "QJackRcd is a simple graphical stereo recorder for JACK\n" "supporting silence processing for automatic pause, file splitting, and\n" "background file post-processing." msgstr "" -#: gnu/packages/audio.scm:3029 +#: gnu/packages/audio.scm:3049 msgid "" "SuperCollider is a synthesis engine (@code{scsynth} or\n" "@code{supernova}) and programming language (@code{sclang}). It can be used\n" @@ -598,17 +598,17 @@ msgid "" "using Guix System." msgstr "" -#: gnu/packages/audio.scm:3057 +#: gnu/packages/audio.scm:3077 msgid "This package provides libshout plus IDJC extensions." msgstr "" -#: gnu/packages/audio.scm:3083 +#: gnu/packages/audio.scm:3103 msgid "" "Raul (Real-time Audio Utility Library) is a C++ utility library primarily\n" "aimed at audio/musical applications." msgstr "" -#: gnu/packages/audio.scm:3119 +#: gnu/packages/audio.scm:3139 msgid "" "This package contains the @command{resample} and\n" "@command{windowfilter} command line utilities. The @command{resample} command\n" @@ -617,26 +617,26 @@ msgid "" "filters using the so-called @emph{window method}." msgstr "" -#: gnu/packages/audio.scm:3160 +#: gnu/packages/audio.scm:3180 msgid "" "Rubber Band is a library and utility program that permits changing the\n" "tempo and pitch of an audio recording independently of one another." msgstr "" -#: gnu/packages/audio.scm:3184 +#: gnu/packages/audio.scm:3204 msgid "" "RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut, and API specific\n" "classes) that provide a common cross-platform API for realtime MIDI\n" "input/output." msgstr "" -#: gnu/packages/audio.scm:3210 +#: gnu/packages/audio.scm:3230 msgid "" "Sratom is a library for serialising LV2 atoms to/from RDF, particularly\n" "the Turtle syntax." msgstr "" -#: gnu/packages/audio.scm:3238 +#: gnu/packages/audio.scm:3258 msgid "" "Suil is a lightweight C library for loading and wrapping LV2 plugin UIs.\n" "\n" @@ -648,13 +648,13 @@ msgid "" "Suil currently supports every combination of Gtk, Qt, and X11." msgstr "" -#: gnu/packages/audio.scm:3270 +#: gnu/packages/audio.scm:3290 msgid "" "@code{libebur128} is a C library that implements the EBU R 128 standard\n" "for loudness normalisation." msgstr "" -#: gnu/packages/audio.scm:3324 +#: gnu/packages/audio.scm:3344 msgid "" "TiMidity++ is a software synthesizer. It can play MIDI files by\n" "converting them into PCM waveform data; give it a MIDI data along with digital\n" @@ -663,33 +663,33 @@ msgid "" "disks as various audio file formats." msgstr "" -#: gnu/packages/audio.scm:3364 +#: gnu/packages/audio.scm:3384 msgid "" "Vamp is an audio processing plugin system for plugins that extract\n" "descriptive information from audio data — typically referred to as audio\n" "analysis plugins or audio feature extraction plugins." msgstr "" -#: gnu/packages/audio.scm:3408 +#: gnu/packages/audio.scm:3428 msgid "" "SBSMS (Subband Sinusoidal Modeling Synthesis) is software for time\n" "stretching and pitch scaling of audio. This package contains the library." msgstr "" -#: gnu/packages/audio.scm:3435 +#: gnu/packages/audio.scm:3455 msgid "" "@code{libkeyfinder} is a small C++11 library for estimating the musical\n" "key of digital audio." msgstr "" -#: gnu/packages/audio.scm:3465 +#: gnu/packages/audio.scm:3485 msgid "" "WavPack is an audio compression format with lossless, lossy and hybrid\n" "compression modes. This package contains command-line programs and library to\n" "encode and decode wavpack files." msgstr "" -#: gnu/packages/audio.scm:3486 +#: gnu/packages/audio.scm:3506 msgid "" "Libmodplug renders mod music files as raw audio data, for playing or\n" "conversion. mod, .s3m, .it, .xm, and a number of lesser-known formats are\n" @@ -697,21 +697,21 @@ msgid "" "surround and reverb." msgstr "" -#: gnu/packages/audio.scm:3507 +#: gnu/packages/audio.scm:3527 msgid "" "Libxmp is a library that renders module files to PCM data. It supports\n" "over 90 mainstream and obscure module formats including Protracker (MOD),\n" "Scream Tracker 3 (S3M), Fast Tracker II (XM), and Impulse Tracker (IT)." msgstr "" -#: gnu/packages/audio.scm:3531 +#: gnu/packages/audio.scm:3551 msgid "" "Xmp is a portable module player that plays over 90 mainstream and\n" "obscure module formats, including Protracker MOD, Fasttracker II XM, Scream\n" "Tracker 3 S3M and Impulse Tracker IT files." msgstr "" -#: gnu/packages/audio.scm:3556 +#: gnu/packages/audio.scm:3576 msgid "" "SoundTouch is an audio processing library for changing the tempo, pitch\n" "and playback rates of audio streams or audio files. It is intended for\n" @@ -719,7 +719,7 @@ msgid "" "control functionality, or just for playing around with the sound effects." msgstr "" -#: gnu/packages/audio.scm:3595 +#: gnu/packages/audio.scm:3615 msgid "" "SoX (Sound eXchange) is a command line utility that can convert\n" "various formats of computer audio files to other formats. It can also\n" @@ -727,60 +727,60 @@ msgid "" "can play and record audio files." msgstr "" -#: gnu/packages/audio.scm:3620 +#: gnu/packages/audio.scm:3640 msgid "" "The SoX Resampler library (libsoxr) performs one-dimensional sample-rate\n" "conversion. It may be used, for example, to resample PCM-encoded audio." msgstr "" -#: gnu/packages/audio.scm:3643 +#: gnu/packages/audio.scm:3663 msgid "" "TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder based on\n" "tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code and\n" "portions of LAME." msgstr "" -#: gnu/packages/audio.scm:3699 +#: gnu/packages/audio.scm:3719 msgid "" "PortAudio is a portable C/C++ audio I/O library providing a simple API\n" "to record and/or play sound using a callback function or a blocking read/write\n" "interface." msgstr "" -#: gnu/packages/audio.scm:3728 +#: gnu/packages/audio.scm:3748 msgid "" "Qsynth is a GUI front-end application for the FluidSynth SoundFont\n" "synthesizer written in C++." msgstr "" -#: gnu/packages/audio.scm:3767 +#: gnu/packages/audio.scm:3787 msgid "" "RSound allows you to send audio from an application and transfer it\n" "directly to a different computer on your LAN network. It is an audio daemon\n" "with a much different focus than most other audio daemons." msgstr "" -#: gnu/packages/audio.scm:3797 +#: gnu/packages/audio.scm:3817 msgid "" "XJackFreak is an audio analysis and equalizing tool for the Jack Audio\n" "Connection Kit. It can display the FFT of any input, modify it and output the\n" "result." msgstr "" -#: gnu/packages/audio.scm:3849 +#: gnu/packages/audio.scm:3869 msgid "" "Zita convolver is a C++ library providing a real-time convolution\n" "engine." msgstr "" -#: gnu/packages/audio.scm:3901 +#: gnu/packages/audio.scm:3921 msgid "" "Libzita-resampler is a C++ library for resampling audio signals. It is\n" "designed to be used within a real-time processing context, to be fast, and to\n" "provide high-quality sample rate conversion." msgstr "" -#: gnu/packages/audio.scm:3947 +#: gnu/packages/audio.scm:3967 msgid "" "Zita-alsa-pcmi is a C++ wrapper around the ALSA API. It provides easy\n" "access to ALSA PCM devices, taking care of the many functions required to\n" @@ -788,7 +788,7 @@ msgid "" "point audio data." msgstr "" -#: gnu/packages/audio.scm:3971 +#: gnu/packages/audio.scm:3991 msgid "" "Cuetools is a set of programs that are useful for manipulating\n" "and using CUE sheet (cue) files and Table of Contents (toc) files. CUE and TOC\n" @@ -796,14 +796,14 @@ msgid "" "machine-readable ASCII format." msgstr "" -#: gnu/packages/audio.scm:4000 +#: gnu/packages/audio.scm:4020 msgid "" "mp3guessenc is a command line utility that tries to detect the\n" "encoder used for an MPEG Layer III (MP3) file, as well as scan any MPEG audio\n" "file (any layer) and print a lot of useful information." msgstr "" -#: gnu/packages/audio.scm:4021 +#: gnu/packages/audio.scm:4041 msgid "" "shntool is a multi-purpose WAVE data processing and reporting\n" "utility. File formats are abstracted from its core, so it can process any file\n" @@ -812,46 +812,46 @@ msgid "" "use them split WAVE data into multiple files." msgstr "" -#: gnu/packages/audio.scm:4061 +#: gnu/packages/audio.scm:4081 msgid "" "Dcadec is a DTS Coherent Acoustics surround sound decoder\n" "with support for HD extensions." msgstr "" -#: gnu/packages/audio.scm:4098 +#: gnu/packages/audio.scm:4118 msgid "" "BS1770GAIN is a loudness scanner compliant with ITU-R BS.1770 and its\n" "flavors EBU R128, ATSC A/85, and ReplayGain 2.0. It helps normalizing the\n" "loudness of audio and video files to the same level." msgstr "" -#: gnu/packages/audio.scm:4130 +#: gnu/packages/audio.scm:4150 msgid "" "An easy to use audio filtering library made from webrtc\n" "code, used in @code{libtoxcore}." msgstr "" -#: gnu/packages/audio.scm:4183 +#: gnu/packages/audio.scm:4203 msgid "" "This C library provides an encoder and a decoder for the GSM\n" "06.10 RPE-LTP lossy speech compression algorithm." msgstr "" -#: gnu/packages/audio.scm:4206 +#: gnu/packages/audio.scm:4226 msgid "" "This package contains wrappers for accessing the ALSA API from Python.\n" "It is currently fairly complete for PCM devices, and has some support for\n" "mixers." msgstr "" -#: gnu/packages/audio.scm:4230 +#: gnu/packages/audio.scm:4250 msgid "" "This package provides an encoder for the LDAC\n" "high-resolution Bluetooth audio streaming codec for streaming at up to 990\n" "kbps at 24 bit/96 kHz." msgstr "" -#: gnu/packages/audio.scm:4274 +#: gnu/packages/audio.scm:4294 msgid "" "This project is a rebirth of a direct integration between\n" "Bluez and ALSA. Since Bluez >= 5, the built-in integration has been removed\n" @@ -864,14 +864,14 @@ msgid "" "on the ALSA software PCM plugin." msgstr "" -#: gnu/packages/audio.scm:4340 +#: gnu/packages/audio.scm:4360 msgid "" "Snd is a sound editor modelled loosely after Emacs. It can be\n" "customized and extended using either the s7 Scheme implementation (included in\n" "the Snd sources), Ruby, or Forth." msgstr "" -#: gnu/packages/audio.scm:4369 +#: gnu/packages/audio.scm:4389 msgid "" "Noise Repellent is an LV2 plugin to reduce noise. It has\n" "the following features:\n" @@ -891,31 +891,31 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/audio.scm:4436 +#: gnu/packages/audio.scm:4456 msgid "" "RNNoise is a library that uses deep learning to apply\n" "noise suppression to audio sources with voice presence. This package provides\n" "an LV2 audio plugin." msgstr "" -#: gnu/packages/audio.scm:4480 +#: gnu/packages/audio.scm:4500 msgid "" "@code{cli-visualizer} displays fast-Fourier\n" "transforms (FFTs) of the sound being played, as well as other graphical\n" "representations." msgstr "" -#: gnu/packages/audio.scm:4530 +#: gnu/packages/audio.scm:4550 msgid "" "C.A.V.A. is a bar audio spectrum visualizer for the terminal\n" "using ALSA, MPD, PulseAudio, or a FIFO buffer as its input." msgstr "" -#: gnu/packages/audio.scm:4564 +#: gnu/packages/audio.scm:4584 msgid "Fluid-3 is Frank Wen's pro-quality GM soundfont." msgstr "" -#: gnu/packages/audio.scm:4586 +#: gnu/packages/audio.scm:4606 msgid "" "FDK is a library for encoding and decoding Advanced Audio\n" "Coding (AAC) format audio, developed by Fraunhofer IIS, and included as part of\n" @@ -926,20 +926,20 @@ msgid "" " surround)." msgstr "" -#: gnu/packages/audio.scm:4626 +#: gnu/packages/audio.scm:4646 msgid "" "OpenShot Audio Library (libopenshot-audio) allows\n" "high-quality editing and playback of audio, and is based on the JUCE\n" "library." msgstr "" -#: gnu/packages/audio.scm:4652 +#: gnu/packages/audio.scm:4672 msgid "" "FAudio is an XAudio reimplementation that focuses solely on\n" "developing fully accurate DirectX Audio runtime libraries." msgstr "" -#: gnu/packages/audio.scm:4679 +#: gnu/packages/audio.scm:4699 msgid "" "Gnaural is a programmable auditory binaural beat synthesizer\n" "intended to be used for brainwave entrainment. Gnaural supports creation of\n" @@ -948,20 +948,20 @@ msgid "" "other Gnaural instances, allowing synchronous sessions between many users." msgstr "" -#: gnu/packages/audio.scm:4714 +#: gnu/packages/audio.scm:4734 msgid "" "DarkIce is a live audio streamer. It takes audio input from\n" "a sound card, encodes it into Ogg Vorbis and/or mp3, and sends the audio\n" "stream to one or more IceCast and/or ShoutCast servers." msgstr "" -#: gnu/packages/audio.scm:4738 +#: gnu/packages/audio.scm:4758 msgid "" "Libltc is a POSIX-C Library for handling\n" "@dfn{Linear/Longitudinal Time Code} (LTC) data." msgstr "" -#: gnu/packages/audio.scm:4772 +#: gnu/packages/audio.scm:4792 msgid "" "TTA performs lossless compression on multichannel 8,16 and 24 bits\n" "data of the Wav audio files. Being lossless means that no data-\n" @@ -972,14 +972,14 @@ msgid "" "supports both of ID3v1/v2 and APEv2 tags." msgstr "" -#: gnu/packages/audio.scm:4805 +#: gnu/packages/audio.scm:4825 msgid "" "@code{libsoundio} is a C library providing audio input and\n" "output. The API is suitable for real-time software such as digital audio\n" "workstations as well as consumer software such as music players." msgstr "" -#: gnu/packages/audio.scm:4831 +#: gnu/packages/audio.scm:4851 msgid "" "Redkite is a small GUI toolkit developed in C++17 and\n" "inspired from other well known GUI toolkits such as Qt and GTK. It is\n" @@ -988,7 +988,7 @@ msgid "" "as is the case with audio plugins." msgstr "" -#: gnu/packages/audio.scm:4903 +#: gnu/packages/audio.scm:4923 msgid "" "Carla is a modular audio plugin host, with features like\n" "transport control, automation of parameters via MIDI CC and remote control\n" @@ -997,7 +997,7 @@ msgid "" "default and preferred audio driver but also supports native drivers like ALSA." msgstr "" -#: gnu/packages/audio.scm:4939 +#: gnu/packages/audio.scm:4959 msgid "" "Ecasound is a software package designed for multitrack audio\n" "processing. It can be used for simple tasks like audio playback, recording and\n" @@ -1009,28 +1009,28 @@ msgid "" "in the package." msgstr "" -#: gnu/packages/audio.scm:4977 +#: gnu/packages/audio.scm:4997 msgid "" "libaudec is a wrapper library over ffmpeg, sndfile and\n" "libsamplerate for reading and resampling audio files, based on Robin Gareus'\n" "@code{audio_decoder} code." msgstr "" -#: gnu/packages/audio.scm:5007 +#: gnu/packages/audio.scm:5027 msgid "" "lv2lint is an LV2 lint-like tool that checks whether a\n" "given plugin and its UI(s) match up with the provided metadata and adhere\n" "to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5041 +#: gnu/packages/audio.scm:5061 msgid "" "lv2toweb allows the user to create an xhtml page with information\n" "about the given LV2 plugin, provided that the plugin and its UI(s) match up\n" "with the provided metadata and adhere to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5069 +#: gnu/packages/audio.scm:5089 msgid "" "ZToolkit (Ztk) is a cross-platform GUI toolkit heavily\n" "inspired by GTK. It handles events and low level drawing on behalf of\n" @@ -1040,7 +1040,7 @@ msgid "" "minimum." msgstr "" -#: gnu/packages/audio.scm:5102 +#: gnu/packages/audio.scm:5122 msgid "" "libInstPatch is a library for processing digital sample based MIDI\n" "instrument \"patch\" files. The types of files libInstPatch supports are used\n" @@ -1049,28 +1049,28 @@ msgid "" "edited, converted, compressed and saved." msgstr "" -#: gnu/packages/audio.scm:5149 +#: gnu/packages/audio.scm:5169 msgid "" "The LSP DSP library provides a set of functions that perform\n" "SIMD-optimized computing on several hardware architectures. All functions\n" "currently operate on IEEE-754 single-precision floating-point numbers." msgstr "" -#: gnu/packages/audio.scm:5180 +#: gnu/packages/audio.scm:5200 msgid "" "Codec 2 is a speech codec designed for communications quality speech\n" "between 700 and 3200 bit/s. The main application is low bandwidth HF/VHF\n" "digital radio." msgstr "" -#: gnu/packages/audio.scm:5206 +#: gnu/packages/audio.scm:5226 msgid "" "The mbelib library provides support for the 7200x4400 bit/s codec used\n" "in P25 Phase 1, the 7100x4400 bit/s codec used in ProVoice and the @emph{Half\n" "Rate} 3600x2250 bit/s vocoder used in various radio systems." msgstr "" -#: gnu/packages/audio.scm:5299 +#: gnu/packages/audio.scm:5319 msgid "" "Ableton Link is a C++ library that synchronizes musical beat, tempo, and phase\n" "across multiple applications running on one or more devices. Applications on devices\n" @@ -1079,20 +1079,20 @@ msgid "" "while still staying in time." msgstr "" -#: gnu/packages/audio.scm:5360 +#: gnu/packages/audio.scm:5380 msgid "" "Butt is a tool to stream audio to a ShoutCast or\n" "Icecast server." msgstr "" -#: gnu/packages/audio.scm:5406 +#: gnu/packages/audio.scm:5426 msgid "" "siggen is a set of tools for imitating a laboratory signal\n" "generator, generating audio signals out of Linux's /dev/dsp audio\n" "device. There is support for mono and/or stereo and 8 or 16 bit samples." msgstr "" -#: gnu/packages/audio.scm:5453 +#: gnu/packages/audio.scm:5473 msgid "" "@code{python-pysox} is a wrapper around the @command{sox}\n" "command line tool. The API offers @code{Transformer} and @code{Combiner}\n" @@ -1102,7 +1102,7 @@ msgid "" "and much more." msgstr "" -#: gnu/packages/audio.scm:5492 +#: gnu/packages/audio.scm:5512 msgid "" "@code{python-resampy} implements the band-limited sinc interpolation\n" "method for sampling rate conversion as described by Julius O. Smith at the\n" @@ -1110,34 +1110,34 @@ msgid "" "Home Page}." msgstr "" -#: gnu/packages/audio.scm:5528 +#: gnu/packages/audio.scm:5548 msgid "" "@code{librosa} is a python package for music and audio analysis. It\n" "provides the building blocks necessary to create music information retrieval\n" "systems." msgstr "" -#: gnu/packages/audio.scm:5561 +#: gnu/packages/audio.scm:5581 msgid "" "MDA-LV2 is an LV2 port of the MDA plugins. It includes effects and a few\n" "instrument plugins." msgstr "" -#: gnu/packages/audio.scm:5593 +#: gnu/packages/audio.scm:5613 msgid "" "The Odio SACD shared library is a decoding engine which takes a Super\n" "Audio CD source and extracts a 24-bit high resolution WAV file. It handles\n" "both DST and DSD streams." msgstr "" -#: gnu/packages/audio.scm:5618 +#: gnu/packages/audio.scm:5638 msgid "" "Odio SACD is a command-line application which takes a Super Audio CD\n" "source and extracts a 24-bit high resolution WAV file. It handles both DST\n" "and DSD streams." msgstr "" -#: gnu/packages/backup.scm:155 +#: gnu/packages/backup.scm:165 msgid "" "Duplicity backs up directories by producing encrypted tar-format volumes\n" "and uploading them to a remote or local file server. Because duplicity uses\n" @@ -1147,7 +1147,7 @@ msgid "" "spying and/or modification by the server." msgstr "" -#: gnu/packages/backup.scm:180 +#: gnu/packages/backup.scm:190 msgid "" "Par2cmdline uses Reed-Solomon error-correcting codes to\n" "generate and verify PAR2 recovery files. These files can be distributed\n" @@ -1159,7 +1159,7 @@ msgid "" "can even repair them." msgstr "" -#: gnu/packages/backup.scm:219 +#: gnu/packages/backup.scm:229 msgid "" "Hdup2 is a backup utility, its aim is to make backup really simple. The\n" "backup scheduling is done by means of a cron job. It supports an\n" @@ -1167,7 +1167,7 @@ msgid "" "backups (called chunks) to allow easy burning to CD/DVD." msgstr "" -#: gnu/packages/backup.scm:316 +#: gnu/packages/backup.scm:326 msgid "" "Libarchive provides a flexible interface for reading and writing\n" "archives in various formats such as tar and cpio. Libarchive also supports\n" @@ -1178,7 +1178,7 @@ msgid "" "random access nor for in-place modification." msgstr "" -#: gnu/packages/backup.scm:380 +#: gnu/packages/backup.scm:390 msgid "" "Rdup is a utility inspired by rsync and the plan9 way of doing backups.\n" "Rdup itself does not backup anything, it only print a list of absolute\n" @@ -1186,7 +1186,7 @@ msgid "" "list and implement the backup strategy." msgstr "" -#: gnu/packages/backup.scm:419 +#: gnu/packages/backup.scm:429 msgid "" "SnapRAID backs up files stored across multiple storage devices, such as\n" "disk arrays, in an efficient way reminiscent of its namesake @acronym{RAID,\n" @@ -1212,7 +1212,7 @@ msgid "" "remain fully idle, saving power and producing less noise." msgstr "" -#: gnu/packages/backup.scm:469 +#: gnu/packages/backup.scm:479 msgid "" "Btar is a tar-compatible archiver which allows arbitrary compression and\n" "ciphering, redundancy, differential backup, indexed extraction, multicore\n" @@ -1220,7 +1220,7 @@ msgid "" "errors." msgstr "" -#: gnu/packages/backup.scm:496 +#: gnu/packages/backup.scm:506 msgid "" "Rdiff-backup backs up one directory to another, possibly over a network.\n" "The target directory ends up a copy of the source directory, but extra reverse\n" @@ -1235,7 +1235,7 @@ msgid "" "rdiff-backup is easy to use and settings have sensible defaults." msgstr "" -#: gnu/packages/backup.scm:532 +#: gnu/packages/backup.scm:542 msgid "" "rsnapshot is a file system snapshot utility based on rsync.\n" "rsnapshot makes it easy to make periodic snapshots of local machines, and\n" @@ -1243,7 +1243,7 @@ msgid "" "rsnapshot uses hard links to deduplicate identical files." msgstr "" -#: gnu/packages/backup.scm:610 +#: gnu/packages/backup.scm:620 msgid "" "Libchop is a set of utilities and library for data backup and\n" "distributed storage. Its main application is @command{chop-backup}, an\n" @@ -1254,17 +1254,17 @@ msgid "" "detection, and lossless compression." msgstr "" -#: gnu/packages/backup.scm:740 +#: gnu/packages/backup.scm:750 msgid "" "Borg is a deduplicating backup program. Optionally, it\n" "supports compression and authenticated encryption. The main goal of Borg is to\n" "provide an efficient and secure way to backup data. The data deduplication\n" "technique used makes Borg suitable for daily backups since only changes are\n" -"stored. The authenticated encryption technique makes it suitable for backups\n" -"to not fully trusted targets. Borg is a fork of Attic." +"stored. The authenticated encryption technique makes it suitable for\n" +"storing backups on untrusted computers." msgstr "" -#: gnu/packages/backup.scm:771 +#: gnu/packages/backup.scm:781 msgid "" "wimlib is a C library and set of command-line utilities for\n" "creating, modifying, extracting, and mounting archives in the Windows Imaging\n" @@ -1272,14 +1272,14 @@ msgid "" "NTFS volumes using @code{ntfs-3g}, preserving NTFS-specific attributes." msgstr "" -#: gnu/packages/backup.scm:879 +#: gnu/packages/backup.scm:889 msgid "" "With dirvish you can maintain a set of complete images of your\n" "file systems with unattended creation and expiration. A dirvish backup vault\n" "is like a time machine for your data." msgstr "" -#: gnu/packages/backup.scm:974 +#: gnu/packages/backup.scm:984 msgid "" "Restic is a program that does backups right and was designed\n" "with the following principles in mind:\n" @@ -1311,7 +1311,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/backup.scm:1025 +#: gnu/packages/backup.scm:1035 msgid "" "ZBackup is a globally-deduplicating backup tool, based on the\n" "ideas found in Rsync. Feed a large @file{.tar} into it, and it will\n" @@ -1324,7 +1324,7 @@ msgid "" "is format-agnostic, so you can feed virtually any files to it." msgstr "" -#: gnu/packages/backup.scm:1061 +#: gnu/packages/backup.scm:1071 msgid "" "Dump examines files in a file system, determines which ones\n" "need to be backed up, and copies those files to a specified disk, tape or\n" @@ -1335,14 +1335,44 @@ msgid "" "interactive mode." msgstr "" -#: gnu/packages/backup.scm:1105 +#: gnu/packages/backup.scm:1131 +msgid "" +"Btrbk is a backup tool for Btrfs subvolumes, taking\n" +"advantage of Btrfs specific capabilities to create atomic snapshots and\n" +"transfer them incrementally to your backup locations. The source and target\n" +"locations are specified in a config file, which allows easily configuring\n" +"simple scenarios like e.g. a @i{laptop with locally attached backup disks}, as\n" +"well as more complex ones, e.g. a @i{server receiving backups from several\n" +"hosts via SSH, with different retention policy}. It has features such as:\n" +"@itemize\n" +"@item atomic snapshots\n" +"@item incremental backups\n" +"@item flexible retention policy\n" +"@item backups to multiple destinations\n" +"@item transfer via SSH\n" +"@item resume backups (for removable and mobile devices)\n" +"@item archive to offline storage\n" +"@item encrypted backups to non-btrfs storage\n" +"@item wildcard subvolumes (useful for Docker and LXC containers)\n" +"@item transaction log\n" +"@item comprehensive list and statistics output\n" +"@item resolve and trace Btrfs parent-child and received-from relationships\n" +"@item list file changes between backups\n" +"@item calculate accurate disk space usage based on block regions.\n" +"@end itemize\n" +"Btrbk is designed to run as a cron job for triggering periodic snapshots and\n" +"backups, as well as from the command line (e.g. for instantly creating\n" +"additional snapshots)." +msgstr "" + +#: gnu/packages/backup.scm:1194 msgid "" "Burp is a network backup and restore program. It attempts\n" "to reduce network traffic and the amount of space that is used by each\n" "backup." msgstr "" -#: gnu/packages/backup.scm:1136 +#: gnu/packages/backup.scm:1225 msgid "" "Disarchive can disassemble software archives into data\n" "and metadata. The goal is to create a small amount of metadata that\n" @@ -1352,7 +1382,7 @@ msgid "" "compression parameters used by Gzip." msgstr "" -#: gnu/packages/backup.scm:1181 +#: gnu/packages/backup.scm:1270 msgid "" "borgmatic is simple, configuration-driven backup software for servers\n" "and workstations. Protect your files with client-side encryption. Backup\n" @@ -1360,6 +1390,14 @@ msgid "" "borgmatic is powered by borg." msgstr "" +#: gnu/packages/backup.scm:1330 +msgid "" +"Vorta is a graphical backup client based on the Borg backup\n" +"tool. It supports the use of remote backup repositories. It can perform\n" +"scheduled backups, and has a graphical tool for browsing and extracting the Borg\n" +"archives." +msgstr "" + #: gnu/packages/base.scm:98 msgid "" "GNU Hello prints the message \"Hello, world!\" and then exits. It\n" @@ -1444,7 +1482,7 @@ msgid "" "change. GNU make offers many powerful extensions over the standard utility." msgstr "" -#: gnu/packages/base.scm:550 +#: gnu/packages/base.scm:558 msgid "" "GNU Binutils is a collection of tools for working with binary files.\n" "Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler.\n" @@ -1454,14 +1492,14 @@ msgid "" "included." msgstr "" -#: gnu/packages/base.scm:694 +#: gnu/packages/base.scm:685 msgid "" "The linker wrapper (or @code{ld-wrapper}) wraps the linker to add any\n" "missing @code{-rpath} flags, and to detect any misuse of libraries outside of\n" "the store." msgstr "" -#: gnu/packages/base.scm:930 +#: gnu/packages/base.scm:921 msgid "" "Any Unix-like operating system needs a C library: the library which\n" "defines the \"system calls\" and other basic facilities such as open, malloc,\n" @@ -1471,21 +1509,21 @@ msgid "" "with the Linux kernel." msgstr "" -#: gnu/packages/base.scm:1057 +#: gnu/packages/base.scm:1048 msgid "" "This package provides all the locales supported by the GNU C Library,\n" "more than 400 in total. To use them set the @code{LOCPATH} environment variable\n" "to the @code{share/locale} sub-directory of this package." msgstr "" -#: gnu/packages/base.scm:1206 +#: gnu/packages/base.scm:1198 msgid "" "The which program finds the location of executables in PATH, with a\n" "variety of options. It is an alternative to the shell \"type\" built-in\n" "command." msgstr "" -#: gnu/packages/base.scm:1329 +#: gnu/packages/base.scm:1321 msgid "" "The Time Zone Database (often called tz or zoneinfo)\n" "contains code and data that represent the history of local time for many\n" @@ -1494,14 +1532,14 @@ msgid "" "and daylight-saving rules." msgstr "" -#: gnu/packages/base.scm:1367 +#: gnu/packages/base.scm:1359 msgid "" "libiconv provides an implementation of the iconv function for systems\n" "that lack it. iconv is used to convert between character encodings in a\n" "program. It supports a wide variety of different encodings." msgstr "" -#: gnu/packages/bittorrent.scm:131 +#: gnu/packages/bittorrent.scm:135 msgid "" "Transmission is a BitTorrent client that comes with graphical,\n" "textual, and Web user interfaces. Transmission also has a daemon for\n" @@ -1509,54 +1547,54 @@ msgid "" "DHT, µTP, PEX and Magnet Links." msgstr "" -#: gnu/packages/bittorrent.scm:165 +#: gnu/packages/bittorrent.scm:169 msgid "" "transmission-remote-gtk is a GTK client for remote management\n" "of the Transmission BitTorrent client, using its HTTP RPC protocol." msgstr "" -#: gnu/packages/bittorrent.scm:187 +#: gnu/packages/bittorrent.scm:191 msgid "" "LibTorrent is a BitTorrent library used by and developed in parallel\n" "with the BitTorrent client rtorrent. It is written in C++ with emphasis on\n" "speed and efficiency." msgstr "" -#: gnu/packages/bittorrent.scm:215 +#: gnu/packages/bittorrent.scm:219 msgid "" "rTorrent is a BitTorrent client with an ncurses interface. It supports\n" "full encryption, DHT, PEX, and Magnet Links. It can also be controlled via\n" "XML-RPC over SCGI." msgstr "" -#: gnu/packages/bittorrent.scm:249 +#: gnu/packages/bittorrent.scm:253 msgid "" "Tremc is a console client, with a curses interface, for the\n" "Transmission BitTorrent daemon." msgstr "" -#: gnu/packages/bittorrent.scm:290 +#: gnu/packages/bittorrent.scm:294 msgid "" "Transmission-remote-cli is a console client, with a curses\n" "interface, for the Transmission BitTorrent daemon. This package is no longer\n" "maintained upstream." msgstr "" -#: gnu/packages/bittorrent.scm:340 +#: gnu/packages/bittorrent.scm:345 msgid "" "Aria2 is a lightweight, multi-protocol & multi-source command-line\n" "download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and Metalink.\n" "Aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces." msgstr "" -#: gnu/packages/bittorrent.scm:374 +#: gnu/packages/bittorrent.scm:381 msgid "" "uGet is portable download manager with GTK+ interface supporting\n" "HTTP, HTTPS, BitTorrent and Metalink, supporting multi-connection\n" "downloads, download scheduling, download rate limiting." msgstr "" -#: gnu/packages/bittorrent.scm:406 +#: gnu/packages/bittorrent.scm:413 msgid "" "mktorrent is a simple command-line utility to create BitTorrent\n" "@dfn{metainfo} files, often known simply as @dfn{torrents}, from both single\n" @@ -1566,14 +1604,14 @@ msgid "" "and will take advantage of multiple processor cores where possible." msgstr "" -#: gnu/packages/bittorrent.scm:457 +#: gnu/packages/bittorrent.scm:472 msgid "" "libtorrent-rasterbar is a feature-complete C++ BitTorrent implementation\n" "focusing on efficiency and scalability. It runs on embedded devices as well as\n" "desktops." msgstr "" -#: gnu/packages/bittorrent.scm:508 +#: gnu/packages/bittorrent.scm:523 msgid "" "qBittorrent is a BitTorrent client programmed in C++/Qt that uses\n" "libtorrent (sometimes called libtorrent-rasterbar) by Arvid Norberg.\n" @@ -1583,7 +1621,7 @@ msgid "" "features." msgstr "" -#: gnu/packages/bittorrent.scm:580 +#: gnu/packages/bittorrent.scm:604 msgid "" "Deluge contains the common features to BitTorrent clients such as\n" "Protocol Encryption, DHT, Local Peer Discovery (LSD), Peer Exchange\n" @@ -1895,7 +1933,16 @@ msgid "" "functionality in a C++ iostream." msgstr "" -#: gnu/packages/compression.scm:1443 +#: gnu/packages/compression.scm:1416 +msgid "" +"Zopfli Compression Algorithm is a compression library\n" +"programmed in C to perform very good, but slow, deflate or zlib compression.\n" +"ZopfliCompress supports the deflate, gzip and zlib output formats. This\n" +"library can only compress, not decompress; existing zlib or deflate libraries\n" +"can decompress the data." +msgstr "" + +#: gnu/packages/compression.scm:1469 msgid "" "ZPAQ is a command-line archiver for realistic situations with\n" "many duplicate and already compressed files. It backs up only those files\n" @@ -1909,13 +1956,13 @@ msgid "" "or junctions, and always follows hard links." msgstr "" -#: gnu/packages/compression.scm:1545 +#: gnu/packages/compression.scm:1571 msgid "" "@command{unshield} is a tool and library for extracting @file{.cab}\n" " archives from InstallShield installers." msgstr "" -#: gnu/packages/compression.scm:1624 +#: gnu/packages/compression.scm:1650 msgid "" "Zstandard (@command{zstd}) is a lossless compression algorithm\n" "that combines very fast operation with a compression ratio comparable to that of\n" @@ -1925,7 +1972,7 @@ msgid "" "speed." msgstr "" -#: gnu/packages/compression.scm:1672 +#: gnu/packages/compression.scm:1698 msgid "" "Parallel Zstandard (PZstandard or @command{pzstd}) is a\n" "multi-threaded implementation of the @uref{http://zstd.net/, Zstandard\n" @@ -1938,7 +1985,7 @@ msgid "" "the actual decompression, the other input and output." msgstr "" -#: gnu/packages/compression.scm:1712 +#: gnu/packages/compression.scm:1738 msgid "" "Zip is a compression and file packaging/archive utility. Zip is useful\n" "for packaging a set of files for distribution, for archiving files, and for\n" @@ -1953,7 +2000,7 @@ msgid "" "Compression ratios of 2:1 to 3:1 are common for text files." msgstr "" -#: gnu/packages/compression.scm:1801 +#: gnu/packages/compression.scm:1827 msgid "" "UnZip is an extraction utility for archives compressed in .zip format,\n" "also called \"zipfiles\".\n" @@ -1964,7 +2011,7 @@ msgid "" "recreates the stored directory structure by default." msgstr "" -#: gnu/packages/compression.scm:1853 +#: gnu/packages/compression.scm:1879 msgid "" "Ziptime helps make @file{.zip} archives reproducible by replacing\n" "timestamps in the file header with a fixed time (1 January 2008).\n" @@ -1973,11 +2020,11 @@ msgid "" "@command{zip} to prevent it from storing the ``universal time'' field." msgstr "" -#: gnu/packages/compression.scm:1880 +#: gnu/packages/compression.scm:1906 msgid "ZZipLib is a library based on zlib for accessing zip files." msgstr "" -#: gnu/packages/compression.scm:1904 +#: gnu/packages/compression.scm:1930 msgid "" "Libzip is a C library for reading, creating, and modifying\n" "zip archives. Files can be added from data buffers, files, or compressed data\n" @@ -1985,7 +2032,7 @@ msgid "" "archive can be reverted." msgstr "" -#: gnu/packages/compression.scm:1937 +#: gnu/packages/compression.scm:1963 msgid "" "The main command is @command{aunpack} which extracts files\n" "from an archive. The other commands provided are @command{apack} (to create\n" @@ -1995,7 +2042,7 @@ msgid "" "of archives." msgstr "" -#: gnu/packages/compression.scm:1963 +#: gnu/packages/compression.scm:1989 msgid "" "Lunzip is a decompressor for files in the lzip compression format (.lz),\n" "written as a single small C tool with no dependencies. This makes it\n" @@ -2005,7 +2052,7 @@ msgid "" "Lunzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:1990 +#: gnu/packages/compression.scm:2016 msgid "" "Clzip is a compressor and decompressor for files in the lzip compression\n" "format (.lz), written as a single small C tool with no dependencies. This makes\n" @@ -2014,7 +2061,7 @@ msgid "" "Clzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:2018 +#: gnu/packages/compression.scm:2044 msgid "" "Lzlib is a C library for in-memory LZMA compression and decompression in\n" "the lzip format. It supports integrity checking of the decompressed data, and\n" @@ -2022,7 +2069,7 @@ msgid "" "corrupted input." msgstr "" -#: gnu/packages/compression.scm:2042 +#: gnu/packages/compression.scm:2068 msgid "" "Plzip is a massively parallel (multi-threaded) lossless data compressor\n" "and decompressor that uses the lzip file format (.lz). Files produced by plzip\n" @@ -2036,13 +2083,13 @@ msgid "" "single-member files which can't be decompressed in parallel." msgstr "" -#: gnu/packages/compression.scm:2074 +#: gnu/packages/compression.scm:2100 msgid "" "innoextract allows extracting Inno Setup installers under\n" "non-Windows systems without running the actual installer using wine." msgstr "" -#: gnu/packages/compression.scm:2096 +#: gnu/packages/compression.scm:2122 msgid "" "ISA-L is a collection of optimized low-level functions\n" "targeting storage applications. ISA-L includes:\n" @@ -2060,7 +2107,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/compression.scm:2156 +#: gnu/packages/compression.scm:2182 msgid "" "This package provides the reference implementation of Brotli,\n" "a generic-purpose lossless compression algorithm that compresses data using a\n" @@ -2072,13 +2119,13 @@ msgid "" "The specification of the Brotli Compressed Data Format is defined in RFC 7932." msgstr "" -#: gnu/packages/compression.scm:2176 +#: gnu/packages/compression.scm:2202 msgid "" "This package provides a Python interface to the @code{brotli}\n" "package, an implementation of the Brotli lossless compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2200 +#: gnu/packages/compression.scm:2226 msgid "" "UCL implements a number of compression algorithms that\n" "achieve an excellent compression ratio while allowing fast decompression.\n" @@ -2088,7 +2135,7 @@ msgid "" "decompression is a little bit slower." msgstr "" -#: gnu/packages/compression.scm:2248 +#: gnu/packages/compression.scm:2274 msgid "" "The Ultimate Packer for eXecutables (UPX) is an executable file\n" "compressor. UPX typically reduces the file size of programs and shared\n" @@ -2096,7 +2143,7 @@ msgid "" "download times, and other distribution and storage costs." msgstr "" -#: gnu/packages/compression.scm:2276 +#: gnu/packages/compression.scm:2302 msgid "" "QuaZIP is a simple C++ wrapper over Gilles Vollant's\n" "ZIP/UNZIP package that can be used to access ZIP archives. It uses\n" @@ -2110,7 +2157,7 @@ msgid "" "reading from and writing to ZIP archives." msgstr "" -#: gnu/packages/compression.scm:2335 +#: gnu/packages/compression.scm:2361 msgid "" "The zchunk compressed file format allows splitting a file\n" "into independent chunks. This makes it possible to retrieve only changed\n" @@ -2133,7 +2180,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/compression.scm:2391 +#: gnu/packages/compression.scm:2417 msgid "" "Zutils is a collection of utilities able to process any combination of\n" "compressed and uncompressed files transparently. If any given file, including\n" @@ -2150,14 +2197,14 @@ msgid "" "at run time, and must be installed separately." msgstr "" -#: gnu/packages/compression.scm:2449 +#: gnu/packages/compression.scm:2475 msgid "" "This package provides a script to unpack self-extracting\n" "archives generated by @command{makeself} or @command{mojo} without running the\n" "possibly untrusted extraction shell script." msgstr "" -#: gnu/packages/compression.scm:2477 +#: gnu/packages/compression.scm:2503 msgid "" "(N)compress provides the original compress and uncompress\n" "programs that used to be the de facto UNIX standard for compressing and\n" @@ -2165,7 +2212,7 @@ msgid "" "file compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2504 +#: gnu/packages/compression.scm:2530 msgid "" "Xarchiver is a front-end to various command line archiving\n" "tools. It uses GTK+ tool-kit and is designed to be desktop-environment\n" @@ -2174,13 +2221,13 @@ msgid "" "archiver is not installed." msgstr "" -#: gnu/packages/compression.scm:2541 +#: gnu/packages/compression.scm:2567 msgid "" "Archive huge numbers of files, or split massive tar archives into smaller\n" "chunks." msgstr "" -#: gnu/packages/compression.scm:2574 +#: gnu/packages/compression.scm:2600 msgid "" "Blosc is a high performance compressor optimized for binary data. It has\n" "been designed to transmit data to the processor cache faster than the\n" @@ -2190,14 +2237,14 @@ msgid "" "computations." msgstr "" -#: gnu/packages/compression.scm:2612 +#: gnu/packages/compression.scm:2638 msgid "" "ECM is a utility that converts ECM files, i.e., CD data files\n" "with their error correction data losslessly rearranged for better compression,\n" "to their original, binary CD format." msgstr "" -#: gnu/packages/compression.scm:2642 +#: gnu/packages/compression.scm:2668 msgid "" "Libdeflate is a library for fast, whole-buffer DEFLATE-based\n" "compression and decompression. The supported formats are:\n" @@ -2209,7 +2256,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/compression.scm:2672 +#: gnu/packages/compression.scm:2698 msgid "" "Tarlz is a massively parallel (multi-threaded) combined implementation of\n" "the tar archiver and the lzip compressor. Tarlz creates, lists, and extracts\n" @@ -2220,7 +2267,7 @@ msgid "" "can append files to the end of such compressed archives." msgstr "" -#: gnu/packages/compression.scm:2706 +#: gnu/packages/compression.scm:2732 msgid "" "The Concise Binary Object Representation (CBOR) is a data format whose\n" "design goals include the possibility of extremely small code size, fairly\n" @@ -2229,17 +2276,17 @@ msgid "" "serializations such as ASN.1 and MessagePack." msgstr "" -#: gnu/packages/compression.scm:2739 +#: gnu/packages/compression.scm:2765 msgid "Fcrackzip is a Zip file password cracker." msgstr "" -#: gnu/packages/databases.scm:211 +#: gnu/packages/databases.scm:216 msgid "" "4store is a RDF/SPARQL store written in C, supporting\n" "either single machines or networked clusters." msgstr "" -#: gnu/packages/databases.scm:255 +#: gnu/packages/databases.scm:260 msgid "" "@code{pg_tmp} creates temporary PostgreSQL databases, suitable for tasks\n" "like running software test suites. Temporary databases created with\n" @@ -2248,14 +2295,14 @@ msgid "" "60)." msgstr "" -#: gnu/packages/databases.scm:281 +#: gnu/packages/databases.scm:286 msgid "" "This package provides a utility for dumping the contents of an\n" "ElasticSearch index to a compressed file and restoring the dumpfile back to an\n" "ElasticSearch server" msgstr "" -#: gnu/packages/databases.scm:433 +#: gnu/packages/databases.scm:438 msgid "" "Firebird is an SQL @acronym{RDBMS, relational database management system}\n" "with rich support for ANSI SQL (e.g., @code{INSERT...RETURNING}) including\n" @@ -2275,20 +2322,20 @@ msgid "" "database later." msgstr "" -#: gnu/packages/databases.scm:506 +#: gnu/packages/databases.scm:511 msgid "" "LevelDB is a fast key-value storage library that provides an ordered\n" "mapping from string keys to string values." msgstr "" -#: gnu/packages/databases.scm:526 +#: gnu/packages/databases.scm:531 msgid "" "Memcached is an in-memory key-value store. It has a small\n" "and generic API, and was originally intended for use with dynamic web\n" "applications." msgstr "" -#: gnu/packages/databases.scm:588 +#: gnu/packages/databases.scm:593 msgid "" "libMemcached is a library to use memcached in C/C++\n" "applications. It comes with a complete reference guide and documentation of\n" @@ -2302,51 +2349,71 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:625 +#: gnu/packages/databases.scm:630 msgid "" "@code{pylibmc} is a client in Python for memcached. It is a wrapper\n" "around TangentOrg’s libmemcached library, and can be used as a drop-in\n" "replacement for the code@{python-memcached} library." msgstr "" -#: gnu/packages/databases.scm:653 +#: gnu/packages/databases.scm:662 +msgid "This is a memcache client library for the Go programming language." +msgstr "" + +#: gnu/packages/databases.scm:685 +msgid "This package provides memcache client and server functionality." +msgstr "" + +#: gnu/packages/databases.scm:711 msgid "" "@code{litecli} is a command-line client for SQLite databases that has\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:685 +#: gnu/packages/databases.scm:732 +msgid "" +"This Python package provides an API to execute meta-commands (AKA\n" +"\"special\", or \"backslash commands\") on PostgreSQL." +msgstr "" + +#: gnu/packages/databases.scm:763 +msgid "" +"@code{pgcli} is a command line interface for PostgreSQL with\n" +"autocompletion and syntax highlighting." +msgstr "" + +#: gnu/packages/databases.scm:801 msgid "" "MyCLI is a command line interface for MySQL, MariaDB, and Percona with\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:782 +#: gnu/packages/databases.scm:898 msgid "" "MySQL is a fast, reliable, and easy to use relational database\n" "management system that supports the standardized Structured Query\n" "Language." msgstr "" -#: gnu/packages/databases.scm:1045 +#: gnu/packages/databases.scm:1161 msgid "" "MariaDB is a multi-user and multi-threaded SQL database server, designed\n" "as a drop-in replacement of MySQL." msgstr "" -#: gnu/packages/databases.scm:1070 +#: gnu/packages/databases.scm:1186 msgid "" "The MariaDB Connector/C is used to connect applications\n" "developed in C/C++ to MariaDB and MySQL databases." msgstr "" -#: gnu/packages/databases.scm:1093 +#: gnu/packages/databases.scm:1209 msgid "" "Galera is a wsrep-provider that is used with MariaDB for load-balancing\n" "and high-availability (HA)." msgstr "" -#: gnu/packages/databases.scm:1147 +#: gnu/packages/databases.scm:1263 msgid "" "PostgreSQL is a powerful object-relational database system. It is fully\n" "ACID compliant, has full support for foreign keys, joins, views, triggers, and\n" @@ -2356,19 +2423,27 @@ msgid "" "pictures, sounds, or video." msgstr "" -#: gnu/packages/databases.scm:1269 +#: gnu/packages/databases.scm:1395 +msgid "" +"TimescaleDB is an database designed to make SQL scalable for\n" +"time-series data. It is engineered up from PostgreSQL and packaged as a\n" +"PostgreSQL extension, providing automatic partitioning across time and space\n" +"(partitioning key), as well as full SQL support." +msgstr "" + +#: gnu/packages/databases.scm:1476 msgid "" "@code{pgloader} is a program that can load data or migrate databases from\n" "CSV, DB3, iXF, SQLite, MS-SQL or MySQL to PostgreSQL." msgstr "" -#: gnu/packages/databases.scm:1293 +#: gnu/packages/databases.scm:1500 msgid "" "PyMySQL is a pure-Python MySQL client library, based on PEP 249.\n" "Most public APIs are compatible with @command{mysqlclient} and MySQLdb." msgstr "" -#: gnu/packages/databases.scm:1320 +#: gnu/packages/databases.scm:1527 msgid "" "QDBM is a library of routines for managing a\n" "database. The database is a simple data file containing key-value\n" @@ -2378,7 +2453,7 @@ msgid "" "organized in a hash table or B+ tree." msgstr "" -#: gnu/packages/databases.scm:1357 +#: gnu/packages/databases.scm:1564 msgid "" "GNU Recutils is a set of tools and libraries for creating and\n" "manipulating text-based, human-editable databases. Despite being text-based,\n" @@ -2387,7 +2462,7 @@ msgid "" "types are supported, as is encryption." msgstr "" -#: gnu/packages/databases.scm:1389 +#: gnu/packages/databases.scm:1596 msgid "" "This package provides an Emacs major mode @code{rec-mode}\n" "for working with GNU Recutils text-based, human-editable databases. It\n" @@ -2395,7 +2470,7 @@ msgid "" "including field and record folding." msgstr "" -#: gnu/packages/databases.scm:1457 +#: gnu/packages/databases.scm:1664 msgid "" "RocksDB is a library that forms the core building block for a fast\n" "key-value server, especially suited for storing data on flash drives. It\n" @@ -2406,7 +2481,7 @@ msgid "" "data in a single database. RocksDB is partially based on @code{LevelDB}." msgstr "" -#: gnu/packages/databases.scm:1515 +#: gnu/packages/databases.scm:1722 msgid "" "Sparql-query is a command-line tool for accessing SPARQL\n" "endpoints over HTTP. It has been intentionally designed to @code{feel} similar to\n" @@ -2417,13 +2492,13 @@ msgid "" "for example from a shell script." msgstr "" -#: gnu/packages/databases.scm:1608 +#: gnu/packages/databases.scm:1815 msgid "" "Sqitch is a standalone change management system for database schemas,\n" "which uses SQL to describe changes." msgstr "" -#: gnu/packages/databases.scm:1635 +#: gnu/packages/databases.scm:1842 msgid "" "SQLcrush lets you view and edit a database directly from the text\n" "console through an ncurses interface. You can explore each table's structure,\n" @@ -2431,7 +2506,7 @@ msgid "" "changes." msgstr "" -#: gnu/packages/databases.scm:1673 +#: gnu/packages/databases.scm:1880 msgid "" "TDB is a Trivial Database. In concept, it is very much like GDBM,\n" "and BSD's DB except that it allows multiple simultaneous writers and uses\n" @@ -2439,11 +2514,11 @@ msgid "" "extremely small." msgstr "" -#: gnu/packages/databases.scm:1693 +#: gnu/packages/databases.scm:1900 msgid "This package provides an database interface for Perl." msgstr "" -#: gnu/packages/databases.scm:1741 +#: gnu/packages/databases.scm:1948 msgid "" "An SQL to OO mapper with an object API inspired by\n" "Class::DBI (with a compatibility layer as a springboard for porting) and a\n" @@ -2455,13 +2530,13 @@ msgid "" "\"ORDER BY\" and \"HAVING\" support." msgstr "" -#: gnu/packages/databases.scm:1770 +#: gnu/packages/databases.scm:1977 msgid "" "DBIx::Class::Cursor::Cached provides a cursor class with\n" "built-in caching support." msgstr "" -#: gnu/packages/databases.scm:1793 +#: gnu/packages/databases.scm:2000 msgid "" "Because the many-to-many relationships are not real\n" "relationships, they can not be introspected with DBIx::Class. Many-to-many\n" @@ -2471,26 +2546,26 @@ msgid "" "introspected and examined." msgstr "" -#: gnu/packages/databases.scm:1852 +#: gnu/packages/databases.scm:2059 msgid "" "DBIx::Class::Schema::Loader automates the definition of a\n" "DBIx::Class::Schema by scanning database table definitions and setting up the\n" "columns, primary keys, unique constraints and relationships." msgstr "" -#: gnu/packages/databases.scm:1876 +#: gnu/packages/databases.scm:2083 msgid "" "This package provides a PostgreSQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." msgstr "" -#: gnu/packages/databases.scm:1914 +#: gnu/packages/databases.scm:2121 msgid "" "This package provides a MySQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." msgstr "" -#: gnu/packages/databases.scm:1934 +#: gnu/packages/databases.scm:2141 msgid "" "DBD::SQLite is a Perl DBI driver for SQLite, that includes\n" "the entire thing in the distribution. So in order to get a fast transaction\n" @@ -2498,14 +2573,14 @@ msgid "" "module, and nothing else." msgstr "" -#: gnu/packages/databases.scm:1959 +#: gnu/packages/databases.scm:2166 msgid "" "@code{MySQL::Config} emulates the @code{load_defaults} function from\n" "libmysqlclient. It will fill an array with long options, ready to be parsed by\n" "@code{Getopt::Long}." msgstr "" -#: gnu/packages/databases.scm:1983 +#: gnu/packages/databases.scm:2190 msgid "" "This module was inspired by the excellent DBIx::Abstract.\n" "While based on the concepts used by DBIx::Abstract, the concepts used have\n" @@ -2515,7 +2590,7 @@ msgid "" "time your data changes." msgstr "" -#: gnu/packages/databases.scm:2010 +#: gnu/packages/databases.scm:2217 msgid "" "This module is nearly identical to @code{SQL::Abstract} 1.81, and exists\n" "to preserve the ability of users to opt into the new way of doing things in\n" @@ -2531,34 +2606,34 @@ msgid "" "your data changes, as this module figures it out." msgstr "" -#: gnu/packages/databases.scm:2043 +#: gnu/packages/databases.scm:2250 msgid "" "This module tries to split any SQL code, even including\n" "non-standard extensions, into the atomic statements it is composed of." msgstr "" -#: gnu/packages/databases.scm:2062 +#: gnu/packages/databases.scm:2269 msgid "" "SQL::Tokenizer is a tokenizer for SQL queries. It does not\n" "claim to be a parser or query verifier. It just creates sane tokens from a\n" "valid SQL query." msgstr "" -#: gnu/packages/databases.scm:2081 +#: gnu/packages/databases.scm:2288 msgid "" "Unixodbc is a library providing an API with which to access\n" "data sources. Data sources include SQL Servers and any software with an ODBC\n" "Driver." msgstr "" -#: gnu/packages/databases.scm:2113 +#: gnu/packages/databases.scm:2320 msgid "" "The goal for nanodbc is to make developers happy by providing\n" "a simpler and less verbose API for working with ODBC. Common tasks should be\n" "easy, requiring concise and simple code." msgstr "" -#: gnu/packages/databases.scm:2174 +#: gnu/packages/databases.scm:2381 msgid "" "UnQLite is an in-process software library which implements a\n" "self-contained, serverless, zero-configuration, transactional NoSQL\n" @@ -2567,27 +2642,35 @@ msgid "" "similar to BerkeleyDB, LevelDB, etc." msgstr "" -#: gnu/packages/databases.scm:2225 +#: gnu/packages/databases.scm:2432 msgid "" "Redis is an advanced key-value cache and store. Redis\n" "supports many data structures including strings, hashes, lists, sets, sorted\n" "sets, bitmaps and hyperloglogs." msgstr "" -#: gnu/packages/databases.scm:2247 +#: gnu/packages/databases.scm:2454 msgid "" "This package provides a Ruby client that tries to match Redis' API\n" "one-to-one, while still providing an idiomatic interface." msgstr "" -#: gnu/packages/databases.scm:2275 +#: gnu/packages/databases.scm:2479 +msgid "Package rdb implements parsing and encoding of the Redis RDB file format." +msgstr "" + +#: gnu/packages/databases.scm:2505 +msgid "Redigo is a Go client for the Redis database." +msgstr "" + +#: gnu/packages/databases.scm:2531 msgid "" "Kyoto Cabinet is a standalone file-based database that supports Hash\n" "and B+ Tree data storage models. It is a fast key-value lightweight\n" "database and supports many programming languages. It is a NoSQL database." msgstr "" -#: gnu/packages/databases.scm:2303 +#: gnu/packages/databases.scm:2559 msgid "" "Tokyo Cabinet is a library of routines for managing a database.\n" "The database is a simple data file containing records, each is a pair of a\n" @@ -2597,7 +2680,7 @@ msgid "" "organized in hash table, B+ tree, or fixed-length array." msgstr "" -#: gnu/packages/databases.scm:2339 +#: gnu/packages/databases.scm:2595 msgid "" "WiredTiger is an extensible platform for data management. It supports\n" "row-oriented storage (where all columns of a row are stored together),\n" @@ -2606,17 +2689,17 @@ msgid "" "trees (LSM), for sustained throughput under random insert workloads." msgstr "" -#: gnu/packages/databases.scm:2389 +#: gnu/packages/databases.scm:2645 msgid "" "This package provides Guile bindings to the WiredTiger ``NoSQL''\n" "database." msgstr "" -#: gnu/packages/databases.scm:2419 +#: gnu/packages/databases.scm:2675 msgid "The DB::File module provides Perl bindings to the Berkeley DB version 1.x." msgstr "" -#: gnu/packages/databases.scm:2467 +#: gnu/packages/databases.scm:2723 msgid "" "The @dfn{Lightning Memory-Mapped Database} (LMDB) is a high-performance\n" "transactional database. Unlike more complex relational databases, LMDB handles\n" @@ -2629,7 +2712,7 @@ msgid "" "virtual address space — not physical RAM." msgstr "" -#: gnu/packages/databases.scm:2501 +#: gnu/packages/databases.scm:2757 msgid "" "@code{lmdbxx} is a comprehensive @code{C++} wrapper for the\n" "@code{LMDB} embedded database library, offering both an error-checked\n" @@ -2637,14 +2720,22 @@ msgid "" "semantics." msgstr "" -#: gnu/packages/databases.scm:2535 +#: gnu/packages/databases.scm:2791 msgid "" "Libpqxx is a C++ library to enable user programs to communicate with the\n" "PostgreSQL database back-end. The database back-end can be local or it may be\n" "on another machine, accessed via TCP/IP." msgstr "" -#: gnu/packages/databases.scm:2561 +#: gnu/packages/databases.scm:2819 +msgid "" +"Bolt is a pure Go key/value store inspired by Howard Chu's\n" +"LMDB project. The goal of the project is to provide a simple, fast, and\n" +"reliable database for projects that don't require a full database server such as\n" +"Postgres or MySQL." +msgstr "" + +#: gnu/packages/databases.scm:2845 msgid "" "Peewee is a simple and small ORM (object-relation mapping) tool. Peewee\n" "handles converting between pythonic values and those used by databases, so you\n" @@ -2653,20 +2744,20 @@ msgid "" "can autogenerate peewee models using @code{pwiz}, a model generator." msgstr "" -#: gnu/packages/databases.scm:2584 +#: gnu/packages/databases.scm:2868 msgid "" "Pypika-tortoise is a fork of pypika which has been\n" "streamlined for its use in the context of tortoise-orm. It removes support\n" "for many database kinds that tortoise-orm doesn't need, for example." msgstr "" -#: gnu/packages/databases.scm:2604 +#: gnu/packages/databases.scm:2888 msgid "" "This package is a Sphinx extension providing additional\n" "coroutine-specific markup." msgstr "" -#: gnu/packages/databases.scm:2632 +#: gnu/packages/databases.scm:2916 msgid "" "@code{asyncpg} is a database interface library designed\n" "specifically for PostgreSQL and Python/asyncio. @code{asyncpg} is an\n" @@ -2674,14 +2765,14 @@ msgid "" "with Python's asyncio framework." msgstr "" -#: gnu/packages/databases.scm:2652 +#: gnu/packages/databases.scm:2936 msgid "" "@code{asyncmy} is a fast @code{asyncio} MySQL driver, which\n" "reuses most of @code{pymysql} and @code{aiomysql} but rewrites the core\n" "protocol with Cython for performance." msgstr "" -#: gnu/packages/databases.scm:2672 +#: gnu/packages/databases.scm:2956 msgid "" "@code{aiomysql} is a driver for accessing a MySQL database\n" "from the @code{asyncio} Python framework. It depends on and reuses most parts\n" @@ -2689,7 +2780,7 @@ msgid "" "@code{aiopg} library." msgstr "" -#: gnu/packages/databases.scm:2705 +#: gnu/packages/databases.scm:2989 msgid "" "Tortoise ORM is an easy-to-use asyncio ORM (Object\n" "Relational Mapper) inspired by Django. Tortoise ORM was built with relations\n" @@ -2698,7 +2789,7 @@ msgid "" "with relational data." msgstr "" -#: gnu/packages/databases.scm:2749 +#: gnu/packages/databases.scm:3033 msgid "" "SQLCipher is an implementation of SQLite, extended to\n" "provide transparent 256-bit AES encryption of database files. Pages are\n" @@ -2707,19 +2798,19 @@ msgid "" "development." msgstr "" -#: gnu/packages/databases.scm:2782 +#: gnu/packages/databases.scm:3066 msgid "" "@code{python-pyodbc-c} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2807 +#: gnu/packages/databases.scm:3091 msgid "" "@code{python-pyodbc} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2840 +#: gnu/packages/databases.scm:3124 msgid "" "MDB Tools is a set of tools and applications to read the\n" "proprietary MDB file format used in Microsoft's Access database package. This\n" @@ -2728,39 +2819,43 @@ msgid "" "etc., and an SQL engine for performing simple SQL queries." msgstr "" -#: gnu/packages/databases.scm:2886 +#: gnu/packages/databases.scm:3153 +msgid "This package provides a MongoDB driver for Go." +msgstr "" + +#: gnu/packages/databases.scm:3194 msgid "" "python-lmdb or py-lmdb is a Python binding for the @dfn{Lightning\n" "Memory-Mapped Database} (LMDB), a high-performance key-value store." msgstr "" -#: gnu/packages/databases.scm:2925 +#: gnu/packages/databases.scm:3233 msgid "" "Orator provides a simple ActiveRecord-like Object Relational Mapping\n" "implementation for Python." msgstr "" -#: gnu/packages/databases.scm:2963 +#: gnu/packages/databases.scm:3271 msgid "" "Virtuoso is a scalable cross-platform server that combines\n" "relational, graph, and document data management with web application server\n" "and web services platform functionality." msgstr "" -#: gnu/packages/databases.scm:2990 +#: gnu/packages/databases.scm:3298 msgid "" "Cassandra Cluster Manager is a development tool for testing\n" "local Cassandra clusters. It creates, launches and removes Cassandra clusters\n" "on localhost." msgstr "" -#: gnu/packages/databases.scm:3018 +#: gnu/packages/databases.scm:3326 msgid "" "Pysqlite provides SQLite bindings for Python that comply to the\n" "Database API 2.0T." msgstr "" -#: gnu/packages/databases.scm:3048 +#: gnu/packages/databases.scm:3356 msgid "" "SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that\n" "gives application developers the full power and flexibility of SQL. It\n" @@ -2769,14 +2864,14 @@ msgid "" "simple and Pythonic domain language." msgstr "" -#: gnu/packages/databases.scm:3086 +#: gnu/packages/databases.scm:3382 msgid "" "This package contains type stubs and a mypy plugin to\n" "provide more precise static types and type inference for SQLAlchemy\n" "framework." msgstr "" -#: gnu/packages/databases.scm:3118 +#: gnu/packages/databases.scm:3414 msgid "" "SQLAlchemy-utils provides various utility functions and custom data types\n" "for SQLAlchemy. SQLAlchemy is an SQL database abstraction library for Python.\n" @@ -2793,7 +2888,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/databases.scm:3165 +#: gnu/packages/databases.scm:3461 msgid "" "This package provides mock helpers for SQLAlchemy that makes it easy\n" "to mock an SQLAlchemy session while preserving the ability to do asserts.\n" @@ -2803,13 +2898,13 @@ msgid "" "this library provides functions to facilitate such comparisons." msgstr "" -#: gnu/packages/databases.scm:3196 +#: gnu/packages/databases.scm:3492 msgid "" "Alembic is a lightweight database migration tool for usage with the\n" "SQLAlchemy Database Toolkit for Python." msgstr "" -#: gnu/packages/databases.scm:3221 +#: gnu/packages/databases.scm:3517 msgid "" "PickleShare is a small ‘shelve’-like datastore with concurrency support.\n" "Like shelve, a PickleShareDB object acts like a normal dictionary. Unlike\n" @@ -2820,7 +2915,7 @@ msgid "" "PickleShare." msgstr "" -#: gnu/packages/databases.scm:3275 +#: gnu/packages/databases.scm:3571 msgid "" "APSW is a Python wrapper for the SQLite\n" "embedded relational database engine. In contrast to other wrappers such as\n" @@ -2828,21 +2923,21 @@ msgid "" "translate the complete SQLite API into Python." msgstr "" -#: gnu/packages/databases.scm:3312 +#: gnu/packages/databases.scm:3608 msgid "" "The package aiosqlite replicates the standard sqlite3 module, but with\n" "async versions of all the standard connection and cursor methods, and context\n" "managers for automatically closing connections." msgstr "" -#: gnu/packages/databases.scm:3333 +#: gnu/packages/databases.scm:3629 msgid "" "This package provides the Neo4j Python driver that connects\n" "to the database using Neo4j's binary protocol. It aims to be minimal, while\n" "being idiomatic to Python." msgstr "" -#: gnu/packages/databases.scm:3353 +#: gnu/packages/databases.scm:3649 msgid "" "This package provides a client library and toolkit for\n" "working with Neo4j from within Python applications and from the command\n" @@ -2850,26 +2945,38 @@ msgid "" "designed to be easy and intuitive to use." msgstr "" -#: gnu/packages/databases.scm:3379 +#: gnu/packages/databases.scm:3675 msgid "" "psycopg2 is a thread-safe PostgreSQL adapter that implements DB-API\n" "2.0." msgstr "" -#: gnu/packages/databases.scm:3413 +#: gnu/packages/databases.scm:3702 +msgid "" +"This module provides connection pool implementations that can be used\n" +"with the @code{psycopg} PostgreSQL driver." +msgstr "" + +#: gnu/packages/databases.scm:3776 +msgid "" +"Psycopg 3 is a new implementation of the popular @code{psycopg2}\n" +"database adapter for Python." +msgstr "" + +#: gnu/packages/databases.scm:3810 msgid "" "This package provides a program to build Entity\n" "Relationship diagrams from a SQLAlchemy model (or directly from the\n" "database)." msgstr "" -#: gnu/packages/databases.scm:3443 +#: gnu/packages/databases.scm:3840 msgid "" "Yoyo is a database schema migration tool. Migrations are written as SQL\n" "files or Python scripts that define a list of migration steps." msgstr "" -#: gnu/packages/databases.scm:3464 +#: gnu/packages/databases.scm:3861 msgid "" "MySQLdb is an interface to the popular MySQL database server\n" "for Python. The design goals are:\n" @@ -2880,13 +2987,13 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/databases.scm:3490 +#: gnu/packages/databases.scm:3887 msgid "" "Python-hiredis is a python extension that wraps protocol\n" "parsing code in hiredis. It primarily speeds up parsing of multi bulk replies." msgstr "" -#: gnu/packages/databases.scm:3517 +#: gnu/packages/databases.scm:3914 msgid "" "Fakeredis is a pure-Python implementation of the redis-py Python client\n" "that simulates talking to a redis server. It was created for a single purpose:\n" @@ -2897,49 +3004,49 @@ msgid "" "reasonable substitute." msgstr "" -#: gnu/packages/databases.scm:3545 +#: gnu/packages/databases.scm:3942 msgid "This package provides a Python interface to the Redis key-value store." msgstr "" -#: gnu/packages/databases.scm:3586 +#: gnu/packages/databases.scm:3983 msgid "" "RQ (Redis Queue) is a simple Python library for queueing jobs and\n" "processing them in the background with workers. It is backed by Redis and it\n" "is designed to have a low barrier to entry." msgstr "" -#: gnu/packages/databases.scm:3623 +#: gnu/packages/databases.scm:4020 msgid "" "This package provides job scheduling capabilities to @code{python-rq}\n" "(Redis Queue)." msgstr "" -#: gnu/packages/databases.scm:3643 +#: gnu/packages/databases.scm:4040 msgid "" "@code{trollius-redis} is a Redis client for Python\n" " trollius. It is an asynchronous IO (PEP 3156) implementation of the\n" " Redis protocol." msgstr "" -#: gnu/packages/databases.scm:3686 +#: gnu/packages/databases.scm:4083 msgid "" "Sqlparse is a non-validating SQL parser for Python. It\n" "provides support for parsing, splitting and formatting SQL statements." msgstr "" -#: gnu/packages/databases.scm:3703 +#: gnu/packages/databases.scm:4101 msgid "" "@code{python-sql} is a library to write SQL queries, that\n" "transforms idiomatic python function calls to well-formed SQL queries." msgstr "" -#: gnu/packages/databases.scm:3726 +#: gnu/packages/databases.scm:4124 msgid "" "PyPika is a python SQL query builder that exposes the full richness of\n" "the SQL language using a syntax that reflects the resulting query." msgstr "" -#: gnu/packages/databases.scm:3852 +#: gnu/packages/databases.scm:4250 msgid "" "Apache Arrow is a columnar in-memory analytics layer\n" "designed to accelerate big data. It houses a set of canonical in-memory\n" @@ -2948,21 +3055,21 @@ msgid "" "algorithm implementations." msgstr "" -#: gnu/packages/databases.scm:3912 +#: gnu/packages/databases.scm:4310 msgid "" "This library provides a Pythonic API wrapper for the reference Arrow C++\n" "implementation, along with tools for interoperability with pandas, NumPy, and\n" "other traditional Python scientific computing packages." msgstr "" -#: gnu/packages/databases.scm:3933 +#: gnu/packages/databases.scm:4331 msgid "" "This package provides a Python client library for CrateDB.\n" "It implements the Python DB API 2.0 specification and includes support for\n" "SQLAlchemy." msgstr "" -#: gnu/packages/databases.scm:3952 +#: gnu/packages/databases.scm:4350 msgid "" "This library implements a database independent abstraction layer in C,\n" "similar to the DBI/DBD layer in Perl. Writing one generic set of code,\n" @@ -2970,7 +3077,7 @@ msgid "" "simultaneous database connections by using this framework." msgstr "" -#: gnu/packages/databases.scm:4018 +#: gnu/packages/databases.scm:4416 msgid "" "The @code{libdbi-drivers} library provides the database specific drivers\n" "for the @code{libdbi} framework.\n" @@ -2983,26 +3090,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:4060 +#: gnu/packages/databases.scm:4458 msgid "" "SOCI is an abstraction layer for several database backends, including\n" "PostreSQL, SQLite, ODBC and MySQL." msgstr "" -#: gnu/packages/databases.scm:4084 +#: gnu/packages/databases.scm:4482 msgid "" "FreeTDS is an implementation of the Tabular DataStream protocol, used for\n" "connecting to MS SQL and Sybase servers over TCP/IP." msgstr "" -#: gnu/packages/databases.scm:4106 +#: gnu/packages/databases.scm:4504 msgid "" "TinyDB is a small document oriented database written in pure Python\n" "with no external dependencies. The targets are small apps that would\n" "be blown away by a SQL-DB or an external database server." msgstr "" -#: gnu/packages/databases.scm:4154 +#: gnu/packages/databases.scm:4552 msgid "" "Sequeler is a native Linux SQL client built in Vala and\n" "Gtk. It allows you to connect to your local and remote databases, write SQL in\n" @@ -3010,7 +3117,13 @@ msgid "" "a Gtk.Grid Widget." msgstr "" -#: gnu/packages/debug.scm:111 +#: gnu/packages/databases.scm:4594 +msgid "" +"Sqlitebrowser is a high quaility, visual, open source tool to\n" +"create design, and edit database file compatible with SQLite." +msgstr "" + +#: gnu/packages/debug.scm:112 msgid "" "Delta assists you in minimizing \"interesting\" files subject to a test\n" "of their interestingness. A common such situation is when attempting to\n" @@ -3018,7 +3131,7 @@ msgid "" "program to exhibit a bug." msgstr "" -#: gnu/packages/debug.scm:172 +#: gnu/packages/debug.scm:173 msgid "" "C-Reduce is a tool that takes a large C or C++ program that has a\n" "property of interest (such as triggering a compiler bug) and automatically\n" @@ -3027,14 +3140,14 @@ msgid "" "tools that process C/C++ code." msgstr "" -#: gnu/packages/debug.scm:219 +#: gnu/packages/debug.scm:220 msgid "" "C-Vise is a Python port of the C-Reduce tool that is fully compatible\n" "and uses the same efficient LLVM-based C/C++ @code{clang_delta} reduction\n" "tool." msgstr "" -#: gnu/packages/debug.scm:289 +#: gnu/packages/debug.scm:290 msgid "" "American fuzzy lop is a security-oriented fuzzer that employs a novel\n" "type of compile-time instrumentation and genetic algorithms to automatically\n" @@ -3045,7 +3158,7 @@ msgid "" "down the road." msgstr "" -#: gnu/packages/debug.scm:433 +#: gnu/packages/debug.scm:434 msgid "" "QEMU is a generic machine emulator and virtualizer. This package\n" "of QEMU is used only by the american fuzzy lop package.\n" @@ -3061,7 +3174,7 @@ msgid "" "server and embedded PowerPC, and S390 guests." msgstr "" -#: gnu/packages/debug.scm:501 +#: gnu/packages/debug.scm:502 msgid "" "Stress Make is a customized GNU Make that explicitly manages the order\n" "in which concurrent jobs are run to provoke erroneous behavior into becoming\n" @@ -3071,14 +3184,14 @@ msgid "" "conditions." msgstr "" -#: gnu/packages/debug.scm:529 +#: gnu/packages/debug.scm:530 msgid "" "Zzuf is a transparent application input fuzzer. It works by\n" "intercepting file operations and changing random bits in the program's\n" "input. Zzuf's behaviour is deterministic, making it easy to reproduce bugs." msgstr "" -#: gnu/packages/debug.scm:581 +#: gnu/packages/debug.scm:582 msgid "" "Scanmem is a debugging utility designed to isolate the\n" "address of an arbitrary variable in an executing process. Scanmem simply\n" @@ -3087,13 +3200,13 @@ msgid "" "the position of the variable and allows you to modify its value." msgstr "" -#: gnu/packages/debug.scm:611 +#: gnu/packages/debug.scm:612 msgid "" "Remake is an enhanced version of GNU Make that adds improved\n" "error reporting, better tracing, profiling, and a debugger." msgstr "" -#: gnu/packages/debug.scm:667 +#: gnu/packages/debug.scm:668 msgid "" "rr is a lightweight tool for recording, replaying and debugging\n" "execution of applications (trees of processes and threads). Debugging extends\n" @@ -3102,13 +3215,13 @@ msgid "" "fun." msgstr "" -#: gnu/packages/debug.scm:695 +#: gnu/packages/debug.scm:696 msgid "" "The @code{libbacktrace} library can be linked into a C/C++\n" "program to produce symbolic backtraces." msgstr "" -#: gnu/packages/debug.scm:735 +#: gnu/packages/debug.scm:736 msgid "" "The libleak tool detects memory leaks by hooking memory\n" "functions such as @code{malloc}. It comes as a shared object to be pre-loaded\n" @@ -3120,7 +3233,7 @@ msgid "" "use than similar tools like @command{mtrace}." msgstr "" -#: gnu/packages/debug.scm:763 +#: gnu/packages/debug.scm:764 msgid "" "@code{cgdb} is a lightweight curses (terminal-based) interface to the\n" "GNU Debugger (GDB). In addition to the standard gdb console, cgdb provides\n" @@ -3129,7 +3242,7 @@ msgid "" "using cgdb." msgstr "" -#: gnu/packages/debug.scm:798 +#: gnu/packages/debug.scm:799 msgid "" "MspDebug supports FET430UIF, eZ430, RF2500 and Olimex\n" "MSP430-JTAG-TINY programmers, as well as many other compatible\n" @@ -3145,14 +3258,14 @@ msgid "" "multiple test suites, which are then all managed by a single harness." msgstr "" -#: gnu/packages/games.scm:287 +#: gnu/packages/games.scm:288 msgid "" "Abe's Amazing Adventure is a scrolling,\n" "platform-jumping, key-collecting, ancient pyramid exploring game, vaguely in\n" "the style of similar games for the Commodore+4." msgstr "" -#: gnu/packages/games.scm:357 +#: gnu/packages/games.scm:358 msgid "" "Adanaxis is a fast-moving first person shooter set in deep space, where\n" "the fundamentals of space itself are changed. By adding another dimension to\n" @@ -3163,7 +3276,7 @@ msgid "" "mouse and joystick control, and original music." msgstr "" -#: gnu/packages/games.scm:401 +#: gnu/packages/games.scm:402 msgid "" "Guide Alex the Allegator through the jungle in order to save his\n" "girlfriend Lola from evil humans who want to make a pair of shoes out of her.\n" @@ -3172,7 +3285,7 @@ msgid "" "The game includes a built-in editor so you can design and share your own maps." msgstr "" -#: gnu/packages/games.scm:431 +#: gnu/packages/games.scm:432 msgid "" "Armagetron Advanced is a multiplayer game in 3d that\n" "attempts to emulate and expand on the lightcycle sequence from the movie Tron.\n" @@ -3182,7 +3295,7 @@ msgid "" "physics settings to tweak as well." msgstr "" -#: gnu/packages/games.scm:489 +#: gnu/packages/games.scm:490 msgid "" "Space is a vast area, an unbounded territory where it seems there is\n" "a room for everybody, but reversal of fortune put things differently. The\n" @@ -3194,7 +3307,7 @@ msgid "" "regret their insolence." msgstr "" -#: gnu/packages/games.scm:556 +#: gnu/packages/games.scm:557 msgid "" "Bastet (short for Bastard Tetris) is a simple ncurses-based falling brick\n" "game. Unlike normal Tetris, Bastet does not choose the next brick at random.\n" @@ -3204,19 +3317,19 @@ msgid "" "canyons and wait for the long I-shaped block to clear four rows at a time." msgstr "" -#: gnu/packages/games.scm:601 +#: gnu/packages/games.scm:602 msgid "" "Tetrinet is a multiplayer Tetris-like game with powerups and\n" "attacks you can use on opponents." msgstr "" -#: gnu/packages/games.scm:635 +#: gnu/packages/games.scm:636 msgid "" "Vitetris is a classic multiplayer Tetris clone for the\n" "terminal." msgstr "" -#: gnu/packages/games.scm:678 +#: gnu/packages/games.scm:679 msgid "" "Blobwars: Metal Blob Solid is a 2D platform game, the first\n" "in the Blobwars series. You take on the role of a fearless Blob agent. Your\n" @@ -3224,7 +3337,7 @@ msgid "" "possible, while battling many vicious aliens." msgstr "" -#: gnu/packages/games.scm:771 +#: gnu/packages/games.scm:772 msgid "" "These are the BSD games. See the fortune-mod package for fortunes.\n" "\n" @@ -3257,7 +3370,7 @@ msgid "" "Quizzes: arithmetic and quiz." msgstr "" -#: gnu/packages/games.scm:866 +#: gnu/packages/games.scm:867 msgid "" "BZFlag is a 3D multi-player multiplatform tank battle game that\n" "allows users to play against each other in a network environment.\n" @@ -3277,7 +3390,7 @@ msgid "" "high a score as possible." msgstr "" -#: gnu/packages/games.scm:949 +#: gnu/packages/games.scm:950 msgid "" "Cataclysm: Dark Days Ahead (or \"DDA\" for short) is a roguelike set\n" "in a post-apocalyptic world. Struggle to survive in a harsh, persistent,\n" @@ -3289,7 +3402,7 @@ msgid "" "want what you have." msgstr "" -#: gnu/packages/games.scm:998 +#: gnu/packages/games.scm:999 msgid "" "Cockatrice is a program for playing tabletop card games\n" "over a network. Its server design prevents users from manipulating the game\n" @@ -3297,7 +3410,7 @@ msgid "" "allows users to brew while offline." msgstr "" -#: gnu/packages/games.scm:1052 +#: gnu/packages/games.scm:1053 msgid "" "This package provides a reimplementation of the 1997 Bullfrog business\n" "simulation game @i{Theme Hospital}. As well as faithfully recreating the\n" @@ -3305,7 +3418,7 @@ msgid "" "more. This package does @emph{not} provide the game assets." msgstr "" -#: gnu/packages/games.scm:1094 +#: gnu/packages/games.scm:1095 msgid "" "Cowsay is basically a text filter. Send some text into it,\n" "and you get a cow saying your text. If you think a talking cow isn't enough,\n" @@ -3313,21 +3426,21 @@ msgid "" "tired of cows, a variety of other ASCII-art messengers are available." msgstr "" -#: gnu/packages/games.scm:1135 +#: gnu/packages/games.scm:1136 msgid "" "@command{lolcat} concatenates files and streams like\n" "regular @command{cat}, but it also adds terminal escape codes between\n" "characters and lines resulting in a rainbow effect." msgstr "" -#: gnu/packages/games.scm:1164 +#: gnu/packages/games.scm:1165 #, scheme-format msgid "" "This package provides the Fallout 2 game engine. Game data\n" "should be placed in @file{~/.local/share/falltergeist}." msgstr "" -#: gnu/packages/games.scm:1275 +#: gnu/packages/games.scm:1276 msgid "" "FooBillard++ is an advanced 3D OpenGL billiard game\n" "based on the original foobillard 3.0a sources from Florian Berger.\n" @@ -3349,7 +3462,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:1342 +#: gnu/packages/games.scm:1343 msgid "" "The Freedoom project aims to create a complete free content first person\n" "shooter game. Freedoom by itself is just the raw material for a game: it must\n" @@ -3358,7 +3471,7 @@ msgid "" "effects and music to make a completely free game." msgstr "" -#: gnu/packages/games.scm:1392 +#: gnu/packages/games.scm:1394 msgid "" "Freedroid RPG is an @dfn{RPG} (Role-Playing Game) with isometric graphics.\n" "The game tells the story of a world destroyed by a conflict between robots and\n" @@ -3368,7 +3481,7 @@ msgid "" "real-time combat." msgstr "" -#: gnu/packages/games.scm:1471 +#: gnu/packages/games.scm:1473 msgid "" "Golly simulates Conway's Game of Life and many other types of cellular\n" "automata. The following features are available:\n" @@ -3389,13 +3502,13 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:1527 +#: gnu/packages/games.scm:1529 msgid "" "This package provides a userspace daemon for the Nintendo\n" "Joy-Con controllers." msgstr "" -#: gnu/packages/games.scm:1557 +#: gnu/packages/games.scm:1559 msgid "" "Engine for Caesar III, a city-building real-time strategy game.\n" "Julius includes some UI enhancements while preserving the logic (including\n" @@ -3403,7 +3516,7 @@ msgid "" "does not include game data." msgstr "" -#: gnu/packages/games.scm:1591 +#: gnu/packages/games.scm:1593 msgid "" "Fork of Julius, an engine for the a city-building real-time strategy\n" "game Caesar III. Gameplay enhancements include:\n" @@ -3418,7 +3531,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/games.scm:1630 +#: gnu/packages/games.scm:1632 msgid "" "Me and My Shadow is a puzzle/platform game in which you try\n" "to reach the exit by solving puzzles. Spikes, moving blocks, fragile blocks\n" @@ -3426,7 +3539,7 @@ msgid "" "shadow mimic them to reach blocks you couldn't reach alone." msgstr "" -#: gnu/packages/games.scm:1686 +#: gnu/packages/games.scm:1688 msgid "" "@code{Open Surge} is a 2D retro side-scrolling platformer\n" "inspired by the Sonic games. The player runs at high speeds through each\n" @@ -3434,7 +3547,7 @@ msgid "" "built-in level editor." msgstr "" -#: gnu/packages/games.scm:1732 +#: gnu/packages/games.scm:1734 msgid "" "Knights is a multiplayer game involving several knights who\n" "must run around a dungeon and complete various quests. Each game revolves\n" @@ -3446,7 +3559,7 @@ msgid "" "destroying an ancient book using a special wand." msgstr "" -#: gnu/packages/games.scm:1780 +#: gnu/packages/games.scm:1781 msgid "" "GNOME 2048 provides a 2D grid for playing 2048, a\n" "single-player sliding tile puzzle game. The objective of the game is to merge\n" @@ -3454,7 +3567,7 @@ msgid "" "in one tile." msgstr "" -#: gnu/packages/games.scm:1819 +#: gnu/packages/games.scm:1820 msgid "" "GNOME Chess provides a 2D board for playing chess games\n" "against human or computer players. It supports loading and saving games in\n" @@ -3462,7 +3575,7 @@ msgid "" "such as chess or stockfish." msgstr "" -#: gnu/packages/games.scm:1880 +#: gnu/packages/games.scm:1881 msgid "" "The GNU backgammon application (also known as \"gnubg\") can\n" "be used for playing, analyzing and teaching the game. It has an advanced\n" @@ -3471,7 +3584,7 @@ msgid "" "also features an attractive, 3D representation of the playing board." msgstr "" -#: gnu/packages/games.scm:1921 +#: gnu/packages/games.scm:1922 msgid "" "GNUbik is a puzzle game in which you must manipulate a cube to make\n" "each of its faces have a uniform color. The game is customizable, allowing\n" @@ -3480,13 +3593,13 @@ msgid "" "scriptable with Guile." msgstr "" -#: gnu/packages/games.scm:1944 +#: gnu/packages/games.scm:1945 msgid "" "GNU Shogi is a program that plays the game Shogi (Japanese\n" "Chess). It is similar to standard chess but this variant is far more complicated." msgstr "" -#: gnu/packages/games.scm:1974 +#: gnu/packages/games.scm:1975 msgid "" "LTris is a tetris clone: differently shaped blocks are falling down the\n" "rectangular playing field and can be moved sideways or rotated by 90 degree\n" @@ -3500,7 +3613,7 @@ msgid "" "watch your CPU playing while enjoying a cup of tea!" msgstr "" -#: gnu/packages/games.scm:2097 +#: gnu/packages/games.scm:2098 msgid "" "NetHack is a single player dungeon exploration game that runs\n" "on a wide variety of computer systems, with a variety of graphical and text\n" @@ -3514,7 +3627,7 @@ msgid "" "role, and your gender." msgstr "" -#: gnu/packages/games.scm:2141 +#: gnu/packages/games.scm:2142 msgid "" "PipeWalker is a simple puzzle game with many diffent themes: connect all\n" "computers to one network server, bring water from a source to the taps, etc.\n" @@ -3523,17 +3636,17 @@ msgid "" "Every puzzle has a complete solution, although there may be more than one." msgstr "" -#: gnu/packages/games.scm:2190 +#: gnu/packages/games.scm:2191 msgid "PrBoom+ is a Doom source port developed from the original PrBoom project." msgstr "" -#: gnu/packages/games.scm:2240 +#: gnu/packages/games.scm:2241 msgid "" "ReTux is an action platformer loosely inspired by the Mario games,\n" "utilizing the art assets from the @code{SuperTux} project." msgstr "" -#: gnu/packages/games.scm:2350 +#: gnu/packages/games.scm:2351 msgid "" "RogueBox Adventures is a graphical roguelike with strong influences\n" "from sandbox games like Minecraft or Terraria. The main idea of RogueBox\n" @@ -3541,7 +3654,7 @@ msgid "" "can be explored and changed freely." msgstr "" -#: gnu/packages/games.scm:2462 +#: gnu/packages/games.scm:2463 msgid "" "Barbie Seahorse Adventures is a retro style platform arcade game.\n" "You are Barbie the seahorse who travels through the jungle, up to the\n" @@ -3551,27 +3664,27 @@ msgid "" "and defeat them with your bubbles!" msgstr "" -#: gnu/packages/games.scm:2522 +#: gnu/packages/games.scm:2523 msgid "" "Solarus is a 2D game engine written in C++, that can run games\n" "scripted in Lua. It has been designed with 16-bit classic Action-RPGs\n" "in mind." msgstr "" -#: gnu/packages/games.scm:2551 +#: gnu/packages/games.scm:2552 msgid "" "Solarus Quest Editor is a graphical user interface to create and\n" "modify quests for the Solarus engine." msgstr "" -#: gnu/packages/games.scm:2627 +#: gnu/packages/games.scm:2628 msgid "" "In SuperStarfighter, up to four local players compete in a\n" "2D arena with fast-moving ships and missiles. Different game types are\n" "available, as well as a single-player mode with AI-controlled ships." msgstr "" -#: gnu/packages/games.scm:2760 +#: gnu/packages/games.scm:2761 msgid "" "Trigger-rally is a 3D rally simulation with great physics\n" "for drifting on over 200 maps. Different terrain materials like dirt,\n" @@ -3583,17 +3696,17 @@ msgid "" "equipped with spoken co-driver notes and co-driver icons." msgstr "" -#: gnu/packages/games.scm:2816 +#: gnu/packages/games.scm:2817 msgid "" "This package provides @command{ufo2map}, a program used to generate\n" "maps for the UFO: Alien Invasion strategy game." msgstr "" -#: gnu/packages/games.scm:2858 +#: gnu/packages/games.scm:2859 msgid "This package contains maps and other assets for UFO: Alien Invasion." msgstr "" -#: gnu/packages/games.scm:2945 +#: gnu/packages/games.scm:2946 msgid "" "UFO: Alien Invasion is a tactical strategy game set in the year 2084.\n" "You control a secret organisation charged with defending Earth from a brutal\n" @@ -3611,11 +3724,11 @@ msgid "" "properly." msgstr "" -#: gnu/packages/games.scm:2982 +#: gnu/packages/games.scm:2983 msgid "A graphical user interface for the package @code{gnushogi}." msgstr "" -#: gnu/packages/games.scm:3035 +#: gnu/packages/games.scm:3036 msgid "" "L'Abbaye des Morts is a 2D platform game set in 13th century\n" "France. The Cathars, who preach about good Christian beliefs, were being\n" @@ -3624,14 +3737,14 @@ msgid "" "that beneath its ruins lay buried an ancient evil." msgstr "" -#: gnu/packages/games.scm:3081 +#: gnu/packages/games.scm:3082 msgid "" "Angband is a Classic dungeon exploration roguelike. Explore\n" "the depths below Angband, seeking riches, fighting monsters, and preparing to\n" "fight Morgoth, the Lord of Darkness." msgstr "" -#: gnu/packages/games.scm:3129 +#: gnu/packages/games.scm:3130 msgid "" "Pingus is a free Lemmings-like puzzle game in which the player takes\n" "command of a bunch of small animals and has to guide them through levels.\n" @@ -3641,21 +3754,21 @@ msgid "" "level's exit. The game is presented in a 2D side view." msgstr "" -#: gnu/packages/games.scm:3152 +#: gnu/packages/games.scm:3153 msgid "" "The GNU Talk Filters are programs that convert English text\n" "into stereotyped or otherwise humorous dialects. The filters are provided as\n" "a C library, so they can easily be integrated into other programs." msgstr "" -#: gnu/packages/games.scm:3196 +#: gnu/packages/games.scm:3197 msgid "" "The player controls a character (one of three: Good, Bad, and Dead),\n" "dodges the missiles (lots of it cover the screen, but the character's hitbox\n" "is very small), and shoot at the adversaries that keep appear on the screen." msgstr "" -#: gnu/packages/games.scm:3239 +#: gnu/packages/games.scm:3240 msgid "" "CMatrix simulates the display from \"The Matrix\" and is\n" "based on the screensaver from the movie's website. It works with terminal\n" @@ -3663,14 +3776,14 @@ msgid "" "asynchronously and at a user-defined speed." msgstr "" -#: gnu/packages/games.scm:3270 +#: gnu/packages/games.scm:3271 msgid "" "GNU Chess is a chess engine. It allows you to compete\n" "against the computer in a game of chess, either through the default terminal\n" "interface or via an external visual interface such as GNU XBoard." msgstr "" -#: gnu/packages/games.scm:3332 +#: gnu/packages/games.scm:3333 msgid "" "GNU FreeDink is a free and portable re-implementation of the engine\n" "for the role-playing game Dink Smallwood. It supports not only the original\n" @@ -3678,17 +3791,17 @@ msgid "" "To that extent, it also includes a front-end for managing all of your D-Mods." msgstr "" -#: gnu/packages/games.scm:3360 +#: gnu/packages/games.scm:3361 msgid "This package contains the game data of GNU Freedink." msgstr "" -#: gnu/packages/games.scm:3383 +#: gnu/packages/games.scm:3384 msgid "" "DFArc makes it easy to play and manage the GNU FreeDink game\n" "and its numerous D-Mods." msgstr "" -#: gnu/packages/games.scm:3453 +#: gnu/packages/games.scm:3454 msgid "" "GNU XBoard is a graphical board for all varieties of chess,\n" "including international chess, xiangqi (Chinese chess), shogi (Japanese chess)\n" @@ -3697,7 +3810,7 @@ msgid "" "Portable Game Notation." msgstr "" -#: gnu/packages/games.scm:3488 +#: gnu/packages/games.scm:3489 msgid "" "GNU Typist is a universal typing tutor. It can be used to learn and\n" "practice touch-typing. Several tutorials are included; in addition to\n" @@ -3706,7 +3819,7 @@ msgid "" "are primarily in English, however some in other languages are provided." msgstr "" -#: gnu/packages/games.scm:3560 +#: gnu/packages/games.scm:3561 msgid "" "The Irrlicht Engine is a high performance realtime 3D engine written in\n" "C++. Features include an OpenGL renderer, extensible materials, scene graph\n" @@ -3714,7 +3827,7 @@ msgid "" "for common mesh file formats, and collision detection." msgstr "" -#: gnu/packages/games.scm:3611 +#: gnu/packages/games.scm:3612 msgid "" "M.A.R.S. is a 2D space shooter with pretty visual effects and\n" "attractive physics. Players can battle each other or computer controlled\n" @@ -3722,7 +3835,7 @@ msgid "" "match, cannon keep, and grave-itation pit." msgstr "" -#: gnu/packages/games.scm:3650 +#: gnu/packages/games.scm:3651 msgid "" "Glk defines a portable API for applications with text UIs. It was\n" "primarily designed for interactive fiction, but it should be suitable for many\n" @@ -3731,7 +3844,7 @@ msgid "" "using the @code{curses.h} library for screen control." msgstr "" -#: gnu/packages/games.scm:3690 +#: gnu/packages/games.scm:3691 msgid "" "Glulx is a 32-bit portable virtual machine intended for writing and\n" "playing interactive fiction. It was designed by Andrew Plotkin to relieve\n" @@ -3739,28 +3852,28 @@ msgid "" "reference interpreter, using the Glk API." msgstr "" -#: gnu/packages/games.scm:3716 +#: gnu/packages/games.scm:3717 msgid "" "Fifechan is a lightweight cross platform GUI library written in C++\n" "specifically designed for games. It has a built in set of extendable GUI\n" "Widgets, and allows users to create more." msgstr "" -#: gnu/packages/games.scm:3791 +#: gnu/packages/games.scm:3792 msgid "" "@acronym{FIFE, Flexible Isometric Free Engine} is a multi-platform\n" "isometric game engine. Python bindings are included allowing users to create\n" "games using Python as well as C++." msgstr "" -#: gnu/packages/games.scm:3826 +#: gnu/packages/games.scm:3827 msgid "" "Fizmo is a console-based Z-machine interpreter. It is used to play\n" "interactive fiction, also known as text adventures, which were implemented\n" "either by Infocom or created using the Inform compiler." msgstr "" -#: gnu/packages/games.scm:3849 +#: gnu/packages/games.scm:3850 msgid "" "GNU Go is a program that plays the game of Go, in which players\n" "place stones on a grid to form territory or capture other stones. While\n" @@ -3771,7 +3884,7 @@ msgid "" "Protocol)." msgstr "" -#: gnu/packages/games.scm:3878 +#: gnu/packages/games.scm:3879 msgid "" "Extreme Tux Racer, or etracer as it is called for short, is\n" "a simple OpenGL racing game featuring Tux, the Linux mascot. The goal of the\n" @@ -3784,7 +3897,7 @@ msgid "" "This game is based on the GPL version of the famous game TuxRacer." msgstr "" -#: gnu/packages/games.scm:3952 +#: gnu/packages/games.scm:3953 msgid "" "SuperTuxKart is a 3D kart racing game, with a focus on\n" "having fun over realism. You can play with up to 4 friends on one PC, racing\n" @@ -3792,7 +3905,7 @@ msgid "" "also available." msgstr "" -#: gnu/packages/games.scm:4028 +#: gnu/packages/games.scm:4029 msgid "" "Unknown Horizons is a 2D realtime strategy simulation with an emphasis\n" "on economy and city building. Expand your small settlement to a strong and\n" @@ -3801,7 +3914,7 @@ msgid "" "trade and diplomacy." msgstr "" -#: gnu/packages/games.scm:4081 +#: gnu/packages/games.scm:4082 msgid "" "GNUjump is a simple, yet addictive game in which you must jump from\n" "platform to platform to avoid falling, while the platforms drop at faster rates\n" @@ -3809,7 +3922,7 @@ msgid "" "falling, themeable graphics and sounds, and replays." msgstr "" -#: gnu/packages/games.scm:4117 +#: gnu/packages/games.scm:4118 msgid "" "The Battle for Wesnoth is a fantasy, turn based tactical strategy game,\n" "with several single player campaigns, and multiplayer games (both networked and\n" @@ -3821,20 +3934,20 @@ msgid "" "next campaign." msgstr "" -#: gnu/packages/games.scm:4137 +#: gnu/packages/games.scm:4138 msgid "" "This package contains a dedicated server for @emph{The\n" "Battle for Wesnoth}." msgstr "" -#: gnu/packages/games.scm:4179 +#: gnu/packages/games.scm:4180 msgid "" "Gamine is a game designed for young children who are learning to use the\n" "mouse and keyboard. The child uses the mouse to draw colored dots and lines\n" "on the screen and keyboard to display letters." msgstr "" -#: gnu/packages/games.scm:4211 +#: gnu/packages/games.scm:4212 msgid "" "ManaPlus is a 2D MMORPG client for game servers. It is the only\n" "fully supported client for @uref{http://www.themanaworld.org, The mana\n" @@ -3842,7 +3955,7 @@ msgid "" "@uref{http://landoffire.org, Land of fire}." msgstr "" -#: gnu/packages/games.scm:4243 +#: gnu/packages/games.scm:4244 msgid "" "OpenTTD is a game in which you transport goods and\n" "passengers by land, water and air. It is a re-implementation of Transport\n" @@ -3852,7 +3965,7 @@ msgid "" "engine. When you start it you will be prompted to download a graphics set." msgstr "" -#: gnu/packages/games.scm:4303 +#: gnu/packages/games.scm:4304 msgid "" "The OpenGFX project is an implementation of the OpenTTD base graphics\n" "set that aims to ensure the best possible out-of-the-box experience.\n" @@ -3867,29 +3980,29 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:4361 +#: gnu/packages/games.scm:4362 msgid "" "OpenSFX is a set of free base sounds for OpenTTD which make\n" "it possible to play OpenTTD without requiring the proprietary sound files from\n" "the original Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4404 +#: gnu/packages/games.scm:4405 msgid "" "OpenMSX is a music set for OpenTTD which makes it possible\n" "to play OpenTTD without requiring the proprietary music from the original\n" "Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4473 +#: gnu/packages/games.scm:4474 msgid "openrct2-title-sequences is a set of title sequences for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4513 +#: gnu/packages/games.scm:4514 msgid "openrct2-objects is a set of objects for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4576 +#: gnu/packages/games.scm:4577 msgid "" "OpenRCT2 is a free software re-implementation of\n" "RollerCoaster Tycoon 2 (RCT2). The gameplay revolves around building and\n" @@ -3899,27 +4012,27 @@ msgid "" "images, etc.)" msgstr "" -#: gnu/packages/games.scm:4630 +#: gnu/packages/games.scm:4631 msgid "" "The Emilia Pinball Project is a pinball simulator. There\n" "are only two levels to play with, but they are very addictive." msgstr "" -#: gnu/packages/games.scm:4659 +#: gnu/packages/games.scm:4660 msgid "" "Pioneers is an emulation of the board game The Settlers of\n" "Catan. It can be played on a local network, on the internet, and with AI\n" "players." msgstr "" -#: gnu/packages/games.scm:4701 +#: gnu/packages/games.scm:4702 msgid "" "The goal of this logic game is to open all cards in a 6x6\n" "grid, using a number of hints as to their relative position. The game idea\n" "is attributed to Albert Einstein." msgstr "" -#: gnu/packages/games.scm:4731 +#: gnu/packages/games.scm:4732 msgid "" "POWWOW is a client software which can be used for telnet as well as for\n" "@dfn{Multi-User Dungeon} (MUD). Additionally it can serve as a nice client for\n" @@ -3927,21 +4040,21 @@ msgid "" "http://lavachat.symlynx.com/unix/" msgstr "" -#: gnu/packages/games.scm:4838 +#: gnu/packages/games.scm:4839 msgid "" "Red Eclipse is an arena shooter, created from the Cube2 engine.\n" "Offering an innovative parkour system and distinct but all potent weapons,\n" "Red Eclipse provides fast paced and accessible gameplay." msgstr "" -#: gnu/packages/games.scm:4903 +#: gnu/packages/games.scm:4904 msgid "" "Grue Hunter is a text adventure game written in Perl. You must make\n" "your way through an underground cave system in search of the Grue. Can you\n" "capture it and get out alive?" msgstr "" -#: gnu/packages/games.scm:4942 +#: gnu/packages/games.scm:4943 msgid "" "lierolibre is an earthworm action game where you fight another player\n" "(or the computer) underground using a wide array of weapons.\n" @@ -3966,14 +4079,14 @@ msgid "" "fullscreen, use F5 or Alt+Enter." msgstr "" -#: gnu/packages/games.scm:5021 +#: gnu/packages/games.scm:5022 msgid "" "Tennix is a 2D tennis game. You can play against the\n" "computer or against another player using the keyboard. The game runs\n" "in-window at 640x480 resolution or fullscreen." msgstr "" -#: gnu/packages/games.scm:5105 +#: gnu/packages/games.scm:5106 msgid "" "Warzone 2100 offers campaign, multi-player, and single-player skirmish\n" "modes. An extensive tech tree with over 400 different technologies, combined\n" @@ -3981,7 +4094,7 @@ msgid "" "tactics." msgstr "" -#: gnu/packages/games.scm:5184 +#: gnu/packages/games.scm:5185 msgid "" "In Widelands, you are the regent of a small clan. You start out with\n" "nothing but your headquarters, where all your resources are stored.\n" @@ -4003,7 +4116,7 @@ msgid "" "of war. Widelands also offers an Artificial Intelligence to challenge you." msgstr "" -#: gnu/packages/games.scm:5236 +#: gnu/packages/games.scm:5237 msgid "" "In the year 2579, the intergalactic weapons corporation, WEAPCO, has\n" "dominated the galaxy. Guide Chris Bainfield and his friend Sid Wilson on\n" @@ -4012,7 +4125,7 @@ msgid "" "in strikes against the evil corporation." msgstr "" -#: gnu/packages/games.scm:5267 +#: gnu/packages/games.scm:5268 msgid "" "In this game you are the captain of the cargo ship Chromium B.S.U. and\n" "are responsible for delivering supplies to the troops on the front line. Your\n" @@ -4020,7 +4133,7 @@ msgid "" "safety of the Chromium vessel." msgstr "" -#: gnu/packages/games.scm:5350 +#: gnu/packages/games.scm:5351 msgid "" "Tux Paint is a free drawing program designed for young children (kids\n" "ages 3 and up). It has a simple, easy-to-use interface; fun sound effects;\n" @@ -4029,23 +4142,23 @@ msgid "" "your child be creative." msgstr "" -#: gnu/packages/games.scm:5390 +#: gnu/packages/games.scm:5391 msgid "" "This package contains a set of \"Rubber Stamp\" images which can be used\n" "with the \"Stamp\" tool within Tux Paint." msgstr "" -#: gnu/packages/games.scm:5439 +#: gnu/packages/games.scm:5440 msgid "Tux Paint Config is a graphical configuration editor for Tux Paint." msgstr "" -#: gnu/packages/games.scm:5491 +#: gnu/packages/games.scm:5492 msgid "" "SuperTux is a classic 2D jump'n run sidescroller game in\n" "a style similar to the original Super Mario games." msgstr "" -#: gnu/packages/games.scm:5523 +#: gnu/packages/games.scm:5524 msgid "" "TinTin++ is a MUD client which supports MCCP (Mud Client Compression\n" "Protocol), MMCP (Mud Master Chat Protocol), xterm 256 colors, most TELNET\n" @@ -4053,7 +4166,7 @@ msgid "" "Linux / Mac OS X servers, and an auto mapper with a VT100 map display." msgstr "" -#: gnu/packages/games.scm:5563 +#: gnu/packages/games.scm:5564 msgid "" "Learn programming, playing with ants and spider webs ;-)\n" "Your robot ant can be programmed in many languages: OCaml, Python, C, C++,\n" @@ -4061,14 +4174,14 @@ msgid "" "programmers may also add their own favorite language." msgstr "" -#: gnu/packages/games.scm:5602 +#: gnu/packages/games.scm:5603 msgid "" "Bambam is a simple baby keyboard (and gamepad) masher\n" "application that locks the keyboard and mouse and instead displays bright\n" "colors, pictures, and sounds." msgstr "" -#: gnu/packages/games.scm:5663 +#: gnu/packages/games.scm:5664 msgid "" "Mr. Rescue is an arcade styled 2d action game centered around evacuating\n" "civilians from burning buildings. The game features fast-paced fire\n" @@ -4076,7 +4189,7 @@ msgid "" "throwing people around in pseudo-randomly generated buildings." msgstr "" -#: gnu/packages/games.scm:5770 +#: gnu/packages/games.scm:5771 msgid "" "HyperRogue is a game in which the player collects treasures and fights\n" "monsters -- rogue-like but for the fact that it is played on the hyperbolic\n" @@ -4090,13 +4203,13 @@ msgid "" "symbols, it still needs graphics to render the non-euclidean world." msgstr "" -#: gnu/packages/games.scm:5817 +#: gnu/packages/games.scm:5818 msgid "" "Kobo Deluxe is an enhanced version of Akira Higuchi's XKobo graphical game\n" "for Un*x systems with X11." msgstr "" -#: gnu/packages/games.scm:5845 +#: gnu/packages/games.scm:5846 msgid "" "Freeciv is a turn-based empire building strategy game\n" "inspired by the history of human civilization. The game commences in\n" @@ -4104,7 +4217,7 @@ msgid "" "into the Space Age." msgstr "" -#: gnu/packages/games.scm:5878 +#: gnu/packages/games.scm:5879 msgid "" "@code{No More Secrets} provides a command line tool called \"nms\"\n" "that recreates the famous data decryption effect seen on screen in the 1992\n" @@ -4115,25 +4228,25 @@ msgid "" "starting a decryption sequence to reveal the original plaintext characters." msgstr "" -#: gnu/packages/games.scm:5906 +#: gnu/packages/games.scm:5907 msgid "This package contains the data files required for MegaGlest." msgstr "" -#: gnu/packages/games.scm:5961 +#: gnu/packages/games.scm:5962 msgid "" "MegaGlest is a cross-platform 3D real-time strategy (RTS)\n" "game, where you control the armies of one of seven different factions: Tech,\n" "Magic, Egypt, Indians, Norsemen, Persian or Romans." msgstr "" -#: gnu/packages/games.scm:6013 +#: gnu/packages/games.scm:6014 msgid "" "In FreeGish you control Gish, a ball of tar who lives\n" "happily with his girlfriend Brea, until one day a mysterious dark creature\n" "emerges from a sewer hole and pulls her below ground." msgstr "" -#: gnu/packages/games.scm:6049 +#: gnu/packages/games.scm:6050 msgid "" "C-Dogs SDL is a classic overhead run-and-gun game,\n" "supporting up to 4 players in co-op and deathmatch modes. Customize your\n" @@ -4141,21 +4254,21 @@ msgid "" "over 100 user-created campaigns." msgstr "" -#: gnu/packages/games.scm:6149 +#: gnu/packages/games.scm:6150 msgid "" "Kiki the nano bot is a 3D puzzle game. It is basically a\n" "mixture of the games Sokoban and Kula-World. Your task is to help Kiki, a\n" "small robot living in the nano world, repair its maker." msgstr "" -#: gnu/packages/games.scm:6225 +#: gnu/packages/games.scm:6226 msgid "" "Teeworlds is an online multiplayer game. Battle with up to\n" "16 players in a variety of game modes, including Team Deathmatch and Capture\n" "The Flag. You can even design your own maps!" msgstr "" -#: gnu/packages/games.scm:6285 +#: gnu/packages/games.scm:6286 msgid "" "Enigma is a puzzle game with 550 unique levels. The object\n" "of the game is to find and uncover pairs of identically colored ‘Oxyd’ stones.\n" @@ -4167,7 +4280,7 @@ msgid "" "with the mouse isn’t always trivial." msgstr "" -#: gnu/packages/games.scm:6319 +#: gnu/packages/games.scm:6320 msgid "" "Chroma is an abstract puzzle game. A variety of colourful\n" "shapes are arranged in a series of increasingly complex patterns, forming\n" @@ -4177,7 +4290,7 @@ msgid "" "becoming difficult enough to tax even the brightest of minds." msgstr "" -#: gnu/packages/games.scm:6384 +#: gnu/packages/games.scm:6385 msgid "" "Fish Fillets NG is strictly a puzzle game. The goal in\n" "every of the seventy levels is always the same: find a safe way out. The fish\n" @@ -4186,14 +4299,14 @@ msgid "" "fish. The whole game is accompanied by quiet, comforting music." msgstr "" -#: gnu/packages/games.scm:6452 +#: gnu/packages/games.scm:6453 msgid "" "Dungeon Crawl Stone Soup (also known as \"Crawl\" or DCSS\n" "for short) is a roguelike adventure through dungeons filled with dangerous\n" "monsters in a quest to find the mystifyingly fabulous Orb of Zot." msgstr "" -#: gnu/packages/games.scm:6529 +#: gnu/packages/games.scm:6530 msgid "" "Lugaru is a third-person action game. The main character,\n" "Turner, is an anthropomorphic rebel bunny rabbit with impressive combat skills.\n" @@ -4203,11 +4316,11 @@ msgid "" "fight against their plot and save his fellow rabbits from slavery." msgstr "" -#: gnu/packages/games.scm:6574 +#: gnu/packages/games.scm:6575 msgid "0ad-data provides the data files required by the game 0ad." msgstr "" -#: gnu/packages/games.scm:6710 +#: gnu/packages/games.scm:6711 msgid "" "0 A.D. is a real-time strategy (RTS) game of ancient\n" "warfare. It's a historically-based war/economy game that allows players to\n" @@ -4217,7 +4330,7 @@ msgid "" "0ad needs a window manager that supports 'Extended Window Manager Hints'." msgstr "" -#: gnu/packages/games.scm:6776 +#: gnu/packages/games.scm:6777 msgid "" "The original Colossal Cave Adventure from 1976 was the origin of all\n" "text adventures, dungeon-crawl (computer) games, and computer-hosted\n" @@ -4226,7 +4339,7 @@ msgid "" "``adventure 2.5'' and ``430-point adventure''." msgstr "" -#: gnu/packages/games.scm:6899 +#: gnu/packages/games.scm:6900 msgid "" "Tales of Maj’Eyal (ToME) RPG, featuring tactical turn-based\n" "combat and advanced character building. Play as one of many unique races and\n" @@ -4237,21 +4350,21 @@ msgid "" "Tales of Maj’Eyal offers engaging roguelike gameplay for the 21st century." msgstr "" -#: gnu/packages/games.scm:6945 +#: gnu/packages/games.scm:6946 msgid "" "Quakespasm is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7002 +#: gnu/packages/games.scm:7003 msgid "" "vkquake is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7067 +#: gnu/packages/games.scm:7068 msgid "" "Yamagi Quake II is an enhanced client for id Software's Quake II.\n" "The main focus is an unchanged single player experience like back in 1997,\n" @@ -4261,18 +4374,18 @@ msgid "" "making Yamagi Quake II one of the most solid Quake II implementations available." msgstr "" -#: gnu/packages/games.scm:7100 +#: gnu/packages/games.scm:7101 msgid "Nudoku is a ncurses-based Sudoku game for your terminal." msgstr "" -#: gnu/packages/games.scm:7146 +#: gnu/packages/games.scm:7147 msgid "" "The Butterfly Effect (tbe) is a game that uses\n" "realistic physics simulations to combine lots of simple mechanical\n" "elements to achieve a simple goal in the most complex way possible." msgstr "" -#: gnu/packages/games.scm:7192 +#: gnu/packages/games.scm:7193 msgid "" "Pioneer is a space adventure game set in our galaxy at the turn of the\n" "31st century. The game is open-ended, and you are free to eke out whatever\n" @@ -4283,14 +4396,14 @@ msgid "" "whatever you make of it." msgstr "" -#: gnu/packages/games.scm:7221 +#: gnu/packages/games.scm:7222 msgid "" "Badass generates false commits for a range of dates, essentially\n" "hacking the gamification of contribution graphs on platforms such as\n" "Github or Gitlab." msgstr "" -#: gnu/packages/games.scm:7294 +#: gnu/packages/games.scm:7295 msgid "" "Colobot: Gold Edition is a real-time strategy game, where\n" "you can program your units (bots) in a language called CBOT, which is similar\n" @@ -4298,7 +4411,7 @@ msgid "" "You can save humanity and get programming skills!" msgstr "" -#: gnu/packages/games.scm:7386 +#: gnu/packages/games.scm:7387 msgid "" "GZdoom is a port of the Doom 2 game engine, with a modern\n" "renderer. It improves modding support with ZDoom's advanced mapping features\n" @@ -4306,14 +4419,14 @@ msgid "" "Strife, Chex Quest, and fan-created games like Harmony, Hacx and Freedoom." msgstr "" -#: gnu/packages/games.scm:7425 +#: gnu/packages/games.scm:7426 msgid "" "Odamex is a modification of the Doom engine that\n" "allows players to easily join servers dedicated to playing Doom\n" "online." msgstr "" -#: gnu/packages/games.scm:7453 +#: gnu/packages/games.scm:7454 msgid "" "Chocolate Doom takes a different approach to other source ports. Its\n" "aim is to accurately reproduce the experience of playing Vanilla Doom. It is\n" @@ -4326,7 +4439,7 @@ msgid "" "affect gameplay)." msgstr "" -#: gnu/packages/games.scm:7493 +#: gnu/packages/games.scm:7494 msgid "" "Crispy Doom is a friendly fork of Chocolate Doom that provides a higher\n" "display resolution, removes the static limits of the Doom engine and offers\n" @@ -4335,21 +4448,21 @@ msgid "" "original." msgstr "" -#: gnu/packages/games.scm:7566 +#: gnu/packages/games.scm:7567 msgid "This package provides C11 / gnu11 utilities C library" msgstr "" -#: gnu/packages/games.scm:7635 +#: gnu/packages/games.scm:7636 msgid "" "Fortune is a command-line utility which displays a random\n" "quotation from a collection of quotes." msgstr "" -#: gnu/packages/games.scm:7677 +#: gnu/packages/games.scm:7678 msgid "Xonotic-data provides the data files required by the game Xonotic." msgstr "" -#: gnu/packages/games.scm:7873 +#: gnu/packages/games.scm:7874 msgid "" "Xonotic is a free, fast-paced first-person shooter.\n" "The project is geared towards providing addictive arena shooter\n" @@ -4359,7 +4472,7 @@ msgid "" "open-source FPS of its kind." msgstr "" -#: gnu/packages/games.scm:7920 +#: gnu/packages/games.scm:7921 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4368,7 +4481,7 @@ msgid "" "ncurses for text display." msgstr "" -#: gnu/packages/games.scm:7964 +#: gnu/packages/games.scm:7966 msgid "" "Naev is a 2d action/rpg space game that combines elements from\n" "the action, RPG and simulation genres. You pilot a spaceship from\n" @@ -4380,7 +4493,7 @@ msgid "" "of lore accompanying everything from planets to equipment." msgstr "" -#: gnu/packages/games.scm:8013 +#: gnu/packages/games.scm:8015 msgid "" "Frotz is an interpreter for Infocom games and\n" "other Z-machine games in the text adventure/interactive fiction genre.\n" @@ -4392,7 +4505,7 @@ msgid "" "to play games on webpages. It can also be made into a chat bot." msgstr "" -#: gnu/packages/games.scm:8075 +#: gnu/packages/games.scm:8077 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4402,7 +4515,7 @@ msgid "" "when packaged in Blorb container files or optionally from individual files." msgstr "" -#: gnu/packages/games.scm:8166 +#: gnu/packages/games.scm:8168 msgid "" "Frozen-Bubble is a clone of the popular Puzzle Bobble game, in which\n" "you attempt to shoot bubbles into groups of the same color to cause them to\n" @@ -4417,7 +4530,7 @@ msgid "" "their own levels." msgstr "" -#: gnu/packages/games.scm:8199 +#: gnu/packages/games.scm:8201 msgid "" "Libmanette is a small GObject library giving you simple\n" "access to game controllers. It supports the de-facto standard gamepads as\n" @@ -4425,7 +4538,7 @@ msgid "" "GameController." msgstr "" -#: gnu/packages/games.scm:8245 +#: gnu/packages/games.scm:8247 msgid "" "Quadrapassel comes from the classic falling-block game,\n" "Tetris. The goal of the game is to create complete horizontal lines of\n" @@ -4437,7 +4550,7 @@ msgid "" "your score gets higher, you level up and the blocks fall faster." msgstr "" -#: gnu/packages/games.scm:8294 +#: gnu/packages/games.scm:8296 msgid "" "Endless Sky is a 2D space trading and combat game. Explore\n" "other star systems. Earn money by trading, carrying passengers, or completing\n" @@ -4447,7 +4560,7 @@ msgid "" "civilized than your own." msgstr "" -#: gnu/packages/games.scm:8443 +#: gnu/packages/games.scm:8445 msgid "" "StepMania is a dance and rhythm game. It features 3D\n" "graphics, keyboard and dance pad support, and an editor for creating your own\n" @@ -4457,7 +4570,7 @@ msgid "" "to download and install them in @file{$HOME/.stepmania-X.Y/Songs} directory." msgstr "" -#: gnu/packages/games.scm:8479 +#: gnu/packages/games.scm:8481 msgid "" "@i{oshu!} is a minimalist variant of the @i{osu!} rhythm game,\n" "which is played by pressing buttons and following along sliders as they appear\n" @@ -4467,7 +4580,7 @@ msgid "" "download and unpack them separately." msgstr "" -#: gnu/packages/games.scm:8562 +#: gnu/packages/games.scm:8564 msgid "" "Battle Tanks (also known as \"btanks\") is a funny battle\n" "game, where you can choose one of three vehicles and eliminate your enemy\n" @@ -4476,7 +4589,7 @@ msgid "" "and cooperative." msgstr "" -#: gnu/packages/games.scm:8596 +#: gnu/packages/games.scm:8598 msgid "" "Slime Volley is a 2D arcade-oriented volleyball simulation, in\n" "the spirit of some Java games of the same name.\n" @@ -4487,7 +4600,7 @@ msgid "" "the ground, the set ends and all balls are served again." msgstr "" -#: gnu/packages/games.scm:8626 +#: gnu/packages/games.scm:8628 msgid "" "Slingshot is a two-dimensional strategy game where two\n" "players attempt to shoot one another through a section of space populated by\n" @@ -4495,14 +4608,14 @@ msgid "" "affected by the gravity of the planets." msgstr "" -#: gnu/packages/games.scm:8674 +#: gnu/packages/games.scm:8676 msgid "" "4D-TRIS is an alteration of the well-known Tetris game. The\n" "game field is extended to 4D space, which has to filled up by the gamer with\n" "4D hyper cubes." msgstr "" -#: gnu/packages/games.scm:8751 +#: gnu/packages/games.scm:8753 msgid "" "Arx Libertatis is a cross-platform port of Arx Fatalis, a 2002\n" "first-person role-playing game / dungeon crawler developed by Arkane Studios.\n" @@ -4512,7 +4625,7 @@ msgid "" "where the player draws runes in real time to effect the desired spell." msgstr "" -#: gnu/packages/games.scm:8797 +#: gnu/packages/games.scm:8799 msgid "" "The Legend of Edgar is a 2D platform game with a persistent world.\n" "When Edgar's father fails to return home after venturing out one dark and stormy night,\n" @@ -4520,7 +4633,7 @@ msgid "" "a fortress beyond the forbidden swamp." msgstr "" -#: gnu/packages/games.scm:8899 +#: gnu/packages/games.scm:8901 msgid "" "OpenClonk is a multiplayer action/tactics/skill game. It is\n" "often referred to as a mixture of The Settlers and Worms. In a simple 2D\n" @@ -4530,20 +4643,20 @@ msgid "" "fight each other on an arena-like map." msgstr "" -#: gnu/packages/games.scm:8931 +#: gnu/packages/games.scm:8933 msgid "" "Flare (Free Libre Action Roleplaying Engine) is a simple\n" "game engine built to handle a very specific kind of game: single-player 2D\n" "action RPGs." msgstr "" -#: gnu/packages/games.scm:8994 +#: gnu/packages/games.scm:8996 msgid "" "Flare is a single-player 2D action RPG with\n" "fast-paced action and a dark fantasy style." msgstr "" -#: gnu/packages/games.scm:9046 +#: gnu/packages/games.scm:9048 msgid "" "Far below the surface of the planet is a place of limitless\n" "power. Those that seek to control such a utopia will soon bring an end to\n" @@ -4557,7 +4670,7 @@ msgid "" "Orcus Dome from evil." msgstr "" -#: gnu/packages/games.scm:9108 +#: gnu/packages/games.scm:9110 msgid "" "Marble Marcher is a video game that uses a fractal physics\n" "engine and fully procedural rendering to produce beautiful and unique\n" @@ -4567,7 +4680,7 @@ msgid "" "levels to unlock." msgstr "" -#: gnu/packages/games.scm:9159 +#: gnu/packages/games.scm:9161 msgid "" "SimGear is a set of libraries designed to be used as\n" "building blocks for quickly assembling 3D simulations, games, and\n" @@ -4575,7 +4688,7 @@ msgid "" "and also provides the base for the FlightGear Flight Simulator." msgstr "" -#: gnu/packages/games.scm:9253 +#: gnu/packages/games.scm:9255 msgid "" "The goal of the FlightGear project is to create a\n" "sophisticated flight simulator framework for use in research or academic\n" @@ -4585,14 +4698,14 @@ msgid "" "simulator." msgstr "" -#: gnu/packages/games.scm:9306 +#: gnu/packages/games.scm:9308 msgid "" "You, as a bunny, have to jump on your opponents to make them\n" "explode. It is a true multiplayer game; you cannot play this alone. You can\n" "play with up to four players simultaneously. It has network support." msgstr "" -#: gnu/packages/games.scm:9373 +#: gnu/packages/games.scm:9375 msgid "" "Hedgewars is a turn based strategy, artillery, action and comedy game,\n" "featuring the antics of pink hedgehogs with attitude as they battle from the\n" @@ -4602,7 +4715,7 @@ msgid "" "and bring the war to your enemy." msgstr "" -#: gnu/packages/games.scm:9407 +#: gnu/packages/games.scm:9409 msgid "" "The gruid module provides packages for easily building\n" "grid-based applications in Go. The library abstracts rendering and input for\n" @@ -4612,13 +4725,13 @@ msgid "" "application." msgstr "" -#: gnu/packages/games.scm:9437 +#: gnu/packages/games.scm:9439 msgid "" "The gruid-tcell module provides a Gruid driver for building\n" "terminal full-window applications." msgstr "" -#: gnu/packages/games.scm:9464 +#: gnu/packages/games.scm:9466 msgid "" "Harmonist: Dayoriah Clan Infiltration is a stealth\n" "coffee-break roguelike game. The game has a heavy focus on tactical\n" @@ -4628,7 +4741,7 @@ msgid "" "on items and player adaptability for character progression." msgstr "" -#: gnu/packages/games.scm:9573 +#: gnu/packages/games.scm:9575 msgid "" "Drascula: The Vampire Strikes Back is a classic humorous 2D\n" "point and click adventure game.\n" @@ -4640,7 +4753,7 @@ msgid "" "the World and demonstrating that he is even more evil than his brother Vlad." msgstr "" -#: gnu/packages/games.scm:9653 +#: gnu/packages/games.scm:9655 msgid "" "Lure of the Temptress is a classic 2D point and click adventure game.\n" "\n" @@ -4659,7 +4772,7 @@ msgid "" "Skorl. Maybe it would be an idea to try and escape..." msgstr "" -#: gnu/packages/games.scm:9752 +#: gnu/packages/games.scm:9754 msgid "" "Flight of the Amazon Queen is a 2D point-and-click\n" "adventure game set in the 1940s.\n" @@ -4676,7 +4789,7 @@ msgid "" "women and 6-foot-tall pygmies." msgstr "" -#: gnu/packages/games.scm:9852 +#: gnu/packages/games.scm:9854 msgid "" "Beneath a Steel Sky is a science-fiction thriller set in a bleak\n" "post-apocalyptic vision of the future. It revolves around Union City,\n" @@ -4699,7 +4812,7 @@ msgid "" "and to seek vengeance for the killing of his tribe." msgstr "" -#: gnu/packages/games.scm:9911 +#: gnu/packages/games.scm:9913 msgid "" "GNU Robots is a game in which you program a robot to explore a world\n" "full of enemies that can hurt it, obstacles and food to be eaten. The goal of\n" @@ -4707,14 +4820,14 @@ msgid "" "may be written in a plain text file in the Scheme programming language." msgstr "" -#: gnu/packages/games.scm:9981 +#: gnu/packages/games.scm:9983 msgid "" "Ri-li is a game in which you drive a wooden toy\n" "steam locomotive across many levels and collect all the coaches to\n" "win." msgstr "" -#: gnu/packages/games.scm:10037 +#: gnu/packages/games.scm:10039 msgid "" "FreeOrion is a turn-based space empire and galactic conquest (4X)\n" "computer game being designed and built by the FreeOrion project. Control an\n" @@ -4724,14 +4837,14 @@ msgid "" "remake of that series or any other game." msgstr "" -#: gnu/packages/games.scm:10093 +#: gnu/packages/games.scm:10095 msgid "" "Leela-zero is a Go engine with no human-provided knowledge, modeled after\n" "the AlphaGo Zero paper. The current best network weights file for the engine\n" "can be downloaded from @url{https://zero.sjeng.org/best-network}." msgstr "" -#: gnu/packages/games.scm:10171 +#: gnu/packages/games.scm:10173 msgid "" "This a tool for Go players which performs the following functions:\n" "@itemize\n" @@ -4743,7 +4856,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:10214 +#: gnu/packages/games.scm:10216 msgid "" "KTuberling is a drawing toy intended for small children and\n" "adults who remain young at heart. The game has no winner; the only purpose is\n" @@ -4762,7 +4875,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10260 +#: gnu/packages/games.scm:10262 msgid "" "Picmi is a number logic game in which cells in a grid have\n" "to be colored or left blank according to numbers given at the side of the\n" @@ -4771,7 +4884,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10297 +#: gnu/packages/games.scm:10299 msgid "" "Kolf is a miniature golf game for one to ten players. The\n" "game is played from an overhead view, with a short bar representing the golf\n" @@ -4790,13 +4903,13 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10341 +#: gnu/packages/games.scm:10343 msgid "" "Shared library and common files for kmahjongg, kshisen and\n" "other Mah Jongg like games." msgstr "" -#: gnu/packages/games.scm:10374 +#: gnu/packages/games.scm:10376 msgid "" "In KMahjongg the tiles are scrambled and staked on top of\n" "each other to resemble a certain shape. The player is then expected to remove\n" @@ -4808,7 +4921,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10416 +#: gnu/packages/games.scm:10418 msgid "" "KShisen is a solitaire-like game played using the standard\n" "set of Mahjong tiles. Unlike Mahjong however, KShisen has only one layer of\n" @@ -4817,7 +4930,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10471 +#: gnu/packages/games.scm:10473 msgid "" "Kajongg is the ancient Chinese board game for 4 players.\n" "\n" @@ -4832,7 +4945,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10513 +#: gnu/packages/games.scm:10515 msgid "" "KBreakout is similar to the classics breakout and xboing,\n" "featuring a number of added graphical enhancements and effects. You control a\n" @@ -4842,7 +4955,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10551 +#: gnu/packages/games.scm:10553 msgid "" "KMines is a classic Minesweeper game. The idea is to\n" "uncover all the squares without blowing up any mines. When a mine is blown\n" @@ -4851,7 +4964,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10588 +#: gnu/packages/games.scm:10590 msgid "" "Konquest is the KDE version of Gnu-Lactic Konquest. Players\n" "conquer other planets by sending ships to them. The goal is to build an\n" @@ -4862,7 +4975,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10627 +#: gnu/packages/games.scm:10629 msgid "" "KBounce is a single player arcade game with the elements of\n" "puzzle. It is played on a field, surrounded by wall, with two or more balls\n" @@ -4872,7 +4985,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10665 +#: gnu/packages/games.scm:10667 msgid "" "KBlocks is the classic Tetris-like falling blocks game.\n" "\n" @@ -4884,7 +4997,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10708 +#: gnu/packages/games.scm:10710 msgid "" "KSudoku is a Sudoku game and solver, supporting a range of\n" "2D and 3D Sudoku variants. In addition to playing Sudoku, it can print Sudoku\n" @@ -4913,7 +5026,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10763 +#: gnu/packages/games.scm:10765 msgid "" "KLines is a simple but highly addictive one player game.\n" "\n" @@ -4930,7 +5043,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10806 +#: gnu/packages/games.scm:10808 msgid "" "KGoldrunner is an action game where the hero runs through a\n" "maze, climbs stairs, dig holes and dodges enemies in order to collect all the\n" @@ -4944,7 +5057,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10849 +#: gnu/packages/games.scm:10851 msgid "" "KDiamond is a three-in-a-row game like Bejeweled. It\n" "features unlimited fun with randomly generated games and five difficulty\n" @@ -4953,7 +5066,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10885 +#: gnu/packages/games.scm:10887 msgid "" "KFourInLine is a board game for two players based on the\n" "Connect-Four game.\n" @@ -4964,7 +5077,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10924 +#: gnu/packages/games.scm:10926 msgid "" "KBlackbox is a game of hide and seek played on a grid of\n" "boxes where the computer has hidden several balls. The position of the hidden\n" @@ -4976,7 +5089,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10964 +#: gnu/packages/games.scm:10966 msgid "" "KNetWalk is a small game where you have to build up a\n" "computer network by rotating the wires to connect the terminals to the server.\n" @@ -4989,7 +5102,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11002 +#: gnu/packages/games.scm:11004 msgid "" "Bomber is a single player arcade game.\n" "\n" @@ -5005,7 +5118,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11047 +#: gnu/packages/games.scm:11049 msgid "" "Granatier is a clone of the classic Bomberman game,\n" "inspired by the work of the Clanbomber clone.\n" @@ -5013,7 +5126,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11085 +#: gnu/packages/games.scm:11087 msgid "" "KsirK is a multi-player network-enabled game. The goal of\n" "the game is simply to conquer the world by attacking your neighbors with your\n" @@ -5038,7 +5151,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11145 +#: gnu/packages/games.scm:11147 msgid "" "Palapeli is a jigsaw puzzle game. Unlike other games in\n" "that genre, you are not limited to aligning pieces on imaginary grids. The\n" @@ -5050,7 +5163,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11184 +#: gnu/packages/games.scm:11186 msgid "" "Kiriki is an addictive and fun dice game, designed to be\n" "played by as many as six players.\n" @@ -5061,7 +5174,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11224 +#: gnu/packages/games.scm:11226 msgid "" "Kigo is an open-source implementation of the popular Go\n" "game.\n" @@ -5078,7 +5191,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11269 +#: gnu/packages/games.scm:11271 msgid "" "Kubrick is a game based on the Rubik's Cube puzzle.\n" "\n" @@ -5091,7 +5204,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11309 +#: gnu/packages/games.scm:11311 msgid "" "Lieutnant Skat (from German \"Offiziersskat\") is a fun and\n" "engaging card game for two players, where the second player is either live\n" @@ -5102,7 +5215,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11347 +#: gnu/packages/games.scm:11349 msgid "" "Kapman is a clone of the well known game Pac-Man.\n" "\n" @@ -5114,7 +5227,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11386 +#: gnu/packages/games.scm:11388 msgid "" "KSpaceduel is a space battle game for one or two players,\n" "where two ships fly around a star in a struggle to be the only survivor.\n" @@ -5122,7 +5235,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11419 +#: gnu/packages/games.scm:11421 msgid "" "Bovo is a Gomoku (from Japanese 五目並べ - lit. \"five\n" "points\") like game for two players, where the opponents alternate in placing\n" @@ -5133,7 +5246,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11457 +#: gnu/packages/games.scm:11459 msgid "" "Killbots is a simple game of evading killer robots.\n" "\n" @@ -5147,7 +5260,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11499 +#: gnu/packages/games.scm:11501 msgid "" "KSnakeDuel is a fast action game where you steer a snake\n" "which has to eat food. While eating the snake grows. But once a player\n" @@ -5157,7 +5270,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11535 +#: gnu/packages/games.scm:11537 msgid "" "In Kollision you use mouse to control a small blue ball in a\n" "closed space environment filled with small red balls, which move about\n" @@ -5168,7 +5281,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11575 +#: gnu/packages/games.scm:11577 msgid "" "KBattleship is a Battle Ship game for KDE.\n" "\n" @@ -5179,7 +5292,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11615 +#: gnu/packages/games.scm:11617 msgid "" "KReversi is a simple one player strategy game played\n" "against the computer.\n" @@ -5192,7 +5305,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11655 +#: gnu/packages/games.scm:11657 msgid "" "KSquares is an implementation of the popular paper based\n" "game Squares. Two players take turns connecting dots on a grid to complete\n" @@ -5201,7 +5314,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11692 +#: gnu/packages/games.scm:11694 msgid "" "KJumpingcube is a simple tactical game for one or two\n" "players, played on a grid of numbered squares. Each turn, players compete for\n" @@ -5210,7 +5323,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11782 +#: gnu/packages/games.scm:11784 msgid "" "X-Moto is a challenging 2D motocross platform game, where\n" "physics play an all important role in the gameplay. You need to\n" @@ -5218,27 +5331,27 @@ msgid "" "the more difficult challenges." msgstr "" -#: gnu/packages/games.scm:11827 +#: gnu/packages/games.scm:11829 msgid "" "Eboard is a chess board interface for ICS (Internet Chess Servers)\n" "and chess engines." msgstr "" -#: gnu/packages/games.scm:11880 +#: gnu/packages/games.scm:11882 msgid "" "ChessX is a chess database. With ChessX you can operate on your\n" "collection of chess games in many ways: browse, edit, add, organize, analyze,\n" "etc. You can also play games on FICS or against an engine." msgstr "" -#: gnu/packages/games.scm:11935 +#: gnu/packages/games.scm:11937 msgid "" "Stockfish is a very strong chess engine. It is much stronger than the\n" "best human chess grandmasters. It can be used with UCI-compatible GUIs like\n" "ChessX." msgstr "" -#: gnu/packages/games.scm:11964 +#: gnu/packages/games.scm:11966 msgid "" "Barrage is a rather destructive action game that puts you on a shooting\n" "range with the objective to hit as many dummy targets as possible within\n" @@ -5247,7 +5360,7 @@ msgid "" "get high scores." msgstr "" -#: gnu/packages/games.scm:11990 +#: gnu/packages/games.scm:11992 msgid "" "This is a clone of the classic game BurgerTime. In it, you play\n" "the part of a chef who must create burgers by stepping repeatedly on\n" @@ -5257,7 +5370,7 @@ msgid "" "protect you." msgstr "" -#: gnu/packages/games.scm:12018 +#: gnu/packages/games.scm:12020 msgid "" "Seven Kingdoms, designed by Trevor Chan, brings a blend of Real-Time\n" "Strategy with the addition of trade, diplomacy, and espionage. The game\n" @@ -5267,7 +5380,7 @@ msgid "" "kingdom." msgstr "" -#: gnu/packages/games.scm:12134 +#: gnu/packages/games.scm:12136 msgid "" "In the grand tradition of Marble Madness and Super Monkey Ball,\n" "Neverball has you guide a rolling ball through dangerous territory. Balance\n" @@ -5277,13 +5390,13 @@ msgid "" "game." msgstr "" -#: gnu/packages/games.scm:12210 +#: gnu/packages/games.scm:12212 msgid "" "With PokerTH you can play the Texas holdem poker game, either against\n" "computer opponents or against real players online." msgstr "" -#: gnu/packages/games.scm:12281 +#: gnu/packages/games.scm:12283 msgid "" "Xblackjack is a MOTIF/OLIT based tool constructed to get you ready for\n" "the casino. It was inspired by a book called \"Beat the Dealer\" by Edward\n" @@ -5292,13 +5405,13 @@ msgid "" "System\" (high-low system)." msgstr "" -#: gnu/packages/games.scm:12321 +#: gnu/packages/games.scm:12323 msgid "" "Pilot your ship inside a planet to find and rescue the colonists trapped\n" "inside the Zenith Colony." msgstr "" -#: gnu/packages/games.scm:12341 +#: gnu/packages/games.scm:12343 msgid "" "Provides a large set of Go-related services for X11:\n" "@itemize\n" @@ -5309,7 +5422,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:12401 +#: gnu/packages/games.scm:12403 msgid "" "Passage is meant to be a memento mori game. It presents an entire life,\n" "from young adulthood through old age and death, in the span of five minutes.\n" @@ -5318,21 +5431,21 @@ msgid "" "there's no right way to interpret it." msgstr "" -#: gnu/packages/games.scm:12435 +#: gnu/packages/games.scm:12437 msgid "" "High performance animated desktop background setter for\n" "X11 that won't set your CPU on fire, drain your laptop battery, or lower video\n" "game FPS." msgstr "" -#: gnu/packages/games.scm:12465 +#: gnu/packages/games.scm:12467 msgid "" "Curse of War is a fast-paced action strategy game originally\n" "implemented using ncurses user interface. An SDL graphical version is also\n" "available." msgstr "" -#: gnu/packages/games.scm:12496 +#: gnu/packages/games.scm:12498 msgid "" "Schiffbruch is a mix of building, strategy and adventure and gets played\n" "with a two-dimensional view. The game deals with the consequences of a ship\n" @@ -5341,13 +5454,13 @@ msgid "" "get attention, so you get found." msgstr "" -#: gnu/packages/games.scm:12556 +#: gnu/packages/games.scm:12558 msgid "" "This package provides port of Prince of Persia, based on the\n" "disassembly of the DOS version, extended with new features." msgstr "" -#: gnu/packages/games.scm:12587 +#: gnu/packages/games.scm:12589 #, scheme-format msgid "" "@code{fheroes2} is an implementation of Heroes of Might and\n" @@ -5443,7 +5556,7 @@ msgid "" "from Markdown files." msgstr "" -#: gnu/packages/gettext.scm:311 +#: gnu/packages/gettext.scm:304 msgid "" "The po4a (PO for anything) project goal is to ease translations (and\n" "more interestingly, the maintenance of translations) using gettext tools on\n" @@ -5526,18 +5639,18 @@ msgid "" "system. It was forked from the GNU Image Manipulation Program." msgstr "" -#: gnu/packages/gnome.scm:284 +#: gnu/packages/gnome.scm:288 msgid "GUPnP-IGD is a library to handle UPnP IGD port mapping." msgstr "" -#: gnu/packages/gnome.scm:340 +#: gnu/packages/gnome.scm:344 msgid "" "Brasero is an application to burn CD/DVD for the Gnome\n" "Desktop. It is designed to be as simple as possible and has some unique\n" "features to enable users to create their discs easily and quickly." msgstr "" -#: gnu/packages/gnome.scm:372 +#: gnu/packages/gnome.scm:376 msgid "" "Libcloudproviders is a DBus API that allows cloud storage sync\n" "clients to expose their services. Clients such as file managers and desktop\n" @@ -5545,19 +5658,19 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:444 +#: gnu/packages/gnome.scm:448 msgid "" "LibGRSS is a Glib abstraction to handle feeds in RSS, Atom,\n" "and other formats." msgstr "" -#: gnu/packages/gnome.scm:472 +#: gnu/packages/gnome.scm:476 msgid "" "GNOME-JS-Common provides common modules for GNOME JavaScript\n" "bindings." msgstr "" -#: gnu/packages/gnome.scm:555 +#: gnu/packages/gnome.scm:559 msgid "" "Seed is a library and interpreter, dynamically bridging\n" "(through GObjectIntrospection) the WebKit JavaScriptCore engine, with the\n" @@ -5566,21 +5679,21 @@ msgid "" "in JavaScript." msgstr "" -#: gnu/packages/gnome.scm:611 +#: gnu/packages/gnome.scm:615 msgid "" "Libdmapsharing is a library which allows programs to access,\n" "share and control the playback of media content using DMAP (DAAP, DPAP & DACP).\n" "It is written in C using GObject and libsoup." msgstr "" -#: gnu/packages/gnome.scm:644 +#: gnu/packages/gnome.scm:648 msgid "" "GTX is a small collection of convenience functions intended to\n" "enhance the GLib testing framework. With specific emphasis on easing the pain\n" "of writing test cases for asynchronous interactions." msgstr "" -#: gnu/packages/gnome.scm:721 +#: gnu/packages/gnome.scm:725 msgid "" "Dee is a library that uses DBus to provide objects allowing\n" "you to create Model-View-Controller type programs across DBus. It also consists\n" @@ -5588,7 +5701,7 @@ msgid "" "of known objects without needing a central registrar." msgstr "" -#: gnu/packages/gnome.scm:802 +#: gnu/packages/gnome.scm:806 msgid "" "Zeitgeist is a service which logs the users’s activities and\n" "events, anywhere from files opened to websites visited and conversations. It\n" @@ -5597,27 +5710,27 @@ msgid "" "patterns." msgstr "" -#: gnu/packages/gnome.scm:869 +#: gnu/packages/gnome.scm:871 msgid "" "GNOME Recipes helps you discover what to cook today,\n" "tomorrow, the rest of the week and for special occasions." msgstr "" -#: gnu/packages/gnome.scm:939 +#: gnu/packages/gnome.scm:940 msgid "" "GNOME Photos is a simple and elegant replacement for using a\n" "file manager to deal with photos. Enhance, crop and edit in a snap. Seamless\n" "cloud integration is offered through GNOME Online Accounts." msgstr "" -#: gnu/packages/gnome.scm:1007 +#: gnu/packages/gnome.scm:1008 msgid "" "GNOME Music is the new GNOME music playing application that\n" "aims to combine an elegant and immersive browsing experience with simple\n" "and straightforward controls." msgstr "" -#: gnu/packages/gnome.scm:1028 +#: gnu/packages/gnome.scm:1029 msgid "" "PortableXDR is an implementation of External Data\n" "Representation (XDR) Library. It is a standard data serialization format, for\n" @@ -5625,25 +5738,25 @@ msgid "" "between different kinds of computer systems." msgstr "" -#: gnu/packages/gnome.scm:1066 +#: gnu/packages/gnome.scm:1067 msgid "" "Tepl is a library that eases the development of\n" "GtkSourceView-based text editors and IDEs." msgstr "" -#: gnu/packages/gnome.scm:1107 +#: gnu/packages/gnome.scm:1108 msgid "" "krb5-auth-dialog is a simple dialog that monitors Kerberos\n" "tickets, and pops up a dialog when they are about to expire." msgstr "" -#: gnu/packages/gnome.scm:1132 +#: gnu/packages/gnome.scm:1133 msgid "" "Notification-Daemon is the server implementation of the\n" "freedesktop.org desktop notification specification." msgstr "" -#: gnu/packages/gnome.scm:1168 +#: gnu/packages/gnome.scm:1169 msgid "" "The mm-common module provides the build infrastructure\n" "and utilities shared among the GNOME C++ binding libraries. Release\n" @@ -5651,55 +5764,55 @@ msgid "" "Library reference documentation." msgstr "" -#: gnu/packages/gnome.scm:1214 +#: gnu/packages/gnome.scm:1215 msgid "" "PhoDav was initially developed as a file-sharing mechanism for Spice,\n" "but it is generic enough to be reused in other projects,\n" "in particular in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1267 +#: gnu/packages/gnome.scm:1268 msgid "" "GNOME Color Manager is a session framework that makes\n" "it easy to manage, install and generate color profiles\n" "in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1319 +#: gnu/packages/gnome.scm:1320 msgid "" "GNOME Online Miners provides a set of crawlers that\n" "go through your online content and index them locally in Tracker.\n" "It has miners for Facebook, Flickr, Google, ownCloud and SkyDrive." msgstr "" -#: gnu/packages/gnome.scm:1352 +#: gnu/packages/gnome.scm:1353 msgid "" "This package provides a library to handle resource discovery\n" "and announcement over @acronym{SSDP, Simple Service Discovery Protocol} and\n" "a debugging tool, @command{gssdp-device-sniffer}." msgstr "" -#: gnu/packages/gnome.scm:1391 +#: gnu/packages/gnome.scm:1392 msgid "" "This package provides GUPnP, an object-oriented framework\n" "for creating UPnP devices and control points, written in C using\n" "@code{GObject} and @code{libsoup}." msgstr "" -#: gnu/packages/gnome.scm:1423 +#: gnu/packages/gnome.scm:1424 msgid "" "This package provides a small utility library to\n" "support DLNA-related tasks such as media profile guessing, transcoding to a\n" "given profile, etc. DLNA is a subset of UPnP A/V." msgstr "" -#: gnu/packages/gnome.scm:1453 +#: gnu/packages/gnome.scm:1454 msgid "" "This package provides a small library for handling\n" "and implementation of UPnP A/V profiles." msgstr "" -#: gnu/packages/gnome.scm:1478 +#: gnu/packages/gnome.scm:1479 msgid "" "The libmediaart library is the foundation for media art caching,\n" "extraction, and lookup for applications on the desktop." @@ -5712,14 +5825,14 @@ msgid "" "tour of all gnome components and allows the user to set them up." msgstr "" -#: gnu/packages/gnome.scm:1584 +#: gnu/packages/gnome.scm:1583 msgid "" "GNOME User Share is a small package that binds together\n" "various free software projects to bring easy to use user-level file\n" "sharing to the masses." msgstr "" -#: gnu/packages/gnome.scm:1639 +#: gnu/packages/gnome.scm:1638 msgid "" "Sushi is a DBus-activated service that allows applications\n" "to preview files on the GNOME desktop." @@ -5771,7 +5884,7 @@ msgid "" "and system administrators." msgstr "" -#: gnu/packages/gnome.scm:1946 +#: gnu/packages/gnome.scm:1950 msgid "" "Dia can be used to draw different types of diagrams, and\n" "includes support for UML static structure diagrams (class diagrams), entity\n" @@ -5779,28 +5892,28 @@ msgid "" "formats like PNG, SVG, PDF and EPS." msgstr "" -#: gnu/packages/gnome.scm:1991 +#: gnu/packages/gnome.scm:1995 msgid "" "libgdata is a GLib-based library for accessing online service APIs using\n" "the GData protocol — most notably, Google's services. It provides APIs to\n" "access the common Google services, and has full asynchronous support." msgstr "" -#: gnu/packages/gnome.scm:2019 +#: gnu/packages/gnome.scm:2023 msgid "" "libgxps is a GObject-based library for handling and rendering XPS\n" "documents. This package also contains binaries that can convert XPS documents\n" "to other formats." msgstr "" -#: gnu/packages/gnome.scm:2060 +#: gnu/packages/gnome.scm:2063 msgid "" "Characters is a simple utility application to find\n" "and insert unusual characters. It allows you to quickly find the\n" "character you are looking for by searching for keywords." msgstr "" -#: gnu/packages/gnome.scm:2081 +#: gnu/packages/gnome.scm:2084 msgid "" "gnome-common contains various files needed to bootstrap\n" "GNOME modules built from Git. It contains a common \"autogen.sh\" script that\n" @@ -5808,13 +5921,13 @@ msgid "" "commonly used macros." msgstr "" -#: gnu/packages/gnome.scm:2142 +#: gnu/packages/gnome.scm:2145 msgid "" "GNOME Contacts organizes your contact information from online and\n" "offline sources, providing a centralized place for managing your contacts." msgstr "" -#: gnu/packages/gnome.scm:2222 +#: gnu/packages/gnome.scm:2225 msgid "" "The libgnome-desktop library provides API shared by several applications\n" "on the desktop, but that cannot live in the platform for various reasons.\n" @@ -5824,40 +5937,40 @@ msgid "" "The gnome-about program helps find which version of GNOME is installed." msgstr "" -#: gnu/packages/gnome.scm:2257 +#: gnu/packages/gnome.scm:2260 msgid "" "Gnome-doc-utils is a collection of documentation utilities for the\n" "Gnome project. It includes xml2po tool which makes it easier to translate\n" "and keep up to date translations of documentation." msgstr "" -#: gnu/packages/gnome.scm:2309 +#: gnu/packages/gnome.scm:2311 msgid "Disk management utility for GNOME." msgstr "" -#: gnu/packages/gnome.scm:2352 +#: gnu/packages/gnome.scm:2353 msgid "" "Application to show you the fonts installed on your computer\n" "for your use as thumbnails. Selecting any thumbnails shows the full view of how\n" "the font would look under various sizes." msgstr "" -#: gnu/packages/gnome.scm:2420 +#: gnu/packages/gnome.scm:2421 msgid "" "The GCR package contains libraries used for displaying certificates and\n" "accessing key stores. It also provides the viewer for crypto files on the\n" "GNOME Desktop." msgstr "" -#: gnu/packages/gnome.scm:2459 +#: gnu/packages/gnome.scm:2460 msgid "This library provides docking features for gtk+." msgstr "" -#: gnu/packages/gnome.scm:2505 +#: gnu/packages/gnome.scm:2506 msgid "Client library to access passwords from the GNOME keyring." msgstr "" -#: gnu/packages/gnome.scm:2575 +#: gnu/packages/gnome.scm:2576 msgid "" "gnome-keyring is a program that keeps passwords and other secrets for\n" "users. It is run as a daemon in the session, similar to ssh-agent, and other\n" @@ -5876,13 +5989,13 @@ msgid "" "on the GNOME Desktop with a single simple application." msgstr "" -#: gnu/packages/gnome.scm:2693 +#: gnu/packages/gnome.scm:2692 msgid "" "Gsettings-desktop-schemas contains a collection of GSettings\n" "schemas for settings shared by various components of the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:2729 +#: gnu/packages/gnome.scm:2728 msgid "" "Liblarch is a Python library built to easily handle data structures such\n" "as lists, trees and acyclic graphs. There's also a GTK binding that will\n" @@ -5893,7 +6006,7 @@ msgid "" "and how they are displayed (View)." msgstr "" -#: gnu/packages/gnome.scm:2790 +#: gnu/packages/gnome.scm:2789 msgid "" "Getting Things GNOME! (GTG) is a personal tasks and TODO list items\n" "organizer for the GNOME desktop environment inspired by the Getting Things\n" @@ -5903,24 +6016,24 @@ msgid "" "know, from small tasks to large projects." msgstr "" -#: gnu/packages/gnome.scm:2829 +#: gnu/packages/gnome.scm:2828 msgid "" "To help with the transition to the Freedesktop Icon Naming\n" "Specification, the icon naming utility maps the icon names used by the\n" "GNOME and KDE desktops to the icon names proposed in the specification." msgstr "" -#: gnu/packages/gnome.scm:2858 +#: gnu/packages/gnome.scm:2857 msgid "Icons for the GNOME desktop." msgstr "Ikony dla środowiska GNOME" -#: gnu/packages/gnome.scm:2897 +#: gnu/packages/gnome.scm:2896 msgid "" "This is an icon theme that follows the Tango visual\n" "guidelines." msgstr "" -#: gnu/packages/gnome.scm:2927 +#: gnu/packages/gnome.scm:2926 msgid "" "The shared-mime-info package contains the core database of common types\n" "and the update-mime-database command used to extend it. It requires glib2 to\n" @@ -5929,18 +6042,18 @@ msgid "" "database is translated at Transifex." msgstr "" -#: gnu/packages/gnome.scm:3012 +#: gnu/packages/gnome.scm:3011 msgid "" "system-config-printer is a CUPS administration tool. It's written in\n" "Python using GTK+, and uses the @acronym{IPP, Internet Printing Protocol} when\n" "configuring CUPS." msgstr "" -#: gnu/packages/gnome.scm:3036 +#: gnu/packages/gnome.scm:3035 msgid "Freedesktop icon theme." msgstr "Motyw ikon Freedesktop" -#: gnu/packages/gnome.scm:3085 +#: gnu/packages/gnome.scm:3084 msgid "" "Libnotify is a library that sends desktop notifications to a\n" "notification daemon, as defined in the Desktop Notifications spec. These\n" @@ -5948,7 +6061,7 @@ msgid "" "some form of information without getting in the user's way." msgstr "" -#: gnu/packages/gnome.scm:3132 +#: gnu/packages/gnome.scm:3131 msgid "" "Libpeas is a gobject-based plugin engine, targeted at giving every\n" "application the chance to assume its own extensibility. It also has a set of\n" @@ -5957,21 +6070,21 @@ msgid "" "API." msgstr "" -#: gnu/packages/gnome.scm:3168 +#: gnu/packages/gnome.scm:3167 msgid "" "GtkGLExt is an OpenGL extension to GTK+. It provides\n" "additional GDK objects which support OpenGL rendering in GTK+ and GtkWidget\n" "API add-ons to make GTK+ widgets OpenGL-capable." msgstr "" -#: gnu/packages/gnome.scm:3248 +#: gnu/packages/gnome.scm:3247 msgid "" "Glade is a rapid application development (RAD) tool to\n" "enable quick & easy development of user interfaces for the GTK+ toolkit and\n" "the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:3280 +#: gnu/packages/gnome.scm:3279 msgid "" "Libcroco is a standalone CSS2 parsing and manipulation library.\n" "The parser provides a low level event driven SAC-like API and a CSS object\n" @@ -5979,13 +6092,13 @@ msgid "" "XML/CSS rendering engine." msgstr "" -#: gnu/packages/gnome.scm:3347 +#: gnu/packages/gnome.scm:3346 msgid "" "Libgsf aims to provide an efficient extensible I/O abstraction\n" "for dealing with different structured file formats." msgstr "" -#: gnu/packages/gnome.scm:3526 +#: gnu/packages/gnome.scm:3525 msgid "" "Librsvg is a library to render SVG images to Cairo surfaces.\n" "GNOME uses this to render SVG icons. Outside of GNOME, other desktop\n" @@ -5993,7 +6106,7 @@ msgid "" "diagrams." msgstr "" -#: gnu/packages/gnome.scm:3649 +#: gnu/packages/gnome.scm:3648 msgid "" "Libidl is a library for creating trees of CORBA Interface\n" "Definition Language (idl) files, which is a specification for defining\n" @@ -6002,82 +6115,82 @@ msgid "" "functionality was designed to be as reusable and portable as possible." msgstr "" -#: gnu/packages/gnome.scm:3704 +#: gnu/packages/gnome.scm:3703 msgid "" "ORBit2 is a CORBA 2.4-compliant Object Request Broker (orb)\n" "featuring mature C, C++ and Python bindings." msgstr "" -#: gnu/packages/gnome.scm:3758 +#: gnu/packages/gnome.scm:3757 msgid "" "Bonobo is a framework for creating reusable components for\n" "use in GNOME applications, built on top of CORBA." msgstr "" -#: gnu/packages/gnome.scm:3789 +#: gnu/packages/gnome.scm:3788 msgid "" "Gconf is a system for storing application preferences. It\n" "is intended for user preferences; not arbitrary data storage." msgstr "" -#: gnu/packages/gnome.scm:3823 +#: gnu/packages/gnome.scm:3822 msgid "" "GNOME Mime Data is a module which contains the base MIME\n" "and Application database for GNOME. The data stored by this module is\n" "designed to be accessed through the MIME functions in GnomeVFS." msgstr "" -#: gnu/packages/gnome.scm:3863 +#: gnu/packages/gnome.scm:3862 msgid "" "GnomeVFS is the core library used to access files and folders in GNOME\n" "applications. It provides a file system abstraction which allows applications\n" "to access local and remote files with a single consistent API." msgstr "" -#: gnu/packages/gnome.scm:3904 +#: gnu/packages/gnome.scm:3903 msgid "" "The libgnome library provides a number of useful routines\n" "for building modern applications, including session management, activation of\n" "files and URIs, and displaying help." msgstr "" -#: gnu/packages/gnome.scm:3928 +#: gnu/packages/gnome.scm:3927 msgid "" "Libart is a 2D drawing library intended as a\n" "high-quality vector-based 2D library with antialiasing and alpha composition." msgstr "" -#: gnu/packages/gnome.scm:3955 +#: gnu/packages/gnome.scm:3954 msgid "" "The GnomeCanvas widget provides a flexible widget for\n" "creating interactive structured graphics." msgstr "" -#: gnu/packages/gnome.scm:3977 +#: gnu/packages/gnome.scm:3976 msgid "C++ bindings to the GNOME Canvas library." msgstr "" -#: gnu/packages/gnome.scm:4003 +#: gnu/packages/gnome.scm:4002 msgid "" "The libgnomeui library provides additional widgets for\n" "applications. Many of the widgets from libgnomeui have already been\n" "ported to GTK+." msgstr "" -#: gnu/packages/gnome.scm:4029 +#: gnu/packages/gnome.scm:4028 msgid "" "Libglade is a library that provides interfaces for loading\n" "graphical interfaces described in glade files and for accessing the\n" "widgets built in the loading process." msgstr "" -#: gnu/packages/gnome.scm:4071 +#: gnu/packages/gnome.scm:4070 msgid "" "The Bonobo UI library provides a number of user interface\n" "controls using the Bonobo component framework." msgstr "" -#: gnu/packages/gnome.scm:4098 +#: gnu/packages/gnome.scm:4097 msgid "" "Libwnck is the Window Navigator Construction Kit, a library for use in\n" "writing pagers, tasklists, and more generally applications that are dealing\n" @@ -6085,11 +6198,11 @@ msgid "" "Hints specification (EWMH)." msgstr "" -#: gnu/packages/gnome.scm:4148 +#: gnu/packages/gnome.scm:4147 msgid "A GLib/GTK+ set of document-centric objects and utilities." msgstr "" -#: gnu/packages/gnome.scm:4234 +#: gnu/packages/gnome.scm:4233 msgid "" "GNUmeric is a GNU spreadsheet application, running under GNOME. It is\n" "interoperable with other spreadsheet applications. It has a vast array of\n" @@ -6098,11 +6211,11 @@ msgid "" "engineering." msgstr "" -#: gnu/packages/gnome.scm:4290 +#: gnu/packages/gnome.scm:4289 msgid "Drawing is a basic image editor aiming at the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:4326 +#: gnu/packages/gnome.scm:4325 msgid "The default GNOME 3 themes (Adwaita and some accessibility themes)." msgstr "" @@ -6121,7 +6234,7 @@ msgid "" "targeting the GNOME stack simple." msgstr "" -#: gnu/packages/gnome.scm:4481 +#: gnu/packages/gnome.scm:4482 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, and a minimal sample application (vte) using that. Vte is mainly used in\n" @@ -6129,34 +6242,34 @@ msgid "" "editors, IDEs, etc." msgstr "" -#: gnu/packages/gnome.scm:4505 +#: gnu/packages/gnome.scm:4506 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, this fork provides additional functions exposed for keyboard text\n" "selection and URL hints." msgstr "" -#: gnu/packages/gnome.scm:4585 +#: gnu/packages/gnome.scm:4586 msgid "" "Vinagre is a remote display client supporting the VNC, SPICE\n" "and RDP protocols." msgstr "" -#: gnu/packages/gnome.scm:4631 +#: gnu/packages/gnome.scm:4633 msgid "" "Dconf is a low-level configuration system. Its main purpose\n" "is to provide a backend to GSettings on platforms that don't already have\n" "configuration storage systems." msgstr "" -#: gnu/packages/gnome.scm:4661 +#: gnu/packages/gnome.scm:4663 msgid "" "JSON-GLib is a library providing serialization and\n" "described by RFC 4627. It implements a full JSON parser and generator using\n" "GLib and GObject, and integrates JSON with GLib data types." msgstr "" -#: gnu/packages/gnome.scm:4760 +#: gnu/packages/gnome.scm:4762 msgid "" "LibXklavier is a library providing high-level API for X Keyboard\n" "Extension known as XKB. This library is intended to support XFree86 and other\n" @@ -6164,13 +6277,13 @@ msgid "" "indicators etc)." msgstr "" -#: gnu/packages/gnome.scm:4788 +#: gnu/packages/gnome.scm:4790 msgid "" "This package provides Python bindings to librsvg, the SVG rendering\n" "library." msgstr "" -#: gnu/packages/gnome.scm:4829 +#: gnu/packages/gnome.scm:4831 msgid "" "Glib-networking contains the implementations of certain GLib networking\n" "features that cannot be implemented directly in GLib itself because of their\n" @@ -6180,26 +6293,26 @@ msgid "" "from the GSettings schemas in gsettings-desktop-schemas." msgstr "" -#: gnu/packages/gnome.scm:4866 +#: gnu/packages/gnome.scm:4868 msgid "" "This library was designed to make it easier to access web services that\n" "claim to be \"RESTful\". It includes convenience wrappers for libsoup and\n" "libxml to ease remote use of the RESTful API." msgstr "" -#: gnu/packages/gnome.scm:4931 +#: gnu/packages/gnome.scm:4933 msgid "" "LibSoup is an HTTP client/server library for GNOME. It uses GObjects\n" "and the GLib main loop, to integrate well with GNOME applications." msgstr "" -#: gnu/packages/gnome.scm:5035 +#: gnu/packages/gnome.scm:5037 msgid "" "Libsecret is a GObject based library for storing and retrieving passwords\n" "and other secrets. It communicates with the \"Secret Service\" using DBus." msgstr "" -#: gnu/packages/gnome.scm:5074 +#: gnu/packages/gnome.scm:5076 msgid "" "Five or More is a game where you try to align\n" " five or more objects of the same color and shape causing them to disappear.\n" @@ -6207,19 +6320,19 @@ msgid "" " Try to last as long as possible." msgstr "" -#: gnu/packages/gnome.scm:5116 +#: gnu/packages/gnome.scm:5118 msgid "" "Mines (previously gnomine) is a puzzle game where you locate mines\n" "floating in an ocean using only your brain and a little bit of luck." msgstr "" -#: gnu/packages/gnome.scm:5157 +#: gnu/packages/gnome.scm:5159 msgid "" "MultiWriter can be used to write an ISO file to multiple USB devices at\n" "once." msgstr "" -#: gnu/packages/gnome.scm:5197 +#: gnu/packages/gnome.scm:5198 msgid "" "Sudoku is a Japanese logic game that exploded in popularity in 2005.\n" "GNOME Sudoku is meant to have an interface as simple and unobstrusive as\n" @@ -6227,7 +6340,7 @@ msgid "" "more fun." msgstr "" -#: gnu/packages/gnome.scm:5247 +#: gnu/packages/gnome.scm:5248 msgid "" "GNOME Terminal is a terminal emulator application for accessing a\n" "UNIX shell environment which can be used to run programs available on\n" @@ -6237,14 +6350,14 @@ msgid "" "keyboard shortcuts." msgstr "" -#: gnu/packages/gnome.scm:5319 +#: gnu/packages/gnome.scm:5320 msgid "" "Colord is a system service that makes it easy to manage,\n" "install and generate color profiles to accurately color manage input and\n" "output devices." msgstr "" -#: gnu/packages/gnome.scm:5390 +#: gnu/packages/gnome.scm:5391 msgid "" "Geoclue is a D-Bus service that provides location\n" "information. The primary goal of the Geoclue project is to make creating\n" @@ -6253,7 +6366,7 @@ msgid "" "permission from user." msgstr "" -#: gnu/packages/gnome.scm:5434 +#: gnu/packages/gnome.scm:5435 msgid "" "geocode-glib is a convenience library for geocoding (finding longitude,\n" "and latitude from an address) and reverse geocoding (finding an address from\n" @@ -6261,7 +6374,7 @@ msgid "" "faster results and to avoid unnecessary server load." msgstr "" -#: gnu/packages/gnome.scm:5510 +#: gnu/packages/gnome.scm:5511 msgid "" "UPower is an abstraction for enumerating power devices,\n" "listening to device events and querying history and statistics. Any\n" @@ -6269,13 +6382,13 @@ msgid "" "service via the system message bus." msgstr "" -#: gnu/packages/gnome.scm:5555 +#: gnu/packages/gnome.scm:5557 msgid "" "libgweather is a library to access weather information from online\n" "services for numerous locations." msgstr "" -#: gnu/packages/gnome.scm:5639 +#: gnu/packages/gnome.scm:5640 msgid "" "This package contains the daemon responsible for setting the various\n" "parameters of a GNOME session and the applications that run under it. It\n" @@ -6283,19 +6396,19 @@ msgid "" "settings, themes, mouse settings, and startup of other daemons." msgstr "" -#: gnu/packages/gnome.scm:5670 +#: gnu/packages/gnome.scm:5671 msgid "" "Totem-pl-parser is a GObjects-based library to parse and save\n" "playlists in a variety of formats." msgstr "" -#: gnu/packages/gnome.scm:5703 +#: gnu/packages/gnome.scm:5704 msgid "" "Aisleriot (also known as Solitaire or sol) is a collection of card games\n" "which are easy to play with the aid of a mouse." msgstr "" -#: gnu/packages/gnome.scm:5729 +#: gnu/packages/gnome.scm:5730 msgid "" "Amtk is the acronym for @acronym{Amtk, Actions Menus and Toolbars Kit}.\n" "It is a basic GtkUIManager replacement based on GAction. It is suitable for\n" @@ -6374,13 +6487,13 @@ msgid "" "discovery protocols." msgstr "" -#: gnu/packages/gnome.scm:6324 +#: gnu/packages/gnome.scm:6323 msgid "" "Totem is a simple yet featureful media player for GNOME\n" "which can read a large number of file formats." msgstr "" -#: gnu/packages/gnome.scm:6415 +#: gnu/packages/gnome.scm:6414 msgid "" "Rhythmbox is a music playing application for GNOME. It\n" "supports playlists, song ratings, and any codecs installed through gstreamer." @@ -6411,7 +6524,7 @@ msgid "" "part of udev-extras, then udev, then systemd. It's now a project on its own." msgstr "" -#: gnu/packages/gnome.scm:6611 +#: gnu/packages/gnome.scm:6610 msgid "" "GVFS is a userspace virtual file system designed to work with the I/O\n" "abstraction of GIO. It contains a GIO module that seamlessly adds GVFS\n" @@ -6422,7 +6535,7 @@ msgid "" "DAV, and others." msgstr "" -#: gnu/packages/gnome.scm:6652 +#: gnu/packages/gnome.scm:6651 msgid "" "GUsb is a GObject wrapper for libusb1 that makes it easy to do\n" "asynchronous control, bulk and interrupt transfers with proper cancellation\n" @@ -6430,7 +6543,7 @@ msgid "" "USB transfers with your high-level application or system daemon." msgstr "" -#: gnu/packages/gnome.scm:6706 +#: gnu/packages/gnome.scm:6705 msgid "" "Document Scanner is an easy-to-use application that lets you connect your\n" "scanner and quickly capture images and documents in an appropriate format. It\n" @@ -6438,25 +6551,25 @@ msgid "" "almost all of them." msgstr "" -#: gnu/packages/gnome.scm:6778 +#: gnu/packages/gnome.scm:6777 msgid "" "Eolie is a new web browser for GNOME. It features Firefox sync support,\n" "a secret password store, an adblocker, and a modern UI." msgstr "" -#: gnu/packages/gnome.scm:6855 +#: gnu/packages/gnome.scm:6854 msgid "" "Epiphany is a GNOME web browser targeted at non-technical users. Its\n" "principles are simplicity and standards compliance." msgstr "" -#: gnu/packages/gnome.scm:6914 +#: gnu/packages/gnome.scm:6913 msgid "" "D-Feet is a D-Bus debugger, which can be used to inspect D-Bus interfaces\n" "of running programs and invoke methods on those interfaces." msgstr "" -#: gnu/packages/gnome.scm:6944 +#: gnu/packages/gnome.scm:6943 msgid "" "Yelp-XSL is a collection of programs and data files to help\n" "you build, maintain, and distribute documentation. It provides XSLT stylesheets\n" @@ -6466,14 +6579,14 @@ msgid "" "jQuery.Syntax JavaScript libraries." msgstr "" -#: gnu/packages/gnome.scm:6983 +#: gnu/packages/gnome.scm:6982 msgid "" "Yelp is the help viewer in Gnome. It natively views Mallard, DocBook,\n" "man, info, and HTML documents. It can locate documents according to the\n" "freedesktop.org help system specification." msgstr "" -#: gnu/packages/gnome.scm:7013 +#: gnu/packages/gnome.scm:7012 msgid "" "Yelp-tools is a collection of scripts and build utilities to help create,\n" "manage, and publish documentation for Yelp and the web. Most of the heavy\n" @@ -6481,13 +6594,13 @@ msgid "" "wraps things up in a developer-friendly way." msgstr "" -#: gnu/packages/gnome.scm:7051 +#: gnu/packages/gnome.scm:7050 msgid "" "Libgee is a utility library providing GObject-based interfaces and\n" "classes for commonly used data structures." msgstr "" -#: gnu/packages/gnome.scm:7079 +#: gnu/packages/gnome.scm:7078 msgid "" "Gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. It\n" "allows for GNOME applications to easily inspect and update EXIF, IPTC, and XMP\n" @@ -6502,7 +6615,7 @@ msgid "" "share them with others via social networking and more." msgstr "" -#: gnu/packages/gnome.scm:7168 +#: gnu/packages/gnome.scm:7169 msgid "" "File Roller is an archive manager for the GNOME desktop\n" "environment that allows users to view, unpack, and create compressed archives\n" @@ -6515,25 +6628,25 @@ msgid "" "configuration program to choose applications starting on login." msgstr "" -#: gnu/packages/gnome.scm:7284 +#: gnu/packages/gnome.scm:7287 msgid "" "Gjs is a javascript binding for GNOME. It's mainly based on spidermonkey\n" "javascript engine and the GObject introspection framework." msgstr "" -#: gnu/packages/gnome.scm:7381 +#: gnu/packages/gnome.scm:7383 msgid "" "While aiming at simplicity and ease of use, gedit is a\n" "powerful general purpose text editor." msgstr "" -#: gnu/packages/gnome.scm:7405 +#: gnu/packages/gnome.scm:7407 msgid "" "Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you\n" "to display dialog boxes from the commandline and shell scripts." msgstr "" -#: gnu/packages/gnome.scm:7595 +#: gnu/packages/gnome.scm:7598 msgid "" "Mutter is a window and compositing manager that displays and manages your\n" "desktop via OpenGL. Mutter combines a sophisticated display engine using the\n" @@ -6541,7 +6654,7 @@ msgid "" "window manager." msgstr "" -#: gnu/packages/gnome.scm:7653 +#: gnu/packages/gnome.scm:7656 msgid "" "GNOME Online Accounts provides interfaces so that applications and\n" "libraries in GNOME can access the user's online accounts. It has providers\n" @@ -6549,20 +6662,20 @@ msgid "" "Microsoft Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos." msgstr "" -#: gnu/packages/gnome.scm:7740 +#: gnu/packages/gnome.scm:7743 msgid "" "This package provides a unified backend for programs that work with\n" "contacts, tasks, and calendar information. It was originally developed for\n" "Evolution (hence the name), but is now used by other packages as well." msgstr "" -#: gnu/packages/gnome.scm:7803 +#: gnu/packages/gnome.scm:7806 msgid "" "Caribou is an input assistive technology intended for switch and pointer\n" "users." msgstr "" -#: gnu/packages/gnome.scm:7953 +#: gnu/packages/gnome.scm:7958 msgid "" "NetworkManager is a system network service that manages your network\n" "devices and connections, attempting to keep active network connectivity when\n" @@ -6571,60 +6684,60 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:8009 +#: gnu/packages/gnome.scm:8014 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to virtual private networks (VPNs) via OpenVPN." msgstr "" -#: gnu/packages/gnome.scm:8059 +#: gnu/packages/gnome.scm:8064 msgid "" "Support for configuring virtual private networks based on VPNC.\n" "Compatible with Cisco VPN concentrators configured to use IPsec." msgstr "" -#: gnu/packages/gnome.scm:8106 +#: gnu/packages/gnome.scm:8111 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to @acronym{VPNs, virtual private networks} via OpenConnect, an open client for\n" "Cisco's AnyConnect SSL VPN." msgstr "" -#: gnu/packages/gnome.scm:8135 +#: gnu/packages/gnome.scm:8140 msgid "Database of broadband connection configuration." msgstr "" -#: gnu/packages/gnome.scm:8179 +#: gnu/packages/gnome.scm:8183 msgid "" "This package contains a systray applet for NetworkManager. It displays\n" "the available networks and allows users to easily switch between them." msgstr "" -#: gnu/packages/gnome.scm:8234 +#: gnu/packages/gnome.scm:8238 msgid "" "This package provides a C++ interface to the libxml2 XML parser\n" "library." msgstr "" -#: gnu/packages/gnome.scm:8466 +#: gnu/packages/gnome.scm:8470 msgid "" "GNOME Display Manager is a system service that is responsible for\n" "providing graphical log-ins and managing local and remote displays." msgstr "" -#: gnu/packages/gnome.scm:8490 +#: gnu/packages/gnome.scm:8494 msgid "" "LibGTop is a library to get system specific data such as CPU and memory\n" "usage and information about running processes." msgstr "" -#: gnu/packages/gnome.scm:8525 +#: gnu/packages/gnome.scm:8528 msgid "" "This package contains tools for managing and manipulating Bluetooth\n" "devices using the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:8636 +#: gnu/packages/gnome.scm:8646 msgid "" "This package contains configuration applets for the GNOME desktop,\n" "allowing to set accessibility configuration, desktop fonts, keyboard and mouse\n" @@ -6632,13 +6745,13 @@ msgid "" "properties, screen resolution, and other GNOME parameters." msgstr "" -#: gnu/packages/gnome.scm:8802 +#: gnu/packages/gnome.scm:8811 msgid "" "GNOME Shell provides core user interface functions for the GNOME desktop,\n" "like switching to windows and launching applications." msgstr "" -#: gnu/packages/gnome.scm:8845 +#: gnu/packages/gnome.scm:8858 msgid "" "GTK-VNC is a project providing client side APIs for the RFB\n" "protocol / VNC remote desktop technology. It is built using coroutines allowing\n" @@ -6646,13 +6759,13 @@ msgid "" "core C library, and bindings for Python (PyGTK)." msgstr "" -#: gnu/packages/gnome.scm:8875 +#: gnu/packages/gnome.scm:8888 msgid "" "GNOME Autoar is a library which makes creating and extracting archives\n" "easy, safe, and automatic." msgstr "" -#: gnu/packages/gnome.scm:8945 +#: gnu/packages/gnome.scm:8959 msgid "" "Tracker is a search engine and triplestore for desktop, embedded and mobile.\n" "\n" @@ -6675,21 +6788,21 @@ msgid "" "endpoint and it understands SPARQL." msgstr "" -#: gnu/packages/gnome.scm:9074 +#: gnu/packages/gnome.scm:9088 msgid "" "Tracker is an advanced framework for first class objects with associated\n" "metadata and tags. It provides a one stop solution for all metadata, tags,\n" "shared object databases, search tools and indexing." msgstr "" -#: gnu/packages/gnome.scm:9167 +#: gnu/packages/gnome.scm:9185 msgid "" "Nautilus (Files) is a file manager designed to fit the GNOME desktop\n" "design and behaviour, giving the user a simple way to navigate and manage its\n" "files." msgstr "" -#: gnu/packages/gnome.scm:9201 +#: gnu/packages/gnome.scm:9220 msgid "" "Baobab (Disk Usage Analyzer) is a graphical application to analyse disk\n" "usage in the GNOME desktop environment. It can easily scan device volumes or\n" @@ -6697,7 +6810,7 @@ msgid "" "is complete it provides a graphical representation of each selected folder." msgstr "" -#: gnu/packages/gnome.scm:9227 +#: gnu/packages/gnome.scm:9245 msgid "" "GNOME backgrounds package contains a collection of graphics files which\n" "can be used as backgrounds in the GNOME Desktop environment. Additionally,\n" @@ -6705,21 +6818,21 @@ msgid "" "can add your own files to the collection." msgstr "" -#: gnu/packages/gnome.scm:9272 +#: gnu/packages/gnome.scm:9290 msgid "" "GNOME Screenshot is a utility used for taking screenshots of the entire\n" "screen, a window or a user defined area of the screen, with optional\n" "beautifying border effects." msgstr "" -#: gnu/packages/gnome.scm:9304 +#: gnu/packages/gnome.scm:9320 msgid "" "Dconf-editor is a graphical tool for browsing and editing the dconf\n" "configuration system for GNOME. It allows users to configure desktop\n" "software that do not provide their own configuration interface." msgstr "" -#: gnu/packages/gnome.scm:9334 +#: gnu/packages/gnome.scm:9350 msgid "" "Given many installed packages which might handle a given MIME type, a\n" "user running the GNOME desktop probably has some preferences: for example,\n" @@ -6728,32 +6841,32 @@ msgid "" "associations for GNOME." msgstr "" -#: gnu/packages/gnome.scm:9366 +#: gnu/packages/gnome.scm:9382 msgid "GoVirt is a GObject wrapper for the oVirt REST API." msgstr "" -#: gnu/packages/gnome.scm:9424 +#: gnu/packages/gnome.scm:9439 msgid "" "GNOME Weather is a small application that allows you to\n" "monitor the current weather conditions for your city, or anywhere in the\n" "world." msgstr "" -#: gnu/packages/gnome.scm:9528 +#: gnu/packages/gnome.scm:9543 msgid "" "GNOME is the graphical desktop for GNU. It includes a wide variety of\n" "applications for browsing the web, editing text and images, creating\n" "documents and diagrams, playing media, scanning, and much more." msgstr "" -#: gnu/packages/gnome.scm:9574 +#: gnu/packages/gnome.scm:9589 msgid "" "Byzanz is a simple desktop recording program with a\n" "command-line interface. It can record part or all of an X display for a\n" "specified duration and save it as a GIF encoded animated image file." msgstr "" -#: gnu/packages/gnome.scm:9634 +#: gnu/packages/gnome.scm:9651 msgid "" "Authenticator is a two-factor authentication (2FA) application built for\n" "the GNOME desktop environment.\n" @@ -6770,44 +6883,44 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/gnome.scm:9669 +#: gnu/packages/gnome.scm:9686 msgid "" "GSound is a small library for playing system sounds. It's designed to be\n" "used via GObject Introspection, and is a thin wrapper around the libcanberra C\n" "library." msgstr "" -#: gnu/packages/gnome.scm:9694 +#: gnu/packages/gnome.scm:9711 msgid "" "Libzapojit is a GLib-based library for accessing online service APIs of\n" "Microsoft SkyDrive and Hotmail, using their REST protocols." msgstr "" -#: gnu/packages/gnome.scm:9739 +#: gnu/packages/gnome.scm:9756 msgid "" "GNOME Clocks is a simple clocks application designed to fit the GNOME\n" "desktop. It supports world clock, stop watch, alarms, and count down timer." msgstr "" -#: gnu/packages/gnome.scm:9787 +#: gnu/packages/gnome.scm:9803 msgid "" "GNOME Calendar is a simple calendar application designed to fit the GNOME\n" "desktop. It supports multiple calendars, month, week and year view." msgstr "" -#: gnu/packages/gnome.scm:9838 +#: gnu/packages/gnome.scm:9860 msgid "" -"GNOME To Do is a simplistic personal task manager designed to perfectly\n" -"fit the GNOME desktop." +"GNOME To Do is a simplistic personal task manager designed\n" +"to perfectly fit the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:9877 +#: gnu/packages/gnome.scm:9899 msgid "" "GNOME Dictionary can look for the definition or translation of a word in\n" "existing databases over the internet." msgstr "" -#: gnu/packages/gnome.scm:9943 +#: gnu/packages/gnome.scm:9964 msgid "" "GNOME Tweaks allows adjusting advanced configuration settings in\n" "GNOME 3. This includes things like the fonts used in user interface elements,\n" @@ -6815,13 +6928,13 @@ msgid "" "GNOME Shell appearance and extension, etc." msgstr "" -#: gnu/packages/gnome.scm:9971 +#: gnu/packages/gnome.scm:9992 msgid "" "GNOME Shell extensions modify and extend GNOME Shell\n" "functionality and behavior." msgstr "" -#: gnu/packages/gnome.scm:10015 +#: gnu/packages/gnome.scm:10036 msgid "" "Libfolks is a library that aggregates information about people\n" "from multiple sources (e.g., Telepathy connection managers for IM contacts,\n" @@ -6830,19 +6943,19 @@ msgid "" "compiled." msgstr "" -#: gnu/packages/gnome.scm:10056 +#: gnu/packages/gnome.scm:10077 msgid "" "This library allows you to use the Facebook API from\n" "GLib/GObject code." msgstr "" -#: gnu/packages/gnome.scm:10083 +#: gnu/packages/gnome.scm:10104 msgid "" "Libgnomekbd is a keyboard configuration library for the GNOME desktop\n" "environment, which can notably display keyboard layouts." msgstr "" -#: gnu/packages/gnome.scm:10119 +#: gnu/packages/gnome.scm:10140 msgid "" "Libunique is a library for writing single instance applications. If you\n" "launch a single instance application twice, the second instance will either just\n" @@ -6852,20 +6965,20 @@ msgid "" "handling the startup notification side." msgstr "" -#: gnu/packages/gnome.scm:10168 +#: gnu/packages/gnome.scm:10190 msgid "" "Calculator is an application that solves mathematical equations and\n" "is suitable as a default application in a Desktop environment." msgstr "" -#: gnu/packages/gnome.scm:10194 +#: gnu/packages/gnome.scm:10216 msgid "" "Xpad is a sticky note that strives to be simple, fault tolerant,\n" "and customizable. Xpad consists of independent pad windows, each is\n" "basically a text box in which notes can be written." msgstr "" -#: gnu/packages/gnome.scm:10267 +#: gnu/packages/gnome.scm:10289 msgid "" "This program allows you to browse through all the available Unicode\n" "characters and categories for the installed fonts, and to examine their\n" @@ -6873,20 +6986,20 @@ msgid "" "only know by its Unicode name or code point." msgstr "" -#: gnu/packages/gnome.scm:10299 +#: gnu/packages/gnome.scm:10321 msgid "" "Color Picker is a simple color chooser written in GTK3. It\n" "supports both X and Wayland display servers." msgstr "" -#: gnu/packages/gnome.scm:10322 +#: gnu/packages/gnome.scm:10344 msgid "" "Bluefish is an editor aimed at programmers and web developers,\n" "with many options to write web sites, scripts and other code.\n" "Bluefish supports many programming and markup languages." msgstr "" -#: gnu/packages/gnome.scm:10363 +#: gnu/packages/gnome.scm:10385 msgid "" "GNOME System Monitor is a GNOME process viewer and system monitor with\n" "an attractive, easy-to-use interface. It has features, such as a tree view\n" @@ -6895,27 +7008,27 @@ msgid "" "kill/reinice processes." msgstr "" -#: gnu/packages/gnome.scm:10405 +#: gnu/packages/gnome.scm:10427 msgid "" "This package includes a python client library for the AT-SPI D-Bus\n" "accessibility infrastructure." msgstr "" -#: gnu/packages/gnome.scm:10475 +#: gnu/packages/gnome.scm:10495 msgid "" "Orca is a screen reader that provides access to the graphical desktop\n" "via speech and refreshable braille. Orca works with applications and toolkits\n" "that support the Assistive Technology Service Provider Interface (AT-SPI)." msgstr "" -#: gnu/packages/gnome.scm:10529 +#: gnu/packages/gnome.scm:10549 msgid "" "gspell provides a flexible API to add spell-checking to a GTK+\n" "application. It provides a GObject API, spell-checking to text entries and\n" "text views, and buttons to choose the language." msgstr "" -#: gnu/packages/gnome.scm:10571 +#: gnu/packages/gnome.scm:10591 msgid "" "GNOME Planner is a project management tool based on the Work Breakdown\n" "Structure (WBS). Its goal is to enable you to easily plan projects. Based on\n" @@ -6927,7 +7040,7 @@ msgid "" "views can be printed as PDF or PostScript files, or exported to HTML." msgstr "" -#: gnu/packages/gnome.scm:10644 +#: gnu/packages/gnome.scm:10664 msgid "" "Lollypop is a music player designed to play well with GNOME desktop.\n" "Lollypop plays audio formats such as mp3, mp4, ogg and flac and gets information\n" @@ -6935,26 +7048,26 @@ msgid "" "automatically and it can stream songs from online music services and charts." msgstr "" -#: gnu/packages/gnome.scm:10668 +#: gnu/packages/gnome.scm:10688 msgid "" "A collection of GStreamer video filters and effects to be used in\n" "photo-booth-like software, such as Cheese." msgstr "" -#: gnu/packages/gnome.scm:10747 +#: gnu/packages/gnome.scm:10766 msgid "" "Cheese uses your webcam to take photos and videos. Cheese can also\n" "apply fancy special effects and lets you share the fun with others." msgstr "" -#: gnu/packages/gnome.scm:10801 +#: gnu/packages/gnome.scm:10820 msgid "" "Password Safe is a password manager which makes use of the KeePass v4\n" "format. It integrates perfectly with the GNOME desktop and provides an easy\n" "and uncluttered interface for the management of password databases." msgstr "" -#: gnu/packages/gnome.scm:10836 +#: gnu/packages/gnome.scm:10855 msgid "" "Sound Juicer extracts audio from compact discs and convert it\n" "into audio files that a personal computer or digital audio player can play.\n" @@ -6962,27 +7075,27 @@ msgid "" "mp3, Ogg Vorbis and FLAC" msgstr "" -#: gnu/packages/gnome.scm:10888 +#: gnu/packages/gnome.scm:10907 msgid "" "SoundConverter supports converting between many audio formats including\n" "Opus, Ogg Vorbis, FLAC and more. It supports parallel conversion, and\n" "configurable file renaming." msgstr "" -#: gnu/packages/gnome.scm:10936 +#: gnu/packages/gnome.scm:10955 msgid "" "Workrave is a program that assists in the recovery and prevention of\n" "repetitive strain injury (@dfn{RSI}). The program frequently alerts you to take\n" "micro-pauses and rest breaks, and restricts you to your daily limit." msgstr "" -#: gnu/packages/gnome.scm:10977 +#: gnu/packages/gnome.scm:10996 msgid "" "The GHex program can view and edit files in two ways:\n" "hexadecimal or ASCII. It is useful for editing binary files in general." msgstr "" -#: gnu/packages/gnome.scm:11013 +#: gnu/packages/gnome.scm:11032 msgid "" "The libdazzle library is a companion library to GObject and\n" "Gtk+. It provides various features that the authors wish were in the\n" @@ -6991,40 +7104,40 @@ msgid "" "generic enough to work for everyone." msgstr "" -#: gnu/packages/gnome.scm:11080 +#: gnu/packages/gnome.scm:11099 msgid "" "Evolution is a personal information management application\n" "that provides integrated mail, calendaring and address book\n" "functionality." msgstr "" -#: gnu/packages/gnome.scm:11140 +#: gnu/packages/gnome.scm:11154 msgid "" "GThumb is an image viewer, browser, organizer, editor and\n" "advanced image management tool" msgstr "" -#: gnu/packages/gnome.scm:11213 +#: gnu/packages/gnome.scm:11227 msgid "" "Terminator allows you to run multiple GNOME terminals in a grid and\n" "tabs, and it supports drag and drop re-ordering of terminals." msgstr "" -#: gnu/packages/gnome.scm:11274 +#: gnu/packages/gnome.scm:11288 msgid "" "The aim of the handy library is to help with developing user\n" "interfaces for mobile devices using GTK+. It provides responsive GTK+ widgets\n" "for usage on small and big screens." msgstr "" -#: gnu/packages/gnome.scm:11323 +#: gnu/packages/gnome.scm:11337 msgid "" "libgit2-glib is a GLib wrapper library around the libgit2 Git\n" "access library. It only implements the core plumbing functions, not really the\n" "higher level porcelain stuff." msgstr "" -#: gnu/packages/gnome.scm:11402 +#: gnu/packages/gnome.scm:11415 msgid "" "gitg is a graphical user interface for git. It aims at being a small,\n" "fast and convenient tool to visualize the history of git repositories.\n" @@ -7032,21 +7145,21 @@ msgid "" "repository and commit your work." msgstr "" -#: gnu/packages/gnome.scm:11474 +#: gnu/packages/gnome.scm:11487 msgid "" "Gamin is a file and directory monitoring system defined to be a subset\n" "of the FAM (File Alteration Monitor) system. This is a service provided by a\n" "library which detects when a file or a directory has been modified." msgstr "" -#: gnu/packages/gnome.scm:11508 +#: gnu/packages/gnome.scm:11521 msgid "" "GNOME Mahjongg is a game based on the classic Chinese\n" -"tile-matching game Mahjong. It features multiple board layouts, tile themes,\n" +"tile-matching game Mahjongg. It features multiple board layouts, tile themes,\n" "and a high score table." msgstr "" -#: gnu/packages/gnome.scm:11546 +#: gnu/packages/gnome.scm:11559 msgid "" "This package provides themes and related elements that don't\n" "really fit in other upstream packages. It offers legacy support for GTK+ 2\n" @@ -7054,19 +7167,19 @@ msgid "" "index files needed for Adwaita to be used outside of GNOME." msgstr "" -#: gnu/packages/gnome.scm:11585 +#: gnu/packages/gnome.scm:11605 msgid "" -"Gnote is a note-taking application written for the GNOME desktop\n" -"environment." +"Gnote is a note-taking application written for the GNOME\n" +"desktop environment." msgstr "" -#: gnu/packages/gnome.scm:11647 +#: gnu/packages/gnome.scm:11664 msgid "" "Polari is a simple Internet Relay Chat (IRC) client that is designed to\n" "integrate seamlessly with the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:11706 +#: gnu/packages/gnome.scm:11723 msgid "" "GNOME Boxes is a simple application to view, access, and\n" "manage remote and virtual systems. Note that this application requires the\n" @@ -7075,7 +7188,7 @@ msgid "" "these services on the Guix System." msgstr "" -#: gnu/packages/gnome.scm:11806 +#: gnu/packages/gnome.scm:11823 msgid "" "Geary collects related messages together into conversations,\n" "making it easy to find and follow your discussions. Full-text and keyword\n" @@ -7087,14 +7200,14 @@ msgid "" "to." msgstr "" -#: gnu/packages/gnome.scm:11851 +#: gnu/packages/gnome.scm:11868 msgid "" "gLabels is a program for creating labels and business cards. It is\n" "designed to work with various laser/ink-jet peel-off label and business\n" "card sheets that you’ll find at most office supply stores." msgstr "" -#: gnu/packages/gnome.scm:11892 +#: gnu/packages/gnome.scm:11909 msgid "" "GNOME LaTeX is a LaTeX editor for the GNOME desktop. It has features\n" "such as build tools, completion of LaTeX commands, structure navigation,\n" @@ -7102,19 +7215,19 @@ msgid "" "and toolbars." msgstr "" -#: gnu/packages/gnome.scm:11951 +#: gnu/packages/gnome.scm:11968 msgid "" "Setzer is a simple yet full-featured LaTeX editor written in Python with\n" "GTK+. It integrates well with the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:12017 +#: gnu/packages/gnome.scm:12034 msgid "" "Apostrophe is a GTK+ based distraction-free Markdown editor.\n" "It uses pandoc as back-end for parsing Markdown." msgstr "" -#: gnu/packages/gnome.scm:12070 +#: gnu/packages/gnome.scm:12088 msgid "" "libratbag provides @command{ratbagd}, a DBus daemon to\n" "configure input devices, mainly gaming mice. The daemon provides a generic\n" @@ -7131,7 +7244,7 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12140 +#: gnu/packages/gnome.scm:12156 msgid "" "Piper is a GTK+ application for configuring gaming mice with\n" "onboard configuration for key bindings via libratbag. Piper requires\n" @@ -7143,14 +7256,14 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12202 +#: gnu/packages/gnome.scm:12218 msgid "" "Parlatype is an audio player for the GNOME desktop\n" "environment. Its main purpose is the manual transcription of spoken\n" "audio files." msgstr "" -#: gnu/packages/gnome.scm:12228 +#: gnu/packages/gnome.scm:12244 msgid "" "Jsonrpc-GLib is a library to communicate with JSON-RPC based\n" "peers in either a synchronous or asynchronous fashion. It also allows\n" @@ -7159,14 +7272,14 @@ msgid "" "host to avoid parser overhead and memory-allocator fragmentation." msgstr "" -#: gnu/packages/gnome.scm:12256 +#: gnu/packages/gnome.scm:12272 msgid "" "Feedbackd provides a DBus daemon to act on events to provide\n" "haptic, visual and audio feedback. It offers the libfeedbackd library and\n" "GObject introspection bindings." msgstr "" -#: gnu/packages/gnome.scm:12305 +#: gnu/packages/gnome.scm:12321 msgid "" "Sysprof performs detailed, accurate, and fast CPU profiling of an entire\n" "GNU/Linux system including the kernel and all user-space applications. This\n" @@ -7176,21 +7289,21 @@ msgid "" "libraries. Applications do not need to be recompiled--or even restarted." msgstr "" -#: gnu/packages/gnome.scm:12388 +#: gnu/packages/gnome.scm:12406 msgid "" -"Builder aims to be an integrated development\n" -"environment (IDE) for writing GNOME-based software. It features fuzzy search,\n" -"auto-completion, a mini code map, documentation browsing, Git integration, an\n" -"integrated profiler via Sysprof, debugging support, and more." +"Builder aims to be an integrated development environment (IDE) for\n" +"writing GNOME-based software. It features fuzzy search, auto-completion,\n" +"a mini code map, documentation browsing, Git integration, an integrated\n" +"profiler via Sysprof, debugging support, and more." msgstr "" -#: gnu/packages/gnome.scm:12461 +#: gnu/packages/gnome.scm:12480 msgid "" "Komikku is an online/offline manga reader for GNOME,\n" "developed with the aim of being used with the Librem 5 phone." msgstr "" -#: gnu/packages/gnome.scm:12545 +#: gnu/packages/gnome.scm:12564 msgid "" "GNU Data Access (GDA) is an attempt to provide uniform access to\n" "different kinds of data sources (databases, information servers, mail spools,\n" @@ -7198,7 +7311,7 @@ msgid "" "your data." msgstr "" -#: gnu/packages/gnome.scm:12596 +#: gnu/packages/gnome.scm:12614 msgid "" "gtranslator is a quite comfortable gettext po/po.gz/(g)mo files editor\n" "for the GNOME 3.x platform with many features. It aims to be a very complete\n" @@ -7206,32 +7319,36 @@ msgid "" "world." msgstr "" -#: gnu/packages/gnome.scm:12662 +#: gnu/packages/gnome.scm:12680 msgid "" "OCRFeeder is a complete Optical Character Recognition and\n" "Document Analysis and Recognition program." msgstr "" -#: gnu/packages/gnome.scm:12702 +#: gnu/packages/gnome.scm:12720 msgid "" "@code{libadwaita} offers widgets and objects to build GNOME\n" "applications scaling from desktop workstations to mobile phones. It is the\n" "successor of @code{libhandy} for GTK4." msgstr "" -#: gnu/packages/gnome.scm:12727 +#: gnu/packages/gnome.scm:12745 msgid "" "@code{gnome-power-manager} is a tool for viewing present and\n" "historical battery usage and related statistics." msgstr "" +#: gnu/packages/gnome.scm:12789 +msgid "This package provides a graphical file manager." +msgstr "" + #: gnu/packages/gnuzilla.scm:155 msgid "" "SpiderMonkey is Mozilla's JavaScript engine written\n" "in C/C++." msgstr "" -#: gnu/packages/gnuzilla.scm:1314 +#: gnu/packages/gnuzilla.scm:1315 msgid "" "IceCat is the GNU version of the Firefox browser. It is entirely free\n" "software, which does not recommend non-free plugins and addons. It also\n" @@ -7244,19 +7361,19 @@ msgid "" "standards of the IceCat project." msgstr "" -#: gnu/packages/gnuzilla.scm:1642 +#: gnu/packages/gnuzilla.scm:1648 msgid "" "This package provides an email client built based on Mozilla\n" "Thunderbird. It supports email, news feeds, chat, calendar and contacts." msgstr "" -#: gnu/packages/gnuzilla.scm:1717 +#: gnu/packages/gnuzilla.scm:1723 msgid "" "Firefox Decrypt is a tool to extract passwords from\n" "Mozilla (Firefox, Waterfox, Thunderbird, SeaMonkey) profiles." msgstr "" -#: gnu/packages/gnuzilla.scm:1754 +#: gnu/packages/gnuzilla.scm:1760 msgid "" "@code{lz4json} is a little utility to unpack lz4json files as generated\n" "by Firefox's bookmark backups and session restore. This is a different format\n" @@ -7270,7 +7387,7 @@ msgid "" "tools have full access to view and control running applications." msgstr "" -#: gnu/packages/gtk.scm:215 +#: gnu/packages/gtk.scm:212 msgid "" "Cairo is a 2D graphics library with support for multiple output\n" "devices. Currently supported output targets include the X Window System (via\n" @@ -7278,24 +7395,24 @@ msgid "" "output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB." msgstr "" -#: gnu/packages/gtk.scm:277 +#: gnu/packages/gtk.scm:274 msgid "HarfBuzz is an OpenType text shaping engine." msgstr "" -#: gnu/packages/gtk.scm:320 +#: gnu/packages/gtk.scm:317 msgid "" "Libdatrie is an implementation of double-array structure for\n" "representing trie. Trie is a kind of digital search tree." msgstr "" -#: gnu/packages/gtk.scm:352 +#: gnu/packages/gtk.scm:349 msgid "" "LibThai is a set of Thai language support routines aimed to\n" "ease developers’ tasks to incorporate Thai language support in their\n" "applications." msgstr "" -#: gnu/packages/gtk.scm:407 +#: gnu/packages/gtk.scm:404 msgid "" "Pango is a library for laying out and rendering of text, with\n" "an emphasis on internationalization. Pango can be used anywhere that text\n" @@ -7304,21 +7421,21 @@ msgid "" "handling for GTK+-2.x." msgstr "" -#: gnu/packages/gtk.scm:461 +#: gnu/packages/gtk.scm:458 msgid "" "Pangox was a X backend to pango. It is now obsolete and no\n" "longer provided by recent pango releases. pangox-compat provides the\n" "functions which were removed." msgstr "" -#: gnu/packages/gtk.scm:498 +#: gnu/packages/gtk.scm:495 msgid "" "Ganv is an interactive GTK+ widget for interactive “boxes and lines” or\n" "graph-like environments, e.g. modular synths or finite state machine\n" "diagrams." msgstr "" -#: gnu/packages/gtk.scm:554 +#: gnu/packages/gtk.scm:551 msgid "" "GtkSourceView is a portable C library that extends the standard GTK+\n" "framework for multiline text editing with support for configurable syntax\n" @@ -7326,33 +7443,33 @@ msgid "" "printing and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:602 +#: gnu/packages/gtk.scm:599 msgid "" "GtkSourceView is a text widget that extends the standard\n" "GTK+ text widget GtkTextView. It improves GtkTextView by implementing syntax\n" "highlighting and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:698 +#: gnu/packages/gtk.scm:695 msgid "" "GdkPixbuf is a library that loads image data in various\n" "formats and stores it as linear buffers in memory. The buffers can then be\n" "scaled, composited, modified, saved, or rendered." msgstr "" -#: gnu/packages/gtk.scm:746 +#: gnu/packages/gtk.scm:743 msgid "" "The Assistive Technology Service Provider Interface, core components,\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:827 +#: gnu/packages/gtk.scm:824 msgid "" "The Assistive Technology Service Provider Interface\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:921 +#: gnu/packages/gtk.scm:918 msgid "" "GTK+, or the GIMP Toolkit, is a multi-platform toolkit for creating\n" "graphical user interfaces. Offering a complete set of widgets, GTK+ is\n" @@ -7360,14 +7477,14 @@ msgid "" "application suites." msgstr "" -#: gnu/packages/gtk.scm:1234 +#: gnu/packages/gtk.scm:1238 msgid "" "GTK is a multi-platform toolkit for creating graphical user\n" "interfaces. Offering a complete set of widgets, GTK is suitable for projects\n" "ranging from small one-off tools to complete application suites." msgstr "" -#: gnu/packages/gtk.scm:1308 +#: gnu/packages/gtk.scm:1312 msgid "" "Guile-Cairo wraps the Cairo graphics library for Guile Scheme.\n" "Guile-Cairo is complete, wrapping almost all of the Cairo API. It is API\n" @@ -7377,13 +7494,13 @@ msgid "" "exceptions, macros, and a dynamic programming environment." msgstr "" -#: gnu/packages/gtk.scm:1389 +#: gnu/packages/gtk.scm:1393 msgid "" "Guile-RSVG wraps the RSVG library for Guile, allowing you to render SVG\n" "images onto Cairo surfaces." msgstr "" -#: gnu/packages/gtk.scm:1456 +#: gnu/packages/gtk.scm:1460 msgid "" "Guile-Present defines a declarative vocabulary for presentations,\n" "together with tools to render presentation documents as SVG or PDF.\n" @@ -7392,29 +7509,29 @@ msgid "" "documents." msgstr "" -#: gnu/packages/gtk.scm:1522 +#: gnu/packages/gtk.scm:1526 msgid "" "Includes guile-clutter, guile-gnome-gstreamer,\n" "guile-gnome-platform (GNOME developer libraries), and guile-gtksourceview." msgstr "" -#: gnu/packages/gtk.scm:1578 +#: gnu/packages/gtk.scm:1582 msgid "" "Cairomm provides a C++ programming interface to the Cairo 2D graphics\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1642 +#: gnu/packages/gtk.scm:1647 msgid "" "Pangomm provides a C++ programming interface to the Pango text rendering\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1704 +#: gnu/packages/gtk.scm:1709 msgid "ATKmm is the C++ binding for the ATK library." msgstr "" -#: gnu/packages/gtk.scm:1784 +#: gnu/packages/gtk.scm:1790 msgid "" "GTKmm is the official C++ interface for the popular GUI\n" "library GTK+. Highlights include typesafe callbacks, and a comprehensive set\n" @@ -7643,7 +7760,7 @@ msgid "" "excellent pavucontrol." msgstr "" -#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:238 +#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:241 msgid "" "Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" "official extension language of the GNU system. It is an implementation of\n" @@ -7652,14 +7769,14 @@ msgid "" "without requiring the source code to be rewritten." msgstr "" -#: gnu/packages/guile.scm:502 +#: gnu/packages/guile.scm:506 msgid "" "This module provides line editing support via the Readline library for\n" "GNU@tie{}Guile. Use the @code{(ice-9 readline)} module and call its\n" "@code{activate-readline} procedure to enable it." msgstr "" -#: gnu/packages/guile.scm:604 +#: gnu/packages/guile.scm:608 msgid "" "Guile-JSON supports parsing and building JSON documents according to the\n" "specification. These are the main features:\n" @@ -7672,17 +7789,17 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/guile.scm:701 +#: gnu/packages/guile.scm:705 msgid "" "Guile bindings to the GDBM key-value storage system, using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:730 +#: gnu/packages/guile.scm:734 msgid "This package provides Guile bindings to the SQLite database system." msgstr "" -#: gnu/packages/guile.scm:769 +#: gnu/packages/guile.scm:773 msgid "" "Guile bytestructures offers a system imitating the type system\n" "of the C programming language, to be used on bytevectors. C's type\n" @@ -7691,33 +7808,33 @@ msgid "" "type system, elevating types to first-class status." msgstr "" -#: gnu/packages/guile.scm:810 +#: gnu/packages/guile.scm:814 msgid "" "This package provides Guile bindings to libgit2, a library to\n" "manipulate repositories of the Git version control system." msgstr "" -#: gnu/packages/guile.scm:846 +#: gnu/packages/guile.scm:850 msgid "" "This package provides Guile bindings for zlib, a lossless\n" "data-compression library. The bindings are written in pure Scheme by using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:877 +#: gnu/packages/guile.scm:881 msgid "" "This package provides Guile bindings for lzlib, a C library for\n" "in-memory LZMA compression and decompression. The bindings are written in\n" "pure Scheme by using Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:904 +#: gnu/packages/guile.scm:908 msgid "" "This package provides a GNU Guile interface to the zstd (``zstandard'')\n" "compression library." msgstr "" -#: gnu/packages/guile.scm:926 +#: gnu/packages/guile.scm:930 msgid "" "Guile-LZMA is a Guile wrapper for the liblzma (XZ)\n" "library. It exposes an interface similar to other Guile compression\n" @@ -8304,7 +8421,7 @@ msgid "" "It supports JPEG, PNG and GIF formats." msgstr "" -#: gnu/packages/image-viewers.scm:640 +#: gnu/packages/image-viewers.scm:643 msgid "" "Luminance HDR (formerly QtPFSGui) is a graphical user interface\n" "application that aims to provide a workflow for high dynamic range (HDR)\n" @@ -8320,7 +8437,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:735 +#: gnu/packages/image-viewers.scm:738 msgid "" "MComix is a customizable image viewer that specializes as\n" "a comic and manga reader. It supports a variety of container formats\n" @@ -8329,7 +8446,7 @@ msgid "" "For PDF support, install the @emph{mupdf} package." msgstr "" -#: gnu/packages/image-viewers.scm:775 +#: gnu/packages/image-viewers.scm:778 msgid "" "qView is a Qt image viewer designed with visually\n" "minimalism and usability in mind. Its features include animated GIF\n" @@ -8337,14 +8454,14 @@ msgid "" "preloading." msgstr "" -#: gnu/packages/image-viewers.scm:799 +#: gnu/packages/image-viewers.scm:802 msgid "" "Chafa is a command-line utility that converts all kinds of images,\n" "including animated GIFs, into ANSI/Unicode character output that can be\n" "displayed in a terminal." msgstr "" -#: gnu/packages/image-viewers.scm:847 +#: gnu/packages/image-viewers.scm:850 msgid "" "@code{imv} is a command line image viewer intended for use\n" "with tiling window managers. Features include:\n" @@ -8366,7 +8483,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:924 +#: gnu/packages/image-viewers.scm:927 msgid "" "Quick Image Viewer is a small and fast GDK/Imlib2 image viewer.\n" "Features include zoom, maxpect, scale down, fullscreen, slideshow, delete,\n" @@ -8375,7 +8492,7 @@ msgid "" "to set X desktop background." msgstr "" -#: gnu/packages/image-viewers.scm:968 +#: gnu/packages/image-viewers.scm:971 msgid "" "pqiv is a GTK-3 based command-line image viewer with a minimal UI.\n" "It is highly customizable, can be fully controlled from scripts, and has\n" @@ -8383,7 +8500,7 @@ msgid "" "archives." msgstr "" -#: gnu/packages/image-viewers.scm:1025 +#: gnu/packages/image-viewers.scm:1028 msgid "" "Nomacs is a simple to use image lounge featuring\n" "semi-transparent widgets that display additional information such as metadata,\n" @@ -8396,7 +8513,7 @@ msgid "" "synchronization of multiple instances." msgstr "" -#: gnu/packages/image-viewers.scm:1070 +#: gnu/packages/image-viewers.scm:1073 msgid "xzgv is a fast image viewer that provides extensive keyboard support." msgstr "" @@ -8659,17 +8776,17 @@ msgid "" "Math for editing mathematics." msgstr "" -#: gnu/packages/linux.scm:604 +#: gnu/packages/linux.scm:625 msgid "Headers of the Linux-Libre kernel." msgstr "" -#: gnu/packages/linux.scm:905 +#: gnu/packages/linux.scm:935 msgid "" "GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.\n" "It has been modified to remove all non-free binary blobs." msgstr "" -#: gnu/packages/linux.scm:1215 +#: gnu/packages/linux.scm:1252 msgid "" "This simple Linux kernel module allows calls from user space to any\n" "@acronym{ACPI, Advanced Configuration and Power Interface} method provided by\n" @@ -8681,7 +8798,7 @@ msgid "" "and should be used with caution, especially on untested models." msgstr "" -#: gnu/packages/linux.scm:1283 +#: gnu/packages/linux.scm:1320 msgid "" "CoreFreq is a CPU monitor that reports low-level processor settings and\n" "performance data with notably high precision by using a loadable Linux kernel\n" @@ -8712,7 +8829,7 @@ msgid "" "@file{README.md} before loading it." msgstr "" -#: gnu/packages/linux.scm:1332 +#: gnu/packages/linux.scm:1369 msgid "" "This is the Linux kernel @acronym{ACPI, Advanced Configuration and Power\n" "Interface} platform driver for the @acronym{EC, Embedded Controller} firmware\n" @@ -8721,13 +8838,13 @@ msgid "" "and the notification, WiFi, and Bluetooth LED." msgstr "" -#: gnu/packages/linux.scm:1375 +#: gnu/packages/linux.scm:1413 msgid "" "This is Realtek's RTL8821CE Linux driver for wireless\n" "network adapters." msgstr "" -#: gnu/packages/linux.scm:1407 +#: gnu/packages/linux.scm:1445 msgid "" "This is Realtek's rtl8812au Linux driver for USB 802.11n wireless\n" "network adapters, modified by the aircrack-ng project to support monitor mode\n" @@ -8735,7 +8852,7 @@ msgid "" "RTL8812AU, RTL8821AU, and RTL8814AU chips." msgstr "" -#: gnu/packages/linux.scm:1431 +#: gnu/packages/linux.scm:1469 msgid "" "The @acronym{VHBA, Virtual SCSI Host Bus Adapter} module is the link\n" "between the CDemu user-space daemon and the kernel Linux. It acts as a\n" @@ -8744,13 +8861,13 @@ msgid "" "emulate optical devices such as DVD and CD-ROM drives." msgstr "" -#: gnu/packages/linux.scm:1460 +#: gnu/packages/linux.scm:1497 msgid "" "The bbswitch module provides a way to toggle the Nvidia\n" "graphics card on Optimus laptops." msgstr "" -#: gnu/packages/linux.scm:1501 +#: gnu/packages/linux.scm:1536 msgid "" "This package provides two Linux kernel drivers, ddcci and\n" "ddcci-backlight, that allows the control of DDC/CI monitors through the sysfs\n" @@ -8760,7 +8877,7 @@ msgid "" "supported under @file{/sys/class/backlight/}." msgstr "" -#: gnu/packages/linux.scm:1528 +#: gnu/packages/linux.scm:1563 msgid "" "This Linux module creates virtual video devices. @acronym{V4L2, Video\n" "for Linux 2} applications will treat these as ordinary video devices but read\n" @@ -8772,7 +8889,7 @@ msgid "" "application by hooking GStreamer into the loopback device." msgstr "" -#: gnu/packages/linux.scm:1569 +#: gnu/packages/linux.scm:1604 msgid "" "This package provides a driver for the XBox One S Wireless controller\n" "and some newer models when connected via Bluetooth. In addition to the included\n" @@ -8780,7 +8897,7 @@ msgid "" "which need to be installed separately." msgstr "" -#: gnu/packages/linux.scm:1622 +#: gnu/packages/linux.scm:1657 msgid "" "A *Free* project to implement OSF's RFC 86.0.\n" "Pluggable authentication modules are small shared object files that can\n" @@ -8788,18 +8905,18 @@ msgid "" "at login. Local and dynamic reconfiguration are its key features." msgstr "" -#: gnu/packages/linux.scm:1683 +#: gnu/packages/linux.scm:1718 msgid "This package provides a PAM interface using @code{ctypes}." msgstr "" -#: gnu/packages/linux.scm:1712 +#: gnu/packages/linux.scm:1747 msgid "" "This package provides a PAM module that hands over your\n" "login password to @code{gpg-agent}. This can be useful if you are using a\n" "GnuPG-based password manager like @code{pass}." msgstr "" -#: gnu/packages/linux.scm:1741 +#: gnu/packages/linux.scm:1776 msgid "" "This package contains utilities for accessing the powercap\n" "Linux kernel feature through sysfs. It includes an implementation for working\n" @@ -8807,7 +8924,7 @@ msgid "" "It provides the commands @code{powercap-info} and @code{powercap-set}." msgstr "" -#: gnu/packages/linux.scm:1772 +#: gnu/packages/linux.scm:1807 msgid "" "Powerstat measures and reports your computer's power consumption in real\n" "time. On mobile PCs, it uses ACPI battery information to measure the power\n" @@ -8824,28 +8941,28 @@ msgid "" "deviation, and minimum and maximum values. It can show a nice histogram too." msgstr "" -#: gnu/packages/linux.scm:1810 +#: gnu/packages/linux.scm:1845 msgid "" "This PSmisc package is a set of some small useful utilities that\n" "use the proc file system. We're not about changing the world, but\n" "providing the system administrator with some help in common tasks." msgstr "" -#: gnu/packages/linux.scm:1948 +#: gnu/packages/linux.scm:1984 msgid "" "Util-linux is a diverse collection of Linux kernel\n" "utilities. It provides dmesg and includes tools for working with file systems,\n" "block devices, UUIDs, TTYs, and many other tools." msgstr "" -#: gnu/packages/linux.scm:1986 +#: gnu/packages/linux.scm:2037 msgid "" "ddate displays the Discordian date and holidays of a given date.\n" "The Discordian calendar was made popular by the \"Illuminatus!\" trilogy\n" "by Robert Shea and Robert Anton Wilson." msgstr "" -#: gnu/packages/linux.scm:2040 +#: gnu/packages/linux.scm:2091 msgid "" "The kernel Linux's @dfn{frame buffers} provide a simple interface to\n" "different kinds of graphic displays. The @command{fbset} utility can query and\n" @@ -8853,7 +8970,7 @@ msgid "" "parameters." msgstr "" -#: gnu/packages/linux.scm:2085 +#: gnu/packages/linux.scm:2136 msgid "" "Procps is the package that has a bunch of small useful utilities\n" "that give information about processes using the Linux /proc file system.\n" @@ -8861,11 +8978,11 @@ msgid "" "slabtop, tload, top, vmstat, w, watch and sysctl." msgstr "" -#: gnu/packages/linux.scm:2130 +#: gnu/packages/linux.scm:2181 msgid "Tools for working with USB devices, such as lsusb." msgstr "" -#: gnu/packages/linux.scm:2154 +#: gnu/packages/linux.scm:2205 msgid "" "The USB/IP protocol enables to pass USB device from a server to\n" "a client over the network. The server is a machine which shares an\n" @@ -8878,23 +8995,23 @@ msgid "" "module." msgstr "" -#: gnu/packages/linux.scm:2237 +#: gnu/packages/linux.scm:2288 msgid "This package provides tools for manipulating ext2/ext3/ext4 file systems." msgstr "" -#: gnu/packages/linux.scm:2279 +#: gnu/packages/linux.scm:2330 msgid "" "This package provides statically-linked e2fsck command taken\n" "from the e2fsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:2302 +#: gnu/packages/linux.scm:2353 msgid "" "Extundelete is a set of tools that can recover deleted files from an\n" "ext3 or ext4 partition." msgstr "" -#: gnu/packages/linux.scm:2335 +#: gnu/packages/linux.scm:2386 msgid "" "Zerofree finds the unallocated blocks with non-zero value content in an\n" "ext2, ext3, or ext4 file system and fills them with zeroes (or another value).\n" @@ -8902,39 +9019,39 @@ msgid "" "Zerofree requires the file system to be unmounted or mounted read-only." msgstr "" -#: gnu/packages/linux.scm:2380 +#: gnu/packages/linux.scm:2431 msgid "" "strace is a system call tracer, i.e. a debugging tool which prints out a\n" "trace of all the system calls made by a another process/program." msgstr "" -#: gnu/packages/linux.scm:2403 +#: gnu/packages/linux.scm:2454 msgid "" "ltrace intercepts and records dynamic library calls which are called by\n" "an executed process and the signals received by that process. It can also\n" "intercept and print the system calls executed by the program." msgstr "" -#: gnu/packages/linux.scm:2428 +#: gnu/packages/linux.scm:2479 msgid "" "This package contains Advanced Linux Sound Architecture Use Case Manager\n" "configuration of audio input/output names and routing for specific audio\n" "hardware." msgstr "" -#: gnu/packages/linux.scm:2452 +#: gnu/packages/linux.scm:2503 msgid "" "This package contains Advanced Linux Sound Architecture topology\n" "configuration files that can be used for specific audio hardware." msgstr "" -#: gnu/packages/linux.scm:2499 gnu/packages/linux.scm:2548 +#: gnu/packages/linux.scm:2550 gnu/packages/linux.scm:2599 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system." msgstr "" -#: gnu/packages/linux.scm:2617 +#: gnu/packages/linux.scm:2668 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system. This package enhances ALSA\n" @@ -8943,7 +9060,7 @@ msgid "" "external rate conversion." msgstr "" -#: gnu/packages/linux.scm:2655 +#: gnu/packages/linux.scm:2706 msgid "" "@command{iptables} is the user-space command line program used to\n" "configure the Linux 2.4.x and later IPv4 packet filtering ruleset\n" @@ -8955,7 +9072,7 @@ msgid "" "Both commands are targeted at system administrators." msgstr "" -#: gnu/packages/linux.scm:2691 +#: gnu/packages/linux.scm:2742 msgid "" "This simple daemon feeds entropy from the CPU Jitter @acronym{RNG, random\n" "number generator} core to the kernel Linux's entropy estimator. This prevents\n" @@ -8977,7 +9094,7 @@ msgid "" "early boot when entropy may be low, especially in virtualised environments." msgstr "" -#: gnu/packages/linux.scm:2727 +#: gnu/packages/linux.scm:2778 msgid "" "@command{lsscsi} lists SCSI logical units or SCSI targets. It can\n" "also list NVMe namespaces or controllers and show the relationship between a\n" @@ -8985,7 +9102,7 @@ msgid "" "name." msgstr "" -#: gnu/packages/linux.scm:2751 +#: gnu/packages/linux.scm:2802 msgid "" "ebtables is an application program used to set up and maintain the\n" "tables of rules (inside the Linux kernel) that inspect Ethernet frames. It is\n" @@ -8993,7 +9110,7 @@ msgid "" "that the Ethernet protocol is much simpler than the IP protocol." msgstr "" -#: gnu/packages/linux.scm:2816 +#: gnu/packages/linux.scm:2867 msgid "" "Iproute2 is a collection of utilities for controlling TCP/IP networking\n" "and traffic with the Linux kernel. The most important of these are\n" @@ -9005,7 +9122,7 @@ msgid "" "inadequately in modern network environments, and both should be deprecated." msgstr "" -#: gnu/packages/linux.scm:2896 +#: gnu/packages/linux.scm:2947 msgid "" "This package includes the important tools for controlling the network\n" "subsystem of the Linux kernel. This includes arp, ifconfig, netstat, rarp and\n" @@ -9014,13 +9131,13 @@ msgid "" "configuration (iptunnel, ipmaddr)." msgstr "" -#: gnu/packages/linux.scm:2947 +#: gnu/packages/linux.scm:2989 msgid "" "Libcap2 provides a programming interface to POSIX capabilities on\n" "Linux-based operating systems." msgstr "" -#: gnu/packages/linux.scm:2974 +#: gnu/packages/linux.scm:3016 msgid "" "Utilities for Linux's Ethernet bridging facilities. A bridge is a way\n" "to connect two Ethernet segments together in a protocol independent way.\n" @@ -9029,7 +9146,7 @@ msgid "" "transparently through a bridge." msgstr "" -#: gnu/packages/linux.scm:3025 +#: gnu/packages/linux.scm:3067 msgid "" "The libnl suite is a collection of libraries providing APIs to netlink\n" "protocol based Linux kernel interfaces. Netlink is an IPC mechanism primarily\n" @@ -9038,13 +9155,13 @@ msgid "" "configuration and monitoring interfaces." msgstr "" -#: gnu/packages/linux.scm:3099 +#: gnu/packages/linux.scm:3141 msgid "" "iw is a new nl80211 based CLI configuration utility for wireless\n" "devices. It replaces @code{iwconfig}, which is deprecated." msgstr "" -#: gnu/packages/linux.scm:3149 +#: gnu/packages/linux.scm:3191 msgid "" "PowerTOP is a Linux tool to diagnose issues with power consumption and\n" "power management. In addition to being a diagnostic tool, PowerTOP also has\n" @@ -9053,19 +9170,19 @@ msgid "" "settings." msgstr "" -#: gnu/packages/linux.scm:3176 +#: gnu/packages/linux.scm:3218 msgid "" "Aumix adjusts an audio mixer from X, the console, a terminal,\n" "the command line or a script." msgstr "" -#: gnu/packages/linux.scm:3207 +#: gnu/packages/linux.scm:3249 msgid "" "Iotop is a Python program with a top like user interface to show the\n" "processes currently causing I/O." msgstr "" -#: gnu/packages/linux.scm:3265 +#: gnu/packages/linux.scm:3307 msgid "" "As a consequence of its monolithic design, file system code for Linux\n" "normally goes into the kernel itself---which is not only a robustness issue,\n" @@ -9075,7 +9192,7 @@ msgid "" "user-space processes." msgstr "" -#: gnu/packages/linux.scm:3358 +#: gnu/packages/linux.scm:3400 msgid "" "UnionFS-FUSE is a flexible union file system implementation in user\n" "space, using the FUSE library. Mounting a union file system allows you to\n" @@ -9083,7 +9200,7 @@ msgid "" "UnionFS-FUSE additionally supports copy-on-write." msgstr "" -#: gnu/packages/linux.scm:3437 +#: gnu/packages/linux.scm:3479 msgid "" "This is a file system client based on the SSH File Transfer Protocol.\n" "Since most SSH servers already support this protocol it is very easy to set\n" @@ -9091,7 +9208,7 @@ msgid "" "file system is as easy as logging into the server with an SSH client." msgstr "" -#: gnu/packages/linux.scm:3464 +#: gnu/packages/linux.scm:3506 msgid "" "archivemount is a FUSE-based file system for Unix variants,\n" "including Linux. Its purpose is to mount archives (i.e. tar, tar.gz, etc.) to a\n" @@ -9100,7 +9217,7 @@ msgid "" "compressed, transparent to other programs, without decompressing them." msgstr "" -#: gnu/packages/linux.scm:3495 +#: gnu/packages/linux.scm:3537 msgid "" "NUMA stands for Non-Uniform Memory Access, in other words a system whose\n" "memory is not all in one place. The @command{numactl} program allows you to\n" @@ -9113,26 +9230,26 @@ msgid "" "NUMA performance on your system." msgstr "" -#: gnu/packages/linux.scm:3533 +#: gnu/packages/linux.scm:3575 msgid "" "Kbd-neo provides the Neo2 keyboard layout for use with\n" "@command{loadkeys(1)} from @code{kbd(4)}." msgstr "" -#: gnu/packages/linux.scm:3599 +#: gnu/packages/linux.scm:3641 msgid "" "This package contains keytable files and keyboard utilities compatible\n" "for systems using the Linux kernel. This includes commands such as\n" "@code{loadkeys}, @code{setfont}, @code{kbdinfo}, and @code{chvt}." msgstr "" -#: gnu/packages/linux.scm:3662 +#: gnu/packages/linux.scm:3704 msgid "" "The inotify-tools packages provides a C library and command-line tools\n" "to use Linux' inotify mechanism, which allows file accesses to be monitored." msgstr "" -#: gnu/packages/linux.scm:3714 +#: gnu/packages/linux.scm:3756 msgid "" "Kmod is a set of tools to handle common tasks with Linux\n" "kernel modules like insert, remove, list, check properties, resolve\n" @@ -9143,21 +9260,21 @@ msgid "" "from the module-init-tools project." msgstr "" -#: gnu/packages/linux.scm:3769 +#: gnu/packages/linux.scm:3812 msgid "" "Early OOM is a minimalist out of memory (OOM) daemon that\n" "runs in user space and provides a more responsive and configurable alternative\n" "to the in-kernel OOM killer." msgstr "" -#: gnu/packages/linux.scm:3867 +#: gnu/packages/linux.scm:3892 msgid "" "Udev is a daemon which dynamically creates and removes\n" "device nodes from /dev/, handles hotplug events and loads drivers at boot\n" "time." msgstr "" -#: gnu/packages/linux.scm:3897 +#: gnu/packages/linux.scm:3922 msgid "" "Python-evdev provides bindings to the generic input event interface in\n" "Linux. The @code{evdev} interface serves the purpose of passing events\n" @@ -9169,7 +9286,7 @@ msgid "" "devices that can inject events directly into the input subsystem." msgstr "" -#: gnu/packages/linux.scm:3930 +#: gnu/packages/linux.scm:3955 msgid "" "Interception Tools provides a composable infrastructure on top of\n" "@code{libudev} and @code{libevdev}. The following utilities are provided:\n" @@ -9182,33 +9299,33 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/linux.scm:3979 +#: gnu/packages/linux.scm:4004 msgid "" "Dual Function Keys is a plugin for @code{interception-tools} that allows\n" "one to send arbitrary keycodes when a given key is tapped or held." msgstr "" -#: gnu/packages/linux.scm:4056 +#: gnu/packages/linux.scm:4081 msgid "" "LVM2 is the logical volume management tool set for Linux-based systems.\n" "This package includes the user-space libraries and tools, including the device\n" "mapper. Kernel components are part of Linux-libre." msgstr "" -#: gnu/packages/linux.scm:4122 +#: gnu/packages/linux.scm:4147 msgid "" "A suite of tools for manipulating the metadata of the\n" "dm-thin, dm-cache and dm-era device-mapper targets." msgstr "" -#: gnu/packages/linux.scm:4144 +#: gnu/packages/linux.scm:4169 msgid "" "This package provides an advanced monitor of critical system\n" "resources, supervises the heartbeat of processes, records deadline\n" "transgressions, and initiates a controlled reset if needed." msgstr "" -#: gnu/packages/linux.scm:4189 +#: gnu/packages/linux.scm:4214 msgid "" "Wireless Tools are used to manipulate the now-deprecated\n" "Linux Wireless Extensions; consider using @code{iw} instead. The Wireless\n" @@ -9217,35 +9334,35 @@ msgid "" "interface." msgstr "" -#: gnu/packages/linux.scm:4280 +#: gnu/packages/linux.scm:4305 msgid "" "The Central Regulatory Domain Agent (CRDA) acts as the udev helper for\n" "communication between the kernel Linux and user space for regulatory\n" "compliance." msgstr "" -#: gnu/packages/linux.scm:4350 +#: gnu/packages/linux.scm:4375 msgid "" "This package contains the wireless regulatory database for the Central\n" "Regulatory Database Agent (CRDA). The database contains information on\n" "country-specific regulations for the wireless spectrum." msgstr "" -#: gnu/packages/linux.scm:4424 +#: gnu/packages/linux.scm:4449 msgid "" "Lm-sensors is a hardware health monitoring package for Linux. It allows\n" "you to access information from temperature, voltage, and fan speed sensors.\n" "It works with most newer systems." msgstr "" -#: gnu/packages/linux.scm:4444 +#: gnu/packages/linux.scm:4469 msgid "" "@command{iucode_tool} is a utility to work with microcode packages for\n" "Intel processors. It can convert between formats, extract specific versions,\n" "create a firmware image suitable for the Linux kernel, and more." msgstr "" -#: gnu/packages/linux.scm:4475 +#: gnu/packages/linux.scm:4501 msgid "" "The i2c-tools package contains a heterogeneous set of I2C tools for\n" "Linux: a bus probing tool, a chip dumper, register-level SMBus access helpers,\n" @@ -9253,14 +9370,14 @@ msgid "" "SMBus access." msgstr "" -#: gnu/packages/linux.scm:4514 +#: gnu/packages/linux.scm:4540 msgid "" "Xsensors reads data from the libsensors library regarding hardware\n" "health such as temperature, voltage and fan speed and displays the information\n" "in a digital read-out." msgstr "" -#: gnu/packages/linux.scm:4568 +#: gnu/packages/linux.scm:4600 msgid "" "perf is a tool suite for profiling using hardware performance counters,\n" "with support in the Linux kernel. perf can instrument CPU performance\n" @@ -9269,7 +9386,7 @@ msgid "" "particular the @code{perf} command." msgstr "" -#: gnu/packages/linux.scm:4593 +#: gnu/packages/linux.scm:4625 msgid "" "pflask is a simple tool for creating Linux namespace\n" "containers. It can be used for running a command or even booting an OS inside\n" @@ -9278,7 +9395,7 @@ msgid "" "thanks to the use of namespaces." msgstr "" -#: gnu/packages/linux.scm:4678 +#: gnu/packages/linux.scm:4710 msgid "" "Singularity is a container platform supporting a number of\n" "container image formats. It can build SquashFS container images or import\n" @@ -9286,7 +9403,7 @@ msgid "" "isolation or root privileges." msgstr "" -#: gnu/packages/linux.scm:4711 +#: gnu/packages/linux.scm:4742 msgid "" "@command{hdparm} is a command-line utility to control ATA controllers and\n" "disk drives. It can increase performance and/or reliability by careful tuning\n" @@ -9300,21 +9417,21 @@ msgid "" "Translation (@dfn{SAT}) are also supported." msgstr "" -#: gnu/packages/linux.scm:4750 +#: gnu/packages/linux.scm:4782 msgid "" "Nvme-cli is a utility to provide standards compliant tooling\n" "for NVM-Express drives. It was made specifically for Linux as it relies on the\n" "IOCTLs defined by the mainline kernel driver." msgstr "" -#: gnu/packages/linux.scm:4776 +#: gnu/packages/linux.scm:4808 msgid "" "rfkill is a simple tool for accessing the rfkill device interface,\n" "which is used to enable and disable wireless networking devices, typically\n" "WLAN, Bluetooth and mobile broadband." msgstr "" -#: gnu/packages/linux.scm:4798 +#: gnu/packages/linux.scm:4830 msgid "" "@code{acpi} attempts to replicate the functionality of the\n" "\"old\" @code{apm} command on ACPI systems, including battery and thermal\n" @@ -9322,7 +9439,7 @@ msgid "" "about ACPI devices." msgstr "" -#: gnu/packages/linux.scm:4819 +#: gnu/packages/linux.scm:4851 msgid "" "acpid is designed to notify user-space programs of Advanced\n" "Configuration and Power Interface (ACPI) events. acpid should be started\n" @@ -9331,34 +9448,34 @@ msgid "" "specified in /etc/acpi/events and execute the rules that match the event." msgstr "" -#: gnu/packages/linux.scm:4843 +#: gnu/packages/linux.scm:4875 msgid "" "These are a set of utilities built upon sysfs, a virtual file system in\n" "Linux kernel versions 2.5+ that exposes a system's device tree. The package\n" "also contains the libsysfs library." msgstr "" -#: gnu/packages/linux.scm:4886 +#: gnu/packages/linux.scm:4918 msgid "" "The cpufrequtils suite contains utilities to retrieve CPU frequency\n" "information, and set the CPU frequency if supported, using the cpufreq\n" "capabilities of the Linux kernel." msgstr "" -#: gnu/packages/linux.scm:4922 +#: gnu/packages/linux.scm:4954 msgid "" "This package provides many of the missing pieces in GNU\n" "libc. Most notably the string functions: strlcpy(3), strlcat(3) and the *BSD\n" "sys/queue.h and sys/tree.h API's." msgstr "" -#: gnu/packages/linux.scm:4945 +#: gnu/packages/linux.scm:4977 msgid "" "This package provides small event loop that wraps the\n" "epoll family of APIs." msgstr "" -#: gnu/packages/linux.scm:4966 +#: gnu/packages/linux.scm:4998 msgid "" "Libraw1394 is the only supported interface to the kernel side raw1394 of\n" "the Linux IEEE-1394 subsystem, which provides direct access to the connected\n" @@ -9367,26 +9484,26 @@ msgid "" "protocol in question." msgstr "" -#: gnu/packages/linux.scm:4992 +#: gnu/packages/linux.scm:5024 msgid "" "Libavc1394 is a programming interface to the AV/C specification from\n" "the 1394 Trade Association. AV/C stands for Audio/Video Control." msgstr "" -#: gnu/packages/linux.scm:5016 +#: gnu/packages/linux.scm:5048 msgid "" "The libiec61883 library provides a higher level API for streaming DV,\n" "MPEG-2 and audio over Linux IEEE 1394." msgstr "" -#: gnu/packages/linux.scm:5067 +#: gnu/packages/linux.scm:5099 msgid "" "mdadm is a tool for managing Linux Software RAID arrays. It can create,\n" "assemble, report on, and monitor arrays. It can also move spares between raid\n" "arrays when needed." msgstr "" -#: gnu/packages/linux.scm:5199 +#: gnu/packages/linux.scm:5231 msgid "" "This package provides the following binaries to drive the\n" "Linux Device Mapper multipathing driver:\n" @@ -9399,66 +9516,66 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:5244 +#: gnu/packages/linux.scm:5288 msgid "" "This library enables userspace to use Linux kernel asynchronous I/O\n" "system calls, important for the performance of databases and other advanced\n" "applications." msgstr "" -#: gnu/packages/linux.scm:5287 +#: gnu/packages/linux.scm:5331 msgid "" "Blktrace is a block layer IO tracing mechanism which provides\n" "detailed information about request queue operations to user space. It extracts\n" "event traces from the kernel (via the relaying through the debug file system)." msgstr "" -#: gnu/packages/linux.scm:5312 +#: gnu/packages/linux.scm:5356 msgid "" "The SBC is a digital audio encoder and decoder used to transfer data to\n" "Bluetooth audio output devices like headphones or loudspeakers." msgstr "" -#: gnu/packages/linux.scm:5379 +#: gnu/packages/linux.scm:5423 msgid "" "BlueZ provides support for the core Bluetooth layers and protocols. It\n" "is flexible, efficient and uses a modular implementation." msgstr "" -#: gnu/packages/linux.scm:5403 +#: gnu/packages/linux.scm:5447 msgid "" "This package provides a FUSE-based file system that provides read and\n" "write access to exFAT devices." msgstr "" -#: gnu/packages/linux.scm:5426 +#: gnu/packages/linux.scm:5470 msgid "" "FuseISO is a FUSE module to mount ISO file system images (.iso, .nrg,\n" ".bin, .mdf and .img files). It supports plain ISO9660 Level 1 and 2, Rock\n" "Ridge, Joliet, and zisofs." msgstr "" -#: gnu/packages/linux.scm:5480 +#: gnu/packages/linux.scm:5524 msgid "" "The GPM (general-purpose mouse) daemon is a mouse server for\n" "applications running on the Linux console. It allows users to select items\n" "and copy/paste text in the console and in xterm." msgstr "" -#: gnu/packages/linux.scm:5551 +#: gnu/packages/linux.scm:5595 msgid "" "Btrfs is a @dfn{copy-on-write} (CoW) file system for Linux\n" "aimed at implementing advanced features while focusing on fault tolerance,\n" "repair and easy administration." msgstr "" -#: gnu/packages/linux.scm:5585 +#: gnu/packages/linux.scm:5629 msgid "" "This package provides the statically-linked @command{btrfs}\n" "from the btrfs-progs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5617 +#: gnu/packages/linux.scm:5661 msgid "" "Cramfs is a Linux file system designed to be simple, small,\n" "and to compress things well. It is used on a number of embedded systems and\n" @@ -9466,7 +9583,7 @@ msgid "" "blocks and random block placement." msgstr "" -#: gnu/packages/linux.scm:5652 +#: gnu/packages/linux.scm:5696 msgid "" "@command{compsize} takes a list of files (given as\n" "arguments) on a Btrfs file system and measures used compression types and\n" @@ -9483,20 +9600,20 @@ msgid "" "obviously it can be shared with files outside our set)." msgstr "" -#: gnu/packages/linux.scm:5700 +#: gnu/packages/linux.scm:5744 msgid "" "F2FS, the Flash-Friendly File System, is a modern file system\n" "designed to be fast and durable on flash devices such as solid-state\n" "disks and SD cards. This package provides the userland utilities." msgstr "" -#: gnu/packages/linux.scm:5790 +#: gnu/packages/linux.scm:5834 msgid "" "This package provides statically-linked fsck.f2fs command taken\n" "from the f2fs-tools package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5821 +#: gnu/packages/linux.scm:5865 msgid "" "Prevents shock damage to the internal spinning hard drive(s) of some\n" "HP and Dell laptops. When sudden movement is detected, all input/output\n" @@ -9506,7 +9623,7 @@ msgid "" "feature, and a laptop with an accelerometer. It has no effect on SSDs." msgstr "" -#: gnu/packages/linux.scm:5879 +#: gnu/packages/linux.scm:5923 msgid "" "Thinkfan is a simple fan control program. It reads temperatures,\n" "checks them against configured limits and switches to appropriate (also\n" @@ -9515,7 +9632,7 @@ msgid "" "from userspace." msgstr "" -#: gnu/packages/linux.scm:5935 +#: gnu/packages/linux.scm:5979 msgid "" "Tpacpi-bat is a command-line interface to control battery charging on\n" "@uref{https://github.com/teleshoes/tpacpi-bat/wiki/Supported-Hardware, Lenovo\n" @@ -9530,7 +9647,7 @@ msgid "" "supported." msgstr "" -#: gnu/packages/linux.scm:5979 +#: gnu/packages/linux.scm:6023 msgid "" "Tmon is a tool to interact with the complex thermal subsystem of the\n" "kernel Linux. It helps visualize thermal relationships and real-time thermal\n" @@ -9547,7 +9664,7 @@ msgid "" "by hand is no trivial task: @command{tmon} aims to make it understandable." msgstr "" -#: gnu/packages/linux.scm:6021 +#: gnu/packages/linux.scm:6065 msgid "" "Turbostat reports x86 processor topology, frequency, idle power state\n" "statistics, temperature, and power consumption. Some information is unavailable\n" @@ -9562,20 +9679,20 @@ msgid "" "invocations of itself." msgstr "" -#: gnu/packages/linux.scm:6080 +#: gnu/packages/linux.scm:6124 msgid "" "NTFS-3G provides read-write access to NTFS file systems, which are\n" "commonly found on Microsoft Windows. It is implemented as a FUSE file system.\n" "The package provides additional NTFS tools." msgstr "" -#: gnu/packages/linux.scm:6127 +#: gnu/packages/linux.scm:6171 msgid "" "This package provides a statically linked @command{ntfsfix} taken\n" "from the ntfs-3g package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:6174 +#: gnu/packages/linux.scm:6218 msgid "" "This package provides userspace components for the InfiniBand\n" "subsystem of the Linux kernel. Specifically it contains userspace\n" @@ -9595,7 +9712,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6228 +#: gnu/packages/linux.scm:6272 msgid "" "This is a collection of tests written over uverbs intended for\n" "use as a performance micro-benchmark. The tests may be used for hardware or\n" @@ -9611,20 +9728,20 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6270 +#: gnu/packages/linux.scm:6314 msgid "" "Monitor a hardware random number generator, and supply entropy\n" "from that to the system kernel's @file{/dev/random} machinery." msgstr "" -#: gnu/packages/linux.scm:6312 +#: gnu/packages/linux.scm:6356 msgid "" "cpupower is a set of user-space tools that use the cpufreq feature of the\n" "Linux kernel to retrieve and control processor features related to power saving,\n" "such as frequency and voltage scaling." msgstr "" -#: gnu/packages/linux.scm:6344 +#: gnu/packages/linux.scm:6388 msgid "" "@command{x86_energy_perf_policy} displays and updates energy-performance\n" "policy settings specific to Intel Architecture Processors. Settings are\n" @@ -9632,7 +9749,7 @@ msgid "" "cpufreq sub-system is enabled or not." msgstr "" -#: gnu/packages/linux.scm:6370 +#: gnu/packages/linux.scm:6414 msgid "" "haveged generates an unpredictable stream of random numbers for use by\n" "Linux's @file{/dev/random} and @file{/dev/urandom} devices. The kernel's\n" @@ -9650,7 +9767,7 @@ msgid "" "not as a replacement for it." msgstr "" -#: gnu/packages/linux.scm:6456 +#: gnu/packages/linux.scm:6500 msgid "" "eCryptfs is a POSIX-compliant stacked cryptographic file system for Linux.\n" "Each file's cryptographic meta-data is stored inside the file itself, along\n" @@ -9660,7 +9777,7 @@ msgid "" "2.6.19. This package contains the userland utilities to manage it." msgstr "" -#: gnu/packages/linux.scm:6488 +#: gnu/packages/linux.scm:6532 msgid "" "Libnfsidmap is a library holding mulitiple methods of\n" "mapping names to ids and visa versa, mainly for NFSv4. It provides an\n" @@ -9668,13 +9785,13 @@ msgid "" "the default @code{nsswitch} and the experimental @code{umich_ldap}." msgstr "" -#: gnu/packages/linux.scm:6524 +#: gnu/packages/linux.scm:6568 msgid "" "Tools for loading and managing Linux kernel modules, such as\n" "@code{modprobe}, @code{insmod}, @code{lsmod}, and more." msgstr "" -#: gnu/packages/linux.scm:6565 +#: gnu/packages/linux.scm:6609 msgid "" "The mcelog daemon logs memory, I/O, CPU, and other hardware errors on x86\n" "systems running the kernel Linux. It can also perform user-defined tasks, such\n" @@ -9682,13 +9799,13 @@ msgid "" "exceeded." msgstr "" -#: gnu/packages/linux.scm:6596 +#: gnu/packages/linux.scm:6640 msgid "" "This package provides utilities for testing, partitioning, etc\n" "of flash storage." msgstr "" -#: gnu/packages/linux.scm:6628 +#: gnu/packages/linux.scm:6672 msgid "" "The libseccomp library provides an easy to use, platform\n" "independent, interface to the Linux Kernel's syscall filtering mechanism. The\n" @@ -9698,7 +9815,7 @@ msgid "" "developers." msgstr "" -#: gnu/packages/linux.scm:6671 +#: gnu/packages/linux.scm:6715 msgid "" "RadeonTop monitors resource consumption on supported AMD\n" "Radeon Graphics Processing Units (GPUs), either in real time as bar graphs on\n" @@ -9708,13 +9825,13 @@ msgid "" "under OpenGL graphics workloads." msgstr "" -#: gnu/packages/linux.scm:6718 +#: gnu/packages/linux.scm:6762 msgid "" "This package provides a library and a command line\n" "interface to the variable facility of UEFI boot firmware." msgstr "" -#: gnu/packages/linux.scm:6755 +#: gnu/packages/linux.scm:6799 msgid "" "@code{efibootmgr} is a user-space application to modify the Intel\n" "Extensible Firmware Interface (EFI) Boot Manager. This application can\n" @@ -9722,7 +9839,7 @@ msgid "" "running boot option, and more." msgstr "" -#: gnu/packages/linux.scm:6791 +#: gnu/packages/linux.scm:6835 msgid "" "The sysstat utilities are a collection of performance\n" "monitoring tools for Linux. These include @code{mpstat}, @code{iostat},\n" @@ -9730,7 +9847,7 @@ msgid "" "@code{sadf} and @code{sa}." msgstr "" -#: gnu/packages/linux.scm:6832 +#: gnu/packages/linux.scm:6876 msgid "" "Light is a program to send commands to screen backlight controllers\n" "under GNU/Linux. Features include:\n" @@ -9744,7 +9861,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/linux.scm:6880 +#: gnu/packages/linux.scm:6924 msgid "" "This program allows you read and control device brightness. Devices\n" "include backlight and LEDs. It can also preserve current brightness before\n" @@ -9754,7 +9871,7 @@ msgid "" "interface in sysfs, which can be accomplished with the included udev rules." msgstr "" -#: gnu/packages/linux.scm:7007 +#: gnu/packages/linux.scm:7048 msgid "" "TLP is a power management tool for Linux. It comes with\n" "a default configuration already optimized for battery life. Nevertheless,\n" @@ -9762,7 +9879,7 @@ msgid "" "every time the power supply source is changed." msgstr "" -#: gnu/packages/linux.scm:7073 +#: gnu/packages/linux.scm:7114 msgid "" "The Python scripts in this project generate a GTK-UI to change\n" "TLP configuration files easily. It aims to protect users from setting\n" @@ -9770,7 +9887,7 @@ msgid "" "configuration values." msgstr "" -#: gnu/packages/linux.scm:7099 +#: gnu/packages/linux.scm:7140 msgid "" "@command{lshw} (Hardware Lister) is a small tool to provide\n" "detailed information on the hardware configuration of the machine.\n" @@ -9780,7 +9897,7 @@ msgid "" "machines (PowerMac G4 is known to work)." msgstr "" -#: gnu/packages/linux.scm:7123 +#: gnu/packages/linux.scm:7164 msgid "" "Libmnl is a minimalistic user-space library oriented to\n" "Netlink developers. There are a lot of common tasks in parsing, validating,\n" @@ -9789,7 +9906,7 @@ msgid "" "re-use code and to avoid re-inventing the wheel." msgstr "" -#: gnu/packages/linux.scm:7148 +#: gnu/packages/linux.scm:7189 msgid "" "Libnftnl is a userspace library providing a low-level netlink\n" "programming interface to the in-kernel nf_tables subsystem. The library\n" @@ -9797,7 +9914,7 @@ msgid "" "used by nftables." msgstr "" -#: gnu/packages/linux.scm:7194 +#: gnu/packages/linux.scm:7235 msgid "" "nftables is the project that aims to replace the existing\n" "{ip,ip6,arp,eb}tables framework. Basically, this project provides a new packet\n" @@ -9807,7 +9924,7 @@ msgid "" "userspace queueing component and the logging subsystem." msgstr "" -#: gnu/packages/linux.scm:7336 +#: gnu/packages/linux.scm:7377 msgid "" "PRoot is a user-space implementation of @code{chroot}, @code{mount --bind},\n" "and @code{binfmt_misc}. This means that users don't need any privileges or\n" @@ -9820,7 +9937,7 @@ msgid "" "available in the kernel Linux." msgstr "" -#: gnu/packages/linux.scm:7399 +#: gnu/packages/linux.scm:7437 msgid "" "cpuid dumps detailed information about the CPU(s) gathered\n" "from the CPUID instruction, and also determines the exact model of CPU(s). It\n" @@ -9828,14 +9945,14 @@ msgid "" "NexGen, Rise, and SiS CPUs." msgstr "" -#: gnu/packages/linux.scm:7426 +#: gnu/packages/linux.scm:7464 msgid "" "jmtpfs uses FUSE (file system in userspace) to provide access\n" "to data over the Media Transfer Protocol (MTP). Unprivileged users can mount\n" "the MTP device as a file system." msgstr "" -#: gnu/packages/linux.scm:7453 +#: gnu/packages/linux.scm:7491 msgid "" "Procenv is a command-line tool that displays as much detail about\n" "itself and its environment as possible. It can be used as a test\n" @@ -9843,7 +9960,7 @@ msgid "" "comparing system environments." msgstr "" -#: gnu/packages/linux.scm:7482 +#: gnu/packages/linux.scm:7520 msgid "" "OpenFabrics Interfaces (OFI) is a framework focused on exporting fabric\n" "communication services to applications. OFI is best described as a collection\n" @@ -9857,7 +9974,7 @@ msgid "" "libraries, which are often integrated directly into libfabric." msgstr "" -#: gnu/packages/linux.scm:7544 +#: gnu/packages/linux.scm:7582 msgid "" "The PSM Messaging API, or PSM API, is Intel's low-level user-level\n" "communications interface for the True Scale family of products. PSM users are\n" @@ -9865,14 +9982,14 @@ msgid "" "interfaces in parallel environments." msgstr "" -#: gnu/packages/linux.scm:7587 +#: gnu/packages/linux.scm:7625 msgid "" "snapscreenshot saves a screenshot of one or more Linux text consoles as a\n" "Targa (@dfn{.tga}) image. It can be used by anyone with read access to the\n" "relevant @file{/dev/vcs*} file(s)." msgstr "" -#: gnu/packages/linux.scm:7641 +#: gnu/packages/linux.scm:7679 msgid "" "fbcat saves the contents of the Linux framebuffer (@file{/dev/fb*}), or\n" "a dump therof. It supports a wide range of drivers and pixel formats.\n" @@ -9884,14 +10001,14 @@ msgid "" "emulates the behaviour of Gunnar Monell's older fbgrab utility." msgstr "" -#: gnu/packages/linux.scm:7672 +#: gnu/packages/linux.scm:7710 msgid "" "Control groups is Linux kernel method for process resource\n" "restriction, permission handling and more. This package provides userspace\n" "interface to this kernel feature." msgstr "" -#: gnu/packages/linux.scm:7707 +#: gnu/packages/linux.scm:7745 msgid "" "mbpfan is a fan control daemon for Apple Macbooks. It uses input from\n" "the @code{coretemp} module and sets the fan speed using the @code{applesmc}\n" @@ -9899,7 +10016,7 @@ msgid "" "privileges." msgstr "" -#: gnu/packages/linux.scm:7751 +#: gnu/packages/linux.scm:7789 msgid "" "This package is low-level user-level Intel's communications interface.\n" "The PSM2 API is a high-performance vendor-specific protocol that provides a\n" @@ -9907,7 +10024,7 @@ msgid "" "high-speed networking devices." msgstr "" -#: gnu/packages/linux.scm:7794 +#: gnu/packages/linux.scm:7832 msgid "" "This package provides a library called libpfm4, which is used to develop\n" "monitoring tools exploiting the performance monitoring events such as those\n" @@ -9922,7 +10039,7 @@ msgid "" "introduced in Linux 2.6.31." msgstr "" -#: gnu/packages/linux.scm:7824 +#: gnu/packages/linux.scm:7862 msgid "" "@code{libnfnetlink} is the low-level library for netfilter related\n" "kernel/userspace communication. It provides a generic messaging\n" @@ -9931,7 +10048,7 @@ msgid "" "management tools in userspace." msgstr "" -#: gnu/packages/linux.scm:7851 +#: gnu/packages/linux.scm:7889 msgid "" "The netlink package provides a simple netlink library for\n" "Go. Netlink is the interface a user-space program in Linux uses to\n" @@ -9939,7 +10056,7 @@ msgid "" "IP addresses and routes, and configure IPsec." msgstr "" -#: gnu/packages/linux.scm:7891 +#: gnu/packages/linux.scm:7929 msgid "" "The inih (INI Not Invented Here) library is a simple .INI file\n" "parser written in C. It's only a couple of pages of code, and it was designed to\n" @@ -9948,19 +10065,19 @@ msgid "" "822-style multi-line syntax and name: value entries." msgstr "" -#: gnu/packages/linux.scm:7942 +#: gnu/packages/linux.scm:7980 msgid "" "This package provides commands to create and check XFS\n" "file systems." msgstr "" -#: gnu/packages/linux.scm:7998 +#: gnu/packages/linux.scm:8036 msgid "" "This package provides a statically linked @command{xfs_repair} taken\n" "from the xfsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:8034 +#: gnu/packages/linux.scm:8072 msgid "" "This package provides a program to generate an ext2\n" "file system as a normal (non-root) user. It does not require you to mount\n" @@ -9968,7 +10085,7 @@ msgid "" "the superuser to make device nodes." msgstr "" -#: gnu/packages/linux.scm:8129 +#: gnu/packages/linux.scm:8167 msgid "" "@command{fakeroot} runs a command in an environment where it appears to\n" "have root privileges for file manipulation. This is useful for allowing users\n" @@ -9981,7 +10098,7 @@ msgid "" "without using the archiver." msgstr "" -#: gnu/packages/linux.scm:8169 +#: gnu/packages/linux.scm:8207 msgid "" "@command{fakechroot} runs a command in an environment were is additional\n" "possibility to use @code{chroot} command without root privileges. This is\n" @@ -9992,13 +10109,13 @@ msgid "" "set as @code{LD_PRELOAD} to override the C library file system functions." msgstr "" -#: gnu/packages/linux.scm:8215 +#: gnu/packages/linux.scm:8253 msgid "" "inputattach dispatches input events from several device\n" "types and interfaces and translates so that the X server can use them." msgstr "" -#: gnu/packages/linux.scm:8251 +#: gnu/packages/linux.scm:8289 msgid "" "PipeWire is a project that aims to greatly improve handling of audio and\n" "video under Linux. It aims to support the usecases currently handled by both\n" @@ -10010,7 +10127,7 @@ msgid "" "of Linux application development." msgstr "" -#: gnu/packages/linux.scm:8318 +#: gnu/packages/linux.scm:8356 msgid "" "WirePlumber is a modular session / policy manager for\n" "PipeWire and a GObject-based high-level library that wraps PipeWire's API,\n" @@ -10018,7 +10135,7 @@ msgid "" "tools for managing PipeWire." msgstr "" -#: gnu/packages/linux.scm:8357 +#: gnu/packages/linux.scm:8395 msgid "" "The Embedded Linux* Library (ELL) provides core, low-level\n" "functionality for system daemons. It typically has no dependencies other than\n" @@ -10027,7 +10144,7 @@ msgid "" "platforms, it is not limited to resource-constrained systems." msgstr "" -#: gnu/packages/linux.scm:8386 +#: gnu/packages/linux.scm:8424 msgid "" "This package provides the @code{kexec} program and ancillary\n" "utilities. Using @code{kexec}, it is possible to boot directly into a new\n" @@ -10035,7 +10152,7 @@ msgid "" "system boot process." msgstr "" -#: gnu/packages/linux.scm:8419 +#: gnu/packages/linux.scm:8457 msgid "" "@code{cachefilesd} is a userspace daemon that manages the\n" "cache data store that is used by network file systems such as @code{AFS} and\n" @@ -10043,14 +10160,14 @@ msgid "" "persistent over reboots." msgstr "" -#: gnu/packages/linux.scm:8463 +#: gnu/packages/linux.scm:8501 msgid "" "Libbpf supports building BPF CO-RE-enabled applications, which, in\n" "contrast to BCC, do not require the Clang/LLVM runtime or linux kernel\n" "headers." msgstr "" -#: gnu/packages/linux.scm:8541 +#: gnu/packages/linux.scm:8579 msgid "" "BCC is a toolkit for creating efficient kernel tracing and manipulation\n" "programs, and includes several useful tools and examples. It makes use of\n" @@ -10059,7 +10176,7 @@ msgid "" "and above." msgstr "" -#: gnu/packages/linux.scm:8577 +#: gnu/packages/linux.scm:8615 msgid "" "bpftrace is a high-level tracing language for Linux enhanced Berkeley\n" "Packet Filter (eBPF) available in recent Linux kernels (4.x). bpftrace uses\n" @@ -10071,14 +10188,14 @@ msgid "" "created by Alastair Robertson." msgstr "" -#: gnu/packages/linux.scm:8609 +#: gnu/packages/linux.scm:8647 msgid "" "This package provides a Linux kernel module that will\n" "provide a serial device @code{/dev/ttyebus} with almost no latency upon\n" "receiving. It is dedicated to the PL011 UART of the Raspberry Pi." msgstr "" -#: gnu/packages/linux.scm:8635 +#: gnu/packages/linux.scm:8673 msgid "" "IP sets are a framework inside the Linux 2.4.x and 2.6.x kernel which\n" "can be administered by the ipset utility. Depending on the type,\n" @@ -10099,7 +10216,7 @@ msgid "" "then IP sets may be the proper tool for you." msgstr "" -#: gnu/packages/linux.scm:8682 +#: gnu/packages/linux.scm:8720 msgid "" "This is the io_uring library, liburing. liburing provides\n" "helpers to setup and teardown io_uring instances, and also a simplified\n" @@ -10107,14 +10224,14 @@ msgid "" "kernel side implementation." msgstr "" -#: gnu/packages/linux.scm:8710 +#: gnu/packages/linux.scm:8748 msgid "" "@acronym{EROFS, The Enhanced Read-Only File System} is a compressed,\n" "read-only file system optimized for resource-scarce devices. This package\n" "provides user-space tools for creating EROFS file systems." msgstr "" -#: gnu/packages/linux.scm:8754 +#: gnu/packages/linux.scm:8792 msgid "" "The @code{rasdaemon} daemon monitors platform @acronym{RAS, Reliability\n" "Availability and Serviceability} reports from Linux kernel trace events.\n" @@ -10122,7 +10239,7 @@ msgid "" "through standard log mechanisms like syslog." msgstr "" -#: gnu/packages/linux.scm:8788 +#: gnu/packages/linux.scm:8826 msgid "" "This package provides a C library with C++/Python bindings and\n" "command-line tools for interacting with GPIO devices that avoids the usage of\n" @@ -10148,33 +10265,33 @@ msgid "" "beginning." msgstr "" -#: gnu/packages/messaging.scm:181 +#: gnu/packages/messaging.scm:183 msgid "" "OMEMO-wget is a tool to handle cryptographic URLs, generated\n" "by @acronym{OMEMO, OMEMO Multi-End Message and Object Encryption}, during\n" "XMPP-based sessions." msgstr "" -#: gnu/packages/messaging.scm:237 +#: gnu/packages/messaging.scm:239 msgid "" "Psi is a capable XMPP client aimed at experienced users.\n" "Its design goals are simplicity and stability." msgstr "" -#: gnu/packages/messaging.scm:295 +#: gnu/packages/messaging.scm:297 msgid "" "GNT is an ncurses toolkit for creating text-mode graphical\n" "user interfaces in a fast and easy way. It is based on GLib and ncurses." msgstr "" -#: gnu/packages/messaging.scm:346 +#: gnu/packages/messaging.scm:348 msgid "" "LibGadu is library for handling Gadu-Gadu instant messenger\n" "protocol. The library is written in C and aims to be operating system and\n" "environment independent." msgstr "" -#: gnu/packages/messaging.scm:381 +#: gnu/packages/messaging.scm:383 msgid "" "SILC (Secure Internet Live Conferencing) is a modern and secure\n" "conferencing protocol. It provides all the common conferencing services like\n" @@ -10182,14 +10299,14 @@ msgid "" "conferencing." msgstr "" -#: gnu/packages/messaging.scm:427 +#: gnu/packages/messaging.scm:429 msgid "" "QXmpp is a XMPP client and server library written in C++ and uses the Qt\n" "framework. It builds XMPP clients complying with the XMPP Compliance Suites\n" "2021 for IM and Advanced Mobile." msgstr "" -#: gnu/packages/messaging.scm:454 +#: gnu/packages/messaging.scm:456 msgid "" "Meanwhile is a library for connecting to a LIM (Lotus Instant\n" "Messaging, formerly Lotus Sametime, formerly VPBuddy) community. It uses a\n" @@ -10197,7 +10314,7 @@ msgid "" "TCP sessions from existing clients." msgstr "" -#: gnu/packages/messaging.scm:500 +#: gnu/packages/messaging.scm:502 msgid "" "Poezio is a free console XMPP client (the protocol on which\n" "the Jabber IM network is built).\n" @@ -10210,7 +10327,7 @@ msgid "" "powerful, standard and open protocol." msgstr "" -#: gnu/packages/messaging.scm:533 +#: gnu/packages/messaging.scm:535 msgid "" "OTR allows you to have private conversations over instant\n" "messaging by providing: (1) Encryption: No one else can read your instant\n" @@ -10223,7 +10340,7 @@ msgid "" "your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:572 +#: gnu/packages/messaging.scm:574 msgid "" "libsignal-protocol-c is an implementation of a ratcheting\n" "forward secrecy protocol that works in synchronous and asynchronous\n" @@ -10231,20 +10348,20 @@ msgid "" "end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:609 +#: gnu/packages/messaging.scm:611 msgid "" "This is a client library for @code{libsignal-protocol-c}.\n" "It implements the necessary interfaces using @code{libgcrypt} and\n" "@code{sqlite}." msgstr "" -#: gnu/packages/messaging.scm:641 +#: gnu/packages/messaging.scm:643 msgid "" "This library implements @acronym{OMEMO, OMEMO Multi-End\n" "Message and Object Encryption} of XMPP (XEP-0384) in C." msgstr "" -#: gnu/packages/messaging.scm:681 +#: gnu/packages/messaging.scm:683 msgid "" "BitlBee brings IM (instant messaging) to IRC clients, for\n" "people who have an IRC client running all the time and don't want to run an\n" @@ -10254,20 +10371,20 @@ msgid "" "identi.ca and status.net)." msgstr "" -#: gnu/packages/messaging.scm:748 +#: gnu/packages/messaging.scm:750 msgid "" "Bitlbee-discord is a plugin for Bitlbee which provides\n" "access to servers running the Discord protocol." msgstr "" -#: gnu/packages/messaging.scm:794 +#: gnu/packages/messaging.scm:796 msgid "" "Purple-Mattermost is a plug-in for Purple, the instant messaging library\n" "used by Pidgin and Bitlbee, among others, to access\n" "@uref{https://mattermost.com/, Mattermost} servers." msgstr "" -#: gnu/packages/messaging.scm:852 +#: gnu/packages/messaging.scm:854 msgid "" "HexChat lets you connect to multiple IRC networks at once. The main\n" "window shows the list of currently connected networks and their channels, the\n" @@ -10276,7 +10393,7 @@ msgid "" "dictionaries. HexChat can be extended with multiple addons." msgstr "" -#: gnu/packages/messaging.scm:917 +#: gnu/packages/messaging.scm:919 msgid "" "ngIRCd is a lightweight @dfn{Internet Relay Chat} (IRC) server for small\n" "or private networks. It is easy to configure, can cope with dynamic IP\n" @@ -10284,13 +10401,13 @@ msgid "" "authentication." msgstr "" -#: gnu/packages/messaging.scm:1024 +#: gnu/packages/messaging.scm:1026 msgid "" "Pidgin is a modular instant messaging client that supports\n" "many popular chat protocols." msgstr "" -#: gnu/packages/messaging.scm:1064 +#: gnu/packages/messaging.scm:1066 msgid "" "Pidgin-OTR is a plugin that adds support for OTR to the Pidgin\n" "instant messaging client. OTR (Off-the-Record) Messaging allows you to have\n" @@ -10304,7 +10421,7 @@ msgid "" "control of your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:1118 +#: gnu/packages/messaging.scm:1120 msgid "" "ZNC is an @dfn{IRC network bouncer} or @dfn{BNC}. It can\n" "detach the client from the actual IRC server, and also from selected channels.\n" @@ -10312,41 +10429,41 @@ msgid "" "simultaneously and therefore appear under the same nickname on IRC." msgstr "" -#: gnu/packages/messaging.scm:1147 +#: gnu/packages/messaging.scm:1149 msgid "" "Python-nbxmpp is a Python library that provides a way for\n" "Python applications to use the XMPP network. This library was initially a fork\n" "of xmpppy." msgstr "" -#: gnu/packages/messaging.scm:1274 +#: gnu/packages/messaging.scm:1276 msgid "" "Gajim aims to be an easy to use and fully-featured XMPP chat\n" "client. It is extensible via plugins, supports end-to-end encryption (OMEMO\n" "and OpenPGP) and available in 29 languages." msgstr "" -#: gnu/packages/messaging.scm:1309 +#: gnu/packages/messaging.scm:1311 msgid "" "Gajim-OMEMO is a plugin that adds support for the OMEMO\n" "Encryption to Gajim. OMEMO is an XMPP Extension Protocol (XEP) for secure\n" "multi-client end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:1344 +#: gnu/packages/messaging.scm:1346 msgid "" "Gajim-OpenPGP is a plugin that adds support for the OpenPGP\n" "Encryption to Gajim." msgstr "" -#: gnu/packages/messaging.scm:1418 +#: gnu/packages/messaging.scm:1420 msgid "" "Dino is a chat client for the desktop. It focuses on providing\n" "a minimal yet reliable Jabber/XMPP experience and having encryption enabled by\n" "default." msgstr "" -#: gnu/packages/messaging.scm:1505 +#: gnu/packages/messaging.scm:1507 msgid "" "Prosody is a modern XMPP communication server. It aims to\n" "be easy to set up and configure, and efficient with system resources.\n" @@ -10355,43 +10472,43 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/messaging.scm:1540 +#: gnu/packages/messaging.scm:1542 msgid "" "This module implements XEP-0363: it allows clients to\n" "upload files over HTTP." msgstr "" -#: gnu/packages/messaging.scm:1572 +#: gnu/packages/messaging.scm:1574 msgid "" "This module implements XEP-0198: when supported by both\n" "the client and server, it can allow clients to resume a disconnected session,\n" "and prevent message loss." msgstr "" -#: gnu/packages/messaging.scm:1601 +#: gnu/packages/messaging.scm:1603 msgid "C library implementation of the Tox encrypted messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1633 +#: gnu/packages/messaging.scm:1635 msgid "" "Official fork of the C library implementation of the Tox encrypted\n" "messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1687 +#: gnu/packages/messaging.scm:1689 msgid "" "uTox is a lightweight Tox client. Tox is a distributed and secure\n" "instant messenger with audio and video chat capabilities." msgstr "" -#: gnu/packages/messaging.scm:1750 +#: gnu/packages/messaging.scm:1752 msgid "" "qTox is a Tox client that follows the Tox design\n" "guidelines. It provides an easy to use application that allows you to\n" "connect with friends and family without anyone else listening in." msgstr "" -#: gnu/packages/messaging.scm:1772 +#: gnu/packages/messaging.scm:1774 msgid "" "Ytalk is a replacement for the BSD talk program. Its main\n" "advantage is the ability to communicate with any arbitrary number of users at\n" @@ -10399,7 +10516,7 @@ msgid "" "with several different talk daemons at the same time." msgstr "" -#: gnu/packages/messaging.scm:1796 +#: gnu/packages/messaging.scm:1798 msgid "" "gloox is a full-featured Jabber/XMPP client library,\n" "written in ANSI C++. It makes writing spec-compliant clients easy\n" @@ -10407,7 +10524,7 @@ msgid "" "into existing applications." msgstr "" -#: gnu/packages/messaging.scm:1866 +#: gnu/packages/messaging.scm:1868 msgid "" "@code{Net::PSYC} with support for TCP, UDP, Event.pm, @code{IO::Select} and\n" "Gtk2 event loops. This package includes 12 applications and additional scripts:\n" @@ -10415,14 +10532,14 @@ msgid "" "for @uref{https://torproject.org,tor} router) and many more." msgstr "" -#: gnu/packages/messaging.scm:1907 +#: gnu/packages/messaging.scm:1909 msgid "" "@code{libpsyc} is a PSYC library in C which implements\n" "core aspects of PSYC, useful for all kinds of clients and servers\n" "including psyced." msgstr "" -#: gnu/packages/messaging.scm:1949 +#: gnu/packages/messaging.scm:1951 msgid "" "Loudmouth is a lightweight and easy-to-use C library for programming\n" "with the XMPP (formerly known as Jabber) protocol. It is designed to be\n" @@ -10430,7 +10547,7 @@ msgid "" "protocol allows." msgstr "" -#: gnu/packages/messaging.scm:1991 +#: gnu/packages/messaging.scm:1993 msgid "" "Mcabber is a small XMPP (Jabber) console client, which includes features\n" "such as SASL and TLS support, @dfn{Multi-User Chat} (MUC) support, logging,\n" @@ -10438,7 +10555,7 @@ msgid "" "support, and more." msgstr "" -#: gnu/packages/messaging.scm:2039 +#: gnu/packages/messaging.scm:2041 msgid "" "GNU Freetalk is a command-line Jabber/XMPP chat client. It notably uses\n" "the Readline library to handle input, so it features convenient navigation of\n" @@ -10446,27 +10563,27 @@ msgid "" "is also scriptable and extensible via Guile." msgstr "" -#: gnu/packages/messaging.scm:2074 +#: gnu/packages/messaging.scm:2076 msgid "" "Libmesode is a fork of libstrophe for use with Profanity\n" "XMPP Client. In particular, libmesode provides extra TLS functionality such as\n" "manual SSL certificate verification." msgstr "" -#: gnu/packages/messaging.scm:2109 +#: gnu/packages/messaging.scm:2111 msgid "" "Libstrophe is a minimal XMPP library written in C. It has\n" "almost no external dependencies, only an XML parsing library (expat or libxml\n" "are both supported)." msgstr "" -#: gnu/packages/messaging.scm:2167 +#: gnu/packages/messaging.scm:2169 msgid "" "Profanity is a console based XMPP client written in C\n" "using ncurses and libmesode, inspired by Irssi." msgstr "" -#: gnu/packages/messaging.scm:2197 +#: gnu/packages/messaging.scm:2199 msgid "" "Libircclient is a library which implements the client IRC\n" "protocol. It is designed to be small, fast, portable and compatible with the\n" @@ -10474,14 +10591,14 @@ msgid "" "building the IRC clients and bots." msgstr "" -#: gnu/packages/messaging.scm:2255 +#: gnu/packages/messaging.scm:2257 msgid "" "Toxic is a console-based instant messaging client, using\n" "c-toxcore and ncurses. It provides audio calls, sound and desktop\n" "notifications, and Python scripting support." msgstr "" -#: gnu/packages/messaging.scm:2281 +#: gnu/packages/messaging.scm:2283 msgid "" "libqmatrixclient is a Qt5 library to write clients for the\n" "Matrix instant messaging protocol. Quaternion is the reference client\n" @@ -10489,13 +10606,13 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2326 +#: gnu/packages/messaging.scm:2330 msgid "" "@code{mtxclient} is a C++ library that implements client API\n" "for the Matrix protocol. It is built on to of @code{Boost.Asio}." msgstr "" -#: gnu/packages/messaging.scm:2418 +#: gnu/packages/messaging.scm:2423 msgid "" "@code{Nheko} want to provide a native desktop app for the\n" "Matrix protocol that feels more like a mainstream chat app and less like an IRC\n" @@ -10505,7 +10622,7 @@ msgid "" "notification, emojis, E2E encryption, and voip calls." msgstr "" -#: gnu/packages/messaging.scm:2455 +#: gnu/packages/messaging.scm:2460 msgid "" "Quaternion is a Qt5 desktop client for the Matrix instant\n" "messaging protocol. It uses libqmatrixclient and is its reference client\n" @@ -10513,7 +10630,7 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2502 +#: gnu/packages/messaging.scm:2507 msgid "" "Hangups is an instant messaging client for Google Hangouts. It includes\n" "both a Python library and a reference client with a text-based user interface.\n" @@ -10523,7 +10640,7 @@ msgid "" "messaging that aren’t available to clients that connect over XMPP." msgstr "" -#: gnu/packages/messaging.scm:2584 +#: gnu/packages/messaging.scm:2589 msgid "" "Telegram-purple is a plugin for Libpurple, the communication library\n" "used by the Pidgin instant messaging client, that adds support for the\n" @@ -10533,7 +10650,7 @@ msgid "" "replacement." msgstr "" -#: gnu/packages/messaging.scm:2629 +#: gnu/packages/messaging.scm:2632 msgid "" "Tdlib is a cross-platform library for creating custom\n" "Telegram clients following the official Telegram API. It can be easily used\n" @@ -10541,11 +10658,11 @@ msgid "" "support for high performance Telegram Bot creation." msgstr "" -#: gnu/packages/messaging.scm:2667 +#: gnu/packages/messaging.scm:2670 msgid "Plugin for libpurple to allow sending SMS using ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2712 +#: gnu/packages/messaging.scm:2715 msgid "" "Purple-lurch plugin adds end-to-end encryption support\n" "through the Double Ratchet (Axolotl) algorithm, to @code{libpurple}\n" @@ -10556,19 +10673,19 @@ msgid "" "asynchronicity." msgstr "" -#: gnu/packages/messaging.scm:2748 +#: gnu/packages/messaging.scm:2751 msgid "" "This package provides a C++ library for parsing, formatting, and\n" "validating international phone numbers." msgstr "" -#: gnu/packages/messaging.scm:2793 +#: gnu/packages/messaging.scm:2796 msgid "" "Chatty is a chat program for XMPP and SMS. It works on mobile\n" "as well as on desktop platforms. It's based on libpurple and ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2814 +#: gnu/packages/messaging.scm:2817 msgid "" "This package provides Eclipse Mosquitto, a message broker\n" "that implements the MQTT protocol versions 5.0, 3.1.1 and 3.1. Mosquitto\n" @@ -10581,27 +10698,27 @@ msgid "" "as phones, embedded computers or microcontrollers." msgstr "" -#: gnu/packages/messaging.scm:2864 +#: gnu/packages/messaging.scm:2867 msgid "" "Movim-Desktop is a desktop application, relying on Qt, for the Movim\n" "social and chat platform." msgstr "" -#: gnu/packages/messaging.scm:2999 +#: gnu/packages/messaging.scm:3002 msgid "" "Psi+ is a spin-off of Psi XMPP client. It is a powerful XMPP client\n" "designed for experienced users." msgstr "" -#: gnu/packages/messaging.scm:3039 +#: gnu/packages/messaging.scm:3042 msgid "This package provides Python bindings to Zulip's API." msgstr "" -#: gnu/packages/messaging.scm:3088 +#: gnu/packages/messaging.scm:3091 msgid "This package contains Zulip's official terminal client." msgstr "" -#: gnu/packages/messaging.scm:3110 +#: gnu/packages/messaging.scm:3113 msgid "" "Relays messages between different channels from various\n" "messaging networks and protocols. So far it supports mattermost, IRC, gitter,\n" @@ -10610,20 +10727,20 @@ msgid "" "API. Mattermost is not required." msgstr "" -#: gnu/packages/messaging.scm:3143 +#: gnu/packages/messaging.scm:3146 msgid "" "@command{pounce} is a multi-client, TLS-only IRC bouncer. It maintains\n" "a persistent connection to an IRC server, acting as a proxy and buffer for\n" "a number of clients." msgstr "" -#: gnu/packages/messaging.scm:3209 +#: gnu/packages/messaging.scm:3212 msgid "" "@code{weechat-matrix} is a Python plugin for Weechat that lets\n" "Weechat communicate over the Matrix protocol." msgstr "" -#: gnu/packages/messaging.scm:3256 +#: gnu/packages/messaging.scm:3259 msgid "" "@code{weechat-wee-slack} is a WeeChat native client for\n" "Slack. It provides supplemental features only available in the web/mobile\n" @@ -10732,14 +10849,14 @@ msgid "" "themselves." msgstr "" -#: gnu/packages/networking.scm:174 +#: gnu/packages/networking.scm:176 msgid "" "UsrSCTP is a portable SCTP userland stack. SCTP is a message\n" "oriented, reliable transport protocol with direct support for multihoming that\n" "runs on top of IP or UDP, and supports both v4 and v6 versions." msgstr "" -#: gnu/packages/networking.scm:199 +#: gnu/packages/networking.scm:201 msgid "" "Axel tries to accelerate the download process by using multiple\n" "connections per file, and can also balance the load between different\n" @@ -10748,38 +10865,38 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/networking.scm:264 +#: gnu/packages/networking.scm:266 msgid "" "LibCamera is a complex camera support library for GNU+Linux,\n" "Android, and ChromeOS." msgstr "" -#: gnu/packages/networking.scm:334 +#: gnu/packages/networking.scm:336 msgid "" "LibNice is a library that implements the Interactive\n" "Connectivity Establishment (ICE) standard (RFC 5245 & RFC 8445). It provides a\n" "GLib-based library, libnice, as well as GStreamer elements to use it." msgstr "" -#: gnu/packages/networking.scm:393 +#: gnu/packages/networking.scm:395 msgid "" "RTMPdump is a toolkit for RTMP streams. All forms of RTMP are\n" "supported, including rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps://." msgstr "" -#: gnu/packages/networking.scm:422 +#: gnu/packages/networking.scm:424 msgid "" "Slurm is a network load monitor. It shows real-time traffic statistics\n" "from any network device in any of three ASCII graph formats." msgstr "" -#: gnu/packages/networking.scm:457 +#: gnu/packages/networking.scm:459 msgid "" "SRT is a transport technology that optimizes streaming\n" "performance across unpredictable networks, such as the Internet." msgstr "" -#: gnu/packages/networking.scm:500 +#: gnu/packages/networking.scm:502 msgid "" "The lksctp-tools project provides a user-space library for @acronym{SCTP,\n" "the Stream Control Transmission Protocol} (@file{libsctp}) and C language header\n" @@ -10788,13 +10905,13 @@ msgid "" "It also includes some SCTP-related helper utilities." msgstr "" -#: gnu/packages/networking.scm:541 +#: gnu/packages/networking.scm:543 msgid "" "@code{pysctp} implements the SCTP socket API. You need a\n" "SCTP-aware kernel (most are)." msgstr "" -#: gnu/packages/networking.scm:565 +#: gnu/packages/networking.scm:567 msgid "" "@command{knockd} is a port-knock daemon. It listens to all traffic on\n" "an ethernet or PPP interface, looking for special \"knock\" sequences of @dfn{port-hits}\n" @@ -10802,7 +10919,7 @@ msgid "" "at the link-layer level." msgstr "" -#: gnu/packages/networking.scm:605 +#: gnu/packages/networking.scm:607 msgid "" "NNG project is a rewrite of the scalability protocols library\n" "known as libnanomsg, and adds significant new capabilities, while retaining\n" @@ -10811,7 +10928,7 @@ msgid "" "publish/subscribe, RPC-style request/reply, or service discovery." msgstr "" -#: gnu/packages/networking.scm:648 +#: gnu/packages/networking.scm:650 msgid "" "Nanomsg is a socket library that provides several common\n" "communication patterns. It aims to make the networking layer fast, scalable,\n" @@ -10819,14 +10936,14 @@ msgid "" "systems with no further dependencies." msgstr "" -#: gnu/packages/networking.scm:758 +#: gnu/packages/networking.scm:760 msgid "" "Blueman is a Bluetooth management utility using the Bluez\n" "D-Bus backend. It is designed to be easy to use for most common Bluetooth\n" "tasks." msgstr "" -#: gnu/packages/networking.scm:783 +#: gnu/packages/networking.scm:785 msgid "" "GNU MAC Changer is a utility for viewing and changing MAC\n" "addresses of networking devices. New addresses may be set explicitly or\n" @@ -10834,14 +10951,14 @@ msgid "" "or, more generally, MAC addresses of the same category of hardware." msgstr "" -#: gnu/packages/networking.scm:831 +#: gnu/packages/networking.scm:833 msgid "" "Miredo is an implementation (client, relay, server) of the Teredo\n" "specification, which provides IPv6 Internet connectivity to IPv6 enabled hosts\n" "residing in IPv4-only networks, even when they are behind a NAT device." msgstr "" -#: gnu/packages/networking.scm:851 +#: gnu/packages/networking.scm:853 msgid "" "NDisc6 is a collection of tools for IPv6 networking diagnostics.\n" "It includes the following programs:\n" @@ -10855,7 +10972,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:904 +#: gnu/packages/networking.scm:906 msgid "" "@command{parprouted} is a daemon for transparent IP (Layer@tie{}3)\n" "proxy ARP bridging. Unlike standard bridging, proxy ARP bridging can bridge\n" @@ -10865,7 +10982,14 @@ msgid "" "useful for making transparent firewalls." msgstr "" -#: gnu/packages/networking.scm:931 +#: gnu/packages/networking.scm:945 +msgid "" +"@command{pproxy} is an asynchronuous proxy server implemented with\n" +"Python 3 @code{asyncio}. Among the supported protocols are HTTP, SOCKS\n" +"and SSH, and it can use both TCP and UDP as transport mechanisms." +msgstr "" + +#: gnu/packages/networking.scm:969 msgid "" "socat is a relay for bidirectional data transfer between two independent\n" "data channels---files, pipes, devices, sockets, etc. It can create\n" @@ -10878,7 +11002,7 @@ msgid "" "or server shell scripts with network connections." msgstr "" -#: gnu/packages/networking.scm:962 +#: gnu/packages/networking.scm:1000 msgid "" "mbuffer is a tool for buffering data streams with a large set of features:\n" "\n" @@ -10894,14 +11018,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1058 +#: gnu/packages/networking.scm:1096 msgid "" "With this package you can monitor and filter incoming requests for\n" "network services. It includes a library which may be used by daemons to\n" "transparently check connection attempts against an access control list." msgstr "" -#: gnu/packages/networking.scm:1081 +#: gnu/packages/networking.scm:1119 msgid "" "The 0MQ lightweight messaging kernel is a library which extends the\n" "standard socket interfaces with features traditionally provided by specialized\n" @@ -10911,46 +11035,46 @@ msgid "" "more." msgstr "" -#: gnu/packages/networking.scm:1110 +#: gnu/packages/networking.scm:1148 msgid "" "czmq provides bindings for the ØMQ core API that hides the differences\n" "between different versions of ØMQ." msgstr "" -#: gnu/packages/networking.scm:1141 +#: gnu/packages/networking.scm:1179 msgid "" "This package provides header-only C++ bindings for ØMQ. The header\n" "files contain direct mappings of the abstractions provided by the ØMQ C API." msgstr "" -#: gnu/packages/networking.scm:1175 +#: gnu/packages/networking.scm:1213 msgid "" "@code{libnatpmp} is a portable and asynchronous implementation of\n" "the Network Address Translation - Port Mapping Protocol (NAT-PMP)\n" "written in the C programming language." msgstr "" -#: gnu/packages/networking.scm:1213 +#: gnu/packages/networking.scm:1251 msgid "" "librdkafka is a C library implementation of the Apache Kafka protocol,\n" "containing both Producer and Consumer support." msgstr "" -#: gnu/packages/networking.scm:1232 +#: gnu/packages/networking.scm:1270 msgid "" "libndp contains a library which provides a wrapper for IPv6 Neighbor\n" "Discovery Protocol. It also provides a tool named ndptool for sending and\n" "receiving NDP messages." msgstr "" -#: gnu/packages/networking.scm:1256 +#: gnu/packages/networking.scm:1294 msgid "" "ethtool can be used to query and change settings such as speed,\n" "auto-negotiation and checksum offload on many network devices, especially\n" "Ethernet devices." msgstr "" -#: gnu/packages/networking.scm:1298 +#: gnu/packages/networking.scm:1336 msgid "" "IFStatus is a simple, easy-to-use program for displaying commonly\n" "needed/wanted real-time traffic statistics of multiple network\n" @@ -10958,7 +11082,7 @@ msgid "" "intended as a substitute for the PPPStatus and EthStatus projects." msgstr "" -#: gnu/packages/networking.scm:1347 +#: gnu/packages/networking.scm:1385 msgid "" "This package contains a variety of tools for dealing with network\n" "configuration, troubleshooting, or servers. Utilities included are:\n" @@ -10979,7 +11103,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1388 +#: gnu/packages/networking.scm:1426 msgid "" "Nload is a console application which monitors network traffic and\n" "bandwidth usage in real time. It visualizes the in- and outgoing traffic using\n" @@ -10987,7 +11111,7 @@ msgid "" "and min/max network usage." msgstr "" -#: gnu/packages/networking.scm:1432 +#: gnu/packages/networking.scm:1470 msgid "" "Iodine tunnels IPv4 data through a DNS server. This\n" "can be useful in different situations where internet access is firewalled, but\n" @@ -10995,7 +11119,7 @@ msgid "" "and up to 1 Mbit/s downstream." msgstr "" -#: gnu/packages/networking.scm:1473 +#: gnu/packages/networking.scm:1511 msgid "" "whois searches for an object in a @dfn{WHOIS} (RFC 3912) database.\n" "It is commonly used to look up the registered users or assignees of an Internet\n" @@ -11007,14 +11131,14 @@ msgid "" "of the same name." msgstr "" -#: gnu/packages/networking.scm:1553 +#: gnu/packages/networking.scm:1591 msgid "" "Wireshark is a network protocol analyzer, or @dfn{packet\n" "sniffer}, that lets you capture and interactively browse the contents of\n" "network frames." msgstr "" -#: gnu/packages/networking.scm:1574 +#: gnu/packages/networking.scm:1613 msgid "" "fping is a ping-like program which uses @acronym{ICMP, Internet Control\n" "Message Protocol} echo requests to determine if a target host is responding.\n" @@ -11026,26 +11150,26 @@ msgid "" "round-robin fashion." msgstr "" -#: gnu/packages/networking.scm:1625 +#: gnu/packages/networking.scm:1664 msgid "" "This package provides a command-line client (@command{gandi}) to buy,\n" "manage, and delete Internet resources from Gandi.net such as domain names,\n" "virtual machines, and certificates." msgstr "" -#: gnu/packages/networking.scm:1651 +#: gnu/packages/networking.scm:1690 msgid "" "The netns package provides a simple interface for\n" "handling network namespaces in Go." msgstr "" -#: gnu/packages/networking.scm:1678 +#: gnu/packages/networking.scm:1717 msgid "" "This library provides methods for using the stream control\n" "transmission protocol (SCTP) in a Go application." msgstr "" -#: gnu/packages/networking.scm:1707 +#: gnu/packages/networking.scm:1746 msgid "" "httping measures how long it takes to connect to a web server, send an\n" "HTTP(S) request, and receive the reply headers. It is somewhat similar to\n" @@ -11054,7 +11178,7 @@ msgid "" "application stack itself." msgstr "" -#: gnu/packages/networking.scm:1746 +#: gnu/packages/networking.scm:1785 msgid "" "@command{httpstat} is a tool to visualize statistics from the\n" "@command{curl} HTTP client. It acts as a wrapper for @command{curl} and\n" @@ -11062,20 +11186,20 @@ msgid "" "TCP connection, TLS handshake and so on) in the terminal." msgstr "" -#: gnu/packages/networking.scm:1788 +#: gnu/packages/networking.scm:1827 msgid "" "Squid is a caching proxy for the Web supporting HTTP, HTTPS,\n" "FTP, and more. It reduces bandwidth and improves response times by caching and\n" "reusing frequently-requested web pages." msgstr "" -#: gnu/packages/networking.scm:1822 +#: gnu/packages/networking.scm:1861 msgid "" "Bandwidth Monitor NG is a small and simple console based\n" "live network and disk I/O bandwidth monitor." msgstr "" -#: gnu/packages/networking.scm:1874 +#: gnu/packages/networking.scm:1913 msgid "" "Aircrack-ng is a complete suite of tools to assess WiFi network\n" "security. It focuses on different areas of WiFi security: monitoring,\n" @@ -11083,14 +11207,14 @@ msgid "" "allows for heavy scripting." msgstr "" -#: gnu/packages/networking.scm:1903 +#: gnu/packages/networking.scm:1942 msgid "" "Pixiewps implements the pixie-dust attack to brute\n" "force the Wi-Fi Protected Setup (WPS) PIN by exploiting the low or\n" "non-existing entropy of some access points." msgstr "" -#: gnu/packages/networking.scm:1949 +#: gnu/packages/networking.scm:1988 msgid "" "Reaver performs a brute force attack against an access\n" "point's Wi-Fi Protected Setup (WPS) PIN. Once the PIN is found, the WPA\n" @@ -11098,7 +11222,7 @@ msgid "" "reconfigured." msgstr "" -#: gnu/packages/networking.scm:1974 +#: gnu/packages/networking.scm:2013 msgid "" "Danga::Socket is an abstract base class for objects backed by a socket\n" "which provides the basic framework for event-driven asynchronous IO, designed\n" @@ -11106,7 +11230,7 @@ msgid "" "loop." msgstr "" -#: gnu/packages/networking.scm:2000 +#: gnu/packages/networking.scm:2039 msgid "" "This module provides several IP address validation subroutines that both\n" "validate and untaint their input. This includes both basic validation\n" @@ -11115,62 +11239,62 @@ msgid "" "private (reserved)." msgstr "" -#: gnu/packages/networking.scm:2028 +#: gnu/packages/networking.scm:2067 msgid "Net::DNS is the Perl Interface to the Domain Name System." msgstr "" -#: gnu/packages/networking.scm:2060 +#: gnu/packages/networking.scm:2099 msgid "" "Socket6 binds the IPv6 related part of the C socket header\n" "definitions and structure manipulators for Perl." msgstr "" -#: gnu/packages/networking.scm:2087 +#: gnu/packages/networking.scm:2126 msgid "" "Net::DNS::Resolver::Programmable is a programmable DNS resolver for\n" "offline emulation of DNS." msgstr "" -#: gnu/packages/networking.scm:2109 +#: gnu/packages/networking.scm:2148 msgid "" "Net::DNS::Resolver::Mock is a subclass of Net::DNS::Resolver, but returns\n" "static data from any provided DNS zone file instead of querying the network.\n" "It is intended primarily for use in testing." msgstr "" -#: gnu/packages/networking.scm:2144 +#: gnu/packages/networking.scm:2183 msgid "NetAddr::IP manages IPv4 and IPv6 addresses and subsets." msgstr "" -#: gnu/packages/networking.scm:2177 +#: gnu/packages/networking.scm:2216 msgid "Net::Patricia does IP address lookups quickly in Perl." msgstr "" -#: gnu/packages/networking.scm:2198 +#: gnu/packages/networking.scm:2237 msgid "Net::CIDR::Lite merges IPv4 or IPv6 CIDR addresses." msgstr "" -#: gnu/packages/networking.scm:2225 +#: gnu/packages/networking.scm:2264 msgid "" "IO::Socket::INET6 is an interface for AF_INET/AF_INET6 domain\n" "sockets in Perl." msgstr "" -#: gnu/packages/networking.scm:2258 +#: gnu/packages/networking.scm:2293 msgid "" "Libproxy handles the details of HTTP/HTTPS proxy\n" "configuration for applications across all scenarios. Applications using\n" "libproxy only have to specify which proxy to use." msgstr "" -#: gnu/packages/networking.scm:2292 +#: gnu/packages/networking.scm:2327 msgid "" "Proxychains-ng is a preloader which hooks calls to sockets\n" "in dynamically linked programs and redirects them through one or more SOCKS or\n" "HTTP proxies." msgstr "" -#: gnu/packages/networking.scm:2314 +#: gnu/packages/networking.scm:2349 msgid "" "ENet's purpose is to provide a relatively thin, simple and robust network\n" "communication layer on top of UDP. The primary feature it provides is optional\n" @@ -11180,7 +11304,7 @@ msgid "" "library remains flexible, portable, and easily embeddable." msgstr "" -#: gnu/packages/networking.scm:2378 +#: gnu/packages/networking.scm:2413 msgid "" "sslh is a network protocol demultiplexer. It acts like a switchboard,\n" "accepting connections from clients on one port and forwarding them to different\n" @@ -11192,7 +11316,7 @@ msgid "" "that block port 22." msgstr "" -#: gnu/packages/networking.scm:2408 +#: gnu/packages/networking.scm:2443 msgid "" "iPerf is a tool to measure achievable bandwidth on IP networks. It\n" "supports tuning of various parameters related to timing, buffers and\n" @@ -11200,7 +11324,7 @@ msgid "" "the bandwidth, loss, and other parameters." msgstr "" -#: gnu/packages/networking.scm:2445 +#: gnu/packages/networking.scm:2480 msgid "" "NetHogs is a small 'net top' tool for Linux. Instead of\n" "breaking the traffic down per protocol or per subnet, like most tools do, it\n" @@ -11212,7 +11336,7 @@ msgid "" "gone wild and are suddenly taking up your bandwidth." msgstr "" -#: gnu/packages/networking.scm:2481 +#: gnu/packages/networking.scm:2516 msgid "" "NZBGet is a binary newsgrabber, which downloads files from Usenet based\n" "on information given in @code{nzb} files. NZBGet can be used in standalone\n" @@ -11222,7 +11346,7 @@ msgid "" "procedure calls (RPCs)." msgstr "" -#: gnu/packages/networking.scm:2562 +#: gnu/packages/networking.scm:2597 msgid "" "Open vSwitch is a multilayer virtual switch. It is designed to enable\n" "massive network automation through programmatic extension, while still\n" @@ -11230,27 +11354,27 @@ msgid "" "IPFIX, RSPAN, CLI, LACP, 802.1ag)." msgstr "" -#: gnu/packages/networking.scm:2585 +#: gnu/packages/networking.scm:2620 msgid "" "The @code{IP} class allows a comfortable parsing and\n" "handling for most notations in use for IPv4 and IPv6 addresses and\n" "networks." msgstr "" -#: gnu/packages/networking.scm:2610 +#: gnu/packages/networking.scm:2645 msgid "" "Command line interface for testing internet bandwidth using\n" "speedtest.net." msgstr "" -#: gnu/packages/networking.scm:2630 +#: gnu/packages/networking.scm:2668 msgid "" "This is a tftp client derived from OpenBSD tftp with some extra options\n" "added and bugs fixed. The source includes readline support but it is not\n" "enabled due to license conflicts between the BSD advertising clause and the GPL." msgstr "" -#: gnu/packages/networking.scm:2682 +#: gnu/packages/networking.scm:2720 msgid "" "Spiped (pronounced \"ess-pipe-dee\") is a utility for creating\n" "symmetrically encrypted and authenticated pipes between socket addresses, so\n" @@ -11260,7 +11384,7 @@ msgid "" "does not use SSH and requires a pre-shared symmetric key." msgstr "" -#: gnu/packages/networking.scm:2708 +#: gnu/packages/networking.scm:2746 msgid "" "Quagga is a routing software suite, providing implementations\n" "of OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4 for Unix platforms.\n" @@ -11272,14 +11396,14 @@ msgid "" "updates to the zebra daemon." msgstr "" -#: gnu/packages/networking.scm:2758 +#: gnu/packages/networking.scm:2796 msgid "" "The THC IPv6 Toolkit provides command-line tools and a library\n" "for researching IPv6 implementations and deployments. It requires Linux 2.6 or\n" "newer and only works on Ethernet network interfaces." msgstr "" -#: gnu/packages/networking.scm:2783 +#: gnu/packages/networking.scm:2821 msgid "" "bmon is a monitoring and debugging tool to capture\n" "networking-related statistics and prepare them visually in a human-friendly\n" @@ -11287,7 +11411,7 @@ msgid "" "interface and a programmable text output for scripting." msgstr "" -#: gnu/packages/networking.scm:2821 +#: gnu/packages/networking.scm:2859 msgid "" "Libnet provides a fairly portable framework for network packet\n" "construction and injection. It features portable packet creation interfaces\n" @@ -11296,7 +11420,7 @@ msgid "" "can be whipped up with little effort." msgstr "" -#: gnu/packages/networking.scm:2847 +#: gnu/packages/networking.scm:2885 msgid "" "@acronym{mtr, My TraceRoute} combines the functionality of the\n" "@command{traceroute} and @command{ping} programs in a single network diagnostic\n" @@ -11306,7 +11430,7 @@ msgid "" "displays the results in real time." msgstr "" -#: gnu/packages/networking.scm:2900 +#: gnu/packages/networking.scm:2938 msgid "" "aMule is an eMule-like client for the eD2k and Kademlia peer-to-peer\n" "file sharing networks. It includes a graphical user interface (GUI), a daemon\n" @@ -11315,7 +11439,7 @@ msgid "" "remotely." msgstr "" -#: gnu/packages/networking.scm:2922 +#: gnu/packages/networking.scm:2960 msgid "" "Zyre provides reliable group messaging over local area\n" "networks using zeromq. It has these key characteristics:\n" @@ -11332,13 +11456,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:2956 +#: gnu/packages/networking.scm:2994 msgid "" "This library allows controlling basic functions in SocketCAN\n" "from user-space. It requires a kernel built with SocketCAN support." msgstr "" -#: gnu/packages/networking.scm:2985 +#: gnu/packages/networking.scm:3023 msgid "" "This package provides CAN utilities in the following areas:\n" "\n" @@ -11354,14 +11478,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3021 +#: gnu/packages/networking.scm:3059 msgid "" "Asio is a cross-platform C++ library for network and\n" "low-level I/O programming that provides developers with a consistent\n" "asynchronous model using a modern C++ approach." msgstr "" -#: gnu/packages/networking.scm:3056 +#: gnu/packages/networking.scm:3094 msgid "" "This package is a fast tunnel proxy that helps you bypass firewalls.\n" "\n" @@ -11375,7 +11499,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3134 +#: gnu/packages/networking.scm:3172 msgid "" "The @dfn{Simple Network Management Protocol} (SNMP) is a\n" "widely used protocol for monitoring the health and welfare of network\n" @@ -11384,20 +11508,20 @@ msgid "" "SNMP v3 using both IPv4 and IPv6." msgstr "" -#: gnu/packages/networking.scm:3181 +#: gnu/packages/networking.scm:3219 msgid "" "uBridge is a simple program to create user-land bridges\n" "between various technologies. Currently, bridging between UDP tunnels,\n" "Ethernet and TAP interfaces is supported. Packet capture is also supported." msgstr "" -#: gnu/packages/networking.scm:3213 +#: gnu/packages/networking.scm:3251 msgid "" "This package contains a small set of tools to capture and convert\n" "packets from wireless devices for use with hashcat or John the Ripper." msgstr "" -#: gnu/packages/networking.scm:3244 +#: gnu/packages/networking.scm:3282 msgid "" "Small tool to capture packets from WLAN devices. After capturing,\n" "upload the \"uncleaned\" cap to @url{https://wpa-sec.stanev.org/?submit} to\n" @@ -11407,7 +11531,7 @@ msgid "" "and check if the WLAN key or the master key was transmitted unencrypted." msgstr "" -#: gnu/packages/networking.scm:3271 +#: gnu/packages/networking.scm:3309 msgid "" "Dante is a SOCKS client and server implementation. It can\n" "be installed on a machine with access to an external TCP/IP network and will\n" @@ -11416,21 +11540,21 @@ msgid "" "never see any machines other than the one Dante is running on." msgstr "" -#: gnu/packages/networking.scm:3318 +#: gnu/packages/networking.scm:3356 msgid "" "Restbed is a comprehensive and consistent programming\n" "model for building applications that require seamless and secure\n" "communication over HTTP." msgstr "" -#: gnu/packages/networking.scm:3358 +#: gnu/packages/networking.scm:3396 msgid "" "RESTinio is a header-only C++14 library that gives you an embedded\n" "HTTP/Websocket server. It is based on standalone version of ASIO\n" "and targeted primarily for asynchronous processing of HTTP-requests." msgstr "" -#: gnu/packages/networking.scm:3446 +#: gnu/packages/networking.scm:3487 msgid "" "OpenDHT provides an easy to use distributed in-memory data\n" "store. Every node in the network can read and write values to the store.\n" @@ -11457,20 +11581,20 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/networking.scm:3490 +#: gnu/packages/networking.scm:3531 msgid "" "FRRouting (FRR) is an IP routing protocol suite which includes\n" "protocol daemons for BGP, IS-IS, LDP, OSPF, PIM, and RIP." msgstr "" -#: gnu/packages/networking.scm:3520 +#: gnu/packages/networking.scm:3561 msgid "" "BIRD is an Internet routing daemon with full support for all\n" "the major routing protocols. It allows redistribution between protocols with a\n" "powerful route filtering syntax and an easy-to-use configuration interface." msgstr "" -#: gnu/packages/networking.scm:3568 +#: gnu/packages/networking.scm:3609 msgid "" "iwd is a wireless daemon for Linux that aims to replace WPA\n" "Supplicant. It optimizes resource utilization by not depending on any external\n" @@ -11478,21 +11602,21 @@ msgid "" "maximum extent possible." msgstr "" -#: gnu/packages/networking.scm:3595 +#: gnu/packages/networking.scm:3636 msgid "" "libyang is a YANG data modelling language parser and toolkit\n" "written (and providing API) in C. Current implementation covers YANG 1.0 (RFC\n" "6020) as well as YANG 1.1 (RFC 7950)." msgstr "" -#: gnu/packages/networking.scm:3629 +#: gnu/packages/networking.scm:3670 msgid "" "This package provides a control tool for the\n" "B.A.T.M.A.N. mesh networking routing protocol provided by the Linux kernel\n" "module @code{batman-adv}, for Layer 2." msgstr "" -#: gnu/packages/networking.scm:3662 +#: gnu/packages/networking.scm:3703 msgid "" "PageKite implements a tunneled reverse proxy which makes it easy to make\n" "a service (such as an HTTP or SSH server) on localhost visible to the wider\n" @@ -11500,7 +11624,7 @@ msgid "" "service is available at @url{https://pagekite.net/}, or you can run your own." msgstr "" -#: gnu/packages/networking.scm:3706 +#: gnu/packages/networking.scm:3747 msgid "" "ipcalc takes an IP address and netmask and calculates the\n" "resulting broadcast, network, Cisco wildcard mask, and host range. By giving\n" @@ -11509,7 +11633,7 @@ msgid "" "easy-to-understand binary values." msgstr "" -#: gnu/packages/networking.scm:3745 +#: gnu/packages/networking.scm:3786 msgid "" "Tunctl is used to set up and maintain persistent TUN/TAP\n" "network interfaces, enabling user applications to simulate network traffic.\n" @@ -11517,13 +11641,13 @@ msgid "" "simulation, and a number of other applications." msgstr "" -#: gnu/packages/networking.scm:3765 +#: gnu/packages/networking.scm:3806 msgid "" "Tool to send a magic packet to wake another host on the\n" "network. This must be enabled on the target host, usually in the BIOS." msgstr "" -#: gnu/packages/networking.scm:3802 +#: gnu/packages/networking.scm:3843 msgid "" "This package provides a modern, but Linux-specific\n" "implementation of the @command{traceroute} command that can be used to follow\n" @@ -11534,7 +11658,7 @@ msgid "" "some traces for unprivileged users." msgstr "" -#: gnu/packages/networking.scm:3836 +#: gnu/packages/networking.scm:3877 msgid "" "VDE is a set of programs to provide virtual software-defined\n" "Ethernet network interface controllers across multiple virtual or\n" @@ -11543,7 +11667,7 @@ msgid "" "cables." msgstr "" -#: gnu/packages/networking.scm:3878 +#: gnu/packages/networking.scm:3919 msgid "" "HAProxy is a free, very fast and reliable solution offering\n" "high availability, load balancing, and proxying for TCP and HTTP-based\n" @@ -11552,7 +11676,7 @@ msgid "" "thousands of connections is clearly realistic with today's hardware." msgstr "" -#: gnu/packages/networking.scm:3924 +#: gnu/packages/networking.scm:3965 msgid "" "The @dfn{Link Layer Discovery Protocol} (LLDP) is an industry standard\n" "protocol designed to supplant proprietary Link-Layer protocols such as EDP or\n" @@ -11561,7 +11685,7 @@ msgid "" "an implementation of LLDP. It also supports some proprietary protocols." msgstr "" -#: gnu/packages/networking.scm:3966 +#: gnu/packages/networking.scm:4007 msgid "" "Hashcash is a proof-of-work algorithm, which has been used\n" "as a denial-of-service countermeasure technique in a number of systems.\n" @@ -11574,14 +11698,14 @@ msgid "" "stamps." msgstr "" -#: gnu/packages/networking.scm:3995 +#: gnu/packages/networking.scm:4036 msgid "" "This package provides the NBD (Network Block Devices)\n" "client and server. It allows you to use remote block devices over a TCP/IP\n" "network." msgstr "" -#: gnu/packages/networking.scm:4062 +#: gnu/packages/networking.scm:4103 msgid "" "Yggdrasil is an early-stage implementation of a fully end-to-end encrypted\n" "IPv6 network. It is lightweight, self-arranging, supported on multiple\n" @@ -11590,7 +11714,7 @@ msgid "" "IPv6 Internet connectivity - it also works over IPv4." msgstr "" -#: gnu/packages/networking.scm:4106 +#: gnu/packages/networking.scm:4147 msgid "" "Netdiscover is a network address discovery tool developed\n" "mainly for wireless networks without a @acronym{DHCP} server. It also works\n" @@ -11598,7 +11722,7 @@ msgid "" "@acronym{ARP} requests and sniff for replies." msgstr "" -#: gnu/packages/networking.scm:4138 +#: gnu/packages/networking.scm:4179 msgid "" "PuTTY is a graphical text terminal client. It supports\n" "@acronym{SSH, Secure SHell}, telnet, and raw socket connections with good\n" @@ -11709,14 +11833,14 @@ msgid "" "by using the poppler rendering engine." msgstr "" -#: gnu/packages/pdf.scm:654 +#: gnu/packages/pdf.scm:653 msgid "" "Zathura is a customizable document viewer. It provides a\n" "minimalistic interface and an interface that mainly focuses on keyboard\n" "interaction." msgstr "" -#: gnu/packages/pdf.scm:697 +#: gnu/packages/pdf.scm:696 msgid "" "PoDoFo is a C++ library and set of command-line tools to work with the\n" "PDF file format. It can parse PDF files and load them into memory, and makes\n" @@ -11725,7 +11849,7 @@ msgid "" "extracting content or merging files." msgstr "" -#: gnu/packages/pdf.scm:764 +#: gnu/packages/pdf.scm:763 msgid "" "MuPDF is a C library that implements a PDF and XPS parsing and\n" "rendering engine. It is used primarily to render pages into bitmaps,\n" @@ -11737,7 +11861,7 @@ msgid "" "@command{pdfclean}, and examining the file structure @command{pdfshow}." msgstr "" -#: gnu/packages/pdf.scm:811 +#: gnu/packages/pdf.scm:810 msgid "" "QPDF is a command-line program that does structural, content-preserving\n" "transformations on PDF files. It could have been called something like\n" @@ -11746,7 +11870,7 @@ msgid "" "program capable of converting PDF into other formats." msgstr "" -#: gnu/packages/pdf.scm:855 +#: gnu/packages/pdf.scm:854 msgid "" "@command{qpdfview} is a document viewer for PDF, PS and DJVU\n" "files. It uses the Qt toolkit and features persistent per-file settings,\n" @@ -11754,13 +11878,13 @@ msgid "" "SyncTeX support, and rudimentary support for annotations and forms." msgstr "" -#: gnu/packages/pdf.scm:881 +#: gnu/packages/pdf.scm:880 msgid "" "Xournal is an application for notetaking, sketching, keeping a journal\n" "using a stylus." msgstr "" -#: gnu/packages/pdf.scm:940 +#: gnu/packages/pdf.scm:939 msgid "" "Xournal++ is a hand note taking software written in\n" "C++ with the target of flexibility, functionality and speed. Stroke\n" @@ -11796,14 +11920,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1019 +#: gnu/packages/pdf.scm:1018 msgid "" "This is the ReportLab PDF Toolkit. It allows rapid creation\n" "of rich PDF documents, and also creation of charts in a variety of bitmap and\n" "vector formats." msgstr "" -#: gnu/packages/pdf.scm:1071 +#: gnu/packages/pdf.scm:1070 msgid "" "Impressive is a tool to display PDF files that provides visual effects\n" "such as smooth alpha-blended slide transitions. It provides additional tools\n" @@ -11811,26 +11935,26 @@ msgid "" "the PDF pages." msgstr "" -#: gnu/packages/pdf.scm:1094 +#: gnu/packages/pdf.scm:1093 msgid "" "img2pdf converts images to PDF via direct JPEG inclusion. That\n" "conversion is lossless: the image embedded in the PDF has the exact same color\n" "information for every pixel as the input." msgstr "" -#: gnu/packages/pdf.scm:1147 +#: gnu/packages/pdf.scm:1146 msgid "" "fbida contains a few applications for viewing and editing images on\n" "the framebuffer." msgstr "" -#: gnu/packages/pdf.scm:1171 +#: gnu/packages/pdf.scm:1170 msgid "" "@command{pdf2svg} is a simple command-line PDF to SVG\n" "converter using the Poppler and Cairo libraries." msgstr "" -#: gnu/packages/pdf.scm:1203 +#: gnu/packages/pdf.scm:1202 msgid "" "PyPDF2 is a pure Python PDF library capable of:\n" "\n" @@ -11850,7 +11974,7 @@ msgid "" "manage or manipulate PDFs." msgstr "" -#: gnu/packages/pdf.scm:1240 +#: gnu/packages/pdf.scm:1239 msgid "" "PyPDF2 is a pure Python PDF toolkit.\n" "\n" @@ -11858,7 +11982,7 @@ msgid "" "python-pypdf2 instead." msgstr "" -#: gnu/packages/pdf.scm:1284 +#: gnu/packages/pdf.scm:1283 msgid "" "PDF Arranger is a small application which allows one to merge or split\n" "PDF documents and rotate, crop and rearrange their pages using an interactive\n" @@ -11867,7 +11991,7 @@ msgid "" "PDF Arranger was formerly known as PDF-Shuffler." msgstr "" -#: gnu/packages/pdf.scm:1308 +#: gnu/packages/pdf.scm:1307 msgid "" "@command{pdfposter} can be used to create a large poster by\n" "building it from multiple pages and/or printing it on large media. It expects\n" @@ -11880,7 +12004,7 @@ msgid "" "PDF. Indeed @command{pdfposter} was inspired by @command{poster}." msgstr "" -#: gnu/packages/pdf.scm:1339 +#: gnu/packages/pdf.scm:1338 msgid "" "Pdfgrep searches in pdf files for strings matching a regular expression.\n" "Support some GNU grep options as file name output, page number output,\n" @@ -11888,7 +12012,7 @@ msgid "" "multiple files." msgstr "" -#: gnu/packages/pdf.scm:1387 +#: gnu/packages/pdf.scm:1386 msgid "" "pdfpc is a presentation viewer application which uses multi-monitor\n" "output to provide meta information to the speaker during the presentation. It\n" @@ -11898,13 +12022,13 @@ msgid "" "presentation. The input files processed by pdfpc are PDF documents." msgstr "" -#: gnu/packages/pdf.scm:1414 +#: gnu/packages/pdf.scm:1413 msgid "" "Paps reads a UTF-8 encoded file and generates a PostScript language\n" "rendering of the file through the Pango Cairo back end." msgstr "" -#: gnu/packages/pdf.scm:1444 +#: gnu/packages/pdf.scm:1443 msgid "" "Stapler is a pure Python alternative to PDFtk, a tool for\n" "manipulating PDF documents from the command line. It supports\n" @@ -11918,7 +12042,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1532 +#: gnu/packages/pdf.scm:1531 msgid "" "WeasyPrint helps web developers to create PDF documents. It\n" "turns simple HTML pages into gorgeous statistical reports, invoices, tickets,\n" @@ -15640,7 +15764,7 @@ msgid "" "and enhance them." msgstr "" -#: gnu/packages/photo.scm:601 +#: gnu/packages/photo.scm:603 msgid "" "Photoflare is a cross-platform image editor with an aim\n" "to balance between powerful features and a very friendly graphical user\n" @@ -15650,7 +15774,7 @@ msgid "" "such as Batch image processing." msgstr "" -#: gnu/packages/photo.scm:669 +#: gnu/packages/photo.scm:670 msgid "" "Entangle is an application which uses GTK and libgphoto2 to provide a\n" "graphical interface for tethered photography with digital cameras. It\n" @@ -15658,14 +15782,14 @@ msgid "" "off' shooting directly from the controlling computer." msgstr "" -#: gnu/packages/photo.scm:740 +#: gnu/packages/photo.scm:741 msgid "" "Hugin is an easy to use panoramic imaging toolchain with a graphical\n" "user interface. It can be used to assemble a mosaic of photographs into\n" "a complete panorama and stitch any series of overlapping pictures." msgstr "" -#: gnu/packages/photo.scm:794 +#: gnu/packages/photo.scm:795 msgid "" "RawTherapee is a raw image processing suite. It comprises a\n" "subset of image editing operations specifically aimed at non-destructive raw\n" @@ -15709,7 +15833,28 @@ msgid "" "`special effects' using the filter mechanism." msgstr "" -#: gnu/packages/scanner.scm:144 +#: gnu/packages/scanner.scm:83 +msgid "" +"This SANE backend lets you scan documents and images from scanners and\n" +"multi-function printers that speak eSCL (marketed as ``AirScan'') or\n" +"@acronym{WSD, Web Services for Devices} (or ``WS-Scan'').\n" +"\n" +"Both are vendor-neutral protocols that allow ``driverless'' scanning over IPv4\n" +"and IPv6 networks without the vendor-specific drivers that make up most of the\n" +"sane-backends collection. This is similar to how most contemporary printers\n" +"speak the universal @acronym{IPP, Internet Printing Protocol}.\n" +"\n" +"Only scanners that support eSCL will also work over USB. This requires a\n" +"suitable IPP-over-USB daemon like ipp-usb to be installed and configured.\n" +"\n" +"Any eSCL or WSD-capable scanner should just work. sane-airscan automatically\n" +"discovers and configures devices, including which protocol to use. It was\n" +"successfully tested with many devices from Brother, Canon, Dell, Kyocera,\n" +"Lexmark, Epson, HP, OKI, Panasonic, Pantum, Ricoh, Samsung, and Xerox, with both\n" +"WSD and eSCL." +msgstr "" + +#: gnu/packages/scanner.scm:200 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -15717,7 +15862,7 @@ msgid "" "package contains the library, but no drivers." msgstr "" -#: gnu/packages/scanner.scm:192 +#: gnu/packages/scanner.scm:248 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -15725,7 +15870,7 @@ msgid "" "package contains the library and drivers." msgstr "" -#: gnu/packages/scanner.scm:243 +#: gnu/packages/scanner.scm:299 msgid "" "Scanbd stands for scanner button daemon. It regularly polls\n" "scanners for pressed buttons, function knob changes, or other events such\n" @@ -15741,7 +15886,7 @@ msgid "" "provided the driver also exposes the buttons." msgstr "" -#: gnu/packages/scanner.scm:331 +#: gnu/packages/scanner.scm:387 msgid "" "XSane is a graphical interface for controlling a scanner and acquiring\n" "images from it. You can photocopy multi-page documents and save, fax, print,\n" @@ -15753,14 +15898,14 @@ msgid "" "back-end library, which supports almost all existing scanners." msgstr "" -#: gnu/packages/scheme.scm:225 +#: gnu/packages/scheme.scm:226 msgid "" "GNU/MIT Scheme is an implementation of the Scheme programming\n" "language. It provides an interpreter, a compiler and a debugger. It also\n" "features an integrated Emacs-like editor and a large runtime library." msgstr "" -#: gnu/packages/scheme.scm:324 +#: gnu/packages/scheme.scm:325 msgid "" "Bigloo is a Scheme implementation devoted to one goal: enabling Scheme\n" "based programming style where C(++) is usually required. Bigloo attempts to\n" @@ -15771,7 +15916,7 @@ msgid "" "and between Scheme and Java programs." msgstr "" -#: gnu/packages/scheme.scm:377 +#: gnu/packages/scheme.scm:378 msgid "" "HOP is a multi-tier programming language for the Web 2.0 and the\n" "so-called diffuse Web. It is designed for programming interactive web\n" @@ -15780,14 +15925,14 @@ msgid "" "mashups, office (web agendas, mail clients, ...), etc." msgstr "" -#: gnu/packages/scheme.scm:400 +#: gnu/packages/scheme.scm:401 msgid "" "Scheme 48 is an implementation of Scheme based on a byte-code\n" "interpreter and is designed to be used as a testbed for experiments in\n" "implementation techniques and as an expository tool." msgstr "" -#: gnu/packages/scheme.scm:430 +#: gnu/packages/scheme.scm:431 msgid "" "Gambit consists of two main programs: gsi, the Gambit Scheme\n" "interpreter, and gsc, the Gambit Scheme compiler. The interpreter contains\n" @@ -15798,7 +15943,7 @@ msgid "" "mixed." msgstr "" -#: gnu/packages/scheme.scm:464 +#: gnu/packages/scheme.scm:465 msgid "" "Chibi-Scheme is a very small library with no external dependencies\n" "intended for use as an extension and scripting language in C programs. In\n" @@ -15807,7 +15952,7 @@ msgid "" "threads." msgstr "" -#: gnu/packages/scheme.scm:512 +#: gnu/packages/scheme.scm:513 msgid "" "Structure and Interpretation of Computer Programs (SICP) is\n" "a textbook aiming to teach the principles of computer programming.\n" @@ -15817,19 +15962,19 @@ msgid "" "metalinguistic abstraction, recursion, interpreters, and modular programming." msgstr "" -#: gnu/packages/scheme.scm:556 +#: gnu/packages/scheme.scm:557 msgid "" "String pattern-matching library for scheme48 based on the SRE\n" "regular-expression notation." msgstr "" -#: gnu/packages/scheme.scm:589 +#: gnu/packages/scheme.scm:590 msgid "" "SLIB is a portable Scheme library providing compatibility and\n" "utility functions for all standard Scheme implementations." msgstr "" -#: gnu/packages/scheme.scm:643 +#: gnu/packages/scheme.scm:644 msgid "" "GNU SCM is an implementation of Scheme. This\n" "implementation includes Hobbit, a Scheme-to-C compiler, which can\n" @@ -15837,7 +15982,7 @@ msgid "" "linked with a SCM executable." msgstr "" -#: gnu/packages/scheme.scm:702 +#: gnu/packages/scheme.scm:703 msgid "" "TinyScheme is a light-weight Scheme interpreter that implements as large a\n" "subset of R5RS as was possible without getting very large and complicated.\n" @@ -15853,7 +15998,7 @@ msgid "" "small program, it is easy to comprehend, get to grips with, and use." msgstr "" -#: gnu/packages/scheme.scm:783 +#: gnu/packages/scheme.scm:784 msgid "" "Stalin is an aggressively optimizing whole-program compiler\n" "for Scheme that does polyvariant interprocedural flow analysis,\n" @@ -15865,7 +16010,7 @@ msgid "" "generation." msgstr "" -#: gnu/packages/scheme.scm:819 +#: gnu/packages/scheme.scm:820 msgid "" "Scheme 9 from Empty Space (S9fES) is a mature, portable, and\n" "comprehensible public-domain interpreter for R4RS Scheme offering:\n" @@ -15880,14 +16025,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/scheme.scm:877 +#: gnu/packages/scheme.scm:878 msgid "" "@code{femtolisp} is a scheme-like lisp implementation with a\n" "simple, elegant Scheme dialect. It is a lisp-1 with lexical scope.\n" "The core is 12 builtin special forms and 33 builtin functions." msgstr "" -#: gnu/packages/scheme.scm:940 +#: gnu/packages/scheme.scm:941 msgid "" "Gauche is a R7RS Scheme scripting engine aiming at being a\n" "handy tool that helps programmers and system administrators to write small to\n" @@ -15897,7 +16042,7 @@ msgid "" "and list gauche extension packages." msgstr "" -#: gnu/packages/scheme.scm:1038 +#: gnu/packages/scheme.scm:1039 msgid "" "Gerbil is an opinionated dialect of Scheme designed for Systems\n" "Programming, with a state of the art macro and module system on top of the Gambit\n" @@ -16034,7 +16179,7 @@ msgid "" "server and an IRC server." msgstr "" -#: gnu/packages/shells.scm:107 +#: gnu/packages/shells.scm:108 msgid "" "dash is a POSIX-compliant @command{/bin/sh} implementation that aims to be\n" "as small as possible, often without sacrificing speed. It is faster than the\n" @@ -16042,7 +16187,7 @@ msgid "" "direct descendant of NetBSD's Almquist Shell (@command{ash})." msgstr "" -#: gnu/packages/shells.scm:255 +#: gnu/packages/shells.scm:256 msgid "" "Fish (friendly interactive shell) is a shell focused on interactive use,\n" "discoverability, and friendliness. Fish has very user-friendly and powerful\n" @@ -16054,20 +16199,20 @@ msgid "" "and syntax highlighting." msgstr "" -#: gnu/packages/shells.scm:308 +#: gnu/packages/shells.scm:309 msgid "" "@code{fish-foreign-env} wraps bash script execution in a way\n" "that environment variables that are exported or modified get imported back\n" "into fish." msgstr "" -#: gnu/packages/shells.scm:344 +#: gnu/packages/shells.scm:345 msgid "" "This is a reimplementation by Byron Rakitzis of the Plan 9 shell. It\n" "has a small feature set similar to a traditional Bourne shell." msgstr "" -#: gnu/packages/shells.scm:377 +#: gnu/packages/shells.scm:378 msgid "" "Es is an extensible shell. The language was derived from the Plan 9\n" "shell, rc, and was influenced by functional programming languages, such as\n" @@ -16076,7 +16221,7 @@ msgid "" "written by Paul Haahr and Byron Rakitzis." msgstr "" -#: gnu/packages/shells.scm:455 +#: gnu/packages/shells.scm:456 msgid "" "Tcsh is an enhanced, but completely compatible version of the Berkeley\n" "UNIX C shell (csh). It is a command language interpreter usable both as an\n" @@ -16085,7 +16230,7 @@ msgid "" "history mechanism, job control and a C-like syntax." msgstr "" -#: gnu/packages/shells.scm:522 +#: gnu/packages/shells.scm:523 msgid "" "The Z shell (zsh) is a Unix shell that can be used\n" "as an interactive login shell and as a powerful command interpreter\n" @@ -16094,7 +16239,7 @@ msgid "" "ksh, and tcsh." msgstr "" -#: gnu/packages/shells.scm:572 +#: gnu/packages/shells.scm:573 msgid "" "Xonsh is a Python-ish, BASHwards-looking shell language and command\n" "prompt. The language is a superset of Python 3.4+ with additional shell\n" @@ -16103,7 +16248,7 @@ msgid "" "use of experts and novices alike." msgstr "" -#: gnu/packages/shells.scm:616 +#: gnu/packages/shells.scm:617 msgid "" "Scsh is a Unix shell embedded in Scheme. Scsh has two main\n" "components: a process notation for running programs and setting up pipelines\n" @@ -16111,7 +16256,7 @@ msgid "" "operating system." msgstr "" -#: gnu/packages/shells.scm:658 +#: gnu/packages/shells.scm:659 msgid "" "Linenoise is a minimal, zero-config, readline replacement.\n" "Its features include:\n" @@ -16125,7 +16270,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/shells.scm:722 +#: gnu/packages/shells.scm:723 msgid "" "S is a new shell that aims to be extremely simple. It does not\n" "implement the POSIX shell standard.\n" @@ -16139,19 +16284,19 @@ msgid "" "A @code{andglob} program is also provided along with s." msgstr "" -#: gnu/packages/shells.scm:753 +#: gnu/packages/shells.scm:754 msgid "" "Oksh is a port of the OpenBSD Korn Shell.\n" "The OpenBSD Korn Shell is a cleaned up and enhanced ksh." msgstr "" -#: gnu/packages/shells.scm:783 +#: gnu/packages/shells.scm:784 msgid "" "loksh is a Linux port of OpenBSD's @command{ksh}. It is a small,\n" "interactive POSIX shell targeted at resource-constrained systems." msgstr "" -#: gnu/packages/shells.scm:821 +#: gnu/packages/shells.scm:822 msgid "" "mksh is an actively developed free implementation of the\n" "Korn Shell programming language and a successor to the Public Domain Korn\n" @@ -16183,7 +16328,7 @@ msgid "" "files and text." msgstr "" -#: gnu/packages/shells.scm:1006 +#: gnu/packages/shells.scm:1005 msgid "" "Nu draws inspiration from projects like PowerShell, functional\n" "programming languages, and modern CLI tools. Rather than thinking of files\n" @@ -16194,7 +16339,7 @@ msgid "" "of commands called a ``pipeline''." msgstr "" -#: gnu/packages/shells.scm:1037 +#: gnu/packages/shells.scm:1036 msgid "" "This package is a library for ANSI terminal colors and styles (bold,\n" "underline)." @@ -16450,19 +16595,19 @@ msgid "" "your calls and messages." msgstr "" -#: gnu/packages/telephony.scm:874 +#: gnu/packages/telephony.scm:869 msgid "" "PJProject provides an implementation of the Session\n" "Initiation Protocol (SIP) and a multimedia framework." msgstr "" -#: gnu/packages/telephony.scm:916 +#: gnu/packages/telephony.scm:911 msgid "" "A collection of libraries and header files for implementing\n" "telephony functionality into custom Telegram clients." msgstr "" -#: gnu/packages/tex.scm:532 +#: gnu/packages/tex.scm:543 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -16472,20 +16617,20 @@ msgid "" "This package contains the binaries." msgstr "" -#: gnu/packages/tex.scm:571 +#: gnu/packages/tex.scm:582 msgid "" "kpathsea is a library, whose purpose is to return a filename\n" "from a list of user-specified directories similar to how shells look up\n" "executables. It is maintained as a part of TeX Live." msgstr "" -#: gnu/packages/tex.scm:591 +#: gnu/packages/tex.scm:602 msgid "" "This package provides the docstrip utility to strip\n" "documentation from TeX files. It is part of the LaTeX base." msgstr "" -#: gnu/packages/tex.scm:606 +#: gnu/packages/tex.scm:617 msgid "" "This bundle provides generic access to Unicode Consortium\n" "data for TeX use. It contains a set of text files provided by the Unicode\n" @@ -16498,7 +16643,7 @@ msgid "" "out to date by @code{unicode-letters.tex}." msgstr "" -#: gnu/packages/tex.scm:638 +#: gnu/packages/tex.scm:649 msgid "" "This package includes Knuth's original @file{hyphen.tex},\n" "@file{zerohyph.tex} to disable hyphenation, @file{language.us} which starts\n" @@ -16506,13 +16651,13 @@ msgid "" "default versions of those), etc." msgstr "" -#: gnu/packages/tex.scm:659 +#: gnu/packages/tex.scm:670 msgid "" "This package provides files needed for converting DVI files\n" "to PostScript." msgstr "" -#: gnu/packages/tex.scm:673 +#: gnu/packages/tex.scm:684 msgid "" "This bundle provides a collection of model \".ini\" files\n" "for creating TeX formats. These files are commonly used to introduced\n" @@ -16521,13 +16666,13 @@ msgid "" "to adapt the plain e-TeX source file to work with XeTeX and LuaTeX." msgstr "" -#: gnu/packages/tex.scm:736 +#: gnu/packages/tex.scm:747 msgid "" "This package provides the Metafont base files needed to\n" "build fonts using the Metafont system." msgstr "" -#: gnu/packages/tex.scm:821 +#: gnu/packages/tex.scm:832 msgid "" "This package provides TeX macros for converting Adobe Font\n" "Metric files to TeX metric and virtual font format. Fontinst helps mainly\n" @@ -16537,7 +16682,7 @@ msgid "" "typesetting in these fonts." msgstr "" -#: gnu/packages/tex.scm:842 +#: gnu/packages/tex.scm:853 msgid "" "This is Fontname, a naming scheme for (the base part of)\n" "external TeX font filenames. This makes at most eight-character names\n" @@ -16545,7 +16690,7 @@ msgid "" "documents." msgstr "" -#: gnu/packages/tex.scm:915 +#: gnu/packages/tex.scm:926 msgid "" "This package provides the Computer Modern fonts by Donald\n" "Knuth. The Computer Modern font family is a large collection of text,\n" @@ -16553,7 +16698,7 @@ msgid "" "8A." msgstr "" -#: gnu/packages/tex.scm:946 +#: gnu/packages/tex.scm:957 msgid "" "The CM-Super family provides Adobe Type 1 fonts that replace\n" "the T1/TS1-encoded Computer Modern (EC/TC), T1/TS1-encoded Concrete,\n" @@ -16563,13 +16708,13 @@ msgid "" "originals." msgstr "" -#: gnu/packages/tex.scm:979 +#: gnu/packages/tex.scm:990 msgid "" "This package provides a drop-in replacements for the Courier\n" "font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:1002 +#: gnu/packages/tex.scm:1013 msgid "" "The TeX-GYRE bundle consist of multiple font families:\n" "@itemize @bullet\n" @@ -16589,21 +16734,21 @@ msgid "" "support (for use with a variety of encodings) is provided." msgstr "" -#: gnu/packages/tex.scm:1041 +#: gnu/packages/tex.scm:1052 msgid "" "The Latin Modern fonts are derived from the famous Computer\n" "Modern fonts designed by Donald E. Knuth and described in Volume E of his\n" "Computers & Typesetting series." msgstr "" -#: gnu/packages/tex.scm:1106 +#: gnu/packages/tex.scm:1117 msgid "" "This is a collection of core TeX and METAFONT macro files\n" "from Donald Knuth, including the plain format, plain base, and the MF logo\n" "fonts." msgstr "" -#: gnu/packages/tex.scm:1181 +#: gnu/packages/tex.scm:1192 msgid "" "This is a collection of fonts for use with standard LaTeX\n" "packages and classes. It includes invisible fonts (for use with the slides\n" @@ -16611,14 +16756,14 @@ msgid "" "symbol fonts." msgstr "" -#: gnu/packages/tex.scm:1253 +#: gnu/packages/tex.scm:1264 msgid "" "This package provides LaTeX and font definition files to access the\n" "Knuthian mflogo fonts described in The Metafontbook and to typeset Metafont\n" "logos in LaTeX documents." msgstr "" -#: gnu/packages/tex.scm:1274 +#: gnu/packages/tex.scm:1285 msgid "" "These fonts were created in METAFONT by Knuth, for his own publications.\n" "At some stage, the letters P and S were added, so that the METAPOST logo could\n" @@ -16627,7 +16772,7 @@ msgid "" "Taco Hoekwater." msgstr "" -#: gnu/packages/tex.scm:1402 +#: gnu/packages/tex.scm:1415 gnu/packages/tex.scm:1579 msgid "" "This package provides an extended set of fonts for use in mathematics,\n" "including: extra mathematical symbols; blackboard bold letters (uppercase\n" @@ -16641,7 +16786,7 @@ msgid "" "details can be found in the documentation." msgstr "" -#: gnu/packages/tex.scm:1432 +#: gnu/packages/tex.scm:1609 msgid "" "Mkpattern is a general purpose program for the generation of\n" "hyphenation patterns, with definition of letter sets and template-like\n" @@ -16649,7 +16794,7 @@ msgid "" "output encodings, and features generation of clean UTF-8 patterns." msgstr "" -#: gnu/packages/tex.scm:1489 +#: gnu/packages/tex.scm:1666 msgid "" "This package provides an extended version of TeX (which is capable of\n" "running as if it were TeX unmodified). E-TeX has been specified by the LaTeX\n" @@ -16658,122 +16803,131 @@ msgid "" "incorporates the e-TeX extensions." msgstr "" -#: gnu/packages/tex.scm:1507 +#: gnu/packages/tex.scm:1684 msgid "" "This package contains files used to build the Plain TeX format, as\n" "described in the TeXbook, together with various supporting files (some also\n" "discussed in the book)." msgstr "" -#: gnu/packages/tex.scm:1533 +#: gnu/packages/tex.scm:1702 +msgid "" +"The package facilitates wrapping text to a specific character width, breaking\n" +"lines by words rather than, as done by TeX, by characters. The primary use for\n" +"these facilities is to aid the generation of messages sent to the log file or\n" +"console output to display messages to the user. Package authors may also find\n" +"this useful when writing out arbitary text to an external file." +msgstr "" + +#: gnu/packages/tex.scm:1730 msgid "" "This package provides a drop-in replacements for the Helvetica\n" "font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:1546 +#: gnu/packages/tex.scm:1743 msgid "" "The package provides hyphenation patterns for the Afrikaans\n" "language." msgstr "" -#: gnu/packages/tex.scm:1560 +#: gnu/packages/tex.scm:1757 msgid "" "The package provides hyphenation patterns for ancient\n" "Greek." msgstr "" -#: gnu/packages/tex.scm:1573 +#: gnu/packages/tex.scm:1770 msgid "" "The package provides hyphenation patterns for the Armenian\n" "language." msgstr "" -#: gnu/packages/tex.scm:1587 +#: gnu/packages/tex.scm:1784 msgid "" "The package provides hyphenation patterns for the Basque\n" "language." msgstr "" -#: gnu/packages/tex.scm:1601 +#: gnu/packages/tex.scm:1798 msgid "" "The package provides hyphenation patterns for the Belarusian\n" "language." msgstr "" -#: gnu/packages/tex.scm:1613 +#: gnu/packages/tex.scm:1810 msgid "" "The package provides hyphenation patterns for the Bulgarian\n" "language in T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1627 +#: gnu/packages/tex.scm:1824 msgid "" "The package provides hyphenation patterns for Catalan in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1640 +#: gnu/packages/tex.scm:1837 msgid "" "The package provides hyphenation patterns for unaccented\n" "Chinese pinyin T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1652 +#: gnu/packages/tex.scm:1849 msgid "" "The package provides hyphenation patterns for Church\n" "Slavonic in UTF-8 encoding." msgstr "" -#: gnu/packages/tex.scm:1665 +#: gnu/packages/tex.scm:1862 msgid "" "The package provides hyphenation patterns for Coptic in\n" "UTF-8 encoding as well as in ASCII-based encoding for 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:1678 +#: gnu/packages/tex.scm:1875 msgid "" "The package provides hyphenation patterns for Croatian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1690 +#: gnu/packages/tex.scm:1887 msgid "" "The package provides hyphenation patterns for Czech in T1/EC\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1702 +#: gnu/packages/tex.scm:1899 msgid "" "The package provides hyphenation patterns for Danish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1715 +#: gnu/packages/tex.scm:1912 msgid "" "The package provides hyphenation patterns for Dutch in T1/EC\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1728 +#: gnu/packages/tex.scm:1925 msgid "" "The package provides additional hyphenation patterns for\n" "American and British English in ASCII encoding." msgstr "" -#: gnu/packages/tex.scm:1742 +#: gnu/packages/tex.scm:1939 msgid "" "The package provides hyphenation patterns for Esperanto ISO\n" "Latin 3 and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1754 +#: gnu/packages/tex.scm:1951 msgid "" "The package provides hyphenation patterns for Estonian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1768 +#: gnu/packages/tex.scm:1965 msgid "" "The package provides hyphenation patterns for languages\n" "written using the Ethiopic script for Unicode engines. They are not supposed\n" @@ -16781,94 +16935,94 @@ msgid "" "be replaced by files tailored to individual languages." msgstr "" -#: gnu/packages/tex.scm:1782 +#: gnu/packages/tex.scm:1979 msgid "" "The package provides hyphenation patterns for Finnish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1794 +#: gnu/packages/tex.scm:1991 msgid "" "The package provides hyphenation patterns for Finnish for\n" "school in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1806 +#: gnu/packages/tex.scm:2003 msgid "" "The package provides hyphenation patterns for French in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1818 +#: gnu/packages/tex.scm:2015 msgid "" "The package provides hyphenation patterns for Friulan in\n" "ASCII encodings." msgstr "" -#: gnu/packages/tex.scm:1831 +#: gnu/packages/tex.scm:2028 msgid "" "The package provides hyphenation patterns for Galician in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1843 +#: gnu/packages/tex.scm:2040 msgid "" "The package provides hyphenation patterns for Georgian in\n" "T8M, T8K, and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1861 +#: gnu/packages/tex.scm:2058 msgid "" "This package provides hyphenation patterns for German in\n" "T1/EC and UTF-8 encodings, for traditional and reformed spelling, including\n" "Swiss German." msgstr "" -#: gnu/packages/tex.scm:1880 +#: gnu/packages/tex.scm:2077 msgid "" "This package provides hyphenation patterns for Modern Greek\n" "in monotonic and polytonic spelling in LGR and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1894 +#: gnu/packages/tex.scm:2091 msgid "" "This package provides hyphenation patterns for Hungarian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1907 +#: gnu/packages/tex.scm:2104 msgid "" "This package provides hyphenation patterns for Icelandic in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1930 +#: gnu/packages/tex.scm:2127 msgid "" "This package provides hyphenation patterns for Assamese,\n" "Bengali, Gujarati, Hindi, Kannada, Malayalam, Marathi, Oriya, Panjabi, Tamil\n" "and Telugu for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:1943 +#: gnu/packages/tex.scm:2140 msgid "" "This package provides hyphenation patterns for\n" "Indonesian (Bahasa Indonesia) in ASCII encoding. They are probably also\n" "usable for Malay (Bahasa Melayu)." msgstr "" -#: gnu/packages/tex.scm:1956 +#: gnu/packages/tex.scm:2153 msgid "" "This package provides hyphenation patterns for Interlingua\n" "in ASCII encoding." msgstr "" -#: gnu/packages/tex.scm:1968 +#: gnu/packages/tex.scm:2165 msgid "" "This package provides hyphenation patterns for\n" "Irish (Gaeilge) in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1981 +#: gnu/packages/tex.scm:2178 msgid "" "This package provides hyphenation patterns for Italian in\n" "ASCII encoding. Compliant with the Recommendation UNI 6461 on hyphenation\n" @@ -16876,14 +17030,14 @@ msgid "" "UNI)." msgstr "" -#: gnu/packages/tex.scm:1995 +#: gnu/packages/tex.scm:2192 msgid "" "This package provides hyphenation patterns for\n" "Kurmanji (Northern Kurdish) as spoken in Turkey and by the Kurdish diaspora in\n" "Europe, in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2011 +#: gnu/packages/tex.scm:2208 msgid "" "This package provides hyphenation patterns for Latin in\n" "T1/EC and UTF-8 encodings, mainly in modern spelling (u when u is needed and v\n" @@ -16897,35 +17051,35 @@ msgid "" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2032 +#: gnu/packages/tex.scm:2229 msgid "" "This package provides hyphenation patterns for Latvian in\n" "L7X and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2045 +#: gnu/packages/tex.scm:2242 msgid "" "This package provides hyphenation patterns for Lithuanian in\n" "L7X and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2060 -msgid "This package provides hypenation patterns for Macedonian." +#: gnu/packages/tex.scm:2257 +msgid "This package provides hyphenation patterns for Macedonian." msgstr "" -#: gnu/packages/tex.scm:2073 +#: gnu/packages/tex.scm:2270 msgid "" "This package provides hyphenation patterns for Mongolian in\n" "T2A, LMC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2088 +#: gnu/packages/tex.scm:2285 msgid "" "This package provides hyphenation patterns for Norwegian\n" "Bokmal and Nynorsk in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2102 +#: gnu/packages/tex.scm:2299 msgid "" "This package provides hyphenation patterns for Occitan in\n" "T1/EC and UTF-8 encodings. They are supposed to be valid for all the Occitan\n" @@ -16934,94 +17088,94 @@ msgid "" "Alps encompassing the southern half of the French pentagon." msgstr "" -#: gnu/packages/tex.scm:2117 +#: gnu/packages/tex.scm:2314 msgid "" "This package provides hyphenation patterns for Panjabi in\n" "T1/EC encoding." msgstr "" -#: gnu/packages/tex.scm:2130 +#: gnu/packages/tex.scm:2327 msgid "" "This package provides hyphenation patterns for Piedmontese\n" "in ASCII encoding. Compliant with 'Gramatica dla lengua piemonteisa' by\n" "Camillo Brero." msgstr "" -#: gnu/packages/tex.scm:2143 +#: gnu/packages/tex.scm:2340 msgid "" "This package provides hyphenation patterns for Polish in QX\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2156 +#: gnu/packages/tex.scm:2353 msgid "" "This package provides hyphenation patterns for Portuguese in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2168 +#: gnu/packages/tex.scm:2365 msgid "" "This package provides hyphenation patterns for Romanian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2181 +#: gnu/packages/tex.scm:2378 msgid "" "This package provides hyphenation patterns for Romansh in\n" "ASCII encodings. They are supposed to comply with the rules indicated by the\n" "Lia Rumantscha (Romansh language society)." msgstr "" -#: gnu/packages/tex.scm:2194 +#: gnu/packages/tex.scm:2391 msgid "" "This package provides hyphenation patterns for Russian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2207 +#: gnu/packages/tex.scm:2404 msgid "" "This package provides hyphenation patterns for Sanskrit and\n" "Prakrit in longdesc transliteration, and in Devanagari, Bengali, Kannada,\n" "Malayalam longdesc and Telugu scripts for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:2224 +#: gnu/packages/tex.scm:2421 msgid "" "This package provides hyphenation patterns for Serbian in\n" "T1/EC, T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2237 +#: gnu/packages/tex.scm:2434 msgid "" "This package provides hyphenation patterns for Slovak in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2249 +#: gnu/packages/tex.scm:2446 msgid "" "This package provides hyphenation patterns for Slovenian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2265 +#: gnu/packages/tex.scm:2462 msgid "" "The package provides hyphenation patterns for Spanish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2277 +#: gnu/packages/tex.scm:2474 msgid "" "This package provides hyphenation patterns for Swedish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2289 +#: gnu/packages/tex.scm:2486 msgid "" "This package provides hyphenation patterns for Thai in LTH\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2302 +#: gnu/packages/tex.scm:2499 msgid "" "The package provides hyphenation patterns for Turkish in\n" "T1/EC and UTF-8 encodings. The patterns for Turkish were first produced for\n" @@ -17031,31 +17185,31 @@ msgid "" "compatibility with 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:2319 +#: gnu/packages/tex.scm:2516 msgid "" "The package provides hyphenation patterns for Turkmen in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2331 +#: gnu/packages/tex.scm:2528 msgid "" "This package provides hyphenation patterns for Ukrainian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2344 +#: gnu/packages/tex.scm:2541 msgid "" "This package provides hyphenation patterns for Upper Sorbian\n" "in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2356 +#: gnu/packages/tex.scm:2553 msgid "" "This package provides hyphenation patterns for Welsh in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2477 +#: gnu/packages/tex.scm:2674 msgid "" "Modern native UTF-8 engines such as XeTeX and LuaTeX need\n" "hyphenation patterns in UTF-8 format, whereas older systems require\n" @@ -17068,7 +17222,7 @@ msgid "" "converters, will completely supplant the older patterns." msgstr "" -#: gnu/packages/tex.scm:2521 +#: gnu/packages/tex.scm:2718 msgid "" "The package provides experimental hyphenation patterns for\n" "the German language, covering both traditional and reformed orthography. The\n" @@ -17076,21 +17230,29 @@ msgid "" "bundle." msgstr "" -#: gnu/packages/tex.scm:2542 +#: gnu/packages/tex.scm:2739 msgid "" "The package provides a range of hyphenation patterns for\n" "Ukrainian, depending on the encoding of the output font including the standard\n" "T2A." msgstr "" -#: gnu/packages/tex.scm:2577 +#: gnu/packages/tex.scm:2774 msgid "" "The package provides a collection of Russian hyphenation\n" "patterns supporting a number of Cyrillic font encodings, including T2,\n" "UCY (Omega Unicode Cyrillic), LCY, LWN (OT2), and koi8-r." msgstr "" -#: gnu/packages/tex.scm:2620 +#: gnu/packages/tex.scm:2792 +msgid "" +"This package deals with input encodings. It provides a wider range of input\n" +"encodings using standard mappings, than does inputenc; it also covers nearly all\n" +"slots. In this way, it serves as more uptodate replacement for package\n" +"inputenc." +msgstr "" + +#: gnu/packages/tex.scm:2853 msgid "" "Kpathsea is a library and utility programs which provide\n" "path searching facilities for TeX file types, including the self-locating\n" @@ -17098,13 +17260,27 @@ msgid "" "mechanism. This package provides supporting files." msgstr "" -#: gnu/packages/tex.scm:2636 +#: gnu/packages/tex.scm:2876 +msgid "" +"The family contains text fonts in roman, sans-serif and monospaced\n" +"shapes, with true small caps and old-style numbers; the package offers full\n" +"support of the textcomp package. The mathematics fonts include all the AMS\n" +"fonts, in both normal and bold weights. Each of the font types is available\n" +"in two main versions: default and light. Each version is available in four\n" +"variants: default; oldstyle numbers; oldstyle numbers with old ligatures such\n" +"as ct and st, and long-tailed capital Q; and veryoldstyle with long s. Other\n" +"variants include small caps as default or large small caps, and for\n" +"mathematics both upright and slanted shapes for Greek letters, as well as\n" +"default and narrow versions of multiple integrals." +msgstr "" + +#: gnu/packages/tex.scm:2898 msgid "" "The package provides configuration files for LaTeX-related\n" "formats." msgstr "" -#: gnu/packages/tex.scm:2867 +#: gnu/packages/tex.scm:3127 msgid "" "This bundle comprises the source of LaTeX itself, together with several\n" "packages which are considered \"part of the kernel\". This bundle, together\n" @@ -17112,7 +17288,7 @@ msgid "" "contain." msgstr "" -#: gnu/packages/tex.scm:2885 +#: gnu/packages/tex.scm:3145 msgid "" "This LaTeX packages provides two hooks for @code{\\end@{document@}}\n" "that are executed after the hook of @code{\\AtEndDocument}:\n" @@ -17122,13 +17298,13 @@ msgid "" "of the @file{.aux} file." msgstr "" -#: gnu/packages/tex.scm:2905 +#: gnu/packages/tex.scm:3165 msgid "" "This package provides hooks for adding code at the beginning of\n" "@file{.aux} files." msgstr "" -#: gnu/packages/tex.scm:2921 +#: gnu/packages/tex.scm:3181 msgid "" "The package adds support for EPS files in the @code{graphicx} package\n" "when running under pdfTeX. If an EPS graphic is detected, the package\n" @@ -17136,7 +17312,7 @@ msgid "" "@command{epstopdf}." msgstr "" -#: gnu/packages/tex.scm:2943 +#: gnu/packages/tex.scm:3203 msgid "" "LaTeX2e's @code{filecontents} and @code{filecontents*} environments\n" "enable a LaTeX source file to generate external files as it runs through\n" @@ -17147,7 +17323,7 @@ msgid "" "@code{filecontents*} anywhere." msgstr "" -#: gnu/packages/tex.scm:2964 +#: gnu/packages/tex.scm:3224 msgid "" "This package provides the original (and now obsolescent) graphics\n" "inclusion macros for use with dvips, still widely used by Plain TeX users (in\n" @@ -17157,7 +17333,7 @@ msgid "" "users, via its Plain TeX version.)" msgstr "" -#: gnu/packages/tex.scm:2986 +#: gnu/packages/tex.scm:3246 msgid "" "This package provides tools for the flexible handling of verbatim text\n" "including: verbatim commands in footnotes; a variety of verbatim environments\n" @@ -17167,7 +17343,7 @@ msgid "" "verbatim source)." msgstr "" -#: gnu/packages/tex.scm:3008 +#: gnu/packages/tex.scm:3268 msgid "" "This bundle is a combined distribution consisting of @file{dvips.def},\n" "@file{pdftex.def}, @file{luatex.def}, @file{xetex.def}, @file{dvipdfmx.def},\n" @@ -17175,13 +17351,19 @@ msgid "" "packages." msgstr "" -#: gnu/packages/tex.scm:3026 +#: gnu/packages/tex.scm:3286 msgid "" "This bundle includes @file{color.cfg} and @file{graphics.cfg} files that\n" "set default \"driver\" options for the color and graphics packages." msgstr "" -#: gnu/packages/tex.scm:3048 +#: gnu/packages/tex.scm:3303 +msgid "" +"The package provides Greek LICR macro definitions and encoding definition files\n" +"for Greek text font encodings for use with fontenc." +msgstr "" + +#: gnu/packages/tex.scm:3325 msgid "" "This is a collection of LaTeX packages for producing color, including\n" "graphics (e.g. PostScript) files, and rotation and scaling of text in LaTeX\n" @@ -17189,13 +17371,13 @@ msgid "" "keyval, and lscape." msgstr "" -#: gnu/packages/tex.scm:3066 +#: gnu/packages/tex.scm:3343 msgid "" "This package provides the code for the @code{color} option that is\n" "used by @code{hyperref} and @code{bookmark}." msgstr "" -#: gnu/packages/tex.scm:3098 +#: gnu/packages/tex.scm:3375 msgid "" "The package starts from the basic facilities of the colorcolor package,\n" "and provides easy driver-independent access to several kinds of color tints,\n" @@ -17206,7 +17388,7 @@ msgid "" "tables." msgstr "" -#: gnu/packages/tex.scm:3171 +#: gnu/packages/tex.scm:3448 msgid "" "The package provides an implementation of a parser for\n" "documents matching the XML 1.0 and XML Namespace Recommendations. Element and\n" @@ -17214,7 +17396,7 @@ msgid "" "XML, using UTF-8 or a suitable 8-bit encoding." msgstr "" -#: gnu/packages/tex.scm:3222 +#: gnu/packages/tex.scm:3499 msgid "" "The @code{hyperref} package is used to handle cross-referencing commands\n" "in LaTeX to produce hypertext links in the document. The package provides\n" @@ -17226,20 +17408,20 @@ msgid "" "@code{nameref} packages, which make use of the facilities of @code{hyperref}." msgstr "" -#: gnu/packages/tex.scm:3262 +#: gnu/packages/tex.scm:3539 msgid "" "The bundle comprises various LaTeX packages, providing among others:\n" "better accessibility support for PDF files; extensible chemists reaction\n" "arrows; record information about document class(es) used; and many more." msgstr "" -#: gnu/packages/tex.scm:3285 +#: gnu/packages/tex.scm:3562 msgid "" "This package provides additional rerun warnings if some auxiliary\n" "files have changed. It is based on MD5 checksum, provided by pdfTeX." msgstr "" -#: gnu/packages/tex.scm:3319 +#: gnu/packages/tex.scm:3596 msgid "" "This package is a collection of (variously) simple tools provided as\n" "part of the LaTeX required tools distribution, comprising the following\n" @@ -17249,7 +17431,7 @@ msgid "" "xr, and xspace." msgstr "" -#: gnu/packages/tex.scm:3338 +#: gnu/packages/tex.scm:3615 msgid "" "The command @code{\\url} is a form of verbatim command that\n" "allows linebreaks at certain characters or combinations of characters, accepts\n" @@ -17261,14 +17443,14 @@ msgid "" "of file names." msgstr "" -#: gnu/packages/tex.scm:3364 +#: gnu/packages/tex.scm:3641 msgid "" "This package provides font maps that were originally part of\n" "the now obsolete teTeX distributions but are still used at the core of the TeX\n" "Live distribution." msgstr "" -#: gnu/packages/tex.scm:3391 +#: gnu/packages/tex.scm:3668 msgid "" "The l3kernel bundle provides an implementation of the LaTeX3\n" "programmers’ interface, as a set of packages that run under LaTeX 2e. The\n" @@ -17277,7 +17459,7 @@ msgid "" "that the LaTeX3 conventions can be used with regular LaTeX 2e packages." msgstr "" -#: gnu/packages/tex.scm:3420 +#: gnu/packages/tex.scm:3697 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" @@ -17286,7 +17468,7 @@ msgid "" "an independent schedule." msgstr "" -#: gnu/packages/tex.scm:3484 +#: gnu/packages/tex.scm:3761 msgid "" "This bundle holds prototype implementations of concepts for a LaTeX\n" "designer interface, to be used with the experimental LaTeX kernel as\n" @@ -17303,14 +17485,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:3511 +#: gnu/packages/tex.scm:3788 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" "here are defined for the dvips engine only." msgstr "" -#: gnu/packages/tex.scm:3539 +#: gnu/packages/tex.scm:3816 msgid "" "Fontspec is a package for XeLaTeX and LuaLaTeX. It provides an\n" "automatic and unified interface to feature-rich AAT and OpenType fonts through\n" @@ -17318,7 +17500,7 @@ msgid "" "the l3kernel and xparse bundles from the LaTeX 3 development team." msgstr "" -#: gnu/packages/tex.scm:3569 +#: gnu/packages/tex.scm:3846 msgid "" "The original grffile package extended the file name processing of the\n" "@code{graphics} package to support a larger range of file names. The base\n" @@ -17326,13 +17508,13 @@ msgid "" "is a stub that just loads @code{graphicx}." msgstr "" -#: gnu/packages/tex.scm:3610 +#: gnu/packages/tex.scm:3887 msgid "" "This package provides @code{\\StringEncodingConvert} for converting a\n" "string between different encodings. Both LaTeX and plain-TeX are supported." msgstr "" -#: gnu/packages/tex.scm:3653 +#: gnu/packages/tex.scm:3930 msgid "" "The l3build module is designed to support the development of\n" "high-quality LaTeX code by providing: a unit testing system, automated\n" @@ -17341,14 +17523,20 @@ msgid "" "@code{.tex} file which provides the testing environment." msgstr "" -#: gnu/packages/tex.scm:3690 +#: gnu/packages/tex.scm:3953 msgid "" "Lualibs is a collection of Lua modules useful for general programming.\n" "The bundle is based on Lua modules shipped with ConTeXt, and made available in\n" "this bundle for use independent of ConTeXt." msgstr "" -#: gnu/packages/tex.scm:3718 +#: gnu/packages/tex.scm:3972 +msgid "" +"This package provides a Lua module for processing application arguments\n" +"in the same way as BSD/GNU @code{getopt_long(3)} functions do." +msgstr "" + +#: gnu/packages/tex.scm:3999 msgid "" "Luaotfload is an adaptation of the ConTeXt font loading system for the\n" "Plain and LaTeX formats. It allows OpenType fonts to be loaded with font\n" @@ -17357,11 +17545,7 @@ msgid "" "loading fonts by their proper names instead of file names." msgstr "" -#: gnu/packages/tex.scm:3790 -msgid "This package is necessary to use LaTeX with the LuaTeX engine." -msgstr "" - -#: gnu/packages/tex.scm:3809 +#: gnu/packages/tex.scm:4025 msgid "" "This is the principal package in the AMS-LaTeX distribution. It adapts\n" "for use in LaTeX most of the mathematical features found in AMS-TeX; it is\n" @@ -17376,7 +17560,7 @@ msgid "" "definitions." msgstr "" -#: gnu/packages/tex.scm:3843 +#: gnu/packages/tex.scm:4059 msgid "" "This bundle contains three AMS classes: @code{amsartamsart} (for writing\n" "articles for the AMS), @code{amsbookamsbook} (for books) and\n" @@ -17385,7 +17569,7 @@ msgid "" "distribution." msgstr "" -#: gnu/packages/tex.scm:3890 +#: gnu/packages/tex.scm:4106 msgid "" "The package manages culturally-determined typographical (and other)\n" "rules, and hyphenation patterns for a wide range of languages. A document may\n" @@ -17396,7 +17580,7 @@ msgid "" "polyglossia package rather than Babel." msgstr "" -#: gnu/packages/tex.scm:3917 +#: gnu/packages/tex.scm:4133 msgid "" "This package provides the language definition file for support of\n" "English in @code{babel}. Care is taken to select British hyphenation patterns\n" @@ -17404,13 +17588,14 @@ msgid "" "for Canadian and USA text." msgstr "" -#: gnu/packages/tex.scm:3939 +#: gnu/packages/tex.scm:4173 msgid "" -"This package provides support for the French language for the\n" -"babel multilingual system." +"The package, formerly known as frenchb, establishes French conventions\n" +"in a document (or a subset of the conventions, if French is not the main\n" +"language of the document)." msgstr "" -#: gnu/packages/tex.scm:3959 +#: gnu/packages/tex.scm:4196 msgid "" "This package provides the language definition file for support of German\n" "in @code{babel}. It provides all the necessary macros, definitions and\n" @@ -17419,14 +17604,14 @@ msgid "" "Swiss varieties of German." msgstr "" -#: gnu/packages/tex.scm:3986 +#: gnu/packages/tex.scm:4223 msgid "" "This package provides the language definition file for\n" "support of Swedish in @code{babel}. It provides all the necessary macros,\n" "definitions and settings to typeset Swedish documents." msgstr "" -#: gnu/packages/tex.scm:4008 +#: gnu/packages/tex.scm:4245 msgid "" "This bundle of macros files provides macro support (including font\n" "encoding macros) for the use of Cyrillic characters in fonts encoded under the\n" @@ -17434,7 +17619,7 @@ msgid "" "language that is written in a Cyrillic alphabet." msgstr "" -#: gnu/packages/tex.scm:4126 +#: gnu/packages/tex.scm:4363 msgid "" "The PSNFSS collection includes a set of files that provide a complete\n" "working setup of the LaTeX font selection scheme (NFSS2) for use with common\n" @@ -17449,20 +17634,20 @@ msgid "" "part of the LaTeX required set of packages." msgstr "" -#: gnu/packages/tex.scm:4177 gnu/packages/tex.scm:4269 +#: gnu/packages/tex.scm:4414 gnu/packages/tex.scm:4506 msgid "" "This is a very limited subset of the TeX Live distribution.\n" "It includes little more than the required set of LaTeX packages." msgstr "" -#: gnu/packages/tex.scm:4248 +#: gnu/packages/tex.scm:4485 msgid "" "This package contains the fonts map configuration file\n" "generated for the base TeX Live packages as well as, optionally, user-provided\n" "ones." msgstr "" -#: gnu/packages/tex.scm:4288 +#: gnu/packages/tex.scm:4525 msgid "" "These fonts are considered the \"ultimate answer\" to IPA\n" "typesetting. The encoding of these 8-bit fonts has been registered as LaTeX\n" @@ -17471,7 +17656,7 @@ msgid "" "TS3 fonts." msgstr "" -#: gnu/packages/tex.scm:4311 +#: gnu/packages/tex.scm:4548 msgid "" "Amsrefs is a LaTeX package for bibliographies that provides an archival\n" "data format similar to the format of BibTeX database files, but adapted to\n" @@ -17479,7 +17664,7 @@ msgid "" "conjunction with BibTeX or as a replacement for BibTeX." msgstr "" -#: gnu/packages/tex.scm:4340 +#: gnu/packages/tex.scm:4577 msgid "" "This package aims to provide a one-stop solution to requirements for\n" "footnotes. It offers: Multiple footnote apparatus superior to that of\n" @@ -17493,7 +17678,7 @@ msgid "" "@code{suffix} packages." msgstr "" -#: gnu/packages/tex.scm:4368 +#: gnu/packages/tex.scm:4605 msgid "" "The package provides the commands @code{\\blindtext} and\n" "@code{\\Blindtext} for creating \"blind\" text useful in testing new classes\n" @@ -17504,7 +17689,7 @@ msgid "" "ipsum\" text, see the @code{lipsum} package)." msgstr "" -#: gnu/packages/tex.scm:4407 +#: gnu/packages/tex.scm:4644 msgid "" "This package implements a document layout for writing letters according\n" "to the rules of DIN (Deutsches Institut für Normung, German standardisation\n" @@ -17516,7 +17701,7 @@ msgid "" "package." msgstr "" -#: gnu/packages/tex.scm:4433 +#: gnu/packages/tex.scm:4670 msgid "" "This package provides a means to add a textual, light grey watermark on\n" "every page or on the first page of a document. Typical usage may consist in\n" @@ -17526,7 +17711,7 @@ msgid "" "on everypage." msgstr "" -#: gnu/packages/tex.scm:4457 +#: gnu/packages/tex.scm:4694 msgid "" "This package provides the @code{\\collect@@body} command (as in\n" "@code{amsmath}), as well as a @code{\\long} version @code{\\Collect@@Body},\n" @@ -17534,7 +17719,7 @@ msgid "" "define a new author interface to creating new environments." msgstr "" -#: gnu/packages/tex.scm:4479 +#: gnu/packages/tex.scm:4716 msgid "" "LaTeX users sometimes need to ensure that two or more blocks of text\n" "occupy the same amount of horizontal space on the page. To that end, the\n" @@ -17548,7 +17733,7 @@ msgid "" "also provided." msgstr "" -#: gnu/packages/tex.scm:4504 +#: gnu/packages/tex.scm:4741 msgid "" "This package gives the user complete control of how the entries of\n" "the table of contents should be constituted from the name, number, and page\n" @@ -17568,7 +17753,7 @@ msgid "" "table of contents." msgstr "" -#: gnu/packages/tex.scm:4546 +#: gnu/packages/tex.scm:4783 msgid "" "The package provides additional features for the LaTeX\n" "@code{description} environment, including adjustable left margin. The package\n" @@ -17577,7 +17762,7 @@ msgid "" "@code{enumerate} lists, and numbered lists remain in sequence)." msgstr "" -#: gnu/packages/tex.scm:4566 +#: gnu/packages/tex.scm:4803 msgid "" "This package provides macros to read and compare the modification dates\n" "of files. The files may be @code{.tex} files, images or other files (as long\n" @@ -17589,14 +17774,14 @@ msgid "" "but non-expandable ones." msgstr "" -#: gnu/packages/tex.scm:4589 +#: gnu/packages/tex.scm:4826 msgid "" "The @code{hanging} package facilitates the typesetting of hanging\n" "paragraphs. The package also enables typesetting with hanging punctuation,\n" "by making punctuation characters active." msgstr "" -#: gnu/packages/tex.scm:4612 +#: gnu/packages/tex.scm:4849 msgid "" "This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX support for\n" "the Fira Sans family of fonts designed by Erik Spiekermann and Ralph du\n" @@ -17604,7 +17789,7 @@ msgid "" "corresponding italics: light, regular, medium, bold, ..." msgstr "" -#: gnu/packages/tex.scm:4635 +#: gnu/packages/tex.scm:4872 msgid "" "This package uses the (La)TeX extension @code{-shell-escape} to\n" "establish whether the document is being processed on a Windows or on a\n" @@ -17615,7 +17800,7 @@ msgid "" "classes of systems." msgstr "" -#: gnu/packages/tex.scm:4660 +#: gnu/packages/tex.scm:4897 msgid "" "This bundle provides a package that implements both author-year and\n" "numbered references, as well as much detailed of support for other\n" @@ -17625,20 +17810,20 @@ msgid "" "designed from the start to be compatible with @code{natbib}." msgstr "" -#: gnu/packages/tex.scm:4679 +#: gnu/packages/tex.scm:4916 msgid "" "This package provides a friendly interface for defining the meaning of\n" "Unicode characters. The document should be processed by (pdf)LaTeX with the\n" "Unicode option of @code{inputenc} or @code{inputenx}, or by XeLaTeX/LuaLaTeX." msgstr "" -#: gnu/packages/tex.scm:4699 +#: gnu/packages/tex.scm:4936 msgid "" "This package makes a number of utility functions from pdfTeX\n" "available for luaTeX by reimplementing them using Lua." msgstr "" -#: gnu/packages/tex.scm:4719 +#: gnu/packages/tex.scm:4956 msgid "" "This package allows LaTeX constructions (equations, picture\n" "environments, etc.) to be precisely superimposed over Encapsulated PostScript\n" @@ -17649,7 +17834,7 @@ msgid "" "rotated." msgstr "" -#: gnu/packages/tex.scm:4751 +#: gnu/packages/tex.scm:4988 msgid "" "This is a package for processing PostScript graphics with @code{psfrag}\n" "labels within pdfLaTeX documents. Every graphic is compiled individually,\n" @@ -17657,7 +17842,7 @@ msgid "" "re-processing." msgstr "" -#: gnu/packages/tex.scm:4771 +#: gnu/packages/tex.scm:5008 msgid "" "This package provides the @code{\\setcounterref} and\n" "@code{\\addtocounterref} commands which use the section (or other) number\n" @@ -17666,7 +17851,7 @@ msgid "" "corresponding thing with the page reference of the label." msgstr "" -#: gnu/packages/tex.scm:4791 +#: gnu/packages/tex.scm:5028 msgid "" "This package provides a class that produces overhead\n" "slides (transparencies), with many facilities. Seminar is not nowadays\n" @@ -17675,14 +17860,14 @@ msgid "" "21st-century presentation styles." msgstr "" -#: gnu/packages/tex.scm:4812 +#: gnu/packages/tex.scm:5049 msgid "" "The package provides a versatile way to stack objects vertically in a\n" "variety of customizable ways. A number of useful macros are provided, all\n" "of which make use of the @code{stackengine} core." msgstr "" -#: gnu/packages/tex.scm:4828 +#: gnu/packages/tex.scm:5065 msgid "" "This package provides control over the typography of the\n" "@dfn{Table of Contents}, @dfn{List of Figures} and @dfn{List of Tables},\n" @@ -17690,7 +17875,7 @@ msgid "" "be changed." msgstr "" -#: gnu/packages/tex.scm:4862 +#: gnu/packages/tex.scm:5099 msgid "" "This very short package allows you to expandably remove spaces around a\n" "token list (commands are provided to remove spaces before, spaces after, or\n" @@ -17698,13 +17883,26 @@ msgid "" "space-stripped macros." msgstr "" -#: gnu/packages/tex.scm:4897 +#: gnu/packages/tex.scm:5115 +msgid "This package provides a math interface to the Rsfs fonts." +msgstr "" + +#: gnu/packages/tex.scm:5152 msgid "" "This package defines a command @code{\\captionof} for putting a caption\n" "to something that's not a float." msgstr "" -#: gnu/packages/tex.scm:4913 +#: gnu/packages/tex.scm:5170 +msgid "" +"Many of David Carlisle's more substantial packages stand on their own,\n" +"or as part of the LaTeX latex-tools set; this set contains: making dotless\n" +"@emph{j} characters for fonts that don't have them; a method for combining the\n" +"capabilities of longtable and tabularx; an environment for including plain TeX\n" +"in LaTeX documents; a jiffy to create slashed characters for physicists." +msgstr "" + +#: gnu/packages/tex.scm:5189 msgid "" "You can hyperlink DOI numbers to doi.org. However, some publishers have\n" "elected to use nasty characters in their DOI numbering scheme (@code{<},\n" @@ -17714,7 +17912,7 @@ msgid "" "hyperlink to the target of the DOI." msgstr "" -#: gnu/packages/tex.scm:4936 +#: gnu/packages/tex.scm:5212 msgid "" "This package is a toolbox of programming facilities geared primarily\n" "towards LaTeX class and package authors. It provides LaTeX frontends to some\n" @@ -17725,7 +17923,7 @@ msgid "" "of the LaTeX kernel." msgstr "" -#: gnu/packages/tex.scm:4976 +#: gnu/packages/tex.scm:5252 msgid "" "This package provides seven predefined chapter heading styles. Each\n" "style can be modified using a set of simple commands. Optionally one can\n" @@ -17733,7 +17931,7 @@ msgid "" "headings." msgstr "" -#: gnu/packages/tex.scm:5011 +#: gnu/packages/tex.scm:5287 msgid "" "The package creates three environments: @code{framed}, which puts an\n" "ordinary frame box around the region, @code{shaded}, which shades the region,\n" @@ -17744,7 +17942,7 @@ msgid "" "@code{\\MakeFramed} to make your own framed-style environments." msgstr "" -#: gnu/packages/tex.scm:5045 +#: gnu/packages/tex.scm:5321 msgid "" "This package is designed for formatting formless letters in German; it\n" "can also be used for English (by those who can read the documentation). There\n" @@ -17752,13 +17950,13 @@ msgid "" "\"old\" and a \"new\" version of g-brief." msgstr "" -#: gnu/packages/tex.scm:5067 +#: gnu/packages/tex.scm:5343 msgid "" "The package deals with connections in two-dimensional style, optionally\n" "in colour." msgstr "" -#: gnu/packages/tex.scm:5087 +#: gnu/packages/tex.scm:5363 msgid "" "The package allows citations in the German style, which is considered by\n" "many to be particularly reader-friendly. The citation provides a small amount\n" @@ -17768,7 +17966,7 @@ msgid "" "BibLaTeX, and is considered experimental." msgstr "" -#: gnu/packages/tex.scm:5113 +#: gnu/packages/tex.scm:5389 msgid "" "This package provides an easy and flexible user interface to customize\n" "page layout, implementing auto-centering and auto-balancing mechanisms so that\n" @@ -17779,7 +17977,7 @@ msgid "" "ability to communicate the paper size it's set up to the output." msgstr "" -#: gnu/packages/tex.scm:5138 +#: gnu/packages/tex.scm:5414 msgid "" "This collection of tools includes: @code{atsupport} for short commands\n" "starting with @code{@@}, macros to sanitize the OT1 encoding of the\n" @@ -17789,13 +17987,13 @@ msgid "" "array environments; verbatim handling; and syntax diagrams." msgstr "" -#: gnu/packages/tex.scm:5162 +#: gnu/packages/tex.scm:5438 msgid "" "This package provides a complete Babel replacement for users of LuaLaTeX\n" "and XeLaTeX; it relies on the @code{fontspec} package, version 2.0 at least." msgstr "" -#: gnu/packages/tex.scm:5182 +#: gnu/packages/tex.scm:5458 msgid "" "This package was a predecessor of @code{longtable}; the newer\n" "package (designed on quite different principles) is easier to use and more\n" @@ -17803,7 +18001,7 @@ msgid "" "situations where longtable has problems." msgstr "" -#: gnu/packages/tex.scm:5217 +#: gnu/packages/tex.scm:5493 msgid "" "Texinfo is the preferred format for documentation in the GNU project;\n" "the format may be used to produce online or printed output from a single\n" @@ -17812,7 +18010,23 @@ msgid "" "hypertext linkages in some cases)." msgstr "" -#: gnu/packages/tex.scm:5240 +#: gnu/packages/tex.scm:5513 +msgid "" +"The textcase package offers commands @code{\\MakeTextUppercase} and\n" +"@code{\\MakeTextLowercase} are similar to the standard @code{\\MakeUppercase}\n" +"and @code{\\MakeLowercase}, but they do not change the case of any sections of\n" +"mathematics, or the arguments of @code{\\cite}, @code{\\label} and\n" +"@code{\\ref} commands within the argument. A further command\n" +"@code{\\NoCaseChange} does nothing but suppress case change within its\n" +"argument, so to force uppercase of a section including an environment, one\n" +"might say:\n" +"\n" +"@example\n" +"\\MakeTextUppercase{...\\NoCaseChange{\\begin{foo}} ...\\NoCaseChange{\\end{foo}}...}\n" +"@end example\n" +msgstr "" + +#: gnu/packages/tex.scm:5543 msgid "" "Typewriter-style fonts are best for program listings, but Computer\n" "Modern Typewriter prints @code{`} and @code{'} as bent opening and closing\n" @@ -17826,14 +18040,14 @@ msgid "" "does not affect @code{\\tt}, @code{\\texttt}, etc." msgstr "" -#: gnu/packages/tex.scm:5281 +#: gnu/packages/tex.scm:5584 msgid "" "This is a simple package to set up document margins. This package is\n" "considered obsolete; alternatives are the @code{typearea} package from the\n" "@code{koma-script} bundle, or the @code{geometry} package." msgstr "" -#: gnu/packages/tex.scm:5302 +#: gnu/packages/tex.scm:5605 msgid "" "The appendix package provides various ways of formatting the titles of\n" "appendices. Also (sub)appendices environments are provided that can be used,\n" @@ -17842,14 +18056,14 @@ msgid "" "command." msgstr "" -#: gnu/packages/tex.scm:5321 +#: gnu/packages/tex.scm:5624 msgid "" "This package implements a new bookmark (outline) organization for the\n" "@code{hyperref} package. Bookmark properties such as style and color. Other\n" "action types are available (URI, GoToR, Named)." msgstr "" -#: gnu/packages/tex.scm:5342 +#: gnu/packages/tex.scm:5645 msgid "" "Identify areas of text to be marked with changebars with the\n" "@code{\\cbstart} and @code{\\cbend} commands; the bars may be coloured. The\n" @@ -17858,19 +18072,19 @@ msgid "" "drivers, and VTeX and pdfTeX." msgstr "" -#: gnu/packages/tex.scm:5379 +#: gnu/packages/tex.scm:5682 msgid "" "This package embeds CMap tables into PDF files to make search and\n" "copy-and-paste functions work properly." msgstr "" -#: gnu/packages/tex.scm:5399 +#: gnu/packages/tex.scm:5702 msgid "" "This package allows rows, columns, and even individual cells in LaTeX\n" "tables to be coloured." msgstr "" -#: gnu/packages/tex.scm:5432 +#: gnu/packages/tex.scm:5735 msgid "" "This package provides variants of @code{\\fbox}: @code{\\shadowbox},\n" "@code{\\doublebox}, @code{\\ovalbox}, @code{\\Ovalbox}, with helpful tools for\n" @@ -17878,14 +18092,14 @@ msgid "" "floats, center, flushleft, and flushright, lists, and pages." msgstr "" -#: gnu/packages/tex.scm:5467 +#: gnu/packages/tex.scm:5770 msgid "" "The package provides extensive facilities, both for constructing headers\n" "and footers, and for controlling their use (for example, at times when LaTeX\n" "would automatically change the heading style in use)." msgstr "" -#: gnu/packages/tex.scm:5488 +#: gnu/packages/tex.scm:5791 msgid "" "This package improves the interface for defining floating objects such\n" "as figures and tables. It introduces the boxed float, the ruled float and the\n" @@ -17895,7 +18109,7 @@ msgid "" "with @code{\\floatplacement{figure}{H}}." msgstr "" -#: gnu/packages/tex.scm:5512 +#: gnu/packages/tex.scm:5815 msgid "" "This is a collection of ways to change the typesetting of footnotes.\n" "The package provides means of changing the layout of the footnotes themselves,\n" @@ -17905,7 +18119,7 @@ msgid "" "footnotes with symbols rather than numbers." msgstr "" -#: gnu/packages/tex.scm:5532 +#: gnu/packages/tex.scm:5835 msgid "" "TeX’s @code{\\let} assignment does not work for LaTeX macros with\n" "optional arguments, or for macros that are defined as robust macros by\n" @@ -17913,7 +18127,7 @@ msgid "" "that also takes care of the involved internal macros." msgstr "" -#: gnu/packages/tex.scm:5556 +#: gnu/packages/tex.scm:5859 msgid "" "The package enables the user to typeset programs (programming code)\n" "within LaTeX; the source code is read directly by TeX---no front-end processor\n" @@ -17921,7 +18135,7 @@ msgid "" "styles. Support for @code{hyperref} is provided." msgstr "" -#: gnu/packages/tex.scm:5591 +#: gnu/packages/tex.scm:5894 msgid "" "This package provides miscellaneous macros by Joerg Knappen, including:\n" "represent counters in greek; Maxwell's non-commutative division;\n" @@ -17933,13 +18147,13 @@ msgid "" "in SGML; use maths minus in text as appropriate; simple Young tableaux." msgstr "" -#: gnu/packages/tex.scm:5615 +#: gnu/packages/tex.scm:5918 msgid "" "This package provides facilities for using key-value format in\n" "package options." msgstr "" -#: gnu/packages/tex.scm:5684 +#: gnu/packages/tex.scm:5987 msgid "" "The EC fonts are European Computer Modern Fonts, supporting the complete\n" "LaTeX T1 encoding defined at the 1990 TUG conference hold at Cork/Ireland.\n" @@ -17956,7 +18170,7 @@ msgid "" "differs from the EC in a number of particulars." msgstr "" -#: gnu/packages/tex.scm:5717 +#: gnu/packages/tex.scm:6020 msgid "" "This package provides a set of virtual fonts which emulates T1 coded\n" "fonts using the standard CM fonts. The package name, AE fonts, supposedly\n" @@ -17966,7 +18180,7 @@ msgid "" "via the CM-super, Latin Modern and (in a restricted way) CM-LGC font sets." msgstr "" -#: gnu/packages/tex.scm:5742 +#: gnu/packages/tex.scm:6045 msgid "" "Inconsolata is a monospaced font designed by Raph Levien. This package\n" "contains the font (in both Adobe Type 1 and OpenType formats) in regular and\n" @@ -17975,25 +18189,25 @@ msgid "" "TeX, and LaTeX font definition and other relevant files." msgstr "" -#: gnu/packages/tex.scm:5771 +#: gnu/packages/tex.scm:6074 msgid "" "This package provides a drop-in replacements for the Times font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5799 +#: gnu/packages/tex.scm:6102 msgid "" "This package provides a drop-in replacements for the Palatino font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5824 +#: gnu/packages/tex.scm:6127 msgid "" "This package provides a drop-in replacements for the Zapfding font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5896 +#: gnu/packages/tex.scm:6199 msgid "" "The fonts provide uppercase formal script letters for use as symbols in\n" "scientific and mathematical typesetting (in contrast to the informal script\n" @@ -18003,14 +18217,14 @@ msgid "" "one of the packages @code{calrsfs} and @code{mathrsfs}." msgstr "" -#: gnu/packages/tex.scm:5920 +#: gnu/packages/tex.scm:6223 msgid "" "The package adds one or more user commands to LaTeX's @code{shipout}\n" "routine, which may be used to place the output at fixed positions. The\n" "@code{grid} option may be used to find the correct places." msgstr "" -#: gnu/packages/tex.scm:5954 +#: gnu/packages/tex.scm:6257 msgid "" "Extensions to @code{epic} and the LaTeX picture drawing environment,\n" "include the drawing of lines at any slope, the drawing of circles in any\n" @@ -18020,7 +18234,7 @@ msgid "" "@code{\\special} commands." msgstr "" -#: gnu/packages/tex.scm:5991 +#: gnu/packages/tex.scm:6276 msgid "" "This package is intended to ease customizing the three basic list\n" "environments: @code{enumerate}, @code{itemize} and @code{description}. It\n" @@ -18029,14 +18243,14 @@ msgid "" "@code{\\begin{itemize}[itemsep=1ex,leftmargin=1cm]}." msgstr "" -#: gnu/packages/tex.scm:6014 +#: gnu/packages/tex.scm:6301 msgid "" "The package provides tools for creating tabular cells spanning multiple\n" "rows. It has a lot of flexibility, including an option for specifying an\n" "entry at the \"natural\" width of its text." msgstr "" -#: gnu/packages/tex.scm:6048 +#: gnu/packages/tex.scm:6335 msgid "" "The @code{overpic} environment is a cross between the LaTeX\n" "@code{picture} environment and the @code{\\includegraphics} command of\n" @@ -18045,14 +18259,14 @@ msgid "" "positions; a grid for orientation is available." msgstr "" -#: gnu/packages/tex.scm:6084 +#: gnu/packages/tex.scm:6371 msgid "" "Simply changing @code{\\parskip} and @code{\\parindent} leaves a layout\n" "that is untidy; this package (though it is no substitute for a properly\n" "designed class) helps alleviate this untidiness." msgstr "" -#: gnu/packages/tex.scm:6105 +#: gnu/packages/tex.scm:6392 msgid "" "This package simplifies the inclusion of external multi-page PDF\n" "documents in LaTeX documents. Pages may be freely selected and it is possible\n" @@ -18062,7 +18276,7 @@ msgid "" "use this package to insert PostScript files, in addition to PDF files." msgstr "" -#: gnu/packages/tex.scm:6146 +#: gnu/packages/tex.scm:6433 msgid "" "The fonts were originally distributed as Metafont sources only, but\n" "Adobe Type 1 versions are also now available. Macro support is provided for\n" @@ -18071,7 +18285,7 @@ msgid "" "the whole font." msgstr "" -#: gnu/packages/tex.scm:6171 +#: gnu/packages/tex.scm:6458 msgid "" "This (deprecated) package provides support for the manipulation and\n" "reference of small or \"sub\" figures and tables within a single figure or\n" @@ -18084,7 +18298,7 @@ msgid "" "the more recent @code{subcaption} package more satisfactory." msgstr "" -#: gnu/packages/tex.scm:6198 +#: gnu/packages/tex.scm:6485 msgid "" "The package defines a @code{tabular*}-like environment, @code{tabulary},\n" "taking a \"total width\" argument as well as the column specifications. The\n" @@ -18095,7 +18309,7 @@ msgid "" "according to the natural width of the widest cell in the column." msgstr "" -#: gnu/packages/tex.scm:6236 +#: gnu/packages/tex.scm:6523 msgid "" "This package facilitates tables with titles (captions) and notes. The\n" "title and notes are given a width equal to the body of the table (a\n" @@ -18104,7 +18318,7 @@ msgid "" "environment." msgstr "" -#: gnu/packages/tex.scm:6263 +#: gnu/packages/tex.scm:6550 msgid "" "Txfonts supplies virtual text roman fonts using Adobe Times (or URW\n" "NimbusRomNo9L) with some modified and additional text symbols in the OT1, T1,\n" @@ -18120,7 +18334,7 @@ msgid "" "TeX metrics (VF and TFM files) and macros for use with LaTeX." msgstr "" -#: gnu/packages/tex.scm:6312 +#: gnu/packages/tex.scm:6599 msgid "" "Iwona is a two-element sans-serif typeface. It was created\n" "as an alternative version of the Kurier typeface, which was designed in 1975\n" @@ -18131,7 +18345,7 @@ msgid "" "of ink traps which typify the Kurier font." msgstr "" -#: gnu/packages/tex.scm:6335 +#: gnu/packages/tex.scm:6622 msgid "" "This package contains a collection of macros by Jörg Knappen:\n" "@table @code\n" @@ -18167,7 +18381,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/tex.scm:6442 +#: gnu/packages/tex.scm:6729 msgid "" "JadeTeX is a companion package to the OpenJade DSSSL\n" "processor. OpenJade applies a DSSSL stylesheet to an SGML or XML document.\n" @@ -18178,7 +18392,7 @@ msgid "" "command)." msgstr "" -#: gnu/packages/tex.scm:6472 +#: gnu/packages/tex.scm:6759 msgid "" "The package provides the Libertine and Biolinum fonts in both Type 1 and\n" "OTF styles, together with support macros for their use. Monospaced and\n" @@ -18188,7 +18402,7 @@ msgid "" "@code{libertine-legacy} packages." msgstr "" -#: gnu/packages/tex.scm:6504 +#: gnu/packages/tex.scm:6791 msgid "" "The package contains LaTeX support for the DejaVu fonts, which are\n" "derived from the Vera fonts but contain more characters and styles. The fonts\n" @@ -18197,7 +18411,7 @@ msgid "" "LGR. The package doesn't (currently) support mathematics." msgstr "" -#: gnu/packages/tex.scm:6540 +#: gnu/packages/tex.scm:6827 msgid "" "This package provides an interface to sectioning commands for selection\n" "from various title styles, e.g. for marginal titles and to change the font of\n" @@ -18206,7 +18420,7 @@ msgid "" "floats in a page. You may assign headers/footers to individual floats, too." msgstr "" -#: gnu/packages/tex.scm:6563 +#: gnu/packages/tex.scm:6850 msgid "" "LaTeX, by default, restricts the sizes at which you can use its default\n" "computer modern fonts, to a fixed set of discrete sizes (effectively, a set\n" @@ -18221,7 +18435,7 @@ msgid "" "@code{ec} fonts." msgstr "" -#: gnu/packages/tex.scm:6617 +#: gnu/packages/tex.scm:6904 msgid "" "The LH fonts address the problem of the wide variety of alphabets that\n" "are written with Cyrillic-style characters. The fonts are the original basis\n" @@ -18234,7 +18448,7 @@ msgid "" "OT2 encoded fonts, CM bright shaped fonts and Concrete shaped fonts." msgstr "" -#: gnu/packages/tex.scm:6647 +#: gnu/packages/tex.scm:6934 msgid "" "The Martin Vogel’s Symbols fonts (marvosym) contains the\n" "Euro currency symbol as defined by the European commission, along with symbols\n" @@ -18244,34 +18458,41 @@ msgid "" "the derived Type 1 font, together with support files for TeX (LaTeX)." msgstr "" -#: gnu/packages/tex.scm:6685 +#: gnu/packages/tex.scm:6972 msgid "" "MetaPost uses a language based on that of Metafont to produce precise\n" "technical illustrations. Its output is scalable PostScript or SVG, rather\n" "than the bitmaps Metafont creates." msgstr "" -#: gnu/packages/tex.scm:6706 +#: gnu/packages/tex.scm:6993 msgid "" "This package provides a class for typesetting publications of the\n" "Association for Computing Machinery (ACM)." msgstr "" -#: gnu/packages/tex.scm:6739 +#: gnu/packages/tex.scm:7026 msgid "" "The @code{varwidth} environment is superficially similar to\n" "@code{minipage}, but the specified width is just a maximum value — the box may\n" "get a narrower “natural” width." msgstr "" -#: gnu/packages/tex.scm:6757 +#: gnu/packages/tex.scm:7041 +msgid "" +"The varwidth environment is superficially similar to minipage, but the\n" +"specified width is just a maximum value --- the box may get a narrower natural\n" +"width." +msgstr "" + +#: gnu/packages/tex.scm:7059 msgid "" "This package provides the @code{wasy} (Waldi symbol) fonts,\n" "in the Metafont and Adobe Type 1 formats. Support under LaTeX is provided by\n" "the @code{wasysym} package." msgstr "" -#: gnu/packages/tex.scm:6778 +#: gnu/packages/tex.scm:7080 msgid "" "The @code{wasy} (Waldi Symbol) font by Roland Waldi provides many glyphs like\n" "male and female symbols and astronomical symbols, as well as the complete\n" @@ -18279,14 +18500,14 @@ msgid "" "implements an easy to use interface for these symbols." msgstr "" -#: gnu/packages/tex.scm:6815 +#: gnu/packages/tex.scm:7117 msgid "" "This package allows figures or tables to have text wrapped around them.\n" "It does not work in combination with list environments, but can be used in a\n" "@code{parbox} or @code{minipage}, and in two-column format." msgstr "" -#: gnu/packages/tex.scm:6849 +#: gnu/packages/tex.scm:7151 msgid "" "The bundle provides the @code{ucs} package, and @code{utf8x.def},\n" "together with a large number of support files. The @code{utf8x.def}\n" @@ -18299,7 +18520,7 @@ msgid "" "package of that name now exists." msgstr "" -#: gnu/packages/tex.scm:6883 +#: gnu/packages/tex.scm:7185 msgid "" "The main purpose of the preview package is the extraction of selected\n" "elements from a LaTeX source, like formulas or graphics, into separate\n" @@ -18310,7 +18531,7 @@ msgid "" "files." msgstr "" -#: gnu/packages/tex.scm:6908 +#: gnu/packages/tex.scm:7210 msgid "" "This package ensures that all acronyms used in the text are spelled out\n" "in full at least once. It also provides an environment to build a list of\n" @@ -18319,13 +18540,13 @@ msgid "" "e-TeX." msgstr "" -#: gnu/packages/tex.scm:6945 +#: gnu/packages/tex.scm:7247 msgid "" "This package provides an extension of TeX which can be configured to\n" "directly generate PDF documents instead of DVI." msgstr "" -#: gnu/packages/tex.scm:7025 +#: gnu/packages/tex.scm:7327 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18335,7 +18556,7 @@ msgid "" "This package contains the complete tree of texmf-dist data." msgstr "" -#: gnu/packages/tex.scm:7088 +#: gnu/packages/tex.scm:7390 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18345,7 +18566,7 @@ msgid "" "This package contains the complete TeX Live distribution." msgstr "" -#: gnu/packages/tex.scm:7130 +#: gnu/packages/tex.scm:7432 msgid "" "@code{Text::BibTeX} is a Perl library for reading, parsing,\n" "and processing BibTeX files. @code{Text::BibTeX} gives you access to the data\n" @@ -18354,13 +18575,13 @@ msgid "" "values (strings, macros, or numbers) pasted together." msgstr "" -#: gnu/packages/tex.scm:7216 +#: gnu/packages/tex.scm:7518 msgid "" "Biber is a BibTeX replacement for users of biblatex. Among\n" "other things it comes with full Unicode support." msgstr "" -#: gnu/packages/tex.scm:7250 +#: gnu/packages/tex.scm:7552 msgid "" "Rubber is a program whose purpose is to handle all tasks related to the\n" "compilation of LaTeX documents. This includes compiling the document itself,\n" @@ -18370,20 +18591,20 @@ msgid "" "PDF documents." msgstr "" -#: gnu/packages/tex.scm:7289 +#: gnu/packages/tex.scm:7591 msgid "" "Texmaker is a program that integrates many tools needed to\n" "develop documents with LaTeX, in a single application." msgstr "" -#: gnu/packages/tex.scm:7330 +#: gnu/packages/tex.scm:7632 msgid "" "@i{TeX for the Impatient} is a ~350 page book on TeX,\n" "plain TeX, and Eplain, originally written by Paul Abrahams, Kathryn Hargreaves,\n" "and Karl Berry." msgstr "" -#: gnu/packages/tex.scm:7394 +#: gnu/packages/tex.scm:7696 msgid "" "LyX is a document preparation system. It excels at letting\n" "you create complex technical and scientific articles with mathematics,\n" @@ -18392,7 +18613,7 @@ msgid "" "required: automatic sectioning and pagination, spell checking and so forth." msgstr "" -#: gnu/packages/tex.scm:7430 +#: gnu/packages/tex.scm:7732 msgid "" "The package provides an interface to embed interactive Flash (SWF) and 3D\n" "objects (Adobe U3D & PRC), as well as video and sound files or streams in the\n" @@ -18405,7 +18626,7 @@ msgid "" "specification. It replaces the now obsolete @code{movie15} package." msgstr "" -#: gnu/packages/tex.scm:7470 +#: gnu/packages/tex.scm:7772 msgid "" "This package provides OCG (Optional Content Groups) support within a PDF\n" "document.\n" @@ -18423,7 +18644,7 @@ msgid "" "It also ensures compatibility with the @code{media9} and @code{animate} packages." msgstr "" -#: gnu/packages/tex.scm:7504 +#: gnu/packages/tex.scm:7806 msgid "" "A bundle of LATEX packages by Martin Schröder; the collection comprises:\n" "\n" @@ -18437,7 +18658,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/tex.scm:7532 +#: gnu/packages/tex.scm:7852 msgid "" "The package numprint prints numbers with a separator every three\n" "digits and converts numbers given as 12345.6e789 to 12\\,345,6\\cdot\n" @@ -18458,14 +18679,14 @@ msgid "" "and after the formatted number." msgstr "" -#: gnu/packages/tex.scm:7571 +#: gnu/packages/tex.scm:7893 msgid "" "Provides commands to disable pagebreaking within a given vertical\n" "space. If there is not enough space between the command and the bottom of the\n" "page, a new page will be started." msgstr "" -#: gnu/packages/tex.scm:7597 +#: gnu/packages/tex.scm:7919 msgid "" "The package provides commands to change the page layout in the middle of\n" "a document, and to robustly check for typesetting on odd or even pages.\n" @@ -18473,7 +18694,7 @@ msgid "" "of code from the @code{memoir} class, whose user interface it shares." msgstr "" -#: gnu/packages/tex.scm:7633 +#: gnu/packages/tex.scm:7955 msgid "" "The package is used to change the format of @code{\\today}’s date,\n" "including the weekday, e.g., \"Saturday, 26 June 2008\", the 'UK format', which\n" @@ -18481,7 +18702,7 @@ msgid "" "@code{\\maketitle} of the article class, \"June 26, 2008\", the 'US format'." msgstr "" -#: gnu/packages/tex.scm:7669 +#: gnu/packages/tex.scm:7971 msgid "" "The package provides an @code{\\ul} (underline) command which will break\n" "over line ends; this technique may be used to replace @code{\\em} (both in that\n" @@ -18490,7 +18711,7 @@ msgid "" "striking out (line through words) and crossing out (/// over words)." msgstr "" -#: gnu/packages/tex.scm:7725 +#: gnu/packages/tex.scm:8029 msgid "" "PGF is a macro package for creating graphics. It is platform- and\n" "format-independent and works together with the most important TeX backend\n" @@ -18502,7 +18723,7 @@ msgid "" "produce either PostScript or PDF output." msgstr "" -#: gnu/packages/tex.scm:7771 +#: gnu/packages/tex.scm:8075 msgid "" "The KOMA-Script bundle provides replacements for the article, report, and\n" "book classes with emphasis on typography and versatility. There is also a\n" @@ -18527,7 +18748,7 @@ msgid "" "typearea (which are the main parts of the bundle)." msgstr "" -#: gnu/packages/tex.scm:7806 +#: gnu/packages/tex.scm:8110 msgid "" "This package is a modern reimplementation of package @code{everyshi},\n" "providing various commands to be executed before a @code{\\shipout} command.\n" @@ -18535,20 +18756,20 @@ msgid "" "be used either with LaTeX or with plain TeX." msgstr "" -#: gnu/packages/tex.scm:7826 +#: gnu/packages/tex.scm:8130 msgid "" "This package provides expandable arithmetic operations with big\n" "integers that can exceed TeX's number limits." msgstr "" -#: gnu/packages/tex.scm:7845 +#: gnu/packages/tex.scm:8149 msgid "" "This package defines and implements the data type bit set, a vector\n" "of bits. The size of the vector may grow dynamically. Individual bits\n" "can be manipulated." msgstr "" -#: gnu/packages/tex.scm:7864 +#: gnu/packages/tex.scm:8168 msgid "" "New primitive commands are introduced in e-TeX; sometimes the names\n" "collide with existing macros. This package solves the name clashes by\n" @@ -18556,14 +18777,14 @@ msgid "" "@code{\\unexpanded} is provided as @code{\\etex@@unexpanded}." msgstr "" -#: gnu/packages/tex.scm:7882 +#: gnu/packages/tex.scm:8186 msgid "" "This package provides commands for cleaning up the title string\n" "(such as removing @code{\\label} commands) for packages that typeset such\n" "strings." msgstr "" -#: gnu/packages/tex.scm:7898 +#: gnu/packages/tex.scm:8202 msgid "" "This package provides a complete set of macros for information,\n" "warning and error messages. Under LaTeX, the commands are wrappers for\n" @@ -18571,19 +18792,19 @@ msgid "" "complete implementations." msgstr "" -#: gnu/packages/tex.scm:7915 +#: gnu/packages/tex.scm:8219 msgid "" "This package provides expandable arithmetic operations with integers,\n" "using the e-TeX extension @code{\\numexpr} if it is available." msgstr "" -#: gnu/packages/tex.scm:7930 +#: gnu/packages/tex.scm:8234 msgid "" "This package provides the @code{\\kv@@define@@key} (analogous to\n" "keyval’s @code{\\define@@key}, to define keys for use by @code{kvsetkeys}." msgstr "" -#: gnu/packages/tex.scm:7945 +#: gnu/packages/tex.scm:8249 msgid "" "This package provides @code{\\kvsetkeys}, a variant of @code{\\setkeys}\n" "from the @code{keyval} package. Users can specify a handler that deals with\n" @@ -18591,35 +18812,35 @@ msgid "" "level of curly braces are removed from the values." msgstr "" -#: gnu/packages/tex.scm:7980 +#: gnu/packages/tex.scm:8284 msgid "" "This package allows one to capture all the items of a list, for which\n" "the parsing character has been selected by the user, and to access any of\n" "these items with a simple syntax." msgstr "" -#: gnu/packages/tex.scm:7996 +#: gnu/packages/tex.scm:8300 msgid "" "This package exports some utility macros from the LaTeX kernel into\n" "a separate namespace and also makes them available for other formats such\n" "as plain TeX." msgstr "" -#: gnu/packages/tex.scm:8012 +#: gnu/packages/tex.scm:8316 msgid "" "This package implements pdfTeX's escape features (@code{\\pdfescapehex},\n" "@code{\\pdfunescapehex}, @code{\\pdfescapename}, @code{\\pdfescapestring})\n" "using TeX or e-TeX." msgstr "" -#: gnu/packages/tex.scm:8031 +#: gnu/packages/tex.scm:8335 msgid "" "This package provides a kind of counter that provides unique number\n" "values. Several counters can be created with different names. The numeric\n" "values are not limited." msgstr "" -#: gnu/packages/tex.scm:8067 +#: gnu/packages/tex.scm:8371 msgid "" "This package allows the user to input formatted data into elements of a\n" "2-D or 3-D array and to recall that data at will by individual cell number.\n" @@ -18627,7 +18848,7 @@ msgid "" "formatted text." msgstr "" -#: gnu/packages/tex.scm:8104 +#: gnu/packages/tex.scm:8408 msgid "" "The package provides a @code{verbbox} environment to place its contents\n" "into a globally available box, or into a box specified by the user. The\n" @@ -18637,7 +18858,7 @@ msgid "" "@code{trivlist}) may not appear." msgstr "" -#: gnu/packages/tex.scm:8141 +#: gnu/packages/tex.scm:8445 msgid "" "Examplep provides sophisticated features for typesetting verbatim source\n" "code listings, including the display of the source code and its compiled LaTeX\n" @@ -18650,7 +18871,7 @@ msgid "" "titles." msgstr "" -#: gnu/packages/tex.scm:8178 +#: gnu/packages/tex.scm:8482 msgid "" "This is a package for typesetting a variety of graphs and\n" "diagrams with TeX. Xy-pic works with most formats (including LaTeX,\n" @@ -18658,7 +18879,7 @@ msgid "" "@code{diag} package, which was previously distributed stand-alone." msgstr "" -#: gnu/packages/tex.scm:8218 +#: gnu/packages/tex.scm:8522 msgid "" "BibTeX allows the user to store his citation data in generic form, while\n" "printing citations in a document in the form specified by a BibTeX style, to\n" @@ -18666,7 +18887,7 @@ msgid "" "package, such as @command{natbib} as well)." msgstr "" -#: gnu/packages/tex.scm:8241 +#: gnu/packages/tex.scm:8545 msgid "" "This package provides a copy of the Charter Type-1 fonts\n" "which Bitstream contributed to the X consortium, renamed for use with TeX.\n" @@ -18674,14 +18895,14 @@ msgid "" "@command{psnfss}." msgstr "" -#: gnu/packages/tex.scm:8337 +#: gnu/packages/tex.scm:8641 msgid "" "ConTeXt is a full featured, parameter driven macro package,\n" "which fully supports advanced interactive documents. See the ConTeXt garden\n" "for a wealth of support information." msgstr "" -#: gnu/packages/tex.scm:8362 +#: gnu/packages/tex.scm:8666 msgid "" "The beamer LaTeX class can be used for producing slides.\n" "The class works in both PostScript and direct PDF output modes, using the\n" @@ -18694,7 +18915,7 @@ msgid "" "effects, varying slide transitions and animations." msgstr "" -#: gnu/packages/tex.scm:8394 +#: gnu/packages/tex.scm:8698 msgid "" "The XMP (eXtensible Metadata platform) is a framework to add metadata to\n" "digital material to enhance the workflow in publication. The essence is that\n" @@ -18702,13 +18923,13 @@ msgid "" "the file to which it applies." msgstr "" -#: gnu/packages/tex.scm:8433 +#: gnu/packages/tex.scm:8737 msgid "" "This package helps LaTeX users to create PDF/X, PDF/A and other\n" "standards-compliant PDF documents with pdfTeX, LuaTeX and XeTeX." msgstr "" -#: gnu/packages/tex.scm:8468 +#: gnu/packages/tex.scm:8772 msgid "" "The package provides macros and environments to document\n" "LaTeX packages and classes. It is an (as yet unfinished) alternative to the\n" @@ -18719,7 +18940,7 @@ msgid "" "change." msgstr "" -#: gnu/packages/tex.scm:8496 +#: gnu/packages/tex.scm:8800 msgid "" "PSTricks offers an extensive collection of macros for\n" "generating PostScript that is usable with most TeX macro formats, including\n" @@ -18730,14 +18951,14 @@ msgid "" "or shading the cells of tables." msgstr "" -#: gnu/packages/tex.scm:8521 +#: gnu/packages/tex.scm:8825 msgid "" "Pst-text is a PSTricks based package for plotting text along\n" "a different path and manipulating characters. It includes the functionality\n" "of the old package @code{pst-char}." msgstr "" -#: gnu/packages/tex.scm:8546 +#: gnu/packages/tex.scm:8850 msgid "" "This package provides the command @code{\\marginnote} that\n" "may be used instead of @code{\\marginpar} at almost every place where\n" @@ -18745,7 +18966,7 @@ msgid "" "frames made with the @code{framed} package." msgstr "" -#: gnu/packages/tex.scm:8564 +#: gnu/packages/tex.scm:8868 msgid "" "This package, which works both for Plain TeX and for\n" "LaTeX, defines the @code{\\ifPDFTeX}, @code{\\ifXeTeX}, and @code{\\ifLuaTeX}\n" @@ -18755,7 +18976,19 @@ msgid "" "LuaTeX (respectively) is not the engine in use." msgstr "" -#: gnu/packages/tex.scm:8597 +#: gnu/packages/tex.scm:8914 +msgid "" +"The package provides an environment, tabu, which will make any sort of\n" +"tabular, and an environment longtabu which provides the facilities of tabu in\n" +"a modified longtable environment. The package requires array, xcolor for\n" +"coloured rules in tables, and colortbl for coloured cells. The longtabu\n" +"environment further requires that longtable be loaded. The package itself\n" +"does not load any of these packages for the user. The tabu environment may be\n" +"used in place of @code{tabular}, @code{tabular*} and @code{tabularx}\n" +"environments, as well as the @code{array} environment in maths mode." +msgstr "" + +#: gnu/packages/tex.scm:8945 msgid "" "This package provides a collection of simple tools that\n" "are part of the LaTeX required tools distribution, comprising the packages:\n" @@ -18767,7 +19000,7 @@ msgid "" "@code{varioref}, @code{verbatim}, @code{xr}, and @code{xspace}." msgstr "" -#: gnu/packages/tex.scm:8678 +#: gnu/packages/tex.scm:9026 msgid "" "This package is an extension of the keyval package and offers additional\n" "macros for setting keys and declaring and setting class or package options.\n" @@ -18777,7 +19010,7 @@ msgid "" "keys." msgstr "" -#: gnu/packages/tex.scm:8706 +#: gnu/packages/tex.scm:9054 msgid "" "A class and package is provided which allows TeX pictures or\n" "other TeX code to be compiled standalone or as part of a main document.\n" @@ -18789,7 +19022,7 @@ msgid "" "@code{standalone.cfg} to redefine the standalone environment." msgstr "" -#: gnu/packages/tex.scm:8739 +#: gnu/packages/tex.scm:9087 msgid "" "Typesetting values with units requires care to ensure that the combined\n" "mathematical meaning of the value plus unit combination is clear. In\n" @@ -18805,7 +19038,7 @@ msgid "" "package to handle all of the possible unit-related needs of LaTeX users." msgstr "" -#: gnu/packages/tex.scm:8770 +#: gnu/packages/tex.scm:9118 msgid "" "This package enhances the quality of tables in LaTeX, providing extra\n" "commands as well as behind-the-scenes optimisation. Guidelines are given as\n" @@ -18813,7 +19046,7 @@ msgid "" "@code{longtable} compatibility." msgstr "" -#: gnu/packages/tex.scm:8790 +#: gnu/packages/tex.scm:9138 msgid "" "This package provides advanced facilities for inline and\n" "display quotations. It is designed for a wide range of tasks ranging from the\n" @@ -18827,7 +19060,7 @@ msgid "" "styles as well as the optional active quotes are freely configurable." msgstr "" -#: gnu/packages/tex.scm:8816 +#: gnu/packages/tex.scm:9164 msgid "" "The package helps to automate a typical LaTeX\n" "workflow that involves running LaTeX several times and running tools\n" @@ -18847,7 +19080,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8848 +#: gnu/packages/tex.scm:9196 msgid "" "BibLaTeX is a complete reimplementation of the\n" "bibliographic facilities provided by LaTeX. Formatting of the\n" @@ -18873,7 +19106,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8886 +#: gnu/packages/tex.scm:9234 msgid "" "The @code{todonotes} package lets the user mark\n" "things to do later, in a simple and visually appealing way. The\n" @@ -18881,7 +19114,7 @@ msgid "" "of the visual appearance." msgstr "" -#: gnu/packages/tex.scm:8904 +#: gnu/packages/tex.scm:9252 msgid "" "@code{units} is a package for typesetting physical\n" "units in a standard-looking way. The package is based upon\n" @@ -18889,7 +19122,7 @@ msgid "" "included in the @code{units} bundle." msgstr "" -#: gnu/packages/tex.scm:8922 +#: gnu/packages/tex.scm:9270 msgid "" "@code{microtype} provides a LaTeX interface to the\n" "micro-typographic extensions that were introduced by pdfTeX and have\n" @@ -18904,7 +19137,7 @@ msgid "" "the bundle." msgstr "" -#: gnu/packages/tex.scm:8947 +#: gnu/packages/tex.scm:9295 msgid "" "The @code{caption} package provides many ways to\n" "customise the captions in floating environments like figure and table.\n" @@ -18918,13 +19151,13 @@ msgid "" "@code{subcaption} and @code{totalcount} are included in the bundle." msgstr "" -#: gnu/packages/tex.scm:8976 +#: gnu/packages/tex.scm:9324 msgid "" "This package provides a drop-in replacement for the\n" "Symbol font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:8994 +#: gnu/packages/tex.scm:9342 msgid "" "The Pazo Math fonts are a family of PostScript fonts\n" "suitable for typesetting mathematics in combination with the Palatino\n" @@ -18938,7 +19171,7 @@ msgid "" "LaTeX macro support is provided in package @code{psnfss}." msgstr "" -#: gnu/packages/tex.scm:9019 +#: gnu/packages/tex.scm:9367 msgid "" "The FPL Fonts provide a set of SC/OsF fonts for URW\n" "Palladio L which are compatible with the Palatino SC/OsF fonts from\n" @@ -18946,7 +19179,7 @@ msgid "" "the @code{psnfss} distribution." msgstr "" -#: gnu/packages/tex.scm:9043 +#: gnu/packages/tex.scm:9391 msgid "" "The @code{arev} package provides type 1 fonts,\n" "virtual fonts and LaTeX packages for using Arev Sans in both text and\n" @@ -18960,7 +19193,7 @@ msgid "" "support packages. Others are cmbright, hvmath and kerkis." msgstr "" -#: gnu/packages/tex.scm:9074 +#: gnu/packages/tex.scm:9422 msgid "" "The Math Design project offers free mathematical\n" "fonts that match with existing text fonts. To date, three free font\n" @@ -18971,7 +19204,7 @@ msgid "" "created by the Greek Font Society)." msgstr "" -#: gnu/packages/tex.scm:9099 +#: gnu/packages/tex.scm:9447 msgid "" "The @code{bera} package contains the Bera Type 1\n" "fonts and files to use the fonts with LaTeX. Bera is a set of three\n" @@ -18980,7 +19213,7 @@ msgid "" "a repackaging, for use with TeX, of the Bitstream Vera family." msgstr "" -#: gnu/packages/tex.scm:9122 +#: gnu/packages/tex.scm:9470 msgid "" "Fourier-GUTenberg is a LaTeX typesetting system\n" "which uses Adobe Utopia as its standard base font. Fourier-GUTenberg\n" @@ -18991,7 +19224,7 @@ msgid "" "trademark of Adobe Systems Incorporated." msgstr "" -#: gnu/packages/tex.scm:9145 +#: gnu/packages/tex.scm:9493 msgid "" "The Adobe Standard Encoding set of the Utopia font\n" "family, as contributed to the X Consortium. The set comprises upright\n" @@ -19000,7 +19233,7 @@ msgid "" "@code{mathdesign} font packages." msgstr "" -#: gnu/packages/tex.scm:9169 +#: gnu/packages/tex.scm:9517 msgid "" "The @code{fontaxes} package adds several new font\n" "axes on top of LaTeX's New Font Selection Scheme (NFSS). In\n" @@ -19009,7 +19242,7 @@ msgid "" "figure versions offered by many professional fonts." msgstr "" -#: gnu/packages/tex.scm:9192 +#: gnu/packages/tex.scm:9540 msgid "" "The bundle comprises: @code{authblk}, which permits\n" "footnote style author/affiliation input in the @command{\\author} command,\n" @@ -19019,7 +19252,7 @@ msgid "" "@code{sublabel}, which permits counters to be subnumbered." msgstr "" -#: gnu/packages/tex.scm:9211 +#: gnu/packages/tex.scm:9559 msgid "" "Many font families available for use with LaTeX are\n" "available at multiple weights. Many Type 1-oriented support packages\n" @@ -19030,7 +19263,7 @@ msgid "" "@code{mweights} package provides a solution to these difficulties." msgstr "" -#: gnu/packages/tex.scm:9237 +#: gnu/packages/tex.scm:9585 msgid "" "Cabin is a humanist sans with four weights, true\n" "italics and small capitals. According to its designer, Pablo\n" @@ -19044,7 +19277,7 @@ msgid "" "use with [pdf]LaTeX." msgstr "" -#: gnu/packages/tex.scm:9268 +#: gnu/packages/tex.scm:9616 msgid "" "The @code{newtx} bundle splits\n" "@code{txfonts.sty} (from the TX fonts distribution) into two\n" @@ -19056,7 +19289,7 @@ msgid "" "mathematics package that matches Libertine text quite well." msgstr "" -#: gnu/packages/tex.scm:9296 +#: gnu/packages/tex.scm:9644 msgid "" "@code{xcharter} repackages Bitstream Charter with an\n" "extended set of features. The extension provides small caps, oldstyle\n" @@ -19065,7 +19298,7 @@ msgid "" "Type 1 and OTF formats, with supporting files as necessary." msgstr "" -#: gnu/packages/tex.scm:9320 +#: gnu/packages/tex.scm:9668 msgid "" "The legacy @emph{texnansi} (TeX and ANSI) encoding\n" "is known in the LaTeX scheme of things as @emph{LY1} encoding. The\n" @@ -19074,14 +19307,14 @@ msgid "" "LY1 encoding." msgstr "" -#: gnu/packages/tex.scm:9349 +#: gnu/packages/tex.scm:9697 msgid "" "This is a LaTeX2ε package to help change the style of any or\n" "all of LaTeX's sectional headers in the article, book, or report classes.\n" "Examples include the addition of rules above or below a section title." msgstr "" -#: gnu/packages/tex.scm:9375 +#: gnu/packages/tex.scm:9723 msgid "" "LaTeX can, by default, only cope with 18 outstanding floats;\n" "any more, and you get the error “too many unprocessed floats”. This package\n" @@ -19092,19 +19325,19 @@ msgid "" "floats merely delays the arrival of the inevitable error message." msgstr "" -#: gnu/packages/tex.scm:9408 +#: gnu/packages/tex.scm:9756 msgid "" "This package provides a command for the LaTeX programmer for\n" "testing whether an argument is empty." msgstr "" -#: gnu/packages/tex.scm:9435 +#: gnu/packages/tex.scm:9783 msgid "" "The pagenote package provides tagged notes on a separate\n" "page (also known as ‘end notes’)." msgstr "" -#: gnu/packages/tex.scm:9463 +#: gnu/packages/tex.scm:9811 msgid "" "The @code{titling} package provides control over the\n" "typesetting of the @code{\\maketitle} command and @code{\\thanks} commands,\n" @@ -19114,7 +19347,7 @@ msgid "" "a physical page." msgstr "" -#: gnu/packages/tex.scm:9493 +#: gnu/packages/tex.scm:9841 msgid "" "This package provides an @code{\\ifoddpage} conditional to\n" "determine if the current page is odd or even. The macro @code{\\checkoddpage}\n" @@ -19124,7 +19357,7 @@ msgid "" "@code{oneside} mode where all pages use the odd page layout." msgstr "" -#: gnu/packages/tex.scm:9523 +#: gnu/packages/tex.scm:9871 msgid "" "The package provides \"store boxes\" whose user interface\n" "matches that of normal LaTeX \"save boxes\", except that the content of a\n" @@ -19133,7 +19366,7 @@ msgid "" "DVI is output, store boxes behave the same as save boxes." msgstr "" -#: gnu/packages/tex.scm:9552 +#: gnu/packages/tex.scm:9900 msgid "" "The package provides macros to collect and process a macro\n" "argument (i.e., something which looks like a macro argument) as a horizontal\n" @@ -19146,13 +19379,13 @@ msgid "" "The macros were designed for use within other macros." msgstr "" -#: gnu/packages/tex.scm:9584 +#: gnu/packages/tex.scm:9932 msgid "" "This package provides macros for adding to, and reordering\n" "the list of graphics file extensions recognised by package graphics." msgstr "" -#: gnu/packages/tex.scm:9618 +#: gnu/packages/tex.scm:9966 msgid "" "The package provides several macros to adjust boxed\n" "content. One purpose is to supplement the standard @code{graphics} package,\n" @@ -19165,7 +19398,7 @@ msgid "" "@code{\\minsizebox}, @code{\\maxsizebox} and @code{\\phantombox}." msgstr "" -#: gnu/packages/tex.scm:9644 +#: gnu/packages/tex.scm:9992 msgid "" "This package provides an environment for colored and\n" "framed text boxes with a heading line. Optionally, such a box may be split in\n" @@ -19176,7 +19409,7 @@ msgid "" "parts." msgstr "" -#: gnu/packages/tex.scm:9675 +#: gnu/packages/tex.scm:10023 msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems. The commands allow for writing\n" @@ -19185,13 +19418,13 @@ msgid "" "styles of inference rules, placement of labels, etc." msgstr "" -#: gnu/packages/tex.scm:9704 +#: gnu/packages/tex.scm:10052 msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems." msgstr "" -#: gnu/packages/tex.scm:9724 +#: gnu/packages/tex.scm:10072 msgid "" "This package provides the European currency symbol for the\n" "Euro implemented in METAFONT, using the official European Commission\n" @@ -19200,7 +19433,7 @@ msgid "" "pre-compiled font files, and documentation." msgstr "" -#: gnu/packages/tex.scm:9754 +#: gnu/packages/tex.scm:10102 msgid "" "The @code{kastrup} package provides the\n" "@emph{binhex.tex} file. This file provides expandable macros for both\n" @@ -19210,7 +19443,7 @@ msgid "" "LaTeX and plain TeX." msgstr "" -#: gnu/packages/tex.scm:9774 +#: gnu/packages/tex.scm:10122 msgid "" "This LaTeX package provides a flexible mechanism for translating\n" "individual words into different languages. For example, it can be used to\n" @@ -19221,7 +19454,7 @@ msgid "" "automatically translate more than a few words." msgstr "" -#: gnu/packages/tex.scm:9795 +#: gnu/packages/tex.scm:10143 msgid "" "This package facilitates placing boxes at absolute positions on the\n" "LaTeX page. There are several reasons why this might be useful, but the main\n" @@ -19234,7 +19467,7 @@ msgid "" "accompanied by various configuration commands." msgstr "" -#: gnu/packages/tex.scm:9819 +#: gnu/packages/tex.scm:10167 msgid "" "This package extends the @code{ifthen} package by implementing new\n" "commands to go within the first argument of @code{\\\\ifthenelse}: to test\n" @@ -19244,14 +19477,14 @@ msgid "" "handle complex tests." msgstr "" -#: gnu/packages/tex.scm:9852 +#: gnu/packages/tex.scm:10200 msgid "" "BibTool manipulates BibTeX files. The possibilities of BibTool include\n" "sorting and merging of BibTeX databases, generation of uniform reference keys,\n" "and selecting references used in a publication." msgstr "" -#: gnu/packages/texinfo.scm:87 +#: gnu/packages/texinfo.scm:88 msgid "" "Texinfo is the official documentation format of the GNU project. It\n" "uses a single source file using explicit commands to produce a final document\n" @@ -19261,7 +19494,7 @@ msgid "" "is on expressing the content semantically, avoiding physical markup commands." msgstr "" -#: gnu/packages/texinfo.scm:216 +#: gnu/packages/texinfo.scm:230 msgid "" "Texi2HTML is a Perl script which converts Texinfo source files to HTML\n" "output. It now supports many advanced features, such as internationalization\n" @@ -19276,7 +19509,7 @@ msgid "" "Texi2HTML." msgstr "" -#: gnu/packages/texinfo.scm:283 +#: gnu/packages/texinfo.scm:297 msgid "" "Pinfo is an Info file viewer. Pinfo is similar in use to the Lynx web\n" "browser. You just move across info nodes, and select links, follow them, etc.\n" @@ -19635,6 +19868,12 @@ msgstr "" #: gnu/packages/textutils.scm:1406 msgid "" +"@code{utf-8-lineseparator} provides a tool to efficiently check text\n" +"files for valid UTF-8 use and to report which line endings they use." +msgstr "" + +#: gnu/packages/textutils.scm:1439 +msgid "" "@code{csvdiff} is a diff tool to compute changes between two\n" "CSV files. It can compare CSV files with a million records in under 2\n" "seconds. It is specifically suited for comparing CSV files dumped from\n" @@ -19836,27 +20075,27 @@ msgid "" "visualize your public Git repositories on a web interface." msgstr "" -#: gnu/packages/version-control.scm:1706 +#: gnu/packages/version-control.scm:1699 msgid "" "Pre-commit is a multi-language package manager for pre-commit hooks. You\n" "specify a list of hooks you want and pre-commit manages the installation and\n" "execution of any hook written in any language before every commit." msgstr "" -#: gnu/packages/version-control.scm:1796 +#: gnu/packages/version-control.scm:1789 msgid "" "Mercurial is a free, distributed source control management tool. It\n" "efficiently handles projects of any size and offers an easy and intuitive\n" "interface." msgstr "" -#: gnu/packages/version-control.scm:1823 +#: gnu/packages/version-control.scm:1816 msgid "" "Evolve is a Mercurial extension for faster and safer mutable\n" "history. It implements the changeset evolution concept for Mercurial." msgstr "" -#: gnu/packages/version-control.scm:1879 +#: gnu/packages/version-control.scm:1872 msgid "" "This package provides a Mercurial extension for signing\n" "the changeset hash of commits. The signure is embedded directly in the\n" @@ -19864,7 +20103,7 @@ msgid "" "can be used for signing." msgstr "" -#: gnu/packages/version-control.scm:1914 +#: gnu/packages/version-control.scm:1907 msgid "" "Neon is an HTTP and WebDAV client library, with a C interface and the\n" "following features:\n" @@ -19886,7 +20125,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/version-control.scm:2010 +#: gnu/packages/version-control.scm:2003 msgid "" "@dfn{Subversion} (svn) exists to be recognized and adopted as a\n" "centralized version control system characterized by its\n" @@ -19895,7 +20134,7 @@ msgid "" "projects, from individuals to large-scale enterprise operations." msgstr "" -#: gnu/packages/version-control.scm:2044 +#: gnu/packages/version-control.scm:2037 msgid "" "RCS is the original Revision Control System. It works on a\n" "file-by-file basis, in contrast to subsequent version control systems such as\n" @@ -19904,21 +20143,21 @@ msgid "" "machine." msgstr "" -#: gnu/packages/version-control.scm:2067 +#: gnu/packages/version-control.scm:2060 msgid "" "@code{blame} outputs an annotated revision from each RCS file. An\n" "annotated RCS file describes the revision and date in which each line was\n" "added to the file, and the author of each line." msgstr "" -#: gnu/packages/version-control.scm:2088 +#: gnu/packages/version-control.scm:2081 msgid "" "The @code{rcshist} utility displays the complete revision history of a\n" "set of RCS files including log messages and patches. It can also display the\n" "patch associated with a particular revision of an RCS file." msgstr "" -#: gnu/packages/version-control.scm:2116 +#: gnu/packages/version-control.scm:2109 msgid "" "CVS is a version control system, an important component of Source\n" "Configuration Management (SCM). Using it, you can record the history of\n" @@ -19926,7 +20165,7 @@ msgid "" "RCS, PRCS, and Aegis packages." msgstr "" -#: gnu/packages/version-control.scm:2150 +#: gnu/packages/version-control.scm:2143 msgid "" "This program analyzes a collection of RCS files in a CVS\n" "repository (or outside of one) and, when possible, emits an equivalent history\n" @@ -19939,7 +20178,7 @@ msgid "" "masters from remote CVS hosts." msgstr "" -#: gnu/packages/version-control.scm:2180 +#: gnu/packages/version-control.scm:2173 msgid "" "The vc-dwim package contains two tools, \"vc-dwim\" and \"vc-chlog\".\n" "vc-dwim is a tool that simplifies the task of maintaining a ChangeLog and\n" @@ -19949,21 +20188,21 @@ msgid "" "standards-compliant ChangeLog entries based on the changes that it detects." msgstr "" -#: gnu/packages/version-control.scm:2207 +#: gnu/packages/version-control.scm:2200 msgid "" "Diffstat reads the output of @command{diff} and displays a histogram of\n" "the insertions, deletions, and modifications per file. It is useful for\n" "reviewing large, complex patch files." msgstr "" -#: gnu/packages/version-control.scm:2246 +#: gnu/packages/version-control.scm:2239 msgid "" "GNU CSSC provides a replacement for the legacy Unix source\n" "code control system SCCS. This allows old code still under that system to be\n" "accessed and migrated on modern systems." msgstr "" -#: gnu/packages/version-control.scm:2338 +#: gnu/packages/version-control.scm:2331 msgid "" "Aegis is a project change supervisor, and performs some of\n" "the Software Configuration Management needed in a CASE environment. Aegis\n" @@ -19974,7 +20213,7 @@ msgid "" "any project with more than one developer, is one of Aegis's major functions." msgstr "" -#: gnu/packages/version-control.scm:2412 +#: gnu/packages/version-control.scm:2405 msgid "" "Reposurgeon enables risky operations that version-control\n" "systems don't want to let you do, such as editing past comments and metadata\n" @@ -19985,20 +20224,20 @@ msgid "" "from Subversion to any supported Distributed Version Control System (DVCS)." msgstr "" -#: gnu/packages/version-control.scm:2451 +#: gnu/packages/version-control.scm:2444 msgid "" "Tig is an ncurses text user interface for Git, primarily intended as\n" "a history browser. It can also stage hunks for commit, or colorize the\n" "output of the @code{git} command." msgstr "" -#: gnu/packages/version-control.scm:2474 +#: gnu/packages/version-control.scm:2467 msgid "" "Recursively find the newest file in a file tree and print its\n" "modification time." msgstr "" -#: gnu/packages/version-control.scm:2521 +#: gnu/packages/version-control.scm:2514 msgid "" "Myrepos provides the @code{mr} command, which maps an operation (e.g.,\n" "fetching updates) over a collection of version control repositories. It\n" @@ -20006,14 +20245,14 @@ msgid "" "Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity." msgstr "" -#: gnu/packages/version-control.scm:2558 +#: gnu/packages/version-control.scm:2551 msgid "" "Grokmirror enables replicating large git repository\n" "collections efficiently. Mirrors decide to clone and update repositories\n" "based on a manifest file published by servers." msgstr "" -#: gnu/packages/version-control.scm:2588 +#: gnu/packages/version-control.scm:2581 msgid "" "The @code{b4} command is designed to make it easier to participate in\n" "patch-based workflows for projects that have public-inbox archives.\n" @@ -20027,26 +20266,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/version-control.scm:2635 +#: gnu/packages/version-control.scm:2628 msgid "" "This wrapper around rclone makes any destination supported\n" "by rclone usable with git-annex." msgstr "" -#: gnu/packages/version-control.scm:2689 +#: gnu/packages/version-control.scm:2682 msgid "" "Fossil is a distributed source control management system which supports\n" "access and administration over HTTP CGI or via a built-in HTTP server. It has\n" "a built-in wiki, built-in file browsing, built-in tickets system, etc." msgstr "" -#: gnu/packages/version-control.scm:2720 +#: gnu/packages/version-control.scm:2713 msgid "" "Stagit creates static pages for git repositories, the results can\n" "be served with a HTTP file server of your choice." msgstr "" -#: gnu/packages/version-control.scm:2756 +#: gnu/packages/version-control.scm:2749 msgid "" "@code{gource} provides a software version control\n" "visualization. The repository is displayed as a tree where the root of the\n" @@ -20055,7 +20294,7 @@ msgid "" "specific files and directories." msgstr "" -#: gnu/packages/version-control.scm:2804 +#: gnu/packages/version-control.scm:2797 #, scheme-format msgid "" "SRC (or src) is simple revision control, a version-control system for\n" @@ -20065,7 +20304,7 @@ msgid "" "directory full of HOWTOs." msgstr "" -#: gnu/packages/version-control.scm:2856 +#: gnu/packages/version-control.scm:2849 msgid "" "This Git extension defines a subcommand,\n" "@code{when-merged}, whose core operation is to find the merge that brought a\n" @@ -20073,7 +20312,7 @@ msgid "" "how information about the merge is displayed." msgstr "" -#: gnu/packages/version-control.scm:2900 +#: gnu/packages/version-control.scm:2893 msgid "" "This Git extension defines a subcommand, @code{imerge},\n" "which performs an incremental merge between two branches. Its two primary\n" @@ -20082,20 +20321,20 @@ msgid "" "interrupted, published, and collaborated on while in progress." msgstr "" -#: gnu/packages/version-control.scm:2951 +#: gnu/packages/version-control.scm:2944 msgid "" "Git Large File Storage (LFS) replaces large files such as audio samples,\n" "videos, datasets, and graphics with text pointers inside Git, while storing the\n" "file contents on a remote server." msgstr "" -#: gnu/packages/version-control.scm:2986 +#: gnu/packages/version-control.scm:2979 msgid "" "@code{git open} opens the repository's website from the command-line,\n" "guessing the URL pattern from the @code{origin} remote." msgstr "" -#: gnu/packages/version-control.scm:3040 +#: gnu/packages/version-control.scm:3033 msgid "" "GNU Arch, aka. @code{tla}, was one of the first free distributed\n" "version-control systems (DVCS). It saw its last release in 2006. This\n" @@ -20103,18 +20342,18 @@ msgid "" "for historians." msgstr "" -#: gnu/packages/version-control.scm:3086 +#: gnu/packages/version-control.scm:3079 msgid "" "@code{diff-so-fancy} strives to make your diffs human readable instead\n" "of machine readable. This helps improve code quality and helps you spot\n" "defects faster." msgstr "" -#: gnu/packages/version-control.scm:3142 +#: gnu/packages/version-control.scm:3135 msgid "This package provides a Git implementation library." msgstr "" -#: gnu/packages/version-control.scm:3192 +#: gnu/packages/version-control.scm:3185 msgid "" "This package provides a command-line tool to manage\n" "multiple Git repos.\n" @@ -20129,7 +20368,7 @@ msgid "" "If several repos are related, it helps to see their status together." msgstr "" -#: gnu/packages/version-control.scm:3250 +#: gnu/packages/version-control.scm:3243 #, scheme-format msgid "" "@code{ghq} provides a way to organize remote repository clones, like\n" @@ -20138,7 +20377,7 @@ msgid "" "using the remote repository URL's host and path." msgstr "" -#: gnu/packages/version-control.scm:3295 +#: gnu/packages/version-control.scm:3288 msgid "" "TkRev (formerly TkCVS) is a Tcl/Tk-based graphical interface to the CVS,\n" "Subversion and Git configuration management systems. It will also help with\n" @@ -20147,7 +20386,7 @@ msgid "" "TkDiff is included for browsing and merging your changes." msgstr "" -#: gnu/packages/version-control.scm:3328 +#: gnu/packages/version-control.scm:3321 msgid "" "@command{git filter-repo} is a versatile tool for rewriting history,\n" "which roughly falls into the same space of tool like git filter-branch but\n" @@ -20185,7 +20424,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:865 +#: gnu/packages/virtualization.scm:870 msgid "" "Ganeti is a virtual machine management tool built on top of existing\n" "virtualization technologies such as Xen or KVM. Ganeti controls:\n" @@ -20202,19 +20441,19 @@ msgid "" "commodity hardware." msgstr "" -#: gnu/packages/virtualization.scm:902 +#: gnu/packages/virtualization.scm:907 msgid "" "This package provides a guest OS definition for Ganeti that uses\n" "Guix to build virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:996 +#: gnu/packages/virtualization.scm:1001 msgid "" "This package provides a guest OS definition for Ganeti. It installs\n" "Debian or a derivative using @command{debootstrap}." msgstr "" -#: gnu/packages/virtualization.scm:1056 +#: gnu/packages/virtualization.scm:1061 msgid "" "libosinfo is a GObject based library API for managing\n" "information about operating systems, hypervisors and the (virtual) hardware\n" @@ -20224,21 +20463,21 @@ msgid "" "all common programming languages. Vala bindings are also provided." msgstr "" -#: gnu/packages/virtualization.scm:1105 +#: gnu/packages/virtualization.scm:1109 msgid "" "LXC is a userspace interface for the Linux kernel containment features.\n" "Through a powerful API and simple tools, it lets Linux users easily create and\n" "manage system or application containers." msgstr "" -#: gnu/packages/virtualization.scm:1131 +#: gnu/packages/virtualization.scm:1135 msgid "" "LXCFS is a small FUSE file system written with the intention\n" "of making Linux containers feel more like a virtual machine.\n" "It started as a side project of LXC but can be used by any run-time." msgstr "" -#: gnu/packages/virtualization.scm:1239 +#: gnu/packages/virtualization.scm:1237 msgid "" "LXD is a next generation system container manager. It\n" "offers a user experience similar to virtual machines but using Linux\n" @@ -20247,7 +20486,7 @@ msgid "" "pretty simple, REST API." msgstr "" -#: gnu/packages/virtualization.scm:1332 +#: gnu/packages/virtualization.scm:1330 msgid "" "Libvirt is a C toolkit to interact with the virtualization\n" "capabilities of recent versions of Linux. The library aims at providing long\n" @@ -20255,7 +20494,7 @@ msgid "" "to integrate other virtualization mechanisms if needed." msgstr "" -#: gnu/packages/virtualization.scm:1363 +#: gnu/packages/virtualization.scm:1359 msgid "" "libvirt-glib wraps the libvirt library to provide a\n" "high-level object-oriented API better suited for glib-based applications, via\n" @@ -20268,13 +20507,13 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/virtualization.scm:1407 +#: gnu/packages/virtualization.scm:1403 msgid "" "This package provides Python bindings to the libvirt\n" "virtualization library." msgstr "" -#: gnu/packages/virtualization.scm:1520 +#: gnu/packages/virtualization.scm:1516 msgid "" "The virt-manager application is a desktop user interface for managing\n" "virtual machines through libvirt. It primarily targets KVM VMs, but also\n" @@ -20282,7 +20521,7 @@ msgid "" "domains, their live performance and resource utilization statistics." msgstr "" -#: gnu/packages/virtualization.scm:1620 +#: gnu/packages/virtualization.scm:1616 msgid "" "Using this tool, you can freeze a running application (or\n" "part of it) and checkpoint it to a hard drive as a collection of files. You\n" @@ -20291,14 +20530,14 @@ msgid "" "mainly implemented in user space." msgstr "" -#: gnu/packages/virtualization.scm:1647 +#: gnu/packages/virtualization.scm:1643 msgid "" "qmpbackup is designed to create and restore full and\n" "incremental backups of running QEMU virtual machines via QMP, the QEMU\n" "Machine Protocol." msgstr "" -#: gnu/packages/virtualization.scm:1731 +#: gnu/packages/virtualization.scm:1727 msgid "" "Looking Glass allows the use of a KVM (Kernel-based Virtual\n" "Machine) configured for VGA PCI Pass-through without an attached physical\n" @@ -20306,7 +20545,7 @@ msgid "" "main monitor/GPU." msgstr "" -#: gnu/packages/virtualization.scm:1783 +#: gnu/packages/virtualization.scm:1779 msgid "" "@command{runc} is a command line client for running applications\n" "packaged according to the\n" @@ -20315,13 +20554,13 @@ msgid "" "Open Container Initiative specification." msgstr "" -#: gnu/packages/virtualization.scm:1832 +#: gnu/packages/virtualization.scm:1828 msgid "" "@command{umoci} is a tool that allows for high-level modification of an\n" "Open Container Initiative (OCI) image layout and its tagged images." msgstr "" -#: gnu/packages/virtualization.scm:1886 +#: gnu/packages/virtualization.scm:1882 msgid "" "@command{skopeo} is a command line utility providing various operations\n" "with container images and container image registries. It can:\n" @@ -20342,14 +20581,14 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:1922 +#: gnu/packages/virtualization.scm:1918 msgid "" "Python-vagrant is a Python module that provides a thin wrapper around the\n" "@code{vagrant} command line executable, allowing programmatic control of Vagrant\n" "virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:1977 +#: gnu/packages/virtualization.scm:1979 msgid "" "Bubblewrap is aimed at running applications in a sandbox,\n" "restricting their access to parts of the operating system or user data such as\n" @@ -20359,7 +20598,7 @@ msgid "" "by default and can be made read-only." msgstr "" -#: gnu/packages/virtualization.scm:2004 +#: gnu/packages/virtualization.scm:2006 msgid "" "Bochs is an emulator which can emulate Intel x86 CPU, common I/O\n" "devices, and a custom BIOS. It can also be compiled to emulate many different\n" @@ -20368,64 +20607,67 @@ msgid "" "DOS or Microsoft Windows." msgstr "" -#: gnu/packages/virtualization.scm:2210 +#: gnu/packages/virtualization.scm:2212 msgid "" "This package provides the Xen Virtual Machine Monitor\n" "which is a hypervisor." msgstr "" -#: gnu/packages/virtualization.scm:2242 +#: gnu/packages/virtualization.scm:2244 msgid "" "This package contains a set of tools to assist\n" "administrators and developers in managing the database." msgstr "" -#: gnu/packages/virtualization.scm:2275 +#: gnu/packages/virtualization.scm:2277 msgid "" "Osinfo-db provides the database files for use with the\n" "libosinfo library. It provides information about guest operating systems for\n" "use with virtualization provisioning tools" msgstr "" -#: gnu/packages/virtualization.scm:2317 +#: gnu/packages/virtualization.scm:2319 msgid "" "@code{transient} is a wrapper for QEMU allowing the creation of virtual\n" "machines with shared folder, ssh, and disk creation support." msgstr "" -#: gnu/packages/webkit.scm:93 +#: gnu/packages/webkit.scm:94 msgid "" "LibWPE is general-purpose library specifically developed for\n" "the WPE-flavored port of WebKit." msgstr "" -#: gnu/packages/webkit.scm:119 +#: gnu/packages/webkit.scm:120 msgid "" "This package provides a backend implementation for the WPE WebKit\n" "engine that uses Wayland for graphics output." msgstr "" -#: gnu/packages/webkit.scm:216 +#: gnu/packages/webkit.scm:227 msgid "" "WPE WebKit allows embedders to create simple and performant\n" "systems based on Web platform technologies. It is designed with hardware\n" "acceleration in mind, leveraging common 3D graphics APIs for best performance." msgstr "" -#: gnu/packages/webkit.scm:351 +#: gnu/packages/webkit.scm:355 msgid "" "WebKitGTK+ is a full-featured port of the WebKit rendering engine,\n" "suitable for projects requiring any kind of web integration, from hybrid\n" -"HTML/CSS applications to full-fledged web browsers." +"HTML/CSS applications to full-fledged web browsers. WebKitGTK+ video playing\n" +"capabilities can be extended through the use of GStreamer plugins (not\n" +"propagated by default) such as @code{gst-plugins-good} and\n" +"@code{gst-plugins-bad}." msgstr "" -#: gnu/packages/web.scm:250 +#: gnu/packages/web.scm:251 msgid "" "Qhttp is a light-weight and asynchronous HTTP library\n" "(both server & client) in Qt5 and C++14." msgstr "" -#: gnu/packages/web.scm:280 +#: gnu/packages/web.scm:281 msgid "" "The Apache HTTP Server Project is a collaborative software development\n" "effort aimed at creating a robust, commercial-grade, featureful, and\n" @@ -20435,14 +20677,14 @@ msgid "" "and its related documentation." msgstr "" -#: gnu/packages/web.scm:314 +#: gnu/packages/web.scm:315 msgid "" "The mod_wsgi module for the Apache HTTPD Server adds support for running\n" "applications that support the Python @acronym{WSGI, Web Server Gateway\n" "Interface} specification." msgstr "" -#: gnu/packages/web.scm:356 +#: gnu/packages/web.scm:357 msgid "" "Monolith bundles any web page into a single HTML file.\n" "\n" @@ -20455,38 +20697,38 @@ msgid "" "the same, being completely separated from the Internet." msgstr "" -#: gnu/packages/web.scm:460 +#: gnu/packages/web.scm:461 msgid "" "Nginx (\"engine X\") is a high-performance web and reverse proxy server\n" "created by Igor Sysoev. It can be used both as a stand-alone web server\n" "and as a proxy to reduce the load on back-end HTTP or mail servers." msgstr "" -#: gnu/packages/web.scm:518 +#: gnu/packages/web.scm:519 msgid "This package provides HTML documentation for the nginx web server." msgstr "" -#: gnu/packages/web.scm:647 +#: gnu/packages/web.scm:648 msgid "" "This nginx module parses the Accept-Language field in HTTP headers and\n" "chooses the most suitable locale for the user from the list of locales\n" "supported at your website." msgstr "" -#: gnu/packages/web.scm:694 +#: gnu/packages/web.scm:695 msgid "" "XSLScript is a terse notation for writing complex XSLT stylesheets.\n" "This is modified version, specifically intended for use with the NGinx\n" "documentation." msgstr "" -#: gnu/packages/web.scm:767 +#: gnu/packages/web.scm:768 msgid "" "This NGINX module provides a scripting support with Lua\n" "programming language." msgstr "" -#: gnu/packages/web.scm:820 +#: gnu/packages/web.scm:821 msgid "" "This NGINX module provides streaming with the @acronym{RTMP,\n" "Real-Time Messaging Protocol}, @acronym{DASH, Dynamic Adaptive Streaming over HTTP},\n" @@ -20496,7 +20738,7 @@ msgid "" "stream. Remote control of the module is possible over HTTP." msgstr "" -#: gnu/packages/web.scm:882 +#: gnu/packages/web.scm:883 msgid "" "Lighttpd is a secure, fast, compliant, and very flexible web-server that\n" "has been optimized for high-performance environments. It has a very low\n" @@ -20504,41 +20746,41 @@ msgid "" "CGI, authentication, output compression, URL rewriting and many more." msgstr "" -#: gnu/packages/web.scm:910 +#: gnu/packages/web.scm:911 msgid "" "FastCGI is a language-independent, scalable extension to CGI\n" "that provides high performance without the limitations of server specific\n" "APIs." msgstr "" -#: gnu/packages/web.scm:948 +#: gnu/packages/web.scm:949 msgid "" "Fcgiwrap is a simple server for running CGI applications\n" "over FastCGI. It hopes to provide clean CGI support to Nginx (and other web\n" "servers that may need it)." msgstr "" -#: gnu/packages/web.scm:977 +#: gnu/packages/web.scm:978 msgid "" "Starman is a PSGI perl web server that has unique features\n" "such as high performance, preforking, signal support, superdaemon awareness,\n" "and UNIX socket support." msgstr "" -#: gnu/packages/web.scm:1010 +#: gnu/packages/web.scm:1011 msgid "" "IcedTea-Web is an implementation of the @dfn{Java Network Launching\n" "Protocol}, also known as Java Web Start. This package provides tools and\n" "libraries for working with JNLP applets." msgstr "" -#: gnu/packages/web.scm:1035 +#: gnu/packages/web.scm:1036 msgid "" "Jansson is a C library for encoding, decoding and manipulating JSON\n" "data." msgstr "" -#: gnu/packages/web.scm:1055 +#: gnu/packages/web.scm:1056 msgid "" "JSON-C implements a reference counting object model that allows you to\n" "easily construct JSON objects in C, output them as JSON-formatted strings and\n" @@ -20546,7 +20788,7 @@ msgid "" "It aims to conform to RFC 7159." msgstr "" -#: gnu/packages/web.scm:1131 +#: gnu/packages/web.scm:1132 msgid "" "This package provides a very low footprint JSON parser\n" "written in portable ANSI C.\n" @@ -20559,21 +20801,21 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:1176 +#: gnu/packages/web.scm:1177 msgid "" "QJson is a Qt-based library that maps JSON data to\n" "@code{QVariant} objects. JSON arrays will be mapped to @code{QVariantList}\n" "instances, while JSON's objects will be mapped to @code{QVariantMap}." msgstr "" -#: gnu/packages/web.scm:1227 +#: gnu/packages/web.scm:1228 msgid "" "QOAuth is an attempt to support interaction with\n" "OAuth-powered network services in a Qt way, i.e. simply, clearly and\n" "efficiently. It gives the application developer no more than 4 methods." msgstr "" -#: gnu/packages/web.scm:1339 +#: gnu/packages/web.scm:1340 msgid "" "Krona is a flexible tool for exploring the relative proportions of\n" "hierarchical data, such as metagenomic classifications, using a radial,\n" @@ -20582,26 +20824,26 @@ msgid "" "current version of any major web browser." msgstr "" -#: gnu/packages/web.scm:1380 +#: gnu/packages/web.scm:1381 msgid "" "RapidJSON is a fast JSON parser/generator for C++ with both SAX/DOM\n" "style API." msgstr "" -#: gnu/packages/web.scm:1409 +#: gnu/packages/web.scm:1410 msgid "" "Yet Another JSON Library (YAJL) is a small event-driven (SAX-style) JSON\n" "parser written in ANSI C and a small validating JSON generator." msgstr "" -#: gnu/packages/web.scm:1439 +#: gnu/packages/web.scm:1440 msgid "" "Libwebsockets is a library that allows C programs to establish client\n" "and server WebSockets connections---a protocol layered above HTTP that allows\n" "for efficient socket-like bidirectional reliable communication channels." msgstr "" -#: gnu/packages/web.scm:1468 +#: gnu/packages/web.scm:1469 msgid "" "WABT (pronounced: wabbit) is a suite of tools for\n" "WebAssembly, including:\n" @@ -20626,7 +20868,7 @@ msgid "" "other systems that want to manipulate WebAssembly files." msgstr "" -#: gnu/packages/web.scm:1518 +#: gnu/packages/web.scm:1519 msgid "" "WebSocket++ is a C++ library that can be used to implement\n" "WebSocket functionality. The goals of the project are to provide a WebSocket\n" @@ -20634,7 +20876,7 @@ msgid "" "high performance." msgstr "" -#: gnu/packages/web.scm:1558 +#: gnu/packages/web.scm:1559 msgid "" "@code{Wslay} is an event-based C library for the WebSocket\n" "protocol version 13, described in RFC 6455. Besides a high-level API it\n" @@ -20643,7 +20885,7 @@ msgid "" "perform the opening handshake in HTTP." msgstr "" -#: gnu/packages/web.scm:1588 +#: gnu/packages/web.scm:1589 msgid "" "A \"public suffix\" is a domain name under which Internet users can\n" "directly register own names.\n" @@ -20661,20 +20903,20 @@ msgid "" "UTS#46." msgstr "" -#: gnu/packages/web.scm:1633 +#: gnu/packages/web.scm:1634 msgid "" "HTML Tidy is a command-line tool and C library that can be\n" "used to validate and fix HTML data." msgstr "" -#: gnu/packages/web.scm:1680 +#: gnu/packages/web.scm:1681 msgid "" "The esbuild tool provides a unified bundler, transpiler and\n" "minifier. It packages up JavaScript and TypeScript code, along with JSON\n" "and other data, for distribution on the web." msgstr "" -#: gnu/packages/web.scm:1716 +#: gnu/packages/web.scm:1717 msgid "" "Tinyproxy is a light-weight HTTP/HTTPS proxy\n" "daemon. Designed from the ground up to be fast and yet small, it is an ideal\n" @@ -20683,14 +20925,14 @@ msgid "" "unavailable." msgstr "" -#: gnu/packages/web.scm:1751 +#: gnu/packages/web.scm:1752 msgid "" "Polipo is a small caching web proxy (web cache, HTTP proxy, and proxy\n" "server). It was primarily designed to be used by one person or a small group\n" "of people." msgstr "" -#: gnu/packages/web.scm:1779 +#: gnu/packages/web.scm:1780 msgid "" "Websockify translates WebSockets traffic to normal socket\n" "traffic. Websockify accepts the WebSockets handshake, parses it, and then\n" @@ -20698,7 +20940,7 @@ msgid "" "directions." msgstr "" -#: gnu/packages/web.scm:1806 +#: gnu/packages/web.scm:1807 msgid "" "WWWOFFLE is a proxy web server that is especially good for\n" "intermittent internet links. It can cache HTTP, HTTPS, FTP, and finger\n" @@ -20707,7 +20949,7 @@ msgid "" "changes, and much more." msgstr "" -#: gnu/packages/web.scm:1832 +#: gnu/packages/web.scm:1833 msgid "" "liboauth is a collection of C functions implementing the OAuth API.\n" "liboauth provides functions to escape and encode strings according to OAuth\n" @@ -20716,25 +20958,25 @@ msgid "" "hash/signatures." msgstr "" -#: gnu/packages/web.scm:1855 +#: gnu/packages/web.scm:1856 msgid "" "This package contains support scripts called by libquvi to\n" "parse media stream properties." msgstr "" -#: gnu/packages/web.scm:1889 +#: gnu/packages/web.scm:1890 msgid "" "libquvi is a library with a C API for parsing media stream\n" "URLs and extracting their actual media files." msgstr "" -#: gnu/packages/web.scm:1911 +#: gnu/packages/web.scm:1912 msgid "" "quvi is a command-line-tool suite to extract media files\n" "from streaming URLs. It is a command-line wrapper for the libquvi library." msgstr "" -#: gnu/packages/web.scm:1983 +#: gnu/packages/web.scm:1984 msgid "" "serf is a C-based HTTP client library built upon the Apache Portable\n" "Runtime (APR) library. It multiplexes connections, running the read/write\n" @@ -20742,7 +20984,7 @@ msgid "" "minimum to provide high performance operation." msgstr "" -#: gnu/packages/web.scm:2018 +#: gnu/packages/web.scm:2019 msgid "" "LibSass is a @acronym{SASS,Syntactically awesome style sheets} compiler\n" "library designed for portability and efficiency. To actually compile SASS\n" @@ -20750,29 +20992,29 @@ msgid "" "@var{sassc} for example." msgstr "" -#: gnu/packages/web.scm:2067 +#: gnu/packages/web.scm:2068 msgid "" "SassC is a compiler written in C for the CSS pre-processor\n" "language known as SASS." msgstr "" -#: gnu/packages/web.scm:2112 +#: gnu/packages/web.scm:2113 msgid "" "This module provides methods to compile a log format string\n" "to perl-code, for faster generation of access_log lines." msgstr "" -#: gnu/packages/web.scm:2140 +#: gnu/packages/web.scm:2141 msgid "Authen::SASL provides an SASL authentication framework." msgstr "" -#: gnu/packages/web.scm:2163 +#: gnu/packages/web.scm:2164 msgid "" "This Catalyst action implements a sensible default end\n" "action, which will forward to the first available view." msgstr "" -#: gnu/packages/web.scm:2195 +#: gnu/packages/web.scm:2196 msgid "" "This Action handles doing automatic method dispatching for\n" "REST requests. It takes a normal Catalyst action, and changes the dispatch to\n" @@ -20781,20 +21023,20 @@ msgid "" "regular method." msgstr "" -#: gnu/packages/web.scm:2226 +#: gnu/packages/web.scm:2227 msgid "" "The Catalyst::Authentication::Store::DBIx::Class class\n" "provides access to authentication information stored in a database via\n" "DBIx::Class." msgstr "" -#: gnu/packages/web.scm:2252 +#: gnu/packages/web.scm:2253 msgid "" "Catalyst::Component::InstancePerContext returns a new\n" "instance of a component on each request." msgstr "" -#: gnu/packages/web.scm:2288 +#: gnu/packages/web.scm:2289 msgid "" "The Catalyst-Devel distribution includes a variety of\n" "modules useful for the development of Catalyst applications, but not required\n" @@ -20804,7 +21046,7 @@ msgid "" "modules." msgstr "" -#: gnu/packages/web.scm:2316 +#: gnu/packages/web.scm:2317 msgid "" "Dispatch type managing path-matching behaviour using\n" "regexes. Regex dispatch types have been deprecated and removed from Catalyst\n" @@ -20814,20 +21056,20 @@ msgid "" "when the dispatch type is first seen in your application." msgstr "" -#: gnu/packages/web.scm:2363 +#: gnu/packages/web.scm:2364 msgid "" "This is a Catalyst Model for DBIx::Class::Schema-based\n" "Models." msgstr "" -#: gnu/packages/web.scm:2385 +#: gnu/packages/web.scm:2386 msgid "" "This Catalyst plugin enables you to create \"access logs\"\n" "from within a Catalyst application instead of requiring a webserver to do it\n" "for you. It will work even with Catalyst debug logging turned off." msgstr "" -#: gnu/packages/web.scm:2419 +#: gnu/packages/web.scm:2420 msgid "" "The authentication plugin provides generic user support for\n" "Catalyst apps. It is the basis for both authentication (checking the user is\n" @@ -20835,32 +21077,32 @@ msgid "" "system authorises them to do)." msgstr "" -#: gnu/packages/web.scm:2447 +#: gnu/packages/web.scm:2448 msgid "" "Catalyst::Plugin::Authorization::Roles provides role-based\n" "authorization for Catalyst based on Catalyst::Plugin::Authentication." msgstr "" -#: gnu/packages/web.scm:2469 +#: gnu/packages/web.scm:2470 msgid "" "This plugin creates and validates Captcha images for\n" "Catalyst." msgstr "" -#: gnu/packages/web.scm:2493 +#: gnu/packages/web.scm:2494 msgid "" "This module will attempt to load find and load configuration\n" "files of various types. Currently it supports YAML, JSON, XML, INI and Perl\n" "formats." msgstr "" -#: gnu/packages/web.scm:2522 +#: gnu/packages/web.scm:2523 msgid "" "This plugin links the two pieces required for session\n" "management in web applications together: the state, and the store." msgstr "" -#: gnu/packages/web.scm:2548 +#: gnu/packages/web.scm:2549 msgid "" "In order for Catalyst::Plugin::Session to work, the session\n" "ID needs to be stored on the client, and the session data needs to be stored\n" @@ -20868,14 +21110,14 @@ msgid "" "cookie mechanism." msgstr "" -#: gnu/packages/web.scm:2578 +#: gnu/packages/web.scm:2579 msgid "" "Catalyst::Plugin::Session::Store::FastMmap is a fast session\n" "storage plugin for Catalyst that uses an mmap'ed file to act as a shared\n" "memory interprocess cache. It is based on Cache::FastMmap." msgstr "" -#: gnu/packages/web.scm:2602 +#: gnu/packages/web.scm:2603 msgid "" "This plugin enhances the standard Catalyst debug screen by\n" "including a stack trace of your application up to the point where the error\n" @@ -20883,7 +21125,7 @@ msgid "" "number, file name, and code context surrounding the line number." msgstr "" -#: gnu/packages/web.scm:2628 +#: gnu/packages/web.scm:2629 msgid "" "The Static::Simple plugin is designed to make serving static\n" "content in your application during development quick and easy, without\n" @@ -20894,7 +21136,7 @@ msgid "" "MIME type directly to the browser, without being processed through Catalyst." msgstr "" -#: gnu/packages/web.scm:2687 +#: gnu/packages/web.scm:2688 msgid "" "Catalyst is a modern framework for making web applications.\n" "It is designed to make it easy to manage the various tasks you need to do to\n" @@ -20902,7 +21144,7 @@ msgid "" "\"plug in\" existing Perl modules that do what you need." msgstr "" -#: gnu/packages/web.scm:2715 +#: gnu/packages/web.scm:2716 msgid "" "This module is a Moose::Role which allows you more\n" "flexibility in your application's deployment configurations when deployed\n" @@ -20910,26 +21152,26 @@ msgid "" "replaced with the contents of the X-Request-Base header." msgstr "" -#: gnu/packages/web.scm:2743 +#: gnu/packages/web.scm:2744 msgid "" "The purpose of this module is to provide a method for\n" "downloading data into many supportable formats. For example, downloading a\n" "table based report in a variety of formats (CSV, HTML, etc.)." msgstr "" -#: gnu/packages/web.scm:2767 +#: gnu/packages/web.scm:2768 msgid "" "Catalyst::View::JSON is a Catalyst View handler that returns\n" "stash data in JSON format." msgstr "" -#: gnu/packages/web.scm:2793 +#: gnu/packages/web.scm:2794 msgid "" "This module is a Catalyst view class for the Template\n" "Toolkit." msgstr "" -#: gnu/packages/web.scm:2821 +#: gnu/packages/web.scm:2822 msgid "" "Adds a \"COMPONENT\" in Catalyst::Component method to your\n" "Catalyst component base class that reads the optional \"traits\" parameter\n" @@ -20938,19 +21180,19 @@ msgid "" "MooseX::Traits::Pluggable." msgstr "" -#: gnu/packages/web.scm:2845 +#: gnu/packages/web.scm:2846 msgid "" "CatalystX::RoleApplicator applies roles to Catalyst\n" "application classes." msgstr "" -#: gnu/packages/web.scm:2870 +#: gnu/packages/web.scm:2871 msgid "" "This module provides a Catalyst extension to replace the\n" "development server with Starman." msgstr "" -#: gnu/packages/web.scm:2892 +#: gnu/packages/web.scm:2893 msgid "" "CGI.pm is a stable, complete and mature solution for\n" "processing and preparing HTTP requests and responses. Major features include\n" @@ -20959,44 +21201,44 @@ msgid "" "headers." msgstr "" -#: gnu/packages/web.scm:2919 +#: gnu/packages/web.scm:2920 msgid "" "@code{CGI::FormBuilder} provides an easy way to generate and process CGI\n" "form-based applications." msgstr "" -#: gnu/packages/web.scm:2946 +#: gnu/packages/web.scm:2947 msgid "" "@code{CGI::Session} provides modular session management system across\n" "HTTP requests." msgstr "" -#: gnu/packages/web.scm:2967 +#: gnu/packages/web.scm:2968 msgid "" "CGI::Simple provides a relatively lightweight drop in\n" "replacement for CGI.pm. It shares an identical OO interface to CGI.pm for\n" "parameter parsing, file upload, cookie handling and header generation." msgstr "" -#: gnu/packages/web.scm:2989 +#: gnu/packages/web.scm:2990 msgid "" "This is a module for building structured data from CGI\n" "inputs, in a manner reminiscent of how PHP does." msgstr "" -#: gnu/packages/web.scm:3012 +#: gnu/packages/web.scm:3013 msgid "" "This module provides functions that deal with the date\n" "formats used by the HTTP protocol." msgstr "" -#: gnu/packages/web.scm:3033 +#: gnu/packages/web.scm:3034 msgid "" "Digest::MD5::File is a Perl extension for getting MD5 sums\n" "for files and urls." msgstr "" -#: gnu/packages/web.scm:3053 +#: gnu/packages/web.scm:3054 msgid "" "The POSIX locale system is used to specify both the language\n" "conventions requested by the user and the preferred character set to\n" @@ -21008,66 +21250,66 @@ msgid "" "with Encode::decode(locale => $string)." msgstr "" -#: gnu/packages/web.scm:3086 +#: gnu/packages/web.scm:3087 msgid "" "@code{Feed::Find} implements feed auto-discovery for finding\n" "syndication feeds, given a URI. It will discover the following feed formats:\n" "RSS 0.91, RSS 1.0, RSS 2.0, Atom." msgstr "" -#: gnu/packages/web.scm:3109 +#: gnu/packages/web.scm:3110 msgid "" "The File::Listing module exports a single function called parse_dir(),\n" "which can be used to parse directory listings." msgstr "" -#: gnu/packages/web.scm:3142 +#: gnu/packages/web.scm:3143 msgid "" "Finance::Quote gets stock quotes from various internet sources, including\n" "Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange." msgstr "" -#: gnu/packages/web.scm:3165 +#: gnu/packages/web.scm:3166 msgid "" "This is a Perl extension for using GSSAPI C bindings as\n" "described in RFC 2744." msgstr "" -#: gnu/packages/web.scm:3187 +#: gnu/packages/web.scm:3188 msgid "" "HTML::Element::Extended is a Perl extension for manipulating a table\n" "composed of HTML::Element style components." msgstr "" -#: gnu/packages/web.scm:3208 +#: gnu/packages/web.scm:3209 msgid "" "Objects of the HTML::Form class represents a single HTML\n" "
...
instance." msgstr "" -#: gnu/packages/web.scm:3241 +#: gnu/packages/web.scm:3242 msgid "@code{HTML::Scrubber} Perl extension for scrubbing/sanitizing HTML." msgstr "" -#: gnu/packages/web.scm:3260 +#: gnu/packages/web.scm:3261 msgid "" "HTML::Lint is a pure-Perl HTML parser and checker for\n" "syntactic legitmacy." msgstr "" -#: gnu/packages/web.scm:3282 +#: gnu/packages/web.scm:3283 msgid "" "HTML::TableExtract is a Perl module for extracting the content contained\n" "in tables within an HTML document, either as text or encoded element trees." msgstr "" -#: gnu/packages/web.scm:3305 +#: gnu/packages/web.scm:3306 msgid "" "This distribution contains a suite of modules for\n" "representing, creating, and extracting information from HTML syntax trees." msgstr "" -#: gnu/packages/web.scm:3327 +#: gnu/packages/web.scm:3328 msgid "" "Objects of the HTML::Parser class will recognize markup and separate\n" "it from plain text (alias data content) in HTML documents. As different\n" @@ -21075,13 +21317,13 @@ msgid "" "are invoked." msgstr "" -#: gnu/packages/web.scm:3349 +#: gnu/packages/web.scm:3350 msgid "" "The HTML::Tagset module contains several data tables useful in various\n" "kinds of HTML parsing operations." msgstr "" -#: gnu/packages/web.scm:3370 +#: gnu/packages/web.scm:3371 msgid "" "This module attempts to make using HTML templates simple and natural.\n" "It extends standard HTML with a few new HTML-esque tags: @code{},\n" @@ -21092,40 +21334,40 @@ msgid "" "you to separate design from the data." msgstr "" -#: gnu/packages/web.scm:3398 +#: gnu/packages/web.scm:3399 msgid "" "HTTP::Body parses chunks of HTTP POST data and supports\n" "application/octet-stream, application/json, application/x-www-form-urlencoded,\n" "and multipart/form-data." msgstr "" -#: gnu/packages/web.scm:3421 +#: gnu/packages/web.scm:3422 msgid "" "This module implements a minimalist HTTP user agent cookie\n" "jar in conformance with RFC 6265 ." msgstr "" -#: gnu/packages/web.scm:3443 +#: gnu/packages/web.scm:3444 msgid "" "The HTTP::Cookies class is for objects that represent a cookie jar,\n" "that is, a database of all the HTTP cookies that a given LWP::UserAgent\n" "object knows about." msgstr "" -#: gnu/packages/web.scm:3466 +#: gnu/packages/web.scm:3467 msgid "" "Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen\n" "on a socket for incoming requests. The HTTP::Daemon is a subclass of\n" "IO::Socket::INET, so you can perform socket operations directly on it too." msgstr "" -#: gnu/packages/web.scm:3487 +#: gnu/packages/web.scm:3488 msgid "" "The HTTP::Date module provides functions that deal with date formats\n" "used by the HTTP protocol (and then some more)." msgstr "" -#: gnu/packages/web.scm:3508 +#: gnu/packages/web.scm:3509 msgid "" "@code{HTTP::Lite} is a stand-alone lightweight\n" "HTTP/1.1 implementation for perl. It is intended for use in\n" @@ -21139,11 +21381,11 @@ msgid "" "processing of request data as it arrives." msgstr "" -#: gnu/packages/web.scm:3541 +#: gnu/packages/web.scm:3542 msgid "An HTTP::Message object contains some headers and a content body." msgstr "" -#: gnu/packages/web.scm:3562 +#: gnu/packages/web.scm:3563 msgid "" "The HTTP::Negotiate module provides a complete implementation of the\n" "HTTP content negotiation algorithm specified in\n" @@ -21153,7 +21395,7 @@ msgid "" "fields in the request." msgstr "" -#: gnu/packages/web.scm:3587 +#: gnu/packages/web.scm:3588 msgid "" "This is an HTTP request parser. It takes chunks of text as\n" "received and returns a @code{hint} as to what is required, or returns the\n" @@ -21161,33 +21403,33 @@ msgid "" "supported." msgstr "" -#: gnu/packages/web.scm:3610 +#: gnu/packages/web.scm:3611 msgid "" "HTTP::Parser::XS is a fast, primitive HTTP request/response\n" "parser." msgstr "" -#: gnu/packages/web.scm:3631 +#: gnu/packages/web.scm:3632 msgid "" "This module provides a convenient way to set up a CGI\n" "environment from an HTTP::Request." msgstr "" -#: gnu/packages/web.scm:3665 +#: gnu/packages/web.scm:3666 msgid "" "HTTP::Server::Simple is a simple standalone HTTP daemon with\n" "no non-core module dependencies. It can be used for building a standalone\n" "http-based UI to your existing tools." msgstr "" -#: gnu/packages/web.scm:3688 +#: gnu/packages/web.scm:3689 msgid "" "This is a very simple HTTP/1.1 client, designed for doing\n" "simple requests without the overhead of a large framework like LWP::UserAgent.\n" "It supports proxies and redirection. It also correctly resumes after EINTR." msgstr "" -#: gnu/packages/web.scm:3713 +#: gnu/packages/web.scm:3714 msgid "" "@code{HTTP::Tinyish} is a wrapper module for @acronym{LWP,libwww-perl},\n" "@code{HTTP::Tiny}, curl and wget.\n" @@ -21195,20 +21437,20 @@ msgid "" "It provides an API compatible to HTTP::Tiny." msgstr "" -#: gnu/packages/web.scm:3735 +#: gnu/packages/web.scm:3736 msgid "" "IO::HTML provides an easy way to open a file containing HTML while\n" "automatically determining its encoding. It uses the HTML5 encoding sniffing\n" "algorithm specified in section 8.2.2.1 of the draft standard." msgstr "" -#: gnu/packages/web.scm:3755 +#: gnu/packages/web.scm:3756 msgid "" "This module provides a protocol-independent way to use IPv4\n" "and IPv6 sockets, intended as a replacement for IO::Socket::INET." msgstr "" -#: gnu/packages/web.scm:3777 +#: gnu/packages/web.scm:3778 msgid "" "IO::Socket::SSL makes using SSL/TLS much easier by wrapping the\n" "necessary functionality into the familiar IO::Socket interface and providing\n" @@ -21217,7 +21459,7 @@ msgid "" "select or poll." msgstr "" -#: gnu/packages/web.scm:3816 +#: gnu/packages/web.scm:3817 msgid "" "The libwww-perl collection is a set of Perl modules which provides a\n" "simple and consistent application programming interface to the\n" @@ -21227,7 +21469,7 @@ msgid "" "help you implement simple HTTP servers." msgstr "" -#: gnu/packages/web.scm:3844 +#: gnu/packages/web.scm:3845 msgid "" "This module attempts to answer, as accurately as it can, one\n" "of the nastiest technical questions there is: am I on the internet?\n" @@ -21237,7 +21479,7 @@ msgid "" "not have DNS. We might not have a network card at all!" msgstr "" -#: gnu/packages/web.scm:3870 +#: gnu/packages/web.scm:3871 #, scheme-format msgid "" "The LWP::MediaTypes module provides functions for handling media (also\n" @@ -21246,20 +21488,20 @@ msgid "" "exists it is used instead." msgstr "" -#: gnu/packages/web.scm:3895 +#: gnu/packages/web.scm:3896 msgid "" "The LWP::Protocol::https module provides support for using\n" "https schemed URLs with LWP." msgstr "" -#: gnu/packages/web.scm:3916 +#: gnu/packages/web.scm:3917 msgid "" "LWP::UserAgent::Cached is an LWP::UserAgent subclass with\n" "cache support. It returns responses from the local file system, if available,\n" "instead of making an HTTP request." msgstr "" -#: gnu/packages/web.scm:3938 +#: gnu/packages/web.scm:3939 msgid "" "LWP::UserAgent::Determined works just like LWP::UserAgent,\n" "except that when you use it to get a web page but run into a\n" @@ -21267,7 +21509,7 @@ msgid "" "and retry a few times." msgstr "" -#: gnu/packages/web.scm:3965 +#: gnu/packages/web.scm:3966 msgid "" "@code{LWPx::ParanoidAgent} is a class subclassing\n" "@code{LWP::UserAgent} but paranoid against attackers. Its purpose is\n" @@ -21277,11 +21519,11 @@ msgid "" "is limited to http and https." msgstr "" -#: gnu/packages/web.scm:4011 +#: gnu/packages/web.scm:4012 msgid "This module provides a Perlish interface to Amazon S3." msgstr "" -#: gnu/packages/web.scm:4032 +#: gnu/packages/web.scm:4033 msgid "" "The Net::HTTP class is a low-level HTTP client. An instance of the\n" "Net::HTTP class represents a connection to an HTTP server. The HTTP protocol\n" @@ -21289,7 +21531,7 @@ msgid "" "HTTP/1.1." msgstr "" -#: gnu/packages/web.scm:4053 +#: gnu/packages/web.scm:4054 msgid "" "Net::Server is an extensible, generic Perl server engine.\n" "It attempts to be a generic server as in Net::Daemon and NetServer::Generic.\n" @@ -21303,11 +21545,11 @@ msgid "" "or to multiple server ports." msgstr "" -#: gnu/packages/web.scm:4082 +#: gnu/packages/web.scm:4083 msgid "SSL support for Net::SMTP." msgstr "" -#: gnu/packages/web.scm:4116 +#: gnu/packages/web.scm:4117 msgid "" "Plack is a set of tools for using the PSGI stack. It\n" "contains middleware components, a reference server, and utilities for Web\n" @@ -21315,7 +21557,7 @@ msgid "" "WSGI." msgstr "" -#: gnu/packages/web.scm:4143 +#: gnu/packages/web.scm:4144 msgid "" "Plack::Middleware::Deflater is a middleware to encode your response body\n" "in gzip or deflate, based on \"Accept-Encoding\" HTTP request header. It\n" @@ -21324,13 +21566,13 @@ msgid "" "servers." msgstr "" -#: gnu/packages/web.scm:4170 +#: gnu/packages/web.scm:4171 msgid "" "This module sets the body in redirect response, if it's not\n" "already set." msgstr "" -#: gnu/packages/web.scm:4193 +#: gnu/packages/web.scm:4194 msgid "" "This middleware allows for POST requests that pretend to be\n" "something else: by adding either a header named X-HTTP-Method-Override to the\n" @@ -21338,44 +21580,44 @@ msgid "" "can say what method it actually meant." msgstr "" -#: gnu/packages/web.scm:4217 +#: gnu/packages/web.scm:4218 msgid "" "This module removes the body in an HTTP response if it's not\n" "required." msgstr "" -#: gnu/packages/web.scm:4240 +#: gnu/packages/web.scm:4241 msgid "" "Plack::Middleware::ReverseProxy resets some HTTP headers,\n" "which are changed by reverse-proxy. You can specify the reverse proxy address\n" "and stop fake requests using @code{enable_if} directive in your app.psgi." msgstr "" -#: gnu/packages/web.scm:4261 +#: gnu/packages/web.scm:4262 msgid "" "This module allows your to run your Plack::Test tests\n" "against an external server instead of just against a local application through\n" "either mocked HTTP or a locally spawned server." msgstr "" -#: gnu/packages/web.scm:4283 +#: gnu/packages/web.scm:4284 msgid "Test::TCP is test utilities for TCP/IP programs." msgstr "" -#: gnu/packages/web.scm:4308 +#: gnu/packages/web.scm:4309 msgid "" "Test::WWW::Mechanize is a subclass of the Perl module\n" "WWW::Mechanize that incorporates features for web application testing." msgstr "" -#: gnu/packages/web.scm:4341 +#: gnu/packages/web.scm:4342 msgid "" "The Test::WWW::Mechanize::Catalyst module meshes the\n" "Test::WWW:Mechanize module and the Catalyst web application framework to allow\n" "testing of Catalyst applications without needing to start up a web server." msgstr "" -#: gnu/packages/web.scm:4365 +#: gnu/packages/web.scm:4366 msgid "" "PSGI is a specification to decouple web server environments\n" "from web application framework code. Test::WWW::Mechanize is a subclass of\n" @@ -21384,21 +21626,21 @@ msgid "" "applications." msgstr "" -#: gnu/packages/web.scm:4390 +#: gnu/packages/web.scm:4391 msgid "" "The URI module implements the URI class. Objects of this class\n" "represent \"Uniform Resource Identifier references\" as specified in RFC 2396\n" "and updated by RFC 2732." msgstr "" -#: gnu/packages/web.scm:4413 +#: gnu/packages/web.scm:4414 msgid "" "@code{URI::Fetch} is a smart client for fetching HTTP pages,\n" "notably syndication feeds (RSS, Atom, and others), in an intelligent, bandwidth-\n" "and time-saving way." msgstr "" -#: gnu/packages/web.scm:4437 +#: gnu/packages/web.scm:4438 msgid "" "This module finds URIs and URLs (according to what URI.pm\n" "considers a URI) in plain text. It only finds URIs which include a\n" @@ -21406,37 +21648,37 @@ msgid "" "URI::Find::Schemeless. For a command-line interface, urifind is provided." msgstr "" -#: gnu/packages/web.scm:4460 +#: gnu/packages/web.scm:4461 msgid "" "With this module, the URI package provides the same set of\n" "methods for WebSocket URIs as it does for HTTP URIs." msgstr "" -#: gnu/packages/web.scm:4483 +#: gnu/packages/web.scm:4484 msgid "" "This perl module provides a wrapper around URI templates as described in\n" "RFC 6570." msgstr "" -#: gnu/packages/web.scm:4517 +#: gnu/packages/web.scm:4518 msgid "" "This is a Perl extension interface for the libcurl file downloading\n" "library." msgstr "" -#: gnu/packages/web.scm:4548 +#: gnu/packages/web.scm:4549 msgid "" "WWW::Mechanize is a Perl module for stateful programmatic\n" "web browsing, used for automating interaction with websites." msgstr "" -#: gnu/packages/web.scm:4586 +#: gnu/packages/web.scm:4587 msgid "" "@code{WWW::OpenSearch} is a module to search @url{A9's OpenSearch,\n" "http://opensearch.a9.com} compatible search engines." msgstr "" -#: gnu/packages/web.scm:4608 +#: gnu/packages/web.scm:4609 msgid "" "The WWW::RobotRules module parses /robots.txt files as specified in\n" "\"A Standard for Robot Exclusion\", at\n" @@ -21445,13 +21687,13 @@ msgid "" "their web site." msgstr "" -#: gnu/packages/web.scm:4635 gnu/packages/web.scm:4659 +#: gnu/packages/web.scm:4640 gnu/packages/web.scm:4664 msgid "" "Universal feed parser which handles RSS 0.9x, RSS 1.0, RSS 2.0,\n" "CDF, Atom 0.3, and Atom 1.0 feeds." msgstr "" -#: gnu/packages/web.scm:4756 +#: gnu/packages/web.scm:4761 msgid "" "The Guix Data Service stores data about GNU Guix, and provides this\n" "through a web interface. It supports listening to the guix-commits mailing\n" @@ -21459,20 +21701,20 @@ msgid "" "PostgreSQL database." msgstr "" -#: gnu/packages/web.scm:4785 +#: gnu/packages/web.scm:4790 msgid "" "Gumbo is an implementation of the HTML5 parsing algorithm implemented as\n" "a pure C99 library." msgstr "" -#: gnu/packages/web.scm:4858 +#: gnu/packages/web.scm:4863 msgid "" "uWSGI presents a complete stack for networked/clustered web applications,\n" "implementing message/object passing, caching, RPC and process management.\n" "It uses the uwsgi protocol for all the networking/interprocess communications." msgstr "" -#: gnu/packages/web.scm:4891 +#: gnu/packages/web.scm:4896 msgid "" "jq is like sed for JSON data – you can use it to slice and\n" "filter and map and transform structured data with the same ease that sed, awk,\n" @@ -21482,7 +21724,7 @@ msgid "" "you'd expect." msgstr "" -#: gnu/packages/web.scm:4920 +#: gnu/packages/web.scm:4925 msgid "" "@command{pup} is a command line tool for processing HTML. It reads\n" "from stdin, prints to stdout, and allows the user to filter parts of the page\n" @@ -21490,66 +21732,66 @@ msgid "" "fast and flexible way of exploring HTML from the terminal." msgstr "" -#: gnu/packages/web.scm:4953 +#: gnu/packages/web.scm:4958 msgid "" "Uhttpmock is a project for mocking web service APIs which use HTTP or\n" "HTTPS. It provides a library, libuhttpmock, which implements recording and\n" "playback of HTTP request/response traces." msgstr "" -#: gnu/packages/web.scm:4989 +#: gnu/packages/web.scm:4994 msgid "" "Woof (Web Offer One File) is a small simple web server that\n" "can easily be invoked on a single file. Your partner can access the file with\n" "tools they trust (e.g. wget)." msgstr "" -#: gnu/packages/web.scm:5017 +#: gnu/packages/web.scm:5022 msgid "" "This package provides the shared build system for Netsurf project\n" "libraries." msgstr "" -#: gnu/packages/web.scm:5052 +#: gnu/packages/web.scm:5057 msgid "" "LibParserUtils is a library for building efficient parsers, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5082 +#: gnu/packages/web.scm:5087 msgid "" "Hubbub is an HTML5 compliant parsing library, written in C, which can\n" "parse both valid and invalid web content. It is developed as part of the\n" "NetSurf project." msgstr "" -#: gnu/packages/web.scm:5203 +#: gnu/packages/web.scm:5208 msgid "" "Ikiwiki is a wiki compiler, capable of generating a static set of web\n" "pages, but also incorporating dynamic features like a web based editor and\n" "commenting." msgstr "" -#: gnu/packages/web.scm:5227 +#: gnu/packages/web.scm:5232 msgid "" "LibWapcaplet provides a reference counted string internment system\n" "designed to store small strings and allow rapid comparison of them. It is\n" "developed as part of the Netsurf project." msgstr "" -#: gnu/packages/web.scm:5259 +#: gnu/packages/web.scm:5264 msgid "" "LibCSS is a CSS (Cascading Style Sheet) parser and selection engine,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5294 +#: gnu/packages/web.scm:5299 msgid "" "LibDOM is an implementation of the W3C DOM, written in C. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5321 +#: gnu/packages/web.scm:5326 msgid "" "Libsvgtiny takes some SVG as input and returns a list of paths and texts\n" "which can be rendered easily, as defined in\n" @@ -21557,65 +21799,65 @@ msgid "" "project." msgstr "" -#: gnu/packages/web.scm:5346 +#: gnu/packages/web.scm:5351 msgid "" "Libnsbmp is a decoding library for BMP and ICO image file formats,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5369 +#: gnu/packages/web.scm:5374 msgid "" "Libnsgif is a decoding library for the GIF image file format, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5396 +#: gnu/packages/web.scm:5401 msgid "" "Libnslog provides a category-based logging library which supports\n" "complex logging filters, multiple log levels, and provides context through to\n" "client applications. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5420 +#: gnu/packages/web.scm:5425 msgid "" "Libnsutils provides a small number of useful utility routines. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5443 +#: gnu/packages/web.scm:5448 msgid "" "Libnspsl is a library to generate a static code representation of the\n" "Public Suffix List. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5469 +#: gnu/packages/web.scm:5474 msgid "" "@code{nsgenbind} is a tool to generate JavaScript to DOM bindings from\n" "w3c webidl files and a binding configuration file." msgstr "" -#: gnu/packages/web.scm:5592 +#: gnu/packages/web.scm:5597 msgid "" "NetSurf is a lightweight web browser that has its own layout and\n" "rendering engine entirely written from scratch. It is small and capable of\n" "handling many of the web standards in use today." msgstr "" -#: gnu/packages/web.scm:5631 +#: gnu/packages/web.scm:5636 msgid "" "Surfraw (Shell Users' Revolutionary Front Rage Against the Web)\n" "provides a unix command line interface to a variety of popular www search engines\n" "and similar services." msgstr "" -#: gnu/packages/web.scm:5664 +#: gnu/packages/web.scm:5669 msgid "" "darkhttpd is a simple static web server. It is\n" "standalone and does not need inetd or ucspi-tcp. It does not need any\n" "config files---you only have to specify the www root." msgstr "" -#: gnu/packages/web.scm:5695 +#: gnu/packages/web.scm:5700 msgid "" "GoAccess is a real-time web log analyzer and interactive viewer that\n" "runs in a terminal or through your browser. It provides fast and valuable\n" @@ -21623,7 +21865,7 @@ msgid "" "on the fly." msgstr "" -#: gnu/packages/web.scm:5749 +#: gnu/packages/web.scm:5754 msgid "" "Hitch is a performant TLS proxy based on @code{libev}. It terminates\n" "SSL/TLS connections and forwards the unencrypted traffic to a backend such\n" @@ -21631,7 +21873,7 @@ msgid "" "multicore machines." msgstr "" -#: gnu/packages/web.scm:5786 +#: gnu/packages/web.scm:5791 msgid "" "httptunnel creates a bidirectional virtual data connection\n" "tunnelled through HTTP (HyperText Transfer Protocol) requests. This can be\n" @@ -21649,7 +21891,7 @@ msgid "" "deployments." msgstr "" -#: gnu/packages/web.scm:5915 +#: gnu/packages/web.scm:5912 msgid "" "Varnish is a high-performance HTTP accelerator. It acts as a caching\n" "reverse proxy and load balancer. You install it in front of any server that\n" @@ -21657,14 +21899,14 @@ msgid "" "configuration language." msgstr "" -#: gnu/packages/web.scm:5949 +#: gnu/packages/web.scm:5946 msgid "" "This package provides a collection of modules (@dfn{vmods}) for the Varnish\n" "cache server, extending the @acronym{VCL, Varnish Configuration Language} with\n" "additional capabilities." msgstr "" -#: gnu/packages/web.scm:5976 +#: gnu/packages/web.scm:5973 msgid "" "@code{xinetd}, a more secure replacement for @code{inetd},\n" "listens for incoming requests over a network and launches the appropriate\n" @@ -21673,7 +21915,7 @@ msgid "" "used to start services with both privileged and non-privileged port numbers." msgstr "" -#: gnu/packages/web.scm:6023 +#: gnu/packages/web.scm:6020 msgid "" "Tidy is a console application which corrects and cleans up\n" "HTML and XML documents by fixing markup errors and upgrading\n" @@ -21684,14 +21926,14 @@ msgid "" "functions of Tidy." msgstr "" -#: gnu/packages/web.scm:6085 +#: gnu/packages/web.scm:6082 msgid "" "Hiawatha has been written with security in mind.\n" "Features include the ability to stop SQL injections, XSS and CSRF attacks and\n" "exploit attempts." msgstr "" -#: gnu/packages/web.scm:6107 +#: gnu/packages/web.scm:6104 msgid "" "Testing an HTTP Library can become difficult sometimes.\n" "@code{RequestBin} is fantastic for testing POST requests, but doesn't let you control the\n" @@ -21699,14 +21941,14 @@ msgid "" "JSON-encoded." msgstr "" -#: gnu/packages/web.scm:6132 +#: gnu/packages/web.scm:6129 msgid "" "@code{Pytest-httpbin} creates a @code{pytest} fixture that is dependency-injected\n" "into your tests. It automatically starts up a HTTP server in a separate thread running\n" "@code{httpbin} and provides your test with the URL in the fixture." msgstr "" -#: gnu/packages/web.scm:6199 +#: gnu/packages/web.scm:6196 msgid "" "This is a parser for HTTP messages written in C. It\n" "parses both requests and responses. The parser is designed to be used in\n" @@ -21716,40 +21958,40 @@ msgid "" "message stream (in a web server that is per connection)." msgstr "" -#: gnu/packages/web.scm:6236 +#: gnu/packages/web.scm:6233 msgid "" "@code{httpretty} is a helper for faking web requests,\n" "inspired by Ruby's @code{fakeweb}." msgstr "" -#: gnu/packages/web.scm:6254 +#: gnu/packages/web.scm:6251 msgid "" "jo is a command-line utility to create JSON objects or\n" "arrays. It creates a JSON string on stdout from words provided as\n" "command-line arguments or read from stdin." msgstr "" -#: gnu/packages/web.scm:6313 +#: gnu/packages/web.scm:6310 msgid "" "@code{ia} is a command-line tool for using\n" "@url{archive.org} from the command-line. It also implements the\n" "internetarchive python module for programmatic access to archive.org." msgstr "" -#: gnu/packages/web.scm:6364 +#: gnu/packages/web.scm:6361 msgid "" "@code{clf} is a command line tool for searching code\n" "snippets on @url{https://commandlinefu.com}." msgstr "" -#: gnu/packages/web.scm:6402 +#: gnu/packages/web.scm:6399 msgid "" "rss-bridge generates Atom feeds for social networking\n" "websites lacking feeds. Supported websites include Facebook, Twitter,\n" "Instagram and YouTube." msgstr "" -#: gnu/packages/web.scm:6440 +#: gnu/packages/web.scm:6437 msgid "" "LinkChecker is a website validator. It checks for broken\n" "links in websites. It is recursive and multithreaded providing output in\n" @@ -21758,67 +22000,67 @@ msgid "" "file links." msgstr "" -#: gnu/packages/web.scm:6488 +#: gnu/packages/web.scm:6485 msgid "" "Castor is a graphical client for plain-text protocols written in\n" "Rust with GTK. It currently supports the Gemini, Gopher and Finger\n" "protocols." msgstr "" -#: gnu/packages/web.scm:6575 +#: gnu/packages/web.scm:6572 msgid "" "This package includes Clearsilver, the CGI kit and HTML templating\n" "system." msgstr "" -#: gnu/packages/web.scm:6594 +#: gnu/packages/web.scm:6591 msgid "" "Py-ubjson is a Python module providing an Universal Binary JSON\n" "encoder/decoder based on the draft-12 specification for UBJSON." msgstr "" -#: gnu/packages/web.scm:6689 +#: gnu/packages/web.scm:6686 msgid "" "Apache Tomcat is a free implementation of the Java\n" "Servlet, JavaServer Pages, Java Expression Language and Java WebSocket\n" "technologies." msgstr "" -#: gnu/packages/web.scm:6743 +#: gnu/packages/web.scm:6740 msgid "" "This package contains helper classes for testing the Jetty\n" "Web Server." msgstr "" -#: gnu/packages/web.scm:6802 +#: gnu/packages/web.scm:6799 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides utility classes." msgstr "" -#: gnu/packages/web.scm:6880 +#: gnu/packages/web.scm:6877 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides IO-related utility classes." msgstr "" -#: gnu/packages/web.scm:6925 +#: gnu/packages/web.scm:6922 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides HTTP-related utility classes." msgstr "" -#: gnu/packages/web.scm:6959 +#: gnu/packages/web.scm:6956 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides the JMX management." msgstr "" -#: gnu/packages/web.scm:7045 +#: gnu/packages/web.scm:7042 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21826,7 +22068,7 @@ msgid "" "artifact." msgstr "" -#: gnu/packages/web.scm:7088 +#: gnu/packages/web.scm:7085 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21834,7 +22076,7 @@ msgid "" "infrastructure" msgstr "" -#: gnu/packages/web.scm:7144 +#: gnu/packages/web.scm:7141 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21842,14 +22084,14 @@ msgid "" "container." msgstr "" -#: gnu/packages/web.scm:7308 +#: gnu/packages/web.scm:7305 msgid "" "Jsoup is a Java library for working with real-world HTML. It\n" "provides a very convenient API for extracting and manipulating data, using the\n" "best of DOM, CSS, and jQuery-like methods." msgstr "" -#: gnu/packages/web.scm:7337 +#: gnu/packages/web.scm:7334 msgid "" "Signpost is the easy and intuitive solution for signing\n" "HTTP messages on the Java platform in conformance with the OAuth Core 1.0a\n" @@ -21857,7 +22099,7 @@ msgid "" "combine it with different HTTP messaging layers." msgstr "" -#: gnu/packages/web.scm:7360 +#: gnu/packages/web.scm:7357 msgid "" "Tidyp is a program that can validate your HTML, as well as\n" "modify it to be more clean and standard. tidyp does not validate HTML 5.\n" @@ -21867,14 +22109,14 @@ msgid "" "based on this library, allowing Perl programmers to easily validate HTML." msgstr "" -#: gnu/packages/web.scm:7401 +#: gnu/packages/web.scm:7398 msgid "" "@code{HTML::Tidy} is an HTML checker in a handy dandy\n" "object. It's meant as a replacement for @code{HTML::Lint}, which is written\n" "in Perl but is not nearly as capable as @code{HTML::Tidy}." msgstr "" -#: gnu/packages/web.scm:7430 +#: gnu/packages/web.scm:7427 msgid "" "Geomyidae is a server for distributed hypertext protocol Gopher. Its\n" "features include:\n" @@ -21888,14 +22130,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/web.scm:7478 +#: gnu/packages/web.scm:7475 msgid "" "Cat avatar generator is a generator of cat pictures optimised\n" "to generate random avatars, or defined avatar from a \"seed\". This is a\n" "derivation by David Revoy from the original MonsterID by Andreas Gohr." msgstr "" -#: gnu/packages/web.scm:7548 +#: gnu/packages/web.scm:7545 msgid "" "nghttp2 implements the Hypertext Transfer Protocol, version\n" "2 (@dfn{HTTP/2}).\n" @@ -21921,14 +22163,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7647 +#: gnu/packages/web.scm:7644 msgid "" "Hpcguix-web provides a web interface to the list of packages\n" "provided by Guix. The list of packages is searchable and provides\n" "instructions on how to use Guix in a shared HPC environment." msgstr "" -#: gnu/packages/web.scm:7668 +#: gnu/packages/web.scm:7665 msgid "" "HTTrack allows you to download a World Wide Web site from\n" "the Internet to a local directory, building recursively all directories,\n" @@ -21942,7 +22184,7 @@ msgid "" "HTTrack is fully configurable, and has an integrated help system." msgstr "" -#: gnu/packages/web.scm:7703 +#: gnu/packages/web.scm:7700 msgid "" "buku is a powerful bookmark manager written in Python3 and SQLite3.\n" "@command{buku} can auto-import bookmarks from your browser and present them\n" @@ -21951,7 +22193,7 @@ msgid "" "@command{bukuserver}." msgstr "" -#: gnu/packages/web.scm:7724 +#: gnu/packages/web.scm:7721 msgid "" "Anonip masks the last bits of IPv4 and IPv6 addresses in log files.\n" "That way most of the relevant information is preserved, while the IP address\n" @@ -21966,7 +22208,7 @@ msgid "" "Anonip can also be uses as a Python module in your own Python application." msgstr "" -#: gnu/packages/web.scm:7758 +#: gnu/packages/web.scm:7755 msgid "" "Poussetaches (which literally means \"push tasks\" in\n" "French) is a lightweight asynchronous task execution service that aims to\n" @@ -21978,7 +22220,7 @@ msgid "" "returned." msgstr "" -#: gnu/packages/web.scm:7783 +#: gnu/packages/web.scm:7780 msgid "" "htmlcxx is a simple non-validating CSS1 and HTML parser for\n" "C++. Although there are several other HTML parsers available, htmlcxx has some\n" @@ -21996,7 +22238,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:7827 +#: gnu/packages/web.scm:7824 msgid "" "libRocket is a C++ user interface package based on the HTML\n" "and CSS standards. libRocket uses the open standards XHTML1.0 and\n" @@ -22013,11 +22255,11 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7869 +#: gnu/packages/web.scm:7866 msgid "gmnisrv is a simple Gemini protocol server written in C." msgstr "" -#: gnu/packages/web.scm:7900 +#: gnu/packages/web.scm:7898 msgid "" "The openZIM project proposes offline storage solutions for\n" "content coming from the Web. The zimlib is the standard implementation of the\n" @@ -22049,14 +22291,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:8081 +#: gnu/packages/web.scm:8078 msgid "" "uriparser is a strictly RFC 3986 compliant URI parsing and\n" "handling library written in C89 (\"ANSI C\"). uriparser is fast and supports\n" "Unicode." msgstr "" -#: gnu/packages/web.scm:8115 +#: gnu/packages/web.scm:8112 msgid "" "Quark is an extremely small and simple HTTP GET/HEAD only\n" "web server for static content. TLS is not natively supported and should be\n" @@ -22226,53 +22468,53 @@ msgid "" "Enhancement}." msgstr "" -#: gnu/services/base.scm:276 +#: gnu/services/base.scm:279 msgid "" "Populate the @file{/etc/fstab} based on the given file\n" "system objects." msgstr "" -#: gnu/services/base.scm:314 +#: gnu/services/base.scm:317 msgid "" "Take care of syncing the root file\n" "system and of remounting it read-only when the system shuts down." msgstr "" -#: gnu/services/base.scm:481 +#: gnu/services/base.scm:484 msgid "" "Provide Shepherd services to mount and unmount the given\n" "file systems, as well as corresponding @file{/etc/fstab} entries." msgstr "" -#: gnu/services/base.scm:579 +#: gnu/services/base.scm:582 msgid "" "Seed the @file{/dev/urandom} pseudo-random number\n" "generator (RNG) with the value recorded when the system was last shut\n" "down." msgstr "" -#: gnu/services/base.scm:611 +#: gnu/services/base.scm:614 msgid "" "Run the @command{rngd} random number generation daemon to\n" "supply entropy to the kernel's pool." msgstr "" -#: gnu/services/base.scm:640 +#: gnu/services/base.scm:643 msgid "Initialize the machine's host name." msgstr "" -#: gnu/services/base.scm:670 +#: gnu/services/base.scm:673 msgid "Ensure the Linux virtual terminals run in UTF-8 mode." msgstr "" -#: gnu/services/base.scm:683 +#: gnu/services/base.scm:686 msgid "" "@emph{This service is deprecated in favor of the\n" "@code{keyboard-layout} field of @code{operating-system}.} Load the given list\n" "of console keymaps with @command{loadkeys}." msgstr "" -#: gnu/services/base.scm:743 +#: gnu/services/base.scm:746 msgid "" "Install the given fonts on the specified ttys (fonts are per\n" "virtual console on GNU/Linux). The value of this service is a list of\n" @@ -22290,66 +22532,66 @@ msgid "" "@end example\n" msgstr "" -#: gnu/services/base.scm:795 +#: gnu/services/base.scm:798 msgid "" "Provide a console log-in service as specified by its\n" "configuration value, a @code{login-configuration} object." msgstr "" -#: gnu/services/base.scm:1063 +#: gnu/services/base.scm:1066 msgid "" "Provide console login using the @command{agetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1128 +#: gnu/services/base.scm:1131 msgid "" "Provide console login using the @command{mingetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1345 +#: gnu/services/base.scm:1348 msgid "" "Runs libc's @dfn{name service cache daemon} (nscd) with the\n" "given configuration---an @code{} object. @xref{Name\n" "Service Switch}, for an example." msgstr "" -#: gnu/services/base.scm:1384 +#: gnu/services/base.scm:1387 msgid "" "Run the syslog daemon, @command{syslogd}, which is\n" "responsible for logging system messages." msgstr "" -#: gnu/services/base.scm:1448 +#: gnu/services/base.scm:1451 msgid "" "Install the specified resource usage limits by populating\n" "@file{/etc/security/limits.conf} and using the @code{pam_limits}\n" "authentication module." msgstr "" -#: gnu/services/base.scm:1794 +#: gnu/services/base.scm:1804 msgid "Run the build daemon of GNU@tie{}Guix, aka. @command{guix-daemon}." msgstr "" -#: gnu/services/base.scm:1944 +#: gnu/services/base.scm:1961 msgid "" "Add a Shepherd service running @command{guix publish}, a\n" "command that allows you to share pre-built binaries with others over HTTP." msgstr "" -#: gnu/services/base.scm:2150 +#: gnu/services/base.scm:2167 msgid "" "Run @command{udev}, which populates the @file{/dev}\n" "directory dynamically. Get extra rules from the packages listed in the\n" "@code{rules} field of its value, @code{udev-configuration} object." msgstr "" -#: gnu/services/base.scm:2267 +#: gnu/services/base.scm:2284 msgid "Turn on the virtual memory swap area." msgstr "" -#: gnu/services/base.scm:2309 +#: gnu/services/base.scm:2326 msgid "" "Run GPM, the general-purpose mouse daemon, with the given\n" "command-line options. GPM allows users to use the mouse in the console,\n" @@ -22357,33 +22599,33 @@ msgid "" "@code{ps2} protocol, which works for both USB and PS/2 mice." msgstr "" -#: gnu/services/base.scm:2382 +#: gnu/services/base.scm:2399 msgid "" "Start the @command{kmscon} virtual terminal emulator for the\n" "Linux @dfn{kernel mode setting} (KMS)." msgstr "" -#: gnu/services/base.scm:2403 +#: gnu/services/base.scm:2416 #, scheme-format msgid "address '~a' lacks a network mask" msgstr "" -#: gnu/services/base.scm:2409 +#: gnu/services/base.scm:2422 #, scheme-format msgid "Write, say, @samp{\"~a/24\"} for a 24-bit network mask." msgstr "" -#: gnu/services/base.scm:2489 +#: gnu/services/base.scm:2502 #, scheme-format msgid "network links are currently ignored on GNU/Hurd~%" msgstr "" -#: gnu/services/base.scm:2514 +#: gnu/services/base.scm:2527 #, scheme-format msgid "ignoring network route for '~a'~%" msgstr "" -#: gnu/services/base.scm:2698 +#: gnu/services/base.scm:2711 msgid "" "Turn up the specified network interfaces upon startup,\n" "with the given IP address, gateway, netmask, and so on. The value for\n" diff --git a/po/packages/pt_BR.po b/po/packages/pt_BR.po index a54dc41857..a58afd124e 100644 --- a/po/packages/pt_BR.po +++ b/po/packages/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: guix 0.4-pre2\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" "PO-Revision-Date: 2021-05-22 01:17+0000\n" "Last-Translator: Thiago Jung Bauermann \n" "Language-Team: Portuguese (Brazil) \n" @@ -42,20 +42,20 @@ msgstr "" msgid "This package provides a dictionary for the GNU Aspell spell checker." msgstr "" -#: gnu/packages/aspell.scm:445 gnu/packages/libreoffice.scm:845 +#: gnu/packages/aspell.scm:450 gnu/packages/libreoffice.scm:845 #: gnu/packages/libreoffice.scm:918 msgid "" "This package provides a dictionary for the Hunspell spell-checking\n" "library." msgstr "" -#: gnu/packages/aspell.scm:525 +#: gnu/packages/aspell.scm:530 msgid "" "Ispell is an interactive spell-checking tool supporting many\n" "European languages." msgstr "" -#: gnu/packages/audio.scm:197 +#: gnu/packages/audio.scm:198 msgid "" "OpenSLES is a royalty-free, cross-platform,\n" "hardware-accelerated audio API tuned for embedded systems. It provides a\n" @@ -66,31 +66,31 @@ msgid "" "promoting the market for advanced audio." msgstr "" -#: gnu/packages/audio.scm:233 +#: gnu/packages/audio.scm:234 msgid "" "WildMIDI is a simple software midi player which has a core\n" "softsynth library that can be use with other applications." msgstr "" -#: gnu/packages/audio.scm:257 +#: gnu/packages/audio.scm:258 msgid "" "WebRTC-Audio-Processing library based on Google's\n" "implementation of WebRTC." msgstr "" -#: gnu/packages/audio.scm:277 +#: gnu/packages/audio.scm:278 msgid "" "VO-AACENC is the VisualOn implementation of Advanced Audio\n" "Coding (AAC) encoder." msgstr "" -#: gnu/packages/audio.scm:306 +#: gnu/packages/audio.scm:307 msgid "" "TinyALSA is a small library to interface with ALSA in the\n" "Linux kernel." msgstr "" -#: gnu/packages/audio.scm:329 +#: gnu/packages/audio.scm:330 msgid "" "Game-music-emu is a collection of video game music file emulators that\n" "support the following formats and systems:\n" @@ -116,43 +116,43 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/audio.scm:393 +#: gnu/packages/audio.scm:394 msgid "" "LibOpenMPT is a cross-platform C++ and C module playback\n" "library. It is based on the player code of the Open ModPlug Tracker project." msgstr "" -#: gnu/packages/audio.scm:424 +#: gnu/packages/audio.scm:425 msgid "" "LibOFA is an audio fingerprint library, created and provided\n" "by MusicIP." msgstr "" -#: gnu/packages/audio.scm:445 +#: gnu/packages/audio.scm:446 msgid "FAAC is an MPEG-4 and MPEG-2 AAC encoder." msgstr "" -#: gnu/packages/audio.scm:474 +#: gnu/packages/audio.scm:475 msgid "" "LibTiMidity is a MIDI to WAVE converter library that uses\n" "Gravis Ultrasound-compatible patch files to generate digital audio data from\n" "General MIDI files." msgstr "" -#: gnu/packages/audio.scm:499 +#: gnu/packages/audio.scm:500 msgid "" "VO-AMR is a library of VisualOn implementation of\n" "Adaptive Multi Rate Narrowband and Wideband (AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:518 +#: gnu/packages/audio.scm:519 msgid "" "OpenCore-AMR is a library of OpenCORE Framework\n" "implementation of Adaptive Multi Rate Narrowband and Wideband\n" "(AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:551 +#: gnu/packages/audio.scm:552 msgid "" "AlsaModularSynth is a digital implementation of a classical analog\n" "modular synthesizer system. It uses virtual control voltages to control the\n" @@ -161,7 +161,7 @@ msgid "" "Filter) modules follow the convention of 1V / Octave." msgstr "" -#: gnu/packages/audio.scm:588 +#: gnu/packages/audio.scm:589 msgid "" "aubio is a tool designed for the extraction of annotations from audio\n" "signals. Its features include segmenting a sound file before each of its\n" @@ -169,21 +169,21 @@ msgid "" "streams from live audio." msgstr "" -#: gnu/packages/audio.scm:719 +#: gnu/packages/audio.scm:720 msgid "" "Ardour is a multi-channel digital audio workstation, allowing users to\n" "record, edit, mix and master audio and MIDI projects. It is targeted at audio\n" "engineers, musicians, soundtrack editors and composers." msgstr "" -#: gnu/packages/audio.scm:833 +#: gnu/packages/audio.scm:853 msgid "" "Audacity is a multi-track audio editor designed for recording, playing\n" "and editing digital audio. It features digital effects and spectrum analysis\n" "tools." msgstr "" -#: gnu/packages/audio.scm:889 +#: gnu/packages/audio.scm:909 msgid "" "This is an open-source version of SGI's audiofile library.\n" "It provides a uniform programming interface for processing of audio data to\n" @@ -194,14 +194,14 @@ msgid "" "G.711 mu-law and A-law." msgstr "" -#: gnu/packages/audio.scm:931 +#: gnu/packages/audio.scm:951 msgid "" "Autotalent is a LADSPA plugin for real-time pitch-correction. Among its\n" "controls are allowable notes, strength of correction, LFO for vibrato and\n" "formant warp." msgstr "" -#: gnu/packages/audio.scm:972 +#: gnu/packages/audio.scm:992 msgid "" "AZR-3 is a port of the free VST plugin AZR-3. It is a tonewheel organ\n" "with drawbars, distortion and rotating speakers. The organ has three\n" @@ -210,7 +210,7 @@ msgid "" "plugins are provided." msgstr "" -#: gnu/packages/audio.scm:1011 +#: gnu/packages/audio.scm:1031 msgid "" "Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments.\n" "The suite contains lots of effects (delay, modulation, signal processing,\n" @@ -219,31 +219,31 @@ msgid "" "tools (analyzer, mono/stereo tools, crossovers)." msgstr "" -#: gnu/packages/audio.scm:1053 +#: gnu/packages/audio.scm:1073 msgid "" "LV2 port of CAPS, a collection of audio plugins comprising basic virtual\n" "guitar amplification and a small range of classic effects, signal processors and\n" "generators of mostly elementary and occasionally exotic nature." msgstr "" -#: gnu/packages/audio.scm:1094 +#: gnu/packages/audio.scm:1114 msgid "" "The infamous plugins are a collection of LV2 audio plugins for live\n" "performances. The plugins include a cellular automaton synthesizer, an\n" "envelope follower, distortion effects, tape effects and more." msgstr "" -#: gnu/packages/audio.scm:1129 +#: gnu/packages/audio.scm:1149 msgid "" "Snapcast is a multi-room client-server audio player. Clients are time\n" "synchronized with the server to play synced audio." msgstr "" -#: gnu/packages/audio.scm:1159 +#: gnu/packages/audio.scm:1179 msgid "This package provides Steve Harris's LADSPA plugins." msgstr "" -#: gnu/packages/audio.scm:1199 +#: gnu/packages/audio.scm:1219 msgid "" "Swh-plugins-lv2 is a collection of audio plugins in LV2 format. Plugin\n" "classes include: dynamics (compressor, limiter), time (delay, chorus,\n" @@ -251,13 +251,13 @@ msgid "" "emulation (valve, tape), bit fiddling (decimator, pointer-cast), etc." msgstr "" -#: gnu/packages/audio.scm:1233 +#: gnu/packages/audio.scm:1253 msgid "" "@code{libdjinterop} is a C++ library that allows access to database\n" "formats used to store information about DJ record libraries." msgstr "" -#: gnu/packages/audio.scm:1295 gnu/packages/audio.scm:1326 +#: gnu/packages/audio.scm:1315 gnu/packages/audio.scm:1346 msgid "" "Tao is a software package for sound synthesis using physical\n" "models. It provides a virtual acoustic material constructed from masses and\n" @@ -267,13 +267,13 @@ msgid "" "object library." msgstr "" -#: gnu/packages/audio.scm:1361 +#: gnu/packages/audio.scm:1381 msgid "" "Csound is a user-programmable and user-extensible sound processing\n" "language and software synthesizer." msgstr "" -#: gnu/packages/audio.scm:1388 +#: gnu/packages/audio.scm:1408 msgid "" "midicomp can manipulate SMF (Standard MIDI File) files. It can both\n" " read and write SMF files in 0 or format 1 and also read and write its own\n" @@ -282,20 +282,20 @@ msgid "" " language, and recompiled back into a binary SMF file." msgstr "" -#: gnu/packages/audio.scm:1435 +#: gnu/packages/audio.scm:1455 msgid "" "clalsadrv is a C++ wrapper around the ALSA API simplifying access to\n" "ALSA PCM devices." msgstr "" -#: gnu/packages/audio.scm:1474 +#: gnu/packages/audio.scm:1494 msgid "" "The AMB plugins are a set of LADSPA ambisonics plugins, mainly to be\n" "used within Ardour. Features include: mono and stereo to B-format panning,\n" "horizontal rotator, square, hexagon and cube decoders." msgstr "" -#: gnu/packages/audio.scm:1511 +#: gnu/packages/audio.scm:1531 msgid "" "This package provides various LADSPA plugins. @code{cs_chorus} and\n" "@code{cs_phaser} provide chorus and phaser effects, respectively;\n" @@ -305,13 +305,13 @@ msgid "" "the non-linear circuit elements of their original analog counterparts." msgstr "" -#: gnu/packages/audio.scm:1551 +#: gnu/packages/audio.scm:1571 msgid "" "This package provides a stereo reverb LADSPA plugin based on the\n" "well-known greverb." msgstr "" -#: gnu/packages/audio.scm:1587 +#: gnu/packages/audio.scm:1607 msgid "" "This package provides a LADSPA plugin for a four-band parametric\n" "equalizer. Each section has an active/bypass switch, frequency, bandwidth and\n" @@ -326,13 +326,13 @@ msgid "" "for stage use." msgstr "" -#: gnu/packages/audio.scm:1632 +#: gnu/packages/audio.scm:1652 msgid "" "This package provides a LADSPA plugin to manipulate the stereo width of\n" "audio signals." msgstr "" -#: gnu/packages/audio.scm:1669 +#: gnu/packages/audio.scm:1689 msgid "" "The @code{blvco} LADSPA plugin provides three anti-aliased oscillators:\n" "\n" @@ -347,17 +347,17 @@ msgid "" "output of analog synthesizers such as the Moog Voyager." msgstr "" -#: gnu/packages/audio.scm:1713 +#: gnu/packages/audio.scm:1733 msgid "" "This package provides a LADSPA plugin for a Wah effect with envelope\n" "follower." msgstr "" -#: gnu/packages/audio.scm:1749 +#: gnu/packages/audio.scm:1769 msgid "This package provides a LADSPA plugin for a stereo reverb effect." msgstr "" -#: gnu/packages/audio.scm:1791 +#: gnu/packages/audio.scm:1811 msgid "" "FluidSynth is a real-time software synthesizer based on the SoundFont 2\n" "specifications. FluidSynth reads and handles MIDI events from the MIDI input\n" @@ -365,21 +365,21 @@ msgid "" "also play midifiles using a Soundfont." msgstr "" -#: gnu/packages/audio.scm:1814 +#: gnu/packages/audio.scm:1834 msgid "FAAD2 is an MPEG-4 and MPEG-2 AAC decoder supporting LC, Main, LTP, SBR, -PS, and DAB+." msgstr "" -#: gnu/packages/audio.scm:1855 +#: gnu/packages/audio.scm:1875 msgid "Faust is a programming language for realtime audio signal processing." msgstr "" -#: gnu/packages/audio.scm:1919 +#: gnu/packages/audio.scm:1939 msgid "" "FreePats is a project to create a free and open set of GUS compatible\n" "patches that can be used with softsynths such as Timidity and WildMidi." msgstr "" -#: gnu/packages/audio.scm:1972 +#: gnu/packages/audio.scm:1992 msgid "" "Guitarix is a virtual guitar amplifier running JACK.\n" "Guitarix takes the signal from your guitar as a mono-signal from your sound\n" @@ -390,7 +390,7 @@ msgid "" "auto-wah." msgstr "" -#: gnu/packages/audio.scm:2028 +#: gnu/packages/audio.scm:2048 msgid "" "Rakarrack is a richly featured multi-effects processor emulating a\n" "guitar effects pedalboard. Effects include compressor, expander, noise gate,\n" @@ -402,14 +402,14 @@ msgid "" "well suited to all musical instruments and vocals." msgstr "" -#: gnu/packages/audio.scm:2084 +#: gnu/packages/audio.scm:2104 msgid "" "IR is a low-latency, real-time, high performance signal convolver\n" "especially for creating reverb effects. It supports impulse responses with 1,\n" "2 or 4 channels, in any soundfile format supported by libsndfile." msgstr "" -#: gnu/packages/audio.scm:2124 +#: gnu/packages/audio.scm:2144 msgid "" "JACK is a low-latency audio server. It can connect a number of\n" "different applications to an audio device, as well as allowing them to share\n" @@ -419,20 +419,20 @@ msgid "" "synchronous execution of all clients, and low latency operation." msgstr "" -#: gnu/packages/audio.scm:2220 +#: gnu/packages/audio.scm:2240 msgid "" "Jalv is a simple but fully featured LV2 host for JACK. It runs LV2\n" "plugins and exposes their ports as JACK ports, essentially making any LV2\n" "plugin function as a JACK application." msgstr "" -#: gnu/packages/audio.scm:2266 +#: gnu/packages/audio.scm:2286 msgid "" "LADSPA is a standard that allows software audio processors and effects\n" "to be plugged into a wide range of audio synthesis and recording packages." msgstr "" -#: gnu/packages/audio.scm:2318 +#: gnu/packages/audio.scm:2338 msgid "" "LASH is a session management system for audio applications. It allows\n" "you to save and restore audio sessions consisting of multiple interconneced\n" @@ -440,7 +440,7 @@ msgid "" "connections between them." msgstr "" -#: gnu/packages/audio.scm:2341 +#: gnu/packages/audio.scm:2361 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is\n" "designed to improve headphone listening of stereo audio records. Recommended\n" @@ -448,7 +448,7 @@ msgid "" "essential distortions." msgstr "" -#: gnu/packages/audio.scm:2364 +#: gnu/packages/audio.scm:2384 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and\n" "plugins is designed to improve headphone listening of stereo audio records.\n" @@ -457,13 +457,13 @@ msgid "" "with applications that support them (e.g. PulseAudio)." msgstr "" -#: gnu/packages/audio.scm:2390 +#: gnu/packages/audio.scm:2410 msgid "" "liblo is a lightweight library that provides an easy to use\n" "implementation of the Open Sound Control (@dfn{OSC}) protocol." msgstr "" -#: gnu/packages/audio.scm:2426 +#: gnu/packages/audio.scm:2446 msgid "" "RtAudio is a set of C++ classes that provides a common API for real-time\n" "audio input/output. It was designed with the following objectives:\n" @@ -482,13 +482,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/audio.scm:2462 +#: gnu/packages/audio.scm:2482 msgid "" "This package provides bindings for PortAudio v19, the\n" "cross-platform audio input/output stream library." msgstr "" -#: gnu/packages/audio.scm:2489 +#: gnu/packages/audio.scm:2509 msgid "" "Pyliblo is a Python wrapper for the liblo Open Sound Control (OSC)\n" "library. It supports almost the complete functionality of liblo, allowing you\n" @@ -496,19 +496,19 @@ msgid "" "included are the command line utilities @code{send_osc} and @code{dump_osc}." msgstr "" -#: gnu/packages/audio.scm:2526 +#: gnu/packages/audio.scm:2546 msgid "" "This package provides python bindings for libsndfile based on\n" "CFFI and NumPy." msgstr "" -#: gnu/packages/audio.scm:2544 +#: gnu/packages/audio.scm:2564 msgid "" "This package provides a python API to read and write MIDI\n" "files." msgstr "" -#: gnu/packages/audio.scm:2581 +#: gnu/packages/audio.scm:2601 msgid "" "@command{audio-to-midi} converts audio files to multichannel\n" "MIDI files. It accomplishes this by performing FFTs on all channels of the\n" @@ -518,14 +518,14 @@ msgid "" "frequencies. This data is then formatted to MIDI and written to disk." msgstr "" -#: gnu/packages/audio.scm:2624 +#: gnu/packages/audio.scm:2644 msgid "" "Lilv is a C library to make the use of LV2 plugins as simple as possible\n" "for applications. Lilv is the successor to SLV2, rewritten to be\n" "significantly faster and have minimal dependencies." msgstr "" -#: gnu/packages/audio.scm:2652 +#: gnu/packages/audio.scm:2672 msgid "" "LV2 is an open specification for audio plugins and host applications.\n" "At its core, LV2 is a simple stable interface, accompanied by extensions which\n" @@ -533,22 +533,22 @@ msgid "" "software." msgstr "" -#: gnu/packages/audio.scm:2688 +#: gnu/packages/audio.scm:2708 msgid "An LV2 port of the mda Piano VSTi." msgstr "" -#: gnu/packages/audio.scm:2702 +#: gnu/packages/audio.scm:2722 msgid "An LV2 port of the mda EPiano VSTi." msgstr "" -#: gnu/packages/audio.scm:2732 +#: gnu/packages/audio.scm:2752 msgid "" "The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and\n" "extensions into easy to use C++ classes. It is the successor of\n" "lv2-c++-tools." msgstr "" -#: gnu/packages/audio.scm:2774 +#: gnu/packages/audio.scm:2794 msgid "" "OpenAL provides capabilities for playing audio in a virtual 3D\n" "environment. Distance attenuation, doppler shift, and directional sound\n" @@ -558,36 +558,36 @@ msgid "" "buffers, and audio capture." msgstr "" -#: gnu/packages/audio.scm:2805 +#: gnu/packages/audio.scm:2825 msgid "freealut is the OpenAL Utility Toolkit." msgstr "" -#: gnu/packages/audio.scm:2837 +#: gnu/packages/audio.scm:2857 msgid "" "Patchage is a modular patch bay for audio and MIDI systems based on JACK\n" "and ALSA." msgstr "" -#: gnu/packages/audio.scm:2862 +#: gnu/packages/audio.scm:2882 msgid "" "The Portable C Audio Library (pcaudiolib) provides a C@tie{}API to\n" "different audio devices such as ALSA or PulseAudio." msgstr "" -#: gnu/packages/audio.scm:2889 +#: gnu/packages/audio.scm:2909 msgid "" "Control a Jack server. Allows you to plug various sources\n" "into various outputs and to start, stop and configure jackd" msgstr "" -#: gnu/packages/audio.scm:2921 +#: gnu/packages/audio.scm:2941 msgid "" "QJackRcd is a simple graphical stereo recorder for JACK\n" "supporting silence processing for automatic pause, file splitting, and\n" "background file post-processing." msgstr "" -#: gnu/packages/audio.scm:3029 +#: gnu/packages/audio.scm:3049 msgid "" "SuperCollider is a synthesis engine (@code{scsynth} or\n" "@code{supernova}) and programming language (@code{sclang}). It can be used\n" @@ -599,17 +599,17 @@ msgid "" "using Guix System." msgstr "" -#: gnu/packages/audio.scm:3057 +#: gnu/packages/audio.scm:3077 msgid "This package provides libshout plus IDJC extensions." msgstr "" -#: gnu/packages/audio.scm:3083 +#: gnu/packages/audio.scm:3103 msgid "" "Raul (Real-time Audio Utility Library) is a C++ utility library primarily\n" "aimed at audio/musical applications." msgstr "" -#: gnu/packages/audio.scm:3119 +#: gnu/packages/audio.scm:3139 msgid "" "This package contains the @command{resample} and\n" "@command{windowfilter} command line utilities. The @command{resample} command\n" @@ -618,26 +618,26 @@ msgid "" "filters using the so-called @emph{window method}." msgstr "" -#: gnu/packages/audio.scm:3160 +#: gnu/packages/audio.scm:3180 msgid "" "Rubber Band is a library and utility program that permits changing the\n" "tempo and pitch of an audio recording independently of one another." msgstr "" -#: gnu/packages/audio.scm:3184 +#: gnu/packages/audio.scm:3204 msgid "" "RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut, and API specific\n" "classes) that provide a common cross-platform API for realtime MIDI\n" "input/output." msgstr "" -#: gnu/packages/audio.scm:3210 +#: gnu/packages/audio.scm:3230 msgid "" "Sratom is a library for serialising LV2 atoms to/from RDF, particularly\n" "the Turtle syntax." msgstr "" -#: gnu/packages/audio.scm:3238 +#: gnu/packages/audio.scm:3258 msgid "" "Suil is a lightweight C library for loading and wrapping LV2 plugin UIs.\n" "\n" @@ -649,13 +649,13 @@ msgid "" "Suil currently supports every combination of Gtk, Qt, and X11." msgstr "" -#: gnu/packages/audio.scm:3270 +#: gnu/packages/audio.scm:3290 msgid "" "@code{libebur128} is a C library that implements the EBU R 128 standard\n" "for loudness normalisation." msgstr "" -#: gnu/packages/audio.scm:3324 +#: gnu/packages/audio.scm:3344 msgid "" "TiMidity++ is a software synthesizer. It can play MIDI files by\n" "converting them into PCM waveform data; give it a MIDI data along with digital\n" @@ -664,33 +664,33 @@ msgid "" "disks as various audio file formats." msgstr "" -#: gnu/packages/audio.scm:3364 +#: gnu/packages/audio.scm:3384 msgid "" "Vamp is an audio processing plugin system for plugins that extract\n" "descriptive information from audio data — typically referred to as audio\n" "analysis plugins or audio feature extraction plugins." msgstr "" -#: gnu/packages/audio.scm:3408 +#: gnu/packages/audio.scm:3428 msgid "" "SBSMS (Subband Sinusoidal Modeling Synthesis) is software for time\n" "stretching and pitch scaling of audio. This package contains the library." msgstr "" -#: gnu/packages/audio.scm:3435 +#: gnu/packages/audio.scm:3455 msgid "" "@code{libkeyfinder} is a small C++11 library for estimating the musical\n" "key of digital audio." msgstr "" -#: gnu/packages/audio.scm:3465 +#: gnu/packages/audio.scm:3485 msgid "" "WavPack is an audio compression format with lossless, lossy and hybrid\n" "compression modes. This package contains command-line programs and library to\n" "encode and decode wavpack files." msgstr "" -#: gnu/packages/audio.scm:3486 +#: gnu/packages/audio.scm:3506 msgid "" "Libmodplug renders mod music files as raw audio data, for playing or\n" "conversion. mod, .s3m, .it, .xm, and a number of lesser-known formats are\n" @@ -698,21 +698,21 @@ msgid "" "surround and reverb." msgstr "" -#: gnu/packages/audio.scm:3507 +#: gnu/packages/audio.scm:3527 msgid "" "Libxmp is a library that renders module files to PCM data. It supports\n" "over 90 mainstream and obscure module formats including Protracker (MOD),\n" "Scream Tracker 3 (S3M), Fast Tracker II (XM), and Impulse Tracker (IT)." msgstr "" -#: gnu/packages/audio.scm:3531 +#: gnu/packages/audio.scm:3551 msgid "" "Xmp is a portable module player that plays over 90 mainstream and\n" "obscure module formats, including Protracker MOD, Fasttracker II XM, Scream\n" "Tracker 3 S3M and Impulse Tracker IT files." msgstr "" -#: gnu/packages/audio.scm:3556 +#: gnu/packages/audio.scm:3576 msgid "" "SoundTouch is an audio processing library for changing the tempo, pitch\n" "and playback rates of audio streams or audio files. It is intended for\n" @@ -720,7 +720,7 @@ msgid "" "control functionality, or just for playing around with the sound effects." msgstr "" -#: gnu/packages/audio.scm:3595 +#: gnu/packages/audio.scm:3615 msgid "" "SoX (Sound eXchange) is a command line utility that can convert\n" "various formats of computer audio files to other formats. It can also\n" @@ -728,60 +728,60 @@ msgid "" "can play and record audio files." msgstr "" -#: gnu/packages/audio.scm:3620 +#: gnu/packages/audio.scm:3640 msgid "" "The SoX Resampler library (libsoxr) performs one-dimensional sample-rate\n" "conversion. It may be used, for example, to resample PCM-encoded audio." msgstr "" -#: gnu/packages/audio.scm:3643 +#: gnu/packages/audio.scm:3663 msgid "" "TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder based on\n" "tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code and\n" "portions of LAME." msgstr "" -#: gnu/packages/audio.scm:3699 +#: gnu/packages/audio.scm:3719 msgid "" "PortAudio is a portable C/C++ audio I/O library providing a simple API\n" "to record and/or play sound using a callback function or a blocking read/write\n" "interface." msgstr "" -#: gnu/packages/audio.scm:3728 +#: gnu/packages/audio.scm:3748 msgid "" "Qsynth is a GUI front-end application for the FluidSynth SoundFont\n" "synthesizer written in C++." msgstr "" -#: gnu/packages/audio.scm:3767 +#: gnu/packages/audio.scm:3787 msgid "" "RSound allows you to send audio from an application and transfer it\n" "directly to a different computer on your LAN network. It is an audio daemon\n" "with a much different focus than most other audio daemons." msgstr "" -#: gnu/packages/audio.scm:3797 +#: gnu/packages/audio.scm:3817 msgid "" "XJackFreak is an audio analysis and equalizing tool for the Jack Audio\n" "Connection Kit. It can display the FFT of any input, modify it and output the\n" "result." msgstr "" -#: gnu/packages/audio.scm:3849 +#: gnu/packages/audio.scm:3869 msgid "" "Zita convolver is a C++ library providing a real-time convolution\n" "engine." msgstr "" -#: gnu/packages/audio.scm:3901 +#: gnu/packages/audio.scm:3921 msgid "" "Libzita-resampler is a C++ library for resampling audio signals. It is\n" "designed to be used within a real-time processing context, to be fast, and to\n" "provide high-quality sample rate conversion." msgstr "" -#: gnu/packages/audio.scm:3947 +#: gnu/packages/audio.scm:3967 msgid "" "Zita-alsa-pcmi is a C++ wrapper around the ALSA API. It provides easy\n" "access to ALSA PCM devices, taking care of the many functions required to\n" @@ -789,7 +789,7 @@ msgid "" "point audio data." msgstr "" -#: gnu/packages/audio.scm:3971 +#: gnu/packages/audio.scm:3991 msgid "" "Cuetools is a set of programs that are useful for manipulating\n" "and using CUE sheet (cue) files and Table of Contents (toc) files. CUE and TOC\n" @@ -797,14 +797,14 @@ msgid "" "machine-readable ASCII format." msgstr "" -#: gnu/packages/audio.scm:4000 +#: gnu/packages/audio.scm:4020 msgid "" "mp3guessenc is a command line utility that tries to detect the\n" "encoder used for an MPEG Layer III (MP3) file, as well as scan any MPEG audio\n" "file (any layer) and print a lot of useful information." msgstr "" -#: gnu/packages/audio.scm:4021 +#: gnu/packages/audio.scm:4041 msgid "" "shntool is a multi-purpose WAVE data processing and reporting\n" "utility. File formats are abstracted from its core, so it can process any file\n" @@ -813,46 +813,46 @@ msgid "" "use them split WAVE data into multiple files." msgstr "" -#: gnu/packages/audio.scm:4061 +#: gnu/packages/audio.scm:4081 msgid "" "Dcadec is a DTS Coherent Acoustics surround sound decoder\n" "with support for HD extensions." msgstr "" -#: gnu/packages/audio.scm:4098 +#: gnu/packages/audio.scm:4118 msgid "" "BS1770GAIN is a loudness scanner compliant with ITU-R BS.1770 and its\n" "flavors EBU R128, ATSC A/85, and ReplayGain 2.0. It helps normalizing the\n" "loudness of audio and video files to the same level." msgstr "" -#: gnu/packages/audio.scm:4130 +#: gnu/packages/audio.scm:4150 msgid "" "An easy to use audio filtering library made from webrtc\n" "code, used in @code{libtoxcore}." msgstr "" -#: gnu/packages/audio.scm:4183 +#: gnu/packages/audio.scm:4203 msgid "" "This C library provides an encoder and a decoder for the GSM\n" "06.10 RPE-LTP lossy speech compression algorithm." msgstr "" -#: gnu/packages/audio.scm:4206 +#: gnu/packages/audio.scm:4226 msgid "" "This package contains wrappers for accessing the ALSA API from Python.\n" "It is currently fairly complete for PCM devices, and has some support for\n" "mixers." msgstr "" -#: gnu/packages/audio.scm:4230 +#: gnu/packages/audio.scm:4250 msgid "" "This package provides an encoder for the LDAC\n" "high-resolution Bluetooth audio streaming codec for streaming at up to 990\n" "kbps at 24 bit/96 kHz." msgstr "" -#: gnu/packages/audio.scm:4274 +#: gnu/packages/audio.scm:4294 msgid "" "This project is a rebirth of a direct integration between\n" "Bluez and ALSA. Since Bluez >= 5, the built-in integration has been removed\n" @@ -865,14 +865,14 @@ msgid "" "on the ALSA software PCM plugin." msgstr "" -#: gnu/packages/audio.scm:4340 +#: gnu/packages/audio.scm:4360 msgid "" "Snd is a sound editor modelled loosely after Emacs. It can be\n" "customized and extended using either the s7 Scheme implementation (included in\n" "the Snd sources), Ruby, or Forth." msgstr "" -#: gnu/packages/audio.scm:4369 +#: gnu/packages/audio.scm:4389 msgid "" "Noise Repellent is an LV2 plugin to reduce noise. It has\n" "the following features:\n" @@ -892,31 +892,31 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/audio.scm:4436 +#: gnu/packages/audio.scm:4456 msgid "" "RNNoise is a library that uses deep learning to apply\n" "noise suppression to audio sources with voice presence. This package provides\n" "an LV2 audio plugin." msgstr "" -#: gnu/packages/audio.scm:4480 +#: gnu/packages/audio.scm:4500 msgid "" "@code{cli-visualizer} displays fast-Fourier\n" "transforms (FFTs) of the sound being played, as well as other graphical\n" "representations." msgstr "" -#: gnu/packages/audio.scm:4530 +#: gnu/packages/audio.scm:4550 msgid "" "C.A.V.A. is a bar audio spectrum visualizer for the terminal\n" "using ALSA, MPD, PulseAudio, or a FIFO buffer as its input." msgstr "" -#: gnu/packages/audio.scm:4564 +#: gnu/packages/audio.scm:4584 msgid "Fluid-3 is Frank Wen's pro-quality GM soundfont." msgstr "" -#: gnu/packages/audio.scm:4586 +#: gnu/packages/audio.scm:4606 msgid "" "FDK is a library for encoding and decoding Advanced Audio\n" "Coding (AAC) format audio, developed by Fraunhofer IIS, and included as part of\n" @@ -927,20 +927,20 @@ msgid "" " surround)." msgstr "" -#: gnu/packages/audio.scm:4626 +#: gnu/packages/audio.scm:4646 msgid "" "OpenShot Audio Library (libopenshot-audio) allows\n" "high-quality editing and playback of audio, and is based on the JUCE\n" "library." msgstr "" -#: gnu/packages/audio.scm:4652 +#: gnu/packages/audio.scm:4672 msgid "" "FAudio is an XAudio reimplementation that focuses solely on\n" "developing fully accurate DirectX Audio runtime libraries." msgstr "" -#: gnu/packages/audio.scm:4679 +#: gnu/packages/audio.scm:4699 msgid "" "Gnaural is a programmable auditory binaural beat synthesizer\n" "intended to be used for brainwave entrainment. Gnaural supports creation of\n" @@ -949,20 +949,20 @@ msgid "" "other Gnaural instances, allowing synchronous sessions between many users." msgstr "" -#: gnu/packages/audio.scm:4714 +#: gnu/packages/audio.scm:4734 msgid "" "DarkIce is a live audio streamer. It takes audio input from\n" "a sound card, encodes it into Ogg Vorbis and/or mp3, and sends the audio\n" "stream to one or more IceCast and/or ShoutCast servers." msgstr "" -#: gnu/packages/audio.scm:4738 +#: gnu/packages/audio.scm:4758 msgid "" "Libltc is a POSIX-C Library for handling\n" "@dfn{Linear/Longitudinal Time Code} (LTC) data." msgstr "" -#: gnu/packages/audio.scm:4772 +#: gnu/packages/audio.scm:4792 msgid "" "TTA performs lossless compression on multichannel 8,16 and 24 bits\n" "data of the Wav audio files. Being lossless means that no data-\n" @@ -973,14 +973,14 @@ msgid "" "supports both of ID3v1/v2 and APEv2 tags." msgstr "" -#: gnu/packages/audio.scm:4805 +#: gnu/packages/audio.scm:4825 msgid "" "@code{libsoundio} is a C library providing audio input and\n" "output. The API is suitable for real-time software such as digital audio\n" "workstations as well as consumer software such as music players." msgstr "" -#: gnu/packages/audio.scm:4831 +#: gnu/packages/audio.scm:4851 msgid "" "Redkite is a small GUI toolkit developed in C++17 and\n" "inspired from other well known GUI toolkits such as Qt and GTK. It is\n" @@ -989,7 +989,7 @@ msgid "" "as is the case with audio plugins." msgstr "" -#: gnu/packages/audio.scm:4903 +#: gnu/packages/audio.scm:4923 msgid "" "Carla is a modular audio plugin host, with features like\n" "transport control, automation of parameters via MIDI CC and remote control\n" @@ -998,7 +998,7 @@ msgid "" "default and preferred audio driver but also supports native drivers like ALSA." msgstr "" -#: gnu/packages/audio.scm:4939 +#: gnu/packages/audio.scm:4959 msgid "" "Ecasound is a software package designed for multitrack audio\n" "processing. It can be used for simple tasks like audio playback, recording and\n" @@ -1010,28 +1010,28 @@ msgid "" "in the package." msgstr "" -#: gnu/packages/audio.scm:4977 +#: gnu/packages/audio.scm:4997 msgid "" "libaudec is a wrapper library over ffmpeg, sndfile and\n" "libsamplerate for reading and resampling audio files, based on Robin Gareus'\n" "@code{audio_decoder} code." msgstr "" -#: gnu/packages/audio.scm:5007 +#: gnu/packages/audio.scm:5027 msgid "" "lv2lint is an LV2 lint-like tool that checks whether a\n" "given plugin and its UI(s) match up with the provided metadata and adhere\n" "to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5041 +#: gnu/packages/audio.scm:5061 msgid "" "lv2toweb allows the user to create an xhtml page with information\n" "about the given LV2 plugin, provided that the plugin and its UI(s) match up\n" "with the provided metadata and adhere to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5069 +#: gnu/packages/audio.scm:5089 msgid "" "ZToolkit (Ztk) is a cross-platform GUI toolkit heavily\n" "inspired by GTK. It handles events and low level drawing on behalf of\n" @@ -1041,7 +1041,7 @@ msgid "" "minimum." msgstr "" -#: gnu/packages/audio.scm:5102 +#: gnu/packages/audio.scm:5122 msgid "" "libInstPatch is a library for processing digital sample based MIDI\n" "instrument \"patch\" files. The types of files libInstPatch supports are used\n" @@ -1050,28 +1050,28 @@ msgid "" "edited, converted, compressed and saved." msgstr "" -#: gnu/packages/audio.scm:5149 +#: gnu/packages/audio.scm:5169 msgid "" "The LSP DSP library provides a set of functions that perform\n" "SIMD-optimized computing on several hardware architectures. All functions\n" "currently operate on IEEE-754 single-precision floating-point numbers." msgstr "" -#: gnu/packages/audio.scm:5180 +#: gnu/packages/audio.scm:5200 msgid "" "Codec 2 is a speech codec designed for communications quality speech\n" "between 700 and 3200 bit/s. The main application is low bandwidth HF/VHF\n" "digital radio." msgstr "" -#: gnu/packages/audio.scm:5206 +#: gnu/packages/audio.scm:5226 msgid "" "The mbelib library provides support for the 7200x4400 bit/s codec used\n" "in P25 Phase 1, the 7100x4400 bit/s codec used in ProVoice and the @emph{Half\n" "Rate} 3600x2250 bit/s vocoder used in various radio systems." msgstr "" -#: gnu/packages/audio.scm:5299 +#: gnu/packages/audio.scm:5319 msgid "" "Ableton Link is a C++ library that synchronizes musical beat, tempo, and phase\n" "across multiple applications running on one or more devices. Applications on devices\n" @@ -1080,20 +1080,20 @@ msgid "" "while still staying in time." msgstr "" -#: gnu/packages/audio.scm:5360 +#: gnu/packages/audio.scm:5380 msgid "" "Butt is a tool to stream audio to a ShoutCast or\n" "Icecast server." msgstr "" -#: gnu/packages/audio.scm:5406 +#: gnu/packages/audio.scm:5426 msgid "" "siggen is a set of tools for imitating a laboratory signal\n" "generator, generating audio signals out of Linux's /dev/dsp audio\n" "device. There is support for mono and/or stereo and 8 or 16 bit samples." msgstr "" -#: gnu/packages/audio.scm:5453 +#: gnu/packages/audio.scm:5473 msgid "" "@code{python-pysox} is a wrapper around the @command{sox}\n" "command line tool. The API offers @code{Transformer} and @code{Combiner}\n" @@ -1103,7 +1103,7 @@ msgid "" "and much more." msgstr "" -#: gnu/packages/audio.scm:5492 +#: gnu/packages/audio.scm:5512 msgid "" "@code{python-resampy} implements the band-limited sinc interpolation\n" "method for sampling rate conversion as described by Julius O. Smith at the\n" @@ -1111,34 +1111,34 @@ msgid "" "Home Page}." msgstr "" -#: gnu/packages/audio.scm:5528 +#: gnu/packages/audio.scm:5548 msgid "" "@code{librosa} is a python package for music and audio analysis. It\n" "provides the building blocks necessary to create music information retrieval\n" "systems." msgstr "" -#: gnu/packages/audio.scm:5561 +#: gnu/packages/audio.scm:5581 msgid "" "MDA-LV2 is an LV2 port of the MDA plugins. It includes effects and a few\n" "instrument plugins." msgstr "" -#: gnu/packages/audio.scm:5593 +#: gnu/packages/audio.scm:5613 msgid "" "The Odio SACD shared library is a decoding engine which takes a Super\n" "Audio CD source and extracts a 24-bit high resolution WAV file. It handles\n" "both DST and DSD streams." msgstr "" -#: gnu/packages/audio.scm:5618 +#: gnu/packages/audio.scm:5638 msgid "" "Odio SACD is a command-line application which takes a Super Audio CD\n" "source and extracts a 24-bit high resolution WAV file. It handles both DST\n" "and DSD streams." msgstr "" -#: gnu/packages/backup.scm:155 +#: gnu/packages/backup.scm:165 msgid "" "Duplicity backs up directories by producing encrypted tar-format volumes\n" "and uploading them to a remote or local file server. Because duplicity uses\n" @@ -1148,7 +1148,7 @@ msgid "" "spying and/or modification by the server." msgstr "" -#: gnu/packages/backup.scm:180 +#: gnu/packages/backup.scm:190 msgid "" "Par2cmdline uses Reed-Solomon error-correcting codes to\n" "generate and verify PAR2 recovery files. These files can be distributed\n" @@ -1160,7 +1160,7 @@ msgid "" "can even repair them." msgstr "" -#: gnu/packages/backup.scm:219 +#: gnu/packages/backup.scm:229 msgid "" "Hdup2 is a backup utility, its aim is to make backup really simple. The\n" "backup scheduling is done by means of a cron job. It supports an\n" @@ -1168,7 +1168,7 @@ msgid "" "backups (called chunks) to allow easy burning to CD/DVD." msgstr "" -#: gnu/packages/backup.scm:316 +#: gnu/packages/backup.scm:326 msgid "" "Libarchive provides a flexible interface for reading and writing\n" "archives in various formats such as tar and cpio. Libarchive also supports\n" @@ -1179,7 +1179,7 @@ msgid "" "random access nor for in-place modification." msgstr "" -#: gnu/packages/backup.scm:380 +#: gnu/packages/backup.scm:390 msgid "" "Rdup is a utility inspired by rsync and the plan9 way of doing backups.\n" "Rdup itself does not backup anything, it only print a list of absolute\n" @@ -1187,7 +1187,7 @@ msgid "" "list and implement the backup strategy." msgstr "" -#: gnu/packages/backup.scm:419 +#: gnu/packages/backup.scm:429 msgid "" "SnapRAID backs up files stored across multiple storage devices, such as\n" "disk arrays, in an efficient way reminiscent of its namesake @acronym{RAID,\n" @@ -1213,7 +1213,7 @@ msgid "" "remain fully idle, saving power and producing less noise." msgstr "" -#: gnu/packages/backup.scm:469 +#: gnu/packages/backup.scm:479 msgid "" "Btar is a tar-compatible archiver which allows arbitrary compression and\n" "ciphering, redundancy, differential backup, indexed extraction, multicore\n" @@ -1221,7 +1221,7 @@ msgid "" "errors." msgstr "" -#: gnu/packages/backup.scm:496 +#: gnu/packages/backup.scm:506 msgid "" "Rdiff-backup backs up one directory to another, possibly over a network.\n" "The target directory ends up a copy of the source directory, but extra reverse\n" @@ -1236,7 +1236,7 @@ msgid "" "rdiff-backup is easy to use and settings have sensible defaults." msgstr "" -#: gnu/packages/backup.scm:532 +#: gnu/packages/backup.scm:542 msgid "" "rsnapshot is a file system snapshot utility based on rsync.\n" "rsnapshot makes it easy to make periodic snapshots of local machines, and\n" @@ -1244,7 +1244,7 @@ msgid "" "rsnapshot uses hard links to deduplicate identical files." msgstr "" -#: gnu/packages/backup.scm:610 +#: gnu/packages/backup.scm:620 msgid "" "Libchop is a set of utilities and library for data backup and\n" "distributed storage. Its main application is @command{chop-backup}, an\n" @@ -1255,17 +1255,17 @@ msgid "" "detection, and lossless compression." msgstr "" -#: gnu/packages/backup.scm:740 +#: gnu/packages/backup.scm:750 msgid "" "Borg is a deduplicating backup program. Optionally, it\n" "supports compression and authenticated encryption. The main goal of Borg is to\n" "provide an efficient and secure way to backup data. The data deduplication\n" "technique used makes Borg suitable for daily backups since only changes are\n" -"stored. The authenticated encryption technique makes it suitable for backups\n" -"to not fully trusted targets. Borg is a fork of Attic." +"stored. The authenticated encryption technique makes it suitable for\n" +"storing backups on untrusted computers." msgstr "" -#: gnu/packages/backup.scm:771 +#: gnu/packages/backup.scm:781 msgid "" "wimlib is a C library and set of command-line utilities for\n" "creating, modifying, extracting, and mounting archives in the Windows Imaging\n" @@ -1273,14 +1273,14 @@ msgid "" "NTFS volumes using @code{ntfs-3g}, preserving NTFS-specific attributes." msgstr "" -#: gnu/packages/backup.scm:879 +#: gnu/packages/backup.scm:889 msgid "" "With dirvish you can maintain a set of complete images of your\n" "file systems with unattended creation and expiration. A dirvish backup vault\n" "is like a time machine for your data." msgstr "" -#: gnu/packages/backup.scm:974 +#: gnu/packages/backup.scm:984 msgid "" "Restic is a program that does backups right and was designed\n" "with the following principles in mind:\n" @@ -1312,7 +1312,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/backup.scm:1025 +#: gnu/packages/backup.scm:1035 msgid "" "ZBackup is a globally-deduplicating backup tool, based on the\n" "ideas found in Rsync. Feed a large @file{.tar} into it, and it will\n" @@ -1325,7 +1325,7 @@ msgid "" "is format-agnostic, so you can feed virtually any files to it." msgstr "" -#: gnu/packages/backup.scm:1061 +#: gnu/packages/backup.scm:1071 msgid "" "Dump examines files in a file system, determines which ones\n" "need to be backed up, and copies those files to a specified disk, tape or\n" @@ -1336,14 +1336,44 @@ msgid "" "interactive mode." msgstr "" -#: gnu/packages/backup.scm:1105 +#: gnu/packages/backup.scm:1131 +msgid "" +"Btrbk is a backup tool for Btrfs subvolumes, taking\n" +"advantage of Btrfs specific capabilities to create atomic snapshots and\n" +"transfer them incrementally to your backup locations. The source and target\n" +"locations are specified in a config file, which allows easily configuring\n" +"simple scenarios like e.g. a @i{laptop with locally attached backup disks}, as\n" +"well as more complex ones, e.g. a @i{server receiving backups from several\n" +"hosts via SSH, with different retention policy}. It has features such as:\n" +"@itemize\n" +"@item atomic snapshots\n" +"@item incremental backups\n" +"@item flexible retention policy\n" +"@item backups to multiple destinations\n" +"@item transfer via SSH\n" +"@item resume backups (for removable and mobile devices)\n" +"@item archive to offline storage\n" +"@item encrypted backups to non-btrfs storage\n" +"@item wildcard subvolumes (useful for Docker and LXC containers)\n" +"@item transaction log\n" +"@item comprehensive list and statistics output\n" +"@item resolve and trace Btrfs parent-child and received-from relationships\n" +"@item list file changes between backups\n" +"@item calculate accurate disk space usage based on block regions.\n" +"@end itemize\n" +"Btrbk is designed to run as a cron job for triggering periodic snapshots and\n" +"backups, as well as from the command line (e.g. for instantly creating\n" +"additional snapshots)." +msgstr "" + +#: gnu/packages/backup.scm:1194 msgid "" "Burp is a network backup and restore program. It attempts\n" "to reduce network traffic and the amount of space that is used by each\n" "backup." msgstr "" -#: gnu/packages/backup.scm:1136 +#: gnu/packages/backup.scm:1225 msgid "" "Disarchive can disassemble software archives into data\n" "and metadata. The goal is to create a small amount of metadata that\n" @@ -1353,7 +1383,7 @@ msgid "" "compression parameters used by Gzip." msgstr "" -#: gnu/packages/backup.scm:1181 +#: gnu/packages/backup.scm:1270 msgid "" "borgmatic is simple, configuration-driven backup software for servers\n" "and workstations. Protect your files with client-side encryption. Backup\n" @@ -1361,6 +1391,14 @@ msgid "" "borgmatic is powered by borg." msgstr "" +#: gnu/packages/backup.scm:1330 +msgid "" +"Vorta is a graphical backup client based on the Borg backup\n" +"tool. It supports the use of remote backup repositories. It can perform\n" +"scheduled backups, and has a graphical tool for browsing and extracting the Borg\n" +"archives." +msgstr "" + #: gnu/packages/base.scm:98 msgid "" "GNU Hello prints the message \"Hello, world!\" and then exits. It\n" @@ -1445,7 +1483,7 @@ msgid "" "change. GNU make offers many powerful extensions over the standard utility." msgstr "" -#: gnu/packages/base.scm:550 +#: gnu/packages/base.scm:558 msgid "" "GNU Binutils is a collection of tools for working with binary files.\n" "Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler.\n" @@ -1456,7 +1494,7 @@ msgid "" msgstr "" # Desconheço tradução para o 'linker', sendo ele amplamente conhecido com este nome. Além do mais, o binutils não foi traduzido até a tradução inicial do guix. Portanto, mantive 'linker' - Rafael -#: gnu/packages/base.scm:694 +#: gnu/packages/base.scm:685 msgid "" "The linker wrapper (or @code{ld-wrapper}) wraps the linker to add any\n" "missing @code{-rpath} flags, and to detect any misuse of libraries outside of\n" @@ -1466,7 +1504,7 @@ msgstr "" "adicionar quaisquer opções \"-rpath\" faltando e para detectar qualquer\n" "uso incorreto de bibliotecas fora do armazém." -#: gnu/packages/base.scm:930 +#: gnu/packages/base.scm:921 msgid "" "Any Unix-like operating system needs a C library: the library which\n" "defines the \"system calls\" and other basic facilities such as open, malloc,\n" @@ -1482,21 +1520,21 @@ msgstr "" "A biblioteca C do GNU é usada como uma biblioteca C no sistema GNU e na\n" "maioria dos sistemas com kernel Linux." -#: gnu/packages/base.scm:1057 +#: gnu/packages/base.scm:1048 msgid "" "This package provides all the locales supported by the GNU C Library,\n" "more than 400 in total. To use them set the @code{LOCPATH} environment variable\n" "to the @code{share/locale} sub-directory of this package." msgstr "" -#: gnu/packages/base.scm:1206 +#: gnu/packages/base.scm:1198 msgid "" "The which program finds the location of executables in PATH, with a\n" "variety of options. It is an alternative to the shell \"type\" built-in\n" "command." msgstr "" -#: gnu/packages/base.scm:1329 +#: gnu/packages/base.scm:1321 #, fuzzy msgid "" "The Time Zone Database (often called tz or zoneinfo)\n" @@ -1511,14 +1549,14 @@ msgstr "" "para refletir as alterações feitas por corpos políticos nos limites de fusos\n" "horários, posição do UTC e regras de horário de verão." -#: gnu/packages/base.scm:1367 +#: gnu/packages/base.scm:1359 msgid "" "libiconv provides an implementation of the iconv function for systems\n" "that lack it. iconv is used to convert between character encodings in a\n" "program. It supports a wide variety of different encodings." msgstr "" -#: gnu/packages/bittorrent.scm:131 +#: gnu/packages/bittorrent.scm:135 msgid "" "Transmission is a BitTorrent client that comes with graphical,\n" "textual, and Web user interfaces. Transmission also has a daemon for\n" @@ -1526,54 +1564,54 @@ msgid "" "DHT, µTP, PEX and Magnet Links." msgstr "" -#: gnu/packages/bittorrent.scm:165 +#: gnu/packages/bittorrent.scm:169 msgid "" "transmission-remote-gtk is a GTK client for remote management\n" "of the Transmission BitTorrent client, using its HTTP RPC protocol." msgstr "" -#: gnu/packages/bittorrent.scm:187 +#: gnu/packages/bittorrent.scm:191 msgid "" "LibTorrent is a BitTorrent library used by and developed in parallel\n" "with the BitTorrent client rtorrent. It is written in C++ with emphasis on\n" "speed and efficiency." msgstr "" -#: gnu/packages/bittorrent.scm:215 +#: gnu/packages/bittorrent.scm:219 msgid "" "rTorrent is a BitTorrent client with an ncurses interface. It supports\n" "full encryption, DHT, PEX, and Magnet Links. It can also be controlled via\n" "XML-RPC over SCGI." msgstr "" -#: gnu/packages/bittorrent.scm:249 +#: gnu/packages/bittorrent.scm:253 msgid "" "Tremc is a console client, with a curses interface, for the\n" "Transmission BitTorrent daemon." msgstr "" -#: gnu/packages/bittorrent.scm:290 +#: gnu/packages/bittorrent.scm:294 msgid "" "Transmission-remote-cli is a console client, with a curses\n" "interface, for the Transmission BitTorrent daemon. This package is no longer\n" "maintained upstream." msgstr "" -#: gnu/packages/bittorrent.scm:340 +#: gnu/packages/bittorrent.scm:345 msgid "" "Aria2 is a lightweight, multi-protocol & multi-source command-line\n" "download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and Metalink.\n" "Aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces." msgstr "" -#: gnu/packages/bittorrent.scm:374 +#: gnu/packages/bittorrent.scm:381 msgid "" "uGet is portable download manager with GTK+ interface supporting\n" "HTTP, HTTPS, BitTorrent and Metalink, supporting multi-connection\n" "downloads, download scheduling, download rate limiting." msgstr "" -#: gnu/packages/bittorrent.scm:406 +#: gnu/packages/bittorrent.scm:413 msgid "" "mktorrent is a simple command-line utility to create BitTorrent\n" "@dfn{metainfo} files, often known simply as @dfn{torrents}, from both single\n" @@ -1583,14 +1621,14 @@ msgid "" "and will take advantage of multiple processor cores where possible." msgstr "" -#: gnu/packages/bittorrent.scm:457 +#: gnu/packages/bittorrent.scm:472 msgid "" "libtorrent-rasterbar is a feature-complete C++ BitTorrent implementation\n" "focusing on efficiency and scalability. It runs on embedded devices as well as\n" "desktops." msgstr "" -#: gnu/packages/bittorrent.scm:508 +#: gnu/packages/bittorrent.scm:523 msgid "" "qBittorrent is a BitTorrent client programmed in C++/Qt that uses\n" "libtorrent (sometimes called libtorrent-rasterbar) by Arvid Norberg.\n" @@ -1600,7 +1638,7 @@ msgid "" "features." msgstr "" -#: gnu/packages/bittorrent.scm:580 +#: gnu/packages/bittorrent.scm:604 msgid "" "Deluge contains the common features to BitTorrent clients such as\n" "Protocol Encryption, DHT, Local Peer Discovery (LSD), Peer Exchange\n" @@ -1912,7 +1950,16 @@ msgid "" "functionality in a C++ iostream." msgstr "" -#: gnu/packages/compression.scm:1443 +#: gnu/packages/compression.scm:1416 +msgid "" +"Zopfli Compression Algorithm is a compression library\n" +"programmed in C to perform very good, but slow, deflate or zlib compression.\n" +"ZopfliCompress supports the deflate, gzip and zlib output formats. This\n" +"library can only compress, not decompress; existing zlib or deflate libraries\n" +"can decompress the data." +msgstr "" + +#: gnu/packages/compression.scm:1469 msgid "" "ZPAQ is a command-line archiver for realistic situations with\n" "many duplicate and already compressed files. It backs up only those files\n" @@ -1926,13 +1973,13 @@ msgid "" "or junctions, and always follows hard links." msgstr "" -#: gnu/packages/compression.scm:1545 +#: gnu/packages/compression.scm:1571 msgid "" "@command{unshield} is a tool and library for extracting @file{.cab}\n" " archives from InstallShield installers." msgstr "" -#: gnu/packages/compression.scm:1624 +#: gnu/packages/compression.scm:1650 msgid "" "Zstandard (@command{zstd}) is a lossless compression algorithm\n" "that combines very fast operation with a compression ratio comparable to that of\n" @@ -1942,7 +1989,7 @@ msgid "" "speed." msgstr "" -#: gnu/packages/compression.scm:1672 +#: gnu/packages/compression.scm:1698 msgid "" "Parallel Zstandard (PZstandard or @command{pzstd}) is a\n" "multi-threaded implementation of the @uref{http://zstd.net/, Zstandard\n" @@ -1955,7 +2002,7 @@ msgid "" "the actual decompression, the other input and output." msgstr "" -#: gnu/packages/compression.scm:1712 +#: gnu/packages/compression.scm:1738 msgid "" "Zip is a compression and file packaging/archive utility. Zip is useful\n" "for packaging a set of files for distribution, for archiving files, and for\n" @@ -1970,7 +2017,7 @@ msgid "" "Compression ratios of 2:1 to 3:1 are common for text files." msgstr "" -#: gnu/packages/compression.scm:1801 +#: gnu/packages/compression.scm:1827 msgid "" "UnZip is an extraction utility for archives compressed in .zip format,\n" "also called \"zipfiles\".\n" @@ -1981,7 +2028,7 @@ msgid "" "recreates the stored directory structure by default." msgstr "" -#: gnu/packages/compression.scm:1853 +#: gnu/packages/compression.scm:1879 msgid "" "Ziptime helps make @file{.zip} archives reproducible by replacing\n" "timestamps in the file header with a fixed time (1 January 2008).\n" @@ -1990,11 +2037,11 @@ msgid "" "@command{zip} to prevent it from storing the ``universal time'' field." msgstr "" -#: gnu/packages/compression.scm:1880 +#: gnu/packages/compression.scm:1906 msgid "ZZipLib is a library based on zlib for accessing zip files." msgstr "" -#: gnu/packages/compression.scm:1904 +#: gnu/packages/compression.scm:1930 msgid "" "Libzip is a C library for reading, creating, and modifying\n" "zip archives. Files can be added from data buffers, files, or compressed data\n" @@ -2002,7 +2049,7 @@ msgid "" "archive can be reverted." msgstr "" -#: gnu/packages/compression.scm:1937 +#: gnu/packages/compression.scm:1963 msgid "" "The main command is @command{aunpack} which extracts files\n" "from an archive. The other commands provided are @command{apack} (to create\n" @@ -2012,7 +2059,7 @@ msgid "" "of archives." msgstr "" -#: gnu/packages/compression.scm:1963 +#: gnu/packages/compression.scm:1989 msgid "" "Lunzip is a decompressor for files in the lzip compression format (.lz),\n" "written as a single small C tool with no dependencies. This makes it\n" @@ -2022,7 +2069,7 @@ msgid "" "Lunzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:1990 +#: gnu/packages/compression.scm:2016 msgid "" "Clzip is a compressor and decompressor for files in the lzip compression\n" "format (.lz), written as a single small C tool with no dependencies. This makes\n" @@ -2031,7 +2078,7 @@ msgid "" "Clzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:2018 +#: gnu/packages/compression.scm:2044 msgid "" "Lzlib is a C library for in-memory LZMA compression and decompression in\n" "the lzip format. It supports integrity checking of the decompressed data, and\n" @@ -2039,7 +2086,7 @@ msgid "" "corrupted input." msgstr "" -#: gnu/packages/compression.scm:2042 +#: gnu/packages/compression.scm:2068 msgid "" "Plzip is a massively parallel (multi-threaded) lossless data compressor\n" "and decompressor that uses the lzip file format (.lz). Files produced by plzip\n" @@ -2053,13 +2100,13 @@ msgid "" "single-member files which can't be decompressed in parallel." msgstr "" -#: gnu/packages/compression.scm:2074 +#: gnu/packages/compression.scm:2100 msgid "" "innoextract allows extracting Inno Setup installers under\n" "non-Windows systems without running the actual installer using wine." msgstr "" -#: gnu/packages/compression.scm:2096 +#: gnu/packages/compression.scm:2122 msgid "" "ISA-L is a collection of optimized low-level functions\n" "targeting storage applications. ISA-L includes:\n" @@ -2077,7 +2124,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/compression.scm:2156 +#: gnu/packages/compression.scm:2182 msgid "" "This package provides the reference implementation of Brotli,\n" "a generic-purpose lossless compression algorithm that compresses data using a\n" @@ -2089,13 +2136,13 @@ msgid "" "The specification of the Brotli Compressed Data Format is defined in RFC 7932." msgstr "" -#: gnu/packages/compression.scm:2176 +#: gnu/packages/compression.scm:2202 msgid "" "This package provides a Python interface to the @code{brotli}\n" "package, an implementation of the Brotli lossless compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2200 +#: gnu/packages/compression.scm:2226 msgid "" "UCL implements a number of compression algorithms that\n" "achieve an excellent compression ratio while allowing fast decompression.\n" @@ -2105,7 +2152,7 @@ msgid "" "decompression is a little bit slower." msgstr "" -#: gnu/packages/compression.scm:2248 +#: gnu/packages/compression.scm:2274 msgid "" "The Ultimate Packer for eXecutables (UPX) is an executable file\n" "compressor. UPX typically reduces the file size of programs and shared\n" @@ -2113,7 +2160,7 @@ msgid "" "download times, and other distribution and storage costs." msgstr "" -#: gnu/packages/compression.scm:2276 +#: gnu/packages/compression.scm:2302 msgid "" "QuaZIP is a simple C++ wrapper over Gilles Vollant's\n" "ZIP/UNZIP package that can be used to access ZIP archives. It uses\n" @@ -2127,7 +2174,7 @@ msgid "" "reading from and writing to ZIP archives." msgstr "" -#: gnu/packages/compression.scm:2335 +#: gnu/packages/compression.scm:2361 msgid "" "The zchunk compressed file format allows splitting a file\n" "into independent chunks. This makes it possible to retrieve only changed\n" @@ -2150,7 +2197,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/compression.scm:2391 +#: gnu/packages/compression.scm:2417 msgid "" "Zutils is a collection of utilities able to process any combination of\n" "compressed and uncompressed files transparently. If any given file, including\n" @@ -2167,14 +2214,14 @@ msgid "" "at run time, and must be installed separately." msgstr "" -#: gnu/packages/compression.scm:2449 +#: gnu/packages/compression.scm:2475 msgid "" "This package provides a script to unpack self-extracting\n" "archives generated by @command{makeself} or @command{mojo} without running the\n" "possibly untrusted extraction shell script." msgstr "" -#: gnu/packages/compression.scm:2477 +#: gnu/packages/compression.scm:2503 msgid "" "(N)compress provides the original compress and uncompress\n" "programs that used to be the de facto UNIX standard for compressing and\n" @@ -2182,7 +2229,7 @@ msgid "" "file compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2504 +#: gnu/packages/compression.scm:2530 msgid "" "Xarchiver is a front-end to various command line archiving\n" "tools. It uses GTK+ tool-kit and is designed to be desktop-environment\n" @@ -2191,13 +2238,13 @@ msgid "" "archiver is not installed." msgstr "" -#: gnu/packages/compression.scm:2541 +#: gnu/packages/compression.scm:2567 msgid "" "Archive huge numbers of files, or split massive tar archives into smaller\n" "chunks." msgstr "" -#: gnu/packages/compression.scm:2574 +#: gnu/packages/compression.scm:2600 msgid "" "Blosc is a high performance compressor optimized for binary data. It has\n" "been designed to transmit data to the processor cache faster than the\n" @@ -2207,14 +2254,14 @@ msgid "" "computations." msgstr "" -#: gnu/packages/compression.scm:2612 +#: gnu/packages/compression.scm:2638 msgid "" "ECM is a utility that converts ECM files, i.e., CD data files\n" "with their error correction data losslessly rearranged for better compression,\n" "to their original, binary CD format." msgstr "" -#: gnu/packages/compression.scm:2642 +#: gnu/packages/compression.scm:2668 msgid "" "Libdeflate is a library for fast, whole-buffer DEFLATE-based\n" "compression and decompression. The supported formats are:\n" @@ -2226,7 +2273,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/compression.scm:2672 +#: gnu/packages/compression.scm:2698 msgid "" "Tarlz is a massively parallel (multi-threaded) combined implementation of\n" "the tar archiver and the lzip compressor. Tarlz creates, lists, and extracts\n" @@ -2237,7 +2284,7 @@ msgid "" "can append files to the end of such compressed archives." msgstr "" -#: gnu/packages/compression.scm:2706 +#: gnu/packages/compression.scm:2732 msgid "" "The Concise Binary Object Representation (CBOR) is a data format whose\n" "design goals include the possibility of extremely small code size, fairly\n" @@ -2246,17 +2293,17 @@ msgid "" "serializations such as ASN.1 and MessagePack." msgstr "" -#: gnu/packages/compression.scm:2739 +#: gnu/packages/compression.scm:2765 msgid "Fcrackzip is a Zip file password cracker." msgstr "" -#: gnu/packages/databases.scm:211 +#: gnu/packages/databases.scm:216 msgid "" "4store is a RDF/SPARQL store written in C, supporting\n" "either single machines or networked clusters." msgstr "" -#: gnu/packages/databases.scm:255 +#: gnu/packages/databases.scm:260 msgid "" "@code{pg_tmp} creates temporary PostgreSQL databases, suitable for tasks\n" "like running software test suites. Temporary databases created with\n" @@ -2265,14 +2312,14 @@ msgid "" "60)." msgstr "" -#: gnu/packages/databases.scm:281 +#: gnu/packages/databases.scm:286 msgid "" "This package provides a utility for dumping the contents of an\n" "ElasticSearch index to a compressed file and restoring the dumpfile back to an\n" "ElasticSearch server" msgstr "" -#: gnu/packages/databases.scm:433 +#: gnu/packages/databases.scm:438 msgid "" "Firebird is an SQL @acronym{RDBMS, relational database management system}\n" "with rich support for ANSI SQL (e.g., @code{INSERT...RETURNING}) including\n" @@ -2292,20 +2339,20 @@ msgid "" "database later." msgstr "" -#: gnu/packages/databases.scm:506 +#: gnu/packages/databases.scm:511 msgid "" "LevelDB is a fast key-value storage library that provides an ordered\n" "mapping from string keys to string values." msgstr "" -#: gnu/packages/databases.scm:526 +#: gnu/packages/databases.scm:531 msgid "" "Memcached is an in-memory key-value store. It has a small\n" "and generic API, and was originally intended for use with dynamic web\n" "applications." msgstr "" -#: gnu/packages/databases.scm:588 +#: gnu/packages/databases.scm:593 msgid "" "libMemcached is a library to use memcached in C/C++\n" "applications. It comes with a complete reference guide and documentation of\n" @@ -2319,51 +2366,71 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:625 +#: gnu/packages/databases.scm:630 msgid "" "@code{pylibmc} is a client in Python for memcached. It is a wrapper\n" "around TangentOrg’s libmemcached library, and can be used as a drop-in\n" "replacement for the code@{python-memcached} library." msgstr "" -#: gnu/packages/databases.scm:653 +#: gnu/packages/databases.scm:662 +msgid "This is a memcache client library for the Go programming language." +msgstr "" + +#: gnu/packages/databases.scm:685 +msgid "This package provides memcache client and server functionality." +msgstr "" + +#: gnu/packages/databases.scm:711 msgid "" "@code{litecli} is a command-line client for SQLite databases that has\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:685 +#: gnu/packages/databases.scm:732 +msgid "" +"This Python package provides an API to execute meta-commands (AKA\n" +"\"special\", or \"backslash commands\") on PostgreSQL." +msgstr "" + +#: gnu/packages/databases.scm:763 +msgid "" +"@code{pgcli} is a command line interface for PostgreSQL with\n" +"autocompletion and syntax highlighting." +msgstr "" + +#: gnu/packages/databases.scm:801 msgid "" "MyCLI is a command line interface for MySQL, MariaDB, and Percona with\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:782 +#: gnu/packages/databases.scm:898 msgid "" "MySQL is a fast, reliable, and easy to use relational database\n" "management system that supports the standardized Structured Query\n" "Language." msgstr "" -#: gnu/packages/databases.scm:1045 +#: gnu/packages/databases.scm:1161 msgid "" "MariaDB is a multi-user and multi-threaded SQL database server, designed\n" "as a drop-in replacement of MySQL." msgstr "" -#: gnu/packages/databases.scm:1070 +#: gnu/packages/databases.scm:1186 msgid "" "The MariaDB Connector/C is used to connect applications\n" "developed in C/C++ to MariaDB and MySQL databases." msgstr "" -#: gnu/packages/databases.scm:1093 +#: gnu/packages/databases.scm:1209 msgid "" "Galera is a wsrep-provider that is used with MariaDB for load-balancing\n" "and high-availability (HA)." msgstr "" -#: gnu/packages/databases.scm:1147 +#: gnu/packages/databases.scm:1263 msgid "" "PostgreSQL is a powerful object-relational database system. It is fully\n" "ACID compliant, has full support for foreign keys, joins, views, triggers, and\n" @@ -2373,19 +2440,27 @@ msgid "" "pictures, sounds, or video." msgstr "" -#: gnu/packages/databases.scm:1269 +#: gnu/packages/databases.scm:1395 +msgid "" +"TimescaleDB is an database designed to make SQL scalable for\n" +"time-series data. It is engineered up from PostgreSQL and packaged as a\n" +"PostgreSQL extension, providing automatic partitioning across time and space\n" +"(partitioning key), as well as full SQL support." +msgstr "" + +#: gnu/packages/databases.scm:1476 msgid "" "@code{pgloader} is a program that can load data or migrate databases from\n" "CSV, DB3, iXF, SQLite, MS-SQL or MySQL to PostgreSQL." msgstr "" -#: gnu/packages/databases.scm:1293 +#: gnu/packages/databases.scm:1500 msgid "" "PyMySQL is a pure-Python MySQL client library, based on PEP 249.\n" "Most public APIs are compatible with @command{mysqlclient} and MySQLdb." msgstr "" -#: gnu/packages/databases.scm:1320 +#: gnu/packages/databases.scm:1527 msgid "" "QDBM is a library of routines for managing a\n" "database. The database is a simple data file containing key-value\n" @@ -2395,7 +2470,7 @@ msgid "" "organized in a hash table or B+ tree." msgstr "" -#: gnu/packages/databases.scm:1357 +#: gnu/packages/databases.scm:1564 msgid "" "GNU Recutils is a set of tools and libraries for creating and\n" "manipulating text-based, human-editable databases. Despite being text-based,\n" @@ -2404,7 +2479,7 @@ msgid "" "types are supported, as is encryption." msgstr "" -#: gnu/packages/databases.scm:1389 +#: gnu/packages/databases.scm:1596 msgid "" "This package provides an Emacs major mode @code{rec-mode}\n" "for working with GNU Recutils text-based, human-editable databases. It\n" @@ -2412,7 +2487,7 @@ msgid "" "including field and record folding." msgstr "" -#: gnu/packages/databases.scm:1457 +#: gnu/packages/databases.scm:1664 msgid "" "RocksDB is a library that forms the core building block for a fast\n" "key-value server, especially suited for storing data on flash drives. It\n" @@ -2423,7 +2498,7 @@ msgid "" "data in a single database. RocksDB is partially based on @code{LevelDB}." msgstr "" -#: gnu/packages/databases.scm:1515 +#: gnu/packages/databases.scm:1722 msgid "" "Sparql-query is a command-line tool for accessing SPARQL\n" "endpoints over HTTP. It has been intentionally designed to @code{feel} similar to\n" @@ -2434,13 +2509,13 @@ msgid "" "for example from a shell script." msgstr "" -#: gnu/packages/databases.scm:1608 +#: gnu/packages/databases.scm:1815 msgid "" "Sqitch is a standalone change management system for database schemas,\n" "which uses SQL to describe changes." msgstr "" -#: gnu/packages/databases.scm:1635 +#: gnu/packages/databases.scm:1842 msgid "" "SQLcrush lets you view and edit a database directly from the text\n" "console through an ncurses interface. You can explore each table's structure,\n" @@ -2448,7 +2523,7 @@ msgid "" "changes." msgstr "" -#: gnu/packages/databases.scm:1673 +#: gnu/packages/databases.scm:1880 msgid "" "TDB is a Trivial Database. In concept, it is very much like GDBM,\n" "and BSD's DB except that it allows multiple simultaneous writers and uses\n" @@ -2456,11 +2531,11 @@ msgid "" "extremely small." msgstr "" -#: gnu/packages/databases.scm:1693 +#: gnu/packages/databases.scm:1900 msgid "This package provides an database interface for Perl." msgstr "" -#: gnu/packages/databases.scm:1741 +#: gnu/packages/databases.scm:1948 msgid "" "An SQL to OO mapper with an object API inspired by\n" "Class::DBI (with a compatibility layer as a springboard for porting) and a\n" @@ -2472,13 +2547,13 @@ msgid "" "\"ORDER BY\" and \"HAVING\" support." msgstr "" -#: gnu/packages/databases.scm:1770 +#: gnu/packages/databases.scm:1977 msgid "" "DBIx::Class::Cursor::Cached provides a cursor class with\n" "built-in caching support." msgstr "" -#: gnu/packages/databases.scm:1793 +#: gnu/packages/databases.scm:2000 msgid "" "Because the many-to-many relationships are not real\n" "relationships, they can not be introspected with DBIx::Class. Many-to-many\n" @@ -2488,26 +2563,26 @@ msgid "" "introspected and examined." msgstr "" -#: gnu/packages/databases.scm:1852 +#: gnu/packages/databases.scm:2059 msgid "" "DBIx::Class::Schema::Loader automates the definition of a\n" "DBIx::Class::Schema by scanning database table definitions and setting up the\n" "columns, primary keys, unique constraints and relationships." msgstr "" -#: gnu/packages/databases.scm:1876 +#: gnu/packages/databases.scm:2083 msgid "" "This package provides a PostgreSQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." msgstr "" -#: gnu/packages/databases.scm:1914 +#: gnu/packages/databases.scm:2121 msgid "" "This package provides a MySQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." msgstr "" -#: gnu/packages/databases.scm:1934 +#: gnu/packages/databases.scm:2141 msgid "" "DBD::SQLite is a Perl DBI driver for SQLite, that includes\n" "the entire thing in the distribution. So in order to get a fast transaction\n" @@ -2515,14 +2590,14 @@ msgid "" "module, and nothing else." msgstr "" -#: gnu/packages/databases.scm:1959 +#: gnu/packages/databases.scm:2166 msgid "" "@code{MySQL::Config} emulates the @code{load_defaults} function from\n" "libmysqlclient. It will fill an array with long options, ready to be parsed by\n" "@code{Getopt::Long}." msgstr "" -#: gnu/packages/databases.scm:1983 +#: gnu/packages/databases.scm:2190 msgid "" "This module was inspired by the excellent DBIx::Abstract.\n" "While based on the concepts used by DBIx::Abstract, the concepts used have\n" @@ -2532,7 +2607,7 @@ msgid "" "time your data changes." msgstr "" -#: gnu/packages/databases.scm:2010 +#: gnu/packages/databases.scm:2217 msgid "" "This module is nearly identical to @code{SQL::Abstract} 1.81, and exists\n" "to preserve the ability of users to opt into the new way of doing things in\n" @@ -2548,34 +2623,34 @@ msgid "" "your data changes, as this module figures it out." msgstr "" -#: gnu/packages/databases.scm:2043 +#: gnu/packages/databases.scm:2250 msgid "" "This module tries to split any SQL code, even including\n" "non-standard extensions, into the atomic statements it is composed of." msgstr "" -#: gnu/packages/databases.scm:2062 +#: gnu/packages/databases.scm:2269 msgid "" "SQL::Tokenizer is a tokenizer for SQL queries. It does not\n" "claim to be a parser or query verifier. It just creates sane tokens from a\n" "valid SQL query." msgstr "" -#: gnu/packages/databases.scm:2081 +#: gnu/packages/databases.scm:2288 msgid "" "Unixodbc is a library providing an API with which to access\n" "data sources. Data sources include SQL Servers and any software with an ODBC\n" "Driver." msgstr "" -#: gnu/packages/databases.scm:2113 +#: gnu/packages/databases.scm:2320 msgid "" "The goal for nanodbc is to make developers happy by providing\n" "a simpler and less verbose API for working with ODBC. Common tasks should be\n" "easy, requiring concise and simple code." msgstr "" -#: gnu/packages/databases.scm:2174 +#: gnu/packages/databases.scm:2381 msgid "" "UnQLite is an in-process software library which implements a\n" "self-contained, serverless, zero-configuration, transactional NoSQL\n" @@ -2584,27 +2659,35 @@ msgid "" "similar to BerkeleyDB, LevelDB, etc." msgstr "" -#: gnu/packages/databases.scm:2225 +#: gnu/packages/databases.scm:2432 msgid "" "Redis is an advanced key-value cache and store. Redis\n" "supports many data structures including strings, hashes, lists, sets, sorted\n" "sets, bitmaps and hyperloglogs." msgstr "" -#: gnu/packages/databases.scm:2247 +#: gnu/packages/databases.scm:2454 msgid "" "This package provides a Ruby client that tries to match Redis' API\n" "one-to-one, while still providing an idiomatic interface." msgstr "" -#: gnu/packages/databases.scm:2275 +#: gnu/packages/databases.scm:2479 +msgid "Package rdb implements parsing and encoding of the Redis RDB file format." +msgstr "" + +#: gnu/packages/databases.scm:2505 +msgid "Redigo is a Go client for the Redis database." +msgstr "" + +#: gnu/packages/databases.scm:2531 msgid "" "Kyoto Cabinet is a standalone file-based database that supports Hash\n" "and B+ Tree data storage models. It is a fast key-value lightweight\n" "database and supports many programming languages. It is a NoSQL database." msgstr "" -#: gnu/packages/databases.scm:2303 +#: gnu/packages/databases.scm:2559 msgid "" "Tokyo Cabinet is a library of routines for managing a database.\n" "The database is a simple data file containing records, each is a pair of a\n" @@ -2614,7 +2697,7 @@ msgid "" "organized in hash table, B+ tree, or fixed-length array." msgstr "" -#: gnu/packages/databases.scm:2339 +#: gnu/packages/databases.scm:2595 msgid "" "WiredTiger is an extensible platform for data management. It supports\n" "row-oriented storage (where all columns of a row are stored together),\n" @@ -2623,17 +2706,17 @@ msgid "" "trees (LSM), for sustained throughput under random insert workloads." msgstr "" -#: gnu/packages/databases.scm:2389 +#: gnu/packages/databases.scm:2645 msgid "" "This package provides Guile bindings to the WiredTiger ``NoSQL''\n" "database." msgstr "" -#: gnu/packages/databases.scm:2419 +#: gnu/packages/databases.scm:2675 msgid "The DB::File module provides Perl bindings to the Berkeley DB version 1.x." msgstr "" -#: gnu/packages/databases.scm:2467 +#: gnu/packages/databases.scm:2723 msgid "" "The @dfn{Lightning Memory-Mapped Database} (LMDB) is a high-performance\n" "transactional database. Unlike more complex relational databases, LMDB handles\n" @@ -2646,7 +2729,7 @@ msgid "" "virtual address space — not physical RAM." msgstr "" -#: gnu/packages/databases.scm:2501 +#: gnu/packages/databases.scm:2757 msgid "" "@code{lmdbxx} is a comprehensive @code{C++} wrapper for the\n" "@code{LMDB} embedded database library, offering both an error-checked\n" @@ -2654,14 +2737,22 @@ msgid "" "semantics." msgstr "" -#: gnu/packages/databases.scm:2535 +#: gnu/packages/databases.scm:2791 msgid "" "Libpqxx is a C++ library to enable user programs to communicate with the\n" "PostgreSQL database back-end. The database back-end can be local or it may be\n" "on another machine, accessed via TCP/IP." msgstr "" -#: gnu/packages/databases.scm:2561 +#: gnu/packages/databases.scm:2819 +msgid "" +"Bolt is a pure Go key/value store inspired by Howard Chu's\n" +"LMDB project. The goal of the project is to provide a simple, fast, and\n" +"reliable database for projects that don't require a full database server such as\n" +"Postgres or MySQL." +msgstr "" + +#: gnu/packages/databases.scm:2845 msgid "" "Peewee is a simple and small ORM (object-relation mapping) tool. Peewee\n" "handles converting between pythonic values and those used by databases, so you\n" @@ -2670,20 +2761,20 @@ msgid "" "can autogenerate peewee models using @code{pwiz}, a model generator." msgstr "" -#: gnu/packages/databases.scm:2584 +#: gnu/packages/databases.scm:2868 msgid "" "Pypika-tortoise is a fork of pypika which has been\n" "streamlined for its use in the context of tortoise-orm. It removes support\n" "for many database kinds that tortoise-orm doesn't need, for example." msgstr "" -#: gnu/packages/databases.scm:2604 +#: gnu/packages/databases.scm:2888 msgid "" "This package is a Sphinx extension providing additional\n" "coroutine-specific markup." msgstr "" -#: gnu/packages/databases.scm:2632 +#: gnu/packages/databases.scm:2916 msgid "" "@code{asyncpg} is a database interface library designed\n" "specifically for PostgreSQL and Python/asyncio. @code{asyncpg} is an\n" @@ -2691,14 +2782,14 @@ msgid "" "with Python's asyncio framework." msgstr "" -#: gnu/packages/databases.scm:2652 +#: gnu/packages/databases.scm:2936 msgid "" "@code{asyncmy} is a fast @code{asyncio} MySQL driver, which\n" "reuses most of @code{pymysql} and @code{aiomysql} but rewrites the core\n" "protocol with Cython for performance." msgstr "" -#: gnu/packages/databases.scm:2672 +#: gnu/packages/databases.scm:2956 msgid "" "@code{aiomysql} is a driver for accessing a MySQL database\n" "from the @code{asyncio} Python framework. It depends on and reuses most parts\n" @@ -2706,7 +2797,7 @@ msgid "" "@code{aiopg} library." msgstr "" -#: gnu/packages/databases.scm:2705 +#: gnu/packages/databases.scm:2989 msgid "" "Tortoise ORM is an easy-to-use asyncio ORM (Object\n" "Relational Mapper) inspired by Django. Tortoise ORM was built with relations\n" @@ -2715,7 +2806,7 @@ msgid "" "with relational data." msgstr "" -#: gnu/packages/databases.scm:2749 +#: gnu/packages/databases.scm:3033 msgid "" "SQLCipher is an implementation of SQLite, extended to\n" "provide transparent 256-bit AES encryption of database files. Pages are\n" @@ -2724,19 +2815,19 @@ msgid "" "development." msgstr "" -#: gnu/packages/databases.scm:2782 +#: gnu/packages/databases.scm:3066 msgid "" "@code{python-pyodbc-c} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2807 +#: gnu/packages/databases.scm:3091 msgid "" "@code{python-pyodbc} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2840 +#: gnu/packages/databases.scm:3124 msgid "" "MDB Tools is a set of tools and applications to read the\n" "proprietary MDB file format used in Microsoft's Access database package. This\n" @@ -2745,39 +2836,43 @@ msgid "" "etc., and an SQL engine for performing simple SQL queries." msgstr "" -#: gnu/packages/databases.scm:2886 +#: gnu/packages/databases.scm:3153 +msgid "This package provides a MongoDB driver for Go." +msgstr "" + +#: gnu/packages/databases.scm:3194 msgid "" "python-lmdb or py-lmdb is a Python binding for the @dfn{Lightning\n" "Memory-Mapped Database} (LMDB), a high-performance key-value store." msgstr "" -#: gnu/packages/databases.scm:2925 +#: gnu/packages/databases.scm:3233 msgid "" "Orator provides a simple ActiveRecord-like Object Relational Mapping\n" "implementation for Python." msgstr "" -#: gnu/packages/databases.scm:2963 +#: gnu/packages/databases.scm:3271 msgid "" "Virtuoso is a scalable cross-platform server that combines\n" "relational, graph, and document data management with web application server\n" "and web services platform functionality." msgstr "" -#: gnu/packages/databases.scm:2990 +#: gnu/packages/databases.scm:3298 msgid "" "Cassandra Cluster Manager is a development tool for testing\n" "local Cassandra clusters. It creates, launches and removes Cassandra clusters\n" "on localhost." msgstr "" -#: gnu/packages/databases.scm:3018 +#: gnu/packages/databases.scm:3326 msgid "" "Pysqlite provides SQLite bindings for Python that comply to the\n" "Database API 2.0T." msgstr "" -#: gnu/packages/databases.scm:3048 +#: gnu/packages/databases.scm:3356 msgid "" "SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that\n" "gives application developers the full power and flexibility of SQL. It\n" @@ -2786,14 +2881,14 @@ msgid "" "simple and Pythonic domain language." msgstr "" -#: gnu/packages/databases.scm:3086 +#: gnu/packages/databases.scm:3382 msgid "" "This package contains type stubs and a mypy plugin to\n" "provide more precise static types and type inference for SQLAlchemy\n" "framework." msgstr "" -#: gnu/packages/databases.scm:3118 +#: gnu/packages/databases.scm:3414 msgid "" "SQLAlchemy-utils provides various utility functions and custom data types\n" "for SQLAlchemy. SQLAlchemy is an SQL database abstraction library for Python.\n" @@ -2810,7 +2905,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/databases.scm:3165 +#: gnu/packages/databases.scm:3461 msgid "" "This package provides mock helpers for SQLAlchemy that makes it easy\n" "to mock an SQLAlchemy session while preserving the ability to do asserts.\n" @@ -2820,13 +2915,13 @@ msgid "" "this library provides functions to facilitate such comparisons." msgstr "" -#: gnu/packages/databases.scm:3196 +#: gnu/packages/databases.scm:3492 msgid "" "Alembic is a lightweight database migration tool for usage with the\n" "SQLAlchemy Database Toolkit for Python." msgstr "" -#: gnu/packages/databases.scm:3221 +#: gnu/packages/databases.scm:3517 msgid "" "PickleShare is a small ‘shelve’-like datastore with concurrency support.\n" "Like shelve, a PickleShareDB object acts like a normal dictionary. Unlike\n" @@ -2837,7 +2932,7 @@ msgid "" "PickleShare." msgstr "" -#: gnu/packages/databases.scm:3275 +#: gnu/packages/databases.scm:3571 msgid "" "APSW is a Python wrapper for the SQLite\n" "embedded relational database engine. In contrast to other wrappers such as\n" @@ -2845,21 +2940,21 @@ msgid "" "translate the complete SQLite API into Python." msgstr "" -#: gnu/packages/databases.scm:3312 +#: gnu/packages/databases.scm:3608 msgid "" "The package aiosqlite replicates the standard sqlite3 module, but with\n" "async versions of all the standard connection and cursor methods, and context\n" "managers for automatically closing connections." msgstr "" -#: gnu/packages/databases.scm:3333 +#: gnu/packages/databases.scm:3629 msgid "" "This package provides the Neo4j Python driver that connects\n" "to the database using Neo4j's binary protocol. It aims to be minimal, while\n" "being idiomatic to Python." msgstr "" -#: gnu/packages/databases.scm:3353 +#: gnu/packages/databases.scm:3649 msgid "" "This package provides a client library and toolkit for\n" "working with Neo4j from within Python applications and from the command\n" @@ -2867,26 +2962,38 @@ msgid "" "designed to be easy and intuitive to use." msgstr "" -#: gnu/packages/databases.scm:3379 +#: gnu/packages/databases.scm:3675 msgid "" "psycopg2 is a thread-safe PostgreSQL adapter that implements DB-API\n" "2.0." msgstr "" -#: gnu/packages/databases.scm:3413 +#: gnu/packages/databases.scm:3702 +msgid "" +"This module provides connection pool implementations that can be used\n" +"with the @code{psycopg} PostgreSQL driver." +msgstr "" + +#: gnu/packages/databases.scm:3776 +msgid "" +"Psycopg 3 is a new implementation of the popular @code{psycopg2}\n" +"database adapter for Python." +msgstr "" + +#: gnu/packages/databases.scm:3810 msgid "" "This package provides a program to build Entity\n" "Relationship diagrams from a SQLAlchemy model (or directly from the\n" "database)." msgstr "" -#: gnu/packages/databases.scm:3443 +#: gnu/packages/databases.scm:3840 msgid "" "Yoyo is a database schema migration tool. Migrations are written as SQL\n" "files or Python scripts that define a list of migration steps." msgstr "" -#: gnu/packages/databases.scm:3464 +#: gnu/packages/databases.scm:3861 msgid "" "MySQLdb is an interface to the popular MySQL database server\n" "for Python. The design goals are:\n" @@ -2897,13 +3004,13 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/databases.scm:3490 +#: gnu/packages/databases.scm:3887 msgid "" "Python-hiredis is a python extension that wraps protocol\n" "parsing code in hiredis. It primarily speeds up parsing of multi bulk replies." msgstr "" -#: gnu/packages/databases.scm:3517 +#: gnu/packages/databases.scm:3914 msgid "" "Fakeredis is a pure-Python implementation of the redis-py Python client\n" "that simulates talking to a redis server. It was created for a single purpose:\n" @@ -2914,49 +3021,49 @@ msgid "" "reasonable substitute." msgstr "" -#: gnu/packages/databases.scm:3545 +#: gnu/packages/databases.scm:3942 msgid "This package provides a Python interface to the Redis key-value store." msgstr "" -#: gnu/packages/databases.scm:3586 +#: gnu/packages/databases.scm:3983 msgid "" "RQ (Redis Queue) is a simple Python library for queueing jobs and\n" "processing them in the background with workers. It is backed by Redis and it\n" "is designed to have a low barrier to entry." msgstr "" -#: gnu/packages/databases.scm:3623 +#: gnu/packages/databases.scm:4020 msgid "" "This package provides job scheduling capabilities to @code{python-rq}\n" "(Redis Queue)." msgstr "" -#: gnu/packages/databases.scm:3643 +#: gnu/packages/databases.scm:4040 msgid "" "@code{trollius-redis} is a Redis client for Python\n" " trollius. It is an asynchronous IO (PEP 3156) implementation of the\n" " Redis protocol." msgstr "" -#: gnu/packages/databases.scm:3686 +#: gnu/packages/databases.scm:4083 msgid "" "Sqlparse is a non-validating SQL parser for Python. It\n" "provides support for parsing, splitting and formatting SQL statements." msgstr "" -#: gnu/packages/databases.scm:3703 +#: gnu/packages/databases.scm:4101 msgid "" "@code{python-sql} is a library to write SQL queries, that\n" "transforms idiomatic python function calls to well-formed SQL queries." msgstr "" -#: gnu/packages/databases.scm:3726 +#: gnu/packages/databases.scm:4124 msgid "" "PyPika is a python SQL query builder that exposes the full richness of\n" "the SQL language using a syntax that reflects the resulting query." msgstr "" -#: gnu/packages/databases.scm:3852 +#: gnu/packages/databases.scm:4250 msgid "" "Apache Arrow is a columnar in-memory analytics layer\n" "designed to accelerate big data. It houses a set of canonical in-memory\n" @@ -2965,21 +3072,21 @@ msgid "" "algorithm implementations." msgstr "" -#: gnu/packages/databases.scm:3912 +#: gnu/packages/databases.scm:4310 msgid "" "This library provides a Pythonic API wrapper for the reference Arrow C++\n" "implementation, along with tools for interoperability with pandas, NumPy, and\n" "other traditional Python scientific computing packages." msgstr "" -#: gnu/packages/databases.scm:3933 +#: gnu/packages/databases.scm:4331 msgid "" "This package provides a Python client library for CrateDB.\n" "It implements the Python DB API 2.0 specification and includes support for\n" "SQLAlchemy." msgstr "" -#: gnu/packages/databases.scm:3952 +#: gnu/packages/databases.scm:4350 msgid "" "This library implements a database independent abstraction layer in C,\n" "similar to the DBI/DBD layer in Perl. Writing one generic set of code,\n" @@ -2987,7 +3094,7 @@ msgid "" "simultaneous database connections by using this framework." msgstr "" -#: gnu/packages/databases.scm:4018 +#: gnu/packages/databases.scm:4416 msgid "" "The @code{libdbi-drivers} library provides the database specific drivers\n" "for the @code{libdbi} framework.\n" @@ -3000,26 +3107,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:4060 +#: gnu/packages/databases.scm:4458 msgid "" "SOCI is an abstraction layer for several database backends, including\n" "PostreSQL, SQLite, ODBC and MySQL." msgstr "" -#: gnu/packages/databases.scm:4084 +#: gnu/packages/databases.scm:4482 msgid "" "FreeTDS is an implementation of the Tabular DataStream protocol, used for\n" "connecting to MS SQL and Sybase servers over TCP/IP." msgstr "" -#: gnu/packages/databases.scm:4106 +#: gnu/packages/databases.scm:4504 msgid "" "TinyDB is a small document oriented database written in pure Python\n" "with no external dependencies. The targets are small apps that would\n" "be blown away by a SQL-DB or an external database server." msgstr "" -#: gnu/packages/databases.scm:4154 +#: gnu/packages/databases.scm:4552 msgid "" "Sequeler is a native Linux SQL client built in Vala and\n" "Gtk. It allows you to connect to your local and remote databases, write SQL in\n" @@ -3027,7 +3134,13 @@ msgid "" "a Gtk.Grid Widget." msgstr "" -#: gnu/packages/debug.scm:111 +#: gnu/packages/databases.scm:4594 +msgid "" +"Sqlitebrowser is a high quaility, visual, open source tool to\n" +"create design, and edit database file compatible with SQLite." +msgstr "" + +#: gnu/packages/debug.scm:112 msgid "" "Delta assists you in minimizing \"interesting\" files subject to a test\n" "of their interestingness. A common such situation is when attempting to\n" @@ -3035,7 +3148,7 @@ msgid "" "program to exhibit a bug." msgstr "" -#: gnu/packages/debug.scm:172 +#: gnu/packages/debug.scm:173 msgid "" "C-Reduce is a tool that takes a large C or C++ program that has a\n" "property of interest (such as triggering a compiler bug) and automatically\n" @@ -3044,14 +3157,14 @@ msgid "" "tools that process C/C++ code." msgstr "" -#: gnu/packages/debug.scm:219 +#: gnu/packages/debug.scm:220 msgid "" "C-Vise is a Python port of the C-Reduce tool that is fully compatible\n" "and uses the same efficient LLVM-based C/C++ @code{clang_delta} reduction\n" "tool." msgstr "" -#: gnu/packages/debug.scm:289 +#: gnu/packages/debug.scm:290 msgid "" "American fuzzy lop is a security-oriented fuzzer that employs a novel\n" "type of compile-time instrumentation and genetic algorithms to automatically\n" @@ -3062,7 +3175,7 @@ msgid "" "down the road." msgstr "" -#: gnu/packages/debug.scm:433 +#: gnu/packages/debug.scm:434 msgid "" "QEMU is a generic machine emulator and virtualizer. This package\n" "of QEMU is used only by the american fuzzy lop package.\n" @@ -3078,7 +3191,7 @@ msgid "" "server and embedded PowerPC, and S390 guests." msgstr "" -#: gnu/packages/debug.scm:501 +#: gnu/packages/debug.scm:502 msgid "" "Stress Make is a customized GNU Make that explicitly manages the order\n" "in which concurrent jobs are run to provoke erroneous behavior into becoming\n" @@ -3088,14 +3201,14 @@ msgid "" "conditions." msgstr "" -#: gnu/packages/debug.scm:529 +#: gnu/packages/debug.scm:530 msgid "" "Zzuf is a transparent application input fuzzer. It works by\n" "intercepting file operations and changing random bits in the program's\n" "input. Zzuf's behaviour is deterministic, making it easy to reproduce bugs." msgstr "" -#: gnu/packages/debug.scm:581 +#: gnu/packages/debug.scm:582 msgid "" "Scanmem is a debugging utility designed to isolate the\n" "address of an arbitrary variable in an executing process. Scanmem simply\n" @@ -3104,13 +3217,13 @@ msgid "" "the position of the variable and allows you to modify its value." msgstr "" -#: gnu/packages/debug.scm:611 +#: gnu/packages/debug.scm:612 msgid "" "Remake is an enhanced version of GNU Make that adds improved\n" "error reporting, better tracing, profiling, and a debugger." msgstr "" -#: gnu/packages/debug.scm:667 +#: gnu/packages/debug.scm:668 msgid "" "rr is a lightweight tool for recording, replaying and debugging\n" "execution of applications (trees of processes and threads). Debugging extends\n" @@ -3119,13 +3232,13 @@ msgid "" "fun." msgstr "" -#: gnu/packages/debug.scm:695 +#: gnu/packages/debug.scm:696 msgid "" "The @code{libbacktrace} library can be linked into a C/C++\n" "program to produce symbolic backtraces." msgstr "" -#: gnu/packages/debug.scm:735 +#: gnu/packages/debug.scm:736 msgid "" "The libleak tool detects memory leaks by hooking memory\n" "functions such as @code{malloc}. It comes as a shared object to be pre-loaded\n" @@ -3137,7 +3250,7 @@ msgid "" "use than similar tools like @command{mtrace}." msgstr "" -#: gnu/packages/debug.scm:763 +#: gnu/packages/debug.scm:764 msgid "" "@code{cgdb} is a lightweight curses (terminal-based) interface to the\n" "GNU Debugger (GDB). In addition to the standard gdb console, cgdb provides\n" @@ -3146,7 +3259,7 @@ msgid "" "using cgdb." msgstr "" -#: gnu/packages/debug.scm:798 +#: gnu/packages/debug.scm:799 msgid "" "MspDebug supports FET430UIF, eZ430, RF2500 and Olimex\n" "MSP430-JTAG-TINY programmers, as well as many other compatible\n" @@ -3162,14 +3275,14 @@ msgid "" "multiple test suites, which are then all managed by a single harness." msgstr "" -#: gnu/packages/games.scm:287 +#: gnu/packages/games.scm:288 msgid "" "Abe's Amazing Adventure is a scrolling,\n" "platform-jumping, key-collecting, ancient pyramid exploring game, vaguely in\n" "the style of similar games for the Commodore+4." msgstr "" -#: gnu/packages/games.scm:357 +#: gnu/packages/games.scm:358 msgid "" "Adanaxis is a fast-moving first person shooter set in deep space, where\n" "the fundamentals of space itself are changed. By adding another dimension to\n" @@ -3180,7 +3293,7 @@ msgid "" "mouse and joystick control, and original music." msgstr "" -#: gnu/packages/games.scm:401 +#: gnu/packages/games.scm:402 msgid "" "Guide Alex the Allegator through the jungle in order to save his\n" "girlfriend Lola from evil humans who want to make a pair of shoes out of her.\n" @@ -3189,7 +3302,7 @@ msgid "" "The game includes a built-in editor so you can design and share your own maps." msgstr "" -#: gnu/packages/games.scm:431 +#: gnu/packages/games.scm:432 msgid "" "Armagetron Advanced is a multiplayer game in 3d that\n" "attempts to emulate and expand on the lightcycle sequence from the movie Tron.\n" @@ -3199,7 +3312,7 @@ msgid "" "physics settings to tweak as well." msgstr "" -#: gnu/packages/games.scm:489 +#: gnu/packages/games.scm:490 msgid "" "Space is a vast area, an unbounded territory where it seems there is\n" "a room for everybody, but reversal of fortune put things differently. The\n" @@ -3211,7 +3324,7 @@ msgid "" "regret their insolence." msgstr "" -#: gnu/packages/games.scm:556 +#: gnu/packages/games.scm:557 msgid "" "Bastet (short for Bastard Tetris) is a simple ncurses-based falling brick\n" "game. Unlike normal Tetris, Bastet does not choose the next brick at random.\n" @@ -3221,19 +3334,19 @@ msgid "" "canyons and wait for the long I-shaped block to clear four rows at a time." msgstr "" -#: gnu/packages/games.scm:601 +#: gnu/packages/games.scm:602 msgid "" "Tetrinet is a multiplayer Tetris-like game with powerups and\n" "attacks you can use on opponents." msgstr "" -#: gnu/packages/games.scm:635 +#: gnu/packages/games.scm:636 msgid "" "Vitetris is a classic multiplayer Tetris clone for the\n" "terminal." msgstr "" -#: gnu/packages/games.scm:678 +#: gnu/packages/games.scm:679 msgid "" "Blobwars: Metal Blob Solid is a 2D platform game, the first\n" "in the Blobwars series. You take on the role of a fearless Blob agent. Your\n" @@ -3241,7 +3354,7 @@ msgid "" "possible, while battling many vicious aliens." msgstr "" -#: gnu/packages/games.scm:771 +#: gnu/packages/games.scm:772 msgid "" "These are the BSD games. See the fortune-mod package for fortunes.\n" "\n" @@ -3274,7 +3387,7 @@ msgid "" "Quizzes: arithmetic and quiz." msgstr "" -#: gnu/packages/games.scm:866 +#: gnu/packages/games.scm:867 msgid "" "BZFlag is a 3D multi-player multiplatform tank battle game that\n" "allows users to play against each other in a network environment.\n" @@ -3294,7 +3407,7 @@ msgid "" "high a score as possible." msgstr "" -#: gnu/packages/games.scm:949 +#: gnu/packages/games.scm:950 msgid "" "Cataclysm: Dark Days Ahead (or \"DDA\" for short) is a roguelike set\n" "in a post-apocalyptic world. Struggle to survive in a harsh, persistent,\n" @@ -3306,7 +3419,7 @@ msgid "" "want what you have." msgstr "" -#: gnu/packages/games.scm:998 +#: gnu/packages/games.scm:999 msgid "" "Cockatrice is a program for playing tabletop card games\n" "over a network. Its server design prevents users from manipulating the game\n" @@ -3314,7 +3427,7 @@ msgid "" "allows users to brew while offline." msgstr "" -#: gnu/packages/games.scm:1052 +#: gnu/packages/games.scm:1053 msgid "" "This package provides a reimplementation of the 1997 Bullfrog business\n" "simulation game @i{Theme Hospital}. As well as faithfully recreating the\n" @@ -3322,7 +3435,7 @@ msgid "" "more. This package does @emph{not} provide the game assets." msgstr "" -#: gnu/packages/games.scm:1094 +#: gnu/packages/games.scm:1095 msgid "" "Cowsay is basically a text filter. Send some text into it,\n" "and you get a cow saying your text. If you think a talking cow isn't enough,\n" @@ -3330,21 +3443,21 @@ msgid "" "tired of cows, a variety of other ASCII-art messengers are available." msgstr "" -#: gnu/packages/games.scm:1135 +#: gnu/packages/games.scm:1136 msgid "" "@command{lolcat} concatenates files and streams like\n" "regular @command{cat}, but it also adds terminal escape codes between\n" "characters and lines resulting in a rainbow effect." msgstr "" -#: gnu/packages/games.scm:1164 +#: gnu/packages/games.scm:1165 #, scheme-format msgid "" "This package provides the Fallout 2 game engine. Game data\n" "should be placed in @file{~/.local/share/falltergeist}." msgstr "" -#: gnu/packages/games.scm:1275 +#: gnu/packages/games.scm:1276 msgid "" "FooBillard++ is an advanced 3D OpenGL billiard game\n" "based on the original foobillard 3.0a sources from Florian Berger.\n" @@ -3366,7 +3479,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:1342 +#: gnu/packages/games.scm:1343 msgid "" "The Freedoom project aims to create a complete free content first person\n" "shooter game. Freedoom by itself is just the raw material for a game: it must\n" @@ -3375,7 +3488,7 @@ msgid "" "effects and music to make a completely free game." msgstr "" -#: gnu/packages/games.scm:1392 +#: gnu/packages/games.scm:1394 msgid "" "Freedroid RPG is an @dfn{RPG} (Role-Playing Game) with isometric graphics.\n" "The game tells the story of a world destroyed by a conflict between robots and\n" @@ -3385,7 +3498,7 @@ msgid "" "real-time combat." msgstr "" -#: gnu/packages/games.scm:1471 +#: gnu/packages/games.scm:1473 msgid "" "Golly simulates Conway's Game of Life and many other types of cellular\n" "automata. The following features are available:\n" @@ -3406,13 +3519,13 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:1527 +#: gnu/packages/games.scm:1529 msgid "" "This package provides a userspace daemon for the Nintendo\n" "Joy-Con controllers." msgstr "" -#: gnu/packages/games.scm:1557 +#: gnu/packages/games.scm:1559 msgid "" "Engine for Caesar III, a city-building real-time strategy game.\n" "Julius includes some UI enhancements while preserving the logic (including\n" @@ -3420,7 +3533,7 @@ msgid "" "does not include game data." msgstr "" -#: gnu/packages/games.scm:1591 +#: gnu/packages/games.scm:1593 msgid "" "Fork of Julius, an engine for the a city-building real-time strategy\n" "game Caesar III. Gameplay enhancements include:\n" @@ -3435,7 +3548,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/games.scm:1630 +#: gnu/packages/games.scm:1632 msgid "" "Me and My Shadow is a puzzle/platform game in which you try\n" "to reach the exit by solving puzzles. Spikes, moving blocks, fragile blocks\n" @@ -3443,7 +3556,7 @@ msgid "" "shadow mimic them to reach blocks you couldn't reach alone." msgstr "" -#: gnu/packages/games.scm:1686 +#: gnu/packages/games.scm:1688 msgid "" "@code{Open Surge} is a 2D retro side-scrolling platformer\n" "inspired by the Sonic games. The player runs at high speeds through each\n" @@ -3451,7 +3564,7 @@ msgid "" "built-in level editor." msgstr "" -#: gnu/packages/games.scm:1732 +#: gnu/packages/games.scm:1734 msgid "" "Knights is a multiplayer game involving several knights who\n" "must run around a dungeon and complete various quests. Each game revolves\n" @@ -3463,7 +3576,7 @@ msgid "" "destroying an ancient book using a special wand." msgstr "" -#: gnu/packages/games.scm:1780 +#: gnu/packages/games.scm:1781 msgid "" "GNOME 2048 provides a 2D grid for playing 2048, a\n" "single-player sliding tile puzzle game. The objective of the game is to merge\n" @@ -3471,7 +3584,7 @@ msgid "" "in one tile." msgstr "" -#: gnu/packages/games.scm:1819 +#: gnu/packages/games.scm:1820 msgid "" "GNOME Chess provides a 2D board for playing chess games\n" "against human or computer players. It supports loading and saving games in\n" @@ -3479,7 +3592,7 @@ msgid "" "such as chess or stockfish." msgstr "" -#: gnu/packages/games.scm:1880 +#: gnu/packages/games.scm:1881 msgid "" "The GNU backgammon application (also known as \"gnubg\") can\n" "be used for playing, analyzing and teaching the game. It has an advanced\n" @@ -3488,7 +3601,7 @@ msgid "" "also features an attractive, 3D representation of the playing board." msgstr "" -#: gnu/packages/games.scm:1921 +#: gnu/packages/games.scm:1922 msgid "" "GNUbik is a puzzle game in which you must manipulate a cube to make\n" "each of its faces have a uniform color. The game is customizable, allowing\n" @@ -3497,13 +3610,13 @@ msgid "" "scriptable with Guile." msgstr "" -#: gnu/packages/games.scm:1944 +#: gnu/packages/games.scm:1945 msgid "" "GNU Shogi is a program that plays the game Shogi (Japanese\n" "Chess). It is similar to standard chess but this variant is far more complicated." msgstr "" -#: gnu/packages/games.scm:1974 +#: gnu/packages/games.scm:1975 msgid "" "LTris is a tetris clone: differently shaped blocks are falling down the\n" "rectangular playing field and can be moved sideways or rotated by 90 degree\n" @@ -3517,7 +3630,7 @@ msgid "" "watch your CPU playing while enjoying a cup of tea!" msgstr "" -#: gnu/packages/games.scm:2097 +#: gnu/packages/games.scm:2098 msgid "" "NetHack is a single player dungeon exploration game that runs\n" "on a wide variety of computer systems, with a variety of graphical and text\n" @@ -3531,7 +3644,7 @@ msgid "" "role, and your gender." msgstr "" -#: gnu/packages/games.scm:2141 +#: gnu/packages/games.scm:2142 msgid "" "PipeWalker is a simple puzzle game with many diffent themes: connect all\n" "computers to one network server, bring water from a source to the taps, etc.\n" @@ -3540,17 +3653,17 @@ msgid "" "Every puzzle has a complete solution, although there may be more than one." msgstr "" -#: gnu/packages/games.scm:2190 +#: gnu/packages/games.scm:2191 msgid "PrBoom+ is a Doom source port developed from the original PrBoom project." msgstr "" -#: gnu/packages/games.scm:2240 +#: gnu/packages/games.scm:2241 msgid "" "ReTux is an action platformer loosely inspired by the Mario games,\n" "utilizing the art assets from the @code{SuperTux} project." msgstr "" -#: gnu/packages/games.scm:2350 +#: gnu/packages/games.scm:2351 msgid "" "RogueBox Adventures is a graphical roguelike with strong influences\n" "from sandbox games like Minecraft or Terraria. The main idea of RogueBox\n" @@ -3558,7 +3671,7 @@ msgid "" "can be explored and changed freely." msgstr "" -#: gnu/packages/games.scm:2462 +#: gnu/packages/games.scm:2463 msgid "" "Barbie Seahorse Adventures is a retro style platform arcade game.\n" "You are Barbie the seahorse who travels through the jungle, up to the\n" @@ -3568,27 +3681,27 @@ msgid "" "and defeat them with your bubbles!" msgstr "" -#: gnu/packages/games.scm:2522 +#: gnu/packages/games.scm:2523 msgid "" "Solarus is a 2D game engine written in C++, that can run games\n" "scripted in Lua. It has been designed with 16-bit classic Action-RPGs\n" "in mind." msgstr "" -#: gnu/packages/games.scm:2551 +#: gnu/packages/games.scm:2552 msgid "" "Solarus Quest Editor is a graphical user interface to create and\n" "modify quests for the Solarus engine." msgstr "" -#: gnu/packages/games.scm:2627 +#: gnu/packages/games.scm:2628 msgid "" "In SuperStarfighter, up to four local players compete in a\n" "2D arena with fast-moving ships and missiles. Different game types are\n" "available, as well as a single-player mode with AI-controlled ships." msgstr "" -#: gnu/packages/games.scm:2760 +#: gnu/packages/games.scm:2761 msgid "" "Trigger-rally is a 3D rally simulation with great physics\n" "for drifting on over 200 maps. Different terrain materials like dirt,\n" @@ -3600,17 +3713,17 @@ msgid "" "equipped with spoken co-driver notes and co-driver icons." msgstr "" -#: gnu/packages/games.scm:2816 +#: gnu/packages/games.scm:2817 msgid "" "This package provides @command{ufo2map}, a program used to generate\n" "maps for the UFO: Alien Invasion strategy game." msgstr "" -#: gnu/packages/games.scm:2858 +#: gnu/packages/games.scm:2859 msgid "This package contains maps and other assets for UFO: Alien Invasion." msgstr "" -#: gnu/packages/games.scm:2945 +#: gnu/packages/games.scm:2946 msgid "" "UFO: Alien Invasion is a tactical strategy game set in the year 2084.\n" "You control a secret organisation charged with defending Earth from a brutal\n" @@ -3628,11 +3741,11 @@ msgid "" "properly." msgstr "" -#: gnu/packages/games.scm:2982 +#: gnu/packages/games.scm:2983 msgid "A graphical user interface for the package @code{gnushogi}." msgstr "" -#: gnu/packages/games.scm:3035 +#: gnu/packages/games.scm:3036 msgid "" "L'Abbaye des Morts is a 2D platform game set in 13th century\n" "France. The Cathars, who preach about good Christian beliefs, were being\n" @@ -3641,14 +3754,14 @@ msgid "" "that beneath its ruins lay buried an ancient evil." msgstr "" -#: gnu/packages/games.scm:3081 +#: gnu/packages/games.scm:3082 msgid "" "Angband is a Classic dungeon exploration roguelike. Explore\n" "the depths below Angband, seeking riches, fighting monsters, and preparing to\n" "fight Morgoth, the Lord of Darkness." msgstr "" -#: gnu/packages/games.scm:3129 +#: gnu/packages/games.scm:3130 msgid "" "Pingus is a free Lemmings-like puzzle game in which the player takes\n" "command of a bunch of small animals and has to guide them through levels.\n" @@ -3658,21 +3771,21 @@ msgid "" "level's exit. The game is presented in a 2D side view." msgstr "" -#: gnu/packages/games.scm:3152 +#: gnu/packages/games.scm:3153 msgid "" "The GNU Talk Filters are programs that convert English text\n" "into stereotyped or otherwise humorous dialects. The filters are provided as\n" "a C library, so they can easily be integrated into other programs." msgstr "" -#: gnu/packages/games.scm:3196 +#: gnu/packages/games.scm:3197 msgid "" "The player controls a character (one of three: Good, Bad, and Dead),\n" "dodges the missiles (lots of it cover the screen, but the character's hitbox\n" "is very small), and shoot at the adversaries that keep appear on the screen." msgstr "" -#: gnu/packages/games.scm:3239 +#: gnu/packages/games.scm:3240 msgid "" "CMatrix simulates the display from \"The Matrix\" and is\n" "based on the screensaver from the movie's website. It works with terminal\n" @@ -3680,14 +3793,14 @@ msgid "" "asynchronously and at a user-defined speed." msgstr "" -#: gnu/packages/games.scm:3270 +#: gnu/packages/games.scm:3271 msgid "" "GNU Chess is a chess engine. It allows you to compete\n" "against the computer in a game of chess, either through the default terminal\n" "interface or via an external visual interface such as GNU XBoard." msgstr "" -#: gnu/packages/games.scm:3332 +#: gnu/packages/games.scm:3333 msgid "" "GNU FreeDink is a free and portable re-implementation of the engine\n" "for the role-playing game Dink Smallwood. It supports not only the original\n" @@ -3695,17 +3808,17 @@ msgid "" "To that extent, it also includes a front-end for managing all of your D-Mods." msgstr "" -#: gnu/packages/games.scm:3360 +#: gnu/packages/games.scm:3361 msgid "This package contains the game data of GNU Freedink." msgstr "" -#: gnu/packages/games.scm:3383 +#: gnu/packages/games.scm:3384 msgid "" "DFArc makes it easy to play and manage the GNU FreeDink game\n" "and its numerous D-Mods." msgstr "" -#: gnu/packages/games.scm:3453 +#: gnu/packages/games.scm:3454 msgid "" "GNU XBoard is a graphical board for all varieties of chess,\n" "including international chess, xiangqi (Chinese chess), shogi (Japanese chess)\n" @@ -3714,7 +3827,7 @@ msgid "" "Portable Game Notation." msgstr "" -#: gnu/packages/games.scm:3488 +#: gnu/packages/games.scm:3489 msgid "" "GNU Typist is a universal typing tutor. It can be used to learn and\n" "practice touch-typing. Several tutorials are included; in addition to\n" @@ -3723,7 +3836,7 @@ msgid "" "are primarily in English, however some in other languages are provided." msgstr "" -#: gnu/packages/games.scm:3560 +#: gnu/packages/games.scm:3561 msgid "" "The Irrlicht Engine is a high performance realtime 3D engine written in\n" "C++. Features include an OpenGL renderer, extensible materials, scene graph\n" @@ -3731,7 +3844,7 @@ msgid "" "for common mesh file formats, and collision detection." msgstr "" -#: gnu/packages/games.scm:3611 +#: gnu/packages/games.scm:3612 msgid "" "M.A.R.S. is a 2D space shooter with pretty visual effects and\n" "attractive physics. Players can battle each other or computer controlled\n" @@ -3739,7 +3852,7 @@ msgid "" "match, cannon keep, and grave-itation pit." msgstr "" -#: gnu/packages/games.scm:3650 +#: gnu/packages/games.scm:3651 msgid "" "Glk defines a portable API for applications with text UIs. It was\n" "primarily designed for interactive fiction, but it should be suitable for many\n" @@ -3748,7 +3861,7 @@ msgid "" "using the @code{curses.h} library for screen control." msgstr "" -#: gnu/packages/games.scm:3690 +#: gnu/packages/games.scm:3691 msgid "" "Glulx is a 32-bit portable virtual machine intended for writing and\n" "playing interactive fiction. It was designed by Andrew Plotkin to relieve\n" @@ -3756,28 +3869,28 @@ msgid "" "reference interpreter, using the Glk API." msgstr "" -#: gnu/packages/games.scm:3716 +#: gnu/packages/games.scm:3717 msgid "" "Fifechan is a lightweight cross platform GUI library written in C++\n" "specifically designed for games. It has a built in set of extendable GUI\n" "Widgets, and allows users to create more." msgstr "" -#: gnu/packages/games.scm:3791 +#: gnu/packages/games.scm:3792 msgid "" "@acronym{FIFE, Flexible Isometric Free Engine} is a multi-platform\n" "isometric game engine. Python bindings are included allowing users to create\n" "games using Python as well as C++." msgstr "" -#: gnu/packages/games.scm:3826 +#: gnu/packages/games.scm:3827 msgid "" "Fizmo is a console-based Z-machine interpreter. It is used to play\n" "interactive fiction, also known as text adventures, which were implemented\n" "either by Infocom or created using the Inform compiler." msgstr "" -#: gnu/packages/games.scm:3849 +#: gnu/packages/games.scm:3850 msgid "" "GNU Go is a program that plays the game of Go, in which players\n" "place stones on a grid to form territory or capture other stones. While\n" @@ -3788,7 +3901,7 @@ msgid "" "Protocol)." msgstr "" -#: gnu/packages/games.scm:3878 +#: gnu/packages/games.scm:3879 msgid "" "Extreme Tux Racer, or etracer as it is called for short, is\n" "a simple OpenGL racing game featuring Tux, the Linux mascot. The goal of the\n" @@ -3801,7 +3914,7 @@ msgid "" "This game is based on the GPL version of the famous game TuxRacer." msgstr "" -#: gnu/packages/games.scm:3952 +#: gnu/packages/games.scm:3953 msgid "" "SuperTuxKart is a 3D kart racing game, with a focus on\n" "having fun over realism. You can play with up to 4 friends on one PC, racing\n" @@ -3809,7 +3922,7 @@ msgid "" "also available." msgstr "" -#: gnu/packages/games.scm:4028 +#: gnu/packages/games.scm:4029 msgid "" "Unknown Horizons is a 2D realtime strategy simulation with an emphasis\n" "on economy and city building. Expand your small settlement to a strong and\n" @@ -3818,7 +3931,7 @@ msgid "" "trade and diplomacy." msgstr "" -#: gnu/packages/games.scm:4081 +#: gnu/packages/games.scm:4082 msgid "" "GNUjump is a simple, yet addictive game in which you must jump from\n" "platform to platform to avoid falling, while the platforms drop at faster rates\n" @@ -3826,7 +3939,7 @@ msgid "" "falling, themeable graphics and sounds, and replays." msgstr "" -#: gnu/packages/games.scm:4117 +#: gnu/packages/games.scm:4118 msgid "" "The Battle for Wesnoth is a fantasy, turn based tactical strategy game,\n" "with several single player campaigns, and multiplayer games (both networked and\n" @@ -3838,20 +3951,20 @@ msgid "" "next campaign." msgstr "" -#: gnu/packages/games.scm:4137 +#: gnu/packages/games.scm:4138 msgid "" "This package contains a dedicated server for @emph{The\n" "Battle for Wesnoth}." msgstr "" -#: gnu/packages/games.scm:4179 +#: gnu/packages/games.scm:4180 msgid "" "Gamine is a game designed for young children who are learning to use the\n" "mouse and keyboard. The child uses the mouse to draw colored dots and lines\n" "on the screen and keyboard to display letters." msgstr "" -#: gnu/packages/games.scm:4211 +#: gnu/packages/games.scm:4212 msgid "" "ManaPlus is a 2D MMORPG client for game servers. It is the only\n" "fully supported client for @uref{http://www.themanaworld.org, The mana\n" @@ -3859,7 +3972,7 @@ msgid "" "@uref{http://landoffire.org, Land of fire}." msgstr "" -#: gnu/packages/games.scm:4243 +#: gnu/packages/games.scm:4244 msgid "" "OpenTTD is a game in which you transport goods and\n" "passengers by land, water and air. It is a re-implementation of Transport\n" @@ -3869,7 +3982,7 @@ msgid "" "engine. When you start it you will be prompted to download a graphics set." msgstr "" -#: gnu/packages/games.scm:4303 +#: gnu/packages/games.scm:4304 msgid "" "The OpenGFX project is an implementation of the OpenTTD base graphics\n" "set that aims to ensure the best possible out-of-the-box experience.\n" @@ -3884,29 +3997,29 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:4361 +#: gnu/packages/games.scm:4362 msgid "" "OpenSFX is a set of free base sounds for OpenTTD which make\n" "it possible to play OpenTTD without requiring the proprietary sound files from\n" "the original Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4404 +#: gnu/packages/games.scm:4405 msgid "" "OpenMSX is a music set for OpenTTD which makes it possible\n" "to play OpenTTD without requiring the proprietary music from the original\n" "Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4473 +#: gnu/packages/games.scm:4474 msgid "openrct2-title-sequences is a set of title sequences for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4513 +#: gnu/packages/games.scm:4514 msgid "openrct2-objects is a set of objects for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4576 +#: gnu/packages/games.scm:4577 msgid "" "OpenRCT2 is a free software re-implementation of\n" "RollerCoaster Tycoon 2 (RCT2). The gameplay revolves around building and\n" @@ -3916,27 +4029,27 @@ msgid "" "images, etc.)" msgstr "" -#: gnu/packages/games.scm:4630 +#: gnu/packages/games.scm:4631 msgid "" "The Emilia Pinball Project is a pinball simulator. There\n" "are only two levels to play with, but they are very addictive." msgstr "" -#: gnu/packages/games.scm:4659 +#: gnu/packages/games.scm:4660 msgid "" "Pioneers is an emulation of the board game The Settlers of\n" "Catan. It can be played on a local network, on the internet, and with AI\n" "players." msgstr "" -#: gnu/packages/games.scm:4701 +#: gnu/packages/games.scm:4702 msgid "" "The goal of this logic game is to open all cards in a 6x6\n" "grid, using a number of hints as to their relative position. The game idea\n" "is attributed to Albert Einstein." msgstr "" -#: gnu/packages/games.scm:4731 +#: gnu/packages/games.scm:4732 msgid "" "POWWOW is a client software which can be used for telnet as well as for\n" "@dfn{Multi-User Dungeon} (MUD). Additionally it can serve as a nice client for\n" @@ -3944,21 +4057,21 @@ msgid "" "http://lavachat.symlynx.com/unix/" msgstr "" -#: gnu/packages/games.scm:4838 +#: gnu/packages/games.scm:4839 msgid "" "Red Eclipse is an arena shooter, created from the Cube2 engine.\n" "Offering an innovative parkour system and distinct but all potent weapons,\n" "Red Eclipse provides fast paced and accessible gameplay." msgstr "" -#: gnu/packages/games.scm:4903 +#: gnu/packages/games.scm:4904 msgid "" "Grue Hunter is a text adventure game written in Perl. You must make\n" "your way through an underground cave system in search of the Grue. Can you\n" "capture it and get out alive?" msgstr "" -#: gnu/packages/games.scm:4942 +#: gnu/packages/games.scm:4943 msgid "" "lierolibre is an earthworm action game where you fight another player\n" "(or the computer) underground using a wide array of weapons.\n" @@ -3983,14 +4096,14 @@ msgid "" "fullscreen, use F5 or Alt+Enter." msgstr "" -#: gnu/packages/games.scm:5021 +#: gnu/packages/games.scm:5022 msgid "" "Tennix is a 2D tennis game. You can play against the\n" "computer or against another player using the keyboard. The game runs\n" "in-window at 640x480 resolution or fullscreen." msgstr "" -#: gnu/packages/games.scm:5105 +#: gnu/packages/games.scm:5106 msgid "" "Warzone 2100 offers campaign, multi-player, and single-player skirmish\n" "modes. An extensive tech tree with over 400 different technologies, combined\n" @@ -3998,7 +4111,7 @@ msgid "" "tactics." msgstr "" -#: gnu/packages/games.scm:5184 +#: gnu/packages/games.scm:5185 msgid "" "In Widelands, you are the regent of a small clan. You start out with\n" "nothing but your headquarters, where all your resources are stored.\n" @@ -4020,7 +4133,7 @@ msgid "" "of war. Widelands also offers an Artificial Intelligence to challenge you." msgstr "" -#: gnu/packages/games.scm:5236 +#: gnu/packages/games.scm:5237 msgid "" "In the year 2579, the intergalactic weapons corporation, WEAPCO, has\n" "dominated the galaxy. Guide Chris Bainfield and his friend Sid Wilson on\n" @@ -4029,7 +4142,7 @@ msgid "" "in strikes against the evil corporation." msgstr "" -#: gnu/packages/games.scm:5267 +#: gnu/packages/games.scm:5268 msgid "" "In this game you are the captain of the cargo ship Chromium B.S.U. and\n" "are responsible for delivering supplies to the troops on the front line. Your\n" @@ -4037,7 +4150,7 @@ msgid "" "safety of the Chromium vessel." msgstr "" -#: gnu/packages/games.scm:5350 +#: gnu/packages/games.scm:5351 msgid "" "Tux Paint is a free drawing program designed for young children (kids\n" "ages 3 and up). It has a simple, easy-to-use interface; fun sound effects;\n" @@ -4046,23 +4159,23 @@ msgid "" "your child be creative." msgstr "" -#: gnu/packages/games.scm:5390 +#: gnu/packages/games.scm:5391 msgid "" "This package contains a set of \"Rubber Stamp\" images which can be used\n" "with the \"Stamp\" tool within Tux Paint." msgstr "" -#: gnu/packages/games.scm:5439 +#: gnu/packages/games.scm:5440 msgid "Tux Paint Config is a graphical configuration editor for Tux Paint." msgstr "" -#: gnu/packages/games.scm:5491 +#: gnu/packages/games.scm:5492 msgid "" "SuperTux is a classic 2D jump'n run sidescroller game in\n" "a style similar to the original Super Mario games." msgstr "" -#: gnu/packages/games.scm:5523 +#: gnu/packages/games.scm:5524 msgid "" "TinTin++ is a MUD client which supports MCCP (Mud Client Compression\n" "Protocol), MMCP (Mud Master Chat Protocol), xterm 256 colors, most TELNET\n" @@ -4070,7 +4183,7 @@ msgid "" "Linux / Mac OS X servers, and an auto mapper with a VT100 map display." msgstr "" -#: gnu/packages/games.scm:5563 +#: gnu/packages/games.scm:5564 msgid "" "Learn programming, playing with ants and spider webs ;-)\n" "Your robot ant can be programmed in many languages: OCaml, Python, C, C++,\n" @@ -4078,14 +4191,14 @@ msgid "" "programmers may also add their own favorite language." msgstr "" -#: gnu/packages/games.scm:5602 +#: gnu/packages/games.scm:5603 msgid "" "Bambam is a simple baby keyboard (and gamepad) masher\n" "application that locks the keyboard and mouse and instead displays bright\n" "colors, pictures, and sounds." msgstr "" -#: gnu/packages/games.scm:5663 +#: gnu/packages/games.scm:5664 msgid "" "Mr. Rescue is an arcade styled 2d action game centered around evacuating\n" "civilians from burning buildings. The game features fast-paced fire\n" @@ -4093,7 +4206,7 @@ msgid "" "throwing people around in pseudo-randomly generated buildings." msgstr "" -#: gnu/packages/games.scm:5770 +#: gnu/packages/games.scm:5771 msgid "" "HyperRogue is a game in which the player collects treasures and fights\n" "monsters -- rogue-like but for the fact that it is played on the hyperbolic\n" @@ -4107,13 +4220,13 @@ msgid "" "symbols, it still needs graphics to render the non-euclidean world." msgstr "" -#: gnu/packages/games.scm:5817 +#: gnu/packages/games.scm:5818 msgid "" "Kobo Deluxe is an enhanced version of Akira Higuchi's XKobo graphical game\n" "for Un*x systems with X11." msgstr "" -#: gnu/packages/games.scm:5845 +#: gnu/packages/games.scm:5846 msgid "" "Freeciv is a turn-based empire building strategy game\n" "inspired by the history of human civilization. The game commences in\n" @@ -4121,7 +4234,7 @@ msgid "" "into the Space Age." msgstr "" -#: gnu/packages/games.scm:5878 +#: gnu/packages/games.scm:5879 msgid "" "@code{No More Secrets} provides a command line tool called \"nms\"\n" "that recreates the famous data decryption effect seen on screen in the 1992\n" @@ -4132,25 +4245,25 @@ msgid "" "starting a decryption sequence to reveal the original plaintext characters." msgstr "" -#: gnu/packages/games.scm:5906 +#: gnu/packages/games.scm:5907 msgid "This package contains the data files required for MegaGlest." msgstr "" -#: gnu/packages/games.scm:5961 +#: gnu/packages/games.scm:5962 msgid "" "MegaGlest is a cross-platform 3D real-time strategy (RTS)\n" "game, where you control the armies of one of seven different factions: Tech,\n" "Magic, Egypt, Indians, Norsemen, Persian or Romans." msgstr "" -#: gnu/packages/games.scm:6013 +#: gnu/packages/games.scm:6014 msgid "" "In FreeGish you control Gish, a ball of tar who lives\n" "happily with his girlfriend Brea, until one day a mysterious dark creature\n" "emerges from a sewer hole and pulls her below ground." msgstr "" -#: gnu/packages/games.scm:6049 +#: gnu/packages/games.scm:6050 msgid "" "C-Dogs SDL is a classic overhead run-and-gun game,\n" "supporting up to 4 players in co-op and deathmatch modes. Customize your\n" @@ -4158,21 +4271,21 @@ msgid "" "over 100 user-created campaigns." msgstr "" -#: gnu/packages/games.scm:6149 +#: gnu/packages/games.scm:6150 msgid "" "Kiki the nano bot is a 3D puzzle game. It is basically a\n" "mixture of the games Sokoban and Kula-World. Your task is to help Kiki, a\n" "small robot living in the nano world, repair its maker." msgstr "" -#: gnu/packages/games.scm:6225 +#: gnu/packages/games.scm:6226 msgid "" "Teeworlds is an online multiplayer game. Battle with up to\n" "16 players in a variety of game modes, including Team Deathmatch and Capture\n" "The Flag. You can even design your own maps!" msgstr "" -#: gnu/packages/games.scm:6285 +#: gnu/packages/games.scm:6286 msgid "" "Enigma is a puzzle game with 550 unique levels. The object\n" "of the game is to find and uncover pairs of identically colored ‘Oxyd’ stones.\n" @@ -4184,7 +4297,7 @@ msgid "" "with the mouse isn’t always trivial." msgstr "" -#: gnu/packages/games.scm:6319 +#: gnu/packages/games.scm:6320 msgid "" "Chroma is an abstract puzzle game. A variety of colourful\n" "shapes are arranged in a series of increasingly complex patterns, forming\n" @@ -4194,7 +4307,7 @@ msgid "" "becoming difficult enough to tax even the brightest of minds." msgstr "" -#: gnu/packages/games.scm:6384 +#: gnu/packages/games.scm:6385 msgid "" "Fish Fillets NG is strictly a puzzle game. The goal in\n" "every of the seventy levels is always the same: find a safe way out. The fish\n" @@ -4203,14 +4316,14 @@ msgid "" "fish. The whole game is accompanied by quiet, comforting music." msgstr "" -#: gnu/packages/games.scm:6452 +#: gnu/packages/games.scm:6453 msgid "" "Dungeon Crawl Stone Soup (also known as \"Crawl\" or DCSS\n" "for short) is a roguelike adventure through dungeons filled with dangerous\n" "monsters in a quest to find the mystifyingly fabulous Orb of Zot." msgstr "" -#: gnu/packages/games.scm:6529 +#: gnu/packages/games.scm:6530 msgid "" "Lugaru is a third-person action game. The main character,\n" "Turner, is an anthropomorphic rebel bunny rabbit with impressive combat skills.\n" @@ -4220,11 +4333,11 @@ msgid "" "fight against their plot and save his fellow rabbits from slavery." msgstr "" -#: gnu/packages/games.scm:6574 +#: gnu/packages/games.scm:6575 msgid "0ad-data provides the data files required by the game 0ad." msgstr "" -#: gnu/packages/games.scm:6710 +#: gnu/packages/games.scm:6711 msgid "" "0 A.D. is a real-time strategy (RTS) game of ancient\n" "warfare. It's a historically-based war/economy game that allows players to\n" @@ -4234,7 +4347,7 @@ msgid "" "0ad needs a window manager that supports 'Extended Window Manager Hints'." msgstr "" -#: gnu/packages/games.scm:6776 +#: gnu/packages/games.scm:6777 msgid "" "The original Colossal Cave Adventure from 1976 was the origin of all\n" "text adventures, dungeon-crawl (computer) games, and computer-hosted\n" @@ -4243,7 +4356,7 @@ msgid "" "``adventure 2.5'' and ``430-point adventure''." msgstr "" -#: gnu/packages/games.scm:6899 +#: gnu/packages/games.scm:6900 msgid "" "Tales of Maj’Eyal (ToME) RPG, featuring tactical turn-based\n" "combat and advanced character building. Play as one of many unique races and\n" @@ -4254,21 +4367,21 @@ msgid "" "Tales of Maj’Eyal offers engaging roguelike gameplay for the 21st century." msgstr "" -#: gnu/packages/games.scm:6945 +#: gnu/packages/games.scm:6946 msgid "" "Quakespasm is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7002 +#: gnu/packages/games.scm:7003 msgid "" "vkquake is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7067 +#: gnu/packages/games.scm:7068 msgid "" "Yamagi Quake II is an enhanced client for id Software's Quake II.\n" "The main focus is an unchanged single player experience like back in 1997,\n" @@ -4278,18 +4391,18 @@ msgid "" "making Yamagi Quake II one of the most solid Quake II implementations available." msgstr "" -#: gnu/packages/games.scm:7100 +#: gnu/packages/games.scm:7101 msgid "Nudoku is a ncurses-based Sudoku game for your terminal." msgstr "" -#: gnu/packages/games.scm:7146 +#: gnu/packages/games.scm:7147 msgid "" "The Butterfly Effect (tbe) is a game that uses\n" "realistic physics simulations to combine lots of simple mechanical\n" "elements to achieve a simple goal in the most complex way possible." msgstr "" -#: gnu/packages/games.scm:7192 +#: gnu/packages/games.scm:7193 msgid "" "Pioneer is a space adventure game set in our galaxy at the turn of the\n" "31st century. The game is open-ended, and you are free to eke out whatever\n" @@ -4300,14 +4413,14 @@ msgid "" "whatever you make of it." msgstr "" -#: gnu/packages/games.scm:7221 +#: gnu/packages/games.scm:7222 msgid "" "Badass generates false commits for a range of dates, essentially\n" "hacking the gamification of contribution graphs on platforms such as\n" "Github or Gitlab." msgstr "" -#: gnu/packages/games.scm:7294 +#: gnu/packages/games.scm:7295 msgid "" "Colobot: Gold Edition is a real-time strategy game, where\n" "you can program your units (bots) in a language called CBOT, which is similar\n" @@ -4315,7 +4428,7 @@ msgid "" "You can save humanity and get programming skills!" msgstr "" -#: gnu/packages/games.scm:7386 +#: gnu/packages/games.scm:7387 msgid "" "GZdoom is a port of the Doom 2 game engine, with a modern\n" "renderer. It improves modding support with ZDoom's advanced mapping features\n" @@ -4323,14 +4436,14 @@ msgid "" "Strife, Chex Quest, and fan-created games like Harmony, Hacx and Freedoom." msgstr "" -#: gnu/packages/games.scm:7425 +#: gnu/packages/games.scm:7426 msgid "" "Odamex is a modification of the Doom engine that\n" "allows players to easily join servers dedicated to playing Doom\n" "online." msgstr "" -#: gnu/packages/games.scm:7453 +#: gnu/packages/games.scm:7454 msgid "" "Chocolate Doom takes a different approach to other source ports. Its\n" "aim is to accurately reproduce the experience of playing Vanilla Doom. It is\n" @@ -4343,7 +4456,7 @@ msgid "" "affect gameplay)." msgstr "" -#: gnu/packages/games.scm:7493 +#: gnu/packages/games.scm:7494 msgid "" "Crispy Doom is a friendly fork of Chocolate Doom that provides a higher\n" "display resolution, removes the static limits of the Doom engine and offers\n" @@ -4352,21 +4465,21 @@ msgid "" "original." msgstr "" -#: gnu/packages/games.scm:7566 +#: gnu/packages/games.scm:7567 msgid "This package provides C11 / gnu11 utilities C library" msgstr "" -#: gnu/packages/games.scm:7635 +#: gnu/packages/games.scm:7636 msgid "" "Fortune is a command-line utility which displays a random\n" "quotation from a collection of quotes." msgstr "" -#: gnu/packages/games.scm:7677 +#: gnu/packages/games.scm:7678 msgid "Xonotic-data provides the data files required by the game Xonotic." msgstr "" -#: gnu/packages/games.scm:7873 +#: gnu/packages/games.scm:7874 msgid "" "Xonotic is a free, fast-paced first-person shooter.\n" "The project is geared towards providing addictive arena shooter\n" @@ -4376,7 +4489,7 @@ msgid "" "open-source FPS of its kind." msgstr "" -#: gnu/packages/games.scm:7920 +#: gnu/packages/games.scm:7921 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4385,7 +4498,7 @@ msgid "" "ncurses for text display." msgstr "" -#: gnu/packages/games.scm:7964 +#: gnu/packages/games.scm:7966 msgid "" "Naev is a 2d action/rpg space game that combines elements from\n" "the action, RPG and simulation genres. You pilot a spaceship from\n" @@ -4397,7 +4510,7 @@ msgid "" "of lore accompanying everything from planets to equipment." msgstr "" -#: gnu/packages/games.scm:8013 +#: gnu/packages/games.scm:8015 msgid "" "Frotz is an interpreter for Infocom games and\n" "other Z-machine games in the text adventure/interactive fiction genre.\n" @@ -4409,7 +4522,7 @@ msgid "" "to play games on webpages. It can also be made into a chat bot." msgstr "" -#: gnu/packages/games.scm:8075 +#: gnu/packages/games.scm:8077 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4419,7 +4532,7 @@ msgid "" "when packaged in Blorb container files or optionally from individual files." msgstr "" -#: gnu/packages/games.scm:8166 +#: gnu/packages/games.scm:8168 msgid "" "Frozen-Bubble is a clone of the popular Puzzle Bobble game, in which\n" "you attempt to shoot bubbles into groups of the same color to cause them to\n" @@ -4434,7 +4547,7 @@ msgid "" "their own levels." msgstr "" -#: gnu/packages/games.scm:8199 +#: gnu/packages/games.scm:8201 msgid "" "Libmanette is a small GObject library giving you simple\n" "access to game controllers. It supports the de-facto standard gamepads as\n" @@ -4442,7 +4555,7 @@ msgid "" "GameController." msgstr "" -#: gnu/packages/games.scm:8245 +#: gnu/packages/games.scm:8247 msgid "" "Quadrapassel comes from the classic falling-block game,\n" "Tetris. The goal of the game is to create complete horizontal lines of\n" @@ -4454,7 +4567,7 @@ msgid "" "your score gets higher, you level up and the blocks fall faster." msgstr "" -#: gnu/packages/games.scm:8294 +#: gnu/packages/games.scm:8296 msgid "" "Endless Sky is a 2D space trading and combat game. Explore\n" "other star systems. Earn money by trading, carrying passengers, or completing\n" @@ -4464,7 +4577,7 @@ msgid "" "civilized than your own." msgstr "" -#: gnu/packages/games.scm:8443 +#: gnu/packages/games.scm:8445 msgid "" "StepMania is a dance and rhythm game. It features 3D\n" "graphics, keyboard and dance pad support, and an editor for creating your own\n" @@ -4474,7 +4587,7 @@ msgid "" "to download and install them in @file{$HOME/.stepmania-X.Y/Songs} directory." msgstr "" -#: gnu/packages/games.scm:8479 +#: gnu/packages/games.scm:8481 msgid "" "@i{oshu!} is a minimalist variant of the @i{osu!} rhythm game,\n" "which is played by pressing buttons and following along sliders as they appear\n" @@ -4484,7 +4597,7 @@ msgid "" "download and unpack them separately." msgstr "" -#: gnu/packages/games.scm:8562 +#: gnu/packages/games.scm:8564 msgid "" "Battle Tanks (also known as \"btanks\") is a funny battle\n" "game, where you can choose one of three vehicles and eliminate your enemy\n" @@ -4493,7 +4606,7 @@ msgid "" "and cooperative." msgstr "" -#: gnu/packages/games.scm:8596 +#: gnu/packages/games.scm:8598 msgid "" "Slime Volley is a 2D arcade-oriented volleyball simulation, in\n" "the spirit of some Java games of the same name.\n" @@ -4504,7 +4617,7 @@ msgid "" "the ground, the set ends and all balls are served again." msgstr "" -#: gnu/packages/games.scm:8626 +#: gnu/packages/games.scm:8628 msgid "" "Slingshot is a two-dimensional strategy game where two\n" "players attempt to shoot one another through a section of space populated by\n" @@ -4512,14 +4625,14 @@ msgid "" "affected by the gravity of the planets." msgstr "" -#: gnu/packages/games.scm:8674 +#: gnu/packages/games.scm:8676 msgid "" "4D-TRIS is an alteration of the well-known Tetris game. The\n" "game field is extended to 4D space, which has to filled up by the gamer with\n" "4D hyper cubes." msgstr "" -#: gnu/packages/games.scm:8751 +#: gnu/packages/games.scm:8753 msgid "" "Arx Libertatis is a cross-platform port of Arx Fatalis, a 2002\n" "first-person role-playing game / dungeon crawler developed by Arkane Studios.\n" @@ -4529,7 +4642,7 @@ msgid "" "where the player draws runes in real time to effect the desired spell." msgstr "" -#: gnu/packages/games.scm:8797 +#: gnu/packages/games.scm:8799 msgid "" "The Legend of Edgar is a 2D platform game with a persistent world.\n" "When Edgar's father fails to return home after venturing out one dark and stormy night,\n" @@ -4537,7 +4650,7 @@ msgid "" "a fortress beyond the forbidden swamp." msgstr "" -#: gnu/packages/games.scm:8899 +#: gnu/packages/games.scm:8901 msgid "" "OpenClonk is a multiplayer action/tactics/skill game. It is\n" "often referred to as a mixture of The Settlers and Worms. In a simple 2D\n" @@ -4547,20 +4660,20 @@ msgid "" "fight each other on an arena-like map." msgstr "" -#: gnu/packages/games.scm:8931 +#: gnu/packages/games.scm:8933 msgid "" "Flare (Free Libre Action Roleplaying Engine) is a simple\n" "game engine built to handle a very specific kind of game: single-player 2D\n" "action RPGs." msgstr "" -#: gnu/packages/games.scm:8994 +#: gnu/packages/games.scm:8996 msgid "" "Flare is a single-player 2D action RPG with\n" "fast-paced action and a dark fantasy style." msgstr "" -#: gnu/packages/games.scm:9046 +#: gnu/packages/games.scm:9048 msgid "" "Far below the surface of the planet is a place of limitless\n" "power. Those that seek to control such a utopia will soon bring an end to\n" @@ -4574,7 +4687,7 @@ msgid "" "Orcus Dome from evil." msgstr "" -#: gnu/packages/games.scm:9108 +#: gnu/packages/games.scm:9110 msgid "" "Marble Marcher is a video game that uses a fractal physics\n" "engine and fully procedural rendering to produce beautiful and unique\n" @@ -4584,7 +4697,7 @@ msgid "" "levels to unlock." msgstr "" -#: gnu/packages/games.scm:9159 +#: gnu/packages/games.scm:9161 msgid "" "SimGear is a set of libraries designed to be used as\n" "building blocks for quickly assembling 3D simulations, games, and\n" @@ -4592,7 +4705,7 @@ msgid "" "and also provides the base for the FlightGear Flight Simulator." msgstr "" -#: gnu/packages/games.scm:9253 +#: gnu/packages/games.scm:9255 msgid "" "The goal of the FlightGear project is to create a\n" "sophisticated flight simulator framework for use in research or academic\n" @@ -4602,14 +4715,14 @@ msgid "" "simulator." msgstr "" -#: gnu/packages/games.scm:9306 +#: gnu/packages/games.scm:9308 msgid "" "You, as a bunny, have to jump on your opponents to make them\n" "explode. It is a true multiplayer game; you cannot play this alone. You can\n" "play with up to four players simultaneously. It has network support." msgstr "" -#: gnu/packages/games.scm:9373 +#: gnu/packages/games.scm:9375 msgid "" "Hedgewars is a turn based strategy, artillery, action and comedy game,\n" "featuring the antics of pink hedgehogs with attitude as they battle from the\n" @@ -4619,7 +4732,7 @@ msgid "" "and bring the war to your enemy." msgstr "" -#: gnu/packages/games.scm:9407 +#: gnu/packages/games.scm:9409 msgid "" "The gruid module provides packages for easily building\n" "grid-based applications in Go. The library abstracts rendering and input for\n" @@ -4629,13 +4742,13 @@ msgid "" "application." msgstr "" -#: gnu/packages/games.scm:9437 +#: gnu/packages/games.scm:9439 msgid "" "The gruid-tcell module provides a Gruid driver for building\n" "terminal full-window applications." msgstr "" -#: gnu/packages/games.scm:9464 +#: gnu/packages/games.scm:9466 msgid "" "Harmonist: Dayoriah Clan Infiltration is a stealth\n" "coffee-break roguelike game. The game has a heavy focus on tactical\n" @@ -4645,7 +4758,7 @@ msgid "" "on items and player adaptability for character progression." msgstr "" -#: gnu/packages/games.scm:9573 +#: gnu/packages/games.scm:9575 msgid "" "Drascula: The Vampire Strikes Back is a classic humorous 2D\n" "point and click adventure game.\n" @@ -4657,7 +4770,7 @@ msgid "" "the World and demonstrating that he is even more evil than his brother Vlad." msgstr "" -#: gnu/packages/games.scm:9653 +#: gnu/packages/games.scm:9655 msgid "" "Lure of the Temptress is a classic 2D point and click adventure game.\n" "\n" @@ -4676,7 +4789,7 @@ msgid "" "Skorl. Maybe it would be an idea to try and escape..." msgstr "" -#: gnu/packages/games.scm:9752 +#: gnu/packages/games.scm:9754 msgid "" "Flight of the Amazon Queen is a 2D point-and-click\n" "adventure game set in the 1940s.\n" @@ -4693,7 +4806,7 @@ msgid "" "women and 6-foot-tall pygmies." msgstr "" -#: gnu/packages/games.scm:9852 +#: gnu/packages/games.scm:9854 msgid "" "Beneath a Steel Sky is a science-fiction thriller set in a bleak\n" "post-apocalyptic vision of the future. It revolves around Union City,\n" @@ -4716,7 +4829,7 @@ msgid "" "and to seek vengeance for the killing of his tribe." msgstr "" -#: gnu/packages/games.scm:9911 +#: gnu/packages/games.scm:9913 msgid "" "GNU Robots is a game in which you program a robot to explore a world\n" "full of enemies that can hurt it, obstacles and food to be eaten. The goal of\n" @@ -4724,14 +4837,14 @@ msgid "" "may be written in a plain text file in the Scheme programming language." msgstr "" -#: gnu/packages/games.scm:9981 +#: gnu/packages/games.scm:9983 msgid "" "Ri-li is a game in which you drive a wooden toy\n" "steam locomotive across many levels and collect all the coaches to\n" "win." msgstr "" -#: gnu/packages/games.scm:10037 +#: gnu/packages/games.scm:10039 msgid "" "FreeOrion is a turn-based space empire and galactic conquest (4X)\n" "computer game being designed and built by the FreeOrion project. Control an\n" @@ -4741,14 +4854,14 @@ msgid "" "remake of that series or any other game." msgstr "" -#: gnu/packages/games.scm:10093 +#: gnu/packages/games.scm:10095 msgid "" "Leela-zero is a Go engine with no human-provided knowledge, modeled after\n" "the AlphaGo Zero paper. The current best network weights file for the engine\n" "can be downloaded from @url{https://zero.sjeng.org/best-network}." msgstr "" -#: gnu/packages/games.scm:10171 +#: gnu/packages/games.scm:10173 msgid "" "This a tool for Go players which performs the following functions:\n" "@itemize\n" @@ -4760,7 +4873,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:10214 +#: gnu/packages/games.scm:10216 msgid "" "KTuberling is a drawing toy intended for small children and\n" "adults who remain young at heart. The game has no winner; the only purpose is\n" @@ -4779,7 +4892,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10260 +#: gnu/packages/games.scm:10262 msgid "" "Picmi is a number logic game in which cells in a grid have\n" "to be colored or left blank according to numbers given at the side of the\n" @@ -4788,7 +4901,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10297 +#: gnu/packages/games.scm:10299 msgid "" "Kolf is a miniature golf game for one to ten players. The\n" "game is played from an overhead view, with a short bar representing the golf\n" @@ -4807,13 +4920,13 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10341 +#: gnu/packages/games.scm:10343 msgid "" "Shared library and common files for kmahjongg, kshisen and\n" "other Mah Jongg like games." msgstr "" -#: gnu/packages/games.scm:10374 +#: gnu/packages/games.scm:10376 msgid "" "In KMahjongg the tiles are scrambled and staked on top of\n" "each other to resemble a certain shape. The player is then expected to remove\n" @@ -4825,7 +4938,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10416 +#: gnu/packages/games.scm:10418 msgid "" "KShisen is a solitaire-like game played using the standard\n" "set of Mahjong tiles. Unlike Mahjong however, KShisen has only one layer of\n" @@ -4834,7 +4947,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10471 +#: gnu/packages/games.scm:10473 msgid "" "Kajongg is the ancient Chinese board game for 4 players.\n" "\n" @@ -4849,7 +4962,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10513 +#: gnu/packages/games.scm:10515 msgid "" "KBreakout is similar to the classics breakout and xboing,\n" "featuring a number of added graphical enhancements and effects. You control a\n" @@ -4859,7 +4972,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10551 +#: gnu/packages/games.scm:10553 msgid "" "KMines is a classic Minesweeper game. The idea is to\n" "uncover all the squares without blowing up any mines. When a mine is blown\n" @@ -4868,7 +4981,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10588 +#: gnu/packages/games.scm:10590 msgid "" "Konquest is the KDE version of Gnu-Lactic Konquest. Players\n" "conquer other planets by sending ships to them. The goal is to build an\n" @@ -4879,7 +4992,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10627 +#: gnu/packages/games.scm:10629 msgid "" "KBounce is a single player arcade game with the elements of\n" "puzzle. It is played on a field, surrounded by wall, with two or more balls\n" @@ -4889,7 +5002,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10665 +#: gnu/packages/games.scm:10667 msgid "" "KBlocks is the classic Tetris-like falling blocks game.\n" "\n" @@ -4901,7 +5014,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10708 +#: gnu/packages/games.scm:10710 msgid "" "KSudoku is a Sudoku game and solver, supporting a range of\n" "2D and 3D Sudoku variants. In addition to playing Sudoku, it can print Sudoku\n" @@ -4930,7 +5043,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10763 +#: gnu/packages/games.scm:10765 msgid "" "KLines is a simple but highly addictive one player game.\n" "\n" @@ -4947,7 +5060,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10806 +#: gnu/packages/games.scm:10808 msgid "" "KGoldrunner is an action game where the hero runs through a\n" "maze, climbs stairs, dig holes and dodges enemies in order to collect all the\n" @@ -4961,7 +5074,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10849 +#: gnu/packages/games.scm:10851 msgid "" "KDiamond is a three-in-a-row game like Bejeweled. It\n" "features unlimited fun with randomly generated games and five difficulty\n" @@ -4970,7 +5083,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10885 +#: gnu/packages/games.scm:10887 msgid "" "KFourInLine is a board game for two players based on the\n" "Connect-Four game.\n" @@ -4981,7 +5094,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10924 +#: gnu/packages/games.scm:10926 msgid "" "KBlackbox is a game of hide and seek played on a grid of\n" "boxes where the computer has hidden several balls. The position of the hidden\n" @@ -4993,7 +5106,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10964 +#: gnu/packages/games.scm:10966 msgid "" "KNetWalk is a small game where you have to build up a\n" "computer network by rotating the wires to connect the terminals to the server.\n" @@ -5006,7 +5119,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11002 +#: gnu/packages/games.scm:11004 msgid "" "Bomber is a single player arcade game.\n" "\n" @@ -5022,7 +5135,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11047 +#: gnu/packages/games.scm:11049 msgid "" "Granatier is a clone of the classic Bomberman game,\n" "inspired by the work of the Clanbomber clone.\n" @@ -5030,7 +5143,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11085 +#: gnu/packages/games.scm:11087 msgid "" "KsirK is a multi-player network-enabled game. The goal of\n" "the game is simply to conquer the world by attacking your neighbors with your\n" @@ -5055,7 +5168,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11145 +#: gnu/packages/games.scm:11147 msgid "" "Palapeli is a jigsaw puzzle game. Unlike other games in\n" "that genre, you are not limited to aligning pieces on imaginary grids. The\n" @@ -5067,7 +5180,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11184 +#: gnu/packages/games.scm:11186 msgid "" "Kiriki is an addictive and fun dice game, designed to be\n" "played by as many as six players.\n" @@ -5078,7 +5191,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11224 +#: gnu/packages/games.scm:11226 msgid "" "Kigo is an open-source implementation of the popular Go\n" "game.\n" @@ -5095,7 +5208,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11269 +#: gnu/packages/games.scm:11271 msgid "" "Kubrick is a game based on the Rubik's Cube puzzle.\n" "\n" @@ -5108,7 +5221,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11309 +#: gnu/packages/games.scm:11311 msgid "" "Lieutnant Skat (from German \"Offiziersskat\") is a fun and\n" "engaging card game for two players, where the second player is either live\n" @@ -5119,7 +5232,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11347 +#: gnu/packages/games.scm:11349 msgid "" "Kapman is a clone of the well known game Pac-Man.\n" "\n" @@ -5131,7 +5244,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11386 +#: gnu/packages/games.scm:11388 msgid "" "KSpaceduel is a space battle game for one or two players,\n" "where two ships fly around a star in a struggle to be the only survivor.\n" @@ -5139,7 +5252,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11419 +#: gnu/packages/games.scm:11421 msgid "" "Bovo is a Gomoku (from Japanese 五目並べ - lit. \"five\n" "points\") like game for two players, where the opponents alternate in placing\n" @@ -5150,7 +5263,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11457 +#: gnu/packages/games.scm:11459 msgid "" "Killbots is a simple game of evading killer robots.\n" "\n" @@ -5164,7 +5277,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11499 +#: gnu/packages/games.scm:11501 msgid "" "KSnakeDuel is a fast action game where you steer a snake\n" "which has to eat food. While eating the snake grows. But once a player\n" @@ -5174,7 +5287,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11535 +#: gnu/packages/games.scm:11537 msgid "" "In Kollision you use mouse to control a small blue ball in a\n" "closed space environment filled with small red balls, which move about\n" @@ -5185,7 +5298,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11575 +#: gnu/packages/games.scm:11577 msgid "" "KBattleship is a Battle Ship game for KDE.\n" "\n" @@ -5196,7 +5309,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11615 +#: gnu/packages/games.scm:11617 msgid "" "KReversi is a simple one player strategy game played\n" "against the computer.\n" @@ -5209,7 +5322,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11655 +#: gnu/packages/games.scm:11657 msgid "" "KSquares is an implementation of the popular paper based\n" "game Squares. Two players take turns connecting dots on a grid to complete\n" @@ -5218,7 +5331,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11692 +#: gnu/packages/games.scm:11694 msgid "" "KJumpingcube is a simple tactical game for one or two\n" "players, played on a grid of numbered squares. Each turn, players compete for\n" @@ -5227,7 +5340,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11782 +#: gnu/packages/games.scm:11784 msgid "" "X-Moto is a challenging 2D motocross platform game, where\n" "physics play an all important role in the gameplay. You need to\n" @@ -5235,27 +5348,27 @@ msgid "" "the more difficult challenges." msgstr "" -#: gnu/packages/games.scm:11827 +#: gnu/packages/games.scm:11829 msgid "" "Eboard is a chess board interface for ICS (Internet Chess Servers)\n" "and chess engines." msgstr "" -#: gnu/packages/games.scm:11880 +#: gnu/packages/games.scm:11882 msgid "" "ChessX is a chess database. With ChessX you can operate on your\n" "collection of chess games in many ways: browse, edit, add, organize, analyze,\n" "etc. You can also play games on FICS or against an engine." msgstr "" -#: gnu/packages/games.scm:11935 +#: gnu/packages/games.scm:11937 msgid "" "Stockfish is a very strong chess engine. It is much stronger than the\n" "best human chess grandmasters. It can be used with UCI-compatible GUIs like\n" "ChessX." msgstr "" -#: gnu/packages/games.scm:11964 +#: gnu/packages/games.scm:11966 msgid "" "Barrage is a rather destructive action game that puts you on a shooting\n" "range with the objective to hit as many dummy targets as possible within\n" @@ -5264,7 +5377,7 @@ msgid "" "get high scores." msgstr "" -#: gnu/packages/games.scm:11990 +#: gnu/packages/games.scm:11992 msgid "" "This is a clone of the classic game BurgerTime. In it, you play\n" "the part of a chef who must create burgers by stepping repeatedly on\n" @@ -5274,7 +5387,7 @@ msgid "" "protect you." msgstr "" -#: gnu/packages/games.scm:12018 +#: gnu/packages/games.scm:12020 msgid "" "Seven Kingdoms, designed by Trevor Chan, brings a blend of Real-Time\n" "Strategy with the addition of trade, diplomacy, and espionage. The game\n" @@ -5284,7 +5397,7 @@ msgid "" "kingdom." msgstr "" -#: gnu/packages/games.scm:12134 +#: gnu/packages/games.scm:12136 msgid "" "In the grand tradition of Marble Madness and Super Monkey Ball,\n" "Neverball has you guide a rolling ball through dangerous territory. Balance\n" @@ -5294,13 +5407,13 @@ msgid "" "game." msgstr "" -#: gnu/packages/games.scm:12210 +#: gnu/packages/games.scm:12212 msgid "" "With PokerTH you can play the Texas holdem poker game, either against\n" "computer opponents or against real players online." msgstr "" -#: gnu/packages/games.scm:12281 +#: gnu/packages/games.scm:12283 msgid "" "Xblackjack is a MOTIF/OLIT based tool constructed to get you ready for\n" "the casino. It was inspired by a book called \"Beat the Dealer\" by Edward\n" @@ -5309,13 +5422,13 @@ msgid "" "System\" (high-low system)." msgstr "" -#: gnu/packages/games.scm:12321 +#: gnu/packages/games.scm:12323 msgid "" "Pilot your ship inside a planet to find and rescue the colonists trapped\n" "inside the Zenith Colony." msgstr "" -#: gnu/packages/games.scm:12341 +#: gnu/packages/games.scm:12343 msgid "" "Provides a large set of Go-related services for X11:\n" "@itemize\n" @@ -5326,7 +5439,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:12401 +#: gnu/packages/games.scm:12403 msgid "" "Passage is meant to be a memento mori game. It presents an entire life,\n" "from young adulthood through old age and death, in the span of five minutes.\n" @@ -5335,21 +5448,21 @@ msgid "" "there's no right way to interpret it." msgstr "" -#: gnu/packages/games.scm:12435 +#: gnu/packages/games.scm:12437 msgid "" "High performance animated desktop background setter for\n" "X11 that won't set your CPU on fire, drain your laptop battery, or lower video\n" "game FPS." msgstr "" -#: gnu/packages/games.scm:12465 +#: gnu/packages/games.scm:12467 msgid "" "Curse of War is a fast-paced action strategy game originally\n" "implemented using ncurses user interface. An SDL graphical version is also\n" "available." msgstr "" -#: gnu/packages/games.scm:12496 +#: gnu/packages/games.scm:12498 msgid "" "Schiffbruch is a mix of building, strategy and adventure and gets played\n" "with a two-dimensional view. The game deals with the consequences of a ship\n" @@ -5358,13 +5471,13 @@ msgid "" "get attention, so you get found." msgstr "" -#: gnu/packages/games.scm:12556 +#: gnu/packages/games.scm:12558 msgid "" "This package provides port of Prince of Persia, based on the\n" "disassembly of the DOS version, extended with new features." msgstr "" -#: gnu/packages/games.scm:12587 +#: gnu/packages/games.scm:12589 #, scheme-format msgid "" "@code{fheroes2} is an implementation of Heroes of Might and\n" @@ -5460,7 +5573,7 @@ msgid "" "from Markdown files." msgstr "" -#: gnu/packages/gettext.scm:311 +#: gnu/packages/gettext.scm:304 msgid "" "The po4a (PO for anything) project goal is to ease translations (and\n" "more interestingly, the maintenance of translations) using gettext tools on\n" @@ -5543,18 +5656,18 @@ msgid "" "system. It was forked from the GNU Image Manipulation Program." msgstr "" -#: gnu/packages/gnome.scm:284 +#: gnu/packages/gnome.scm:288 msgid "GUPnP-IGD is a library to handle UPnP IGD port mapping." msgstr "" -#: gnu/packages/gnome.scm:340 +#: gnu/packages/gnome.scm:344 msgid "" "Brasero is an application to burn CD/DVD for the Gnome\n" "Desktop. It is designed to be as simple as possible and has some unique\n" "features to enable users to create their discs easily and quickly." msgstr "" -#: gnu/packages/gnome.scm:372 +#: gnu/packages/gnome.scm:376 msgid "" "Libcloudproviders is a DBus API that allows cloud storage sync\n" "clients to expose their services. Clients such as file managers and desktop\n" @@ -5562,19 +5675,19 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:444 +#: gnu/packages/gnome.scm:448 msgid "" "LibGRSS is a Glib abstraction to handle feeds in RSS, Atom,\n" "and other formats." msgstr "" -#: gnu/packages/gnome.scm:472 +#: gnu/packages/gnome.scm:476 msgid "" "GNOME-JS-Common provides common modules for GNOME JavaScript\n" "bindings." msgstr "" -#: gnu/packages/gnome.scm:555 +#: gnu/packages/gnome.scm:559 msgid "" "Seed is a library and interpreter, dynamically bridging\n" "(through GObjectIntrospection) the WebKit JavaScriptCore engine, with the\n" @@ -5583,21 +5696,21 @@ msgid "" "in JavaScript." msgstr "" -#: gnu/packages/gnome.scm:611 +#: gnu/packages/gnome.scm:615 msgid "" "Libdmapsharing is a library which allows programs to access,\n" "share and control the playback of media content using DMAP (DAAP, DPAP & DACP).\n" "It is written in C using GObject and libsoup." msgstr "" -#: gnu/packages/gnome.scm:644 +#: gnu/packages/gnome.scm:648 msgid "" "GTX is a small collection of convenience functions intended to\n" "enhance the GLib testing framework. With specific emphasis on easing the pain\n" "of writing test cases for asynchronous interactions." msgstr "" -#: gnu/packages/gnome.scm:721 +#: gnu/packages/gnome.scm:725 msgid "" "Dee is a library that uses DBus to provide objects allowing\n" "you to create Model-View-Controller type programs across DBus. It also consists\n" @@ -5605,7 +5718,7 @@ msgid "" "of known objects without needing a central registrar." msgstr "" -#: gnu/packages/gnome.scm:802 +#: gnu/packages/gnome.scm:806 msgid "" "Zeitgeist is a service which logs the users’s activities and\n" "events, anywhere from files opened to websites visited and conversations. It\n" @@ -5614,27 +5727,27 @@ msgid "" "patterns." msgstr "" -#: gnu/packages/gnome.scm:869 +#: gnu/packages/gnome.scm:871 msgid "" "GNOME Recipes helps you discover what to cook today,\n" "tomorrow, the rest of the week and for special occasions." msgstr "" -#: gnu/packages/gnome.scm:939 +#: gnu/packages/gnome.scm:940 msgid "" "GNOME Photos is a simple and elegant replacement for using a\n" "file manager to deal with photos. Enhance, crop and edit in a snap. Seamless\n" "cloud integration is offered through GNOME Online Accounts." msgstr "" -#: gnu/packages/gnome.scm:1007 +#: gnu/packages/gnome.scm:1008 msgid "" "GNOME Music is the new GNOME music playing application that\n" "aims to combine an elegant and immersive browsing experience with simple\n" "and straightforward controls." msgstr "" -#: gnu/packages/gnome.scm:1028 +#: gnu/packages/gnome.scm:1029 msgid "" "PortableXDR is an implementation of External Data\n" "Representation (XDR) Library. It is a standard data serialization format, for\n" @@ -5642,25 +5755,25 @@ msgid "" "between different kinds of computer systems." msgstr "" -#: gnu/packages/gnome.scm:1066 +#: gnu/packages/gnome.scm:1067 msgid "" "Tepl is a library that eases the development of\n" "GtkSourceView-based text editors and IDEs." msgstr "" -#: gnu/packages/gnome.scm:1107 +#: gnu/packages/gnome.scm:1108 msgid "" "krb5-auth-dialog is a simple dialog that monitors Kerberos\n" "tickets, and pops up a dialog when they are about to expire." msgstr "" -#: gnu/packages/gnome.scm:1132 +#: gnu/packages/gnome.scm:1133 msgid "" "Notification-Daemon is the server implementation of the\n" "freedesktop.org desktop notification specification." msgstr "" -#: gnu/packages/gnome.scm:1168 +#: gnu/packages/gnome.scm:1169 msgid "" "The mm-common module provides the build infrastructure\n" "and utilities shared among the GNOME C++ binding libraries. Release\n" @@ -5668,55 +5781,55 @@ msgid "" "Library reference documentation." msgstr "" -#: gnu/packages/gnome.scm:1214 +#: gnu/packages/gnome.scm:1215 msgid "" "PhoDav was initially developed as a file-sharing mechanism for Spice,\n" "but it is generic enough to be reused in other projects,\n" "in particular in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1267 +#: gnu/packages/gnome.scm:1268 msgid "" "GNOME Color Manager is a session framework that makes\n" "it easy to manage, install and generate color profiles\n" "in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1319 +#: gnu/packages/gnome.scm:1320 msgid "" "GNOME Online Miners provides a set of crawlers that\n" "go through your online content and index them locally in Tracker.\n" "It has miners for Facebook, Flickr, Google, ownCloud and SkyDrive." msgstr "" -#: gnu/packages/gnome.scm:1352 +#: gnu/packages/gnome.scm:1353 msgid "" "This package provides a library to handle resource discovery\n" "and announcement over @acronym{SSDP, Simple Service Discovery Protocol} and\n" "a debugging tool, @command{gssdp-device-sniffer}." msgstr "" -#: gnu/packages/gnome.scm:1391 +#: gnu/packages/gnome.scm:1392 msgid "" "This package provides GUPnP, an object-oriented framework\n" "for creating UPnP devices and control points, written in C using\n" "@code{GObject} and @code{libsoup}." msgstr "" -#: gnu/packages/gnome.scm:1423 +#: gnu/packages/gnome.scm:1424 msgid "" "This package provides a small utility library to\n" "support DLNA-related tasks such as media profile guessing, transcoding to a\n" "given profile, etc. DLNA is a subset of UPnP A/V." msgstr "" -#: gnu/packages/gnome.scm:1453 +#: gnu/packages/gnome.scm:1454 msgid "" "This package provides a small library for handling\n" "and implementation of UPnP A/V profiles." msgstr "" -#: gnu/packages/gnome.scm:1478 +#: gnu/packages/gnome.scm:1479 msgid "" "The libmediaart library is the foundation for media art caching,\n" "extraction, and lookup for applications on the desktop." @@ -5729,14 +5842,14 @@ msgid "" "tour of all gnome components and allows the user to set them up." msgstr "" -#: gnu/packages/gnome.scm:1584 +#: gnu/packages/gnome.scm:1583 msgid "" "GNOME User Share is a small package that binds together\n" "various free software projects to bring easy to use user-level file\n" "sharing to the masses." msgstr "" -#: gnu/packages/gnome.scm:1639 +#: gnu/packages/gnome.scm:1638 msgid "" "Sushi is a DBus-activated service that allows applications\n" "to preview files on the GNOME desktop." @@ -5788,7 +5901,7 @@ msgid "" "and system administrators." msgstr "" -#: gnu/packages/gnome.scm:1946 +#: gnu/packages/gnome.scm:1950 msgid "" "Dia can be used to draw different types of diagrams, and\n" "includes support for UML static structure diagrams (class diagrams), entity\n" @@ -5796,28 +5909,28 @@ msgid "" "formats like PNG, SVG, PDF and EPS." msgstr "" -#: gnu/packages/gnome.scm:1991 +#: gnu/packages/gnome.scm:1995 msgid "" "libgdata is a GLib-based library for accessing online service APIs using\n" "the GData protocol — most notably, Google's services. It provides APIs to\n" "access the common Google services, and has full asynchronous support." msgstr "" -#: gnu/packages/gnome.scm:2019 +#: gnu/packages/gnome.scm:2023 msgid "" "libgxps is a GObject-based library for handling and rendering XPS\n" "documents. This package also contains binaries that can convert XPS documents\n" "to other formats." msgstr "" -#: gnu/packages/gnome.scm:2060 +#: gnu/packages/gnome.scm:2063 msgid "" "Characters is a simple utility application to find\n" "and insert unusual characters. It allows you to quickly find the\n" "character you are looking for by searching for keywords." msgstr "" -#: gnu/packages/gnome.scm:2081 +#: gnu/packages/gnome.scm:2084 msgid "" "gnome-common contains various files needed to bootstrap\n" "GNOME modules built from Git. It contains a common \"autogen.sh\" script that\n" @@ -5825,13 +5938,13 @@ msgid "" "commonly used macros." msgstr "" -#: gnu/packages/gnome.scm:2142 +#: gnu/packages/gnome.scm:2145 msgid "" "GNOME Contacts organizes your contact information from online and\n" "offline sources, providing a centralized place for managing your contacts." msgstr "" -#: gnu/packages/gnome.scm:2222 +#: gnu/packages/gnome.scm:2225 msgid "" "The libgnome-desktop library provides API shared by several applications\n" "on the desktop, but that cannot live in the platform for various reasons.\n" @@ -5841,40 +5954,40 @@ msgid "" "The gnome-about program helps find which version of GNOME is installed." msgstr "" -#: gnu/packages/gnome.scm:2257 +#: gnu/packages/gnome.scm:2260 msgid "" "Gnome-doc-utils is a collection of documentation utilities for the\n" "Gnome project. It includes xml2po tool which makes it easier to translate\n" "and keep up to date translations of documentation." msgstr "" -#: gnu/packages/gnome.scm:2309 +#: gnu/packages/gnome.scm:2311 msgid "Disk management utility for GNOME." msgstr "" -#: gnu/packages/gnome.scm:2352 +#: gnu/packages/gnome.scm:2353 msgid "" "Application to show you the fonts installed on your computer\n" "for your use as thumbnails. Selecting any thumbnails shows the full view of how\n" "the font would look under various sizes." msgstr "" -#: gnu/packages/gnome.scm:2420 +#: gnu/packages/gnome.scm:2421 msgid "" "The GCR package contains libraries used for displaying certificates and\n" "accessing key stores. It also provides the viewer for crypto files on the\n" "GNOME Desktop." msgstr "" -#: gnu/packages/gnome.scm:2459 +#: gnu/packages/gnome.scm:2460 msgid "This library provides docking features for gtk+." msgstr "" -#: gnu/packages/gnome.scm:2505 +#: gnu/packages/gnome.scm:2506 msgid "Client library to access passwords from the GNOME keyring." msgstr "" -#: gnu/packages/gnome.scm:2575 +#: gnu/packages/gnome.scm:2576 msgid "" "gnome-keyring is a program that keeps passwords and other secrets for\n" "users. It is run as a daemon in the session, similar to ssh-agent, and other\n" @@ -5893,13 +6006,13 @@ msgid "" "on the GNOME Desktop with a single simple application." msgstr "" -#: gnu/packages/gnome.scm:2693 +#: gnu/packages/gnome.scm:2692 msgid "" "Gsettings-desktop-schemas contains a collection of GSettings\n" "schemas for settings shared by various components of the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:2729 +#: gnu/packages/gnome.scm:2728 msgid "" "Liblarch is a Python library built to easily handle data structures such\n" "as lists, trees and acyclic graphs. There's also a GTK binding that will\n" @@ -5910,7 +6023,7 @@ msgid "" "and how they are displayed (View)." msgstr "" -#: gnu/packages/gnome.scm:2790 +#: gnu/packages/gnome.scm:2789 msgid "" "Getting Things GNOME! (GTG) is a personal tasks and TODO list items\n" "organizer for the GNOME desktop environment inspired by the Getting Things\n" @@ -5920,24 +6033,24 @@ msgid "" "know, from small tasks to large projects." msgstr "" -#: gnu/packages/gnome.scm:2829 +#: gnu/packages/gnome.scm:2828 msgid "" "To help with the transition to the Freedesktop Icon Naming\n" "Specification, the icon naming utility maps the icon names used by the\n" "GNOME and KDE desktops to the icon names proposed in the specification." msgstr "" -#: gnu/packages/gnome.scm:2858 +#: gnu/packages/gnome.scm:2857 msgid "Icons for the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:2897 +#: gnu/packages/gnome.scm:2896 msgid "" "This is an icon theme that follows the Tango visual\n" "guidelines." msgstr "" -#: gnu/packages/gnome.scm:2927 +#: gnu/packages/gnome.scm:2926 msgid "" "The shared-mime-info package contains the core database of common types\n" "and the update-mime-database command used to extend it. It requires glib2 to\n" @@ -5946,18 +6059,18 @@ msgid "" "database is translated at Transifex." msgstr "" -#: gnu/packages/gnome.scm:3012 +#: gnu/packages/gnome.scm:3011 msgid "" "system-config-printer is a CUPS administration tool. It's written in\n" "Python using GTK+, and uses the @acronym{IPP, Internet Printing Protocol} when\n" "configuring CUPS." msgstr "" -#: gnu/packages/gnome.scm:3036 +#: gnu/packages/gnome.scm:3035 msgid "Freedesktop icon theme." msgstr "" -#: gnu/packages/gnome.scm:3085 +#: gnu/packages/gnome.scm:3084 msgid "" "Libnotify is a library that sends desktop notifications to a\n" "notification daemon, as defined in the Desktop Notifications spec. These\n" @@ -5965,7 +6078,7 @@ msgid "" "some form of information without getting in the user's way." msgstr "" -#: gnu/packages/gnome.scm:3132 +#: gnu/packages/gnome.scm:3131 msgid "" "Libpeas is a gobject-based plugin engine, targeted at giving every\n" "application the chance to assume its own extensibility. It also has a set of\n" @@ -5974,21 +6087,21 @@ msgid "" "API." msgstr "" -#: gnu/packages/gnome.scm:3168 +#: gnu/packages/gnome.scm:3167 msgid "" "GtkGLExt is an OpenGL extension to GTK+. It provides\n" "additional GDK objects which support OpenGL rendering in GTK+ and GtkWidget\n" "API add-ons to make GTK+ widgets OpenGL-capable." msgstr "" -#: gnu/packages/gnome.scm:3248 +#: gnu/packages/gnome.scm:3247 msgid "" "Glade is a rapid application development (RAD) tool to\n" "enable quick & easy development of user interfaces for the GTK+ toolkit and\n" "the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:3280 +#: gnu/packages/gnome.scm:3279 msgid "" "Libcroco is a standalone CSS2 parsing and manipulation library.\n" "The parser provides a low level event driven SAC-like API and a CSS object\n" @@ -5996,13 +6109,13 @@ msgid "" "XML/CSS rendering engine." msgstr "" -#: gnu/packages/gnome.scm:3347 +#: gnu/packages/gnome.scm:3346 msgid "" "Libgsf aims to provide an efficient extensible I/O abstraction\n" "for dealing with different structured file formats." msgstr "" -#: gnu/packages/gnome.scm:3526 +#: gnu/packages/gnome.scm:3525 msgid "" "Librsvg is a library to render SVG images to Cairo surfaces.\n" "GNOME uses this to render SVG icons. Outside of GNOME, other desktop\n" @@ -6010,7 +6123,7 @@ msgid "" "diagrams." msgstr "" -#: gnu/packages/gnome.scm:3649 +#: gnu/packages/gnome.scm:3648 msgid "" "Libidl is a library for creating trees of CORBA Interface\n" "Definition Language (idl) files, which is a specification for defining\n" @@ -6019,82 +6132,82 @@ msgid "" "functionality was designed to be as reusable and portable as possible." msgstr "" -#: gnu/packages/gnome.scm:3704 +#: gnu/packages/gnome.scm:3703 msgid "" "ORBit2 is a CORBA 2.4-compliant Object Request Broker (orb)\n" "featuring mature C, C++ and Python bindings." msgstr "" -#: gnu/packages/gnome.scm:3758 +#: gnu/packages/gnome.scm:3757 msgid "" "Bonobo is a framework for creating reusable components for\n" "use in GNOME applications, built on top of CORBA." msgstr "" -#: gnu/packages/gnome.scm:3789 +#: gnu/packages/gnome.scm:3788 msgid "" "Gconf is a system for storing application preferences. It\n" "is intended for user preferences; not arbitrary data storage." msgstr "" -#: gnu/packages/gnome.scm:3823 +#: gnu/packages/gnome.scm:3822 msgid "" "GNOME Mime Data is a module which contains the base MIME\n" "and Application database for GNOME. The data stored by this module is\n" "designed to be accessed through the MIME functions in GnomeVFS." msgstr "" -#: gnu/packages/gnome.scm:3863 +#: gnu/packages/gnome.scm:3862 msgid "" "GnomeVFS is the core library used to access files and folders in GNOME\n" "applications. It provides a file system abstraction which allows applications\n" "to access local and remote files with a single consistent API." msgstr "" -#: gnu/packages/gnome.scm:3904 +#: gnu/packages/gnome.scm:3903 msgid "" "The libgnome library provides a number of useful routines\n" "for building modern applications, including session management, activation of\n" "files and URIs, and displaying help." msgstr "" -#: gnu/packages/gnome.scm:3928 +#: gnu/packages/gnome.scm:3927 msgid "" "Libart is a 2D drawing library intended as a\n" "high-quality vector-based 2D library with antialiasing and alpha composition." msgstr "" -#: gnu/packages/gnome.scm:3955 +#: gnu/packages/gnome.scm:3954 msgid "" "The GnomeCanvas widget provides a flexible widget for\n" "creating interactive structured graphics." msgstr "" -#: gnu/packages/gnome.scm:3977 +#: gnu/packages/gnome.scm:3976 msgid "C++ bindings to the GNOME Canvas library." msgstr "" -#: gnu/packages/gnome.scm:4003 +#: gnu/packages/gnome.scm:4002 msgid "" "The libgnomeui library provides additional widgets for\n" "applications. Many of the widgets from libgnomeui have already been\n" "ported to GTK+." msgstr "" -#: gnu/packages/gnome.scm:4029 +#: gnu/packages/gnome.scm:4028 msgid "" "Libglade is a library that provides interfaces for loading\n" "graphical interfaces described in glade files and for accessing the\n" "widgets built in the loading process." msgstr "" -#: gnu/packages/gnome.scm:4071 +#: gnu/packages/gnome.scm:4070 msgid "" "The Bonobo UI library provides a number of user interface\n" "controls using the Bonobo component framework." msgstr "" -#: gnu/packages/gnome.scm:4098 +#: gnu/packages/gnome.scm:4097 msgid "" "Libwnck is the Window Navigator Construction Kit, a library for use in\n" "writing pagers, tasklists, and more generally applications that are dealing\n" @@ -6102,11 +6215,11 @@ msgid "" "Hints specification (EWMH)." msgstr "" -#: gnu/packages/gnome.scm:4148 +#: gnu/packages/gnome.scm:4147 msgid "A GLib/GTK+ set of document-centric objects and utilities." msgstr "" -#: gnu/packages/gnome.scm:4234 +#: gnu/packages/gnome.scm:4233 msgid "" "GNUmeric is a GNU spreadsheet application, running under GNOME. It is\n" "interoperable with other spreadsheet applications. It has a vast array of\n" @@ -6115,11 +6228,11 @@ msgid "" "engineering." msgstr "" -#: gnu/packages/gnome.scm:4290 +#: gnu/packages/gnome.scm:4289 msgid "Drawing is a basic image editor aiming at the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:4326 +#: gnu/packages/gnome.scm:4325 msgid "The default GNOME 3 themes (Adwaita and some accessibility themes)." msgstr "" @@ -6138,7 +6251,7 @@ msgid "" "targeting the GNOME stack simple." msgstr "" -#: gnu/packages/gnome.scm:4481 +#: gnu/packages/gnome.scm:4482 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, and a minimal sample application (vte) using that. Vte is mainly used in\n" @@ -6146,34 +6259,34 @@ msgid "" "editors, IDEs, etc." msgstr "" -#: gnu/packages/gnome.scm:4505 +#: gnu/packages/gnome.scm:4506 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, this fork provides additional functions exposed for keyboard text\n" "selection and URL hints." msgstr "" -#: gnu/packages/gnome.scm:4585 +#: gnu/packages/gnome.scm:4586 msgid "" "Vinagre is a remote display client supporting the VNC, SPICE\n" "and RDP protocols." msgstr "" -#: gnu/packages/gnome.scm:4631 +#: gnu/packages/gnome.scm:4633 msgid "" "Dconf is a low-level configuration system. Its main purpose\n" "is to provide a backend to GSettings on platforms that don't already have\n" "configuration storage systems." msgstr "" -#: gnu/packages/gnome.scm:4661 +#: gnu/packages/gnome.scm:4663 msgid "" "JSON-GLib is a library providing serialization and\n" "described by RFC 4627. It implements a full JSON parser and generator using\n" "GLib and GObject, and integrates JSON with GLib data types." msgstr "" -#: gnu/packages/gnome.scm:4760 +#: gnu/packages/gnome.scm:4762 msgid "" "LibXklavier is a library providing high-level API for X Keyboard\n" "Extension known as XKB. This library is intended to support XFree86 and other\n" @@ -6181,13 +6294,13 @@ msgid "" "indicators etc)." msgstr "" -#: gnu/packages/gnome.scm:4788 +#: gnu/packages/gnome.scm:4790 msgid "" "This package provides Python bindings to librsvg, the SVG rendering\n" "library." msgstr "" -#: gnu/packages/gnome.scm:4829 +#: gnu/packages/gnome.scm:4831 msgid "" "Glib-networking contains the implementations of certain GLib networking\n" "features that cannot be implemented directly in GLib itself because of their\n" @@ -6197,26 +6310,26 @@ msgid "" "from the GSettings schemas in gsettings-desktop-schemas." msgstr "" -#: gnu/packages/gnome.scm:4866 +#: gnu/packages/gnome.scm:4868 msgid "" "This library was designed to make it easier to access web services that\n" "claim to be \"RESTful\". It includes convenience wrappers for libsoup and\n" "libxml to ease remote use of the RESTful API." msgstr "" -#: gnu/packages/gnome.scm:4931 +#: gnu/packages/gnome.scm:4933 msgid "" "LibSoup is an HTTP client/server library for GNOME. It uses GObjects\n" "and the GLib main loop, to integrate well with GNOME applications." msgstr "" -#: gnu/packages/gnome.scm:5035 +#: gnu/packages/gnome.scm:5037 msgid "" "Libsecret is a GObject based library for storing and retrieving passwords\n" "and other secrets. It communicates with the \"Secret Service\" using DBus." msgstr "" -#: gnu/packages/gnome.scm:5074 +#: gnu/packages/gnome.scm:5076 msgid "" "Five or More is a game where you try to align\n" " five or more objects of the same color and shape causing them to disappear.\n" @@ -6224,19 +6337,19 @@ msgid "" " Try to last as long as possible." msgstr "" -#: gnu/packages/gnome.scm:5116 +#: gnu/packages/gnome.scm:5118 msgid "" "Mines (previously gnomine) is a puzzle game where you locate mines\n" "floating in an ocean using only your brain and a little bit of luck." msgstr "" -#: gnu/packages/gnome.scm:5157 +#: gnu/packages/gnome.scm:5159 msgid "" "MultiWriter can be used to write an ISO file to multiple USB devices at\n" "once." msgstr "" -#: gnu/packages/gnome.scm:5197 +#: gnu/packages/gnome.scm:5198 msgid "" "Sudoku is a Japanese logic game that exploded in popularity in 2005.\n" "GNOME Sudoku is meant to have an interface as simple and unobstrusive as\n" @@ -6244,7 +6357,7 @@ msgid "" "more fun." msgstr "" -#: gnu/packages/gnome.scm:5247 +#: gnu/packages/gnome.scm:5248 msgid "" "GNOME Terminal is a terminal emulator application for accessing a\n" "UNIX shell environment which can be used to run programs available on\n" @@ -6254,14 +6367,14 @@ msgid "" "keyboard shortcuts." msgstr "" -#: gnu/packages/gnome.scm:5319 +#: gnu/packages/gnome.scm:5320 msgid "" "Colord is a system service that makes it easy to manage,\n" "install and generate color profiles to accurately color manage input and\n" "output devices." msgstr "" -#: gnu/packages/gnome.scm:5390 +#: gnu/packages/gnome.scm:5391 msgid "" "Geoclue is a D-Bus service that provides location\n" "information. The primary goal of the Geoclue project is to make creating\n" @@ -6270,7 +6383,7 @@ msgid "" "permission from user." msgstr "" -#: gnu/packages/gnome.scm:5434 +#: gnu/packages/gnome.scm:5435 msgid "" "geocode-glib is a convenience library for geocoding (finding longitude,\n" "and latitude from an address) and reverse geocoding (finding an address from\n" @@ -6278,7 +6391,7 @@ msgid "" "faster results and to avoid unnecessary server load." msgstr "" -#: gnu/packages/gnome.scm:5510 +#: gnu/packages/gnome.scm:5511 msgid "" "UPower is an abstraction for enumerating power devices,\n" "listening to device events and querying history and statistics. Any\n" @@ -6286,13 +6399,13 @@ msgid "" "service via the system message bus." msgstr "" -#: gnu/packages/gnome.scm:5555 +#: gnu/packages/gnome.scm:5557 msgid "" "libgweather is a library to access weather information from online\n" "services for numerous locations." msgstr "" -#: gnu/packages/gnome.scm:5639 +#: gnu/packages/gnome.scm:5640 msgid "" "This package contains the daemon responsible for setting the various\n" "parameters of a GNOME session and the applications that run under it. It\n" @@ -6300,19 +6413,19 @@ msgid "" "settings, themes, mouse settings, and startup of other daemons." msgstr "" -#: gnu/packages/gnome.scm:5670 +#: gnu/packages/gnome.scm:5671 msgid "" "Totem-pl-parser is a GObjects-based library to parse and save\n" "playlists in a variety of formats." msgstr "" -#: gnu/packages/gnome.scm:5703 +#: gnu/packages/gnome.scm:5704 msgid "" "Aisleriot (also known as Solitaire or sol) is a collection of card games\n" "which are easy to play with the aid of a mouse." msgstr "" -#: gnu/packages/gnome.scm:5729 +#: gnu/packages/gnome.scm:5730 msgid "" "Amtk is the acronym for @acronym{Amtk, Actions Menus and Toolbars Kit}.\n" "It is a basic GtkUIManager replacement based on GAction. It is suitable for\n" @@ -6391,13 +6504,13 @@ msgid "" "discovery protocols." msgstr "" -#: gnu/packages/gnome.scm:6324 +#: gnu/packages/gnome.scm:6323 msgid "" "Totem is a simple yet featureful media player for GNOME\n" "which can read a large number of file formats." msgstr "" -#: gnu/packages/gnome.scm:6415 +#: gnu/packages/gnome.scm:6414 msgid "" "Rhythmbox is a music playing application for GNOME. It\n" "supports playlists, song ratings, and any codecs installed through gstreamer." @@ -6428,7 +6541,7 @@ msgid "" "part of udev-extras, then udev, then systemd. It's now a project on its own." msgstr "" -#: gnu/packages/gnome.scm:6611 +#: gnu/packages/gnome.scm:6610 msgid "" "GVFS is a userspace virtual file system designed to work with the I/O\n" "abstraction of GIO. It contains a GIO module that seamlessly adds GVFS\n" @@ -6439,7 +6552,7 @@ msgid "" "DAV, and others." msgstr "" -#: gnu/packages/gnome.scm:6652 +#: gnu/packages/gnome.scm:6651 msgid "" "GUsb is a GObject wrapper for libusb1 that makes it easy to do\n" "asynchronous control, bulk and interrupt transfers with proper cancellation\n" @@ -6447,7 +6560,7 @@ msgid "" "USB transfers with your high-level application or system daemon." msgstr "" -#: gnu/packages/gnome.scm:6706 +#: gnu/packages/gnome.scm:6705 msgid "" "Document Scanner is an easy-to-use application that lets you connect your\n" "scanner and quickly capture images and documents in an appropriate format. It\n" @@ -6455,25 +6568,25 @@ msgid "" "almost all of them." msgstr "" -#: gnu/packages/gnome.scm:6778 +#: gnu/packages/gnome.scm:6777 msgid "" "Eolie is a new web browser for GNOME. It features Firefox sync support,\n" "a secret password store, an adblocker, and a modern UI." msgstr "" -#: gnu/packages/gnome.scm:6855 +#: gnu/packages/gnome.scm:6854 msgid "" "Epiphany is a GNOME web browser targeted at non-technical users. Its\n" "principles are simplicity and standards compliance." msgstr "" -#: gnu/packages/gnome.scm:6914 +#: gnu/packages/gnome.scm:6913 msgid "" "D-Feet is a D-Bus debugger, which can be used to inspect D-Bus interfaces\n" "of running programs and invoke methods on those interfaces." msgstr "" -#: gnu/packages/gnome.scm:6944 +#: gnu/packages/gnome.scm:6943 msgid "" "Yelp-XSL is a collection of programs and data files to help\n" "you build, maintain, and distribute documentation. It provides XSLT stylesheets\n" @@ -6483,14 +6596,14 @@ msgid "" "jQuery.Syntax JavaScript libraries." msgstr "" -#: gnu/packages/gnome.scm:6983 +#: gnu/packages/gnome.scm:6982 msgid "" "Yelp is the help viewer in Gnome. It natively views Mallard, DocBook,\n" "man, info, and HTML documents. It can locate documents according to the\n" "freedesktop.org help system specification." msgstr "" -#: gnu/packages/gnome.scm:7013 +#: gnu/packages/gnome.scm:7012 msgid "" "Yelp-tools is a collection of scripts and build utilities to help create,\n" "manage, and publish documentation for Yelp and the web. Most of the heavy\n" @@ -6498,13 +6611,13 @@ msgid "" "wraps things up in a developer-friendly way." msgstr "" -#: gnu/packages/gnome.scm:7051 +#: gnu/packages/gnome.scm:7050 msgid "" "Libgee is a utility library providing GObject-based interfaces and\n" "classes for commonly used data structures." msgstr "" -#: gnu/packages/gnome.scm:7079 +#: gnu/packages/gnome.scm:7078 msgid "" "Gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. It\n" "allows for GNOME applications to easily inspect and update EXIF, IPTC, and XMP\n" @@ -6519,7 +6632,7 @@ msgid "" "share them with others via social networking and more." msgstr "" -#: gnu/packages/gnome.scm:7168 +#: gnu/packages/gnome.scm:7169 msgid "" "File Roller is an archive manager for the GNOME desktop\n" "environment that allows users to view, unpack, and create compressed archives\n" @@ -6532,25 +6645,25 @@ msgid "" "configuration program to choose applications starting on login." msgstr "" -#: gnu/packages/gnome.scm:7284 +#: gnu/packages/gnome.scm:7287 msgid "" "Gjs is a javascript binding for GNOME. It's mainly based on spidermonkey\n" "javascript engine and the GObject introspection framework." msgstr "" -#: gnu/packages/gnome.scm:7381 +#: gnu/packages/gnome.scm:7383 msgid "" "While aiming at simplicity and ease of use, gedit is a\n" "powerful general purpose text editor." msgstr "" -#: gnu/packages/gnome.scm:7405 +#: gnu/packages/gnome.scm:7407 msgid "" "Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you\n" "to display dialog boxes from the commandline and shell scripts." msgstr "" -#: gnu/packages/gnome.scm:7595 +#: gnu/packages/gnome.scm:7598 msgid "" "Mutter is a window and compositing manager that displays and manages your\n" "desktop via OpenGL. Mutter combines a sophisticated display engine using the\n" @@ -6558,7 +6671,7 @@ msgid "" "window manager." msgstr "" -#: gnu/packages/gnome.scm:7653 +#: gnu/packages/gnome.scm:7656 msgid "" "GNOME Online Accounts provides interfaces so that applications and\n" "libraries in GNOME can access the user's online accounts. It has providers\n" @@ -6566,20 +6679,20 @@ msgid "" "Microsoft Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos." msgstr "" -#: gnu/packages/gnome.scm:7740 +#: gnu/packages/gnome.scm:7743 msgid "" "This package provides a unified backend for programs that work with\n" "contacts, tasks, and calendar information. It was originally developed for\n" "Evolution (hence the name), but is now used by other packages as well." msgstr "" -#: gnu/packages/gnome.scm:7803 +#: gnu/packages/gnome.scm:7806 msgid "" "Caribou is an input assistive technology intended for switch and pointer\n" "users." msgstr "" -#: gnu/packages/gnome.scm:7953 +#: gnu/packages/gnome.scm:7958 msgid "" "NetworkManager is a system network service that manages your network\n" "devices and connections, attempting to keep active network connectivity when\n" @@ -6588,60 +6701,60 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:8009 +#: gnu/packages/gnome.scm:8014 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to virtual private networks (VPNs) via OpenVPN." msgstr "" -#: gnu/packages/gnome.scm:8059 +#: gnu/packages/gnome.scm:8064 msgid "" "Support for configuring virtual private networks based on VPNC.\n" "Compatible with Cisco VPN concentrators configured to use IPsec." msgstr "" -#: gnu/packages/gnome.scm:8106 +#: gnu/packages/gnome.scm:8111 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to @acronym{VPNs, virtual private networks} via OpenConnect, an open client for\n" "Cisco's AnyConnect SSL VPN." msgstr "" -#: gnu/packages/gnome.scm:8135 +#: gnu/packages/gnome.scm:8140 msgid "Database of broadband connection configuration." msgstr "" -#: gnu/packages/gnome.scm:8179 +#: gnu/packages/gnome.scm:8183 msgid "" "This package contains a systray applet for NetworkManager. It displays\n" "the available networks and allows users to easily switch between them." msgstr "" -#: gnu/packages/gnome.scm:8234 +#: gnu/packages/gnome.scm:8238 msgid "" "This package provides a C++ interface to the libxml2 XML parser\n" "library." msgstr "" -#: gnu/packages/gnome.scm:8466 +#: gnu/packages/gnome.scm:8470 msgid "" "GNOME Display Manager is a system service that is responsible for\n" "providing graphical log-ins and managing local and remote displays." msgstr "" -#: gnu/packages/gnome.scm:8490 +#: gnu/packages/gnome.scm:8494 msgid "" "LibGTop is a library to get system specific data such as CPU and memory\n" "usage and information about running processes." msgstr "" -#: gnu/packages/gnome.scm:8525 +#: gnu/packages/gnome.scm:8528 msgid "" "This package contains tools for managing and manipulating Bluetooth\n" "devices using the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:8636 +#: gnu/packages/gnome.scm:8646 msgid "" "This package contains configuration applets for the GNOME desktop,\n" "allowing to set accessibility configuration, desktop fonts, keyboard and mouse\n" @@ -6649,13 +6762,13 @@ msgid "" "properties, screen resolution, and other GNOME parameters." msgstr "" -#: gnu/packages/gnome.scm:8802 +#: gnu/packages/gnome.scm:8811 msgid "" "GNOME Shell provides core user interface functions for the GNOME desktop,\n" "like switching to windows and launching applications." msgstr "" -#: gnu/packages/gnome.scm:8845 +#: gnu/packages/gnome.scm:8858 msgid "" "GTK-VNC is a project providing client side APIs for the RFB\n" "protocol / VNC remote desktop technology. It is built using coroutines allowing\n" @@ -6663,13 +6776,13 @@ msgid "" "core C library, and bindings for Python (PyGTK)." msgstr "" -#: gnu/packages/gnome.scm:8875 +#: gnu/packages/gnome.scm:8888 msgid "" "GNOME Autoar is a library which makes creating and extracting archives\n" "easy, safe, and automatic." msgstr "" -#: gnu/packages/gnome.scm:8945 +#: gnu/packages/gnome.scm:8959 msgid "" "Tracker is a search engine and triplestore for desktop, embedded and mobile.\n" "\n" @@ -6692,21 +6805,21 @@ msgid "" "endpoint and it understands SPARQL." msgstr "" -#: gnu/packages/gnome.scm:9074 +#: gnu/packages/gnome.scm:9088 msgid "" "Tracker is an advanced framework for first class objects with associated\n" "metadata and tags. It provides a one stop solution for all metadata, tags,\n" "shared object databases, search tools and indexing." msgstr "" -#: gnu/packages/gnome.scm:9167 +#: gnu/packages/gnome.scm:9185 msgid "" "Nautilus (Files) is a file manager designed to fit the GNOME desktop\n" "design and behaviour, giving the user a simple way to navigate and manage its\n" "files." msgstr "" -#: gnu/packages/gnome.scm:9201 +#: gnu/packages/gnome.scm:9220 msgid "" "Baobab (Disk Usage Analyzer) is a graphical application to analyse disk\n" "usage in the GNOME desktop environment. It can easily scan device volumes or\n" @@ -6714,7 +6827,7 @@ msgid "" "is complete it provides a graphical representation of each selected folder." msgstr "" -#: gnu/packages/gnome.scm:9227 +#: gnu/packages/gnome.scm:9245 msgid "" "GNOME backgrounds package contains a collection of graphics files which\n" "can be used as backgrounds in the GNOME Desktop environment. Additionally,\n" @@ -6722,21 +6835,21 @@ msgid "" "can add your own files to the collection." msgstr "" -#: gnu/packages/gnome.scm:9272 +#: gnu/packages/gnome.scm:9290 msgid "" "GNOME Screenshot is a utility used for taking screenshots of the entire\n" "screen, a window or a user defined area of the screen, with optional\n" "beautifying border effects." msgstr "" -#: gnu/packages/gnome.scm:9304 +#: gnu/packages/gnome.scm:9320 msgid "" "Dconf-editor is a graphical tool for browsing and editing the dconf\n" "configuration system for GNOME. It allows users to configure desktop\n" "software that do not provide their own configuration interface." msgstr "" -#: gnu/packages/gnome.scm:9334 +#: gnu/packages/gnome.scm:9350 msgid "" "Given many installed packages which might handle a given MIME type, a\n" "user running the GNOME desktop probably has some preferences: for example,\n" @@ -6745,32 +6858,32 @@ msgid "" "associations for GNOME." msgstr "" -#: gnu/packages/gnome.scm:9366 +#: gnu/packages/gnome.scm:9382 msgid "GoVirt is a GObject wrapper for the oVirt REST API." msgstr "" -#: gnu/packages/gnome.scm:9424 +#: gnu/packages/gnome.scm:9439 msgid "" "GNOME Weather is a small application that allows you to\n" "monitor the current weather conditions for your city, or anywhere in the\n" "world." msgstr "" -#: gnu/packages/gnome.scm:9528 +#: gnu/packages/gnome.scm:9543 msgid "" "GNOME is the graphical desktop for GNU. It includes a wide variety of\n" "applications for browsing the web, editing text and images, creating\n" "documents and diagrams, playing media, scanning, and much more." msgstr "" -#: gnu/packages/gnome.scm:9574 +#: gnu/packages/gnome.scm:9589 msgid "" "Byzanz is a simple desktop recording program with a\n" "command-line interface. It can record part or all of an X display for a\n" "specified duration and save it as a GIF encoded animated image file." msgstr "" -#: gnu/packages/gnome.scm:9634 +#: gnu/packages/gnome.scm:9651 msgid "" "Authenticator is a two-factor authentication (2FA) application built for\n" "the GNOME desktop environment.\n" @@ -6787,44 +6900,44 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/gnome.scm:9669 +#: gnu/packages/gnome.scm:9686 msgid "" "GSound is a small library for playing system sounds. It's designed to be\n" "used via GObject Introspection, and is a thin wrapper around the libcanberra C\n" "library." msgstr "" -#: gnu/packages/gnome.scm:9694 +#: gnu/packages/gnome.scm:9711 msgid "" "Libzapojit is a GLib-based library for accessing online service APIs of\n" "Microsoft SkyDrive and Hotmail, using their REST protocols." msgstr "" -#: gnu/packages/gnome.scm:9739 +#: gnu/packages/gnome.scm:9756 msgid "" "GNOME Clocks is a simple clocks application designed to fit the GNOME\n" "desktop. It supports world clock, stop watch, alarms, and count down timer." msgstr "" -#: gnu/packages/gnome.scm:9787 +#: gnu/packages/gnome.scm:9803 msgid "" "GNOME Calendar is a simple calendar application designed to fit the GNOME\n" "desktop. It supports multiple calendars, month, week and year view." msgstr "" -#: gnu/packages/gnome.scm:9838 +#: gnu/packages/gnome.scm:9860 msgid "" -"GNOME To Do is a simplistic personal task manager designed to perfectly\n" -"fit the GNOME desktop." +"GNOME To Do is a simplistic personal task manager designed\n" +"to perfectly fit the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:9877 +#: gnu/packages/gnome.scm:9899 msgid "" "GNOME Dictionary can look for the definition or translation of a word in\n" "existing databases over the internet." msgstr "" -#: gnu/packages/gnome.scm:9943 +#: gnu/packages/gnome.scm:9964 msgid "" "GNOME Tweaks allows adjusting advanced configuration settings in\n" "GNOME 3. This includes things like the fonts used in user interface elements,\n" @@ -6832,13 +6945,13 @@ msgid "" "GNOME Shell appearance and extension, etc." msgstr "" -#: gnu/packages/gnome.scm:9971 +#: gnu/packages/gnome.scm:9992 msgid "" "GNOME Shell extensions modify and extend GNOME Shell\n" "functionality and behavior." msgstr "" -#: gnu/packages/gnome.scm:10015 +#: gnu/packages/gnome.scm:10036 msgid "" "Libfolks is a library that aggregates information about people\n" "from multiple sources (e.g., Telepathy connection managers for IM contacts,\n" @@ -6847,19 +6960,19 @@ msgid "" "compiled." msgstr "" -#: gnu/packages/gnome.scm:10056 +#: gnu/packages/gnome.scm:10077 msgid "" "This library allows you to use the Facebook API from\n" "GLib/GObject code." msgstr "" -#: gnu/packages/gnome.scm:10083 +#: gnu/packages/gnome.scm:10104 msgid "" "Libgnomekbd is a keyboard configuration library for the GNOME desktop\n" "environment, which can notably display keyboard layouts." msgstr "" -#: gnu/packages/gnome.scm:10119 +#: gnu/packages/gnome.scm:10140 msgid "" "Libunique is a library for writing single instance applications. If you\n" "launch a single instance application twice, the second instance will either just\n" @@ -6869,20 +6982,20 @@ msgid "" "handling the startup notification side." msgstr "" -#: gnu/packages/gnome.scm:10168 +#: gnu/packages/gnome.scm:10190 msgid "" "Calculator is an application that solves mathematical equations and\n" "is suitable as a default application in a Desktop environment." msgstr "" -#: gnu/packages/gnome.scm:10194 +#: gnu/packages/gnome.scm:10216 msgid "" "Xpad is a sticky note that strives to be simple, fault tolerant,\n" "and customizable. Xpad consists of independent pad windows, each is\n" "basically a text box in which notes can be written." msgstr "" -#: gnu/packages/gnome.scm:10267 +#: gnu/packages/gnome.scm:10289 msgid "" "This program allows you to browse through all the available Unicode\n" "characters and categories for the installed fonts, and to examine their\n" @@ -6890,20 +7003,20 @@ msgid "" "only know by its Unicode name or code point." msgstr "" -#: gnu/packages/gnome.scm:10299 +#: gnu/packages/gnome.scm:10321 msgid "" "Color Picker is a simple color chooser written in GTK3. It\n" "supports both X and Wayland display servers." msgstr "" -#: gnu/packages/gnome.scm:10322 +#: gnu/packages/gnome.scm:10344 msgid "" "Bluefish is an editor aimed at programmers and web developers,\n" "with many options to write web sites, scripts and other code.\n" "Bluefish supports many programming and markup languages." msgstr "" -#: gnu/packages/gnome.scm:10363 +#: gnu/packages/gnome.scm:10385 msgid "" "GNOME System Monitor is a GNOME process viewer and system monitor with\n" "an attractive, easy-to-use interface. It has features, such as a tree view\n" @@ -6912,27 +7025,27 @@ msgid "" "kill/reinice processes." msgstr "" -#: gnu/packages/gnome.scm:10405 +#: gnu/packages/gnome.scm:10427 msgid "" "This package includes a python client library for the AT-SPI D-Bus\n" "accessibility infrastructure." msgstr "" -#: gnu/packages/gnome.scm:10475 +#: gnu/packages/gnome.scm:10495 msgid "" "Orca is a screen reader that provides access to the graphical desktop\n" "via speech and refreshable braille. Orca works with applications and toolkits\n" "that support the Assistive Technology Service Provider Interface (AT-SPI)." msgstr "" -#: gnu/packages/gnome.scm:10529 +#: gnu/packages/gnome.scm:10549 msgid "" "gspell provides a flexible API to add spell-checking to a GTK+\n" "application. It provides a GObject API, spell-checking to text entries and\n" "text views, and buttons to choose the language." msgstr "" -#: gnu/packages/gnome.scm:10571 +#: gnu/packages/gnome.scm:10591 msgid "" "GNOME Planner is a project management tool based on the Work Breakdown\n" "Structure (WBS). Its goal is to enable you to easily plan projects. Based on\n" @@ -6944,7 +7057,7 @@ msgid "" "views can be printed as PDF or PostScript files, or exported to HTML." msgstr "" -#: gnu/packages/gnome.scm:10644 +#: gnu/packages/gnome.scm:10664 msgid "" "Lollypop is a music player designed to play well with GNOME desktop.\n" "Lollypop plays audio formats such as mp3, mp4, ogg and flac and gets information\n" @@ -6952,26 +7065,26 @@ msgid "" "automatically and it can stream songs from online music services and charts." msgstr "" -#: gnu/packages/gnome.scm:10668 +#: gnu/packages/gnome.scm:10688 msgid "" "A collection of GStreamer video filters and effects to be used in\n" "photo-booth-like software, such as Cheese." msgstr "" -#: gnu/packages/gnome.scm:10747 +#: gnu/packages/gnome.scm:10766 msgid "" "Cheese uses your webcam to take photos and videos. Cheese can also\n" "apply fancy special effects and lets you share the fun with others." msgstr "" -#: gnu/packages/gnome.scm:10801 +#: gnu/packages/gnome.scm:10820 msgid "" "Password Safe is a password manager which makes use of the KeePass v4\n" "format. It integrates perfectly with the GNOME desktop and provides an easy\n" "and uncluttered interface for the management of password databases." msgstr "" -#: gnu/packages/gnome.scm:10836 +#: gnu/packages/gnome.scm:10855 msgid "" "Sound Juicer extracts audio from compact discs and convert it\n" "into audio files that a personal computer or digital audio player can play.\n" @@ -6979,27 +7092,27 @@ msgid "" "mp3, Ogg Vorbis and FLAC" msgstr "" -#: gnu/packages/gnome.scm:10888 +#: gnu/packages/gnome.scm:10907 msgid "" "SoundConverter supports converting between many audio formats including\n" "Opus, Ogg Vorbis, FLAC and more. It supports parallel conversion, and\n" "configurable file renaming." msgstr "" -#: gnu/packages/gnome.scm:10936 +#: gnu/packages/gnome.scm:10955 msgid "" "Workrave is a program that assists in the recovery and prevention of\n" "repetitive strain injury (@dfn{RSI}). The program frequently alerts you to take\n" "micro-pauses and rest breaks, and restricts you to your daily limit." msgstr "" -#: gnu/packages/gnome.scm:10977 +#: gnu/packages/gnome.scm:10996 msgid "" "The GHex program can view and edit files in two ways:\n" "hexadecimal or ASCII. It is useful for editing binary files in general." msgstr "" -#: gnu/packages/gnome.scm:11013 +#: gnu/packages/gnome.scm:11032 msgid "" "The libdazzle library is a companion library to GObject and\n" "Gtk+. It provides various features that the authors wish were in the\n" @@ -7008,40 +7121,40 @@ msgid "" "generic enough to work for everyone." msgstr "" -#: gnu/packages/gnome.scm:11080 +#: gnu/packages/gnome.scm:11099 msgid "" "Evolution is a personal information management application\n" "that provides integrated mail, calendaring and address book\n" "functionality." msgstr "" -#: gnu/packages/gnome.scm:11140 +#: gnu/packages/gnome.scm:11154 msgid "" "GThumb is an image viewer, browser, organizer, editor and\n" "advanced image management tool" msgstr "" -#: gnu/packages/gnome.scm:11213 +#: gnu/packages/gnome.scm:11227 msgid "" "Terminator allows you to run multiple GNOME terminals in a grid and\n" "tabs, and it supports drag and drop re-ordering of terminals." msgstr "" -#: gnu/packages/gnome.scm:11274 +#: gnu/packages/gnome.scm:11288 msgid "" "The aim of the handy library is to help with developing user\n" "interfaces for mobile devices using GTK+. It provides responsive GTK+ widgets\n" "for usage on small and big screens." msgstr "" -#: gnu/packages/gnome.scm:11323 +#: gnu/packages/gnome.scm:11337 msgid "" "libgit2-glib is a GLib wrapper library around the libgit2 Git\n" "access library. It only implements the core plumbing functions, not really the\n" "higher level porcelain stuff." msgstr "" -#: gnu/packages/gnome.scm:11402 +#: gnu/packages/gnome.scm:11415 msgid "" "gitg is a graphical user interface for git. It aims at being a small,\n" "fast and convenient tool to visualize the history of git repositories.\n" @@ -7049,21 +7162,21 @@ msgid "" "repository and commit your work." msgstr "" -#: gnu/packages/gnome.scm:11474 +#: gnu/packages/gnome.scm:11487 msgid "" "Gamin is a file and directory monitoring system defined to be a subset\n" "of the FAM (File Alteration Monitor) system. This is a service provided by a\n" "library which detects when a file or a directory has been modified." msgstr "" -#: gnu/packages/gnome.scm:11508 +#: gnu/packages/gnome.scm:11521 msgid "" "GNOME Mahjongg is a game based on the classic Chinese\n" -"tile-matching game Mahjong. It features multiple board layouts, tile themes,\n" +"tile-matching game Mahjongg. It features multiple board layouts, tile themes,\n" "and a high score table." msgstr "" -#: gnu/packages/gnome.scm:11546 +#: gnu/packages/gnome.scm:11559 msgid "" "This package provides themes and related elements that don't\n" "really fit in other upstream packages. It offers legacy support for GTK+ 2\n" @@ -7071,19 +7184,19 @@ msgid "" "index files needed for Adwaita to be used outside of GNOME." msgstr "" -#: gnu/packages/gnome.scm:11585 +#: gnu/packages/gnome.scm:11605 msgid "" -"Gnote is a note-taking application written for the GNOME desktop\n" -"environment." +"Gnote is a note-taking application written for the GNOME\n" +"desktop environment." msgstr "" -#: gnu/packages/gnome.scm:11647 +#: gnu/packages/gnome.scm:11664 msgid "" "Polari is a simple Internet Relay Chat (IRC) client that is designed to\n" "integrate seamlessly with the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:11706 +#: gnu/packages/gnome.scm:11723 msgid "" "GNOME Boxes is a simple application to view, access, and\n" "manage remote and virtual systems. Note that this application requires the\n" @@ -7092,7 +7205,7 @@ msgid "" "these services on the Guix System." msgstr "" -#: gnu/packages/gnome.scm:11806 +#: gnu/packages/gnome.scm:11823 msgid "" "Geary collects related messages together into conversations,\n" "making it easy to find and follow your discussions. Full-text and keyword\n" @@ -7104,14 +7217,14 @@ msgid "" "to." msgstr "" -#: gnu/packages/gnome.scm:11851 +#: gnu/packages/gnome.scm:11868 msgid "" "gLabels is a program for creating labels and business cards. It is\n" "designed to work with various laser/ink-jet peel-off label and business\n" "card sheets that you’ll find at most office supply stores." msgstr "" -#: gnu/packages/gnome.scm:11892 +#: gnu/packages/gnome.scm:11909 msgid "" "GNOME LaTeX is a LaTeX editor for the GNOME desktop. It has features\n" "such as build tools, completion of LaTeX commands, structure navigation,\n" @@ -7119,19 +7232,19 @@ msgid "" "and toolbars." msgstr "" -#: gnu/packages/gnome.scm:11951 +#: gnu/packages/gnome.scm:11968 msgid "" "Setzer is a simple yet full-featured LaTeX editor written in Python with\n" "GTK+. It integrates well with the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:12017 +#: gnu/packages/gnome.scm:12034 msgid "" "Apostrophe is a GTK+ based distraction-free Markdown editor.\n" "It uses pandoc as back-end for parsing Markdown." msgstr "" -#: gnu/packages/gnome.scm:12070 +#: gnu/packages/gnome.scm:12088 msgid "" "libratbag provides @command{ratbagd}, a DBus daemon to\n" "configure input devices, mainly gaming mice. The daemon provides a generic\n" @@ -7148,7 +7261,7 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12140 +#: gnu/packages/gnome.scm:12156 msgid "" "Piper is a GTK+ application for configuring gaming mice with\n" "onboard configuration for key bindings via libratbag. Piper requires\n" @@ -7160,14 +7273,14 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12202 +#: gnu/packages/gnome.scm:12218 msgid "" "Parlatype is an audio player for the GNOME desktop\n" "environment. Its main purpose is the manual transcription of spoken\n" "audio files." msgstr "" -#: gnu/packages/gnome.scm:12228 +#: gnu/packages/gnome.scm:12244 msgid "" "Jsonrpc-GLib is a library to communicate with JSON-RPC based\n" "peers in either a synchronous or asynchronous fashion. It also allows\n" @@ -7176,14 +7289,14 @@ msgid "" "host to avoid parser overhead and memory-allocator fragmentation." msgstr "" -#: gnu/packages/gnome.scm:12256 +#: gnu/packages/gnome.scm:12272 msgid "" "Feedbackd provides a DBus daemon to act on events to provide\n" "haptic, visual and audio feedback. It offers the libfeedbackd library and\n" "GObject introspection bindings." msgstr "" -#: gnu/packages/gnome.scm:12305 +#: gnu/packages/gnome.scm:12321 msgid "" "Sysprof performs detailed, accurate, and fast CPU profiling of an entire\n" "GNU/Linux system including the kernel and all user-space applications. This\n" @@ -7193,21 +7306,21 @@ msgid "" "libraries. Applications do not need to be recompiled--or even restarted." msgstr "" -#: gnu/packages/gnome.scm:12388 +#: gnu/packages/gnome.scm:12406 msgid "" -"Builder aims to be an integrated development\n" -"environment (IDE) for writing GNOME-based software. It features fuzzy search,\n" -"auto-completion, a mini code map, documentation browsing, Git integration, an\n" -"integrated profiler via Sysprof, debugging support, and more." +"Builder aims to be an integrated development environment (IDE) for\n" +"writing GNOME-based software. It features fuzzy search, auto-completion,\n" +"a mini code map, documentation browsing, Git integration, an integrated\n" +"profiler via Sysprof, debugging support, and more." msgstr "" -#: gnu/packages/gnome.scm:12461 +#: gnu/packages/gnome.scm:12480 msgid "" "Komikku is an online/offline manga reader for GNOME,\n" "developed with the aim of being used with the Librem 5 phone." msgstr "" -#: gnu/packages/gnome.scm:12545 +#: gnu/packages/gnome.scm:12564 msgid "" "GNU Data Access (GDA) is an attempt to provide uniform access to\n" "different kinds of data sources (databases, information servers, mail spools,\n" @@ -7215,7 +7328,7 @@ msgid "" "your data." msgstr "" -#: gnu/packages/gnome.scm:12596 +#: gnu/packages/gnome.scm:12614 msgid "" "gtranslator is a quite comfortable gettext po/po.gz/(g)mo files editor\n" "for the GNOME 3.x platform with many features. It aims to be a very complete\n" @@ -7223,32 +7336,36 @@ msgid "" "world." msgstr "" -#: gnu/packages/gnome.scm:12662 +#: gnu/packages/gnome.scm:12680 msgid "" "OCRFeeder is a complete Optical Character Recognition and\n" "Document Analysis and Recognition program." msgstr "" -#: gnu/packages/gnome.scm:12702 +#: gnu/packages/gnome.scm:12720 msgid "" "@code{libadwaita} offers widgets and objects to build GNOME\n" "applications scaling from desktop workstations to mobile phones. It is the\n" "successor of @code{libhandy} for GTK4." msgstr "" -#: gnu/packages/gnome.scm:12727 +#: gnu/packages/gnome.scm:12745 msgid "" "@code{gnome-power-manager} is a tool for viewing present and\n" "historical battery usage and related statistics." msgstr "" +#: gnu/packages/gnome.scm:12789 +msgid "This package provides a graphical file manager." +msgstr "" + #: gnu/packages/gnuzilla.scm:155 msgid "" "SpiderMonkey is Mozilla's JavaScript engine written\n" "in C/C++." msgstr "" -#: gnu/packages/gnuzilla.scm:1314 +#: gnu/packages/gnuzilla.scm:1315 msgid "" "IceCat is the GNU version of the Firefox browser. It is entirely free\n" "software, which does not recommend non-free plugins and addons. It also\n" @@ -7261,19 +7378,19 @@ msgid "" "standards of the IceCat project." msgstr "" -#: gnu/packages/gnuzilla.scm:1642 +#: gnu/packages/gnuzilla.scm:1648 msgid "" "This package provides an email client built based on Mozilla\n" "Thunderbird. It supports email, news feeds, chat, calendar and contacts." msgstr "" -#: gnu/packages/gnuzilla.scm:1717 +#: gnu/packages/gnuzilla.scm:1723 msgid "" "Firefox Decrypt is a tool to extract passwords from\n" "Mozilla (Firefox, Waterfox, Thunderbird, SeaMonkey) profiles." msgstr "" -#: gnu/packages/gnuzilla.scm:1754 +#: gnu/packages/gnuzilla.scm:1760 msgid "" "@code{lz4json} is a little utility to unpack lz4json files as generated\n" "by Firefox's bookmark backups and session restore. This is a different format\n" @@ -7287,7 +7404,7 @@ msgid "" "tools have full access to view and control running applications." msgstr "" -#: gnu/packages/gtk.scm:215 +#: gnu/packages/gtk.scm:212 msgid "" "Cairo is a 2D graphics library with support for multiple output\n" "devices. Currently supported output targets include the X Window System (via\n" @@ -7295,24 +7412,24 @@ msgid "" "output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB." msgstr "" -#: gnu/packages/gtk.scm:277 +#: gnu/packages/gtk.scm:274 msgid "HarfBuzz is an OpenType text shaping engine." msgstr "" -#: gnu/packages/gtk.scm:320 +#: gnu/packages/gtk.scm:317 msgid "" "Libdatrie is an implementation of double-array structure for\n" "representing trie. Trie is a kind of digital search tree." msgstr "" -#: gnu/packages/gtk.scm:352 +#: gnu/packages/gtk.scm:349 msgid "" "LibThai is a set of Thai language support routines aimed to\n" "ease developers’ tasks to incorporate Thai language support in their\n" "applications." msgstr "" -#: gnu/packages/gtk.scm:407 +#: gnu/packages/gtk.scm:404 msgid "" "Pango is a library for laying out and rendering of text, with\n" "an emphasis on internationalization. Pango can be used anywhere that text\n" @@ -7321,21 +7438,21 @@ msgid "" "handling for GTK+-2.x." msgstr "" -#: gnu/packages/gtk.scm:461 +#: gnu/packages/gtk.scm:458 msgid "" "Pangox was a X backend to pango. It is now obsolete and no\n" "longer provided by recent pango releases. pangox-compat provides the\n" "functions which were removed." msgstr "" -#: gnu/packages/gtk.scm:498 +#: gnu/packages/gtk.scm:495 msgid "" "Ganv is an interactive GTK+ widget for interactive “boxes and lines” or\n" "graph-like environments, e.g. modular synths or finite state machine\n" "diagrams." msgstr "" -#: gnu/packages/gtk.scm:554 +#: gnu/packages/gtk.scm:551 msgid "" "GtkSourceView is a portable C library that extends the standard GTK+\n" "framework for multiline text editing with support for configurable syntax\n" @@ -7343,33 +7460,33 @@ msgid "" "printing and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:602 +#: gnu/packages/gtk.scm:599 msgid "" "GtkSourceView is a text widget that extends the standard\n" "GTK+ text widget GtkTextView. It improves GtkTextView by implementing syntax\n" "highlighting and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:698 +#: gnu/packages/gtk.scm:695 msgid "" "GdkPixbuf is a library that loads image data in various\n" "formats and stores it as linear buffers in memory. The buffers can then be\n" "scaled, composited, modified, saved, or rendered." msgstr "" -#: gnu/packages/gtk.scm:746 +#: gnu/packages/gtk.scm:743 msgid "" "The Assistive Technology Service Provider Interface, core components,\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:827 +#: gnu/packages/gtk.scm:824 msgid "" "The Assistive Technology Service Provider Interface\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:921 +#: gnu/packages/gtk.scm:918 msgid "" "GTK+, or the GIMP Toolkit, is a multi-platform toolkit for creating\n" "graphical user interfaces. Offering a complete set of widgets, GTK+ is\n" @@ -7377,14 +7494,14 @@ msgid "" "application suites." msgstr "" -#: gnu/packages/gtk.scm:1234 +#: gnu/packages/gtk.scm:1238 msgid "" "GTK is a multi-platform toolkit for creating graphical user\n" "interfaces. Offering a complete set of widgets, GTK is suitable for projects\n" "ranging from small one-off tools to complete application suites." msgstr "" -#: gnu/packages/gtk.scm:1308 +#: gnu/packages/gtk.scm:1312 msgid "" "Guile-Cairo wraps the Cairo graphics library for Guile Scheme.\n" "Guile-Cairo is complete, wrapping almost all of the Cairo API. It is API\n" @@ -7394,13 +7511,13 @@ msgid "" "exceptions, macros, and a dynamic programming environment." msgstr "" -#: gnu/packages/gtk.scm:1389 +#: gnu/packages/gtk.scm:1393 msgid "" "Guile-RSVG wraps the RSVG library for Guile, allowing you to render SVG\n" "images onto Cairo surfaces." msgstr "" -#: gnu/packages/gtk.scm:1456 +#: gnu/packages/gtk.scm:1460 msgid "" "Guile-Present defines a declarative vocabulary for presentations,\n" "together with tools to render presentation documents as SVG or PDF.\n" @@ -7409,29 +7526,29 @@ msgid "" "documents." msgstr "" -#: gnu/packages/gtk.scm:1522 +#: gnu/packages/gtk.scm:1526 msgid "" "Includes guile-clutter, guile-gnome-gstreamer,\n" "guile-gnome-platform (GNOME developer libraries), and guile-gtksourceview." msgstr "" -#: gnu/packages/gtk.scm:1578 +#: gnu/packages/gtk.scm:1582 msgid "" "Cairomm provides a C++ programming interface to the Cairo 2D graphics\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1642 +#: gnu/packages/gtk.scm:1647 msgid "" "Pangomm provides a C++ programming interface to the Pango text rendering\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1704 +#: gnu/packages/gtk.scm:1709 msgid "ATKmm is the C++ binding for the ATK library." msgstr "" -#: gnu/packages/gtk.scm:1784 +#: gnu/packages/gtk.scm:1790 msgid "" "GTKmm is the official C++ interface for the popular GUI\n" "library GTK+. Highlights include typesafe callbacks, and a comprehensive set\n" @@ -7660,7 +7777,7 @@ msgid "" "excellent pavucontrol." msgstr "" -#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:238 +#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:241 msgid "" "Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" "official extension language of the GNU system. It is an implementation of\n" @@ -7669,14 +7786,14 @@ msgid "" "without requiring the source code to be rewritten." msgstr "" -#: gnu/packages/guile.scm:502 +#: gnu/packages/guile.scm:506 msgid "" "This module provides line editing support via the Readline library for\n" "GNU@tie{}Guile. Use the @code{(ice-9 readline)} module and call its\n" "@code{activate-readline} procedure to enable it." msgstr "" -#: gnu/packages/guile.scm:604 +#: gnu/packages/guile.scm:608 msgid "" "Guile-JSON supports parsing and building JSON documents according to the\n" "specification. These are the main features:\n" @@ -7689,17 +7806,17 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/guile.scm:701 +#: gnu/packages/guile.scm:705 msgid "" "Guile bindings to the GDBM key-value storage system, using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:730 +#: gnu/packages/guile.scm:734 msgid "This package provides Guile bindings to the SQLite database system." msgstr "" -#: gnu/packages/guile.scm:769 +#: gnu/packages/guile.scm:773 msgid "" "Guile bytestructures offers a system imitating the type system\n" "of the C programming language, to be used on bytevectors. C's type\n" @@ -7708,33 +7825,33 @@ msgid "" "type system, elevating types to first-class status." msgstr "" -#: gnu/packages/guile.scm:810 +#: gnu/packages/guile.scm:814 msgid "" "This package provides Guile bindings to libgit2, a library to\n" "manipulate repositories of the Git version control system." msgstr "" -#: gnu/packages/guile.scm:846 +#: gnu/packages/guile.scm:850 msgid "" "This package provides Guile bindings for zlib, a lossless\n" "data-compression library. The bindings are written in pure Scheme by using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:877 +#: gnu/packages/guile.scm:881 msgid "" "This package provides Guile bindings for lzlib, a C library for\n" "in-memory LZMA compression and decompression. The bindings are written in\n" "pure Scheme by using Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:904 +#: gnu/packages/guile.scm:908 msgid "" "This package provides a GNU Guile interface to the zstd (``zstandard'')\n" "compression library." msgstr "" -#: gnu/packages/guile.scm:926 +#: gnu/packages/guile.scm:930 msgid "" "Guile-LZMA is a Guile wrapper for the liblzma (XZ)\n" "library. It exposes an interface similar to other Guile compression\n" @@ -8321,7 +8438,7 @@ msgid "" "It supports JPEG, PNG and GIF formats." msgstr "" -#: gnu/packages/image-viewers.scm:640 +#: gnu/packages/image-viewers.scm:643 msgid "" "Luminance HDR (formerly QtPFSGui) is a graphical user interface\n" "application that aims to provide a workflow for high dynamic range (HDR)\n" @@ -8337,7 +8454,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:735 +#: gnu/packages/image-viewers.scm:738 msgid "" "MComix is a customizable image viewer that specializes as\n" "a comic and manga reader. It supports a variety of container formats\n" @@ -8346,7 +8463,7 @@ msgid "" "For PDF support, install the @emph{mupdf} package." msgstr "" -#: gnu/packages/image-viewers.scm:775 +#: gnu/packages/image-viewers.scm:778 msgid "" "qView is a Qt image viewer designed with visually\n" "minimalism and usability in mind. Its features include animated GIF\n" @@ -8354,14 +8471,14 @@ msgid "" "preloading." msgstr "" -#: gnu/packages/image-viewers.scm:799 +#: gnu/packages/image-viewers.scm:802 msgid "" "Chafa is a command-line utility that converts all kinds of images,\n" "including animated GIFs, into ANSI/Unicode character output that can be\n" "displayed in a terminal." msgstr "" -#: gnu/packages/image-viewers.scm:847 +#: gnu/packages/image-viewers.scm:850 msgid "" "@code{imv} is a command line image viewer intended for use\n" "with tiling window managers. Features include:\n" @@ -8383,7 +8500,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:924 +#: gnu/packages/image-viewers.scm:927 msgid "" "Quick Image Viewer is a small and fast GDK/Imlib2 image viewer.\n" "Features include zoom, maxpect, scale down, fullscreen, slideshow, delete,\n" @@ -8392,7 +8509,7 @@ msgid "" "to set X desktop background." msgstr "" -#: gnu/packages/image-viewers.scm:968 +#: gnu/packages/image-viewers.scm:971 msgid "" "pqiv is a GTK-3 based command-line image viewer with a minimal UI.\n" "It is highly customizable, can be fully controlled from scripts, and has\n" @@ -8400,7 +8517,7 @@ msgid "" "archives." msgstr "" -#: gnu/packages/image-viewers.scm:1025 +#: gnu/packages/image-viewers.scm:1028 msgid "" "Nomacs is a simple to use image lounge featuring\n" "semi-transparent widgets that display additional information such as metadata,\n" @@ -8413,7 +8530,7 @@ msgid "" "synchronization of multiple instances." msgstr "" -#: gnu/packages/image-viewers.scm:1070 +#: gnu/packages/image-viewers.scm:1073 msgid "xzgv is a fast image viewer that provides extensive keyboard support." msgstr "" @@ -8676,17 +8793,17 @@ msgid "" "Math for editing mathematics." msgstr "" -#: gnu/packages/linux.scm:604 +#: gnu/packages/linux.scm:625 msgid "Headers of the Linux-Libre kernel." msgstr "" -#: gnu/packages/linux.scm:905 +#: gnu/packages/linux.scm:935 msgid "" "GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.\n" "It has been modified to remove all non-free binary blobs." msgstr "" -#: gnu/packages/linux.scm:1215 +#: gnu/packages/linux.scm:1252 msgid "" "This simple Linux kernel module allows calls from user space to any\n" "@acronym{ACPI, Advanced Configuration and Power Interface} method provided by\n" @@ -8698,7 +8815,7 @@ msgid "" "and should be used with caution, especially on untested models." msgstr "" -#: gnu/packages/linux.scm:1283 +#: gnu/packages/linux.scm:1320 msgid "" "CoreFreq is a CPU monitor that reports low-level processor settings and\n" "performance data with notably high precision by using a loadable Linux kernel\n" @@ -8729,7 +8846,7 @@ msgid "" "@file{README.md} before loading it." msgstr "" -#: gnu/packages/linux.scm:1332 +#: gnu/packages/linux.scm:1369 msgid "" "This is the Linux kernel @acronym{ACPI, Advanced Configuration and Power\n" "Interface} platform driver for the @acronym{EC, Embedded Controller} firmware\n" @@ -8738,13 +8855,13 @@ msgid "" "and the notification, WiFi, and Bluetooth LED." msgstr "" -#: gnu/packages/linux.scm:1375 +#: gnu/packages/linux.scm:1413 msgid "" "This is Realtek's RTL8821CE Linux driver for wireless\n" "network adapters." msgstr "" -#: gnu/packages/linux.scm:1407 +#: gnu/packages/linux.scm:1445 msgid "" "This is Realtek's rtl8812au Linux driver for USB 802.11n wireless\n" "network adapters, modified by the aircrack-ng project to support monitor mode\n" @@ -8752,7 +8869,7 @@ msgid "" "RTL8812AU, RTL8821AU, and RTL8814AU chips." msgstr "" -#: gnu/packages/linux.scm:1431 +#: gnu/packages/linux.scm:1469 msgid "" "The @acronym{VHBA, Virtual SCSI Host Bus Adapter} module is the link\n" "between the CDemu user-space daemon and the kernel Linux. It acts as a\n" @@ -8761,13 +8878,13 @@ msgid "" "emulate optical devices such as DVD and CD-ROM drives." msgstr "" -#: gnu/packages/linux.scm:1460 +#: gnu/packages/linux.scm:1497 msgid "" "The bbswitch module provides a way to toggle the Nvidia\n" "graphics card on Optimus laptops." msgstr "" -#: gnu/packages/linux.scm:1501 +#: gnu/packages/linux.scm:1536 msgid "" "This package provides two Linux kernel drivers, ddcci and\n" "ddcci-backlight, that allows the control of DDC/CI monitors through the sysfs\n" @@ -8777,7 +8894,7 @@ msgid "" "supported under @file{/sys/class/backlight/}." msgstr "" -#: gnu/packages/linux.scm:1528 +#: gnu/packages/linux.scm:1563 msgid "" "This Linux module creates virtual video devices. @acronym{V4L2, Video\n" "for Linux 2} applications will treat these as ordinary video devices but read\n" @@ -8789,7 +8906,7 @@ msgid "" "application by hooking GStreamer into the loopback device." msgstr "" -#: gnu/packages/linux.scm:1569 +#: gnu/packages/linux.scm:1604 msgid "" "This package provides a driver for the XBox One S Wireless controller\n" "and some newer models when connected via Bluetooth. In addition to the included\n" @@ -8797,7 +8914,7 @@ msgid "" "which need to be installed separately." msgstr "" -#: gnu/packages/linux.scm:1622 +#: gnu/packages/linux.scm:1657 msgid "" "A *Free* project to implement OSF's RFC 86.0.\n" "Pluggable authentication modules are small shared object files that can\n" @@ -8805,18 +8922,18 @@ msgid "" "at login. Local and dynamic reconfiguration are its key features." msgstr "" -#: gnu/packages/linux.scm:1683 +#: gnu/packages/linux.scm:1718 msgid "This package provides a PAM interface using @code{ctypes}." msgstr "" -#: gnu/packages/linux.scm:1712 +#: gnu/packages/linux.scm:1747 msgid "" "This package provides a PAM module that hands over your\n" "login password to @code{gpg-agent}. This can be useful if you are using a\n" "GnuPG-based password manager like @code{pass}." msgstr "" -#: gnu/packages/linux.scm:1741 +#: gnu/packages/linux.scm:1776 msgid "" "This package contains utilities for accessing the powercap\n" "Linux kernel feature through sysfs. It includes an implementation for working\n" @@ -8824,7 +8941,7 @@ msgid "" "It provides the commands @code{powercap-info} and @code{powercap-set}." msgstr "" -#: gnu/packages/linux.scm:1772 +#: gnu/packages/linux.scm:1807 msgid "" "Powerstat measures and reports your computer's power consumption in real\n" "time. On mobile PCs, it uses ACPI battery information to measure the power\n" @@ -8841,28 +8958,28 @@ msgid "" "deviation, and minimum and maximum values. It can show a nice histogram too." msgstr "" -#: gnu/packages/linux.scm:1810 +#: gnu/packages/linux.scm:1845 msgid "" "This PSmisc package is a set of some small useful utilities that\n" "use the proc file system. We're not about changing the world, but\n" "providing the system administrator with some help in common tasks." msgstr "" -#: gnu/packages/linux.scm:1948 +#: gnu/packages/linux.scm:1984 msgid "" "Util-linux is a diverse collection of Linux kernel\n" "utilities. It provides dmesg and includes tools for working with file systems,\n" "block devices, UUIDs, TTYs, and many other tools." msgstr "" -#: gnu/packages/linux.scm:1986 +#: gnu/packages/linux.scm:2037 msgid "" "ddate displays the Discordian date and holidays of a given date.\n" "The Discordian calendar was made popular by the \"Illuminatus!\" trilogy\n" "by Robert Shea and Robert Anton Wilson." msgstr "" -#: gnu/packages/linux.scm:2040 +#: gnu/packages/linux.scm:2091 msgid "" "The kernel Linux's @dfn{frame buffers} provide a simple interface to\n" "different kinds of graphic displays. The @command{fbset} utility can query and\n" @@ -8870,7 +8987,7 @@ msgid "" "parameters." msgstr "" -#: gnu/packages/linux.scm:2085 +#: gnu/packages/linux.scm:2136 msgid "" "Procps is the package that has a bunch of small useful utilities\n" "that give information about processes using the Linux /proc file system.\n" @@ -8878,11 +8995,11 @@ msgid "" "slabtop, tload, top, vmstat, w, watch and sysctl." msgstr "" -#: gnu/packages/linux.scm:2130 +#: gnu/packages/linux.scm:2181 msgid "Tools for working with USB devices, such as lsusb." msgstr "" -#: gnu/packages/linux.scm:2154 +#: gnu/packages/linux.scm:2205 msgid "" "The USB/IP protocol enables to pass USB device from a server to\n" "a client over the network. The server is a machine which shares an\n" @@ -8895,23 +9012,23 @@ msgid "" "module." msgstr "" -#: gnu/packages/linux.scm:2237 +#: gnu/packages/linux.scm:2288 msgid "This package provides tools for manipulating ext2/ext3/ext4 file systems." msgstr "" -#: gnu/packages/linux.scm:2279 +#: gnu/packages/linux.scm:2330 msgid "" "This package provides statically-linked e2fsck command taken\n" "from the e2fsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:2302 +#: gnu/packages/linux.scm:2353 msgid "" "Extundelete is a set of tools that can recover deleted files from an\n" "ext3 or ext4 partition." msgstr "" -#: gnu/packages/linux.scm:2335 +#: gnu/packages/linux.scm:2386 msgid "" "Zerofree finds the unallocated blocks with non-zero value content in an\n" "ext2, ext3, or ext4 file system and fills them with zeroes (or another value).\n" @@ -8919,39 +9036,39 @@ msgid "" "Zerofree requires the file system to be unmounted or mounted read-only." msgstr "" -#: gnu/packages/linux.scm:2380 +#: gnu/packages/linux.scm:2431 msgid "" "strace is a system call tracer, i.e. a debugging tool which prints out a\n" "trace of all the system calls made by a another process/program." msgstr "" -#: gnu/packages/linux.scm:2403 +#: gnu/packages/linux.scm:2454 msgid "" "ltrace intercepts and records dynamic library calls which are called by\n" "an executed process and the signals received by that process. It can also\n" "intercept and print the system calls executed by the program." msgstr "" -#: gnu/packages/linux.scm:2428 +#: gnu/packages/linux.scm:2479 msgid "" "This package contains Advanced Linux Sound Architecture Use Case Manager\n" "configuration of audio input/output names and routing for specific audio\n" "hardware." msgstr "" -#: gnu/packages/linux.scm:2452 +#: gnu/packages/linux.scm:2503 msgid "" "This package contains Advanced Linux Sound Architecture topology\n" "configuration files that can be used for specific audio hardware." msgstr "" -#: gnu/packages/linux.scm:2499 gnu/packages/linux.scm:2548 +#: gnu/packages/linux.scm:2550 gnu/packages/linux.scm:2599 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system." msgstr "" -#: gnu/packages/linux.scm:2617 +#: gnu/packages/linux.scm:2668 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system. This package enhances ALSA\n" @@ -8960,7 +9077,7 @@ msgid "" "external rate conversion." msgstr "" -#: gnu/packages/linux.scm:2655 +#: gnu/packages/linux.scm:2706 msgid "" "@command{iptables} is the user-space command line program used to\n" "configure the Linux 2.4.x and later IPv4 packet filtering ruleset\n" @@ -8972,7 +9089,7 @@ msgid "" "Both commands are targeted at system administrators." msgstr "" -#: gnu/packages/linux.scm:2691 +#: gnu/packages/linux.scm:2742 msgid "" "This simple daemon feeds entropy from the CPU Jitter @acronym{RNG, random\n" "number generator} core to the kernel Linux's entropy estimator. This prevents\n" @@ -8994,7 +9111,7 @@ msgid "" "early boot when entropy may be low, especially in virtualised environments." msgstr "" -#: gnu/packages/linux.scm:2727 +#: gnu/packages/linux.scm:2778 msgid "" "@command{lsscsi} lists SCSI logical units or SCSI targets. It can\n" "also list NVMe namespaces or controllers and show the relationship between a\n" @@ -9002,7 +9119,7 @@ msgid "" "name." msgstr "" -#: gnu/packages/linux.scm:2751 +#: gnu/packages/linux.scm:2802 msgid "" "ebtables is an application program used to set up and maintain the\n" "tables of rules (inside the Linux kernel) that inspect Ethernet frames. It is\n" @@ -9010,7 +9127,7 @@ msgid "" "that the Ethernet protocol is much simpler than the IP protocol." msgstr "" -#: gnu/packages/linux.scm:2816 +#: gnu/packages/linux.scm:2867 msgid "" "Iproute2 is a collection of utilities for controlling TCP/IP networking\n" "and traffic with the Linux kernel. The most important of these are\n" @@ -9022,7 +9139,7 @@ msgid "" "inadequately in modern network environments, and both should be deprecated." msgstr "" -#: gnu/packages/linux.scm:2896 +#: gnu/packages/linux.scm:2947 msgid "" "This package includes the important tools for controlling the network\n" "subsystem of the Linux kernel. This includes arp, ifconfig, netstat, rarp and\n" @@ -9031,13 +9148,13 @@ msgid "" "configuration (iptunnel, ipmaddr)." msgstr "" -#: gnu/packages/linux.scm:2947 +#: gnu/packages/linux.scm:2989 msgid "" "Libcap2 provides a programming interface to POSIX capabilities on\n" "Linux-based operating systems." msgstr "" -#: gnu/packages/linux.scm:2974 +#: gnu/packages/linux.scm:3016 msgid "" "Utilities for Linux's Ethernet bridging facilities. A bridge is a way\n" "to connect two Ethernet segments together in a protocol independent way.\n" @@ -9046,7 +9163,7 @@ msgid "" "transparently through a bridge." msgstr "" -#: gnu/packages/linux.scm:3025 +#: gnu/packages/linux.scm:3067 msgid "" "The libnl suite is a collection of libraries providing APIs to netlink\n" "protocol based Linux kernel interfaces. Netlink is an IPC mechanism primarily\n" @@ -9055,13 +9172,13 @@ msgid "" "configuration and monitoring interfaces." msgstr "" -#: gnu/packages/linux.scm:3099 +#: gnu/packages/linux.scm:3141 msgid "" "iw is a new nl80211 based CLI configuration utility for wireless\n" "devices. It replaces @code{iwconfig}, which is deprecated." msgstr "" -#: gnu/packages/linux.scm:3149 +#: gnu/packages/linux.scm:3191 msgid "" "PowerTOP is a Linux tool to diagnose issues with power consumption and\n" "power management. In addition to being a diagnostic tool, PowerTOP also has\n" @@ -9070,19 +9187,19 @@ msgid "" "settings." msgstr "" -#: gnu/packages/linux.scm:3176 +#: gnu/packages/linux.scm:3218 msgid "" "Aumix adjusts an audio mixer from X, the console, a terminal,\n" "the command line or a script." msgstr "" -#: gnu/packages/linux.scm:3207 +#: gnu/packages/linux.scm:3249 msgid "" "Iotop is a Python program with a top like user interface to show the\n" "processes currently causing I/O." msgstr "" -#: gnu/packages/linux.scm:3265 +#: gnu/packages/linux.scm:3307 msgid "" "As a consequence of its monolithic design, file system code for Linux\n" "normally goes into the kernel itself---which is not only a robustness issue,\n" @@ -9092,7 +9209,7 @@ msgid "" "user-space processes." msgstr "" -#: gnu/packages/linux.scm:3358 +#: gnu/packages/linux.scm:3400 msgid "" "UnionFS-FUSE is a flexible union file system implementation in user\n" "space, using the FUSE library. Mounting a union file system allows you to\n" @@ -9100,7 +9217,7 @@ msgid "" "UnionFS-FUSE additionally supports copy-on-write." msgstr "" -#: gnu/packages/linux.scm:3437 +#: gnu/packages/linux.scm:3479 msgid "" "This is a file system client based on the SSH File Transfer Protocol.\n" "Since most SSH servers already support this protocol it is very easy to set\n" @@ -9108,7 +9225,7 @@ msgid "" "file system is as easy as logging into the server with an SSH client." msgstr "" -#: gnu/packages/linux.scm:3464 +#: gnu/packages/linux.scm:3506 msgid "" "archivemount is a FUSE-based file system for Unix variants,\n" "including Linux. Its purpose is to mount archives (i.e. tar, tar.gz, etc.) to a\n" @@ -9117,7 +9234,7 @@ msgid "" "compressed, transparent to other programs, without decompressing them." msgstr "" -#: gnu/packages/linux.scm:3495 +#: gnu/packages/linux.scm:3537 msgid "" "NUMA stands for Non-Uniform Memory Access, in other words a system whose\n" "memory is not all in one place. The @command{numactl} program allows you to\n" @@ -9130,26 +9247,26 @@ msgid "" "NUMA performance on your system." msgstr "" -#: gnu/packages/linux.scm:3533 +#: gnu/packages/linux.scm:3575 msgid "" "Kbd-neo provides the Neo2 keyboard layout for use with\n" "@command{loadkeys(1)} from @code{kbd(4)}." msgstr "" -#: gnu/packages/linux.scm:3599 +#: gnu/packages/linux.scm:3641 msgid "" "This package contains keytable files and keyboard utilities compatible\n" "for systems using the Linux kernel. This includes commands such as\n" "@code{loadkeys}, @code{setfont}, @code{kbdinfo}, and @code{chvt}." msgstr "" -#: gnu/packages/linux.scm:3662 +#: gnu/packages/linux.scm:3704 msgid "" "The inotify-tools packages provides a C library and command-line tools\n" "to use Linux' inotify mechanism, which allows file accesses to be monitored." msgstr "" -#: gnu/packages/linux.scm:3714 +#: gnu/packages/linux.scm:3756 msgid "" "Kmod is a set of tools to handle common tasks with Linux\n" "kernel modules like insert, remove, list, check properties, resolve\n" @@ -9160,21 +9277,21 @@ msgid "" "from the module-init-tools project." msgstr "" -#: gnu/packages/linux.scm:3769 +#: gnu/packages/linux.scm:3812 msgid "" "Early OOM is a minimalist out of memory (OOM) daemon that\n" "runs in user space and provides a more responsive and configurable alternative\n" "to the in-kernel OOM killer." msgstr "" -#: gnu/packages/linux.scm:3867 +#: gnu/packages/linux.scm:3892 msgid "" "Udev is a daemon which dynamically creates and removes\n" "device nodes from /dev/, handles hotplug events and loads drivers at boot\n" "time." msgstr "" -#: gnu/packages/linux.scm:3897 +#: gnu/packages/linux.scm:3922 msgid "" "Python-evdev provides bindings to the generic input event interface in\n" "Linux. The @code{evdev} interface serves the purpose of passing events\n" @@ -9186,7 +9303,7 @@ msgid "" "devices that can inject events directly into the input subsystem." msgstr "" -#: gnu/packages/linux.scm:3930 +#: gnu/packages/linux.scm:3955 msgid "" "Interception Tools provides a composable infrastructure on top of\n" "@code{libudev} and @code{libevdev}. The following utilities are provided:\n" @@ -9199,33 +9316,33 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/linux.scm:3979 +#: gnu/packages/linux.scm:4004 msgid "" "Dual Function Keys is a plugin for @code{interception-tools} that allows\n" "one to send arbitrary keycodes when a given key is tapped or held." msgstr "" -#: gnu/packages/linux.scm:4056 +#: gnu/packages/linux.scm:4081 msgid "" "LVM2 is the logical volume management tool set for Linux-based systems.\n" "This package includes the user-space libraries and tools, including the device\n" "mapper. Kernel components are part of Linux-libre." msgstr "" -#: gnu/packages/linux.scm:4122 +#: gnu/packages/linux.scm:4147 msgid "" "A suite of tools for manipulating the metadata of the\n" "dm-thin, dm-cache and dm-era device-mapper targets." msgstr "" -#: gnu/packages/linux.scm:4144 +#: gnu/packages/linux.scm:4169 msgid "" "This package provides an advanced monitor of critical system\n" "resources, supervises the heartbeat of processes, records deadline\n" "transgressions, and initiates a controlled reset if needed." msgstr "" -#: gnu/packages/linux.scm:4189 +#: gnu/packages/linux.scm:4214 msgid "" "Wireless Tools are used to manipulate the now-deprecated\n" "Linux Wireless Extensions; consider using @code{iw} instead. The Wireless\n" @@ -9234,35 +9351,35 @@ msgid "" "interface." msgstr "" -#: gnu/packages/linux.scm:4280 +#: gnu/packages/linux.scm:4305 msgid "" "The Central Regulatory Domain Agent (CRDA) acts as the udev helper for\n" "communication between the kernel Linux and user space for regulatory\n" "compliance." msgstr "" -#: gnu/packages/linux.scm:4350 +#: gnu/packages/linux.scm:4375 msgid "" "This package contains the wireless regulatory database for the Central\n" "Regulatory Database Agent (CRDA). The database contains information on\n" "country-specific regulations for the wireless spectrum." msgstr "" -#: gnu/packages/linux.scm:4424 +#: gnu/packages/linux.scm:4449 msgid "" "Lm-sensors is a hardware health monitoring package for Linux. It allows\n" "you to access information from temperature, voltage, and fan speed sensors.\n" "It works with most newer systems." msgstr "" -#: gnu/packages/linux.scm:4444 +#: gnu/packages/linux.scm:4469 msgid "" "@command{iucode_tool} is a utility to work with microcode packages for\n" "Intel processors. It can convert between formats, extract specific versions,\n" "create a firmware image suitable for the Linux kernel, and more." msgstr "" -#: gnu/packages/linux.scm:4475 +#: gnu/packages/linux.scm:4501 msgid "" "The i2c-tools package contains a heterogeneous set of I2C tools for\n" "Linux: a bus probing tool, a chip dumper, register-level SMBus access helpers,\n" @@ -9270,14 +9387,14 @@ msgid "" "SMBus access." msgstr "" -#: gnu/packages/linux.scm:4514 +#: gnu/packages/linux.scm:4540 msgid "" "Xsensors reads data from the libsensors library regarding hardware\n" "health such as temperature, voltage and fan speed and displays the information\n" "in a digital read-out." msgstr "" -#: gnu/packages/linux.scm:4568 +#: gnu/packages/linux.scm:4600 msgid "" "perf is a tool suite for profiling using hardware performance counters,\n" "with support in the Linux kernel. perf can instrument CPU performance\n" @@ -9286,7 +9403,7 @@ msgid "" "particular the @code{perf} command." msgstr "" -#: gnu/packages/linux.scm:4593 +#: gnu/packages/linux.scm:4625 msgid "" "pflask is a simple tool for creating Linux namespace\n" "containers. It can be used for running a command or even booting an OS inside\n" @@ -9295,7 +9412,7 @@ msgid "" "thanks to the use of namespaces." msgstr "" -#: gnu/packages/linux.scm:4678 +#: gnu/packages/linux.scm:4710 msgid "" "Singularity is a container platform supporting a number of\n" "container image formats. It can build SquashFS container images or import\n" @@ -9303,7 +9420,7 @@ msgid "" "isolation or root privileges." msgstr "" -#: gnu/packages/linux.scm:4711 +#: gnu/packages/linux.scm:4742 msgid "" "@command{hdparm} is a command-line utility to control ATA controllers and\n" "disk drives. It can increase performance and/or reliability by careful tuning\n" @@ -9317,21 +9434,21 @@ msgid "" "Translation (@dfn{SAT}) are also supported." msgstr "" -#: gnu/packages/linux.scm:4750 +#: gnu/packages/linux.scm:4782 msgid "" "Nvme-cli is a utility to provide standards compliant tooling\n" "for NVM-Express drives. It was made specifically for Linux as it relies on the\n" "IOCTLs defined by the mainline kernel driver." msgstr "" -#: gnu/packages/linux.scm:4776 +#: gnu/packages/linux.scm:4808 msgid "" "rfkill is a simple tool for accessing the rfkill device interface,\n" "which is used to enable and disable wireless networking devices, typically\n" "WLAN, Bluetooth and mobile broadband." msgstr "" -#: gnu/packages/linux.scm:4798 +#: gnu/packages/linux.scm:4830 msgid "" "@code{acpi} attempts to replicate the functionality of the\n" "\"old\" @code{apm} command on ACPI systems, including battery and thermal\n" @@ -9339,7 +9456,7 @@ msgid "" "about ACPI devices." msgstr "" -#: gnu/packages/linux.scm:4819 +#: gnu/packages/linux.scm:4851 msgid "" "acpid is designed to notify user-space programs of Advanced\n" "Configuration and Power Interface (ACPI) events. acpid should be started\n" @@ -9348,34 +9465,34 @@ msgid "" "specified in /etc/acpi/events and execute the rules that match the event." msgstr "" -#: gnu/packages/linux.scm:4843 +#: gnu/packages/linux.scm:4875 msgid "" "These are a set of utilities built upon sysfs, a virtual file system in\n" "Linux kernel versions 2.5+ that exposes a system's device tree. The package\n" "also contains the libsysfs library." msgstr "" -#: gnu/packages/linux.scm:4886 +#: gnu/packages/linux.scm:4918 msgid "" "The cpufrequtils suite contains utilities to retrieve CPU frequency\n" "information, and set the CPU frequency if supported, using the cpufreq\n" "capabilities of the Linux kernel." msgstr "" -#: gnu/packages/linux.scm:4922 +#: gnu/packages/linux.scm:4954 msgid "" "This package provides many of the missing pieces in GNU\n" "libc. Most notably the string functions: strlcpy(3), strlcat(3) and the *BSD\n" "sys/queue.h and sys/tree.h API's." msgstr "" -#: gnu/packages/linux.scm:4945 +#: gnu/packages/linux.scm:4977 msgid "" "This package provides small event loop that wraps the\n" "epoll family of APIs." msgstr "" -#: gnu/packages/linux.scm:4966 +#: gnu/packages/linux.scm:4998 msgid "" "Libraw1394 is the only supported interface to the kernel side raw1394 of\n" "the Linux IEEE-1394 subsystem, which provides direct access to the connected\n" @@ -9384,26 +9501,26 @@ msgid "" "protocol in question." msgstr "" -#: gnu/packages/linux.scm:4992 +#: gnu/packages/linux.scm:5024 msgid "" "Libavc1394 is a programming interface to the AV/C specification from\n" "the 1394 Trade Association. AV/C stands for Audio/Video Control." msgstr "" -#: gnu/packages/linux.scm:5016 +#: gnu/packages/linux.scm:5048 msgid "" "The libiec61883 library provides a higher level API for streaming DV,\n" "MPEG-2 and audio over Linux IEEE 1394." msgstr "" -#: gnu/packages/linux.scm:5067 +#: gnu/packages/linux.scm:5099 msgid "" "mdadm is a tool for managing Linux Software RAID arrays. It can create,\n" "assemble, report on, and monitor arrays. It can also move spares between raid\n" "arrays when needed." msgstr "" -#: gnu/packages/linux.scm:5199 +#: gnu/packages/linux.scm:5231 msgid "" "This package provides the following binaries to drive the\n" "Linux Device Mapper multipathing driver:\n" @@ -9416,66 +9533,66 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:5244 +#: gnu/packages/linux.scm:5288 msgid "" "This library enables userspace to use Linux kernel asynchronous I/O\n" "system calls, important for the performance of databases and other advanced\n" "applications." msgstr "" -#: gnu/packages/linux.scm:5287 +#: gnu/packages/linux.scm:5331 msgid "" "Blktrace is a block layer IO tracing mechanism which provides\n" "detailed information about request queue operations to user space. It extracts\n" "event traces from the kernel (via the relaying through the debug file system)." msgstr "" -#: gnu/packages/linux.scm:5312 +#: gnu/packages/linux.scm:5356 msgid "" "The SBC is a digital audio encoder and decoder used to transfer data to\n" "Bluetooth audio output devices like headphones or loudspeakers." msgstr "" -#: gnu/packages/linux.scm:5379 +#: gnu/packages/linux.scm:5423 msgid "" "BlueZ provides support for the core Bluetooth layers and protocols. It\n" "is flexible, efficient and uses a modular implementation." msgstr "" -#: gnu/packages/linux.scm:5403 +#: gnu/packages/linux.scm:5447 msgid "" "This package provides a FUSE-based file system that provides read and\n" "write access to exFAT devices." msgstr "" -#: gnu/packages/linux.scm:5426 +#: gnu/packages/linux.scm:5470 msgid "" "FuseISO is a FUSE module to mount ISO file system images (.iso, .nrg,\n" ".bin, .mdf and .img files). It supports plain ISO9660 Level 1 and 2, Rock\n" "Ridge, Joliet, and zisofs." msgstr "" -#: gnu/packages/linux.scm:5480 +#: gnu/packages/linux.scm:5524 msgid "" "The GPM (general-purpose mouse) daemon is a mouse server for\n" "applications running on the Linux console. It allows users to select items\n" "and copy/paste text in the console and in xterm." msgstr "" -#: gnu/packages/linux.scm:5551 +#: gnu/packages/linux.scm:5595 msgid "" "Btrfs is a @dfn{copy-on-write} (CoW) file system for Linux\n" "aimed at implementing advanced features while focusing on fault tolerance,\n" "repair and easy administration." msgstr "" -#: gnu/packages/linux.scm:5585 +#: gnu/packages/linux.scm:5629 msgid "" "This package provides the statically-linked @command{btrfs}\n" "from the btrfs-progs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5617 +#: gnu/packages/linux.scm:5661 msgid "" "Cramfs is a Linux file system designed to be simple, small,\n" "and to compress things well. It is used on a number of embedded systems and\n" @@ -9483,7 +9600,7 @@ msgid "" "blocks and random block placement." msgstr "" -#: gnu/packages/linux.scm:5652 +#: gnu/packages/linux.scm:5696 msgid "" "@command{compsize} takes a list of files (given as\n" "arguments) on a Btrfs file system and measures used compression types and\n" @@ -9500,20 +9617,20 @@ msgid "" "obviously it can be shared with files outside our set)." msgstr "" -#: gnu/packages/linux.scm:5700 +#: gnu/packages/linux.scm:5744 msgid "" "F2FS, the Flash-Friendly File System, is a modern file system\n" "designed to be fast and durable on flash devices such as solid-state\n" "disks and SD cards. This package provides the userland utilities." msgstr "" -#: gnu/packages/linux.scm:5790 +#: gnu/packages/linux.scm:5834 msgid "" "This package provides statically-linked fsck.f2fs command taken\n" "from the f2fs-tools package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5821 +#: gnu/packages/linux.scm:5865 msgid "" "Prevents shock damage to the internal spinning hard drive(s) of some\n" "HP and Dell laptops. When sudden movement is detected, all input/output\n" @@ -9523,7 +9640,7 @@ msgid "" "feature, and a laptop with an accelerometer. It has no effect on SSDs." msgstr "" -#: gnu/packages/linux.scm:5879 +#: gnu/packages/linux.scm:5923 msgid "" "Thinkfan is a simple fan control program. It reads temperatures,\n" "checks them against configured limits and switches to appropriate (also\n" @@ -9532,7 +9649,7 @@ msgid "" "from userspace." msgstr "" -#: gnu/packages/linux.scm:5935 +#: gnu/packages/linux.scm:5979 msgid "" "Tpacpi-bat is a command-line interface to control battery charging on\n" "@uref{https://github.com/teleshoes/tpacpi-bat/wiki/Supported-Hardware, Lenovo\n" @@ -9547,7 +9664,7 @@ msgid "" "supported." msgstr "" -#: gnu/packages/linux.scm:5979 +#: gnu/packages/linux.scm:6023 msgid "" "Tmon is a tool to interact with the complex thermal subsystem of the\n" "kernel Linux. It helps visualize thermal relationships and real-time thermal\n" @@ -9564,7 +9681,7 @@ msgid "" "by hand is no trivial task: @command{tmon} aims to make it understandable." msgstr "" -#: gnu/packages/linux.scm:6021 +#: gnu/packages/linux.scm:6065 msgid "" "Turbostat reports x86 processor topology, frequency, idle power state\n" "statistics, temperature, and power consumption. Some information is unavailable\n" @@ -9579,20 +9696,20 @@ msgid "" "invocations of itself." msgstr "" -#: gnu/packages/linux.scm:6080 +#: gnu/packages/linux.scm:6124 msgid "" "NTFS-3G provides read-write access to NTFS file systems, which are\n" "commonly found on Microsoft Windows. It is implemented as a FUSE file system.\n" "The package provides additional NTFS tools." msgstr "" -#: gnu/packages/linux.scm:6127 +#: gnu/packages/linux.scm:6171 msgid "" "This package provides a statically linked @command{ntfsfix} taken\n" "from the ntfs-3g package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:6174 +#: gnu/packages/linux.scm:6218 msgid "" "This package provides userspace components for the InfiniBand\n" "subsystem of the Linux kernel. Specifically it contains userspace\n" @@ -9612,7 +9729,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6228 +#: gnu/packages/linux.scm:6272 msgid "" "This is a collection of tests written over uverbs intended for\n" "use as a performance micro-benchmark. The tests may be used for hardware or\n" @@ -9628,20 +9745,20 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6270 +#: gnu/packages/linux.scm:6314 msgid "" "Monitor a hardware random number generator, and supply entropy\n" "from that to the system kernel's @file{/dev/random} machinery." msgstr "" -#: gnu/packages/linux.scm:6312 +#: gnu/packages/linux.scm:6356 msgid "" "cpupower is a set of user-space tools that use the cpufreq feature of the\n" "Linux kernel to retrieve and control processor features related to power saving,\n" "such as frequency and voltage scaling." msgstr "" -#: gnu/packages/linux.scm:6344 +#: gnu/packages/linux.scm:6388 msgid "" "@command{x86_energy_perf_policy} displays and updates energy-performance\n" "policy settings specific to Intel Architecture Processors. Settings are\n" @@ -9649,7 +9766,7 @@ msgid "" "cpufreq sub-system is enabled or not." msgstr "" -#: gnu/packages/linux.scm:6370 +#: gnu/packages/linux.scm:6414 msgid "" "haveged generates an unpredictable stream of random numbers for use by\n" "Linux's @file{/dev/random} and @file{/dev/urandom} devices. The kernel's\n" @@ -9667,7 +9784,7 @@ msgid "" "not as a replacement for it." msgstr "" -#: gnu/packages/linux.scm:6456 +#: gnu/packages/linux.scm:6500 msgid "" "eCryptfs is a POSIX-compliant stacked cryptographic file system for Linux.\n" "Each file's cryptographic meta-data is stored inside the file itself, along\n" @@ -9677,7 +9794,7 @@ msgid "" "2.6.19. This package contains the userland utilities to manage it." msgstr "" -#: gnu/packages/linux.scm:6488 +#: gnu/packages/linux.scm:6532 msgid "" "Libnfsidmap is a library holding mulitiple methods of\n" "mapping names to ids and visa versa, mainly for NFSv4. It provides an\n" @@ -9685,13 +9802,13 @@ msgid "" "the default @code{nsswitch} and the experimental @code{umich_ldap}." msgstr "" -#: gnu/packages/linux.scm:6524 +#: gnu/packages/linux.scm:6568 msgid "" "Tools for loading and managing Linux kernel modules, such as\n" "@code{modprobe}, @code{insmod}, @code{lsmod}, and more." msgstr "" -#: gnu/packages/linux.scm:6565 +#: gnu/packages/linux.scm:6609 msgid "" "The mcelog daemon logs memory, I/O, CPU, and other hardware errors on x86\n" "systems running the kernel Linux. It can also perform user-defined tasks, such\n" @@ -9699,13 +9816,13 @@ msgid "" "exceeded." msgstr "" -#: gnu/packages/linux.scm:6596 +#: gnu/packages/linux.scm:6640 msgid "" "This package provides utilities for testing, partitioning, etc\n" "of flash storage." msgstr "" -#: gnu/packages/linux.scm:6628 +#: gnu/packages/linux.scm:6672 msgid "" "The libseccomp library provides an easy to use, platform\n" "independent, interface to the Linux Kernel's syscall filtering mechanism. The\n" @@ -9715,7 +9832,7 @@ msgid "" "developers." msgstr "" -#: gnu/packages/linux.scm:6671 +#: gnu/packages/linux.scm:6715 msgid "" "RadeonTop monitors resource consumption on supported AMD\n" "Radeon Graphics Processing Units (GPUs), either in real time as bar graphs on\n" @@ -9725,13 +9842,13 @@ msgid "" "under OpenGL graphics workloads." msgstr "" -#: gnu/packages/linux.scm:6718 +#: gnu/packages/linux.scm:6762 msgid "" "This package provides a library and a command line\n" "interface to the variable facility of UEFI boot firmware." msgstr "" -#: gnu/packages/linux.scm:6755 +#: gnu/packages/linux.scm:6799 msgid "" "@code{efibootmgr} is a user-space application to modify the Intel\n" "Extensible Firmware Interface (EFI) Boot Manager. This application can\n" @@ -9739,7 +9856,7 @@ msgid "" "running boot option, and more." msgstr "" -#: gnu/packages/linux.scm:6791 +#: gnu/packages/linux.scm:6835 msgid "" "The sysstat utilities are a collection of performance\n" "monitoring tools for Linux. These include @code{mpstat}, @code{iostat},\n" @@ -9747,7 +9864,7 @@ msgid "" "@code{sadf} and @code{sa}." msgstr "" -#: gnu/packages/linux.scm:6832 +#: gnu/packages/linux.scm:6876 msgid "" "Light is a program to send commands to screen backlight controllers\n" "under GNU/Linux. Features include:\n" @@ -9761,7 +9878,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/linux.scm:6880 +#: gnu/packages/linux.scm:6924 msgid "" "This program allows you read and control device brightness. Devices\n" "include backlight and LEDs. It can also preserve current brightness before\n" @@ -9771,7 +9888,7 @@ msgid "" "interface in sysfs, which can be accomplished with the included udev rules." msgstr "" -#: gnu/packages/linux.scm:7007 +#: gnu/packages/linux.scm:7048 msgid "" "TLP is a power management tool for Linux. It comes with\n" "a default configuration already optimized for battery life. Nevertheless,\n" @@ -9779,7 +9896,7 @@ msgid "" "every time the power supply source is changed." msgstr "" -#: gnu/packages/linux.scm:7073 +#: gnu/packages/linux.scm:7114 msgid "" "The Python scripts in this project generate a GTK-UI to change\n" "TLP configuration files easily. It aims to protect users from setting\n" @@ -9787,7 +9904,7 @@ msgid "" "configuration values." msgstr "" -#: gnu/packages/linux.scm:7099 +#: gnu/packages/linux.scm:7140 msgid "" "@command{lshw} (Hardware Lister) is a small tool to provide\n" "detailed information on the hardware configuration of the machine.\n" @@ -9797,7 +9914,7 @@ msgid "" "machines (PowerMac G4 is known to work)." msgstr "" -#: gnu/packages/linux.scm:7123 +#: gnu/packages/linux.scm:7164 msgid "" "Libmnl is a minimalistic user-space library oriented to\n" "Netlink developers. There are a lot of common tasks in parsing, validating,\n" @@ -9806,7 +9923,7 @@ msgid "" "re-use code and to avoid re-inventing the wheel." msgstr "" -#: gnu/packages/linux.scm:7148 +#: gnu/packages/linux.scm:7189 msgid "" "Libnftnl is a userspace library providing a low-level netlink\n" "programming interface to the in-kernel nf_tables subsystem. The library\n" @@ -9814,7 +9931,7 @@ msgid "" "used by nftables." msgstr "" -#: gnu/packages/linux.scm:7194 +#: gnu/packages/linux.scm:7235 msgid "" "nftables is the project that aims to replace the existing\n" "{ip,ip6,arp,eb}tables framework. Basically, this project provides a new packet\n" @@ -9824,7 +9941,7 @@ msgid "" "userspace queueing component and the logging subsystem." msgstr "" -#: gnu/packages/linux.scm:7336 +#: gnu/packages/linux.scm:7377 msgid "" "PRoot is a user-space implementation of @code{chroot}, @code{mount --bind},\n" "and @code{binfmt_misc}. This means that users don't need any privileges or\n" @@ -9837,7 +9954,7 @@ msgid "" "available in the kernel Linux." msgstr "" -#: gnu/packages/linux.scm:7399 +#: gnu/packages/linux.scm:7437 msgid "" "cpuid dumps detailed information about the CPU(s) gathered\n" "from the CPUID instruction, and also determines the exact model of CPU(s). It\n" @@ -9845,14 +9962,14 @@ msgid "" "NexGen, Rise, and SiS CPUs." msgstr "" -#: gnu/packages/linux.scm:7426 +#: gnu/packages/linux.scm:7464 msgid "" "jmtpfs uses FUSE (file system in userspace) to provide access\n" "to data over the Media Transfer Protocol (MTP). Unprivileged users can mount\n" "the MTP device as a file system." msgstr "" -#: gnu/packages/linux.scm:7453 +#: gnu/packages/linux.scm:7491 msgid "" "Procenv is a command-line tool that displays as much detail about\n" "itself and its environment as possible. It can be used as a test\n" @@ -9860,7 +9977,7 @@ msgid "" "comparing system environments." msgstr "" -#: gnu/packages/linux.scm:7482 +#: gnu/packages/linux.scm:7520 msgid "" "OpenFabrics Interfaces (OFI) is a framework focused on exporting fabric\n" "communication services to applications. OFI is best described as a collection\n" @@ -9874,7 +9991,7 @@ msgid "" "libraries, which are often integrated directly into libfabric." msgstr "" -#: gnu/packages/linux.scm:7544 +#: gnu/packages/linux.scm:7582 msgid "" "The PSM Messaging API, or PSM API, is Intel's low-level user-level\n" "communications interface for the True Scale family of products. PSM users are\n" @@ -9882,14 +9999,14 @@ msgid "" "interfaces in parallel environments." msgstr "" -#: gnu/packages/linux.scm:7587 +#: gnu/packages/linux.scm:7625 msgid "" "snapscreenshot saves a screenshot of one or more Linux text consoles as a\n" "Targa (@dfn{.tga}) image. It can be used by anyone with read access to the\n" "relevant @file{/dev/vcs*} file(s)." msgstr "" -#: gnu/packages/linux.scm:7641 +#: gnu/packages/linux.scm:7679 msgid "" "fbcat saves the contents of the Linux framebuffer (@file{/dev/fb*}), or\n" "a dump therof. It supports a wide range of drivers and pixel formats.\n" @@ -9901,14 +10018,14 @@ msgid "" "emulates the behaviour of Gunnar Monell's older fbgrab utility." msgstr "" -#: gnu/packages/linux.scm:7672 +#: gnu/packages/linux.scm:7710 msgid "" "Control groups is Linux kernel method for process resource\n" "restriction, permission handling and more. This package provides userspace\n" "interface to this kernel feature." msgstr "" -#: gnu/packages/linux.scm:7707 +#: gnu/packages/linux.scm:7745 msgid "" "mbpfan is a fan control daemon for Apple Macbooks. It uses input from\n" "the @code{coretemp} module and sets the fan speed using the @code{applesmc}\n" @@ -9916,7 +10033,7 @@ msgid "" "privileges." msgstr "" -#: gnu/packages/linux.scm:7751 +#: gnu/packages/linux.scm:7789 msgid "" "This package is low-level user-level Intel's communications interface.\n" "The PSM2 API is a high-performance vendor-specific protocol that provides a\n" @@ -9924,7 +10041,7 @@ msgid "" "high-speed networking devices." msgstr "" -#: gnu/packages/linux.scm:7794 +#: gnu/packages/linux.scm:7832 msgid "" "This package provides a library called libpfm4, which is used to develop\n" "monitoring tools exploiting the performance monitoring events such as those\n" @@ -9939,7 +10056,7 @@ msgid "" "introduced in Linux 2.6.31." msgstr "" -#: gnu/packages/linux.scm:7824 +#: gnu/packages/linux.scm:7862 msgid "" "@code{libnfnetlink} is the low-level library for netfilter related\n" "kernel/userspace communication. It provides a generic messaging\n" @@ -9948,7 +10065,7 @@ msgid "" "management tools in userspace." msgstr "" -#: gnu/packages/linux.scm:7851 +#: gnu/packages/linux.scm:7889 msgid "" "The netlink package provides a simple netlink library for\n" "Go. Netlink is the interface a user-space program in Linux uses to\n" @@ -9956,7 +10073,7 @@ msgid "" "IP addresses and routes, and configure IPsec." msgstr "" -#: gnu/packages/linux.scm:7891 +#: gnu/packages/linux.scm:7929 msgid "" "The inih (INI Not Invented Here) library is a simple .INI file\n" "parser written in C. It's only a couple of pages of code, and it was designed to\n" @@ -9965,19 +10082,19 @@ msgid "" "822-style multi-line syntax and name: value entries." msgstr "" -#: gnu/packages/linux.scm:7942 +#: gnu/packages/linux.scm:7980 msgid "" "This package provides commands to create and check XFS\n" "file systems." msgstr "" -#: gnu/packages/linux.scm:7998 +#: gnu/packages/linux.scm:8036 msgid "" "This package provides a statically linked @command{xfs_repair} taken\n" "from the xfsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:8034 +#: gnu/packages/linux.scm:8072 msgid "" "This package provides a program to generate an ext2\n" "file system as a normal (non-root) user. It does not require you to mount\n" @@ -9985,7 +10102,7 @@ msgid "" "the superuser to make device nodes." msgstr "" -#: gnu/packages/linux.scm:8129 +#: gnu/packages/linux.scm:8167 msgid "" "@command{fakeroot} runs a command in an environment where it appears to\n" "have root privileges for file manipulation. This is useful for allowing users\n" @@ -9998,7 +10115,7 @@ msgid "" "without using the archiver." msgstr "" -#: gnu/packages/linux.scm:8169 +#: gnu/packages/linux.scm:8207 msgid "" "@command{fakechroot} runs a command in an environment were is additional\n" "possibility to use @code{chroot} command without root privileges. This is\n" @@ -10009,13 +10126,13 @@ msgid "" "set as @code{LD_PRELOAD} to override the C library file system functions." msgstr "" -#: gnu/packages/linux.scm:8215 +#: gnu/packages/linux.scm:8253 msgid "" "inputattach dispatches input events from several device\n" "types and interfaces and translates so that the X server can use them." msgstr "" -#: gnu/packages/linux.scm:8251 +#: gnu/packages/linux.scm:8289 msgid "" "PipeWire is a project that aims to greatly improve handling of audio and\n" "video under Linux. It aims to support the usecases currently handled by both\n" @@ -10027,7 +10144,7 @@ msgid "" "of Linux application development." msgstr "" -#: gnu/packages/linux.scm:8318 +#: gnu/packages/linux.scm:8356 msgid "" "WirePlumber is a modular session / policy manager for\n" "PipeWire and a GObject-based high-level library that wraps PipeWire's API,\n" @@ -10035,7 +10152,7 @@ msgid "" "tools for managing PipeWire." msgstr "" -#: gnu/packages/linux.scm:8357 +#: gnu/packages/linux.scm:8395 msgid "" "The Embedded Linux* Library (ELL) provides core, low-level\n" "functionality for system daemons. It typically has no dependencies other than\n" @@ -10044,7 +10161,7 @@ msgid "" "platforms, it is not limited to resource-constrained systems." msgstr "" -#: gnu/packages/linux.scm:8386 +#: gnu/packages/linux.scm:8424 msgid "" "This package provides the @code{kexec} program and ancillary\n" "utilities. Using @code{kexec}, it is possible to boot directly into a new\n" @@ -10052,7 +10169,7 @@ msgid "" "system boot process." msgstr "" -#: gnu/packages/linux.scm:8419 +#: gnu/packages/linux.scm:8457 msgid "" "@code{cachefilesd} is a userspace daemon that manages the\n" "cache data store that is used by network file systems such as @code{AFS} and\n" @@ -10060,14 +10177,14 @@ msgid "" "persistent over reboots." msgstr "" -#: gnu/packages/linux.scm:8463 +#: gnu/packages/linux.scm:8501 msgid "" "Libbpf supports building BPF CO-RE-enabled applications, which, in\n" "contrast to BCC, do not require the Clang/LLVM runtime or linux kernel\n" "headers." msgstr "" -#: gnu/packages/linux.scm:8541 +#: gnu/packages/linux.scm:8579 msgid "" "BCC is a toolkit for creating efficient kernel tracing and manipulation\n" "programs, and includes several useful tools and examples. It makes use of\n" @@ -10076,7 +10193,7 @@ msgid "" "and above." msgstr "" -#: gnu/packages/linux.scm:8577 +#: gnu/packages/linux.scm:8615 msgid "" "bpftrace is a high-level tracing language for Linux enhanced Berkeley\n" "Packet Filter (eBPF) available in recent Linux kernels (4.x). bpftrace uses\n" @@ -10088,14 +10205,14 @@ msgid "" "created by Alastair Robertson." msgstr "" -#: gnu/packages/linux.scm:8609 +#: gnu/packages/linux.scm:8647 msgid "" "This package provides a Linux kernel module that will\n" "provide a serial device @code{/dev/ttyebus} with almost no latency upon\n" "receiving. It is dedicated to the PL011 UART of the Raspberry Pi." msgstr "" -#: gnu/packages/linux.scm:8635 +#: gnu/packages/linux.scm:8673 msgid "" "IP sets are a framework inside the Linux 2.4.x and 2.6.x kernel which\n" "can be administered by the ipset utility. Depending on the type,\n" @@ -10116,7 +10233,7 @@ msgid "" "then IP sets may be the proper tool for you." msgstr "" -#: gnu/packages/linux.scm:8682 +#: gnu/packages/linux.scm:8720 msgid "" "This is the io_uring library, liburing. liburing provides\n" "helpers to setup and teardown io_uring instances, and also a simplified\n" @@ -10124,14 +10241,14 @@ msgid "" "kernel side implementation." msgstr "" -#: gnu/packages/linux.scm:8710 +#: gnu/packages/linux.scm:8748 msgid "" "@acronym{EROFS, The Enhanced Read-Only File System} is a compressed,\n" "read-only file system optimized for resource-scarce devices. This package\n" "provides user-space tools for creating EROFS file systems." msgstr "" -#: gnu/packages/linux.scm:8754 +#: gnu/packages/linux.scm:8792 msgid "" "The @code{rasdaemon} daemon monitors platform @acronym{RAS, Reliability\n" "Availability and Serviceability} reports from Linux kernel trace events.\n" @@ -10139,7 +10256,7 @@ msgid "" "through standard log mechanisms like syslog." msgstr "" -#: gnu/packages/linux.scm:8788 +#: gnu/packages/linux.scm:8826 msgid "" "This package provides a C library with C++/Python bindings and\n" "command-line tools for interacting with GPIO devices that avoids the usage of\n" @@ -10181,33 +10298,33 @@ msgstr "" "Lout é uma linguagem puramente funcional de alto nível, sendo o resultado de\n" "oito anos de um projeto de pesquisa que voltou para o começo." -#: gnu/packages/messaging.scm:181 +#: gnu/packages/messaging.scm:183 msgid "" "OMEMO-wget is a tool to handle cryptographic URLs, generated\n" "by @acronym{OMEMO, OMEMO Multi-End Message and Object Encryption}, during\n" "XMPP-based sessions." msgstr "" -#: gnu/packages/messaging.scm:237 +#: gnu/packages/messaging.scm:239 msgid "" "Psi is a capable XMPP client aimed at experienced users.\n" "Its design goals are simplicity and stability." msgstr "" -#: gnu/packages/messaging.scm:295 +#: gnu/packages/messaging.scm:297 msgid "" "GNT is an ncurses toolkit for creating text-mode graphical\n" "user interfaces in a fast and easy way. It is based on GLib and ncurses." msgstr "" -#: gnu/packages/messaging.scm:346 +#: gnu/packages/messaging.scm:348 msgid "" "LibGadu is library for handling Gadu-Gadu instant messenger\n" "protocol. The library is written in C and aims to be operating system and\n" "environment independent." msgstr "" -#: gnu/packages/messaging.scm:381 +#: gnu/packages/messaging.scm:383 msgid "" "SILC (Secure Internet Live Conferencing) is a modern and secure\n" "conferencing protocol. It provides all the common conferencing services like\n" @@ -10215,14 +10332,14 @@ msgid "" "conferencing." msgstr "" -#: gnu/packages/messaging.scm:427 +#: gnu/packages/messaging.scm:429 msgid "" "QXmpp is a XMPP client and server library written in C++ and uses the Qt\n" "framework. It builds XMPP clients complying with the XMPP Compliance Suites\n" "2021 for IM and Advanced Mobile." msgstr "" -#: gnu/packages/messaging.scm:454 +#: gnu/packages/messaging.scm:456 msgid "" "Meanwhile is a library for connecting to a LIM (Lotus Instant\n" "Messaging, formerly Lotus Sametime, formerly VPBuddy) community. It uses a\n" @@ -10230,7 +10347,7 @@ msgid "" "TCP sessions from existing clients." msgstr "" -#: gnu/packages/messaging.scm:500 +#: gnu/packages/messaging.scm:502 msgid "" "Poezio is a free console XMPP client (the protocol on which\n" "the Jabber IM network is built).\n" @@ -10243,7 +10360,7 @@ msgid "" "powerful, standard and open protocol." msgstr "" -#: gnu/packages/messaging.scm:533 +#: gnu/packages/messaging.scm:535 msgid "" "OTR allows you to have private conversations over instant\n" "messaging by providing: (1) Encryption: No one else can read your instant\n" @@ -10256,7 +10373,7 @@ msgid "" "your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:572 +#: gnu/packages/messaging.scm:574 msgid "" "libsignal-protocol-c is an implementation of a ratcheting\n" "forward secrecy protocol that works in synchronous and asynchronous\n" @@ -10264,20 +10381,20 @@ msgid "" "end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:609 +#: gnu/packages/messaging.scm:611 msgid "" "This is a client library for @code{libsignal-protocol-c}.\n" "It implements the necessary interfaces using @code{libgcrypt} and\n" "@code{sqlite}." msgstr "" -#: gnu/packages/messaging.scm:641 +#: gnu/packages/messaging.scm:643 msgid "" "This library implements @acronym{OMEMO, OMEMO Multi-End\n" "Message and Object Encryption} of XMPP (XEP-0384) in C." msgstr "" -#: gnu/packages/messaging.scm:681 +#: gnu/packages/messaging.scm:683 msgid "" "BitlBee brings IM (instant messaging) to IRC clients, for\n" "people who have an IRC client running all the time and don't want to run an\n" @@ -10287,20 +10404,20 @@ msgid "" "identi.ca and status.net)." msgstr "" -#: gnu/packages/messaging.scm:748 +#: gnu/packages/messaging.scm:750 msgid "" "Bitlbee-discord is a plugin for Bitlbee which provides\n" "access to servers running the Discord protocol." msgstr "" -#: gnu/packages/messaging.scm:794 +#: gnu/packages/messaging.scm:796 msgid "" "Purple-Mattermost is a plug-in for Purple, the instant messaging library\n" "used by Pidgin and Bitlbee, among others, to access\n" "@uref{https://mattermost.com/, Mattermost} servers." msgstr "" -#: gnu/packages/messaging.scm:852 +#: gnu/packages/messaging.scm:854 msgid "" "HexChat lets you connect to multiple IRC networks at once. The main\n" "window shows the list of currently connected networks and their channels, the\n" @@ -10309,7 +10426,7 @@ msgid "" "dictionaries. HexChat can be extended with multiple addons." msgstr "" -#: gnu/packages/messaging.scm:917 +#: gnu/packages/messaging.scm:919 msgid "" "ngIRCd is a lightweight @dfn{Internet Relay Chat} (IRC) server for small\n" "or private networks. It is easy to configure, can cope with dynamic IP\n" @@ -10317,13 +10434,13 @@ msgid "" "authentication." msgstr "" -#: gnu/packages/messaging.scm:1024 +#: gnu/packages/messaging.scm:1026 msgid "" "Pidgin is a modular instant messaging client that supports\n" "many popular chat protocols." msgstr "" -#: gnu/packages/messaging.scm:1064 +#: gnu/packages/messaging.scm:1066 msgid "" "Pidgin-OTR is a plugin that adds support for OTR to the Pidgin\n" "instant messaging client. OTR (Off-the-Record) Messaging allows you to have\n" @@ -10337,7 +10454,7 @@ msgid "" "control of your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:1118 +#: gnu/packages/messaging.scm:1120 msgid "" "ZNC is an @dfn{IRC network bouncer} or @dfn{BNC}. It can\n" "detach the client from the actual IRC server, and also from selected channels.\n" @@ -10345,41 +10462,41 @@ msgid "" "simultaneously and therefore appear under the same nickname on IRC." msgstr "" -#: gnu/packages/messaging.scm:1147 +#: gnu/packages/messaging.scm:1149 msgid "" "Python-nbxmpp is a Python library that provides a way for\n" "Python applications to use the XMPP network. This library was initially a fork\n" "of xmpppy." msgstr "" -#: gnu/packages/messaging.scm:1274 +#: gnu/packages/messaging.scm:1276 msgid "" "Gajim aims to be an easy to use and fully-featured XMPP chat\n" "client. It is extensible via plugins, supports end-to-end encryption (OMEMO\n" "and OpenPGP) and available in 29 languages." msgstr "" -#: gnu/packages/messaging.scm:1309 +#: gnu/packages/messaging.scm:1311 msgid "" "Gajim-OMEMO is a plugin that adds support for the OMEMO\n" "Encryption to Gajim. OMEMO is an XMPP Extension Protocol (XEP) for secure\n" "multi-client end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:1344 +#: gnu/packages/messaging.scm:1346 msgid "" "Gajim-OpenPGP is a plugin that adds support for the OpenPGP\n" "Encryption to Gajim." msgstr "" -#: gnu/packages/messaging.scm:1418 +#: gnu/packages/messaging.scm:1420 msgid "" "Dino is a chat client for the desktop. It focuses on providing\n" "a minimal yet reliable Jabber/XMPP experience and having encryption enabled by\n" "default." msgstr "" -#: gnu/packages/messaging.scm:1505 +#: gnu/packages/messaging.scm:1507 msgid "" "Prosody is a modern XMPP communication server. It aims to\n" "be easy to set up and configure, and efficient with system resources.\n" @@ -10388,43 +10505,43 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/messaging.scm:1540 +#: gnu/packages/messaging.scm:1542 msgid "" "This module implements XEP-0363: it allows clients to\n" "upload files over HTTP." msgstr "" -#: gnu/packages/messaging.scm:1572 +#: gnu/packages/messaging.scm:1574 msgid "" "This module implements XEP-0198: when supported by both\n" "the client and server, it can allow clients to resume a disconnected session,\n" "and prevent message loss." msgstr "" -#: gnu/packages/messaging.scm:1601 +#: gnu/packages/messaging.scm:1603 msgid "C library implementation of the Tox encrypted messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1633 +#: gnu/packages/messaging.scm:1635 msgid "" "Official fork of the C library implementation of the Tox encrypted\n" "messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1687 +#: gnu/packages/messaging.scm:1689 msgid "" "uTox is a lightweight Tox client. Tox is a distributed and secure\n" "instant messenger with audio and video chat capabilities." msgstr "" -#: gnu/packages/messaging.scm:1750 +#: gnu/packages/messaging.scm:1752 msgid "" "qTox is a Tox client that follows the Tox design\n" "guidelines. It provides an easy to use application that allows you to\n" "connect with friends and family without anyone else listening in." msgstr "" -#: gnu/packages/messaging.scm:1772 +#: gnu/packages/messaging.scm:1774 msgid "" "Ytalk is a replacement for the BSD talk program. Its main\n" "advantage is the ability to communicate with any arbitrary number of users at\n" @@ -10432,7 +10549,7 @@ msgid "" "with several different talk daemons at the same time." msgstr "" -#: gnu/packages/messaging.scm:1796 +#: gnu/packages/messaging.scm:1798 msgid "" "gloox is a full-featured Jabber/XMPP client library,\n" "written in ANSI C++. It makes writing spec-compliant clients easy\n" @@ -10440,7 +10557,7 @@ msgid "" "into existing applications." msgstr "" -#: gnu/packages/messaging.scm:1866 +#: gnu/packages/messaging.scm:1868 msgid "" "@code{Net::PSYC} with support for TCP, UDP, Event.pm, @code{IO::Select} and\n" "Gtk2 event loops. This package includes 12 applications and additional scripts:\n" @@ -10448,14 +10565,14 @@ msgid "" "for @uref{https://torproject.org,tor} router) and many more." msgstr "" -#: gnu/packages/messaging.scm:1907 +#: gnu/packages/messaging.scm:1909 msgid "" "@code{libpsyc} is a PSYC library in C which implements\n" "core aspects of PSYC, useful for all kinds of clients and servers\n" "including psyced." msgstr "" -#: gnu/packages/messaging.scm:1949 +#: gnu/packages/messaging.scm:1951 msgid "" "Loudmouth is a lightweight and easy-to-use C library for programming\n" "with the XMPP (formerly known as Jabber) protocol. It is designed to be\n" @@ -10463,7 +10580,7 @@ msgid "" "protocol allows." msgstr "" -#: gnu/packages/messaging.scm:1991 +#: gnu/packages/messaging.scm:1993 msgid "" "Mcabber is a small XMPP (Jabber) console client, which includes features\n" "such as SASL and TLS support, @dfn{Multi-User Chat} (MUC) support, logging,\n" @@ -10471,7 +10588,7 @@ msgid "" "support, and more." msgstr "" -#: gnu/packages/messaging.scm:2039 +#: gnu/packages/messaging.scm:2041 msgid "" "GNU Freetalk is a command-line Jabber/XMPP chat client. It notably uses\n" "the Readline library to handle input, so it features convenient navigation of\n" @@ -10479,27 +10596,27 @@ msgid "" "is also scriptable and extensible via Guile." msgstr "" -#: gnu/packages/messaging.scm:2074 +#: gnu/packages/messaging.scm:2076 msgid "" "Libmesode is a fork of libstrophe for use with Profanity\n" "XMPP Client. In particular, libmesode provides extra TLS functionality such as\n" "manual SSL certificate verification." msgstr "" -#: gnu/packages/messaging.scm:2109 +#: gnu/packages/messaging.scm:2111 msgid "" "Libstrophe is a minimal XMPP library written in C. It has\n" "almost no external dependencies, only an XML parsing library (expat or libxml\n" "are both supported)." msgstr "" -#: gnu/packages/messaging.scm:2167 +#: gnu/packages/messaging.scm:2169 msgid "" "Profanity is a console based XMPP client written in C\n" "using ncurses and libmesode, inspired by Irssi." msgstr "" -#: gnu/packages/messaging.scm:2197 +#: gnu/packages/messaging.scm:2199 msgid "" "Libircclient is a library which implements the client IRC\n" "protocol. It is designed to be small, fast, portable and compatible with the\n" @@ -10507,14 +10624,14 @@ msgid "" "building the IRC clients and bots." msgstr "" -#: gnu/packages/messaging.scm:2255 +#: gnu/packages/messaging.scm:2257 msgid "" "Toxic is a console-based instant messaging client, using\n" "c-toxcore and ncurses. It provides audio calls, sound and desktop\n" "notifications, and Python scripting support." msgstr "" -#: gnu/packages/messaging.scm:2281 +#: gnu/packages/messaging.scm:2283 msgid "" "libqmatrixclient is a Qt5 library to write clients for the\n" "Matrix instant messaging protocol. Quaternion is the reference client\n" @@ -10522,13 +10639,13 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2326 +#: gnu/packages/messaging.scm:2330 msgid "" "@code{mtxclient} is a C++ library that implements client API\n" "for the Matrix protocol. It is built on to of @code{Boost.Asio}." msgstr "" -#: gnu/packages/messaging.scm:2418 +#: gnu/packages/messaging.scm:2423 msgid "" "@code{Nheko} want to provide a native desktop app for the\n" "Matrix protocol that feels more like a mainstream chat app and less like an IRC\n" @@ -10538,7 +10655,7 @@ msgid "" "notification, emojis, E2E encryption, and voip calls." msgstr "" -#: gnu/packages/messaging.scm:2455 +#: gnu/packages/messaging.scm:2460 msgid "" "Quaternion is a Qt5 desktop client for the Matrix instant\n" "messaging protocol. It uses libqmatrixclient and is its reference client\n" @@ -10546,7 +10663,7 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2502 +#: gnu/packages/messaging.scm:2507 msgid "" "Hangups is an instant messaging client for Google Hangouts. It includes\n" "both a Python library and a reference client with a text-based user interface.\n" @@ -10556,7 +10673,7 @@ msgid "" "messaging that aren’t available to clients that connect over XMPP." msgstr "" -#: gnu/packages/messaging.scm:2584 +#: gnu/packages/messaging.scm:2589 msgid "" "Telegram-purple is a plugin for Libpurple, the communication library\n" "used by the Pidgin instant messaging client, that adds support for the\n" @@ -10566,7 +10683,7 @@ msgid "" "replacement." msgstr "" -#: gnu/packages/messaging.scm:2629 +#: gnu/packages/messaging.scm:2632 msgid "" "Tdlib is a cross-platform library for creating custom\n" "Telegram clients following the official Telegram API. It can be easily used\n" @@ -10574,11 +10691,11 @@ msgid "" "support for high performance Telegram Bot creation." msgstr "" -#: gnu/packages/messaging.scm:2667 +#: gnu/packages/messaging.scm:2670 msgid "Plugin for libpurple to allow sending SMS using ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2712 +#: gnu/packages/messaging.scm:2715 msgid "" "Purple-lurch plugin adds end-to-end encryption support\n" "through the Double Ratchet (Axolotl) algorithm, to @code{libpurple}\n" @@ -10589,19 +10706,19 @@ msgid "" "asynchronicity." msgstr "" -#: gnu/packages/messaging.scm:2748 +#: gnu/packages/messaging.scm:2751 msgid "" "This package provides a C++ library for parsing, formatting, and\n" "validating international phone numbers." msgstr "" -#: gnu/packages/messaging.scm:2793 +#: gnu/packages/messaging.scm:2796 msgid "" "Chatty is a chat program for XMPP and SMS. It works on mobile\n" "as well as on desktop platforms. It's based on libpurple and ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2814 +#: gnu/packages/messaging.scm:2817 msgid "" "This package provides Eclipse Mosquitto, a message broker\n" "that implements the MQTT protocol versions 5.0, 3.1.1 and 3.1. Mosquitto\n" @@ -10614,27 +10731,27 @@ msgid "" "as phones, embedded computers or microcontrollers." msgstr "" -#: gnu/packages/messaging.scm:2864 +#: gnu/packages/messaging.scm:2867 msgid "" "Movim-Desktop is a desktop application, relying on Qt, for the Movim\n" "social and chat platform." msgstr "" -#: gnu/packages/messaging.scm:2999 +#: gnu/packages/messaging.scm:3002 msgid "" "Psi+ is a spin-off of Psi XMPP client. It is a powerful XMPP client\n" "designed for experienced users." msgstr "" -#: gnu/packages/messaging.scm:3039 +#: gnu/packages/messaging.scm:3042 msgid "This package provides Python bindings to Zulip's API." msgstr "" -#: gnu/packages/messaging.scm:3088 +#: gnu/packages/messaging.scm:3091 msgid "This package contains Zulip's official terminal client." msgstr "" -#: gnu/packages/messaging.scm:3110 +#: gnu/packages/messaging.scm:3113 msgid "" "Relays messages between different channels from various\n" "messaging networks and protocols. So far it supports mattermost, IRC, gitter,\n" @@ -10643,20 +10760,20 @@ msgid "" "API. Mattermost is not required." msgstr "" -#: gnu/packages/messaging.scm:3143 +#: gnu/packages/messaging.scm:3146 msgid "" "@command{pounce} is a multi-client, TLS-only IRC bouncer. It maintains\n" "a persistent connection to an IRC server, acting as a proxy and buffer for\n" "a number of clients." msgstr "" -#: gnu/packages/messaging.scm:3209 +#: gnu/packages/messaging.scm:3212 msgid "" "@code{weechat-matrix} is a Python plugin for Weechat that lets\n" "Weechat communicate over the Matrix protocol." msgstr "" -#: gnu/packages/messaging.scm:3256 +#: gnu/packages/messaging.scm:3259 msgid "" "@code{weechat-wee-slack} is a WeeChat native client for\n" "Slack. It provides supplemental features only available in the web/mobile\n" @@ -10765,14 +10882,14 @@ msgid "" "themselves." msgstr "" -#: gnu/packages/networking.scm:174 +#: gnu/packages/networking.scm:176 msgid "" "UsrSCTP is a portable SCTP userland stack. SCTP is a message\n" "oriented, reliable transport protocol with direct support for multihoming that\n" "runs on top of IP or UDP, and supports both v4 and v6 versions." msgstr "" -#: gnu/packages/networking.scm:199 +#: gnu/packages/networking.scm:201 msgid "" "Axel tries to accelerate the download process by using multiple\n" "connections per file, and can also balance the load between different\n" @@ -10781,38 +10898,38 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/networking.scm:264 +#: gnu/packages/networking.scm:266 msgid "" "LibCamera is a complex camera support library for GNU+Linux,\n" "Android, and ChromeOS." msgstr "" -#: gnu/packages/networking.scm:334 +#: gnu/packages/networking.scm:336 msgid "" "LibNice is a library that implements the Interactive\n" "Connectivity Establishment (ICE) standard (RFC 5245 & RFC 8445). It provides a\n" "GLib-based library, libnice, as well as GStreamer elements to use it." msgstr "" -#: gnu/packages/networking.scm:393 +#: gnu/packages/networking.scm:395 msgid "" "RTMPdump is a toolkit for RTMP streams. All forms of RTMP are\n" "supported, including rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps://." msgstr "" -#: gnu/packages/networking.scm:422 +#: gnu/packages/networking.scm:424 msgid "" "Slurm is a network load monitor. It shows real-time traffic statistics\n" "from any network device in any of three ASCII graph formats." msgstr "" -#: gnu/packages/networking.scm:457 +#: gnu/packages/networking.scm:459 msgid "" "SRT is a transport technology that optimizes streaming\n" "performance across unpredictable networks, such as the Internet." msgstr "" -#: gnu/packages/networking.scm:500 +#: gnu/packages/networking.scm:502 msgid "" "The lksctp-tools project provides a user-space library for @acronym{SCTP,\n" "the Stream Control Transmission Protocol} (@file{libsctp}) and C language header\n" @@ -10821,13 +10938,13 @@ msgid "" "It also includes some SCTP-related helper utilities." msgstr "" -#: gnu/packages/networking.scm:541 +#: gnu/packages/networking.scm:543 msgid "" "@code{pysctp} implements the SCTP socket API. You need a\n" "SCTP-aware kernel (most are)." msgstr "" -#: gnu/packages/networking.scm:565 +#: gnu/packages/networking.scm:567 msgid "" "@command{knockd} is a port-knock daemon. It listens to all traffic on\n" "an ethernet or PPP interface, looking for special \"knock\" sequences of @dfn{port-hits}\n" @@ -10835,7 +10952,7 @@ msgid "" "at the link-layer level." msgstr "" -#: gnu/packages/networking.scm:605 +#: gnu/packages/networking.scm:607 msgid "" "NNG project is a rewrite of the scalability protocols library\n" "known as libnanomsg, and adds significant new capabilities, while retaining\n" @@ -10844,7 +10961,7 @@ msgid "" "publish/subscribe, RPC-style request/reply, or service discovery." msgstr "" -#: gnu/packages/networking.scm:648 +#: gnu/packages/networking.scm:650 msgid "" "Nanomsg is a socket library that provides several common\n" "communication patterns. It aims to make the networking layer fast, scalable,\n" @@ -10852,14 +10969,14 @@ msgid "" "systems with no further dependencies." msgstr "" -#: gnu/packages/networking.scm:758 +#: gnu/packages/networking.scm:760 msgid "" "Blueman is a Bluetooth management utility using the Bluez\n" "D-Bus backend. It is designed to be easy to use for most common Bluetooth\n" "tasks." msgstr "" -#: gnu/packages/networking.scm:783 +#: gnu/packages/networking.scm:785 msgid "" "GNU MAC Changer is a utility for viewing and changing MAC\n" "addresses of networking devices. New addresses may be set explicitly or\n" @@ -10867,14 +10984,14 @@ msgid "" "or, more generally, MAC addresses of the same category of hardware." msgstr "" -#: gnu/packages/networking.scm:831 +#: gnu/packages/networking.scm:833 msgid "" "Miredo is an implementation (client, relay, server) of the Teredo\n" "specification, which provides IPv6 Internet connectivity to IPv6 enabled hosts\n" "residing in IPv4-only networks, even when they are behind a NAT device." msgstr "" -#: gnu/packages/networking.scm:851 +#: gnu/packages/networking.scm:853 msgid "" "NDisc6 is a collection of tools for IPv6 networking diagnostics.\n" "It includes the following programs:\n" @@ -10888,7 +11005,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:904 +#: gnu/packages/networking.scm:906 msgid "" "@command{parprouted} is a daemon for transparent IP (Layer@tie{}3)\n" "proxy ARP bridging. Unlike standard bridging, proxy ARP bridging can bridge\n" @@ -10898,7 +11015,14 @@ msgid "" "useful for making transparent firewalls." msgstr "" -#: gnu/packages/networking.scm:931 +#: gnu/packages/networking.scm:945 +msgid "" +"@command{pproxy} is an asynchronuous proxy server implemented with\n" +"Python 3 @code{asyncio}. Among the supported protocols are HTTP, SOCKS\n" +"and SSH, and it can use both TCP and UDP as transport mechanisms." +msgstr "" + +#: gnu/packages/networking.scm:969 msgid "" "socat is a relay for bidirectional data transfer between two independent\n" "data channels---files, pipes, devices, sockets, etc. It can create\n" @@ -10911,7 +11035,7 @@ msgid "" "or server shell scripts with network connections." msgstr "" -#: gnu/packages/networking.scm:962 +#: gnu/packages/networking.scm:1000 msgid "" "mbuffer is a tool for buffering data streams with a large set of features:\n" "\n" @@ -10927,14 +11051,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1058 +#: gnu/packages/networking.scm:1096 msgid "" "With this package you can monitor and filter incoming requests for\n" "network services. It includes a library which may be used by daemons to\n" "transparently check connection attempts against an access control list." msgstr "" -#: gnu/packages/networking.scm:1081 +#: gnu/packages/networking.scm:1119 msgid "" "The 0MQ lightweight messaging kernel is a library which extends the\n" "standard socket interfaces with features traditionally provided by specialized\n" @@ -10944,46 +11068,46 @@ msgid "" "more." msgstr "" -#: gnu/packages/networking.scm:1110 +#: gnu/packages/networking.scm:1148 msgid "" "czmq provides bindings for the ØMQ core API that hides the differences\n" "between different versions of ØMQ." msgstr "" -#: gnu/packages/networking.scm:1141 +#: gnu/packages/networking.scm:1179 msgid "" "This package provides header-only C++ bindings for ØMQ. The header\n" "files contain direct mappings of the abstractions provided by the ØMQ C API." msgstr "" -#: gnu/packages/networking.scm:1175 +#: gnu/packages/networking.scm:1213 msgid "" "@code{libnatpmp} is a portable and asynchronous implementation of\n" "the Network Address Translation - Port Mapping Protocol (NAT-PMP)\n" "written in the C programming language." msgstr "" -#: gnu/packages/networking.scm:1213 +#: gnu/packages/networking.scm:1251 msgid "" "librdkafka is a C library implementation of the Apache Kafka protocol,\n" "containing both Producer and Consumer support." msgstr "" -#: gnu/packages/networking.scm:1232 +#: gnu/packages/networking.scm:1270 msgid "" "libndp contains a library which provides a wrapper for IPv6 Neighbor\n" "Discovery Protocol. It also provides a tool named ndptool for sending and\n" "receiving NDP messages." msgstr "" -#: gnu/packages/networking.scm:1256 +#: gnu/packages/networking.scm:1294 msgid "" "ethtool can be used to query and change settings such as speed,\n" "auto-negotiation and checksum offload on many network devices, especially\n" "Ethernet devices." msgstr "" -#: gnu/packages/networking.scm:1298 +#: gnu/packages/networking.scm:1336 msgid "" "IFStatus is a simple, easy-to-use program for displaying commonly\n" "needed/wanted real-time traffic statistics of multiple network\n" @@ -10991,7 +11115,7 @@ msgid "" "intended as a substitute for the PPPStatus and EthStatus projects." msgstr "" -#: gnu/packages/networking.scm:1347 +#: gnu/packages/networking.scm:1385 msgid "" "This package contains a variety of tools for dealing with network\n" "configuration, troubleshooting, or servers. Utilities included are:\n" @@ -11012,7 +11136,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1388 +#: gnu/packages/networking.scm:1426 msgid "" "Nload is a console application which monitors network traffic and\n" "bandwidth usage in real time. It visualizes the in- and outgoing traffic using\n" @@ -11020,7 +11144,7 @@ msgid "" "and min/max network usage." msgstr "" -#: gnu/packages/networking.scm:1432 +#: gnu/packages/networking.scm:1470 msgid "" "Iodine tunnels IPv4 data through a DNS server. This\n" "can be useful in different situations where internet access is firewalled, but\n" @@ -11028,7 +11152,7 @@ msgid "" "and up to 1 Mbit/s downstream." msgstr "" -#: gnu/packages/networking.scm:1473 +#: gnu/packages/networking.scm:1511 msgid "" "whois searches for an object in a @dfn{WHOIS} (RFC 3912) database.\n" "It is commonly used to look up the registered users or assignees of an Internet\n" @@ -11040,14 +11164,14 @@ msgid "" "of the same name." msgstr "" -#: gnu/packages/networking.scm:1553 +#: gnu/packages/networking.scm:1591 msgid "" "Wireshark is a network protocol analyzer, or @dfn{packet\n" "sniffer}, that lets you capture and interactively browse the contents of\n" "network frames." msgstr "" -#: gnu/packages/networking.scm:1574 +#: gnu/packages/networking.scm:1613 msgid "" "fping is a ping-like program which uses @acronym{ICMP, Internet Control\n" "Message Protocol} echo requests to determine if a target host is responding.\n" @@ -11059,26 +11183,26 @@ msgid "" "round-robin fashion." msgstr "" -#: gnu/packages/networking.scm:1625 +#: gnu/packages/networking.scm:1664 msgid "" "This package provides a command-line client (@command{gandi}) to buy,\n" "manage, and delete Internet resources from Gandi.net such as domain names,\n" "virtual machines, and certificates." msgstr "" -#: gnu/packages/networking.scm:1651 +#: gnu/packages/networking.scm:1690 msgid "" "The netns package provides a simple interface for\n" "handling network namespaces in Go." msgstr "" -#: gnu/packages/networking.scm:1678 +#: gnu/packages/networking.scm:1717 msgid "" "This library provides methods for using the stream control\n" "transmission protocol (SCTP) in a Go application." msgstr "" -#: gnu/packages/networking.scm:1707 +#: gnu/packages/networking.scm:1746 msgid "" "httping measures how long it takes to connect to a web server, send an\n" "HTTP(S) request, and receive the reply headers. It is somewhat similar to\n" @@ -11087,7 +11211,7 @@ msgid "" "application stack itself." msgstr "" -#: gnu/packages/networking.scm:1746 +#: gnu/packages/networking.scm:1785 msgid "" "@command{httpstat} is a tool to visualize statistics from the\n" "@command{curl} HTTP client. It acts as a wrapper for @command{curl} and\n" @@ -11095,20 +11219,20 @@ msgid "" "TCP connection, TLS handshake and so on) in the terminal." msgstr "" -#: gnu/packages/networking.scm:1788 +#: gnu/packages/networking.scm:1827 msgid "" "Squid is a caching proxy for the Web supporting HTTP, HTTPS,\n" "FTP, and more. It reduces bandwidth and improves response times by caching and\n" "reusing frequently-requested web pages." msgstr "" -#: gnu/packages/networking.scm:1822 +#: gnu/packages/networking.scm:1861 msgid "" "Bandwidth Monitor NG is a small and simple console based\n" "live network and disk I/O bandwidth monitor." msgstr "" -#: gnu/packages/networking.scm:1874 +#: gnu/packages/networking.scm:1913 msgid "" "Aircrack-ng is a complete suite of tools to assess WiFi network\n" "security. It focuses on different areas of WiFi security: monitoring,\n" @@ -11116,14 +11240,14 @@ msgid "" "allows for heavy scripting." msgstr "" -#: gnu/packages/networking.scm:1903 +#: gnu/packages/networking.scm:1942 msgid "" "Pixiewps implements the pixie-dust attack to brute\n" "force the Wi-Fi Protected Setup (WPS) PIN by exploiting the low or\n" "non-existing entropy of some access points." msgstr "" -#: gnu/packages/networking.scm:1949 +#: gnu/packages/networking.scm:1988 msgid "" "Reaver performs a brute force attack against an access\n" "point's Wi-Fi Protected Setup (WPS) PIN. Once the PIN is found, the WPA\n" @@ -11131,7 +11255,7 @@ msgid "" "reconfigured." msgstr "" -#: gnu/packages/networking.scm:1974 +#: gnu/packages/networking.scm:2013 msgid "" "Danga::Socket is an abstract base class for objects backed by a socket\n" "which provides the basic framework for event-driven asynchronous IO, designed\n" @@ -11139,7 +11263,7 @@ msgid "" "loop." msgstr "" -#: gnu/packages/networking.scm:2000 +#: gnu/packages/networking.scm:2039 msgid "" "This module provides several IP address validation subroutines that both\n" "validate and untaint their input. This includes both basic validation\n" @@ -11148,62 +11272,62 @@ msgid "" "private (reserved)." msgstr "" -#: gnu/packages/networking.scm:2028 +#: gnu/packages/networking.scm:2067 msgid "Net::DNS is the Perl Interface to the Domain Name System." msgstr "" -#: gnu/packages/networking.scm:2060 +#: gnu/packages/networking.scm:2099 msgid "" "Socket6 binds the IPv6 related part of the C socket header\n" "definitions and structure manipulators for Perl." msgstr "" -#: gnu/packages/networking.scm:2087 +#: gnu/packages/networking.scm:2126 msgid "" "Net::DNS::Resolver::Programmable is a programmable DNS resolver for\n" "offline emulation of DNS." msgstr "" -#: gnu/packages/networking.scm:2109 +#: gnu/packages/networking.scm:2148 msgid "" "Net::DNS::Resolver::Mock is a subclass of Net::DNS::Resolver, but returns\n" "static data from any provided DNS zone file instead of querying the network.\n" "It is intended primarily for use in testing." msgstr "" -#: gnu/packages/networking.scm:2144 +#: gnu/packages/networking.scm:2183 msgid "NetAddr::IP manages IPv4 and IPv6 addresses and subsets." msgstr "" -#: gnu/packages/networking.scm:2177 +#: gnu/packages/networking.scm:2216 msgid "Net::Patricia does IP address lookups quickly in Perl." msgstr "" -#: gnu/packages/networking.scm:2198 +#: gnu/packages/networking.scm:2237 msgid "Net::CIDR::Lite merges IPv4 or IPv6 CIDR addresses." msgstr "" -#: gnu/packages/networking.scm:2225 +#: gnu/packages/networking.scm:2264 msgid "" "IO::Socket::INET6 is an interface for AF_INET/AF_INET6 domain\n" "sockets in Perl." msgstr "" -#: gnu/packages/networking.scm:2258 +#: gnu/packages/networking.scm:2293 msgid "" "Libproxy handles the details of HTTP/HTTPS proxy\n" "configuration for applications across all scenarios. Applications using\n" "libproxy only have to specify which proxy to use." msgstr "" -#: gnu/packages/networking.scm:2292 +#: gnu/packages/networking.scm:2327 msgid "" "Proxychains-ng is a preloader which hooks calls to sockets\n" "in dynamically linked programs and redirects them through one or more SOCKS or\n" "HTTP proxies." msgstr "" -#: gnu/packages/networking.scm:2314 +#: gnu/packages/networking.scm:2349 msgid "" "ENet's purpose is to provide a relatively thin, simple and robust network\n" "communication layer on top of UDP. The primary feature it provides is optional\n" @@ -11213,7 +11337,7 @@ msgid "" "library remains flexible, portable, and easily embeddable." msgstr "" -#: gnu/packages/networking.scm:2378 +#: gnu/packages/networking.scm:2413 msgid "" "sslh is a network protocol demultiplexer. It acts like a switchboard,\n" "accepting connections from clients on one port and forwarding them to different\n" @@ -11225,7 +11349,7 @@ msgid "" "that block port 22." msgstr "" -#: gnu/packages/networking.scm:2408 +#: gnu/packages/networking.scm:2443 msgid "" "iPerf is a tool to measure achievable bandwidth on IP networks. It\n" "supports tuning of various parameters related to timing, buffers and\n" @@ -11233,7 +11357,7 @@ msgid "" "the bandwidth, loss, and other parameters." msgstr "" -#: gnu/packages/networking.scm:2445 +#: gnu/packages/networking.scm:2480 msgid "" "NetHogs is a small 'net top' tool for Linux. Instead of\n" "breaking the traffic down per protocol or per subnet, like most tools do, it\n" @@ -11245,7 +11369,7 @@ msgid "" "gone wild and are suddenly taking up your bandwidth." msgstr "" -#: gnu/packages/networking.scm:2481 +#: gnu/packages/networking.scm:2516 msgid "" "NZBGet is a binary newsgrabber, which downloads files from Usenet based\n" "on information given in @code{nzb} files. NZBGet can be used in standalone\n" @@ -11255,7 +11379,7 @@ msgid "" "procedure calls (RPCs)." msgstr "" -#: gnu/packages/networking.scm:2562 +#: gnu/packages/networking.scm:2597 msgid "" "Open vSwitch is a multilayer virtual switch. It is designed to enable\n" "massive network automation through programmatic extension, while still\n" @@ -11263,27 +11387,27 @@ msgid "" "IPFIX, RSPAN, CLI, LACP, 802.1ag)." msgstr "" -#: gnu/packages/networking.scm:2585 +#: gnu/packages/networking.scm:2620 msgid "" "The @code{IP} class allows a comfortable parsing and\n" "handling for most notations in use for IPv4 and IPv6 addresses and\n" "networks." msgstr "" -#: gnu/packages/networking.scm:2610 +#: gnu/packages/networking.scm:2645 msgid "" "Command line interface for testing internet bandwidth using\n" "speedtest.net." msgstr "" -#: gnu/packages/networking.scm:2630 +#: gnu/packages/networking.scm:2668 msgid "" "This is a tftp client derived from OpenBSD tftp with some extra options\n" "added and bugs fixed. The source includes readline support but it is not\n" "enabled due to license conflicts between the BSD advertising clause and the GPL." msgstr "" -#: gnu/packages/networking.scm:2682 +#: gnu/packages/networking.scm:2720 msgid "" "Spiped (pronounced \"ess-pipe-dee\") is a utility for creating\n" "symmetrically encrypted and authenticated pipes between socket addresses, so\n" @@ -11293,7 +11417,7 @@ msgid "" "does not use SSH and requires a pre-shared symmetric key." msgstr "" -#: gnu/packages/networking.scm:2708 +#: gnu/packages/networking.scm:2746 msgid "" "Quagga is a routing software suite, providing implementations\n" "of OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4 for Unix platforms.\n" @@ -11305,14 +11429,14 @@ msgid "" "updates to the zebra daemon." msgstr "" -#: gnu/packages/networking.scm:2758 +#: gnu/packages/networking.scm:2796 msgid "" "The THC IPv6 Toolkit provides command-line tools and a library\n" "for researching IPv6 implementations and deployments. It requires Linux 2.6 or\n" "newer and only works on Ethernet network interfaces." msgstr "" -#: gnu/packages/networking.scm:2783 +#: gnu/packages/networking.scm:2821 msgid "" "bmon is a monitoring and debugging tool to capture\n" "networking-related statistics and prepare them visually in a human-friendly\n" @@ -11320,7 +11444,7 @@ msgid "" "interface and a programmable text output for scripting." msgstr "" -#: gnu/packages/networking.scm:2821 +#: gnu/packages/networking.scm:2859 msgid "" "Libnet provides a fairly portable framework for network packet\n" "construction and injection. It features portable packet creation interfaces\n" @@ -11329,7 +11453,7 @@ msgid "" "can be whipped up with little effort." msgstr "" -#: gnu/packages/networking.scm:2847 +#: gnu/packages/networking.scm:2885 msgid "" "@acronym{mtr, My TraceRoute} combines the functionality of the\n" "@command{traceroute} and @command{ping} programs in a single network diagnostic\n" @@ -11339,7 +11463,7 @@ msgid "" "displays the results in real time." msgstr "" -#: gnu/packages/networking.scm:2900 +#: gnu/packages/networking.scm:2938 msgid "" "aMule is an eMule-like client for the eD2k and Kademlia peer-to-peer\n" "file sharing networks. It includes a graphical user interface (GUI), a daemon\n" @@ -11348,7 +11472,7 @@ msgid "" "remotely." msgstr "" -#: gnu/packages/networking.scm:2922 +#: gnu/packages/networking.scm:2960 msgid "" "Zyre provides reliable group messaging over local area\n" "networks using zeromq. It has these key characteristics:\n" @@ -11365,13 +11489,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:2956 +#: gnu/packages/networking.scm:2994 msgid "" "This library allows controlling basic functions in SocketCAN\n" "from user-space. It requires a kernel built with SocketCAN support." msgstr "" -#: gnu/packages/networking.scm:2985 +#: gnu/packages/networking.scm:3023 msgid "" "This package provides CAN utilities in the following areas:\n" "\n" @@ -11387,14 +11511,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3021 +#: gnu/packages/networking.scm:3059 msgid "" "Asio is a cross-platform C++ library for network and\n" "low-level I/O programming that provides developers with a consistent\n" "asynchronous model using a modern C++ approach." msgstr "" -#: gnu/packages/networking.scm:3056 +#: gnu/packages/networking.scm:3094 msgid "" "This package is a fast tunnel proxy that helps you bypass firewalls.\n" "\n" @@ -11408,7 +11532,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3134 +#: gnu/packages/networking.scm:3172 msgid "" "The @dfn{Simple Network Management Protocol} (SNMP) is a\n" "widely used protocol for monitoring the health and welfare of network\n" @@ -11417,20 +11541,20 @@ msgid "" "SNMP v3 using both IPv4 and IPv6." msgstr "" -#: gnu/packages/networking.scm:3181 +#: gnu/packages/networking.scm:3219 msgid "" "uBridge is a simple program to create user-land bridges\n" "between various technologies. Currently, bridging between UDP tunnels,\n" "Ethernet and TAP interfaces is supported. Packet capture is also supported." msgstr "" -#: gnu/packages/networking.scm:3213 +#: gnu/packages/networking.scm:3251 msgid "" "This package contains a small set of tools to capture and convert\n" "packets from wireless devices for use with hashcat or John the Ripper." msgstr "" -#: gnu/packages/networking.scm:3244 +#: gnu/packages/networking.scm:3282 msgid "" "Small tool to capture packets from WLAN devices. After capturing,\n" "upload the \"uncleaned\" cap to @url{https://wpa-sec.stanev.org/?submit} to\n" @@ -11440,7 +11564,7 @@ msgid "" "and check if the WLAN key or the master key was transmitted unencrypted." msgstr "" -#: gnu/packages/networking.scm:3271 +#: gnu/packages/networking.scm:3309 msgid "" "Dante is a SOCKS client and server implementation. It can\n" "be installed on a machine with access to an external TCP/IP network and will\n" @@ -11449,21 +11573,21 @@ msgid "" "never see any machines other than the one Dante is running on." msgstr "" -#: gnu/packages/networking.scm:3318 +#: gnu/packages/networking.scm:3356 msgid "" "Restbed is a comprehensive and consistent programming\n" "model for building applications that require seamless and secure\n" "communication over HTTP." msgstr "" -#: gnu/packages/networking.scm:3358 +#: gnu/packages/networking.scm:3396 msgid "" "RESTinio is a header-only C++14 library that gives you an embedded\n" "HTTP/Websocket server. It is based on standalone version of ASIO\n" "and targeted primarily for asynchronous processing of HTTP-requests." msgstr "" -#: gnu/packages/networking.scm:3446 +#: gnu/packages/networking.scm:3487 msgid "" "OpenDHT provides an easy to use distributed in-memory data\n" "store. Every node in the network can read and write values to the store.\n" @@ -11490,20 +11614,20 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/networking.scm:3490 +#: gnu/packages/networking.scm:3531 msgid "" "FRRouting (FRR) is an IP routing protocol suite which includes\n" "protocol daemons for BGP, IS-IS, LDP, OSPF, PIM, and RIP." msgstr "" -#: gnu/packages/networking.scm:3520 +#: gnu/packages/networking.scm:3561 msgid "" "BIRD is an Internet routing daemon with full support for all\n" "the major routing protocols. It allows redistribution between protocols with a\n" "powerful route filtering syntax and an easy-to-use configuration interface." msgstr "" -#: gnu/packages/networking.scm:3568 +#: gnu/packages/networking.scm:3609 msgid "" "iwd is a wireless daemon for Linux that aims to replace WPA\n" "Supplicant. It optimizes resource utilization by not depending on any external\n" @@ -11511,21 +11635,21 @@ msgid "" "maximum extent possible." msgstr "" -#: gnu/packages/networking.scm:3595 +#: gnu/packages/networking.scm:3636 msgid "" "libyang is a YANG data modelling language parser and toolkit\n" "written (and providing API) in C. Current implementation covers YANG 1.0 (RFC\n" "6020) as well as YANG 1.1 (RFC 7950)." msgstr "" -#: gnu/packages/networking.scm:3629 +#: gnu/packages/networking.scm:3670 msgid "" "This package provides a control tool for the\n" "B.A.T.M.A.N. mesh networking routing protocol provided by the Linux kernel\n" "module @code{batman-adv}, for Layer 2." msgstr "" -#: gnu/packages/networking.scm:3662 +#: gnu/packages/networking.scm:3703 msgid "" "PageKite implements a tunneled reverse proxy which makes it easy to make\n" "a service (such as an HTTP or SSH server) on localhost visible to the wider\n" @@ -11533,7 +11657,7 @@ msgid "" "service is available at @url{https://pagekite.net/}, or you can run your own." msgstr "" -#: gnu/packages/networking.scm:3706 +#: gnu/packages/networking.scm:3747 msgid "" "ipcalc takes an IP address and netmask and calculates the\n" "resulting broadcast, network, Cisco wildcard mask, and host range. By giving\n" @@ -11542,7 +11666,7 @@ msgid "" "easy-to-understand binary values." msgstr "" -#: gnu/packages/networking.scm:3745 +#: gnu/packages/networking.scm:3786 msgid "" "Tunctl is used to set up and maintain persistent TUN/TAP\n" "network interfaces, enabling user applications to simulate network traffic.\n" @@ -11550,13 +11674,13 @@ msgid "" "simulation, and a number of other applications." msgstr "" -#: gnu/packages/networking.scm:3765 +#: gnu/packages/networking.scm:3806 msgid "" "Tool to send a magic packet to wake another host on the\n" "network. This must be enabled on the target host, usually in the BIOS." msgstr "" -#: gnu/packages/networking.scm:3802 +#: gnu/packages/networking.scm:3843 msgid "" "This package provides a modern, but Linux-specific\n" "implementation of the @command{traceroute} command that can be used to follow\n" @@ -11567,7 +11691,7 @@ msgid "" "some traces for unprivileged users." msgstr "" -#: gnu/packages/networking.scm:3836 +#: gnu/packages/networking.scm:3877 msgid "" "VDE is a set of programs to provide virtual software-defined\n" "Ethernet network interface controllers across multiple virtual or\n" @@ -11576,7 +11700,7 @@ msgid "" "cables." msgstr "" -#: gnu/packages/networking.scm:3878 +#: gnu/packages/networking.scm:3919 msgid "" "HAProxy is a free, very fast and reliable solution offering\n" "high availability, load balancing, and proxying for TCP and HTTP-based\n" @@ -11585,7 +11709,7 @@ msgid "" "thousands of connections is clearly realistic with today's hardware." msgstr "" -#: gnu/packages/networking.scm:3924 +#: gnu/packages/networking.scm:3965 msgid "" "The @dfn{Link Layer Discovery Protocol} (LLDP) is an industry standard\n" "protocol designed to supplant proprietary Link-Layer protocols such as EDP or\n" @@ -11594,7 +11718,7 @@ msgid "" "an implementation of LLDP. It also supports some proprietary protocols." msgstr "" -#: gnu/packages/networking.scm:3966 +#: gnu/packages/networking.scm:4007 msgid "" "Hashcash is a proof-of-work algorithm, which has been used\n" "as a denial-of-service countermeasure technique in a number of systems.\n" @@ -11607,14 +11731,14 @@ msgid "" "stamps." msgstr "" -#: gnu/packages/networking.scm:3995 +#: gnu/packages/networking.scm:4036 msgid "" "This package provides the NBD (Network Block Devices)\n" "client and server. It allows you to use remote block devices over a TCP/IP\n" "network." msgstr "" -#: gnu/packages/networking.scm:4062 +#: gnu/packages/networking.scm:4103 msgid "" "Yggdrasil is an early-stage implementation of a fully end-to-end encrypted\n" "IPv6 network. It is lightweight, self-arranging, supported on multiple\n" @@ -11623,7 +11747,7 @@ msgid "" "IPv6 Internet connectivity - it also works over IPv4." msgstr "" -#: gnu/packages/networking.scm:4106 +#: gnu/packages/networking.scm:4147 msgid "" "Netdiscover is a network address discovery tool developed\n" "mainly for wireless networks without a @acronym{DHCP} server. It also works\n" @@ -11631,7 +11755,7 @@ msgid "" "@acronym{ARP} requests and sniff for replies." msgstr "" -#: gnu/packages/networking.scm:4138 +#: gnu/packages/networking.scm:4179 msgid "" "PuTTY is a graphical text terminal client. It supports\n" "@acronym{SSH, Secure SHell}, telnet, and raw socket connections with good\n" @@ -11742,14 +11866,14 @@ msgid "" "by using the poppler rendering engine." msgstr "" -#: gnu/packages/pdf.scm:654 +#: gnu/packages/pdf.scm:653 msgid "" "Zathura is a customizable document viewer. It provides a\n" "minimalistic interface and an interface that mainly focuses on keyboard\n" "interaction." msgstr "" -#: gnu/packages/pdf.scm:697 +#: gnu/packages/pdf.scm:696 msgid "" "PoDoFo is a C++ library and set of command-line tools to work with the\n" "PDF file format. It can parse PDF files and load them into memory, and makes\n" @@ -11758,7 +11882,7 @@ msgid "" "extracting content or merging files." msgstr "" -#: gnu/packages/pdf.scm:764 +#: gnu/packages/pdf.scm:763 msgid "" "MuPDF is a C library that implements a PDF and XPS parsing and\n" "rendering engine. It is used primarily to render pages into bitmaps,\n" @@ -11770,7 +11894,7 @@ msgid "" "@command{pdfclean}, and examining the file structure @command{pdfshow}." msgstr "" -#: gnu/packages/pdf.scm:811 +#: gnu/packages/pdf.scm:810 msgid "" "QPDF is a command-line program that does structural, content-preserving\n" "transformations on PDF files. It could have been called something like\n" @@ -11779,7 +11903,7 @@ msgid "" "program capable of converting PDF into other formats." msgstr "" -#: gnu/packages/pdf.scm:855 +#: gnu/packages/pdf.scm:854 msgid "" "@command{qpdfview} is a document viewer for PDF, PS and DJVU\n" "files. It uses the Qt toolkit and features persistent per-file settings,\n" @@ -11787,13 +11911,13 @@ msgid "" "SyncTeX support, and rudimentary support for annotations and forms." msgstr "" -#: gnu/packages/pdf.scm:881 +#: gnu/packages/pdf.scm:880 msgid "" "Xournal is an application for notetaking, sketching, keeping a journal\n" "using a stylus." msgstr "" -#: gnu/packages/pdf.scm:940 +#: gnu/packages/pdf.scm:939 msgid "" "Xournal++ is a hand note taking software written in\n" "C++ with the target of flexibility, functionality and speed. Stroke\n" @@ -11829,14 +11953,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1019 +#: gnu/packages/pdf.scm:1018 msgid "" "This is the ReportLab PDF Toolkit. It allows rapid creation\n" "of rich PDF documents, and also creation of charts in a variety of bitmap and\n" "vector formats." msgstr "" -#: gnu/packages/pdf.scm:1071 +#: gnu/packages/pdf.scm:1070 msgid "" "Impressive is a tool to display PDF files that provides visual effects\n" "such as smooth alpha-blended slide transitions. It provides additional tools\n" @@ -11844,26 +11968,26 @@ msgid "" "the PDF pages." msgstr "" -#: gnu/packages/pdf.scm:1094 +#: gnu/packages/pdf.scm:1093 msgid "" "img2pdf converts images to PDF via direct JPEG inclusion. That\n" "conversion is lossless: the image embedded in the PDF has the exact same color\n" "information for every pixel as the input." msgstr "" -#: gnu/packages/pdf.scm:1147 +#: gnu/packages/pdf.scm:1146 msgid "" "fbida contains a few applications for viewing and editing images on\n" "the framebuffer." msgstr "" -#: gnu/packages/pdf.scm:1171 +#: gnu/packages/pdf.scm:1170 msgid "" "@command{pdf2svg} is a simple command-line PDF to SVG\n" "converter using the Poppler and Cairo libraries." msgstr "" -#: gnu/packages/pdf.scm:1203 +#: gnu/packages/pdf.scm:1202 msgid "" "PyPDF2 is a pure Python PDF library capable of:\n" "\n" @@ -11883,7 +12007,7 @@ msgid "" "manage or manipulate PDFs." msgstr "" -#: gnu/packages/pdf.scm:1240 +#: gnu/packages/pdf.scm:1239 msgid "" "PyPDF2 is a pure Python PDF toolkit.\n" "\n" @@ -11891,7 +12015,7 @@ msgid "" "python-pypdf2 instead." msgstr "" -#: gnu/packages/pdf.scm:1284 +#: gnu/packages/pdf.scm:1283 msgid "" "PDF Arranger is a small application which allows one to merge or split\n" "PDF documents and rotate, crop and rearrange their pages using an interactive\n" @@ -11900,7 +12024,7 @@ msgid "" "PDF Arranger was formerly known as PDF-Shuffler." msgstr "" -#: gnu/packages/pdf.scm:1308 +#: gnu/packages/pdf.scm:1307 msgid "" "@command{pdfposter} can be used to create a large poster by\n" "building it from multiple pages and/or printing it on large media. It expects\n" @@ -11913,7 +12037,7 @@ msgid "" "PDF. Indeed @command{pdfposter} was inspired by @command{poster}." msgstr "" -#: gnu/packages/pdf.scm:1339 +#: gnu/packages/pdf.scm:1338 msgid "" "Pdfgrep searches in pdf files for strings matching a regular expression.\n" "Support some GNU grep options as file name output, page number output,\n" @@ -11921,7 +12045,7 @@ msgid "" "multiple files." msgstr "" -#: gnu/packages/pdf.scm:1387 +#: gnu/packages/pdf.scm:1386 msgid "" "pdfpc is a presentation viewer application which uses multi-monitor\n" "output to provide meta information to the speaker during the presentation. It\n" @@ -11931,13 +12055,13 @@ msgid "" "presentation. The input files processed by pdfpc are PDF documents." msgstr "" -#: gnu/packages/pdf.scm:1414 +#: gnu/packages/pdf.scm:1413 msgid "" "Paps reads a UTF-8 encoded file and generates a PostScript language\n" "rendering of the file through the Pango Cairo back end." msgstr "" -#: gnu/packages/pdf.scm:1444 +#: gnu/packages/pdf.scm:1443 msgid "" "Stapler is a pure Python alternative to PDFtk, a tool for\n" "manipulating PDF documents from the command line. It supports\n" @@ -11951,7 +12075,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1532 +#: gnu/packages/pdf.scm:1531 msgid "" "WeasyPrint helps web developers to create PDF documents. It\n" "turns simple HTML pages into gorgeous statistical reports, invoices, tickets,\n" @@ -15673,7 +15797,7 @@ msgid "" "and enhance them." msgstr "" -#: gnu/packages/photo.scm:601 +#: gnu/packages/photo.scm:603 msgid "" "Photoflare is a cross-platform image editor with an aim\n" "to balance between powerful features and a very friendly graphical user\n" @@ -15683,7 +15807,7 @@ msgid "" "such as Batch image processing." msgstr "" -#: gnu/packages/photo.scm:669 +#: gnu/packages/photo.scm:670 msgid "" "Entangle is an application which uses GTK and libgphoto2 to provide a\n" "graphical interface for tethered photography with digital cameras. It\n" @@ -15691,14 +15815,14 @@ msgid "" "off' shooting directly from the controlling computer." msgstr "" -#: gnu/packages/photo.scm:740 +#: gnu/packages/photo.scm:741 msgid "" "Hugin is an easy to use panoramic imaging toolchain with a graphical\n" "user interface. It can be used to assemble a mosaic of photographs into\n" "a complete panorama and stitch any series of overlapping pictures." msgstr "" -#: gnu/packages/photo.scm:794 +#: gnu/packages/photo.scm:795 msgid "" "RawTherapee is a raw image processing suite. It comprises a\n" "subset of image editing operations specifically aimed at non-destructive raw\n" @@ -15742,7 +15866,28 @@ msgid "" "`special effects' using the filter mechanism." msgstr "" -#: gnu/packages/scanner.scm:144 +#: gnu/packages/scanner.scm:83 +msgid "" +"This SANE backend lets you scan documents and images from scanners and\n" +"multi-function printers that speak eSCL (marketed as ``AirScan'') or\n" +"@acronym{WSD, Web Services for Devices} (or ``WS-Scan'').\n" +"\n" +"Both are vendor-neutral protocols that allow ``driverless'' scanning over IPv4\n" +"and IPv6 networks without the vendor-specific drivers that make up most of the\n" +"sane-backends collection. This is similar to how most contemporary printers\n" +"speak the universal @acronym{IPP, Internet Printing Protocol}.\n" +"\n" +"Only scanners that support eSCL will also work over USB. This requires a\n" +"suitable IPP-over-USB daemon like ipp-usb to be installed and configured.\n" +"\n" +"Any eSCL or WSD-capable scanner should just work. sane-airscan automatically\n" +"discovers and configures devices, including which protocol to use. It was\n" +"successfully tested with many devices from Brother, Canon, Dell, Kyocera,\n" +"Lexmark, Epson, HP, OKI, Panasonic, Pantum, Ricoh, Samsung, and Xerox, with both\n" +"WSD and eSCL." +msgstr "" + +#: gnu/packages/scanner.scm:200 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -15750,7 +15895,7 @@ msgid "" "package contains the library, but no drivers." msgstr "" -#: gnu/packages/scanner.scm:192 +#: gnu/packages/scanner.scm:248 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -15758,7 +15903,7 @@ msgid "" "package contains the library and drivers." msgstr "" -#: gnu/packages/scanner.scm:243 +#: gnu/packages/scanner.scm:299 msgid "" "Scanbd stands for scanner button daemon. It regularly polls\n" "scanners for pressed buttons, function knob changes, or other events such\n" @@ -15774,7 +15919,7 @@ msgid "" "provided the driver also exposes the buttons." msgstr "" -#: gnu/packages/scanner.scm:331 +#: gnu/packages/scanner.scm:387 msgid "" "XSane is a graphical interface for controlling a scanner and acquiring\n" "images from it. You can photocopy multi-page documents and save, fax, print,\n" @@ -15786,14 +15931,14 @@ msgid "" "back-end library, which supports almost all existing scanners." msgstr "" -#: gnu/packages/scheme.scm:225 +#: gnu/packages/scheme.scm:226 msgid "" "GNU/MIT Scheme is an implementation of the Scheme programming\n" "language. It provides an interpreter, a compiler and a debugger. It also\n" "features an integrated Emacs-like editor and a large runtime library." msgstr "" -#: gnu/packages/scheme.scm:324 +#: gnu/packages/scheme.scm:325 msgid "" "Bigloo is a Scheme implementation devoted to one goal: enabling Scheme\n" "based programming style where C(++) is usually required. Bigloo attempts to\n" @@ -15804,7 +15949,7 @@ msgid "" "and between Scheme and Java programs." msgstr "" -#: gnu/packages/scheme.scm:377 +#: gnu/packages/scheme.scm:378 msgid "" "HOP is a multi-tier programming language for the Web 2.0 and the\n" "so-called diffuse Web. It is designed for programming interactive web\n" @@ -15813,14 +15958,14 @@ msgid "" "mashups, office (web agendas, mail clients, ...), etc." msgstr "" -#: gnu/packages/scheme.scm:400 +#: gnu/packages/scheme.scm:401 msgid "" "Scheme 48 is an implementation of Scheme based on a byte-code\n" "interpreter and is designed to be used as a testbed for experiments in\n" "implementation techniques and as an expository tool." msgstr "" -#: gnu/packages/scheme.scm:430 +#: gnu/packages/scheme.scm:431 msgid "" "Gambit consists of two main programs: gsi, the Gambit Scheme\n" "interpreter, and gsc, the Gambit Scheme compiler. The interpreter contains\n" @@ -15831,7 +15976,7 @@ msgid "" "mixed." msgstr "" -#: gnu/packages/scheme.scm:464 +#: gnu/packages/scheme.scm:465 msgid "" "Chibi-Scheme is a very small library with no external dependencies\n" "intended for use as an extension and scripting language in C programs. In\n" @@ -15840,7 +15985,7 @@ msgid "" "threads." msgstr "" -#: gnu/packages/scheme.scm:512 +#: gnu/packages/scheme.scm:513 msgid "" "Structure and Interpretation of Computer Programs (SICP) is\n" "a textbook aiming to teach the principles of computer programming.\n" @@ -15850,19 +15995,19 @@ msgid "" "metalinguistic abstraction, recursion, interpreters, and modular programming." msgstr "" -#: gnu/packages/scheme.scm:556 +#: gnu/packages/scheme.scm:557 msgid "" "String pattern-matching library for scheme48 based on the SRE\n" "regular-expression notation." msgstr "" -#: gnu/packages/scheme.scm:589 +#: gnu/packages/scheme.scm:590 msgid "" "SLIB is a portable Scheme library providing compatibility and\n" "utility functions for all standard Scheme implementations." msgstr "" -#: gnu/packages/scheme.scm:643 +#: gnu/packages/scheme.scm:644 msgid "" "GNU SCM is an implementation of Scheme. This\n" "implementation includes Hobbit, a Scheme-to-C compiler, which can\n" @@ -15870,7 +16015,7 @@ msgid "" "linked with a SCM executable." msgstr "" -#: gnu/packages/scheme.scm:702 +#: gnu/packages/scheme.scm:703 msgid "" "TinyScheme is a light-weight Scheme interpreter that implements as large a\n" "subset of R5RS as was possible without getting very large and complicated.\n" @@ -15886,7 +16031,7 @@ msgid "" "small program, it is easy to comprehend, get to grips with, and use." msgstr "" -#: gnu/packages/scheme.scm:783 +#: gnu/packages/scheme.scm:784 msgid "" "Stalin is an aggressively optimizing whole-program compiler\n" "for Scheme that does polyvariant interprocedural flow analysis,\n" @@ -15898,7 +16043,7 @@ msgid "" "generation." msgstr "" -#: gnu/packages/scheme.scm:819 +#: gnu/packages/scheme.scm:820 msgid "" "Scheme 9 from Empty Space (S9fES) is a mature, portable, and\n" "comprehensible public-domain interpreter for R4RS Scheme offering:\n" @@ -15913,14 +16058,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/scheme.scm:877 +#: gnu/packages/scheme.scm:878 msgid "" "@code{femtolisp} is a scheme-like lisp implementation with a\n" "simple, elegant Scheme dialect. It is a lisp-1 with lexical scope.\n" "The core is 12 builtin special forms and 33 builtin functions." msgstr "" -#: gnu/packages/scheme.scm:940 +#: gnu/packages/scheme.scm:941 msgid "" "Gauche is a R7RS Scheme scripting engine aiming at being a\n" "handy tool that helps programmers and system administrators to write small to\n" @@ -15930,7 +16075,7 @@ msgid "" "and list gauche extension packages." msgstr "" -#: gnu/packages/scheme.scm:1038 +#: gnu/packages/scheme.scm:1039 msgid "" "Gerbil is an opinionated dialect of Scheme designed for Systems\n" "Programming, with a state of the art macro and module system on top of the Gambit\n" @@ -16067,7 +16212,7 @@ msgid "" "server and an IRC server." msgstr "" -#: gnu/packages/shells.scm:107 +#: gnu/packages/shells.scm:108 msgid "" "dash is a POSIX-compliant @command{/bin/sh} implementation that aims to be\n" "as small as possible, often without sacrificing speed. It is faster than the\n" @@ -16075,7 +16220,7 @@ msgid "" "direct descendant of NetBSD's Almquist Shell (@command{ash})." msgstr "" -#: gnu/packages/shells.scm:255 +#: gnu/packages/shells.scm:256 msgid "" "Fish (friendly interactive shell) is a shell focused on interactive use,\n" "discoverability, and friendliness. Fish has very user-friendly and powerful\n" @@ -16087,20 +16232,20 @@ msgid "" "and syntax highlighting." msgstr "" -#: gnu/packages/shells.scm:308 +#: gnu/packages/shells.scm:309 msgid "" "@code{fish-foreign-env} wraps bash script execution in a way\n" "that environment variables that are exported or modified get imported back\n" "into fish." msgstr "" -#: gnu/packages/shells.scm:344 +#: gnu/packages/shells.scm:345 msgid "" "This is a reimplementation by Byron Rakitzis of the Plan 9 shell. It\n" "has a small feature set similar to a traditional Bourne shell." msgstr "" -#: gnu/packages/shells.scm:377 +#: gnu/packages/shells.scm:378 msgid "" "Es is an extensible shell. The language was derived from the Plan 9\n" "shell, rc, and was influenced by functional programming languages, such as\n" @@ -16109,7 +16254,7 @@ msgid "" "written by Paul Haahr and Byron Rakitzis." msgstr "" -#: gnu/packages/shells.scm:455 +#: gnu/packages/shells.scm:456 msgid "" "Tcsh is an enhanced, but completely compatible version of the Berkeley\n" "UNIX C shell (csh). It is a command language interpreter usable both as an\n" @@ -16118,7 +16263,7 @@ msgid "" "history mechanism, job control and a C-like syntax." msgstr "" -#: gnu/packages/shells.scm:522 +#: gnu/packages/shells.scm:523 msgid "" "The Z shell (zsh) is a Unix shell that can be used\n" "as an interactive login shell and as a powerful command interpreter\n" @@ -16127,7 +16272,7 @@ msgid "" "ksh, and tcsh." msgstr "" -#: gnu/packages/shells.scm:572 +#: gnu/packages/shells.scm:573 msgid "" "Xonsh is a Python-ish, BASHwards-looking shell language and command\n" "prompt. The language is a superset of Python 3.4+ with additional shell\n" @@ -16136,7 +16281,7 @@ msgid "" "use of experts and novices alike." msgstr "" -#: gnu/packages/shells.scm:616 +#: gnu/packages/shells.scm:617 msgid "" "Scsh is a Unix shell embedded in Scheme. Scsh has two main\n" "components: a process notation for running programs and setting up pipelines\n" @@ -16144,7 +16289,7 @@ msgid "" "operating system." msgstr "" -#: gnu/packages/shells.scm:658 +#: gnu/packages/shells.scm:659 msgid "" "Linenoise is a minimal, zero-config, readline replacement.\n" "Its features include:\n" @@ -16158,7 +16303,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/shells.scm:722 +#: gnu/packages/shells.scm:723 msgid "" "S is a new shell that aims to be extremely simple. It does not\n" "implement the POSIX shell standard.\n" @@ -16172,19 +16317,19 @@ msgid "" "A @code{andglob} program is also provided along with s." msgstr "" -#: gnu/packages/shells.scm:753 +#: gnu/packages/shells.scm:754 msgid "" "Oksh is a port of the OpenBSD Korn Shell.\n" "The OpenBSD Korn Shell is a cleaned up and enhanced ksh." msgstr "" -#: gnu/packages/shells.scm:783 +#: gnu/packages/shells.scm:784 msgid "" "loksh is a Linux port of OpenBSD's @command{ksh}. It is a small,\n" "interactive POSIX shell targeted at resource-constrained systems." msgstr "" -#: gnu/packages/shells.scm:821 +#: gnu/packages/shells.scm:822 msgid "" "mksh is an actively developed free implementation of the\n" "Korn Shell programming language and a successor to the Public Domain Korn\n" @@ -16216,7 +16361,7 @@ msgid "" "files and text." msgstr "" -#: gnu/packages/shells.scm:1006 +#: gnu/packages/shells.scm:1005 msgid "" "Nu draws inspiration from projects like PowerShell, functional\n" "programming languages, and modern CLI tools. Rather than thinking of files\n" @@ -16227,7 +16372,7 @@ msgid "" "of commands called a ``pipeline''." msgstr "" -#: gnu/packages/shells.scm:1037 +#: gnu/packages/shells.scm:1036 msgid "" "This package is a library for ANSI terminal colors and styles (bold,\n" "underline)." @@ -16483,19 +16628,19 @@ msgid "" "your calls and messages." msgstr "" -#: gnu/packages/telephony.scm:874 +#: gnu/packages/telephony.scm:869 msgid "" "PJProject provides an implementation of the Session\n" "Initiation Protocol (SIP) and a multimedia framework." msgstr "" -#: gnu/packages/telephony.scm:916 +#: gnu/packages/telephony.scm:911 msgid "" "A collection of libraries and header files for implementing\n" "telephony functionality into custom Telegram clients." msgstr "" -#: gnu/packages/tex.scm:532 +#: gnu/packages/tex.scm:543 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -16505,20 +16650,20 @@ msgid "" "This package contains the binaries." msgstr "" -#: gnu/packages/tex.scm:571 +#: gnu/packages/tex.scm:582 msgid "" "kpathsea is a library, whose purpose is to return a filename\n" "from a list of user-specified directories similar to how shells look up\n" "executables. It is maintained as a part of TeX Live." msgstr "" -#: gnu/packages/tex.scm:591 +#: gnu/packages/tex.scm:602 msgid "" "This package provides the docstrip utility to strip\n" "documentation from TeX files. It is part of the LaTeX base." msgstr "" -#: gnu/packages/tex.scm:606 +#: gnu/packages/tex.scm:617 msgid "" "This bundle provides generic access to Unicode Consortium\n" "data for TeX use. It contains a set of text files provided by the Unicode\n" @@ -16531,7 +16676,7 @@ msgid "" "out to date by @code{unicode-letters.tex}." msgstr "" -#: gnu/packages/tex.scm:638 +#: gnu/packages/tex.scm:649 msgid "" "This package includes Knuth's original @file{hyphen.tex},\n" "@file{zerohyph.tex} to disable hyphenation, @file{language.us} which starts\n" @@ -16539,13 +16684,13 @@ msgid "" "default versions of those), etc." msgstr "" -#: gnu/packages/tex.scm:659 +#: gnu/packages/tex.scm:670 msgid "" "This package provides files needed for converting DVI files\n" "to PostScript." msgstr "" -#: gnu/packages/tex.scm:673 +#: gnu/packages/tex.scm:684 msgid "" "This bundle provides a collection of model \".ini\" files\n" "for creating TeX formats. These files are commonly used to introduced\n" @@ -16554,13 +16699,13 @@ msgid "" "to adapt the plain e-TeX source file to work with XeTeX and LuaTeX." msgstr "" -#: gnu/packages/tex.scm:736 +#: gnu/packages/tex.scm:747 msgid "" "This package provides the Metafont base files needed to\n" "build fonts using the Metafont system." msgstr "" -#: gnu/packages/tex.scm:821 +#: gnu/packages/tex.scm:832 msgid "" "This package provides TeX macros for converting Adobe Font\n" "Metric files to TeX metric and virtual font format. Fontinst helps mainly\n" @@ -16570,7 +16715,7 @@ msgid "" "typesetting in these fonts." msgstr "" -#: gnu/packages/tex.scm:842 +#: gnu/packages/tex.scm:853 msgid "" "This is Fontname, a naming scheme for (the base part of)\n" "external TeX font filenames. This makes at most eight-character names\n" @@ -16578,7 +16723,7 @@ msgid "" "documents." msgstr "" -#: gnu/packages/tex.scm:915 +#: gnu/packages/tex.scm:926 msgid "" "This package provides the Computer Modern fonts by Donald\n" "Knuth. The Computer Modern font family is a large collection of text,\n" @@ -16586,7 +16731,7 @@ msgid "" "8A." msgstr "" -#: gnu/packages/tex.scm:946 +#: gnu/packages/tex.scm:957 msgid "" "The CM-Super family provides Adobe Type 1 fonts that replace\n" "the T1/TS1-encoded Computer Modern (EC/TC), T1/TS1-encoded Concrete,\n" @@ -16596,13 +16741,13 @@ msgid "" "originals." msgstr "" -#: gnu/packages/tex.scm:979 +#: gnu/packages/tex.scm:990 msgid "" "This package provides a drop-in replacements for the Courier\n" "font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:1002 +#: gnu/packages/tex.scm:1013 msgid "" "The TeX-GYRE bundle consist of multiple font families:\n" "@itemize @bullet\n" @@ -16622,21 +16767,21 @@ msgid "" "support (for use with a variety of encodings) is provided." msgstr "" -#: gnu/packages/tex.scm:1041 +#: gnu/packages/tex.scm:1052 msgid "" "The Latin Modern fonts are derived from the famous Computer\n" "Modern fonts designed by Donald E. Knuth and described in Volume E of his\n" "Computers & Typesetting series." msgstr "" -#: gnu/packages/tex.scm:1106 +#: gnu/packages/tex.scm:1117 msgid "" "This is a collection of core TeX and METAFONT macro files\n" "from Donald Knuth, including the plain format, plain base, and the MF logo\n" "fonts." msgstr "" -#: gnu/packages/tex.scm:1181 +#: gnu/packages/tex.scm:1192 msgid "" "This is a collection of fonts for use with standard LaTeX\n" "packages and classes. It includes invisible fonts (for use with the slides\n" @@ -16644,14 +16789,14 @@ msgid "" "symbol fonts." msgstr "" -#: gnu/packages/tex.scm:1253 +#: gnu/packages/tex.scm:1264 msgid "" "This package provides LaTeX and font definition files to access the\n" "Knuthian mflogo fonts described in The Metafontbook and to typeset Metafont\n" "logos in LaTeX documents." msgstr "" -#: gnu/packages/tex.scm:1274 +#: gnu/packages/tex.scm:1285 msgid "" "These fonts were created in METAFONT by Knuth, for his own publications.\n" "At some stage, the letters P and S were added, so that the METAPOST logo could\n" @@ -16660,7 +16805,7 @@ msgid "" "Taco Hoekwater." msgstr "" -#: gnu/packages/tex.scm:1402 +#: gnu/packages/tex.scm:1415 gnu/packages/tex.scm:1579 msgid "" "This package provides an extended set of fonts for use in mathematics,\n" "including: extra mathematical symbols; blackboard bold letters (uppercase\n" @@ -16674,7 +16819,7 @@ msgid "" "details can be found in the documentation." msgstr "" -#: gnu/packages/tex.scm:1432 +#: gnu/packages/tex.scm:1609 msgid "" "Mkpattern is a general purpose program for the generation of\n" "hyphenation patterns, with definition of letter sets and template-like\n" @@ -16682,7 +16827,7 @@ msgid "" "output encodings, and features generation of clean UTF-8 patterns." msgstr "" -#: gnu/packages/tex.scm:1489 +#: gnu/packages/tex.scm:1666 msgid "" "This package provides an extended version of TeX (which is capable of\n" "running as if it were TeX unmodified). E-TeX has been specified by the LaTeX\n" @@ -16691,122 +16836,131 @@ msgid "" "incorporates the e-TeX extensions." msgstr "" -#: gnu/packages/tex.scm:1507 +#: gnu/packages/tex.scm:1684 msgid "" "This package contains files used to build the Plain TeX format, as\n" "described in the TeXbook, together with various supporting files (some also\n" "discussed in the book)." msgstr "" -#: gnu/packages/tex.scm:1533 +#: gnu/packages/tex.scm:1702 +msgid "" +"The package facilitates wrapping text to a specific character width, breaking\n" +"lines by words rather than, as done by TeX, by characters. The primary use for\n" +"these facilities is to aid the generation of messages sent to the log file or\n" +"console output to display messages to the user. Package authors may also find\n" +"this useful when writing out arbitary text to an external file." +msgstr "" + +#: gnu/packages/tex.scm:1730 msgid "" "This package provides a drop-in replacements for the Helvetica\n" "font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:1546 +#: gnu/packages/tex.scm:1743 msgid "" "The package provides hyphenation patterns for the Afrikaans\n" "language." msgstr "" -#: gnu/packages/tex.scm:1560 +#: gnu/packages/tex.scm:1757 msgid "" "The package provides hyphenation patterns for ancient\n" "Greek." msgstr "" -#: gnu/packages/tex.scm:1573 +#: gnu/packages/tex.scm:1770 msgid "" "The package provides hyphenation patterns for the Armenian\n" "language." msgstr "" -#: gnu/packages/tex.scm:1587 +#: gnu/packages/tex.scm:1784 msgid "" "The package provides hyphenation patterns for the Basque\n" "language." msgstr "" -#: gnu/packages/tex.scm:1601 +#: gnu/packages/tex.scm:1798 msgid "" "The package provides hyphenation patterns for the Belarusian\n" "language." msgstr "" -#: gnu/packages/tex.scm:1613 +#: gnu/packages/tex.scm:1810 msgid "" "The package provides hyphenation patterns for the Bulgarian\n" "language in T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1627 +#: gnu/packages/tex.scm:1824 msgid "" "The package provides hyphenation patterns for Catalan in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1640 +#: gnu/packages/tex.scm:1837 msgid "" "The package provides hyphenation patterns for unaccented\n" "Chinese pinyin T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1652 +#: gnu/packages/tex.scm:1849 msgid "" "The package provides hyphenation patterns for Church\n" "Slavonic in UTF-8 encoding." msgstr "" -#: gnu/packages/tex.scm:1665 +#: gnu/packages/tex.scm:1862 msgid "" "The package provides hyphenation patterns for Coptic in\n" "UTF-8 encoding as well as in ASCII-based encoding for 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:1678 +#: gnu/packages/tex.scm:1875 msgid "" "The package provides hyphenation patterns for Croatian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1690 +#: gnu/packages/tex.scm:1887 msgid "" "The package provides hyphenation patterns for Czech in T1/EC\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1702 +#: gnu/packages/tex.scm:1899 msgid "" "The package provides hyphenation patterns for Danish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1715 +#: gnu/packages/tex.scm:1912 msgid "" "The package provides hyphenation patterns for Dutch in T1/EC\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1728 +#: gnu/packages/tex.scm:1925 msgid "" "The package provides additional hyphenation patterns for\n" "American and British English in ASCII encoding." msgstr "" -#: gnu/packages/tex.scm:1742 +#: gnu/packages/tex.scm:1939 msgid "" "The package provides hyphenation patterns for Esperanto ISO\n" "Latin 3 and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1754 +#: gnu/packages/tex.scm:1951 msgid "" "The package provides hyphenation patterns for Estonian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1768 +#: gnu/packages/tex.scm:1965 msgid "" "The package provides hyphenation patterns for languages\n" "written using the Ethiopic script for Unicode engines. They are not supposed\n" @@ -16814,94 +16968,94 @@ msgid "" "be replaced by files tailored to individual languages." msgstr "" -#: gnu/packages/tex.scm:1782 +#: gnu/packages/tex.scm:1979 msgid "" "The package provides hyphenation patterns for Finnish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1794 +#: gnu/packages/tex.scm:1991 msgid "" "The package provides hyphenation patterns for Finnish for\n" "school in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1806 +#: gnu/packages/tex.scm:2003 msgid "" "The package provides hyphenation patterns for French in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1818 +#: gnu/packages/tex.scm:2015 msgid "" "The package provides hyphenation patterns for Friulan in\n" "ASCII encodings." msgstr "" -#: gnu/packages/tex.scm:1831 +#: gnu/packages/tex.scm:2028 msgid "" "The package provides hyphenation patterns for Galician in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1843 +#: gnu/packages/tex.scm:2040 msgid "" "The package provides hyphenation patterns for Georgian in\n" "T8M, T8K, and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1861 +#: gnu/packages/tex.scm:2058 msgid "" "This package provides hyphenation patterns for German in\n" "T1/EC and UTF-8 encodings, for traditional and reformed spelling, including\n" "Swiss German." msgstr "" -#: gnu/packages/tex.scm:1880 +#: gnu/packages/tex.scm:2077 msgid "" "This package provides hyphenation patterns for Modern Greek\n" "in monotonic and polytonic spelling in LGR and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1894 +#: gnu/packages/tex.scm:2091 msgid "" "This package provides hyphenation patterns for Hungarian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1907 +#: gnu/packages/tex.scm:2104 msgid "" "This package provides hyphenation patterns for Icelandic in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1930 +#: gnu/packages/tex.scm:2127 msgid "" "This package provides hyphenation patterns for Assamese,\n" "Bengali, Gujarati, Hindi, Kannada, Malayalam, Marathi, Oriya, Panjabi, Tamil\n" "and Telugu for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:1943 +#: gnu/packages/tex.scm:2140 msgid "" "This package provides hyphenation patterns for\n" "Indonesian (Bahasa Indonesia) in ASCII encoding. They are probably also\n" "usable for Malay (Bahasa Melayu)." msgstr "" -#: gnu/packages/tex.scm:1956 +#: gnu/packages/tex.scm:2153 msgid "" "This package provides hyphenation patterns for Interlingua\n" "in ASCII encoding." msgstr "" -#: gnu/packages/tex.scm:1968 +#: gnu/packages/tex.scm:2165 msgid "" "This package provides hyphenation patterns for\n" "Irish (Gaeilge) in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1981 +#: gnu/packages/tex.scm:2178 msgid "" "This package provides hyphenation patterns for Italian in\n" "ASCII encoding. Compliant with the Recommendation UNI 6461 on hyphenation\n" @@ -16909,14 +17063,14 @@ msgid "" "UNI)." msgstr "" -#: gnu/packages/tex.scm:1995 +#: gnu/packages/tex.scm:2192 msgid "" "This package provides hyphenation patterns for\n" "Kurmanji (Northern Kurdish) as spoken in Turkey and by the Kurdish diaspora in\n" "Europe, in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2011 +#: gnu/packages/tex.scm:2208 msgid "" "This package provides hyphenation patterns for Latin in\n" "T1/EC and UTF-8 encodings, mainly in modern spelling (u when u is needed and v\n" @@ -16930,35 +17084,35 @@ msgid "" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2032 +#: gnu/packages/tex.scm:2229 msgid "" "This package provides hyphenation patterns for Latvian in\n" "L7X and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2045 +#: gnu/packages/tex.scm:2242 msgid "" "This package provides hyphenation patterns for Lithuanian in\n" "L7X and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2060 -msgid "This package provides hypenation patterns for Macedonian." +#: gnu/packages/tex.scm:2257 +msgid "This package provides hyphenation patterns for Macedonian." msgstr "" -#: gnu/packages/tex.scm:2073 +#: gnu/packages/tex.scm:2270 msgid "" "This package provides hyphenation patterns for Mongolian in\n" "T2A, LMC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2088 +#: gnu/packages/tex.scm:2285 msgid "" "This package provides hyphenation patterns for Norwegian\n" "Bokmal and Nynorsk in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2102 +#: gnu/packages/tex.scm:2299 msgid "" "This package provides hyphenation patterns for Occitan in\n" "T1/EC and UTF-8 encodings. They are supposed to be valid for all the Occitan\n" @@ -16967,94 +17121,94 @@ msgid "" "Alps encompassing the southern half of the French pentagon." msgstr "" -#: gnu/packages/tex.scm:2117 +#: gnu/packages/tex.scm:2314 msgid "" "This package provides hyphenation patterns for Panjabi in\n" "T1/EC encoding." msgstr "" -#: gnu/packages/tex.scm:2130 +#: gnu/packages/tex.scm:2327 msgid "" "This package provides hyphenation patterns for Piedmontese\n" "in ASCII encoding. Compliant with 'Gramatica dla lengua piemonteisa' by\n" "Camillo Brero." msgstr "" -#: gnu/packages/tex.scm:2143 +#: gnu/packages/tex.scm:2340 msgid "" "This package provides hyphenation patterns for Polish in QX\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2156 +#: gnu/packages/tex.scm:2353 msgid "" "This package provides hyphenation patterns for Portuguese in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2168 +#: gnu/packages/tex.scm:2365 msgid "" "This package provides hyphenation patterns for Romanian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2181 +#: gnu/packages/tex.scm:2378 msgid "" "This package provides hyphenation patterns for Romansh in\n" "ASCII encodings. They are supposed to comply with the rules indicated by the\n" "Lia Rumantscha (Romansh language society)." msgstr "" -#: gnu/packages/tex.scm:2194 +#: gnu/packages/tex.scm:2391 msgid "" "This package provides hyphenation patterns for Russian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2207 +#: gnu/packages/tex.scm:2404 msgid "" "This package provides hyphenation patterns for Sanskrit and\n" "Prakrit in longdesc transliteration, and in Devanagari, Bengali, Kannada,\n" "Malayalam longdesc and Telugu scripts for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:2224 +#: gnu/packages/tex.scm:2421 msgid "" "This package provides hyphenation patterns for Serbian in\n" "T1/EC, T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2237 +#: gnu/packages/tex.scm:2434 msgid "" "This package provides hyphenation patterns for Slovak in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2249 +#: gnu/packages/tex.scm:2446 msgid "" "This package provides hyphenation patterns for Slovenian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2265 +#: gnu/packages/tex.scm:2462 msgid "" "The package provides hyphenation patterns for Spanish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2277 +#: gnu/packages/tex.scm:2474 msgid "" "This package provides hyphenation patterns for Swedish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2289 +#: gnu/packages/tex.scm:2486 msgid "" "This package provides hyphenation patterns for Thai in LTH\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2302 +#: gnu/packages/tex.scm:2499 msgid "" "The package provides hyphenation patterns for Turkish in\n" "T1/EC and UTF-8 encodings. The patterns for Turkish were first produced for\n" @@ -17064,31 +17218,31 @@ msgid "" "compatibility with 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:2319 +#: gnu/packages/tex.scm:2516 msgid "" "The package provides hyphenation patterns for Turkmen in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2331 +#: gnu/packages/tex.scm:2528 msgid "" "This package provides hyphenation patterns for Ukrainian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2344 +#: gnu/packages/tex.scm:2541 msgid "" "This package provides hyphenation patterns for Upper Sorbian\n" "in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2356 +#: gnu/packages/tex.scm:2553 msgid "" "This package provides hyphenation patterns for Welsh in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2477 +#: gnu/packages/tex.scm:2674 msgid "" "Modern native UTF-8 engines such as XeTeX and LuaTeX need\n" "hyphenation patterns in UTF-8 format, whereas older systems require\n" @@ -17101,7 +17255,7 @@ msgid "" "converters, will completely supplant the older patterns." msgstr "" -#: gnu/packages/tex.scm:2521 +#: gnu/packages/tex.scm:2718 msgid "" "The package provides experimental hyphenation patterns for\n" "the German language, covering both traditional and reformed orthography. The\n" @@ -17109,21 +17263,29 @@ msgid "" "bundle." msgstr "" -#: gnu/packages/tex.scm:2542 +#: gnu/packages/tex.scm:2739 msgid "" "The package provides a range of hyphenation patterns for\n" "Ukrainian, depending on the encoding of the output font including the standard\n" "T2A." msgstr "" -#: gnu/packages/tex.scm:2577 +#: gnu/packages/tex.scm:2774 msgid "" "The package provides a collection of Russian hyphenation\n" "patterns supporting a number of Cyrillic font encodings, including T2,\n" "UCY (Omega Unicode Cyrillic), LCY, LWN (OT2), and koi8-r." msgstr "" -#: gnu/packages/tex.scm:2620 +#: gnu/packages/tex.scm:2792 +msgid "" +"This package deals with input encodings. It provides a wider range of input\n" +"encodings using standard mappings, than does inputenc; it also covers nearly all\n" +"slots. In this way, it serves as more uptodate replacement for package\n" +"inputenc." +msgstr "" + +#: gnu/packages/tex.scm:2853 msgid "" "Kpathsea is a library and utility programs which provide\n" "path searching facilities for TeX file types, including the self-locating\n" @@ -17131,13 +17293,27 @@ msgid "" "mechanism. This package provides supporting files." msgstr "" -#: gnu/packages/tex.scm:2636 +#: gnu/packages/tex.scm:2876 +msgid "" +"The family contains text fonts in roman, sans-serif and monospaced\n" +"shapes, with true small caps and old-style numbers; the package offers full\n" +"support of the textcomp package. The mathematics fonts include all the AMS\n" +"fonts, in both normal and bold weights. Each of the font types is available\n" +"in two main versions: default and light. Each version is available in four\n" +"variants: default; oldstyle numbers; oldstyle numbers with old ligatures such\n" +"as ct and st, and long-tailed capital Q; and veryoldstyle with long s. Other\n" +"variants include small caps as default or large small caps, and for\n" +"mathematics both upright and slanted shapes for Greek letters, as well as\n" +"default and narrow versions of multiple integrals." +msgstr "" + +#: gnu/packages/tex.scm:2898 msgid "" "The package provides configuration files for LaTeX-related\n" "formats." msgstr "" -#: gnu/packages/tex.scm:2867 +#: gnu/packages/tex.scm:3127 msgid "" "This bundle comprises the source of LaTeX itself, together with several\n" "packages which are considered \"part of the kernel\". This bundle, together\n" @@ -17145,7 +17321,7 @@ msgid "" "contain." msgstr "" -#: gnu/packages/tex.scm:2885 +#: gnu/packages/tex.scm:3145 msgid "" "This LaTeX packages provides two hooks for @code{\\end@{document@}}\n" "that are executed after the hook of @code{\\AtEndDocument}:\n" @@ -17155,13 +17331,13 @@ msgid "" "of the @file{.aux} file." msgstr "" -#: gnu/packages/tex.scm:2905 +#: gnu/packages/tex.scm:3165 msgid "" "This package provides hooks for adding code at the beginning of\n" "@file{.aux} files." msgstr "" -#: gnu/packages/tex.scm:2921 +#: gnu/packages/tex.scm:3181 msgid "" "The package adds support for EPS files in the @code{graphicx} package\n" "when running under pdfTeX. If an EPS graphic is detected, the package\n" @@ -17169,7 +17345,7 @@ msgid "" "@command{epstopdf}." msgstr "" -#: gnu/packages/tex.scm:2943 +#: gnu/packages/tex.scm:3203 msgid "" "LaTeX2e's @code{filecontents} and @code{filecontents*} environments\n" "enable a LaTeX source file to generate external files as it runs through\n" @@ -17180,7 +17356,7 @@ msgid "" "@code{filecontents*} anywhere." msgstr "" -#: gnu/packages/tex.scm:2964 +#: gnu/packages/tex.scm:3224 msgid "" "This package provides the original (and now obsolescent) graphics\n" "inclusion macros for use with dvips, still widely used by Plain TeX users (in\n" @@ -17190,7 +17366,7 @@ msgid "" "users, via its Plain TeX version.)" msgstr "" -#: gnu/packages/tex.scm:2986 +#: gnu/packages/tex.scm:3246 msgid "" "This package provides tools for the flexible handling of verbatim text\n" "including: verbatim commands in footnotes; a variety of verbatim environments\n" @@ -17200,7 +17376,7 @@ msgid "" "verbatim source)." msgstr "" -#: gnu/packages/tex.scm:3008 +#: gnu/packages/tex.scm:3268 msgid "" "This bundle is a combined distribution consisting of @file{dvips.def},\n" "@file{pdftex.def}, @file{luatex.def}, @file{xetex.def}, @file{dvipdfmx.def},\n" @@ -17208,13 +17384,19 @@ msgid "" "packages." msgstr "" -#: gnu/packages/tex.scm:3026 +#: gnu/packages/tex.scm:3286 msgid "" "This bundle includes @file{color.cfg} and @file{graphics.cfg} files that\n" "set default \"driver\" options for the color and graphics packages." msgstr "" -#: gnu/packages/tex.scm:3048 +#: gnu/packages/tex.scm:3303 +msgid "" +"The package provides Greek LICR macro definitions and encoding definition files\n" +"for Greek text font encodings for use with fontenc." +msgstr "" + +#: gnu/packages/tex.scm:3325 msgid "" "This is a collection of LaTeX packages for producing color, including\n" "graphics (e.g. PostScript) files, and rotation and scaling of text in LaTeX\n" @@ -17222,13 +17404,13 @@ msgid "" "keyval, and lscape." msgstr "" -#: gnu/packages/tex.scm:3066 +#: gnu/packages/tex.scm:3343 msgid "" "This package provides the code for the @code{color} option that is\n" "used by @code{hyperref} and @code{bookmark}." msgstr "" -#: gnu/packages/tex.scm:3098 +#: gnu/packages/tex.scm:3375 msgid "" "The package starts from the basic facilities of the colorcolor package,\n" "and provides easy driver-independent access to several kinds of color tints,\n" @@ -17239,7 +17421,7 @@ msgid "" "tables." msgstr "" -#: gnu/packages/tex.scm:3171 +#: gnu/packages/tex.scm:3448 msgid "" "The package provides an implementation of a parser for\n" "documents matching the XML 1.0 and XML Namespace Recommendations. Element and\n" @@ -17247,7 +17429,7 @@ msgid "" "XML, using UTF-8 or a suitable 8-bit encoding." msgstr "" -#: gnu/packages/tex.scm:3222 +#: gnu/packages/tex.scm:3499 msgid "" "The @code{hyperref} package is used to handle cross-referencing commands\n" "in LaTeX to produce hypertext links in the document. The package provides\n" @@ -17259,20 +17441,20 @@ msgid "" "@code{nameref} packages, which make use of the facilities of @code{hyperref}." msgstr "" -#: gnu/packages/tex.scm:3262 +#: gnu/packages/tex.scm:3539 msgid "" "The bundle comprises various LaTeX packages, providing among others:\n" "better accessibility support for PDF files; extensible chemists reaction\n" "arrows; record information about document class(es) used; and many more." msgstr "" -#: gnu/packages/tex.scm:3285 +#: gnu/packages/tex.scm:3562 msgid "" "This package provides additional rerun warnings if some auxiliary\n" "files have changed. It is based on MD5 checksum, provided by pdfTeX." msgstr "" -#: gnu/packages/tex.scm:3319 +#: gnu/packages/tex.scm:3596 msgid "" "This package is a collection of (variously) simple tools provided as\n" "part of the LaTeX required tools distribution, comprising the following\n" @@ -17282,7 +17464,7 @@ msgid "" "xr, and xspace." msgstr "" -#: gnu/packages/tex.scm:3338 +#: gnu/packages/tex.scm:3615 msgid "" "The command @code{\\url} is a form of verbatim command that\n" "allows linebreaks at certain characters or combinations of characters, accepts\n" @@ -17294,14 +17476,14 @@ msgid "" "of file names." msgstr "" -#: gnu/packages/tex.scm:3364 +#: gnu/packages/tex.scm:3641 msgid "" "This package provides font maps that were originally part of\n" "the now obsolete teTeX distributions but are still used at the core of the TeX\n" "Live distribution." msgstr "" -#: gnu/packages/tex.scm:3391 +#: gnu/packages/tex.scm:3668 msgid "" "The l3kernel bundle provides an implementation of the LaTeX3\n" "programmers’ interface, as a set of packages that run under LaTeX 2e. The\n" @@ -17310,7 +17492,7 @@ msgid "" "that the LaTeX3 conventions can be used with regular LaTeX 2e packages." msgstr "" -#: gnu/packages/tex.scm:3420 +#: gnu/packages/tex.scm:3697 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" @@ -17319,7 +17501,7 @@ msgid "" "an independent schedule." msgstr "" -#: gnu/packages/tex.scm:3484 +#: gnu/packages/tex.scm:3761 msgid "" "This bundle holds prototype implementations of concepts for a LaTeX\n" "designer interface, to be used with the experimental LaTeX kernel as\n" @@ -17336,14 +17518,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:3511 +#: gnu/packages/tex.scm:3788 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" "here are defined for the dvips engine only." msgstr "" -#: gnu/packages/tex.scm:3539 +#: gnu/packages/tex.scm:3816 msgid "" "Fontspec is a package for XeLaTeX and LuaLaTeX. It provides an\n" "automatic and unified interface to feature-rich AAT and OpenType fonts through\n" @@ -17351,7 +17533,7 @@ msgid "" "the l3kernel and xparse bundles from the LaTeX 3 development team." msgstr "" -#: gnu/packages/tex.scm:3569 +#: gnu/packages/tex.scm:3846 msgid "" "The original grffile package extended the file name processing of the\n" "@code{graphics} package to support a larger range of file names. The base\n" @@ -17359,13 +17541,13 @@ msgid "" "is a stub that just loads @code{graphicx}." msgstr "" -#: gnu/packages/tex.scm:3610 +#: gnu/packages/tex.scm:3887 msgid "" "This package provides @code{\\StringEncodingConvert} for converting a\n" "string between different encodings. Both LaTeX and plain-TeX are supported." msgstr "" -#: gnu/packages/tex.scm:3653 +#: gnu/packages/tex.scm:3930 msgid "" "The l3build module is designed to support the development of\n" "high-quality LaTeX code by providing: a unit testing system, automated\n" @@ -17374,14 +17556,20 @@ msgid "" "@code{.tex} file which provides the testing environment." msgstr "" -#: gnu/packages/tex.scm:3690 +#: gnu/packages/tex.scm:3953 msgid "" "Lualibs is a collection of Lua modules useful for general programming.\n" "The bundle is based on Lua modules shipped with ConTeXt, and made available in\n" "this bundle for use independent of ConTeXt." msgstr "" -#: gnu/packages/tex.scm:3718 +#: gnu/packages/tex.scm:3972 +msgid "" +"This package provides a Lua module for processing application arguments\n" +"in the same way as BSD/GNU @code{getopt_long(3)} functions do." +msgstr "" + +#: gnu/packages/tex.scm:3999 msgid "" "Luaotfload is an adaptation of the ConTeXt font loading system for the\n" "Plain and LaTeX formats. It allows OpenType fonts to be loaded with font\n" @@ -17390,11 +17578,7 @@ msgid "" "loading fonts by their proper names instead of file names." msgstr "" -#: gnu/packages/tex.scm:3790 -msgid "This package is necessary to use LaTeX with the LuaTeX engine." -msgstr "" - -#: gnu/packages/tex.scm:3809 +#: gnu/packages/tex.scm:4025 msgid "" "This is the principal package in the AMS-LaTeX distribution. It adapts\n" "for use in LaTeX most of the mathematical features found in AMS-TeX; it is\n" @@ -17409,7 +17593,7 @@ msgid "" "definitions." msgstr "" -#: gnu/packages/tex.scm:3843 +#: gnu/packages/tex.scm:4059 msgid "" "This bundle contains three AMS classes: @code{amsartamsart} (for writing\n" "articles for the AMS), @code{amsbookamsbook} (for books) and\n" @@ -17418,7 +17602,7 @@ msgid "" "distribution." msgstr "" -#: gnu/packages/tex.scm:3890 +#: gnu/packages/tex.scm:4106 msgid "" "The package manages culturally-determined typographical (and other)\n" "rules, and hyphenation patterns for a wide range of languages. A document may\n" @@ -17429,7 +17613,7 @@ msgid "" "polyglossia package rather than Babel." msgstr "" -#: gnu/packages/tex.scm:3917 +#: gnu/packages/tex.scm:4133 msgid "" "This package provides the language definition file for support of\n" "English in @code{babel}. Care is taken to select British hyphenation patterns\n" @@ -17437,13 +17621,14 @@ msgid "" "for Canadian and USA text." msgstr "" -#: gnu/packages/tex.scm:3939 +#: gnu/packages/tex.scm:4173 msgid "" -"This package provides support for the French language for the\n" -"babel multilingual system." +"The package, formerly known as frenchb, establishes French conventions\n" +"in a document (or a subset of the conventions, if French is not the main\n" +"language of the document)." msgstr "" -#: gnu/packages/tex.scm:3959 +#: gnu/packages/tex.scm:4196 msgid "" "This package provides the language definition file for support of German\n" "in @code{babel}. It provides all the necessary macros, definitions and\n" @@ -17452,14 +17637,14 @@ msgid "" "Swiss varieties of German." msgstr "" -#: gnu/packages/tex.scm:3986 +#: gnu/packages/tex.scm:4223 msgid "" "This package provides the language definition file for\n" "support of Swedish in @code{babel}. It provides all the necessary macros,\n" "definitions and settings to typeset Swedish documents." msgstr "" -#: gnu/packages/tex.scm:4008 +#: gnu/packages/tex.scm:4245 msgid "" "This bundle of macros files provides macro support (including font\n" "encoding macros) for the use of Cyrillic characters in fonts encoded under the\n" @@ -17467,7 +17652,7 @@ msgid "" "language that is written in a Cyrillic alphabet." msgstr "" -#: gnu/packages/tex.scm:4126 +#: gnu/packages/tex.scm:4363 msgid "" "The PSNFSS collection includes a set of files that provide a complete\n" "working setup of the LaTeX font selection scheme (NFSS2) for use with common\n" @@ -17482,20 +17667,20 @@ msgid "" "part of the LaTeX required set of packages." msgstr "" -#: gnu/packages/tex.scm:4177 gnu/packages/tex.scm:4269 +#: gnu/packages/tex.scm:4414 gnu/packages/tex.scm:4506 msgid "" "This is a very limited subset of the TeX Live distribution.\n" "It includes little more than the required set of LaTeX packages." msgstr "" -#: gnu/packages/tex.scm:4248 +#: gnu/packages/tex.scm:4485 msgid "" "This package contains the fonts map configuration file\n" "generated for the base TeX Live packages as well as, optionally, user-provided\n" "ones." msgstr "" -#: gnu/packages/tex.scm:4288 +#: gnu/packages/tex.scm:4525 msgid "" "These fonts are considered the \"ultimate answer\" to IPA\n" "typesetting. The encoding of these 8-bit fonts has been registered as LaTeX\n" @@ -17504,7 +17689,7 @@ msgid "" "TS3 fonts." msgstr "" -#: gnu/packages/tex.scm:4311 +#: gnu/packages/tex.scm:4548 msgid "" "Amsrefs is a LaTeX package for bibliographies that provides an archival\n" "data format similar to the format of BibTeX database files, but adapted to\n" @@ -17512,7 +17697,7 @@ msgid "" "conjunction with BibTeX or as a replacement for BibTeX." msgstr "" -#: gnu/packages/tex.scm:4340 +#: gnu/packages/tex.scm:4577 msgid "" "This package aims to provide a one-stop solution to requirements for\n" "footnotes. It offers: Multiple footnote apparatus superior to that of\n" @@ -17526,7 +17711,7 @@ msgid "" "@code{suffix} packages." msgstr "" -#: gnu/packages/tex.scm:4368 +#: gnu/packages/tex.scm:4605 msgid "" "The package provides the commands @code{\\blindtext} and\n" "@code{\\Blindtext} for creating \"blind\" text useful in testing new classes\n" @@ -17537,7 +17722,7 @@ msgid "" "ipsum\" text, see the @code{lipsum} package)." msgstr "" -#: gnu/packages/tex.scm:4407 +#: gnu/packages/tex.scm:4644 msgid "" "This package implements a document layout for writing letters according\n" "to the rules of DIN (Deutsches Institut für Normung, German standardisation\n" @@ -17549,7 +17734,7 @@ msgid "" "package." msgstr "" -#: gnu/packages/tex.scm:4433 +#: gnu/packages/tex.scm:4670 msgid "" "This package provides a means to add a textual, light grey watermark on\n" "every page or on the first page of a document. Typical usage may consist in\n" @@ -17559,7 +17744,7 @@ msgid "" "on everypage." msgstr "" -#: gnu/packages/tex.scm:4457 +#: gnu/packages/tex.scm:4694 msgid "" "This package provides the @code{\\collect@@body} command (as in\n" "@code{amsmath}), as well as a @code{\\long} version @code{\\Collect@@Body},\n" @@ -17567,7 +17752,7 @@ msgid "" "define a new author interface to creating new environments." msgstr "" -#: gnu/packages/tex.scm:4479 +#: gnu/packages/tex.scm:4716 msgid "" "LaTeX users sometimes need to ensure that two or more blocks of text\n" "occupy the same amount of horizontal space on the page. To that end, the\n" @@ -17581,7 +17766,7 @@ msgid "" "also provided." msgstr "" -#: gnu/packages/tex.scm:4504 +#: gnu/packages/tex.scm:4741 msgid "" "This package gives the user complete control of how the entries of\n" "the table of contents should be constituted from the name, number, and page\n" @@ -17601,7 +17786,7 @@ msgid "" "table of contents." msgstr "" -#: gnu/packages/tex.scm:4546 +#: gnu/packages/tex.scm:4783 msgid "" "The package provides additional features for the LaTeX\n" "@code{description} environment, including adjustable left margin. The package\n" @@ -17610,7 +17795,7 @@ msgid "" "@code{enumerate} lists, and numbered lists remain in sequence)." msgstr "" -#: gnu/packages/tex.scm:4566 +#: gnu/packages/tex.scm:4803 msgid "" "This package provides macros to read and compare the modification dates\n" "of files. The files may be @code{.tex} files, images or other files (as long\n" @@ -17622,14 +17807,14 @@ msgid "" "but non-expandable ones." msgstr "" -#: gnu/packages/tex.scm:4589 +#: gnu/packages/tex.scm:4826 msgid "" "The @code{hanging} package facilitates the typesetting of hanging\n" "paragraphs. The package also enables typesetting with hanging punctuation,\n" "by making punctuation characters active." msgstr "" -#: gnu/packages/tex.scm:4612 +#: gnu/packages/tex.scm:4849 msgid "" "This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX support for\n" "the Fira Sans family of fonts designed by Erik Spiekermann and Ralph du\n" @@ -17637,7 +17822,7 @@ msgid "" "corresponding italics: light, regular, medium, bold, ..." msgstr "" -#: gnu/packages/tex.scm:4635 +#: gnu/packages/tex.scm:4872 msgid "" "This package uses the (La)TeX extension @code{-shell-escape} to\n" "establish whether the document is being processed on a Windows or on a\n" @@ -17648,7 +17833,7 @@ msgid "" "classes of systems." msgstr "" -#: gnu/packages/tex.scm:4660 +#: gnu/packages/tex.scm:4897 msgid "" "This bundle provides a package that implements both author-year and\n" "numbered references, as well as much detailed of support for other\n" @@ -17658,20 +17843,20 @@ msgid "" "designed from the start to be compatible with @code{natbib}." msgstr "" -#: gnu/packages/tex.scm:4679 +#: gnu/packages/tex.scm:4916 msgid "" "This package provides a friendly interface for defining the meaning of\n" "Unicode characters. The document should be processed by (pdf)LaTeX with the\n" "Unicode option of @code{inputenc} or @code{inputenx}, or by XeLaTeX/LuaLaTeX." msgstr "" -#: gnu/packages/tex.scm:4699 +#: gnu/packages/tex.scm:4936 msgid "" "This package makes a number of utility functions from pdfTeX\n" "available for luaTeX by reimplementing them using Lua." msgstr "" -#: gnu/packages/tex.scm:4719 +#: gnu/packages/tex.scm:4956 msgid "" "This package allows LaTeX constructions (equations, picture\n" "environments, etc.) to be precisely superimposed over Encapsulated PostScript\n" @@ -17682,7 +17867,7 @@ msgid "" "rotated." msgstr "" -#: gnu/packages/tex.scm:4751 +#: gnu/packages/tex.scm:4988 msgid "" "This is a package for processing PostScript graphics with @code{psfrag}\n" "labels within pdfLaTeX documents. Every graphic is compiled individually,\n" @@ -17690,7 +17875,7 @@ msgid "" "re-processing." msgstr "" -#: gnu/packages/tex.scm:4771 +#: gnu/packages/tex.scm:5008 msgid "" "This package provides the @code{\\setcounterref} and\n" "@code{\\addtocounterref} commands which use the section (or other) number\n" @@ -17699,7 +17884,7 @@ msgid "" "corresponding thing with the page reference of the label." msgstr "" -#: gnu/packages/tex.scm:4791 +#: gnu/packages/tex.scm:5028 msgid "" "This package provides a class that produces overhead\n" "slides (transparencies), with many facilities. Seminar is not nowadays\n" @@ -17708,14 +17893,14 @@ msgid "" "21st-century presentation styles." msgstr "" -#: gnu/packages/tex.scm:4812 +#: gnu/packages/tex.scm:5049 msgid "" "The package provides a versatile way to stack objects vertically in a\n" "variety of customizable ways. A number of useful macros are provided, all\n" "of which make use of the @code{stackengine} core." msgstr "" -#: gnu/packages/tex.scm:4828 +#: gnu/packages/tex.scm:5065 msgid "" "This package provides control over the typography of the\n" "@dfn{Table of Contents}, @dfn{List of Figures} and @dfn{List of Tables},\n" @@ -17723,7 +17908,7 @@ msgid "" "be changed." msgstr "" -#: gnu/packages/tex.scm:4862 +#: gnu/packages/tex.scm:5099 msgid "" "This very short package allows you to expandably remove spaces around a\n" "token list (commands are provided to remove spaces before, spaces after, or\n" @@ -17731,13 +17916,26 @@ msgid "" "space-stripped macros." msgstr "" -#: gnu/packages/tex.scm:4897 +#: gnu/packages/tex.scm:5115 +msgid "This package provides a math interface to the Rsfs fonts." +msgstr "" + +#: gnu/packages/tex.scm:5152 msgid "" "This package defines a command @code{\\captionof} for putting a caption\n" "to something that's not a float." msgstr "" -#: gnu/packages/tex.scm:4913 +#: gnu/packages/tex.scm:5170 +msgid "" +"Many of David Carlisle's more substantial packages stand on their own,\n" +"or as part of the LaTeX latex-tools set; this set contains: making dotless\n" +"@emph{j} characters for fonts that don't have them; a method for combining the\n" +"capabilities of longtable and tabularx; an environment for including plain TeX\n" +"in LaTeX documents; a jiffy to create slashed characters for physicists." +msgstr "" + +#: gnu/packages/tex.scm:5189 msgid "" "You can hyperlink DOI numbers to doi.org. However, some publishers have\n" "elected to use nasty characters in their DOI numbering scheme (@code{<},\n" @@ -17747,7 +17945,7 @@ msgid "" "hyperlink to the target of the DOI." msgstr "" -#: gnu/packages/tex.scm:4936 +#: gnu/packages/tex.scm:5212 msgid "" "This package is a toolbox of programming facilities geared primarily\n" "towards LaTeX class and package authors. It provides LaTeX frontends to some\n" @@ -17758,7 +17956,7 @@ msgid "" "of the LaTeX kernel." msgstr "" -#: gnu/packages/tex.scm:4976 +#: gnu/packages/tex.scm:5252 msgid "" "This package provides seven predefined chapter heading styles. Each\n" "style can be modified using a set of simple commands. Optionally one can\n" @@ -17766,7 +17964,7 @@ msgid "" "headings." msgstr "" -#: gnu/packages/tex.scm:5011 +#: gnu/packages/tex.scm:5287 msgid "" "The package creates three environments: @code{framed}, which puts an\n" "ordinary frame box around the region, @code{shaded}, which shades the region,\n" @@ -17777,7 +17975,7 @@ msgid "" "@code{\\MakeFramed} to make your own framed-style environments." msgstr "" -#: gnu/packages/tex.scm:5045 +#: gnu/packages/tex.scm:5321 msgid "" "This package is designed for formatting formless letters in German; it\n" "can also be used for English (by those who can read the documentation). There\n" @@ -17785,13 +17983,13 @@ msgid "" "\"old\" and a \"new\" version of g-brief." msgstr "" -#: gnu/packages/tex.scm:5067 +#: gnu/packages/tex.scm:5343 msgid "" "The package deals with connections in two-dimensional style, optionally\n" "in colour." msgstr "" -#: gnu/packages/tex.scm:5087 +#: gnu/packages/tex.scm:5363 msgid "" "The package allows citations in the German style, which is considered by\n" "many to be particularly reader-friendly. The citation provides a small amount\n" @@ -17801,7 +17999,7 @@ msgid "" "BibLaTeX, and is considered experimental." msgstr "" -#: gnu/packages/tex.scm:5113 +#: gnu/packages/tex.scm:5389 msgid "" "This package provides an easy and flexible user interface to customize\n" "page layout, implementing auto-centering and auto-balancing mechanisms so that\n" @@ -17812,7 +18010,7 @@ msgid "" "ability to communicate the paper size it's set up to the output." msgstr "" -#: gnu/packages/tex.scm:5138 +#: gnu/packages/tex.scm:5414 msgid "" "This collection of tools includes: @code{atsupport} for short commands\n" "starting with @code{@@}, macros to sanitize the OT1 encoding of the\n" @@ -17822,13 +18020,13 @@ msgid "" "array environments; verbatim handling; and syntax diagrams." msgstr "" -#: gnu/packages/tex.scm:5162 +#: gnu/packages/tex.scm:5438 msgid "" "This package provides a complete Babel replacement for users of LuaLaTeX\n" "and XeLaTeX; it relies on the @code{fontspec} package, version 2.0 at least." msgstr "" -#: gnu/packages/tex.scm:5182 +#: gnu/packages/tex.scm:5458 msgid "" "This package was a predecessor of @code{longtable}; the newer\n" "package (designed on quite different principles) is easier to use and more\n" @@ -17836,7 +18034,7 @@ msgid "" "situations where longtable has problems." msgstr "" -#: gnu/packages/tex.scm:5217 +#: gnu/packages/tex.scm:5493 msgid "" "Texinfo is the preferred format for documentation in the GNU project;\n" "the format may be used to produce online or printed output from a single\n" @@ -17845,7 +18043,23 @@ msgid "" "hypertext linkages in some cases)." msgstr "" -#: gnu/packages/tex.scm:5240 +#: gnu/packages/tex.scm:5513 +msgid "" +"The textcase package offers commands @code{\\MakeTextUppercase} and\n" +"@code{\\MakeTextLowercase} are similar to the standard @code{\\MakeUppercase}\n" +"and @code{\\MakeLowercase}, but they do not change the case of any sections of\n" +"mathematics, or the arguments of @code{\\cite}, @code{\\label} and\n" +"@code{\\ref} commands within the argument. A further command\n" +"@code{\\NoCaseChange} does nothing but suppress case change within its\n" +"argument, so to force uppercase of a section including an environment, one\n" +"might say:\n" +"\n" +"@example\n" +"\\MakeTextUppercase{...\\NoCaseChange{\\begin{foo}} ...\\NoCaseChange{\\end{foo}}...}\n" +"@end example\n" +msgstr "" + +#: gnu/packages/tex.scm:5543 msgid "" "Typewriter-style fonts are best for program listings, but Computer\n" "Modern Typewriter prints @code{`} and @code{'} as bent opening and closing\n" @@ -17859,14 +18073,14 @@ msgid "" "does not affect @code{\\tt}, @code{\\texttt}, etc." msgstr "" -#: gnu/packages/tex.scm:5281 +#: gnu/packages/tex.scm:5584 msgid "" "This is a simple package to set up document margins. This package is\n" "considered obsolete; alternatives are the @code{typearea} package from the\n" "@code{koma-script} bundle, or the @code{geometry} package." msgstr "" -#: gnu/packages/tex.scm:5302 +#: gnu/packages/tex.scm:5605 msgid "" "The appendix package provides various ways of formatting the titles of\n" "appendices. Also (sub)appendices environments are provided that can be used,\n" @@ -17875,14 +18089,14 @@ msgid "" "command." msgstr "" -#: gnu/packages/tex.scm:5321 +#: gnu/packages/tex.scm:5624 msgid "" "This package implements a new bookmark (outline) organization for the\n" "@code{hyperref} package. Bookmark properties such as style and color. Other\n" "action types are available (URI, GoToR, Named)." msgstr "" -#: gnu/packages/tex.scm:5342 +#: gnu/packages/tex.scm:5645 msgid "" "Identify areas of text to be marked with changebars with the\n" "@code{\\cbstart} and @code{\\cbend} commands; the bars may be coloured. The\n" @@ -17891,19 +18105,19 @@ msgid "" "drivers, and VTeX and pdfTeX." msgstr "" -#: gnu/packages/tex.scm:5379 +#: gnu/packages/tex.scm:5682 msgid "" "This package embeds CMap tables into PDF files to make search and\n" "copy-and-paste functions work properly." msgstr "" -#: gnu/packages/tex.scm:5399 +#: gnu/packages/tex.scm:5702 msgid "" "This package allows rows, columns, and even individual cells in LaTeX\n" "tables to be coloured." msgstr "" -#: gnu/packages/tex.scm:5432 +#: gnu/packages/tex.scm:5735 msgid "" "This package provides variants of @code{\\fbox}: @code{\\shadowbox},\n" "@code{\\doublebox}, @code{\\ovalbox}, @code{\\Ovalbox}, with helpful tools for\n" @@ -17911,14 +18125,14 @@ msgid "" "floats, center, flushleft, and flushright, lists, and pages." msgstr "" -#: gnu/packages/tex.scm:5467 +#: gnu/packages/tex.scm:5770 msgid "" "The package provides extensive facilities, both for constructing headers\n" "and footers, and for controlling their use (for example, at times when LaTeX\n" "would automatically change the heading style in use)." msgstr "" -#: gnu/packages/tex.scm:5488 +#: gnu/packages/tex.scm:5791 msgid "" "This package improves the interface for defining floating objects such\n" "as figures and tables. It introduces the boxed float, the ruled float and the\n" @@ -17928,7 +18142,7 @@ msgid "" "with @code{\\floatplacement{figure}{H}}." msgstr "" -#: gnu/packages/tex.scm:5512 +#: gnu/packages/tex.scm:5815 msgid "" "This is a collection of ways to change the typesetting of footnotes.\n" "The package provides means of changing the layout of the footnotes themselves,\n" @@ -17938,7 +18152,7 @@ msgid "" "footnotes with symbols rather than numbers." msgstr "" -#: gnu/packages/tex.scm:5532 +#: gnu/packages/tex.scm:5835 msgid "" "TeX’s @code{\\let} assignment does not work for LaTeX macros with\n" "optional arguments, or for macros that are defined as robust macros by\n" @@ -17946,7 +18160,7 @@ msgid "" "that also takes care of the involved internal macros." msgstr "" -#: gnu/packages/tex.scm:5556 +#: gnu/packages/tex.scm:5859 msgid "" "The package enables the user to typeset programs (programming code)\n" "within LaTeX; the source code is read directly by TeX---no front-end processor\n" @@ -17954,7 +18168,7 @@ msgid "" "styles. Support for @code{hyperref} is provided." msgstr "" -#: gnu/packages/tex.scm:5591 +#: gnu/packages/tex.scm:5894 msgid "" "This package provides miscellaneous macros by Joerg Knappen, including:\n" "represent counters in greek; Maxwell's non-commutative division;\n" @@ -17966,13 +18180,13 @@ msgid "" "in SGML; use maths minus in text as appropriate; simple Young tableaux." msgstr "" -#: gnu/packages/tex.scm:5615 +#: gnu/packages/tex.scm:5918 msgid "" "This package provides facilities for using key-value format in\n" "package options." msgstr "" -#: gnu/packages/tex.scm:5684 +#: gnu/packages/tex.scm:5987 msgid "" "The EC fonts are European Computer Modern Fonts, supporting the complete\n" "LaTeX T1 encoding defined at the 1990 TUG conference hold at Cork/Ireland.\n" @@ -17989,7 +18203,7 @@ msgid "" "differs from the EC in a number of particulars." msgstr "" -#: gnu/packages/tex.scm:5717 +#: gnu/packages/tex.scm:6020 msgid "" "This package provides a set of virtual fonts which emulates T1 coded\n" "fonts using the standard CM fonts. The package name, AE fonts, supposedly\n" @@ -17999,7 +18213,7 @@ msgid "" "via the CM-super, Latin Modern and (in a restricted way) CM-LGC font sets." msgstr "" -#: gnu/packages/tex.scm:5742 +#: gnu/packages/tex.scm:6045 msgid "" "Inconsolata is a monospaced font designed by Raph Levien. This package\n" "contains the font (in both Adobe Type 1 and OpenType formats) in regular and\n" @@ -18008,25 +18222,25 @@ msgid "" "TeX, and LaTeX font definition and other relevant files." msgstr "" -#: gnu/packages/tex.scm:5771 +#: gnu/packages/tex.scm:6074 msgid "" "This package provides a drop-in replacements for the Times font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5799 +#: gnu/packages/tex.scm:6102 msgid "" "This package provides a drop-in replacements for the Palatino font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5824 +#: gnu/packages/tex.scm:6127 msgid "" "This package provides a drop-in replacements for the Zapfding font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5896 +#: gnu/packages/tex.scm:6199 msgid "" "The fonts provide uppercase formal script letters for use as symbols in\n" "scientific and mathematical typesetting (in contrast to the informal script\n" @@ -18036,14 +18250,14 @@ msgid "" "one of the packages @code{calrsfs} and @code{mathrsfs}." msgstr "" -#: gnu/packages/tex.scm:5920 +#: gnu/packages/tex.scm:6223 msgid "" "The package adds one or more user commands to LaTeX's @code{shipout}\n" "routine, which may be used to place the output at fixed positions. The\n" "@code{grid} option may be used to find the correct places." msgstr "" -#: gnu/packages/tex.scm:5954 +#: gnu/packages/tex.scm:6257 msgid "" "Extensions to @code{epic} and the LaTeX picture drawing environment,\n" "include the drawing of lines at any slope, the drawing of circles in any\n" @@ -18053,7 +18267,7 @@ msgid "" "@code{\\special} commands." msgstr "" -#: gnu/packages/tex.scm:5991 +#: gnu/packages/tex.scm:6276 msgid "" "This package is intended to ease customizing the three basic list\n" "environments: @code{enumerate}, @code{itemize} and @code{description}. It\n" @@ -18062,14 +18276,14 @@ msgid "" "@code{\\begin{itemize}[itemsep=1ex,leftmargin=1cm]}." msgstr "" -#: gnu/packages/tex.scm:6014 +#: gnu/packages/tex.scm:6301 msgid "" "The package provides tools for creating tabular cells spanning multiple\n" "rows. It has a lot of flexibility, including an option for specifying an\n" "entry at the \"natural\" width of its text." msgstr "" -#: gnu/packages/tex.scm:6048 +#: gnu/packages/tex.scm:6335 msgid "" "The @code{overpic} environment is a cross between the LaTeX\n" "@code{picture} environment and the @code{\\includegraphics} command of\n" @@ -18078,14 +18292,14 @@ msgid "" "positions; a grid for orientation is available." msgstr "" -#: gnu/packages/tex.scm:6084 +#: gnu/packages/tex.scm:6371 msgid "" "Simply changing @code{\\parskip} and @code{\\parindent} leaves a layout\n" "that is untidy; this package (though it is no substitute for a properly\n" "designed class) helps alleviate this untidiness." msgstr "" -#: gnu/packages/tex.scm:6105 +#: gnu/packages/tex.scm:6392 msgid "" "This package simplifies the inclusion of external multi-page PDF\n" "documents in LaTeX documents. Pages may be freely selected and it is possible\n" @@ -18095,7 +18309,7 @@ msgid "" "use this package to insert PostScript files, in addition to PDF files." msgstr "" -#: gnu/packages/tex.scm:6146 +#: gnu/packages/tex.scm:6433 msgid "" "The fonts were originally distributed as Metafont sources only, but\n" "Adobe Type 1 versions are also now available. Macro support is provided for\n" @@ -18104,7 +18318,7 @@ msgid "" "the whole font." msgstr "" -#: gnu/packages/tex.scm:6171 +#: gnu/packages/tex.scm:6458 msgid "" "This (deprecated) package provides support for the manipulation and\n" "reference of small or \"sub\" figures and tables within a single figure or\n" @@ -18117,7 +18331,7 @@ msgid "" "the more recent @code{subcaption} package more satisfactory." msgstr "" -#: gnu/packages/tex.scm:6198 +#: gnu/packages/tex.scm:6485 msgid "" "The package defines a @code{tabular*}-like environment, @code{tabulary},\n" "taking a \"total width\" argument as well as the column specifications. The\n" @@ -18128,7 +18342,7 @@ msgid "" "according to the natural width of the widest cell in the column." msgstr "" -#: gnu/packages/tex.scm:6236 +#: gnu/packages/tex.scm:6523 msgid "" "This package facilitates tables with titles (captions) and notes. The\n" "title and notes are given a width equal to the body of the table (a\n" @@ -18137,7 +18351,7 @@ msgid "" "environment." msgstr "" -#: gnu/packages/tex.scm:6263 +#: gnu/packages/tex.scm:6550 msgid "" "Txfonts supplies virtual text roman fonts using Adobe Times (or URW\n" "NimbusRomNo9L) with some modified and additional text symbols in the OT1, T1,\n" @@ -18153,7 +18367,7 @@ msgid "" "TeX metrics (VF and TFM files) and macros for use with LaTeX." msgstr "" -#: gnu/packages/tex.scm:6312 +#: gnu/packages/tex.scm:6599 msgid "" "Iwona is a two-element sans-serif typeface. It was created\n" "as an alternative version of the Kurier typeface, which was designed in 1975\n" @@ -18164,7 +18378,7 @@ msgid "" "of ink traps which typify the Kurier font." msgstr "" -#: gnu/packages/tex.scm:6335 +#: gnu/packages/tex.scm:6622 msgid "" "This package contains a collection of macros by Jörg Knappen:\n" "@table @code\n" @@ -18200,7 +18414,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/tex.scm:6442 +#: gnu/packages/tex.scm:6729 msgid "" "JadeTeX is a companion package to the OpenJade DSSSL\n" "processor. OpenJade applies a DSSSL stylesheet to an SGML or XML document.\n" @@ -18211,7 +18425,7 @@ msgid "" "command)." msgstr "" -#: gnu/packages/tex.scm:6472 +#: gnu/packages/tex.scm:6759 msgid "" "The package provides the Libertine and Biolinum fonts in both Type 1 and\n" "OTF styles, together with support macros for their use. Monospaced and\n" @@ -18221,7 +18435,7 @@ msgid "" "@code{libertine-legacy} packages." msgstr "" -#: gnu/packages/tex.scm:6504 +#: gnu/packages/tex.scm:6791 msgid "" "The package contains LaTeX support for the DejaVu fonts, which are\n" "derived from the Vera fonts but contain more characters and styles. The fonts\n" @@ -18230,7 +18444,7 @@ msgid "" "LGR. The package doesn't (currently) support mathematics." msgstr "" -#: gnu/packages/tex.scm:6540 +#: gnu/packages/tex.scm:6827 msgid "" "This package provides an interface to sectioning commands for selection\n" "from various title styles, e.g. for marginal titles and to change the font of\n" @@ -18239,7 +18453,7 @@ msgid "" "floats in a page. You may assign headers/footers to individual floats, too." msgstr "" -#: gnu/packages/tex.scm:6563 +#: gnu/packages/tex.scm:6850 msgid "" "LaTeX, by default, restricts the sizes at which you can use its default\n" "computer modern fonts, to a fixed set of discrete sizes (effectively, a set\n" @@ -18254,7 +18468,7 @@ msgid "" "@code{ec} fonts." msgstr "" -#: gnu/packages/tex.scm:6617 +#: gnu/packages/tex.scm:6904 msgid "" "The LH fonts address the problem of the wide variety of alphabets that\n" "are written with Cyrillic-style characters. The fonts are the original basis\n" @@ -18267,7 +18481,7 @@ msgid "" "OT2 encoded fonts, CM bright shaped fonts and Concrete shaped fonts." msgstr "" -#: gnu/packages/tex.scm:6647 +#: gnu/packages/tex.scm:6934 msgid "" "The Martin Vogel’s Symbols fonts (marvosym) contains the\n" "Euro currency symbol as defined by the European commission, along with symbols\n" @@ -18277,34 +18491,41 @@ msgid "" "the derived Type 1 font, together with support files for TeX (LaTeX)." msgstr "" -#: gnu/packages/tex.scm:6685 +#: gnu/packages/tex.scm:6972 msgid "" "MetaPost uses a language based on that of Metafont to produce precise\n" "technical illustrations. Its output is scalable PostScript or SVG, rather\n" "than the bitmaps Metafont creates." msgstr "" -#: gnu/packages/tex.scm:6706 +#: gnu/packages/tex.scm:6993 msgid "" "This package provides a class for typesetting publications of the\n" "Association for Computing Machinery (ACM)." msgstr "" -#: gnu/packages/tex.scm:6739 +#: gnu/packages/tex.scm:7026 msgid "" "The @code{varwidth} environment is superficially similar to\n" "@code{minipage}, but the specified width is just a maximum value — the box may\n" "get a narrower “natural” width." msgstr "" -#: gnu/packages/tex.scm:6757 +#: gnu/packages/tex.scm:7041 +msgid "" +"The varwidth environment is superficially similar to minipage, but the\n" +"specified width is just a maximum value --- the box may get a narrower natural\n" +"width." +msgstr "" + +#: gnu/packages/tex.scm:7059 msgid "" "This package provides the @code{wasy} (Waldi symbol) fonts,\n" "in the Metafont and Adobe Type 1 formats. Support under LaTeX is provided by\n" "the @code{wasysym} package." msgstr "" -#: gnu/packages/tex.scm:6778 +#: gnu/packages/tex.scm:7080 msgid "" "The @code{wasy} (Waldi Symbol) font by Roland Waldi provides many glyphs like\n" "male and female symbols and astronomical symbols, as well as the complete\n" @@ -18312,14 +18533,14 @@ msgid "" "implements an easy to use interface for these symbols." msgstr "" -#: gnu/packages/tex.scm:6815 +#: gnu/packages/tex.scm:7117 msgid "" "This package allows figures or tables to have text wrapped around them.\n" "It does not work in combination with list environments, but can be used in a\n" "@code{parbox} or @code{minipage}, and in two-column format." msgstr "" -#: gnu/packages/tex.scm:6849 +#: gnu/packages/tex.scm:7151 msgid "" "The bundle provides the @code{ucs} package, and @code{utf8x.def},\n" "together with a large number of support files. The @code{utf8x.def}\n" @@ -18332,7 +18553,7 @@ msgid "" "package of that name now exists." msgstr "" -#: gnu/packages/tex.scm:6883 +#: gnu/packages/tex.scm:7185 msgid "" "The main purpose of the preview package is the extraction of selected\n" "elements from a LaTeX source, like formulas or graphics, into separate\n" @@ -18343,7 +18564,7 @@ msgid "" "files." msgstr "" -#: gnu/packages/tex.scm:6908 +#: gnu/packages/tex.scm:7210 msgid "" "This package ensures that all acronyms used in the text are spelled out\n" "in full at least once. It also provides an environment to build a list of\n" @@ -18352,13 +18573,13 @@ msgid "" "e-TeX." msgstr "" -#: gnu/packages/tex.scm:6945 +#: gnu/packages/tex.scm:7247 msgid "" "This package provides an extension of TeX which can be configured to\n" "directly generate PDF documents instead of DVI." msgstr "" -#: gnu/packages/tex.scm:7025 +#: gnu/packages/tex.scm:7327 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18368,7 +18589,7 @@ msgid "" "This package contains the complete tree of texmf-dist data." msgstr "" -#: gnu/packages/tex.scm:7088 +#: gnu/packages/tex.scm:7390 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18378,7 +18599,7 @@ msgid "" "This package contains the complete TeX Live distribution." msgstr "" -#: gnu/packages/tex.scm:7130 +#: gnu/packages/tex.scm:7432 msgid "" "@code{Text::BibTeX} is a Perl library for reading, parsing,\n" "and processing BibTeX files. @code{Text::BibTeX} gives you access to the data\n" @@ -18387,13 +18608,13 @@ msgid "" "values (strings, macros, or numbers) pasted together." msgstr "" -#: gnu/packages/tex.scm:7216 +#: gnu/packages/tex.scm:7518 msgid "" "Biber is a BibTeX replacement for users of biblatex. Among\n" "other things it comes with full Unicode support." msgstr "" -#: gnu/packages/tex.scm:7250 +#: gnu/packages/tex.scm:7552 msgid "" "Rubber is a program whose purpose is to handle all tasks related to the\n" "compilation of LaTeX documents. This includes compiling the document itself,\n" @@ -18403,20 +18624,20 @@ msgid "" "PDF documents." msgstr "" -#: gnu/packages/tex.scm:7289 +#: gnu/packages/tex.scm:7591 msgid "" "Texmaker is a program that integrates many tools needed to\n" "develop documents with LaTeX, in a single application." msgstr "" -#: gnu/packages/tex.scm:7330 +#: gnu/packages/tex.scm:7632 msgid "" "@i{TeX for the Impatient} is a ~350 page book on TeX,\n" "plain TeX, and Eplain, originally written by Paul Abrahams, Kathryn Hargreaves,\n" "and Karl Berry." msgstr "" -#: gnu/packages/tex.scm:7394 +#: gnu/packages/tex.scm:7696 msgid "" "LyX is a document preparation system. It excels at letting\n" "you create complex technical and scientific articles with mathematics,\n" @@ -18425,7 +18646,7 @@ msgid "" "required: automatic sectioning and pagination, spell checking and so forth." msgstr "" -#: gnu/packages/tex.scm:7430 +#: gnu/packages/tex.scm:7732 msgid "" "The package provides an interface to embed interactive Flash (SWF) and 3D\n" "objects (Adobe U3D & PRC), as well as video and sound files or streams in the\n" @@ -18438,7 +18659,7 @@ msgid "" "specification. It replaces the now obsolete @code{movie15} package." msgstr "" -#: gnu/packages/tex.scm:7470 +#: gnu/packages/tex.scm:7772 msgid "" "This package provides OCG (Optional Content Groups) support within a PDF\n" "document.\n" @@ -18456,7 +18677,7 @@ msgid "" "It also ensures compatibility with the @code{media9} and @code{animate} packages." msgstr "" -#: gnu/packages/tex.scm:7504 +#: gnu/packages/tex.scm:7806 msgid "" "A bundle of LATEX packages by Martin Schröder; the collection comprises:\n" "\n" @@ -18470,7 +18691,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/tex.scm:7532 +#: gnu/packages/tex.scm:7852 msgid "" "The package numprint prints numbers with a separator every three\n" "digits and converts numbers given as 12345.6e789 to 12\\,345,6\\cdot\n" @@ -18491,14 +18712,14 @@ msgid "" "and after the formatted number." msgstr "" -#: gnu/packages/tex.scm:7571 +#: gnu/packages/tex.scm:7893 msgid "" "Provides commands to disable pagebreaking within a given vertical\n" "space. If there is not enough space between the command and the bottom of the\n" "page, a new page will be started." msgstr "" -#: gnu/packages/tex.scm:7597 +#: gnu/packages/tex.scm:7919 msgid "" "The package provides commands to change the page layout in the middle of\n" "a document, and to robustly check for typesetting on odd or even pages.\n" @@ -18506,7 +18727,7 @@ msgid "" "of code from the @code{memoir} class, whose user interface it shares." msgstr "" -#: gnu/packages/tex.scm:7633 +#: gnu/packages/tex.scm:7955 msgid "" "The package is used to change the format of @code{\\today}’s date,\n" "including the weekday, e.g., \"Saturday, 26 June 2008\", the 'UK format', which\n" @@ -18514,7 +18735,7 @@ msgid "" "@code{\\maketitle} of the article class, \"June 26, 2008\", the 'US format'." msgstr "" -#: gnu/packages/tex.scm:7669 +#: gnu/packages/tex.scm:7971 msgid "" "The package provides an @code{\\ul} (underline) command which will break\n" "over line ends; this technique may be used to replace @code{\\em} (both in that\n" @@ -18523,7 +18744,7 @@ msgid "" "striking out (line through words) and crossing out (/// over words)." msgstr "" -#: gnu/packages/tex.scm:7725 +#: gnu/packages/tex.scm:8029 msgid "" "PGF is a macro package for creating graphics. It is platform- and\n" "format-independent and works together with the most important TeX backend\n" @@ -18535,7 +18756,7 @@ msgid "" "produce either PostScript or PDF output." msgstr "" -#: gnu/packages/tex.scm:7771 +#: gnu/packages/tex.scm:8075 msgid "" "The KOMA-Script bundle provides replacements for the article, report, and\n" "book classes with emphasis on typography and versatility. There is also a\n" @@ -18560,7 +18781,7 @@ msgid "" "typearea (which are the main parts of the bundle)." msgstr "" -#: gnu/packages/tex.scm:7806 +#: gnu/packages/tex.scm:8110 msgid "" "This package is a modern reimplementation of package @code{everyshi},\n" "providing various commands to be executed before a @code{\\shipout} command.\n" @@ -18568,20 +18789,20 @@ msgid "" "be used either with LaTeX or with plain TeX." msgstr "" -#: gnu/packages/tex.scm:7826 +#: gnu/packages/tex.scm:8130 msgid "" "This package provides expandable arithmetic operations with big\n" "integers that can exceed TeX's number limits." msgstr "" -#: gnu/packages/tex.scm:7845 +#: gnu/packages/tex.scm:8149 msgid "" "This package defines and implements the data type bit set, a vector\n" "of bits. The size of the vector may grow dynamically. Individual bits\n" "can be manipulated." msgstr "" -#: gnu/packages/tex.scm:7864 +#: gnu/packages/tex.scm:8168 msgid "" "New primitive commands are introduced in e-TeX; sometimes the names\n" "collide with existing macros. This package solves the name clashes by\n" @@ -18589,14 +18810,14 @@ msgid "" "@code{\\unexpanded} is provided as @code{\\etex@@unexpanded}." msgstr "" -#: gnu/packages/tex.scm:7882 +#: gnu/packages/tex.scm:8186 msgid "" "This package provides commands for cleaning up the title string\n" "(such as removing @code{\\label} commands) for packages that typeset such\n" "strings." msgstr "" -#: gnu/packages/tex.scm:7898 +#: gnu/packages/tex.scm:8202 msgid "" "This package provides a complete set of macros for information,\n" "warning and error messages. Under LaTeX, the commands are wrappers for\n" @@ -18604,19 +18825,19 @@ msgid "" "complete implementations." msgstr "" -#: gnu/packages/tex.scm:7915 +#: gnu/packages/tex.scm:8219 msgid "" "This package provides expandable arithmetic operations with integers,\n" "using the e-TeX extension @code{\\numexpr} if it is available." msgstr "" -#: gnu/packages/tex.scm:7930 +#: gnu/packages/tex.scm:8234 msgid "" "This package provides the @code{\\kv@@define@@key} (analogous to\n" "keyval’s @code{\\define@@key}, to define keys for use by @code{kvsetkeys}." msgstr "" -#: gnu/packages/tex.scm:7945 +#: gnu/packages/tex.scm:8249 msgid "" "This package provides @code{\\kvsetkeys}, a variant of @code{\\setkeys}\n" "from the @code{keyval} package. Users can specify a handler that deals with\n" @@ -18624,35 +18845,35 @@ msgid "" "level of curly braces are removed from the values." msgstr "" -#: gnu/packages/tex.scm:7980 +#: gnu/packages/tex.scm:8284 msgid "" "This package allows one to capture all the items of a list, for which\n" "the parsing character has been selected by the user, and to access any of\n" "these items with a simple syntax." msgstr "" -#: gnu/packages/tex.scm:7996 +#: gnu/packages/tex.scm:8300 msgid "" "This package exports some utility macros from the LaTeX kernel into\n" "a separate namespace and also makes them available for other formats such\n" "as plain TeX." msgstr "" -#: gnu/packages/tex.scm:8012 +#: gnu/packages/tex.scm:8316 msgid "" "This package implements pdfTeX's escape features (@code{\\pdfescapehex},\n" "@code{\\pdfunescapehex}, @code{\\pdfescapename}, @code{\\pdfescapestring})\n" "using TeX or e-TeX." msgstr "" -#: gnu/packages/tex.scm:8031 +#: gnu/packages/tex.scm:8335 msgid "" "This package provides a kind of counter that provides unique number\n" "values. Several counters can be created with different names. The numeric\n" "values are not limited." msgstr "" -#: gnu/packages/tex.scm:8067 +#: gnu/packages/tex.scm:8371 msgid "" "This package allows the user to input formatted data into elements of a\n" "2-D or 3-D array and to recall that data at will by individual cell number.\n" @@ -18660,7 +18881,7 @@ msgid "" "formatted text." msgstr "" -#: gnu/packages/tex.scm:8104 +#: gnu/packages/tex.scm:8408 msgid "" "The package provides a @code{verbbox} environment to place its contents\n" "into a globally available box, or into a box specified by the user. The\n" @@ -18670,7 +18891,7 @@ msgid "" "@code{trivlist}) may not appear." msgstr "" -#: gnu/packages/tex.scm:8141 +#: gnu/packages/tex.scm:8445 msgid "" "Examplep provides sophisticated features for typesetting verbatim source\n" "code listings, including the display of the source code and its compiled LaTeX\n" @@ -18683,7 +18904,7 @@ msgid "" "titles." msgstr "" -#: gnu/packages/tex.scm:8178 +#: gnu/packages/tex.scm:8482 msgid "" "This is a package for typesetting a variety of graphs and\n" "diagrams with TeX. Xy-pic works with most formats (including LaTeX,\n" @@ -18691,7 +18912,7 @@ msgid "" "@code{diag} package, which was previously distributed stand-alone." msgstr "" -#: gnu/packages/tex.scm:8218 +#: gnu/packages/tex.scm:8522 msgid "" "BibTeX allows the user to store his citation data in generic form, while\n" "printing citations in a document in the form specified by a BibTeX style, to\n" @@ -18699,7 +18920,7 @@ msgid "" "package, such as @command{natbib} as well)." msgstr "" -#: gnu/packages/tex.scm:8241 +#: gnu/packages/tex.scm:8545 msgid "" "This package provides a copy of the Charter Type-1 fonts\n" "which Bitstream contributed to the X consortium, renamed for use with TeX.\n" @@ -18707,14 +18928,14 @@ msgid "" "@command{psnfss}." msgstr "" -#: gnu/packages/tex.scm:8337 +#: gnu/packages/tex.scm:8641 msgid "" "ConTeXt is a full featured, parameter driven macro package,\n" "which fully supports advanced interactive documents. See the ConTeXt garden\n" "for a wealth of support information." msgstr "" -#: gnu/packages/tex.scm:8362 +#: gnu/packages/tex.scm:8666 msgid "" "The beamer LaTeX class can be used for producing slides.\n" "The class works in both PostScript and direct PDF output modes, using the\n" @@ -18727,7 +18948,7 @@ msgid "" "effects, varying slide transitions and animations." msgstr "" -#: gnu/packages/tex.scm:8394 +#: gnu/packages/tex.scm:8698 msgid "" "The XMP (eXtensible Metadata platform) is a framework to add metadata to\n" "digital material to enhance the workflow in publication. The essence is that\n" @@ -18735,13 +18956,13 @@ msgid "" "the file to which it applies." msgstr "" -#: gnu/packages/tex.scm:8433 +#: gnu/packages/tex.scm:8737 msgid "" "This package helps LaTeX users to create PDF/X, PDF/A and other\n" "standards-compliant PDF documents with pdfTeX, LuaTeX and XeTeX." msgstr "" -#: gnu/packages/tex.scm:8468 +#: gnu/packages/tex.scm:8772 msgid "" "The package provides macros and environments to document\n" "LaTeX packages and classes. It is an (as yet unfinished) alternative to the\n" @@ -18752,7 +18973,7 @@ msgid "" "change." msgstr "" -#: gnu/packages/tex.scm:8496 +#: gnu/packages/tex.scm:8800 msgid "" "PSTricks offers an extensive collection of macros for\n" "generating PostScript that is usable with most TeX macro formats, including\n" @@ -18763,14 +18984,14 @@ msgid "" "or shading the cells of tables." msgstr "" -#: gnu/packages/tex.scm:8521 +#: gnu/packages/tex.scm:8825 msgid "" "Pst-text is a PSTricks based package for plotting text along\n" "a different path and manipulating characters. It includes the functionality\n" "of the old package @code{pst-char}." msgstr "" -#: gnu/packages/tex.scm:8546 +#: gnu/packages/tex.scm:8850 msgid "" "This package provides the command @code{\\marginnote} that\n" "may be used instead of @code{\\marginpar} at almost every place where\n" @@ -18778,7 +18999,7 @@ msgid "" "frames made with the @code{framed} package." msgstr "" -#: gnu/packages/tex.scm:8564 +#: gnu/packages/tex.scm:8868 msgid "" "This package, which works both for Plain TeX and for\n" "LaTeX, defines the @code{\\ifPDFTeX}, @code{\\ifXeTeX}, and @code{\\ifLuaTeX}\n" @@ -18788,7 +19009,19 @@ msgid "" "LuaTeX (respectively) is not the engine in use." msgstr "" -#: gnu/packages/tex.scm:8597 +#: gnu/packages/tex.scm:8914 +msgid "" +"The package provides an environment, tabu, which will make any sort of\n" +"tabular, and an environment longtabu which provides the facilities of tabu in\n" +"a modified longtable environment. The package requires array, xcolor for\n" +"coloured rules in tables, and colortbl for coloured cells. The longtabu\n" +"environment further requires that longtable be loaded. The package itself\n" +"does not load any of these packages for the user. The tabu environment may be\n" +"used in place of @code{tabular}, @code{tabular*} and @code{tabularx}\n" +"environments, as well as the @code{array} environment in maths mode." +msgstr "" + +#: gnu/packages/tex.scm:8945 msgid "" "This package provides a collection of simple tools that\n" "are part of the LaTeX required tools distribution, comprising the packages:\n" @@ -18800,7 +19033,7 @@ msgid "" "@code{varioref}, @code{verbatim}, @code{xr}, and @code{xspace}." msgstr "" -#: gnu/packages/tex.scm:8678 +#: gnu/packages/tex.scm:9026 msgid "" "This package is an extension of the keyval package and offers additional\n" "macros for setting keys and declaring and setting class or package options.\n" @@ -18810,7 +19043,7 @@ msgid "" "keys." msgstr "" -#: gnu/packages/tex.scm:8706 +#: gnu/packages/tex.scm:9054 msgid "" "A class and package is provided which allows TeX pictures or\n" "other TeX code to be compiled standalone or as part of a main document.\n" @@ -18822,7 +19055,7 @@ msgid "" "@code{standalone.cfg} to redefine the standalone environment." msgstr "" -#: gnu/packages/tex.scm:8739 +#: gnu/packages/tex.scm:9087 msgid "" "Typesetting values with units requires care to ensure that the combined\n" "mathematical meaning of the value plus unit combination is clear. In\n" @@ -18838,7 +19071,7 @@ msgid "" "package to handle all of the possible unit-related needs of LaTeX users." msgstr "" -#: gnu/packages/tex.scm:8770 +#: gnu/packages/tex.scm:9118 msgid "" "This package enhances the quality of tables in LaTeX, providing extra\n" "commands as well as behind-the-scenes optimisation. Guidelines are given as\n" @@ -18846,7 +19079,7 @@ msgid "" "@code{longtable} compatibility." msgstr "" -#: gnu/packages/tex.scm:8790 +#: gnu/packages/tex.scm:9138 msgid "" "This package provides advanced facilities for inline and\n" "display quotations. It is designed for a wide range of tasks ranging from the\n" @@ -18860,7 +19093,7 @@ msgid "" "styles as well as the optional active quotes are freely configurable." msgstr "" -#: gnu/packages/tex.scm:8816 +#: gnu/packages/tex.scm:9164 msgid "" "The package helps to automate a typical LaTeX\n" "workflow that involves running LaTeX several times and running tools\n" @@ -18880,7 +19113,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8848 +#: gnu/packages/tex.scm:9196 msgid "" "BibLaTeX is a complete reimplementation of the\n" "bibliographic facilities provided by LaTeX. Formatting of the\n" @@ -18906,7 +19139,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8886 +#: gnu/packages/tex.scm:9234 msgid "" "The @code{todonotes} package lets the user mark\n" "things to do later, in a simple and visually appealing way. The\n" @@ -18914,7 +19147,7 @@ msgid "" "of the visual appearance." msgstr "" -#: gnu/packages/tex.scm:8904 +#: gnu/packages/tex.scm:9252 msgid "" "@code{units} is a package for typesetting physical\n" "units in a standard-looking way. The package is based upon\n" @@ -18922,7 +19155,7 @@ msgid "" "included in the @code{units} bundle." msgstr "" -#: gnu/packages/tex.scm:8922 +#: gnu/packages/tex.scm:9270 msgid "" "@code{microtype} provides a LaTeX interface to the\n" "micro-typographic extensions that were introduced by pdfTeX and have\n" @@ -18937,7 +19170,7 @@ msgid "" "the bundle." msgstr "" -#: gnu/packages/tex.scm:8947 +#: gnu/packages/tex.scm:9295 msgid "" "The @code{caption} package provides many ways to\n" "customise the captions in floating environments like figure and table.\n" @@ -18951,13 +19184,13 @@ msgid "" "@code{subcaption} and @code{totalcount} are included in the bundle." msgstr "" -#: gnu/packages/tex.scm:8976 +#: gnu/packages/tex.scm:9324 msgid "" "This package provides a drop-in replacement for the\n" "Symbol font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:8994 +#: gnu/packages/tex.scm:9342 msgid "" "The Pazo Math fonts are a family of PostScript fonts\n" "suitable for typesetting mathematics in combination with the Palatino\n" @@ -18971,7 +19204,7 @@ msgid "" "LaTeX macro support is provided in package @code{psnfss}." msgstr "" -#: gnu/packages/tex.scm:9019 +#: gnu/packages/tex.scm:9367 msgid "" "The FPL Fonts provide a set of SC/OsF fonts for URW\n" "Palladio L which are compatible with the Palatino SC/OsF fonts from\n" @@ -18979,7 +19212,7 @@ msgid "" "the @code{psnfss} distribution." msgstr "" -#: gnu/packages/tex.scm:9043 +#: gnu/packages/tex.scm:9391 msgid "" "The @code{arev} package provides type 1 fonts,\n" "virtual fonts and LaTeX packages for using Arev Sans in both text and\n" @@ -18993,7 +19226,7 @@ msgid "" "support packages. Others are cmbright, hvmath and kerkis." msgstr "" -#: gnu/packages/tex.scm:9074 +#: gnu/packages/tex.scm:9422 msgid "" "The Math Design project offers free mathematical\n" "fonts that match with existing text fonts. To date, three free font\n" @@ -19004,7 +19237,7 @@ msgid "" "created by the Greek Font Society)." msgstr "" -#: gnu/packages/tex.scm:9099 +#: gnu/packages/tex.scm:9447 msgid "" "The @code{bera} package contains the Bera Type 1\n" "fonts and files to use the fonts with LaTeX. Bera is a set of three\n" @@ -19013,7 +19246,7 @@ msgid "" "a repackaging, for use with TeX, of the Bitstream Vera family." msgstr "" -#: gnu/packages/tex.scm:9122 +#: gnu/packages/tex.scm:9470 msgid "" "Fourier-GUTenberg is a LaTeX typesetting system\n" "which uses Adobe Utopia as its standard base font. Fourier-GUTenberg\n" @@ -19024,7 +19257,7 @@ msgid "" "trademark of Adobe Systems Incorporated." msgstr "" -#: gnu/packages/tex.scm:9145 +#: gnu/packages/tex.scm:9493 msgid "" "The Adobe Standard Encoding set of the Utopia font\n" "family, as contributed to the X Consortium. The set comprises upright\n" @@ -19033,7 +19266,7 @@ msgid "" "@code{mathdesign} font packages." msgstr "" -#: gnu/packages/tex.scm:9169 +#: gnu/packages/tex.scm:9517 msgid "" "The @code{fontaxes} package adds several new font\n" "axes on top of LaTeX's New Font Selection Scheme (NFSS). In\n" @@ -19042,7 +19275,7 @@ msgid "" "figure versions offered by many professional fonts." msgstr "" -#: gnu/packages/tex.scm:9192 +#: gnu/packages/tex.scm:9540 msgid "" "The bundle comprises: @code{authblk}, which permits\n" "footnote style author/affiliation input in the @command{\\author} command,\n" @@ -19052,7 +19285,7 @@ msgid "" "@code{sublabel}, which permits counters to be subnumbered." msgstr "" -#: gnu/packages/tex.scm:9211 +#: gnu/packages/tex.scm:9559 msgid "" "Many font families available for use with LaTeX are\n" "available at multiple weights. Many Type 1-oriented support packages\n" @@ -19063,7 +19296,7 @@ msgid "" "@code{mweights} package provides a solution to these difficulties." msgstr "" -#: gnu/packages/tex.scm:9237 +#: gnu/packages/tex.scm:9585 msgid "" "Cabin is a humanist sans with four weights, true\n" "italics and small capitals. According to its designer, Pablo\n" @@ -19077,7 +19310,7 @@ msgid "" "use with [pdf]LaTeX." msgstr "" -#: gnu/packages/tex.scm:9268 +#: gnu/packages/tex.scm:9616 msgid "" "The @code{newtx} bundle splits\n" "@code{txfonts.sty} (from the TX fonts distribution) into two\n" @@ -19089,7 +19322,7 @@ msgid "" "mathematics package that matches Libertine text quite well." msgstr "" -#: gnu/packages/tex.scm:9296 +#: gnu/packages/tex.scm:9644 msgid "" "@code{xcharter} repackages Bitstream Charter with an\n" "extended set of features. The extension provides small caps, oldstyle\n" @@ -19098,7 +19331,7 @@ msgid "" "Type 1 and OTF formats, with supporting files as necessary." msgstr "" -#: gnu/packages/tex.scm:9320 +#: gnu/packages/tex.scm:9668 msgid "" "The legacy @emph{texnansi} (TeX and ANSI) encoding\n" "is known in the LaTeX scheme of things as @emph{LY1} encoding. The\n" @@ -19107,14 +19340,14 @@ msgid "" "LY1 encoding." msgstr "" -#: gnu/packages/tex.scm:9349 +#: gnu/packages/tex.scm:9697 msgid "" "This is a LaTeX2ε package to help change the style of any or\n" "all of LaTeX's sectional headers in the article, book, or report classes.\n" "Examples include the addition of rules above or below a section title." msgstr "" -#: gnu/packages/tex.scm:9375 +#: gnu/packages/tex.scm:9723 msgid "" "LaTeX can, by default, only cope with 18 outstanding floats;\n" "any more, and you get the error “too many unprocessed floats”. This package\n" @@ -19125,19 +19358,19 @@ msgid "" "floats merely delays the arrival of the inevitable error message." msgstr "" -#: gnu/packages/tex.scm:9408 +#: gnu/packages/tex.scm:9756 msgid "" "This package provides a command for the LaTeX programmer for\n" "testing whether an argument is empty." msgstr "" -#: gnu/packages/tex.scm:9435 +#: gnu/packages/tex.scm:9783 msgid "" "The pagenote package provides tagged notes on a separate\n" "page (also known as ‘end notes’)." msgstr "" -#: gnu/packages/tex.scm:9463 +#: gnu/packages/tex.scm:9811 msgid "" "The @code{titling} package provides control over the\n" "typesetting of the @code{\\maketitle} command and @code{\\thanks} commands,\n" @@ -19147,7 +19380,7 @@ msgid "" "a physical page." msgstr "" -#: gnu/packages/tex.scm:9493 +#: gnu/packages/tex.scm:9841 msgid "" "This package provides an @code{\\ifoddpage} conditional to\n" "determine if the current page is odd or even. The macro @code{\\checkoddpage}\n" @@ -19157,7 +19390,7 @@ msgid "" "@code{oneside} mode where all pages use the odd page layout." msgstr "" -#: gnu/packages/tex.scm:9523 +#: gnu/packages/tex.scm:9871 msgid "" "The package provides \"store boxes\" whose user interface\n" "matches that of normal LaTeX \"save boxes\", except that the content of a\n" @@ -19166,7 +19399,7 @@ msgid "" "DVI is output, store boxes behave the same as save boxes." msgstr "" -#: gnu/packages/tex.scm:9552 +#: gnu/packages/tex.scm:9900 msgid "" "The package provides macros to collect and process a macro\n" "argument (i.e., something which looks like a macro argument) as a horizontal\n" @@ -19179,13 +19412,13 @@ msgid "" "The macros were designed for use within other macros." msgstr "" -#: gnu/packages/tex.scm:9584 +#: gnu/packages/tex.scm:9932 msgid "" "This package provides macros for adding to, and reordering\n" "the list of graphics file extensions recognised by package graphics." msgstr "" -#: gnu/packages/tex.scm:9618 +#: gnu/packages/tex.scm:9966 msgid "" "The package provides several macros to adjust boxed\n" "content. One purpose is to supplement the standard @code{graphics} package,\n" @@ -19198,7 +19431,7 @@ msgid "" "@code{\\minsizebox}, @code{\\maxsizebox} and @code{\\phantombox}." msgstr "" -#: gnu/packages/tex.scm:9644 +#: gnu/packages/tex.scm:9992 msgid "" "This package provides an environment for colored and\n" "framed text boxes with a heading line. Optionally, such a box may be split in\n" @@ -19209,7 +19442,7 @@ msgid "" "parts." msgstr "" -#: gnu/packages/tex.scm:9675 +#: gnu/packages/tex.scm:10023 msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems. The commands allow for writing\n" @@ -19218,13 +19451,13 @@ msgid "" "styles of inference rules, placement of labels, etc." msgstr "" -#: gnu/packages/tex.scm:9704 +#: gnu/packages/tex.scm:10052 msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems." msgstr "" -#: gnu/packages/tex.scm:9724 +#: gnu/packages/tex.scm:10072 msgid "" "This package provides the European currency symbol for the\n" "Euro implemented in METAFONT, using the official European Commission\n" @@ -19233,7 +19466,7 @@ msgid "" "pre-compiled font files, and documentation." msgstr "" -#: gnu/packages/tex.scm:9754 +#: gnu/packages/tex.scm:10102 msgid "" "The @code{kastrup} package provides the\n" "@emph{binhex.tex} file. This file provides expandable macros for both\n" @@ -19243,7 +19476,7 @@ msgid "" "LaTeX and plain TeX." msgstr "" -#: gnu/packages/tex.scm:9774 +#: gnu/packages/tex.scm:10122 msgid "" "This LaTeX package provides a flexible mechanism for translating\n" "individual words into different languages. For example, it can be used to\n" @@ -19254,7 +19487,7 @@ msgid "" "automatically translate more than a few words." msgstr "" -#: gnu/packages/tex.scm:9795 +#: gnu/packages/tex.scm:10143 msgid "" "This package facilitates placing boxes at absolute positions on the\n" "LaTeX page. There are several reasons why this might be useful, but the main\n" @@ -19267,7 +19500,7 @@ msgid "" "accompanied by various configuration commands." msgstr "" -#: gnu/packages/tex.scm:9819 +#: gnu/packages/tex.scm:10167 msgid "" "This package extends the @code{ifthen} package by implementing new\n" "commands to go within the first argument of @code{\\\\ifthenelse}: to test\n" @@ -19277,14 +19510,14 @@ msgid "" "handle complex tests." msgstr "" -#: gnu/packages/tex.scm:9852 +#: gnu/packages/tex.scm:10200 msgid "" "BibTool manipulates BibTeX files. The possibilities of BibTool include\n" "sorting and merging of BibTeX databases, generation of uniform reference keys,\n" "and selecting references used in a publication." msgstr "" -#: gnu/packages/texinfo.scm:87 +#: gnu/packages/texinfo.scm:88 msgid "" "Texinfo is the official documentation format of the GNU project. It\n" "uses a single source file using explicit commands to produce a final document\n" @@ -19294,7 +19527,7 @@ msgid "" "is on expressing the content semantically, avoiding physical markup commands." msgstr "" -#: gnu/packages/texinfo.scm:216 +#: gnu/packages/texinfo.scm:230 msgid "" "Texi2HTML is a Perl script which converts Texinfo source files to HTML\n" "output. It now supports many advanced features, such as internationalization\n" @@ -19309,7 +19542,7 @@ msgid "" "Texi2HTML." msgstr "" -#: gnu/packages/texinfo.scm:283 +#: gnu/packages/texinfo.scm:297 msgid "" "Pinfo is an Info file viewer. Pinfo is similar in use to the Lynx web\n" "browser. You just move across info nodes, and select links, follow them, etc.\n" @@ -19668,6 +19901,12 @@ msgstr "" #: gnu/packages/textutils.scm:1406 msgid "" +"@code{utf-8-lineseparator} provides a tool to efficiently check text\n" +"files for valid UTF-8 use and to report which line endings they use." +msgstr "" + +#: gnu/packages/textutils.scm:1439 +msgid "" "@code{csvdiff} is a diff tool to compute changes between two\n" "CSV files. It can compare CSV files with a million records in under 2\n" "seconds. It is specifically suited for comparing CSV files dumped from\n" @@ -19869,27 +20108,27 @@ msgid "" "visualize your public Git repositories on a web interface." msgstr "" -#: gnu/packages/version-control.scm:1706 +#: gnu/packages/version-control.scm:1699 msgid "" "Pre-commit is a multi-language package manager for pre-commit hooks. You\n" "specify a list of hooks you want and pre-commit manages the installation and\n" "execution of any hook written in any language before every commit." msgstr "" -#: gnu/packages/version-control.scm:1796 +#: gnu/packages/version-control.scm:1789 msgid "" "Mercurial is a free, distributed source control management tool. It\n" "efficiently handles projects of any size and offers an easy and intuitive\n" "interface." msgstr "" -#: gnu/packages/version-control.scm:1823 +#: gnu/packages/version-control.scm:1816 msgid "" "Evolve is a Mercurial extension for faster and safer mutable\n" "history. It implements the changeset evolution concept for Mercurial." msgstr "" -#: gnu/packages/version-control.scm:1879 +#: gnu/packages/version-control.scm:1872 msgid "" "This package provides a Mercurial extension for signing\n" "the changeset hash of commits. The signure is embedded directly in the\n" @@ -19897,7 +20136,7 @@ msgid "" "can be used for signing." msgstr "" -#: gnu/packages/version-control.scm:1914 +#: gnu/packages/version-control.scm:1907 msgid "" "Neon is an HTTP and WebDAV client library, with a C interface and the\n" "following features:\n" @@ -19919,7 +20158,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/version-control.scm:2010 +#: gnu/packages/version-control.scm:2003 msgid "" "@dfn{Subversion} (svn) exists to be recognized and adopted as a\n" "centralized version control system characterized by its\n" @@ -19928,7 +20167,7 @@ msgid "" "projects, from individuals to large-scale enterprise operations." msgstr "" -#: gnu/packages/version-control.scm:2044 +#: gnu/packages/version-control.scm:2037 msgid "" "RCS is the original Revision Control System. It works on a\n" "file-by-file basis, in contrast to subsequent version control systems such as\n" @@ -19937,21 +20176,21 @@ msgid "" "machine." msgstr "" -#: gnu/packages/version-control.scm:2067 +#: gnu/packages/version-control.scm:2060 msgid "" "@code{blame} outputs an annotated revision from each RCS file. An\n" "annotated RCS file describes the revision and date in which each line was\n" "added to the file, and the author of each line." msgstr "" -#: gnu/packages/version-control.scm:2088 +#: gnu/packages/version-control.scm:2081 msgid "" "The @code{rcshist} utility displays the complete revision history of a\n" "set of RCS files including log messages and patches. It can also display the\n" "patch associated with a particular revision of an RCS file." msgstr "" -#: gnu/packages/version-control.scm:2116 +#: gnu/packages/version-control.scm:2109 msgid "" "CVS is a version control system, an important component of Source\n" "Configuration Management (SCM). Using it, you can record the history of\n" @@ -19959,7 +20198,7 @@ msgid "" "RCS, PRCS, and Aegis packages." msgstr "" -#: gnu/packages/version-control.scm:2150 +#: gnu/packages/version-control.scm:2143 msgid "" "This program analyzes a collection of RCS files in a CVS\n" "repository (or outside of one) and, when possible, emits an equivalent history\n" @@ -19972,7 +20211,7 @@ msgid "" "masters from remote CVS hosts." msgstr "" -#: gnu/packages/version-control.scm:2180 +#: gnu/packages/version-control.scm:2173 msgid "" "The vc-dwim package contains two tools, \"vc-dwim\" and \"vc-chlog\".\n" "vc-dwim is a tool that simplifies the task of maintaining a ChangeLog and\n" @@ -19982,21 +20221,21 @@ msgid "" "standards-compliant ChangeLog entries based on the changes that it detects." msgstr "" -#: gnu/packages/version-control.scm:2207 +#: gnu/packages/version-control.scm:2200 msgid "" "Diffstat reads the output of @command{diff} and displays a histogram of\n" "the insertions, deletions, and modifications per file. It is useful for\n" "reviewing large, complex patch files." msgstr "" -#: gnu/packages/version-control.scm:2246 +#: gnu/packages/version-control.scm:2239 msgid "" "GNU CSSC provides a replacement for the legacy Unix source\n" "code control system SCCS. This allows old code still under that system to be\n" "accessed and migrated on modern systems." msgstr "" -#: gnu/packages/version-control.scm:2338 +#: gnu/packages/version-control.scm:2331 msgid "" "Aegis is a project change supervisor, and performs some of\n" "the Software Configuration Management needed in a CASE environment. Aegis\n" @@ -20007,7 +20246,7 @@ msgid "" "any project with more than one developer, is one of Aegis's major functions." msgstr "" -#: gnu/packages/version-control.scm:2412 +#: gnu/packages/version-control.scm:2405 msgid "" "Reposurgeon enables risky operations that version-control\n" "systems don't want to let you do, such as editing past comments and metadata\n" @@ -20018,20 +20257,20 @@ msgid "" "from Subversion to any supported Distributed Version Control System (DVCS)." msgstr "" -#: gnu/packages/version-control.scm:2451 +#: gnu/packages/version-control.scm:2444 msgid "" "Tig is an ncurses text user interface for Git, primarily intended as\n" "a history browser. It can also stage hunks for commit, or colorize the\n" "output of the @code{git} command." msgstr "" -#: gnu/packages/version-control.scm:2474 +#: gnu/packages/version-control.scm:2467 msgid "" "Recursively find the newest file in a file tree and print its\n" "modification time." msgstr "" -#: gnu/packages/version-control.scm:2521 +#: gnu/packages/version-control.scm:2514 msgid "" "Myrepos provides the @code{mr} command, which maps an operation (e.g.,\n" "fetching updates) over a collection of version control repositories. It\n" @@ -20039,14 +20278,14 @@ msgid "" "Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity." msgstr "" -#: gnu/packages/version-control.scm:2558 +#: gnu/packages/version-control.scm:2551 msgid "" "Grokmirror enables replicating large git repository\n" "collections efficiently. Mirrors decide to clone and update repositories\n" "based on a manifest file published by servers." msgstr "" -#: gnu/packages/version-control.scm:2588 +#: gnu/packages/version-control.scm:2581 msgid "" "The @code{b4} command is designed to make it easier to participate in\n" "patch-based workflows for projects that have public-inbox archives.\n" @@ -20060,26 +20299,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/version-control.scm:2635 +#: gnu/packages/version-control.scm:2628 msgid "" "This wrapper around rclone makes any destination supported\n" "by rclone usable with git-annex." msgstr "" -#: gnu/packages/version-control.scm:2689 +#: gnu/packages/version-control.scm:2682 msgid "" "Fossil is a distributed source control management system which supports\n" "access and administration over HTTP CGI or via a built-in HTTP server. It has\n" "a built-in wiki, built-in file browsing, built-in tickets system, etc." msgstr "" -#: gnu/packages/version-control.scm:2720 +#: gnu/packages/version-control.scm:2713 msgid "" "Stagit creates static pages for git repositories, the results can\n" "be served with a HTTP file server of your choice." msgstr "" -#: gnu/packages/version-control.scm:2756 +#: gnu/packages/version-control.scm:2749 msgid "" "@code{gource} provides a software version control\n" "visualization. The repository is displayed as a tree where the root of the\n" @@ -20088,7 +20327,7 @@ msgid "" "specific files and directories." msgstr "" -#: gnu/packages/version-control.scm:2804 +#: gnu/packages/version-control.scm:2797 #, scheme-format msgid "" "SRC (or src) is simple revision control, a version-control system for\n" @@ -20098,7 +20337,7 @@ msgid "" "directory full of HOWTOs." msgstr "" -#: gnu/packages/version-control.scm:2856 +#: gnu/packages/version-control.scm:2849 msgid "" "This Git extension defines a subcommand,\n" "@code{when-merged}, whose core operation is to find the merge that brought a\n" @@ -20106,7 +20345,7 @@ msgid "" "how information about the merge is displayed." msgstr "" -#: gnu/packages/version-control.scm:2900 +#: gnu/packages/version-control.scm:2893 msgid "" "This Git extension defines a subcommand, @code{imerge},\n" "which performs an incremental merge between two branches. Its two primary\n" @@ -20115,20 +20354,20 @@ msgid "" "interrupted, published, and collaborated on while in progress." msgstr "" -#: gnu/packages/version-control.scm:2951 +#: gnu/packages/version-control.scm:2944 msgid "" "Git Large File Storage (LFS) replaces large files such as audio samples,\n" "videos, datasets, and graphics with text pointers inside Git, while storing the\n" "file contents on a remote server." msgstr "" -#: gnu/packages/version-control.scm:2986 +#: gnu/packages/version-control.scm:2979 msgid "" "@code{git open} opens the repository's website from the command-line,\n" "guessing the URL pattern from the @code{origin} remote." msgstr "" -#: gnu/packages/version-control.scm:3040 +#: gnu/packages/version-control.scm:3033 msgid "" "GNU Arch, aka. @code{tla}, was one of the first free distributed\n" "version-control systems (DVCS). It saw its last release in 2006. This\n" @@ -20136,18 +20375,18 @@ msgid "" "for historians." msgstr "" -#: gnu/packages/version-control.scm:3086 +#: gnu/packages/version-control.scm:3079 msgid "" "@code{diff-so-fancy} strives to make your diffs human readable instead\n" "of machine readable. This helps improve code quality and helps you spot\n" "defects faster." msgstr "" -#: gnu/packages/version-control.scm:3142 +#: gnu/packages/version-control.scm:3135 msgid "This package provides a Git implementation library." msgstr "" -#: gnu/packages/version-control.scm:3192 +#: gnu/packages/version-control.scm:3185 msgid "" "This package provides a command-line tool to manage\n" "multiple Git repos.\n" @@ -20162,7 +20401,7 @@ msgid "" "If several repos are related, it helps to see their status together." msgstr "" -#: gnu/packages/version-control.scm:3250 +#: gnu/packages/version-control.scm:3243 #, scheme-format msgid "" "@code{ghq} provides a way to organize remote repository clones, like\n" @@ -20171,7 +20410,7 @@ msgid "" "using the remote repository URL's host and path." msgstr "" -#: gnu/packages/version-control.scm:3295 +#: gnu/packages/version-control.scm:3288 msgid "" "TkRev (formerly TkCVS) is a Tcl/Tk-based graphical interface to the CVS,\n" "Subversion and Git configuration management systems. It will also help with\n" @@ -20180,7 +20419,7 @@ msgid "" "TkDiff is included for browsing and merging your changes." msgstr "" -#: gnu/packages/version-control.scm:3328 +#: gnu/packages/version-control.scm:3321 msgid "" "@command{git filter-repo} is a versatile tool for rewriting history,\n" "which roughly falls into the same space of tool like git filter-branch but\n" @@ -20218,7 +20457,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:865 +#: gnu/packages/virtualization.scm:870 msgid "" "Ganeti is a virtual machine management tool built on top of existing\n" "virtualization technologies such as Xen or KVM. Ganeti controls:\n" @@ -20235,19 +20474,19 @@ msgid "" "commodity hardware." msgstr "" -#: gnu/packages/virtualization.scm:902 +#: gnu/packages/virtualization.scm:907 msgid "" "This package provides a guest OS definition for Ganeti that uses\n" "Guix to build virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:996 +#: gnu/packages/virtualization.scm:1001 msgid "" "This package provides a guest OS definition for Ganeti. It installs\n" "Debian or a derivative using @command{debootstrap}." msgstr "" -#: gnu/packages/virtualization.scm:1056 +#: gnu/packages/virtualization.scm:1061 msgid "" "libosinfo is a GObject based library API for managing\n" "information about operating systems, hypervisors and the (virtual) hardware\n" @@ -20257,21 +20496,21 @@ msgid "" "all common programming languages. Vala bindings are also provided." msgstr "" -#: gnu/packages/virtualization.scm:1105 +#: gnu/packages/virtualization.scm:1109 msgid "" "LXC is a userspace interface for the Linux kernel containment features.\n" "Through a powerful API and simple tools, it lets Linux users easily create and\n" "manage system or application containers." msgstr "" -#: gnu/packages/virtualization.scm:1131 +#: gnu/packages/virtualization.scm:1135 msgid "" "LXCFS is a small FUSE file system written with the intention\n" "of making Linux containers feel more like a virtual machine.\n" "It started as a side project of LXC but can be used by any run-time." msgstr "" -#: gnu/packages/virtualization.scm:1239 +#: gnu/packages/virtualization.scm:1237 msgid "" "LXD is a next generation system container manager. It\n" "offers a user experience similar to virtual machines but using Linux\n" @@ -20280,7 +20519,7 @@ msgid "" "pretty simple, REST API." msgstr "" -#: gnu/packages/virtualization.scm:1332 +#: gnu/packages/virtualization.scm:1330 msgid "" "Libvirt is a C toolkit to interact with the virtualization\n" "capabilities of recent versions of Linux. The library aims at providing long\n" @@ -20288,7 +20527,7 @@ msgid "" "to integrate other virtualization mechanisms if needed." msgstr "" -#: gnu/packages/virtualization.scm:1363 +#: gnu/packages/virtualization.scm:1359 msgid "" "libvirt-glib wraps the libvirt library to provide a\n" "high-level object-oriented API better suited for glib-based applications, via\n" @@ -20301,13 +20540,13 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/virtualization.scm:1407 +#: gnu/packages/virtualization.scm:1403 msgid "" "This package provides Python bindings to the libvirt\n" "virtualization library." msgstr "" -#: gnu/packages/virtualization.scm:1520 +#: gnu/packages/virtualization.scm:1516 msgid "" "The virt-manager application is a desktop user interface for managing\n" "virtual machines through libvirt. It primarily targets KVM VMs, but also\n" @@ -20315,7 +20554,7 @@ msgid "" "domains, their live performance and resource utilization statistics." msgstr "" -#: gnu/packages/virtualization.scm:1620 +#: gnu/packages/virtualization.scm:1616 msgid "" "Using this tool, you can freeze a running application (or\n" "part of it) and checkpoint it to a hard drive as a collection of files. You\n" @@ -20324,14 +20563,14 @@ msgid "" "mainly implemented in user space." msgstr "" -#: gnu/packages/virtualization.scm:1647 +#: gnu/packages/virtualization.scm:1643 msgid "" "qmpbackup is designed to create and restore full and\n" "incremental backups of running QEMU virtual machines via QMP, the QEMU\n" "Machine Protocol." msgstr "" -#: gnu/packages/virtualization.scm:1731 +#: gnu/packages/virtualization.scm:1727 msgid "" "Looking Glass allows the use of a KVM (Kernel-based Virtual\n" "Machine) configured for VGA PCI Pass-through without an attached physical\n" @@ -20339,7 +20578,7 @@ msgid "" "main monitor/GPU." msgstr "" -#: gnu/packages/virtualization.scm:1783 +#: gnu/packages/virtualization.scm:1779 msgid "" "@command{runc} is a command line client for running applications\n" "packaged according to the\n" @@ -20348,13 +20587,13 @@ msgid "" "Open Container Initiative specification." msgstr "" -#: gnu/packages/virtualization.scm:1832 +#: gnu/packages/virtualization.scm:1828 msgid "" "@command{umoci} is a tool that allows for high-level modification of an\n" "Open Container Initiative (OCI) image layout and its tagged images." msgstr "" -#: gnu/packages/virtualization.scm:1886 +#: gnu/packages/virtualization.scm:1882 msgid "" "@command{skopeo} is a command line utility providing various operations\n" "with container images and container image registries. It can:\n" @@ -20375,14 +20614,14 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:1922 +#: gnu/packages/virtualization.scm:1918 msgid "" "Python-vagrant is a Python module that provides a thin wrapper around the\n" "@code{vagrant} command line executable, allowing programmatic control of Vagrant\n" "virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:1977 +#: gnu/packages/virtualization.scm:1979 msgid "" "Bubblewrap is aimed at running applications in a sandbox,\n" "restricting their access to parts of the operating system or user data such as\n" @@ -20392,7 +20631,7 @@ msgid "" "by default and can be made read-only." msgstr "" -#: gnu/packages/virtualization.scm:2004 +#: gnu/packages/virtualization.scm:2006 msgid "" "Bochs is an emulator which can emulate Intel x86 CPU, common I/O\n" "devices, and a custom BIOS. It can also be compiled to emulate many different\n" @@ -20401,64 +20640,67 @@ msgid "" "DOS or Microsoft Windows." msgstr "" -#: gnu/packages/virtualization.scm:2210 +#: gnu/packages/virtualization.scm:2212 msgid "" "This package provides the Xen Virtual Machine Monitor\n" "which is a hypervisor." msgstr "" -#: gnu/packages/virtualization.scm:2242 +#: gnu/packages/virtualization.scm:2244 msgid "" "This package contains a set of tools to assist\n" "administrators and developers in managing the database." msgstr "" -#: gnu/packages/virtualization.scm:2275 +#: gnu/packages/virtualization.scm:2277 msgid "" "Osinfo-db provides the database files for use with the\n" "libosinfo library. It provides information about guest operating systems for\n" "use with virtualization provisioning tools" msgstr "" -#: gnu/packages/virtualization.scm:2317 +#: gnu/packages/virtualization.scm:2319 msgid "" "@code{transient} is a wrapper for QEMU allowing the creation of virtual\n" "machines with shared folder, ssh, and disk creation support." msgstr "" -#: gnu/packages/webkit.scm:93 +#: gnu/packages/webkit.scm:94 msgid "" "LibWPE is general-purpose library specifically developed for\n" "the WPE-flavored port of WebKit." msgstr "" -#: gnu/packages/webkit.scm:119 +#: gnu/packages/webkit.scm:120 msgid "" "This package provides a backend implementation for the WPE WebKit\n" "engine that uses Wayland for graphics output." msgstr "" -#: gnu/packages/webkit.scm:216 +#: gnu/packages/webkit.scm:227 msgid "" "WPE WebKit allows embedders to create simple and performant\n" "systems based on Web platform technologies. It is designed with hardware\n" "acceleration in mind, leveraging common 3D graphics APIs for best performance." msgstr "" -#: gnu/packages/webkit.scm:351 +#: gnu/packages/webkit.scm:355 msgid "" "WebKitGTK+ is a full-featured port of the WebKit rendering engine,\n" "suitable for projects requiring any kind of web integration, from hybrid\n" -"HTML/CSS applications to full-fledged web browsers." +"HTML/CSS applications to full-fledged web browsers. WebKitGTK+ video playing\n" +"capabilities can be extended through the use of GStreamer plugins (not\n" +"propagated by default) such as @code{gst-plugins-good} and\n" +"@code{gst-plugins-bad}." msgstr "" -#: gnu/packages/web.scm:250 +#: gnu/packages/web.scm:251 msgid "" "Qhttp is a light-weight and asynchronous HTTP library\n" "(both server & client) in Qt5 and C++14." msgstr "" -#: gnu/packages/web.scm:280 +#: gnu/packages/web.scm:281 msgid "" "The Apache HTTP Server Project is a collaborative software development\n" "effort aimed at creating a robust, commercial-grade, featureful, and\n" @@ -20468,14 +20710,14 @@ msgid "" "and its related documentation." msgstr "" -#: gnu/packages/web.scm:314 +#: gnu/packages/web.scm:315 msgid "" "The mod_wsgi module for the Apache HTTPD Server adds support for running\n" "applications that support the Python @acronym{WSGI, Web Server Gateway\n" "Interface} specification." msgstr "" -#: gnu/packages/web.scm:356 +#: gnu/packages/web.scm:357 msgid "" "Monolith bundles any web page into a single HTML file.\n" "\n" @@ -20488,38 +20730,38 @@ msgid "" "the same, being completely separated from the Internet." msgstr "" -#: gnu/packages/web.scm:460 +#: gnu/packages/web.scm:461 msgid "" "Nginx (\"engine X\") is a high-performance web and reverse proxy server\n" "created by Igor Sysoev. It can be used both as a stand-alone web server\n" "and as a proxy to reduce the load on back-end HTTP or mail servers." msgstr "" -#: gnu/packages/web.scm:518 +#: gnu/packages/web.scm:519 msgid "This package provides HTML documentation for the nginx web server." msgstr "" -#: gnu/packages/web.scm:647 +#: gnu/packages/web.scm:648 msgid "" "This nginx module parses the Accept-Language field in HTTP headers and\n" "chooses the most suitable locale for the user from the list of locales\n" "supported at your website." msgstr "" -#: gnu/packages/web.scm:694 +#: gnu/packages/web.scm:695 msgid "" "XSLScript is a terse notation for writing complex XSLT stylesheets.\n" "This is modified version, specifically intended for use with the NGinx\n" "documentation." msgstr "" -#: gnu/packages/web.scm:767 +#: gnu/packages/web.scm:768 msgid "" "This NGINX module provides a scripting support with Lua\n" "programming language." msgstr "" -#: gnu/packages/web.scm:820 +#: gnu/packages/web.scm:821 msgid "" "This NGINX module provides streaming with the @acronym{RTMP,\n" "Real-Time Messaging Protocol}, @acronym{DASH, Dynamic Adaptive Streaming over HTTP},\n" @@ -20529,7 +20771,7 @@ msgid "" "stream. Remote control of the module is possible over HTTP." msgstr "" -#: gnu/packages/web.scm:882 +#: gnu/packages/web.scm:883 msgid "" "Lighttpd is a secure, fast, compliant, and very flexible web-server that\n" "has been optimized for high-performance environments. It has a very low\n" @@ -20537,41 +20779,41 @@ msgid "" "CGI, authentication, output compression, URL rewriting and many more." msgstr "" -#: gnu/packages/web.scm:910 +#: gnu/packages/web.scm:911 msgid "" "FastCGI is a language-independent, scalable extension to CGI\n" "that provides high performance without the limitations of server specific\n" "APIs." msgstr "" -#: gnu/packages/web.scm:948 +#: gnu/packages/web.scm:949 msgid "" "Fcgiwrap is a simple server for running CGI applications\n" "over FastCGI. It hopes to provide clean CGI support to Nginx (and other web\n" "servers that may need it)." msgstr "" -#: gnu/packages/web.scm:977 +#: gnu/packages/web.scm:978 msgid "" "Starman is a PSGI perl web server that has unique features\n" "such as high performance, preforking, signal support, superdaemon awareness,\n" "and UNIX socket support." msgstr "" -#: gnu/packages/web.scm:1010 +#: gnu/packages/web.scm:1011 msgid "" "IcedTea-Web is an implementation of the @dfn{Java Network Launching\n" "Protocol}, also known as Java Web Start. This package provides tools and\n" "libraries for working with JNLP applets." msgstr "" -#: gnu/packages/web.scm:1035 +#: gnu/packages/web.scm:1036 msgid "" "Jansson is a C library for encoding, decoding and manipulating JSON\n" "data." msgstr "" -#: gnu/packages/web.scm:1055 +#: gnu/packages/web.scm:1056 msgid "" "JSON-C implements a reference counting object model that allows you to\n" "easily construct JSON objects in C, output them as JSON-formatted strings and\n" @@ -20579,7 +20821,7 @@ msgid "" "It aims to conform to RFC 7159." msgstr "" -#: gnu/packages/web.scm:1131 +#: gnu/packages/web.scm:1132 msgid "" "This package provides a very low footprint JSON parser\n" "written in portable ANSI C.\n" @@ -20592,21 +20834,21 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:1176 +#: gnu/packages/web.scm:1177 msgid "" "QJson is a Qt-based library that maps JSON data to\n" "@code{QVariant} objects. JSON arrays will be mapped to @code{QVariantList}\n" "instances, while JSON's objects will be mapped to @code{QVariantMap}." msgstr "" -#: gnu/packages/web.scm:1227 +#: gnu/packages/web.scm:1228 msgid "" "QOAuth is an attempt to support interaction with\n" "OAuth-powered network services in a Qt way, i.e. simply, clearly and\n" "efficiently. It gives the application developer no more than 4 methods." msgstr "" -#: gnu/packages/web.scm:1339 +#: gnu/packages/web.scm:1340 msgid "" "Krona is a flexible tool for exploring the relative proportions of\n" "hierarchical data, such as metagenomic classifications, using a radial,\n" @@ -20615,26 +20857,26 @@ msgid "" "current version of any major web browser." msgstr "" -#: gnu/packages/web.scm:1380 +#: gnu/packages/web.scm:1381 msgid "" "RapidJSON is a fast JSON parser/generator for C++ with both SAX/DOM\n" "style API." msgstr "" -#: gnu/packages/web.scm:1409 +#: gnu/packages/web.scm:1410 msgid "" "Yet Another JSON Library (YAJL) is a small event-driven (SAX-style) JSON\n" "parser written in ANSI C and a small validating JSON generator." msgstr "" -#: gnu/packages/web.scm:1439 +#: gnu/packages/web.scm:1440 msgid "" "Libwebsockets is a library that allows C programs to establish client\n" "and server WebSockets connections---a protocol layered above HTTP that allows\n" "for efficient socket-like bidirectional reliable communication channels." msgstr "" -#: gnu/packages/web.scm:1468 +#: gnu/packages/web.scm:1469 msgid "" "WABT (pronounced: wabbit) is a suite of tools for\n" "WebAssembly, including:\n" @@ -20659,7 +20901,7 @@ msgid "" "other systems that want to manipulate WebAssembly files." msgstr "" -#: gnu/packages/web.scm:1518 +#: gnu/packages/web.scm:1519 msgid "" "WebSocket++ is a C++ library that can be used to implement\n" "WebSocket functionality. The goals of the project are to provide a WebSocket\n" @@ -20667,7 +20909,7 @@ msgid "" "high performance." msgstr "" -#: gnu/packages/web.scm:1558 +#: gnu/packages/web.scm:1559 msgid "" "@code{Wslay} is an event-based C library for the WebSocket\n" "protocol version 13, described in RFC 6455. Besides a high-level API it\n" @@ -20676,7 +20918,7 @@ msgid "" "perform the opening handshake in HTTP." msgstr "" -#: gnu/packages/web.scm:1588 +#: gnu/packages/web.scm:1589 msgid "" "A \"public suffix\" is a domain name under which Internet users can\n" "directly register own names.\n" @@ -20694,20 +20936,20 @@ msgid "" "UTS#46." msgstr "" -#: gnu/packages/web.scm:1633 +#: gnu/packages/web.scm:1634 msgid "" "HTML Tidy is a command-line tool and C library that can be\n" "used to validate and fix HTML data." msgstr "" -#: gnu/packages/web.scm:1680 +#: gnu/packages/web.scm:1681 msgid "" "The esbuild tool provides a unified bundler, transpiler and\n" "minifier. It packages up JavaScript and TypeScript code, along with JSON\n" "and other data, for distribution on the web." msgstr "" -#: gnu/packages/web.scm:1716 +#: gnu/packages/web.scm:1717 msgid "" "Tinyproxy is a light-weight HTTP/HTTPS proxy\n" "daemon. Designed from the ground up to be fast and yet small, it is an ideal\n" @@ -20716,14 +20958,14 @@ msgid "" "unavailable." msgstr "" -#: gnu/packages/web.scm:1751 +#: gnu/packages/web.scm:1752 msgid "" "Polipo is a small caching web proxy (web cache, HTTP proxy, and proxy\n" "server). It was primarily designed to be used by one person or a small group\n" "of people." msgstr "" -#: gnu/packages/web.scm:1779 +#: gnu/packages/web.scm:1780 msgid "" "Websockify translates WebSockets traffic to normal socket\n" "traffic. Websockify accepts the WebSockets handshake, parses it, and then\n" @@ -20731,7 +20973,7 @@ msgid "" "directions." msgstr "" -#: gnu/packages/web.scm:1806 +#: gnu/packages/web.scm:1807 msgid "" "WWWOFFLE is a proxy web server that is especially good for\n" "intermittent internet links. It can cache HTTP, HTTPS, FTP, and finger\n" @@ -20740,7 +20982,7 @@ msgid "" "changes, and much more." msgstr "" -#: gnu/packages/web.scm:1832 +#: gnu/packages/web.scm:1833 msgid "" "liboauth is a collection of C functions implementing the OAuth API.\n" "liboauth provides functions to escape and encode strings according to OAuth\n" @@ -20749,25 +20991,25 @@ msgid "" "hash/signatures." msgstr "" -#: gnu/packages/web.scm:1855 +#: gnu/packages/web.scm:1856 msgid "" "This package contains support scripts called by libquvi to\n" "parse media stream properties." msgstr "" -#: gnu/packages/web.scm:1889 +#: gnu/packages/web.scm:1890 msgid "" "libquvi is a library with a C API for parsing media stream\n" "URLs and extracting their actual media files." msgstr "" -#: gnu/packages/web.scm:1911 +#: gnu/packages/web.scm:1912 msgid "" "quvi is a command-line-tool suite to extract media files\n" "from streaming URLs. It is a command-line wrapper for the libquvi library." msgstr "" -#: gnu/packages/web.scm:1983 +#: gnu/packages/web.scm:1984 msgid "" "serf is a C-based HTTP client library built upon the Apache Portable\n" "Runtime (APR) library. It multiplexes connections, running the read/write\n" @@ -20775,7 +21017,7 @@ msgid "" "minimum to provide high performance operation." msgstr "" -#: gnu/packages/web.scm:2018 +#: gnu/packages/web.scm:2019 msgid "" "LibSass is a @acronym{SASS,Syntactically awesome style sheets} compiler\n" "library designed for portability and efficiency. To actually compile SASS\n" @@ -20783,29 +21025,29 @@ msgid "" "@var{sassc} for example." msgstr "" -#: gnu/packages/web.scm:2067 +#: gnu/packages/web.scm:2068 msgid "" "SassC is a compiler written in C for the CSS pre-processor\n" "language known as SASS." msgstr "" -#: gnu/packages/web.scm:2112 +#: gnu/packages/web.scm:2113 msgid "" "This module provides methods to compile a log format string\n" "to perl-code, for faster generation of access_log lines." msgstr "" -#: gnu/packages/web.scm:2140 +#: gnu/packages/web.scm:2141 msgid "Authen::SASL provides an SASL authentication framework." msgstr "" -#: gnu/packages/web.scm:2163 +#: gnu/packages/web.scm:2164 msgid "" "This Catalyst action implements a sensible default end\n" "action, which will forward to the first available view." msgstr "" -#: gnu/packages/web.scm:2195 +#: gnu/packages/web.scm:2196 msgid "" "This Action handles doing automatic method dispatching for\n" "REST requests. It takes a normal Catalyst action, and changes the dispatch to\n" @@ -20814,20 +21056,20 @@ msgid "" "regular method." msgstr "" -#: gnu/packages/web.scm:2226 +#: gnu/packages/web.scm:2227 msgid "" "The Catalyst::Authentication::Store::DBIx::Class class\n" "provides access to authentication information stored in a database via\n" "DBIx::Class." msgstr "" -#: gnu/packages/web.scm:2252 +#: gnu/packages/web.scm:2253 msgid "" "Catalyst::Component::InstancePerContext returns a new\n" "instance of a component on each request." msgstr "" -#: gnu/packages/web.scm:2288 +#: gnu/packages/web.scm:2289 msgid "" "The Catalyst-Devel distribution includes a variety of\n" "modules useful for the development of Catalyst applications, but not required\n" @@ -20837,7 +21079,7 @@ msgid "" "modules." msgstr "" -#: gnu/packages/web.scm:2316 +#: gnu/packages/web.scm:2317 msgid "" "Dispatch type managing path-matching behaviour using\n" "regexes. Regex dispatch types have been deprecated and removed from Catalyst\n" @@ -20847,20 +21089,20 @@ msgid "" "when the dispatch type is first seen in your application." msgstr "" -#: gnu/packages/web.scm:2363 +#: gnu/packages/web.scm:2364 msgid "" "This is a Catalyst Model for DBIx::Class::Schema-based\n" "Models." msgstr "" -#: gnu/packages/web.scm:2385 +#: gnu/packages/web.scm:2386 msgid "" "This Catalyst plugin enables you to create \"access logs\"\n" "from within a Catalyst application instead of requiring a webserver to do it\n" "for you. It will work even with Catalyst debug logging turned off." msgstr "" -#: gnu/packages/web.scm:2419 +#: gnu/packages/web.scm:2420 msgid "" "The authentication plugin provides generic user support for\n" "Catalyst apps. It is the basis for both authentication (checking the user is\n" @@ -20868,32 +21110,32 @@ msgid "" "system authorises them to do)." msgstr "" -#: gnu/packages/web.scm:2447 +#: gnu/packages/web.scm:2448 msgid "" "Catalyst::Plugin::Authorization::Roles provides role-based\n" "authorization for Catalyst based on Catalyst::Plugin::Authentication." msgstr "" -#: gnu/packages/web.scm:2469 +#: gnu/packages/web.scm:2470 msgid "" "This plugin creates and validates Captcha images for\n" "Catalyst." msgstr "" -#: gnu/packages/web.scm:2493 +#: gnu/packages/web.scm:2494 msgid "" "This module will attempt to load find and load configuration\n" "files of various types. Currently it supports YAML, JSON, XML, INI and Perl\n" "formats." msgstr "" -#: gnu/packages/web.scm:2522 +#: gnu/packages/web.scm:2523 msgid "" "This plugin links the two pieces required for session\n" "management in web applications together: the state, and the store." msgstr "" -#: gnu/packages/web.scm:2548 +#: gnu/packages/web.scm:2549 msgid "" "In order for Catalyst::Plugin::Session to work, the session\n" "ID needs to be stored on the client, and the session data needs to be stored\n" @@ -20901,14 +21143,14 @@ msgid "" "cookie mechanism." msgstr "" -#: gnu/packages/web.scm:2578 +#: gnu/packages/web.scm:2579 msgid "" "Catalyst::Plugin::Session::Store::FastMmap is a fast session\n" "storage plugin for Catalyst that uses an mmap'ed file to act as a shared\n" "memory interprocess cache. It is based on Cache::FastMmap." msgstr "" -#: gnu/packages/web.scm:2602 +#: gnu/packages/web.scm:2603 msgid "" "This plugin enhances the standard Catalyst debug screen by\n" "including a stack trace of your application up to the point where the error\n" @@ -20916,7 +21158,7 @@ msgid "" "number, file name, and code context surrounding the line number." msgstr "" -#: gnu/packages/web.scm:2628 +#: gnu/packages/web.scm:2629 msgid "" "The Static::Simple plugin is designed to make serving static\n" "content in your application during development quick and easy, without\n" @@ -20927,7 +21169,7 @@ msgid "" "MIME type directly to the browser, without being processed through Catalyst." msgstr "" -#: gnu/packages/web.scm:2687 +#: gnu/packages/web.scm:2688 msgid "" "Catalyst is a modern framework for making web applications.\n" "It is designed to make it easy to manage the various tasks you need to do to\n" @@ -20935,7 +21177,7 @@ msgid "" "\"plug in\" existing Perl modules that do what you need." msgstr "" -#: gnu/packages/web.scm:2715 +#: gnu/packages/web.scm:2716 msgid "" "This module is a Moose::Role which allows you more\n" "flexibility in your application's deployment configurations when deployed\n" @@ -20943,26 +21185,26 @@ msgid "" "replaced with the contents of the X-Request-Base header." msgstr "" -#: gnu/packages/web.scm:2743 +#: gnu/packages/web.scm:2744 msgid "" "The purpose of this module is to provide a method for\n" "downloading data into many supportable formats. For example, downloading a\n" "table based report in a variety of formats (CSV, HTML, etc.)." msgstr "" -#: gnu/packages/web.scm:2767 +#: gnu/packages/web.scm:2768 msgid "" "Catalyst::View::JSON is a Catalyst View handler that returns\n" "stash data in JSON format." msgstr "" -#: gnu/packages/web.scm:2793 +#: gnu/packages/web.scm:2794 msgid "" "This module is a Catalyst view class for the Template\n" "Toolkit." msgstr "" -#: gnu/packages/web.scm:2821 +#: gnu/packages/web.scm:2822 msgid "" "Adds a \"COMPONENT\" in Catalyst::Component method to your\n" "Catalyst component base class that reads the optional \"traits\" parameter\n" @@ -20971,19 +21213,19 @@ msgid "" "MooseX::Traits::Pluggable." msgstr "" -#: gnu/packages/web.scm:2845 +#: gnu/packages/web.scm:2846 msgid "" "CatalystX::RoleApplicator applies roles to Catalyst\n" "application classes." msgstr "" -#: gnu/packages/web.scm:2870 +#: gnu/packages/web.scm:2871 msgid "" "This module provides a Catalyst extension to replace the\n" "development server with Starman." msgstr "" -#: gnu/packages/web.scm:2892 +#: gnu/packages/web.scm:2893 msgid "" "CGI.pm is a stable, complete and mature solution for\n" "processing and preparing HTTP requests and responses. Major features include\n" @@ -20992,44 +21234,44 @@ msgid "" "headers." msgstr "" -#: gnu/packages/web.scm:2919 +#: gnu/packages/web.scm:2920 msgid "" "@code{CGI::FormBuilder} provides an easy way to generate and process CGI\n" "form-based applications." msgstr "" -#: gnu/packages/web.scm:2946 +#: gnu/packages/web.scm:2947 msgid "" "@code{CGI::Session} provides modular session management system across\n" "HTTP requests." msgstr "" -#: gnu/packages/web.scm:2967 +#: gnu/packages/web.scm:2968 msgid "" "CGI::Simple provides a relatively lightweight drop in\n" "replacement for CGI.pm. It shares an identical OO interface to CGI.pm for\n" "parameter parsing, file upload, cookie handling and header generation." msgstr "" -#: gnu/packages/web.scm:2989 +#: gnu/packages/web.scm:2990 msgid "" "This is a module for building structured data from CGI\n" "inputs, in a manner reminiscent of how PHP does." msgstr "" -#: gnu/packages/web.scm:3012 +#: gnu/packages/web.scm:3013 msgid "" "This module provides functions that deal with the date\n" "formats used by the HTTP protocol." msgstr "" -#: gnu/packages/web.scm:3033 +#: gnu/packages/web.scm:3034 msgid "" "Digest::MD5::File is a Perl extension for getting MD5 sums\n" "for files and urls." msgstr "" -#: gnu/packages/web.scm:3053 +#: gnu/packages/web.scm:3054 msgid "" "The POSIX locale system is used to specify both the language\n" "conventions requested by the user and the preferred character set to\n" @@ -21041,66 +21283,66 @@ msgid "" "with Encode::decode(locale => $string)." msgstr "" -#: gnu/packages/web.scm:3086 +#: gnu/packages/web.scm:3087 msgid "" "@code{Feed::Find} implements feed auto-discovery for finding\n" "syndication feeds, given a URI. It will discover the following feed formats:\n" "RSS 0.91, RSS 1.0, RSS 2.0, Atom." msgstr "" -#: gnu/packages/web.scm:3109 +#: gnu/packages/web.scm:3110 msgid "" "The File::Listing module exports a single function called parse_dir(),\n" "which can be used to parse directory listings." msgstr "" -#: gnu/packages/web.scm:3142 +#: gnu/packages/web.scm:3143 msgid "" "Finance::Quote gets stock quotes from various internet sources, including\n" "Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange." msgstr "" -#: gnu/packages/web.scm:3165 +#: gnu/packages/web.scm:3166 msgid "" "This is a Perl extension for using GSSAPI C bindings as\n" "described in RFC 2744." msgstr "" -#: gnu/packages/web.scm:3187 +#: gnu/packages/web.scm:3188 msgid "" "HTML::Element::Extended is a Perl extension for manipulating a table\n" "composed of HTML::Element style components." msgstr "" -#: gnu/packages/web.scm:3208 +#: gnu/packages/web.scm:3209 msgid "" "Objects of the HTML::Form class represents a single HTML\n" "
...
instance." msgstr "" -#: gnu/packages/web.scm:3241 +#: gnu/packages/web.scm:3242 msgid "@code{HTML::Scrubber} Perl extension for scrubbing/sanitizing HTML." msgstr "" -#: gnu/packages/web.scm:3260 +#: gnu/packages/web.scm:3261 msgid "" "HTML::Lint is a pure-Perl HTML parser and checker for\n" "syntactic legitmacy." msgstr "" -#: gnu/packages/web.scm:3282 +#: gnu/packages/web.scm:3283 msgid "" "HTML::TableExtract is a Perl module for extracting the content contained\n" "in tables within an HTML document, either as text or encoded element trees." msgstr "" -#: gnu/packages/web.scm:3305 +#: gnu/packages/web.scm:3306 msgid "" "This distribution contains a suite of modules for\n" "representing, creating, and extracting information from HTML syntax trees." msgstr "" -#: gnu/packages/web.scm:3327 +#: gnu/packages/web.scm:3328 msgid "" "Objects of the HTML::Parser class will recognize markup and separate\n" "it from plain text (alias data content) in HTML documents. As different\n" @@ -21108,13 +21350,13 @@ msgid "" "are invoked." msgstr "" -#: gnu/packages/web.scm:3349 +#: gnu/packages/web.scm:3350 msgid "" "The HTML::Tagset module contains several data tables useful in various\n" "kinds of HTML parsing operations." msgstr "" -#: gnu/packages/web.scm:3370 +#: gnu/packages/web.scm:3371 msgid "" "This module attempts to make using HTML templates simple and natural.\n" "It extends standard HTML with a few new HTML-esque tags: @code{},\n" @@ -21125,40 +21367,40 @@ msgid "" "you to separate design from the data." msgstr "" -#: gnu/packages/web.scm:3398 +#: gnu/packages/web.scm:3399 msgid "" "HTTP::Body parses chunks of HTTP POST data and supports\n" "application/octet-stream, application/json, application/x-www-form-urlencoded,\n" "and multipart/form-data." msgstr "" -#: gnu/packages/web.scm:3421 +#: gnu/packages/web.scm:3422 msgid "" "This module implements a minimalist HTTP user agent cookie\n" "jar in conformance with RFC 6265 ." msgstr "" -#: gnu/packages/web.scm:3443 +#: gnu/packages/web.scm:3444 msgid "" "The HTTP::Cookies class is for objects that represent a cookie jar,\n" "that is, a database of all the HTTP cookies that a given LWP::UserAgent\n" "object knows about." msgstr "" -#: gnu/packages/web.scm:3466 +#: gnu/packages/web.scm:3467 msgid "" "Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen\n" "on a socket for incoming requests. The HTTP::Daemon is a subclass of\n" "IO::Socket::INET, so you can perform socket operations directly on it too." msgstr "" -#: gnu/packages/web.scm:3487 +#: gnu/packages/web.scm:3488 msgid "" "The HTTP::Date module provides functions that deal with date formats\n" "used by the HTTP protocol (and then some more)." msgstr "" -#: gnu/packages/web.scm:3508 +#: gnu/packages/web.scm:3509 msgid "" "@code{HTTP::Lite} is a stand-alone lightweight\n" "HTTP/1.1 implementation for perl. It is intended for use in\n" @@ -21172,11 +21414,11 @@ msgid "" "processing of request data as it arrives." msgstr "" -#: gnu/packages/web.scm:3541 +#: gnu/packages/web.scm:3542 msgid "An HTTP::Message object contains some headers and a content body." msgstr "" -#: gnu/packages/web.scm:3562 +#: gnu/packages/web.scm:3563 msgid "" "The HTTP::Negotiate module provides a complete implementation of the\n" "HTTP content negotiation algorithm specified in\n" @@ -21186,7 +21428,7 @@ msgid "" "fields in the request." msgstr "" -#: gnu/packages/web.scm:3587 +#: gnu/packages/web.scm:3588 msgid "" "This is an HTTP request parser. It takes chunks of text as\n" "received and returns a @code{hint} as to what is required, or returns the\n" @@ -21194,33 +21436,33 @@ msgid "" "supported." msgstr "" -#: gnu/packages/web.scm:3610 +#: gnu/packages/web.scm:3611 msgid "" "HTTP::Parser::XS is a fast, primitive HTTP request/response\n" "parser." msgstr "" -#: gnu/packages/web.scm:3631 +#: gnu/packages/web.scm:3632 msgid "" "This module provides a convenient way to set up a CGI\n" "environment from an HTTP::Request." msgstr "" -#: gnu/packages/web.scm:3665 +#: gnu/packages/web.scm:3666 msgid "" "HTTP::Server::Simple is a simple standalone HTTP daemon with\n" "no non-core module dependencies. It can be used for building a standalone\n" "http-based UI to your existing tools." msgstr "" -#: gnu/packages/web.scm:3688 +#: gnu/packages/web.scm:3689 msgid "" "This is a very simple HTTP/1.1 client, designed for doing\n" "simple requests without the overhead of a large framework like LWP::UserAgent.\n" "It supports proxies and redirection. It also correctly resumes after EINTR." msgstr "" -#: gnu/packages/web.scm:3713 +#: gnu/packages/web.scm:3714 msgid "" "@code{HTTP::Tinyish} is a wrapper module for @acronym{LWP,libwww-perl},\n" "@code{HTTP::Tiny}, curl and wget.\n" @@ -21228,20 +21470,20 @@ msgid "" "It provides an API compatible to HTTP::Tiny." msgstr "" -#: gnu/packages/web.scm:3735 +#: gnu/packages/web.scm:3736 msgid "" "IO::HTML provides an easy way to open a file containing HTML while\n" "automatically determining its encoding. It uses the HTML5 encoding sniffing\n" "algorithm specified in section 8.2.2.1 of the draft standard." msgstr "" -#: gnu/packages/web.scm:3755 +#: gnu/packages/web.scm:3756 msgid "" "This module provides a protocol-independent way to use IPv4\n" "and IPv6 sockets, intended as a replacement for IO::Socket::INET." msgstr "" -#: gnu/packages/web.scm:3777 +#: gnu/packages/web.scm:3778 msgid "" "IO::Socket::SSL makes using SSL/TLS much easier by wrapping the\n" "necessary functionality into the familiar IO::Socket interface and providing\n" @@ -21250,7 +21492,7 @@ msgid "" "select or poll." msgstr "" -#: gnu/packages/web.scm:3816 +#: gnu/packages/web.scm:3817 msgid "" "The libwww-perl collection is a set of Perl modules which provides a\n" "simple and consistent application programming interface to the\n" @@ -21260,7 +21502,7 @@ msgid "" "help you implement simple HTTP servers." msgstr "" -#: gnu/packages/web.scm:3844 +#: gnu/packages/web.scm:3845 msgid "" "This module attempts to answer, as accurately as it can, one\n" "of the nastiest technical questions there is: am I on the internet?\n" @@ -21270,7 +21512,7 @@ msgid "" "not have DNS. We might not have a network card at all!" msgstr "" -#: gnu/packages/web.scm:3870 +#: gnu/packages/web.scm:3871 #, scheme-format msgid "" "The LWP::MediaTypes module provides functions for handling media (also\n" @@ -21279,20 +21521,20 @@ msgid "" "exists it is used instead." msgstr "" -#: gnu/packages/web.scm:3895 +#: gnu/packages/web.scm:3896 msgid "" "The LWP::Protocol::https module provides support for using\n" "https schemed URLs with LWP." msgstr "" -#: gnu/packages/web.scm:3916 +#: gnu/packages/web.scm:3917 msgid "" "LWP::UserAgent::Cached is an LWP::UserAgent subclass with\n" "cache support. It returns responses from the local file system, if available,\n" "instead of making an HTTP request." msgstr "" -#: gnu/packages/web.scm:3938 +#: gnu/packages/web.scm:3939 msgid "" "LWP::UserAgent::Determined works just like LWP::UserAgent,\n" "except that when you use it to get a web page but run into a\n" @@ -21300,7 +21542,7 @@ msgid "" "and retry a few times." msgstr "" -#: gnu/packages/web.scm:3965 +#: gnu/packages/web.scm:3966 msgid "" "@code{LWPx::ParanoidAgent} is a class subclassing\n" "@code{LWP::UserAgent} but paranoid against attackers. Its purpose is\n" @@ -21310,11 +21552,11 @@ msgid "" "is limited to http and https." msgstr "" -#: gnu/packages/web.scm:4011 +#: gnu/packages/web.scm:4012 msgid "This module provides a Perlish interface to Amazon S3." msgstr "" -#: gnu/packages/web.scm:4032 +#: gnu/packages/web.scm:4033 msgid "" "The Net::HTTP class is a low-level HTTP client. An instance of the\n" "Net::HTTP class represents a connection to an HTTP server. The HTTP protocol\n" @@ -21322,7 +21564,7 @@ msgid "" "HTTP/1.1." msgstr "" -#: gnu/packages/web.scm:4053 +#: gnu/packages/web.scm:4054 msgid "" "Net::Server is an extensible, generic Perl server engine.\n" "It attempts to be a generic server as in Net::Daemon and NetServer::Generic.\n" @@ -21336,11 +21578,11 @@ msgid "" "or to multiple server ports." msgstr "" -#: gnu/packages/web.scm:4082 +#: gnu/packages/web.scm:4083 msgid "SSL support for Net::SMTP." msgstr "" -#: gnu/packages/web.scm:4116 +#: gnu/packages/web.scm:4117 msgid "" "Plack is a set of tools for using the PSGI stack. It\n" "contains middleware components, a reference server, and utilities for Web\n" @@ -21348,7 +21590,7 @@ msgid "" "WSGI." msgstr "" -#: gnu/packages/web.scm:4143 +#: gnu/packages/web.scm:4144 msgid "" "Plack::Middleware::Deflater is a middleware to encode your response body\n" "in gzip or deflate, based on \"Accept-Encoding\" HTTP request header. It\n" @@ -21357,13 +21599,13 @@ msgid "" "servers." msgstr "" -#: gnu/packages/web.scm:4170 +#: gnu/packages/web.scm:4171 msgid "" "This module sets the body in redirect response, if it's not\n" "already set." msgstr "" -#: gnu/packages/web.scm:4193 +#: gnu/packages/web.scm:4194 msgid "" "This middleware allows for POST requests that pretend to be\n" "something else: by adding either a header named X-HTTP-Method-Override to the\n" @@ -21371,44 +21613,44 @@ msgid "" "can say what method it actually meant." msgstr "" -#: gnu/packages/web.scm:4217 +#: gnu/packages/web.scm:4218 msgid "" "This module removes the body in an HTTP response if it's not\n" "required." msgstr "" -#: gnu/packages/web.scm:4240 +#: gnu/packages/web.scm:4241 msgid "" "Plack::Middleware::ReverseProxy resets some HTTP headers,\n" "which are changed by reverse-proxy. You can specify the reverse proxy address\n" "and stop fake requests using @code{enable_if} directive in your app.psgi." msgstr "" -#: gnu/packages/web.scm:4261 +#: gnu/packages/web.scm:4262 msgid "" "This module allows your to run your Plack::Test tests\n" "against an external server instead of just against a local application through\n" "either mocked HTTP or a locally spawned server." msgstr "" -#: gnu/packages/web.scm:4283 +#: gnu/packages/web.scm:4284 msgid "Test::TCP is test utilities for TCP/IP programs." msgstr "" -#: gnu/packages/web.scm:4308 +#: gnu/packages/web.scm:4309 msgid "" "Test::WWW::Mechanize is a subclass of the Perl module\n" "WWW::Mechanize that incorporates features for web application testing." msgstr "" -#: gnu/packages/web.scm:4341 +#: gnu/packages/web.scm:4342 msgid "" "The Test::WWW::Mechanize::Catalyst module meshes the\n" "Test::WWW:Mechanize module and the Catalyst web application framework to allow\n" "testing of Catalyst applications without needing to start up a web server." msgstr "" -#: gnu/packages/web.scm:4365 +#: gnu/packages/web.scm:4366 msgid "" "PSGI is a specification to decouple web server environments\n" "from web application framework code. Test::WWW::Mechanize is a subclass of\n" @@ -21417,21 +21659,21 @@ msgid "" "applications." msgstr "" -#: gnu/packages/web.scm:4390 +#: gnu/packages/web.scm:4391 msgid "" "The URI module implements the URI class. Objects of this class\n" "represent \"Uniform Resource Identifier references\" as specified in RFC 2396\n" "and updated by RFC 2732." msgstr "" -#: gnu/packages/web.scm:4413 +#: gnu/packages/web.scm:4414 msgid "" "@code{URI::Fetch} is a smart client for fetching HTTP pages,\n" "notably syndication feeds (RSS, Atom, and others), in an intelligent, bandwidth-\n" "and time-saving way." msgstr "" -#: gnu/packages/web.scm:4437 +#: gnu/packages/web.scm:4438 msgid "" "This module finds URIs and URLs (according to what URI.pm\n" "considers a URI) in plain text. It only finds URIs which include a\n" @@ -21439,37 +21681,37 @@ msgid "" "URI::Find::Schemeless. For a command-line interface, urifind is provided." msgstr "" -#: gnu/packages/web.scm:4460 +#: gnu/packages/web.scm:4461 msgid "" "With this module, the URI package provides the same set of\n" "methods for WebSocket URIs as it does for HTTP URIs." msgstr "" -#: gnu/packages/web.scm:4483 +#: gnu/packages/web.scm:4484 msgid "" "This perl module provides a wrapper around URI templates as described in\n" "RFC 6570." msgstr "" -#: gnu/packages/web.scm:4517 +#: gnu/packages/web.scm:4518 msgid "" "This is a Perl extension interface for the libcurl file downloading\n" "library." msgstr "" -#: gnu/packages/web.scm:4548 +#: gnu/packages/web.scm:4549 msgid "" "WWW::Mechanize is a Perl module for stateful programmatic\n" "web browsing, used for automating interaction with websites." msgstr "" -#: gnu/packages/web.scm:4586 +#: gnu/packages/web.scm:4587 msgid "" "@code{WWW::OpenSearch} is a module to search @url{A9's OpenSearch,\n" "http://opensearch.a9.com} compatible search engines." msgstr "" -#: gnu/packages/web.scm:4608 +#: gnu/packages/web.scm:4609 msgid "" "The WWW::RobotRules module parses /robots.txt files as specified in\n" "\"A Standard for Robot Exclusion\", at\n" @@ -21478,13 +21720,13 @@ msgid "" "their web site." msgstr "" -#: gnu/packages/web.scm:4635 gnu/packages/web.scm:4659 +#: gnu/packages/web.scm:4640 gnu/packages/web.scm:4664 msgid "" "Universal feed parser which handles RSS 0.9x, RSS 1.0, RSS 2.0,\n" "CDF, Atom 0.3, and Atom 1.0 feeds." msgstr "" -#: gnu/packages/web.scm:4756 +#: gnu/packages/web.scm:4761 msgid "" "The Guix Data Service stores data about GNU Guix, and provides this\n" "through a web interface. It supports listening to the guix-commits mailing\n" @@ -21492,20 +21734,20 @@ msgid "" "PostgreSQL database." msgstr "" -#: gnu/packages/web.scm:4785 +#: gnu/packages/web.scm:4790 msgid "" "Gumbo is an implementation of the HTML5 parsing algorithm implemented as\n" "a pure C99 library." msgstr "" -#: gnu/packages/web.scm:4858 +#: gnu/packages/web.scm:4863 msgid "" "uWSGI presents a complete stack for networked/clustered web applications,\n" "implementing message/object passing, caching, RPC and process management.\n" "It uses the uwsgi protocol for all the networking/interprocess communications." msgstr "" -#: gnu/packages/web.scm:4891 +#: gnu/packages/web.scm:4896 msgid "" "jq is like sed for JSON data – you can use it to slice and\n" "filter and map and transform structured data with the same ease that sed, awk,\n" @@ -21515,7 +21757,7 @@ msgid "" "you'd expect." msgstr "" -#: gnu/packages/web.scm:4920 +#: gnu/packages/web.scm:4925 msgid "" "@command{pup} is a command line tool for processing HTML. It reads\n" "from stdin, prints to stdout, and allows the user to filter parts of the page\n" @@ -21523,66 +21765,66 @@ msgid "" "fast and flexible way of exploring HTML from the terminal." msgstr "" -#: gnu/packages/web.scm:4953 +#: gnu/packages/web.scm:4958 msgid "" "Uhttpmock is a project for mocking web service APIs which use HTTP or\n" "HTTPS. It provides a library, libuhttpmock, which implements recording and\n" "playback of HTTP request/response traces." msgstr "" -#: gnu/packages/web.scm:4989 +#: gnu/packages/web.scm:4994 msgid "" "Woof (Web Offer One File) is a small simple web server that\n" "can easily be invoked on a single file. Your partner can access the file with\n" "tools they trust (e.g. wget)." msgstr "" -#: gnu/packages/web.scm:5017 +#: gnu/packages/web.scm:5022 msgid "" "This package provides the shared build system for Netsurf project\n" "libraries." msgstr "" -#: gnu/packages/web.scm:5052 +#: gnu/packages/web.scm:5057 msgid "" "LibParserUtils is a library for building efficient parsers, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5082 +#: gnu/packages/web.scm:5087 msgid "" "Hubbub is an HTML5 compliant parsing library, written in C, which can\n" "parse both valid and invalid web content. It is developed as part of the\n" "NetSurf project." msgstr "" -#: gnu/packages/web.scm:5203 +#: gnu/packages/web.scm:5208 msgid "" "Ikiwiki is a wiki compiler, capable of generating a static set of web\n" "pages, but also incorporating dynamic features like a web based editor and\n" "commenting." msgstr "" -#: gnu/packages/web.scm:5227 +#: gnu/packages/web.scm:5232 msgid "" "LibWapcaplet provides a reference counted string internment system\n" "designed to store small strings and allow rapid comparison of them. It is\n" "developed as part of the Netsurf project." msgstr "" -#: gnu/packages/web.scm:5259 +#: gnu/packages/web.scm:5264 msgid "" "LibCSS is a CSS (Cascading Style Sheet) parser and selection engine,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5294 +#: gnu/packages/web.scm:5299 msgid "" "LibDOM is an implementation of the W3C DOM, written in C. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5321 +#: gnu/packages/web.scm:5326 msgid "" "Libsvgtiny takes some SVG as input and returns a list of paths and texts\n" "which can be rendered easily, as defined in\n" @@ -21590,65 +21832,65 @@ msgid "" "project." msgstr "" -#: gnu/packages/web.scm:5346 +#: gnu/packages/web.scm:5351 msgid "" "Libnsbmp is a decoding library for BMP and ICO image file formats,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5369 +#: gnu/packages/web.scm:5374 msgid "" "Libnsgif is a decoding library for the GIF image file format, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5396 +#: gnu/packages/web.scm:5401 msgid "" "Libnslog provides a category-based logging library which supports\n" "complex logging filters, multiple log levels, and provides context through to\n" "client applications. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5420 +#: gnu/packages/web.scm:5425 msgid "" "Libnsutils provides a small number of useful utility routines. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5443 +#: gnu/packages/web.scm:5448 msgid "" "Libnspsl is a library to generate a static code representation of the\n" "Public Suffix List. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5469 +#: gnu/packages/web.scm:5474 msgid "" "@code{nsgenbind} is a tool to generate JavaScript to DOM bindings from\n" "w3c webidl files and a binding configuration file." msgstr "" -#: gnu/packages/web.scm:5592 +#: gnu/packages/web.scm:5597 msgid "" "NetSurf is a lightweight web browser that has its own layout and\n" "rendering engine entirely written from scratch. It is small and capable of\n" "handling many of the web standards in use today." msgstr "" -#: gnu/packages/web.scm:5631 +#: gnu/packages/web.scm:5636 msgid "" "Surfraw (Shell Users' Revolutionary Front Rage Against the Web)\n" "provides a unix command line interface to a variety of popular www search engines\n" "and similar services." msgstr "" -#: gnu/packages/web.scm:5664 +#: gnu/packages/web.scm:5669 msgid "" "darkhttpd is a simple static web server. It is\n" "standalone and does not need inetd or ucspi-tcp. It does not need any\n" "config files---you only have to specify the www root." msgstr "" -#: gnu/packages/web.scm:5695 +#: gnu/packages/web.scm:5700 msgid "" "GoAccess is a real-time web log analyzer and interactive viewer that\n" "runs in a terminal or through your browser. It provides fast and valuable\n" @@ -21656,7 +21898,7 @@ msgid "" "on the fly." msgstr "" -#: gnu/packages/web.scm:5749 +#: gnu/packages/web.scm:5754 msgid "" "Hitch is a performant TLS proxy based on @code{libev}. It terminates\n" "SSL/TLS connections and forwards the unencrypted traffic to a backend such\n" @@ -21664,7 +21906,7 @@ msgid "" "multicore machines." msgstr "" -#: gnu/packages/web.scm:5786 +#: gnu/packages/web.scm:5791 msgid "" "httptunnel creates a bidirectional virtual data connection\n" "tunnelled through HTTP (HyperText Transfer Protocol) requests. This can be\n" @@ -21682,7 +21924,7 @@ msgid "" "deployments." msgstr "" -#: gnu/packages/web.scm:5915 +#: gnu/packages/web.scm:5912 msgid "" "Varnish is a high-performance HTTP accelerator. It acts as a caching\n" "reverse proxy and load balancer. You install it in front of any server that\n" @@ -21690,14 +21932,14 @@ msgid "" "configuration language." msgstr "" -#: gnu/packages/web.scm:5949 +#: gnu/packages/web.scm:5946 msgid "" "This package provides a collection of modules (@dfn{vmods}) for the Varnish\n" "cache server, extending the @acronym{VCL, Varnish Configuration Language} with\n" "additional capabilities." msgstr "" -#: gnu/packages/web.scm:5976 +#: gnu/packages/web.scm:5973 msgid "" "@code{xinetd}, a more secure replacement for @code{inetd},\n" "listens for incoming requests over a network and launches the appropriate\n" @@ -21706,7 +21948,7 @@ msgid "" "used to start services with both privileged and non-privileged port numbers." msgstr "" -#: gnu/packages/web.scm:6023 +#: gnu/packages/web.scm:6020 msgid "" "Tidy is a console application which corrects and cleans up\n" "HTML and XML documents by fixing markup errors and upgrading\n" @@ -21717,14 +21959,14 @@ msgid "" "functions of Tidy." msgstr "" -#: gnu/packages/web.scm:6085 +#: gnu/packages/web.scm:6082 msgid "" "Hiawatha has been written with security in mind.\n" "Features include the ability to stop SQL injections, XSS and CSRF attacks and\n" "exploit attempts." msgstr "" -#: gnu/packages/web.scm:6107 +#: gnu/packages/web.scm:6104 msgid "" "Testing an HTTP Library can become difficult sometimes.\n" "@code{RequestBin} is fantastic for testing POST requests, but doesn't let you control the\n" @@ -21732,14 +21974,14 @@ msgid "" "JSON-encoded." msgstr "" -#: gnu/packages/web.scm:6132 +#: gnu/packages/web.scm:6129 msgid "" "@code{Pytest-httpbin} creates a @code{pytest} fixture that is dependency-injected\n" "into your tests. It automatically starts up a HTTP server in a separate thread running\n" "@code{httpbin} and provides your test with the URL in the fixture." msgstr "" -#: gnu/packages/web.scm:6199 +#: gnu/packages/web.scm:6196 msgid "" "This is a parser for HTTP messages written in C. It\n" "parses both requests and responses. The parser is designed to be used in\n" @@ -21749,40 +21991,40 @@ msgid "" "message stream (in a web server that is per connection)." msgstr "" -#: gnu/packages/web.scm:6236 +#: gnu/packages/web.scm:6233 msgid "" "@code{httpretty} is a helper for faking web requests,\n" "inspired by Ruby's @code{fakeweb}." msgstr "" -#: gnu/packages/web.scm:6254 +#: gnu/packages/web.scm:6251 msgid "" "jo is a command-line utility to create JSON objects or\n" "arrays. It creates a JSON string on stdout from words provided as\n" "command-line arguments or read from stdin." msgstr "" -#: gnu/packages/web.scm:6313 +#: gnu/packages/web.scm:6310 msgid "" "@code{ia} is a command-line tool for using\n" "@url{archive.org} from the command-line. It also implements the\n" "internetarchive python module for programmatic access to archive.org." msgstr "" -#: gnu/packages/web.scm:6364 +#: gnu/packages/web.scm:6361 msgid "" "@code{clf} is a command line tool for searching code\n" "snippets on @url{https://commandlinefu.com}." msgstr "" -#: gnu/packages/web.scm:6402 +#: gnu/packages/web.scm:6399 msgid "" "rss-bridge generates Atom feeds for social networking\n" "websites lacking feeds. Supported websites include Facebook, Twitter,\n" "Instagram and YouTube." msgstr "" -#: gnu/packages/web.scm:6440 +#: gnu/packages/web.scm:6437 msgid "" "LinkChecker is a website validator. It checks for broken\n" "links in websites. It is recursive and multithreaded providing output in\n" @@ -21791,67 +22033,67 @@ msgid "" "file links." msgstr "" -#: gnu/packages/web.scm:6488 +#: gnu/packages/web.scm:6485 msgid "" "Castor is a graphical client for plain-text protocols written in\n" "Rust with GTK. It currently supports the Gemini, Gopher and Finger\n" "protocols." msgstr "" -#: gnu/packages/web.scm:6575 +#: gnu/packages/web.scm:6572 msgid "" "This package includes Clearsilver, the CGI kit and HTML templating\n" "system." msgstr "" -#: gnu/packages/web.scm:6594 +#: gnu/packages/web.scm:6591 msgid "" "Py-ubjson is a Python module providing an Universal Binary JSON\n" "encoder/decoder based on the draft-12 specification for UBJSON." msgstr "" -#: gnu/packages/web.scm:6689 +#: gnu/packages/web.scm:6686 msgid "" "Apache Tomcat is a free implementation of the Java\n" "Servlet, JavaServer Pages, Java Expression Language and Java WebSocket\n" "technologies." msgstr "" -#: gnu/packages/web.scm:6743 +#: gnu/packages/web.scm:6740 msgid "" "This package contains helper classes for testing the Jetty\n" "Web Server." msgstr "" -#: gnu/packages/web.scm:6802 +#: gnu/packages/web.scm:6799 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides utility classes." msgstr "" -#: gnu/packages/web.scm:6880 +#: gnu/packages/web.scm:6877 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides IO-related utility classes." msgstr "" -#: gnu/packages/web.scm:6925 +#: gnu/packages/web.scm:6922 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides HTTP-related utility classes." msgstr "" -#: gnu/packages/web.scm:6959 +#: gnu/packages/web.scm:6956 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides the JMX management." msgstr "" -#: gnu/packages/web.scm:7045 +#: gnu/packages/web.scm:7042 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21859,7 +22101,7 @@ msgid "" "artifact." msgstr "" -#: gnu/packages/web.scm:7088 +#: gnu/packages/web.scm:7085 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21867,7 +22109,7 @@ msgid "" "infrastructure" msgstr "" -#: gnu/packages/web.scm:7144 +#: gnu/packages/web.scm:7141 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21875,14 +22117,14 @@ msgid "" "container." msgstr "" -#: gnu/packages/web.scm:7308 +#: gnu/packages/web.scm:7305 msgid "" "Jsoup is a Java library for working with real-world HTML. It\n" "provides a very convenient API for extracting and manipulating data, using the\n" "best of DOM, CSS, and jQuery-like methods." msgstr "" -#: gnu/packages/web.scm:7337 +#: gnu/packages/web.scm:7334 msgid "" "Signpost is the easy and intuitive solution for signing\n" "HTTP messages on the Java platform in conformance with the OAuth Core 1.0a\n" @@ -21890,7 +22132,7 @@ msgid "" "combine it with different HTTP messaging layers." msgstr "" -#: gnu/packages/web.scm:7360 +#: gnu/packages/web.scm:7357 msgid "" "Tidyp is a program that can validate your HTML, as well as\n" "modify it to be more clean and standard. tidyp does not validate HTML 5.\n" @@ -21900,14 +22142,14 @@ msgid "" "based on this library, allowing Perl programmers to easily validate HTML." msgstr "" -#: gnu/packages/web.scm:7401 +#: gnu/packages/web.scm:7398 msgid "" "@code{HTML::Tidy} is an HTML checker in a handy dandy\n" "object. It's meant as a replacement for @code{HTML::Lint}, which is written\n" "in Perl but is not nearly as capable as @code{HTML::Tidy}." msgstr "" -#: gnu/packages/web.scm:7430 +#: gnu/packages/web.scm:7427 msgid "" "Geomyidae is a server for distributed hypertext protocol Gopher. Its\n" "features include:\n" @@ -21921,14 +22163,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/web.scm:7478 +#: gnu/packages/web.scm:7475 msgid "" "Cat avatar generator is a generator of cat pictures optimised\n" "to generate random avatars, or defined avatar from a \"seed\". This is a\n" "derivation by David Revoy from the original MonsterID by Andreas Gohr." msgstr "" -#: gnu/packages/web.scm:7548 +#: gnu/packages/web.scm:7545 msgid "" "nghttp2 implements the Hypertext Transfer Protocol, version\n" "2 (@dfn{HTTP/2}).\n" @@ -21954,14 +22196,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7647 +#: gnu/packages/web.scm:7644 msgid "" "Hpcguix-web provides a web interface to the list of packages\n" "provided by Guix. The list of packages is searchable and provides\n" "instructions on how to use Guix in a shared HPC environment." msgstr "" -#: gnu/packages/web.scm:7668 +#: gnu/packages/web.scm:7665 msgid "" "HTTrack allows you to download a World Wide Web site from\n" "the Internet to a local directory, building recursively all directories,\n" @@ -21975,7 +22217,7 @@ msgid "" "HTTrack is fully configurable, and has an integrated help system." msgstr "" -#: gnu/packages/web.scm:7703 +#: gnu/packages/web.scm:7700 msgid "" "buku is a powerful bookmark manager written in Python3 and SQLite3.\n" "@command{buku} can auto-import bookmarks from your browser and present them\n" @@ -21984,7 +22226,7 @@ msgid "" "@command{bukuserver}." msgstr "" -#: gnu/packages/web.scm:7724 +#: gnu/packages/web.scm:7721 msgid "" "Anonip masks the last bits of IPv4 and IPv6 addresses in log files.\n" "That way most of the relevant information is preserved, while the IP address\n" @@ -21999,7 +22241,7 @@ msgid "" "Anonip can also be uses as a Python module in your own Python application." msgstr "" -#: gnu/packages/web.scm:7758 +#: gnu/packages/web.scm:7755 msgid "" "Poussetaches (which literally means \"push tasks\" in\n" "French) is a lightweight asynchronous task execution service that aims to\n" @@ -22011,7 +22253,7 @@ msgid "" "returned." msgstr "" -#: gnu/packages/web.scm:7783 +#: gnu/packages/web.scm:7780 msgid "" "htmlcxx is a simple non-validating CSS1 and HTML parser for\n" "C++. Although there are several other HTML parsers available, htmlcxx has some\n" @@ -22029,7 +22271,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:7827 +#: gnu/packages/web.scm:7824 msgid "" "libRocket is a C++ user interface package based on the HTML\n" "and CSS standards. libRocket uses the open standards XHTML1.0 and\n" @@ -22046,11 +22288,11 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7869 +#: gnu/packages/web.scm:7866 msgid "gmnisrv is a simple Gemini protocol server written in C." msgstr "" -#: gnu/packages/web.scm:7900 +#: gnu/packages/web.scm:7898 msgid "" "The openZIM project proposes offline storage solutions for\n" "content coming from the Web. The zimlib is the standard implementation of the\n" @@ -22082,14 +22324,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:8081 +#: gnu/packages/web.scm:8078 msgid "" "uriparser is a strictly RFC 3986 compliant URI parsing and\n" "handling library written in C89 (\"ANSI C\"). uriparser is fast and supports\n" "Unicode." msgstr "" -#: gnu/packages/web.scm:8115 +#: gnu/packages/web.scm:8112 msgid "" "Quark is an extremely small and simple HTTP GET/HEAD only\n" "web server for static content. TLS is not natively supported and should be\n" @@ -22259,53 +22501,53 @@ msgid "" "Enhancement}." msgstr "" -#: gnu/services/base.scm:276 +#: gnu/services/base.scm:279 msgid "" "Populate the @file{/etc/fstab} based on the given file\n" "system objects." msgstr "" -#: gnu/services/base.scm:314 +#: gnu/services/base.scm:317 msgid "" "Take care of syncing the root file\n" "system and of remounting it read-only when the system shuts down." msgstr "" -#: gnu/services/base.scm:481 +#: gnu/services/base.scm:484 msgid "" "Provide Shepherd services to mount and unmount the given\n" "file systems, as well as corresponding @file{/etc/fstab} entries." msgstr "" -#: gnu/services/base.scm:579 +#: gnu/services/base.scm:582 msgid "" "Seed the @file{/dev/urandom} pseudo-random number\n" "generator (RNG) with the value recorded when the system was last shut\n" "down." msgstr "" -#: gnu/services/base.scm:611 +#: gnu/services/base.scm:614 msgid "" "Run the @command{rngd} random number generation daemon to\n" "supply entropy to the kernel's pool." msgstr "" -#: gnu/services/base.scm:640 +#: gnu/services/base.scm:643 msgid "Initialize the machine's host name." msgstr "" -#: gnu/services/base.scm:670 +#: gnu/services/base.scm:673 msgid "Ensure the Linux virtual terminals run in UTF-8 mode." msgstr "" -#: gnu/services/base.scm:683 +#: gnu/services/base.scm:686 msgid "" "@emph{This service is deprecated in favor of the\n" "@code{keyboard-layout} field of @code{operating-system}.} Load the given list\n" "of console keymaps with @command{loadkeys}." msgstr "" -#: gnu/services/base.scm:743 +#: gnu/services/base.scm:746 msgid "" "Install the given fonts on the specified ttys (fonts are per\n" "virtual console on GNU/Linux). The value of this service is a list of\n" @@ -22323,66 +22565,66 @@ msgid "" "@end example\n" msgstr "" -#: gnu/services/base.scm:795 +#: gnu/services/base.scm:798 msgid "" "Provide a console log-in service as specified by its\n" "configuration value, a @code{login-configuration} object." msgstr "" -#: gnu/services/base.scm:1063 +#: gnu/services/base.scm:1066 msgid "" "Provide console login using the @command{agetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1128 +#: gnu/services/base.scm:1131 msgid "" "Provide console login using the @command{mingetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1345 +#: gnu/services/base.scm:1348 msgid "" "Runs libc's @dfn{name service cache daemon} (nscd) with the\n" "given configuration---an @code{} object. @xref{Name\n" "Service Switch}, for an example." msgstr "" -#: gnu/services/base.scm:1384 +#: gnu/services/base.scm:1387 msgid "" "Run the syslog daemon, @command{syslogd}, which is\n" "responsible for logging system messages." msgstr "" -#: gnu/services/base.scm:1448 +#: gnu/services/base.scm:1451 msgid "" "Install the specified resource usage limits by populating\n" "@file{/etc/security/limits.conf} and using the @code{pam_limits}\n" "authentication module." msgstr "" -#: gnu/services/base.scm:1794 +#: gnu/services/base.scm:1804 msgid "Run the build daemon of GNU@tie{}Guix, aka. @command{guix-daemon}." msgstr "" -#: gnu/services/base.scm:1944 +#: gnu/services/base.scm:1961 msgid "" "Add a Shepherd service running @command{guix publish}, a\n" "command that allows you to share pre-built binaries with others over HTTP." msgstr "" -#: gnu/services/base.scm:2150 +#: gnu/services/base.scm:2167 msgid "" "Run @command{udev}, which populates the @file{/dev}\n" "directory dynamically. Get extra rules from the packages listed in the\n" "@code{rules} field of its value, @code{udev-configuration} object." msgstr "" -#: gnu/services/base.scm:2267 +#: gnu/services/base.scm:2284 msgid "Turn on the virtual memory swap area." msgstr "" -#: gnu/services/base.scm:2309 +#: gnu/services/base.scm:2326 msgid "" "Run GPM, the general-purpose mouse daemon, with the given\n" "command-line options. GPM allows users to use the mouse in the console,\n" @@ -22390,33 +22632,33 @@ msgid "" "@code{ps2} protocol, which works for both USB and PS/2 mice." msgstr "" -#: gnu/services/base.scm:2382 +#: gnu/services/base.scm:2399 msgid "" "Start the @command{kmscon} virtual terminal emulator for the\n" "Linux @dfn{kernel mode setting} (KMS)." msgstr "" -#: gnu/services/base.scm:2403 +#: gnu/services/base.scm:2416 #, scheme-format msgid "address '~a' lacks a network mask" msgstr "" -#: gnu/services/base.scm:2409 +#: gnu/services/base.scm:2422 #, scheme-format msgid "Write, say, @samp{\"~a/24\"} for a 24-bit network mask." msgstr "" -#: gnu/services/base.scm:2489 +#: gnu/services/base.scm:2502 #, scheme-format msgid "network links are currently ignored on GNU/Hurd~%" msgstr "" -#: gnu/services/base.scm:2514 +#: gnu/services/base.scm:2527 #, scheme-format msgid "ignoring network route for '~a'~%" msgstr "" -#: gnu/services/base.scm:2698 +#: gnu/services/base.scm:2711 msgid "" "Turn up the specified network interfaces upon startup,\n" "with the given IP address, gateway, netmask, and so on. The value for\n" diff --git a/po/packages/sk.po b/po/packages/sk.po index ae76c4fdef..b8355d6dd3 100644 --- a/po/packages/sk.po +++ b/po/packages/sk.po @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) 2021 the authors of Guix (msgids) and the following authors (msgstr) # This file is distributed under the same license as the GNU guix package. -# Marek Felšöci , 2021. +# Marek Felšöci , 2021, 2022. msgid "" msgstr "" "Project-Id-Version: GNU guix\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" -"PO-Revision-Date: 2021-04-27 19:02+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" +"PO-Revision-Date: 2022-01-23 01:16+0000\n" "Last-Translator: Marek Felšöci \n" "Language-Team: Slovak \n" "Language: sk\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 4.6\n" +"X-Generator: Weblate 4.10.1\n" #. TRANSLATORS: Dear translator, We would like to inform you that package #. descriptions may occasionally include Texinfo markup. Texinfo markup @@ -47,7 +47,7 @@ msgstr "" msgid "This package provides a dictionary for the GNU Aspell spell checker." msgstr "Tento balík poskytuje slovník pre nástroj na kontrolu pravopisu GNU Aspell." -#: gnu/packages/aspell.scm:445 gnu/packages/libreoffice.scm:845 +#: gnu/packages/aspell.scm:450 gnu/packages/libreoffice.scm:845 #: gnu/packages/libreoffice.scm:918 msgid "" "This package provides a dictionary for the Hunspell spell-checking\n" @@ -56,7 +56,7 @@ msgstr "" "Tento balík poskytuje slovník pre knižnicu na kontrolu pravopisu\n" "Hunspell." -#: gnu/packages/aspell.scm:525 +#: gnu/packages/aspell.scm:530 msgid "" "Ispell is an interactive spell-checking tool supporting many\n" "European languages." @@ -64,8 +64,7 @@ msgstr "" "Ispell je interaktívny nástroj na kontrolu pravopisu s podporou\n" "pre mnohé európske jazyky." -#: gnu/packages/audio.scm:197 -#, fuzzy +#: gnu/packages/audio.scm:198 msgid "" "OpenSLES is a royalty-free, cross-platform,\n" "hardware-accelerated audio API tuned for embedded systems. It provides a\n" @@ -75,35 +74,47 @@ msgid "" "hardware and software audio capabilities, reducing implementation effort, and\n" "promoting the market for advanced audio." msgstr "" -"OpenSLES je bezplatné, platformovo nezávislé\n" -"zvukové API s hardvérovým urýchľovaním pre vstavané systémy. Poskytuje\n" -"štandardizovaný, vysokovýkonný spôsob s nízkym oneskorením na prístup" +"OpenSLES je bezplatné, viacplatformové, hardvérovo urýchlené API\n" +"pre vstavané systémy. Vývojárom pôvodných aplikácií pre vnorené prenosné\n" +"multimediálne zariadenia poskytuje štandardizovaný, vysokovýkonný spôsob\n" +"prístupu k zvukovým funkciám s nízkym oneskorením. Umožňuje priame\n" +"krížové nasadenie hardvérových a softvérových zvukových možností pričom\n" +"znižuje zložitosť implementácie a pomáha propagovať trh súčasných\n" +"zvukových riešení." -#: gnu/packages/audio.scm:233 +#: gnu/packages/audio.scm:234 msgid "" "WildMIDI is a simple software midi player which has a core\n" "softsynth library that can be use with other applications." msgstr "" +"WildMIDI je jednoduchý prehrávač MIDI súborov obsahujúci\n" +"knižnicu softsynth, ktorú môžu používať ďalšie aplikácie." -#: gnu/packages/audio.scm:257 +#: gnu/packages/audio.scm:258 msgid "" "WebRTC-Audio-Processing library based on Google's\n" "implementation of WebRTC." msgstr "" +"Zvuk spracovávajúca knižnica WebRTC založená\n" +"na implementácii WebRTC od Googlu." -#: gnu/packages/audio.scm:277 +#: gnu/packages/audio.scm:278 msgid "" "VO-AACENC is the VisualOn implementation of Advanced Audio\n" "Coding (AAC) encoder." msgstr "" +"VO-AACENC je VisualOn implementácia kódovača Advanced\n" +"Audio Coding (AAC)." -#: gnu/packages/audio.scm:306 +#: gnu/packages/audio.scm:307 msgid "" "TinyALSA is a small library to interface with ALSA in the\n" "Linux kernel." msgstr "" +"TinyALSA je malá knižnica poskytujúca rozhranie s ALSOU\n" +"v Linuxovom jadre." -#: gnu/packages/audio.scm:329 +#: gnu/packages/audio.scm:330 msgid "" "Game-music-emu is a collection of video game music file emulators that\n" "support the following formats and systems:\n" @@ -128,44 +139,73 @@ msgid "" "Sega Master System/Mark III, Sega Genesis/Mega Drive, BBC Micro\n" "@end table" msgstr "" +"Game-music-emu je zbierka emulátorov hudby z videohier\n" +"s podporou nasledovných formátov a systémov:\n" +"@table @code\n" +"@item AY\n" +"ZX Spectrum/Asmtrad CPC\n" +"@item GBS\n" +"Nintendo Game Boy\n" +"@item GYM\n" +"Sega Genesis/Mega Drive\n" +"@item HES\n" +"NEC TurboGrafx-16/PC Engine\n" +"@item KSS\n" +"MSX Home Computer/iné Z80 systémy (nepodporuje FM zvuk)\n" +"@item NSF/NSFE\n" +"Nintendo NES/Famicom (so zvukom VRC 6, Namco 106, a FME-7)\n" +"@item SAP\n" +"Atari systémy so zvukovým čipom POKEY\n" +"@item SPC\n" +"Super Nintendo/Super Famicom\n" +"@item VGM/VGZ\n" +"Sega Master System/Mark III, Sega Genesis/Mega Drive, BBC Micro\n" +"@end table" -#: gnu/packages/audio.scm:393 +#: gnu/packages/audio.scm:394 msgid "" "LibOpenMPT is a cross-platform C++ and C module playback\n" "library. It is based on the player code of the Open ModPlug Tracker project." msgstr "" +"LibOpenMPT je viacplatformová knižnica modulov prehrávania zapísaná\n" +"v C++ a C. Je založená na zdrojovom kóde prehrávača z projektu Open ModPlug Tracker." -#: gnu/packages/audio.scm:424 +#: gnu/packages/audio.scm:425 msgid "" "LibOFA is an audio fingerprint library, created and provided\n" "by MusicIP." msgstr "" +"LibOFA je knižnica zvukových odtlačkov, ktorú vytvoril a poskytuje\n" +"MusicIP." -#: gnu/packages/audio.scm:445 +#: gnu/packages/audio.scm:446 msgid "FAAC is an MPEG-4 and MPEG-2 AAC encoder." -msgstr "" +msgstr "FAAC je prevodník MPEG-4 a MPEG-2 AAC." -#: gnu/packages/audio.scm:474 +#: gnu/packages/audio.scm:475 msgid "" "LibTiMidity is a MIDI to WAVE converter library that uses\n" "Gravis Ultrasound-compatible patch files to generate digital audio data from\n" "General MIDI files." msgstr "" +"LibTiMidity je knižnica na prevod súborov MIDI na WAVE, ktorá\n" +"na vytváranie digitálneho zvuku zo súborov General MIDI\n" +"využíva opravné súbory kompatibilné s Gravis Ultrasound." -#: gnu/packages/audio.scm:499 +#: gnu/packages/audio.scm:500 msgid "" "VO-AMR is a library of VisualOn implementation of\n" "Adaptive Multi Rate Narrowband and Wideband (AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:518 +#: gnu/packages/audio.scm:519 msgid "" "OpenCore-AMR is a library of OpenCORE Framework\n" "implementation of Adaptive Multi Rate Narrowband and Wideband\n" "(AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:551 +#: gnu/packages/audio.scm:552 msgid "" "AlsaModularSynth is a digital implementation of a classical analog\n" "modular synthesizer system. It uses virtual control voltages to control the\n" @@ -174,7 +214,7 @@ msgid "" "Filter) modules follow the convention of 1V / Octave." msgstr "" -#: gnu/packages/audio.scm:588 +#: gnu/packages/audio.scm:589 msgid "" "aubio is a tool designed for the extraction of annotations from audio\n" "signals. Its features include segmenting a sound file before each of its\n" @@ -182,21 +222,21 @@ msgid "" "streams from live audio." msgstr "" -#: gnu/packages/audio.scm:719 +#: gnu/packages/audio.scm:720 msgid "" "Ardour is a multi-channel digital audio workstation, allowing users to\n" "record, edit, mix and master audio and MIDI projects. It is targeted at audio\n" "engineers, musicians, soundtrack editors and composers." msgstr "" -#: gnu/packages/audio.scm:833 +#: gnu/packages/audio.scm:853 msgid "" "Audacity is a multi-track audio editor designed for recording, playing\n" "and editing digital audio. It features digital effects and spectrum analysis\n" "tools." msgstr "" -#: gnu/packages/audio.scm:889 +#: gnu/packages/audio.scm:909 msgid "" "This is an open-source version of SGI's audiofile library.\n" "It provides a uniform programming interface for processing of audio data to\n" @@ -207,14 +247,14 @@ msgid "" "G.711 mu-law and A-law." msgstr "" -#: gnu/packages/audio.scm:931 +#: gnu/packages/audio.scm:951 msgid "" "Autotalent is a LADSPA plugin for real-time pitch-correction. Among its\n" "controls are allowable notes, strength of correction, LFO for vibrato and\n" "formant warp." msgstr "" -#: gnu/packages/audio.scm:972 +#: gnu/packages/audio.scm:992 msgid "" "AZR-3 is a port of the free VST plugin AZR-3. It is a tonewheel organ\n" "with drawbars, distortion and rotating speakers. The organ has three\n" @@ -223,7 +263,7 @@ msgid "" "plugins are provided." msgstr "" -#: gnu/packages/audio.scm:1011 +#: gnu/packages/audio.scm:1031 msgid "" "Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments.\n" "The suite contains lots of effects (delay, modulation, signal processing,\n" @@ -232,31 +272,31 @@ msgid "" "tools (analyzer, mono/stereo tools, crossovers)." msgstr "" -#: gnu/packages/audio.scm:1053 +#: gnu/packages/audio.scm:1073 msgid "" "LV2 port of CAPS, a collection of audio plugins comprising basic virtual\n" "guitar amplification and a small range of classic effects, signal processors and\n" "generators of mostly elementary and occasionally exotic nature." msgstr "" -#: gnu/packages/audio.scm:1094 +#: gnu/packages/audio.scm:1114 msgid "" "The infamous plugins are a collection of LV2 audio plugins for live\n" "performances. The plugins include a cellular automaton synthesizer, an\n" "envelope follower, distortion effects, tape effects and more." msgstr "" -#: gnu/packages/audio.scm:1129 +#: gnu/packages/audio.scm:1149 msgid "" "Snapcast is a multi-room client-server audio player. Clients are time\n" "synchronized with the server to play synced audio." msgstr "" -#: gnu/packages/audio.scm:1159 +#: gnu/packages/audio.scm:1179 msgid "This package provides Steve Harris's LADSPA plugins." msgstr "" -#: gnu/packages/audio.scm:1199 +#: gnu/packages/audio.scm:1219 msgid "" "Swh-plugins-lv2 is a collection of audio plugins in LV2 format. Plugin\n" "classes include: dynamics (compressor, limiter), time (delay, chorus,\n" @@ -264,13 +304,13 @@ msgid "" "emulation (valve, tape), bit fiddling (decimator, pointer-cast), etc." msgstr "" -#: gnu/packages/audio.scm:1233 +#: gnu/packages/audio.scm:1253 msgid "" "@code{libdjinterop} is a C++ library that allows access to database\n" "formats used to store information about DJ record libraries." msgstr "" -#: gnu/packages/audio.scm:1295 gnu/packages/audio.scm:1326 +#: gnu/packages/audio.scm:1315 gnu/packages/audio.scm:1346 msgid "" "Tao is a software package for sound synthesis using physical\n" "models. It provides a virtual acoustic material constructed from masses and\n" @@ -280,13 +320,13 @@ msgid "" "object library." msgstr "" -#: gnu/packages/audio.scm:1361 +#: gnu/packages/audio.scm:1381 msgid "" "Csound is a user-programmable and user-extensible sound processing\n" "language and software synthesizer." msgstr "" -#: gnu/packages/audio.scm:1388 +#: gnu/packages/audio.scm:1408 msgid "" "midicomp can manipulate SMF (Standard MIDI File) files. It can both\n" " read and write SMF files in 0 or format 1 and also read and write its own\n" @@ -295,20 +335,20 @@ msgid "" " language, and recompiled back into a binary SMF file." msgstr "" -#: gnu/packages/audio.scm:1435 +#: gnu/packages/audio.scm:1455 msgid "" "clalsadrv is a C++ wrapper around the ALSA API simplifying access to\n" "ALSA PCM devices." msgstr "" -#: gnu/packages/audio.scm:1474 +#: gnu/packages/audio.scm:1494 msgid "" "The AMB plugins are a set of LADSPA ambisonics plugins, mainly to be\n" "used within Ardour. Features include: mono and stereo to B-format panning,\n" "horizontal rotator, square, hexagon and cube decoders." msgstr "" -#: gnu/packages/audio.scm:1511 +#: gnu/packages/audio.scm:1531 msgid "" "This package provides various LADSPA plugins. @code{cs_chorus} and\n" "@code{cs_phaser} provide chorus and phaser effects, respectively;\n" @@ -318,13 +358,13 @@ msgid "" "the non-linear circuit elements of their original analog counterparts." msgstr "" -#: gnu/packages/audio.scm:1551 +#: gnu/packages/audio.scm:1571 msgid "" "This package provides a stereo reverb LADSPA plugin based on the\n" "well-known greverb." msgstr "" -#: gnu/packages/audio.scm:1587 +#: gnu/packages/audio.scm:1607 msgid "" "This package provides a LADSPA plugin for a four-band parametric\n" "equalizer. Each section has an active/bypass switch, frequency, bandwidth and\n" @@ -339,13 +379,13 @@ msgid "" "for stage use." msgstr "" -#: gnu/packages/audio.scm:1632 +#: gnu/packages/audio.scm:1652 msgid "" "This package provides a LADSPA plugin to manipulate the stereo width of\n" "audio signals." msgstr "" -#: gnu/packages/audio.scm:1669 +#: gnu/packages/audio.scm:1689 msgid "" "The @code{blvco} LADSPA plugin provides three anti-aliased oscillators:\n" "\n" @@ -360,17 +400,17 @@ msgid "" "output of analog synthesizers such as the Moog Voyager." msgstr "" -#: gnu/packages/audio.scm:1713 +#: gnu/packages/audio.scm:1733 msgid "" "This package provides a LADSPA plugin for a Wah effect with envelope\n" "follower." msgstr "" -#: gnu/packages/audio.scm:1749 +#: gnu/packages/audio.scm:1769 msgid "This package provides a LADSPA plugin for a stereo reverb effect." msgstr "" -#: gnu/packages/audio.scm:1791 +#: gnu/packages/audio.scm:1811 msgid "" "FluidSynth is a real-time software synthesizer based on the SoundFont 2\n" "specifications. FluidSynth reads and handles MIDI events from the MIDI input\n" @@ -378,21 +418,21 @@ msgid "" "also play midifiles using a Soundfont." msgstr "" -#: gnu/packages/audio.scm:1814 +#: gnu/packages/audio.scm:1834 msgid "FAAD2 is an MPEG-4 and MPEG-2 AAC decoder supporting LC, Main, LTP, SBR, -PS, and DAB+." msgstr "" -#: gnu/packages/audio.scm:1855 +#: gnu/packages/audio.scm:1875 msgid "Faust is a programming language for realtime audio signal processing." msgstr "" -#: gnu/packages/audio.scm:1919 +#: gnu/packages/audio.scm:1939 msgid "" "FreePats is a project to create a free and open set of GUS compatible\n" "patches that can be used with softsynths such as Timidity and WildMidi." msgstr "" -#: gnu/packages/audio.scm:1972 +#: gnu/packages/audio.scm:1992 msgid "" "Guitarix is a virtual guitar amplifier running JACK.\n" "Guitarix takes the signal from your guitar as a mono-signal from your sound\n" @@ -403,7 +443,7 @@ msgid "" "auto-wah." msgstr "" -#: gnu/packages/audio.scm:2028 +#: gnu/packages/audio.scm:2048 msgid "" "Rakarrack is a richly featured multi-effects processor emulating a\n" "guitar effects pedalboard. Effects include compressor, expander, noise gate,\n" @@ -415,14 +455,14 @@ msgid "" "well suited to all musical instruments and vocals." msgstr "" -#: gnu/packages/audio.scm:2084 +#: gnu/packages/audio.scm:2104 msgid "" "IR is a low-latency, real-time, high performance signal convolver\n" "especially for creating reverb effects. It supports impulse responses with 1,\n" "2 or 4 channels, in any soundfile format supported by libsndfile." msgstr "" -#: gnu/packages/audio.scm:2124 +#: gnu/packages/audio.scm:2144 msgid "" "JACK is a low-latency audio server. It can connect a number of\n" "different applications to an audio device, as well as allowing them to share\n" @@ -432,20 +472,20 @@ msgid "" "synchronous execution of all clients, and low latency operation." msgstr "" -#: gnu/packages/audio.scm:2220 +#: gnu/packages/audio.scm:2240 msgid "" "Jalv is a simple but fully featured LV2 host for JACK. It runs LV2\n" "plugins and exposes their ports as JACK ports, essentially making any LV2\n" "plugin function as a JACK application." msgstr "" -#: gnu/packages/audio.scm:2266 +#: gnu/packages/audio.scm:2286 msgid "" "LADSPA is a standard that allows software audio processors and effects\n" "to be plugged into a wide range of audio synthesis and recording packages." msgstr "" -#: gnu/packages/audio.scm:2318 +#: gnu/packages/audio.scm:2338 msgid "" "LASH is a session management system for audio applications. It allows\n" "you to save and restore audio sessions consisting of multiple interconneced\n" @@ -453,7 +493,7 @@ msgid "" "connections between them." msgstr "" -#: gnu/packages/audio.scm:2341 +#: gnu/packages/audio.scm:2361 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is\n" "designed to improve headphone listening of stereo audio records. Recommended\n" @@ -461,7 +501,7 @@ msgid "" "essential distortions." msgstr "" -#: gnu/packages/audio.scm:2364 +#: gnu/packages/audio.scm:2384 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and\n" "plugins is designed to improve headphone listening of stereo audio records.\n" @@ -470,13 +510,13 @@ msgid "" "with applications that support them (e.g. PulseAudio)." msgstr "" -#: gnu/packages/audio.scm:2390 +#: gnu/packages/audio.scm:2410 msgid "" "liblo is a lightweight library that provides an easy to use\n" "implementation of the Open Sound Control (@dfn{OSC}) protocol." msgstr "" -#: gnu/packages/audio.scm:2426 +#: gnu/packages/audio.scm:2446 msgid "" "RtAudio is a set of C++ classes that provides a common API for real-time\n" "audio input/output. It was designed with the following objectives:\n" @@ -495,13 +535,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/audio.scm:2462 +#: gnu/packages/audio.scm:2482 msgid "" "This package provides bindings for PortAudio v19, the\n" "cross-platform audio input/output stream library." msgstr "" -#: gnu/packages/audio.scm:2489 +#: gnu/packages/audio.scm:2509 msgid "" "Pyliblo is a Python wrapper for the liblo Open Sound Control (OSC)\n" "library. It supports almost the complete functionality of liblo, allowing you\n" @@ -509,19 +549,19 @@ msgid "" "included are the command line utilities @code{send_osc} and @code{dump_osc}." msgstr "" -#: gnu/packages/audio.scm:2526 +#: gnu/packages/audio.scm:2546 msgid "" "This package provides python bindings for libsndfile based on\n" "CFFI and NumPy." msgstr "" -#: gnu/packages/audio.scm:2544 +#: gnu/packages/audio.scm:2564 msgid "" "This package provides a python API to read and write MIDI\n" "files." msgstr "" -#: gnu/packages/audio.scm:2581 +#: gnu/packages/audio.scm:2601 msgid "" "@command{audio-to-midi} converts audio files to multichannel\n" "MIDI files. It accomplishes this by performing FFTs on all channels of the\n" @@ -531,14 +571,14 @@ msgid "" "frequencies. This data is then formatted to MIDI and written to disk." msgstr "" -#: gnu/packages/audio.scm:2624 +#: gnu/packages/audio.scm:2644 msgid "" "Lilv is a C library to make the use of LV2 plugins as simple as possible\n" "for applications. Lilv is the successor to SLV2, rewritten to be\n" "significantly faster and have minimal dependencies." msgstr "" -#: gnu/packages/audio.scm:2652 +#: gnu/packages/audio.scm:2672 msgid "" "LV2 is an open specification for audio plugins and host applications.\n" "At its core, LV2 is a simple stable interface, accompanied by extensions which\n" @@ -546,22 +586,22 @@ msgid "" "software." msgstr "" -#: gnu/packages/audio.scm:2688 +#: gnu/packages/audio.scm:2708 msgid "An LV2 port of the mda Piano VSTi." msgstr "" -#: gnu/packages/audio.scm:2702 +#: gnu/packages/audio.scm:2722 msgid "An LV2 port of the mda EPiano VSTi." msgstr "" -#: gnu/packages/audio.scm:2732 +#: gnu/packages/audio.scm:2752 msgid "" "The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and\n" "extensions into easy to use C++ classes. It is the successor of\n" "lv2-c++-tools." msgstr "" -#: gnu/packages/audio.scm:2774 +#: gnu/packages/audio.scm:2794 msgid "" "OpenAL provides capabilities for playing audio in a virtual 3D\n" "environment. Distance attenuation, doppler shift, and directional sound\n" @@ -571,36 +611,36 @@ msgid "" "buffers, and audio capture." msgstr "" -#: gnu/packages/audio.scm:2805 +#: gnu/packages/audio.scm:2825 msgid "freealut is the OpenAL Utility Toolkit." msgstr "" -#: gnu/packages/audio.scm:2837 +#: gnu/packages/audio.scm:2857 msgid "" "Patchage is a modular patch bay for audio and MIDI systems based on JACK\n" "and ALSA." msgstr "" -#: gnu/packages/audio.scm:2862 +#: gnu/packages/audio.scm:2882 msgid "" "The Portable C Audio Library (pcaudiolib) provides a C@tie{}API to\n" "different audio devices such as ALSA or PulseAudio." msgstr "" -#: gnu/packages/audio.scm:2889 +#: gnu/packages/audio.scm:2909 msgid "" "Control a Jack server. Allows you to plug various sources\n" "into various outputs and to start, stop and configure jackd" msgstr "" -#: gnu/packages/audio.scm:2921 +#: gnu/packages/audio.scm:2941 msgid "" "QJackRcd is a simple graphical stereo recorder for JACK\n" "supporting silence processing for automatic pause, file splitting, and\n" "background file post-processing." msgstr "" -#: gnu/packages/audio.scm:3029 +#: gnu/packages/audio.scm:3049 msgid "" "SuperCollider is a synthesis engine (@code{scsynth} or\n" "@code{supernova}) and programming language (@code{sclang}). It can be used\n" @@ -612,17 +652,17 @@ msgid "" "using Guix System." msgstr "" -#: gnu/packages/audio.scm:3057 +#: gnu/packages/audio.scm:3077 msgid "This package provides libshout plus IDJC extensions." msgstr "" -#: gnu/packages/audio.scm:3083 +#: gnu/packages/audio.scm:3103 msgid "" "Raul (Real-time Audio Utility Library) is a C++ utility library primarily\n" "aimed at audio/musical applications." msgstr "" -#: gnu/packages/audio.scm:3119 +#: gnu/packages/audio.scm:3139 msgid "" "This package contains the @command{resample} and\n" "@command{windowfilter} command line utilities. The @command{resample} command\n" @@ -631,26 +671,26 @@ msgid "" "filters using the so-called @emph{window method}." msgstr "" -#: gnu/packages/audio.scm:3160 +#: gnu/packages/audio.scm:3180 msgid "" "Rubber Band is a library and utility program that permits changing the\n" "tempo and pitch of an audio recording independently of one another." msgstr "" -#: gnu/packages/audio.scm:3184 +#: gnu/packages/audio.scm:3204 msgid "" "RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut, and API specific\n" "classes) that provide a common cross-platform API for realtime MIDI\n" "input/output." msgstr "" -#: gnu/packages/audio.scm:3210 +#: gnu/packages/audio.scm:3230 msgid "" "Sratom is a library for serialising LV2 atoms to/from RDF, particularly\n" "the Turtle syntax." msgstr "" -#: gnu/packages/audio.scm:3238 +#: gnu/packages/audio.scm:3258 msgid "" "Suil is a lightweight C library for loading and wrapping LV2 plugin UIs.\n" "\n" @@ -662,13 +702,13 @@ msgid "" "Suil currently supports every combination of Gtk, Qt, and X11." msgstr "" -#: gnu/packages/audio.scm:3270 +#: gnu/packages/audio.scm:3290 msgid "" "@code{libebur128} is a C library that implements the EBU R 128 standard\n" "for loudness normalisation." msgstr "" -#: gnu/packages/audio.scm:3324 +#: gnu/packages/audio.scm:3344 msgid "" "TiMidity++ is a software synthesizer. It can play MIDI files by\n" "converting them into PCM waveform data; give it a MIDI data along with digital\n" @@ -677,33 +717,33 @@ msgid "" "disks as various audio file formats." msgstr "" -#: gnu/packages/audio.scm:3364 +#: gnu/packages/audio.scm:3384 msgid "" "Vamp is an audio processing plugin system for plugins that extract\n" "descriptive information from audio data — typically referred to as audio\n" "analysis plugins or audio feature extraction plugins." msgstr "" -#: gnu/packages/audio.scm:3408 +#: gnu/packages/audio.scm:3428 msgid "" "SBSMS (Subband Sinusoidal Modeling Synthesis) is software for time\n" "stretching and pitch scaling of audio. This package contains the library." msgstr "" -#: gnu/packages/audio.scm:3435 +#: gnu/packages/audio.scm:3455 msgid "" "@code{libkeyfinder} is a small C++11 library for estimating the musical\n" "key of digital audio." msgstr "" -#: gnu/packages/audio.scm:3465 +#: gnu/packages/audio.scm:3485 msgid "" "WavPack is an audio compression format with lossless, lossy and hybrid\n" "compression modes. This package contains command-line programs and library to\n" "encode and decode wavpack files." msgstr "" -#: gnu/packages/audio.scm:3486 +#: gnu/packages/audio.scm:3506 msgid "" "Libmodplug renders mod music files as raw audio data, for playing or\n" "conversion. mod, .s3m, .it, .xm, and a number of lesser-known formats are\n" @@ -711,21 +751,21 @@ msgid "" "surround and reverb." msgstr "" -#: gnu/packages/audio.scm:3507 +#: gnu/packages/audio.scm:3527 msgid "" "Libxmp is a library that renders module files to PCM data. It supports\n" "over 90 mainstream and obscure module formats including Protracker (MOD),\n" "Scream Tracker 3 (S3M), Fast Tracker II (XM), and Impulse Tracker (IT)." msgstr "" -#: gnu/packages/audio.scm:3531 +#: gnu/packages/audio.scm:3551 msgid "" "Xmp is a portable module player that plays over 90 mainstream and\n" "obscure module formats, including Protracker MOD, Fasttracker II XM, Scream\n" "Tracker 3 S3M and Impulse Tracker IT files." msgstr "" -#: gnu/packages/audio.scm:3556 +#: gnu/packages/audio.scm:3576 msgid "" "SoundTouch is an audio processing library for changing the tempo, pitch\n" "and playback rates of audio streams or audio files. It is intended for\n" @@ -733,7 +773,7 @@ msgid "" "control functionality, or just for playing around with the sound effects." msgstr "" -#: gnu/packages/audio.scm:3595 +#: gnu/packages/audio.scm:3615 msgid "" "SoX (Sound eXchange) is a command line utility that can convert\n" "various formats of computer audio files to other formats. It can also\n" @@ -741,60 +781,60 @@ msgid "" "can play and record audio files." msgstr "" -#: gnu/packages/audio.scm:3620 +#: gnu/packages/audio.scm:3640 msgid "" "The SoX Resampler library (libsoxr) performs one-dimensional sample-rate\n" "conversion. It may be used, for example, to resample PCM-encoded audio." msgstr "" -#: gnu/packages/audio.scm:3643 +#: gnu/packages/audio.scm:3663 msgid "" "TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder based on\n" "tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code and\n" "portions of LAME." msgstr "" -#: gnu/packages/audio.scm:3699 +#: gnu/packages/audio.scm:3719 msgid "" "PortAudio is a portable C/C++ audio I/O library providing a simple API\n" "to record and/or play sound using a callback function or a blocking read/write\n" "interface." msgstr "" -#: gnu/packages/audio.scm:3728 +#: gnu/packages/audio.scm:3748 msgid "" "Qsynth is a GUI front-end application for the FluidSynth SoundFont\n" "synthesizer written in C++." msgstr "" -#: gnu/packages/audio.scm:3767 +#: gnu/packages/audio.scm:3787 msgid "" "RSound allows you to send audio from an application and transfer it\n" "directly to a different computer on your LAN network. It is an audio daemon\n" "with a much different focus than most other audio daemons." msgstr "" -#: gnu/packages/audio.scm:3797 +#: gnu/packages/audio.scm:3817 msgid "" "XJackFreak is an audio analysis and equalizing tool for the Jack Audio\n" "Connection Kit. It can display the FFT of any input, modify it and output the\n" "result." msgstr "" -#: gnu/packages/audio.scm:3849 +#: gnu/packages/audio.scm:3869 msgid "" "Zita convolver is a C++ library providing a real-time convolution\n" "engine." msgstr "" -#: gnu/packages/audio.scm:3901 +#: gnu/packages/audio.scm:3921 msgid "" "Libzita-resampler is a C++ library for resampling audio signals. It is\n" "designed to be used within a real-time processing context, to be fast, and to\n" "provide high-quality sample rate conversion." msgstr "" -#: gnu/packages/audio.scm:3947 +#: gnu/packages/audio.scm:3967 msgid "" "Zita-alsa-pcmi is a C++ wrapper around the ALSA API. It provides easy\n" "access to ALSA PCM devices, taking care of the many functions required to\n" @@ -802,7 +842,7 @@ msgid "" "point audio data." msgstr "" -#: gnu/packages/audio.scm:3971 +#: gnu/packages/audio.scm:3991 msgid "" "Cuetools is a set of programs that are useful for manipulating\n" "and using CUE sheet (cue) files and Table of Contents (toc) files. CUE and TOC\n" @@ -810,14 +850,14 @@ msgid "" "machine-readable ASCII format." msgstr "" -#: gnu/packages/audio.scm:4000 +#: gnu/packages/audio.scm:4020 msgid "" "mp3guessenc is a command line utility that tries to detect the\n" "encoder used for an MPEG Layer III (MP3) file, as well as scan any MPEG audio\n" "file (any layer) and print a lot of useful information." msgstr "" -#: gnu/packages/audio.scm:4021 +#: gnu/packages/audio.scm:4041 msgid "" "shntool is a multi-purpose WAVE data processing and reporting\n" "utility. File formats are abstracted from its core, so it can process any file\n" @@ -826,46 +866,46 @@ msgid "" "use them split WAVE data into multiple files." msgstr "" -#: gnu/packages/audio.scm:4061 +#: gnu/packages/audio.scm:4081 msgid "" "Dcadec is a DTS Coherent Acoustics surround sound decoder\n" "with support for HD extensions." msgstr "" -#: gnu/packages/audio.scm:4098 +#: gnu/packages/audio.scm:4118 msgid "" "BS1770GAIN is a loudness scanner compliant with ITU-R BS.1770 and its\n" "flavors EBU R128, ATSC A/85, and ReplayGain 2.0. It helps normalizing the\n" "loudness of audio and video files to the same level." msgstr "" -#: gnu/packages/audio.scm:4130 +#: gnu/packages/audio.scm:4150 msgid "" "An easy to use audio filtering library made from webrtc\n" "code, used in @code{libtoxcore}." msgstr "" -#: gnu/packages/audio.scm:4183 +#: gnu/packages/audio.scm:4203 msgid "" "This C library provides an encoder and a decoder for the GSM\n" "06.10 RPE-LTP lossy speech compression algorithm." msgstr "" -#: gnu/packages/audio.scm:4206 +#: gnu/packages/audio.scm:4226 msgid "" "This package contains wrappers for accessing the ALSA API from Python.\n" "It is currently fairly complete for PCM devices, and has some support for\n" "mixers." msgstr "" -#: gnu/packages/audio.scm:4230 +#: gnu/packages/audio.scm:4250 msgid "" "This package provides an encoder for the LDAC\n" "high-resolution Bluetooth audio streaming codec for streaming at up to 990\n" "kbps at 24 bit/96 kHz." msgstr "" -#: gnu/packages/audio.scm:4274 +#: gnu/packages/audio.scm:4294 msgid "" "This project is a rebirth of a direct integration between\n" "Bluez and ALSA. Since Bluez >= 5, the built-in integration has been removed\n" @@ -878,14 +918,14 @@ msgid "" "on the ALSA software PCM plugin." msgstr "" -#: gnu/packages/audio.scm:4340 +#: gnu/packages/audio.scm:4360 msgid "" "Snd is a sound editor modelled loosely after Emacs. It can be\n" "customized and extended using either the s7 Scheme implementation (included in\n" "the Snd sources), Ruby, or Forth." msgstr "" -#: gnu/packages/audio.scm:4369 +#: gnu/packages/audio.scm:4389 msgid "" "Noise Repellent is an LV2 plugin to reduce noise. It has\n" "the following features:\n" @@ -905,31 +945,31 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/audio.scm:4436 +#: gnu/packages/audio.scm:4456 msgid "" "RNNoise is a library that uses deep learning to apply\n" "noise suppression to audio sources with voice presence. This package provides\n" "an LV2 audio plugin." msgstr "" -#: gnu/packages/audio.scm:4480 +#: gnu/packages/audio.scm:4500 msgid "" "@code{cli-visualizer} displays fast-Fourier\n" "transforms (FFTs) of the sound being played, as well as other graphical\n" "representations." msgstr "" -#: gnu/packages/audio.scm:4530 +#: gnu/packages/audio.scm:4550 msgid "" "C.A.V.A. is a bar audio spectrum visualizer for the terminal\n" "using ALSA, MPD, PulseAudio, or a FIFO buffer as its input." msgstr "" -#: gnu/packages/audio.scm:4564 +#: gnu/packages/audio.scm:4584 msgid "Fluid-3 is Frank Wen's pro-quality GM soundfont." msgstr "" -#: gnu/packages/audio.scm:4586 +#: gnu/packages/audio.scm:4606 msgid "" "FDK is a library for encoding and decoding Advanced Audio\n" "Coding (AAC) format audio, developed by Fraunhofer IIS, and included as part of\n" @@ -940,20 +980,20 @@ msgid "" " surround)." msgstr "" -#: gnu/packages/audio.scm:4626 +#: gnu/packages/audio.scm:4646 msgid "" "OpenShot Audio Library (libopenshot-audio) allows\n" "high-quality editing and playback of audio, and is based on the JUCE\n" "library." msgstr "" -#: gnu/packages/audio.scm:4652 +#: gnu/packages/audio.scm:4672 msgid "" "FAudio is an XAudio reimplementation that focuses solely on\n" "developing fully accurate DirectX Audio runtime libraries." msgstr "" -#: gnu/packages/audio.scm:4679 +#: gnu/packages/audio.scm:4699 msgid "" "Gnaural is a programmable auditory binaural beat synthesizer\n" "intended to be used for brainwave entrainment. Gnaural supports creation of\n" @@ -962,20 +1002,20 @@ msgid "" "other Gnaural instances, allowing synchronous sessions between many users." msgstr "" -#: gnu/packages/audio.scm:4714 +#: gnu/packages/audio.scm:4734 msgid "" "DarkIce is a live audio streamer. It takes audio input from\n" "a sound card, encodes it into Ogg Vorbis and/or mp3, and sends the audio\n" "stream to one or more IceCast and/or ShoutCast servers." msgstr "" -#: gnu/packages/audio.scm:4738 +#: gnu/packages/audio.scm:4758 msgid "" "Libltc is a POSIX-C Library for handling\n" "@dfn{Linear/Longitudinal Time Code} (LTC) data." msgstr "" -#: gnu/packages/audio.scm:4772 +#: gnu/packages/audio.scm:4792 msgid "" "TTA performs lossless compression on multichannel 8,16 and 24 bits\n" "data of the Wav audio files. Being lossless means that no data-\n" @@ -986,14 +1026,14 @@ msgid "" "supports both of ID3v1/v2 and APEv2 tags." msgstr "" -#: gnu/packages/audio.scm:4805 +#: gnu/packages/audio.scm:4825 msgid "" "@code{libsoundio} is a C library providing audio input and\n" "output. The API is suitable for real-time software such as digital audio\n" "workstations as well as consumer software such as music players." msgstr "" -#: gnu/packages/audio.scm:4831 +#: gnu/packages/audio.scm:4851 msgid "" "Redkite is a small GUI toolkit developed in C++17 and\n" "inspired from other well known GUI toolkits such as Qt and GTK. It is\n" @@ -1002,7 +1042,7 @@ msgid "" "as is the case with audio plugins." msgstr "" -#: gnu/packages/audio.scm:4903 +#: gnu/packages/audio.scm:4923 msgid "" "Carla is a modular audio plugin host, with features like\n" "transport control, automation of parameters via MIDI CC and remote control\n" @@ -1011,7 +1051,7 @@ msgid "" "default and preferred audio driver but also supports native drivers like ALSA." msgstr "" -#: gnu/packages/audio.scm:4939 +#: gnu/packages/audio.scm:4959 msgid "" "Ecasound is a software package designed for multitrack audio\n" "processing. It can be used for simple tasks like audio playback, recording and\n" @@ -1023,28 +1063,28 @@ msgid "" "in the package." msgstr "" -#: gnu/packages/audio.scm:4977 +#: gnu/packages/audio.scm:4997 msgid "" "libaudec is a wrapper library over ffmpeg, sndfile and\n" "libsamplerate for reading and resampling audio files, based on Robin Gareus'\n" "@code{audio_decoder} code." msgstr "" -#: gnu/packages/audio.scm:5007 +#: gnu/packages/audio.scm:5027 msgid "" "lv2lint is an LV2 lint-like tool that checks whether a\n" "given plugin and its UI(s) match up with the provided metadata and adhere\n" "to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5041 +#: gnu/packages/audio.scm:5061 msgid "" "lv2toweb allows the user to create an xhtml page with information\n" "about the given LV2 plugin, provided that the plugin and its UI(s) match up\n" "with the provided metadata and adhere to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5069 +#: gnu/packages/audio.scm:5089 msgid "" "ZToolkit (Ztk) is a cross-platform GUI toolkit heavily\n" "inspired by GTK. It handles events and low level drawing on behalf of\n" @@ -1054,7 +1094,7 @@ msgid "" "minimum." msgstr "" -#: gnu/packages/audio.scm:5102 +#: gnu/packages/audio.scm:5122 msgid "" "libInstPatch is a library for processing digital sample based MIDI\n" "instrument \"patch\" files. The types of files libInstPatch supports are used\n" @@ -1063,28 +1103,28 @@ msgid "" "edited, converted, compressed and saved." msgstr "" -#: gnu/packages/audio.scm:5149 +#: gnu/packages/audio.scm:5169 msgid "" "The LSP DSP library provides a set of functions that perform\n" "SIMD-optimized computing on several hardware architectures. All functions\n" "currently operate on IEEE-754 single-precision floating-point numbers." msgstr "" -#: gnu/packages/audio.scm:5180 +#: gnu/packages/audio.scm:5200 msgid "" "Codec 2 is a speech codec designed for communications quality speech\n" "between 700 and 3200 bit/s. The main application is low bandwidth HF/VHF\n" "digital radio." msgstr "" -#: gnu/packages/audio.scm:5206 +#: gnu/packages/audio.scm:5226 msgid "" "The mbelib library provides support for the 7200x4400 bit/s codec used\n" "in P25 Phase 1, the 7100x4400 bit/s codec used in ProVoice and the @emph{Half\n" "Rate} 3600x2250 bit/s vocoder used in various radio systems." msgstr "" -#: gnu/packages/audio.scm:5299 +#: gnu/packages/audio.scm:5319 msgid "" "Ableton Link is a C++ library that synchronizes musical beat, tempo, and phase\n" "across multiple applications running on one or more devices. Applications on devices\n" @@ -1093,20 +1133,20 @@ msgid "" "while still staying in time." msgstr "" -#: gnu/packages/audio.scm:5360 +#: gnu/packages/audio.scm:5380 msgid "" "Butt is a tool to stream audio to a ShoutCast or\n" "Icecast server." msgstr "" -#: gnu/packages/audio.scm:5406 +#: gnu/packages/audio.scm:5426 msgid "" "siggen is a set of tools for imitating a laboratory signal\n" "generator, generating audio signals out of Linux's /dev/dsp audio\n" "device. There is support for mono and/or stereo and 8 or 16 bit samples." msgstr "" -#: gnu/packages/audio.scm:5453 +#: gnu/packages/audio.scm:5473 msgid "" "@code{python-pysox} is a wrapper around the @command{sox}\n" "command line tool. The API offers @code{Transformer} and @code{Combiner}\n" @@ -1116,7 +1156,7 @@ msgid "" "and much more." msgstr "" -#: gnu/packages/audio.scm:5492 +#: gnu/packages/audio.scm:5512 msgid "" "@code{python-resampy} implements the band-limited sinc interpolation\n" "method for sampling rate conversion as described by Julius O. Smith at the\n" @@ -1124,34 +1164,34 @@ msgid "" "Home Page}." msgstr "" -#: gnu/packages/audio.scm:5528 +#: gnu/packages/audio.scm:5548 msgid "" "@code{librosa} is a python package for music and audio analysis. It\n" "provides the building blocks necessary to create music information retrieval\n" "systems." msgstr "" -#: gnu/packages/audio.scm:5561 +#: gnu/packages/audio.scm:5581 msgid "" "MDA-LV2 is an LV2 port of the MDA plugins. It includes effects and a few\n" "instrument plugins." msgstr "" -#: gnu/packages/audio.scm:5593 +#: gnu/packages/audio.scm:5613 msgid "" "The Odio SACD shared library is a decoding engine which takes a Super\n" "Audio CD source and extracts a 24-bit high resolution WAV file. It handles\n" "both DST and DSD streams." msgstr "" -#: gnu/packages/audio.scm:5618 +#: gnu/packages/audio.scm:5638 msgid "" "Odio SACD is a command-line application which takes a Super Audio CD\n" "source and extracts a 24-bit high resolution WAV file. It handles both DST\n" "and DSD streams." msgstr "" -#: gnu/packages/backup.scm:155 +#: gnu/packages/backup.scm:165 msgid "" "Duplicity backs up directories by producing encrypted tar-format volumes\n" "and uploading them to a remote or local file server. Because duplicity uses\n" @@ -1161,7 +1201,7 @@ msgid "" "spying and/or modification by the server." msgstr "" -#: gnu/packages/backup.scm:180 +#: gnu/packages/backup.scm:190 msgid "" "Par2cmdline uses Reed-Solomon error-correcting codes to\n" "generate and verify PAR2 recovery files. These files can be distributed\n" @@ -1173,7 +1213,7 @@ msgid "" "can even repair them." msgstr "" -#: gnu/packages/backup.scm:219 +#: gnu/packages/backup.scm:229 msgid "" "Hdup2 is a backup utility, its aim is to make backup really simple. The\n" "backup scheduling is done by means of a cron job. It supports an\n" @@ -1181,7 +1221,7 @@ msgid "" "backups (called chunks) to allow easy burning to CD/DVD." msgstr "" -#: gnu/packages/backup.scm:316 +#: gnu/packages/backup.scm:326 msgid "" "Libarchive provides a flexible interface for reading and writing\n" "archives in various formats such as tar and cpio. Libarchive also supports\n" @@ -1192,7 +1232,7 @@ msgid "" "random access nor for in-place modification." msgstr "" -#: gnu/packages/backup.scm:380 +#: gnu/packages/backup.scm:390 msgid "" "Rdup is a utility inspired by rsync and the plan9 way of doing backups.\n" "Rdup itself does not backup anything, it only print a list of absolute\n" @@ -1200,7 +1240,7 @@ msgid "" "list and implement the backup strategy." msgstr "" -#: gnu/packages/backup.scm:419 +#: gnu/packages/backup.scm:429 msgid "" "SnapRAID backs up files stored across multiple storage devices, such as\n" "disk arrays, in an efficient way reminiscent of its namesake @acronym{RAID,\n" @@ -1226,7 +1266,7 @@ msgid "" "remain fully idle, saving power and producing less noise." msgstr "" -#: gnu/packages/backup.scm:469 +#: gnu/packages/backup.scm:479 msgid "" "Btar is a tar-compatible archiver which allows arbitrary compression and\n" "ciphering, redundancy, differential backup, indexed extraction, multicore\n" @@ -1234,7 +1274,7 @@ msgid "" "errors." msgstr "" -#: gnu/packages/backup.scm:496 +#: gnu/packages/backup.scm:506 msgid "" "Rdiff-backup backs up one directory to another, possibly over a network.\n" "The target directory ends up a copy of the source directory, but extra reverse\n" @@ -1249,7 +1289,7 @@ msgid "" "rdiff-backup is easy to use and settings have sensible defaults." msgstr "" -#: gnu/packages/backup.scm:532 +#: gnu/packages/backup.scm:542 msgid "" "rsnapshot is a file system snapshot utility based on rsync.\n" "rsnapshot makes it easy to make periodic snapshots of local machines, and\n" @@ -1257,7 +1297,7 @@ msgid "" "rsnapshot uses hard links to deduplicate identical files." msgstr "" -#: gnu/packages/backup.scm:610 +#: gnu/packages/backup.scm:620 msgid "" "Libchop is a set of utilities and library for data backup and\n" "distributed storage. Its main application is @command{chop-backup}, an\n" @@ -1268,17 +1308,17 @@ msgid "" "detection, and lossless compression." msgstr "" -#: gnu/packages/backup.scm:740 +#: gnu/packages/backup.scm:750 msgid "" "Borg is a deduplicating backup program. Optionally, it\n" "supports compression and authenticated encryption. The main goal of Borg is to\n" "provide an efficient and secure way to backup data. The data deduplication\n" "technique used makes Borg suitable for daily backups since only changes are\n" -"stored. The authenticated encryption technique makes it suitable for backups\n" -"to not fully trusted targets. Borg is a fork of Attic." +"stored. The authenticated encryption technique makes it suitable for\n" +"storing backups on untrusted computers." msgstr "" -#: gnu/packages/backup.scm:771 +#: gnu/packages/backup.scm:781 msgid "" "wimlib is a C library and set of command-line utilities for\n" "creating, modifying, extracting, and mounting archives in the Windows Imaging\n" @@ -1286,14 +1326,14 @@ msgid "" "NTFS volumes using @code{ntfs-3g}, preserving NTFS-specific attributes." msgstr "" -#: gnu/packages/backup.scm:879 +#: gnu/packages/backup.scm:889 msgid "" "With dirvish you can maintain a set of complete images of your\n" "file systems with unattended creation and expiration. A dirvish backup vault\n" "is like a time machine for your data." msgstr "" -#: gnu/packages/backup.scm:974 +#: gnu/packages/backup.scm:984 msgid "" "Restic is a program that does backups right and was designed\n" "with the following principles in mind:\n" @@ -1325,7 +1365,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/backup.scm:1025 +#: gnu/packages/backup.scm:1035 msgid "" "ZBackup is a globally-deduplicating backup tool, based on the\n" "ideas found in Rsync. Feed a large @file{.tar} into it, and it will\n" @@ -1338,7 +1378,7 @@ msgid "" "is format-agnostic, so you can feed virtually any files to it." msgstr "" -#: gnu/packages/backup.scm:1061 +#: gnu/packages/backup.scm:1071 msgid "" "Dump examines files in a file system, determines which ones\n" "need to be backed up, and copies those files to a specified disk, tape or\n" @@ -1349,14 +1389,44 @@ msgid "" "interactive mode." msgstr "" -#: gnu/packages/backup.scm:1105 +#: gnu/packages/backup.scm:1131 +msgid "" +"Btrbk is a backup tool for Btrfs subvolumes, taking\n" +"advantage of Btrfs specific capabilities to create atomic snapshots and\n" +"transfer them incrementally to your backup locations. The source and target\n" +"locations are specified in a config file, which allows easily configuring\n" +"simple scenarios like e.g. a @i{laptop with locally attached backup disks}, as\n" +"well as more complex ones, e.g. a @i{server receiving backups from several\n" +"hosts via SSH, with different retention policy}. It has features such as:\n" +"@itemize\n" +"@item atomic snapshots\n" +"@item incremental backups\n" +"@item flexible retention policy\n" +"@item backups to multiple destinations\n" +"@item transfer via SSH\n" +"@item resume backups (for removable and mobile devices)\n" +"@item archive to offline storage\n" +"@item encrypted backups to non-btrfs storage\n" +"@item wildcard subvolumes (useful for Docker and LXC containers)\n" +"@item transaction log\n" +"@item comprehensive list and statistics output\n" +"@item resolve and trace Btrfs parent-child and received-from relationships\n" +"@item list file changes between backups\n" +"@item calculate accurate disk space usage based on block regions.\n" +"@end itemize\n" +"Btrbk is designed to run as a cron job for triggering periodic snapshots and\n" +"backups, as well as from the command line (e.g. for instantly creating\n" +"additional snapshots)." +msgstr "" + +#: gnu/packages/backup.scm:1194 msgid "" "Burp is a network backup and restore program. It attempts\n" "to reduce network traffic and the amount of space that is used by each\n" "backup." msgstr "" -#: gnu/packages/backup.scm:1136 +#: gnu/packages/backup.scm:1225 msgid "" "Disarchive can disassemble software archives into data\n" "and metadata. The goal is to create a small amount of metadata that\n" @@ -1366,7 +1436,7 @@ msgid "" "compression parameters used by Gzip." msgstr "" -#: gnu/packages/backup.scm:1181 +#: gnu/packages/backup.scm:1270 msgid "" "borgmatic is simple, configuration-driven backup software for servers\n" "and workstations. Protect your files with client-side encryption. Backup\n" @@ -1374,6 +1444,14 @@ msgid "" "borgmatic is powered by borg." msgstr "" +#: gnu/packages/backup.scm:1330 +msgid "" +"Vorta is a graphical backup client based on the Borg backup\n" +"tool. It supports the use of remote backup repositories. It can perform\n" +"scheduled backups, and has a graphical tool for browsing and extracting the Borg\n" +"archives." +msgstr "" + #: gnu/packages/base.scm:98 msgid "" "GNU Hello prints the message \"Hello, world!\" and then exits. It\n" @@ -1458,7 +1536,7 @@ msgid "" "change. GNU make offers many powerful extensions over the standard utility." msgstr "" -#: gnu/packages/base.scm:550 +#: gnu/packages/base.scm:558 msgid "" "GNU Binutils is a collection of tools for working with binary files.\n" "Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler.\n" @@ -1468,14 +1546,14 @@ msgid "" "included." msgstr "" -#: gnu/packages/base.scm:694 +#: gnu/packages/base.scm:685 msgid "" "The linker wrapper (or @code{ld-wrapper}) wraps the linker to add any\n" "missing @code{-rpath} flags, and to detect any misuse of libraries outside of\n" "the store." msgstr "" -#: gnu/packages/base.scm:930 +#: gnu/packages/base.scm:921 msgid "" "Any Unix-like operating system needs a C library: the library which\n" "defines the \"system calls\" and other basic facilities such as open, malloc,\n" @@ -1485,21 +1563,21 @@ msgid "" "with the Linux kernel." msgstr "" -#: gnu/packages/base.scm:1057 +#: gnu/packages/base.scm:1048 msgid "" "This package provides all the locales supported by the GNU C Library,\n" "more than 400 in total. To use them set the @code{LOCPATH} environment variable\n" "to the @code{share/locale} sub-directory of this package." msgstr "" -#: gnu/packages/base.scm:1206 +#: gnu/packages/base.scm:1198 msgid "" "The which program finds the location of executables in PATH, with a\n" "variety of options. It is an alternative to the shell \"type\" built-in\n" "command." msgstr "" -#: gnu/packages/base.scm:1329 +#: gnu/packages/base.scm:1321 msgid "" "The Time Zone Database (often called tz or zoneinfo)\n" "contains code and data that represent the history of local time for many\n" @@ -1508,14 +1586,14 @@ msgid "" "and daylight-saving rules." msgstr "" -#: gnu/packages/base.scm:1367 +#: gnu/packages/base.scm:1359 msgid "" "libiconv provides an implementation of the iconv function for systems\n" "that lack it. iconv is used to convert between character encodings in a\n" "program. It supports a wide variety of different encodings." msgstr "" -#: gnu/packages/bittorrent.scm:131 +#: gnu/packages/bittorrent.scm:135 msgid "" "Transmission is a BitTorrent client that comes with graphical,\n" "textual, and Web user interfaces. Transmission also has a daemon for\n" @@ -1523,54 +1601,54 @@ msgid "" "DHT, µTP, PEX and Magnet Links." msgstr "" -#: gnu/packages/bittorrent.scm:165 +#: gnu/packages/bittorrent.scm:169 msgid "" "transmission-remote-gtk is a GTK client for remote management\n" "of the Transmission BitTorrent client, using its HTTP RPC protocol." msgstr "" -#: gnu/packages/bittorrent.scm:187 +#: gnu/packages/bittorrent.scm:191 msgid "" "LibTorrent is a BitTorrent library used by and developed in parallel\n" "with the BitTorrent client rtorrent. It is written in C++ with emphasis on\n" "speed and efficiency." msgstr "" -#: gnu/packages/bittorrent.scm:215 +#: gnu/packages/bittorrent.scm:219 msgid "" "rTorrent is a BitTorrent client with an ncurses interface. It supports\n" "full encryption, DHT, PEX, and Magnet Links. It can also be controlled via\n" "XML-RPC over SCGI." msgstr "" -#: gnu/packages/bittorrent.scm:249 +#: gnu/packages/bittorrent.scm:253 msgid "" "Tremc is a console client, with a curses interface, for the\n" "Transmission BitTorrent daemon." msgstr "" -#: gnu/packages/bittorrent.scm:290 +#: gnu/packages/bittorrent.scm:294 msgid "" "Transmission-remote-cli is a console client, with a curses\n" "interface, for the Transmission BitTorrent daemon. This package is no longer\n" "maintained upstream." msgstr "" -#: gnu/packages/bittorrent.scm:340 +#: gnu/packages/bittorrent.scm:345 msgid "" "Aria2 is a lightweight, multi-protocol & multi-source command-line\n" "download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and Metalink.\n" "Aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces." msgstr "" -#: gnu/packages/bittorrent.scm:374 +#: gnu/packages/bittorrent.scm:381 msgid "" "uGet is portable download manager with GTK+ interface supporting\n" "HTTP, HTTPS, BitTorrent and Metalink, supporting multi-connection\n" "downloads, download scheduling, download rate limiting." msgstr "" -#: gnu/packages/bittorrent.scm:406 +#: gnu/packages/bittorrent.scm:413 msgid "" "mktorrent is a simple command-line utility to create BitTorrent\n" "@dfn{metainfo} files, often known simply as @dfn{torrents}, from both single\n" @@ -1580,14 +1658,14 @@ msgid "" "and will take advantage of multiple processor cores where possible." msgstr "" -#: gnu/packages/bittorrent.scm:457 +#: gnu/packages/bittorrent.scm:472 msgid "" "libtorrent-rasterbar is a feature-complete C++ BitTorrent implementation\n" "focusing on efficiency and scalability. It runs on embedded devices as well as\n" "desktops." msgstr "" -#: gnu/packages/bittorrent.scm:508 +#: gnu/packages/bittorrent.scm:523 msgid "" "qBittorrent is a BitTorrent client programmed in C++/Qt that uses\n" "libtorrent (sometimes called libtorrent-rasterbar) by Arvid Norberg.\n" @@ -1597,7 +1675,7 @@ msgid "" "features." msgstr "" -#: gnu/packages/bittorrent.scm:580 +#: gnu/packages/bittorrent.scm:604 msgid "" "Deluge contains the common features to BitTorrent clients such as\n" "Protocol Encryption, DHT, Local Peer Discovery (LSD), Peer Exchange\n" @@ -1909,7 +1987,16 @@ msgid "" "functionality in a C++ iostream." msgstr "" -#: gnu/packages/compression.scm:1443 +#: gnu/packages/compression.scm:1416 +msgid "" +"Zopfli Compression Algorithm is a compression library\n" +"programmed in C to perform very good, but slow, deflate or zlib compression.\n" +"ZopfliCompress supports the deflate, gzip and zlib output formats. This\n" +"library can only compress, not decompress; existing zlib or deflate libraries\n" +"can decompress the data." +msgstr "" + +#: gnu/packages/compression.scm:1469 msgid "" "ZPAQ is a command-line archiver for realistic situations with\n" "many duplicate and already compressed files. It backs up only those files\n" @@ -1923,13 +2010,13 @@ msgid "" "or junctions, and always follows hard links." msgstr "" -#: gnu/packages/compression.scm:1545 +#: gnu/packages/compression.scm:1571 msgid "" "@command{unshield} is a tool and library for extracting @file{.cab}\n" " archives from InstallShield installers." msgstr "" -#: gnu/packages/compression.scm:1624 +#: gnu/packages/compression.scm:1650 msgid "" "Zstandard (@command{zstd}) is a lossless compression algorithm\n" "that combines very fast operation with a compression ratio comparable to that of\n" @@ -1939,7 +2026,7 @@ msgid "" "speed." msgstr "" -#: gnu/packages/compression.scm:1672 +#: gnu/packages/compression.scm:1698 msgid "" "Parallel Zstandard (PZstandard or @command{pzstd}) is a\n" "multi-threaded implementation of the @uref{http://zstd.net/, Zstandard\n" @@ -1952,7 +2039,7 @@ msgid "" "the actual decompression, the other input and output." msgstr "" -#: gnu/packages/compression.scm:1712 +#: gnu/packages/compression.scm:1738 msgid "" "Zip is a compression and file packaging/archive utility. Zip is useful\n" "for packaging a set of files for distribution, for archiving files, and for\n" @@ -1967,7 +2054,7 @@ msgid "" "Compression ratios of 2:1 to 3:1 are common for text files." msgstr "" -#: gnu/packages/compression.scm:1801 +#: gnu/packages/compression.scm:1827 msgid "" "UnZip is an extraction utility for archives compressed in .zip format,\n" "also called \"zipfiles\".\n" @@ -1978,7 +2065,7 @@ msgid "" "recreates the stored directory structure by default." msgstr "" -#: gnu/packages/compression.scm:1853 +#: gnu/packages/compression.scm:1879 msgid "" "Ziptime helps make @file{.zip} archives reproducible by replacing\n" "timestamps in the file header with a fixed time (1 January 2008).\n" @@ -1987,11 +2074,11 @@ msgid "" "@command{zip} to prevent it from storing the ``universal time'' field." msgstr "" -#: gnu/packages/compression.scm:1880 +#: gnu/packages/compression.scm:1906 msgid "ZZipLib is a library based on zlib for accessing zip files." msgstr "" -#: gnu/packages/compression.scm:1904 +#: gnu/packages/compression.scm:1930 msgid "" "Libzip is a C library for reading, creating, and modifying\n" "zip archives. Files can be added from data buffers, files, or compressed data\n" @@ -1999,7 +2086,7 @@ msgid "" "archive can be reverted." msgstr "" -#: gnu/packages/compression.scm:1937 +#: gnu/packages/compression.scm:1963 msgid "" "The main command is @command{aunpack} which extracts files\n" "from an archive. The other commands provided are @command{apack} (to create\n" @@ -2009,7 +2096,7 @@ msgid "" "of archives." msgstr "" -#: gnu/packages/compression.scm:1963 +#: gnu/packages/compression.scm:1989 msgid "" "Lunzip is a decompressor for files in the lzip compression format (.lz),\n" "written as a single small C tool with no dependencies. This makes it\n" @@ -2019,7 +2106,7 @@ msgid "" "Lunzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:1990 +#: gnu/packages/compression.scm:2016 msgid "" "Clzip is a compressor and decompressor for files in the lzip compression\n" "format (.lz), written as a single small C tool with no dependencies. This makes\n" @@ -2028,7 +2115,7 @@ msgid "" "Clzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:2018 +#: gnu/packages/compression.scm:2044 msgid "" "Lzlib is a C library for in-memory LZMA compression and decompression in\n" "the lzip format. It supports integrity checking of the decompressed data, and\n" @@ -2036,7 +2123,7 @@ msgid "" "corrupted input." msgstr "" -#: gnu/packages/compression.scm:2042 +#: gnu/packages/compression.scm:2068 msgid "" "Plzip is a massively parallel (multi-threaded) lossless data compressor\n" "and decompressor that uses the lzip file format (.lz). Files produced by plzip\n" @@ -2050,13 +2137,13 @@ msgid "" "single-member files which can't be decompressed in parallel." msgstr "" -#: gnu/packages/compression.scm:2074 +#: gnu/packages/compression.scm:2100 msgid "" "innoextract allows extracting Inno Setup installers under\n" "non-Windows systems without running the actual installer using wine." msgstr "" -#: gnu/packages/compression.scm:2096 +#: gnu/packages/compression.scm:2122 msgid "" "ISA-L is a collection of optimized low-level functions\n" "targeting storage applications. ISA-L includes:\n" @@ -2074,7 +2161,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/compression.scm:2156 +#: gnu/packages/compression.scm:2182 msgid "" "This package provides the reference implementation of Brotli,\n" "a generic-purpose lossless compression algorithm that compresses data using a\n" @@ -2086,13 +2173,13 @@ msgid "" "The specification of the Brotli Compressed Data Format is defined in RFC 7932." msgstr "" -#: gnu/packages/compression.scm:2176 +#: gnu/packages/compression.scm:2202 msgid "" "This package provides a Python interface to the @code{brotli}\n" "package, an implementation of the Brotli lossless compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2200 +#: gnu/packages/compression.scm:2226 msgid "" "UCL implements a number of compression algorithms that\n" "achieve an excellent compression ratio while allowing fast decompression.\n" @@ -2102,7 +2189,7 @@ msgid "" "decompression is a little bit slower." msgstr "" -#: gnu/packages/compression.scm:2248 +#: gnu/packages/compression.scm:2274 msgid "" "The Ultimate Packer for eXecutables (UPX) is an executable file\n" "compressor. UPX typically reduces the file size of programs and shared\n" @@ -2110,7 +2197,7 @@ msgid "" "download times, and other distribution and storage costs." msgstr "" -#: gnu/packages/compression.scm:2276 +#: gnu/packages/compression.scm:2302 msgid "" "QuaZIP is a simple C++ wrapper over Gilles Vollant's\n" "ZIP/UNZIP package that can be used to access ZIP archives. It uses\n" @@ -2124,7 +2211,7 @@ msgid "" "reading from and writing to ZIP archives." msgstr "" -#: gnu/packages/compression.scm:2335 +#: gnu/packages/compression.scm:2361 msgid "" "The zchunk compressed file format allows splitting a file\n" "into independent chunks. This makes it possible to retrieve only changed\n" @@ -2147,7 +2234,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/compression.scm:2391 +#: gnu/packages/compression.scm:2417 msgid "" "Zutils is a collection of utilities able to process any combination of\n" "compressed and uncompressed files transparently. If any given file, including\n" @@ -2164,14 +2251,14 @@ msgid "" "at run time, and must be installed separately." msgstr "" -#: gnu/packages/compression.scm:2449 +#: gnu/packages/compression.scm:2475 msgid "" "This package provides a script to unpack self-extracting\n" "archives generated by @command{makeself} or @command{mojo} without running the\n" "possibly untrusted extraction shell script." msgstr "" -#: gnu/packages/compression.scm:2477 +#: gnu/packages/compression.scm:2503 msgid "" "(N)compress provides the original compress and uncompress\n" "programs that used to be the de facto UNIX standard for compressing and\n" @@ -2179,7 +2266,7 @@ msgid "" "file compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2504 +#: gnu/packages/compression.scm:2530 msgid "" "Xarchiver is a front-end to various command line archiving\n" "tools. It uses GTK+ tool-kit and is designed to be desktop-environment\n" @@ -2188,13 +2275,13 @@ msgid "" "archiver is not installed." msgstr "" -#: gnu/packages/compression.scm:2541 +#: gnu/packages/compression.scm:2567 msgid "" "Archive huge numbers of files, or split massive tar archives into smaller\n" "chunks." msgstr "" -#: gnu/packages/compression.scm:2574 +#: gnu/packages/compression.scm:2600 msgid "" "Blosc is a high performance compressor optimized for binary data. It has\n" "been designed to transmit data to the processor cache faster than the\n" @@ -2204,14 +2291,14 @@ msgid "" "computations." msgstr "" -#: gnu/packages/compression.scm:2612 +#: gnu/packages/compression.scm:2638 msgid "" "ECM is a utility that converts ECM files, i.e., CD data files\n" "with their error correction data losslessly rearranged for better compression,\n" "to their original, binary CD format." msgstr "" -#: gnu/packages/compression.scm:2642 +#: gnu/packages/compression.scm:2668 msgid "" "Libdeflate is a library for fast, whole-buffer DEFLATE-based\n" "compression and decompression. The supported formats are:\n" @@ -2223,7 +2310,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/compression.scm:2672 +#: gnu/packages/compression.scm:2698 msgid "" "Tarlz is a massively parallel (multi-threaded) combined implementation of\n" "the tar archiver and the lzip compressor. Tarlz creates, lists, and extracts\n" @@ -2234,7 +2321,7 @@ msgid "" "can append files to the end of such compressed archives." msgstr "" -#: gnu/packages/compression.scm:2706 +#: gnu/packages/compression.scm:2732 msgid "" "The Concise Binary Object Representation (CBOR) is a data format whose\n" "design goals include the possibility of extremely small code size, fairly\n" @@ -2243,17 +2330,17 @@ msgid "" "serializations such as ASN.1 and MessagePack." msgstr "" -#: gnu/packages/compression.scm:2739 +#: gnu/packages/compression.scm:2765 msgid "Fcrackzip is a Zip file password cracker." msgstr "" -#: gnu/packages/databases.scm:211 +#: gnu/packages/databases.scm:216 msgid "" "4store is a RDF/SPARQL store written in C, supporting\n" "either single machines or networked clusters." msgstr "" -#: gnu/packages/databases.scm:255 +#: gnu/packages/databases.scm:260 msgid "" "@code{pg_tmp} creates temporary PostgreSQL databases, suitable for tasks\n" "like running software test suites. Temporary databases created with\n" @@ -2262,14 +2349,14 @@ msgid "" "60)." msgstr "" -#: gnu/packages/databases.scm:281 +#: gnu/packages/databases.scm:286 msgid "" "This package provides a utility for dumping the contents of an\n" "ElasticSearch index to a compressed file and restoring the dumpfile back to an\n" "ElasticSearch server" msgstr "" -#: gnu/packages/databases.scm:433 +#: gnu/packages/databases.scm:438 msgid "" "Firebird is an SQL @acronym{RDBMS, relational database management system}\n" "with rich support for ANSI SQL (e.g., @code{INSERT...RETURNING}) including\n" @@ -2289,20 +2376,20 @@ msgid "" "database later." msgstr "" -#: gnu/packages/databases.scm:506 +#: gnu/packages/databases.scm:511 msgid "" "LevelDB is a fast key-value storage library that provides an ordered\n" "mapping from string keys to string values." msgstr "" -#: gnu/packages/databases.scm:526 +#: gnu/packages/databases.scm:531 msgid "" "Memcached is an in-memory key-value store. It has a small\n" "and generic API, and was originally intended for use with dynamic web\n" "applications." msgstr "" -#: gnu/packages/databases.scm:588 +#: gnu/packages/databases.scm:593 msgid "" "libMemcached is a library to use memcached in C/C++\n" "applications. It comes with a complete reference guide and documentation of\n" @@ -2316,51 +2403,73 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:625 +#: gnu/packages/databases.scm:630 msgid "" "@code{pylibmc} is a client in Python for memcached. It is a wrapper\n" "around TangentOrg’s libmemcached library, and can be used as a drop-in\n" "replacement for the code@{python-memcached} library." msgstr "" -#: gnu/packages/databases.scm:653 +#: gnu/packages/databases.scm:662 +msgid "This is a memcache client library for the Go programming language." +msgstr "" + +#: gnu/packages/databases.scm:685 +#, fuzzy +#| msgid "This package provides a graphical file manager." +msgid "This package provides memcache client and server functionality." +msgstr "Tento balík poskytuje správcu súborov s grafickým používateľským rozhraním." + +#: gnu/packages/databases.scm:711 msgid "" "@code{litecli} is a command-line client for SQLite databases that has\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:685 +#: gnu/packages/databases.scm:732 +msgid "" +"This Python package provides an API to execute meta-commands (AKA\n" +"\"special\", or \"backslash commands\") on PostgreSQL." +msgstr "" + +#: gnu/packages/databases.scm:763 +msgid "" +"@code{pgcli} is a command line interface for PostgreSQL with\n" +"autocompletion and syntax highlighting." +msgstr "" + +#: gnu/packages/databases.scm:801 msgid "" "MyCLI is a command line interface for MySQL, MariaDB, and Percona with\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:782 +#: gnu/packages/databases.scm:898 msgid "" "MySQL is a fast, reliable, and easy to use relational database\n" "management system that supports the standardized Structured Query\n" "Language." msgstr "" -#: gnu/packages/databases.scm:1045 +#: gnu/packages/databases.scm:1161 msgid "" "MariaDB is a multi-user and multi-threaded SQL database server, designed\n" "as a drop-in replacement of MySQL." msgstr "" -#: gnu/packages/databases.scm:1070 +#: gnu/packages/databases.scm:1186 msgid "" "The MariaDB Connector/C is used to connect applications\n" "developed in C/C++ to MariaDB and MySQL databases." msgstr "" -#: gnu/packages/databases.scm:1093 +#: gnu/packages/databases.scm:1209 msgid "" "Galera is a wsrep-provider that is used with MariaDB for load-balancing\n" "and high-availability (HA)." msgstr "" -#: gnu/packages/databases.scm:1147 +#: gnu/packages/databases.scm:1263 msgid "" "PostgreSQL is a powerful object-relational database system. It is fully\n" "ACID compliant, has full support for foreign keys, joins, views, triggers, and\n" @@ -2370,19 +2479,27 @@ msgid "" "pictures, sounds, or video." msgstr "" -#: gnu/packages/databases.scm:1269 +#: gnu/packages/databases.scm:1395 +msgid "" +"TimescaleDB is an database designed to make SQL scalable for\n" +"time-series data. It is engineered up from PostgreSQL and packaged as a\n" +"PostgreSQL extension, providing automatic partitioning across time and space\n" +"(partitioning key), as well as full SQL support." +msgstr "" + +#: gnu/packages/databases.scm:1476 msgid "" "@code{pgloader} is a program that can load data or migrate databases from\n" "CSV, DB3, iXF, SQLite, MS-SQL or MySQL to PostgreSQL." msgstr "" -#: gnu/packages/databases.scm:1293 +#: gnu/packages/databases.scm:1500 msgid "" "PyMySQL is a pure-Python MySQL client library, based on PEP 249.\n" "Most public APIs are compatible with @command{mysqlclient} and MySQLdb." msgstr "" -#: gnu/packages/databases.scm:1320 +#: gnu/packages/databases.scm:1527 msgid "" "QDBM is a library of routines for managing a\n" "database. The database is a simple data file containing key-value\n" @@ -2392,7 +2509,7 @@ msgid "" "organized in a hash table or B+ tree." msgstr "" -#: gnu/packages/databases.scm:1357 +#: gnu/packages/databases.scm:1564 msgid "" "GNU Recutils is a set of tools and libraries for creating and\n" "manipulating text-based, human-editable databases. Despite being text-based,\n" @@ -2401,7 +2518,7 @@ msgid "" "types are supported, as is encryption." msgstr "" -#: gnu/packages/databases.scm:1389 +#: gnu/packages/databases.scm:1596 msgid "" "This package provides an Emacs major mode @code{rec-mode}\n" "for working with GNU Recutils text-based, human-editable databases. It\n" @@ -2409,7 +2526,7 @@ msgid "" "including field and record folding." msgstr "" -#: gnu/packages/databases.scm:1457 +#: gnu/packages/databases.scm:1664 msgid "" "RocksDB is a library that forms the core building block for a fast\n" "key-value server, especially suited for storing data on flash drives. It\n" @@ -2420,7 +2537,7 @@ msgid "" "data in a single database. RocksDB is partially based on @code{LevelDB}." msgstr "" -#: gnu/packages/databases.scm:1515 +#: gnu/packages/databases.scm:1722 msgid "" "Sparql-query is a command-line tool for accessing SPARQL\n" "endpoints over HTTP. It has been intentionally designed to @code{feel} similar to\n" @@ -2431,13 +2548,13 @@ msgid "" "for example from a shell script." msgstr "" -#: gnu/packages/databases.scm:1608 +#: gnu/packages/databases.scm:1815 msgid "" "Sqitch is a standalone change management system for database schemas,\n" "which uses SQL to describe changes." msgstr "" -#: gnu/packages/databases.scm:1635 +#: gnu/packages/databases.scm:1842 msgid "" "SQLcrush lets you view and edit a database directly from the text\n" "console through an ncurses interface. You can explore each table's structure,\n" @@ -2445,7 +2562,7 @@ msgid "" "changes." msgstr "" -#: gnu/packages/databases.scm:1673 +#: gnu/packages/databases.scm:1880 msgid "" "TDB is a Trivial Database. In concept, it is very much like GDBM,\n" "and BSD's DB except that it allows multiple simultaneous writers and uses\n" @@ -2453,11 +2570,11 @@ msgid "" "extremely small." msgstr "" -#: gnu/packages/databases.scm:1693 +#: gnu/packages/databases.scm:1900 msgid "This package provides an database interface for Perl." msgstr "" -#: gnu/packages/databases.scm:1741 +#: gnu/packages/databases.scm:1948 msgid "" "An SQL to OO mapper with an object API inspired by\n" "Class::DBI (with a compatibility layer as a springboard for porting) and a\n" @@ -2469,13 +2586,13 @@ msgid "" "\"ORDER BY\" and \"HAVING\" support." msgstr "" -#: gnu/packages/databases.scm:1770 +#: gnu/packages/databases.scm:1977 msgid "" "DBIx::Class::Cursor::Cached provides a cursor class with\n" "built-in caching support." msgstr "" -#: gnu/packages/databases.scm:1793 +#: gnu/packages/databases.scm:2000 msgid "" "Because the many-to-many relationships are not real\n" "relationships, they can not be introspected with DBIx::Class. Many-to-many\n" @@ -2485,26 +2602,26 @@ msgid "" "introspected and examined." msgstr "" -#: gnu/packages/databases.scm:1852 +#: gnu/packages/databases.scm:2059 msgid "" "DBIx::Class::Schema::Loader automates the definition of a\n" "DBIx::Class::Schema by scanning database table definitions and setting up the\n" "columns, primary keys, unique constraints and relationships." msgstr "" -#: gnu/packages/databases.scm:1876 +#: gnu/packages/databases.scm:2083 msgid "" "This package provides a PostgreSQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." msgstr "" -#: gnu/packages/databases.scm:1914 +#: gnu/packages/databases.scm:2121 msgid "" "This package provides a MySQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." msgstr "" -#: gnu/packages/databases.scm:1934 +#: gnu/packages/databases.scm:2141 msgid "" "DBD::SQLite is a Perl DBI driver for SQLite, that includes\n" "the entire thing in the distribution. So in order to get a fast transaction\n" @@ -2512,14 +2629,14 @@ msgid "" "module, and nothing else." msgstr "" -#: gnu/packages/databases.scm:1959 +#: gnu/packages/databases.scm:2166 msgid "" "@code{MySQL::Config} emulates the @code{load_defaults} function from\n" "libmysqlclient. It will fill an array with long options, ready to be parsed by\n" "@code{Getopt::Long}." msgstr "" -#: gnu/packages/databases.scm:1983 +#: gnu/packages/databases.scm:2190 msgid "" "This module was inspired by the excellent DBIx::Abstract.\n" "While based on the concepts used by DBIx::Abstract, the concepts used have\n" @@ -2529,7 +2646,7 @@ msgid "" "time your data changes." msgstr "" -#: gnu/packages/databases.scm:2010 +#: gnu/packages/databases.scm:2217 msgid "" "This module is nearly identical to @code{SQL::Abstract} 1.81, and exists\n" "to preserve the ability of users to opt into the new way of doing things in\n" @@ -2545,34 +2662,34 @@ msgid "" "your data changes, as this module figures it out." msgstr "" -#: gnu/packages/databases.scm:2043 +#: gnu/packages/databases.scm:2250 msgid "" "This module tries to split any SQL code, even including\n" "non-standard extensions, into the atomic statements it is composed of." msgstr "" -#: gnu/packages/databases.scm:2062 +#: gnu/packages/databases.scm:2269 msgid "" "SQL::Tokenizer is a tokenizer for SQL queries. It does not\n" "claim to be a parser or query verifier. It just creates sane tokens from a\n" "valid SQL query." msgstr "" -#: gnu/packages/databases.scm:2081 +#: gnu/packages/databases.scm:2288 msgid "" "Unixodbc is a library providing an API with which to access\n" "data sources. Data sources include SQL Servers and any software with an ODBC\n" "Driver." msgstr "" -#: gnu/packages/databases.scm:2113 +#: gnu/packages/databases.scm:2320 msgid "" "The goal for nanodbc is to make developers happy by providing\n" "a simpler and less verbose API for working with ODBC. Common tasks should be\n" "easy, requiring concise and simple code." msgstr "" -#: gnu/packages/databases.scm:2174 +#: gnu/packages/databases.scm:2381 msgid "" "UnQLite is an in-process software library which implements a\n" "self-contained, serverless, zero-configuration, transactional NoSQL\n" @@ -2581,27 +2698,35 @@ msgid "" "similar to BerkeleyDB, LevelDB, etc." msgstr "" -#: gnu/packages/databases.scm:2225 +#: gnu/packages/databases.scm:2432 msgid "" "Redis is an advanced key-value cache and store. Redis\n" "supports many data structures including strings, hashes, lists, sets, sorted\n" "sets, bitmaps and hyperloglogs." msgstr "" -#: gnu/packages/databases.scm:2247 +#: gnu/packages/databases.scm:2454 msgid "" "This package provides a Ruby client that tries to match Redis' API\n" "one-to-one, while still providing an idiomatic interface." msgstr "" -#: gnu/packages/databases.scm:2275 +#: gnu/packages/databases.scm:2479 +msgid "Package rdb implements parsing and encoding of the Redis RDB file format." +msgstr "" + +#: gnu/packages/databases.scm:2505 +msgid "Redigo is a Go client for the Redis database." +msgstr "" + +#: gnu/packages/databases.scm:2531 msgid "" "Kyoto Cabinet is a standalone file-based database that supports Hash\n" "and B+ Tree data storage models. It is a fast key-value lightweight\n" "database and supports many programming languages. It is a NoSQL database." msgstr "" -#: gnu/packages/databases.scm:2303 +#: gnu/packages/databases.scm:2559 msgid "" "Tokyo Cabinet is a library of routines for managing a database.\n" "The database is a simple data file containing records, each is a pair of a\n" @@ -2611,7 +2736,7 @@ msgid "" "organized in hash table, B+ tree, or fixed-length array." msgstr "" -#: gnu/packages/databases.scm:2339 +#: gnu/packages/databases.scm:2595 msgid "" "WiredTiger is an extensible platform for data management. It supports\n" "row-oriented storage (where all columns of a row are stored together),\n" @@ -2620,17 +2745,17 @@ msgid "" "trees (LSM), for sustained throughput under random insert workloads." msgstr "" -#: gnu/packages/databases.scm:2389 +#: gnu/packages/databases.scm:2645 msgid "" "This package provides Guile bindings to the WiredTiger ``NoSQL''\n" "database." msgstr "" -#: gnu/packages/databases.scm:2419 +#: gnu/packages/databases.scm:2675 msgid "The DB::File module provides Perl bindings to the Berkeley DB version 1.x." msgstr "" -#: gnu/packages/databases.scm:2467 +#: gnu/packages/databases.scm:2723 msgid "" "The @dfn{Lightning Memory-Mapped Database} (LMDB) is a high-performance\n" "transactional database. Unlike more complex relational databases, LMDB handles\n" @@ -2643,7 +2768,7 @@ msgid "" "virtual address space — not physical RAM." msgstr "" -#: gnu/packages/databases.scm:2501 +#: gnu/packages/databases.scm:2757 msgid "" "@code{lmdbxx} is a comprehensive @code{C++} wrapper for the\n" "@code{LMDB} embedded database library, offering both an error-checked\n" @@ -2651,14 +2776,22 @@ msgid "" "semantics." msgstr "" -#: gnu/packages/databases.scm:2535 +#: gnu/packages/databases.scm:2791 msgid "" "Libpqxx is a C++ library to enable user programs to communicate with the\n" "PostgreSQL database back-end. The database back-end can be local or it may be\n" "on another machine, accessed via TCP/IP." msgstr "" -#: gnu/packages/databases.scm:2561 +#: gnu/packages/databases.scm:2819 +msgid "" +"Bolt is a pure Go key/value store inspired by Howard Chu's\n" +"LMDB project. The goal of the project is to provide a simple, fast, and\n" +"reliable database for projects that don't require a full database server such as\n" +"Postgres or MySQL." +msgstr "" + +#: gnu/packages/databases.scm:2845 msgid "" "Peewee is a simple and small ORM (object-relation mapping) tool. Peewee\n" "handles converting between pythonic values and those used by databases, so you\n" @@ -2667,20 +2800,20 @@ msgid "" "can autogenerate peewee models using @code{pwiz}, a model generator." msgstr "" -#: gnu/packages/databases.scm:2584 +#: gnu/packages/databases.scm:2868 msgid "" "Pypika-tortoise is a fork of pypika which has been\n" "streamlined for its use in the context of tortoise-orm. It removes support\n" "for many database kinds that tortoise-orm doesn't need, for example." msgstr "" -#: gnu/packages/databases.scm:2604 +#: gnu/packages/databases.scm:2888 msgid "" "This package is a Sphinx extension providing additional\n" "coroutine-specific markup." msgstr "" -#: gnu/packages/databases.scm:2632 +#: gnu/packages/databases.scm:2916 msgid "" "@code{asyncpg} is a database interface library designed\n" "specifically for PostgreSQL and Python/asyncio. @code{asyncpg} is an\n" @@ -2688,14 +2821,14 @@ msgid "" "with Python's asyncio framework." msgstr "" -#: gnu/packages/databases.scm:2652 +#: gnu/packages/databases.scm:2936 msgid "" "@code{asyncmy} is a fast @code{asyncio} MySQL driver, which\n" "reuses most of @code{pymysql} and @code{aiomysql} but rewrites the core\n" "protocol with Cython for performance." msgstr "" -#: gnu/packages/databases.scm:2672 +#: gnu/packages/databases.scm:2956 msgid "" "@code{aiomysql} is a driver for accessing a MySQL database\n" "from the @code{asyncio} Python framework. It depends on and reuses most parts\n" @@ -2703,7 +2836,7 @@ msgid "" "@code{aiopg} library." msgstr "" -#: gnu/packages/databases.scm:2705 +#: gnu/packages/databases.scm:2989 msgid "" "Tortoise ORM is an easy-to-use asyncio ORM (Object\n" "Relational Mapper) inspired by Django. Tortoise ORM was built with relations\n" @@ -2712,7 +2845,7 @@ msgid "" "with relational data." msgstr "" -#: gnu/packages/databases.scm:2749 +#: gnu/packages/databases.scm:3033 msgid "" "SQLCipher is an implementation of SQLite, extended to\n" "provide transparent 256-bit AES encryption of database files. Pages are\n" @@ -2721,19 +2854,19 @@ msgid "" "development." msgstr "" -#: gnu/packages/databases.scm:2782 +#: gnu/packages/databases.scm:3066 msgid "" "@code{python-pyodbc-c} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2807 +#: gnu/packages/databases.scm:3091 msgid "" "@code{python-pyodbc} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2840 +#: gnu/packages/databases.scm:3124 msgid "" "MDB Tools is a set of tools and applications to read the\n" "proprietary MDB file format used in Microsoft's Access database package. This\n" @@ -2742,39 +2875,45 @@ msgid "" "etc., and an SQL engine for performing simple SQL queries." msgstr "" -#: gnu/packages/databases.scm:2886 +#: gnu/packages/databases.scm:3153 +#, fuzzy +#| msgid "This package provides hyphenation patterns for Macedonian." +msgid "This package provides a MongoDB driver for Go." +msgstr "Tento balík poskytuje vzory delenia slov pre macedónčinu." + +#: gnu/packages/databases.scm:3194 msgid "" "python-lmdb or py-lmdb is a Python binding for the @dfn{Lightning\n" "Memory-Mapped Database} (LMDB), a high-performance key-value store." msgstr "" -#: gnu/packages/databases.scm:2925 +#: gnu/packages/databases.scm:3233 msgid "" "Orator provides a simple ActiveRecord-like Object Relational Mapping\n" "implementation for Python." msgstr "" -#: gnu/packages/databases.scm:2963 +#: gnu/packages/databases.scm:3271 msgid "" "Virtuoso is a scalable cross-platform server that combines\n" "relational, graph, and document data management with web application server\n" "and web services platform functionality." msgstr "" -#: gnu/packages/databases.scm:2990 +#: gnu/packages/databases.scm:3298 msgid "" "Cassandra Cluster Manager is a development tool for testing\n" "local Cassandra clusters. It creates, launches and removes Cassandra clusters\n" "on localhost." msgstr "" -#: gnu/packages/databases.scm:3018 +#: gnu/packages/databases.scm:3326 msgid "" "Pysqlite provides SQLite bindings for Python that comply to the\n" "Database API 2.0T." msgstr "" -#: gnu/packages/databases.scm:3048 +#: gnu/packages/databases.scm:3356 msgid "" "SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that\n" "gives application developers the full power and flexibility of SQL. It\n" @@ -2783,14 +2922,14 @@ msgid "" "simple and Pythonic domain language." msgstr "" -#: gnu/packages/databases.scm:3086 +#: gnu/packages/databases.scm:3382 msgid "" "This package contains type stubs and a mypy plugin to\n" "provide more precise static types and type inference for SQLAlchemy\n" "framework." msgstr "" -#: gnu/packages/databases.scm:3118 +#: gnu/packages/databases.scm:3414 msgid "" "SQLAlchemy-utils provides various utility functions and custom data types\n" "for SQLAlchemy. SQLAlchemy is an SQL database abstraction library for Python.\n" @@ -2807,7 +2946,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/databases.scm:3165 +#: gnu/packages/databases.scm:3461 msgid "" "This package provides mock helpers for SQLAlchemy that makes it easy\n" "to mock an SQLAlchemy session while preserving the ability to do asserts.\n" @@ -2817,13 +2956,13 @@ msgid "" "this library provides functions to facilitate such comparisons." msgstr "" -#: gnu/packages/databases.scm:3196 +#: gnu/packages/databases.scm:3492 msgid "" "Alembic is a lightweight database migration tool for usage with the\n" "SQLAlchemy Database Toolkit for Python." msgstr "" -#: gnu/packages/databases.scm:3221 +#: gnu/packages/databases.scm:3517 msgid "" "PickleShare is a small ‘shelve’-like datastore with concurrency support.\n" "Like shelve, a PickleShareDB object acts like a normal dictionary. Unlike\n" @@ -2834,7 +2973,7 @@ msgid "" "PickleShare." msgstr "" -#: gnu/packages/databases.scm:3275 +#: gnu/packages/databases.scm:3571 msgid "" "APSW is a Python wrapper for the SQLite\n" "embedded relational database engine. In contrast to other wrappers such as\n" @@ -2842,21 +2981,21 @@ msgid "" "translate the complete SQLite API into Python." msgstr "" -#: gnu/packages/databases.scm:3312 +#: gnu/packages/databases.scm:3608 msgid "" "The package aiosqlite replicates the standard sqlite3 module, but with\n" "async versions of all the standard connection and cursor methods, and context\n" "managers for automatically closing connections." msgstr "" -#: gnu/packages/databases.scm:3333 +#: gnu/packages/databases.scm:3629 msgid "" "This package provides the Neo4j Python driver that connects\n" "to the database using Neo4j's binary protocol. It aims to be minimal, while\n" "being idiomatic to Python." msgstr "" -#: gnu/packages/databases.scm:3353 +#: gnu/packages/databases.scm:3649 msgid "" "This package provides a client library and toolkit for\n" "working with Neo4j from within Python applications and from the command\n" @@ -2864,26 +3003,38 @@ msgid "" "designed to be easy and intuitive to use." msgstr "" -#: gnu/packages/databases.scm:3379 +#: gnu/packages/databases.scm:3675 msgid "" "psycopg2 is a thread-safe PostgreSQL adapter that implements DB-API\n" "2.0." msgstr "" -#: gnu/packages/databases.scm:3413 +#: gnu/packages/databases.scm:3702 +msgid "" +"This module provides connection pool implementations that can be used\n" +"with the @code{psycopg} PostgreSQL driver." +msgstr "" + +#: gnu/packages/databases.scm:3776 +msgid "" +"Psycopg 3 is a new implementation of the popular @code{psycopg2}\n" +"database adapter for Python." +msgstr "" + +#: gnu/packages/databases.scm:3810 msgid "" "This package provides a program to build Entity\n" "Relationship diagrams from a SQLAlchemy model (or directly from the\n" "database)." msgstr "" -#: gnu/packages/databases.scm:3443 +#: gnu/packages/databases.scm:3840 msgid "" "Yoyo is a database schema migration tool. Migrations are written as SQL\n" "files or Python scripts that define a list of migration steps." msgstr "" -#: gnu/packages/databases.scm:3464 +#: gnu/packages/databases.scm:3861 msgid "" "MySQLdb is an interface to the popular MySQL database server\n" "for Python. The design goals are:\n" @@ -2894,13 +3045,13 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/databases.scm:3490 +#: gnu/packages/databases.scm:3887 msgid "" "Python-hiredis is a python extension that wraps protocol\n" "parsing code in hiredis. It primarily speeds up parsing of multi bulk replies." msgstr "" -#: gnu/packages/databases.scm:3517 +#: gnu/packages/databases.scm:3914 msgid "" "Fakeredis is a pure-Python implementation of the redis-py Python client\n" "that simulates talking to a redis server. It was created for a single purpose:\n" @@ -2911,49 +3062,49 @@ msgid "" "reasonable substitute." msgstr "" -#: gnu/packages/databases.scm:3545 +#: gnu/packages/databases.scm:3942 msgid "This package provides a Python interface to the Redis key-value store." msgstr "" -#: gnu/packages/databases.scm:3586 +#: gnu/packages/databases.scm:3983 msgid "" "RQ (Redis Queue) is a simple Python library for queueing jobs and\n" "processing them in the background with workers. It is backed by Redis and it\n" "is designed to have a low barrier to entry." msgstr "" -#: gnu/packages/databases.scm:3623 +#: gnu/packages/databases.scm:4020 msgid "" "This package provides job scheduling capabilities to @code{python-rq}\n" "(Redis Queue)." msgstr "" -#: gnu/packages/databases.scm:3643 +#: gnu/packages/databases.scm:4040 msgid "" "@code{trollius-redis} is a Redis client for Python\n" " trollius. It is an asynchronous IO (PEP 3156) implementation of the\n" " Redis protocol." msgstr "" -#: gnu/packages/databases.scm:3686 +#: gnu/packages/databases.scm:4083 msgid "" "Sqlparse is a non-validating SQL parser for Python. It\n" "provides support for parsing, splitting and formatting SQL statements." msgstr "" -#: gnu/packages/databases.scm:3703 +#: gnu/packages/databases.scm:4101 msgid "" "@code{python-sql} is a library to write SQL queries, that\n" "transforms idiomatic python function calls to well-formed SQL queries." msgstr "" -#: gnu/packages/databases.scm:3726 +#: gnu/packages/databases.scm:4124 msgid "" "PyPika is a python SQL query builder that exposes the full richness of\n" "the SQL language using a syntax that reflects the resulting query." msgstr "" -#: gnu/packages/databases.scm:3852 +#: gnu/packages/databases.scm:4250 msgid "" "Apache Arrow is a columnar in-memory analytics layer\n" "designed to accelerate big data. It houses a set of canonical in-memory\n" @@ -2962,21 +3113,21 @@ msgid "" "algorithm implementations." msgstr "" -#: gnu/packages/databases.scm:3912 +#: gnu/packages/databases.scm:4310 msgid "" "This library provides a Pythonic API wrapper for the reference Arrow C++\n" "implementation, along with tools for interoperability with pandas, NumPy, and\n" "other traditional Python scientific computing packages." msgstr "" -#: gnu/packages/databases.scm:3933 +#: gnu/packages/databases.scm:4331 msgid "" "This package provides a Python client library for CrateDB.\n" "It implements the Python DB API 2.0 specification and includes support for\n" "SQLAlchemy." msgstr "" -#: gnu/packages/databases.scm:3952 +#: gnu/packages/databases.scm:4350 msgid "" "This library implements a database independent abstraction layer in C,\n" "similar to the DBI/DBD layer in Perl. Writing one generic set of code,\n" @@ -2984,7 +3135,7 @@ msgid "" "simultaneous database connections by using this framework." msgstr "" -#: gnu/packages/databases.scm:4018 +#: gnu/packages/databases.scm:4416 msgid "" "The @code{libdbi-drivers} library provides the database specific drivers\n" "for the @code{libdbi} framework.\n" @@ -2997,26 +3148,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:4060 +#: gnu/packages/databases.scm:4458 msgid "" "SOCI is an abstraction layer for several database backends, including\n" "PostreSQL, SQLite, ODBC and MySQL." msgstr "" -#: gnu/packages/databases.scm:4084 +#: gnu/packages/databases.scm:4482 msgid "" "FreeTDS is an implementation of the Tabular DataStream protocol, used for\n" "connecting to MS SQL and Sybase servers over TCP/IP." msgstr "" -#: gnu/packages/databases.scm:4106 +#: gnu/packages/databases.scm:4504 msgid "" "TinyDB is a small document oriented database written in pure Python\n" "with no external dependencies. The targets are small apps that would\n" "be blown away by a SQL-DB or an external database server." msgstr "" -#: gnu/packages/databases.scm:4154 +#: gnu/packages/databases.scm:4552 msgid "" "Sequeler is a native Linux SQL client built in Vala and\n" "Gtk. It allows you to connect to your local and remote databases, write SQL in\n" @@ -3024,7 +3175,13 @@ msgid "" "a Gtk.Grid Widget." msgstr "" -#: gnu/packages/debug.scm:111 +#: gnu/packages/databases.scm:4594 +msgid "" +"Sqlitebrowser is a high quaility, visual, open source tool to\n" +"create design, and edit database file compatible with SQLite." +msgstr "" + +#: gnu/packages/debug.scm:112 msgid "" "Delta assists you in minimizing \"interesting\" files subject to a test\n" "of their interestingness. A common such situation is when attempting to\n" @@ -3032,7 +3189,7 @@ msgid "" "program to exhibit a bug." msgstr "" -#: gnu/packages/debug.scm:172 +#: gnu/packages/debug.scm:173 msgid "" "C-Reduce is a tool that takes a large C or C++ program that has a\n" "property of interest (such as triggering a compiler bug) and automatically\n" @@ -3041,14 +3198,14 @@ msgid "" "tools that process C/C++ code." msgstr "" -#: gnu/packages/debug.scm:219 +#: gnu/packages/debug.scm:220 msgid "" "C-Vise is a Python port of the C-Reduce tool that is fully compatible\n" "and uses the same efficient LLVM-based C/C++ @code{clang_delta} reduction\n" "tool." msgstr "" -#: gnu/packages/debug.scm:289 +#: gnu/packages/debug.scm:290 msgid "" "American fuzzy lop is a security-oriented fuzzer that employs a novel\n" "type of compile-time instrumentation and genetic algorithms to automatically\n" @@ -3059,7 +3216,7 @@ msgid "" "down the road." msgstr "" -#: gnu/packages/debug.scm:433 +#: gnu/packages/debug.scm:434 msgid "" "QEMU is a generic machine emulator and virtualizer. This package\n" "of QEMU is used only by the american fuzzy lop package.\n" @@ -3075,7 +3232,7 @@ msgid "" "server and embedded PowerPC, and S390 guests." msgstr "" -#: gnu/packages/debug.scm:501 +#: gnu/packages/debug.scm:502 msgid "" "Stress Make is a customized GNU Make that explicitly manages the order\n" "in which concurrent jobs are run to provoke erroneous behavior into becoming\n" @@ -3085,14 +3242,14 @@ msgid "" "conditions." msgstr "" -#: gnu/packages/debug.scm:529 +#: gnu/packages/debug.scm:530 msgid "" "Zzuf is a transparent application input fuzzer. It works by\n" "intercepting file operations and changing random bits in the program's\n" "input. Zzuf's behaviour is deterministic, making it easy to reproduce bugs." msgstr "" -#: gnu/packages/debug.scm:581 +#: gnu/packages/debug.scm:582 msgid "" "Scanmem is a debugging utility designed to isolate the\n" "address of an arbitrary variable in an executing process. Scanmem simply\n" @@ -3101,13 +3258,13 @@ msgid "" "the position of the variable and allows you to modify its value." msgstr "" -#: gnu/packages/debug.scm:611 +#: gnu/packages/debug.scm:612 msgid "" "Remake is an enhanced version of GNU Make that adds improved\n" "error reporting, better tracing, profiling, and a debugger." msgstr "" -#: gnu/packages/debug.scm:667 +#: gnu/packages/debug.scm:668 msgid "" "rr is a lightweight tool for recording, replaying and debugging\n" "execution of applications (trees of processes and threads). Debugging extends\n" @@ -3116,13 +3273,13 @@ msgid "" "fun." msgstr "" -#: gnu/packages/debug.scm:695 +#: gnu/packages/debug.scm:696 msgid "" "The @code{libbacktrace} library can be linked into a C/C++\n" "program to produce symbolic backtraces." msgstr "" -#: gnu/packages/debug.scm:735 +#: gnu/packages/debug.scm:736 msgid "" "The libleak tool detects memory leaks by hooking memory\n" "functions such as @code{malloc}. It comes as a shared object to be pre-loaded\n" @@ -3134,7 +3291,7 @@ msgid "" "use than similar tools like @command{mtrace}." msgstr "" -#: gnu/packages/debug.scm:763 +#: gnu/packages/debug.scm:764 msgid "" "@code{cgdb} is a lightweight curses (terminal-based) interface to the\n" "GNU Debugger (GDB). In addition to the standard gdb console, cgdb provides\n" @@ -3143,7 +3300,7 @@ msgid "" "using cgdb." msgstr "" -#: gnu/packages/debug.scm:798 +#: gnu/packages/debug.scm:799 msgid "" "MspDebug supports FET430UIF, eZ430, RF2500 and Olimex\n" "MSP430-JTAG-TINY programmers, as well as many other compatible\n" @@ -3159,14 +3316,14 @@ msgid "" "multiple test suites, which are then all managed by a single harness." msgstr "" -#: gnu/packages/games.scm:287 +#: gnu/packages/games.scm:288 msgid "" "Abe's Amazing Adventure is a scrolling,\n" "platform-jumping, key-collecting, ancient pyramid exploring game, vaguely in\n" "the style of similar games for the Commodore+4." msgstr "" -#: gnu/packages/games.scm:357 +#: gnu/packages/games.scm:358 msgid "" "Adanaxis is a fast-moving first person shooter set in deep space, where\n" "the fundamentals of space itself are changed. By adding another dimension to\n" @@ -3177,7 +3334,7 @@ msgid "" "mouse and joystick control, and original music." msgstr "" -#: gnu/packages/games.scm:401 +#: gnu/packages/games.scm:402 msgid "" "Guide Alex the Allegator through the jungle in order to save his\n" "girlfriend Lola from evil humans who want to make a pair of shoes out of her.\n" @@ -3186,7 +3343,7 @@ msgid "" "The game includes a built-in editor so you can design and share your own maps." msgstr "" -#: gnu/packages/games.scm:431 +#: gnu/packages/games.scm:432 msgid "" "Armagetron Advanced is a multiplayer game in 3d that\n" "attempts to emulate and expand on the lightcycle sequence from the movie Tron.\n" @@ -3196,7 +3353,7 @@ msgid "" "physics settings to tweak as well." msgstr "" -#: gnu/packages/games.scm:489 +#: gnu/packages/games.scm:490 msgid "" "Space is a vast area, an unbounded territory where it seems there is\n" "a room for everybody, but reversal of fortune put things differently. The\n" @@ -3208,7 +3365,7 @@ msgid "" "regret their insolence." msgstr "" -#: gnu/packages/games.scm:556 +#: gnu/packages/games.scm:557 msgid "" "Bastet (short for Bastard Tetris) is a simple ncurses-based falling brick\n" "game. Unlike normal Tetris, Bastet does not choose the next brick at random.\n" @@ -3218,19 +3375,19 @@ msgid "" "canyons and wait for the long I-shaped block to clear four rows at a time." msgstr "" -#: gnu/packages/games.scm:601 +#: gnu/packages/games.scm:602 msgid "" "Tetrinet is a multiplayer Tetris-like game with powerups and\n" "attacks you can use on opponents." msgstr "" -#: gnu/packages/games.scm:635 +#: gnu/packages/games.scm:636 msgid "" "Vitetris is a classic multiplayer Tetris clone for the\n" "terminal." msgstr "" -#: gnu/packages/games.scm:678 +#: gnu/packages/games.scm:679 msgid "" "Blobwars: Metal Blob Solid is a 2D platform game, the first\n" "in the Blobwars series. You take on the role of a fearless Blob agent. Your\n" @@ -3238,7 +3395,7 @@ msgid "" "possible, while battling many vicious aliens." msgstr "" -#: gnu/packages/games.scm:771 +#: gnu/packages/games.scm:772 msgid "" "These are the BSD games. See the fortune-mod package for fortunes.\n" "\n" @@ -3271,7 +3428,7 @@ msgid "" "Quizzes: arithmetic and quiz." msgstr "" -#: gnu/packages/games.scm:866 +#: gnu/packages/games.scm:867 msgid "" "BZFlag is a 3D multi-player multiplatform tank battle game that\n" "allows users to play against each other in a network environment.\n" @@ -3291,7 +3448,7 @@ msgid "" "high a score as possible." msgstr "" -#: gnu/packages/games.scm:949 +#: gnu/packages/games.scm:950 msgid "" "Cataclysm: Dark Days Ahead (or \"DDA\" for short) is a roguelike set\n" "in a post-apocalyptic world. Struggle to survive in a harsh, persistent,\n" @@ -3303,7 +3460,7 @@ msgid "" "want what you have." msgstr "" -#: gnu/packages/games.scm:998 +#: gnu/packages/games.scm:999 msgid "" "Cockatrice is a program for playing tabletop card games\n" "over a network. Its server design prevents users from manipulating the game\n" @@ -3311,7 +3468,7 @@ msgid "" "allows users to brew while offline." msgstr "" -#: gnu/packages/games.scm:1052 +#: gnu/packages/games.scm:1053 msgid "" "This package provides a reimplementation of the 1997 Bullfrog business\n" "simulation game @i{Theme Hospital}. As well as faithfully recreating the\n" @@ -3319,7 +3476,7 @@ msgid "" "more. This package does @emph{not} provide the game assets." msgstr "" -#: gnu/packages/games.scm:1094 +#: gnu/packages/games.scm:1095 msgid "" "Cowsay is basically a text filter. Send some text into it,\n" "and you get a cow saying your text. If you think a talking cow isn't enough,\n" @@ -3327,21 +3484,21 @@ msgid "" "tired of cows, a variety of other ASCII-art messengers are available." msgstr "" -#: gnu/packages/games.scm:1135 +#: gnu/packages/games.scm:1136 msgid "" "@command{lolcat} concatenates files and streams like\n" "regular @command{cat}, but it also adds terminal escape codes between\n" "characters and lines resulting in a rainbow effect." msgstr "" -#: gnu/packages/games.scm:1164 +#: gnu/packages/games.scm:1165 #, scheme-format msgid "" "This package provides the Fallout 2 game engine. Game data\n" "should be placed in @file{~/.local/share/falltergeist}." msgstr "" -#: gnu/packages/games.scm:1275 +#: gnu/packages/games.scm:1276 msgid "" "FooBillard++ is an advanced 3D OpenGL billiard game\n" "based on the original foobillard 3.0a sources from Florian Berger.\n" @@ -3363,7 +3520,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:1342 +#: gnu/packages/games.scm:1343 msgid "" "The Freedoom project aims to create a complete free content first person\n" "shooter game. Freedoom by itself is just the raw material for a game: it must\n" @@ -3372,7 +3529,7 @@ msgid "" "effects and music to make a completely free game." msgstr "" -#: gnu/packages/games.scm:1392 +#: gnu/packages/games.scm:1394 msgid "" "Freedroid RPG is an @dfn{RPG} (Role-Playing Game) with isometric graphics.\n" "The game tells the story of a world destroyed by a conflict between robots and\n" @@ -3382,7 +3539,7 @@ msgid "" "real-time combat." msgstr "" -#: gnu/packages/games.scm:1471 +#: gnu/packages/games.scm:1473 msgid "" "Golly simulates Conway's Game of Life and many other types of cellular\n" "automata. The following features are available:\n" @@ -3403,15 +3560,15 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:1527 -#, fuzzy -#| msgid "This package provides a dictionary for the GNU Aspell spell checker." +#: gnu/packages/games.scm:1529 msgid "" "This package provides a userspace daemon for the Nintendo\n" "Joy-Con controllers." -msgstr "Tento balík poskytuje slovník pre nástroj na kontrolu pravopisu GNU Aspell." +msgstr "" +"Tento balík poskytuje démon používateľského prostredia\n" +"pre ovládače Nintendo Joy-Con." -#: gnu/packages/games.scm:1557 +#: gnu/packages/games.scm:1559 msgid "" "Engine for Caesar III, a city-building real-time strategy game.\n" "Julius includes some UI enhancements while preserving the logic (including\n" @@ -3419,7 +3576,7 @@ msgid "" "does not include game data." msgstr "" -#: gnu/packages/games.scm:1591 +#: gnu/packages/games.scm:1593 msgid "" "Fork of Julius, an engine for the a city-building real-time strategy\n" "game Caesar III. Gameplay enhancements include:\n" @@ -3434,7 +3591,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/games.scm:1630 +#: gnu/packages/games.scm:1632 msgid "" "Me and My Shadow is a puzzle/platform game in which you try\n" "to reach the exit by solving puzzles. Spikes, moving blocks, fragile blocks\n" @@ -3442,7 +3599,7 @@ msgid "" "shadow mimic them to reach blocks you couldn't reach alone." msgstr "" -#: gnu/packages/games.scm:1686 +#: gnu/packages/games.scm:1688 msgid "" "@code{Open Surge} is a 2D retro side-scrolling platformer\n" "inspired by the Sonic games. The player runs at high speeds through each\n" @@ -3450,7 +3607,7 @@ msgid "" "built-in level editor." msgstr "" -#: gnu/packages/games.scm:1732 +#: gnu/packages/games.scm:1734 msgid "" "Knights is a multiplayer game involving several knights who\n" "must run around a dungeon and complete various quests. Each game revolves\n" @@ -3462,7 +3619,7 @@ msgid "" "destroying an ancient book using a special wand." msgstr "" -#: gnu/packages/games.scm:1780 +#: gnu/packages/games.scm:1781 msgid "" "GNOME 2048 provides a 2D grid for playing 2048, a\n" "single-player sliding tile puzzle game. The objective of the game is to merge\n" @@ -3470,7 +3627,7 @@ msgid "" "in one tile." msgstr "" -#: gnu/packages/games.scm:1819 +#: gnu/packages/games.scm:1820 msgid "" "GNOME Chess provides a 2D board for playing chess games\n" "against human or computer players. It supports loading and saving games in\n" @@ -3478,7 +3635,7 @@ msgid "" "such as chess or stockfish." msgstr "" -#: gnu/packages/games.scm:1880 +#: gnu/packages/games.scm:1881 msgid "" "The GNU backgammon application (also known as \"gnubg\") can\n" "be used for playing, analyzing and teaching the game. It has an advanced\n" @@ -3487,7 +3644,7 @@ msgid "" "also features an attractive, 3D representation of the playing board." msgstr "" -#: gnu/packages/games.scm:1921 +#: gnu/packages/games.scm:1922 msgid "" "GNUbik is a puzzle game in which you must manipulate a cube to make\n" "each of its faces have a uniform color. The game is customizable, allowing\n" @@ -3496,13 +3653,13 @@ msgid "" "scriptable with Guile." msgstr "" -#: gnu/packages/games.scm:1944 +#: gnu/packages/games.scm:1945 msgid "" "GNU Shogi is a program that plays the game Shogi (Japanese\n" "Chess). It is similar to standard chess but this variant is far more complicated." msgstr "" -#: gnu/packages/games.scm:1974 +#: gnu/packages/games.scm:1975 msgid "" "LTris is a tetris clone: differently shaped blocks are falling down the\n" "rectangular playing field and can be moved sideways or rotated by 90 degree\n" @@ -3516,7 +3673,7 @@ msgid "" "watch your CPU playing while enjoying a cup of tea!" msgstr "" -#: gnu/packages/games.scm:2097 +#: gnu/packages/games.scm:2098 msgid "" "NetHack is a single player dungeon exploration game that runs\n" "on a wide variety of computer systems, with a variety of graphical and text\n" @@ -3530,7 +3687,7 @@ msgid "" "role, and your gender." msgstr "" -#: gnu/packages/games.scm:2141 +#: gnu/packages/games.scm:2142 msgid "" "PipeWalker is a simple puzzle game with many diffent themes: connect all\n" "computers to one network server, bring water from a source to the taps, etc.\n" @@ -3539,17 +3696,17 @@ msgid "" "Every puzzle has a complete solution, although there may be more than one." msgstr "" -#: gnu/packages/games.scm:2190 +#: gnu/packages/games.scm:2191 msgid "PrBoom+ is a Doom source port developed from the original PrBoom project." msgstr "" -#: gnu/packages/games.scm:2240 +#: gnu/packages/games.scm:2241 msgid "" "ReTux is an action platformer loosely inspired by the Mario games,\n" "utilizing the art assets from the @code{SuperTux} project." msgstr "" -#: gnu/packages/games.scm:2350 +#: gnu/packages/games.scm:2351 msgid "" "RogueBox Adventures is a graphical roguelike with strong influences\n" "from sandbox games like Minecraft or Terraria. The main idea of RogueBox\n" @@ -3557,7 +3714,7 @@ msgid "" "can be explored and changed freely." msgstr "" -#: gnu/packages/games.scm:2462 +#: gnu/packages/games.scm:2463 msgid "" "Barbie Seahorse Adventures is a retro style platform arcade game.\n" "You are Barbie the seahorse who travels through the jungle, up to the\n" @@ -3567,27 +3724,27 @@ msgid "" "and defeat them with your bubbles!" msgstr "" -#: gnu/packages/games.scm:2522 +#: gnu/packages/games.scm:2523 msgid "" "Solarus is a 2D game engine written in C++, that can run games\n" "scripted in Lua. It has been designed with 16-bit classic Action-RPGs\n" "in mind." msgstr "" -#: gnu/packages/games.scm:2551 +#: gnu/packages/games.scm:2552 msgid "" "Solarus Quest Editor is a graphical user interface to create and\n" "modify quests for the Solarus engine." msgstr "" -#: gnu/packages/games.scm:2627 +#: gnu/packages/games.scm:2628 msgid "" "In SuperStarfighter, up to four local players compete in a\n" "2D arena with fast-moving ships and missiles. Different game types are\n" "available, as well as a single-player mode with AI-controlled ships." msgstr "" -#: gnu/packages/games.scm:2760 +#: gnu/packages/games.scm:2761 msgid "" "Trigger-rally is a 3D rally simulation with great physics\n" "for drifting on over 200 maps. Different terrain materials like dirt,\n" @@ -3599,17 +3756,17 @@ msgid "" "equipped with spoken co-driver notes and co-driver icons." msgstr "" -#: gnu/packages/games.scm:2816 +#: gnu/packages/games.scm:2817 msgid "" "This package provides @command{ufo2map}, a program used to generate\n" "maps for the UFO: Alien Invasion strategy game." msgstr "" -#: gnu/packages/games.scm:2858 +#: gnu/packages/games.scm:2859 msgid "This package contains maps and other assets for UFO: Alien Invasion." msgstr "" -#: gnu/packages/games.scm:2945 +#: gnu/packages/games.scm:2946 msgid "" "UFO: Alien Invasion is a tactical strategy game set in the year 2084.\n" "You control a secret organisation charged with defending Earth from a brutal\n" @@ -3627,11 +3784,11 @@ msgid "" "properly." msgstr "" -#: gnu/packages/games.scm:2982 +#: gnu/packages/games.scm:2983 msgid "A graphical user interface for the package @code{gnushogi}." msgstr "" -#: gnu/packages/games.scm:3035 +#: gnu/packages/games.scm:3036 msgid "" "L'Abbaye des Morts is a 2D platform game set in 13th century\n" "France. The Cathars, who preach about good Christian beliefs, were being\n" @@ -3640,14 +3797,14 @@ msgid "" "that beneath its ruins lay buried an ancient evil." msgstr "" -#: gnu/packages/games.scm:3081 +#: gnu/packages/games.scm:3082 msgid "" "Angband is a Classic dungeon exploration roguelike. Explore\n" "the depths below Angband, seeking riches, fighting monsters, and preparing to\n" "fight Morgoth, the Lord of Darkness." msgstr "" -#: gnu/packages/games.scm:3129 +#: gnu/packages/games.scm:3130 msgid "" "Pingus is a free Lemmings-like puzzle game in which the player takes\n" "command of a bunch of small animals and has to guide them through levels.\n" @@ -3657,21 +3814,21 @@ msgid "" "level's exit. The game is presented in a 2D side view." msgstr "" -#: gnu/packages/games.scm:3152 +#: gnu/packages/games.scm:3153 msgid "" "The GNU Talk Filters are programs that convert English text\n" "into stereotyped or otherwise humorous dialects. The filters are provided as\n" "a C library, so they can easily be integrated into other programs." msgstr "" -#: gnu/packages/games.scm:3196 +#: gnu/packages/games.scm:3197 msgid "" "The player controls a character (one of three: Good, Bad, and Dead),\n" "dodges the missiles (lots of it cover the screen, but the character's hitbox\n" "is very small), and shoot at the adversaries that keep appear on the screen." msgstr "" -#: gnu/packages/games.scm:3239 +#: gnu/packages/games.scm:3240 msgid "" "CMatrix simulates the display from \"The Matrix\" and is\n" "based on the screensaver from the movie's website. It works with terminal\n" @@ -3679,14 +3836,14 @@ msgid "" "asynchronously and at a user-defined speed." msgstr "" -#: gnu/packages/games.scm:3270 +#: gnu/packages/games.scm:3271 msgid "" "GNU Chess is a chess engine. It allows you to compete\n" "against the computer in a game of chess, either through the default terminal\n" "interface or via an external visual interface such as GNU XBoard." msgstr "" -#: gnu/packages/games.scm:3332 +#: gnu/packages/games.scm:3333 msgid "" "GNU FreeDink is a free and portable re-implementation of the engine\n" "for the role-playing game Dink Smallwood. It supports not only the original\n" @@ -3694,17 +3851,17 @@ msgid "" "To that extent, it also includes a front-end for managing all of your D-Mods." msgstr "" -#: gnu/packages/games.scm:3360 +#: gnu/packages/games.scm:3361 msgid "This package contains the game data of GNU Freedink." msgstr "" -#: gnu/packages/games.scm:3383 +#: gnu/packages/games.scm:3384 msgid "" "DFArc makes it easy to play and manage the GNU FreeDink game\n" "and its numerous D-Mods." msgstr "" -#: gnu/packages/games.scm:3453 +#: gnu/packages/games.scm:3454 msgid "" "GNU XBoard is a graphical board for all varieties of chess,\n" "including international chess, xiangqi (Chinese chess), shogi (Japanese chess)\n" @@ -3713,7 +3870,7 @@ msgid "" "Portable Game Notation." msgstr "" -#: gnu/packages/games.scm:3488 +#: gnu/packages/games.scm:3489 msgid "" "GNU Typist is a universal typing tutor. It can be used to learn and\n" "practice touch-typing. Several tutorials are included; in addition to\n" @@ -3722,7 +3879,7 @@ msgid "" "are primarily in English, however some in other languages are provided." msgstr "" -#: gnu/packages/games.scm:3560 +#: gnu/packages/games.scm:3561 msgid "" "The Irrlicht Engine is a high performance realtime 3D engine written in\n" "C++. Features include an OpenGL renderer, extensible materials, scene graph\n" @@ -3730,7 +3887,7 @@ msgid "" "for common mesh file formats, and collision detection." msgstr "" -#: gnu/packages/games.scm:3611 +#: gnu/packages/games.scm:3612 msgid "" "M.A.R.S. is a 2D space shooter with pretty visual effects and\n" "attractive physics. Players can battle each other or computer controlled\n" @@ -3738,7 +3895,7 @@ msgid "" "match, cannon keep, and grave-itation pit." msgstr "" -#: gnu/packages/games.scm:3650 +#: gnu/packages/games.scm:3651 msgid "" "Glk defines a portable API for applications with text UIs. It was\n" "primarily designed for interactive fiction, but it should be suitable for many\n" @@ -3747,7 +3904,7 @@ msgid "" "using the @code{curses.h} library for screen control." msgstr "" -#: gnu/packages/games.scm:3690 +#: gnu/packages/games.scm:3691 msgid "" "Glulx is a 32-bit portable virtual machine intended for writing and\n" "playing interactive fiction. It was designed by Andrew Plotkin to relieve\n" @@ -3755,28 +3912,28 @@ msgid "" "reference interpreter, using the Glk API." msgstr "" -#: gnu/packages/games.scm:3716 +#: gnu/packages/games.scm:3717 msgid "" "Fifechan is a lightweight cross platform GUI library written in C++\n" "specifically designed for games. It has a built in set of extendable GUI\n" "Widgets, and allows users to create more." msgstr "" -#: gnu/packages/games.scm:3791 +#: gnu/packages/games.scm:3792 msgid "" "@acronym{FIFE, Flexible Isometric Free Engine} is a multi-platform\n" "isometric game engine. Python bindings are included allowing users to create\n" "games using Python as well as C++." msgstr "" -#: gnu/packages/games.scm:3826 +#: gnu/packages/games.scm:3827 msgid "" "Fizmo is a console-based Z-machine interpreter. It is used to play\n" "interactive fiction, also known as text adventures, which were implemented\n" "either by Infocom or created using the Inform compiler." msgstr "" -#: gnu/packages/games.scm:3849 +#: gnu/packages/games.scm:3850 msgid "" "GNU Go is a program that plays the game of Go, in which players\n" "place stones on a grid to form territory or capture other stones. While\n" @@ -3787,7 +3944,7 @@ msgid "" "Protocol)." msgstr "" -#: gnu/packages/games.scm:3878 +#: gnu/packages/games.scm:3879 msgid "" "Extreme Tux Racer, or etracer as it is called for short, is\n" "a simple OpenGL racing game featuring Tux, the Linux mascot. The goal of the\n" @@ -3800,7 +3957,7 @@ msgid "" "This game is based on the GPL version of the famous game TuxRacer." msgstr "" -#: gnu/packages/games.scm:3952 +#: gnu/packages/games.scm:3953 msgid "" "SuperTuxKart is a 3D kart racing game, with a focus on\n" "having fun over realism. You can play with up to 4 friends on one PC, racing\n" @@ -3808,7 +3965,7 @@ msgid "" "also available." msgstr "" -#: gnu/packages/games.scm:4028 +#: gnu/packages/games.scm:4029 msgid "" "Unknown Horizons is a 2D realtime strategy simulation with an emphasis\n" "on economy and city building. Expand your small settlement to a strong and\n" @@ -3817,7 +3974,7 @@ msgid "" "trade and diplomacy." msgstr "" -#: gnu/packages/games.scm:4081 +#: gnu/packages/games.scm:4082 msgid "" "GNUjump is a simple, yet addictive game in which you must jump from\n" "platform to platform to avoid falling, while the platforms drop at faster rates\n" @@ -3825,7 +3982,7 @@ msgid "" "falling, themeable graphics and sounds, and replays." msgstr "" -#: gnu/packages/games.scm:4117 +#: gnu/packages/games.scm:4118 msgid "" "The Battle for Wesnoth is a fantasy, turn based tactical strategy game,\n" "with several single player campaigns, and multiplayer games (both networked and\n" @@ -3837,20 +3994,20 @@ msgid "" "next campaign." msgstr "" -#: gnu/packages/games.scm:4137 +#: gnu/packages/games.scm:4138 msgid "" "This package contains a dedicated server for @emph{The\n" "Battle for Wesnoth}." msgstr "" -#: gnu/packages/games.scm:4179 +#: gnu/packages/games.scm:4180 msgid "" "Gamine is a game designed for young children who are learning to use the\n" "mouse and keyboard. The child uses the mouse to draw colored dots and lines\n" "on the screen and keyboard to display letters." msgstr "" -#: gnu/packages/games.scm:4211 +#: gnu/packages/games.scm:4212 msgid "" "ManaPlus is a 2D MMORPG client for game servers. It is the only\n" "fully supported client for @uref{http://www.themanaworld.org, The mana\n" @@ -3858,7 +4015,7 @@ msgid "" "@uref{http://landoffire.org, Land of fire}." msgstr "" -#: gnu/packages/games.scm:4243 +#: gnu/packages/games.scm:4244 msgid "" "OpenTTD is a game in which you transport goods and\n" "passengers by land, water and air. It is a re-implementation of Transport\n" @@ -3868,7 +4025,7 @@ msgid "" "engine. When you start it you will be prompted to download a graphics set." msgstr "" -#: gnu/packages/games.scm:4303 +#: gnu/packages/games.scm:4304 msgid "" "The OpenGFX project is an implementation of the OpenTTD base graphics\n" "set that aims to ensure the best possible out-of-the-box experience.\n" @@ -3883,29 +4040,29 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:4361 +#: gnu/packages/games.scm:4362 msgid "" "OpenSFX is a set of free base sounds for OpenTTD which make\n" "it possible to play OpenTTD without requiring the proprietary sound files from\n" "the original Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4404 +#: gnu/packages/games.scm:4405 msgid "" "OpenMSX is a music set for OpenTTD which makes it possible\n" "to play OpenTTD without requiring the proprietary music from the original\n" "Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4473 +#: gnu/packages/games.scm:4474 msgid "openrct2-title-sequences is a set of title sequences for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4513 +#: gnu/packages/games.scm:4514 msgid "openrct2-objects is a set of objects for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4576 +#: gnu/packages/games.scm:4577 msgid "" "OpenRCT2 is a free software re-implementation of\n" "RollerCoaster Tycoon 2 (RCT2). The gameplay revolves around building and\n" @@ -3915,27 +4072,27 @@ msgid "" "images, etc.)" msgstr "" -#: gnu/packages/games.scm:4630 +#: gnu/packages/games.scm:4631 msgid "" "The Emilia Pinball Project is a pinball simulator. There\n" "are only two levels to play with, but they are very addictive." msgstr "" -#: gnu/packages/games.scm:4659 +#: gnu/packages/games.scm:4660 msgid "" "Pioneers is an emulation of the board game The Settlers of\n" "Catan. It can be played on a local network, on the internet, and with AI\n" "players." msgstr "" -#: gnu/packages/games.scm:4701 +#: gnu/packages/games.scm:4702 msgid "" "The goal of this logic game is to open all cards in a 6x6\n" "grid, using a number of hints as to their relative position. The game idea\n" "is attributed to Albert Einstein." msgstr "" -#: gnu/packages/games.scm:4731 +#: gnu/packages/games.scm:4732 msgid "" "POWWOW is a client software which can be used for telnet as well as for\n" "@dfn{Multi-User Dungeon} (MUD). Additionally it can serve as a nice client for\n" @@ -3943,21 +4100,21 @@ msgid "" "http://lavachat.symlynx.com/unix/" msgstr "" -#: gnu/packages/games.scm:4838 +#: gnu/packages/games.scm:4839 msgid "" "Red Eclipse is an arena shooter, created from the Cube2 engine.\n" "Offering an innovative parkour system and distinct but all potent weapons,\n" "Red Eclipse provides fast paced and accessible gameplay." msgstr "" -#: gnu/packages/games.scm:4903 +#: gnu/packages/games.scm:4904 msgid "" "Grue Hunter is a text adventure game written in Perl. You must make\n" "your way through an underground cave system in search of the Grue. Can you\n" "capture it and get out alive?" msgstr "" -#: gnu/packages/games.scm:4942 +#: gnu/packages/games.scm:4943 msgid "" "lierolibre is an earthworm action game where you fight another player\n" "(or the computer) underground using a wide array of weapons.\n" @@ -3982,14 +4139,14 @@ msgid "" "fullscreen, use F5 or Alt+Enter." msgstr "" -#: gnu/packages/games.scm:5021 +#: gnu/packages/games.scm:5022 msgid "" "Tennix is a 2D tennis game. You can play against the\n" "computer or against another player using the keyboard. The game runs\n" "in-window at 640x480 resolution or fullscreen." msgstr "" -#: gnu/packages/games.scm:5105 +#: gnu/packages/games.scm:5106 msgid "" "Warzone 2100 offers campaign, multi-player, and single-player skirmish\n" "modes. An extensive tech tree with over 400 different technologies, combined\n" @@ -3997,7 +4154,7 @@ msgid "" "tactics." msgstr "" -#: gnu/packages/games.scm:5184 +#: gnu/packages/games.scm:5185 msgid "" "In Widelands, you are the regent of a small clan. You start out with\n" "nothing but your headquarters, where all your resources are stored.\n" @@ -4019,7 +4176,7 @@ msgid "" "of war. Widelands also offers an Artificial Intelligence to challenge you." msgstr "" -#: gnu/packages/games.scm:5236 +#: gnu/packages/games.scm:5237 msgid "" "In the year 2579, the intergalactic weapons corporation, WEAPCO, has\n" "dominated the galaxy. Guide Chris Bainfield and his friend Sid Wilson on\n" @@ -4028,7 +4185,7 @@ msgid "" "in strikes against the evil corporation." msgstr "" -#: gnu/packages/games.scm:5267 +#: gnu/packages/games.scm:5268 msgid "" "In this game you are the captain of the cargo ship Chromium B.S.U. and\n" "are responsible for delivering supplies to the troops on the front line. Your\n" @@ -4036,7 +4193,7 @@ msgid "" "safety of the Chromium vessel." msgstr "" -#: gnu/packages/games.scm:5350 +#: gnu/packages/games.scm:5351 msgid "" "Tux Paint is a free drawing program designed for young children (kids\n" "ages 3 and up). It has a simple, easy-to-use interface; fun sound effects;\n" @@ -4045,23 +4202,23 @@ msgid "" "your child be creative." msgstr "" -#: gnu/packages/games.scm:5390 +#: gnu/packages/games.scm:5391 msgid "" "This package contains a set of \"Rubber Stamp\" images which can be used\n" "with the \"Stamp\" tool within Tux Paint." msgstr "" -#: gnu/packages/games.scm:5439 +#: gnu/packages/games.scm:5440 msgid "Tux Paint Config is a graphical configuration editor for Tux Paint." msgstr "" -#: gnu/packages/games.scm:5491 +#: gnu/packages/games.scm:5492 msgid "" "SuperTux is a classic 2D jump'n run sidescroller game in\n" "a style similar to the original Super Mario games." msgstr "" -#: gnu/packages/games.scm:5523 +#: gnu/packages/games.scm:5524 msgid "" "TinTin++ is a MUD client which supports MCCP (Mud Client Compression\n" "Protocol), MMCP (Mud Master Chat Protocol), xterm 256 colors, most TELNET\n" @@ -4069,7 +4226,7 @@ msgid "" "Linux / Mac OS X servers, and an auto mapper with a VT100 map display." msgstr "" -#: gnu/packages/games.scm:5563 +#: gnu/packages/games.scm:5564 msgid "" "Learn programming, playing with ants and spider webs ;-)\n" "Your robot ant can be programmed in many languages: OCaml, Python, C, C++,\n" @@ -4077,14 +4234,14 @@ msgid "" "programmers may also add their own favorite language." msgstr "" -#: gnu/packages/games.scm:5602 +#: gnu/packages/games.scm:5603 msgid "" "Bambam is a simple baby keyboard (and gamepad) masher\n" "application that locks the keyboard and mouse and instead displays bright\n" "colors, pictures, and sounds." msgstr "" -#: gnu/packages/games.scm:5663 +#: gnu/packages/games.scm:5664 msgid "" "Mr. Rescue is an arcade styled 2d action game centered around evacuating\n" "civilians from burning buildings. The game features fast-paced fire\n" @@ -4092,7 +4249,7 @@ msgid "" "throwing people around in pseudo-randomly generated buildings." msgstr "" -#: gnu/packages/games.scm:5770 +#: gnu/packages/games.scm:5771 msgid "" "HyperRogue is a game in which the player collects treasures and fights\n" "monsters -- rogue-like but for the fact that it is played on the hyperbolic\n" @@ -4106,13 +4263,13 @@ msgid "" "symbols, it still needs graphics to render the non-euclidean world." msgstr "" -#: gnu/packages/games.scm:5817 +#: gnu/packages/games.scm:5818 msgid "" "Kobo Deluxe is an enhanced version of Akira Higuchi's XKobo graphical game\n" "for Un*x systems with X11." msgstr "" -#: gnu/packages/games.scm:5845 +#: gnu/packages/games.scm:5846 msgid "" "Freeciv is a turn-based empire building strategy game\n" "inspired by the history of human civilization. The game commences in\n" @@ -4120,7 +4277,7 @@ msgid "" "into the Space Age." msgstr "" -#: gnu/packages/games.scm:5878 +#: gnu/packages/games.scm:5879 msgid "" "@code{No More Secrets} provides a command line tool called \"nms\"\n" "that recreates the famous data decryption effect seen on screen in the 1992\n" @@ -4131,25 +4288,25 @@ msgid "" "starting a decryption sequence to reveal the original plaintext characters." msgstr "" -#: gnu/packages/games.scm:5906 +#: gnu/packages/games.scm:5907 msgid "This package contains the data files required for MegaGlest." msgstr "" -#: gnu/packages/games.scm:5961 +#: gnu/packages/games.scm:5962 msgid "" "MegaGlest is a cross-platform 3D real-time strategy (RTS)\n" "game, where you control the armies of one of seven different factions: Tech,\n" "Magic, Egypt, Indians, Norsemen, Persian or Romans." msgstr "" -#: gnu/packages/games.scm:6013 +#: gnu/packages/games.scm:6014 msgid "" "In FreeGish you control Gish, a ball of tar who lives\n" "happily with his girlfriend Brea, until one day a mysterious dark creature\n" "emerges from a sewer hole and pulls her below ground." msgstr "" -#: gnu/packages/games.scm:6049 +#: gnu/packages/games.scm:6050 msgid "" "C-Dogs SDL is a classic overhead run-and-gun game,\n" "supporting up to 4 players in co-op and deathmatch modes. Customize your\n" @@ -4157,21 +4314,21 @@ msgid "" "over 100 user-created campaigns." msgstr "" -#: gnu/packages/games.scm:6149 +#: gnu/packages/games.scm:6150 msgid "" "Kiki the nano bot is a 3D puzzle game. It is basically a\n" "mixture of the games Sokoban and Kula-World. Your task is to help Kiki, a\n" "small robot living in the nano world, repair its maker." msgstr "" -#: gnu/packages/games.scm:6225 +#: gnu/packages/games.scm:6226 msgid "" "Teeworlds is an online multiplayer game. Battle with up to\n" "16 players in a variety of game modes, including Team Deathmatch and Capture\n" "The Flag. You can even design your own maps!" msgstr "" -#: gnu/packages/games.scm:6285 +#: gnu/packages/games.scm:6286 msgid "" "Enigma is a puzzle game with 550 unique levels. The object\n" "of the game is to find and uncover pairs of identically colored ‘Oxyd’ stones.\n" @@ -4183,7 +4340,7 @@ msgid "" "with the mouse isn’t always trivial." msgstr "" -#: gnu/packages/games.scm:6319 +#: gnu/packages/games.scm:6320 msgid "" "Chroma is an abstract puzzle game. A variety of colourful\n" "shapes are arranged in a series of increasingly complex patterns, forming\n" @@ -4193,7 +4350,7 @@ msgid "" "becoming difficult enough to tax even the brightest of minds." msgstr "" -#: gnu/packages/games.scm:6384 +#: gnu/packages/games.scm:6385 msgid "" "Fish Fillets NG is strictly a puzzle game. The goal in\n" "every of the seventy levels is always the same: find a safe way out. The fish\n" @@ -4202,14 +4359,14 @@ msgid "" "fish. The whole game is accompanied by quiet, comforting music." msgstr "" -#: gnu/packages/games.scm:6452 +#: gnu/packages/games.scm:6453 msgid "" "Dungeon Crawl Stone Soup (also known as \"Crawl\" or DCSS\n" "for short) is a roguelike adventure through dungeons filled with dangerous\n" "monsters in a quest to find the mystifyingly fabulous Orb of Zot." msgstr "" -#: gnu/packages/games.scm:6529 +#: gnu/packages/games.scm:6530 msgid "" "Lugaru is a third-person action game. The main character,\n" "Turner, is an anthropomorphic rebel bunny rabbit with impressive combat skills.\n" @@ -4219,11 +4376,11 @@ msgid "" "fight against their plot and save his fellow rabbits from slavery." msgstr "" -#: gnu/packages/games.scm:6574 +#: gnu/packages/games.scm:6575 msgid "0ad-data provides the data files required by the game 0ad." msgstr "" -#: gnu/packages/games.scm:6710 +#: gnu/packages/games.scm:6711 msgid "" "0 A.D. is a real-time strategy (RTS) game of ancient\n" "warfare. It's a historically-based war/economy game that allows players to\n" @@ -4233,7 +4390,7 @@ msgid "" "0ad needs a window manager that supports 'Extended Window Manager Hints'." msgstr "" -#: gnu/packages/games.scm:6776 +#: gnu/packages/games.scm:6777 msgid "" "The original Colossal Cave Adventure from 1976 was the origin of all\n" "text adventures, dungeon-crawl (computer) games, and computer-hosted\n" @@ -4242,7 +4399,7 @@ msgid "" "``adventure 2.5'' and ``430-point adventure''." msgstr "" -#: gnu/packages/games.scm:6899 +#: gnu/packages/games.scm:6900 msgid "" "Tales of Maj’Eyal (ToME) RPG, featuring tactical turn-based\n" "combat and advanced character building. Play as one of many unique races and\n" @@ -4253,21 +4410,21 @@ msgid "" "Tales of Maj’Eyal offers engaging roguelike gameplay for the 21st century." msgstr "" -#: gnu/packages/games.scm:6945 +#: gnu/packages/games.scm:6946 msgid "" "Quakespasm is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7002 +#: gnu/packages/games.scm:7003 msgid "" "vkquake is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7067 +#: gnu/packages/games.scm:7068 msgid "" "Yamagi Quake II is an enhanced client for id Software's Quake II.\n" "The main focus is an unchanged single player experience like back in 1997,\n" @@ -4277,18 +4434,18 @@ msgid "" "making Yamagi Quake II one of the most solid Quake II implementations available." msgstr "" -#: gnu/packages/games.scm:7100 +#: gnu/packages/games.scm:7101 msgid "Nudoku is a ncurses-based Sudoku game for your terminal." msgstr "" -#: gnu/packages/games.scm:7146 +#: gnu/packages/games.scm:7147 msgid "" "The Butterfly Effect (tbe) is a game that uses\n" "realistic physics simulations to combine lots of simple mechanical\n" "elements to achieve a simple goal in the most complex way possible." msgstr "" -#: gnu/packages/games.scm:7192 +#: gnu/packages/games.scm:7193 msgid "" "Pioneer is a space adventure game set in our galaxy at the turn of the\n" "31st century. The game is open-ended, and you are free to eke out whatever\n" @@ -4299,14 +4456,14 @@ msgid "" "whatever you make of it." msgstr "" -#: gnu/packages/games.scm:7221 +#: gnu/packages/games.scm:7222 msgid "" "Badass generates false commits for a range of dates, essentially\n" "hacking the gamification of contribution graphs on platforms such as\n" "Github or Gitlab." msgstr "" -#: gnu/packages/games.scm:7294 +#: gnu/packages/games.scm:7295 msgid "" "Colobot: Gold Edition is a real-time strategy game, where\n" "you can program your units (bots) in a language called CBOT, which is similar\n" @@ -4314,7 +4471,7 @@ msgid "" "You can save humanity and get programming skills!" msgstr "" -#: gnu/packages/games.scm:7386 +#: gnu/packages/games.scm:7387 msgid "" "GZdoom is a port of the Doom 2 game engine, with a modern\n" "renderer. It improves modding support with ZDoom's advanced mapping features\n" @@ -4322,14 +4479,14 @@ msgid "" "Strife, Chex Quest, and fan-created games like Harmony, Hacx and Freedoom." msgstr "" -#: gnu/packages/games.scm:7425 +#: gnu/packages/games.scm:7426 msgid "" "Odamex is a modification of the Doom engine that\n" "allows players to easily join servers dedicated to playing Doom\n" "online." msgstr "" -#: gnu/packages/games.scm:7453 +#: gnu/packages/games.scm:7454 msgid "" "Chocolate Doom takes a different approach to other source ports. Its\n" "aim is to accurately reproduce the experience of playing Vanilla Doom. It is\n" @@ -4342,7 +4499,7 @@ msgid "" "affect gameplay)." msgstr "" -#: gnu/packages/games.scm:7493 +#: gnu/packages/games.scm:7494 msgid "" "Crispy Doom is a friendly fork of Chocolate Doom that provides a higher\n" "display resolution, removes the static limits of the Doom engine and offers\n" @@ -4351,21 +4508,21 @@ msgid "" "original." msgstr "" -#: gnu/packages/games.scm:7566 +#: gnu/packages/games.scm:7567 msgid "This package provides C11 / gnu11 utilities C library" msgstr "" -#: gnu/packages/games.scm:7635 +#: gnu/packages/games.scm:7636 msgid "" "Fortune is a command-line utility which displays a random\n" "quotation from a collection of quotes." msgstr "" -#: gnu/packages/games.scm:7677 +#: gnu/packages/games.scm:7678 msgid "Xonotic-data provides the data files required by the game Xonotic." msgstr "" -#: gnu/packages/games.scm:7873 +#: gnu/packages/games.scm:7874 msgid "" "Xonotic is a free, fast-paced first-person shooter.\n" "The project is geared towards providing addictive arena shooter\n" @@ -4375,7 +4532,7 @@ msgid "" "open-source FPS of its kind." msgstr "" -#: gnu/packages/games.scm:7920 +#: gnu/packages/games.scm:7921 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4384,7 +4541,7 @@ msgid "" "ncurses for text display." msgstr "" -#: gnu/packages/games.scm:7964 +#: gnu/packages/games.scm:7966 msgid "" "Naev is a 2d action/rpg space game that combines elements from\n" "the action, RPG and simulation genres. You pilot a spaceship from\n" @@ -4396,7 +4553,7 @@ msgid "" "of lore accompanying everything from planets to equipment." msgstr "" -#: gnu/packages/games.scm:8013 +#: gnu/packages/games.scm:8015 msgid "" "Frotz is an interpreter for Infocom games and\n" "other Z-machine games in the text adventure/interactive fiction genre.\n" @@ -4408,7 +4565,7 @@ msgid "" "to play games on webpages. It can also be made into a chat bot." msgstr "" -#: gnu/packages/games.scm:8075 +#: gnu/packages/games.scm:8077 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4418,7 +4575,7 @@ msgid "" "when packaged in Blorb container files or optionally from individual files." msgstr "" -#: gnu/packages/games.scm:8166 +#: gnu/packages/games.scm:8168 msgid "" "Frozen-Bubble is a clone of the popular Puzzle Bobble game, in which\n" "you attempt to shoot bubbles into groups of the same color to cause them to\n" @@ -4433,7 +4590,7 @@ msgid "" "their own levels." msgstr "" -#: gnu/packages/games.scm:8199 +#: gnu/packages/games.scm:8201 msgid "" "Libmanette is a small GObject library giving you simple\n" "access to game controllers. It supports the de-facto standard gamepads as\n" @@ -4441,7 +4598,7 @@ msgid "" "GameController." msgstr "" -#: gnu/packages/games.scm:8245 +#: gnu/packages/games.scm:8247 msgid "" "Quadrapassel comes from the classic falling-block game,\n" "Tetris. The goal of the game is to create complete horizontal lines of\n" @@ -4453,7 +4610,7 @@ msgid "" "your score gets higher, you level up and the blocks fall faster." msgstr "" -#: gnu/packages/games.scm:8294 +#: gnu/packages/games.scm:8296 msgid "" "Endless Sky is a 2D space trading and combat game. Explore\n" "other star systems. Earn money by trading, carrying passengers, or completing\n" @@ -4463,7 +4620,7 @@ msgid "" "civilized than your own." msgstr "" -#: gnu/packages/games.scm:8443 +#: gnu/packages/games.scm:8445 msgid "" "StepMania is a dance and rhythm game. It features 3D\n" "graphics, keyboard and dance pad support, and an editor for creating your own\n" @@ -4473,7 +4630,7 @@ msgid "" "to download and install them in @file{$HOME/.stepmania-X.Y/Songs} directory." msgstr "" -#: gnu/packages/games.scm:8479 +#: gnu/packages/games.scm:8481 msgid "" "@i{oshu!} is a minimalist variant of the @i{osu!} rhythm game,\n" "which is played by pressing buttons and following along sliders as they appear\n" @@ -4483,7 +4640,7 @@ msgid "" "download and unpack them separately." msgstr "" -#: gnu/packages/games.scm:8562 +#: gnu/packages/games.scm:8564 msgid "" "Battle Tanks (also known as \"btanks\") is a funny battle\n" "game, where you can choose one of three vehicles and eliminate your enemy\n" @@ -4492,7 +4649,7 @@ msgid "" "and cooperative." msgstr "" -#: gnu/packages/games.scm:8596 +#: gnu/packages/games.scm:8598 msgid "" "Slime Volley is a 2D arcade-oriented volleyball simulation, in\n" "the spirit of some Java games of the same name.\n" @@ -4503,7 +4660,7 @@ msgid "" "the ground, the set ends and all balls are served again." msgstr "" -#: gnu/packages/games.scm:8626 +#: gnu/packages/games.scm:8628 msgid "" "Slingshot is a two-dimensional strategy game where two\n" "players attempt to shoot one another through a section of space populated by\n" @@ -4511,14 +4668,14 @@ msgid "" "affected by the gravity of the planets." msgstr "" -#: gnu/packages/games.scm:8674 +#: gnu/packages/games.scm:8676 msgid "" "4D-TRIS is an alteration of the well-known Tetris game. The\n" "game field is extended to 4D space, which has to filled up by the gamer with\n" "4D hyper cubes." msgstr "" -#: gnu/packages/games.scm:8751 +#: gnu/packages/games.scm:8753 msgid "" "Arx Libertatis is a cross-platform port of Arx Fatalis, a 2002\n" "first-person role-playing game / dungeon crawler developed by Arkane Studios.\n" @@ -4528,7 +4685,7 @@ msgid "" "where the player draws runes in real time to effect the desired spell." msgstr "" -#: gnu/packages/games.scm:8797 +#: gnu/packages/games.scm:8799 msgid "" "The Legend of Edgar is a 2D platform game with a persistent world.\n" "When Edgar's father fails to return home after venturing out one dark and stormy night,\n" @@ -4536,7 +4693,7 @@ msgid "" "a fortress beyond the forbidden swamp." msgstr "" -#: gnu/packages/games.scm:8899 +#: gnu/packages/games.scm:8901 msgid "" "OpenClonk is a multiplayer action/tactics/skill game. It is\n" "often referred to as a mixture of The Settlers and Worms. In a simple 2D\n" @@ -4546,20 +4703,20 @@ msgid "" "fight each other on an arena-like map." msgstr "" -#: gnu/packages/games.scm:8931 +#: gnu/packages/games.scm:8933 msgid "" "Flare (Free Libre Action Roleplaying Engine) is a simple\n" "game engine built to handle a very specific kind of game: single-player 2D\n" "action RPGs." msgstr "" -#: gnu/packages/games.scm:8994 +#: gnu/packages/games.scm:8996 msgid "" "Flare is a single-player 2D action RPG with\n" "fast-paced action and a dark fantasy style." msgstr "" -#: gnu/packages/games.scm:9046 +#: gnu/packages/games.scm:9048 msgid "" "Far below the surface of the planet is a place of limitless\n" "power. Those that seek to control such a utopia will soon bring an end to\n" @@ -4573,7 +4730,7 @@ msgid "" "Orcus Dome from evil." msgstr "" -#: gnu/packages/games.scm:9108 +#: gnu/packages/games.scm:9110 msgid "" "Marble Marcher is a video game that uses a fractal physics\n" "engine and fully procedural rendering to produce beautiful and unique\n" @@ -4583,7 +4740,7 @@ msgid "" "levels to unlock." msgstr "" -#: gnu/packages/games.scm:9159 +#: gnu/packages/games.scm:9161 msgid "" "SimGear is a set of libraries designed to be used as\n" "building blocks for quickly assembling 3D simulations, games, and\n" @@ -4591,7 +4748,7 @@ msgid "" "and also provides the base for the FlightGear Flight Simulator." msgstr "" -#: gnu/packages/games.scm:9253 +#: gnu/packages/games.scm:9255 msgid "" "The goal of the FlightGear project is to create a\n" "sophisticated flight simulator framework for use in research or academic\n" @@ -4601,14 +4758,14 @@ msgid "" "simulator." msgstr "" -#: gnu/packages/games.scm:9306 +#: gnu/packages/games.scm:9308 msgid "" "You, as a bunny, have to jump on your opponents to make them\n" "explode. It is a true multiplayer game; you cannot play this alone. You can\n" "play with up to four players simultaneously. It has network support." msgstr "" -#: gnu/packages/games.scm:9373 +#: gnu/packages/games.scm:9375 msgid "" "Hedgewars is a turn based strategy, artillery, action and comedy game,\n" "featuring the antics of pink hedgehogs with attitude as they battle from the\n" @@ -4618,7 +4775,7 @@ msgid "" "and bring the war to your enemy." msgstr "" -#: gnu/packages/games.scm:9407 +#: gnu/packages/games.scm:9409 msgid "" "The gruid module provides packages for easily building\n" "grid-based applications in Go. The library abstracts rendering and input for\n" @@ -4628,13 +4785,13 @@ msgid "" "application." msgstr "" -#: gnu/packages/games.scm:9437 +#: gnu/packages/games.scm:9439 msgid "" "The gruid-tcell module provides a Gruid driver for building\n" "terminal full-window applications." msgstr "" -#: gnu/packages/games.scm:9464 +#: gnu/packages/games.scm:9466 msgid "" "Harmonist: Dayoriah Clan Infiltration is a stealth\n" "coffee-break roguelike game. The game has a heavy focus on tactical\n" @@ -4644,7 +4801,7 @@ msgid "" "on items and player adaptability for character progression." msgstr "" -#: gnu/packages/games.scm:9573 +#: gnu/packages/games.scm:9575 msgid "" "Drascula: The Vampire Strikes Back is a classic humorous 2D\n" "point and click adventure game.\n" @@ -4656,7 +4813,7 @@ msgid "" "the World and demonstrating that he is even more evil than his brother Vlad." msgstr "" -#: gnu/packages/games.scm:9653 +#: gnu/packages/games.scm:9655 msgid "" "Lure of the Temptress is a classic 2D point and click adventure game.\n" "\n" @@ -4675,7 +4832,7 @@ msgid "" "Skorl. Maybe it would be an idea to try and escape..." msgstr "" -#: gnu/packages/games.scm:9752 +#: gnu/packages/games.scm:9754 msgid "" "Flight of the Amazon Queen is a 2D point-and-click\n" "adventure game set in the 1940s.\n" @@ -4692,7 +4849,7 @@ msgid "" "women and 6-foot-tall pygmies." msgstr "" -#: gnu/packages/games.scm:9852 +#: gnu/packages/games.scm:9854 msgid "" "Beneath a Steel Sky is a science-fiction thriller set in a bleak\n" "post-apocalyptic vision of the future. It revolves around Union City,\n" @@ -4715,7 +4872,7 @@ msgid "" "and to seek vengeance for the killing of his tribe." msgstr "" -#: gnu/packages/games.scm:9911 +#: gnu/packages/games.scm:9913 msgid "" "GNU Robots is a game in which you program a robot to explore a world\n" "full of enemies that can hurt it, obstacles and food to be eaten. The goal of\n" @@ -4723,14 +4880,14 @@ msgid "" "may be written in a plain text file in the Scheme programming language." msgstr "" -#: gnu/packages/games.scm:9981 +#: gnu/packages/games.scm:9983 msgid "" "Ri-li is a game in which you drive a wooden toy\n" "steam locomotive across many levels and collect all the coaches to\n" "win." msgstr "" -#: gnu/packages/games.scm:10037 +#: gnu/packages/games.scm:10039 msgid "" "FreeOrion is a turn-based space empire and galactic conquest (4X)\n" "computer game being designed and built by the FreeOrion project. Control an\n" @@ -4740,14 +4897,14 @@ msgid "" "remake of that series or any other game." msgstr "" -#: gnu/packages/games.scm:10093 +#: gnu/packages/games.scm:10095 msgid "" "Leela-zero is a Go engine with no human-provided knowledge, modeled after\n" "the AlphaGo Zero paper. The current best network weights file for the engine\n" "can be downloaded from @url{https://zero.sjeng.org/best-network}." msgstr "" -#: gnu/packages/games.scm:10171 +#: gnu/packages/games.scm:10173 msgid "" "This a tool for Go players which performs the following functions:\n" "@itemize\n" @@ -4759,7 +4916,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:10214 +#: gnu/packages/games.scm:10216 msgid "" "KTuberling is a drawing toy intended for small children and\n" "adults who remain young at heart. The game has no winner; the only purpose is\n" @@ -4778,7 +4935,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10260 +#: gnu/packages/games.scm:10262 msgid "" "Picmi is a number logic game in which cells in a grid have\n" "to be colored or left blank according to numbers given at the side of the\n" @@ -4787,7 +4944,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10297 +#: gnu/packages/games.scm:10299 msgid "" "Kolf is a miniature golf game for one to ten players. The\n" "game is played from an overhead view, with a short bar representing the golf\n" @@ -4806,13 +4963,13 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10341 +#: gnu/packages/games.scm:10343 msgid "" "Shared library and common files for kmahjongg, kshisen and\n" "other Mah Jongg like games." msgstr "" -#: gnu/packages/games.scm:10374 +#: gnu/packages/games.scm:10376 msgid "" "In KMahjongg the tiles are scrambled and staked on top of\n" "each other to resemble a certain shape. The player is then expected to remove\n" @@ -4824,7 +4981,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10416 +#: gnu/packages/games.scm:10418 msgid "" "KShisen is a solitaire-like game played using the standard\n" "set of Mahjong tiles. Unlike Mahjong however, KShisen has only one layer of\n" @@ -4833,7 +4990,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10471 +#: gnu/packages/games.scm:10473 msgid "" "Kajongg is the ancient Chinese board game for 4 players.\n" "\n" @@ -4848,7 +5005,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10513 +#: gnu/packages/games.scm:10515 msgid "" "KBreakout is similar to the classics breakout and xboing,\n" "featuring a number of added graphical enhancements and effects. You control a\n" @@ -4858,7 +5015,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10551 +#: gnu/packages/games.scm:10553 msgid "" "KMines is a classic Minesweeper game. The idea is to\n" "uncover all the squares without blowing up any mines. When a mine is blown\n" @@ -4867,7 +5024,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10588 +#: gnu/packages/games.scm:10590 msgid "" "Konquest is the KDE version of Gnu-Lactic Konquest. Players\n" "conquer other planets by sending ships to them. The goal is to build an\n" @@ -4878,7 +5035,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10627 +#: gnu/packages/games.scm:10629 msgid "" "KBounce is a single player arcade game with the elements of\n" "puzzle. It is played on a field, surrounded by wall, with two or more balls\n" @@ -4888,7 +5045,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10665 +#: gnu/packages/games.scm:10667 msgid "" "KBlocks is the classic Tetris-like falling blocks game.\n" "\n" @@ -4900,7 +5057,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10708 +#: gnu/packages/games.scm:10710 msgid "" "KSudoku is a Sudoku game and solver, supporting a range of\n" "2D and 3D Sudoku variants. In addition to playing Sudoku, it can print Sudoku\n" @@ -4929,7 +5086,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10763 +#: gnu/packages/games.scm:10765 msgid "" "KLines is a simple but highly addictive one player game.\n" "\n" @@ -4946,7 +5103,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10806 +#: gnu/packages/games.scm:10808 msgid "" "KGoldrunner is an action game where the hero runs through a\n" "maze, climbs stairs, dig holes and dodges enemies in order to collect all the\n" @@ -4960,7 +5117,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10849 +#: gnu/packages/games.scm:10851 msgid "" "KDiamond is a three-in-a-row game like Bejeweled. It\n" "features unlimited fun with randomly generated games and five difficulty\n" @@ -4969,7 +5126,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10885 +#: gnu/packages/games.scm:10887 msgid "" "KFourInLine is a board game for two players based on the\n" "Connect-Four game.\n" @@ -4980,7 +5137,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10924 +#: gnu/packages/games.scm:10926 msgid "" "KBlackbox is a game of hide and seek played on a grid of\n" "boxes where the computer has hidden several balls. The position of the hidden\n" @@ -4992,7 +5149,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10964 +#: gnu/packages/games.scm:10966 msgid "" "KNetWalk is a small game where you have to build up a\n" "computer network by rotating the wires to connect the terminals to the server.\n" @@ -5005,7 +5162,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11002 +#: gnu/packages/games.scm:11004 msgid "" "Bomber is a single player arcade game.\n" "\n" @@ -5021,7 +5178,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11047 +#: gnu/packages/games.scm:11049 msgid "" "Granatier is a clone of the classic Bomberman game,\n" "inspired by the work of the Clanbomber clone.\n" @@ -5029,7 +5186,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11085 +#: gnu/packages/games.scm:11087 msgid "" "KsirK is a multi-player network-enabled game. The goal of\n" "the game is simply to conquer the world by attacking your neighbors with your\n" @@ -5054,7 +5211,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11145 +#: gnu/packages/games.scm:11147 msgid "" "Palapeli is a jigsaw puzzle game. Unlike other games in\n" "that genre, you are not limited to aligning pieces on imaginary grids. The\n" @@ -5066,7 +5223,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11184 +#: gnu/packages/games.scm:11186 msgid "" "Kiriki is an addictive and fun dice game, designed to be\n" "played by as many as six players.\n" @@ -5077,7 +5234,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11224 +#: gnu/packages/games.scm:11226 msgid "" "Kigo is an open-source implementation of the popular Go\n" "game.\n" @@ -5094,7 +5251,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11269 +#: gnu/packages/games.scm:11271 msgid "" "Kubrick is a game based on the Rubik's Cube puzzle.\n" "\n" @@ -5107,7 +5264,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11309 +#: gnu/packages/games.scm:11311 msgid "" "Lieutnant Skat (from German \"Offiziersskat\") is a fun and\n" "engaging card game for two players, where the second player is either live\n" @@ -5118,7 +5275,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11347 +#: gnu/packages/games.scm:11349 msgid "" "Kapman is a clone of the well known game Pac-Man.\n" "\n" @@ -5130,7 +5287,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11386 +#: gnu/packages/games.scm:11388 msgid "" "KSpaceduel is a space battle game for one or two players,\n" "where two ships fly around a star in a struggle to be the only survivor.\n" @@ -5138,7 +5295,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11419 +#: gnu/packages/games.scm:11421 msgid "" "Bovo is a Gomoku (from Japanese 五目並べ - lit. \"five\n" "points\") like game for two players, where the opponents alternate in placing\n" @@ -5149,7 +5306,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11457 +#: gnu/packages/games.scm:11459 msgid "" "Killbots is a simple game of evading killer robots.\n" "\n" @@ -5163,7 +5320,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11499 +#: gnu/packages/games.scm:11501 msgid "" "KSnakeDuel is a fast action game where you steer a snake\n" "which has to eat food. While eating the snake grows. But once a player\n" @@ -5173,7 +5330,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11535 +#: gnu/packages/games.scm:11537 msgid "" "In Kollision you use mouse to control a small blue ball in a\n" "closed space environment filled with small red balls, which move about\n" @@ -5184,7 +5341,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11575 +#: gnu/packages/games.scm:11577 msgid "" "KBattleship is a Battle Ship game for KDE.\n" "\n" @@ -5195,7 +5352,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11615 +#: gnu/packages/games.scm:11617 msgid "" "KReversi is a simple one player strategy game played\n" "against the computer.\n" @@ -5208,7 +5365,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11655 +#: gnu/packages/games.scm:11657 msgid "" "KSquares is an implementation of the popular paper based\n" "game Squares. Two players take turns connecting dots on a grid to complete\n" @@ -5217,7 +5374,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11692 +#: gnu/packages/games.scm:11694 msgid "" "KJumpingcube is a simple tactical game for one or two\n" "players, played on a grid of numbered squares. Each turn, players compete for\n" @@ -5226,7 +5383,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11782 +#: gnu/packages/games.scm:11784 msgid "" "X-Moto is a challenging 2D motocross platform game, where\n" "physics play an all important role in the gameplay. You need to\n" @@ -5234,27 +5391,27 @@ msgid "" "the more difficult challenges." msgstr "" -#: gnu/packages/games.scm:11827 +#: gnu/packages/games.scm:11829 msgid "" "Eboard is a chess board interface for ICS (Internet Chess Servers)\n" "and chess engines." msgstr "" -#: gnu/packages/games.scm:11880 +#: gnu/packages/games.scm:11882 msgid "" "ChessX is a chess database. With ChessX you can operate on your\n" "collection of chess games in many ways: browse, edit, add, organize, analyze,\n" "etc. You can also play games on FICS or against an engine." msgstr "" -#: gnu/packages/games.scm:11935 +#: gnu/packages/games.scm:11937 msgid "" "Stockfish is a very strong chess engine. It is much stronger than the\n" "best human chess grandmasters. It can be used with UCI-compatible GUIs like\n" "ChessX." msgstr "" -#: gnu/packages/games.scm:11964 +#: gnu/packages/games.scm:11966 msgid "" "Barrage is a rather destructive action game that puts you on a shooting\n" "range with the objective to hit as many dummy targets as possible within\n" @@ -5263,7 +5420,7 @@ msgid "" "get high scores." msgstr "" -#: gnu/packages/games.scm:11990 +#: gnu/packages/games.scm:11992 msgid "" "This is a clone of the classic game BurgerTime. In it, you play\n" "the part of a chef who must create burgers by stepping repeatedly on\n" @@ -5273,7 +5430,7 @@ msgid "" "protect you." msgstr "" -#: gnu/packages/games.scm:12018 +#: gnu/packages/games.scm:12020 msgid "" "Seven Kingdoms, designed by Trevor Chan, brings a blend of Real-Time\n" "Strategy with the addition of trade, diplomacy, and espionage. The game\n" @@ -5283,7 +5440,7 @@ msgid "" "kingdom." msgstr "" -#: gnu/packages/games.scm:12134 +#: gnu/packages/games.scm:12136 msgid "" "In the grand tradition of Marble Madness and Super Monkey Ball,\n" "Neverball has you guide a rolling ball through dangerous territory. Balance\n" @@ -5293,13 +5450,13 @@ msgid "" "game." msgstr "" -#: gnu/packages/games.scm:12210 +#: gnu/packages/games.scm:12212 msgid "" "With PokerTH you can play the Texas holdem poker game, either against\n" "computer opponents or against real players online." msgstr "" -#: gnu/packages/games.scm:12281 +#: gnu/packages/games.scm:12283 msgid "" "Xblackjack is a MOTIF/OLIT based tool constructed to get you ready for\n" "the casino. It was inspired by a book called \"Beat the Dealer\" by Edward\n" @@ -5308,13 +5465,13 @@ msgid "" "System\" (high-low system)." msgstr "" -#: gnu/packages/games.scm:12321 +#: gnu/packages/games.scm:12323 msgid "" "Pilot your ship inside a planet to find and rescue the colonists trapped\n" "inside the Zenith Colony." msgstr "" -#: gnu/packages/games.scm:12341 +#: gnu/packages/games.scm:12343 msgid "" "Provides a large set of Go-related services for X11:\n" "@itemize\n" @@ -5325,7 +5482,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:12401 +#: gnu/packages/games.scm:12403 msgid "" "Passage is meant to be a memento mori game. It presents an entire life,\n" "from young adulthood through old age and death, in the span of five minutes.\n" @@ -5334,21 +5491,21 @@ msgid "" "there's no right way to interpret it." msgstr "" -#: gnu/packages/games.scm:12435 +#: gnu/packages/games.scm:12437 msgid "" "High performance animated desktop background setter for\n" "X11 that won't set your CPU on fire, drain your laptop battery, or lower video\n" "game FPS." msgstr "" -#: gnu/packages/games.scm:12465 +#: gnu/packages/games.scm:12467 msgid "" "Curse of War is a fast-paced action strategy game originally\n" "implemented using ncurses user interface. An SDL graphical version is also\n" "available." msgstr "" -#: gnu/packages/games.scm:12496 +#: gnu/packages/games.scm:12498 msgid "" "Schiffbruch is a mix of building, strategy and adventure and gets played\n" "with a two-dimensional view. The game deals with the consequences of a ship\n" @@ -5357,13 +5514,13 @@ msgid "" "get attention, so you get found." msgstr "" -#: gnu/packages/games.scm:12556 +#: gnu/packages/games.scm:12558 msgid "" "This package provides port of Prince of Persia, based on the\n" "disassembly of the DOS version, extended with new features." msgstr "" -#: gnu/packages/games.scm:12587 +#: gnu/packages/games.scm:12589 #, scheme-format msgid "" "@code{fheroes2} is an implementation of Heroes of Might and\n" @@ -5459,7 +5616,7 @@ msgid "" "from Markdown files." msgstr "" -#: gnu/packages/gettext.scm:311 +#: gnu/packages/gettext.scm:304 msgid "" "The po4a (PO for anything) project goal is to ease translations (and\n" "more interestingly, the maintenance of translations) using gettext tools on\n" @@ -5542,18 +5699,18 @@ msgid "" "system. It was forked from the GNU Image Manipulation Program." msgstr "" -#: gnu/packages/gnome.scm:284 +#: gnu/packages/gnome.scm:288 msgid "GUPnP-IGD is a library to handle UPnP IGD port mapping." msgstr "" -#: gnu/packages/gnome.scm:340 +#: gnu/packages/gnome.scm:344 msgid "" "Brasero is an application to burn CD/DVD for the Gnome\n" "Desktop. It is designed to be as simple as possible and has some unique\n" "features to enable users to create their discs easily and quickly." msgstr "" -#: gnu/packages/gnome.scm:372 +#: gnu/packages/gnome.scm:376 msgid "" "Libcloudproviders is a DBus API that allows cloud storage sync\n" "clients to expose their services. Clients such as file managers and desktop\n" @@ -5561,19 +5718,19 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:444 +#: gnu/packages/gnome.scm:448 msgid "" "LibGRSS is a Glib abstraction to handle feeds in RSS, Atom,\n" "and other formats." msgstr "" -#: gnu/packages/gnome.scm:472 +#: gnu/packages/gnome.scm:476 msgid "" "GNOME-JS-Common provides common modules for GNOME JavaScript\n" "bindings." msgstr "" -#: gnu/packages/gnome.scm:555 +#: gnu/packages/gnome.scm:559 msgid "" "Seed is a library and interpreter, dynamically bridging\n" "(through GObjectIntrospection) the WebKit JavaScriptCore engine, with the\n" @@ -5582,21 +5739,21 @@ msgid "" "in JavaScript." msgstr "" -#: gnu/packages/gnome.scm:611 +#: gnu/packages/gnome.scm:615 msgid "" "Libdmapsharing is a library which allows programs to access,\n" "share and control the playback of media content using DMAP (DAAP, DPAP & DACP).\n" "It is written in C using GObject and libsoup." msgstr "" -#: gnu/packages/gnome.scm:644 +#: gnu/packages/gnome.scm:648 msgid "" "GTX is a small collection of convenience functions intended to\n" "enhance the GLib testing framework. With specific emphasis on easing the pain\n" "of writing test cases for asynchronous interactions." msgstr "" -#: gnu/packages/gnome.scm:721 +#: gnu/packages/gnome.scm:725 msgid "" "Dee is a library that uses DBus to provide objects allowing\n" "you to create Model-View-Controller type programs across DBus. It also consists\n" @@ -5604,7 +5761,7 @@ msgid "" "of known objects without needing a central registrar." msgstr "" -#: gnu/packages/gnome.scm:802 +#: gnu/packages/gnome.scm:806 msgid "" "Zeitgeist is a service which logs the users’s activities and\n" "events, anywhere from files opened to websites visited and conversations. It\n" @@ -5613,27 +5770,27 @@ msgid "" "patterns." msgstr "" -#: gnu/packages/gnome.scm:869 +#: gnu/packages/gnome.scm:871 msgid "" "GNOME Recipes helps you discover what to cook today,\n" "tomorrow, the rest of the week and for special occasions." msgstr "" -#: gnu/packages/gnome.scm:939 +#: gnu/packages/gnome.scm:940 msgid "" "GNOME Photos is a simple and elegant replacement for using a\n" "file manager to deal with photos. Enhance, crop and edit in a snap. Seamless\n" "cloud integration is offered through GNOME Online Accounts." msgstr "" -#: gnu/packages/gnome.scm:1007 +#: gnu/packages/gnome.scm:1008 msgid "" "GNOME Music is the new GNOME music playing application that\n" "aims to combine an elegant and immersive browsing experience with simple\n" "and straightforward controls." msgstr "" -#: gnu/packages/gnome.scm:1028 +#: gnu/packages/gnome.scm:1029 msgid "" "PortableXDR is an implementation of External Data\n" "Representation (XDR) Library. It is a standard data serialization format, for\n" @@ -5641,25 +5798,25 @@ msgid "" "between different kinds of computer systems." msgstr "" -#: gnu/packages/gnome.scm:1066 +#: gnu/packages/gnome.scm:1067 msgid "" "Tepl is a library that eases the development of\n" "GtkSourceView-based text editors and IDEs." msgstr "" -#: gnu/packages/gnome.scm:1107 +#: gnu/packages/gnome.scm:1108 msgid "" "krb5-auth-dialog is a simple dialog that monitors Kerberos\n" "tickets, and pops up a dialog when they are about to expire." msgstr "" -#: gnu/packages/gnome.scm:1132 +#: gnu/packages/gnome.scm:1133 msgid "" "Notification-Daemon is the server implementation of the\n" "freedesktop.org desktop notification specification." msgstr "" -#: gnu/packages/gnome.scm:1168 +#: gnu/packages/gnome.scm:1169 msgid "" "The mm-common module provides the build infrastructure\n" "and utilities shared among the GNOME C++ binding libraries. Release\n" @@ -5667,55 +5824,55 @@ msgid "" "Library reference documentation." msgstr "" -#: gnu/packages/gnome.scm:1214 +#: gnu/packages/gnome.scm:1215 msgid "" "PhoDav was initially developed as a file-sharing mechanism for Spice,\n" "but it is generic enough to be reused in other projects,\n" "in particular in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1267 +#: gnu/packages/gnome.scm:1268 msgid "" "GNOME Color Manager is a session framework that makes\n" "it easy to manage, install and generate color profiles\n" "in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1319 +#: gnu/packages/gnome.scm:1320 msgid "" "GNOME Online Miners provides a set of crawlers that\n" "go through your online content and index them locally in Tracker.\n" "It has miners for Facebook, Flickr, Google, ownCloud and SkyDrive." msgstr "" -#: gnu/packages/gnome.scm:1352 +#: gnu/packages/gnome.scm:1353 msgid "" "This package provides a library to handle resource discovery\n" "and announcement over @acronym{SSDP, Simple Service Discovery Protocol} and\n" "a debugging tool, @command{gssdp-device-sniffer}." msgstr "" -#: gnu/packages/gnome.scm:1391 +#: gnu/packages/gnome.scm:1392 msgid "" "This package provides GUPnP, an object-oriented framework\n" "for creating UPnP devices and control points, written in C using\n" "@code{GObject} and @code{libsoup}." msgstr "" -#: gnu/packages/gnome.scm:1423 +#: gnu/packages/gnome.scm:1424 msgid "" "This package provides a small utility library to\n" "support DLNA-related tasks such as media profile guessing, transcoding to a\n" "given profile, etc. DLNA is a subset of UPnP A/V." msgstr "" -#: gnu/packages/gnome.scm:1453 +#: gnu/packages/gnome.scm:1454 msgid "" "This package provides a small library for handling\n" "and implementation of UPnP A/V profiles." msgstr "" -#: gnu/packages/gnome.scm:1478 +#: gnu/packages/gnome.scm:1479 msgid "" "The libmediaart library is the foundation for media art caching,\n" "extraction, and lookup for applications on the desktop." @@ -5728,14 +5885,14 @@ msgid "" "tour of all gnome components and allows the user to set them up." msgstr "" -#: gnu/packages/gnome.scm:1584 +#: gnu/packages/gnome.scm:1583 msgid "" "GNOME User Share is a small package that binds together\n" "various free software projects to bring easy to use user-level file\n" "sharing to the masses." msgstr "" -#: gnu/packages/gnome.scm:1639 +#: gnu/packages/gnome.scm:1638 msgid "" "Sushi is a DBus-activated service that allows applications\n" "to preview files on the GNOME desktop." @@ -5787,7 +5944,7 @@ msgid "" "and system administrators." msgstr "" -#: gnu/packages/gnome.scm:1946 +#: gnu/packages/gnome.scm:1950 msgid "" "Dia can be used to draw different types of diagrams, and\n" "includes support for UML static structure diagrams (class diagrams), entity\n" @@ -5795,28 +5952,28 @@ msgid "" "formats like PNG, SVG, PDF and EPS." msgstr "" -#: gnu/packages/gnome.scm:1991 +#: gnu/packages/gnome.scm:1995 msgid "" "libgdata is a GLib-based library for accessing online service APIs using\n" "the GData protocol — most notably, Google's services. It provides APIs to\n" "access the common Google services, and has full asynchronous support." msgstr "" -#: gnu/packages/gnome.scm:2019 +#: gnu/packages/gnome.scm:2023 msgid "" "libgxps is a GObject-based library for handling and rendering XPS\n" "documents. This package also contains binaries that can convert XPS documents\n" "to other formats." msgstr "" -#: gnu/packages/gnome.scm:2060 +#: gnu/packages/gnome.scm:2063 msgid "" "Characters is a simple utility application to find\n" "and insert unusual characters. It allows you to quickly find the\n" "character you are looking for by searching for keywords." msgstr "" -#: gnu/packages/gnome.scm:2081 +#: gnu/packages/gnome.scm:2084 msgid "" "gnome-common contains various files needed to bootstrap\n" "GNOME modules built from Git. It contains a common \"autogen.sh\" script that\n" @@ -5824,13 +5981,13 @@ msgid "" "commonly used macros." msgstr "" -#: gnu/packages/gnome.scm:2142 +#: gnu/packages/gnome.scm:2145 msgid "" "GNOME Contacts organizes your contact information from online and\n" "offline sources, providing a centralized place for managing your contacts." msgstr "" -#: gnu/packages/gnome.scm:2222 +#: gnu/packages/gnome.scm:2225 msgid "" "The libgnome-desktop library provides API shared by several applications\n" "on the desktop, but that cannot live in the platform for various reasons.\n" @@ -5840,40 +5997,40 @@ msgid "" "The gnome-about program helps find which version of GNOME is installed." msgstr "" -#: gnu/packages/gnome.scm:2257 +#: gnu/packages/gnome.scm:2260 msgid "" "Gnome-doc-utils is a collection of documentation utilities for the\n" "Gnome project. It includes xml2po tool which makes it easier to translate\n" "and keep up to date translations of documentation." msgstr "" -#: gnu/packages/gnome.scm:2309 +#: gnu/packages/gnome.scm:2311 msgid "Disk management utility for GNOME." msgstr "" -#: gnu/packages/gnome.scm:2352 +#: gnu/packages/gnome.scm:2353 msgid "" "Application to show you the fonts installed on your computer\n" "for your use as thumbnails. Selecting any thumbnails shows the full view of how\n" "the font would look under various sizes." msgstr "" -#: gnu/packages/gnome.scm:2420 +#: gnu/packages/gnome.scm:2421 msgid "" "The GCR package contains libraries used for displaying certificates and\n" "accessing key stores. It also provides the viewer for crypto files on the\n" "GNOME Desktop." msgstr "" -#: gnu/packages/gnome.scm:2459 +#: gnu/packages/gnome.scm:2460 msgid "This library provides docking features for gtk+." msgstr "" -#: gnu/packages/gnome.scm:2505 +#: gnu/packages/gnome.scm:2506 msgid "Client library to access passwords from the GNOME keyring." msgstr "" -#: gnu/packages/gnome.scm:2575 +#: gnu/packages/gnome.scm:2576 msgid "" "gnome-keyring is a program that keeps passwords and other secrets for\n" "users. It is run as a daemon in the session, similar to ssh-agent, and other\n" @@ -5892,13 +6049,13 @@ msgid "" "on the GNOME Desktop with a single simple application." msgstr "" -#: gnu/packages/gnome.scm:2693 +#: gnu/packages/gnome.scm:2692 msgid "" "Gsettings-desktop-schemas contains a collection of GSettings\n" "schemas for settings shared by various components of the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:2729 +#: gnu/packages/gnome.scm:2728 msgid "" "Liblarch is a Python library built to easily handle data structures such\n" "as lists, trees and acyclic graphs. There's also a GTK binding that will\n" @@ -5909,7 +6066,7 @@ msgid "" "and how they are displayed (View)." msgstr "" -#: gnu/packages/gnome.scm:2790 +#: gnu/packages/gnome.scm:2789 msgid "" "Getting Things GNOME! (GTG) is a personal tasks and TODO list items\n" "organizer for the GNOME desktop environment inspired by the Getting Things\n" @@ -5919,24 +6076,24 @@ msgid "" "know, from small tasks to large projects." msgstr "" -#: gnu/packages/gnome.scm:2829 +#: gnu/packages/gnome.scm:2828 msgid "" "To help with the transition to the Freedesktop Icon Naming\n" "Specification, the icon naming utility maps the icon names used by the\n" "GNOME and KDE desktops to the icon names proposed in the specification." msgstr "" -#: gnu/packages/gnome.scm:2858 +#: gnu/packages/gnome.scm:2857 msgid "Icons for the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:2897 +#: gnu/packages/gnome.scm:2896 msgid "" "This is an icon theme that follows the Tango visual\n" "guidelines." msgstr "" -#: gnu/packages/gnome.scm:2927 +#: gnu/packages/gnome.scm:2926 msgid "" "The shared-mime-info package contains the core database of common types\n" "and the update-mime-database command used to extend it. It requires glib2 to\n" @@ -5945,18 +6102,18 @@ msgid "" "database is translated at Transifex." msgstr "" -#: gnu/packages/gnome.scm:3012 +#: gnu/packages/gnome.scm:3011 msgid "" "system-config-printer is a CUPS administration tool. It's written in\n" "Python using GTK+, and uses the @acronym{IPP, Internet Printing Protocol} when\n" "configuring CUPS." msgstr "" -#: gnu/packages/gnome.scm:3036 +#: gnu/packages/gnome.scm:3035 msgid "Freedesktop icon theme." msgstr "" -#: gnu/packages/gnome.scm:3085 +#: gnu/packages/gnome.scm:3084 msgid "" "Libnotify is a library that sends desktop notifications to a\n" "notification daemon, as defined in the Desktop Notifications spec. These\n" @@ -5964,7 +6121,7 @@ msgid "" "some form of information without getting in the user's way." msgstr "" -#: gnu/packages/gnome.scm:3132 +#: gnu/packages/gnome.scm:3131 msgid "" "Libpeas is a gobject-based plugin engine, targeted at giving every\n" "application the chance to assume its own extensibility. It also has a set of\n" @@ -5973,21 +6130,21 @@ msgid "" "API." msgstr "" -#: gnu/packages/gnome.scm:3168 +#: gnu/packages/gnome.scm:3167 msgid "" "GtkGLExt is an OpenGL extension to GTK+. It provides\n" "additional GDK objects which support OpenGL rendering in GTK+ and GtkWidget\n" "API add-ons to make GTK+ widgets OpenGL-capable." msgstr "" -#: gnu/packages/gnome.scm:3248 +#: gnu/packages/gnome.scm:3247 msgid "" "Glade is a rapid application development (RAD) tool to\n" "enable quick & easy development of user interfaces for the GTK+ toolkit and\n" "the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:3280 +#: gnu/packages/gnome.scm:3279 msgid "" "Libcroco is a standalone CSS2 parsing and manipulation library.\n" "The parser provides a low level event driven SAC-like API and a CSS object\n" @@ -5995,13 +6152,13 @@ msgid "" "XML/CSS rendering engine." msgstr "" -#: gnu/packages/gnome.scm:3347 +#: gnu/packages/gnome.scm:3346 msgid "" "Libgsf aims to provide an efficient extensible I/O abstraction\n" "for dealing with different structured file formats." msgstr "" -#: gnu/packages/gnome.scm:3526 +#: gnu/packages/gnome.scm:3525 msgid "" "Librsvg is a library to render SVG images to Cairo surfaces.\n" "GNOME uses this to render SVG icons. Outside of GNOME, other desktop\n" @@ -6009,7 +6166,7 @@ msgid "" "diagrams." msgstr "" -#: gnu/packages/gnome.scm:3649 +#: gnu/packages/gnome.scm:3648 msgid "" "Libidl is a library for creating trees of CORBA Interface\n" "Definition Language (idl) files, which is a specification for defining\n" @@ -6018,82 +6175,82 @@ msgid "" "functionality was designed to be as reusable and portable as possible." msgstr "" -#: gnu/packages/gnome.scm:3704 +#: gnu/packages/gnome.scm:3703 msgid "" "ORBit2 is a CORBA 2.4-compliant Object Request Broker (orb)\n" "featuring mature C, C++ and Python bindings." msgstr "" -#: gnu/packages/gnome.scm:3758 +#: gnu/packages/gnome.scm:3757 msgid "" "Bonobo is a framework for creating reusable components for\n" "use in GNOME applications, built on top of CORBA." msgstr "" -#: gnu/packages/gnome.scm:3789 +#: gnu/packages/gnome.scm:3788 msgid "" "Gconf is a system for storing application preferences. It\n" "is intended for user preferences; not arbitrary data storage." msgstr "" -#: gnu/packages/gnome.scm:3823 +#: gnu/packages/gnome.scm:3822 msgid "" "GNOME Mime Data is a module which contains the base MIME\n" "and Application database for GNOME. The data stored by this module is\n" "designed to be accessed through the MIME functions in GnomeVFS." msgstr "" -#: gnu/packages/gnome.scm:3863 +#: gnu/packages/gnome.scm:3862 msgid "" "GnomeVFS is the core library used to access files and folders in GNOME\n" "applications. It provides a file system abstraction which allows applications\n" "to access local and remote files with a single consistent API." msgstr "" -#: gnu/packages/gnome.scm:3904 +#: gnu/packages/gnome.scm:3903 msgid "" "The libgnome library provides a number of useful routines\n" "for building modern applications, including session management, activation of\n" "files and URIs, and displaying help." msgstr "" -#: gnu/packages/gnome.scm:3928 +#: gnu/packages/gnome.scm:3927 msgid "" "Libart is a 2D drawing library intended as a\n" "high-quality vector-based 2D library with antialiasing and alpha composition." msgstr "" -#: gnu/packages/gnome.scm:3955 +#: gnu/packages/gnome.scm:3954 msgid "" "The GnomeCanvas widget provides a flexible widget for\n" "creating interactive structured graphics." msgstr "" -#: gnu/packages/gnome.scm:3977 +#: gnu/packages/gnome.scm:3976 msgid "C++ bindings to the GNOME Canvas library." msgstr "" -#: gnu/packages/gnome.scm:4003 +#: gnu/packages/gnome.scm:4002 msgid "" "The libgnomeui library provides additional widgets for\n" "applications. Many of the widgets from libgnomeui have already been\n" "ported to GTK+." msgstr "" -#: gnu/packages/gnome.scm:4029 +#: gnu/packages/gnome.scm:4028 msgid "" "Libglade is a library that provides interfaces for loading\n" "graphical interfaces described in glade files and for accessing the\n" "widgets built in the loading process." msgstr "" -#: gnu/packages/gnome.scm:4071 +#: gnu/packages/gnome.scm:4070 msgid "" "The Bonobo UI library provides a number of user interface\n" "controls using the Bonobo component framework." msgstr "" -#: gnu/packages/gnome.scm:4098 +#: gnu/packages/gnome.scm:4097 msgid "" "Libwnck is the Window Navigator Construction Kit, a library for use in\n" "writing pagers, tasklists, and more generally applications that are dealing\n" @@ -6101,11 +6258,11 @@ msgid "" "Hints specification (EWMH)." msgstr "" -#: gnu/packages/gnome.scm:4148 +#: gnu/packages/gnome.scm:4147 msgid "A GLib/GTK+ set of document-centric objects and utilities." msgstr "" -#: gnu/packages/gnome.scm:4234 +#: gnu/packages/gnome.scm:4233 msgid "" "GNUmeric is a GNU spreadsheet application, running under GNOME. It is\n" "interoperable with other spreadsheet applications. It has a vast array of\n" @@ -6114,11 +6271,11 @@ msgid "" "engineering." msgstr "" -#: gnu/packages/gnome.scm:4290 +#: gnu/packages/gnome.scm:4289 msgid "Drawing is a basic image editor aiming at the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:4326 +#: gnu/packages/gnome.scm:4325 msgid "The default GNOME 3 themes (Adwaita and some accessibility themes)." msgstr "" @@ -6137,7 +6294,7 @@ msgid "" "targeting the GNOME stack simple." msgstr "" -#: gnu/packages/gnome.scm:4481 +#: gnu/packages/gnome.scm:4482 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, and a minimal sample application (vte) using that. Vte is mainly used in\n" @@ -6145,34 +6302,34 @@ msgid "" "editors, IDEs, etc." msgstr "" -#: gnu/packages/gnome.scm:4505 +#: gnu/packages/gnome.scm:4506 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, this fork provides additional functions exposed for keyboard text\n" "selection and URL hints." msgstr "" -#: gnu/packages/gnome.scm:4585 +#: gnu/packages/gnome.scm:4586 msgid "" "Vinagre is a remote display client supporting the VNC, SPICE\n" "and RDP protocols." msgstr "" -#: gnu/packages/gnome.scm:4631 +#: gnu/packages/gnome.scm:4633 msgid "" "Dconf is a low-level configuration system. Its main purpose\n" "is to provide a backend to GSettings on platforms that don't already have\n" "configuration storage systems." msgstr "" -#: gnu/packages/gnome.scm:4661 +#: gnu/packages/gnome.scm:4663 msgid "" "JSON-GLib is a library providing serialization and\n" "described by RFC 4627. It implements a full JSON parser and generator using\n" "GLib and GObject, and integrates JSON with GLib data types." msgstr "" -#: gnu/packages/gnome.scm:4760 +#: gnu/packages/gnome.scm:4762 msgid "" "LibXklavier is a library providing high-level API for X Keyboard\n" "Extension known as XKB. This library is intended to support XFree86 and other\n" @@ -6180,13 +6337,13 @@ msgid "" "indicators etc)." msgstr "" -#: gnu/packages/gnome.scm:4788 +#: gnu/packages/gnome.scm:4790 msgid "" "This package provides Python bindings to librsvg, the SVG rendering\n" "library." msgstr "" -#: gnu/packages/gnome.scm:4829 +#: gnu/packages/gnome.scm:4831 msgid "" "Glib-networking contains the implementations of certain GLib networking\n" "features that cannot be implemented directly in GLib itself because of their\n" @@ -6196,26 +6353,26 @@ msgid "" "from the GSettings schemas in gsettings-desktop-schemas." msgstr "" -#: gnu/packages/gnome.scm:4866 +#: gnu/packages/gnome.scm:4868 msgid "" "This library was designed to make it easier to access web services that\n" "claim to be \"RESTful\". It includes convenience wrappers for libsoup and\n" "libxml to ease remote use of the RESTful API." msgstr "" -#: gnu/packages/gnome.scm:4931 +#: gnu/packages/gnome.scm:4933 msgid "" "LibSoup is an HTTP client/server library for GNOME. It uses GObjects\n" "and the GLib main loop, to integrate well with GNOME applications." msgstr "" -#: gnu/packages/gnome.scm:5035 +#: gnu/packages/gnome.scm:5037 msgid "" "Libsecret is a GObject based library for storing and retrieving passwords\n" "and other secrets. It communicates with the \"Secret Service\" using DBus." msgstr "" -#: gnu/packages/gnome.scm:5074 +#: gnu/packages/gnome.scm:5076 msgid "" "Five or More is a game where you try to align\n" " five or more objects of the same color and shape causing them to disappear.\n" @@ -6223,19 +6380,19 @@ msgid "" " Try to last as long as possible." msgstr "" -#: gnu/packages/gnome.scm:5116 +#: gnu/packages/gnome.scm:5118 msgid "" "Mines (previously gnomine) is a puzzle game where you locate mines\n" "floating in an ocean using only your brain and a little bit of luck." msgstr "" -#: gnu/packages/gnome.scm:5157 +#: gnu/packages/gnome.scm:5159 msgid "" "MultiWriter can be used to write an ISO file to multiple USB devices at\n" "once." msgstr "" -#: gnu/packages/gnome.scm:5197 +#: gnu/packages/gnome.scm:5198 msgid "" "Sudoku is a Japanese logic game that exploded in popularity in 2005.\n" "GNOME Sudoku is meant to have an interface as simple and unobstrusive as\n" @@ -6243,7 +6400,7 @@ msgid "" "more fun." msgstr "" -#: gnu/packages/gnome.scm:5247 +#: gnu/packages/gnome.scm:5248 msgid "" "GNOME Terminal is a terminal emulator application for accessing a\n" "UNIX shell environment which can be used to run programs available on\n" @@ -6253,14 +6410,14 @@ msgid "" "keyboard shortcuts." msgstr "" -#: gnu/packages/gnome.scm:5319 +#: gnu/packages/gnome.scm:5320 msgid "" "Colord is a system service that makes it easy to manage,\n" "install and generate color profiles to accurately color manage input and\n" "output devices." msgstr "" -#: gnu/packages/gnome.scm:5390 +#: gnu/packages/gnome.scm:5391 msgid "" "Geoclue is a D-Bus service that provides location\n" "information. The primary goal of the Geoclue project is to make creating\n" @@ -6269,7 +6426,7 @@ msgid "" "permission from user." msgstr "" -#: gnu/packages/gnome.scm:5434 +#: gnu/packages/gnome.scm:5435 msgid "" "geocode-glib is a convenience library for geocoding (finding longitude,\n" "and latitude from an address) and reverse geocoding (finding an address from\n" @@ -6277,7 +6434,7 @@ msgid "" "faster results and to avoid unnecessary server load." msgstr "" -#: gnu/packages/gnome.scm:5510 +#: gnu/packages/gnome.scm:5511 msgid "" "UPower is an abstraction for enumerating power devices,\n" "listening to device events and querying history and statistics. Any\n" @@ -6285,13 +6442,13 @@ msgid "" "service via the system message bus." msgstr "" -#: gnu/packages/gnome.scm:5555 +#: gnu/packages/gnome.scm:5557 msgid "" "libgweather is a library to access weather information from online\n" "services for numerous locations." msgstr "" -#: gnu/packages/gnome.scm:5639 +#: gnu/packages/gnome.scm:5640 msgid "" "This package contains the daemon responsible for setting the various\n" "parameters of a GNOME session and the applications that run under it. It\n" @@ -6299,19 +6456,19 @@ msgid "" "settings, themes, mouse settings, and startup of other daemons." msgstr "" -#: gnu/packages/gnome.scm:5670 +#: gnu/packages/gnome.scm:5671 msgid "" "Totem-pl-parser is a GObjects-based library to parse and save\n" "playlists in a variety of formats." msgstr "" -#: gnu/packages/gnome.scm:5703 +#: gnu/packages/gnome.scm:5704 msgid "" "Aisleriot (also known as Solitaire or sol) is a collection of card games\n" "which are easy to play with the aid of a mouse." msgstr "" -#: gnu/packages/gnome.scm:5729 +#: gnu/packages/gnome.scm:5730 msgid "" "Amtk is the acronym for @acronym{Amtk, Actions Menus and Toolbars Kit}.\n" "It is a basic GtkUIManager replacement based on GAction. It is suitable for\n" @@ -6390,13 +6547,13 @@ msgid "" "discovery protocols." msgstr "" -#: gnu/packages/gnome.scm:6324 +#: gnu/packages/gnome.scm:6323 msgid "" "Totem is a simple yet featureful media player for GNOME\n" "which can read a large number of file formats." msgstr "" -#: gnu/packages/gnome.scm:6415 +#: gnu/packages/gnome.scm:6414 msgid "" "Rhythmbox is a music playing application for GNOME. It\n" "supports playlists, song ratings, and any codecs installed through gstreamer." @@ -6427,7 +6584,7 @@ msgid "" "part of udev-extras, then udev, then systemd. It's now a project on its own." msgstr "" -#: gnu/packages/gnome.scm:6611 +#: gnu/packages/gnome.scm:6610 msgid "" "GVFS is a userspace virtual file system designed to work with the I/O\n" "abstraction of GIO. It contains a GIO module that seamlessly adds GVFS\n" @@ -6438,7 +6595,7 @@ msgid "" "DAV, and others." msgstr "" -#: gnu/packages/gnome.scm:6652 +#: gnu/packages/gnome.scm:6651 msgid "" "GUsb is a GObject wrapper for libusb1 that makes it easy to do\n" "asynchronous control, bulk and interrupt transfers with proper cancellation\n" @@ -6446,7 +6603,7 @@ msgid "" "USB transfers with your high-level application or system daemon." msgstr "" -#: gnu/packages/gnome.scm:6706 +#: gnu/packages/gnome.scm:6705 msgid "" "Document Scanner is an easy-to-use application that lets you connect your\n" "scanner and quickly capture images and documents in an appropriate format. It\n" @@ -6454,25 +6611,25 @@ msgid "" "almost all of them." msgstr "" -#: gnu/packages/gnome.scm:6778 +#: gnu/packages/gnome.scm:6777 msgid "" "Eolie is a new web browser for GNOME. It features Firefox sync support,\n" "a secret password store, an adblocker, and a modern UI." msgstr "" -#: gnu/packages/gnome.scm:6855 +#: gnu/packages/gnome.scm:6854 msgid "" "Epiphany is a GNOME web browser targeted at non-technical users. Its\n" "principles are simplicity and standards compliance." msgstr "" -#: gnu/packages/gnome.scm:6914 +#: gnu/packages/gnome.scm:6913 msgid "" "D-Feet is a D-Bus debugger, which can be used to inspect D-Bus interfaces\n" "of running programs and invoke methods on those interfaces." msgstr "" -#: gnu/packages/gnome.scm:6944 +#: gnu/packages/gnome.scm:6943 msgid "" "Yelp-XSL is a collection of programs and data files to help\n" "you build, maintain, and distribute documentation. It provides XSLT stylesheets\n" @@ -6482,14 +6639,14 @@ msgid "" "jQuery.Syntax JavaScript libraries." msgstr "" -#: gnu/packages/gnome.scm:6983 +#: gnu/packages/gnome.scm:6982 msgid "" "Yelp is the help viewer in Gnome. It natively views Mallard, DocBook,\n" "man, info, and HTML documents. It can locate documents according to the\n" "freedesktop.org help system specification." msgstr "" -#: gnu/packages/gnome.scm:7013 +#: gnu/packages/gnome.scm:7012 msgid "" "Yelp-tools is a collection of scripts and build utilities to help create,\n" "manage, and publish documentation for Yelp and the web. Most of the heavy\n" @@ -6497,13 +6654,13 @@ msgid "" "wraps things up in a developer-friendly way." msgstr "" -#: gnu/packages/gnome.scm:7051 +#: gnu/packages/gnome.scm:7050 msgid "" "Libgee is a utility library providing GObject-based interfaces and\n" "classes for commonly used data structures." msgstr "" -#: gnu/packages/gnome.scm:7079 +#: gnu/packages/gnome.scm:7078 msgid "" "Gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. It\n" "allows for GNOME applications to easily inspect and update EXIF, IPTC, and XMP\n" @@ -6518,7 +6675,7 @@ msgid "" "share them with others via social networking and more." msgstr "" -#: gnu/packages/gnome.scm:7168 +#: gnu/packages/gnome.scm:7169 msgid "" "File Roller is an archive manager for the GNOME desktop\n" "environment that allows users to view, unpack, and create compressed archives\n" @@ -6531,25 +6688,25 @@ msgid "" "configuration program to choose applications starting on login." msgstr "" -#: gnu/packages/gnome.scm:7284 +#: gnu/packages/gnome.scm:7287 msgid "" "Gjs is a javascript binding for GNOME. It's mainly based on spidermonkey\n" "javascript engine and the GObject introspection framework." msgstr "" -#: gnu/packages/gnome.scm:7381 +#: gnu/packages/gnome.scm:7383 msgid "" "While aiming at simplicity and ease of use, gedit is a\n" "powerful general purpose text editor." msgstr "" -#: gnu/packages/gnome.scm:7405 +#: gnu/packages/gnome.scm:7407 msgid "" "Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you\n" "to display dialog boxes from the commandline and shell scripts." msgstr "" -#: gnu/packages/gnome.scm:7595 +#: gnu/packages/gnome.scm:7598 msgid "" "Mutter is a window and compositing manager that displays and manages your\n" "desktop via OpenGL. Mutter combines a sophisticated display engine using the\n" @@ -6557,7 +6714,7 @@ msgid "" "window manager." msgstr "" -#: gnu/packages/gnome.scm:7653 +#: gnu/packages/gnome.scm:7656 msgid "" "GNOME Online Accounts provides interfaces so that applications and\n" "libraries in GNOME can access the user's online accounts. It has providers\n" @@ -6565,20 +6722,20 @@ msgid "" "Microsoft Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos." msgstr "" -#: gnu/packages/gnome.scm:7740 +#: gnu/packages/gnome.scm:7743 msgid "" "This package provides a unified backend for programs that work with\n" "contacts, tasks, and calendar information. It was originally developed for\n" "Evolution (hence the name), but is now used by other packages as well." msgstr "" -#: gnu/packages/gnome.scm:7803 +#: gnu/packages/gnome.scm:7806 msgid "" "Caribou is an input assistive technology intended for switch and pointer\n" "users." msgstr "" -#: gnu/packages/gnome.scm:7953 +#: gnu/packages/gnome.scm:7958 msgid "" "NetworkManager is a system network service that manages your network\n" "devices and connections, attempting to keep active network connectivity when\n" @@ -6587,66 +6744,62 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:8009 +#: gnu/packages/gnome.scm:8014 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to virtual private networks (VPNs) via OpenVPN." msgstr "" -#: gnu/packages/gnome.scm:8059 +#: gnu/packages/gnome.scm:8064 msgid "" "Support for configuring virtual private networks based on VPNC.\n" "Compatible with Cisco VPN concentrators configured to use IPsec." msgstr "" -#: gnu/packages/gnome.scm:8106 +#: gnu/packages/gnome.scm:8111 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to @acronym{VPNs, virtual private networks} via OpenConnect, an open client for\n" "Cisco's AnyConnect SSL VPN." msgstr "" -#: gnu/packages/gnome.scm:8135 +#: gnu/packages/gnome.scm:8140 msgid "Database of broadband connection configuration." msgstr "" -#: gnu/packages/gnome.scm:8179 +#: gnu/packages/gnome.scm:8183 msgid "" "This package contains a systray applet for NetworkManager. It displays\n" "the available networks and allows users to easily switch between them." msgstr "" -#: gnu/packages/gnome.scm:8234 -#, fuzzy -#| msgid "" -#| "This package provides a dictionary for the Hunspell spell-checking\n" -#| "library." +#: gnu/packages/gnome.scm:8238 msgid "" "This package provides a C++ interface to the libxml2 XML parser\n" "library." msgstr "" -"Tento balík poskytuje slovník pre knižnicu na kontrolu pravopisu\n" -"Hunspell." +"Tento balík poskytuje C++ rozhranie pre knižnicu na vyhodnocovanie\n" +"XML jazyka libxml2." -#: gnu/packages/gnome.scm:8466 +#: gnu/packages/gnome.scm:8470 msgid "" "GNOME Display Manager is a system service that is responsible for\n" "providing graphical log-ins and managing local and remote displays." msgstr "" -#: gnu/packages/gnome.scm:8490 +#: gnu/packages/gnome.scm:8494 msgid "" "LibGTop is a library to get system specific data such as CPU and memory\n" "usage and information about running processes." msgstr "" -#: gnu/packages/gnome.scm:8525 +#: gnu/packages/gnome.scm:8528 msgid "" "This package contains tools for managing and manipulating Bluetooth\n" "devices using the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:8636 +#: gnu/packages/gnome.scm:8646 msgid "" "This package contains configuration applets for the GNOME desktop,\n" "allowing to set accessibility configuration, desktop fonts, keyboard and mouse\n" @@ -6654,13 +6807,13 @@ msgid "" "properties, screen resolution, and other GNOME parameters." msgstr "" -#: gnu/packages/gnome.scm:8802 +#: gnu/packages/gnome.scm:8811 msgid "" "GNOME Shell provides core user interface functions for the GNOME desktop,\n" "like switching to windows and launching applications." msgstr "" -#: gnu/packages/gnome.scm:8845 +#: gnu/packages/gnome.scm:8858 msgid "" "GTK-VNC is a project providing client side APIs for the RFB\n" "protocol / VNC remote desktop technology. It is built using coroutines allowing\n" @@ -6668,13 +6821,13 @@ msgid "" "core C library, and bindings for Python (PyGTK)." msgstr "" -#: gnu/packages/gnome.scm:8875 +#: gnu/packages/gnome.scm:8888 msgid "" "GNOME Autoar is a library which makes creating and extracting archives\n" "easy, safe, and automatic." msgstr "" -#: gnu/packages/gnome.scm:8945 +#: gnu/packages/gnome.scm:8959 msgid "" "Tracker is a search engine and triplestore for desktop, embedded and mobile.\n" "\n" @@ -6697,21 +6850,21 @@ msgid "" "endpoint and it understands SPARQL." msgstr "" -#: gnu/packages/gnome.scm:9074 +#: gnu/packages/gnome.scm:9088 msgid "" "Tracker is an advanced framework for first class objects with associated\n" "metadata and tags. It provides a one stop solution for all metadata, tags,\n" "shared object databases, search tools and indexing." msgstr "" -#: gnu/packages/gnome.scm:9167 +#: gnu/packages/gnome.scm:9185 msgid "" "Nautilus (Files) is a file manager designed to fit the GNOME desktop\n" "design and behaviour, giving the user a simple way to navigate and manage its\n" "files." msgstr "" -#: gnu/packages/gnome.scm:9201 +#: gnu/packages/gnome.scm:9220 msgid "" "Baobab (Disk Usage Analyzer) is a graphical application to analyse disk\n" "usage in the GNOME desktop environment. It can easily scan device volumes or\n" @@ -6719,7 +6872,7 @@ msgid "" "is complete it provides a graphical representation of each selected folder." msgstr "" -#: gnu/packages/gnome.scm:9227 +#: gnu/packages/gnome.scm:9245 msgid "" "GNOME backgrounds package contains a collection of graphics files which\n" "can be used as backgrounds in the GNOME Desktop environment. Additionally,\n" @@ -6727,21 +6880,21 @@ msgid "" "can add your own files to the collection." msgstr "" -#: gnu/packages/gnome.scm:9272 +#: gnu/packages/gnome.scm:9290 msgid "" "GNOME Screenshot is a utility used for taking screenshots of the entire\n" "screen, a window or a user defined area of the screen, with optional\n" "beautifying border effects." msgstr "" -#: gnu/packages/gnome.scm:9304 +#: gnu/packages/gnome.scm:9320 msgid "" "Dconf-editor is a graphical tool for browsing and editing the dconf\n" "configuration system for GNOME. It allows users to configure desktop\n" "software that do not provide their own configuration interface." msgstr "" -#: gnu/packages/gnome.scm:9334 +#: gnu/packages/gnome.scm:9350 msgid "" "Given many installed packages which might handle a given MIME type, a\n" "user running the GNOME desktop probably has some preferences: for example,\n" @@ -6750,32 +6903,32 @@ msgid "" "associations for GNOME." msgstr "" -#: gnu/packages/gnome.scm:9366 +#: gnu/packages/gnome.scm:9382 msgid "GoVirt is a GObject wrapper for the oVirt REST API." msgstr "" -#: gnu/packages/gnome.scm:9424 +#: gnu/packages/gnome.scm:9439 msgid "" "GNOME Weather is a small application that allows you to\n" "monitor the current weather conditions for your city, or anywhere in the\n" "world." msgstr "" -#: gnu/packages/gnome.scm:9528 +#: gnu/packages/gnome.scm:9543 msgid "" "GNOME is the graphical desktop for GNU. It includes a wide variety of\n" "applications for browsing the web, editing text and images, creating\n" "documents and diagrams, playing media, scanning, and much more." msgstr "" -#: gnu/packages/gnome.scm:9574 +#: gnu/packages/gnome.scm:9589 msgid "" "Byzanz is a simple desktop recording program with a\n" "command-line interface. It can record part or all of an X display for a\n" "specified duration and save it as a GIF encoded animated image file." msgstr "" -#: gnu/packages/gnome.scm:9634 +#: gnu/packages/gnome.scm:9651 msgid "" "Authenticator is a two-factor authentication (2FA) application built for\n" "the GNOME desktop environment.\n" @@ -6792,44 +6945,44 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/gnome.scm:9669 +#: gnu/packages/gnome.scm:9686 msgid "" "GSound is a small library for playing system sounds. It's designed to be\n" "used via GObject Introspection, and is a thin wrapper around the libcanberra C\n" "library." msgstr "" -#: gnu/packages/gnome.scm:9694 +#: gnu/packages/gnome.scm:9711 msgid "" "Libzapojit is a GLib-based library for accessing online service APIs of\n" "Microsoft SkyDrive and Hotmail, using their REST protocols." msgstr "" -#: gnu/packages/gnome.scm:9739 +#: gnu/packages/gnome.scm:9756 msgid "" "GNOME Clocks is a simple clocks application designed to fit the GNOME\n" "desktop. It supports world clock, stop watch, alarms, and count down timer." msgstr "" -#: gnu/packages/gnome.scm:9787 +#: gnu/packages/gnome.scm:9803 msgid "" "GNOME Calendar is a simple calendar application designed to fit the GNOME\n" "desktop. It supports multiple calendars, month, week and year view." msgstr "" -#: gnu/packages/gnome.scm:9838 +#: gnu/packages/gnome.scm:9860 msgid "" -"GNOME To Do is a simplistic personal task manager designed to perfectly\n" -"fit the GNOME desktop." +"GNOME To Do is a simplistic personal task manager designed\n" +"to perfectly fit the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:9877 +#: gnu/packages/gnome.scm:9899 msgid "" "GNOME Dictionary can look for the definition or translation of a word in\n" "existing databases over the internet." msgstr "" -#: gnu/packages/gnome.scm:9943 +#: gnu/packages/gnome.scm:9964 msgid "" "GNOME Tweaks allows adjusting advanced configuration settings in\n" "GNOME 3. This includes things like the fonts used in user interface elements,\n" @@ -6837,13 +6990,13 @@ msgid "" "GNOME Shell appearance and extension, etc." msgstr "" -#: gnu/packages/gnome.scm:9971 +#: gnu/packages/gnome.scm:9992 msgid "" "GNOME Shell extensions modify and extend GNOME Shell\n" "functionality and behavior." msgstr "" -#: gnu/packages/gnome.scm:10015 +#: gnu/packages/gnome.scm:10036 msgid "" "Libfolks is a library that aggregates information about people\n" "from multiple sources (e.g., Telepathy connection managers for IM contacts,\n" @@ -6852,19 +7005,19 @@ msgid "" "compiled." msgstr "" -#: gnu/packages/gnome.scm:10056 +#: gnu/packages/gnome.scm:10077 msgid "" "This library allows you to use the Facebook API from\n" "GLib/GObject code." msgstr "" -#: gnu/packages/gnome.scm:10083 +#: gnu/packages/gnome.scm:10104 msgid "" "Libgnomekbd is a keyboard configuration library for the GNOME desktop\n" "environment, which can notably display keyboard layouts." msgstr "" -#: gnu/packages/gnome.scm:10119 +#: gnu/packages/gnome.scm:10140 msgid "" "Libunique is a library for writing single instance applications. If you\n" "launch a single instance application twice, the second instance will either just\n" @@ -6874,20 +7027,20 @@ msgid "" "handling the startup notification side." msgstr "" -#: gnu/packages/gnome.scm:10168 +#: gnu/packages/gnome.scm:10190 msgid "" "Calculator is an application that solves mathematical equations and\n" "is suitable as a default application in a Desktop environment." msgstr "" -#: gnu/packages/gnome.scm:10194 +#: gnu/packages/gnome.scm:10216 msgid "" "Xpad is a sticky note that strives to be simple, fault tolerant,\n" "and customizable. Xpad consists of independent pad windows, each is\n" "basically a text box in which notes can be written." msgstr "" -#: gnu/packages/gnome.scm:10267 +#: gnu/packages/gnome.scm:10289 msgid "" "This program allows you to browse through all the available Unicode\n" "characters and categories for the installed fonts, and to examine their\n" @@ -6895,20 +7048,20 @@ msgid "" "only know by its Unicode name or code point." msgstr "" -#: gnu/packages/gnome.scm:10299 +#: gnu/packages/gnome.scm:10321 msgid "" "Color Picker is a simple color chooser written in GTK3. It\n" "supports both X and Wayland display servers." msgstr "" -#: gnu/packages/gnome.scm:10322 +#: gnu/packages/gnome.scm:10344 msgid "" "Bluefish is an editor aimed at programmers and web developers,\n" "with many options to write web sites, scripts and other code.\n" "Bluefish supports many programming and markup languages." msgstr "" -#: gnu/packages/gnome.scm:10363 +#: gnu/packages/gnome.scm:10385 msgid "" "GNOME System Monitor is a GNOME process viewer and system monitor with\n" "an attractive, easy-to-use interface. It has features, such as a tree view\n" @@ -6917,27 +7070,27 @@ msgid "" "kill/reinice processes." msgstr "" -#: gnu/packages/gnome.scm:10405 +#: gnu/packages/gnome.scm:10427 msgid "" "This package includes a python client library for the AT-SPI D-Bus\n" "accessibility infrastructure." msgstr "" -#: gnu/packages/gnome.scm:10475 +#: gnu/packages/gnome.scm:10495 msgid "" "Orca is a screen reader that provides access to the graphical desktop\n" "via speech and refreshable braille. Orca works with applications and toolkits\n" "that support the Assistive Technology Service Provider Interface (AT-SPI)." msgstr "" -#: gnu/packages/gnome.scm:10529 +#: gnu/packages/gnome.scm:10549 msgid "" "gspell provides a flexible API to add spell-checking to a GTK+\n" "application. It provides a GObject API, spell-checking to text entries and\n" "text views, and buttons to choose the language." msgstr "" -#: gnu/packages/gnome.scm:10571 +#: gnu/packages/gnome.scm:10591 msgid "" "GNOME Planner is a project management tool based on the Work Breakdown\n" "Structure (WBS). Its goal is to enable you to easily plan projects. Based on\n" @@ -6949,7 +7102,7 @@ msgid "" "views can be printed as PDF or PostScript files, or exported to HTML." msgstr "" -#: gnu/packages/gnome.scm:10644 +#: gnu/packages/gnome.scm:10664 msgid "" "Lollypop is a music player designed to play well with GNOME desktop.\n" "Lollypop plays audio formats such as mp3, mp4, ogg and flac and gets information\n" @@ -6957,26 +7110,26 @@ msgid "" "automatically and it can stream songs from online music services and charts." msgstr "" -#: gnu/packages/gnome.scm:10668 +#: gnu/packages/gnome.scm:10688 msgid "" "A collection of GStreamer video filters and effects to be used in\n" "photo-booth-like software, such as Cheese." msgstr "" -#: gnu/packages/gnome.scm:10747 +#: gnu/packages/gnome.scm:10766 msgid "" "Cheese uses your webcam to take photos and videos. Cheese can also\n" "apply fancy special effects and lets you share the fun with others." msgstr "" -#: gnu/packages/gnome.scm:10801 +#: gnu/packages/gnome.scm:10820 msgid "" "Password Safe is a password manager which makes use of the KeePass v4\n" "format. It integrates perfectly with the GNOME desktop and provides an easy\n" "and uncluttered interface for the management of password databases." msgstr "" -#: gnu/packages/gnome.scm:10836 +#: gnu/packages/gnome.scm:10855 msgid "" "Sound Juicer extracts audio from compact discs and convert it\n" "into audio files that a personal computer or digital audio player can play.\n" @@ -6984,27 +7137,27 @@ msgid "" "mp3, Ogg Vorbis and FLAC" msgstr "" -#: gnu/packages/gnome.scm:10888 +#: gnu/packages/gnome.scm:10907 msgid "" "SoundConverter supports converting between many audio formats including\n" "Opus, Ogg Vorbis, FLAC and more. It supports parallel conversion, and\n" "configurable file renaming." msgstr "" -#: gnu/packages/gnome.scm:10936 +#: gnu/packages/gnome.scm:10955 msgid "" "Workrave is a program that assists in the recovery and prevention of\n" "repetitive strain injury (@dfn{RSI}). The program frequently alerts you to take\n" "micro-pauses and rest breaks, and restricts you to your daily limit." msgstr "" -#: gnu/packages/gnome.scm:10977 +#: gnu/packages/gnome.scm:10996 msgid "" "The GHex program can view and edit files in two ways:\n" "hexadecimal or ASCII. It is useful for editing binary files in general." msgstr "" -#: gnu/packages/gnome.scm:11013 +#: gnu/packages/gnome.scm:11032 msgid "" "The libdazzle library is a companion library to GObject and\n" "Gtk+. It provides various features that the authors wish were in the\n" @@ -7013,40 +7166,40 @@ msgid "" "generic enough to work for everyone." msgstr "" -#: gnu/packages/gnome.scm:11080 +#: gnu/packages/gnome.scm:11099 msgid "" "Evolution is a personal information management application\n" "that provides integrated mail, calendaring and address book\n" "functionality." msgstr "" -#: gnu/packages/gnome.scm:11140 +#: gnu/packages/gnome.scm:11154 msgid "" "GThumb is an image viewer, browser, organizer, editor and\n" "advanced image management tool" msgstr "" -#: gnu/packages/gnome.scm:11213 +#: gnu/packages/gnome.scm:11227 msgid "" "Terminator allows you to run multiple GNOME terminals in a grid and\n" "tabs, and it supports drag and drop re-ordering of terminals." msgstr "" -#: gnu/packages/gnome.scm:11274 +#: gnu/packages/gnome.scm:11288 msgid "" "The aim of the handy library is to help with developing user\n" "interfaces for mobile devices using GTK+. It provides responsive GTK+ widgets\n" "for usage on small and big screens." msgstr "" -#: gnu/packages/gnome.scm:11323 +#: gnu/packages/gnome.scm:11337 msgid "" "libgit2-glib is a GLib wrapper library around the libgit2 Git\n" "access library. It only implements the core plumbing functions, not really the\n" "higher level porcelain stuff." msgstr "" -#: gnu/packages/gnome.scm:11402 +#: gnu/packages/gnome.scm:11415 msgid "" "gitg is a graphical user interface for git. It aims at being a small,\n" "fast and convenient tool to visualize the history of git repositories.\n" @@ -7054,21 +7207,21 @@ msgid "" "repository and commit your work." msgstr "" -#: gnu/packages/gnome.scm:11474 +#: gnu/packages/gnome.scm:11487 msgid "" "Gamin is a file and directory monitoring system defined to be a subset\n" "of the FAM (File Alteration Monitor) system. This is a service provided by a\n" "library which detects when a file or a directory has been modified." msgstr "" -#: gnu/packages/gnome.scm:11508 +#: gnu/packages/gnome.scm:11521 msgid "" "GNOME Mahjongg is a game based on the classic Chinese\n" -"tile-matching game Mahjong. It features multiple board layouts, tile themes,\n" +"tile-matching game Mahjongg. It features multiple board layouts, tile themes,\n" "and a high score table." msgstr "" -#: gnu/packages/gnome.scm:11546 +#: gnu/packages/gnome.scm:11559 msgid "" "This package provides themes and related elements that don't\n" "really fit in other upstream packages. It offers legacy support for GTK+ 2\n" @@ -7076,19 +7229,19 @@ msgid "" "index files needed for Adwaita to be used outside of GNOME." msgstr "" -#: gnu/packages/gnome.scm:11585 +#: gnu/packages/gnome.scm:11605 msgid "" -"Gnote is a note-taking application written for the GNOME desktop\n" -"environment." +"Gnote is a note-taking application written for the GNOME\n" +"desktop environment." msgstr "" -#: gnu/packages/gnome.scm:11647 +#: gnu/packages/gnome.scm:11664 msgid "" "Polari is a simple Internet Relay Chat (IRC) client that is designed to\n" "integrate seamlessly with the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:11706 +#: gnu/packages/gnome.scm:11723 msgid "" "GNOME Boxes is a simple application to view, access, and\n" "manage remote and virtual systems. Note that this application requires the\n" @@ -7097,7 +7250,7 @@ msgid "" "these services on the Guix System." msgstr "" -#: gnu/packages/gnome.scm:11806 +#: gnu/packages/gnome.scm:11823 msgid "" "Geary collects related messages together into conversations,\n" "making it easy to find and follow your discussions. Full-text and keyword\n" @@ -7109,14 +7262,14 @@ msgid "" "to." msgstr "" -#: gnu/packages/gnome.scm:11851 +#: gnu/packages/gnome.scm:11868 msgid "" "gLabels is a program for creating labels and business cards. It is\n" "designed to work with various laser/ink-jet peel-off label and business\n" "card sheets that you’ll find at most office supply stores." msgstr "" -#: gnu/packages/gnome.scm:11892 +#: gnu/packages/gnome.scm:11909 msgid "" "GNOME LaTeX is a LaTeX editor for the GNOME desktop. It has features\n" "such as build tools, completion of LaTeX commands, structure navigation,\n" @@ -7124,19 +7277,19 @@ msgid "" "and toolbars." msgstr "" -#: gnu/packages/gnome.scm:11951 +#: gnu/packages/gnome.scm:11968 msgid "" "Setzer is a simple yet full-featured LaTeX editor written in Python with\n" "GTK+. It integrates well with the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:12017 +#: gnu/packages/gnome.scm:12034 msgid "" "Apostrophe is a GTK+ based distraction-free Markdown editor.\n" "It uses pandoc as back-end for parsing Markdown." msgstr "" -#: gnu/packages/gnome.scm:12070 +#: gnu/packages/gnome.scm:12088 msgid "" "libratbag provides @command{ratbagd}, a DBus daemon to\n" "configure input devices, mainly gaming mice. The daemon provides a generic\n" @@ -7153,7 +7306,7 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12140 +#: gnu/packages/gnome.scm:12156 msgid "" "Piper is a GTK+ application for configuring gaming mice with\n" "onboard configuration for key bindings via libratbag. Piper requires\n" @@ -7165,14 +7318,14 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12202 +#: gnu/packages/gnome.scm:12218 msgid "" "Parlatype is an audio player for the GNOME desktop\n" "environment. Its main purpose is the manual transcription of spoken\n" "audio files." msgstr "" -#: gnu/packages/gnome.scm:12228 +#: gnu/packages/gnome.scm:12244 msgid "" "Jsonrpc-GLib is a library to communicate with JSON-RPC based\n" "peers in either a synchronous or asynchronous fashion. It also allows\n" @@ -7181,14 +7334,14 @@ msgid "" "host to avoid parser overhead and memory-allocator fragmentation." msgstr "" -#: gnu/packages/gnome.scm:12256 +#: gnu/packages/gnome.scm:12272 msgid "" "Feedbackd provides a DBus daemon to act on events to provide\n" "haptic, visual and audio feedback. It offers the libfeedbackd library and\n" "GObject introspection bindings." msgstr "" -#: gnu/packages/gnome.scm:12305 +#: gnu/packages/gnome.scm:12321 msgid "" "Sysprof performs detailed, accurate, and fast CPU profiling of an entire\n" "GNU/Linux system including the kernel and all user-space applications. This\n" @@ -7198,21 +7351,21 @@ msgid "" "libraries. Applications do not need to be recompiled--or even restarted." msgstr "" -#: gnu/packages/gnome.scm:12388 +#: gnu/packages/gnome.scm:12406 msgid "" -"Builder aims to be an integrated development\n" -"environment (IDE) for writing GNOME-based software. It features fuzzy search,\n" -"auto-completion, a mini code map, documentation browsing, Git integration, an\n" -"integrated profiler via Sysprof, debugging support, and more." +"Builder aims to be an integrated development environment (IDE) for\n" +"writing GNOME-based software. It features fuzzy search, auto-completion,\n" +"a mini code map, documentation browsing, Git integration, an integrated\n" +"profiler via Sysprof, debugging support, and more." msgstr "" -#: gnu/packages/gnome.scm:12461 +#: gnu/packages/gnome.scm:12480 msgid "" "Komikku is an online/offline manga reader for GNOME,\n" "developed with the aim of being used with the Librem 5 phone." msgstr "" -#: gnu/packages/gnome.scm:12545 +#: gnu/packages/gnome.scm:12564 msgid "" "GNU Data Access (GDA) is an attempt to provide uniform access to\n" "different kinds of data sources (databases, information servers, mail spools,\n" @@ -7220,7 +7373,7 @@ msgid "" "your data." msgstr "" -#: gnu/packages/gnome.scm:12596 +#: gnu/packages/gnome.scm:12614 msgid "" "gtranslator is a quite comfortable gettext po/po.gz/(g)mo files editor\n" "for the GNOME 3.x platform with many features. It aims to be a very complete\n" @@ -7228,32 +7381,36 @@ msgid "" "world." msgstr "" -#: gnu/packages/gnome.scm:12662 +#: gnu/packages/gnome.scm:12680 msgid "" "OCRFeeder is a complete Optical Character Recognition and\n" "Document Analysis and Recognition program." msgstr "" -#: gnu/packages/gnome.scm:12702 +#: gnu/packages/gnome.scm:12720 msgid "" "@code{libadwaita} offers widgets and objects to build GNOME\n" "applications scaling from desktop workstations to mobile phones. It is the\n" "successor of @code{libhandy} for GTK4." msgstr "" -#: gnu/packages/gnome.scm:12727 +#: gnu/packages/gnome.scm:12745 msgid "" "@code{gnome-power-manager} is a tool for viewing present and\n" "historical battery usage and related statistics." msgstr "" +#: gnu/packages/gnome.scm:12789 +msgid "This package provides a graphical file manager." +msgstr "Tento balík poskytuje správcu súborov s grafickým používateľským rozhraním." + #: gnu/packages/gnuzilla.scm:155 msgid "" "SpiderMonkey is Mozilla's JavaScript engine written\n" "in C/C++." msgstr "" -#: gnu/packages/gnuzilla.scm:1314 +#: gnu/packages/gnuzilla.scm:1315 msgid "" "IceCat is the GNU version of the Firefox browser. It is entirely free\n" "software, which does not recommend non-free plugins and addons. It also\n" @@ -7266,19 +7423,19 @@ msgid "" "standards of the IceCat project." msgstr "" -#: gnu/packages/gnuzilla.scm:1642 +#: gnu/packages/gnuzilla.scm:1648 msgid "" "This package provides an email client built based on Mozilla\n" "Thunderbird. It supports email, news feeds, chat, calendar and contacts." msgstr "" -#: gnu/packages/gnuzilla.scm:1717 +#: gnu/packages/gnuzilla.scm:1723 msgid "" "Firefox Decrypt is a tool to extract passwords from\n" "Mozilla (Firefox, Waterfox, Thunderbird, SeaMonkey) profiles." msgstr "" -#: gnu/packages/gnuzilla.scm:1754 +#: gnu/packages/gnuzilla.scm:1760 msgid "" "@code{lz4json} is a little utility to unpack lz4json files as generated\n" "by Firefox's bookmark backups and session restore. This is a different format\n" @@ -7292,7 +7449,7 @@ msgid "" "tools have full access to view and control running applications." msgstr "" -#: gnu/packages/gtk.scm:215 +#: gnu/packages/gtk.scm:212 msgid "" "Cairo is a 2D graphics library with support for multiple output\n" "devices. Currently supported output targets include the X Window System (via\n" @@ -7300,24 +7457,24 @@ msgid "" "output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB." msgstr "" -#: gnu/packages/gtk.scm:277 +#: gnu/packages/gtk.scm:274 msgid "HarfBuzz is an OpenType text shaping engine." msgstr "" -#: gnu/packages/gtk.scm:320 +#: gnu/packages/gtk.scm:317 msgid "" "Libdatrie is an implementation of double-array structure for\n" "representing trie. Trie is a kind of digital search tree." msgstr "" -#: gnu/packages/gtk.scm:352 +#: gnu/packages/gtk.scm:349 msgid "" "LibThai is a set of Thai language support routines aimed to\n" "ease developers’ tasks to incorporate Thai language support in their\n" "applications." msgstr "" -#: gnu/packages/gtk.scm:407 +#: gnu/packages/gtk.scm:404 msgid "" "Pango is a library for laying out and rendering of text, with\n" "an emphasis on internationalization. Pango can be used anywhere that text\n" @@ -7326,21 +7483,21 @@ msgid "" "handling for GTK+-2.x." msgstr "" -#: gnu/packages/gtk.scm:461 +#: gnu/packages/gtk.scm:458 msgid "" "Pangox was a X backend to pango. It is now obsolete and no\n" "longer provided by recent pango releases. pangox-compat provides the\n" "functions which were removed." msgstr "" -#: gnu/packages/gtk.scm:498 +#: gnu/packages/gtk.scm:495 msgid "" "Ganv is an interactive GTK+ widget for interactive “boxes and lines” or\n" "graph-like environments, e.g. modular synths or finite state machine\n" "diagrams." msgstr "" -#: gnu/packages/gtk.scm:554 +#: gnu/packages/gtk.scm:551 msgid "" "GtkSourceView is a portable C library that extends the standard GTK+\n" "framework for multiline text editing with support for configurable syntax\n" @@ -7348,33 +7505,33 @@ msgid "" "printing and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:602 +#: gnu/packages/gtk.scm:599 msgid "" "GtkSourceView is a text widget that extends the standard\n" "GTK+ text widget GtkTextView. It improves GtkTextView by implementing syntax\n" "highlighting and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:698 +#: gnu/packages/gtk.scm:695 msgid "" "GdkPixbuf is a library that loads image data in various\n" "formats and stores it as linear buffers in memory. The buffers can then be\n" "scaled, composited, modified, saved, or rendered." msgstr "" -#: gnu/packages/gtk.scm:746 +#: gnu/packages/gtk.scm:743 msgid "" "The Assistive Technology Service Provider Interface, core components,\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:827 +#: gnu/packages/gtk.scm:824 msgid "" "The Assistive Technology Service Provider Interface\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:921 +#: gnu/packages/gtk.scm:918 msgid "" "GTK+, or the GIMP Toolkit, is a multi-platform toolkit for creating\n" "graphical user interfaces. Offering a complete set of widgets, GTK+ is\n" @@ -7382,14 +7539,14 @@ msgid "" "application suites." msgstr "" -#: gnu/packages/gtk.scm:1234 +#: gnu/packages/gtk.scm:1238 msgid "" "GTK is a multi-platform toolkit for creating graphical user\n" "interfaces. Offering a complete set of widgets, GTK is suitable for projects\n" "ranging from small one-off tools to complete application suites." msgstr "" -#: gnu/packages/gtk.scm:1308 +#: gnu/packages/gtk.scm:1312 msgid "" "Guile-Cairo wraps the Cairo graphics library for Guile Scheme.\n" "Guile-Cairo is complete, wrapping almost all of the Cairo API. It is API\n" @@ -7399,13 +7556,13 @@ msgid "" "exceptions, macros, and a dynamic programming environment." msgstr "" -#: gnu/packages/gtk.scm:1389 +#: gnu/packages/gtk.scm:1393 msgid "" "Guile-RSVG wraps the RSVG library for Guile, allowing you to render SVG\n" "images onto Cairo surfaces." msgstr "" -#: gnu/packages/gtk.scm:1456 +#: gnu/packages/gtk.scm:1460 msgid "" "Guile-Present defines a declarative vocabulary for presentations,\n" "together with tools to render presentation documents as SVG or PDF.\n" @@ -7414,29 +7571,29 @@ msgid "" "documents." msgstr "" -#: gnu/packages/gtk.scm:1522 +#: gnu/packages/gtk.scm:1526 msgid "" "Includes guile-clutter, guile-gnome-gstreamer,\n" "guile-gnome-platform (GNOME developer libraries), and guile-gtksourceview." msgstr "" -#: gnu/packages/gtk.scm:1578 +#: gnu/packages/gtk.scm:1582 msgid "" "Cairomm provides a C++ programming interface to the Cairo 2D graphics\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1642 +#: gnu/packages/gtk.scm:1647 msgid "" "Pangomm provides a C++ programming interface to the Pango text rendering\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1704 +#: gnu/packages/gtk.scm:1709 msgid "ATKmm is the C++ binding for the ATK library." msgstr "" -#: gnu/packages/gtk.scm:1784 +#: gnu/packages/gtk.scm:1790 msgid "" "GTKmm is the official C++ interface for the popular GUI\n" "library GTK+. Highlights include typesafe callbacks, and a comprehensive set\n" @@ -7665,7 +7822,7 @@ msgid "" "excellent pavucontrol." msgstr "" -#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:238 +#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:241 msgid "" "Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" "official extension language of the GNU system. It is an implementation of\n" @@ -7674,14 +7831,14 @@ msgid "" "without requiring the source code to be rewritten." msgstr "" -#: gnu/packages/guile.scm:502 +#: gnu/packages/guile.scm:506 msgid "" "This module provides line editing support via the Readline library for\n" "GNU@tie{}Guile. Use the @code{(ice-9 readline)} module and call its\n" "@code{activate-readline} procedure to enable it." msgstr "" -#: gnu/packages/guile.scm:604 +#: gnu/packages/guile.scm:608 msgid "" "Guile-JSON supports parsing and building JSON documents according to the\n" "specification. These are the main features:\n" @@ -7694,17 +7851,17 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/guile.scm:701 +#: gnu/packages/guile.scm:705 msgid "" "Guile bindings to the GDBM key-value storage system, using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:730 +#: gnu/packages/guile.scm:734 msgid "This package provides Guile bindings to the SQLite database system." msgstr "" -#: gnu/packages/guile.scm:769 +#: gnu/packages/guile.scm:773 msgid "" "Guile bytestructures offers a system imitating the type system\n" "of the C programming language, to be used on bytevectors. C's type\n" @@ -7713,33 +7870,33 @@ msgid "" "type system, elevating types to first-class status." msgstr "" -#: gnu/packages/guile.scm:810 +#: gnu/packages/guile.scm:814 msgid "" "This package provides Guile bindings to libgit2, a library to\n" "manipulate repositories of the Git version control system." msgstr "" -#: gnu/packages/guile.scm:846 +#: gnu/packages/guile.scm:850 msgid "" "This package provides Guile bindings for zlib, a lossless\n" "data-compression library. The bindings are written in pure Scheme by using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:877 +#: gnu/packages/guile.scm:881 msgid "" "This package provides Guile bindings for lzlib, a C library for\n" "in-memory LZMA compression and decompression. The bindings are written in\n" "pure Scheme by using Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:904 +#: gnu/packages/guile.scm:908 msgid "" "This package provides a GNU Guile interface to the zstd (``zstandard'')\n" "compression library." msgstr "" -#: gnu/packages/guile.scm:926 +#: gnu/packages/guile.scm:930 msgid "" "Guile-LZMA is a Guile wrapper for the liblzma (XZ)\n" "library. It exposes an interface similar to other Guile compression\n" @@ -8326,7 +8483,7 @@ msgid "" "It supports JPEG, PNG and GIF formats." msgstr "" -#: gnu/packages/image-viewers.scm:640 +#: gnu/packages/image-viewers.scm:643 msgid "" "Luminance HDR (formerly QtPFSGui) is a graphical user interface\n" "application that aims to provide a workflow for high dynamic range (HDR)\n" @@ -8342,7 +8499,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:735 +#: gnu/packages/image-viewers.scm:738 msgid "" "MComix is a customizable image viewer that specializes as\n" "a comic and manga reader. It supports a variety of container formats\n" @@ -8351,7 +8508,7 @@ msgid "" "For PDF support, install the @emph{mupdf} package." msgstr "" -#: gnu/packages/image-viewers.scm:775 +#: gnu/packages/image-viewers.scm:778 msgid "" "qView is a Qt image viewer designed with visually\n" "minimalism and usability in mind. Its features include animated GIF\n" @@ -8359,14 +8516,14 @@ msgid "" "preloading." msgstr "" -#: gnu/packages/image-viewers.scm:799 +#: gnu/packages/image-viewers.scm:802 msgid "" "Chafa is a command-line utility that converts all kinds of images,\n" "including animated GIFs, into ANSI/Unicode character output that can be\n" "displayed in a terminal." msgstr "" -#: gnu/packages/image-viewers.scm:847 +#: gnu/packages/image-viewers.scm:850 msgid "" "@code{imv} is a command line image viewer intended for use\n" "with tiling window managers. Features include:\n" @@ -8388,7 +8545,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:924 +#: gnu/packages/image-viewers.scm:927 msgid "" "Quick Image Viewer is a small and fast GDK/Imlib2 image viewer.\n" "Features include zoom, maxpect, scale down, fullscreen, slideshow, delete,\n" @@ -8397,7 +8554,7 @@ msgid "" "to set X desktop background." msgstr "" -#: gnu/packages/image-viewers.scm:968 +#: gnu/packages/image-viewers.scm:971 msgid "" "pqiv is a GTK-3 based command-line image viewer with a minimal UI.\n" "It is highly customizable, can be fully controlled from scripts, and has\n" @@ -8405,7 +8562,7 @@ msgid "" "archives." msgstr "" -#: gnu/packages/image-viewers.scm:1025 +#: gnu/packages/image-viewers.scm:1028 msgid "" "Nomacs is a simple to use image lounge featuring\n" "semi-transparent widgets that display additional information such as metadata,\n" @@ -8418,7 +8575,7 @@ msgid "" "synchronization of multiple instances." msgstr "" -#: gnu/packages/image-viewers.scm:1070 +#: gnu/packages/image-viewers.scm:1073 msgid "xzgv is a fast image viewer that provides extensive keyboard support." msgstr "" @@ -8681,17 +8838,17 @@ msgid "" "Math for editing mathematics." msgstr "" -#: gnu/packages/linux.scm:604 +#: gnu/packages/linux.scm:625 msgid "Headers of the Linux-Libre kernel." msgstr "" -#: gnu/packages/linux.scm:905 +#: gnu/packages/linux.scm:935 msgid "" "GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.\n" "It has been modified to remove all non-free binary blobs." msgstr "" -#: gnu/packages/linux.scm:1215 +#: gnu/packages/linux.scm:1252 msgid "" "This simple Linux kernel module allows calls from user space to any\n" "@acronym{ACPI, Advanced Configuration and Power Interface} method provided by\n" @@ -8703,7 +8860,7 @@ msgid "" "and should be used with caution, especially on untested models." msgstr "" -#: gnu/packages/linux.scm:1283 +#: gnu/packages/linux.scm:1320 msgid "" "CoreFreq is a CPU monitor that reports low-level processor settings and\n" "performance data with notably high precision by using a loadable Linux kernel\n" @@ -8734,7 +8891,7 @@ msgid "" "@file{README.md} before loading it." msgstr "" -#: gnu/packages/linux.scm:1332 +#: gnu/packages/linux.scm:1369 msgid "" "This is the Linux kernel @acronym{ACPI, Advanced Configuration and Power\n" "Interface} platform driver for the @acronym{EC, Embedded Controller} firmware\n" @@ -8743,13 +8900,13 @@ msgid "" "and the notification, WiFi, and Bluetooth LED." msgstr "" -#: gnu/packages/linux.scm:1375 +#: gnu/packages/linux.scm:1413 msgid "" "This is Realtek's RTL8821CE Linux driver for wireless\n" "network adapters." msgstr "" -#: gnu/packages/linux.scm:1407 +#: gnu/packages/linux.scm:1445 msgid "" "This is Realtek's rtl8812au Linux driver for USB 802.11n wireless\n" "network adapters, modified by the aircrack-ng project to support monitor mode\n" @@ -8757,7 +8914,7 @@ msgid "" "RTL8812AU, RTL8821AU, and RTL8814AU chips." msgstr "" -#: gnu/packages/linux.scm:1431 +#: gnu/packages/linux.scm:1469 msgid "" "The @acronym{VHBA, Virtual SCSI Host Bus Adapter} module is the link\n" "between the CDemu user-space daemon and the kernel Linux. It acts as a\n" @@ -8766,13 +8923,13 @@ msgid "" "emulate optical devices such as DVD and CD-ROM drives." msgstr "" -#: gnu/packages/linux.scm:1460 +#: gnu/packages/linux.scm:1497 msgid "" "The bbswitch module provides a way to toggle the Nvidia\n" "graphics card on Optimus laptops." msgstr "" -#: gnu/packages/linux.scm:1501 +#: gnu/packages/linux.scm:1536 msgid "" "This package provides two Linux kernel drivers, ddcci and\n" "ddcci-backlight, that allows the control of DDC/CI monitors through the sysfs\n" @@ -8782,7 +8939,7 @@ msgid "" "supported under @file{/sys/class/backlight/}." msgstr "" -#: gnu/packages/linux.scm:1528 +#: gnu/packages/linux.scm:1563 msgid "" "This Linux module creates virtual video devices. @acronym{V4L2, Video\n" "for Linux 2} applications will treat these as ordinary video devices but read\n" @@ -8794,7 +8951,7 @@ msgid "" "application by hooking GStreamer into the loopback device." msgstr "" -#: gnu/packages/linux.scm:1569 +#: gnu/packages/linux.scm:1604 msgid "" "This package provides a driver for the XBox One S Wireless controller\n" "and some newer models when connected via Bluetooth. In addition to the included\n" @@ -8802,7 +8959,7 @@ msgid "" "which need to be installed separately." msgstr "" -#: gnu/packages/linux.scm:1622 +#: gnu/packages/linux.scm:1657 msgid "" "A *Free* project to implement OSF's RFC 86.0.\n" "Pluggable authentication modules are small shared object files that can\n" @@ -8810,18 +8967,18 @@ msgid "" "at login. Local and dynamic reconfiguration are its key features." msgstr "" -#: gnu/packages/linux.scm:1683 +#: gnu/packages/linux.scm:1718 msgid "This package provides a PAM interface using @code{ctypes}." msgstr "" -#: gnu/packages/linux.scm:1712 +#: gnu/packages/linux.scm:1747 msgid "" "This package provides a PAM module that hands over your\n" "login password to @code{gpg-agent}. This can be useful if you are using a\n" "GnuPG-based password manager like @code{pass}." msgstr "" -#: gnu/packages/linux.scm:1741 +#: gnu/packages/linux.scm:1776 msgid "" "This package contains utilities for accessing the powercap\n" "Linux kernel feature through sysfs. It includes an implementation for working\n" @@ -8829,7 +8986,7 @@ msgid "" "It provides the commands @code{powercap-info} and @code{powercap-set}." msgstr "" -#: gnu/packages/linux.scm:1772 +#: gnu/packages/linux.scm:1807 msgid "" "Powerstat measures and reports your computer's power consumption in real\n" "time. On mobile PCs, it uses ACPI battery information to measure the power\n" @@ -8846,28 +9003,28 @@ msgid "" "deviation, and minimum and maximum values. It can show a nice histogram too." msgstr "" -#: gnu/packages/linux.scm:1810 +#: gnu/packages/linux.scm:1845 msgid "" "This PSmisc package is a set of some small useful utilities that\n" "use the proc file system. We're not about changing the world, but\n" "providing the system administrator with some help in common tasks." msgstr "" -#: gnu/packages/linux.scm:1948 +#: gnu/packages/linux.scm:1984 msgid "" "Util-linux is a diverse collection of Linux kernel\n" "utilities. It provides dmesg and includes tools for working with file systems,\n" "block devices, UUIDs, TTYs, and many other tools." msgstr "" -#: gnu/packages/linux.scm:1986 +#: gnu/packages/linux.scm:2037 msgid "" "ddate displays the Discordian date and holidays of a given date.\n" "The Discordian calendar was made popular by the \"Illuminatus!\" trilogy\n" "by Robert Shea and Robert Anton Wilson." msgstr "" -#: gnu/packages/linux.scm:2040 +#: gnu/packages/linux.scm:2091 msgid "" "The kernel Linux's @dfn{frame buffers} provide a simple interface to\n" "different kinds of graphic displays. The @command{fbset} utility can query and\n" @@ -8875,7 +9032,7 @@ msgid "" "parameters." msgstr "" -#: gnu/packages/linux.scm:2085 +#: gnu/packages/linux.scm:2136 msgid "" "Procps is the package that has a bunch of small useful utilities\n" "that give information about processes using the Linux /proc file system.\n" @@ -8883,11 +9040,11 @@ msgid "" "slabtop, tload, top, vmstat, w, watch and sysctl." msgstr "" -#: gnu/packages/linux.scm:2130 +#: gnu/packages/linux.scm:2181 msgid "Tools for working with USB devices, such as lsusb." msgstr "" -#: gnu/packages/linux.scm:2154 +#: gnu/packages/linux.scm:2205 msgid "" "The USB/IP protocol enables to pass USB device from a server to\n" "a client over the network. The server is a machine which shares an\n" @@ -8900,23 +9057,23 @@ msgid "" "module." msgstr "" -#: gnu/packages/linux.scm:2237 +#: gnu/packages/linux.scm:2288 msgid "This package provides tools for manipulating ext2/ext3/ext4 file systems." msgstr "" -#: gnu/packages/linux.scm:2279 +#: gnu/packages/linux.scm:2330 msgid "" "This package provides statically-linked e2fsck command taken\n" "from the e2fsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:2302 +#: gnu/packages/linux.scm:2353 msgid "" "Extundelete is a set of tools that can recover deleted files from an\n" "ext3 or ext4 partition." msgstr "" -#: gnu/packages/linux.scm:2335 +#: gnu/packages/linux.scm:2386 msgid "" "Zerofree finds the unallocated blocks with non-zero value content in an\n" "ext2, ext3, or ext4 file system and fills them with zeroes (or another value).\n" @@ -8924,39 +9081,39 @@ msgid "" "Zerofree requires the file system to be unmounted or mounted read-only." msgstr "" -#: gnu/packages/linux.scm:2380 +#: gnu/packages/linux.scm:2431 msgid "" "strace is a system call tracer, i.e. a debugging tool which prints out a\n" "trace of all the system calls made by a another process/program." msgstr "" -#: gnu/packages/linux.scm:2403 +#: gnu/packages/linux.scm:2454 msgid "" "ltrace intercepts and records dynamic library calls which are called by\n" "an executed process and the signals received by that process. It can also\n" "intercept and print the system calls executed by the program." msgstr "" -#: gnu/packages/linux.scm:2428 +#: gnu/packages/linux.scm:2479 msgid "" "This package contains Advanced Linux Sound Architecture Use Case Manager\n" "configuration of audio input/output names and routing for specific audio\n" "hardware." msgstr "" -#: gnu/packages/linux.scm:2452 +#: gnu/packages/linux.scm:2503 msgid "" "This package contains Advanced Linux Sound Architecture topology\n" "configuration files that can be used for specific audio hardware." msgstr "" -#: gnu/packages/linux.scm:2499 gnu/packages/linux.scm:2548 +#: gnu/packages/linux.scm:2550 gnu/packages/linux.scm:2599 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system." msgstr "" -#: gnu/packages/linux.scm:2617 +#: gnu/packages/linux.scm:2668 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system. This package enhances ALSA\n" @@ -8965,7 +9122,7 @@ msgid "" "external rate conversion." msgstr "" -#: gnu/packages/linux.scm:2655 +#: gnu/packages/linux.scm:2706 msgid "" "@command{iptables} is the user-space command line program used to\n" "configure the Linux 2.4.x and later IPv4 packet filtering ruleset\n" @@ -8977,7 +9134,7 @@ msgid "" "Both commands are targeted at system administrators." msgstr "" -#: gnu/packages/linux.scm:2691 +#: gnu/packages/linux.scm:2742 msgid "" "This simple daemon feeds entropy from the CPU Jitter @acronym{RNG, random\n" "number generator} core to the kernel Linux's entropy estimator. This prevents\n" @@ -8999,7 +9156,7 @@ msgid "" "early boot when entropy may be low, especially in virtualised environments." msgstr "" -#: gnu/packages/linux.scm:2727 +#: gnu/packages/linux.scm:2778 msgid "" "@command{lsscsi} lists SCSI logical units or SCSI targets. It can\n" "also list NVMe namespaces or controllers and show the relationship between a\n" @@ -9007,7 +9164,7 @@ msgid "" "name." msgstr "" -#: gnu/packages/linux.scm:2751 +#: gnu/packages/linux.scm:2802 msgid "" "ebtables is an application program used to set up and maintain the\n" "tables of rules (inside the Linux kernel) that inspect Ethernet frames. It is\n" @@ -9015,7 +9172,7 @@ msgid "" "that the Ethernet protocol is much simpler than the IP protocol." msgstr "" -#: gnu/packages/linux.scm:2816 +#: gnu/packages/linux.scm:2867 msgid "" "Iproute2 is a collection of utilities for controlling TCP/IP networking\n" "and traffic with the Linux kernel. The most important of these are\n" @@ -9027,7 +9184,7 @@ msgid "" "inadequately in modern network environments, and both should be deprecated." msgstr "" -#: gnu/packages/linux.scm:2896 +#: gnu/packages/linux.scm:2947 msgid "" "This package includes the important tools for controlling the network\n" "subsystem of the Linux kernel. This includes arp, ifconfig, netstat, rarp and\n" @@ -9036,13 +9193,13 @@ msgid "" "configuration (iptunnel, ipmaddr)." msgstr "" -#: gnu/packages/linux.scm:2947 +#: gnu/packages/linux.scm:2989 msgid "" "Libcap2 provides a programming interface to POSIX capabilities on\n" "Linux-based operating systems." msgstr "" -#: gnu/packages/linux.scm:2974 +#: gnu/packages/linux.scm:3016 msgid "" "Utilities for Linux's Ethernet bridging facilities. A bridge is a way\n" "to connect two Ethernet segments together in a protocol independent way.\n" @@ -9051,7 +9208,7 @@ msgid "" "transparently through a bridge." msgstr "" -#: gnu/packages/linux.scm:3025 +#: gnu/packages/linux.scm:3067 msgid "" "The libnl suite is a collection of libraries providing APIs to netlink\n" "protocol based Linux kernel interfaces. Netlink is an IPC mechanism primarily\n" @@ -9060,13 +9217,13 @@ msgid "" "configuration and monitoring interfaces." msgstr "" -#: gnu/packages/linux.scm:3099 +#: gnu/packages/linux.scm:3141 msgid "" "iw is a new nl80211 based CLI configuration utility for wireless\n" "devices. It replaces @code{iwconfig}, which is deprecated." msgstr "" -#: gnu/packages/linux.scm:3149 +#: gnu/packages/linux.scm:3191 msgid "" "PowerTOP is a Linux tool to diagnose issues with power consumption and\n" "power management. In addition to being a diagnostic tool, PowerTOP also has\n" @@ -9075,19 +9232,19 @@ msgid "" "settings." msgstr "" -#: gnu/packages/linux.scm:3176 +#: gnu/packages/linux.scm:3218 msgid "" "Aumix adjusts an audio mixer from X, the console, a terminal,\n" "the command line or a script." msgstr "" -#: gnu/packages/linux.scm:3207 +#: gnu/packages/linux.scm:3249 msgid "" "Iotop is a Python program with a top like user interface to show the\n" "processes currently causing I/O." msgstr "" -#: gnu/packages/linux.scm:3265 +#: gnu/packages/linux.scm:3307 msgid "" "As a consequence of its monolithic design, file system code for Linux\n" "normally goes into the kernel itself---which is not only a robustness issue,\n" @@ -9097,7 +9254,7 @@ msgid "" "user-space processes." msgstr "" -#: gnu/packages/linux.scm:3358 +#: gnu/packages/linux.scm:3400 msgid "" "UnionFS-FUSE is a flexible union file system implementation in user\n" "space, using the FUSE library. Mounting a union file system allows you to\n" @@ -9105,7 +9262,7 @@ msgid "" "UnionFS-FUSE additionally supports copy-on-write." msgstr "" -#: gnu/packages/linux.scm:3437 +#: gnu/packages/linux.scm:3479 msgid "" "This is a file system client based on the SSH File Transfer Protocol.\n" "Since most SSH servers already support this protocol it is very easy to set\n" @@ -9113,7 +9270,7 @@ msgid "" "file system is as easy as logging into the server with an SSH client." msgstr "" -#: gnu/packages/linux.scm:3464 +#: gnu/packages/linux.scm:3506 msgid "" "archivemount is a FUSE-based file system for Unix variants,\n" "including Linux. Its purpose is to mount archives (i.e. tar, tar.gz, etc.) to a\n" @@ -9122,7 +9279,7 @@ msgid "" "compressed, transparent to other programs, without decompressing them." msgstr "" -#: gnu/packages/linux.scm:3495 +#: gnu/packages/linux.scm:3537 msgid "" "NUMA stands for Non-Uniform Memory Access, in other words a system whose\n" "memory is not all in one place. The @command{numactl} program allows you to\n" @@ -9135,26 +9292,26 @@ msgid "" "NUMA performance on your system." msgstr "" -#: gnu/packages/linux.scm:3533 +#: gnu/packages/linux.scm:3575 msgid "" "Kbd-neo provides the Neo2 keyboard layout for use with\n" "@command{loadkeys(1)} from @code{kbd(4)}." msgstr "" -#: gnu/packages/linux.scm:3599 +#: gnu/packages/linux.scm:3641 msgid "" "This package contains keytable files and keyboard utilities compatible\n" "for systems using the Linux kernel. This includes commands such as\n" "@code{loadkeys}, @code{setfont}, @code{kbdinfo}, and @code{chvt}." msgstr "" -#: gnu/packages/linux.scm:3662 +#: gnu/packages/linux.scm:3704 msgid "" "The inotify-tools packages provides a C library and command-line tools\n" "to use Linux' inotify mechanism, which allows file accesses to be monitored." msgstr "" -#: gnu/packages/linux.scm:3714 +#: gnu/packages/linux.scm:3756 msgid "" "Kmod is a set of tools to handle common tasks with Linux\n" "kernel modules like insert, remove, list, check properties, resolve\n" @@ -9165,21 +9322,21 @@ msgid "" "from the module-init-tools project." msgstr "" -#: gnu/packages/linux.scm:3769 +#: gnu/packages/linux.scm:3812 msgid "" "Early OOM is a minimalist out of memory (OOM) daemon that\n" "runs in user space and provides a more responsive and configurable alternative\n" "to the in-kernel OOM killer." msgstr "" -#: gnu/packages/linux.scm:3867 +#: gnu/packages/linux.scm:3892 msgid "" "Udev is a daemon which dynamically creates and removes\n" "device nodes from /dev/, handles hotplug events and loads drivers at boot\n" "time." msgstr "" -#: gnu/packages/linux.scm:3897 +#: gnu/packages/linux.scm:3922 msgid "" "Python-evdev provides bindings to the generic input event interface in\n" "Linux. The @code{evdev} interface serves the purpose of passing events\n" @@ -9191,7 +9348,7 @@ msgid "" "devices that can inject events directly into the input subsystem." msgstr "" -#: gnu/packages/linux.scm:3930 +#: gnu/packages/linux.scm:3955 msgid "" "Interception Tools provides a composable infrastructure on top of\n" "@code{libudev} and @code{libevdev}. The following utilities are provided:\n" @@ -9204,33 +9361,33 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/linux.scm:3979 +#: gnu/packages/linux.scm:4004 msgid "" "Dual Function Keys is a plugin for @code{interception-tools} that allows\n" "one to send arbitrary keycodes when a given key is tapped or held." msgstr "" -#: gnu/packages/linux.scm:4056 +#: gnu/packages/linux.scm:4081 msgid "" "LVM2 is the logical volume management tool set for Linux-based systems.\n" "This package includes the user-space libraries and tools, including the device\n" "mapper. Kernel components are part of Linux-libre." msgstr "" -#: gnu/packages/linux.scm:4122 +#: gnu/packages/linux.scm:4147 msgid "" "A suite of tools for manipulating the metadata of the\n" "dm-thin, dm-cache and dm-era device-mapper targets." msgstr "" -#: gnu/packages/linux.scm:4144 +#: gnu/packages/linux.scm:4169 msgid "" "This package provides an advanced monitor of critical system\n" "resources, supervises the heartbeat of processes, records deadline\n" "transgressions, and initiates a controlled reset if needed." msgstr "" -#: gnu/packages/linux.scm:4189 +#: gnu/packages/linux.scm:4214 msgid "" "Wireless Tools are used to manipulate the now-deprecated\n" "Linux Wireless Extensions; consider using @code{iw} instead. The Wireless\n" @@ -9239,35 +9396,35 @@ msgid "" "interface." msgstr "" -#: gnu/packages/linux.scm:4280 +#: gnu/packages/linux.scm:4305 msgid "" "The Central Regulatory Domain Agent (CRDA) acts as the udev helper for\n" "communication between the kernel Linux and user space for regulatory\n" "compliance." msgstr "" -#: gnu/packages/linux.scm:4350 +#: gnu/packages/linux.scm:4375 msgid "" "This package contains the wireless regulatory database for the Central\n" "Regulatory Database Agent (CRDA). The database contains information on\n" "country-specific regulations for the wireless spectrum." msgstr "" -#: gnu/packages/linux.scm:4424 +#: gnu/packages/linux.scm:4449 msgid "" "Lm-sensors is a hardware health monitoring package for Linux. It allows\n" "you to access information from temperature, voltage, and fan speed sensors.\n" "It works with most newer systems." msgstr "" -#: gnu/packages/linux.scm:4444 +#: gnu/packages/linux.scm:4469 msgid "" "@command{iucode_tool} is a utility to work with microcode packages for\n" "Intel processors. It can convert between formats, extract specific versions,\n" "create a firmware image suitable for the Linux kernel, and more." msgstr "" -#: gnu/packages/linux.scm:4475 +#: gnu/packages/linux.scm:4501 msgid "" "The i2c-tools package contains a heterogeneous set of I2C tools for\n" "Linux: a bus probing tool, a chip dumper, register-level SMBus access helpers,\n" @@ -9275,14 +9432,14 @@ msgid "" "SMBus access." msgstr "" -#: gnu/packages/linux.scm:4514 +#: gnu/packages/linux.scm:4540 msgid "" "Xsensors reads data from the libsensors library regarding hardware\n" "health such as temperature, voltage and fan speed and displays the information\n" "in a digital read-out." msgstr "" -#: gnu/packages/linux.scm:4568 +#: gnu/packages/linux.scm:4600 msgid "" "perf is a tool suite for profiling using hardware performance counters,\n" "with support in the Linux kernel. perf can instrument CPU performance\n" @@ -9291,7 +9448,7 @@ msgid "" "particular the @code{perf} command." msgstr "" -#: gnu/packages/linux.scm:4593 +#: gnu/packages/linux.scm:4625 msgid "" "pflask is a simple tool for creating Linux namespace\n" "containers. It can be used for running a command or even booting an OS inside\n" @@ -9300,7 +9457,7 @@ msgid "" "thanks to the use of namespaces." msgstr "" -#: gnu/packages/linux.scm:4678 +#: gnu/packages/linux.scm:4710 msgid "" "Singularity is a container platform supporting a number of\n" "container image formats. It can build SquashFS container images or import\n" @@ -9308,7 +9465,7 @@ msgid "" "isolation or root privileges." msgstr "" -#: gnu/packages/linux.scm:4711 +#: gnu/packages/linux.scm:4742 msgid "" "@command{hdparm} is a command-line utility to control ATA controllers and\n" "disk drives. It can increase performance and/or reliability by careful tuning\n" @@ -9322,21 +9479,21 @@ msgid "" "Translation (@dfn{SAT}) are also supported." msgstr "" -#: gnu/packages/linux.scm:4750 +#: gnu/packages/linux.scm:4782 msgid "" "Nvme-cli is a utility to provide standards compliant tooling\n" "for NVM-Express drives. It was made specifically for Linux as it relies on the\n" "IOCTLs defined by the mainline kernel driver." msgstr "" -#: gnu/packages/linux.scm:4776 +#: gnu/packages/linux.scm:4808 msgid "" "rfkill is a simple tool for accessing the rfkill device interface,\n" "which is used to enable and disable wireless networking devices, typically\n" "WLAN, Bluetooth and mobile broadband." msgstr "" -#: gnu/packages/linux.scm:4798 +#: gnu/packages/linux.scm:4830 msgid "" "@code{acpi} attempts to replicate the functionality of the\n" "\"old\" @code{apm} command on ACPI systems, including battery and thermal\n" @@ -9344,7 +9501,7 @@ msgid "" "about ACPI devices." msgstr "" -#: gnu/packages/linux.scm:4819 +#: gnu/packages/linux.scm:4851 msgid "" "acpid is designed to notify user-space programs of Advanced\n" "Configuration and Power Interface (ACPI) events. acpid should be started\n" @@ -9353,34 +9510,34 @@ msgid "" "specified in /etc/acpi/events and execute the rules that match the event." msgstr "" -#: gnu/packages/linux.scm:4843 +#: gnu/packages/linux.scm:4875 msgid "" "These are a set of utilities built upon sysfs, a virtual file system in\n" "Linux kernel versions 2.5+ that exposes a system's device tree. The package\n" "also contains the libsysfs library." msgstr "" -#: gnu/packages/linux.scm:4886 +#: gnu/packages/linux.scm:4918 msgid "" "The cpufrequtils suite contains utilities to retrieve CPU frequency\n" "information, and set the CPU frequency if supported, using the cpufreq\n" "capabilities of the Linux kernel." msgstr "" -#: gnu/packages/linux.scm:4922 +#: gnu/packages/linux.scm:4954 msgid "" "This package provides many of the missing pieces in GNU\n" "libc. Most notably the string functions: strlcpy(3), strlcat(3) and the *BSD\n" "sys/queue.h and sys/tree.h API's." msgstr "" -#: gnu/packages/linux.scm:4945 +#: gnu/packages/linux.scm:4977 msgid "" "This package provides small event loop that wraps the\n" "epoll family of APIs." msgstr "" -#: gnu/packages/linux.scm:4966 +#: gnu/packages/linux.scm:4998 msgid "" "Libraw1394 is the only supported interface to the kernel side raw1394 of\n" "the Linux IEEE-1394 subsystem, which provides direct access to the connected\n" @@ -9389,26 +9546,26 @@ msgid "" "protocol in question." msgstr "" -#: gnu/packages/linux.scm:4992 +#: gnu/packages/linux.scm:5024 msgid "" "Libavc1394 is a programming interface to the AV/C specification from\n" "the 1394 Trade Association. AV/C stands for Audio/Video Control." msgstr "" -#: gnu/packages/linux.scm:5016 +#: gnu/packages/linux.scm:5048 msgid "" "The libiec61883 library provides a higher level API for streaming DV,\n" "MPEG-2 and audio over Linux IEEE 1394." msgstr "" -#: gnu/packages/linux.scm:5067 +#: gnu/packages/linux.scm:5099 msgid "" "mdadm is a tool for managing Linux Software RAID arrays. It can create,\n" "assemble, report on, and monitor arrays. It can also move spares between raid\n" "arrays when needed." msgstr "" -#: gnu/packages/linux.scm:5199 +#: gnu/packages/linux.scm:5231 msgid "" "This package provides the following binaries to drive the\n" "Linux Device Mapper multipathing driver:\n" @@ -9421,66 +9578,66 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:5244 +#: gnu/packages/linux.scm:5288 msgid "" "This library enables userspace to use Linux kernel asynchronous I/O\n" "system calls, important for the performance of databases and other advanced\n" "applications." msgstr "" -#: gnu/packages/linux.scm:5287 +#: gnu/packages/linux.scm:5331 msgid "" "Blktrace is a block layer IO tracing mechanism which provides\n" "detailed information about request queue operations to user space. It extracts\n" "event traces from the kernel (via the relaying through the debug file system)." msgstr "" -#: gnu/packages/linux.scm:5312 +#: gnu/packages/linux.scm:5356 msgid "" "The SBC is a digital audio encoder and decoder used to transfer data to\n" "Bluetooth audio output devices like headphones or loudspeakers." msgstr "" -#: gnu/packages/linux.scm:5379 +#: gnu/packages/linux.scm:5423 msgid "" "BlueZ provides support for the core Bluetooth layers and protocols. It\n" "is flexible, efficient and uses a modular implementation." msgstr "" -#: gnu/packages/linux.scm:5403 +#: gnu/packages/linux.scm:5447 msgid "" "This package provides a FUSE-based file system that provides read and\n" "write access to exFAT devices." msgstr "" -#: gnu/packages/linux.scm:5426 +#: gnu/packages/linux.scm:5470 msgid "" "FuseISO is a FUSE module to mount ISO file system images (.iso, .nrg,\n" ".bin, .mdf and .img files). It supports plain ISO9660 Level 1 and 2, Rock\n" "Ridge, Joliet, and zisofs." msgstr "" -#: gnu/packages/linux.scm:5480 +#: gnu/packages/linux.scm:5524 msgid "" "The GPM (general-purpose mouse) daemon is a mouse server for\n" "applications running on the Linux console. It allows users to select items\n" "and copy/paste text in the console and in xterm." msgstr "" -#: gnu/packages/linux.scm:5551 +#: gnu/packages/linux.scm:5595 msgid "" "Btrfs is a @dfn{copy-on-write} (CoW) file system for Linux\n" "aimed at implementing advanced features while focusing on fault tolerance,\n" "repair and easy administration." msgstr "" -#: gnu/packages/linux.scm:5585 +#: gnu/packages/linux.scm:5629 msgid "" "This package provides the statically-linked @command{btrfs}\n" "from the btrfs-progs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5617 +#: gnu/packages/linux.scm:5661 msgid "" "Cramfs is a Linux file system designed to be simple, small,\n" "and to compress things well. It is used on a number of embedded systems and\n" @@ -9488,7 +9645,7 @@ msgid "" "blocks and random block placement." msgstr "" -#: gnu/packages/linux.scm:5652 +#: gnu/packages/linux.scm:5696 msgid "" "@command{compsize} takes a list of files (given as\n" "arguments) on a Btrfs file system and measures used compression types and\n" @@ -9505,20 +9662,20 @@ msgid "" "obviously it can be shared with files outside our set)." msgstr "" -#: gnu/packages/linux.scm:5700 +#: gnu/packages/linux.scm:5744 msgid "" "F2FS, the Flash-Friendly File System, is a modern file system\n" "designed to be fast and durable on flash devices such as solid-state\n" "disks and SD cards. This package provides the userland utilities." msgstr "" -#: gnu/packages/linux.scm:5790 +#: gnu/packages/linux.scm:5834 msgid "" "This package provides statically-linked fsck.f2fs command taken\n" "from the f2fs-tools package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5821 +#: gnu/packages/linux.scm:5865 msgid "" "Prevents shock damage to the internal spinning hard drive(s) of some\n" "HP and Dell laptops. When sudden movement is detected, all input/output\n" @@ -9528,7 +9685,7 @@ msgid "" "feature, and a laptop with an accelerometer. It has no effect on SSDs." msgstr "" -#: gnu/packages/linux.scm:5879 +#: gnu/packages/linux.scm:5923 msgid "" "Thinkfan is a simple fan control program. It reads temperatures,\n" "checks them against configured limits and switches to appropriate (also\n" @@ -9537,7 +9694,7 @@ msgid "" "from userspace." msgstr "" -#: gnu/packages/linux.scm:5935 +#: gnu/packages/linux.scm:5979 msgid "" "Tpacpi-bat is a command-line interface to control battery charging on\n" "@uref{https://github.com/teleshoes/tpacpi-bat/wiki/Supported-Hardware, Lenovo\n" @@ -9552,7 +9709,7 @@ msgid "" "supported." msgstr "" -#: gnu/packages/linux.scm:5979 +#: gnu/packages/linux.scm:6023 msgid "" "Tmon is a tool to interact with the complex thermal subsystem of the\n" "kernel Linux. It helps visualize thermal relationships and real-time thermal\n" @@ -9569,7 +9726,7 @@ msgid "" "by hand is no trivial task: @command{tmon} aims to make it understandable." msgstr "" -#: gnu/packages/linux.scm:6021 +#: gnu/packages/linux.scm:6065 msgid "" "Turbostat reports x86 processor topology, frequency, idle power state\n" "statistics, temperature, and power consumption. Some information is unavailable\n" @@ -9584,20 +9741,20 @@ msgid "" "invocations of itself." msgstr "" -#: gnu/packages/linux.scm:6080 +#: gnu/packages/linux.scm:6124 msgid "" "NTFS-3G provides read-write access to NTFS file systems, which are\n" "commonly found on Microsoft Windows. It is implemented as a FUSE file system.\n" "The package provides additional NTFS tools." msgstr "" -#: gnu/packages/linux.scm:6127 +#: gnu/packages/linux.scm:6171 msgid "" "This package provides a statically linked @command{ntfsfix} taken\n" "from the ntfs-3g package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:6174 +#: gnu/packages/linux.scm:6218 msgid "" "This package provides userspace components for the InfiniBand\n" "subsystem of the Linux kernel. Specifically it contains userspace\n" @@ -9617,7 +9774,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6228 +#: gnu/packages/linux.scm:6272 msgid "" "This is a collection of tests written over uverbs intended for\n" "use as a performance micro-benchmark. The tests may be used for hardware or\n" @@ -9633,20 +9790,20 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6270 +#: gnu/packages/linux.scm:6314 msgid "" "Monitor a hardware random number generator, and supply entropy\n" "from that to the system kernel's @file{/dev/random} machinery." msgstr "" -#: gnu/packages/linux.scm:6312 +#: gnu/packages/linux.scm:6356 msgid "" "cpupower is a set of user-space tools that use the cpufreq feature of the\n" "Linux kernel to retrieve and control processor features related to power saving,\n" "such as frequency and voltage scaling." msgstr "" -#: gnu/packages/linux.scm:6344 +#: gnu/packages/linux.scm:6388 msgid "" "@command{x86_energy_perf_policy} displays and updates energy-performance\n" "policy settings specific to Intel Architecture Processors. Settings are\n" @@ -9654,7 +9811,7 @@ msgid "" "cpufreq sub-system is enabled or not." msgstr "" -#: gnu/packages/linux.scm:6370 +#: gnu/packages/linux.scm:6414 msgid "" "haveged generates an unpredictable stream of random numbers for use by\n" "Linux's @file{/dev/random} and @file{/dev/urandom} devices. The kernel's\n" @@ -9672,7 +9829,7 @@ msgid "" "not as a replacement for it." msgstr "" -#: gnu/packages/linux.scm:6456 +#: gnu/packages/linux.scm:6500 msgid "" "eCryptfs is a POSIX-compliant stacked cryptographic file system for Linux.\n" "Each file's cryptographic meta-data is stored inside the file itself, along\n" @@ -9682,7 +9839,7 @@ msgid "" "2.6.19. This package contains the userland utilities to manage it." msgstr "" -#: gnu/packages/linux.scm:6488 +#: gnu/packages/linux.scm:6532 msgid "" "Libnfsidmap is a library holding mulitiple methods of\n" "mapping names to ids and visa versa, mainly for NFSv4. It provides an\n" @@ -9690,13 +9847,13 @@ msgid "" "the default @code{nsswitch} and the experimental @code{umich_ldap}." msgstr "" -#: gnu/packages/linux.scm:6524 +#: gnu/packages/linux.scm:6568 msgid "" "Tools for loading and managing Linux kernel modules, such as\n" "@code{modprobe}, @code{insmod}, @code{lsmod}, and more." msgstr "" -#: gnu/packages/linux.scm:6565 +#: gnu/packages/linux.scm:6609 msgid "" "The mcelog daemon logs memory, I/O, CPU, and other hardware errors on x86\n" "systems running the kernel Linux. It can also perform user-defined tasks, such\n" @@ -9704,13 +9861,13 @@ msgid "" "exceeded." msgstr "" -#: gnu/packages/linux.scm:6596 +#: gnu/packages/linux.scm:6640 msgid "" "This package provides utilities for testing, partitioning, etc\n" "of flash storage." msgstr "" -#: gnu/packages/linux.scm:6628 +#: gnu/packages/linux.scm:6672 msgid "" "The libseccomp library provides an easy to use, platform\n" "independent, interface to the Linux Kernel's syscall filtering mechanism. The\n" @@ -9720,7 +9877,7 @@ msgid "" "developers." msgstr "" -#: gnu/packages/linux.scm:6671 +#: gnu/packages/linux.scm:6715 msgid "" "RadeonTop monitors resource consumption on supported AMD\n" "Radeon Graphics Processing Units (GPUs), either in real time as bar graphs on\n" @@ -9730,13 +9887,13 @@ msgid "" "under OpenGL graphics workloads." msgstr "" -#: gnu/packages/linux.scm:6718 +#: gnu/packages/linux.scm:6762 msgid "" "This package provides a library and a command line\n" "interface to the variable facility of UEFI boot firmware." msgstr "" -#: gnu/packages/linux.scm:6755 +#: gnu/packages/linux.scm:6799 msgid "" "@code{efibootmgr} is a user-space application to modify the Intel\n" "Extensible Firmware Interface (EFI) Boot Manager. This application can\n" @@ -9744,7 +9901,7 @@ msgid "" "running boot option, and more." msgstr "" -#: gnu/packages/linux.scm:6791 +#: gnu/packages/linux.scm:6835 msgid "" "The sysstat utilities are a collection of performance\n" "monitoring tools for Linux. These include @code{mpstat}, @code{iostat},\n" @@ -9752,7 +9909,7 @@ msgid "" "@code{sadf} and @code{sa}." msgstr "" -#: gnu/packages/linux.scm:6832 +#: gnu/packages/linux.scm:6876 msgid "" "Light is a program to send commands to screen backlight controllers\n" "under GNU/Linux. Features include:\n" @@ -9766,7 +9923,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/linux.scm:6880 +#: gnu/packages/linux.scm:6924 msgid "" "This program allows you read and control device brightness. Devices\n" "include backlight and LEDs. It can also preserve current brightness before\n" @@ -9776,7 +9933,7 @@ msgid "" "interface in sysfs, which can be accomplished with the included udev rules." msgstr "" -#: gnu/packages/linux.scm:7007 +#: gnu/packages/linux.scm:7048 msgid "" "TLP is a power management tool for Linux. It comes with\n" "a default configuration already optimized for battery life. Nevertheless,\n" @@ -9784,7 +9941,7 @@ msgid "" "every time the power supply source is changed." msgstr "" -#: gnu/packages/linux.scm:7073 +#: gnu/packages/linux.scm:7114 msgid "" "The Python scripts in this project generate a GTK-UI to change\n" "TLP configuration files easily. It aims to protect users from setting\n" @@ -9792,7 +9949,7 @@ msgid "" "configuration values." msgstr "" -#: gnu/packages/linux.scm:7099 +#: gnu/packages/linux.scm:7140 msgid "" "@command{lshw} (Hardware Lister) is a small tool to provide\n" "detailed information on the hardware configuration of the machine.\n" @@ -9802,7 +9959,7 @@ msgid "" "machines (PowerMac G4 is known to work)." msgstr "" -#: gnu/packages/linux.scm:7123 +#: gnu/packages/linux.scm:7164 msgid "" "Libmnl is a minimalistic user-space library oriented to\n" "Netlink developers. There are a lot of common tasks in parsing, validating,\n" @@ -9811,7 +9968,7 @@ msgid "" "re-use code and to avoid re-inventing the wheel." msgstr "" -#: gnu/packages/linux.scm:7148 +#: gnu/packages/linux.scm:7189 msgid "" "Libnftnl is a userspace library providing a low-level netlink\n" "programming interface to the in-kernel nf_tables subsystem. The library\n" @@ -9819,7 +9976,7 @@ msgid "" "used by nftables." msgstr "" -#: gnu/packages/linux.scm:7194 +#: gnu/packages/linux.scm:7235 msgid "" "nftables is the project that aims to replace the existing\n" "{ip,ip6,arp,eb}tables framework. Basically, this project provides a new packet\n" @@ -9829,7 +9986,7 @@ msgid "" "userspace queueing component and the logging subsystem." msgstr "" -#: gnu/packages/linux.scm:7336 +#: gnu/packages/linux.scm:7377 msgid "" "PRoot is a user-space implementation of @code{chroot}, @code{mount --bind},\n" "and @code{binfmt_misc}. This means that users don't need any privileges or\n" @@ -9842,7 +9999,7 @@ msgid "" "available in the kernel Linux." msgstr "" -#: gnu/packages/linux.scm:7399 +#: gnu/packages/linux.scm:7437 msgid "" "cpuid dumps detailed information about the CPU(s) gathered\n" "from the CPUID instruction, and also determines the exact model of CPU(s). It\n" @@ -9850,14 +10007,14 @@ msgid "" "NexGen, Rise, and SiS CPUs." msgstr "" -#: gnu/packages/linux.scm:7426 +#: gnu/packages/linux.scm:7464 msgid "" "jmtpfs uses FUSE (file system in userspace) to provide access\n" "to data over the Media Transfer Protocol (MTP). Unprivileged users can mount\n" "the MTP device as a file system." msgstr "" -#: gnu/packages/linux.scm:7453 +#: gnu/packages/linux.scm:7491 msgid "" "Procenv is a command-line tool that displays as much detail about\n" "itself and its environment as possible. It can be used as a test\n" @@ -9865,7 +10022,7 @@ msgid "" "comparing system environments." msgstr "" -#: gnu/packages/linux.scm:7482 +#: gnu/packages/linux.scm:7520 msgid "" "OpenFabrics Interfaces (OFI) is a framework focused on exporting fabric\n" "communication services to applications. OFI is best described as a collection\n" @@ -9879,7 +10036,7 @@ msgid "" "libraries, which are often integrated directly into libfabric." msgstr "" -#: gnu/packages/linux.scm:7544 +#: gnu/packages/linux.scm:7582 msgid "" "The PSM Messaging API, or PSM API, is Intel's low-level user-level\n" "communications interface for the True Scale family of products. PSM users are\n" @@ -9887,14 +10044,14 @@ msgid "" "interfaces in parallel environments." msgstr "" -#: gnu/packages/linux.scm:7587 +#: gnu/packages/linux.scm:7625 msgid "" "snapscreenshot saves a screenshot of one or more Linux text consoles as a\n" "Targa (@dfn{.tga}) image. It can be used by anyone with read access to the\n" "relevant @file{/dev/vcs*} file(s)." msgstr "" -#: gnu/packages/linux.scm:7641 +#: gnu/packages/linux.scm:7679 msgid "" "fbcat saves the contents of the Linux framebuffer (@file{/dev/fb*}), or\n" "a dump therof. It supports a wide range of drivers and pixel formats.\n" @@ -9906,14 +10063,14 @@ msgid "" "emulates the behaviour of Gunnar Monell's older fbgrab utility." msgstr "" -#: gnu/packages/linux.scm:7672 +#: gnu/packages/linux.scm:7710 msgid "" "Control groups is Linux kernel method for process resource\n" "restriction, permission handling and more. This package provides userspace\n" "interface to this kernel feature." msgstr "" -#: gnu/packages/linux.scm:7707 +#: gnu/packages/linux.scm:7745 msgid "" "mbpfan is a fan control daemon for Apple Macbooks. It uses input from\n" "the @code{coretemp} module and sets the fan speed using the @code{applesmc}\n" @@ -9921,7 +10078,7 @@ msgid "" "privileges." msgstr "" -#: gnu/packages/linux.scm:7751 +#: gnu/packages/linux.scm:7789 msgid "" "This package is low-level user-level Intel's communications interface.\n" "The PSM2 API is a high-performance vendor-specific protocol that provides a\n" @@ -9929,7 +10086,7 @@ msgid "" "high-speed networking devices." msgstr "" -#: gnu/packages/linux.scm:7794 +#: gnu/packages/linux.scm:7832 msgid "" "This package provides a library called libpfm4, which is used to develop\n" "monitoring tools exploiting the performance monitoring events such as those\n" @@ -9944,7 +10101,7 @@ msgid "" "introduced in Linux 2.6.31." msgstr "" -#: gnu/packages/linux.scm:7824 +#: gnu/packages/linux.scm:7862 msgid "" "@code{libnfnetlink} is the low-level library for netfilter related\n" "kernel/userspace communication. It provides a generic messaging\n" @@ -9953,7 +10110,7 @@ msgid "" "management tools in userspace." msgstr "" -#: gnu/packages/linux.scm:7851 +#: gnu/packages/linux.scm:7889 msgid "" "The netlink package provides a simple netlink library for\n" "Go. Netlink is the interface a user-space program in Linux uses to\n" @@ -9961,7 +10118,7 @@ msgid "" "IP addresses and routes, and configure IPsec." msgstr "" -#: gnu/packages/linux.scm:7891 +#: gnu/packages/linux.scm:7929 msgid "" "The inih (INI Not Invented Here) library is a simple .INI file\n" "parser written in C. It's only a couple of pages of code, and it was designed to\n" @@ -9970,19 +10127,19 @@ msgid "" "822-style multi-line syntax and name: value entries." msgstr "" -#: gnu/packages/linux.scm:7942 +#: gnu/packages/linux.scm:7980 msgid "" "This package provides commands to create and check XFS\n" "file systems." msgstr "" -#: gnu/packages/linux.scm:7998 +#: gnu/packages/linux.scm:8036 msgid "" "This package provides a statically linked @command{xfs_repair} taken\n" "from the xfsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:8034 +#: gnu/packages/linux.scm:8072 msgid "" "This package provides a program to generate an ext2\n" "file system as a normal (non-root) user. It does not require you to mount\n" @@ -9990,7 +10147,7 @@ msgid "" "the superuser to make device nodes." msgstr "" -#: gnu/packages/linux.scm:8129 +#: gnu/packages/linux.scm:8167 msgid "" "@command{fakeroot} runs a command in an environment where it appears to\n" "have root privileges for file manipulation. This is useful for allowing users\n" @@ -10003,7 +10160,7 @@ msgid "" "without using the archiver." msgstr "" -#: gnu/packages/linux.scm:8169 +#: gnu/packages/linux.scm:8207 msgid "" "@command{fakechroot} runs a command in an environment were is additional\n" "possibility to use @code{chroot} command without root privileges. This is\n" @@ -10014,13 +10171,13 @@ msgid "" "set as @code{LD_PRELOAD} to override the C library file system functions." msgstr "" -#: gnu/packages/linux.scm:8215 +#: gnu/packages/linux.scm:8253 msgid "" "inputattach dispatches input events from several device\n" "types and interfaces and translates so that the X server can use them." msgstr "" -#: gnu/packages/linux.scm:8251 +#: gnu/packages/linux.scm:8289 msgid "" "PipeWire is a project that aims to greatly improve handling of audio and\n" "video under Linux. It aims to support the usecases currently handled by both\n" @@ -10032,7 +10189,7 @@ msgid "" "of Linux application development." msgstr "" -#: gnu/packages/linux.scm:8318 +#: gnu/packages/linux.scm:8356 msgid "" "WirePlumber is a modular session / policy manager for\n" "PipeWire and a GObject-based high-level library that wraps PipeWire's API,\n" @@ -10040,7 +10197,7 @@ msgid "" "tools for managing PipeWire." msgstr "" -#: gnu/packages/linux.scm:8357 +#: gnu/packages/linux.scm:8395 msgid "" "The Embedded Linux* Library (ELL) provides core, low-level\n" "functionality for system daemons. It typically has no dependencies other than\n" @@ -10049,7 +10206,7 @@ msgid "" "platforms, it is not limited to resource-constrained systems." msgstr "" -#: gnu/packages/linux.scm:8386 +#: gnu/packages/linux.scm:8424 msgid "" "This package provides the @code{kexec} program and ancillary\n" "utilities. Using @code{kexec}, it is possible to boot directly into a new\n" @@ -10057,7 +10214,7 @@ msgid "" "system boot process." msgstr "" -#: gnu/packages/linux.scm:8419 +#: gnu/packages/linux.scm:8457 msgid "" "@code{cachefilesd} is a userspace daemon that manages the\n" "cache data store that is used by network file systems such as @code{AFS} and\n" @@ -10065,14 +10222,14 @@ msgid "" "persistent over reboots." msgstr "" -#: gnu/packages/linux.scm:8463 +#: gnu/packages/linux.scm:8501 msgid "" "Libbpf supports building BPF CO-RE-enabled applications, which, in\n" "contrast to BCC, do not require the Clang/LLVM runtime or linux kernel\n" "headers." msgstr "" -#: gnu/packages/linux.scm:8541 +#: gnu/packages/linux.scm:8579 msgid "" "BCC is a toolkit for creating efficient kernel tracing and manipulation\n" "programs, and includes several useful tools and examples. It makes use of\n" @@ -10081,7 +10238,7 @@ msgid "" "and above." msgstr "" -#: gnu/packages/linux.scm:8577 +#: gnu/packages/linux.scm:8615 msgid "" "bpftrace is a high-level tracing language for Linux enhanced Berkeley\n" "Packet Filter (eBPF) available in recent Linux kernels (4.x). bpftrace uses\n" @@ -10093,14 +10250,14 @@ msgid "" "created by Alastair Robertson." msgstr "" -#: gnu/packages/linux.scm:8609 +#: gnu/packages/linux.scm:8647 msgid "" "This package provides a Linux kernel module that will\n" "provide a serial device @code{/dev/ttyebus} with almost no latency upon\n" "receiving. It is dedicated to the PL011 UART of the Raspberry Pi." msgstr "" -#: gnu/packages/linux.scm:8635 +#: gnu/packages/linux.scm:8673 msgid "" "IP sets are a framework inside the Linux 2.4.x and 2.6.x kernel which\n" "can be administered by the ipset utility. Depending on the type,\n" @@ -10121,7 +10278,7 @@ msgid "" "then IP sets may be the proper tool for you." msgstr "" -#: gnu/packages/linux.scm:8682 +#: gnu/packages/linux.scm:8720 msgid "" "This is the io_uring library, liburing. liburing provides\n" "helpers to setup and teardown io_uring instances, and also a simplified\n" @@ -10129,14 +10286,14 @@ msgid "" "kernel side implementation." msgstr "" -#: gnu/packages/linux.scm:8710 +#: gnu/packages/linux.scm:8748 msgid "" "@acronym{EROFS, The Enhanced Read-Only File System} is a compressed,\n" "read-only file system optimized for resource-scarce devices. This package\n" "provides user-space tools for creating EROFS file systems." msgstr "" -#: gnu/packages/linux.scm:8754 +#: gnu/packages/linux.scm:8792 msgid "" "The @code{rasdaemon} daemon monitors platform @acronym{RAS, Reliability\n" "Availability and Serviceability} reports from Linux kernel trace events.\n" @@ -10144,7 +10301,7 @@ msgid "" "through standard log mechanisms like syslog." msgstr "" -#: gnu/packages/linux.scm:8788 +#: gnu/packages/linux.scm:8826 msgid "" "This package provides a C library with C++/Python bindings and\n" "command-line tools for interacting with GPIO devices that avoids the usage of\n" @@ -10170,33 +10327,33 @@ msgid "" "beginning." msgstr "" -#: gnu/packages/messaging.scm:181 +#: gnu/packages/messaging.scm:183 msgid "" "OMEMO-wget is a tool to handle cryptographic URLs, generated\n" "by @acronym{OMEMO, OMEMO Multi-End Message and Object Encryption}, during\n" "XMPP-based sessions." msgstr "" -#: gnu/packages/messaging.scm:237 +#: gnu/packages/messaging.scm:239 msgid "" "Psi is a capable XMPP client aimed at experienced users.\n" "Its design goals are simplicity and stability." msgstr "" -#: gnu/packages/messaging.scm:295 +#: gnu/packages/messaging.scm:297 msgid "" "GNT is an ncurses toolkit for creating text-mode graphical\n" "user interfaces in a fast and easy way. It is based on GLib and ncurses." msgstr "" -#: gnu/packages/messaging.scm:346 +#: gnu/packages/messaging.scm:348 msgid "" "LibGadu is library for handling Gadu-Gadu instant messenger\n" "protocol. The library is written in C and aims to be operating system and\n" "environment independent." msgstr "" -#: gnu/packages/messaging.scm:381 +#: gnu/packages/messaging.scm:383 msgid "" "SILC (Secure Internet Live Conferencing) is a modern and secure\n" "conferencing protocol. It provides all the common conferencing services like\n" @@ -10204,14 +10361,14 @@ msgid "" "conferencing." msgstr "" -#: gnu/packages/messaging.scm:427 +#: gnu/packages/messaging.scm:429 msgid "" "QXmpp is a XMPP client and server library written in C++ and uses the Qt\n" "framework. It builds XMPP clients complying with the XMPP Compliance Suites\n" "2021 for IM and Advanced Mobile." msgstr "" -#: gnu/packages/messaging.scm:454 +#: gnu/packages/messaging.scm:456 msgid "" "Meanwhile is a library for connecting to a LIM (Lotus Instant\n" "Messaging, formerly Lotus Sametime, formerly VPBuddy) community. It uses a\n" @@ -10219,7 +10376,7 @@ msgid "" "TCP sessions from existing clients." msgstr "" -#: gnu/packages/messaging.scm:500 +#: gnu/packages/messaging.scm:502 msgid "" "Poezio is a free console XMPP client (the protocol on which\n" "the Jabber IM network is built).\n" @@ -10232,7 +10389,7 @@ msgid "" "powerful, standard and open protocol." msgstr "" -#: gnu/packages/messaging.scm:533 +#: gnu/packages/messaging.scm:535 msgid "" "OTR allows you to have private conversations over instant\n" "messaging by providing: (1) Encryption: No one else can read your instant\n" @@ -10245,7 +10402,7 @@ msgid "" "your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:572 +#: gnu/packages/messaging.scm:574 msgid "" "libsignal-protocol-c is an implementation of a ratcheting\n" "forward secrecy protocol that works in synchronous and asynchronous\n" @@ -10253,20 +10410,20 @@ msgid "" "end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:609 +#: gnu/packages/messaging.scm:611 msgid "" "This is a client library for @code{libsignal-protocol-c}.\n" "It implements the necessary interfaces using @code{libgcrypt} and\n" "@code{sqlite}." msgstr "" -#: gnu/packages/messaging.scm:641 +#: gnu/packages/messaging.scm:643 msgid "" "This library implements @acronym{OMEMO, OMEMO Multi-End\n" "Message and Object Encryption} of XMPP (XEP-0384) in C." msgstr "" -#: gnu/packages/messaging.scm:681 +#: gnu/packages/messaging.scm:683 msgid "" "BitlBee brings IM (instant messaging) to IRC clients, for\n" "people who have an IRC client running all the time and don't want to run an\n" @@ -10276,20 +10433,20 @@ msgid "" "identi.ca and status.net)." msgstr "" -#: gnu/packages/messaging.scm:748 +#: gnu/packages/messaging.scm:750 msgid "" "Bitlbee-discord is a plugin for Bitlbee which provides\n" "access to servers running the Discord protocol." msgstr "" -#: gnu/packages/messaging.scm:794 +#: gnu/packages/messaging.scm:796 msgid "" "Purple-Mattermost is a plug-in for Purple, the instant messaging library\n" "used by Pidgin and Bitlbee, among others, to access\n" "@uref{https://mattermost.com/, Mattermost} servers." msgstr "" -#: gnu/packages/messaging.scm:852 +#: gnu/packages/messaging.scm:854 msgid "" "HexChat lets you connect to multiple IRC networks at once. The main\n" "window shows the list of currently connected networks and their channels, the\n" @@ -10298,7 +10455,7 @@ msgid "" "dictionaries. HexChat can be extended with multiple addons." msgstr "" -#: gnu/packages/messaging.scm:917 +#: gnu/packages/messaging.scm:919 msgid "" "ngIRCd is a lightweight @dfn{Internet Relay Chat} (IRC) server for small\n" "or private networks. It is easy to configure, can cope with dynamic IP\n" @@ -10306,13 +10463,13 @@ msgid "" "authentication." msgstr "" -#: gnu/packages/messaging.scm:1024 +#: gnu/packages/messaging.scm:1026 msgid "" "Pidgin is a modular instant messaging client that supports\n" "many popular chat protocols." msgstr "" -#: gnu/packages/messaging.scm:1064 +#: gnu/packages/messaging.scm:1066 msgid "" "Pidgin-OTR is a plugin that adds support for OTR to the Pidgin\n" "instant messaging client. OTR (Off-the-Record) Messaging allows you to have\n" @@ -10326,7 +10483,7 @@ msgid "" "control of your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:1118 +#: gnu/packages/messaging.scm:1120 msgid "" "ZNC is an @dfn{IRC network bouncer} or @dfn{BNC}. It can\n" "detach the client from the actual IRC server, and also from selected channels.\n" @@ -10334,41 +10491,41 @@ msgid "" "simultaneously and therefore appear under the same nickname on IRC." msgstr "" -#: gnu/packages/messaging.scm:1147 +#: gnu/packages/messaging.scm:1149 msgid "" "Python-nbxmpp is a Python library that provides a way for\n" "Python applications to use the XMPP network. This library was initially a fork\n" "of xmpppy." msgstr "" -#: gnu/packages/messaging.scm:1274 +#: gnu/packages/messaging.scm:1276 msgid "" "Gajim aims to be an easy to use and fully-featured XMPP chat\n" "client. It is extensible via plugins, supports end-to-end encryption (OMEMO\n" "and OpenPGP) and available in 29 languages." msgstr "" -#: gnu/packages/messaging.scm:1309 +#: gnu/packages/messaging.scm:1311 msgid "" "Gajim-OMEMO is a plugin that adds support for the OMEMO\n" "Encryption to Gajim. OMEMO is an XMPP Extension Protocol (XEP) for secure\n" "multi-client end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:1344 +#: gnu/packages/messaging.scm:1346 msgid "" "Gajim-OpenPGP is a plugin that adds support for the OpenPGP\n" "Encryption to Gajim." msgstr "" -#: gnu/packages/messaging.scm:1418 +#: gnu/packages/messaging.scm:1420 msgid "" "Dino is a chat client for the desktop. It focuses on providing\n" "a minimal yet reliable Jabber/XMPP experience and having encryption enabled by\n" "default." msgstr "" -#: gnu/packages/messaging.scm:1505 +#: gnu/packages/messaging.scm:1507 msgid "" "Prosody is a modern XMPP communication server. It aims to\n" "be easy to set up and configure, and efficient with system resources.\n" @@ -10377,43 +10534,43 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/messaging.scm:1540 +#: gnu/packages/messaging.scm:1542 msgid "" "This module implements XEP-0363: it allows clients to\n" "upload files over HTTP." msgstr "" -#: gnu/packages/messaging.scm:1572 +#: gnu/packages/messaging.scm:1574 msgid "" "This module implements XEP-0198: when supported by both\n" "the client and server, it can allow clients to resume a disconnected session,\n" "and prevent message loss." msgstr "" -#: gnu/packages/messaging.scm:1601 +#: gnu/packages/messaging.scm:1603 msgid "C library implementation of the Tox encrypted messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1633 +#: gnu/packages/messaging.scm:1635 msgid "" "Official fork of the C library implementation of the Tox encrypted\n" "messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1687 +#: gnu/packages/messaging.scm:1689 msgid "" "uTox is a lightweight Tox client. Tox is a distributed and secure\n" "instant messenger with audio and video chat capabilities." msgstr "" -#: gnu/packages/messaging.scm:1750 +#: gnu/packages/messaging.scm:1752 msgid "" "qTox is a Tox client that follows the Tox design\n" "guidelines. It provides an easy to use application that allows you to\n" "connect with friends and family without anyone else listening in." msgstr "" -#: gnu/packages/messaging.scm:1772 +#: gnu/packages/messaging.scm:1774 msgid "" "Ytalk is a replacement for the BSD talk program. Its main\n" "advantage is the ability to communicate with any arbitrary number of users at\n" @@ -10421,7 +10578,7 @@ msgid "" "with several different talk daemons at the same time." msgstr "" -#: gnu/packages/messaging.scm:1796 +#: gnu/packages/messaging.scm:1798 msgid "" "gloox is a full-featured Jabber/XMPP client library,\n" "written in ANSI C++. It makes writing spec-compliant clients easy\n" @@ -10429,7 +10586,7 @@ msgid "" "into existing applications." msgstr "" -#: gnu/packages/messaging.scm:1866 +#: gnu/packages/messaging.scm:1868 msgid "" "@code{Net::PSYC} with support for TCP, UDP, Event.pm, @code{IO::Select} and\n" "Gtk2 event loops. This package includes 12 applications and additional scripts:\n" @@ -10437,14 +10594,14 @@ msgid "" "for @uref{https://torproject.org,tor} router) and many more." msgstr "" -#: gnu/packages/messaging.scm:1907 +#: gnu/packages/messaging.scm:1909 msgid "" "@code{libpsyc} is a PSYC library in C which implements\n" "core aspects of PSYC, useful for all kinds of clients and servers\n" "including psyced." msgstr "" -#: gnu/packages/messaging.scm:1949 +#: gnu/packages/messaging.scm:1951 msgid "" "Loudmouth is a lightweight and easy-to-use C library for programming\n" "with the XMPP (formerly known as Jabber) protocol. It is designed to be\n" @@ -10452,7 +10609,7 @@ msgid "" "protocol allows." msgstr "" -#: gnu/packages/messaging.scm:1991 +#: gnu/packages/messaging.scm:1993 msgid "" "Mcabber is a small XMPP (Jabber) console client, which includes features\n" "such as SASL and TLS support, @dfn{Multi-User Chat} (MUC) support, logging,\n" @@ -10460,7 +10617,7 @@ msgid "" "support, and more." msgstr "" -#: gnu/packages/messaging.scm:2039 +#: gnu/packages/messaging.scm:2041 msgid "" "GNU Freetalk is a command-line Jabber/XMPP chat client. It notably uses\n" "the Readline library to handle input, so it features convenient navigation of\n" @@ -10468,27 +10625,27 @@ msgid "" "is also scriptable and extensible via Guile." msgstr "" -#: gnu/packages/messaging.scm:2074 +#: gnu/packages/messaging.scm:2076 msgid "" "Libmesode is a fork of libstrophe for use with Profanity\n" "XMPP Client. In particular, libmesode provides extra TLS functionality such as\n" "manual SSL certificate verification." msgstr "" -#: gnu/packages/messaging.scm:2109 +#: gnu/packages/messaging.scm:2111 msgid "" "Libstrophe is a minimal XMPP library written in C. It has\n" "almost no external dependencies, only an XML parsing library (expat or libxml\n" "are both supported)." msgstr "" -#: gnu/packages/messaging.scm:2167 +#: gnu/packages/messaging.scm:2169 msgid "" "Profanity is a console based XMPP client written in C\n" "using ncurses and libmesode, inspired by Irssi." msgstr "" -#: gnu/packages/messaging.scm:2197 +#: gnu/packages/messaging.scm:2199 msgid "" "Libircclient is a library which implements the client IRC\n" "protocol. It is designed to be small, fast, portable and compatible with the\n" @@ -10496,14 +10653,14 @@ msgid "" "building the IRC clients and bots." msgstr "" -#: gnu/packages/messaging.scm:2255 +#: gnu/packages/messaging.scm:2257 msgid "" "Toxic is a console-based instant messaging client, using\n" "c-toxcore and ncurses. It provides audio calls, sound and desktop\n" "notifications, and Python scripting support." msgstr "" -#: gnu/packages/messaging.scm:2281 +#: gnu/packages/messaging.scm:2283 msgid "" "libqmatrixclient is a Qt5 library to write clients for the\n" "Matrix instant messaging protocol. Quaternion is the reference client\n" @@ -10511,13 +10668,13 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2326 +#: gnu/packages/messaging.scm:2330 msgid "" "@code{mtxclient} is a C++ library that implements client API\n" "for the Matrix protocol. It is built on to of @code{Boost.Asio}." msgstr "" -#: gnu/packages/messaging.scm:2418 +#: gnu/packages/messaging.scm:2423 msgid "" "@code{Nheko} want to provide a native desktop app for the\n" "Matrix protocol that feels more like a mainstream chat app and less like an IRC\n" @@ -10527,7 +10684,7 @@ msgid "" "notification, emojis, E2E encryption, and voip calls." msgstr "" -#: gnu/packages/messaging.scm:2455 +#: gnu/packages/messaging.scm:2460 msgid "" "Quaternion is a Qt5 desktop client for the Matrix instant\n" "messaging protocol. It uses libqmatrixclient and is its reference client\n" @@ -10535,7 +10692,7 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2502 +#: gnu/packages/messaging.scm:2507 msgid "" "Hangups is an instant messaging client for Google Hangouts. It includes\n" "both a Python library and a reference client with a text-based user interface.\n" @@ -10545,7 +10702,7 @@ msgid "" "messaging that aren’t available to clients that connect over XMPP." msgstr "" -#: gnu/packages/messaging.scm:2584 +#: gnu/packages/messaging.scm:2589 msgid "" "Telegram-purple is a plugin for Libpurple, the communication library\n" "used by the Pidgin instant messaging client, that adds support for the\n" @@ -10555,7 +10712,7 @@ msgid "" "replacement." msgstr "" -#: gnu/packages/messaging.scm:2629 +#: gnu/packages/messaging.scm:2632 msgid "" "Tdlib is a cross-platform library for creating custom\n" "Telegram clients following the official Telegram API. It can be easily used\n" @@ -10563,11 +10720,11 @@ msgid "" "support for high performance Telegram Bot creation." msgstr "" -#: gnu/packages/messaging.scm:2667 +#: gnu/packages/messaging.scm:2670 msgid "Plugin for libpurple to allow sending SMS using ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2712 +#: gnu/packages/messaging.scm:2715 msgid "" "Purple-lurch plugin adds end-to-end encryption support\n" "through the Double Ratchet (Axolotl) algorithm, to @code{libpurple}\n" @@ -10578,19 +10735,19 @@ msgid "" "asynchronicity." msgstr "" -#: gnu/packages/messaging.scm:2748 +#: gnu/packages/messaging.scm:2751 msgid "" "This package provides a C++ library for parsing, formatting, and\n" "validating international phone numbers." msgstr "" -#: gnu/packages/messaging.scm:2793 +#: gnu/packages/messaging.scm:2796 msgid "" "Chatty is a chat program for XMPP and SMS. It works on mobile\n" "as well as on desktop platforms. It's based on libpurple and ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2814 +#: gnu/packages/messaging.scm:2817 msgid "" "This package provides Eclipse Mosquitto, a message broker\n" "that implements the MQTT protocol versions 5.0, 3.1.1 and 3.1. Mosquitto\n" @@ -10603,27 +10760,27 @@ msgid "" "as phones, embedded computers or microcontrollers." msgstr "" -#: gnu/packages/messaging.scm:2864 +#: gnu/packages/messaging.scm:2867 msgid "" "Movim-Desktop is a desktop application, relying on Qt, for the Movim\n" "social and chat platform." msgstr "" -#: gnu/packages/messaging.scm:2999 +#: gnu/packages/messaging.scm:3002 msgid "" "Psi+ is a spin-off of Psi XMPP client. It is a powerful XMPP client\n" "designed for experienced users." msgstr "" -#: gnu/packages/messaging.scm:3039 +#: gnu/packages/messaging.scm:3042 msgid "This package provides Python bindings to Zulip's API." msgstr "" -#: gnu/packages/messaging.scm:3088 +#: gnu/packages/messaging.scm:3091 msgid "This package contains Zulip's official terminal client." msgstr "" -#: gnu/packages/messaging.scm:3110 +#: gnu/packages/messaging.scm:3113 msgid "" "Relays messages between different channels from various\n" "messaging networks and protocols. So far it supports mattermost, IRC, gitter,\n" @@ -10632,20 +10789,20 @@ msgid "" "API. Mattermost is not required." msgstr "" -#: gnu/packages/messaging.scm:3143 +#: gnu/packages/messaging.scm:3146 msgid "" "@command{pounce} is a multi-client, TLS-only IRC bouncer. It maintains\n" "a persistent connection to an IRC server, acting as a proxy and buffer for\n" "a number of clients." msgstr "" -#: gnu/packages/messaging.scm:3209 +#: gnu/packages/messaging.scm:3212 msgid "" "@code{weechat-matrix} is a Python plugin for Weechat that lets\n" "Weechat communicate over the Matrix protocol." msgstr "" -#: gnu/packages/messaging.scm:3256 +#: gnu/packages/messaging.scm:3259 msgid "" "@code{weechat-wee-slack} is a WeeChat native client for\n" "Slack. It provides supplemental features only available in the web/mobile\n" @@ -10754,14 +10911,14 @@ msgid "" "themselves." msgstr "" -#: gnu/packages/networking.scm:174 +#: gnu/packages/networking.scm:176 msgid "" "UsrSCTP is a portable SCTP userland stack. SCTP is a message\n" "oriented, reliable transport protocol with direct support for multihoming that\n" "runs on top of IP or UDP, and supports both v4 and v6 versions." msgstr "" -#: gnu/packages/networking.scm:199 +#: gnu/packages/networking.scm:201 msgid "" "Axel tries to accelerate the download process by using multiple\n" "connections per file, and can also balance the load between different\n" @@ -10770,38 +10927,38 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/networking.scm:264 +#: gnu/packages/networking.scm:266 msgid "" "LibCamera is a complex camera support library for GNU+Linux,\n" "Android, and ChromeOS." msgstr "" -#: gnu/packages/networking.scm:334 +#: gnu/packages/networking.scm:336 msgid "" "LibNice is a library that implements the Interactive\n" "Connectivity Establishment (ICE) standard (RFC 5245 & RFC 8445). It provides a\n" "GLib-based library, libnice, as well as GStreamer elements to use it." msgstr "" -#: gnu/packages/networking.scm:393 +#: gnu/packages/networking.scm:395 msgid "" "RTMPdump is a toolkit for RTMP streams. All forms of RTMP are\n" "supported, including rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps://." msgstr "" -#: gnu/packages/networking.scm:422 +#: gnu/packages/networking.scm:424 msgid "" "Slurm is a network load monitor. It shows real-time traffic statistics\n" "from any network device in any of three ASCII graph formats." msgstr "" -#: gnu/packages/networking.scm:457 +#: gnu/packages/networking.scm:459 msgid "" "SRT is a transport technology that optimizes streaming\n" "performance across unpredictable networks, such as the Internet." msgstr "" -#: gnu/packages/networking.scm:500 +#: gnu/packages/networking.scm:502 msgid "" "The lksctp-tools project provides a user-space library for @acronym{SCTP,\n" "the Stream Control Transmission Protocol} (@file{libsctp}) and C language header\n" @@ -10810,13 +10967,13 @@ msgid "" "It also includes some SCTP-related helper utilities." msgstr "" -#: gnu/packages/networking.scm:541 +#: gnu/packages/networking.scm:543 msgid "" "@code{pysctp} implements the SCTP socket API. You need a\n" "SCTP-aware kernel (most are)." msgstr "" -#: gnu/packages/networking.scm:565 +#: gnu/packages/networking.scm:567 msgid "" "@command{knockd} is a port-knock daemon. It listens to all traffic on\n" "an ethernet or PPP interface, looking for special \"knock\" sequences of @dfn{port-hits}\n" @@ -10824,7 +10981,7 @@ msgid "" "at the link-layer level." msgstr "" -#: gnu/packages/networking.scm:605 +#: gnu/packages/networking.scm:607 msgid "" "NNG project is a rewrite of the scalability protocols library\n" "known as libnanomsg, and adds significant new capabilities, while retaining\n" @@ -10833,7 +10990,7 @@ msgid "" "publish/subscribe, RPC-style request/reply, or service discovery." msgstr "" -#: gnu/packages/networking.scm:648 +#: gnu/packages/networking.scm:650 msgid "" "Nanomsg is a socket library that provides several common\n" "communication patterns. It aims to make the networking layer fast, scalable,\n" @@ -10841,14 +10998,14 @@ msgid "" "systems with no further dependencies." msgstr "" -#: gnu/packages/networking.scm:758 +#: gnu/packages/networking.scm:760 msgid "" "Blueman is a Bluetooth management utility using the Bluez\n" "D-Bus backend. It is designed to be easy to use for most common Bluetooth\n" "tasks." msgstr "" -#: gnu/packages/networking.scm:783 +#: gnu/packages/networking.scm:785 msgid "" "GNU MAC Changer is a utility for viewing and changing MAC\n" "addresses of networking devices. New addresses may be set explicitly or\n" @@ -10856,14 +11013,14 @@ msgid "" "or, more generally, MAC addresses of the same category of hardware." msgstr "" -#: gnu/packages/networking.scm:831 +#: gnu/packages/networking.scm:833 msgid "" "Miredo is an implementation (client, relay, server) of the Teredo\n" "specification, which provides IPv6 Internet connectivity to IPv6 enabled hosts\n" "residing in IPv4-only networks, even when they are behind a NAT device." msgstr "" -#: gnu/packages/networking.scm:851 +#: gnu/packages/networking.scm:853 msgid "" "NDisc6 is a collection of tools for IPv6 networking diagnostics.\n" "It includes the following programs:\n" @@ -10877,7 +11034,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:904 +#: gnu/packages/networking.scm:906 msgid "" "@command{parprouted} is a daemon for transparent IP (Layer@tie{}3)\n" "proxy ARP bridging. Unlike standard bridging, proxy ARP bridging can bridge\n" @@ -10887,7 +11044,14 @@ msgid "" "useful for making transparent firewalls." msgstr "" -#: gnu/packages/networking.scm:931 +#: gnu/packages/networking.scm:945 +msgid "" +"@command{pproxy} is an asynchronuous proxy server implemented with\n" +"Python 3 @code{asyncio}. Among the supported protocols are HTTP, SOCKS\n" +"and SSH, and it can use both TCP and UDP as transport mechanisms." +msgstr "" + +#: gnu/packages/networking.scm:969 msgid "" "socat is a relay for bidirectional data transfer between two independent\n" "data channels---files, pipes, devices, sockets, etc. It can create\n" @@ -10900,7 +11064,7 @@ msgid "" "or server shell scripts with network connections." msgstr "" -#: gnu/packages/networking.scm:962 +#: gnu/packages/networking.scm:1000 msgid "" "mbuffer is a tool for buffering data streams with a large set of features:\n" "\n" @@ -10916,14 +11080,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1058 +#: gnu/packages/networking.scm:1096 msgid "" "With this package you can monitor and filter incoming requests for\n" "network services. It includes a library which may be used by daemons to\n" "transparently check connection attempts against an access control list." msgstr "" -#: gnu/packages/networking.scm:1081 +#: gnu/packages/networking.scm:1119 msgid "" "The 0MQ lightweight messaging kernel is a library which extends the\n" "standard socket interfaces with features traditionally provided by specialized\n" @@ -10933,46 +11097,46 @@ msgid "" "more." msgstr "" -#: gnu/packages/networking.scm:1110 +#: gnu/packages/networking.scm:1148 msgid "" "czmq provides bindings for the ØMQ core API that hides the differences\n" "between different versions of ØMQ." msgstr "" -#: gnu/packages/networking.scm:1141 +#: gnu/packages/networking.scm:1179 msgid "" "This package provides header-only C++ bindings for ØMQ. The header\n" "files contain direct mappings of the abstractions provided by the ØMQ C API." msgstr "" -#: gnu/packages/networking.scm:1175 +#: gnu/packages/networking.scm:1213 msgid "" "@code{libnatpmp} is a portable and asynchronous implementation of\n" "the Network Address Translation - Port Mapping Protocol (NAT-PMP)\n" "written in the C programming language." msgstr "" -#: gnu/packages/networking.scm:1213 +#: gnu/packages/networking.scm:1251 msgid "" "librdkafka is a C library implementation of the Apache Kafka protocol,\n" "containing both Producer and Consumer support." msgstr "" -#: gnu/packages/networking.scm:1232 +#: gnu/packages/networking.scm:1270 msgid "" "libndp contains a library which provides a wrapper for IPv6 Neighbor\n" "Discovery Protocol. It also provides a tool named ndptool for sending and\n" "receiving NDP messages." msgstr "" -#: gnu/packages/networking.scm:1256 +#: gnu/packages/networking.scm:1294 msgid "" "ethtool can be used to query and change settings such as speed,\n" "auto-negotiation and checksum offload on many network devices, especially\n" "Ethernet devices." msgstr "" -#: gnu/packages/networking.scm:1298 +#: gnu/packages/networking.scm:1336 msgid "" "IFStatus is a simple, easy-to-use program for displaying commonly\n" "needed/wanted real-time traffic statistics of multiple network\n" @@ -10980,7 +11144,7 @@ msgid "" "intended as a substitute for the PPPStatus and EthStatus projects." msgstr "" -#: gnu/packages/networking.scm:1347 +#: gnu/packages/networking.scm:1385 msgid "" "This package contains a variety of tools for dealing with network\n" "configuration, troubleshooting, or servers. Utilities included are:\n" @@ -11001,7 +11165,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1388 +#: gnu/packages/networking.scm:1426 msgid "" "Nload is a console application which monitors network traffic and\n" "bandwidth usage in real time. It visualizes the in- and outgoing traffic using\n" @@ -11009,7 +11173,7 @@ msgid "" "and min/max network usage." msgstr "" -#: gnu/packages/networking.scm:1432 +#: gnu/packages/networking.scm:1470 msgid "" "Iodine tunnels IPv4 data through a DNS server. This\n" "can be useful in different situations where internet access is firewalled, but\n" @@ -11017,7 +11181,7 @@ msgid "" "and up to 1 Mbit/s downstream." msgstr "" -#: gnu/packages/networking.scm:1473 +#: gnu/packages/networking.scm:1511 msgid "" "whois searches for an object in a @dfn{WHOIS} (RFC 3912) database.\n" "It is commonly used to look up the registered users or assignees of an Internet\n" @@ -11029,14 +11193,14 @@ msgid "" "of the same name." msgstr "" -#: gnu/packages/networking.scm:1553 +#: gnu/packages/networking.scm:1591 msgid "" "Wireshark is a network protocol analyzer, or @dfn{packet\n" "sniffer}, that lets you capture and interactively browse the contents of\n" "network frames." msgstr "" -#: gnu/packages/networking.scm:1574 +#: gnu/packages/networking.scm:1613 msgid "" "fping is a ping-like program which uses @acronym{ICMP, Internet Control\n" "Message Protocol} echo requests to determine if a target host is responding.\n" @@ -11048,26 +11212,26 @@ msgid "" "round-robin fashion." msgstr "" -#: gnu/packages/networking.scm:1625 +#: gnu/packages/networking.scm:1664 msgid "" "This package provides a command-line client (@command{gandi}) to buy,\n" "manage, and delete Internet resources from Gandi.net such as domain names,\n" "virtual machines, and certificates." msgstr "" -#: gnu/packages/networking.scm:1651 +#: gnu/packages/networking.scm:1690 msgid "" "The netns package provides a simple interface for\n" "handling network namespaces in Go." msgstr "" -#: gnu/packages/networking.scm:1678 +#: gnu/packages/networking.scm:1717 msgid "" "This library provides methods for using the stream control\n" "transmission protocol (SCTP) in a Go application." msgstr "" -#: gnu/packages/networking.scm:1707 +#: gnu/packages/networking.scm:1746 msgid "" "httping measures how long it takes to connect to a web server, send an\n" "HTTP(S) request, and receive the reply headers. It is somewhat similar to\n" @@ -11076,7 +11240,7 @@ msgid "" "application stack itself." msgstr "" -#: gnu/packages/networking.scm:1746 +#: gnu/packages/networking.scm:1785 msgid "" "@command{httpstat} is a tool to visualize statistics from the\n" "@command{curl} HTTP client. It acts as a wrapper for @command{curl} and\n" @@ -11084,20 +11248,20 @@ msgid "" "TCP connection, TLS handshake and so on) in the terminal." msgstr "" -#: gnu/packages/networking.scm:1788 +#: gnu/packages/networking.scm:1827 msgid "" "Squid is a caching proxy for the Web supporting HTTP, HTTPS,\n" "FTP, and more. It reduces bandwidth and improves response times by caching and\n" "reusing frequently-requested web pages." msgstr "" -#: gnu/packages/networking.scm:1822 +#: gnu/packages/networking.scm:1861 msgid "" "Bandwidth Monitor NG is a small and simple console based\n" "live network and disk I/O bandwidth monitor." msgstr "" -#: gnu/packages/networking.scm:1874 +#: gnu/packages/networking.scm:1913 msgid "" "Aircrack-ng is a complete suite of tools to assess WiFi network\n" "security. It focuses on different areas of WiFi security: monitoring,\n" @@ -11105,14 +11269,14 @@ msgid "" "allows for heavy scripting." msgstr "" -#: gnu/packages/networking.scm:1903 +#: gnu/packages/networking.scm:1942 msgid "" "Pixiewps implements the pixie-dust attack to brute\n" "force the Wi-Fi Protected Setup (WPS) PIN by exploiting the low or\n" "non-existing entropy of some access points." msgstr "" -#: gnu/packages/networking.scm:1949 +#: gnu/packages/networking.scm:1988 msgid "" "Reaver performs a brute force attack against an access\n" "point's Wi-Fi Protected Setup (WPS) PIN. Once the PIN is found, the WPA\n" @@ -11120,7 +11284,7 @@ msgid "" "reconfigured." msgstr "" -#: gnu/packages/networking.scm:1974 +#: gnu/packages/networking.scm:2013 msgid "" "Danga::Socket is an abstract base class for objects backed by a socket\n" "which provides the basic framework for event-driven asynchronous IO, designed\n" @@ -11128,7 +11292,7 @@ msgid "" "loop." msgstr "" -#: gnu/packages/networking.scm:2000 +#: gnu/packages/networking.scm:2039 msgid "" "This module provides several IP address validation subroutines that both\n" "validate and untaint their input. This includes both basic validation\n" @@ -11137,62 +11301,62 @@ msgid "" "private (reserved)." msgstr "" -#: gnu/packages/networking.scm:2028 +#: gnu/packages/networking.scm:2067 msgid "Net::DNS is the Perl Interface to the Domain Name System." msgstr "" -#: gnu/packages/networking.scm:2060 +#: gnu/packages/networking.scm:2099 msgid "" "Socket6 binds the IPv6 related part of the C socket header\n" "definitions and structure manipulators for Perl." msgstr "" -#: gnu/packages/networking.scm:2087 +#: gnu/packages/networking.scm:2126 msgid "" "Net::DNS::Resolver::Programmable is a programmable DNS resolver for\n" "offline emulation of DNS." msgstr "" -#: gnu/packages/networking.scm:2109 +#: gnu/packages/networking.scm:2148 msgid "" "Net::DNS::Resolver::Mock is a subclass of Net::DNS::Resolver, but returns\n" "static data from any provided DNS zone file instead of querying the network.\n" "It is intended primarily for use in testing." msgstr "" -#: gnu/packages/networking.scm:2144 +#: gnu/packages/networking.scm:2183 msgid "NetAddr::IP manages IPv4 and IPv6 addresses and subsets." msgstr "" -#: gnu/packages/networking.scm:2177 +#: gnu/packages/networking.scm:2216 msgid "Net::Patricia does IP address lookups quickly in Perl." msgstr "" -#: gnu/packages/networking.scm:2198 +#: gnu/packages/networking.scm:2237 msgid "Net::CIDR::Lite merges IPv4 or IPv6 CIDR addresses." msgstr "" -#: gnu/packages/networking.scm:2225 +#: gnu/packages/networking.scm:2264 msgid "" "IO::Socket::INET6 is an interface for AF_INET/AF_INET6 domain\n" "sockets in Perl." msgstr "" -#: gnu/packages/networking.scm:2258 +#: gnu/packages/networking.scm:2293 msgid "" "Libproxy handles the details of HTTP/HTTPS proxy\n" "configuration for applications across all scenarios. Applications using\n" "libproxy only have to specify which proxy to use." msgstr "" -#: gnu/packages/networking.scm:2292 +#: gnu/packages/networking.scm:2327 msgid "" "Proxychains-ng is a preloader which hooks calls to sockets\n" "in dynamically linked programs and redirects them through one or more SOCKS or\n" "HTTP proxies." msgstr "" -#: gnu/packages/networking.scm:2314 +#: gnu/packages/networking.scm:2349 msgid "" "ENet's purpose is to provide a relatively thin, simple and robust network\n" "communication layer on top of UDP. The primary feature it provides is optional\n" @@ -11202,7 +11366,7 @@ msgid "" "library remains flexible, portable, and easily embeddable." msgstr "" -#: gnu/packages/networking.scm:2378 +#: gnu/packages/networking.scm:2413 msgid "" "sslh is a network protocol demultiplexer. It acts like a switchboard,\n" "accepting connections from clients on one port and forwarding them to different\n" @@ -11214,7 +11378,7 @@ msgid "" "that block port 22." msgstr "" -#: gnu/packages/networking.scm:2408 +#: gnu/packages/networking.scm:2443 msgid "" "iPerf is a tool to measure achievable bandwidth on IP networks. It\n" "supports tuning of various parameters related to timing, buffers and\n" @@ -11222,7 +11386,7 @@ msgid "" "the bandwidth, loss, and other parameters." msgstr "" -#: gnu/packages/networking.scm:2445 +#: gnu/packages/networking.scm:2480 msgid "" "NetHogs is a small 'net top' tool for Linux. Instead of\n" "breaking the traffic down per protocol or per subnet, like most tools do, it\n" @@ -11234,7 +11398,7 @@ msgid "" "gone wild and are suddenly taking up your bandwidth." msgstr "" -#: gnu/packages/networking.scm:2481 +#: gnu/packages/networking.scm:2516 msgid "" "NZBGet is a binary newsgrabber, which downloads files from Usenet based\n" "on information given in @code{nzb} files. NZBGet can be used in standalone\n" @@ -11244,7 +11408,7 @@ msgid "" "procedure calls (RPCs)." msgstr "" -#: gnu/packages/networking.scm:2562 +#: gnu/packages/networking.scm:2597 msgid "" "Open vSwitch is a multilayer virtual switch. It is designed to enable\n" "massive network automation through programmatic extension, while still\n" @@ -11252,27 +11416,27 @@ msgid "" "IPFIX, RSPAN, CLI, LACP, 802.1ag)." msgstr "" -#: gnu/packages/networking.scm:2585 +#: gnu/packages/networking.scm:2620 msgid "" "The @code{IP} class allows a comfortable parsing and\n" "handling for most notations in use for IPv4 and IPv6 addresses and\n" "networks." msgstr "" -#: gnu/packages/networking.scm:2610 +#: gnu/packages/networking.scm:2645 msgid "" "Command line interface for testing internet bandwidth using\n" "speedtest.net." msgstr "" -#: gnu/packages/networking.scm:2630 +#: gnu/packages/networking.scm:2668 msgid "" "This is a tftp client derived from OpenBSD tftp with some extra options\n" "added and bugs fixed. The source includes readline support but it is not\n" "enabled due to license conflicts between the BSD advertising clause and the GPL." msgstr "" -#: gnu/packages/networking.scm:2682 +#: gnu/packages/networking.scm:2720 msgid "" "Spiped (pronounced \"ess-pipe-dee\") is a utility for creating\n" "symmetrically encrypted and authenticated pipes between socket addresses, so\n" @@ -11282,7 +11446,7 @@ msgid "" "does not use SSH and requires a pre-shared symmetric key." msgstr "" -#: gnu/packages/networking.scm:2708 +#: gnu/packages/networking.scm:2746 msgid "" "Quagga is a routing software suite, providing implementations\n" "of OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4 for Unix platforms.\n" @@ -11294,14 +11458,14 @@ msgid "" "updates to the zebra daemon." msgstr "" -#: gnu/packages/networking.scm:2758 +#: gnu/packages/networking.scm:2796 msgid "" "The THC IPv6 Toolkit provides command-line tools and a library\n" "for researching IPv6 implementations and deployments. It requires Linux 2.6 or\n" "newer and only works on Ethernet network interfaces." msgstr "" -#: gnu/packages/networking.scm:2783 +#: gnu/packages/networking.scm:2821 msgid "" "bmon is a monitoring and debugging tool to capture\n" "networking-related statistics and prepare them visually in a human-friendly\n" @@ -11309,7 +11473,7 @@ msgid "" "interface and a programmable text output for scripting." msgstr "" -#: gnu/packages/networking.scm:2821 +#: gnu/packages/networking.scm:2859 msgid "" "Libnet provides a fairly portable framework for network packet\n" "construction and injection. It features portable packet creation interfaces\n" @@ -11318,7 +11482,7 @@ msgid "" "can be whipped up with little effort." msgstr "" -#: gnu/packages/networking.scm:2847 +#: gnu/packages/networking.scm:2885 msgid "" "@acronym{mtr, My TraceRoute} combines the functionality of the\n" "@command{traceroute} and @command{ping} programs in a single network diagnostic\n" @@ -11328,7 +11492,7 @@ msgid "" "displays the results in real time." msgstr "" -#: gnu/packages/networking.scm:2900 +#: gnu/packages/networking.scm:2938 msgid "" "aMule is an eMule-like client for the eD2k and Kademlia peer-to-peer\n" "file sharing networks. It includes a graphical user interface (GUI), a daemon\n" @@ -11337,7 +11501,7 @@ msgid "" "remotely." msgstr "" -#: gnu/packages/networking.scm:2922 +#: gnu/packages/networking.scm:2960 msgid "" "Zyre provides reliable group messaging over local area\n" "networks using zeromq. It has these key characteristics:\n" @@ -11354,13 +11518,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:2956 +#: gnu/packages/networking.scm:2994 msgid "" "This library allows controlling basic functions in SocketCAN\n" "from user-space. It requires a kernel built with SocketCAN support." msgstr "" -#: gnu/packages/networking.scm:2985 +#: gnu/packages/networking.scm:3023 msgid "" "This package provides CAN utilities in the following areas:\n" "\n" @@ -11376,14 +11540,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3021 +#: gnu/packages/networking.scm:3059 msgid "" "Asio is a cross-platform C++ library for network and\n" "low-level I/O programming that provides developers with a consistent\n" "asynchronous model using a modern C++ approach." msgstr "" -#: gnu/packages/networking.scm:3056 +#: gnu/packages/networking.scm:3094 msgid "" "This package is a fast tunnel proxy that helps you bypass firewalls.\n" "\n" @@ -11397,7 +11561,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3134 +#: gnu/packages/networking.scm:3172 msgid "" "The @dfn{Simple Network Management Protocol} (SNMP) is a\n" "widely used protocol for monitoring the health and welfare of network\n" @@ -11406,20 +11570,20 @@ msgid "" "SNMP v3 using both IPv4 and IPv6." msgstr "" -#: gnu/packages/networking.scm:3181 +#: gnu/packages/networking.scm:3219 msgid "" "uBridge is a simple program to create user-land bridges\n" "between various technologies. Currently, bridging between UDP tunnels,\n" "Ethernet and TAP interfaces is supported. Packet capture is also supported." msgstr "" -#: gnu/packages/networking.scm:3213 +#: gnu/packages/networking.scm:3251 msgid "" "This package contains a small set of tools to capture and convert\n" "packets from wireless devices for use with hashcat or John the Ripper." msgstr "" -#: gnu/packages/networking.scm:3244 +#: gnu/packages/networking.scm:3282 msgid "" "Small tool to capture packets from WLAN devices. After capturing,\n" "upload the \"uncleaned\" cap to @url{https://wpa-sec.stanev.org/?submit} to\n" @@ -11429,7 +11593,7 @@ msgid "" "and check if the WLAN key or the master key was transmitted unencrypted." msgstr "" -#: gnu/packages/networking.scm:3271 +#: gnu/packages/networking.scm:3309 msgid "" "Dante is a SOCKS client and server implementation. It can\n" "be installed on a machine with access to an external TCP/IP network and will\n" @@ -11438,21 +11602,21 @@ msgid "" "never see any machines other than the one Dante is running on." msgstr "" -#: gnu/packages/networking.scm:3318 +#: gnu/packages/networking.scm:3356 msgid "" "Restbed is a comprehensive and consistent programming\n" "model for building applications that require seamless and secure\n" "communication over HTTP." msgstr "" -#: gnu/packages/networking.scm:3358 +#: gnu/packages/networking.scm:3396 msgid "" "RESTinio is a header-only C++14 library that gives you an embedded\n" "HTTP/Websocket server. It is based on standalone version of ASIO\n" "and targeted primarily for asynchronous processing of HTTP-requests." msgstr "" -#: gnu/packages/networking.scm:3446 +#: gnu/packages/networking.scm:3487 msgid "" "OpenDHT provides an easy to use distributed in-memory data\n" "store. Every node in the network can read and write values to the store.\n" @@ -11479,20 +11643,20 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/networking.scm:3490 +#: gnu/packages/networking.scm:3531 msgid "" "FRRouting (FRR) is an IP routing protocol suite which includes\n" "protocol daemons for BGP, IS-IS, LDP, OSPF, PIM, and RIP." msgstr "" -#: gnu/packages/networking.scm:3520 +#: gnu/packages/networking.scm:3561 msgid "" "BIRD is an Internet routing daemon with full support for all\n" "the major routing protocols. It allows redistribution between protocols with a\n" "powerful route filtering syntax and an easy-to-use configuration interface." msgstr "" -#: gnu/packages/networking.scm:3568 +#: gnu/packages/networking.scm:3609 msgid "" "iwd is a wireless daemon for Linux that aims to replace WPA\n" "Supplicant. It optimizes resource utilization by not depending on any external\n" @@ -11500,21 +11664,21 @@ msgid "" "maximum extent possible." msgstr "" -#: gnu/packages/networking.scm:3595 +#: gnu/packages/networking.scm:3636 msgid "" "libyang is a YANG data modelling language parser and toolkit\n" "written (and providing API) in C. Current implementation covers YANG 1.0 (RFC\n" "6020) as well as YANG 1.1 (RFC 7950)." msgstr "" -#: gnu/packages/networking.scm:3629 +#: gnu/packages/networking.scm:3670 msgid "" "This package provides a control tool for the\n" "B.A.T.M.A.N. mesh networking routing protocol provided by the Linux kernel\n" "module @code{batman-adv}, for Layer 2." msgstr "" -#: gnu/packages/networking.scm:3662 +#: gnu/packages/networking.scm:3703 msgid "" "PageKite implements a tunneled reverse proxy which makes it easy to make\n" "a service (such as an HTTP or SSH server) on localhost visible to the wider\n" @@ -11522,7 +11686,7 @@ msgid "" "service is available at @url{https://pagekite.net/}, or you can run your own." msgstr "" -#: gnu/packages/networking.scm:3706 +#: gnu/packages/networking.scm:3747 msgid "" "ipcalc takes an IP address and netmask and calculates the\n" "resulting broadcast, network, Cisco wildcard mask, and host range. By giving\n" @@ -11531,7 +11695,7 @@ msgid "" "easy-to-understand binary values." msgstr "" -#: gnu/packages/networking.scm:3745 +#: gnu/packages/networking.scm:3786 msgid "" "Tunctl is used to set up and maintain persistent TUN/TAP\n" "network interfaces, enabling user applications to simulate network traffic.\n" @@ -11539,13 +11703,13 @@ msgid "" "simulation, and a number of other applications." msgstr "" -#: gnu/packages/networking.scm:3765 +#: gnu/packages/networking.scm:3806 msgid "" "Tool to send a magic packet to wake another host on the\n" "network. This must be enabled on the target host, usually in the BIOS." msgstr "" -#: gnu/packages/networking.scm:3802 +#: gnu/packages/networking.scm:3843 msgid "" "This package provides a modern, but Linux-specific\n" "implementation of the @command{traceroute} command that can be used to follow\n" @@ -11556,7 +11720,7 @@ msgid "" "some traces for unprivileged users." msgstr "" -#: gnu/packages/networking.scm:3836 +#: gnu/packages/networking.scm:3877 msgid "" "VDE is a set of programs to provide virtual software-defined\n" "Ethernet network interface controllers across multiple virtual or\n" @@ -11565,7 +11729,7 @@ msgid "" "cables." msgstr "" -#: gnu/packages/networking.scm:3878 +#: gnu/packages/networking.scm:3919 msgid "" "HAProxy is a free, very fast and reliable solution offering\n" "high availability, load balancing, and proxying for TCP and HTTP-based\n" @@ -11574,7 +11738,7 @@ msgid "" "thousands of connections is clearly realistic with today's hardware." msgstr "" -#: gnu/packages/networking.scm:3924 +#: gnu/packages/networking.scm:3965 msgid "" "The @dfn{Link Layer Discovery Protocol} (LLDP) is an industry standard\n" "protocol designed to supplant proprietary Link-Layer protocols such as EDP or\n" @@ -11583,7 +11747,7 @@ msgid "" "an implementation of LLDP. It also supports some proprietary protocols." msgstr "" -#: gnu/packages/networking.scm:3966 +#: gnu/packages/networking.scm:4007 msgid "" "Hashcash is a proof-of-work algorithm, which has been used\n" "as a denial-of-service countermeasure technique in a number of systems.\n" @@ -11596,14 +11760,14 @@ msgid "" "stamps." msgstr "" -#: gnu/packages/networking.scm:3995 +#: gnu/packages/networking.scm:4036 msgid "" "This package provides the NBD (Network Block Devices)\n" "client and server. It allows you to use remote block devices over a TCP/IP\n" "network." msgstr "" -#: gnu/packages/networking.scm:4062 +#: gnu/packages/networking.scm:4103 msgid "" "Yggdrasil is an early-stage implementation of a fully end-to-end encrypted\n" "IPv6 network. It is lightweight, self-arranging, supported on multiple\n" @@ -11612,7 +11776,7 @@ msgid "" "IPv6 Internet connectivity - it also works over IPv4." msgstr "" -#: gnu/packages/networking.scm:4106 +#: gnu/packages/networking.scm:4147 msgid "" "Netdiscover is a network address discovery tool developed\n" "mainly for wireless networks without a @acronym{DHCP} server. It also works\n" @@ -11620,7 +11784,7 @@ msgid "" "@acronym{ARP} requests and sniff for replies." msgstr "" -#: gnu/packages/networking.scm:4138 +#: gnu/packages/networking.scm:4179 msgid "" "PuTTY is a graphical text terminal client. It supports\n" "@acronym{SSH, Secure SHell}, telnet, and raw socket connections with good\n" @@ -11731,14 +11895,14 @@ msgid "" "by using the poppler rendering engine." msgstr "" -#: gnu/packages/pdf.scm:654 +#: gnu/packages/pdf.scm:653 msgid "" "Zathura is a customizable document viewer. It provides a\n" "minimalistic interface and an interface that mainly focuses on keyboard\n" "interaction." msgstr "" -#: gnu/packages/pdf.scm:697 +#: gnu/packages/pdf.scm:696 msgid "" "PoDoFo is a C++ library and set of command-line tools to work with the\n" "PDF file format. It can parse PDF files and load them into memory, and makes\n" @@ -11747,7 +11911,7 @@ msgid "" "extracting content or merging files." msgstr "" -#: gnu/packages/pdf.scm:764 +#: gnu/packages/pdf.scm:763 msgid "" "MuPDF is a C library that implements a PDF and XPS parsing and\n" "rendering engine. It is used primarily to render pages into bitmaps,\n" @@ -11759,7 +11923,7 @@ msgid "" "@command{pdfclean}, and examining the file structure @command{pdfshow}." msgstr "" -#: gnu/packages/pdf.scm:811 +#: gnu/packages/pdf.scm:810 msgid "" "QPDF is a command-line program that does structural, content-preserving\n" "transformations on PDF files. It could have been called something like\n" @@ -11768,7 +11932,7 @@ msgid "" "program capable of converting PDF into other formats." msgstr "" -#: gnu/packages/pdf.scm:855 +#: gnu/packages/pdf.scm:854 msgid "" "@command{qpdfview} is a document viewer for PDF, PS and DJVU\n" "files. It uses the Qt toolkit and features persistent per-file settings,\n" @@ -11776,13 +11940,13 @@ msgid "" "SyncTeX support, and rudimentary support for annotations and forms." msgstr "" -#: gnu/packages/pdf.scm:881 +#: gnu/packages/pdf.scm:880 msgid "" "Xournal is an application for notetaking, sketching, keeping a journal\n" "using a stylus." msgstr "" -#: gnu/packages/pdf.scm:940 +#: gnu/packages/pdf.scm:939 msgid "" "Xournal++ is a hand note taking software written in\n" "C++ with the target of flexibility, functionality and speed. Stroke\n" @@ -11818,14 +11982,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1019 +#: gnu/packages/pdf.scm:1018 msgid "" "This is the ReportLab PDF Toolkit. It allows rapid creation\n" "of rich PDF documents, and also creation of charts in a variety of bitmap and\n" "vector formats." msgstr "" -#: gnu/packages/pdf.scm:1071 +#: gnu/packages/pdf.scm:1070 msgid "" "Impressive is a tool to display PDF files that provides visual effects\n" "such as smooth alpha-blended slide transitions. It provides additional tools\n" @@ -11833,26 +11997,26 @@ msgid "" "the PDF pages." msgstr "" -#: gnu/packages/pdf.scm:1094 +#: gnu/packages/pdf.scm:1093 msgid "" "img2pdf converts images to PDF via direct JPEG inclusion. That\n" "conversion is lossless: the image embedded in the PDF has the exact same color\n" "information for every pixel as the input." msgstr "" -#: gnu/packages/pdf.scm:1147 +#: gnu/packages/pdf.scm:1146 msgid "" "fbida contains a few applications for viewing and editing images on\n" "the framebuffer." msgstr "" -#: gnu/packages/pdf.scm:1171 +#: gnu/packages/pdf.scm:1170 msgid "" "@command{pdf2svg} is a simple command-line PDF to SVG\n" "converter using the Poppler and Cairo libraries." msgstr "" -#: gnu/packages/pdf.scm:1203 +#: gnu/packages/pdf.scm:1202 msgid "" "PyPDF2 is a pure Python PDF library capable of:\n" "\n" @@ -11872,7 +12036,7 @@ msgid "" "manage or manipulate PDFs." msgstr "" -#: gnu/packages/pdf.scm:1240 +#: gnu/packages/pdf.scm:1239 msgid "" "PyPDF2 is a pure Python PDF toolkit.\n" "\n" @@ -11880,7 +12044,7 @@ msgid "" "python-pypdf2 instead." msgstr "" -#: gnu/packages/pdf.scm:1284 +#: gnu/packages/pdf.scm:1283 msgid "" "PDF Arranger is a small application which allows one to merge or split\n" "PDF documents and rotate, crop and rearrange their pages using an interactive\n" @@ -11889,7 +12053,7 @@ msgid "" "PDF Arranger was formerly known as PDF-Shuffler." msgstr "" -#: gnu/packages/pdf.scm:1308 +#: gnu/packages/pdf.scm:1307 msgid "" "@command{pdfposter} can be used to create a large poster by\n" "building it from multiple pages and/or printing it on large media. It expects\n" @@ -11902,7 +12066,7 @@ msgid "" "PDF. Indeed @command{pdfposter} was inspired by @command{poster}." msgstr "" -#: gnu/packages/pdf.scm:1339 +#: gnu/packages/pdf.scm:1338 msgid "" "Pdfgrep searches in pdf files for strings matching a regular expression.\n" "Support some GNU grep options as file name output, page number output,\n" @@ -11910,7 +12074,7 @@ msgid "" "multiple files." msgstr "" -#: gnu/packages/pdf.scm:1387 +#: gnu/packages/pdf.scm:1386 msgid "" "pdfpc is a presentation viewer application which uses multi-monitor\n" "output to provide meta information to the speaker during the presentation. It\n" @@ -11920,13 +12084,13 @@ msgid "" "presentation. The input files processed by pdfpc are PDF documents." msgstr "" -#: gnu/packages/pdf.scm:1414 +#: gnu/packages/pdf.scm:1413 msgid "" "Paps reads a UTF-8 encoded file and generates a PostScript language\n" "rendering of the file through the Pango Cairo back end." msgstr "" -#: gnu/packages/pdf.scm:1444 +#: gnu/packages/pdf.scm:1443 msgid "" "Stapler is a pure Python alternative to PDFtk, a tool for\n" "manipulating PDF documents from the command line. It supports\n" @@ -11940,7 +12104,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1532 +#: gnu/packages/pdf.scm:1531 msgid "" "WeasyPrint helps web developers to create PDF documents. It\n" "turns simple HTML pages into gorgeous statistical reports, invoices, tickets,\n" @@ -15662,7 +15826,7 @@ msgid "" "and enhance them." msgstr "" -#: gnu/packages/photo.scm:601 +#: gnu/packages/photo.scm:603 msgid "" "Photoflare is a cross-platform image editor with an aim\n" "to balance between powerful features and a very friendly graphical user\n" @@ -15672,7 +15836,7 @@ msgid "" "such as Batch image processing." msgstr "" -#: gnu/packages/photo.scm:669 +#: gnu/packages/photo.scm:670 msgid "" "Entangle is an application which uses GTK and libgphoto2 to provide a\n" "graphical interface for tethered photography with digital cameras. It\n" @@ -15680,14 +15844,14 @@ msgid "" "off' shooting directly from the controlling computer." msgstr "" -#: gnu/packages/photo.scm:740 +#: gnu/packages/photo.scm:741 msgid "" "Hugin is an easy to use panoramic imaging toolchain with a graphical\n" "user interface. It can be used to assemble a mosaic of photographs into\n" "a complete panorama and stitch any series of overlapping pictures." msgstr "" -#: gnu/packages/photo.scm:794 +#: gnu/packages/photo.scm:795 msgid "" "RawTherapee is a raw image processing suite. It comprises a\n" "subset of image editing operations specifically aimed at non-destructive raw\n" @@ -15731,7 +15895,28 @@ msgid "" "`special effects' using the filter mechanism." msgstr "" -#: gnu/packages/scanner.scm:144 +#: gnu/packages/scanner.scm:83 +msgid "" +"This SANE backend lets you scan documents and images from scanners and\n" +"multi-function printers that speak eSCL (marketed as ``AirScan'') or\n" +"@acronym{WSD, Web Services for Devices} (or ``WS-Scan'').\n" +"\n" +"Both are vendor-neutral protocols that allow ``driverless'' scanning over IPv4\n" +"and IPv6 networks without the vendor-specific drivers that make up most of the\n" +"sane-backends collection. This is similar to how most contemporary printers\n" +"speak the universal @acronym{IPP, Internet Printing Protocol}.\n" +"\n" +"Only scanners that support eSCL will also work over USB. This requires a\n" +"suitable IPP-over-USB daemon like ipp-usb to be installed and configured.\n" +"\n" +"Any eSCL or WSD-capable scanner should just work. sane-airscan automatically\n" +"discovers and configures devices, including which protocol to use. It was\n" +"successfully tested with many devices from Brother, Canon, Dell, Kyocera,\n" +"Lexmark, Epson, HP, OKI, Panasonic, Pantum, Ricoh, Samsung, and Xerox, with both\n" +"WSD and eSCL." +msgstr "" + +#: gnu/packages/scanner.scm:200 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -15739,7 +15924,7 @@ msgid "" "package contains the library, but no drivers." msgstr "" -#: gnu/packages/scanner.scm:192 +#: gnu/packages/scanner.scm:248 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -15747,7 +15932,7 @@ msgid "" "package contains the library and drivers." msgstr "" -#: gnu/packages/scanner.scm:243 +#: gnu/packages/scanner.scm:299 msgid "" "Scanbd stands for scanner button daemon. It regularly polls\n" "scanners for pressed buttons, function knob changes, or other events such\n" @@ -15763,7 +15948,7 @@ msgid "" "provided the driver also exposes the buttons." msgstr "" -#: gnu/packages/scanner.scm:331 +#: gnu/packages/scanner.scm:387 msgid "" "XSane is a graphical interface for controlling a scanner and acquiring\n" "images from it. You can photocopy multi-page documents and save, fax, print,\n" @@ -15775,14 +15960,14 @@ msgid "" "back-end library, which supports almost all existing scanners." msgstr "" -#: gnu/packages/scheme.scm:225 +#: gnu/packages/scheme.scm:226 msgid "" "GNU/MIT Scheme is an implementation of the Scheme programming\n" "language. It provides an interpreter, a compiler and a debugger. It also\n" "features an integrated Emacs-like editor and a large runtime library." msgstr "" -#: gnu/packages/scheme.scm:324 +#: gnu/packages/scheme.scm:325 msgid "" "Bigloo is a Scheme implementation devoted to one goal: enabling Scheme\n" "based programming style where C(++) is usually required. Bigloo attempts to\n" @@ -15793,7 +15978,7 @@ msgid "" "and between Scheme and Java programs." msgstr "" -#: gnu/packages/scheme.scm:377 +#: gnu/packages/scheme.scm:378 msgid "" "HOP is a multi-tier programming language for the Web 2.0 and the\n" "so-called diffuse Web. It is designed for programming interactive web\n" @@ -15802,14 +15987,14 @@ msgid "" "mashups, office (web agendas, mail clients, ...), etc." msgstr "" -#: gnu/packages/scheme.scm:400 +#: gnu/packages/scheme.scm:401 msgid "" "Scheme 48 is an implementation of Scheme based on a byte-code\n" "interpreter and is designed to be used as a testbed for experiments in\n" "implementation techniques and as an expository tool." msgstr "" -#: gnu/packages/scheme.scm:430 +#: gnu/packages/scheme.scm:431 msgid "" "Gambit consists of two main programs: gsi, the Gambit Scheme\n" "interpreter, and gsc, the Gambit Scheme compiler. The interpreter contains\n" @@ -15820,7 +16005,7 @@ msgid "" "mixed." msgstr "" -#: gnu/packages/scheme.scm:464 +#: gnu/packages/scheme.scm:465 msgid "" "Chibi-Scheme is a very small library with no external dependencies\n" "intended for use as an extension and scripting language in C programs. In\n" @@ -15829,7 +16014,7 @@ msgid "" "threads." msgstr "" -#: gnu/packages/scheme.scm:512 +#: gnu/packages/scheme.scm:513 msgid "" "Structure and Interpretation of Computer Programs (SICP) is\n" "a textbook aiming to teach the principles of computer programming.\n" @@ -15839,19 +16024,19 @@ msgid "" "metalinguistic abstraction, recursion, interpreters, and modular programming." msgstr "" -#: gnu/packages/scheme.scm:556 +#: gnu/packages/scheme.scm:557 msgid "" "String pattern-matching library for scheme48 based on the SRE\n" "regular-expression notation." msgstr "" -#: gnu/packages/scheme.scm:589 +#: gnu/packages/scheme.scm:590 msgid "" "SLIB is a portable Scheme library providing compatibility and\n" "utility functions for all standard Scheme implementations." msgstr "" -#: gnu/packages/scheme.scm:643 +#: gnu/packages/scheme.scm:644 msgid "" "GNU SCM is an implementation of Scheme. This\n" "implementation includes Hobbit, a Scheme-to-C compiler, which can\n" @@ -15859,7 +16044,7 @@ msgid "" "linked with a SCM executable." msgstr "" -#: gnu/packages/scheme.scm:702 +#: gnu/packages/scheme.scm:703 msgid "" "TinyScheme is a light-weight Scheme interpreter that implements as large a\n" "subset of R5RS as was possible without getting very large and complicated.\n" @@ -15875,7 +16060,7 @@ msgid "" "small program, it is easy to comprehend, get to grips with, and use." msgstr "" -#: gnu/packages/scheme.scm:783 +#: gnu/packages/scheme.scm:784 msgid "" "Stalin is an aggressively optimizing whole-program compiler\n" "for Scheme that does polyvariant interprocedural flow analysis,\n" @@ -15887,7 +16072,7 @@ msgid "" "generation." msgstr "" -#: gnu/packages/scheme.scm:819 +#: gnu/packages/scheme.scm:820 msgid "" "Scheme 9 from Empty Space (S9fES) is a mature, portable, and\n" "comprehensible public-domain interpreter for R4RS Scheme offering:\n" @@ -15902,14 +16087,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/scheme.scm:877 +#: gnu/packages/scheme.scm:878 msgid "" "@code{femtolisp} is a scheme-like lisp implementation with a\n" "simple, elegant Scheme dialect. It is a lisp-1 with lexical scope.\n" "The core is 12 builtin special forms and 33 builtin functions." msgstr "" -#: gnu/packages/scheme.scm:940 +#: gnu/packages/scheme.scm:941 msgid "" "Gauche is a R7RS Scheme scripting engine aiming at being a\n" "handy tool that helps programmers and system administrators to write small to\n" @@ -15919,7 +16104,7 @@ msgid "" "and list gauche extension packages." msgstr "" -#: gnu/packages/scheme.scm:1038 +#: gnu/packages/scheme.scm:1039 msgid "" "Gerbil is an opinionated dialect of Scheme designed for Systems\n" "Programming, with a state of the art macro and module system on top of the Gambit\n" @@ -16056,7 +16241,7 @@ msgid "" "server and an IRC server." msgstr "" -#: gnu/packages/shells.scm:107 +#: gnu/packages/shells.scm:108 msgid "" "dash is a POSIX-compliant @command{/bin/sh} implementation that aims to be\n" "as small as possible, often without sacrificing speed. It is faster than the\n" @@ -16064,7 +16249,7 @@ msgid "" "direct descendant of NetBSD's Almquist Shell (@command{ash})." msgstr "" -#: gnu/packages/shells.scm:255 +#: gnu/packages/shells.scm:256 msgid "" "Fish (friendly interactive shell) is a shell focused on interactive use,\n" "discoverability, and friendliness. Fish has very user-friendly and powerful\n" @@ -16076,20 +16261,20 @@ msgid "" "and syntax highlighting." msgstr "" -#: gnu/packages/shells.scm:308 +#: gnu/packages/shells.scm:309 msgid "" "@code{fish-foreign-env} wraps bash script execution in a way\n" "that environment variables that are exported or modified get imported back\n" "into fish." msgstr "" -#: gnu/packages/shells.scm:344 +#: gnu/packages/shells.scm:345 msgid "" "This is a reimplementation by Byron Rakitzis of the Plan 9 shell. It\n" "has a small feature set similar to a traditional Bourne shell." msgstr "" -#: gnu/packages/shells.scm:377 +#: gnu/packages/shells.scm:378 msgid "" "Es is an extensible shell. The language was derived from the Plan 9\n" "shell, rc, and was influenced by functional programming languages, such as\n" @@ -16098,7 +16283,7 @@ msgid "" "written by Paul Haahr and Byron Rakitzis." msgstr "" -#: gnu/packages/shells.scm:455 +#: gnu/packages/shells.scm:456 msgid "" "Tcsh is an enhanced, but completely compatible version of the Berkeley\n" "UNIX C shell (csh). It is a command language interpreter usable both as an\n" @@ -16107,7 +16292,7 @@ msgid "" "history mechanism, job control and a C-like syntax." msgstr "" -#: gnu/packages/shells.scm:522 +#: gnu/packages/shells.scm:523 msgid "" "The Z shell (zsh) is a Unix shell that can be used\n" "as an interactive login shell and as a powerful command interpreter\n" @@ -16116,7 +16301,7 @@ msgid "" "ksh, and tcsh." msgstr "" -#: gnu/packages/shells.scm:572 +#: gnu/packages/shells.scm:573 msgid "" "Xonsh is a Python-ish, BASHwards-looking shell language and command\n" "prompt. The language is a superset of Python 3.4+ with additional shell\n" @@ -16125,7 +16310,7 @@ msgid "" "use of experts and novices alike." msgstr "" -#: gnu/packages/shells.scm:616 +#: gnu/packages/shells.scm:617 msgid "" "Scsh is a Unix shell embedded in Scheme. Scsh has two main\n" "components: a process notation for running programs and setting up pipelines\n" @@ -16133,7 +16318,7 @@ msgid "" "operating system." msgstr "" -#: gnu/packages/shells.scm:658 +#: gnu/packages/shells.scm:659 msgid "" "Linenoise is a minimal, zero-config, readline replacement.\n" "Its features include:\n" @@ -16147,7 +16332,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/shells.scm:722 +#: gnu/packages/shells.scm:723 msgid "" "S is a new shell that aims to be extremely simple. It does not\n" "implement the POSIX shell standard.\n" @@ -16161,19 +16346,19 @@ msgid "" "A @code{andglob} program is also provided along with s." msgstr "" -#: gnu/packages/shells.scm:753 +#: gnu/packages/shells.scm:754 msgid "" "Oksh is a port of the OpenBSD Korn Shell.\n" "The OpenBSD Korn Shell is a cleaned up and enhanced ksh." msgstr "" -#: gnu/packages/shells.scm:783 +#: gnu/packages/shells.scm:784 msgid "" "loksh is a Linux port of OpenBSD's @command{ksh}. It is a small,\n" "interactive POSIX shell targeted at resource-constrained systems." msgstr "" -#: gnu/packages/shells.scm:821 +#: gnu/packages/shells.scm:822 msgid "" "mksh is an actively developed free implementation of the\n" "Korn Shell programming language and a successor to the Public Domain Korn\n" @@ -16205,7 +16390,7 @@ msgid "" "files and text." msgstr "" -#: gnu/packages/shells.scm:1006 +#: gnu/packages/shells.scm:1005 msgid "" "Nu draws inspiration from projects like PowerShell, functional\n" "programming languages, and modern CLI tools. Rather than thinking of files\n" @@ -16216,7 +16401,7 @@ msgid "" "of commands called a ``pipeline''." msgstr "" -#: gnu/packages/shells.scm:1037 +#: gnu/packages/shells.scm:1036 msgid "" "This package is a library for ANSI terminal colors and styles (bold,\n" "underline)." @@ -16472,19 +16657,19 @@ msgid "" "your calls and messages." msgstr "" -#: gnu/packages/telephony.scm:874 +#: gnu/packages/telephony.scm:869 msgid "" "PJProject provides an implementation of the Session\n" "Initiation Protocol (SIP) and a multimedia framework." msgstr "" -#: gnu/packages/telephony.scm:916 +#: gnu/packages/telephony.scm:911 msgid "" "A collection of libraries and header files for implementing\n" "telephony functionality into custom Telegram clients." msgstr "" -#: gnu/packages/tex.scm:532 +#: gnu/packages/tex.scm:543 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -16494,20 +16679,20 @@ msgid "" "This package contains the binaries." msgstr "" -#: gnu/packages/tex.scm:571 +#: gnu/packages/tex.scm:582 msgid "" "kpathsea is a library, whose purpose is to return a filename\n" "from a list of user-specified directories similar to how shells look up\n" "executables. It is maintained as a part of TeX Live." msgstr "" -#: gnu/packages/tex.scm:591 +#: gnu/packages/tex.scm:602 msgid "" "This package provides the docstrip utility to strip\n" "documentation from TeX files. It is part of the LaTeX base." msgstr "" -#: gnu/packages/tex.scm:606 +#: gnu/packages/tex.scm:617 msgid "" "This bundle provides generic access to Unicode Consortium\n" "data for TeX use. It contains a set of text files provided by the Unicode\n" @@ -16520,7 +16705,7 @@ msgid "" "out to date by @code{unicode-letters.tex}." msgstr "" -#: gnu/packages/tex.scm:638 +#: gnu/packages/tex.scm:649 msgid "" "This package includes Knuth's original @file{hyphen.tex},\n" "@file{zerohyph.tex} to disable hyphenation, @file{language.us} which starts\n" @@ -16528,13 +16713,13 @@ msgid "" "default versions of those), etc." msgstr "" -#: gnu/packages/tex.scm:659 +#: gnu/packages/tex.scm:670 msgid "" "This package provides files needed for converting DVI files\n" "to PostScript." msgstr "" -#: gnu/packages/tex.scm:673 +#: gnu/packages/tex.scm:684 msgid "" "This bundle provides a collection of model \".ini\" files\n" "for creating TeX formats. These files are commonly used to introduced\n" @@ -16543,13 +16728,13 @@ msgid "" "to adapt the plain e-TeX source file to work with XeTeX and LuaTeX." msgstr "" -#: gnu/packages/tex.scm:736 +#: gnu/packages/tex.scm:747 msgid "" "This package provides the Metafont base files needed to\n" "build fonts using the Metafont system." msgstr "" -#: gnu/packages/tex.scm:821 +#: gnu/packages/tex.scm:832 msgid "" "This package provides TeX macros for converting Adobe Font\n" "Metric files to TeX metric and virtual font format. Fontinst helps mainly\n" @@ -16559,7 +16744,7 @@ msgid "" "typesetting in these fonts." msgstr "" -#: gnu/packages/tex.scm:842 +#: gnu/packages/tex.scm:853 msgid "" "This is Fontname, a naming scheme for (the base part of)\n" "external TeX font filenames. This makes at most eight-character names\n" @@ -16567,7 +16752,7 @@ msgid "" "documents." msgstr "" -#: gnu/packages/tex.scm:915 +#: gnu/packages/tex.scm:926 msgid "" "This package provides the Computer Modern fonts by Donald\n" "Knuth. The Computer Modern font family is a large collection of text,\n" @@ -16575,7 +16760,7 @@ msgid "" "8A." msgstr "" -#: gnu/packages/tex.scm:946 +#: gnu/packages/tex.scm:957 msgid "" "The CM-Super family provides Adobe Type 1 fonts that replace\n" "the T1/TS1-encoded Computer Modern (EC/TC), T1/TS1-encoded Concrete,\n" @@ -16585,13 +16770,13 @@ msgid "" "originals." msgstr "" -#: gnu/packages/tex.scm:979 +#: gnu/packages/tex.scm:990 msgid "" "This package provides a drop-in replacements for the Courier\n" "font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:1002 +#: gnu/packages/tex.scm:1013 msgid "" "The TeX-GYRE bundle consist of multiple font families:\n" "@itemize @bullet\n" @@ -16611,21 +16796,21 @@ msgid "" "support (for use with a variety of encodings) is provided." msgstr "" -#: gnu/packages/tex.scm:1041 +#: gnu/packages/tex.scm:1052 msgid "" "The Latin Modern fonts are derived from the famous Computer\n" "Modern fonts designed by Donald E. Knuth and described in Volume E of his\n" "Computers & Typesetting series." msgstr "" -#: gnu/packages/tex.scm:1106 +#: gnu/packages/tex.scm:1117 msgid "" "This is a collection of core TeX and METAFONT macro files\n" "from Donald Knuth, including the plain format, plain base, and the MF logo\n" "fonts." msgstr "" -#: gnu/packages/tex.scm:1181 +#: gnu/packages/tex.scm:1192 msgid "" "This is a collection of fonts for use with standard LaTeX\n" "packages and classes. It includes invisible fonts (for use with the slides\n" @@ -16633,14 +16818,14 @@ msgid "" "symbol fonts." msgstr "" -#: gnu/packages/tex.scm:1253 +#: gnu/packages/tex.scm:1264 msgid "" "This package provides LaTeX and font definition files to access the\n" "Knuthian mflogo fonts described in The Metafontbook and to typeset Metafont\n" "logos in LaTeX documents." msgstr "" -#: gnu/packages/tex.scm:1274 +#: gnu/packages/tex.scm:1285 msgid "" "These fonts were created in METAFONT by Knuth, for his own publications.\n" "At some stage, the letters P and S were added, so that the METAPOST logo could\n" @@ -16649,7 +16834,7 @@ msgid "" "Taco Hoekwater." msgstr "" -#: gnu/packages/tex.scm:1402 +#: gnu/packages/tex.scm:1415 gnu/packages/tex.scm:1579 msgid "" "This package provides an extended set of fonts for use in mathematics,\n" "including: extra mathematical symbols; blackboard bold letters (uppercase\n" @@ -16663,7 +16848,7 @@ msgid "" "details can be found in the documentation." msgstr "" -#: gnu/packages/tex.scm:1432 +#: gnu/packages/tex.scm:1609 msgid "" "Mkpattern is a general purpose program for the generation of\n" "hyphenation patterns, with definition of letter sets and template-like\n" @@ -16671,7 +16856,7 @@ msgid "" "output encodings, and features generation of clean UTF-8 patterns." msgstr "" -#: gnu/packages/tex.scm:1489 +#: gnu/packages/tex.scm:1666 msgid "" "This package provides an extended version of TeX (which is capable of\n" "running as if it were TeX unmodified). E-TeX has been specified by the LaTeX\n" @@ -16680,122 +16865,131 @@ msgid "" "incorporates the e-TeX extensions." msgstr "" -#: gnu/packages/tex.scm:1507 +#: gnu/packages/tex.scm:1684 msgid "" "This package contains files used to build the Plain TeX format, as\n" "described in the TeXbook, together with various supporting files (some also\n" "discussed in the book)." msgstr "" -#: gnu/packages/tex.scm:1533 +#: gnu/packages/tex.scm:1702 +msgid "" +"The package facilitates wrapping text to a specific character width, breaking\n" +"lines by words rather than, as done by TeX, by characters. The primary use for\n" +"these facilities is to aid the generation of messages sent to the log file or\n" +"console output to display messages to the user. Package authors may also find\n" +"this useful when writing out arbitary text to an external file." +msgstr "" + +#: gnu/packages/tex.scm:1730 msgid "" "This package provides a drop-in replacements for the Helvetica\n" "font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:1546 +#: gnu/packages/tex.scm:1743 msgid "" "The package provides hyphenation patterns for the Afrikaans\n" "language." msgstr "" -#: gnu/packages/tex.scm:1560 +#: gnu/packages/tex.scm:1757 msgid "" "The package provides hyphenation patterns for ancient\n" "Greek." msgstr "" -#: gnu/packages/tex.scm:1573 +#: gnu/packages/tex.scm:1770 msgid "" "The package provides hyphenation patterns for the Armenian\n" "language." msgstr "" -#: gnu/packages/tex.scm:1587 +#: gnu/packages/tex.scm:1784 msgid "" "The package provides hyphenation patterns for the Basque\n" "language." msgstr "" -#: gnu/packages/tex.scm:1601 +#: gnu/packages/tex.scm:1798 msgid "" "The package provides hyphenation patterns for the Belarusian\n" "language." msgstr "" -#: gnu/packages/tex.scm:1613 +#: gnu/packages/tex.scm:1810 msgid "" "The package provides hyphenation patterns for the Bulgarian\n" "language in T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1627 +#: gnu/packages/tex.scm:1824 msgid "" "The package provides hyphenation patterns for Catalan in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1640 +#: gnu/packages/tex.scm:1837 msgid "" "The package provides hyphenation patterns for unaccented\n" "Chinese pinyin T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1652 +#: gnu/packages/tex.scm:1849 msgid "" "The package provides hyphenation patterns for Church\n" "Slavonic in UTF-8 encoding." msgstr "" -#: gnu/packages/tex.scm:1665 +#: gnu/packages/tex.scm:1862 msgid "" "The package provides hyphenation patterns for Coptic in\n" "UTF-8 encoding as well as in ASCII-based encoding for 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:1678 +#: gnu/packages/tex.scm:1875 msgid "" "The package provides hyphenation patterns for Croatian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1690 +#: gnu/packages/tex.scm:1887 msgid "" "The package provides hyphenation patterns for Czech in T1/EC\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1702 +#: gnu/packages/tex.scm:1899 msgid "" "The package provides hyphenation patterns for Danish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1715 +#: gnu/packages/tex.scm:1912 msgid "" "The package provides hyphenation patterns for Dutch in T1/EC\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1728 +#: gnu/packages/tex.scm:1925 msgid "" "The package provides additional hyphenation patterns for\n" "American and British English in ASCII encoding." msgstr "" -#: gnu/packages/tex.scm:1742 +#: gnu/packages/tex.scm:1939 msgid "" "The package provides hyphenation patterns for Esperanto ISO\n" "Latin 3 and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1754 +#: gnu/packages/tex.scm:1951 msgid "" "The package provides hyphenation patterns for Estonian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1768 +#: gnu/packages/tex.scm:1965 msgid "" "The package provides hyphenation patterns for languages\n" "written using the Ethiopic script for Unicode engines. They are not supposed\n" @@ -16803,94 +16997,94 @@ msgid "" "be replaced by files tailored to individual languages." msgstr "" -#: gnu/packages/tex.scm:1782 +#: gnu/packages/tex.scm:1979 msgid "" "The package provides hyphenation patterns for Finnish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1794 +#: gnu/packages/tex.scm:1991 msgid "" "The package provides hyphenation patterns for Finnish for\n" "school in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1806 +#: gnu/packages/tex.scm:2003 msgid "" "The package provides hyphenation patterns for French in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1818 +#: gnu/packages/tex.scm:2015 msgid "" "The package provides hyphenation patterns for Friulan in\n" "ASCII encodings." msgstr "" -#: gnu/packages/tex.scm:1831 +#: gnu/packages/tex.scm:2028 msgid "" "The package provides hyphenation patterns for Galician in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1843 +#: gnu/packages/tex.scm:2040 msgid "" "The package provides hyphenation patterns for Georgian in\n" "T8M, T8K, and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1861 +#: gnu/packages/tex.scm:2058 msgid "" "This package provides hyphenation patterns for German in\n" "T1/EC and UTF-8 encodings, for traditional and reformed spelling, including\n" "Swiss German." msgstr "" -#: gnu/packages/tex.scm:1880 +#: gnu/packages/tex.scm:2077 msgid "" "This package provides hyphenation patterns for Modern Greek\n" "in monotonic and polytonic spelling in LGR and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1894 +#: gnu/packages/tex.scm:2091 msgid "" "This package provides hyphenation patterns for Hungarian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1907 +#: gnu/packages/tex.scm:2104 msgid "" "This package provides hyphenation patterns for Icelandic in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1930 +#: gnu/packages/tex.scm:2127 msgid "" "This package provides hyphenation patterns for Assamese,\n" "Bengali, Gujarati, Hindi, Kannada, Malayalam, Marathi, Oriya, Panjabi, Tamil\n" "and Telugu for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:1943 +#: gnu/packages/tex.scm:2140 msgid "" "This package provides hyphenation patterns for\n" "Indonesian (Bahasa Indonesia) in ASCII encoding. They are probably also\n" "usable for Malay (Bahasa Melayu)." msgstr "" -#: gnu/packages/tex.scm:1956 +#: gnu/packages/tex.scm:2153 msgid "" "This package provides hyphenation patterns for Interlingua\n" "in ASCII encoding." msgstr "" -#: gnu/packages/tex.scm:1968 +#: gnu/packages/tex.scm:2165 msgid "" "This package provides hyphenation patterns for\n" "Irish (Gaeilge) in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1981 +#: gnu/packages/tex.scm:2178 msgid "" "This package provides hyphenation patterns for Italian in\n" "ASCII encoding. Compliant with the Recommendation UNI 6461 on hyphenation\n" @@ -16898,14 +17092,14 @@ msgid "" "UNI)." msgstr "" -#: gnu/packages/tex.scm:1995 +#: gnu/packages/tex.scm:2192 msgid "" "This package provides hyphenation patterns for\n" "Kurmanji (Northern Kurdish) as spoken in Turkey and by the Kurdish diaspora in\n" "Europe, in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2011 +#: gnu/packages/tex.scm:2208 msgid "" "This package provides hyphenation patterns for Latin in\n" "T1/EC and UTF-8 encodings, mainly in modern spelling (u when u is needed and v\n" @@ -16919,41 +17113,35 @@ msgid "" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2032 +#: gnu/packages/tex.scm:2229 msgid "" "This package provides hyphenation patterns for Latvian in\n" "L7X and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2045 +#: gnu/packages/tex.scm:2242 msgid "" "This package provides hyphenation patterns for Lithuanian in\n" "L7X and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2060 -#, fuzzy -#| msgid "" -#| "This package provides a dictionary for the Hunspell spell-checking\n" -#| "library." -msgid "This package provides hypenation patterns for Macedonian." -msgstr "" -"Tento balík poskytuje slovník pre knižnicu na kontrolu pravopisu\n" -"Hunspell." +#: gnu/packages/tex.scm:2257 +msgid "This package provides hyphenation patterns for Macedonian." +msgstr "Tento balík poskytuje vzory delenia slov pre macedónčinu." -#: gnu/packages/tex.scm:2073 +#: gnu/packages/tex.scm:2270 msgid "" "This package provides hyphenation patterns for Mongolian in\n" "T2A, LMC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2088 +#: gnu/packages/tex.scm:2285 msgid "" "This package provides hyphenation patterns for Norwegian\n" "Bokmal and Nynorsk in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2102 +#: gnu/packages/tex.scm:2299 msgid "" "This package provides hyphenation patterns for Occitan in\n" "T1/EC and UTF-8 encodings. They are supposed to be valid for all the Occitan\n" @@ -16962,94 +17150,94 @@ msgid "" "Alps encompassing the southern half of the French pentagon." msgstr "" -#: gnu/packages/tex.scm:2117 +#: gnu/packages/tex.scm:2314 msgid "" "This package provides hyphenation patterns for Panjabi in\n" "T1/EC encoding." msgstr "" -#: gnu/packages/tex.scm:2130 +#: gnu/packages/tex.scm:2327 msgid "" "This package provides hyphenation patterns for Piedmontese\n" "in ASCII encoding. Compliant with 'Gramatica dla lengua piemonteisa' by\n" "Camillo Brero." msgstr "" -#: gnu/packages/tex.scm:2143 +#: gnu/packages/tex.scm:2340 msgid "" "This package provides hyphenation patterns for Polish in QX\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2156 +#: gnu/packages/tex.scm:2353 msgid "" "This package provides hyphenation patterns for Portuguese in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2168 +#: gnu/packages/tex.scm:2365 msgid "" "This package provides hyphenation patterns for Romanian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2181 +#: gnu/packages/tex.scm:2378 msgid "" "This package provides hyphenation patterns for Romansh in\n" "ASCII encodings. They are supposed to comply with the rules indicated by the\n" "Lia Rumantscha (Romansh language society)." msgstr "" -#: gnu/packages/tex.scm:2194 +#: gnu/packages/tex.scm:2391 msgid "" "This package provides hyphenation patterns for Russian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2207 +#: gnu/packages/tex.scm:2404 msgid "" "This package provides hyphenation patterns for Sanskrit and\n" "Prakrit in longdesc transliteration, and in Devanagari, Bengali, Kannada,\n" "Malayalam longdesc and Telugu scripts for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:2224 +#: gnu/packages/tex.scm:2421 msgid "" "This package provides hyphenation patterns for Serbian in\n" "T1/EC, T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2237 +#: gnu/packages/tex.scm:2434 msgid "" "This package provides hyphenation patterns for Slovak in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2249 +#: gnu/packages/tex.scm:2446 msgid "" "This package provides hyphenation patterns for Slovenian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2265 +#: gnu/packages/tex.scm:2462 msgid "" "The package provides hyphenation patterns for Spanish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2277 +#: gnu/packages/tex.scm:2474 msgid "" "This package provides hyphenation patterns for Swedish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2289 +#: gnu/packages/tex.scm:2486 msgid "" "This package provides hyphenation patterns for Thai in LTH\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2302 +#: gnu/packages/tex.scm:2499 msgid "" "The package provides hyphenation patterns for Turkish in\n" "T1/EC and UTF-8 encodings. The patterns for Turkish were first produced for\n" @@ -17059,31 +17247,31 @@ msgid "" "compatibility with 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:2319 +#: gnu/packages/tex.scm:2516 msgid "" "The package provides hyphenation patterns for Turkmen in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2331 +#: gnu/packages/tex.scm:2528 msgid "" "This package provides hyphenation patterns for Ukrainian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2344 +#: gnu/packages/tex.scm:2541 msgid "" "This package provides hyphenation patterns for Upper Sorbian\n" "in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2356 +#: gnu/packages/tex.scm:2553 msgid "" "This package provides hyphenation patterns for Welsh in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2477 +#: gnu/packages/tex.scm:2674 msgid "" "Modern native UTF-8 engines such as XeTeX and LuaTeX need\n" "hyphenation patterns in UTF-8 format, whereas older systems require\n" @@ -17096,7 +17284,7 @@ msgid "" "converters, will completely supplant the older patterns." msgstr "" -#: gnu/packages/tex.scm:2521 +#: gnu/packages/tex.scm:2718 msgid "" "The package provides experimental hyphenation patterns for\n" "the German language, covering both traditional and reformed orthography. The\n" @@ -17104,21 +17292,29 @@ msgid "" "bundle." msgstr "" -#: gnu/packages/tex.scm:2542 +#: gnu/packages/tex.scm:2739 msgid "" "The package provides a range of hyphenation patterns for\n" "Ukrainian, depending on the encoding of the output font including the standard\n" "T2A." msgstr "" -#: gnu/packages/tex.scm:2577 +#: gnu/packages/tex.scm:2774 msgid "" "The package provides a collection of Russian hyphenation\n" "patterns supporting a number of Cyrillic font encodings, including T2,\n" "UCY (Omega Unicode Cyrillic), LCY, LWN (OT2), and koi8-r." msgstr "" -#: gnu/packages/tex.scm:2620 +#: gnu/packages/tex.scm:2792 +msgid "" +"This package deals with input encodings. It provides a wider range of input\n" +"encodings using standard mappings, than does inputenc; it also covers nearly all\n" +"slots. In this way, it serves as more uptodate replacement for package\n" +"inputenc." +msgstr "" + +#: gnu/packages/tex.scm:2853 msgid "" "Kpathsea is a library and utility programs which provide\n" "path searching facilities for TeX file types, including the self-locating\n" @@ -17126,13 +17322,27 @@ msgid "" "mechanism. This package provides supporting files." msgstr "" -#: gnu/packages/tex.scm:2636 +#: gnu/packages/tex.scm:2876 +msgid "" +"The family contains text fonts in roman, sans-serif and monospaced\n" +"shapes, with true small caps and old-style numbers; the package offers full\n" +"support of the textcomp package. The mathematics fonts include all the AMS\n" +"fonts, in both normal and bold weights. Each of the font types is available\n" +"in two main versions: default and light. Each version is available in four\n" +"variants: default; oldstyle numbers; oldstyle numbers with old ligatures such\n" +"as ct and st, and long-tailed capital Q; and veryoldstyle with long s. Other\n" +"variants include small caps as default or large small caps, and for\n" +"mathematics both upright and slanted shapes for Greek letters, as well as\n" +"default and narrow versions of multiple integrals." +msgstr "" + +#: gnu/packages/tex.scm:2898 msgid "" "The package provides configuration files for LaTeX-related\n" "formats." msgstr "" -#: gnu/packages/tex.scm:2867 +#: gnu/packages/tex.scm:3127 msgid "" "This bundle comprises the source of LaTeX itself, together with several\n" "packages which are considered \"part of the kernel\". This bundle, together\n" @@ -17140,7 +17350,7 @@ msgid "" "contain." msgstr "" -#: gnu/packages/tex.scm:2885 +#: gnu/packages/tex.scm:3145 msgid "" "This LaTeX packages provides two hooks for @code{\\end@{document@}}\n" "that are executed after the hook of @code{\\AtEndDocument}:\n" @@ -17150,13 +17360,13 @@ msgid "" "of the @file{.aux} file." msgstr "" -#: gnu/packages/tex.scm:2905 +#: gnu/packages/tex.scm:3165 msgid "" "This package provides hooks for adding code at the beginning of\n" "@file{.aux} files." msgstr "" -#: gnu/packages/tex.scm:2921 +#: gnu/packages/tex.scm:3181 msgid "" "The package adds support for EPS files in the @code{graphicx} package\n" "when running under pdfTeX. If an EPS graphic is detected, the package\n" @@ -17164,7 +17374,7 @@ msgid "" "@command{epstopdf}." msgstr "" -#: gnu/packages/tex.scm:2943 +#: gnu/packages/tex.scm:3203 msgid "" "LaTeX2e's @code{filecontents} and @code{filecontents*} environments\n" "enable a LaTeX source file to generate external files as it runs through\n" @@ -17175,7 +17385,7 @@ msgid "" "@code{filecontents*} anywhere." msgstr "" -#: gnu/packages/tex.scm:2964 +#: gnu/packages/tex.scm:3224 msgid "" "This package provides the original (and now obsolescent) graphics\n" "inclusion macros for use with dvips, still widely used by Plain TeX users (in\n" @@ -17185,7 +17395,7 @@ msgid "" "users, via its Plain TeX version.)" msgstr "" -#: gnu/packages/tex.scm:2986 +#: gnu/packages/tex.scm:3246 msgid "" "This package provides tools for the flexible handling of verbatim text\n" "including: verbatim commands in footnotes; a variety of verbatim environments\n" @@ -17195,7 +17405,7 @@ msgid "" "verbatim source)." msgstr "" -#: gnu/packages/tex.scm:3008 +#: gnu/packages/tex.scm:3268 msgid "" "This bundle is a combined distribution consisting of @file{dvips.def},\n" "@file{pdftex.def}, @file{luatex.def}, @file{xetex.def}, @file{dvipdfmx.def},\n" @@ -17203,13 +17413,19 @@ msgid "" "packages." msgstr "" -#: gnu/packages/tex.scm:3026 +#: gnu/packages/tex.scm:3286 msgid "" "This bundle includes @file{color.cfg} and @file{graphics.cfg} files that\n" "set default \"driver\" options for the color and graphics packages." msgstr "" -#: gnu/packages/tex.scm:3048 +#: gnu/packages/tex.scm:3303 +msgid "" +"The package provides Greek LICR macro definitions and encoding definition files\n" +"for Greek text font encodings for use with fontenc." +msgstr "" + +#: gnu/packages/tex.scm:3325 msgid "" "This is a collection of LaTeX packages for producing color, including\n" "graphics (e.g. PostScript) files, and rotation and scaling of text in LaTeX\n" @@ -17217,13 +17433,13 @@ msgid "" "keyval, and lscape." msgstr "" -#: gnu/packages/tex.scm:3066 +#: gnu/packages/tex.scm:3343 msgid "" "This package provides the code for the @code{color} option that is\n" "used by @code{hyperref} and @code{bookmark}." msgstr "" -#: gnu/packages/tex.scm:3098 +#: gnu/packages/tex.scm:3375 msgid "" "The package starts from the basic facilities of the colorcolor package,\n" "and provides easy driver-independent access to several kinds of color tints,\n" @@ -17234,7 +17450,7 @@ msgid "" "tables." msgstr "" -#: gnu/packages/tex.scm:3171 +#: gnu/packages/tex.scm:3448 msgid "" "The package provides an implementation of a parser for\n" "documents matching the XML 1.0 and XML Namespace Recommendations. Element and\n" @@ -17242,7 +17458,7 @@ msgid "" "XML, using UTF-8 or a suitable 8-bit encoding." msgstr "" -#: gnu/packages/tex.scm:3222 +#: gnu/packages/tex.scm:3499 msgid "" "The @code{hyperref} package is used to handle cross-referencing commands\n" "in LaTeX to produce hypertext links in the document. The package provides\n" @@ -17254,20 +17470,20 @@ msgid "" "@code{nameref} packages, which make use of the facilities of @code{hyperref}." msgstr "" -#: gnu/packages/tex.scm:3262 +#: gnu/packages/tex.scm:3539 msgid "" "The bundle comprises various LaTeX packages, providing among others:\n" "better accessibility support for PDF files; extensible chemists reaction\n" "arrows; record information about document class(es) used; and many more." msgstr "" -#: gnu/packages/tex.scm:3285 +#: gnu/packages/tex.scm:3562 msgid "" "This package provides additional rerun warnings if some auxiliary\n" "files have changed. It is based on MD5 checksum, provided by pdfTeX." msgstr "" -#: gnu/packages/tex.scm:3319 +#: gnu/packages/tex.scm:3596 msgid "" "This package is a collection of (variously) simple tools provided as\n" "part of the LaTeX required tools distribution, comprising the following\n" @@ -17277,7 +17493,7 @@ msgid "" "xr, and xspace." msgstr "" -#: gnu/packages/tex.scm:3338 +#: gnu/packages/tex.scm:3615 msgid "" "The command @code{\\url} is a form of verbatim command that\n" "allows linebreaks at certain characters or combinations of characters, accepts\n" @@ -17289,14 +17505,14 @@ msgid "" "of file names." msgstr "" -#: gnu/packages/tex.scm:3364 +#: gnu/packages/tex.scm:3641 msgid "" "This package provides font maps that were originally part of\n" "the now obsolete teTeX distributions but are still used at the core of the TeX\n" "Live distribution." msgstr "" -#: gnu/packages/tex.scm:3391 +#: gnu/packages/tex.scm:3668 msgid "" "The l3kernel bundle provides an implementation of the LaTeX3\n" "programmers’ interface, as a set of packages that run under LaTeX 2e. The\n" @@ -17305,7 +17521,7 @@ msgid "" "that the LaTeX3 conventions can be used with regular LaTeX 2e packages." msgstr "" -#: gnu/packages/tex.scm:3420 +#: gnu/packages/tex.scm:3697 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" @@ -17314,7 +17530,7 @@ msgid "" "an independent schedule." msgstr "" -#: gnu/packages/tex.scm:3484 +#: gnu/packages/tex.scm:3761 msgid "" "This bundle holds prototype implementations of concepts for a LaTeX\n" "designer interface, to be used with the experimental LaTeX kernel as\n" @@ -17331,14 +17547,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:3511 +#: gnu/packages/tex.scm:3788 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" "here are defined for the dvips engine only." msgstr "" -#: gnu/packages/tex.scm:3539 +#: gnu/packages/tex.scm:3816 msgid "" "Fontspec is a package for XeLaTeX and LuaLaTeX. It provides an\n" "automatic and unified interface to feature-rich AAT and OpenType fonts through\n" @@ -17346,7 +17562,7 @@ msgid "" "the l3kernel and xparse bundles from the LaTeX 3 development team." msgstr "" -#: gnu/packages/tex.scm:3569 +#: gnu/packages/tex.scm:3846 msgid "" "The original grffile package extended the file name processing of the\n" "@code{graphics} package to support a larger range of file names. The base\n" @@ -17354,13 +17570,13 @@ msgid "" "is a stub that just loads @code{graphicx}." msgstr "" -#: gnu/packages/tex.scm:3610 +#: gnu/packages/tex.scm:3887 msgid "" "This package provides @code{\\StringEncodingConvert} for converting a\n" "string between different encodings. Both LaTeX and plain-TeX are supported." msgstr "" -#: gnu/packages/tex.scm:3653 +#: gnu/packages/tex.scm:3930 msgid "" "The l3build module is designed to support the development of\n" "high-quality LaTeX code by providing: a unit testing system, automated\n" @@ -17369,14 +17585,20 @@ msgid "" "@code{.tex} file which provides the testing environment." msgstr "" -#: gnu/packages/tex.scm:3690 +#: gnu/packages/tex.scm:3953 msgid "" "Lualibs is a collection of Lua modules useful for general programming.\n" "The bundle is based on Lua modules shipped with ConTeXt, and made available in\n" "this bundle for use independent of ConTeXt." msgstr "" -#: gnu/packages/tex.scm:3718 +#: gnu/packages/tex.scm:3972 +msgid "" +"This package provides a Lua module for processing application arguments\n" +"in the same way as BSD/GNU @code{getopt_long(3)} functions do." +msgstr "" + +#: gnu/packages/tex.scm:3999 msgid "" "Luaotfload is an adaptation of the ConTeXt font loading system for the\n" "Plain and LaTeX formats. It allows OpenType fonts to be loaded with font\n" @@ -17385,11 +17607,7 @@ msgid "" "loading fonts by their proper names instead of file names." msgstr "" -#: gnu/packages/tex.scm:3790 -msgid "This package is necessary to use LaTeX with the LuaTeX engine." -msgstr "" - -#: gnu/packages/tex.scm:3809 +#: gnu/packages/tex.scm:4025 msgid "" "This is the principal package in the AMS-LaTeX distribution. It adapts\n" "for use in LaTeX most of the mathematical features found in AMS-TeX; it is\n" @@ -17404,7 +17622,7 @@ msgid "" "definitions." msgstr "" -#: gnu/packages/tex.scm:3843 +#: gnu/packages/tex.scm:4059 msgid "" "This bundle contains three AMS classes: @code{amsartamsart} (for writing\n" "articles for the AMS), @code{amsbookamsbook} (for books) and\n" @@ -17413,7 +17631,7 @@ msgid "" "distribution." msgstr "" -#: gnu/packages/tex.scm:3890 +#: gnu/packages/tex.scm:4106 msgid "" "The package manages culturally-determined typographical (and other)\n" "rules, and hyphenation patterns for a wide range of languages. A document may\n" @@ -17424,7 +17642,7 @@ msgid "" "polyglossia package rather than Babel." msgstr "" -#: gnu/packages/tex.scm:3917 +#: gnu/packages/tex.scm:4133 msgid "" "This package provides the language definition file for support of\n" "English in @code{babel}. Care is taken to select British hyphenation patterns\n" @@ -17432,13 +17650,14 @@ msgid "" "for Canadian and USA text." msgstr "" -#: gnu/packages/tex.scm:3939 +#: gnu/packages/tex.scm:4173 msgid "" -"This package provides support for the French language for the\n" -"babel multilingual system." +"The package, formerly known as frenchb, establishes French conventions\n" +"in a document (or a subset of the conventions, if French is not the main\n" +"language of the document)." msgstr "" -#: gnu/packages/tex.scm:3959 +#: gnu/packages/tex.scm:4196 msgid "" "This package provides the language definition file for support of German\n" "in @code{babel}. It provides all the necessary macros, definitions and\n" @@ -17447,14 +17666,14 @@ msgid "" "Swiss varieties of German." msgstr "" -#: gnu/packages/tex.scm:3986 +#: gnu/packages/tex.scm:4223 msgid "" "This package provides the language definition file for\n" "support of Swedish in @code{babel}. It provides all the necessary macros,\n" "definitions and settings to typeset Swedish documents." msgstr "" -#: gnu/packages/tex.scm:4008 +#: gnu/packages/tex.scm:4245 msgid "" "This bundle of macros files provides macro support (including font\n" "encoding macros) for the use of Cyrillic characters in fonts encoded under the\n" @@ -17462,7 +17681,7 @@ msgid "" "language that is written in a Cyrillic alphabet." msgstr "" -#: gnu/packages/tex.scm:4126 +#: gnu/packages/tex.scm:4363 msgid "" "The PSNFSS collection includes a set of files that provide a complete\n" "working setup of the LaTeX font selection scheme (NFSS2) for use with common\n" @@ -17477,20 +17696,20 @@ msgid "" "part of the LaTeX required set of packages." msgstr "" -#: gnu/packages/tex.scm:4177 gnu/packages/tex.scm:4269 +#: gnu/packages/tex.scm:4414 gnu/packages/tex.scm:4506 msgid "" "This is a very limited subset of the TeX Live distribution.\n" "It includes little more than the required set of LaTeX packages." msgstr "" -#: gnu/packages/tex.scm:4248 +#: gnu/packages/tex.scm:4485 msgid "" "This package contains the fonts map configuration file\n" "generated for the base TeX Live packages as well as, optionally, user-provided\n" "ones." msgstr "" -#: gnu/packages/tex.scm:4288 +#: gnu/packages/tex.scm:4525 msgid "" "These fonts are considered the \"ultimate answer\" to IPA\n" "typesetting. The encoding of these 8-bit fonts has been registered as LaTeX\n" @@ -17499,7 +17718,7 @@ msgid "" "TS3 fonts." msgstr "" -#: gnu/packages/tex.scm:4311 +#: gnu/packages/tex.scm:4548 msgid "" "Amsrefs is a LaTeX package for bibliographies that provides an archival\n" "data format similar to the format of BibTeX database files, but adapted to\n" @@ -17507,7 +17726,7 @@ msgid "" "conjunction with BibTeX or as a replacement for BibTeX." msgstr "" -#: gnu/packages/tex.scm:4340 +#: gnu/packages/tex.scm:4577 msgid "" "This package aims to provide a one-stop solution to requirements for\n" "footnotes. It offers: Multiple footnote apparatus superior to that of\n" @@ -17521,7 +17740,7 @@ msgid "" "@code{suffix} packages." msgstr "" -#: gnu/packages/tex.scm:4368 +#: gnu/packages/tex.scm:4605 msgid "" "The package provides the commands @code{\\blindtext} and\n" "@code{\\Blindtext} for creating \"blind\" text useful in testing new classes\n" @@ -17532,7 +17751,7 @@ msgid "" "ipsum\" text, see the @code{lipsum} package)." msgstr "" -#: gnu/packages/tex.scm:4407 +#: gnu/packages/tex.scm:4644 msgid "" "This package implements a document layout for writing letters according\n" "to the rules of DIN (Deutsches Institut für Normung, German standardisation\n" @@ -17544,7 +17763,7 @@ msgid "" "package." msgstr "" -#: gnu/packages/tex.scm:4433 +#: gnu/packages/tex.scm:4670 msgid "" "This package provides a means to add a textual, light grey watermark on\n" "every page or on the first page of a document. Typical usage may consist in\n" @@ -17554,7 +17773,7 @@ msgid "" "on everypage." msgstr "" -#: gnu/packages/tex.scm:4457 +#: gnu/packages/tex.scm:4694 msgid "" "This package provides the @code{\\collect@@body} command (as in\n" "@code{amsmath}), as well as a @code{\\long} version @code{\\Collect@@Body},\n" @@ -17562,7 +17781,7 @@ msgid "" "define a new author interface to creating new environments." msgstr "" -#: gnu/packages/tex.scm:4479 +#: gnu/packages/tex.scm:4716 msgid "" "LaTeX users sometimes need to ensure that two or more blocks of text\n" "occupy the same amount of horizontal space on the page. To that end, the\n" @@ -17576,7 +17795,7 @@ msgid "" "also provided." msgstr "" -#: gnu/packages/tex.scm:4504 +#: gnu/packages/tex.scm:4741 msgid "" "This package gives the user complete control of how the entries of\n" "the table of contents should be constituted from the name, number, and page\n" @@ -17596,7 +17815,7 @@ msgid "" "table of contents." msgstr "" -#: gnu/packages/tex.scm:4546 +#: gnu/packages/tex.scm:4783 msgid "" "The package provides additional features for the LaTeX\n" "@code{description} environment, including adjustable left margin. The package\n" @@ -17605,7 +17824,7 @@ msgid "" "@code{enumerate} lists, and numbered lists remain in sequence)." msgstr "" -#: gnu/packages/tex.scm:4566 +#: gnu/packages/tex.scm:4803 msgid "" "This package provides macros to read and compare the modification dates\n" "of files. The files may be @code{.tex} files, images or other files (as long\n" @@ -17617,14 +17836,14 @@ msgid "" "but non-expandable ones." msgstr "" -#: gnu/packages/tex.scm:4589 +#: gnu/packages/tex.scm:4826 msgid "" "The @code{hanging} package facilitates the typesetting of hanging\n" "paragraphs. The package also enables typesetting with hanging punctuation,\n" "by making punctuation characters active." msgstr "" -#: gnu/packages/tex.scm:4612 +#: gnu/packages/tex.scm:4849 msgid "" "This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX support for\n" "the Fira Sans family of fonts designed by Erik Spiekermann and Ralph du\n" @@ -17632,7 +17851,7 @@ msgid "" "corresponding italics: light, regular, medium, bold, ..." msgstr "" -#: gnu/packages/tex.scm:4635 +#: gnu/packages/tex.scm:4872 msgid "" "This package uses the (La)TeX extension @code{-shell-escape} to\n" "establish whether the document is being processed on a Windows or on a\n" @@ -17643,7 +17862,7 @@ msgid "" "classes of systems." msgstr "" -#: gnu/packages/tex.scm:4660 +#: gnu/packages/tex.scm:4897 msgid "" "This bundle provides a package that implements both author-year and\n" "numbered references, as well as much detailed of support for other\n" @@ -17653,20 +17872,20 @@ msgid "" "designed from the start to be compatible with @code{natbib}." msgstr "" -#: gnu/packages/tex.scm:4679 +#: gnu/packages/tex.scm:4916 msgid "" "This package provides a friendly interface for defining the meaning of\n" "Unicode characters. The document should be processed by (pdf)LaTeX with the\n" "Unicode option of @code{inputenc} or @code{inputenx}, or by XeLaTeX/LuaLaTeX." msgstr "" -#: gnu/packages/tex.scm:4699 +#: gnu/packages/tex.scm:4936 msgid "" "This package makes a number of utility functions from pdfTeX\n" "available for luaTeX by reimplementing them using Lua." msgstr "" -#: gnu/packages/tex.scm:4719 +#: gnu/packages/tex.scm:4956 msgid "" "This package allows LaTeX constructions (equations, picture\n" "environments, etc.) to be precisely superimposed over Encapsulated PostScript\n" @@ -17677,7 +17896,7 @@ msgid "" "rotated." msgstr "" -#: gnu/packages/tex.scm:4751 +#: gnu/packages/tex.scm:4988 msgid "" "This is a package for processing PostScript graphics with @code{psfrag}\n" "labels within pdfLaTeX documents. Every graphic is compiled individually,\n" @@ -17685,7 +17904,7 @@ msgid "" "re-processing." msgstr "" -#: gnu/packages/tex.scm:4771 +#: gnu/packages/tex.scm:5008 msgid "" "This package provides the @code{\\setcounterref} and\n" "@code{\\addtocounterref} commands which use the section (or other) number\n" @@ -17694,7 +17913,7 @@ msgid "" "corresponding thing with the page reference of the label." msgstr "" -#: gnu/packages/tex.scm:4791 +#: gnu/packages/tex.scm:5028 msgid "" "This package provides a class that produces overhead\n" "slides (transparencies), with many facilities. Seminar is not nowadays\n" @@ -17703,14 +17922,14 @@ msgid "" "21st-century presentation styles." msgstr "" -#: gnu/packages/tex.scm:4812 +#: gnu/packages/tex.scm:5049 msgid "" "The package provides a versatile way to stack objects vertically in a\n" "variety of customizable ways. A number of useful macros are provided, all\n" "of which make use of the @code{stackengine} core." msgstr "" -#: gnu/packages/tex.scm:4828 +#: gnu/packages/tex.scm:5065 msgid "" "This package provides control over the typography of the\n" "@dfn{Table of Contents}, @dfn{List of Figures} and @dfn{List of Tables},\n" @@ -17718,7 +17937,7 @@ msgid "" "be changed." msgstr "" -#: gnu/packages/tex.scm:4862 +#: gnu/packages/tex.scm:5099 msgid "" "This very short package allows you to expandably remove spaces around a\n" "token list (commands are provided to remove spaces before, spaces after, or\n" @@ -17726,13 +17945,32 @@ msgid "" "space-stripped macros." msgstr "" -#: gnu/packages/tex.scm:4897 +#: gnu/packages/tex.scm:5115 +#, fuzzy +#| msgid "" +#| "This package provides a C++ interface to the libxml2 XML parser\n" +#| "library." +msgid "This package provides a math interface to the Rsfs fonts." +msgstr "" +"Tento balík poskytuje C++ rozhranie pre knižnicu na vyhodnocovanie\n" +"XML jazyka libxml2." + +#: gnu/packages/tex.scm:5152 msgid "" "This package defines a command @code{\\captionof} for putting a caption\n" "to something that's not a float." msgstr "" -#: gnu/packages/tex.scm:4913 +#: gnu/packages/tex.scm:5170 +msgid "" +"Many of David Carlisle's more substantial packages stand on their own,\n" +"or as part of the LaTeX latex-tools set; this set contains: making dotless\n" +"@emph{j} characters for fonts that don't have them; a method for combining the\n" +"capabilities of longtable and tabularx; an environment for including plain TeX\n" +"in LaTeX documents; a jiffy to create slashed characters for physicists." +msgstr "" + +#: gnu/packages/tex.scm:5189 msgid "" "You can hyperlink DOI numbers to doi.org. However, some publishers have\n" "elected to use nasty characters in their DOI numbering scheme (@code{<},\n" @@ -17742,7 +17980,7 @@ msgid "" "hyperlink to the target of the DOI." msgstr "" -#: gnu/packages/tex.scm:4936 +#: gnu/packages/tex.scm:5212 msgid "" "This package is a toolbox of programming facilities geared primarily\n" "towards LaTeX class and package authors. It provides LaTeX frontends to some\n" @@ -17753,7 +17991,7 @@ msgid "" "of the LaTeX kernel." msgstr "" -#: gnu/packages/tex.scm:4976 +#: gnu/packages/tex.scm:5252 msgid "" "This package provides seven predefined chapter heading styles. Each\n" "style can be modified using a set of simple commands. Optionally one can\n" @@ -17761,7 +17999,7 @@ msgid "" "headings." msgstr "" -#: gnu/packages/tex.scm:5011 +#: gnu/packages/tex.scm:5287 msgid "" "The package creates three environments: @code{framed}, which puts an\n" "ordinary frame box around the region, @code{shaded}, which shades the region,\n" @@ -17772,7 +18010,7 @@ msgid "" "@code{\\MakeFramed} to make your own framed-style environments." msgstr "" -#: gnu/packages/tex.scm:5045 +#: gnu/packages/tex.scm:5321 msgid "" "This package is designed for formatting formless letters in German; it\n" "can also be used for English (by those who can read the documentation). There\n" @@ -17780,13 +18018,13 @@ msgid "" "\"old\" and a \"new\" version of g-brief." msgstr "" -#: gnu/packages/tex.scm:5067 +#: gnu/packages/tex.scm:5343 msgid "" "The package deals with connections in two-dimensional style, optionally\n" "in colour." msgstr "" -#: gnu/packages/tex.scm:5087 +#: gnu/packages/tex.scm:5363 msgid "" "The package allows citations in the German style, which is considered by\n" "many to be particularly reader-friendly. The citation provides a small amount\n" @@ -17796,7 +18034,7 @@ msgid "" "BibLaTeX, and is considered experimental." msgstr "" -#: gnu/packages/tex.scm:5113 +#: gnu/packages/tex.scm:5389 msgid "" "This package provides an easy and flexible user interface to customize\n" "page layout, implementing auto-centering and auto-balancing mechanisms so that\n" @@ -17807,7 +18045,7 @@ msgid "" "ability to communicate the paper size it's set up to the output." msgstr "" -#: gnu/packages/tex.scm:5138 +#: gnu/packages/tex.scm:5414 msgid "" "This collection of tools includes: @code{atsupport} for short commands\n" "starting with @code{@@}, macros to sanitize the OT1 encoding of the\n" @@ -17817,13 +18055,13 @@ msgid "" "array environments; verbatim handling; and syntax diagrams." msgstr "" -#: gnu/packages/tex.scm:5162 +#: gnu/packages/tex.scm:5438 msgid "" "This package provides a complete Babel replacement for users of LuaLaTeX\n" "and XeLaTeX; it relies on the @code{fontspec} package, version 2.0 at least." msgstr "" -#: gnu/packages/tex.scm:5182 +#: gnu/packages/tex.scm:5458 msgid "" "This package was a predecessor of @code{longtable}; the newer\n" "package (designed on quite different principles) is easier to use and more\n" @@ -17831,7 +18069,7 @@ msgid "" "situations where longtable has problems." msgstr "" -#: gnu/packages/tex.scm:5217 +#: gnu/packages/tex.scm:5493 msgid "" "Texinfo is the preferred format for documentation in the GNU project;\n" "the format may be used to produce online or printed output from a single\n" @@ -17840,7 +18078,23 @@ msgid "" "hypertext linkages in some cases)." msgstr "" -#: gnu/packages/tex.scm:5240 +#: gnu/packages/tex.scm:5513 +msgid "" +"The textcase package offers commands @code{\\MakeTextUppercase} and\n" +"@code{\\MakeTextLowercase} are similar to the standard @code{\\MakeUppercase}\n" +"and @code{\\MakeLowercase}, but they do not change the case of any sections of\n" +"mathematics, or the arguments of @code{\\cite}, @code{\\label} and\n" +"@code{\\ref} commands within the argument. A further command\n" +"@code{\\NoCaseChange} does nothing but suppress case change within its\n" +"argument, so to force uppercase of a section including an environment, one\n" +"might say:\n" +"\n" +"@example\n" +"\\MakeTextUppercase{...\\NoCaseChange{\\begin{foo}} ...\\NoCaseChange{\\end{foo}}...}\n" +"@end example\n" +msgstr "" + +#: gnu/packages/tex.scm:5543 msgid "" "Typewriter-style fonts are best for program listings, but Computer\n" "Modern Typewriter prints @code{`} and @code{'} as bent opening and closing\n" @@ -17854,14 +18108,14 @@ msgid "" "does not affect @code{\\tt}, @code{\\texttt}, etc." msgstr "" -#: gnu/packages/tex.scm:5281 +#: gnu/packages/tex.scm:5584 msgid "" "This is a simple package to set up document margins. This package is\n" "considered obsolete; alternatives are the @code{typearea} package from the\n" "@code{koma-script} bundle, or the @code{geometry} package." msgstr "" -#: gnu/packages/tex.scm:5302 +#: gnu/packages/tex.scm:5605 msgid "" "The appendix package provides various ways of formatting the titles of\n" "appendices. Also (sub)appendices environments are provided that can be used,\n" @@ -17870,14 +18124,14 @@ msgid "" "command." msgstr "" -#: gnu/packages/tex.scm:5321 +#: gnu/packages/tex.scm:5624 msgid "" "This package implements a new bookmark (outline) organization for the\n" "@code{hyperref} package. Bookmark properties such as style and color. Other\n" "action types are available (URI, GoToR, Named)." msgstr "" -#: gnu/packages/tex.scm:5342 +#: gnu/packages/tex.scm:5645 msgid "" "Identify areas of text to be marked with changebars with the\n" "@code{\\cbstart} and @code{\\cbend} commands; the bars may be coloured. The\n" @@ -17886,19 +18140,19 @@ msgid "" "drivers, and VTeX and pdfTeX." msgstr "" -#: gnu/packages/tex.scm:5379 +#: gnu/packages/tex.scm:5682 msgid "" "This package embeds CMap tables into PDF files to make search and\n" "copy-and-paste functions work properly." msgstr "" -#: gnu/packages/tex.scm:5399 +#: gnu/packages/tex.scm:5702 msgid "" "This package allows rows, columns, and even individual cells in LaTeX\n" "tables to be coloured." msgstr "" -#: gnu/packages/tex.scm:5432 +#: gnu/packages/tex.scm:5735 msgid "" "This package provides variants of @code{\\fbox}: @code{\\shadowbox},\n" "@code{\\doublebox}, @code{\\ovalbox}, @code{\\Ovalbox}, with helpful tools for\n" @@ -17906,14 +18160,14 @@ msgid "" "floats, center, flushleft, and flushright, lists, and pages." msgstr "" -#: gnu/packages/tex.scm:5467 +#: gnu/packages/tex.scm:5770 msgid "" "The package provides extensive facilities, both for constructing headers\n" "and footers, and for controlling their use (for example, at times when LaTeX\n" "would automatically change the heading style in use)." msgstr "" -#: gnu/packages/tex.scm:5488 +#: gnu/packages/tex.scm:5791 msgid "" "This package improves the interface for defining floating objects such\n" "as figures and tables. It introduces the boxed float, the ruled float and the\n" @@ -17923,7 +18177,7 @@ msgid "" "with @code{\\floatplacement{figure}{H}}." msgstr "" -#: gnu/packages/tex.scm:5512 +#: gnu/packages/tex.scm:5815 msgid "" "This is a collection of ways to change the typesetting of footnotes.\n" "The package provides means of changing the layout of the footnotes themselves,\n" @@ -17933,7 +18187,7 @@ msgid "" "footnotes with symbols rather than numbers." msgstr "" -#: gnu/packages/tex.scm:5532 +#: gnu/packages/tex.scm:5835 msgid "" "TeX’s @code{\\let} assignment does not work for LaTeX macros with\n" "optional arguments, or for macros that are defined as robust macros by\n" @@ -17941,7 +18195,7 @@ msgid "" "that also takes care of the involved internal macros." msgstr "" -#: gnu/packages/tex.scm:5556 +#: gnu/packages/tex.scm:5859 msgid "" "The package enables the user to typeset programs (programming code)\n" "within LaTeX; the source code is read directly by TeX---no front-end processor\n" @@ -17949,7 +18203,7 @@ msgid "" "styles. Support for @code{hyperref} is provided." msgstr "" -#: gnu/packages/tex.scm:5591 +#: gnu/packages/tex.scm:5894 msgid "" "This package provides miscellaneous macros by Joerg Knappen, including:\n" "represent counters in greek; Maxwell's non-commutative division;\n" @@ -17961,13 +18215,13 @@ msgid "" "in SGML; use maths minus in text as appropriate; simple Young tableaux." msgstr "" -#: gnu/packages/tex.scm:5615 +#: gnu/packages/tex.scm:5918 msgid "" "This package provides facilities for using key-value format in\n" "package options." msgstr "" -#: gnu/packages/tex.scm:5684 +#: gnu/packages/tex.scm:5987 msgid "" "The EC fonts are European Computer Modern Fonts, supporting the complete\n" "LaTeX T1 encoding defined at the 1990 TUG conference hold at Cork/Ireland.\n" @@ -17984,7 +18238,7 @@ msgid "" "differs from the EC in a number of particulars." msgstr "" -#: gnu/packages/tex.scm:5717 +#: gnu/packages/tex.scm:6020 msgid "" "This package provides a set of virtual fonts which emulates T1 coded\n" "fonts using the standard CM fonts. The package name, AE fonts, supposedly\n" @@ -17994,7 +18248,7 @@ msgid "" "via the CM-super, Latin Modern and (in a restricted way) CM-LGC font sets." msgstr "" -#: gnu/packages/tex.scm:5742 +#: gnu/packages/tex.scm:6045 msgid "" "Inconsolata is a monospaced font designed by Raph Levien. This package\n" "contains the font (in both Adobe Type 1 and OpenType formats) in regular and\n" @@ -18003,25 +18257,25 @@ msgid "" "TeX, and LaTeX font definition and other relevant files." msgstr "" -#: gnu/packages/tex.scm:5771 +#: gnu/packages/tex.scm:6074 msgid "" "This package provides a drop-in replacements for the Times font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5799 +#: gnu/packages/tex.scm:6102 msgid "" "This package provides a drop-in replacements for the Palatino font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5824 +#: gnu/packages/tex.scm:6127 msgid "" "This package provides a drop-in replacements for the Zapfding font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5896 +#: gnu/packages/tex.scm:6199 msgid "" "The fonts provide uppercase formal script letters for use as symbols in\n" "scientific and mathematical typesetting (in contrast to the informal script\n" @@ -18031,14 +18285,14 @@ msgid "" "one of the packages @code{calrsfs} and @code{mathrsfs}." msgstr "" -#: gnu/packages/tex.scm:5920 +#: gnu/packages/tex.scm:6223 msgid "" "The package adds one or more user commands to LaTeX's @code{shipout}\n" "routine, which may be used to place the output at fixed positions. The\n" "@code{grid} option may be used to find the correct places." msgstr "" -#: gnu/packages/tex.scm:5954 +#: gnu/packages/tex.scm:6257 msgid "" "Extensions to @code{epic} and the LaTeX picture drawing environment,\n" "include the drawing of lines at any slope, the drawing of circles in any\n" @@ -18048,7 +18302,7 @@ msgid "" "@code{\\special} commands." msgstr "" -#: gnu/packages/tex.scm:5991 +#: gnu/packages/tex.scm:6276 msgid "" "This package is intended to ease customizing the three basic list\n" "environments: @code{enumerate}, @code{itemize} and @code{description}. It\n" @@ -18057,14 +18311,14 @@ msgid "" "@code{\\begin{itemize}[itemsep=1ex,leftmargin=1cm]}." msgstr "" -#: gnu/packages/tex.scm:6014 +#: gnu/packages/tex.scm:6301 msgid "" "The package provides tools for creating tabular cells spanning multiple\n" "rows. It has a lot of flexibility, including an option for specifying an\n" "entry at the \"natural\" width of its text." msgstr "" -#: gnu/packages/tex.scm:6048 +#: gnu/packages/tex.scm:6335 msgid "" "The @code{overpic} environment is a cross between the LaTeX\n" "@code{picture} environment and the @code{\\includegraphics} command of\n" @@ -18073,14 +18327,14 @@ msgid "" "positions; a grid for orientation is available." msgstr "" -#: gnu/packages/tex.scm:6084 +#: gnu/packages/tex.scm:6371 msgid "" "Simply changing @code{\\parskip} and @code{\\parindent} leaves a layout\n" "that is untidy; this package (though it is no substitute for a properly\n" "designed class) helps alleviate this untidiness." msgstr "" -#: gnu/packages/tex.scm:6105 +#: gnu/packages/tex.scm:6392 msgid "" "This package simplifies the inclusion of external multi-page PDF\n" "documents in LaTeX documents. Pages may be freely selected and it is possible\n" @@ -18090,7 +18344,7 @@ msgid "" "use this package to insert PostScript files, in addition to PDF files." msgstr "" -#: gnu/packages/tex.scm:6146 +#: gnu/packages/tex.scm:6433 msgid "" "The fonts were originally distributed as Metafont sources only, but\n" "Adobe Type 1 versions are also now available. Macro support is provided for\n" @@ -18099,7 +18353,7 @@ msgid "" "the whole font." msgstr "" -#: gnu/packages/tex.scm:6171 +#: gnu/packages/tex.scm:6458 msgid "" "This (deprecated) package provides support for the manipulation and\n" "reference of small or \"sub\" figures and tables within a single figure or\n" @@ -18112,7 +18366,7 @@ msgid "" "the more recent @code{subcaption} package more satisfactory." msgstr "" -#: gnu/packages/tex.scm:6198 +#: gnu/packages/tex.scm:6485 msgid "" "The package defines a @code{tabular*}-like environment, @code{tabulary},\n" "taking a \"total width\" argument as well as the column specifications. The\n" @@ -18123,7 +18377,7 @@ msgid "" "according to the natural width of the widest cell in the column." msgstr "" -#: gnu/packages/tex.scm:6236 +#: gnu/packages/tex.scm:6523 msgid "" "This package facilitates tables with titles (captions) and notes. The\n" "title and notes are given a width equal to the body of the table (a\n" @@ -18132,7 +18386,7 @@ msgid "" "environment." msgstr "" -#: gnu/packages/tex.scm:6263 +#: gnu/packages/tex.scm:6550 msgid "" "Txfonts supplies virtual text roman fonts using Adobe Times (or URW\n" "NimbusRomNo9L) with some modified and additional text symbols in the OT1, T1,\n" @@ -18148,7 +18402,7 @@ msgid "" "TeX metrics (VF and TFM files) and macros for use with LaTeX." msgstr "" -#: gnu/packages/tex.scm:6312 +#: gnu/packages/tex.scm:6599 msgid "" "Iwona is a two-element sans-serif typeface. It was created\n" "as an alternative version of the Kurier typeface, which was designed in 1975\n" @@ -18159,7 +18413,7 @@ msgid "" "of ink traps which typify the Kurier font." msgstr "" -#: gnu/packages/tex.scm:6335 +#: gnu/packages/tex.scm:6622 msgid "" "This package contains a collection of macros by Jörg Knappen:\n" "@table @code\n" @@ -18195,7 +18449,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/tex.scm:6442 +#: gnu/packages/tex.scm:6729 msgid "" "JadeTeX is a companion package to the OpenJade DSSSL\n" "processor. OpenJade applies a DSSSL stylesheet to an SGML or XML document.\n" @@ -18206,7 +18460,7 @@ msgid "" "command)." msgstr "" -#: gnu/packages/tex.scm:6472 +#: gnu/packages/tex.scm:6759 msgid "" "The package provides the Libertine and Biolinum fonts in both Type 1 and\n" "OTF styles, together with support macros for their use. Monospaced and\n" @@ -18216,7 +18470,7 @@ msgid "" "@code{libertine-legacy} packages." msgstr "" -#: gnu/packages/tex.scm:6504 +#: gnu/packages/tex.scm:6791 msgid "" "The package contains LaTeX support for the DejaVu fonts, which are\n" "derived from the Vera fonts but contain more characters and styles. The fonts\n" @@ -18225,7 +18479,7 @@ msgid "" "LGR. The package doesn't (currently) support mathematics." msgstr "" -#: gnu/packages/tex.scm:6540 +#: gnu/packages/tex.scm:6827 msgid "" "This package provides an interface to sectioning commands for selection\n" "from various title styles, e.g. for marginal titles and to change the font of\n" @@ -18234,7 +18488,7 @@ msgid "" "floats in a page. You may assign headers/footers to individual floats, too." msgstr "" -#: gnu/packages/tex.scm:6563 +#: gnu/packages/tex.scm:6850 msgid "" "LaTeX, by default, restricts the sizes at which you can use its default\n" "computer modern fonts, to a fixed set of discrete sizes (effectively, a set\n" @@ -18249,7 +18503,7 @@ msgid "" "@code{ec} fonts." msgstr "" -#: gnu/packages/tex.scm:6617 +#: gnu/packages/tex.scm:6904 msgid "" "The LH fonts address the problem of the wide variety of alphabets that\n" "are written with Cyrillic-style characters. The fonts are the original basis\n" @@ -18262,7 +18516,7 @@ msgid "" "OT2 encoded fonts, CM bright shaped fonts and Concrete shaped fonts." msgstr "" -#: gnu/packages/tex.scm:6647 +#: gnu/packages/tex.scm:6934 msgid "" "The Martin Vogel’s Symbols fonts (marvosym) contains the\n" "Euro currency symbol as defined by the European commission, along with symbols\n" @@ -18272,34 +18526,41 @@ msgid "" "the derived Type 1 font, together with support files for TeX (LaTeX)." msgstr "" -#: gnu/packages/tex.scm:6685 +#: gnu/packages/tex.scm:6972 msgid "" "MetaPost uses a language based on that of Metafont to produce precise\n" "technical illustrations. Its output is scalable PostScript or SVG, rather\n" "than the bitmaps Metafont creates." msgstr "" -#: gnu/packages/tex.scm:6706 +#: gnu/packages/tex.scm:6993 msgid "" "This package provides a class for typesetting publications of the\n" "Association for Computing Machinery (ACM)." msgstr "" -#: gnu/packages/tex.scm:6739 +#: gnu/packages/tex.scm:7026 msgid "" "The @code{varwidth} environment is superficially similar to\n" "@code{minipage}, but the specified width is just a maximum value — the box may\n" "get a narrower “natural” width." msgstr "" -#: gnu/packages/tex.scm:6757 +#: gnu/packages/tex.scm:7041 +msgid "" +"The varwidth environment is superficially similar to minipage, but the\n" +"specified width is just a maximum value --- the box may get a narrower natural\n" +"width." +msgstr "" + +#: gnu/packages/tex.scm:7059 msgid "" "This package provides the @code{wasy} (Waldi symbol) fonts,\n" "in the Metafont and Adobe Type 1 formats. Support under LaTeX is provided by\n" "the @code{wasysym} package." msgstr "" -#: gnu/packages/tex.scm:6778 +#: gnu/packages/tex.scm:7080 msgid "" "The @code{wasy} (Waldi Symbol) font by Roland Waldi provides many glyphs like\n" "male and female symbols and astronomical symbols, as well as the complete\n" @@ -18307,14 +18568,14 @@ msgid "" "implements an easy to use interface for these symbols." msgstr "" -#: gnu/packages/tex.scm:6815 +#: gnu/packages/tex.scm:7117 msgid "" "This package allows figures or tables to have text wrapped around them.\n" "It does not work in combination with list environments, but can be used in a\n" "@code{parbox} or @code{minipage}, and in two-column format." msgstr "" -#: gnu/packages/tex.scm:6849 +#: gnu/packages/tex.scm:7151 msgid "" "The bundle provides the @code{ucs} package, and @code{utf8x.def},\n" "together with a large number of support files. The @code{utf8x.def}\n" @@ -18327,7 +18588,7 @@ msgid "" "package of that name now exists." msgstr "" -#: gnu/packages/tex.scm:6883 +#: gnu/packages/tex.scm:7185 msgid "" "The main purpose of the preview package is the extraction of selected\n" "elements from a LaTeX source, like formulas or graphics, into separate\n" @@ -18338,7 +18599,7 @@ msgid "" "files." msgstr "" -#: gnu/packages/tex.scm:6908 +#: gnu/packages/tex.scm:7210 msgid "" "This package ensures that all acronyms used in the text are spelled out\n" "in full at least once. It also provides an environment to build a list of\n" @@ -18347,13 +18608,13 @@ msgid "" "e-TeX." msgstr "" -#: gnu/packages/tex.scm:6945 +#: gnu/packages/tex.scm:7247 msgid "" "This package provides an extension of TeX which can be configured to\n" "directly generate PDF documents instead of DVI." msgstr "" -#: gnu/packages/tex.scm:7025 +#: gnu/packages/tex.scm:7327 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18363,7 +18624,7 @@ msgid "" "This package contains the complete tree of texmf-dist data." msgstr "" -#: gnu/packages/tex.scm:7088 +#: gnu/packages/tex.scm:7390 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18373,7 +18634,7 @@ msgid "" "This package contains the complete TeX Live distribution." msgstr "" -#: gnu/packages/tex.scm:7130 +#: gnu/packages/tex.scm:7432 msgid "" "@code{Text::BibTeX} is a Perl library for reading, parsing,\n" "and processing BibTeX files. @code{Text::BibTeX} gives you access to the data\n" @@ -18382,13 +18643,13 @@ msgid "" "values (strings, macros, or numbers) pasted together." msgstr "" -#: gnu/packages/tex.scm:7216 +#: gnu/packages/tex.scm:7518 msgid "" "Biber is a BibTeX replacement for users of biblatex. Among\n" "other things it comes with full Unicode support." msgstr "" -#: gnu/packages/tex.scm:7250 +#: gnu/packages/tex.scm:7552 msgid "" "Rubber is a program whose purpose is to handle all tasks related to the\n" "compilation of LaTeX documents. This includes compiling the document itself,\n" @@ -18398,20 +18659,20 @@ msgid "" "PDF documents." msgstr "" -#: gnu/packages/tex.scm:7289 +#: gnu/packages/tex.scm:7591 msgid "" "Texmaker is a program that integrates many tools needed to\n" "develop documents with LaTeX, in a single application." msgstr "" -#: gnu/packages/tex.scm:7330 +#: gnu/packages/tex.scm:7632 msgid "" "@i{TeX for the Impatient} is a ~350 page book on TeX,\n" "plain TeX, and Eplain, originally written by Paul Abrahams, Kathryn Hargreaves,\n" "and Karl Berry." msgstr "" -#: gnu/packages/tex.scm:7394 +#: gnu/packages/tex.scm:7696 msgid "" "LyX is a document preparation system. It excels at letting\n" "you create complex technical and scientific articles with mathematics,\n" @@ -18420,7 +18681,7 @@ msgid "" "required: automatic sectioning and pagination, spell checking and so forth." msgstr "" -#: gnu/packages/tex.scm:7430 +#: gnu/packages/tex.scm:7732 msgid "" "The package provides an interface to embed interactive Flash (SWF) and 3D\n" "objects (Adobe U3D & PRC), as well as video and sound files or streams in the\n" @@ -18433,7 +18694,7 @@ msgid "" "specification. It replaces the now obsolete @code{movie15} package." msgstr "" -#: gnu/packages/tex.scm:7470 +#: gnu/packages/tex.scm:7772 msgid "" "This package provides OCG (Optional Content Groups) support within a PDF\n" "document.\n" @@ -18451,7 +18712,7 @@ msgid "" "It also ensures compatibility with the @code{media9} and @code{animate} packages." msgstr "" -#: gnu/packages/tex.scm:7504 +#: gnu/packages/tex.scm:7806 msgid "" "A bundle of LATEX packages by Martin Schröder; the collection comprises:\n" "\n" @@ -18465,7 +18726,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/tex.scm:7532 +#: gnu/packages/tex.scm:7852 msgid "" "The package numprint prints numbers with a separator every three\n" "digits and converts numbers given as 12345.6e789 to 12\\,345,6\\cdot\n" @@ -18486,14 +18747,14 @@ msgid "" "and after the formatted number." msgstr "" -#: gnu/packages/tex.scm:7571 +#: gnu/packages/tex.scm:7893 msgid "" "Provides commands to disable pagebreaking within a given vertical\n" "space. If there is not enough space between the command and the bottom of the\n" "page, a new page will be started." msgstr "" -#: gnu/packages/tex.scm:7597 +#: gnu/packages/tex.scm:7919 msgid "" "The package provides commands to change the page layout in the middle of\n" "a document, and to robustly check for typesetting on odd or even pages.\n" @@ -18501,7 +18762,7 @@ msgid "" "of code from the @code{memoir} class, whose user interface it shares." msgstr "" -#: gnu/packages/tex.scm:7633 +#: gnu/packages/tex.scm:7955 msgid "" "The package is used to change the format of @code{\\today}’s date,\n" "including the weekday, e.g., \"Saturday, 26 June 2008\", the 'UK format', which\n" @@ -18509,7 +18770,7 @@ msgid "" "@code{\\maketitle} of the article class, \"June 26, 2008\", the 'US format'." msgstr "" -#: gnu/packages/tex.scm:7669 +#: gnu/packages/tex.scm:7971 msgid "" "The package provides an @code{\\ul} (underline) command which will break\n" "over line ends; this technique may be used to replace @code{\\em} (both in that\n" @@ -18518,7 +18779,7 @@ msgid "" "striking out (line through words) and crossing out (/// over words)." msgstr "" -#: gnu/packages/tex.scm:7725 +#: gnu/packages/tex.scm:8029 msgid "" "PGF is a macro package for creating graphics. It is platform- and\n" "format-independent and works together with the most important TeX backend\n" @@ -18530,7 +18791,7 @@ msgid "" "produce either PostScript or PDF output." msgstr "" -#: gnu/packages/tex.scm:7771 +#: gnu/packages/tex.scm:8075 msgid "" "The KOMA-Script bundle provides replacements for the article, report, and\n" "book classes with emphasis on typography and versatility. There is also a\n" @@ -18555,7 +18816,7 @@ msgid "" "typearea (which are the main parts of the bundle)." msgstr "" -#: gnu/packages/tex.scm:7806 +#: gnu/packages/tex.scm:8110 msgid "" "This package is a modern reimplementation of package @code{everyshi},\n" "providing various commands to be executed before a @code{\\shipout} command.\n" @@ -18563,20 +18824,20 @@ msgid "" "be used either with LaTeX or with plain TeX." msgstr "" -#: gnu/packages/tex.scm:7826 +#: gnu/packages/tex.scm:8130 msgid "" "This package provides expandable arithmetic operations with big\n" "integers that can exceed TeX's number limits." msgstr "" -#: gnu/packages/tex.scm:7845 +#: gnu/packages/tex.scm:8149 msgid "" "This package defines and implements the data type bit set, a vector\n" "of bits. The size of the vector may grow dynamically. Individual bits\n" "can be manipulated." msgstr "" -#: gnu/packages/tex.scm:7864 +#: gnu/packages/tex.scm:8168 msgid "" "New primitive commands are introduced in e-TeX; sometimes the names\n" "collide with existing macros. This package solves the name clashes by\n" @@ -18584,14 +18845,14 @@ msgid "" "@code{\\unexpanded} is provided as @code{\\etex@@unexpanded}." msgstr "" -#: gnu/packages/tex.scm:7882 +#: gnu/packages/tex.scm:8186 msgid "" "This package provides commands for cleaning up the title string\n" "(such as removing @code{\\label} commands) for packages that typeset such\n" "strings." msgstr "" -#: gnu/packages/tex.scm:7898 +#: gnu/packages/tex.scm:8202 msgid "" "This package provides a complete set of macros for information,\n" "warning and error messages. Under LaTeX, the commands are wrappers for\n" @@ -18599,19 +18860,19 @@ msgid "" "complete implementations." msgstr "" -#: gnu/packages/tex.scm:7915 +#: gnu/packages/tex.scm:8219 msgid "" "This package provides expandable arithmetic operations with integers,\n" "using the e-TeX extension @code{\\numexpr} if it is available." msgstr "" -#: gnu/packages/tex.scm:7930 +#: gnu/packages/tex.scm:8234 msgid "" "This package provides the @code{\\kv@@define@@key} (analogous to\n" "keyval’s @code{\\define@@key}, to define keys for use by @code{kvsetkeys}." msgstr "" -#: gnu/packages/tex.scm:7945 +#: gnu/packages/tex.scm:8249 msgid "" "This package provides @code{\\kvsetkeys}, a variant of @code{\\setkeys}\n" "from the @code{keyval} package. Users can specify a handler that deals with\n" @@ -18619,35 +18880,35 @@ msgid "" "level of curly braces are removed from the values." msgstr "" -#: gnu/packages/tex.scm:7980 +#: gnu/packages/tex.scm:8284 msgid "" "This package allows one to capture all the items of a list, for which\n" "the parsing character has been selected by the user, and to access any of\n" "these items with a simple syntax." msgstr "" -#: gnu/packages/tex.scm:7996 +#: gnu/packages/tex.scm:8300 msgid "" "This package exports some utility macros from the LaTeX kernel into\n" "a separate namespace and also makes them available for other formats such\n" "as plain TeX." msgstr "" -#: gnu/packages/tex.scm:8012 +#: gnu/packages/tex.scm:8316 msgid "" "This package implements pdfTeX's escape features (@code{\\pdfescapehex},\n" "@code{\\pdfunescapehex}, @code{\\pdfescapename}, @code{\\pdfescapestring})\n" "using TeX or e-TeX." msgstr "" -#: gnu/packages/tex.scm:8031 +#: gnu/packages/tex.scm:8335 msgid "" "This package provides a kind of counter that provides unique number\n" "values. Several counters can be created with different names. The numeric\n" "values are not limited." msgstr "" -#: gnu/packages/tex.scm:8067 +#: gnu/packages/tex.scm:8371 msgid "" "This package allows the user to input formatted data into elements of a\n" "2-D or 3-D array and to recall that data at will by individual cell number.\n" @@ -18655,7 +18916,7 @@ msgid "" "formatted text." msgstr "" -#: gnu/packages/tex.scm:8104 +#: gnu/packages/tex.scm:8408 msgid "" "The package provides a @code{verbbox} environment to place its contents\n" "into a globally available box, or into a box specified by the user. The\n" @@ -18665,7 +18926,7 @@ msgid "" "@code{trivlist}) may not appear." msgstr "" -#: gnu/packages/tex.scm:8141 +#: gnu/packages/tex.scm:8445 msgid "" "Examplep provides sophisticated features for typesetting verbatim source\n" "code listings, including the display of the source code and its compiled LaTeX\n" @@ -18678,7 +18939,7 @@ msgid "" "titles." msgstr "" -#: gnu/packages/tex.scm:8178 +#: gnu/packages/tex.scm:8482 msgid "" "This is a package for typesetting a variety of graphs and\n" "diagrams with TeX. Xy-pic works with most formats (including LaTeX,\n" @@ -18686,7 +18947,7 @@ msgid "" "@code{diag} package, which was previously distributed stand-alone." msgstr "" -#: gnu/packages/tex.scm:8218 +#: gnu/packages/tex.scm:8522 msgid "" "BibTeX allows the user to store his citation data in generic form, while\n" "printing citations in a document in the form specified by a BibTeX style, to\n" @@ -18694,7 +18955,7 @@ msgid "" "package, such as @command{natbib} as well)." msgstr "" -#: gnu/packages/tex.scm:8241 +#: gnu/packages/tex.scm:8545 msgid "" "This package provides a copy of the Charter Type-1 fonts\n" "which Bitstream contributed to the X consortium, renamed for use with TeX.\n" @@ -18702,14 +18963,14 @@ msgid "" "@command{psnfss}." msgstr "" -#: gnu/packages/tex.scm:8337 +#: gnu/packages/tex.scm:8641 msgid "" "ConTeXt is a full featured, parameter driven macro package,\n" "which fully supports advanced interactive documents. See the ConTeXt garden\n" "for a wealth of support information." msgstr "" -#: gnu/packages/tex.scm:8362 +#: gnu/packages/tex.scm:8666 msgid "" "The beamer LaTeX class can be used for producing slides.\n" "The class works in both PostScript and direct PDF output modes, using the\n" @@ -18722,7 +18983,7 @@ msgid "" "effects, varying slide transitions and animations." msgstr "" -#: gnu/packages/tex.scm:8394 +#: gnu/packages/tex.scm:8698 msgid "" "The XMP (eXtensible Metadata platform) is a framework to add metadata to\n" "digital material to enhance the workflow in publication. The essence is that\n" @@ -18730,13 +18991,13 @@ msgid "" "the file to which it applies." msgstr "" -#: gnu/packages/tex.scm:8433 +#: gnu/packages/tex.scm:8737 msgid "" "This package helps LaTeX users to create PDF/X, PDF/A and other\n" "standards-compliant PDF documents with pdfTeX, LuaTeX and XeTeX." msgstr "" -#: gnu/packages/tex.scm:8468 +#: gnu/packages/tex.scm:8772 msgid "" "The package provides macros and environments to document\n" "LaTeX packages and classes. It is an (as yet unfinished) alternative to the\n" @@ -18747,7 +19008,7 @@ msgid "" "change." msgstr "" -#: gnu/packages/tex.scm:8496 +#: gnu/packages/tex.scm:8800 msgid "" "PSTricks offers an extensive collection of macros for\n" "generating PostScript that is usable with most TeX macro formats, including\n" @@ -18758,14 +19019,14 @@ msgid "" "or shading the cells of tables." msgstr "" -#: gnu/packages/tex.scm:8521 +#: gnu/packages/tex.scm:8825 msgid "" "Pst-text is a PSTricks based package for plotting text along\n" "a different path and manipulating characters. It includes the functionality\n" "of the old package @code{pst-char}." msgstr "" -#: gnu/packages/tex.scm:8546 +#: gnu/packages/tex.scm:8850 msgid "" "This package provides the command @code{\\marginnote} that\n" "may be used instead of @code{\\marginpar} at almost every place where\n" @@ -18773,7 +19034,7 @@ msgid "" "frames made with the @code{framed} package." msgstr "" -#: gnu/packages/tex.scm:8564 +#: gnu/packages/tex.scm:8868 msgid "" "This package, which works both for Plain TeX and for\n" "LaTeX, defines the @code{\\ifPDFTeX}, @code{\\ifXeTeX}, and @code{\\ifLuaTeX}\n" @@ -18783,7 +19044,19 @@ msgid "" "LuaTeX (respectively) is not the engine in use." msgstr "" -#: gnu/packages/tex.scm:8597 +#: gnu/packages/tex.scm:8914 +msgid "" +"The package provides an environment, tabu, which will make any sort of\n" +"tabular, and an environment longtabu which provides the facilities of tabu in\n" +"a modified longtable environment. The package requires array, xcolor for\n" +"coloured rules in tables, and colortbl for coloured cells. The longtabu\n" +"environment further requires that longtable be loaded. The package itself\n" +"does not load any of these packages for the user. The tabu environment may be\n" +"used in place of @code{tabular}, @code{tabular*} and @code{tabularx}\n" +"environments, as well as the @code{array} environment in maths mode." +msgstr "" + +#: gnu/packages/tex.scm:8945 msgid "" "This package provides a collection of simple tools that\n" "are part of the LaTeX required tools distribution, comprising the packages:\n" @@ -18795,7 +19068,7 @@ msgid "" "@code{varioref}, @code{verbatim}, @code{xr}, and @code{xspace}." msgstr "" -#: gnu/packages/tex.scm:8678 +#: gnu/packages/tex.scm:9026 msgid "" "This package is an extension of the keyval package and offers additional\n" "macros for setting keys and declaring and setting class or package options.\n" @@ -18805,7 +19078,7 @@ msgid "" "keys." msgstr "" -#: gnu/packages/tex.scm:8706 +#: gnu/packages/tex.scm:9054 msgid "" "A class and package is provided which allows TeX pictures or\n" "other TeX code to be compiled standalone or as part of a main document.\n" @@ -18817,7 +19090,7 @@ msgid "" "@code{standalone.cfg} to redefine the standalone environment." msgstr "" -#: gnu/packages/tex.scm:8739 +#: gnu/packages/tex.scm:9087 msgid "" "Typesetting values with units requires care to ensure that the combined\n" "mathematical meaning of the value plus unit combination is clear. In\n" @@ -18833,7 +19106,7 @@ msgid "" "package to handle all of the possible unit-related needs of LaTeX users." msgstr "" -#: gnu/packages/tex.scm:8770 +#: gnu/packages/tex.scm:9118 msgid "" "This package enhances the quality of tables in LaTeX, providing extra\n" "commands as well as behind-the-scenes optimisation. Guidelines are given as\n" @@ -18841,7 +19114,7 @@ msgid "" "@code{longtable} compatibility." msgstr "" -#: gnu/packages/tex.scm:8790 +#: gnu/packages/tex.scm:9138 msgid "" "This package provides advanced facilities for inline and\n" "display quotations. It is designed for a wide range of tasks ranging from the\n" @@ -18855,7 +19128,7 @@ msgid "" "styles as well as the optional active quotes are freely configurable." msgstr "" -#: gnu/packages/tex.scm:8816 +#: gnu/packages/tex.scm:9164 msgid "" "The package helps to automate a typical LaTeX\n" "workflow that involves running LaTeX several times and running tools\n" @@ -18875,7 +19148,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8848 +#: gnu/packages/tex.scm:9196 msgid "" "BibLaTeX is a complete reimplementation of the\n" "bibliographic facilities provided by LaTeX. Formatting of the\n" @@ -18901,7 +19174,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8886 +#: gnu/packages/tex.scm:9234 msgid "" "The @code{todonotes} package lets the user mark\n" "things to do later, in a simple and visually appealing way. The\n" @@ -18909,7 +19182,7 @@ msgid "" "of the visual appearance." msgstr "" -#: gnu/packages/tex.scm:8904 +#: gnu/packages/tex.scm:9252 msgid "" "@code{units} is a package for typesetting physical\n" "units in a standard-looking way. The package is based upon\n" @@ -18917,7 +19190,7 @@ msgid "" "included in the @code{units} bundle." msgstr "" -#: gnu/packages/tex.scm:8922 +#: gnu/packages/tex.scm:9270 msgid "" "@code{microtype} provides a LaTeX interface to the\n" "micro-typographic extensions that were introduced by pdfTeX and have\n" @@ -18932,7 +19205,7 @@ msgid "" "the bundle." msgstr "" -#: gnu/packages/tex.scm:8947 +#: gnu/packages/tex.scm:9295 msgid "" "The @code{caption} package provides many ways to\n" "customise the captions in floating environments like figure and table.\n" @@ -18946,13 +19219,13 @@ msgid "" "@code{subcaption} and @code{totalcount} are included in the bundle." msgstr "" -#: gnu/packages/tex.scm:8976 +#: gnu/packages/tex.scm:9324 msgid "" "This package provides a drop-in replacement for the\n" "Symbol font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:8994 +#: gnu/packages/tex.scm:9342 msgid "" "The Pazo Math fonts are a family of PostScript fonts\n" "suitable for typesetting mathematics in combination with the Palatino\n" @@ -18966,7 +19239,7 @@ msgid "" "LaTeX macro support is provided in package @code{psnfss}." msgstr "" -#: gnu/packages/tex.scm:9019 +#: gnu/packages/tex.scm:9367 msgid "" "The FPL Fonts provide a set of SC/OsF fonts for URW\n" "Palladio L which are compatible with the Palatino SC/OsF fonts from\n" @@ -18974,7 +19247,7 @@ msgid "" "the @code{psnfss} distribution." msgstr "" -#: gnu/packages/tex.scm:9043 +#: gnu/packages/tex.scm:9391 msgid "" "The @code{arev} package provides type 1 fonts,\n" "virtual fonts and LaTeX packages for using Arev Sans in both text and\n" @@ -18988,7 +19261,7 @@ msgid "" "support packages. Others are cmbright, hvmath and kerkis." msgstr "" -#: gnu/packages/tex.scm:9074 +#: gnu/packages/tex.scm:9422 msgid "" "The Math Design project offers free mathematical\n" "fonts that match with existing text fonts. To date, three free font\n" @@ -18999,7 +19272,7 @@ msgid "" "created by the Greek Font Society)." msgstr "" -#: gnu/packages/tex.scm:9099 +#: gnu/packages/tex.scm:9447 msgid "" "The @code{bera} package contains the Bera Type 1\n" "fonts and files to use the fonts with LaTeX. Bera is a set of three\n" @@ -19008,7 +19281,7 @@ msgid "" "a repackaging, for use with TeX, of the Bitstream Vera family." msgstr "" -#: gnu/packages/tex.scm:9122 +#: gnu/packages/tex.scm:9470 msgid "" "Fourier-GUTenberg is a LaTeX typesetting system\n" "which uses Adobe Utopia as its standard base font. Fourier-GUTenberg\n" @@ -19019,7 +19292,7 @@ msgid "" "trademark of Adobe Systems Incorporated." msgstr "" -#: gnu/packages/tex.scm:9145 +#: gnu/packages/tex.scm:9493 msgid "" "The Adobe Standard Encoding set of the Utopia font\n" "family, as contributed to the X Consortium. The set comprises upright\n" @@ -19028,7 +19301,7 @@ msgid "" "@code{mathdesign} font packages." msgstr "" -#: gnu/packages/tex.scm:9169 +#: gnu/packages/tex.scm:9517 msgid "" "The @code{fontaxes} package adds several new font\n" "axes on top of LaTeX's New Font Selection Scheme (NFSS). In\n" @@ -19037,7 +19310,7 @@ msgid "" "figure versions offered by many professional fonts." msgstr "" -#: gnu/packages/tex.scm:9192 +#: gnu/packages/tex.scm:9540 msgid "" "The bundle comprises: @code{authblk}, which permits\n" "footnote style author/affiliation input in the @command{\\author} command,\n" @@ -19047,7 +19320,7 @@ msgid "" "@code{sublabel}, which permits counters to be subnumbered." msgstr "" -#: gnu/packages/tex.scm:9211 +#: gnu/packages/tex.scm:9559 msgid "" "Many font families available for use with LaTeX are\n" "available at multiple weights. Many Type 1-oriented support packages\n" @@ -19058,7 +19331,7 @@ msgid "" "@code{mweights} package provides a solution to these difficulties." msgstr "" -#: gnu/packages/tex.scm:9237 +#: gnu/packages/tex.scm:9585 msgid "" "Cabin is a humanist sans with four weights, true\n" "italics and small capitals. According to its designer, Pablo\n" @@ -19072,7 +19345,7 @@ msgid "" "use with [pdf]LaTeX." msgstr "" -#: gnu/packages/tex.scm:9268 +#: gnu/packages/tex.scm:9616 msgid "" "The @code{newtx} bundle splits\n" "@code{txfonts.sty} (from the TX fonts distribution) into two\n" @@ -19084,7 +19357,7 @@ msgid "" "mathematics package that matches Libertine text quite well." msgstr "" -#: gnu/packages/tex.scm:9296 +#: gnu/packages/tex.scm:9644 msgid "" "@code{xcharter} repackages Bitstream Charter with an\n" "extended set of features. The extension provides small caps, oldstyle\n" @@ -19093,7 +19366,7 @@ msgid "" "Type 1 and OTF formats, with supporting files as necessary." msgstr "" -#: gnu/packages/tex.scm:9320 +#: gnu/packages/tex.scm:9668 msgid "" "The legacy @emph{texnansi} (TeX and ANSI) encoding\n" "is known in the LaTeX scheme of things as @emph{LY1} encoding. The\n" @@ -19102,14 +19375,14 @@ msgid "" "LY1 encoding." msgstr "" -#: gnu/packages/tex.scm:9349 +#: gnu/packages/tex.scm:9697 msgid "" "This is a LaTeX2ε package to help change the style of any or\n" "all of LaTeX's sectional headers in the article, book, or report classes.\n" "Examples include the addition of rules above or below a section title." msgstr "" -#: gnu/packages/tex.scm:9375 +#: gnu/packages/tex.scm:9723 msgid "" "LaTeX can, by default, only cope with 18 outstanding floats;\n" "any more, and you get the error “too many unprocessed floats”. This package\n" @@ -19120,19 +19393,19 @@ msgid "" "floats merely delays the arrival of the inevitable error message." msgstr "" -#: gnu/packages/tex.scm:9408 +#: gnu/packages/tex.scm:9756 msgid "" "This package provides a command for the LaTeX programmer for\n" "testing whether an argument is empty." msgstr "" -#: gnu/packages/tex.scm:9435 +#: gnu/packages/tex.scm:9783 msgid "" "The pagenote package provides tagged notes on a separate\n" "page (also known as ‘end notes’)." msgstr "" -#: gnu/packages/tex.scm:9463 +#: gnu/packages/tex.scm:9811 msgid "" "The @code{titling} package provides control over the\n" "typesetting of the @code{\\maketitle} command and @code{\\thanks} commands,\n" @@ -19142,7 +19415,7 @@ msgid "" "a physical page." msgstr "" -#: gnu/packages/tex.scm:9493 +#: gnu/packages/tex.scm:9841 msgid "" "This package provides an @code{\\ifoddpage} conditional to\n" "determine if the current page is odd or even. The macro @code{\\checkoddpage}\n" @@ -19152,7 +19425,7 @@ msgid "" "@code{oneside} mode where all pages use the odd page layout." msgstr "" -#: gnu/packages/tex.scm:9523 +#: gnu/packages/tex.scm:9871 msgid "" "The package provides \"store boxes\" whose user interface\n" "matches that of normal LaTeX \"save boxes\", except that the content of a\n" @@ -19161,7 +19434,7 @@ msgid "" "DVI is output, store boxes behave the same as save boxes." msgstr "" -#: gnu/packages/tex.scm:9552 +#: gnu/packages/tex.scm:9900 msgid "" "The package provides macros to collect and process a macro\n" "argument (i.e., something which looks like a macro argument) as a horizontal\n" @@ -19174,13 +19447,13 @@ msgid "" "The macros were designed for use within other macros." msgstr "" -#: gnu/packages/tex.scm:9584 +#: gnu/packages/tex.scm:9932 msgid "" "This package provides macros for adding to, and reordering\n" "the list of graphics file extensions recognised by package graphics." msgstr "" -#: gnu/packages/tex.scm:9618 +#: gnu/packages/tex.scm:9966 msgid "" "The package provides several macros to adjust boxed\n" "content. One purpose is to supplement the standard @code{graphics} package,\n" @@ -19193,7 +19466,7 @@ msgid "" "@code{\\minsizebox}, @code{\\maxsizebox} and @code{\\phantombox}." msgstr "" -#: gnu/packages/tex.scm:9644 +#: gnu/packages/tex.scm:9992 msgid "" "This package provides an environment for colored and\n" "framed text boxes with a heading line. Optionally, such a box may be split in\n" @@ -19204,7 +19477,7 @@ msgid "" "parts." msgstr "" -#: gnu/packages/tex.scm:9675 +#: gnu/packages/tex.scm:10023 msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems. The commands allow for writing\n" @@ -19213,13 +19486,13 @@ msgid "" "styles of inference rules, placement of labels, etc." msgstr "" -#: gnu/packages/tex.scm:9704 +#: gnu/packages/tex.scm:10052 msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems." msgstr "" -#: gnu/packages/tex.scm:9724 +#: gnu/packages/tex.scm:10072 msgid "" "This package provides the European currency symbol for the\n" "Euro implemented in METAFONT, using the official European Commission\n" @@ -19228,7 +19501,7 @@ msgid "" "pre-compiled font files, and documentation." msgstr "" -#: gnu/packages/tex.scm:9754 +#: gnu/packages/tex.scm:10102 msgid "" "The @code{kastrup} package provides the\n" "@emph{binhex.tex} file. This file provides expandable macros for both\n" @@ -19238,7 +19511,7 @@ msgid "" "LaTeX and plain TeX." msgstr "" -#: gnu/packages/tex.scm:9774 +#: gnu/packages/tex.scm:10122 msgid "" "This LaTeX package provides a flexible mechanism for translating\n" "individual words into different languages. For example, it can be used to\n" @@ -19249,7 +19522,7 @@ msgid "" "automatically translate more than a few words." msgstr "" -#: gnu/packages/tex.scm:9795 +#: gnu/packages/tex.scm:10143 msgid "" "This package facilitates placing boxes at absolute positions on the\n" "LaTeX page. There are several reasons why this might be useful, but the main\n" @@ -19262,7 +19535,7 @@ msgid "" "accompanied by various configuration commands." msgstr "" -#: gnu/packages/tex.scm:9819 +#: gnu/packages/tex.scm:10167 msgid "" "This package extends the @code{ifthen} package by implementing new\n" "commands to go within the first argument of @code{\\\\ifthenelse}: to test\n" @@ -19272,14 +19545,14 @@ msgid "" "handle complex tests." msgstr "" -#: gnu/packages/tex.scm:9852 +#: gnu/packages/tex.scm:10200 msgid "" "BibTool manipulates BibTeX files. The possibilities of BibTool include\n" "sorting and merging of BibTeX databases, generation of uniform reference keys,\n" "and selecting references used in a publication." msgstr "" -#: gnu/packages/texinfo.scm:87 +#: gnu/packages/texinfo.scm:88 msgid "" "Texinfo is the official documentation format of the GNU project. It\n" "uses a single source file using explicit commands to produce a final document\n" @@ -19289,7 +19562,7 @@ msgid "" "is on expressing the content semantically, avoiding physical markup commands." msgstr "" -#: gnu/packages/texinfo.scm:216 +#: gnu/packages/texinfo.scm:230 msgid "" "Texi2HTML is a Perl script which converts Texinfo source files to HTML\n" "output. It now supports many advanced features, such as internationalization\n" @@ -19304,7 +19577,7 @@ msgid "" "Texi2HTML." msgstr "" -#: gnu/packages/texinfo.scm:283 +#: gnu/packages/texinfo.scm:297 msgid "" "Pinfo is an Info file viewer. Pinfo is similar in use to the Lynx web\n" "browser. You just move across info nodes, and select links, follow them, etc.\n" @@ -19663,6 +19936,12 @@ msgstr "" #: gnu/packages/textutils.scm:1406 msgid "" +"@code{utf-8-lineseparator} provides a tool to efficiently check text\n" +"files for valid UTF-8 use and to report which line endings they use." +msgstr "" + +#: gnu/packages/textutils.scm:1439 +msgid "" "@code{csvdiff} is a diff tool to compute changes between two\n" "CSV files. It can compare CSV files with a million records in under 2\n" "seconds. It is specifically suited for comparing CSV files dumped from\n" @@ -19864,27 +20143,27 @@ msgid "" "visualize your public Git repositories on a web interface." msgstr "" -#: gnu/packages/version-control.scm:1706 +#: gnu/packages/version-control.scm:1699 msgid "" "Pre-commit is a multi-language package manager for pre-commit hooks. You\n" "specify a list of hooks you want and pre-commit manages the installation and\n" "execution of any hook written in any language before every commit." msgstr "" -#: gnu/packages/version-control.scm:1796 +#: gnu/packages/version-control.scm:1789 msgid "" "Mercurial is a free, distributed source control management tool. It\n" "efficiently handles projects of any size and offers an easy and intuitive\n" "interface." msgstr "" -#: gnu/packages/version-control.scm:1823 +#: gnu/packages/version-control.scm:1816 msgid "" "Evolve is a Mercurial extension for faster and safer mutable\n" "history. It implements the changeset evolution concept for Mercurial." msgstr "" -#: gnu/packages/version-control.scm:1879 +#: gnu/packages/version-control.scm:1872 msgid "" "This package provides a Mercurial extension for signing\n" "the changeset hash of commits. The signure is embedded directly in the\n" @@ -19892,7 +20171,7 @@ msgid "" "can be used for signing." msgstr "" -#: gnu/packages/version-control.scm:1914 +#: gnu/packages/version-control.scm:1907 msgid "" "Neon is an HTTP and WebDAV client library, with a C interface and the\n" "following features:\n" @@ -19914,7 +20193,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/version-control.scm:2010 +#: gnu/packages/version-control.scm:2003 msgid "" "@dfn{Subversion} (svn) exists to be recognized and adopted as a\n" "centralized version control system characterized by its\n" @@ -19923,7 +20202,7 @@ msgid "" "projects, from individuals to large-scale enterprise operations." msgstr "" -#: gnu/packages/version-control.scm:2044 +#: gnu/packages/version-control.scm:2037 msgid "" "RCS is the original Revision Control System. It works on a\n" "file-by-file basis, in contrast to subsequent version control systems such as\n" @@ -19932,21 +20211,21 @@ msgid "" "machine." msgstr "" -#: gnu/packages/version-control.scm:2067 +#: gnu/packages/version-control.scm:2060 msgid "" "@code{blame} outputs an annotated revision from each RCS file. An\n" "annotated RCS file describes the revision and date in which each line was\n" "added to the file, and the author of each line." msgstr "" -#: gnu/packages/version-control.scm:2088 +#: gnu/packages/version-control.scm:2081 msgid "" "The @code{rcshist} utility displays the complete revision history of a\n" "set of RCS files including log messages and patches. It can also display the\n" "patch associated with a particular revision of an RCS file." msgstr "" -#: gnu/packages/version-control.scm:2116 +#: gnu/packages/version-control.scm:2109 msgid "" "CVS is a version control system, an important component of Source\n" "Configuration Management (SCM). Using it, you can record the history of\n" @@ -19954,7 +20233,7 @@ msgid "" "RCS, PRCS, and Aegis packages." msgstr "" -#: gnu/packages/version-control.scm:2150 +#: gnu/packages/version-control.scm:2143 msgid "" "This program analyzes a collection of RCS files in a CVS\n" "repository (or outside of one) and, when possible, emits an equivalent history\n" @@ -19967,7 +20246,7 @@ msgid "" "masters from remote CVS hosts." msgstr "" -#: gnu/packages/version-control.scm:2180 +#: gnu/packages/version-control.scm:2173 msgid "" "The vc-dwim package contains two tools, \"vc-dwim\" and \"vc-chlog\".\n" "vc-dwim is a tool that simplifies the task of maintaining a ChangeLog and\n" @@ -19977,21 +20256,21 @@ msgid "" "standards-compliant ChangeLog entries based on the changes that it detects." msgstr "" -#: gnu/packages/version-control.scm:2207 +#: gnu/packages/version-control.scm:2200 msgid "" "Diffstat reads the output of @command{diff} and displays a histogram of\n" "the insertions, deletions, and modifications per file. It is useful for\n" "reviewing large, complex patch files." msgstr "" -#: gnu/packages/version-control.scm:2246 +#: gnu/packages/version-control.scm:2239 msgid "" "GNU CSSC provides a replacement for the legacy Unix source\n" "code control system SCCS. This allows old code still under that system to be\n" "accessed and migrated on modern systems." msgstr "" -#: gnu/packages/version-control.scm:2338 +#: gnu/packages/version-control.scm:2331 msgid "" "Aegis is a project change supervisor, and performs some of\n" "the Software Configuration Management needed in a CASE environment. Aegis\n" @@ -20002,7 +20281,7 @@ msgid "" "any project with more than one developer, is one of Aegis's major functions." msgstr "" -#: gnu/packages/version-control.scm:2412 +#: gnu/packages/version-control.scm:2405 msgid "" "Reposurgeon enables risky operations that version-control\n" "systems don't want to let you do, such as editing past comments and metadata\n" @@ -20013,20 +20292,20 @@ msgid "" "from Subversion to any supported Distributed Version Control System (DVCS)." msgstr "" -#: gnu/packages/version-control.scm:2451 +#: gnu/packages/version-control.scm:2444 msgid "" "Tig is an ncurses text user interface for Git, primarily intended as\n" "a history browser. It can also stage hunks for commit, or colorize the\n" "output of the @code{git} command." msgstr "" -#: gnu/packages/version-control.scm:2474 +#: gnu/packages/version-control.scm:2467 msgid "" "Recursively find the newest file in a file tree and print its\n" "modification time." msgstr "" -#: gnu/packages/version-control.scm:2521 +#: gnu/packages/version-control.scm:2514 msgid "" "Myrepos provides the @code{mr} command, which maps an operation (e.g.,\n" "fetching updates) over a collection of version control repositories. It\n" @@ -20034,14 +20313,14 @@ msgid "" "Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity." msgstr "" -#: gnu/packages/version-control.scm:2558 +#: gnu/packages/version-control.scm:2551 msgid "" "Grokmirror enables replicating large git repository\n" "collections efficiently. Mirrors decide to clone and update repositories\n" "based on a manifest file published by servers." msgstr "" -#: gnu/packages/version-control.scm:2588 +#: gnu/packages/version-control.scm:2581 msgid "" "The @code{b4} command is designed to make it easier to participate in\n" "patch-based workflows for projects that have public-inbox archives.\n" @@ -20055,26 +20334,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/version-control.scm:2635 +#: gnu/packages/version-control.scm:2628 msgid "" "This wrapper around rclone makes any destination supported\n" "by rclone usable with git-annex." msgstr "" -#: gnu/packages/version-control.scm:2689 +#: gnu/packages/version-control.scm:2682 msgid "" "Fossil is a distributed source control management system which supports\n" "access and administration over HTTP CGI or via a built-in HTTP server. It has\n" "a built-in wiki, built-in file browsing, built-in tickets system, etc." msgstr "" -#: gnu/packages/version-control.scm:2720 +#: gnu/packages/version-control.scm:2713 msgid "" "Stagit creates static pages for git repositories, the results can\n" "be served with a HTTP file server of your choice." msgstr "" -#: gnu/packages/version-control.scm:2756 +#: gnu/packages/version-control.scm:2749 msgid "" "@code{gource} provides a software version control\n" "visualization. The repository is displayed as a tree where the root of the\n" @@ -20083,7 +20362,7 @@ msgid "" "specific files and directories." msgstr "" -#: gnu/packages/version-control.scm:2804 +#: gnu/packages/version-control.scm:2797 #, scheme-format msgid "" "SRC (or src) is simple revision control, a version-control system for\n" @@ -20093,7 +20372,7 @@ msgid "" "directory full of HOWTOs." msgstr "" -#: gnu/packages/version-control.scm:2856 +#: gnu/packages/version-control.scm:2849 msgid "" "This Git extension defines a subcommand,\n" "@code{when-merged}, whose core operation is to find the merge that brought a\n" @@ -20101,7 +20380,7 @@ msgid "" "how information about the merge is displayed." msgstr "" -#: gnu/packages/version-control.scm:2900 +#: gnu/packages/version-control.scm:2893 msgid "" "This Git extension defines a subcommand, @code{imerge},\n" "which performs an incremental merge between two branches. Its two primary\n" @@ -20110,20 +20389,20 @@ msgid "" "interrupted, published, and collaborated on while in progress." msgstr "" -#: gnu/packages/version-control.scm:2951 +#: gnu/packages/version-control.scm:2944 msgid "" "Git Large File Storage (LFS) replaces large files such as audio samples,\n" "videos, datasets, and graphics with text pointers inside Git, while storing the\n" "file contents on a remote server." msgstr "" -#: gnu/packages/version-control.scm:2986 +#: gnu/packages/version-control.scm:2979 msgid "" "@code{git open} opens the repository's website from the command-line,\n" "guessing the URL pattern from the @code{origin} remote." msgstr "" -#: gnu/packages/version-control.scm:3040 +#: gnu/packages/version-control.scm:3033 msgid "" "GNU Arch, aka. @code{tla}, was one of the first free distributed\n" "version-control systems (DVCS). It saw its last release in 2006. This\n" @@ -20131,18 +20410,18 @@ msgid "" "for historians." msgstr "" -#: gnu/packages/version-control.scm:3086 +#: gnu/packages/version-control.scm:3079 msgid "" "@code{diff-so-fancy} strives to make your diffs human readable instead\n" "of machine readable. This helps improve code quality and helps you spot\n" "defects faster." msgstr "" -#: gnu/packages/version-control.scm:3142 +#: gnu/packages/version-control.scm:3135 msgid "This package provides a Git implementation library." msgstr "" -#: gnu/packages/version-control.scm:3192 +#: gnu/packages/version-control.scm:3185 msgid "" "This package provides a command-line tool to manage\n" "multiple Git repos.\n" @@ -20157,7 +20436,7 @@ msgid "" "If several repos are related, it helps to see their status together." msgstr "" -#: gnu/packages/version-control.scm:3250 +#: gnu/packages/version-control.scm:3243 #, scheme-format msgid "" "@code{ghq} provides a way to organize remote repository clones, like\n" @@ -20166,7 +20445,7 @@ msgid "" "using the remote repository URL's host and path." msgstr "" -#: gnu/packages/version-control.scm:3295 +#: gnu/packages/version-control.scm:3288 msgid "" "TkRev (formerly TkCVS) is a Tcl/Tk-based graphical interface to the CVS,\n" "Subversion and Git configuration management systems. It will also help with\n" @@ -20175,7 +20454,7 @@ msgid "" "TkDiff is included for browsing and merging your changes." msgstr "" -#: gnu/packages/version-control.scm:3328 +#: gnu/packages/version-control.scm:3321 msgid "" "@command{git filter-repo} is a versatile tool for rewriting history,\n" "which roughly falls into the same space of tool like git filter-branch but\n" @@ -20213,7 +20492,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:865 +#: gnu/packages/virtualization.scm:870 msgid "" "Ganeti is a virtual machine management tool built on top of existing\n" "virtualization technologies such as Xen or KVM. Ganeti controls:\n" @@ -20230,19 +20509,19 @@ msgid "" "commodity hardware." msgstr "" -#: gnu/packages/virtualization.scm:902 +#: gnu/packages/virtualization.scm:907 msgid "" "This package provides a guest OS definition for Ganeti that uses\n" "Guix to build virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:996 +#: gnu/packages/virtualization.scm:1001 msgid "" "This package provides a guest OS definition for Ganeti. It installs\n" "Debian or a derivative using @command{debootstrap}." msgstr "" -#: gnu/packages/virtualization.scm:1056 +#: gnu/packages/virtualization.scm:1061 msgid "" "libosinfo is a GObject based library API for managing\n" "information about operating systems, hypervisors and the (virtual) hardware\n" @@ -20252,21 +20531,21 @@ msgid "" "all common programming languages. Vala bindings are also provided." msgstr "" -#: gnu/packages/virtualization.scm:1105 +#: gnu/packages/virtualization.scm:1109 msgid "" "LXC is a userspace interface for the Linux kernel containment features.\n" "Through a powerful API and simple tools, it lets Linux users easily create and\n" "manage system or application containers." msgstr "" -#: gnu/packages/virtualization.scm:1131 +#: gnu/packages/virtualization.scm:1135 msgid "" "LXCFS is a small FUSE file system written with the intention\n" "of making Linux containers feel more like a virtual machine.\n" "It started as a side project of LXC but can be used by any run-time." msgstr "" -#: gnu/packages/virtualization.scm:1239 +#: gnu/packages/virtualization.scm:1237 msgid "" "LXD is a next generation system container manager. It\n" "offers a user experience similar to virtual machines but using Linux\n" @@ -20275,7 +20554,7 @@ msgid "" "pretty simple, REST API." msgstr "" -#: gnu/packages/virtualization.scm:1332 +#: gnu/packages/virtualization.scm:1330 msgid "" "Libvirt is a C toolkit to interact with the virtualization\n" "capabilities of recent versions of Linux. The library aims at providing long\n" @@ -20283,7 +20562,7 @@ msgid "" "to integrate other virtualization mechanisms if needed." msgstr "" -#: gnu/packages/virtualization.scm:1363 +#: gnu/packages/virtualization.scm:1359 msgid "" "libvirt-glib wraps the libvirt library to provide a\n" "high-level object-oriented API better suited for glib-based applications, via\n" @@ -20296,13 +20575,13 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/virtualization.scm:1407 +#: gnu/packages/virtualization.scm:1403 msgid "" "This package provides Python bindings to the libvirt\n" "virtualization library." msgstr "" -#: gnu/packages/virtualization.scm:1520 +#: gnu/packages/virtualization.scm:1516 msgid "" "The virt-manager application is a desktop user interface for managing\n" "virtual machines through libvirt. It primarily targets KVM VMs, but also\n" @@ -20310,7 +20589,7 @@ msgid "" "domains, their live performance and resource utilization statistics." msgstr "" -#: gnu/packages/virtualization.scm:1620 +#: gnu/packages/virtualization.scm:1616 msgid "" "Using this tool, you can freeze a running application (or\n" "part of it) and checkpoint it to a hard drive as a collection of files. You\n" @@ -20319,14 +20598,14 @@ msgid "" "mainly implemented in user space." msgstr "" -#: gnu/packages/virtualization.scm:1647 +#: gnu/packages/virtualization.scm:1643 msgid "" "qmpbackup is designed to create and restore full and\n" "incremental backups of running QEMU virtual machines via QMP, the QEMU\n" "Machine Protocol." msgstr "" -#: gnu/packages/virtualization.scm:1731 +#: gnu/packages/virtualization.scm:1727 msgid "" "Looking Glass allows the use of a KVM (Kernel-based Virtual\n" "Machine) configured for VGA PCI Pass-through without an attached physical\n" @@ -20334,7 +20613,7 @@ msgid "" "main monitor/GPU." msgstr "" -#: gnu/packages/virtualization.scm:1783 +#: gnu/packages/virtualization.scm:1779 msgid "" "@command{runc} is a command line client for running applications\n" "packaged according to the\n" @@ -20343,13 +20622,13 @@ msgid "" "Open Container Initiative specification." msgstr "" -#: gnu/packages/virtualization.scm:1832 +#: gnu/packages/virtualization.scm:1828 msgid "" "@command{umoci} is a tool that allows for high-level modification of an\n" "Open Container Initiative (OCI) image layout and its tagged images." msgstr "" -#: gnu/packages/virtualization.scm:1886 +#: gnu/packages/virtualization.scm:1882 msgid "" "@command{skopeo} is a command line utility providing various operations\n" "with container images and container image registries. It can:\n" @@ -20370,14 +20649,14 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:1922 +#: gnu/packages/virtualization.scm:1918 msgid "" "Python-vagrant is a Python module that provides a thin wrapper around the\n" "@code{vagrant} command line executable, allowing programmatic control of Vagrant\n" "virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:1977 +#: gnu/packages/virtualization.scm:1979 msgid "" "Bubblewrap is aimed at running applications in a sandbox,\n" "restricting their access to parts of the operating system or user data such as\n" @@ -20387,7 +20666,7 @@ msgid "" "by default and can be made read-only." msgstr "" -#: gnu/packages/virtualization.scm:2004 +#: gnu/packages/virtualization.scm:2006 msgid "" "Bochs is an emulator which can emulate Intel x86 CPU, common I/O\n" "devices, and a custom BIOS. It can also be compiled to emulate many different\n" @@ -20396,64 +20675,67 @@ msgid "" "DOS or Microsoft Windows." msgstr "" -#: gnu/packages/virtualization.scm:2210 +#: gnu/packages/virtualization.scm:2212 msgid "" "This package provides the Xen Virtual Machine Monitor\n" "which is a hypervisor." msgstr "" -#: gnu/packages/virtualization.scm:2242 +#: gnu/packages/virtualization.scm:2244 msgid "" "This package contains a set of tools to assist\n" "administrators and developers in managing the database." msgstr "" -#: gnu/packages/virtualization.scm:2275 +#: gnu/packages/virtualization.scm:2277 msgid "" "Osinfo-db provides the database files for use with the\n" "libosinfo library. It provides information about guest operating systems for\n" "use with virtualization provisioning tools" msgstr "" -#: gnu/packages/virtualization.scm:2317 +#: gnu/packages/virtualization.scm:2319 msgid "" "@code{transient} is a wrapper for QEMU allowing the creation of virtual\n" "machines with shared folder, ssh, and disk creation support." msgstr "" -#: gnu/packages/webkit.scm:93 +#: gnu/packages/webkit.scm:94 msgid "" "LibWPE is general-purpose library specifically developed for\n" "the WPE-flavored port of WebKit." msgstr "" -#: gnu/packages/webkit.scm:119 +#: gnu/packages/webkit.scm:120 msgid "" "This package provides a backend implementation for the WPE WebKit\n" "engine that uses Wayland for graphics output." msgstr "" -#: gnu/packages/webkit.scm:216 +#: gnu/packages/webkit.scm:227 msgid "" "WPE WebKit allows embedders to create simple and performant\n" "systems based on Web platform technologies. It is designed with hardware\n" "acceleration in mind, leveraging common 3D graphics APIs for best performance." msgstr "" -#: gnu/packages/webkit.scm:351 +#: gnu/packages/webkit.scm:355 msgid "" "WebKitGTK+ is a full-featured port of the WebKit rendering engine,\n" "suitable for projects requiring any kind of web integration, from hybrid\n" -"HTML/CSS applications to full-fledged web browsers." +"HTML/CSS applications to full-fledged web browsers. WebKitGTK+ video playing\n" +"capabilities can be extended through the use of GStreamer plugins (not\n" +"propagated by default) such as @code{gst-plugins-good} and\n" +"@code{gst-plugins-bad}." msgstr "" -#: gnu/packages/web.scm:250 +#: gnu/packages/web.scm:251 msgid "" "Qhttp is a light-weight and asynchronous HTTP library\n" "(both server & client) in Qt5 and C++14." msgstr "" -#: gnu/packages/web.scm:280 +#: gnu/packages/web.scm:281 msgid "" "The Apache HTTP Server Project is a collaborative software development\n" "effort aimed at creating a robust, commercial-grade, featureful, and\n" @@ -20463,14 +20745,14 @@ msgid "" "and its related documentation." msgstr "" -#: gnu/packages/web.scm:314 +#: gnu/packages/web.scm:315 msgid "" "The mod_wsgi module for the Apache HTTPD Server adds support for running\n" "applications that support the Python @acronym{WSGI, Web Server Gateway\n" "Interface} specification." msgstr "" -#: gnu/packages/web.scm:356 +#: gnu/packages/web.scm:357 msgid "" "Monolith bundles any web page into a single HTML file.\n" "\n" @@ -20483,38 +20765,38 @@ msgid "" "the same, being completely separated from the Internet." msgstr "" -#: gnu/packages/web.scm:460 +#: gnu/packages/web.scm:461 msgid "" "Nginx (\"engine X\") is a high-performance web and reverse proxy server\n" "created by Igor Sysoev. It can be used both as a stand-alone web server\n" "and as a proxy to reduce the load on back-end HTTP or mail servers." msgstr "" -#: gnu/packages/web.scm:518 +#: gnu/packages/web.scm:519 msgid "This package provides HTML documentation for the nginx web server." msgstr "" -#: gnu/packages/web.scm:647 +#: gnu/packages/web.scm:648 msgid "" "This nginx module parses the Accept-Language field in HTTP headers and\n" "chooses the most suitable locale for the user from the list of locales\n" "supported at your website." msgstr "" -#: gnu/packages/web.scm:694 +#: gnu/packages/web.scm:695 msgid "" "XSLScript is a terse notation for writing complex XSLT stylesheets.\n" "This is modified version, specifically intended for use with the NGinx\n" "documentation." msgstr "" -#: gnu/packages/web.scm:767 +#: gnu/packages/web.scm:768 msgid "" "This NGINX module provides a scripting support with Lua\n" "programming language." msgstr "" -#: gnu/packages/web.scm:820 +#: gnu/packages/web.scm:821 msgid "" "This NGINX module provides streaming with the @acronym{RTMP,\n" "Real-Time Messaging Protocol}, @acronym{DASH, Dynamic Adaptive Streaming over HTTP},\n" @@ -20524,7 +20806,7 @@ msgid "" "stream. Remote control of the module is possible over HTTP." msgstr "" -#: gnu/packages/web.scm:882 +#: gnu/packages/web.scm:883 msgid "" "Lighttpd is a secure, fast, compliant, and very flexible web-server that\n" "has been optimized for high-performance environments. It has a very low\n" @@ -20532,41 +20814,41 @@ msgid "" "CGI, authentication, output compression, URL rewriting and many more." msgstr "" -#: gnu/packages/web.scm:910 +#: gnu/packages/web.scm:911 msgid "" "FastCGI is a language-independent, scalable extension to CGI\n" "that provides high performance without the limitations of server specific\n" "APIs." msgstr "" -#: gnu/packages/web.scm:948 +#: gnu/packages/web.scm:949 msgid "" "Fcgiwrap is a simple server for running CGI applications\n" "over FastCGI. It hopes to provide clean CGI support to Nginx (and other web\n" "servers that may need it)." msgstr "" -#: gnu/packages/web.scm:977 +#: gnu/packages/web.scm:978 msgid "" "Starman is a PSGI perl web server that has unique features\n" "such as high performance, preforking, signal support, superdaemon awareness,\n" "and UNIX socket support." msgstr "" -#: gnu/packages/web.scm:1010 +#: gnu/packages/web.scm:1011 msgid "" "IcedTea-Web is an implementation of the @dfn{Java Network Launching\n" "Protocol}, also known as Java Web Start. This package provides tools and\n" "libraries for working with JNLP applets." msgstr "" -#: gnu/packages/web.scm:1035 +#: gnu/packages/web.scm:1036 msgid "" "Jansson is a C library for encoding, decoding and manipulating JSON\n" "data." msgstr "" -#: gnu/packages/web.scm:1055 +#: gnu/packages/web.scm:1056 msgid "" "JSON-C implements a reference counting object model that allows you to\n" "easily construct JSON objects in C, output them as JSON-formatted strings and\n" @@ -20574,7 +20856,7 @@ msgid "" "It aims to conform to RFC 7159." msgstr "" -#: gnu/packages/web.scm:1131 +#: gnu/packages/web.scm:1132 msgid "" "This package provides a very low footprint JSON parser\n" "written in portable ANSI C.\n" @@ -20587,21 +20869,21 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:1176 +#: gnu/packages/web.scm:1177 msgid "" "QJson is a Qt-based library that maps JSON data to\n" "@code{QVariant} objects. JSON arrays will be mapped to @code{QVariantList}\n" "instances, while JSON's objects will be mapped to @code{QVariantMap}." msgstr "" -#: gnu/packages/web.scm:1227 +#: gnu/packages/web.scm:1228 msgid "" "QOAuth is an attempt to support interaction with\n" "OAuth-powered network services in a Qt way, i.e. simply, clearly and\n" "efficiently. It gives the application developer no more than 4 methods." msgstr "" -#: gnu/packages/web.scm:1339 +#: gnu/packages/web.scm:1340 msgid "" "Krona is a flexible tool for exploring the relative proportions of\n" "hierarchical data, such as metagenomic classifications, using a radial,\n" @@ -20610,26 +20892,26 @@ msgid "" "current version of any major web browser." msgstr "" -#: gnu/packages/web.scm:1380 +#: gnu/packages/web.scm:1381 msgid "" "RapidJSON is a fast JSON parser/generator for C++ with both SAX/DOM\n" "style API." msgstr "" -#: gnu/packages/web.scm:1409 +#: gnu/packages/web.scm:1410 msgid "" "Yet Another JSON Library (YAJL) is a small event-driven (SAX-style) JSON\n" "parser written in ANSI C and a small validating JSON generator." msgstr "" -#: gnu/packages/web.scm:1439 +#: gnu/packages/web.scm:1440 msgid "" "Libwebsockets is a library that allows C programs to establish client\n" "and server WebSockets connections---a protocol layered above HTTP that allows\n" "for efficient socket-like bidirectional reliable communication channels." msgstr "" -#: gnu/packages/web.scm:1468 +#: gnu/packages/web.scm:1469 msgid "" "WABT (pronounced: wabbit) is a suite of tools for\n" "WebAssembly, including:\n" @@ -20654,7 +20936,7 @@ msgid "" "other systems that want to manipulate WebAssembly files." msgstr "" -#: gnu/packages/web.scm:1518 +#: gnu/packages/web.scm:1519 msgid "" "WebSocket++ is a C++ library that can be used to implement\n" "WebSocket functionality. The goals of the project are to provide a WebSocket\n" @@ -20662,7 +20944,7 @@ msgid "" "high performance." msgstr "" -#: gnu/packages/web.scm:1558 +#: gnu/packages/web.scm:1559 msgid "" "@code{Wslay} is an event-based C library for the WebSocket\n" "protocol version 13, described in RFC 6455. Besides a high-level API it\n" @@ -20671,7 +20953,7 @@ msgid "" "perform the opening handshake in HTTP." msgstr "" -#: gnu/packages/web.scm:1588 +#: gnu/packages/web.scm:1589 msgid "" "A \"public suffix\" is a domain name under which Internet users can\n" "directly register own names.\n" @@ -20689,20 +20971,20 @@ msgid "" "UTS#46." msgstr "" -#: gnu/packages/web.scm:1633 +#: gnu/packages/web.scm:1634 msgid "" "HTML Tidy is a command-line tool and C library that can be\n" "used to validate and fix HTML data." msgstr "" -#: gnu/packages/web.scm:1680 +#: gnu/packages/web.scm:1681 msgid "" "The esbuild tool provides a unified bundler, transpiler and\n" "minifier. It packages up JavaScript and TypeScript code, along with JSON\n" "and other data, for distribution on the web." msgstr "" -#: gnu/packages/web.scm:1716 +#: gnu/packages/web.scm:1717 msgid "" "Tinyproxy is a light-weight HTTP/HTTPS proxy\n" "daemon. Designed from the ground up to be fast and yet small, it is an ideal\n" @@ -20711,14 +20993,14 @@ msgid "" "unavailable." msgstr "" -#: gnu/packages/web.scm:1751 +#: gnu/packages/web.scm:1752 msgid "" "Polipo is a small caching web proxy (web cache, HTTP proxy, and proxy\n" "server). It was primarily designed to be used by one person or a small group\n" "of people." msgstr "" -#: gnu/packages/web.scm:1779 +#: gnu/packages/web.scm:1780 msgid "" "Websockify translates WebSockets traffic to normal socket\n" "traffic. Websockify accepts the WebSockets handshake, parses it, and then\n" @@ -20726,7 +21008,7 @@ msgid "" "directions." msgstr "" -#: gnu/packages/web.scm:1806 +#: gnu/packages/web.scm:1807 msgid "" "WWWOFFLE is a proxy web server that is especially good for\n" "intermittent internet links. It can cache HTTP, HTTPS, FTP, and finger\n" @@ -20735,7 +21017,7 @@ msgid "" "changes, and much more." msgstr "" -#: gnu/packages/web.scm:1832 +#: gnu/packages/web.scm:1833 msgid "" "liboauth is a collection of C functions implementing the OAuth API.\n" "liboauth provides functions to escape and encode strings according to OAuth\n" @@ -20744,25 +21026,25 @@ msgid "" "hash/signatures." msgstr "" -#: gnu/packages/web.scm:1855 +#: gnu/packages/web.scm:1856 msgid "" "This package contains support scripts called by libquvi to\n" "parse media stream properties." msgstr "" -#: gnu/packages/web.scm:1889 +#: gnu/packages/web.scm:1890 msgid "" "libquvi is a library with a C API for parsing media stream\n" "URLs and extracting their actual media files." msgstr "" -#: gnu/packages/web.scm:1911 +#: gnu/packages/web.scm:1912 msgid "" "quvi is a command-line-tool suite to extract media files\n" "from streaming URLs. It is a command-line wrapper for the libquvi library." msgstr "" -#: gnu/packages/web.scm:1983 +#: gnu/packages/web.scm:1984 msgid "" "serf is a C-based HTTP client library built upon the Apache Portable\n" "Runtime (APR) library. It multiplexes connections, running the read/write\n" @@ -20770,7 +21052,7 @@ msgid "" "minimum to provide high performance operation." msgstr "" -#: gnu/packages/web.scm:2018 +#: gnu/packages/web.scm:2019 msgid "" "LibSass is a @acronym{SASS,Syntactically awesome style sheets} compiler\n" "library designed for portability and efficiency. To actually compile SASS\n" @@ -20778,29 +21060,29 @@ msgid "" "@var{sassc} for example." msgstr "" -#: gnu/packages/web.scm:2067 +#: gnu/packages/web.scm:2068 msgid "" "SassC is a compiler written in C for the CSS pre-processor\n" "language known as SASS." msgstr "" -#: gnu/packages/web.scm:2112 +#: gnu/packages/web.scm:2113 msgid "" "This module provides methods to compile a log format string\n" "to perl-code, for faster generation of access_log lines." msgstr "" -#: gnu/packages/web.scm:2140 +#: gnu/packages/web.scm:2141 msgid "Authen::SASL provides an SASL authentication framework." msgstr "" -#: gnu/packages/web.scm:2163 +#: gnu/packages/web.scm:2164 msgid "" "This Catalyst action implements a sensible default end\n" "action, which will forward to the first available view." msgstr "" -#: gnu/packages/web.scm:2195 +#: gnu/packages/web.scm:2196 msgid "" "This Action handles doing automatic method dispatching for\n" "REST requests. It takes a normal Catalyst action, and changes the dispatch to\n" @@ -20809,20 +21091,20 @@ msgid "" "regular method." msgstr "" -#: gnu/packages/web.scm:2226 +#: gnu/packages/web.scm:2227 msgid "" "The Catalyst::Authentication::Store::DBIx::Class class\n" "provides access to authentication information stored in a database via\n" "DBIx::Class." msgstr "" -#: gnu/packages/web.scm:2252 +#: gnu/packages/web.scm:2253 msgid "" "Catalyst::Component::InstancePerContext returns a new\n" "instance of a component on each request." msgstr "" -#: gnu/packages/web.scm:2288 +#: gnu/packages/web.scm:2289 msgid "" "The Catalyst-Devel distribution includes a variety of\n" "modules useful for the development of Catalyst applications, but not required\n" @@ -20832,7 +21114,7 @@ msgid "" "modules." msgstr "" -#: gnu/packages/web.scm:2316 +#: gnu/packages/web.scm:2317 msgid "" "Dispatch type managing path-matching behaviour using\n" "regexes. Regex dispatch types have been deprecated and removed from Catalyst\n" @@ -20842,20 +21124,20 @@ msgid "" "when the dispatch type is first seen in your application." msgstr "" -#: gnu/packages/web.scm:2363 +#: gnu/packages/web.scm:2364 msgid "" "This is a Catalyst Model for DBIx::Class::Schema-based\n" "Models." msgstr "" -#: gnu/packages/web.scm:2385 +#: gnu/packages/web.scm:2386 msgid "" "This Catalyst plugin enables you to create \"access logs\"\n" "from within a Catalyst application instead of requiring a webserver to do it\n" "for you. It will work even with Catalyst debug logging turned off." msgstr "" -#: gnu/packages/web.scm:2419 +#: gnu/packages/web.scm:2420 msgid "" "The authentication plugin provides generic user support for\n" "Catalyst apps. It is the basis for both authentication (checking the user is\n" @@ -20863,32 +21145,32 @@ msgid "" "system authorises them to do)." msgstr "" -#: gnu/packages/web.scm:2447 +#: gnu/packages/web.scm:2448 msgid "" "Catalyst::Plugin::Authorization::Roles provides role-based\n" "authorization for Catalyst based on Catalyst::Plugin::Authentication." msgstr "" -#: gnu/packages/web.scm:2469 +#: gnu/packages/web.scm:2470 msgid "" "This plugin creates and validates Captcha images for\n" "Catalyst." msgstr "" -#: gnu/packages/web.scm:2493 +#: gnu/packages/web.scm:2494 msgid "" "This module will attempt to load find and load configuration\n" "files of various types. Currently it supports YAML, JSON, XML, INI and Perl\n" "formats." msgstr "" -#: gnu/packages/web.scm:2522 +#: gnu/packages/web.scm:2523 msgid "" "This plugin links the two pieces required for session\n" "management in web applications together: the state, and the store." msgstr "" -#: gnu/packages/web.scm:2548 +#: gnu/packages/web.scm:2549 msgid "" "In order for Catalyst::Plugin::Session to work, the session\n" "ID needs to be stored on the client, and the session data needs to be stored\n" @@ -20896,14 +21178,14 @@ msgid "" "cookie mechanism." msgstr "" -#: gnu/packages/web.scm:2578 +#: gnu/packages/web.scm:2579 msgid "" "Catalyst::Plugin::Session::Store::FastMmap is a fast session\n" "storage plugin for Catalyst that uses an mmap'ed file to act as a shared\n" "memory interprocess cache. It is based on Cache::FastMmap." msgstr "" -#: gnu/packages/web.scm:2602 +#: gnu/packages/web.scm:2603 msgid "" "This plugin enhances the standard Catalyst debug screen by\n" "including a stack trace of your application up to the point where the error\n" @@ -20911,7 +21193,7 @@ msgid "" "number, file name, and code context surrounding the line number." msgstr "" -#: gnu/packages/web.scm:2628 +#: gnu/packages/web.scm:2629 msgid "" "The Static::Simple plugin is designed to make serving static\n" "content in your application during development quick and easy, without\n" @@ -20922,7 +21204,7 @@ msgid "" "MIME type directly to the browser, without being processed through Catalyst." msgstr "" -#: gnu/packages/web.scm:2687 +#: gnu/packages/web.scm:2688 msgid "" "Catalyst is a modern framework for making web applications.\n" "It is designed to make it easy to manage the various tasks you need to do to\n" @@ -20930,7 +21212,7 @@ msgid "" "\"plug in\" existing Perl modules that do what you need." msgstr "" -#: gnu/packages/web.scm:2715 +#: gnu/packages/web.scm:2716 msgid "" "This module is a Moose::Role which allows you more\n" "flexibility in your application's deployment configurations when deployed\n" @@ -20938,26 +21220,26 @@ msgid "" "replaced with the contents of the X-Request-Base header." msgstr "" -#: gnu/packages/web.scm:2743 +#: gnu/packages/web.scm:2744 msgid "" "The purpose of this module is to provide a method for\n" "downloading data into many supportable formats. For example, downloading a\n" "table based report in a variety of formats (CSV, HTML, etc.)." msgstr "" -#: gnu/packages/web.scm:2767 +#: gnu/packages/web.scm:2768 msgid "" "Catalyst::View::JSON is a Catalyst View handler that returns\n" "stash data in JSON format." msgstr "" -#: gnu/packages/web.scm:2793 +#: gnu/packages/web.scm:2794 msgid "" "This module is a Catalyst view class for the Template\n" "Toolkit." msgstr "" -#: gnu/packages/web.scm:2821 +#: gnu/packages/web.scm:2822 msgid "" "Adds a \"COMPONENT\" in Catalyst::Component method to your\n" "Catalyst component base class that reads the optional \"traits\" parameter\n" @@ -20966,19 +21248,19 @@ msgid "" "MooseX::Traits::Pluggable." msgstr "" -#: gnu/packages/web.scm:2845 +#: gnu/packages/web.scm:2846 msgid "" "CatalystX::RoleApplicator applies roles to Catalyst\n" "application classes." msgstr "" -#: gnu/packages/web.scm:2870 +#: gnu/packages/web.scm:2871 msgid "" "This module provides a Catalyst extension to replace the\n" "development server with Starman." msgstr "" -#: gnu/packages/web.scm:2892 +#: gnu/packages/web.scm:2893 msgid "" "CGI.pm is a stable, complete and mature solution for\n" "processing and preparing HTTP requests and responses. Major features include\n" @@ -20987,44 +21269,44 @@ msgid "" "headers." msgstr "" -#: gnu/packages/web.scm:2919 +#: gnu/packages/web.scm:2920 msgid "" "@code{CGI::FormBuilder} provides an easy way to generate and process CGI\n" "form-based applications." msgstr "" -#: gnu/packages/web.scm:2946 +#: gnu/packages/web.scm:2947 msgid "" "@code{CGI::Session} provides modular session management system across\n" "HTTP requests." msgstr "" -#: gnu/packages/web.scm:2967 +#: gnu/packages/web.scm:2968 msgid "" "CGI::Simple provides a relatively lightweight drop in\n" "replacement for CGI.pm. It shares an identical OO interface to CGI.pm for\n" "parameter parsing, file upload, cookie handling and header generation." msgstr "" -#: gnu/packages/web.scm:2989 +#: gnu/packages/web.scm:2990 msgid "" "This is a module for building structured data from CGI\n" "inputs, in a manner reminiscent of how PHP does." msgstr "" -#: gnu/packages/web.scm:3012 +#: gnu/packages/web.scm:3013 msgid "" "This module provides functions that deal with the date\n" "formats used by the HTTP protocol." msgstr "" -#: gnu/packages/web.scm:3033 +#: gnu/packages/web.scm:3034 msgid "" "Digest::MD5::File is a Perl extension for getting MD5 sums\n" "for files and urls." msgstr "" -#: gnu/packages/web.scm:3053 +#: gnu/packages/web.scm:3054 msgid "" "The POSIX locale system is used to specify both the language\n" "conventions requested by the user and the preferred character set to\n" @@ -21036,66 +21318,66 @@ msgid "" "with Encode::decode(locale => $string)." msgstr "" -#: gnu/packages/web.scm:3086 +#: gnu/packages/web.scm:3087 msgid "" "@code{Feed::Find} implements feed auto-discovery for finding\n" "syndication feeds, given a URI. It will discover the following feed formats:\n" "RSS 0.91, RSS 1.0, RSS 2.0, Atom." msgstr "" -#: gnu/packages/web.scm:3109 +#: gnu/packages/web.scm:3110 msgid "" "The File::Listing module exports a single function called parse_dir(),\n" "which can be used to parse directory listings." msgstr "" -#: gnu/packages/web.scm:3142 +#: gnu/packages/web.scm:3143 msgid "" "Finance::Quote gets stock quotes from various internet sources, including\n" "Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange." msgstr "" -#: gnu/packages/web.scm:3165 +#: gnu/packages/web.scm:3166 msgid "" "This is a Perl extension for using GSSAPI C bindings as\n" "described in RFC 2744." msgstr "" -#: gnu/packages/web.scm:3187 +#: gnu/packages/web.scm:3188 msgid "" "HTML::Element::Extended is a Perl extension for manipulating a table\n" "composed of HTML::Element style components." msgstr "" -#: gnu/packages/web.scm:3208 +#: gnu/packages/web.scm:3209 msgid "" "Objects of the HTML::Form class represents a single HTML\n" "
...
instance." msgstr "" -#: gnu/packages/web.scm:3241 +#: gnu/packages/web.scm:3242 msgid "@code{HTML::Scrubber} Perl extension for scrubbing/sanitizing HTML." msgstr "" -#: gnu/packages/web.scm:3260 +#: gnu/packages/web.scm:3261 msgid "" "HTML::Lint is a pure-Perl HTML parser and checker for\n" "syntactic legitmacy." msgstr "" -#: gnu/packages/web.scm:3282 +#: gnu/packages/web.scm:3283 msgid "" "HTML::TableExtract is a Perl module for extracting the content contained\n" "in tables within an HTML document, either as text or encoded element trees." msgstr "" -#: gnu/packages/web.scm:3305 +#: gnu/packages/web.scm:3306 msgid "" "This distribution contains a suite of modules for\n" "representing, creating, and extracting information from HTML syntax trees." msgstr "" -#: gnu/packages/web.scm:3327 +#: gnu/packages/web.scm:3328 msgid "" "Objects of the HTML::Parser class will recognize markup and separate\n" "it from plain text (alias data content) in HTML documents. As different\n" @@ -21103,13 +21385,13 @@ msgid "" "are invoked." msgstr "" -#: gnu/packages/web.scm:3349 +#: gnu/packages/web.scm:3350 msgid "" "The HTML::Tagset module contains several data tables useful in various\n" "kinds of HTML parsing operations." msgstr "" -#: gnu/packages/web.scm:3370 +#: gnu/packages/web.scm:3371 msgid "" "This module attempts to make using HTML templates simple and natural.\n" "It extends standard HTML with a few new HTML-esque tags: @code{},\n" @@ -21120,40 +21402,40 @@ msgid "" "you to separate design from the data." msgstr "" -#: gnu/packages/web.scm:3398 +#: gnu/packages/web.scm:3399 msgid "" "HTTP::Body parses chunks of HTTP POST data and supports\n" "application/octet-stream, application/json, application/x-www-form-urlencoded,\n" "and multipart/form-data." msgstr "" -#: gnu/packages/web.scm:3421 +#: gnu/packages/web.scm:3422 msgid "" "This module implements a minimalist HTTP user agent cookie\n" "jar in conformance with RFC 6265 ." msgstr "" -#: gnu/packages/web.scm:3443 +#: gnu/packages/web.scm:3444 msgid "" "The HTTP::Cookies class is for objects that represent a cookie jar,\n" "that is, a database of all the HTTP cookies that a given LWP::UserAgent\n" "object knows about." msgstr "" -#: gnu/packages/web.scm:3466 +#: gnu/packages/web.scm:3467 msgid "" "Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen\n" "on a socket for incoming requests. The HTTP::Daemon is a subclass of\n" "IO::Socket::INET, so you can perform socket operations directly on it too." msgstr "" -#: gnu/packages/web.scm:3487 +#: gnu/packages/web.scm:3488 msgid "" "The HTTP::Date module provides functions that deal with date formats\n" "used by the HTTP protocol (and then some more)." msgstr "" -#: gnu/packages/web.scm:3508 +#: gnu/packages/web.scm:3509 msgid "" "@code{HTTP::Lite} is a stand-alone lightweight\n" "HTTP/1.1 implementation for perl. It is intended for use in\n" @@ -21167,11 +21449,11 @@ msgid "" "processing of request data as it arrives." msgstr "" -#: gnu/packages/web.scm:3541 +#: gnu/packages/web.scm:3542 msgid "An HTTP::Message object contains some headers and a content body." msgstr "" -#: gnu/packages/web.scm:3562 +#: gnu/packages/web.scm:3563 msgid "" "The HTTP::Negotiate module provides a complete implementation of the\n" "HTTP content negotiation algorithm specified in\n" @@ -21181,7 +21463,7 @@ msgid "" "fields in the request." msgstr "" -#: gnu/packages/web.scm:3587 +#: gnu/packages/web.scm:3588 msgid "" "This is an HTTP request parser. It takes chunks of text as\n" "received and returns a @code{hint} as to what is required, or returns the\n" @@ -21189,33 +21471,33 @@ msgid "" "supported." msgstr "" -#: gnu/packages/web.scm:3610 +#: gnu/packages/web.scm:3611 msgid "" "HTTP::Parser::XS is a fast, primitive HTTP request/response\n" "parser." msgstr "" -#: gnu/packages/web.scm:3631 +#: gnu/packages/web.scm:3632 msgid "" "This module provides a convenient way to set up a CGI\n" "environment from an HTTP::Request." msgstr "" -#: gnu/packages/web.scm:3665 +#: gnu/packages/web.scm:3666 msgid "" "HTTP::Server::Simple is a simple standalone HTTP daemon with\n" "no non-core module dependencies. It can be used for building a standalone\n" "http-based UI to your existing tools." msgstr "" -#: gnu/packages/web.scm:3688 +#: gnu/packages/web.scm:3689 msgid "" "This is a very simple HTTP/1.1 client, designed for doing\n" "simple requests without the overhead of a large framework like LWP::UserAgent.\n" "It supports proxies and redirection. It also correctly resumes after EINTR." msgstr "" -#: gnu/packages/web.scm:3713 +#: gnu/packages/web.scm:3714 msgid "" "@code{HTTP::Tinyish} is a wrapper module for @acronym{LWP,libwww-perl},\n" "@code{HTTP::Tiny}, curl and wget.\n" @@ -21223,20 +21505,20 @@ msgid "" "It provides an API compatible to HTTP::Tiny." msgstr "" -#: gnu/packages/web.scm:3735 +#: gnu/packages/web.scm:3736 msgid "" "IO::HTML provides an easy way to open a file containing HTML while\n" "automatically determining its encoding. It uses the HTML5 encoding sniffing\n" "algorithm specified in section 8.2.2.1 of the draft standard." msgstr "" -#: gnu/packages/web.scm:3755 +#: gnu/packages/web.scm:3756 msgid "" "This module provides a protocol-independent way to use IPv4\n" "and IPv6 sockets, intended as a replacement for IO::Socket::INET." msgstr "" -#: gnu/packages/web.scm:3777 +#: gnu/packages/web.scm:3778 msgid "" "IO::Socket::SSL makes using SSL/TLS much easier by wrapping the\n" "necessary functionality into the familiar IO::Socket interface and providing\n" @@ -21245,7 +21527,7 @@ msgid "" "select or poll." msgstr "" -#: gnu/packages/web.scm:3816 +#: gnu/packages/web.scm:3817 msgid "" "The libwww-perl collection is a set of Perl modules which provides a\n" "simple and consistent application programming interface to the\n" @@ -21255,7 +21537,7 @@ msgid "" "help you implement simple HTTP servers." msgstr "" -#: gnu/packages/web.scm:3844 +#: gnu/packages/web.scm:3845 msgid "" "This module attempts to answer, as accurately as it can, one\n" "of the nastiest technical questions there is: am I on the internet?\n" @@ -21265,7 +21547,7 @@ msgid "" "not have DNS. We might not have a network card at all!" msgstr "" -#: gnu/packages/web.scm:3870 +#: gnu/packages/web.scm:3871 #, scheme-format msgid "" "The LWP::MediaTypes module provides functions for handling media (also\n" @@ -21274,20 +21556,20 @@ msgid "" "exists it is used instead." msgstr "" -#: gnu/packages/web.scm:3895 +#: gnu/packages/web.scm:3896 msgid "" "The LWP::Protocol::https module provides support for using\n" "https schemed URLs with LWP." msgstr "" -#: gnu/packages/web.scm:3916 +#: gnu/packages/web.scm:3917 msgid "" "LWP::UserAgent::Cached is an LWP::UserAgent subclass with\n" "cache support. It returns responses from the local file system, if available,\n" "instead of making an HTTP request." msgstr "" -#: gnu/packages/web.scm:3938 +#: gnu/packages/web.scm:3939 msgid "" "LWP::UserAgent::Determined works just like LWP::UserAgent,\n" "except that when you use it to get a web page but run into a\n" @@ -21295,7 +21577,7 @@ msgid "" "and retry a few times." msgstr "" -#: gnu/packages/web.scm:3965 +#: gnu/packages/web.scm:3966 msgid "" "@code{LWPx::ParanoidAgent} is a class subclassing\n" "@code{LWP::UserAgent} but paranoid against attackers. Its purpose is\n" @@ -21305,11 +21587,11 @@ msgid "" "is limited to http and https." msgstr "" -#: gnu/packages/web.scm:4011 +#: gnu/packages/web.scm:4012 msgid "This module provides a Perlish interface to Amazon S3." msgstr "" -#: gnu/packages/web.scm:4032 +#: gnu/packages/web.scm:4033 msgid "" "The Net::HTTP class is a low-level HTTP client. An instance of the\n" "Net::HTTP class represents a connection to an HTTP server. The HTTP protocol\n" @@ -21317,7 +21599,7 @@ msgid "" "HTTP/1.1." msgstr "" -#: gnu/packages/web.scm:4053 +#: gnu/packages/web.scm:4054 msgid "" "Net::Server is an extensible, generic Perl server engine.\n" "It attempts to be a generic server as in Net::Daemon and NetServer::Generic.\n" @@ -21331,11 +21613,11 @@ msgid "" "or to multiple server ports." msgstr "" -#: gnu/packages/web.scm:4082 +#: gnu/packages/web.scm:4083 msgid "SSL support for Net::SMTP." msgstr "" -#: gnu/packages/web.scm:4116 +#: gnu/packages/web.scm:4117 msgid "" "Plack is a set of tools for using the PSGI stack. It\n" "contains middleware components, a reference server, and utilities for Web\n" @@ -21343,7 +21625,7 @@ msgid "" "WSGI." msgstr "" -#: gnu/packages/web.scm:4143 +#: gnu/packages/web.scm:4144 msgid "" "Plack::Middleware::Deflater is a middleware to encode your response body\n" "in gzip or deflate, based on \"Accept-Encoding\" HTTP request header. It\n" @@ -21352,13 +21634,13 @@ msgid "" "servers." msgstr "" -#: gnu/packages/web.scm:4170 +#: gnu/packages/web.scm:4171 msgid "" "This module sets the body in redirect response, if it's not\n" "already set." msgstr "" -#: gnu/packages/web.scm:4193 +#: gnu/packages/web.scm:4194 msgid "" "This middleware allows for POST requests that pretend to be\n" "something else: by adding either a header named X-HTTP-Method-Override to the\n" @@ -21366,44 +21648,44 @@ msgid "" "can say what method it actually meant." msgstr "" -#: gnu/packages/web.scm:4217 +#: gnu/packages/web.scm:4218 msgid "" "This module removes the body in an HTTP response if it's not\n" "required." msgstr "" -#: gnu/packages/web.scm:4240 +#: gnu/packages/web.scm:4241 msgid "" "Plack::Middleware::ReverseProxy resets some HTTP headers,\n" "which are changed by reverse-proxy. You can specify the reverse proxy address\n" "and stop fake requests using @code{enable_if} directive in your app.psgi." msgstr "" -#: gnu/packages/web.scm:4261 +#: gnu/packages/web.scm:4262 msgid "" "This module allows your to run your Plack::Test tests\n" "against an external server instead of just against a local application through\n" "either mocked HTTP or a locally spawned server." msgstr "" -#: gnu/packages/web.scm:4283 +#: gnu/packages/web.scm:4284 msgid "Test::TCP is test utilities for TCP/IP programs." msgstr "" -#: gnu/packages/web.scm:4308 +#: gnu/packages/web.scm:4309 msgid "" "Test::WWW::Mechanize is a subclass of the Perl module\n" "WWW::Mechanize that incorporates features for web application testing." msgstr "" -#: gnu/packages/web.scm:4341 +#: gnu/packages/web.scm:4342 msgid "" "The Test::WWW::Mechanize::Catalyst module meshes the\n" "Test::WWW:Mechanize module and the Catalyst web application framework to allow\n" "testing of Catalyst applications without needing to start up a web server." msgstr "" -#: gnu/packages/web.scm:4365 +#: gnu/packages/web.scm:4366 msgid "" "PSGI is a specification to decouple web server environments\n" "from web application framework code. Test::WWW::Mechanize is a subclass of\n" @@ -21412,21 +21694,21 @@ msgid "" "applications." msgstr "" -#: gnu/packages/web.scm:4390 +#: gnu/packages/web.scm:4391 msgid "" "The URI module implements the URI class. Objects of this class\n" "represent \"Uniform Resource Identifier references\" as specified in RFC 2396\n" "and updated by RFC 2732." msgstr "" -#: gnu/packages/web.scm:4413 +#: gnu/packages/web.scm:4414 msgid "" "@code{URI::Fetch} is a smart client for fetching HTTP pages,\n" "notably syndication feeds (RSS, Atom, and others), in an intelligent, bandwidth-\n" "and time-saving way." msgstr "" -#: gnu/packages/web.scm:4437 +#: gnu/packages/web.scm:4438 msgid "" "This module finds URIs and URLs (according to what URI.pm\n" "considers a URI) in plain text. It only finds URIs which include a\n" @@ -21434,37 +21716,37 @@ msgid "" "URI::Find::Schemeless. For a command-line interface, urifind is provided." msgstr "" -#: gnu/packages/web.scm:4460 +#: gnu/packages/web.scm:4461 msgid "" "With this module, the URI package provides the same set of\n" "methods for WebSocket URIs as it does for HTTP URIs." msgstr "" -#: gnu/packages/web.scm:4483 +#: gnu/packages/web.scm:4484 msgid "" "This perl module provides a wrapper around URI templates as described in\n" "RFC 6570." msgstr "" -#: gnu/packages/web.scm:4517 +#: gnu/packages/web.scm:4518 msgid "" "This is a Perl extension interface for the libcurl file downloading\n" "library." msgstr "" -#: gnu/packages/web.scm:4548 +#: gnu/packages/web.scm:4549 msgid "" "WWW::Mechanize is a Perl module for stateful programmatic\n" "web browsing, used for automating interaction with websites." msgstr "" -#: gnu/packages/web.scm:4586 +#: gnu/packages/web.scm:4587 msgid "" "@code{WWW::OpenSearch} is a module to search @url{A9's OpenSearch,\n" "http://opensearch.a9.com} compatible search engines." msgstr "" -#: gnu/packages/web.scm:4608 +#: gnu/packages/web.scm:4609 msgid "" "The WWW::RobotRules module parses /robots.txt files as specified in\n" "\"A Standard for Robot Exclusion\", at\n" @@ -21473,13 +21755,13 @@ msgid "" "their web site." msgstr "" -#: gnu/packages/web.scm:4635 gnu/packages/web.scm:4659 +#: gnu/packages/web.scm:4640 gnu/packages/web.scm:4664 msgid "" "Universal feed parser which handles RSS 0.9x, RSS 1.0, RSS 2.0,\n" "CDF, Atom 0.3, and Atom 1.0 feeds." msgstr "" -#: gnu/packages/web.scm:4756 +#: gnu/packages/web.scm:4761 msgid "" "The Guix Data Service stores data about GNU Guix, and provides this\n" "through a web interface. It supports listening to the guix-commits mailing\n" @@ -21487,20 +21769,20 @@ msgid "" "PostgreSQL database." msgstr "" -#: gnu/packages/web.scm:4785 +#: gnu/packages/web.scm:4790 msgid "" "Gumbo is an implementation of the HTML5 parsing algorithm implemented as\n" "a pure C99 library." msgstr "" -#: gnu/packages/web.scm:4858 +#: gnu/packages/web.scm:4863 msgid "" "uWSGI presents a complete stack for networked/clustered web applications,\n" "implementing message/object passing, caching, RPC and process management.\n" "It uses the uwsgi protocol for all the networking/interprocess communications." msgstr "" -#: gnu/packages/web.scm:4891 +#: gnu/packages/web.scm:4896 msgid "" "jq is like sed for JSON data – you can use it to slice and\n" "filter and map and transform structured data with the same ease that sed, awk,\n" @@ -21510,7 +21792,7 @@ msgid "" "you'd expect." msgstr "" -#: gnu/packages/web.scm:4920 +#: gnu/packages/web.scm:4925 msgid "" "@command{pup} is a command line tool for processing HTML. It reads\n" "from stdin, prints to stdout, and allows the user to filter parts of the page\n" @@ -21518,66 +21800,66 @@ msgid "" "fast and flexible way of exploring HTML from the terminal." msgstr "" -#: gnu/packages/web.scm:4953 +#: gnu/packages/web.scm:4958 msgid "" "Uhttpmock is a project for mocking web service APIs which use HTTP or\n" "HTTPS. It provides a library, libuhttpmock, which implements recording and\n" "playback of HTTP request/response traces." msgstr "" -#: gnu/packages/web.scm:4989 +#: gnu/packages/web.scm:4994 msgid "" "Woof (Web Offer One File) is a small simple web server that\n" "can easily be invoked on a single file. Your partner can access the file with\n" "tools they trust (e.g. wget)." msgstr "" -#: gnu/packages/web.scm:5017 +#: gnu/packages/web.scm:5022 msgid "" "This package provides the shared build system for Netsurf project\n" "libraries." msgstr "" -#: gnu/packages/web.scm:5052 +#: gnu/packages/web.scm:5057 msgid "" "LibParserUtils is a library for building efficient parsers, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5082 +#: gnu/packages/web.scm:5087 msgid "" "Hubbub is an HTML5 compliant parsing library, written in C, which can\n" "parse both valid and invalid web content. It is developed as part of the\n" "NetSurf project." msgstr "" -#: gnu/packages/web.scm:5203 +#: gnu/packages/web.scm:5208 msgid "" "Ikiwiki is a wiki compiler, capable of generating a static set of web\n" "pages, but also incorporating dynamic features like a web based editor and\n" "commenting." msgstr "" -#: gnu/packages/web.scm:5227 +#: gnu/packages/web.scm:5232 msgid "" "LibWapcaplet provides a reference counted string internment system\n" "designed to store small strings and allow rapid comparison of them. It is\n" "developed as part of the Netsurf project." msgstr "" -#: gnu/packages/web.scm:5259 +#: gnu/packages/web.scm:5264 msgid "" "LibCSS is a CSS (Cascading Style Sheet) parser and selection engine,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5294 +#: gnu/packages/web.scm:5299 msgid "" "LibDOM is an implementation of the W3C DOM, written in C. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5321 +#: gnu/packages/web.scm:5326 msgid "" "Libsvgtiny takes some SVG as input and returns a list of paths and texts\n" "which can be rendered easily, as defined in\n" @@ -21585,65 +21867,65 @@ msgid "" "project." msgstr "" -#: gnu/packages/web.scm:5346 +#: gnu/packages/web.scm:5351 msgid "" "Libnsbmp is a decoding library for BMP and ICO image file formats,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5369 +#: gnu/packages/web.scm:5374 msgid "" "Libnsgif is a decoding library for the GIF image file format, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5396 +#: gnu/packages/web.scm:5401 msgid "" "Libnslog provides a category-based logging library which supports\n" "complex logging filters, multiple log levels, and provides context through to\n" "client applications. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5420 +#: gnu/packages/web.scm:5425 msgid "" "Libnsutils provides a small number of useful utility routines. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5443 +#: gnu/packages/web.scm:5448 msgid "" "Libnspsl is a library to generate a static code representation of the\n" "Public Suffix List. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5469 +#: gnu/packages/web.scm:5474 msgid "" "@code{nsgenbind} is a tool to generate JavaScript to DOM bindings from\n" "w3c webidl files and a binding configuration file." msgstr "" -#: gnu/packages/web.scm:5592 +#: gnu/packages/web.scm:5597 msgid "" "NetSurf is a lightweight web browser that has its own layout and\n" "rendering engine entirely written from scratch. It is small and capable of\n" "handling many of the web standards in use today." msgstr "" -#: gnu/packages/web.scm:5631 +#: gnu/packages/web.scm:5636 msgid "" "Surfraw (Shell Users' Revolutionary Front Rage Against the Web)\n" "provides a unix command line interface to a variety of popular www search engines\n" "and similar services." msgstr "" -#: gnu/packages/web.scm:5664 +#: gnu/packages/web.scm:5669 msgid "" "darkhttpd is a simple static web server. It is\n" "standalone and does not need inetd or ucspi-tcp. It does not need any\n" "config files---you only have to specify the www root." msgstr "" -#: gnu/packages/web.scm:5695 +#: gnu/packages/web.scm:5700 msgid "" "GoAccess is a real-time web log analyzer and interactive viewer that\n" "runs in a terminal or through your browser. It provides fast and valuable\n" @@ -21651,7 +21933,7 @@ msgid "" "on the fly." msgstr "" -#: gnu/packages/web.scm:5749 +#: gnu/packages/web.scm:5754 msgid "" "Hitch is a performant TLS proxy based on @code{libev}. It terminates\n" "SSL/TLS connections and forwards the unencrypted traffic to a backend such\n" @@ -21659,7 +21941,7 @@ msgid "" "multicore machines." msgstr "" -#: gnu/packages/web.scm:5786 +#: gnu/packages/web.scm:5791 msgid "" "httptunnel creates a bidirectional virtual data connection\n" "tunnelled through HTTP (HyperText Transfer Protocol) requests. This can be\n" @@ -21677,7 +21959,7 @@ msgid "" "deployments." msgstr "" -#: gnu/packages/web.scm:5915 +#: gnu/packages/web.scm:5912 msgid "" "Varnish is a high-performance HTTP accelerator. It acts as a caching\n" "reverse proxy and load balancer. You install it in front of any server that\n" @@ -21685,14 +21967,14 @@ msgid "" "configuration language." msgstr "" -#: gnu/packages/web.scm:5949 +#: gnu/packages/web.scm:5946 msgid "" "This package provides a collection of modules (@dfn{vmods}) for the Varnish\n" "cache server, extending the @acronym{VCL, Varnish Configuration Language} with\n" "additional capabilities." msgstr "" -#: gnu/packages/web.scm:5976 +#: gnu/packages/web.scm:5973 msgid "" "@code{xinetd}, a more secure replacement for @code{inetd},\n" "listens for incoming requests over a network and launches the appropriate\n" @@ -21701,7 +21983,7 @@ msgid "" "used to start services with both privileged and non-privileged port numbers." msgstr "" -#: gnu/packages/web.scm:6023 +#: gnu/packages/web.scm:6020 msgid "" "Tidy is a console application which corrects and cleans up\n" "HTML and XML documents by fixing markup errors and upgrading\n" @@ -21712,14 +21994,14 @@ msgid "" "functions of Tidy." msgstr "" -#: gnu/packages/web.scm:6085 +#: gnu/packages/web.scm:6082 msgid "" "Hiawatha has been written with security in mind.\n" "Features include the ability to stop SQL injections, XSS and CSRF attacks and\n" "exploit attempts." msgstr "" -#: gnu/packages/web.scm:6107 +#: gnu/packages/web.scm:6104 msgid "" "Testing an HTTP Library can become difficult sometimes.\n" "@code{RequestBin} is fantastic for testing POST requests, but doesn't let you control the\n" @@ -21727,14 +22009,14 @@ msgid "" "JSON-encoded." msgstr "" -#: gnu/packages/web.scm:6132 +#: gnu/packages/web.scm:6129 msgid "" "@code{Pytest-httpbin} creates a @code{pytest} fixture that is dependency-injected\n" "into your tests. It automatically starts up a HTTP server in a separate thread running\n" "@code{httpbin} and provides your test with the URL in the fixture." msgstr "" -#: gnu/packages/web.scm:6199 +#: gnu/packages/web.scm:6196 msgid "" "This is a parser for HTTP messages written in C. It\n" "parses both requests and responses. The parser is designed to be used in\n" @@ -21744,40 +22026,40 @@ msgid "" "message stream (in a web server that is per connection)." msgstr "" -#: gnu/packages/web.scm:6236 +#: gnu/packages/web.scm:6233 msgid "" "@code{httpretty} is a helper for faking web requests,\n" "inspired by Ruby's @code{fakeweb}." msgstr "" -#: gnu/packages/web.scm:6254 +#: gnu/packages/web.scm:6251 msgid "" "jo is a command-line utility to create JSON objects or\n" "arrays. It creates a JSON string on stdout from words provided as\n" "command-line arguments or read from stdin." msgstr "" -#: gnu/packages/web.scm:6313 +#: gnu/packages/web.scm:6310 msgid "" "@code{ia} is a command-line tool for using\n" "@url{archive.org} from the command-line. It also implements the\n" "internetarchive python module for programmatic access to archive.org." msgstr "" -#: gnu/packages/web.scm:6364 +#: gnu/packages/web.scm:6361 msgid "" "@code{clf} is a command line tool for searching code\n" "snippets on @url{https://commandlinefu.com}." msgstr "" -#: gnu/packages/web.scm:6402 +#: gnu/packages/web.scm:6399 msgid "" "rss-bridge generates Atom feeds for social networking\n" "websites lacking feeds. Supported websites include Facebook, Twitter,\n" "Instagram and YouTube." msgstr "" -#: gnu/packages/web.scm:6440 +#: gnu/packages/web.scm:6437 msgid "" "LinkChecker is a website validator. It checks for broken\n" "links in websites. It is recursive and multithreaded providing output in\n" @@ -21786,67 +22068,67 @@ msgid "" "file links." msgstr "" -#: gnu/packages/web.scm:6488 +#: gnu/packages/web.scm:6485 msgid "" "Castor is a graphical client for plain-text protocols written in\n" "Rust with GTK. It currently supports the Gemini, Gopher and Finger\n" "protocols." msgstr "" -#: gnu/packages/web.scm:6575 +#: gnu/packages/web.scm:6572 msgid "" "This package includes Clearsilver, the CGI kit and HTML templating\n" "system." msgstr "" -#: gnu/packages/web.scm:6594 +#: gnu/packages/web.scm:6591 msgid "" "Py-ubjson is a Python module providing an Universal Binary JSON\n" "encoder/decoder based on the draft-12 specification for UBJSON." msgstr "" -#: gnu/packages/web.scm:6689 +#: gnu/packages/web.scm:6686 msgid "" "Apache Tomcat is a free implementation of the Java\n" "Servlet, JavaServer Pages, Java Expression Language and Java WebSocket\n" "technologies." msgstr "" -#: gnu/packages/web.scm:6743 +#: gnu/packages/web.scm:6740 msgid "" "This package contains helper classes for testing the Jetty\n" "Web Server." msgstr "" -#: gnu/packages/web.scm:6802 +#: gnu/packages/web.scm:6799 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides utility classes." msgstr "" -#: gnu/packages/web.scm:6880 +#: gnu/packages/web.scm:6877 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides IO-related utility classes." msgstr "" -#: gnu/packages/web.scm:6925 +#: gnu/packages/web.scm:6922 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides HTTP-related utility classes." msgstr "" -#: gnu/packages/web.scm:6959 +#: gnu/packages/web.scm:6956 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides the JMX management." msgstr "" -#: gnu/packages/web.scm:7045 +#: gnu/packages/web.scm:7042 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21854,7 +22136,7 @@ msgid "" "artifact." msgstr "" -#: gnu/packages/web.scm:7088 +#: gnu/packages/web.scm:7085 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21862,7 +22144,7 @@ msgid "" "infrastructure" msgstr "" -#: gnu/packages/web.scm:7144 +#: gnu/packages/web.scm:7141 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21870,14 +22152,14 @@ msgid "" "container." msgstr "" -#: gnu/packages/web.scm:7308 +#: gnu/packages/web.scm:7305 msgid "" "Jsoup is a Java library for working with real-world HTML. It\n" "provides a very convenient API for extracting and manipulating data, using the\n" "best of DOM, CSS, and jQuery-like methods." msgstr "" -#: gnu/packages/web.scm:7337 +#: gnu/packages/web.scm:7334 msgid "" "Signpost is the easy and intuitive solution for signing\n" "HTTP messages on the Java platform in conformance with the OAuth Core 1.0a\n" @@ -21885,7 +22167,7 @@ msgid "" "combine it with different HTTP messaging layers." msgstr "" -#: gnu/packages/web.scm:7360 +#: gnu/packages/web.scm:7357 msgid "" "Tidyp is a program that can validate your HTML, as well as\n" "modify it to be more clean and standard. tidyp does not validate HTML 5.\n" @@ -21895,14 +22177,14 @@ msgid "" "based on this library, allowing Perl programmers to easily validate HTML." msgstr "" -#: gnu/packages/web.scm:7401 +#: gnu/packages/web.scm:7398 msgid "" "@code{HTML::Tidy} is an HTML checker in a handy dandy\n" "object. It's meant as a replacement for @code{HTML::Lint}, which is written\n" "in Perl but is not nearly as capable as @code{HTML::Tidy}." msgstr "" -#: gnu/packages/web.scm:7430 +#: gnu/packages/web.scm:7427 msgid "" "Geomyidae is a server for distributed hypertext protocol Gopher. Its\n" "features include:\n" @@ -21916,14 +22198,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/web.scm:7478 +#: gnu/packages/web.scm:7475 msgid "" "Cat avatar generator is a generator of cat pictures optimised\n" "to generate random avatars, or defined avatar from a \"seed\". This is a\n" "derivation by David Revoy from the original MonsterID by Andreas Gohr." msgstr "" -#: gnu/packages/web.scm:7548 +#: gnu/packages/web.scm:7545 msgid "" "nghttp2 implements the Hypertext Transfer Protocol, version\n" "2 (@dfn{HTTP/2}).\n" @@ -21949,14 +22231,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7647 +#: gnu/packages/web.scm:7644 msgid "" "Hpcguix-web provides a web interface to the list of packages\n" "provided by Guix. The list of packages is searchable and provides\n" "instructions on how to use Guix in a shared HPC environment." msgstr "" -#: gnu/packages/web.scm:7668 +#: gnu/packages/web.scm:7665 msgid "" "HTTrack allows you to download a World Wide Web site from\n" "the Internet to a local directory, building recursively all directories,\n" @@ -21970,7 +22252,7 @@ msgid "" "HTTrack is fully configurable, and has an integrated help system." msgstr "" -#: gnu/packages/web.scm:7703 +#: gnu/packages/web.scm:7700 msgid "" "buku is a powerful bookmark manager written in Python3 and SQLite3.\n" "@command{buku} can auto-import bookmarks from your browser and present them\n" @@ -21979,7 +22261,7 @@ msgid "" "@command{bukuserver}." msgstr "" -#: gnu/packages/web.scm:7724 +#: gnu/packages/web.scm:7721 msgid "" "Anonip masks the last bits of IPv4 and IPv6 addresses in log files.\n" "That way most of the relevant information is preserved, while the IP address\n" @@ -21994,7 +22276,7 @@ msgid "" "Anonip can also be uses as a Python module in your own Python application." msgstr "" -#: gnu/packages/web.scm:7758 +#: gnu/packages/web.scm:7755 msgid "" "Poussetaches (which literally means \"push tasks\" in\n" "French) is a lightweight asynchronous task execution service that aims to\n" @@ -22006,7 +22288,7 @@ msgid "" "returned." msgstr "" -#: gnu/packages/web.scm:7783 +#: gnu/packages/web.scm:7780 msgid "" "htmlcxx is a simple non-validating CSS1 and HTML parser for\n" "C++. Although there are several other HTML parsers available, htmlcxx has some\n" @@ -22024,7 +22306,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:7827 +#: gnu/packages/web.scm:7824 msgid "" "libRocket is a C++ user interface package based on the HTML\n" "and CSS standards. libRocket uses the open standards XHTML1.0 and\n" @@ -22041,11 +22323,11 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7869 +#: gnu/packages/web.scm:7866 msgid "gmnisrv is a simple Gemini protocol server written in C." msgstr "" -#: gnu/packages/web.scm:7900 +#: gnu/packages/web.scm:7898 msgid "" "The openZIM project proposes offline storage solutions for\n" "content coming from the Web. The zimlib is the standard implementation of the\n" @@ -22077,14 +22359,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:8081 +#: gnu/packages/web.scm:8078 msgid "" "uriparser is a strictly RFC 3986 compliant URI parsing and\n" "handling library written in C89 (\"ANSI C\"). uriparser is fast and supports\n" "Unicode." msgstr "" -#: gnu/packages/web.scm:8115 +#: gnu/packages/web.scm:8112 msgid "" "Quark is an extremely small and simple HTTP GET/HEAD only\n" "web server for static content. TLS is not natively supported and should be\n" @@ -22254,53 +22536,53 @@ msgid "" "Enhancement}." msgstr "" -#: gnu/services/base.scm:276 +#: gnu/services/base.scm:279 msgid "" "Populate the @file{/etc/fstab} based on the given file\n" "system objects." msgstr "" -#: gnu/services/base.scm:314 +#: gnu/services/base.scm:317 msgid "" "Take care of syncing the root file\n" "system and of remounting it read-only when the system shuts down." msgstr "" -#: gnu/services/base.scm:481 +#: gnu/services/base.scm:484 msgid "" "Provide Shepherd services to mount and unmount the given\n" "file systems, as well as corresponding @file{/etc/fstab} entries." msgstr "" -#: gnu/services/base.scm:579 +#: gnu/services/base.scm:582 msgid "" "Seed the @file{/dev/urandom} pseudo-random number\n" "generator (RNG) with the value recorded when the system was last shut\n" "down." msgstr "" -#: gnu/services/base.scm:611 +#: gnu/services/base.scm:614 msgid "" "Run the @command{rngd} random number generation daemon to\n" "supply entropy to the kernel's pool." msgstr "" -#: gnu/services/base.scm:640 +#: gnu/services/base.scm:643 msgid "Initialize the machine's host name." msgstr "" -#: gnu/services/base.scm:670 +#: gnu/services/base.scm:673 msgid "Ensure the Linux virtual terminals run in UTF-8 mode." msgstr "" -#: gnu/services/base.scm:683 +#: gnu/services/base.scm:686 msgid "" "@emph{This service is deprecated in favor of the\n" "@code{keyboard-layout} field of @code{operating-system}.} Load the given list\n" "of console keymaps with @command{loadkeys}." msgstr "" -#: gnu/services/base.scm:743 +#: gnu/services/base.scm:746 msgid "" "Install the given fonts on the specified ttys (fonts are per\n" "virtual console on GNU/Linux). The value of this service is a list of\n" @@ -22318,66 +22600,66 @@ msgid "" "@end example\n" msgstr "" -#: gnu/services/base.scm:795 +#: gnu/services/base.scm:798 msgid "" "Provide a console log-in service as specified by its\n" "configuration value, a @code{login-configuration} object." msgstr "" -#: gnu/services/base.scm:1063 +#: gnu/services/base.scm:1066 msgid "" "Provide console login using the @command{agetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1128 +#: gnu/services/base.scm:1131 msgid "" "Provide console login using the @command{mingetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1345 +#: gnu/services/base.scm:1348 msgid "" "Runs libc's @dfn{name service cache daemon} (nscd) with the\n" "given configuration---an @code{} object. @xref{Name\n" "Service Switch}, for an example." msgstr "" -#: gnu/services/base.scm:1384 +#: gnu/services/base.scm:1387 msgid "" "Run the syslog daemon, @command{syslogd}, which is\n" "responsible for logging system messages." msgstr "" -#: gnu/services/base.scm:1448 +#: gnu/services/base.scm:1451 msgid "" "Install the specified resource usage limits by populating\n" "@file{/etc/security/limits.conf} and using the @code{pam_limits}\n" "authentication module." msgstr "" -#: gnu/services/base.scm:1794 +#: gnu/services/base.scm:1804 msgid "Run the build daemon of GNU@tie{}Guix, aka. @command{guix-daemon}." msgstr "" -#: gnu/services/base.scm:1944 +#: gnu/services/base.scm:1961 msgid "" "Add a Shepherd service running @command{guix publish}, a\n" "command that allows you to share pre-built binaries with others over HTTP." msgstr "" -#: gnu/services/base.scm:2150 +#: gnu/services/base.scm:2167 msgid "" "Run @command{udev}, which populates the @file{/dev}\n" "directory dynamically. Get extra rules from the packages listed in the\n" "@code{rules} field of its value, @code{udev-configuration} object." msgstr "" -#: gnu/services/base.scm:2267 +#: gnu/services/base.scm:2284 msgid "Turn on the virtual memory swap area." msgstr "" -#: gnu/services/base.scm:2309 +#: gnu/services/base.scm:2326 msgid "" "Run GPM, the general-purpose mouse daemon, with the given\n" "command-line options. GPM allows users to use the mouse in the console,\n" @@ -22385,33 +22667,33 @@ msgid "" "@code{ps2} protocol, which works for both USB and PS/2 mice." msgstr "" -#: gnu/services/base.scm:2382 +#: gnu/services/base.scm:2399 msgid "" "Start the @command{kmscon} virtual terminal emulator for the\n" "Linux @dfn{kernel mode setting} (KMS)." msgstr "" -#: gnu/services/base.scm:2403 +#: gnu/services/base.scm:2416 #, scheme-format msgid "address '~a' lacks a network mask" msgstr "" -#: gnu/services/base.scm:2409 +#: gnu/services/base.scm:2422 #, scheme-format msgid "Write, say, @samp{\"~a/24\"} for a 24-bit network mask." msgstr "" -#: gnu/services/base.scm:2489 +#: gnu/services/base.scm:2502 #, scheme-format msgid "network links are currently ignored on GNU/Hurd~%" msgstr "" -#: gnu/services/base.scm:2514 +#: gnu/services/base.scm:2527 #, scheme-format msgid "ignoring network route for '~a'~%" msgstr "" -#: gnu/services/base.scm:2698 +#: gnu/services/base.scm:2711 msgid "" "Turn up the specified network interfaces upon startup,\n" "with the given IP address, gateway, netmask, and so on. The value for\n" diff --git a/po/packages/sr.po b/po/packages/sr.po index 7a72ea6161..da0d39a9e3 100644 --- a/po/packages/sr.po +++ b/po/packages/sr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: guix-packages-0.7-pre1\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" "PO-Revision-Date: 2014-09-13 11:01+0200\n" "Last-Translator: Мирослав Николић \n" "Language-Team: Serbian <(nothing)>\n" @@ -40,20 +40,20 @@ msgstr "" msgid "This package provides a dictionary for the GNU Aspell spell checker." msgstr "" -#: gnu/packages/aspell.scm:445 gnu/packages/libreoffice.scm:845 +#: gnu/packages/aspell.scm:450 gnu/packages/libreoffice.scm:845 #: gnu/packages/libreoffice.scm:918 msgid "" "This package provides a dictionary for the Hunspell spell-checking\n" "library." msgstr "" -#: gnu/packages/aspell.scm:525 +#: gnu/packages/aspell.scm:530 msgid "" "Ispell is an interactive spell-checking tool supporting many\n" "European languages." msgstr "" -#: gnu/packages/audio.scm:197 +#: gnu/packages/audio.scm:198 msgid "" "OpenSLES is a royalty-free, cross-platform,\n" "hardware-accelerated audio API tuned for embedded systems. It provides a\n" @@ -64,31 +64,31 @@ msgid "" "promoting the market for advanced audio." msgstr "" -#: gnu/packages/audio.scm:233 +#: gnu/packages/audio.scm:234 msgid "" "WildMIDI is a simple software midi player which has a core\n" "softsynth library that can be use with other applications." msgstr "" -#: gnu/packages/audio.scm:257 +#: gnu/packages/audio.scm:258 msgid "" "WebRTC-Audio-Processing library based on Google's\n" "implementation of WebRTC." msgstr "" -#: gnu/packages/audio.scm:277 +#: gnu/packages/audio.scm:278 msgid "" "VO-AACENC is the VisualOn implementation of Advanced Audio\n" "Coding (AAC) encoder." msgstr "" -#: gnu/packages/audio.scm:306 +#: gnu/packages/audio.scm:307 msgid "" "TinyALSA is a small library to interface with ALSA in the\n" "Linux kernel." msgstr "" -#: gnu/packages/audio.scm:329 +#: gnu/packages/audio.scm:330 msgid "" "Game-music-emu is a collection of video game music file emulators that\n" "support the following formats and systems:\n" @@ -114,43 +114,43 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/audio.scm:393 +#: gnu/packages/audio.scm:394 msgid "" "LibOpenMPT is a cross-platform C++ and C module playback\n" "library. It is based on the player code of the Open ModPlug Tracker project." msgstr "" -#: gnu/packages/audio.scm:424 +#: gnu/packages/audio.scm:425 msgid "" "LibOFA is an audio fingerprint library, created and provided\n" "by MusicIP." msgstr "" -#: gnu/packages/audio.scm:445 +#: gnu/packages/audio.scm:446 msgid "FAAC is an MPEG-4 and MPEG-2 AAC encoder." msgstr "" -#: gnu/packages/audio.scm:474 +#: gnu/packages/audio.scm:475 msgid "" "LibTiMidity is a MIDI to WAVE converter library that uses\n" "Gravis Ultrasound-compatible patch files to generate digital audio data from\n" "General MIDI files." msgstr "" -#: gnu/packages/audio.scm:499 +#: gnu/packages/audio.scm:500 msgid "" "VO-AMR is a library of VisualOn implementation of\n" "Adaptive Multi Rate Narrowband and Wideband (AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:518 +#: gnu/packages/audio.scm:519 msgid "" "OpenCore-AMR is a library of OpenCORE Framework\n" "implementation of Adaptive Multi Rate Narrowband and Wideband\n" "(AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:551 +#: gnu/packages/audio.scm:552 msgid "" "AlsaModularSynth is a digital implementation of a classical analog\n" "modular synthesizer system. It uses virtual control voltages to control the\n" @@ -159,7 +159,7 @@ msgid "" "Filter) modules follow the convention of 1V / Octave." msgstr "" -#: gnu/packages/audio.scm:588 +#: gnu/packages/audio.scm:589 msgid "" "aubio is a tool designed for the extraction of annotations from audio\n" "signals. Its features include segmenting a sound file before each of its\n" @@ -167,21 +167,21 @@ msgid "" "streams from live audio." msgstr "" -#: gnu/packages/audio.scm:719 +#: gnu/packages/audio.scm:720 msgid "" "Ardour is a multi-channel digital audio workstation, allowing users to\n" "record, edit, mix and master audio and MIDI projects. It is targeted at audio\n" "engineers, musicians, soundtrack editors and composers." msgstr "" -#: gnu/packages/audio.scm:833 +#: gnu/packages/audio.scm:853 msgid "" "Audacity is a multi-track audio editor designed for recording, playing\n" "and editing digital audio. It features digital effects and spectrum analysis\n" "tools." msgstr "" -#: gnu/packages/audio.scm:889 +#: gnu/packages/audio.scm:909 msgid "" "This is an open-source version of SGI's audiofile library.\n" "It provides a uniform programming interface for processing of audio data to\n" @@ -192,14 +192,14 @@ msgid "" "G.711 mu-law and A-law." msgstr "" -#: gnu/packages/audio.scm:931 +#: gnu/packages/audio.scm:951 msgid "" "Autotalent is a LADSPA plugin for real-time pitch-correction. Among its\n" "controls are allowable notes, strength of correction, LFO for vibrato and\n" "formant warp." msgstr "" -#: gnu/packages/audio.scm:972 +#: gnu/packages/audio.scm:992 msgid "" "AZR-3 is a port of the free VST plugin AZR-3. It is a tonewheel organ\n" "with drawbars, distortion and rotating speakers. The organ has three\n" @@ -208,7 +208,7 @@ msgid "" "plugins are provided." msgstr "" -#: gnu/packages/audio.scm:1011 +#: gnu/packages/audio.scm:1031 msgid "" "Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments.\n" "The suite contains lots of effects (delay, modulation, signal processing,\n" @@ -217,31 +217,31 @@ msgid "" "tools (analyzer, mono/stereo tools, crossovers)." msgstr "" -#: gnu/packages/audio.scm:1053 +#: gnu/packages/audio.scm:1073 msgid "" "LV2 port of CAPS, a collection of audio plugins comprising basic virtual\n" "guitar amplification and a small range of classic effects, signal processors and\n" "generators of mostly elementary and occasionally exotic nature." msgstr "" -#: gnu/packages/audio.scm:1094 +#: gnu/packages/audio.scm:1114 msgid "" "The infamous plugins are a collection of LV2 audio plugins for live\n" "performances. The plugins include a cellular automaton synthesizer, an\n" "envelope follower, distortion effects, tape effects and more." msgstr "" -#: gnu/packages/audio.scm:1129 +#: gnu/packages/audio.scm:1149 msgid "" "Snapcast is a multi-room client-server audio player. Clients are time\n" "synchronized with the server to play synced audio." msgstr "" -#: gnu/packages/audio.scm:1159 +#: gnu/packages/audio.scm:1179 msgid "This package provides Steve Harris's LADSPA plugins." msgstr "" -#: gnu/packages/audio.scm:1199 +#: gnu/packages/audio.scm:1219 msgid "" "Swh-plugins-lv2 is a collection of audio plugins in LV2 format. Plugin\n" "classes include: dynamics (compressor, limiter), time (delay, chorus,\n" @@ -249,13 +249,13 @@ msgid "" "emulation (valve, tape), bit fiddling (decimator, pointer-cast), etc." msgstr "" -#: gnu/packages/audio.scm:1233 +#: gnu/packages/audio.scm:1253 msgid "" "@code{libdjinterop} is a C++ library that allows access to database\n" "formats used to store information about DJ record libraries." msgstr "" -#: gnu/packages/audio.scm:1295 gnu/packages/audio.scm:1326 +#: gnu/packages/audio.scm:1315 gnu/packages/audio.scm:1346 msgid "" "Tao is a software package for sound synthesis using physical\n" "models. It provides a virtual acoustic material constructed from masses and\n" @@ -265,13 +265,13 @@ msgid "" "object library." msgstr "" -#: gnu/packages/audio.scm:1361 +#: gnu/packages/audio.scm:1381 msgid "" "Csound is a user-programmable and user-extensible sound processing\n" "language and software synthesizer." msgstr "" -#: gnu/packages/audio.scm:1388 +#: gnu/packages/audio.scm:1408 msgid "" "midicomp can manipulate SMF (Standard MIDI File) files. It can both\n" " read and write SMF files in 0 or format 1 and also read and write its own\n" @@ -280,20 +280,20 @@ msgid "" " language, and recompiled back into a binary SMF file." msgstr "" -#: gnu/packages/audio.scm:1435 +#: gnu/packages/audio.scm:1455 msgid "" "clalsadrv is a C++ wrapper around the ALSA API simplifying access to\n" "ALSA PCM devices." msgstr "" -#: gnu/packages/audio.scm:1474 +#: gnu/packages/audio.scm:1494 msgid "" "The AMB plugins are a set of LADSPA ambisonics plugins, mainly to be\n" "used within Ardour. Features include: mono and stereo to B-format panning,\n" "horizontal rotator, square, hexagon and cube decoders." msgstr "" -#: gnu/packages/audio.scm:1511 +#: gnu/packages/audio.scm:1531 msgid "" "This package provides various LADSPA plugins. @code{cs_chorus} and\n" "@code{cs_phaser} provide chorus and phaser effects, respectively;\n" @@ -303,13 +303,13 @@ msgid "" "the non-linear circuit elements of their original analog counterparts." msgstr "" -#: gnu/packages/audio.scm:1551 +#: gnu/packages/audio.scm:1571 msgid "" "This package provides a stereo reverb LADSPA plugin based on the\n" "well-known greverb." msgstr "" -#: gnu/packages/audio.scm:1587 +#: gnu/packages/audio.scm:1607 msgid "" "This package provides a LADSPA plugin for a four-band parametric\n" "equalizer. Each section has an active/bypass switch, frequency, bandwidth and\n" @@ -324,13 +324,13 @@ msgid "" "for stage use." msgstr "" -#: gnu/packages/audio.scm:1632 +#: gnu/packages/audio.scm:1652 msgid "" "This package provides a LADSPA plugin to manipulate the stereo width of\n" "audio signals." msgstr "" -#: gnu/packages/audio.scm:1669 +#: gnu/packages/audio.scm:1689 msgid "" "The @code{blvco} LADSPA plugin provides three anti-aliased oscillators:\n" "\n" @@ -345,17 +345,17 @@ msgid "" "output of analog synthesizers such as the Moog Voyager." msgstr "" -#: gnu/packages/audio.scm:1713 +#: gnu/packages/audio.scm:1733 msgid "" "This package provides a LADSPA plugin for a Wah effect with envelope\n" "follower." msgstr "" -#: gnu/packages/audio.scm:1749 +#: gnu/packages/audio.scm:1769 msgid "This package provides a LADSPA plugin for a stereo reverb effect." msgstr "" -#: gnu/packages/audio.scm:1791 +#: gnu/packages/audio.scm:1811 msgid "" "FluidSynth is a real-time software synthesizer based on the SoundFont 2\n" "specifications. FluidSynth reads and handles MIDI events from the MIDI input\n" @@ -363,21 +363,21 @@ msgid "" "also play midifiles using a Soundfont." msgstr "" -#: gnu/packages/audio.scm:1814 +#: gnu/packages/audio.scm:1834 msgid "FAAD2 is an MPEG-4 and MPEG-2 AAC decoder supporting LC, Main, LTP, SBR, -PS, and DAB+." msgstr "" -#: gnu/packages/audio.scm:1855 +#: gnu/packages/audio.scm:1875 msgid "Faust is a programming language for realtime audio signal processing." msgstr "" -#: gnu/packages/audio.scm:1919 +#: gnu/packages/audio.scm:1939 msgid "" "FreePats is a project to create a free and open set of GUS compatible\n" "patches that can be used with softsynths such as Timidity and WildMidi." msgstr "" -#: gnu/packages/audio.scm:1972 +#: gnu/packages/audio.scm:1992 msgid "" "Guitarix is a virtual guitar amplifier running JACK.\n" "Guitarix takes the signal from your guitar as a mono-signal from your sound\n" @@ -388,7 +388,7 @@ msgid "" "auto-wah." msgstr "" -#: gnu/packages/audio.scm:2028 +#: gnu/packages/audio.scm:2048 msgid "" "Rakarrack is a richly featured multi-effects processor emulating a\n" "guitar effects pedalboard. Effects include compressor, expander, noise gate,\n" @@ -400,14 +400,14 @@ msgid "" "well suited to all musical instruments and vocals." msgstr "" -#: gnu/packages/audio.scm:2084 +#: gnu/packages/audio.scm:2104 msgid "" "IR is a low-latency, real-time, high performance signal convolver\n" "especially for creating reverb effects. It supports impulse responses with 1,\n" "2 or 4 channels, in any soundfile format supported by libsndfile." msgstr "" -#: gnu/packages/audio.scm:2124 +#: gnu/packages/audio.scm:2144 msgid "" "JACK is a low-latency audio server. It can connect a number of\n" "different applications to an audio device, as well as allowing them to share\n" @@ -417,20 +417,20 @@ msgid "" "synchronous execution of all clients, and low latency operation." msgstr "" -#: gnu/packages/audio.scm:2220 +#: gnu/packages/audio.scm:2240 msgid "" "Jalv is a simple but fully featured LV2 host for JACK. It runs LV2\n" "plugins and exposes their ports as JACK ports, essentially making any LV2\n" "plugin function as a JACK application." msgstr "" -#: gnu/packages/audio.scm:2266 +#: gnu/packages/audio.scm:2286 msgid "" "LADSPA is a standard that allows software audio processors and effects\n" "to be plugged into a wide range of audio synthesis and recording packages." msgstr "" -#: gnu/packages/audio.scm:2318 +#: gnu/packages/audio.scm:2338 msgid "" "LASH is a session management system for audio applications. It allows\n" "you to save and restore audio sessions consisting of multiple interconneced\n" @@ -438,7 +438,7 @@ msgid "" "connections between them." msgstr "" -#: gnu/packages/audio.scm:2341 +#: gnu/packages/audio.scm:2361 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is\n" "designed to improve headphone listening of stereo audio records. Recommended\n" @@ -446,7 +446,7 @@ msgid "" "essential distortions." msgstr "" -#: gnu/packages/audio.scm:2364 +#: gnu/packages/audio.scm:2384 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and\n" "plugins is designed to improve headphone listening of stereo audio records.\n" @@ -455,13 +455,13 @@ msgid "" "with applications that support them (e.g. PulseAudio)." msgstr "" -#: gnu/packages/audio.scm:2390 +#: gnu/packages/audio.scm:2410 msgid "" "liblo is a lightweight library that provides an easy to use\n" "implementation of the Open Sound Control (@dfn{OSC}) protocol." msgstr "" -#: gnu/packages/audio.scm:2426 +#: gnu/packages/audio.scm:2446 msgid "" "RtAudio is a set of C++ classes that provides a common API for real-time\n" "audio input/output. It was designed with the following objectives:\n" @@ -480,13 +480,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/audio.scm:2462 +#: gnu/packages/audio.scm:2482 msgid "" "This package provides bindings for PortAudio v19, the\n" "cross-platform audio input/output stream library." msgstr "" -#: gnu/packages/audio.scm:2489 +#: gnu/packages/audio.scm:2509 msgid "" "Pyliblo is a Python wrapper for the liblo Open Sound Control (OSC)\n" "library. It supports almost the complete functionality of liblo, allowing you\n" @@ -494,19 +494,19 @@ msgid "" "included are the command line utilities @code{send_osc} and @code{dump_osc}." msgstr "" -#: gnu/packages/audio.scm:2526 +#: gnu/packages/audio.scm:2546 msgid "" "This package provides python bindings for libsndfile based on\n" "CFFI and NumPy." msgstr "" -#: gnu/packages/audio.scm:2544 +#: gnu/packages/audio.scm:2564 msgid "" "This package provides a python API to read and write MIDI\n" "files." msgstr "" -#: gnu/packages/audio.scm:2581 +#: gnu/packages/audio.scm:2601 msgid "" "@command{audio-to-midi} converts audio files to multichannel\n" "MIDI files. It accomplishes this by performing FFTs on all channels of the\n" @@ -516,14 +516,14 @@ msgid "" "frequencies. This data is then formatted to MIDI and written to disk." msgstr "" -#: gnu/packages/audio.scm:2624 +#: gnu/packages/audio.scm:2644 msgid "" "Lilv is a C library to make the use of LV2 plugins as simple as possible\n" "for applications. Lilv is the successor to SLV2, rewritten to be\n" "significantly faster and have minimal dependencies." msgstr "" -#: gnu/packages/audio.scm:2652 +#: gnu/packages/audio.scm:2672 msgid "" "LV2 is an open specification for audio plugins and host applications.\n" "At its core, LV2 is a simple stable interface, accompanied by extensions which\n" @@ -531,22 +531,22 @@ msgid "" "software." msgstr "" -#: gnu/packages/audio.scm:2688 +#: gnu/packages/audio.scm:2708 msgid "An LV2 port of the mda Piano VSTi." msgstr "" -#: gnu/packages/audio.scm:2702 +#: gnu/packages/audio.scm:2722 msgid "An LV2 port of the mda EPiano VSTi." msgstr "" -#: gnu/packages/audio.scm:2732 +#: gnu/packages/audio.scm:2752 msgid "" "The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and\n" "extensions into easy to use C++ classes. It is the successor of\n" "lv2-c++-tools." msgstr "" -#: gnu/packages/audio.scm:2774 +#: gnu/packages/audio.scm:2794 msgid "" "OpenAL provides capabilities for playing audio in a virtual 3D\n" "environment. Distance attenuation, doppler shift, and directional sound\n" @@ -556,36 +556,36 @@ msgid "" "buffers, and audio capture." msgstr "" -#: gnu/packages/audio.scm:2805 +#: gnu/packages/audio.scm:2825 msgid "freealut is the OpenAL Utility Toolkit." msgstr "" -#: gnu/packages/audio.scm:2837 +#: gnu/packages/audio.scm:2857 msgid "" "Patchage is a modular patch bay for audio and MIDI systems based on JACK\n" "and ALSA." msgstr "" -#: gnu/packages/audio.scm:2862 +#: gnu/packages/audio.scm:2882 msgid "" "The Portable C Audio Library (pcaudiolib) provides a C@tie{}API to\n" "different audio devices such as ALSA or PulseAudio." msgstr "" -#: gnu/packages/audio.scm:2889 +#: gnu/packages/audio.scm:2909 msgid "" "Control a Jack server. Allows you to plug various sources\n" "into various outputs and to start, stop and configure jackd" msgstr "" -#: gnu/packages/audio.scm:2921 +#: gnu/packages/audio.scm:2941 msgid "" "QJackRcd is a simple graphical stereo recorder for JACK\n" "supporting silence processing for automatic pause, file splitting, and\n" "background file post-processing." msgstr "" -#: gnu/packages/audio.scm:3029 +#: gnu/packages/audio.scm:3049 msgid "" "SuperCollider is a synthesis engine (@code{scsynth} or\n" "@code{supernova}) and programming language (@code{sclang}). It can be used\n" @@ -597,17 +597,17 @@ msgid "" "using Guix System." msgstr "" -#: gnu/packages/audio.scm:3057 +#: gnu/packages/audio.scm:3077 msgid "This package provides libshout plus IDJC extensions." msgstr "" -#: gnu/packages/audio.scm:3083 +#: gnu/packages/audio.scm:3103 msgid "" "Raul (Real-time Audio Utility Library) is a C++ utility library primarily\n" "aimed at audio/musical applications." msgstr "" -#: gnu/packages/audio.scm:3119 +#: gnu/packages/audio.scm:3139 msgid "" "This package contains the @command{resample} and\n" "@command{windowfilter} command line utilities. The @command{resample} command\n" @@ -616,26 +616,26 @@ msgid "" "filters using the so-called @emph{window method}." msgstr "" -#: gnu/packages/audio.scm:3160 +#: gnu/packages/audio.scm:3180 msgid "" "Rubber Band is a library and utility program that permits changing the\n" "tempo and pitch of an audio recording independently of one another." msgstr "" -#: gnu/packages/audio.scm:3184 +#: gnu/packages/audio.scm:3204 msgid "" "RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut, and API specific\n" "classes) that provide a common cross-platform API for realtime MIDI\n" "input/output." msgstr "" -#: gnu/packages/audio.scm:3210 +#: gnu/packages/audio.scm:3230 msgid "" "Sratom is a library for serialising LV2 atoms to/from RDF, particularly\n" "the Turtle syntax." msgstr "" -#: gnu/packages/audio.scm:3238 +#: gnu/packages/audio.scm:3258 msgid "" "Suil is a lightweight C library for loading and wrapping LV2 plugin UIs.\n" "\n" @@ -647,13 +647,13 @@ msgid "" "Suil currently supports every combination of Gtk, Qt, and X11." msgstr "" -#: gnu/packages/audio.scm:3270 +#: gnu/packages/audio.scm:3290 msgid "" "@code{libebur128} is a C library that implements the EBU R 128 standard\n" "for loudness normalisation." msgstr "" -#: gnu/packages/audio.scm:3324 +#: gnu/packages/audio.scm:3344 msgid "" "TiMidity++ is a software synthesizer. It can play MIDI files by\n" "converting them into PCM waveform data; give it a MIDI data along with digital\n" @@ -662,33 +662,33 @@ msgid "" "disks as various audio file formats." msgstr "" -#: gnu/packages/audio.scm:3364 +#: gnu/packages/audio.scm:3384 msgid "" "Vamp is an audio processing plugin system for plugins that extract\n" "descriptive information from audio data — typically referred to as audio\n" "analysis plugins or audio feature extraction plugins." msgstr "" -#: gnu/packages/audio.scm:3408 +#: gnu/packages/audio.scm:3428 msgid "" "SBSMS (Subband Sinusoidal Modeling Synthesis) is software for time\n" "stretching and pitch scaling of audio. This package contains the library." msgstr "" -#: gnu/packages/audio.scm:3435 +#: gnu/packages/audio.scm:3455 msgid "" "@code{libkeyfinder} is a small C++11 library for estimating the musical\n" "key of digital audio." msgstr "" -#: gnu/packages/audio.scm:3465 +#: gnu/packages/audio.scm:3485 msgid "" "WavPack is an audio compression format with lossless, lossy and hybrid\n" "compression modes. This package contains command-line programs and library to\n" "encode and decode wavpack files." msgstr "" -#: gnu/packages/audio.scm:3486 +#: gnu/packages/audio.scm:3506 msgid "" "Libmodplug renders mod music files as raw audio data, for playing or\n" "conversion. mod, .s3m, .it, .xm, and a number of lesser-known formats are\n" @@ -696,21 +696,21 @@ msgid "" "surround and reverb." msgstr "" -#: gnu/packages/audio.scm:3507 +#: gnu/packages/audio.scm:3527 msgid "" "Libxmp is a library that renders module files to PCM data. It supports\n" "over 90 mainstream and obscure module formats including Protracker (MOD),\n" "Scream Tracker 3 (S3M), Fast Tracker II (XM), and Impulse Tracker (IT)." msgstr "" -#: gnu/packages/audio.scm:3531 +#: gnu/packages/audio.scm:3551 msgid "" "Xmp is a portable module player that plays over 90 mainstream and\n" "obscure module formats, including Protracker MOD, Fasttracker II XM, Scream\n" "Tracker 3 S3M and Impulse Tracker IT files." msgstr "" -#: gnu/packages/audio.scm:3556 +#: gnu/packages/audio.scm:3576 msgid "" "SoundTouch is an audio processing library for changing the tempo, pitch\n" "and playback rates of audio streams or audio files. It is intended for\n" @@ -718,7 +718,7 @@ msgid "" "control functionality, or just for playing around with the sound effects." msgstr "" -#: gnu/packages/audio.scm:3595 +#: gnu/packages/audio.scm:3615 msgid "" "SoX (Sound eXchange) is a command line utility that can convert\n" "various formats of computer audio files to other formats. It can also\n" @@ -726,60 +726,60 @@ msgid "" "can play and record audio files." msgstr "" -#: gnu/packages/audio.scm:3620 +#: gnu/packages/audio.scm:3640 msgid "" "The SoX Resampler library (libsoxr) performs one-dimensional sample-rate\n" "conversion. It may be used, for example, to resample PCM-encoded audio." msgstr "" -#: gnu/packages/audio.scm:3643 +#: gnu/packages/audio.scm:3663 msgid "" "TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder based on\n" "tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code and\n" "portions of LAME." msgstr "" -#: gnu/packages/audio.scm:3699 +#: gnu/packages/audio.scm:3719 msgid "" "PortAudio is a portable C/C++ audio I/O library providing a simple API\n" "to record and/or play sound using a callback function or a blocking read/write\n" "interface." msgstr "" -#: gnu/packages/audio.scm:3728 +#: gnu/packages/audio.scm:3748 msgid "" "Qsynth is a GUI front-end application for the FluidSynth SoundFont\n" "synthesizer written in C++." msgstr "" -#: gnu/packages/audio.scm:3767 +#: gnu/packages/audio.scm:3787 msgid "" "RSound allows you to send audio from an application and transfer it\n" "directly to a different computer on your LAN network. It is an audio daemon\n" "with a much different focus than most other audio daemons." msgstr "" -#: gnu/packages/audio.scm:3797 +#: gnu/packages/audio.scm:3817 msgid "" "XJackFreak is an audio analysis and equalizing tool for the Jack Audio\n" "Connection Kit. It can display the FFT of any input, modify it and output the\n" "result." msgstr "" -#: gnu/packages/audio.scm:3849 +#: gnu/packages/audio.scm:3869 msgid "" "Zita convolver is a C++ library providing a real-time convolution\n" "engine." msgstr "" -#: gnu/packages/audio.scm:3901 +#: gnu/packages/audio.scm:3921 msgid "" "Libzita-resampler is a C++ library for resampling audio signals. It is\n" "designed to be used within a real-time processing context, to be fast, and to\n" "provide high-quality sample rate conversion." msgstr "" -#: gnu/packages/audio.scm:3947 +#: gnu/packages/audio.scm:3967 msgid "" "Zita-alsa-pcmi is a C++ wrapper around the ALSA API. It provides easy\n" "access to ALSA PCM devices, taking care of the many functions required to\n" @@ -787,7 +787,7 @@ msgid "" "point audio data." msgstr "" -#: gnu/packages/audio.scm:3971 +#: gnu/packages/audio.scm:3991 msgid "" "Cuetools is a set of programs that are useful for manipulating\n" "and using CUE sheet (cue) files and Table of Contents (toc) files. CUE and TOC\n" @@ -795,14 +795,14 @@ msgid "" "machine-readable ASCII format." msgstr "" -#: gnu/packages/audio.scm:4000 +#: gnu/packages/audio.scm:4020 msgid "" "mp3guessenc is a command line utility that tries to detect the\n" "encoder used for an MPEG Layer III (MP3) file, as well as scan any MPEG audio\n" "file (any layer) and print a lot of useful information." msgstr "" -#: gnu/packages/audio.scm:4021 +#: gnu/packages/audio.scm:4041 msgid "" "shntool is a multi-purpose WAVE data processing and reporting\n" "utility. File formats are abstracted from its core, so it can process any file\n" @@ -811,46 +811,46 @@ msgid "" "use them split WAVE data into multiple files." msgstr "" -#: gnu/packages/audio.scm:4061 +#: gnu/packages/audio.scm:4081 msgid "" "Dcadec is a DTS Coherent Acoustics surround sound decoder\n" "with support for HD extensions." msgstr "" -#: gnu/packages/audio.scm:4098 +#: gnu/packages/audio.scm:4118 msgid "" "BS1770GAIN is a loudness scanner compliant with ITU-R BS.1770 and its\n" "flavors EBU R128, ATSC A/85, and ReplayGain 2.0. It helps normalizing the\n" "loudness of audio and video files to the same level." msgstr "" -#: gnu/packages/audio.scm:4130 +#: gnu/packages/audio.scm:4150 msgid "" "An easy to use audio filtering library made from webrtc\n" "code, used in @code{libtoxcore}." msgstr "" -#: gnu/packages/audio.scm:4183 +#: gnu/packages/audio.scm:4203 msgid "" "This C library provides an encoder and a decoder for the GSM\n" "06.10 RPE-LTP lossy speech compression algorithm." msgstr "" -#: gnu/packages/audio.scm:4206 +#: gnu/packages/audio.scm:4226 msgid "" "This package contains wrappers for accessing the ALSA API from Python.\n" "It is currently fairly complete for PCM devices, and has some support for\n" "mixers." msgstr "" -#: gnu/packages/audio.scm:4230 +#: gnu/packages/audio.scm:4250 msgid "" "This package provides an encoder for the LDAC\n" "high-resolution Bluetooth audio streaming codec for streaming at up to 990\n" "kbps at 24 bit/96 kHz." msgstr "" -#: gnu/packages/audio.scm:4274 +#: gnu/packages/audio.scm:4294 msgid "" "This project is a rebirth of a direct integration between\n" "Bluez and ALSA. Since Bluez >= 5, the built-in integration has been removed\n" @@ -863,14 +863,14 @@ msgid "" "on the ALSA software PCM plugin." msgstr "" -#: gnu/packages/audio.scm:4340 +#: gnu/packages/audio.scm:4360 msgid "" "Snd is a sound editor modelled loosely after Emacs. It can be\n" "customized and extended using either the s7 Scheme implementation (included in\n" "the Snd sources), Ruby, or Forth." msgstr "" -#: gnu/packages/audio.scm:4369 +#: gnu/packages/audio.scm:4389 msgid "" "Noise Repellent is an LV2 plugin to reduce noise. It has\n" "the following features:\n" @@ -890,31 +890,31 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/audio.scm:4436 +#: gnu/packages/audio.scm:4456 msgid "" "RNNoise is a library that uses deep learning to apply\n" "noise suppression to audio sources with voice presence. This package provides\n" "an LV2 audio plugin." msgstr "" -#: gnu/packages/audio.scm:4480 +#: gnu/packages/audio.scm:4500 msgid "" "@code{cli-visualizer} displays fast-Fourier\n" "transforms (FFTs) of the sound being played, as well as other graphical\n" "representations." msgstr "" -#: gnu/packages/audio.scm:4530 +#: gnu/packages/audio.scm:4550 msgid "" "C.A.V.A. is a bar audio spectrum visualizer for the terminal\n" "using ALSA, MPD, PulseAudio, or a FIFO buffer as its input." msgstr "" -#: gnu/packages/audio.scm:4564 +#: gnu/packages/audio.scm:4584 msgid "Fluid-3 is Frank Wen's pro-quality GM soundfont." msgstr "" -#: gnu/packages/audio.scm:4586 +#: gnu/packages/audio.scm:4606 msgid "" "FDK is a library for encoding and decoding Advanced Audio\n" "Coding (AAC) format audio, developed by Fraunhofer IIS, and included as part of\n" @@ -925,20 +925,20 @@ msgid "" " surround)." msgstr "" -#: gnu/packages/audio.scm:4626 +#: gnu/packages/audio.scm:4646 msgid "" "OpenShot Audio Library (libopenshot-audio) allows\n" "high-quality editing and playback of audio, and is based on the JUCE\n" "library." msgstr "" -#: gnu/packages/audio.scm:4652 +#: gnu/packages/audio.scm:4672 msgid "" "FAudio is an XAudio reimplementation that focuses solely on\n" "developing fully accurate DirectX Audio runtime libraries." msgstr "" -#: gnu/packages/audio.scm:4679 +#: gnu/packages/audio.scm:4699 msgid "" "Gnaural is a programmable auditory binaural beat synthesizer\n" "intended to be used for brainwave entrainment. Gnaural supports creation of\n" @@ -947,20 +947,20 @@ msgid "" "other Gnaural instances, allowing synchronous sessions between many users." msgstr "" -#: gnu/packages/audio.scm:4714 +#: gnu/packages/audio.scm:4734 msgid "" "DarkIce is a live audio streamer. It takes audio input from\n" "a sound card, encodes it into Ogg Vorbis and/or mp3, and sends the audio\n" "stream to one or more IceCast and/or ShoutCast servers." msgstr "" -#: gnu/packages/audio.scm:4738 +#: gnu/packages/audio.scm:4758 msgid "" "Libltc is a POSIX-C Library for handling\n" "@dfn{Linear/Longitudinal Time Code} (LTC) data." msgstr "" -#: gnu/packages/audio.scm:4772 +#: gnu/packages/audio.scm:4792 msgid "" "TTA performs lossless compression on multichannel 8,16 and 24 bits\n" "data of the Wav audio files. Being lossless means that no data-\n" @@ -971,14 +971,14 @@ msgid "" "supports both of ID3v1/v2 and APEv2 tags." msgstr "" -#: gnu/packages/audio.scm:4805 +#: gnu/packages/audio.scm:4825 msgid "" "@code{libsoundio} is a C library providing audio input and\n" "output. The API is suitable for real-time software such as digital audio\n" "workstations as well as consumer software such as music players." msgstr "" -#: gnu/packages/audio.scm:4831 +#: gnu/packages/audio.scm:4851 msgid "" "Redkite is a small GUI toolkit developed in C++17 and\n" "inspired from other well known GUI toolkits such as Qt and GTK. It is\n" @@ -987,7 +987,7 @@ msgid "" "as is the case with audio plugins." msgstr "" -#: gnu/packages/audio.scm:4903 +#: gnu/packages/audio.scm:4923 msgid "" "Carla is a modular audio plugin host, with features like\n" "transport control, automation of parameters via MIDI CC and remote control\n" @@ -996,7 +996,7 @@ msgid "" "default and preferred audio driver but also supports native drivers like ALSA." msgstr "" -#: gnu/packages/audio.scm:4939 +#: gnu/packages/audio.scm:4959 msgid "" "Ecasound is a software package designed for multitrack audio\n" "processing. It can be used for simple tasks like audio playback, recording and\n" @@ -1008,28 +1008,28 @@ msgid "" "in the package." msgstr "" -#: gnu/packages/audio.scm:4977 +#: gnu/packages/audio.scm:4997 msgid "" "libaudec is a wrapper library over ffmpeg, sndfile and\n" "libsamplerate for reading and resampling audio files, based on Robin Gareus'\n" "@code{audio_decoder} code." msgstr "" -#: gnu/packages/audio.scm:5007 +#: gnu/packages/audio.scm:5027 msgid "" "lv2lint is an LV2 lint-like tool that checks whether a\n" "given plugin and its UI(s) match up with the provided metadata and adhere\n" "to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5041 +#: gnu/packages/audio.scm:5061 msgid "" "lv2toweb allows the user to create an xhtml page with information\n" "about the given LV2 plugin, provided that the plugin and its UI(s) match up\n" "with the provided metadata and adhere to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5069 +#: gnu/packages/audio.scm:5089 msgid "" "ZToolkit (Ztk) is a cross-platform GUI toolkit heavily\n" "inspired by GTK. It handles events and low level drawing on behalf of\n" @@ -1039,7 +1039,7 @@ msgid "" "minimum." msgstr "" -#: gnu/packages/audio.scm:5102 +#: gnu/packages/audio.scm:5122 msgid "" "libInstPatch is a library for processing digital sample based MIDI\n" "instrument \"patch\" files. The types of files libInstPatch supports are used\n" @@ -1048,28 +1048,28 @@ msgid "" "edited, converted, compressed and saved." msgstr "" -#: gnu/packages/audio.scm:5149 +#: gnu/packages/audio.scm:5169 msgid "" "The LSP DSP library provides a set of functions that perform\n" "SIMD-optimized computing on several hardware architectures. All functions\n" "currently operate on IEEE-754 single-precision floating-point numbers." msgstr "" -#: gnu/packages/audio.scm:5180 +#: gnu/packages/audio.scm:5200 msgid "" "Codec 2 is a speech codec designed for communications quality speech\n" "between 700 and 3200 bit/s. The main application is low bandwidth HF/VHF\n" "digital radio." msgstr "" -#: gnu/packages/audio.scm:5206 +#: gnu/packages/audio.scm:5226 msgid "" "The mbelib library provides support for the 7200x4400 bit/s codec used\n" "in P25 Phase 1, the 7100x4400 bit/s codec used in ProVoice and the @emph{Half\n" "Rate} 3600x2250 bit/s vocoder used in various radio systems." msgstr "" -#: gnu/packages/audio.scm:5299 +#: gnu/packages/audio.scm:5319 msgid "" "Ableton Link is a C++ library that synchronizes musical beat, tempo, and phase\n" "across multiple applications running on one or more devices. Applications on devices\n" @@ -1078,20 +1078,20 @@ msgid "" "while still staying in time." msgstr "" -#: gnu/packages/audio.scm:5360 +#: gnu/packages/audio.scm:5380 msgid "" "Butt is a tool to stream audio to a ShoutCast or\n" "Icecast server." msgstr "" -#: gnu/packages/audio.scm:5406 +#: gnu/packages/audio.scm:5426 msgid "" "siggen is a set of tools for imitating a laboratory signal\n" "generator, generating audio signals out of Linux's /dev/dsp audio\n" "device. There is support for mono and/or stereo and 8 or 16 bit samples." msgstr "" -#: gnu/packages/audio.scm:5453 +#: gnu/packages/audio.scm:5473 msgid "" "@code{python-pysox} is a wrapper around the @command{sox}\n" "command line tool. The API offers @code{Transformer} and @code{Combiner}\n" @@ -1101,7 +1101,7 @@ msgid "" "and much more." msgstr "" -#: gnu/packages/audio.scm:5492 +#: gnu/packages/audio.scm:5512 msgid "" "@code{python-resampy} implements the band-limited sinc interpolation\n" "method for sampling rate conversion as described by Julius O. Smith at the\n" @@ -1109,34 +1109,34 @@ msgid "" "Home Page}." msgstr "" -#: gnu/packages/audio.scm:5528 +#: gnu/packages/audio.scm:5548 msgid "" "@code{librosa} is a python package for music and audio analysis. It\n" "provides the building blocks necessary to create music information retrieval\n" "systems." msgstr "" -#: gnu/packages/audio.scm:5561 +#: gnu/packages/audio.scm:5581 msgid "" "MDA-LV2 is an LV2 port of the MDA plugins. It includes effects and a few\n" "instrument plugins." msgstr "" -#: gnu/packages/audio.scm:5593 +#: gnu/packages/audio.scm:5613 msgid "" "The Odio SACD shared library is a decoding engine which takes a Super\n" "Audio CD source and extracts a 24-bit high resolution WAV file. It handles\n" "both DST and DSD streams." msgstr "" -#: gnu/packages/audio.scm:5618 +#: gnu/packages/audio.scm:5638 msgid "" "Odio SACD is a command-line application which takes a Super Audio CD\n" "source and extracts a 24-bit high resolution WAV file. It handles both DST\n" "and DSD streams." msgstr "" -#: gnu/packages/backup.scm:155 +#: gnu/packages/backup.scm:165 msgid "" "Duplicity backs up directories by producing encrypted tar-format volumes\n" "and uploading them to a remote or local file server. Because duplicity uses\n" @@ -1146,7 +1146,7 @@ msgid "" "spying and/or modification by the server." msgstr "" -#: gnu/packages/backup.scm:180 +#: gnu/packages/backup.scm:190 msgid "" "Par2cmdline uses Reed-Solomon error-correcting codes to\n" "generate and verify PAR2 recovery files. These files can be distributed\n" @@ -1158,7 +1158,7 @@ msgid "" "can even repair them." msgstr "" -#: gnu/packages/backup.scm:219 +#: gnu/packages/backup.scm:229 msgid "" "Hdup2 is a backup utility, its aim is to make backup really simple. The\n" "backup scheduling is done by means of a cron job. It supports an\n" @@ -1166,7 +1166,7 @@ msgid "" "backups (called chunks) to allow easy burning to CD/DVD." msgstr "" -#: gnu/packages/backup.scm:316 +#: gnu/packages/backup.scm:326 msgid "" "Libarchive provides a flexible interface for reading and writing\n" "archives in various formats such as tar and cpio. Libarchive also supports\n" @@ -1177,7 +1177,7 @@ msgid "" "random access nor for in-place modification." msgstr "" -#: gnu/packages/backup.scm:380 +#: gnu/packages/backup.scm:390 msgid "" "Rdup is a utility inspired by rsync and the plan9 way of doing backups.\n" "Rdup itself does not backup anything, it only print a list of absolute\n" @@ -1185,7 +1185,7 @@ msgid "" "list and implement the backup strategy." msgstr "" -#: gnu/packages/backup.scm:419 +#: gnu/packages/backup.scm:429 msgid "" "SnapRAID backs up files stored across multiple storage devices, such as\n" "disk arrays, in an efficient way reminiscent of its namesake @acronym{RAID,\n" @@ -1211,7 +1211,7 @@ msgid "" "remain fully idle, saving power and producing less noise." msgstr "" -#: gnu/packages/backup.scm:469 +#: gnu/packages/backup.scm:479 msgid "" "Btar is a tar-compatible archiver which allows arbitrary compression and\n" "ciphering, redundancy, differential backup, indexed extraction, multicore\n" @@ -1219,7 +1219,7 @@ msgid "" "errors." msgstr "" -#: gnu/packages/backup.scm:496 +#: gnu/packages/backup.scm:506 msgid "" "Rdiff-backup backs up one directory to another, possibly over a network.\n" "The target directory ends up a copy of the source directory, but extra reverse\n" @@ -1234,7 +1234,7 @@ msgid "" "rdiff-backup is easy to use and settings have sensible defaults." msgstr "" -#: gnu/packages/backup.scm:532 +#: gnu/packages/backup.scm:542 msgid "" "rsnapshot is a file system snapshot utility based on rsync.\n" "rsnapshot makes it easy to make periodic snapshots of local machines, and\n" @@ -1242,7 +1242,7 @@ msgid "" "rsnapshot uses hard links to deduplicate identical files." msgstr "" -#: gnu/packages/backup.scm:610 +#: gnu/packages/backup.scm:620 msgid "" "Libchop is a set of utilities and library for data backup and\n" "distributed storage. Its main application is @command{chop-backup}, an\n" @@ -1253,17 +1253,17 @@ msgid "" "detection, and lossless compression." msgstr "" -#: gnu/packages/backup.scm:740 +#: gnu/packages/backup.scm:750 msgid "" "Borg is a deduplicating backup program. Optionally, it\n" "supports compression and authenticated encryption. The main goal of Borg is to\n" "provide an efficient and secure way to backup data. The data deduplication\n" "technique used makes Borg suitable for daily backups since only changes are\n" -"stored. The authenticated encryption technique makes it suitable for backups\n" -"to not fully trusted targets. Borg is a fork of Attic." +"stored. The authenticated encryption technique makes it suitable for\n" +"storing backups on untrusted computers." msgstr "" -#: gnu/packages/backup.scm:771 +#: gnu/packages/backup.scm:781 msgid "" "wimlib is a C library and set of command-line utilities for\n" "creating, modifying, extracting, and mounting archives in the Windows Imaging\n" @@ -1271,14 +1271,14 @@ msgid "" "NTFS volumes using @code{ntfs-3g}, preserving NTFS-specific attributes." msgstr "" -#: gnu/packages/backup.scm:879 +#: gnu/packages/backup.scm:889 msgid "" "With dirvish you can maintain a set of complete images of your\n" "file systems with unattended creation and expiration. A dirvish backup vault\n" "is like a time machine for your data." msgstr "" -#: gnu/packages/backup.scm:974 +#: gnu/packages/backup.scm:984 msgid "" "Restic is a program that does backups right and was designed\n" "with the following principles in mind:\n" @@ -1310,7 +1310,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/backup.scm:1025 +#: gnu/packages/backup.scm:1035 msgid "" "ZBackup is a globally-deduplicating backup tool, based on the\n" "ideas found in Rsync. Feed a large @file{.tar} into it, and it will\n" @@ -1323,7 +1323,7 @@ msgid "" "is format-agnostic, so you can feed virtually any files to it." msgstr "" -#: gnu/packages/backup.scm:1061 +#: gnu/packages/backup.scm:1071 msgid "" "Dump examines files in a file system, determines which ones\n" "need to be backed up, and copies those files to a specified disk, tape or\n" @@ -1334,14 +1334,44 @@ msgid "" "interactive mode." msgstr "" -#: gnu/packages/backup.scm:1105 +#: gnu/packages/backup.scm:1131 +msgid "" +"Btrbk is a backup tool for Btrfs subvolumes, taking\n" +"advantage of Btrfs specific capabilities to create atomic snapshots and\n" +"transfer them incrementally to your backup locations. The source and target\n" +"locations are specified in a config file, which allows easily configuring\n" +"simple scenarios like e.g. a @i{laptop with locally attached backup disks}, as\n" +"well as more complex ones, e.g. a @i{server receiving backups from several\n" +"hosts via SSH, with different retention policy}. It has features such as:\n" +"@itemize\n" +"@item atomic snapshots\n" +"@item incremental backups\n" +"@item flexible retention policy\n" +"@item backups to multiple destinations\n" +"@item transfer via SSH\n" +"@item resume backups (for removable and mobile devices)\n" +"@item archive to offline storage\n" +"@item encrypted backups to non-btrfs storage\n" +"@item wildcard subvolumes (useful for Docker and LXC containers)\n" +"@item transaction log\n" +"@item comprehensive list and statistics output\n" +"@item resolve and trace Btrfs parent-child and received-from relationships\n" +"@item list file changes between backups\n" +"@item calculate accurate disk space usage based on block regions.\n" +"@end itemize\n" +"Btrbk is designed to run as a cron job for triggering periodic snapshots and\n" +"backups, as well as from the command line (e.g. for instantly creating\n" +"additional snapshots)." +msgstr "" + +#: gnu/packages/backup.scm:1194 msgid "" "Burp is a network backup and restore program. It attempts\n" "to reduce network traffic and the amount of space that is used by each\n" "backup." msgstr "" -#: gnu/packages/backup.scm:1136 +#: gnu/packages/backup.scm:1225 msgid "" "Disarchive can disassemble software archives into data\n" "and metadata. The goal is to create a small amount of metadata that\n" @@ -1351,7 +1381,7 @@ msgid "" "compression parameters used by Gzip." msgstr "" -#: gnu/packages/backup.scm:1181 +#: gnu/packages/backup.scm:1270 msgid "" "borgmatic is simple, configuration-driven backup software for servers\n" "and workstations. Protect your files with client-side encryption. Backup\n" @@ -1359,6 +1389,14 @@ msgid "" "borgmatic is powered by borg." msgstr "" +#: gnu/packages/backup.scm:1330 +msgid "" +"Vorta is a graphical backup client based on the Borg backup\n" +"tool. It supports the use of remote backup repositories. It can perform\n" +"scheduled backups, and has a graphical tool for browsing and extracting the Borg\n" +"archives." +msgstr "" + #: gnu/packages/base.scm:98 msgid "" "GNU Hello prints the message \"Hello, world!\" and then exits. It\n" @@ -1491,7 +1529,7 @@ msgstr "" "буду поново створене након измена њихових извора. Гнуов мејк нуди много\n" "моћних проширења поред стандардног помагала." -#: gnu/packages/base.scm:550 +#: gnu/packages/base.scm:558 #, fuzzy msgid "" "GNU Binutils is a collection of tools for working with binary files.\n" @@ -1507,7 +1545,7 @@ msgstr "" "ниски у извршној датотеци, и помагала за рад са архивама. Ту је такође и \n" "библиотека „bfd“ за рад са извршним и записима објеката." -#: gnu/packages/base.scm:694 +#: gnu/packages/base.scm:685 #, fuzzy msgid "" "The linker wrapper (or @code{ld-wrapper}) wraps the linker to add any\n" @@ -1518,7 +1556,7 @@ msgstr "" "недостајућу опцију „-rpath“, и да би открио лоше коришћење библиотека\n" "изван складишта." -#: gnu/packages/base.scm:930 +#: gnu/packages/base.scm:921 msgid "" "Any Unix-like operating system needs a C library: the library which\n" "defines the \"system calls\" and other basic facilities such as open, malloc,\n" @@ -1534,21 +1572,21 @@ msgstr "" "Гнуова Ц библиотека се користи као Ц библиотека у Гнуовом систему и већини\n" "система са Линукс језгром." -#: gnu/packages/base.scm:1057 +#: gnu/packages/base.scm:1048 msgid "" "This package provides all the locales supported by the GNU C Library,\n" "more than 400 in total. To use them set the @code{LOCPATH} environment variable\n" "to the @code{share/locale} sub-directory of this package." msgstr "" -#: gnu/packages/base.scm:1206 +#: gnu/packages/base.scm:1198 msgid "" "The which program finds the location of executables in PATH, with a\n" "variety of options. It is an alternative to the shell \"type\" built-in\n" "command." msgstr "" -#: gnu/packages/base.scm:1329 +#: gnu/packages/base.scm:1321 #, fuzzy msgid "" "The Time Zone Database (often called tz or zoneinfo)\n" @@ -1563,14 +1601,14 @@ msgstr "" "би осликала промене на границама временских зона које доносе политичка\n" "тела, помераје КУВ-а, и правила уштеде дневног светла." -#: gnu/packages/base.scm:1367 +#: gnu/packages/base.scm:1359 msgid "" "libiconv provides an implementation of the iconv function for systems\n" "that lack it. iconv is used to convert between character encodings in a\n" "program. It supports a wide variety of different encodings." msgstr "" -#: gnu/packages/bittorrent.scm:131 +#: gnu/packages/bittorrent.scm:135 msgid "" "Transmission is a BitTorrent client that comes with graphical,\n" "textual, and Web user interfaces. Transmission also has a daemon for\n" @@ -1578,54 +1616,54 @@ msgid "" "DHT, µTP, PEX and Magnet Links." msgstr "" -#: gnu/packages/bittorrent.scm:165 +#: gnu/packages/bittorrent.scm:169 msgid "" "transmission-remote-gtk is a GTK client for remote management\n" "of the Transmission BitTorrent client, using its HTTP RPC protocol." msgstr "" -#: gnu/packages/bittorrent.scm:187 +#: gnu/packages/bittorrent.scm:191 msgid "" "LibTorrent is a BitTorrent library used by and developed in parallel\n" "with the BitTorrent client rtorrent. It is written in C++ with emphasis on\n" "speed and efficiency." msgstr "" -#: gnu/packages/bittorrent.scm:215 +#: gnu/packages/bittorrent.scm:219 msgid "" "rTorrent is a BitTorrent client with an ncurses interface. It supports\n" "full encryption, DHT, PEX, and Magnet Links. It can also be controlled via\n" "XML-RPC over SCGI." msgstr "" -#: gnu/packages/bittorrent.scm:249 +#: gnu/packages/bittorrent.scm:253 msgid "" "Tremc is a console client, with a curses interface, for the\n" "Transmission BitTorrent daemon." msgstr "" -#: gnu/packages/bittorrent.scm:290 +#: gnu/packages/bittorrent.scm:294 msgid "" "Transmission-remote-cli is a console client, with a curses\n" "interface, for the Transmission BitTorrent daemon. This package is no longer\n" "maintained upstream." msgstr "" -#: gnu/packages/bittorrent.scm:340 +#: gnu/packages/bittorrent.scm:345 msgid "" "Aria2 is a lightweight, multi-protocol & multi-source command-line\n" "download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and Metalink.\n" "Aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces." msgstr "" -#: gnu/packages/bittorrent.scm:374 +#: gnu/packages/bittorrent.scm:381 msgid "" "uGet is portable download manager with GTK+ interface supporting\n" "HTTP, HTTPS, BitTorrent and Metalink, supporting multi-connection\n" "downloads, download scheduling, download rate limiting." msgstr "" -#: gnu/packages/bittorrent.scm:406 +#: gnu/packages/bittorrent.scm:413 msgid "" "mktorrent is a simple command-line utility to create BitTorrent\n" "@dfn{metainfo} files, often known simply as @dfn{torrents}, from both single\n" @@ -1635,14 +1673,14 @@ msgid "" "and will take advantage of multiple processor cores where possible." msgstr "" -#: gnu/packages/bittorrent.scm:457 +#: gnu/packages/bittorrent.scm:472 msgid "" "libtorrent-rasterbar is a feature-complete C++ BitTorrent implementation\n" "focusing on efficiency and scalability. It runs on embedded devices as well as\n" "desktops." msgstr "" -#: gnu/packages/bittorrent.scm:508 +#: gnu/packages/bittorrent.scm:523 msgid "" "qBittorrent is a BitTorrent client programmed in C++/Qt that uses\n" "libtorrent (sometimes called libtorrent-rasterbar) by Arvid Norberg.\n" @@ -1652,7 +1690,7 @@ msgid "" "features." msgstr "" -#: gnu/packages/bittorrent.scm:580 +#: gnu/packages/bittorrent.scm:604 msgid "" "Deluge contains the common features to BitTorrent clients such as\n" "Protocol Encryption, DHT, Local Peer Discovery (LSD), Peer Exchange\n" @@ -1964,7 +2002,16 @@ msgid "" "functionality in a C++ iostream." msgstr "" -#: gnu/packages/compression.scm:1443 +#: gnu/packages/compression.scm:1416 +msgid "" +"Zopfli Compression Algorithm is a compression library\n" +"programmed in C to perform very good, but slow, deflate or zlib compression.\n" +"ZopfliCompress supports the deflate, gzip and zlib output formats. This\n" +"library can only compress, not decompress; existing zlib or deflate libraries\n" +"can decompress the data." +msgstr "" + +#: gnu/packages/compression.scm:1469 msgid "" "ZPAQ is a command-line archiver for realistic situations with\n" "many duplicate and already compressed files. It backs up only those files\n" @@ -1978,13 +2025,13 @@ msgid "" "or junctions, and always follows hard links." msgstr "" -#: gnu/packages/compression.scm:1545 +#: gnu/packages/compression.scm:1571 msgid "" "@command{unshield} is a tool and library for extracting @file{.cab}\n" " archives from InstallShield installers." msgstr "" -#: gnu/packages/compression.scm:1624 +#: gnu/packages/compression.scm:1650 msgid "" "Zstandard (@command{zstd}) is a lossless compression algorithm\n" "that combines very fast operation with a compression ratio comparable to that of\n" @@ -1994,7 +2041,7 @@ msgid "" "speed." msgstr "" -#: gnu/packages/compression.scm:1672 +#: gnu/packages/compression.scm:1698 msgid "" "Parallel Zstandard (PZstandard or @command{pzstd}) is a\n" "multi-threaded implementation of the @uref{http://zstd.net/, Zstandard\n" @@ -2007,7 +2054,7 @@ msgid "" "the actual decompression, the other input and output." msgstr "" -#: gnu/packages/compression.scm:1712 +#: gnu/packages/compression.scm:1738 msgid "" "Zip is a compression and file packaging/archive utility. Zip is useful\n" "for packaging a set of files for distribution, for archiving files, and for\n" @@ -2022,7 +2069,7 @@ msgid "" "Compression ratios of 2:1 to 3:1 are common for text files." msgstr "" -#: gnu/packages/compression.scm:1801 +#: gnu/packages/compression.scm:1827 msgid "" "UnZip is an extraction utility for archives compressed in .zip format,\n" "also called \"zipfiles\".\n" @@ -2033,7 +2080,7 @@ msgid "" "recreates the stored directory structure by default." msgstr "" -#: gnu/packages/compression.scm:1853 +#: gnu/packages/compression.scm:1879 msgid "" "Ziptime helps make @file{.zip} archives reproducible by replacing\n" "timestamps in the file header with a fixed time (1 January 2008).\n" @@ -2042,11 +2089,11 @@ msgid "" "@command{zip} to prevent it from storing the ``universal time'' field." msgstr "" -#: gnu/packages/compression.scm:1880 +#: gnu/packages/compression.scm:1906 msgid "ZZipLib is a library based on zlib for accessing zip files." msgstr "" -#: gnu/packages/compression.scm:1904 +#: gnu/packages/compression.scm:1930 msgid "" "Libzip is a C library for reading, creating, and modifying\n" "zip archives. Files can be added from data buffers, files, or compressed data\n" @@ -2054,7 +2101,7 @@ msgid "" "archive can be reverted." msgstr "" -#: gnu/packages/compression.scm:1937 +#: gnu/packages/compression.scm:1963 msgid "" "The main command is @command{aunpack} which extracts files\n" "from an archive. The other commands provided are @command{apack} (to create\n" @@ -2064,7 +2111,7 @@ msgid "" "of archives." msgstr "" -#: gnu/packages/compression.scm:1963 +#: gnu/packages/compression.scm:1989 msgid "" "Lunzip is a decompressor for files in the lzip compression format (.lz),\n" "written as a single small C tool with no dependencies. This makes it\n" @@ -2074,7 +2121,7 @@ msgid "" "Lunzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:1990 +#: gnu/packages/compression.scm:2016 msgid "" "Clzip is a compressor and decompressor for files in the lzip compression\n" "format (.lz), written as a single small C tool with no dependencies. This makes\n" @@ -2083,7 +2130,7 @@ msgid "" "Clzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:2018 +#: gnu/packages/compression.scm:2044 msgid "" "Lzlib is a C library for in-memory LZMA compression and decompression in\n" "the lzip format. It supports integrity checking of the decompressed data, and\n" @@ -2091,7 +2138,7 @@ msgid "" "corrupted input." msgstr "" -#: gnu/packages/compression.scm:2042 +#: gnu/packages/compression.scm:2068 msgid "" "Plzip is a massively parallel (multi-threaded) lossless data compressor\n" "and decompressor that uses the lzip file format (.lz). Files produced by plzip\n" @@ -2105,13 +2152,13 @@ msgid "" "single-member files which can't be decompressed in parallel." msgstr "" -#: gnu/packages/compression.scm:2074 +#: gnu/packages/compression.scm:2100 msgid "" "innoextract allows extracting Inno Setup installers under\n" "non-Windows systems without running the actual installer using wine." msgstr "" -#: gnu/packages/compression.scm:2096 +#: gnu/packages/compression.scm:2122 msgid "" "ISA-L is a collection of optimized low-level functions\n" "targeting storage applications. ISA-L includes:\n" @@ -2129,7 +2176,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/compression.scm:2156 +#: gnu/packages/compression.scm:2182 msgid "" "This package provides the reference implementation of Brotli,\n" "a generic-purpose lossless compression algorithm that compresses data using a\n" @@ -2141,13 +2188,13 @@ msgid "" "The specification of the Brotli Compressed Data Format is defined in RFC 7932." msgstr "" -#: gnu/packages/compression.scm:2176 +#: gnu/packages/compression.scm:2202 msgid "" "This package provides a Python interface to the @code{brotli}\n" "package, an implementation of the Brotli lossless compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2200 +#: gnu/packages/compression.scm:2226 msgid "" "UCL implements a number of compression algorithms that\n" "achieve an excellent compression ratio while allowing fast decompression.\n" @@ -2157,7 +2204,7 @@ msgid "" "decompression is a little bit slower." msgstr "" -#: gnu/packages/compression.scm:2248 +#: gnu/packages/compression.scm:2274 msgid "" "The Ultimate Packer for eXecutables (UPX) is an executable file\n" "compressor. UPX typically reduces the file size of programs and shared\n" @@ -2165,7 +2212,7 @@ msgid "" "download times, and other distribution and storage costs." msgstr "" -#: gnu/packages/compression.scm:2276 +#: gnu/packages/compression.scm:2302 msgid "" "QuaZIP is a simple C++ wrapper over Gilles Vollant's\n" "ZIP/UNZIP package that can be used to access ZIP archives. It uses\n" @@ -2179,7 +2226,7 @@ msgid "" "reading from and writing to ZIP archives." msgstr "" -#: gnu/packages/compression.scm:2335 +#: gnu/packages/compression.scm:2361 msgid "" "The zchunk compressed file format allows splitting a file\n" "into independent chunks. This makes it possible to retrieve only changed\n" @@ -2202,7 +2249,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/compression.scm:2391 +#: gnu/packages/compression.scm:2417 msgid "" "Zutils is a collection of utilities able to process any combination of\n" "compressed and uncompressed files transparently. If any given file, including\n" @@ -2219,14 +2266,14 @@ msgid "" "at run time, and must be installed separately." msgstr "" -#: gnu/packages/compression.scm:2449 +#: gnu/packages/compression.scm:2475 msgid "" "This package provides a script to unpack self-extracting\n" "archives generated by @command{makeself} or @command{mojo} without running the\n" "possibly untrusted extraction shell script." msgstr "" -#: gnu/packages/compression.scm:2477 +#: gnu/packages/compression.scm:2503 msgid "" "(N)compress provides the original compress and uncompress\n" "programs that used to be the de facto UNIX standard for compressing and\n" @@ -2234,7 +2281,7 @@ msgid "" "file compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2504 +#: gnu/packages/compression.scm:2530 msgid "" "Xarchiver is a front-end to various command line archiving\n" "tools. It uses GTK+ tool-kit and is designed to be desktop-environment\n" @@ -2243,13 +2290,13 @@ msgid "" "archiver is not installed." msgstr "" -#: gnu/packages/compression.scm:2541 +#: gnu/packages/compression.scm:2567 msgid "" "Archive huge numbers of files, or split massive tar archives into smaller\n" "chunks." msgstr "" -#: gnu/packages/compression.scm:2574 +#: gnu/packages/compression.scm:2600 msgid "" "Blosc is a high performance compressor optimized for binary data. It has\n" "been designed to transmit data to the processor cache faster than the\n" @@ -2259,14 +2306,14 @@ msgid "" "computations." msgstr "" -#: gnu/packages/compression.scm:2612 +#: gnu/packages/compression.scm:2638 msgid "" "ECM is a utility that converts ECM files, i.e., CD data files\n" "with their error correction data losslessly rearranged for better compression,\n" "to their original, binary CD format." msgstr "" -#: gnu/packages/compression.scm:2642 +#: gnu/packages/compression.scm:2668 msgid "" "Libdeflate is a library for fast, whole-buffer DEFLATE-based\n" "compression and decompression. The supported formats are:\n" @@ -2278,7 +2325,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/compression.scm:2672 +#: gnu/packages/compression.scm:2698 msgid "" "Tarlz is a massively parallel (multi-threaded) combined implementation of\n" "the tar archiver and the lzip compressor. Tarlz creates, lists, and extracts\n" @@ -2289,7 +2336,7 @@ msgid "" "can append files to the end of such compressed archives." msgstr "" -#: gnu/packages/compression.scm:2706 +#: gnu/packages/compression.scm:2732 msgid "" "The Concise Binary Object Representation (CBOR) is a data format whose\n" "design goals include the possibility of extremely small code size, fairly\n" @@ -2298,17 +2345,17 @@ msgid "" "serializations such as ASN.1 and MessagePack." msgstr "" -#: gnu/packages/compression.scm:2739 +#: gnu/packages/compression.scm:2765 msgid "Fcrackzip is a Zip file password cracker." msgstr "" -#: gnu/packages/databases.scm:211 +#: gnu/packages/databases.scm:216 msgid "" "4store is a RDF/SPARQL store written in C, supporting\n" "either single machines or networked clusters." msgstr "" -#: gnu/packages/databases.scm:255 +#: gnu/packages/databases.scm:260 msgid "" "@code{pg_tmp} creates temporary PostgreSQL databases, suitable for tasks\n" "like running software test suites. Temporary databases created with\n" @@ -2317,14 +2364,14 @@ msgid "" "60)." msgstr "" -#: gnu/packages/databases.scm:281 +#: gnu/packages/databases.scm:286 msgid "" "This package provides a utility for dumping the contents of an\n" "ElasticSearch index to a compressed file and restoring the dumpfile back to an\n" "ElasticSearch server" msgstr "" -#: gnu/packages/databases.scm:433 +#: gnu/packages/databases.scm:438 msgid "" "Firebird is an SQL @acronym{RDBMS, relational database management system}\n" "with rich support for ANSI SQL (e.g., @code{INSERT...RETURNING}) including\n" @@ -2344,20 +2391,20 @@ msgid "" "database later." msgstr "" -#: gnu/packages/databases.scm:506 +#: gnu/packages/databases.scm:511 msgid "" "LevelDB is a fast key-value storage library that provides an ordered\n" "mapping from string keys to string values." msgstr "" -#: gnu/packages/databases.scm:526 +#: gnu/packages/databases.scm:531 msgid "" "Memcached is an in-memory key-value store. It has a small\n" "and generic API, and was originally intended for use with dynamic web\n" "applications." msgstr "" -#: gnu/packages/databases.scm:588 +#: gnu/packages/databases.scm:593 msgid "" "libMemcached is a library to use memcached in C/C++\n" "applications. It comes with a complete reference guide and documentation of\n" @@ -2371,51 +2418,71 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:625 +#: gnu/packages/databases.scm:630 msgid "" "@code{pylibmc} is a client in Python for memcached. It is a wrapper\n" "around TangentOrg’s libmemcached library, and can be used as a drop-in\n" "replacement for the code@{python-memcached} library." msgstr "" -#: gnu/packages/databases.scm:653 +#: gnu/packages/databases.scm:662 +msgid "This is a memcache client library for the Go programming language." +msgstr "" + +#: gnu/packages/databases.scm:685 +msgid "This package provides memcache client and server functionality." +msgstr "" + +#: gnu/packages/databases.scm:711 msgid "" "@code{litecli} is a command-line client for SQLite databases that has\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:685 +#: gnu/packages/databases.scm:732 +msgid "" +"This Python package provides an API to execute meta-commands (AKA\n" +"\"special\", or \"backslash commands\") on PostgreSQL." +msgstr "" + +#: gnu/packages/databases.scm:763 +msgid "" +"@code{pgcli} is a command line interface for PostgreSQL with\n" +"autocompletion and syntax highlighting." +msgstr "" + +#: gnu/packages/databases.scm:801 msgid "" "MyCLI is a command line interface for MySQL, MariaDB, and Percona with\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:782 +#: gnu/packages/databases.scm:898 msgid "" "MySQL is a fast, reliable, and easy to use relational database\n" "management system that supports the standardized Structured Query\n" "Language." msgstr "" -#: gnu/packages/databases.scm:1045 +#: gnu/packages/databases.scm:1161 msgid "" "MariaDB is a multi-user and multi-threaded SQL database server, designed\n" "as a drop-in replacement of MySQL." msgstr "" -#: gnu/packages/databases.scm:1070 +#: gnu/packages/databases.scm:1186 msgid "" "The MariaDB Connector/C is used to connect applications\n" "developed in C/C++ to MariaDB and MySQL databases." msgstr "" -#: gnu/packages/databases.scm:1093 +#: gnu/packages/databases.scm:1209 msgid "" "Galera is a wsrep-provider that is used with MariaDB for load-balancing\n" "and high-availability (HA)." msgstr "" -#: gnu/packages/databases.scm:1147 +#: gnu/packages/databases.scm:1263 msgid "" "PostgreSQL is a powerful object-relational database system. It is fully\n" "ACID compliant, has full support for foreign keys, joins, views, triggers, and\n" @@ -2425,19 +2492,27 @@ msgid "" "pictures, sounds, or video." msgstr "" -#: gnu/packages/databases.scm:1269 +#: gnu/packages/databases.scm:1395 +msgid "" +"TimescaleDB is an database designed to make SQL scalable for\n" +"time-series data. It is engineered up from PostgreSQL and packaged as a\n" +"PostgreSQL extension, providing automatic partitioning across time and space\n" +"(partitioning key), as well as full SQL support." +msgstr "" + +#: gnu/packages/databases.scm:1476 msgid "" "@code{pgloader} is a program that can load data or migrate databases from\n" "CSV, DB3, iXF, SQLite, MS-SQL or MySQL to PostgreSQL." msgstr "" -#: gnu/packages/databases.scm:1293 +#: gnu/packages/databases.scm:1500 msgid "" "PyMySQL is a pure-Python MySQL client library, based on PEP 249.\n" "Most public APIs are compatible with @command{mysqlclient} and MySQLdb." msgstr "" -#: gnu/packages/databases.scm:1320 +#: gnu/packages/databases.scm:1527 msgid "" "QDBM is a library of routines for managing a\n" "database. The database is a simple data file containing key-value\n" @@ -2447,7 +2522,7 @@ msgid "" "organized in a hash table or B+ tree." msgstr "" -#: gnu/packages/databases.scm:1357 +#: gnu/packages/databases.scm:1564 #, fuzzy msgid "" "GNU Recutils is a set of tools and libraries for creating and\n" @@ -2462,7 +2537,7 @@ msgstr "" "очекиване функције као што су јединствена поља, основни кључеви, ознаке\n" "времена и још неке. Многе различите врсте поља су подржане, као у шифровању." -#: gnu/packages/databases.scm:1389 +#: gnu/packages/databases.scm:1596 msgid "" "This package provides an Emacs major mode @code{rec-mode}\n" "for working with GNU Recutils text-based, human-editable databases. It\n" @@ -2470,7 +2545,7 @@ msgid "" "including field and record folding." msgstr "" -#: gnu/packages/databases.scm:1457 +#: gnu/packages/databases.scm:1664 msgid "" "RocksDB is a library that forms the core building block for a fast\n" "key-value server, especially suited for storing data on flash drives. It\n" @@ -2481,7 +2556,7 @@ msgid "" "data in a single database. RocksDB is partially based on @code{LevelDB}." msgstr "" -#: gnu/packages/databases.scm:1515 +#: gnu/packages/databases.scm:1722 msgid "" "Sparql-query is a command-line tool for accessing SPARQL\n" "endpoints over HTTP. It has been intentionally designed to @code{feel} similar to\n" @@ -2492,13 +2567,13 @@ msgid "" "for example from a shell script." msgstr "" -#: gnu/packages/databases.scm:1608 +#: gnu/packages/databases.scm:1815 msgid "" "Sqitch is a standalone change management system for database schemas,\n" "which uses SQL to describe changes." msgstr "" -#: gnu/packages/databases.scm:1635 +#: gnu/packages/databases.scm:1842 msgid "" "SQLcrush lets you view and edit a database directly from the text\n" "console through an ncurses interface. You can explore each table's structure,\n" @@ -2506,7 +2581,7 @@ msgid "" "changes." msgstr "" -#: gnu/packages/databases.scm:1673 +#: gnu/packages/databases.scm:1880 msgid "" "TDB is a Trivial Database. In concept, it is very much like GDBM,\n" "and BSD's DB except that it allows multiple simultaneous writers and uses\n" @@ -2514,11 +2589,11 @@ msgid "" "extremely small." msgstr "" -#: gnu/packages/databases.scm:1693 +#: gnu/packages/databases.scm:1900 msgid "This package provides an database interface for Perl." msgstr "" -#: gnu/packages/databases.scm:1741 +#: gnu/packages/databases.scm:1948 msgid "" "An SQL to OO mapper with an object API inspired by\n" "Class::DBI (with a compatibility layer as a springboard for porting) and a\n" @@ -2530,13 +2605,13 @@ msgid "" "\"ORDER BY\" and \"HAVING\" support." msgstr "" -#: gnu/packages/databases.scm:1770 +#: gnu/packages/databases.scm:1977 msgid "" "DBIx::Class::Cursor::Cached provides a cursor class with\n" "built-in caching support." msgstr "" -#: gnu/packages/databases.scm:1793 +#: gnu/packages/databases.scm:2000 msgid "" "Because the many-to-many relationships are not real\n" "relationships, they can not be introspected with DBIx::Class. Many-to-many\n" @@ -2546,26 +2621,26 @@ msgid "" "introspected and examined." msgstr "" -#: gnu/packages/databases.scm:1852 +#: gnu/packages/databases.scm:2059 msgid "" "DBIx::Class::Schema::Loader automates the definition of a\n" "DBIx::Class::Schema by scanning database table definitions and setting up the\n" "columns, primary keys, unique constraints and relationships." msgstr "" -#: gnu/packages/databases.scm:1876 +#: gnu/packages/databases.scm:2083 msgid "" "This package provides a PostgreSQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." msgstr "" -#: gnu/packages/databases.scm:1914 +#: gnu/packages/databases.scm:2121 msgid "" "This package provides a MySQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." msgstr "" -#: gnu/packages/databases.scm:1934 +#: gnu/packages/databases.scm:2141 msgid "" "DBD::SQLite is a Perl DBI driver for SQLite, that includes\n" "the entire thing in the distribution. So in order to get a fast transaction\n" @@ -2573,14 +2648,14 @@ msgid "" "module, and nothing else." msgstr "" -#: gnu/packages/databases.scm:1959 +#: gnu/packages/databases.scm:2166 msgid "" "@code{MySQL::Config} emulates the @code{load_defaults} function from\n" "libmysqlclient. It will fill an array with long options, ready to be parsed by\n" "@code{Getopt::Long}." msgstr "" -#: gnu/packages/databases.scm:1983 +#: gnu/packages/databases.scm:2190 msgid "" "This module was inspired by the excellent DBIx::Abstract.\n" "While based on the concepts used by DBIx::Abstract, the concepts used have\n" @@ -2590,7 +2665,7 @@ msgid "" "time your data changes." msgstr "" -#: gnu/packages/databases.scm:2010 +#: gnu/packages/databases.scm:2217 msgid "" "This module is nearly identical to @code{SQL::Abstract} 1.81, and exists\n" "to preserve the ability of users to opt into the new way of doing things in\n" @@ -2606,34 +2681,34 @@ msgid "" "your data changes, as this module figures it out." msgstr "" -#: gnu/packages/databases.scm:2043 +#: gnu/packages/databases.scm:2250 msgid "" "This module tries to split any SQL code, even including\n" "non-standard extensions, into the atomic statements it is composed of." msgstr "" -#: gnu/packages/databases.scm:2062 +#: gnu/packages/databases.scm:2269 msgid "" "SQL::Tokenizer is a tokenizer for SQL queries. It does not\n" "claim to be a parser or query verifier. It just creates sane tokens from a\n" "valid SQL query." msgstr "" -#: gnu/packages/databases.scm:2081 +#: gnu/packages/databases.scm:2288 msgid "" "Unixodbc is a library providing an API with which to access\n" "data sources. Data sources include SQL Servers and any software with an ODBC\n" "Driver." msgstr "" -#: gnu/packages/databases.scm:2113 +#: gnu/packages/databases.scm:2320 msgid "" "The goal for nanodbc is to make developers happy by providing\n" "a simpler and less verbose API for working with ODBC. Common tasks should be\n" "easy, requiring concise and simple code." msgstr "" -#: gnu/packages/databases.scm:2174 +#: gnu/packages/databases.scm:2381 msgid "" "UnQLite is an in-process software library which implements a\n" "self-contained, serverless, zero-configuration, transactional NoSQL\n" @@ -2642,27 +2717,35 @@ msgid "" "similar to BerkeleyDB, LevelDB, etc." msgstr "" -#: gnu/packages/databases.scm:2225 +#: gnu/packages/databases.scm:2432 msgid "" "Redis is an advanced key-value cache and store. Redis\n" "supports many data structures including strings, hashes, lists, sets, sorted\n" "sets, bitmaps and hyperloglogs." msgstr "" -#: gnu/packages/databases.scm:2247 +#: gnu/packages/databases.scm:2454 msgid "" "This package provides a Ruby client that tries to match Redis' API\n" "one-to-one, while still providing an idiomatic interface." msgstr "" -#: gnu/packages/databases.scm:2275 +#: gnu/packages/databases.scm:2479 +msgid "Package rdb implements parsing and encoding of the Redis RDB file format." +msgstr "" + +#: gnu/packages/databases.scm:2505 +msgid "Redigo is a Go client for the Redis database." +msgstr "" + +#: gnu/packages/databases.scm:2531 msgid "" "Kyoto Cabinet is a standalone file-based database that supports Hash\n" "and B+ Tree data storage models. It is a fast key-value lightweight\n" "database and supports many programming languages. It is a NoSQL database." msgstr "" -#: gnu/packages/databases.scm:2303 +#: gnu/packages/databases.scm:2559 msgid "" "Tokyo Cabinet is a library of routines for managing a database.\n" "The database is a simple data file containing records, each is a pair of a\n" @@ -2672,7 +2755,7 @@ msgid "" "organized in hash table, B+ tree, or fixed-length array." msgstr "" -#: gnu/packages/databases.scm:2339 +#: gnu/packages/databases.scm:2595 msgid "" "WiredTiger is an extensible platform for data management. It supports\n" "row-oriented storage (where all columns of a row are stored together),\n" @@ -2681,17 +2764,17 @@ msgid "" "trees (LSM), for sustained throughput under random insert workloads." msgstr "" -#: gnu/packages/databases.scm:2389 +#: gnu/packages/databases.scm:2645 msgid "" "This package provides Guile bindings to the WiredTiger ``NoSQL''\n" "database." msgstr "" -#: gnu/packages/databases.scm:2419 +#: gnu/packages/databases.scm:2675 msgid "The DB::File module provides Perl bindings to the Berkeley DB version 1.x." msgstr "" -#: gnu/packages/databases.scm:2467 +#: gnu/packages/databases.scm:2723 msgid "" "The @dfn{Lightning Memory-Mapped Database} (LMDB) is a high-performance\n" "transactional database. Unlike more complex relational databases, LMDB handles\n" @@ -2704,7 +2787,7 @@ msgid "" "virtual address space — not physical RAM." msgstr "" -#: gnu/packages/databases.scm:2501 +#: gnu/packages/databases.scm:2757 msgid "" "@code{lmdbxx} is a comprehensive @code{C++} wrapper for the\n" "@code{LMDB} embedded database library, offering both an error-checked\n" @@ -2712,14 +2795,22 @@ msgid "" "semantics." msgstr "" -#: gnu/packages/databases.scm:2535 +#: gnu/packages/databases.scm:2791 msgid "" "Libpqxx is a C++ library to enable user programs to communicate with the\n" "PostgreSQL database back-end. The database back-end can be local or it may be\n" "on another machine, accessed via TCP/IP." msgstr "" -#: gnu/packages/databases.scm:2561 +#: gnu/packages/databases.scm:2819 +msgid "" +"Bolt is a pure Go key/value store inspired by Howard Chu's\n" +"LMDB project. The goal of the project is to provide a simple, fast, and\n" +"reliable database for projects that don't require a full database server such as\n" +"Postgres or MySQL." +msgstr "" + +#: gnu/packages/databases.scm:2845 msgid "" "Peewee is a simple and small ORM (object-relation mapping) tool. Peewee\n" "handles converting between pythonic values and those used by databases, so you\n" @@ -2728,20 +2819,20 @@ msgid "" "can autogenerate peewee models using @code{pwiz}, a model generator." msgstr "" -#: gnu/packages/databases.scm:2584 +#: gnu/packages/databases.scm:2868 msgid "" "Pypika-tortoise is a fork of pypika which has been\n" "streamlined for its use in the context of tortoise-orm. It removes support\n" "for many database kinds that tortoise-orm doesn't need, for example." msgstr "" -#: gnu/packages/databases.scm:2604 +#: gnu/packages/databases.scm:2888 msgid "" "This package is a Sphinx extension providing additional\n" "coroutine-specific markup." msgstr "" -#: gnu/packages/databases.scm:2632 +#: gnu/packages/databases.scm:2916 msgid "" "@code{asyncpg} is a database interface library designed\n" "specifically for PostgreSQL and Python/asyncio. @code{asyncpg} is an\n" @@ -2749,14 +2840,14 @@ msgid "" "with Python's asyncio framework." msgstr "" -#: gnu/packages/databases.scm:2652 +#: gnu/packages/databases.scm:2936 msgid "" "@code{asyncmy} is a fast @code{asyncio} MySQL driver, which\n" "reuses most of @code{pymysql} and @code{aiomysql} but rewrites the core\n" "protocol with Cython for performance." msgstr "" -#: gnu/packages/databases.scm:2672 +#: gnu/packages/databases.scm:2956 msgid "" "@code{aiomysql} is a driver for accessing a MySQL database\n" "from the @code{asyncio} Python framework. It depends on and reuses most parts\n" @@ -2764,7 +2855,7 @@ msgid "" "@code{aiopg} library." msgstr "" -#: gnu/packages/databases.scm:2705 +#: gnu/packages/databases.scm:2989 msgid "" "Tortoise ORM is an easy-to-use asyncio ORM (Object\n" "Relational Mapper) inspired by Django. Tortoise ORM was built with relations\n" @@ -2773,7 +2864,7 @@ msgid "" "with relational data." msgstr "" -#: gnu/packages/databases.scm:2749 +#: gnu/packages/databases.scm:3033 msgid "" "SQLCipher is an implementation of SQLite, extended to\n" "provide transparent 256-bit AES encryption of database files. Pages are\n" @@ -2782,19 +2873,19 @@ msgid "" "development." msgstr "" -#: gnu/packages/databases.scm:2782 +#: gnu/packages/databases.scm:3066 msgid "" "@code{python-pyodbc-c} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2807 +#: gnu/packages/databases.scm:3091 msgid "" "@code{python-pyodbc} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2840 +#: gnu/packages/databases.scm:3124 msgid "" "MDB Tools is a set of tools and applications to read the\n" "proprietary MDB file format used in Microsoft's Access database package. This\n" @@ -2803,39 +2894,43 @@ msgid "" "etc., and an SQL engine for performing simple SQL queries." msgstr "" -#: gnu/packages/databases.scm:2886 +#: gnu/packages/databases.scm:3153 +msgid "This package provides a MongoDB driver for Go." +msgstr "" + +#: gnu/packages/databases.scm:3194 msgid "" "python-lmdb or py-lmdb is a Python binding for the @dfn{Lightning\n" "Memory-Mapped Database} (LMDB), a high-performance key-value store." msgstr "" -#: gnu/packages/databases.scm:2925 +#: gnu/packages/databases.scm:3233 msgid "" "Orator provides a simple ActiveRecord-like Object Relational Mapping\n" "implementation for Python." msgstr "" -#: gnu/packages/databases.scm:2963 +#: gnu/packages/databases.scm:3271 msgid "" "Virtuoso is a scalable cross-platform server that combines\n" "relational, graph, and document data management with web application server\n" "and web services platform functionality." msgstr "" -#: gnu/packages/databases.scm:2990 +#: gnu/packages/databases.scm:3298 msgid "" "Cassandra Cluster Manager is a development tool for testing\n" "local Cassandra clusters. It creates, launches and removes Cassandra clusters\n" "on localhost." msgstr "" -#: gnu/packages/databases.scm:3018 +#: gnu/packages/databases.scm:3326 msgid "" "Pysqlite provides SQLite bindings for Python that comply to the\n" "Database API 2.0T." msgstr "" -#: gnu/packages/databases.scm:3048 +#: gnu/packages/databases.scm:3356 msgid "" "SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that\n" "gives application developers the full power and flexibility of SQL. It\n" @@ -2844,14 +2939,14 @@ msgid "" "simple and Pythonic domain language." msgstr "" -#: gnu/packages/databases.scm:3086 +#: gnu/packages/databases.scm:3382 msgid "" "This package contains type stubs and a mypy plugin to\n" "provide more precise static types and type inference for SQLAlchemy\n" "framework." msgstr "" -#: gnu/packages/databases.scm:3118 +#: gnu/packages/databases.scm:3414 msgid "" "SQLAlchemy-utils provides various utility functions and custom data types\n" "for SQLAlchemy. SQLAlchemy is an SQL database abstraction library for Python.\n" @@ -2868,7 +2963,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/databases.scm:3165 +#: gnu/packages/databases.scm:3461 msgid "" "This package provides mock helpers for SQLAlchemy that makes it easy\n" "to mock an SQLAlchemy session while preserving the ability to do asserts.\n" @@ -2878,13 +2973,13 @@ msgid "" "this library provides functions to facilitate such comparisons." msgstr "" -#: gnu/packages/databases.scm:3196 +#: gnu/packages/databases.scm:3492 msgid "" "Alembic is a lightweight database migration tool for usage with the\n" "SQLAlchemy Database Toolkit for Python." msgstr "" -#: gnu/packages/databases.scm:3221 +#: gnu/packages/databases.scm:3517 msgid "" "PickleShare is a small ‘shelve’-like datastore with concurrency support.\n" "Like shelve, a PickleShareDB object acts like a normal dictionary. Unlike\n" @@ -2895,7 +2990,7 @@ msgid "" "PickleShare." msgstr "" -#: gnu/packages/databases.scm:3275 +#: gnu/packages/databases.scm:3571 msgid "" "APSW is a Python wrapper for the SQLite\n" "embedded relational database engine. In contrast to other wrappers such as\n" @@ -2903,21 +2998,21 @@ msgid "" "translate the complete SQLite API into Python." msgstr "" -#: gnu/packages/databases.scm:3312 +#: gnu/packages/databases.scm:3608 msgid "" "The package aiosqlite replicates the standard sqlite3 module, but with\n" "async versions of all the standard connection and cursor methods, and context\n" "managers for automatically closing connections." msgstr "" -#: gnu/packages/databases.scm:3333 +#: gnu/packages/databases.scm:3629 msgid "" "This package provides the Neo4j Python driver that connects\n" "to the database using Neo4j's binary protocol. It aims to be minimal, while\n" "being idiomatic to Python." msgstr "" -#: gnu/packages/databases.scm:3353 +#: gnu/packages/databases.scm:3649 msgid "" "This package provides a client library and toolkit for\n" "working with Neo4j from within Python applications and from the command\n" @@ -2925,26 +3020,38 @@ msgid "" "designed to be easy and intuitive to use." msgstr "" -#: gnu/packages/databases.scm:3379 +#: gnu/packages/databases.scm:3675 msgid "" "psycopg2 is a thread-safe PostgreSQL adapter that implements DB-API\n" "2.0." msgstr "" -#: gnu/packages/databases.scm:3413 +#: gnu/packages/databases.scm:3702 +msgid "" +"This module provides connection pool implementations that can be used\n" +"with the @code{psycopg} PostgreSQL driver." +msgstr "" + +#: gnu/packages/databases.scm:3776 +msgid "" +"Psycopg 3 is a new implementation of the popular @code{psycopg2}\n" +"database adapter for Python." +msgstr "" + +#: gnu/packages/databases.scm:3810 msgid "" "This package provides a program to build Entity\n" "Relationship diagrams from a SQLAlchemy model (or directly from the\n" "database)." msgstr "" -#: gnu/packages/databases.scm:3443 +#: gnu/packages/databases.scm:3840 msgid "" "Yoyo is a database schema migration tool. Migrations are written as SQL\n" "files or Python scripts that define a list of migration steps." msgstr "" -#: gnu/packages/databases.scm:3464 +#: gnu/packages/databases.scm:3861 msgid "" "MySQLdb is an interface to the popular MySQL database server\n" "for Python. The design goals are:\n" @@ -2955,13 +3062,13 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/databases.scm:3490 +#: gnu/packages/databases.scm:3887 msgid "" "Python-hiredis is a python extension that wraps protocol\n" "parsing code in hiredis. It primarily speeds up parsing of multi bulk replies." msgstr "" -#: gnu/packages/databases.scm:3517 +#: gnu/packages/databases.scm:3914 msgid "" "Fakeredis is a pure-Python implementation of the redis-py Python client\n" "that simulates talking to a redis server. It was created for a single purpose:\n" @@ -2972,49 +3079,49 @@ msgid "" "reasonable substitute." msgstr "" -#: gnu/packages/databases.scm:3545 +#: gnu/packages/databases.scm:3942 msgid "This package provides a Python interface to the Redis key-value store." msgstr "" -#: gnu/packages/databases.scm:3586 +#: gnu/packages/databases.scm:3983 msgid "" "RQ (Redis Queue) is a simple Python library for queueing jobs and\n" "processing them in the background with workers. It is backed by Redis and it\n" "is designed to have a low barrier to entry." msgstr "" -#: gnu/packages/databases.scm:3623 +#: gnu/packages/databases.scm:4020 msgid "" "This package provides job scheduling capabilities to @code{python-rq}\n" "(Redis Queue)." msgstr "" -#: gnu/packages/databases.scm:3643 +#: gnu/packages/databases.scm:4040 msgid "" "@code{trollius-redis} is a Redis client for Python\n" " trollius. It is an asynchronous IO (PEP 3156) implementation of the\n" " Redis protocol." msgstr "" -#: gnu/packages/databases.scm:3686 +#: gnu/packages/databases.scm:4083 msgid "" "Sqlparse is a non-validating SQL parser for Python. It\n" "provides support for parsing, splitting and formatting SQL statements." msgstr "" -#: gnu/packages/databases.scm:3703 +#: gnu/packages/databases.scm:4101 msgid "" "@code{python-sql} is a library to write SQL queries, that\n" "transforms idiomatic python function calls to well-formed SQL queries." msgstr "" -#: gnu/packages/databases.scm:3726 +#: gnu/packages/databases.scm:4124 msgid "" "PyPika is a python SQL query builder that exposes the full richness of\n" "the SQL language using a syntax that reflects the resulting query." msgstr "" -#: gnu/packages/databases.scm:3852 +#: gnu/packages/databases.scm:4250 msgid "" "Apache Arrow is a columnar in-memory analytics layer\n" "designed to accelerate big data. It houses a set of canonical in-memory\n" @@ -3023,21 +3130,21 @@ msgid "" "algorithm implementations." msgstr "" -#: gnu/packages/databases.scm:3912 +#: gnu/packages/databases.scm:4310 msgid "" "This library provides a Pythonic API wrapper for the reference Arrow C++\n" "implementation, along with tools for interoperability with pandas, NumPy, and\n" "other traditional Python scientific computing packages." msgstr "" -#: gnu/packages/databases.scm:3933 +#: gnu/packages/databases.scm:4331 msgid "" "This package provides a Python client library for CrateDB.\n" "It implements the Python DB API 2.0 specification and includes support for\n" "SQLAlchemy." msgstr "" -#: gnu/packages/databases.scm:3952 +#: gnu/packages/databases.scm:4350 msgid "" "This library implements a database independent abstraction layer in C,\n" "similar to the DBI/DBD layer in Perl. Writing one generic set of code,\n" @@ -3045,7 +3152,7 @@ msgid "" "simultaneous database connections by using this framework." msgstr "" -#: gnu/packages/databases.scm:4018 +#: gnu/packages/databases.scm:4416 msgid "" "The @code{libdbi-drivers} library provides the database specific drivers\n" "for the @code{libdbi} framework.\n" @@ -3058,26 +3165,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:4060 +#: gnu/packages/databases.scm:4458 msgid "" "SOCI is an abstraction layer for several database backends, including\n" "PostreSQL, SQLite, ODBC and MySQL." msgstr "" -#: gnu/packages/databases.scm:4084 +#: gnu/packages/databases.scm:4482 msgid "" "FreeTDS is an implementation of the Tabular DataStream protocol, used for\n" "connecting to MS SQL and Sybase servers over TCP/IP." msgstr "" -#: gnu/packages/databases.scm:4106 +#: gnu/packages/databases.scm:4504 msgid "" "TinyDB is a small document oriented database written in pure Python\n" "with no external dependencies. The targets are small apps that would\n" "be blown away by a SQL-DB or an external database server." msgstr "" -#: gnu/packages/databases.scm:4154 +#: gnu/packages/databases.scm:4552 msgid "" "Sequeler is a native Linux SQL client built in Vala and\n" "Gtk. It allows you to connect to your local and remote databases, write SQL in\n" @@ -3085,7 +3192,13 @@ msgid "" "a Gtk.Grid Widget." msgstr "" -#: gnu/packages/debug.scm:111 +#: gnu/packages/databases.scm:4594 +msgid "" +"Sqlitebrowser is a high quaility, visual, open source tool to\n" +"create design, and edit database file compatible with SQLite." +msgstr "" + +#: gnu/packages/debug.scm:112 msgid "" "Delta assists you in minimizing \"interesting\" files subject to a test\n" "of their interestingness. A common such situation is when attempting to\n" @@ -3093,7 +3206,7 @@ msgid "" "program to exhibit a bug." msgstr "" -#: gnu/packages/debug.scm:172 +#: gnu/packages/debug.scm:173 msgid "" "C-Reduce is a tool that takes a large C or C++ program that has a\n" "property of interest (such as triggering a compiler bug) and automatically\n" @@ -3102,14 +3215,14 @@ msgid "" "tools that process C/C++ code." msgstr "" -#: gnu/packages/debug.scm:219 +#: gnu/packages/debug.scm:220 msgid "" "C-Vise is a Python port of the C-Reduce tool that is fully compatible\n" "and uses the same efficient LLVM-based C/C++ @code{clang_delta} reduction\n" "tool." msgstr "" -#: gnu/packages/debug.scm:289 +#: gnu/packages/debug.scm:290 msgid "" "American fuzzy lop is a security-oriented fuzzer that employs a novel\n" "type of compile-time instrumentation and genetic algorithms to automatically\n" @@ -3120,7 +3233,7 @@ msgid "" "down the road." msgstr "" -#: gnu/packages/debug.scm:433 +#: gnu/packages/debug.scm:434 msgid "" "QEMU is a generic machine emulator and virtualizer. This package\n" "of QEMU is used only by the american fuzzy lop package.\n" @@ -3136,7 +3249,7 @@ msgid "" "server and embedded PowerPC, and S390 guests." msgstr "" -#: gnu/packages/debug.scm:501 +#: gnu/packages/debug.scm:502 msgid "" "Stress Make is a customized GNU Make that explicitly manages the order\n" "in which concurrent jobs are run to provoke erroneous behavior into becoming\n" @@ -3146,14 +3259,14 @@ msgid "" "conditions." msgstr "" -#: gnu/packages/debug.scm:529 +#: gnu/packages/debug.scm:530 msgid "" "Zzuf is a transparent application input fuzzer. It works by\n" "intercepting file operations and changing random bits in the program's\n" "input. Zzuf's behaviour is deterministic, making it easy to reproduce bugs." msgstr "" -#: gnu/packages/debug.scm:581 +#: gnu/packages/debug.scm:582 msgid "" "Scanmem is a debugging utility designed to isolate the\n" "address of an arbitrary variable in an executing process. Scanmem simply\n" @@ -3162,13 +3275,13 @@ msgid "" "the position of the variable and allows you to modify its value." msgstr "" -#: gnu/packages/debug.scm:611 +#: gnu/packages/debug.scm:612 msgid "" "Remake is an enhanced version of GNU Make that adds improved\n" "error reporting, better tracing, profiling, and a debugger." msgstr "" -#: gnu/packages/debug.scm:667 +#: gnu/packages/debug.scm:668 msgid "" "rr is a lightweight tool for recording, replaying and debugging\n" "execution of applications (trees of processes and threads). Debugging extends\n" @@ -3177,13 +3290,13 @@ msgid "" "fun." msgstr "" -#: gnu/packages/debug.scm:695 +#: gnu/packages/debug.scm:696 msgid "" "The @code{libbacktrace} library can be linked into a C/C++\n" "program to produce symbolic backtraces." msgstr "" -#: gnu/packages/debug.scm:735 +#: gnu/packages/debug.scm:736 msgid "" "The libleak tool detects memory leaks by hooking memory\n" "functions such as @code{malloc}. It comes as a shared object to be pre-loaded\n" @@ -3195,7 +3308,7 @@ msgid "" "use than similar tools like @command{mtrace}." msgstr "" -#: gnu/packages/debug.scm:763 +#: gnu/packages/debug.scm:764 msgid "" "@code{cgdb} is a lightweight curses (terminal-based) interface to the\n" "GNU Debugger (GDB). In addition to the standard gdb console, cgdb provides\n" @@ -3204,7 +3317,7 @@ msgid "" "using cgdb." msgstr "" -#: gnu/packages/debug.scm:798 +#: gnu/packages/debug.scm:799 msgid "" "MspDebug supports FET430UIF, eZ430, RF2500 and Olimex\n" "MSP430-JTAG-TINY programmers, as well as many other compatible\n" @@ -3220,14 +3333,14 @@ msgid "" "multiple test suites, which are then all managed by a single harness." msgstr "" -#: gnu/packages/games.scm:287 +#: gnu/packages/games.scm:288 msgid "" "Abe's Amazing Adventure is a scrolling,\n" "platform-jumping, key-collecting, ancient pyramid exploring game, vaguely in\n" "the style of similar games for the Commodore+4." msgstr "" -#: gnu/packages/games.scm:357 +#: gnu/packages/games.scm:358 msgid "" "Adanaxis is a fast-moving first person shooter set in deep space, where\n" "the fundamentals of space itself are changed. By adding another dimension to\n" @@ -3238,7 +3351,7 @@ msgid "" "mouse and joystick control, and original music." msgstr "" -#: gnu/packages/games.scm:401 +#: gnu/packages/games.scm:402 msgid "" "Guide Alex the Allegator through the jungle in order to save his\n" "girlfriend Lola from evil humans who want to make a pair of shoes out of her.\n" @@ -3247,7 +3360,7 @@ msgid "" "The game includes a built-in editor so you can design and share your own maps." msgstr "" -#: gnu/packages/games.scm:431 +#: gnu/packages/games.scm:432 msgid "" "Armagetron Advanced is a multiplayer game in 3d that\n" "attempts to emulate and expand on the lightcycle sequence from the movie Tron.\n" @@ -3257,7 +3370,7 @@ msgid "" "physics settings to tweak as well." msgstr "" -#: gnu/packages/games.scm:489 +#: gnu/packages/games.scm:490 msgid "" "Space is a vast area, an unbounded territory where it seems there is\n" "a room for everybody, but reversal of fortune put things differently. The\n" @@ -3269,7 +3382,7 @@ msgid "" "regret their insolence." msgstr "" -#: gnu/packages/games.scm:556 +#: gnu/packages/games.scm:557 msgid "" "Bastet (short for Bastard Tetris) is a simple ncurses-based falling brick\n" "game. Unlike normal Tetris, Bastet does not choose the next brick at random.\n" @@ -3279,19 +3392,19 @@ msgid "" "canyons and wait for the long I-shaped block to clear four rows at a time." msgstr "" -#: gnu/packages/games.scm:601 +#: gnu/packages/games.scm:602 msgid "" "Tetrinet is a multiplayer Tetris-like game with powerups and\n" "attacks you can use on opponents." msgstr "" -#: gnu/packages/games.scm:635 +#: gnu/packages/games.scm:636 msgid "" "Vitetris is a classic multiplayer Tetris clone for the\n" "terminal." msgstr "" -#: gnu/packages/games.scm:678 +#: gnu/packages/games.scm:679 msgid "" "Blobwars: Metal Blob Solid is a 2D platform game, the first\n" "in the Blobwars series. You take on the role of a fearless Blob agent. Your\n" @@ -3299,7 +3412,7 @@ msgid "" "possible, while battling many vicious aliens." msgstr "" -#: gnu/packages/games.scm:771 +#: gnu/packages/games.scm:772 msgid "" "These are the BSD games. See the fortune-mod package for fortunes.\n" "\n" @@ -3332,7 +3445,7 @@ msgid "" "Quizzes: arithmetic and quiz." msgstr "" -#: gnu/packages/games.scm:866 +#: gnu/packages/games.scm:867 msgid "" "BZFlag is a 3D multi-player multiplatform tank battle game that\n" "allows users to play against each other in a network environment.\n" @@ -3352,7 +3465,7 @@ msgid "" "high a score as possible." msgstr "" -#: gnu/packages/games.scm:949 +#: gnu/packages/games.scm:950 msgid "" "Cataclysm: Dark Days Ahead (or \"DDA\" for short) is a roguelike set\n" "in a post-apocalyptic world. Struggle to survive in a harsh, persistent,\n" @@ -3364,7 +3477,7 @@ msgid "" "want what you have." msgstr "" -#: gnu/packages/games.scm:998 +#: gnu/packages/games.scm:999 msgid "" "Cockatrice is a program for playing tabletop card games\n" "over a network. Its server design prevents users from manipulating the game\n" @@ -3372,7 +3485,7 @@ msgid "" "allows users to brew while offline." msgstr "" -#: gnu/packages/games.scm:1052 +#: gnu/packages/games.scm:1053 msgid "" "This package provides a reimplementation of the 1997 Bullfrog business\n" "simulation game @i{Theme Hospital}. As well as faithfully recreating the\n" @@ -3380,7 +3493,7 @@ msgid "" "more. This package does @emph{not} provide the game assets." msgstr "" -#: gnu/packages/games.scm:1094 +#: gnu/packages/games.scm:1095 msgid "" "Cowsay is basically a text filter. Send some text into it,\n" "and you get a cow saying your text. If you think a talking cow isn't enough,\n" @@ -3388,21 +3501,21 @@ msgid "" "tired of cows, a variety of other ASCII-art messengers are available." msgstr "" -#: gnu/packages/games.scm:1135 +#: gnu/packages/games.scm:1136 msgid "" "@command{lolcat} concatenates files and streams like\n" "regular @command{cat}, but it also adds terminal escape codes between\n" "characters and lines resulting in a rainbow effect." msgstr "" -#: gnu/packages/games.scm:1164 +#: gnu/packages/games.scm:1165 #, scheme-format msgid "" "This package provides the Fallout 2 game engine. Game data\n" "should be placed in @file{~/.local/share/falltergeist}." msgstr "" -#: gnu/packages/games.scm:1275 +#: gnu/packages/games.scm:1276 msgid "" "FooBillard++ is an advanced 3D OpenGL billiard game\n" "based on the original foobillard 3.0a sources from Florian Berger.\n" @@ -3424,7 +3537,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:1342 +#: gnu/packages/games.scm:1343 msgid "" "The Freedoom project aims to create a complete free content first person\n" "shooter game. Freedoom by itself is just the raw material for a game: it must\n" @@ -3433,7 +3546,7 @@ msgid "" "effects and music to make a completely free game." msgstr "" -#: gnu/packages/games.scm:1392 +#: gnu/packages/games.scm:1394 msgid "" "Freedroid RPG is an @dfn{RPG} (Role-Playing Game) with isometric graphics.\n" "The game tells the story of a world destroyed by a conflict between robots and\n" @@ -3443,7 +3556,7 @@ msgid "" "real-time combat." msgstr "" -#: gnu/packages/games.scm:1471 +#: gnu/packages/games.scm:1473 msgid "" "Golly simulates Conway's Game of Life and many other types of cellular\n" "automata. The following features are available:\n" @@ -3464,13 +3577,13 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:1527 +#: gnu/packages/games.scm:1529 msgid "" "This package provides a userspace daemon for the Nintendo\n" "Joy-Con controllers." msgstr "" -#: gnu/packages/games.scm:1557 +#: gnu/packages/games.scm:1559 msgid "" "Engine for Caesar III, a city-building real-time strategy game.\n" "Julius includes some UI enhancements while preserving the logic (including\n" @@ -3478,7 +3591,7 @@ msgid "" "does not include game data." msgstr "" -#: gnu/packages/games.scm:1591 +#: gnu/packages/games.scm:1593 msgid "" "Fork of Julius, an engine for the a city-building real-time strategy\n" "game Caesar III. Gameplay enhancements include:\n" @@ -3493,7 +3606,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/games.scm:1630 +#: gnu/packages/games.scm:1632 msgid "" "Me and My Shadow is a puzzle/platform game in which you try\n" "to reach the exit by solving puzzles. Spikes, moving blocks, fragile blocks\n" @@ -3501,7 +3614,7 @@ msgid "" "shadow mimic them to reach blocks you couldn't reach alone." msgstr "" -#: gnu/packages/games.scm:1686 +#: gnu/packages/games.scm:1688 msgid "" "@code{Open Surge} is a 2D retro side-scrolling platformer\n" "inspired by the Sonic games. The player runs at high speeds through each\n" @@ -3509,7 +3622,7 @@ msgid "" "built-in level editor." msgstr "" -#: gnu/packages/games.scm:1732 +#: gnu/packages/games.scm:1734 msgid "" "Knights is a multiplayer game involving several knights who\n" "must run around a dungeon and complete various quests. Each game revolves\n" @@ -3521,7 +3634,7 @@ msgid "" "destroying an ancient book using a special wand." msgstr "" -#: gnu/packages/games.scm:1780 +#: gnu/packages/games.scm:1781 msgid "" "GNOME 2048 provides a 2D grid for playing 2048, a\n" "single-player sliding tile puzzle game. The objective of the game is to merge\n" @@ -3529,7 +3642,7 @@ msgid "" "in one tile." msgstr "" -#: gnu/packages/games.scm:1819 +#: gnu/packages/games.scm:1820 msgid "" "GNOME Chess provides a 2D board for playing chess games\n" "against human or computer players. It supports loading and saving games in\n" @@ -3537,7 +3650,7 @@ msgid "" "such as chess or stockfish." msgstr "" -#: gnu/packages/games.scm:1880 +#: gnu/packages/games.scm:1881 msgid "" "The GNU backgammon application (also known as \"gnubg\") can\n" "be used for playing, analyzing and teaching the game. It has an advanced\n" @@ -3546,7 +3659,7 @@ msgid "" "also features an attractive, 3D representation of the playing board." msgstr "" -#: gnu/packages/games.scm:1921 +#: gnu/packages/games.scm:1922 msgid "" "GNUbik is a puzzle game in which you must manipulate a cube to make\n" "each of its faces have a uniform color. The game is customizable, allowing\n" @@ -3555,13 +3668,13 @@ msgid "" "scriptable with Guile." msgstr "" -#: gnu/packages/games.scm:1944 +#: gnu/packages/games.scm:1945 msgid "" "GNU Shogi is a program that plays the game Shogi (Japanese\n" "Chess). It is similar to standard chess but this variant is far more complicated." msgstr "" -#: gnu/packages/games.scm:1974 +#: gnu/packages/games.scm:1975 msgid "" "LTris is a tetris clone: differently shaped blocks are falling down the\n" "rectangular playing field and can be moved sideways or rotated by 90 degree\n" @@ -3575,7 +3688,7 @@ msgid "" "watch your CPU playing while enjoying a cup of tea!" msgstr "" -#: gnu/packages/games.scm:2097 +#: gnu/packages/games.scm:2098 msgid "" "NetHack is a single player dungeon exploration game that runs\n" "on a wide variety of computer systems, with a variety of graphical and text\n" @@ -3589,7 +3702,7 @@ msgid "" "role, and your gender." msgstr "" -#: gnu/packages/games.scm:2141 +#: gnu/packages/games.scm:2142 msgid "" "PipeWalker is a simple puzzle game with many diffent themes: connect all\n" "computers to one network server, bring water from a source to the taps, etc.\n" @@ -3598,17 +3711,17 @@ msgid "" "Every puzzle has a complete solution, although there may be more than one." msgstr "" -#: gnu/packages/games.scm:2190 +#: gnu/packages/games.scm:2191 msgid "PrBoom+ is a Doom source port developed from the original PrBoom project." msgstr "" -#: gnu/packages/games.scm:2240 +#: gnu/packages/games.scm:2241 msgid "" "ReTux is an action platformer loosely inspired by the Mario games,\n" "utilizing the art assets from the @code{SuperTux} project." msgstr "" -#: gnu/packages/games.scm:2350 +#: gnu/packages/games.scm:2351 msgid "" "RogueBox Adventures is a graphical roguelike with strong influences\n" "from sandbox games like Minecraft or Terraria. The main idea of RogueBox\n" @@ -3616,7 +3729,7 @@ msgid "" "can be explored and changed freely." msgstr "" -#: gnu/packages/games.scm:2462 +#: gnu/packages/games.scm:2463 msgid "" "Barbie Seahorse Adventures is a retro style platform arcade game.\n" "You are Barbie the seahorse who travels through the jungle, up to the\n" @@ -3626,27 +3739,27 @@ msgid "" "and defeat them with your bubbles!" msgstr "" -#: gnu/packages/games.scm:2522 +#: gnu/packages/games.scm:2523 msgid "" "Solarus is a 2D game engine written in C++, that can run games\n" "scripted in Lua. It has been designed with 16-bit classic Action-RPGs\n" "in mind." msgstr "" -#: gnu/packages/games.scm:2551 +#: gnu/packages/games.scm:2552 msgid "" "Solarus Quest Editor is a graphical user interface to create and\n" "modify quests for the Solarus engine." msgstr "" -#: gnu/packages/games.scm:2627 +#: gnu/packages/games.scm:2628 msgid "" "In SuperStarfighter, up to four local players compete in a\n" "2D arena with fast-moving ships and missiles. Different game types are\n" "available, as well as a single-player mode with AI-controlled ships." msgstr "" -#: gnu/packages/games.scm:2760 +#: gnu/packages/games.scm:2761 msgid "" "Trigger-rally is a 3D rally simulation with great physics\n" "for drifting on over 200 maps. Different terrain materials like dirt,\n" @@ -3658,17 +3771,17 @@ msgid "" "equipped with spoken co-driver notes and co-driver icons." msgstr "" -#: gnu/packages/games.scm:2816 +#: gnu/packages/games.scm:2817 msgid "" "This package provides @command{ufo2map}, a program used to generate\n" "maps for the UFO: Alien Invasion strategy game." msgstr "" -#: gnu/packages/games.scm:2858 +#: gnu/packages/games.scm:2859 msgid "This package contains maps and other assets for UFO: Alien Invasion." msgstr "" -#: gnu/packages/games.scm:2945 +#: gnu/packages/games.scm:2946 msgid "" "UFO: Alien Invasion is a tactical strategy game set in the year 2084.\n" "You control a secret organisation charged with defending Earth from a brutal\n" @@ -3686,11 +3799,11 @@ msgid "" "properly." msgstr "" -#: gnu/packages/games.scm:2982 +#: gnu/packages/games.scm:2983 msgid "A graphical user interface for the package @code{gnushogi}." msgstr "" -#: gnu/packages/games.scm:3035 +#: gnu/packages/games.scm:3036 msgid "" "L'Abbaye des Morts is a 2D platform game set in 13th century\n" "France. The Cathars, who preach about good Christian beliefs, were being\n" @@ -3699,14 +3812,14 @@ msgid "" "that beneath its ruins lay buried an ancient evil." msgstr "" -#: gnu/packages/games.scm:3081 +#: gnu/packages/games.scm:3082 msgid "" "Angband is a Classic dungeon exploration roguelike. Explore\n" "the depths below Angband, seeking riches, fighting monsters, and preparing to\n" "fight Morgoth, the Lord of Darkness." msgstr "" -#: gnu/packages/games.scm:3129 +#: gnu/packages/games.scm:3130 msgid "" "Pingus is a free Lemmings-like puzzle game in which the player takes\n" "command of a bunch of small animals and has to guide them through levels.\n" @@ -3716,21 +3829,21 @@ msgid "" "level's exit. The game is presented in a 2D side view." msgstr "" -#: gnu/packages/games.scm:3152 +#: gnu/packages/games.scm:3153 msgid "" "The GNU Talk Filters are programs that convert English text\n" "into stereotyped or otherwise humorous dialects. The filters are provided as\n" "a C library, so they can easily be integrated into other programs." msgstr "" -#: gnu/packages/games.scm:3196 +#: gnu/packages/games.scm:3197 msgid "" "The player controls a character (one of three: Good, Bad, and Dead),\n" "dodges the missiles (lots of it cover the screen, but the character's hitbox\n" "is very small), and shoot at the adversaries that keep appear on the screen." msgstr "" -#: gnu/packages/games.scm:3239 +#: gnu/packages/games.scm:3240 msgid "" "CMatrix simulates the display from \"The Matrix\" and is\n" "based on the screensaver from the movie's website. It works with terminal\n" @@ -3738,14 +3851,14 @@ msgid "" "asynchronously and at a user-defined speed." msgstr "" -#: gnu/packages/games.scm:3270 +#: gnu/packages/games.scm:3271 msgid "" "GNU Chess is a chess engine. It allows you to compete\n" "against the computer in a game of chess, either through the default terminal\n" "interface or via an external visual interface such as GNU XBoard." msgstr "" -#: gnu/packages/games.scm:3332 +#: gnu/packages/games.scm:3333 msgid "" "GNU FreeDink is a free and portable re-implementation of the engine\n" "for the role-playing game Dink Smallwood. It supports not only the original\n" @@ -3753,17 +3866,17 @@ msgid "" "To that extent, it also includes a front-end for managing all of your D-Mods." msgstr "" -#: gnu/packages/games.scm:3360 +#: gnu/packages/games.scm:3361 msgid "This package contains the game data of GNU Freedink." msgstr "" -#: gnu/packages/games.scm:3383 +#: gnu/packages/games.scm:3384 msgid "" "DFArc makes it easy to play and manage the GNU FreeDink game\n" "and its numerous D-Mods." msgstr "" -#: gnu/packages/games.scm:3453 +#: gnu/packages/games.scm:3454 msgid "" "GNU XBoard is a graphical board for all varieties of chess,\n" "including international chess, xiangqi (Chinese chess), shogi (Japanese chess)\n" @@ -3772,7 +3885,7 @@ msgid "" "Portable Game Notation." msgstr "" -#: gnu/packages/games.scm:3488 +#: gnu/packages/games.scm:3489 msgid "" "GNU Typist is a universal typing tutor. It can be used to learn and\n" "practice touch-typing. Several tutorials are included; in addition to\n" @@ -3781,7 +3894,7 @@ msgid "" "are primarily in English, however some in other languages are provided." msgstr "" -#: gnu/packages/games.scm:3560 +#: gnu/packages/games.scm:3561 msgid "" "The Irrlicht Engine is a high performance realtime 3D engine written in\n" "C++. Features include an OpenGL renderer, extensible materials, scene graph\n" @@ -3789,7 +3902,7 @@ msgid "" "for common mesh file formats, and collision detection." msgstr "" -#: gnu/packages/games.scm:3611 +#: gnu/packages/games.scm:3612 msgid "" "M.A.R.S. is a 2D space shooter with pretty visual effects and\n" "attractive physics. Players can battle each other or computer controlled\n" @@ -3797,7 +3910,7 @@ msgid "" "match, cannon keep, and grave-itation pit." msgstr "" -#: gnu/packages/games.scm:3650 +#: gnu/packages/games.scm:3651 msgid "" "Glk defines a portable API for applications with text UIs. It was\n" "primarily designed for interactive fiction, but it should be suitable for many\n" @@ -3806,7 +3919,7 @@ msgid "" "using the @code{curses.h} library for screen control." msgstr "" -#: gnu/packages/games.scm:3690 +#: gnu/packages/games.scm:3691 msgid "" "Glulx is a 32-bit portable virtual machine intended for writing and\n" "playing interactive fiction. It was designed by Andrew Plotkin to relieve\n" @@ -3814,28 +3927,28 @@ msgid "" "reference interpreter, using the Glk API." msgstr "" -#: gnu/packages/games.scm:3716 +#: gnu/packages/games.scm:3717 msgid "" "Fifechan is a lightweight cross platform GUI library written in C++\n" "specifically designed for games. It has a built in set of extendable GUI\n" "Widgets, and allows users to create more." msgstr "" -#: gnu/packages/games.scm:3791 +#: gnu/packages/games.scm:3792 msgid "" "@acronym{FIFE, Flexible Isometric Free Engine} is a multi-platform\n" "isometric game engine. Python bindings are included allowing users to create\n" "games using Python as well as C++." msgstr "" -#: gnu/packages/games.scm:3826 +#: gnu/packages/games.scm:3827 msgid "" "Fizmo is a console-based Z-machine interpreter. It is used to play\n" "interactive fiction, also known as text adventures, which were implemented\n" "either by Infocom or created using the Inform compiler." msgstr "" -#: gnu/packages/games.scm:3849 +#: gnu/packages/games.scm:3850 msgid "" "GNU Go is a program that plays the game of Go, in which players\n" "place stones on a grid to form territory or capture other stones. While\n" @@ -3846,7 +3959,7 @@ msgid "" "Protocol)." msgstr "" -#: gnu/packages/games.scm:3878 +#: gnu/packages/games.scm:3879 msgid "" "Extreme Tux Racer, or etracer as it is called for short, is\n" "a simple OpenGL racing game featuring Tux, the Linux mascot. The goal of the\n" @@ -3859,7 +3972,7 @@ msgid "" "This game is based on the GPL version of the famous game TuxRacer." msgstr "" -#: gnu/packages/games.scm:3952 +#: gnu/packages/games.scm:3953 msgid "" "SuperTuxKart is a 3D kart racing game, with a focus on\n" "having fun over realism. You can play with up to 4 friends on one PC, racing\n" @@ -3867,7 +3980,7 @@ msgid "" "also available." msgstr "" -#: gnu/packages/games.scm:4028 +#: gnu/packages/games.scm:4029 msgid "" "Unknown Horizons is a 2D realtime strategy simulation with an emphasis\n" "on economy and city building. Expand your small settlement to a strong and\n" @@ -3876,7 +3989,7 @@ msgid "" "trade and diplomacy." msgstr "" -#: gnu/packages/games.scm:4081 +#: gnu/packages/games.scm:4082 msgid "" "GNUjump is a simple, yet addictive game in which you must jump from\n" "platform to platform to avoid falling, while the platforms drop at faster rates\n" @@ -3884,7 +3997,7 @@ msgid "" "falling, themeable graphics and sounds, and replays." msgstr "" -#: gnu/packages/games.scm:4117 +#: gnu/packages/games.scm:4118 msgid "" "The Battle for Wesnoth is a fantasy, turn based tactical strategy game,\n" "with several single player campaigns, and multiplayer games (both networked and\n" @@ -3896,20 +4009,20 @@ msgid "" "next campaign." msgstr "" -#: gnu/packages/games.scm:4137 +#: gnu/packages/games.scm:4138 msgid "" "This package contains a dedicated server for @emph{The\n" "Battle for Wesnoth}." msgstr "" -#: gnu/packages/games.scm:4179 +#: gnu/packages/games.scm:4180 msgid "" "Gamine is a game designed for young children who are learning to use the\n" "mouse and keyboard. The child uses the mouse to draw colored dots and lines\n" "on the screen and keyboard to display letters." msgstr "" -#: gnu/packages/games.scm:4211 +#: gnu/packages/games.scm:4212 msgid "" "ManaPlus is a 2D MMORPG client for game servers. It is the only\n" "fully supported client for @uref{http://www.themanaworld.org, The mana\n" @@ -3917,7 +4030,7 @@ msgid "" "@uref{http://landoffire.org, Land of fire}." msgstr "" -#: gnu/packages/games.scm:4243 +#: gnu/packages/games.scm:4244 msgid "" "OpenTTD is a game in which you transport goods and\n" "passengers by land, water and air. It is a re-implementation of Transport\n" @@ -3927,7 +4040,7 @@ msgid "" "engine. When you start it you will be prompted to download a graphics set." msgstr "" -#: gnu/packages/games.scm:4303 +#: gnu/packages/games.scm:4304 msgid "" "The OpenGFX project is an implementation of the OpenTTD base graphics\n" "set that aims to ensure the best possible out-of-the-box experience.\n" @@ -3942,29 +4055,29 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:4361 +#: gnu/packages/games.scm:4362 msgid "" "OpenSFX is a set of free base sounds for OpenTTD which make\n" "it possible to play OpenTTD without requiring the proprietary sound files from\n" "the original Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4404 +#: gnu/packages/games.scm:4405 msgid "" "OpenMSX is a music set for OpenTTD which makes it possible\n" "to play OpenTTD without requiring the proprietary music from the original\n" "Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4473 +#: gnu/packages/games.scm:4474 msgid "openrct2-title-sequences is a set of title sequences for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4513 +#: gnu/packages/games.scm:4514 msgid "openrct2-objects is a set of objects for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4576 +#: gnu/packages/games.scm:4577 msgid "" "OpenRCT2 is a free software re-implementation of\n" "RollerCoaster Tycoon 2 (RCT2). The gameplay revolves around building and\n" @@ -3974,27 +4087,27 @@ msgid "" "images, etc.)" msgstr "" -#: gnu/packages/games.scm:4630 +#: gnu/packages/games.scm:4631 msgid "" "The Emilia Pinball Project is a pinball simulator. There\n" "are only two levels to play with, but they are very addictive." msgstr "" -#: gnu/packages/games.scm:4659 +#: gnu/packages/games.scm:4660 msgid "" "Pioneers is an emulation of the board game The Settlers of\n" "Catan. It can be played on a local network, on the internet, and with AI\n" "players." msgstr "" -#: gnu/packages/games.scm:4701 +#: gnu/packages/games.scm:4702 msgid "" "The goal of this logic game is to open all cards in a 6x6\n" "grid, using a number of hints as to their relative position. The game idea\n" "is attributed to Albert Einstein." msgstr "" -#: gnu/packages/games.scm:4731 +#: gnu/packages/games.scm:4732 msgid "" "POWWOW is a client software which can be used for telnet as well as for\n" "@dfn{Multi-User Dungeon} (MUD). Additionally it can serve as a nice client for\n" @@ -4002,21 +4115,21 @@ msgid "" "http://lavachat.symlynx.com/unix/" msgstr "" -#: gnu/packages/games.scm:4838 +#: gnu/packages/games.scm:4839 msgid "" "Red Eclipse is an arena shooter, created from the Cube2 engine.\n" "Offering an innovative parkour system and distinct but all potent weapons,\n" "Red Eclipse provides fast paced and accessible gameplay." msgstr "" -#: gnu/packages/games.scm:4903 +#: gnu/packages/games.scm:4904 msgid "" "Grue Hunter is a text adventure game written in Perl. You must make\n" "your way through an underground cave system in search of the Grue. Can you\n" "capture it and get out alive?" msgstr "" -#: gnu/packages/games.scm:4942 +#: gnu/packages/games.scm:4943 msgid "" "lierolibre is an earthworm action game where you fight another player\n" "(or the computer) underground using a wide array of weapons.\n" @@ -4041,14 +4154,14 @@ msgid "" "fullscreen, use F5 or Alt+Enter." msgstr "" -#: gnu/packages/games.scm:5021 +#: gnu/packages/games.scm:5022 msgid "" "Tennix is a 2D tennis game. You can play against the\n" "computer or against another player using the keyboard. The game runs\n" "in-window at 640x480 resolution or fullscreen." msgstr "" -#: gnu/packages/games.scm:5105 +#: gnu/packages/games.scm:5106 msgid "" "Warzone 2100 offers campaign, multi-player, and single-player skirmish\n" "modes. An extensive tech tree with over 400 different technologies, combined\n" @@ -4056,7 +4169,7 @@ msgid "" "tactics." msgstr "" -#: gnu/packages/games.scm:5184 +#: gnu/packages/games.scm:5185 msgid "" "In Widelands, you are the regent of a small clan. You start out with\n" "nothing but your headquarters, where all your resources are stored.\n" @@ -4078,7 +4191,7 @@ msgid "" "of war. Widelands also offers an Artificial Intelligence to challenge you." msgstr "" -#: gnu/packages/games.scm:5236 +#: gnu/packages/games.scm:5237 msgid "" "In the year 2579, the intergalactic weapons corporation, WEAPCO, has\n" "dominated the galaxy. Guide Chris Bainfield and his friend Sid Wilson on\n" @@ -4087,7 +4200,7 @@ msgid "" "in strikes against the evil corporation." msgstr "" -#: gnu/packages/games.scm:5267 +#: gnu/packages/games.scm:5268 msgid "" "In this game you are the captain of the cargo ship Chromium B.S.U. and\n" "are responsible for delivering supplies to the troops on the front line. Your\n" @@ -4095,7 +4208,7 @@ msgid "" "safety of the Chromium vessel." msgstr "" -#: gnu/packages/games.scm:5350 +#: gnu/packages/games.scm:5351 msgid "" "Tux Paint is a free drawing program designed for young children (kids\n" "ages 3 and up). It has a simple, easy-to-use interface; fun sound effects;\n" @@ -4104,23 +4217,23 @@ msgid "" "your child be creative." msgstr "" -#: gnu/packages/games.scm:5390 +#: gnu/packages/games.scm:5391 msgid "" "This package contains a set of \"Rubber Stamp\" images which can be used\n" "with the \"Stamp\" tool within Tux Paint." msgstr "" -#: gnu/packages/games.scm:5439 +#: gnu/packages/games.scm:5440 msgid "Tux Paint Config is a graphical configuration editor for Tux Paint." msgstr "" -#: gnu/packages/games.scm:5491 +#: gnu/packages/games.scm:5492 msgid "" "SuperTux is a classic 2D jump'n run sidescroller game in\n" "a style similar to the original Super Mario games." msgstr "" -#: gnu/packages/games.scm:5523 +#: gnu/packages/games.scm:5524 msgid "" "TinTin++ is a MUD client which supports MCCP (Mud Client Compression\n" "Protocol), MMCP (Mud Master Chat Protocol), xterm 256 colors, most TELNET\n" @@ -4128,7 +4241,7 @@ msgid "" "Linux / Mac OS X servers, and an auto mapper with a VT100 map display." msgstr "" -#: gnu/packages/games.scm:5563 +#: gnu/packages/games.scm:5564 msgid "" "Learn programming, playing with ants and spider webs ;-)\n" "Your robot ant can be programmed in many languages: OCaml, Python, C, C++,\n" @@ -4136,14 +4249,14 @@ msgid "" "programmers may also add their own favorite language." msgstr "" -#: gnu/packages/games.scm:5602 +#: gnu/packages/games.scm:5603 msgid "" "Bambam is a simple baby keyboard (and gamepad) masher\n" "application that locks the keyboard and mouse and instead displays bright\n" "colors, pictures, and sounds." msgstr "" -#: gnu/packages/games.scm:5663 +#: gnu/packages/games.scm:5664 msgid "" "Mr. Rescue is an arcade styled 2d action game centered around evacuating\n" "civilians from burning buildings. The game features fast-paced fire\n" @@ -4151,7 +4264,7 @@ msgid "" "throwing people around in pseudo-randomly generated buildings." msgstr "" -#: gnu/packages/games.scm:5770 +#: gnu/packages/games.scm:5771 msgid "" "HyperRogue is a game in which the player collects treasures and fights\n" "monsters -- rogue-like but for the fact that it is played on the hyperbolic\n" @@ -4165,13 +4278,13 @@ msgid "" "symbols, it still needs graphics to render the non-euclidean world." msgstr "" -#: gnu/packages/games.scm:5817 +#: gnu/packages/games.scm:5818 msgid "" "Kobo Deluxe is an enhanced version of Akira Higuchi's XKobo graphical game\n" "for Un*x systems with X11." msgstr "" -#: gnu/packages/games.scm:5845 +#: gnu/packages/games.scm:5846 msgid "" "Freeciv is a turn-based empire building strategy game\n" "inspired by the history of human civilization. The game commences in\n" @@ -4179,7 +4292,7 @@ msgid "" "into the Space Age." msgstr "" -#: gnu/packages/games.scm:5878 +#: gnu/packages/games.scm:5879 msgid "" "@code{No More Secrets} provides a command line tool called \"nms\"\n" "that recreates the famous data decryption effect seen on screen in the 1992\n" @@ -4190,25 +4303,25 @@ msgid "" "starting a decryption sequence to reveal the original plaintext characters." msgstr "" -#: gnu/packages/games.scm:5906 +#: gnu/packages/games.scm:5907 msgid "This package contains the data files required for MegaGlest." msgstr "" -#: gnu/packages/games.scm:5961 +#: gnu/packages/games.scm:5962 msgid "" "MegaGlest is a cross-platform 3D real-time strategy (RTS)\n" "game, where you control the armies of one of seven different factions: Tech,\n" "Magic, Egypt, Indians, Norsemen, Persian or Romans." msgstr "" -#: gnu/packages/games.scm:6013 +#: gnu/packages/games.scm:6014 msgid "" "In FreeGish you control Gish, a ball of tar who lives\n" "happily with his girlfriend Brea, until one day a mysterious dark creature\n" "emerges from a sewer hole and pulls her below ground." msgstr "" -#: gnu/packages/games.scm:6049 +#: gnu/packages/games.scm:6050 msgid "" "C-Dogs SDL is a classic overhead run-and-gun game,\n" "supporting up to 4 players in co-op and deathmatch modes. Customize your\n" @@ -4216,21 +4329,21 @@ msgid "" "over 100 user-created campaigns." msgstr "" -#: gnu/packages/games.scm:6149 +#: gnu/packages/games.scm:6150 msgid "" "Kiki the nano bot is a 3D puzzle game. It is basically a\n" "mixture of the games Sokoban and Kula-World. Your task is to help Kiki, a\n" "small robot living in the nano world, repair its maker." msgstr "" -#: gnu/packages/games.scm:6225 +#: gnu/packages/games.scm:6226 msgid "" "Teeworlds is an online multiplayer game. Battle with up to\n" "16 players in a variety of game modes, including Team Deathmatch and Capture\n" "The Flag. You can even design your own maps!" msgstr "" -#: gnu/packages/games.scm:6285 +#: gnu/packages/games.scm:6286 msgid "" "Enigma is a puzzle game with 550 unique levels. The object\n" "of the game is to find and uncover pairs of identically colored ‘Oxyd’ stones.\n" @@ -4242,7 +4355,7 @@ msgid "" "with the mouse isn’t always trivial." msgstr "" -#: gnu/packages/games.scm:6319 +#: gnu/packages/games.scm:6320 msgid "" "Chroma is an abstract puzzle game. A variety of colourful\n" "shapes are arranged in a series of increasingly complex patterns, forming\n" @@ -4252,7 +4365,7 @@ msgid "" "becoming difficult enough to tax even the brightest of minds." msgstr "" -#: gnu/packages/games.scm:6384 +#: gnu/packages/games.scm:6385 msgid "" "Fish Fillets NG is strictly a puzzle game. The goal in\n" "every of the seventy levels is always the same: find a safe way out. The fish\n" @@ -4261,14 +4374,14 @@ msgid "" "fish. The whole game is accompanied by quiet, comforting music." msgstr "" -#: gnu/packages/games.scm:6452 +#: gnu/packages/games.scm:6453 msgid "" "Dungeon Crawl Stone Soup (also known as \"Crawl\" or DCSS\n" "for short) is a roguelike adventure through dungeons filled with dangerous\n" "monsters in a quest to find the mystifyingly fabulous Orb of Zot." msgstr "" -#: gnu/packages/games.scm:6529 +#: gnu/packages/games.scm:6530 msgid "" "Lugaru is a third-person action game. The main character,\n" "Turner, is an anthropomorphic rebel bunny rabbit with impressive combat skills.\n" @@ -4278,11 +4391,11 @@ msgid "" "fight against their plot and save his fellow rabbits from slavery." msgstr "" -#: gnu/packages/games.scm:6574 +#: gnu/packages/games.scm:6575 msgid "0ad-data provides the data files required by the game 0ad." msgstr "" -#: gnu/packages/games.scm:6710 +#: gnu/packages/games.scm:6711 msgid "" "0 A.D. is a real-time strategy (RTS) game of ancient\n" "warfare. It's a historically-based war/economy game that allows players to\n" @@ -4292,7 +4405,7 @@ msgid "" "0ad needs a window manager that supports 'Extended Window Manager Hints'." msgstr "" -#: gnu/packages/games.scm:6776 +#: gnu/packages/games.scm:6777 msgid "" "The original Colossal Cave Adventure from 1976 was the origin of all\n" "text adventures, dungeon-crawl (computer) games, and computer-hosted\n" @@ -4301,7 +4414,7 @@ msgid "" "``adventure 2.5'' and ``430-point adventure''." msgstr "" -#: gnu/packages/games.scm:6899 +#: gnu/packages/games.scm:6900 msgid "" "Tales of Maj’Eyal (ToME) RPG, featuring tactical turn-based\n" "combat and advanced character building. Play as one of many unique races and\n" @@ -4312,21 +4425,21 @@ msgid "" "Tales of Maj’Eyal offers engaging roguelike gameplay for the 21st century." msgstr "" -#: gnu/packages/games.scm:6945 +#: gnu/packages/games.scm:6946 msgid "" "Quakespasm is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7002 +#: gnu/packages/games.scm:7003 msgid "" "vkquake is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7067 +#: gnu/packages/games.scm:7068 msgid "" "Yamagi Quake II is an enhanced client for id Software's Quake II.\n" "The main focus is an unchanged single player experience like back in 1997,\n" @@ -4336,18 +4449,18 @@ msgid "" "making Yamagi Quake II one of the most solid Quake II implementations available." msgstr "" -#: gnu/packages/games.scm:7100 +#: gnu/packages/games.scm:7101 msgid "Nudoku is a ncurses-based Sudoku game for your terminal." msgstr "" -#: gnu/packages/games.scm:7146 +#: gnu/packages/games.scm:7147 msgid "" "The Butterfly Effect (tbe) is a game that uses\n" "realistic physics simulations to combine lots of simple mechanical\n" "elements to achieve a simple goal in the most complex way possible." msgstr "" -#: gnu/packages/games.scm:7192 +#: gnu/packages/games.scm:7193 msgid "" "Pioneer is a space adventure game set in our galaxy at the turn of the\n" "31st century. The game is open-ended, and you are free to eke out whatever\n" @@ -4358,14 +4471,14 @@ msgid "" "whatever you make of it." msgstr "" -#: gnu/packages/games.scm:7221 +#: gnu/packages/games.scm:7222 msgid "" "Badass generates false commits for a range of dates, essentially\n" "hacking the gamification of contribution graphs on platforms such as\n" "Github or Gitlab." msgstr "" -#: gnu/packages/games.scm:7294 +#: gnu/packages/games.scm:7295 msgid "" "Colobot: Gold Edition is a real-time strategy game, where\n" "you can program your units (bots) in a language called CBOT, which is similar\n" @@ -4373,7 +4486,7 @@ msgid "" "You can save humanity and get programming skills!" msgstr "" -#: gnu/packages/games.scm:7386 +#: gnu/packages/games.scm:7387 msgid "" "GZdoom is a port of the Doom 2 game engine, with a modern\n" "renderer. It improves modding support with ZDoom's advanced mapping features\n" @@ -4381,14 +4494,14 @@ msgid "" "Strife, Chex Quest, and fan-created games like Harmony, Hacx and Freedoom." msgstr "" -#: gnu/packages/games.scm:7425 +#: gnu/packages/games.scm:7426 msgid "" "Odamex is a modification of the Doom engine that\n" "allows players to easily join servers dedicated to playing Doom\n" "online." msgstr "" -#: gnu/packages/games.scm:7453 +#: gnu/packages/games.scm:7454 msgid "" "Chocolate Doom takes a different approach to other source ports. Its\n" "aim is to accurately reproduce the experience of playing Vanilla Doom. It is\n" @@ -4401,7 +4514,7 @@ msgid "" "affect gameplay)." msgstr "" -#: gnu/packages/games.scm:7493 +#: gnu/packages/games.scm:7494 msgid "" "Crispy Doom is a friendly fork of Chocolate Doom that provides a higher\n" "display resolution, removes the static limits of the Doom engine and offers\n" @@ -4410,21 +4523,21 @@ msgid "" "original." msgstr "" -#: gnu/packages/games.scm:7566 +#: gnu/packages/games.scm:7567 msgid "This package provides C11 / gnu11 utilities C library" msgstr "" -#: gnu/packages/games.scm:7635 +#: gnu/packages/games.scm:7636 msgid "" "Fortune is a command-line utility which displays a random\n" "quotation from a collection of quotes." msgstr "" -#: gnu/packages/games.scm:7677 +#: gnu/packages/games.scm:7678 msgid "Xonotic-data provides the data files required by the game Xonotic." msgstr "" -#: gnu/packages/games.scm:7873 +#: gnu/packages/games.scm:7874 msgid "" "Xonotic is a free, fast-paced first-person shooter.\n" "The project is geared towards providing addictive arena shooter\n" @@ -4434,7 +4547,7 @@ msgid "" "open-source FPS of its kind." msgstr "" -#: gnu/packages/games.scm:7920 +#: gnu/packages/games.scm:7921 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4443,7 +4556,7 @@ msgid "" "ncurses for text display." msgstr "" -#: gnu/packages/games.scm:7964 +#: gnu/packages/games.scm:7966 msgid "" "Naev is a 2d action/rpg space game that combines elements from\n" "the action, RPG and simulation genres. You pilot a spaceship from\n" @@ -4455,7 +4568,7 @@ msgid "" "of lore accompanying everything from planets to equipment." msgstr "" -#: gnu/packages/games.scm:8013 +#: gnu/packages/games.scm:8015 msgid "" "Frotz is an interpreter for Infocom games and\n" "other Z-machine games in the text adventure/interactive fiction genre.\n" @@ -4467,7 +4580,7 @@ msgid "" "to play games on webpages. It can also be made into a chat bot." msgstr "" -#: gnu/packages/games.scm:8075 +#: gnu/packages/games.scm:8077 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4477,7 +4590,7 @@ msgid "" "when packaged in Blorb container files or optionally from individual files." msgstr "" -#: gnu/packages/games.scm:8166 +#: gnu/packages/games.scm:8168 msgid "" "Frozen-Bubble is a clone of the popular Puzzle Bobble game, in which\n" "you attempt to shoot bubbles into groups of the same color to cause them to\n" @@ -4492,7 +4605,7 @@ msgid "" "their own levels." msgstr "" -#: gnu/packages/games.scm:8199 +#: gnu/packages/games.scm:8201 msgid "" "Libmanette is a small GObject library giving you simple\n" "access to game controllers. It supports the de-facto standard gamepads as\n" @@ -4500,7 +4613,7 @@ msgid "" "GameController." msgstr "" -#: gnu/packages/games.scm:8245 +#: gnu/packages/games.scm:8247 msgid "" "Quadrapassel comes from the classic falling-block game,\n" "Tetris. The goal of the game is to create complete horizontal lines of\n" @@ -4512,7 +4625,7 @@ msgid "" "your score gets higher, you level up and the blocks fall faster." msgstr "" -#: gnu/packages/games.scm:8294 +#: gnu/packages/games.scm:8296 msgid "" "Endless Sky is a 2D space trading and combat game. Explore\n" "other star systems. Earn money by trading, carrying passengers, or completing\n" @@ -4522,7 +4635,7 @@ msgid "" "civilized than your own." msgstr "" -#: gnu/packages/games.scm:8443 +#: gnu/packages/games.scm:8445 msgid "" "StepMania is a dance and rhythm game. It features 3D\n" "graphics, keyboard and dance pad support, and an editor for creating your own\n" @@ -4532,7 +4645,7 @@ msgid "" "to download and install them in @file{$HOME/.stepmania-X.Y/Songs} directory." msgstr "" -#: gnu/packages/games.scm:8479 +#: gnu/packages/games.scm:8481 msgid "" "@i{oshu!} is a minimalist variant of the @i{osu!} rhythm game,\n" "which is played by pressing buttons and following along sliders as they appear\n" @@ -4542,7 +4655,7 @@ msgid "" "download and unpack them separately." msgstr "" -#: gnu/packages/games.scm:8562 +#: gnu/packages/games.scm:8564 msgid "" "Battle Tanks (also known as \"btanks\") is a funny battle\n" "game, where you can choose one of three vehicles and eliminate your enemy\n" @@ -4551,7 +4664,7 @@ msgid "" "and cooperative." msgstr "" -#: gnu/packages/games.scm:8596 +#: gnu/packages/games.scm:8598 msgid "" "Slime Volley is a 2D arcade-oriented volleyball simulation, in\n" "the spirit of some Java games of the same name.\n" @@ -4562,7 +4675,7 @@ msgid "" "the ground, the set ends and all balls are served again." msgstr "" -#: gnu/packages/games.scm:8626 +#: gnu/packages/games.scm:8628 msgid "" "Slingshot is a two-dimensional strategy game where two\n" "players attempt to shoot one another through a section of space populated by\n" @@ -4570,14 +4683,14 @@ msgid "" "affected by the gravity of the planets." msgstr "" -#: gnu/packages/games.scm:8674 +#: gnu/packages/games.scm:8676 msgid "" "4D-TRIS is an alteration of the well-known Tetris game. The\n" "game field is extended to 4D space, which has to filled up by the gamer with\n" "4D hyper cubes." msgstr "" -#: gnu/packages/games.scm:8751 +#: gnu/packages/games.scm:8753 msgid "" "Arx Libertatis is a cross-platform port of Arx Fatalis, a 2002\n" "first-person role-playing game / dungeon crawler developed by Arkane Studios.\n" @@ -4587,7 +4700,7 @@ msgid "" "where the player draws runes in real time to effect the desired spell." msgstr "" -#: gnu/packages/games.scm:8797 +#: gnu/packages/games.scm:8799 msgid "" "The Legend of Edgar is a 2D platform game with a persistent world.\n" "When Edgar's father fails to return home after venturing out one dark and stormy night,\n" @@ -4595,7 +4708,7 @@ msgid "" "a fortress beyond the forbidden swamp." msgstr "" -#: gnu/packages/games.scm:8899 +#: gnu/packages/games.scm:8901 msgid "" "OpenClonk is a multiplayer action/tactics/skill game. It is\n" "often referred to as a mixture of The Settlers and Worms. In a simple 2D\n" @@ -4605,20 +4718,20 @@ msgid "" "fight each other on an arena-like map." msgstr "" -#: gnu/packages/games.scm:8931 +#: gnu/packages/games.scm:8933 msgid "" "Flare (Free Libre Action Roleplaying Engine) is a simple\n" "game engine built to handle a very specific kind of game: single-player 2D\n" "action RPGs." msgstr "" -#: gnu/packages/games.scm:8994 +#: gnu/packages/games.scm:8996 msgid "" "Flare is a single-player 2D action RPG with\n" "fast-paced action and a dark fantasy style." msgstr "" -#: gnu/packages/games.scm:9046 +#: gnu/packages/games.scm:9048 msgid "" "Far below the surface of the planet is a place of limitless\n" "power. Those that seek to control such a utopia will soon bring an end to\n" @@ -4632,7 +4745,7 @@ msgid "" "Orcus Dome from evil." msgstr "" -#: gnu/packages/games.scm:9108 +#: gnu/packages/games.scm:9110 msgid "" "Marble Marcher is a video game that uses a fractal physics\n" "engine and fully procedural rendering to produce beautiful and unique\n" @@ -4642,7 +4755,7 @@ msgid "" "levels to unlock." msgstr "" -#: gnu/packages/games.scm:9159 +#: gnu/packages/games.scm:9161 msgid "" "SimGear is a set of libraries designed to be used as\n" "building blocks for quickly assembling 3D simulations, games, and\n" @@ -4650,7 +4763,7 @@ msgid "" "and also provides the base for the FlightGear Flight Simulator." msgstr "" -#: gnu/packages/games.scm:9253 +#: gnu/packages/games.scm:9255 msgid "" "The goal of the FlightGear project is to create a\n" "sophisticated flight simulator framework for use in research or academic\n" @@ -4660,14 +4773,14 @@ msgid "" "simulator." msgstr "" -#: gnu/packages/games.scm:9306 +#: gnu/packages/games.scm:9308 msgid "" "You, as a bunny, have to jump on your opponents to make them\n" "explode. It is a true multiplayer game; you cannot play this alone. You can\n" "play with up to four players simultaneously. It has network support." msgstr "" -#: gnu/packages/games.scm:9373 +#: gnu/packages/games.scm:9375 msgid "" "Hedgewars is a turn based strategy, artillery, action and comedy game,\n" "featuring the antics of pink hedgehogs with attitude as they battle from the\n" @@ -4677,7 +4790,7 @@ msgid "" "and bring the war to your enemy." msgstr "" -#: gnu/packages/games.scm:9407 +#: gnu/packages/games.scm:9409 msgid "" "The gruid module provides packages for easily building\n" "grid-based applications in Go. The library abstracts rendering and input for\n" @@ -4687,13 +4800,13 @@ msgid "" "application." msgstr "" -#: gnu/packages/games.scm:9437 +#: gnu/packages/games.scm:9439 msgid "" "The gruid-tcell module provides a Gruid driver for building\n" "terminal full-window applications." msgstr "" -#: gnu/packages/games.scm:9464 +#: gnu/packages/games.scm:9466 msgid "" "Harmonist: Dayoriah Clan Infiltration is a stealth\n" "coffee-break roguelike game. The game has a heavy focus on tactical\n" @@ -4703,7 +4816,7 @@ msgid "" "on items and player adaptability for character progression." msgstr "" -#: gnu/packages/games.scm:9573 +#: gnu/packages/games.scm:9575 msgid "" "Drascula: The Vampire Strikes Back is a classic humorous 2D\n" "point and click adventure game.\n" @@ -4715,7 +4828,7 @@ msgid "" "the World and demonstrating that he is even more evil than his brother Vlad." msgstr "" -#: gnu/packages/games.scm:9653 +#: gnu/packages/games.scm:9655 msgid "" "Lure of the Temptress is a classic 2D point and click adventure game.\n" "\n" @@ -4734,7 +4847,7 @@ msgid "" "Skorl. Maybe it would be an idea to try and escape..." msgstr "" -#: gnu/packages/games.scm:9752 +#: gnu/packages/games.scm:9754 msgid "" "Flight of the Amazon Queen is a 2D point-and-click\n" "adventure game set in the 1940s.\n" @@ -4751,7 +4864,7 @@ msgid "" "women and 6-foot-tall pygmies." msgstr "" -#: gnu/packages/games.scm:9852 +#: gnu/packages/games.scm:9854 msgid "" "Beneath a Steel Sky is a science-fiction thriller set in a bleak\n" "post-apocalyptic vision of the future. It revolves around Union City,\n" @@ -4774,7 +4887,7 @@ msgid "" "and to seek vengeance for the killing of his tribe." msgstr "" -#: gnu/packages/games.scm:9911 +#: gnu/packages/games.scm:9913 msgid "" "GNU Robots is a game in which you program a robot to explore a world\n" "full of enemies that can hurt it, obstacles and food to be eaten. The goal of\n" @@ -4782,14 +4895,14 @@ msgid "" "may be written in a plain text file in the Scheme programming language." msgstr "" -#: gnu/packages/games.scm:9981 +#: gnu/packages/games.scm:9983 msgid "" "Ri-li is a game in which you drive a wooden toy\n" "steam locomotive across many levels and collect all the coaches to\n" "win." msgstr "" -#: gnu/packages/games.scm:10037 +#: gnu/packages/games.scm:10039 msgid "" "FreeOrion is a turn-based space empire and galactic conquest (4X)\n" "computer game being designed and built by the FreeOrion project. Control an\n" @@ -4799,14 +4912,14 @@ msgid "" "remake of that series or any other game." msgstr "" -#: gnu/packages/games.scm:10093 +#: gnu/packages/games.scm:10095 msgid "" "Leela-zero is a Go engine with no human-provided knowledge, modeled after\n" "the AlphaGo Zero paper. The current best network weights file for the engine\n" "can be downloaded from @url{https://zero.sjeng.org/best-network}." msgstr "" -#: gnu/packages/games.scm:10171 +#: gnu/packages/games.scm:10173 msgid "" "This a tool for Go players which performs the following functions:\n" "@itemize\n" @@ -4818,7 +4931,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:10214 +#: gnu/packages/games.scm:10216 msgid "" "KTuberling is a drawing toy intended for small children and\n" "adults who remain young at heart. The game has no winner; the only purpose is\n" @@ -4837,7 +4950,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10260 +#: gnu/packages/games.scm:10262 msgid "" "Picmi is a number logic game in which cells in a grid have\n" "to be colored or left blank according to numbers given at the side of the\n" @@ -4846,7 +4959,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10297 +#: gnu/packages/games.scm:10299 msgid "" "Kolf is a miniature golf game for one to ten players. The\n" "game is played from an overhead view, with a short bar representing the golf\n" @@ -4865,13 +4978,13 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10341 +#: gnu/packages/games.scm:10343 msgid "" "Shared library and common files for kmahjongg, kshisen and\n" "other Mah Jongg like games." msgstr "" -#: gnu/packages/games.scm:10374 +#: gnu/packages/games.scm:10376 msgid "" "In KMahjongg the tiles are scrambled and staked on top of\n" "each other to resemble a certain shape. The player is then expected to remove\n" @@ -4883,7 +4996,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10416 +#: gnu/packages/games.scm:10418 msgid "" "KShisen is a solitaire-like game played using the standard\n" "set of Mahjong tiles. Unlike Mahjong however, KShisen has only one layer of\n" @@ -4892,7 +5005,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10471 +#: gnu/packages/games.scm:10473 msgid "" "Kajongg is the ancient Chinese board game for 4 players.\n" "\n" @@ -4907,7 +5020,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10513 +#: gnu/packages/games.scm:10515 msgid "" "KBreakout is similar to the classics breakout and xboing,\n" "featuring a number of added graphical enhancements and effects. You control a\n" @@ -4917,7 +5030,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10551 +#: gnu/packages/games.scm:10553 msgid "" "KMines is a classic Minesweeper game. The idea is to\n" "uncover all the squares without blowing up any mines. When a mine is blown\n" @@ -4926,7 +5039,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10588 +#: gnu/packages/games.scm:10590 msgid "" "Konquest is the KDE version of Gnu-Lactic Konquest. Players\n" "conquer other planets by sending ships to them. The goal is to build an\n" @@ -4937,7 +5050,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10627 +#: gnu/packages/games.scm:10629 msgid "" "KBounce is a single player arcade game with the elements of\n" "puzzle. It is played on a field, surrounded by wall, with two or more balls\n" @@ -4947,7 +5060,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10665 +#: gnu/packages/games.scm:10667 msgid "" "KBlocks is the classic Tetris-like falling blocks game.\n" "\n" @@ -4959,7 +5072,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10708 +#: gnu/packages/games.scm:10710 msgid "" "KSudoku is a Sudoku game and solver, supporting a range of\n" "2D and 3D Sudoku variants. In addition to playing Sudoku, it can print Sudoku\n" @@ -4988,7 +5101,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10763 +#: gnu/packages/games.scm:10765 msgid "" "KLines is a simple but highly addictive one player game.\n" "\n" @@ -5005,7 +5118,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10806 +#: gnu/packages/games.scm:10808 msgid "" "KGoldrunner is an action game where the hero runs through a\n" "maze, climbs stairs, dig holes and dodges enemies in order to collect all the\n" @@ -5019,7 +5132,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10849 +#: gnu/packages/games.scm:10851 msgid "" "KDiamond is a three-in-a-row game like Bejeweled. It\n" "features unlimited fun with randomly generated games and five difficulty\n" @@ -5028,7 +5141,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10885 +#: gnu/packages/games.scm:10887 msgid "" "KFourInLine is a board game for two players based on the\n" "Connect-Four game.\n" @@ -5039,7 +5152,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10924 +#: gnu/packages/games.scm:10926 msgid "" "KBlackbox is a game of hide and seek played on a grid of\n" "boxes where the computer has hidden several balls. The position of the hidden\n" @@ -5051,7 +5164,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10964 +#: gnu/packages/games.scm:10966 msgid "" "KNetWalk is a small game where you have to build up a\n" "computer network by rotating the wires to connect the terminals to the server.\n" @@ -5064,7 +5177,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11002 +#: gnu/packages/games.scm:11004 msgid "" "Bomber is a single player arcade game.\n" "\n" @@ -5080,7 +5193,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11047 +#: gnu/packages/games.scm:11049 msgid "" "Granatier is a clone of the classic Bomberman game,\n" "inspired by the work of the Clanbomber clone.\n" @@ -5088,7 +5201,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11085 +#: gnu/packages/games.scm:11087 msgid "" "KsirK is a multi-player network-enabled game. The goal of\n" "the game is simply to conquer the world by attacking your neighbors with your\n" @@ -5113,7 +5226,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11145 +#: gnu/packages/games.scm:11147 msgid "" "Palapeli is a jigsaw puzzle game. Unlike other games in\n" "that genre, you are not limited to aligning pieces on imaginary grids. The\n" @@ -5125,7 +5238,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11184 +#: gnu/packages/games.scm:11186 msgid "" "Kiriki is an addictive and fun dice game, designed to be\n" "played by as many as six players.\n" @@ -5136,7 +5249,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11224 +#: gnu/packages/games.scm:11226 msgid "" "Kigo is an open-source implementation of the popular Go\n" "game.\n" @@ -5153,7 +5266,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11269 +#: gnu/packages/games.scm:11271 msgid "" "Kubrick is a game based on the Rubik's Cube puzzle.\n" "\n" @@ -5166,7 +5279,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11309 +#: gnu/packages/games.scm:11311 msgid "" "Lieutnant Skat (from German \"Offiziersskat\") is a fun and\n" "engaging card game for two players, where the second player is either live\n" @@ -5177,7 +5290,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11347 +#: gnu/packages/games.scm:11349 msgid "" "Kapman is a clone of the well known game Pac-Man.\n" "\n" @@ -5189,7 +5302,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11386 +#: gnu/packages/games.scm:11388 msgid "" "KSpaceduel is a space battle game for one or two players,\n" "where two ships fly around a star in a struggle to be the only survivor.\n" @@ -5197,7 +5310,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11419 +#: gnu/packages/games.scm:11421 msgid "" "Bovo is a Gomoku (from Japanese 五目並べ - lit. \"five\n" "points\") like game for two players, where the opponents alternate in placing\n" @@ -5208,7 +5321,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11457 +#: gnu/packages/games.scm:11459 msgid "" "Killbots is a simple game of evading killer robots.\n" "\n" @@ -5222,7 +5335,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11499 +#: gnu/packages/games.scm:11501 msgid "" "KSnakeDuel is a fast action game where you steer a snake\n" "which has to eat food. While eating the snake grows. But once a player\n" @@ -5232,7 +5345,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11535 +#: gnu/packages/games.scm:11537 msgid "" "In Kollision you use mouse to control a small blue ball in a\n" "closed space environment filled with small red balls, which move about\n" @@ -5243,7 +5356,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11575 +#: gnu/packages/games.scm:11577 msgid "" "KBattleship is a Battle Ship game for KDE.\n" "\n" @@ -5254,7 +5367,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11615 +#: gnu/packages/games.scm:11617 msgid "" "KReversi is a simple one player strategy game played\n" "against the computer.\n" @@ -5267,7 +5380,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11655 +#: gnu/packages/games.scm:11657 msgid "" "KSquares is an implementation of the popular paper based\n" "game Squares. Two players take turns connecting dots on a grid to complete\n" @@ -5276,7 +5389,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11692 +#: gnu/packages/games.scm:11694 msgid "" "KJumpingcube is a simple tactical game for one or two\n" "players, played on a grid of numbered squares. Each turn, players compete for\n" @@ -5285,7 +5398,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11782 +#: gnu/packages/games.scm:11784 msgid "" "X-Moto is a challenging 2D motocross platform game, where\n" "physics play an all important role in the gameplay. You need to\n" @@ -5293,27 +5406,27 @@ msgid "" "the more difficult challenges." msgstr "" -#: gnu/packages/games.scm:11827 +#: gnu/packages/games.scm:11829 msgid "" "Eboard is a chess board interface for ICS (Internet Chess Servers)\n" "and chess engines." msgstr "" -#: gnu/packages/games.scm:11880 +#: gnu/packages/games.scm:11882 msgid "" "ChessX is a chess database. With ChessX you can operate on your\n" "collection of chess games in many ways: browse, edit, add, organize, analyze,\n" "etc. You can also play games on FICS or against an engine." msgstr "" -#: gnu/packages/games.scm:11935 +#: gnu/packages/games.scm:11937 msgid "" "Stockfish is a very strong chess engine. It is much stronger than the\n" "best human chess grandmasters. It can be used with UCI-compatible GUIs like\n" "ChessX." msgstr "" -#: gnu/packages/games.scm:11964 +#: gnu/packages/games.scm:11966 msgid "" "Barrage is a rather destructive action game that puts you on a shooting\n" "range with the objective to hit as many dummy targets as possible within\n" @@ -5322,7 +5435,7 @@ msgid "" "get high scores." msgstr "" -#: gnu/packages/games.scm:11990 +#: gnu/packages/games.scm:11992 msgid "" "This is a clone of the classic game BurgerTime. In it, you play\n" "the part of a chef who must create burgers by stepping repeatedly on\n" @@ -5332,7 +5445,7 @@ msgid "" "protect you." msgstr "" -#: gnu/packages/games.scm:12018 +#: gnu/packages/games.scm:12020 msgid "" "Seven Kingdoms, designed by Trevor Chan, brings a blend of Real-Time\n" "Strategy with the addition of trade, diplomacy, and espionage. The game\n" @@ -5342,7 +5455,7 @@ msgid "" "kingdom." msgstr "" -#: gnu/packages/games.scm:12134 +#: gnu/packages/games.scm:12136 msgid "" "In the grand tradition of Marble Madness and Super Monkey Ball,\n" "Neverball has you guide a rolling ball through dangerous territory. Balance\n" @@ -5352,13 +5465,13 @@ msgid "" "game." msgstr "" -#: gnu/packages/games.scm:12210 +#: gnu/packages/games.scm:12212 msgid "" "With PokerTH you can play the Texas holdem poker game, either against\n" "computer opponents or against real players online." msgstr "" -#: gnu/packages/games.scm:12281 +#: gnu/packages/games.scm:12283 msgid "" "Xblackjack is a MOTIF/OLIT based tool constructed to get you ready for\n" "the casino. It was inspired by a book called \"Beat the Dealer\" by Edward\n" @@ -5367,13 +5480,13 @@ msgid "" "System\" (high-low system)." msgstr "" -#: gnu/packages/games.scm:12321 +#: gnu/packages/games.scm:12323 msgid "" "Pilot your ship inside a planet to find and rescue the colonists trapped\n" "inside the Zenith Colony." msgstr "" -#: gnu/packages/games.scm:12341 +#: gnu/packages/games.scm:12343 msgid "" "Provides a large set of Go-related services for X11:\n" "@itemize\n" @@ -5384,7 +5497,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:12401 +#: gnu/packages/games.scm:12403 msgid "" "Passage is meant to be a memento mori game. It presents an entire life,\n" "from young adulthood through old age and death, in the span of five minutes.\n" @@ -5393,21 +5506,21 @@ msgid "" "there's no right way to interpret it." msgstr "" -#: gnu/packages/games.scm:12435 +#: gnu/packages/games.scm:12437 msgid "" "High performance animated desktop background setter for\n" "X11 that won't set your CPU on fire, drain your laptop battery, or lower video\n" "game FPS." msgstr "" -#: gnu/packages/games.scm:12465 +#: gnu/packages/games.scm:12467 msgid "" "Curse of War is a fast-paced action strategy game originally\n" "implemented using ncurses user interface. An SDL graphical version is also\n" "available." msgstr "" -#: gnu/packages/games.scm:12496 +#: gnu/packages/games.scm:12498 msgid "" "Schiffbruch is a mix of building, strategy and adventure and gets played\n" "with a two-dimensional view. The game deals with the consequences of a ship\n" @@ -5416,13 +5529,13 @@ msgid "" "get attention, so you get found." msgstr "" -#: gnu/packages/games.scm:12556 +#: gnu/packages/games.scm:12558 msgid "" "This package provides port of Prince of Persia, based on the\n" "disassembly of the DOS version, extended with new features." msgstr "" -#: gnu/packages/games.scm:12587 +#: gnu/packages/games.scm:12589 #, scheme-format msgid "" "@code{fheroes2} is an implementation of Heroes of Might and\n" @@ -5518,7 +5631,7 @@ msgid "" "from Markdown files." msgstr "" -#: gnu/packages/gettext.scm:311 +#: gnu/packages/gettext.scm:304 msgid "" "The po4a (PO for anything) project goal is to ease translations (and\n" "more interestingly, the maintenance of translations) using gettext tools on\n" @@ -5601,18 +5714,18 @@ msgid "" "system. It was forked from the GNU Image Manipulation Program." msgstr "" -#: gnu/packages/gnome.scm:284 +#: gnu/packages/gnome.scm:288 msgid "GUPnP-IGD is a library to handle UPnP IGD port mapping." msgstr "" -#: gnu/packages/gnome.scm:340 +#: gnu/packages/gnome.scm:344 msgid "" "Brasero is an application to burn CD/DVD for the Gnome\n" "Desktop. It is designed to be as simple as possible and has some unique\n" "features to enable users to create their discs easily and quickly." msgstr "" -#: gnu/packages/gnome.scm:372 +#: gnu/packages/gnome.scm:376 msgid "" "Libcloudproviders is a DBus API that allows cloud storage sync\n" "clients to expose their services. Clients such as file managers and desktop\n" @@ -5620,19 +5733,19 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:444 +#: gnu/packages/gnome.scm:448 msgid "" "LibGRSS is a Glib abstraction to handle feeds in RSS, Atom,\n" "and other formats." msgstr "" -#: gnu/packages/gnome.scm:472 +#: gnu/packages/gnome.scm:476 msgid "" "GNOME-JS-Common provides common modules for GNOME JavaScript\n" "bindings." msgstr "" -#: gnu/packages/gnome.scm:555 +#: gnu/packages/gnome.scm:559 msgid "" "Seed is a library and interpreter, dynamically bridging\n" "(through GObjectIntrospection) the WebKit JavaScriptCore engine, with the\n" @@ -5641,21 +5754,21 @@ msgid "" "in JavaScript." msgstr "" -#: gnu/packages/gnome.scm:611 +#: gnu/packages/gnome.scm:615 msgid "" "Libdmapsharing is a library which allows programs to access,\n" "share and control the playback of media content using DMAP (DAAP, DPAP & DACP).\n" "It is written in C using GObject and libsoup." msgstr "" -#: gnu/packages/gnome.scm:644 +#: gnu/packages/gnome.scm:648 msgid "" "GTX is a small collection of convenience functions intended to\n" "enhance the GLib testing framework. With specific emphasis on easing the pain\n" "of writing test cases for asynchronous interactions." msgstr "" -#: gnu/packages/gnome.scm:721 +#: gnu/packages/gnome.scm:725 msgid "" "Dee is a library that uses DBus to provide objects allowing\n" "you to create Model-View-Controller type programs across DBus. It also consists\n" @@ -5663,7 +5776,7 @@ msgid "" "of known objects without needing a central registrar." msgstr "" -#: gnu/packages/gnome.scm:802 +#: gnu/packages/gnome.scm:806 msgid "" "Zeitgeist is a service which logs the users’s activities and\n" "events, anywhere from files opened to websites visited and conversations. It\n" @@ -5672,27 +5785,27 @@ msgid "" "patterns." msgstr "" -#: gnu/packages/gnome.scm:869 +#: gnu/packages/gnome.scm:871 msgid "" "GNOME Recipes helps you discover what to cook today,\n" "tomorrow, the rest of the week and for special occasions." msgstr "" -#: gnu/packages/gnome.scm:939 +#: gnu/packages/gnome.scm:940 msgid "" "GNOME Photos is a simple and elegant replacement for using a\n" "file manager to deal with photos. Enhance, crop and edit in a snap. Seamless\n" "cloud integration is offered through GNOME Online Accounts." msgstr "" -#: gnu/packages/gnome.scm:1007 +#: gnu/packages/gnome.scm:1008 msgid "" "GNOME Music is the new GNOME music playing application that\n" "aims to combine an elegant and immersive browsing experience with simple\n" "and straightforward controls." msgstr "" -#: gnu/packages/gnome.scm:1028 +#: gnu/packages/gnome.scm:1029 msgid "" "PortableXDR is an implementation of External Data\n" "Representation (XDR) Library. It is a standard data serialization format, for\n" @@ -5700,25 +5813,25 @@ msgid "" "between different kinds of computer systems." msgstr "" -#: gnu/packages/gnome.scm:1066 +#: gnu/packages/gnome.scm:1067 msgid "" "Tepl is a library that eases the development of\n" "GtkSourceView-based text editors and IDEs." msgstr "" -#: gnu/packages/gnome.scm:1107 +#: gnu/packages/gnome.scm:1108 msgid "" "krb5-auth-dialog is a simple dialog that monitors Kerberos\n" "tickets, and pops up a dialog when they are about to expire." msgstr "" -#: gnu/packages/gnome.scm:1132 +#: gnu/packages/gnome.scm:1133 msgid "" "Notification-Daemon is the server implementation of the\n" "freedesktop.org desktop notification specification." msgstr "" -#: gnu/packages/gnome.scm:1168 +#: gnu/packages/gnome.scm:1169 msgid "" "The mm-common module provides the build infrastructure\n" "and utilities shared among the GNOME C++ binding libraries. Release\n" @@ -5726,55 +5839,55 @@ msgid "" "Library reference documentation." msgstr "" -#: gnu/packages/gnome.scm:1214 +#: gnu/packages/gnome.scm:1215 msgid "" "PhoDav was initially developed as a file-sharing mechanism for Spice,\n" "but it is generic enough to be reused in other projects,\n" "in particular in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1267 +#: gnu/packages/gnome.scm:1268 msgid "" "GNOME Color Manager is a session framework that makes\n" "it easy to manage, install and generate color profiles\n" "in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1319 +#: gnu/packages/gnome.scm:1320 msgid "" "GNOME Online Miners provides a set of crawlers that\n" "go through your online content and index them locally in Tracker.\n" "It has miners for Facebook, Flickr, Google, ownCloud and SkyDrive." msgstr "" -#: gnu/packages/gnome.scm:1352 +#: gnu/packages/gnome.scm:1353 msgid "" "This package provides a library to handle resource discovery\n" "and announcement over @acronym{SSDP, Simple Service Discovery Protocol} and\n" "a debugging tool, @command{gssdp-device-sniffer}." msgstr "" -#: gnu/packages/gnome.scm:1391 +#: gnu/packages/gnome.scm:1392 msgid "" "This package provides GUPnP, an object-oriented framework\n" "for creating UPnP devices and control points, written in C using\n" "@code{GObject} and @code{libsoup}." msgstr "" -#: gnu/packages/gnome.scm:1423 +#: gnu/packages/gnome.scm:1424 msgid "" "This package provides a small utility library to\n" "support DLNA-related tasks such as media profile guessing, transcoding to a\n" "given profile, etc. DLNA is a subset of UPnP A/V." msgstr "" -#: gnu/packages/gnome.scm:1453 +#: gnu/packages/gnome.scm:1454 msgid "" "This package provides a small library for handling\n" "and implementation of UPnP A/V profiles." msgstr "" -#: gnu/packages/gnome.scm:1478 +#: gnu/packages/gnome.scm:1479 msgid "" "The libmediaart library is the foundation for media art caching,\n" "extraction, and lookup for applications on the desktop." @@ -5787,14 +5900,14 @@ msgid "" "tour of all gnome components and allows the user to set them up." msgstr "" -#: gnu/packages/gnome.scm:1584 +#: gnu/packages/gnome.scm:1583 msgid "" "GNOME User Share is a small package that binds together\n" "various free software projects to bring easy to use user-level file\n" "sharing to the masses." msgstr "" -#: gnu/packages/gnome.scm:1639 +#: gnu/packages/gnome.scm:1638 msgid "" "Sushi is a DBus-activated service that allows applications\n" "to preview files on the GNOME desktop." @@ -5846,7 +5959,7 @@ msgid "" "and system administrators." msgstr "" -#: gnu/packages/gnome.scm:1946 +#: gnu/packages/gnome.scm:1950 msgid "" "Dia can be used to draw different types of diagrams, and\n" "includes support for UML static structure diagrams (class diagrams), entity\n" @@ -5854,28 +5967,28 @@ msgid "" "formats like PNG, SVG, PDF and EPS." msgstr "" -#: gnu/packages/gnome.scm:1991 +#: gnu/packages/gnome.scm:1995 msgid "" "libgdata is a GLib-based library for accessing online service APIs using\n" "the GData protocol — most notably, Google's services. It provides APIs to\n" "access the common Google services, and has full asynchronous support." msgstr "" -#: gnu/packages/gnome.scm:2019 +#: gnu/packages/gnome.scm:2023 msgid "" "libgxps is a GObject-based library for handling and rendering XPS\n" "documents. This package also contains binaries that can convert XPS documents\n" "to other formats." msgstr "" -#: gnu/packages/gnome.scm:2060 +#: gnu/packages/gnome.scm:2063 msgid "" "Characters is a simple utility application to find\n" "and insert unusual characters. It allows you to quickly find the\n" "character you are looking for by searching for keywords." msgstr "" -#: gnu/packages/gnome.scm:2081 +#: gnu/packages/gnome.scm:2084 msgid "" "gnome-common contains various files needed to bootstrap\n" "GNOME modules built from Git. It contains a common \"autogen.sh\" script that\n" @@ -5883,13 +5996,13 @@ msgid "" "commonly used macros." msgstr "" -#: gnu/packages/gnome.scm:2142 +#: gnu/packages/gnome.scm:2145 msgid "" "GNOME Contacts organizes your contact information from online and\n" "offline sources, providing a centralized place for managing your contacts." msgstr "" -#: gnu/packages/gnome.scm:2222 +#: gnu/packages/gnome.scm:2225 msgid "" "The libgnome-desktop library provides API shared by several applications\n" "on the desktop, but that cannot live in the platform for various reasons.\n" @@ -5899,40 +6012,40 @@ msgid "" "The gnome-about program helps find which version of GNOME is installed." msgstr "" -#: gnu/packages/gnome.scm:2257 +#: gnu/packages/gnome.scm:2260 msgid "" "Gnome-doc-utils is a collection of documentation utilities for the\n" "Gnome project. It includes xml2po tool which makes it easier to translate\n" "and keep up to date translations of documentation." msgstr "" -#: gnu/packages/gnome.scm:2309 +#: gnu/packages/gnome.scm:2311 msgid "Disk management utility for GNOME." msgstr "" -#: gnu/packages/gnome.scm:2352 +#: gnu/packages/gnome.scm:2353 msgid "" "Application to show you the fonts installed on your computer\n" "for your use as thumbnails. Selecting any thumbnails shows the full view of how\n" "the font would look under various sizes." msgstr "" -#: gnu/packages/gnome.scm:2420 +#: gnu/packages/gnome.scm:2421 msgid "" "The GCR package contains libraries used for displaying certificates and\n" "accessing key stores. It also provides the viewer for crypto files on the\n" "GNOME Desktop." msgstr "" -#: gnu/packages/gnome.scm:2459 +#: gnu/packages/gnome.scm:2460 msgid "This library provides docking features for gtk+." msgstr "" -#: gnu/packages/gnome.scm:2505 +#: gnu/packages/gnome.scm:2506 msgid "Client library to access passwords from the GNOME keyring." msgstr "" -#: gnu/packages/gnome.scm:2575 +#: gnu/packages/gnome.scm:2576 msgid "" "gnome-keyring is a program that keeps passwords and other secrets for\n" "users. It is run as a daemon in the session, similar to ssh-agent, and other\n" @@ -5951,13 +6064,13 @@ msgid "" "on the GNOME Desktop with a single simple application." msgstr "" -#: gnu/packages/gnome.scm:2693 +#: gnu/packages/gnome.scm:2692 msgid "" "Gsettings-desktop-schemas contains a collection of GSettings\n" "schemas for settings shared by various components of the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:2729 +#: gnu/packages/gnome.scm:2728 msgid "" "Liblarch is a Python library built to easily handle data structures such\n" "as lists, trees and acyclic graphs. There's also a GTK binding that will\n" @@ -5968,7 +6081,7 @@ msgid "" "and how they are displayed (View)." msgstr "" -#: gnu/packages/gnome.scm:2790 +#: gnu/packages/gnome.scm:2789 msgid "" "Getting Things GNOME! (GTG) is a personal tasks and TODO list items\n" "organizer for the GNOME desktop environment inspired by the Getting Things\n" @@ -5978,24 +6091,24 @@ msgid "" "know, from small tasks to large projects." msgstr "" -#: gnu/packages/gnome.scm:2829 +#: gnu/packages/gnome.scm:2828 msgid "" "To help with the transition to the Freedesktop Icon Naming\n" "Specification, the icon naming utility maps the icon names used by the\n" "GNOME and KDE desktops to the icon names proposed in the specification." msgstr "" -#: gnu/packages/gnome.scm:2858 +#: gnu/packages/gnome.scm:2857 msgid "Icons for the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:2897 +#: gnu/packages/gnome.scm:2896 msgid "" "This is an icon theme that follows the Tango visual\n" "guidelines." msgstr "" -#: gnu/packages/gnome.scm:2927 +#: gnu/packages/gnome.scm:2926 msgid "" "The shared-mime-info package contains the core database of common types\n" "and the update-mime-database command used to extend it. It requires glib2 to\n" @@ -6004,18 +6117,18 @@ msgid "" "database is translated at Transifex." msgstr "" -#: gnu/packages/gnome.scm:3012 +#: gnu/packages/gnome.scm:3011 msgid "" "system-config-printer is a CUPS administration tool. It's written in\n" "Python using GTK+, and uses the @acronym{IPP, Internet Printing Protocol} when\n" "configuring CUPS." msgstr "" -#: gnu/packages/gnome.scm:3036 +#: gnu/packages/gnome.scm:3035 msgid "Freedesktop icon theme." msgstr "" -#: gnu/packages/gnome.scm:3085 +#: gnu/packages/gnome.scm:3084 msgid "" "Libnotify is a library that sends desktop notifications to a\n" "notification daemon, as defined in the Desktop Notifications spec. These\n" @@ -6023,7 +6136,7 @@ msgid "" "some form of information without getting in the user's way." msgstr "" -#: gnu/packages/gnome.scm:3132 +#: gnu/packages/gnome.scm:3131 msgid "" "Libpeas is a gobject-based plugin engine, targeted at giving every\n" "application the chance to assume its own extensibility. It also has a set of\n" @@ -6032,21 +6145,21 @@ msgid "" "API." msgstr "" -#: gnu/packages/gnome.scm:3168 +#: gnu/packages/gnome.scm:3167 msgid "" "GtkGLExt is an OpenGL extension to GTK+. It provides\n" "additional GDK objects which support OpenGL rendering in GTK+ and GtkWidget\n" "API add-ons to make GTK+ widgets OpenGL-capable." msgstr "" -#: gnu/packages/gnome.scm:3248 +#: gnu/packages/gnome.scm:3247 msgid "" "Glade is a rapid application development (RAD) tool to\n" "enable quick & easy development of user interfaces for the GTK+ toolkit and\n" "the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:3280 +#: gnu/packages/gnome.scm:3279 msgid "" "Libcroco is a standalone CSS2 parsing and manipulation library.\n" "The parser provides a low level event driven SAC-like API and a CSS object\n" @@ -6054,13 +6167,13 @@ msgid "" "XML/CSS rendering engine." msgstr "" -#: gnu/packages/gnome.scm:3347 +#: gnu/packages/gnome.scm:3346 msgid "" "Libgsf aims to provide an efficient extensible I/O abstraction\n" "for dealing with different structured file formats." msgstr "" -#: gnu/packages/gnome.scm:3526 +#: gnu/packages/gnome.scm:3525 msgid "" "Librsvg is a library to render SVG images to Cairo surfaces.\n" "GNOME uses this to render SVG icons. Outside of GNOME, other desktop\n" @@ -6068,7 +6181,7 @@ msgid "" "diagrams." msgstr "" -#: gnu/packages/gnome.scm:3649 +#: gnu/packages/gnome.scm:3648 msgid "" "Libidl is a library for creating trees of CORBA Interface\n" "Definition Language (idl) files, which is a specification for defining\n" @@ -6077,82 +6190,82 @@ msgid "" "functionality was designed to be as reusable and portable as possible." msgstr "" -#: gnu/packages/gnome.scm:3704 +#: gnu/packages/gnome.scm:3703 msgid "" "ORBit2 is a CORBA 2.4-compliant Object Request Broker (orb)\n" "featuring mature C, C++ and Python bindings." msgstr "" -#: gnu/packages/gnome.scm:3758 +#: gnu/packages/gnome.scm:3757 msgid "" "Bonobo is a framework for creating reusable components for\n" "use in GNOME applications, built on top of CORBA." msgstr "" -#: gnu/packages/gnome.scm:3789 +#: gnu/packages/gnome.scm:3788 msgid "" "Gconf is a system for storing application preferences. It\n" "is intended for user preferences; not arbitrary data storage." msgstr "" -#: gnu/packages/gnome.scm:3823 +#: gnu/packages/gnome.scm:3822 msgid "" "GNOME Mime Data is a module which contains the base MIME\n" "and Application database for GNOME. The data stored by this module is\n" "designed to be accessed through the MIME functions in GnomeVFS." msgstr "" -#: gnu/packages/gnome.scm:3863 +#: gnu/packages/gnome.scm:3862 msgid "" "GnomeVFS is the core library used to access files and folders in GNOME\n" "applications. It provides a file system abstraction which allows applications\n" "to access local and remote files with a single consistent API." msgstr "" -#: gnu/packages/gnome.scm:3904 +#: gnu/packages/gnome.scm:3903 msgid "" "The libgnome library provides a number of useful routines\n" "for building modern applications, including session management, activation of\n" "files and URIs, and displaying help." msgstr "" -#: gnu/packages/gnome.scm:3928 +#: gnu/packages/gnome.scm:3927 msgid "" "Libart is a 2D drawing library intended as a\n" "high-quality vector-based 2D library with antialiasing and alpha composition." msgstr "" -#: gnu/packages/gnome.scm:3955 +#: gnu/packages/gnome.scm:3954 msgid "" "The GnomeCanvas widget provides a flexible widget for\n" "creating interactive structured graphics." msgstr "" -#: gnu/packages/gnome.scm:3977 +#: gnu/packages/gnome.scm:3976 msgid "C++ bindings to the GNOME Canvas library." msgstr "" -#: gnu/packages/gnome.scm:4003 +#: gnu/packages/gnome.scm:4002 msgid "" "The libgnomeui library provides additional widgets for\n" "applications. Many of the widgets from libgnomeui have already been\n" "ported to GTK+." msgstr "" -#: gnu/packages/gnome.scm:4029 +#: gnu/packages/gnome.scm:4028 msgid "" "Libglade is a library that provides interfaces for loading\n" "graphical interfaces described in glade files and for accessing the\n" "widgets built in the loading process." msgstr "" -#: gnu/packages/gnome.scm:4071 +#: gnu/packages/gnome.scm:4070 msgid "" "The Bonobo UI library provides a number of user interface\n" "controls using the Bonobo component framework." msgstr "" -#: gnu/packages/gnome.scm:4098 +#: gnu/packages/gnome.scm:4097 msgid "" "Libwnck is the Window Navigator Construction Kit, a library for use in\n" "writing pagers, tasklists, and more generally applications that are dealing\n" @@ -6160,11 +6273,11 @@ msgid "" "Hints specification (EWMH)." msgstr "" -#: gnu/packages/gnome.scm:4148 +#: gnu/packages/gnome.scm:4147 msgid "A GLib/GTK+ set of document-centric objects and utilities." msgstr "" -#: gnu/packages/gnome.scm:4234 +#: gnu/packages/gnome.scm:4233 msgid "" "GNUmeric is a GNU spreadsheet application, running under GNOME. It is\n" "interoperable with other spreadsheet applications. It has a vast array of\n" @@ -6173,11 +6286,11 @@ msgid "" "engineering." msgstr "" -#: gnu/packages/gnome.scm:4290 +#: gnu/packages/gnome.scm:4289 msgid "Drawing is a basic image editor aiming at the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:4326 +#: gnu/packages/gnome.scm:4325 msgid "The default GNOME 3 themes (Adwaita and some accessibility themes)." msgstr "" @@ -6196,7 +6309,7 @@ msgid "" "targeting the GNOME stack simple." msgstr "" -#: gnu/packages/gnome.scm:4481 +#: gnu/packages/gnome.scm:4482 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, and a minimal sample application (vte) using that. Vte is mainly used in\n" @@ -6204,34 +6317,34 @@ msgid "" "editors, IDEs, etc." msgstr "" -#: gnu/packages/gnome.scm:4505 +#: gnu/packages/gnome.scm:4506 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, this fork provides additional functions exposed for keyboard text\n" "selection and URL hints." msgstr "" -#: gnu/packages/gnome.scm:4585 +#: gnu/packages/gnome.scm:4586 msgid "" "Vinagre is a remote display client supporting the VNC, SPICE\n" "and RDP protocols." msgstr "" -#: gnu/packages/gnome.scm:4631 +#: gnu/packages/gnome.scm:4633 msgid "" "Dconf is a low-level configuration system. Its main purpose\n" "is to provide a backend to GSettings on platforms that don't already have\n" "configuration storage systems." msgstr "" -#: gnu/packages/gnome.scm:4661 +#: gnu/packages/gnome.scm:4663 msgid "" "JSON-GLib is a library providing serialization and\n" "described by RFC 4627. It implements a full JSON parser and generator using\n" "GLib and GObject, and integrates JSON with GLib data types." msgstr "" -#: gnu/packages/gnome.scm:4760 +#: gnu/packages/gnome.scm:4762 msgid "" "LibXklavier is a library providing high-level API for X Keyboard\n" "Extension known as XKB. This library is intended to support XFree86 and other\n" @@ -6239,13 +6352,13 @@ msgid "" "indicators etc)." msgstr "" -#: gnu/packages/gnome.scm:4788 +#: gnu/packages/gnome.scm:4790 msgid "" "This package provides Python bindings to librsvg, the SVG rendering\n" "library." msgstr "" -#: gnu/packages/gnome.scm:4829 +#: gnu/packages/gnome.scm:4831 msgid "" "Glib-networking contains the implementations of certain GLib networking\n" "features that cannot be implemented directly in GLib itself because of their\n" @@ -6255,26 +6368,26 @@ msgid "" "from the GSettings schemas in gsettings-desktop-schemas." msgstr "" -#: gnu/packages/gnome.scm:4866 +#: gnu/packages/gnome.scm:4868 msgid "" "This library was designed to make it easier to access web services that\n" "claim to be \"RESTful\". It includes convenience wrappers for libsoup and\n" "libxml to ease remote use of the RESTful API." msgstr "" -#: gnu/packages/gnome.scm:4931 +#: gnu/packages/gnome.scm:4933 msgid "" "LibSoup is an HTTP client/server library for GNOME. It uses GObjects\n" "and the GLib main loop, to integrate well with GNOME applications." msgstr "" -#: gnu/packages/gnome.scm:5035 +#: gnu/packages/gnome.scm:5037 msgid "" "Libsecret is a GObject based library for storing and retrieving passwords\n" "and other secrets. It communicates with the \"Secret Service\" using DBus." msgstr "" -#: gnu/packages/gnome.scm:5074 +#: gnu/packages/gnome.scm:5076 msgid "" "Five or More is a game where you try to align\n" " five or more objects of the same color and shape causing them to disappear.\n" @@ -6282,19 +6395,19 @@ msgid "" " Try to last as long as possible." msgstr "" -#: gnu/packages/gnome.scm:5116 +#: gnu/packages/gnome.scm:5118 msgid "" "Mines (previously gnomine) is a puzzle game where you locate mines\n" "floating in an ocean using only your brain and a little bit of luck." msgstr "" -#: gnu/packages/gnome.scm:5157 +#: gnu/packages/gnome.scm:5159 msgid "" "MultiWriter can be used to write an ISO file to multiple USB devices at\n" "once." msgstr "" -#: gnu/packages/gnome.scm:5197 +#: gnu/packages/gnome.scm:5198 msgid "" "Sudoku is a Japanese logic game that exploded in popularity in 2005.\n" "GNOME Sudoku is meant to have an interface as simple and unobstrusive as\n" @@ -6302,7 +6415,7 @@ msgid "" "more fun." msgstr "" -#: gnu/packages/gnome.scm:5247 +#: gnu/packages/gnome.scm:5248 msgid "" "GNOME Terminal is a terminal emulator application for accessing a\n" "UNIX shell environment which can be used to run programs available on\n" @@ -6312,14 +6425,14 @@ msgid "" "keyboard shortcuts." msgstr "" -#: gnu/packages/gnome.scm:5319 +#: gnu/packages/gnome.scm:5320 msgid "" "Colord is a system service that makes it easy to manage,\n" "install and generate color profiles to accurately color manage input and\n" "output devices." msgstr "" -#: gnu/packages/gnome.scm:5390 +#: gnu/packages/gnome.scm:5391 msgid "" "Geoclue is a D-Bus service that provides location\n" "information. The primary goal of the Geoclue project is to make creating\n" @@ -6328,7 +6441,7 @@ msgid "" "permission from user." msgstr "" -#: gnu/packages/gnome.scm:5434 +#: gnu/packages/gnome.scm:5435 msgid "" "geocode-glib is a convenience library for geocoding (finding longitude,\n" "and latitude from an address) and reverse geocoding (finding an address from\n" @@ -6336,7 +6449,7 @@ msgid "" "faster results and to avoid unnecessary server load." msgstr "" -#: gnu/packages/gnome.scm:5510 +#: gnu/packages/gnome.scm:5511 msgid "" "UPower is an abstraction for enumerating power devices,\n" "listening to device events and querying history and statistics. Any\n" @@ -6344,13 +6457,13 @@ msgid "" "service via the system message bus." msgstr "" -#: gnu/packages/gnome.scm:5555 +#: gnu/packages/gnome.scm:5557 msgid "" "libgweather is a library to access weather information from online\n" "services for numerous locations." msgstr "" -#: gnu/packages/gnome.scm:5639 +#: gnu/packages/gnome.scm:5640 msgid "" "This package contains the daemon responsible for setting the various\n" "parameters of a GNOME session and the applications that run under it. It\n" @@ -6358,19 +6471,19 @@ msgid "" "settings, themes, mouse settings, and startup of other daemons." msgstr "" -#: gnu/packages/gnome.scm:5670 +#: gnu/packages/gnome.scm:5671 msgid "" "Totem-pl-parser is a GObjects-based library to parse and save\n" "playlists in a variety of formats." msgstr "" -#: gnu/packages/gnome.scm:5703 +#: gnu/packages/gnome.scm:5704 msgid "" "Aisleriot (also known as Solitaire or sol) is a collection of card games\n" "which are easy to play with the aid of a mouse." msgstr "" -#: gnu/packages/gnome.scm:5729 +#: gnu/packages/gnome.scm:5730 msgid "" "Amtk is the acronym for @acronym{Amtk, Actions Menus and Toolbars Kit}.\n" "It is a basic GtkUIManager replacement based on GAction. It is suitable for\n" @@ -6449,13 +6562,13 @@ msgid "" "discovery protocols." msgstr "" -#: gnu/packages/gnome.scm:6324 +#: gnu/packages/gnome.scm:6323 msgid "" "Totem is a simple yet featureful media player for GNOME\n" "which can read a large number of file formats." msgstr "" -#: gnu/packages/gnome.scm:6415 +#: gnu/packages/gnome.scm:6414 msgid "" "Rhythmbox is a music playing application for GNOME. It\n" "supports playlists, song ratings, and any codecs installed through gstreamer." @@ -6486,7 +6599,7 @@ msgid "" "part of udev-extras, then udev, then systemd. It's now a project on its own." msgstr "" -#: gnu/packages/gnome.scm:6611 +#: gnu/packages/gnome.scm:6610 msgid "" "GVFS is a userspace virtual file system designed to work with the I/O\n" "abstraction of GIO. It contains a GIO module that seamlessly adds GVFS\n" @@ -6497,7 +6610,7 @@ msgid "" "DAV, and others." msgstr "" -#: gnu/packages/gnome.scm:6652 +#: gnu/packages/gnome.scm:6651 msgid "" "GUsb is a GObject wrapper for libusb1 that makes it easy to do\n" "asynchronous control, bulk and interrupt transfers with proper cancellation\n" @@ -6505,7 +6618,7 @@ msgid "" "USB transfers with your high-level application or system daemon." msgstr "" -#: gnu/packages/gnome.scm:6706 +#: gnu/packages/gnome.scm:6705 msgid "" "Document Scanner is an easy-to-use application that lets you connect your\n" "scanner and quickly capture images and documents in an appropriate format. It\n" @@ -6513,25 +6626,25 @@ msgid "" "almost all of them." msgstr "" -#: gnu/packages/gnome.scm:6778 +#: gnu/packages/gnome.scm:6777 msgid "" "Eolie is a new web browser for GNOME. It features Firefox sync support,\n" "a secret password store, an adblocker, and a modern UI." msgstr "" -#: gnu/packages/gnome.scm:6855 +#: gnu/packages/gnome.scm:6854 msgid "" "Epiphany is a GNOME web browser targeted at non-technical users. Its\n" "principles are simplicity and standards compliance." msgstr "" -#: gnu/packages/gnome.scm:6914 +#: gnu/packages/gnome.scm:6913 msgid "" "D-Feet is a D-Bus debugger, which can be used to inspect D-Bus interfaces\n" "of running programs and invoke methods on those interfaces." msgstr "" -#: gnu/packages/gnome.scm:6944 +#: gnu/packages/gnome.scm:6943 msgid "" "Yelp-XSL is a collection of programs and data files to help\n" "you build, maintain, and distribute documentation. It provides XSLT stylesheets\n" @@ -6541,14 +6654,14 @@ msgid "" "jQuery.Syntax JavaScript libraries." msgstr "" -#: gnu/packages/gnome.scm:6983 +#: gnu/packages/gnome.scm:6982 msgid "" "Yelp is the help viewer in Gnome. It natively views Mallard, DocBook,\n" "man, info, and HTML documents. It can locate documents according to the\n" "freedesktop.org help system specification." msgstr "" -#: gnu/packages/gnome.scm:7013 +#: gnu/packages/gnome.scm:7012 msgid "" "Yelp-tools is a collection of scripts and build utilities to help create,\n" "manage, and publish documentation for Yelp and the web. Most of the heavy\n" @@ -6556,13 +6669,13 @@ msgid "" "wraps things up in a developer-friendly way." msgstr "" -#: gnu/packages/gnome.scm:7051 +#: gnu/packages/gnome.scm:7050 msgid "" "Libgee is a utility library providing GObject-based interfaces and\n" "classes for commonly used data structures." msgstr "" -#: gnu/packages/gnome.scm:7079 +#: gnu/packages/gnome.scm:7078 msgid "" "Gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. It\n" "allows for GNOME applications to easily inspect and update EXIF, IPTC, and XMP\n" @@ -6577,7 +6690,7 @@ msgid "" "share them with others via social networking and more." msgstr "" -#: gnu/packages/gnome.scm:7168 +#: gnu/packages/gnome.scm:7169 msgid "" "File Roller is an archive manager for the GNOME desktop\n" "environment that allows users to view, unpack, and create compressed archives\n" @@ -6590,25 +6703,25 @@ msgid "" "configuration program to choose applications starting on login." msgstr "" -#: gnu/packages/gnome.scm:7284 +#: gnu/packages/gnome.scm:7287 msgid "" "Gjs is a javascript binding for GNOME. It's mainly based on spidermonkey\n" "javascript engine and the GObject introspection framework." msgstr "" -#: gnu/packages/gnome.scm:7381 +#: gnu/packages/gnome.scm:7383 msgid "" "While aiming at simplicity and ease of use, gedit is a\n" "powerful general purpose text editor." msgstr "" -#: gnu/packages/gnome.scm:7405 +#: gnu/packages/gnome.scm:7407 msgid "" "Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you\n" "to display dialog boxes from the commandline and shell scripts." msgstr "" -#: gnu/packages/gnome.scm:7595 +#: gnu/packages/gnome.scm:7598 msgid "" "Mutter is a window and compositing manager that displays and manages your\n" "desktop via OpenGL. Mutter combines a sophisticated display engine using the\n" @@ -6616,7 +6729,7 @@ msgid "" "window manager." msgstr "" -#: gnu/packages/gnome.scm:7653 +#: gnu/packages/gnome.scm:7656 msgid "" "GNOME Online Accounts provides interfaces so that applications and\n" "libraries in GNOME can access the user's online accounts. It has providers\n" @@ -6624,20 +6737,20 @@ msgid "" "Microsoft Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos." msgstr "" -#: gnu/packages/gnome.scm:7740 +#: gnu/packages/gnome.scm:7743 msgid "" "This package provides a unified backend for programs that work with\n" "contacts, tasks, and calendar information. It was originally developed for\n" "Evolution (hence the name), but is now used by other packages as well." msgstr "" -#: gnu/packages/gnome.scm:7803 +#: gnu/packages/gnome.scm:7806 msgid "" "Caribou is an input assistive technology intended for switch and pointer\n" "users." msgstr "" -#: gnu/packages/gnome.scm:7953 +#: gnu/packages/gnome.scm:7958 msgid "" "NetworkManager is a system network service that manages your network\n" "devices and connections, attempting to keep active network connectivity when\n" @@ -6646,60 +6759,60 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:8009 +#: gnu/packages/gnome.scm:8014 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to virtual private networks (VPNs) via OpenVPN." msgstr "" -#: gnu/packages/gnome.scm:8059 +#: gnu/packages/gnome.scm:8064 msgid "" "Support for configuring virtual private networks based on VPNC.\n" "Compatible with Cisco VPN concentrators configured to use IPsec." msgstr "" -#: gnu/packages/gnome.scm:8106 +#: gnu/packages/gnome.scm:8111 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to @acronym{VPNs, virtual private networks} via OpenConnect, an open client for\n" "Cisco's AnyConnect SSL VPN." msgstr "" -#: gnu/packages/gnome.scm:8135 +#: gnu/packages/gnome.scm:8140 msgid "Database of broadband connection configuration." msgstr "" -#: gnu/packages/gnome.scm:8179 +#: gnu/packages/gnome.scm:8183 msgid "" "This package contains a systray applet for NetworkManager. It displays\n" "the available networks and allows users to easily switch between them." msgstr "" -#: gnu/packages/gnome.scm:8234 +#: gnu/packages/gnome.scm:8238 msgid "" "This package provides a C++ interface to the libxml2 XML parser\n" "library." msgstr "" -#: gnu/packages/gnome.scm:8466 +#: gnu/packages/gnome.scm:8470 msgid "" "GNOME Display Manager is a system service that is responsible for\n" "providing graphical log-ins and managing local and remote displays." msgstr "" -#: gnu/packages/gnome.scm:8490 +#: gnu/packages/gnome.scm:8494 msgid "" "LibGTop is a library to get system specific data such as CPU and memory\n" "usage and information about running processes." msgstr "" -#: gnu/packages/gnome.scm:8525 +#: gnu/packages/gnome.scm:8528 msgid "" "This package contains tools for managing and manipulating Bluetooth\n" "devices using the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:8636 +#: gnu/packages/gnome.scm:8646 msgid "" "This package contains configuration applets for the GNOME desktop,\n" "allowing to set accessibility configuration, desktop fonts, keyboard and mouse\n" @@ -6707,13 +6820,13 @@ msgid "" "properties, screen resolution, and other GNOME parameters." msgstr "" -#: gnu/packages/gnome.scm:8802 +#: gnu/packages/gnome.scm:8811 msgid "" "GNOME Shell provides core user interface functions for the GNOME desktop,\n" "like switching to windows and launching applications." msgstr "" -#: gnu/packages/gnome.scm:8845 +#: gnu/packages/gnome.scm:8858 msgid "" "GTK-VNC is a project providing client side APIs for the RFB\n" "protocol / VNC remote desktop technology. It is built using coroutines allowing\n" @@ -6721,13 +6834,13 @@ msgid "" "core C library, and bindings for Python (PyGTK)." msgstr "" -#: gnu/packages/gnome.scm:8875 +#: gnu/packages/gnome.scm:8888 msgid "" "GNOME Autoar is a library which makes creating and extracting archives\n" "easy, safe, and automatic." msgstr "" -#: gnu/packages/gnome.scm:8945 +#: gnu/packages/gnome.scm:8959 msgid "" "Tracker is a search engine and triplestore for desktop, embedded and mobile.\n" "\n" @@ -6750,21 +6863,21 @@ msgid "" "endpoint and it understands SPARQL." msgstr "" -#: gnu/packages/gnome.scm:9074 +#: gnu/packages/gnome.scm:9088 msgid "" "Tracker is an advanced framework for first class objects with associated\n" "metadata and tags. It provides a one stop solution for all metadata, tags,\n" "shared object databases, search tools and indexing." msgstr "" -#: gnu/packages/gnome.scm:9167 +#: gnu/packages/gnome.scm:9185 msgid "" "Nautilus (Files) is a file manager designed to fit the GNOME desktop\n" "design and behaviour, giving the user a simple way to navigate and manage its\n" "files." msgstr "" -#: gnu/packages/gnome.scm:9201 +#: gnu/packages/gnome.scm:9220 msgid "" "Baobab (Disk Usage Analyzer) is a graphical application to analyse disk\n" "usage in the GNOME desktop environment. It can easily scan device volumes or\n" @@ -6772,7 +6885,7 @@ msgid "" "is complete it provides a graphical representation of each selected folder." msgstr "" -#: gnu/packages/gnome.scm:9227 +#: gnu/packages/gnome.scm:9245 msgid "" "GNOME backgrounds package contains a collection of graphics files which\n" "can be used as backgrounds in the GNOME Desktop environment. Additionally,\n" @@ -6780,21 +6893,21 @@ msgid "" "can add your own files to the collection." msgstr "" -#: gnu/packages/gnome.scm:9272 +#: gnu/packages/gnome.scm:9290 msgid "" "GNOME Screenshot is a utility used for taking screenshots of the entire\n" "screen, a window or a user defined area of the screen, with optional\n" "beautifying border effects." msgstr "" -#: gnu/packages/gnome.scm:9304 +#: gnu/packages/gnome.scm:9320 msgid "" "Dconf-editor is a graphical tool for browsing and editing the dconf\n" "configuration system for GNOME. It allows users to configure desktop\n" "software that do not provide their own configuration interface." msgstr "" -#: gnu/packages/gnome.scm:9334 +#: gnu/packages/gnome.scm:9350 msgid "" "Given many installed packages which might handle a given MIME type, a\n" "user running the GNOME desktop probably has some preferences: for example,\n" @@ -6803,32 +6916,32 @@ msgid "" "associations for GNOME." msgstr "" -#: gnu/packages/gnome.scm:9366 +#: gnu/packages/gnome.scm:9382 msgid "GoVirt is a GObject wrapper for the oVirt REST API." msgstr "" -#: gnu/packages/gnome.scm:9424 +#: gnu/packages/gnome.scm:9439 msgid "" "GNOME Weather is a small application that allows you to\n" "monitor the current weather conditions for your city, or anywhere in the\n" "world." msgstr "" -#: gnu/packages/gnome.scm:9528 +#: gnu/packages/gnome.scm:9543 msgid "" "GNOME is the graphical desktop for GNU. It includes a wide variety of\n" "applications for browsing the web, editing text and images, creating\n" "documents and diagrams, playing media, scanning, and much more." msgstr "" -#: gnu/packages/gnome.scm:9574 +#: gnu/packages/gnome.scm:9589 msgid "" "Byzanz is a simple desktop recording program with a\n" "command-line interface. It can record part or all of an X display for a\n" "specified duration and save it as a GIF encoded animated image file." msgstr "" -#: gnu/packages/gnome.scm:9634 +#: gnu/packages/gnome.scm:9651 msgid "" "Authenticator is a two-factor authentication (2FA) application built for\n" "the GNOME desktop environment.\n" @@ -6845,44 +6958,44 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/gnome.scm:9669 +#: gnu/packages/gnome.scm:9686 msgid "" "GSound is a small library for playing system sounds. It's designed to be\n" "used via GObject Introspection, and is a thin wrapper around the libcanberra C\n" "library." msgstr "" -#: gnu/packages/gnome.scm:9694 +#: gnu/packages/gnome.scm:9711 msgid "" "Libzapojit is a GLib-based library for accessing online service APIs of\n" "Microsoft SkyDrive and Hotmail, using their REST protocols." msgstr "" -#: gnu/packages/gnome.scm:9739 +#: gnu/packages/gnome.scm:9756 msgid "" "GNOME Clocks is a simple clocks application designed to fit the GNOME\n" "desktop. It supports world clock, stop watch, alarms, and count down timer." msgstr "" -#: gnu/packages/gnome.scm:9787 +#: gnu/packages/gnome.scm:9803 msgid "" "GNOME Calendar is a simple calendar application designed to fit the GNOME\n" "desktop. It supports multiple calendars, month, week and year view." msgstr "" -#: gnu/packages/gnome.scm:9838 +#: gnu/packages/gnome.scm:9860 msgid "" -"GNOME To Do is a simplistic personal task manager designed to perfectly\n" -"fit the GNOME desktop." +"GNOME To Do is a simplistic personal task manager designed\n" +"to perfectly fit the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:9877 +#: gnu/packages/gnome.scm:9899 msgid "" "GNOME Dictionary can look for the definition or translation of a word in\n" "existing databases over the internet." msgstr "" -#: gnu/packages/gnome.scm:9943 +#: gnu/packages/gnome.scm:9964 msgid "" "GNOME Tweaks allows adjusting advanced configuration settings in\n" "GNOME 3. This includes things like the fonts used in user interface elements,\n" @@ -6890,13 +7003,13 @@ msgid "" "GNOME Shell appearance and extension, etc." msgstr "" -#: gnu/packages/gnome.scm:9971 +#: gnu/packages/gnome.scm:9992 msgid "" "GNOME Shell extensions modify and extend GNOME Shell\n" "functionality and behavior." msgstr "" -#: gnu/packages/gnome.scm:10015 +#: gnu/packages/gnome.scm:10036 msgid "" "Libfolks is a library that aggregates information about people\n" "from multiple sources (e.g., Telepathy connection managers for IM contacts,\n" @@ -6905,19 +7018,19 @@ msgid "" "compiled." msgstr "" -#: gnu/packages/gnome.scm:10056 +#: gnu/packages/gnome.scm:10077 msgid "" "This library allows you to use the Facebook API from\n" "GLib/GObject code." msgstr "" -#: gnu/packages/gnome.scm:10083 +#: gnu/packages/gnome.scm:10104 msgid "" "Libgnomekbd is a keyboard configuration library for the GNOME desktop\n" "environment, which can notably display keyboard layouts." msgstr "" -#: gnu/packages/gnome.scm:10119 +#: gnu/packages/gnome.scm:10140 msgid "" "Libunique is a library for writing single instance applications. If you\n" "launch a single instance application twice, the second instance will either just\n" @@ -6927,20 +7040,20 @@ msgid "" "handling the startup notification side." msgstr "" -#: gnu/packages/gnome.scm:10168 +#: gnu/packages/gnome.scm:10190 msgid "" "Calculator is an application that solves mathematical equations and\n" "is suitable as a default application in a Desktop environment." msgstr "" -#: gnu/packages/gnome.scm:10194 +#: gnu/packages/gnome.scm:10216 msgid "" "Xpad is a sticky note that strives to be simple, fault tolerant,\n" "and customizable. Xpad consists of independent pad windows, each is\n" "basically a text box in which notes can be written." msgstr "" -#: gnu/packages/gnome.scm:10267 +#: gnu/packages/gnome.scm:10289 msgid "" "This program allows you to browse through all the available Unicode\n" "characters and categories for the installed fonts, and to examine their\n" @@ -6948,20 +7061,20 @@ msgid "" "only know by its Unicode name or code point." msgstr "" -#: gnu/packages/gnome.scm:10299 +#: gnu/packages/gnome.scm:10321 msgid "" "Color Picker is a simple color chooser written in GTK3. It\n" "supports both X and Wayland display servers." msgstr "" -#: gnu/packages/gnome.scm:10322 +#: gnu/packages/gnome.scm:10344 msgid "" "Bluefish is an editor aimed at programmers and web developers,\n" "with many options to write web sites, scripts and other code.\n" "Bluefish supports many programming and markup languages." msgstr "" -#: gnu/packages/gnome.scm:10363 +#: gnu/packages/gnome.scm:10385 msgid "" "GNOME System Monitor is a GNOME process viewer and system monitor with\n" "an attractive, easy-to-use interface. It has features, such as a tree view\n" @@ -6970,27 +7083,27 @@ msgid "" "kill/reinice processes." msgstr "" -#: gnu/packages/gnome.scm:10405 +#: gnu/packages/gnome.scm:10427 msgid "" "This package includes a python client library for the AT-SPI D-Bus\n" "accessibility infrastructure." msgstr "" -#: gnu/packages/gnome.scm:10475 +#: gnu/packages/gnome.scm:10495 msgid "" "Orca is a screen reader that provides access to the graphical desktop\n" "via speech and refreshable braille. Orca works with applications and toolkits\n" "that support the Assistive Technology Service Provider Interface (AT-SPI)." msgstr "" -#: gnu/packages/gnome.scm:10529 +#: gnu/packages/gnome.scm:10549 msgid "" "gspell provides a flexible API to add spell-checking to a GTK+\n" "application. It provides a GObject API, spell-checking to text entries and\n" "text views, and buttons to choose the language." msgstr "" -#: gnu/packages/gnome.scm:10571 +#: gnu/packages/gnome.scm:10591 msgid "" "GNOME Planner is a project management tool based on the Work Breakdown\n" "Structure (WBS). Its goal is to enable you to easily plan projects. Based on\n" @@ -7002,7 +7115,7 @@ msgid "" "views can be printed as PDF or PostScript files, or exported to HTML." msgstr "" -#: gnu/packages/gnome.scm:10644 +#: gnu/packages/gnome.scm:10664 msgid "" "Lollypop is a music player designed to play well with GNOME desktop.\n" "Lollypop plays audio formats such as mp3, mp4, ogg and flac and gets information\n" @@ -7010,26 +7123,26 @@ msgid "" "automatically and it can stream songs from online music services and charts." msgstr "" -#: gnu/packages/gnome.scm:10668 +#: gnu/packages/gnome.scm:10688 msgid "" "A collection of GStreamer video filters and effects to be used in\n" "photo-booth-like software, such as Cheese." msgstr "" -#: gnu/packages/gnome.scm:10747 +#: gnu/packages/gnome.scm:10766 msgid "" "Cheese uses your webcam to take photos and videos. Cheese can also\n" "apply fancy special effects and lets you share the fun with others." msgstr "" -#: gnu/packages/gnome.scm:10801 +#: gnu/packages/gnome.scm:10820 msgid "" "Password Safe is a password manager which makes use of the KeePass v4\n" "format. It integrates perfectly with the GNOME desktop and provides an easy\n" "and uncluttered interface for the management of password databases." msgstr "" -#: gnu/packages/gnome.scm:10836 +#: gnu/packages/gnome.scm:10855 msgid "" "Sound Juicer extracts audio from compact discs and convert it\n" "into audio files that a personal computer or digital audio player can play.\n" @@ -7037,27 +7150,27 @@ msgid "" "mp3, Ogg Vorbis and FLAC" msgstr "" -#: gnu/packages/gnome.scm:10888 +#: gnu/packages/gnome.scm:10907 msgid "" "SoundConverter supports converting between many audio formats including\n" "Opus, Ogg Vorbis, FLAC and more. It supports parallel conversion, and\n" "configurable file renaming." msgstr "" -#: gnu/packages/gnome.scm:10936 +#: gnu/packages/gnome.scm:10955 msgid "" "Workrave is a program that assists in the recovery and prevention of\n" "repetitive strain injury (@dfn{RSI}). The program frequently alerts you to take\n" "micro-pauses and rest breaks, and restricts you to your daily limit." msgstr "" -#: gnu/packages/gnome.scm:10977 +#: gnu/packages/gnome.scm:10996 msgid "" "The GHex program can view and edit files in two ways:\n" "hexadecimal or ASCII. It is useful for editing binary files in general." msgstr "" -#: gnu/packages/gnome.scm:11013 +#: gnu/packages/gnome.scm:11032 msgid "" "The libdazzle library is a companion library to GObject and\n" "Gtk+. It provides various features that the authors wish were in the\n" @@ -7066,40 +7179,40 @@ msgid "" "generic enough to work for everyone." msgstr "" -#: gnu/packages/gnome.scm:11080 +#: gnu/packages/gnome.scm:11099 msgid "" "Evolution is a personal information management application\n" "that provides integrated mail, calendaring and address book\n" "functionality." msgstr "" -#: gnu/packages/gnome.scm:11140 +#: gnu/packages/gnome.scm:11154 msgid "" "GThumb is an image viewer, browser, organizer, editor and\n" "advanced image management tool" msgstr "" -#: gnu/packages/gnome.scm:11213 +#: gnu/packages/gnome.scm:11227 msgid "" "Terminator allows you to run multiple GNOME terminals in a grid and\n" "tabs, and it supports drag and drop re-ordering of terminals." msgstr "" -#: gnu/packages/gnome.scm:11274 +#: gnu/packages/gnome.scm:11288 msgid "" "The aim of the handy library is to help with developing user\n" "interfaces for mobile devices using GTK+. It provides responsive GTK+ widgets\n" "for usage on small and big screens." msgstr "" -#: gnu/packages/gnome.scm:11323 +#: gnu/packages/gnome.scm:11337 msgid "" "libgit2-glib is a GLib wrapper library around the libgit2 Git\n" "access library. It only implements the core plumbing functions, not really the\n" "higher level porcelain stuff." msgstr "" -#: gnu/packages/gnome.scm:11402 +#: gnu/packages/gnome.scm:11415 msgid "" "gitg is a graphical user interface for git. It aims at being a small,\n" "fast and convenient tool to visualize the history of git repositories.\n" @@ -7107,21 +7220,21 @@ msgid "" "repository and commit your work." msgstr "" -#: gnu/packages/gnome.scm:11474 +#: gnu/packages/gnome.scm:11487 msgid "" "Gamin is a file and directory monitoring system defined to be a subset\n" "of the FAM (File Alteration Monitor) system. This is a service provided by a\n" "library which detects when a file or a directory has been modified." msgstr "" -#: gnu/packages/gnome.scm:11508 +#: gnu/packages/gnome.scm:11521 msgid "" "GNOME Mahjongg is a game based on the classic Chinese\n" -"tile-matching game Mahjong. It features multiple board layouts, tile themes,\n" +"tile-matching game Mahjongg. It features multiple board layouts, tile themes,\n" "and a high score table." msgstr "" -#: gnu/packages/gnome.scm:11546 +#: gnu/packages/gnome.scm:11559 msgid "" "This package provides themes and related elements that don't\n" "really fit in other upstream packages. It offers legacy support for GTK+ 2\n" @@ -7129,19 +7242,19 @@ msgid "" "index files needed for Adwaita to be used outside of GNOME." msgstr "" -#: gnu/packages/gnome.scm:11585 +#: gnu/packages/gnome.scm:11605 msgid "" -"Gnote is a note-taking application written for the GNOME desktop\n" -"environment." +"Gnote is a note-taking application written for the GNOME\n" +"desktop environment." msgstr "" -#: gnu/packages/gnome.scm:11647 +#: gnu/packages/gnome.scm:11664 msgid "" "Polari is a simple Internet Relay Chat (IRC) client that is designed to\n" "integrate seamlessly with the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:11706 +#: gnu/packages/gnome.scm:11723 msgid "" "GNOME Boxes is a simple application to view, access, and\n" "manage remote and virtual systems. Note that this application requires the\n" @@ -7150,7 +7263,7 @@ msgid "" "these services on the Guix System." msgstr "" -#: gnu/packages/gnome.scm:11806 +#: gnu/packages/gnome.scm:11823 msgid "" "Geary collects related messages together into conversations,\n" "making it easy to find and follow your discussions. Full-text and keyword\n" @@ -7162,14 +7275,14 @@ msgid "" "to." msgstr "" -#: gnu/packages/gnome.scm:11851 +#: gnu/packages/gnome.scm:11868 msgid "" "gLabels is a program for creating labels and business cards. It is\n" "designed to work with various laser/ink-jet peel-off label and business\n" "card sheets that you’ll find at most office supply stores." msgstr "" -#: gnu/packages/gnome.scm:11892 +#: gnu/packages/gnome.scm:11909 msgid "" "GNOME LaTeX is a LaTeX editor for the GNOME desktop. It has features\n" "such as build tools, completion of LaTeX commands, structure navigation,\n" @@ -7177,19 +7290,19 @@ msgid "" "and toolbars." msgstr "" -#: gnu/packages/gnome.scm:11951 +#: gnu/packages/gnome.scm:11968 msgid "" "Setzer is a simple yet full-featured LaTeX editor written in Python with\n" "GTK+. It integrates well with the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:12017 +#: gnu/packages/gnome.scm:12034 msgid "" "Apostrophe is a GTK+ based distraction-free Markdown editor.\n" "It uses pandoc as back-end for parsing Markdown." msgstr "" -#: gnu/packages/gnome.scm:12070 +#: gnu/packages/gnome.scm:12088 msgid "" "libratbag provides @command{ratbagd}, a DBus daemon to\n" "configure input devices, mainly gaming mice. The daemon provides a generic\n" @@ -7206,7 +7319,7 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12140 +#: gnu/packages/gnome.scm:12156 msgid "" "Piper is a GTK+ application for configuring gaming mice with\n" "onboard configuration for key bindings via libratbag. Piper requires\n" @@ -7218,14 +7331,14 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12202 +#: gnu/packages/gnome.scm:12218 msgid "" "Parlatype is an audio player for the GNOME desktop\n" "environment. Its main purpose is the manual transcription of spoken\n" "audio files." msgstr "" -#: gnu/packages/gnome.scm:12228 +#: gnu/packages/gnome.scm:12244 msgid "" "Jsonrpc-GLib is a library to communicate with JSON-RPC based\n" "peers in either a synchronous or asynchronous fashion. It also allows\n" @@ -7234,14 +7347,14 @@ msgid "" "host to avoid parser overhead and memory-allocator fragmentation." msgstr "" -#: gnu/packages/gnome.scm:12256 +#: gnu/packages/gnome.scm:12272 msgid "" "Feedbackd provides a DBus daemon to act on events to provide\n" "haptic, visual and audio feedback. It offers the libfeedbackd library and\n" "GObject introspection bindings." msgstr "" -#: gnu/packages/gnome.scm:12305 +#: gnu/packages/gnome.scm:12321 msgid "" "Sysprof performs detailed, accurate, and fast CPU profiling of an entire\n" "GNU/Linux system including the kernel and all user-space applications. This\n" @@ -7251,21 +7364,21 @@ msgid "" "libraries. Applications do not need to be recompiled--or even restarted." msgstr "" -#: gnu/packages/gnome.scm:12388 +#: gnu/packages/gnome.scm:12406 msgid "" -"Builder aims to be an integrated development\n" -"environment (IDE) for writing GNOME-based software. It features fuzzy search,\n" -"auto-completion, a mini code map, documentation browsing, Git integration, an\n" -"integrated profiler via Sysprof, debugging support, and more." +"Builder aims to be an integrated development environment (IDE) for\n" +"writing GNOME-based software. It features fuzzy search, auto-completion,\n" +"a mini code map, documentation browsing, Git integration, an integrated\n" +"profiler via Sysprof, debugging support, and more." msgstr "" -#: gnu/packages/gnome.scm:12461 +#: gnu/packages/gnome.scm:12480 msgid "" "Komikku is an online/offline manga reader for GNOME,\n" "developed with the aim of being used with the Librem 5 phone." msgstr "" -#: gnu/packages/gnome.scm:12545 +#: gnu/packages/gnome.scm:12564 msgid "" "GNU Data Access (GDA) is an attempt to provide uniform access to\n" "different kinds of data sources (databases, information servers, mail spools,\n" @@ -7273,7 +7386,7 @@ msgid "" "your data." msgstr "" -#: gnu/packages/gnome.scm:12596 +#: gnu/packages/gnome.scm:12614 msgid "" "gtranslator is a quite comfortable gettext po/po.gz/(g)mo files editor\n" "for the GNOME 3.x platform with many features. It aims to be a very complete\n" @@ -7281,32 +7394,36 @@ msgid "" "world." msgstr "" -#: gnu/packages/gnome.scm:12662 +#: gnu/packages/gnome.scm:12680 msgid "" "OCRFeeder is a complete Optical Character Recognition and\n" "Document Analysis and Recognition program." msgstr "" -#: gnu/packages/gnome.scm:12702 +#: gnu/packages/gnome.scm:12720 msgid "" "@code{libadwaita} offers widgets and objects to build GNOME\n" "applications scaling from desktop workstations to mobile phones. It is the\n" "successor of @code{libhandy} for GTK4." msgstr "" -#: gnu/packages/gnome.scm:12727 +#: gnu/packages/gnome.scm:12745 msgid "" "@code{gnome-power-manager} is a tool for viewing present and\n" "historical battery usage and related statistics." msgstr "" +#: gnu/packages/gnome.scm:12789 +msgid "This package provides a graphical file manager." +msgstr "" + #: gnu/packages/gnuzilla.scm:155 msgid "" "SpiderMonkey is Mozilla's JavaScript engine written\n" "in C/C++." msgstr "" -#: gnu/packages/gnuzilla.scm:1314 +#: gnu/packages/gnuzilla.scm:1315 msgid "" "IceCat is the GNU version of the Firefox browser. It is entirely free\n" "software, which does not recommend non-free plugins and addons. It also\n" @@ -7319,19 +7436,19 @@ msgid "" "standards of the IceCat project." msgstr "" -#: gnu/packages/gnuzilla.scm:1642 +#: gnu/packages/gnuzilla.scm:1648 msgid "" "This package provides an email client built based on Mozilla\n" "Thunderbird. It supports email, news feeds, chat, calendar and contacts." msgstr "" -#: gnu/packages/gnuzilla.scm:1717 +#: gnu/packages/gnuzilla.scm:1723 msgid "" "Firefox Decrypt is a tool to extract passwords from\n" "Mozilla (Firefox, Waterfox, Thunderbird, SeaMonkey) profiles." msgstr "" -#: gnu/packages/gnuzilla.scm:1754 +#: gnu/packages/gnuzilla.scm:1760 msgid "" "@code{lz4json} is a little utility to unpack lz4json files as generated\n" "by Firefox's bookmark backups and session restore. This is a different format\n" @@ -7345,7 +7462,7 @@ msgid "" "tools have full access to view and control running applications." msgstr "" -#: gnu/packages/gtk.scm:215 +#: gnu/packages/gtk.scm:212 msgid "" "Cairo is a 2D graphics library with support for multiple output\n" "devices. Currently supported output targets include the X Window System (via\n" @@ -7353,24 +7470,24 @@ msgid "" "output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB." msgstr "" -#: gnu/packages/gtk.scm:277 +#: gnu/packages/gtk.scm:274 msgid "HarfBuzz is an OpenType text shaping engine." msgstr "" -#: gnu/packages/gtk.scm:320 +#: gnu/packages/gtk.scm:317 msgid "" "Libdatrie is an implementation of double-array structure for\n" "representing trie. Trie is a kind of digital search tree." msgstr "" -#: gnu/packages/gtk.scm:352 +#: gnu/packages/gtk.scm:349 msgid "" "LibThai is a set of Thai language support routines aimed to\n" "ease developers’ tasks to incorporate Thai language support in their\n" "applications." msgstr "" -#: gnu/packages/gtk.scm:407 +#: gnu/packages/gtk.scm:404 msgid "" "Pango is a library for laying out and rendering of text, with\n" "an emphasis on internationalization. Pango can be used anywhere that text\n" @@ -7379,21 +7496,21 @@ msgid "" "handling for GTK+-2.x." msgstr "" -#: gnu/packages/gtk.scm:461 +#: gnu/packages/gtk.scm:458 msgid "" "Pangox was a X backend to pango. It is now obsolete and no\n" "longer provided by recent pango releases. pangox-compat provides the\n" "functions which were removed." msgstr "" -#: gnu/packages/gtk.scm:498 +#: gnu/packages/gtk.scm:495 msgid "" "Ganv is an interactive GTK+ widget for interactive “boxes and lines” or\n" "graph-like environments, e.g. modular synths or finite state machine\n" "diagrams." msgstr "" -#: gnu/packages/gtk.scm:554 +#: gnu/packages/gtk.scm:551 msgid "" "GtkSourceView is a portable C library that extends the standard GTK+\n" "framework for multiline text editing with support for configurable syntax\n" @@ -7401,33 +7518,33 @@ msgid "" "printing and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:602 +#: gnu/packages/gtk.scm:599 msgid "" "GtkSourceView is a text widget that extends the standard\n" "GTK+ text widget GtkTextView. It improves GtkTextView by implementing syntax\n" "highlighting and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:698 +#: gnu/packages/gtk.scm:695 msgid "" "GdkPixbuf is a library that loads image data in various\n" "formats and stores it as linear buffers in memory. The buffers can then be\n" "scaled, composited, modified, saved, or rendered." msgstr "" -#: gnu/packages/gtk.scm:746 +#: gnu/packages/gtk.scm:743 msgid "" "The Assistive Technology Service Provider Interface, core components,\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:827 +#: gnu/packages/gtk.scm:824 msgid "" "The Assistive Technology Service Provider Interface\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:921 +#: gnu/packages/gtk.scm:918 msgid "" "GTK+, or the GIMP Toolkit, is a multi-platform toolkit for creating\n" "graphical user interfaces. Offering a complete set of widgets, GTK+ is\n" @@ -7435,14 +7552,14 @@ msgid "" "application suites." msgstr "" -#: gnu/packages/gtk.scm:1234 +#: gnu/packages/gtk.scm:1238 msgid "" "GTK is a multi-platform toolkit for creating graphical user\n" "interfaces. Offering a complete set of widgets, GTK is suitable for projects\n" "ranging from small one-off tools to complete application suites." msgstr "" -#: gnu/packages/gtk.scm:1308 +#: gnu/packages/gtk.scm:1312 msgid "" "Guile-Cairo wraps the Cairo graphics library for Guile Scheme.\n" "Guile-Cairo is complete, wrapping almost all of the Cairo API. It is API\n" @@ -7452,13 +7569,13 @@ msgid "" "exceptions, macros, and a dynamic programming environment." msgstr "" -#: gnu/packages/gtk.scm:1389 +#: gnu/packages/gtk.scm:1393 msgid "" "Guile-RSVG wraps the RSVG library for Guile, allowing you to render SVG\n" "images onto Cairo surfaces." msgstr "" -#: gnu/packages/gtk.scm:1456 +#: gnu/packages/gtk.scm:1460 msgid "" "Guile-Present defines a declarative vocabulary for presentations,\n" "together with tools to render presentation documents as SVG or PDF.\n" @@ -7467,29 +7584,29 @@ msgid "" "documents." msgstr "" -#: gnu/packages/gtk.scm:1522 +#: gnu/packages/gtk.scm:1526 msgid "" "Includes guile-clutter, guile-gnome-gstreamer,\n" "guile-gnome-platform (GNOME developer libraries), and guile-gtksourceview." msgstr "" -#: gnu/packages/gtk.scm:1578 +#: gnu/packages/gtk.scm:1582 msgid "" "Cairomm provides a C++ programming interface to the Cairo 2D graphics\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1642 +#: gnu/packages/gtk.scm:1647 msgid "" "Pangomm provides a C++ programming interface to the Pango text rendering\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1704 +#: gnu/packages/gtk.scm:1709 msgid "ATKmm is the C++ binding for the ATK library." msgstr "" -#: gnu/packages/gtk.scm:1784 +#: gnu/packages/gtk.scm:1790 msgid "" "GTKmm is the official C++ interface for the popular GUI\n" "library GTK+. Highlights include typesafe callbacks, and a comprehensive set\n" @@ -7718,7 +7835,7 @@ msgid "" "excellent pavucontrol." msgstr "" -#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:238 +#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:241 msgid "" "Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" "official extension language of the GNU system. It is an implementation of\n" @@ -7731,14 +7848,14 @@ msgstr "" "бити уграђен у друге програме како би обезбедио исплатив начин проширивања\n" "функционалности програма без потребе поновног писања изворног кода." -#: gnu/packages/guile.scm:502 +#: gnu/packages/guile.scm:506 msgid "" "This module provides line editing support via the Readline library for\n" "GNU@tie{}Guile. Use the @code{(ice-9 readline)} module and call its\n" "@code{activate-readline} procedure to enable it." msgstr "" -#: gnu/packages/guile.scm:604 +#: gnu/packages/guile.scm:608 #, fuzzy msgid "" "Guile-JSON supports parsing and building JSON documents according to the\n" @@ -7758,17 +7875,17 @@ msgstr "" "— Подршка јуникода за ниске.\n" "— Допушта фино ЈСОН штампање." -#: gnu/packages/guile.scm:701 +#: gnu/packages/guile.scm:705 msgid "" "Guile bindings to the GDBM key-value storage system, using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:730 +#: gnu/packages/guile.scm:734 msgid "This package provides Guile bindings to the SQLite database system." msgstr "" -#: gnu/packages/guile.scm:769 +#: gnu/packages/guile.scm:773 msgid "" "Guile bytestructures offers a system imitating the type system\n" "of the C programming language, to be used on bytevectors. C's type\n" @@ -7777,33 +7894,33 @@ msgid "" "type system, elevating types to first-class status." msgstr "" -#: gnu/packages/guile.scm:810 +#: gnu/packages/guile.scm:814 msgid "" "This package provides Guile bindings to libgit2, a library to\n" "manipulate repositories of the Git version control system." msgstr "" -#: gnu/packages/guile.scm:846 +#: gnu/packages/guile.scm:850 msgid "" "This package provides Guile bindings for zlib, a lossless\n" "data-compression library. The bindings are written in pure Scheme by using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:877 +#: gnu/packages/guile.scm:881 msgid "" "This package provides Guile bindings for lzlib, a C library for\n" "in-memory LZMA compression and decompression. The bindings are written in\n" "pure Scheme by using Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:904 +#: gnu/packages/guile.scm:908 msgid "" "This package provides a GNU Guile interface to the zstd (``zstandard'')\n" "compression library." msgstr "" -#: gnu/packages/guile.scm:926 +#: gnu/packages/guile.scm:930 msgid "" "Guile-LZMA is a Guile wrapper for the liblzma (XZ)\n" "library. It exposes an interface similar to other Guile compression\n" @@ -8390,7 +8507,7 @@ msgid "" "It supports JPEG, PNG and GIF formats." msgstr "" -#: gnu/packages/image-viewers.scm:640 +#: gnu/packages/image-viewers.scm:643 msgid "" "Luminance HDR (formerly QtPFSGui) is a graphical user interface\n" "application that aims to provide a workflow for high dynamic range (HDR)\n" @@ -8406,7 +8523,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:735 +#: gnu/packages/image-viewers.scm:738 msgid "" "MComix is a customizable image viewer that specializes as\n" "a comic and manga reader. It supports a variety of container formats\n" @@ -8415,7 +8532,7 @@ msgid "" "For PDF support, install the @emph{mupdf} package." msgstr "" -#: gnu/packages/image-viewers.scm:775 +#: gnu/packages/image-viewers.scm:778 msgid "" "qView is a Qt image viewer designed with visually\n" "minimalism and usability in mind. Its features include animated GIF\n" @@ -8423,14 +8540,14 @@ msgid "" "preloading." msgstr "" -#: gnu/packages/image-viewers.scm:799 +#: gnu/packages/image-viewers.scm:802 msgid "" "Chafa is a command-line utility that converts all kinds of images,\n" "including animated GIFs, into ANSI/Unicode character output that can be\n" "displayed in a terminal." msgstr "" -#: gnu/packages/image-viewers.scm:847 +#: gnu/packages/image-viewers.scm:850 msgid "" "@code{imv} is a command line image viewer intended for use\n" "with tiling window managers. Features include:\n" @@ -8452,7 +8569,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:924 +#: gnu/packages/image-viewers.scm:927 msgid "" "Quick Image Viewer is a small and fast GDK/Imlib2 image viewer.\n" "Features include zoom, maxpect, scale down, fullscreen, slideshow, delete,\n" @@ -8461,7 +8578,7 @@ msgid "" "to set X desktop background." msgstr "" -#: gnu/packages/image-viewers.scm:968 +#: gnu/packages/image-viewers.scm:971 msgid "" "pqiv is a GTK-3 based command-line image viewer with a minimal UI.\n" "It is highly customizable, can be fully controlled from scripts, and has\n" @@ -8469,7 +8586,7 @@ msgid "" "archives." msgstr "" -#: gnu/packages/image-viewers.scm:1025 +#: gnu/packages/image-viewers.scm:1028 msgid "" "Nomacs is a simple to use image lounge featuring\n" "semi-transparent widgets that display additional information such as metadata,\n" @@ -8482,7 +8599,7 @@ msgid "" "synchronization of multiple instances." msgstr "" -#: gnu/packages/image-viewers.scm:1070 +#: gnu/packages/image-viewers.scm:1073 msgid "xzgv is a fast image viewer that provides extensive keyboard support." msgstr "" @@ -8745,17 +8862,17 @@ msgid "" "Math for editing mathematics." msgstr "" -#: gnu/packages/linux.scm:604 +#: gnu/packages/linux.scm:625 msgid "Headers of the Linux-Libre kernel." msgstr "" -#: gnu/packages/linux.scm:905 +#: gnu/packages/linux.scm:935 msgid "" "GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.\n" "It has been modified to remove all non-free binary blobs." msgstr "" -#: gnu/packages/linux.scm:1215 +#: gnu/packages/linux.scm:1252 msgid "" "This simple Linux kernel module allows calls from user space to any\n" "@acronym{ACPI, Advanced Configuration and Power Interface} method provided by\n" @@ -8767,7 +8884,7 @@ msgid "" "and should be used with caution, especially on untested models." msgstr "" -#: gnu/packages/linux.scm:1283 +#: gnu/packages/linux.scm:1320 msgid "" "CoreFreq is a CPU monitor that reports low-level processor settings and\n" "performance data with notably high precision by using a loadable Linux kernel\n" @@ -8798,7 +8915,7 @@ msgid "" "@file{README.md} before loading it." msgstr "" -#: gnu/packages/linux.scm:1332 +#: gnu/packages/linux.scm:1369 msgid "" "This is the Linux kernel @acronym{ACPI, Advanced Configuration and Power\n" "Interface} platform driver for the @acronym{EC, Embedded Controller} firmware\n" @@ -8807,13 +8924,13 @@ msgid "" "and the notification, WiFi, and Bluetooth LED." msgstr "" -#: gnu/packages/linux.scm:1375 +#: gnu/packages/linux.scm:1413 msgid "" "This is Realtek's RTL8821CE Linux driver for wireless\n" "network adapters." msgstr "" -#: gnu/packages/linux.scm:1407 +#: gnu/packages/linux.scm:1445 msgid "" "This is Realtek's rtl8812au Linux driver for USB 802.11n wireless\n" "network adapters, modified by the aircrack-ng project to support monitor mode\n" @@ -8821,7 +8938,7 @@ msgid "" "RTL8812AU, RTL8821AU, and RTL8814AU chips." msgstr "" -#: gnu/packages/linux.scm:1431 +#: gnu/packages/linux.scm:1469 msgid "" "The @acronym{VHBA, Virtual SCSI Host Bus Adapter} module is the link\n" "between the CDemu user-space daemon and the kernel Linux. It acts as a\n" @@ -8830,13 +8947,13 @@ msgid "" "emulate optical devices such as DVD and CD-ROM drives." msgstr "" -#: gnu/packages/linux.scm:1460 +#: gnu/packages/linux.scm:1497 msgid "" "The bbswitch module provides a way to toggle the Nvidia\n" "graphics card on Optimus laptops." msgstr "" -#: gnu/packages/linux.scm:1501 +#: gnu/packages/linux.scm:1536 msgid "" "This package provides two Linux kernel drivers, ddcci and\n" "ddcci-backlight, that allows the control of DDC/CI monitors through the sysfs\n" @@ -8846,7 +8963,7 @@ msgid "" "supported under @file{/sys/class/backlight/}." msgstr "" -#: gnu/packages/linux.scm:1528 +#: gnu/packages/linux.scm:1563 msgid "" "This Linux module creates virtual video devices. @acronym{V4L2, Video\n" "for Linux 2} applications will treat these as ordinary video devices but read\n" @@ -8858,7 +8975,7 @@ msgid "" "application by hooking GStreamer into the loopback device." msgstr "" -#: gnu/packages/linux.scm:1569 +#: gnu/packages/linux.scm:1604 msgid "" "This package provides a driver for the XBox One S Wireless controller\n" "and some newer models when connected via Bluetooth. In addition to the included\n" @@ -8866,7 +8983,7 @@ msgid "" "which need to be installed separately." msgstr "" -#: gnu/packages/linux.scm:1622 +#: gnu/packages/linux.scm:1657 msgid "" "A *Free* project to implement OSF's RFC 86.0.\n" "Pluggable authentication modules are small shared object files that can\n" @@ -8874,18 +8991,18 @@ msgid "" "at login. Local and dynamic reconfiguration are its key features." msgstr "" -#: gnu/packages/linux.scm:1683 +#: gnu/packages/linux.scm:1718 msgid "This package provides a PAM interface using @code{ctypes}." msgstr "" -#: gnu/packages/linux.scm:1712 +#: gnu/packages/linux.scm:1747 msgid "" "This package provides a PAM module that hands over your\n" "login password to @code{gpg-agent}. This can be useful if you are using a\n" "GnuPG-based password manager like @code{pass}." msgstr "" -#: gnu/packages/linux.scm:1741 +#: gnu/packages/linux.scm:1776 msgid "" "This package contains utilities for accessing the powercap\n" "Linux kernel feature through sysfs. It includes an implementation for working\n" @@ -8893,7 +9010,7 @@ msgid "" "It provides the commands @code{powercap-info} and @code{powercap-set}." msgstr "" -#: gnu/packages/linux.scm:1772 +#: gnu/packages/linux.scm:1807 msgid "" "Powerstat measures and reports your computer's power consumption in real\n" "time. On mobile PCs, it uses ACPI battery information to measure the power\n" @@ -8910,28 +9027,28 @@ msgid "" "deviation, and minimum and maximum values. It can show a nice histogram too." msgstr "" -#: gnu/packages/linux.scm:1810 +#: gnu/packages/linux.scm:1845 msgid "" "This PSmisc package is a set of some small useful utilities that\n" "use the proc file system. We're not about changing the world, but\n" "providing the system administrator with some help in common tasks." msgstr "" -#: gnu/packages/linux.scm:1948 +#: gnu/packages/linux.scm:1984 msgid "" "Util-linux is a diverse collection of Linux kernel\n" "utilities. It provides dmesg and includes tools for working with file systems,\n" "block devices, UUIDs, TTYs, and many other tools." msgstr "" -#: gnu/packages/linux.scm:1986 +#: gnu/packages/linux.scm:2037 msgid "" "ddate displays the Discordian date and holidays of a given date.\n" "The Discordian calendar was made popular by the \"Illuminatus!\" trilogy\n" "by Robert Shea and Robert Anton Wilson." msgstr "" -#: gnu/packages/linux.scm:2040 +#: gnu/packages/linux.scm:2091 msgid "" "The kernel Linux's @dfn{frame buffers} provide a simple interface to\n" "different kinds of graphic displays. The @command{fbset} utility can query and\n" @@ -8939,7 +9056,7 @@ msgid "" "parameters." msgstr "" -#: gnu/packages/linux.scm:2085 +#: gnu/packages/linux.scm:2136 msgid "" "Procps is the package that has a bunch of small useful utilities\n" "that give information about processes using the Linux /proc file system.\n" @@ -8947,11 +9064,11 @@ msgid "" "slabtop, tload, top, vmstat, w, watch and sysctl." msgstr "" -#: gnu/packages/linux.scm:2130 +#: gnu/packages/linux.scm:2181 msgid "Tools for working with USB devices, such as lsusb." msgstr "" -#: gnu/packages/linux.scm:2154 +#: gnu/packages/linux.scm:2205 msgid "" "The USB/IP protocol enables to pass USB device from a server to\n" "a client over the network. The server is a machine which shares an\n" @@ -8964,23 +9081,23 @@ msgid "" "module." msgstr "" -#: gnu/packages/linux.scm:2237 +#: gnu/packages/linux.scm:2288 msgid "This package provides tools for manipulating ext2/ext3/ext4 file systems." msgstr "" -#: gnu/packages/linux.scm:2279 +#: gnu/packages/linux.scm:2330 msgid "" "This package provides statically-linked e2fsck command taken\n" "from the e2fsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:2302 +#: gnu/packages/linux.scm:2353 msgid "" "Extundelete is a set of tools that can recover deleted files from an\n" "ext3 or ext4 partition." msgstr "" -#: gnu/packages/linux.scm:2335 +#: gnu/packages/linux.scm:2386 msgid "" "Zerofree finds the unallocated blocks with non-zero value content in an\n" "ext2, ext3, or ext4 file system and fills them with zeroes (or another value).\n" @@ -8988,39 +9105,39 @@ msgid "" "Zerofree requires the file system to be unmounted or mounted read-only." msgstr "" -#: gnu/packages/linux.scm:2380 +#: gnu/packages/linux.scm:2431 msgid "" "strace is a system call tracer, i.e. a debugging tool which prints out a\n" "trace of all the system calls made by a another process/program." msgstr "" -#: gnu/packages/linux.scm:2403 +#: gnu/packages/linux.scm:2454 msgid "" "ltrace intercepts and records dynamic library calls which are called by\n" "an executed process and the signals received by that process. It can also\n" "intercept and print the system calls executed by the program." msgstr "" -#: gnu/packages/linux.scm:2428 +#: gnu/packages/linux.scm:2479 msgid "" "This package contains Advanced Linux Sound Architecture Use Case Manager\n" "configuration of audio input/output names and routing for specific audio\n" "hardware." msgstr "" -#: gnu/packages/linux.scm:2452 +#: gnu/packages/linux.scm:2503 msgid "" "This package contains Advanced Linux Sound Architecture topology\n" "configuration files that can be used for specific audio hardware." msgstr "" -#: gnu/packages/linux.scm:2499 gnu/packages/linux.scm:2548 +#: gnu/packages/linux.scm:2550 gnu/packages/linux.scm:2599 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system." msgstr "" -#: gnu/packages/linux.scm:2617 +#: gnu/packages/linux.scm:2668 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system. This package enhances ALSA\n" @@ -9029,7 +9146,7 @@ msgid "" "external rate conversion." msgstr "" -#: gnu/packages/linux.scm:2655 +#: gnu/packages/linux.scm:2706 msgid "" "@command{iptables} is the user-space command line program used to\n" "configure the Linux 2.4.x and later IPv4 packet filtering ruleset\n" @@ -9041,7 +9158,7 @@ msgid "" "Both commands are targeted at system administrators." msgstr "" -#: gnu/packages/linux.scm:2691 +#: gnu/packages/linux.scm:2742 msgid "" "This simple daemon feeds entropy from the CPU Jitter @acronym{RNG, random\n" "number generator} core to the kernel Linux's entropy estimator. This prevents\n" @@ -9063,7 +9180,7 @@ msgid "" "early boot when entropy may be low, especially in virtualised environments." msgstr "" -#: gnu/packages/linux.scm:2727 +#: gnu/packages/linux.scm:2778 msgid "" "@command{lsscsi} lists SCSI logical units or SCSI targets. It can\n" "also list NVMe namespaces or controllers and show the relationship between a\n" @@ -9071,7 +9188,7 @@ msgid "" "name." msgstr "" -#: gnu/packages/linux.scm:2751 +#: gnu/packages/linux.scm:2802 msgid "" "ebtables is an application program used to set up and maintain the\n" "tables of rules (inside the Linux kernel) that inspect Ethernet frames. It is\n" @@ -9079,7 +9196,7 @@ msgid "" "that the Ethernet protocol is much simpler than the IP protocol." msgstr "" -#: gnu/packages/linux.scm:2816 +#: gnu/packages/linux.scm:2867 msgid "" "Iproute2 is a collection of utilities for controlling TCP/IP networking\n" "and traffic with the Linux kernel. The most important of these are\n" @@ -9091,7 +9208,7 @@ msgid "" "inadequately in modern network environments, and both should be deprecated." msgstr "" -#: gnu/packages/linux.scm:2896 +#: gnu/packages/linux.scm:2947 msgid "" "This package includes the important tools for controlling the network\n" "subsystem of the Linux kernel. This includes arp, ifconfig, netstat, rarp and\n" @@ -9100,13 +9217,13 @@ msgid "" "configuration (iptunnel, ipmaddr)." msgstr "" -#: gnu/packages/linux.scm:2947 +#: gnu/packages/linux.scm:2989 msgid "" "Libcap2 provides a programming interface to POSIX capabilities on\n" "Linux-based operating systems." msgstr "" -#: gnu/packages/linux.scm:2974 +#: gnu/packages/linux.scm:3016 msgid "" "Utilities for Linux's Ethernet bridging facilities. A bridge is a way\n" "to connect two Ethernet segments together in a protocol independent way.\n" @@ -9115,7 +9232,7 @@ msgid "" "transparently through a bridge." msgstr "" -#: gnu/packages/linux.scm:3025 +#: gnu/packages/linux.scm:3067 msgid "" "The libnl suite is a collection of libraries providing APIs to netlink\n" "protocol based Linux kernel interfaces. Netlink is an IPC mechanism primarily\n" @@ -9124,13 +9241,13 @@ msgid "" "configuration and monitoring interfaces." msgstr "" -#: gnu/packages/linux.scm:3099 +#: gnu/packages/linux.scm:3141 msgid "" "iw is a new nl80211 based CLI configuration utility for wireless\n" "devices. It replaces @code{iwconfig}, which is deprecated." msgstr "" -#: gnu/packages/linux.scm:3149 +#: gnu/packages/linux.scm:3191 msgid "" "PowerTOP is a Linux tool to diagnose issues with power consumption and\n" "power management. In addition to being a diagnostic tool, PowerTOP also has\n" @@ -9139,19 +9256,19 @@ msgid "" "settings." msgstr "" -#: gnu/packages/linux.scm:3176 +#: gnu/packages/linux.scm:3218 msgid "" "Aumix adjusts an audio mixer from X, the console, a terminal,\n" "the command line or a script." msgstr "" -#: gnu/packages/linux.scm:3207 +#: gnu/packages/linux.scm:3249 msgid "" "Iotop is a Python program with a top like user interface to show the\n" "processes currently causing I/O." msgstr "" -#: gnu/packages/linux.scm:3265 +#: gnu/packages/linux.scm:3307 msgid "" "As a consequence of its monolithic design, file system code for Linux\n" "normally goes into the kernel itself---which is not only a robustness issue,\n" @@ -9161,7 +9278,7 @@ msgid "" "user-space processes." msgstr "" -#: gnu/packages/linux.scm:3358 +#: gnu/packages/linux.scm:3400 msgid "" "UnionFS-FUSE is a flexible union file system implementation in user\n" "space, using the FUSE library. Mounting a union file system allows you to\n" @@ -9169,7 +9286,7 @@ msgid "" "UnionFS-FUSE additionally supports copy-on-write." msgstr "" -#: gnu/packages/linux.scm:3437 +#: gnu/packages/linux.scm:3479 msgid "" "This is a file system client based on the SSH File Transfer Protocol.\n" "Since most SSH servers already support this protocol it is very easy to set\n" @@ -9177,7 +9294,7 @@ msgid "" "file system is as easy as logging into the server with an SSH client." msgstr "" -#: gnu/packages/linux.scm:3464 +#: gnu/packages/linux.scm:3506 msgid "" "archivemount is a FUSE-based file system for Unix variants,\n" "including Linux. Its purpose is to mount archives (i.e. tar, tar.gz, etc.) to a\n" @@ -9186,7 +9303,7 @@ msgid "" "compressed, transparent to other programs, without decompressing them." msgstr "" -#: gnu/packages/linux.scm:3495 +#: gnu/packages/linux.scm:3537 msgid "" "NUMA stands for Non-Uniform Memory Access, in other words a system whose\n" "memory is not all in one place. The @command{numactl} program allows you to\n" @@ -9199,26 +9316,26 @@ msgid "" "NUMA performance on your system." msgstr "" -#: gnu/packages/linux.scm:3533 +#: gnu/packages/linux.scm:3575 msgid "" "Kbd-neo provides the Neo2 keyboard layout for use with\n" "@command{loadkeys(1)} from @code{kbd(4)}." msgstr "" -#: gnu/packages/linux.scm:3599 +#: gnu/packages/linux.scm:3641 msgid "" "This package contains keytable files and keyboard utilities compatible\n" "for systems using the Linux kernel. This includes commands such as\n" "@code{loadkeys}, @code{setfont}, @code{kbdinfo}, and @code{chvt}." msgstr "" -#: gnu/packages/linux.scm:3662 +#: gnu/packages/linux.scm:3704 msgid "" "The inotify-tools packages provides a C library and command-line tools\n" "to use Linux' inotify mechanism, which allows file accesses to be monitored." msgstr "" -#: gnu/packages/linux.scm:3714 +#: gnu/packages/linux.scm:3756 msgid "" "Kmod is a set of tools to handle common tasks with Linux\n" "kernel modules like insert, remove, list, check properties, resolve\n" @@ -9229,21 +9346,21 @@ msgid "" "from the module-init-tools project." msgstr "" -#: gnu/packages/linux.scm:3769 +#: gnu/packages/linux.scm:3812 msgid "" "Early OOM is a minimalist out of memory (OOM) daemon that\n" "runs in user space and provides a more responsive and configurable alternative\n" "to the in-kernel OOM killer." msgstr "" -#: gnu/packages/linux.scm:3867 +#: gnu/packages/linux.scm:3892 msgid "" "Udev is a daemon which dynamically creates and removes\n" "device nodes from /dev/, handles hotplug events and loads drivers at boot\n" "time." msgstr "" -#: gnu/packages/linux.scm:3897 +#: gnu/packages/linux.scm:3922 msgid "" "Python-evdev provides bindings to the generic input event interface in\n" "Linux. The @code{evdev} interface serves the purpose of passing events\n" @@ -9255,7 +9372,7 @@ msgid "" "devices that can inject events directly into the input subsystem." msgstr "" -#: gnu/packages/linux.scm:3930 +#: gnu/packages/linux.scm:3955 msgid "" "Interception Tools provides a composable infrastructure on top of\n" "@code{libudev} and @code{libevdev}. The following utilities are provided:\n" @@ -9268,33 +9385,33 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/linux.scm:3979 +#: gnu/packages/linux.scm:4004 msgid "" "Dual Function Keys is a plugin for @code{interception-tools} that allows\n" "one to send arbitrary keycodes when a given key is tapped or held." msgstr "" -#: gnu/packages/linux.scm:4056 +#: gnu/packages/linux.scm:4081 msgid "" "LVM2 is the logical volume management tool set for Linux-based systems.\n" "This package includes the user-space libraries and tools, including the device\n" "mapper. Kernel components are part of Linux-libre." msgstr "" -#: gnu/packages/linux.scm:4122 +#: gnu/packages/linux.scm:4147 msgid "" "A suite of tools for manipulating the metadata of the\n" "dm-thin, dm-cache and dm-era device-mapper targets." msgstr "" -#: gnu/packages/linux.scm:4144 +#: gnu/packages/linux.scm:4169 msgid "" "This package provides an advanced monitor of critical system\n" "resources, supervises the heartbeat of processes, records deadline\n" "transgressions, and initiates a controlled reset if needed." msgstr "" -#: gnu/packages/linux.scm:4189 +#: gnu/packages/linux.scm:4214 msgid "" "Wireless Tools are used to manipulate the now-deprecated\n" "Linux Wireless Extensions; consider using @code{iw} instead. The Wireless\n" @@ -9303,35 +9420,35 @@ msgid "" "interface." msgstr "" -#: gnu/packages/linux.scm:4280 +#: gnu/packages/linux.scm:4305 msgid "" "The Central Regulatory Domain Agent (CRDA) acts as the udev helper for\n" "communication between the kernel Linux and user space for regulatory\n" "compliance." msgstr "" -#: gnu/packages/linux.scm:4350 +#: gnu/packages/linux.scm:4375 msgid "" "This package contains the wireless regulatory database for the Central\n" "Regulatory Database Agent (CRDA). The database contains information on\n" "country-specific regulations for the wireless spectrum." msgstr "" -#: gnu/packages/linux.scm:4424 +#: gnu/packages/linux.scm:4449 msgid "" "Lm-sensors is a hardware health monitoring package for Linux. It allows\n" "you to access information from temperature, voltage, and fan speed sensors.\n" "It works with most newer systems." msgstr "" -#: gnu/packages/linux.scm:4444 +#: gnu/packages/linux.scm:4469 msgid "" "@command{iucode_tool} is a utility to work with microcode packages for\n" "Intel processors. It can convert between formats, extract specific versions,\n" "create a firmware image suitable for the Linux kernel, and more." msgstr "" -#: gnu/packages/linux.scm:4475 +#: gnu/packages/linux.scm:4501 msgid "" "The i2c-tools package contains a heterogeneous set of I2C tools for\n" "Linux: a bus probing tool, a chip dumper, register-level SMBus access helpers,\n" @@ -9339,14 +9456,14 @@ msgid "" "SMBus access." msgstr "" -#: gnu/packages/linux.scm:4514 +#: gnu/packages/linux.scm:4540 msgid "" "Xsensors reads data from the libsensors library regarding hardware\n" "health such as temperature, voltage and fan speed and displays the information\n" "in a digital read-out." msgstr "" -#: gnu/packages/linux.scm:4568 +#: gnu/packages/linux.scm:4600 msgid "" "perf is a tool suite for profiling using hardware performance counters,\n" "with support in the Linux kernel. perf can instrument CPU performance\n" @@ -9355,7 +9472,7 @@ msgid "" "particular the @code{perf} command." msgstr "" -#: gnu/packages/linux.scm:4593 +#: gnu/packages/linux.scm:4625 msgid "" "pflask is a simple tool for creating Linux namespace\n" "containers. It can be used for running a command or even booting an OS inside\n" @@ -9364,7 +9481,7 @@ msgid "" "thanks to the use of namespaces." msgstr "" -#: gnu/packages/linux.scm:4678 +#: gnu/packages/linux.scm:4710 msgid "" "Singularity is a container platform supporting a number of\n" "container image formats. It can build SquashFS container images or import\n" @@ -9372,7 +9489,7 @@ msgid "" "isolation or root privileges." msgstr "" -#: gnu/packages/linux.scm:4711 +#: gnu/packages/linux.scm:4742 msgid "" "@command{hdparm} is a command-line utility to control ATA controllers and\n" "disk drives. It can increase performance and/or reliability by careful tuning\n" @@ -9386,21 +9503,21 @@ msgid "" "Translation (@dfn{SAT}) are also supported." msgstr "" -#: gnu/packages/linux.scm:4750 +#: gnu/packages/linux.scm:4782 msgid "" "Nvme-cli is a utility to provide standards compliant tooling\n" "for NVM-Express drives. It was made specifically for Linux as it relies on the\n" "IOCTLs defined by the mainline kernel driver." msgstr "" -#: gnu/packages/linux.scm:4776 +#: gnu/packages/linux.scm:4808 msgid "" "rfkill is a simple tool for accessing the rfkill device interface,\n" "which is used to enable and disable wireless networking devices, typically\n" "WLAN, Bluetooth and mobile broadband." msgstr "" -#: gnu/packages/linux.scm:4798 +#: gnu/packages/linux.scm:4830 msgid "" "@code{acpi} attempts to replicate the functionality of the\n" "\"old\" @code{apm} command on ACPI systems, including battery and thermal\n" @@ -9408,7 +9525,7 @@ msgid "" "about ACPI devices." msgstr "" -#: gnu/packages/linux.scm:4819 +#: gnu/packages/linux.scm:4851 msgid "" "acpid is designed to notify user-space programs of Advanced\n" "Configuration and Power Interface (ACPI) events. acpid should be started\n" @@ -9417,34 +9534,34 @@ msgid "" "specified in /etc/acpi/events and execute the rules that match the event." msgstr "" -#: gnu/packages/linux.scm:4843 +#: gnu/packages/linux.scm:4875 msgid "" "These are a set of utilities built upon sysfs, a virtual file system in\n" "Linux kernel versions 2.5+ that exposes a system's device tree. The package\n" "also contains the libsysfs library." msgstr "" -#: gnu/packages/linux.scm:4886 +#: gnu/packages/linux.scm:4918 msgid "" "The cpufrequtils suite contains utilities to retrieve CPU frequency\n" "information, and set the CPU frequency if supported, using the cpufreq\n" "capabilities of the Linux kernel." msgstr "" -#: gnu/packages/linux.scm:4922 +#: gnu/packages/linux.scm:4954 msgid "" "This package provides many of the missing pieces in GNU\n" "libc. Most notably the string functions: strlcpy(3), strlcat(3) and the *BSD\n" "sys/queue.h and sys/tree.h API's." msgstr "" -#: gnu/packages/linux.scm:4945 +#: gnu/packages/linux.scm:4977 msgid "" "This package provides small event loop that wraps the\n" "epoll family of APIs." msgstr "" -#: gnu/packages/linux.scm:4966 +#: gnu/packages/linux.scm:4998 msgid "" "Libraw1394 is the only supported interface to the kernel side raw1394 of\n" "the Linux IEEE-1394 subsystem, which provides direct access to the connected\n" @@ -9453,26 +9570,26 @@ msgid "" "protocol in question." msgstr "" -#: gnu/packages/linux.scm:4992 +#: gnu/packages/linux.scm:5024 msgid "" "Libavc1394 is a programming interface to the AV/C specification from\n" "the 1394 Trade Association. AV/C stands for Audio/Video Control." msgstr "" -#: gnu/packages/linux.scm:5016 +#: gnu/packages/linux.scm:5048 msgid "" "The libiec61883 library provides a higher level API for streaming DV,\n" "MPEG-2 and audio over Linux IEEE 1394." msgstr "" -#: gnu/packages/linux.scm:5067 +#: gnu/packages/linux.scm:5099 msgid "" "mdadm is a tool for managing Linux Software RAID arrays. It can create,\n" "assemble, report on, and monitor arrays. It can also move spares between raid\n" "arrays when needed." msgstr "" -#: gnu/packages/linux.scm:5199 +#: gnu/packages/linux.scm:5231 msgid "" "This package provides the following binaries to drive the\n" "Linux Device Mapper multipathing driver:\n" @@ -9485,66 +9602,66 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:5244 +#: gnu/packages/linux.scm:5288 msgid "" "This library enables userspace to use Linux kernel asynchronous I/O\n" "system calls, important for the performance of databases and other advanced\n" "applications." msgstr "" -#: gnu/packages/linux.scm:5287 +#: gnu/packages/linux.scm:5331 msgid "" "Blktrace is a block layer IO tracing mechanism which provides\n" "detailed information about request queue operations to user space. It extracts\n" "event traces from the kernel (via the relaying through the debug file system)." msgstr "" -#: gnu/packages/linux.scm:5312 +#: gnu/packages/linux.scm:5356 msgid "" "The SBC is a digital audio encoder and decoder used to transfer data to\n" "Bluetooth audio output devices like headphones or loudspeakers." msgstr "" -#: gnu/packages/linux.scm:5379 +#: gnu/packages/linux.scm:5423 msgid "" "BlueZ provides support for the core Bluetooth layers and protocols. It\n" "is flexible, efficient and uses a modular implementation." msgstr "" -#: gnu/packages/linux.scm:5403 +#: gnu/packages/linux.scm:5447 msgid "" "This package provides a FUSE-based file system that provides read and\n" "write access to exFAT devices." msgstr "" -#: gnu/packages/linux.scm:5426 +#: gnu/packages/linux.scm:5470 msgid "" "FuseISO is a FUSE module to mount ISO file system images (.iso, .nrg,\n" ".bin, .mdf and .img files). It supports plain ISO9660 Level 1 and 2, Rock\n" "Ridge, Joliet, and zisofs." msgstr "" -#: gnu/packages/linux.scm:5480 +#: gnu/packages/linux.scm:5524 msgid "" "The GPM (general-purpose mouse) daemon is a mouse server for\n" "applications running on the Linux console. It allows users to select items\n" "and copy/paste text in the console and in xterm." msgstr "" -#: gnu/packages/linux.scm:5551 +#: gnu/packages/linux.scm:5595 msgid "" "Btrfs is a @dfn{copy-on-write} (CoW) file system for Linux\n" "aimed at implementing advanced features while focusing on fault tolerance,\n" "repair and easy administration." msgstr "" -#: gnu/packages/linux.scm:5585 +#: gnu/packages/linux.scm:5629 msgid "" "This package provides the statically-linked @command{btrfs}\n" "from the btrfs-progs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5617 +#: gnu/packages/linux.scm:5661 msgid "" "Cramfs is a Linux file system designed to be simple, small,\n" "and to compress things well. It is used on a number of embedded systems and\n" @@ -9552,7 +9669,7 @@ msgid "" "blocks and random block placement." msgstr "" -#: gnu/packages/linux.scm:5652 +#: gnu/packages/linux.scm:5696 msgid "" "@command{compsize} takes a list of files (given as\n" "arguments) on a Btrfs file system and measures used compression types and\n" @@ -9569,20 +9686,20 @@ msgid "" "obviously it can be shared with files outside our set)." msgstr "" -#: gnu/packages/linux.scm:5700 +#: gnu/packages/linux.scm:5744 msgid "" "F2FS, the Flash-Friendly File System, is a modern file system\n" "designed to be fast and durable on flash devices such as solid-state\n" "disks and SD cards. This package provides the userland utilities." msgstr "" -#: gnu/packages/linux.scm:5790 +#: gnu/packages/linux.scm:5834 msgid "" "This package provides statically-linked fsck.f2fs command taken\n" "from the f2fs-tools package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5821 +#: gnu/packages/linux.scm:5865 msgid "" "Prevents shock damage to the internal spinning hard drive(s) of some\n" "HP and Dell laptops. When sudden movement is detected, all input/output\n" @@ -9592,7 +9709,7 @@ msgid "" "feature, and a laptop with an accelerometer. It has no effect on SSDs." msgstr "" -#: gnu/packages/linux.scm:5879 +#: gnu/packages/linux.scm:5923 msgid "" "Thinkfan is a simple fan control program. It reads temperatures,\n" "checks them against configured limits and switches to appropriate (also\n" @@ -9601,7 +9718,7 @@ msgid "" "from userspace." msgstr "" -#: gnu/packages/linux.scm:5935 +#: gnu/packages/linux.scm:5979 msgid "" "Tpacpi-bat is a command-line interface to control battery charging on\n" "@uref{https://github.com/teleshoes/tpacpi-bat/wiki/Supported-Hardware, Lenovo\n" @@ -9616,7 +9733,7 @@ msgid "" "supported." msgstr "" -#: gnu/packages/linux.scm:5979 +#: gnu/packages/linux.scm:6023 msgid "" "Tmon is a tool to interact with the complex thermal subsystem of the\n" "kernel Linux. It helps visualize thermal relationships and real-time thermal\n" @@ -9633,7 +9750,7 @@ msgid "" "by hand is no trivial task: @command{tmon} aims to make it understandable." msgstr "" -#: gnu/packages/linux.scm:6021 +#: gnu/packages/linux.scm:6065 msgid "" "Turbostat reports x86 processor topology, frequency, idle power state\n" "statistics, temperature, and power consumption. Some information is unavailable\n" @@ -9648,20 +9765,20 @@ msgid "" "invocations of itself." msgstr "" -#: gnu/packages/linux.scm:6080 +#: gnu/packages/linux.scm:6124 msgid "" "NTFS-3G provides read-write access to NTFS file systems, which are\n" "commonly found on Microsoft Windows. It is implemented as a FUSE file system.\n" "The package provides additional NTFS tools." msgstr "" -#: gnu/packages/linux.scm:6127 +#: gnu/packages/linux.scm:6171 msgid "" "This package provides a statically linked @command{ntfsfix} taken\n" "from the ntfs-3g package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:6174 +#: gnu/packages/linux.scm:6218 msgid "" "This package provides userspace components for the InfiniBand\n" "subsystem of the Linux kernel. Specifically it contains userspace\n" @@ -9681,7 +9798,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6228 +#: gnu/packages/linux.scm:6272 msgid "" "This is a collection of tests written over uverbs intended for\n" "use as a performance micro-benchmark. The tests may be used for hardware or\n" @@ -9697,20 +9814,20 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6270 +#: gnu/packages/linux.scm:6314 msgid "" "Monitor a hardware random number generator, and supply entropy\n" "from that to the system kernel's @file{/dev/random} machinery." msgstr "" -#: gnu/packages/linux.scm:6312 +#: gnu/packages/linux.scm:6356 msgid "" "cpupower is a set of user-space tools that use the cpufreq feature of the\n" "Linux kernel to retrieve and control processor features related to power saving,\n" "such as frequency and voltage scaling." msgstr "" -#: gnu/packages/linux.scm:6344 +#: gnu/packages/linux.scm:6388 msgid "" "@command{x86_energy_perf_policy} displays and updates energy-performance\n" "policy settings specific to Intel Architecture Processors. Settings are\n" @@ -9718,7 +9835,7 @@ msgid "" "cpufreq sub-system is enabled or not." msgstr "" -#: gnu/packages/linux.scm:6370 +#: gnu/packages/linux.scm:6414 msgid "" "haveged generates an unpredictable stream of random numbers for use by\n" "Linux's @file{/dev/random} and @file{/dev/urandom} devices. The kernel's\n" @@ -9736,7 +9853,7 @@ msgid "" "not as a replacement for it." msgstr "" -#: gnu/packages/linux.scm:6456 +#: gnu/packages/linux.scm:6500 msgid "" "eCryptfs is a POSIX-compliant stacked cryptographic file system for Linux.\n" "Each file's cryptographic meta-data is stored inside the file itself, along\n" @@ -9746,7 +9863,7 @@ msgid "" "2.6.19. This package contains the userland utilities to manage it." msgstr "" -#: gnu/packages/linux.scm:6488 +#: gnu/packages/linux.scm:6532 msgid "" "Libnfsidmap is a library holding mulitiple methods of\n" "mapping names to ids and visa versa, mainly for NFSv4. It provides an\n" @@ -9754,13 +9871,13 @@ msgid "" "the default @code{nsswitch} and the experimental @code{umich_ldap}." msgstr "" -#: gnu/packages/linux.scm:6524 +#: gnu/packages/linux.scm:6568 msgid "" "Tools for loading and managing Linux kernel modules, such as\n" "@code{modprobe}, @code{insmod}, @code{lsmod}, and more." msgstr "" -#: gnu/packages/linux.scm:6565 +#: gnu/packages/linux.scm:6609 msgid "" "The mcelog daemon logs memory, I/O, CPU, and other hardware errors on x86\n" "systems running the kernel Linux. It can also perform user-defined tasks, such\n" @@ -9768,13 +9885,13 @@ msgid "" "exceeded." msgstr "" -#: gnu/packages/linux.scm:6596 +#: gnu/packages/linux.scm:6640 msgid "" "This package provides utilities for testing, partitioning, etc\n" "of flash storage." msgstr "" -#: gnu/packages/linux.scm:6628 +#: gnu/packages/linux.scm:6672 msgid "" "The libseccomp library provides an easy to use, platform\n" "independent, interface to the Linux Kernel's syscall filtering mechanism. The\n" @@ -9784,7 +9901,7 @@ msgid "" "developers." msgstr "" -#: gnu/packages/linux.scm:6671 +#: gnu/packages/linux.scm:6715 msgid "" "RadeonTop monitors resource consumption on supported AMD\n" "Radeon Graphics Processing Units (GPUs), either in real time as bar graphs on\n" @@ -9794,13 +9911,13 @@ msgid "" "under OpenGL graphics workloads." msgstr "" -#: gnu/packages/linux.scm:6718 +#: gnu/packages/linux.scm:6762 msgid "" "This package provides a library and a command line\n" "interface to the variable facility of UEFI boot firmware." msgstr "" -#: gnu/packages/linux.scm:6755 +#: gnu/packages/linux.scm:6799 msgid "" "@code{efibootmgr} is a user-space application to modify the Intel\n" "Extensible Firmware Interface (EFI) Boot Manager. This application can\n" @@ -9808,7 +9925,7 @@ msgid "" "running boot option, and more." msgstr "" -#: gnu/packages/linux.scm:6791 +#: gnu/packages/linux.scm:6835 msgid "" "The sysstat utilities are a collection of performance\n" "monitoring tools for Linux. These include @code{mpstat}, @code{iostat},\n" @@ -9816,7 +9933,7 @@ msgid "" "@code{sadf} and @code{sa}." msgstr "" -#: gnu/packages/linux.scm:6832 +#: gnu/packages/linux.scm:6876 msgid "" "Light is a program to send commands to screen backlight controllers\n" "under GNU/Linux. Features include:\n" @@ -9830,7 +9947,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/linux.scm:6880 +#: gnu/packages/linux.scm:6924 msgid "" "This program allows you read and control device brightness. Devices\n" "include backlight and LEDs. It can also preserve current brightness before\n" @@ -9840,7 +9957,7 @@ msgid "" "interface in sysfs, which can be accomplished with the included udev rules." msgstr "" -#: gnu/packages/linux.scm:7007 +#: gnu/packages/linux.scm:7048 msgid "" "TLP is a power management tool for Linux. It comes with\n" "a default configuration already optimized for battery life. Nevertheless,\n" @@ -9848,7 +9965,7 @@ msgid "" "every time the power supply source is changed." msgstr "" -#: gnu/packages/linux.scm:7073 +#: gnu/packages/linux.scm:7114 msgid "" "The Python scripts in this project generate a GTK-UI to change\n" "TLP configuration files easily. It aims to protect users from setting\n" @@ -9856,7 +9973,7 @@ msgid "" "configuration values." msgstr "" -#: gnu/packages/linux.scm:7099 +#: gnu/packages/linux.scm:7140 msgid "" "@command{lshw} (Hardware Lister) is a small tool to provide\n" "detailed information on the hardware configuration of the machine.\n" @@ -9866,7 +9983,7 @@ msgid "" "machines (PowerMac G4 is known to work)." msgstr "" -#: gnu/packages/linux.scm:7123 +#: gnu/packages/linux.scm:7164 msgid "" "Libmnl is a minimalistic user-space library oriented to\n" "Netlink developers. There are a lot of common tasks in parsing, validating,\n" @@ -9875,7 +9992,7 @@ msgid "" "re-use code and to avoid re-inventing the wheel." msgstr "" -#: gnu/packages/linux.scm:7148 +#: gnu/packages/linux.scm:7189 msgid "" "Libnftnl is a userspace library providing a low-level netlink\n" "programming interface to the in-kernel nf_tables subsystem. The library\n" @@ -9883,7 +10000,7 @@ msgid "" "used by nftables." msgstr "" -#: gnu/packages/linux.scm:7194 +#: gnu/packages/linux.scm:7235 msgid "" "nftables is the project that aims to replace the existing\n" "{ip,ip6,arp,eb}tables framework. Basically, this project provides a new packet\n" @@ -9893,7 +10010,7 @@ msgid "" "userspace queueing component and the logging subsystem." msgstr "" -#: gnu/packages/linux.scm:7336 +#: gnu/packages/linux.scm:7377 msgid "" "PRoot is a user-space implementation of @code{chroot}, @code{mount --bind},\n" "and @code{binfmt_misc}. This means that users don't need any privileges or\n" @@ -9906,7 +10023,7 @@ msgid "" "available in the kernel Linux." msgstr "" -#: gnu/packages/linux.scm:7399 +#: gnu/packages/linux.scm:7437 msgid "" "cpuid dumps detailed information about the CPU(s) gathered\n" "from the CPUID instruction, and also determines the exact model of CPU(s). It\n" @@ -9914,14 +10031,14 @@ msgid "" "NexGen, Rise, and SiS CPUs." msgstr "" -#: gnu/packages/linux.scm:7426 +#: gnu/packages/linux.scm:7464 msgid "" "jmtpfs uses FUSE (file system in userspace) to provide access\n" "to data over the Media Transfer Protocol (MTP). Unprivileged users can mount\n" "the MTP device as a file system." msgstr "" -#: gnu/packages/linux.scm:7453 +#: gnu/packages/linux.scm:7491 msgid "" "Procenv is a command-line tool that displays as much detail about\n" "itself and its environment as possible. It can be used as a test\n" @@ -9929,7 +10046,7 @@ msgid "" "comparing system environments." msgstr "" -#: gnu/packages/linux.scm:7482 +#: gnu/packages/linux.scm:7520 msgid "" "OpenFabrics Interfaces (OFI) is a framework focused on exporting fabric\n" "communication services to applications. OFI is best described as a collection\n" @@ -9943,7 +10060,7 @@ msgid "" "libraries, which are often integrated directly into libfabric." msgstr "" -#: gnu/packages/linux.scm:7544 +#: gnu/packages/linux.scm:7582 msgid "" "The PSM Messaging API, or PSM API, is Intel's low-level user-level\n" "communications interface for the True Scale family of products. PSM users are\n" @@ -9951,14 +10068,14 @@ msgid "" "interfaces in parallel environments." msgstr "" -#: gnu/packages/linux.scm:7587 +#: gnu/packages/linux.scm:7625 msgid "" "snapscreenshot saves a screenshot of one or more Linux text consoles as a\n" "Targa (@dfn{.tga}) image. It can be used by anyone with read access to the\n" "relevant @file{/dev/vcs*} file(s)." msgstr "" -#: gnu/packages/linux.scm:7641 +#: gnu/packages/linux.scm:7679 msgid "" "fbcat saves the contents of the Linux framebuffer (@file{/dev/fb*}), or\n" "a dump therof. It supports a wide range of drivers and pixel formats.\n" @@ -9970,14 +10087,14 @@ msgid "" "emulates the behaviour of Gunnar Monell's older fbgrab utility." msgstr "" -#: gnu/packages/linux.scm:7672 +#: gnu/packages/linux.scm:7710 msgid "" "Control groups is Linux kernel method for process resource\n" "restriction, permission handling and more. This package provides userspace\n" "interface to this kernel feature." msgstr "" -#: gnu/packages/linux.scm:7707 +#: gnu/packages/linux.scm:7745 msgid "" "mbpfan is a fan control daemon for Apple Macbooks. It uses input from\n" "the @code{coretemp} module and sets the fan speed using the @code{applesmc}\n" @@ -9985,7 +10102,7 @@ msgid "" "privileges." msgstr "" -#: gnu/packages/linux.scm:7751 +#: gnu/packages/linux.scm:7789 msgid "" "This package is low-level user-level Intel's communications interface.\n" "The PSM2 API is a high-performance vendor-specific protocol that provides a\n" @@ -9993,7 +10110,7 @@ msgid "" "high-speed networking devices." msgstr "" -#: gnu/packages/linux.scm:7794 +#: gnu/packages/linux.scm:7832 msgid "" "This package provides a library called libpfm4, which is used to develop\n" "monitoring tools exploiting the performance monitoring events such as those\n" @@ -10008,7 +10125,7 @@ msgid "" "introduced in Linux 2.6.31." msgstr "" -#: gnu/packages/linux.scm:7824 +#: gnu/packages/linux.scm:7862 msgid "" "@code{libnfnetlink} is the low-level library for netfilter related\n" "kernel/userspace communication. It provides a generic messaging\n" @@ -10017,7 +10134,7 @@ msgid "" "management tools in userspace." msgstr "" -#: gnu/packages/linux.scm:7851 +#: gnu/packages/linux.scm:7889 msgid "" "The netlink package provides a simple netlink library for\n" "Go. Netlink is the interface a user-space program in Linux uses to\n" @@ -10025,7 +10142,7 @@ msgid "" "IP addresses and routes, and configure IPsec." msgstr "" -#: gnu/packages/linux.scm:7891 +#: gnu/packages/linux.scm:7929 msgid "" "The inih (INI Not Invented Here) library is a simple .INI file\n" "parser written in C. It's only a couple of pages of code, and it was designed to\n" @@ -10034,19 +10151,19 @@ msgid "" "822-style multi-line syntax and name: value entries." msgstr "" -#: gnu/packages/linux.scm:7942 +#: gnu/packages/linux.scm:7980 msgid "" "This package provides commands to create and check XFS\n" "file systems." msgstr "" -#: gnu/packages/linux.scm:7998 +#: gnu/packages/linux.scm:8036 msgid "" "This package provides a statically linked @command{xfs_repair} taken\n" "from the xfsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:8034 +#: gnu/packages/linux.scm:8072 msgid "" "This package provides a program to generate an ext2\n" "file system as a normal (non-root) user. It does not require you to mount\n" @@ -10054,7 +10171,7 @@ msgid "" "the superuser to make device nodes." msgstr "" -#: gnu/packages/linux.scm:8129 +#: gnu/packages/linux.scm:8167 msgid "" "@command{fakeroot} runs a command in an environment where it appears to\n" "have root privileges for file manipulation. This is useful for allowing users\n" @@ -10067,7 +10184,7 @@ msgid "" "without using the archiver." msgstr "" -#: gnu/packages/linux.scm:8169 +#: gnu/packages/linux.scm:8207 msgid "" "@command{fakechroot} runs a command in an environment were is additional\n" "possibility to use @code{chroot} command without root privileges. This is\n" @@ -10078,13 +10195,13 @@ msgid "" "set as @code{LD_PRELOAD} to override the C library file system functions." msgstr "" -#: gnu/packages/linux.scm:8215 +#: gnu/packages/linux.scm:8253 msgid "" "inputattach dispatches input events from several device\n" "types and interfaces and translates so that the X server can use them." msgstr "" -#: gnu/packages/linux.scm:8251 +#: gnu/packages/linux.scm:8289 msgid "" "PipeWire is a project that aims to greatly improve handling of audio and\n" "video under Linux. It aims to support the usecases currently handled by both\n" @@ -10096,7 +10213,7 @@ msgid "" "of Linux application development." msgstr "" -#: gnu/packages/linux.scm:8318 +#: gnu/packages/linux.scm:8356 msgid "" "WirePlumber is a modular session / policy manager for\n" "PipeWire and a GObject-based high-level library that wraps PipeWire's API,\n" @@ -10104,7 +10221,7 @@ msgid "" "tools for managing PipeWire." msgstr "" -#: gnu/packages/linux.scm:8357 +#: gnu/packages/linux.scm:8395 msgid "" "The Embedded Linux* Library (ELL) provides core, low-level\n" "functionality for system daemons. It typically has no dependencies other than\n" @@ -10113,7 +10230,7 @@ msgid "" "platforms, it is not limited to resource-constrained systems." msgstr "" -#: gnu/packages/linux.scm:8386 +#: gnu/packages/linux.scm:8424 msgid "" "This package provides the @code{kexec} program and ancillary\n" "utilities. Using @code{kexec}, it is possible to boot directly into a new\n" @@ -10121,7 +10238,7 @@ msgid "" "system boot process." msgstr "" -#: gnu/packages/linux.scm:8419 +#: gnu/packages/linux.scm:8457 msgid "" "@code{cachefilesd} is a userspace daemon that manages the\n" "cache data store that is used by network file systems such as @code{AFS} and\n" @@ -10129,14 +10246,14 @@ msgid "" "persistent over reboots." msgstr "" -#: gnu/packages/linux.scm:8463 +#: gnu/packages/linux.scm:8501 msgid "" "Libbpf supports building BPF CO-RE-enabled applications, which, in\n" "contrast to BCC, do not require the Clang/LLVM runtime or linux kernel\n" "headers." msgstr "" -#: gnu/packages/linux.scm:8541 +#: gnu/packages/linux.scm:8579 msgid "" "BCC is a toolkit for creating efficient kernel tracing and manipulation\n" "programs, and includes several useful tools and examples. It makes use of\n" @@ -10145,7 +10262,7 @@ msgid "" "and above." msgstr "" -#: gnu/packages/linux.scm:8577 +#: gnu/packages/linux.scm:8615 msgid "" "bpftrace is a high-level tracing language for Linux enhanced Berkeley\n" "Packet Filter (eBPF) available in recent Linux kernels (4.x). bpftrace uses\n" @@ -10157,14 +10274,14 @@ msgid "" "created by Alastair Robertson." msgstr "" -#: gnu/packages/linux.scm:8609 +#: gnu/packages/linux.scm:8647 msgid "" "This package provides a Linux kernel module that will\n" "provide a serial device @code{/dev/ttyebus} with almost no latency upon\n" "receiving. It is dedicated to the PL011 UART of the Raspberry Pi." msgstr "" -#: gnu/packages/linux.scm:8635 +#: gnu/packages/linux.scm:8673 msgid "" "IP sets are a framework inside the Linux 2.4.x and 2.6.x kernel which\n" "can be administered by the ipset utility. Depending on the type,\n" @@ -10185,7 +10302,7 @@ msgid "" "then IP sets may be the proper tool for you." msgstr "" -#: gnu/packages/linux.scm:8682 +#: gnu/packages/linux.scm:8720 msgid "" "This is the io_uring library, liburing. liburing provides\n" "helpers to setup and teardown io_uring instances, and also a simplified\n" @@ -10193,14 +10310,14 @@ msgid "" "kernel side implementation." msgstr "" -#: gnu/packages/linux.scm:8710 +#: gnu/packages/linux.scm:8748 msgid "" "@acronym{EROFS, The Enhanced Read-Only File System} is a compressed,\n" "read-only file system optimized for resource-scarce devices. This package\n" "provides user-space tools for creating EROFS file systems." msgstr "" -#: gnu/packages/linux.scm:8754 +#: gnu/packages/linux.scm:8792 msgid "" "The @code{rasdaemon} daemon monitors platform @acronym{RAS, Reliability\n" "Availability and Serviceability} reports from Linux kernel trace events.\n" @@ -10208,7 +10325,7 @@ msgid "" "through standard log mechanisms like syslog." msgstr "" -#: gnu/packages/linux.scm:8788 +#: gnu/packages/linux.scm:8826 msgid "" "This package provides a C library with C++/Python bindings and\n" "command-line tools for interacting with GPIO devices that avoids the usage of\n" @@ -10250,33 +10367,33 @@ msgstr "" "је Лоут језик високог нивоа, потпуно функционалан, резултат пројекта\n" "осмогодишњег истраживања који се вратио на почетак." -#: gnu/packages/messaging.scm:181 +#: gnu/packages/messaging.scm:183 msgid "" "OMEMO-wget is a tool to handle cryptographic URLs, generated\n" "by @acronym{OMEMO, OMEMO Multi-End Message and Object Encryption}, during\n" "XMPP-based sessions." msgstr "" -#: gnu/packages/messaging.scm:237 +#: gnu/packages/messaging.scm:239 msgid "" "Psi is a capable XMPP client aimed at experienced users.\n" "Its design goals are simplicity and stability." msgstr "" -#: gnu/packages/messaging.scm:295 +#: gnu/packages/messaging.scm:297 msgid "" "GNT is an ncurses toolkit for creating text-mode graphical\n" "user interfaces in a fast and easy way. It is based on GLib and ncurses." msgstr "" -#: gnu/packages/messaging.scm:346 +#: gnu/packages/messaging.scm:348 msgid "" "LibGadu is library for handling Gadu-Gadu instant messenger\n" "protocol. The library is written in C and aims to be operating system and\n" "environment independent." msgstr "" -#: gnu/packages/messaging.scm:381 +#: gnu/packages/messaging.scm:383 msgid "" "SILC (Secure Internet Live Conferencing) is a modern and secure\n" "conferencing protocol. It provides all the common conferencing services like\n" @@ -10284,14 +10401,14 @@ msgid "" "conferencing." msgstr "" -#: gnu/packages/messaging.scm:427 +#: gnu/packages/messaging.scm:429 msgid "" "QXmpp is a XMPP client and server library written in C++ and uses the Qt\n" "framework. It builds XMPP clients complying with the XMPP Compliance Suites\n" "2021 for IM and Advanced Mobile." msgstr "" -#: gnu/packages/messaging.scm:454 +#: gnu/packages/messaging.scm:456 msgid "" "Meanwhile is a library for connecting to a LIM (Lotus Instant\n" "Messaging, formerly Lotus Sametime, formerly VPBuddy) community. It uses a\n" @@ -10299,7 +10416,7 @@ msgid "" "TCP sessions from existing clients." msgstr "" -#: gnu/packages/messaging.scm:500 +#: gnu/packages/messaging.scm:502 msgid "" "Poezio is a free console XMPP client (the protocol on which\n" "the Jabber IM network is built).\n" @@ -10312,7 +10429,7 @@ msgid "" "powerful, standard and open protocol." msgstr "" -#: gnu/packages/messaging.scm:533 +#: gnu/packages/messaging.scm:535 msgid "" "OTR allows you to have private conversations over instant\n" "messaging by providing: (1) Encryption: No one else can read your instant\n" @@ -10325,7 +10442,7 @@ msgid "" "your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:572 +#: gnu/packages/messaging.scm:574 msgid "" "libsignal-protocol-c is an implementation of a ratcheting\n" "forward secrecy protocol that works in synchronous and asynchronous\n" @@ -10333,20 +10450,20 @@ msgid "" "end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:609 +#: gnu/packages/messaging.scm:611 msgid "" "This is a client library for @code{libsignal-protocol-c}.\n" "It implements the necessary interfaces using @code{libgcrypt} and\n" "@code{sqlite}." msgstr "" -#: gnu/packages/messaging.scm:641 +#: gnu/packages/messaging.scm:643 msgid "" "This library implements @acronym{OMEMO, OMEMO Multi-End\n" "Message and Object Encryption} of XMPP (XEP-0384) in C." msgstr "" -#: gnu/packages/messaging.scm:681 +#: gnu/packages/messaging.scm:683 msgid "" "BitlBee brings IM (instant messaging) to IRC clients, for\n" "people who have an IRC client running all the time and don't want to run an\n" @@ -10356,20 +10473,20 @@ msgid "" "identi.ca and status.net)." msgstr "" -#: gnu/packages/messaging.scm:748 +#: gnu/packages/messaging.scm:750 msgid "" "Bitlbee-discord is a plugin for Bitlbee which provides\n" "access to servers running the Discord protocol." msgstr "" -#: gnu/packages/messaging.scm:794 +#: gnu/packages/messaging.scm:796 msgid "" "Purple-Mattermost is a plug-in for Purple, the instant messaging library\n" "used by Pidgin and Bitlbee, among others, to access\n" "@uref{https://mattermost.com/, Mattermost} servers." msgstr "" -#: gnu/packages/messaging.scm:852 +#: gnu/packages/messaging.scm:854 msgid "" "HexChat lets you connect to multiple IRC networks at once. The main\n" "window shows the list of currently connected networks and their channels, the\n" @@ -10378,7 +10495,7 @@ msgid "" "dictionaries. HexChat can be extended with multiple addons." msgstr "" -#: gnu/packages/messaging.scm:917 +#: gnu/packages/messaging.scm:919 msgid "" "ngIRCd is a lightweight @dfn{Internet Relay Chat} (IRC) server for small\n" "or private networks. It is easy to configure, can cope with dynamic IP\n" @@ -10386,13 +10503,13 @@ msgid "" "authentication." msgstr "" -#: gnu/packages/messaging.scm:1024 +#: gnu/packages/messaging.scm:1026 msgid "" "Pidgin is a modular instant messaging client that supports\n" "many popular chat protocols." msgstr "" -#: gnu/packages/messaging.scm:1064 +#: gnu/packages/messaging.scm:1066 msgid "" "Pidgin-OTR is a plugin that adds support for OTR to the Pidgin\n" "instant messaging client. OTR (Off-the-Record) Messaging allows you to have\n" @@ -10406,7 +10523,7 @@ msgid "" "control of your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:1118 +#: gnu/packages/messaging.scm:1120 msgid "" "ZNC is an @dfn{IRC network bouncer} or @dfn{BNC}. It can\n" "detach the client from the actual IRC server, and also from selected channels.\n" @@ -10414,41 +10531,41 @@ msgid "" "simultaneously and therefore appear under the same nickname on IRC." msgstr "" -#: gnu/packages/messaging.scm:1147 +#: gnu/packages/messaging.scm:1149 msgid "" "Python-nbxmpp is a Python library that provides a way for\n" "Python applications to use the XMPP network. This library was initially a fork\n" "of xmpppy." msgstr "" -#: gnu/packages/messaging.scm:1274 +#: gnu/packages/messaging.scm:1276 msgid "" "Gajim aims to be an easy to use and fully-featured XMPP chat\n" "client. It is extensible via plugins, supports end-to-end encryption (OMEMO\n" "and OpenPGP) and available in 29 languages." msgstr "" -#: gnu/packages/messaging.scm:1309 +#: gnu/packages/messaging.scm:1311 msgid "" "Gajim-OMEMO is a plugin that adds support for the OMEMO\n" "Encryption to Gajim. OMEMO is an XMPP Extension Protocol (XEP) for secure\n" "multi-client end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:1344 +#: gnu/packages/messaging.scm:1346 msgid "" "Gajim-OpenPGP is a plugin that adds support for the OpenPGP\n" "Encryption to Gajim." msgstr "" -#: gnu/packages/messaging.scm:1418 +#: gnu/packages/messaging.scm:1420 msgid "" "Dino is a chat client for the desktop. It focuses on providing\n" "a minimal yet reliable Jabber/XMPP experience and having encryption enabled by\n" "default." msgstr "" -#: gnu/packages/messaging.scm:1505 +#: gnu/packages/messaging.scm:1507 msgid "" "Prosody is a modern XMPP communication server. It aims to\n" "be easy to set up and configure, and efficient with system resources.\n" @@ -10457,43 +10574,43 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/messaging.scm:1540 +#: gnu/packages/messaging.scm:1542 msgid "" "This module implements XEP-0363: it allows clients to\n" "upload files over HTTP." msgstr "" -#: gnu/packages/messaging.scm:1572 +#: gnu/packages/messaging.scm:1574 msgid "" "This module implements XEP-0198: when supported by both\n" "the client and server, it can allow clients to resume a disconnected session,\n" "and prevent message loss." msgstr "" -#: gnu/packages/messaging.scm:1601 +#: gnu/packages/messaging.scm:1603 msgid "C library implementation of the Tox encrypted messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1633 +#: gnu/packages/messaging.scm:1635 msgid "" "Official fork of the C library implementation of the Tox encrypted\n" "messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1687 +#: gnu/packages/messaging.scm:1689 msgid "" "uTox is a lightweight Tox client. Tox is a distributed and secure\n" "instant messenger with audio and video chat capabilities." msgstr "" -#: gnu/packages/messaging.scm:1750 +#: gnu/packages/messaging.scm:1752 msgid "" "qTox is a Tox client that follows the Tox design\n" "guidelines. It provides an easy to use application that allows you to\n" "connect with friends and family without anyone else listening in." msgstr "" -#: gnu/packages/messaging.scm:1772 +#: gnu/packages/messaging.scm:1774 msgid "" "Ytalk is a replacement for the BSD talk program. Its main\n" "advantage is the ability to communicate with any arbitrary number of users at\n" @@ -10501,7 +10618,7 @@ msgid "" "with several different talk daemons at the same time." msgstr "" -#: gnu/packages/messaging.scm:1796 +#: gnu/packages/messaging.scm:1798 msgid "" "gloox is a full-featured Jabber/XMPP client library,\n" "written in ANSI C++. It makes writing spec-compliant clients easy\n" @@ -10509,7 +10626,7 @@ msgid "" "into existing applications." msgstr "" -#: gnu/packages/messaging.scm:1866 +#: gnu/packages/messaging.scm:1868 msgid "" "@code{Net::PSYC} with support for TCP, UDP, Event.pm, @code{IO::Select} and\n" "Gtk2 event loops. This package includes 12 applications and additional scripts:\n" @@ -10517,14 +10634,14 @@ msgid "" "for @uref{https://torproject.org,tor} router) and many more." msgstr "" -#: gnu/packages/messaging.scm:1907 +#: gnu/packages/messaging.scm:1909 msgid "" "@code{libpsyc} is a PSYC library in C which implements\n" "core aspects of PSYC, useful for all kinds of clients and servers\n" "including psyced." msgstr "" -#: gnu/packages/messaging.scm:1949 +#: gnu/packages/messaging.scm:1951 msgid "" "Loudmouth is a lightweight and easy-to-use C library for programming\n" "with the XMPP (formerly known as Jabber) protocol. It is designed to be\n" @@ -10532,7 +10649,7 @@ msgid "" "protocol allows." msgstr "" -#: gnu/packages/messaging.scm:1991 +#: gnu/packages/messaging.scm:1993 msgid "" "Mcabber is a small XMPP (Jabber) console client, which includes features\n" "such as SASL and TLS support, @dfn{Multi-User Chat} (MUC) support, logging,\n" @@ -10540,7 +10657,7 @@ msgid "" "support, and more." msgstr "" -#: gnu/packages/messaging.scm:2039 +#: gnu/packages/messaging.scm:2041 msgid "" "GNU Freetalk is a command-line Jabber/XMPP chat client. It notably uses\n" "the Readline library to handle input, so it features convenient navigation of\n" @@ -10548,27 +10665,27 @@ msgid "" "is also scriptable and extensible via Guile." msgstr "" -#: gnu/packages/messaging.scm:2074 +#: gnu/packages/messaging.scm:2076 msgid "" "Libmesode is a fork of libstrophe for use with Profanity\n" "XMPP Client. In particular, libmesode provides extra TLS functionality such as\n" "manual SSL certificate verification." msgstr "" -#: gnu/packages/messaging.scm:2109 +#: gnu/packages/messaging.scm:2111 msgid "" "Libstrophe is a minimal XMPP library written in C. It has\n" "almost no external dependencies, only an XML parsing library (expat or libxml\n" "are both supported)." msgstr "" -#: gnu/packages/messaging.scm:2167 +#: gnu/packages/messaging.scm:2169 msgid "" "Profanity is a console based XMPP client written in C\n" "using ncurses and libmesode, inspired by Irssi." msgstr "" -#: gnu/packages/messaging.scm:2197 +#: gnu/packages/messaging.scm:2199 msgid "" "Libircclient is a library which implements the client IRC\n" "protocol. It is designed to be small, fast, portable and compatible with the\n" @@ -10576,14 +10693,14 @@ msgid "" "building the IRC clients and bots." msgstr "" -#: gnu/packages/messaging.scm:2255 +#: gnu/packages/messaging.scm:2257 msgid "" "Toxic is a console-based instant messaging client, using\n" "c-toxcore and ncurses. It provides audio calls, sound and desktop\n" "notifications, and Python scripting support." msgstr "" -#: gnu/packages/messaging.scm:2281 +#: gnu/packages/messaging.scm:2283 msgid "" "libqmatrixclient is a Qt5 library to write clients for the\n" "Matrix instant messaging protocol. Quaternion is the reference client\n" @@ -10591,13 +10708,13 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2326 +#: gnu/packages/messaging.scm:2330 msgid "" "@code{mtxclient} is a C++ library that implements client API\n" "for the Matrix protocol. It is built on to of @code{Boost.Asio}." msgstr "" -#: gnu/packages/messaging.scm:2418 +#: gnu/packages/messaging.scm:2423 msgid "" "@code{Nheko} want to provide a native desktop app for the\n" "Matrix protocol that feels more like a mainstream chat app and less like an IRC\n" @@ -10607,7 +10724,7 @@ msgid "" "notification, emojis, E2E encryption, and voip calls." msgstr "" -#: gnu/packages/messaging.scm:2455 +#: gnu/packages/messaging.scm:2460 msgid "" "Quaternion is a Qt5 desktop client for the Matrix instant\n" "messaging protocol. It uses libqmatrixclient and is its reference client\n" @@ -10615,7 +10732,7 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2502 +#: gnu/packages/messaging.scm:2507 msgid "" "Hangups is an instant messaging client for Google Hangouts. It includes\n" "both a Python library and a reference client with a text-based user interface.\n" @@ -10625,7 +10742,7 @@ msgid "" "messaging that aren’t available to clients that connect over XMPP." msgstr "" -#: gnu/packages/messaging.scm:2584 +#: gnu/packages/messaging.scm:2589 msgid "" "Telegram-purple is a plugin for Libpurple, the communication library\n" "used by the Pidgin instant messaging client, that adds support for the\n" @@ -10635,7 +10752,7 @@ msgid "" "replacement." msgstr "" -#: gnu/packages/messaging.scm:2629 +#: gnu/packages/messaging.scm:2632 msgid "" "Tdlib is a cross-platform library for creating custom\n" "Telegram clients following the official Telegram API. It can be easily used\n" @@ -10643,11 +10760,11 @@ msgid "" "support for high performance Telegram Bot creation." msgstr "" -#: gnu/packages/messaging.scm:2667 +#: gnu/packages/messaging.scm:2670 msgid "Plugin for libpurple to allow sending SMS using ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2712 +#: gnu/packages/messaging.scm:2715 msgid "" "Purple-lurch plugin adds end-to-end encryption support\n" "through the Double Ratchet (Axolotl) algorithm, to @code{libpurple}\n" @@ -10658,19 +10775,19 @@ msgid "" "asynchronicity." msgstr "" -#: gnu/packages/messaging.scm:2748 +#: gnu/packages/messaging.scm:2751 msgid "" "This package provides a C++ library for parsing, formatting, and\n" "validating international phone numbers." msgstr "" -#: gnu/packages/messaging.scm:2793 +#: gnu/packages/messaging.scm:2796 msgid "" "Chatty is a chat program for XMPP and SMS. It works on mobile\n" "as well as on desktop platforms. It's based on libpurple and ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2814 +#: gnu/packages/messaging.scm:2817 msgid "" "This package provides Eclipse Mosquitto, a message broker\n" "that implements the MQTT protocol versions 5.0, 3.1.1 and 3.1. Mosquitto\n" @@ -10683,27 +10800,27 @@ msgid "" "as phones, embedded computers or microcontrollers." msgstr "" -#: gnu/packages/messaging.scm:2864 +#: gnu/packages/messaging.scm:2867 msgid "" "Movim-Desktop is a desktop application, relying on Qt, for the Movim\n" "social and chat platform." msgstr "" -#: gnu/packages/messaging.scm:2999 +#: gnu/packages/messaging.scm:3002 msgid "" "Psi+ is a spin-off of Psi XMPP client. It is a powerful XMPP client\n" "designed for experienced users." msgstr "" -#: gnu/packages/messaging.scm:3039 +#: gnu/packages/messaging.scm:3042 msgid "This package provides Python bindings to Zulip's API." msgstr "" -#: gnu/packages/messaging.scm:3088 +#: gnu/packages/messaging.scm:3091 msgid "This package contains Zulip's official terminal client." msgstr "" -#: gnu/packages/messaging.scm:3110 +#: gnu/packages/messaging.scm:3113 msgid "" "Relays messages between different channels from various\n" "messaging networks and protocols. So far it supports mattermost, IRC, gitter,\n" @@ -10712,20 +10829,20 @@ msgid "" "API. Mattermost is not required." msgstr "" -#: gnu/packages/messaging.scm:3143 +#: gnu/packages/messaging.scm:3146 msgid "" "@command{pounce} is a multi-client, TLS-only IRC bouncer. It maintains\n" "a persistent connection to an IRC server, acting as a proxy and buffer for\n" "a number of clients." msgstr "" -#: gnu/packages/messaging.scm:3209 +#: gnu/packages/messaging.scm:3212 msgid "" "@code{weechat-matrix} is a Python plugin for Weechat that lets\n" "Weechat communicate over the Matrix protocol." msgstr "" -#: gnu/packages/messaging.scm:3256 +#: gnu/packages/messaging.scm:3259 msgid "" "@code{weechat-wee-slack} is a WeeChat native client for\n" "Slack. It provides supplemental features only available in the web/mobile\n" @@ -10834,14 +10951,14 @@ msgid "" "themselves." msgstr "" -#: gnu/packages/networking.scm:174 +#: gnu/packages/networking.scm:176 msgid "" "UsrSCTP is a portable SCTP userland stack. SCTP is a message\n" "oriented, reliable transport protocol with direct support for multihoming that\n" "runs on top of IP or UDP, and supports both v4 and v6 versions." msgstr "" -#: gnu/packages/networking.scm:199 +#: gnu/packages/networking.scm:201 msgid "" "Axel tries to accelerate the download process by using multiple\n" "connections per file, and can also balance the load between different\n" @@ -10850,38 +10967,38 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/networking.scm:264 +#: gnu/packages/networking.scm:266 msgid "" "LibCamera is a complex camera support library for GNU+Linux,\n" "Android, and ChromeOS." msgstr "" -#: gnu/packages/networking.scm:334 +#: gnu/packages/networking.scm:336 msgid "" "LibNice is a library that implements the Interactive\n" "Connectivity Establishment (ICE) standard (RFC 5245 & RFC 8445). It provides a\n" "GLib-based library, libnice, as well as GStreamer elements to use it." msgstr "" -#: gnu/packages/networking.scm:393 +#: gnu/packages/networking.scm:395 msgid "" "RTMPdump is a toolkit for RTMP streams. All forms of RTMP are\n" "supported, including rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps://." msgstr "" -#: gnu/packages/networking.scm:422 +#: gnu/packages/networking.scm:424 msgid "" "Slurm is a network load monitor. It shows real-time traffic statistics\n" "from any network device in any of three ASCII graph formats." msgstr "" -#: gnu/packages/networking.scm:457 +#: gnu/packages/networking.scm:459 msgid "" "SRT is a transport technology that optimizes streaming\n" "performance across unpredictable networks, such as the Internet." msgstr "" -#: gnu/packages/networking.scm:500 +#: gnu/packages/networking.scm:502 msgid "" "The lksctp-tools project provides a user-space library for @acronym{SCTP,\n" "the Stream Control Transmission Protocol} (@file{libsctp}) and C language header\n" @@ -10890,13 +11007,13 @@ msgid "" "It also includes some SCTP-related helper utilities." msgstr "" -#: gnu/packages/networking.scm:541 +#: gnu/packages/networking.scm:543 msgid "" "@code{pysctp} implements the SCTP socket API. You need a\n" "SCTP-aware kernel (most are)." msgstr "" -#: gnu/packages/networking.scm:565 +#: gnu/packages/networking.scm:567 msgid "" "@command{knockd} is a port-knock daemon. It listens to all traffic on\n" "an ethernet or PPP interface, looking for special \"knock\" sequences of @dfn{port-hits}\n" @@ -10904,7 +11021,7 @@ msgid "" "at the link-layer level." msgstr "" -#: gnu/packages/networking.scm:605 +#: gnu/packages/networking.scm:607 msgid "" "NNG project is a rewrite of the scalability protocols library\n" "known as libnanomsg, and adds significant new capabilities, while retaining\n" @@ -10913,7 +11030,7 @@ msgid "" "publish/subscribe, RPC-style request/reply, or service discovery." msgstr "" -#: gnu/packages/networking.scm:648 +#: gnu/packages/networking.scm:650 msgid "" "Nanomsg is a socket library that provides several common\n" "communication patterns. It aims to make the networking layer fast, scalable,\n" @@ -10921,14 +11038,14 @@ msgid "" "systems with no further dependencies." msgstr "" -#: gnu/packages/networking.scm:758 +#: gnu/packages/networking.scm:760 msgid "" "Blueman is a Bluetooth management utility using the Bluez\n" "D-Bus backend. It is designed to be easy to use for most common Bluetooth\n" "tasks." msgstr "" -#: gnu/packages/networking.scm:783 +#: gnu/packages/networking.scm:785 msgid "" "GNU MAC Changer is a utility for viewing and changing MAC\n" "addresses of networking devices. New addresses may be set explicitly or\n" @@ -10936,14 +11053,14 @@ msgid "" "or, more generally, MAC addresses of the same category of hardware." msgstr "" -#: gnu/packages/networking.scm:831 +#: gnu/packages/networking.scm:833 msgid "" "Miredo is an implementation (client, relay, server) of the Teredo\n" "specification, which provides IPv6 Internet connectivity to IPv6 enabled hosts\n" "residing in IPv4-only networks, even when they are behind a NAT device." msgstr "" -#: gnu/packages/networking.scm:851 +#: gnu/packages/networking.scm:853 msgid "" "NDisc6 is a collection of tools for IPv6 networking diagnostics.\n" "It includes the following programs:\n" @@ -10957,7 +11074,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:904 +#: gnu/packages/networking.scm:906 msgid "" "@command{parprouted} is a daemon for transparent IP (Layer@tie{}3)\n" "proxy ARP bridging. Unlike standard bridging, proxy ARP bridging can bridge\n" @@ -10967,7 +11084,14 @@ msgid "" "useful for making transparent firewalls." msgstr "" -#: gnu/packages/networking.scm:931 +#: gnu/packages/networking.scm:945 +msgid "" +"@command{pproxy} is an asynchronuous proxy server implemented with\n" +"Python 3 @code{asyncio}. Among the supported protocols are HTTP, SOCKS\n" +"and SSH, and it can use both TCP and UDP as transport mechanisms." +msgstr "" + +#: gnu/packages/networking.scm:969 msgid "" "socat is a relay for bidirectional data transfer between two independent\n" "data channels---files, pipes, devices, sockets, etc. It can create\n" @@ -10980,7 +11104,7 @@ msgid "" "or server shell scripts with network connections." msgstr "" -#: gnu/packages/networking.scm:962 +#: gnu/packages/networking.scm:1000 msgid "" "mbuffer is a tool for buffering data streams with a large set of features:\n" "\n" @@ -10996,14 +11120,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1058 +#: gnu/packages/networking.scm:1096 msgid "" "With this package you can monitor and filter incoming requests for\n" "network services. It includes a library which may be used by daemons to\n" "transparently check connection attempts against an access control list." msgstr "" -#: gnu/packages/networking.scm:1081 +#: gnu/packages/networking.scm:1119 msgid "" "The 0MQ lightweight messaging kernel is a library which extends the\n" "standard socket interfaces with features traditionally provided by specialized\n" @@ -11013,46 +11137,46 @@ msgid "" "more." msgstr "" -#: gnu/packages/networking.scm:1110 +#: gnu/packages/networking.scm:1148 msgid "" "czmq provides bindings for the ØMQ core API that hides the differences\n" "between different versions of ØMQ." msgstr "" -#: gnu/packages/networking.scm:1141 +#: gnu/packages/networking.scm:1179 msgid "" "This package provides header-only C++ bindings for ØMQ. The header\n" "files contain direct mappings of the abstractions provided by the ØMQ C API." msgstr "" -#: gnu/packages/networking.scm:1175 +#: gnu/packages/networking.scm:1213 msgid "" "@code{libnatpmp} is a portable and asynchronous implementation of\n" "the Network Address Translation - Port Mapping Protocol (NAT-PMP)\n" "written in the C programming language." msgstr "" -#: gnu/packages/networking.scm:1213 +#: gnu/packages/networking.scm:1251 msgid "" "librdkafka is a C library implementation of the Apache Kafka protocol,\n" "containing both Producer and Consumer support." msgstr "" -#: gnu/packages/networking.scm:1232 +#: gnu/packages/networking.scm:1270 msgid "" "libndp contains a library which provides a wrapper for IPv6 Neighbor\n" "Discovery Protocol. It also provides a tool named ndptool for sending and\n" "receiving NDP messages." msgstr "" -#: gnu/packages/networking.scm:1256 +#: gnu/packages/networking.scm:1294 msgid "" "ethtool can be used to query and change settings such as speed,\n" "auto-negotiation and checksum offload on many network devices, especially\n" "Ethernet devices." msgstr "" -#: gnu/packages/networking.scm:1298 +#: gnu/packages/networking.scm:1336 msgid "" "IFStatus is a simple, easy-to-use program for displaying commonly\n" "needed/wanted real-time traffic statistics of multiple network\n" @@ -11060,7 +11184,7 @@ msgid "" "intended as a substitute for the PPPStatus and EthStatus projects." msgstr "" -#: gnu/packages/networking.scm:1347 +#: gnu/packages/networking.scm:1385 msgid "" "This package contains a variety of tools for dealing with network\n" "configuration, troubleshooting, or servers. Utilities included are:\n" @@ -11081,7 +11205,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1388 +#: gnu/packages/networking.scm:1426 msgid "" "Nload is a console application which monitors network traffic and\n" "bandwidth usage in real time. It visualizes the in- and outgoing traffic using\n" @@ -11089,7 +11213,7 @@ msgid "" "and min/max network usage." msgstr "" -#: gnu/packages/networking.scm:1432 +#: gnu/packages/networking.scm:1470 msgid "" "Iodine tunnels IPv4 data through a DNS server. This\n" "can be useful in different situations where internet access is firewalled, but\n" @@ -11097,7 +11221,7 @@ msgid "" "and up to 1 Mbit/s downstream." msgstr "" -#: gnu/packages/networking.scm:1473 +#: gnu/packages/networking.scm:1511 msgid "" "whois searches for an object in a @dfn{WHOIS} (RFC 3912) database.\n" "It is commonly used to look up the registered users or assignees of an Internet\n" @@ -11109,14 +11233,14 @@ msgid "" "of the same name." msgstr "" -#: gnu/packages/networking.scm:1553 +#: gnu/packages/networking.scm:1591 msgid "" "Wireshark is a network protocol analyzer, or @dfn{packet\n" "sniffer}, that lets you capture and interactively browse the contents of\n" "network frames." msgstr "" -#: gnu/packages/networking.scm:1574 +#: gnu/packages/networking.scm:1613 msgid "" "fping is a ping-like program which uses @acronym{ICMP, Internet Control\n" "Message Protocol} echo requests to determine if a target host is responding.\n" @@ -11128,26 +11252,26 @@ msgid "" "round-robin fashion." msgstr "" -#: gnu/packages/networking.scm:1625 +#: gnu/packages/networking.scm:1664 msgid "" "This package provides a command-line client (@command{gandi}) to buy,\n" "manage, and delete Internet resources from Gandi.net such as domain names,\n" "virtual machines, and certificates." msgstr "" -#: gnu/packages/networking.scm:1651 +#: gnu/packages/networking.scm:1690 msgid "" "The netns package provides a simple interface for\n" "handling network namespaces in Go." msgstr "" -#: gnu/packages/networking.scm:1678 +#: gnu/packages/networking.scm:1717 msgid "" "This library provides methods for using the stream control\n" "transmission protocol (SCTP) in a Go application." msgstr "" -#: gnu/packages/networking.scm:1707 +#: gnu/packages/networking.scm:1746 msgid "" "httping measures how long it takes to connect to a web server, send an\n" "HTTP(S) request, and receive the reply headers. It is somewhat similar to\n" @@ -11156,7 +11280,7 @@ msgid "" "application stack itself." msgstr "" -#: gnu/packages/networking.scm:1746 +#: gnu/packages/networking.scm:1785 msgid "" "@command{httpstat} is a tool to visualize statistics from the\n" "@command{curl} HTTP client. It acts as a wrapper for @command{curl} and\n" @@ -11164,20 +11288,20 @@ msgid "" "TCP connection, TLS handshake and so on) in the terminal." msgstr "" -#: gnu/packages/networking.scm:1788 +#: gnu/packages/networking.scm:1827 msgid "" "Squid is a caching proxy for the Web supporting HTTP, HTTPS,\n" "FTP, and more. It reduces bandwidth and improves response times by caching and\n" "reusing frequently-requested web pages." msgstr "" -#: gnu/packages/networking.scm:1822 +#: gnu/packages/networking.scm:1861 msgid "" "Bandwidth Monitor NG is a small and simple console based\n" "live network and disk I/O bandwidth monitor." msgstr "" -#: gnu/packages/networking.scm:1874 +#: gnu/packages/networking.scm:1913 msgid "" "Aircrack-ng is a complete suite of tools to assess WiFi network\n" "security. It focuses on different areas of WiFi security: monitoring,\n" @@ -11185,14 +11309,14 @@ msgid "" "allows for heavy scripting." msgstr "" -#: gnu/packages/networking.scm:1903 +#: gnu/packages/networking.scm:1942 msgid "" "Pixiewps implements the pixie-dust attack to brute\n" "force the Wi-Fi Protected Setup (WPS) PIN by exploiting the low or\n" "non-existing entropy of some access points." msgstr "" -#: gnu/packages/networking.scm:1949 +#: gnu/packages/networking.scm:1988 msgid "" "Reaver performs a brute force attack against an access\n" "point's Wi-Fi Protected Setup (WPS) PIN. Once the PIN is found, the WPA\n" @@ -11200,7 +11324,7 @@ msgid "" "reconfigured." msgstr "" -#: gnu/packages/networking.scm:1974 +#: gnu/packages/networking.scm:2013 msgid "" "Danga::Socket is an abstract base class for objects backed by a socket\n" "which provides the basic framework for event-driven asynchronous IO, designed\n" @@ -11208,7 +11332,7 @@ msgid "" "loop." msgstr "" -#: gnu/packages/networking.scm:2000 +#: gnu/packages/networking.scm:2039 msgid "" "This module provides several IP address validation subroutines that both\n" "validate and untaint their input. This includes both basic validation\n" @@ -11217,62 +11341,62 @@ msgid "" "private (reserved)." msgstr "" -#: gnu/packages/networking.scm:2028 +#: gnu/packages/networking.scm:2067 msgid "Net::DNS is the Perl Interface to the Domain Name System." msgstr "" -#: gnu/packages/networking.scm:2060 +#: gnu/packages/networking.scm:2099 msgid "" "Socket6 binds the IPv6 related part of the C socket header\n" "definitions and structure manipulators for Perl." msgstr "" -#: gnu/packages/networking.scm:2087 +#: gnu/packages/networking.scm:2126 msgid "" "Net::DNS::Resolver::Programmable is a programmable DNS resolver for\n" "offline emulation of DNS." msgstr "" -#: gnu/packages/networking.scm:2109 +#: gnu/packages/networking.scm:2148 msgid "" "Net::DNS::Resolver::Mock is a subclass of Net::DNS::Resolver, but returns\n" "static data from any provided DNS zone file instead of querying the network.\n" "It is intended primarily for use in testing." msgstr "" -#: gnu/packages/networking.scm:2144 +#: gnu/packages/networking.scm:2183 msgid "NetAddr::IP manages IPv4 and IPv6 addresses and subsets." msgstr "" -#: gnu/packages/networking.scm:2177 +#: gnu/packages/networking.scm:2216 msgid "Net::Patricia does IP address lookups quickly in Perl." msgstr "" -#: gnu/packages/networking.scm:2198 +#: gnu/packages/networking.scm:2237 msgid "Net::CIDR::Lite merges IPv4 or IPv6 CIDR addresses." msgstr "" -#: gnu/packages/networking.scm:2225 +#: gnu/packages/networking.scm:2264 msgid "" "IO::Socket::INET6 is an interface for AF_INET/AF_INET6 domain\n" "sockets in Perl." msgstr "" -#: gnu/packages/networking.scm:2258 +#: gnu/packages/networking.scm:2293 msgid "" "Libproxy handles the details of HTTP/HTTPS proxy\n" "configuration for applications across all scenarios. Applications using\n" "libproxy only have to specify which proxy to use." msgstr "" -#: gnu/packages/networking.scm:2292 +#: gnu/packages/networking.scm:2327 msgid "" "Proxychains-ng is a preloader which hooks calls to sockets\n" "in dynamically linked programs and redirects them through one or more SOCKS or\n" "HTTP proxies." msgstr "" -#: gnu/packages/networking.scm:2314 +#: gnu/packages/networking.scm:2349 msgid "" "ENet's purpose is to provide a relatively thin, simple and robust network\n" "communication layer on top of UDP. The primary feature it provides is optional\n" @@ -11282,7 +11406,7 @@ msgid "" "library remains flexible, portable, and easily embeddable." msgstr "" -#: gnu/packages/networking.scm:2378 +#: gnu/packages/networking.scm:2413 msgid "" "sslh is a network protocol demultiplexer. It acts like a switchboard,\n" "accepting connections from clients on one port and forwarding them to different\n" @@ -11294,7 +11418,7 @@ msgid "" "that block port 22." msgstr "" -#: gnu/packages/networking.scm:2408 +#: gnu/packages/networking.scm:2443 msgid "" "iPerf is a tool to measure achievable bandwidth on IP networks. It\n" "supports tuning of various parameters related to timing, buffers and\n" @@ -11302,7 +11426,7 @@ msgid "" "the bandwidth, loss, and other parameters." msgstr "" -#: gnu/packages/networking.scm:2445 +#: gnu/packages/networking.scm:2480 msgid "" "NetHogs is a small 'net top' tool for Linux. Instead of\n" "breaking the traffic down per protocol or per subnet, like most tools do, it\n" @@ -11314,7 +11438,7 @@ msgid "" "gone wild and are suddenly taking up your bandwidth." msgstr "" -#: gnu/packages/networking.scm:2481 +#: gnu/packages/networking.scm:2516 msgid "" "NZBGet is a binary newsgrabber, which downloads files from Usenet based\n" "on information given in @code{nzb} files. NZBGet can be used in standalone\n" @@ -11324,7 +11448,7 @@ msgid "" "procedure calls (RPCs)." msgstr "" -#: gnu/packages/networking.scm:2562 +#: gnu/packages/networking.scm:2597 msgid "" "Open vSwitch is a multilayer virtual switch. It is designed to enable\n" "massive network automation through programmatic extension, while still\n" @@ -11332,27 +11456,27 @@ msgid "" "IPFIX, RSPAN, CLI, LACP, 802.1ag)." msgstr "" -#: gnu/packages/networking.scm:2585 +#: gnu/packages/networking.scm:2620 msgid "" "The @code{IP} class allows a comfortable parsing and\n" "handling for most notations in use for IPv4 and IPv6 addresses and\n" "networks." msgstr "" -#: gnu/packages/networking.scm:2610 +#: gnu/packages/networking.scm:2645 msgid "" "Command line interface for testing internet bandwidth using\n" "speedtest.net." msgstr "" -#: gnu/packages/networking.scm:2630 +#: gnu/packages/networking.scm:2668 msgid "" "This is a tftp client derived from OpenBSD tftp with some extra options\n" "added and bugs fixed. The source includes readline support but it is not\n" "enabled due to license conflicts between the BSD advertising clause and the GPL." msgstr "" -#: gnu/packages/networking.scm:2682 +#: gnu/packages/networking.scm:2720 msgid "" "Spiped (pronounced \"ess-pipe-dee\") is a utility for creating\n" "symmetrically encrypted and authenticated pipes between socket addresses, so\n" @@ -11362,7 +11486,7 @@ msgid "" "does not use SSH and requires a pre-shared symmetric key." msgstr "" -#: gnu/packages/networking.scm:2708 +#: gnu/packages/networking.scm:2746 msgid "" "Quagga is a routing software suite, providing implementations\n" "of OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4 for Unix platforms.\n" @@ -11374,14 +11498,14 @@ msgid "" "updates to the zebra daemon." msgstr "" -#: gnu/packages/networking.scm:2758 +#: gnu/packages/networking.scm:2796 msgid "" "The THC IPv6 Toolkit provides command-line tools and a library\n" "for researching IPv6 implementations and deployments. It requires Linux 2.6 or\n" "newer and only works on Ethernet network interfaces." msgstr "" -#: gnu/packages/networking.scm:2783 +#: gnu/packages/networking.scm:2821 msgid "" "bmon is a monitoring and debugging tool to capture\n" "networking-related statistics and prepare them visually in a human-friendly\n" @@ -11389,7 +11513,7 @@ msgid "" "interface and a programmable text output for scripting." msgstr "" -#: gnu/packages/networking.scm:2821 +#: gnu/packages/networking.scm:2859 msgid "" "Libnet provides a fairly portable framework for network packet\n" "construction and injection. It features portable packet creation interfaces\n" @@ -11398,7 +11522,7 @@ msgid "" "can be whipped up with little effort." msgstr "" -#: gnu/packages/networking.scm:2847 +#: gnu/packages/networking.scm:2885 msgid "" "@acronym{mtr, My TraceRoute} combines the functionality of the\n" "@command{traceroute} and @command{ping} programs in a single network diagnostic\n" @@ -11408,7 +11532,7 @@ msgid "" "displays the results in real time." msgstr "" -#: gnu/packages/networking.scm:2900 +#: gnu/packages/networking.scm:2938 msgid "" "aMule is an eMule-like client for the eD2k and Kademlia peer-to-peer\n" "file sharing networks. It includes a graphical user interface (GUI), a daemon\n" @@ -11417,7 +11541,7 @@ msgid "" "remotely." msgstr "" -#: gnu/packages/networking.scm:2922 +#: gnu/packages/networking.scm:2960 msgid "" "Zyre provides reliable group messaging over local area\n" "networks using zeromq. It has these key characteristics:\n" @@ -11434,13 +11558,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:2956 +#: gnu/packages/networking.scm:2994 msgid "" "This library allows controlling basic functions in SocketCAN\n" "from user-space. It requires a kernel built with SocketCAN support." msgstr "" -#: gnu/packages/networking.scm:2985 +#: gnu/packages/networking.scm:3023 msgid "" "This package provides CAN utilities in the following areas:\n" "\n" @@ -11456,14 +11580,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3021 +#: gnu/packages/networking.scm:3059 msgid "" "Asio is a cross-platform C++ library for network and\n" "low-level I/O programming that provides developers with a consistent\n" "asynchronous model using a modern C++ approach." msgstr "" -#: gnu/packages/networking.scm:3056 +#: gnu/packages/networking.scm:3094 msgid "" "This package is a fast tunnel proxy that helps you bypass firewalls.\n" "\n" @@ -11477,7 +11601,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3134 +#: gnu/packages/networking.scm:3172 msgid "" "The @dfn{Simple Network Management Protocol} (SNMP) is a\n" "widely used protocol for monitoring the health and welfare of network\n" @@ -11486,20 +11610,20 @@ msgid "" "SNMP v3 using both IPv4 and IPv6." msgstr "" -#: gnu/packages/networking.scm:3181 +#: gnu/packages/networking.scm:3219 msgid "" "uBridge is a simple program to create user-land bridges\n" "between various technologies. Currently, bridging between UDP tunnels,\n" "Ethernet and TAP interfaces is supported. Packet capture is also supported." msgstr "" -#: gnu/packages/networking.scm:3213 +#: gnu/packages/networking.scm:3251 msgid "" "This package contains a small set of tools to capture and convert\n" "packets from wireless devices for use with hashcat or John the Ripper." msgstr "" -#: gnu/packages/networking.scm:3244 +#: gnu/packages/networking.scm:3282 msgid "" "Small tool to capture packets from WLAN devices. After capturing,\n" "upload the \"uncleaned\" cap to @url{https://wpa-sec.stanev.org/?submit} to\n" @@ -11509,7 +11633,7 @@ msgid "" "and check if the WLAN key or the master key was transmitted unencrypted." msgstr "" -#: gnu/packages/networking.scm:3271 +#: gnu/packages/networking.scm:3309 msgid "" "Dante is a SOCKS client and server implementation. It can\n" "be installed on a machine with access to an external TCP/IP network and will\n" @@ -11518,21 +11642,21 @@ msgid "" "never see any machines other than the one Dante is running on." msgstr "" -#: gnu/packages/networking.scm:3318 +#: gnu/packages/networking.scm:3356 msgid "" "Restbed is a comprehensive and consistent programming\n" "model for building applications that require seamless and secure\n" "communication over HTTP." msgstr "" -#: gnu/packages/networking.scm:3358 +#: gnu/packages/networking.scm:3396 msgid "" "RESTinio is a header-only C++14 library that gives you an embedded\n" "HTTP/Websocket server. It is based on standalone version of ASIO\n" "and targeted primarily for asynchronous processing of HTTP-requests." msgstr "" -#: gnu/packages/networking.scm:3446 +#: gnu/packages/networking.scm:3487 msgid "" "OpenDHT provides an easy to use distributed in-memory data\n" "store. Every node in the network can read and write values to the store.\n" @@ -11559,20 +11683,20 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/networking.scm:3490 +#: gnu/packages/networking.scm:3531 msgid "" "FRRouting (FRR) is an IP routing protocol suite which includes\n" "protocol daemons for BGP, IS-IS, LDP, OSPF, PIM, and RIP." msgstr "" -#: gnu/packages/networking.scm:3520 +#: gnu/packages/networking.scm:3561 msgid "" "BIRD is an Internet routing daemon with full support for all\n" "the major routing protocols. It allows redistribution between protocols with a\n" "powerful route filtering syntax and an easy-to-use configuration interface." msgstr "" -#: gnu/packages/networking.scm:3568 +#: gnu/packages/networking.scm:3609 msgid "" "iwd is a wireless daemon for Linux that aims to replace WPA\n" "Supplicant. It optimizes resource utilization by not depending on any external\n" @@ -11580,21 +11704,21 @@ msgid "" "maximum extent possible." msgstr "" -#: gnu/packages/networking.scm:3595 +#: gnu/packages/networking.scm:3636 msgid "" "libyang is a YANG data modelling language parser and toolkit\n" "written (and providing API) in C. Current implementation covers YANG 1.0 (RFC\n" "6020) as well as YANG 1.1 (RFC 7950)." msgstr "" -#: gnu/packages/networking.scm:3629 +#: gnu/packages/networking.scm:3670 msgid "" "This package provides a control tool for the\n" "B.A.T.M.A.N. mesh networking routing protocol provided by the Linux kernel\n" "module @code{batman-adv}, for Layer 2." msgstr "" -#: gnu/packages/networking.scm:3662 +#: gnu/packages/networking.scm:3703 msgid "" "PageKite implements a tunneled reverse proxy which makes it easy to make\n" "a service (such as an HTTP or SSH server) on localhost visible to the wider\n" @@ -11602,7 +11726,7 @@ msgid "" "service is available at @url{https://pagekite.net/}, or you can run your own." msgstr "" -#: gnu/packages/networking.scm:3706 +#: gnu/packages/networking.scm:3747 msgid "" "ipcalc takes an IP address and netmask and calculates the\n" "resulting broadcast, network, Cisco wildcard mask, and host range. By giving\n" @@ -11611,7 +11735,7 @@ msgid "" "easy-to-understand binary values." msgstr "" -#: gnu/packages/networking.scm:3745 +#: gnu/packages/networking.scm:3786 msgid "" "Tunctl is used to set up and maintain persistent TUN/TAP\n" "network interfaces, enabling user applications to simulate network traffic.\n" @@ -11619,13 +11743,13 @@ msgid "" "simulation, and a number of other applications." msgstr "" -#: gnu/packages/networking.scm:3765 +#: gnu/packages/networking.scm:3806 msgid "" "Tool to send a magic packet to wake another host on the\n" "network. This must be enabled on the target host, usually in the BIOS." msgstr "" -#: gnu/packages/networking.scm:3802 +#: gnu/packages/networking.scm:3843 msgid "" "This package provides a modern, but Linux-specific\n" "implementation of the @command{traceroute} command that can be used to follow\n" @@ -11636,7 +11760,7 @@ msgid "" "some traces for unprivileged users." msgstr "" -#: gnu/packages/networking.scm:3836 +#: gnu/packages/networking.scm:3877 msgid "" "VDE is a set of programs to provide virtual software-defined\n" "Ethernet network interface controllers across multiple virtual or\n" @@ -11645,7 +11769,7 @@ msgid "" "cables." msgstr "" -#: gnu/packages/networking.scm:3878 +#: gnu/packages/networking.scm:3919 msgid "" "HAProxy is a free, very fast and reliable solution offering\n" "high availability, load balancing, and proxying for TCP and HTTP-based\n" @@ -11654,7 +11778,7 @@ msgid "" "thousands of connections is clearly realistic with today's hardware." msgstr "" -#: gnu/packages/networking.scm:3924 +#: gnu/packages/networking.scm:3965 msgid "" "The @dfn{Link Layer Discovery Protocol} (LLDP) is an industry standard\n" "protocol designed to supplant proprietary Link-Layer protocols such as EDP or\n" @@ -11663,7 +11787,7 @@ msgid "" "an implementation of LLDP. It also supports some proprietary protocols." msgstr "" -#: gnu/packages/networking.scm:3966 +#: gnu/packages/networking.scm:4007 msgid "" "Hashcash is a proof-of-work algorithm, which has been used\n" "as a denial-of-service countermeasure technique in a number of systems.\n" @@ -11676,14 +11800,14 @@ msgid "" "stamps." msgstr "" -#: gnu/packages/networking.scm:3995 +#: gnu/packages/networking.scm:4036 msgid "" "This package provides the NBD (Network Block Devices)\n" "client and server. It allows you to use remote block devices over a TCP/IP\n" "network." msgstr "" -#: gnu/packages/networking.scm:4062 +#: gnu/packages/networking.scm:4103 msgid "" "Yggdrasil is an early-stage implementation of a fully end-to-end encrypted\n" "IPv6 network. It is lightweight, self-arranging, supported on multiple\n" @@ -11692,7 +11816,7 @@ msgid "" "IPv6 Internet connectivity - it also works over IPv4." msgstr "" -#: gnu/packages/networking.scm:4106 +#: gnu/packages/networking.scm:4147 msgid "" "Netdiscover is a network address discovery tool developed\n" "mainly for wireless networks without a @acronym{DHCP} server. It also works\n" @@ -11700,7 +11824,7 @@ msgid "" "@acronym{ARP} requests and sniff for replies." msgstr "" -#: gnu/packages/networking.scm:4138 +#: gnu/packages/networking.scm:4179 msgid "" "PuTTY is a graphical text terminal client. It supports\n" "@acronym{SSH, Secure SHell}, telnet, and raw socket connections with good\n" @@ -11811,14 +11935,14 @@ msgid "" "by using the poppler rendering engine." msgstr "" -#: gnu/packages/pdf.scm:654 +#: gnu/packages/pdf.scm:653 msgid "" "Zathura is a customizable document viewer. It provides a\n" "minimalistic interface and an interface that mainly focuses on keyboard\n" "interaction." msgstr "" -#: gnu/packages/pdf.scm:697 +#: gnu/packages/pdf.scm:696 msgid "" "PoDoFo is a C++ library and set of command-line tools to work with the\n" "PDF file format. It can parse PDF files and load them into memory, and makes\n" @@ -11827,7 +11951,7 @@ msgid "" "extracting content or merging files." msgstr "" -#: gnu/packages/pdf.scm:764 +#: gnu/packages/pdf.scm:763 msgid "" "MuPDF is a C library that implements a PDF and XPS parsing and\n" "rendering engine. It is used primarily to render pages into bitmaps,\n" @@ -11839,7 +11963,7 @@ msgid "" "@command{pdfclean}, and examining the file structure @command{pdfshow}." msgstr "" -#: gnu/packages/pdf.scm:811 +#: gnu/packages/pdf.scm:810 msgid "" "QPDF is a command-line program that does structural, content-preserving\n" "transformations on PDF files. It could have been called something like\n" @@ -11848,7 +11972,7 @@ msgid "" "program capable of converting PDF into other formats." msgstr "" -#: gnu/packages/pdf.scm:855 +#: gnu/packages/pdf.scm:854 msgid "" "@command{qpdfview} is a document viewer for PDF, PS and DJVU\n" "files. It uses the Qt toolkit and features persistent per-file settings,\n" @@ -11856,13 +11980,13 @@ msgid "" "SyncTeX support, and rudimentary support for annotations and forms." msgstr "" -#: gnu/packages/pdf.scm:881 +#: gnu/packages/pdf.scm:880 msgid "" "Xournal is an application for notetaking, sketching, keeping a journal\n" "using a stylus." msgstr "" -#: gnu/packages/pdf.scm:940 +#: gnu/packages/pdf.scm:939 msgid "" "Xournal++ is a hand note taking software written in\n" "C++ with the target of flexibility, functionality and speed. Stroke\n" @@ -11898,14 +12022,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1019 +#: gnu/packages/pdf.scm:1018 msgid "" "This is the ReportLab PDF Toolkit. It allows rapid creation\n" "of rich PDF documents, and also creation of charts in a variety of bitmap and\n" "vector formats." msgstr "" -#: gnu/packages/pdf.scm:1071 +#: gnu/packages/pdf.scm:1070 msgid "" "Impressive is a tool to display PDF files that provides visual effects\n" "such as smooth alpha-blended slide transitions. It provides additional tools\n" @@ -11913,26 +12037,26 @@ msgid "" "the PDF pages." msgstr "" -#: gnu/packages/pdf.scm:1094 +#: gnu/packages/pdf.scm:1093 msgid "" "img2pdf converts images to PDF via direct JPEG inclusion. That\n" "conversion is lossless: the image embedded in the PDF has the exact same color\n" "information for every pixel as the input." msgstr "" -#: gnu/packages/pdf.scm:1147 +#: gnu/packages/pdf.scm:1146 msgid "" "fbida contains a few applications for viewing and editing images on\n" "the framebuffer." msgstr "" -#: gnu/packages/pdf.scm:1171 +#: gnu/packages/pdf.scm:1170 msgid "" "@command{pdf2svg} is a simple command-line PDF to SVG\n" "converter using the Poppler and Cairo libraries." msgstr "" -#: gnu/packages/pdf.scm:1203 +#: gnu/packages/pdf.scm:1202 msgid "" "PyPDF2 is a pure Python PDF library capable of:\n" "\n" @@ -11952,7 +12076,7 @@ msgid "" "manage or manipulate PDFs." msgstr "" -#: gnu/packages/pdf.scm:1240 +#: gnu/packages/pdf.scm:1239 msgid "" "PyPDF2 is a pure Python PDF toolkit.\n" "\n" @@ -11960,7 +12084,7 @@ msgid "" "python-pypdf2 instead." msgstr "" -#: gnu/packages/pdf.scm:1284 +#: gnu/packages/pdf.scm:1283 msgid "" "PDF Arranger is a small application which allows one to merge or split\n" "PDF documents and rotate, crop and rearrange their pages using an interactive\n" @@ -11969,7 +12093,7 @@ msgid "" "PDF Arranger was formerly known as PDF-Shuffler." msgstr "" -#: gnu/packages/pdf.scm:1308 +#: gnu/packages/pdf.scm:1307 msgid "" "@command{pdfposter} can be used to create a large poster by\n" "building it from multiple pages and/or printing it on large media. It expects\n" @@ -11982,7 +12106,7 @@ msgid "" "PDF. Indeed @command{pdfposter} was inspired by @command{poster}." msgstr "" -#: gnu/packages/pdf.scm:1339 +#: gnu/packages/pdf.scm:1338 msgid "" "Pdfgrep searches in pdf files for strings matching a regular expression.\n" "Support some GNU grep options as file name output, page number output,\n" @@ -11990,7 +12114,7 @@ msgid "" "multiple files." msgstr "" -#: gnu/packages/pdf.scm:1387 +#: gnu/packages/pdf.scm:1386 msgid "" "pdfpc is a presentation viewer application which uses multi-monitor\n" "output to provide meta information to the speaker during the presentation. It\n" @@ -12000,13 +12124,13 @@ msgid "" "presentation. The input files processed by pdfpc are PDF documents." msgstr "" -#: gnu/packages/pdf.scm:1414 +#: gnu/packages/pdf.scm:1413 msgid "" "Paps reads a UTF-8 encoded file and generates a PostScript language\n" "rendering of the file through the Pango Cairo back end." msgstr "" -#: gnu/packages/pdf.scm:1444 +#: gnu/packages/pdf.scm:1443 msgid "" "Stapler is a pure Python alternative to PDFtk, a tool for\n" "manipulating PDF documents from the command line. It supports\n" @@ -12020,7 +12144,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1532 +#: gnu/packages/pdf.scm:1531 msgid "" "WeasyPrint helps web developers to create PDF documents. It\n" "turns simple HTML pages into gorgeous statistical reports, invoices, tickets,\n" @@ -15742,7 +15866,7 @@ msgid "" "and enhance them." msgstr "" -#: gnu/packages/photo.scm:601 +#: gnu/packages/photo.scm:603 msgid "" "Photoflare is a cross-platform image editor with an aim\n" "to balance between powerful features and a very friendly graphical user\n" @@ -15752,7 +15876,7 @@ msgid "" "such as Batch image processing." msgstr "" -#: gnu/packages/photo.scm:669 +#: gnu/packages/photo.scm:670 msgid "" "Entangle is an application which uses GTK and libgphoto2 to provide a\n" "graphical interface for tethered photography with digital cameras. It\n" @@ -15760,14 +15884,14 @@ msgid "" "off' shooting directly from the controlling computer." msgstr "" -#: gnu/packages/photo.scm:740 +#: gnu/packages/photo.scm:741 msgid "" "Hugin is an easy to use panoramic imaging toolchain with a graphical\n" "user interface. It can be used to assemble a mosaic of photographs into\n" "a complete panorama and stitch any series of overlapping pictures." msgstr "" -#: gnu/packages/photo.scm:794 +#: gnu/packages/photo.scm:795 msgid "" "RawTherapee is a raw image processing suite. It comprises a\n" "subset of image editing operations specifically aimed at non-destructive raw\n" @@ -15811,7 +15935,28 @@ msgid "" "`special effects' using the filter mechanism." msgstr "" -#: gnu/packages/scanner.scm:144 +#: gnu/packages/scanner.scm:83 +msgid "" +"This SANE backend lets you scan documents and images from scanners and\n" +"multi-function printers that speak eSCL (marketed as ``AirScan'') or\n" +"@acronym{WSD, Web Services for Devices} (or ``WS-Scan'').\n" +"\n" +"Both are vendor-neutral protocols that allow ``driverless'' scanning over IPv4\n" +"and IPv6 networks without the vendor-specific drivers that make up most of the\n" +"sane-backends collection. This is similar to how most contemporary printers\n" +"speak the universal @acronym{IPP, Internet Printing Protocol}.\n" +"\n" +"Only scanners that support eSCL will also work over USB. This requires a\n" +"suitable IPP-over-USB daemon like ipp-usb to be installed and configured.\n" +"\n" +"Any eSCL or WSD-capable scanner should just work. sane-airscan automatically\n" +"discovers and configures devices, including which protocol to use. It was\n" +"successfully tested with many devices from Brother, Canon, Dell, Kyocera,\n" +"Lexmark, Epson, HP, OKI, Panasonic, Pantum, Ricoh, Samsung, and Xerox, with both\n" +"WSD and eSCL." +msgstr "" + +#: gnu/packages/scanner.scm:200 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -15819,7 +15964,7 @@ msgid "" "package contains the library, but no drivers." msgstr "" -#: gnu/packages/scanner.scm:192 +#: gnu/packages/scanner.scm:248 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -15827,7 +15972,7 @@ msgid "" "package contains the library and drivers." msgstr "" -#: gnu/packages/scanner.scm:243 +#: gnu/packages/scanner.scm:299 msgid "" "Scanbd stands for scanner button daemon. It regularly polls\n" "scanners for pressed buttons, function knob changes, or other events such\n" @@ -15843,7 +15988,7 @@ msgid "" "provided the driver also exposes the buttons." msgstr "" -#: gnu/packages/scanner.scm:331 +#: gnu/packages/scanner.scm:387 msgid "" "XSane is a graphical interface for controlling a scanner and acquiring\n" "images from it. You can photocopy multi-page documents and save, fax, print,\n" @@ -15855,14 +16000,14 @@ msgid "" "back-end library, which supports almost all existing scanners." msgstr "" -#: gnu/packages/scheme.scm:225 +#: gnu/packages/scheme.scm:226 msgid "" "GNU/MIT Scheme is an implementation of the Scheme programming\n" "language. It provides an interpreter, a compiler and a debugger. It also\n" "features an integrated Emacs-like editor and a large runtime library." msgstr "" -#: gnu/packages/scheme.scm:324 +#: gnu/packages/scheme.scm:325 msgid "" "Bigloo is a Scheme implementation devoted to one goal: enabling Scheme\n" "based programming style where C(++) is usually required. Bigloo attempts to\n" @@ -15873,7 +16018,7 @@ msgid "" "and between Scheme and Java programs." msgstr "" -#: gnu/packages/scheme.scm:377 +#: gnu/packages/scheme.scm:378 msgid "" "HOP is a multi-tier programming language for the Web 2.0 and the\n" "so-called diffuse Web. It is designed for programming interactive web\n" @@ -15882,14 +16027,14 @@ msgid "" "mashups, office (web agendas, mail clients, ...), etc." msgstr "" -#: gnu/packages/scheme.scm:400 +#: gnu/packages/scheme.scm:401 msgid "" "Scheme 48 is an implementation of Scheme based on a byte-code\n" "interpreter and is designed to be used as a testbed for experiments in\n" "implementation techniques and as an expository tool." msgstr "" -#: gnu/packages/scheme.scm:430 +#: gnu/packages/scheme.scm:431 msgid "" "Gambit consists of two main programs: gsi, the Gambit Scheme\n" "interpreter, and gsc, the Gambit Scheme compiler. The interpreter contains\n" @@ -15900,7 +16045,7 @@ msgid "" "mixed." msgstr "" -#: gnu/packages/scheme.scm:464 +#: gnu/packages/scheme.scm:465 msgid "" "Chibi-Scheme is a very small library with no external dependencies\n" "intended for use as an extension and scripting language in C programs. In\n" @@ -15909,7 +16054,7 @@ msgid "" "threads." msgstr "" -#: gnu/packages/scheme.scm:512 +#: gnu/packages/scheme.scm:513 msgid "" "Structure and Interpretation of Computer Programs (SICP) is\n" "a textbook aiming to teach the principles of computer programming.\n" @@ -15919,19 +16064,19 @@ msgid "" "metalinguistic abstraction, recursion, interpreters, and modular programming." msgstr "" -#: gnu/packages/scheme.scm:556 +#: gnu/packages/scheme.scm:557 msgid "" "String pattern-matching library for scheme48 based on the SRE\n" "regular-expression notation." msgstr "" -#: gnu/packages/scheme.scm:589 +#: gnu/packages/scheme.scm:590 msgid "" "SLIB is a portable Scheme library providing compatibility and\n" "utility functions for all standard Scheme implementations." msgstr "" -#: gnu/packages/scheme.scm:643 +#: gnu/packages/scheme.scm:644 msgid "" "GNU SCM is an implementation of Scheme. This\n" "implementation includes Hobbit, a Scheme-to-C compiler, which can\n" @@ -15939,7 +16084,7 @@ msgid "" "linked with a SCM executable." msgstr "" -#: gnu/packages/scheme.scm:702 +#: gnu/packages/scheme.scm:703 msgid "" "TinyScheme is a light-weight Scheme interpreter that implements as large a\n" "subset of R5RS as was possible without getting very large and complicated.\n" @@ -15955,7 +16100,7 @@ msgid "" "small program, it is easy to comprehend, get to grips with, and use." msgstr "" -#: gnu/packages/scheme.scm:783 +#: gnu/packages/scheme.scm:784 msgid "" "Stalin is an aggressively optimizing whole-program compiler\n" "for Scheme that does polyvariant interprocedural flow analysis,\n" @@ -15967,7 +16112,7 @@ msgid "" "generation." msgstr "" -#: gnu/packages/scheme.scm:819 +#: gnu/packages/scheme.scm:820 msgid "" "Scheme 9 from Empty Space (S9fES) is a mature, portable, and\n" "comprehensible public-domain interpreter for R4RS Scheme offering:\n" @@ -15982,14 +16127,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/scheme.scm:877 +#: gnu/packages/scheme.scm:878 msgid "" "@code{femtolisp} is a scheme-like lisp implementation with a\n" "simple, elegant Scheme dialect. It is a lisp-1 with lexical scope.\n" "The core is 12 builtin special forms and 33 builtin functions." msgstr "" -#: gnu/packages/scheme.scm:940 +#: gnu/packages/scheme.scm:941 msgid "" "Gauche is a R7RS Scheme scripting engine aiming at being a\n" "handy tool that helps programmers and system administrators to write small to\n" @@ -15999,7 +16144,7 @@ msgid "" "and list gauche extension packages." msgstr "" -#: gnu/packages/scheme.scm:1038 +#: gnu/packages/scheme.scm:1039 msgid "" "Gerbil is an opinionated dialect of Scheme designed for Systems\n" "Programming, with a state of the art macro and module system on top of the Gambit\n" @@ -16136,7 +16281,7 @@ msgid "" "server and an IRC server." msgstr "" -#: gnu/packages/shells.scm:107 +#: gnu/packages/shells.scm:108 msgid "" "dash is a POSIX-compliant @command{/bin/sh} implementation that aims to be\n" "as small as possible, often without sacrificing speed. It is faster than the\n" @@ -16144,7 +16289,7 @@ msgid "" "direct descendant of NetBSD's Almquist Shell (@command{ash})." msgstr "" -#: gnu/packages/shells.scm:255 +#: gnu/packages/shells.scm:256 msgid "" "Fish (friendly interactive shell) is a shell focused on interactive use,\n" "discoverability, and friendliness. Fish has very user-friendly and powerful\n" @@ -16156,20 +16301,20 @@ msgid "" "and syntax highlighting." msgstr "" -#: gnu/packages/shells.scm:308 +#: gnu/packages/shells.scm:309 msgid "" "@code{fish-foreign-env} wraps bash script execution in a way\n" "that environment variables that are exported or modified get imported back\n" "into fish." msgstr "" -#: gnu/packages/shells.scm:344 +#: gnu/packages/shells.scm:345 msgid "" "This is a reimplementation by Byron Rakitzis of the Plan 9 shell. It\n" "has a small feature set similar to a traditional Bourne shell." msgstr "" -#: gnu/packages/shells.scm:377 +#: gnu/packages/shells.scm:378 msgid "" "Es is an extensible shell. The language was derived from the Plan 9\n" "shell, rc, and was influenced by functional programming languages, such as\n" @@ -16178,7 +16323,7 @@ msgid "" "written by Paul Haahr and Byron Rakitzis." msgstr "" -#: gnu/packages/shells.scm:455 +#: gnu/packages/shells.scm:456 msgid "" "Tcsh is an enhanced, but completely compatible version of the Berkeley\n" "UNIX C shell (csh). It is a command language interpreter usable both as an\n" @@ -16187,7 +16332,7 @@ msgid "" "history mechanism, job control and a C-like syntax." msgstr "" -#: gnu/packages/shells.scm:522 +#: gnu/packages/shells.scm:523 msgid "" "The Z shell (zsh) is a Unix shell that can be used\n" "as an interactive login shell and as a powerful command interpreter\n" @@ -16196,7 +16341,7 @@ msgid "" "ksh, and tcsh." msgstr "" -#: gnu/packages/shells.scm:572 +#: gnu/packages/shells.scm:573 msgid "" "Xonsh is a Python-ish, BASHwards-looking shell language and command\n" "prompt. The language is a superset of Python 3.4+ with additional shell\n" @@ -16205,7 +16350,7 @@ msgid "" "use of experts and novices alike." msgstr "" -#: gnu/packages/shells.scm:616 +#: gnu/packages/shells.scm:617 msgid "" "Scsh is a Unix shell embedded in Scheme. Scsh has two main\n" "components: a process notation for running programs and setting up pipelines\n" @@ -16213,7 +16358,7 @@ msgid "" "operating system." msgstr "" -#: gnu/packages/shells.scm:658 +#: gnu/packages/shells.scm:659 msgid "" "Linenoise is a minimal, zero-config, readline replacement.\n" "Its features include:\n" @@ -16227,7 +16372,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/shells.scm:722 +#: gnu/packages/shells.scm:723 msgid "" "S is a new shell that aims to be extremely simple. It does not\n" "implement the POSIX shell standard.\n" @@ -16241,19 +16386,19 @@ msgid "" "A @code{andglob} program is also provided along with s." msgstr "" -#: gnu/packages/shells.scm:753 +#: gnu/packages/shells.scm:754 msgid "" "Oksh is a port of the OpenBSD Korn Shell.\n" "The OpenBSD Korn Shell is a cleaned up and enhanced ksh." msgstr "" -#: gnu/packages/shells.scm:783 +#: gnu/packages/shells.scm:784 msgid "" "loksh is a Linux port of OpenBSD's @command{ksh}. It is a small,\n" "interactive POSIX shell targeted at resource-constrained systems." msgstr "" -#: gnu/packages/shells.scm:821 +#: gnu/packages/shells.scm:822 msgid "" "mksh is an actively developed free implementation of the\n" "Korn Shell programming language and a successor to the Public Domain Korn\n" @@ -16285,7 +16430,7 @@ msgid "" "files and text." msgstr "" -#: gnu/packages/shells.scm:1006 +#: gnu/packages/shells.scm:1005 msgid "" "Nu draws inspiration from projects like PowerShell, functional\n" "programming languages, and modern CLI tools. Rather than thinking of files\n" @@ -16296,7 +16441,7 @@ msgid "" "of commands called a ``pipeline''." msgstr "" -#: gnu/packages/shells.scm:1037 +#: gnu/packages/shells.scm:1036 msgid "" "This package is a library for ANSI terminal colors and styles (bold,\n" "underline)." @@ -16552,19 +16697,19 @@ msgid "" "your calls and messages." msgstr "" -#: gnu/packages/telephony.scm:874 +#: gnu/packages/telephony.scm:869 msgid "" "PJProject provides an implementation of the Session\n" "Initiation Protocol (SIP) and a multimedia framework." msgstr "" -#: gnu/packages/telephony.scm:916 +#: gnu/packages/telephony.scm:911 msgid "" "A collection of libraries and header files for implementing\n" "telephony functionality into custom Telegram clients." msgstr "" -#: gnu/packages/tex.scm:532 +#: gnu/packages/tex.scm:543 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -16574,20 +16719,20 @@ msgid "" "This package contains the binaries." msgstr "" -#: gnu/packages/tex.scm:571 +#: gnu/packages/tex.scm:582 msgid "" "kpathsea is a library, whose purpose is to return a filename\n" "from a list of user-specified directories similar to how shells look up\n" "executables. It is maintained as a part of TeX Live." msgstr "" -#: gnu/packages/tex.scm:591 +#: gnu/packages/tex.scm:602 msgid "" "This package provides the docstrip utility to strip\n" "documentation from TeX files. It is part of the LaTeX base." msgstr "" -#: gnu/packages/tex.scm:606 +#: gnu/packages/tex.scm:617 msgid "" "This bundle provides generic access to Unicode Consortium\n" "data for TeX use. It contains a set of text files provided by the Unicode\n" @@ -16600,7 +16745,7 @@ msgid "" "out to date by @code{unicode-letters.tex}." msgstr "" -#: gnu/packages/tex.scm:638 +#: gnu/packages/tex.scm:649 msgid "" "This package includes Knuth's original @file{hyphen.tex},\n" "@file{zerohyph.tex} to disable hyphenation, @file{language.us} which starts\n" @@ -16608,13 +16753,13 @@ msgid "" "default versions of those), etc." msgstr "" -#: gnu/packages/tex.scm:659 +#: gnu/packages/tex.scm:670 msgid "" "This package provides files needed for converting DVI files\n" "to PostScript." msgstr "" -#: gnu/packages/tex.scm:673 +#: gnu/packages/tex.scm:684 msgid "" "This bundle provides a collection of model \".ini\" files\n" "for creating TeX formats. These files are commonly used to introduced\n" @@ -16623,13 +16768,13 @@ msgid "" "to adapt the plain e-TeX source file to work with XeTeX and LuaTeX." msgstr "" -#: gnu/packages/tex.scm:736 +#: gnu/packages/tex.scm:747 msgid "" "This package provides the Metafont base files needed to\n" "build fonts using the Metafont system." msgstr "" -#: gnu/packages/tex.scm:821 +#: gnu/packages/tex.scm:832 msgid "" "This package provides TeX macros for converting Adobe Font\n" "Metric files to TeX metric and virtual font format. Fontinst helps mainly\n" @@ -16639,7 +16784,7 @@ msgid "" "typesetting in these fonts." msgstr "" -#: gnu/packages/tex.scm:842 +#: gnu/packages/tex.scm:853 msgid "" "This is Fontname, a naming scheme for (the base part of)\n" "external TeX font filenames. This makes at most eight-character names\n" @@ -16647,7 +16792,7 @@ msgid "" "documents." msgstr "" -#: gnu/packages/tex.scm:915 +#: gnu/packages/tex.scm:926 msgid "" "This package provides the Computer Modern fonts by Donald\n" "Knuth. The Computer Modern font family is a large collection of text,\n" @@ -16655,7 +16800,7 @@ msgid "" "8A." msgstr "" -#: gnu/packages/tex.scm:946 +#: gnu/packages/tex.scm:957 msgid "" "The CM-Super family provides Adobe Type 1 fonts that replace\n" "the T1/TS1-encoded Computer Modern (EC/TC), T1/TS1-encoded Concrete,\n" @@ -16665,13 +16810,13 @@ msgid "" "originals." msgstr "" -#: gnu/packages/tex.scm:979 +#: gnu/packages/tex.scm:990 msgid "" "This package provides a drop-in replacements for the Courier\n" "font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:1002 +#: gnu/packages/tex.scm:1013 msgid "" "The TeX-GYRE bundle consist of multiple font families:\n" "@itemize @bullet\n" @@ -16691,21 +16836,21 @@ msgid "" "support (for use with a variety of encodings) is provided." msgstr "" -#: gnu/packages/tex.scm:1041 +#: gnu/packages/tex.scm:1052 msgid "" "The Latin Modern fonts are derived from the famous Computer\n" "Modern fonts designed by Donald E. Knuth and described in Volume E of his\n" "Computers & Typesetting series." msgstr "" -#: gnu/packages/tex.scm:1106 +#: gnu/packages/tex.scm:1117 msgid "" "This is a collection of core TeX and METAFONT macro files\n" "from Donald Knuth, including the plain format, plain base, and the MF logo\n" "fonts." msgstr "" -#: gnu/packages/tex.scm:1181 +#: gnu/packages/tex.scm:1192 msgid "" "This is a collection of fonts for use with standard LaTeX\n" "packages and classes. It includes invisible fonts (for use with the slides\n" @@ -16713,14 +16858,14 @@ msgid "" "symbol fonts." msgstr "" -#: gnu/packages/tex.scm:1253 +#: gnu/packages/tex.scm:1264 msgid "" "This package provides LaTeX and font definition files to access the\n" "Knuthian mflogo fonts described in The Metafontbook and to typeset Metafont\n" "logos in LaTeX documents." msgstr "" -#: gnu/packages/tex.scm:1274 +#: gnu/packages/tex.scm:1285 msgid "" "These fonts were created in METAFONT by Knuth, for his own publications.\n" "At some stage, the letters P and S were added, so that the METAPOST logo could\n" @@ -16729,7 +16874,7 @@ msgid "" "Taco Hoekwater." msgstr "" -#: gnu/packages/tex.scm:1402 +#: gnu/packages/tex.scm:1415 gnu/packages/tex.scm:1579 msgid "" "This package provides an extended set of fonts for use in mathematics,\n" "including: extra mathematical symbols; blackboard bold letters (uppercase\n" @@ -16743,7 +16888,7 @@ msgid "" "details can be found in the documentation." msgstr "" -#: gnu/packages/tex.scm:1432 +#: gnu/packages/tex.scm:1609 msgid "" "Mkpattern is a general purpose program for the generation of\n" "hyphenation patterns, with definition of letter sets and template-like\n" @@ -16751,7 +16896,7 @@ msgid "" "output encodings, and features generation of clean UTF-8 patterns." msgstr "" -#: gnu/packages/tex.scm:1489 +#: gnu/packages/tex.scm:1666 msgid "" "This package provides an extended version of TeX (which is capable of\n" "running as if it were TeX unmodified). E-TeX has been specified by the LaTeX\n" @@ -16760,122 +16905,131 @@ msgid "" "incorporates the e-TeX extensions." msgstr "" -#: gnu/packages/tex.scm:1507 +#: gnu/packages/tex.scm:1684 msgid "" "This package contains files used to build the Plain TeX format, as\n" "described in the TeXbook, together with various supporting files (some also\n" "discussed in the book)." msgstr "" -#: gnu/packages/tex.scm:1533 +#: gnu/packages/tex.scm:1702 +msgid "" +"The package facilitates wrapping text to a specific character width, breaking\n" +"lines by words rather than, as done by TeX, by characters. The primary use for\n" +"these facilities is to aid the generation of messages sent to the log file or\n" +"console output to display messages to the user. Package authors may also find\n" +"this useful when writing out arbitary text to an external file." +msgstr "" + +#: gnu/packages/tex.scm:1730 msgid "" "This package provides a drop-in replacements for the Helvetica\n" "font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:1546 +#: gnu/packages/tex.scm:1743 msgid "" "The package provides hyphenation patterns for the Afrikaans\n" "language." msgstr "" -#: gnu/packages/tex.scm:1560 +#: gnu/packages/tex.scm:1757 msgid "" "The package provides hyphenation patterns for ancient\n" "Greek." msgstr "" -#: gnu/packages/tex.scm:1573 +#: gnu/packages/tex.scm:1770 msgid "" "The package provides hyphenation patterns for the Armenian\n" "language." msgstr "" -#: gnu/packages/tex.scm:1587 +#: gnu/packages/tex.scm:1784 msgid "" "The package provides hyphenation patterns for the Basque\n" "language." msgstr "" -#: gnu/packages/tex.scm:1601 +#: gnu/packages/tex.scm:1798 msgid "" "The package provides hyphenation patterns for the Belarusian\n" "language." msgstr "" -#: gnu/packages/tex.scm:1613 +#: gnu/packages/tex.scm:1810 msgid "" "The package provides hyphenation patterns for the Bulgarian\n" "language in T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1627 +#: gnu/packages/tex.scm:1824 msgid "" "The package provides hyphenation patterns for Catalan in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1640 +#: gnu/packages/tex.scm:1837 msgid "" "The package provides hyphenation patterns for unaccented\n" "Chinese pinyin T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1652 +#: gnu/packages/tex.scm:1849 msgid "" "The package provides hyphenation patterns for Church\n" "Slavonic in UTF-8 encoding." msgstr "" -#: gnu/packages/tex.scm:1665 +#: gnu/packages/tex.scm:1862 msgid "" "The package provides hyphenation patterns for Coptic in\n" "UTF-8 encoding as well as in ASCII-based encoding for 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:1678 +#: gnu/packages/tex.scm:1875 msgid "" "The package provides hyphenation patterns for Croatian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1690 +#: gnu/packages/tex.scm:1887 msgid "" "The package provides hyphenation patterns for Czech in T1/EC\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1702 +#: gnu/packages/tex.scm:1899 msgid "" "The package provides hyphenation patterns for Danish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1715 +#: gnu/packages/tex.scm:1912 msgid "" "The package provides hyphenation patterns for Dutch in T1/EC\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1728 +#: gnu/packages/tex.scm:1925 msgid "" "The package provides additional hyphenation patterns for\n" "American and British English in ASCII encoding." msgstr "" -#: gnu/packages/tex.scm:1742 +#: gnu/packages/tex.scm:1939 msgid "" "The package provides hyphenation patterns for Esperanto ISO\n" "Latin 3 and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1754 +#: gnu/packages/tex.scm:1951 msgid "" "The package provides hyphenation patterns for Estonian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1768 +#: gnu/packages/tex.scm:1965 msgid "" "The package provides hyphenation patterns for languages\n" "written using the Ethiopic script for Unicode engines. They are not supposed\n" @@ -16883,94 +17037,94 @@ msgid "" "be replaced by files tailored to individual languages." msgstr "" -#: gnu/packages/tex.scm:1782 +#: gnu/packages/tex.scm:1979 msgid "" "The package provides hyphenation patterns for Finnish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1794 +#: gnu/packages/tex.scm:1991 msgid "" "The package provides hyphenation patterns for Finnish for\n" "school in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1806 +#: gnu/packages/tex.scm:2003 msgid "" "The package provides hyphenation patterns for French in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1818 +#: gnu/packages/tex.scm:2015 msgid "" "The package provides hyphenation patterns for Friulan in\n" "ASCII encodings." msgstr "" -#: gnu/packages/tex.scm:1831 +#: gnu/packages/tex.scm:2028 msgid "" "The package provides hyphenation patterns for Galician in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1843 +#: gnu/packages/tex.scm:2040 msgid "" "The package provides hyphenation patterns for Georgian in\n" "T8M, T8K, and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1861 +#: gnu/packages/tex.scm:2058 msgid "" "This package provides hyphenation patterns for German in\n" "T1/EC and UTF-8 encodings, for traditional and reformed spelling, including\n" "Swiss German." msgstr "" -#: gnu/packages/tex.scm:1880 +#: gnu/packages/tex.scm:2077 msgid "" "This package provides hyphenation patterns for Modern Greek\n" "in monotonic and polytonic spelling in LGR and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1894 +#: gnu/packages/tex.scm:2091 msgid "" "This package provides hyphenation patterns for Hungarian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1907 +#: gnu/packages/tex.scm:2104 msgid "" "This package provides hyphenation patterns for Icelandic in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1930 +#: gnu/packages/tex.scm:2127 msgid "" "This package provides hyphenation patterns for Assamese,\n" "Bengali, Gujarati, Hindi, Kannada, Malayalam, Marathi, Oriya, Panjabi, Tamil\n" "and Telugu for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:1943 +#: gnu/packages/tex.scm:2140 msgid "" "This package provides hyphenation patterns for\n" "Indonesian (Bahasa Indonesia) in ASCII encoding. They are probably also\n" "usable for Malay (Bahasa Melayu)." msgstr "" -#: gnu/packages/tex.scm:1956 +#: gnu/packages/tex.scm:2153 msgid "" "This package provides hyphenation patterns for Interlingua\n" "in ASCII encoding." msgstr "" -#: gnu/packages/tex.scm:1968 +#: gnu/packages/tex.scm:2165 msgid "" "This package provides hyphenation patterns for\n" "Irish (Gaeilge) in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1981 +#: gnu/packages/tex.scm:2178 msgid "" "This package provides hyphenation patterns for Italian in\n" "ASCII encoding. Compliant with the Recommendation UNI 6461 on hyphenation\n" @@ -16978,14 +17132,14 @@ msgid "" "UNI)." msgstr "" -#: gnu/packages/tex.scm:1995 +#: gnu/packages/tex.scm:2192 msgid "" "This package provides hyphenation patterns for\n" "Kurmanji (Northern Kurdish) as spoken in Turkey and by the Kurdish diaspora in\n" "Europe, in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2011 +#: gnu/packages/tex.scm:2208 msgid "" "This package provides hyphenation patterns for Latin in\n" "T1/EC and UTF-8 encodings, mainly in modern spelling (u when u is needed and v\n" @@ -16999,35 +17153,35 @@ msgid "" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2032 +#: gnu/packages/tex.scm:2229 msgid "" "This package provides hyphenation patterns for Latvian in\n" "L7X and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2045 +#: gnu/packages/tex.scm:2242 msgid "" "This package provides hyphenation patterns for Lithuanian in\n" "L7X and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2060 -msgid "This package provides hypenation patterns for Macedonian." +#: gnu/packages/tex.scm:2257 +msgid "This package provides hyphenation patterns for Macedonian." msgstr "" -#: gnu/packages/tex.scm:2073 +#: gnu/packages/tex.scm:2270 msgid "" "This package provides hyphenation patterns for Mongolian in\n" "T2A, LMC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2088 +#: gnu/packages/tex.scm:2285 msgid "" "This package provides hyphenation patterns for Norwegian\n" "Bokmal and Nynorsk in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2102 +#: gnu/packages/tex.scm:2299 msgid "" "This package provides hyphenation patterns for Occitan in\n" "T1/EC and UTF-8 encodings. They are supposed to be valid for all the Occitan\n" @@ -17036,94 +17190,94 @@ msgid "" "Alps encompassing the southern half of the French pentagon." msgstr "" -#: gnu/packages/tex.scm:2117 +#: gnu/packages/tex.scm:2314 msgid "" "This package provides hyphenation patterns for Panjabi in\n" "T1/EC encoding." msgstr "" -#: gnu/packages/tex.scm:2130 +#: gnu/packages/tex.scm:2327 msgid "" "This package provides hyphenation patterns for Piedmontese\n" "in ASCII encoding. Compliant with 'Gramatica dla lengua piemonteisa' by\n" "Camillo Brero." msgstr "" -#: gnu/packages/tex.scm:2143 +#: gnu/packages/tex.scm:2340 msgid "" "This package provides hyphenation patterns for Polish in QX\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2156 +#: gnu/packages/tex.scm:2353 msgid "" "This package provides hyphenation patterns for Portuguese in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2168 +#: gnu/packages/tex.scm:2365 msgid "" "This package provides hyphenation patterns for Romanian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2181 +#: gnu/packages/tex.scm:2378 msgid "" "This package provides hyphenation patterns for Romansh in\n" "ASCII encodings. They are supposed to comply with the rules indicated by the\n" "Lia Rumantscha (Romansh language society)." msgstr "" -#: gnu/packages/tex.scm:2194 +#: gnu/packages/tex.scm:2391 msgid "" "This package provides hyphenation patterns for Russian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2207 +#: gnu/packages/tex.scm:2404 msgid "" "This package provides hyphenation patterns for Sanskrit and\n" "Prakrit in longdesc transliteration, and in Devanagari, Bengali, Kannada,\n" "Malayalam longdesc and Telugu scripts for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:2224 +#: gnu/packages/tex.scm:2421 msgid "" "This package provides hyphenation patterns for Serbian in\n" "T1/EC, T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2237 +#: gnu/packages/tex.scm:2434 msgid "" "This package provides hyphenation patterns for Slovak in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2249 +#: gnu/packages/tex.scm:2446 msgid "" "This package provides hyphenation patterns for Slovenian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2265 +#: gnu/packages/tex.scm:2462 msgid "" "The package provides hyphenation patterns for Spanish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2277 +#: gnu/packages/tex.scm:2474 msgid "" "This package provides hyphenation patterns for Swedish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2289 +#: gnu/packages/tex.scm:2486 msgid "" "This package provides hyphenation patterns for Thai in LTH\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2302 +#: gnu/packages/tex.scm:2499 msgid "" "The package provides hyphenation patterns for Turkish in\n" "T1/EC and UTF-8 encodings. The patterns for Turkish were first produced for\n" @@ -17133,31 +17287,31 @@ msgid "" "compatibility with 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:2319 +#: gnu/packages/tex.scm:2516 msgid "" "The package provides hyphenation patterns for Turkmen in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2331 +#: gnu/packages/tex.scm:2528 msgid "" "This package provides hyphenation patterns for Ukrainian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2344 +#: gnu/packages/tex.scm:2541 msgid "" "This package provides hyphenation patterns for Upper Sorbian\n" "in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2356 +#: gnu/packages/tex.scm:2553 msgid "" "This package provides hyphenation patterns for Welsh in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2477 +#: gnu/packages/tex.scm:2674 msgid "" "Modern native UTF-8 engines such as XeTeX and LuaTeX need\n" "hyphenation patterns in UTF-8 format, whereas older systems require\n" @@ -17170,7 +17324,7 @@ msgid "" "converters, will completely supplant the older patterns." msgstr "" -#: gnu/packages/tex.scm:2521 +#: gnu/packages/tex.scm:2718 msgid "" "The package provides experimental hyphenation patterns for\n" "the German language, covering both traditional and reformed orthography. The\n" @@ -17178,21 +17332,29 @@ msgid "" "bundle." msgstr "" -#: gnu/packages/tex.scm:2542 +#: gnu/packages/tex.scm:2739 msgid "" "The package provides a range of hyphenation patterns for\n" "Ukrainian, depending on the encoding of the output font including the standard\n" "T2A." msgstr "" -#: gnu/packages/tex.scm:2577 +#: gnu/packages/tex.scm:2774 msgid "" "The package provides a collection of Russian hyphenation\n" "patterns supporting a number of Cyrillic font encodings, including T2,\n" "UCY (Omega Unicode Cyrillic), LCY, LWN (OT2), and koi8-r." msgstr "" -#: gnu/packages/tex.scm:2620 +#: gnu/packages/tex.scm:2792 +msgid "" +"This package deals with input encodings. It provides a wider range of input\n" +"encodings using standard mappings, than does inputenc; it also covers nearly all\n" +"slots. In this way, it serves as more uptodate replacement for package\n" +"inputenc." +msgstr "" + +#: gnu/packages/tex.scm:2853 msgid "" "Kpathsea is a library and utility programs which provide\n" "path searching facilities for TeX file types, including the self-locating\n" @@ -17200,13 +17362,27 @@ msgid "" "mechanism. This package provides supporting files." msgstr "" -#: gnu/packages/tex.scm:2636 +#: gnu/packages/tex.scm:2876 +msgid "" +"The family contains text fonts in roman, sans-serif and monospaced\n" +"shapes, with true small caps and old-style numbers; the package offers full\n" +"support of the textcomp package. The mathematics fonts include all the AMS\n" +"fonts, in both normal and bold weights. Each of the font types is available\n" +"in two main versions: default and light. Each version is available in four\n" +"variants: default; oldstyle numbers; oldstyle numbers with old ligatures such\n" +"as ct and st, and long-tailed capital Q; and veryoldstyle with long s. Other\n" +"variants include small caps as default or large small caps, and for\n" +"mathematics both upright and slanted shapes for Greek letters, as well as\n" +"default and narrow versions of multiple integrals." +msgstr "" + +#: gnu/packages/tex.scm:2898 msgid "" "The package provides configuration files for LaTeX-related\n" "formats." msgstr "" -#: gnu/packages/tex.scm:2867 +#: gnu/packages/tex.scm:3127 msgid "" "This bundle comprises the source of LaTeX itself, together with several\n" "packages which are considered \"part of the kernel\". This bundle, together\n" @@ -17214,7 +17390,7 @@ msgid "" "contain." msgstr "" -#: gnu/packages/tex.scm:2885 +#: gnu/packages/tex.scm:3145 msgid "" "This LaTeX packages provides two hooks for @code{\\end@{document@}}\n" "that are executed after the hook of @code{\\AtEndDocument}:\n" @@ -17224,13 +17400,13 @@ msgid "" "of the @file{.aux} file." msgstr "" -#: gnu/packages/tex.scm:2905 +#: gnu/packages/tex.scm:3165 msgid "" "This package provides hooks for adding code at the beginning of\n" "@file{.aux} files." msgstr "" -#: gnu/packages/tex.scm:2921 +#: gnu/packages/tex.scm:3181 msgid "" "The package adds support for EPS files in the @code{graphicx} package\n" "when running under pdfTeX. If an EPS graphic is detected, the package\n" @@ -17238,7 +17414,7 @@ msgid "" "@command{epstopdf}." msgstr "" -#: gnu/packages/tex.scm:2943 +#: gnu/packages/tex.scm:3203 msgid "" "LaTeX2e's @code{filecontents} and @code{filecontents*} environments\n" "enable a LaTeX source file to generate external files as it runs through\n" @@ -17249,7 +17425,7 @@ msgid "" "@code{filecontents*} anywhere." msgstr "" -#: gnu/packages/tex.scm:2964 +#: gnu/packages/tex.scm:3224 msgid "" "This package provides the original (and now obsolescent) graphics\n" "inclusion macros for use with dvips, still widely used by Plain TeX users (in\n" @@ -17259,7 +17435,7 @@ msgid "" "users, via its Plain TeX version.)" msgstr "" -#: gnu/packages/tex.scm:2986 +#: gnu/packages/tex.scm:3246 msgid "" "This package provides tools for the flexible handling of verbatim text\n" "including: verbatim commands in footnotes; a variety of verbatim environments\n" @@ -17269,7 +17445,7 @@ msgid "" "verbatim source)." msgstr "" -#: gnu/packages/tex.scm:3008 +#: gnu/packages/tex.scm:3268 msgid "" "This bundle is a combined distribution consisting of @file{dvips.def},\n" "@file{pdftex.def}, @file{luatex.def}, @file{xetex.def}, @file{dvipdfmx.def},\n" @@ -17277,13 +17453,19 @@ msgid "" "packages." msgstr "" -#: gnu/packages/tex.scm:3026 +#: gnu/packages/tex.scm:3286 msgid "" "This bundle includes @file{color.cfg} and @file{graphics.cfg} files that\n" "set default \"driver\" options for the color and graphics packages." msgstr "" -#: gnu/packages/tex.scm:3048 +#: gnu/packages/tex.scm:3303 +msgid "" +"The package provides Greek LICR macro definitions and encoding definition files\n" +"for Greek text font encodings for use with fontenc." +msgstr "" + +#: gnu/packages/tex.scm:3325 msgid "" "This is a collection of LaTeX packages for producing color, including\n" "graphics (e.g. PostScript) files, and rotation and scaling of text in LaTeX\n" @@ -17291,13 +17473,13 @@ msgid "" "keyval, and lscape." msgstr "" -#: gnu/packages/tex.scm:3066 +#: gnu/packages/tex.scm:3343 msgid "" "This package provides the code for the @code{color} option that is\n" "used by @code{hyperref} and @code{bookmark}." msgstr "" -#: gnu/packages/tex.scm:3098 +#: gnu/packages/tex.scm:3375 msgid "" "The package starts from the basic facilities of the colorcolor package,\n" "and provides easy driver-independent access to several kinds of color tints,\n" @@ -17308,7 +17490,7 @@ msgid "" "tables." msgstr "" -#: gnu/packages/tex.scm:3171 +#: gnu/packages/tex.scm:3448 msgid "" "The package provides an implementation of a parser for\n" "documents matching the XML 1.0 and XML Namespace Recommendations. Element and\n" @@ -17316,7 +17498,7 @@ msgid "" "XML, using UTF-8 or a suitable 8-bit encoding." msgstr "" -#: gnu/packages/tex.scm:3222 +#: gnu/packages/tex.scm:3499 msgid "" "The @code{hyperref} package is used to handle cross-referencing commands\n" "in LaTeX to produce hypertext links in the document. The package provides\n" @@ -17328,20 +17510,20 @@ msgid "" "@code{nameref} packages, which make use of the facilities of @code{hyperref}." msgstr "" -#: gnu/packages/tex.scm:3262 +#: gnu/packages/tex.scm:3539 msgid "" "The bundle comprises various LaTeX packages, providing among others:\n" "better accessibility support for PDF files; extensible chemists reaction\n" "arrows; record information about document class(es) used; and many more." msgstr "" -#: gnu/packages/tex.scm:3285 +#: gnu/packages/tex.scm:3562 msgid "" "This package provides additional rerun warnings if some auxiliary\n" "files have changed. It is based on MD5 checksum, provided by pdfTeX." msgstr "" -#: gnu/packages/tex.scm:3319 +#: gnu/packages/tex.scm:3596 msgid "" "This package is a collection of (variously) simple tools provided as\n" "part of the LaTeX required tools distribution, comprising the following\n" @@ -17351,7 +17533,7 @@ msgid "" "xr, and xspace." msgstr "" -#: gnu/packages/tex.scm:3338 +#: gnu/packages/tex.scm:3615 msgid "" "The command @code{\\url} is a form of verbatim command that\n" "allows linebreaks at certain characters or combinations of characters, accepts\n" @@ -17363,14 +17545,14 @@ msgid "" "of file names." msgstr "" -#: gnu/packages/tex.scm:3364 +#: gnu/packages/tex.scm:3641 msgid "" "This package provides font maps that were originally part of\n" "the now obsolete teTeX distributions but are still used at the core of the TeX\n" "Live distribution." msgstr "" -#: gnu/packages/tex.scm:3391 +#: gnu/packages/tex.scm:3668 msgid "" "The l3kernel bundle provides an implementation of the LaTeX3\n" "programmers’ interface, as a set of packages that run under LaTeX 2e. The\n" @@ -17379,7 +17561,7 @@ msgid "" "that the LaTeX3 conventions can be used with regular LaTeX 2e packages." msgstr "" -#: gnu/packages/tex.scm:3420 +#: gnu/packages/tex.scm:3697 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" @@ -17388,7 +17570,7 @@ msgid "" "an independent schedule." msgstr "" -#: gnu/packages/tex.scm:3484 +#: gnu/packages/tex.scm:3761 msgid "" "This bundle holds prototype implementations of concepts for a LaTeX\n" "designer interface, to be used with the experimental LaTeX kernel as\n" @@ -17405,14 +17587,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:3511 +#: gnu/packages/tex.scm:3788 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" "here are defined for the dvips engine only." msgstr "" -#: gnu/packages/tex.scm:3539 +#: gnu/packages/tex.scm:3816 msgid "" "Fontspec is a package for XeLaTeX and LuaLaTeX. It provides an\n" "automatic and unified interface to feature-rich AAT and OpenType fonts through\n" @@ -17420,7 +17602,7 @@ msgid "" "the l3kernel and xparse bundles from the LaTeX 3 development team." msgstr "" -#: gnu/packages/tex.scm:3569 +#: gnu/packages/tex.scm:3846 msgid "" "The original grffile package extended the file name processing of the\n" "@code{graphics} package to support a larger range of file names. The base\n" @@ -17428,13 +17610,13 @@ msgid "" "is a stub that just loads @code{graphicx}." msgstr "" -#: gnu/packages/tex.scm:3610 +#: gnu/packages/tex.scm:3887 msgid "" "This package provides @code{\\StringEncodingConvert} for converting a\n" "string between different encodings. Both LaTeX and plain-TeX are supported." msgstr "" -#: gnu/packages/tex.scm:3653 +#: gnu/packages/tex.scm:3930 msgid "" "The l3build module is designed to support the development of\n" "high-quality LaTeX code by providing: a unit testing system, automated\n" @@ -17443,14 +17625,20 @@ msgid "" "@code{.tex} file which provides the testing environment." msgstr "" -#: gnu/packages/tex.scm:3690 +#: gnu/packages/tex.scm:3953 msgid "" "Lualibs is a collection of Lua modules useful for general programming.\n" "The bundle is based on Lua modules shipped with ConTeXt, and made available in\n" "this bundle for use independent of ConTeXt." msgstr "" -#: gnu/packages/tex.scm:3718 +#: gnu/packages/tex.scm:3972 +msgid "" +"This package provides a Lua module for processing application arguments\n" +"in the same way as BSD/GNU @code{getopt_long(3)} functions do." +msgstr "" + +#: gnu/packages/tex.scm:3999 msgid "" "Luaotfload is an adaptation of the ConTeXt font loading system for the\n" "Plain and LaTeX formats. It allows OpenType fonts to be loaded with font\n" @@ -17459,11 +17647,7 @@ msgid "" "loading fonts by their proper names instead of file names." msgstr "" -#: gnu/packages/tex.scm:3790 -msgid "This package is necessary to use LaTeX with the LuaTeX engine." -msgstr "" - -#: gnu/packages/tex.scm:3809 +#: gnu/packages/tex.scm:4025 msgid "" "This is the principal package in the AMS-LaTeX distribution. It adapts\n" "for use in LaTeX most of the mathematical features found in AMS-TeX; it is\n" @@ -17478,7 +17662,7 @@ msgid "" "definitions." msgstr "" -#: gnu/packages/tex.scm:3843 +#: gnu/packages/tex.scm:4059 msgid "" "This bundle contains three AMS classes: @code{amsartamsart} (for writing\n" "articles for the AMS), @code{amsbookamsbook} (for books) and\n" @@ -17487,7 +17671,7 @@ msgid "" "distribution." msgstr "" -#: gnu/packages/tex.scm:3890 +#: gnu/packages/tex.scm:4106 msgid "" "The package manages culturally-determined typographical (and other)\n" "rules, and hyphenation patterns for a wide range of languages. A document may\n" @@ -17498,7 +17682,7 @@ msgid "" "polyglossia package rather than Babel." msgstr "" -#: gnu/packages/tex.scm:3917 +#: gnu/packages/tex.scm:4133 msgid "" "This package provides the language definition file for support of\n" "English in @code{babel}. Care is taken to select British hyphenation patterns\n" @@ -17506,13 +17690,14 @@ msgid "" "for Canadian and USA text." msgstr "" -#: gnu/packages/tex.scm:3939 +#: gnu/packages/tex.scm:4173 msgid "" -"This package provides support for the French language for the\n" -"babel multilingual system." +"The package, formerly known as frenchb, establishes French conventions\n" +"in a document (or a subset of the conventions, if French is not the main\n" +"language of the document)." msgstr "" -#: gnu/packages/tex.scm:3959 +#: gnu/packages/tex.scm:4196 msgid "" "This package provides the language definition file for support of German\n" "in @code{babel}. It provides all the necessary macros, definitions and\n" @@ -17521,14 +17706,14 @@ msgid "" "Swiss varieties of German." msgstr "" -#: gnu/packages/tex.scm:3986 +#: gnu/packages/tex.scm:4223 msgid "" "This package provides the language definition file for\n" "support of Swedish in @code{babel}. It provides all the necessary macros,\n" "definitions and settings to typeset Swedish documents." msgstr "" -#: gnu/packages/tex.scm:4008 +#: gnu/packages/tex.scm:4245 msgid "" "This bundle of macros files provides macro support (including font\n" "encoding macros) for the use of Cyrillic characters in fonts encoded under the\n" @@ -17536,7 +17721,7 @@ msgid "" "language that is written in a Cyrillic alphabet." msgstr "" -#: gnu/packages/tex.scm:4126 +#: gnu/packages/tex.scm:4363 msgid "" "The PSNFSS collection includes a set of files that provide a complete\n" "working setup of the LaTeX font selection scheme (NFSS2) for use with common\n" @@ -17551,20 +17736,20 @@ msgid "" "part of the LaTeX required set of packages." msgstr "" -#: gnu/packages/tex.scm:4177 gnu/packages/tex.scm:4269 +#: gnu/packages/tex.scm:4414 gnu/packages/tex.scm:4506 msgid "" "This is a very limited subset of the TeX Live distribution.\n" "It includes little more than the required set of LaTeX packages." msgstr "" -#: gnu/packages/tex.scm:4248 +#: gnu/packages/tex.scm:4485 msgid "" "This package contains the fonts map configuration file\n" "generated for the base TeX Live packages as well as, optionally, user-provided\n" "ones." msgstr "" -#: gnu/packages/tex.scm:4288 +#: gnu/packages/tex.scm:4525 msgid "" "These fonts are considered the \"ultimate answer\" to IPA\n" "typesetting. The encoding of these 8-bit fonts has been registered as LaTeX\n" @@ -17573,7 +17758,7 @@ msgid "" "TS3 fonts." msgstr "" -#: gnu/packages/tex.scm:4311 +#: gnu/packages/tex.scm:4548 msgid "" "Amsrefs is a LaTeX package for bibliographies that provides an archival\n" "data format similar to the format of BibTeX database files, but adapted to\n" @@ -17581,7 +17766,7 @@ msgid "" "conjunction with BibTeX or as a replacement for BibTeX." msgstr "" -#: gnu/packages/tex.scm:4340 +#: gnu/packages/tex.scm:4577 msgid "" "This package aims to provide a one-stop solution to requirements for\n" "footnotes. It offers: Multiple footnote apparatus superior to that of\n" @@ -17595,7 +17780,7 @@ msgid "" "@code{suffix} packages." msgstr "" -#: gnu/packages/tex.scm:4368 +#: gnu/packages/tex.scm:4605 msgid "" "The package provides the commands @code{\\blindtext} and\n" "@code{\\Blindtext} for creating \"blind\" text useful in testing new classes\n" @@ -17606,7 +17791,7 @@ msgid "" "ipsum\" text, see the @code{lipsum} package)." msgstr "" -#: gnu/packages/tex.scm:4407 +#: gnu/packages/tex.scm:4644 msgid "" "This package implements a document layout for writing letters according\n" "to the rules of DIN (Deutsches Institut für Normung, German standardisation\n" @@ -17618,7 +17803,7 @@ msgid "" "package." msgstr "" -#: gnu/packages/tex.scm:4433 +#: gnu/packages/tex.scm:4670 msgid "" "This package provides a means to add a textual, light grey watermark on\n" "every page or on the first page of a document. Typical usage may consist in\n" @@ -17628,7 +17813,7 @@ msgid "" "on everypage." msgstr "" -#: gnu/packages/tex.scm:4457 +#: gnu/packages/tex.scm:4694 msgid "" "This package provides the @code{\\collect@@body} command (as in\n" "@code{amsmath}), as well as a @code{\\long} version @code{\\Collect@@Body},\n" @@ -17636,7 +17821,7 @@ msgid "" "define a new author interface to creating new environments." msgstr "" -#: gnu/packages/tex.scm:4479 +#: gnu/packages/tex.scm:4716 msgid "" "LaTeX users sometimes need to ensure that two or more blocks of text\n" "occupy the same amount of horizontal space on the page. To that end, the\n" @@ -17650,7 +17835,7 @@ msgid "" "also provided." msgstr "" -#: gnu/packages/tex.scm:4504 +#: gnu/packages/tex.scm:4741 msgid "" "This package gives the user complete control of how the entries of\n" "the table of contents should be constituted from the name, number, and page\n" @@ -17670,7 +17855,7 @@ msgid "" "table of contents." msgstr "" -#: gnu/packages/tex.scm:4546 +#: gnu/packages/tex.scm:4783 msgid "" "The package provides additional features for the LaTeX\n" "@code{description} environment, including adjustable left margin. The package\n" @@ -17679,7 +17864,7 @@ msgid "" "@code{enumerate} lists, and numbered lists remain in sequence)." msgstr "" -#: gnu/packages/tex.scm:4566 +#: gnu/packages/tex.scm:4803 msgid "" "This package provides macros to read and compare the modification dates\n" "of files. The files may be @code{.tex} files, images or other files (as long\n" @@ -17691,14 +17876,14 @@ msgid "" "but non-expandable ones." msgstr "" -#: gnu/packages/tex.scm:4589 +#: gnu/packages/tex.scm:4826 msgid "" "The @code{hanging} package facilitates the typesetting of hanging\n" "paragraphs. The package also enables typesetting with hanging punctuation,\n" "by making punctuation characters active." msgstr "" -#: gnu/packages/tex.scm:4612 +#: gnu/packages/tex.scm:4849 msgid "" "This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX support for\n" "the Fira Sans family of fonts designed by Erik Spiekermann and Ralph du\n" @@ -17706,7 +17891,7 @@ msgid "" "corresponding italics: light, regular, medium, bold, ..." msgstr "" -#: gnu/packages/tex.scm:4635 +#: gnu/packages/tex.scm:4872 msgid "" "This package uses the (La)TeX extension @code{-shell-escape} to\n" "establish whether the document is being processed on a Windows or on a\n" @@ -17717,7 +17902,7 @@ msgid "" "classes of systems." msgstr "" -#: gnu/packages/tex.scm:4660 +#: gnu/packages/tex.scm:4897 msgid "" "This bundle provides a package that implements both author-year and\n" "numbered references, as well as much detailed of support for other\n" @@ -17727,20 +17912,20 @@ msgid "" "designed from the start to be compatible with @code{natbib}." msgstr "" -#: gnu/packages/tex.scm:4679 +#: gnu/packages/tex.scm:4916 msgid "" "This package provides a friendly interface for defining the meaning of\n" "Unicode characters. The document should be processed by (pdf)LaTeX with the\n" "Unicode option of @code{inputenc} or @code{inputenx}, or by XeLaTeX/LuaLaTeX." msgstr "" -#: gnu/packages/tex.scm:4699 +#: gnu/packages/tex.scm:4936 msgid "" "This package makes a number of utility functions from pdfTeX\n" "available for luaTeX by reimplementing them using Lua." msgstr "" -#: gnu/packages/tex.scm:4719 +#: gnu/packages/tex.scm:4956 msgid "" "This package allows LaTeX constructions (equations, picture\n" "environments, etc.) to be precisely superimposed over Encapsulated PostScript\n" @@ -17751,7 +17936,7 @@ msgid "" "rotated." msgstr "" -#: gnu/packages/tex.scm:4751 +#: gnu/packages/tex.scm:4988 msgid "" "This is a package for processing PostScript graphics with @code{psfrag}\n" "labels within pdfLaTeX documents. Every graphic is compiled individually,\n" @@ -17759,7 +17944,7 @@ msgid "" "re-processing." msgstr "" -#: gnu/packages/tex.scm:4771 +#: gnu/packages/tex.scm:5008 msgid "" "This package provides the @code{\\setcounterref} and\n" "@code{\\addtocounterref} commands which use the section (or other) number\n" @@ -17768,7 +17953,7 @@ msgid "" "corresponding thing with the page reference of the label." msgstr "" -#: gnu/packages/tex.scm:4791 +#: gnu/packages/tex.scm:5028 msgid "" "This package provides a class that produces overhead\n" "slides (transparencies), with many facilities. Seminar is not nowadays\n" @@ -17777,14 +17962,14 @@ msgid "" "21st-century presentation styles." msgstr "" -#: gnu/packages/tex.scm:4812 +#: gnu/packages/tex.scm:5049 msgid "" "The package provides a versatile way to stack objects vertically in a\n" "variety of customizable ways. A number of useful macros are provided, all\n" "of which make use of the @code{stackengine} core." msgstr "" -#: gnu/packages/tex.scm:4828 +#: gnu/packages/tex.scm:5065 msgid "" "This package provides control over the typography of the\n" "@dfn{Table of Contents}, @dfn{List of Figures} and @dfn{List of Tables},\n" @@ -17792,7 +17977,7 @@ msgid "" "be changed." msgstr "" -#: gnu/packages/tex.scm:4862 +#: gnu/packages/tex.scm:5099 msgid "" "This very short package allows you to expandably remove spaces around a\n" "token list (commands are provided to remove spaces before, spaces after, or\n" @@ -17800,13 +17985,26 @@ msgid "" "space-stripped macros." msgstr "" -#: gnu/packages/tex.scm:4897 +#: gnu/packages/tex.scm:5115 +msgid "This package provides a math interface to the Rsfs fonts." +msgstr "" + +#: gnu/packages/tex.scm:5152 msgid "" "This package defines a command @code{\\captionof} for putting a caption\n" "to something that's not a float." msgstr "" -#: gnu/packages/tex.scm:4913 +#: gnu/packages/tex.scm:5170 +msgid "" +"Many of David Carlisle's more substantial packages stand on their own,\n" +"or as part of the LaTeX latex-tools set; this set contains: making dotless\n" +"@emph{j} characters for fonts that don't have them; a method for combining the\n" +"capabilities of longtable and tabularx; an environment for including plain TeX\n" +"in LaTeX documents; a jiffy to create slashed characters for physicists." +msgstr "" + +#: gnu/packages/tex.scm:5189 msgid "" "You can hyperlink DOI numbers to doi.org. However, some publishers have\n" "elected to use nasty characters in their DOI numbering scheme (@code{<},\n" @@ -17816,7 +18014,7 @@ msgid "" "hyperlink to the target of the DOI." msgstr "" -#: gnu/packages/tex.scm:4936 +#: gnu/packages/tex.scm:5212 msgid "" "This package is a toolbox of programming facilities geared primarily\n" "towards LaTeX class and package authors. It provides LaTeX frontends to some\n" @@ -17827,7 +18025,7 @@ msgid "" "of the LaTeX kernel." msgstr "" -#: gnu/packages/tex.scm:4976 +#: gnu/packages/tex.scm:5252 msgid "" "This package provides seven predefined chapter heading styles. Each\n" "style can be modified using a set of simple commands. Optionally one can\n" @@ -17835,7 +18033,7 @@ msgid "" "headings." msgstr "" -#: gnu/packages/tex.scm:5011 +#: gnu/packages/tex.scm:5287 msgid "" "The package creates three environments: @code{framed}, which puts an\n" "ordinary frame box around the region, @code{shaded}, which shades the region,\n" @@ -17846,7 +18044,7 @@ msgid "" "@code{\\MakeFramed} to make your own framed-style environments." msgstr "" -#: gnu/packages/tex.scm:5045 +#: gnu/packages/tex.scm:5321 msgid "" "This package is designed for formatting formless letters in German; it\n" "can also be used for English (by those who can read the documentation). There\n" @@ -17854,13 +18052,13 @@ msgid "" "\"old\" and a \"new\" version of g-brief." msgstr "" -#: gnu/packages/tex.scm:5067 +#: gnu/packages/tex.scm:5343 msgid "" "The package deals with connections in two-dimensional style, optionally\n" "in colour." msgstr "" -#: gnu/packages/tex.scm:5087 +#: gnu/packages/tex.scm:5363 msgid "" "The package allows citations in the German style, which is considered by\n" "many to be particularly reader-friendly. The citation provides a small amount\n" @@ -17870,7 +18068,7 @@ msgid "" "BibLaTeX, and is considered experimental." msgstr "" -#: gnu/packages/tex.scm:5113 +#: gnu/packages/tex.scm:5389 msgid "" "This package provides an easy and flexible user interface to customize\n" "page layout, implementing auto-centering and auto-balancing mechanisms so that\n" @@ -17881,7 +18079,7 @@ msgid "" "ability to communicate the paper size it's set up to the output." msgstr "" -#: gnu/packages/tex.scm:5138 +#: gnu/packages/tex.scm:5414 msgid "" "This collection of tools includes: @code{atsupport} for short commands\n" "starting with @code{@@}, macros to sanitize the OT1 encoding of the\n" @@ -17891,13 +18089,13 @@ msgid "" "array environments; verbatim handling; and syntax diagrams." msgstr "" -#: gnu/packages/tex.scm:5162 +#: gnu/packages/tex.scm:5438 msgid "" "This package provides a complete Babel replacement for users of LuaLaTeX\n" "and XeLaTeX; it relies on the @code{fontspec} package, version 2.0 at least." msgstr "" -#: gnu/packages/tex.scm:5182 +#: gnu/packages/tex.scm:5458 msgid "" "This package was a predecessor of @code{longtable}; the newer\n" "package (designed on quite different principles) is easier to use and more\n" @@ -17905,7 +18103,7 @@ msgid "" "situations where longtable has problems." msgstr "" -#: gnu/packages/tex.scm:5217 +#: gnu/packages/tex.scm:5493 msgid "" "Texinfo is the preferred format for documentation in the GNU project;\n" "the format may be used to produce online or printed output from a single\n" @@ -17914,7 +18112,23 @@ msgid "" "hypertext linkages in some cases)." msgstr "" -#: gnu/packages/tex.scm:5240 +#: gnu/packages/tex.scm:5513 +msgid "" +"The textcase package offers commands @code{\\MakeTextUppercase} and\n" +"@code{\\MakeTextLowercase} are similar to the standard @code{\\MakeUppercase}\n" +"and @code{\\MakeLowercase}, but they do not change the case of any sections of\n" +"mathematics, or the arguments of @code{\\cite}, @code{\\label} and\n" +"@code{\\ref} commands within the argument. A further command\n" +"@code{\\NoCaseChange} does nothing but suppress case change within its\n" +"argument, so to force uppercase of a section including an environment, one\n" +"might say:\n" +"\n" +"@example\n" +"\\MakeTextUppercase{...\\NoCaseChange{\\begin{foo}} ...\\NoCaseChange{\\end{foo}}...}\n" +"@end example\n" +msgstr "" + +#: gnu/packages/tex.scm:5543 msgid "" "Typewriter-style fonts are best for program listings, but Computer\n" "Modern Typewriter prints @code{`} and @code{'} as bent opening and closing\n" @@ -17928,14 +18142,14 @@ msgid "" "does not affect @code{\\tt}, @code{\\texttt}, etc." msgstr "" -#: gnu/packages/tex.scm:5281 +#: gnu/packages/tex.scm:5584 msgid "" "This is a simple package to set up document margins. This package is\n" "considered obsolete; alternatives are the @code{typearea} package from the\n" "@code{koma-script} bundle, or the @code{geometry} package." msgstr "" -#: gnu/packages/tex.scm:5302 +#: gnu/packages/tex.scm:5605 msgid "" "The appendix package provides various ways of formatting the titles of\n" "appendices. Also (sub)appendices environments are provided that can be used,\n" @@ -17944,14 +18158,14 @@ msgid "" "command." msgstr "" -#: gnu/packages/tex.scm:5321 +#: gnu/packages/tex.scm:5624 msgid "" "This package implements a new bookmark (outline) organization for the\n" "@code{hyperref} package. Bookmark properties such as style and color. Other\n" "action types are available (URI, GoToR, Named)." msgstr "" -#: gnu/packages/tex.scm:5342 +#: gnu/packages/tex.scm:5645 msgid "" "Identify areas of text to be marked with changebars with the\n" "@code{\\cbstart} and @code{\\cbend} commands; the bars may be coloured. The\n" @@ -17960,19 +18174,19 @@ msgid "" "drivers, and VTeX and pdfTeX." msgstr "" -#: gnu/packages/tex.scm:5379 +#: gnu/packages/tex.scm:5682 msgid "" "This package embeds CMap tables into PDF files to make search and\n" "copy-and-paste functions work properly." msgstr "" -#: gnu/packages/tex.scm:5399 +#: gnu/packages/tex.scm:5702 msgid "" "This package allows rows, columns, and even individual cells in LaTeX\n" "tables to be coloured." msgstr "" -#: gnu/packages/tex.scm:5432 +#: gnu/packages/tex.scm:5735 msgid "" "This package provides variants of @code{\\fbox}: @code{\\shadowbox},\n" "@code{\\doublebox}, @code{\\ovalbox}, @code{\\Ovalbox}, with helpful tools for\n" @@ -17980,14 +18194,14 @@ msgid "" "floats, center, flushleft, and flushright, lists, and pages." msgstr "" -#: gnu/packages/tex.scm:5467 +#: gnu/packages/tex.scm:5770 msgid "" "The package provides extensive facilities, both for constructing headers\n" "and footers, and for controlling their use (for example, at times when LaTeX\n" "would automatically change the heading style in use)." msgstr "" -#: gnu/packages/tex.scm:5488 +#: gnu/packages/tex.scm:5791 msgid "" "This package improves the interface for defining floating objects such\n" "as figures and tables. It introduces the boxed float, the ruled float and the\n" @@ -17997,7 +18211,7 @@ msgid "" "with @code{\\floatplacement{figure}{H}}." msgstr "" -#: gnu/packages/tex.scm:5512 +#: gnu/packages/tex.scm:5815 msgid "" "This is a collection of ways to change the typesetting of footnotes.\n" "The package provides means of changing the layout of the footnotes themselves,\n" @@ -18007,7 +18221,7 @@ msgid "" "footnotes with symbols rather than numbers." msgstr "" -#: gnu/packages/tex.scm:5532 +#: gnu/packages/tex.scm:5835 msgid "" "TeX’s @code{\\let} assignment does not work for LaTeX macros with\n" "optional arguments, or for macros that are defined as robust macros by\n" @@ -18015,7 +18229,7 @@ msgid "" "that also takes care of the involved internal macros." msgstr "" -#: gnu/packages/tex.scm:5556 +#: gnu/packages/tex.scm:5859 msgid "" "The package enables the user to typeset programs (programming code)\n" "within LaTeX; the source code is read directly by TeX---no front-end processor\n" @@ -18023,7 +18237,7 @@ msgid "" "styles. Support for @code{hyperref} is provided." msgstr "" -#: gnu/packages/tex.scm:5591 +#: gnu/packages/tex.scm:5894 msgid "" "This package provides miscellaneous macros by Joerg Knappen, including:\n" "represent counters in greek; Maxwell's non-commutative division;\n" @@ -18035,13 +18249,13 @@ msgid "" "in SGML; use maths minus in text as appropriate; simple Young tableaux." msgstr "" -#: gnu/packages/tex.scm:5615 +#: gnu/packages/tex.scm:5918 msgid "" "This package provides facilities for using key-value format in\n" "package options." msgstr "" -#: gnu/packages/tex.scm:5684 +#: gnu/packages/tex.scm:5987 msgid "" "The EC fonts are European Computer Modern Fonts, supporting the complete\n" "LaTeX T1 encoding defined at the 1990 TUG conference hold at Cork/Ireland.\n" @@ -18058,7 +18272,7 @@ msgid "" "differs from the EC in a number of particulars." msgstr "" -#: gnu/packages/tex.scm:5717 +#: gnu/packages/tex.scm:6020 msgid "" "This package provides a set of virtual fonts which emulates T1 coded\n" "fonts using the standard CM fonts. The package name, AE fonts, supposedly\n" @@ -18068,7 +18282,7 @@ msgid "" "via the CM-super, Latin Modern and (in a restricted way) CM-LGC font sets." msgstr "" -#: gnu/packages/tex.scm:5742 +#: gnu/packages/tex.scm:6045 msgid "" "Inconsolata is a monospaced font designed by Raph Levien. This package\n" "contains the font (in both Adobe Type 1 and OpenType formats) in regular and\n" @@ -18077,25 +18291,25 @@ msgid "" "TeX, and LaTeX font definition and other relevant files." msgstr "" -#: gnu/packages/tex.scm:5771 +#: gnu/packages/tex.scm:6074 msgid "" "This package provides a drop-in replacements for the Times font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5799 +#: gnu/packages/tex.scm:6102 msgid "" "This package provides a drop-in replacements for the Palatino font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5824 +#: gnu/packages/tex.scm:6127 msgid "" "This package provides a drop-in replacements for the Zapfding font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5896 +#: gnu/packages/tex.scm:6199 msgid "" "The fonts provide uppercase formal script letters for use as symbols in\n" "scientific and mathematical typesetting (in contrast to the informal script\n" @@ -18105,14 +18319,14 @@ msgid "" "one of the packages @code{calrsfs} and @code{mathrsfs}." msgstr "" -#: gnu/packages/tex.scm:5920 +#: gnu/packages/tex.scm:6223 msgid "" "The package adds one or more user commands to LaTeX's @code{shipout}\n" "routine, which may be used to place the output at fixed positions. The\n" "@code{grid} option may be used to find the correct places." msgstr "" -#: gnu/packages/tex.scm:5954 +#: gnu/packages/tex.scm:6257 msgid "" "Extensions to @code{epic} and the LaTeX picture drawing environment,\n" "include the drawing of lines at any slope, the drawing of circles in any\n" @@ -18122,7 +18336,7 @@ msgid "" "@code{\\special} commands." msgstr "" -#: gnu/packages/tex.scm:5991 +#: gnu/packages/tex.scm:6276 msgid "" "This package is intended to ease customizing the three basic list\n" "environments: @code{enumerate}, @code{itemize} and @code{description}. It\n" @@ -18131,14 +18345,14 @@ msgid "" "@code{\\begin{itemize}[itemsep=1ex,leftmargin=1cm]}." msgstr "" -#: gnu/packages/tex.scm:6014 +#: gnu/packages/tex.scm:6301 msgid "" "The package provides tools for creating tabular cells spanning multiple\n" "rows. It has a lot of flexibility, including an option for specifying an\n" "entry at the \"natural\" width of its text." msgstr "" -#: gnu/packages/tex.scm:6048 +#: gnu/packages/tex.scm:6335 msgid "" "The @code{overpic} environment is a cross between the LaTeX\n" "@code{picture} environment and the @code{\\includegraphics} command of\n" @@ -18147,14 +18361,14 @@ msgid "" "positions; a grid for orientation is available." msgstr "" -#: gnu/packages/tex.scm:6084 +#: gnu/packages/tex.scm:6371 msgid "" "Simply changing @code{\\parskip} and @code{\\parindent} leaves a layout\n" "that is untidy; this package (though it is no substitute for a properly\n" "designed class) helps alleviate this untidiness." msgstr "" -#: gnu/packages/tex.scm:6105 +#: gnu/packages/tex.scm:6392 msgid "" "This package simplifies the inclusion of external multi-page PDF\n" "documents in LaTeX documents. Pages may be freely selected and it is possible\n" @@ -18164,7 +18378,7 @@ msgid "" "use this package to insert PostScript files, in addition to PDF files." msgstr "" -#: gnu/packages/tex.scm:6146 +#: gnu/packages/tex.scm:6433 msgid "" "The fonts were originally distributed as Metafont sources only, but\n" "Adobe Type 1 versions are also now available. Macro support is provided for\n" @@ -18173,7 +18387,7 @@ msgid "" "the whole font." msgstr "" -#: gnu/packages/tex.scm:6171 +#: gnu/packages/tex.scm:6458 msgid "" "This (deprecated) package provides support for the manipulation and\n" "reference of small or \"sub\" figures and tables within a single figure or\n" @@ -18186,7 +18400,7 @@ msgid "" "the more recent @code{subcaption} package more satisfactory." msgstr "" -#: gnu/packages/tex.scm:6198 +#: gnu/packages/tex.scm:6485 msgid "" "The package defines a @code{tabular*}-like environment, @code{tabulary},\n" "taking a \"total width\" argument as well as the column specifications. The\n" @@ -18197,7 +18411,7 @@ msgid "" "according to the natural width of the widest cell in the column." msgstr "" -#: gnu/packages/tex.scm:6236 +#: gnu/packages/tex.scm:6523 msgid "" "This package facilitates tables with titles (captions) and notes. The\n" "title and notes are given a width equal to the body of the table (a\n" @@ -18206,7 +18420,7 @@ msgid "" "environment." msgstr "" -#: gnu/packages/tex.scm:6263 +#: gnu/packages/tex.scm:6550 msgid "" "Txfonts supplies virtual text roman fonts using Adobe Times (or URW\n" "NimbusRomNo9L) with some modified and additional text symbols in the OT1, T1,\n" @@ -18222,7 +18436,7 @@ msgid "" "TeX metrics (VF and TFM files) and macros for use with LaTeX." msgstr "" -#: gnu/packages/tex.scm:6312 +#: gnu/packages/tex.scm:6599 msgid "" "Iwona is a two-element sans-serif typeface. It was created\n" "as an alternative version of the Kurier typeface, which was designed in 1975\n" @@ -18233,7 +18447,7 @@ msgid "" "of ink traps which typify the Kurier font." msgstr "" -#: gnu/packages/tex.scm:6335 +#: gnu/packages/tex.scm:6622 msgid "" "This package contains a collection of macros by Jörg Knappen:\n" "@table @code\n" @@ -18269,7 +18483,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/tex.scm:6442 +#: gnu/packages/tex.scm:6729 msgid "" "JadeTeX is a companion package to the OpenJade DSSSL\n" "processor. OpenJade applies a DSSSL stylesheet to an SGML or XML document.\n" @@ -18280,7 +18494,7 @@ msgid "" "command)." msgstr "" -#: gnu/packages/tex.scm:6472 +#: gnu/packages/tex.scm:6759 msgid "" "The package provides the Libertine and Biolinum fonts in both Type 1 and\n" "OTF styles, together with support macros for their use. Monospaced and\n" @@ -18290,7 +18504,7 @@ msgid "" "@code{libertine-legacy} packages." msgstr "" -#: gnu/packages/tex.scm:6504 +#: gnu/packages/tex.scm:6791 msgid "" "The package contains LaTeX support for the DejaVu fonts, which are\n" "derived from the Vera fonts but contain more characters and styles. The fonts\n" @@ -18299,7 +18513,7 @@ msgid "" "LGR. The package doesn't (currently) support mathematics." msgstr "" -#: gnu/packages/tex.scm:6540 +#: gnu/packages/tex.scm:6827 msgid "" "This package provides an interface to sectioning commands for selection\n" "from various title styles, e.g. for marginal titles and to change the font of\n" @@ -18308,7 +18522,7 @@ msgid "" "floats in a page. You may assign headers/footers to individual floats, too." msgstr "" -#: gnu/packages/tex.scm:6563 +#: gnu/packages/tex.scm:6850 msgid "" "LaTeX, by default, restricts the sizes at which you can use its default\n" "computer modern fonts, to a fixed set of discrete sizes (effectively, a set\n" @@ -18323,7 +18537,7 @@ msgid "" "@code{ec} fonts." msgstr "" -#: gnu/packages/tex.scm:6617 +#: gnu/packages/tex.scm:6904 msgid "" "The LH fonts address the problem of the wide variety of alphabets that\n" "are written with Cyrillic-style characters. The fonts are the original basis\n" @@ -18336,7 +18550,7 @@ msgid "" "OT2 encoded fonts, CM bright shaped fonts and Concrete shaped fonts." msgstr "" -#: gnu/packages/tex.scm:6647 +#: gnu/packages/tex.scm:6934 msgid "" "The Martin Vogel’s Symbols fonts (marvosym) contains the\n" "Euro currency symbol as defined by the European commission, along with symbols\n" @@ -18346,34 +18560,41 @@ msgid "" "the derived Type 1 font, together with support files for TeX (LaTeX)." msgstr "" -#: gnu/packages/tex.scm:6685 +#: gnu/packages/tex.scm:6972 msgid "" "MetaPost uses a language based on that of Metafont to produce precise\n" "technical illustrations. Its output is scalable PostScript or SVG, rather\n" "than the bitmaps Metafont creates." msgstr "" -#: gnu/packages/tex.scm:6706 +#: gnu/packages/tex.scm:6993 msgid "" "This package provides a class for typesetting publications of the\n" "Association for Computing Machinery (ACM)." msgstr "" -#: gnu/packages/tex.scm:6739 +#: gnu/packages/tex.scm:7026 msgid "" "The @code{varwidth} environment is superficially similar to\n" "@code{minipage}, but the specified width is just a maximum value — the box may\n" "get a narrower “natural” width." msgstr "" -#: gnu/packages/tex.scm:6757 +#: gnu/packages/tex.scm:7041 +msgid "" +"The varwidth environment is superficially similar to minipage, but the\n" +"specified width is just a maximum value --- the box may get a narrower natural\n" +"width." +msgstr "" + +#: gnu/packages/tex.scm:7059 msgid "" "This package provides the @code{wasy} (Waldi symbol) fonts,\n" "in the Metafont and Adobe Type 1 formats. Support under LaTeX is provided by\n" "the @code{wasysym} package." msgstr "" -#: gnu/packages/tex.scm:6778 +#: gnu/packages/tex.scm:7080 msgid "" "The @code{wasy} (Waldi Symbol) font by Roland Waldi provides many glyphs like\n" "male and female symbols and astronomical symbols, as well as the complete\n" @@ -18381,14 +18602,14 @@ msgid "" "implements an easy to use interface for these symbols." msgstr "" -#: gnu/packages/tex.scm:6815 +#: gnu/packages/tex.scm:7117 msgid "" "This package allows figures or tables to have text wrapped around them.\n" "It does not work in combination with list environments, but can be used in a\n" "@code{parbox} or @code{minipage}, and in two-column format." msgstr "" -#: gnu/packages/tex.scm:6849 +#: gnu/packages/tex.scm:7151 msgid "" "The bundle provides the @code{ucs} package, and @code{utf8x.def},\n" "together with a large number of support files. The @code{utf8x.def}\n" @@ -18401,7 +18622,7 @@ msgid "" "package of that name now exists." msgstr "" -#: gnu/packages/tex.scm:6883 +#: gnu/packages/tex.scm:7185 msgid "" "The main purpose of the preview package is the extraction of selected\n" "elements from a LaTeX source, like formulas or graphics, into separate\n" @@ -18412,7 +18633,7 @@ msgid "" "files." msgstr "" -#: gnu/packages/tex.scm:6908 +#: gnu/packages/tex.scm:7210 msgid "" "This package ensures that all acronyms used in the text are spelled out\n" "in full at least once. It also provides an environment to build a list of\n" @@ -18421,13 +18642,13 @@ msgid "" "e-TeX." msgstr "" -#: gnu/packages/tex.scm:6945 +#: gnu/packages/tex.scm:7247 msgid "" "This package provides an extension of TeX which can be configured to\n" "directly generate PDF documents instead of DVI." msgstr "" -#: gnu/packages/tex.scm:7025 +#: gnu/packages/tex.scm:7327 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18437,7 +18658,7 @@ msgid "" "This package contains the complete tree of texmf-dist data." msgstr "" -#: gnu/packages/tex.scm:7088 +#: gnu/packages/tex.scm:7390 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18447,7 +18668,7 @@ msgid "" "This package contains the complete TeX Live distribution." msgstr "" -#: gnu/packages/tex.scm:7130 +#: gnu/packages/tex.scm:7432 msgid "" "@code{Text::BibTeX} is a Perl library for reading, parsing,\n" "and processing BibTeX files. @code{Text::BibTeX} gives you access to the data\n" @@ -18456,13 +18677,13 @@ msgid "" "values (strings, macros, or numbers) pasted together." msgstr "" -#: gnu/packages/tex.scm:7216 +#: gnu/packages/tex.scm:7518 msgid "" "Biber is a BibTeX replacement for users of biblatex. Among\n" "other things it comes with full Unicode support." msgstr "" -#: gnu/packages/tex.scm:7250 +#: gnu/packages/tex.scm:7552 msgid "" "Rubber is a program whose purpose is to handle all tasks related to the\n" "compilation of LaTeX documents. This includes compiling the document itself,\n" @@ -18472,20 +18693,20 @@ msgid "" "PDF documents." msgstr "" -#: gnu/packages/tex.scm:7289 +#: gnu/packages/tex.scm:7591 msgid "" "Texmaker is a program that integrates many tools needed to\n" "develop documents with LaTeX, in a single application." msgstr "" -#: gnu/packages/tex.scm:7330 +#: gnu/packages/tex.scm:7632 msgid "" "@i{TeX for the Impatient} is a ~350 page book on TeX,\n" "plain TeX, and Eplain, originally written by Paul Abrahams, Kathryn Hargreaves,\n" "and Karl Berry." msgstr "" -#: gnu/packages/tex.scm:7394 +#: gnu/packages/tex.scm:7696 msgid "" "LyX is a document preparation system. It excels at letting\n" "you create complex technical and scientific articles with mathematics,\n" @@ -18494,7 +18715,7 @@ msgid "" "required: automatic sectioning and pagination, spell checking and so forth." msgstr "" -#: gnu/packages/tex.scm:7430 +#: gnu/packages/tex.scm:7732 msgid "" "The package provides an interface to embed interactive Flash (SWF) and 3D\n" "objects (Adobe U3D & PRC), as well as video and sound files or streams in the\n" @@ -18507,7 +18728,7 @@ msgid "" "specification. It replaces the now obsolete @code{movie15} package." msgstr "" -#: gnu/packages/tex.scm:7470 +#: gnu/packages/tex.scm:7772 msgid "" "This package provides OCG (Optional Content Groups) support within a PDF\n" "document.\n" @@ -18525,7 +18746,7 @@ msgid "" "It also ensures compatibility with the @code{media9} and @code{animate} packages." msgstr "" -#: gnu/packages/tex.scm:7504 +#: gnu/packages/tex.scm:7806 msgid "" "A bundle of LATEX packages by Martin Schröder; the collection comprises:\n" "\n" @@ -18539,7 +18760,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/tex.scm:7532 +#: gnu/packages/tex.scm:7852 msgid "" "The package numprint prints numbers with a separator every three\n" "digits and converts numbers given as 12345.6e789 to 12\\,345,6\\cdot\n" @@ -18560,14 +18781,14 @@ msgid "" "and after the formatted number." msgstr "" -#: gnu/packages/tex.scm:7571 +#: gnu/packages/tex.scm:7893 msgid "" "Provides commands to disable pagebreaking within a given vertical\n" "space. If there is not enough space between the command and the bottom of the\n" "page, a new page will be started." msgstr "" -#: gnu/packages/tex.scm:7597 +#: gnu/packages/tex.scm:7919 msgid "" "The package provides commands to change the page layout in the middle of\n" "a document, and to robustly check for typesetting on odd or even pages.\n" @@ -18575,7 +18796,7 @@ msgid "" "of code from the @code{memoir} class, whose user interface it shares." msgstr "" -#: gnu/packages/tex.scm:7633 +#: gnu/packages/tex.scm:7955 msgid "" "The package is used to change the format of @code{\\today}’s date,\n" "including the weekday, e.g., \"Saturday, 26 June 2008\", the 'UK format', which\n" @@ -18583,7 +18804,7 @@ msgid "" "@code{\\maketitle} of the article class, \"June 26, 2008\", the 'US format'." msgstr "" -#: gnu/packages/tex.scm:7669 +#: gnu/packages/tex.scm:7971 msgid "" "The package provides an @code{\\ul} (underline) command which will break\n" "over line ends; this technique may be used to replace @code{\\em} (both in that\n" @@ -18592,7 +18813,7 @@ msgid "" "striking out (line through words) and crossing out (/// over words)." msgstr "" -#: gnu/packages/tex.scm:7725 +#: gnu/packages/tex.scm:8029 msgid "" "PGF is a macro package for creating graphics. It is platform- and\n" "format-independent and works together with the most important TeX backend\n" @@ -18604,7 +18825,7 @@ msgid "" "produce either PostScript or PDF output." msgstr "" -#: gnu/packages/tex.scm:7771 +#: gnu/packages/tex.scm:8075 msgid "" "The KOMA-Script bundle provides replacements for the article, report, and\n" "book classes with emphasis on typography and versatility. There is also a\n" @@ -18629,7 +18850,7 @@ msgid "" "typearea (which are the main parts of the bundle)." msgstr "" -#: gnu/packages/tex.scm:7806 +#: gnu/packages/tex.scm:8110 msgid "" "This package is a modern reimplementation of package @code{everyshi},\n" "providing various commands to be executed before a @code{\\shipout} command.\n" @@ -18637,20 +18858,20 @@ msgid "" "be used either with LaTeX or with plain TeX." msgstr "" -#: gnu/packages/tex.scm:7826 +#: gnu/packages/tex.scm:8130 msgid "" "This package provides expandable arithmetic operations with big\n" "integers that can exceed TeX's number limits." msgstr "" -#: gnu/packages/tex.scm:7845 +#: gnu/packages/tex.scm:8149 msgid "" "This package defines and implements the data type bit set, a vector\n" "of bits. The size of the vector may grow dynamically. Individual bits\n" "can be manipulated." msgstr "" -#: gnu/packages/tex.scm:7864 +#: gnu/packages/tex.scm:8168 msgid "" "New primitive commands are introduced in e-TeX; sometimes the names\n" "collide with existing macros. This package solves the name clashes by\n" @@ -18658,14 +18879,14 @@ msgid "" "@code{\\unexpanded} is provided as @code{\\etex@@unexpanded}." msgstr "" -#: gnu/packages/tex.scm:7882 +#: gnu/packages/tex.scm:8186 msgid "" "This package provides commands for cleaning up the title string\n" "(such as removing @code{\\label} commands) for packages that typeset such\n" "strings." msgstr "" -#: gnu/packages/tex.scm:7898 +#: gnu/packages/tex.scm:8202 msgid "" "This package provides a complete set of macros for information,\n" "warning and error messages. Under LaTeX, the commands are wrappers for\n" @@ -18673,19 +18894,19 @@ msgid "" "complete implementations." msgstr "" -#: gnu/packages/tex.scm:7915 +#: gnu/packages/tex.scm:8219 msgid "" "This package provides expandable arithmetic operations with integers,\n" "using the e-TeX extension @code{\\numexpr} if it is available." msgstr "" -#: gnu/packages/tex.scm:7930 +#: gnu/packages/tex.scm:8234 msgid "" "This package provides the @code{\\kv@@define@@key} (analogous to\n" "keyval’s @code{\\define@@key}, to define keys for use by @code{kvsetkeys}." msgstr "" -#: gnu/packages/tex.scm:7945 +#: gnu/packages/tex.scm:8249 msgid "" "This package provides @code{\\kvsetkeys}, a variant of @code{\\setkeys}\n" "from the @code{keyval} package. Users can specify a handler that deals with\n" @@ -18693,35 +18914,35 @@ msgid "" "level of curly braces are removed from the values." msgstr "" -#: gnu/packages/tex.scm:7980 +#: gnu/packages/tex.scm:8284 msgid "" "This package allows one to capture all the items of a list, for which\n" "the parsing character has been selected by the user, and to access any of\n" "these items with a simple syntax." msgstr "" -#: gnu/packages/tex.scm:7996 +#: gnu/packages/tex.scm:8300 msgid "" "This package exports some utility macros from the LaTeX kernel into\n" "a separate namespace and also makes them available for other formats such\n" "as plain TeX." msgstr "" -#: gnu/packages/tex.scm:8012 +#: gnu/packages/tex.scm:8316 msgid "" "This package implements pdfTeX's escape features (@code{\\pdfescapehex},\n" "@code{\\pdfunescapehex}, @code{\\pdfescapename}, @code{\\pdfescapestring})\n" "using TeX or e-TeX." msgstr "" -#: gnu/packages/tex.scm:8031 +#: gnu/packages/tex.scm:8335 msgid "" "This package provides a kind of counter that provides unique number\n" "values. Several counters can be created with different names. The numeric\n" "values are not limited." msgstr "" -#: gnu/packages/tex.scm:8067 +#: gnu/packages/tex.scm:8371 msgid "" "This package allows the user to input formatted data into elements of a\n" "2-D or 3-D array and to recall that data at will by individual cell number.\n" @@ -18729,7 +18950,7 @@ msgid "" "formatted text." msgstr "" -#: gnu/packages/tex.scm:8104 +#: gnu/packages/tex.scm:8408 msgid "" "The package provides a @code{verbbox} environment to place its contents\n" "into a globally available box, or into a box specified by the user. The\n" @@ -18739,7 +18960,7 @@ msgid "" "@code{trivlist}) may not appear." msgstr "" -#: gnu/packages/tex.scm:8141 +#: gnu/packages/tex.scm:8445 msgid "" "Examplep provides sophisticated features for typesetting verbatim source\n" "code listings, including the display of the source code and its compiled LaTeX\n" @@ -18752,7 +18973,7 @@ msgid "" "titles." msgstr "" -#: gnu/packages/tex.scm:8178 +#: gnu/packages/tex.scm:8482 msgid "" "This is a package for typesetting a variety of graphs and\n" "diagrams with TeX. Xy-pic works with most formats (including LaTeX,\n" @@ -18760,7 +18981,7 @@ msgid "" "@code{diag} package, which was previously distributed stand-alone." msgstr "" -#: gnu/packages/tex.scm:8218 +#: gnu/packages/tex.scm:8522 msgid "" "BibTeX allows the user to store his citation data in generic form, while\n" "printing citations in a document in the form specified by a BibTeX style, to\n" @@ -18768,7 +18989,7 @@ msgid "" "package, such as @command{natbib} as well)." msgstr "" -#: gnu/packages/tex.scm:8241 +#: gnu/packages/tex.scm:8545 msgid "" "This package provides a copy of the Charter Type-1 fonts\n" "which Bitstream contributed to the X consortium, renamed for use with TeX.\n" @@ -18776,14 +18997,14 @@ msgid "" "@command{psnfss}." msgstr "" -#: gnu/packages/tex.scm:8337 +#: gnu/packages/tex.scm:8641 msgid "" "ConTeXt is a full featured, parameter driven macro package,\n" "which fully supports advanced interactive documents. See the ConTeXt garden\n" "for a wealth of support information." msgstr "" -#: gnu/packages/tex.scm:8362 +#: gnu/packages/tex.scm:8666 msgid "" "The beamer LaTeX class can be used for producing slides.\n" "The class works in both PostScript and direct PDF output modes, using the\n" @@ -18796,7 +19017,7 @@ msgid "" "effects, varying slide transitions and animations." msgstr "" -#: gnu/packages/tex.scm:8394 +#: gnu/packages/tex.scm:8698 msgid "" "The XMP (eXtensible Metadata platform) is a framework to add metadata to\n" "digital material to enhance the workflow in publication. The essence is that\n" @@ -18804,13 +19025,13 @@ msgid "" "the file to which it applies." msgstr "" -#: gnu/packages/tex.scm:8433 +#: gnu/packages/tex.scm:8737 msgid "" "This package helps LaTeX users to create PDF/X, PDF/A and other\n" "standards-compliant PDF documents with pdfTeX, LuaTeX and XeTeX." msgstr "" -#: gnu/packages/tex.scm:8468 +#: gnu/packages/tex.scm:8772 msgid "" "The package provides macros and environments to document\n" "LaTeX packages and classes. It is an (as yet unfinished) alternative to the\n" @@ -18821,7 +19042,7 @@ msgid "" "change." msgstr "" -#: gnu/packages/tex.scm:8496 +#: gnu/packages/tex.scm:8800 msgid "" "PSTricks offers an extensive collection of macros for\n" "generating PostScript that is usable with most TeX macro formats, including\n" @@ -18832,14 +19053,14 @@ msgid "" "or shading the cells of tables." msgstr "" -#: gnu/packages/tex.scm:8521 +#: gnu/packages/tex.scm:8825 msgid "" "Pst-text is a PSTricks based package for plotting text along\n" "a different path and manipulating characters. It includes the functionality\n" "of the old package @code{pst-char}." msgstr "" -#: gnu/packages/tex.scm:8546 +#: gnu/packages/tex.scm:8850 msgid "" "This package provides the command @code{\\marginnote} that\n" "may be used instead of @code{\\marginpar} at almost every place where\n" @@ -18847,7 +19068,7 @@ msgid "" "frames made with the @code{framed} package." msgstr "" -#: gnu/packages/tex.scm:8564 +#: gnu/packages/tex.scm:8868 msgid "" "This package, which works both for Plain TeX and for\n" "LaTeX, defines the @code{\\ifPDFTeX}, @code{\\ifXeTeX}, and @code{\\ifLuaTeX}\n" @@ -18857,7 +19078,19 @@ msgid "" "LuaTeX (respectively) is not the engine in use." msgstr "" -#: gnu/packages/tex.scm:8597 +#: gnu/packages/tex.scm:8914 +msgid "" +"The package provides an environment, tabu, which will make any sort of\n" +"tabular, and an environment longtabu which provides the facilities of tabu in\n" +"a modified longtable environment. The package requires array, xcolor for\n" +"coloured rules in tables, and colortbl for coloured cells. The longtabu\n" +"environment further requires that longtable be loaded. The package itself\n" +"does not load any of these packages for the user. The tabu environment may be\n" +"used in place of @code{tabular}, @code{tabular*} and @code{tabularx}\n" +"environments, as well as the @code{array} environment in maths mode." +msgstr "" + +#: gnu/packages/tex.scm:8945 msgid "" "This package provides a collection of simple tools that\n" "are part of the LaTeX required tools distribution, comprising the packages:\n" @@ -18869,7 +19102,7 @@ msgid "" "@code{varioref}, @code{verbatim}, @code{xr}, and @code{xspace}." msgstr "" -#: gnu/packages/tex.scm:8678 +#: gnu/packages/tex.scm:9026 msgid "" "This package is an extension of the keyval package and offers additional\n" "macros for setting keys and declaring and setting class or package options.\n" @@ -18879,7 +19112,7 @@ msgid "" "keys." msgstr "" -#: gnu/packages/tex.scm:8706 +#: gnu/packages/tex.scm:9054 msgid "" "A class and package is provided which allows TeX pictures or\n" "other TeX code to be compiled standalone or as part of a main document.\n" @@ -18891,7 +19124,7 @@ msgid "" "@code{standalone.cfg} to redefine the standalone environment." msgstr "" -#: gnu/packages/tex.scm:8739 +#: gnu/packages/tex.scm:9087 msgid "" "Typesetting values with units requires care to ensure that the combined\n" "mathematical meaning of the value plus unit combination is clear. In\n" @@ -18907,7 +19140,7 @@ msgid "" "package to handle all of the possible unit-related needs of LaTeX users." msgstr "" -#: gnu/packages/tex.scm:8770 +#: gnu/packages/tex.scm:9118 msgid "" "This package enhances the quality of tables in LaTeX, providing extra\n" "commands as well as behind-the-scenes optimisation. Guidelines are given as\n" @@ -18915,7 +19148,7 @@ msgid "" "@code{longtable} compatibility." msgstr "" -#: gnu/packages/tex.scm:8790 +#: gnu/packages/tex.scm:9138 msgid "" "This package provides advanced facilities for inline and\n" "display quotations. It is designed for a wide range of tasks ranging from the\n" @@ -18929,7 +19162,7 @@ msgid "" "styles as well as the optional active quotes are freely configurable." msgstr "" -#: gnu/packages/tex.scm:8816 +#: gnu/packages/tex.scm:9164 msgid "" "The package helps to automate a typical LaTeX\n" "workflow that involves running LaTeX several times and running tools\n" @@ -18949,7 +19182,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8848 +#: gnu/packages/tex.scm:9196 msgid "" "BibLaTeX is a complete reimplementation of the\n" "bibliographic facilities provided by LaTeX. Formatting of the\n" @@ -18975,7 +19208,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8886 +#: gnu/packages/tex.scm:9234 msgid "" "The @code{todonotes} package lets the user mark\n" "things to do later, in a simple and visually appealing way. The\n" @@ -18983,7 +19216,7 @@ msgid "" "of the visual appearance." msgstr "" -#: gnu/packages/tex.scm:8904 +#: gnu/packages/tex.scm:9252 msgid "" "@code{units} is a package for typesetting physical\n" "units in a standard-looking way. The package is based upon\n" @@ -18991,7 +19224,7 @@ msgid "" "included in the @code{units} bundle." msgstr "" -#: gnu/packages/tex.scm:8922 +#: gnu/packages/tex.scm:9270 msgid "" "@code{microtype} provides a LaTeX interface to the\n" "micro-typographic extensions that were introduced by pdfTeX and have\n" @@ -19006,7 +19239,7 @@ msgid "" "the bundle." msgstr "" -#: gnu/packages/tex.scm:8947 +#: gnu/packages/tex.scm:9295 msgid "" "The @code{caption} package provides many ways to\n" "customise the captions in floating environments like figure and table.\n" @@ -19020,13 +19253,13 @@ msgid "" "@code{subcaption} and @code{totalcount} are included in the bundle." msgstr "" -#: gnu/packages/tex.scm:8976 +#: gnu/packages/tex.scm:9324 msgid "" "This package provides a drop-in replacement for the\n" "Symbol font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:8994 +#: gnu/packages/tex.scm:9342 msgid "" "The Pazo Math fonts are a family of PostScript fonts\n" "suitable for typesetting mathematics in combination with the Palatino\n" @@ -19040,7 +19273,7 @@ msgid "" "LaTeX macro support is provided in package @code{psnfss}." msgstr "" -#: gnu/packages/tex.scm:9019 +#: gnu/packages/tex.scm:9367 msgid "" "The FPL Fonts provide a set of SC/OsF fonts for URW\n" "Palladio L which are compatible with the Palatino SC/OsF fonts from\n" @@ -19048,7 +19281,7 @@ msgid "" "the @code{psnfss} distribution." msgstr "" -#: gnu/packages/tex.scm:9043 +#: gnu/packages/tex.scm:9391 msgid "" "The @code{arev} package provides type 1 fonts,\n" "virtual fonts and LaTeX packages for using Arev Sans in both text and\n" @@ -19062,7 +19295,7 @@ msgid "" "support packages. Others are cmbright, hvmath and kerkis." msgstr "" -#: gnu/packages/tex.scm:9074 +#: gnu/packages/tex.scm:9422 msgid "" "The Math Design project offers free mathematical\n" "fonts that match with existing text fonts. To date, three free font\n" @@ -19073,7 +19306,7 @@ msgid "" "created by the Greek Font Society)." msgstr "" -#: gnu/packages/tex.scm:9099 +#: gnu/packages/tex.scm:9447 msgid "" "The @code{bera} package contains the Bera Type 1\n" "fonts and files to use the fonts with LaTeX. Bera is a set of three\n" @@ -19082,7 +19315,7 @@ msgid "" "a repackaging, for use with TeX, of the Bitstream Vera family." msgstr "" -#: gnu/packages/tex.scm:9122 +#: gnu/packages/tex.scm:9470 msgid "" "Fourier-GUTenberg is a LaTeX typesetting system\n" "which uses Adobe Utopia as its standard base font. Fourier-GUTenberg\n" @@ -19093,7 +19326,7 @@ msgid "" "trademark of Adobe Systems Incorporated." msgstr "" -#: gnu/packages/tex.scm:9145 +#: gnu/packages/tex.scm:9493 msgid "" "The Adobe Standard Encoding set of the Utopia font\n" "family, as contributed to the X Consortium. The set comprises upright\n" @@ -19102,7 +19335,7 @@ msgid "" "@code{mathdesign} font packages." msgstr "" -#: gnu/packages/tex.scm:9169 +#: gnu/packages/tex.scm:9517 msgid "" "The @code{fontaxes} package adds several new font\n" "axes on top of LaTeX's New Font Selection Scheme (NFSS). In\n" @@ -19111,7 +19344,7 @@ msgid "" "figure versions offered by many professional fonts." msgstr "" -#: gnu/packages/tex.scm:9192 +#: gnu/packages/tex.scm:9540 msgid "" "The bundle comprises: @code{authblk}, which permits\n" "footnote style author/affiliation input in the @command{\\author} command,\n" @@ -19121,7 +19354,7 @@ msgid "" "@code{sublabel}, which permits counters to be subnumbered." msgstr "" -#: gnu/packages/tex.scm:9211 +#: gnu/packages/tex.scm:9559 msgid "" "Many font families available for use with LaTeX are\n" "available at multiple weights. Many Type 1-oriented support packages\n" @@ -19132,7 +19365,7 @@ msgid "" "@code{mweights} package provides a solution to these difficulties." msgstr "" -#: gnu/packages/tex.scm:9237 +#: gnu/packages/tex.scm:9585 msgid "" "Cabin is a humanist sans with four weights, true\n" "italics and small capitals. According to its designer, Pablo\n" @@ -19146,7 +19379,7 @@ msgid "" "use with [pdf]LaTeX." msgstr "" -#: gnu/packages/tex.scm:9268 +#: gnu/packages/tex.scm:9616 msgid "" "The @code{newtx} bundle splits\n" "@code{txfonts.sty} (from the TX fonts distribution) into two\n" @@ -19158,7 +19391,7 @@ msgid "" "mathematics package that matches Libertine text quite well." msgstr "" -#: gnu/packages/tex.scm:9296 +#: gnu/packages/tex.scm:9644 msgid "" "@code{xcharter} repackages Bitstream Charter with an\n" "extended set of features. The extension provides small caps, oldstyle\n" @@ -19167,7 +19400,7 @@ msgid "" "Type 1 and OTF formats, with supporting files as necessary." msgstr "" -#: gnu/packages/tex.scm:9320 +#: gnu/packages/tex.scm:9668 msgid "" "The legacy @emph{texnansi} (TeX and ANSI) encoding\n" "is known in the LaTeX scheme of things as @emph{LY1} encoding. The\n" @@ -19176,14 +19409,14 @@ msgid "" "LY1 encoding." msgstr "" -#: gnu/packages/tex.scm:9349 +#: gnu/packages/tex.scm:9697 msgid "" "This is a LaTeX2ε package to help change the style of any or\n" "all of LaTeX's sectional headers in the article, book, or report classes.\n" "Examples include the addition of rules above or below a section title." msgstr "" -#: gnu/packages/tex.scm:9375 +#: gnu/packages/tex.scm:9723 msgid "" "LaTeX can, by default, only cope with 18 outstanding floats;\n" "any more, and you get the error “too many unprocessed floats”. This package\n" @@ -19194,19 +19427,19 @@ msgid "" "floats merely delays the arrival of the inevitable error message." msgstr "" -#: gnu/packages/tex.scm:9408 +#: gnu/packages/tex.scm:9756 msgid "" "This package provides a command for the LaTeX programmer for\n" "testing whether an argument is empty." msgstr "" -#: gnu/packages/tex.scm:9435 +#: gnu/packages/tex.scm:9783 msgid "" "The pagenote package provides tagged notes on a separate\n" "page (also known as ‘end notes’)." msgstr "" -#: gnu/packages/tex.scm:9463 +#: gnu/packages/tex.scm:9811 msgid "" "The @code{titling} package provides control over the\n" "typesetting of the @code{\\maketitle} command and @code{\\thanks} commands,\n" @@ -19216,7 +19449,7 @@ msgid "" "a physical page." msgstr "" -#: gnu/packages/tex.scm:9493 +#: gnu/packages/tex.scm:9841 msgid "" "This package provides an @code{\\ifoddpage} conditional to\n" "determine if the current page is odd or even. The macro @code{\\checkoddpage}\n" @@ -19226,7 +19459,7 @@ msgid "" "@code{oneside} mode where all pages use the odd page layout." msgstr "" -#: gnu/packages/tex.scm:9523 +#: gnu/packages/tex.scm:9871 msgid "" "The package provides \"store boxes\" whose user interface\n" "matches that of normal LaTeX \"save boxes\", except that the content of a\n" @@ -19235,7 +19468,7 @@ msgid "" "DVI is output, store boxes behave the same as save boxes." msgstr "" -#: gnu/packages/tex.scm:9552 +#: gnu/packages/tex.scm:9900 msgid "" "The package provides macros to collect and process a macro\n" "argument (i.e., something which looks like a macro argument) as a horizontal\n" @@ -19248,13 +19481,13 @@ msgid "" "The macros were designed for use within other macros." msgstr "" -#: gnu/packages/tex.scm:9584 +#: gnu/packages/tex.scm:9932 msgid "" "This package provides macros for adding to, and reordering\n" "the list of graphics file extensions recognised by package graphics." msgstr "" -#: gnu/packages/tex.scm:9618 +#: gnu/packages/tex.scm:9966 msgid "" "The package provides several macros to adjust boxed\n" "content. One purpose is to supplement the standard @code{graphics} package,\n" @@ -19267,7 +19500,7 @@ msgid "" "@code{\\minsizebox}, @code{\\maxsizebox} and @code{\\phantombox}." msgstr "" -#: gnu/packages/tex.scm:9644 +#: gnu/packages/tex.scm:9992 msgid "" "This package provides an environment for colored and\n" "framed text boxes with a heading line. Optionally, such a box may be split in\n" @@ -19278,7 +19511,7 @@ msgid "" "parts." msgstr "" -#: gnu/packages/tex.scm:9675 +#: gnu/packages/tex.scm:10023 msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems. The commands allow for writing\n" @@ -19287,13 +19520,13 @@ msgid "" "styles of inference rules, placement of labels, etc." msgstr "" -#: gnu/packages/tex.scm:9704 +#: gnu/packages/tex.scm:10052 msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems." msgstr "" -#: gnu/packages/tex.scm:9724 +#: gnu/packages/tex.scm:10072 msgid "" "This package provides the European currency symbol for the\n" "Euro implemented in METAFONT, using the official European Commission\n" @@ -19302,7 +19535,7 @@ msgid "" "pre-compiled font files, and documentation." msgstr "" -#: gnu/packages/tex.scm:9754 +#: gnu/packages/tex.scm:10102 msgid "" "The @code{kastrup} package provides the\n" "@emph{binhex.tex} file. This file provides expandable macros for both\n" @@ -19312,7 +19545,7 @@ msgid "" "LaTeX and plain TeX." msgstr "" -#: gnu/packages/tex.scm:9774 +#: gnu/packages/tex.scm:10122 msgid "" "This LaTeX package provides a flexible mechanism for translating\n" "individual words into different languages. For example, it can be used to\n" @@ -19323,7 +19556,7 @@ msgid "" "automatically translate more than a few words." msgstr "" -#: gnu/packages/tex.scm:9795 +#: gnu/packages/tex.scm:10143 msgid "" "This package facilitates placing boxes at absolute positions on the\n" "LaTeX page. There are several reasons why this might be useful, but the main\n" @@ -19336,7 +19569,7 @@ msgid "" "accompanied by various configuration commands." msgstr "" -#: gnu/packages/tex.scm:9819 +#: gnu/packages/tex.scm:10167 msgid "" "This package extends the @code{ifthen} package by implementing new\n" "commands to go within the first argument of @code{\\\\ifthenelse}: to test\n" @@ -19346,14 +19579,14 @@ msgid "" "handle complex tests." msgstr "" -#: gnu/packages/tex.scm:9852 +#: gnu/packages/tex.scm:10200 msgid "" "BibTool manipulates BibTeX files. The possibilities of BibTool include\n" "sorting and merging of BibTeX databases, generation of uniform reference keys,\n" "and selecting references used in a publication." msgstr "" -#: gnu/packages/texinfo.scm:87 +#: gnu/packages/texinfo.scm:88 msgid "" "Texinfo is the official documentation format of the GNU project. It\n" "uses a single source file using explicit commands to produce a final document\n" @@ -19363,7 +19596,7 @@ msgid "" "is on expressing the content semantically, avoiding physical markup commands." msgstr "" -#: gnu/packages/texinfo.scm:216 +#: gnu/packages/texinfo.scm:230 msgid "" "Texi2HTML is a Perl script which converts Texinfo source files to HTML\n" "output. It now supports many advanced features, such as internationalization\n" @@ -19378,7 +19611,7 @@ msgid "" "Texi2HTML." msgstr "" -#: gnu/packages/texinfo.scm:283 +#: gnu/packages/texinfo.scm:297 msgid "" "Pinfo is an Info file viewer. Pinfo is similar in use to the Lynx web\n" "browser. You just move across info nodes, and select links, follow them, etc.\n" @@ -19737,6 +19970,12 @@ msgstr "" #: gnu/packages/textutils.scm:1406 msgid "" +"@code{utf-8-lineseparator} provides a tool to efficiently check text\n" +"files for valid UTF-8 use and to report which line endings they use." +msgstr "" + +#: gnu/packages/textutils.scm:1439 +msgid "" "@code{csvdiff} is a diff tool to compute changes between two\n" "CSV files. It can compare CSV files with a million records in under 2\n" "seconds. It is specifically suited for comparing CSV files dumped from\n" @@ -19938,27 +20177,27 @@ msgid "" "visualize your public Git repositories on a web interface." msgstr "" -#: gnu/packages/version-control.scm:1706 +#: gnu/packages/version-control.scm:1699 msgid "" "Pre-commit is a multi-language package manager for pre-commit hooks. You\n" "specify a list of hooks you want and pre-commit manages the installation and\n" "execution of any hook written in any language before every commit." msgstr "" -#: gnu/packages/version-control.scm:1796 +#: gnu/packages/version-control.scm:1789 msgid "" "Mercurial is a free, distributed source control management tool. It\n" "efficiently handles projects of any size and offers an easy and intuitive\n" "interface." msgstr "" -#: gnu/packages/version-control.scm:1823 +#: gnu/packages/version-control.scm:1816 msgid "" "Evolve is a Mercurial extension for faster and safer mutable\n" "history. It implements the changeset evolution concept for Mercurial." msgstr "" -#: gnu/packages/version-control.scm:1879 +#: gnu/packages/version-control.scm:1872 msgid "" "This package provides a Mercurial extension for signing\n" "the changeset hash of commits. The signure is embedded directly in the\n" @@ -19966,7 +20205,7 @@ msgid "" "can be used for signing." msgstr "" -#: gnu/packages/version-control.scm:1914 +#: gnu/packages/version-control.scm:1907 msgid "" "Neon is an HTTP and WebDAV client library, with a C interface and the\n" "following features:\n" @@ -19988,7 +20227,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/version-control.scm:2010 +#: gnu/packages/version-control.scm:2003 msgid "" "@dfn{Subversion} (svn) exists to be recognized and adopted as a\n" "centralized version control system characterized by its\n" @@ -19997,7 +20236,7 @@ msgid "" "projects, from individuals to large-scale enterprise operations." msgstr "" -#: gnu/packages/version-control.scm:2044 +#: gnu/packages/version-control.scm:2037 msgid "" "RCS is the original Revision Control System. It works on a\n" "file-by-file basis, in contrast to subsequent version control systems such as\n" @@ -20006,21 +20245,21 @@ msgid "" "machine." msgstr "" -#: gnu/packages/version-control.scm:2067 +#: gnu/packages/version-control.scm:2060 msgid "" "@code{blame} outputs an annotated revision from each RCS file. An\n" "annotated RCS file describes the revision and date in which each line was\n" "added to the file, and the author of each line." msgstr "" -#: gnu/packages/version-control.scm:2088 +#: gnu/packages/version-control.scm:2081 msgid "" "The @code{rcshist} utility displays the complete revision history of a\n" "set of RCS files including log messages and patches. It can also display the\n" "patch associated with a particular revision of an RCS file." msgstr "" -#: gnu/packages/version-control.scm:2116 +#: gnu/packages/version-control.scm:2109 msgid "" "CVS is a version control system, an important component of Source\n" "Configuration Management (SCM). Using it, you can record the history of\n" @@ -20028,7 +20267,7 @@ msgid "" "RCS, PRCS, and Aegis packages." msgstr "" -#: gnu/packages/version-control.scm:2150 +#: gnu/packages/version-control.scm:2143 msgid "" "This program analyzes a collection of RCS files in a CVS\n" "repository (or outside of one) and, when possible, emits an equivalent history\n" @@ -20041,7 +20280,7 @@ msgid "" "masters from remote CVS hosts." msgstr "" -#: gnu/packages/version-control.scm:2180 +#: gnu/packages/version-control.scm:2173 msgid "" "The vc-dwim package contains two tools, \"vc-dwim\" and \"vc-chlog\".\n" "vc-dwim is a tool that simplifies the task of maintaining a ChangeLog and\n" @@ -20051,21 +20290,21 @@ msgid "" "standards-compliant ChangeLog entries based on the changes that it detects." msgstr "" -#: gnu/packages/version-control.scm:2207 +#: gnu/packages/version-control.scm:2200 msgid "" "Diffstat reads the output of @command{diff} and displays a histogram of\n" "the insertions, deletions, and modifications per file. It is useful for\n" "reviewing large, complex patch files." msgstr "" -#: gnu/packages/version-control.scm:2246 +#: gnu/packages/version-control.scm:2239 msgid "" "GNU CSSC provides a replacement for the legacy Unix source\n" "code control system SCCS. This allows old code still under that system to be\n" "accessed and migrated on modern systems." msgstr "" -#: gnu/packages/version-control.scm:2338 +#: gnu/packages/version-control.scm:2331 msgid "" "Aegis is a project change supervisor, and performs some of\n" "the Software Configuration Management needed in a CASE environment. Aegis\n" @@ -20076,7 +20315,7 @@ msgid "" "any project with more than one developer, is one of Aegis's major functions." msgstr "" -#: gnu/packages/version-control.scm:2412 +#: gnu/packages/version-control.scm:2405 msgid "" "Reposurgeon enables risky operations that version-control\n" "systems don't want to let you do, such as editing past comments and metadata\n" @@ -20087,20 +20326,20 @@ msgid "" "from Subversion to any supported Distributed Version Control System (DVCS)." msgstr "" -#: gnu/packages/version-control.scm:2451 +#: gnu/packages/version-control.scm:2444 msgid "" "Tig is an ncurses text user interface for Git, primarily intended as\n" "a history browser. It can also stage hunks for commit, or colorize the\n" "output of the @code{git} command." msgstr "" -#: gnu/packages/version-control.scm:2474 +#: gnu/packages/version-control.scm:2467 msgid "" "Recursively find the newest file in a file tree and print its\n" "modification time." msgstr "" -#: gnu/packages/version-control.scm:2521 +#: gnu/packages/version-control.scm:2514 msgid "" "Myrepos provides the @code{mr} command, which maps an operation (e.g.,\n" "fetching updates) over a collection of version control repositories. It\n" @@ -20108,14 +20347,14 @@ msgid "" "Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity." msgstr "" -#: gnu/packages/version-control.scm:2558 +#: gnu/packages/version-control.scm:2551 msgid "" "Grokmirror enables replicating large git repository\n" "collections efficiently. Mirrors decide to clone and update repositories\n" "based on a manifest file published by servers." msgstr "" -#: gnu/packages/version-control.scm:2588 +#: gnu/packages/version-control.scm:2581 msgid "" "The @code{b4} command is designed to make it easier to participate in\n" "patch-based workflows for projects that have public-inbox archives.\n" @@ -20129,26 +20368,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/version-control.scm:2635 +#: gnu/packages/version-control.scm:2628 msgid "" "This wrapper around rclone makes any destination supported\n" "by rclone usable with git-annex." msgstr "" -#: gnu/packages/version-control.scm:2689 +#: gnu/packages/version-control.scm:2682 msgid "" "Fossil is a distributed source control management system which supports\n" "access and administration over HTTP CGI or via a built-in HTTP server. It has\n" "a built-in wiki, built-in file browsing, built-in tickets system, etc." msgstr "" -#: gnu/packages/version-control.scm:2720 +#: gnu/packages/version-control.scm:2713 msgid "" "Stagit creates static pages for git repositories, the results can\n" "be served with a HTTP file server of your choice." msgstr "" -#: gnu/packages/version-control.scm:2756 +#: gnu/packages/version-control.scm:2749 msgid "" "@code{gource} provides a software version control\n" "visualization. The repository is displayed as a tree where the root of the\n" @@ -20157,7 +20396,7 @@ msgid "" "specific files and directories." msgstr "" -#: gnu/packages/version-control.scm:2804 +#: gnu/packages/version-control.scm:2797 #, scheme-format msgid "" "SRC (or src) is simple revision control, a version-control system for\n" @@ -20167,7 +20406,7 @@ msgid "" "directory full of HOWTOs." msgstr "" -#: gnu/packages/version-control.scm:2856 +#: gnu/packages/version-control.scm:2849 msgid "" "This Git extension defines a subcommand,\n" "@code{when-merged}, whose core operation is to find the merge that brought a\n" @@ -20175,7 +20414,7 @@ msgid "" "how information about the merge is displayed." msgstr "" -#: gnu/packages/version-control.scm:2900 +#: gnu/packages/version-control.scm:2893 msgid "" "This Git extension defines a subcommand, @code{imerge},\n" "which performs an incremental merge between two branches. Its two primary\n" @@ -20184,20 +20423,20 @@ msgid "" "interrupted, published, and collaborated on while in progress." msgstr "" -#: gnu/packages/version-control.scm:2951 +#: gnu/packages/version-control.scm:2944 msgid "" "Git Large File Storage (LFS) replaces large files such as audio samples,\n" "videos, datasets, and graphics with text pointers inside Git, while storing the\n" "file contents on a remote server." msgstr "" -#: gnu/packages/version-control.scm:2986 +#: gnu/packages/version-control.scm:2979 msgid "" "@code{git open} opens the repository's website from the command-line,\n" "guessing the URL pattern from the @code{origin} remote." msgstr "" -#: gnu/packages/version-control.scm:3040 +#: gnu/packages/version-control.scm:3033 msgid "" "GNU Arch, aka. @code{tla}, was one of the first free distributed\n" "version-control systems (DVCS). It saw its last release in 2006. This\n" @@ -20205,18 +20444,18 @@ msgid "" "for historians." msgstr "" -#: gnu/packages/version-control.scm:3086 +#: gnu/packages/version-control.scm:3079 msgid "" "@code{diff-so-fancy} strives to make your diffs human readable instead\n" "of machine readable. This helps improve code quality and helps you spot\n" "defects faster." msgstr "" -#: gnu/packages/version-control.scm:3142 +#: gnu/packages/version-control.scm:3135 msgid "This package provides a Git implementation library." msgstr "" -#: gnu/packages/version-control.scm:3192 +#: gnu/packages/version-control.scm:3185 msgid "" "This package provides a command-line tool to manage\n" "multiple Git repos.\n" @@ -20231,7 +20470,7 @@ msgid "" "If several repos are related, it helps to see their status together." msgstr "" -#: gnu/packages/version-control.scm:3250 +#: gnu/packages/version-control.scm:3243 #, scheme-format msgid "" "@code{ghq} provides a way to organize remote repository clones, like\n" @@ -20240,7 +20479,7 @@ msgid "" "using the remote repository URL's host and path." msgstr "" -#: gnu/packages/version-control.scm:3295 +#: gnu/packages/version-control.scm:3288 msgid "" "TkRev (formerly TkCVS) is a Tcl/Tk-based graphical interface to the CVS,\n" "Subversion and Git configuration management systems. It will also help with\n" @@ -20249,7 +20488,7 @@ msgid "" "TkDiff is included for browsing and merging your changes." msgstr "" -#: gnu/packages/version-control.scm:3328 +#: gnu/packages/version-control.scm:3321 msgid "" "@command{git filter-repo} is a versatile tool for rewriting history,\n" "which roughly falls into the same space of tool like git filter-branch but\n" @@ -20287,7 +20526,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:865 +#: gnu/packages/virtualization.scm:870 msgid "" "Ganeti is a virtual machine management tool built on top of existing\n" "virtualization technologies such as Xen or KVM. Ganeti controls:\n" @@ -20304,19 +20543,19 @@ msgid "" "commodity hardware." msgstr "" -#: gnu/packages/virtualization.scm:902 +#: gnu/packages/virtualization.scm:907 msgid "" "This package provides a guest OS definition for Ganeti that uses\n" "Guix to build virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:996 +#: gnu/packages/virtualization.scm:1001 msgid "" "This package provides a guest OS definition for Ganeti. It installs\n" "Debian or a derivative using @command{debootstrap}." msgstr "" -#: gnu/packages/virtualization.scm:1056 +#: gnu/packages/virtualization.scm:1061 msgid "" "libosinfo is a GObject based library API for managing\n" "information about operating systems, hypervisors and the (virtual) hardware\n" @@ -20326,21 +20565,21 @@ msgid "" "all common programming languages. Vala bindings are also provided." msgstr "" -#: gnu/packages/virtualization.scm:1105 +#: gnu/packages/virtualization.scm:1109 msgid "" "LXC is a userspace interface for the Linux kernel containment features.\n" "Through a powerful API and simple tools, it lets Linux users easily create and\n" "manage system or application containers." msgstr "" -#: gnu/packages/virtualization.scm:1131 +#: gnu/packages/virtualization.scm:1135 msgid "" "LXCFS is a small FUSE file system written with the intention\n" "of making Linux containers feel more like a virtual machine.\n" "It started as a side project of LXC but can be used by any run-time." msgstr "" -#: gnu/packages/virtualization.scm:1239 +#: gnu/packages/virtualization.scm:1237 msgid "" "LXD is a next generation system container manager. It\n" "offers a user experience similar to virtual machines but using Linux\n" @@ -20349,7 +20588,7 @@ msgid "" "pretty simple, REST API." msgstr "" -#: gnu/packages/virtualization.scm:1332 +#: gnu/packages/virtualization.scm:1330 msgid "" "Libvirt is a C toolkit to interact with the virtualization\n" "capabilities of recent versions of Linux. The library aims at providing long\n" @@ -20357,7 +20596,7 @@ msgid "" "to integrate other virtualization mechanisms if needed." msgstr "" -#: gnu/packages/virtualization.scm:1363 +#: gnu/packages/virtualization.scm:1359 msgid "" "libvirt-glib wraps the libvirt library to provide a\n" "high-level object-oriented API better suited for glib-based applications, via\n" @@ -20370,13 +20609,13 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/virtualization.scm:1407 +#: gnu/packages/virtualization.scm:1403 msgid "" "This package provides Python bindings to the libvirt\n" "virtualization library." msgstr "" -#: gnu/packages/virtualization.scm:1520 +#: gnu/packages/virtualization.scm:1516 msgid "" "The virt-manager application is a desktop user interface for managing\n" "virtual machines through libvirt. It primarily targets KVM VMs, but also\n" @@ -20384,7 +20623,7 @@ msgid "" "domains, their live performance and resource utilization statistics." msgstr "" -#: gnu/packages/virtualization.scm:1620 +#: gnu/packages/virtualization.scm:1616 msgid "" "Using this tool, you can freeze a running application (or\n" "part of it) and checkpoint it to a hard drive as a collection of files. You\n" @@ -20393,14 +20632,14 @@ msgid "" "mainly implemented in user space." msgstr "" -#: gnu/packages/virtualization.scm:1647 +#: gnu/packages/virtualization.scm:1643 msgid "" "qmpbackup is designed to create and restore full and\n" "incremental backups of running QEMU virtual machines via QMP, the QEMU\n" "Machine Protocol." msgstr "" -#: gnu/packages/virtualization.scm:1731 +#: gnu/packages/virtualization.scm:1727 msgid "" "Looking Glass allows the use of a KVM (Kernel-based Virtual\n" "Machine) configured for VGA PCI Pass-through without an attached physical\n" @@ -20408,7 +20647,7 @@ msgid "" "main monitor/GPU." msgstr "" -#: gnu/packages/virtualization.scm:1783 +#: gnu/packages/virtualization.scm:1779 msgid "" "@command{runc} is a command line client for running applications\n" "packaged according to the\n" @@ -20417,13 +20656,13 @@ msgid "" "Open Container Initiative specification." msgstr "" -#: gnu/packages/virtualization.scm:1832 +#: gnu/packages/virtualization.scm:1828 msgid "" "@command{umoci} is a tool that allows for high-level modification of an\n" "Open Container Initiative (OCI) image layout and its tagged images." msgstr "" -#: gnu/packages/virtualization.scm:1886 +#: gnu/packages/virtualization.scm:1882 msgid "" "@command{skopeo} is a command line utility providing various operations\n" "with container images and container image registries. It can:\n" @@ -20444,14 +20683,14 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:1922 +#: gnu/packages/virtualization.scm:1918 msgid "" "Python-vagrant is a Python module that provides a thin wrapper around the\n" "@code{vagrant} command line executable, allowing programmatic control of Vagrant\n" "virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:1977 +#: gnu/packages/virtualization.scm:1979 msgid "" "Bubblewrap is aimed at running applications in a sandbox,\n" "restricting their access to parts of the operating system or user data such as\n" @@ -20461,7 +20700,7 @@ msgid "" "by default and can be made read-only." msgstr "" -#: gnu/packages/virtualization.scm:2004 +#: gnu/packages/virtualization.scm:2006 msgid "" "Bochs is an emulator which can emulate Intel x86 CPU, common I/O\n" "devices, and a custom BIOS. It can also be compiled to emulate many different\n" @@ -20470,64 +20709,67 @@ msgid "" "DOS or Microsoft Windows." msgstr "" -#: gnu/packages/virtualization.scm:2210 +#: gnu/packages/virtualization.scm:2212 msgid "" "This package provides the Xen Virtual Machine Monitor\n" "which is a hypervisor." msgstr "" -#: gnu/packages/virtualization.scm:2242 +#: gnu/packages/virtualization.scm:2244 msgid "" "This package contains a set of tools to assist\n" "administrators and developers in managing the database." msgstr "" -#: gnu/packages/virtualization.scm:2275 +#: gnu/packages/virtualization.scm:2277 msgid "" "Osinfo-db provides the database files for use with the\n" "libosinfo library. It provides information about guest operating systems for\n" "use with virtualization provisioning tools" msgstr "" -#: gnu/packages/virtualization.scm:2317 +#: gnu/packages/virtualization.scm:2319 msgid "" "@code{transient} is a wrapper for QEMU allowing the creation of virtual\n" "machines with shared folder, ssh, and disk creation support." msgstr "" -#: gnu/packages/webkit.scm:93 +#: gnu/packages/webkit.scm:94 msgid "" "LibWPE is general-purpose library specifically developed for\n" "the WPE-flavored port of WebKit." msgstr "" -#: gnu/packages/webkit.scm:119 +#: gnu/packages/webkit.scm:120 msgid "" "This package provides a backend implementation for the WPE WebKit\n" "engine that uses Wayland for graphics output." msgstr "" -#: gnu/packages/webkit.scm:216 +#: gnu/packages/webkit.scm:227 msgid "" "WPE WebKit allows embedders to create simple and performant\n" "systems based on Web platform technologies. It is designed with hardware\n" "acceleration in mind, leveraging common 3D graphics APIs for best performance." msgstr "" -#: gnu/packages/webkit.scm:351 +#: gnu/packages/webkit.scm:355 msgid "" "WebKitGTK+ is a full-featured port of the WebKit rendering engine,\n" "suitable for projects requiring any kind of web integration, from hybrid\n" -"HTML/CSS applications to full-fledged web browsers." +"HTML/CSS applications to full-fledged web browsers. WebKitGTK+ video playing\n" +"capabilities can be extended through the use of GStreamer plugins (not\n" +"propagated by default) such as @code{gst-plugins-good} and\n" +"@code{gst-plugins-bad}." msgstr "" -#: gnu/packages/web.scm:250 +#: gnu/packages/web.scm:251 msgid "" "Qhttp is a light-weight and asynchronous HTTP library\n" "(both server & client) in Qt5 and C++14." msgstr "" -#: gnu/packages/web.scm:280 +#: gnu/packages/web.scm:281 msgid "" "The Apache HTTP Server Project is a collaborative software development\n" "effort aimed at creating a robust, commercial-grade, featureful, and\n" @@ -20537,14 +20779,14 @@ msgid "" "and its related documentation." msgstr "" -#: gnu/packages/web.scm:314 +#: gnu/packages/web.scm:315 msgid "" "The mod_wsgi module for the Apache HTTPD Server adds support for running\n" "applications that support the Python @acronym{WSGI, Web Server Gateway\n" "Interface} specification." msgstr "" -#: gnu/packages/web.scm:356 +#: gnu/packages/web.scm:357 msgid "" "Monolith bundles any web page into a single HTML file.\n" "\n" @@ -20557,38 +20799,38 @@ msgid "" "the same, being completely separated from the Internet." msgstr "" -#: gnu/packages/web.scm:460 +#: gnu/packages/web.scm:461 msgid "" "Nginx (\"engine X\") is a high-performance web and reverse proxy server\n" "created by Igor Sysoev. It can be used both as a stand-alone web server\n" "and as a proxy to reduce the load on back-end HTTP or mail servers." msgstr "" -#: gnu/packages/web.scm:518 +#: gnu/packages/web.scm:519 msgid "This package provides HTML documentation for the nginx web server." msgstr "" -#: gnu/packages/web.scm:647 +#: gnu/packages/web.scm:648 msgid "" "This nginx module parses the Accept-Language field in HTTP headers and\n" "chooses the most suitable locale for the user from the list of locales\n" "supported at your website." msgstr "" -#: gnu/packages/web.scm:694 +#: gnu/packages/web.scm:695 msgid "" "XSLScript is a terse notation for writing complex XSLT stylesheets.\n" "This is modified version, specifically intended for use with the NGinx\n" "documentation." msgstr "" -#: gnu/packages/web.scm:767 +#: gnu/packages/web.scm:768 msgid "" "This NGINX module provides a scripting support with Lua\n" "programming language." msgstr "" -#: gnu/packages/web.scm:820 +#: gnu/packages/web.scm:821 msgid "" "This NGINX module provides streaming with the @acronym{RTMP,\n" "Real-Time Messaging Protocol}, @acronym{DASH, Dynamic Adaptive Streaming over HTTP},\n" @@ -20598,7 +20840,7 @@ msgid "" "stream. Remote control of the module is possible over HTTP." msgstr "" -#: gnu/packages/web.scm:882 +#: gnu/packages/web.scm:883 msgid "" "Lighttpd is a secure, fast, compliant, and very flexible web-server that\n" "has been optimized for high-performance environments. It has a very low\n" @@ -20606,41 +20848,41 @@ msgid "" "CGI, authentication, output compression, URL rewriting and many more." msgstr "" -#: gnu/packages/web.scm:910 +#: gnu/packages/web.scm:911 msgid "" "FastCGI is a language-independent, scalable extension to CGI\n" "that provides high performance without the limitations of server specific\n" "APIs." msgstr "" -#: gnu/packages/web.scm:948 +#: gnu/packages/web.scm:949 msgid "" "Fcgiwrap is a simple server for running CGI applications\n" "over FastCGI. It hopes to provide clean CGI support to Nginx (and other web\n" "servers that may need it)." msgstr "" -#: gnu/packages/web.scm:977 +#: gnu/packages/web.scm:978 msgid "" "Starman is a PSGI perl web server that has unique features\n" "such as high performance, preforking, signal support, superdaemon awareness,\n" "and UNIX socket support." msgstr "" -#: gnu/packages/web.scm:1010 +#: gnu/packages/web.scm:1011 msgid "" "IcedTea-Web is an implementation of the @dfn{Java Network Launching\n" "Protocol}, also known as Java Web Start. This package provides tools and\n" "libraries for working with JNLP applets." msgstr "" -#: gnu/packages/web.scm:1035 +#: gnu/packages/web.scm:1036 msgid "" "Jansson is a C library for encoding, decoding and manipulating JSON\n" "data." msgstr "" -#: gnu/packages/web.scm:1055 +#: gnu/packages/web.scm:1056 msgid "" "JSON-C implements a reference counting object model that allows you to\n" "easily construct JSON objects in C, output them as JSON-formatted strings and\n" @@ -20648,7 +20890,7 @@ msgid "" "It aims to conform to RFC 7159." msgstr "" -#: gnu/packages/web.scm:1131 +#: gnu/packages/web.scm:1132 msgid "" "This package provides a very low footprint JSON parser\n" "written in portable ANSI C.\n" @@ -20661,21 +20903,21 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:1176 +#: gnu/packages/web.scm:1177 msgid "" "QJson is a Qt-based library that maps JSON data to\n" "@code{QVariant} objects. JSON arrays will be mapped to @code{QVariantList}\n" "instances, while JSON's objects will be mapped to @code{QVariantMap}." msgstr "" -#: gnu/packages/web.scm:1227 +#: gnu/packages/web.scm:1228 msgid "" "QOAuth is an attempt to support interaction with\n" "OAuth-powered network services in a Qt way, i.e. simply, clearly and\n" "efficiently. It gives the application developer no more than 4 methods." msgstr "" -#: gnu/packages/web.scm:1339 +#: gnu/packages/web.scm:1340 msgid "" "Krona is a flexible tool for exploring the relative proportions of\n" "hierarchical data, such as metagenomic classifications, using a radial,\n" @@ -20684,26 +20926,26 @@ msgid "" "current version of any major web browser." msgstr "" -#: gnu/packages/web.scm:1380 +#: gnu/packages/web.scm:1381 msgid "" "RapidJSON is a fast JSON parser/generator for C++ with both SAX/DOM\n" "style API." msgstr "" -#: gnu/packages/web.scm:1409 +#: gnu/packages/web.scm:1410 msgid "" "Yet Another JSON Library (YAJL) is a small event-driven (SAX-style) JSON\n" "parser written in ANSI C and a small validating JSON generator." msgstr "" -#: gnu/packages/web.scm:1439 +#: gnu/packages/web.scm:1440 msgid "" "Libwebsockets is a library that allows C programs to establish client\n" "and server WebSockets connections---a protocol layered above HTTP that allows\n" "for efficient socket-like bidirectional reliable communication channels." msgstr "" -#: gnu/packages/web.scm:1468 +#: gnu/packages/web.scm:1469 msgid "" "WABT (pronounced: wabbit) is a suite of tools for\n" "WebAssembly, including:\n" @@ -20728,7 +20970,7 @@ msgid "" "other systems that want to manipulate WebAssembly files." msgstr "" -#: gnu/packages/web.scm:1518 +#: gnu/packages/web.scm:1519 msgid "" "WebSocket++ is a C++ library that can be used to implement\n" "WebSocket functionality. The goals of the project are to provide a WebSocket\n" @@ -20736,7 +20978,7 @@ msgid "" "high performance." msgstr "" -#: gnu/packages/web.scm:1558 +#: gnu/packages/web.scm:1559 msgid "" "@code{Wslay} is an event-based C library for the WebSocket\n" "protocol version 13, described in RFC 6455. Besides a high-level API it\n" @@ -20745,7 +20987,7 @@ msgid "" "perform the opening handshake in HTTP." msgstr "" -#: gnu/packages/web.scm:1588 +#: gnu/packages/web.scm:1589 msgid "" "A \"public suffix\" is a domain name under which Internet users can\n" "directly register own names.\n" @@ -20763,20 +21005,20 @@ msgid "" "UTS#46." msgstr "" -#: gnu/packages/web.scm:1633 +#: gnu/packages/web.scm:1634 msgid "" "HTML Tidy is a command-line tool and C library that can be\n" "used to validate and fix HTML data." msgstr "" -#: gnu/packages/web.scm:1680 +#: gnu/packages/web.scm:1681 msgid "" "The esbuild tool provides a unified bundler, transpiler and\n" "minifier. It packages up JavaScript and TypeScript code, along with JSON\n" "and other data, for distribution on the web." msgstr "" -#: gnu/packages/web.scm:1716 +#: gnu/packages/web.scm:1717 msgid "" "Tinyproxy is a light-weight HTTP/HTTPS proxy\n" "daemon. Designed from the ground up to be fast and yet small, it is an ideal\n" @@ -20785,14 +21027,14 @@ msgid "" "unavailable." msgstr "" -#: gnu/packages/web.scm:1751 +#: gnu/packages/web.scm:1752 msgid "" "Polipo is a small caching web proxy (web cache, HTTP proxy, and proxy\n" "server). It was primarily designed to be used by one person or a small group\n" "of people." msgstr "" -#: gnu/packages/web.scm:1779 +#: gnu/packages/web.scm:1780 msgid "" "Websockify translates WebSockets traffic to normal socket\n" "traffic. Websockify accepts the WebSockets handshake, parses it, and then\n" @@ -20800,7 +21042,7 @@ msgid "" "directions." msgstr "" -#: gnu/packages/web.scm:1806 +#: gnu/packages/web.scm:1807 msgid "" "WWWOFFLE is a proxy web server that is especially good for\n" "intermittent internet links. It can cache HTTP, HTTPS, FTP, and finger\n" @@ -20809,7 +21051,7 @@ msgid "" "changes, and much more." msgstr "" -#: gnu/packages/web.scm:1832 +#: gnu/packages/web.scm:1833 msgid "" "liboauth is a collection of C functions implementing the OAuth API.\n" "liboauth provides functions to escape and encode strings according to OAuth\n" @@ -20818,25 +21060,25 @@ msgid "" "hash/signatures." msgstr "" -#: gnu/packages/web.scm:1855 +#: gnu/packages/web.scm:1856 msgid "" "This package contains support scripts called by libquvi to\n" "parse media stream properties." msgstr "" -#: gnu/packages/web.scm:1889 +#: gnu/packages/web.scm:1890 msgid "" "libquvi is a library with a C API for parsing media stream\n" "URLs and extracting their actual media files." msgstr "" -#: gnu/packages/web.scm:1911 +#: gnu/packages/web.scm:1912 msgid "" "quvi is a command-line-tool suite to extract media files\n" "from streaming URLs. It is a command-line wrapper for the libquvi library." msgstr "" -#: gnu/packages/web.scm:1983 +#: gnu/packages/web.scm:1984 msgid "" "serf is a C-based HTTP client library built upon the Apache Portable\n" "Runtime (APR) library. It multiplexes connections, running the read/write\n" @@ -20844,7 +21086,7 @@ msgid "" "minimum to provide high performance operation." msgstr "" -#: gnu/packages/web.scm:2018 +#: gnu/packages/web.scm:2019 msgid "" "LibSass is a @acronym{SASS,Syntactically awesome style sheets} compiler\n" "library designed for portability and efficiency. To actually compile SASS\n" @@ -20852,29 +21094,29 @@ msgid "" "@var{sassc} for example." msgstr "" -#: gnu/packages/web.scm:2067 +#: gnu/packages/web.scm:2068 msgid "" "SassC is a compiler written in C for the CSS pre-processor\n" "language known as SASS." msgstr "" -#: gnu/packages/web.scm:2112 +#: gnu/packages/web.scm:2113 msgid "" "This module provides methods to compile a log format string\n" "to perl-code, for faster generation of access_log lines." msgstr "" -#: gnu/packages/web.scm:2140 +#: gnu/packages/web.scm:2141 msgid "Authen::SASL provides an SASL authentication framework." msgstr "" -#: gnu/packages/web.scm:2163 +#: gnu/packages/web.scm:2164 msgid "" "This Catalyst action implements a sensible default end\n" "action, which will forward to the first available view." msgstr "" -#: gnu/packages/web.scm:2195 +#: gnu/packages/web.scm:2196 msgid "" "This Action handles doing automatic method dispatching for\n" "REST requests. It takes a normal Catalyst action, and changes the dispatch to\n" @@ -20883,20 +21125,20 @@ msgid "" "regular method." msgstr "" -#: gnu/packages/web.scm:2226 +#: gnu/packages/web.scm:2227 msgid "" "The Catalyst::Authentication::Store::DBIx::Class class\n" "provides access to authentication information stored in a database via\n" "DBIx::Class." msgstr "" -#: gnu/packages/web.scm:2252 +#: gnu/packages/web.scm:2253 msgid "" "Catalyst::Component::InstancePerContext returns a new\n" "instance of a component on each request." msgstr "" -#: gnu/packages/web.scm:2288 +#: gnu/packages/web.scm:2289 msgid "" "The Catalyst-Devel distribution includes a variety of\n" "modules useful for the development of Catalyst applications, but not required\n" @@ -20906,7 +21148,7 @@ msgid "" "modules." msgstr "" -#: gnu/packages/web.scm:2316 +#: gnu/packages/web.scm:2317 msgid "" "Dispatch type managing path-matching behaviour using\n" "regexes. Regex dispatch types have been deprecated and removed from Catalyst\n" @@ -20916,20 +21158,20 @@ msgid "" "when the dispatch type is first seen in your application." msgstr "" -#: gnu/packages/web.scm:2363 +#: gnu/packages/web.scm:2364 msgid "" "This is a Catalyst Model for DBIx::Class::Schema-based\n" "Models." msgstr "" -#: gnu/packages/web.scm:2385 +#: gnu/packages/web.scm:2386 msgid "" "This Catalyst plugin enables you to create \"access logs\"\n" "from within a Catalyst application instead of requiring a webserver to do it\n" "for you. It will work even with Catalyst debug logging turned off." msgstr "" -#: gnu/packages/web.scm:2419 +#: gnu/packages/web.scm:2420 msgid "" "The authentication plugin provides generic user support for\n" "Catalyst apps. It is the basis for both authentication (checking the user is\n" @@ -20937,32 +21179,32 @@ msgid "" "system authorises them to do)." msgstr "" -#: gnu/packages/web.scm:2447 +#: gnu/packages/web.scm:2448 msgid "" "Catalyst::Plugin::Authorization::Roles provides role-based\n" "authorization for Catalyst based on Catalyst::Plugin::Authentication." msgstr "" -#: gnu/packages/web.scm:2469 +#: gnu/packages/web.scm:2470 msgid "" "This plugin creates and validates Captcha images for\n" "Catalyst." msgstr "" -#: gnu/packages/web.scm:2493 +#: gnu/packages/web.scm:2494 msgid "" "This module will attempt to load find and load configuration\n" "files of various types. Currently it supports YAML, JSON, XML, INI and Perl\n" "formats." msgstr "" -#: gnu/packages/web.scm:2522 +#: gnu/packages/web.scm:2523 msgid "" "This plugin links the two pieces required for session\n" "management in web applications together: the state, and the store." msgstr "" -#: gnu/packages/web.scm:2548 +#: gnu/packages/web.scm:2549 msgid "" "In order for Catalyst::Plugin::Session to work, the session\n" "ID needs to be stored on the client, and the session data needs to be stored\n" @@ -20970,14 +21212,14 @@ msgid "" "cookie mechanism." msgstr "" -#: gnu/packages/web.scm:2578 +#: gnu/packages/web.scm:2579 msgid "" "Catalyst::Plugin::Session::Store::FastMmap is a fast session\n" "storage plugin for Catalyst that uses an mmap'ed file to act as a shared\n" "memory interprocess cache. It is based on Cache::FastMmap." msgstr "" -#: gnu/packages/web.scm:2602 +#: gnu/packages/web.scm:2603 msgid "" "This plugin enhances the standard Catalyst debug screen by\n" "including a stack trace of your application up to the point where the error\n" @@ -20985,7 +21227,7 @@ msgid "" "number, file name, and code context surrounding the line number." msgstr "" -#: gnu/packages/web.scm:2628 +#: gnu/packages/web.scm:2629 msgid "" "The Static::Simple plugin is designed to make serving static\n" "content in your application during development quick and easy, without\n" @@ -20996,7 +21238,7 @@ msgid "" "MIME type directly to the browser, without being processed through Catalyst." msgstr "" -#: gnu/packages/web.scm:2687 +#: gnu/packages/web.scm:2688 msgid "" "Catalyst is a modern framework for making web applications.\n" "It is designed to make it easy to manage the various tasks you need to do to\n" @@ -21004,7 +21246,7 @@ msgid "" "\"plug in\" existing Perl modules that do what you need." msgstr "" -#: gnu/packages/web.scm:2715 +#: gnu/packages/web.scm:2716 msgid "" "This module is a Moose::Role which allows you more\n" "flexibility in your application's deployment configurations when deployed\n" @@ -21012,26 +21254,26 @@ msgid "" "replaced with the contents of the X-Request-Base header." msgstr "" -#: gnu/packages/web.scm:2743 +#: gnu/packages/web.scm:2744 msgid "" "The purpose of this module is to provide a method for\n" "downloading data into many supportable formats. For example, downloading a\n" "table based report in a variety of formats (CSV, HTML, etc.)." msgstr "" -#: gnu/packages/web.scm:2767 +#: gnu/packages/web.scm:2768 msgid "" "Catalyst::View::JSON is a Catalyst View handler that returns\n" "stash data in JSON format." msgstr "" -#: gnu/packages/web.scm:2793 +#: gnu/packages/web.scm:2794 msgid "" "This module is a Catalyst view class for the Template\n" "Toolkit." msgstr "" -#: gnu/packages/web.scm:2821 +#: gnu/packages/web.scm:2822 msgid "" "Adds a \"COMPONENT\" in Catalyst::Component method to your\n" "Catalyst component base class that reads the optional \"traits\" parameter\n" @@ -21040,19 +21282,19 @@ msgid "" "MooseX::Traits::Pluggable." msgstr "" -#: gnu/packages/web.scm:2845 +#: gnu/packages/web.scm:2846 msgid "" "CatalystX::RoleApplicator applies roles to Catalyst\n" "application classes." msgstr "" -#: gnu/packages/web.scm:2870 +#: gnu/packages/web.scm:2871 msgid "" "This module provides a Catalyst extension to replace the\n" "development server with Starman." msgstr "" -#: gnu/packages/web.scm:2892 +#: gnu/packages/web.scm:2893 msgid "" "CGI.pm is a stable, complete and mature solution for\n" "processing and preparing HTTP requests and responses. Major features include\n" @@ -21061,44 +21303,44 @@ msgid "" "headers." msgstr "" -#: gnu/packages/web.scm:2919 +#: gnu/packages/web.scm:2920 msgid "" "@code{CGI::FormBuilder} provides an easy way to generate and process CGI\n" "form-based applications." msgstr "" -#: gnu/packages/web.scm:2946 +#: gnu/packages/web.scm:2947 msgid "" "@code{CGI::Session} provides modular session management system across\n" "HTTP requests." msgstr "" -#: gnu/packages/web.scm:2967 +#: gnu/packages/web.scm:2968 msgid "" "CGI::Simple provides a relatively lightweight drop in\n" "replacement for CGI.pm. It shares an identical OO interface to CGI.pm for\n" "parameter parsing, file upload, cookie handling and header generation." msgstr "" -#: gnu/packages/web.scm:2989 +#: gnu/packages/web.scm:2990 msgid "" "This is a module for building structured data from CGI\n" "inputs, in a manner reminiscent of how PHP does." msgstr "" -#: gnu/packages/web.scm:3012 +#: gnu/packages/web.scm:3013 msgid "" "This module provides functions that deal with the date\n" "formats used by the HTTP protocol." msgstr "" -#: gnu/packages/web.scm:3033 +#: gnu/packages/web.scm:3034 msgid "" "Digest::MD5::File is a Perl extension for getting MD5 sums\n" "for files and urls." msgstr "" -#: gnu/packages/web.scm:3053 +#: gnu/packages/web.scm:3054 msgid "" "The POSIX locale system is used to specify both the language\n" "conventions requested by the user and the preferred character set to\n" @@ -21110,66 +21352,66 @@ msgid "" "with Encode::decode(locale => $string)." msgstr "" -#: gnu/packages/web.scm:3086 +#: gnu/packages/web.scm:3087 msgid "" "@code{Feed::Find} implements feed auto-discovery for finding\n" "syndication feeds, given a URI. It will discover the following feed formats:\n" "RSS 0.91, RSS 1.0, RSS 2.0, Atom." msgstr "" -#: gnu/packages/web.scm:3109 +#: gnu/packages/web.scm:3110 msgid "" "The File::Listing module exports a single function called parse_dir(),\n" "which can be used to parse directory listings." msgstr "" -#: gnu/packages/web.scm:3142 +#: gnu/packages/web.scm:3143 msgid "" "Finance::Quote gets stock quotes from various internet sources, including\n" "Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange." msgstr "" -#: gnu/packages/web.scm:3165 +#: gnu/packages/web.scm:3166 msgid "" "This is a Perl extension for using GSSAPI C bindings as\n" "described in RFC 2744." msgstr "" -#: gnu/packages/web.scm:3187 +#: gnu/packages/web.scm:3188 msgid "" "HTML::Element::Extended is a Perl extension for manipulating a table\n" "composed of HTML::Element style components." msgstr "" -#: gnu/packages/web.scm:3208 +#: gnu/packages/web.scm:3209 msgid "" "Objects of the HTML::Form class represents a single HTML\n" "
...
instance." msgstr "" -#: gnu/packages/web.scm:3241 +#: gnu/packages/web.scm:3242 msgid "@code{HTML::Scrubber} Perl extension for scrubbing/sanitizing HTML." msgstr "" -#: gnu/packages/web.scm:3260 +#: gnu/packages/web.scm:3261 msgid "" "HTML::Lint is a pure-Perl HTML parser and checker for\n" "syntactic legitmacy." msgstr "" -#: gnu/packages/web.scm:3282 +#: gnu/packages/web.scm:3283 msgid "" "HTML::TableExtract is a Perl module for extracting the content contained\n" "in tables within an HTML document, either as text or encoded element trees." msgstr "" -#: gnu/packages/web.scm:3305 +#: gnu/packages/web.scm:3306 msgid "" "This distribution contains a suite of modules for\n" "representing, creating, and extracting information from HTML syntax trees." msgstr "" -#: gnu/packages/web.scm:3327 +#: gnu/packages/web.scm:3328 msgid "" "Objects of the HTML::Parser class will recognize markup and separate\n" "it from plain text (alias data content) in HTML documents. As different\n" @@ -21177,13 +21419,13 @@ msgid "" "are invoked." msgstr "" -#: gnu/packages/web.scm:3349 +#: gnu/packages/web.scm:3350 msgid "" "The HTML::Tagset module contains several data tables useful in various\n" "kinds of HTML parsing operations." msgstr "" -#: gnu/packages/web.scm:3370 +#: gnu/packages/web.scm:3371 msgid "" "This module attempts to make using HTML templates simple and natural.\n" "It extends standard HTML with a few new HTML-esque tags: @code{},\n" @@ -21194,40 +21436,40 @@ msgid "" "you to separate design from the data." msgstr "" -#: gnu/packages/web.scm:3398 +#: gnu/packages/web.scm:3399 msgid "" "HTTP::Body parses chunks of HTTP POST data and supports\n" "application/octet-stream, application/json, application/x-www-form-urlencoded,\n" "and multipart/form-data." msgstr "" -#: gnu/packages/web.scm:3421 +#: gnu/packages/web.scm:3422 msgid "" "This module implements a minimalist HTTP user agent cookie\n" "jar in conformance with RFC 6265 ." msgstr "" -#: gnu/packages/web.scm:3443 +#: gnu/packages/web.scm:3444 msgid "" "The HTTP::Cookies class is for objects that represent a cookie jar,\n" "that is, a database of all the HTTP cookies that a given LWP::UserAgent\n" "object knows about." msgstr "" -#: gnu/packages/web.scm:3466 +#: gnu/packages/web.scm:3467 msgid "" "Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen\n" "on a socket for incoming requests. The HTTP::Daemon is a subclass of\n" "IO::Socket::INET, so you can perform socket operations directly on it too." msgstr "" -#: gnu/packages/web.scm:3487 +#: gnu/packages/web.scm:3488 msgid "" "The HTTP::Date module provides functions that deal with date formats\n" "used by the HTTP protocol (and then some more)." msgstr "" -#: gnu/packages/web.scm:3508 +#: gnu/packages/web.scm:3509 msgid "" "@code{HTTP::Lite} is a stand-alone lightweight\n" "HTTP/1.1 implementation for perl. It is intended for use in\n" @@ -21241,11 +21483,11 @@ msgid "" "processing of request data as it arrives." msgstr "" -#: gnu/packages/web.scm:3541 +#: gnu/packages/web.scm:3542 msgid "An HTTP::Message object contains some headers and a content body." msgstr "" -#: gnu/packages/web.scm:3562 +#: gnu/packages/web.scm:3563 msgid "" "The HTTP::Negotiate module provides a complete implementation of the\n" "HTTP content negotiation algorithm specified in\n" @@ -21255,7 +21497,7 @@ msgid "" "fields in the request." msgstr "" -#: gnu/packages/web.scm:3587 +#: gnu/packages/web.scm:3588 msgid "" "This is an HTTP request parser. It takes chunks of text as\n" "received and returns a @code{hint} as to what is required, or returns the\n" @@ -21263,33 +21505,33 @@ msgid "" "supported." msgstr "" -#: gnu/packages/web.scm:3610 +#: gnu/packages/web.scm:3611 msgid "" "HTTP::Parser::XS is a fast, primitive HTTP request/response\n" "parser." msgstr "" -#: gnu/packages/web.scm:3631 +#: gnu/packages/web.scm:3632 msgid "" "This module provides a convenient way to set up a CGI\n" "environment from an HTTP::Request." msgstr "" -#: gnu/packages/web.scm:3665 +#: gnu/packages/web.scm:3666 msgid "" "HTTP::Server::Simple is a simple standalone HTTP daemon with\n" "no non-core module dependencies. It can be used for building a standalone\n" "http-based UI to your existing tools." msgstr "" -#: gnu/packages/web.scm:3688 +#: gnu/packages/web.scm:3689 msgid "" "This is a very simple HTTP/1.1 client, designed for doing\n" "simple requests without the overhead of a large framework like LWP::UserAgent.\n" "It supports proxies and redirection. It also correctly resumes after EINTR." msgstr "" -#: gnu/packages/web.scm:3713 +#: gnu/packages/web.scm:3714 msgid "" "@code{HTTP::Tinyish} is a wrapper module for @acronym{LWP,libwww-perl},\n" "@code{HTTP::Tiny}, curl and wget.\n" @@ -21297,20 +21539,20 @@ msgid "" "It provides an API compatible to HTTP::Tiny." msgstr "" -#: gnu/packages/web.scm:3735 +#: gnu/packages/web.scm:3736 msgid "" "IO::HTML provides an easy way to open a file containing HTML while\n" "automatically determining its encoding. It uses the HTML5 encoding sniffing\n" "algorithm specified in section 8.2.2.1 of the draft standard." msgstr "" -#: gnu/packages/web.scm:3755 +#: gnu/packages/web.scm:3756 msgid "" "This module provides a protocol-independent way to use IPv4\n" "and IPv6 sockets, intended as a replacement for IO::Socket::INET." msgstr "" -#: gnu/packages/web.scm:3777 +#: gnu/packages/web.scm:3778 msgid "" "IO::Socket::SSL makes using SSL/TLS much easier by wrapping the\n" "necessary functionality into the familiar IO::Socket interface and providing\n" @@ -21319,7 +21561,7 @@ msgid "" "select or poll." msgstr "" -#: gnu/packages/web.scm:3816 +#: gnu/packages/web.scm:3817 msgid "" "The libwww-perl collection is a set of Perl modules which provides a\n" "simple and consistent application programming interface to the\n" @@ -21329,7 +21571,7 @@ msgid "" "help you implement simple HTTP servers." msgstr "" -#: gnu/packages/web.scm:3844 +#: gnu/packages/web.scm:3845 msgid "" "This module attempts to answer, as accurately as it can, one\n" "of the nastiest technical questions there is: am I on the internet?\n" @@ -21339,7 +21581,7 @@ msgid "" "not have DNS. We might not have a network card at all!" msgstr "" -#: gnu/packages/web.scm:3870 +#: gnu/packages/web.scm:3871 #, scheme-format msgid "" "The LWP::MediaTypes module provides functions for handling media (also\n" @@ -21348,20 +21590,20 @@ msgid "" "exists it is used instead." msgstr "" -#: gnu/packages/web.scm:3895 +#: gnu/packages/web.scm:3896 msgid "" "The LWP::Protocol::https module provides support for using\n" "https schemed URLs with LWP." msgstr "" -#: gnu/packages/web.scm:3916 +#: gnu/packages/web.scm:3917 msgid "" "LWP::UserAgent::Cached is an LWP::UserAgent subclass with\n" "cache support. It returns responses from the local file system, if available,\n" "instead of making an HTTP request." msgstr "" -#: gnu/packages/web.scm:3938 +#: gnu/packages/web.scm:3939 msgid "" "LWP::UserAgent::Determined works just like LWP::UserAgent,\n" "except that when you use it to get a web page but run into a\n" @@ -21369,7 +21611,7 @@ msgid "" "and retry a few times." msgstr "" -#: gnu/packages/web.scm:3965 +#: gnu/packages/web.scm:3966 msgid "" "@code{LWPx::ParanoidAgent} is a class subclassing\n" "@code{LWP::UserAgent} but paranoid against attackers. Its purpose is\n" @@ -21379,11 +21621,11 @@ msgid "" "is limited to http and https." msgstr "" -#: gnu/packages/web.scm:4011 +#: gnu/packages/web.scm:4012 msgid "This module provides a Perlish interface to Amazon S3." msgstr "" -#: gnu/packages/web.scm:4032 +#: gnu/packages/web.scm:4033 msgid "" "The Net::HTTP class is a low-level HTTP client. An instance of the\n" "Net::HTTP class represents a connection to an HTTP server. The HTTP protocol\n" @@ -21391,7 +21633,7 @@ msgid "" "HTTP/1.1." msgstr "" -#: gnu/packages/web.scm:4053 +#: gnu/packages/web.scm:4054 msgid "" "Net::Server is an extensible, generic Perl server engine.\n" "It attempts to be a generic server as in Net::Daemon and NetServer::Generic.\n" @@ -21405,11 +21647,11 @@ msgid "" "or to multiple server ports." msgstr "" -#: gnu/packages/web.scm:4082 +#: gnu/packages/web.scm:4083 msgid "SSL support for Net::SMTP." msgstr "" -#: gnu/packages/web.scm:4116 +#: gnu/packages/web.scm:4117 msgid "" "Plack is a set of tools for using the PSGI stack. It\n" "contains middleware components, a reference server, and utilities for Web\n" @@ -21417,7 +21659,7 @@ msgid "" "WSGI." msgstr "" -#: gnu/packages/web.scm:4143 +#: gnu/packages/web.scm:4144 msgid "" "Plack::Middleware::Deflater is a middleware to encode your response body\n" "in gzip or deflate, based on \"Accept-Encoding\" HTTP request header. It\n" @@ -21426,13 +21668,13 @@ msgid "" "servers." msgstr "" -#: gnu/packages/web.scm:4170 +#: gnu/packages/web.scm:4171 msgid "" "This module sets the body in redirect response, if it's not\n" "already set." msgstr "" -#: gnu/packages/web.scm:4193 +#: gnu/packages/web.scm:4194 msgid "" "This middleware allows for POST requests that pretend to be\n" "something else: by adding either a header named X-HTTP-Method-Override to the\n" @@ -21440,44 +21682,44 @@ msgid "" "can say what method it actually meant." msgstr "" -#: gnu/packages/web.scm:4217 +#: gnu/packages/web.scm:4218 msgid "" "This module removes the body in an HTTP response if it's not\n" "required." msgstr "" -#: gnu/packages/web.scm:4240 +#: gnu/packages/web.scm:4241 msgid "" "Plack::Middleware::ReverseProxy resets some HTTP headers,\n" "which are changed by reverse-proxy. You can specify the reverse proxy address\n" "and stop fake requests using @code{enable_if} directive in your app.psgi." msgstr "" -#: gnu/packages/web.scm:4261 +#: gnu/packages/web.scm:4262 msgid "" "This module allows your to run your Plack::Test tests\n" "against an external server instead of just against a local application through\n" "either mocked HTTP or a locally spawned server." msgstr "" -#: gnu/packages/web.scm:4283 +#: gnu/packages/web.scm:4284 msgid "Test::TCP is test utilities for TCP/IP programs." msgstr "" -#: gnu/packages/web.scm:4308 +#: gnu/packages/web.scm:4309 msgid "" "Test::WWW::Mechanize is a subclass of the Perl module\n" "WWW::Mechanize that incorporates features for web application testing." msgstr "" -#: gnu/packages/web.scm:4341 +#: gnu/packages/web.scm:4342 msgid "" "The Test::WWW::Mechanize::Catalyst module meshes the\n" "Test::WWW:Mechanize module and the Catalyst web application framework to allow\n" "testing of Catalyst applications without needing to start up a web server." msgstr "" -#: gnu/packages/web.scm:4365 +#: gnu/packages/web.scm:4366 msgid "" "PSGI is a specification to decouple web server environments\n" "from web application framework code. Test::WWW::Mechanize is a subclass of\n" @@ -21486,21 +21728,21 @@ msgid "" "applications." msgstr "" -#: gnu/packages/web.scm:4390 +#: gnu/packages/web.scm:4391 msgid "" "The URI module implements the URI class. Objects of this class\n" "represent \"Uniform Resource Identifier references\" as specified in RFC 2396\n" "and updated by RFC 2732." msgstr "" -#: gnu/packages/web.scm:4413 +#: gnu/packages/web.scm:4414 msgid "" "@code{URI::Fetch} is a smart client for fetching HTTP pages,\n" "notably syndication feeds (RSS, Atom, and others), in an intelligent, bandwidth-\n" "and time-saving way." msgstr "" -#: gnu/packages/web.scm:4437 +#: gnu/packages/web.scm:4438 msgid "" "This module finds URIs and URLs (according to what URI.pm\n" "considers a URI) in plain text. It only finds URIs which include a\n" @@ -21508,37 +21750,37 @@ msgid "" "URI::Find::Schemeless. For a command-line interface, urifind is provided." msgstr "" -#: gnu/packages/web.scm:4460 +#: gnu/packages/web.scm:4461 msgid "" "With this module, the URI package provides the same set of\n" "methods for WebSocket URIs as it does for HTTP URIs." msgstr "" -#: gnu/packages/web.scm:4483 +#: gnu/packages/web.scm:4484 msgid "" "This perl module provides a wrapper around URI templates as described in\n" "RFC 6570." msgstr "" -#: gnu/packages/web.scm:4517 +#: gnu/packages/web.scm:4518 msgid "" "This is a Perl extension interface for the libcurl file downloading\n" "library." msgstr "" -#: gnu/packages/web.scm:4548 +#: gnu/packages/web.scm:4549 msgid "" "WWW::Mechanize is a Perl module for stateful programmatic\n" "web browsing, used for automating interaction with websites." msgstr "" -#: gnu/packages/web.scm:4586 +#: gnu/packages/web.scm:4587 msgid "" "@code{WWW::OpenSearch} is a module to search @url{A9's OpenSearch,\n" "http://opensearch.a9.com} compatible search engines." msgstr "" -#: gnu/packages/web.scm:4608 +#: gnu/packages/web.scm:4609 msgid "" "The WWW::RobotRules module parses /robots.txt files as specified in\n" "\"A Standard for Robot Exclusion\", at\n" @@ -21547,13 +21789,13 @@ msgid "" "their web site." msgstr "" -#: gnu/packages/web.scm:4635 gnu/packages/web.scm:4659 +#: gnu/packages/web.scm:4640 gnu/packages/web.scm:4664 msgid "" "Universal feed parser which handles RSS 0.9x, RSS 1.0, RSS 2.0,\n" "CDF, Atom 0.3, and Atom 1.0 feeds." msgstr "" -#: gnu/packages/web.scm:4756 +#: gnu/packages/web.scm:4761 msgid "" "The Guix Data Service stores data about GNU Guix, and provides this\n" "through a web interface. It supports listening to the guix-commits mailing\n" @@ -21561,20 +21803,20 @@ msgid "" "PostgreSQL database." msgstr "" -#: gnu/packages/web.scm:4785 +#: gnu/packages/web.scm:4790 msgid "" "Gumbo is an implementation of the HTML5 parsing algorithm implemented as\n" "a pure C99 library." msgstr "" -#: gnu/packages/web.scm:4858 +#: gnu/packages/web.scm:4863 msgid "" "uWSGI presents a complete stack for networked/clustered web applications,\n" "implementing message/object passing, caching, RPC and process management.\n" "It uses the uwsgi protocol for all the networking/interprocess communications." msgstr "" -#: gnu/packages/web.scm:4891 +#: gnu/packages/web.scm:4896 msgid "" "jq is like sed for JSON data – you can use it to slice and\n" "filter and map and transform structured data with the same ease that sed, awk,\n" @@ -21584,7 +21826,7 @@ msgid "" "you'd expect." msgstr "" -#: gnu/packages/web.scm:4920 +#: gnu/packages/web.scm:4925 msgid "" "@command{pup} is a command line tool for processing HTML. It reads\n" "from stdin, prints to stdout, and allows the user to filter parts of the page\n" @@ -21592,66 +21834,66 @@ msgid "" "fast and flexible way of exploring HTML from the terminal." msgstr "" -#: gnu/packages/web.scm:4953 +#: gnu/packages/web.scm:4958 msgid "" "Uhttpmock is a project for mocking web service APIs which use HTTP or\n" "HTTPS. It provides a library, libuhttpmock, which implements recording and\n" "playback of HTTP request/response traces." msgstr "" -#: gnu/packages/web.scm:4989 +#: gnu/packages/web.scm:4994 msgid "" "Woof (Web Offer One File) is a small simple web server that\n" "can easily be invoked on a single file. Your partner can access the file with\n" "tools they trust (e.g. wget)." msgstr "" -#: gnu/packages/web.scm:5017 +#: gnu/packages/web.scm:5022 msgid "" "This package provides the shared build system for Netsurf project\n" "libraries." msgstr "" -#: gnu/packages/web.scm:5052 +#: gnu/packages/web.scm:5057 msgid "" "LibParserUtils is a library for building efficient parsers, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5082 +#: gnu/packages/web.scm:5087 msgid "" "Hubbub is an HTML5 compliant parsing library, written in C, which can\n" "parse both valid and invalid web content. It is developed as part of the\n" "NetSurf project." msgstr "" -#: gnu/packages/web.scm:5203 +#: gnu/packages/web.scm:5208 msgid "" "Ikiwiki is a wiki compiler, capable of generating a static set of web\n" "pages, but also incorporating dynamic features like a web based editor and\n" "commenting." msgstr "" -#: gnu/packages/web.scm:5227 +#: gnu/packages/web.scm:5232 msgid "" "LibWapcaplet provides a reference counted string internment system\n" "designed to store small strings and allow rapid comparison of them. It is\n" "developed as part of the Netsurf project." msgstr "" -#: gnu/packages/web.scm:5259 +#: gnu/packages/web.scm:5264 msgid "" "LibCSS is a CSS (Cascading Style Sheet) parser and selection engine,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5294 +#: gnu/packages/web.scm:5299 msgid "" "LibDOM is an implementation of the W3C DOM, written in C. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5321 +#: gnu/packages/web.scm:5326 msgid "" "Libsvgtiny takes some SVG as input and returns a list of paths and texts\n" "which can be rendered easily, as defined in\n" @@ -21659,65 +21901,65 @@ msgid "" "project." msgstr "" -#: gnu/packages/web.scm:5346 +#: gnu/packages/web.scm:5351 msgid "" "Libnsbmp is a decoding library for BMP and ICO image file formats,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5369 +#: gnu/packages/web.scm:5374 msgid "" "Libnsgif is a decoding library for the GIF image file format, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5396 +#: gnu/packages/web.scm:5401 msgid "" "Libnslog provides a category-based logging library which supports\n" "complex logging filters, multiple log levels, and provides context through to\n" "client applications. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5420 +#: gnu/packages/web.scm:5425 msgid "" "Libnsutils provides a small number of useful utility routines. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5443 +#: gnu/packages/web.scm:5448 msgid "" "Libnspsl is a library to generate a static code representation of the\n" "Public Suffix List. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5469 +#: gnu/packages/web.scm:5474 msgid "" "@code{nsgenbind} is a tool to generate JavaScript to DOM bindings from\n" "w3c webidl files and a binding configuration file." msgstr "" -#: gnu/packages/web.scm:5592 +#: gnu/packages/web.scm:5597 msgid "" "NetSurf is a lightweight web browser that has its own layout and\n" "rendering engine entirely written from scratch. It is small and capable of\n" "handling many of the web standards in use today." msgstr "" -#: gnu/packages/web.scm:5631 +#: gnu/packages/web.scm:5636 msgid "" "Surfraw (Shell Users' Revolutionary Front Rage Against the Web)\n" "provides a unix command line interface to a variety of popular www search engines\n" "and similar services." msgstr "" -#: gnu/packages/web.scm:5664 +#: gnu/packages/web.scm:5669 msgid "" "darkhttpd is a simple static web server. It is\n" "standalone and does not need inetd or ucspi-tcp. It does not need any\n" "config files---you only have to specify the www root." msgstr "" -#: gnu/packages/web.scm:5695 +#: gnu/packages/web.scm:5700 msgid "" "GoAccess is a real-time web log analyzer and interactive viewer that\n" "runs in a terminal or through your browser. It provides fast and valuable\n" @@ -21725,7 +21967,7 @@ msgid "" "on the fly." msgstr "" -#: gnu/packages/web.scm:5749 +#: gnu/packages/web.scm:5754 msgid "" "Hitch is a performant TLS proxy based on @code{libev}. It terminates\n" "SSL/TLS connections and forwards the unencrypted traffic to a backend such\n" @@ -21733,7 +21975,7 @@ msgid "" "multicore machines." msgstr "" -#: gnu/packages/web.scm:5786 +#: gnu/packages/web.scm:5791 msgid "" "httptunnel creates a bidirectional virtual data connection\n" "tunnelled through HTTP (HyperText Transfer Protocol) requests. This can be\n" @@ -21751,7 +21993,7 @@ msgid "" "deployments." msgstr "" -#: gnu/packages/web.scm:5915 +#: gnu/packages/web.scm:5912 msgid "" "Varnish is a high-performance HTTP accelerator. It acts as a caching\n" "reverse proxy and load balancer. You install it in front of any server that\n" @@ -21759,14 +22001,14 @@ msgid "" "configuration language." msgstr "" -#: gnu/packages/web.scm:5949 +#: gnu/packages/web.scm:5946 msgid "" "This package provides a collection of modules (@dfn{vmods}) for the Varnish\n" "cache server, extending the @acronym{VCL, Varnish Configuration Language} with\n" "additional capabilities." msgstr "" -#: gnu/packages/web.scm:5976 +#: gnu/packages/web.scm:5973 msgid "" "@code{xinetd}, a more secure replacement for @code{inetd},\n" "listens for incoming requests over a network and launches the appropriate\n" @@ -21775,7 +22017,7 @@ msgid "" "used to start services with both privileged and non-privileged port numbers." msgstr "" -#: gnu/packages/web.scm:6023 +#: gnu/packages/web.scm:6020 msgid "" "Tidy is a console application which corrects and cleans up\n" "HTML and XML documents by fixing markup errors and upgrading\n" @@ -21786,14 +22028,14 @@ msgid "" "functions of Tidy." msgstr "" -#: gnu/packages/web.scm:6085 +#: gnu/packages/web.scm:6082 msgid "" "Hiawatha has been written with security in mind.\n" "Features include the ability to stop SQL injections, XSS and CSRF attacks and\n" "exploit attempts." msgstr "" -#: gnu/packages/web.scm:6107 +#: gnu/packages/web.scm:6104 msgid "" "Testing an HTTP Library can become difficult sometimes.\n" "@code{RequestBin} is fantastic for testing POST requests, but doesn't let you control the\n" @@ -21801,14 +22043,14 @@ msgid "" "JSON-encoded." msgstr "" -#: gnu/packages/web.scm:6132 +#: gnu/packages/web.scm:6129 msgid "" "@code{Pytest-httpbin} creates a @code{pytest} fixture that is dependency-injected\n" "into your tests. It automatically starts up a HTTP server in a separate thread running\n" "@code{httpbin} and provides your test with the URL in the fixture." msgstr "" -#: gnu/packages/web.scm:6199 +#: gnu/packages/web.scm:6196 msgid "" "This is a parser for HTTP messages written in C. It\n" "parses both requests and responses. The parser is designed to be used in\n" @@ -21818,40 +22060,40 @@ msgid "" "message stream (in a web server that is per connection)." msgstr "" -#: gnu/packages/web.scm:6236 +#: gnu/packages/web.scm:6233 msgid "" "@code{httpretty} is a helper for faking web requests,\n" "inspired by Ruby's @code{fakeweb}." msgstr "" -#: gnu/packages/web.scm:6254 +#: gnu/packages/web.scm:6251 msgid "" "jo is a command-line utility to create JSON objects or\n" "arrays. It creates a JSON string on stdout from words provided as\n" "command-line arguments or read from stdin." msgstr "" -#: gnu/packages/web.scm:6313 +#: gnu/packages/web.scm:6310 msgid "" "@code{ia} is a command-line tool for using\n" "@url{archive.org} from the command-line. It also implements the\n" "internetarchive python module for programmatic access to archive.org." msgstr "" -#: gnu/packages/web.scm:6364 +#: gnu/packages/web.scm:6361 msgid "" "@code{clf} is a command line tool for searching code\n" "snippets on @url{https://commandlinefu.com}." msgstr "" -#: gnu/packages/web.scm:6402 +#: gnu/packages/web.scm:6399 msgid "" "rss-bridge generates Atom feeds for social networking\n" "websites lacking feeds. Supported websites include Facebook, Twitter,\n" "Instagram and YouTube." msgstr "" -#: gnu/packages/web.scm:6440 +#: gnu/packages/web.scm:6437 msgid "" "LinkChecker is a website validator. It checks for broken\n" "links in websites. It is recursive and multithreaded providing output in\n" @@ -21860,67 +22102,67 @@ msgid "" "file links." msgstr "" -#: gnu/packages/web.scm:6488 +#: gnu/packages/web.scm:6485 msgid "" "Castor is a graphical client for plain-text protocols written in\n" "Rust with GTK. It currently supports the Gemini, Gopher and Finger\n" "protocols." msgstr "" -#: gnu/packages/web.scm:6575 +#: gnu/packages/web.scm:6572 msgid "" "This package includes Clearsilver, the CGI kit and HTML templating\n" "system." msgstr "" -#: gnu/packages/web.scm:6594 +#: gnu/packages/web.scm:6591 msgid "" "Py-ubjson is a Python module providing an Universal Binary JSON\n" "encoder/decoder based on the draft-12 specification for UBJSON." msgstr "" -#: gnu/packages/web.scm:6689 +#: gnu/packages/web.scm:6686 msgid "" "Apache Tomcat is a free implementation of the Java\n" "Servlet, JavaServer Pages, Java Expression Language and Java WebSocket\n" "technologies." msgstr "" -#: gnu/packages/web.scm:6743 +#: gnu/packages/web.scm:6740 msgid "" "This package contains helper classes for testing the Jetty\n" "Web Server." msgstr "" -#: gnu/packages/web.scm:6802 +#: gnu/packages/web.scm:6799 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides utility classes." msgstr "" -#: gnu/packages/web.scm:6880 +#: gnu/packages/web.scm:6877 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides IO-related utility classes." msgstr "" -#: gnu/packages/web.scm:6925 +#: gnu/packages/web.scm:6922 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides HTTP-related utility classes." msgstr "" -#: gnu/packages/web.scm:6959 +#: gnu/packages/web.scm:6956 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides the JMX management." msgstr "" -#: gnu/packages/web.scm:7045 +#: gnu/packages/web.scm:7042 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21928,7 +22170,7 @@ msgid "" "artifact." msgstr "" -#: gnu/packages/web.scm:7088 +#: gnu/packages/web.scm:7085 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21936,7 +22178,7 @@ msgid "" "infrastructure" msgstr "" -#: gnu/packages/web.scm:7144 +#: gnu/packages/web.scm:7141 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21944,14 +22186,14 @@ msgid "" "container." msgstr "" -#: gnu/packages/web.scm:7308 +#: gnu/packages/web.scm:7305 msgid "" "Jsoup is a Java library for working with real-world HTML. It\n" "provides a very convenient API for extracting and manipulating data, using the\n" "best of DOM, CSS, and jQuery-like methods." msgstr "" -#: gnu/packages/web.scm:7337 +#: gnu/packages/web.scm:7334 msgid "" "Signpost is the easy and intuitive solution for signing\n" "HTTP messages on the Java platform in conformance with the OAuth Core 1.0a\n" @@ -21959,7 +22201,7 @@ msgid "" "combine it with different HTTP messaging layers." msgstr "" -#: gnu/packages/web.scm:7360 +#: gnu/packages/web.scm:7357 msgid "" "Tidyp is a program that can validate your HTML, as well as\n" "modify it to be more clean and standard. tidyp does not validate HTML 5.\n" @@ -21969,14 +22211,14 @@ msgid "" "based on this library, allowing Perl programmers to easily validate HTML." msgstr "" -#: gnu/packages/web.scm:7401 +#: gnu/packages/web.scm:7398 msgid "" "@code{HTML::Tidy} is an HTML checker in a handy dandy\n" "object. It's meant as a replacement for @code{HTML::Lint}, which is written\n" "in Perl but is not nearly as capable as @code{HTML::Tidy}." msgstr "" -#: gnu/packages/web.scm:7430 +#: gnu/packages/web.scm:7427 msgid "" "Geomyidae is a server for distributed hypertext protocol Gopher. Its\n" "features include:\n" @@ -21990,14 +22232,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/web.scm:7478 +#: gnu/packages/web.scm:7475 msgid "" "Cat avatar generator is a generator of cat pictures optimised\n" "to generate random avatars, or defined avatar from a \"seed\". This is a\n" "derivation by David Revoy from the original MonsterID by Andreas Gohr." msgstr "" -#: gnu/packages/web.scm:7548 +#: gnu/packages/web.scm:7545 msgid "" "nghttp2 implements the Hypertext Transfer Protocol, version\n" "2 (@dfn{HTTP/2}).\n" @@ -22023,14 +22265,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7647 +#: gnu/packages/web.scm:7644 msgid "" "Hpcguix-web provides a web interface to the list of packages\n" "provided by Guix. The list of packages is searchable and provides\n" "instructions on how to use Guix in a shared HPC environment." msgstr "" -#: gnu/packages/web.scm:7668 +#: gnu/packages/web.scm:7665 msgid "" "HTTrack allows you to download a World Wide Web site from\n" "the Internet to a local directory, building recursively all directories,\n" @@ -22044,7 +22286,7 @@ msgid "" "HTTrack is fully configurable, and has an integrated help system." msgstr "" -#: gnu/packages/web.scm:7703 +#: gnu/packages/web.scm:7700 msgid "" "buku is a powerful bookmark manager written in Python3 and SQLite3.\n" "@command{buku} can auto-import bookmarks from your browser and present them\n" @@ -22053,7 +22295,7 @@ msgid "" "@command{bukuserver}." msgstr "" -#: gnu/packages/web.scm:7724 +#: gnu/packages/web.scm:7721 msgid "" "Anonip masks the last bits of IPv4 and IPv6 addresses in log files.\n" "That way most of the relevant information is preserved, while the IP address\n" @@ -22068,7 +22310,7 @@ msgid "" "Anonip can also be uses as a Python module in your own Python application." msgstr "" -#: gnu/packages/web.scm:7758 +#: gnu/packages/web.scm:7755 msgid "" "Poussetaches (which literally means \"push tasks\" in\n" "French) is a lightweight asynchronous task execution service that aims to\n" @@ -22080,7 +22322,7 @@ msgid "" "returned." msgstr "" -#: gnu/packages/web.scm:7783 +#: gnu/packages/web.scm:7780 msgid "" "htmlcxx is a simple non-validating CSS1 and HTML parser for\n" "C++. Although there are several other HTML parsers available, htmlcxx has some\n" @@ -22098,7 +22340,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:7827 +#: gnu/packages/web.scm:7824 msgid "" "libRocket is a C++ user interface package based on the HTML\n" "and CSS standards. libRocket uses the open standards XHTML1.0 and\n" @@ -22115,11 +22357,11 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7869 +#: gnu/packages/web.scm:7866 msgid "gmnisrv is a simple Gemini protocol server written in C." msgstr "" -#: gnu/packages/web.scm:7900 +#: gnu/packages/web.scm:7898 msgid "" "The openZIM project proposes offline storage solutions for\n" "content coming from the Web. The zimlib is the standard implementation of the\n" @@ -22151,14 +22393,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:8081 +#: gnu/packages/web.scm:8078 msgid "" "uriparser is a strictly RFC 3986 compliant URI parsing and\n" "handling library written in C89 (\"ANSI C\"). uriparser is fast and supports\n" "Unicode." msgstr "" -#: gnu/packages/web.scm:8115 +#: gnu/packages/web.scm:8112 msgid "" "Quark is an extremely small and simple HTTP GET/HEAD only\n" "web server for static content. TLS is not natively supported and should be\n" @@ -22328,53 +22570,53 @@ msgid "" "Enhancement}." msgstr "" -#: gnu/services/base.scm:276 +#: gnu/services/base.scm:279 msgid "" "Populate the @file{/etc/fstab} based on the given file\n" "system objects." msgstr "" -#: gnu/services/base.scm:314 +#: gnu/services/base.scm:317 msgid "" "Take care of syncing the root file\n" "system and of remounting it read-only when the system shuts down." msgstr "" -#: gnu/services/base.scm:481 +#: gnu/services/base.scm:484 msgid "" "Provide Shepherd services to mount and unmount the given\n" "file systems, as well as corresponding @file{/etc/fstab} entries." msgstr "" -#: gnu/services/base.scm:579 +#: gnu/services/base.scm:582 msgid "" "Seed the @file{/dev/urandom} pseudo-random number\n" "generator (RNG) with the value recorded when the system was last shut\n" "down." msgstr "" -#: gnu/services/base.scm:611 +#: gnu/services/base.scm:614 msgid "" "Run the @command{rngd} random number generation daemon to\n" "supply entropy to the kernel's pool." msgstr "" -#: gnu/services/base.scm:640 +#: gnu/services/base.scm:643 msgid "Initialize the machine's host name." msgstr "" -#: gnu/services/base.scm:670 +#: gnu/services/base.scm:673 msgid "Ensure the Linux virtual terminals run in UTF-8 mode." msgstr "" -#: gnu/services/base.scm:683 +#: gnu/services/base.scm:686 msgid "" "@emph{This service is deprecated in favor of the\n" "@code{keyboard-layout} field of @code{operating-system}.} Load the given list\n" "of console keymaps with @command{loadkeys}." msgstr "" -#: gnu/services/base.scm:743 +#: gnu/services/base.scm:746 msgid "" "Install the given fonts on the specified ttys (fonts are per\n" "virtual console on GNU/Linux). The value of this service is a list of\n" @@ -22392,66 +22634,66 @@ msgid "" "@end example\n" msgstr "" -#: gnu/services/base.scm:795 +#: gnu/services/base.scm:798 msgid "" "Provide a console log-in service as specified by its\n" "configuration value, a @code{login-configuration} object." msgstr "" -#: gnu/services/base.scm:1063 +#: gnu/services/base.scm:1066 msgid "" "Provide console login using the @command{agetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1128 +#: gnu/services/base.scm:1131 msgid "" "Provide console login using the @command{mingetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1345 +#: gnu/services/base.scm:1348 msgid "" "Runs libc's @dfn{name service cache daemon} (nscd) with the\n" "given configuration---an @code{} object. @xref{Name\n" "Service Switch}, for an example." msgstr "" -#: gnu/services/base.scm:1384 +#: gnu/services/base.scm:1387 msgid "" "Run the syslog daemon, @command{syslogd}, which is\n" "responsible for logging system messages." msgstr "" -#: gnu/services/base.scm:1448 +#: gnu/services/base.scm:1451 msgid "" "Install the specified resource usage limits by populating\n" "@file{/etc/security/limits.conf} and using the @code{pam_limits}\n" "authentication module." msgstr "" -#: gnu/services/base.scm:1794 +#: gnu/services/base.scm:1804 msgid "Run the build daemon of GNU@tie{}Guix, aka. @command{guix-daemon}." msgstr "" -#: gnu/services/base.scm:1944 +#: gnu/services/base.scm:1961 msgid "" "Add a Shepherd service running @command{guix publish}, a\n" "command that allows you to share pre-built binaries with others over HTTP." msgstr "" -#: gnu/services/base.scm:2150 +#: gnu/services/base.scm:2167 msgid "" "Run @command{udev}, which populates the @file{/dev}\n" "directory dynamically. Get extra rules from the packages listed in the\n" "@code{rules} field of its value, @code{udev-configuration} object." msgstr "" -#: gnu/services/base.scm:2267 +#: gnu/services/base.scm:2284 msgid "Turn on the virtual memory swap area." msgstr "" -#: gnu/services/base.scm:2309 +#: gnu/services/base.scm:2326 msgid "" "Run GPM, the general-purpose mouse daemon, with the given\n" "command-line options. GPM allows users to use the mouse in the console,\n" @@ -22459,33 +22701,33 @@ msgid "" "@code{ps2} protocol, which works for both USB and PS/2 mice." msgstr "" -#: gnu/services/base.scm:2382 +#: gnu/services/base.scm:2399 msgid "" "Start the @command{kmscon} virtual terminal emulator for the\n" "Linux @dfn{kernel mode setting} (KMS)." msgstr "" -#: gnu/services/base.scm:2403 +#: gnu/services/base.scm:2416 #, scheme-format msgid "address '~a' lacks a network mask" msgstr "" -#: gnu/services/base.scm:2409 +#: gnu/services/base.scm:2422 #, scheme-format msgid "Write, say, @samp{\"~a/24\"} for a 24-bit network mask." msgstr "" -#: gnu/services/base.scm:2489 +#: gnu/services/base.scm:2502 #, scheme-format msgid "network links are currently ignored on GNU/Hurd~%" msgstr "" -#: gnu/services/base.scm:2514 +#: gnu/services/base.scm:2527 #, scheme-format msgid "ignoring network route for '~a'~%" msgstr "" -#: gnu/services/base.scm:2698 +#: gnu/services/base.scm:2711 msgid "" "Turn up the specified network interfaces upon startup,\n" "with the given IP address, gateway, netmask, and so on. The value for\n" diff --git a/po/packages/zh_CN.po b/po/packages/zh_CN.po index 8adfda474c..2fdc72669a 100644 --- a/po/packages/zh_CN.po +++ b/po/packages/zh_CN.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: guix-packages 0.14.0\n" "Report-Msgid-Bugs-To: bug-guix@gnu.org\n" -"POT-Creation-Date: 2022-01-08 15:18+0000\n" +"POT-Creation-Date: 2022-02-03 15:18+0000\n" "PO-Revision-Date: 2021-08-28 14:43+0000\n" "Last-Translator: Went He <1437061699@qq.com>\n" "Language-Team: Chinese (Simplified) \n" @@ -48,7 +48,7 @@ msgstr "" msgid "This package provides a dictionary for the GNU Aspell spell checker." msgstr "此软件包为 GNU Aspell 拼写检查器提供词典。" -#: gnu/packages/aspell.scm:445 gnu/packages/libreoffice.scm:845 +#: gnu/packages/aspell.scm:450 gnu/packages/libreoffice.scm:845 #: gnu/packages/libreoffice.scm:918 msgid "" "This package provides a dictionary for the Hunspell spell-checking\n" @@ -57,7 +57,7 @@ msgstr "" "此软件包为 Hunspell 拼写检查库\n" "提供词典。" -#: gnu/packages/aspell.scm:525 +#: gnu/packages/aspell.scm:530 msgid "" "Ispell is an interactive spell-checking tool supporting many\n" "European languages." @@ -65,7 +65,7 @@ msgstr "" "Ispell 是一款交互式拼写检查工具,\n" "支持多种欧洲语言。" -#: gnu/packages/audio.scm:197 +#: gnu/packages/audio.scm:198 msgid "" "OpenSLES is a royalty-free, cross-platform,\n" "hardware-accelerated audio API tuned for embedded systems. It provides a\n" @@ -76,7 +76,7 @@ msgid "" "promoting the market for advanced audio." msgstr "" -#: gnu/packages/audio.scm:233 +#: gnu/packages/audio.scm:234 msgid "" "WildMIDI is a simple software midi player which has a core\n" "softsynth library that can be use with other applications." @@ -84,25 +84,25 @@ msgstr "" "WildMIDI 是一款简单的软件 MIDI 播放器,\n" "其具有一个可被用于其他应用程序的核心软件合成器(softsynth) 库。" -#: gnu/packages/audio.scm:257 +#: gnu/packages/audio.scm:258 msgid "" "WebRTC-Audio-Processing library based on Google's\n" "implementation of WebRTC." msgstr "" -#: gnu/packages/audio.scm:277 +#: gnu/packages/audio.scm:278 msgid "" "VO-AACENC is the VisualOn implementation of Advanced Audio\n" "Coding (AAC) encoder." msgstr "" -#: gnu/packages/audio.scm:306 +#: gnu/packages/audio.scm:307 msgid "" "TinyALSA is a small library to interface with ALSA in the\n" "Linux kernel." msgstr "" -#: gnu/packages/audio.scm:329 +#: gnu/packages/audio.scm:330 msgid "" "Game-music-emu is a collection of video game music file emulators that\n" "support the following formats and systems:\n" @@ -128,43 +128,43 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/audio.scm:393 +#: gnu/packages/audio.scm:394 msgid "" "LibOpenMPT is a cross-platform C++ and C module playback\n" "library. It is based on the player code of the Open ModPlug Tracker project." msgstr "" -#: gnu/packages/audio.scm:424 +#: gnu/packages/audio.scm:425 msgid "" "LibOFA is an audio fingerprint library, created and provided\n" "by MusicIP." msgstr "" -#: gnu/packages/audio.scm:445 +#: gnu/packages/audio.scm:446 msgid "FAAC is an MPEG-4 and MPEG-2 AAC encoder." msgstr "" -#: gnu/packages/audio.scm:474 +#: gnu/packages/audio.scm:475 msgid "" "LibTiMidity is a MIDI to WAVE converter library that uses\n" "Gravis Ultrasound-compatible patch files to generate digital audio data from\n" "General MIDI files." msgstr "" -#: gnu/packages/audio.scm:499 +#: gnu/packages/audio.scm:500 msgid "" "VO-AMR is a library of VisualOn implementation of\n" "Adaptive Multi Rate Narrowband and Wideband (AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:518 +#: gnu/packages/audio.scm:519 msgid "" "OpenCore-AMR is a library of OpenCORE Framework\n" "implementation of Adaptive Multi Rate Narrowband and Wideband\n" "(AMR-NB and AMR-WB) speech codec." msgstr "" -#: gnu/packages/audio.scm:551 +#: gnu/packages/audio.scm:552 msgid "" "AlsaModularSynth is a digital implementation of a classical analog\n" "modular synthesizer system. It uses virtual control voltages to control the\n" @@ -173,7 +173,7 @@ msgid "" "Filter) modules follow the convention of 1V / Octave." msgstr "" -#: gnu/packages/audio.scm:588 +#: gnu/packages/audio.scm:589 msgid "" "aubio is a tool designed for the extraction of annotations from audio\n" "signals. Its features include segmenting a sound file before each of its\n" @@ -181,21 +181,21 @@ msgid "" "streams from live audio." msgstr "" -#: gnu/packages/audio.scm:719 +#: gnu/packages/audio.scm:720 msgid "" "Ardour is a multi-channel digital audio workstation, allowing users to\n" "record, edit, mix and master audio and MIDI projects. It is targeted at audio\n" "engineers, musicians, soundtrack editors and composers." msgstr "" -#: gnu/packages/audio.scm:833 +#: gnu/packages/audio.scm:853 msgid "" "Audacity is a multi-track audio editor designed for recording, playing\n" "and editing digital audio. It features digital effects and spectrum analysis\n" "tools." msgstr "" -#: gnu/packages/audio.scm:889 +#: gnu/packages/audio.scm:909 msgid "" "This is an open-source version of SGI's audiofile library.\n" "It provides a uniform programming interface for processing of audio data to\n" @@ -206,14 +206,14 @@ msgid "" "G.711 mu-law and A-law." msgstr "" -#: gnu/packages/audio.scm:931 +#: gnu/packages/audio.scm:951 msgid "" "Autotalent is a LADSPA plugin for real-time pitch-correction. Among its\n" "controls are allowable notes, strength of correction, LFO for vibrato and\n" "formant warp." msgstr "" -#: gnu/packages/audio.scm:972 +#: gnu/packages/audio.scm:992 msgid "" "AZR-3 is a port of the free VST plugin AZR-3. It is a tonewheel organ\n" "with drawbars, distortion and rotating speakers. The organ has three\n" @@ -222,7 +222,7 @@ msgid "" "plugins are provided." msgstr "" -#: gnu/packages/audio.scm:1011 +#: gnu/packages/audio.scm:1031 msgid "" "Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments.\n" "The suite contains lots of effects (delay, modulation, signal processing,\n" @@ -231,31 +231,31 @@ msgid "" "tools (analyzer, mono/stereo tools, crossovers)." msgstr "" -#: gnu/packages/audio.scm:1053 +#: gnu/packages/audio.scm:1073 msgid "" "LV2 port of CAPS, a collection of audio plugins comprising basic virtual\n" "guitar amplification and a small range of classic effects, signal processors and\n" "generators of mostly elementary and occasionally exotic nature." msgstr "" -#: gnu/packages/audio.scm:1094 +#: gnu/packages/audio.scm:1114 msgid "" "The infamous plugins are a collection of LV2 audio plugins for live\n" "performances. The plugins include a cellular automaton synthesizer, an\n" "envelope follower, distortion effects, tape effects and more." msgstr "" -#: gnu/packages/audio.scm:1129 +#: gnu/packages/audio.scm:1149 msgid "" "Snapcast is a multi-room client-server audio player. Clients are time\n" "synchronized with the server to play synced audio." msgstr "" -#: gnu/packages/audio.scm:1159 +#: gnu/packages/audio.scm:1179 msgid "This package provides Steve Harris's LADSPA plugins." msgstr "" -#: gnu/packages/audio.scm:1199 +#: gnu/packages/audio.scm:1219 msgid "" "Swh-plugins-lv2 is a collection of audio plugins in LV2 format. Plugin\n" "classes include: dynamics (compressor, limiter), time (delay, chorus,\n" @@ -263,13 +263,13 @@ msgid "" "emulation (valve, tape), bit fiddling (decimator, pointer-cast), etc." msgstr "" -#: gnu/packages/audio.scm:1233 +#: gnu/packages/audio.scm:1253 msgid "" "@code{libdjinterop} is a C++ library that allows access to database\n" "formats used to store information about DJ record libraries." msgstr "" -#: gnu/packages/audio.scm:1295 gnu/packages/audio.scm:1326 +#: gnu/packages/audio.scm:1315 gnu/packages/audio.scm:1346 msgid "" "Tao is a software package for sound synthesis using physical\n" "models. It provides a virtual acoustic material constructed from masses and\n" @@ -279,13 +279,13 @@ msgid "" "object library." msgstr "" -#: gnu/packages/audio.scm:1361 +#: gnu/packages/audio.scm:1381 msgid "" "Csound is a user-programmable and user-extensible sound processing\n" "language and software synthesizer." msgstr "" -#: gnu/packages/audio.scm:1388 +#: gnu/packages/audio.scm:1408 msgid "" "midicomp can manipulate SMF (Standard MIDI File) files. It can both\n" " read and write SMF files in 0 or format 1 and also read and write its own\n" @@ -294,20 +294,20 @@ msgid "" " language, and recompiled back into a binary SMF file." msgstr "" -#: gnu/packages/audio.scm:1435 +#: gnu/packages/audio.scm:1455 msgid "" "clalsadrv is a C++ wrapper around the ALSA API simplifying access to\n" "ALSA PCM devices." msgstr "" -#: gnu/packages/audio.scm:1474 +#: gnu/packages/audio.scm:1494 msgid "" "The AMB plugins are a set of LADSPA ambisonics plugins, mainly to be\n" "used within Ardour. Features include: mono and stereo to B-format panning,\n" "horizontal rotator, square, hexagon and cube decoders." msgstr "" -#: gnu/packages/audio.scm:1511 +#: gnu/packages/audio.scm:1531 msgid "" "This package provides various LADSPA plugins. @code{cs_chorus} and\n" "@code{cs_phaser} provide chorus and phaser effects, respectively;\n" @@ -317,13 +317,13 @@ msgid "" "the non-linear circuit elements of their original analog counterparts." msgstr "" -#: gnu/packages/audio.scm:1551 +#: gnu/packages/audio.scm:1571 msgid "" "This package provides a stereo reverb LADSPA plugin based on the\n" "well-known greverb." msgstr "" -#: gnu/packages/audio.scm:1587 +#: gnu/packages/audio.scm:1607 msgid "" "This package provides a LADSPA plugin for a four-band parametric\n" "equalizer. Each section has an active/bypass switch, frequency, bandwidth and\n" @@ -338,13 +338,13 @@ msgid "" "for stage use." msgstr "" -#: gnu/packages/audio.scm:1632 +#: gnu/packages/audio.scm:1652 msgid "" "This package provides a LADSPA plugin to manipulate the stereo width of\n" "audio signals." msgstr "" -#: gnu/packages/audio.scm:1669 +#: gnu/packages/audio.scm:1689 msgid "" "The @code{blvco} LADSPA plugin provides three anti-aliased oscillators:\n" "\n" @@ -359,17 +359,17 @@ msgid "" "output of analog synthesizers such as the Moog Voyager." msgstr "" -#: gnu/packages/audio.scm:1713 +#: gnu/packages/audio.scm:1733 msgid "" "This package provides a LADSPA plugin for a Wah effect with envelope\n" "follower." msgstr "" -#: gnu/packages/audio.scm:1749 +#: gnu/packages/audio.scm:1769 msgid "This package provides a LADSPA plugin for a stereo reverb effect." msgstr "" -#: gnu/packages/audio.scm:1791 +#: gnu/packages/audio.scm:1811 msgid "" "FluidSynth is a real-time software synthesizer based on the SoundFont 2\n" "specifications. FluidSynth reads and handles MIDI events from the MIDI input\n" @@ -377,21 +377,21 @@ msgid "" "also play midifiles using a Soundfont." msgstr "" -#: gnu/packages/audio.scm:1814 +#: gnu/packages/audio.scm:1834 msgid "FAAD2 is an MPEG-4 and MPEG-2 AAC decoder supporting LC, Main, LTP, SBR, -PS, and DAB+." msgstr "" -#: gnu/packages/audio.scm:1855 +#: gnu/packages/audio.scm:1875 msgid "Faust is a programming language for realtime audio signal processing." msgstr "" -#: gnu/packages/audio.scm:1919 +#: gnu/packages/audio.scm:1939 msgid "" "FreePats is a project to create a free and open set of GUS compatible\n" "patches that can be used with softsynths such as Timidity and WildMidi." msgstr "" -#: gnu/packages/audio.scm:1972 +#: gnu/packages/audio.scm:1992 msgid "" "Guitarix is a virtual guitar amplifier running JACK.\n" "Guitarix takes the signal from your guitar as a mono-signal from your sound\n" @@ -402,7 +402,7 @@ msgid "" "auto-wah." msgstr "" -#: gnu/packages/audio.scm:2028 +#: gnu/packages/audio.scm:2048 msgid "" "Rakarrack is a richly featured multi-effects processor emulating a\n" "guitar effects pedalboard. Effects include compressor, expander, noise gate,\n" @@ -414,14 +414,14 @@ msgid "" "well suited to all musical instruments and vocals." msgstr "" -#: gnu/packages/audio.scm:2084 +#: gnu/packages/audio.scm:2104 msgid "" "IR is a low-latency, real-time, high performance signal convolver\n" "especially for creating reverb effects. It supports impulse responses with 1,\n" "2 or 4 channels, in any soundfile format supported by libsndfile." msgstr "" -#: gnu/packages/audio.scm:2124 +#: gnu/packages/audio.scm:2144 msgid "" "JACK is a low-latency audio server. It can connect a number of\n" "different applications to an audio device, as well as allowing them to share\n" @@ -431,20 +431,20 @@ msgid "" "synchronous execution of all clients, and low latency operation." msgstr "" -#: gnu/packages/audio.scm:2220 +#: gnu/packages/audio.scm:2240 msgid "" "Jalv is a simple but fully featured LV2 host for JACK. It runs LV2\n" "plugins and exposes their ports as JACK ports, essentially making any LV2\n" "plugin function as a JACK application." msgstr "" -#: gnu/packages/audio.scm:2266 +#: gnu/packages/audio.scm:2286 msgid "" "LADSPA is a standard that allows software audio processors and effects\n" "to be plugged into a wide range of audio synthesis and recording packages." msgstr "" -#: gnu/packages/audio.scm:2318 +#: gnu/packages/audio.scm:2338 msgid "" "LASH is a session management system for audio applications. It allows\n" "you to save and restore audio sessions consisting of multiple interconneced\n" @@ -452,7 +452,7 @@ msgid "" "connections between them." msgstr "" -#: gnu/packages/audio.scm:2341 +#: gnu/packages/audio.scm:2361 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is\n" "designed to improve headphone listening of stereo audio records. Recommended\n" @@ -460,7 +460,7 @@ msgid "" "essential distortions." msgstr "" -#: gnu/packages/audio.scm:2364 +#: gnu/packages/audio.scm:2384 msgid "" "The Bauer stereophonic-to-binaural DSP (bs2b) library and\n" "plugins is designed to improve headphone listening of stereo audio records.\n" @@ -469,13 +469,13 @@ msgid "" "with applications that support them (e.g. PulseAudio)." msgstr "" -#: gnu/packages/audio.scm:2390 +#: gnu/packages/audio.scm:2410 msgid "" "liblo is a lightweight library that provides an easy to use\n" "implementation of the Open Sound Control (@dfn{OSC}) protocol." msgstr "" -#: gnu/packages/audio.scm:2426 +#: gnu/packages/audio.scm:2446 msgid "" "RtAudio is a set of C++ classes that provides a common API for real-time\n" "audio input/output. It was designed with the following objectives:\n" @@ -494,13 +494,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/audio.scm:2462 +#: gnu/packages/audio.scm:2482 msgid "" "This package provides bindings for PortAudio v19, the\n" "cross-platform audio input/output stream library." msgstr "" -#: gnu/packages/audio.scm:2489 +#: gnu/packages/audio.scm:2509 msgid "" "Pyliblo is a Python wrapper for the liblo Open Sound Control (OSC)\n" "library. It supports almost the complete functionality of liblo, allowing you\n" @@ -508,19 +508,19 @@ msgid "" "included are the command line utilities @code{send_osc} and @code{dump_osc}." msgstr "" -#: gnu/packages/audio.scm:2526 +#: gnu/packages/audio.scm:2546 msgid "" "This package provides python bindings for libsndfile based on\n" "CFFI and NumPy." msgstr "" -#: gnu/packages/audio.scm:2544 +#: gnu/packages/audio.scm:2564 msgid "" "This package provides a python API to read and write MIDI\n" "files." msgstr "" -#: gnu/packages/audio.scm:2581 +#: gnu/packages/audio.scm:2601 msgid "" "@command{audio-to-midi} converts audio files to multichannel\n" "MIDI files. It accomplishes this by performing FFTs on all channels of the\n" @@ -530,14 +530,14 @@ msgid "" "frequencies. This data is then formatted to MIDI and written to disk." msgstr "" -#: gnu/packages/audio.scm:2624 +#: gnu/packages/audio.scm:2644 msgid "" "Lilv is a C library to make the use of LV2 plugins as simple as possible\n" "for applications. Lilv is the successor to SLV2, rewritten to be\n" "significantly faster and have minimal dependencies." msgstr "" -#: gnu/packages/audio.scm:2652 +#: gnu/packages/audio.scm:2672 msgid "" "LV2 is an open specification for audio plugins and host applications.\n" "At its core, LV2 is a simple stable interface, accompanied by extensions which\n" @@ -545,22 +545,22 @@ msgid "" "software." msgstr "" -#: gnu/packages/audio.scm:2688 +#: gnu/packages/audio.scm:2708 msgid "An LV2 port of the mda Piano VSTi." msgstr "" -#: gnu/packages/audio.scm:2702 +#: gnu/packages/audio.scm:2722 msgid "An LV2 port of the mda EPiano VSTi." msgstr "" -#: gnu/packages/audio.scm:2732 +#: gnu/packages/audio.scm:2752 msgid "" "The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and\n" "extensions into easy to use C++ classes. It is the successor of\n" "lv2-c++-tools." msgstr "" -#: gnu/packages/audio.scm:2774 +#: gnu/packages/audio.scm:2794 msgid "" "OpenAL provides capabilities for playing audio in a virtual 3D\n" "environment. Distance attenuation, doppler shift, and directional sound\n" @@ -570,36 +570,36 @@ msgid "" "buffers, and audio capture." msgstr "" -#: gnu/packages/audio.scm:2805 +#: gnu/packages/audio.scm:2825 msgid "freealut is the OpenAL Utility Toolkit." msgstr "" -#: gnu/packages/audio.scm:2837 +#: gnu/packages/audio.scm:2857 msgid "" "Patchage is a modular patch bay for audio and MIDI systems based on JACK\n" "and ALSA." msgstr "" -#: gnu/packages/audio.scm:2862 +#: gnu/packages/audio.scm:2882 msgid "" "The Portable C Audio Library (pcaudiolib) provides a C@tie{}API to\n" "different audio devices such as ALSA or PulseAudio." msgstr "" -#: gnu/packages/audio.scm:2889 +#: gnu/packages/audio.scm:2909 msgid "" "Control a Jack server. Allows you to plug various sources\n" "into various outputs and to start, stop and configure jackd" msgstr "" -#: gnu/packages/audio.scm:2921 +#: gnu/packages/audio.scm:2941 msgid "" "QJackRcd is a simple graphical stereo recorder for JACK\n" "supporting silence processing for automatic pause, file splitting, and\n" "background file post-processing." msgstr "" -#: gnu/packages/audio.scm:3029 +#: gnu/packages/audio.scm:3049 msgid "" "SuperCollider is a synthesis engine (@code{scsynth} or\n" "@code{supernova}) and programming language (@code{sclang}). It can be used\n" @@ -611,17 +611,17 @@ msgid "" "using Guix System." msgstr "" -#: gnu/packages/audio.scm:3057 +#: gnu/packages/audio.scm:3077 msgid "This package provides libshout plus IDJC extensions." msgstr "" -#: gnu/packages/audio.scm:3083 +#: gnu/packages/audio.scm:3103 msgid "" "Raul (Real-time Audio Utility Library) is a C++ utility library primarily\n" "aimed at audio/musical applications." msgstr "" -#: gnu/packages/audio.scm:3119 +#: gnu/packages/audio.scm:3139 msgid "" "This package contains the @command{resample} and\n" "@command{windowfilter} command line utilities. The @command{resample} command\n" @@ -630,26 +630,26 @@ msgid "" "filters using the so-called @emph{window method}." msgstr "" -#: gnu/packages/audio.scm:3160 +#: gnu/packages/audio.scm:3180 msgid "" "Rubber Band is a library and utility program that permits changing the\n" "tempo and pitch of an audio recording independently of one another." msgstr "" -#: gnu/packages/audio.scm:3184 +#: gnu/packages/audio.scm:3204 msgid "" "RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut, and API specific\n" "classes) that provide a common cross-platform API for realtime MIDI\n" "input/output." msgstr "" -#: gnu/packages/audio.scm:3210 +#: gnu/packages/audio.scm:3230 msgid "" "Sratom is a library for serialising LV2 atoms to/from RDF, particularly\n" "the Turtle syntax." msgstr "" -#: gnu/packages/audio.scm:3238 +#: gnu/packages/audio.scm:3258 msgid "" "Suil is a lightweight C library for loading and wrapping LV2 plugin UIs.\n" "\n" @@ -661,13 +661,13 @@ msgid "" "Suil currently supports every combination of Gtk, Qt, and X11." msgstr "" -#: gnu/packages/audio.scm:3270 +#: gnu/packages/audio.scm:3290 msgid "" "@code{libebur128} is a C library that implements the EBU R 128 standard\n" "for loudness normalisation." msgstr "" -#: gnu/packages/audio.scm:3324 +#: gnu/packages/audio.scm:3344 msgid "" "TiMidity++ is a software synthesizer. It can play MIDI files by\n" "converting them into PCM waveform data; give it a MIDI data along with digital\n" @@ -676,33 +676,33 @@ msgid "" "disks as various audio file formats." msgstr "" -#: gnu/packages/audio.scm:3364 +#: gnu/packages/audio.scm:3384 msgid "" "Vamp is an audio processing plugin system for plugins that extract\n" "descriptive information from audio data — typically referred to as audio\n" "analysis plugins or audio feature extraction plugins." msgstr "" -#: gnu/packages/audio.scm:3408 +#: gnu/packages/audio.scm:3428 msgid "" "SBSMS (Subband Sinusoidal Modeling Synthesis) is software for time\n" "stretching and pitch scaling of audio. This package contains the library." msgstr "" -#: gnu/packages/audio.scm:3435 +#: gnu/packages/audio.scm:3455 msgid "" "@code{libkeyfinder} is a small C++11 library for estimating the musical\n" "key of digital audio." msgstr "" -#: gnu/packages/audio.scm:3465 +#: gnu/packages/audio.scm:3485 msgid "" "WavPack is an audio compression format with lossless, lossy and hybrid\n" "compression modes. This package contains command-line programs and library to\n" "encode and decode wavpack files." msgstr "" -#: gnu/packages/audio.scm:3486 +#: gnu/packages/audio.scm:3506 msgid "" "Libmodplug renders mod music files as raw audio data, for playing or\n" "conversion. mod, .s3m, .it, .xm, and a number of lesser-known formats are\n" @@ -710,21 +710,21 @@ msgid "" "surround and reverb." msgstr "" -#: gnu/packages/audio.scm:3507 +#: gnu/packages/audio.scm:3527 msgid "" "Libxmp is a library that renders module files to PCM data. It supports\n" "over 90 mainstream and obscure module formats including Protracker (MOD),\n" "Scream Tracker 3 (S3M), Fast Tracker II (XM), and Impulse Tracker (IT)." msgstr "" -#: gnu/packages/audio.scm:3531 +#: gnu/packages/audio.scm:3551 msgid "" "Xmp is a portable module player that plays over 90 mainstream and\n" "obscure module formats, including Protracker MOD, Fasttracker II XM, Scream\n" "Tracker 3 S3M and Impulse Tracker IT files." msgstr "" -#: gnu/packages/audio.scm:3556 +#: gnu/packages/audio.scm:3576 msgid "" "SoundTouch is an audio processing library for changing the tempo, pitch\n" "and playback rates of audio streams or audio files. It is intended for\n" @@ -732,7 +732,7 @@ msgid "" "control functionality, or just for playing around with the sound effects." msgstr "" -#: gnu/packages/audio.scm:3595 +#: gnu/packages/audio.scm:3615 msgid "" "SoX (Sound eXchange) is a command line utility that can convert\n" "various formats of computer audio files to other formats. It can also\n" @@ -740,60 +740,60 @@ msgid "" "can play and record audio files." msgstr "" -#: gnu/packages/audio.scm:3620 +#: gnu/packages/audio.scm:3640 msgid "" "The SoX Resampler library (libsoxr) performs one-dimensional sample-rate\n" "conversion. It may be used, for example, to resample PCM-encoded audio." msgstr "" -#: gnu/packages/audio.scm:3643 +#: gnu/packages/audio.scm:3663 msgid "" "TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder based on\n" "tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code and\n" "portions of LAME." msgstr "" -#: gnu/packages/audio.scm:3699 +#: gnu/packages/audio.scm:3719 msgid "" "PortAudio is a portable C/C++ audio I/O library providing a simple API\n" "to record and/or play sound using a callback function or a blocking read/write\n" "interface." msgstr "" -#: gnu/packages/audio.scm:3728 +#: gnu/packages/audio.scm:3748 msgid "" "Qsynth is a GUI front-end application for the FluidSynth SoundFont\n" "synthesizer written in C++." msgstr "" -#: gnu/packages/audio.scm:3767 +#: gnu/packages/audio.scm:3787 msgid "" "RSound allows you to send audio from an application and transfer it\n" "directly to a different computer on your LAN network. It is an audio daemon\n" "with a much different focus than most other audio daemons." msgstr "" -#: gnu/packages/audio.scm:3797 +#: gnu/packages/audio.scm:3817 msgid "" "XJackFreak is an audio analysis and equalizing tool for the Jack Audio\n" "Connection Kit. It can display the FFT of any input, modify it and output the\n" "result." msgstr "" -#: gnu/packages/audio.scm:3849 +#: gnu/packages/audio.scm:3869 msgid "" "Zita convolver is a C++ library providing a real-time convolution\n" "engine." msgstr "" -#: gnu/packages/audio.scm:3901 +#: gnu/packages/audio.scm:3921 msgid "" "Libzita-resampler is a C++ library for resampling audio signals. It is\n" "designed to be used within a real-time processing context, to be fast, and to\n" "provide high-quality sample rate conversion." msgstr "" -#: gnu/packages/audio.scm:3947 +#: gnu/packages/audio.scm:3967 msgid "" "Zita-alsa-pcmi is a C++ wrapper around the ALSA API. It provides easy\n" "access to ALSA PCM devices, taking care of the many functions required to\n" @@ -801,7 +801,7 @@ msgid "" "point audio data." msgstr "" -#: gnu/packages/audio.scm:3971 +#: gnu/packages/audio.scm:3991 msgid "" "Cuetools is a set of programs that are useful for manipulating\n" "and using CUE sheet (cue) files and Table of Contents (toc) files. CUE and TOC\n" @@ -809,14 +809,14 @@ msgid "" "machine-readable ASCII format." msgstr "" -#: gnu/packages/audio.scm:4000 +#: gnu/packages/audio.scm:4020 msgid "" "mp3guessenc is a command line utility that tries to detect the\n" "encoder used for an MPEG Layer III (MP3) file, as well as scan any MPEG audio\n" "file (any layer) and print a lot of useful information." msgstr "" -#: gnu/packages/audio.scm:4021 +#: gnu/packages/audio.scm:4041 msgid "" "shntool is a multi-purpose WAVE data processing and reporting\n" "utility. File formats are abstracted from its core, so it can process any file\n" @@ -825,46 +825,46 @@ msgid "" "use them split WAVE data into multiple files." msgstr "" -#: gnu/packages/audio.scm:4061 +#: gnu/packages/audio.scm:4081 msgid "" "Dcadec is a DTS Coherent Acoustics surround sound decoder\n" "with support for HD extensions." msgstr "" -#: gnu/packages/audio.scm:4098 +#: gnu/packages/audio.scm:4118 msgid "" "BS1770GAIN is a loudness scanner compliant with ITU-R BS.1770 and its\n" "flavors EBU R128, ATSC A/85, and ReplayGain 2.0. It helps normalizing the\n" "loudness of audio and video files to the same level." msgstr "" -#: gnu/packages/audio.scm:4130 +#: gnu/packages/audio.scm:4150 msgid "" "An easy to use audio filtering library made from webrtc\n" "code, used in @code{libtoxcore}." msgstr "" -#: gnu/packages/audio.scm:4183 +#: gnu/packages/audio.scm:4203 msgid "" "This C library provides an encoder and a decoder for the GSM\n" "06.10 RPE-LTP lossy speech compression algorithm." msgstr "" -#: gnu/packages/audio.scm:4206 +#: gnu/packages/audio.scm:4226 msgid "" "This package contains wrappers for accessing the ALSA API from Python.\n" "It is currently fairly complete for PCM devices, and has some support for\n" "mixers." msgstr "" -#: gnu/packages/audio.scm:4230 +#: gnu/packages/audio.scm:4250 msgid "" "This package provides an encoder for the LDAC\n" "high-resolution Bluetooth audio streaming codec for streaming at up to 990\n" "kbps at 24 bit/96 kHz." msgstr "" -#: gnu/packages/audio.scm:4274 +#: gnu/packages/audio.scm:4294 msgid "" "This project is a rebirth of a direct integration between\n" "Bluez and ALSA. Since Bluez >= 5, the built-in integration has been removed\n" @@ -877,14 +877,14 @@ msgid "" "on the ALSA software PCM plugin." msgstr "" -#: gnu/packages/audio.scm:4340 +#: gnu/packages/audio.scm:4360 msgid "" "Snd is a sound editor modelled loosely after Emacs. It can be\n" "customized and extended using either the s7 Scheme implementation (included in\n" "the Snd sources), Ruby, or Forth." msgstr "" -#: gnu/packages/audio.scm:4369 +#: gnu/packages/audio.scm:4389 msgid "" "Noise Repellent is an LV2 plugin to reduce noise. It has\n" "the following features:\n" @@ -904,31 +904,31 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/audio.scm:4436 +#: gnu/packages/audio.scm:4456 msgid "" "RNNoise is a library that uses deep learning to apply\n" "noise suppression to audio sources with voice presence. This package provides\n" "an LV2 audio plugin." msgstr "" -#: gnu/packages/audio.scm:4480 +#: gnu/packages/audio.scm:4500 msgid "" "@code{cli-visualizer} displays fast-Fourier\n" "transforms (FFTs) of the sound being played, as well as other graphical\n" "representations." msgstr "" -#: gnu/packages/audio.scm:4530 +#: gnu/packages/audio.scm:4550 msgid "" "C.A.V.A. is a bar audio spectrum visualizer for the terminal\n" "using ALSA, MPD, PulseAudio, or a FIFO buffer as its input." msgstr "" -#: gnu/packages/audio.scm:4564 +#: gnu/packages/audio.scm:4584 msgid "Fluid-3 is Frank Wen's pro-quality GM soundfont." msgstr "" -#: gnu/packages/audio.scm:4586 +#: gnu/packages/audio.scm:4606 msgid "" "FDK is a library for encoding and decoding Advanced Audio\n" "Coding (AAC) format audio, developed by Fraunhofer IIS, and included as part of\n" @@ -939,20 +939,20 @@ msgid "" " surround)." msgstr "" -#: gnu/packages/audio.scm:4626 +#: gnu/packages/audio.scm:4646 msgid "" "OpenShot Audio Library (libopenshot-audio) allows\n" "high-quality editing and playback of audio, and is based on the JUCE\n" "library." msgstr "" -#: gnu/packages/audio.scm:4652 +#: gnu/packages/audio.scm:4672 msgid "" "FAudio is an XAudio reimplementation that focuses solely on\n" "developing fully accurate DirectX Audio runtime libraries." msgstr "" -#: gnu/packages/audio.scm:4679 +#: gnu/packages/audio.scm:4699 msgid "" "Gnaural is a programmable auditory binaural beat synthesizer\n" "intended to be used for brainwave entrainment. Gnaural supports creation of\n" @@ -961,20 +961,20 @@ msgid "" "other Gnaural instances, allowing synchronous sessions between many users." msgstr "" -#: gnu/packages/audio.scm:4714 +#: gnu/packages/audio.scm:4734 msgid "" "DarkIce is a live audio streamer. It takes audio input from\n" "a sound card, encodes it into Ogg Vorbis and/or mp3, and sends the audio\n" "stream to one or more IceCast and/or ShoutCast servers." msgstr "" -#: gnu/packages/audio.scm:4738 +#: gnu/packages/audio.scm:4758 msgid "" "Libltc is a POSIX-C Library for handling\n" "@dfn{Linear/Longitudinal Time Code} (LTC) data." msgstr "" -#: gnu/packages/audio.scm:4772 +#: gnu/packages/audio.scm:4792 msgid "" "TTA performs lossless compression on multichannel 8,16 and 24 bits\n" "data of the Wav audio files. Being lossless means that no data-\n" @@ -985,14 +985,14 @@ msgid "" "supports both of ID3v1/v2 and APEv2 tags." msgstr "" -#: gnu/packages/audio.scm:4805 +#: gnu/packages/audio.scm:4825 msgid "" "@code{libsoundio} is a C library providing audio input and\n" "output. The API is suitable for real-time software such as digital audio\n" "workstations as well as consumer software such as music players." msgstr "" -#: gnu/packages/audio.scm:4831 +#: gnu/packages/audio.scm:4851 msgid "" "Redkite is a small GUI toolkit developed in C++17 and\n" "inspired from other well known GUI toolkits such as Qt and GTK. It is\n" @@ -1001,7 +1001,7 @@ msgid "" "as is the case with audio plugins." msgstr "" -#: gnu/packages/audio.scm:4903 +#: gnu/packages/audio.scm:4923 msgid "" "Carla is a modular audio plugin host, with features like\n" "transport control, automation of parameters via MIDI CC and remote control\n" @@ -1010,7 +1010,7 @@ msgid "" "default and preferred audio driver but also supports native drivers like ALSA." msgstr "" -#: gnu/packages/audio.scm:4939 +#: gnu/packages/audio.scm:4959 msgid "" "Ecasound is a software package designed for multitrack audio\n" "processing. It can be used for simple tasks like audio playback, recording and\n" @@ -1022,28 +1022,28 @@ msgid "" "in the package." msgstr "" -#: gnu/packages/audio.scm:4977 +#: gnu/packages/audio.scm:4997 msgid "" "libaudec is a wrapper library over ffmpeg, sndfile and\n" "libsamplerate for reading and resampling audio files, based on Robin Gareus'\n" "@code{audio_decoder} code." msgstr "" -#: gnu/packages/audio.scm:5007 +#: gnu/packages/audio.scm:5027 msgid "" "lv2lint is an LV2 lint-like tool that checks whether a\n" "given plugin and its UI(s) match up with the provided metadata and adhere\n" "to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5041 +#: gnu/packages/audio.scm:5061 msgid "" "lv2toweb allows the user to create an xhtml page with information\n" "about the given LV2 plugin, provided that the plugin and its UI(s) match up\n" "with the provided metadata and adhere to well-known best practices." msgstr "" -#: gnu/packages/audio.scm:5069 +#: gnu/packages/audio.scm:5089 msgid "" "ZToolkit (Ztk) is a cross-platform GUI toolkit heavily\n" "inspired by GTK. It handles events and low level drawing on behalf of\n" @@ -1053,7 +1053,7 @@ msgid "" "minimum." msgstr "" -#: gnu/packages/audio.scm:5102 +#: gnu/packages/audio.scm:5122 msgid "" "libInstPatch is a library for processing digital sample based MIDI\n" "instrument \"patch\" files. The types of files libInstPatch supports are used\n" @@ -1062,28 +1062,28 @@ msgid "" "edited, converted, compressed and saved." msgstr "" -#: gnu/packages/audio.scm:5149 +#: gnu/packages/audio.scm:5169 msgid "" "The LSP DSP library provides a set of functions that perform\n" "SIMD-optimized computing on several hardware architectures. All functions\n" "currently operate on IEEE-754 single-precision floating-point numbers." msgstr "" -#: gnu/packages/audio.scm:5180 +#: gnu/packages/audio.scm:5200 msgid "" "Codec 2 is a speech codec designed for communications quality speech\n" "between 700 and 3200 bit/s. The main application is low bandwidth HF/VHF\n" "digital radio." msgstr "" -#: gnu/packages/audio.scm:5206 +#: gnu/packages/audio.scm:5226 msgid "" "The mbelib library provides support for the 7200x4400 bit/s codec used\n" "in P25 Phase 1, the 7100x4400 bit/s codec used in ProVoice and the @emph{Half\n" "Rate} 3600x2250 bit/s vocoder used in various radio systems." msgstr "" -#: gnu/packages/audio.scm:5299 +#: gnu/packages/audio.scm:5319 msgid "" "Ableton Link is a C++ library that synchronizes musical beat, tempo, and phase\n" "across multiple applications running on one or more devices. Applications on devices\n" @@ -1092,20 +1092,20 @@ msgid "" "while still staying in time." msgstr "" -#: gnu/packages/audio.scm:5360 +#: gnu/packages/audio.scm:5380 msgid "" "Butt is a tool to stream audio to a ShoutCast or\n" "Icecast server." msgstr "" -#: gnu/packages/audio.scm:5406 +#: gnu/packages/audio.scm:5426 msgid "" "siggen is a set of tools for imitating a laboratory signal\n" "generator, generating audio signals out of Linux's /dev/dsp audio\n" "device. There is support for mono and/or stereo and 8 or 16 bit samples." msgstr "" -#: gnu/packages/audio.scm:5453 +#: gnu/packages/audio.scm:5473 msgid "" "@code{python-pysox} is a wrapper around the @command{sox}\n" "command line tool. The API offers @code{Transformer} and @code{Combiner}\n" @@ -1115,7 +1115,7 @@ msgid "" "and much more." msgstr "" -#: gnu/packages/audio.scm:5492 +#: gnu/packages/audio.scm:5512 msgid "" "@code{python-resampy} implements the band-limited sinc interpolation\n" "method for sampling rate conversion as described by Julius O. Smith at the\n" @@ -1123,34 +1123,34 @@ msgid "" "Home Page}." msgstr "" -#: gnu/packages/audio.scm:5528 +#: gnu/packages/audio.scm:5548 msgid "" "@code{librosa} is a python package for music and audio analysis. It\n" "provides the building blocks necessary to create music information retrieval\n" "systems." msgstr "" -#: gnu/packages/audio.scm:5561 +#: gnu/packages/audio.scm:5581 msgid "" "MDA-LV2 is an LV2 port of the MDA plugins. It includes effects and a few\n" "instrument plugins." msgstr "" -#: gnu/packages/audio.scm:5593 +#: gnu/packages/audio.scm:5613 msgid "" "The Odio SACD shared library is a decoding engine which takes a Super\n" "Audio CD source and extracts a 24-bit high resolution WAV file. It handles\n" "both DST and DSD streams." msgstr "" -#: gnu/packages/audio.scm:5618 +#: gnu/packages/audio.scm:5638 msgid "" "Odio SACD is a command-line application which takes a Super Audio CD\n" "source and extracts a 24-bit high resolution WAV file. It handles both DST\n" "and DSD streams." msgstr "" -#: gnu/packages/backup.scm:155 +#: gnu/packages/backup.scm:165 msgid "" "Duplicity backs up directories by producing encrypted tar-format volumes\n" "and uploading them to a remote or local file server. Because duplicity uses\n" @@ -1160,7 +1160,7 @@ msgid "" "spying and/or modification by the server." msgstr "" -#: gnu/packages/backup.scm:180 +#: gnu/packages/backup.scm:190 msgid "" "Par2cmdline uses Reed-Solomon error-correcting codes to\n" "generate and verify PAR2 recovery files. These files can be distributed\n" @@ -1172,7 +1172,7 @@ msgid "" "can even repair them." msgstr "" -#: gnu/packages/backup.scm:219 +#: gnu/packages/backup.scm:229 msgid "" "Hdup2 is a backup utility, its aim is to make backup really simple. The\n" "backup scheduling is done by means of a cron job. It supports an\n" @@ -1180,7 +1180,7 @@ msgid "" "backups (called chunks) to allow easy burning to CD/DVD." msgstr "" -#: gnu/packages/backup.scm:316 +#: gnu/packages/backup.scm:326 msgid "" "Libarchive provides a flexible interface for reading and writing\n" "archives in various formats such as tar and cpio. Libarchive also supports\n" @@ -1191,7 +1191,7 @@ msgid "" "random access nor for in-place modification." msgstr "" -#: gnu/packages/backup.scm:380 +#: gnu/packages/backup.scm:390 msgid "" "Rdup is a utility inspired by rsync and the plan9 way of doing backups.\n" "Rdup itself does not backup anything, it only print a list of absolute\n" @@ -1199,7 +1199,7 @@ msgid "" "list and implement the backup strategy." msgstr "" -#: gnu/packages/backup.scm:419 +#: gnu/packages/backup.scm:429 msgid "" "SnapRAID backs up files stored across multiple storage devices, such as\n" "disk arrays, in an efficient way reminiscent of its namesake @acronym{RAID,\n" @@ -1225,7 +1225,7 @@ msgid "" "remain fully idle, saving power and producing less noise." msgstr "" -#: gnu/packages/backup.scm:469 +#: gnu/packages/backup.scm:479 msgid "" "Btar is a tar-compatible archiver which allows arbitrary compression and\n" "ciphering, redundancy, differential backup, indexed extraction, multicore\n" @@ -1233,7 +1233,7 @@ msgid "" "errors." msgstr "" -#: gnu/packages/backup.scm:496 +#: gnu/packages/backup.scm:506 msgid "" "Rdiff-backup backs up one directory to another, possibly over a network.\n" "The target directory ends up a copy of the source directory, but extra reverse\n" @@ -1248,7 +1248,7 @@ msgid "" "rdiff-backup is easy to use and settings have sensible defaults." msgstr "" -#: gnu/packages/backup.scm:532 +#: gnu/packages/backup.scm:542 msgid "" "rsnapshot is a file system snapshot utility based on rsync.\n" "rsnapshot makes it easy to make periodic snapshots of local machines, and\n" @@ -1256,7 +1256,7 @@ msgid "" "rsnapshot uses hard links to deduplicate identical files." msgstr "" -#: gnu/packages/backup.scm:610 +#: gnu/packages/backup.scm:620 msgid "" "Libchop is a set of utilities and library for data backup and\n" "distributed storage. Its main application is @command{chop-backup}, an\n" @@ -1267,17 +1267,17 @@ msgid "" "detection, and lossless compression." msgstr "" -#: gnu/packages/backup.scm:740 +#: gnu/packages/backup.scm:750 msgid "" "Borg is a deduplicating backup program. Optionally, it\n" "supports compression and authenticated encryption. The main goal of Borg is to\n" "provide an efficient and secure way to backup data. The data deduplication\n" "technique used makes Borg suitable for daily backups since only changes are\n" -"stored. The authenticated encryption technique makes it suitable for backups\n" -"to not fully trusted targets. Borg is a fork of Attic." +"stored. The authenticated encryption technique makes it suitable for\n" +"storing backups on untrusted computers." msgstr "" -#: gnu/packages/backup.scm:771 +#: gnu/packages/backup.scm:781 msgid "" "wimlib is a C library and set of command-line utilities for\n" "creating, modifying, extracting, and mounting archives in the Windows Imaging\n" @@ -1285,14 +1285,14 @@ msgid "" "NTFS volumes using @code{ntfs-3g}, preserving NTFS-specific attributes." msgstr "" -#: gnu/packages/backup.scm:879 +#: gnu/packages/backup.scm:889 msgid "" "With dirvish you can maintain a set of complete images of your\n" "file systems with unattended creation and expiration. A dirvish backup vault\n" "is like a time machine for your data." msgstr "" -#: gnu/packages/backup.scm:974 +#: gnu/packages/backup.scm:984 msgid "" "Restic is a program that does backups right and was designed\n" "with the following principles in mind:\n" @@ -1324,7 +1324,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/backup.scm:1025 +#: gnu/packages/backup.scm:1035 msgid "" "ZBackup is a globally-deduplicating backup tool, based on the\n" "ideas found in Rsync. Feed a large @file{.tar} into it, and it will\n" @@ -1337,7 +1337,7 @@ msgid "" "is format-agnostic, so you can feed virtually any files to it." msgstr "" -#: gnu/packages/backup.scm:1061 +#: gnu/packages/backup.scm:1071 msgid "" "Dump examines files in a file system, determines which ones\n" "need to be backed up, and copies those files to a specified disk, tape or\n" @@ -1348,14 +1348,44 @@ msgid "" "interactive mode." msgstr "" -#: gnu/packages/backup.scm:1105 +#: gnu/packages/backup.scm:1131 +msgid "" +"Btrbk is a backup tool for Btrfs subvolumes, taking\n" +"advantage of Btrfs specific capabilities to create atomic snapshots and\n" +"transfer them incrementally to your backup locations. The source and target\n" +"locations are specified in a config file, which allows easily configuring\n" +"simple scenarios like e.g. a @i{laptop with locally attached backup disks}, as\n" +"well as more complex ones, e.g. a @i{server receiving backups from several\n" +"hosts via SSH, with different retention policy}. It has features such as:\n" +"@itemize\n" +"@item atomic snapshots\n" +"@item incremental backups\n" +"@item flexible retention policy\n" +"@item backups to multiple destinations\n" +"@item transfer via SSH\n" +"@item resume backups (for removable and mobile devices)\n" +"@item archive to offline storage\n" +"@item encrypted backups to non-btrfs storage\n" +"@item wildcard subvolumes (useful for Docker and LXC containers)\n" +"@item transaction log\n" +"@item comprehensive list and statistics output\n" +"@item resolve and trace Btrfs parent-child and received-from relationships\n" +"@item list file changes between backups\n" +"@item calculate accurate disk space usage based on block regions.\n" +"@end itemize\n" +"Btrbk is designed to run as a cron job for triggering periodic snapshots and\n" +"backups, as well as from the command line (e.g. for instantly creating\n" +"additional snapshots)." +msgstr "" + +#: gnu/packages/backup.scm:1194 msgid "" "Burp is a network backup and restore program. It attempts\n" "to reduce network traffic and the amount of space that is used by each\n" "backup." msgstr "" -#: gnu/packages/backup.scm:1136 +#: gnu/packages/backup.scm:1225 msgid "" "Disarchive can disassemble software archives into data\n" "and metadata. The goal is to create a small amount of metadata that\n" @@ -1365,7 +1395,7 @@ msgid "" "compression parameters used by Gzip." msgstr "" -#: gnu/packages/backup.scm:1181 +#: gnu/packages/backup.scm:1270 msgid "" "borgmatic is simple, configuration-driven backup software for servers\n" "and workstations. Protect your files with client-side encryption. Backup\n" @@ -1373,6 +1403,14 @@ msgid "" "borgmatic is powered by borg." msgstr "" +#: gnu/packages/backup.scm:1330 +msgid "" +"Vorta is a graphical backup client based on the Borg backup\n" +"tool. It supports the use of remote backup repositories. It can perform\n" +"scheduled backups, and has a graphical tool for browsing and extracting the Borg\n" +"archives." +msgstr "" + #: gnu/packages/base.scm:98 msgid "" "GNU Hello prints the message \"Hello, world!\" and then exits. It\n" @@ -1457,7 +1495,7 @@ msgid "" "change. GNU make offers many powerful extensions over the standard utility." msgstr "" -#: gnu/packages/base.scm:550 +#: gnu/packages/base.scm:558 msgid "" "GNU Binutils is a collection of tools for working with binary files.\n" "Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler.\n" @@ -1467,14 +1505,14 @@ msgid "" "included." msgstr "" -#: gnu/packages/base.scm:694 +#: gnu/packages/base.scm:685 msgid "" "The linker wrapper (or @code{ld-wrapper}) wraps the linker to add any\n" "missing @code{-rpath} flags, and to detect any misuse of libraries outside of\n" "the store." msgstr "" -#: gnu/packages/base.scm:930 +#: gnu/packages/base.scm:921 msgid "" "Any Unix-like operating system needs a C library: the library which\n" "defines the \"system calls\" and other basic facilities such as open, malloc,\n" @@ -1484,21 +1522,21 @@ msgid "" "with the Linux kernel." msgstr "" -#: gnu/packages/base.scm:1057 +#: gnu/packages/base.scm:1048 msgid "" "This package provides all the locales supported by the GNU C Library,\n" "more than 400 in total. To use them set the @code{LOCPATH} environment variable\n" "to the @code{share/locale} sub-directory of this package." msgstr "" -#: gnu/packages/base.scm:1206 +#: gnu/packages/base.scm:1198 msgid "" "The which program finds the location of executables in PATH, with a\n" "variety of options. It is an alternative to the shell \"type\" built-in\n" "command." msgstr "" -#: gnu/packages/base.scm:1329 +#: gnu/packages/base.scm:1321 msgid "" "The Time Zone Database (often called tz or zoneinfo)\n" "contains code and data that represent the history of local time for many\n" @@ -1507,14 +1545,14 @@ msgid "" "and daylight-saving rules." msgstr "" -#: gnu/packages/base.scm:1367 +#: gnu/packages/base.scm:1359 msgid "" "libiconv provides an implementation of the iconv function for systems\n" "that lack it. iconv is used to convert between character encodings in a\n" "program. It supports a wide variety of different encodings." msgstr "" -#: gnu/packages/bittorrent.scm:131 +#: gnu/packages/bittorrent.scm:135 msgid "" "Transmission is a BitTorrent client that comes with graphical,\n" "textual, and Web user interfaces. Transmission also has a daemon for\n" @@ -1522,54 +1560,54 @@ msgid "" "DHT, µTP, PEX and Magnet Links." msgstr "" -#: gnu/packages/bittorrent.scm:165 +#: gnu/packages/bittorrent.scm:169 msgid "" "transmission-remote-gtk is a GTK client for remote management\n" "of the Transmission BitTorrent client, using its HTTP RPC protocol." msgstr "" -#: gnu/packages/bittorrent.scm:187 +#: gnu/packages/bittorrent.scm:191 msgid "" "LibTorrent is a BitTorrent library used by and developed in parallel\n" "with the BitTorrent client rtorrent. It is written in C++ with emphasis on\n" "speed and efficiency." msgstr "" -#: gnu/packages/bittorrent.scm:215 +#: gnu/packages/bittorrent.scm:219 msgid "" "rTorrent is a BitTorrent client with an ncurses interface. It supports\n" "full encryption, DHT, PEX, and Magnet Links. It can also be controlled via\n" "XML-RPC over SCGI." msgstr "" -#: gnu/packages/bittorrent.scm:249 +#: gnu/packages/bittorrent.scm:253 msgid "" "Tremc is a console client, with a curses interface, for the\n" "Transmission BitTorrent daemon." msgstr "" -#: gnu/packages/bittorrent.scm:290 +#: gnu/packages/bittorrent.scm:294 msgid "" "Transmission-remote-cli is a console client, with a curses\n" "interface, for the Transmission BitTorrent daemon. This package is no longer\n" "maintained upstream." msgstr "" -#: gnu/packages/bittorrent.scm:340 +#: gnu/packages/bittorrent.scm:345 msgid "" "Aria2 is a lightweight, multi-protocol & multi-source command-line\n" "download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and Metalink.\n" "Aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces." msgstr "" -#: gnu/packages/bittorrent.scm:374 +#: gnu/packages/bittorrent.scm:381 msgid "" "uGet is portable download manager with GTK+ interface supporting\n" "HTTP, HTTPS, BitTorrent and Metalink, supporting multi-connection\n" "downloads, download scheduling, download rate limiting." msgstr "" -#: gnu/packages/bittorrent.scm:406 +#: gnu/packages/bittorrent.scm:413 msgid "" "mktorrent is a simple command-line utility to create BitTorrent\n" "@dfn{metainfo} files, often known simply as @dfn{torrents}, from both single\n" @@ -1579,14 +1617,14 @@ msgid "" "and will take advantage of multiple processor cores where possible." msgstr "" -#: gnu/packages/bittorrent.scm:457 +#: gnu/packages/bittorrent.scm:472 msgid "" "libtorrent-rasterbar is a feature-complete C++ BitTorrent implementation\n" "focusing on efficiency and scalability. It runs on embedded devices as well as\n" "desktops." msgstr "" -#: gnu/packages/bittorrent.scm:508 +#: gnu/packages/bittorrent.scm:523 msgid "" "qBittorrent is a BitTorrent client programmed in C++/Qt that uses\n" "libtorrent (sometimes called libtorrent-rasterbar) by Arvid Norberg.\n" @@ -1596,7 +1634,7 @@ msgid "" "features." msgstr "" -#: gnu/packages/bittorrent.scm:580 +#: gnu/packages/bittorrent.scm:604 msgid "" "Deluge contains the common features to BitTorrent clients such as\n" "Protocol Encryption, DHT, Local Peer Discovery (LSD), Peer Exchange\n" @@ -1908,7 +1946,16 @@ msgid "" "functionality in a C++ iostream." msgstr "" -#: gnu/packages/compression.scm:1443 +#: gnu/packages/compression.scm:1416 +msgid "" +"Zopfli Compression Algorithm is a compression library\n" +"programmed in C to perform very good, but slow, deflate or zlib compression.\n" +"ZopfliCompress supports the deflate, gzip and zlib output formats. This\n" +"library can only compress, not decompress; existing zlib or deflate libraries\n" +"can decompress the data." +msgstr "" + +#: gnu/packages/compression.scm:1469 msgid "" "ZPAQ is a command-line archiver for realistic situations with\n" "many duplicate and already compressed files. It backs up only those files\n" @@ -1922,13 +1969,13 @@ msgid "" "or junctions, and always follows hard links." msgstr "" -#: gnu/packages/compression.scm:1545 +#: gnu/packages/compression.scm:1571 msgid "" "@command{unshield} is a tool and library for extracting @file{.cab}\n" " archives from InstallShield installers." msgstr "" -#: gnu/packages/compression.scm:1624 +#: gnu/packages/compression.scm:1650 msgid "" "Zstandard (@command{zstd}) is a lossless compression algorithm\n" "that combines very fast operation with a compression ratio comparable to that of\n" @@ -1938,7 +1985,7 @@ msgid "" "speed." msgstr "" -#: gnu/packages/compression.scm:1672 +#: gnu/packages/compression.scm:1698 msgid "" "Parallel Zstandard (PZstandard or @command{pzstd}) is a\n" "multi-threaded implementation of the @uref{http://zstd.net/, Zstandard\n" @@ -1951,7 +1998,7 @@ msgid "" "the actual decompression, the other input and output." msgstr "" -#: gnu/packages/compression.scm:1712 +#: gnu/packages/compression.scm:1738 msgid "" "Zip is a compression and file packaging/archive utility. Zip is useful\n" "for packaging a set of files for distribution, for archiving files, and for\n" @@ -1966,7 +2013,7 @@ msgid "" "Compression ratios of 2:1 to 3:1 are common for text files." msgstr "" -#: gnu/packages/compression.scm:1801 +#: gnu/packages/compression.scm:1827 msgid "" "UnZip is an extraction utility for archives compressed in .zip format,\n" "also called \"zipfiles\".\n" @@ -1977,7 +2024,7 @@ msgid "" "recreates the stored directory structure by default." msgstr "" -#: gnu/packages/compression.scm:1853 +#: gnu/packages/compression.scm:1879 msgid "" "Ziptime helps make @file{.zip} archives reproducible by replacing\n" "timestamps in the file header with a fixed time (1 January 2008).\n" @@ -1986,11 +2033,11 @@ msgid "" "@command{zip} to prevent it from storing the ``universal time'' field." msgstr "" -#: gnu/packages/compression.scm:1880 +#: gnu/packages/compression.scm:1906 msgid "ZZipLib is a library based on zlib for accessing zip files." msgstr "" -#: gnu/packages/compression.scm:1904 +#: gnu/packages/compression.scm:1930 msgid "" "Libzip is a C library for reading, creating, and modifying\n" "zip archives. Files can be added from data buffers, files, or compressed data\n" @@ -1998,7 +2045,7 @@ msgid "" "archive can be reverted." msgstr "" -#: gnu/packages/compression.scm:1937 +#: gnu/packages/compression.scm:1963 msgid "" "The main command is @command{aunpack} which extracts files\n" "from an archive. The other commands provided are @command{apack} (to create\n" @@ -2008,7 +2055,7 @@ msgid "" "of archives." msgstr "" -#: gnu/packages/compression.scm:1963 +#: gnu/packages/compression.scm:1989 msgid "" "Lunzip is a decompressor for files in the lzip compression format (.lz),\n" "written as a single small C tool with no dependencies. This makes it\n" @@ -2018,7 +2065,7 @@ msgid "" "Lunzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:1990 +#: gnu/packages/compression.scm:2016 msgid "" "Clzip is a compressor and decompressor for files in the lzip compression\n" "format (.lz), written as a single small C tool with no dependencies. This makes\n" @@ -2027,7 +2074,7 @@ msgid "" "Clzip is intended to be fully compatible with the regular lzip package." msgstr "" -#: gnu/packages/compression.scm:2018 +#: gnu/packages/compression.scm:2044 msgid "" "Lzlib is a C library for in-memory LZMA compression and decompression in\n" "the lzip format. It supports integrity checking of the decompressed data, and\n" @@ -2035,7 +2082,7 @@ msgid "" "corrupted input." msgstr "" -#: gnu/packages/compression.scm:2042 +#: gnu/packages/compression.scm:2068 msgid "" "Plzip is a massively parallel (multi-threaded) lossless data compressor\n" "and decompressor that uses the lzip file format (.lz). Files produced by plzip\n" @@ -2049,13 +2096,13 @@ msgid "" "single-member files which can't be decompressed in parallel." msgstr "" -#: gnu/packages/compression.scm:2074 +#: gnu/packages/compression.scm:2100 msgid "" "innoextract allows extracting Inno Setup installers under\n" "non-Windows systems without running the actual installer using wine." msgstr "" -#: gnu/packages/compression.scm:2096 +#: gnu/packages/compression.scm:2122 msgid "" "ISA-L is a collection of optimized low-level functions\n" "targeting storage applications. ISA-L includes:\n" @@ -2073,7 +2120,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/compression.scm:2156 +#: gnu/packages/compression.scm:2182 msgid "" "This package provides the reference implementation of Brotli,\n" "a generic-purpose lossless compression algorithm that compresses data using a\n" @@ -2085,13 +2132,13 @@ msgid "" "The specification of the Brotli Compressed Data Format is defined in RFC 7932." msgstr "" -#: gnu/packages/compression.scm:2176 +#: gnu/packages/compression.scm:2202 msgid "" "This package provides a Python interface to the @code{brotli}\n" "package, an implementation of the Brotli lossless compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2200 +#: gnu/packages/compression.scm:2226 msgid "" "UCL implements a number of compression algorithms that\n" "achieve an excellent compression ratio while allowing fast decompression.\n" @@ -2101,7 +2148,7 @@ msgid "" "decompression is a little bit slower." msgstr "" -#: gnu/packages/compression.scm:2248 +#: gnu/packages/compression.scm:2274 msgid "" "The Ultimate Packer for eXecutables (UPX) is an executable file\n" "compressor. UPX typically reduces the file size of programs and shared\n" @@ -2109,7 +2156,7 @@ msgid "" "download times, and other distribution and storage costs." msgstr "" -#: gnu/packages/compression.scm:2276 +#: gnu/packages/compression.scm:2302 msgid "" "QuaZIP is a simple C++ wrapper over Gilles Vollant's\n" "ZIP/UNZIP package that can be used to access ZIP archives. It uses\n" @@ -2123,7 +2170,7 @@ msgid "" "reading from and writing to ZIP archives." msgstr "" -#: gnu/packages/compression.scm:2335 +#: gnu/packages/compression.scm:2361 msgid "" "The zchunk compressed file format allows splitting a file\n" "into independent chunks. This makes it possible to retrieve only changed\n" @@ -2146,7 +2193,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/compression.scm:2391 +#: gnu/packages/compression.scm:2417 msgid "" "Zutils is a collection of utilities able to process any combination of\n" "compressed and uncompressed files transparently. If any given file, including\n" @@ -2163,14 +2210,14 @@ msgid "" "at run time, and must be installed separately." msgstr "" -#: gnu/packages/compression.scm:2449 +#: gnu/packages/compression.scm:2475 msgid "" "This package provides a script to unpack self-extracting\n" "archives generated by @command{makeself} or @command{mojo} without running the\n" "possibly untrusted extraction shell script." msgstr "" -#: gnu/packages/compression.scm:2477 +#: gnu/packages/compression.scm:2503 msgid "" "(N)compress provides the original compress and uncompress\n" "programs that used to be the de facto UNIX standard for compressing and\n" @@ -2178,7 +2225,7 @@ msgid "" "file compression algorithm." msgstr "" -#: gnu/packages/compression.scm:2504 +#: gnu/packages/compression.scm:2530 msgid "" "Xarchiver is a front-end to various command line archiving\n" "tools. It uses GTK+ tool-kit and is designed to be desktop-environment\n" @@ -2187,13 +2234,13 @@ msgid "" "archiver is not installed." msgstr "" -#: gnu/packages/compression.scm:2541 +#: gnu/packages/compression.scm:2567 msgid "" "Archive huge numbers of files, or split massive tar archives into smaller\n" "chunks." msgstr "" -#: gnu/packages/compression.scm:2574 +#: gnu/packages/compression.scm:2600 msgid "" "Blosc is a high performance compressor optimized for binary data. It has\n" "been designed to transmit data to the processor cache faster than the\n" @@ -2203,14 +2250,14 @@ msgid "" "computations." msgstr "" -#: gnu/packages/compression.scm:2612 +#: gnu/packages/compression.scm:2638 msgid "" "ECM is a utility that converts ECM files, i.e., CD data files\n" "with their error correction data losslessly rearranged for better compression,\n" "to their original, binary CD format." msgstr "" -#: gnu/packages/compression.scm:2642 +#: gnu/packages/compression.scm:2668 msgid "" "Libdeflate is a library for fast, whole-buffer DEFLATE-based\n" "compression and decompression. The supported formats are:\n" @@ -2222,7 +2269,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/compression.scm:2672 +#: gnu/packages/compression.scm:2698 msgid "" "Tarlz is a massively parallel (multi-threaded) combined implementation of\n" "the tar archiver and the lzip compressor. Tarlz creates, lists, and extracts\n" @@ -2233,7 +2280,7 @@ msgid "" "can append files to the end of such compressed archives." msgstr "" -#: gnu/packages/compression.scm:2706 +#: gnu/packages/compression.scm:2732 msgid "" "The Concise Binary Object Representation (CBOR) is a data format whose\n" "design goals include the possibility of extremely small code size, fairly\n" @@ -2242,17 +2289,17 @@ msgid "" "serializations such as ASN.1 and MessagePack." msgstr "" -#: gnu/packages/compression.scm:2739 +#: gnu/packages/compression.scm:2765 msgid "Fcrackzip is a Zip file password cracker." msgstr "" -#: gnu/packages/databases.scm:211 +#: gnu/packages/databases.scm:216 msgid "" "4store is a RDF/SPARQL store written in C, supporting\n" "either single machines or networked clusters." msgstr "" -#: gnu/packages/databases.scm:255 +#: gnu/packages/databases.scm:260 msgid "" "@code{pg_tmp} creates temporary PostgreSQL databases, suitable for tasks\n" "like running software test suites. Temporary databases created with\n" @@ -2261,14 +2308,14 @@ msgid "" "60)." msgstr "" -#: gnu/packages/databases.scm:281 +#: gnu/packages/databases.scm:286 msgid "" "This package provides a utility for dumping the contents of an\n" "ElasticSearch index to a compressed file and restoring the dumpfile back to an\n" "ElasticSearch server" msgstr "" -#: gnu/packages/databases.scm:433 +#: gnu/packages/databases.scm:438 msgid "" "Firebird is an SQL @acronym{RDBMS, relational database management system}\n" "with rich support for ANSI SQL (e.g., @code{INSERT...RETURNING}) including\n" @@ -2288,20 +2335,20 @@ msgid "" "database later." msgstr "" -#: gnu/packages/databases.scm:506 +#: gnu/packages/databases.scm:511 msgid "" "LevelDB is a fast key-value storage library that provides an ordered\n" "mapping from string keys to string values." msgstr "" -#: gnu/packages/databases.scm:526 +#: gnu/packages/databases.scm:531 msgid "" "Memcached is an in-memory key-value store. It has a small\n" "and generic API, and was originally intended for use with dynamic web\n" "applications." msgstr "" -#: gnu/packages/databases.scm:588 +#: gnu/packages/databases.scm:593 msgid "" "libMemcached is a library to use memcached in C/C++\n" "applications. It comes with a complete reference guide and documentation of\n" @@ -2315,51 +2362,73 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:625 +#: gnu/packages/databases.scm:630 msgid "" "@code{pylibmc} is a client in Python for memcached. It is a wrapper\n" "around TangentOrg’s libmemcached library, and can be used as a drop-in\n" "replacement for the code@{python-memcached} library." msgstr "" -#: gnu/packages/databases.scm:653 +#: gnu/packages/databases.scm:662 +msgid "This is a memcache client library for the Go programming language." +msgstr "" + +#: gnu/packages/databases.scm:685 +#, fuzzy +#| msgid "This package contains the game data of GNU Freedink." +msgid "This package provides memcache client and server functionality." +msgstr "这个软件包包含了 GNU Freedink 的游戏数据。" + +#: gnu/packages/databases.scm:711 msgid "" "@code{litecli} is a command-line client for SQLite databases that has\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:685 +#: gnu/packages/databases.scm:732 +msgid "" +"This Python package provides an API to execute meta-commands (AKA\n" +"\"special\", or \"backslash commands\") on PostgreSQL." +msgstr "" + +#: gnu/packages/databases.scm:763 +msgid "" +"@code{pgcli} is a command line interface for PostgreSQL with\n" +"autocompletion and syntax highlighting." +msgstr "" + +#: gnu/packages/databases.scm:801 msgid "" "MyCLI is a command line interface for MySQL, MariaDB, and Percona with\n" "auto-completion and syntax highlighting." msgstr "" -#: gnu/packages/databases.scm:782 +#: gnu/packages/databases.scm:898 msgid "" "MySQL is a fast, reliable, and easy to use relational database\n" "management system that supports the standardized Structured Query\n" "Language." msgstr "" -#: gnu/packages/databases.scm:1045 +#: gnu/packages/databases.scm:1161 msgid "" "MariaDB is a multi-user and multi-threaded SQL database server, designed\n" "as a drop-in replacement of MySQL." msgstr "" -#: gnu/packages/databases.scm:1070 +#: gnu/packages/databases.scm:1186 msgid "" "The MariaDB Connector/C is used to connect applications\n" "developed in C/C++ to MariaDB and MySQL databases." msgstr "" -#: gnu/packages/databases.scm:1093 +#: gnu/packages/databases.scm:1209 msgid "" "Galera is a wsrep-provider that is used with MariaDB for load-balancing\n" "and high-availability (HA)." msgstr "" -#: gnu/packages/databases.scm:1147 +#: gnu/packages/databases.scm:1263 msgid "" "PostgreSQL is a powerful object-relational database system. It is fully\n" "ACID compliant, has full support for foreign keys, joins, views, triggers, and\n" @@ -2369,19 +2438,27 @@ msgid "" "pictures, sounds, or video." msgstr "" -#: gnu/packages/databases.scm:1269 +#: gnu/packages/databases.scm:1395 +msgid "" +"TimescaleDB is an database designed to make SQL scalable for\n" +"time-series data. It is engineered up from PostgreSQL and packaged as a\n" +"PostgreSQL extension, providing automatic partitioning across time and space\n" +"(partitioning key), as well as full SQL support." +msgstr "" + +#: gnu/packages/databases.scm:1476 msgid "" "@code{pgloader} is a program that can load data or migrate databases from\n" "CSV, DB3, iXF, SQLite, MS-SQL or MySQL to PostgreSQL." msgstr "" -#: gnu/packages/databases.scm:1293 +#: gnu/packages/databases.scm:1500 msgid "" "PyMySQL is a pure-Python MySQL client library, based on PEP 249.\n" "Most public APIs are compatible with @command{mysqlclient} and MySQLdb." msgstr "" -#: gnu/packages/databases.scm:1320 +#: gnu/packages/databases.scm:1527 msgid "" "QDBM is a library of routines for managing a\n" "database. The database is a simple data file containing key-value\n" @@ -2391,7 +2468,7 @@ msgid "" "organized in a hash table or B+ tree." msgstr "" -#: gnu/packages/databases.scm:1357 +#: gnu/packages/databases.scm:1564 msgid "" "GNU Recutils is a set of tools and libraries for creating and\n" "manipulating text-based, human-editable databases. Despite being text-based,\n" @@ -2400,7 +2477,7 @@ msgid "" "types are supported, as is encryption." msgstr "" -#: gnu/packages/databases.scm:1389 +#: gnu/packages/databases.scm:1596 msgid "" "This package provides an Emacs major mode @code{rec-mode}\n" "for working with GNU Recutils text-based, human-editable databases. It\n" @@ -2408,7 +2485,7 @@ msgid "" "including field and record folding." msgstr "" -#: gnu/packages/databases.scm:1457 +#: gnu/packages/databases.scm:1664 msgid "" "RocksDB is a library that forms the core building block for a fast\n" "key-value server, especially suited for storing data on flash drives. It\n" @@ -2419,7 +2496,7 @@ msgid "" "data in a single database. RocksDB is partially based on @code{LevelDB}." msgstr "" -#: gnu/packages/databases.scm:1515 +#: gnu/packages/databases.scm:1722 msgid "" "Sparql-query is a command-line tool for accessing SPARQL\n" "endpoints over HTTP. It has been intentionally designed to @code{feel} similar to\n" @@ -2430,13 +2507,13 @@ msgid "" "for example from a shell script." msgstr "" -#: gnu/packages/databases.scm:1608 +#: gnu/packages/databases.scm:1815 msgid "" "Sqitch is a standalone change management system for database schemas,\n" "which uses SQL to describe changes." msgstr "" -#: gnu/packages/databases.scm:1635 +#: gnu/packages/databases.scm:1842 msgid "" "SQLcrush lets you view and edit a database directly from the text\n" "console through an ncurses interface. You can explore each table's structure,\n" @@ -2444,7 +2521,7 @@ msgid "" "changes." msgstr "" -#: gnu/packages/databases.scm:1673 +#: gnu/packages/databases.scm:1880 msgid "" "TDB is a Trivial Database. In concept, it is very much like GDBM,\n" "and BSD's DB except that it allows multiple simultaneous writers and uses\n" @@ -2452,11 +2529,11 @@ msgid "" "extremely small." msgstr "" -#: gnu/packages/databases.scm:1693 +#: gnu/packages/databases.scm:1900 msgid "This package provides an database interface for Perl." msgstr "" -#: gnu/packages/databases.scm:1741 +#: gnu/packages/databases.scm:1948 msgid "" "An SQL to OO mapper with an object API inspired by\n" "Class::DBI (with a compatibility layer as a springboard for porting) and a\n" @@ -2468,13 +2545,13 @@ msgid "" "\"ORDER BY\" and \"HAVING\" support." msgstr "" -#: gnu/packages/databases.scm:1770 +#: gnu/packages/databases.scm:1977 msgid "" "DBIx::Class::Cursor::Cached provides a cursor class with\n" "built-in caching support." msgstr "" -#: gnu/packages/databases.scm:1793 +#: gnu/packages/databases.scm:2000 msgid "" "Because the many-to-many relationships are not real\n" "relationships, they can not be introspected with DBIx::Class. Many-to-many\n" @@ -2484,26 +2561,26 @@ msgid "" "introspected and examined." msgstr "" -#: gnu/packages/databases.scm:1852 +#: gnu/packages/databases.scm:2059 msgid "" "DBIx::Class::Schema::Loader automates the definition of a\n" "DBIx::Class::Schema by scanning database table definitions and setting up the\n" "columns, primary keys, unique constraints and relationships." msgstr "" -#: gnu/packages/databases.scm:1876 +#: gnu/packages/databases.scm:2083 msgid "" "This package provides a PostgreSQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." msgstr "" -#: gnu/packages/databases.scm:1914 +#: gnu/packages/databases.scm:2121 msgid "" "This package provides a MySQL driver for the Perl5\n" "@dfn{Database Interface} (DBI)." msgstr "" -#: gnu/packages/databases.scm:1934 +#: gnu/packages/databases.scm:2141 msgid "" "DBD::SQLite is a Perl DBI driver for SQLite, that includes\n" "the entire thing in the distribution. So in order to get a fast transaction\n" @@ -2511,14 +2588,14 @@ msgid "" "module, and nothing else." msgstr "" -#: gnu/packages/databases.scm:1959 +#: gnu/packages/databases.scm:2166 msgid "" "@code{MySQL::Config} emulates the @code{load_defaults} function from\n" "libmysqlclient. It will fill an array with long options, ready to be parsed by\n" "@code{Getopt::Long}." msgstr "" -#: gnu/packages/databases.scm:1983 +#: gnu/packages/databases.scm:2190 msgid "" "This module was inspired by the excellent DBIx::Abstract.\n" "While based on the concepts used by DBIx::Abstract, the concepts used have\n" @@ -2528,7 +2605,7 @@ msgid "" "time your data changes." msgstr "" -#: gnu/packages/databases.scm:2010 +#: gnu/packages/databases.scm:2217 msgid "" "This module is nearly identical to @code{SQL::Abstract} 1.81, and exists\n" "to preserve the ability of users to opt into the new way of doing things in\n" @@ -2544,34 +2621,34 @@ msgid "" "your data changes, as this module figures it out." msgstr "" -#: gnu/packages/databases.scm:2043 +#: gnu/packages/databases.scm:2250 msgid "" "This module tries to split any SQL code, even including\n" "non-standard extensions, into the atomic statements it is composed of." msgstr "" -#: gnu/packages/databases.scm:2062 +#: gnu/packages/databases.scm:2269 msgid "" "SQL::Tokenizer is a tokenizer for SQL queries. It does not\n" "claim to be a parser or query verifier. It just creates sane tokens from a\n" "valid SQL query." msgstr "" -#: gnu/packages/databases.scm:2081 +#: gnu/packages/databases.scm:2288 msgid "" "Unixodbc is a library providing an API with which to access\n" "data sources. Data sources include SQL Servers and any software with an ODBC\n" "Driver." msgstr "" -#: gnu/packages/databases.scm:2113 +#: gnu/packages/databases.scm:2320 msgid "" "The goal for nanodbc is to make developers happy by providing\n" "a simpler and less verbose API for working with ODBC. Common tasks should be\n" "easy, requiring concise and simple code." msgstr "" -#: gnu/packages/databases.scm:2174 +#: gnu/packages/databases.scm:2381 msgid "" "UnQLite is an in-process software library which implements a\n" "self-contained, serverless, zero-configuration, transactional NoSQL\n" @@ -2580,27 +2657,35 @@ msgid "" "similar to BerkeleyDB, LevelDB, etc." msgstr "" -#: gnu/packages/databases.scm:2225 +#: gnu/packages/databases.scm:2432 msgid "" "Redis is an advanced key-value cache and store. Redis\n" "supports many data structures including strings, hashes, lists, sets, sorted\n" "sets, bitmaps and hyperloglogs." msgstr "" -#: gnu/packages/databases.scm:2247 +#: gnu/packages/databases.scm:2454 msgid "" "This package provides a Ruby client that tries to match Redis' API\n" "one-to-one, while still providing an idiomatic interface." msgstr "" -#: gnu/packages/databases.scm:2275 +#: gnu/packages/databases.scm:2479 +msgid "Package rdb implements parsing and encoding of the Redis RDB file format." +msgstr "" + +#: gnu/packages/databases.scm:2505 +msgid "Redigo is a Go client for the Redis database." +msgstr "" + +#: gnu/packages/databases.scm:2531 msgid "" "Kyoto Cabinet is a standalone file-based database that supports Hash\n" "and B+ Tree data storage models. It is a fast key-value lightweight\n" "database and supports many programming languages. It is a NoSQL database." msgstr "" -#: gnu/packages/databases.scm:2303 +#: gnu/packages/databases.scm:2559 msgid "" "Tokyo Cabinet is a library of routines for managing a database.\n" "The database is a simple data file containing records, each is a pair of a\n" @@ -2610,7 +2695,7 @@ msgid "" "organized in hash table, B+ tree, or fixed-length array." msgstr "" -#: gnu/packages/databases.scm:2339 +#: gnu/packages/databases.scm:2595 msgid "" "WiredTiger is an extensible platform for data management. It supports\n" "row-oriented storage (where all columns of a row are stored together),\n" @@ -2619,17 +2704,17 @@ msgid "" "trees (LSM), for sustained throughput under random insert workloads." msgstr "" -#: gnu/packages/databases.scm:2389 +#: gnu/packages/databases.scm:2645 msgid "" "This package provides Guile bindings to the WiredTiger ``NoSQL''\n" "database." msgstr "" -#: gnu/packages/databases.scm:2419 +#: gnu/packages/databases.scm:2675 msgid "The DB::File module provides Perl bindings to the Berkeley DB version 1.x." msgstr "" -#: gnu/packages/databases.scm:2467 +#: gnu/packages/databases.scm:2723 msgid "" "The @dfn{Lightning Memory-Mapped Database} (LMDB) is a high-performance\n" "transactional database. Unlike more complex relational databases, LMDB handles\n" @@ -2642,7 +2727,7 @@ msgid "" "virtual address space — not physical RAM." msgstr "" -#: gnu/packages/databases.scm:2501 +#: gnu/packages/databases.scm:2757 msgid "" "@code{lmdbxx} is a comprehensive @code{C++} wrapper for the\n" "@code{LMDB} embedded database library, offering both an error-checked\n" @@ -2650,14 +2735,22 @@ msgid "" "semantics." msgstr "" -#: gnu/packages/databases.scm:2535 +#: gnu/packages/databases.scm:2791 msgid "" "Libpqxx is a C++ library to enable user programs to communicate with the\n" "PostgreSQL database back-end. The database back-end can be local or it may be\n" "on another machine, accessed via TCP/IP." msgstr "" -#: gnu/packages/databases.scm:2561 +#: gnu/packages/databases.scm:2819 +msgid "" +"Bolt is a pure Go key/value store inspired by Howard Chu's\n" +"LMDB project. The goal of the project is to provide a simple, fast, and\n" +"reliable database for projects that don't require a full database server such as\n" +"Postgres or MySQL." +msgstr "" + +#: gnu/packages/databases.scm:2845 msgid "" "Peewee is a simple and small ORM (object-relation mapping) tool. Peewee\n" "handles converting between pythonic values and those used by databases, so you\n" @@ -2666,20 +2759,20 @@ msgid "" "can autogenerate peewee models using @code{pwiz}, a model generator." msgstr "" -#: gnu/packages/databases.scm:2584 +#: gnu/packages/databases.scm:2868 msgid "" "Pypika-tortoise is a fork of pypika which has been\n" "streamlined for its use in the context of tortoise-orm. It removes support\n" "for many database kinds that tortoise-orm doesn't need, for example." msgstr "" -#: gnu/packages/databases.scm:2604 +#: gnu/packages/databases.scm:2888 msgid "" "This package is a Sphinx extension providing additional\n" "coroutine-specific markup." msgstr "" -#: gnu/packages/databases.scm:2632 +#: gnu/packages/databases.scm:2916 msgid "" "@code{asyncpg} is a database interface library designed\n" "specifically for PostgreSQL and Python/asyncio. @code{asyncpg} is an\n" @@ -2687,14 +2780,14 @@ msgid "" "with Python's asyncio framework." msgstr "" -#: gnu/packages/databases.scm:2652 +#: gnu/packages/databases.scm:2936 msgid "" "@code{asyncmy} is a fast @code{asyncio} MySQL driver, which\n" "reuses most of @code{pymysql} and @code{aiomysql} but rewrites the core\n" "protocol with Cython for performance." msgstr "" -#: gnu/packages/databases.scm:2672 +#: gnu/packages/databases.scm:2956 msgid "" "@code{aiomysql} is a driver for accessing a MySQL database\n" "from the @code{asyncio} Python framework. It depends on and reuses most parts\n" @@ -2702,7 +2795,7 @@ msgid "" "@code{aiopg} library." msgstr "" -#: gnu/packages/databases.scm:2705 +#: gnu/packages/databases.scm:2989 msgid "" "Tortoise ORM is an easy-to-use asyncio ORM (Object\n" "Relational Mapper) inspired by Django. Tortoise ORM was built with relations\n" @@ -2711,7 +2804,7 @@ msgid "" "with relational data." msgstr "" -#: gnu/packages/databases.scm:2749 +#: gnu/packages/databases.scm:3033 msgid "" "SQLCipher is an implementation of SQLite, extended to\n" "provide transparent 256-bit AES encryption of database files. Pages are\n" @@ -2720,19 +2813,19 @@ msgid "" "development." msgstr "" -#: gnu/packages/databases.scm:2782 +#: gnu/packages/databases.scm:3066 msgid "" "@code{python-pyodbc-c} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2807 +#: gnu/packages/databases.scm:3091 msgid "" "@code{python-pyodbc} provides a Python DB-API driver\n" "for ODBC." msgstr "" -#: gnu/packages/databases.scm:2840 +#: gnu/packages/databases.scm:3124 msgid "" "MDB Tools is a set of tools and applications to read the\n" "proprietary MDB file format used in Microsoft's Access database package. This\n" @@ -2741,39 +2834,49 @@ msgid "" "etc., and an SQL engine for performing simple SQL queries." msgstr "" -#: gnu/packages/databases.scm:2886 +#: gnu/packages/databases.scm:3153 +#, fuzzy +#| msgid "" +#| "This package provides a dictionary for the Hunspell spell-checking\n" +#| "library." +msgid "This package provides a MongoDB driver for Go." +msgstr "" +"此软件包为 Hunspell 拼写检查库\n" +"提供词典。" + +#: gnu/packages/databases.scm:3194 msgid "" "python-lmdb or py-lmdb is a Python binding for the @dfn{Lightning\n" "Memory-Mapped Database} (LMDB), a high-performance key-value store." msgstr "" -#: gnu/packages/databases.scm:2925 +#: gnu/packages/databases.scm:3233 msgid "" "Orator provides a simple ActiveRecord-like Object Relational Mapping\n" "implementation for Python." msgstr "" -#: gnu/packages/databases.scm:2963 +#: gnu/packages/databases.scm:3271 msgid "" "Virtuoso is a scalable cross-platform server that combines\n" "relational, graph, and document data management with web application server\n" "and web services platform functionality." msgstr "" -#: gnu/packages/databases.scm:2990 +#: gnu/packages/databases.scm:3298 msgid "" "Cassandra Cluster Manager is a development tool for testing\n" "local Cassandra clusters. It creates, launches and removes Cassandra clusters\n" "on localhost." msgstr "" -#: gnu/packages/databases.scm:3018 +#: gnu/packages/databases.scm:3326 msgid "" "Pysqlite provides SQLite bindings for Python that comply to the\n" "Database API 2.0T." msgstr "" -#: gnu/packages/databases.scm:3048 +#: gnu/packages/databases.scm:3356 msgid "" "SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that\n" "gives application developers the full power and flexibility of SQL. It\n" @@ -2782,14 +2885,14 @@ msgid "" "simple and Pythonic domain language." msgstr "" -#: gnu/packages/databases.scm:3086 +#: gnu/packages/databases.scm:3382 msgid "" "This package contains type stubs and a mypy plugin to\n" "provide more precise static types and type inference for SQLAlchemy\n" "framework." msgstr "" -#: gnu/packages/databases.scm:3118 +#: gnu/packages/databases.scm:3414 msgid "" "SQLAlchemy-utils provides various utility functions and custom data types\n" "for SQLAlchemy. SQLAlchemy is an SQL database abstraction library for Python.\n" @@ -2806,7 +2909,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/databases.scm:3165 +#: gnu/packages/databases.scm:3461 msgid "" "This package provides mock helpers for SQLAlchemy that makes it easy\n" "to mock an SQLAlchemy session while preserving the ability to do asserts.\n" @@ -2816,13 +2919,13 @@ msgid "" "this library provides functions to facilitate such comparisons." msgstr "" -#: gnu/packages/databases.scm:3196 +#: gnu/packages/databases.scm:3492 msgid "" "Alembic is a lightweight database migration tool for usage with the\n" "SQLAlchemy Database Toolkit for Python." msgstr "" -#: gnu/packages/databases.scm:3221 +#: gnu/packages/databases.scm:3517 msgid "" "PickleShare is a small ‘shelve’-like datastore with concurrency support.\n" "Like shelve, a PickleShareDB object acts like a normal dictionary. Unlike\n" @@ -2833,7 +2936,7 @@ msgid "" "PickleShare." msgstr "" -#: gnu/packages/databases.scm:3275 +#: gnu/packages/databases.scm:3571 msgid "" "APSW is a Python wrapper for the SQLite\n" "embedded relational database engine. In contrast to other wrappers such as\n" @@ -2841,21 +2944,21 @@ msgid "" "translate the complete SQLite API into Python." msgstr "" -#: gnu/packages/databases.scm:3312 +#: gnu/packages/databases.scm:3608 msgid "" "The package aiosqlite replicates the standard sqlite3 module, but with\n" "async versions of all the standard connection and cursor methods, and context\n" "managers for automatically closing connections." msgstr "" -#: gnu/packages/databases.scm:3333 +#: gnu/packages/databases.scm:3629 msgid "" "This package provides the Neo4j Python driver that connects\n" "to the database using Neo4j's binary protocol. It aims to be minimal, while\n" "being idiomatic to Python." msgstr "" -#: gnu/packages/databases.scm:3353 +#: gnu/packages/databases.scm:3649 msgid "" "This package provides a client library and toolkit for\n" "working with Neo4j from within Python applications and from the command\n" @@ -2863,26 +2966,38 @@ msgid "" "designed to be easy and intuitive to use." msgstr "" -#: gnu/packages/databases.scm:3379 +#: gnu/packages/databases.scm:3675 msgid "" "psycopg2 is a thread-safe PostgreSQL adapter that implements DB-API\n" "2.0." msgstr "" -#: gnu/packages/databases.scm:3413 +#: gnu/packages/databases.scm:3702 +msgid "" +"This module provides connection pool implementations that can be used\n" +"with the @code{psycopg} PostgreSQL driver." +msgstr "" + +#: gnu/packages/databases.scm:3776 +msgid "" +"Psycopg 3 is a new implementation of the popular @code{psycopg2}\n" +"database adapter for Python." +msgstr "" + +#: gnu/packages/databases.scm:3810 msgid "" "This package provides a program to build Entity\n" "Relationship diagrams from a SQLAlchemy model (or directly from the\n" "database)." msgstr "" -#: gnu/packages/databases.scm:3443 +#: gnu/packages/databases.scm:3840 msgid "" "Yoyo is a database schema migration tool. Migrations are written as SQL\n" "files or Python scripts that define a list of migration steps." msgstr "" -#: gnu/packages/databases.scm:3464 +#: gnu/packages/databases.scm:3861 msgid "" "MySQLdb is an interface to the popular MySQL database server\n" "for Python. The design goals are:\n" @@ -2893,13 +3008,13 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/databases.scm:3490 +#: gnu/packages/databases.scm:3887 msgid "" "Python-hiredis is a python extension that wraps protocol\n" "parsing code in hiredis. It primarily speeds up parsing of multi bulk replies." msgstr "" -#: gnu/packages/databases.scm:3517 +#: gnu/packages/databases.scm:3914 msgid "" "Fakeredis is a pure-Python implementation of the redis-py Python client\n" "that simulates talking to a redis server. It was created for a single purpose:\n" @@ -2910,49 +3025,49 @@ msgid "" "reasonable substitute." msgstr "" -#: gnu/packages/databases.scm:3545 +#: gnu/packages/databases.scm:3942 msgid "This package provides a Python interface to the Redis key-value store." msgstr "" -#: gnu/packages/databases.scm:3586 +#: gnu/packages/databases.scm:3983 msgid "" "RQ (Redis Queue) is a simple Python library for queueing jobs and\n" "processing them in the background with workers. It is backed by Redis and it\n" "is designed to have a low barrier to entry." msgstr "" -#: gnu/packages/databases.scm:3623 +#: gnu/packages/databases.scm:4020 msgid "" "This package provides job scheduling capabilities to @code{python-rq}\n" "(Redis Queue)." msgstr "" -#: gnu/packages/databases.scm:3643 +#: gnu/packages/databases.scm:4040 msgid "" "@code{trollius-redis} is a Redis client for Python\n" " trollius. It is an asynchronous IO (PEP 3156) implementation of the\n" " Redis protocol." msgstr "" -#: gnu/packages/databases.scm:3686 +#: gnu/packages/databases.scm:4083 msgid "" "Sqlparse is a non-validating SQL parser for Python. It\n" "provides support for parsing, splitting and formatting SQL statements." msgstr "" -#: gnu/packages/databases.scm:3703 +#: gnu/packages/databases.scm:4101 msgid "" "@code{python-sql} is a library to write SQL queries, that\n" "transforms idiomatic python function calls to well-formed SQL queries." msgstr "" -#: gnu/packages/databases.scm:3726 +#: gnu/packages/databases.scm:4124 msgid "" "PyPika is a python SQL query builder that exposes the full richness of\n" "the SQL language using a syntax that reflects the resulting query." msgstr "" -#: gnu/packages/databases.scm:3852 +#: gnu/packages/databases.scm:4250 msgid "" "Apache Arrow is a columnar in-memory analytics layer\n" "designed to accelerate big data. It houses a set of canonical in-memory\n" @@ -2961,21 +3076,21 @@ msgid "" "algorithm implementations." msgstr "" -#: gnu/packages/databases.scm:3912 +#: gnu/packages/databases.scm:4310 msgid "" "This library provides a Pythonic API wrapper for the reference Arrow C++\n" "implementation, along with tools for interoperability with pandas, NumPy, and\n" "other traditional Python scientific computing packages." msgstr "" -#: gnu/packages/databases.scm:3933 +#: gnu/packages/databases.scm:4331 msgid "" "This package provides a Python client library for CrateDB.\n" "It implements the Python DB API 2.0 specification and includes support for\n" "SQLAlchemy." msgstr "" -#: gnu/packages/databases.scm:3952 +#: gnu/packages/databases.scm:4350 msgid "" "This library implements a database independent abstraction layer in C,\n" "similar to the DBI/DBD layer in Perl. Writing one generic set of code,\n" @@ -2983,7 +3098,7 @@ msgid "" "simultaneous database connections by using this framework." msgstr "" -#: gnu/packages/databases.scm:4018 +#: gnu/packages/databases.scm:4416 msgid "" "The @code{libdbi-drivers} library provides the database specific drivers\n" "for the @code{libdbi} framework.\n" @@ -2996,26 +3111,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/databases.scm:4060 +#: gnu/packages/databases.scm:4458 msgid "" "SOCI is an abstraction layer for several database backends, including\n" "PostreSQL, SQLite, ODBC and MySQL." msgstr "" -#: gnu/packages/databases.scm:4084 +#: gnu/packages/databases.scm:4482 msgid "" "FreeTDS is an implementation of the Tabular DataStream protocol, used for\n" "connecting to MS SQL and Sybase servers over TCP/IP." msgstr "" -#: gnu/packages/databases.scm:4106 +#: gnu/packages/databases.scm:4504 msgid "" "TinyDB is a small document oriented database written in pure Python\n" "with no external dependencies. The targets are small apps that would\n" "be blown away by a SQL-DB or an external database server." msgstr "" -#: gnu/packages/databases.scm:4154 +#: gnu/packages/databases.scm:4552 msgid "" "Sequeler is a native Linux SQL client built in Vala and\n" "Gtk. It allows you to connect to your local and remote databases, write SQL in\n" @@ -3023,7 +3138,13 @@ msgid "" "a Gtk.Grid Widget." msgstr "" -#: gnu/packages/debug.scm:111 +#: gnu/packages/databases.scm:4594 +msgid "" +"Sqlitebrowser is a high quaility, visual, open source tool to\n" +"create design, and edit database file compatible with SQLite." +msgstr "" + +#: gnu/packages/debug.scm:112 msgid "" "Delta assists you in minimizing \"interesting\" files subject to a test\n" "of their interestingness. A common such situation is when attempting to\n" @@ -3031,7 +3152,7 @@ msgid "" "program to exhibit a bug." msgstr "" -#: gnu/packages/debug.scm:172 +#: gnu/packages/debug.scm:173 msgid "" "C-Reduce is a tool that takes a large C or C++ program that has a\n" "property of interest (such as triggering a compiler bug) and automatically\n" @@ -3040,14 +3161,14 @@ msgid "" "tools that process C/C++ code." msgstr "" -#: gnu/packages/debug.scm:219 +#: gnu/packages/debug.scm:220 msgid "" "C-Vise is a Python port of the C-Reduce tool that is fully compatible\n" "and uses the same efficient LLVM-based C/C++ @code{clang_delta} reduction\n" "tool." msgstr "" -#: gnu/packages/debug.scm:289 +#: gnu/packages/debug.scm:290 msgid "" "American fuzzy lop is a security-oriented fuzzer that employs a novel\n" "type of compile-time instrumentation and genetic algorithms to automatically\n" @@ -3058,7 +3179,7 @@ msgid "" "down the road." msgstr "" -#: gnu/packages/debug.scm:433 +#: gnu/packages/debug.scm:434 msgid "" "QEMU is a generic machine emulator and virtualizer. This package\n" "of QEMU is used only by the american fuzzy lop package.\n" @@ -3074,7 +3195,7 @@ msgid "" "server and embedded PowerPC, and S390 guests." msgstr "" -#: gnu/packages/debug.scm:501 +#: gnu/packages/debug.scm:502 msgid "" "Stress Make is a customized GNU Make that explicitly manages the order\n" "in which concurrent jobs are run to provoke erroneous behavior into becoming\n" @@ -3084,14 +3205,14 @@ msgid "" "conditions." msgstr "" -#: gnu/packages/debug.scm:529 +#: gnu/packages/debug.scm:530 msgid "" "Zzuf is a transparent application input fuzzer. It works by\n" "intercepting file operations and changing random bits in the program's\n" "input. Zzuf's behaviour is deterministic, making it easy to reproduce bugs." msgstr "" -#: gnu/packages/debug.scm:581 +#: gnu/packages/debug.scm:582 msgid "" "Scanmem is a debugging utility designed to isolate the\n" "address of an arbitrary variable in an executing process. Scanmem simply\n" @@ -3100,13 +3221,13 @@ msgid "" "the position of the variable and allows you to modify its value." msgstr "" -#: gnu/packages/debug.scm:611 +#: gnu/packages/debug.scm:612 msgid "" "Remake is an enhanced version of GNU Make that adds improved\n" "error reporting, better tracing, profiling, and a debugger." msgstr "" -#: gnu/packages/debug.scm:667 +#: gnu/packages/debug.scm:668 msgid "" "rr is a lightweight tool for recording, replaying and debugging\n" "execution of applications (trees of processes and threads). Debugging extends\n" @@ -3115,13 +3236,13 @@ msgid "" "fun." msgstr "" -#: gnu/packages/debug.scm:695 +#: gnu/packages/debug.scm:696 msgid "" "The @code{libbacktrace} library can be linked into a C/C++\n" "program to produce symbolic backtraces." msgstr "" -#: gnu/packages/debug.scm:735 +#: gnu/packages/debug.scm:736 msgid "" "The libleak tool detects memory leaks by hooking memory\n" "functions such as @code{malloc}. It comes as a shared object to be pre-loaded\n" @@ -3133,7 +3254,7 @@ msgid "" "use than similar tools like @command{mtrace}." msgstr "" -#: gnu/packages/debug.scm:763 +#: gnu/packages/debug.scm:764 msgid "" "@code{cgdb} is a lightweight curses (terminal-based) interface to the\n" "GNU Debugger (GDB). In addition to the standard gdb console, cgdb provides\n" @@ -3142,7 +3263,7 @@ msgid "" "using cgdb." msgstr "" -#: gnu/packages/debug.scm:798 +#: gnu/packages/debug.scm:799 msgid "" "MspDebug supports FET430UIF, eZ430, RF2500 and Olimex\n" "MSP430-JTAG-TINY programmers, as well as many other compatible\n" @@ -3158,14 +3279,14 @@ msgid "" "multiple test suites, which are then all managed by a single harness." msgstr "" -#: gnu/packages/games.scm:287 +#: gnu/packages/games.scm:288 msgid "" "Abe's Amazing Adventure is a scrolling,\n" "platform-jumping, key-collecting, ancient pyramid exploring game, vaguely in\n" "the style of similar games for the Commodore+4." msgstr "" -#: gnu/packages/games.scm:357 +#: gnu/packages/games.scm:358 msgid "" "Adanaxis is a fast-moving first person shooter set in deep space, where\n" "the fundamentals of space itself are changed. By adding another dimension to\n" @@ -3176,7 +3297,7 @@ msgid "" "mouse and joystick control, and original music." msgstr "" -#: gnu/packages/games.scm:401 +#: gnu/packages/games.scm:402 msgid "" "Guide Alex the Allegator through the jungle in order to save his\n" "girlfriend Lola from evil humans who want to make a pair of shoes out of her.\n" @@ -3185,7 +3306,7 @@ msgid "" "The game includes a built-in editor so you can design and share your own maps." msgstr "" -#: gnu/packages/games.scm:431 +#: gnu/packages/games.scm:432 msgid "" "Armagetron Advanced is a multiplayer game in 3d that\n" "attempts to emulate and expand on the lightcycle sequence from the movie Tron.\n" @@ -3195,7 +3316,7 @@ msgid "" "physics settings to tweak as well." msgstr "" -#: gnu/packages/games.scm:489 +#: gnu/packages/games.scm:490 msgid "" "Space is a vast area, an unbounded territory where it seems there is\n" "a room for everybody, but reversal of fortune put things differently. The\n" @@ -3207,7 +3328,7 @@ msgid "" "regret their insolence." msgstr "" -#: gnu/packages/games.scm:556 +#: gnu/packages/games.scm:557 msgid "" "Bastet (short for Bastard Tetris) is a simple ncurses-based falling brick\n" "game. Unlike normal Tetris, Bastet does not choose the next brick at random.\n" @@ -3217,19 +3338,19 @@ msgid "" "canyons and wait for the long I-shaped block to clear four rows at a time." msgstr "" -#: gnu/packages/games.scm:601 +#: gnu/packages/games.scm:602 msgid "" "Tetrinet is a multiplayer Tetris-like game with powerups and\n" "attacks you can use on opponents." msgstr "" -#: gnu/packages/games.scm:635 +#: gnu/packages/games.scm:636 msgid "" "Vitetris is a classic multiplayer Tetris clone for the\n" "terminal." msgstr "" -#: gnu/packages/games.scm:678 +#: gnu/packages/games.scm:679 msgid "" "Blobwars: Metal Blob Solid is a 2D platform game, the first\n" "in the Blobwars series. You take on the role of a fearless Blob agent. Your\n" @@ -3237,7 +3358,7 @@ msgid "" "possible, while battling many vicious aliens." msgstr "" -#: gnu/packages/games.scm:771 +#: gnu/packages/games.scm:772 msgid "" "These are the BSD games. See the fortune-mod package for fortunes.\n" "\n" @@ -3270,7 +3391,7 @@ msgid "" "Quizzes: arithmetic and quiz." msgstr "" -#: gnu/packages/games.scm:866 +#: gnu/packages/games.scm:867 msgid "" "BZFlag is a 3D multi-player multiplatform tank battle game that\n" "allows users to play against each other in a network environment.\n" @@ -3290,7 +3411,7 @@ msgid "" "high a score as possible." msgstr "" -#: gnu/packages/games.scm:949 +#: gnu/packages/games.scm:950 msgid "" "Cataclysm: Dark Days Ahead (or \"DDA\" for short) is a roguelike set\n" "in a post-apocalyptic world. Struggle to survive in a harsh, persistent,\n" @@ -3302,7 +3423,7 @@ msgid "" "want what you have." msgstr "" -#: gnu/packages/games.scm:998 +#: gnu/packages/games.scm:999 msgid "" "Cockatrice is a program for playing tabletop card games\n" "over a network. Its server design prevents users from manipulating the game\n" @@ -3310,7 +3431,7 @@ msgid "" "allows users to brew while offline." msgstr "" -#: gnu/packages/games.scm:1052 +#: gnu/packages/games.scm:1053 msgid "" "This package provides a reimplementation of the 1997 Bullfrog business\n" "simulation game @i{Theme Hospital}. As well as faithfully recreating the\n" @@ -3318,7 +3439,7 @@ msgid "" "more. This package does @emph{not} provide the game assets." msgstr "" -#: gnu/packages/games.scm:1094 +#: gnu/packages/games.scm:1095 msgid "" "Cowsay is basically a text filter. Send some text into it,\n" "and you get a cow saying your text. If you think a talking cow isn't enough,\n" @@ -3326,21 +3447,21 @@ msgid "" "tired of cows, a variety of other ASCII-art messengers are available." msgstr "" -#: gnu/packages/games.scm:1135 +#: gnu/packages/games.scm:1136 msgid "" "@command{lolcat} concatenates files and streams like\n" "regular @command{cat}, but it also adds terminal escape codes between\n" "characters and lines resulting in a rainbow effect." msgstr "" -#: gnu/packages/games.scm:1164 +#: gnu/packages/games.scm:1165 #, scheme-format msgid "" "This package provides the Fallout 2 game engine. Game data\n" "should be placed in @file{~/.local/share/falltergeist}." msgstr "" -#: gnu/packages/games.scm:1275 +#: gnu/packages/games.scm:1276 msgid "" "FooBillard++ is an advanced 3D OpenGL billiard game\n" "based on the original foobillard 3.0a sources from Florian Berger.\n" @@ -3362,7 +3483,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:1342 +#: gnu/packages/games.scm:1343 msgid "" "The Freedoom project aims to create a complete free content first person\n" "shooter game. Freedoom by itself is just the raw material for a game: it must\n" @@ -3371,7 +3492,7 @@ msgid "" "effects and music to make a completely free game." msgstr "" -#: gnu/packages/games.scm:1392 +#: gnu/packages/games.scm:1394 msgid "" "Freedroid RPG is an @dfn{RPG} (Role-Playing Game) with isometric graphics.\n" "The game tells the story of a world destroyed by a conflict between robots and\n" @@ -3381,7 +3502,7 @@ msgid "" "real-time combat." msgstr "" -#: gnu/packages/games.scm:1471 +#: gnu/packages/games.scm:1473 msgid "" "Golly simulates Conway's Game of Life and many other types of cellular\n" "automata. The following features are available:\n" @@ -3402,7 +3523,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:1527 +#: gnu/packages/games.scm:1529 #, fuzzy #| msgid "This package provides a dictionary for the GNU Aspell spell checker." msgid "" @@ -3410,7 +3531,7 @@ msgid "" "Joy-Con controllers." msgstr "此软件包为 GNU Aspell 拼写检查器提供词典。" -#: gnu/packages/games.scm:1557 +#: gnu/packages/games.scm:1559 msgid "" "Engine for Caesar III, a city-building real-time strategy game.\n" "Julius includes some UI enhancements while preserving the logic (including\n" @@ -3418,7 +3539,7 @@ msgid "" "does not include game data." msgstr "" -#: gnu/packages/games.scm:1591 +#: gnu/packages/games.scm:1593 msgid "" "Fork of Julius, an engine for the a city-building real-time strategy\n" "game Caesar III. Gameplay enhancements include:\n" @@ -3433,7 +3554,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/games.scm:1630 +#: gnu/packages/games.scm:1632 msgid "" "Me and My Shadow is a puzzle/platform game in which you try\n" "to reach the exit by solving puzzles. Spikes, moving blocks, fragile blocks\n" @@ -3441,7 +3562,7 @@ msgid "" "shadow mimic them to reach blocks you couldn't reach alone." msgstr "" -#: gnu/packages/games.scm:1686 +#: gnu/packages/games.scm:1688 msgid "" "@code{Open Surge} is a 2D retro side-scrolling platformer\n" "inspired by the Sonic games. The player runs at high speeds through each\n" @@ -3449,7 +3570,7 @@ msgid "" "built-in level editor." msgstr "" -#: gnu/packages/games.scm:1732 +#: gnu/packages/games.scm:1734 msgid "" "Knights is a multiplayer game involving several knights who\n" "must run around a dungeon and complete various quests. Each game revolves\n" @@ -3461,7 +3582,7 @@ msgid "" "destroying an ancient book using a special wand." msgstr "" -#: gnu/packages/games.scm:1780 +#: gnu/packages/games.scm:1781 msgid "" "GNOME 2048 provides a 2D grid for playing 2048, a\n" "single-player sliding tile puzzle game. The objective of the game is to merge\n" @@ -3469,7 +3590,7 @@ msgid "" "in one tile." msgstr "" -#: gnu/packages/games.scm:1819 +#: gnu/packages/games.scm:1820 msgid "" "GNOME Chess provides a 2D board for playing chess games\n" "against human or computer players. It supports loading and saving games in\n" @@ -3477,7 +3598,7 @@ msgid "" "such as chess or stockfish." msgstr "" -#: gnu/packages/games.scm:1880 +#: gnu/packages/games.scm:1881 msgid "" "The GNU backgammon application (also known as \"gnubg\") can\n" "be used for playing, analyzing and teaching the game. It has an advanced\n" @@ -3486,7 +3607,7 @@ msgid "" "also features an attractive, 3D representation of the playing board." msgstr "" -#: gnu/packages/games.scm:1921 +#: gnu/packages/games.scm:1922 msgid "" "GNUbik is a puzzle game in which you must manipulate a cube to make\n" "each of its faces have a uniform color. The game is customizable, allowing\n" @@ -3495,13 +3616,13 @@ msgid "" "scriptable with Guile." msgstr "" -#: gnu/packages/games.scm:1944 +#: gnu/packages/games.scm:1945 msgid "" "GNU Shogi is a program that plays the game Shogi (Japanese\n" "Chess). It is similar to standard chess but this variant is far more complicated." msgstr "" -#: gnu/packages/games.scm:1974 +#: gnu/packages/games.scm:1975 msgid "" "LTris is a tetris clone: differently shaped blocks are falling down the\n" "rectangular playing field and can be moved sideways or rotated by 90 degree\n" @@ -3515,7 +3636,7 @@ msgid "" "watch your CPU playing while enjoying a cup of tea!" msgstr "" -#: gnu/packages/games.scm:2097 +#: gnu/packages/games.scm:2098 msgid "" "NetHack is a single player dungeon exploration game that runs\n" "on a wide variety of computer systems, with a variety of graphical and text\n" @@ -3529,7 +3650,7 @@ msgid "" "role, and your gender." msgstr "" -#: gnu/packages/games.scm:2141 +#: gnu/packages/games.scm:2142 msgid "" "PipeWalker is a simple puzzle game with many diffent themes: connect all\n" "computers to one network server, bring water from a source to the taps, etc.\n" @@ -3538,17 +3659,17 @@ msgid "" "Every puzzle has a complete solution, although there may be more than one." msgstr "" -#: gnu/packages/games.scm:2190 +#: gnu/packages/games.scm:2191 msgid "PrBoom+ is a Doom source port developed from the original PrBoom project." msgstr "" -#: gnu/packages/games.scm:2240 +#: gnu/packages/games.scm:2241 msgid "" "ReTux is an action platformer loosely inspired by the Mario games,\n" "utilizing the art assets from the @code{SuperTux} project." msgstr "" -#: gnu/packages/games.scm:2350 +#: gnu/packages/games.scm:2351 msgid "" "RogueBox Adventures is a graphical roguelike with strong influences\n" "from sandbox games like Minecraft or Terraria. The main idea of RogueBox\n" @@ -3556,7 +3677,7 @@ msgid "" "can be explored and changed freely." msgstr "" -#: gnu/packages/games.scm:2462 +#: gnu/packages/games.scm:2463 msgid "" "Barbie Seahorse Adventures is a retro style platform arcade game.\n" "You are Barbie the seahorse who travels through the jungle, up to the\n" @@ -3566,27 +3687,27 @@ msgid "" "and defeat them with your bubbles!" msgstr "" -#: gnu/packages/games.scm:2522 +#: gnu/packages/games.scm:2523 msgid "" "Solarus is a 2D game engine written in C++, that can run games\n" "scripted in Lua. It has been designed with 16-bit classic Action-RPGs\n" "in mind." msgstr "" -#: gnu/packages/games.scm:2551 +#: gnu/packages/games.scm:2552 msgid "" "Solarus Quest Editor is a graphical user interface to create and\n" "modify quests for the Solarus engine." msgstr "" -#: gnu/packages/games.scm:2627 +#: gnu/packages/games.scm:2628 msgid "" "In SuperStarfighter, up to four local players compete in a\n" "2D arena with fast-moving ships and missiles. Different game types are\n" "available, as well as a single-player mode with AI-controlled ships." msgstr "" -#: gnu/packages/games.scm:2760 +#: gnu/packages/games.scm:2761 msgid "" "Trigger-rally is a 3D rally simulation with great physics\n" "for drifting on over 200 maps. Different terrain materials like dirt,\n" @@ -3598,17 +3719,17 @@ msgid "" "equipped with spoken co-driver notes and co-driver icons." msgstr "" -#: gnu/packages/games.scm:2816 +#: gnu/packages/games.scm:2817 msgid "" "This package provides @command{ufo2map}, a program used to generate\n" "maps for the UFO: Alien Invasion strategy game." msgstr "" -#: gnu/packages/games.scm:2858 +#: gnu/packages/games.scm:2859 msgid "This package contains maps and other assets for UFO: Alien Invasion." msgstr "" -#: gnu/packages/games.scm:2945 +#: gnu/packages/games.scm:2946 msgid "" "UFO: Alien Invasion is a tactical strategy game set in the year 2084.\n" "You control a secret organisation charged with defending Earth from a brutal\n" @@ -3626,11 +3747,11 @@ msgid "" "properly." msgstr "" -#: gnu/packages/games.scm:2982 +#: gnu/packages/games.scm:2983 msgid "A graphical user interface for the package @code{gnushogi}." msgstr "" -#: gnu/packages/games.scm:3035 +#: gnu/packages/games.scm:3036 msgid "" "L'Abbaye des Morts is a 2D platform game set in 13th century\n" "France. The Cathars, who preach about good Christian beliefs, were being\n" @@ -3639,14 +3760,14 @@ msgid "" "that beneath its ruins lay buried an ancient evil." msgstr "" -#: gnu/packages/games.scm:3081 +#: gnu/packages/games.scm:3082 msgid "" "Angband is a Classic dungeon exploration roguelike. Explore\n" "the depths below Angband, seeking riches, fighting monsters, and preparing to\n" "fight Morgoth, the Lord of Darkness." msgstr "" -#: gnu/packages/games.scm:3129 +#: gnu/packages/games.scm:3130 msgid "" "Pingus is a free Lemmings-like puzzle game in which the player takes\n" "command of a bunch of small animals and has to guide them through levels.\n" @@ -3656,21 +3777,21 @@ msgid "" "level's exit. The game is presented in a 2D side view." msgstr "" -#: gnu/packages/games.scm:3152 +#: gnu/packages/games.scm:3153 msgid "" "The GNU Talk Filters are programs that convert English text\n" "into stereotyped or otherwise humorous dialects. The filters are provided as\n" "a C library, so they can easily be integrated into other programs." msgstr "" -#: gnu/packages/games.scm:3196 +#: gnu/packages/games.scm:3197 msgid "" "The player controls a character (one of three: Good, Bad, and Dead),\n" "dodges the missiles (lots of it cover the screen, but the character's hitbox\n" "is very small), and shoot at the adversaries that keep appear on the screen." msgstr "" -#: gnu/packages/games.scm:3239 +#: gnu/packages/games.scm:3240 msgid "" "CMatrix simulates the display from \"The Matrix\" and is\n" "based on the screensaver from the movie's website. It works with terminal\n" @@ -3678,7 +3799,7 @@ msgid "" "asynchronously and at a user-defined speed." msgstr "" -#: gnu/packages/games.scm:3270 +#: gnu/packages/games.scm:3271 #, fuzzy msgid "" "GNU Chess is a chess engine. It allows you to compete\n" @@ -3689,7 +3810,7 @@ msgstr "" "和电脑下棋,可以通过默认的终端机\n" "界面或通过外部可视化界面,如GNU XBoard。" -#: gnu/packages/games.scm:3332 +#: gnu/packages/games.scm:3333 msgid "" "GNU FreeDink is a free and portable re-implementation of the engine\n" "for the role-playing game Dink Smallwood. It supports not only the original\n" @@ -3697,11 +3818,11 @@ msgid "" "To that extent, it also includes a front-end for managing all of your D-Mods." msgstr "" -#: gnu/packages/games.scm:3360 +#: gnu/packages/games.scm:3361 msgid "This package contains the game data of GNU Freedink." msgstr "这个软件包包含了 GNU Freedink 的游戏数据。" -#: gnu/packages/games.scm:3383 +#: gnu/packages/games.scm:3384 #, fuzzy msgid "" "DFArc makes it easy to play and manage the GNU FreeDink game\n" @@ -3710,7 +3831,7 @@ msgstr "" "DFArc 使您可以轻松地玩和管理 GNU FreeDink 游戏\n" "以及其众多的 D-Mod。" -#: gnu/packages/games.scm:3453 +#: gnu/packages/games.scm:3454 #, fuzzy msgid "" "GNU XBoard is a graphical board for all varieties of chess,\n" @@ -3725,7 +3846,7 @@ msgstr "" "完全交互式的图形界面,它可以加载和保存游戏中的游戏\n" "便携式游戏符号。" -#: gnu/packages/games.scm:3488 +#: gnu/packages/games.scm:3489 msgid "" "GNU Typist is a universal typing tutor. It can be used to learn and\n" "practice touch-typing. Several tutorials are included; in addition to\n" @@ -3734,7 +3855,7 @@ msgid "" "are primarily in English, however some in other languages are provided." msgstr "" -#: gnu/packages/games.scm:3560 +#: gnu/packages/games.scm:3561 msgid "" "The Irrlicht Engine is a high performance realtime 3D engine written in\n" "C++. Features include an OpenGL renderer, extensible materials, scene graph\n" @@ -3742,7 +3863,7 @@ msgid "" "for common mesh file formats, and collision detection." msgstr "" -#: gnu/packages/games.scm:3611 +#: gnu/packages/games.scm:3612 msgid "" "M.A.R.S. is a 2D space shooter with pretty visual effects and\n" "attractive physics. Players can battle each other or computer controlled\n" @@ -3750,7 +3871,7 @@ msgid "" "match, cannon keep, and grave-itation pit." msgstr "" -#: gnu/packages/games.scm:3650 +#: gnu/packages/games.scm:3651 msgid "" "Glk defines a portable API for applications with text UIs. It was\n" "primarily designed for interactive fiction, but it should be suitable for many\n" @@ -3759,7 +3880,7 @@ msgid "" "using the @code{curses.h} library for screen control." msgstr "" -#: gnu/packages/games.scm:3690 +#: gnu/packages/games.scm:3691 msgid "" "Glulx is a 32-bit portable virtual machine intended for writing and\n" "playing interactive fiction. It was designed by Andrew Plotkin to relieve\n" @@ -3767,28 +3888,28 @@ msgid "" "reference interpreter, using the Glk API." msgstr "" -#: gnu/packages/games.scm:3716 +#: gnu/packages/games.scm:3717 msgid "" "Fifechan is a lightweight cross platform GUI library written in C++\n" "specifically designed for games. It has a built in set of extendable GUI\n" "Widgets, and allows users to create more." msgstr "" -#: gnu/packages/games.scm:3791 +#: gnu/packages/games.scm:3792 msgid "" "@acronym{FIFE, Flexible Isometric Free Engine} is a multi-platform\n" "isometric game engine. Python bindings are included allowing users to create\n" "games using Python as well as C++." msgstr "" -#: gnu/packages/games.scm:3826 +#: gnu/packages/games.scm:3827 msgid "" "Fizmo is a console-based Z-machine interpreter. It is used to play\n" "interactive fiction, also known as text adventures, which were implemented\n" "either by Infocom or created using the Inform compiler." msgstr "" -#: gnu/packages/games.scm:3849 +#: gnu/packages/games.scm:3850 msgid "" "GNU Go is a program that plays the game of Go, in which players\n" "place stones on a grid to form territory or capture other stones. While\n" @@ -3799,7 +3920,7 @@ msgid "" "Protocol)." msgstr "" -#: gnu/packages/games.scm:3878 +#: gnu/packages/games.scm:3879 msgid "" "Extreme Tux Racer, or etracer as it is called for short, is\n" "a simple OpenGL racing game featuring Tux, the Linux mascot. The goal of the\n" @@ -3812,7 +3933,7 @@ msgid "" "This game is based on the GPL version of the famous game TuxRacer." msgstr "" -#: gnu/packages/games.scm:3952 +#: gnu/packages/games.scm:3953 msgid "" "SuperTuxKart is a 3D kart racing game, with a focus on\n" "having fun over realism. You can play with up to 4 friends on one PC, racing\n" @@ -3820,7 +3941,7 @@ msgid "" "also available." msgstr "" -#: gnu/packages/games.scm:4028 +#: gnu/packages/games.scm:4029 msgid "" "Unknown Horizons is a 2D realtime strategy simulation with an emphasis\n" "on economy and city building. Expand your small settlement to a strong and\n" @@ -3829,7 +3950,7 @@ msgid "" "trade and diplomacy." msgstr "" -#: gnu/packages/games.scm:4081 +#: gnu/packages/games.scm:4082 msgid "" "GNUjump is a simple, yet addictive game in which you must jump from\n" "platform to platform to avoid falling, while the platforms drop at faster rates\n" @@ -3837,7 +3958,7 @@ msgid "" "falling, themeable graphics and sounds, and replays." msgstr "" -#: gnu/packages/games.scm:4117 +#: gnu/packages/games.scm:4118 msgid "" "The Battle for Wesnoth is a fantasy, turn based tactical strategy game,\n" "with several single player campaigns, and multiplayer games (both networked and\n" @@ -3849,20 +3970,20 @@ msgid "" "next campaign." msgstr "" -#: gnu/packages/games.scm:4137 +#: gnu/packages/games.scm:4138 msgid "" "This package contains a dedicated server for @emph{The\n" "Battle for Wesnoth}." msgstr "" -#: gnu/packages/games.scm:4179 +#: gnu/packages/games.scm:4180 msgid "" "Gamine is a game designed for young children who are learning to use the\n" "mouse and keyboard. The child uses the mouse to draw colored dots and lines\n" "on the screen and keyboard to display letters." msgstr "" -#: gnu/packages/games.scm:4211 +#: gnu/packages/games.scm:4212 msgid "" "ManaPlus is a 2D MMORPG client for game servers. It is the only\n" "fully supported client for @uref{http://www.themanaworld.org, The mana\n" @@ -3870,7 +3991,7 @@ msgid "" "@uref{http://landoffire.org, Land of fire}." msgstr "" -#: gnu/packages/games.scm:4243 +#: gnu/packages/games.scm:4244 msgid "" "OpenTTD is a game in which you transport goods and\n" "passengers by land, water and air. It is a re-implementation of Transport\n" @@ -3880,7 +4001,7 @@ msgid "" "engine. When you start it you will be prompted to download a graphics set." msgstr "" -#: gnu/packages/games.scm:4303 +#: gnu/packages/games.scm:4304 msgid "" "The OpenGFX project is an implementation of the OpenTTD base graphics\n" "set that aims to ensure the best possible out-of-the-box experience.\n" @@ -3895,29 +4016,29 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/games.scm:4361 +#: gnu/packages/games.scm:4362 msgid "" "OpenSFX is a set of free base sounds for OpenTTD which make\n" "it possible to play OpenTTD without requiring the proprietary sound files from\n" "the original Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4404 +#: gnu/packages/games.scm:4405 msgid "" "OpenMSX is a music set for OpenTTD which makes it possible\n" "to play OpenTTD without requiring the proprietary music from the original\n" "Transport Tycoon Deluxe." msgstr "" -#: gnu/packages/games.scm:4473 +#: gnu/packages/games.scm:4474 msgid "openrct2-title-sequences is a set of title sequences for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4513 +#: gnu/packages/games.scm:4514 msgid "openrct2-objects is a set of objects for OpenRCT2." msgstr "" -#: gnu/packages/games.scm:4576 +#: gnu/packages/games.scm:4577 msgid "" "OpenRCT2 is a free software re-implementation of\n" "RollerCoaster Tycoon 2 (RCT2). The gameplay revolves around building and\n" @@ -3927,27 +4048,27 @@ msgid "" "images, etc.)" msgstr "" -#: gnu/packages/games.scm:4630 +#: gnu/packages/games.scm:4631 msgid "" "The Emilia Pinball Project is a pinball simulator. There\n" "are only two levels to play with, but they are very addictive." msgstr "" -#: gnu/packages/games.scm:4659 +#: gnu/packages/games.scm:4660 msgid "" "Pioneers is an emulation of the board game The Settlers of\n" "Catan. It can be played on a local network, on the internet, and with AI\n" "players." msgstr "" -#: gnu/packages/games.scm:4701 +#: gnu/packages/games.scm:4702 msgid "" "The goal of this logic game is to open all cards in a 6x6\n" "grid, using a number of hints as to their relative position. The game idea\n" "is attributed to Albert Einstein." msgstr "" -#: gnu/packages/games.scm:4731 +#: gnu/packages/games.scm:4732 msgid "" "POWWOW is a client software which can be used for telnet as well as for\n" "@dfn{Multi-User Dungeon} (MUD). Additionally it can serve as a nice client for\n" @@ -3955,21 +4076,21 @@ msgid "" "http://lavachat.symlynx.com/unix/" msgstr "" -#: gnu/packages/games.scm:4838 +#: gnu/packages/games.scm:4839 msgid "" "Red Eclipse is an arena shooter, created from the Cube2 engine.\n" "Offering an innovative parkour system and distinct but all potent weapons,\n" "Red Eclipse provides fast paced and accessible gameplay." msgstr "" -#: gnu/packages/games.scm:4903 +#: gnu/packages/games.scm:4904 msgid "" "Grue Hunter is a text adventure game written in Perl. You must make\n" "your way through an underground cave system in search of the Grue. Can you\n" "capture it and get out alive?" msgstr "" -#: gnu/packages/games.scm:4942 +#: gnu/packages/games.scm:4943 msgid "" "lierolibre is an earthworm action game where you fight another player\n" "(or the computer) underground using a wide array of weapons.\n" @@ -3994,14 +4115,14 @@ msgid "" "fullscreen, use F5 or Alt+Enter." msgstr "" -#: gnu/packages/games.scm:5021 +#: gnu/packages/games.scm:5022 msgid "" "Tennix is a 2D tennis game. You can play against the\n" "computer or against another player using the keyboard. The game runs\n" "in-window at 640x480 resolution or fullscreen." msgstr "" -#: gnu/packages/games.scm:5105 +#: gnu/packages/games.scm:5106 msgid "" "Warzone 2100 offers campaign, multi-player, and single-player skirmish\n" "modes. An extensive tech tree with over 400 different technologies, combined\n" @@ -4009,7 +4130,7 @@ msgid "" "tactics." msgstr "" -#: gnu/packages/games.scm:5184 +#: gnu/packages/games.scm:5185 msgid "" "In Widelands, you are the regent of a small clan. You start out with\n" "nothing but your headquarters, where all your resources are stored.\n" @@ -4031,7 +4152,7 @@ msgid "" "of war. Widelands also offers an Artificial Intelligence to challenge you." msgstr "" -#: gnu/packages/games.scm:5236 +#: gnu/packages/games.scm:5237 msgid "" "In the year 2579, the intergalactic weapons corporation, WEAPCO, has\n" "dominated the galaxy. Guide Chris Bainfield and his friend Sid Wilson on\n" @@ -4040,7 +4161,7 @@ msgid "" "in strikes against the evil corporation." msgstr "" -#: gnu/packages/games.scm:5267 +#: gnu/packages/games.scm:5268 msgid "" "In this game you are the captain of the cargo ship Chromium B.S.U. and\n" "are responsible for delivering supplies to the troops on the front line. Your\n" @@ -4048,7 +4169,7 @@ msgid "" "safety of the Chromium vessel." msgstr "" -#: gnu/packages/games.scm:5350 +#: gnu/packages/games.scm:5351 msgid "" "Tux Paint is a free drawing program designed for young children (kids\n" "ages 3 and up). It has a simple, easy-to-use interface; fun sound effects;\n" @@ -4057,23 +4178,23 @@ msgid "" "your child be creative." msgstr "" -#: gnu/packages/games.scm:5390 +#: gnu/packages/games.scm:5391 msgid "" "This package contains a set of \"Rubber Stamp\" images which can be used\n" "with the \"Stamp\" tool within Tux Paint." msgstr "" -#: gnu/packages/games.scm:5439 +#: gnu/packages/games.scm:5440 msgid "Tux Paint Config is a graphical configuration editor for Tux Paint." msgstr "" -#: gnu/packages/games.scm:5491 +#: gnu/packages/games.scm:5492 msgid "" "SuperTux is a classic 2D jump'n run sidescroller game in\n" "a style similar to the original Super Mario games." msgstr "" -#: gnu/packages/games.scm:5523 +#: gnu/packages/games.scm:5524 msgid "" "TinTin++ is a MUD client which supports MCCP (Mud Client Compression\n" "Protocol), MMCP (Mud Master Chat Protocol), xterm 256 colors, most TELNET\n" @@ -4081,7 +4202,7 @@ msgid "" "Linux / Mac OS X servers, and an auto mapper with a VT100 map display." msgstr "" -#: gnu/packages/games.scm:5563 +#: gnu/packages/games.scm:5564 msgid "" "Learn programming, playing with ants and spider webs ;-)\n" "Your robot ant can be programmed in many languages: OCaml, Python, C, C++,\n" @@ -4089,14 +4210,14 @@ msgid "" "programmers may also add their own favorite language." msgstr "" -#: gnu/packages/games.scm:5602 +#: gnu/packages/games.scm:5603 msgid "" "Bambam is a simple baby keyboard (and gamepad) masher\n" "application that locks the keyboard and mouse and instead displays bright\n" "colors, pictures, and sounds." msgstr "" -#: gnu/packages/games.scm:5663 +#: gnu/packages/games.scm:5664 msgid "" "Mr. Rescue is an arcade styled 2d action game centered around evacuating\n" "civilians from burning buildings. The game features fast-paced fire\n" @@ -4104,7 +4225,7 @@ msgid "" "throwing people around in pseudo-randomly generated buildings." msgstr "" -#: gnu/packages/games.scm:5770 +#: gnu/packages/games.scm:5771 msgid "" "HyperRogue is a game in which the player collects treasures and fights\n" "monsters -- rogue-like but for the fact that it is played on the hyperbolic\n" @@ -4118,13 +4239,13 @@ msgid "" "symbols, it still needs graphics to render the non-euclidean world." msgstr "" -#: gnu/packages/games.scm:5817 +#: gnu/packages/games.scm:5818 msgid "" "Kobo Deluxe is an enhanced version of Akira Higuchi's XKobo graphical game\n" "for Un*x systems with X11." msgstr "" -#: gnu/packages/games.scm:5845 +#: gnu/packages/games.scm:5846 msgid "" "Freeciv is a turn-based empire building strategy game\n" "inspired by the history of human civilization. The game commences in\n" @@ -4132,7 +4253,7 @@ msgid "" "into the Space Age." msgstr "" -#: gnu/packages/games.scm:5878 +#: gnu/packages/games.scm:5879 msgid "" "@code{No More Secrets} provides a command line tool called \"nms\"\n" "that recreates the famous data decryption effect seen on screen in the 1992\n" @@ -4143,25 +4264,25 @@ msgid "" "starting a decryption sequence to reveal the original plaintext characters." msgstr "" -#: gnu/packages/games.scm:5906 +#: gnu/packages/games.scm:5907 msgid "This package contains the data files required for MegaGlest." msgstr "" -#: gnu/packages/games.scm:5961 +#: gnu/packages/games.scm:5962 msgid "" "MegaGlest is a cross-platform 3D real-time strategy (RTS)\n" "game, where you control the armies of one of seven different factions: Tech,\n" "Magic, Egypt, Indians, Norsemen, Persian or Romans." msgstr "" -#: gnu/packages/games.scm:6013 +#: gnu/packages/games.scm:6014 msgid "" "In FreeGish you control Gish, a ball of tar who lives\n" "happily with his girlfriend Brea, until one day a mysterious dark creature\n" "emerges from a sewer hole and pulls her below ground." msgstr "" -#: gnu/packages/games.scm:6049 +#: gnu/packages/games.scm:6050 msgid "" "C-Dogs SDL is a classic overhead run-and-gun game,\n" "supporting up to 4 players in co-op and deathmatch modes. Customize your\n" @@ -4169,21 +4290,21 @@ msgid "" "over 100 user-created campaigns." msgstr "" -#: gnu/packages/games.scm:6149 +#: gnu/packages/games.scm:6150 msgid "" "Kiki the nano bot is a 3D puzzle game. It is basically a\n" "mixture of the games Sokoban and Kula-World. Your task is to help Kiki, a\n" "small robot living in the nano world, repair its maker." msgstr "" -#: gnu/packages/games.scm:6225 +#: gnu/packages/games.scm:6226 msgid "" "Teeworlds is an online multiplayer game. Battle with up to\n" "16 players in a variety of game modes, including Team Deathmatch and Capture\n" "The Flag. You can even design your own maps!" msgstr "" -#: gnu/packages/games.scm:6285 +#: gnu/packages/games.scm:6286 msgid "" "Enigma is a puzzle game with 550 unique levels. The object\n" "of the game is to find and uncover pairs of identically colored ‘Oxyd’ stones.\n" @@ -4195,7 +4316,7 @@ msgid "" "with the mouse isn’t always trivial." msgstr "" -#: gnu/packages/games.scm:6319 +#: gnu/packages/games.scm:6320 msgid "" "Chroma is an abstract puzzle game. A variety of colourful\n" "shapes are arranged in a series of increasingly complex patterns, forming\n" @@ -4205,7 +4326,7 @@ msgid "" "becoming difficult enough to tax even the brightest of minds." msgstr "" -#: gnu/packages/games.scm:6384 +#: gnu/packages/games.scm:6385 msgid "" "Fish Fillets NG is strictly a puzzle game. The goal in\n" "every of the seventy levels is always the same: find a safe way out. The fish\n" @@ -4214,14 +4335,14 @@ msgid "" "fish. The whole game is accompanied by quiet, comforting music." msgstr "" -#: gnu/packages/games.scm:6452 +#: gnu/packages/games.scm:6453 msgid "" "Dungeon Crawl Stone Soup (also known as \"Crawl\" or DCSS\n" "for short) is a roguelike adventure through dungeons filled with dangerous\n" "monsters in a quest to find the mystifyingly fabulous Orb of Zot." msgstr "" -#: gnu/packages/games.scm:6529 +#: gnu/packages/games.scm:6530 msgid "" "Lugaru is a third-person action game. The main character,\n" "Turner, is an anthropomorphic rebel bunny rabbit with impressive combat skills.\n" @@ -4231,11 +4352,11 @@ msgid "" "fight against their plot and save his fellow rabbits from slavery." msgstr "" -#: gnu/packages/games.scm:6574 +#: gnu/packages/games.scm:6575 msgid "0ad-data provides the data files required by the game 0ad." msgstr "" -#: gnu/packages/games.scm:6710 +#: gnu/packages/games.scm:6711 msgid "" "0 A.D. is a real-time strategy (RTS) game of ancient\n" "warfare. It's a historically-based war/economy game that allows players to\n" @@ -4245,7 +4366,7 @@ msgid "" "0ad needs a window manager that supports 'Extended Window Manager Hints'." msgstr "" -#: gnu/packages/games.scm:6776 +#: gnu/packages/games.scm:6777 msgid "" "The original Colossal Cave Adventure from 1976 was the origin of all\n" "text adventures, dungeon-crawl (computer) games, and computer-hosted\n" @@ -4254,7 +4375,7 @@ msgid "" "``adventure 2.5'' and ``430-point adventure''." msgstr "" -#: gnu/packages/games.scm:6899 +#: gnu/packages/games.scm:6900 msgid "" "Tales of Maj’Eyal (ToME) RPG, featuring tactical turn-based\n" "combat and advanced character building. Play as one of many unique races and\n" @@ -4265,21 +4386,21 @@ msgid "" "Tales of Maj’Eyal offers engaging roguelike gameplay for the 21st century." msgstr "" -#: gnu/packages/games.scm:6945 +#: gnu/packages/games.scm:6946 msgid "" "Quakespasm is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7002 +#: gnu/packages/games.scm:7003 msgid "" "vkquake is a modern engine for id software's Quake 1.\n" "It includes support for 64 bit CPUs, custom music playback, a new sound driver,\n" "some graphical niceities, and numerous bug-fixes and other improvements." msgstr "" -#: gnu/packages/games.scm:7067 +#: gnu/packages/games.scm:7068 msgid "" "Yamagi Quake II is an enhanced client for id Software's Quake II.\n" "The main focus is an unchanged single player experience like back in 1997,\n" @@ -4289,18 +4410,18 @@ msgid "" "making Yamagi Quake II one of the most solid Quake II implementations available." msgstr "" -#: gnu/packages/games.scm:7100 +#: gnu/packages/games.scm:7101 msgid "Nudoku is a ncurses-based Sudoku game for your terminal." msgstr "" -#: gnu/packages/games.scm:7146 +#: gnu/packages/games.scm:7147 msgid "" "The Butterfly Effect (tbe) is a game that uses\n" "realistic physics simulations to combine lots of simple mechanical\n" "elements to achieve a simple goal in the most complex way possible." msgstr "" -#: gnu/packages/games.scm:7192 +#: gnu/packages/games.scm:7193 msgid "" "Pioneer is a space adventure game set in our galaxy at the turn of the\n" "31st century. The game is open-ended, and you are free to eke out whatever\n" @@ -4311,14 +4432,14 @@ msgid "" "whatever you make of it." msgstr "" -#: gnu/packages/games.scm:7221 +#: gnu/packages/games.scm:7222 msgid "" "Badass generates false commits for a range of dates, essentially\n" "hacking the gamification of contribution graphs on platforms such as\n" "Github or Gitlab." msgstr "" -#: gnu/packages/games.scm:7294 +#: gnu/packages/games.scm:7295 msgid "" "Colobot: Gold Edition is a real-time strategy game, where\n" "you can program your units (bots) in a language called CBOT, which is similar\n" @@ -4326,7 +4447,7 @@ msgid "" "You can save humanity and get programming skills!" msgstr "" -#: gnu/packages/games.scm:7386 +#: gnu/packages/games.scm:7387 msgid "" "GZdoom is a port of the Doom 2 game engine, with a modern\n" "renderer. It improves modding support with ZDoom's advanced mapping features\n" @@ -4334,14 +4455,14 @@ msgid "" "Strife, Chex Quest, and fan-created games like Harmony, Hacx and Freedoom." msgstr "" -#: gnu/packages/games.scm:7425 +#: gnu/packages/games.scm:7426 msgid "" "Odamex is a modification of the Doom engine that\n" "allows players to easily join servers dedicated to playing Doom\n" "online." msgstr "" -#: gnu/packages/games.scm:7453 +#: gnu/packages/games.scm:7454 msgid "" "Chocolate Doom takes a different approach to other source ports. Its\n" "aim is to accurately reproduce the experience of playing Vanilla Doom. It is\n" @@ -4354,7 +4475,7 @@ msgid "" "affect gameplay)." msgstr "" -#: gnu/packages/games.scm:7493 +#: gnu/packages/games.scm:7494 msgid "" "Crispy Doom is a friendly fork of Chocolate Doom that provides a higher\n" "display resolution, removes the static limits of the Doom engine and offers\n" @@ -4363,21 +4484,21 @@ msgid "" "original." msgstr "" -#: gnu/packages/games.scm:7566 +#: gnu/packages/games.scm:7567 msgid "This package provides C11 / gnu11 utilities C library" msgstr "" -#: gnu/packages/games.scm:7635 +#: gnu/packages/games.scm:7636 msgid "" "Fortune is a command-line utility which displays a random\n" "quotation from a collection of quotes." msgstr "" -#: gnu/packages/games.scm:7677 +#: gnu/packages/games.scm:7678 msgid "Xonotic-data provides the data files required by the game Xonotic." msgstr "" -#: gnu/packages/games.scm:7873 +#: gnu/packages/games.scm:7874 msgid "" "Xonotic is a free, fast-paced first-person shooter.\n" "The project is geared towards providing addictive arena shooter\n" @@ -4387,7 +4508,7 @@ msgid "" "open-source FPS of its kind." msgstr "" -#: gnu/packages/games.scm:7920 +#: gnu/packages/games.scm:7921 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4396,7 +4517,7 @@ msgid "" "ncurses for text display." msgstr "" -#: gnu/packages/games.scm:7964 +#: gnu/packages/games.scm:7966 msgid "" "Naev is a 2d action/rpg space game that combines elements from\n" "the action, RPG and simulation genres. You pilot a spaceship from\n" @@ -4408,7 +4529,7 @@ msgid "" "of lore accompanying everything from planets to equipment." msgstr "" -#: gnu/packages/games.scm:8013 +#: gnu/packages/games.scm:8015 msgid "" "Frotz is an interpreter for Infocom games and\n" "other Z-machine games in the text adventure/interactive fiction genre.\n" @@ -4420,7 +4541,7 @@ msgid "" "to play games on webpages. It can also be made into a chat bot." msgstr "" -#: gnu/packages/games.scm:8075 +#: gnu/packages/games.scm:8077 msgid "" "Frotz is an interpreter for Infocom games and other Z-machine\n" "games in the text adventure/interactive fiction genre. This version of Frotz\n" @@ -4430,7 +4551,7 @@ msgid "" "when packaged in Blorb container files or optionally from individual files." msgstr "" -#: gnu/packages/games.scm:8166 +#: gnu/packages/games.scm:8168 msgid "" "Frozen-Bubble is a clone of the popular Puzzle Bobble game, in which\n" "you attempt to shoot bubbles into groups of the same color to cause them to\n" @@ -4445,7 +4566,7 @@ msgid "" "their own levels." msgstr "" -#: gnu/packages/games.scm:8199 +#: gnu/packages/games.scm:8201 msgid "" "Libmanette is a small GObject library giving you simple\n" "access to game controllers. It supports the de-facto standard gamepads as\n" @@ -4453,7 +4574,7 @@ msgid "" "GameController." msgstr "" -#: gnu/packages/games.scm:8245 +#: gnu/packages/games.scm:8247 msgid "" "Quadrapassel comes from the classic falling-block game,\n" "Tetris. The goal of the game is to create complete horizontal lines of\n" @@ -4465,7 +4586,7 @@ msgid "" "your score gets higher, you level up and the blocks fall faster." msgstr "" -#: gnu/packages/games.scm:8294 +#: gnu/packages/games.scm:8296 msgid "" "Endless Sky is a 2D space trading and combat game. Explore\n" "other star systems. Earn money by trading, carrying passengers, or completing\n" @@ -4475,7 +4596,7 @@ msgid "" "civilized than your own." msgstr "" -#: gnu/packages/games.scm:8443 +#: gnu/packages/games.scm:8445 msgid "" "StepMania is a dance and rhythm game. It features 3D\n" "graphics, keyboard and dance pad support, and an editor for creating your own\n" @@ -4485,7 +4606,7 @@ msgid "" "to download and install them in @file{$HOME/.stepmania-X.Y/Songs} directory." msgstr "" -#: gnu/packages/games.scm:8479 +#: gnu/packages/games.scm:8481 msgid "" "@i{oshu!} is a minimalist variant of the @i{osu!} rhythm game,\n" "which is played by pressing buttons and following along sliders as they appear\n" @@ -4495,7 +4616,7 @@ msgid "" "download and unpack them separately." msgstr "" -#: gnu/packages/games.scm:8562 +#: gnu/packages/games.scm:8564 msgid "" "Battle Tanks (also known as \"btanks\") is a funny battle\n" "game, where you can choose one of three vehicles and eliminate your enemy\n" @@ -4504,7 +4625,7 @@ msgid "" "and cooperative." msgstr "" -#: gnu/packages/games.scm:8596 +#: gnu/packages/games.scm:8598 msgid "" "Slime Volley is a 2D arcade-oriented volleyball simulation, in\n" "the spirit of some Java games of the same name.\n" @@ -4515,7 +4636,7 @@ msgid "" "the ground, the set ends and all balls are served again." msgstr "" -#: gnu/packages/games.scm:8626 +#: gnu/packages/games.scm:8628 msgid "" "Slingshot is a two-dimensional strategy game where two\n" "players attempt to shoot one another through a section of space populated by\n" @@ -4523,14 +4644,14 @@ msgid "" "affected by the gravity of the planets." msgstr "" -#: gnu/packages/games.scm:8674 +#: gnu/packages/games.scm:8676 msgid "" "4D-TRIS is an alteration of the well-known Tetris game. The\n" "game field is extended to 4D space, which has to filled up by the gamer with\n" "4D hyper cubes." msgstr "" -#: gnu/packages/games.scm:8751 +#: gnu/packages/games.scm:8753 msgid "" "Arx Libertatis is a cross-platform port of Arx Fatalis, a 2002\n" "first-person role-playing game / dungeon crawler developed by Arkane Studios.\n" @@ -4540,7 +4661,7 @@ msgid "" "where the player draws runes in real time to effect the desired spell." msgstr "" -#: gnu/packages/games.scm:8797 +#: gnu/packages/games.scm:8799 msgid "" "The Legend of Edgar is a 2D platform game with a persistent world.\n" "When Edgar's father fails to return home after venturing out one dark and stormy night,\n" @@ -4548,7 +4669,7 @@ msgid "" "a fortress beyond the forbidden swamp." msgstr "" -#: gnu/packages/games.scm:8899 +#: gnu/packages/games.scm:8901 msgid "" "OpenClonk is a multiplayer action/tactics/skill game. It is\n" "often referred to as a mixture of The Settlers and Worms. In a simple 2D\n" @@ -4558,20 +4679,20 @@ msgid "" "fight each other on an arena-like map." msgstr "" -#: gnu/packages/games.scm:8931 +#: gnu/packages/games.scm:8933 msgid "" "Flare (Free Libre Action Roleplaying Engine) is a simple\n" "game engine built to handle a very specific kind of game: single-player 2D\n" "action RPGs." msgstr "" -#: gnu/packages/games.scm:8994 +#: gnu/packages/games.scm:8996 msgid "" "Flare is a single-player 2D action RPG with\n" "fast-paced action and a dark fantasy style." msgstr "" -#: gnu/packages/games.scm:9046 +#: gnu/packages/games.scm:9048 msgid "" "Far below the surface of the planet is a place of limitless\n" "power. Those that seek to control such a utopia will soon bring an end to\n" @@ -4585,7 +4706,7 @@ msgid "" "Orcus Dome from evil." msgstr "" -#: gnu/packages/games.scm:9108 +#: gnu/packages/games.scm:9110 msgid "" "Marble Marcher is a video game that uses a fractal physics\n" "engine and fully procedural rendering to produce beautiful and unique\n" @@ -4595,7 +4716,7 @@ msgid "" "levels to unlock." msgstr "" -#: gnu/packages/games.scm:9159 +#: gnu/packages/games.scm:9161 msgid "" "SimGear is a set of libraries designed to be used as\n" "building blocks for quickly assembling 3D simulations, games, and\n" @@ -4603,7 +4724,7 @@ msgid "" "and also provides the base for the FlightGear Flight Simulator." msgstr "" -#: gnu/packages/games.scm:9253 +#: gnu/packages/games.scm:9255 msgid "" "The goal of the FlightGear project is to create a\n" "sophisticated flight simulator framework for use in research or academic\n" @@ -4613,14 +4734,14 @@ msgid "" "simulator." msgstr "" -#: gnu/packages/games.scm:9306 +#: gnu/packages/games.scm:9308 msgid "" "You, as a bunny, have to jump on your opponents to make them\n" "explode. It is a true multiplayer game; you cannot play this alone. You can\n" "play with up to four players simultaneously. It has network support." msgstr "" -#: gnu/packages/games.scm:9373 +#: gnu/packages/games.scm:9375 msgid "" "Hedgewars is a turn based strategy, artillery, action and comedy game,\n" "featuring the antics of pink hedgehogs with attitude as they battle from the\n" @@ -4630,7 +4751,7 @@ msgid "" "and bring the war to your enemy." msgstr "" -#: gnu/packages/games.scm:9407 +#: gnu/packages/games.scm:9409 msgid "" "The gruid module provides packages for easily building\n" "grid-based applications in Go. The library abstracts rendering and input for\n" @@ -4640,13 +4761,13 @@ msgid "" "application." msgstr "" -#: gnu/packages/games.scm:9437 +#: gnu/packages/games.scm:9439 msgid "" "The gruid-tcell module provides a Gruid driver for building\n" "terminal full-window applications." msgstr "" -#: gnu/packages/games.scm:9464 +#: gnu/packages/games.scm:9466 msgid "" "Harmonist: Dayoriah Clan Infiltration is a stealth\n" "coffee-break roguelike game. The game has a heavy focus on tactical\n" @@ -4656,7 +4777,7 @@ msgid "" "on items and player adaptability for character progression." msgstr "" -#: gnu/packages/games.scm:9573 +#: gnu/packages/games.scm:9575 msgid "" "Drascula: The Vampire Strikes Back is a classic humorous 2D\n" "point and click adventure game.\n" @@ -4668,7 +4789,7 @@ msgid "" "the World and demonstrating that he is even more evil than his brother Vlad." msgstr "" -#: gnu/packages/games.scm:9653 +#: gnu/packages/games.scm:9655 msgid "" "Lure of the Temptress is a classic 2D point and click adventure game.\n" "\n" @@ -4687,7 +4808,7 @@ msgid "" "Skorl. Maybe it would be an idea to try and escape..." msgstr "" -#: gnu/packages/games.scm:9752 +#: gnu/packages/games.scm:9754 msgid "" "Flight of the Amazon Queen is a 2D point-and-click\n" "adventure game set in the 1940s.\n" @@ -4704,7 +4825,7 @@ msgid "" "women and 6-foot-tall pygmies." msgstr "" -#: gnu/packages/games.scm:9852 +#: gnu/packages/games.scm:9854 msgid "" "Beneath a Steel Sky is a science-fiction thriller set in a bleak\n" "post-apocalyptic vision of the future. It revolves around Union City,\n" @@ -4727,7 +4848,7 @@ msgid "" "and to seek vengeance for the killing of his tribe." msgstr "" -#: gnu/packages/games.scm:9911 +#: gnu/packages/games.scm:9913 msgid "" "GNU Robots is a game in which you program a robot to explore a world\n" "full of enemies that can hurt it, obstacles and food to be eaten. The goal of\n" @@ -4735,14 +4856,14 @@ msgid "" "may be written in a plain text file in the Scheme programming language." msgstr "" -#: gnu/packages/games.scm:9981 +#: gnu/packages/games.scm:9983 msgid "" "Ri-li is a game in which you drive a wooden toy\n" "steam locomotive across many levels and collect all the coaches to\n" "win." msgstr "" -#: gnu/packages/games.scm:10037 +#: gnu/packages/games.scm:10039 msgid "" "FreeOrion is a turn-based space empire and galactic conquest (4X)\n" "computer game being designed and built by the FreeOrion project. Control an\n" @@ -4752,14 +4873,14 @@ msgid "" "remake of that series or any other game." msgstr "" -#: gnu/packages/games.scm:10093 +#: gnu/packages/games.scm:10095 msgid "" "Leela-zero is a Go engine with no human-provided knowledge, modeled after\n" "the AlphaGo Zero paper. The current best network weights file for the engine\n" "can be downloaded from @url{https://zero.sjeng.org/best-network}." msgstr "" -#: gnu/packages/games.scm:10171 +#: gnu/packages/games.scm:10173 msgid "" "This a tool for Go players which performs the following functions:\n" "@itemize\n" @@ -4771,7 +4892,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:10214 +#: gnu/packages/games.scm:10216 msgid "" "KTuberling is a drawing toy intended for small children and\n" "adults who remain young at heart. The game has no winner; the only purpose is\n" @@ -4790,7 +4911,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10260 +#: gnu/packages/games.scm:10262 msgid "" "Picmi is a number logic game in which cells in a grid have\n" "to be colored or left blank according to numbers given at the side of the\n" @@ -4799,7 +4920,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10297 +#: gnu/packages/games.scm:10299 msgid "" "Kolf is a miniature golf game for one to ten players. The\n" "game is played from an overhead view, with a short bar representing the golf\n" @@ -4818,13 +4939,13 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10341 +#: gnu/packages/games.scm:10343 msgid "" "Shared library and common files for kmahjongg, kshisen and\n" "other Mah Jongg like games." msgstr "" -#: gnu/packages/games.scm:10374 +#: gnu/packages/games.scm:10376 msgid "" "In KMahjongg the tiles are scrambled and staked on top of\n" "each other to resemble a certain shape. The player is then expected to remove\n" @@ -4836,7 +4957,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10416 +#: gnu/packages/games.scm:10418 msgid "" "KShisen is a solitaire-like game played using the standard\n" "set of Mahjong tiles. Unlike Mahjong however, KShisen has only one layer of\n" @@ -4845,7 +4966,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10471 +#: gnu/packages/games.scm:10473 msgid "" "Kajongg is the ancient Chinese board game for 4 players.\n" "\n" @@ -4860,7 +4981,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10513 +#: gnu/packages/games.scm:10515 msgid "" "KBreakout is similar to the classics breakout and xboing,\n" "featuring a number of added graphical enhancements and effects. You control a\n" @@ -4870,7 +4991,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10551 +#: gnu/packages/games.scm:10553 msgid "" "KMines is a classic Minesweeper game. The idea is to\n" "uncover all the squares without blowing up any mines. When a mine is blown\n" @@ -4879,7 +5000,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10588 +#: gnu/packages/games.scm:10590 msgid "" "Konquest is the KDE version of Gnu-Lactic Konquest. Players\n" "conquer other planets by sending ships to them. The goal is to build an\n" @@ -4890,7 +5011,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10627 +#: gnu/packages/games.scm:10629 msgid "" "KBounce is a single player arcade game with the elements of\n" "puzzle. It is played on a field, surrounded by wall, with two or more balls\n" @@ -4900,7 +5021,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10665 +#: gnu/packages/games.scm:10667 msgid "" "KBlocks is the classic Tetris-like falling blocks game.\n" "\n" @@ -4912,7 +5033,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10708 +#: gnu/packages/games.scm:10710 msgid "" "KSudoku is a Sudoku game and solver, supporting a range of\n" "2D and 3D Sudoku variants. In addition to playing Sudoku, it can print Sudoku\n" @@ -4941,7 +5062,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10763 +#: gnu/packages/games.scm:10765 msgid "" "KLines is a simple but highly addictive one player game.\n" "\n" @@ -4958,7 +5079,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10806 +#: gnu/packages/games.scm:10808 msgid "" "KGoldrunner is an action game where the hero runs through a\n" "maze, climbs stairs, dig holes and dodges enemies in order to collect all the\n" @@ -4972,7 +5093,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10849 +#: gnu/packages/games.scm:10851 msgid "" "KDiamond is a three-in-a-row game like Bejeweled. It\n" "features unlimited fun with randomly generated games and five difficulty\n" @@ -4981,7 +5102,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10885 +#: gnu/packages/games.scm:10887 msgid "" "KFourInLine is a board game for two players based on the\n" "Connect-Four game.\n" @@ -4992,7 +5113,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10924 +#: gnu/packages/games.scm:10926 msgid "" "KBlackbox is a game of hide and seek played on a grid of\n" "boxes where the computer has hidden several balls. The position of the hidden\n" @@ -5004,7 +5125,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:10964 +#: gnu/packages/games.scm:10966 msgid "" "KNetWalk is a small game where you have to build up a\n" "computer network by rotating the wires to connect the terminals to the server.\n" @@ -5017,7 +5138,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11002 +#: gnu/packages/games.scm:11004 msgid "" "Bomber is a single player arcade game.\n" "\n" @@ -5033,7 +5154,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11047 +#: gnu/packages/games.scm:11049 msgid "" "Granatier is a clone of the classic Bomberman game,\n" "inspired by the work of the Clanbomber clone.\n" @@ -5041,7 +5162,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11085 +#: gnu/packages/games.scm:11087 msgid "" "KsirK is a multi-player network-enabled game. The goal of\n" "the game is simply to conquer the world by attacking your neighbors with your\n" @@ -5066,7 +5187,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11145 +#: gnu/packages/games.scm:11147 msgid "" "Palapeli is a jigsaw puzzle game. Unlike other games in\n" "that genre, you are not limited to aligning pieces on imaginary grids. The\n" @@ -5078,7 +5199,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11184 +#: gnu/packages/games.scm:11186 msgid "" "Kiriki is an addictive and fun dice game, designed to be\n" "played by as many as six players.\n" @@ -5089,7 +5210,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11224 +#: gnu/packages/games.scm:11226 msgid "" "Kigo is an open-source implementation of the popular Go\n" "game.\n" @@ -5106,7 +5227,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11269 +#: gnu/packages/games.scm:11271 msgid "" "Kubrick is a game based on the Rubik's Cube puzzle.\n" "\n" @@ -5119,7 +5240,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11309 +#: gnu/packages/games.scm:11311 msgid "" "Lieutnant Skat (from German \"Offiziersskat\") is a fun and\n" "engaging card game for two players, where the second player is either live\n" @@ -5130,7 +5251,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11347 +#: gnu/packages/games.scm:11349 msgid "" "Kapman is a clone of the well known game Pac-Man.\n" "\n" @@ -5142,7 +5263,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11386 +#: gnu/packages/games.scm:11388 msgid "" "KSpaceduel is a space battle game for one or two players,\n" "where two ships fly around a star in a struggle to be the only survivor.\n" @@ -5150,7 +5271,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11419 +#: gnu/packages/games.scm:11421 msgid "" "Bovo is a Gomoku (from Japanese 五目並べ - lit. \"five\n" "points\") like game for two players, where the opponents alternate in placing\n" @@ -5161,7 +5282,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11457 +#: gnu/packages/games.scm:11459 msgid "" "Killbots is a simple game of evading killer robots.\n" "\n" @@ -5175,7 +5296,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11499 +#: gnu/packages/games.scm:11501 msgid "" "KSnakeDuel is a fast action game where you steer a snake\n" "which has to eat food. While eating the snake grows. But once a player\n" @@ -5185,7 +5306,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11535 +#: gnu/packages/games.scm:11537 msgid "" "In Kollision you use mouse to control a small blue ball in a\n" "closed space environment filled with small red balls, which move about\n" @@ -5196,7 +5317,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11575 +#: gnu/packages/games.scm:11577 msgid "" "KBattleship is a Battle Ship game for KDE.\n" "\n" @@ -5207,7 +5328,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11615 +#: gnu/packages/games.scm:11617 msgid "" "KReversi is a simple one player strategy game played\n" "against the computer.\n" @@ -5220,7 +5341,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11655 +#: gnu/packages/games.scm:11657 msgid "" "KSquares is an implementation of the popular paper based\n" "game Squares. Two players take turns connecting dots on a grid to complete\n" @@ -5229,7 +5350,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11692 +#: gnu/packages/games.scm:11694 msgid "" "KJumpingcube is a simple tactical game for one or two\n" "players, played on a grid of numbered squares. Each turn, players compete for\n" @@ -5238,7 +5359,7 @@ msgid "" "This package is part of the KDE games module." msgstr "" -#: gnu/packages/games.scm:11782 +#: gnu/packages/games.scm:11784 msgid "" "X-Moto is a challenging 2D motocross platform game, where\n" "physics play an all important role in the gameplay. You need to\n" @@ -5246,27 +5367,27 @@ msgid "" "the more difficult challenges." msgstr "" -#: gnu/packages/games.scm:11827 +#: gnu/packages/games.scm:11829 msgid "" "Eboard is a chess board interface for ICS (Internet Chess Servers)\n" "and chess engines." msgstr "" -#: gnu/packages/games.scm:11880 +#: gnu/packages/games.scm:11882 msgid "" "ChessX is a chess database. With ChessX you can operate on your\n" "collection of chess games in many ways: browse, edit, add, organize, analyze,\n" "etc. You can also play games on FICS or against an engine." msgstr "" -#: gnu/packages/games.scm:11935 +#: gnu/packages/games.scm:11937 msgid "" "Stockfish is a very strong chess engine. It is much stronger than the\n" "best human chess grandmasters. It can be used with UCI-compatible GUIs like\n" "ChessX." msgstr "" -#: gnu/packages/games.scm:11964 +#: gnu/packages/games.scm:11966 msgid "" "Barrage is a rather destructive action game that puts you on a shooting\n" "range with the objective to hit as many dummy targets as possible within\n" @@ -5275,7 +5396,7 @@ msgid "" "get high scores." msgstr "" -#: gnu/packages/games.scm:11990 +#: gnu/packages/games.scm:11992 msgid "" "This is a clone of the classic game BurgerTime. In it, you play\n" "the part of a chef who must create burgers by stepping repeatedly on\n" @@ -5285,7 +5406,7 @@ msgid "" "protect you." msgstr "" -#: gnu/packages/games.scm:12018 +#: gnu/packages/games.scm:12020 msgid "" "Seven Kingdoms, designed by Trevor Chan, brings a blend of Real-Time\n" "Strategy with the addition of trade, diplomacy, and espionage. The game\n" @@ -5295,7 +5416,7 @@ msgid "" "kingdom." msgstr "" -#: gnu/packages/games.scm:12134 +#: gnu/packages/games.scm:12136 msgid "" "In the grand tradition of Marble Madness and Super Monkey Ball,\n" "Neverball has you guide a rolling ball through dangerous territory. Balance\n" @@ -5305,13 +5426,13 @@ msgid "" "game." msgstr "" -#: gnu/packages/games.scm:12210 +#: gnu/packages/games.scm:12212 msgid "" "With PokerTH you can play the Texas holdem poker game, either against\n" "computer opponents or against real players online." msgstr "" -#: gnu/packages/games.scm:12281 +#: gnu/packages/games.scm:12283 msgid "" "Xblackjack is a MOTIF/OLIT based tool constructed to get you ready for\n" "the casino. It was inspired by a book called \"Beat the Dealer\" by Edward\n" @@ -5320,13 +5441,13 @@ msgid "" "System\" (high-low system)." msgstr "" -#: gnu/packages/games.scm:12321 +#: gnu/packages/games.scm:12323 msgid "" "Pilot your ship inside a planet to find and rescue the colonists trapped\n" "inside the Zenith Colony." msgstr "" -#: gnu/packages/games.scm:12341 +#: gnu/packages/games.scm:12343 msgid "" "Provides a large set of Go-related services for X11:\n" "@itemize\n" @@ -5337,7 +5458,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/games.scm:12401 +#: gnu/packages/games.scm:12403 msgid "" "Passage is meant to be a memento mori game. It presents an entire life,\n" "from young adulthood through old age and death, in the span of five minutes.\n" @@ -5346,21 +5467,21 @@ msgid "" "there's no right way to interpret it." msgstr "" -#: gnu/packages/games.scm:12435 +#: gnu/packages/games.scm:12437 msgid "" "High performance animated desktop background setter for\n" "X11 that won't set your CPU on fire, drain your laptop battery, or lower video\n" "game FPS." msgstr "" -#: gnu/packages/games.scm:12465 +#: gnu/packages/games.scm:12467 msgid "" "Curse of War is a fast-paced action strategy game originally\n" "implemented using ncurses user interface. An SDL graphical version is also\n" "available." msgstr "" -#: gnu/packages/games.scm:12496 +#: gnu/packages/games.scm:12498 msgid "" "Schiffbruch is a mix of building, strategy and adventure and gets played\n" "with a two-dimensional view. The game deals with the consequences of a ship\n" @@ -5369,13 +5490,13 @@ msgid "" "get attention, so you get found." msgstr "" -#: gnu/packages/games.scm:12556 +#: gnu/packages/games.scm:12558 msgid "" "This package provides port of Prince of Persia, based on the\n" "disassembly of the DOS version, extended with new features." msgstr "" -#: gnu/packages/games.scm:12587 +#: gnu/packages/games.scm:12589 #, scheme-format msgid "" "@code{fheroes2} is an implementation of Heroes of Might and\n" @@ -5471,7 +5592,7 @@ msgid "" "from Markdown files." msgstr "" -#: gnu/packages/gettext.scm:311 +#: gnu/packages/gettext.scm:304 msgid "" "The po4a (PO for anything) project goal is to ease translations (and\n" "more interestingly, the maintenance of translations) using gettext tools on\n" @@ -5554,18 +5675,18 @@ msgid "" "system. It was forked from the GNU Image Manipulation Program." msgstr "" -#: gnu/packages/gnome.scm:284 +#: gnu/packages/gnome.scm:288 msgid "GUPnP-IGD is a library to handle UPnP IGD port mapping." msgstr "" -#: gnu/packages/gnome.scm:340 +#: gnu/packages/gnome.scm:344 msgid "" "Brasero is an application to burn CD/DVD for the Gnome\n" "Desktop. It is designed to be as simple as possible and has some unique\n" "features to enable users to create their discs easily and quickly." msgstr "" -#: gnu/packages/gnome.scm:372 +#: gnu/packages/gnome.scm:376 msgid "" "Libcloudproviders is a DBus API that allows cloud storage sync\n" "clients to expose their services. Clients such as file managers and desktop\n" @@ -5573,19 +5694,19 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:444 +#: gnu/packages/gnome.scm:448 msgid "" "LibGRSS is a Glib abstraction to handle feeds in RSS, Atom,\n" "and other formats." msgstr "" -#: gnu/packages/gnome.scm:472 +#: gnu/packages/gnome.scm:476 msgid "" "GNOME-JS-Common provides common modules for GNOME JavaScript\n" "bindings." msgstr "" -#: gnu/packages/gnome.scm:555 +#: gnu/packages/gnome.scm:559 msgid "" "Seed is a library and interpreter, dynamically bridging\n" "(through GObjectIntrospection) the WebKit JavaScriptCore engine, with the\n" @@ -5594,21 +5715,21 @@ msgid "" "in JavaScript." msgstr "" -#: gnu/packages/gnome.scm:611 +#: gnu/packages/gnome.scm:615 msgid "" "Libdmapsharing is a library which allows programs to access,\n" "share and control the playback of media content using DMAP (DAAP, DPAP & DACP).\n" "It is written in C using GObject and libsoup." msgstr "" -#: gnu/packages/gnome.scm:644 +#: gnu/packages/gnome.scm:648 msgid "" "GTX is a small collection of convenience functions intended to\n" "enhance the GLib testing framework. With specific emphasis on easing the pain\n" "of writing test cases for asynchronous interactions." msgstr "" -#: gnu/packages/gnome.scm:721 +#: gnu/packages/gnome.scm:725 msgid "" "Dee is a library that uses DBus to provide objects allowing\n" "you to create Model-View-Controller type programs across DBus. It also consists\n" @@ -5616,7 +5737,7 @@ msgid "" "of known objects without needing a central registrar." msgstr "" -#: gnu/packages/gnome.scm:802 +#: gnu/packages/gnome.scm:806 msgid "" "Zeitgeist is a service which logs the users’s activities and\n" "events, anywhere from files opened to websites visited and conversations. It\n" @@ -5625,27 +5746,27 @@ msgid "" "patterns." msgstr "" -#: gnu/packages/gnome.scm:869 +#: gnu/packages/gnome.scm:871 msgid "" "GNOME Recipes helps you discover what to cook today,\n" "tomorrow, the rest of the week and for special occasions." msgstr "" -#: gnu/packages/gnome.scm:939 +#: gnu/packages/gnome.scm:940 msgid "" "GNOME Photos is a simple and elegant replacement for using a\n" "file manager to deal with photos. Enhance, crop and edit in a snap. Seamless\n" "cloud integration is offered through GNOME Online Accounts." msgstr "" -#: gnu/packages/gnome.scm:1007 +#: gnu/packages/gnome.scm:1008 msgid "" "GNOME Music is the new GNOME music playing application that\n" "aims to combine an elegant and immersive browsing experience with simple\n" "and straightforward controls." msgstr "" -#: gnu/packages/gnome.scm:1028 +#: gnu/packages/gnome.scm:1029 msgid "" "PortableXDR is an implementation of External Data\n" "Representation (XDR) Library. It is a standard data serialization format, for\n" @@ -5653,25 +5774,25 @@ msgid "" "between different kinds of computer systems." msgstr "" -#: gnu/packages/gnome.scm:1066 +#: gnu/packages/gnome.scm:1067 msgid "" "Tepl is a library that eases the development of\n" "GtkSourceView-based text editors and IDEs." msgstr "" -#: gnu/packages/gnome.scm:1107 +#: gnu/packages/gnome.scm:1108 msgid "" "krb5-auth-dialog is a simple dialog that monitors Kerberos\n" "tickets, and pops up a dialog when they are about to expire." msgstr "" -#: gnu/packages/gnome.scm:1132 +#: gnu/packages/gnome.scm:1133 msgid "" "Notification-Daemon is the server implementation of the\n" "freedesktop.org desktop notification specification." msgstr "" -#: gnu/packages/gnome.scm:1168 +#: gnu/packages/gnome.scm:1169 msgid "" "The mm-common module provides the build infrastructure\n" "and utilities shared among the GNOME C++ binding libraries. Release\n" @@ -5679,55 +5800,55 @@ msgid "" "Library reference documentation." msgstr "" -#: gnu/packages/gnome.scm:1214 +#: gnu/packages/gnome.scm:1215 msgid "" "PhoDav was initially developed as a file-sharing mechanism for Spice,\n" "but it is generic enough to be reused in other projects,\n" "in particular in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1267 +#: gnu/packages/gnome.scm:1268 msgid "" "GNOME Color Manager is a session framework that makes\n" "it easy to manage, install and generate color profiles\n" "in the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:1319 +#: gnu/packages/gnome.scm:1320 msgid "" "GNOME Online Miners provides a set of crawlers that\n" "go through your online content and index them locally in Tracker.\n" "It has miners for Facebook, Flickr, Google, ownCloud and SkyDrive." msgstr "" -#: gnu/packages/gnome.scm:1352 +#: gnu/packages/gnome.scm:1353 msgid "" "This package provides a library to handle resource discovery\n" "and announcement over @acronym{SSDP, Simple Service Discovery Protocol} and\n" "a debugging tool, @command{gssdp-device-sniffer}." msgstr "" -#: gnu/packages/gnome.scm:1391 +#: gnu/packages/gnome.scm:1392 msgid "" "This package provides GUPnP, an object-oriented framework\n" "for creating UPnP devices and control points, written in C using\n" "@code{GObject} and @code{libsoup}." msgstr "" -#: gnu/packages/gnome.scm:1423 +#: gnu/packages/gnome.scm:1424 msgid "" "This package provides a small utility library to\n" "support DLNA-related tasks such as media profile guessing, transcoding to a\n" "given profile, etc. DLNA is a subset of UPnP A/V." msgstr "" -#: gnu/packages/gnome.scm:1453 +#: gnu/packages/gnome.scm:1454 msgid "" "This package provides a small library for handling\n" "and implementation of UPnP A/V profiles." msgstr "" -#: gnu/packages/gnome.scm:1478 +#: gnu/packages/gnome.scm:1479 msgid "" "The libmediaart library is the foundation for media art caching,\n" "extraction, and lookup for applications on the desktop." @@ -5740,14 +5861,14 @@ msgid "" "tour of all gnome components and allows the user to set them up." msgstr "" -#: gnu/packages/gnome.scm:1584 +#: gnu/packages/gnome.scm:1583 msgid "" "GNOME User Share is a small package that binds together\n" "various free software projects to bring easy to use user-level file\n" "sharing to the masses." msgstr "" -#: gnu/packages/gnome.scm:1639 +#: gnu/packages/gnome.scm:1638 msgid "" "Sushi is a DBus-activated service that allows applications\n" "to preview files on the GNOME desktop." @@ -5799,7 +5920,7 @@ msgid "" "and system administrators." msgstr "" -#: gnu/packages/gnome.scm:1946 +#: gnu/packages/gnome.scm:1950 msgid "" "Dia can be used to draw different types of diagrams, and\n" "includes support for UML static structure diagrams (class diagrams), entity\n" @@ -5807,28 +5928,28 @@ msgid "" "formats like PNG, SVG, PDF and EPS." msgstr "" -#: gnu/packages/gnome.scm:1991 +#: gnu/packages/gnome.scm:1995 msgid "" "libgdata is a GLib-based library for accessing online service APIs using\n" "the GData protocol — most notably, Google's services. It provides APIs to\n" "access the common Google services, and has full asynchronous support." msgstr "" -#: gnu/packages/gnome.scm:2019 +#: gnu/packages/gnome.scm:2023 msgid "" "libgxps is a GObject-based library for handling and rendering XPS\n" "documents. This package also contains binaries that can convert XPS documents\n" "to other formats." msgstr "" -#: gnu/packages/gnome.scm:2060 +#: gnu/packages/gnome.scm:2063 msgid "" "Characters is a simple utility application to find\n" "and insert unusual characters. It allows you to quickly find the\n" "character you are looking for by searching for keywords." msgstr "" -#: gnu/packages/gnome.scm:2081 +#: gnu/packages/gnome.scm:2084 msgid "" "gnome-common contains various files needed to bootstrap\n" "GNOME modules built from Git. It contains a common \"autogen.sh\" script that\n" @@ -5836,13 +5957,13 @@ msgid "" "commonly used macros." msgstr "" -#: gnu/packages/gnome.scm:2142 +#: gnu/packages/gnome.scm:2145 msgid "" "GNOME Contacts organizes your contact information from online and\n" "offline sources, providing a centralized place for managing your contacts." msgstr "" -#: gnu/packages/gnome.scm:2222 +#: gnu/packages/gnome.scm:2225 msgid "" "The libgnome-desktop library provides API shared by several applications\n" "on the desktop, but that cannot live in the platform for various reasons.\n" @@ -5852,40 +5973,40 @@ msgid "" "The gnome-about program helps find which version of GNOME is installed." msgstr "" -#: gnu/packages/gnome.scm:2257 +#: gnu/packages/gnome.scm:2260 msgid "" "Gnome-doc-utils is a collection of documentation utilities for the\n" "Gnome project. It includes xml2po tool which makes it easier to translate\n" "and keep up to date translations of documentation." msgstr "" -#: gnu/packages/gnome.scm:2309 +#: gnu/packages/gnome.scm:2311 msgid "Disk management utility for GNOME." msgstr "" -#: gnu/packages/gnome.scm:2352 +#: gnu/packages/gnome.scm:2353 msgid "" "Application to show you the fonts installed on your computer\n" "for your use as thumbnails. Selecting any thumbnails shows the full view of how\n" "the font would look under various sizes." msgstr "" -#: gnu/packages/gnome.scm:2420 +#: gnu/packages/gnome.scm:2421 msgid "" "The GCR package contains libraries used for displaying certificates and\n" "accessing key stores. It also provides the viewer for crypto files on the\n" "GNOME Desktop." msgstr "" -#: gnu/packages/gnome.scm:2459 +#: gnu/packages/gnome.scm:2460 msgid "This library provides docking features for gtk+." msgstr "" -#: gnu/packages/gnome.scm:2505 +#: gnu/packages/gnome.scm:2506 msgid "Client library to access passwords from the GNOME keyring." msgstr "" -#: gnu/packages/gnome.scm:2575 +#: gnu/packages/gnome.scm:2576 msgid "" "gnome-keyring is a program that keeps passwords and other secrets for\n" "users. It is run as a daemon in the session, similar to ssh-agent, and other\n" @@ -5904,13 +6025,13 @@ msgid "" "on the GNOME Desktop with a single simple application." msgstr "" -#: gnu/packages/gnome.scm:2693 +#: gnu/packages/gnome.scm:2692 msgid "" "Gsettings-desktop-schemas contains a collection of GSettings\n" "schemas for settings shared by various components of the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:2729 +#: gnu/packages/gnome.scm:2728 msgid "" "Liblarch is a Python library built to easily handle data structures such\n" "as lists, trees and acyclic graphs. There's also a GTK binding that will\n" @@ -5921,7 +6042,7 @@ msgid "" "and how they are displayed (View)." msgstr "" -#: gnu/packages/gnome.scm:2790 +#: gnu/packages/gnome.scm:2789 msgid "" "Getting Things GNOME! (GTG) is a personal tasks and TODO list items\n" "organizer for the GNOME desktop environment inspired by the Getting Things\n" @@ -5931,24 +6052,24 @@ msgid "" "know, from small tasks to large projects." msgstr "" -#: gnu/packages/gnome.scm:2829 +#: gnu/packages/gnome.scm:2828 msgid "" "To help with the transition to the Freedesktop Icon Naming\n" "Specification, the icon naming utility maps the icon names used by the\n" "GNOME and KDE desktops to the icon names proposed in the specification." msgstr "" -#: gnu/packages/gnome.scm:2858 +#: gnu/packages/gnome.scm:2857 msgid "Icons for the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:2897 +#: gnu/packages/gnome.scm:2896 msgid "" "This is an icon theme that follows the Tango visual\n" "guidelines." msgstr "" -#: gnu/packages/gnome.scm:2927 +#: gnu/packages/gnome.scm:2926 msgid "" "The shared-mime-info package contains the core database of common types\n" "and the update-mime-database command used to extend it. It requires glib2 to\n" @@ -5957,18 +6078,18 @@ msgid "" "database is translated at Transifex." msgstr "" -#: gnu/packages/gnome.scm:3012 +#: gnu/packages/gnome.scm:3011 msgid "" "system-config-printer is a CUPS administration tool. It's written in\n" "Python using GTK+, and uses the @acronym{IPP, Internet Printing Protocol} when\n" "configuring CUPS." msgstr "" -#: gnu/packages/gnome.scm:3036 +#: gnu/packages/gnome.scm:3035 msgid "Freedesktop icon theme." msgstr "" -#: gnu/packages/gnome.scm:3085 +#: gnu/packages/gnome.scm:3084 msgid "" "Libnotify is a library that sends desktop notifications to a\n" "notification daemon, as defined in the Desktop Notifications spec. These\n" @@ -5976,7 +6097,7 @@ msgid "" "some form of information without getting in the user's way." msgstr "" -#: gnu/packages/gnome.scm:3132 +#: gnu/packages/gnome.scm:3131 msgid "" "Libpeas is a gobject-based plugin engine, targeted at giving every\n" "application the chance to assume its own extensibility. It also has a set of\n" @@ -5985,21 +6106,21 @@ msgid "" "API." msgstr "" -#: gnu/packages/gnome.scm:3168 +#: gnu/packages/gnome.scm:3167 msgid "" "GtkGLExt is an OpenGL extension to GTK+. It provides\n" "additional GDK objects which support OpenGL rendering in GTK+ and GtkWidget\n" "API add-ons to make GTK+ widgets OpenGL-capable." msgstr "" -#: gnu/packages/gnome.scm:3248 +#: gnu/packages/gnome.scm:3247 msgid "" "Glade is a rapid application development (RAD) tool to\n" "enable quick & easy development of user interfaces for the GTK+ toolkit and\n" "the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:3280 +#: gnu/packages/gnome.scm:3279 msgid "" "Libcroco is a standalone CSS2 parsing and manipulation library.\n" "The parser provides a low level event driven SAC-like API and a CSS object\n" @@ -6007,13 +6128,13 @@ msgid "" "XML/CSS rendering engine." msgstr "" -#: gnu/packages/gnome.scm:3347 +#: gnu/packages/gnome.scm:3346 msgid "" "Libgsf aims to provide an efficient extensible I/O abstraction\n" "for dealing with different structured file formats." msgstr "" -#: gnu/packages/gnome.scm:3526 +#: gnu/packages/gnome.scm:3525 msgid "" "Librsvg is a library to render SVG images to Cairo surfaces.\n" "GNOME uses this to render SVG icons. Outside of GNOME, other desktop\n" @@ -6021,7 +6142,7 @@ msgid "" "diagrams." msgstr "" -#: gnu/packages/gnome.scm:3649 +#: gnu/packages/gnome.scm:3648 msgid "" "Libidl is a library for creating trees of CORBA Interface\n" "Definition Language (idl) files, which is a specification for defining\n" @@ -6030,82 +6151,82 @@ msgid "" "functionality was designed to be as reusable and portable as possible." msgstr "" -#: gnu/packages/gnome.scm:3704 +#: gnu/packages/gnome.scm:3703 msgid "" "ORBit2 is a CORBA 2.4-compliant Object Request Broker (orb)\n" "featuring mature C, C++ and Python bindings." msgstr "" -#: gnu/packages/gnome.scm:3758 +#: gnu/packages/gnome.scm:3757 msgid "" "Bonobo is a framework for creating reusable components for\n" "use in GNOME applications, built on top of CORBA." msgstr "" -#: gnu/packages/gnome.scm:3789 +#: gnu/packages/gnome.scm:3788 msgid "" "Gconf is a system for storing application preferences. It\n" "is intended for user preferences; not arbitrary data storage." msgstr "" -#: gnu/packages/gnome.scm:3823 +#: gnu/packages/gnome.scm:3822 msgid "" "GNOME Mime Data is a module which contains the base MIME\n" "and Application database for GNOME. The data stored by this module is\n" "designed to be accessed through the MIME functions in GnomeVFS." msgstr "" -#: gnu/packages/gnome.scm:3863 +#: gnu/packages/gnome.scm:3862 msgid "" "GnomeVFS is the core library used to access files and folders in GNOME\n" "applications. It provides a file system abstraction which allows applications\n" "to access local and remote files with a single consistent API." msgstr "" -#: gnu/packages/gnome.scm:3904 +#: gnu/packages/gnome.scm:3903 msgid "" "The libgnome library provides a number of useful routines\n" "for building modern applications, including session management, activation of\n" "files and URIs, and displaying help." msgstr "" -#: gnu/packages/gnome.scm:3928 +#: gnu/packages/gnome.scm:3927 msgid "" "Libart is a 2D drawing library intended as a\n" "high-quality vector-based 2D library with antialiasing and alpha composition." msgstr "" -#: gnu/packages/gnome.scm:3955 +#: gnu/packages/gnome.scm:3954 msgid "" "The GnomeCanvas widget provides a flexible widget for\n" "creating interactive structured graphics." msgstr "" -#: gnu/packages/gnome.scm:3977 +#: gnu/packages/gnome.scm:3976 msgid "C++ bindings to the GNOME Canvas library." msgstr "" -#: gnu/packages/gnome.scm:4003 +#: gnu/packages/gnome.scm:4002 msgid "" "The libgnomeui library provides additional widgets for\n" "applications. Many of the widgets from libgnomeui have already been\n" "ported to GTK+." msgstr "" -#: gnu/packages/gnome.scm:4029 +#: gnu/packages/gnome.scm:4028 msgid "" "Libglade is a library that provides interfaces for loading\n" "graphical interfaces described in glade files and for accessing the\n" "widgets built in the loading process." msgstr "" -#: gnu/packages/gnome.scm:4071 +#: gnu/packages/gnome.scm:4070 msgid "" "The Bonobo UI library provides a number of user interface\n" "controls using the Bonobo component framework." msgstr "" -#: gnu/packages/gnome.scm:4098 +#: gnu/packages/gnome.scm:4097 msgid "" "Libwnck is the Window Navigator Construction Kit, a library for use in\n" "writing pagers, tasklists, and more generally applications that are dealing\n" @@ -6113,11 +6234,11 @@ msgid "" "Hints specification (EWMH)." msgstr "" -#: gnu/packages/gnome.scm:4148 +#: gnu/packages/gnome.scm:4147 msgid "A GLib/GTK+ set of document-centric objects and utilities." msgstr "" -#: gnu/packages/gnome.scm:4234 +#: gnu/packages/gnome.scm:4233 msgid "" "GNUmeric is a GNU spreadsheet application, running under GNOME. It is\n" "interoperable with other spreadsheet applications. It has a vast array of\n" @@ -6126,11 +6247,11 @@ msgid "" "engineering." msgstr "" -#: gnu/packages/gnome.scm:4290 +#: gnu/packages/gnome.scm:4289 msgid "Drawing is a basic image editor aiming at the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:4326 +#: gnu/packages/gnome.scm:4325 msgid "The default GNOME 3 themes (Adwaita and some accessibility themes)." msgstr "" @@ -6149,7 +6270,7 @@ msgid "" "targeting the GNOME stack simple." msgstr "" -#: gnu/packages/gnome.scm:4481 +#: gnu/packages/gnome.scm:4482 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, and a minimal sample application (vte) using that. Vte is mainly used in\n" @@ -6157,34 +6278,34 @@ msgid "" "editors, IDEs, etc." msgstr "" -#: gnu/packages/gnome.scm:4505 +#: gnu/packages/gnome.scm:4506 msgid "" "VTE is a library (libvte) implementing a terminal emulator widget for\n" "GTK+, this fork provides additional functions exposed for keyboard text\n" "selection and URL hints." msgstr "" -#: gnu/packages/gnome.scm:4585 +#: gnu/packages/gnome.scm:4586 msgid "" "Vinagre is a remote display client supporting the VNC, SPICE\n" "and RDP protocols." msgstr "" -#: gnu/packages/gnome.scm:4631 +#: gnu/packages/gnome.scm:4633 msgid "" "Dconf is a low-level configuration system. Its main purpose\n" "is to provide a backend to GSettings on platforms that don't already have\n" "configuration storage systems." msgstr "" -#: gnu/packages/gnome.scm:4661 +#: gnu/packages/gnome.scm:4663 msgid "" "JSON-GLib is a library providing serialization and\n" "described by RFC 4627. It implements a full JSON parser and generator using\n" "GLib and GObject, and integrates JSON with GLib data types." msgstr "" -#: gnu/packages/gnome.scm:4760 +#: gnu/packages/gnome.scm:4762 msgid "" "LibXklavier is a library providing high-level API for X Keyboard\n" "Extension known as XKB. This library is intended to support XFree86 and other\n" @@ -6192,13 +6313,13 @@ msgid "" "indicators etc)." msgstr "" -#: gnu/packages/gnome.scm:4788 +#: gnu/packages/gnome.scm:4790 msgid "" "This package provides Python bindings to librsvg, the SVG rendering\n" "library." msgstr "" -#: gnu/packages/gnome.scm:4829 +#: gnu/packages/gnome.scm:4831 msgid "" "Glib-networking contains the implementations of certain GLib networking\n" "features that cannot be implemented directly in GLib itself because of their\n" @@ -6208,26 +6329,26 @@ msgid "" "from the GSettings schemas in gsettings-desktop-schemas." msgstr "" -#: gnu/packages/gnome.scm:4866 +#: gnu/packages/gnome.scm:4868 msgid "" "This library was designed to make it easier to access web services that\n" "claim to be \"RESTful\". It includes convenience wrappers for libsoup and\n" "libxml to ease remote use of the RESTful API." msgstr "" -#: gnu/packages/gnome.scm:4931 +#: gnu/packages/gnome.scm:4933 msgid "" "LibSoup is an HTTP client/server library for GNOME. It uses GObjects\n" "and the GLib main loop, to integrate well with GNOME applications." msgstr "" -#: gnu/packages/gnome.scm:5035 +#: gnu/packages/gnome.scm:5037 msgid "" "Libsecret is a GObject based library for storing and retrieving passwords\n" "and other secrets. It communicates with the \"Secret Service\" using DBus." msgstr "" -#: gnu/packages/gnome.scm:5074 +#: gnu/packages/gnome.scm:5076 msgid "" "Five or More is a game where you try to align\n" " five or more objects of the same color and shape causing them to disappear.\n" @@ -6235,19 +6356,19 @@ msgid "" " Try to last as long as possible." msgstr "" -#: gnu/packages/gnome.scm:5116 +#: gnu/packages/gnome.scm:5118 msgid "" "Mines (previously gnomine) is a puzzle game where you locate mines\n" "floating in an ocean using only your brain and a little bit of luck." msgstr "" -#: gnu/packages/gnome.scm:5157 +#: gnu/packages/gnome.scm:5159 msgid "" "MultiWriter can be used to write an ISO file to multiple USB devices at\n" "once." msgstr "" -#: gnu/packages/gnome.scm:5197 +#: gnu/packages/gnome.scm:5198 msgid "" "Sudoku is a Japanese logic game that exploded in popularity in 2005.\n" "GNOME Sudoku is meant to have an interface as simple and unobstrusive as\n" @@ -6255,7 +6376,7 @@ msgid "" "more fun." msgstr "" -#: gnu/packages/gnome.scm:5247 +#: gnu/packages/gnome.scm:5248 msgid "" "GNOME Terminal is a terminal emulator application for accessing a\n" "UNIX shell environment which can be used to run programs available on\n" @@ -6265,14 +6386,14 @@ msgid "" "keyboard shortcuts." msgstr "" -#: gnu/packages/gnome.scm:5319 +#: gnu/packages/gnome.scm:5320 msgid "" "Colord is a system service that makes it easy to manage,\n" "install and generate color profiles to accurately color manage input and\n" "output devices." msgstr "" -#: gnu/packages/gnome.scm:5390 +#: gnu/packages/gnome.scm:5391 msgid "" "Geoclue is a D-Bus service that provides location\n" "information. The primary goal of the Geoclue project is to make creating\n" @@ -6281,7 +6402,7 @@ msgid "" "permission from user." msgstr "" -#: gnu/packages/gnome.scm:5434 +#: gnu/packages/gnome.scm:5435 msgid "" "geocode-glib is a convenience library for geocoding (finding longitude,\n" "and latitude from an address) and reverse geocoding (finding an address from\n" @@ -6289,7 +6410,7 @@ msgid "" "faster results and to avoid unnecessary server load." msgstr "" -#: gnu/packages/gnome.scm:5510 +#: gnu/packages/gnome.scm:5511 msgid "" "UPower is an abstraction for enumerating power devices,\n" "listening to device events and querying history and statistics. Any\n" @@ -6297,13 +6418,13 @@ msgid "" "service via the system message bus." msgstr "" -#: gnu/packages/gnome.scm:5555 +#: gnu/packages/gnome.scm:5557 msgid "" "libgweather is a library to access weather information from online\n" "services for numerous locations." msgstr "" -#: gnu/packages/gnome.scm:5639 +#: gnu/packages/gnome.scm:5640 msgid "" "This package contains the daemon responsible for setting the various\n" "parameters of a GNOME session and the applications that run under it. It\n" @@ -6311,19 +6432,19 @@ msgid "" "settings, themes, mouse settings, and startup of other daemons." msgstr "" -#: gnu/packages/gnome.scm:5670 +#: gnu/packages/gnome.scm:5671 msgid "" "Totem-pl-parser is a GObjects-based library to parse and save\n" "playlists in a variety of formats." msgstr "" -#: gnu/packages/gnome.scm:5703 +#: gnu/packages/gnome.scm:5704 msgid "" "Aisleriot (also known as Solitaire or sol) is a collection of card games\n" "which are easy to play with the aid of a mouse." msgstr "" -#: gnu/packages/gnome.scm:5729 +#: gnu/packages/gnome.scm:5730 msgid "" "Amtk is the acronym for @acronym{Amtk, Actions Menus and Toolbars Kit}.\n" "It is a basic GtkUIManager replacement based on GAction. It is suitable for\n" @@ -6402,13 +6523,13 @@ msgid "" "discovery protocols." msgstr "" -#: gnu/packages/gnome.scm:6324 +#: gnu/packages/gnome.scm:6323 msgid "" "Totem is a simple yet featureful media player for GNOME\n" "which can read a large number of file formats." msgstr "" -#: gnu/packages/gnome.scm:6415 +#: gnu/packages/gnome.scm:6414 msgid "" "Rhythmbox is a music playing application for GNOME. It\n" "supports playlists, song ratings, and any codecs installed through gstreamer." @@ -6439,7 +6560,7 @@ msgid "" "part of udev-extras, then udev, then systemd. It's now a project on its own." msgstr "" -#: gnu/packages/gnome.scm:6611 +#: gnu/packages/gnome.scm:6610 msgid "" "GVFS is a userspace virtual file system designed to work with the I/O\n" "abstraction of GIO. It contains a GIO module that seamlessly adds GVFS\n" @@ -6450,7 +6571,7 @@ msgid "" "DAV, and others." msgstr "" -#: gnu/packages/gnome.scm:6652 +#: gnu/packages/gnome.scm:6651 msgid "" "GUsb is a GObject wrapper for libusb1 that makes it easy to do\n" "asynchronous control, bulk and interrupt transfers with proper cancellation\n" @@ -6458,7 +6579,7 @@ msgid "" "USB transfers with your high-level application or system daemon." msgstr "" -#: gnu/packages/gnome.scm:6706 +#: gnu/packages/gnome.scm:6705 msgid "" "Document Scanner is an easy-to-use application that lets you connect your\n" "scanner and quickly capture images and documents in an appropriate format. It\n" @@ -6466,25 +6587,25 @@ msgid "" "almost all of them." msgstr "" -#: gnu/packages/gnome.scm:6778 +#: gnu/packages/gnome.scm:6777 msgid "" "Eolie is a new web browser for GNOME. It features Firefox sync support,\n" "a secret password store, an adblocker, and a modern UI." msgstr "" -#: gnu/packages/gnome.scm:6855 +#: gnu/packages/gnome.scm:6854 msgid "" "Epiphany is a GNOME web browser targeted at non-technical users. Its\n" "principles are simplicity and standards compliance." msgstr "" -#: gnu/packages/gnome.scm:6914 +#: gnu/packages/gnome.scm:6913 msgid "" "D-Feet is a D-Bus debugger, which can be used to inspect D-Bus interfaces\n" "of running programs and invoke methods on those interfaces." msgstr "" -#: gnu/packages/gnome.scm:6944 +#: gnu/packages/gnome.scm:6943 msgid "" "Yelp-XSL is a collection of programs and data files to help\n" "you build, maintain, and distribute documentation. It provides XSLT stylesheets\n" @@ -6494,14 +6615,14 @@ msgid "" "jQuery.Syntax JavaScript libraries." msgstr "" -#: gnu/packages/gnome.scm:6983 +#: gnu/packages/gnome.scm:6982 msgid "" "Yelp is the help viewer in Gnome. It natively views Mallard, DocBook,\n" "man, info, and HTML documents. It can locate documents according to the\n" "freedesktop.org help system specification." msgstr "" -#: gnu/packages/gnome.scm:7013 +#: gnu/packages/gnome.scm:7012 msgid "" "Yelp-tools is a collection of scripts and build utilities to help create,\n" "manage, and publish documentation for Yelp and the web. Most of the heavy\n" @@ -6509,13 +6630,13 @@ msgid "" "wraps things up in a developer-friendly way." msgstr "" -#: gnu/packages/gnome.scm:7051 +#: gnu/packages/gnome.scm:7050 msgid "" "Libgee is a utility library providing GObject-based interfaces and\n" "classes for commonly used data structures." msgstr "" -#: gnu/packages/gnome.scm:7079 +#: gnu/packages/gnome.scm:7078 msgid "" "Gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. It\n" "allows for GNOME applications to easily inspect and update EXIF, IPTC, and XMP\n" @@ -6530,7 +6651,7 @@ msgid "" "share them with others via social networking and more." msgstr "" -#: gnu/packages/gnome.scm:7168 +#: gnu/packages/gnome.scm:7169 msgid "" "File Roller is an archive manager for the GNOME desktop\n" "environment that allows users to view, unpack, and create compressed archives\n" @@ -6543,25 +6664,25 @@ msgid "" "configuration program to choose applications starting on login." msgstr "" -#: gnu/packages/gnome.scm:7284 +#: gnu/packages/gnome.scm:7287 msgid "" "Gjs is a javascript binding for GNOME. It's mainly based on spidermonkey\n" "javascript engine and the GObject introspection framework." msgstr "" -#: gnu/packages/gnome.scm:7381 +#: gnu/packages/gnome.scm:7383 msgid "" "While aiming at simplicity and ease of use, gedit is a\n" "powerful general purpose text editor." msgstr "" -#: gnu/packages/gnome.scm:7405 +#: gnu/packages/gnome.scm:7407 msgid "" "Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you\n" "to display dialog boxes from the commandline and shell scripts." msgstr "" -#: gnu/packages/gnome.scm:7595 +#: gnu/packages/gnome.scm:7598 msgid "" "Mutter is a window and compositing manager that displays and manages your\n" "desktop via OpenGL. Mutter combines a sophisticated display engine using the\n" @@ -6569,7 +6690,7 @@ msgid "" "window manager." msgstr "" -#: gnu/packages/gnome.scm:7653 +#: gnu/packages/gnome.scm:7656 msgid "" "GNOME Online Accounts provides interfaces so that applications and\n" "libraries in GNOME can access the user's online accounts. It has providers\n" @@ -6577,20 +6698,20 @@ msgid "" "Microsoft Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos." msgstr "" -#: gnu/packages/gnome.scm:7740 +#: gnu/packages/gnome.scm:7743 msgid "" "This package provides a unified backend for programs that work with\n" "contacts, tasks, and calendar information. It was originally developed for\n" "Evolution (hence the name), but is now used by other packages as well." msgstr "" -#: gnu/packages/gnome.scm:7803 +#: gnu/packages/gnome.scm:7806 msgid "" "Caribou is an input assistive technology intended for switch and pointer\n" "users." msgstr "" -#: gnu/packages/gnome.scm:7953 +#: gnu/packages/gnome.scm:7958 msgid "" "NetworkManager is a system network service that manages your network\n" "devices and connections, attempting to keep active network connectivity when\n" @@ -6599,36 +6720,36 @@ msgid "" "services." msgstr "" -#: gnu/packages/gnome.scm:8009 +#: gnu/packages/gnome.scm:8014 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to virtual private networks (VPNs) via OpenVPN." msgstr "" -#: gnu/packages/gnome.scm:8059 +#: gnu/packages/gnome.scm:8064 msgid "" "Support for configuring virtual private networks based on VPNC.\n" "Compatible with Cisco VPN concentrators configured to use IPsec." msgstr "" -#: gnu/packages/gnome.scm:8106 +#: gnu/packages/gnome.scm:8111 msgid "" "This extension of NetworkManager allows it to take care of connections\n" "to @acronym{VPNs, virtual private networks} via OpenConnect, an open client for\n" "Cisco's AnyConnect SSL VPN." msgstr "" -#: gnu/packages/gnome.scm:8135 +#: gnu/packages/gnome.scm:8140 msgid "Database of broadband connection configuration." msgstr "" -#: gnu/packages/gnome.scm:8179 +#: gnu/packages/gnome.scm:8183 msgid "" "This package contains a systray applet for NetworkManager. It displays\n" "the available networks and allows users to easily switch between them." msgstr "" -#: gnu/packages/gnome.scm:8234 +#: gnu/packages/gnome.scm:8238 #, fuzzy #| msgid "" #| "This package provides a dictionary for the Hunspell spell-checking\n" @@ -6640,25 +6761,25 @@ msgstr "" "此软件包为 Hunspell 拼写检查库\n" "提供词典。" -#: gnu/packages/gnome.scm:8466 +#: gnu/packages/gnome.scm:8470 msgid "" "GNOME Display Manager is a system service that is responsible for\n" "providing graphical log-ins and managing local and remote displays." msgstr "" -#: gnu/packages/gnome.scm:8490 +#: gnu/packages/gnome.scm:8494 msgid "" "LibGTop is a library to get system specific data such as CPU and memory\n" "usage and information about running processes." msgstr "" -#: gnu/packages/gnome.scm:8525 +#: gnu/packages/gnome.scm:8528 msgid "" "This package contains tools for managing and manipulating Bluetooth\n" "devices using the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:8636 +#: gnu/packages/gnome.scm:8646 msgid "" "This package contains configuration applets for the GNOME desktop,\n" "allowing to set accessibility configuration, desktop fonts, keyboard and mouse\n" @@ -6666,13 +6787,13 @@ msgid "" "properties, screen resolution, and other GNOME parameters." msgstr "" -#: gnu/packages/gnome.scm:8802 +#: gnu/packages/gnome.scm:8811 msgid "" "GNOME Shell provides core user interface functions for the GNOME desktop,\n" "like switching to windows and launching applications." msgstr "" -#: gnu/packages/gnome.scm:8845 +#: gnu/packages/gnome.scm:8858 msgid "" "GTK-VNC is a project providing client side APIs for the RFB\n" "protocol / VNC remote desktop technology. It is built using coroutines allowing\n" @@ -6680,13 +6801,13 @@ msgid "" "core C library, and bindings for Python (PyGTK)." msgstr "" -#: gnu/packages/gnome.scm:8875 +#: gnu/packages/gnome.scm:8888 msgid "" "GNOME Autoar is a library which makes creating and extracting archives\n" "easy, safe, and automatic." msgstr "" -#: gnu/packages/gnome.scm:8945 +#: gnu/packages/gnome.scm:8959 msgid "" "Tracker is a search engine and triplestore for desktop, embedded and mobile.\n" "\n" @@ -6709,21 +6830,21 @@ msgid "" "endpoint and it understands SPARQL." msgstr "" -#: gnu/packages/gnome.scm:9074 +#: gnu/packages/gnome.scm:9088 msgid "" "Tracker is an advanced framework for first class objects with associated\n" "metadata and tags. It provides a one stop solution for all metadata, tags,\n" "shared object databases, search tools and indexing." msgstr "" -#: gnu/packages/gnome.scm:9167 +#: gnu/packages/gnome.scm:9185 msgid "" "Nautilus (Files) is a file manager designed to fit the GNOME desktop\n" "design and behaviour, giving the user a simple way to navigate and manage its\n" "files." msgstr "" -#: gnu/packages/gnome.scm:9201 +#: gnu/packages/gnome.scm:9220 msgid "" "Baobab (Disk Usage Analyzer) is a graphical application to analyse disk\n" "usage in the GNOME desktop environment. It can easily scan device volumes or\n" @@ -6731,7 +6852,7 @@ msgid "" "is complete it provides a graphical representation of each selected folder." msgstr "" -#: gnu/packages/gnome.scm:9227 +#: gnu/packages/gnome.scm:9245 msgid "" "GNOME backgrounds package contains a collection of graphics files which\n" "can be used as backgrounds in the GNOME Desktop environment. Additionally,\n" @@ -6739,21 +6860,21 @@ msgid "" "can add your own files to the collection." msgstr "" -#: gnu/packages/gnome.scm:9272 +#: gnu/packages/gnome.scm:9290 msgid "" "GNOME Screenshot is a utility used for taking screenshots of the entire\n" "screen, a window or a user defined area of the screen, with optional\n" "beautifying border effects." msgstr "" -#: gnu/packages/gnome.scm:9304 +#: gnu/packages/gnome.scm:9320 msgid "" "Dconf-editor is a graphical tool for browsing and editing the dconf\n" "configuration system for GNOME. It allows users to configure desktop\n" "software that do not provide their own configuration interface." msgstr "" -#: gnu/packages/gnome.scm:9334 +#: gnu/packages/gnome.scm:9350 msgid "" "Given many installed packages which might handle a given MIME type, a\n" "user running the GNOME desktop probably has some preferences: for example,\n" @@ -6762,32 +6883,32 @@ msgid "" "associations for GNOME." msgstr "" -#: gnu/packages/gnome.scm:9366 +#: gnu/packages/gnome.scm:9382 msgid "GoVirt is a GObject wrapper for the oVirt REST API." msgstr "" -#: gnu/packages/gnome.scm:9424 +#: gnu/packages/gnome.scm:9439 msgid "" "GNOME Weather is a small application that allows you to\n" "monitor the current weather conditions for your city, or anywhere in the\n" "world." msgstr "" -#: gnu/packages/gnome.scm:9528 +#: gnu/packages/gnome.scm:9543 msgid "" "GNOME is the graphical desktop for GNU. It includes a wide variety of\n" "applications for browsing the web, editing text and images, creating\n" "documents and diagrams, playing media, scanning, and much more." msgstr "" -#: gnu/packages/gnome.scm:9574 +#: gnu/packages/gnome.scm:9589 msgid "" "Byzanz is a simple desktop recording program with a\n" "command-line interface. It can record part or all of an X display for a\n" "specified duration and save it as a GIF encoded animated image file." msgstr "" -#: gnu/packages/gnome.scm:9634 +#: gnu/packages/gnome.scm:9651 msgid "" "Authenticator is a two-factor authentication (2FA) application built for\n" "the GNOME desktop environment.\n" @@ -6804,44 +6925,44 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/gnome.scm:9669 +#: gnu/packages/gnome.scm:9686 msgid "" "GSound is a small library for playing system sounds. It's designed to be\n" "used via GObject Introspection, and is a thin wrapper around the libcanberra C\n" "library." msgstr "" -#: gnu/packages/gnome.scm:9694 +#: gnu/packages/gnome.scm:9711 msgid "" "Libzapojit is a GLib-based library for accessing online service APIs of\n" "Microsoft SkyDrive and Hotmail, using their REST protocols." msgstr "" -#: gnu/packages/gnome.scm:9739 +#: gnu/packages/gnome.scm:9756 msgid "" "GNOME Clocks is a simple clocks application designed to fit the GNOME\n" "desktop. It supports world clock, stop watch, alarms, and count down timer." msgstr "" -#: gnu/packages/gnome.scm:9787 +#: gnu/packages/gnome.scm:9803 msgid "" "GNOME Calendar is a simple calendar application designed to fit the GNOME\n" "desktop. It supports multiple calendars, month, week and year view." msgstr "" -#: gnu/packages/gnome.scm:9838 +#: gnu/packages/gnome.scm:9860 msgid "" -"GNOME To Do is a simplistic personal task manager designed to perfectly\n" -"fit the GNOME desktop." +"GNOME To Do is a simplistic personal task manager designed\n" +"to perfectly fit the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:9877 +#: gnu/packages/gnome.scm:9899 msgid "" "GNOME Dictionary can look for the definition or translation of a word in\n" "existing databases over the internet." msgstr "" -#: gnu/packages/gnome.scm:9943 +#: gnu/packages/gnome.scm:9964 msgid "" "GNOME Tweaks allows adjusting advanced configuration settings in\n" "GNOME 3. This includes things like the fonts used in user interface elements,\n" @@ -6849,13 +6970,13 @@ msgid "" "GNOME Shell appearance and extension, etc." msgstr "" -#: gnu/packages/gnome.scm:9971 +#: gnu/packages/gnome.scm:9992 msgid "" "GNOME Shell extensions modify and extend GNOME Shell\n" "functionality and behavior." msgstr "" -#: gnu/packages/gnome.scm:10015 +#: gnu/packages/gnome.scm:10036 msgid "" "Libfolks is a library that aggregates information about people\n" "from multiple sources (e.g., Telepathy connection managers for IM contacts,\n" @@ -6864,19 +6985,19 @@ msgid "" "compiled." msgstr "" -#: gnu/packages/gnome.scm:10056 +#: gnu/packages/gnome.scm:10077 msgid "" "This library allows you to use the Facebook API from\n" "GLib/GObject code." msgstr "" -#: gnu/packages/gnome.scm:10083 +#: gnu/packages/gnome.scm:10104 msgid "" "Libgnomekbd is a keyboard configuration library for the GNOME desktop\n" "environment, which can notably display keyboard layouts." msgstr "" -#: gnu/packages/gnome.scm:10119 +#: gnu/packages/gnome.scm:10140 msgid "" "Libunique is a library for writing single instance applications. If you\n" "launch a single instance application twice, the second instance will either just\n" @@ -6886,20 +7007,20 @@ msgid "" "handling the startup notification side." msgstr "" -#: gnu/packages/gnome.scm:10168 +#: gnu/packages/gnome.scm:10190 msgid "" "Calculator is an application that solves mathematical equations and\n" "is suitable as a default application in a Desktop environment." msgstr "" -#: gnu/packages/gnome.scm:10194 +#: gnu/packages/gnome.scm:10216 msgid "" "Xpad is a sticky note that strives to be simple, fault tolerant,\n" "and customizable. Xpad consists of independent pad windows, each is\n" "basically a text box in which notes can be written." msgstr "" -#: gnu/packages/gnome.scm:10267 +#: gnu/packages/gnome.scm:10289 msgid "" "This program allows you to browse through all the available Unicode\n" "characters and categories for the installed fonts, and to examine their\n" @@ -6907,20 +7028,20 @@ msgid "" "only know by its Unicode name or code point." msgstr "" -#: gnu/packages/gnome.scm:10299 +#: gnu/packages/gnome.scm:10321 msgid "" "Color Picker is a simple color chooser written in GTK3. It\n" "supports both X and Wayland display servers." msgstr "" -#: gnu/packages/gnome.scm:10322 +#: gnu/packages/gnome.scm:10344 msgid "" "Bluefish is an editor aimed at programmers and web developers,\n" "with many options to write web sites, scripts and other code.\n" "Bluefish supports many programming and markup languages." msgstr "" -#: gnu/packages/gnome.scm:10363 +#: gnu/packages/gnome.scm:10385 msgid "" "GNOME System Monitor is a GNOME process viewer and system monitor with\n" "an attractive, easy-to-use interface. It has features, such as a tree view\n" @@ -6929,27 +7050,27 @@ msgid "" "kill/reinice processes." msgstr "" -#: gnu/packages/gnome.scm:10405 +#: gnu/packages/gnome.scm:10427 msgid "" "This package includes a python client library for the AT-SPI D-Bus\n" "accessibility infrastructure." msgstr "" -#: gnu/packages/gnome.scm:10475 +#: gnu/packages/gnome.scm:10495 msgid "" "Orca is a screen reader that provides access to the graphical desktop\n" "via speech and refreshable braille. Orca works with applications and toolkits\n" "that support the Assistive Technology Service Provider Interface (AT-SPI)." msgstr "" -#: gnu/packages/gnome.scm:10529 +#: gnu/packages/gnome.scm:10549 msgid "" "gspell provides a flexible API to add spell-checking to a GTK+\n" "application. It provides a GObject API, spell-checking to text entries and\n" "text views, and buttons to choose the language." msgstr "" -#: gnu/packages/gnome.scm:10571 +#: gnu/packages/gnome.scm:10591 msgid "" "GNOME Planner is a project management tool based on the Work Breakdown\n" "Structure (WBS). Its goal is to enable you to easily plan projects. Based on\n" @@ -6961,7 +7082,7 @@ msgid "" "views can be printed as PDF or PostScript files, or exported to HTML." msgstr "" -#: gnu/packages/gnome.scm:10644 +#: gnu/packages/gnome.scm:10664 msgid "" "Lollypop is a music player designed to play well with GNOME desktop.\n" "Lollypop plays audio formats such as mp3, mp4, ogg and flac and gets information\n" @@ -6969,26 +7090,26 @@ msgid "" "automatically and it can stream songs from online music services and charts." msgstr "" -#: gnu/packages/gnome.scm:10668 +#: gnu/packages/gnome.scm:10688 msgid "" "A collection of GStreamer video filters and effects to be used in\n" "photo-booth-like software, such as Cheese." msgstr "" -#: gnu/packages/gnome.scm:10747 +#: gnu/packages/gnome.scm:10766 msgid "" "Cheese uses your webcam to take photos and videos. Cheese can also\n" "apply fancy special effects and lets you share the fun with others." msgstr "" -#: gnu/packages/gnome.scm:10801 +#: gnu/packages/gnome.scm:10820 msgid "" "Password Safe is a password manager which makes use of the KeePass v4\n" "format. It integrates perfectly with the GNOME desktop and provides an easy\n" "and uncluttered interface for the management of password databases." msgstr "" -#: gnu/packages/gnome.scm:10836 +#: gnu/packages/gnome.scm:10855 msgid "" "Sound Juicer extracts audio from compact discs and convert it\n" "into audio files that a personal computer or digital audio player can play.\n" @@ -6996,27 +7117,27 @@ msgid "" "mp3, Ogg Vorbis and FLAC" msgstr "" -#: gnu/packages/gnome.scm:10888 +#: gnu/packages/gnome.scm:10907 msgid "" "SoundConverter supports converting between many audio formats including\n" "Opus, Ogg Vorbis, FLAC and more. It supports parallel conversion, and\n" "configurable file renaming." msgstr "" -#: gnu/packages/gnome.scm:10936 +#: gnu/packages/gnome.scm:10955 msgid "" "Workrave is a program that assists in the recovery and prevention of\n" "repetitive strain injury (@dfn{RSI}). The program frequently alerts you to take\n" "micro-pauses and rest breaks, and restricts you to your daily limit." msgstr "" -#: gnu/packages/gnome.scm:10977 +#: gnu/packages/gnome.scm:10996 msgid "" "The GHex program can view and edit files in two ways:\n" "hexadecimal or ASCII. It is useful for editing binary files in general." msgstr "" -#: gnu/packages/gnome.scm:11013 +#: gnu/packages/gnome.scm:11032 msgid "" "The libdazzle library is a companion library to GObject and\n" "Gtk+. It provides various features that the authors wish were in the\n" @@ -7025,40 +7146,40 @@ msgid "" "generic enough to work for everyone." msgstr "" -#: gnu/packages/gnome.scm:11080 +#: gnu/packages/gnome.scm:11099 msgid "" "Evolution is a personal information management application\n" "that provides integrated mail, calendaring and address book\n" "functionality." msgstr "" -#: gnu/packages/gnome.scm:11140 +#: gnu/packages/gnome.scm:11154 msgid "" "GThumb is an image viewer, browser, organizer, editor and\n" "advanced image management tool" msgstr "" -#: gnu/packages/gnome.scm:11213 +#: gnu/packages/gnome.scm:11227 msgid "" "Terminator allows you to run multiple GNOME terminals in a grid and\n" "tabs, and it supports drag and drop re-ordering of terminals." msgstr "" -#: gnu/packages/gnome.scm:11274 +#: gnu/packages/gnome.scm:11288 msgid "" "The aim of the handy library is to help with developing user\n" "interfaces for mobile devices using GTK+. It provides responsive GTK+ widgets\n" "for usage on small and big screens." msgstr "" -#: gnu/packages/gnome.scm:11323 +#: gnu/packages/gnome.scm:11337 msgid "" "libgit2-glib is a GLib wrapper library around the libgit2 Git\n" "access library. It only implements the core plumbing functions, not really the\n" "higher level porcelain stuff." msgstr "" -#: gnu/packages/gnome.scm:11402 +#: gnu/packages/gnome.scm:11415 msgid "" "gitg is a graphical user interface for git. It aims at being a small,\n" "fast and convenient tool to visualize the history of git repositories.\n" @@ -7066,21 +7187,21 @@ msgid "" "repository and commit your work." msgstr "" -#: gnu/packages/gnome.scm:11474 +#: gnu/packages/gnome.scm:11487 msgid "" "Gamin is a file and directory monitoring system defined to be a subset\n" "of the FAM (File Alteration Monitor) system. This is a service provided by a\n" "library which detects when a file or a directory has been modified." msgstr "" -#: gnu/packages/gnome.scm:11508 +#: gnu/packages/gnome.scm:11521 msgid "" "GNOME Mahjongg is a game based on the classic Chinese\n" -"tile-matching game Mahjong. It features multiple board layouts, tile themes,\n" +"tile-matching game Mahjongg. It features multiple board layouts, tile themes,\n" "and a high score table." msgstr "" -#: gnu/packages/gnome.scm:11546 +#: gnu/packages/gnome.scm:11559 msgid "" "This package provides themes and related elements that don't\n" "really fit in other upstream packages. It offers legacy support for GTK+ 2\n" @@ -7088,19 +7209,19 @@ msgid "" "index files needed for Adwaita to be used outside of GNOME." msgstr "" -#: gnu/packages/gnome.scm:11585 +#: gnu/packages/gnome.scm:11605 msgid "" -"Gnote is a note-taking application written for the GNOME desktop\n" -"environment." +"Gnote is a note-taking application written for the GNOME\n" +"desktop environment." msgstr "" -#: gnu/packages/gnome.scm:11647 +#: gnu/packages/gnome.scm:11664 msgid "" "Polari is a simple Internet Relay Chat (IRC) client that is designed to\n" "integrate seamlessly with the GNOME desktop." msgstr "" -#: gnu/packages/gnome.scm:11706 +#: gnu/packages/gnome.scm:11723 msgid "" "GNOME Boxes is a simple application to view, access, and\n" "manage remote and virtual systems. Note that this application requires the\n" @@ -7109,7 +7230,7 @@ msgid "" "these services on the Guix System." msgstr "" -#: gnu/packages/gnome.scm:11806 +#: gnu/packages/gnome.scm:11823 msgid "" "Geary collects related messages together into conversations,\n" "making it easy to find and follow your discussions. Full-text and keyword\n" @@ -7121,14 +7242,14 @@ msgid "" "to." msgstr "" -#: gnu/packages/gnome.scm:11851 +#: gnu/packages/gnome.scm:11868 msgid "" "gLabels is a program for creating labels and business cards. It is\n" "designed to work with various laser/ink-jet peel-off label and business\n" "card sheets that you’ll find at most office supply stores." msgstr "" -#: gnu/packages/gnome.scm:11892 +#: gnu/packages/gnome.scm:11909 msgid "" "GNOME LaTeX is a LaTeX editor for the GNOME desktop. It has features\n" "such as build tools, completion of LaTeX commands, structure navigation,\n" @@ -7136,19 +7257,19 @@ msgid "" "and toolbars." msgstr "" -#: gnu/packages/gnome.scm:11951 +#: gnu/packages/gnome.scm:11968 msgid "" "Setzer is a simple yet full-featured LaTeX editor written in Python with\n" "GTK+. It integrates well with the GNOME desktop environment." msgstr "" -#: gnu/packages/gnome.scm:12017 +#: gnu/packages/gnome.scm:12034 msgid "" "Apostrophe is a GTK+ based distraction-free Markdown editor.\n" "It uses pandoc as back-end for parsing Markdown." msgstr "" -#: gnu/packages/gnome.scm:12070 +#: gnu/packages/gnome.scm:12088 msgid "" "libratbag provides @command{ratbagd}, a DBus daemon to\n" "configure input devices, mainly gaming mice. The daemon provides a generic\n" @@ -7165,7 +7286,7 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12140 +#: gnu/packages/gnome.scm:12156 msgid "" "Piper is a GTK+ application for configuring gaming mice with\n" "onboard configuration for key bindings via libratbag. Piper requires\n" @@ -7177,14 +7298,14 @@ msgid "" " (simple-service 'ratbagd dbus-root-service-type (list libratbag))" msgstr "" -#: gnu/packages/gnome.scm:12202 +#: gnu/packages/gnome.scm:12218 msgid "" "Parlatype is an audio player for the GNOME desktop\n" "environment. Its main purpose is the manual transcription of spoken\n" "audio files." msgstr "" -#: gnu/packages/gnome.scm:12228 +#: gnu/packages/gnome.scm:12244 msgid "" "Jsonrpc-GLib is a library to communicate with JSON-RPC based\n" "peers in either a synchronous or asynchronous fashion. It also allows\n" @@ -7193,14 +7314,14 @@ msgid "" "host to avoid parser overhead and memory-allocator fragmentation." msgstr "" -#: gnu/packages/gnome.scm:12256 +#: gnu/packages/gnome.scm:12272 msgid "" "Feedbackd provides a DBus daemon to act on events to provide\n" "haptic, visual and audio feedback. It offers the libfeedbackd library and\n" "GObject introspection bindings." msgstr "" -#: gnu/packages/gnome.scm:12305 +#: gnu/packages/gnome.scm:12321 msgid "" "Sysprof performs detailed, accurate, and fast CPU profiling of an entire\n" "GNU/Linux system including the kernel and all user-space applications. This\n" @@ -7210,21 +7331,21 @@ msgid "" "libraries. Applications do not need to be recompiled--or even restarted." msgstr "" -#: gnu/packages/gnome.scm:12388 +#: gnu/packages/gnome.scm:12406 msgid "" -"Builder aims to be an integrated development\n" -"environment (IDE) for writing GNOME-based software. It features fuzzy search,\n" -"auto-completion, a mini code map, documentation browsing, Git integration, an\n" -"integrated profiler via Sysprof, debugging support, and more." +"Builder aims to be an integrated development environment (IDE) for\n" +"writing GNOME-based software. It features fuzzy search, auto-completion,\n" +"a mini code map, documentation browsing, Git integration, an integrated\n" +"profiler via Sysprof, debugging support, and more." msgstr "" -#: gnu/packages/gnome.scm:12461 +#: gnu/packages/gnome.scm:12480 msgid "" "Komikku is an online/offline manga reader for GNOME,\n" "developed with the aim of being used with the Librem 5 phone." msgstr "" -#: gnu/packages/gnome.scm:12545 +#: gnu/packages/gnome.scm:12564 msgid "" "GNU Data Access (GDA) is an attempt to provide uniform access to\n" "different kinds of data sources (databases, information servers, mail spools,\n" @@ -7232,7 +7353,7 @@ msgid "" "your data." msgstr "" -#: gnu/packages/gnome.scm:12596 +#: gnu/packages/gnome.scm:12614 msgid "" "gtranslator is a quite comfortable gettext po/po.gz/(g)mo files editor\n" "for the GNOME 3.x platform with many features. It aims to be a very complete\n" @@ -7240,32 +7361,38 @@ msgid "" "world." msgstr "" -#: gnu/packages/gnome.scm:12662 +#: gnu/packages/gnome.scm:12680 msgid "" "OCRFeeder is a complete Optical Character Recognition and\n" "Document Analysis and Recognition program." msgstr "" -#: gnu/packages/gnome.scm:12702 +#: gnu/packages/gnome.scm:12720 msgid "" "@code{libadwaita} offers widgets and objects to build GNOME\n" "applications scaling from desktop workstations to mobile phones. It is the\n" "successor of @code{libhandy} for GTK4." msgstr "" -#: gnu/packages/gnome.scm:12727 +#: gnu/packages/gnome.scm:12745 msgid "" "@code{gnome-power-manager} is a tool for viewing present and\n" "historical battery usage and related statistics." msgstr "" +#: gnu/packages/gnome.scm:12789 +#, fuzzy +#| msgid "This package contains the game data of GNU Freedink." +msgid "This package provides a graphical file manager." +msgstr "这个软件包包含了 GNU Freedink 的游戏数据。" + #: gnu/packages/gnuzilla.scm:155 msgid "" "SpiderMonkey is Mozilla's JavaScript engine written\n" "in C/C++." msgstr "" -#: gnu/packages/gnuzilla.scm:1314 +#: gnu/packages/gnuzilla.scm:1315 msgid "" "IceCat is the GNU version of the Firefox browser. It is entirely free\n" "software, which does not recommend non-free plugins and addons. It also\n" @@ -7278,19 +7405,19 @@ msgid "" "standards of the IceCat project." msgstr "" -#: gnu/packages/gnuzilla.scm:1642 +#: gnu/packages/gnuzilla.scm:1648 msgid "" "This package provides an email client built based on Mozilla\n" "Thunderbird. It supports email, news feeds, chat, calendar and contacts." msgstr "" -#: gnu/packages/gnuzilla.scm:1717 +#: gnu/packages/gnuzilla.scm:1723 msgid "" "Firefox Decrypt is a tool to extract passwords from\n" "Mozilla (Firefox, Waterfox, Thunderbird, SeaMonkey) profiles." msgstr "" -#: gnu/packages/gnuzilla.scm:1754 +#: gnu/packages/gnuzilla.scm:1760 msgid "" "@code{lz4json} is a little utility to unpack lz4json files as generated\n" "by Firefox's bookmark backups and session restore. This is a different format\n" @@ -7304,7 +7431,7 @@ msgid "" "tools have full access to view and control running applications." msgstr "" -#: gnu/packages/gtk.scm:215 +#: gnu/packages/gtk.scm:212 msgid "" "Cairo is a 2D graphics library with support for multiple output\n" "devices. Currently supported output targets include the X Window System (via\n" @@ -7312,24 +7439,24 @@ msgid "" "output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB." msgstr "" -#: gnu/packages/gtk.scm:277 +#: gnu/packages/gtk.scm:274 msgid "HarfBuzz is an OpenType text shaping engine." msgstr "" -#: gnu/packages/gtk.scm:320 +#: gnu/packages/gtk.scm:317 msgid "" "Libdatrie is an implementation of double-array structure for\n" "representing trie. Trie is a kind of digital search tree." msgstr "" -#: gnu/packages/gtk.scm:352 +#: gnu/packages/gtk.scm:349 msgid "" "LibThai is a set of Thai language support routines aimed to\n" "ease developers’ tasks to incorporate Thai language support in their\n" "applications." msgstr "" -#: gnu/packages/gtk.scm:407 +#: gnu/packages/gtk.scm:404 msgid "" "Pango is a library for laying out and rendering of text, with\n" "an emphasis on internationalization. Pango can be used anywhere that text\n" @@ -7338,21 +7465,21 @@ msgid "" "handling for GTK+-2.x." msgstr "" -#: gnu/packages/gtk.scm:461 +#: gnu/packages/gtk.scm:458 msgid "" "Pangox was a X backend to pango. It is now obsolete and no\n" "longer provided by recent pango releases. pangox-compat provides the\n" "functions which were removed." msgstr "" -#: gnu/packages/gtk.scm:498 +#: gnu/packages/gtk.scm:495 msgid "" "Ganv is an interactive GTK+ widget for interactive “boxes and lines” or\n" "graph-like environments, e.g. modular synths or finite state machine\n" "diagrams." msgstr "" -#: gnu/packages/gtk.scm:554 +#: gnu/packages/gtk.scm:551 msgid "" "GtkSourceView is a portable C library that extends the standard GTK+\n" "framework for multiline text editing with support for configurable syntax\n" @@ -7360,33 +7487,33 @@ msgid "" "printing and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:602 +#: gnu/packages/gtk.scm:599 msgid "" "GtkSourceView is a text widget that extends the standard\n" "GTK+ text widget GtkTextView. It improves GtkTextView by implementing syntax\n" "highlighting and other features typical of a source code editor." msgstr "" -#: gnu/packages/gtk.scm:698 +#: gnu/packages/gtk.scm:695 msgid "" "GdkPixbuf is a library that loads image data in various\n" "formats and stores it as linear buffers in memory. The buffers can then be\n" "scaled, composited, modified, saved, or rendered." msgstr "" -#: gnu/packages/gtk.scm:746 +#: gnu/packages/gtk.scm:743 msgid "" "The Assistive Technology Service Provider Interface, core components,\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:827 +#: gnu/packages/gtk.scm:824 msgid "" "The Assistive Technology Service Provider Interface\n" "is part of the GNOME accessibility project." msgstr "" -#: gnu/packages/gtk.scm:921 +#: gnu/packages/gtk.scm:918 msgid "" "GTK+, or the GIMP Toolkit, is a multi-platform toolkit for creating\n" "graphical user interfaces. Offering a complete set of widgets, GTK+ is\n" @@ -7394,14 +7521,14 @@ msgid "" "application suites." msgstr "" -#: gnu/packages/gtk.scm:1234 +#: gnu/packages/gtk.scm:1238 msgid "" "GTK is a multi-platform toolkit for creating graphical user\n" "interfaces. Offering a complete set of widgets, GTK is suitable for projects\n" "ranging from small one-off tools to complete application suites." msgstr "" -#: gnu/packages/gtk.scm:1308 +#: gnu/packages/gtk.scm:1312 msgid "" "Guile-Cairo wraps the Cairo graphics library for Guile Scheme.\n" "Guile-Cairo is complete, wrapping almost all of the Cairo API. It is API\n" @@ -7411,13 +7538,13 @@ msgid "" "exceptions, macros, and a dynamic programming environment." msgstr "" -#: gnu/packages/gtk.scm:1389 +#: gnu/packages/gtk.scm:1393 msgid "" "Guile-RSVG wraps the RSVG library for Guile, allowing you to render SVG\n" "images onto Cairo surfaces." msgstr "" -#: gnu/packages/gtk.scm:1456 +#: gnu/packages/gtk.scm:1460 msgid "" "Guile-Present defines a declarative vocabulary for presentations,\n" "together with tools to render presentation documents as SVG or PDF.\n" @@ -7426,29 +7553,29 @@ msgid "" "documents." msgstr "" -#: gnu/packages/gtk.scm:1522 +#: gnu/packages/gtk.scm:1526 msgid "" "Includes guile-clutter, guile-gnome-gstreamer,\n" "guile-gnome-platform (GNOME developer libraries), and guile-gtksourceview." msgstr "" -#: gnu/packages/gtk.scm:1578 +#: gnu/packages/gtk.scm:1582 msgid "" "Cairomm provides a C++ programming interface to the Cairo 2D graphics\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1642 +#: gnu/packages/gtk.scm:1647 msgid "" "Pangomm provides a C++ programming interface to the Pango text rendering\n" "library." msgstr "" -#: gnu/packages/gtk.scm:1704 +#: gnu/packages/gtk.scm:1709 msgid "ATKmm is the C++ binding for the ATK library." msgstr "" -#: gnu/packages/gtk.scm:1784 +#: gnu/packages/gtk.scm:1790 msgid "" "GTKmm is the official C++ interface for the popular GUI\n" "library GTK+. Highlights include typesafe callbacks, and a comprehensive set\n" @@ -7677,7 +7804,7 @@ msgid "" "excellent pavucontrol." msgstr "" -#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:238 +#: gnu/packages/guile.scm:138 gnu/packages/guile.scm:241 msgid "" "Guile is the GNU Ubiquitous Intelligent Language for Extensions, the\n" "official extension language of the GNU system. It is an implementation of\n" @@ -7686,14 +7813,14 @@ msgid "" "without requiring the source code to be rewritten." msgstr "" -#: gnu/packages/guile.scm:502 +#: gnu/packages/guile.scm:506 msgid "" "This module provides line editing support via the Readline library for\n" "GNU@tie{}Guile. Use the @code{(ice-9 readline)} module and call its\n" "@code{activate-readline} procedure to enable it." msgstr "" -#: gnu/packages/guile.scm:604 +#: gnu/packages/guile.scm:608 msgid "" "Guile-JSON supports parsing and building JSON documents according to the\n" "specification. These are the main features:\n" @@ -7706,17 +7833,17 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/guile.scm:701 +#: gnu/packages/guile.scm:705 msgid "" "Guile bindings to the GDBM key-value storage system, using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:730 +#: gnu/packages/guile.scm:734 msgid "This package provides Guile bindings to the SQLite database system." msgstr "" -#: gnu/packages/guile.scm:769 +#: gnu/packages/guile.scm:773 msgid "" "Guile bytestructures offers a system imitating the type system\n" "of the C programming language, to be used on bytevectors. C's type\n" @@ -7725,33 +7852,33 @@ msgid "" "type system, elevating types to first-class status." msgstr "" -#: gnu/packages/guile.scm:810 +#: gnu/packages/guile.scm:814 msgid "" "This package provides Guile bindings to libgit2, a library to\n" "manipulate repositories of the Git version control system." msgstr "" -#: gnu/packages/guile.scm:846 +#: gnu/packages/guile.scm:850 msgid "" "This package provides Guile bindings for zlib, a lossless\n" "data-compression library. The bindings are written in pure Scheme by using\n" "Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:877 +#: gnu/packages/guile.scm:881 msgid "" "This package provides Guile bindings for lzlib, a C library for\n" "in-memory LZMA compression and decompression. The bindings are written in\n" "pure Scheme by using Guile's foreign function interface." msgstr "" -#: gnu/packages/guile.scm:904 +#: gnu/packages/guile.scm:908 msgid "" "This package provides a GNU Guile interface to the zstd (``zstandard'')\n" "compression library." msgstr "" -#: gnu/packages/guile.scm:926 +#: gnu/packages/guile.scm:930 msgid "" "Guile-LZMA is a Guile wrapper for the liblzma (XZ)\n" "library. It exposes an interface similar to other Guile compression\n" @@ -8338,7 +8465,7 @@ msgid "" "It supports JPEG, PNG and GIF formats." msgstr "" -#: gnu/packages/image-viewers.scm:640 +#: gnu/packages/image-viewers.scm:643 msgid "" "Luminance HDR (formerly QtPFSGui) is a graphical user interface\n" "application that aims to provide a workflow for high dynamic range (HDR)\n" @@ -8354,7 +8481,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:735 +#: gnu/packages/image-viewers.scm:738 msgid "" "MComix is a customizable image viewer that specializes as\n" "a comic and manga reader. It supports a variety of container formats\n" @@ -8363,7 +8490,7 @@ msgid "" "For PDF support, install the @emph{mupdf} package." msgstr "" -#: gnu/packages/image-viewers.scm:775 +#: gnu/packages/image-viewers.scm:778 msgid "" "qView is a Qt image viewer designed with visually\n" "minimalism and usability in mind. Its features include animated GIF\n" @@ -8371,14 +8498,14 @@ msgid "" "preloading." msgstr "" -#: gnu/packages/image-viewers.scm:799 +#: gnu/packages/image-viewers.scm:802 msgid "" "Chafa is a command-line utility that converts all kinds of images,\n" "including animated GIFs, into ANSI/Unicode character output that can be\n" "displayed in a terminal." msgstr "" -#: gnu/packages/image-viewers.scm:847 +#: gnu/packages/image-viewers.scm:850 msgid "" "@code{imv} is a command line image viewer intended for use\n" "with tiling window managers. Features include:\n" @@ -8400,7 +8527,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/image-viewers.scm:924 +#: gnu/packages/image-viewers.scm:927 msgid "" "Quick Image Viewer is a small and fast GDK/Imlib2 image viewer.\n" "Features include zoom, maxpect, scale down, fullscreen, slideshow, delete,\n" @@ -8409,7 +8536,7 @@ msgid "" "to set X desktop background." msgstr "" -#: gnu/packages/image-viewers.scm:968 +#: gnu/packages/image-viewers.scm:971 msgid "" "pqiv is a GTK-3 based command-line image viewer with a minimal UI.\n" "It is highly customizable, can be fully controlled from scripts, and has\n" @@ -8417,7 +8544,7 @@ msgid "" "archives." msgstr "" -#: gnu/packages/image-viewers.scm:1025 +#: gnu/packages/image-viewers.scm:1028 msgid "" "Nomacs is a simple to use image lounge featuring\n" "semi-transparent widgets that display additional information such as metadata,\n" @@ -8430,7 +8557,7 @@ msgid "" "synchronization of multiple instances." msgstr "" -#: gnu/packages/image-viewers.scm:1070 +#: gnu/packages/image-viewers.scm:1073 msgid "xzgv is a fast image viewer that provides extensive keyboard support." msgstr "" @@ -8693,17 +8820,17 @@ msgid "" "Math for editing mathematics." msgstr "" -#: gnu/packages/linux.scm:604 +#: gnu/packages/linux.scm:625 msgid "Headers of the Linux-Libre kernel." msgstr "" -#: gnu/packages/linux.scm:905 +#: gnu/packages/linux.scm:935 msgid "" "GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel.\n" "It has been modified to remove all non-free binary blobs." msgstr "" -#: gnu/packages/linux.scm:1215 +#: gnu/packages/linux.scm:1252 msgid "" "This simple Linux kernel module allows calls from user space to any\n" "@acronym{ACPI, Advanced Configuration and Power Interface} method provided by\n" @@ -8715,7 +8842,7 @@ msgid "" "and should be used with caution, especially on untested models." msgstr "" -#: gnu/packages/linux.scm:1283 +#: gnu/packages/linux.scm:1320 msgid "" "CoreFreq is a CPU monitor that reports low-level processor settings and\n" "performance data with notably high precision by using a loadable Linux kernel\n" @@ -8746,7 +8873,7 @@ msgid "" "@file{README.md} before loading it." msgstr "" -#: gnu/packages/linux.scm:1332 +#: gnu/packages/linux.scm:1369 msgid "" "This is the Linux kernel @acronym{ACPI, Advanced Configuration and Power\n" "Interface} platform driver for the @acronym{EC, Embedded Controller} firmware\n" @@ -8755,13 +8882,13 @@ msgid "" "and the notification, WiFi, and Bluetooth LED." msgstr "" -#: gnu/packages/linux.scm:1375 +#: gnu/packages/linux.scm:1413 msgid "" "This is Realtek's RTL8821CE Linux driver for wireless\n" "network adapters." msgstr "" -#: gnu/packages/linux.scm:1407 +#: gnu/packages/linux.scm:1445 msgid "" "This is Realtek's rtl8812au Linux driver for USB 802.11n wireless\n" "network adapters, modified by the aircrack-ng project to support monitor mode\n" @@ -8769,7 +8896,7 @@ msgid "" "RTL8812AU, RTL8821AU, and RTL8814AU chips." msgstr "" -#: gnu/packages/linux.scm:1431 +#: gnu/packages/linux.scm:1469 msgid "" "The @acronym{VHBA, Virtual SCSI Host Bus Adapter} module is the link\n" "between the CDemu user-space daemon and the kernel Linux. It acts as a\n" @@ -8778,13 +8905,13 @@ msgid "" "emulate optical devices such as DVD and CD-ROM drives." msgstr "" -#: gnu/packages/linux.scm:1460 +#: gnu/packages/linux.scm:1497 msgid "" "The bbswitch module provides a way to toggle the Nvidia\n" "graphics card on Optimus laptops." msgstr "" -#: gnu/packages/linux.scm:1501 +#: gnu/packages/linux.scm:1536 msgid "" "This package provides two Linux kernel drivers, ddcci and\n" "ddcci-backlight, that allows the control of DDC/CI monitors through the sysfs\n" @@ -8794,7 +8921,7 @@ msgid "" "supported under @file{/sys/class/backlight/}." msgstr "" -#: gnu/packages/linux.scm:1528 +#: gnu/packages/linux.scm:1563 msgid "" "This Linux module creates virtual video devices. @acronym{V4L2, Video\n" "for Linux 2} applications will treat these as ordinary video devices but read\n" @@ -8806,7 +8933,7 @@ msgid "" "application by hooking GStreamer into the loopback device." msgstr "" -#: gnu/packages/linux.scm:1569 +#: gnu/packages/linux.scm:1604 msgid "" "This package provides a driver for the XBox One S Wireless controller\n" "and some newer models when connected via Bluetooth. In addition to the included\n" @@ -8814,7 +8941,7 @@ msgid "" "which need to be installed separately." msgstr "" -#: gnu/packages/linux.scm:1622 +#: gnu/packages/linux.scm:1657 msgid "" "A *Free* project to implement OSF's RFC 86.0.\n" "Pluggable authentication modules are small shared object files that can\n" @@ -8822,18 +8949,18 @@ msgid "" "at login. Local and dynamic reconfiguration are its key features." msgstr "" -#: gnu/packages/linux.scm:1683 +#: gnu/packages/linux.scm:1718 msgid "This package provides a PAM interface using @code{ctypes}." msgstr "" -#: gnu/packages/linux.scm:1712 +#: gnu/packages/linux.scm:1747 msgid "" "This package provides a PAM module that hands over your\n" "login password to @code{gpg-agent}. This can be useful if you are using a\n" "GnuPG-based password manager like @code{pass}." msgstr "" -#: gnu/packages/linux.scm:1741 +#: gnu/packages/linux.scm:1776 msgid "" "This package contains utilities for accessing the powercap\n" "Linux kernel feature through sysfs. It includes an implementation for working\n" @@ -8841,7 +8968,7 @@ msgid "" "It provides the commands @code{powercap-info} and @code{powercap-set}." msgstr "" -#: gnu/packages/linux.scm:1772 +#: gnu/packages/linux.scm:1807 msgid "" "Powerstat measures and reports your computer's power consumption in real\n" "time. On mobile PCs, it uses ACPI battery information to measure the power\n" @@ -8858,28 +8985,28 @@ msgid "" "deviation, and minimum and maximum values. It can show a nice histogram too." msgstr "" -#: gnu/packages/linux.scm:1810 +#: gnu/packages/linux.scm:1845 msgid "" "This PSmisc package is a set of some small useful utilities that\n" "use the proc file system. We're not about changing the world, but\n" "providing the system administrator with some help in common tasks." msgstr "" -#: gnu/packages/linux.scm:1948 +#: gnu/packages/linux.scm:1984 msgid "" "Util-linux is a diverse collection of Linux kernel\n" "utilities. It provides dmesg and includes tools for working with file systems,\n" "block devices, UUIDs, TTYs, and many other tools." msgstr "" -#: gnu/packages/linux.scm:1986 +#: gnu/packages/linux.scm:2037 msgid "" "ddate displays the Discordian date and holidays of a given date.\n" "The Discordian calendar was made popular by the \"Illuminatus!\" trilogy\n" "by Robert Shea and Robert Anton Wilson." msgstr "" -#: gnu/packages/linux.scm:2040 +#: gnu/packages/linux.scm:2091 msgid "" "The kernel Linux's @dfn{frame buffers} provide a simple interface to\n" "different kinds of graphic displays. The @command{fbset} utility can query and\n" @@ -8887,7 +9014,7 @@ msgid "" "parameters." msgstr "" -#: gnu/packages/linux.scm:2085 +#: gnu/packages/linux.scm:2136 msgid "" "Procps is the package that has a bunch of small useful utilities\n" "that give information about processes using the Linux /proc file system.\n" @@ -8895,11 +9022,11 @@ msgid "" "slabtop, tload, top, vmstat, w, watch and sysctl." msgstr "" -#: gnu/packages/linux.scm:2130 +#: gnu/packages/linux.scm:2181 msgid "Tools for working with USB devices, such as lsusb." msgstr "" -#: gnu/packages/linux.scm:2154 +#: gnu/packages/linux.scm:2205 msgid "" "The USB/IP protocol enables to pass USB device from a server to\n" "a client over the network. The server is a machine which shares an\n" @@ -8912,23 +9039,23 @@ msgid "" "module." msgstr "" -#: gnu/packages/linux.scm:2237 +#: gnu/packages/linux.scm:2288 msgid "This package provides tools for manipulating ext2/ext3/ext4 file systems." msgstr "" -#: gnu/packages/linux.scm:2279 +#: gnu/packages/linux.scm:2330 msgid "" "This package provides statically-linked e2fsck command taken\n" "from the e2fsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:2302 +#: gnu/packages/linux.scm:2353 msgid "" "Extundelete is a set of tools that can recover deleted files from an\n" "ext3 or ext4 partition." msgstr "" -#: gnu/packages/linux.scm:2335 +#: gnu/packages/linux.scm:2386 msgid "" "Zerofree finds the unallocated blocks with non-zero value content in an\n" "ext2, ext3, or ext4 file system and fills them with zeroes (or another value).\n" @@ -8936,39 +9063,39 @@ msgid "" "Zerofree requires the file system to be unmounted or mounted read-only." msgstr "" -#: gnu/packages/linux.scm:2380 +#: gnu/packages/linux.scm:2431 msgid "" "strace is a system call tracer, i.e. a debugging tool which prints out a\n" "trace of all the system calls made by a another process/program." msgstr "" -#: gnu/packages/linux.scm:2403 +#: gnu/packages/linux.scm:2454 msgid "" "ltrace intercepts and records dynamic library calls which are called by\n" "an executed process and the signals received by that process. It can also\n" "intercept and print the system calls executed by the program." msgstr "" -#: gnu/packages/linux.scm:2428 +#: gnu/packages/linux.scm:2479 msgid "" "This package contains Advanced Linux Sound Architecture Use Case Manager\n" "configuration of audio input/output names and routing for specific audio\n" "hardware." msgstr "" -#: gnu/packages/linux.scm:2452 +#: gnu/packages/linux.scm:2503 msgid "" "This package contains Advanced Linux Sound Architecture topology\n" "configuration files that can be used for specific audio hardware." msgstr "" -#: gnu/packages/linux.scm:2499 gnu/packages/linux.scm:2548 +#: gnu/packages/linux.scm:2550 gnu/packages/linux.scm:2599 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system." msgstr "" -#: gnu/packages/linux.scm:2617 +#: gnu/packages/linux.scm:2668 msgid "" "The Advanced Linux Sound Architecture (ALSA) provides audio and\n" "MIDI functionality to the Linux-based operating system. This package enhances ALSA\n" @@ -8977,7 +9104,7 @@ msgid "" "external rate conversion." msgstr "" -#: gnu/packages/linux.scm:2655 +#: gnu/packages/linux.scm:2706 msgid "" "@command{iptables} is the user-space command line program used to\n" "configure the Linux 2.4.x and later IPv4 packet filtering ruleset\n" @@ -8989,7 +9116,7 @@ msgid "" "Both commands are targeted at system administrators." msgstr "" -#: gnu/packages/linux.scm:2691 +#: gnu/packages/linux.scm:2742 msgid "" "This simple daemon feeds entropy from the CPU Jitter @acronym{RNG, random\n" "number generator} core to the kernel Linux's entropy estimator. This prevents\n" @@ -9011,7 +9138,7 @@ msgid "" "early boot when entropy may be low, especially in virtualised environments." msgstr "" -#: gnu/packages/linux.scm:2727 +#: gnu/packages/linux.scm:2778 msgid "" "@command{lsscsi} lists SCSI logical units or SCSI targets. It can\n" "also list NVMe namespaces or controllers and show the relationship between a\n" @@ -9019,7 +9146,7 @@ msgid "" "name." msgstr "" -#: gnu/packages/linux.scm:2751 +#: gnu/packages/linux.scm:2802 msgid "" "ebtables is an application program used to set up and maintain the\n" "tables of rules (inside the Linux kernel) that inspect Ethernet frames. It is\n" @@ -9027,7 +9154,7 @@ msgid "" "that the Ethernet protocol is much simpler than the IP protocol." msgstr "" -#: gnu/packages/linux.scm:2816 +#: gnu/packages/linux.scm:2867 msgid "" "Iproute2 is a collection of utilities for controlling TCP/IP networking\n" "and traffic with the Linux kernel. The most important of these are\n" @@ -9039,7 +9166,7 @@ msgid "" "inadequately in modern network environments, and both should be deprecated." msgstr "" -#: gnu/packages/linux.scm:2896 +#: gnu/packages/linux.scm:2947 msgid "" "This package includes the important tools for controlling the network\n" "subsystem of the Linux kernel. This includes arp, ifconfig, netstat, rarp and\n" @@ -9048,13 +9175,13 @@ msgid "" "configuration (iptunnel, ipmaddr)." msgstr "" -#: gnu/packages/linux.scm:2947 +#: gnu/packages/linux.scm:2989 msgid "" "Libcap2 provides a programming interface to POSIX capabilities on\n" "Linux-based operating systems." msgstr "" -#: gnu/packages/linux.scm:2974 +#: gnu/packages/linux.scm:3016 msgid "" "Utilities for Linux's Ethernet bridging facilities. A bridge is a way\n" "to connect two Ethernet segments together in a protocol independent way.\n" @@ -9063,7 +9190,7 @@ msgid "" "transparently through a bridge." msgstr "" -#: gnu/packages/linux.scm:3025 +#: gnu/packages/linux.scm:3067 msgid "" "The libnl suite is a collection of libraries providing APIs to netlink\n" "protocol based Linux kernel interfaces. Netlink is an IPC mechanism primarily\n" @@ -9072,13 +9199,13 @@ msgid "" "configuration and monitoring interfaces." msgstr "" -#: gnu/packages/linux.scm:3099 +#: gnu/packages/linux.scm:3141 msgid "" "iw is a new nl80211 based CLI configuration utility for wireless\n" "devices. It replaces @code{iwconfig}, which is deprecated." msgstr "" -#: gnu/packages/linux.scm:3149 +#: gnu/packages/linux.scm:3191 msgid "" "PowerTOP is a Linux tool to diagnose issues with power consumption and\n" "power management. In addition to being a diagnostic tool, PowerTOP also has\n" @@ -9087,19 +9214,19 @@ msgid "" "settings." msgstr "" -#: gnu/packages/linux.scm:3176 +#: gnu/packages/linux.scm:3218 msgid "" "Aumix adjusts an audio mixer from X, the console, a terminal,\n" "the command line or a script." msgstr "" -#: gnu/packages/linux.scm:3207 +#: gnu/packages/linux.scm:3249 msgid "" "Iotop is a Python program with a top like user interface to show the\n" "processes currently causing I/O." msgstr "" -#: gnu/packages/linux.scm:3265 +#: gnu/packages/linux.scm:3307 msgid "" "As a consequence of its monolithic design, file system code for Linux\n" "normally goes into the kernel itself---which is not only a robustness issue,\n" @@ -9109,7 +9236,7 @@ msgid "" "user-space processes." msgstr "" -#: gnu/packages/linux.scm:3358 +#: gnu/packages/linux.scm:3400 msgid "" "UnionFS-FUSE is a flexible union file system implementation in user\n" "space, using the FUSE library. Mounting a union file system allows you to\n" @@ -9117,7 +9244,7 @@ msgid "" "UnionFS-FUSE additionally supports copy-on-write." msgstr "" -#: gnu/packages/linux.scm:3437 +#: gnu/packages/linux.scm:3479 msgid "" "This is a file system client based on the SSH File Transfer Protocol.\n" "Since most SSH servers already support this protocol it is very easy to set\n" @@ -9125,7 +9252,7 @@ msgid "" "file system is as easy as logging into the server with an SSH client." msgstr "" -#: gnu/packages/linux.scm:3464 +#: gnu/packages/linux.scm:3506 msgid "" "archivemount is a FUSE-based file system for Unix variants,\n" "including Linux. Its purpose is to mount archives (i.e. tar, tar.gz, etc.) to a\n" @@ -9134,7 +9261,7 @@ msgid "" "compressed, transparent to other programs, without decompressing them." msgstr "" -#: gnu/packages/linux.scm:3495 +#: gnu/packages/linux.scm:3537 msgid "" "NUMA stands for Non-Uniform Memory Access, in other words a system whose\n" "memory is not all in one place. The @command{numactl} program allows you to\n" @@ -9147,26 +9274,26 @@ msgid "" "NUMA performance on your system." msgstr "" -#: gnu/packages/linux.scm:3533 +#: gnu/packages/linux.scm:3575 msgid "" "Kbd-neo provides the Neo2 keyboard layout for use with\n" "@command{loadkeys(1)} from @code{kbd(4)}." msgstr "" -#: gnu/packages/linux.scm:3599 +#: gnu/packages/linux.scm:3641 msgid "" "This package contains keytable files and keyboard utilities compatible\n" "for systems using the Linux kernel. This includes commands such as\n" "@code{loadkeys}, @code{setfont}, @code{kbdinfo}, and @code{chvt}." msgstr "" -#: gnu/packages/linux.scm:3662 +#: gnu/packages/linux.scm:3704 msgid "" "The inotify-tools packages provides a C library and command-line tools\n" "to use Linux' inotify mechanism, which allows file accesses to be monitored." msgstr "" -#: gnu/packages/linux.scm:3714 +#: gnu/packages/linux.scm:3756 msgid "" "Kmod is a set of tools to handle common tasks with Linux\n" "kernel modules like insert, remove, list, check properties, resolve\n" @@ -9177,21 +9304,21 @@ msgid "" "from the module-init-tools project." msgstr "" -#: gnu/packages/linux.scm:3769 +#: gnu/packages/linux.scm:3812 msgid "" "Early OOM is a minimalist out of memory (OOM) daemon that\n" "runs in user space and provides a more responsive and configurable alternative\n" "to the in-kernel OOM killer." msgstr "" -#: gnu/packages/linux.scm:3867 +#: gnu/packages/linux.scm:3892 msgid "" "Udev is a daemon which dynamically creates and removes\n" "device nodes from /dev/, handles hotplug events and loads drivers at boot\n" "time." msgstr "" -#: gnu/packages/linux.scm:3897 +#: gnu/packages/linux.scm:3922 msgid "" "Python-evdev provides bindings to the generic input event interface in\n" "Linux. The @code{evdev} interface serves the purpose of passing events\n" @@ -9203,7 +9330,7 @@ msgid "" "devices that can inject events directly into the input subsystem." msgstr "" -#: gnu/packages/linux.scm:3930 +#: gnu/packages/linux.scm:3955 msgid "" "Interception Tools provides a composable infrastructure on top of\n" "@code{libudev} and @code{libevdev}. The following utilities are provided:\n" @@ -9216,33 +9343,33 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/linux.scm:3979 +#: gnu/packages/linux.scm:4004 msgid "" "Dual Function Keys is a plugin for @code{interception-tools} that allows\n" "one to send arbitrary keycodes when a given key is tapped or held." msgstr "" -#: gnu/packages/linux.scm:4056 +#: gnu/packages/linux.scm:4081 msgid "" "LVM2 is the logical volume management tool set for Linux-based systems.\n" "This package includes the user-space libraries and tools, including the device\n" "mapper. Kernel components are part of Linux-libre." msgstr "" -#: gnu/packages/linux.scm:4122 +#: gnu/packages/linux.scm:4147 msgid "" "A suite of tools for manipulating the metadata of the\n" "dm-thin, dm-cache and dm-era device-mapper targets." msgstr "" -#: gnu/packages/linux.scm:4144 +#: gnu/packages/linux.scm:4169 msgid "" "This package provides an advanced monitor of critical system\n" "resources, supervises the heartbeat of processes, records deadline\n" "transgressions, and initiates a controlled reset if needed." msgstr "" -#: gnu/packages/linux.scm:4189 +#: gnu/packages/linux.scm:4214 msgid "" "Wireless Tools are used to manipulate the now-deprecated\n" "Linux Wireless Extensions; consider using @code{iw} instead. The Wireless\n" @@ -9251,35 +9378,35 @@ msgid "" "interface." msgstr "" -#: gnu/packages/linux.scm:4280 +#: gnu/packages/linux.scm:4305 msgid "" "The Central Regulatory Domain Agent (CRDA) acts as the udev helper for\n" "communication between the kernel Linux and user space for regulatory\n" "compliance." msgstr "" -#: gnu/packages/linux.scm:4350 +#: gnu/packages/linux.scm:4375 msgid "" "This package contains the wireless regulatory database for the Central\n" "Regulatory Database Agent (CRDA). The database contains information on\n" "country-specific regulations for the wireless spectrum." msgstr "" -#: gnu/packages/linux.scm:4424 +#: gnu/packages/linux.scm:4449 msgid "" "Lm-sensors is a hardware health monitoring package for Linux. It allows\n" "you to access information from temperature, voltage, and fan speed sensors.\n" "It works with most newer systems." msgstr "" -#: gnu/packages/linux.scm:4444 +#: gnu/packages/linux.scm:4469 msgid "" "@command{iucode_tool} is a utility to work with microcode packages for\n" "Intel processors. It can convert between formats, extract specific versions,\n" "create a firmware image suitable for the Linux kernel, and more." msgstr "" -#: gnu/packages/linux.scm:4475 +#: gnu/packages/linux.scm:4501 msgid "" "The i2c-tools package contains a heterogeneous set of I2C tools for\n" "Linux: a bus probing tool, a chip dumper, register-level SMBus access helpers,\n" @@ -9287,14 +9414,14 @@ msgid "" "SMBus access." msgstr "" -#: gnu/packages/linux.scm:4514 +#: gnu/packages/linux.scm:4540 msgid "" "Xsensors reads data from the libsensors library regarding hardware\n" "health such as temperature, voltage and fan speed and displays the information\n" "in a digital read-out." msgstr "" -#: gnu/packages/linux.scm:4568 +#: gnu/packages/linux.scm:4600 msgid "" "perf is a tool suite for profiling using hardware performance counters,\n" "with support in the Linux kernel. perf can instrument CPU performance\n" @@ -9303,7 +9430,7 @@ msgid "" "particular the @code{perf} command." msgstr "" -#: gnu/packages/linux.scm:4593 +#: gnu/packages/linux.scm:4625 msgid "" "pflask is a simple tool for creating Linux namespace\n" "containers. It can be used for running a command or even booting an OS inside\n" @@ -9312,7 +9439,7 @@ msgid "" "thanks to the use of namespaces." msgstr "" -#: gnu/packages/linux.scm:4678 +#: gnu/packages/linux.scm:4710 msgid "" "Singularity is a container platform supporting a number of\n" "container image formats. It can build SquashFS container images or import\n" @@ -9320,7 +9447,7 @@ msgid "" "isolation or root privileges." msgstr "" -#: gnu/packages/linux.scm:4711 +#: gnu/packages/linux.scm:4742 msgid "" "@command{hdparm} is a command-line utility to control ATA controllers and\n" "disk drives. It can increase performance and/or reliability by careful tuning\n" @@ -9334,21 +9461,21 @@ msgid "" "Translation (@dfn{SAT}) are also supported." msgstr "" -#: gnu/packages/linux.scm:4750 +#: gnu/packages/linux.scm:4782 msgid "" "Nvme-cli is a utility to provide standards compliant tooling\n" "for NVM-Express drives. It was made specifically for Linux as it relies on the\n" "IOCTLs defined by the mainline kernel driver." msgstr "" -#: gnu/packages/linux.scm:4776 +#: gnu/packages/linux.scm:4808 msgid "" "rfkill is a simple tool for accessing the rfkill device interface,\n" "which is used to enable and disable wireless networking devices, typically\n" "WLAN, Bluetooth and mobile broadband." msgstr "" -#: gnu/packages/linux.scm:4798 +#: gnu/packages/linux.scm:4830 msgid "" "@code{acpi} attempts to replicate the functionality of the\n" "\"old\" @code{apm} command on ACPI systems, including battery and thermal\n" @@ -9356,7 +9483,7 @@ msgid "" "about ACPI devices." msgstr "" -#: gnu/packages/linux.scm:4819 +#: gnu/packages/linux.scm:4851 msgid "" "acpid is designed to notify user-space programs of Advanced\n" "Configuration and Power Interface (ACPI) events. acpid should be started\n" @@ -9365,34 +9492,34 @@ msgid "" "specified in /etc/acpi/events and execute the rules that match the event." msgstr "" -#: gnu/packages/linux.scm:4843 +#: gnu/packages/linux.scm:4875 msgid "" "These are a set of utilities built upon sysfs, a virtual file system in\n" "Linux kernel versions 2.5+ that exposes a system's device tree. The package\n" "also contains the libsysfs library." msgstr "" -#: gnu/packages/linux.scm:4886 +#: gnu/packages/linux.scm:4918 msgid "" "The cpufrequtils suite contains utilities to retrieve CPU frequency\n" "information, and set the CPU frequency if supported, using the cpufreq\n" "capabilities of the Linux kernel." msgstr "" -#: gnu/packages/linux.scm:4922 +#: gnu/packages/linux.scm:4954 msgid "" "This package provides many of the missing pieces in GNU\n" "libc. Most notably the string functions: strlcpy(3), strlcat(3) and the *BSD\n" "sys/queue.h and sys/tree.h API's." msgstr "" -#: gnu/packages/linux.scm:4945 +#: gnu/packages/linux.scm:4977 msgid "" "This package provides small event loop that wraps the\n" "epoll family of APIs." msgstr "" -#: gnu/packages/linux.scm:4966 +#: gnu/packages/linux.scm:4998 msgid "" "Libraw1394 is the only supported interface to the kernel side raw1394 of\n" "the Linux IEEE-1394 subsystem, which provides direct access to the connected\n" @@ -9401,26 +9528,26 @@ msgid "" "protocol in question." msgstr "" -#: gnu/packages/linux.scm:4992 +#: gnu/packages/linux.scm:5024 msgid "" "Libavc1394 is a programming interface to the AV/C specification from\n" "the 1394 Trade Association. AV/C stands for Audio/Video Control." msgstr "" -#: gnu/packages/linux.scm:5016 +#: gnu/packages/linux.scm:5048 msgid "" "The libiec61883 library provides a higher level API for streaming DV,\n" "MPEG-2 and audio over Linux IEEE 1394." msgstr "" -#: gnu/packages/linux.scm:5067 +#: gnu/packages/linux.scm:5099 msgid "" "mdadm is a tool for managing Linux Software RAID arrays. It can create,\n" "assemble, report on, and monitor arrays. It can also move spares between raid\n" "arrays when needed." msgstr "" -#: gnu/packages/linux.scm:5199 +#: gnu/packages/linux.scm:5231 msgid "" "This package provides the following binaries to drive the\n" "Linux Device Mapper multipathing driver:\n" @@ -9433,66 +9560,66 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:5244 +#: gnu/packages/linux.scm:5288 msgid "" "This library enables userspace to use Linux kernel asynchronous I/O\n" "system calls, important for the performance of databases and other advanced\n" "applications." msgstr "" -#: gnu/packages/linux.scm:5287 +#: gnu/packages/linux.scm:5331 msgid "" "Blktrace is a block layer IO tracing mechanism which provides\n" "detailed information about request queue operations to user space. It extracts\n" "event traces from the kernel (via the relaying through the debug file system)." msgstr "" -#: gnu/packages/linux.scm:5312 +#: gnu/packages/linux.scm:5356 msgid "" "The SBC is a digital audio encoder and decoder used to transfer data to\n" "Bluetooth audio output devices like headphones or loudspeakers." msgstr "" -#: gnu/packages/linux.scm:5379 +#: gnu/packages/linux.scm:5423 msgid "" "BlueZ provides support for the core Bluetooth layers and protocols. It\n" "is flexible, efficient and uses a modular implementation." msgstr "" -#: gnu/packages/linux.scm:5403 +#: gnu/packages/linux.scm:5447 msgid "" "This package provides a FUSE-based file system that provides read and\n" "write access to exFAT devices." msgstr "" -#: gnu/packages/linux.scm:5426 +#: gnu/packages/linux.scm:5470 msgid "" "FuseISO is a FUSE module to mount ISO file system images (.iso, .nrg,\n" ".bin, .mdf and .img files). It supports plain ISO9660 Level 1 and 2, Rock\n" "Ridge, Joliet, and zisofs." msgstr "" -#: gnu/packages/linux.scm:5480 +#: gnu/packages/linux.scm:5524 msgid "" "The GPM (general-purpose mouse) daemon is a mouse server for\n" "applications running on the Linux console. It allows users to select items\n" "and copy/paste text in the console and in xterm." msgstr "" -#: gnu/packages/linux.scm:5551 +#: gnu/packages/linux.scm:5595 msgid "" "Btrfs is a @dfn{copy-on-write} (CoW) file system for Linux\n" "aimed at implementing advanced features while focusing on fault tolerance,\n" "repair and easy administration." msgstr "" -#: gnu/packages/linux.scm:5585 +#: gnu/packages/linux.scm:5629 msgid "" "This package provides the statically-linked @command{btrfs}\n" "from the btrfs-progs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5617 +#: gnu/packages/linux.scm:5661 msgid "" "Cramfs is a Linux file system designed to be simple, small,\n" "and to compress things well. It is used on a number of embedded systems and\n" @@ -9500,7 +9627,7 @@ msgid "" "blocks and random block placement." msgstr "" -#: gnu/packages/linux.scm:5652 +#: gnu/packages/linux.scm:5696 msgid "" "@command{compsize} takes a list of files (given as\n" "arguments) on a Btrfs file system and measures used compression types and\n" @@ -9517,20 +9644,20 @@ msgid "" "obviously it can be shared with files outside our set)." msgstr "" -#: gnu/packages/linux.scm:5700 +#: gnu/packages/linux.scm:5744 msgid "" "F2FS, the Flash-Friendly File System, is a modern file system\n" "designed to be fast and durable on flash devices such as solid-state\n" "disks and SD cards. This package provides the userland utilities." msgstr "" -#: gnu/packages/linux.scm:5790 +#: gnu/packages/linux.scm:5834 msgid "" "This package provides statically-linked fsck.f2fs command taken\n" "from the f2fs-tools package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:5821 +#: gnu/packages/linux.scm:5865 msgid "" "Prevents shock damage to the internal spinning hard drive(s) of some\n" "HP and Dell laptops. When sudden movement is detected, all input/output\n" @@ -9540,7 +9667,7 @@ msgid "" "feature, and a laptop with an accelerometer. It has no effect on SSDs." msgstr "" -#: gnu/packages/linux.scm:5879 +#: gnu/packages/linux.scm:5923 msgid "" "Thinkfan is a simple fan control program. It reads temperatures,\n" "checks them against configured limits and switches to appropriate (also\n" @@ -9549,7 +9676,7 @@ msgid "" "from userspace." msgstr "" -#: gnu/packages/linux.scm:5935 +#: gnu/packages/linux.scm:5979 msgid "" "Tpacpi-bat is a command-line interface to control battery charging on\n" "@uref{https://github.com/teleshoes/tpacpi-bat/wiki/Supported-Hardware, Lenovo\n" @@ -9564,7 +9691,7 @@ msgid "" "supported." msgstr "" -#: gnu/packages/linux.scm:5979 +#: gnu/packages/linux.scm:6023 msgid "" "Tmon is a tool to interact with the complex thermal subsystem of the\n" "kernel Linux. It helps visualize thermal relationships and real-time thermal\n" @@ -9581,7 +9708,7 @@ msgid "" "by hand is no trivial task: @command{tmon} aims to make it understandable." msgstr "" -#: gnu/packages/linux.scm:6021 +#: gnu/packages/linux.scm:6065 msgid "" "Turbostat reports x86 processor topology, frequency, idle power state\n" "statistics, temperature, and power consumption. Some information is unavailable\n" @@ -9596,20 +9723,20 @@ msgid "" "invocations of itself." msgstr "" -#: gnu/packages/linux.scm:6080 +#: gnu/packages/linux.scm:6124 msgid "" "NTFS-3G provides read-write access to NTFS file systems, which are\n" "commonly found on Microsoft Windows. It is implemented as a FUSE file system.\n" "The package provides additional NTFS tools." msgstr "" -#: gnu/packages/linux.scm:6127 +#: gnu/packages/linux.scm:6171 msgid "" "This package provides a statically linked @command{ntfsfix} taken\n" "from the ntfs-3g package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:6174 +#: gnu/packages/linux.scm:6218 msgid "" "This package provides userspace components for the InfiniBand\n" "subsystem of the Linux kernel. Specifically it contains userspace\n" @@ -9629,7 +9756,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6228 +#: gnu/packages/linux.scm:6272 msgid "" "This is a collection of tests written over uverbs intended for\n" "use as a performance micro-benchmark. The tests may be used for hardware or\n" @@ -9645,20 +9772,20 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/linux.scm:6270 +#: gnu/packages/linux.scm:6314 msgid "" "Monitor a hardware random number generator, and supply entropy\n" "from that to the system kernel's @file{/dev/random} machinery." msgstr "" -#: gnu/packages/linux.scm:6312 +#: gnu/packages/linux.scm:6356 msgid "" "cpupower is a set of user-space tools that use the cpufreq feature of the\n" "Linux kernel to retrieve and control processor features related to power saving,\n" "such as frequency and voltage scaling." msgstr "" -#: gnu/packages/linux.scm:6344 +#: gnu/packages/linux.scm:6388 msgid "" "@command{x86_energy_perf_policy} displays and updates energy-performance\n" "policy settings specific to Intel Architecture Processors. Settings are\n" @@ -9666,7 +9793,7 @@ msgid "" "cpufreq sub-system is enabled or not." msgstr "" -#: gnu/packages/linux.scm:6370 +#: gnu/packages/linux.scm:6414 msgid "" "haveged generates an unpredictable stream of random numbers for use by\n" "Linux's @file{/dev/random} and @file{/dev/urandom} devices. The kernel's\n" @@ -9684,7 +9811,7 @@ msgid "" "not as a replacement for it." msgstr "" -#: gnu/packages/linux.scm:6456 +#: gnu/packages/linux.scm:6500 msgid "" "eCryptfs is a POSIX-compliant stacked cryptographic file system for Linux.\n" "Each file's cryptographic meta-data is stored inside the file itself, along\n" @@ -9694,7 +9821,7 @@ msgid "" "2.6.19. This package contains the userland utilities to manage it." msgstr "" -#: gnu/packages/linux.scm:6488 +#: gnu/packages/linux.scm:6532 msgid "" "Libnfsidmap is a library holding mulitiple methods of\n" "mapping names to ids and visa versa, mainly for NFSv4. It provides an\n" @@ -9702,13 +9829,13 @@ msgid "" "the default @code{nsswitch} and the experimental @code{umich_ldap}." msgstr "" -#: gnu/packages/linux.scm:6524 +#: gnu/packages/linux.scm:6568 msgid "" "Tools for loading and managing Linux kernel modules, such as\n" "@code{modprobe}, @code{insmod}, @code{lsmod}, and more." msgstr "" -#: gnu/packages/linux.scm:6565 +#: gnu/packages/linux.scm:6609 msgid "" "The mcelog daemon logs memory, I/O, CPU, and other hardware errors on x86\n" "systems running the kernel Linux. It can also perform user-defined tasks, such\n" @@ -9716,13 +9843,13 @@ msgid "" "exceeded." msgstr "" -#: gnu/packages/linux.scm:6596 +#: gnu/packages/linux.scm:6640 msgid "" "This package provides utilities for testing, partitioning, etc\n" "of flash storage." msgstr "" -#: gnu/packages/linux.scm:6628 +#: gnu/packages/linux.scm:6672 msgid "" "The libseccomp library provides an easy to use, platform\n" "independent, interface to the Linux Kernel's syscall filtering mechanism. The\n" @@ -9732,7 +9859,7 @@ msgid "" "developers." msgstr "" -#: gnu/packages/linux.scm:6671 +#: gnu/packages/linux.scm:6715 msgid "" "RadeonTop monitors resource consumption on supported AMD\n" "Radeon Graphics Processing Units (GPUs), either in real time as bar graphs on\n" @@ -9742,13 +9869,13 @@ msgid "" "under OpenGL graphics workloads." msgstr "" -#: gnu/packages/linux.scm:6718 +#: gnu/packages/linux.scm:6762 msgid "" "This package provides a library and a command line\n" "interface to the variable facility of UEFI boot firmware." msgstr "" -#: gnu/packages/linux.scm:6755 +#: gnu/packages/linux.scm:6799 msgid "" "@code{efibootmgr} is a user-space application to modify the Intel\n" "Extensible Firmware Interface (EFI) Boot Manager. This application can\n" @@ -9756,7 +9883,7 @@ msgid "" "running boot option, and more." msgstr "" -#: gnu/packages/linux.scm:6791 +#: gnu/packages/linux.scm:6835 msgid "" "The sysstat utilities are a collection of performance\n" "monitoring tools for Linux. These include @code{mpstat}, @code{iostat},\n" @@ -9764,7 +9891,7 @@ msgid "" "@code{sadf} and @code{sa}." msgstr "" -#: gnu/packages/linux.scm:6832 +#: gnu/packages/linux.scm:6876 msgid "" "Light is a program to send commands to screen backlight controllers\n" "under GNU/Linux. Features include:\n" @@ -9778,7 +9905,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/linux.scm:6880 +#: gnu/packages/linux.scm:6924 msgid "" "This program allows you read and control device brightness. Devices\n" "include backlight and LEDs. It can also preserve current brightness before\n" @@ -9788,7 +9915,7 @@ msgid "" "interface in sysfs, which can be accomplished with the included udev rules." msgstr "" -#: gnu/packages/linux.scm:7007 +#: gnu/packages/linux.scm:7048 msgid "" "TLP is a power management tool for Linux. It comes with\n" "a default configuration already optimized for battery life. Nevertheless,\n" @@ -9796,7 +9923,7 @@ msgid "" "every time the power supply source is changed." msgstr "" -#: gnu/packages/linux.scm:7073 +#: gnu/packages/linux.scm:7114 msgid "" "The Python scripts in this project generate a GTK-UI to change\n" "TLP configuration files easily. It aims to protect users from setting\n" @@ -9804,7 +9931,7 @@ msgid "" "configuration values." msgstr "" -#: gnu/packages/linux.scm:7099 +#: gnu/packages/linux.scm:7140 msgid "" "@command{lshw} (Hardware Lister) is a small tool to provide\n" "detailed information on the hardware configuration of the machine.\n" @@ -9814,7 +9941,7 @@ msgid "" "machines (PowerMac G4 is known to work)." msgstr "" -#: gnu/packages/linux.scm:7123 +#: gnu/packages/linux.scm:7164 msgid "" "Libmnl is a minimalistic user-space library oriented to\n" "Netlink developers. There are a lot of common tasks in parsing, validating,\n" @@ -9823,7 +9950,7 @@ msgid "" "re-use code and to avoid re-inventing the wheel." msgstr "" -#: gnu/packages/linux.scm:7148 +#: gnu/packages/linux.scm:7189 msgid "" "Libnftnl is a userspace library providing a low-level netlink\n" "programming interface to the in-kernel nf_tables subsystem. The library\n" @@ -9831,7 +9958,7 @@ msgid "" "used by nftables." msgstr "" -#: gnu/packages/linux.scm:7194 +#: gnu/packages/linux.scm:7235 msgid "" "nftables is the project that aims to replace the existing\n" "{ip,ip6,arp,eb}tables framework. Basically, this project provides a new packet\n" @@ -9841,7 +9968,7 @@ msgid "" "userspace queueing component and the logging subsystem." msgstr "" -#: gnu/packages/linux.scm:7336 +#: gnu/packages/linux.scm:7377 msgid "" "PRoot is a user-space implementation of @code{chroot}, @code{mount --bind},\n" "and @code{binfmt_misc}. This means that users don't need any privileges or\n" @@ -9854,7 +9981,7 @@ msgid "" "available in the kernel Linux." msgstr "" -#: gnu/packages/linux.scm:7399 +#: gnu/packages/linux.scm:7437 msgid "" "cpuid dumps detailed information about the CPU(s) gathered\n" "from the CPUID instruction, and also determines the exact model of CPU(s). It\n" @@ -9862,14 +9989,14 @@ msgid "" "NexGen, Rise, and SiS CPUs." msgstr "" -#: gnu/packages/linux.scm:7426 +#: gnu/packages/linux.scm:7464 msgid "" "jmtpfs uses FUSE (file system in userspace) to provide access\n" "to data over the Media Transfer Protocol (MTP). Unprivileged users can mount\n" "the MTP device as a file system." msgstr "" -#: gnu/packages/linux.scm:7453 +#: gnu/packages/linux.scm:7491 msgid "" "Procenv is a command-line tool that displays as much detail about\n" "itself and its environment as possible. It can be used as a test\n" @@ -9877,7 +10004,7 @@ msgid "" "comparing system environments." msgstr "" -#: gnu/packages/linux.scm:7482 +#: gnu/packages/linux.scm:7520 msgid "" "OpenFabrics Interfaces (OFI) is a framework focused on exporting fabric\n" "communication services to applications. OFI is best described as a collection\n" @@ -9891,7 +10018,7 @@ msgid "" "libraries, which are often integrated directly into libfabric." msgstr "" -#: gnu/packages/linux.scm:7544 +#: gnu/packages/linux.scm:7582 msgid "" "The PSM Messaging API, or PSM API, is Intel's low-level user-level\n" "communications interface for the True Scale family of products. PSM users are\n" @@ -9899,14 +10026,14 @@ msgid "" "interfaces in parallel environments." msgstr "" -#: gnu/packages/linux.scm:7587 +#: gnu/packages/linux.scm:7625 msgid "" "snapscreenshot saves a screenshot of one or more Linux text consoles as a\n" "Targa (@dfn{.tga}) image. It can be used by anyone with read access to the\n" "relevant @file{/dev/vcs*} file(s)." msgstr "" -#: gnu/packages/linux.scm:7641 +#: gnu/packages/linux.scm:7679 msgid "" "fbcat saves the contents of the Linux framebuffer (@file{/dev/fb*}), or\n" "a dump therof. It supports a wide range of drivers and pixel formats.\n" @@ -9918,14 +10045,14 @@ msgid "" "emulates the behaviour of Gunnar Monell's older fbgrab utility." msgstr "" -#: gnu/packages/linux.scm:7672 +#: gnu/packages/linux.scm:7710 msgid "" "Control groups is Linux kernel method for process resource\n" "restriction, permission handling and more. This package provides userspace\n" "interface to this kernel feature." msgstr "" -#: gnu/packages/linux.scm:7707 +#: gnu/packages/linux.scm:7745 msgid "" "mbpfan is a fan control daemon for Apple Macbooks. It uses input from\n" "the @code{coretemp} module and sets the fan speed using the @code{applesmc}\n" @@ -9933,7 +10060,7 @@ msgid "" "privileges." msgstr "" -#: gnu/packages/linux.scm:7751 +#: gnu/packages/linux.scm:7789 msgid "" "This package is low-level user-level Intel's communications interface.\n" "The PSM2 API is a high-performance vendor-specific protocol that provides a\n" @@ -9941,7 +10068,7 @@ msgid "" "high-speed networking devices." msgstr "" -#: gnu/packages/linux.scm:7794 +#: gnu/packages/linux.scm:7832 msgid "" "This package provides a library called libpfm4, which is used to develop\n" "monitoring tools exploiting the performance monitoring events such as those\n" @@ -9956,7 +10083,7 @@ msgid "" "introduced in Linux 2.6.31." msgstr "" -#: gnu/packages/linux.scm:7824 +#: gnu/packages/linux.scm:7862 msgid "" "@code{libnfnetlink} is the low-level library for netfilter related\n" "kernel/userspace communication. It provides a generic messaging\n" @@ -9965,7 +10092,7 @@ msgid "" "management tools in userspace." msgstr "" -#: gnu/packages/linux.scm:7851 +#: gnu/packages/linux.scm:7889 msgid "" "The netlink package provides a simple netlink library for\n" "Go. Netlink is the interface a user-space program in Linux uses to\n" @@ -9973,7 +10100,7 @@ msgid "" "IP addresses and routes, and configure IPsec." msgstr "" -#: gnu/packages/linux.scm:7891 +#: gnu/packages/linux.scm:7929 msgid "" "The inih (INI Not Invented Here) library is a simple .INI file\n" "parser written in C. It's only a couple of pages of code, and it was designed to\n" @@ -9982,19 +10109,19 @@ msgid "" "822-style multi-line syntax and name: value entries." msgstr "" -#: gnu/packages/linux.scm:7942 +#: gnu/packages/linux.scm:7980 msgid "" "This package provides commands to create and check XFS\n" "file systems." msgstr "" -#: gnu/packages/linux.scm:7998 +#: gnu/packages/linux.scm:8036 msgid "" "This package provides a statically linked @command{xfs_repair} taken\n" "from the xfsprogs package. It is meant to be used in initrds." msgstr "" -#: gnu/packages/linux.scm:8034 +#: gnu/packages/linux.scm:8072 msgid "" "This package provides a program to generate an ext2\n" "file system as a normal (non-root) user. It does not require you to mount\n" @@ -10002,7 +10129,7 @@ msgid "" "the superuser to make device nodes." msgstr "" -#: gnu/packages/linux.scm:8129 +#: gnu/packages/linux.scm:8167 msgid "" "@command{fakeroot} runs a command in an environment where it appears to\n" "have root privileges for file manipulation. This is useful for allowing users\n" @@ -10015,7 +10142,7 @@ msgid "" "without using the archiver." msgstr "" -#: gnu/packages/linux.scm:8169 +#: gnu/packages/linux.scm:8207 msgid "" "@command{fakechroot} runs a command in an environment were is additional\n" "possibility to use @code{chroot} command without root privileges. This is\n" @@ -10026,13 +10153,13 @@ msgid "" "set as @code{LD_PRELOAD} to override the C library file system functions." msgstr "" -#: gnu/packages/linux.scm:8215 +#: gnu/packages/linux.scm:8253 msgid "" "inputattach dispatches input events from several device\n" "types and interfaces and translates so that the X server can use them." msgstr "" -#: gnu/packages/linux.scm:8251 +#: gnu/packages/linux.scm:8289 msgid "" "PipeWire is a project that aims to greatly improve handling of audio and\n" "video under Linux. It aims to support the usecases currently handled by both\n" @@ -10044,7 +10171,7 @@ msgid "" "of Linux application development." msgstr "" -#: gnu/packages/linux.scm:8318 +#: gnu/packages/linux.scm:8356 msgid "" "WirePlumber is a modular session / policy manager for\n" "PipeWire and a GObject-based high-level library that wraps PipeWire's API,\n" @@ -10052,7 +10179,7 @@ msgid "" "tools for managing PipeWire." msgstr "" -#: gnu/packages/linux.scm:8357 +#: gnu/packages/linux.scm:8395 msgid "" "The Embedded Linux* Library (ELL) provides core, low-level\n" "functionality for system daemons. It typically has no dependencies other than\n" @@ -10061,7 +10188,7 @@ msgid "" "platforms, it is not limited to resource-constrained systems." msgstr "" -#: gnu/packages/linux.scm:8386 +#: gnu/packages/linux.scm:8424 msgid "" "This package provides the @code{kexec} program and ancillary\n" "utilities. Using @code{kexec}, it is possible to boot directly into a new\n" @@ -10069,7 +10196,7 @@ msgid "" "system boot process." msgstr "" -#: gnu/packages/linux.scm:8419 +#: gnu/packages/linux.scm:8457 msgid "" "@code{cachefilesd} is a userspace daemon that manages the\n" "cache data store that is used by network file systems such as @code{AFS} and\n" @@ -10077,14 +10204,14 @@ msgid "" "persistent over reboots." msgstr "" -#: gnu/packages/linux.scm:8463 +#: gnu/packages/linux.scm:8501 msgid "" "Libbpf supports building BPF CO-RE-enabled applications, which, in\n" "contrast to BCC, do not require the Clang/LLVM runtime or linux kernel\n" "headers." msgstr "" -#: gnu/packages/linux.scm:8541 +#: gnu/packages/linux.scm:8579 msgid "" "BCC is a toolkit for creating efficient kernel tracing and manipulation\n" "programs, and includes several useful tools and examples. It makes use of\n" @@ -10093,7 +10220,7 @@ msgid "" "and above." msgstr "" -#: gnu/packages/linux.scm:8577 +#: gnu/packages/linux.scm:8615 msgid "" "bpftrace is a high-level tracing language for Linux enhanced Berkeley\n" "Packet Filter (eBPF) available in recent Linux kernels (4.x). bpftrace uses\n" @@ -10105,14 +10232,14 @@ msgid "" "created by Alastair Robertson." msgstr "" -#: gnu/packages/linux.scm:8609 +#: gnu/packages/linux.scm:8647 msgid "" "This package provides a Linux kernel module that will\n" "provide a serial device @code{/dev/ttyebus} with almost no latency upon\n" "receiving. It is dedicated to the PL011 UART of the Raspberry Pi." msgstr "" -#: gnu/packages/linux.scm:8635 +#: gnu/packages/linux.scm:8673 msgid "" "IP sets are a framework inside the Linux 2.4.x and 2.6.x kernel which\n" "can be administered by the ipset utility. Depending on the type,\n" @@ -10133,7 +10260,7 @@ msgid "" "then IP sets may be the proper tool for you." msgstr "" -#: gnu/packages/linux.scm:8682 +#: gnu/packages/linux.scm:8720 msgid "" "This is the io_uring library, liburing. liburing provides\n" "helpers to setup and teardown io_uring instances, and also a simplified\n" @@ -10141,14 +10268,14 @@ msgid "" "kernel side implementation." msgstr "" -#: gnu/packages/linux.scm:8710 +#: gnu/packages/linux.scm:8748 msgid "" "@acronym{EROFS, The Enhanced Read-Only File System} is a compressed,\n" "read-only file system optimized for resource-scarce devices. This package\n" "provides user-space tools for creating EROFS file systems." msgstr "" -#: gnu/packages/linux.scm:8754 +#: gnu/packages/linux.scm:8792 msgid "" "The @code{rasdaemon} daemon monitors platform @acronym{RAS, Reliability\n" "Availability and Serviceability} reports from Linux kernel trace events.\n" @@ -10156,7 +10283,7 @@ msgid "" "through standard log mechanisms like syslog." msgstr "" -#: gnu/packages/linux.scm:8788 +#: gnu/packages/linux.scm:8826 msgid "" "This package provides a C library with C++/Python bindings and\n" "command-line tools for interacting with GPIO devices that avoids the usage of\n" @@ -10182,33 +10309,33 @@ msgid "" "beginning." msgstr "" -#: gnu/packages/messaging.scm:181 +#: gnu/packages/messaging.scm:183 msgid "" "OMEMO-wget is a tool to handle cryptographic URLs, generated\n" "by @acronym{OMEMO, OMEMO Multi-End Message and Object Encryption}, during\n" "XMPP-based sessions." msgstr "" -#: gnu/packages/messaging.scm:237 +#: gnu/packages/messaging.scm:239 msgid "" "Psi is a capable XMPP client aimed at experienced users.\n" "Its design goals are simplicity and stability." msgstr "" -#: gnu/packages/messaging.scm:295 +#: gnu/packages/messaging.scm:297 msgid "" "GNT is an ncurses toolkit for creating text-mode graphical\n" "user interfaces in a fast and easy way. It is based on GLib and ncurses." msgstr "" -#: gnu/packages/messaging.scm:346 +#: gnu/packages/messaging.scm:348 msgid "" "LibGadu is library for handling Gadu-Gadu instant messenger\n" "protocol. The library is written in C and aims to be operating system and\n" "environment independent." msgstr "" -#: gnu/packages/messaging.scm:381 +#: gnu/packages/messaging.scm:383 msgid "" "SILC (Secure Internet Live Conferencing) is a modern and secure\n" "conferencing protocol. It provides all the common conferencing services like\n" @@ -10216,14 +10343,14 @@ msgid "" "conferencing." msgstr "" -#: gnu/packages/messaging.scm:427 +#: gnu/packages/messaging.scm:429 msgid "" "QXmpp is a XMPP client and server library written in C++ and uses the Qt\n" "framework. It builds XMPP clients complying with the XMPP Compliance Suites\n" "2021 for IM and Advanced Mobile." msgstr "" -#: gnu/packages/messaging.scm:454 +#: gnu/packages/messaging.scm:456 msgid "" "Meanwhile is a library for connecting to a LIM (Lotus Instant\n" "Messaging, formerly Lotus Sametime, formerly VPBuddy) community. It uses a\n" @@ -10231,7 +10358,7 @@ msgid "" "TCP sessions from existing clients." msgstr "" -#: gnu/packages/messaging.scm:500 +#: gnu/packages/messaging.scm:502 msgid "" "Poezio is a free console XMPP client (the protocol on which\n" "the Jabber IM network is built).\n" @@ -10244,7 +10371,7 @@ msgid "" "powerful, standard and open protocol." msgstr "" -#: gnu/packages/messaging.scm:533 +#: gnu/packages/messaging.scm:535 msgid "" "OTR allows you to have private conversations over instant\n" "messaging by providing: (1) Encryption: No one else can read your instant\n" @@ -10257,7 +10384,7 @@ msgid "" "your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:572 +#: gnu/packages/messaging.scm:574 msgid "" "libsignal-protocol-c is an implementation of a ratcheting\n" "forward secrecy protocol that works in synchronous and asynchronous\n" @@ -10265,20 +10392,20 @@ msgid "" "end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:609 +#: gnu/packages/messaging.scm:611 msgid "" "This is a client library for @code{libsignal-protocol-c}.\n" "It implements the necessary interfaces using @code{libgcrypt} and\n" "@code{sqlite}." msgstr "" -#: gnu/packages/messaging.scm:641 +#: gnu/packages/messaging.scm:643 msgid "" "This library implements @acronym{OMEMO, OMEMO Multi-End\n" "Message and Object Encryption} of XMPP (XEP-0384) in C." msgstr "" -#: gnu/packages/messaging.scm:681 +#: gnu/packages/messaging.scm:683 msgid "" "BitlBee brings IM (instant messaging) to IRC clients, for\n" "people who have an IRC client running all the time and don't want to run an\n" @@ -10288,20 +10415,20 @@ msgid "" "identi.ca and status.net)." msgstr "" -#: gnu/packages/messaging.scm:748 +#: gnu/packages/messaging.scm:750 msgid "" "Bitlbee-discord is a plugin for Bitlbee which provides\n" "access to servers running the Discord protocol." msgstr "" -#: gnu/packages/messaging.scm:794 +#: gnu/packages/messaging.scm:796 msgid "" "Purple-Mattermost is a plug-in for Purple, the instant messaging library\n" "used by Pidgin and Bitlbee, among others, to access\n" "@uref{https://mattermost.com/, Mattermost} servers." msgstr "" -#: gnu/packages/messaging.scm:852 +#: gnu/packages/messaging.scm:854 msgid "" "HexChat lets you connect to multiple IRC networks at once. The main\n" "window shows the list of currently connected networks and their channels, the\n" @@ -10310,7 +10437,7 @@ msgid "" "dictionaries. HexChat can be extended with multiple addons." msgstr "" -#: gnu/packages/messaging.scm:917 +#: gnu/packages/messaging.scm:919 msgid "" "ngIRCd is a lightweight @dfn{Internet Relay Chat} (IRC) server for small\n" "or private networks. It is easy to configure, can cope with dynamic IP\n" @@ -10318,13 +10445,13 @@ msgid "" "authentication." msgstr "" -#: gnu/packages/messaging.scm:1024 +#: gnu/packages/messaging.scm:1026 msgid "" "Pidgin is a modular instant messaging client that supports\n" "many popular chat protocols." msgstr "" -#: gnu/packages/messaging.scm:1064 +#: gnu/packages/messaging.scm:1066 msgid "" "Pidgin-OTR is a plugin that adds support for OTR to the Pidgin\n" "instant messaging client. OTR (Off-the-Record) Messaging allows you to have\n" @@ -10338,7 +10465,7 @@ msgid "" "control of your private keys, no previous conversation is compromised." msgstr "" -#: gnu/packages/messaging.scm:1118 +#: gnu/packages/messaging.scm:1120 msgid "" "ZNC is an @dfn{IRC network bouncer} or @dfn{BNC}. It can\n" "detach the client from the actual IRC server, and also from selected channels.\n" @@ -10346,41 +10473,41 @@ msgid "" "simultaneously and therefore appear under the same nickname on IRC." msgstr "" -#: gnu/packages/messaging.scm:1147 +#: gnu/packages/messaging.scm:1149 msgid "" "Python-nbxmpp is a Python library that provides a way for\n" "Python applications to use the XMPP network. This library was initially a fork\n" "of xmpppy." msgstr "" -#: gnu/packages/messaging.scm:1274 +#: gnu/packages/messaging.scm:1276 msgid "" "Gajim aims to be an easy to use and fully-featured XMPP chat\n" "client. It is extensible via plugins, supports end-to-end encryption (OMEMO\n" "and OpenPGP) and available in 29 languages." msgstr "" -#: gnu/packages/messaging.scm:1309 +#: gnu/packages/messaging.scm:1311 msgid "" "Gajim-OMEMO is a plugin that adds support for the OMEMO\n" "Encryption to Gajim. OMEMO is an XMPP Extension Protocol (XEP) for secure\n" "multi-client end-to-end encryption." msgstr "" -#: gnu/packages/messaging.scm:1344 +#: gnu/packages/messaging.scm:1346 msgid "" "Gajim-OpenPGP is a plugin that adds support for the OpenPGP\n" "Encryption to Gajim." msgstr "" -#: gnu/packages/messaging.scm:1418 +#: gnu/packages/messaging.scm:1420 msgid "" "Dino is a chat client for the desktop. It focuses on providing\n" "a minimal yet reliable Jabber/XMPP experience and having encryption enabled by\n" "default." msgstr "" -#: gnu/packages/messaging.scm:1505 +#: gnu/packages/messaging.scm:1507 msgid "" "Prosody is a modern XMPP communication server. It aims to\n" "be easy to set up and configure, and efficient with system resources.\n" @@ -10389,43 +10516,43 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/messaging.scm:1540 +#: gnu/packages/messaging.scm:1542 msgid "" "This module implements XEP-0363: it allows clients to\n" "upload files over HTTP." msgstr "" -#: gnu/packages/messaging.scm:1572 +#: gnu/packages/messaging.scm:1574 msgid "" "This module implements XEP-0198: when supported by both\n" "the client and server, it can allow clients to resume a disconnected session,\n" "and prevent message loss." msgstr "" -#: gnu/packages/messaging.scm:1601 +#: gnu/packages/messaging.scm:1603 msgid "C library implementation of the Tox encrypted messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1633 +#: gnu/packages/messaging.scm:1635 msgid "" "Official fork of the C library implementation of the Tox encrypted\n" "messenger protocol." msgstr "" -#: gnu/packages/messaging.scm:1687 +#: gnu/packages/messaging.scm:1689 msgid "" "uTox is a lightweight Tox client. Tox is a distributed and secure\n" "instant messenger with audio and video chat capabilities." msgstr "" -#: gnu/packages/messaging.scm:1750 +#: gnu/packages/messaging.scm:1752 msgid "" "qTox is a Tox client that follows the Tox design\n" "guidelines. It provides an easy to use application that allows you to\n" "connect with friends and family without anyone else listening in." msgstr "" -#: gnu/packages/messaging.scm:1772 +#: gnu/packages/messaging.scm:1774 msgid "" "Ytalk is a replacement for the BSD talk program. Its main\n" "advantage is the ability to communicate with any arbitrary number of users at\n" @@ -10433,7 +10560,7 @@ msgid "" "with several different talk daemons at the same time." msgstr "" -#: gnu/packages/messaging.scm:1796 +#: gnu/packages/messaging.scm:1798 msgid "" "gloox is a full-featured Jabber/XMPP client library,\n" "written in ANSI C++. It makes writing spec-compliant clients easy\n" @@ -10441,7 +10568,7 @@ msgid "" "into existing applications." msgstr "" -#: gnu/packages/messaging.scm:1866 +#: gnu/packages/messaging.scm:1868 msgid "" "@code{Net::PSYC} with support for TCP, UDP, Event.pm, @code{IO::Select} and\n" "Gtk2 event loops. This package includes 12 applications and additional scripts:\n" @@ -10449,14 +10576,14 @@ msgid "" "for @uref{https://torproject.org,tor} router) and many more." msgstr "" -#: gnu/packages/messaging.scm:1907 +#: gnu/packages/messaging.scm:1909 msgid "" "@code{libpsyc} is a PSYC library in C which implements\n" "core aspects of PSYC, useful for all kinds of clients and servers\n" "including psyced." msgstr "" -#: gnu/packages/messaging.scm:1949 +#: gnu/packages/messaging.scm:1951 msgid "" "Loudmouth is a lightweight and easy-to-use C library for programming\n" "with the XMPP (formerly known as Jabber) protocol. It is designed to be\n" @@ -10464,7 +10591,7 @@ msgid "" "protocol allows." msgstr "" -#: gnu/packages/messaging.scm:1991 +#: gnu/packages/messaging.scm:1993 msgid "" "Mcabber is a small XMPP (Jabber) console client, which includes features\n" "such as SASL and TLS support, @dfn{Multi-User Chat} (MUC) support, logging,\n" @@ -10472,7 +10599,7 @@ msgid "" "support, and more." msgstr "" -#: gnu/packages/messaging.scm:2039 +#: gnu/packages/messaging.scm:2041 msgid "" "GNU Freetalk is a command-line Jabber/XMPP chat client. It notably uses\n" "the Readline library to handle input, so it features convenient navigation of\n" @@ -10480,27 +10607,27 @@ msgid "" "is also scriptable and extensible via Guile." msgstr "" -#: gnu/packages/messaging.scm:2074 +#: gnu/packages/messaging.scm:2076 msgid "" "Libmesode is a fork of libstrophe for use with Profanity\n" "XMPP Client. In particular, libmesode provides extra TLS functionality such as\n" "manual SSL certificate verification." msgstr "" -#: gnu/packages/messaging.scm:2109 +#: gnu/packages/messaging.scm:2111 msgid "" "Libstrophe is a minimal XMPP library written in C. It has\n" "almost no external dependencies, only an XML parsing library (expat or libxml\n" "are both supported)." msgstr "" -#: gnu/packages/messaging.scm:2167 +#: gnu/packages/messaging.scm:2169 msgid "" "Profanity is a console based XMPP client written in C\n" "using ncurses and libmesode, inspired by Irssi." msgstr "" -#: gnu/packages/messaging.scm:2197 +#: gnu/packages/messaging.scm:2199 msgid "" "Libircclient is a library which implements the client IRC\n" "protocol. It is designed to be small, fast, portable and compatible with the\n" @@ -10508,14 +10635,14 @@ msgid "" "building the IRC clients and bots." msgstr "" -#: gnu/packages/messaging.scm:2255 +#: gnu/packages/messaging.scm:2257 msgid "" "Toxic is a console-based instant messaging client, using\n" "c-toxcore and ncurses. It provides audio calls, sound and desktop\n" "notifications, and Python scripting support." msgstr "" -#: gnu/packages/messaging.scm:2281 +#: gnu/packages/messaging.scm:2283 msgid "" "libqmatrixclient is a Qt5 library to write clients for the\n" "Matrix instant messaging protocol. Quaternion is the reference client\n" @@ -10523,13 +10650,13 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2326 +#: gnu/packages/messaging.scm:2330 msgid "" "@code{mtxclient} is a C++ library that implements client API\n" "for the Matrix protocol. It is built on to of @code{Boost.Asio}." msgstr "" -#: gnu/packages/messaging.scm:2418 +#: gnu/packages/messaging.scm:2423 msgid "" "@code{Nheko} want to provide a native desktop app for the\n" "Matrix protocol that feels more like a mainstream chat app and less like an IRC\n" @@ -10539,7 +10666,7 @@ msgid "" "notification, emojis, E2E encryption, and voip calls." msgstr "" -#: gnu/packages/messaging.scm:2455 +#: gnu/packages/messaging.scm:2460 msgid "" "Quaternion is a Qt5 desktop client for the Matrix instant\n" "messaging protocol. It uses libqmatrixclient and is its reference client\n" @@ -10547,7 +10674,7 @@ msgid "" "QMatrixClient project." msgstr "" -#: gnu/packages/messaging.scm:2502 +#: gnu/packages/messaging.scm:2507 msgid "" "Hangups is an instant messaging client for Google Hangouts. It includes\n" "both a Python library and a reference client with a text-based user interface.\n" @@ -10557,7 +10684,7 @@ msgid "" "messaging that aren’t available to clients that connect over XMPP." msgstr "" -#: gnu/packages/messaging.scm:2584 +#: gnu/packages/messaging.scm:2589 msgid "" "Telegram-purple is a plugin for Libpurple, the communication library\n" "used by the Pidgin instant messaging client, that adds support for the\n" @@ -10567,7 +10694,7 @@ msgid "" "replacement." msgstr "" -#: gnu/packages/messaging.scm:2629 +#: gnu/packages/messaging.scm:2632 msgid "" "Tdlib is a cross-platform library for creating custom\n" "Telegram clients following the official Telegram API. It can be easily used\n" @@ -10575,11 +10702,11 @@ msgid "" "support for high performance Telegram Bot creation." msgstr "" -#: gnu/packages/messaging.scm:2667 +#: gnu/packages/messaging.scm:2670 msgid "Plugin for libpurple to allow sending SMS using ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2712 +#: gnu/packages/messaging.scm:2715 msgid "" "Purple-lurch plugin adds end-to-end encryption support\n" "through the Double Ratchet (Axolotl) algorithm, to @code{libpurple}\n" @@ -10590,19 +10717,19 @@ msgid "" "asynchronicity." msgstr "" -#: gnu/packages/messaging.scm:2748 +#: gnu/packages/messaging.scm:2751 msgid "" "This package provides a C++ library for parsing, formatting, and\n" "validating international phone numbers." msgstr "" -#: gnu/packages/messaging.scm:2793 +#: gnu/packages/messaging.scm:2796 msgid "" "Chatty is a chat program for XMPP and SMS. It works on mobile\n" "as well as on desktop platforms. It's based on libpurple and ModemManager." msgstr "" -#: gnu/packages/messaging.scm:2814 +#: gnu/packages/messaging.scm:2817 msgid "" "This package provides Eclipse Mosquitto, a message broker\n" "that implements the MQTT protocol versions 5.0, 3.1.1 and 3.1. Mosquitto\n" @@ -10615,27 +10742,27 @@ msgid "" "as phones, embedded computers or microcontrollers." msgstr "" -#: gnu/packages/messaging.scm:2864 +#: gnu/packages/messaging.scm:2867 msgid "" "Movim-Desktop is a desktop application, relying on Qt, for the Movim\n" "social and chat platform." msgstr "" -#: gnu/packages/messaging.scm:2999 +#: gnu/packages/messaging.scm:3002 msgid "" "Psi+ is a spin-off of Psi XMPP client. It is a powerful XMPP client\n" "designed for experienced users." msgstr "" -#: gnu/packages/messaging.scm:3039 +#: gnu/packages/messaging.scm:3042 msgid "This package provides Python bindings to Zulip's API." msgstr "" -#: gnu/packages/messaging.scm:3088 +#: gnu/packages/messaging.scm:3091 msgid "This package contains Zulip's official terminal client." msgstr "" -#: gnu/packages/messaging.scm:3110 +#: gnu/packages/messaging.scm:3113 msgid "" "Relays messages between different channels from various\n" "messaging networks and protocols. So far it supports mattermost, IRC, gitter,\n" @@ -10644,20 +10771,20 @@ msgid "" "API. Mattermost is not required." msgstr "" -#: gnu/packages/messaging.scm:3143 +#: gnu/packages/messaging.scm:3146 msgid "" "@command{pounce} is a multi-client, TLS-only IRC bouncer. It maintains\n" "a persistent connection to an IRC server, acting as a proxy and buffer for\n" "a number of clients." msgstr "" -#: gnu/packages/messaging.scm:3209 +#: gnu/packages/messaging.scm:3212 msgid "" "@code{weechat-matrix} is a Python plugin for Weechat that lets\n" "Weechat communicate over the Matrix protocol." msgstr "" -#: gnu/packages/messaging.scm:3256 +#: gnu/packages/messaging.scm:3259 msgid "" "@code{weechat-wee-slack} is a WeeChat native client for\n" "Slack. It provides supplemental features only available in the web/mobile\n" @@ -10766,14 +10893,14 @@ msgid "" "themselves." msgstr "" -#: gnu/packages/networking.scm:174 +#: gnu/packages/networking.scm:176 msgid "" "UsrSCTP is a portable SCTP userland stack. SCTP is a message\n" "oriented, reliable transport protocol with direct support for multihoming that\n" "runs on top of IP or UDP, and supports both v4 and v6 versions." msgstr "" -#: gnu/packages/networking.scm:199 +#: gnu/packages/networking.scm:201 msgid "" "Axel tries to accelerate the download process by using multiple\n" "connections per file, and can also balance the load between different\n" @@ -10782,38 +10909,38 @@ msgid "" "protocols." msgstr "" -#: gnu/packages/networking.scm:264 +#: gnu/packages/networking.scm:266 msgid "" "LibCamera is a complex camera support library for GNU+Linux,\n" "Android, and ChromeOS." msgstr "" -#: gnu/packages/networking.scm:334 +#: gnu/packages/networking.scm:336 msgid "" "LibNice is a library that implements the Interactive\n" "Connectivity Establishment (ICE) standard (RFC 5245 & RFC 8445). It provides a\n" "GLib-based library, libnice, as well as GStreamer elements to use it." msgstr "" -#: gnu/packages/networking.scm:393 +#: gnu/packages/networking.scm:395 msgid "" "RTMPdump is a toolkit for RTMP streams. All forms of RTMP are\n" "supported, including rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps://." msgstr "" -#: gnu/packages/networking.scm:422 +#: gnu/packages/networking.scm:424 msgid "" "Slurm is a network load monitor. It shows real-time traffic statistics\n" "from any network device in any of three ASCII graph formats." msgstr "" -#: gnu/packages/networking.scm:457 +#: gnu/packages/networking.scm:459 msgid "" "SRT is a transport technology that optimizes streaming\n" "performance across unpredictable networks, such as the Internet." msgstr "" -#: gnu/packages/networking.scm:500 +#: gnu/packages/networking.scm:502 msgid "" "The lksctp-tools project provides a user-space library for @acronym{SCTP,\n" "the Stream Control Transmission Protocol} (@file{libsctp}) and C language header\n" @@ -10822,13 +10949,13 @@ msgid "" "It also includes some SCTP-related helper utilities." msgstr "" -#: gnu/packages/networking.scm:541 +#: gnu/packages/networking.scm:543 msgid "" "@code{pysctp} implements the SCTP socket API. You need a\n" "SCTP-aware kernel (most are)." msgstr "" -#: gnu/packages/networking.scm:565 +#: gnu/packages/networking.scm:567 msgid "" "@command{knockd} is a port-knock daemon. It listens to all traffic on\n" "an ethernet or PPP interface, looking for special \"knock\" sequences of @dfn{port-hits}\n" @@ -10836,7 +10963,7 @@ msgid "" "at the link-layer level." msgstr "" -#: gnu/packages/networking.scm:605 +#: gnu/packages/networking.scm:607 msgid "" "NNG project is a rewrite of the scalability protocols library\n" "known as libnanomsg, and adds significant new capabilities, while retaining\n" @@ -10845,7 +10972,7 @@ msgid "" "publish/subscribe, RPC-style request/reply, or service discovery." msgstr "" -#: gnu/packages/networking.scm:648 +#: gnu/packages/networking.scm:650 msgid "" "Nanomsg is a socket library that provides several common\n" "communication patterns. It aims to make the networking layer fast, scalable,\n" @@ -10853,14 +10980,14 @@ msgid "" "systems with no further dependencies." msgstr "" -#: gnu/packages/networking.scm:758 +#: gnu/packages/networking.scm:760 msgid "" "Blueman is a Bluetooth management utility using the Bluez\n" "D-Bus backend. It is designed to be easy to use for most common Bluetooth\n" "tasks." msgstr "" -#: gnu/packages/networking.scm:783 +#: gnu/packages/networking.scm:785 msgid "" "GNU MAC Changer is a utility for viewing and changing MAC\n" "addresses of networking devices. New addresses may be set explicitly or\n" @@ -10868,14 +10995,14 @@ msgid "" "or, more generally, MAC addresses of the same category of hardware." msgstr "" -#: gnu/packages/networking.scm:831 +#: gnu/packages/networking.scm:833 msgid "" "Miredo is an implementation (client, relay, server) of the Teredo\n" "specification, which provides IPv6 Internet connectivity to IPv6 enabled hosts\n" "residing in IPv4-only networks, even when they are behind a NAT device." msgstr "" -#: gnu/packages/networking.scm:851 +#: gnu/packages/networking.scm:853 msgid "" "NDisc6 is a collection of tools for IPv6 networking diagnostics.\n" "It includes the following programs:\n" @@ -10889,7 +11016,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:904 +#: gnu/packages/networking.scm:906 msgid "" "@command{parprouted} is a daemon for transparent IP (Layer@tie{}3)\n" "proxy ARP bridging. Unlike standard bridging, proxy ARP bridging can bridge\n" @@ -10899,7 +11026,14 @@ msgid "" "useful for making transparent firewalls." msgstr "" -#: gnu/packages/networking.scm:931 +#: gnu/packages/networking.scm:945 +msgid "" +"@command{pproxy} is an asynchronuous proxy server implemented with\n" +"Python 3 @code{asyncio}. Among the supported protocols are HTTP, SOCKS\n" +"and SSH, and it can use both TCP and UDP as transport mechanisms." +msgstr "" + +#: gnu/packages/networking.scm:969 msgid "" "socat is a relay for bidirectional data transfer between two independent\n" "data channels---files, pipes, devices, sockets, etc. It can create\n" @@ -10912,7 +11046,7 @@ msgid "" "or server shell scripts with network connections." msgstr "" -#: gnu/packages/networking.scm:962 +#: gnu/packages/networking.scm:1000 msgid "" "mbuffer is a tool for buffering data streams with a large set of features:\n" "\n" @@ -10928,14 +11062,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1058 +#: gnu/packages/networking.scm:1096 msgid "" "With this package you can monitor and filter incoming requests for\n" "network services. It includes a library which may be used by daemons to\n" "transparently check connection attempts against an access control list." msgstr "" -#: gnu/packages/networking.scm:1081 +#: gnu/packages/networking.scm:1119 msgid "" "The 0MQ lightweight messaging kernel is a library which extends the\n" "standard socket interfaces with features traditionally provided by specialized\n" @@ -10945,46 +11079,46 @@ msgid "" "more." msgstr "" -#: gnu/packages/networking.scm:1110 +#: gnu/packages/networking.scm:1148 msgid "" "czmq provides bindings for the ØMQ core API that hides the differences\n" "between different versions of ØMQ." msgstr "" -#: gnu/packages/networking.scm:1141 +#: gnu/packages/networking.scm:1179 msgid "" "This package provides header-only C++ bindings for ØMQ. The header\n" "files contain direct mappings of the abstractions provided by the ØMQ C API." msgstr "" -#: gnu/packages/networking.scm:1175 +#: gnu/packages/networking.scm:1213 msgid "" "@code{libnatpmp} is a portable and asynchronous implementation of\n" "the Network Address Translation - Port Mapping Protocol (NAT-PMP)\n" "written in the C programming language." msgstr "" -#: gnu/packages/networking.scm:1213 +#: gnu/packages/networking.scm:1251 msgid "" "librdkafka is a C library implementation of the Apache Kafka protocol,\n" "containing both Producer and Consumer support." msgstr "" -#: gnu/packages/networking.scm:1232 +#: gnu/packages/networking.scm:1270 msgid "" "libndp contains a library which provides a wrapper for IPv6 Neighbor\n" "Discovery Protocol. It also provides a tool named ndptool for sending and\n" "receiving NDP messages." msgstr "" -#: gnu/packages/networking.scm:1256 +#: gnu/packages/networking.scm:1294 msgid "" "ethtool can be used to query and change settings such as speed,\n" "auto-negotiation and checksum offload on many network devices, especially\n" "Ethernet devices." msgstr "" -#: gnu/packages/networking.scm:1298 +#: gnu/packages/networking.scm:1336 msgid "" "IFStatus is a simple, easy-to-use program for displaying commonly\n" "needed/wanted real-time traffic statistics of multiple network\n" @@ -10992,7 +11126,7 @@ msgid "" "intended as a substitute for the PPPStatus and EthStatus projects." msgstr "" -#: gnu/packages/networking.scm:1347 +#: gnu/packages/networking.scm:1385 msgid "" "This package contains a variety of tools for dealing with network\n" "configuration, troubleshooting, or servers. Utilities included are:\n" @@ -11013,7 +11147,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:1388 +#: gnu/packages/networking.scm:1426 msgid "" "Nload is a console application which monitors network traffic and\n" "bandwidth usage in real time. It visualizes the in- and outgoing traffic using\n" @@ -11021,7 +11155,7 @@ msgid "" "and min/max network usage." msgstr "" -#: gnu/packages/networking.scm:1432 +#: gnu/packages/networking.scm:1470 msgid "" "Iodine tunnels IPv4 data through a DNS server. This\n" "can be useful in different situations where internet access is firewalled, but\n" @@ -11029,7 +11163,7 @@ msgid "" "and up to 1 Mbit/s downstream." msgstr "" -#: gnu/packages/networking.scm:1473 +#: gnu/packages/networking.scm:1511 msgid "" "whois searches for an object in a @dfn{WHOIS} (RFC 3912) database.\n" "It is commonly used to look up the registered users or assignees of an Internet\n" @@ -11041,14 +11175,14 @@ msgid "" "of the same name." msgstr "" -#: gnu/packages/networking.scm:1553 +#: gnu/packages/networking.scm:1591 msgid "" "Wireshark is a network protocol analyzer, or @dfn{packet\n" "sniffer}, that lets you capture and interactively browse the contents of\n" "network frames." msgstr "" -#: gnu/packages/networking.scm:1574 +#: gnu/packages/networking.scm:1613 msgid "" "fping is a ping-like program which uses @acronym{ICMP, Internet Control\n" "Message Protocol} echo requests to determine if a target host is responding.\n" @@ -11060,26 +11194,26 @@ msgid "" "round-robin fashion." msgstr "" -#: gnu/packages/networking.scm:1625 +#: gnu/packages/networking.scm:1664 msgid "" "This package provides a command-line client (@command{gandi}) to buy,\n" "manage, and delete Internet resources from Gandi.net such as domain names,\n" "virtual machines, and certificates." msgstr "" -#: gnu/packages/networking.scm:1651 +#: gnu/packages/networking.scm:1690 msgid "" "The netns package provides a simple interface for\n" "handling network namespaces in Go." msgstr "" -#: gnu/packages/networking.scm:1678 +#: gnu/packages/networking.scm:1717 msgid "" "This library provides methods for using the stream control\n" "transmission protocol (SCTP) in a Go application." msgstr "" -#: gnu/packages/networking.scm:1707 +#: gnu/packages/networking.scm:1746 msgid "" "httping measures how long it takes to connect to a web server, send an\n" "HTTP(S) request, and receive the reply headers. It is somewhat similar to\n" @@ -11088,7 +11222,7 @@ msgid "" "application stack itself." msgstr "" -#: gnu/packages/networking.scm:1746 +#: gnu/packages/networking.scm:1785 msgid "" "@command{httpstat} is a tool to visualize statistics from the\n" "@command{curl} HTTP client. It acts as a wrapper for @command{curl} and\n" @@ -11096,20 +11230,20 @@ msgid "" "TCP connection, TLS handshake and so on) in the terminal." msgstr "" -#: gnu/packages/networking.scm:1788 +#: gnu/packages/networking.scm:1827 msgid "" "Squid is a caching proxy for the Web supporting HTTP, HTTPS,\n" "FTP, and more. It reduces bandwidth and improves response times by caching and\n" "reusing frequently-requested web pages." msgstr "" -#: gnu/packages/networking.scm:1822 +#: gnu/packages/networking.scm:1861 msgid "" "Bandwidth Monitor NG is a small and simple console based\n" "live network and disk I/O bandwidth monitor." msgstr "" -#: gnu/packages/networking.scm:1874 +#: gnu/packages/networking.scm:1913 msgid "" "Aircrack-ng is a complete suite of tools to assess WiFi network\n" "security. It focuses on different areas of WiFi security: monitoring,\n" @@ -11117,14 +11251,14 @@ msgid "" "allows for heavy scripting." msgstr "" -#: gnu/packages/networking.scm:1903 +#: gnu/packages/networking.scm:1942 msgid "" "Pixiewps implements the pixie-dust attack to brute\n" "force the Wi-Fi Protected Setup (WPS) PIN by exploiting the low or\n" "non-existing entropy of some access points." msgstr "" -#: gnu/packages/networking.scm:1949 +#: gnu/packages/networking.scm:1988 msgid "" "Reaver performs a brute force attack against an access\n" "point's Wi-Fi Protected Setup (WPS) PIN. Once the PIN is found, the WPA\n" @@ -11132,7 +11266,7 @@ msgid "" "reconfigured." msgstr "" -#: gnu/packages/networking.scm:1974 +#: gnu/packages/networking.scm:2013 msgid "" "Danga::Socket is an abstract base class for objects backed by a socket\n" "which provides the basic framework for event-driven asynchronous IO, designed\n" @@ -11140,7 +11274,7 @@ msgid "" "loop." msgstr "" -#: gnu/packages/networking.scm:2000 +#: gnu/packages/networking.scm:2039 msgid "" "This module provides several IP address validation subroutines that both\n" "validate and untaint their input. This includes both basic validation\n" @@ -11149,62 +11283,62 @@ msgid "" "private (reserved)." msgstr "" -#: gnu/packages/networking.scm:2028 +#: gnu/packages/networking.scm:2067 msgid "Net::DNS is the Perl Interface to the Domain Name System." msgstr "" -#: gnu/packages/networking.scm:2060 +#: gnu/packages/networking.scm:2099 msgid "" "Socket6 binds the IPv6 related part of the C socket header\n" "definitions and structure manipulators for Perl." msgstr "" -#: gnu/packages/networking.scm:2087 +#: gnu/packages/networking.scm:2126 msgid "" "Net::DNS::Resolver::Programmable is a programmable DNS resolver for\n" "offline emulation of DNS." msgstr "" -#: gnu/packages/networking.scm:2109 +#: gnu/packages/networking.scm:2148 msgid "" "Net::DNS::Resolver::Mock is a subclass of Net::DNS::Resolver, but returns\n" "static data from any provided DNS zone file instead of querying the network.\n" "It is intended primarily for use in testing." msgstr "" -#: gnu/packages/networking.scm:2144 +#: gnu/packages/networking.scm:2183 msgid "NetAddr::IP manages IPv4 and IPv6 addresses and subsets." msgstr "" -#: gnu/packages/networking.scm:2177 +#: gnu/packages/networking.scm:2216 msgid "Net::Patricia does IP address lookups quickly in Perl." msgstr "" -#: gnu/packages/networking.scm:2198 +#: gnu/packages/networking.scm:2237 msgid "Net::CIDR::Lite merges IPv4 or IPv6 CIDR addresses." msgstr "" -#: gnu/packages/networking.scm:2225 +#: gnu/packages/networking.scm:2264 msgid "" "IO::Socket::INET6 is an interface for AF_INET/AF_INET6 domain\n" "sockets in Perl." msgstr "" -#: gnu/packages/networking.scm:2258 +#: gnu/packages/networking.scm:2293 msgid "" "Libproxy handles the details of HTTP/HTTPS proxy\n" "configuration for applications across all scenarios. Applications using\n" "libproxy only have to specify which proxy to use." msgstr "" -#: gnu/packages/networking.scm:2292 +#: gnu/packages/networking.scm:2327 msgid "" "Proxychains-ng is a preloader which hooks calls to sockets\n" "in dynamically linked programs and redirects them through one or more SOCKS or\n" "HTTP proxies." msgstr "" -#: gnu/packages/networking.scm:2314 +#: gnu/packages/networking.scm:2349 msgid "" "ENet's purpose is to provide a relatively thin, simple and robust network\n" "communication layer on top of UDP. The primary feature it provides is optional\n" @@ -11214,7 +11348,7 @@ msgid "" "library remains flexible, portable, and easily embeddable." msgstr "" -#: gnu/packages/networking.scm:2378 +#: gnu/packages/networking.scm:2413 msgid "" "sslh is a network protocol demultiplexer. It acts like a switchboard,\n" "accepting connections from clients on one port and forwarding them to different\n" @@ -11226,7 +11360,7 @@ msgid "" "that block port 22." msgstr "" -#: gnu/packages/networking.scm:2408 +#: gnu/packages/networking.scm:2443 msgid "" "iPerf is a tool to measure achievable bandwidth on IP networks. It\n" "supports tuning of various parameters related to timing, buffers and\n" @@ -11234,7 +11368,7 @@ msgid "" "the bandwidth, loss, and other parameters." msgstr "" -#: gnu/packages/networking.scm:2445 +#: gnu/packages/networking.scm:2480 msgid "" "NetHogs is a small 'net top' tool for Linux. Instead of\n" "breaking the traffic down per protocol or per subnet, like most tools do, it\n" @@ -11246,7 +11380,7 @@ msgid "" "gone wild and are suddenly taking up your bandwidth." msgstr "" -#: gnu/packages/networking.scm:2481 +#: gnu/packages/networking.scm:2516 msgid "" "NZBGet is a binary newsgrabber, which downloads files from Usenet based\n" "on information given in @code{nzb} files. NZBGet can be used in standalone\n" @@ -11256,7 +11390,7 @@ msgid "" "procedure calls (RPCs)." msgstr "" -#: gnu/packages/networking.scm:2562 +#: gnu/packages/networking.scm:2597 msgid "" "Open vSwitch is a multilayer virtual switch. It is designed to enable\n" "massive network automation through programmatic extension, while still\n" @@ -11264,27 +11398,27 @@ msgid "" "IPFIX, RSPAN, CLI, LACP, 802.1ag)." msgstr "" -#: gnu/packages/networking.scm:2585 +#: gnu/packages/networking.scm:2620 msgid "" "The @code{IP} class allows a comfortable parsing and\n" "handling for most notations in use for IPv4 and IPv6 addresses and\n" "networks." msgstr "" -#: gnu/packages/networking.scm:2610 +#: gnu/packages/networking.scm:2645 msgid "" "Command line interface for testing internet bandwidth using\n" "speedtest.net." msgstr "" -#: gnu/packages/networking.scm:2630 +#: gnu/packages/networking.scm:2668 msgid "" "This is a tftp client derived from OpenBSD tftp with some extra options\n" "added and bugs fixed. The source includes readline support but it is not\n" "enabled due to license conflicts between the BSD advertising clause and the GPL." msgstr "" -#: gnu/packages/networking.scm:2682 +#: gnu/packages/networking.scm:2720 msgid "" "Spiped (pronounced \"ess-pipe-dee\") is a utility for creating\n" "symmetrically encrypted and authenticated pipes between socket addresses, so\n" @@ -11294,7 +11428,7 @@ msgid "" "does not use SSH and requires a pre-shared symmetric key." msgstr "" -#: gnu/packages/networking.scm:2708 +#: gnu/packages/networking.scm:2746 msgid "" "Quagga is a routing software suite, providing implementations\n" "of OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4 for Unix platforms.\n" @@ -11306,14 +11440,14 @@ msgid "" "updates to the zebra daemon." msgstr "" -#: gnu/packages/networking.scm:2758 +#: gnu/packages/networking.scm:2796 msgid "" "The THC IPv6 Toolkit provides command-line tools and a library\n" "for researching IPv6 implementations and deployments. It requires Linux 2.6 or\n" "newer and only works on Ethernet network interfaces." msgstr "" -#: gnu/packages/networking.scm:2783 +#: gnu/packages/networking.scm:2821 msgid "" "bmon is a monitoring and debugging tool to capture\n" "networking-related statistics and prepare them visually in a human-friendly\n" @@ -11321,7 +11455,7 @@ msgid "" "interface and a programmable text output for scripting." msgstr "" -#: gnu/packages/networking.scm:2821 +#: gnu/packages/networking.scm:2859 msgid "" "Libnet provides a fairly portable framework for network packet\n" "construction and injection. It features portable packet creation interfaces\n" @@ -11330,7 +11464,7 @@ msgid "" "can be whipped up with little effort." msgstr "" -#: gnu/packages/networking.scm:2847 +#: gnu/packages/networking.scm:2885 msgid "" "@acronym{mtr, My TraceRoute} combines the functionality of the\n" "@command{traceroute} and @command{ping} programs in a single network diagnostic\n" @@ -11340,7 +11474,7 @@ msgid "" "displays the results in real time." msgstr "" -#: gnu/packages/networking.scm:2900 +#: gnu/packages/networking.scm:2938 msgid "" "aMule is an eMule-like client for the eD2k and Kademlia peer-to-peer\n" "file sharing networks. It includes a graphical user interface (GUI), a daemon\n" @@ -11349,7 +11483,7 @@ msgid "" "remotely." msgstr "" -#: gnu/packages/networking.scm:2922 +#: gnu/packages/networking.scm:2960 msgid "" "Zyre provides reliable group messaging over local area\n" "networks using zeromq. It has these key characteristics:\n" @@ -11366,13 +11500,13 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:2956 +#: gnu/packages/networking.scm:2994 msgid "" "This library allows controlling basic functions in SocketCAN\n" "from user-space. It requires a kernel built with SocketCAN support." msgstr "" -#: gnu/packages/networking.scm:2985 +#: gnu/packages/networking.scm:3023 msgid "" "This package provides CAN utilities in the following areas:\n" "\n" @@ -11388,14 +11522,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3021 +#: gnu/packages/networking.scm:3059 msgid "" "Asio is a cross-platform C++ library for network and\n" "low-level I/O programming that provides developers with a consistent\n" "asynchronous model using a modern C++ approach." msgstr "" -#: gnu/packages/networking.scm:3056 +#: gnu/packages/networking.scm:3094 msgid "" "This package is a fast tunnel proxy that helps you bypass firewalls.\n" "\n" @@ -11409,7 +11543,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/networking.scm:3134 +#: gnu/packages/networking.scm:3172 msgid "" "The @dfn{Simple Network Management Protocol} (SNMP) is a\n" "widely used protocol for monitoring the health and welfare of network\n" @@ -11418,20 +11552,20 @@ msgid "" "SNMP v3 using both IPv4 and IPv6." msgstr "" -#: gnu/packages/networking.scm:3181 +#: gnu/packages/networking.scm:3219 msgid "" "uBridge is a simple program to create user-land bridges\n" "between various technologies. Currently, bridging between UDP tunnels,\n" "Ethernet and TAP interfaces is supported. Packet capture is also supported." msgstr "" -#: gnu/packages/networking.scm:3213 +#: gnu/packages/networking.scm:3251 msgid "" "This package contains a small set of tools to capture and convert\n" "packets from wireless devices for use with hashcat or John the Ripper." msgstr "" -#: gnu/packages/networking.scm:3244 +#: gnu/packages/networking.scm:3282 msgid "" "Small tool to capture packets from WLAN devices. After capturing,\n" "upload the \"uncleaned\" cap to @url{https://wpa-sec.stanev.org/?submit} to\n" @@ -11441,7 +11575,7 @@ msgid "" "and check if the WLAN key or the master key was transmitted unencrypted." msgstr "" -#: gnu/packages/networking.scm:3271 +#: gnu/packages/networking.scm:3309 msgid "" "Dante is a SOCKS client and server implementation. It can\n" "be installed on a machine with access to an external TCP/IP network and will\n" @@ -11450,21 +11584,21 @@ msgid "" "never see any machines other than the one Dante is running on." msgstr "" -#: gnu/packages/networking.scm:3318 +#: gnu/packages/networking.scm:3356 msgid "" "Restbed is a comprehensive and consistent programming\n" "model for building applications that require seamless and secure\n" "communication over HTTP." msgstr "" -#: gnu/packages/networking.scm:3358 +#: gnu/packages/networking.scm:3396 msgid "" "RESTinio is a header-only C++14 library that gives you an embedded\n" "HTTP/Websocket server. It is based on standalone version of ASIO\n" "and targeted primarily for asynchronous processing of HTTP-requests." msgstr "" -#: gnu/packages/networking.scm:3446 +#: gnu/packages/networking.scm:3487 msgid "" "OpenDHT provides an easy to use distributed in-memory data\n" "store. Every node in the network can read and write values to the store.\n" @@ -11491,20 +11625,20 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/networking.scm:3490 +#: gnu/packages/networking.scm:3531 msgid "" "FRRouting (FRR) is an IP routing protocol suite which includes\n" "protocol daemons for BGP, IS-IS, LDP, OSPF, PIM, and RIP." msgstr "" -#: gnu/packages/networking.scm:3520 +#: gnu/packages/networking.scm:3561 msgid "" "BIRD is an Internet routing daemon with full support for all\n" "the major routing protocols. It allows redistribution between protocols with a\n" "powerful route filtering syntax and an easy-to-use configuration interface." msgstr "" -#: gnu/packages/networking.scm:3568 +#: gnu/packages/networking.scm:3609 msgid "" "iwd is a wireless daemon for Linux that aims to replace WPA\n" "Supplicant. It optimizes resource utilization by not depending on any external\n" @@ -11512,21 +11646,21 @@ msgid "" "maximum extent possible." msgstr "" -#: gnu/packages/networking.scm:3595 +#: gnu/packages/networking.scm:3636 msgid "" "libyang is a YANG data modelling language parser and toolkit\n" "written (and providing API) in C. Current implementation covers YANG 1.0 (RFC\n" "6020) as well as YANG 1.1 (RFC 7950)." msgstr "" -#: gnu/packages/networking.scm:3629 +#: gnu/packages/networking.scm:3670 msgid "" "This package provides a control tool for the\n" "B.A.T.M.A.N. mesh networking routing protocol provided by the Linux kernel\n" "module @code{batman-adv}, for Layer 2." msgstr "" -#: gnu/packages/networking.scm:3662 +#: gnu/packages/networking.scm:3703 msgid "" "PageKite implements a tunneled reverse proxy which makes it easy to make\n" "a service (such as an HTTP or SSH server) on localhost visible to the wider\n" @@ -11534,7 +11668,7 @@ msgid "" "service is available at @url{https://pagekite.net/}, or you can run your own." msgstr "" -#: gnu/packages/networking.scm:3706 +#: gnu/packages/networking.scm:3747 msgid "" "ipcalc takes an IP address and netmask and calculates the\n" "resulting broadcast, network, Cisco wildcard mask, and host range. By giving\n" @@ -11543,7 +11677,7 @@ msgid "" "easy-to-understand binary values." msgstr "" -#: gnu/packages/networking.scm:3745 +#: gnu/packages/networking.scm:3786 msgid "" "Tunctl is used to set up and maintain persistent TUN/TAP\n" "network interfaces, enabling user applications to simulate network traffic.\n" @@ -11551,13 +11685,13 @@ msgid "" "simulation, and a number of other applications." msgstr "" -#: gnu/packages/networking.scm:3765 +#: gnu/packages/networking.scm:3806 msgid "" "Tool to send a magic packet to wake another host on the\n" "network. This must be enabled on the target host, usually in the BIOS." msgstr "" -#: gnu/packages/networking.scm:3802 +#: gnu/packages/networking.scm:3843 msgid "" "This package provides a modern, but Linux-specific\n" "implementation of the @command{traceroute} command that can be used to follow\n" @@ -11568,7 +11702,7 @@ msgid "" "some traces for unprivileged users." msgstr "" -#: gnu/packages/networking.scm:3836 +#: gnu/packages/networking.scm:3877 msgid "" "VDE is a set of programs to provide virtual software-defined\n" "Ethernet network interface controllers across multiple virtual or\n" @@ -11577,7 +11711,7 @@ msgid "" "cables." msgstr "" -#: gnu/packages/networking.scm:3878 +#: gnu/packages/networking.scm:3919 msgid "" "HAProxy is a free, very fast and reliable solution offering\n" "high availability, load balancing, and proxying for TCP and HTTP-based\n" @@ -11586,7 +11720,7 @@ msgid "" "thousands of connections is clearly realistic with today's hardware." msgstr "" -#: gnu/packages/networking.scm:3924 +#: gnu/packages/networking.scm:3965 msgid "" "The @dfn{Link Layer Discovery Protocol} (LLDP) is an industry standard\n" "protocol designed to supplant proprietary Link-Layer protocols such as EDP or\n" @@ -11595,7 +11729,7 @@ msgid "" "an implementation of LLDP. It also supports some proprietary protocols." msgstr "" -#: gnu/packages/networking.scm:3966 +#: gnu/packages/networking.scm:4007 msgid "" "Hashcash is a proof-of-work algorithm, which has been used\n" "as a denial-of-service countermeasure technique in a number of systems.\n" @@ -11608,14 +11742,14 @@ msgid "" "stamps." msgstr "" -#: gnu/packages/networking.scm:3995 +#: gnu/packages/networking.scm:4036 msgid "" "This package provides the NBD (Network Block Devices)\n" "client and server. It allows you to use remote block devices over a TCP/IP\n" "network." msgstr "" -#: gnu/packages/networking.scm:4062 +#: gnu/packages/networking.scm:4103 msgid "" "Yggdrasil is an early-stage implementation of a fully end-to-end encrypted\n" "IPv6 network. It is lightweight, self-arranging, supported on multiple\n" @@ -11624,7 +11758,7 @@ msgid "" "IPv6 Internet connectivity - it also works over IPv4." msgstr "" -#: gnu/packages/networking.scm:4106 +#: gnu/packages/networking.scm:4147 msgid "" "Netdiscover is a network address discovery tool developed\n" "mainly for wireless networks without a @acronym{DHCP} server. It also works\n" @@ -11632,7 +11766,7 @@ msgid "" "@acronym{ARP} requests and sniff for replies." msgstr "" -#: gnu/packages/networking.scm:4138 +#: gnu/packages/networking.scm:4179 msgid "" "PuTTY is a graphical text terminal client. It supports\n" "@acronym{SSH, Secure SHell}, telnet, and raw socket connections with good\n" @@ -11743,14 +11877,14 @@ msgid "" "by using the poppler rendering engine." msgstr "" -#: gnu/packages/pdf.scm:654 +#: gnu/packages/pdf.scm:653 msgid "" "Zathura is a customizable document viewer. It provides a\n" "minimalistic interface and an interface that mainly focuses on keyboard\n" "interaction." msgstr "" -#: gnu/packages/pdf.scm:697 +#: gnu/packages/pdf.scm:696 msgid "" "PoDoFo is a C++ library and set of command-line tools to work with the\n" "PDF file format. It can parse PDF files and load them into memory, and makes\n" @@ -11759,7 +11893,7 @@ msgid "" "extracting content or merging files." msgstr "" -#: gnu/packages/pdf.scm:764 +#: gnu/packages/pdf.scm:763 msgid "" "MuPDF is a C library that implements a PDF and XPS parsing and\n" "rendering engine. It is used primarily to render pages into bitmaps,\n" @@ -11771,7 +11905,7 @@ msgid "" "@command{pdfclean}, and examining the file structure @command{pdfshow}." msgstr "" -#: gnu/packages/pdf.scm:811 +#: gnu/packages/pdf.scm:810 msgid "" "QPDF is a command-line program that does structural, content-preserving\n" "transformations on PDF files. It could have been called something like\n" @@ -11780,7 +11914,7 @@ msgid "" "program capable of converting PDF into other formats." msgstr "" -#: gnu/packages/pdf.scm:855 +#: gnu/packages/pdf.scm:854 msgid "" "@command{qpdfview} is a document viewer for PDF, PS and DJVU\n" "files. It uses the Qt toolkit and features persistent per-file settings,\n" @@ -11788,13 +11922,13 @@ msgid "" "SyncTeX support, and rudimentary support for annotations and forms." msgstr "" -#: gnu/packages/pdf.scm:881 +#: gnu/packages/pdf.scm:880 msgid "" "Xournal is an application for notetaking, sketching, keeping a journal\n" "using a stylus." msgstr "" -#: gnu/packages/pdf.scm:940 +#: gnu/packages/pdf.scm:939 msgid "" "Xournal++ is a hand note taking software written in\n" "C++ with the target of flexibility, functionality and speed. Stroke\n" @@ -11830,14 +11964,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1019 +#: gnu/packages/pdf.scm:1018 msgid "" "This is the ReportLab PDF Toolkit. It allows rapid creation\n" "of rich PDF documents, and also creation of charts in a variety of bitmap and\n" "vector formats." msgstr "" -#: gnu/packages/pdf.scm:1071 +#: gnu/packages/pdf.scm:1070 msgid "" "Impressive is a tool to display PDF files that provides visual effects\n" "such as smooth alpha-blended slide transitions. It provides additional tools\n" @@ -11845,26 +11979,26 @@ msgid "" "the PDF pages." msgstr "" -#: gnu/packages/pdf.scm:1094 +#: gnu/packages/pdf.scm:1093 msgid "" "img2pdf converts images to PDF via direct JPEG inclusion. That\n" "conversion is lossless: the image embedded in the PDF has the exact same color\n" "information for every pixel as the input." msgstr "" -#: gnu/packages/pdf.scm:1147 +#: gnu/packages/pdf.scm:1146 msgid "" "fbida contains a few applications for viewing and editing images on\n" "the framebuffer." msgstr "" -#: gnu/packages/pdf.scm:1171 +#: gnu/packages/pdf.scm:1170 msgid "" "@command{pdf2svg} is a simple command-line PDF to SVG\n" "converter using the Poppler and Cairo libraries." msgstr "" -#: gnu/packages/pdf.scm:1203 +#: gnu/packages/pdf.scm:1202 msgid "" "PyPDF2 is a pure Python PDF library capable of:\n" "\n" @@ -11884,7 +12018,7 @@ msgid "" "manage or manipulate PDFs." msgstr "" -#: gnu/packages/pdf.scm:1240 +#: gnu/packages/pdf.scm:1239 msgid "" "PyPDF2 is a pure Python PDF toolkit.\n" "\n" @@ -11892,7 +12026,7 @@ msgid "" "python-pypdf2 instead." msgstr "" -#: gnu/packages/pdf.scm:1284 +#: gnu/packages/pdf.scm:1283 msgid "" "PDF Arranger is a small application which allows one to merge or split\n" "PDF documents and rotate, crop and rearrange their pages using an interactive\n" @@ -11901,7 +12035,7 @@ msgid "" "PDF Arranger was formerly known as PDF-Shuffler." msgstr "" -#: gnu/packages/pdf.scm:1308 +#: gnu/packages/pdf.scm:1307 msgid "" "@command{pdfposter} can be used to create a large poster by\n" "building it from multiple pages and/or printing it on large media. It expects\n" @@ -11914,7 +12048,7 @@ msgid "" "PDF. Indeed @command{pdfposter} was inspired by @command{poster}." msgstr "" -#: gnu/packages/pdf.scm:1339 +#: gnu/packages/pdf.scm:1338 msgid "" "Pdfgrep searches in pdf files for strings matching a regular expression.\n" "Support some GNU grep options as file name output, page number output,\n" @@ -11922,7 +12056,7 @@ msgid "" "multiple files." msgstr "" -#: gnu/packages/pdf.scm:1387 +#: gnu/packages/pdf.scm:1386 msgid "" "pdfpc is a presentation viewer application which uses multi-monitor\n" "output to provide meta information to the speaker during the presentation. It\n" @@ -11932,13 +12066,13 @@ msgid "" "presentation. The input files processed by pdfpc are PDF documents." msgstr "" -#: gnu/packages/pdf.scm:1414 +#: gnu/packages/pdf.scm:1413 msgid "" "Paps reads a UTF-8 encoded file and generates a PostScript language\n" "rendering of the file through the Pango Cairo back end." msgstr "" -#: gnu/packages/pdf.scm:1444 +#: gnu/packages/pdf.scm:1443 msgid "" "Stapler is a pure Python alternative to PDFtk, a tool for\n" "manipulating PDF documents from the command line. It supports\n" @@ -11952,7 +12086,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/pdf.scm:1532 +#: gnu/packages/pdf.scm:1531 msgid "" "WeasyPrint helps web developers to create PDF documents. It\n" "turns simple HTML pages into gorgeous statistical reports, invoices, tickets,\n" @@ -15674,7 +15808,7 @@ msgid "" "and enhance them." msgstr "" -#: gnu/packages/photo.scm:601 +#: gnu/packages/photo.scm:603 msgid "" "Photoflare is a cross-platform image editor with an aim\n" "to balance between powerful features and a very friendly graphical user\n" @@ -15684,7 +15818,7 @@ msgid "" "such as Batch image processing." msgstr "" -#: gnu/packages/photo.scm:669 +#: gnu/packages/photo.scm:670 msgid "" "Entangle is an application which uses GTK and libgphoto2 to provide a\n" "graphical interface for tethered photography with digital cameras. It\n" @@ -15692,14 +15826,14 @@ msgid "" "off' shooting directly from the controlling computer." msgstr "" -#: gnu/packages/photo.scm:740 +#: gnu/packages/photo.scm:741 msgid "" "Hugin is an easy to use panoramic imaging toolchain with a graphical\n" "user interface. It can be used to assemble a mosaic of photographs into\n" "a complete panorama and stitch any series of overlapping pictures." msgstr "" -#: gnu/packages/photo.scm:794 +#: gnu/packages/photo.scm:795 msgid "" "RawTherapee is a raw image processing suite. It comprises a\n" "subset of image editing operations specifically aimed at non-destructive raw\n" @@ -15743,7 +15877,28 @@ msgid "" "`special effects' using the filter mechanism." msgstr "" -#: gnu/packages/scanner.scm:144 +#: gnu/packages/scanner.scm:83 +msgid "" +"This SANE backend lets you scan documents and images from scanners and\n" +"multi-function printers that speak eSCL (marketed as ``AirScan'') or\n" +"@acronym{WSD, Web Services for Devices} (or ``WS-Scan'').\n" +"\n" +"Both are vendor-neutral protocols that allow ``driverless'' scanning over IPv4\n" +"and IPv6 networks without the vendor-specific drivers that make up most of the\n" +"sane-backends collection. This is similar to how most contemporary printers\n" +"speak the universal @acronym{IPP, Internet Printing Protocol}.\n" +"\n" +"Only scanners that support eSCL will also work over USB. This requires a\n" +"suitable IPP-over-USB daemon like ipp-usb to be installed and configured.\n" +"\n" +"Any eSCL or WSD-capable scanner should just work. sane-airscan automatically\n" +"discovers and configures devices, including which protocol to use. It was\n" +"successfully tested with many devices from Brother, Canon, Dell, Kyocera,\n" +"Lexmark, Epson, HP, OKI, Panasonic, Pantum, Ricoh, Samsung, and Xerox, with both\n" +"WSD and eSCL." +msgstr "" + +#: gnu/packages/scanner.scm:200 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -15751,7 +15906,7 @@ msgid "" "package contains the library, but no drivers." msgstr "" -#: gnu/packages/scanner.scm:192 +#: gnu/packages/scanner.scm:248 msgid "" "SANE stands for \"Scanner Access Now Easy\" and is an API\n" "proving access to any raster image scanner hardware (flatbed scanner,\n" @@ -15759,7 +15914,7 @@ msgid "" "package contains the library and drivers." msgstr "" -#: gnu/packages/scanner.scm:243 +#: gnu/packages/scanner.scm:299 msgid "" "Scanbd stands for scanner button daemon. It regularly polls\n" "scanners for pressed buttons, function knob changes, or other events such\n" @@ -15775,7 +15930,7 @@ msgid "" "provided the driver also exposes the buttons." msgstr "" -#: gnu/packages/scanner.scm:331 +#: gnu/packages/scanner.scm:387 msgid "" "XSane is a graphical interface for controlling a scanner and acquiring\n" "images from it. You can photocopy multi-page documents and save, fax, print,\n" @@ -15787,14 +15942,14 @@ msgid "" "back-end library, which supports almost all existing scanners." msgstr "" -#: gnu/packages/scheme.scm:225 +#: gnu/packages/scheme.scm:226 msgid "" "GNU/MIT Scheme is an implementation of the Scheme programming\n" "language. It provides an interpreter, a compiler and a debugger. It also\n" "features an integrated Emacs-like editor and a large runtime library." msgstr "" -#: gnu/packages/scheme.scm:324 +#: gnu/packages/scheme.scm:325 msgid "" "Bigloo is a Scheme implementation devoted to one goal: enabling Scheme\n" "based programming style where C(++) is usually required. Bigloo attempts to\n" @@ -15805,7 +15960,7 @@ msgid "" "and between Scheme and Java programs." msgstr "" -#: gnu/packages/scheme.scm:377 +#: gnu/packages/scheme.scm:378 msgid "" "HOP is a multi-tier programming language for the Web 2.0 and the\n" "so-called diffuse Web. It is designed for programming interactive web\n" @@ -15814,14 +15969,14 @@ msgid "" "mashups, office (web agendas, mail clients, ...), etc." msgstr "" -#: gnu/packages/scheme.scm:400 +#: gnu/packages/scheme.scm:401 msgid "" "Scheme 48 is an implementation of Scheme based on a byte-code\n" "interpreter and is designed to be used as a testbed for experiments in\n" "implementation techniques and as an expository tool." msgstr "" -#: gnu/packages/scheme.scm:430 +#: gnu/packages/scheme.scm:431 msgid "" "Gambit consists of two main programs: gsi, the Gambit Scheme\n" "interpreter, and gsc, the Gambit Scheme compiler. The interpreter contains\n" @@ -15832,7 +15987,7 @@ msgid "" "mixed." msgstr "" -#: gnu/packages/scheme.scm:464 +#: gnu/packages/scheme.scm:465 msgid "" "Chibi-Scheme is a very small library with no external dependencies\n" "intended for use as an extension and scripting language in C programs. In\n" @@ -15841,7 +15996,7 @@ msgid "" "threads." msgstr "" -#: gnu/packages/scheme.scm:512 +#: gnu/packages/scheme.scm:513 msgid "" "Structure and Interpretation of Computer Programs (SICP) is\n" "a textbook aiming to teach the principles of computer programming.\n" @@ -15851,19 +16006,19 @@ msgid "" "metalinguistic abstraction, recursion, interpreters, and modular programming." msgstr "" -#: gnu/packages/scheme.scm:556 +#: gnu/packages/scheme.scm:557 msgid "" "String pattern-matching library for scheme48 based on the SRE\n" "regular-expression notation." msgstr "" -#: gnu/packages/scheme.scm:589 +#: gnu/packages/scheme.scm:590 msgid "" "SLIB is a portable Scheme library providing compatibility and\n" "utility functions for all standard Scheme implementations." msgstr "" -#: gnu/packages/scheme.scm:643 +#: gnu/packages/scheme.scm:644 msgid "" "GNU SCM is an implementation of Scheme. This\n" "implementation includes Hobbit, a Scheme-to-C compiler, which can\n" @@ -15871,7 +16026,7 @@ msgid "" "linked with a SCM executable." msgstr "" -#: gnu/packages/scheme.scm:702 +#: gnu/packages/scheme.scm:703 msgid "" "TinyScheme is a light-weight Scheme interpreter that implements as large a\n" "subset of R5RS as was possible without getting very large and complicated.\n" @@ -15887,7 +16042,7 @@ msgid "" "small program, it is easy to comprehend, get to grips with, and use." msgstr "" -#: gnu/packages/scheme.scm:783 +#: gnu/packages/scheme.scm:784 msgid "" "Stalin is an aggressively optimizing whole-program compiler\n" "for Scheme that does polyvariant interprocedural flow analysis,\n" @@ -15899,7 +16054,7 @@ msgid "" "generation." msgstr "" -#: gnu/packages/scheme.scm:819 +#: gnu/packages/scheme.scm:820 msgid "" "Scheme 9 from Empty Space (S9fES) is a mature, portable, and\n" "comprehensible public-domain interpreter for R4RS Scheme offering:\n" @@ -15914,14 +16069,14 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/scheme.scm:877 +#: gnu/packages/scheme.scm:878 msgid "" "@code{femtolisp} is a scheme-like lisp implementation with a\n" "simple, elegant Scheme dialect. It is a lisp-1 with lexical scope.\n" "The core is 12 builtin special forms and 33 builtin functions." msgstr "" -#: gnu/packages/scheme.scm:940 +#: gnu/packages/scheme.scm:941 msgid "" "Gauche is a R7RS Scheme scripting engine aiming at being a\n" "handy tool that helps programmers and system administrators to write small to\n" @@ -15931,7 +16086,7 @@ msgid "" "and list gauche extension packages." msgstr "" -#: gnu/packages/scheme.scm:1038 +#: gnu/packages/scheme.scm:1039 msgid "" "Gerbil is an opinionated dialect of Scheme designed for Systems\n" "Programming, with a state of the art macro and module system on top of the Gambit\n" @@ -16068,7 +16223,7 @@ msgid "" "server and an IRC server." msgstr "" -#: gnu/packages/shells.scm:107 +#: gnu/packages/shells.scm:108 msgid "" "dash is a POSIX-compliant @command{/bin/sh} implementation that aims to be\n" "as small as possible, often without sacrificing speed. It is faster than the\n" @@ -16076,7 +16231,7 @@ msgid "" "direct descendant of NetBSD's Almquist Shell (@command{ash})." msgstr "" -#: gnu/packages/shells.scm:255 +#: gnu/packages/shells.scm:256 msgid "" "Fish (friendly interactive shell) is a shell focused on interactive use,\n" "discoverability, and friendliness. Fish has very user-friendly and powerful\n" @@ -16088,20 +16243,20 @@ msgid "" "and syntax highlighting." msgstr "" -#: gnu/packages/shells.scm:308 +#: gnu/packages/shells.scm:309 msgid "" "@code{fish-foreign-env} wraps bash script execution in a way\n" "that environment variables that are exported or modified get imported back\n" "into fish." msgstr "" -#: gnu/packages/shells.scm:344 +#: gnu/packages/shells.scm:345 msgid "" "This is a reimplementation by Byron Rakitzis of the Plan 9 shell. It\n" "has a small feature set similar to a traditional Bourne shell." msgstr "" -#: gnu/packages/shells.scm:377 +#: gnu/packages/shells.scm:378 msgid "" "Es is an extensible shell. The language was derived from the Plan 9\n" "shell, rc, and was influenced by functional programming languages, such as\n" @@ -16110,7 +16265,7 @@ msgid "" "written by Paul Haahr and Byron Rakitzis." msgstr "" -#: gnu/packages/shells.scm:455 +#: gnu/packages/shells.scm:456 msgid "" "Tcsh is an enhanced, but completely compatible version of the Berkeley\n" "UNIX C shell (csh). It is a command language interpreter usable both as an\n" @@ -16119,7 +16274,7 @@ msgid "" "history mechanism, job control and a C-like syntax." msgstr "" -#: gnu/packages/shells.scm:522 +#: gnu/packages/shells.scm:523 msgid "" "The Z shell (zsh) is a Unix shell that can be used\n" "as an interactive login shell and as a powerful command interpreter\n" @@ -16128,7 +16283,7 @@ msgid "" "ksh, and tcsh." msgstr "" -#: gnu/packages/shells.scm:572 +#: gnu/packages/shells.scm:573 msgid "" "Xonsh is a Python-ish, BASHwards-looking shell language and command\n" "prompt. The language is a superset of Python 3.4+ with additional shell\n" @@ -16137,7 +16292,7 @@ msgid "" "use of experts and novices alike." msgstr "" -#: gnu/packages/shells.scm:616 +#: gnu/packages/shells.scm:617 msgid "" "Scsh is a Unix shell embedded in Scheme. Scsh has two main\n" "components: a process notation for running programs and setting up pipelines\n" @@ -16145,7 +16300,7 @@ msgid "" "operating system." msgstr "" -#: gnu/packages/shells.scm:658 +#: gnu/packages/shells.scm:659 msgid "" "Linenoise is a minimal, zero-config, readline replacement.\n" "Its features include:\n" @@ -16159,7 +16314,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/shells.scm:722 +#: gnu/packages/shells.scm:723 msgid "" "S is a new shell that aims to be extremely simple. It does not\n" "implement the POSIX shell standard.\n" @@ -16173,19 +16328,19 @@ msgid "" "A @code{andglob} program is also provided along with s." msgstr "" -#: gnu/packages/shells.scm:753 +#: gnu/packages/shells.scm:754 msgid "" "Oksh is a port of the OpenBSD Korn Shell.\n" "The OpenBSD Korn Shell is a cleaned up and enhanced ksh." msgstr "" -#: gnu/packages/shells.scm:783 +#: gnu/packages/shells.scm:784 msgid "" "loksh is a Linux port of OpenBSD's @command{ksh}. It is a small,\n" "interactive POSIX shell targeted at resource-constrained systems." msgstr "" -#: gnu/packages/shells.scm:821 +#: gnu/packages/shells.scm:822 msgid "" "mksh is an actively developed free implementation of the\n" "Korn Shell programming language and a successor to the Public Domain Korn\n" @@ -16217,7 +16372,7 @@ msgid "" "files and text." msgstr "" -#: gnu/packages/shells.scm:1006 +#: gnu/packages/shells.scm:1005 msgid "" "Nu draws inspiration from projects like PowerShell, functional\n" "programming languages, and modern CLI tools. Rather than thinking of files\n" @@ -16228,7 +16383,7 @@ msgid "" "of commands called a ``pipeline''." msgstr "" -#: gnu/packages/shells.scm:1037 +#: gnu/packages/shells.scm:1036 msgid "" "This package is a library for ANSI terminal colors and styles (bold,\n" "underline)." @@ -16484,19 +16639,19 @@ msgid "" "your calls and messages." msgstr "" -#: gnu/packages/telephony.scm:874 +#: gnu/packages/telephony.scm:869 msgid "" "PJProject provides an implementation of the Session\n" "Initiation Protocol (SIP) and a multimedia framework." msgstr "" -#: gnu/packages/telephony.scm:916 +#: gnu/packages/telephony.scm:911 msgid "" "A collection of libraries and header files for implementing\n" "telephony functionality into custom Telegram clients." msgstr "" -#: gnu/packages/tex.scm:532 +#: gnu/packages/tex.scm:543 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -16506,20 +16661,20 @@ msgid "" "This package contains the binaries." msgstr "" -#: gnu/packages/tex.scm:571 +#: gnu/packages/tex.scm:582 msgid "" "kpathsea is a library, whose purpose is to return a filename\n" "from a list of user-specified directories similar to how shells look up\n" "executables. It is maintained as a part of TeX Live." msgstr "" -#: gnu/packages/tex.scm:591 +#: gnu/packages/tex.scm:602 msgid "" "This package provides the docstrip utility to strip\n" "documentation from TeX files. It is part of the LaTeX base." msgstr "" -#: gnu/packages/tex.scm:606 +#: gnu/packages/tex.scm:617 msgid "" "This bundle provides generic access to Unicode Consortium\n" "data for TeX use. It contains a set of text files provided by the Unicode\n" @@ -16532,7 +16687,7 @@ msgid "" "out to date by @code{unicode-letters.tex}." msgstr "" -#: gnu/packages/tex.scm:638 +#: gnu/packages/tex.scm:649 msgid "" "This package includes Knuth's original @file{hyphen.tex},\n" "@file{zerohyph.tex} to disable hyphenation, @file{language.us} which starts\n" @@ -16540,13 +16695,13 @@ msgid "" "default versions of those), etc." msgstr "" -#: gnu/packages/tex.scm:659 +#: gnu/packages/tex.scm:670 msgid "" "This package provides files needed for converting DVI files\n" "to PostScript." msgstr "" -#: gnu/packages/tex.scm:673 +#: gnu/packages/tex.scm:684 msgid "" "This bundle provides a collection of model \".ini\" files\n" "for creating TeX formats. These files are commonly used to introduced\n" @@ -16555,13 +16710,13 @@ msgid "" "to adapt the plain e-TeX source file to work with XeTeX and LuaTeX." msgstr "" -#: gnu/packages/tex.scm:736 +#: gnu/packages/tex.scm:747 msgid "" "This package provides the Metafont base files needed to\n" "build fonts using the Metafont system." msgstr "" -#: gnu/packages/tex.scm:821 +#: gnu/packages/tex.scm:832 msgid "" "This package provides TeX macros for converting Adobe Font\n" "Metric files to TeX metric and virtual font format. Fontinst helps mainly\n" @@ -16571,7 +16726,7 @@ msgid "" "typesetting in these fonts." msgstr "" -#: gnu/packages/tex.scm:842 +#: gnu/packages/tex.scm:853 msgid "" "This is Fontname, a naming scheme for (the base part of)\n" "external TeX font filenames. This makes at most eight-character names\n" @@ -16579,7 +16734,7 @@ msgid "" "documents." msgstr "" -#: gnu/packages/tex.scm:915 +#: gnu/packages/tex.scm:926 msgid "" "This package provides the Computer Modern fonts by Donald\n" "Knuth. The Computer Modern font family is a large collection of text,\n" @@ -16587,7 +16742,7 @@ msgid "" "8A." msgstr "" -#: gnu/packages/tex.scm:946 +#: gnu/packages/tex.scm:957 msgid "" "The CM-Super family provides Adobe Type 1 fonts that replace\n" "the T1/TS1-encoded Computer Modern (EC/TC), T1/TS1-encoded Concrete,\n" @@ -16597,13 +16752,13 @@ msgid "" "originals." msgstr "" -#: gnu/packages/tex.scm:979 +#: gnu/packages/tex.scm:990 msgid "" "This package provides a drop-in replacements for the Courier\n" "font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:1002 +#: gnu/packages/tex.scm:1013 msgid "" "The TeX-GYRE bundle consist of multiple font families:\n" "@itemize @bullet\n" @@ -16623,21 +16778,21 @@ msgid "" "support (for use with a variety of encodings) is provided." msgstr "" -#: gnu/packages/tex.scm:1041 +#: gnu/packages/tex.scm:1052 msgid "" "The Latin Modern fonts are derived from the famous Computer\n" "Modern fonts designed by Donald E. Knuth and described in Volume E of his\n" "Computers & Typesetting series." msgstr "" -#: gnu/packages/tex.scm:1106 +#: gnu/packages/tex.scm:1117 msgid "" "This is a collection of core TeX and METAFONT macro files\n" "from Donald Knuth, including the plain format, plain base, and the MF logo\n" "fonts." msgstr "" -#: gnu/packages/tex.scm:1181 +#: gnu/packages/tex.scm:1192 msgid "" "This is a collection of fonts for use with standard LaTeX\n" "packages and classes. It includes invisible fonts (for use with the slides\n" @@ -16645,14 +16800,14 @@ msgid "" "symbol fonts." msgstr "" -#: gnu/packages/tex.scm:1253 +#: gnu/packages/tex.scm:1264 msgid "" "This package provides LaTeX and font definition files to access the\n" "Knuthian mflogo fonts described in The Metafontbook and to typeset Metafont\n" "logos in LaTeX documents." msgstr "" -#: gnu/packages/tex.scm:1274 +#: gnu/packages/tex.scm:1285 msgid "" "These fonts were created in METAFONT by Knuth, for his own publications.\n" "At some stage, the letters P and S were added, so that the METAPOST logo could\n" @@ -16661,7 +16816,7 @@ msgid "" "Taco Hoekwater." msgstr "" -#: gnu/packages/tex.scm:1402 +#: gnu/packages/tex.scm:1415 gnu/packages/tex.scm:1579 msgid "" "This package provides an extended set of fonts for use in mathematics,\n" "including: extra mathematical symbols; blackboard bold letters (uppercase\n" @@ -16675,7 +16830,7 @@ msgid "" "details can be found in the documentation." msgstr "" -#: gnu/packages/tex.scm:1432 +#: gnu/packages/tex.scm:1609 msgid "" "Mkpattern is a general purpose program for the generation of\n" "hyphenation patterns, with definition of letter sets and template-like\n" @@ -16683,7 +16838,7 @@ msgid "" "output encodings, and features generation of clean UTF-8 patterns." msgstr "" -#: gnu/packages/tex.scm:1489 +#: gnu/packages/tex.scm:1666 msgid "" "This package provides an extended version of TeX (which is capable of\n" "running as if it were TeX unmodified). E-TeX has been specified by the LaTeX\n" @@ -16692,122 +16847,131 @@ msgid "" "incorporates the e-TeX extensions." msgstr "" -#: gnu/packages/tex.scm:1507 +#: gnu/packages/tex.scm:1684 msgid "" "This package contains files used to build the Plain TeX format, as\n" "described in the TeXbook, together with various supporting files (some also\n" "discussed in the book)." msgstr "" -#: gnu/packages/tex.scm:1533 +#: gnu/packages/tex.scm:1702 +msgid "" +"The package facilitates wrapping text to a specific character width, breaking\n" +"lines by words rather than, as done by TeX, by characters. The primary use for\n" +"these facilities is to aid the generation of messages sent to the log file or\n" +"console output to display messages to the user. Package authors may also find\n" +"this useful when writing out arbitary text to an external file." +msgstr "" + +#: gnu/packages/tex.scm:1730 msgid "" "This package provides a drop-in replacements for the Helvetica\n" "font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:1546 +#: gnu/packages/tex.scm:1743 msgid "" "The package provides hyphenation patterns for the Afrikaans\n" "language." msgstr "" -#: gnu/packages/tex.scm:1560 +#: gnu/packages/tex.scm:1757 msgid "" "The package provides hyphenation patterns for ancient\n" "Greek." msgstr "" -#: gnu/packages/tex.scm:1573 +#: gnu/packages/tex.scm:1770 msgid "" "The package provides hyphenation patterns for the Armenian\n" "language." msgstr "" -#: gnu/packages/tex.scm:1587 +#: gnu/packages/tex.scm:1784 msgid "" "The package provides hyphenation patterns for the Basque\n" "language." msgstr "" -#: gnu/packages/tex.scm:1601 +#: gnu/packages/tex.scm:1798 msgid "" "The package provides hyphenation patterns for the Belarusian\n" "language." msgstr "" -#: gnu/packages/tex.scm:1613 +#: gnu/packages/tex.scm:1810 msgid "" "The package provides hyphenation patterns for the Bulgarian\n" "language in T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1627 +#: gnu/packages/tex.scm:1824 msgid "" "The package provides hyphenation patterns for Catalan in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1640 +#: gnu/packages/tex.scm:1837 msgid "" "The package provides hyphenation patterns for unaccented\n" "Chinese pinyin T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1652 +#: gnu/packages/tex.scm:1849 msgid "" "The package provides hyphenation patterns for Church\n" "Slavonic in UTF-8 encoding." msgstr "" -#: gnu/packages/tex.scm:1665 +#: gnu/packages/tex.scm:1862 msgid "" "The package provides hyphenation patterns for Coptic in\n" "UTF-8 encoding as well as in ASCII-based encoding for 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:1678 +#: gnu/packages/tex.scm:1875 msgid "" "The package provides hyphenation patterns for Croatian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1690 +#: gnu/packages/tex.scm:1887 msgid "" "The package provides hyphenation patterns for Czech in T1/EC\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1702 +#: gnu/packages/tex.scm:1899 msgid "" "The package provides hyphenation patterns for Danish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1715 +#: gnu/packages/tex.scm:1912 msgid "" "The package provides hyphenation patterns for Dutch in T1/EC\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1728 +#: gnu/packages/tex.scm:1925 msgid "" "The package provides additional hyphenation patterns for\n" "American and British English in ASCII encoding." msgstr "" -#: gnu/packages/tex.scm:1742 +#: gnu/packages/tex.scm:1939 msgid "" "The package provides hyphenation patterns for Esperanto ISO\n" "Latin 3 and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1754 +#: gnu/packages/tex.scm:1951 msgid "" "The package provides hyphenation patterns for Estonian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1768 +#: gnu/packages/tex.scm:1965 msgid "" "The package provides hyphenation patterns for languages\n" "written using the Ethiopic script for Unicode engines. They are not supposed\n" @@ -16815,94 +16979,94 @@ msgid "" "be replaced by files tailored to individual languages." msgstr "" -#: gnu/packages/tex.scm:1782 +#: gnu/packages/tex.scm:1979 msgid "" "The package provides hyphenation patterns for Finnish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1794 +#: gnu/packages/tex.scm:1991 msgid "" "The package provides hyphenation patterns for Finnish for\n" "school in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1806 +#: gnu/packages/tex.scm:2003 msgid "" "The package provides hyphenation patterns for French in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1818 +#: gnu/packages/tex.scm:2015 msgid "" "The package provides hyphenation patterns for Friulan in\n" "ASCII encodings." msgstr "" -#: gnu/packages/tex.scm:1831 +#: gnu/packages/tex.scm:2028 msgid "" "The package provides hyphenation patterns for Galician in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1843 +#: gnu/packages/tex.scm:2040 msgid "" "The package provides hyphenation patterns for Georgian in\n" "T8M, T8K, and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1861 +#: gnu/packages/tex.scm:2058 msgid "" "This package provides hyphenation patterns for German in\n" "T1/EC and UTF-8 encodings, for traditional and reformed spelling, including\n" "Swiss German." msgstr "" -#: gnu/packages/tex.scm:1880 +#: gnu/packages/tex.scm:2077 msgid "" "This package provides hyphenation patterns for Modern Greek\n" "in monotonic and polytonic spelling in LGR and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1894 +#: gnu/packages/tex.scm:2091 msgid "" "This package provides hyphenation patterns for Hungarian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1907 +#: gnu/packages/tex.scm:2104 msgid "" "This package provides hyphenation patterns for Icelandic in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1930 +#: gnu/packages/tex.scm:2127 msgid "" "This package provides hyphenation patterns for Assamese,\n" "Bengali, Gujarati, Hindi, Kannada, Malayalam, Marathi, Oriya, Panjabi, Tamil\n" "and Telugu for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:1943 +#: gnu/packages/tex.scm:2140 msgid "" "This package provides hyphenation patterns for\n" "Indonesian (Bahasa Indonesia) in ASCII encoding. They are probably also\n" "usable for Malay (Bahasa Melayu)." msgstr "" -#: gnu/packages/tex.scm:1956 +#: gnu/packages/tex.scm:2153 msgid "" "This package provides hyphenation patterns for Interlingua\n" "in ASCII encoding." msgstr "" -#: gnu/packages/tex.scm:1968 +#: gnu/packages/tex.scm:2165 msgid "" "This package provides hyphenation patterns for\n" "Irish (Gaeilge) in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:1981 +#: gnu/packages/tex.scm:2178 msgid "" "This package provides hyphenation patterns for Italian in\n" "ASCII encoding. Compliant with the Recommendation UNI 6461 on hyphenation\n" @@ -16910,14 +17074,14 @@ msgid "" "UNI)." msgstr "" -#: gnu/packages/tex.scm:1995 +#: gnu/packages/tex.scm:2192 msgid "" "This package provides hyphenation patterns for\n" "Kurmanji (Northern Kurdish) as spoken in Turkey and by the Kurdish diaspora in\n" "Europe, in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2011 +#: gnu/packages/tex.scm:2208 msgid "" "This package provides hyphenation patterns for Latin in\n" "T1/EC and UTF-8 encodings, mainly in modern spelling (u when u is needed and v\n" @@ -16931,41 +17095,41 @@ msgid "" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2032 +#: gnu/packages/tex.scm:2229 msgid "" "This package provides hyphenation patterns for Latvian in\n" "L7X and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2045 +#: gnu/packages/tex.scm:2242 msgid "" "This package provides hyphenation patterns for Lithuanian in\n" "L7X and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2060 +#: gnu/packages/tex.scm:2257 #, fuzzy #| msgid "" #| "This package provides a dictionary for the Hunspell spell-checking\n" #| "library." -msgid "This package provides hypenation patterns for Macedonian." +msgid "This package provides hyphenation patterns for Macedonian." msgstr "" "此软件包为 Hunspell 拼写检查库\n" "提供词典。" -#: gnu/packages/tex.scm:2073 +#: gnu/packages/tex.scm:2270 msgid "" "This package provides hyphenation patterns for Mongolian in\n" "T2A, LMC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2088 +#: gnu/packages/tex.scm:2285 msgid "" "This package provides hyphenation patterns for Norwegian\n" "Bokmal and Nynorsk in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2102 +#: gnu/packages/tex.scm:2299 msgid "" "This package provides hyphenation patterns for Occitan in\n" "T1/EC and UTF-8 encodings. They are supposed to be valid for all the Occitan\n" @@ -16974,94 +17138,94 @@ msgid "" "Alps encompassing the southern half of the French pentagon." msgstr "" -#: gnu/packages/tex.scm:2117 +#: gnu/packages/tex.scm:2314 msgid "" "This package provides hyphenation patterns for Panjabi in\n" "T1/EC encoding." msgstr "" -#: gnu/packages/tex.scm:2130 +#: gnu/packages/tex.scm:2327 msgid "" "This package provides hyphenation patterns for Piedmontese\n" "in ASCII encoding. Compliant with 'Gramatica dla lengua piemonteisa' by\n" "Camillo Brero." msgstr "" -#: gnu/packages/tex.scm:2143 +#: gnu/packages/tex.scm:2340 msgid "" "This package provides hyphenation patterns for Polish in QX\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2156 +#: gnu/packages/tex.scm:2353 msgid "" "This package provides hyphenation patterns for Portuguese in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2168 +#: gnu/packages/tex.scm:2365 msgid "" "This package provides hyphenation patterns for Romanian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2181 +#: gnu/packages/tex.scm:2378 msgid "" "This package provides hyphenation patterns for Romansh in\n" "ASCII encodings. They are supposed to comply with the rules indicated by the\n" "Lia Rumantscha (Romansh language society)." msgstr "" -#: gnu/packages/tex.scm:2194 +#: gnu/packages/tex.scm:2391 msgid "" "This package provides hyphenation patterns for Russian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2207 +#: gnu/packages/tex.scm:2404 msgid "" "This package provides hyphenation patterns for Sanskrit and\n" "Prakrit in longdesc transliteration, and in Devanagari, Bengali, Kannada,\n" "Malayalam longdesc and Telugu scripts for Unicode engines." msgstr "" -#: gnu/packages/tex.scm:2224 +#: gnu/packages/tex.scm:2421 msgid "" "This package provides hyphenation patterns for Serbian in\n" "T1/EC, T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2237 +#: gnu/packages/tex.scm:2434 msgid "" "This package provides hyphenation patterns for Slovak in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2249 +#: gnu/packages/tex.scm:2446 msgid "" "This package provides hyphenation patterns for Slovenian in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2265 +#: gnu/packages/tex.scm:2462 msgid "" "The package provides hyphenation patterns for Spanish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2277 +#: gnu/packages/tex.scm:2474 msgid "" "This package provides hyphenation patterns for Swedish in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2289 +#: gnu/packages/tex.scm:2486 msgid "" "This package provides hyphenation patterns for Thai in LTH\n" "and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2302 +#: gnu/packages/tex.scm:2499 msgid "" "The package provides hyphenation patterns for Turkish in\n" "T1/EC and UTF-8 encodings. The patterns for Turkish were first produced for\n" @@ -17071,31 +17235,31 @@ msgid "" "compatibility with 8-bit engines." msgstr "" -#: gnu/packages/tex.scm:2319 +#: gnu/packages/tex.scm:2516 msgid "" "The package provides hyphenation patterns for Turkmen in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2331 +#: gnu/packages/tex.scm:2528 msgid "" "This package provides hyphenation patterns for Ukrainian in\n" "T2A and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2344 +#: gnu/packages/tex.scm:2541 msgid "" "This package provides hyphenation patterns for Upper Sorbian\n" "in T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2356 +#: gnu/packages/tex.scm:2553 msgid "" "This package provides hyphenation patterns for Welsh in\n" "T1/EC and UTF-8 encodings." msgstr "" -#: gnu/packages/tex.scm:2477 +#: gnu/packages/tex.scm:2674 msgid "" "Modern native UTF-8 engines such as XeTeX and LuaTeX need\n" "hyphenation patterns in UTF-8 format, whereas older systems require\n" @@ -17108,7 +17272,7 @@ msgid "" "converters, will completely supplant the older patterns." msgstr "" -#: gnu/packages/tex.scm:2521 +#: gnu/packages/tex.scm:2718 msgid "" "The package provides experimental hyphenation patterns for\n" "the German language, covering both traditional and reformed orthography. The\n" @@ -17116,21 +17280,29 @@ msgid "" "bundle." msgstr "" -#: gnu/packages/tex.scm:2542 +#: gnu/packages/tex.scm:2739 msgid "" "The package provides a range of hyphenation patterns for\n" "Ukrainian, depending on the encoding of the output font including the standard\n" "T2A." msgstr "" -#: gnu/packages/tex.scm:2577 +#: gnu/packages/tex.scm:2774 msgid "" "The package provides a collection of Russian hyphenation\n" "patterns supporting a number of Cyrillic font encodings, including T2,\n" "UCY (Omega Unicode Cyrillic), LCY, LWN (OT2), and koi8-r." msgstr "" -#: gnu/packages/tex.scm:2620 +#: gnu/packages/tex.scm:2792 +msgid "" +"This package deals with input encodings. It provides a wider range of input\n" +"encodings using standard mappings, than does inputenc; it also covers nearly all\n" +"slots. In this way, it serves as more uptodate replacement for package\n" +"inputenc." +msgstr "" + +#: gnu/packages/tex.scm:2853 msgid "" "Kpathsea is a library and utility programs which provide\n" "path searching facilities for TeX file types, including the self-locating\n" @@ -17138,13 +17310,27 @@ msgid "" "mechanism. This package provides supporting files." msgstr "" -#: gnu/packages/tex.scm:2636 +#: gnu/packages/tex.scm:2876 +msgid "" +"The family contains text fonts in roman, sans-serif and monospaced\n" +"shapes, with true small caps and old-style numbers; the package offers full\n" +"support of the textcomp package. The mathematics fonts include all the AMS\n" +"fonts, in both normal and bold weights. Each of the font types is available\n" +"in two main versions: default and light. Each version is available in four\n" +"variants: default; oldstyle numbers; oldstyle numbers with old ligatures such\n" +"as ct and st, and long-tailed capital Q; and veryoldstyle with long s. Other\n" +"variants include small caps as default or large small caps, and for\n" +"mathematics both upright and slanted shapes for Greek letters, as well as\n" +"default and narrow versions of multiple integrals." +msgstr "" + +#: gnu/packages/tex.scm:2898 msgid "" "The package provides configuration files for LaTeX-related\n" "formats." msgstr "" -#: gnu/packages/tex.scm:2867 +#: gnu/packages/tex.scm:3127 msgid "" "This bundle comprises the source of LaTeX itself, together with several\n" "packages which are considered \"part of the kernel\". This bundle, together\n" @@ -17152,7 +17338,7 @@ msgid "" "contain." msgstr "" -#: gnu/packages/tex.scm:2885 +#: gnu/packages/tex.scm:3145 msgid "" "This LaTeX packages provides two hooks for @code{\\end@{document@}}\n" "that are executed after the hook of @code{\\AtEndDocument}:\n" @@ -17162,13 +17348,13 @@ msgid "" "of the @file{.aux} file." msgstr "" -#: gnu/packages/tex.scm:2905 +#: gnu/packages/tex.scm:3165 msgid "" "This package provides hooks for adding code at the beginning of\n" "@file{.aux} files." msgstr "" -#: gnu/packages/tex.scm:2921 +#: gnu/packages/tex.scm:3181 msgid "" "The package adds support for EPS files in the @code{graphicx} package\n" "when running under pdfTeX. If an EPS graphic is detected, the package\n" @@ -17176,7 +17362,7 @@ msgid "" "@command{epstopdf}." msgstr "" -#: gnu/packages/tex.scm:2943 +#: gnu/packages/tex.scm:3203 msgid "" "LaTeX2e's @code{filecontents} and @code{filecontents*} environments\n" "enable a LaTeX source file to generate external files as it runs through\n" @@ -17187,7 +17373,7 @@ msgid "" "@code{filecontents*} anywhere." msgstr "" -#: gnu/packages/tex.scm:2964 +#: gnu/packages/tex.scm:3224 msgid "" "This package provides the original (and now obsolescent) graphics\n" "inclusion macros for use with dvips, still widely used by Plain TeX users (in\n" @@ -17197,7 +17383,7 @@ msgid "" "users, via its Plain TeX version.)" msgstr "" -#: gnu/packages/tex.scm:2986 +#: gnu/packages/tex.scm:3246 msgid "" "This package provides tools for the flexible handling of verbatim text\n" "including: verbatim commands in footnotes; a variety of verbatim environments\n" @@ -17207,7 +17393,7 @@ msgid "" "verbatim source)." msgstr "" -#: gnu/packages/tex.scm:3008 +#: gnu/packages/tex.scm:3268 msgid "" "This bundle is a combined distribution consisting of @file{dvips.def},\n" "@file{pdftex.def}, @file{luatex.def}, @file{xetex.def}, @file{dvipdfmx.def},\n" @@ -17215,13 +17401,19 @@ msgid "" "packages." msgstr "" -#: gnu/packages/tex.scm:3026 +#: gnu/packages/tex.scm:3286 msgid "" "This bundle includes @file{color.cfg} and @file{graphics.cfg} files that\n" "set default \"driver\" options for the color and graphics packages." msgstr "" -#: gnu/packages/tex.scm:3048 +#: gnu/packages/tex.scm:3303 +msgid "" +"The package provides Greek LICR macro definitions and encoding definition files\n" +"for Greek text font encodings for use with fontenc." +msgstr "" + +#: gnu/packages/tex.scm:3325 msgid "" "This is a collection of LaTeX packages for producing color, including\n" "graphics (e.g. PostScript) files, and rotation and scaling of text in LaTeX\n" @@ -17229,13 +17421,13 @@ msgid "" "keyval, and lscape." msgstr "" -#: gnu/packages/tex.scm:3066 +#: gnu/packages/tex.scm:3343 msgid "" "This package provides the code for the @code{color} option that is\n" "used by @code{hyperref} and @code{bookmark}." msgstr "" -#: gnu/packages/tex.scm:3098 +#: gnu/packages/tex.scm:3375 msgid "" "The package starts from the basic facilities of the colorcolor package,\n" "and provides easy driver-independent access to several kinds of color tints,\n" @@ -17246,7 +17438,7 @@ msgid "" "tables." msgstr "" -#: gnu/packages/tex.scm:3171 +#: gnu/packages/tex.scm:3448 msgid "" "The package provides an implementation of a parser for\n" "documents matching the XML 1.0 and XML Namespace Recommendations. Element and\n" @@ -17254,7 +17446,7 @@ msgid "" "XML, using UTF-8 or a suitable 8-bit encoding." msgstr "" -#: gnu/packages/tex.scm:3222 +#: gnu/packages/tex.scm:3499 msgid "" "The @code{hyperref} package is used to handle cross-referencing commands\n" "in LaTeX to produce hypertext links in the document. The package provides\n" @@ -17266,20 +17458,20 @@ msgid "" "@code{nameref} packages, which make use of the facilities of @code{hyperref}." msgstr "" -#: gnu/packages/tex.scm:3262 +#: gnu/packages/tex.scm:3539 msgid "" "The bundle comprises various LaTeX packages, providing among others:\n" "better accessibility support for PDF files; extensible chemists reaction\n" "arrows; record information about document class(es) used; and many more." msgstr "" -#: gnu/packages/tex.scm:3285 +#: gnu/packages/tex.scm:3562 msgid "" "This package provides additional rerun warnings if some auxiliary\n" "files have changed. It is based on MD5 checksum, provided by pdfTeX." msgstr "" -#: gnu/packages/tex.scm:3319 +#: gnu/packages/tex.scm:3596 msgid "" "This package is a collection of (variously) simple tools provided as\n" "part of the LaTeX required tools distribution, comprising the following\n" @@ -17289,7 +17481,7 @@ msgid "" "xr, and xspace." msgstr "" -#: gnu/packages/tex.scm:3338 +#: gnu/packages/tex.scm:3615 msgid "" "The command @code{\\url} is a form of verbatim command that\n" "allows linebreaks at certain characters or combinations of characters, accepts\n" @@ -17301,14 +17493,14 @@ msgid "" "of file names." msgstr "" -#: gnu/packages/tex.scm:3364 +#: gnu/packages/tex.scm:3641 msgid "" "This package provides font maps that were originally part of\n" "the now obsolete teTeX distributions but are still used at the core of the TeX\n" "Live distribution." msgstr "" -#: gnu/packages/tex.scm:3391 +#: gnu/packages/tex.scm:3668 msgid "" "The l3kernel bundle provides an implementation of the LaTeX3\n" "programmers’ interface, as a set of packages that run under LaTeX 2e. The\n" @@ -17317,7 +17509,7 @@ msgid "" "that the LaTeX3 conventions can be used with regular LaTeX 2e packages." msgstr "" -#: gnu/packages/tex.scm:3420 +#: gnu/packages/tex.scm:3697 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" @@ -17326,7 +17518,7 @@ msgid "" "an independent schedule." msgstr "" -#: gnu/packages/tex.scm:3484 +#: gnu/packages/tex.scm:3761 msgid "" "This bundle holds prototype implementations of concepts for a LaTeX\n" "designer interface, to be used with the experimental LaTeX kernel as\n" @@ -17343,14 +17535,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:3511 +#: gnu/packages/tex.scm:3788 msgid "" "This package forms parts of expl3, and contains the code used to\n" "interface with backends (drivers) across the expl3 codebase. The functions\n" "here are defined for the dvips engine only." msgstr "" -#: gnu/packages/tex.scm:3539 +#: gnu/packages/tex.scm:3816 msgid "" "Fontspec is a package for XeLaTeX and LuaLaTeX. It provides an\n" "automatic and unified interface to feature-rich AAT and OpenType fonts through\n" @@ -17358,7 +17550,7 @@ msgid "" "the l3kernel and xparse bundles from the LaTeX 3 development team." msgstr "" -#: gnu/packages/tex.scm:3569 +#: gnu/packages/tex.scm:3846 msgid "" "The original grffile package extended the file name processing of the\n" "@code{graphics} package to support a larger range of file names. The base\n" @@ -17366,13 +17558,13 @@ msgid "" "is a stub that just loads @code{graphicx}." msgstr "" -#: gnu/packages/tex.scm:3610 +#: gnu/packages/tex.scm:3887 msgid "" "This package provides @code{\\StringEncodingConvert} for converting a\n" "string between different encodings. Both LaTeX and plain-TeX are supported." msgstr "" -#: gnu/packages/tex.scm:3653 +#: gnu/packages/tex.scm:3930 msgid "" "The l3build module is designed to support the development of\n" "high-quality LaTeX code by providing: a unit testing system, automated\n" @@ -17381,14 +17573,20 @@ msgid "" "@code{.tex} file which provides the testing environment." msgstr "" -#: gnu/packages/tex.scm:3690 +#: gnu/packages/tex.scm:3953 msgid "" "Lualibs is a collection of Lua modules useful for general programming.\n" "The bundle is based on Lua modules shipped with ConTeXt, and made available in\n" "this bundle for use independent of ConTeXt." msgstr "" -#: gnu/packages/tex.scm:3718 +#: gnu/packages/tex.scm:3972 +msgid "" +"This package provides a Lua module for processing application arguments\n" +"in the same way as BSD/GNU @code{getopt_long(3)} functions do." +msgstr "" + +#: gnu/packages/tex.scm:3999 msgid "" "Luaotfload is an adaptation of the ConTeXt font loading system for the\n" "Plain and LaTeX formats. It allows OpenType fonts to be loaded with font\n" @@ -17397,11 +17595,7 @@ msgid "" "loading fonts by their proper names instead of file names." msgstr "" -#: gnu/packages/tex.scm:3790 -msgid "This package is necessary to use LaTeX with the LuaTeX engine." -msgstr "" - -#: gnu/packages/tex.scm:3809 +#: gnu/packages/tex.scm:4025 msgid "" "This is the principal package in the AMS-LaTeX distribution. It adapts\n" "for use in LaTeX most of the mathematical features found in AMS-TeX; it is\n" @@ -17416,7 +17610,7 @@ msgid "" "definitions." msgstr "" -#: gnu/packages/tex.scm:3843 +#: gnu/packages/tex.scm:4059 msgid "" "This bundle contains three AMS classes: @code{amsartamsart} (for writing\n" "articles for the AMS), @code{amsbookamsbook} (for books) and\n" @@ -17425,7 +17619,7 @@ msgid "" "distribution." msgstr "" -#: gnu/packages/tex.scm:3890 +#: gnu/packages/tex.scm:4106 msgid "" "The package manages culturally-determined typographical (and other)\n" "rules, and hyphenation patterns for a wide range of languages. A document may\n" @@ -17436,7 +17630,7 @@ msgid "" "polyglossia package rather than Babel." msgstr "" -#: gnu/packages/tex.scm:3917 +#: gnu/packages/tex.scm:4133 msgid "" "This package provides the language definition file for support of\n" "English in @code{babel}. Care is taken to select British hyphenation patterns\n" @@ -17444,13 +17638,14 @@ msgid "" "for Canadian and USA text." msgstr "" -#: gnu/packages/tex.scm:3939 +#: gnu/packages/tex.scm:4173 msgid "" -"This package provides support for the French language for the\n" -"babel multilingual system." +"The package, formerly known as frenchb, establishes French conventions\n" +"in a document (or a subset of the conventions, if French is not the main\n" +"language of the document)." msgstr "" -#: gnu/packages/tex.scm:3959 +#: gnu/packages/tex.scm:4196 msgid "" "This package provides the language definition file for support of German\n" "in @code{babel}. It provides all the necessary macros, definitions and\n" @@ -17459,14 +17654,14 @@ msgid "" "Swiss varieties of German." msgstr "" -#: gnu/packages/tex.scm:3986 +#: gnu/packages/tex.scm:4223 msgid "" "This package provides the language definition file for\n" "support of Swedish in @code{babel}. It provides all the necessary macros,\n" "definitions and settings to typeset Swedish documents." msgstr "" -#: gnu/packages/tex.scm:4008 +#: gnu/packages/tex.scm:4245 msgid "" "This bundle of macros files provides macro support (including font\n" "encoding macros) for the use of Cyrillic characters in fonts encoded under the\n" @@ -17474,7 +17669,7 @@ msgid "" "language that is written in a Cyrillic alphabet." msgstr "" -#: gnu/packages/tex.scm:4126 +#: gnu/packages/tex.scm:4363 msgid "" "The PSNFSS collection includes a set of files that provide a complete\n" "working setup of the LaTeX font selection scheme (NFSS2) for use with common\n" @@ -17489,20 +17684,20 @@ msgid "" "part of the LaTeX required set of packages." msgstr "" -#: gnu/packages/tex.scm:4177 gnu/packages/tex.scm:4269 +#: gnu/packages/tex.scm:4414 gnu/packages/tex.scm:4506 msgid "" "This is a very limited subset of the TeX Live distribution.\n" "It includes little more than the required set of LaTeX packages." msgstr "" -#: gnu/packages/tex.scm:4248 +#: gnu/packages/tex.scm:4485 msgid "" "This package contains the fonts map configuration file\n" "generated for the base TeX Live packages as well as, optionally, user-provided\n" "ones." msgstr "" -#: gnu/packages/tex.scm:4288 +#: gnu/packages/tex.scm:4525 msgid "" "These fonts are considered the \"ultimate answer\" to IPA\n" "typesetting. The encoding of these 8-bit fonts has been registered as LaTeX\n" @@ -17511,7 +17706,7 @@ msgid "" "TS3 fonts." msgstr "" -#: gnu/packages/tex.scm:4311 +#: gnu/packages/tex.scm:4548 msgid "" "Amsrefs is a LaTeX package for bibliographies that provides an archival\n" "data format similar to the format of BibTeX database files, but adapted to\n" @@ -17519,7 +17714,7 @@ msgid "" "conjunction with BibTeX or as a replacement for BibTeX." msgstr "" -#: gnu/packages/tex.scm:4340 +#: gnu/packages/tex.scm:4577 msgid "" "This package aims to provide a one-stop solution to requirements for\n" "footnotes. It offers: Multiple footnote apparatus superior to that of\n" @@ -17533,7 +17728,7 @@ msgid "" "@code{suffix} packages." msgstr "" -#: gnu/packages/tex.scm:4368 +#: gnu/packages/tex.scm:4605 msgid "" "The package provides the commands @code{\\blindtext} and\n" "@code{\\Blindtext} for creating \"blind\" text useful in testing new classes\n" @@ -17544,7 +17739,7 @@ msgid "" "ipsum\" text, see the @code{lipsum} package)." msgstr "" -#: gnu/packages/tex.scm:4407 +#: gnu/packages/tex.scm:4644 msgid "" "This package implements a document layout for writing letters according\n" "to the rules of DIN (Deutsches Institut für Normung, German standardisation\n" @@ -17556,7 +17751,7 @@ msgid "" "package." msgstr "" -#: gnu/packages/tex.scm:4433 +#: gnu/packages/tex.scm:4670 msgid "" "This package provides a means to add a textual, light grey watermark on\n" "every page or on the first page of a document. Typical usage may consist in\n" @@ -17566,7 +17761,7 @@ msgid "" "on everypage." msgstr "" -#: gnu/packages/tex.scm:4457 +#: gnu/packages/tex.scm:4694 msgid "" "This package provides the @code{\\collect@@body} command (as in\n" "@code{amsmath}), as well as a @code{\\long} version @code{\\Collect@@Body},\n" @@ -17574,7 +17769,7 @@ msgid "" "define a new author interface to creating new environments." msgstr "" -#: gnu/packages/tex.scm:4479 +#: gnu/packages/tex.scm:4716 msgid "" "LaTeX users sometimes need to ensure that two or more blocks of text\n" "occupy the same amount of horizontal space on the page. To that end, the\n" @@ -17588,7 +17783,7 @@ msgid "" "also provided." msgstr "" -#: gnu/packages/tex.scm:4504 +#: gnu/packages/tex.scm:4741 msgid "" "This package gives the user complete control of how the entries of\n" "the table of contents should be constituted from the name, number, and page\n" @@ -17608,7 +17803,7 @@ msgid "" "table of contents." msgstr "" -#: gnu/packages/tex.scm:4546 +#: gnu/packages/tex.scm:4783 msgid "" "The package provides additional features for the LaTeX\n" "@code{description} environment, including adjustable left margin. The package\n" @@ -17617,7 +17812,7 @@ msgid "" "@code{enumerate} lists, and numbered lists remain in sequence)." msgstr "" -#: gnu/packages/tex.scm:4566 +#: gnu/packages/tex.scm:4803 msgid "" "This package provides macros to read and compare the modification dates\n" "of files. The files may be @code{.tex} files, images or other files (as long\n" @@ -17629,14 +17824,14 @@ msgid "" "but non-expandable ones." msgstr "" -#: gnu/packages/tex.scm:4589 +#: gnu/packages/tex.scm:4826 msgid "" "The @code{hanging} package facilitates the typesetting of hanging\n" "paragraphs. The package also enables typesetting with hanging punctuation,\n" "by making punctuation characters active." msgstr "" -#: gnu/packages/tex.scm:4612 +#: gnu/packages/tex.scm:4849 msgid "" "This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX support for\n" "the Fira Sans family of fonts designed by Erik Spiekermann and Ralph du\n" @@ -17644,7 +17839,7 @@ msgid "" "corresponding italics: light, regular, medium, bold, ..." msgstr "" -#: gnu/packages/tex.scm:4635 +#: gnu/packages/tex.scm:4872 msgid "" "This package uses the (La)TeX extension @code{-shell-escape} to\n" "establish whether the document is being processed on a Windows or on a\n" @@ -17655,7 +17850,7 @@ msgid "" "classes of systems." msgstr "" -#: gnu/packages/tex.scm:4660 +#: gnu/packages/tex.scm:4897 msgid "" "This bundle provides a package that implements both author-year and\n" "numbered references, as well as much detailed of support for other\n" @@ -17665,20 +17860,20 @@ msgid "" "designed from the start to be compatible with @code{natbib}." msgstr "" -#: gnu/packages/tex.scm:4679 +#: gnu/packages/tex.scm:4916 msgid "" "This package provides a friendly interface for defining the meaning of\n" "Unicode characters. The document should be processed by (pdf)LaTeX with the\n" "Unicode option of @code{inputenc} or @code{inputenx}, or by XeLaTeX/LuaLaTeX." msgstr "" -#: gnu/packages/tex.scm:4699 +#: gnu/packages/tex.scm:4936 msgid "" "This package makes a number of utility functions from pdfTeX\n" "available for luaTeX by reimplementing them using Lua." msgstr "" -#: gnu/packages/tex.scm:4719 +#: gnu/packages/tex.scm:4956 msgid "" "This package allows LaTeX constructions (equations, picture\n" "environments, etc.) to be precisely superimposed over Encapsulated PostScript\n" @@ -17689,7 +17884,7 @@ msgid "" "rotated." msgstr "" -#: gnu/packages/tex.scm:4751 +#: gnu/packages/tex.scm:4988 msgid "" "This is a package for processing PostScript graphics with @code{psfrag}\n" "labels within pdfLaTeX documents. Every graphic is compiled individually,\n" @@ -17697,7 +17892,7 @@ msgid "" "re-processing." msgstr "" -#: gnu/packages/tex.scm:4771 +#: gnu/packages/tex.scm:5008 msgid "" "This package provides the @code{\\setcounterref} and\n" "@code{\\addtocounterref} commands which use the section (or other) number\n" @@ -17706,7 +17901,7 @@ msgid "" "corresponding thing with the page reference of the label." msgstr "" -#: gnu/packages/tex.scm:4791 +#: gnu/packages/tex.scm:5028 msgid "" "This package provides a class that produces overhead\n" "slides (transparencies), with many facilities. Seminar is not nowadays\n" @@ -17715,14 +17910,14 @@ msgid "" "21st-century presentation styles." msgstr "" -#: gnu/packages/tex.scm:4812 +#: gnu/packages/tex.scm:5049 msgid "" "The package provides a versatile way to stack objects vertically in a\n" "variety of customizable ways. A number of useful macros are provided, all\n" "of which make use of the @code{stackengine} core." msgstr "" -#: gnu/packages/tex.scm:4828 +#: gnu/packages/tex.scm:5065 msgid "" "This package provides control over the typography of the\n" "@dfn{Table of Contents}, @dfn{List of Figures} and @dfn{List of Tables},\n" @@ -17730,7 +17925,7 @@ msgid "" "be changed." msgstr "" -#: gnu/packages/tex.scm:4862 +#: gnu/packages/tex.scm:5099 msgid "" "This very short package allows you to expandably remove spaces around a\n" "token list (commands are provided to remove spaces before, spaces after, or\n" @@ -17738,13 +17933,32 @@ msgid "" "space-stripped macros." msgstr "" -#: gnu/packages/tex.scm:4897 +#: gnu/packages/tex.scm:5115 +#, fuzzy +#| msgid "" +#| "This package provides a dictionary for the Hunspell spell-checking\n" +#| "library." +msgid "This package provides a math interface to the Rsfs fonts." +msgstr "" +"此软件包为 Hunspell 拼写检查库\n" +"提供词典。" + +#: gnu/packages/tex.scm:5152 msgid "" "This package defines a command @code{\\captionof} for putting a caption\n" "to something that's not a float." msgstr "" -#: gnu/packages/tex.scm:4913 +#: gnu/packages/tex.scm:5170 +msgid "" +"Many of David Carlisle's more substantial packages stand on their own,\n" +"or as part of the LaTeX latex-tools set; this set contains: making dotless\n" +"@emph{j} characters for fonts that don't have them; a method for combining the\n" +"capabilities of longtable and tabularx; an environment for including plain TeX\n" +"in LaTeX documents; a jiffy to create slashed characters for physicists." +msgstr "" + +#: gnu/packages/tex.scm:5189 msgid "" "You can hyperlink DOI numbers to doi.org. However, some publishers have\n" "elected to use nasty characters in their DOI numbering scheme (@code{<},\n" @@ -17754,7 +17968,7 @@ msgid "" "hyperlink to the target of the DOI." msgstr "" -#: gnu/packages/tex.scm:4936 +#: gnu/packages/tex.scm:5212 msgid "" "This package is a toolbox of programming facilities geared primarily\n" "towards LaTeX class and package authors. It provides LaTeX frontends to some\n" @@ -17765,7 +17979,7 @@ msgid "" "of the LaTeX kernel." msgstr "" -#: gnu/packages/tex.scm:4976 +#: gnu/packages/tex.scm:5252 msgid "" "This package provides seven predefined chapter heading styles. Each\n" "style can be modified using a set of simple commands. Optionally one can\n" @@ -17773,7 +17987,7 @@ msgid "" "headings." msgstr "" -#: gnu/packages/tex.scm:5011 +#: gnu/packages/tex.scm:5287 msgid "" "The package creates three environments: @code{framed}, which puts an\n" "ordinary frame box around the region, @code{shaded}, which shades the region,\n" @@ -17784,7 +17998,7 @@ msgid "" "@code{\\MakeFramed} to make your own framed-style environments." msgstr "" -#: gnu/packages/tex.scm:5045 +#: gnu/packages/tex.scm:5321 msgid "" "This package is designed for formatting formless letters in German; it\n" "can also be used for English (by those who can read the documentation). There\n" @@ -17792,13 +18006,13 @@ msgid "" "\"old\" and a \"new\" version of g-brief." msgstr "" -#: gnu/packages/tex.scm:5067 +#: gnu/packages/tex.scm:5343 msgid "" "The package deals with connections in two-dimensional style, optionally\n" "in colour." msgstr "" -#: gnu/packages/tex.scm:5087 +#: gnu/packages/tex.scm:5363 msgid "" "The package allows citations in the German style, which is considered by\n" "many to be particularly reader-friendly. The citation provides a small amount\n" @@ -17808,7 +18022,7 @@ msgid "" "BibLaTeX, and is considered experimental." msgstr "" -#: gnu/packages/tex.scm:5113 +#: gnu/packages/tex.scm:5389 msgid "" "This package provides an easy and flexible user interface to customize\n" "page layout, implementing auto-centering and auto-balancing mechanisms so that\n" @@ -17819,7 +18033,7 @@ msgid "" "ability to communicate the paper size it's set up to the output." msgstr "" -#: gnu/packages/tex.scm:5138 +#: gnu/packages/tex.scm:5414 msgid "" "This collection of tools includes: @code{atsupport} for short commands\n" "starting with @code{@@}, macros to sanitize the OT1 encoding of the\n" @@ -17829,13 +18043,13 @@ msgid "" "array environments; verbatim handling; and syntax diagrams." msgstr "" -#: gnu/packages/tex.scm:5162 +#: gnu/packages/tex.scm:5438 msgid "" "This package provides a complete Babel replacement for users of LuaLaTeX\n" "and XeLaTeX; it relies on the @code{fontspec} package, version 2.0 at least." msgstr "" -#: gnu/packages/tex.scm:5182 +#: gnu/packages/tex.scm:5458 msgid "" "This package was a predecessor of @code{longtable}; the newer\n" "package (designed on quite different principles) is easier to use and more\n" @@ -17843,7 +18057,7 @@ msgid "" "situations where longtable has problems." msgstr "" -#: gnu/packages/tex.scm:5217 +#: gnu/packages/tex.scm:5493 msgid "" "Texinfo is the preferred format for documentation in the GNU project;\n" "the format may be used to produce online or printed output from a single\n" @@ -17852,7 +18066,23 @@ msgid "" "hypertext linkages in some cases)." msgstr "" -#: gnu/packages/tex.scm:5240 +#: gnu/packages/tex.scm:5513 +msgid "" +"The textcase package offers commands @code{\\MakeTextUppercase} and\n" +"@code{\\MakeTextLowercase} are similar to the standard @code{\\MakeUppercase}\n" +"and @code{\\MakeLowercase}, but they do not change the case of any sections of\n" +"mathematics, or the arguments of @code{\\cite}, @code{\\label} and\n" +"@code{\\ref} commands within the argument. A further command\n" +"@code{\\NoCaseChange} does nothing but suppress case change within its\n" +"argument, so to force uppercase of a section including an environment, one\n" +"might say:\n" +"\n" +"@example\n" +"\\MakeTextUppercase{...\\NoCaseChange{\\begin{foo}} ...\\NoCaseChange{\\end{foo}}...}\n" +"@end example\n" +msgstr "" + +#: gnu/packages/tex.scm:5543 msgid "" "Typewriter-style fonts are best for program listings, but Computer\n" "Modern Typewriter prints @code{`} and @code{'} as bent opening and closing\n" @@ -17866,14 +18096,14 @@ msgid "" "does not affect @code{\\tt}, @code{\\texttt}, etc." msgstr "" -#: gnu/packages/tex.scm:5281 +#: gnu/packages/tex.scm:5584 msgid "" "This is a simple package to set up document margins. This package is\n" "considered obsolete; alternatives are the @code{typearea} package from the\n" "@code{koma-script} bundle, or the @code{geometry} package." msgstr "" -#: gnu/packages/tex.scm:5302 +#: gnu/packages/tex.scm:5605 msgid "" "The appendix package provides various ways of formatting the titles of\n" "appendices. Also (sub)appendices environments are provided that can be used,\n" @@ -17882,14 +18112,14 @@ msgid "" "command." msgstr "" -#: gnu/packages/tex.scm:5321 +#: gnu/packages/tex.scm:5624 msgid "" "This package implements a new bookmark (outline) organization for the\n" "@code{hyperref} package. Bookmark properties such as style and color. Other\n" "action types are available (URI, GoToR, Named)." msgstr "" -#: gnu/packages/tex.scm:5342 +#: gnu/packages/tex.scm:5645 msgid "" "Identify areas of text to be marked with changebars with the\n" "@code{\\cbstart} and @code{\\cbend} commands; the bars may be coloured. The\n" @@ -17898,19 +18128,19 @@ msgid "" "drivers, and VTeX and pdfTeX." msgstr "" -#: gnu/packages/tex.scm:5379 +#: gnu/packages/tex.scm:5682 msgid "" "This package embeds CMap tables into PDF files to make search and\n" "copy-and-paste functions work properly." msgstr "" -#: gnu/packages/tex.scm:5399 +#: gnu/packages/tex.scm:5702 msgid "" "This package allows rows, columns, and even individual cells in LaTeX\n" "tables to be coloured." msgstr "" -#: gnu/packages/tex.scm:5432 +#: gnu/packages/tex.scm:5735 msgid "" "This package provides variants of @code{\\fbox}: @code{\\shadowbox},\n" "@code{\\doublebox}, @code{\\ovalbox}, @code{\\Ovalbox}, with helpful tools for\n" @@ -17918,14 +18148,14 @@ msgid "" "floats, center, flushleft, and flushright, lists, and pages." msgstr "" -#: gnu/packages/tex.scm:5467 +#: gnu/packages/tex.scm:5770 msgid "" "The package provides extensive facilities, both for constructing headers\n" "and footers, and for controlling their use (for example, at times when LaTeX\n" "would automatically change the heading style in use)." msgstr "" -#: gnu/packages/tex.scm:5488 +#: gnu/packages/tex.scm:5791 msgid "" "This package improves the interface for defining floating objects such\n" "as figures and tables. It introduces the boxed float, the ruled float and the\n" @@ -17935,7 +18165,7 @@ msgid "" "with @code{\\floatplacement{figure}{H}}." msgstr "" -#: gnu/packages/tex.scm:5512 +#: gnu/packages/tex.scm:5815 msgid "" "This is a collection of ways to change the typesetting of footnotes.\n" "The package provides means of changing the layout of the footnotes themselves,\n" @@ -17945,7 +18175,7 @@ msgid "" "footnotes with symbols rather than numbers." msgstr "" -#: gnu/packages/tex.scm:5532 +#: gnu/packages/tex.scm:5835 msgid "" "TeX’s @code{\\let} assignment does not work for LaTeX macros with\n" "optional arguments, or for macros that are defined as robust macros by\n" @@ -17953,7 +18183,7 @@ msgid "" "that also takes care of the involved internal macros." msgstr "" -#: gnu/packages/tex.scm:5556 +#: gnu/packages/tex.scm:5859 msgid "" "The package enables the user to typeset programs (programming code)\n" "within LaTeX; the source code is read directly by TeX---no front-end processor\n" @@ -17961,7 +18191,7 @@ msgid "" "styles. Support for @code{hyperref} is provided." msgstr "" -#: gnu/packages/tex.scm:5591 +#: gnu/packages/tex.scm:5894 msgid "" "This package provides miscellaneous macros by Joerg Knappen, including:\n" "represent counters in greek; Maxwell's non-commutative division;\n" @@ -17973,13 +18203,13 @@ msgid "" "in SGML; use maths minus in text as appropriate; simple Young tableaux." msgstr "" -#: gnu/packages/tex.scm:5615 +#: gnu/packages/tex.scm:5918 msgid "" "This package provides facilities for using key-value format in\n" "package options." msgstr "" -#: gnu/packages/tex.scm:5684 +#: gnu/packages/tex.scm:5987 msgid "" "The EC fonts are European Computer Modern Fonts, supporting the complete\n" "LaTeX T1 encoding defined at the 1990 TUG conference hold at Cork/Ireland.\n" @@ -17996,7 +18226,7 @@ msgid "" "differs from the EC in a number of particulars." msgstr "" -#: gnu/packages/tex.scm:5717 +#: gnu/packages/tex.scm:6020 msgid "" "This package provides a set of virtual fonts which emulates T1 coded\n" "fonts using the standard CM fonts. The package name, AE fonts, supposedly\n" @@ -18006,7 +18236,7 @@ msgid "" "via the CM-super, Latin Modern and (in a restricted way) CM-LGC font sets." msgstr "" -#: gnu/packages/tex.scm:5742 +#: gnu/packages/tex.scm:6045 msgid "" "Inconsolata is a monospaced font designed by Raph Levien. This package\n" "contains the font (in both Adobe Type 1 and OpenType formats) in regular and\n" @@ -18015,25 +18245,25 @@ msgid "" "TeX, and LaTeX font definition and other relevant files." msgstr "" -#: gnu/packages/tex.scm:5771 +#: gnu/packages/tex.scm:6074 msgid "" "This package provides a drop-in replacements for the Times font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5799 +#: gnu/packages/tex.scm:6102 msgid "" "This package provides a drop-in replacements for the Palatino font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5824 +#: gnu/packages/tex.scm:6127 msgid "" "This package provides a drop-in replacements for the Zapfding font from\n" "Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:5896 +#: gnu/packages/tex.scm:6199 msgid "" "The fonts provide uppercase formal script letters for use as symbols in\n" "scientific and mathematical typesetting (in contrast to the informal script\n" @@ -18043,14 +18273,14 @@ msgid "" "one of the packages @code{calrsfs} and @code{mathrsfs}." msgstr "" -#: gnu/packages/tex.scm:5920 +#: gnu/packages/tex.scm:6223 msgid "" "The package adds one or more user commands to LaTeX's @code{shipout}\n" "routine, which may be used to place the output at fixed positions. The\n" "@code{grid} option may be used to find the correct places." msgstr "" -#: gnu/packages/tex.scm:5954 +#: gnu/packages/tex.scm:6257 msgid "" "Extensions to @code{epic} and the LaTeX picture drawing environment,\n" "include the drawing of lines at any slope, the drawing of circles in any\n" @@ -18060,7 +18290,7 @@ msgid "" "@code{\\special} commands." msgstr "" -#: gnu/packages/tex.scm:5991 +#: gnu/packages/tex.scm:6276 msgid "" "This package is intended to ease customizing the three basic list\n" "environments: @code{enumerate}, @code{itemize} and @code{description}. It\n" @@ -18069,14 +18299,14 @@ msgid "" "@code{\\begin{itemize}[itemsep=1ex,leftmargin=1cm]}." msgstr "" -#: gnu/packages/tex.scm:6014 +#: gnu/packages/tex.scm:6301 msgid "" "The package provides tools for creating tabular cells spanning multiple\n" "rows. It has a lot of flexibility, including an option for specifying an\n" "entry at the \"natural\" width of its text." msgstr "" -#: gnu/packages/tex.scm:6048 +#: gnu/packages/tex.scm:6335 msgid "" "The @code{overpic} environment is a cross between the LaTeX\n" "@code{picture} environment and the @code{\\includegraphics} command of\n" @@ -18085,14 +18315,14 @@ msgid "" "positions; a grid for orientation is available." msgstr "" -#: gnu/packages/tex.scm:6084 +#: gnu/packages/tex.scm:6371 msgid "" "Simply changing @code{\\parskip} and @code{\\parindent} leaves a layout\n" "that is untidy; this package (though it is no substitute for a properly\n" "designed class) helps alleviate this untidiness." msgstr "" -#: gnu/packages/tex.scm:6105 +#: gnu/packages/tex.scm:6392 msgid "" "This package simplifies the inclusion of external multi-page PDF\n" "documents in LaTeX documents. Pages may be freely selected and it is possible\n" @@ -18102,7 +18332,7 @@ msgid "" "use this package to insert PostScript files, in addition to PDF files." msgstr "" -#: gnu/packages/tex.scm:6146 +#: gnu/packages/tex.scm:6433 msgid "" "The fonts were originally distributed as Metafont sources only, but\n" "Adobe Type 1 versions are also now available. Macro support is provided for\n" @@ -18111,7 +18341,7 @@ msgid "" "the whole font." msgstr "" -#: gnu/packages/tex.scm:6171 +#: gnu/packages/tex.scm:6458 msgid "" "This (deprecated) package provides support for the manipulation and\n" "reference of small or \"sub\" figures and tables within a single figure or\n" @@ -18124,7 +18354,7 @@ msgid "" "the more recent @code{subcaption} package more satisfactory." msgstr "" -#: gnu/packages/tex.scm:6198 +#: gnu/packages/tex.scm:6485 msgid "" "The package defines a @code{tabular*}-like environment, @code{tabulary},\n" "taking a \"total width\" argument as well as the column specifications. The\n" @@ -18135,7 +18365,7 @@ msgid "" "according to the natural width of the widest cell in the column." msgstr "" -#: gnu/packages/tex.scm:6236 +#: gnu/packages/tex.scm:6523 msgid "" "This package facilitates tables with titles (captions) and notes. The\n" "title and notes are given a width equal to the body of the table (a\n" @@ -18144,7 +18374,7 @@ msgid "" "environment." msgstr "" -#: gnu/packages/tex.scm:6263 +#: gnu/packages/tex.scm:6550 msgid "" "Txfonts supplies virtual text roman fonts using Adobe Times (or URW\n" "NimbusRomNo9L) with some modified and additional text symbols in the OT1, T1,\n" @@ -18160,7 +18390,7 @@ msgid "" "TeX metrics (VF and TFM files) and macros for use with LaTeX." msgstr "" -#: gnu/packages/tex.scm:6312 +#: gnu/packages/tex.scm:6599 msgid "" "Iwona is a two-element sans-serif typeface. It was created\n" "as an alternative version of the Kurier typeface, which was designed in 1975\n" @@ -18171,7 +18401,7 @@ msgid "" "of ink traps which typify the Kurier font." msgstr "" -#: gnu/packages/tex.scm:6335 +#: gnu/packages/tex.scm:6622 msgid "" "This package contains a collection of macros by Jörg Knappen:\n" "@table @code\n" @@ -18207,7 +18437,7 @@ msgid "" "@end table" msgstr "" -#: gnu/packages/tex.scm:6442 +#: gnu/packages/tex.scm:6729 msgid "" "JadeTeX is a companion package to the OpenJade DSSSL\n" "processor. OpenJade applies a DSSSL stylesheet to an SGML or XML document.\n" @@ -18218,7 +18448,7 @@ msgid "" "command)." msgstr "" -#: gnu/packages/tex.scm:6472 +#: gnu/packages/tex.scm:6759 msgid "" "The package provides the Libertine and Biolinum fonts in both Type 1 and\n" "OTF styles, together with support macros for their use. Monospaced and\n" @@ -18228,7 +18458,7 @@ msgid "" "@code{libertine-legacy} packages." msgstr "" -#: gnu/packages/tex.scm:6504 +#: gnu/packages/tex.scm:6791 msgid "" "The package contains LaTeX support for the DejaVu fonts, which are\n" "derived from the Vera fonts but contain more characters and styles. The fonts\n" @@ -18237,7 +18467,7 @@ msgid "" "LGR. The package doesn't (currently) support mathematics." msgstr "" -#: gnu/packages/tex.scm:6540 +#: gnu/packages/tex.scm:6827 msgid "" "This package provides an interface to sectioning commands for selection\n" "from various title styles, e.g. for marginal titles and to change the font of\n" @@ -18246,7 +18476,7 @@ msgid "" "floats in a page. You may assign headers/footers to individual floats, too." msgstr "" -#: gnu/packages/tex.scm:6563 +#: gnu/packages/tex.scm:6850 msgid "" "LaTeX, by default, restricts the sizes at which you can use its default\n" "computer modern fonts, to a fixed set of discrete sizes (effectively, a set\n" @@ -18261,7 +18491,7 @@ msgid "" "@code{ec} fonts." msgstr "" -#: gnu/packages/tex.scm:6617 +#: gnu/packages/tex.scm:6904 msgid "" "The LH fonts address the problem of the wide variety of alphabets that\n" "are written with Cyrillic-style characters. The fonts are the original basis\n" @@ -18274,7 +18504,7 @@ msgid "" "OT2 encoded fonts, CM bright shaped fonts and Concrete shaped fonts." msgstr "" -#: gnu/packages/tex.scm:6647 +#: gnu/packages/tex.scm:6934 msgid "" "The Martin Vogel’s Symbols fonts (marvosym) contains the\n" "Euro currency symbol as defined by the European commission, along with symbols\n" @@ -18284,34 +18514,41 @@ msgid "" "the derived Type 1 font, together with support files for TeX (LaTeX)." msgstr "" -#: gnu/packages/tex.scm:6685 +#: gnu/packages/tex.scm:6972 msgid "" "MetaPost uses a language based on that of Metafont to produce precise\n" "technical illustrations. Its output is scalable PostScript or SVG, rather\n" "than the bitmaps Metafont creates." msgstr "" -#: gnu/packages/tex.scm:6706 +#: gnu/packages/tex.scm:6993 msgid "" "This package provides a class for typesetting publications of the\n" "Association for Computing Machinery (ACM)." msgstr "" -#: gnu/packages/tex.scm:6739 +#: gnu/packages/tex.scm:7026 msgid "" "The @code{varwidth} environment is superficially similar to\n" "@code{minipage}, but the specified width is just a maximum value — the box may\n" "get a narrower “natural” width." msgstr "" -#: gnu/packages/tex.scm:6757 +#: gnu/packages/tex.scm:7041 +msgid "" +"The varwidth environment is superficially similar to minipage, but the\n" +"specified width is just a maximum value --- the box may get a narrower natural\n" +"width." +msgstr "" + +#: gnu/packages/tex.scm:7059 msgid "" "This package provides the @code{wasy} (Waldi symbol) fonts,\n" "in the Metafont and Adobe Type 1 formats. Support under LaTeX is provided by\n" "the @code{wasysym} package." msgstr "" -#: gnu/packages/tex.scm:6778 +#: gnu/packages/tex.scm:7080 msgid "" "The @code{wasy} (Waldi Symbol) font by Roland Waldi provides many glyphs like\n" "male and female symbols and astronomical symbols, as well as the complete\n" @@ -18319,14 +18556,14 @@ msgid "" "implements an easy to use interface for these symbols." msgstr "" -#: gnu/packages/tex.scm:6815 +#: gnu/packages/tex.scm:7117 msgid "" "This package allows figures or tables to have text wrapped around them.\n" "It does not work in combination with list environments, but can be used in a\n" "@code{parbox} or @code{minipage}, and in two-column format." msgstr "" -#: gnu/packages/tex.scm:6849 +#: gnu/packages/tex.scm:7151 msgid "" "The bundle provides the @code{ucs} package, and @code{utf8x.def},\n" "together with a large number of support files. The @code{utf8x.def}\n" @@ -18339,7 +18576,7 @@ msgid "" "package of that name now exists." msgstr "" -#: gnu/packages/tex.scm:6883 +#: gnu/packages/tex.scm:7185 msgid "" "The main purpose of the preview package is the extraction of selected\n" "elements from a LaTeX source, like formulas or graphics, into separate\n" @@ -18350,7 +18587,7 @@ msgid "" "files." msgstr "" -#: gnu/packages/tex.scm:6908 +#: gnu/packages/tex.scm:7210 msgid "" "This package ensures that all acronyms used in the text are spelled out\n" "in full at least once. It also provides an environment to build a list of\n" @@ -18359,13 +18596,13 @@ msgid "" "e-TeX." msgstr "" -#: gnu/packages/tex.scm:6945 +#: gnu/packages/tex.scm:7247 msgid "" "This package provides an extension of TeX which can be configured to\n" "directly generate PDF documents instead of DVI." msgstr "" -#: gnu/packages/tex.scm:7025 +#: gnu/packages/tex.scm:7327 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18375,7 +18612,7 @@ msgid "" "This package contains the complete tree of texmf-dist data." msgstr "" -#: gnu/packages/tex.scm:7088 +#: gnu/packages/tex.scm:7390 msgid "" "TeX Live provides a comprehensive TeX document production system.\n" "It includes all the major TeX-related programs, macro packages, and fonts\n" @@ -18385,7 +18622,7 @@ msgid "" "This package contains the complete TeX Live distribution." msgstr "" -#: gnu/packages/tex.scm:7130 +#: gnu/packages/tex.scm:7432 msgid "" "@code{Text::BibTeX} is a Perl library for reading, parsing,\n" "and processing BibTeX files. @code{Text::BibTeX} gives you access to the data\n" @@ -18394,13 +18631,13 @@ msgid "" "values (strings, macros, or numbers) pasted together." msgstr "" -#: gnu/packages/tex.scm:7216 +#: gnu/packages/tex.scm:7518 msgid "" "Biber is a BibTeX replacement for users of biblatex. Among\n" "other things it comes with full Unicode support." msgstr "" -#: gnu/packages/tex.scm:7250 +#: gnu/packages/tex.scm:7552 msgid "" "Rubber is a program whose purpose is to handle all tasks related to the\n" "compilation of LaTeX documents. This includes compiling the document itself,\n" @@ -18410,20 +18647,20 @@ msgid "" "PDF documents." msgstr "" -#: gnu/packages/tex.scm:7289 +#: gnu/packages/tex.scm:7591 msgid "" "Texmaker is a program that integrates many tools needed to\n" "develop documents with LaTeX, in a single application." msgstr "" -#: gnu/packages/tex.scm:7330 +#: gnu/packages/tex.scm:7632 msgid "" "@i{TeX for the Impatient} is a ~350 page book on TeX,\n" "plain TeX, and Eplain, originally written by Paul Abrahams, Kathryn Hargreaves,\n" "and Karl Berry." msgstr "" -#: gnu/packages/tex.scm:7394 +#: gnu/packages/tex.scm:7696 msgid "" "LyX is a document preparation system. It excels at letting\n" "you create complex technical and scientific articles with mathematics,\n" @@ -18432,7 +18669,7 @@ msgid "" "required: automatic sectioning and pagination, spell checking and so forth." msgstr "" -#: gnu/packages/tex.scm:7430 +#: gnu/packages/tex.scm:7732 msgid "" "The package provides an interface to embed interactive Flash (SWF) and 3D\n" "objects (Adobe U3D & PRC), as well as video and sound files or streams in the\n" @@ -18445,7 +18682,7 @@ msgid "" "specification. It replaces the now obsolete @code{movie15} package." msgstr "" -#: gnu/packages/tex.scm:7470 +#: gnu/packages/tex.scm:7772 msgid "" "This package provides OCG (Optional Content Groups) support within a PDF\n" "document.\n" @@ -18463,7 +18700,7 @@ msgid "" "It also ensures compatibility with the @code{media9} and @code{animate} packages." msgstr "" -#: gnu/packages/tex.scm:7504 +#: gnu/packages/tex.scm:7806 msgid "" "A bundle of LATEX packages by Martin Schröder; the collection comprises:\n" "\n" @@ -18477,7 +18714,7 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/tex.scm:7532 +#: gnu/packages/tex.scm:7852 msgid "" "The package numprint prints numbers with a separator every three\n" "digits and converts numbers given as 12345.6e789 to 12\\,345,6\\cdot\n" @@ -18498,14 +18735,14 @@ msgid "" "and after the formatted number." msgstr "" -#: gnu/packages/tex.scm:7571 +#: gnu/packages/tex.scm:7893 msgid "" "Provides commands to disable pagebreaking within a given vertical\n" "space. If there is not enough space between the command and the bottom of the\n" "page, a new page will be started." msgstr "" -#: gnu/packages/tex.scm:7597 +#: gnu/packages/tex.scm:7919 msgid "" "The package provides commands to change the page layout in the middle of\n" "a document, and to robustly check for typesetting on odd or even pages.\n" @@ -18513,7 +18750,7 @@ msgid "" "of code from the @code{memoir} class, whose user interface it shares." msgstr "" -#: gnu/packages/tex.scm:7633 +#: gnu/packages/tex.scm:7955 msgid "" "The package is used to change the format of @code{\\today}’s date,\n" "including the weekday, e.g., \"Saturday, 26 June 2008\", the 'UK format', which\n" @@ -18521,7 +18758,7 @@ msgid "" "@code{\\maketitle} of the article class, \"June 26, 2008\", the 'US format'." msgstr "" -#: gnu/packages/tex.scm:7669 +#: gnu/packages/tex.scm:7971 msgid "" "The package provides an @code{\\ul} (underline) command which will break\n" "over line ends; this technique may be used to replace @code{\\em} (both in that\n" @@ -18530,7 +18767,7 @@ msgid "" "striking out (line through words) and crossing out (/// over words)." msgstr "" -#: gnu/packages/tex.scm:7725 +#: gnu/packages/tex.scm:8029 msgid "" "PGF is a macro package for creating graphics. It is platform- and\n" "format-independent and works together with the most important TeX backend\n" @@ -18542,7 +18779,7 @@ msgid "" "produce either PostScript or PDF output." msgstr "" -#: gnu/packages/tex.scm:7771 +#: gnu/packages/tex.scm:8075 msgid "" "The KOMA-Script bundle provides replacements for the article, report, and\n" "book classes with emphasis on typography and versatility. There is also a\n" @@ -18567,7 +18804,7 @@ msgid "" "typearea (which are the main parts of the bundle)." msgstr "" -#: gnu/packages/tex.scm:7806 +#: gnu/packages/tex.scm:8110 msgid "" "This package is a modern reimplementation of package @code{everyshi},\n" "providing various commands to be executed before a @code{\\shipout} command.\n" @@ -18575,20 +18812,20 @@ msgid "" "be used either with LaTeX or with plain TeX." msgstr "" -#: gnu/packages/tex.scm:7826 +#: gnu/packages/tex.scm:8130 msgid "" "This package provides expandable arithmetic operations with big\n" "integers that can exceed TeX's number limits." msgstr "" -#: gnu/packages/tex.scm:7845 +#: gnu/packages/tex.scm:8149 msgid "" "This package defines and implements the data type bit set, a vector\n" "of bits. The size of the vector may grow dynamically. Individual bits\n" "can be manipulated." msgstr "" -#: gnu/packages/tex.scm:7864 +#: gnu/packages/tex.scm:8168 msgid "" "New primitive commands are introduced in e-TeX; sometimes the names\n" "collide with existing macros. This package solves the name clashes by\n" @@ -18596,14 +18833,14 @@ msgid "" "@code{\\unexpanded} is provided as @code{\\etex@@unexpanded}." msgstr "" -#: gnu/packages/tex.scm:7882 +#: gnu/packages/tex.scm:8186 msgid "" "This package provides commands for cleaning up the title string\n" "(such as removing @code{\\label} commands) for packages that typeset such\n" "strings." msgstr "" -#: gnu/packages/tex.scm:7898 +#: gnu/packages/tex.scm:8202 msgid "" "This package provides a complete set of macros for information,\n" "warning and error messages. Under LaTeX, the commands are wrappers for\n" @@ -18611,19 +18848,19 @@ msgid "" "complete implementations." msgstr "" -#: gnu/packages/tex.scm:7915 +#: gnu/packages/tex.scm:8219 msgid "" "This package provides expandable arithmetic operations with integers,\n" "using the e-TeX extension @code{\\numexpr} if it is available." msgstr "" -#: gnu/packages/tex.scm:7930 +#: gnu/packages/tex.scm:8234 msgid "" "This package provides the @code{\\kv@@define@@key} (analogous to\n" "keyval’s @code{\\define@@key}, to define keys for use by @code{kvsetkeys}." msgstr "" -#: gnu/packages/tex.scm:7945 +#: gnu/packages/tex.scm:8249 msgid "" "This package provides @code{\\kvsetkeys}, a variant of @code{\\setkeys}\n" "from the @code{keyval} package. Users can specify a handler that deals with\n" @@ -18631,35 +18868,35 @@ msgid "" "level of curly braces are removed from the values." msgstr "" -#: gnu/packages/tex.scm:7980 +#: gnu/packages/tex.scm:8284 msgid "" "This package allows one to capture all the items of a list, for which\n" "the parsing character has been selected by the user, and to access any of\n" "these items with a simple syntax." msgstr "" -#: gnu/packages/tex.scm:7996 +#: gnu/packages/tex.scm:8300 msgid "" "This package exports some utility macros from the LaTeX kernel into\n" "a separate namespace and also makes them available for other formats such\n" "as plain TeX." msgstr "" -#: gnu/packages/tex.scm:8012 +#: gnu/packages/tex.scm:8316 msgid "" "This package implements pdfTeX's escape features (@code{\\pdfescapehex},\n" "@code{\\pdfunescapehex}, @code{\\pdfescapename}, @code{\\pdfescapestring})\n" "using TeX or e-TeX." msgstr "" -#: gnu/packages/tex.scm:8031 +#: gnu/packages/tex.scm:8335 msgid "" "This package provides a kind of counter that provides unique number\n" "values. Several counters can be created with different names. The numeric\n" "values are not limited." msgstr "" -#: gnu/packages/tex.scm:8067 +#: gnu/packages/tex.scm:8371 msgid "" "This package allows the user to input formatted data into elements of a\n" "2-D or 3-D array and to recall that data at will by individual cell number.\n" @@ -18667,7 +18904,7 @@ msgid "" "formatted text." msgstr "" -#: gnu/packages/tex.scm:8104 +#: gnu/packages/tex.scm:8408 msgid "" "The package provides a @code{verbbox} environment to place its contents\n" "into a globally available box, or into a box specified by the user. The\n" @@ -18677,7 +18914,7 @@ msgid "" "@code{trivlist}) may not appear." msgstr "" -#: gnu/packages/tex.scm:8141 +#: gnu/packages/tex.scm:8445 msgid "" "Examplep provides sophisticated features for typesetting verbatim source\n" "code listings, including the display of the source code and its compiled LaTeX\n" @@ -18690,7 +18927,7 @@ msgid "" "titles." msgstr "" -#: gnu/packages/tex.scm:8178 +#: gnu/packages/tex.scm:8482 msgid "" "This is a package for typesetting a variety of graphs and\n" "diagrams with TeX. Xy-pic works with most formats (including LaTeX,\n" @@ -18698,7 +18935,7 @@ msgid "" "@code{diag} package, which was previously distributed stand-alone." msgstr "" -#: gnu/packages/tex.scm:8218 +#: gnu/packages/tex.scm:8522 msgid "" "BibTeX allows the user to store his citation data in generic form, while\n" "printing citations in a document in the form specified by a BibTeX style, to\n" @@ -18706,7 +18943,7 @@ msgid "" "package, such as @command{natbib} as well)." msgstr "" -#: gnu/packages/tex.scm:8241 +#: gnu/packages/tex.scm:8545 msgid "" "This package provides a copy of the Charter Type-1 fonts\n" "which Bitstream contributed to the X consortium, renamed for use with TeX.\n" @@ -18714,14 +18951,14 @@ msgid "" "@command{psnfss}." msgstr "" -#: gnu/packages/tex.scm:8337 +#: gnu/packages/tex.scm:8641 msgid "" "ConTeXt is a full featured, parameter driven macro package,\n" "which fully supports advanced interactive documents. See the ConTeXt garden\n" "for a wealth of support information." msgstr "" -#: gnu/packages/tex.scm:8362 +#: gnu/packages/tex.scm:8666 msgid "" "The beamer LaTeX class can be used for producing slides.\n" "The class works in both PostScript and direct PDF output modes, using the\n" @@ -18734,7 +18971,7 @@ msgid "" "effects, varying slide transitions and animations." msgstr "" -#: gnu/packages/tex.scm:8394 +#: gnu/packages/tex.scm:8698 msgid "" "The XMP (eXtensible Metadata platform) is a framework to add metadata to\n" "digital material to enhance the workflow in publication. The essence is that\n" @@ -18742,13 +18979,13 @@ msgid "" "the file to which it applies." msgstr "" -#: gnu/packages/tex.scm:8433 +#: gnu/packages/tex.scm:8737 msgid "" "This package helps LaTeX users to create PDF/X, PDF/A and other\n" "standards-compliant PDF documents with pdfTeX, LuaTeX and XeTeX." msgstr "" -#: gnu/packages/tex.scm:8468 +#: gnu/packages/tex.scm:8772 msgid "" "The package provides macros and environments to document\n" "LaTeX packages and classes. It is an (as yet unfinished) alternative to the\n" @@ -18759,7 +18996,7 @@ msgid "" "change." msgstr "" -#: gnu/packages/tex.scm:8496 +#: gnu/packages/tex.scm:8800 msgid "" "PSTricks offers an extensive collection of macros for\n" "generating PostScript that is usable with most TeX macro formats, including\n" @@ -18770,14 +19007,14 @@ msgid "" "or shading the cells of tables." msgstr "" -#: gnu/packages/tex.scm:8521 +#: gnu/packages/tex.scm:8825 msgid "" "Pst-text is a PSTricks based package for plotting text along\n" "a different path and manipulating characters. It includes the functionality\n" "of the old package @code{pst-char}." msgstr "" -#: gnu/packages/tex.scm:8546 +#: gnu/packages/tex.scm:8850 msgid "" "This package provides the command @code{\\marginnote} that\n" "may be used instead of @code{\\marginpar} at almost every place where\n" @@ -18785,7 +19022,7 @@ msgid "" "frames made with the @code{framed} package." msgstr "" -#: gnu/packages/tex.scm:8564 +#: gnu/packages/tex.scm:8868 msgid "" "This package, which works both for Plain TeX and for\n" "LaTeX, defines the @code{\\ifPDFTeX}, @code{\\ifXeTeX}, and @code{\\ifLuaTeX}\n" @@ -18795,7 +19032,19 @@ msgid "" "LuaTeX (respectively) is not the engine in use." msgstr "" -#: gnu/packages/tex.scm:8597 +#: gnu/packages/tex.scm:8914 +msgid "" +"The package provides an environment, tabu, which will make any sort of\n" +"tabular, and an environment longtabu which provides the facilities of tabu in\n" +"a modified longtable environment. The package requires array, xcolor for\n" +"coloured rules in tables, and colortbl for coloured cells. The longtabu\n" +"environment further requires that longtable be loaded. The package itself\n" +"does not load any of these packages for the user. The tabu environment may be\n" +"used in place of @code{tabular}, @code{tabular*} and @code{tabularx}\n" +"environments, as well as the @code{array} environment in maths mode." +msgstr "" + +#: gnu/packages/tex.scm:8945 msgid "" "This package provides a collection of simple tools that\n" "are part of the LaTeX required tools distribution, comprising the packages:\n" @@ -18807,7 +19056,7 @@ msgid "" "@code{varioref}, @code{verbatim}, @code{xr}, and @code{xspace}." msgstr "" -#: gnu/packages/tex.scm:8678 +#: gnu/packages/tex.scm:9026 msgid "" "This package is an extension of the keyval package and offers additional\n" "macros for setting keys and declaring and setting class or package options.\n" @@ -18817,7 +19066,7 @@ msgid "" "keys." msgstr "" -#: gnu/packages/tex.scm:8706 +#: gnu/packages/tex.scm:9054 msgid "" "A class and package is provided which allows TeX pictures or\n" "other TeX code to be compiled standalone or as part of a main document.\n" @@ -18829,7 +19078,7 @@ msgid "" "@code{standalone.cfg} to redefine the standalone environment." msgstr "" -#: gnu/packages/tex.scm:8739 +#: gnu/packages/tex.scm:9087 msgid "" "Typesetting values with units requires care to ensure that the combined\n" "mathematical meaning of the value plus unit combination is clear. In\n" @@ -18845,7 +19094,7 @@ msgid "" "package to handle all of the possible unit-related needs of LaTeX users." msgstr "" -#: gnu/packages/tex.scm:8770 +#: gnu/packages/tex.scm:9118 msgid "" "This package enhances the quality of tables in LaTeX, providing extra\n" "commands as well as behind-the-scenes optimisation. Guidelines are given as\n" @@ -18853,7 +19102,7 @@ msgid "" "@code{longtable} compatibility." msgstr "" -#: gnu/packages/tex.scm:8790 +#: gnu/packages/tex.scm:9138 msgid "" "This package provides advanced facilities for inline and\n" "display quotations. It is designed for a wide range of tasks ranging from the\n" @@ -18867,7 +19116,7 @@ msgid "" "styles as well as the optional active quotes are freely configurable." msgstr "" -#: gnu/packages/tex.scm:8816 +#: gnu/packages/tex.scm:9164 msgid "" "The package helps to automate a typical LaTeX\n" "workflow that involves running LaTeX several times and running tools\n" @@ -18887,7 +19136,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8848 +#: gnu/packages/tex.scm:9196 msgid "" "BibLaTeX is a complete reimplementation of the\n" "bibliographic facilities provided by LaTeX. Formatting of the\n" @@ -18913,7 +19162,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/tex.scm:8886 +#: gnu/packages/tex.scm:9234 msgid "" "The @code{todonotes} package lets the user mark\n" "things to do later, in a simple and visually appealing way. The\n" @@ -18921,7 +19170,7 @@ msgid "" "of the visual appearance." msgstr "" -#: gnu/packages/tex.scm:8904 +#: gnu/packages/tex.scm:9252 msgid "" "@code{units} is a package for typesetting physical\n" "units in a standard-looking way. The package is based upon\n" @@ -18929,7 +19178,7 @@ msgid "" "included in the @code{units} bundle." msgstr "" -#: gnu/packages/tex.scm:8922 +#: gnu/packages/tex.scm:9270 msgid "" "@code{microtype} provides a LaTeX interface to the\n" "micro-typographic extensions that were introduced by pdfTeX and have\n" @@ -18944,7 +19193,7 @@ msgid "" "the bundle." msgstr "" -#: gnu/packages/tex.scm:8947 +#: gnu/packages/tex.scm:9295 msgid "" "The @code{caption} package provides many ways to\n" "customise the captions in floating environments like figure and table.\n" @@ -18958,13 +19207,13 @@ msgid "" "@code{subcaption} and @code{totalcount} are included in the bundle." msgstr "" -#: gnu/packages/tex.scm:8976 +#: gnu/packages/tex.scm:9324 msgid "" "This package provides a drop-in replacement for the\n" "Symbol font from Adobe's basic set." msgstr "" -#: gnu/packages/tex.scm:8994 +#: gnu/packages/tex.scm:9342 msgid "" "The Pazo Math fonts are a family of PostScript fonts\n" "suitable for typesetting mathematics in combination with the Palatino\n" @@ -18978,7 +19227,7 @@ msgid "" "LaTeX macro support is provided in package @code{psnfss}." msgstr "" -#: gnu/packages/tex.scm:9019 +#: gnu/packages/tex.scm:9367 msgid "" "The FPL Fonts provide a set of SC/OsF fonts for URW\n" "Palladio L which are compatible with the Palatino SC/OsF fonts from\n" @@ -18986,7 +19235,7 @@ msgid "" "the @code{psnfss} distribution." msgstr "" -#: gnu/packages/tex.scm:9043 +#: gnu/packages/tex.scm:9391 msgid "" "The @code{arev} package provides type 1 fonts,\n" "virtual fonts and LaTeX packages for using Arev Sans in both text and\n" @@ -19000,7 +19249,7 @@ msgid "" "support packages. Others are cmbright, hvmath and kerkis." msgstr "" -#: gnu/packages/tex.scm:9074 +#: gnu/packages/tex.scm:9422 msgid "" "The Math Design project offers free mathematical\n" "fonts that match with existing text fonts. To date, three free font\n" @@ -19011,7 +19260,7 @@ msgid "" "created by the Greek Font Society)." msgstr "" -#: gnu/packages/tex.scm:9099 +#: gnu/packages/tex.scm:9447 msgid "" "The @code{bera} package contains the Bera Type 1\n" "fonts and files to use the fonts with LaTeX. Bera is a set of three\n" @@ -19020,7 +19269,7 @@ msgid "" "a repackaging, for use with TeX, of the Bitstream Vera family." msgstr "" -#: gnu/packages/tex.scm:9122 +#: gnu/packages/tex.scm:9470 msgid "" "Fourier-GUTenberg is a LaTeX typesetting system\n" "which uses Adobe Utopia as its standard base font. Fourier-GUTenberg\n" @@ -19031,7 +19280,7 @@ msgid "" "trademark of Adobe Systems Incorporated." msgstr "" -#: gnu/packages/tex.scm:9145 +#: gnu/packages/tex.scm:9493 msgid "" "The Adobe Standard Encoding set of the Utopia font\n" "family, as contributed to the X Consortium. The set comprises upright\n" @@ -19040,7 +19289,7 @@ msgid "" "@code{mathdesign} font packages." msgstr "" -#: gnu/packages/tex.scm:9169 +#: gnu/packages/tex.scm:9517 msgid "" "The @code{fontaxes} package adds several new font\n" "axes on top of LaTeX's New Font Selection Scheme (NFSS). In\n" @@ -19049,7 +19298,7 @@ msgid "" "figure versions offered by many professional fonts." msgstr "" -#: gnu/packages/tex.scm:9192 +#: gnu/packages/tex.scm:9540 msgid "" "The bundle comprises: @code{authblk}, which permits\n" "footnote style author/affiliation input in the @command{\\author} command,\n" @@ -19059,7 +19308,7 @@ msgid "" "@code{sublabel}, which permits counters to be subnumbered." msgstr "" -#: gnu/packages/tex.scm:9211 +#: gnu/packages/tex.scm:9559 msgid "" "Many font families available for use with LaTeX are\n" "available at multiple weights. Many Type 1-oriented support packages\n" @@ -19070,7 +19319,7 @@ msgid "" "@code{mweights} package provides a solution to these difficulties." msgstr "" -#: gnu/packages/tex.scm:9237 +#: gnu/packages/tex.scm:9585 msgid "" "Cabin is a humanist sans with four weights, true\n" "italics and small capitals. According to its designer, Pablo\n" @@ -19084,7 +19333,7 @@ msgid "" "use with [pdf]LaTeX." msgstr "" -#: gnu/packages/tex.scm:9268 +#: gnu/packages/tex.scm:9616 msgid "" "The @code{newtx} bundle splits\n" "@code{txfonts.sty} (from the TX fonts distribution) into two\n" @@ -19096,7 +19345,7 @@ msgid "" "mathematics package that matches Libertine text quite well." msgstr "" -#: gnu/packages/tex.scm:9296 +#: gnu/packages/tex.scm:9644 msgid "" "@code{xcharter} repackages Bitstream Charter with an\n" "extended set of features. The extension provides small caps, oldstyle\n" @@ -19105,7 +19354,7 @@ msgid "" "Type 1 and OTF formats, with supporting files as necessary." msgstr "" -#: gnu/packages/tex.scm:9320 +#: gnu/packages/tex.scm:9668 msgid "" "The legacy @emph{texnansi} (TeX and ANSI) encoding\n" "is known in the LaTeX scheme of things as @emph{LY1} encoding. The\n" @@ -19114,14 +19363,14 @@ msgid "" "LY1 encoding." msgstr "" -#: gnu/packages/tex.scm:9349 +#: gnu/packages/tex.scm:9697 msgid "" "This is a LaTeX2ε package to help change the style of any or\n" "all of LaTeX's sectional headers in the article, book, or report classes.\n" "Examples include the addition of rules above or below a section title." msgstr "" -#: gnu/packages/tex.scm:9375 +#: gnu/packages/tex.scm:9723 msgid "" "LaTeX can, by default, only cope with 18 outstanding floats;\n" "any more, and you get the error “too many unprocessed floats”. This package\n" @@ -19132,19 +19381,19 @@ msgid "" "floats merely delays the arrival of the inevitable error message." msgstr "" -#: gnu/packages/tex.scm:9408 +#: gnu/packages/tex.scm:9756 msgid "" "This package provides a command for the LaTeX programmer for\n" "testing whether an argument is empty." msgstr "" -#: gnu/packages/tex.scm:9435 +#: gnu/packages/tex.scm:9783 msgid "" "The pagenote package provides tagged notes on a separate\n" "page (also known as ‘end notes’)." msgstr "" -#: gnu/packages/tex.scm:9463 +#: gnu/packages/tex.scm:9811 msgid "" "The @code{titling} package provides control over the\n" "typesetting of the @code{\\maketitle} command and @code{\\thanks} commands,\n" @@ -19154,7 +19403,7 @@ msgid "" "a physical page." msgstr "" -#: gnu/packages/tex.scm:9493 +#: gnu/packages/tex.scm:9841 msgid "" "This package provides an @code{\\ifoddpage} conditional to\n" "determine if the current page is odd or even. The macro @code{\\checkoddpage}\n" @@ -19164,7 +19413,7 @@ msgid "" "@code{oneside} mode where all pages use the odd page layout." msgstr "" -#: gnu/packages/tex.scm:9523 +#: gnu/packages/tex.scm:9871 msgid "" "The package provides \"store boxes\" whose user interface\n" "matches that of normal LaTeX \"save boxes\", except that the content of a\n" @@ -19173,7 +19422,7 @@ msgid "" "DVI is output, store boxes behave the same as save boxes." msgstr "" -#: gnu/packages/tex.scm:9552 +#: gnu/packages/tex.scm:9900 msgid "" "The package provides macros to collect and process a macro\n" "argument (i.e., something which looks like a macro argument) as a horizontal\n" @@ -19186,13 +19435,13 @@ msgid "" "The macros were designed for use within other macros." msgstr "" -#: gnu/packages/tex.scm:9584 +#: gnu/packages/tex.scm:9932 msgid "" "This package provides macros for adding to, and reordering\n" "the list of graphics file extensions recognised by package graphics." msgstr "" -#: gnu/packages/tex.scm:9618 +#: gnu/packages/tex.scm:9966 msgid "" "The package provides several macros to adjust boxed\n" "content. One purpose is to supplement the standard @code{graphics} package,\n" @@ -19205,7 +19454,7 @@ msgid "" "@code{\\minsizebox}, @code{\\maxsizebox} and @code{\\phantombox}." msgstr "" -#: gnu/packages/tex.scm:9644 +#: gnu/packages/tex.scm:9992 msgid "" "This package provides an environment for colored and\n" "framed text boxes with a heading line. Optionally, such a box may be split in\n" @@ -19216,7 +19465,7 @@ msgid "" "parts." msgstr "" -#: gnu/packages/tex.scm:9675 +#: gnu/packages/tex.scm:10023 msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems. The commands allow for writing\n" @@ -19225,13 +19474,13 @@ msgid "" "styles of inference rules, placement of labels, etc." msgstr "" -#: gnu/packages/tex.scm:9704 +#: gnu/packages/tex.scm:10052 msgid "" "This package provides commands to typeset proof trees in the style of\n" "sequent calculus and related systems." msgstr "" -#: gnu/packages/tex.scm:9724 +#: gnu/packages/tex.scm:10072 msgid "" "This package provides the European currency symbol for the\n" "Euro implemented in METAFONT, using the official European Commission\n" @@ -19240,7 +19489,7 @@ msgid "" "pre-compiled font files, and documentation." msgstr "" -#: gnu/packages/tex.scm:9754 +#: gnu/packages/tex.scm:10102 msgid "" "The @code{kastrup} package provides the\n" "@emph{binhex.tex} file. This file provides expandable macros for both\n" @@ -19250,7 +19499,7 @@ msgid "" "LaTeX and plain TeX." msgstr "" -#: gnu/packages/tex.scm:9774 +#: gnu/packages/tex.scm:10122 msgid "" "This LaTeX package provides a flexible mechanism for translating\n" "individual words into different languages. For example, it can be used to\n" @@ -19261,7 +19510,7 @@ msgid "" "automatically translate more than a few words." msgstr "" -#: gnu/packages/tex.scm:9795 +#: gnu/packages/tex.scm:10143 msgid "" "This package facilitates placing boxes at absolute positions on the\n" "LaTeX page. There are several reasons why this might be useful, but the main\n" @@ -19274,7 +19523,7 @@ msgid "" "accompanied by various configuration commands." msgstr "" -#: gnu/packages/tex.scm:9819 +#: gnu/packages/tex.scm:10167 msgid "" "This package extends the @code{ifthen} package by implementing new\n" "commands to go within the first argument of @code{\\\\ifthenelse}: to test\n" @@ -19284,14 +19533,14 @@ msgid "" "handle complex tests." msgstr "" -#: gnu/packages/tex.scm:9852 +#: gnu/packages/tex.scm:10200 msgid "" "BibTool manipulates BibTeX files. The possibilities of BibTool include\n" "sorting and merging of BibTeX databases, generation of uniform reference keys,\n" "and selecting references used in a publication." msgstr "" -#: gnu/packages/texinfo.scm:87 +#: gnu/packages/texinfo.scm:88 msgid "" "Texinfo is the official documentation format of the GNU project. It\n" "uses a single source file using explicit commands to produce a final document\n" @@ -19301,7 +19550,7 @@ msgid "" "is on expressing the content semantically, avoiding physical markup commands." msgstr "" -#: gnu/packages/texinfo.scm:216 +#: gnu/packages/texinfo.scm:230 msgid "" "Texi2HTML is a Perl script which converts Texinfo source files to HTML\n" "output. It now supports many advanced features, such as internationalization\n" @@ -19316,7 +19565,7 @@ msgid "" "Texi2HTML." msgstr "" -#: gnu/packages/texinfo.scm:283 +#: gnu/packages/texinfo.scm:297 msgid "" "Pinfo is an Info file viewer. Pinfo is similar in use to the Lynx web\n" "browser. You just move across info nodes, and select links, follow them, etc.\n" @@ -19675,6 +19924,12 @@ msgstr "" #: gnu/packages/textutils.scm:1406 msgid "" +"@code{utf-8-lineseparator} provides a tool to efficiently check text\n" +"files for valid UTF-8 use and to report which line endings they use." +msgstr "" + +#: gnu/packages/textutils.scm:1439 +msgid "" "@code{csvdiff} is a diff tool to compute changes between two\n" "CSV files. It can compare CSV files with a million records in under 2\n" "seconds. It is specifically suited for comparing CSV files dumped from\n" @@ -19876,27 +20131,27 @@ msgid "" "visualize your public Git repositories on a web interface." msgstr "" -#: gnu/packages/version-control.scm:1706 +#: gnu/packages/version-control.scm:1699 msgid "" "Pre-commit is a multi-language package manager for pre-commit hooks. You\n" "specify a list of hooks you want and pre-commit manages the installation and\n" "execution of any hook written in any language before every commit." msgstr "" -#: gnu/packages/version-control.scm:1796 +#: gnu/packages/version-control.scm:1789 msgid "" "Mercurial is a free, distributed source control management tool. It\n" "efficiently handles projects of any size and offers an easy and intuitive\n" "interface." msgstr "" -#: gnu/packages/version-control.scm:1823 +#: gnu/packages/version-control.scm:1816 msgid "" "Evolve is a Mercurial extension for faster and safer mutable\n" "history. It implements the changeset evolution concept for Mercurial." msgstr "" -#: gnu/packages/version-control.scm:1879 +#: gnu/packages/version-control.scm:1872 msgid "" "This package provides a Mercurial extension for signing\n" "the changeset hash of commits. The signure is embedded directly in the\n" @@ -19904,7 +20159,7 @@ msgid "" "can be used for signing." msgstr "" -#: gnu/packages/version-control.scm:1914 +#: gnu/packages/version-control.scm:1907 msgid "" "Neon is an HTTP and WebDAV client library, with a C interface and the\n" "following features:\n" @@ -19926,7 +20181,7 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/version-control.scm:2010 +#: gnu/packages/version-control.scm:2003 msgid "" "@dfn{Subversion} (svn) exists to be recognized and adopted as a\n" "centralized version control system characterized by its\n" @@ -19935,7 +20190,7 @@ msgid "" "projects, from individuals to large-scale enterprise operations." msgstr "" -#: gnu/packages/version-control.scm:2044 +#: gnu/packages/version-control.scm:2037 msgid "" "RCS is the original Revision Control System. It works on a\n" "file-by-file basis, in contrast to subsequent version control systems such as\n" @@ -19944,21 +20199,21 @@ msgid "" "machine." msgstr "" -#: gnu/packages/version-control.scm:2067 +#: gnu/packages/version-control.scm:2060 msgid "" "@code{blame} outputs an annotated revision from each RCS file. An\n" "annotated RCS file describes the revision and date in which each line was\n" "added to the file, and the author of each line." msgstr "" -#: gnu/packages/version-control.scm:2088 +#: gnu/packages/version-control.scm:2081 msgid "" "The @code{rcshist} utility displays the complete revision history of a\n" "set of RCS files including log messages and patches. It can also display the\n" "patch associated with a particular revision of an RCS file." msgstr "" -#: gnu/packages/version-control.scm:2116 +#: gnu/packages/version-control.scm:2109 msgid "" "CVS is a version control system, an important component of Source\n" "Configuration Management (SCM). Using it, you can record the history of\n" @@ -19966,7 +20221,7 @@ msgid "" "RCS, PRCS, and Aegis packages." msgstr "" -#: gnu/packages/version-control.scm:2150 +#: gnu/packages/version-control.scm:2143 msgid "" "This program analyzes a collection of RCS files in a CVS\n" "repository (or outside of one) and, when possible, emits an equivalent history\n" @@ -19979,7 +20234,7 @@ msgid "" "masters from remote CVS hosts." msgstr "" -#: gnu/packages/version-control.scm:2180 +#: gnu/packages/version-control.scm:2173 msgid "" "The vc-dwim package contains two tools, \"vc-dwim\" and \"vc-chlog\".\n" "vc-dwim is a tool that simplifies the task of maintaining a ChangeLog and\n" @@ -19989,21 +20244,21 @@ msgid "" "standards-compliant ChangeLog entries based on the changes that it detects." msgstr "" -#: gnu/packages/version-control.scm:2207 +#: gnu/packages/version-control.scm:2200 msgid "" "Diffstat reads the output of @command{diff} and displays a histogram of\n" "the insertions, deletions, and modifications per file. It is useful for\n" "reviewing large, complex patch files." msgstr "" -#: gnu/packages/version-control.scm:2246 +#: gnu/packages/version-control.scm:2239 msgid "" "GNU CSSC provides a replacement for the legacy Unix source\n" "code control system SCCS. This allows old code still under that system to be\n" "accessed and migrated on modern systems." msgstr "" -#: gnu/packages/version-control.scm:2338 +#: gnu/packages/version-control.scm:2331 msgid "" "Aegis is a project change supervisor, and performs some of\n" "the Software Configuration Management needed in a CASE environment. Aegis\n" @@ -20014,7 +20269,7 @@ msgid "" "any project with more than one developer, is one of Aegis's major functions." msgstr "" -#: gnu/packages/version-control.scm:2412 +#: gnu/packages/version-control.scm:2405 msgid "" "Reposurgeon enables risky operations that version-control\n" "systems don't want to let you do, such as editing past comments and metadata\n" @@ -20025,20 +20280,20 @@ msgid "" "from Subversion to any supported Distributed Version Control System (DVCS)." msgstr "" -#: gnu/packages/version-control.scm:2451 +#: gnu/packages/version-control.scm:2444 msgid "" "Tig is an ncurses text user interface for Git, primarily intended as\n" "a history browser. It can also stage hunks for commit, or colorize the\n" "output of the @code{git} command." msgstr "" -#: gnu/packages/version-control.scm:2474 +#: gnu/packages/version-control.scm:2467 msgid "" "Recursively find the newest file in a file tree and print its\n" "modification time." msgstr "" -#: gnu/packages/version-control.scm:2521 +#: gnu/packages/version-control.scm:2514 msgid "" "Myrepos provides the @code{mr} command, which maps an operation (e.g.,\n" "fetching updates) over a collection of version control repositories. It\n" @@ -20046,14 +20301,14 @@ msgid "" "Mercurial, Bazaar, Darcs, CVS, Fossil, and Veracity." msgstr "" -#: gnu/packages/version-control.scm:2558 +#: gnu/packages/version-control.scm:2551 msgid "" "Grokmirror enables replicating large git repository\n" "collections efficiently. Mirrors decide to clone and update repositories\n" "based on a manifest file published by servers." msgstr "" -#: gnu/packages/version-control.scm:2588 +#: gnu/packages/version-control.scm:2581 msgid "" "The @code{b4} command is designed to make it easier to participate in\n" "patch-based workflows for projects that have public-inbox archives.\n" @@ -20067,26 +20322,26 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/version-control.scm:2635 +#: gnu/packages/version-control.scm:2628 msgid "" "This wrapper around rclone makes any destination supported\n" "by rclone usable with git-annex." msgstr "" -#: gnu/packages/version-control.scm:2689 +#: gnu/packages/version-control.scm:2682 msgid "" "Fossil is a distributed source control management system which supports\n" "access and administration over HTTP CGI or via a built-in HTTP server. It has\n" "a built-in wiki, built-in file browsing, built-in tickets system, etc." msgstr "" -#: gnu/packages/version-control.scm:2720 +#: gnu/packages/version-control.scm:2713 msgid "" "Stagit creates static pages for git repositories, the results can\n" "be served with a HTTP file server of your choice." msgstr "" -#: gnu/packages/version-control.scm:2756 +#: gnu/packages/version-control.scm:2749 msgid "" "@code{gource} provides a software version control\n" "visualization. The repository is displayed as a tree where the root of the\n" @@ -20095,7 +20350,7 @@ msgid "" "specific files and directories." msgstr "" -#: gnu/packages/version-control.scm:2804 +#: gnu/packages/version-control.scm:2797 #, scheme-format msgid "" "SRC (or src) is simple revision control, a version-control system for\n" @@ -20105,7 +20360,7 @@ msgid "" "directory full of HOWTOs." msgstr "" -#: gnu/packages/version-control.scm:2856 +#: gnu/packages/version-control.scm:2849 msgid "" "This Git extension defines a subcommand,\n" "@code{when-merged}, whose core operation is to find the merge that brought a\n" @@ -20113,7 +20368,7 @@ msgid "" "how information about the merge is displayed." msgstr "" -#: gnu/packages/version-control.scm:2900 +#: gnu/packages/version-control.scm:2893 msgid "" "This Git extension defines a subcommand, @code{imerge},\n" "which performs an incremental merge between two branches. Its two primary\n" @@ -20122,20 +20377,20 @@ msgid "" "interrupted, published, and collaborated on while in progress." msgstr "" -#: gnu/packages/version-control.scm:2951 +#: gnu/packages/version-control.scm:2944 msgid "" "Git Large File Storage (LFS) replaces large files such as audio samples,\n" "videos, datasets, and graphics with text pointers inside Git, while storing the\n" "file contents on a remote server." msgstr "" -#: gnu/packages/version-control.scm:2986 +#: gnu/packages/version-control.scm:2979 msgid "" "@code{git open} opens the repository's website from the command-line,\n" "guessing the URL pattern from the @code{origin} remote." msgstr "" -#: gnu/packages/version-control.scm:3040 +#: gnu/packages/version-control.scm:3033 msgid "" "GNU Arch, aka. @code{tla}, was one of the first free distributed\n" "version-control systems (DVCS). It saw its last release in 2006. This\n" @@ -20143,18 +20398,18 @@ msgid "" "for historians." msgstr "" -#: gnu/packages/version-control.scm:3086 +#: gnu/packages/version-control.scm:3079 msgid "" "@code{diff-so-fancy} strives to make your diffs human readable instead\n" "of machine readable. This helps improve code quality and helps you spot\n" "defects faster." msgstr "" -#: gnu/packages/version-control.scm:3142 +#: gnu/packages/version-control.scm:3135 msgid "This package provides a Git implementation library." msgstr "" -#: gnu/packages/version-control.scm:3192 +#: gnu/packages/version-control.scm:3185 msgid "" "This package provides a command-line tool to manage\n" "multiple Git repos.\n" @@ -20169,7 +20424,7 @@ msgid "" "If several repos are related, it helps to see their status together." msgstr "" -#: gnu/packages/version-control.scm:3250 +#: gnu/packages/version-control.scm:3243 #, scheme-format msgid "" "@code{ghq} provides a way to organize remote repository clones, like\n" @@ -20178,7 +20433,7 @@ msgid "" "using the remote repository URL's host and path." msgstr "" -#: gnu/packages/version-control.scm:3295 +#: gnu/packages/version-control.scm:3288 msgid "" "TkRev (formerly TkCVS) is a Tcl/Tk-based graphical interface to the CVS,\n" "Subversion and Git configuration management systems. It will also help with\n" @@ -20187,7 +20442,7 @@ msgid "" "TkDiff is included for browsing and merging your changes." msgstr "" -#: gnu/packages/version-control.scm:3328 +#: gnu/packages/version-control.scm:3321 msgid "" "@command{git filter-repo} is a versatile tool for rewriting history,\n" "which roughly falls into the same space of tool like git filter-branch but\n" @@ -20225,7 +20480,7 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:865 +#: gnu/packages/virtualization.scm:870 msgid "" "Ganeti is a virtual machine management tool built on top of existing\n" "virtualization technologies such as Xen or KVM. Ganeti controls:\n" @@ -20242,19 +20497,19 @@ msgid "" "commodity hardware." msgstr "" -#: gnu/packages/virtualization.scm:902 +#: gnu/packages/virtualization.scm:907 msgid "" "This package provides a guest OS definition for Ganeti that uses\n" "Guix to build virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:996 +#: gnu/packages/virtualization.scm:1001 msgid "" "This package provides a guest OS definition for Ganeti. It installs\n" "Debian or a derivative using @command{debootstrap}." msgstr "" -#: gnu/packages/virtualization.scm:1056 +#: gnu/packages/virtualization.scm:1061 msgid "" "libosinfo is a GObject based library API for managing\n" "information about operating systems, hypervisors and the (virtual) hardware\n" @@ -20264,21 +20519,21 @@ msgid "" "all common programming languages. Vala bindings are also provided." msgstr "" -#: gnu/packages/virtualization.scm:1105 +#: gnu/packages/virtualization.scm:1109 msgid "" "LXC is a userspace interface for the Linux kernel containment features.\n" "Through a powerful API and simple tools, it lets Linux users easily create and\n" "manage system or application containers." msgstr "" -#: gnu/packages/virtualization.scm:1131 +#: gnu/packages/virtualization.scm:1135 msgid "" "LXCFS is a small FUSE file system written with the intention\n" "of making Linux containers feel more like a virtual machine.\n" "It started as a side project of LXC but can be used by any run-time." msgstr "" -#: gnu/packages/virtualization.scm:1239 +#: gnu/packages/virtualization.scm:1237 msgid "" "LXD is a next generation system container manager. It\n" "offers a user experience similar to virtual machines but using Linux\n" @@ -20287,7 +20542,7 @@ msgid "" "pretty simple, REST API." msgstr "" -#: gnu/packages/virtualization.scm:1332 +#: gnu/packages/virtualization.scm:1330 msgid "" "Libvirt is a C toolkit to interact with the virtualization\n" "capabilities of recent versions of Linux. The library aims at providing long\n" @@ -20295,7 +20550,7 @@ msgid "" "to integrate other virtualization mechanisms if needed." msgstr "" -#: gnu/packages/virtualization.scm:1363 +#: gnu/packages/virtualization.scm:1359 msgid "" "libvirt-glib wraps the libvirt library to provide a\n" "high-level object-oriented API better suited for glib-based applications, via\n" @@ -20308,13 +20563,13 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/virtualization.scm:1407 +#: gnu/packages/virtualization.scm:1403 msgid "" "This package provides Python bindings to the libvirt\n" "virtualization library." msgstr "" -#: gnu/packages/virtualization.scm:1520 +#: gnu/packages/virtualization.scm:1516 msgid "" "The virt-manager application is a desktop user interface for managing\n" "virtual machines through libvirt. It primarily targets KVM VMs, but also\n" @@ -20322,7 +20577,7 @@ msgid "" "domains, their live performance and resource utilization statistics." msgstr "" -#: gnu/packages/virtualization.scm:1620 +#: gnu/packages/virtualization.scm:1616 msgid "" "Using this tool, you can freeze a running application (or\n" "part of it) and checkpoint it to a hard drive as a collection of files. You\n" @@ -20331,14 +20586,14 @@ msgid "" "mainly implemented in user space." msgstr "" -#: gnu/packages/virtualization.scm:1647 +#: gnu/packages/virtualization.scm:1643 msgid "" "qmpbackup is designed to create and restore full and\n" "incremental backups of running QEMU virtual machines via QMP, the QEMU\n" "Machine Protocol." msgstr "" -#: gnu/packages/virtualization.scm:1731 +#: gnu/packages/virtualization.scm:1727 msgid "" "Looking Glass allows the use of a KVM (Kernel-based Virtual\n" "Machine) configured for VGA PCI Pass-through without an attached physical\n" @@ -20346,7 +20601,7 @@ msgid "" "main monitor/GPU." msgstr "" -#: gnu/packages/virtualization.scm:1783 +#: gnu/packages/virtualization.scm:1779 msgid "" "@command{runc} is a command line client for running applications\n" "packaged according to the\n" @@ -20355,13 +20610,13 @@ msgid "" "Open Container Initiative specification." msgstr "" -#: gnu/packages/virtualization.scm:1832 +#: gnu/packages/virtualization.scm:1828 msgid "" "@command{umoci} is a tool that allows for high-level modification of an\n" "Open Container Initiative (OCI) image layout and its tagged images." msgstr "" -#: gnu/packages/virtualization.scm:1886 +#: gnu/packages/virtualization.scm:1882 msgid "" "@command{skopeo} is a command line utility providing various operations\n" "with container images and container image registries. It can:\n" @@ -20382,14 +20637,14 @@ msgid "" "@end enumerate" msgstr "" -#: gnu/packages/virtualization.scm:1922 +#: gnu/packages/virtualization.scm:1918 msgid "" "Python-vagrant is a Python module that provides a thin wrapper around the\n" "@code{vagrant} command line executable, allowing programmatic control of Vagrant\n" "virtual machines." msgstr "" -#: gnu/packages/virtualization.scm:1977 +#: gnu/packages/virtualization.scm:1979 msgid "" "Bubblewrap is aimed at running applications in a sandbox,\n" "restricting their access to parts of the operating system or user data such as\n" @@ -20399,7 +20654,7 @@ msgid "" "by default and can be made read-only." msgstr "" -#: gnu/packages/virtualization.scm:2004 +#: gnu/packages/virtualization.scm:2006 msgid "" "Bochs is an emulator which can emulate Intel x86 CPU, common I/O\n" "devices, and a custom BIOS. It can also be compiled to emulate many different\n" @@ -20408,64 +20663,67 @@ msgid "" "DOS or Microsoft Windows." msgstr "" -#: gnu/packages/virtualization.scm:2210 +#: gnu/packages/virtualization.scm:2212 msgid "" "This package provides the Xen Virtual Machine Monitor\n" "which is a hypervisor." msgstr "" -#: gnu/packages/virtualization.scm:2242 +#: gnu/packages/virtualization.scm:2244 msgid "" "This package contains a set of tools to assist\n" "administrators and developers in managing the database." msgstr "" -#: gnu/packages/virtualization.scm:2275 +#: gnu/packages/virtualization.scm:2277 msgid "" "Osinfo-db provides the database files for use with the\n" "libosinfo library. It provides information about guest operating systems for\n" "use with virtualization provisioning tools" msgstr "" -#: gnu/packages/virtualization.scm:2317 +#: gnu/packages/virtualization.scm:2319 msgid "" "@code{transient} is a wrapper for QEMU allowing the creation of virtual\n" "machines with shared folder, ssh, and disk creation support." msgstr "" -#: gnu/packages/webkit.scm:93 +#: gnu/packages/webkit.scm:94 msgid "" "LibWPE is general-purpose library specifically developed for\n" "the WPE-flavored port of WebKit." msgstr "" -#: gnu/packages/webkit.scm:119 +#: gnu/packages/webkit.scm:120 msgid "" "This package provides a backend implementation for the WPE WebKit\n" "engine that uses Wayland for graphics output." msgstr "" -#: gnu/packages/webkit.scm:216 +#: gnu/packages/webkit.scm:227 msgid "" "WPE WebKit allows embedders to create simple and performant\n" "systems based on Web platform technologies. It is designed with hardware\n" "acceleration in mind, leveraging common 3D graphics APIs for best performance." msgstr "" -#: gnu/packages/webkit.scm:351 +#: gnu/packages/webkit.scm:355 msgid "" "WebKitGTK+ is a full-featured port of the WebKit rendering engine,\n" "suitable for projects requiring any kind of web integration, from hybrid\n" -"HTML/CSS applications to full-fledged web browsers." +"HTML/CSS applications to full-fledged web browsers. WebKitGTK+ video playing\n" +"capabilities can be extended through the use of GStreamer plugins (not\n" +"propagated by default) such as @code{gst-plugins-good} and\n" +"@code{gst-plugins-bad}." msgstr "" -#: gnu/packages/web.scm:250 +#: gnu/packages/web.scm:251 msgid "" "Qhttp is a light-weight and asynchronous HTTP library\n" "(both server & client) in Qt5 and C++14." msgstr "" -#: gnu/packages/web.scm:280 +#: gnu/packages/web.scm:281 msgid "" "The Apache HTTP Server Project is a collaborative software development\n" "effort aimed at creating a robust, commercial-grade, featureful, and\n" @@ -20475,14 +20733,14 @@ msgid "" "and its related documentation." msgstr "" -#: gnu/packages/web.scm:314 +#: gnu/packages/web.scm:315 msgid "" "The mod_wsgi module for the Apache HTTPD Server adds support for running\n" "applications that support the Python @acronym{WSGI, Web Server Gateway\n" "Interface} specification." msgstr "" -#: gnu/packages/web.scm:356 +#: gnu/packages/web.scm:357 msgid "" "Monolith bundles any web page into a single HTML file.\n" "\n" @@ -20495,38 +20753,38 @@ msgid "" "the same, being completely separated from the Internet." msgstr "" -#: gnu/packages/web.scm:460 +#: gnu/packages/web.scm:461 msgid "" "Nginx (\"engine X\") is a high-performance web and reverse proxy server\n" "created by Igor Sysoev. It can be used both as a stand-alone web server\n" "and as a proxy to reduce the load on back-end HTTP or mail servers." msgstr "" -#: gnu/packages/web.scm:518 +#: gnu/packages/web.scm:519 msgid "This package provides HTML documentation for the nginx web server." msgstr "" -#: gnu/packages/web.scm:647 +#: gnu/packages/web.scm:648 msgid "" "This nginx module parses the Accept-Language field in HTTP headers and\n" "chooses the most suitable locale for the user from the list of locales\n" "supported at your website." msgstr "" -#: gnu/packages/web.scm:694 +#: gnu/packages/web.scm:695 msgid "" "XSLScript is a terse notation for writing complex XSLT stylesheets.\n" "This is modified version, specifically intended for use with the NGinx\n" "documentation." msgstr "" -#: gnu/packages/web.scm:767 +#: gnu/packages/web.scm:768 msgid "" "This NGINX module provides a scripting support with Lua\n" "programming language." msgstr "" -#: gnu/packages/web.scm:820 +#: gnu/packages/web.scm:821 msgid "" "This NGINX module provides streaming with the @acronym{RTMP,\n" "Real-Time Messaging Protocol}, @acronym{DASH, Dynamic Adaptive Streaming over HTTP},\n" @@ -20536,7 +20794,7 @@ msgid "" "stream. Remote control of the module is possible over HTTP." msgstr "" -#: gnu/packages/web.scm:882 +#: gnu/packages/web.scm:883 msgid "" "Lighttpd is a secure, fast, compliant, and very flexible web-server that\n" "has been optimized for high-performance environments. It has a very low\n" @@ -20544,41 +20802,41 @@ msgid "" "CGI, authentication, output compression, URL rewriting and many more." msgstr "" -#: gnu/packages/web.scm:910 +#: gnu/packages/web.scm:911 msgid "" "FastCGI is a language-independent, scalable extension to CGI\n" "that provides high performance without the limitations of server specific\n" "APIs." msgstr "" -#: gnu/packages/web.scm:948 +#: gnu/packages/web.scm:949 msgid "" "Fcgiwrap is a simple server for running CGI applications\n" "over FastCGI. It hopes to provide clean CGI support to Nginx (and other web\n" "servers that may need it)." msgstr "" -#: gnu/packages/web.scm:977 +#: gnu/packages/web.scm:978 msgid "" "Starman is a PSGI perl web server that has unique features\n" "such as high performance, preforking, signal support, superdaemon awareness,\n" "and UNIX socket support." msgstr "" -#: gnu/packages/web.scm:1010 +#: gnu/packages/web.scm:1011 msgid "" "IcedTea-Web is an implementation of the @dfn{Java Network Launching\n" "Protocol}, also known as Java Web Start. This package provides tools and\n" "libraries for working with JNLP applets." msgstr "" -#: gnu/packages/web.scm:1035 +#: gnu/packages/web.scm:1036 msgid "" "Jansson is a C library for encoding, decoding and manipulating JSON\n" "data." msgstr "" -#: gnu/packages/web.scm:1055 +#: gnu/packages/web.scm:1056 msgid "" "JSON-C implements a reference counting object model that allows you to\n" "easily construct JSON objects in C, output them as JSON-formatted strings and\n" @@ -20586,7 +20844,7 @@ msgid "" "It aims to conform to RFC 7159." msgstr "" -#: gnu/packages/web.scm:1131 +#: gnu/packages/web.scm:1132 msgid "" "This package provides a very low footprint JSON parser\n" "written in portable ANSI C.\n" @@ -20599,21 +20857,21 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:1176 +#: gnu/packages/web.scm:1177 msgid "" "QJson is a Qt-based library that maps JSON data to\n" "@code{QVariant} objects. JSON arrays will be mapped to @code{QVariantList}\n" "instances, while JSON's objects will be mapped to @code{QVariantMap}." msgstr "" -#: gnu/packages/web.scm:1227 +#: gnu/packages/web.scm:1228 msgid "" "QOAuth is an attempt to support interaction with\n" "OAuth-powered network services in a Qt way, i.e. simply, clearly and\n" "efficiently. It gives the application developer no more than 4 methods." msgstr "" -#: gnu/packages/web.scm:1339 +#: gnu/packages/web.scm:1340 msgid "" "Krona is a flexible tool for exploring the relative proportions of\n" "hierarchical data, such as metagenomic classifications, using a radial,\n" @@ -20622,26 +20880,26 @@ msgid "" "current version of any major web browser." msgstr "" -#: gnu/packages/web.scm:1380 +#: gnu/packages/web.scm:1381 msgid "" "RapidJSON is a fast JSON parser/generator for C++ with both SAX/DOM\n" "style API." msgstr "" -#: gnu/packages/web.scm:1409 +#: gnu/packages/web.scm:1410 msgid "" "Yet Another JSON Library (YAJL) is a small event-driven (SAX-style) JSON\n" "parser written in ANSI C and a small validating JSON generator." msgstr "" -#: gnu/packages/web.scm:1439 +#: gnu/packages/web.scm:1440 msgid "" "Libwebsockets is a library that allows C programs to establish client\n" "and server WebSockets connections---a protocol layered above HTTP that allows\n" "for efficient socket-like bidirectional reliable communication channels." msgstr "" -#: gnu/packages/web.scm:1468 +#: gnu/packages/web.scm:1469 msgid "" "WABT (pronounced: wabbit) is a suite of tools for\n" "WebAssembly, including:\n" @@ -20666,7 +20924,7 @@ msgid "" "other systems that want to manipulate WebAssembly files." msgstr "" -#: gnu/packages/web.scm:1518 +#: gnu/packages/web.scm:1519 msgid "" "WebSocket++ is a C++ library that can be used to implement\n" "WebSocket functionality. The goals of the project are to provide a WebSocket\n" @@ -20674,7 +20932,7 @@ msgid "" "high performance." msgstr "" -#: gnu/packages/web.scm:1558 +#: gnu/packages/web.scm:1559 msgid "" "@code{Wslay} is an event-based C library for the WebSocket\n" "protocol version 13, described in RFC 6455. Besides a high-level API it\n" @@ -20683,7 +20941,7 @@ msgid "" "perform the opening handshake in HTTP." msgstr "" -#: gnu/packages/web.scm:1588 +#: gnu/packages/web.scm:1589 msgid "" "A \"public suffix\" is a domain name under which Internet users can\n" "directly register own names.\n" @@ -20701,20 +20959,20 @@ msgid "" "UTS#46." msgstr "" -#: gnu/packages/web.scm:1633 +#: gnu/packages/web.scm:1634 msgid "" "HTML Tidy is a command-line tool and C library that can be\n" "used to validate and fix HTML data." msgstr "" -#: gnu/packages/web.scm:1680 +#: gnu/packages/web.scm:1681 msgid "" "The esbuild tool provides a unified bundler, transpiler and\n" "minifier. It packages up JavaScript and TypeScript code, along with JSON\n" "and other data, for distribution on the web." msgstr "" -#: gnu/packages/web.scm:1716 +#: gnu/packages/web.scm:1717 msgid "" "Tinyproxy is a light-weight HTTP/HTTPS proxy\n" "daemon. Designed from the ground up to be fast and yet small, it is an ideal\n" @@ -20723,14 +20981,14 @@ msgid "" "unavailable." msgstr "" -#: gnu/packages/web.scm:1751 +#: gnu/packages/web.scm:1752 msgid "" "Polipo is a small caching web proxy (web cache, HTTP proxy, and proxy\n" "server). It was primarily designed to be used by one person or a small group\n" "of people." msgstr "" -#: gnu/packages/web.scm:1779 +#: gnu/packages/web.scm:1780 msgid "" "Websockify translates WebSockets traffic to normal socket\n" "traffic. Websockify accepts the WebSockets handshake, parses it, and then\n" @@ -20738,7 +20996,7 @@ msgid "" "directions." msgstr "" -#: gnu/packages/web.scm:1806 +#: gnu/packages/web.scm:1807 msgid "" "WWWOFFLE is a proxy web server that is especially good for\n" "intermittent internet links. It can cache HTTP, HTTPS, FTP, and finger\n" @@ -20747,7 +21005,7 @@ msgid "" "changes, and much more." msgstr "" -#: gnu/packages/web.scm:1832 +#: gnu/packages/web.scm:1833 msgid "" "liboauth is a collection of C functions implementing the OAuth API.\n" "liboauth provides functions to escape and encode strings according to OAuth\n" @@ -20756,25 +21014,25 @@ msgid "" "hash/signatures." msgstr "" -#: gnu/packages/web.scm:1855 +#: gnu/packages/web.scm:1856 msgid "" "This package contains support scripts called by libquvi to\n" "parse media stream properties." msgstr "" -#: gnu/packages/web.scm:1889 +#: gnu/packages/web.scm:1890 msgid "" "libquvi is a library with a C API for parsing media stream\n" "URLs and extracting their actual media files." msgstr "" -#: gnu/packages/web.scm:1911 +#: gnu/packages/web.scm:1912 msgid "" "quvi is a command-line-tool suite to extract media files\n" "from streaming URLs. It is a command-line wrapper for the libquvi library." msgstr "" -#: gnu/packages/web.scm:1983 +#: gnu/packages/web.scm:1984 msgid "" "serf is a C-based HTTP client library built upon the Apache Portable\n" "Runtime (APR) library. It multiplexes connections, running the read/write\n" @@ -20782,7 +21040,7 @@ msgid "" "minimum to provide high performance operation." msgstr "" -#: gnu/packages/web.scm:2018 +#: gnu/packages/web.scm:2019 msgid "" "LibSass is a @acronym{SASS,Syntactically awesome style sheets} compiler\n" "library designed for portability and efficiency. To actually compile SASS\n" @@ -20790,29 +21048,29 @@ msgid "" "@var{sassc} for example." msgstr "" -#: gnu/packages/web.scm:2067 +#: gnu/packages/web.scm:2068 msgid "" "SassC is a compiler written in C for the CSS pre-processor\n" "language known as SASS." msgstr "" -#: gnu/packages/web.scm:2112 +#: gnu/packages/web.scm:2113 msgid "" "This module provides methods to compile a log format string\n" "to perl-code, for faster generation of access_log lines." msgstr "" -#: gnu/packages/web.scm:2140 +#: gnu/packages/web.scm:2141 msgid "Authen::SASL provides an SASL authentication framework." msgstr "" -#: gnu/packages/web.scm:2163 +#: gnu/packages/web.scm:2164 msgid "" "This Catalyst action implements a sensible default end\n" "action, which will forward to the first available view." msgstr "" -#: gnu/packages/web.scm:2195 +#: gnu/packages/web.scm:2196 msgid "" "This Action handles doing automatic method dispatching for\n" "REST requests. It takes a normal Catalyst action, and changes the dispatch to\n" @@ -20821,20 +21079,20 @@ msgid "" "regular method." msgstr "" -#: gnu/packages/web.scm:2226 +#: gnu/packages/web.scm:2227 msgid "" "The Catalyst::Authentication::Store::DBIx::Class class\n" "provides access to authentication information stored in a database via\n" "DBIx::Class." msgstr "" -#: gnu/packages/web.scm:2252 +#: gnu/packages/web.scm:2253 msgid "" "Catalyst::Component::InstancePerContext returns a new\n" "instance of a component on each request." msgstr "" -#: gnu/packages/web.scm:2288 +#: gnu/packages/web.scm:2289 msgid "" "The Catalyst-Devel distribution includes a variety of\n" "modules useful for the development of Catalyst applications, but not required\n" @@ -20844,7 +21102,7 @@ msgid "" "modules." msgstr "" -#: gnu/packages/web.scm:2316 +#: gnu/packages/web.scm:2317 msgid "" "Dispatch type managing path-matching behaviour using\n" "regexes. Regex dispatch types have been deprecated and removed from Catalyst\n" @@ -20854,20 +21112,20 @@ msgid "" "when the dispatch type is first seen in your application." msgstr "" -#: gnu/packages/web.scm:2363 +#: gnu/packages/web.scm:2364 msgid "" "This is a Catalyst Model for DBIx::Class::Schema-based\n" "Models." msgstr "" -#: gnu/packages/web.scm:2385 +#: gnu/packages/web.scm:2386 msgid "" "This Catalyst plugin enables you to create \"access logs\"\n" "from within a Catalyst application instead of requiring a webserver to do it\n" "for you. It will work even with Catalyst debug logging turned off." msgstr "" -#: gnu/packages/web.scm:2419 +#: gnu/packages/web.scm:2420 msgid "" "The authentication plugin provides generic user support for\n" "Catalyst apps. It is the basis for both authentication (checking the user is\n" @@ -20875,32 +21133,32 @@ msgid "" "system authorises them to do)." msgstr "" -#: gnu/packages/web.scm:2447 +#: gnu/packages/web.scm:2448 msgid "" "Catalyst::Plugin::Authorization::Roles provides role-based\n" "authorization for Catalyst based on Catalyst::Plugin::Authentication." msgstr "" -#: gnu/packages/web.scm:2469 +#: gnu/packages/web.scm:2470 msgid "" "This plugin creates and validates Captcha images for\n" "Catalyst." msgstr "" -#: gnu/packages/web.scm:2493 +#: gnu/packages/web.scm:2494 msgid "" "This module will attempt to load find and load configuration\n" "files of various types. Currently it supports YAML, JSON, XML, INI and Perl\n" "formats." msgstr "" -#: gnu/packages/web.scm:2522 +#: gnu/packages/web.scm:2523 msgid "" "This plugin links the two pieces required for session\n" "management in web applications together: the state, and the store." msgstr "" -#: gnu/packages/web.scm:2548 +#: gnu/packages/web.scm:2549 msgid "" "In order for Catalyst::Plugin::Session to work, the session\n" "ID needs to be stored on the client, and the session data needs to be stored\n" @@ -20908,14 +21166,14 @@ msgid "" "cookie mechanism." msgstr "" -#: gnu/packages/web.scm:2578 +#: gnu/packages/web.scm:2579 msgid "" "Catalyst::Plugin::Session::Store::FastMmap is a fast session\n" "storage plugin for Catalyst that uses an mmap'ed file to act as a shared\n" "memory interprocess cache. It is based on Cache::FastMmap." msgstr "" -#: gnu/packages/web.scm:2602 +#: gnu/packages/web.scm:2603 msgid "" "This plugin enhances the standard Catalyst debug screen by\n" "including a stack trace of your application up to the point where the error\n" @@ -20923,7 +21181,7 @@ msgid "" "number, file name, and code context surrounding the line number." msgstr "" -#: gnu/packages/web.scm:2628 +#: gnu/packages/web.scm:2629 msgid "" "The Static::Simple plugin is designed to make serving static\n" "content in your application during development quick and easy, without\n" @@ -20934,7 +21192,7 @@ msgid "" "MIME type directly to the browser, without being processed through Catalyst." msgstr "" -#: gnu/packages/web.scm:2687 +#: gnu/packages/web.scm:2688 msgid "" "Catalyst is a modern framework for making web applications.\n" "It is designed to make it easy to manage the various tasks you need to do to\n" @@ -20942,7 +21200,7 @@ msgid "" "\"plug in\" existing Perl modules that do what you need." msgstr "" -#: gnu/packages/web.scm:2715 +#: gnu/packages/web.scm:2716 msgid "" "This module is a Moose::Role which allows you more\n" "flexibility in your application's deployment configurations when deployed\n" @@ -20950,26 +21208,26 @@ msgid "" "replaced with the contents of the X-Request-Base header." msgstr "" -#: gnu/packages/web.scm:2743 +#: gnu/packages/web.scm:2744 msgid "" "The purpose of this module is to provide a method for\n" "downloading data into many supportable formats. For example, downloading a\n" "table based report in a variety of formats (CSV, HTML, etc.)." msgstr "" -#: gnu/packages/web.scm:2767 +#: gnu/packages/web.scm:2768 msgid "" "Catalyst::View::JSON is a Catalyst View handler that returns\n" "stash data in JSON format." msgstr "" -#: gnu/packages/web.scm:2793 +#: gnu/packages/web.scm:2794 msgid "" "This module is a Catalyst view class for the Template\n" "Toolkit." msgstr "" -#: gnu/packages/web.scm:2821 +#: gnu/packages/web.scm:2822 msgid "" "Adds a \"COMPONENT\" in Catalyst::Component method to your\n" "Catalyst component base class that reads the optional \"traits\" parameter\n" @@ -20978,19 +21236,19 @@ msgid "" "MooseX::Traits::Pluggable." msgstr "" -#: gnu/packages/web.scm:2845 +#: gnu/packages/web.scm:2846 msgid "" "CatalystX::RoleApplicator applies roles to Catalyst\n" "application classes." msgstr "" -#: gnu/packages/web.scm:2870 +#: gnu/packages/web.scm:2871 msgid "" "This module provides a Catalyst extension to replace the\n" "development server with Starman." msgstr "" -#: gnu/packages/web.scm:2892 +#: gnu/packages/web.scm:2893 msgid "" "CGI.pm is a stable, complete and mature solution for\n" "processing and preparing HTTP requests and responses. Major features include\n" @@ -20999,44 +21257,44 @@ msgid "" "headers." msgstr "" -#: gnu/packages/web.scm:2919 +#: gnu/packages/web.scm:2920 msgid "" "@code{CGI::FormBuilder} provides an easy way to generate and process CGI\n" "form-based applications." msgstr "" -#: gnu/packages/web.scm:2946 +#: gnu/packages/web.scm:2947 msgid "" "@code{CGI::Session} provides modular session management system across\n" "HTTP requests." msgstr "" -#: gnu/packages/web.scm:2967 +#: gnu/packages/web.scm:2968 msgid "" "CGI::Simple provides a relatively lightweight drop in\n" "replacement for CGI.pm. It shares an identical OO interface to CGI.pm for\n" "parameter parsing, file upload, cookie handling and header generation." msgstr "" -#: gnu/packages/web.scm:2989 +#: gnu/packages/web.scm:2990 msgid "" "This is a module for building structured data from CGI\n" "inputs, in a manner reminiscent of how PHP does." msgstr "" -#: gnu/packages/web.scm:3012 +#: gnu/packages/web.scm:3013 msgid "" "This module provides functions that deal with the date\n" "formats used by the HTTP protocol." msgstr "" -#: gnu/packages/web.scm:3033 +#: gnu/packages/web.scm:3034 msgid "" "Digest::MD5::File is a Perl extension for getting MD5 sums\n" "for files and urls." msgstr "" -#: gnu/packages/web.scm:3053 +#: gnu/packages/web.scm:3054 msgid "" "The POSIX locale system is used to specify both the language\n" "conventions requested by the user and the preferred character set to\n" @@ -21048,66 +21306,66 @@ msgid "" "with Encode::decode(locale => $string)." msgstr "" -#: gnu/packages/web.scm:3086 +#: gnu/packages/web.scm:3087 msgid "" "@code{Feed::Find} implements feed auto-discovery for finding\n" "syndication feeds, given a URI. It will discover the following feed formats:\n" "RSS 0.91, RSS 1.0, RSS 2.0, Atom." msgstr "" -#: gnu/packages/web.scm:3109 +#: gnu/packages/web.scm:3110 msgid "" "The File::Listing module exports a single function called parse_dir(),\n" "which can be used to parse directory listings." msgstr "" -#: gnu/packages/web.scm:3142 +#: gnu/packages/web.scm:3143 msgid "" "Finance::Quote gets stock quotes from various internet sources, including\n" "Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange." msgstr "" -#: gnu/packages/web.scm:3165 +#: gnu/packages/web.scm:3166 msgid "" "This is a Perl extension for using GSSAPI C bindings as\n" "described in RFC 2744." msgstr "" -#: gnu/packages/web.scm:3187 +#: gnu/packages/web.scm:3188 msgid "" "HTML::Element::Extended is a Perl extension for manipulating a table\n" "composed of HTML::Element style components." msgstr "" -#: gnu/packages/web.scm:3208 +#: gnu/packages/web.scm:3209 msgid "" "Objects of the HTML::Form class represents a single HTML\n" "
...
instance." msgstr "" -#: gnu/packages/web.scm:3241 +#: gnu/packages/web.scm:3242 msgid "@code{HTML::Scrubber} Perl extension for scrubbing/sanitizing HTML." msgstr "" -#: gnu/packages/web.scm:3260 +#: gnu/packages/web.scm:3261 msgid "" "HTML::Lint is a pure-Perl HTML parser and checker for\n" "syntactic legitmacy." msgstr "" -#: gnu/packages/web.scm:3282 +#: gnu/packages/web.scm:3283 msgid "" "HTML::TableExtract is a Perl module for extracting the content contained\n" "in tables within an HTML document, either as text or encoded element trees." msgstr "" -#: gnu/packages/web.scm:3305 +#: gnu/packages/web.scm:3306 msgid "" "This distribution contains a suite of modules for\n" "representing, creating, and extracting information from HTML syntax trees." msgstr "" -#: gnu/packages/web.scm:3327 +#: gnu/packages/web.scm:3328 msgid "" "Objects of the HTML::Parser class will recognize markup and separate\n" "it from plain text (alias data content) in HTML documents. As different\n" @@ -21115,13 +21373,13 @@ msgid "" "are invoked." msgstr "" -#: gnu/packages/web.scm:3349 +#: gnu/packages/web.scm:3350 msgid "" "The HTML::Tagset module contains several data tables useful in various\n" "kinds of HTML parsing operations." msgstr "" -#: gnu/packages/web.scm:3370 +#: gnu/packages/web.scm:3371 msgid "" "This module attempts to make using HTML templates simple and natural.\n" "It extends standard HTML with a few new HTML-esque tags: @code{},\n" @@ -21132,40 +21390,40 @@ msgid "" "you to separate design from the data." msgstr "" -#: gnu/packages/web.scm:3398 +#: gnu/packages/web.scm:3399 msgid "" "HTTP::Body parses chunks of HTTP POST data and supports\n" "application/octet-stream, application/json, application/x-www-form-urlencoded,\n" "and multipart/form-data." msgstr "" -#: gnu/packages/web.scm:3421 +#: gnu/packages/web.scm:3422 msgid "" "This module implements a minimalist HTTP user agent cookie\n" "jar in conformance with RFC 6265 ." msgstr "" -#: gnu/packages/web.scm:3443 +#: gnu/packages/web.scm:3444 msgid "" "The HTTP::Cookies class is for objects that represent a cookie jar,\n" "that is, a database of all the HTTP cookies that a given LWP::UserAgent\n" "object knows about." msgstr "" -#: gnu/packages/web.scm:3466 +#: gnu/packages/web.scm:3467 msgid "" "Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen\n" "on a socket for incoming requests. The HTTP::Daemon is a subclass of\n" "IO::Socket::INET, so you can perform socket operations directly on it too." msgstr "" -#: gnu/packages/web.scm:3487 +#: gnu/packages/web.scm:3488 msgid "" "The HTTP::Date module provides functions that deal with date formats\n" "used by the HTTP protocol (and then some more)." msgstr "" -#: gnu/packages/web.scm:3508 +#: gnu/packages/web.scm:3509 msgid "" "@code{HTTP::Lite} is a stand-alone lightweight\n" "HTTP/1.1 implementation for perl. It is intended for use in\n" @@ -21179,11 +21437,11 @@ msgid "" "processing of request data as it arrives." msgstr "" -#: gnu/packages/web.scm:3541 +#: gnu/packages/web.scm:3542 msgid "An HTTP::Message object contains some headers and a content body." msgstr "" -#: gnu/packages/web.scm:3562 +#: gnu/packages/web.scm:3563 msgid "" "The HTTP::Negotiate module provides a complete implementation of the\n" "HTTP content negotiation algorithm specified in\n" @@ -21193,7 +21451,7 @@ msgid "" "fields in the request." msgstr "" -#: gnu/packages/web.scm:3587 +#: gnu/packages/web.scm:3588 msgid "" "This is an HTTP request parser. It takes chunks of text as\n" "received and returns a @code{hint} as to what is required, or returns the\n" @@ -21201,33 +21459,33 @@ msgid "" "supported." msgstr "" -#: gnu/packages/web.scm:3610 +#: gnu/packages/web.scm:3611 msgid "" "HTTP::Parser::XS is a fast, primitive HTTP request/response\n" "parser." msgstr "" -#: gnu/packages/web.scm:3631 +#: gnu/packages/web.scm:3632 msgid "" "This module provides a convenient way to set up a CGI\n" "environment from an HTTP::Request." msgstr "" -#: gnu/packages/web.scm:3665 +#: gnu/packages/web.scm:3666 msgid "" "HTTP::Server::Simple is a simple standalone HTTP daemon with\n" "no non-core module dependencies. It can be used for building a standalone\n" "http-based UI to your existing tools." msgstr "" -#: gnu/packages/web.scm:3688 +#: gnu/packages/web.scm:3689 msgid "" "This is a very simple HTTP/1.1 client, designed for doing\n" "simple requests without the overhead of a large framework like LWP::UserAgent.\n" "It supports proxies and redirection. It also correctly resumes after EINTR." msgstr "" -#: gnu/packages/web.scm:3713 +#: gnu/packages/web.scm:3714 msgid "" "@code{HTTP::Tinyish} is a wrapper module for @acronym{LWP,libwww-perl},\n" "@code{HTTP::Tiny}, curl and wget.\n" @@ -21235,20 +21493,20 @@ msgid "" "It provides an API compatible to HTTP::Tiny." msgstr "" -#: gnu/packages/web.scm:3735 +#: gnu/packages/web.scm:3736 msgid "" "IO::HTML provides an easy way to open a file containing HTML while\n" "automatically determining its encoding. It uses the HTML5 encoding sniffing\n" "algorithm specified in section 8.2.2.1 of the draft standard." msgstr "" -#: gnu/packages/web.scm:3755 +#: gnu/packages/web.scm:3756 msgid "" "This module provides a protocol-independent way to use IPv4\n" "and IPv6 sockets, intended as a replacement for IO::Socket::INET." msgstr "" -#: gnu/packages/web.scm:3777 +#: gnu/packages/web.scm:3778 msgid "" "IO::Socket::SSL makes using SSL/TLS much easier by wrapping the\n" "necessary functionality into the familiar IO::Socket interface and providing\n" @@ -21257,7 +21515,7 @@ msgid "" "select or poll." msgstr "" -#: gnu/packages/web.scm:3816 +#: gnu/packages/web.scm:3817 msgid "" "The libwww-perl collection is a set of Perl modules which provides a\n" "simple and consistent application programming interface to the\n" @@ -21267,7 +21525,7 @@ msgid "" "help you implement simple HTTP servers." msgstr "" -#: gnu/packages/web.scm:3844 +#: gnu/packages/web.scm:3845 msgid "" "This module attempts to answer, as accurately as it can, one\n" "of the nastiest technical questions there is: am I on the internet?\n" @@ -21277,7 +21535,7 @@ msgid "" "not have DNS. We might not have a network card at all!" msgstr "" -#: gnu/packages/web.scm:3870 +#: gnu/packages/web.scm:3871 #, scheme-format msgid "" "The LWP::MediaTypes module provides functions for handling media (also\n" @@ -21286,20 +21544,20 @@ msgid "" "exists it is used instead." msgstr "" -#: gnu/packages/web.scm:3895 +#: gnu/packages/web.scm:3896 msgid "" "The LWP::Protocol::https module provides support for using\n" "https schemed URLs with LWP." msgstr "" -#: gnu/packages/web.scm:3916 +#: gnu/packages/web.scm:3917 msgid "" "LWP::UserAgent::Cached is an LWP::UserAgent subclass with\n" "cache support. It returns responses from the local file system, if available,\n" "instead of making an HTTP request." msgstr "" -#: gnu/packages/web.scm:3938 +#: gnu/packages/web.scm:3939 msgid "" "LWP::UserAgent::Determined works just like LWP::UserAgent,\n" "except that when you use it to get a web page but run into a\n" @@ -21307,7 +21565,7 @@ msgid "" "and retry a few times." msgstr "" -#: gnu/packages/web.scm:3965 +#: gnu/packages/web.scm:3966 msgid "" "@code{LWPx::ParanoidAgent} is a class subclassing\n" "@code{LWP::UserAgent} but paranoid against attackers. Its purpose is\n" @@ -21317,11 +21575,11 @@ msgid "" "is limited to http and https." msgstr "" -#: gnu/packages/web.scm:4011 +#: gnu/packages/web.scm:4012 msgid "This module provides a Perlish interface to Amazon S3." msgstr "" -#: gnu/packages/web.scm:4032 +#: gnu/packages/web.scm:4033 msgid "" "The Net::HTTP class is a low-level HTTP client. An instance of the\n" "Net::HTTP class represents a connection to an HTTP server. The HTTP protocol\n" @@ -21329,7 +21587,7 @@ msgid "" "HTTP/1.1." msgstr "" -#: gnu/packages/web.scm:4053 +#: gnu/packages/web.scm:4054 msgid "" "Net::Server is an extensible, generic Perl server engine.\n" "It attempts to be a generic server as in Net::Daemon and NetServer::Generic.\n" @@ -21343,11 +21601,11 @@ msgid "" "or to multiple server ports." msgstr "" -#: gnu/packages/web.scm:4082 +#: gnu/packages/web.scm:4083 msgid "SSL support for Net::SMTP." msgstr "" -#: gnu/packages/web.scm:4116 +#: gnu/packages/web.scm:4117 msgid "" "Plack is a set of tools for using the PSGI stack. It\n" "contains middleware components, a reference server, and utilities for Web\n" @@ -21355,7 +21613,7 @@ msgid "" "WSGI." msgstr "" -#: gnu/packages/web.scm:4143 +#: gnu/packages/web.scm:4144 msgid "" "Plack::Middleware::Deflater is a middleware to encode your response body\n" "in gzip or deflate, based on \"Accept-Encoding\" HTTP request header. It\n" @@ -21364,13 +21622,13 @@ msgid "" "servers." msgstr "" -#: gnu/packages/web.scm:4170 +#: gnu/packages/web.scm:4171 msgid "" "This module sets the body in redirect response, if it's not\n" "already set." msgstr "" -#: gnu/packages/web.scm:4193 +#: gnu/packages/web.scm:4194 msgid "" "This middleware allows for POST requests that pretend to be\n" "something else: by adding either a header named X-HTTP-Method-Override to the\n" @@ -21378,44 +21636,44 @@ msgid "" "can say what method it actually meant." msgstr "" -#: gnu/packages/web.scm:4217 +#: gnu/packages/web.scm:4218 msgid "" "This module removes the body in an HTTP response if it's not\n" "required." msgstr "" -#: gnu/packages/web.scm:4240 +#: gnu/packages/web.scm:4241 msgid "" "Plack::Middleware::ReverseProxy resets some HTTP headers,\n" "which are changed by reverse-proxy. You can specify the reverse proxy address\n" "and stop fake requests using @code{enable_if} directive in your app.psgi." msgstr "" -#: gnu/packages/web.scm:4261 +#: gnu/packages/web.scm:4262 msgid "" "This module allows your to run your Plack::Test tests\n" "against an external server instead of just against a local application through\n" "either mocked HTTP or a locally spawned server." msgstr "" -#: gnu/packages/web.scm:4283 +#: gnu/packages/web.scm:4284 msgid "Test::TCP is test utilities for TCP/IP programs." msgstr "" -#: gnu/packages/web.scm:4308 +#: gnu/packages/web.scm:4309 msgid "" "Test::WWW::Mechanize is a subclass of the Perl module\n" "WWW::Mechanize that incorporates features for web application testing." msgstr "" -#: gnu/packages/web.scm:4341 +#: gnu/packages/web.scm:4342 msgid "" "The Test::WWW::Mechanize::Catalyst module meshes the\n" "Test::WWW:Mechanize module and the Catalyst web application framework to allow\n" "testing of Catalyst applications without needing to start up a web server." msgstr "" -#: gnu/packages/web.scm:4365 +#: gnu/packages/web.scm:4366 msgid "" "PSGI is a specification to decouple web server environments\n" "from web application framework code. Test::WWW::Mechanize is a subclass of\n" @@ -21424,21 +21682,21 @@ msgid "" "applications." msgstr "" -#: gnu/packages/web.scm:4390 +#: gnu/packages/web.scm:4391 msgid "" "The URI module implements the URI class. Objects of this class\n" "represent \"Uniform Resource Identifier references\" as specified in RFC 2396\n" "and updated by RFC 2732." msgstr "" -#: gnu/packages/web.scm:4413 +#: gnu/packages/web.scm:4414 msgid "" "@code{URI::Fetch} is a smart client for fetching HTTP pages,\n" "notably syndication feeds (RSS, Atom, and others), in an intelligent, bandwidth-\n" "and time-saving way." msgstr "" -#: gnu/packages/web.scm:4437 +#: gnu/packages/web.scm:4438 msgid "" "This module finds URIs and URLs (according to what URI.pm\n" "considers a URI) in plain text. It only finds URIs which include a\n" @@ -21446,37 +21704,37 @@ msgid "" "URI::Find::Schemeless. For a command-line interface, urifind is provided." msgstr "" -#: gnu/packages/web.scm:4460 +#: gnu/packages/web.scm:4461 msgid "" "With this module, the URI package provides the same set of\n" "methods for WebSocket URIs as it does for HTTP URIs." msgstr "" -#: gnu/packages/web.scm:4483 +#: gnu/packages/web.scm:4484 msgid "" "This perl module provides a wrapper around URI templates as described in\n" "RFC 6570." msgstr "" -#: gnu/packages/web.scm:4517 +#: gnu/packages/web.scm:4518 msgid "" "This is a Perl extension interface for the libcurl file downloading\n" "library." msgstr "" -#: gnu/packages/web.scm:4548 +#: gnu/packages/web.scm:4549 msgid "" "WWW::Mechanize is a Perl module for stateful programmatic\n" "web browsing, used for automating interaction with websites." msgstr "" -#: gnu/packages/web.scm:4586 +#: gnu/packages/web.scm:4587 msgid "" "@code{WWW::OpenSearch} is a module to search @url{A9's OpenSearch,\n" "http://opensearch.a9.com} compatible search engines." msgstr "" -#: gnu/packages/web.scm:4608 +#: gnu/packages/web.scm:4609 msgid "" "The WWW::RobotRules module parses /robots.txt files as specified in\n" "\"A Standard for Robot Exclusion\", at\n" @@ -21485,13 +21743,13 @@ msgid "" "their web site." msgstr "" -#: gnu/packages/web.scm:4635 gnu/packages/web.scm:4659 +#: gnu/packages/web.scm:4640 gnu/packages/web.scm:4664 msgid "" "Universal feed parser which handles RSS 0.9x, RSS 1.0, RSS 2.0,\n" "CDF, Atom 0.3, and Atom 1.0 feeds." msgstr "" -#: gnu/packages/web.scm:4756 +#: gnu/packages/web.scm:4761 msgid "" "The Guix Data Service stores data about GNU Guix, and provides this\n" "through a web interface. It supports listening to the guix-commits mailing\n" @@ -21499,20 +21757,20 @@ msgid "" "PostgreSQL database." msgstr "" -#: gnu/packages/web.scm:4785 +#: gnu/packages/web.scm:4790 msgid "" "Gumbo is an implementation of the HTML5 parsing algorithm implemented as\n" "a pure C99 library." msgstr "" -#: gnu/packages/web.scm:4858 +#: gnu/packages/web.scm:4863 msgid "" "uWSGI presents a complete stack for networked/clustered web applications,\n" "implementing message/object passing, caching, RPC and process management.\n" "It uses the uwsgi protocol for all the networking/interprocess communications." msgstr "" -#: gnu/packages/web.scm:4891 +#: gnu/packages/web.scm:4896 msgid "" "jq is like sed for JSON data – you can use it to slice and\n" "filter and map and transform structured data with the same ease that sed, awk,\n" @@ -21522,7 +21780,7 @@ msgid "" "you'd expect." msgstr "" -#: gnu/packages/web.scm:4920 +#: gnu/packages/web.scm:4925 msgid "" "@command{pup} is a command line tool for processing HTML. It reads\n" "from stdin, prints to stdout, and allows the user to filter parts of the page\n" @@ -21530,66 +21788,66 @@ msgid "" "fast and flexible way of exploring HTML from the terminal." msgstr "" -#: gnu/packages/web.scm:4953 +#: gnu/packages/web.scm:4958 msgid "" "Uhttpmock is a project for mocking web service APIs which use HTTP or\n" "HTTPS. It provides a library, libuhttpmock, which implements recording and\n" "playback of HTTP request/response traces." msgstr "" -#: gnu/packages/web.scm:4989 +#: gnu/packages/web.scm:4994 msgid "" "Woof (Web Offer One File) is a small simple web server that\n" "can easily be invoked on a single file. Your partner can access the file with\n" "tools they trust (e.g. wget)." msgstr "" -#: gnu/packages/web.scm:5017 +#: gnu/packages/web.scm:5022 msgid "" "This package provides the shared build system for Netsurf project\n" "libraries." msgstr "" -#: gnu/packages/web.scm:5052 +#: gnu/packages/web.scm:5057 msgid "" "LibParserUtils is a library for building efficient parsers, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5082 +#: gnu/packages/web.scm:5087 msgid "" "Hubbub is an HTML5 compliant parsing library, written in C, which can\n" "parse both valid and invalid web content. It is developed as part of the\n" "NetSurf project." msgstr "" -#: gnu/packages/web.scm:5203 +#: gnu/packages/web.scm:5208 msgid "" "Ikiwiki is a wiki compiler, capable of generating a static set of web\n" "pages, but also incorporating dynamic features like a web based editor and\n" "commenting." msgstr "" -#: gnu/packages/web.scm:5227 +#: gnu/packages/web.scm:5232 msgid "" "LibWapcaplet provides a reference counted string internment system\n" "designed to store small strings and allow rapid comparison of them. It is\n" "developed as part of the Netsurf project." msgstr "" -#: gnu/packages/web.scm:5259 +#: gnu/packages/web.scm:5264 msgid "" "LibCSS is a CSS (Cascading Style Sheet) parser and selection engine,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5294 +#: gnu/packages/web.scm:5299 msgid "" "LibDOM is an implementation of the W3C DOM, written in C. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5321 +#: gnu/packages/web.scm:5326 msgid "" "Libsvgtiny takes some SVG as input and returns a list of paths and texts\n" "which can be rendered easily, as defined in\n" @@ -21597,65 +21855,65 @@ msgid "" "project." msgstr "" -#: gnu/packages/web.scm:5346 +#: gnu/packages/web.scm:5351 msgid "" "Libnsbmp is a decoding library for BMP and ICO image file formats,\n" "written in C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5369 +#: gnu/packages/web.scm:5374 msgid "" "Libnsgif is a decoding library for the GIF image file format, written in\n" "C. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5396 +#: gnu/packages/web.scm:5401 msgid "" "Libnslog provides a category-based logging library which supports\n" "complex logging filters, multiple log levels, and provides context through to\n" "client applications. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5420 +#: gnu/packages/web.scm:5425 msgid "" "Libnsutils provides a small number of useful utility routines. It is\n" "developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5443 +#: gnu/packages/web.scm:5448 msgid "" "Libnspsl is a library to generate a static code representation of the\n" "Public Suffix List. It is developed as part of the NetSurf project." msgstr "" -#: gnu/packages/web.scm:5469 +#: gnu/packages/web.scm:5474 msgid "" "@code{nsgenbind} is a tool to generate JavaScript to DOM bindings from\n" "w3c webidl files and a binding configuration file." msgstr "" -#: gnu/packages/web.scm:5592 +#: gnu/packages/web.scm:5597 msgid "" "NetSurf is a lightweight web browser that has its own layout and\n" "rendering engine entirely written from scratch. It is small and capable of\n" "handling many of the web standards in use today." msgstr "" -#: gnu/packages/web.scm:5631 +#: gnu/packages/web.scm:5636 msgid "" "Surfraw (Shell Users' Revolutionary Front Rage Against the Web)\n" "provides a unix command line interface to a variety of popular www search engines\n" "and similar services." msgstr "" -#: gnu/packages/web.scm:5664 +#: gnu/packages/web.scm:5669 msgid "" "darkhttpd is a simple static web server. It is\n" "standalone and does not need inetd or ucspi-tcp. It does not need any\n" "config files---you only have to specify the www root." msgstr "" -#: gnu/packages/web.scm:5695 +#: gnu/packages/web.scm:5700 msgid "" "GoAccess is a real-time web log analyzer and interactive viewer that\n" "runs in a terminal or through your browser. It provides fast and valuable\n" @@ -21663,7 +21921,7 @@ msgid "" "on the fly." msgstr "" -#: gnu/packages/web.scm:5749 +#: gnu/packages/web.scm:5754 msgid "" "Hitch is a performant TLS proxy based on @code{libev}. It terminates\n" "SSL/TLS connections and forwards the unencrypted traffic to a backend such\n" @@ -21671,7 +21929,7 @@ msgid "" "multicore machines." msgstr "" -#: gnu/packages/web.scm:5786 +#: gnu/packages/web.scm:5791 msgid "" "httptunnel creates a bidirectional virtual data connection\n" "tunnelled through HTTP (HyperText Transfer Protocol) requests. This can be\n" @@ -21689,7 +21947,7 @@ msgid "" "deployments." msgstr "" -#: gnu/packages/web.scm:5915 +#: gnu/packages/web.scm:5912 msgid "" "Varnish is a high-performance HTTP accelerator. It acts as a caching\n" "reverse proxy and load balancer. You install it in front of any server that\n" @@ -21697,14 +21955,14 @@ msgid "" "configuration language." msgstr "" -#: gnu/packages/web.scm:5949 +#: gnu/packages/web.scm:5946 msgid "" "This package provides a collection of modules (@dfn{vmods}) for the Varnish\n" "cache server, extending the @acronym{VCL, Varnish Configuration Language} with\n" "additional capabilities." msgstr "" -#: gnu/packages/web.scm:5976 +#: gnu/packages/web.scm:5973 msgid "" "@code{xinetd}, a more secure replacement for @code{inetd},\n" "listens for incoming requests over a network and launches the appropriate\n" @@ -21713,7 +21971,7 @@ msgid "" "used to start services with both privileged and non-privileged port numbers." msgstr "" -#: gnu/packages/web.scm:6023 +#: gnu/packages/web.scm:6020 msgid "" "Tidy is a console application which corrects and cleans up\n" "HTML and XML documents by fixing markup errors and upgrading\n" @@ -21724,14 +21982,14 @@ msgid "" "functions of Tidy." msgstr "" -#: gnu/packages/web.scm:6085 +#: gnu/packages/web.scm:6082 msgid "" "Hiawatha has been written with security in mind.\n" "Features include the ability to stop SQL injections, XSS and CSRF attacks and\n" "exploit attempts." msgstr "" -#: gnu/packages/web.scm:6107 +#: gnu/packages/web.scm:6104 msgid "" "Testing an HTTP Library can become difficult sometimes.\n" "@code{RequestBin} is fantastic for testing POST requests, but doesn't let you control the\n" @@ -21739,14 +21997,14 @@ msgid "" "JSON-encoded." msgstr "" -#: gnu/packages/web.scm:6132 +#: gnu/packages/web.scm:6129 msgid "" "@code{Pytest-httpbin} creates a @code{pytest} fixture that is dependency-injected\n" "into your tests. It automatically starts up a HTTP server in a separate thread running\n" "@code{httpbin} and provides your test with the URL in the fixture." msgstr "" -#: gnu/packages/web.scm:6199 +#: gnu/packages/web.scm:6196 msgid "" "This is a parser for HTTP messages written in C. It\n" "parses both requests and responses. The parser is designed to be used in\n" @@ -21756,40 +22014,40 @@ msgid "" "message stream (in a web server that is per connection)." msgstr "" -#: gnu/packages/web.scm:6236 +#: gnu/packages/web.scm:6233 msgid "" "@code{httpretty} is a helper for faking web requests,\n" "inspired by Ruby's @code{fakeweb}." msgstr "" -#: gnu/packages/web.scm:6254 +#: gnu/packages/web.scm:6251 msgid "" "jo is a command-line utility to create JSON objects or\n" "arrays. It creates a JSON string on stdout from words provided as\n" "command-line arguments or read from stdin." msgstr "" -#: gnu/packages/web.scm:6313 +#: gnu/packages/web.scm:6310 msgid "" "@code{ia} is a command-line tool for using\n" "@url{archive.org} from the command-line. It also implements the\n" "internetarchive python module for programmatic access to archive.org." msgstr "" -#: gnu/packages/web.scm:6364 +#: gnu/packages/web.scm:6361 msgid "" "@code{clf} is a command line tool for searching code\n" "snippets on @url{https://commandlinefu.com}." msgstr "" -#: gnu/packages/web.scm:6402 +#: gnu/packages/web.scm:6399 msgid "" "rss-bridge generates Atom feeds for social networking\n" "websites lacking feeds. Supported websites include Facebook, Twitter,\n" "Instagram and YouTube." msgstr "" -#: gnu/packages/web.scm:6440 +#: gnu/packages/web.scm:6437 msgid "" "LinkChecker is a website validator. It checks for broken\n" "links in websites. It is recursive and multithreaded providing output in\n" @@ -21798,67 +22056,67 @@ msgid "" "file links." msgstr "" -#: gnu/packages/web.scm:6488 +#: gnu/packages/web.scm:6485 msgid "" "Castor is a graphical client for plain-text protocols written in\n" "Rust with GTK. It currently supports the Gemini, Gopher and Finger\n" "protocols." msgstr "" -#: gnu/packages/web.scm:6575 +#: gnu/packages/web.scm:6572 msgid "" "This package includes Clearsilver, the CGI kit and HTML templating\n" "system." msgstr "" -#: gnu/packages/web.scm:6594 +#: gnu/packages/web.scm:6591 msgid "" "Py-ubjson is a Python module providing an Universal Binary JSON\n" "encoder/decoder based on the draft-12 specification for UBJSON." msgstr "" -#: gnu/packages/web.scm:6689 +#: gnu/packages/web.scm:6686 msgid "" "Apache Tomcat is a free implementation of the Java\n" "Servlet, JavaServer Pages, Java Expression Language and Java WebSocket\n" "technologies." msgstr "" -#: gnu/packages/web.scm:6743 +#: gnu/packages/web.scm:6740 msgid "" "This package contains helper classes for testing the Jetty\n" "Web Server." msgstr "" -#: gnu/packages/web.scm:6802 +#: gnu/packages/web.scm:6799 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides utility classes." msgstr "" -#: gnu/packages/web.scm:6880 +#: gnu/packages/web.scm:6877 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides IO-related utility classes." msgstr "" -#: gnu/packages/web.scm:6925 +#: gnu/packages/web.scm:6922 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides HTTP-related utility classes." msgstr "" -#: gnu/packages/web.scm:6959 +#: gnu/packages/web.scm:6956 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" "or embedded instantiation. This package provides the JMX management." msgstr "" -#: gnu/packages/web.scm:7045 +#: gnu/packages/web.scm:7042 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21866,7 +22124,7 @@ msgid "" "artifact." msgstr "" -#: gnu/packages/web.scm:7088 +#: gnu/packages/web.scm:7085 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21874,7 +22132,7 @@ msgid "" "infrastructure" msgstr "" -#: gnu/packages/web.scm:7144 +#: gnu/packages/web.scm:7141 msgid "" "The Jetty Web Server provides an HTTP server and Servlet\n" "container capable of serving static and dynamic content either from a standalone\n" @@ -21882,14 +22140,14 @@ msgid "" "container." msgstr "" -#: gnu/packages/web.scm:7308 +#: gnu/packages/web.scm:7305 msgid "" "Jsoup is a Java library for working with real-world HTML. It\n" "provides a very convenient API for extracting and manipulating data, using the\n" "best of DOM, CSS, and jQuery-like methods." msgstr "" -#: gnu/packages/web.scm:7337 +#: gnu/packages/web.scm:7334 msgid "" "Signpost is the easy and intuitive solution for signing\n" "HTTP messages on the Java platform in conformance with the OAuth Core 1.0a\n" @@ -21897,7 +22155,7 @@ msgid "" "combine it with different HTTP messaging layers." msgstr "" -#: gnu/packages/web.scm:7360 +#: gnu/packages/web.scm:7357 msgid "" "Tidyp is a program that can validate your HTML, as well as\n" "modify it to be more clean and standard. tidyp does not validate HTML 5.\n" @@ -21907,14 +22165,14 @@ msgid "" "based on this library, allowing Perl programmers to easily validate HTML." msgstr "" -#: gnu/packages/web.scm:7401 +#: gnu/packages/web.scm:7398 msgid "" "@code{HTML::Tidy} is an HTML checker in a handy dandy\n" "object. It's meant as a replacement for @code{HTML::Lint}, which is written\n" "in Perl but is not nearly as capable as @code{HTML::Tidy}." msgstr "" -#: gnu/packages/web.scm:7430 +#: gnu/packages/web.scm:7427 msgid "" "Geomyidae is a server for distributed hypertext protocol Gopher. Its\n" "features include:\n" @@ -21928,14 +22186,14 @@ msgid "" "@end enumerate\n" msgstr "" -#: gnu/packages/web.scm:7478 +#: gnu/packages/web.scm:7475 msgid "" "Cat avatar generator is a generator of cat pictures optimised\n" "to generate random avatars, or defined avatar from a \"seed\". This is a\n" "derivation by David Revoy from the original MonsterID by Andreas Gohr." msgstr "" -#: gnu/packages/web.scm:7548 +#: gnu/packages/web.scm:7545 msgid "" "nghttp2 implements the Hypertext Transfer Protocol, version\n" "2 (@dfn{HTTP/2}).\n" @@ -21961,14 +22219,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7647 +#: gnu/packages/web.scm:7644 msgid "" "Hpcguix-web provides a web interface to the list of packages\n" "provided by Guix. The list of packages is searchable and provides\n" "instructions on how to use Guix in a shared HPC environment." msgstr "" -#: gnu/packages/web.scm:7668 +#: gnu/packages/web.scm:7665 msgid "" "HTTrack allows you to download a World Wide Web site from\n" "the Internet to a local directory, building recursively all directories,\n" @@ -21982,7 +22240,7 @@ msgid "" "HTTrack is fully configurable, and has an integrated help system." msgstr "" -#: gnu/packages/web.scm:7703 +#: gnu/packages/web.scm:7700 msgid "" "buku is a powerful bookmark manager written in Python3 and SQLite3.\n" "@command{buku} can auto-import bookmarks from your browser and present them\n" @@ -21991,7 +22249,7 @@ msgid "" "@command{bukuserver}." msgstr "" -#: gnu/packages/web.scm:7724 +#: gnu/packages/web.scm:7721 msgid "" "Anonip masks the last bits of IPv4 and IPv6 addresses in log files.\n" "That way most of the relevant information is preserved, while the IP address\n" @@ -22006,7 +22264,7 @@ msgid "" "Anonip can also be uses as a Python module in your own Python application." msgstr "" -#: gnu/packages/web.scm:7758 +#: gnu/packages/web.scm:7755 msgid "" "Poussetaches (which literally means \"push tasks\" in\n" "French) is a lightweight asynchronous task execution service that aims to\n" @@ -22018,7 +22276,7 @@ msgid "" "returned." msgstr "" -#: gnu/packages/web.scm:7783 +#: gnu/packages/web.scm:7780 msgid "" "htmlcxx is a simple non-validating CSS1 and HTML parser for\n" "C++. Although there are several other HTML parsers available, htmlcxx has some\n" @@ -22036,7 +22294,7 @@ msgid "" "@end itemize" msgstr "" -#: gnu/packages/web.scm:7827 +#: gnu/packages/web.scm:7824 msgid "" "libRocket is a C++ user interface package based on the HTML\n" "and CSS standards. libRocket uses the open standards XHTML1.0 and\n" @@ -22053,11 +22311,11 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:7869 +#: gnu/packages/web.scm:7866 msgid "gmnisrv is a simple Gemini protocol server written in C." msgstr "" -#: gnu/packages/web.scm:7900 +#: gnu/packages/web.scm:7898 msgid "" "The openZIM project proposes offline storage solutions for\n" "content coming from the Web. The zimlib is the standard implementation of the\n" @@ -22089,14 +22347,14 @@ msgid "" "@end itemize\n" msgstr "" -#: gnu/packages/web.scm:8081 +#: gnu/packages/web.scm:8078 msgid "" "uriparser is a strictly RFC 3986 compliant URI parsing and\n" "handling library written in C89 (\"ANSI C\"). uriparser is fast and supports\n" "Unicode." msgstr "" -#: gnu/packages/web.scm:8115 +#: gnu/packages/web.scm:8112 msgid "" "Quark is an extremely small and simple HTTP GET/HEAD only\n" "web server for static content. TLS is not natively supported and should be\n" @@ -22266,53 +22524,53 @@ msgid "" "Enhancement}." msgstr "" -#: gnu/services/base.scm:276 +#: gnu/services/base.scm:279 msgid "" "Populate the @file{/etc/fstab} based on the given file\n" "system objects." msgstr "" -#: gnu/services/base.scm:314 +#: gnu/services/base.scm:317 msgid "" "Take care of syncing the root file\n" "system and of remounting it read-only when the system shuts down." msgstr "" -#: gnu/services/base.scm:481 +#: gnu/services/base.scm:484 msgid "" "Provide Shepherd services to mount and unmount the given\n" "file systems, as well as corresponding @file{/etc/fstab} entries." msgstr "" -#: gnu/services/base.scm:579 +#: gnu/services/base.scm:582 msgid "" "Seed the @file{/dev/urandom} pseudo-random number\n" "generator (RNG) with the value recorded when the system was last shut\n" "down." msgstr "" -#: gnu/services/base.scm:611 +#: gnu/services/base.scm:614 msgid "" "Run the @command{rngd} random number generation daemon to\n" "supply entropy to the kernel's pool." msgstr "" -#: gnu/services/base.scm:640 +#: gnu/services/base.scm:643 msgid "Initialize the machine's host name." msgstr "" -#: gnu/services/base.scm:670 +#: gnu/services/base.scm:673 msgid "Ensure the Linux virtual terminals run in UTF-8 mode." msgstr "" -#: gnu/services/base.scm:683 +#: gnu/services/base.scm:686 msgid "" "@emph{This service is deprecated in favor of the\n" "@code{keyboard-layout} field of @code{operating-system}.} Load the given list\n" "of console keymaps with @command{loadkeys}." msgstr "" -#: gnu/services/base.scm:743 +#: gnu/services/base.scm:746 msgid "" "Install the given fonts on the specified ttys (fonts are per\n" "virtual console on GNU/Linux). The value of this service is a list of\n" @@ -22330,66 +22588,66 @@ msgid "" "@end example\n" msgstr "" -#: gnu/services/base.scm:795 +#: gnu/services/base.scm:798 msgid "" "Provide a console log-in service as specified by its\n" "configuration value, a @code{login-configuration} object." msgstr "" -#: gnu/services/base.scm:1063 +#: gnu/services/base.scm:1066 msgid "" "Provide console login using the @command{agetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1128 +#: gnu/services/base.scm:1131 msgid "" "Provide console login using the @command{mingetty}\n" "program." msgstr "" -#: gnu/services/base.scm:1345 +#: gnu/services/base.scm:1348 msgid "" "Runs libc's @dfn{name service cache daemon} (nscd) with the\n" "given configuration---an @code{} object. @xref{Name\n" "Service Switch}, for an example." msgstr "" -#: gnu/services/base.scm:1384 +#: gnu/services/base.scm:1387 msgid "" "Run the syslog daemon, @command{syslogd}, which is\n" "responsible for logging system messages." msgstr "" -#: gnu/services/base.scm:1448 +#: gnu/services/base.scm:1451 msgid "" "Install the specified resource usage limits by populating\n" "@file{/etc/security/limits.conf} and using the @code{pam_limits}\n" "authentication module." msgstr "" -#: gnu/services/base.scm:1794 +#: gnu/services/base.scm:1804 msgid "Run the build daemon of GNU@tie{}Guix, aka. @command{guix-daemon}." msgstr "" -#: gnu/services/base.scm:1944 +#: gnu/services/base.scm:1961 msgid "" "Add a Shepherd service running @command{guix publish}, a\n" "command that allows you to share pre-built binaries with others over HTTP." msgstr "" -#: gnu/services/base.scm:2150 +#: gnu/services/base.scm:2167 msgid "" "Run @command{udev}, which populates the @file{/dev}\n" "directory dynamically. Get extra rules from the packages listed in the\n" "@code{rules} field of its value, @code{udev-configuration} object." msgstr "" -#: gnu/services/base.scm:2267 +#: gnu/services/base.scm:2284 msgid "Turn on the virtual memory swap area." msgstr "" -#: gnu/services/base.scm:2309 +#: gnu/services/base.scm:2326 msgid "" "Run GPM, the general-purpose mouse daemon, with the given\n" "command-line options. GPM allows users to use the mouse in the console,\n" @@ -22397,33 +22655,33 @@ msgid "" "@code{ps2} protocol, which works for both USB and PS/2 mice." msgstr "" -#: gnu/services/base.scm:2382 +#: gnu/services/base.scm:2399 msgid "" "Start the @command{kmscon} virtual terminal emulator for the\n" "Linux @dfn{kernel mode setting} (KMS)." msgstr "" -#: gnu/services/base.scm:2403 +#: gnu/services/base.scm:2416 #, scheme-format msgid "address '~a' lacks a network mask" msgstr "" -#: gnu/services/base.scm:2409 +#: gnu/services/base.scm:2422 #, scheme-format msgid "Write, say, @samp{\"~a/24\"} for a 24-bit network mask." msgstr "" -#: gnu/services/base.scm:2489 +#: gnu/services/base.scm:2502 #, scheme-format msgid "network links are currently ignored on GNU/Hurd~%" msgstr "" -#: gnu/services/base.scm:2514 +#: gnu/services/base.scm:2527 #, scheme-format msgid "ignoring network route for '~a'~%" msgstr "" -#: gnu/services/base.scm:2698 +#: gnu/services/base.scm:2711 msgid "" "Turn up the specified network interfaces upon startup,\n" "with the given IP address, gateway, netmask, and so on. The value for\n" @@ -22636,11 +22894,6 @@ msgid "" "on the web." msgstr "" -#, fuzzy -#~| msgid "This package contains the game data of GNU Freedink." -#~ msgid "This package contains graphics and sound files for Naev." -#~ msgstr "这个软件包包含了 GNU Freedink 的游戏数据。" - #, fuzzy #~ msgid "" #~ "Minetest is a sandbox construction game. Players can create and destroy\n" -- cgit v1.3 From a00a875f1c4043abf35f0bf534cb818995925132 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Thu, 3 Feb 2022 11:22:21 -0500 Subject: gnu: linux-libre 4.4: Update to 4.4.302. This is the last release of the 4.4 kernel series: https://lore.kernel.org/all/164387713713082@kroah.com/T/#t Discussion within Guix: https://lists.gnu.org/archive/html/guix-devel/2022-01/msg00020.html https://lists.gnu.org/archive/html/guix-devel/2022-02/msg00007.html * gnu/packages/linux.scm (linux-libre-4.4-version): Update to 4.4.302. (linux-libre-4.4-pristine-source): Update hash. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 7df64bbdae..2e2d01c656 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -465,7 +465,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (%upstream-linux-source version hash) deblob-scripts-4.9))) -(define-public linux-libre-4.4-version "4.4.301") +(define-public linux-libre-4.4-version "4.4.302") (define-public linux-libre-4.4-gnu-revision "gnu1") (define deblob-scripts-4.4 (linux-libre-deblob-scripts @@ -475,7 +475,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (base32 "0wdaj40pcq9wg5xnz2zj3jj8bawhfgqxcwp6dnavbf9lq0gca48p"))) (define-public linux-libre-4.4-pristine-source (let ((version linux-libre-4.4-version) - (hash (base32 "0x0zq8i806i04p0cl742wxh8pxc0wglww0in98gr2ayp7r8qf7am"))) + (hash (base32 "1cvnydc7y5xrb1c4yfmsl846dd1jfrr7xf62gxbhnkk01fs7n09m"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-4.4))) -- cgit v1.3 From 9907c158645ddbbe51d059a53d5cb43d65250d38 Mon Sep 17 00:00:00 2001 From: John Kehayias Date: Tue, 11 Jan 2022 22:34:16 +0000 Subject: gnu: Add xinitrc-xsession. * gnu/packages/wm.scm (xinitrc-xsession): New variable. Reviewed-by: Maxime Devos Signed-off-by: Liliana Marie Prikler --- gnu/packages/wm.scm | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index de67177730..9e11b599c3 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -70,9 +70,11 @@ #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) + #:use-module (guix gexp) #:use-module (guix git-download) #:use-module (guix build-system asdf) #:use-module (guix build-system cmake) + #:use-module (guix build-system copy) #:use-module (guix build-system gnu) #:use-module (guix build-system haskell) #:use-module (guix build-system meson) @@ -2355,6 +2357,47 @@ support, for easier unicode usage."))))) button is pressed on the root window.") (license license:public-domain))) +(define-public xinitrc-xsession + (let ((commit "cbfc77a1ccaf07b7d8a35f4d8007c7102f365374") + (revision "0")) + (package + (name "xinitrc-xsession") + (version (git-version "1" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://aur.archlinux.org/xinit-xsession.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12nv3qyjhy2l9mcb547f414d8bj79mhdhsra0g8x7x71b1xxl15b")))) + (build-system copy-build-system) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'install 'patch-xsession-file + (lambda _ + (let* ((xinitrc-desktop + (string-append #$output "/share/xsessions/xinitrc.desktop")) + (xinitrc-helper + (string-append #$output "/bin/xinitrcsession-helper"))) + (substitute* xinitrc-desktop + (("Exec=xinitrcsession-helper") + (string-append "Exec=" xinitrc-helper))))))) + #:install-plan + #~(list '("xinitrcsession-helper" "bin/") + '("xinitrc.desktop" "share/xsessions/")))) + (home-page "https://aur.archlinux.org/packages/xinit-xsession/") + (synopsis "Use ~/.xinitrc as an xsession from your display manager") + (description + "Xinitrc-xsession allows @code{~/.xinitrc} to be run as a session from +your display manager. Make @code{~/.xinitrc} executable and use this package +in your system configuration have this xsession available to your display +manager.") + (license license:gpl3)))) + (define-public xmenu (package (name "xmenu") -- cgit v1.3 From a82847dcf3bb691a3bd1dbbbdff1dbf150877774 Mon Sep 17 00:00:00 2001 From: jgart Date: Fri, 4 Feb 2022 04:06:44 -0500 Subject: gnu: Add emacs-blacken. * gnu/packages/emacs-xyz.scm (emacs-blacken): New variable. Signed-off-by: Liliana Marie Prikler --- gnu/packages/emacs-xyz.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 521d003a6b..444b761116 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -29822,6 +29822,39 @@ dict.org) from within Emacs.") to the @url{https://multitran.com} online dictionary.") (license license:gpl3+))) +(define-public emacs-blacken + (package + (name "emacs-blacken") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/pythonic-emacs/blacken") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pf9yllx0h78m925sdrg6hbv54ky2pi7cpkdsnx891qjsahvjnpy")))) + (build-system emacs-build-system) + (inputs + (list python-black)) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'patch-python-black + (lambda* (#:key inputs #:allow-other-keys) + (make-file-writable "blacken.el") + (emacs-substitute-variables "blacken.el" + ("blacken-executable" + (search-input-file inputs "/bin/black")))))))) + (home-page "https://github.com/pythonic-emacs/blacken") + (synopsis "Python Black for Emacs") + (description +"Use the @command{python} @command{black} package to reformat +@command{python} buffers.") + (license license:gpl3))) + (define-public emacs-kibit-helper (package (name "emacs-kibit-helper") -- cgit v1.3 From ba60aede97330c5145f3245eb67a70b984b59116 Mon Sep 17 00:00:00 2001 From: Danny Milosavljevic Date: Fri, 4 Feb 2022 22:27:17 +0100 Subject: gnu: dunst: Fix crash on invalid pixbuf notification. * gnu/packages/patches/dunst-1.7.3-fix-crash.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/dunst.scm (dunst)[source]<#:patches>: Add it. --- gnu/local.mk | 1 + gnu/packages/dunst.scm | 4 +++- gnu/packages/patches/dunst-1.7.3-fix-crash.patch | 21 +++++++++++++++++++++ 3 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 gnu/packages/patches/dunst-1.7.3-fix-crash.patch diff --git a/gnu/local.mk b/gnu/local.mk index f3487637ad..146b2a116a 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1005,6 +1005,7 @@ dist_patch_DATA = \ %D%/packages/patches/dovecot-trees-support-dovecot-2.3.patch \ %D%/packages/patches/dstat-fix-crash-when-specifying-delay.patch \ %D%/packages/patches/dstat-skip-devices-without-io.patch \ + %D%/packages/patches/dunst-1.7.3-fix-crash.patch \ %D%/packages/patches/dvd+rw-tools-add-include.patch \ %D%/packages/patches/dynaconf-unvendor-deps.patch \ %D%/packages/patches/ecl-16-format-directive-limit.patch \ diff --git a/gnu/packages/dunst.scm b/gnu/packages/dunst.scm index 998470e411..7446c3689a 100644 --- a/gnu/packages/dunst.scm +++ b/gnu/packages/dunst.scm @@ -27,6 +27,7 @@ #:use-module (guix build-system gnu) #:use-module (guix utils) #:use-module ((guix licenses) #:prefix license:) + #:use-module (gnu packages) #:use-module (gnu packages base) #:use-module (gnu packages freedesktop) #:use-module (gnu packages glib) @@ -48,7 +49,8 @@ (file-name (git-file-name name version)) (sha256 (base32 - "1ra0ii805w3rrs0qqbjxzl6i79ksz42lnvbglw18h4igkza21kzj")))) + "1ra0ii805w3rrs0qqbjxzl6i79ksz42lnvbglw18h4igkza21kzj")) + (patches (search-patches "dunst-1.7.3-fix-crash.patch")))) (build-system gnu-build-system) (arguments `(#:tests? #f ; no check target diff --git a/gnu/packages/patches/dunst-1.7.3-fix-crash.patch b/gnu/packages/patches/dunst-1.7.3-fix-crash.patch new file mode 100644 index 0000000000..8b51d820a4 --- /dev/null +++ b/gnu/packages/patches/dunst-1.7.3-fix-crash.patch @@ -0,0 +1,21 @@ +Author: Danny Milosavljevic +Date: 2022-02-04 21:52:05 CET + +Fix crash if notification contains invalid pixbuf data. + +diff -ru /gnu/store/5885czxhmhkckjqj939b0hd6b6czizwb-dunst-1.7.3-checkout/src/notification.c 5885czxhmhkckjqj939b0hd6b6czizwb-dunst-1.7.3-checkout/src/notification.c +--- /gnu/store/5885czxhmhkckjqj939b0hd6b6czizwb-dunst-1.7.3-checkout/src/notification.c 1970-01-01 01:00:01.000000000 +0100 ++++ 5885czxhmhkckjqj939b0hd6b6czizwb-dunst-1.7.3-checkout/src/notification.c 2022-02-04 19:05:57.534906600 +0100 +@@ -359,8 +359,10 @@ + g_clear_pointer(&n->icon_id, g_free); + + GdkPixbuf *icon = icon_get_for_data(new_icon, &n->icon_id, draw_get_scale()); +- n->icon = gdk_pixbuf_to_cairo_surface(icon); +- g_object_unref(icon); ++ if (icon) { ++ n->icon = gdk_pixbuf_to_cairo_surface(icon); ++ g_object_unref(icon); ++ } + } + + /* see notification.h */ -- cgit v1.3 From f0e638a57695134d79abc74d6c6e360cbd20e470 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Fri, 4 Feb 2022 20:06:20 +0100 Subject: gnu: sooperlooper: Build with libsigc++@2. * gnu/packages/music.scm (sooperlooper)[inputs]: Change from LIBSIGC++ to LIBSIGC++-2. --- gnu/packages/music.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 211f7a6b11..ddb1126a47 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -4039,7 +4039,7 @@ with a number of bugfixes and changes to improve IT playback.") ("liblo" ,liblo) ("rubberband" ,rubberband) ("libxml2" ,libxml2) - ("libsigc++" ,libsigc++) + ("libsigc++" ,libsigc++-2) ("ncurses" ,ncurses))) (native-inputs (list pkg-config)) -- cgit v1.3 From 2d5c270ec4f39b81ad07c6a4fc847c9e5997b822 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Fri, 4 Feb 2022 20:06:58 +0100 Subject: gnu: python-pybtex: Fix test failure. * gnu/packages/python-xyz.scm (python-pybtex)[arguments]: Run nosetests directly instead of via setup.py. --- gnu/packages/python-xyz.scm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 46419e8ace..7c1b5e8ed3 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -21816,7 +21816,12 @@ working with iterables.") (inputs (list python-latexcodec python-pyyaml python-six)) (arguments - `(#:test-target "nosetests")) + (list + #:phases #~(modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "nosetests"))))))) (home-page "https://pybtex.org/") (synopsis "BibTeX-compatible bibliography processor") (description "Pybtex is a BibTeX-compatible bibliography processor written -- cgit v1.3 From 04cd0ece6219fef2f18ee62442a913a02495fb50 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Fri, 4 Feb 2022 18:24:23 -0500 Subject: gnu: audacity: Help Audacity find FFmpeg, for real. This is a followup to commit 6589966b976764e2a197e2bf2b847592dc8715a7, and fixes . * gnu/packages/patches/audacity-ffmpeg-fallback.patch: Fix typo. --- gnu/packages/patches/audacity-ffmpeg-fallback.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/patches/audacity-ffmpeg-fallback.patch b/gnu/packages/patches/audacity-ffmpeg-fallback.patch index d570d8f605..b78956070a 100644 --- a/gnu/packages/patches/audacity-ffmpeg-fallback.patch +++ b/gnu/packages/patches/audacity-ffmpeg-fallback.patch @@ -32,7 +32,7 @@ index 8c5f06d7c..00810e4d0 100644 + if (FFMPEG_FOUND) + pkg_get_variable(LIBAVCODEC_LIBDIR libavcodec libdir) + list(APPEND DEFINITIONS PRIVATE -+ "-DFFMPEG_PC_LIBDIR=L\"${LIBAVCODEC_LIBDIR}\"") ++ "-DFFMPEG_PC_LIBDIR=\"${LIBAVCODEC_LIBDIR}\"") + endif() + audacity_library( lib-ffmpeg-support "${SOURCES}" "${LIBRARIES}" -- cgit v1.3 From 41efa45508b292d947371dd6b9df943c33727c3d Mon Sep 17 00:00:00 2001 From: Justin Martin Date: Tue, 1 Feb 2022 14:48:35 -0500 Subject: home: services: import i18n module. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes . Reported by Roland Everaert and Holger Peters . * gnu/home/services.scm (%initialize-gettext): remove setlocale for guile scripts. (compute-on-first-login-script): add module import for i18n. (compute-on-change-gexp): add module import for i18n. Signed-off-by: Ludovic Courtès --- gnu/home/services.scm | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/gnu/home/services.scm b/gnu/home/services.scm index 1c860d7b01..b7ea6f08dd 100644 --- a/gnu/home/services.scm +++ b/gnu/home/services.scm @@ -30,6 +30,7 @@ #:use-module (guix discovery) #:use-module (guix diagnostics) #:use-module (guix i18n) + #:use-module (guix modules) #:use-module (srfi srfi-1) #:use-module (ice-9 match) @@ -282,13 +283,13 @@ will be put in @file{~/.guix-home/files}."))) #~(begin (bindtextdomain %gettext-domain (string-append #$guix "/share/locale")) - (textdomain %gettext-domain) - (setlocale LC_ALL ""))) + (textdomain %gettext-domain))) (define (compute-on-first-login-script _ gexps) (program-file "on-first-login" - #~(begin + (with-imported-modules (source-module-closure '((guix i18n))) + #~(begin (use-modules (guix i18n)) #$%initialize-gettext @@ -309,7 +310,7 @@ will be put in @file{~/.guix-home/files}."))) (display (G_ "XDG_RUNTIME_DIR doesn't exists, on-first-login script won't execute anything. You can check if xdg runtime directory exists, XDG_RUNTIME_DIR variable is set to appropriate value and manually execute the -script by running '$HOME/.guix-home/on-first-login'"))))))) +script by running '$HOME/.guix-home/on-first-login'")))))))) (define (on-first-login-script-entry on-first-login) "Return, as a monadic value, an entry for the on-first-login script @@ -401,7 +402,8 @@ with one gexp, but many times, and all gexps must be idempotent."))) ;;; (define (compute-on-change-gexp eval-gexps? pattern-gexp-tuples) - #~(begin + (with-imported-modules (source-module-closure '((guix i18n))) + #~(begin (use-modules (guix i18n)) #$%initialize-gettext @@ -486,7 +488,7 @@ with one gexp, but many times, and all gexps must be idempotent."))) (display (G_ "On-change gexps evaluation finished.\n\n"))) (display "\ On-change gexps won't be evaluated; evaluation has been disabled in the -service configuration")))) +service configuration"))))) (define home-run-on-change-service-type (service-type (name 'home-run-on-change) -- cgit v1.3 From 2d4c22b0aa497f8a5e57a453b1dbf3ea98747c5f Mon Sep 17 00:00:00 2001 From: Simon South Date: Wed, 2 Feb 2022 09:47:05 -0500 Subject: gnu: tbb: Fix test on AArch64. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/patches/tbb-fix-test-on-aarch64.patch: New file. * gnu/local.mk: Add it. * gnu/packages/tbb.scm (tbb)[source]: Apply it. Signed-off-by: Ludovic Courtès --- gnu/local.mk | 1 + gnu/packages/patches/tbb-fix-test-on-aarch64.patch | 35 ++++++++++++++++++++++ gnu/packages/tbb.scm | 4 +++ 3 files changed, 40 insertions(+) create mode 100644 gnu/packages/patches/tbb-fix-test-on-aarch64.patch diff --git a/gnu/local.mk b/gnu/local.mk index 146b2a116a..5c4d35fc36 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1855,6 +1855,7 @@ dist_patch_DATA = \ %D%/packages/patches/tao-fix-parser-types.patch \ %D%/packages/patches/tar-remove-wholesparse-check.patch \ %D%/packages/patches/tar-skip-unreliable-tests.patch \ + %D%/packages/patches/tbb-fix-test-on-aarch64.patch \ %D%/packages/patches/tcc-boot-0.9.27.patch \ %D%/packages/patches/tclxml-3.2-install.patch \ %D%/packages/patches/tcsh-fix-autotest.patch \ diff --git a/gnu/packages/patches/tbb-fix-test-on-aarch64.patch b/gnu/packages/patches/tbb-fix-test-on-aarch64.patch new file mode 100644 index 0000000000..3a6003591e --- /dev/null +++ b/gnu/packages/patches/tbb-fix-test-on-aarch64.patch @@ -0,0 +1,35 @@ +From 013035b4e9af39f506e87ae6b755c3363e768d4d Mon Sep 17 00:00:00 2001 +From: Vladislav Shchapov +Date: Thu, 23 Dec 2021 19:17:24 +0500 +Subject: [PATCH] Fix issue #687 (test_eh_thread) (#697) + +Signed-off-by: Vladislav Shchapov +--- + test/tbb/test_eh_thread.cpp | 4 +++- + 1 file changed, 3 insertions(+), 1 deletion(-) + +diff --git a/test/tbb/test_eh_thread.cpp b/test/tbb/test_eh_thread.cpp +index aa6d764d..af291f48 100644 +--- a/test/tbb/test_eh_thread.cpp ++++ b/test/tbb/test_eh_thread.cpp +@@ -36,6 +36,7 @@ + // TODO: enable limitThreads with sanitizer under docker + #if TBB_USE_EXCEPTIONS && !_WIN32 && !__ANDROID__ + ++#include + #include + #include + #include +@@ -73,7 +74,8 @@ public: + mValid = false; + pthread_attr_t attr; + // Limit the stack size not to consume all virtual memory on 32 bit platforms. +- if (pthread_attr_init(&attr) == 0 && pthread_attr_setstacksize(&attr, 100*1024) == 0) { ++ std::size_t stacksize = utils::max(128*1024, PTHREAD_STACK_MIN); ++ if (pthread_attr_init(&attr) == 0 && pthread_attr_setstacksize(&attr, stacksize) == 0) { + mValid = pthread_create(&mHandle, &attr, thread_routine, /* arg = */ nullptr) == 0; + } + } +-- +2.34.0 + diff --git a/gnu/packages/tbb.scm b/gnu/packages/tbb.scm index e5d8394f5f..ef92e6db69 100644 --- a/gnu/packages/tbb.scm +++ b/gnu/packages/tbb.scm @@ -41,6 +41,10 @@ (sha256 (base32 "0ih727g802j9lvwkqhw021bk1wb7xlvfgd0vl1i6jng4am1wv7vq")))) + (patches (list + ;; Backport an upstream commit that prevents the + ;; "test_eh_thread" test failing on AArch64. + (search-patch "tbb-fix-test-on-aarch64.patch"))))) (build-system cmake-build-system) (arguments `(#:configure-flags '("-DTBB_STRICT=OFF"))) ;; Don't fail on warnings -- cgit v1.3 From 4e53625cc8b083df5717ff77756d099679002e26 Mon Sep 17 00:00:00 2001 From: Simon South Date: Wed, 2 Feb 2022 09:47:06 -0500 Subject: gnu: tbb: Update to 2021.5.0. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/tbb.scm (tbb): Update to 2021.5.0. Signed-off-by: Ludovic Courtès --- gnu/packages/tbb.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/tbb.scm b/gnu/packages/tbb.scm index ef92e6db69..e8fbc0f97e 100644 --- a/gnu/packages/tbb.scm +++ b/gnu/packages/tbb.scm @@ -31,7 +31,7 @@ (define-public tbb (package (name "tbb") - (version "2021.4.0") + (version "2021.5.0") (source (origin (method git-fetch) (uri (git-reference @@ -40,7 +40,7 @@ (file-name (git-file-name name version)) (sha256 (base32 - "0ih727g802j9lvwkqhw021bk1wb7xlvfgd0vl1i6jng4am1wv7vq")))) + "1z0pqzfx63zrmyqdvvkk8vl5dc0i0n5cimdkrypd50ig4d4yi7sc")) (patches (list ;; Backport an upstream commit that prevents the ;; "test_eh_thread" test failing on AArch64. -- cgit v1.3 From f79bb5fb3cd0e0cab4c2ed0dfa1c535e2e613983 Mon Sep 17 00:00:00 2001 From: Maxime Devos Date: Fri, 4 Feb 2022 11:16:46 +0000 Subject: gnu: guile-fibers: Add (fibers io-wakeup). MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch is required by gnunet-scheme. It has been submitted upstream at , but there has not been any response so far. * gnu/packages/patches/guile-fibers-wait-for-io-readiness.patch: New file. * gnu/packages/guile-xyz.scm (guile-fibers-1.1)[source]{patches}: Add it. * gnu/local.mk (dist_patch_DATA): Add it. Signed-off-by: Ludovic Courtès --- gnu/local.mk | 1 + gnu/packages/guile-xyz.scm | 14 +- .../guile-fibers-wait-for-io-readiness.patch | 346 +++++++++++++++++++++ 3 files changed, 359 insertions(+), 2 deletions(-) create mode 100644 gnu/packages/patches/guile-fibers-wait-for-io-readiness.patch diff --git a/gnu/local.mk b/gnu/local.mk index 5c4d35fc36..b906d234fc 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1232,6 +1232,7 @@ dist_patch_DATA = \ %D%/packages/patches/guile-3.0-linux-syscalls.patch \ %D%/packages/patches/guile-3.0.7-psyntax-nil.patch \ %D%/packages/patches/guile-fibers-destroy-peer-schedulers.patch \ + %D%/packages/patches/guile-fibers-wait-for-io-readiness.patch \ %D%/packages/patches/guile-gdbm-ffi-support-gdbm-1.14.patch \ %D%/packages/patches/guile-git-adjust-for-libgit2-1.2.0.patch \ %D%/packages/patches/guile-present-coding.patch \ diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index f35ba43057..31405de9eb 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -39,6 +39,7 @@ ;;; Copyright © 2021 Zelphir Kaltstahl ;;; Copyright © 2021 Oleg Pykhalov ;;; Copyright © 2021, 2022 Artyom V. Poptsov +;;; Copyright © 2022 Maxime Devos ;;; ;;; This file is part of GNU Guix. ;;; @@ -612,10 +613,17 @@ Unix-style DSV format and RFC 4180 format.") version "/fibers-" version ".tar.gz")) (sha256 (base32 - "1lqz39shlhif5fhpyv2wili0yzb0nhf5ciiv7mdqsq0vljirhrm0")))) + "1lqz39shlhif5fhpyv2wili0yzb0nhf5ciiv7mdqsq0vljirhrm0")) + (patches + (search-patches "guile-fibers-wait-for-io-readiness.patch")))) (build-system gnu-build-system) (arguments '(#:phases (modify-phases %standard-phases + ;; This is required to make + ;; "guile-fibers-wait-for-io-readiness.patch" work. + (add-after 'unpack 'regenerate-autotools + (lambda _ + (delete-file "configure"))) (add-after 'install 'mode-guile-objects (lambda* (#:key outputs #:allow-other-keys) ;; .go files are installed to "lib/guile/X.Y/cache". @@ -629,7 +637,9 @@ Unix-style DSV format and RFC 4180 format.") (rename-file old new) #t)))))) (native-inputs - (list texinfo pkg-config)) + (list texinfo pkg-config autoconf automake libtool + ;; Gettext brings 'AC_LIB_LINKFLAGS_FROM_LIBS' + gettext-minimal)) (inputs (list guile-3.0)) (synopsis "Lightweight concurrency facility for Guile") diff --git a/gnu/packages/patches/guile-fibers-wait-for-io-readiness.patch b/gnu/packages/patches/guile-fibers-wait-for-io-readiness.patch new file mode 100644 index 0000000000..d5d5cf44e6 --- /dev/null +++ b/gnu/packages/patches/guile-fibers-wait-for-io-readiness.patch @@ -0,0 +1,346 @@ +Scheme-GNUnet requires the new operations 'wait-until-port-readable-operation' +and 'wait-until-port-readable-operation' for communicating with services. +This patch has been previously submitted at , +on Sep 16, 2021. As of Feb 3, 2022, upstream has not responded yet. + +diff --git a/Makefile.am b/Makefile.am +index e2db57e..0134255 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -33,6 +33,7 @@ SOURCES = \ + fibers/deque.scm \ + fibers/epoll.scm \ + fibers/interrupts.scm \ ++ fibers/io-wakeup.scm \ + fibers/nameset.scm \ + fibers/operations.scm \ + fibers/posix-clocks.scm \ +@@ -67,6 +68,7 @@ TESTS = \ + tests/conditions.scm \ + tests/channels.scm \ + tests/foreign.scm \ ++ tests/io-wakeup.scm \ + tests/parameters.scm \ + tests/preemption.scm \ + tests/speedup.scm +diff --git a/fibers.texi b/fibers.texi +index 52f7177..0990c8f 100644 +--- a/fibers.texi ++++ b/fibers.texi +@@ -12,6 +12,7 @@ This manual is for Fibers (version @value{VERSION}, updated + @value{UPDATED}) + + Copyright 2016-2022 Andy Wingo ++Copyright 2021 Maxime Devos + + @quotation + @c For more information, see COPYING.docs in the fibers +@@ -453,6 +454,7 @@ of operations for channels and timers, and an internals interface. + * Channels:: Share memory by communicating. + * Timers:: Operations on time. + * Conditions:: Waiting for simple state changes. ++* Port Readiness:: Waiting until a port is ready for I/O. + * REPL Commands:: Experimenting with Fibers at the console. + * Schedulers and Tasks:: Fibers are built from lower-level primitives. + @end menu +@@ -722,6 +724,28 @@ signalled. Equivalent to @code{(perform-operation (wait-operation + cvar))}. + @end defun + ++@node Port Readiness ++@section Port Readiness ++ ++These two operations can be used on file ports to wait until ++they are readable or writable. Spurious wake-ups are possible. ++This is complementary to Guile's suspendable ports. ++ ++@example ++(use-modules (fibers io-wakeup)) ++@end example ++ ++@defun wait-until-port-readable-operation port ++Make an operation that will succeed with no values when the input ++port @var{port} becomes readable. For passive sockets, this operation ++succeeds when a connection becomes available. ++@end defun ++ ++@defun wait-until-port-writable-operation ++Make an operation that will succeed with no values when the output ++port @var{port} becomes writable. ++@end defun ++ + @node REPL Commands + @section REPL Commands + +diff --git a/fibers/io-wakeup.scm b/fibers/io-wakeup.scm +new file mode 100644 +index 0000000..5df03f1 +--- /dev/null ++++ b/fibers/io-wakeup.scm +@@ -0,0 +1,93 @@ ++;; Fibers: cooperative, event-driven user-space threads. ++ ++;;;; Copyright (C) 2016,2021 Free Software Foundation, Inc. ++;;;; Copyright (C) 2021 Maxime Devos ++;;;; ++;;;; This library is free software; you can redistribute it and/or ++;;;; modify it under the terms of the GNU Lesser General Public ++;;;; License as published by the Free Software Foundation; either ++;;;; version 3 of the License, or (at your option) any later version. ++;;;; ++;;;; This library 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 ++;;;; Lesser General Public License for more details. ++;;;; ++;;;; You should have received a copy of the GNU Lesser General Public ++;;;; License along with this library; if not, write to the Free Software ++;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ++;;;; ++ ++(define-module (fibers io-wakeup) ++ #:use-module (fibers scheduler) ++ #:use-module (fibers operations) ++ #:use-module (ice-9 atomic) ++ #:use-module (ice-9 match) ++ #:use-module (ice-9 threads) ++ #:use-module (ice-9 ports internal) ++ #:export (wait-until-port-readable-operation ++ wait-until-port-writable-operation)) ++ ++(define *poll-sched* (make-atomic-box #f)) ++ ++(define (poll-sched) ++ (or (atomic-box-ref *poll-sched*) ++ (let ((sched (make-scheduler))) ++ (cond ++ ((atomic-box-compare-and-swap! *poll-sched* #f sched)) ++ (else ++ ;; FIXME: Would be nice to clean up this thread at some point. ++ (call-with-new-thread ++ (lambda () ++ (define (finished?) #f) ++ (run-scheduler sched finished?))) ++ sched))))) ++ ++;; These procedure are subject to spurious wakeups. ++ ++(define (readable? port) ++ "Test if PORT is writable." ++ (match (select (vector port) #() #() 0) ++ ((#() #() #()) #f) ++ ((#(_) #() #()) #t))) ++ ++(define (writable? port) ++ "Test if PORT is writable." ++ (match (select #() (vector port) #() 0) ++ ((#() #() #()) #f) ++ ((#() #(_) #()) #t))) ++ ++(define (make-wait-operation ready? schedule-when-ready port port-ready-fd this-procedure) ++ (make-base-operation #f ++ (lambda _ ++ (and (ready? port) values)) ++ (lambda (flag sched resume) ++ (define (commit) ++ (match (atomic-box-compare-and-swap! flag 'W 'S) ++ ('W (resume values)) ++ ('C (commit)) ++ ('S #f))) ++ (if sched ++ (schedule-when-ready ++ sched (port-ready-fd port) commit) ++ (schedule-task ++ (poll-sched) ++ (lambda () ++ (perform-operation (this-procedure port)) ++ (commit))))))) ++ ++(define (wait-until-port-readable-operation port) ++ "Make an operation that will succeed when PORT is readable." ++ (unless (input-port? port) ++ (error "refusing to wait forever for input on non-input port")) ++ (make-wait-operation readable? schedule-task-when-fd-readable port ++ port-read-wait-fd ++ wait-until-port-readable-operation)) ++ ++(define (wait-until-port-writable-operation port) ++ "Make an operation that will succeed when PORT is writable." ++ (unless (output-port? port) ++ (error "refusing to wait forever for output on non-output port")) ++ (make-wait-operation writable? schedule-task-when-fd-writable port ++ port-write-wait-fd ++ wait-until-port-writable-operation)) +diff --git a/tests/io-wakeup.scm b/tests/io-wakeup.scm +new file mode 100644 +index 0000000..c14fa81 +--- /dev/null ++++ b/tests/io-wakeup.scm +@@ -0,0 +1,167 @@ ++;; Fibers: cooperative, event-driven user-space threads. ++ ++;;;; Copyright (C) 2016 Free Software Foundation, Inc. ++;;;; Copyright (C) 2021 Maxime Devos ++;;;; ++;;;; This library is free software; you can redistribute it and/or ++;;;; modify it under the terms of the GNU Lesser General Public ++;;;; License as published by the Free Software Foundation; either ++;;;; version 3 of the License, or (at your option) any later version. ++;;;; ++;;;; This library 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 ++;;;; Lesser General Public License for more details. ++;;;; ++;;;; You should have received a copy of the GNU Lesser General Public ++;;;; License along with this library; if not, write to the Free Software ++;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ++;;;; ++ ++(define-module (tests io-wakeup) ++ #:use-module (rnrs bytevectors) ++ #:use-module (ice-9 control) ++ #:use-module (ice-9 suspendable-ports) ++ #:use-module (ice-9 binary-ports) ++ #:use-module (fibers) ++ #:use-module (fibers io-wakeup) ++ #:use-module (fibers operations) ++ #:use-module (fibers timers)) ++ ++(define failed? #f) ++ ++(define-syntax-rule (assert-equal expected actual) ++ (let ((x expected)) ++ (format #t "assert ~s equal to ~s: " 'actual x) ++ (force-output) ++ (let ((y actual)) ++ (cond ++ ((equal? x y) (format #t "ok\n")) ++ (else ++ (format #t "no (got ~s)\n" y) ++ (set! failed? #t)))))) ++ ++(define-syntax-rule (assert-run-fibers-terminates exp) ++ (begin ++ (format #t "assert run-fibers on ~s terminates: " 'exp) ++ (force-output) ++ (let ((start (get-internal-real-time))) ++ (call-with-values (lambda () (run-fibers (lambda () exp))) ++ (lambda vals ++ (format #t "ok (~a s)\n" (/ (- (get-internal-real-time) start) ++ 1.0 internal-time-units-per-second)) ++ (apply values vals)))))) ++ ++(define-syntax-rule (assert-run-fibers-returns (expected ...) exp) ++ (begin ++ (call-with-values (lambda () (assert-run-fibers-terminates exp)) ++ (lambda run-fiber-return-vals ++ (assert-equal '(expected ...) run-fiber-return-vals))))) ++ ++ ++;; Note that theoretically, on very slow systems, SECONDS might need ++;; to be increased. However, readable/timeout? and writable/timeout? ++;; call this 5 times in a loop anyways, so the effective timeout is ++;; a fourth of a second, which should be plenty in practice. ++(define* (with-timeout op #:key (seconds 0.05) (wrap values)) ++ (choice-operation op ++ (wrap-operation (sleep-operation seconds) wrap))) ++ ++(define* (readable/timeout? port #:key (allowed-spurious 5)) ++ "Does waiting for readability time-out? ++Allow @var{allowed-spurious} spurious wakeups." ++ (or (perform-operation ++ (with-timeout ++ (wrap-operation (wait-until-port-readable-operation port) ++ (lambda () #f)) ++ #:wrap (lambda () #t))) ++ (and (> allowed-spurious 0) ++ (readable/timeout? port #:allowed-spurious ++ (- allowed-spurious 1))))) ++ ++(define* (writable/timeout? port #:key (allowed-spurious 5)) ++ "Does waiting for writability time-out? ++Allow @var{allowed-spurious} spurious wakeups." ++ (or (perform-operation ++ (with-timeout ++ (wrap-operation (wait-until-port-writable-operation port) ++ (lambda () #f)) ++ #:wrap (lambda () #t))) ++ (and (> allowed-spurious 0) ++ (writable/timeout? port #:allowed-spurious ++ (- allowed-spurious 1))))) ++ ++;; Tests: ++;; * wait-until-port-readable-operaton / wait-until-port-writable-operation ++;; blocks if the port isn't ready for input / output. ++;; ++;; This is tested with a pipe (read & write) ++;; and a listening socket (read, or accept in this case). ++;; ++;; Due to the possibility of spurious wakeups, ++;; a limited few spurious wakeups are tolerated. ++;; ++;; * these operations succeed if the port is ready for input / output. ++;; ++;; These are again tested with a pipe and a listening socket ++;; ++;; Blocking is detected with a small time-out. ++ ++(define (make-listening-socket) ++ (let ((server (socket PF_INET SOCK_DGRAM 0))) ++ (bind server AF_INET INADDR_LOOPBACK 0) ++ server)) ++ ++(let ((s (make-listening-socket))) ++ (assert-run-fibers-returns (#t) ++ (readable/timeout? s)) ++ (assert-equal #t (readable/timeout? s)) ++ (close s)) ++ ++(define (set-nonblocking! sock) ++ (let ((flags (fcntl sock F_GETFL))) ++ (fcntl sock F_SETFL (logior O_NONBLOCK flags)))) ++ ++(define-syntax-rule (with-pipes (A B) exp exp* ...) ++ (let* ((pipes (pipe)) ++ (A (car pipes)) ++ (B (cdr pipes))) ++ exp exp* ... ++ (close A) ++ (close B))) ++ ++(with-pipes (A B) ++ (setvbuf A 'none) ++ (setvbuf B 'none) ++ (assert-run-fibers-returns (#t) ++ (readable/timeout? A)) ++ (assert-equal #t (readable/timeout? A)) ++ ++ ;; The buffer is empty, so writability is expected. ++ (assert-run-fibers-returns (#f) ++ (writable/timeout? B)) ++ (assert-equal #f (writable/timeout? B)) ++ ++ ;; Fill the buffer ++ (set-nonblocking! B) ++ (let ((bv (make-bytevector 1024))) ++ (let/ec k ++ (parameterize ((current-write-waiter k)) ++ (let loop () ++ (put-bytevector B bv) ++ (loop))))) ++ ++ ;; As the buffer is full, writable/timeout? should return ++ ;; #t. ++ (assert-run-fibers-returns (#t) ++ (writable/timeout? B)) ++ ;; There's plenty to read now, so readable/timeout? should ++ ;; return #f. ++ (assert-run-fibers-returns (#f) ++ (readable/timeout? A))) ++ ++(exit (if failed? 1 0)) ++ ++;; Local Variables: ++;; eval: (put 'with-pipes 'scheme-indent-function 1) ++;; End: -- cgit v1.3 From 26da81afed73a35df65b7bf452eb56201ac17685 Mon Sep 17 00:00:00 2001 From: Maxime Devos Date: Fri, 4 Feb 2022 11:23:36 +0000 Subject: gnu: Add gnunet-scheme. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is not the same as guile-gnunet, see the description. * gnu/packages/gnunet.scm (gnunet-scheme): New variable. Signed-off-by: Ludovic Courtès --- gnu/packages/gnunet.scm | 58 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/gnu/packages/gnunet.scm b/gnu/packages/gnunet.scm index 5c0dd348cc..1c09c9047b 100644 --- a/gnu/packages/gnunet.scm +++ b/gnu/packages/gnunet.scm @@ -11,6 +11,7 @@ ;;; Copyright © 2019 Brett Gilio ;;; Copyright © 2020 Tanguy Le Carrour ;;; Copyright © 2020 Michael Rohleder +;;; Copyright © 2022 Maxime Devos ;;; ;;; This file is part of GNU Guix. ;;; @@ -42,6 +43,7 @@ #:use-module (gnu packages groff) #:use-module (gnu packages gtk) #:use-module (gnu packages guile) + #:use-module (gnu packages guile-xyz) #:use-module (gnu packages gstreamer) #:use-module (gnu packages libidn) #:use-module (gnu packages linux) @@ -58,10 +60,12 @@ #:use-module (gnu packages pulseaudio) #:use-module (gnu packages python) #:use-module (gnu packages sqlite) + #:use-module (gnu packages text-editors) #:use-module (gnu packages tls) #:use-module (gnu packages upnp) #:use-module (gnu packages video) #:use-module (gnu packages vim) + #:use-module (gnu packages xorg) #:use-module (gnu packages web) #:use-module (gnu packages xiph) #:use-module (gnu packages backup) @@ -368,6 +372,60 @@ services.") (home-page "https://gnu.org/software/guix") (license license:gpl3+)))) +(define-public gnunet-scheme + (package + (name "gnunet-scheme") + (version "0.2") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://git.gnunet.org/git/gnunet-scheme.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0a11n58m346vs2khns2hfnxv8lbscf8aaqzhmq0d7nwdpn808nrp")) + (modules '((guix build utils))) + ;; XXX: Work-around + ;; , + ;; this can be removed once Guile > 3.0.7 is released. + (snippet '(substitute* '("gnu/gnunet/config/parser.scm" + "tests/config-parser.scm") + (("#\\{\\$\\{\\}\\}#") "#{${;};}#") + (("#\\{\\$\\{:-\\}\\}#") "#{${;:-};}#") + (("#\\{\\$\\{\\}\\}# #\\{\\$\\{:-\\}\\}#") + "#{$\\x7b;\\x7d;}# #{$\\x7b;:-\\x7d;}#") + (("'#\\{\\$\\{\\}\\}# '#\\{\\$\\{:-\\}\\}#") + "'#{$\\x7b;\\x7d;}# '#{$\\x7b;:-\\x7d;}#"))))) + (build-system gnu-build-system) + (inputs (list guile-3.0)) ;for pkg-config + (propagated-inputs (list guile-bytestructures guile-gcrypt guile-pfds + guile-fibers-1.1)) + (native-inputs (list guile-3.0 ;as a compiler + ;; for cross-compilation, the guile inputs need to be + ;; native-inputs as well. + guile-bytestructures + guile-gcrypt + guile-pfds + guile-fibers-1.1 + automake + autoconf + pkg-config + texmacs + xvfb-run ;for documentation + guile-quickcheck)) ;for tests + (synopsis "Guile implementation of GNUnet client libraries") + (description + "This package provides Guile modules for connecting to the NSE (network +size estimation) and DHT (distributed hash table) services of GNUnet. It also +has infrastructure for writing new GNUnet services and connecting to them and +can be used from multi-threaded environments. It is not to be confused with +@code{guile-gnunet} -- @code{guile-gnunet} supports a different set of services.") + ;; Most code is licensed as AGPL and a few modules are licensed as LGPL + ;; or GPL. Documentation is licensed as GFDL. + (license (list license:agpl3+ license:gpl3+ license:fdl1.3+ license:lgpl3+)) + (home-page "https://git.gnunet.org/gnunet-scheme.git"))) + ;; FIXME: "gnunet-setup" segfaults under certain conditions and "gnunet-gtk" ;; does not seem to be fully functional. This has been reported upstream: ;; http://lists.gnu.org/archive/html/gnunet-developers/2016-02/msg00004.html -- cgit v1.3 From dd823172d86f82dedf8b0a7eb65925db4b164d26 Mon Sep 17 00:00:00 2001 From: Simon South Date: Fri, 28 Jan 2022 05:02:13 -0500 Subject: gnu: cppzmq: Update to 4.8.1. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/networking.scm (cppzmq)[version]: Update to 4.8.1. [arguments]: Update to run test suite except when cross-compiling. [inputs]: Add catch2-framework. Signed-off-by: Ludovic Courtès --- gnu/packages/networking.scm | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 3aa3e9b8e9..3ae255e093 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -1152,7 +1152,7 @@ between different versions of ØMQ.") (define-public cppzmq (package (name "cppzmq") - (version "4.6.0") + (version "4.8.1") (source (origin (method git-fetch) (uri (git-reference @@ -1160,19 +1160,15 @@ between different versions of ØMQ.") (commit (string-append "v" version)))) (sha256 (base32 - "19acx2bzi4n6fdnfgkja1nds7m1bwg8lw5vfcijrx9fv75pa7m8h")) + "0zzq20wzk5grshxfqhqgqqfwb38w3k83r821isvyaxghsglpwks3")) (file-name (git-file-name name version)))) (build-system cmake-build-system) (arguments - '(;; FIXME: The test suite requires downloading Catch and custom - ;; CMake targets, and refuses to use the system version. - ;; See . - #:tests? #f - #:configure-flags '("-DCPPZMQ_BUILD_TESTS=OFF"))) + `(#:tests? ,(not (%current-target-system)))) ; run unless cross-compiling (native-inputs (list pkg-config)) (inputs - (list zeromq)) + (list catch-framework2 zeromq)) (home-page "https://zeromq.org") (synopsis "C++ bindings for the ØMQ messaging library") (description -- cgit v1.3 From 41b11c459bda26b0a7c20ef39486eef917416860 Mon Sep 17 00:00:00 2001 From: Eric Bavier Date: Fri, 4 Feb 2022 23:13:57 -0600 Subject: gnu: fenics-dolfin: Fix build. * gnu/packages/patches/fenics-dolfin-algorithm.patch, gnu/packages/patches/fenics-dolfin-boost.patch, gnu/packages/patches/fenics-dolfin-config-slepc.patch, gnu/packages/patches/fenics-dolfin-demo-init.patch: New patches. * gnu/local.mk (dist_patch_DATA): Register them. * gnu/packages/simulation.scm (fenics-dolfin)[source]: Use them. --- gnu/local.mk | 4 ++ gnu/packages/patches/fenics-dolfin-algorithm.patch | 37 +++++++++++++++++ gnu/packages/patches/fenics-dolfin-boost.patch | 45 ++++++++++++++++++++ .../patches/fenics-dolfin-config-slepc.patch | 48 ++++++++++++++++++++++ gnu/packages/patches/fenics-dolfin-demo-init.patch | 39 ++++++++++++++++++ gnu/packages/simulation.scm | 14 +++---- 6 files changed, 180 insertions(+), 7 deletions(-) create mode 100644 gnu/packages/patches/fenics-dolfin-algorithm.patch create mode 100644 gnu/packages/patches/fenics-dolfin-boost.patch create mode 100644 gnu/packages/patches/fenics-dolfin-config-slepc.patch create mode 100644 gnu/packages/patches/fenics-dolfin-demo-init.patch diff --git a/gnu/local.mk b/gnu/local.mk index b906d234fc..3ae66803f2 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1053,6 +1053,10 @@ dist_patch_DATA = \ %D%/packages/patches/fasthenry-spSolve.patch \ %D%/packages/patches/fasthenry-spFactor.patch \ %D%/packages/patches/fbreader-curl-7.62.patch \ + %D%/packages/patches/fenics-dolfin-algorithm.patch \ + %D%/packages/patches/fenics-dolfin-demo-init.patch \ + %D%/packages/patches/fenics-dolfin-boost.patch \ + %D%/packages/patches/fenics-dolfin-config-slepc.patch \ %D%/packages/patches/fifengine-boost-compat.patch \ %D%/packages/patches/fifengine-swig-compat.patch \ %D%/packages/patches/fifo-map-fix-flags-for-gcc.patch \ diff --git a/gnu/packages/patches/fenics-dolfin-algorithm.patch b/gnu/packages/patches/fenics-dolfin-algorithm.patch new file mode 100644 index 0000000000..e2a3148a64 --- /dev/null +++ b/gnu/packages/patches/fenics-dolfin-algorithm.patch @@ -0,0 +1,37 @@ +Fix compilation errors: + + dolfin/geometry/IntersectionConstruction.cpp: In static member function ‘static std::vector dolfin::IntersectionConstruction::intersection_segment_segment_2d(const dolfin::Point&, const dolfin::Point&, const dolfin::Point&, const dolfin::Point&)’: + dolfin/geometry/IntersectionConstruction.cpp:442:24: error: ‘min_element’ is not a member of ‘std’; did you mean ‘tuple_element’? + 442 | const auto it = std::min_element(oo.begin(), oo.end()); + | ^~~~~~~~~~~ + | tuple_element + + dolfin/mesh/MeshFunction.h: In member function ‘std::vector dolfin::MeshFunction::where_equal(T)’: + dolfin/mesh/MeshFunction.h:652:26: error: ‘count’ is not a member of ‘std’; did you mean ‘cout’? + 652 | std::size_t n = std::count(_values.get(), _values.get() + _size, value); + | ^~~~~ + | cout + +Submitted upstream at https://bitbucket.org/fenics-project/dolfin/issues/1128 + +--- a/dolfin/geometry/IntersectionConstruction.cpp ++++ b/dolfin/geometry/IntersectionConstruction.cpp +@@ -18,7 +18,8 @@ + // First added: 2014-02-03 + // Last changed: 2017-12-12 + ++#include + #include + #include + #include "predicates.h" + +--- a/dolfin/mesh/MeshFunction.h ++++ b/dolfin/mesh/MeshFunction.h +@@ -24,6 +24,7 @@ + #ifndef __MESH_FUNCTION_H + #define __MESH_FUNCTION_H + ++#include + #include + #include + diff --git a/gnu/packages/patches/fenics-dolfin-boost.patch b/gnu/packages/patches/fenics-dolfin-boost.patch new file mode 100644 index 0000000000..de56ebb9b3 --- /dev/null +++ b/gnu/packages/patches/fenics-dolfin-boost.patch @@ -0,0 +1,45 @@ +The `BOOST_LITTLE_ENDIAN` and `BOOST_BIG_ENDIAN` macros, along with the +"boost/detail/endian.hpp" header, were deprecated in boost 1.69.0 and finally +removed in boost 1.73.0. They are superseded by the BOOST_ENDIAN_LITTLE_BYTE +and BOOST_ENDIAN_BIG_BYTE macros and "boost/predef/other/endian.h" header. + +Deprecated: https://github.com/boostorg/predef/commit/32d4581c1689370444f2e565cfbb8421d5071807 +Removed: https://github.com/boostorg/predef/commit/aa6e232bf170ad8b856aff9e7c70334f77441c7f + +Adaptation of patch from https://bitbucket.org/fenics-project/dolfin/issues/1116 + +--- a/dolfin/io/VTKFile.cpp ++++ b/dolfin/io/VTKFile.cpp +@@ -20,7 +20,7 @@ + #include + #include + #include +-#include ++#include + + #include "pugixml.hpp" + +@@ -614,9 +614,9 @@ + std::string endianness = ""; + if (encode_string == "binary") + { +- #if defined BOOST_LITTLE_ENDIAN ++ #if defined BOOST_ENDIAN_LITTLE_BYTE + endianness = "byte_order=\"LittleEndian\""; +- #elif defined BOOST_BIG_ENDIAN ++ #elif defined BOOST_ENDIAN_BIG_BYTE + endianness = "byte_order=\"BigEndian\"";; + #else + dolfin_error("VTKFile.cpp", + +--- a/dolfin/io/VTKWriter.cpp ++++ b/dolfin/io/VTKWriter.cpp +@@ -24,7 +24,6 @@ + #include + #include + #include +-#include + + #include + #include + \ No newline at end of file diff --git a/gnu/packages/patches/fenics-dolfin-config-slepc.patch b/gnu/packages/patches/fenics-dolfin-config-slepc.patch new file mode 100644 index 0000000000..fa06179285 --- /dev/null +++ b/gnu/packages/patches/fenics-dolfin-config-slepc.patch @@ -0,0 +1,48 @@ +From https://bitbucket.org/fenics-project/dolfin/issues/1120 + +From f627a442350560e50dbbb11f7828b6d807369533 Mon Sep 17 00:00:00 2001 +From: Alexei Colin +Date: Sun, 11 Apr 2021 20:40:00 -0400 +Subject: [PATCH] cmake: PETSc,SLEPc: match lowercase .pc pkg-config files + +Upstream has moved to lowercase. PETSc has kept the mixed-case file for +compatibility, but SLEPc hasn't. + +pkg_search_module takes multiple patterns and succeeds on first match, +so this commit is backward-compatible with older installations of PETSc, +SLEPc. + +--- + cmake/modules/FindPETSc.cmake | 2 +- + cmake/modules/FindSLEPc.cmake | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/cmake/modules/FindPETSc.cmake b/cmake/modules/FindPETSc.cmake +index 80faffdad..728a6ec30 100644 +--- a/cmake/modules/FindPETSc.cmake ++++ b/cmake/modules/FindPETSc.cmake +@@ -51,7 +51,7 @@ find_package(PkgConfig REQUIRED) + + # Find PETSc pkg-config file. Note: craypetsc_real is on Cray systems + set(ENV{PKG_CONFIG_PATH} "$ENV{CRAY_PETSC_PREFIX_DIR}/lib/pkgconfig:$ENV{PETSC_DIR}/$ENV{PETSC_ARCH}/lib/pkgconfig:$ENV{PETSC_DIR}/lib/pkgconfig:$ENV{PKG_CONFIG_PATH}") +-pkg_search_module(PETSC craypetsc_real PETSc) ++pkg_search_module(PETSC craypetsc_real petsc PETSc) + + # Extract major, minor, etc from version string + if (PETSC_VERSION) +diff --git a/cmake/modules/FindSLEPc.cmake b/cmake/modules/FindSLEPc.cmake +index 327cffc23..dec26fcc4 100644 +--- a/cmake/modules/FindSLEPc.cmake ++++ b/cmake/modules/FindSLEPc.cmake +@@ -48,7 +48,7 @@ find_package(PkgConfig REQUIRED) + set(ENV{PKG_CONFIG_PATH} "$ENV{SLEPC_DIR}/$ENV{PETSC_ARCH}/lib/pkgconfig:$ENV{SLEPC_DIR}/lib/pkgconfig:$ENV{PKG_CONFIG_PATH}") + set(ENV{PKG_CONFIG_PATH} "$ENV{PETSC_DIR}/$ENV{PETSC_ARCH}/lib/pkgconfig:$ENV{PETSC_DIR}/lib/pkgconfig:$ENV{PKG_CONFIG_PATH}") + set(ENV{PKG_CONFIG_PATH} "$ENV{PETSC_DIR}/$ENV{PETSC_ARCH}:$ENV{PETSC_DIR}:$ENV{PKG_CONFIG_PATH}") +-pkg_search_module(SLEPC crayslepc_real SLEPc) ++pkg_search_module(SLEPC crayslepc_real slepc SLEPc) + + # Extract major, minor, etc from version string + if (SLEPC_VERSION) +-- +2.30.0 + diff --git a/gnu/packages/patches/fenics-dolfin-demo-init.patch b/gnu/packages/patches/fenics-dolfin-demo-init.patch new file mode 100644 index 0000000000..5a01320147 --- /dev/null +++ b/gnu/packages/patches/fenics-dolfin-demo-init.patch @@ -0,0 +1,39 @@ +Ensure MPI is initialized before getting rank, which may be called early by +Logger::write() via dolfin::info(). + +Fixes "MPI_Comm_rank called before MPI_INIT" error from +`demo_stokes-iterative_serial` and `demo_waveguide_serial` tests. + +Submitted upstream at https://bitbucket.org/fenics-project/dolfin/issues/1127 + +--- a/dolfin/common/MPI.cpp ++++ b/dolfin/common/MPI.cpp +@@ -143,6 +143,7 @@ MPI_Info& dolfin::MPIInfo::operator*() + unsigned int dolfin::MPI::rank(const MPI_Comm comm) + { + #ifdef HAS_MPI ++ SubSystemsManager::init_mpi(); + int rank; + MPI_Comm_rank(comm, &rank); + return rank; +diff --git a/dolfin/common/MPI.h b/dolfin/common/MPI.h +index b93f6df30..854114a3f 100644 +--- a/dolfin/common/MPI.h ++++ b/dolfin/common/MPI.h +@@ -102,12 +102,13 @@ namespace dolfin + /// communicator + void reset(MPI_Comm comm); + +- /// Return process rank for the communicator ++ /// Return process rank for the communicator. This function will ++ /// also initialize MPI if it hasn't already been initialised. + unsigned int rank() const; + + /// Return size of the group (number of processes) associated +- /// with the communicator. This function will also intialise MPI +- /// if it hasn't already been intialised. ++ /// with the communicator. This function will also initialise MPI ++ /// if it hasn't already been initialised. + unsigned int size() const; + + /// Set a barrier (synchronization point) diff --git a/gnu/packages/simulation.scm b/gnu/packages/simulation.scm index 240549be47..3f2d8e136d 100644 --- a/gnu/packages/simulation.scm +++ b/gnu/packages/simulation.scm @@ -1,6 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2017, 2018, 2019, 2020, 2021 Paul Garlick ;;; Copyright © 2021 Maxim Cournoyer +;;; Copyright © 2022 Eric Bavier ;;; ;;; This file is part of GNU Guix. ;;; @@ -430,6 +431,10 @@ FFC is part of the FEniCS Project.") (sha256 (base32 "1m91hwcq5gfj4qqswp8l8kj58nia48f0n4kq13w0xqj4biq7rla0")) + (patches (search-patches "fenics-dolfin-algorithm.patch" + "fenics-dolfin-demo-init.patch" + "fenics-dolfin-boost.patch" + "fenics-dolfin-config-slepc.patch")) (modules '((guix build utils))) (snippet '(begin @@ -498,11 +503,8 @@ FFC is part of the FEniCS Project.") ;; git-lfs, so only the links are downloaded. The tests that ;; require the absent meshes cannot run and are skipped. ;; - ;; Two other serial tests fail and are skipped. - ;; i) demo_stokes-iterative_serial, - ;; The MPI_Comm_rank() function was called before MPI_INIT was - ;; invoked - ;; ii) demo_multimesh-stokes_serial: + ;; One serial test fails and is skipped. + ;; i) demo_multimesh-stokes_serial: ;; Warning: Found no facets matching domain for boundary ;; condition. ;; @@ -544,8 +546,6 @@ FFC is part of the FEniCS Project.") "demo_mesh-quality_serial " "demo_mesh-quality_mpi " "demo_multimesh-stokes_serial " - "demo_stokes-iterative_serial " - "demo_stokes-iterative_mpi " ")\n") port))) #t)) (replace 'check -- cgit v1.3 From 10b901a4376f98de58272cd28cdaf82979038053 Mon Sep 17 00:00:00 2001 From: Eric Bavier Date: Fri, 4 Feb 2022 23:51:31 -0600 Subject: gnu: superlu: Update to 5.3.0. * gnu/packages/maths.scm (superlu): Update to 5.3.0. [source]: Adjust to new url. --- gnu/packages/maths.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 588b7b49d2..e37ed7dd35 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2013, 2014, 2015, 2016, 2019, 2020 Andreas Enge ;;; Copyright © 2013 Nikita Karetnikov ;;; Copyright © 2014, 2016, 2017 John Darrington -;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Eric Bavier +;;; Copyright © 2014-2022 Eric Bavier ;;; Copyright © 2014 Federico Beffa ;;; Copyright © 2014 Mathieu Lirzin ;;; Copyright © 2015–2021 Ricardo Wurmus @@ -3710,14 +3710,14 @@ easy-to-write markup language for mathematics.") (define-public superlu (package (name "superlu") - (version "5.2.2") + (version "5.3.0") (source (origin (method url-fetch) (uri (string-append "https://portal.nersc.gov/project/sparse/superlu/" - "superlu_" version ".tar.gz")) + "superlu-" version ".tar.gz")) (sha256 - (base32 "13520vk6fqspyl22cq4ak2jh3rlmhja4czq56j75fdx65fkk80s7")) + (base32 "0xvib7nk2rlbsiv1iwkwl9kxppkalkciv628bsyiiv0pv754n48q")) (modules '((guix build utils))) (snippet ;; Replace the non-free implementation of MC64 with a stub adapted -- cgit v1.3 From 45082b9a8c12af285f4386538fc7acc4668cb11c Mon Sep 17 00:00:00 2001 From: Liliana Marie Prikler Date: Mon, 24 Jan 2022 19:15:44 +0100 Subject: tests: Assert that cyclic graphs can be produced. * tests/graph.scm ("package DAG, oops it was a cycle"): New test. --- tests/graph.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/tests/graph.scm b/tests/graph.scm index fadac265f9..baa08a6be2 100644 --- a/tests/graph.scm +++ b/tests/graph.scm @@ -36,6 +36,7 @@ #:use-module (gnu packages libunistring) #:use-module (gnu packages bootstrap) #:use-module (ice-9 match) + #:use-module (ice-9 sandbox) #:use-module (srfi srfi-1) #:use-module (srfi srfi-11) #:use-module (srfi srfi-26) @@ -113,6 +114,33 @@ edges." (list p4 p4) (list p2 p3)))))))) +(test-assert "package DAG, oops it was a cycle" + (let-values (((backend nodes+edges) (make-recording-backend))) + (letrec ((p1 (dummy-package "p1" (inputs `(("p3" ,p3))))) + (p2 (dummy-package "p2" (inputs `(("p1" ,p1))))) + (p3 (dummy-package "p3" (inputs `(("p2" ,p2) ("p1", p1)))))) + (call-with-time-limit + 600 ;; If ever this test should fail, we still want it to terminate + (lambda () + (run-with-store %store + (export-graph (list p3) 'port + #:node-type %package-node-type + #:backend backend))) + (lambda () + (run-with-store %store + (export-graph + (list (dummy-package "timeout-reached")) + 'port + #:node-type %package-node-type + #:backend backend)))) + ;; We should see nothing more than these 3 packages. + (let-values (((nodes edges) (nodes+edges))) + (and (equal? nodes (map package->tuple (list p3 p2 p1))) + (equal? edges + (map edge->tuple + (list p3 p3 p2 p1) + (list p2 p1 p1 p3)))))))) + (test-assert "reverse package DAG" (let-values (((backend nodes+edges) (make-recording-backend))) (run-with-store %store -- cgit v1.3 From f57883ec79815a0b502e3dee462d0d27a7018e79 Mon Sep 17 00:00:00 2001 From: jgart Date: Fri, 4 Feb 2022 14:44:49 -0500 Subject: gnu: Add cl-lorem-ipsum. * gnu/packages/lisp-xyz.scm (cl-lorem-ipsum, ecl-lorem-opsum, sbcl-lorem-ipsum): New variables. Signed-off-by: Guillaume Le Vaillant --- gnu/packages/lisp-xyz.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 102546c84a..85ff7ed314 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -20287,6 +20287,34 @@ rendering of the XML Infoset.") (define-public ecl-cl-sxml (sbcl-package->ecl-package sbcl-cl-sxml)) +(define-public sbcl-lorem-ipsum + (let ((commit "04a1839a03b53c954e799b9cf570ac915b032ce8") + (revision "0")) + (package + (name "sbcl-lorem-ipsum") + (version (git-version "1.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/phoe/lorem-ipsum") + (commit commit))) + (sha256 + (base32 "1530qq0bk3xr25m77q96pbi1idnxdkax8cwmvq4ch03rfjy34j7n")) + (file-name (git-file-name "cl-lorem-ipsum" commit)))) + (build-system asdf-build-system/sbcl) + (home-page "https://github.com/phoe/lorem-ipsum") + (synopsis "Lorem ipsum generator in portable Common Lisp") + (description + "This package provides functions for generating lorem ipsum text.") + (license license:expat)))) + +(define-public cl-lorem-ipsum + (sbcl-package->cl-source-package sbcl-lorem-ipsum)) + +(define-public ecl-lorem-ipsum + (sbcl-package->ecl-package sbcl-lorem-ipsum)) + (define-public sbcl-cl-gopher (let ((commit "62cfd180378f56e7e8b57e4302b183810c86e337") (revision "2")) -- cgit v1.3 From a1e84575a4bea5bbc9c742a32f2caebc48e0c587 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Sun, 22 Aug 2021 12:19:38 +0300 Subject: gnu: libfaketime: Adjust flags on riscv64-linux. * gnu/packages/check.scm (libfaketime)[arguments]: When building for riscv64-linux adjust CFLAGS to make the package work. --- gnu/packages/check.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 4115a5c22b..913c803a24 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -2808,7 +2808,8 @@ portable to just about any platform.") ;; indefinitely. See README.packagers for more information. ;; There are specific instructions to not enable more flags ;; than absolutely needed. - ,(if (target-ppc64le?) + ,(if (or (target-ppc64le?) + (target-riscv64?)) `(setenv "FAKETIME_COMPILE_CFLAGS" "-DFORCE_MONOTONIC_FIX -DFORCE_PTHREAD_NONVER") `(setenv "FAKETIME_COMPILE_CFLAGS" -- cgit v1.3 From dda56249ae75ae6bb7c8fcb7f4792682617fdf48 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Sat, 5 Feb 2022 20:19:45 +0200 Subject: gnu: webrtc-audio-processing: Fix building on riscv64-linux. * gnu/packages/audio.scm (webrtc-audio-processing)[arguments]: Add phase on riscv64-linux to adjust headers to add support for riscv64-linux. --- gnu/packages/audio.scm | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 22dd88ef0c..867011f473 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -4,7 +4,7 @@ ;;; Copyright © 2015 Andreas Enge ;;; Copyright © 2015 Alex Kost ;;; Copyright © 2015, 2016 Mark H Weaver -;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner +;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021, 2022 Efraim Flashner ;;; Copyright © 2016, 2017 Alex Griffin ;;; Copyright © 2016 Nikita ;;; Copyright © 2016 Lukas Gradl @@ -254,6 +254,19 @@ softsynth library that can be use with other applications.") (sha256 (base32 "1gsx7k77blfy171b6g3m0k0s0072v6jcawhmx1kjs9w5zlwdkzd0")))) (build-system gnu-build-system) + (arguments + ;; TODO: Move this to a snippet or remove with the upgrade to 1.0. + (if (target-riscv64?) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'patch-source + (lambda _ + (substitute* "webrtc/typedefs.h" + (("defined\\(__aarch64__\\)" all) + (string-append + all " || (defined(__riscv) && __riscv_xlen == 64)"))))))) + '())) (synopsis "WebRTC's Audio Processing Library") (description "WebRTC-Audio-Processing library based on Google's implementation of WebRTC.") -- cgit v1.3 From 4c081c53ab77ec97a0c5b11758f26350e97a61b7 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Sun, 19 Dec 2021 22:02:22 +0100 Subject: gnu: Add apache-parent-pom-23. * gnu/packages/maven-parent-pom.scm (apache-parent-pom-23): New variable. --- gnu/packages/maven-parent-pom.scm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gnu/packages/maven-parent-pom.scm b/gnu/packages/maven-parent-pom.scm index a47fbfa8c1..9919a66105 100644 --- a/gnu/packages/maven-parent-pom.scm +++ b/gnu/packages/maven-parent-pom.scm @@ -84,6 +84,10 @@ (make-apache-parent-pom "21" "0clcbrq1b2b8sbvlqddyw2dg5niq25dhdma9sk4b0i30hqaipx96")) +(define-public apache-parent-pom-23 + (make-apache-parent-pom + "23" "05c8i741f0m4311q264zvq0lc6srsyz2x95ga4d7qfd89swkzg9d")) + (define (make-apache-commons-parent-pom version hash parent) (hidden-package (package -- cgit v1.3 From 19bc914655de74b5295ba67c7456762acd6c2bac Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Sun, 19 Dec 2021 22:04:01 +0100 Subject: gnu: Add apache-commons-parent-pom-52. * gnu/packages/maven-parent-pom.scm (apache-commons-parent-pom-52): New variable. (make-apache-commons-parent-pom): Add optional tag-prefix input. --- gnu/packages/maven-parent-pom.scm | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/gnu/packages/maven-parent-pom.scm b/gnu/packages/maven-parent-pom.scm index 9919a66105..8a70791353 100644 --- a/gnu/packages/maven-parent-pom.scm +++ b/gnu/packages/maven-parent-pom.scm @@ -88,7 +88,8 @@ (make-apache-parent-pom "23" "05c8i741f0m4311q264zvq0lc6srsyz2x95ga4d7qfd89swkzg9d")) -(define (make-apache-commons-parent-pom version hash parent) +(define* (make-apache-commons-parent-pom version hash parent + #:key (tag-prefix "commons-parent-")) (hidden-package (package (name "apache-commons-parent-pom") @@ -97,7 +98,7 @@ (method git-fetch) (uri (git-reference (url "https://github.com/apache/commons-parent") - (commit (string-append "commons-parent-" version)))) + (commit (string-append tag-prefix version)))) (file-name (git-file-name name version)) (sha256 (base32 hash)))) (build-system ant-build-system) @@ -138,6 +139,12 @@ "50" "0ki8px35dan51ashblpw6rdl27c2fq62slazhslhq3lr4fwlpvxs" apache-parent-pom-21)) +(define-public apache-commons-parent-pom-52 + (make-apache-commons-parent-pom + "52" "0fb6id9cs9944fjlirjc07bf234bwi96i642px09m9nrfj338n5d" + apache-parent-pom-23 + #:tag-prefix "rel/commons-parent-")) + (define-public java-weld-parent-pom (hidden-package (package -- cgit v1.3 From cecf5f9211b1aa15e4496323379c1f1beab44fbe Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Sun, 19 Dec 2021 22:05:23 +0100 Subject: gnu: Add plexus-parent-pom-8. * gnu/packages/maven-parent-pom.scm (plexus-parent-pom-8): New variable. --- gnu/packages/maven-parent-pom.scm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gnu/packages/maven-parent-pom.scm b/gnu/packages/maven-parent-pom.scm index 8a70791353..302a30f338 100644 --- a/gnu/packages/maven-parent-pom.scm +++ b/gnu/packages/maven-parent-pom.scm @@ -391,6 +391,10 @@ other projects as their parent pom.") (make-plexus-parent-pom "6.1" "1pisca0fxpgbhf4xdgw5mn86622pg3mc5b8760kf9mk2awazshlj")) +(define-public plexus-parent-pom-8 + (make-plexus-parent-pom + "8" "0ybwdzawa58qg9ag39rxyin24lk9sjcaih6n2yfldfzsbkq6gnww")) + (define (make-maven-parent-pom version hash parent) (hidden-package (package -- cgit v1.3 From 661cac8db6950365d50b5e7dd2451cd722a3b93f Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Sun, 19 Dec 2021 22:08:07 +0100 Subject: gnu: Add maven-parent-pom-34. * gnu/packages/maven-parent-pom.scm (maven-parent-pom-34): New variable. --- gnu/packages/maven-parent-pom.scm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gnu/packages/maven-parent-pom.scm b/gnu/packages/maven-parent-pom.scm index 302a30f338..19f1bc5007 100644 --- a/gnu/packages/maven-parent-pom.scm +++ b/gnu/packages/maven-parent-pom.scm @@ -428,6 +428,11 @@ other projects as their parent pom.") tool. This package contains the Maven parent POM.") (license license:asl2.0)))) +(define-public maven-parent-pom-34 + (make-maven-parent-pom + "34" "1vkmrfwva76k6maf1ljbja5ga4kzav4xc73ymbaf42xaiaknglbc" + apache-parent-pom-23)) + (define-public maven-parent-pom-33 (make-maven-parent-pom "33" "1b0z2gsvpccgcssys9jbdfwlwq8b5imdwr508f87ssdbfs29lh65" -- cgit v1.3 From baa2a49b81211bdb622bd2420a6eed2122eaf989 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Sun, 19 Dec 2021 22:11:16 +0100 Subject: gnu: maven-parent-pom: Fix dependency versions. * gnu/packages/maven-parent-pom.scm (make-maven-parent-pom): Add a replacement option. (maven-parent-pom-34, maven-parent-pom-33, maven-parent-pom-31, maven-parent-pom-22, maven-parent-pom-15): Replace java-plexus-component-annotations version. --- gnu/packages/maven-parent-pom.scm | 44 ++++++++++++++++++++++++++++----------- 1 file changed, 32 insertions(+), 12 deletions(-) diff --git a/gnu/packages/maven-parent-pom.scm b/gnu/packages/maven-parent-pom.scm index 19f1bc5007..6d11c84f44 100644 --- a/gnu/packages/maven-parent-pom.scm +++ b/gnu/packages/maven-parent-pom.scm @@ -395,7 +395,7 @@ other projects as their parent pom.") (make-plexus-parent-pom "8" "0ybwdzawa58qg9ag39rxyin24lk9sjcaih6n2yfldfzsbkq6gnww")) -(define (make-maven-parent-pom version hash parent) +(define* (make-maven-parent-pom version hash parent #:key replacements) (hidden-package (package (name "maven-parent-pom") @@ -418,6 +418,12 @@ other projects as their parent pom.") (install-pom-file "maven-plugins/pom.xml")) (add-after 'install 'install-shared (install-pom-file "maven-shared-components/pom.xml")) + ,@(if replacements + `((add-before 'install 'fix-pom + (lambda _ + (use-modules (guix build maven pom)) + (fix-pom-dependencies "pom.xml" '() #:local-packages (quote ,(force replacements)))))) + '()) (replace 'install (install-pom-file "pom.xml"))))) (propagated-inputs @@ -431,17 +437,32 @@ tool. This package contains the Maven parent POM.") (define-public maven-parent-pom-34 (make-maven-parent-pom "34" "1vkmrfwva76k6maf1ljbja5ga4kzav4xc73ymbaf42xaiaknglbc" - apache-parent-pom-23)) + apache-parent-pom-23 + #:replacements + (delay + `(("org.codehaus.plexus" + ("plexus-component-annotations" . + ,(package-version java-plexus-component-annotations))))))) (define-public maven-parent-pom-33 (make-maven-parent-pom "33" "1b0z2gsvpccgcssys9jbdfwlwq8b5imdwr508f87ssdbfs29lh65" - apache-parent-pom-21)) + apache-parent-pom-21 + #:replacements + (delay + `(("org.codehaus.plexus" + ("plexus-component-annotations" . + ,(package-version java-plexus-component-annotations))))))) (define-public maven-parent-pom-31 (make-maven-parent-pom "31" "0skxv669v9ffwbmrmybnn9awkf1g3ylk88bz0hv6g11zpj1a8454" - apache-parent-pom-19)) + apache-parent-pom-19 + #:replacements + (delay + `(("org.codehaus.plexus" + ("plexus-component-annotations" . + ,(package-version java-plexus-component-annotations))))))) (define-public maven-parent-pom-30 (make-maven-parent-pom @@ -477,7 +498,12 @@ tool. This package contains the Maven parent POM.") (define-public maven-parent-pom-22 (let ((base (make-maven-parent-pom "22" "1kgqbyx7ckashy47n9rgyg4asyrvp933hdiknvnad7msq5d4c2jg" - apache-parent-pom-11))) + apache-parent-pom-11 + #:replacements + (delay + `(("org.codehaus.plexus" + ("plexus-component-annotations" . + ,(package-version java-plexus-container-default)))))))) (package (inherit base) (arguments @@ -485,13 +511,7 @@ tool. This package contains the Maven parent POM.") ((#:phases phases) `(modify-phases ,phases (delete 'install-plugins) - (delete 'install-shared) - (add-before 'install 'fix-versions - (lambda _ - (substitute* "pom.xml" - (("1.5.5") - ,(package-version java-plexus-component-annotations))) - #t))))))))) + (delete 'install-shared)))))))) (define-public maven-plugins-pom-23 (hidden-package -- cgit v1.3 From a348520e2a253bc81fa92566e74f8b3e60fea058 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Sun, 19 Dec 2021 22:13:42 +0100 Subject: gnu: java-commons-codec: Use latest commons parent. * gnu/packages/java.scm (java-commons-codec)[propagated-inputs]: Fix commons parent version. --- gnu/packages/java.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 97daaa625f..08d6053fed 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -7668,7 +7668,7 @@ This is a part of the Apache Commons Project.") (native-inputs (list java-commons-lang3 java-junit)) (propagated-inputs - (list apache-commons-parent-pom-50)) + (list apache-commons-parent-pom-52)) (home-page "https://commons.apache.org/codec/") (synopsis "Common encoders and decoders such as Base64, Hex, Phonetic and URLs") (description "The codec package contains simple encoder and decoders for -- cgit v1.3 From 12769573eb4b81e3297cc1a4b41bf5553586891b Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Sun, 19 Dec 2021 22:25:45 +0100 Subject: gnu: java-plexus-utils: Default to the newer one. * gnu/packages/java.scm (java-plexus-utils-3.3.0): Rename to... (java-plexus-utils): ...this. (java-plexus-utils-3.2.1): New variable. --- gnu/packages/java.scm | 18 +++++++++--------- gnu/packages/maven.scm | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 08d6053fed..8b159c3828 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -3949,8 +3949,7 @@ provides much easier and readable parametrised tests for JUnit.") (define-public java-plexus-utils (package (name "java-plexus-utils") - ;; sisu-build-api needs this version, later versions don't work - (version "3.2.1") + (version "3.3.0") (source (origin (method git-fetch) (uri (git-reference @@ -3959,7 +3958,7 @@ provides much easier and readable parametrised tests for JUnit.") (file-name (git-file-name name version)) (sha256 (base32 - "1w169glixyk94jbczj8jzg897lsab46jihiaa3dhw0p06g35va8b")))) + "0d0fq21rzjy0j55kcp8w9k1rbq9rwr0r7cc8239p9jbz54vihp0g")))) (build-system ant-build-system) ;; FIXME: The default build.xml does not include a target to install ;; javadoc files. @@ -4010,10 +4009,11 @@ Plexus framework to ease working with strings, files, command lines, XML and more.") (license license:asl2.0))) -(define-public java-plexus-utils-3.3.0 +(define-public java-plexus-utils-3.2.1 (package (inherit java-plexus-utils) - (version "3.3.0") + ;; sisu-build-api needs this version, later versions don't work + (version "3.2.1") (source (origin (method git-fetch) (uri (git-reference @@ -4022,7 +4022,7 @@ more.") (file-name (git-file-name "java-plexus-utils" version)) (sha256 (base32 - "0d0fq21rzjy0j55kcp8w9k1rbq9rwr0r7cc8239p9jbz54vihp0g")))))) + "1w169glixyk94jbczj8jzg897lsab46jihiaa3dhw0p06g35va8b")))))) (define-public java-plexus-interpolation (package @@ -4185,7 +4185,7 @@ implementation.") #t)) (replace 'install (install-from-pom "pom.xml"))))) (propagated-inputs - (list java-plexus-utils-3.3.0 java-commons-io plexus-parent-pom-5.1)) + (list java-plexus-utils java-commons-io plexus-parent-pom-5.1)) (inputs (list java-jsr305)) (native-inputs @@ -4241,7 +4241,7 @@ reusing it in maven.") #t)) (replace 'install (install-from-pom "pom.xml"))))) (propagated-inputs - (list java-plexus-utils-3.3.0 java-plexus-io java-iq80-snappy + (list java-plexus-utils java-plexus-io java-iq80-snappy java-commons-compress plexus-parent-pom-6.1)) (inputs `(("java-jsr305" ,java-jsr305) @@ -4870,7 +4870,7 @@ which behaves as if all files were just created.\n (replace 'install (install-from-pom "pom.xml"))))) (inputs - (list java-plexus-utils java-plexus-container-default)) + (list java-plexus-utils-3.2.1 java-plexus-container-default)) (home-page "https://github.com/sonatype/sisu-build-api/") (synopsis "Base build API for maven") (description "This package contains the base build API for maven and diff --git a/gnu/packages/maven.scm b/gnu/packages/maven.scm index 0e9b99fa1c..3761f0beda 100644 --- a/gnu/packages/maven.scm +++ b/gnu/packages/maven.scm @@ -3004,7 +3004,7 @@ build are stored. By default, it is located within the user's home directory (propagated-inputs (list maven-3.0-core maven-shared-utils - java-plexus-utils + java-plexus-utils-3.2.1 java-plexus-interpolation java-sisu-build-api maven-parent-pom-30)) -- cgit v1.3 From ce14731a7391d2038f81aad32036497d72eca723 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Mon, 20 Dec 2021 02:32:20 +0100 Subject: gnu: Add java-plexus-build-api. This is the proper name for java-sisu-build-api. * gnu/packages/java.scm (java-sisu-build-api): Rename to... (java-plexus-build-api): ...this. [source]: Use new source repository. --- gnu/packages/java.scm | 16 ++++++++-------- gnu/packages/maven.scm | 22 +++++++++++----------- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 8b159c3828..2b169854d8 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -4012,7 +4012,7 @@ more.") (define-public java-plexus-utils-3.2.1 (package (inherit java-plexus-utils) - ;; sisu-build-api needs this version, later versions don't work + ;; plexus-build-api needs this version, later versions don't work (version "3.2.1") (source (origin (method git-fetch) @@ -4776,7 +4776,7 @@ function utilities.") ("java-plexus-utils" ,java-plexus-utils) ("java-guava" ,java-guava) ("java-geronimo-xbean-reflect" ,java-geronimo-xbean-reflect) - ("java-sisu-build-api" ,java-sisu-build-api) + ("java-plexus-build-api" ,java-plexus-build-api) ;; modello plugins: ("java-modellop-plugins-java" ,java-modello-plugins-java) ("java-modellop-plugins-xml" ,java-modello-plugins-xml) @@ -4820,14 +4820,14 @@ This component decrypts a string passed to it.") Plexus components.") (license license:asl2.0))) -(define-public java-sisu-build-api +(define-public java-plexus-build-api (package - (name "java-sisu-build-api") + (name "java-plexus-build-api") (version "0.0.7") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/sonatype/sisu-build-api") + (url "https://github.com/codehaus-plexus/plexus-build-api") (commit (string-append "plexus-build-api-" version)))) (file-name (git-file-name name version)) (sha256 @@ -4835,7 +4835,7 @@ Plexus components.") "1d5w6c58gkx30d51v7qwv1xrhc0ly76848gihmgshj19yf6yhca0")))) (build-system ant-build-system) (arguments - `(#:jar-name "sisu-build-api.jar" + `(#:jar-name "plexus-build-api.jar" #:source-dir "src/main/java" #:jdk ,icedtea-8 #:tests? #f; FIXME: how to run the tests? @@ -4871,7 +4871,7 @@ which behaves as if all files were just created.\n (install-from-pom "pom.xml"))))) (inputs (list java-plexus-utils-3.2.1 java-plexus-container-default)) - (home-page "https://github.com/sonatype/sisu-build-api/") + (home-page "https://github.com/codehaus-plexus/plexus-build-api/") (synopsis "Base build API for maven") (description "This package contains the base build API for maven and a default implementation of it. This API is about scanning files in a @@ -4915,7 +4915,7 @@ project and determining what files need to be rebuilt.") #t))))) (propagated-inputs (list java-plexus-utils java-plexus-container-default - java-sisu-build-api)) + java-plexus-build-api)) (native-inputs (list java-junit java-plexus-classworlds java-geronimo-xbean-reflect java-guava)) diff --git a/gnu/packages/maven.scm b/gnu/packages/maven.scm index 3761f0beda..e20b902cc3 100644 --- a/gnu/packages/maven.scm +++ b/gnu/packages/maven.scm @@ -1185,7 +1185,7 @@ and compares versions:"))) java-plexus-classworlds java-guava java-geronimo-xbean-reflect - java-sisu-build-api + java-plexus-build-api ;; modello plugins: java-modello-plugins-java java-modello-plugins-xml @@ -1263,7 +1263,7 @@ setting, toolchains)"))) java-plexus-utils java-guava java-geronimo-xbean-reflect - java-sisu-build-api + java-plexus-build-api ;; modello plugins: java-modello-plugins-java java-modello-plugins-xml @@ -1399,7 +1399,7 @@ inheritance, interpolation, @dots{}"))) ("java-plexus-classworlds" ,java-plexus-classworlds) ("java-guava" ,java-guava) ("java-geronimo-xbean-reflect" ,java-geronimo-xbean-reflect) - ("java-sisu-build-api" ,java-sisu-build-api) + ("java-plexus-build-api" ,java-plexus-build-api) ;; modello plugins: ("java-modello-plugins-java" ,java-modello-plugins-java) ("java-modello-plugins-xml" ,java-modello-plugins-xml) @@ -1484,7 +1484,7 @@ so really just plain objects."))) ("classworlds" ,java-plexus-classworlds) ("guava" ,java-guava) ("xbean" ,java-geronimo-xbean-reflect) - ("build-api" ,java-sisu-build-api) + ("build-api" ,java-plexus-build-api) ;; modello plugins: ("java" ,java-modello-plugins-java) ("xml" ,java-modello-plugins-xml) @@ -1588,7 +1588,7 @@ generally generated from plugin sources using maven-plugin-plugin."))) ("java-asm" ,java-asm) ("java-plexus-classworlds" ,java-plexus-classworlds) ("java-geronimo-xbean-reflect" ,java-geronimo-xbean-reflect) - ("java-sisu-build-api" ,java-sisu-build-api) + ("java-plexus-build-api" ,java-plexus-build-api) ("java-modello-plugins-java" ,java-modello-plugins-java) ("java-modello-plugins-xml" ,java-modello-plugins-xml) ("java-modello-plugins-xpp3" ,java-modello-plugins-xpp3) @@ -1774,7 +1774,7 @@ artifactId=maven-core" ,(package-version maven-core-bootstrap)))) (native-inputs `(("java-modello-core" ,java-modello-core) ("java-geronimo-xbean-reflect" ,java-geronimo-xbean-reflect) - ("java-sisu-build-api" ,java-sisu-build-api) + ("java-plexus-build-api" ,java-plexus-build-api) ("java-eclipse-sisu-plexus" ,java-eclipse-sisu-plexus) ("java-eclipse-sisu-inject" ,java-eclipse-sisu-inject) ("java-cglib" ,java-cglib) @@ -1963,7 +1963,7 @@ logging support."))) ("java-plexus-component-annotations" ,java-plexus-component-annotations) ("java-plexus-classworlds" ,java-plexus-classworlds) ("java-geronimo-xbean-reflect" ,java-geronimo-xbean-reflect) - ("java-sisu-build-api" ,java-sisu-build-api) + ("java-plexus-build-api" ,java-plexus-build-api) ("java-eclipse-sisu-plexus" ,java-eclipse-sisu-plexus) ("java-exclispe-sisu-inject" ,java-eclipse-sisu-inject) ("java-javax-inject" ,java-javax-inject) @@ -2967,7 +2967,7 @@ build are stored. By default, it is located within the user's home directory `(#:jar-name "maven-filtering.jar" #:source-dir "src/main/java" #:test-dir "src/test" - ;; this test comes from sisu-build-api, not this package + ;; this test comes from plexus-build-api, not this package #:test-exclude (list "**/IncrementalResourceFilteringTest.java" "**/Abstract*.java") #:phases @@ -2987,7 +2987,7 @@ build are stored. By default, it is located within the user's home directory #t)) (add-before 'check 'decompress-tests (lambda* (#:key inputs #:allow-other-keys) - (let* ((build-api-source (assoc-ref inputs "java-sisu-build-api-origin")) + (let* ((build-api-source (assoc-ref inputs "java-plexus-build-api-origin")) (classes (string-append build-api-source "/src/test/java"))) (copy-recursively classes "src/test/")) #t)) @@ -3006,7 +3006,7 @@ build are stored. By default, it is located within the user's home directory maven-shared-utils java-plexus-utils-3.2.1 java-plexus-interpolation - java-sisu-build-api + java-plexus-build-api maven-parent-pom-30)) (inputs (list java-jsr305)) @@ -3017,7 +3017,7 @@ build are stored. By default, it is located within the user's home directory ("java-mockito" ,java-mockito-1) ("java-objenesis" ,java-objenesis) ("java-plexus-component-metadata" ,java-plexus-component-metadata) - ("java-sisu-build-api-origin" ,(package-source java-sisu-build-api)))) + ("java-plexus-build-api-origin" ,(package-source java-plexus-build-api)))) (home-page "https://maven.apache.org/shared/maven-filtering") (synopsis "Shared component for all plugins that needs to filter resources") (description "This component provides an API to filter resources in Maven -- cgit v1.3 From ba7026003cb782017179f8a79c49a8e226f87e54 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Sun, 19 Dec 2021 23:37:31 +0100 Subject: gnu: java-plexus-cipher: Update to 2.0. * gnu/packages/java.scm (java-plexus-cipher): Update to 2.0. (java-plexus-cipher-1.7): New variable. --- gnu/packages/java.scm | 58 +++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 45 insertions(+), 13 deletions(-) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 2b169854d8..64d40b3ce9 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -4377,7 +4377,7 @@ provides the Maven plugin generating the component metadata."))) (define-public java-plexus-cipher (package (name "java-plexus-cipher") - (version "1.7") + (version "2.0") (source (origin (method git-fetch) (uri (git-reference @@ -4386,8 +4386,49 @@ provides the Maven plugin generating the component metadata."))) (file-name (git-file-name name version)) (sha256 (base32 - "0m638nzlxbmnbcj5cwdpgs326ab584yv0k803zlx37r6iqwvf6b0")))) + "01fipdsm090n8j4207fl8kbxznkgkmkkgyazf53hm1nwn6na5aai")))) (build-system ant-build-system) + (arguments + `(#:jar-name "plexus-cipher.jar" + #:source-dir "src/main/java" + #:phases + (modify-phases %standard-phases + (add-before 'build 'generate-javax.inject.Named + (lambda _ + (mkdir-p "build/classes/META-INF/sisu") + (with-output-to-file "build/classes/META-INF/sisu/javax.inject.Named" + (lambda _ + (display + "org.sonatype.plexus.components.cipher.DefaultPlexusCipher\n"))) + #t)) + (replace 'install (install-from-pom "pom.xml"))))) + (inputs + `(("java-cdi-api" ,java-cdi-api) + ("java-javax-inject" ,java-javax-inject))) + (propagated-inputs + `(("java-sonatype-spice-parent-pom" ,java-sonatype-spice-parent-pom-15) + ("java-eclipse-sisu-inject" ,java-eclipse-sisu-inject))) + (native-inputs + `(("java-junit" ,java-junit))) + (home-page "https://github.com/sonatype/plexus-cipher") + (synopsis "Encryption/decryption Component") + (description "Plexus-cipher contains a component to deal with encryption +and decryption.") + (license license:asl2.0))) + +(define-public java-plexus-cipher-1.7 + (package + (inherit java-plexus-cipher) + (version "1.7") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/codehaus-plexus/plexus-cipher") + (commit (string-append "plexus-cipher-" version)))) + (file-name (git-file-name "java-plexus-cipher" version)) + (sha256 + (base32 + "0m638nzlxbmnbcj5cwdpgs326ab584yv0k803zlx37r6iqwvf6b0")))) (arguments `(#:jar-name "plexus-cipher.jar" #:source-dir "src/main/java" @@ -4409,17 +4450,8 @@ provides the Maven plugin generating the component metadata."))) (("provided") "test")) #t)) (replace 'install (install-from-pom "pom.xml"))))) - (inputs - (list java-cdi-api java-javax-inject)) (propagated-inputs - (list java-sonatype-spice-parent-pom-15)) - (native-inputs - (list java-junit)) - (home-page "https://github.com/sonatype/plexus-cipher") - (synopsis "Encryption/decryption Component") - (description "Plexus-cipher contains a component to deal with encryption -and decryption.") - (license license:asl2.0))) + (list java-sonatype-spice-parent-pom-15)))) (define-public java-plexus-java (package @@ -4766,7 +4798,7 @@ function utilities.") #t)) (replace 'install (install-from-pom "pom.xml"))))) (propagated-inputs - (list java-plexus-utils java-plexus-cipher + (list java-plexus-utils java-plexus-cipher-1.7 java-sonatype-spice-parent-pom-12)) (native-inputs `(("java-modello-core" ,java-modello-core) -- cgit v1.3 From 164185854760245de1d132bb459d46b9023c8980 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Mon, 20 Dec 2021 01:24:16 +0100 Subject: gnu: java-plexus-sec-dispatcher: Update to 2.0. * gnu/packages/java.scm (java-plexus-sec-dispatcher): Update to 2.0. (java-plexus-sec-dispatcher-1.4): New variable. --- gnu/packages/java.scm | 96 ++++++++++++++++++++++++++++++++------------------ gnu/packages/maven.scm | 6 ++-- 2 files changed, 64 insertions(+), 38 deletions(-) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 64d40b3ce9..8f0aaff3ed 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -4733,17 +4733,15 @@ function utilities.") (define-public java-plexus-sec-dispatcher (package (name "java-plexus-sec-dispatcher") - (version "1.4") ;; Newest release listed at the Maven Central Repository. + (version "2.0") (source (origin - ;; This project doesn't tag releases or publish tarballs, so we take - ;; the "prepare release plexus-sec-dispatcher-1.4" git commit. (method git-fetch) (uri (git-reference - (url "https://github.com/sonatype/plexus-sec-dispatcher/") - (commit "7db8f880486e192a1c5ea9544e01e756c3d49d0f"))) + (url "https://github.com/codehaus-plexus/plexus-sec-dispatcher") + (commit (string-append "plexus-sec-dispatcher-" version)))) (sha256 (base32 - "1ng4yliy4cqpjr4fxxjbpwyk1wkch5f8vblm1kvwf328s4gibszs")) + "0665zcyxkv2knydxgv2dn64zvy1dx9j9af12ds9s64qmzd1rk6pk")) (file-name (git-file-name name version)))) (arguments `(#:jar-name "plexus-sec-dispatcher.jar" @@ -4762,6 +4760,61 @@ function utilities.") (modello-single-mode file "1.0.0" "xpp3-reader") (modello-single-mode file "1.0.0" "xpp3-writer")) #t)) + (add-before 'build 'generate-javax.inject.Named + (lambda _ + (mkdir-p "build/classes/META-INF/sisu") + (with-output-to-file "build/classes/META-INF/sisu/javax.inject.Named" + (lambda _ + (display + "org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher\n"))) + #t)) + (add-before 'check 'fix-paths + (lambda _ + (copy-recursively "src/test/resources" "target") + #t)) + (replace 'install (install-from-pom "pom.xml"))))) + (propagated-inputs + (list java-plexus-utils java-plexus-cipher plexus-parent-pom-8)) + (native-inputs + (list java-javax-inject + java-modello-core + ;; for modello + java-plexus-container-default + java-plexus-classworlds + java-plexus-utils + java-guava + java-geronimo-xbean-reflect + ;; modello plugins + java-modello-plugins-java + java-modello-plugins-xml + java-modello-plugins-xpp3 + ;; for tests + java-junit)) + (build-system ant-build-system) + (home-page "https://github.com/sonatype/plexus-sec-dispatcher") + (synopsis "Plexus Security Dispatcher Component") + (description "This package is the Plexus Security Dispatcher Component. +This component decrypts a string passed to it.") + (license license:asl2.0))) + +(define-public java-plexus-sec-dispatcher-1.4 + (package + (inherit java-plexus-sec-dispatcher) + (version "1.4") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/codehaus-plexus/plexus-sec-dispatcher") + (commit (string-append "sec-dispatcher-" version)))) + (sha256 + (base32 + "1ng4yliy4cqpjr4fxxjbpwyk1wkch5f8vblm1kvwf328s4gibszs")) + (file-name (git-file-name "java-plexus-sec-dispatcher" version)))) + (arguments + (substitute-keyword-arguments (package-arguments java-plexus-sec-dispatcher) + ((#:phases phases) + `(modify-phases ,phases + (delete 'generate-javax.inject.Named) (add-before 'build 'generate-components.xml (lambda _ (mkdir-p "build/classes/META-INF/plexus") @@ -4790,37 +4843,10 @@ function utilities.") \n \n \n -\n"))) - #t)) - (add-before 'check 'fix-paths - (lambda _ - (copy-recursively "src/test/resources" "target") - #t)) - (replace 'install (install-from-pom "pom.xml"))))) +\n"))))))))) (propagated-inputs (list java-plexus-utils java-plexus-cipher-1.7 - java-sonatype-spice-parent-pom-12)) - (native-inputs - `(("java-modello-core" ,java-modello-core) - ;; for modello: - ("java-plexus-container-default" ,java-plexus-container-default) - ("java-plexus-classworlds" ,java-plexus-classworlds) - ("java-plexus-utils" ,java-plexus-utils) - ("java-guava" ,java-guava) - ("java-geronimo-xbean-reflect" ,java-geronimo-xbean-reflect) - ("java-plexus-build-api" ,java-plexus-build-api) - ;; modello plugins: - ("java-modellop-plugins-java" ,java-modello-plugins-java) - ("java-modellop-plugins-xml" ,java-modello-plugins-xml) - ("java-modellop-plugins-xpp3" ,java-modello-plugins-xpp3) - ;; for tests - ("java-junit" ,java-junit))) - (build-system ant-build-system) - (home-page "https://github.com/sonatype/plexus-sec-dispatcher") - (synopsis "Plexus Security Dispatcher Component") - (description "This package is the Plexus Security Dispatcher Component. -This component decrypts a string passed to it.") - (license license:asl2.0))) + java-sonatype-spice-parent-pom-12)))) (define-public java-plexus-cli (package diff --git a/gnu/packages/maven.scm b/gnu/packages/maven.scm index e20b902cc3..fbf39357c3 100644 --- a/gnu/packages/maven.scm +++ b/gnu/packages/maven.scm @@ -1294,7 +1294,7 @@ simply plain java objects."))) (propagated-inputs (list java-plexus-utils java-plexus-interpolation - java-plexus-sec-dispatcher + java-plexus-sec-dispatcher-1.4 maven-builder-support maven-settings maven-pom)) @@ -1983,7 +1983,7 @@ logging support."))) ("java-qdox" ,java-qdox) ;; tests ("java-plexus-cipher" ,java-plexus-cipher) - ("java-plexus-sec-dispatcher" ,java-plexus-sec-dispatcher) + ("java-plexus-sec-dispatcher" ,java-plexus-sec-dispatcher-1.4) ("java-jsr250" ,java-jsr250) ("java-cdi-api" ,java-cdi-api) ("java-junit" ,java-junit) @@ -2443,7 +2443,7 @@ reporting or the build process."))) java-plexus-classworlds java-plexus-component-annotations java-plexus-container-default - java-plexus-sec-dispatcher + java-plexus-sec-dispatcher-1.4 maven-3.0-pom)))) (define-public maven-3.0-compat -- cgit v1.3 From 137a7af1787227f002eb2babe94f73e029db6b71 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Mon, 20 Dec 2021 03:07:08 +0100 Subject: gnu: Add java-jvnet-parent-pom-3. * gnu/packages/java.scm (java-jvnet-parent-pom-3): New variable. --- gnu/packages/maven-parent-pom.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/maven-parent-pom.scm b/gnu/packages/maven-parent-pom.scm index 6d11c84f44..e2ebf83572 100644 --- a/gnu/packages/maven-parent-pom.scm +++ b/gnu/packages/maven-parent-pom.scm @@ -586,3 +586,32 @@ components.") (sha256 (base32 "0cqa072fz55j5xyvixqv8vbd7jsbhb1cd14bzjvm0hbv2wpd9npf")))))) + +(define-public java-jvnet-parent-pom-3 + (hidden-package + (package + (name "java-jvnet-parent-pom-3") + (version "3") + (source (origin + (method url-fetch) + (uri (string-append "https://repo1.maven.org/maven2/net/java/" + "jvnet-parent/" version "/jvnet-parent-" + version ".pom")) + (sha256 + (base32 + "0nj7958drckwf634cw9gmwgmdi302bya7bas16bbzp9rzag7ix9h")))) + (build-system ant-build-system) + (arguments + (list + #:tests? #f + #:phases + #~(modify-phases %standard-phases + (delete 'unpack) + (delete 'configure) + (delete 'build) + (replace 'install + (install-pom-file #$(package-source this-package)))))) + (home-page "https://mvnrepository.com/artifact/net.java/jvnet-parent") + (synopsis "java.net parent pom") + (description "This package contains the java.net parent pom file.") + (license license:asl2.0)))) -- cgit v1.3 From 89bc233f3e0a83d0e9506dadb13e716e435bd40a Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Mon, 20 Dec 2021 02:53:11 +0100 Subject: gnu: java-jsr250: Use proper source. Sources from maven.org are autogenerated, not actual sources. * gnu/packages/java.scm (java-jsr250)[source]: Use git repository. * gnu/packages/maven.scm (maven-embedder): Fix pom to use it. --- gnu/packages/java.scm | 16 +++++++--------- gnu/packages/maven.scm | 4 ++++ 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 8f0aaff3ed..b3165c1990 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -6241,14 +6241,14 @@ bottlenecks move away from the database in an effectively cached system.") (name "java-jsr250") (version "1.3") (source (origin - (method url-fetch) - (uri (string-append "https://repo1.maven.org/maven2/" - "javax/annotation/javax.annotation-api/" - version "/javax.annotation-api-" - version "-sources.jar")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/javaee/javax.annotation") + (commit version))) + (file-name (git-file-name name version)) (sha256 (base32 - "08clh8n4n9wfglf75qsqfjs6yf79f7x6hqx38cn856pksszv50kz")))) + "1g22a9d75g01s9yxgdig0ss7i30j4ysnnp08gn4krn0wly4lpqq0")))) (build-system ant-build-system) (arguments `(#:tests? #f ; no tests included @@ -6256,11 +6256,9 @@ bottlenecks move away from the database in an effectively cached system.") #:jar-name "jsr250.jar" #:phases (modify-phases %standard-phases - (add-before 'install 'create-pom - (generate-pom.xml "pom.xml" "javax.annotation" "jsr250-api" ,version - #:name "jsr250")) (replace 'install (install-from-pom "pom.xml"))))) + (propagated-inputs (list java-jvnet-parent-pom-3)) (home-page "https://jcp.org/en/jsr/detail?id=250") (synopsis "Security-related annotations") (description "This package provides annotations for security. It provides diff --git a/gnu/packages/maven.scm b/gnu/packages/maven.scm index fbf39357c3..423e859f8b 100644 --- a/gnu/packages/maven.scm +++ b/gnu/packages/maven.scm @@ -1740,6 +1740,10 @@ artifactId=maven-core" ,(package-version maven-core-bootstrap)))) (("srcdir=\"maven-embedder/src/test\"") "srcdir=\"maven-embedder/src/test/java\"")) #t)) + (add-before 'install 'fix-pom + (lambda _ + (substitute* "maven-embedder/pom.xml" + (("jsr250-api") "javax.annotation-api")))) (replace 'install (install-from-pom "maven-embedder/pom.xml"))))) (propagated-inputs -- cgit v1.3 From 33a58a3314fefba80fe34dcefa1fcb07e66b6de9 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Mon, 20 Dec 2021 02:08:54 +0100 Subject: gnu: java-eclipse-sisu-inject: Update to 0.3.5. * gnu/packages/java.scm (java-eclipse-sisu-inject): Update to 0.3.5. --- gnu/packages/java.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index b3165c1990..9112c95851 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -13036,7 +13036,7 @@ and reporting) project dependencies. It is characterized by the following: (define-public java-eclipse-sisu-inject (package (name "java-eclipse-sisu-inject") - (version "0.3.4") + (version "0.3.5") (source (origin (method git-fetch) (uri (git-reference @@ -13045,7 +13045,7 @@ and reporting) project dependencies. It is characterized by the following: (file-name (git-file-name name version)) (sha256 (base32 - "16044sizdb0rjbhlfbmcnpds5y7by7dyn9b0c11606aikqi8k3x6")))) + "1yh434b8pi8cwmpk825fbvbnkkk2cwd4gxxjaygg8i9j0q3l9zp3")))) (build-system ant-build-system) (arguments `(#:jar-name "eclipse-sisu-inject.jar" -- cgit v1.3 From 4775d17137dd1ed5bb7ab2fa0552c8619efa683b Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Mon, 20 Dec 2021 02:55:16 +0100 Subject: gnu: java-eclipse-sisu-plexus: Update to 0.3.5. * gnu/packages/java.scm (java-eclipse-sisu-plexus): Update to 0.3.5. --- gnu/packages/java.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 9112c95851..0686a46571 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -13096,7 +13096,7 @@ OSGi Service Registry is a goal of this project.") (define-public java-eclipse-sisu-plexus (package (name "java-eclipse-sisu-plexus") - (version "0.3.4") + (version "0.3.5") (source (origin (method git-fetch) (uri (git-reference @@ -13105,7 +13105,7 @@ OSGi Service Registry is a goal of this project.") (file-name (git-file-name name version)) (sha256 (base32 - "17mjlajnsqnk07cc58h1qpxrif85yb2m2y0pyba48yjjgikk8r9f")) + "0lm5h0dmh41ffcwd32qnk3a87d360am36yq7168ikkyqa8jxkx28")) (modules '((guix build utils))) (snippet '(begin @@ -13158,7 +13158,8 @@ OSGi Service Registry is a goal of this project.") (replace 'install (install-from-pom "org.eclipse.sisu.plexus/pom.xml"))))) (propagated-inputs - (list java-plexus-classworlds + (list java-jsr250 + java-plexus-classworlds java-plexus-utils java-plexus-component-annotations java-cdi-api -- cgit v1.3 From a208278229203ecc2a7cc0846822ea1830331535 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Mon, 20 Dec 2021 03:38:36 +0100 Subject: gnu: maven-common-artifact-filters: Update to 3.2.0. * gnu/packages/maven.scm (maven-common-artifact-filters): Update to 3.2.0. (maven-common-artifact-filters-3.1.0): New variable. --- gnu/packages/maven.scm | 40 +++++++++++++++++++++++++++++++--------- 1 file changed, 31 insertions(+), 9 deletions(-) diff --git a/gnu/packages/maven.scm b/gnu/packages/maven.scm index 423e859f8b..da1619b03b 100644 --- a/gnu/packages/maven.scm +++ b/gnu/packages/maven.scm @@ -2682,7 +2682,7 @@ Maven project dependencies.") (define-public maven-common-artifact-filters (package (name "maven-common-artifact-filters") - (version "3.1.0") + (version "3.2.0") (source (origin (method url-fetch) (uri (string-append "mirror://apache/maven/shared/" @@ -2690,7 +2690,7 @@ Maven project dependencies.") "-source-release.zip")) (sha256 (base32 - "1cl1qk4r0gp62bjzfm7lml9raz1my2kd4yf0ci0lnfsn0h5qivnb")))) + "1mr92s4zz6gf028wiskjg8rd1znxzdnmskg42ac55ifg9v1p1884")))) (build-system ant-build-system) (arguments `(#:jar-name "maven-common-artifact-filters.jar" @@ -2698,14 +2698,12 @@ Maven project dependencies.") #:tests? #f; require maven-plugin-testing-harness, which requires maven 3.2. #:phases (modify-phases %standard-phases - (add-before 'build 'remove-sisu + (add-before 'build 'fix-aether (lambda _ - ;; Replace sisu with an existing dependency, to prevent a failure - ;; when rewritting dependency versions (substitute* "pom.xml" - (("sisu-inject-plexus") "maven-plugin-api") - (("org.sonatype.sisu") "org.apache.maven")) - #t)) + (("eclipse.aether") "sonatype.aether")) + (substitute* "src/main/java/org/apache/maven/shared/artifact/filter/collection/ArtifactTransitivityFilter.java" + (("eclipse") "sonatype")))) (replace 'install (install-from-pom "pom.xml"))))) (propagated-inputs @@ -2715,6 +2713,7 @@ Maven project dependencies.") maven-3.0-plugin-api maven-shared-utils maven-parent-pom-33 + java-eclipse-sisu-plexus java-sonatype-aether-api java-sonatype-aether-util)) (inputs @@ -2727,6 +2726,29 @@ Maven project dependencies.") Maven project dependencies.") (license license:asl2.0))) +(define-public maven-common-artifact-filters-3.1.0 + (package + (inherit maven-common-artifact-filters) + (version "3.1.0") + (source (origin + (method url-fetch) + (uri (string-append "mirror://apache/maven/shared/" + "maven-common-artifact-filters-" version + "-source-release.zip")) + (sha256 + (base32 + "1cl1qk4r0gp62bjzfm7lml9raz1my2kd4yf0ci0lnfsn0h5qivnb")))) + (arguments + (substitute-keyword-arguments (package-arguments maven-common-artifact-filters) + ((#:phases phases) + `(modify-phases ,phases + (delete 'fix-aether) + (add-before 'build 'remove-sisu + (lambda _ + (substitute* "pom.xml" + (("sisu-inject-plexus") "maven-plugin-api") + (("org.sonatype.sisu") "org.apache.maven")))))))))) + (define-public maven-enforcer-api (package (name "maven-enforcer-api") @@ -2878,7 +2900,7 @@ Maven project dependencies.") (list java-commons-codec maven-3.0-artifact maven-3.0-core - maven-common-artifact-filters + maven-common-artifact-filters-3.1.0 java-plexus-component-annotations java-plexus-utils java-slf4j-api -- cgit v1.3 From 7c32460aa2f208a61e8da325e215b1b2e221ee64 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Mon, 20 Dec 2021 03:45:56 +0100 Subject: gnu: java-plexus-container-default-bootstrap: Update to 2.1.0. * gnu/packages/java.scm (java-plexus-container-default-bootstrap): Update to 2.1.0. (java-plexus-container-default-1.7, java-plexus-containers-parent-pom-1.7) (java-plexus-component-annotations-1.7, java-plexus-component-metadata-1.7): New variables. --- gnu/packages/java.scm | 188 ++++++++++++++++++++++++++++++++++++++++++++++--- gnu/packages/maven.scm | 22 +++--- 2 files changed, 191 insertions(+), 19 deletions(-) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 0686a46571..7d01a81e47 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -4094,7 +4094,7 @@ components.") (define java-plexus-container-default-bootstrap (package (name "java-plexus-container-default-bootstrap") - (version "1.7.1") + (version "2.1.0") (source (origin (method git-fetch) (uri (git-reference @@ -4103,7 +4103,7 @@ components.") (file-name (git-file-name name version)) (sha256 (base32 - "1316hrp5vqfv0aw7miq2fp0wwy833h66h502h29vnh5sxj27x228")))) + "0r9yq67c1hvi1pz5wmx6x6hk5fmavp8a7yal3j5hkaad757firn1")))) (build-system ant-build-system) (arguments `(#:jar-name "container-default.jar" @@ -4350,7 +4350,82 @@ from source tags and class annotations."))) (lambda _ (copy-recursively "src/main/resources" "build/classes/") - #t))))) + #t)) + (add-before 'build 'reinstate-cli + ;; The CLI was removed in 2.1.0, but we still need it to build some + ;; maven dependencies, and some parts of maven itself. We can't use + ;; the maven plugin for that yet. + (lambda _ + (with-output-to-file "src/main/java/org/codehaus/plexus/metadata/PlexusMetadataGeneratorCli.java" + (lambda _ + ;; Copied from a previous version of this package. + (display "package org.codehaus.plexus.metadata; + +import java.io.File; +import java.util.Arrays; +import java.util.Collections; + +import org.apache.commons.cli.CommandLine; +import org.apache.commons.cli.OptionBuilder; +import org.apache.commons.cli.Options; +import org.codehaus.plexus.PlexusContainer; +import org.codehaus.plexus.tools.cli.AbstractCli; + +public class PlexusMetadataGeneratorCli + extends AbstractCli +{ + public static final char SOURCE_DIRECTORY = 's'; + public static final char SOURCE_ENCODING = 'e'; + public static final char CLASSES_DIRECTORY = 'c'; + public static final char OUTPUT_FILE = 'o'; + public static final char DESCRIPTORS_DIRECTORY = 'm'; + + public static void main( String[] args ) + throws Exception + { + new PlexusMetadataGeneratorCli().execute( args ); + } + + @Override + public String getPomPropertiesPath() + { + return \"META-INF/maven/org.codehaus.plexus/plexus-metadata-generator/pom.properties\"; + } + + @Override + @SuppressWarnings(\"static-access\") + public Options buildCliOptions( Options options ) + { + options.addOption( OptionBuilder.withLongOpt( \"source\" ).hasArg().withDescription( \"Source directory.\" ).create( SOURCE_DIRECTORY ) ); + options.addOption( OptionBuilder.withLongOpt( \"encoding\" ).hasArg().withDescription( \"Source file encoding.\" ).create( SOURCE_ENCODING ) ); + options.addOption( OptionBuilder.withLongOpt( \"classes\" ).hasArg().withDescription( \"Classes directory.\" ).create( CLASSES_DIRECTORY ) ); + options.addOption( OptionBuilder.withLongOpt( \"output\" ).hasArg().withDescription( \"Output directory.\" ).create( OUTPUT_FILE ) ); + options.addOption( OptionBuilder.withLongOpt( \"descriptors\" ).hasArg().withDescription( \"Descriptors directory.\" ).create( DESCRIPTORS_DIRECTORY ) ); + return options; + } + + public void invokePlexusComponent( CommandLine cli, PlexusContainer plexus ) + throws Exception + { + MetadataGenerator metadataGenerator = plexus.lookup( MetadataGenerator.class ); + + MetadataGenerationRequest request = new MetadataGenerationRequest(); + request.classesDirectory = new File( cli.getOptionValue( CLASSES_DIRECTORY ) ); + request.classpath = Collections.emptyList(); + request.sourceDirectories = Arrays.asList( new String[]{ new File( cli.getOptionValue( SOURCE_DIRECTORY ) ).getAbsolutePath() } ); + request.sourceEncoding = cli.getOptionValue( SOURCE_ENCODING ); + request.useContextClassLoader = true; + request.outputFile = new File( cli.getOptionValue( OUTPUT_FILE ) ); + request.componentDescriptorDirectory = new File( cli.getOptionValue( DESCRIPTORS_DIRECTORY ) ); + + metadataGenerator.generateDescriptor( request ); + } +}"))))) + (add-before 'check 'fix-test-location + (lambda _ + (substitute* '("src/test/java/org/codehaus/plexus/metadata/DefaultComponentDescriptorWriterTest.java" + "src/test/java/org/codehaus/plexus/metadata/merge/ComponentsXmlMergerTest.java") + (("target") "build"))))))) (propagated-inputs `(("java-plexus-container-default" ,java-plexus-container-default) ("java-plexu-component-annotations" ,java-plexus-component-annotations) @@ -4364,7 +4439,104 @@ from source tags and class annotations."))) ("java-commons-cli" ,java-commons-cli) ("java-qdox" ,java-qdox) ("java-jdom2" ,java-jdom2) - ("java-asm" ,java-asm))) + ("java-asm-8" ,java-asm-8))) + (native-inputs + (list java-junit java-guava java-geronimo-xbean-reflect)) + (synopsis "Inversion-of-control container for Maven") + (description "The Plexus project provides a full software stack for creating +and executing software projects. Based on the Plexus container, the +applications can utilise component-oriented programming to build modular, +reusable components that can easily be assembled and reused. This package +provides the Maven plugin generating the component metadata."))) + +(define-public java-plexus-container-default-1.7 + (package + (inherit java-plexus-container-default) + (version "1.7.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/codehaus-plexus/plexus-containers") + (commit (string-append "plexus-containers-" version)))) + (file-name (git-file-name "java-plexus-container-default" version)) + (sha256 + (base32 + "1316hrp5vqfv0aw7miq2fp0wwy833h66h502h29vnh5sxj27x228")))))) + +(define java-plexus-containers-parent-pom-1.7 + (package + (inherit java-plexus-container-default-1.7) + (name "java-plexus-containers-parent-pom") + (arguments + `(#:tests? #f + #:phases + (modify-phases %standard-phases + (delete 'configure) + (delete 'build) + (replace 'install + (install-pom-file "pom.xml"))))) + (propagated-inputs + `(("plexus-parent-pom" ,plexus-parent-pom-4.0))))) + +(define-public java-plexus-component-annotations-1.7 + (package + (inherit java-plexus-container-default-1.7) + (name "java-plexus-component-annotations") + (arguments + `(#:jar-name "plexus-component-annotations.jar" + #:source-dir "plexus-component-annotations/src/main/java" + #:tests? #f; no tests + #:phases + (modify-phases %standard-phases + (replace 'install + (install-from-pom "plexus-component-annotations/pom.xml"))))) + (propagated-inputs + `(("java-plexus-containers-parent-pom-1.7" ,java-plexus-containers-parent-pom-1.7))) + (inputs '()) + (native-inputs '()) + (synopsis "Plexus descriptors generator") + (description "This package is a Maven plugin to generate Plexus descriptors +from source tags and class annotations."))) + +(define-public java-plexus-component-metadata-1.7 + (package + (inherit java-plexus-container-default-1.7) + (name "java-plexus-component-metadata") + (arguments + `(#:jar-name "plexus-component-metadata.jar" + #:source-dir "src/main/java" + #:test-dir "src/test" + #:phases + (modify-phases %standard-phases + (add-before 'configure 'chdir + (lambda _ + (chdir "plexus-component-metadata") + #t)) + (add-before 'build 'copy-resources + (lambda _ + (copy-recursively "src/main/resources" + "build/classes/") + #t)) + (add-before 'check 'fix-test-location + (lambda _ + (substitute* '("src/test/java/org/codehaus/plexus/metadata/DefaultComponentDescriptorWriterTest.java" + "src/test/java/org/codehaus/plexus/metadata/merge/ComponentsXmlMergerTest.java") + (("target") "build"))))))) + (propagated-inputs + (list java-plexus-container-default-1.7 + java-plexus-component-annotations-1.7 + java-plexus-utils + java-plexus-cli + java-plexus-cli + java-plexus-classworlds + maven-plugin-api + maven-plugin-annotations + maven-core-bootstrap + maven-model + java-commons-cli + java-qdox + java-jdom2 + java-asm)) (native-inputs (list java-junit java-guava java-geronimo-xbean-reflect)) (synopsis "Inversion-of-control container for Maven") @@ -4497,9 +4669,9 @@ and decryption.") (list java-asm java-qdox-2-M9 java-javax-inject plexus-parent-pom-4.0)) (inputs - (list java-plexus-component-annotations)) + (list java-plexus-component-annotations-1.7)) (native-inputs - (list java-plexus-component-metadata java-junit)) + (list java-plexus-component-metadata-1.7 java-junit)) (home-page "https://codehaus-plexus.github.io/plexus-languages/plexus-java") (synopsis "Shared language features for Java") (description "This package contains shared language features of the Java @@ -4616,9 +4788,9 @@ compilers.") (install-from-pom "plexus-compiler-manager/pom.xml"))))) (propagated-inputs (list java-plexus-compiler-api java-plexus-compiler-pom - java-plexus-container-default)) + java-plexus-container-default-1.7)) (native-inputs - (list unzip java-plexus-component-metadata)) + (list unzip java-plexus-component-metadata-1.7)) (synopsis "Compiler management for Plexus Compiler component") (description "Plexus Compiler is a Plexus component to use different compilers through a uniform API. This component chooses the compiler diff --git a/gnu/packages/maven.scm b/gnu/packages/maven.scm index da1619b03b..34af8992dc 100644 --- a/gnu/packages/maven.scm +++ b/gnu/packages/maven.scm @@ -293,7 +293,7 @@ for repositories using URI-based layouts."))) ("maven-resolver-util" ,maven-resolver-util) ("java-javax-inject" ,java-javax-inject) ("mavne-wagon-provider-api" ,maven-wagon-provider-api) - ("java-plexus-component-annotation" ,java-plexus-component-annotations) + ("java-plexus-component-annotation" ,java-plexus-component-annotations-1.7) ("java-plexus-classworld" ,java-plexus-classworlds) ("java-plexus-plexus-util" ,java-plexus-utils) ("java-slf4j-api" ,java-slf4j-api) @@ -832,8 +832,8 @@ classes used in multiple maven-wagon components."))) (list java-plexus-utils maven-wagon-provider-api)) (native-inputs `(("maven-wagon-provider-test" ,maven-wagon-provider-test) - ("java-plexus-component-metadata" ,java-plexus-component-metadata) - ("java-plexus-component-annotations" ,java-plexus-component-annotations) + ("java-plexus-component-metadata" ,java-plexus-component-metadata-1.7) + ("java-plexus-component-annotations" ,java-plexus-component-annotations-1.7) ("java-eclipse-sisu-plexus" ,java-eclipse-sisu-plexus) ("java-eclipse-sisu-inject" ,java-eclipse-sisu-inject) ("java-plexus-classworlds" ,java-plexus-classworlds) @@ -920,8 +920,8 @@ Test Compatibility Kit."))) maven-wagon-provider-api)) (native-inputs `(("maven-wagon-provider-test" ,maven-wagon-provider-test) - ("java-plexus-component-metadata" ,java-plexus-component-metadata) - ("java-plexus-component-annotations" ,java-plexus-component-annotations) + ("java-plexus-component-metadata" ,java-plexus-component-metadata-1.7) + ("java-plexus-component-annotations" ,java-plexus-component-annotations-1.7) ("java-eclipse-sisu-plexus" ,java-eclipse-sisu-plexus) ("java-eclipse-sisu-inject" ,java-eclipse-sisu-inject) ("java-plexus-classworlds" ,java-plexus-classworlds) @@ -992,8 +992,8 @@ wagon providers supporting HTTP."))) maven-wagon-provider-api)) (native-inputs `(("maven-wagon-provider-test" ,maven-wagon-provider-test) - ("java-plexus-component-metadata" ,java-plexus-component-metadata) - ("java-plexus-component-annotations" ,java-plexus-component-annotations) + ("java-plexus-component-metadata" ,java-plexus-component-metadata-1.7) + ("java-plexus-component-annotations" ,java-plexus-component-annotations-1.7) ("java-eclipse-sisu-plexus" ,java-eclipse-sisu-plexus) ("java-plexus-container-default" ,java-plexus-container-default) ("java-eclipse-sisu-inject" ,java-eclipse-sisu-inject) @@ -1569,7 +1569,7 @@ generally generated from plugin sources using maven-plugin-plugin."))) ("maven-plugin-api" ,maven-plugin-api) ("maven-repository-metadata" ,maven-repository-metadata) ("maven-shared-utils" ,maven-shared-utils) - ("java-plexus-component-annotations" ,java-plexus-component-annotations) + ("java-plexus-component-annotations" ,java-plexus-component-annotations-1.7) ("java-plexus-utils" ,java-plexus-utils) ("java-commons-lang3" ,java-commons-lang3) ("java-guava" ,java-guava) @@ -1687,7 +1687,7 @@ artifactId=maven-core" ,(package-version maven-core-bootstrap)))) (invoke "ant" "jar") #t)))))) (native-inputs - `(("java-plexus-component-metadata" ,java-plexus-component-metadata) + `(("java-plexus-component-metadata" ,java-plexus-component-metadata-1.7) ("java-commons-cli" ,java-commons-cli) ("java-plexus-cli" ,java-plexus-cli) ("java-jdom2" ,java-jdom2) @@ -1964,7 +1964,7 @@ logging support."))) (native-inputs `(("java-modello-core" ,java-modello-core) ("java-plexus-utils" ,java-plexus-utils) - ("java-plexus-component-annotations" ,java-plexus-component-annotations) + ("java-plexus-component-annotations" ,java-plexus-component-annotations-1.7) ("java-plexus-classworlds" ,java-plexus-classworlds) ("java-geronimo-xbean-reflect" ,java-geronimo-xbean-reflect) ("java-plexus-build-api" ,java-plexus-build-api) @@ -1979,7 +1979,7 @@ logging support."))) ("java-modello-plugins-xml" ,java-modello-plugins-xml) ("java-modello-plugins-xpp3" ,java-modello-plugins-xpp3) ;; metadata - ("java-plexus-component-metadata" ,java-plexus-component-metadata) + ("java-plexus-component-metadata" ,java-plexus-component-metadata-1.7) ("java-commons-cli" ,java-commons-cli) ("java-plexus-cli" ,java-plexus-cli) ("java-jdom2" ,java-jdom2) -- cgit v1.3 From 5fbc8ade73b795ad26cbedec90f860dab6a2c609 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Mon, 20 Dec 2021 14:38:10 +0100 Subject: gnu: Add java-sonatype-aether-api-1.13. * gnu/packages/maven.scm (java-sonatype-aether-api-1.13): New variable. --- gnu/packages/maven.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/maven.scm b/gnu/packages/maven.scm index 34af8992dc..943861187e 100644 --- a/gnu/packages/maven.scm +++ b/gnu/packages/maven.scm @@ -534,6 +534,37 @@ ease usage of the repository system."))) (list java-junit java-plexus-component-metadata java-sonatype-aether-test-util)))) +;; This slightly newer version is also required by some plugins +(define-public java-sonatype-aether-api-1.13 + (package + (name "java-sonatype-aether-api") + (version "1.13.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sonatype/sonatype-aether") + (commit (string-append "aether-" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1yl34dqhm6ykb7h63gkssyrdxv3dsa3n5b8d8cvy8rh4qsm6p2yb")))) + (build-system ant-build-system) + (arguments + `(#:jar-name "aether-api.jar" + #:source-dir "aether-api/src/main/java" + #:test-dir "aether-api/src/test" + #:phases + (modify-phases %standard-phases + (add-before 'install 'install-parent (install-pom-file "pom.xml")) + (replace 'install (install-from-pom "aether-api/pom.xml"))))) + (propagated-inputs + `(("java-sonatype-forge-parent-pom" ,java-sonatype-forge-parent-pom-10))) + (native-inputs `(("java-junit" ,java-junit))) + (home-page "https://github.com/sonatype/sonatype-aether") + (synopsis "Maven repository system API") + (description "This package contains the API for the maven repository system.") + (license license:asl2.0))) + ;; Again, this old version is required by some maven plugins (define-public java-eclipse-aether-api (package -- cgit v1.3 From a87c8057e6cb6cabff8c31620947aae6ea290e04 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Mon, 20 Dec 2021 14:38:45 +0100 Subject: gnu: Add java-sonatype-aether-spi-1.13. * gnu/packages/maven.scm (java-sonatype-aether-spi-1.13): New variable. --- gnu/packages/maven.scm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/gnu/packages/maven.scm b/gnu/packages/maven.scm index 943861187e..d2a35bfbe4 100644 --- a/gnu/packages/maven.scm +++ b/gnu/packages/maven.scm @@ -565,6 +565,23 @@ ease usage of the repository system."))) (description "This package contains the API for the maven repository system.") (license license:asl2.0))) +(define-public java-sonatype-aether-spi-1.13 + (package + (inherit java-sonatype-aether-api-1.13) + (name "java-sonatype-aether-spi") + (arguments + `(#:jar-name "aether-spi.jar" + #:source-dir "aether-spi/src/main/java" + #:tests? #f; no tests + #:phases + (modify-phases %standard-phases + (replace 'install (install-from-pom "aether-spi/pom.xml"))))) + (propagated-inputs + `(("java-sonatype-aether-api" ,java-sonatype-aether-api-1.13))) + (synopsis "Maven repository system SPI") + (description "This package contains the service provider interface (SPI) +for repository system implementations and repository connectors."))) + ;; Again, this old version is required by some maven plugins (define-public java-eclipse-aether-api (package -- cgit v1.3 From df4dad2d99fb13731b07ac0356259504699c6d93 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Mon, 20 Dec 2021 14:39:40 +0100 Subject: gnu: Add java-sonatype-aether-test-util-1.13. * gnu/packages/maven.scm (java-sonatype-aether-test-util-1.13): New variable. --- gnu/packages/maven.scm | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/gnu/packages/maven.scm b/gnu/packages/maven.scm index d2a35bfbe4..95d2e709be 100644 --- a/gnu/packages/maven.scm +++ b/gnu/packages/maven.scm @@ -582,6 +582,21 @@ ease usage of the repository system."))) (description "This package contains the service provider interface (SPI) for repository system implementations and repository connectors."))) +(define-public java-sonatype-aether-test-util-1.13 + (package + (inherit java-sonatype-aether-api-1.13) + (name "java-sonatype-aether-test-util") + (arguments + `(#:jar-name "java-sonatype-aether-test-util.jar" + #:source-dir "aether-test-util/src/main/java" + #:test-dir "aether-test-util/src/test")) + (inputs + `(("java-sonatype-aether-api" ,java-sonatype-aether-api-1.13) + ("java-sonatype-aether-spi" ,java-sonatype-aether-spi-1.13))) + (synopsis "Utility classes for testing the maven repository system") + (description "This package contains a collection of utility classes to +ease testing of the repository system."))) + ;; Again, this old version is required by some maven plugins (define-public java-eclipse-aether-api (package -- cgit v1.3 From 5fef46005c63bccb201c8604692ce5f0f56f3d4b Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Mon, 20 Dec 2021 14:40:37 +0100 Subject: gnu: Add java-sonatype-aether-util-1.13. * gnu/packages/maven.scm (java-sonatype-aether-util-1.13): New variable. --- gnu/packages/maven.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/maven.scm b/gnu/packages/maven.scm index 95d2e709be..c58b69c20f 100644 --- a/gnu/packages/maven.scm +++ b/gnu/packages/maven.scm @@ -597,6 +597,26 @@ for repository system implementations and repository connectors."))) (description "This package contains a collection of utility classes to ease testing of the repository system."))) +(define-public java-sonatype-aether-util-1.13 + (package + (inherit java-sonatype-aether-api-1.13) + (name "java-sonatype-aether-util") + (arguments + `(#:jar-name "aether-util.jar" + #:source-dir "aether-util/src/main/java" + #:test-dir "aether-util/src/test" + #:phases + (modify-phases %standard-phases + (replace 'install (install-from-pom "aether-util/pom.xml"))))) + (propagated-inputs + `(("java-sonatype-aether-api" ,java-sonatype-aether-api-1.13))) + (native-inputs + `(("java-junit" ,java-junit) + ("java-sonatype-aether-test-util" ,java-sonatype-aether-test-util-1.13))) + (synopsis "Utility classes for the maven repository system") + (description "This package contains a collection of utility classes to +ease usage of the repository system."))) + ;; Again, this old version is required by some maven plugins (define-public java-eclipse-aether-api (package -- cgit v1.3 From 76133fb764e4f01f4c1a0a344c59aeb7e0380580 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Mon, 20 Dec 2021 14:47:36 +0100 Subject: gnu: maven-dependency-tree: Update to 3.1.0. * gnu/packages/maven.scm (maven-dependency-tree): Update to 3.1.0. --- gnu/packages/maven.scm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gnu/packages/maven.scm b/gnu/packages/maven.scm index c58b69c20f..e76c28e48c 100644 --- a/gnu/packages/maven.scm +++ b/gnu/packages/maven.scm @@ -2731,7 +2731,7 @@ Maven project dependencies.") (define-public maven-dependency-tree (package (name "maven-dependency-tree") - (version "3.0.1") + (version "3.1.0") (source (origin (method url-fetch) (uri (string-append "mirror://apache/maven/shared/" @@ -2739,20 +2739,21 @@ Maven project dependencies.") "-source-release.zip")) (sha256 (base32 - "0mxfslxvcmjs13jl30zhcg672j970dzn6ihh79w9ajh6sfqmlds2")))) + "1vhcd3lmbyy8q61c37sqgbllqj4ypkxm344l6pb05mkchlyk5dy5")))) (build-system ant-build-system) (arguments `(#:jar-name "maven-dependency-tree.jar" #:source-dir "src/main/java" + #:tests? #f; no tests #:phases (modify-phases %standard-phases (replace 'install (install-from-pom "pom.xml"))))) (propagated-inputs (list maven-3.0-core java-plexus-component-annotations - maven-parent-pom-30)) + maven-parent-pom-34)) (inputs - (list java-sonatype-aether-api java-sonatype-aether-util + (list java-sonatype-aether-api-1.13 java-sonatype-aether-util-1.13 java-eclipse-aether-api java-eclipse-aether-util)) (native-inputs (list unzip java-junit)) -- cgit v1.3 From fb1a9c11e5ec928704c98dd633301bbdd7f3e8f4 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Tue, 21 Dec 2021 02:52:34 +0100 Subject: guix: maven: Fix java parser. * guix/build/maven/java.scm (comment, comment-chr): Support more comment styles. --- guix/build/maven/java.scm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/guix/build/maven/java.scm b/guix/build/maven/java.scm index daa4c88045..f8c8e5745d 100644 --- a/guix/build/maven/java.scm +++ b/guix/build/maven/java.scm @@ -31,11 +31,14 @@ (? (and (ignore "static") (* WS))) package-name (* WS) (ignore ";"))) -(define-peg-pattern comment all (and (? (and annotation-pat (* WS))) (ignore "/*") - comment-part)) +(define-peg-pattern comment all (or + (and (? (and annotation-pat (* WS))) (ignore "/*") + comment-part) + (and (ignore "//") (* (or "\t" (range #\ #\xffff))) + (or (ignore "\n") (ignore "\r")) (* WS)))) (define-peg-pattern comment-part body (or (ignore (and (* "*") "/")) (and (* "*") (+ comment-chr) comment-part))) -(define-peg-pattern comment-chr body (or "\t" "\n" (range #\ #\)) (range #\+ #\xffff))) +(define-peg-pattern comment-chr body (or "\t" "\n" "\r" (range #\ #\)) (range #\+ #\xffff))) (define-peg-pattern inline-comment none (and (ignore "//") (* inline-comment-chr) (ignore "\n"))) (define-peg-pattern inline-comment-chr body (range #\ #\xffff)) -- cgit v1.3 From 04a91c7019782b8a908de113526bca6785de5797 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Tue, 21 Dec 2021 02:53:29 +0100 Subject: gnu: maven-enforcer-api: Update to 3.0.0. * gnu/packages/maven.scm (maven-enforcer-api): Update to 3.0.0. * gnu/packages/java.scm (java-bsh): Do not patch pom file anymore. --- gnu/packages/java.scm | 5 ----- gnu/packages/maven.scm | 19 +++++++++---------- 2 files changed, 9 insertions(+), 15 deletions(-) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 7d01a81e47..9b07022b54 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -10746,11 +10746,6 @@ annotations.") #:make-flags (list "-DDATE" "(no date for reproducibility)") #:phases (modify-phases %standard-phases - (add-before 'install 'fix-pom - (lambda _ - (substitute* "pom.xml" - (("org.apache-extras.beanshell") "org.beanshell")) - #t)) (replace 'install (install-from-pom "pom.xml"))))) (inputs diff --git a/gnu/packages/maven.scm b/gnu/packages/maven.scm index e76c28e48c..d98e2855be 100644 --- a/gnu/packages/maven.scm +++ b/gnu/packages/maven.scm @@ -2836,16 +2836,14 @@ Maven project dependencies.") (define-public maven-enforcer-api (package (name "maven-enforcer-api") - (version "3.0.0-M3") + (version "3.0.0") (source (origin (method url-fetch) (uri (string-append "mirror://apache/maven/enforcer/" "enforcer-" version "-source-release.zip")) (sha256 (base32 - "014cwj0dqa69nnlzcin8pk9wsjmmg71vsbcpb16cibcjpm6h9wjg")) - (patches - (search-patches "maven-enforcer-api-fix-old-dependencies.patch")))) + "1479yp58jv788xc1jc2sbdxpajlbvwlk60639vd2h4s8r6x7naqh")))) (build-system ant-build-system) (arguments `(#:jar-name "maven-enforcer-api.jar" @@ -2879,12 +2877,13 @@ Maven project dependencies.") (add-before 'install 'fix-pom-versions (lambda _ (substitute* "pom.xml" - (("3.8.1") ,(package-version java-commons-lang3)) - (("1.4.1") ,(package-version maven-resolver-util)) - (("1.12") ,(package-version java-commons-codec)) - (("2.2") - ,(string-append "" (package-version maven-dependency-tree) - ""))))) + ((".*") + ,(string-append "" (package-version maven) + "")) + (("2.11.0") ,(package-version java-commons-io)) + (("3.12.0") ,(package-version java-commons-lang3)) + (("1.6.1") ,(package-version maven-resolver-util)) + (("1.15") ,(package-version java-commons-codec))))) (replace 'install (install-pom-file "pom.xml"))))) (propagated-inputs -- cgit v1.3 From f8ca94a654ddc93f48046c65ae1e81b728fe6009 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Tue, 21 Dec 2021 03:03:52 +0100 Subject: gnu: maven-wagon-provider-api: Update to 3.4.3. * gnu/packages/maven.scm (maven-wagon-provider-api): Update to 3.4.3. --- gnu/packages/maven.scm | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/gnu/packages/maven.scm b/gnu/packages/maven.scm index d98e2855be..288d6d1a63 100644 --- a/gnu/packages/maven.scm +++ b/gnu/packages/maven.scm @@ -810,14 +810,14 @@ replacement with improvements.") (define-public maven-wagon-provider-api (package (name "maven-wagon-provider-api") - (version "3.3.4") + (version "3.4.3") (source (origin (method url-fetch) (uri (string-append "https://archive.apache.org/dist/maven/wagon/" "wagon-" version "-source-release.zip")) (sha256 (base32 - "1iq9bilgfklzbxwwhzi3f19mkbaaf9dh9f83h3yz5gbmvypask9a")))) + "1rnviw0yr4g5902fb8pkd1gyvci4bz7hndjvhkqmnkj7ay0y6mf0")))) (build-system ant-build-system) (arguments `(#:jar-name "maven-wagon-provider-api.jar" @@ -934,7 +934,6 @@ classes used in multiple maven-wagon components."))) ("java-commons-cli" ,java-commons-cli) ("java-qdox" ,java-qdox) ("java-jdom2" ,java-jdom2) - ("java-asm" ,java-asm) ("java-geronimo-xbean-reflect" ,java-geronimo-xbean-reflect) ,@(package-native-inputs maven-wagon-provider-api))) (synopsis "Wagon provider that gets and puts artifacts using the file system") @@ -1022,7 +1021,6 @@ Test Compatibility Kit."))) ("java-commons-cli" ,java-commons-cli) ("java-qdox" ,java-qdox) ("java-jdom2" ,java-jdom2) - ("java-asm" ,java-asm) ("java-geronimo-xbean-reflect" ,java-geronimo-xbean-reflect) ,@(package-native-inputs maven-wagon-provider-api))) (synopsis "Shared Library for wagon providers supporting HTTP") @@ -1095,7 +1093,6 @@ wagon providers supporting HTTP."))) ("java-commons-cli" ,java-commons-cli) ("java-qdox" ,java-qdox) ("java-jdom2" ,java-jdom2) - ("java-asm" ,java-asm) ("java-geronimo-xbean-reflect" ,java-geronimo-xbean-reflect) ("java-javaee-servletapi" ,java-javaee-servletapi) ("java-eclipse-jetty-util-9.2" ,java-eclipse-jetty-util-9.2) -- cgit v1.3 From bfb9bde690a3346efbf179cb19e8ffacbba391e7 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Tue, 21 Dec 2021 03:07:46 +0100 Subject: gnu: Update maven-artifact-transfer to 0.13.1. * gnu/packages/maven.scm (maven-artifact-transfer): Update to 0.13.1. --- gnu/packages/maven.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/maven.scm b/gnu/packages/maven.scm index 288d6d1a63..f4c1d96b61 100644 --- a/gnu/packages/maven.scm +++ b/gnu/packages/maven.scm @@ -2945,7 +2945,7 @@ Maven project dependencies.") (define-public maven-artifact-transfer (package (name "maven-artifact-transfer") - (version "0.12.0") + (version "0.13.1") (source (origin (method url-fetch) (uri (string-append "mirror://apache/maven/shared/" @@ -2953,7 +2953,7 @@ Maven project dependencies.") "-source-release.zip")) (sha256 (base32 - "0mkdjr3wnvaxqaq68sy7h4mqlq3xgwwp5s2anj5vbxfy4bsc1ivj")))) + "0xl7lkksljacrhmvwf924zb6h0h5zw9494jaz9cz4hll0lrhlpz6")))) (build-system ant-build-system) (arguments `(#:tests? #f; require mockito 2 -- cgit v1.3 From 26c74ed8085f83cc0b27f4c5171c51427210dada Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Tue, 21 Dec 2021 03:40:10 +0100 Subject: gnu: maven: Update to 3.8.4. * gnu/packages/maven.scm (maven-pom): Update to 3.8.4. (maven-resolver-api): Update to 1.6.3. * gnu/packages/java.scm (java-modello-core): Update to 1.11. --- gnu/packages/java.scm | 4 +-- gnu/packages/maven.scm | 94 ++++++++++++++++++++++++++++++++------------------ 2 files changed, 63 insertions(+), 35 deletions(-) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 9b07022b54..b27892841e 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -5111,7 +5111,7 @@ project and determining what files need to be rebuilt.") (define-public java-modello-core (package (name "java-modello-core") - (version "1.9.1") + (version "1.11") (source (origin (method git-fetch) (uri (git-reference @@ -5120,7 +5120,7 @@ project and determining what files need to be rebuilt.") (file-name (git-file-name name version)) (sha256 (base32 - "1di6ni42aqllpdvkpyfcw70352vr2i8wf6hd5nhd9kmqjb5dj5j4")))) + "18885sim7z9j3wy19i9083y9kc8l9xxl2px823a96q4rnqj5z8s2")))) (build-system ant-build-system) (arguments `(#:jar-name "modello-core.jar" diff --git a/gnu/packages/maven.scm b/gnu/packages/maven.scm index f4c1d96b61..ba4f111930 100644 --- a/gnu/packages/maven.scm +++ b/gnu/packages/maven.scm @@ -38,7 +38,7 @@ (define-public maven-resolver-api (package (name "maven-resolver-api") - (version "1.3.1") + (version "1.6.3") (source (origin (method git-fetch) (uri (git-reference @@ -47,7 +47,7 @@ (file-name (git-file-name name version)) (sha256 (base32 - "1x1gll8nkfl6zgnab78fxxvvhg42b2grxgdh1wp2h4qxsjkxg93d")))) + "0hbbbxj14qyq8pccyab96pjqq90jnjmid1pml9kx55c5smfpjn37")))) (build-system ant-build-system) (arguments `(#:jar-name "maven-resolver-api.jar" @@ -58,7 +58,7 @@ (replace 'install (install-from-pom "maven-resolver-api/pom.xml"))))) (native-inputs - `(("java-asm" ,java-asm) + `(("java-asm-8" ,java-asm-8) ("java-cglib" ,java-cglib) ("java-hamcrest-core" ,java-hamcrest-core) ("java-junit" ,java-junit) @@ -220,6 +220,7 @@ for repositories using URI-based layouts."))) (list maven-resolver-api maven-resolver-spi maven-resolver-util + java-commons-lang3 java-eclipse-sisu-inject java-javax-inject java-guice @@ -305,7 +306,6 @@ for repositories using URI-based layouts."))) maven-resolver-test-util java-guava java-cglib - java-asm java-aopalliance java-guice)) (synopsis "Transport implementation for Maven") @@ -1117,13 +1117,13 @@ gets and puts artifacts through HTTP(S) using Apache HttpClient-4.x."))) (define maven-pom (package (name "maven-pom") - (version "3.6.1") + (version "3.8.4") (source (origin (method url-fetch) (uri (string-append "mirror://apache/maven/" "maven-3/" version "/source/" "apache-maven-" version "-src.tar.gz")) - (sha256 (base32 "0grw9zp166ci53rd7qkyy2qmwmik37xhiz1z84jpm0msyvzj2n82")) + (sha256 (base32 "16xbhkhhp05gskgbhrf1ia8riivvkhpk822n9xgnad61f9hzp2r9")) (modules '((guix build utils))) (snippet '(begin @@ -1197,7 +1197,7 @@ gets and puts artifacts through HTTP(S) using Apache HttpClient-4.x."))) (replace 'install (install-pom-file "pom.xml"))))) (propagated-inputs - `(("maven-parent-pom-33" ,maven-parent-pom-33))) + `(("maven-parent-pom-34" ,maven-parent-pom-34))) (home-page "https://maven.apache.org/") (synopsis "Build system") (description "Apache Maven is a software project management and comprehension @@ -1246,8 +1246,9 @@ and compares versions:"))) (let ((file "maven-model/src/main/mdo/maven.mdo")) (modello-single-mode file "4.0.0" "java") (modello-single-mode file "4.0.0" "xpp3-reader") + (modello-single-mode file "4.0.0" "xpp3-extended-reader") (modello-single-mode file "4.0.0" "xpp3-writer") - (modello-single-mode file "4.0.0" "xpp3-extended-reader")) + (modello-single-mode file "4.0.0" "xpp3-extended-writer")) #t)) (replace 'install (install-from-pom "maven-model/pom.xml"))))) (propagated-inputs @@ -1321,9 +1322,9 @@ setting, toolchains)"))) file mode "maven-settings/src/main/java" version "false" "true")) (let ((file "maven-settings/src/main/mdo/settings.mdo")) - (modello-single-mode file "1.1.0" "java") - (modello-single-mode file "1.1.0" "xpp3-reader") - (modello-single-mode file "1.1.0" "xpp3-writer")) + (modello-single-mode file "1.2.0" "java") + (modello-single-mode file "1.2.0" "xpp3-reader") + (modello-single-mode file "1.2.0" "xpp3-writer")) #t)) (replace 'install (install-from-pom "maven-settings/pom.xml"))))) (propagated-inputs @@ -1336,7 +1337,6 @@ setting, toolchains)"))) java-plexus-component-annotations java-guice java-cglib - java-asm java-eclipse-sisu-inject java-javax-inject java-plexus-classworlds @@ -1363,23 +1363,22 @@ simply plain java objects."))) #:test-dir "maven-settings-builder/src/test" #:phases (modify-phases %standard-phases - (add-before 'build 'generate-components.xml + (add-before 'build 'generate-sisu-named (lambda _ - (mkdir-p "build/classes/META-INF/plexus") - (chmod "components.sh" #o755) - (invoke "./components.sh" "maven-settings-builder/src/main/java" - "build/classes/META-INF/plexus/components.xml") - #t)) + (mkdir-p "build/classes/META-INF/sisu") + (chmod "sisu.sh" #o755) + (invoke "./sisu.sh" "maven-settings-builder/src/main/java" + "build/classes/META-INF/sisu/javax.inject.Named"))) (replace 'install (install-from-pom "maven-settings-builder/pom.xml"))))) (propagated-inputs (list java-plexus-utils java-plexus-interpolation - java-plexus-sec-dispatcher-1.4 + java-plexus-sec-dispatcher maven-builder-support maven-settings maven-pom)) (native-inputs - (list java-junit java-plexus-component-annotations)) + (list java-junit java-javax-inject java-plexus-component-annotations)) (description "Apache Maven is a software project management and comprehension tool. This package contains the effective model builder, with profile activation, inheritance, interpolation, @dots{}"))) @@ -1400,13 +1399,12 @@ inheritance, interpolation, @dots{}"))) (copy-recursively "maven-model-builder/src/main/resources" "build/classes") #t)) - (add-before 'build 'generate-components.xml + (add-before 'build 'generate-sisu-named (lambda _ - (mkdir-p "build/classes/META-INF/plexus") - (chmod "components.sh" #o755) - (invoke "./components.sh" "maven-model-builder/src/main/java" - "build/classes/META-INF/plexus/components.xml") - #t)) + (mkdir-p "build/classes/META-INF/sisu") + (chmod "sisu.sh" #o755) + (invoke "./sisu.sh" "maven-model-builder/src/main/java" + "build/classes/META-INF/sisu/javax.inject.Named"))) (add-before 'check 'fix-paths (lambda _ (substitute* (find-files "maven-model-builder/src/test/java" ".*.java") @@ -1426,9 +1424,10 @@ inheritance, interpolation, @dots{}"))) ("java-guava" ,java-guava) ("java-eclipse-sisu-plexus" ,java-eclipse-sisu-plexus) ("java-plexus-component-annotations" ,java-plexus-component-annotations) + ("java-powermock-reflect" ,java-powermock-reflect) + ("java-objenesis" ,java-objenesis) ("guice" ,java-guice) ("java-cglib" ,java-cglib) - ("java-asm" ,java-asm) ("sisu-inject" ,java-eclipse-sisu-inject) ("javax-inject" ,java-javax-inject) ("java-xmlunit" ,java-xmlunit) @@ -1554,7 +1553,6 @@ so really just plain objects."))) ("java-plexus-component-annotations" ,java-plexus-component-annotations) ("guice" ,java-guice) ("java-cglib" ,java-cglib) - ("java-asm" ,java-asm) ("sisu-inject" ,java-eclipse-sisu-inject) ("javax-inject" ,java-javax-inject) ("utils" ,java-plexus-utils))) @@ -1665,7 +1663,6 @@ generally generated from plugin sources using maven-plugin-plugin."))) (native-inputs `(("java-modello-core" ,java-modello-core) ("java-cglib" ,java-cglib) - ("java-asm" ,java-asm) ("java-plexus-classworlds" ,java-plexus-classworlds) ("java-geronimo-xbean-reflect" ,java-geronimo-xbean-reflect) ("java-plexus-build-api" ,java-plexus-build-api) @@ -1820,6 +1817,9 @@ artifactId=maven-core" ,(package-version maven-core-bootstrap)))) (("srcdir=\"maven-embedder/src/test\"") "srcdir=\"maven-embedder/src/test/java\"")) #t)) + (add-before 'check 'disable-failing-test + (lambda _ + (delete-file "maven-embedder/src/test/java/org/apache/maven/cli/event/ExecutionEventLoggerTest.java"))) (add-before 'install 'fix-pom (lambda _ (substitute* "maven-embedder/pom.xml" @@ -1856,13 +1856,13 @@ artifactId=maven-core" ,(package-version maven-core-bootstrap)))) ("java-slf4j-simple" ,java-slf4j-simple) ("java-jsr250" ,java-jsr250))) (native-inputs - `(("java-modello-core" ,java-modello-core) + `(("java-asm-8" ,java-asm-8) + ("java-modello-core" ,java-modello-core) ("java-geronimo-xbean-reflect" ,java-geronimo-xbean-reflect) ("java-plexus-build-api" ,java-plexus-build-api) ("java-eclipse-sisu-plexus" ,java-eclipse-sisu-plexus) ("java-eclipse-sisu-inject" ,java-eclipse-sisu-inject) ("java-cglib" ,java-cglib) - ("java-asm" ,java-asm) ("java-modello-plugins-java" ,java-modello-plugins-java) ("java-modello-plugins-xml" ,java-modello-plugins-xml) ("java-modello-plugins-xpp3" ,java-modello-plugins-xpp3) @@ -2020,6 +2020,9 @@ logging support."))) "--classes" "build/test-classes" "--descriptors" "build/test-classes/META-INF") #t)) + (add-before 'check 'disable-failing-test + (lambda _ + (delete-file "src/test/java/org/apache/maven/profiles/manager/DefaultProfileManagerTest.java"))) (add-after 'generate-metadata 'rebuild (lambda _ (invoke "ant" "jar") @@ -2067,7 +2070,7 @@ logging support."))) ("java-qdox" ,java-qdox) ;; tests ("java-plexus-cipher" ,java-plexus-cipher) - ("java-plexus-sec-dispatcher" ,java-plexus-sec-dispatcher-1.4) + ("java-plexus-sec-dispatcher" ,java-plexus-sec-dispatcher) ("java-jsr250" ,java-jsr250) ("java-cdi-api" ,java-cdi-api) ("java-junit" ,java-junit) @@ -2185,7 +2188,7 @@ layer for plugins that need to keep Maven2 compatibility."))) java-guice java-aopalliance java-cglib - java-asm + java-asm-8 java-eclipse-sisu-inject java-javax-inject java-plexus-component-annotations @@ -2322,6 +2325,16 @@ reporting or the build process."))) (inherit maven-settings-builder) (version (package-version maven-3.0-pom)) (source (package-source maven-3.0-pom)) + (arguments + (substitute-keyword-arguments (package-arguments maven-settings-builder) + ((#:phases phases) + `(modify-phases ,phases + (add-before 'build 'generate-components.xml + (lambda _ + (mkdir-p "build/classes/META-INF/plexus") + (chmod "components.sh" #o755) + (invoke "./components.sh" "maven-settings-builder/src/main/java" + "build/classes/META-INF/plexus/components.xml"))))))) (propagated-inputs `(("java-plexus-component-annotations" ,java-plexus-component-annotations) ,@(filter @@ -2332,6 +2345,8 @@ reporting or the build process."))) ("maven-pom" `("maven-pom" ,maven-3.0-pom)) ("maven-settings" `("maven-settings" ,maven-3.0-settings)) ("maven-builder-support" #f) + ("java-plexus-sec-dispatcher" + `("java-plexus-sec-dispatcher" ,java-plexus-sec-dispatcher-1.4)) (_ input))) (package-propagated-inputs maven-settings-builder))))))) @@ -2340,6 +2355,19 @@ reporting or the build process."))) (inherit maven-model-builder) (version (package-version maven-3.0-pom)) (source (package-source maven-3.0-pom)) + (arguments + (substitute-keyword-arguments (package-arguments maven-model-builder) + ((#:phases phases) + `(modify-phases ,phases + (add-before 'build 'generate-components.xml + (lambda _ + (mkdir-p "build/classes/META-INF/plexus") + (chmod "components.sh" #o755) + (invoke "./components.sh" "maven-model-builder/src/main/java" + "build/classes/META-INF/plexus/components.xml"))) + (add-before 'check 'remove-failing-test + (lambda _ + (delete-file "maven-model-builder/src/test/java/org/apache/maven/model/interpolation/StringSearchModelInterpolatorTest.java"))))))) (propagated-inputs `(("java-plexus-component-annotations" ,java-plexus-component-annotations) ,@(filter -- cgit v1.3 From f4a037e731084769ae581fe9c43c017673d39b43 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Sun, 6 Feb 2022 09:43:58 +0200 Subject: gnu: lagrange: Update to 1.10.4. * gnu/packages/web-browsers.scm (lagrange): Update to 1.10.4. --- gnu/packages/web-browsers.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm index c49e3ceac5..0463ed7e5c 100644 --- a/gnu/packages/web-browsers.scm +++ b/gnu/packages/web-browsers.scm @@ -692,7 +692,7 @@ is fully configurable and extensible in Common Lisp.") (define-public lagrange (package (name "lagrange") - (version "1.10.3") + (version "1.10.4") (source (origin (method url-fetch) @@ -700,7 +700,7 @@ is fully configurable and extensible in Common Lisp.") (string-append "https://git.skyjake.fi/skyjake/lagrange/releases/" "download/v" version "/lagrange-" version ".tar.gz")) (sha256 - (base32 "0s3qi5sxn75aiix0lr8q54w1rcw6yyvmkvdlk5hvsyg8cvs3fa84")) + (base32 "0jlk4399sibfizy6kv438iiwni9c5i6g1yk3hjma6n435653mpsr")) (modules '((guix build utils))) (snippet '(begin -- cgit v1.3 From 7c9ad54b0616112c7eea6dd02379616aef206490 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Sun, 6 Feb 2022 10:09:14 +0200 Subject: gnu: vim: Update to 8.2.4306. * gnu/packages/vim.scm (vim): Update to 8.2.4306. --- gnu/packages/vim.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm index d5667851a8..1f10c58525 100644 --- a/gnu/packages/vim.scm +++ b/gnu/packages/vim.scm @@ -76,7 +76,7 @@ (define-public vim (package (name "vim") - (version "8.2.3995") + (version "8.2.4306") (source (origin (method git-fetch) (uri (git-reference @@ -85,7 +85,7 @@ (file-name (git-file-name name version)) (sha256 (base32 - "1aqrywyry4vxf1x7mk5g1k5k6md38bnjb6f778hmk8ahx26mpqpb")))) + "1jppzgmngcdd7jfb5rnkkvf5d47svnjbn7qj4mvjacd9az3c7s9r")))) (build-system gnu-build-system) (arguments `(#:test-target "test" -- cgit v1.3 From c8b5f9daf5a5aed503c70ed7b3477d4edfd4f523 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Sun, 6 Feb 2022 19:30:24 +0100 Subject: gnu: ocaml-qcheck: Update to 0.18.1. * gnu/packages/ocaml.scm (ocaml-qcheck): Update to 0.18.1. * gnu/packages/patches/ocaml-qcheck-fix-test-whitespace.patch: Remove file. * gnu/local.mk (dist_patch_DATA): Remove it. --- gnu/local.mk | 1 - gnu/packages/ocaml.scm | 14 +++---------- .../patches/ocaml-qcheck-fix-test-whitespace.patch | 24 ---------------------- 3 files changed, 3 insertions(+), 36 deletions(-) delete mode 100644 gnu/packages/patches/ocaml-qcheck-fix-test-whitespace.patch diff --git a/gnu/local.mk b/gnu/local.mk index 3ae66803f2..38eed6bbae 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1570,7 +1570,6 @@ dist_patch_DATA = \ %D%/packages/patches/ocaml-dose3-Install-mli-cmx-etc.patch \ %D%/packages/patches/ocaml-multiple-definitions.patch \ %D%/packages/patches/ocaml-4.09-multiple-definitions.patch \ - %D%/packages/patches/ocaml-qcheck-fix-test-whitespace.patch \ %D%/packages/patches/omake-fix-non-determinism.patch \ %D%/packages/patches/oneko-remove-nonfree-characters.patch \ %D%/packages/patches/onnx-optimizer-system-library.patch \ diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 150ce3157f..6b743f8892 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1548,7 +1548,7 @@ archive(native) = \"frontc.cmxa\"")))) (define-public ocaml-qcheck (package (name "ocaml-qcheck") - (version "0.18") + (version "0.18.1") (source (origin (method git-fetch) @@ -1556,19 +1556,11 @@ archive(native) = \"frontc.cmxa\"")))) (url "https://github.com/c-cube/qcheck") (commit (string-append "v" version)))) (file-name (git-file-name name version)) - (patches (search-patches "ocaml-qcheck-fix-test-whitespace.patch")) (sha256 - (base32 "1s652hrj2sxqj30dfl300zjvvqk3r62a1bnzqw1hqyf6pi88qn8x")))) + (base32 "0g3r8lrw6fsdphgpnp08saxyxk1vd3chpmb564ir2qnsp716vz6z")))) (build-system dune-build-system) (arguments - `(#:test-target "." - #:phases - (modify-phases %standard-phases - (add-before 'build 'fix-deprecated - (lambda _ - (substitute* "src/core/QCheck.ml" - (("Pervasives.compare") "compare")) - #t))))) + `(#:test-target ".")) (propagated-inputs (list ocaml-alcotest ocaml-ounit)) (native-inputs diff --git a/gnu/packages/patches/ocaml-qcheck-fix-test-whitespace.patch b/gnu/packages/patches/ocaml-qcheck-fix-test-whitespace.patch deleted file mode 100644 index 012f5de31c..0000000000 --- a/gnu/packages/patches/ocaml-qcheck-fix-test-whitespace.patch +++ /dev/null @@ -1,24 +0,0 @@ -From 0cb666fffcbeb78c8c14d271b3ba65ea514bfc44 Mon Sep 17 00:00:00 2001 -From: Julien Lepiller -Date: Fri, 19 Nov 2021 03:03:21 +0100 -Subject: [PATCH] Fix whitespace issue in test - ---- - example/alcotest/output.txt.expected | 1 - - 1 file changed, 1 deletion(-) - -diff --git a/example/alcotest/output.txt.expected b/example/alcotest/output.txt.expected -index bde0b83..9f1417c 100644 ---- a/example/alcotest/output.txt.expected -+++ b/example/alcotest/output.txt.expected -@@ -16,7 +16,6 @@ test `fail_sort_id` failed on ≥ 1 cases: [1; 0] (after 20 shrink steps) - [exception] test `fail_sort_id` failed on ≥ 1 cases: [1; 0] (after 20 shrink steps) - - -- - ────────────────────────────────────────────────────────────────────────────── - - 3 failures! 5 tests run. --- -2.33.1 - -- cgit v1.3 From cceb4d34126208c32f1224af50784cb4408922ea Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Sun, 6 Feb 2022 20:06:36 +0100 Subject: gnu: ocaml-uutf: Update to 1.0.3. * gnu/packages/ocaml.scm (ocaml-uutf): Update to 1.0.3. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 6b743f8892..4a88d17f6c 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -2809,14 +2809,14 @@ and consumable.") (define-public ocaml-uutf (package (name "ocaml-uutf") - (version "1.0.1") + (version "1.0.3") (source (origin (method url-fetch) (uri (string-append "http://erratique.ch/software/uutf/releases/" "uutf-" version ".tbz")) (sha256 (base32 - "1gp96dcggq7s84934vimxh89caaxa77lqiff1yywbwkilkkjcfqj")))) + "0s05r8ggp1g97zq4rnvbxzj22pv8ld0k5wsdw662jw0y7mhsawl7")))) (build-system ocaml-build-system) (arguments `(#:tests? #f -- cgit v1.3 From 99a9b28806f42362547d086bc2ccd4fc5d03547f Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Sun, 6 Feb 2022 20:40:20 +0100 Subject: gnu: ocaml-integers: Update to 0.6.0. * gnu/packages/ocaml.scm (ocaml-integers): Update to 0.6.0. --- gnu/packages/ocaml.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 4a88d17f6c..097a67f20b 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -4189,7 +4189,7 @@ sensitive completion, colors, and more.") (define-public ocaml-integers (package (name "ocaml-integers") - (version "0.5.1") + (version "0.6.0") (home-page "https://github.com/ocamllabs/ocaml-integers") (source (origin (method git-fetch) @@ -4199,10 +4199,12 @@ sensitive completion, colors, and more.") (file-name (git-file-name name version)) (sha256 (base32 - "0by5pc851fk7ccxqy1w2qc5jwn9z8whyqhs5gxlm5986vr9msnyi")))) + "07qk7dgxykn528qvhfwa0j402yr58y1y84ivpi1ji1lvk0qddxcs")))) (build-system dune-build-system) (arguments `(#:tests? #f)) ; no tests + (propagated-inputs + (list ocaml-stdlib-shims)) (synopsis "Various signed and unsigned integer types for OCaml") (description "The ocaml-integers library provides a number of 8-, 16-, 32- and 64-bit signed and unsigned integer types, together with aliases such as -- cgit v1.3 From d0e7bca44239576d16462698b24a77e0dafa31e8 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Sun, 6 Feb 2022 21:38:42 +0100 Subject: gnu: ocaml-findlib: Update to 1.9.3. * gnu/packages/ocaml.scm (ocaml-findlib): Update to 1.9.3. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 097a67f20b..a93a5bf897 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1273,14 +1273,14 @@ to the other.") (define-public ocaml-findlib (package (name "ocaml-findlib") - (version "1.9.1") + (version "1.9.3") (source (origin (method url-fetch) (uri (string-append "http://download.camlcity.org/download/" "findlib" "-" version ".tar.gz")) (sha256 (base32 - "1qhgk25avmz4l4g47g8jvk0k1g9p9d5hbdrwpz2693a8ajyvhhib")))) + "0hfcwamcvinmww59b5i4yxbf0kxyzkp5qv3d1c7ybn9q52vgq463")))) (build-system gnu-build-system) (native-inputs (list m4 ocaml)) -- cgit v1.3 From 3a0aa66b4ae3843b2713d714b6d9d68683b85be0 Mon Sep 17 00:00:00 2001 From: Aleksandr Vityazev Date: Tue, 1 Feb 2022 09:16:07 +0000 Subject: gnu: emacs-vertico: Update to 0.20. * gnu/packages/emacs-xyz.scm (emacs-vertico): Update to 0.20. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 444b761116..0dbe580fc7 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -29679,7 +29679,7 @@ and preferred services can easily be configured.") (define-public emacs-vertico (package (name "emacs-vertico") - (version "0.19") + (version "0.20") (source (origin (method git-fetch) @@ -29688,7 +29688,7 @@ and preferred services can easily be configured.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1q167rwz2g58p0xrdn41vq5knmm5s6k60imnmgiprx4qz9dik2vg")))) + (base32 "0kvijirk3lz6m7wx3b31ws0qyrp45lccysp1ranrhdx58pp0551v")))) (build-system emacs-build-system) (arguments `(#:phases -- cgit v1.3 From 45fa5fec49315684197e6488951cc6bdc954e041 Mon Sep 17 00:00:00 2001 From: Niklas Eklund Date: Tue, 1 Feb 2022 18:49:29 +0100 Subject: gnu: Add emacs-tempel. * gnu/packages/emacs-xyz.scm (emacs-tempel): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 0dbe580fc7..a8fbcc5dbd 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -12913,6 +12913,27 @@ been adapted to work with mu4e.") "Emacs minor mode for redisplaying parts of the buffer as pretty symbols.") (license license:gpl3+))) +(define-public emacs-tempel + (package + (name "emacs-tempel") + (version "0.2") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/minad/tempel") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "16972j2qq03q65qszgjjkzl52f79hk007kyi249wg1bqhvfa59b6")))) + (build-system emacs-build-system) + (home-page "https://github.com/minad/tempel") + (synopsis "Simple templates for Emacs") + (description + "Tempel is a tiny template package for Emacs, which uses the syntax of +the Emacs Tempo library. You may also write your templates in Lisp.") + (license license:gpl3+))) + (define-public emacs-yasnippet (package (name "emacs-yasnippet") -- cgit v1.3 From 7a63137dab453e961e66ffa27d21526d64c5fa5e Mon Sep 17 00:00:00 2001 From: Jai Vetrivelan Date: Wed, 2 Feb 2022 05:09:54 +0530 Subject: gnu: Add emacs-subed. * gnu/packages/emacs-xyz.scm (emacs-subed): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index a8fbcc5dbd..c9c91cec32 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -107,6 +107,7 @@ ;;; Copyright © 2021 Brian Kubisiak ;;; Copyright © 2021, 2022 Taiju HIGASHI ;;; Copyright © 2022 Brandon Lucas +;;; Copyright © 2022 Jai Vetrivelan ;;; ;;; This file is part of GNU Guix. ;;; @@ -5935,6 +5936,36 @@ Gnus, e.g., for applying patches received by email.") user.") (license license:gpl3+))) +(define-public emacs-subed + ;; XXX: Upstream does not tag releases. Commit below matches version bump. + (let ((commit "9a660ed88600e9aff741051c28a9e638cd5df5f5")) + (package + (name "emacs-subed") + (version "1.0.2") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sachac/subed") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1biczfg8cl9sy02yx7nmf5ma7mdjsmi27v93x1gaw4zjwj8fmlkg")))) + (build-system emacs-build-system) + (arguments + `(#:phases (modify-phases %standard-phases + (add-after 'unpack 'chdir-subed + (lambda _ + (chdir "subed")))))) + (home-page "https://elpa.nongnu.org/nongnu/subed.html") + (synopsis "Major mode for editing subtitles") + (description + "@code{subed} is an Emacs major mode for editing subtitles while +playing the corresponding video with mpv. At the moment, the only supported +formats are SubRip (@file{.srt}), WebVTT (@file{.vtt}), and Advanced +SubStation Alpha (@file{.ass}).") + (license license:gpl3+)))) + (define-public emacs-miniedit (package (name "emacs-miniedit") -- cgit v1.3 From 5c6ebc0060e19b78ca2cca3b4cfc552511205c8a Mon Sep 17 00:00:00 2001 From: Jai Vetrivelan Date: Wed, 2 Feb 2022 22:01:08 +0530 Subject: gnu: Add emacs-popup-kill-ring. * gnu/packages/emacs-xyz.scm (emacs-popup-kill-ring): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index c9c91cec32..a35bfef98a 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -7096,6 +7096,29 @@ This provides a basic API and common UI widgets such as popup tooltips and popup menus.") (license license:gpl3+))) +(define-public emacs-popup-kill-ring + (let ((commit "a45c9cf79c4e1207fdbdd662e161154ef224ad61") + (revision "0")) + (package + (name "emacs-popup-kill-ring") + (version (git-version "0.2.8" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/waymondo/popup-kill-ring") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0bpnsc4agy6mcnc79d9a6gi79jiiqrhf3a55pw0p4z16m86vwyqr")))) + (build-system emacs-build-system) + (propagated-inputs (list emacs-pos-tip emacs-popup)) + (home-page "https://github.com/waymondo/popup-kill-ring") + (synopsis "Interactively insert item from kill-ring") + (description "This Emacs packages manages your Emacs kill-ring in an +autocomplete style popup menu.") + (license license:gpl3+)))) + (define-public emacs-python-black (package (name "emacs-python-black") -- cgit v1.3 From b55241fa678ba90eb002c7fa14da13ae6a7004eb Mon Sep 17 00:00:00 2001 From: Niklas Eklund Date: Wed, 2 Feb 2022 17:42:33 +0100 Subject: gnu: Add emacs-nano-modeline. * gnu/packages/emacs-xyz.scm (emacs-nano-modeline): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index a35bfef98a..a994a438dd 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -998,6 +998,31 @@ Alternatively the menu can be bound globally, for example: @code{(global-set-key [S-down-mouse-3] 'minions-minor-modes-menu)}.") (license license:gpl3+))) +(define-public emacs-nano-modeline + ;; No tagged release upstream, this commit is a couple of commits newer than + ;; 0.5 because of an error related to make-obsolete-variable + (let ((commit "c5bf2a977f1a06936ceb7a1805d1e2cf1f92f616") + (revision "0")) + (package + (name "emacs-nano-modeline") + (version (git-version "0.5" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rougier/nano-modeline") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "02c38v9a71wc9p10pjnqymyaqk4sf3nc5i7df1j9qr5qrqwniq89")))) + (build-system emacs-build-system) + (home-page "https://github.com/rougier/nano-modeline") + (synopsis "Emacs minor mode controlling mode line") + (description "Nano modeline is a minor mode for Emacs that modifies the +mode line as @samp{[ status | name (primary) secondary ]}. It can be +displayed at the bottom or at the top.") + (license license:gpl3+)))) + (define-public emacs-moody (package (name "emacs-moody") -- cgit v1.3 From f424c3123d2ed174b889a7fa6e8bc6ac3a279661 Mon Sep 17 00:00:00 2001 From: Niklas Eklund Date: Sat, 5 Feb 2022 11:21:00 +0100 Subject: gnu: emacs-bash-completion: Update to 3.1.0-0.c5eaeed. * gnu/packages/emacs-xyz.scm (emacs-bash-completion): Update to 3.1.0-0.c5eaeed. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 72 ++++++++++++++++++++++++---------------------- 1 file changed, 38 insertions(+), 34 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index a994a438dd..884ebf3ec7 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -15937,41 +15937,45 @@ messaging service.") Slack client.") (license license:gpl3+)))) - (define-public emacs-bash-completion - (package - (name "emacs-bash-completion") - (version "3.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/szermatt/emacs-bash-completion") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "11j2k3irixp47r2iglxdmjphahqhgnxg98n2xwagwzyq99lsamj4")))) - (inputs (list bash)) - (build-system emacs-build-system) - (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'unpack 'make-git-checkout-writable - (λ _ - (for-each make-file-writable (find-files ".")) - #t)) - (add-before 'install 'configure - (lambda* (#:key inputs #:allow-other-keys) - (let ((bash (assoc-ref inputs "bash"))) - (emacs-substitute-variables "bash-completion.el" - ("bash-completion-prog" (string-append bash "/bin/bash")))) - #t))))) - (home-page "https://github.com/szermatt/emacs-bash-completion") - (synopsis "Bash completion for the shell buffer") - (description - "@code{bash-completion} defines dynamic completion hooks for shell-mode -and shell-command prompts that are based on Bash completion.") - (license license:gpl2+))) + ;; Need to use a newer commit than the latest version in order to support + ;; completion interfaces that alters the candidate list provided by the + ;; package + (let ((commit "c5eaeed156ab906190c662d491269230967104b1") + (revision "0")) + (package + (name "emacs-bash-completion") + (version (git-version "3.1.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/szermatt/emacs-bash-completion") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r221iirqsbz13s76r68i496izbirrvcw8ql3wsh205zmxa3jqg1")))) + (inputs (list bash)) + (build-system emacs-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'make-git-checkout-writable + (λ _ + (for-each make-file-writable (find-files ".")) + #t)) + (add-before 'install 'configure + (lambda* (#:key inputs #:allow-other-keys) + (let ((bash (assoc-ref inputs "bash"))) + (emacs-substitute-variables "bash-completion.el" + ("bash-completion-prog" (string-append bash "/bin/bash")))) + #t))))) + (home-page "https://github.com/szermatt/emacs-bash-completion") + (synopsis "Bash completion for the shell buffer") + (description + "@code{bash-completion} defines dynamic completion hooks for shell-mode + and shell-command prompts that are based on Bash completion.") + (license license:gpl2+)))) (define-public emacs-easy-kill (package -- cgit v1.3 From 661b5acc723b4271dc75b6c20699601188f16f57 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sun, 6 Feb 2022 23:05:43 +0100 Subject: gnu: emacs-bash-completion: Improve package style. * gnu/packages/emacs-xyz.scm (emacs-bash-completion)[arguments]<#:phases>: Remove trailing #T. Use G-expressions. Use SEARCH-INPUT-FILE. --- gnu/packages/emacs-xyz.scm | 59 +++++++++++++++++++++++----------------------- 1 file changed, 29 insertions(+), 30 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 884ebf3ec7..74ec1b07d6 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -15944,38 +15944,37 @@ Slack client.") (let ((commit "c5eaeed156ab906190c662d491269230967104b1") (revision "0")) (package - (name "emacs-bash-completion") - (version (git-version "3.1.0" revision commit)) - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/szermatt/emacs-bash-completion") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0r221iirqsbz13s76r68i496izbirrvcw8ql3wsh205zmxa3jqg1")))) - (inputs (list bash)) - (build-system emacs-build-system) - (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'unpack 'make-git-checkout-writable - (λ _ - (for-each make-file-writable (find-files ".")) - #t)) - (add-before 'install 'configure - (lambda* (#:key inputs #:allow-other-keys) - (let ((bash (assoc-ref inputs "bash"))) + (name "emacs-bash-completion") + (version (git-version "3.1.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/szermatt/emacs-bash-completion") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r221iirqsbz13s76r68i496izbirrvcw8ql3wsh205zmxa3jqg1")))) + (inputs (list bash)) + (build-system emacs-build-system) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'make-git-checkout-writable + (λ _ + (for-each make-file-writable (find-files ".")))) + (add-before 'install 'configure + (lambda* (#:key inputs #:allow-other-keys) (emacs-substitute-variables "bash-completion.el" - ("bash-completion-prog" (string-append bash "/bin/bash")))) - #t))))) - (home-page "https://github.com/szermatt/emacs-bash-completion") - (synopsis "Bash completion for the shell buffer") - (description - "@code{bash-completion} defines dynamic completion hooks for shell-mode + ("bash-completion-prog" + (search-input-file inputs "/bin/bash")))))))) + (home-page "https://github.com/szermatt/emacs-bash-completion") + (synopsis "Bash completion for the shell buffer") + (description + "@code{bash-completion} defines dynamic completion hooks for shell-mode and shell-command prompts that are based on Bash completion.") - (license license:gpl2+)))) + (license license:gpl2+)))) (define-public emacs-easy-kill (package -- cgit v1.3 From c47dc7ffd757d7964d120fd00bce54a007f743e8 Mon Sep 17 00:00:00 2001 From: Andrew Tropin Date: Sun, 6 Feb 2022 07:58:46 +0300 Subject: gnu: Add emacs-consult-dir. * gnu/packages/emacs-xyz.scm (emacs-consult-dir): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 74ec1b07d6..81543e1cfc 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -8381,6 +8381,31 @@ Emacs completion function completing-read, which allows quickly selecting from a list of candidates.") (license license:gpl3+))) +(define-public emacs-consult-dir + (package + (name "emacs-consult-dir") + (version "0.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/karthink/consult-dir") + (commit (string-append "v" version)))) + (sha256 + (base32 "1cff4ssrn1mw2s5n090pdmwdirnfih8idg5f0ll2bi2djc4hq5kn")) + (file-name (git-file-name name version)))) + (build-system emacs-build-system) + (propagated-inputs (list emacs-consult)) + (home-page "https://github.com/karthink/consult-dir") + (synopsis "Insert paths into minibuffer prompts in Emacs") + (description "Consult-dir allows you to easily insert directory +paths into the minibuffer prompt in Emacs. + +When using the minibuffer, you can switch---with completion and filtering +provided by your completion setup---to any directory you’ve visited recently, +or to a project or bookmarked directory. The minibuffer prompt will be +replaced with the directory you choose.") + (license license:gpl3+))) + (define-public emacs-consult-notmuch (package (name "emacs-consult-notmuch") -- cgit v1.3 From 1a586346b1cd726d96604c8d1a2bd5d1609eb088 Mon Sep 17 00:00:00 2001 From: pinoaffe Date: Sat, 29 Jan 2022 15:48:03 +0100 Subject: gnu: Add emacs-spaceline-all-the-icons. * gnu/packages/emacs-xyz.scm (emacs-spaceline-all-the-icons): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 81543e1cfc..3ceb7088da 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -660,6 +660,34 @@ expression navigating and manipulating. It supports many major modes out of the box.") (license license:gpl3+)))) +(define-public emacs-spaceline-all-the-icons + (package + (name "emacs-spaceline-all-the-icons") + (version "1.4.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/domtronn/spaceline-all-the-icons.el") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "186v71d8n1iy73drayyf57pyzlz973q74mazkyvb8w3fj8bb3llm")))) + (build-system emacs-build-system) + (propagated-inputs + (list emacs-all-the-icons + emacs-memoize + emacs-spaceline)) + (home-page "https://github.com/domtronn/spaceline-all-the-icons.el") + (synopsis + "Theme for @code{emacs-spaceline} using @code{emacs-all-the-icons}") + (description + "This package is a theme for @code{emacs-spaceline} that recreates most +of the segments available in that package using icons from +@code{emacs-all-the-icons}. Icon fonts allow for more tailored and detailed +information in the mode line.") + (license license:expat))) + (define-public emacs-project (package (name "emacs-project") -- cgit v1.3 From 88299bbe242b9dda0357991d3e8301c413b508e0 Mon Sep 17 00:00:00 2001 From: pinoaffe Date: Sun, 6 Feb 2022 23:20:54 +0100 Subject: gnu: Add emacs-all-the-icons-ibuffer. * gnu/packages/emacs-xyz.scm (emacs-all-the-icons-ibuffer): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 3ceb7088da..94d050eb8b 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -24960,6 +24960,30 @@ based on diff output.") be used in @code{dired-mode}.") (license license:gpl3+)))) +(define-public emacs-all-the-icons-ibuffer + (package + (name "emacs-all-the-icons-ibuffer") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/seagle0128/all-the-icons-ibuffer") + (commit (string-append"v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1c1fkkwzxxa90fd5q5x6xlj48p8rhj4bs7h8wxx41w6wsggk2fm2")))) + (build-system emacs-build-system) + (propagated-inputs + (list emacs-all-the-icons)) + (home-page "https://github.com/seagle0128/all-the-icons-ibuffer") + (synopsis "Display icons for all buffers in ibuffer") + (description + "This package uses @code{emacs-all-the-icons} to display icons in Ibuffer +buffers.") + (license license:gpl3+))) + (define-public emacs-exwm-edit (let ((commit "e1291e311840f1049106fe98cec032a1c75efd2b") (version "0.0.1") -- cgit v1.3 From 6ad918c0de80d3caaf089d010b47e26101b17c3d Mon Sep 17 00:00:00 2001 From: pinoaffe Date: Sun, 6 Feb 2022 23:24:03 +0100 Subject: gnu: Add emacs-enlive. * gnu/packages/emacs-xyz.scm (emacs-enlive): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 94d050eb8b..de2ac45066 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -15492,6 +15492,28 @@ query them from the comfort of your editor.") buffer's environment.") (license license:gpl3+))) +(define-public emacs-enlive + (package + (name "emacs-enlive") + (version "0.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/zweifisch/enlive") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "08j6b79vy8ry4ad1abk3hvxjbb4ylrhkvrbrnq1gcikl4h1p2v63")))) + (build-system emacs-build-system) + (home-page "http://github.com/zweifisch/enlive") + (synopsis "Query HTML document with CSS selectors in Emacs") + (description + "Enlive is an Emacs library that allows the user to query HTML documents +from within Elisp using a DSL similar to CSS selectors.") + (license license:gpl3+))) + (define-public emacs-envrc (package (name "emacs-envrc") -- cgit v1.3 From 5fb078eee2a07da72e3431f8b5f1099258a952b1 Mon Sep 17 00:00:00 2001 From: pinoaffe Date: Sun, 6 Feb 2022 23:26:29 +0100 Subject: gnu: Add emacs-org-books. * gnu/packages/emacs-xyz.scm (emacs-org-books): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index de2ac45066..d9007e7776 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -5082,6 +5082,34 @@ strike through completed TODO headings, changes Org blocks, changes Org check boxes, and more.") (license license:gpl3+)))) +(define-public emacs-org-books + (package + (name "emacs-org-books") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/lepisma/org-books") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1sgckvpjdaig9r2clcvs6ckgf2kx7amikkpq26y30jbnfnbskf0v")))) + (build-system emacs-build-system) + (propagated-inputs + (list emacs-dash + emacs-enlive + emacs-helm + emacs-helm-org + emacs-org + emacs-s)) + (home-page "https://github.com/lepisma/org-books") + (synopsis "Reading list management with Org mode and Helm") + (description + "Org Books is a tool for managing reading lists in an Org mode file.") + (license license:gpl3+))) + (define-public emacs-org-inline-pdf (package (name "emacs-org-inline-pdf") -- cgit v1.3 From 574cc07e8ed708480a10257682f3e0fc6aba78ee Mon Sep 17 00:00:00 2001 From: pinoaffe Date: Sun, 6 Feb 2022 23:30:10 +0100 Subject: gnu: Add emacs-org-chef. * gnu/packages/emacs-xyz.scm (emacs-org-chef): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index d9007e7776..26fbea3947 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -5110,6 +5110,32 @@ boxes, and more.") "Org Books is a tool for managing reading lists in an Org mode file.") (license license:gpl3+))) +(define-public emacs-org-chef + ;; Upstream does not tag version bumps. Version is extracted from "Version" + ;; keyword in main file. + (let ((commit "87e9a6c4844ff32f47c8d1108ec0f087a3148a8e") + (revision "0")) + (package + (name "emacs-org-chef") + (version (git-version "0.1.3" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Chobbes/org-chef") + (commit commit))) + (sha256 + (base32 "0xdfaf3shl3iij7nnshb5ryccqq70rpk0zm0d3fdwdbfa8rf7fkp")))) + (build-system emacs-build-system) + (propagated-inputs (list emacs-org)) + (home-page "https://github.com/Chobbes/org-chef") + (synopsis "Cookbook and recipe management with Emacs Org mode") + (description + "Org Chef is a package for managing recipes in Org mode. One of the +main features is that it can automatically extract recipes from websites like +allrecipes.com.") + (license license:expat)))) + (define-public emacs-org-inline-pdf (package (name "emacs-org-inline-pdf") -- cgit v1.3 From 5fcaee669e0a64496415dc85a0fff086c814d091 Mon Sep 17 00:00:00 2001 From: pinoaffe Date: Sun, 6 Feb 2022 23:32:24 +0100 Subject: gnu: Add emacs-ox-reveal. * gnu/packages/emacs-xyz.scm (emacs-ox-reveal): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 26fbea3947..dc18671c46 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -26511,6 +26511,33 @@ format.") files to numerous other formats via Pandoc.") (license license:gpl3+))) +(define-public emacs-ox-reveal + (let ((commit "07900f29fada581d0e1b0f1e2057cea5e1ba8ce1") + (revision "0")) + (package + (name "emacs-ox-reveal") + (version (git-version "1.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hexmode/ox-reveal") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "132b0llxda8jivabvm2ssbrdny7q2q1c0z4ikb12k4kia3fvg6cg")))) + (build-system emacs-build-system) + (propagated-inputs + (list emacs-org)) + (home-page "https://github.com/hexmode/ox-reveal") + (synopsis "reveal.js Presentation Back-End for Org export engine") + (description + "Org Reveal exports your Org documents to @code{reveal.js} presentations. +With org-reveal, you can create beautiful presentations with 3D effects from +simple but powerful Org contents.") + (license license:gpl3+)))) + (define-public emacs-wc-mode (package (name "emacs-wc-mode") -- cgit v1.3 From 4255292154c93953f47d66d7c8769be5fb87809d Mon Sep 17 00:00:00 2001 From: pinoaffe Date: Sun, 6 Feb 2022 23:33:34 +0100 Subject: gnu: Add emacs-apache-mode. * gnu/packages/emacs-xyz.scm (emacs-apache-mode): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index dc18671c46..827cc284e9 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -4263,6 +4263,29 @@ at the current line number or active region. @code{git-link-commit} returns the URL for a commit. URLs are added to the kill ring.") (license license:gpl3+))) +(define-public emacs-apache-mode + (package + (name "emacs-apache-mode") + (version "2.2.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emacs-php/apache-mode") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1grs2x51k8pa6sgfa82s5pwwdfv7zw46ccw0zvd2rvzbhpq21p2z")))) + (build-system emacs-build-system) + (home-page "https://github.com/emacs-php/apache-mode") + (synopsis + "Syntax highlighting and indentation support for Apache config files") + (description + "This package provides @code{apache-mode}, an Emacs major mode for Apache +configuration files which provides syntax highlighting and indentation rules. +This mode supports Apache HTTP Server 2.4 and major modules.") + (license license:gpl2+))) + (define-public emacs-apheleia (package (name "emacs-apheleia") -- cgit v1.3 From dd63577f237f7fb99a97badfddc2a24d1dd9e4d6 Mon Sep 17 00:00:00 2001 From: pinoaffe Date: Sun, 6 Feb 2022 23:36:20 +0100 Subject: gnu: Add emacs-robots-txt-mode. * gnu/packages/emacs-xyz.scm (emacs-robots-txt-mode): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 827cc284e9..1e9ee0efcb 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -5403,6 +5403,26 @@ features such as syntax highlighting, comments, finding keywords, completing keywords and smart indentation.") (license license:gpl3+))) +(define-public emacs-robots-txt-mode + (package + (name "emacs-robots-txt-mode") + (version "0.0.9") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emacs-php/robots-txt-mode") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "07255pn80w4742sz2h9vbmfxxd8ps2kcn73p7m2bgy02kgbzw42b")))) + (build-system emacs-build-system) + (home-page "https://github.com/emacs-php/robots-txt-mode") + (synopsis "Syntax highlighting for @file{robots.txt} files") + (description "This package provides an Emacs major mode for editing +@file{robots.txt} files.") + (license license:gpl3+))) + (define-public emacs-roguel-ike (package (name "emacs-roguel-ike") -- cgit v1.3 From 068070e53aaf0d87f1c6cb37675256a72bdf65ab Mon Sep 17 00:00:00 2001 From: Pierre-Henry Fröhring Date: Sun, 6 Feb 2022 23:50:14 +0100 Subject: gnu: Add emacs-beacon. * gnu/packages/emacs-xyz.scm (emacs-beacon): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 1e9ee0efcb..d683f30233 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -2420,6 +2420,28 @@ like. It can be linked with various Emacs mail clients (Message and Mail mode, Rmail, Gnus, MH-E, and VM). BBDB is fully customizable.") (license license:gpl3+))) +(define-public emacs-beacon + (package + (name "emacs-beacon") + (version "1.3.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Malabarba/beacon") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0mypzfasclq7bmw0i8hfyp8c1ycd3kdgd5h1faygzh9r0phh7ciy")))) + (build-system emacs-build-system) + (home-page "https://github.com/Malabarba/beacon") + (synopsis "Emacs minor mode creating a light that follows your cursor around") + (description + "Beacon is an Emacs minor-mode. Whenever the window scrolls a light will +shine on top of your cursor so you know where it is.") + (license license:gpl3+))) + (define-public emacs-counsel-bbdb (package (name "emacs-counsel-bbdb") -- cgit v1.3 From 9efaaeb3752f4bcf35800f3b9bf5fadb9ef615df Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sun, 6 Feb 2022 23:54:32 +0100 Subject: gnu: emacs-consult: Update to 0.15. * gnu/packages/emacs-xyz.scm (emacs-consult): Update to 0.15. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index d683f30233..b40f67848e 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -8510,7 +8510,7 @@ style, or as multiple word prefixes.") (define-public emacs-consult (package (name "emacs-consult") - (version "0.14") + (version "0.15") (source (origin (method git-fetch) @@ -8518,7 +8518,7 @@ style, or as multiple word prefixes.") (url "https://github.com/minad/consult") (commit version))) (sha256 - (base32 "051fjp03lj3b5kkzpdhk78g2lj37v973q0f012zld1n6937srj6h")) + (base32 "0cfj8h0k05947cazsr95yy75shs0vpy59sa41f31xbw00q9l48q6")) (file-name (git-file-name name version)))) (build-system emacs-build-system) (home-page "https://github.com/minad/consult") -- cgit v1.3 From 40fd237fd2fe21c8969f5a164e156210862000a6 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sun, 6 Feb 2022 23:56:09 +0100 Subject: gnu: emacs-corfu: Update to 0.18. * gnu/packages/emacs-xyz.scm (emacs-corfu): Update to 0.18. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index b40f67848e..438cfd33e2 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -2985,7 +2985,7 @@ of bibliographic references.") (define-public emacs-corfu (package (name "emacs-corfu") - (version "0.17") + (version "0.18") (source (origin (method git-fetch) @@ -2994,7 +2994,7 @@ of bibliographic references.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1jj38ik0mr33kqpc1i6hw5hqw43lz9f4nn8zsmw03crlcjf767lh")))) + (base32 "0k980hz46q1xmnblinwscyiiw5djpnv6s0d0hklyfp46jb1i51fj")))) (build-system emacs-build-system) (home-page "https://github.com/minad/corfu") (synopsis "Completion overlay region function") -- cgit v1.3 From e9a3f8cdd4b4756b339d135fe91e94a853ced526 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sun, 6 Feb 2022 23:57:05 +0100 Subject: gnu: emacs-marginalia: Update to 0.12. * gnu/packages/emacs-xyz.scm (emacs-marginalia): Update to 0.12. --- gnu/packages/emacs-xyz.scm | 39 ++++++++++++++++++--------------------- 1 file changed, 18 insertions(+), 21 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 438cfd33e2..bf07726237 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -8577,30 +8577,27 @@ and present results either as single emails or full trees.") (license license:gpl3+))) (define-public emacs-marginalia - ;; Upstream did not tag latest release. The commit below matches version - ;; bump. - (let ((commit "9229d88ae4757f3439e81f51799758c009838cb4")) - (package - (name "emacs-marginalia") - (version "0.11") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/minad/marginalia") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0gaqybj52skqcmxcx6k3zmw6lznzlr1fjvlaraic9m6n85xkvzki")))) - (build-system emacs-build-system) - (home-page "https://github.com/minad/marginalia") - (synopsis "Marginalia in the minibuffer completions") - (description - "This package provides Marginalia mode which adds marginalia to the + (package + (name "emacs-marginalia") + (version "0.12") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/minad/marginalia") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1a4k00g2pp7mk0x5zhqbxvv2igfjdz6bfy2g3hps2ygf4h12wbhg")))) + (build-system emacs-build-system) + (home-page "https://github.com/minad/marginalia") + (synopsis "Marginalia in the minibuffer completions") + (description + "This package provides Marginalia mode which adds marginalia to the minibuffer completions. Marginalia are marks or annotations placed at the margin of the page of a book or in this case helpful colorful annotations placed at the margin of the minibuffer for your completion candidates.") - (license license:gpl3+)))) + (license license:gpl3+))) (define-public emacs-smartparens (package -- cgit v1.3 From a80eea859a47e43c55173c00d81d7fabff35771e Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sun, 6 Feb 2022 23:57:55 +0100 Subject: gnu: emacs-elpher: Update to 3.3.1. * gnu/packages/emacs-xyz.scm (emacs-elpher): Update to 3.3.1. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index bf07726237..8bf5235994 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -26371,7 +26371,7 @@ it forcibly (define-public emacs-elpher (package (name "emacs-elpher") - (version "3.2.2") + (version "3.3.1") (source (origin (method git-fetch) @@ -26380,7 +26380,7 @@ it forcibly (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0fzqm5gpadqzsl71r1bq72ki8dw8125v4nmhdd3b4rz9jy1rqm2g")))) + (base32 "121hkssy6c15gdr76k3fmdpk82354hk597gvkap6dc9y5j5968mk")))) (build-system emacs-build-system) (native-inputs (list texinfo)) -- cgit v1.3 From 645b06ed45a4c6efe623d840065b35c076c5b568 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sun, 6 Feb 2022 23:58:53 +0100 Subject: gnu: emacs-cape: Update to 0.6. * gnu/packages/emacs-xyz.scm (emacs-cape): Update to 0.6. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 8bf5235994..5e14321165 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -3007,7 +3007,7 @@ overlay below or above the point. Corfu can be considered the minimalistic (define-public emacs-cape (package (name "emacs-cape") - (version "0.5") + (version "0.6") (source (origin (method git-fetch) @@ -3016,7 +3016,7 @@ overlay below or above the point. Corfu can be considered the minimalistic (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "0780qymlrg3glyxypizqzwicp5ly5xavxgpmayhx8cxlgp2zlkjh")))) + (base32 "1bmxpfp0zs24lbp1mlcc66f4s5gxgrj78001h241mzndc3kaiqfk")))) (build-system emacs-build-system) (home-page "https://github.com/minad/cape") (synopsis "Completion at point extensions for Emacs") -- cgit v1.3 From 41e7b0377b29018bec422b58682055458e15f27c Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 00:01:18 +0100 Subject: gnu: emacs-elpher: Improve package style. * gnu/packages/emacs-xyz.scm (emacs-elpher)[source]: Remove trailing .GIT. [arguments]<#:emacs>: Build with EMACS-NO-X. <#:phases>: Use G-expressions. --- gnu/packages/emacs-xyz.scm | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 5e14321165..815b9eb559 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -26376,20 +26376,22 @@ it forcibly (origin (method git-fetch) (uri (git-reference - (url "git://thelambdalab.xyz/elpher.git") + (url "git://thelambdalab.xyz/elpher") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "121hkssy6c15gdr76k3fmdpk82354hk597gvkap6dc9y5j5968mk")))) (build-system emacs-build-system) + (arguments + (list + #:emacs emacs-no-x ;need libxml support + #:phases + #~(modify-phases %standard-phases + (add-before 'install 'build-doc + (lambda _ + (invoke "makeinfo" "elpher.texi")))))) (native-inputs (list texinfo)) - (arguments - `(#:phases - (modify-phases %standard-phases - (add-before 'install 'build-doc - (lambda _ - (invoke "makeinfo" "elpher.texi")))))) (home-page "gopher://thelambdalab.xyz/1/projects/elpher/") (synopsis "Gopher and gemini client for Emacs") (description "Elpher is a full-featured gopher and gemini client for -- cgit v1.3 From 61c2345aaa3750ad8dab6339e94312d9fcf145f4 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 00:03:48 +0100 Subject: gnu: emacs-geiser: Update to 0.22.2. * gnu/packages/emacs-xyz.scm (emacs-geiser): Update to 0.22.2. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 815b9eb559..9b531d4f4f 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -240,7 +240,7 @@ (define-public emacs-geiser (package (name "emacs-geiser") - (version "0.22.1") + (version "0.22.2") (source (origin (method git-fetch) @@ -249,7 +249,7 @@ (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "0q46lp73l0c975qzyn1hkvwcw5xf2sz5dpjgvb66msndyg71y495")))) + (base32 "11vc57nkgbsyl1wrjikxs0ixzkp7dksj51p4aa9girsm2hs3bs6v")))) (build-system emacs-build-system) (arguments '(#:phases -- cgit v1.3 From ea580fc25ea91389ddbc72a1af3d877cbe28114c Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 00:04:41 +0100 Subject: gnu: emacs-geiser-guile: Update to 0.21.2. * gnu/packages/emacs-xyz.scm (emacs-geiser-guile): Update to 0.21.2. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 9b531d4f4f..d9658273a0 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -289,7 +289,7 @@ e.g. emacs-geiser-guile for Guile.") (define-public emacs-geiser-guile (package (name "emacs-geiser-guile") - (version "0.21.1") + (version "0.21.2") (source (origin (method git-fetch) @@ -298,7 +298,7 @@ e.g. emacs-geiser-guile for Guile.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "0fk5rr7mjmb4waiagi80dhddas5mrsgqr0flag5v5b0piblixxq6")))) + (base32 "1ri1l203vp5nnl7chmmvvj3b03315fpzjjkisv55m6xs77ig2cl7")))) (build-system emacs-build-system) (arguments (list -- cgit v1.3 From ecf527c9213ea27b5ad09da9dd163ccc8dcb1d4f Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Sat, 5 Feb 2022 12:02:03 +0100 Subject: gnu: haunt: Update to 0.2.6. * gnu/packages/guile-xyz.scm (haunt): Update to 0.2.6. --- gnu/packages/guile-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 31405de9eb..c3b6be3754 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -2452,14 +2452,14 @@ inspired by the SCSH regular expression system.") (define-public haunt (package (name "haunt") - (version "0.2.5") + (version "0.2.6") (source (origin (method url-fetch) (uri (string-append "https://files.dthompson.us/haunt/haunt-" version ".tar.gz")) (sha256 (base32 - "1gy45l6m91b3wpdbpd9bpisp00zl8610zs0a2nwmbjlpd2cbf90k")))) + "1nwhwngx0gl2892vrvrzrxy5w6a5l08j1w0522kdh9a3v11qpwmw")))) (build-system gnu-build-system) (arguments `(#:modules ((ice-9 match) (ice-9 ftw) -- cgit v1.3 From 39e8025d3b40a0079f75e0ce9a91b6dad6766773 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Sun, 23 Jan 2022 01:06:17 +0100 Subject: home: Add redshift service. * gnu/home/services/desktop.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. * doc/guix.texi (Desktop Home Services): New node. --- doc/guix.texi | 80 +++++++++++++++++++ gnu/home/services/desktop.scm | 174 ++++++++++++++++++++++++++++++++++++++++++ gnu/local.mk | 1 + 3 files changed, 255 insertions(+) create mode 100644 gnu/home/services/desktop.scm diff --git a/doc/guix.texi b/doc/guix.texi index 0cf865a672..9d3548aac7 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -37598,6 +37598,7 @@ services)}. * Shells: Shells Home Services. POSIX shells, Bash, Zsh. * Mcron: Mcron Home Service. Scheduled User's Job Execution. * Shepherd: Shepherd Home Service. Managing User's Daemons. +* Desktop: Desktop Home Services. Services for graphical environments. @end menu @c In addition to that Home Services can provide @@ -37985,6 +37986,85 @@ mechanism instead (@pxref{Shepherd Services}). @end table @end deftp +@node Desktop Home Services +@subsection Desktop Home Services + +The @code{(gnu home services desktop)} module provides services that you +may find useful on ``desktop'' systems running a graphical user +environment such as Xorg. + +@defvr {Scheme Variable} home-redshift-service-type +This is the service type for @uref{https://github.com/jonls/redshift, +Redshift}, a program that adjusts the display color temperature +according to the time of day. Its associated value must be a +@code{home-redshift-configuration} record, as shown below. + +A typical configuration, where we manually specify the latitude and +longitude, might look like this: + +@lisp +(service home-redshift-service-type + (home-redshift-configuration + (location-provider 'manual) + (latitude 35.81) ;northern hemisphere + (longitude -0.80))) ;west of Greenwich +@end lisp +@end defvr + +@deftp {Data Type} home-redshift-configuration +Available @code{home-redshift-configuration} fields are: + +@table @asis +@item @code{redshift} (default: @code{redshift}) (type: file-like) +Redshift package to use. + +@item @code{location-provider} (default: @code{geoclue2}) (type: symbol) +Geolocation provider---@code{'manual} or @code{'geoclue2}. In the +former case, you must also specify the @code{latitude} and +@code{longitude} fields so Redshift can determine daytime at your place. +In the latter case, the Geoclue system service must be running; it will +be queried for location information. + +@item @code{adjustment-method} (default: @code{randr}) (type: symbol) +Color adjustment method. + +@item @code{daytime-temperature} (default: @code{6500}) (type: integer) +Daytime color temperature (kelvins). + +@item @code{nighttime-temperature} (default: @code{4500}) (type: integer) +Nighttime color temperature (kelvins). + +@item @code{daytime-brightness} (default: @code{disabled}) (type: maybe-inexact-number) +Daytime screen brightness, between 0.1 and 1.0. + +@item @code{nighttime-brightness} (default: @code{disabled}) (type: maybe-inexact-number) +Nighttime screen brightness, between 0.1 and 1.0. + +@item @code{latitude} (default: @code{disabled}) (type: maybe-inexact-number) +Latitude, when @code{location-provider} is @code{'manual}. + +@item @code{longitude} (default: @code{disabled}) (type: maybe-inexact-number) +Longitude, when @code{location-provider} is @code{'manual}. + +@item @code{dawn-time} (default: @code{disabled}) (type: maybe-string) +Custom time for the transition from night to day in the +morning---@code{"HH:MM"} format. When specified, solar elevation is not +used to determine the daytime/nighttime period. + +@item @code{dusk-time} (default: @code{disabled}) (type: maybe-string) +Likewise, custom time for the transition from day to night in the +evening. + +@item @code{extra-content} (default: @code{""}) (type: raw-configuration-string) +Extra content appended as-is to the Redshift configuration file. Run +@command{man redshift} for more information about the configuration file +format. + +@end table + +@end deftp + + @node Invoking guix home @section Invoking @code{guix home} diff --git a/gnu/home/services/desktop.scm b/gnu/home/services/desktop.scm new file mode 100644 index 0000000000..cbb9cf76da --- /dev/null +++ b/gnu/home/services/desktop.scm @@ -0,0 +1,174 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright © 2022 Ludovic Courtès +;;; +;;; 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 . + +(define-module (gnu home services desktop) + #:use-module (gnu home services) + #:use-module (gnu home services shepherd) + #:use-module (gnu services configuration) + #:autoload (gnu packages xdisorg) (redshift) + #:use-module (guix records) + #:use-module (guix gexp) + #:use-module (srfi srfi-1) + #:use-module (ice-9 match) + #:export (home-redshift-configuration + home-redshift-configuration? + + home-redshift-service-type)) + + +;;; +;;; Redshift. +;;; + +(define (serialize-integer field value) + (string-append (match field + ('daytime-temperature "temp-day") + ('nighttime-temperature "temp-night") + ('daytime-brightness "brightness-day") + ('nighttime-brightness "brightness-night") + ('latitude "lat") + ('longitude "lon") + (_ (symbol->string field))) + "=" (number->string value) "\n")) + +(define (serialize-symbol field value) + (string-append (symbol->string field) + "=" (symbol->string value) "\n")) + +(define (serialize-string field value) + (string-append (symbol->string field) + "=" value "\n")) + +(define serialize-inexact-number serialize-integer) + +(define (inexact-number? n) + (and (number? n) (inexact? n))) +(define-maybe inexact-number) +(define-maybe string) + +(define (serialize-raw-configuration-string field value) + value) +(define raw-configuration-string? string?) + +(define-configuration home-redshift-configuration + (redshift + (file-like redshift) + "Redshift package to use.") + + (location-provider + (symbol 'geoclue2) + "Geolocation provider---@code{'manual} or @code{'geoclue2}. + +In the former case, you must also specify the @code{latitude} and +@code{longitude} fields so Redshift can determine daytime at your place. In +the latter case, the Geoclue system service must be running; it will be +queried for location information.") + (adjustment-method + (symbol 'randr) + "Color adjustment method.") + + ;; Default values from redshift(1). + (daytime-temperature + (integer 6500) + "Daytime color temperature (kelvins).") + (nighttime-temperature + (integer 4500) + "Nighttime color temperature (kelvins).") + + (daytime-brightness + (maybe-inexact-number 'disabled) + "Daytime screen brightness, between 0.1 and 1.0.") + (nighttime-brightness + (maybe-inexact-number 'disabled) + "Nighttime screen brightness, between 0.1 and 1.0.") + + (latitude + (maybe-inexact-number 'disabled) + "Latitude, when @code{location-provider} is @code{'manual}.") + (longitude + (maybe-inexact-number 'disabled) + "Longitude, when @code{location-provider} is @code{'manual}.") + + (dawn-time + (maybe-string 'disabled) + "Custom time for the transition from night to day in the +morning---@code{\"HH:MM\"} format. When specified, solar elevation is not +used to determine the daytime/nighttime period.") + (dusk-time + (maybe-string 'disabled) + "Likewise, custom time for the transition from day to night in the +evening.") + + (extra-content + (raw-configuration-string "") + "Extra content appended as-is to the Redshift configuration file. Run +@command{man redshift} for more information about the configuration file +format.")) + +(define (serialize-redshift-configuration config) + (define location-fields + '(latitude longitude)) + + (define (location-field? field) + (memq (configuration-field-name field) location-fields)) + + (define (secondary-field? field) + (or (location-field? field) + (memq (configuration-field-name field) + '(redshift extra-content)))) + + #~(string-append + "[redshift]\n" + #$(serialize-configuration config + (remove secondary-field? + home-redshift-configuration-fields)) + + #$(home-redshift-configuration-extra-content config) + + "\n[manual]\n" + #$(serialize-configuration config + (filter location-field? + home-redshift-configuration-fields)))) + +(define (redshift-shepherd-service config) + (define config-file + (computed-file "redshift.conf" + #~(call-with-output-file #$output + (lambda (port) + (display #$(serialize-redshift-configuration config) + port))))) + + (list (shepherd-service + (documentation "Redshift program.") + (provision '(redshift)) + ;; FIXME: This fails to start if Home is first activated from a + ;; non-X11 session. + (start #~(make-forkexec-constructor + (list #$(file-append redshift "/bin/redshift") + "-c" #$config-file))) + (stop #~(make-kill-destructor))))) + +(define home-redshift-service-type + (service-type + (name 'home-redshift) + (extensions (list (service-extension home-shepherd-service-type + redshift-shepherd-service))) + (default-value (home-redshift-configuration)) + (description + "Run Redshift, a program that adjusts the color temperature of display +according to time of day."))) diff --git a/gnu/local.mk b/gnu/local.mk index 38eed6bbae..533cb42080 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -79,6 +79,7 @@ GNU_SYSTEM_MODULES = \ %D%/ci.scm \ %D%/home.scm \ %D%/home/services.scm \ + %D%/home/services/desktop.scm \ %D%/home/services/symlink-manager.scm \ %D%/home/services/fontutils.scm \ %D%/home/services/shells.scm \ -- cgit v1.3 From 55af82393e30f6ae1b615ae18ec623baf44998fa Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 00:06:58 +0100 Subject: gnu: emacs-soap-client: Update to 3.2.1. * gnu/packages/emacs-xyz.scm (emacs-soap-client): Update to 3.2.1. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index d9658273a0..db7de9d874 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -26131,14 +26131,14 @@ advice system without dropping support for Emacs<24.4.") (define-public emacs-soap-client (package (name "emacs-soap-client") - (version "3.2.0") + (version "3.2.1") (source (origin (method url-fetch) (uri (string-append "https://elpa.gnu.org/packages/" "soap-client-" version ".tar")) (sha256 - (base32 "1s0bwnip22nj6kgjadd4zlj9j729hiyyjb66sr51i2mddnf9i95s")))) + (base32 "0ajv6l1p8dinnlybwzvv4c2i6291is6isjxb2h4apg27g66qbcki")))) (build-system emacs-build-system) (home-page "httpa://elpa.gnu.org/packages/soap-client.html") (synopsis "Access SOAP web services") -- cgit v1.3 From 0d4faa8c45c470a9eccd3152cc04113e1a6e1e52 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 00:07:04 +0100 Subject: gnu: emacs-tramp: Update to 2.5.2.1. * gnu/packages/emacs-xyz.scm (emacs-tramp): Update to 2.5.2.1. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index db7de9d874..850cb4c517 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -25770,14 +25770,14 @@ well as an option for visually flashing evaluated s-expressions.") (define-public emacs-tramp (package (name "emacs-tramp") - (version "2.5.2") + (version "2.5.2.1") (source (origin (method url-fetch) (uri (string-append "https://elpa.gnu.org/packages/" "tramp-" version ".tar")) (sha256 - (base32 "1j71x3q6x9xyf21capjxcp85b7z2x9khrqsd2sy2s3qwxz3jbg5n")))) + (base32 "1101nb0raiivrv1z4w442688cxj5mpf4h4zxzy6mhirgsbayk91p")))) (build-system emacs-build-system) (arguments `(#:emacs ,emacs ;need D-Bus -- cgit v1.3 From 95664bc64831b9b7b589580b2e9769fa8bc934b9 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 00:08:32 +0100 Subject: gnu: emacs-tramp: Improve package style. * gnu/packages/emacs-xyz.scm (emacs-tramp)[arguments]<#:phases>: Use G-expressions. Use SEARCH-INPUT-FILE. --- gnu/packages/emacs-xyz.scm | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 850cb4c517..11421e0f33 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -25780,19 +25780,18 @@ well as an option for visually flashing evaluated s-expressions.") (base32 "1101nb0raiivrv1z4w442688cxj5mpf4h4zxzy6mhirgsbayk91p")))) (build-system emacs-build-system) (arguments - `(#:emacs ,emacs ;need D-Bus - #:phases - (modify-phases %standard-phases - ;; All but one "/bin/" directory refer to remote - ;; environments, which may not be Guix. Do not patch them - ;; blindly. However, local encoding shell has to be patched. - (replace 'patch-el-files - (lambda* (#:key inputs #:allow-other-keys) - (let ((sh (assoc-ref inputs "bash")) - (file "tramp.el")) - (emacs-substitute-variables file - ("tramp-encoding-shell" (string-append sh "/bin/sh")))) - #t))))) + (list + #:emacs emacs ;need D-Bus + #:phases + #~(modify-phases %standard-phases + ;; All but one "/bin/" directory refer to remote + ;; environments, which may not be Guix. Do not patch them + ;; blindly. However, local encoding shell has to be patched. + (replace 'patch-el-files + (lambda* (#:key inputs #:allow-other-keys) + (emacs-substitute-variables "tramp.el" + ("tramp-encoding-shell" + (search-input-file inputs "/bin/sh")))))))) (inputs (list bash)) (home-page "https://savannah.gnu.org/projects/tramp") -- cgit v1.3 From 418208090b21319797fd461e091570fd9d54d894 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Sun, 6 Feb 2022 23:49:22 -0500 Subject: gnu: Remove python2-llfuse. * gnu/packages/python-xyz.scm (python2-llfuse): Remove variable. (python-llfuse)[properties]: Remove field. --- gnu/packages/python-xyz.scm | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 7c1b5e8ed3..453cdbb16c 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -11123,14 +11123,7 @@ third-party code.") (description "Python-LLFUSE is a set of Python bindings for the low level FUSE API.") (home-page "https://bitbucket.org/nikratio/python-llfuse/") - (license license:lgpl2.0+) - (properties `((python2-variant . ,(delay python2-llfuse)))))) - -(define-public python2-llfuse - (let ((base (package-with-python2 - (strip-python2-variant python-llfuse)))) - (package/inherit base - (propagated-inputs `(("python2-contextlib2" ,python2-contextlib2)))))) + (license license:lgpl2.0+))) (define-public python-msgpack (package -- cgit v1.3 From c5e436b0b1a4d2d8637f8f08e662619f3f7fe881 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Sun, 6 Feb 2022 23:48:35 -0500 Subject: gnu: python-llfuse: Update to 1.4.1. * gnu/packages/python-xyz.scm (python-llfuse): Update to 1.4.1. [native-inputs]: Add python-pytest. --- gnu/packages/python-xyz.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 453cdbb16c..1b1dd4db32 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -11107,18 +11107,18 @@ third-party code.") (define-public python-llfuse (package (name "python-llfuse") - (version "1.3.8") + (version "1.4.1") (source (origin (method url-fetch) (uri (pypi-uri "llfuse" version)) (sha256 (base32 - "1g2cdhdqrb6m7655qp61pn61pwj1ql61cdzhr2jvl3w4i8877ddr")))) + "1jaf790rsxvz3hs9fbr3hrnmg0xzl6a2bqfa10bbbsjsdbcpk762")))) (build-system python-build-system) (inputs (list fuse attr)) (native-inputs - (list pkg-config)) + (list pkg-config python-pytest)) (synopsis "Python bindings for FUSE") (description "Python-LLFUSE is a set of Python bindings for the low level FUSE API.") -- cgit v1.3 From c6b407c923253ac3e7ce8439b31f52ef94de7846 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Sun, 6 Feb 2022 23:48:17 -0500 Subject: gnu: Vorta: Update to 0.8.3. * gnu/packages/backup.scm (vorta): Update to 0.8.3. --- gnu/packages/backup.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm index ca45332873..afa2573363 100644 --- a/gnu/packages/backup.scm +++ b/gnu/packages/backup.scm @@ -1276,13 +1276,13 @@ borgmatic is powered by borg.") (define-public vorta (package (name "vorta") - (version "0.8.2") + (version "0.8.3") (source (origin (method url-fetch) (uri (pypi-uri "vorta" version)) (sha256 (base32 - "1cl7kyh14h38xavbq23b8ifvk8abkiqdkpgaxfxvd223fm02zz26")))) + "0674crxsmf1gwiacpi9ixypgz685fyzr5y3f9sd768b0bmh7ilsn")))) (build-system python-build-system) (arguments (list -- cgit v1.3 From b43c3a745c4b192437ba833a2ab30647853e0d26 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 10:18:53 +0100 Subject: gnu: emacs-dtache: Update to 0.5. * gnu/packages/emacs-xyz.scm (emacs-dtache): Update to 0.5. --- gnu/packages/emacs-xyz.scm | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 11421e0f33..e4e9cbafed 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -23780,7 +23780,7 @@ according to their use.") (define-public emacs-dtache (package (name "emacs-dtache") - (version "0.4") + (version "0.5") (source (origin (method git-fetch) (uri (git-reference @@ -23789,7 +23789,7 @@ according to their use.") (file-name (git-file-name name version)) (sha256 (base32 - "1hndv0qzibkc4177lkam30j8cgvzxd8r60v3dnqn2bmrgxw04j6b")))) + "05gm5l533y8xr00w3c3i4fbhzhib6i7q2bbnpkm08w1n8a08iaj5")))) (arguments (list #:tests? #t @@ -23803,14 +23803,12 @@ according to their use.") (lambda* (#:key inputs #:allow-other-keys) (make-file-writable "dtache.el") (emacs-substitute-variables "dtache.el" - ("dtache-env" (string-append #$output - "/bin/dtache-env")) - ("dtache-dtach-program" (search-input-file - inputs - "/bin/dtach")) - ("dtache-shell-program" (search-input-file - inputs - "/bin/bash")))))))) + ("dtache-env" + (string-append #$output "/bin/dtache-env")) + ("dtache-dtach-program" + (search-input-file inputs "/bin/dtach")) + ("dtache-shell-program" + (search-input-file inputs "/bin/bash")))))))) (build-system emacs-build-system) (native-inputs (list emacs-ert-runner)) (inputs (list dtach)) -- cgit v1.3 From 10abb0519033ca2218ade2f73ced312f1665306d Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Thu, 7 Oct 2021 10:48:06 +0300 Subject: gnu: libx264: Fix building on riscv64-linux. * gnu/packages/video.scm (libx264)[inputs]: Add config. [arguments]: Adjust configure-flags to always build PIC code. Add custom phase to replace config.guess, config.sub scripts. --- gnu/packages/video.scm | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index de9fb42904..b3e6e5ef7b 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -904,6 +904,8 @@ shared library and encoder and decoder command-line executables.") (build-system gnu-build-system) (native-inputs (list pkg-config nasm)) + (inputs + (list config)) ;; TODO: Add gpac input (arguments `(#:tests? #f ;no check target @@ -914,6 +916,7 @@ shared library and encoder and decoder command-line executables.") ;; program depends on ffmpeg and ffmpeg depends on ;; libx264). "--disable-cli" + "--enable-pic" ;; On MIPS, we must pass "--disable-asm" or else ;; configure fails after printing: "You specified a @@ -924,7 +927,17 @@ shared library and encoder and decoder command-line executables.") (or (%current-target-system) (%current-system))) '("--disable-asm") - '())))) + '())) + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'update-config-scripts + (lambda* (#:key native-inputs inputs #:allow-other-keys) + (for-each (lambda (file) + (install-file + (search-input-file + (or native-inputs inputs) + (string-append "/bin/" file)) ".")) + '("config.guess" "config.sub"))))))) (home-page "https://www.videolan.org/developers/x264.html") (synopsis "H.264 video coding library") (description "libx264 is an advanced encoding library for creating -- cgit v1.3 From 3344567bb14b8445495e402f0043dcf23f588242 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Thu, 2 Sep 2021 15:20:37 +0300 Subject: gnu: isc-dhcp: Fix building on riscv64-linux. * gnu/packages/admin.scm (isc-dhcp)[arguments]: Add phase to update configure scripts. [inputs]: Add config. --- gnu/packages/admin.scm | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 17dc0f1315..f2ad66ea5b 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -1220,6 +1220,21 @@ connection alive.") ;; build system uses the built 'gen' executable. (setenv "BUILD_CC" "gcc")))) '()) + (add-before 'build 'update-config-scripts + (lambda* (#:key native-inputs inputs #:allow-other-keys) + (for-each (lambda (file) + (install-file + (search-input-file + (or native-inputs inputs) + (string-append "/bin/" file)) ".")) + '("config.guess" "config.sub")) + (for-each (lambda (file) + (install-file + (search-input-file + (or native-inputs inputs) + (string-append "/bin/" file)) + (string-append "bind/bind-" ,bind-version))) + '("config.guess" "config.sub")))) (add-after 'configure 'post-configure (lambda* (#:key outputs #:allow-other-keys) ;; Point to the right client script, which will be @@ -1302,6 +1317,7 @@ connection alive.") (base32 "108nh7hha4r0lb5hf1fn7lqaascvhsrghpz6afm5lf9vf2vgqly9")))) + ("config" ,config) ("coreutils*" ,coreutils) ("sed*" ,sed))) -- cgit v1.3 From 11590bff50fe0244e66c11d995aa5301c8965959 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 31 Aug 2021 13:46:24 +0300 Subject: gnu: make-opensbi-package: Fix native building. * gnu/packages/firmware.scm (make-opensbi-package)[arguments]: When not cross-compiling set CC to gcc. --- gnu/packages/firmware.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/firmware.scm b/gnu/packages/firmware.scm index 3a97765931..b63ad63749 100644 --- a/gnu/packages/firmware.scm +++ b/gnu/packages/firmware.scm @@ -248,7 +248,7 @@ broadband modem as found, for example, on PinePhone.") (%current-system))) (string-prefix? "riscv64" arch)) `("CROSS_COMPILE=riscv64-linux-gnu-") - '()) + `("CC=gcc")) "FW_PAYLOAD=n" "V=1") #:phases -- cgit v1.3 From d738570a8597f218c2f0a7749246d280a85936ba Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 10:20:36 +0100 Subject: gnu: emacs-elfeed-score: Update to 1.2.2. * gnu/packages/emacs-xyz.scm (emacs-elfeed-score): Update to 1.2.2. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index e4e9cbafed..6ddf6ab716 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -10429,7 +10429,7 @@ with Elfeed.") (define-public emacs-elfeed-score (package (name "emacs-elfeed-score") - (version "1.2.1") + (version "1.2.2") (source (origin (method git-fetch) @@ -10438,7 +10438,7 @@ with Elfeed.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "10wsjq2zd6kz9182gnkjzlzywx16j29dgm1gzwynr79xmvgs4r2b")))) + (base32 "0rkm3vyyklpcyaz7zs2a5azyf20bnbj9nd8ik3jgcg2lsd6jgj5m")))) (build-system emacs-build-system) (propagated-inputs (list emacs-elfeed)) -- cgit v1.3 From 45335578d6e6659792c76d8cd7ce91629bf2e5e5 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 10:24:05 +0100 Subject: gnu: emacs-elisp-refs: Update to 1.4. * gnu/packages/emacs-xyz.scm (emacs-elisp-refs): Update to 1.4. [arguments]<#:phases>: Remove DISABLE-REFS-NEXT-MATCH-TEST phase. <#:test-command>: Use G-expressions. --- gnu/packages/emacs-xyz.scm | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 6ddf6ab716..571eb98e21 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -18607,7 +18607,7 @@ continue.") (define-public emacs-elisp-refs (package (name "emacs-elisp-refs") - (version "1.3") + (version "1.4") (source (origin (method git-fetch) @@ -18616,7 +18616,7 @@ continue.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "0w7k91xf69zc0zkjrw8h8sjdjf9xq9qs5zhvajhd718lzf93564b")))) + (base32 "03p95kwvwb3apb3lhhdlaxs952x7sdlxa2qc1c77cjwrm5xzdg9z")))) (build-system emacs-build-system) (propagated-inputs (list emacs-dash @@ -18628,18 +18628,9 @@ continue.") (native-inputs (list emacs-ert-runner emacs-undercover)) (arguments - `(#:tests? #t - #:test-command '("ert-runner") - #:phases - (modify-phases %standard-phases - (add-before 'check 'disable-refs-next-match-test - ;; Hack to disable the failing test for emacs27 - ;; https://github.com/Wilfred/elisp-refs/issues/29 - (lambda _ - (substitute* "test/unit-test.el" - (("ert-deftest elisp-refs-next-match") - "defun elisp-refs-next-match")) - #t))))) + (list + #:tests? #t + #:test-command #~(list "ert-runner"))) (home-page "https://github.com/Wilfred/elisp-refs") (synopsis "Find callers of elisp functions or macros") (description "Find references to functions, macros or variables. Unlike a -- cgit v1.3 From fa315669d570594e785e15af1ec93dd79e95e24d Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 10:25:34 +0100 Subject: gnu: emacs-elisp-refs: Improve description. * gnu/packages/emacs-xyz.scm (emacs-elisp-refs)[description]: Make it start with a complete sentence. --- gnu/packages/emacs-xyz.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 571eb98e21..a86311136d 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -18633,9 +18633,9 @@ continue.") #:test-command #~(list "ert-runner"))) (home-page "https://github.com/Wilfred/elisp-refs") (synopsis "Find callers of elisp functions or macros") - (description "Find references to functions, macros or variables. Unlike a -dumb text search, @code{elisp-refs} actually parses the code, so it's never -confused by comments or @code{foo-bar} matching @code{foo}.") + (description "@code{elisp-refs} finds references to functions, macros or +variables. Unlike a dumb text search, it actually parses the code, so it's +never confused by comments or @code{foo-bar} matching @code{foo}.") (license license:gpl3+))) (define-public emacs-crdt -- cgit v1.3 From b0e6e546cb5d9b5c23b1493b88f4f92c29823455 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 10:27:25 +0100 Subject: gnu: emacs-git-link: Update to 0.8.5. * gnu/packages/emacs-xyz.scm (emacs-git-link): Update to 0.8.5. [arguments]<#:test-command>: Use G-expressions. --- gnu/packages/emacs-xyz.scm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index a86311136d..86d79a6142 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -4263,7 +4263,7 @@ window.") (define-public emacs-git-link (package (name "emacs-git-link") - (version "0.8.3") + (version "0.8.5") (source (origin (method git-fetch) @@ -4272,11 +4272,12 @@ window.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0l7xmvmj5s93hc39wjjv75f22zbhahnmcxpmvx3dfvsbig9pmk75")))) + (base32 "0payj5hwqkzdrxx5vfzaaalmzfkdmdqhqki193a6cbf0k3c03zh3")))) (build-system emacs-build-system) (arguments - `(#:tests? #t - #:test-command '("make" "test"))) + (list + #:tests? #t + #:test-command #~(list "make" "test"))) (home-page "https://github.com/sshaw/git-link") (synopsis "Create links for files and commits in GitHub/GitLab/etc. repos") (description -- cgit v1.3 From dde1131ef7d357d6c7017f7011d0ffdcef1aa49a Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 10:28:24 +0100 Subject: gnu: emacs-helm: Update to 3.8.4. * gnu/packages/emacs-xyz.scm (emacs-helm): Update to 3.8.4. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 86d79a6142..270e1a6e21 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -11186,7 +11186,7 @@ ack, ag, helm and pt.") (define-public emacs-helm (package (name "emacs-helm") - (version "3.8.2") + (version "3.8.4") (source (origin (method git-fetch) @@ -11195,7 +11195,7 @@ ack, ag, helm and pt.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1xkxlbjpqhfhakmfi664cq7i5968941vpngq94napmhbgqydp4qn")))) + (base32 "0kfw83jz44b30v5rzvrx4ish62rkvacxd4s64xmf18h2342nrzi0")))) (build-system emacs-build-system) (propagated-inputs (list emacs-async emacs-popup)) -- cgit v1.3 From 07a3063b420fdd8a35e47eb821ac9cc22ddc6a81 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 10:29:12 +0100 Subject: gnu: emacs-org-mime: Update to 0.2.6. * gnu/packages/emacs-xyz.scm (emacs-org-mime): Update to 0.2.6. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 270e1a6e21..1210ccc8a4 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -7711,7 +7711,7 @@ cards created in Org mode.") (define-public emacs-org-mime (package (name "emacs-org-mime") - (version "0.2.4") + (version "0.2.6") (source (origin (method git-fetch) @@ -7720,7 +7720,7 @@ cards created in Org mode.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "0in83jlrwjn81qgw1i7n228sbf314bj8hkrl14ahfn0zmfll60sw")))) + (base32 "01f04xpqkgja34a0z4smh2kxzn3lvx2391fnbfxmq92pxqp3gk0j")))) (build-system emacs-build-system) (home-page "https://github.com/org-mime/org-mime") (synopsis "Send HTML email using Org mode HTML export") -- cgit v1.3 From 28e63ccfb6a15863dfcc802fa1f6de1bec95692c Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 10:40:58 +0100 Subject: gnu: emacs-racket-mode: Update to 0.0.2-7.cef5a55. * gnu/packages/emacs-xyz.scm (emacs-racket-mode): Update to 0.0.2-7.cef5a55. [arguments]<#:include>: Use G-expressions. [propagated-inputs]: Add EMACS-PAREDIT. --- gnu/packages/emacs-xyz.scm | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 1210ccc8a4..6f2cee8d8a 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -20100,8 +20100,11 @@ perform regression test for packages that provide font-lock rules.") (license license:gpl3+)))) (define-public emacs-racket-mode - (let ((commit "5eb31a284c8db5102bc71b1e2c6ce3a095ae085b") - (revision "6")) + ;; XXX: Upstream does not tag releases, nor does it bump versions. The + ;; "0.0.2" version below does not exist. It might change, tho. See + ;; . + (let ((commit "cef5a55d2b766973db92f9d9ab2210c03fa8ba02") + (revision "7")) (package (name "emacs-racket-mode") (version (git-version "0.0.2" revision commit)) @@ -20114,12 +20117,13 @@ perform regression test for packages that provide font-lock rules.") (file-name (git-file-name name version)) (sha256 (base32 - "081h6rd0gv88m0wvnmghi242kl39x1sz34qr4cq9vz04iwvnmgrm")))) + "0zzk0s4akx6ffsbhylgfflcypkkg36a3accxhmmdd11yn5rckv7f")))) (build-system emacs-build-system) (arguments - `(#:include '("\\.el$" "\\.rkt$"))) + (list + #:include #~(list "\\.el$" "\\.rkt$"))) (propagated-inputs - (list emacs-faceup emacs-pos-tip emacs-s)) + (list emacs-faceup emacs-paredit emacs-pos-tip emacs-s)) (home-page "https://www.racket-mode.com/") (synopsis "Major mode for the Racket language") (description "@code{racket-mode} provides: -- cgit v1.3 From 878777b442803abfc6933eeac7335ab174acc995 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 10:41:53 +0100 Subject: gnu: emacs-racket-mode: Fix license. * gnu/packages/emacs-xyz.scm (emacs-racket-mode)[license]: Use GPL2+. --- gnu/packages/emacs-xyz.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 6f2cee8d8a..e86fc373df 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -20133,7 +20133,7 @@ perform regression test for packages that provide font-lock rules.") @item Follow DrRacket concepts where applicable. @item Thorough font-lock and indent. @end itemize\n") - (license license:gpl3+)))) + (license license:gpl2+)))) (define-public emacs-grep-context (let ((commit "5a4e3efdf775755c1bbefcfe4b461c1166d81d7d") -- cgit v1.3 From 1f34368c165188128dbeb3846eb66af6cf581652 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 10:42:20 +0100 Subject: gnu: emacs-racket-mode: Improve description. * gnu/packages/emacs-xyz.scm (emacs-racket-mode)[description]: Improve text. --- gnu/packages/emacs-xyz.scm | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index e86fc373df..96c18cba38 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -20126,13 +20126,8 @@ perform regression test for packages that provide font-lock rules.") (list emacs-faceup emacs-paredit emacs-pos-tip emacs-s)) (home-page "https://www.racket-mode.com/") (synopsis "Major mode for the Racket language") - (description "@code{racket-mode} provides: - -@itemize -@item Focus on Racket (not various Schemes). -@item Follow DrRacket concepts where applicable. -@item Thorough font-lock and indent. -@end itemize\n") + (description "Racket mode provides thorough font-lock and indentation. +It follows DrRacket concepts where applicable.") (license license:gpl2+)))) (define-public emacs-grep-context -- cgit v1.3 From abb197dfe98095a9ea7527a3ca3f81bb0edd5813 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 10:43:44 +0100 Subject: gnu: emacs-rustic: Update to 2.6. * gnu/packages/emacs-xyz.scm (emacs-rustic): Update to 2.6. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 96c18cba38..bec613e381 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -22120,7 +22120,7 @@ source code.") (define-public emacs-rustic (package (name "emacs-rustic") - (version "2.5") + (version "2.6") (source (origin (method git-fetch) @@ -22129,7 +22129,7 @@ source code.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1jx8gzcm9ka2chpq51jx4mfa12wqrj2dsrpxwylfcb9qkqjncbn5")))) + (base32 "0lnymi6nxn5dafm8q0av07dcjwrqxd3gm4hj1pi26kw62aw0ws24")))) (build-system emacs-build-system) (propagated-inputs (list emacs-dash -- cgit v1.3 From fb3508bb36baac17c17fee948becd824e784e8ba Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 10:56:53 +0100 Subject: gnu: notmuch: Update to 0.35. * gnu/packages/mail.scm (notmuch): Update to 0.35. [arguments]<#:phases>: Remove DISABLE-FAILING-TESTS phase. --- gnu/packages/mail.scm | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 26b919d0e0..9c8fa0ee36 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -1335,14 +1335,14 @@ invoking @command{notifymuch} from the post-new hook.") (define-public notmuch (package (name "notmuch") - (version "0.34.3") + (version "0.35") (source (origin (method url-fetch) (uri (string-append "https://notmuchmail.org/releases/notmuch-" version ".tar.xz")) (sha256 - (base32 "1278r8x8l2hsxg8plbfk7w2md0fagdm243lm7df5m0gx7d411s9z")))) + (base32 "0fdc81m24xrbhfrhw00g12ak4b8hap4961sq7ap6q2pjqhac8cd8")))) (build-system gnu-build-system) (arguments `(#:make-flags @@ -1357,12 +1357,6 @@ invoking @command{notifymuch} from the post-new hook.") (invoke "./configure" (string-append "--prefix=" out) "--without-emacs")))) - (add-before 'check 'disable-failing-tests - ;; FIXME: Investigate why these tests are failing, - ;; and try removing this for notmuch versions > 0.31. - (lambda _ - (substitute* "test/T356-protected-headers.sh" - (("\\$NOTMUCH_GMIME_X509_CERT_VALIDITY") "0")))) (add-before 'check 'prepare-test-environment (lambda _ (setenv "TEST_CC" ,(cc-for-target)) @@ -1377,7 +1371,7 @@ invoking @command{notifymuch} from the post-new hook.") python-sphinx texinfo ;; The following are required for tests only. - emacs-no-x ; -minimal lacks libxml, needed for some tests + emacs-no-x ; -minimal lacks libxml, needed for some tests which dtach gnupg -- cgit v1.3 From d7368fe7f2f9616f123ce059ddc576fe7124ea97 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 10:59:29 +0100 Subject: gnu: notmuch: Use G-expressions. * gnu/packages/mail.scm (notmuch)[arguments]: Use G-expressions. <#:phases>: Use SEARCH-INPUT-FILES instead of WHICH. --- gnu/packages/mail.scm | 38 ++++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 18 deletions(-) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 9c8fa0ee36..0c2bd8f715 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -1345,24 +1345,26 @@ invoking @command{notifymuch} from the post-new hook.") (base32 "0fdc81m24xrbhfrhw00g12ak4b8hap4961sq7ap6q2pjqhac8cd8")))) (build-system gnu-build-system) (arguments - `(#:make-flags - (list "V=1" ; verbose test output - "NOTMUCH_TEST_TIMEOUT=1h") ; don't fail on slow machines - #:phases (modify-phases %standard-phases - (replace 'configure - (lambda* (#:key outputs #:allow-other-keys) - (setenv "CC" ,(cc-for-target)) - (setenv "CONFIG_SHELL" (which "sh")) - (let* ((out (assoc-ref outputs "out"))) - (invoke "./configure" - (string-append "--prefix=" out) - "--without-emacs")))) - (add-before 'check 'prepare-test-environment - (lambda _ - (setenv "TEST_CC" ,(cc-for-target)) - ;; Patch various inline shell invocations. - (substitute* (find-files "test" "\\.sh$") - (("/bin/sh") (which "sh")))))))) + (list + #:make-flags + #~(list "V=1" ; verbose test output + "NOTMUCH_TEST_TIMEOUT=1h") ; don't fail on slow machines + #:phases + #~(modify-phases %standard-phases + (replace 'configure + (lambda* (#:key inputs #:allow-other-keys) + (setenv "CC" #$(cc-for-target)) + (setenv "CONFIG_SHELL" (search-input-file inputs "/bin/sh")) + (invoke "./configure" + (string-append "--prefix=" #$output) + "--without-emacs"))) + (add-before 'check 'prepare-test-environment + (lambda* (#:key inputs #:allow-other-keys) + (setenv "TEST_CC" #$(cc-for-target)) + ;; Patch various inline shell invocations. + (let ((sh (search-input-file inputs "/bin/sh"))) + (substitute* (find-files "test" "\\.sh$") + (("/bin/sh") sh)))))))) (native-inputs (list bash-completion pkg-config -- cgit v1.3 From 699e79e0fbe4b4dd8c041ea3c08c76abf7bf9156 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 11:04:06 +0100 Subject: gnu: emacs-notmuch: Use G-expressions. * gnu/packages/mail.scm (emacs-notmuch)[arguments]: Use G-expressions. <#:phases>: Use SEARCH-INPUT-FILE. --- gnu/packages/mail.scm | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 0c2bd8f715..70d6d03a75 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -1397,18 +1397,19 @@ ing, and tagging large collections of email messages.") (inputs (list notmuch)) (arguments - `(#:exclude (cons* "make-deps.el" "rstdoc.el" %default-exclude) - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'chdir - (lambda _ - (chdir "emacs"))) - (add-after 'chdir 'patch-paths - (lambda* (#:key inputs #:allow-other-keys) - (let ((notmuch (assoc-ref inputs "notmuch"))) - (substitute* "notmuch-lib.el" - (("\"notmuch\"") - (string-append "\"" notmuch "/bin/notmuch\""))))))))) + (list + #:exclude #~(cons* "make-deps.el" "rstdoc.el" %default-exclude) + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'chdir + (lambda _ + (chdir "emacs"))) + (add-after 'chdir 'patch-paths + (lambda* (#:key inputs #:allow-other-keys) + (let ((notmuch (search-input-file inputs "/bin/notmuch"))) + (substitute* "notmuch-lib.el" + (("\"notmuch\"") + (string-append "\"" notmuch "\""))))))))) (synopsis "Run Notmuch within Emacs") (description "This package provides an Emacs-based interface to the Notmuch mail -- cgit v1.3 From 80de5c213e5aee20b637cb4638131dfa24022d1b Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 11:07:20 +0100 Subject: gnu: flare-engine: Update to 1.13. * gnu/packages/games.scm (flare-engine): Update to 1.13. --- gnu/packages/games.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 6771bf93ff..1d7286f929 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -8910,7 +8910,7 @@ fight each other on an arena-like map.") (define-public flare-engine (package (name "flare-engine") - (version "1.12") + (version "1.13") (source (origin (method git-fetch) (uri (git-reference @@ -8919,7 +8919,7 @@ fight each other on an arena-like map.") (file-name (git-file-name name version)) (sha256 (base32 - "0h4xxj6r194pw68m3ngrnzkh6xgiblyrsc54z8abwba8m0mqbvmk")))) + "1daqx12w1gk9cf393zw89fy42lx4arjycm417380gqi775vbmamc")))) (build-system cmake-build-system) (arguments `(#:tests? #f ;no test -- cgit v1.3 From 4d6b3322fbf72258b8dab3dded48f9ef78b83e74 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 11:08:11 +0100 Subject: gnu: flare-engine: Improve package style. * gnu/packages/games.scm (flare-engine)[arguments]: Use G-expressions. [inputs]: Remove labels. --- gnu/packages/games.scm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 1d7286f929..df846af067 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -8922,12 +8922,13 @@ fight each other on an arena-like map.") "1daqx12w1gk9cf393zw89fy42lx4arjycm417380gqi775vbmamc")))) (build-system cmake-build-system) (arguments - `(#:tests? #f ;no test - #:configure-flags '("-DBINDIR=bin" "-DDATADIR=share/flare"))) + (list + #:tests? #f ;no test + #:configure-flags #~(list "-DBINDIR=bin" "-DDATADIR=share/flare"))) (inputs - `(("hicolor-icon-theme" ,hicolor-icon-theme) - ("python" ,python-wrapper) - ("sdl" ,(sdl-union (list sdl2 sdl2-image sdl2-mixer sdl2-ttf))))) + (list hicolor-icon-theme + python-wrapper + (sdl-union (list sdl2 sdl2-image sdl2-mixer sdl2-ttf)))) (home-page "http://www.flarerpg.org/") (synopsis "Action Roleplaying Engine") (description "Flare (Free Libre Action Roleplaying Engine) is a simple -- cgit v1.3 From 644be96305ba80e25c4a80cdbfe311cfe8df5f07 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 11:14:11 +0100 Subject: gnu: flare-game: Update to 1.13. * gnu/packages/games.scm (flare-game): Update to 1.13. --- gnu/packages/games.scm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index df846af067..528c8c9a6d 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -8939,7 +8939,7 @@ action RPGs.") (define-public flare-game (package (name "flare-game") - (version "1.12") + (version "1.13") (source (origin (method git-fetch) (uri (git-reference @@ -8948,7 +8948,7 @@ action RPGs.") (file-name (git-file-name name version)) (sha256 (base32 - "0h9i128kq6disppbrplkf13zdmsg4cq23nim53mgwpawc4mqz7ga")))) + "0l0d4j2l1szdwrk8casaiskdk16wkbmms7cid4y751d42czg4ffw")))) (build-system cmake-build-system) (arguments `(#:tests? #f ;no test @@ -8966,7 +8966,10 @@ action RPGs.") (with-directory-excursion mods (symlink (string-append (assoc-ref inputs "flare-engine") "/share/flare/mods/default") - "default"))) + "default") + (symlink (string-append (assoc-ref inputs "flare-engine") + "/share/flare/mods/mods.txt") + "mods.txt"))) #t)) (add-after 'install 'install-executable ;; The package only provides assets for the game, the -- cgit v1.3 From 7047ca22e6f6f8f5981ce53d537e7ce557bc9559 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 12:02:11 +0100 Subject: gnu: flare-game: Improve package style. * gnu/packages/games.scm (flare-game)[arguments]: Use G-expressions. Use SEARCH-INPUT-DIRECTORY and SEARCH-INPUT-FILE. --- gnu/packages/games.scm | 77 ++++++++++++++++++++++++-------------------------- 1 file changed, 37 insertions(+), 40 deletions(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 528c8c9a6d..ac79b6718a 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -8951,48 +8951,45 @@ action RPGs.") "0l0d4j2l1szdwrk8casaiskdk16wkbmms7cid4y751d42czg4ffw")))) (build-system cmake-build-system) (arguments - `(#:tests? #f ;no test - #:configure-flags '("-DDATADIR=share/flare") - #:phases - (modify-phases %standard-phases - ;; Flare expects the mods to be located in the same folder. - ;; Yet, "default" mod is in the engine, whereas the others - ;; are in the current package. Merge everything here with - ;; a symlink. - (add-after 'install 'add-default-mod - (lambda* (#:key inputs outputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out")) - (mods (string-append out "/share/flare/mods"))) - (with-directory-excursion mods - (symlink (string-append (assoc-ref inputs "flare-engine") - "/share/flare/mods/default") - "default") - (symlink (string-append (assoc-ref inputs "flare-engine") - "/share/flare/mods/mods.txt") - "mods.txt"))) - #t)) - (add-after 'install 'install-executable - ;; The package only provides assets for the game, the - ;; executable coming from "flare-engine". Since more than - ;; one game may use the engine, we create a new executable, - ;; "flare-game", which launches the engine with appropriate - ;; parameters. - (lambda* (#:key inputs outputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out")) - (bash (search-input-file inputs "/bin/bash")) + (list + #:tests? #f ;no test + #:configure-flags #~(list "-DDATADIR=share/flare") + #:phases + #~(modify-phases %standard-phases + ;; Flare expects the mods to be located in the same folder. + ;; Yet, "default" mod is in the engine, whereas the others + ;; are in the current package. Merge everything here with + ;; a symlink. + (add-after 'install 'add-default-mod + (lambda* (#:key inputs #:allow-other-keys) + (let ((mods (string-append #$output "/share/flare/mods"))) + (with-directory-excursion mods + (symlink (search-input-directory inputs + "/share/flare/mods/default") + "default") + (symlink (search-input-file inputs + "/share/flare/mods/mods.txt") + "mods.txt"))))) + (add-after 'install 'install-executable + ;; The package only provides assets for the game, the + ;; executable coming from "flare-engine". Since more than + ;; one game may use the engine, we create a new executable, + ;; "flare-game", which launches the engine with appropriate + ;; parameters. + (lambda* (#:key inputs #:allow-other-keys) + (let ((bash (search-input-file inputs "/bin/bash")) (flare (search-input-file inputs "/bin/flare")) - (script (string-append out "/bin/flare-game"))) - (mkdir-p (dirname script)) - (call-with-output-file script - (lambda (port) - (format port - "#!~a + (script (string-append #$output "/bin/flare-game"))) + (mkdir-p (dirname script)) + (call-with-output-file script + (lambda (port) + (format port + "#!~a exec ~a --data-path=~a/share/flare --mods=empyrean_campaign~%" - bash - flare - out))) - (chmod script #o755)) - #t))))) + bash + flare + #$output))) + (chmod script #o755))))))) (inputs (list flare-engine)) (home-page "http://www.flarerpg.org/") -- cgit v1.3 From 67817299808a03e2750cfb630dc09fe8eb99c468 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 12:03:01 +0100 Subject: gnu: flare-game: Use HTTPS home page URI. * gnu/packages/games.scm (flare-game)[home-page]: Use HTTPS URI. --- gnu/packages/games.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index ac79b6718a..f9103c3232 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -8992,7 +8992,7 @@ exec ~a --data-path=~a/share/flare --mods=empyrean_campaign~%" (chmod script #o755))))))) (inputs (list flare-engine)) - (home-page "http://www.flarerpg.org/") + (home-page "https://flarerpg.org/") (synopsis "Fantasy action RPG using the FLARE engine") (description "Flare is a single-player 2D action RPG with fast-paced action and a dark fantasy style.") -- cgit v1.3 From 0073f442637e7f27006d747241f350e5d883aabe Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 7 Feb 2022 12:49:56 +0200 Subject: gnu: openntpd: Add release-monitoring-url. * gnu/packages/ntp.scm (openntpd)[properties]: New field. --- gnu/packages/ntp.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/ntp.scm b/gnu/packages/ntp.scm index b98f4513a3..7a3c033b2e 100644 --- a/gnu/packages/ntp.scm +++ b/gnu/packages/ntp.scm @@ -3,7 +3,7 @@ ;;; Copyright © 2014, 2015 Mark H Weaver ;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer ;;; Copyright © 2015, 2018 Ludovic Courtès -;;; Copyright © 2016, 2017, 2018 Efraim Flashner +;;; Copyright © 2016, 2017, 2018, 2022 Efraim Flashner ;;; Copyright © 2018–2021 Tobias Geerinckx-Rice ;;; Copyright © 2019 Maxim Cournoyer ;;; Copyright © 2021 Marius Bakke @@ -208,5 +208,7 @@ computers over a network.") and server for the Network Time Protocol. Its design goals include being secure, easy to configure, and accurate enough for most purposes, so it's more minimalist than ntpd.") + (properties + '((release-monitoring-url . "https://cdn.openbsd.org/pub/OpenBSD/OpenNTPD"))) ;; A few of the source files are under bsd-3. (license (list l:isc l:bsd-3)))) -- cgit v1.3 From 7c3766de1b634c823e533574c9d411df7de904d1 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 7 Feb 2022 12:52:35 +0200 Subject: gnu: util-linux: Add upstream-name property. This allows derivative packages to check for updated source correctly. * gnu/packages/linux.scm (util-linux)[properties]: New field. --- gnu/packages/linux.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 2e2d01c656..225b16d19e 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1985,6 +1985,7 @@ providing the system administrator with some help in common tasks.") utilities. It provides dmesg and includes tools for working with file systems, block devices, UUIDs, TTYs, and many other tools.") + (properties '((upstream-name . "util-linux"))) ;; Note that util-linux doesn't use the same license for all the ;; code. GPLv2+ is the default license for a code without an ;; explicitly defined license. -- cgit v1.3 From 809d3e6a11132921ce24484c79bddc90c7372372 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 7 Feb 2022 12:55:23 +0200 Subject: gnu: procps: Add upstream-name property. * gnu/packages/linux.scm (procps)[properties]: New field. --- gnu/packages/linux.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 225b16d19e..8855849a8d 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -2138,6 +2138,7 @@ parameters.") that give information about processes using the Linux /proc file system. The package includes the programs free, pgrep, pidof, pkill, pmap, ps, pwdx, slabtop, tload, top, vmstat, w, watch and sysctl.") + (properties '((upstream-name . "procps-ng"))) (license license:gpl2))) (define-public usbutils -- cgit v1.3 From c5f9a4600dfe88910b535c5fa61901033d1cb790 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 7 Feb 2022 13:59:36 +0200 Subject: gnu: i2c-tools: Update to 4.3. * gnu/packages/linux.scm (i2c-tools): Update to 4.3. --- gnu/packages/linux.scm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 8855849a8d..74c65f86bc 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -4478,20 +4478,21 @@ create a firmware image suitable for the Linux kernel, and more.") (define-public i2c-tools (package (name "i2c-tools") - (version "3.1.1") + (version "4.3") (source (origin (method url-fetch) (uri (string-append "http://jdelvare.nerim.net/mirror/i2c-tools/i2c-tools-" - version ".tar.bz2")) + version ".tar.xz")) (sha256 (base32 - "000pvg995qy1b15ks59gd0klri55hb33kqpg5czy84hw1pbdgm0l")))) + "1y0fphjd5ah2j886x8i175r7viq0hmx666hyca0wi4dzrm290qxk")))) (build-system gnu-build-system) (arguments `(#:tests? #f ; no 'check' target #:make-flags - ,#~(list (string-append "prefix=" #$output) + ,#~(list (string-append "PREFIX=" #$output) + (string-append "LDFLAGS+=-Wl,-rpath=" #$output "/lib") (string-append "CC=" #$(cc-for-target))) ;; No configure script. #:phases (modify-phases %standard-phases (delete 'configure)))) -- cgit v1.3 From 063b43b95e796d189b4d3ae4325137a981afc16e Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 7 Feb 2022 14:09:38 +0200 Subject: gnu: novena-eeprom: Build with older i2c-tools. * gnu/packages/admin.scm (novena-eeprom)[inputs]: Build with i2c-tools-3. * gnu/packages/linux.scm (i2c-tools-3): New variable. --- gnu/packages/admin.scm | 2 +- gnu/packages/linux.scm | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index f2ad66ea5b..daab720be5 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -4770,7 +4770,7 @@ disk utilization, priority, username, state, and exit code.") (install-file "novena-eeprom" out-bin) (install-file "novena-eeprom.8" out-share-man))))))) (inputs - (list i2c-tools)) + (list i2c-tools-3)) (synopsis "Novena EEPROM editor") (description "This package provides an editor for the Novena EEPROM. Novena boards contain a device-dependent descriptive EEPROM that defines diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 74c65f86bc..c405a34197 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -4507,6 +4507,24 @@ EEPROM decoding scripts, EEPROM programming tools, and a python module for SMBus access.") (license license:gpl2+))) +(define-public i2c-tools-3 + (package + (inherit i2c-tools) + (name "i2c-tools") + (version "3.1.2") + (source (origin + (method url-fetch) + (uri (string-append + "http://jdelvare.nerim.net/mirror/i2c-tools/i2c-tools-" + version ".tar.bz2")) + (sha256 + (base32 "0hd4c1w8lnwc3j95h3vpd125170l1d4myspyrlpamqx6wbr6jpnv")))) + (arguments + (substitute-keyword-arguments (package-arguments i2c-tools) + ((#:make-flags _) + #~(list (string-append "prefix=" #$output) + (string-append "CC=" #$(cc-for-target)))))))) + (define-public xsensors (package (name "xsensors") -- cgit v1.3 From b9f7d36d672bd3212571ed955b77bb815dbfeeb9 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 7 Feb 2022 14:10:49 +0200 Subject: gnu: ddcutil: Update to 1.2.1. * gnu/packages/hardware.scm (ddcutil): Update to 1.2.1. [inputs]: Add kmod and i2c-tools. --- gnu/packages/hardware.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gnu/packages/hardware.scm b/gnu/packages/hardware.scm index 0764818f6a..a3ce90f75e 100644 --- a/gnu/packages/hardware.scm +++ b/gnu/packages/hardware.scm @@ -183,20 +183,22 @@ support.") (define-public ddcutil (package (name "ddcutil") - (version "1.1.0") + (version "1.2.1") (source (origin (method url-fetch) (uri (string-append "https://www.ddcutil.com/tarballs/" "ddcutil-" version ".tar.gz")) (sha256 - (base32 "19kkwb9ijzn6ya3mvjanggh1c96fcc0lkbk7xnyi2qp6wsr4nhxp")))) + (base32 "0fp7ffjn21p0bsc5b1ipf3dbpzwn9g6j5dpnwdnca052ifzk2w7i")))) (build-system gnu-build-system) (native-inputs (list pkg-config)) (inputs (list eudev glib + kmod + i2c-tools libdrm ; enhanced diagnostics libusb ; support USB monitors libx11 ; enhanced diagnostics -- cgit v1.3 From 26d9e6c9043e8dd6a40498b1d7fbeedf6e134d6d Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 7 Feb 2022 14:14:19 +0200 Subject: gnu: connman: Update to 1.41. * gnu/packages/connman.scm (connman): Update to 1.41. [arguments]: Add configure-flag to build with iwd support. [native-inputs]: Remove labels. --- gnu/packages/connman.scm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/gnu/packages/connman.scm b/gnu/packages/connman.scm index f2ebfc95eb..6221b56d77 100644 --- a/gnu/packages/connman.scm +++ b/gnu/packages/connman.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2016, 2017, 2019, 2021 Efraim Flashner +;;; Copyright © 2016, 2017, 2019, 2021, 2022 Efraim Flashner ;;; Copyright © 2017 Mathieu Othacehe ;;; Copyright © 2017 Clément Lassieur ;;; Copyright © 2017 Ricardo Wurmus @@ -45,19 +45,20 @@ (define-public connman (package (name "connman") - (version "1.40") + (version "1.41") (source (origin (method url-fetch) (uri (string-append "mirror://kernel.org/linux/network/connman/" "connman-" version ".tar.xz")) (sha256 - (base32 "04nbxpaxykncp65fyh4lk778vn9145fbxhxa8hbkmailw9yawmqs")))) + (base32 "12g5ilcnymx6i45z3359yds3cgd2dfqjyncfm92hqlymzps41yvr")))) (build-system gnu-build-system) (arguments `(#:configure-flags (list "--enable-nmcompat" "--enable-polkit" ; Polkit doesn't need to be present at build time. + "--enable-iwd" "--enable-openconnect" "--enable-openvpn" "--enable-vpnc" @@ -68,8 +69,8 @@ (string-append "--with-dbusdatadir=" (assoc-ref %outputs "out") "/share")))) (native-inputs - `(("pkg-config" ,pkg-config) - ("python" ,python-wrapper))) + (list pkg-config + python-wrapper)) (inputs (list dbus glib -- cgit v1.3 From 013086c3dbaa2e28dd1b3c21a7ebe51ac829a1eb Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Fri, 28 Jan 2022 18:34:45 +0100 Subject: gnu: Add perl-5.14. * gnu/packages/patches/perl-5.14-autosplit-default-time.patch, gnu/packages/patches/perl-5.14-module-pluggable-search.patch, gnu/packages/patches/perl-5.14-no-sys-dirs.patch: New files. * gnu/local.mk (dist_patch_DATA): Add them. * gnu/packages/perl.scm (perl-5.14): New variable. --- gnu/local.mk | 3 + .../patches/perl-5.14-autosplit-default-time.patch | 15 ++ .../perl-5.14-module-pluggable-search.patch | 25 ++++ gnu/packages/patches/perl-5.14-no-sys-dirs.patch | 156 +++++++++++++++++++++ gnu/packages/perl.scm | 73 ++++++++++ 5 files changed, 272 insertions(+) create mode 100644 gnu/packages/patches/perl-5.14-autosplit-default-time.patch create mode 100644 gnu/packages/patches/perl-5.14-module-pluggable-search.patch create mode 100644 gnu/packages/patches/perl-5.14-no-sys-dirs.patch diff --git a/gnu/local.mk b/gnu/local.mk index 533cb42080..6c6543b5a3 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1629,6 +1629,9 @@ dist_patch_DATA = \ %D%/packages/patches/p11-kit-hurd.patch \ %D%/packages/patches/patchutils-test-perms.patch \ %D%/packages/patches/patch-hurd-path-max.patch \ + %D%/packages/patches/perl-5.14-autosplit-default-time.patch \ + %D%/packages/patches/perl-5.14-module-pluggable-search.patch \ + %D%/packages/patches/perl-5.14-no-sys-dirs.patch \ %D%/packages/patches/perl-autosplit-default-time.patch \ %D%/packages/patches/perl-finance-quote-unuse-mozilla-ca.patch \ %D%/packages/patches/perl-image-exiftool-CVE-2021-22204.patch \ diff --git a/gnu/packages/patches/perl-5.14-autosplit-default-time.patch b/gnu/packages/patches/perl-5.14-autosplit-default-time.patch new file mode 100644 index 0000000000..e801ac9bfe --- /dev/null +++ b/gnu/packages/patches/perl-5.14-autosplit-default-time.patch @@ -0,0 +1,15 @@ +AutoSplit will fail to create an index for files whose modification time is 0 +because its default time for a non-existent index is 1. Set this default time +to -1 instead. + +--- perl-5.16.1/cpan/AutoLoader/lib/AutoSplit.pm.orig 2012-02-14 22:44:36.000000000 -0600 ++++ perl-5.16.1/cpan/AutoLoader/lib/AutoSplit.pm 2015-09-09 19:59:22.208708921 -0500 +@@ -361,7 +361,7 @@ + my($al_idx_file) = catfile($autodir, $modpname, $IndexFile); + + if ($check_mod_time){ +- my($al_ts_time) = (stat("$al_idx_file"))[9] || 1; ++ my($al_ts_time) = (stat("$al_idx_file"))[9] || -1; + if ($al_ts_time >= $pm_mod_time and + $al_ts_time >= $self_mod_time){ + print "AutoSplit skipped ($al_idx_file newer than $filename)\n" diff --git a/gnu/packages/patches/perl-5.14-module-pluggable-search.patch b/gnu/packages/patches/perl-5.14-module-pluggable-search.patch new file mode 100644 index 0000000000..bb2a57f7e5 --- /dev/null +++ b/gnu/packages/patches/perl-5.14-module-pluggable-search.patch @@ -0,0 +1,25 @@ +Fix core Perl module Module::Pluggable such that it can find plugins that live +in symlinked directories. + +Patch borrowed/adapted from Nixpkgs. + +--- perl-5.16.1/cpan/Module-Pluggable/lib/Module/Pluggable/Object.pm 2015-04-08 23:28:48.120164135 -0500 ++++ perl-5.16.1/cpan/Module-Pluggable/lib/Module/Pluggable/Object.pm 2015-04-08 23:30:27.032166704 -0500 +@@ -164,7 +164,7 @@ + my $sp = catdir($dir, (split /::/, $searchpath)); + + # if it doesn't exist or it's not a dir then skip it +- next unless ( -e $sp && -d _ ); # Use the cached stat the second time ++ next unless ( -e $sp ); + + my @files = $self->find_files($sp); + +@@ -279,7 +279,7 @@ + (my $path = $File::Find::name) =~ s#^\\./##; + push @files, $path; + } +- }, $search_path ); ++ }, "$search_path/." ); + } + #chdir $cwd; + return @files; diff --git a/gnu/packages/patches/perl-5.14-no-sys-dirs.patch b/gnu/packages/patches/perl-5.14-no-sys-dirs.patch new file mode 100644 index 0000000000..3aba4d7529 --- /dev/null +++ b/gnu/packages/patches/perl-5.14-no-sys-dirs.patch @@ -0,0 +1,156 @@ +Don't long for headers and libraries in "traditional" locations. + +Patch from Nixpkgs by Eelco Dolstra . + +diff -ru -x '*~' perl-5.14.2-orig/Configure perl-5.14.2/Configure +--- perl-5.14.2-orig/Configure 2011-09-26 11:44:34.000000000 +0200 ++++ perl-5.14.2/Configure 2012-01-20 17:05:23.089223129 +0100 +@@ -106,15 +106,7 @@ + fi + + : Proper PATH setting +-paths='/bin /usr/bin /usr/local/bin /usr/ucb /usr/local /usr/lbin' +-paths="$paths /opt/bin /opt/local/bin /opt/local /opt/lbin" +-paths="$paths /usr/5bin /etc /usr/gnu/bin /usr/new /usr/new/bin /usr/nbin" +-paths="$paths /opt/gnu/bin /opt/new /opt/new/bin /opt/nbin" +-paths="$paths /sys5.3/bin /sys5.3/usr/bin /bsd4.3/bin /bsd4.3/usr/ucb" +-paths="$paths /bsd4.3/usr/bin /usr/bsd /bsd43/bin /opt/ansic/bin /usr/ccs/bin" +-paths="$paths /etc /usr/lib /usr/ucblib /lib /usr/ccs/lib" +-paths="$paths /sbin /usr/sbin /usr/libexec" +-paths="$paths /system/gnu_library/bin" ++paths='' + + for p in $paths + do +@@ -1311,8 +1303,7 @@ + archname='' + : Possible local include directories to search. + : Set locincpth to "" in a hint file to defeat local include searches. +-locincpth="/usr/local/include /opt/local/include /usr/gnu/include" +-locincpth="$locincpth /opt/gnu/include /usr/GNU/include /opt/GNU/include" ++locincpth="" + : + : no include file wanted by default + inclwanted='' +@@ -1328,17 +1319,12 @@ + archobjs='' + libnames='' + : change the next line if compiling for Xenix/286 on Xenix/386 +-xlibpth='/usr/lib/386 /lib/386' ++xlibpth='' + : Possible local library directories to search. +-loclibpth="/usr/local/lib /opt/local/lib /usr/gnu/lib" +-loclibpth="$loclibpth /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib" ++loclibpth="" + + : general looking path for locating libraries +-glibpth="/lib /usr/lib $xlibpth" +-glibpth="$glibpth /usr/ccs/lib /usr/ucblib /usr/local/lib" +-test -f /usr/shlib/libc.so && glibpth="/usr/shlib $glibpth" +-test -f /shlib/libc.so && glibpth="/shlib $glibpth" +-test -d /usr/lib64 && glibpth="$glibpth /lib64 /usr/lib64 /usr/local/lib64" ++glibpth="" + + : Private path used by Configure to find libraries. Its value + : is prepended to libpth. This variable takes care of special +@@ -1371,8 +1357,6 @@ + libswanted="$libswanted m crypt sec util c cposix posix ucb bsd BSD" + : We probably want to search /usr/shlib before most other libraries. + : This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist. +-glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'` +-glibpth="/usr/shlib $glibpth" + : Do not use vfork unless overridden by a hint file. + usevfork=false + +@@ -2380,7 +2364,6 @@ + zip + " + pth=`echo $PATH | sed -e "s/$p_/ /g"` +-pth="$pth /lib /usr/lib" + for file in $loclist; do + eval xxx=\$$file + case "$xxx" in +@@ -4785,7 +4768,7 @@ + : Set private lib path + case "$plibpth" in + '') if ./mips; then +- plibpth="$incpath/usr/lib /usr/local/lib /usr/ccs/lib" ++ plibpth="$incpath/usr/lib" + fi;; + esac + case "$libpth" in +@@ -8390,13 +8373,8 @@ + echo " " + case "$sysman" in + '') +- syspath='/usr/share/man/man1 /usr/man/man1' +- syspath="$syspath /usr/man/mann /usr/man/manl /usr/man/local/man1" +- syspath="$syspath /usr/man/u_man/man1" +- syspath="$syspath /usr/catman/u_man/man1 /usr/man/l_man/man1" +- syspath="$syspath /usr/local/man/u_man/man1 /usr/local/man/l_man/man1" +- syspath="$syspath /usr/man/man.L /local/man/man1 /usr/local/man/man1" +- sysman=`./loc . /usr/man/man1 $syspath` ++ syspath='' ++ sysman='' + ;; + esac + if $test -d "$sysman"; then +@@ -19721,9 +19699,10 @@ + case "$full_ar" in + '') full_ar=$ar ;; + esac ++full_ar=ar + + : Store the full pathname to the sed program for use in the C program +-full_sed=$sed ++full_sed=sed + + : see what type gids are declared as in the kernel + echo " " +diff -ru -x '*~' perl-5.14.2-orig/ext/Errno/Errno_pm.PL perl-5.14.2/ext/Errno/Errno_pm.PL +--- perl-5.14.2-orig/ext/Errno/Errno_pm.PL 2011-09-26 11:44:34.000000000 +0200 ++++ perl-5.14.2/ext/Errno/Errno_pm.PL 2012-01-20 17:02:07.938138311 +0100 +@@ -137,11 +137,7 @@ + if ($dep =~ /(\S+errno\.h)/) { + $file{$1} = 1; + } +- } elsif ($^O eq 'linux' && +- $Config{gccversion} ne '' && +- $Config{gccversion} !~ /intel/i +- # might be using, say, Intel's icc +- ) { ++ } elsif (0) { + # Some Linuxes have weird errno.hs which generate + # no #file or #line directives + my $linux_errno_h = -e '/usr/include/errno.h' ? +diff -ru -x '*~' perl-5.14.2-orig/hints/freebsd.sh perl-5.14.2/hints/freebsd.sh +--- perl-5.14.2-orig/hints/freebsd.sh 2011-09-19 15:18:22.000000000 +0200 ++++ perl-5.14.2/hints/freebsd.sh 2012-01-20 17:10:37.267924044 +0100 +@@ -118,21 +118,21 @@ + objformat=`/usr/bin/objformat` + if [ x$objformat = xaout ]; then + if [ -e /usr/lib/aout ]; then +- libpth="/usr/lib/aout /usr/local/lib /usr/lib" +- glibpth="/usr/lib/aout /usr/local/lib /usr/lib" ++ libpth="" ++ glibpth="" + fi + lddlflags='-Bshareable' + else +- libpth="/usr/lib /usr/local/lib" +- glibpth="/usr/lib /usr/local/lib" ++ libpth="" ++ glibpth="" + ldflags="-Wl,-E " + lddlflags="-shared " + fi + cccdlflags='-DPIC -fPIC' + ;; + *) +- libpth="/usr/lib /usr/local/lib" +- glibpth="/usr/lib /usr/local/lib" ++ libpth="" ++ glibpth="" + ldflags="-Wl,-E " + lddlflags="-shared " + cccdlflags='-DPIC -fPIC' diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 069c2c6e2e..d6ca055147 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -65,6 +65,7 @@ #:use-module (gnu packages databases) #:use-module (gnu packages fontutils) #:use-module (gnu packages freedesktop) + #:use-module (gnu packages gcc) #:use-module (gnu packages gd) #:use-module (gnu packages gl) #:use-module (gnu packages gtk) @@ -258,6 +259,78 @@ more.") (home-page "https://www.perl.org/") (license license:gpl1+))) ; or "Artistic" +(define-public perl-5.14 + (package + (name "perl") + (version "5.14.4") + (source (origin + (method url-fetch) + (uri (string-append "mirror://cpan/src/5.0/perl-" + version ".tar.gz")) + (sha256 + (base32 + "1js47zzna3v38fjnirf2vq6y0rjp8m86ysj5vagzgkig956d8gw0")) + (patches (search-patches + "perl-5.14-no-sys-dirs.patch" + "perl-5.14-autosplit-default-time.patch" + "perl-5.14-module-pluggable-search.patch")))) + (properties `((release-date . "2013-03-10"))) + (build-system gnu-build-system) + (arguments + '(#:tests? #f + #:phases + (modify-phases %standard-phases + (replace 'configure + (lambda* (#:key inputs outputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out")) + (libc (assoc-ref inputs "libc"))) + ;; Use the right path for `pwd'. + (substitute* "dist/Cwd/Cwd.pm" + (("/bin/pwd") + (which "pwd"))) + + (invoke "./Configure" + (string-append "-Dprefix=" out) + (string-append "-Dman1dir=" out "/share/man/man1") + (string-append "-Dman3dir=" out "/share/man/man3") + "-de" "-Dcc=gcc" + "-Uinstallusrbinperl" + "-Dinstallstyle=lib/perl5" + "-Duseshrplib" + (string-append "-Dlocincpth=" libc "/include") + (string-append "-Dloclibpth=" libc "/lib") + + ;; Force the library search path to contain only libc + ;; because it is recorded in Config.pm and + ;; Config_heavy.pl; we don't want to keep a reference + ;; to everything that's in $LIBRARY_PATH at build + ;; time (Binutils, bzip2, file, etc.) + (string-append "-Dlibpth=" libc "/lib") + (string-append "-Dplibpth=" libc "/lib"))))) + + (add-before 'strip 'make-shared-objects-writable + (lambda* (#:key outputs #:allow-other-keys) + ;; The 'lib/perl5' directory contains ~50 MiB of .so. Make them + ;; writable so that 'strip' actually strips them. + (let* ((out (assoc-ref outputs "out")) + (lib (string-append out "/lib"))) + (for-each (lambda (dso) + (chmod dso #o755)) + (find-files lib "\\.so$")))))))) + (native-inputs + (list gcc-7)) + (native-search-paths (list (search-path-specification + (variable "PERL5LIB") + (files '("lib/perl5/site_perl"))))) + (home-page "https://www.perl.org/") + (synopsis "Implementation of the Perl programming language") + (description + "Perl is a general-purpose programming language originally developed for +text manipulation and now used for a wide range of tasks including system +administration, web development, network programming, GUI development, and +more.") + (license license:gpl1+))) + (define-public perl-algorithm-c3 (package (name "perl-algorithm-c3") -- cgit v1.3 From defa85b26537a3cc20624fb9dbcae906226361d5 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sat, 5 Feb 2022 00:56:54 +0100 Subject: gnu: Add glibc-2.2.5. * gnu/packages/commencement.scm (glibc-mesboot0, gcc-mesboot0, binutils-mesboot): Export variables. * gnu/packages/base.scm (glibc-2.2.5): New variable. --- gnu/packages/base.scm | 102 +++++++++++++++++++++++++++++++++++++++++- gnu/packages/commencement.scm | 6 +-- 2 files changed, 104 insertions(+), 4 deletions(-) diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index 0e49b6044c..32a462b545 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -13,7 +13,7 @@ ;;; Copyright © 2017, 2018, 2020 Marius Bakke ;;; Copyright © 2017 Eric Bavier ;;; Copyright © 2018 Tobias Geerinckx-Rice -;;; Copyright © 2018, 2019 Ricardo Wurmus +;;; Copyright © 2018, 2019, 2022 Ricardo Wurmus ;;; Copyright © 2020 Vitaliy Shatrov ;;; Copyright © 2020 Chris Marusich ;;; Copyright © 2021 Leo Le Bouter @@ -46,6 +46,7 @@ #:use-module (gnu packages bash) #:use-module (gnu packages bison) #:use-module (gnu packages ed) + #:use-module (gnu packages gawk) #:use-module (gnu packages gcc) #:use-module (gnu packages guile) #:use-module (gnu packages multiprecision) @@ -1014,6 +1015,105 @@ with the Linux kernel.") "glibc-reinstate-prlimit64-fallback.patch" "glibc-2.29-supported-locales.patch")))))) + +(define-public glibc-2.2.5 + (package + (inherit glibc) + (version "2.2.5") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnu/glibc/glibc-" version ".tar.gz")) + (patches (search-patches "glibc-boot-2.2.5.patch" + "glibc-bootstrap-system-2.2.5.patch")) + (sha256 + (base32 + "1vl48i16gx6h68whjyhgnn1s57vqq32f9ygfa2fls7pdkbsqvp2q")))) + (arguments + (list #:system "i686-linux" + #:implicit-inputs? #f + #:tests? #f + #:strip-binaries? #f + #:validate-runpath? #f + #:parallel-build? #f ; gcc-2.95.3 ICEs on massively parallel builds + #:make-flags + #~(list (string-append + "SHELL=" #$(this-package-native-input "bash") "/bin/sh")) + #:configure-flags + #~(list "--enable-shared" + "--enable-static" + "--disable-sanity-checks" + "--build=i686-unknown-linux-gnu" + "--host=i686-unknown-linux-gnu" + (string-append "--with-headers=" + #$(this-package-native-input "kernel-headers") + "/include") + "--enable-static-nss" + "--without-__thread" + "--without-cvs" + "--without-gd" + "--without-tls" + (string-append "--prefix=" #$output)) + #:phases + #~(modify-phases %standard-phases + (add-before 'configure 'setenv + (lambda* (#:key inputs outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (bash (assoc-ref inputs "bash")) + (shell (string-append bash "/bin/bash")) + (gcc (assoc-ref inputs "gcc")) + (cppflags (string-append + " -D MES_BOOTSTRAP=1" + " -D BOOTSTRAP_GLIBC=1")) + (cflags (string-append " -L " (getcwd)))) + (setenv "CONFIG_SHELL" shell) + (setenv "SHELL" shell) + (setenv "CPP" (string-append gcc "/bin/gcc -E " cppflags)) + (setenv "CC" (string-append gcc "/bin/gcc " cppflags cflags))))) + (replace 'configure ; needs classic invocation of configure + (lambda* (#:key configure-flags #:allow-other-keys) + (format (current-error-port) + "running ./configure ~a\n" (string-join configure-flags)) + (apply invoke "./configure" configure-flags))) + (add-after 'configure 'fixup-configure + (lambda* (#:key inputs outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (bash (assoc-ref inputs "bash")) + (shell (string-append bash "/bin/bash"))) + (substitute* "config.make" + (("INSTALL = scripts/") "INSTALL = $(..)./scripts/")) + (substitute* "config.make" + (("INSTALL = scripts/") "INSTALL = $(..)./scripts/") + (("BASH = ") (string-append + "SHELL = " shell " + BASH = "))))))))) + (supported-systems '("i686-linux" "x86_64-linux")) + (outputs '("out")) + (inputs '()) + (propagated-inputs '()) + (native-inputs + ;; Lazily resolve NAME in (gnu packages commencement) to avoid a cycle. + (let ((c (lambda (name) + (module-ref (resolve-interface + '(gnu packages commencement)) + name)))) + `(("bash" ,bash-minimal) + ("coreutils" ,coreutils) + ("gawk" ,gawk) + ("grep" ,grep) + ("make" ,gnu-make) + ("sed" ,sed) + ("tar" ,tar) + ("bzip2" ,bzip2) + ("gzip" ,gzip) + ("patch" ,patch) + ("xz" ,xz) + ("kernel-headers" ,linux-libre-headers) + + ;; Old toolchain + ("gcc" ,(c 'gcc-mesboot0)) + ("binutils" ,(c 'binutils-mesboot)) + ("libc" ,(c 'glibc-mesboot0))))))) + (define-public (make-gcc-libc base-gcc libc) "Return a GCC that targets LIBC." (package (inherit base-gcc) diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index 3fb4b2054f..3fb26f4c9e 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -1264,7 +1264,7 @@ ac_cv_c_float_format='IEEE (little-endian)' (install-file "gawk" bin) (symlink "gawk" (string-append bin "/awk")))))))))) -(define glibc-mesboot0 +(define-public glibc-mesboot0 ;; GNU C Library 2.2.5 is the most recent glibc that we managed to build ;; using gcc-2.95.3. Newer versions (2.3.x, 2.6, 2.1x) seem to need a newer ;; gcc. @@ -1358,7 +1358,7 @@ ac_cv_c_float_format='IEEE (little-endian)' "SHELL = " shell " BASH = "))))))))))) -(define gcc-mesboot0 +(define-public gcc-mesboot0 (package (inherit gcc-core-mesboot0) (name "gcc-mesboot0") @@ -1992,7 +1992,7 @@ ac_cv_c_float_format='IEEE (little-endian)' (lambda _ (invoke "./hello")))))))) -(define binutils-mesboot +(define-public binutils-mesboot (package (inherit binutils) (name "binutils-mesboot") -- cgit v1.3 From a95924c9ac3f238cde243c96d552ff59ad77ca16 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sat, 5 Feb 2022 00:56:32 +0100 Subject: gnu: Add gcc-2.95-wrapper. * gnu/packages/commencement.scm (gcc-2.95-wrapper): New variable. --- gnu/packages/commencement.scm | 58 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index 3fb26f4c9e..76e879b47b 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -12,6 +12,7 @@ ;;; Copyright © 2021 Maxim Cournoyer ;;; Copyright © 2021 Chris Marusich ;;; Copyright © 2021 Julien Lepiller +;;; Copyright © 2022 Ricardo Wurmus ;;; ;;; This file is part of GNU Guix. ;;; @@ -1402,6 +1403,63 @@ ac_cv_c_float_format='IEEE (little-endian)' ,(string-append "LIBGCC2_INCLUDES=-I " gcc "/include") "LANGUAGES=c"))))))) +(define-public gcc-2.95-wrapper + ;; We need this so gcc-mesboot0 can be used to create shared binaries that + ;; have the correct interpreter, otherwise configuring gcc-mesboot using + ;; --enable-shared will fail. + (package + (inherit gcc-mesboot0) + (name "gcc-wrapper") + (source #f) + (inputs '()) + (native-inputs + `(("bash" ,bash-minimal) + ("coreutils" ,coreutils) + ("libc" ,glibc-2.2.5) + ("gcc" ,gcc-mesboot0))) + (arguments + `(#:implicit-inputs? #f + #:phases + (modify-phases %standard-phases + (delete 'unpack) + (delete 'configure) + (delete 'install) + (replace 'build + (lambda* (#:key inputs outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (bash (assoc-ref inputs "bash")) + (libc (assoc-ref inputs "libc")) + (gcc (assoc-ref inputs "gcc")) + (bin (string-append out "/bin"))) + (mkdir-p bin) + (for-each + (lambda (program) + (let ((wrapper (string-append bin "/" program))) + (with-output-to-file wrapper + (lambda _ + (display (string-append "#! " bash "/bin/bash +exec " gcc "/bin/" program +" -Wl,--dynamic-linker" +;; also for x86_64-linux, we are still on i686-linux +" -Wl," libc ,(glibc-dynamic-linker "i686-linux") +" -Wl,--rpath" +" -Wl," libc "/lib" +" \"$@\" +")) + (chmod wrapper #o555))))) + '("cpp" + "gcc" + "g++" + "i686-unknown-linux-gnu-cpp" + "i686-unknown-linux-gnu-gcc" + "i686-unknown-linux-gnu-g++"))))) + (replace 'check + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (bin (string-append out "/bin")) + (program (string-append bin "/gcc"))) + (invoke program "--help"))))))))) + (define (%boot-mesboot0-inputs) `(("gcc" ,gcc-mesboot0) ("kernel-headers" ,%bootstrap-linux-libre-headers) -- cgit v1.3 From 3817ea91b7d93b57c62463d1c7274c5ce4a9369b Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Fri, 28 Jan 2022 18:34:32 +0100 Subject: gnu: Add ghc-4. * gnu/packages/patches/ghc-4.patch: New file * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/haskell.scm (ghc-4): New variable. --- gnu/local.mk | 1 + gnu/packages/haskell.scm | 214 +++++++++++- gnu/packages/patches/ghc-4.patch | 708 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 922 insertions(+), 1 deletion(-) create mode 100644 gnu/packages/patches/ghc-4.patch diff --git a/gnu/local.mk b/gnu/local.mk index 6c6543b5a3..09dd9acc2f 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1140,6 +1140,7 @@ dist_patch_DATA = \ %D%/packages/patches/geeqie-clutter.patch \ %D%/packages/patches/genimage-mke2fs-test.patch \ %D%/packages/patches/geoclue-config.patch \ + %D%/packages/patches/ghc-4.patch \ %D%/packages/patches/ghc-8.0-fall-back-to-madv_dontneed.patch \ %D%/packages/patches/ghc-testsuite-dlopen-pie.patch \ %D%/packages/patches/ghc-language-haskell-extract-ghc-8.10.patch \ diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 699b45e45a..020011d955 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -6,7 +6,7 @@ ;;; Copyright © 2016, 2018, 2019, 2021 Ludovic Courtès ;;; Copyright © 2016, 2017 Nikita ;;; Copyright © 2016 Efraim Flashner -;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020 Ricardo Wurmus +;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2022 Ricardo Wurmus ;;; Copyright © 2016, 2017 David Craven ;;; Copyright © 2017 Danny Milosavljevic ;;; Copyright © 2017 Peter Mikkelsen @@ -41,10 +41,18 @@ (define-module (gnu packages haskell) #:use-module (gnu packages) + #:use-module (gnu packages autotools) + #:use-module (gnu packages base) + #:use-module (gnu packages bash) + #:use-module (gnu packages bison) #:use-module (gnu packages bootstrap) + #:use-module (gnu packages compression) #:use-module (gnu packages elf) + #:use-module (gnu packages file) + #:use-module (gnu packages gawk) #:use-module (gnu packages ghostscript) #:use-module (gnu packages libffi) + #:use-module (gnu packages linux) #:use-module (gnu packages lisp) #:use-module (gnu packages multiprecision) #:use-module (gnu packages ncurses) @@ -99,6 +107,210 @@ top of CLISP.") (license license:bsd-4)))) +(define-public ghc-4 + (package + (name "ghc") + (version "4.08.2") + (source + (origin + (method url-fetch) + (uri (string-append "https://www.haskell.org/ghc/dist/" + version "/" name "-" version "-src.tar.bz2")) + (sha256 + (base32 + "0ar4nxy4cr5vwvfj71gmc174vx0n3lg9ka05sa1k60c8z0g3xp1q")) + (patches (list (search-patch "ghc-4.patch"))))) + (build-system gnu-build-system) + (supported-systems '("i686-linux" "x86_64-linux")) + (arguments + `(#:system "i686-linux" + #:implicit-inputs? #f + #:strip-binaries? #f + #:phases + (modify-phases %standard-phases + (replace 'bootstrap + (lambda* (#:key inputs #:allow-other-keys) + (delete-file "configure") + (delete-file "config.sub") + (install-file (string-append (assoc-ref inputs "automake") + "/share/automake-1.16/config.sub") + ".") + + ;; Avoid dependency on "happy" + (substitute* "configure.in" + (("FPTOOLS_HAPPY") "echo sure\n")) + + ;; Set options suggested in ghc/interpreter/README.BUILDING.HUGS. + (with-output-to-file "mk/build.mk" + (lambda () + (display " +WithGhcHc=ghc-4.06 +GhcLibWays=u +#HsLibsFor=hugs +# Setting this leads to building the interpreter. +GhcHcOpts=-DDEBUG +GhcRtsHcOpts=-optc-DDEBUG -optc-D__HUGS__ -unreg -optc-g +GhcRtsCcOpts=-optc-DDEBUG -optc-g -optc-D__HUGS__ +SplitObjs=NO +"))) + + (substitute* "ghc/interpreter/interface.c" + ;; interface.c:2702: `stackOverflow' redeclared as different kind of symbol + ;; ../includes/Stg.h:188: previous declaration of `stackOverflow' + ((".*Sym\\(stackOverflow\\).*") "") + ;; interface.c:2713: `stg_error_entry' undeclared here (not in a function) + ;; interface.c:2713: initializer element is not constant + ;; interface.c:2713: (near initialization for `rtsTab[11].ad') + ((".*SymX\\(stg_error_entry\\).*") "") + ;; interface.c:2713: `Upd_frame_info' undeclared here (not in a function) + ;; interface.c:2713: initializer element is not constant + ;; interface.c:2713: (near initialization for `rtsTab[32].ad') + ((".*SymX\\(Upd_frame_info\\).*") "")) + + ;; We need to use the absolute file names here or else the linker + ;; will complain about missing symbols. Perhaps this could be + ;; avoided by modifying the library search path in a way that + ;; this old linker understands. + (substitute* "ghc/interpreter/Makefile" + (("-lbfd -liberty") + (string-append (assoc-ref inputs "binutils") "/lib/libbfd.a " + (assoc-ref inputs "binutils") "/lib/libiberty.a"))) + + (let ((bash (which "bash"))) + (substitute* '("configure.in" + "ghc/configure.in" + "ghc/rts/gmp/mpn/configure.in" + "ghc/rts/gmp/mpz/configure.in" + "ghc/rts/gmp/configure.in" + "distrib/configure-bin.in") + (("`/bin/sh") (string-append "`" bash)) + (("SHELL=/bin/sh") (string-append "SHELL=" bash)) + (("^#! /bin/sh") (string-append "#! " bash))) + + (substitute* '("mk/config.mk.in" + "ghc/rts/gmp/mpz/Makefile.in" + "ghc/rts/gmp/Makefile.in") + (("^SHELL.*=.*/bin/sh") (string-append "SHELL = " bash))) + (substitute* "aclocal.m4" + (("SHELL=/bin/sh") (string-append "SHELL=" bash))) + + (setenv "CONFIG_SHELL" bash) + (setenv "SHELL" bash)) + + (setenv "CPP" (string-append (assoc-ref inputs "gcc") "/bin/cpp")) + (invoke "autoreconf" "--verbose" "--force"))) + (add-before 'configure 'configure-gmp + (lambda* (#:key build inputs outputs #:allow-other-keys) + (with-directory-excursion "ghc/rts/gmp" + (let ((bash (which "bash")) + (out (assoc-ref outputs "out"))) + (invoke bash "./configure"))))) + (replace 'configure + (lambda* (#:key build inputs outputs #:allow-other-keys) + (let ((bash (which "bash")) + (out (assoc-ref outputs "out"))) + (invoke bash "./configure" + "--enable-hc-boot" + (string-append "--prefix=" out) + (string-append "--build=" build) + (string-append "--host=" build))))) + (add-before 'build 'make-boot + (lambda _ + ;; Only when building with more recent GCC + (when #false + ;; GCC 2.95 is fine with these comments, but GCC 4.6 is not. + (substitute* "ghc/rts/universal_call_c.S" + (("^# .*") "")) + ;; CLK_TCK has been removed + (substitute* "ghc/interpreter/nHandle.c" + (("CLK_TCK") "sysconf(_SC_CLK_TCK)"))) + + ;; Only when using more recent Perl + (when #false + (substitute* "ghc/driver/ghc-asm.prl" + (("local\\(\\$\\*\\) = 1;") "") + (("endef\\$/") "endef$/s"))) + + (setenv "CPATH" + (string-append (getcwd) "/ghc/includes:" + (getcwd) "/mk:" + (or (getenv "CPATH") ""))) + (invoke "make" "boot"))) + (replace 'build + (lambda _ + ;; TODO: since we don't have a Haskell compiler we cannot build + ;; the standard library. And without the standard library we + ;; cannot build a Haskell compiler. + ;; make[3]: *** No rule to make target 'Array.o', needed by 'libHSstd.a'. Stop. + ;; make[2]: *** No rule to make target 'utils/Argv.o', needed by 'hsc'. Stop. + (invoke "make" "all"))) + (add-after 'build 'build-hugs + (lambda _ + (invoke "make" "-C" "ghc/interpreter") + (invoke "make" "-C" "ghc/interpreter" "install"))) + (add-after 'install 'install-sources + (lambda* (#:key outputs #:allow-other-keys) + (let ((lib (string-append (assoc-ref outputs "out") "/lib"))) + (copy-recursively "hslibs" + (string-append lib "/hslibs")) + (copy-recursively "ghc/lib" + (string-append lib "/ghc/lib")) + (copy-recursively "ghc/compiler" + (string-append lib "/ghc/compiler")) + (copy-recursively "ghc/interpreter/lib" lib) + (install-file "ghc/interpreter/nHandle.so" lib))))))) + (native-inputs + `(("findutils" ,findutils) + ("tar" ,tar) + ("bzip2" ,bzip2) + ("xz" ,xz) + ("diffutils" ,diffutils) + ("file" ,file) + ("gawk" ,gawk) + ("autoconf" ,autoconf-2.13) + ("automake" ,automake) + ("bison" ,bison) ;for parser.y + + ("make" ,gnu-make) + ("sed" ,sed) + ("grep" ,grep) + ("coreutils" ,coreutils) + ("bash" ,bash-minimal) + + ("libc" ,glibc-2.2.5) + ;; Lazily resolve binutils-mesboot in (gnu packages commencement) to + ;; avoid a cycle. + ("gcc-wrapper" + ,(module-ref (resolve-interface + '(gnu packages commencement)) + 'gcc-2.95-wrapper)) + ("gcc" + ,(module-ref (resolve-interface + '(gnu packages commencement)) + 'gcc-mesboot0)) + ("binutils" + ,(module-ref (resolve-interface + '(gnu packages commencement)) + 'binutils-mesboot)) + ("kernel-headers" ,linux-libre-headers) + + ;; TODO: Perl used to allow setting $* to enable multi-line + ;; matching. If we want to use a more recent Perl we need to + ;; patch all expressions that require multi-line matching. Hard + ;; to tell. + ("perl" ,perl-5.14))) + (home-page "https://www.haskell.org/ghc") + (synopsis "The Glasgow Haskell Compiler") + (description + "The Glasgow Haskell Compiler (GHC) is a state-of-the-art compiler and +interactive environment for the functional language Haskell. The value of +this package lies in the modified build of Hugs that is linked with GHC's STG +runtime system, the RTS. \"STG\" stands for \"spineless, tagless, +G-machine\"; it is the abstract machine designed to support nonstrict +higher-order functional languages. Neither the compiler nor the Haskell +libraries are included in this package.") + (license license:bsd-3))) + (define ghc-bootstrap-x86_64-7.8.4 (origin (method url-fetch) diff --git a/gnu/packages/patches/ghc-4.patch b/gnu/packages/patches/ghc-4.patch new file mode 100644 index 0000000000..87484f575d --- /dev/null +++ b/gnu/packages/patches/ghc-4.patch @@ -0,0 +1,708 @@ +The GHC 4 runtime system was written before GCC 3.5 deprecated lvalue casts. +The runtime system's sources are littered with these casts, so early versions +of this patch were dedicated to rewriting those statements to a standards +compliant form. Unfortunately, this led to subtle breakage, so instead we +build with GCC 2.95. + +Problematic for newer versions of GCC is also the assembly in the bundled +sources of GMP 2.0.2, which spans multiple lines without escaping line breaks. + +TODO: We aren't yet using anything under ghc/compiler, so the patches there +aren't needed at this time. The intent was to ensure that the compiler +sources can be used even when they are interpreted by Hugs. + +TODO: There are some more problems with the Haskell sources. Some files have +too many commas (both at the end of the line and at the beginning of the next +line). Others use a trailing hash, which Hugs doesn't understand. + +TODO: Hugs doesn't understand "unsafe" in hslib/lang/Storable.lhs + +diff --git a/ghc/compiler/main/CmdLineOpts.lhs b/ghc/compiler/main/CmdLineOpts.lhs +index ca1b58d..074fcaf 100644 +--- a/ghc/compiler/main/CmdLineOpts.lhs ++++ b/ghc/compiler/main/CmdLineOpts.lhs +@@ -163,9 +163,9 @@ import Constants -- Default values for some flags + + import FastString ( headFS ) + import Maybes ( assocMaybe, firstJust, maybeToBool ) +-import Panic ( panic, panic# ) ++import Panic ( panic, panic' ) + +-#if __GLASGOW_HASKELL__ < 301 ++#if __GLASGOW_HASKELL__ && __GLASGOW_HASKELL__ < 301 + import ArrBase ( Array(..) ) + #else + import PrelArr ( Array(..) ) +diff --git a/ghc/compiler/prelude/PrimOp.lhs b/ghc/compiler/prelude/PrimOp.lhs +index 7a0627d..59802c4 100644 +--- a/ghc/compiler/prelude/PrimOp.lhs ++++ b/ghc/compiler/prelude/PrimOp.lhs +@@ -502,7 +502,7 @@ tagOf_PrimOp UnblockAsyncExceptionsOp = ILIT(260) + tagOf_PrimOp DataToTagOp = ILIT(261) + tagOf_PrimOp TagToEnumOp = ILIT(262) + +-tagOf_PrimOp op = pprPanic# "tagOf_PrimOp: pattern-match" (ppr op) ++tagOf_PrimOp op = pprPanic' "tagOf_PrimOp: pattern-match" (ppr op) + + instance Eq PrimOp where + op1 == op2 = tagOf_PrimOp op1 _EQ_ tagOf_PrimOp op2 +diff --git a/ghc/compiler/utils/Outputable.lhs b/ghc/compiler/utils/Outputable.lhs +index 19ad666..89d07cb 100644 +--- a/ghc/compiler/utils/Outputable.lhs ++++ b/ghc/compiler/utils/Outputable.lhs +@@ -42,8 +42,8 @@ module Outputable ( + + + -- error handling +- pprPanic, pprPanic#, pprError, pprTrace, assertPprPanic, warnPprTrace, +- trace, panic, panic#, assertPanic ++ pprPanic, pprPanic', pprError, pprTrace, assertPprPanic, warnPprTrace, ++ trace, panic, panic', assertPanic + ) where + + #include "HsVersions.h" +@@ -420,7 +420,7 @@ pprPanic = pprAndThen panic + pprError = pprAndThen error + pprTrace = pprAndThen trace + +-pprPanic# heading pretty_msg = panic# (show (doc PprDebug)) ++pprPanic' heading pretty_msg = panic' (show (doc PprDebug)) + where + doc = text heading <+> pretty_msg + +diff --git a/ghc/compiler/utils/Panic.lhs b/ghc/compiler/utils/Panic.lhs +index 907d8aa..37a2d87 100644 +--- a/ghc/compiler/utils/Panic.lhs ++++ b/ghc/compiler/utils/Panic.lhs +@@ -9,7 +9,7 @@ It's hard to put these functions anywhere else without causing + some unnecessary loops in the module dependency graph. + + \begin{code} +-module Panic ( panic, panic#, assertPanic, trace ) where ++module Panic ( panic, panic', assertPanic, trace ) where + + import IOExts ( trace ) + +@@ -27,8 +27,8 @@ panic x = error ("panic! (the `impossible' happened):\n\t" + -- what TAG_ is with GHC at the moment. Ugh. (Simon) + -- No, man -- Too Beautiful! (Will) + +-panic# :: String -> FAST_INT +-panic# s = case (panic s) of () -> ILIT(0) ++panic' :: String -> FAST_INT ++panic' s = case (panic s) of () -> ILIT(0) + + assertPanic :: String -> Int -> a + assertPanic file line = panic ("ASSERT failed! file " ++ file ++ ", line " ++ show line) +diff --git a/ghc/includes/PrimOps.h b/ghc/includes/PrimOps.h +index 8b8c2f9..7f43ab0 100644 +--- a/ghc/includes/PrimOps.h ++++ b/ghc/includes/PrimOps.h +@@ -893,6 +893,7 @@ EXTFUN_RTS(mkForeignObjzh_fast); + #define STG_SIG_ERR (-3) + #define STG_SIG_HAN (-4) + ++#include + extern StgInt sig_install (StgInt, StgInt, StgStablePtr, sigset_t *); + #define stg_sig_default(sig,mask) sig_install(sig,STG_SIG_DFL,0,(sigset_t *)mask) + #define stg_sig_ignore(sig,mask) sig_install(sig,STG_SIG_IGN,0,(sigset_t *)mask) +diff --git a/ghc/rts/RtsFlags.c b/ghc/rts/RtsFlags.c +index a05036f..9cd6c83 100644 +--- a/ghc/rts/RtsFlags.c ++++ b/ghc/rts/RtsFlags.c +@@ -1132,8 +1132,7 @@ process_gran_option(int arg, int *rts_argc, char *rts_argv[], rtsBool *error) + } else if (RtsFlags.GranFlags.proc > MAX_PROC || + RtsFlags.GranFlags.proc < 1) + { +- fprintf(stderr,"setupRtsFlags: no more than %u processors +-allowed\n", ++ fprintf(stderr,"setupRtsFlags: no more than %u processors allowed\n", + MAX_PROC); + *error = rtsTrue; + } +diff --git a/ghc/rts/gmp/longlong.h b/ghc/rts/gmp/longlong.h +index 382fcc0..0cf79fa 100644 +--- a/ghc/rts/gmp/longlong.h ++++ b/ghc/rts/gmp/longlong.h +@@ -106,7 +106,7 @@ MA 02111-1307, USA. */ + + #if (defined (__a29k__) || defined (_AM29K)) && W_TYPE_SIZE == 32 + #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ +- __asm__ ("add %1,%4,%5 ++ __asm__ ("add %1,%4,%5\n\ + addc %0,%2,%3" \ + : "=r" ((USItype)(sh)), \ + "=&r" ((USItype)(sl)) \ +@@ -115,7 +115,7 @@ MA 02111-1307, USA. */ + "%r" ((USItype)(al)), \ + "rI" ((USItype)(bl))) + #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ +- __asm__ ("sub %1,%4,%5 ++ __asm__ ("sub %1,%4,%5\n\ + subc %0,%2,%3" \ + : "=r" ((USItype)(sh)), \ + "=&r" ((USItype)(sl)) \ +@@ -173,7 +173,7 @@ extern UDItype __udiv_qrnnd (); + + #if defined (__arm__) && W_TYPE_SIZE == 32 + #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ +- __asm__ ("adds %1, %4, %5 ++ __asm__ ("adds %1, %4, %5\n\ + adc %0, %2, %3" \ + : "=r" ((USItype)(sh)), \ + "=&r" ((USItype)(sl)) \ +@@ -182,7 +182,7 @@ extern UDItype __udiv_qrnnd (); + "%r" ((USItype)(al)), \ + "rI" ((USItype)(bl))) + #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ +- __asm__ ("subs %1, %4, %5 ++ __asm__ ("subs %1, %4, %5\n\ + sbc %0, %2, %3" \ + : "=r" ((USItype)(sh)), \ + "=&r" ((USItype)(sl)) \ +@@ -191,18 +191,18 @@ extern UDItype __udiv_qrnnd (); + "r" ((USItype)(al)), \ + "rI" ((USItype)(bl))) + #define umul_ppmm(xh, xl, a, b) \ +- __asm__ ("%@ Inlined umul_ppmm +- mov %|r0, %2, lsr #16 +- mov %|r2, %3, lsr #16 +- bic %|r1, %2, %|r0, lsl #16 +- bic %|r2, %3, %|r2, lsl #16 +- mul %1, %|r1, %|r2 +- mul %|r2, %|r0, %|r2 +- mul %|r1, %0, %|r1 +- mul %0, %|r0, %0 +- adds %|r1, %|r2, %|r1 +- addcs %0, %0, #65536 +- adds %1, %1, %|r1, lsl #16 ++ __asm__ ("%@ Inlined umul_ppmm\n\ ++ mov %|r0, %2, lsr #16\n\ ++ mov %|r2, %3, lsr #16\n\ ++ bic %|r1, %2, %|r0, lsl #16\n\ ++ bic %|r2, %3, %|r2, lsl #16\n\ ++ mul %1, %|r1, %|r2\n\ ++ mul %|r2, %|r0, %|r2\n\ ++ mul %|r1, %0, %|r1\n\ ++ mul %0, %|r0, %0\n\ ++ adds %|r1, %|r2, %|r1\n\ ++ addcs %0, %0, #65536\n\ ++ adds %1, %1, %|r1, lsl #16\n\ + adc %0, %0, %|r1, lsr #16" \ + : "=&r" ((USItype)(xh)), \ + "=r" ((USItype)(xl)) \ +@@ -243,7 +243,7 @@ extern UDItype __udiv_qrnnd (); + + #if defined (__gmicro__) && W_TYPE_SIZE == 32 + #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ +- __asm__ ("add.w %5,%1 ++ __asm__ ("add.w %5,%1\n\ + addx %3,%0" \ + : "=g" ((USItype)(sh)), \ + "=&g" ((USItype)(sl)) \ +@@ -252,7 +252,7 @@ extern UDItype __udiv_qrnnd (); + "%1" ((USItype)(al)), \ + "g" ((USItype)(bl))) + #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ +- __asm__ ("sub.w %5,%1 ++ __asm__ ("sub.w %5,%1\n\ + subx %3,%0" \ + : "=g" ((USItype)(sh)), \ + "=&g" ((USItype)(sl)) \ +@@ -282,7 +282,7 @@ extern UDItype __udiv_qrnnd (); + + #if defined (__hppa) && W_TYPE_SIZE == 32 + #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ +- __asm__ ("add %4,%5,%1 ++ __asm__ ("add %4,%5,%1\n\ + addc %2,%3,%0" \ + : "=r" ((USItype)(sh)), \ + "=&r" ((USItype)(sl)) \ +@@ -291,7 +291,7 @@ extern UDItype __udiv_qrnnd (); + "%rM" ((USItype)(al)), \ + "rM" ((USItype)(bl))) + #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ +- __asm__ ("sub %4,%5,%1 ++ __asm__ ("sub %4,%5,%1\n\ + subb %2,%3,%0" \ + : "=r" ((USItype)(sh)), \ + "=&r" ((USItype)(sl)) \ +@@ -330,21 +330,21 @@ extern USItype __udiv_qrnnd (); + do { \ + USItype __tmp; \ + __asm__ ( \ +- "ldi 1,%0 +- extru,= %1,15,16,%%r0 ; Bits 31..16 zero? +- extru,tr %1,15,16,%1 ; No. Shift down, skip add. +- ldo 16(%0),%0 ; Yes. Perform add. +- extru,= %1,23,8,%%r0 ; Bits 15..8 zero? +- extru,tr %1,23,8,%1 ; No. Shift down, skip add. +- ldo 8(%0),%0 ; Yes. Perform add. +- extru,= %1,27,4,%%r0 ; Bits 7..4 zero? +- extru,tr %1,27,4,%1 ; No. Shift down, skip add. +- ldo 4(%0),%0 ; Yes. Perform add. +- extru,= %1,29,2,%%r0 ; Bits 3..2 zero? +- extru,tr %1,29,2,%1 ; No. Shift down, skip add. +- ldo 2(%0),%0 ; Yes. Perform add. +- extru %1,30,1,%1 ; Extract bit 1. +- sub %0,%1,%0 ; Subtract it. ++ "ldi 1,%0\n\ ++ extru,= %1,15,16,%%r0 ; Bits 31..16 zero?\n\ ++ extru,tr %1,15,16,%1 ; No. Shift down, skip add.\n\ ++ ldo 16(%0),%0 ; Yes. Perform add.\n\ ++ extru,= %1,23,8,%%r0 ; Bits 15..8 zero?\n\ ++ extru,tr %1,23,8,%1 ; No. Shift down, skip add.\n\ ++ ldo 8(%0),%0 ; Yes. Perform add.\n\ ++ extru,= %1,27,4,%%r0 ; Bits 7..4 zero?\n\ ++ extru,tr %1,27,4,%1 ; No. Shift down, skip add.\n\ ++ ldo 4(%0),%0 ; Yes. Perform add.\n\ ++ extru,= %1,29,2,%%r0 ; Bits 3..2 zero?\n\ ++ extru,tr %1,29,2,%1 ; No. Shift down, skip add.\n\ ++ ldo 2(%0),%0 ; Yes. Perform add.\n\ ++ extru %1,30,1,%1 ; Extract bit 1.\n\ ++ sub %0,%1,%0 ; Subtract it.\n\ + " : "=r" (count), "=r" (__tmp) : "1" (x)); \ + } while (0) + #endif /* hppa */ +@@ -392,7 +392,7 @@ extern USItype __udiv_qrnnd (); + + #if (defined (__i386__) || defined (__i486__)) && W_TYPE_SIZE == 32 + #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ +- __asm__ ("addl %5,%1 ++ __asm__ ("addl %5,%1\n\ + adcl %3,%0" \ + : "=r" ((USItype)(sh)), \ + "=&r" ((USItype)(sl)) \ +@@ -401,7 +401,7 @@ extern USItype __udiv_qrnnd (); + "%1" ((USItype)(al)), \ + "g" ((USItype)(bl))) + #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ +- __asm__ ("subl %5,%1 ++ __asm__ ("subl %5,%1\n\ + sbbl %3,%0" \ + : "=r" ((USItype)(sh)), \ + "=&r" ((USItype)(sl)) \ +@@ -514,7 +514,7 @@ extern USItype __udiv_qrnnd (); + + #if (defined (__mc68000__) || defined (__mc68020__) || defined (__NeXT__) || defined(mc68020)) && W_TYPE_SIZE == 32 + #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ +- __asm__ ("add%.l %5,%1 ++ __asm__ ("add%.l %5,%1\n\ + addx%.l %3,%0" \ + : "=d" ((USItype)(sh)), \ + "=&d" ((USItype)(sl)) \ +@@ -523,7 +523,7 @@ extern USItype __udiv_qrnnd (); + "%1" ((USItype)(al)), \ + "g" ((USItype)(bl))) + #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ +- __asm__ ("sub%.l %5,%1 ++ __asm__ ("sub%.l %5,%1\n\ + subx%.l %3,%0" \ + : "=d" ((USItype)(sh)), \ + "=&d" ((USItype)(sl)) \ +@@ -562,27 +562,27 @@ extern USItype __udiv_qrnnd (); + #else /* not mc68020 */ + #define umul_ppmm(xh, xl, a, b) \ + do { USItype __umul_tmp1, __umul_tmp2; \ +- __asm__ ("| Inlined umul_ppmm +- move%.l %5,%3 +- move%.l %2,%0 +- move%.w %3,%1 +- swap %3 +- swap %0 +- mulu %2,%1 +- mulu %3,%0 +- mulu %2,%3 +- swap %2 +- mulu %5,%2 +- add%.l %3,%2 +- jcc 1f +- add%.l %#0x10000,%0 +-1: move%.l %2,%3 +- clr%.w %2 +- swap %2 +- swap %3 +- clr%.w %3 +- add%.l %3,%1 +- addx%.l %2,%0 ++ __asm__ ("| Inlined umul_ppmm\n\ ++ move%.l %5,%3\n\ ++ move%.l %2,%0\n\ ++ move%.w %3,%1\n\ ++ swap %3\n\ ++ swap %0\n\ ++ mulu %2,%1\n\ ++ mulu %3,%0\n\ ++ mulu %2,%3\n\ ++ swap %2\n\ ++ mulu %5,%2\n\ ++ add%.l %3,%2\n\ ++ jcc 1f\n\ ++ add%.l %#0x10000,%0\n\ ++1: move%.l %2,%3\n\ ++ clr%.w %2\n\ ++ swap %2\n\ ++ swap %3\n\ ++ clr%.w %3\n\ ++ add%.l %3,%1\n\ ++ addx%.l %2,%0\n\ + | End inlined umul_ppmm" \ + : "=&d" ((USItype)(xh)), "=&d" ((USItype)(xl)), \ + "=d" (__umul_tmp1), "=&d" (__umul_tmp2) \ +@@ -595,7 +595,7 @@ extern USItype __udiv_qrnnd (); + + #if defined (__m88000__) && W_TYPE_SIZE == 32 + #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ +- __asm__ ("addu.co %1,%r4,%r5 ++ __asm__ ("addu.co %1,%r4,%r5\n\ + addu.ci %0,%r2,%r3" \ + : "=r" ((USItype)(sh)), \ + "=&r" ((USItype)(sl)) \ +@@ -604,7 +604,7 @@ extern USItype __udiv_qrnnd (); + "%rJ" ((USItype)(al)), \ + "rJ" ((USItype)(bl))) + #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ +- __asm__ ("subu.co %1,%r4,%r5 ++ __asm__ ("subu.co %1,%r4,%r5\n\ + subu.ci %0,%r2,%r3" \ + : "=r" ((USItype)(sh)), \ + "=&r" ((USItype)(sl)) \ +@@ -663,8 +663,8 @@ extern USItype __udiv_qrnnd (); + "d" ((USItype)(v))) + #else + #define umul_ppmm(w1, w0, u, v) \ +- __asm__ ("multu %2,%3 +- mflo %0 ++ __asm__ ("multu %2,%3\n\ ++ mflo %0\n\ + mfhi %1" \ + : "=d" ((USItype)(w0)), \ + "=d" ((USItype)(w1)) \ +@@ -685,8 +685,8 @@ extern USItype __udiv_qrnnd (); + "d" ((UDItype)(v))) + #else + #define umul_ppmm(w1, w0, u, v) \ +- __asm__ ("dmultu %2,%3 +- mflo %0 ++ __asm__ ("dmultu %2,%3\n\ ++ mflo %0\n\ + mfhi %1" \ + : "=d" ((UDItype)(w0)), \ + "=d" ((UDItype)(w1)) \ +@@ -855,7 +855,7 @@ extern USItype __udiv_qrnnd (); + + #if defined (__pyr__) && W_TYPE_SIZE == 32 + #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ +- __asm__ ("addw %5,%1 ++ __asm__ ("addw %5,%1\n\ + addwc %3,%0" \ + : "=r" ((USItype)(sh)), \ + "=&r" ((USItype)(sl)) \ +@@ -864,7 +864,7 @@ extern USItype __udiv_qrnnd (); + "%1" ((USItype)(al)), \ + "g" ((USItype)(bl))) + #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ +- __asm__ ("subw %5,%1 ++ __asm__ ("subw %5,%1\n\ + subwb %3,%0" \ + : "=r" ((USItype)(sh)), \ + "=&r" ((USItype)(sl)) \ +@@ -877,7 +877,7 @@ extern USItype __udiv_qrnnd (); + ({union {UDItype __ll; \ + struct {USItype __h, __l;} __i; \ + } __xx; \ +- __asm__ ("movw %1,%R0 ++ __asm__ ("movw %1,%R0\n\ + uemul %2,%0" \ + : "=&r" (__xx.__ll) \ + : "g" ((USItype) (u)), \ +@@ -887,7 +887,7 @@ extern USItype __udiv_qrnnd (); + + #if defined (__ibm032__) /* RT/ROMP */ && W_TYPE_SIZE == 32 + #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ +- __asm__ ("a %1,%5 ++ __asm__ ("a %1,%5\n\ + ae %0,%3" \ + : "=r" ((USItype)(sh)), \ + "=&r" ((USItype)(sl)) \ +@@ -896,7 +896,7 @@ extern USItype __udiv_qrnnd (); + "%1" ((USItype)(al)), \ + "r" ((USItype)(bl))) + #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ +- __asm__ ("s %1,%5 ++ __asm__ ("s %1,%5\n\ + se %0,%3" \ + : "=r" ((USItype)(sh)), \ + "=&r" ((USItype)(sl)) \ +@@ -908,25 +908,25 @@ extern USItype __udiv_qrnnd (); + do { \ + USItype __m0 = (m0), __m1 = (m1); \ + __asm__ ( \ +- "s r2,r2 +- mts r10,%2 +- m r2,%3 +- m r2,%3 +- m r2,%3 +- m r2,%3 +- m r2,%3 +- m r2,%3 +- m r2,%3 +- m r2,%3 +- m r2,%3 +- m r2,%3 +- m r2,%3 +- m r2,%3 +- m r2,%3 +- m r2,%3 +- m r2,%3 +- m r2,%3 +- cas %0,r2,r0 ++ "s r2,r2\n\ ++ mts r10,%2\n\ ++ m r2,%3\n\ ++ m r2,%3\n\ ++ m r2,%3\n\ ++ m r2,%3\n\ ++ m r2,%3\n\ ++ m r2,%3\n\ ++ m r2,%3\n\ ++ m r2,%3\n\ ++ m r2,%3\n\ ++ m r2,%3\n\ ++ m r2,%3\n\ ++ m r2,%3\n\ ++ m r2,%3\n\ ++ m r2,%3\n\ ++ m r2,%3\n\ ++ m r2,%3\n\ ++ cas %0,r2,r0\n\ + mfs r10,%1" \ + : "=r" ((USItype)(ph)), \ + "=r" ((USItype)(pl)) \ +@@ -957,8 +957,8 @@ extern USItype __udiv_qrnnd (); + #if defined (__sh2__) && W_TYPE_SIZE == 32 + #define umul_ppmm(w1, w0, u, v) \ + __asm__ ( \ +- "dmulu.l %2,%3 +- sts macl,%1 ++ "dmulu.l %2,%3\n\ ++ sts macl,%1\n\ + sts mach,%0" \ + : "=r" ((USItype)(w1)), \ + "=r" ((USItype)(w0)) \ +@@ -970,7 +970,7 @@ extern USItype __udiv_qrnnd (); + + #if defined (__sparc__) && W_TYPE_SIZE == 32 + #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ +- __asm__ ("addcc %r4,%5,%1 ++ __asm__ ("addcc %r4,%5,%1\n\ + addx %r2,%3,%0" \ + : "=r" ((USItype)(sh)), \ + "=&r" ((USItype)(sl)) \ +@@ -980,7 +980,7 @@ extern USItype __udiv_qrnnd (); + "rI" ((USItype)(bl)) \ + __CLOBBER_CC) + #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ +- __asm__ ("subcc %r4,%5,%1 ++ __asm__ ("subcc %r4,%5,%1\n\ + subx %r2,%3,%0" \ + : "=r" ((USItype)(sh)), \ + "=&r" ((USItype)(sl)) \ +@@ -1027,44 +1027,44 @@ extern USItype __udiv_qrnnd (); + "r" ((USItype)(v))) + #define UMUL_TIME 5 + #define udiv_qrnnd(q, r, n1, n0, d) \ +- __asm__ ("! Inlined udiv_qrnnd +- wr %%g0,%2,%%y ! Not a delayed write for sparclite +- tst %%g0 +- divscc %3,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%%g1 +- divscc %%g1,%4,%0 +- rd %%y,%1 +- bl,a 1f +- add %1,%4,%1 ++ __asm__ ("! Inlined udiv_qrnnd\n\ ++ wr %%g0,%2,%%y ! Not a delayed write for sparclite\n\ ++ tst %%g0\n\ ++ divscc %3,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%%g1\n\ ++ divscc %%g1,%4,%0\n\ ++ rd %%y,%1\n\ ++ bl,a 1f\n\ ++ add %1,%4,%1\n\ + 1: ! End of inline udiv_qrnnd" \ + : "=r" ((USItype)(q)), \ + "=r" ((USItype)(r)) \ +@@ -1085,45 +1085,45 @@ extern USItype __udiv_qrnnd (); + /* Default to sparc v7 versions of umul_ppmm and udiv_qrnnd. */ + #ifndef umul_ppmm + #define umul_ppmm(w1, w0, u, v) \ +- __asm__ ("! Inlined umul_ppmm +- wr %%g0,%2,%%y ! SPARC has 0-3 delay insn after a wr +- sra %3,31,%%g2 ! Don't move this insn +- and %2,%%g2,%%g2 ! Don't move this insn +- andcc %%g0,0,%%g1 ! Don't move this insn +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,%3,%%g1 +- mulscc %%g1,0,%%g1 +- add %%g1,%%g2,%0 ++ __asm__ ("! Inlined umul_ppmm\n\ ++ wr %%g0,%2,%%y ! SPARC has 0-3 delay insn after a wr\n\ ++ sra %3,31,%%g2 ! Don't move this insn\n\ ++ and %2,%%g2,%%g2 ! Don't move this insn\n\ ++ andcc %%g0,0,%%g1 ! Don't move this insn\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,%3,%%g1\n\ ++ mulscc %%g1,0,%%g1\n\ ++ add %%g1,%%g2,%0\n\ + rd %%y,%1" \ + : "=r" ((USItype)(w1)), \ + "=r" ((USItype)(w0)) \ +@@ -1147,7 +1147,7 @@ extern USItype __udiv_qrnnd (); + + #if defined (__vax__) && W_TYPE_SIZE == 32 + #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ +- __asm__ ("addl2 %5,%1 ++ __asm__ ("addl2 %5,%1\n\ + adwc %3,%0" \ + : "=g" ((USItype)(sh)), \ + "=&g" ((USItype)(sl)) \ +@@ -1156,7 +1156,7 @@ extern USItype __udiv_qrnnd (); + "%1" ((USItype)(al)), \ + "g" ((USItype)(bl))) + #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ +- __asm__ ("subl2 %5,%1 ++ __asm__ ("subl2 %5,%1\n\ + sbwc %3,%0" \ + : "=g" ((USItype)(sh)), \ + "=&g" ((USItype)(sl)) \ +diff --git a/ghc/lib/std/CPUTime.lhs b/ghc/lib/std/CPUTime.lhs +--- a/ghc/lib/std/CPUTime.lhs ++++ b/ghc/lib/std/CPUTime.lhs +@@ -9,6 +9,6 @@ + module CPUTime + ( + getCPUTime, -- :: IO Integer +- cpuTimePrecision -- ::Integer ++ cpuTimePrecision -- :: Integer + ) where + \end{code} + \ No newline at end of file -- cgit v1.3 From ecea1a642ff5ff9455179fdf0963d9445d993fc8 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sun, 6 Feb 2022 23:42:10 +0100 Subject: gnu: Add nhc98. * gnu/packages/haskell.scm (nhc98): New variable. --- gnu/packages/haskell.scm | 104 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 104 insertions(+) diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 020011d955..647b078dfd 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -50,6 +50,7 @@ #:use-module (gnu packages elf) #:use-module (gnu packages file) #:use-module (gnu packages gawk) + #:use-module (gnu packages gcc) #:use-module (gnu packages ghostscript) #:use-module (gnu packages libffi) #:use-module (gnu packages linux) @@ -62,6 +63,7 @@ #:use-module (guix build-system gnu) #:use-module (guix download) #:use-module (guix git-download) + #:use-module (guix gexp) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix utils) @@ -107,6 +109,108 @@ top of CLISP.") (license license:bsd-4)))) +;; This package contains lots of generated .hc files containing C code to +;; bootstrap the compiler without a Haskell compiler. The included .hc files +;; cover not just the compiler sources but also all Haskell libraries. +(define-public nhc98 + (package + (name "nhc98") + (version "1.22") + (source + (origin + (method url-fetch) + (uri (string-append "https://www.haskell.org/nhc98/nhc98src-" + version ".tar.gz")) + (sha256 + (base32 + "0fkgxgsd2iqxvwcgnad1702kradwlbcal6rxdrgb22vd6dnc3i8l")))) + (build-system gnu-build-system) + (supported-systems '("i686-linux" "x86_64-linux")) + (arguments + (list + #:tests? #false ;there is no test target + #:system "i686-linux" + #:implicit-inputs? #false + #:parallel-build? #false ;not supported + #:strip-binaries? #false ;doesn't work + #:make-flags '(list "all-gcc") + #:phases + #~(modify-phases %standard-phases + (replace 'configure + (lambda _ + (setenv "SHELL" (which "sh")) + (setenv "CPATH" (string-append + (getcwd) "/src/runtime/Kernel:" + (or (getenv "C_INCLUDE_PATH") ""))) + (substitute* "configure" + (("echo '#!/bin/sh'") + (string-append "echo '#!" (which "sh") "'"))) + (with-fluids ((%default-port-encoding #f)) + (substitute* '("script/greencard.inst" + "script/harch.inst" + "script/hi.inst" + "script/hmake-config.inst" + ;; TODO: can't fix this with substitute* + ;"script/hmake.inst" + "script/hood.inst" + "script/hsc2hs.inst" + "script/nhc98-pkg.inst" + "script/nhc98.inst") + (("^MACHINE=.*") "MACHINE=ix86-Linux\n"))) + (invoke "sh" "configure" + (string-append "--prefix=" #$output) + ;; Remove -m32 from compiler/linker invocation + "--ccoption=" + "--ldoption="))) + (replace 'install + (lambda _ + (invoke "sh" "configure" + (string-append "--prefix=" #$output) + ;; Remove -m32 from compiler/linker invocation + "--ccoption=" + "--ldoption=" + "--install")))))) + (native-inputs + `(("findutils" ,findutils) + ("tar" ,tar) + ("bzip2" ,bzip2) + ("gzip" ,gzip) + ("xz" ,xz) + ("diffutils" ,diffutils) + ("file" ,file) + ("gawk" ,gawk) + + ("make" ,gnu-make) + ("sed" ,sed) + ("grep" ,grep) + ("coreutils" ,coreutils) + ("bash" ,bash-minimal) + + ("libc" ,glibc-2.2.5) + ("gcc-wrapper" + ,(module-ref (resolve-interface + '(gnu packages commencement)) + 'gcc-2.95-wrapper)) + ("gcc" + ,(module-ref (resolve-interface + '(gnu packages commencement)) + 'gcc-mesboot0)) + ("binutils" + ,(module-ref (resolve-interface + '(gnu packages commencement)) + 'binutils-mesboot)) + ("kernel-headers" ,linux-libre-headers))) + (home-page "https://www.haskell.org/nhc98") + (synopsis "Nearly a Haskell Compiler") + (description + "nhc98 is a small, standards-compliant compiler for Haskell 98, the lazy +functional programming language. It aims to produce small executables that +run in small amounts of memory. It produces medium-fast code, and compilation +is itself quite fast.") + (license + (license:non-copyleft + "https://www.haskell.org/nhc98/copyright.html")))) + (define-public ghc-4 (package (name "ghc") -- cgit v1.3 From 579e9e9509f45fdc8543323b3c9f662b53dbfc6d Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sat, 5 Feb 2022 22:55:20 +0100 Subject: gnu: Add drc. * gnu/packages/audio.scm (drc): New variable. --- gnu/packages/audio.scm | 36 +++++++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 867011f473..a8ecd32e4c 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus +;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 Ricardo Wurmus ;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer ;;; Copyright © 2015 Andreas Enge ;;; Copyright © 2015 Alex Kost @@ -4096,6 +4096,40 @@ with support for HD extensions.") (home-page "https://github.com/foo86/dcadec") (license license:lgpl2.1+))) +(define-public drc + (package + (name "drc") + (version "3.2.3") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/drc-fir/drc-fir/" + version "/drc-" version ".tar.gz")) + (sha256 + (base32 + "08ljj4776pjx119zjmfqa8w56bf7x0m7spmi27yk1m455bmiglrj")))) + (build-system gnu-build-system) + (arguments + (list + #:tests? #false ;there are none + #:make-flags + #~(list (string-append "INSTALL_PREFIX=" #$output) + "-C" "source") + #:phases + '(modify-phases %standard-phases + (delete 'configure)))) + (inputs (list fftw)) + (home-page "http://drc-fir.sourceforge.net/") + (synopsis "Digital room correction") + (description + "DRC is a program used to generate correction filters for acoustic +compensation of HiFi and audio systems in general, including listening room +compensation. DRC generates just the FIR correction filters, which can be +used with a real time or offline convolver to provide real time or offline +correction. DRC doesn't provide convolution features, and provides only some +simplified, although really accurate, measuring tools.") + (license license:gpl2+))) + (define-public bs1770gain (package (name "bs1770gain") -- cgit v1.3 From 4396fef04717eebb061b2c808087ca638f87a826 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 7 Feb 2022 15:19:49 +0100 Subject: gnu: mumi: Update to 0.0.1-7.f5232c4. * gnu/packages/mail.scm (mumi): Update to 0.0.1-7.f5232c4. [inputs]: Add guile-kolam. --- gnu/packages/mail.scm | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 70d6d03a75..003f5f46bb 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -27,7 +27,7 @@ ;;; Copyright © 2018, 2019, 2020, 2021 Pierre Langlois ;;; Copyright © 2018 Alex Vong ;;; Copyright © 2018 Gábor Boskovits -;;; Copyright © 2018, 2019, 2020, 2021 Ricardo Wurmus +;;; Copyright © 2018, 2019, 2020, 2021, 2022 Ricardo Wurmus ;;; Copyright © 2019, 2020, 2021 Tanguy Le Carrour ;;; Copyright © 2020 Vincent Legoll ;;; Copyright © 2020 Justus Winter @@ -3900,8 +3900,8 @@ It is a replacement for the @command{urlview} program.") (license license:gpl2+))) (define-public mumi - (let ((commit "8a45281801ade7524dbdee423c28b326051719de") - (revision "6")) + (let ((commit "f5232c49fe8a3b127c96f7b502775f16aebf3033") + (revision "7")) (package (name "mumi") (version (git-version "0.0.1" revision commit)) @@ -3913,7 +3913,7 @@ It is a replacement for the @command{urlview} program.") (file-name (git-file-name name version)) (sha256 (base32 - "0p1i66j721y5hwbdy97kv4gw892nx7xrdfjrs12fn90cwkl611mp")))) + "1dc4m7l9mmi7lm0cfmyf5yg6bkpirsvmfq347sf1ch1svg5r7y9n")))) (build-system gnu-build-system) (arguments `(#:modules ((guix build gnu-build-system) @@ -3941,16 +3941,17 @@ It is a replacement for the @command{urlview} program.") `("GUILE_LOAD_COMPILED_PATH" ":" prefix (,go ,(getenv "GUILE_LOAD_COMPILED_PATH")))))))))) (inputs - `(("guile-email" ,guile-email-latest) - ("guile-fibers" ,guile-fibers) - ("guile-gcrypt" ,guile-gcrypt) - ("guile-json" ,guile-json-3) - ("guile-redis" ,guile-redis) - ("guile-syntax-highlight" ,guile-syntax-highlight) - ("guile-webutils" ,guile-webutils) - ("guile-xapian" ,guile-xapian) - ("guile" ,guile-3.0) - ("mailutils" ,mailutils))) + (list guile-email-latest + guile-fibers + guile-gcrypt + guile-json-3 + guile-kolam + guile-redis + guile-syntax-highlight + guile-webutils + guile-xapian + guile-3.0 + mailutils)) (native-inputs (list autoconf automake pkg-config)) (home-page "https://git.elephly.net/software/mumi.git") -- cgit v1.3 From 1dbbe8133373a328afe435f747c7acba71d266a9 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 18:09:37 +0100 Subject: gnu: fsearch: Update to 0.1.2. * gnu/packages/search.scm (fsearch): Update to 0.1.2. --- gnu/packages/search.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/search.scm b/gnu/packages/search.scm index ea1c555201..7e3d9b1cbd 100644 --- a/gnu/packages/search.scm +++ b/gnu/packages/search.scm @@ -299,7 +299,7 @@ for parsing HTML files.") (define-public fsearch (package (name "fsearch") - (version "0.1.1") + (version "0.1.2") (source (origin (method git-fetch) @@ -308,7 +308,7 @@ for parsing HTML files.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "0vfwnx83zs0jymmzjww1k597sj3wvc9xq0nbslwci58rjpk3d0lg")))) + (base32 "1qbayssdj5pgc4s3ncf7snncp003g8yklirzj1bjc2kxp5y0igv7")))) (build-system meson-build-system) (native-inputs (list autoconf -- cgit v1.3 From b75b2fc3f8ba53f562178030dda4d8d70dea4958 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 18:12:36 +0100 Subject: gnu: gimagereader: Update to 3.4.0. * gnu/packages/ocr.scm (gimagereader): Update to 3.4.0. --- gnu/packages/ocr.scm | 21 ++++----------------- 1 file changed, 4 insertions(+), 17 deletions(-) diff --git a/gnu/packages/ocr.scm b/gnu/packages/ocr.scm index de321bb53f..7f12907927 100644 --- a/gnu/packages/ocr.scm +++ b/gnu/packages/ocr.scm @@ -4,7 +4,7 @@ ;;; Copyright © 2019 Tobias Geerinckx-Rice ;;; Copyright © 2019 Alex Vong ;;; Copyright © 2021 Andy Tai -;;; Copyright © 2021 Nicolas Goaziou +;;; Copyright © 2021, 2022 Nicolas Goaziou ;;; ;;; This file is part of GNU Guix. ;;; @@ -142,7 +142,7 @@ monospaced or proportional.") (define-public gimagereader (package (name "gimagereader") - (version "3.3.1") + (version "3.4.0") (source (origin (method url-fetch) @@ -151,24 +151,11 @@ monospaced or proportional.") "/download/v" version "/" "gimagereader-" version ".tar.xz")) (sha256 - (base32 "1pghffb55k3wq33nbn9fi0lmjbldpmvqs2msnvss8bxz1k1ck23n")))) + (base32 "09glxh7b4ivrd4samm67b8k2p0aljiagr83wb8nvy5ps2a9gwp5m")))) (build-system cmake-build-system) (arguments `(#:tests? #f ;no test - #:configure-flags (list "-DENABLE_VERSIONCHECK=0") - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'fix-build - ;; XXX: Prevent compilation error: "incomplete type ‘QUrl’ used in - ;; nested name specifier". Fixed upstream as - ;; 6209e25dab20b233e399ff36fabe4252db0f9e44. It can be removed in - ;; release 3.3.2+. - (lambda _ - (with-directory-excursion "qt/src/hocr" - (substitute* '("HOCROdtExporter.cc" "HOCRTextExporter.cc") - (("#include \n" all) - (string-append all "#include \n")))) - #t))))) + #:configure-flags (list "-DENABLE_VERSIONCHECK=0"))) (native-inputs `(("gettext" ,gettext-minimal) ("intltool" ,intltool) -- cgit v1.3 From b73d8f07b3d18862984cc5ee42c44d0fb1399fc3 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 18:13:36 +0100 Subject: gnu: gimagereader: Remove input labels. * gnu/packages/ocr.scm (gimagereader)[native-inputs, inputs]: Remove labels. --- gnu/packages/ocr.scm | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/gnu/packages/ocr.scm b/gnu/packages/ocr.scm index 7f12907927..73f63f704b 100644 --- a/gnu/packages/ocr.scm +++ b/gnu/packages/ocr.scm @@ -157,20 +157,18 @@ monospaced or proportional.") `(#:tests? #f ;no test #:configure-flags (list "-DENABLE_VERSIONCHECK=0"))) (native-inputs - `(("gettext" ,gettext-minimal) - ("intltool" ,intltool) - ("pkg-config" ,pkg-config))) + (list gettext-minimal intltool pkg-config)) (inputs - `(("enchant" ,enchant) - ("djvulibre" ,djvulibre) - ("leptonica" ,leptonica) - ("podofo" ,podofo) - ("poppler-qt5" ,poppler-qt5) - ("sane-backends" ,sane-backends) - ("qtbase" ,qtbase-5) - ("qtspell" ,qtspell) - ("quazip" ,quazip-0) - ("tesseract" ,tesseract-ocr))) + (list enchant + djvulibre + leptonica + podofo + poppler-qt5 + sane-backends + qtbase-5 + qtspell + quazip-0 + tesseract-ocr)) (home-page "https://github.com/manisandro/gImageReader") (synopsis "Qt front-end to tesseract-ocr") (description -- cgit v1.3 From fda218009b9d80e11bb886a2529e9dde90e88e9c Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 18:14:22 +0100 Subject: gnu: gimagereader: Use G-expressions. * gnu/packages/ocr.scm (gimagereader)[arguments]<#:configure-flags>: Use G-expression. --- gnu/packages/ocr.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocr.scm b/gnu/packages/ocr.scm index 73f63f704b..190bed2725 100644 --- a/gnu/packages/ocr.scm +++ b/gnu/packages/ocr.scm @@ -25,6 +25,7 @@ #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) + #:use-module (guix gexp) #:use-module (guix git-download) #:use-module (guix build-system cmake) #:use-module (guix build-system gnu) @@ -154,8 +155,9 @@ monospaced or proportional.") (base32 "09glxh7b4ivrd4samm67b8k2p0aljiagr83wb8nvy5ps2a9gwp5m")))) (build-system cmake-build-system) (arguments - `(#:tests? #f ;no test - #:configure-flags (list "-DENABLE_VERSIONCHECK=0"))) + (list + #:tests? #f ;no test + #:configure-flags #~(list "-DENABLE_VERSIONCHECK=0"))) (native-inputs (list gettext-minimal intltool pkg-config)) (inputs -- cgit v1.3 From 326e08bf0f55409f040612001f73a2cc4091c159 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Mon, 7 Feb 2022 17:47:23 +0100 Subject: services: zabbix-front-end: Restore backwards compatibility. Commit e301f1a8ed11f9eacb2b7f525a7446dc00621a8b removed the NGINX argument entirely, but users may rely on and override it. Reported by rekado on #guix. * gnu/services/monitoring.scm (%zabbix-front-end-nginx-configuration): Restore exported variable. (zabbix-front-end-nginx-extension): New procedure. (zabbix-front-end-configuration): Remove FASTCGI-PARAMS field. Restore NGINX field, but default to the empty list. (zabbix-front-end-service-type): Extend NGINX-SERVICE-TYPE by ZABBIX-FRONT-END-NGINX-EXTENSION. * doc/guix.texi (Monitoring Services): Regenerate documentation. --- doc/guix.texi | 19 ++++++++++--------- gnu/services/monitoring.scm | 38 ++++++++++++++++++++++++++++++++------ 2 files changed, 42 insertions(+), 15 deletions(-) diff --git a/doc/guix.texi b/doc/guix.texi index 9d3548aac7..2a9ef75dfd 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -25804,31 +25804,32 @@ Available @code{zabbix-front-end-configuration} fields are: @item @code{zabbix-server} (default: @code{zabbix-server}) (type: file-like) The Zabbix server package to use. -@item @code{fastcgi-params} (type: list) -List of FastCGI parameter pairs that will be included in the NGINX -configuration. +@item @code{nginx} (default: @code{()}) (type: list) +List of @pxref{NGINX,@code{nginx-server-configuration}} blocks for the +Zabbix front-end. When empty, a default that listens on port 80 is +used. -@item @code{db-host} (default: @code{\"localhost\"}) (type: string) +@item @code{db-host} (default: @code{"localhost"}) (type: string) Database host name. @item @code{db-port} (default: @code{5432}) (type: number) Database port. -@item @code{db-name} (default: @code{\"zabbix\"}) (type: string) +@item @code{db-name} (default: @code{"zabbix"}) (type: string) Database name. -@item @code{db-user} (default: @code{\"zabbix\"}) (type: string) +@item @code{db-user} (default: @code{"zabbix"}) (type: string) Database user. -@item @code{db-password} (default: @code{\"\"}) (type: string) +@item @code{db-password} (default: @code{""}) (type: string) Database password. Please, use @code{db-secret-file} instead. -@item @code{db-secret-file} (default: @code{\"\"}) (type: string) +@item @code{db-secret-file} (default: @code{""}) (type: string) Secret file which will be appended to @file{zabbix.conf.php} file. This file contains credentials for use by Zabbix front-end. You are expected to create it manually. -@item @code{zabbix-host} (default: @code{\"localhost\"}) (type: string) +@item @code{zabbix-host} (default: @code{"localhost"}) (type: string) Zabbix server hostname. @item @code{zabbix-port} (default: @code{10051}) (type: number) diff --git a/gnu/services/monitoring.scm b/gnu/services/monitoring.scm index fb893d87cd..fecb60a04f 100644 --- a/gnu/services/monitoring.scm +++ b/gnu/services/monitoring.scm @@ -50,7 +50,8 @@ zabbix-agent-configuration zabbix-agent-service-type zabbix-front-end-configuration - zabbix-front-end-service-type)) + zabbix-front-end-service-type + %zabbix-front-end-configuration-nginx)) ;;; @@ -574,14 +575,39 @@ configuration file.")) fastcgi-params)))))))))) (listen '("80"))))))) +(define %zabbix-front-end-nginx-configuration + (nginx-server-configuration + (root #~(string-append #$zabbix-server:front-end "/share/zabbix/php")) + (index '("index.php")) + (locations + (let ((php-location (nginx-php-location))) + (list (nginx-location-configuration + (inherit php-location) + (body (append (nginx-location-configuration-body php-location) + (list " +fastcgi_param PHP_VALUE \"post_max_size = 16M + max_execution_time = 300\"; +"))))))) + (listen '("80")))) + +(define (zabbix-front-end-nginx-extension config) + (match config + (($ _ server nginx) + (if (null? nginx) + (list + (nginx-server-configuration + (inherit %zabbix-front-end-nginx-configuration) + (root #~(string-append #$server:front-end "/share/zabbix/php")))) + nginx)))) + (define-configuration zabbix-front-end-configuration (zabbix-server (file-like zabbix-server) "The Zabbix server package to use.") - (fastcgi-params - (list '(("post_max_size" . "16M") - ("max_execution_time" . "300"))) - "List of FastCGI parameter pairs that will be included in the NGINX configuration.") + (nginx + (list '()) + "List of @pxref{NGINX, @code{nginx-server-configuration}} blocks for the +Zabbix front-end. When empty, a default that listens on port 80 is used.") (db-host (string "localhost") "Database host name.") @@ -686,7 +712,7 @@ $IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG; (list (service-extension activation-service-type zabbix-front-end-activation) (service-extension nginx-service-type - zabbix-front-end-nginx-configuration) + zabbix-front-end-nginx-extension) ;; Make sure php-fpm is instantiated. (service-extension php-fpm-service-type (const #t)))) -- cgit v1.3 From 43bc85f44472c4225fe9c761438d4523b63029e4 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Mon, 7 Feb 2022 18:05:53 +0100 Subject: doc: Regenerate Zabbix server and agent configuration. ...to make them in line with the newly generated front-end documentation. * doc/guix.texi (Monitoring Services): Regenerate zabbix-server-configuration and zabbix-agent-configuration. --- doc/guix.texi | 175 +++++++++++++++------------------------------------------- 1 file changed, 43 insertions(+), 132 deletions(-) diff --git a/doc/guix.texi b/doc/guix.texi index 2a9ef75dfd..583ba1c61d 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -25564,125 +25564,72 @@ and disk space consumption: @c %start of fragment +@deftp {Data Type} zabbix-server-configuration Available @code{zabbix-server-configuration} fields are: -@deftypevr {@code{zabbix-server-configuration} parameter} package zabbix-server +@table @asis +@item @code{zabbix-server} (default: @code{zabbix-server}) (type: file-like) The zabbix-server package. -@end deftypevr - -@deftypevr {@code{zabbix-server-configuration} parameter} string user +@item @code{user} (default: @code{"zabbix"}) (type: string) User who will run the Zabbix server. -Defaults to @samp{"zabbix"}. - -@end deftypevr - -@deftypevr {@code{zabbix-server-configuration} parameter} group group +@item @code{group} (default: @code{"zabbix"}) (type: group) Group who will run the Zabbix server. -Defaults to @samp{"zabbix"}. - -@end deftypevr - -@deftypevr {@code{zabbix-server-configuration} parameter} string db-host +@item @code{db-host} (default: @code{"127.0.0.1"}) (type: string) Database host name. -Defaults to @samp{"127.0.0.1"}. - -@end deftypevr - -@deftypevr {@code{zabbix-server-configuration} parameter} string db-name +@item @code{db-name} (default: @code{"zabbix"}) (type: string) Database name. -Defaults to @samp{"zabbix"}. - -@end deftypevr - -@deftypevr {@code{zabbix-server-configuration} parameter} string db-user +@item @code{db-user} (default: @code{"zabbix"}) (type: string) Database user. -Defaults to @samp{"zabbix"}. - -@end deftypevr - -@deftypevr {@code{zabbix-server-configuration} parameter} string db-password +@item @code{db-password} (default: @code{""}) (type: string) Database password. Please, use @code{include-files} with @code{DBPassword=SECRET} inside a specified file instead. -Defaults to @samp{""}. - -@end deftypevr - -@deftypevr {@code{zabbix-server-configuration} parameter} number db-port +@item @code{db-port} (default: @code{5432}) (type: number) Database port. -Defaults to @samp{5432}. - -@end deftypevr - -@deftypevr {@code{zabbix-server-configuration} parameter} string log-type +@item @code{log-type} (default: @code{""}) (type: string) Specifies where log messages are written to: @itemize @bullet -@item -@code{system} - syslog. -@item -@code{file} - file specified with @code{log-file} parameter. - -@item -@code{console} - standard output. +@item @code{system} - syslog. -@end itemize +@item @code{file} - file specified with @code{log-file} parameter. -Defaults to @samp{""}. +@item @code{console} - standard output. -@end deftypevr +@end itemize -@deftypevr {@code{zabbix-server-configuration} parameter} string log-file +@item @code{log-file} (default: @code{"/var/log/zabbix/server.log"}) (type: string) Log file name for @code{log-type} @code{file} parameter. -Defaults to @samp{"/var/log/zabbix/server.log"}. - -@end deftypevr - -@deftypevr {@code{zabbix-server-configuration} parameter} string pid-file +@item @code{pid-file} (default: @code{"/var/run/zabbix/zabbix_server.pid"}) (type: string) Name of PID file. -Defaults to @samp{"/var/run/zabbix/zabbix_server.pid"}. - -@end deftypevr - -@deftypevr {@code{zabbix-server-configuration} parameter} string ssl-ca-location +@item @code{ssl-ca-location} (default: @code{"/etc/ssl/certs/ca-certificates.crt"}) (type: string) The location of certificate authority (CA) files for SSL server certificate verification. -Defaults to @samp{"/etc/ssl/certs/ca-certificates.crt"}. - -@end deftypevr - -@deftypevr {@code{zabbix-server-configuration} parameter} string ssl-cert-location +@item @code{ssl-cert-location} (default: @code{"/etc/ssl/certs"}) (type: string) Location of SSL client certificates. -Defaults to @samp{"/etc/ssl/certs"}. - -@end deftypevr - -@deftypevr {@code{zabbix-server-configuration} parameter} string extra-options +@item @code{extra-options} (default: @code{""}) (type: extra-options) Extra options will be appended to Zabbix server configuration file. -Defaults to @samp{""}. - -@end deftypevr - -@deftypevr {@code{zabbix-server-configuration} parameter} include-files include-files +@item @code{include-files} (default: @code{()}) (type: include-files) You may include individual files or all files in a directory in the configuration file. -Defaults to @samp{()}. +@end table + +@end deftp -@end deftypevr @c %end of fragment @@ -25693,100 +25640,64 @@ Zabbix agent gathers information for Zabbix server. @c %start of fragment +@deftp {Data Type} zabbix-agent-configuration Available @code{zabbix-agent-configuration} fields are: -@deftypevr {@code{zabbix-agent-configuration} parameter} package zabbix-agent +@table @asis +@item @code{zabbix-agent} (default: @code{zabbix-agentd}) (type: file-like) The zabbix-agent package. -@end deftypevr - -@deftypevr {@code{zabbix-agent-configuration} parameter} string user +@item @code{user} (default: @code{"zabbix"}) (type: string) User who will run the Zabbix agent. -Defaults to @samp{"zabbix"}. - -@end deftypevr - -@deftypevr {@code{zabbix-agent-configuration} parameter} group group +@item @code{group} (default: @code{"zabbix"}) (type: group) Group who will run the Zabbix agent. -Defaults to @samp{"zabbix"}. - -@end deftypevr - -@deftypevr {@code{zabbix-agent-configuration} parameter} string hostname +@item @code{hostname} (default: @code{""}) (type: string) Unique, case sensitive hostname which is required for active checks and must match hostname as configured on the server. -Defaults to @samp{""}. - -@end deftypevr - -@deftypevr {@code{zabbix-agent-configuration} parameter} string log-type +@item @code{log-type} (default: @code{""}) (type: string) Specifies where log messages are written to: @itemize @bullet @item @code{system} - syslog. -@item -@code{file} - file specified with @code{log-file} parameter. +@item @code{file} - file specified with +@code{log-file} parameter. -@item -@code{console} - standard output. +@item @code{console} - standard output. @end itemize -Defaults to @samp{""}. - -@end deftypevr - -@deftypevr {@code{zabbix-agent-configuration} parameter} string log-file +@item @code{log-file} (default: @code{"/var/log/zabbix/agent.log"}) (type: string) Log file name for @code{log-type} @code{file} parameter. -Defaults to @samp{"/var/log/zabbix/agent.log"}. - -@end deftypevr - -@deftypevr {@code{zabbix-agent-configuration} parameter} string pid-file +@item @code{pid-file} (default: @code{"/var/run/zabbix/zabbix_agent.pid"}) (type: string) Name of PID file. -Defaults to @samp{"/var/run/zabbix/zabbix_agent.pid"}. - -@end deftypevr - -@deftypevr {@code{zabbix-agent-configuration} parameter} list server +@item @code{server} (default: @code{("127.0.0.1")}) (type: list) List of IP addresses, optionally in CIDR notation, or hostnames of Zabbix servers and Zabbix proxies. Incoming connections will be accepted only from the hosts listed here. -Defaults to @samp{("127.0.0.1")}. - -@end deftypevr - -@deftypevr {@code{zabbix-agent-configuration} parameter} list server-active +@item @code{server-active} (default: @code{("127.0.0.1")}) (type: list) List of IP:port (or hostname:port) pairs of Zabbix servers and Zabbix proxies for active checks. If port is not specified, default port is used. If this parameter is not specified, active checks are disabled. -Defaults to @samp{("127.0.0.1")}. - -@end deftypevr - -@deftypevr {@code{zabbix-agent-configuration} parameter} string extra-options +@item @code{extra-options} (default: @code{""}) (type: extra-options) Extra options will be appended to Zabbix server configuration file. -Defaults to @samp{""}. - -@end deftypevr - -@deftypevr {@code{zabbix-agent-configuration} parameter} include-files include-files +@item @code{include-files} (default: @code{()}) (type: include-files) You may include individual files or all files in a directory in the configuration file. -Defaults to @samp{()}. +@end table + +@end deftp -@end deftypevr @c %end of fragment -- cgit v1.3 From eb2e0e32252035111ad31a9a0cb0397fb6e66533 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Mon, 7 Feb 2022 18:22:41 +0100 Subject: services: monitoring: Remove unused procedure. This is a follow-up to commit 326e08bf0f55409f040612001f73a2cc4091c159. * gnu/services/monitoring.scm (zabbix-front-end-nginx-configuration): Remove variable. --- gnu/services/monitoring.scm | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/gnu/services/monitoring.scm b/gnu/services/monitoring.scm index fecb60a04f..21ddfc93f4 100644 --- a/gnu/services/monitoring.scm +++ b/gnu/services/monitoring.scm @@ -552,29 +552,6 @@ configuration file.")) ,zabbix-agent-configuration-fields)) 'zabbix-agent-configuration)) -(define zabbix-front-end-nginx-configuration - (match-lambda - (($ _ package fastcgi-params) - (list - (nginx-server-configuration - (root #~(string-append #$package:front-end "/share/zabbix/php")) - (index '("index.php")) - (locations - (let ((php-location (nginx-php-location))) - (list (nginx-location-configuration - (inherit php-location) - (body - (append (nginx-location-configuration-body php-location) - (list - (format #f "fastcgi_param PHP_VALUE \"~a\";" - (string-join - (map (match-lambda - ((key . value) - (format #f "~a = ~a~%" - key value))) - fastcgi-params)))))))))) - (listen '("80"))))))) - (define %zabbix-front-end-nginx-configuration (nginx-server-configuration (root #~(string-append #$zabbix-server:front-end "/share/zabbix/php")) -- cgit v1.3 From 7c75fff68b8cdfb0cd691e0b9f4e69a048217cc3 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Mon, 7 Feb 2022 18:37:14 +0100 Subject: services: zabbix-frontend: Restore correct variable name. This is a follow-up to 326e08bf0f55409f040612001f73a2cc4091c159, et.al. * gnu/services/monitoring.scm (%zabbix-front-end-nginx-configuration): Rename to ... (%zabbix-front-end-configuration-nginx): ... this. (zabbix-front-end-nginx-extension): Adjust accordingly. --- gnu/services/monitoring.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/services/monitoring.scm b/gnu/services/monitoring.scm index 21ddfc93f4..689e56ca73 100644 --- a/gnu/services/monitoring.scm +++ b/gnu/services/monitoring.scm @@ -552,7 +552,7 @@ configuration file.")) ,zabbix-agent-configuration-fields)) 'zabbix-agent-configuration)) -(define %zabbix-front-end-nginx-configuration +(define %zabbix-front-end-configuration-nginx (nginx-server-configuration (root #~(string-append #$zabbix-server:front-end "/share/zabbix/php")) (index '("index.php")) @@ -573,7 +573,7 @@ fastcgi_param PHP_VALUE \"post_max_size = 16M (if (null? nginx) (list (nginx-server-configuration - (inherit %zabbix-front-end-nginx-configuration) + (inherit %zabbix-front-end-configuration-nginx) (root #~(string-append #$server:front-end "/share/zabbix/php")))) nginx)))) -- cgit v1.3 From 6f1b57ef43413a052e8b69d30cf76183e564c27b Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 18:30:30 +0100 Subject: gnu: mame: Update to 0.240. * gnu/packages/emulators.scm (mame): Update to 0.240. --- gnu/packages/emulators.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm index b260ca38f7..1b32306223 100644 --- a/gnu/packages/emulators.scm +++ b/gnu/packages/emulators.scm @@ -1711,7 +1711,7 @@ This is a part of the TiLP project.") (define-public mame (package (name "mame") - (version "0.239") + (version "0.240") (source (origin (method git-fetch) @@ -1720,7 +1720,7 @@ This is a part of the TiLP project.") (commit (apply string-append "mame" (string-split version #\.))))) (file-name (git-file-name name version)) (sha256 - (base32 "02by0pq0j8pi5dllk90g94nbszynp9wqg75bl5x8bqrc7h80a0dq")) + (base32 "141mj5kzafnbw6nqlc3ariwxqn8lq3s13dzypax6igpy4wfy75rm")) (modules '((guix build utils))) (snippet ;; Remove bundled libraries. -- cgit v1.3 From 89d928f412f53f74ed4bce79214384352426d300 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 18:33:22 +0100 Subject: gnu: mame: Use G-expressions. * gnu/packages/emulators.scm (mame)[arguments]<#:phases>: Use G-expressions. --- gnu/packages/emulators.scm | 118 ++++++++++++++++++++++----------------------- 1 file changed, 57 insertions(+), 61 deletions(-) diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm index 1b32306223..1323568f33 100644 --- a/gnu/packages/emulators.scm +++ b/gnu/packages/emulators.scm @@ -1745,50 +1745,47 @@ This is a part of the TiLP project.") "pugixml" "rapidjson" "sqlite3" "utf8proc" "zlib"))) #:tests? #f ;no test in regular release #:phases - `(modify-phases %standard-phases - (delete 'configure) - (add-after 'build 'build-documentation - (lambda _ (invoke "make" "-C" "docs" "man" "info"))) - (replace 'install - ;; Upstream does not provide an installation phase. - (lambda* (#:key outputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out")) - (share (string-append out "/share/mame"))) - ;; Install data. - (for-each (lambda (dir) - (copy-recursively dir (string-append share "/" dir))) - '("artwork" "bgfx" "ctrlr" "hash" "ini" "language" - "plugins" "samples")) - (let ((keymaps (string-append share "/keymaps"))) - (for-each (lambda (file) (install-file file keymaps)) - (find-files "keymaps" ".*LINUX\\.map"))) - (let ((fonts (string-append share "/fonts"))) - (install-file "uismall.bdf" fonts)) - (when (file-exists? "mame64") - (rename-file "mame64" "mame")) - (install-file "mame" (string-append out "/bin"))))) - (add-after 'install 'install-documentation - (lambda* (#:key outputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out")) - (man (string-append out "/share/man/man1")) - (info (string-append out "/share/info"))) - (install-file "docs/build/man/MAME.1" man) - (install-file "docs/build/texinfo/MAME.info" info)))) - (add-after 'install 'install-ini-file - ;; Generate an ini file so as to set some directories (e.g., roms) - ;; to a writable location, i.e., "$HOME/.mame/" and "$HOME/mame/". - ;; - ;; XXX: We need to insert absolute references to the store. It can - ;; be an issue if they leak into user's home directory, e.g., with - ;; "mame -createconfig" and the package is later GC'ed. - (lambda* (#:key outputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out")) - (share (string-append out "/share/mame")) - (ini (string-append share "/ini"))) - (with-output-to-file (string-append ini "/mame.ini") - (lambda _ - (format #t - "inipath $HOME/.mame;~a/ini~@ + #~(modify-phases %standard-phases + (delete 'configure) + (add-after 'build 'build-documentation + (lambda _ (invoke "make" "-C" "docs" "man" "info"))) + (replace 'install + ;; Upstream does not provide an installation phase. + (lambda _ + (let ((share (string-append #$output "/share/mame"))) + ;; Install data. + (for-each (lambda (dir) + (copy-recursively dir (string-append share "/" dir))) + '("artwork" "bgfx" "ctrlr" "hash" "ini" "language" + "plugins" "samples")) + (let ((keymaps (string-append share "/keymaps"))) + (for-each (lambda (file) (install-file file keymaps)) + (find-files "keymaps" ".*LINUX\\.map"))) + (let ((fonts (string-append share "/fonts"))) + (install-file "uismall.bdf" fonts)) + (when (file-exists? "mame64") + (rename-file "mame64" "mame")) + (install-file "mame" (string-append #$output "/bin"))))) + (add-after 'install 'install-documentation + (lambda _ + (let ((man (string-append #$output "/share/man/man1")) + (info (string-append #$output "/share/info"))) + (install-file "docs/build/man/MAME.1" man) + (install-file "docs/build/texinfo/MAME.info" info)))) + (add-after 'install 'install-ini-file + ;; Generate an ini file so as to set some directories (e.g., roms) + ;; to a writable location, i.e., "$HOME/.mame/" and "$HOME/mame/". + ;; + ;; XXX: We need to insert absolute references to the store. It can + ;; be an issue if they leak into user's home directory, e.g., with + ;; "mame -createconfig" and the package is later GC'ed. + (lambda _ + (let* ((share (string-append #$output "/share/mame")) + (ini (string-append share "/ini"))) + (with-output-to-file (string-append ini "/mame.ini") + (lambda _ + (format #t + "inipath $HOME/.mame;~a/ini~@ homepath $HOME/mame~@ rompath $HOME/mame/roms~@ samplepath $HOME/mame/samples;~a/samples~@ @@ -1808,12 +1805,12 @@ This is a part of the TiLP project.") state_directory $HOME/.mame/sta~@ diff_directory $HOME/.mame/diff~@ comment_directory $HOME/.mame/comments~%" - share share share share share share share share - share))) - (with-output-to-file (string-append ini "/ui.ini") - (lambda _ - (format #t - "historypath $HOME/mame/history~@ + share share share share share share share share + share))) + (with-output-to-file (string-append ini "/ui.ini") + (lambda _ + (format #t + "historypath $HOME/mame/history~@ categorypath $HOME/mame/folders~@ cabinets_directory $HOME/mame/cabinets~@ cpanels_directory $HOME/mame/cpanel~@ @@ -1833,16 +1830,15 @@ This is a part of the TiLP project.") icons_directory $HOME/mame/icons~@ covers_directory $HOME/mame/covers~@ ui_path $HOME/.mame/ui~%")))))) - (add-after 'install 'install-desktop-file - (lambda* (#:key outputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out")) - (desktop (string-append out "/share/applications")) - (executable (string-append out "/bin/mame"))) - (mkdir-p desktop) - (with-output-to-file (string-append desktop "/mame.desktop") - (lambda _ - (format #t - "[Desktop Entry]~@ + (add-after 'install 'install-desktop-file + (lambda _ + (let ((desktop (string-append #$output "/share/applications")) + (executable (string-append #$output "/bin/mame"))) + (mkdir-p desktop) + (with-output-to-file (string-append desktop "/mame.desktop") + (lambda _ + (format #t + "[Desktop Entry]~@ Name=mame~@ Comment=Multi-purpose emulation framework~@ Exec=~a~@ @@ -1851,7 +1847,7 @@ This is a part of the TiLP project.") Type=Application~@ Categories=Game;Emulator;~@ Keywords=Game;Emulator;Arcade;~%" - executable))))))))) + executable))))))))) (native-inputs (list pkg-config python-sphinx -- cgit v1.3 From 3fe905ebdd949360b986144082734f8bdb2b6017 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 18:43:33 +0100 Subject: gnu: gnome-arcade: Improve package style. * gnu/packages/emulators.scm (gnome-arcade)[arguments]: Use G-expressions. <#:phases>: Remove trailing #T. [inputs]: Remove labels. [description]: Start with a complete sentence. --- gnu/packages/emulators.scm | 72 +++++++++++++++++++++------------------------- 1 file changed, 33 insertions(+), 39 deletions(-) diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm index 1323568f33..9ec73bc11f 100644 --- a/gnu/packages/emulators.scm +++ b/gnu/packages/emulators.scm @@ -1903,51 +1903,45 @@ functions. The source code to MAME serves as this documentation.") "1qc01a62p65qb6mwjfmxqsd6n3rglsfwrjhsp25nr7q54107n55l")))) (build-system cmake-build-system) (arguments - `(#:tests? #f ; No tests. - #:configure-flags (list - (string-append "-DMAME_BIN=\"" - (assoc-ref %build-inputs "mame") - "/bin/mame\"") - (string-append "-DAPP_RES=\"" - (assoc-ref %outputs "out") - "/share/gnome-arcade/\"")) - #:phases - (modify-phases %standard-phases - (add-before 'build 'fix-paths - (lambda* (#:key outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out"))) - (pk 'cwd (getcwd)) - (substitute* "../source/src/config.c" - (("/usr/share") (string-append out "/share")))) - #t)) - (replace 'install - (lambda* (#:key outputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out")) - (bin (string-append out "/bin")) - (rom (string-append out "/share/gnome-arcade/data/rom")) - (tile (string-append out "/share/gnome-arcade/data/tile"))) - (mkdir-p bin) - (install-file "../gnome-arcade" bin) - (copy-recursively "../source/res" - (string-append out "/share/gnome-arcade/res")) - (mkdir-p rom) - (install-file "../source/data/rom/ROM.TXT" rom) - (mkdir-p tile) - (install-file "../source/data/tile/TILE.TXT" tile)) - #t))))) + (list + #:tests? #f ; No tests. + #:configure-flags + #~(list + (string-append "-DMAME_BIN=\"" + #$(this-package-input "mame") + "/bin/mame\"") + (string-append "-DAPP_RES=\"" #$output "/share/gnome-arcade/\"")) + #:phases + #~(modify-phases %standard-phases + (add-before 'build 'fix-paths + (lambda _ + (substitute* "../source/src/config.c" + (("/usr/share") (string-append #$output "/share"))))) + (replace 'install + (lambda _ + (let ((bin (string-append #$output "/bin")) + (rom (string-append #$output + "/share/gnome-arcade/data/rom")) + (tile (string-append #$output + "/share/gnome-arcade/data/tile"))) + (mkdir-p bin) + (install-file "../gnome-arcade" bin) + (copy-recursively "../source/res" + (string-append #$output + "/share/gnome-arcade/res")) + (mkdir-p rom) + (install-file "../source/data/rom/ROM.TXT" rom) + (mkdir-p tile) + (install-file "../source/data/tile/TILE.TXT" tile))))))) (native-inputs (list pkg-config)) (inputs - `(("mame" ,mame) - ("gtk" ,gtk+) - ("libevdev" ,libevdev) - ("libvlc" ,vlc) - ("libarchive" ,libarchive))) + (list gtk+ libarchive libevdev mame vlc)) (home-page "https://github.com/strippato/gnome-arcade") (synopsis "Minimal MAME frontend") (description - "A minimal GTK+ frontend for MAME, the multi-purpose arcade and console -emulator.") + "Gnome Arcade is a minimal GTK+ frontend for MAME, the multi-purpose +arcade and console emulator.") (license license:gpl3+))) (define-public pcsxr -- cgit v1.3 From 55e871844c0fe89123135b1cf598d167dd49eeb4 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 7 Feb 2022 15:41:51 +0200 Subject: gnu: webrtc-audio-processing: Fix building on powerpc architectures. * gnu/packages/audio.scm (webrtc-audio-processing)[arguments]: Adjust custom arguments list to also fix building on all powerpc architectures. [native-inputs]: Add patch, local-file on riscv64-linux and powerpc architectures. * gnu/packages/patches/webrtc-audio-processing-big-endian.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. --- gnu/local.mk | 1 + gnu/packages/audio.scm | 40 ++++++++-- .../webrtc-audio-processing-big-endian.patch | 93 ++++++++++++++++++++++ 3 files changed, 127 insertions(+), 7 deletions(-) create mode 100644 gnu/packages/patches/webrtc-audio-processing-big-endian.patch diff --git a/gnu/local.mk b/gnu/local.mk index 09dd9acc2f..2a2fbf79d4 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1965,6 +1965,7 @@ dist_patch_DATA = \ %D%/packages/patches/warsow-qfusion-fix-bool-return-type.patch \ %D%/packages/patches/webkitgtk-share-store.patch \ %D%/packages/patches/webkitgtk-bind-all-fonts.patch \ + %D%/packages/patches/webrtc-audio-processing-big-endian.patch \ %D%/packages/patches/websocketpp-fix-for-cmake-3.15.patch \ %D%/packages/patches/wicd-bitrate-none-fix.patch \ %D%/packages/patches/wicd-get-selected-profile-fix.patch \ diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index a8ecd32e4c..c2f85346bd 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -255,17 +255,43 @@ softsynth library that can be use with other applications.") (base32 "1gsx7k77blfy171b6g3m0k0s0072v6jcawhmx1kjs9w5zlwdkzd0")))) (build-system gnu-build-system) (arguments - ;; TODO: Move this to a snippet or remove with the upgrade to 1.0. - (if (target-riscv64?) + ;; TODO: Move this to a snippet/patch or remove with the upgrade to 1.0. + (if (or (target-riscv64?) + (target-powerpc?)) (list #:phases #~(modify-phases %standard-phases (add-after 'unpack 'patch-source - (lambda _ - (substitute* "webrtc/typedefs.h" - (("defined\\(__aarch64__\\)" all) - (string-append - all " || (defined(__riscv) && __riscv_xlen == 64)"))))))) + (lambda* (#:key inputs #:allow-other-keys) + (let ((patch-file + #$(local-file + (search-patch + "webrtc-audio-processing-big-endian.patch")))) + (invoke "patch" "--force" "-p1" "-i" patch-file) + (substitute* "webrtc/typedefs.h" + (("defined\\(__aarch64__\\)" all) + (string-append + ;; powerpc-linux + "(defined(__PPC__) && __SIZEOF_SIZE_T__ == 4)\n" + "#define WEBRTC_ARCH_32_BITS\n" + "#define WEBRTC_ARCH_BIG_ENDIAN\n" + ;; powerpc64-linux + "#elif (defined(__PPC64__) && defined(_BIG_ENDIAN))\n" + "#define WEBRTC_ARCH_64_BITS\n" + "#define WEBRTC_ARCH_BIG_ENDIAN\n" + ;; aarch64-linux + "#elif " all + ;; riscv64-linux + " || (defined(__riscv) && __riscv_xlen == 64)" + ;; powerpc64le-linux + " || (defined(__PPC64__) && defined(_LITTLE_ENDIAN))")))))))) + '())) + (native-inputs + (if (or (target-riscv64?) + (target-powerpc?)) + (list + (local-file (search-patch "webrtc-audio-processing-big-endian.patch")) + patch) '())) (synopsis "WebRTC's Audio Processing Library") (description "WebRTC-Audio-Processing library based on Google's diff --git a/gnu/packages/patches/webrtc-audio-processing-big-endian.patch b/gnu/packages/patches/webrtc-audio-processing-big-endian.patch new file mode 100644 index 0000000000..78333fe7b7 --- /dev/null +++ b/gnu/packages/patches/webrtc-audio-processing-big-endian.patch @@ -0,0 +1,93 @@ +https://bugs.freedesktop.org/show_bug.cgi?id=95738 +https://bugs.freedesktop.org/attachment.cgi?id=124025 + +diff -up webrtc-audio-processing-0.2/webrtc/common_audio/wav_file.cc.than webrtc-audio-processing-0.2/webrtc/common_audio/wav_file.cc +--- webrtc-audio-processing-0.2/webrtc/common_audio/wav_file.cc.than 2016-05-24 08:28:45.749940095 -0400 ++++ webrtc-audio-processing-0.2/webrtc/common_audio/wav_file.cc 2016-05-24 08:50:30.361020010 -0400 +@@ -64,9 +64,6 @@ WavReader::~WavReader() { + } + + size_t WavReader::ReadSamples(size_t num_samples, int16_t* samples) { +-#ifndef WEBRTC_ARCH_LITTLE_ENDIAN +-#error "Need to convert samples to big-endian when reading from WAV file" +-#endif + // There could be metadata after the audio; ensure we don't read it. + num_samples = std::min(rtc::checked_cast(num_samples), + num_samples_remaining_); +@@ -76,6 +73,12 @@ size_t WavReader::ReadSamples(size_t num + RTC_CHECK(read == num_samples || feof(file_handle_)); + RTC_CHECK_LE(read, num_samples_remaining_); + num_samples_remaining_ -= rtc::checked_cast(read); ++#ifndef WEBRTC_ARCH_LITTLE_ENDIAN ++ //convert to big-endian ++ for(size_t idx = 0; idx < num_samples; idx++) { ++ samples[idx] = (samples[idx]<<8) | (samples[idx]>>8); ++ } ++#endif + return read; + } + +@@ -120,10 +123,17 @@ WavWriter::~WavWriter() { + + void WavWriter::WriteSamples(const int16_t* samples, size_t num_samples) { + #ifndef WEBRTC_ARCH_LITTLE_ENDIAN +-#error "Need to convert samples to little-endian when writing to WAV file" +-#endif ++ int16_t * le_samples = new int16_t[num_samples]; ++ for(size_t idx = 0; idx < num_samples; idx++) { ++ le_samples[idx] = (samples[idx]<<8) | (samples[idx]>>8); ++ } ++ const size_t written = ++ fwrite(le_samples, sizeof(*le_samples), num_samples, file_handle_); ++ delete []le_samples; ++#else + const size_t written = + fwrite(samples, sizeof(*samples), num_samples, file_handle_); ++#endif + RTC_CHECK_EQ(num_samples, written); + num_samples_ += static_cast(written); + RTC_CHECK(written <= std::numeric_limits::max() || +diff -up webrtc-audio-processing-0.2/webrtc/common_audio/wav_header.cc.than webrtc-audio-processing-0.2/webrtc/common_audio/wav_header.cc +--- webrtc-audio-processing-0.2/webrtc/common_audio/wav_header.cc.than 2016-05-24 08:50:52.591379263 -0400 ++++ webrtc-audio-processing-0.2/webrtc/common_audio/wav_header.cc 2016-05-24 08:52:08.552606848 -0400 +@@ -129,7 +129,39 @@ static inline std::string ReadFourCC(uin + return std::string(reinterpret_cast(&x), 4); + } + #else +-#error "Write be-to-le conversion functions" ++static inline void WriteLE16(uint16_t* f, uint16_t x) { ++ *f = ((x << 8) & 0xff00) | ( ( x >> 8) & 0x00ff); ++} ++ ++static inline void WriteLE32(uint32_t* f, uint32_t x) { ++ *f = ( (x & 0x000000ff) << 24 ) ++ | ((x & 0x0000ff00) << 8) ++ | ((x & 0x00ff0000) >> 8) ++ | ((x & 0xff000000) >> 24 ); ++} ++ ++static inline void WriteFourCC(uint32_t* f, char a, char b, char c, char d) { ++ *f = (static_cast(a) << 24 ) ++ | (static_cast(b) << 16) ++ | (static_cast(c) << 8) ++ | (static_cast(d) ); ++} ++ ++static inline uint16_t ReadLE16(uint16_t x) { ++ return (( x & 0x00ff) << 8 )| ((x & 0xff00)>>8); ++} ++ ++static inline uint32_t ReadLE32(uint32_t x) { ++ return ( (x & 0x000000ff) << 24 ) ++ | ( (x & 0x0000ff00) << 8 ) ++ | ( (x & 0x00ff0000) >> 8) ++ | ( (x & 0xff000000) >> 24 ); ++} ++ ++static inline std::string ReadFourCC(uint32_t x) { ++ x = ReadLE32(x); ++ return std::string(reinterpret_cast(&x), 4); ++} + #endif + + static inline uint32_t RiffChunkSize(uint32_t bytes_in_payload) { -- cgit v1.3 From 805af862c6f0f6c54b74125bff8d348ae8f8e6f8 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Fri, 28 Jan 2022 19:18:01 +0100 Subject: guix: Restore profile hook for TeX Live font maps. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Long ago we had a profile hook, called “texlive-configuration”, which would operate on the texlive-* packages that have actually been installed in the profile, build a union directory, and then install a texmf.cnf file that declared the prefix of the TeX Live tree to be the union directory. It then generated font maps based on the fonts that had actually been installed. This approach had multiple disadvantages, the worst of which was that you could only really have one TeX Live tree. Commit 04a0b1e09abce99857e7930336421ca6d15ae630 addressed this, where texmf.cnf was modified *once* and for all in texlive-bin to reference the GUIX_TEXMF variable to determine the root of the tree. This made much of “texlive-configuration” obsolete, because we didn’t need to have any union directories at all, because we had no need for a customized per-profile variant of texmf.cnf. Unfortunately, with the loss of the profile hook we would no longer build font maps. This patch resurrects the profile hook: we’re again generating font maps (such as pdftex.map) based on the contents of the profile. * gnu/packages/tex.scm (texlive-default-updmap.cfg): New variable. * guix/profiles.scm (texlive-configuration): Rename this... (texlive-font-maps): ...to this; update to run updmap-sys on the contents of the profile to generate only font maps. (%default-profile-hooks): Add texlive-font-maps. * guix/status.scm (hook-message): Rename unused texlive-configuration to texlive-font-maps. --- gnu/packages/tex.scm | 12 +++++++ guix/profiles.scm | 99 ++++++++++++++++++++++------------------------------ guix/status.scm | 4 +-- 3 files changed, 56 insertions(+), 59 deletions(-) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index a68c42096b..5d5e875a51 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4422,6 +4422,18 @@ It includes little more than the required set of LaTeX packages.") '() default-packages))))) +(define-public texlive-default-updmap.cfg + (origin + (method url-fetch) + (uri (string-append "https://tug.org/svn/texlive/tags/" + %texlive-tag "/Master/texmf-dist/web2c/updmap.cfg" + "?revision=" (number->string %texlive-revision))) + (file-name (string-append "updmap.cfg-" + (number->string %texlive-revision))) + (sha256 + (base32 + "0zhpyld702im6352fwp41f2hgfkpj2b4j1kfsjqbkijlcmvb6w2c")))) + ;;; TODO: Add a TeX Live profile hook computing fonts maps (and others?) ;;; configuration from the packages in the profile, similar to what's done ;;; below. diff --git a/guix/profiles.scm b/guix/profiles.scm index 96be421727..86926d6793 100644 --- a/guix/profiles.scm +++ b/guix/profiles.scm @@ -1738,8 +1738,8 @@ MANIFEST contains the \"man-db\" package. Otherwise, return #f." (manual-database manifest) (return #f)))) -(define (texlive-configuration manifest) - "Return a derivation that builds a TeXlive configuration for the entries in +(define (texlive-font-maps manifest) + "Return a derivation that builds the TeX Live font maps for the entries in MANIFEST." (define entry->texlive-input (match-lambda @@ -1768,72 +1768,56 @@ MANIFEST." ;; Build a modifiable union of all texlive inputs. We do this so ;; that TeX live can resolve the parent and grandparent directories ;; correctly. There might be a more elegant way to accomplish this. - (union-build #$output + (union-build "/tmp/texlive" '#$(append-map entry->texlive-input (manifest-entries manifest)) #:create-all-directories? #t #:log-port (%make-void-port "w")) - (let ((texmf.cnf (string-append - #$output - "/share/texmf-dist/web2c/texmf.cnf"))) - (when (file-exists? texmf.cnf) - (substitute* texmf.cnf - (("^TEXMFROOT = .*") - (string-append "TEXMFROOT = " #$output "/share\n")) - (("^TEXMF = .*") - "TEXMF = $TEXMFROOT/share/texmf-dist\n")) - - ;; XXX: This is annoying, but it's necessary because texlive-bin - ;; does not provide wrapped executables. - (setenv "PATH" - (string-append #$(file-append coreutils "/bin") - ":" - #$(file-append sed "/bin"))) - (setenv "PERL5LIB" #$(file-append texlive-bin "/share/tlpkg")) - (setenv "TEXMF" (string-append #$output "/share/texmf-dist")) - - ;; Remove invalid maps from config file. - (let* ((web2c (string-append #$output "/share/texmf-config/web2c/")) - (maproot (string-append #$output "/share/texmf-dist/fonts/map/")) - (updmap.cfg (string-append web2c "updmap.cfg"))) - (mkdir-p web2c) - - ;; Some profiles may already have this file, which prevents us - ;; from copying it. Since we need to generate it from scratch - ;; anyway, we delete it here. - (when (file-exists? updmap.cfg) - (delete-file updmap.cfg)) - (copy-file #$updmap.cfg updmap.cfg) - (make-file-writable updmap.cfg) - (let* ((port (open-pipe* OPEN_WRITE - #$(file-append texlive-bin "/bin/updmap-sys") - "--syncwithtrees" - "--nohash" - "--force" - (string-append "--cnffile=" web2c "updmap.cfg")))) - (display "Y\n" port) - (when (not (zero? (status:exit-val (close-pipe port)))) - (error "failed to filter updmap.cfg"))) - - ;; Generate font maps. - (invoke #$(file-append texlive-bin "/bin/updmap-sys") - (string-append "--cnffile=" web2c "updmap.cfg") - (string-append "--dvipdfmxoutputdir=" - maproot "updmap/dvipdfmx/") - (string-append "--dvipsoutputdir=" - maproot "updmap/dvips/") - (string-append "--pdftexoutputdir=" - maproot "updmap/pdftex/"))))) - #t))) + + ;; XXX: This is annoying, but it's necessary because texlive-bin + ;; does not provide wrapped executables. + (setenv "PATH" + (string-append #$(file-append coreutils "/bin") + ":" + #$(file-append sed "/bin"))) + (setenv "PERL5LIB" #$(file-append texlive-bin "/share/tlpkg")) + (setenv "GUIX_TEXMF" "/tmp/texlive/share/texmf-dist") + + ;; Remove invalid maps from config file. + (let* ((web2c (string-append #$output "/share/texmf-dist/web2c/")) + (maproot (string-append #$output "/share/texmf-dist/fonts/map/")) + (updmap.cfg (string-append web2c "updmap.cfg"))) + (mkdir-p web2c) + (copy-file #$updmap.cfg updmap.cfg) + (make-file-writable updmap.cfg) + (let* ((port (open-pipe* OPEN_WRITE + #$(file-append texlive-bin "/bin/updmap-sys") + "--syncwithtrees" + "--nohash" + "--force" + (string-append "--cnffile=" updmap.cfg)))) + (display "Y\n" port) + (when (not (zero? (status:exit-val (close-pipe port)))) + (error "failed to filter updmap.cfg"))) + + ;; Generate font maps. + (invoke #$(file-append texlive-bin "/bin/updmap-sys") + (string-append "--cnffile=" updmap.cfg) + (string-append "--dvipdfmxoutputdir=" + maproot "dvipdfmx/updmap") + (string-append "--dvipsoutputdir=" + maproot "dvips/updmap") + (string-append "--pdftexoutputdir=" + maproot "pdftex/updmap")))))) (mlet %store-monad ((texlive-base (manifest-lookup-package manifest "texlive-base"))) (if texlive-base - (gexp->derivation "texlive-configuration" build + (gexp->derivation "texlive-font-maps" build #:substitutable? #f #:local-build? #t #:properties `((type . profile-hook) - (hook . texlive-configuration))) + (hook . texlive-font-maps))) (return #f)))) (define %default-profile-hooks @@ -1849,6 +1833,7 @@ MANIFEST." glib-schemas gtk-icon-themes gtk-im-modules + texlive-font-maps xdg-desktop-database xdg-mime-database)) diff --git a/guix/status.scm b/guix/status.scm index eefe18365f..fba28765df 100644 --- a/guix/status.scm +++ b/guix/status.scm @@ -395,8 +395,8 @@ the current build phase." (G_ "building XDG MIME database...")) ('fonts-dir (G_ "building fonts directory...")) - ('texlive-configuration - (G_ "building TeX Live configuration...")) + ('texlive-font-maps + (G_ "building TeX Live font maps...")) ('manual-database (G_ "building database for manual pages...")) ('package-cache ;package cache generated by 'guix pull' -- cgit v1.3 From 472680a28d83f79935bd526db6ed7ed39cdd9198 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 11 Jan 2022 20:31:27 +0100 Subject: build: image: Account for fixed-size file system structures. Workaround for . * gnu/build/image.scm (estimate-partition-size): Enforce a 1-MiB minimum. Signed-off-by: Maxim Cournoyer --- gnu/build/image.scm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/gnu/build/image.scm b/gnu/build/image.scm index bdd5ec25a9..81caa424f8 100644 --- a/gnu/build/image.scm +++ b/gnu/build/image.scm @@ -3,7 +3,7 @@ ;;; Copyright © 2016 Christine Lemmer-Webber ;;; Copyright © 2016, 2017 Leo Famulari ;;; Copyright © 2017 Marius Bakke -;;; Copyright © 2020 Tobias Geerinckx-Rice +;;; Copyright © 2020, 2022 Tobias Geerinckx-Rice ;;; Copyright © 2020 Mathieu Othacehe ;;; ;;; This file is part of GNU Guix. @@ -62,8 +62,10 @@ (define (estimate-partition-size root) "Given the ROOT directory, evaluate and return its size. As this doesn't -take the partition metadata size into account, take a 25% margin." - (* 1.25 (file-size root))) +take the partition metadata size into account, take a 25% margin. As this in +turn doesn't take any constant overhead into account, force a 1-MiB minimum." + (max (ash 1 20) + (* 1.25 (file-size root)))) (define* (make-ext-image partition target root #:key -- cgit v1.3 From dde03913b3e0ecdb3851f49f4e7ca7141a96cacb Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sat, 5 Feb 2022 21:42:25 -0500 Subject: build: Fix typo in file-size docstring. * guix/build/store-copy.scm (file-size): Fix typo. --- guix/build/store-copy.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guix/build/store-copy.scm b/guix/build/store-copy.scm index 01e1f41870..657a91f324 100644 --- a/guix/build/store-copy.scm +++ b/guix/build/store-copy.scm @@ -140,7 +140,7 @@ It is meant as an internal format." refs))))))) (define (file-size file) - "Return the size of bytes of FILE, entering it if FILE is a directory." + "Return the size in bytes of FILE, entering it if FILE is a directory." (file-system-fold (const #t) (lambda (file stat result) ;leaf (+ (stat:size stat) result)) -- cgit v1.3 From 6f80093b3364e8f8192e489535a502d0d8e7ec34 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Fri, 28 Jan 2022 13:48:42 -0500 Subject: gnu: linux-libre: Enable CONFIG_ZONE_DMA in all configs. ZONE_DMA is still used by some kernel drivers such as older sound and network cards; it was already enabled on ARM and for some i686 kernels. Enable it everywhere for consistency. The change was automated with: $ git grep -rl CONFIG_ZONE_DMA | \ xargs sed 's/# CONFIG_ZONE_DMA is not set/CONFIG_ZONE_DMA=y/' -i * gnu/packages/aux-files/linux-libre/4.14-x86_64.conf: Enable CONFIG_ZONE_DMA. * gnu/packages/aux-files/linux-libre/4.19-x86_64.conf: Likewise. * gnu/packages/aux-files/linux-libre/4.4-x86_64.conf: Likewise. * gnu/packages/aux-files/linux-libre/4.9-x86_64.conf: Likewise. * gnu/packages/aux-files/linux-libre/5.10-i686.conf: Likewise. * gnu/packages/aux-files/linux-libre/5.10-x86_64.conf: Likewise. * gnu/packages/aux-files/linux-libre/5.15-i686.conf: Likewise. * gnu/packages/aux-files/linux-libre/5.15-x86_64.conf: Likewise. * gnu/packages/aux-files/linux-libre/5.16-i686.conf: Likewise. * gnu/packages/aux-files/linux-libre/5.16-x86_64.conf: Likewise. * gnu/packages/aux-files/linux-libre/5.4-x86_64.conf: Likewise. --- gnu/packages/aux-files/linux-libre/4.14-x86_64.conf | 2 +- gnu/packages/aux-files/linux-libre/4.19-x86_64.conf | 2 +- gnu/packages/aux-files/linux-libre/4.4-x86_64.conf | 2 +- gnu/packages/aux-files/linux-libre/4.9-x86_64.conf | 2 +- gnu/packages/aux-files/linux-libre/5.10-i686.conf | 2 +- gnu/packages/aux-files/linux-libre/5.10-x86_64.conf | 2 +- gnu/packages/aux-files/linux-libre/5.15-i686.conf | 2 +- gnu/packages/aux-files/linux-libre/5.15-x86_64.conf | 2 +- gnu/packages/aux-files/linux-libre/5.16-i686.conf | 2 +- gnu/packages/aux-files/linux-libre/5.16-x86_64.conf | 2 +- gnu/packages/aux-files/linux-libre/5.4-x86_64.conf | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/gnu/packages/aux-files/linux-libre/4.14-x86_64.conf b/gnu/packages/aux-files/linux-libre/4.14-x86_64.conf index db11c2f6e8..09c81b4b00 100644 --- a/gnu/packages/aux-files/linux-libre/4.14-x86_64.conf +++ b/gnu/packages/aux-files/linux-libre/4.14-x86_64.conf @@ -454,7 +454,7 @@ CONFIG_FREEZER=y # # Processor type and features # -# CONFIG_ZONE_DMA is not set +CONFIG_ZONE_DMA=y CONFIG_SMP=y CONFIG_X86_FEATURE_NAMES=y CONFIG_X86_FAST_FEATURE_TESTS=y diff --git a/gnu/packages/aux-files/linux-libre/4.19-x86_64.conf b/gnu/packages/aux-files/linux-libre/4.19-x86_64.conf index b76fdc9148..45ab903288 100644 --- a/gnu/packages/aux-files/linux-libre/4.19-x86_64.conf +++ b/gnu/packages/aux-files/linux-libre/4.19-x86_64.conf @@ -273,7 +273,7 @@ CONFIG_CC_HAS_SANE_STACKPROTECTOR=y # # Processor type and features # -# CONFIG_ZONE_DMA is not set +CONFIG_ZONE_DMA=y CONFIG_SMP=y CONFIG_X86_FEATURE_NAMES=y CONFIG_X86_X2APIC=y diff --git a/gnu/packages/aux-files/linux-libre/4.4-x86_64.conf b/gnu/packages/aux-files/linux-libre/4.4-x86_64.conf index 0c7852ba48..9e3f4d5e70 100644 --- a/gnu/packages/aux-files/linux-libre/4.4-x86_64.conf +++ b/gnu/packages/aux-files/linux-libre/4.4-x86_64.conf @@ -384,7 +384,7 @@ CONFIG_FREEZER=y # # Processor type and features # -# CONFIG_ZONE_DMA is not set +CONFIG_ZONE_DMA=y CONFIG_SMP=y CONFIG_X86_FEATURE_NAMES=y CONFIG_X86_X2APIC=y diff --git a/gnu/packages/aux-files/linux-libre/4.9-x86_64.conf b/gnu/packages/aux-files/linux-libre/4.9-x86_64.conf index 6256b9f356..42edbb12a2 100644 --- a/gnu/packages/aux-files/linux-libre/4.9-x86_64.conf +++ b/gnu/packages/aux-files/linux-libre/4.9-x86_64.conf @@ -409,7 +409,7 @@ CONFIG_FREEZER=y # # Processor type and features # -# CONFIG_ZONE_DMA is not set +CONFIG_ZONE_DMA=y CONFIG_SMP=y CONFIG_X86_FEATURE_NAMES=y CONFIG_X86_FAST_FEATURE_TESTS=y diff --git a/gnu/packages/aux-files/linux-libre/5.10-i686.conf b/gnu/packages/aux-files/linux-libre/5.10-i686.conf index d24bbbcaa2..cc4f703467 100644 --- a/gnu/packages/aux-files/linux-libre/5.10-i686.conf +++ b/gnu/packages/aux-files/linux-libre/5.10-i686.conf @@ -292,7 +292,7 @@ CONFIG_CC_HAS_SANE_STACKPROTECTOR=y # # Processor type and features # -# CONFIG_ZONE_DMA is not set +CONFIG_ZONE_DMA=y CONFIG_SMP=y CONFIG_X86_FEATURE_NAMES=y CONFIG_X86_MPPARSE=y diff --git a/gnu/packages/aux-files/linux-libre/5.10-x86_64.conf b/gnu/packages/aux-files/linux-libre/5.10-x86_64.conf index 3a905e6286..85e5967fb1 100644 --- a/gnu/packages/aux-files/linux-libre/5.10-x86_64.conf +++ b/gnu/packages/aux-files/linux-libre/5.10-x86_64.conf @@ -308,7 +308,7 @@ CONFIG_CC_HAS_SANE_STACKPROTECTOR=y # # Processor type and features # -# CONFIG_ZONE_DMA is not set +CONFIG_ZONE_DMA=y CONFIG_SMP=y CONFIG_X86_FEATURE_NAMES=y CONFIG_X86_X2APIC=y diff --git a/gnu/packages/aux-files/linux-libre/5.15-i686.conf b/gnu/packages/aux-files/linux-libre/5.15-i686.conf index 85bd4d0ee1..c4f54ca5d3 100644 --- a/gnu/packages/aux-files/linux-libre/5.15-i686.conf +++ b/gnu/packages/aux-files/linux-libre/5.15-i686.conf @@ -992,7 +992,7 @@ CONFIG_PAGE_IDLE_FLAG=y CONFIG_IDLE_PAGE_TRACKING=y CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y CONFIG_ARCH_HAS_ZONE_DMA_SET=y -# CONFIG_ZONE_DMA is not set +CONFIG_ZONE_DMA=y CONFIG_HMM_MIRROR=y CONFIG_VMAP_PFN=y # CONFIG_PERCPU_STATS is not set diff --git a/gnu/packages/aux-files/linux-libre/5.15-x86_64.conf b/gnu/packages/aux-files/linux-libre/5.15-x86_64.conf index ad42192937..54f6dc375a 100644 --- a/gnu/packages/aux-files/linux-libre/5.15-x86_64.conf +++ b/gnu/packages/aux-files/linux-libre/5.15-x86_64.conf @@ -1025,7 +1025,7 @@ CONFIG_IDLE_PAGE_TRACKING=y CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y CONFIG_ARCH_HAS_PTE_DEVMAP=y CONFIG_ARCH_HAS_ZONE_DMA_SET=y -# CONFIG_ZONE_DMA is not set +CONFIG_ZONE_DMA=y CONFIG_ZONE_DMA32=y CONFIG_ZONE_DEVICE=y CONFIG_DEV_PAGEMAP_OPS=y diff --git a/gnu/packages/aux-files/linux-libre/5.16-i686.conf b/gnu/packages/aux-files/linux-libre/5.16-i686.conf index edaca0b891..a5773c54cf 100644 --- a/gnu/packages/aux-files/linux-libre/5.16-i686.conf +++ b/gnu/packages/aux-files/linux-libre/5.16-i686.conf @@ -1000,7 +1000,7 @@ CONFIG_PAGE_IDLE_FLAG=y CONFIG_IDLE_PAGE_TRACKING=y CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y CONFIG_ARCH_HAS_ZONE_DMA_SET=y -# CONFIG_ZONE_DMA is not set +CONFIG_ZONE_DMA=y CONFIG_HMM_MIRROR=y CONFIG_VMAP_PFN=y # CONFIG_PERCPU_STATS is not set diff --git a/gnu/packages/aux-files/linux-libre/5.16-x86_64.conf b/gnu/packages/aux-files/linux-libre/5.16-x86_64.conf index e8271dcef3..048056b456 100644 --- a/gnu/packages/aux-files/linux-libre/5.16-x86_64.conf +++ b/gnu/packages/aux-files/linux-libre/5.16-x86_64.conf @@ -1032,7 +1032,7 @@ CONFIG_IDLE_PAGE_TRACKING=y CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y CONFIG_ARCH_HAS_PTE_DEVMAP=y CONFIG_ARCH_HAS_ZONE_DMA_SET=y -# CONFIG_ZONE_DMA is not set +CONFIG_ZONE_DMA=y CONFIG_ZONE_DMA32=y CONFIG_ZONE_DEVICE=y CONFIG_DEV_PAGEMAP_OPS=y diff --git a/gnu/packages/aux-files/linux-libre/5.4-x86_64.conf b/gnu/packages/aux-files/linux-libre/5.4-x86_64.conf index ec8609171e..91b3033260 100644 --- a/gnu/packages/aux-files/linux-libre/5.4-x86_64.conf +++ b/gnu/packages/aux-files/linux-libre/5.4-x86_64.conf @@ -294,7 +294,7 @@ CONFIG_CC_HAS_SANE_STACKPROTECTOR=y # # Processor type and features # -# CONFIG_ZONE_DMA is not set +CONFIG_ZONE_DMA=y CONFIG_SMP=y CONFIG_X86_FEATURE_NAMES=y CONFIG_X86_X2APIC=y -- cgit v1.3 From d5b4ca4445d68f637abc0ede21e9529127e7e71d Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Fri, 28 Jan 2022 14:26:31 -0500 Subject: gnu: linux-libre: Build the snd-emu10k1 kernel module. Add the CONFIG_SND_EMU10K1=m and CONFIG_SND_EMU10K1_SEQ=m kernel options to all of our x86 and ARM configurations. The change automated via: $ git grep -rl CONFIG_SND_INDIGODJX | xargs grep -rL CONFIG_SND_EMU10K1=m \ | xargs sed '/CONFIG_SND_INDIGODJX=m/a\ CONFIG_SND_EMU10K1=m\nCONFIG_SND_EMU10K1_SEQ=m' -i --- gnu/packages/aux-files/linux-libre/4.14-arm.conf | 2 ++ gnu/packages/aux-files/linux-libre/4.14-x86_64.conf | 2 ++ gnu/packages/aux-files/linux-libre/4.19-arm.conf | 2 ++ gnu/packages/aux-files/linux-libre/4.19-arm64.conf | 2 ++ gnu/packages/aux-files/linux-libre/4.19-x86_64.conf | 2 ++ gnu/packages/aux-files/linux-libre/4.4-x86_64.conf | 2 ++ gnu/packages/aux-files/linux-libre/4.9-x86_64.conf | 2 ++ gnu/packages/aux-files/linux-libre/5.10-i686.conf | 2 ++ gnu/packages/aux-files/linux-libre/5.10-x86_64.conf | 2 ++ gnu/packages/aux-files/linux-libre/5.15-i686.conf | 2 ++ gnu/packages/aux-files/linux-libre/5.15-x86_64.conf | 2 ++ gnu/packages/aux-files/linux-libre/5.16-i686.conf | 2 ++ gnu/packages/aux-files/linux-libre/5.16-x86_64.conf | 2 ++ gnu/packages/aux-files/linux-libre/5.4-arm.conf | 2 ++ gnu/packages/aux-files/linux-libre/5.4-arm64.conf | 2 ++ gnu/packages/aux-files/linux-libre/5.4-x86_64.conf | 2 ++ 16 files changed, 32 insertions(+) diff --git a/gnu/packages/aux-files/linux-libre/4.14-arm.conf b/gnu/packages/aux-files/linux-libre/4.14-arm.conf index 03d11b4f53..6da3c1fdf1 100644 --- a/gnu/packages/aux-files/linux-libre/4.14-arm.conf +++ b/gnu/packages/aux-files/linux-libre/4.14-arm.conf @@ -5437,6 +5437,8 @@ CONFIG_SND_INDIGOIO=m CONFIG_SND_INDIGODJ=m CONFIG_SND_INDIGOIOX=m CONFIG_SND_INDIGODJX=m +CONFIG_SND_EMU10K1=m +CONFIG_SND_EMU10K1_SEQ=m # CONFIG_SND_EMU10K1_SEQ is not set # CONFIG_SND_ENS1370 is not set # CONFIG_SND_ENS1371 is not set diff --git a/gnu/packages/aux-files/linux-libre/4.14-x86_64.conf b/gnu/packages/aux-files/linux-libre/4.14-x86_64.conf index 09c81b4b00..291f6aa381 100644 --- a/gnu/packages/aux-files/linux-libre/4.14-x86_64.conf +++ b/gnu/packages/aux-files/linux-libre/4.14-x86_64.conf @@ -5958,6 +5958,8 @@ CONFIG_SND_INDIGOIO=m CONFIG_SND_INDIGODJ=m CONFIG_SND_INDIGOIOX=m CONFIG_SND_INDIGODJX=m +CONFIG_SND_EMU10K1=m +CONFIG_SND_EMU10K1_SEQ=m # CONFIG_SND_EMU10K1_SEQ is not set CONFIG_SND_ENS1370=m CONFIG_SND_ENS1371=m diff --git a/gnu/packages/aux-files/linux-libre/4.19-arm.conf b/gnu/packages/aux-files/linux-libre/4.19-arm.conf index 9fd2a41a63..edc981eb57 100644 --- a/gnu/packages/aux-files/linux-libre/4.19-arm.conf +++ b/gnu/packages/aux-files/linux-libre/4.19-arm.conf @@ -5598,6 +5598,8 @@ CONFIG_SND_INDIGOIO=m CONFIG_SND_INDIGODJ=m CONFIG_SND_INDIGOIOX=m CONFIG_SND_INDIGODJX=m +CONFIG_SND_EMU10K1=m +CONFIG_SND_EMU10K1_SEQ=m # CONFIG_SND_ENS1370 is not set # CONFIG_SND_ENS1371 is not set # CONFIG_SND_FM801 is not set diff --git a/gnu/packages/aux-files/linux-libre/4.19-arm64.conf b/gnu/packages/aux-files/linux-libre/4.19-arm64.conf index 69c7c439fe..aedb54382f 100644 --- a/gnu/packages/aux-files/linux-libre/4.19-arm64.conf +++ b/gnu/packages/aux-files/linux-libre/4.19-arm64.conf @@ -5331,6 +5331,8 @@ CONFIG_SND_INDIGOIO=m CONFIG_SND_INDIGODJ=m CONFIG_SND_INDIGOIOX=m CONFIG_SND_INDIGODJX=m +CONFIG_SND_EMU10K1=m +CONFIG_SND_EMU10K1_SEQ=m # CONFIG_SND_ENS1370 is not set # CONFIG_SND_ENS1371 is not set # CONFIG_SND_FM801 is not set diff --git a/gnu/packages/aux-files/linux-libre/4.19-x86_64.conf b/gnu/packages/aux-files/linux-libre/4.19-x86_64.conf index 45ab903288..0fb0cf9a7f 100644 --- a/gnu/packages/aux-files/linux-libre/4.19-x86_64.conf +++ b/gnu/packages/aux-files/linux-libre/4.19-x86_64.conf @@ -6173,6 +6173,8 @@ CONFIG_SND_INDIGOIO=m CONFIG_SND_INDIGODJ=m CONFIG_SND_INDIGOIOX=m CONFIG_SND_INDIGODJX=m +CONFIG_SND_EMU10K1=m +CONFIG_SND_EMU10K1_SEQ=m CONFIG_SND_ENS1370=m CONFIG_SND_ENS1371=m CONFIG_SND_FM801=m diff --git a/gnu/packages/aux-files/linux-libre/4.4-x86_64.conf b/gnu/packages/aux-files/linux-libre/4.4-x86_64.conf index 9e3f4d5e70..89dc907eca 100644 --- a/gnu/packages/aux-files/linux-libre/4.4-x86_64.conf +++ b/gnu/packages/aux-files/linux-libre/4.4-x86_64.conf @@ -5494,6 +5494,8 @@ CONFIG_SND_INDIGOIO=m CONFIG_SND_INDIGODJ=m CONFIG_SND_INDIGOIOX=m CONFIG_SND_INDIGODJX=m +CONFIG_SND_EMU10K1=m +CONFIG_SND_EMU10K1_SEQ=m CONFIG_SND_ENS1370=m CONFIG_SND_ENS1371=m CONFIG_SND_FM801=m diff --git a/gnu/packages/aux-files/linux-libre/4.9-x86_64.conf b/gnu/packages/aux-files/linux-libre/4.9-x86_64.conf index 42edbb12a2..8d47127ece 100644 --- a/gnu/packages/aux-files/linux-libre/4.9-x86_64.conf +++ b/gnu/packages/aux-files/linux-libre/4.9-x86_64.conf @@ -5733,6 +5733,8 @@ CONFIG_SND_INDIGOIO=m CONFIG_SND_INDIGODJ=m CONFIG_SND_INDIGOIOX=m CONFIG_SND_INDIGODJX=m +CONFIG_SND_EMU10K1=m +CONFIG_SND_EMU10K1_SEQ=m CONFIG_SND_ENS1370=m CONFIG_SND_ENS1371=m CONFIG_SND_FM801=m diff --git a/gnu/packages/aux-files/linux-libre/5.10-i686.conf b/gnu/packages/aux-files/linux-libre/5.10-i686.conf index cc4f703467..7111ab0eb0 100644 --- a/gnu/packages/aux-files/linux-libre/5.10-i686.conf +++ b/gnu/packages/aux-files/linux-libre/5.10-i686.conf @@ -6782,6 +6782,8 @@ CONFIG_SND_INDIGOIO=m CONFIG_SND_INDIGODJ=m CONFIG_SND_INDIGOIOX=m CONFIG_SND_INDIGODJX=m +CONFIG_SND_EMU10K1=m +CONFIG_SND_EMU10K1_SEQ=m CONFIG_SND_ENS1370=m CONFIG_SND_ENS1371=m CONFIG_SND_FM801=m diff --git a/gnu/packages/aux-files/linux-libre/5.10-x86_64.conf b/gnu/packages/aux-files/linux-libre/5.10-x86_64.conf index 85e5967fb1..3a8dbcd3ee 100644 --- a/gnu/packages/aux-files/linux-libre/5.10-x86_64.conf +++ b/gnu/packages/aux-files/linux-libre/5.10-x86_64.conf @@ -6671,6 +6671,8 @@ CONFIG_SND_INDIGOIO=m CONFIG_SND_INDIGODJ=m CONFIG_SND_INDIGOIOX=m CONFIG_SND_INDIGODJX=m +CONFIG_SND_EMU10K1=m +CONFIG_SND_EMU10K1_SEQ=m CONFIG_SND_ENS1370=m CONFIG_SND_ENS1371=m CONFIG_SND_FM801=m diff --git a/gnu/packages/aux-files/linux-libre/5.15-i686.conf b/gnu/packages/aux-files/linux-libre/5.15-i686.conf index c4f54ca5d3..b03a50a391 100644 --- a/gnu/packages/aux-files/linux-libre/5.15-i686.conf +++ b/gnu/packages/aux-files/linux-libre/5.15-i686.conf @@ -6942,6 +6942,8 @@ CONFIG_SND_INDIGOIO=m CONFIG_SND_INDIGODJ=m CONFIG_SND_INDIGOIOX=m CONFIG_SND_INDIGODJX=m +CONFIG_SND_EMU10K1=m +CONFIG_SND_EMU10K1_SEQ=m CONFIG_SND_ENS1370=m CONFIG_SND_ENS1371=m CONFIG_SND_FM801=m diff --git a/gnu/packages/aux-files/linux-libre/5.15-x86_64.conf b/gnu/packages/aux-files/linux-libre/5.15-x86_64.conf index 54f6dc375a..0faf28e4c7 100644 --- a/gnu/packages/aux-files/linux-libre/5.15-x86_64.conf +++ b/gnu/packages/aux-files/linux-libre/5.15-x86_64.conf @@ -6856,6 +6856,8 @@ CONFIG_SND_INDIGOIO=m CONFIG_SND_INDIGODJ=m CONFIG_SND_INDIGOIOX=m CONFIG_SND_INDIGODJX=m +CONFIG_SND_EMU10K1=m +CONFIG_SND_EMU10K1_SEQ=m CONFIG_SND_ENS1370=m CONFIG_SND_ENS1371=m CONFIG_SND_FM801=m diff --git a/gnu/packages/aux-files/linux-libre/5.16-i686.conf b/gnu/packages/aux-files/linux-libre/5.16-i686.conf index a5773c54cf..c18e4fcfc3 100644 --- a/gnu/packages/aux-files/linux-libre/5.16-i686.conf +++ b/gnu/packages/aux-files/linux-libre/5.16-i686.conf @@ -6982,6 +6982,8 @@ CONFIG_SND_INDIGOIO=m CONFIG_SND_INDIGODJ=m CONFIG_SND_INDIGOIOX=m CONFIG_SND_INDIGODJX=m +CONFIG_SND_EMU10K1=m +CONFIG_SND_EMU10K1_SEQ=m CONFIG_SND_ENS1370=m CONFIG_SND_ENS1371=m CONFIG_SND_FM801=m diff --git a/gnu/packages/aux-files/linux-libre/5.16-x86_64.conf b/gnu/packages/aux-files/linux-libre/5.16-x86_64.conf index 048056b456..0ff4eee0aa 100644 --- a/gnu/packages/aux-files/linux-libre/5.16-x86_64.conf +++ b/gnu/packages/aux-files/linux-libre/5.16-x86_64.conf @@ -6892,6 +6892,8 @@ CONFIG_SND_INDIGOIO=m CONFIG_SND_INDIGODJ=m CONFIG_SND_INDIGOIOX=m CONFIG_SND_INDIGODJX=m +CONFIG_SND_EMU10K1=m +CONFIG_SND_EMU10K1_SEQ=m CONFIG_SND_ENS1370=m CONFIG_SND_ENS1371=m CONFIG_SND_FM801=m diff --git a/gnu/packages/aux-files/linux-libre/5.4-arm.conf b/gnu/packages/aux-files/linux-libre/5.4-arm.conf index 8d592b9c0a..a680731bc8 100644 --- a/gnu/packages/aux-files/linux-libre/5.4-arm.conf +++ b/gnu/packages/aux-files/linux-libre/5.4-arm.conf @@ -6045,6 +6045,8 @@ CONFIG_SND_INDIGOIO=m CONFIG_SND_INDIGODJ=m CONFIG_SND_INDIGOIOX=m CONFIG_SND_INDIGODJX=m +CONFIG_SND_EMU10K1=m +CONFIG_SND_EMU10K1_SEQ=m # CONFIG_SND_ENS1370 is not set # CONFIG_SND_ENS1371 is not set # CONFIG_SND_FM801 is not set diff --git a/gnu/packages/aux-files/linux-libre/5.4-arm64.conf b/gnu/packages/aux-files/linux-libre/5.4-arm64.conf index 17fc87e869..a867660aa7 100644 --- a/gnu/packages/aux-files/linux-libre/5.4-arm64.conf +++ b/gnu/packages/aux-files/linux-libre/5.4-arm64.conf @@ -5870,6 +5870,8 @@ CONFIG_SND_INDIGOIO=m CONFIG_SND_INDIGODJ=m CONFIG_SND_INDIGOIOX=m CONFIG_SND_INDIGODJX=m +CONFIG_SND_EMU10K1=m +CONFIG_SND_EMU10K1_SEQ=m # CONFIG_SND_ENS1370 is not set # CONFIG_SND_ENS1371 is not set # CONFIG_SND_FM801 is not set diff --git a/gnu/packages/aux-files/linux-libre/5.4-x86_64.conf b/gnu/packages/aux-files/linux-libre/5.4-x86_64.conf index 91b3033260..d93d6065b8 100644 --- a/gnu/packages/aux-files/linux-libre/5.4-x86_64.conf +++ b/gnu/packages/aux-files/linux-libre/5.4-x86_64.conf @@ -6469,6 +6469,8 @@ CONFIG_SND_INDIGOIO=m CONFIG_SND_INDIGODJ=m CONFIG_SND_INDIGOIOX=m CONFIG_SND_INDIGODJX=m +CONFIG_SND_EMU10K1=m +CONFIG_SND_EMU10K1_SEQ=m CONFIG_SND_ENS1370=m CONFIG_SND_ENS1371=m CONFIG_SND_FM801=m -- cgit v1.3 From e5c06dce937d96b36fab73df12ccfb6e77d127ac Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Fri, 28 Jan 2022 15:11:42 -0500 Subject: gnu: linux-libre: Expose running kernel config as /proc/config.gz. * gnu/packages/linux.scm (%default-extra-linux-options) [CONFIG_IKCONFIG, CONFIG_IKCONFIG_PROC]: Enable kernel options. --- gnu/packages/linux.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index c405a34197..ce462a57ed 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -687,7 +687,10 @@ for ARCH and optionally VARIANT, or #f if there is no such configuration." (search-auxiliary-file file))) (define %default-extra-linux-options - `(;; Some very mild hardening. + `(;; Make the kernel config available at /proc/config.gz + ("CONFIG_IKCONFIG" . #t) + ("CONFIG_IKCONFIG_PROC" . #t) + ;; Some very mild hardening. ("CONFIG_SECURITY_DMESG_RESTRICT" . #t) ;; All kernels should have NAMESPACES options enabled ("CONFIG_NAMESPACES" . #t) -- cgit v1.3 From 2d78b27711d44f39fabf170d044b45247af7babe Mon Sep 17 00:00:00 2001 From: Carl Dong Date: Tue, 1 Feb 2022 12:33:16 -0500 Subject: gnu: Disable compressed debug sections for mingw-w64 The newly introduced --enable-compressed-debug-section=all configure flag in the base binutils package makes the mingw-w64 build system unusable. For example: $ guix build --target=x86_64-w64-mingw32 hello and $ guix build mingw-w64-x86_64-winpthreads Will fail to build with an error: "x86_64-w64-mingw32-ld: final link failed: bad value" Turning off this flag seems to fix the problem, but perhaps it'd also be worthwhile to investigate the root cause. * gnu/packages/cross-base.scm (cross-binutils): When building for mingw targets, append "--enable-compressed-debug-section=no" to configure flags. --- gnu/packages/cross-base.scm | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/gnu/packages/cross-base.scm b/gnu/packages/cross-base.scm index 78cbf871ac..529144d127 100644 --- a/gnu/packages/cross-base.scm +++ b/gnu/packages/cross-base.scm @@ -101,7 +101,16 @@ "ath9k-htc-firmware-binutils.patch"))) ((target-mingw? target) (package-with-extra-patches - binutils + (package-with-extra-configure-variable + ;; mingw binutils does not work correctly when configured + ;; with `--enable-compressed-debug-sections`. An error + ;; like the following will occur whenever you try to link: + ;; + ;; x86_64-w64-mingw32-ld: final link failed: bad value + ;; + ;; TODO: This seems like a deeper problem that warrants + ;; deeper investigation. + binutils "--enable-compressed-debug-sections" "no") (search-patches "binutils-mingw-w64-timestamp.patch" "binutils-mingw-w64-deterministic.patch"))) (else binutils)) -- cgit v1.3 From 696e34e7217ed545af0d05c802f70c362a9f8df8 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Mon, 7 Feb 2022 21:58:41 +0100 Subject: gnu: clitest: Update to 0.4.0. * gnu/packages/check.scm (clitest): Update to 0.4.0. [inputs]: Add BASH-MINIMAL. [arguments]: Remove trailing #t. --- gnu/packages/check.scm | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 913c803a24..7315ebfe5e 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -209,17 +209,15 @@ source code editors and IDEs.") (define-public clitest (package (name "clitest") - (version "0.3.0") + (version "0.4.0") (home-page "https://github.com/aureliojargas/clitest") (source (origin (method git-fetch) - (uri (git-reference - (url home-page) - (commit (string-append "v" version)))) + (uri (git-reference (url home-page) (commit version))) (file-name (git-file-name name version)) (sha256 (base32 - "0zw5wra9hc717srmcar1wm4i34kyj8c49ny4bb7y3nrvkjp2pdb5")))) + "1p745mxiq3hgi3ywfljs5sa1psi06awwjxzw0j9c2xx1b09yqv4a")))) (build-system gnu-build-system) (arguments `(#:phases @@ -244,10 +242,12 @@ source code editors and IDEs.") (let ((out (assoc-ref outputs "out"))) (install-file "clitest" (string-append out "/bin")) (install-file "README.md" - (string-append out "/share/doc/clitest-" ,version)) - #t)))))) + (string-append out "/share/doc/clitest-" + ,version)))))))) (native-inputs (list perl)) ;for tests + (inputs + (list bash-minimal)) (synopsis "Command line test tool") (description "@command{clitest} is a portable shell script that performs automatic -- cgit v1.3 From 31ff6a525d6464463b64d15ad0a602df6a333917 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Mon, 7 Feb 2022 22:00:39 +0100 Subject: gnu: clitest: Use G-expressions. * gnu/packages/check.scm (clitest)[arguments]: Rewrite as gexp. While here, respect TESTS? in check phase. --- gnu/packages/check.scm | 49 +++++++++++++++++++++++++------------------------ 1 file changed, 25 insertions(+), 24 deletions(-) diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 7315ebfe5e..5a2304b436 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -220,30 +220,31 @@ source code editors and IDEs.") "1p745mxiq3hgi3ywfljs5sa1psi06awwjxzw0j9c2xx1b09yqv4a")))) (build-system gnu-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - ;; This package is distributed as a single shell script and comes - ;; without a proper build system. - (delete 'configure) - (delete 'build) - (replace 'check - (lambda _ - (substitute* "test.md" - ;; One test looks for an error from grep in the form "grep: foo", - ;; but our grep returns the absolute file name on errors. Adjust - ;; the test to cope with that. - (("sed 's/\\^e\\*grep: \\.\\*/") - "sed 's/.*e*grep: .*/")) - - (setenv "HOME" "/tmp") - (invoke "./clitest" "test.md"))) - (replace 'install - (lambda* (#:key outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out"))) - (install-file "clitest" (string-append out "/bin")) - (install-file "README.md" - (string-append out "/share/doc/clitest-" - ,version)))))))) + (list + #:phases + #~(modify-phases %standard-phases + ;; This package is distributed as a single shell script and comes + ;; without a proper build system. + (delete 'configure) + (delete 'build) + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (substitute* "test.md" + ;; One test looks for an error from grep in the form "grep: foo", + ;; but our grep returns the absolute file name on errors. Adjust + ;; the test to cope with that. + (("sed 's/\\^e\\*grep: \\.\\*/") + "sed 's/.*e*grep: .*/")) + + (setenv "HOME" "/tmp") + (invoke "./clitest" "test.md")))) + (replace 'install + (lambda _ + (install-file "clitest" (string-append #$output "/bin")) + (install-file "README.md" + (string-append #$output "/share/doc/clitest-" + #$(package-version this-package)))))))) (native-inputs (list perl)) ;for tests (inputs -- cgit v1.3 From b07ea0df907a94d96e381598af70747d0c8f9015 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Mon, 7 Feb 2022 22:47:27 +0100 Subject: gnu: ganeti-instance-guix: Update to 0.6.1. * gnu/packages/virtualization.scm (ganeti-instance-guix): Update to 0.6.1. --- gnu/packages/virtualization.scm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm index 2269901d46..1c1be29d9b 100644 --- a/gnu/packages/virtualization.scm +++ b/gnu/packages/virtualization.scm @@ -885,7 +885,7 @@ commodity hardware.") (define-public ganeti-instance-guix (package (name "ganeti-instance-guix") - (version "0.6") + (version "0.6.1") (home-page "https://github.com/mbakke/ganeti-instance-guix") (source (origin (method git-fetch) @@ -893,15 +893,14 @@ commodity hardware.") (file-name (git-file-name name version)) (sha256 (base32 - "0aa08irpcpns6mhjgsplc5f0p8ab1qcr9ah1gj5z66kxgqyflzrp")))) + "18h8hdd38h1l89si8122v3ylzvvirs8hiypayklk1nr2wnfgbvff")))) (build-system gnu-build-system) (arguments '(#:configure-flags '("--sysconfdir=/etc" "--localstatedir=/var"))) (native-inputs (list autoconf automake)) (inputs - `(("util-linux" ,util-linux) - ("qemu-img" ,qemu-minimal))) + (list util-linux qemu-minimal)) (synopsis "Guix OS integration for Ganeti") (description "This package provides a guest OS definition for Ganeti that uses -- cgit v1.3 From 28c0a7cc8c5897433de525afa8f93e3ad7e71abd Mon Sep 17 00:00:00 2001 From: Stefan Reichör Date: Fri, 4 Feb 2022 22:53:07 +0100 Subject: gnu: python-honcho: Update to 1.1.0. * gnu/packages/python-xyz.scm (python-honcho): Update to 1.1.0. Signed-off-by: Marius Bakke --- gnu/packages/python-xyz.scm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 1b1dd4db32..d7e816415d 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -27,7 +27,7 @@ ;;; Copyright © 2016 Dylan Jeffers ;;; Copyright © 2016 David Craven ;;; Copyright © 2016-2022 Marius Bakke -;;; Copyright © 2016, 2017, 2021 Stefan Reichör +;;; Copyright © 2016, 2017, 2021, 2022 Stefan Reichör ;;; Copyright © 2016, 2017, 2019 Alex Vong ;;; Copyright © 2016, 2017, 2018, 2021 Arun Isaac ;;; Copyright © 2016, 2017, 2018, 2020, 2021 Julien Lepiller @@ -7914,7 +7914,7 @@ cluster without needing to write any wrapper code yourself.") (define-public python-honcho (package (name "python-honcho") - (version "1.0.1") + (version "1.1.0") (source (origin (method git-fetch) @@ -7923,7 +7923,7 @@ cluster without needing to write any wrapper code yourself.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "11bd87474qpif20xdcn0ra1idj5k16ka51i658wfpxwc6nzsn92b")))) + (base32 "1y0r8dw4pqcq7r4n58ixjdg1iy60lp0gxsd7d2jmhals16ij71rj")))) (build-system python-build-system) (native-inputs (list python-pytest python-mock python-tox which)) ;for tests @@ -7942,7 +7942,8 @@ cluster without needing to write any wrapper code yourself.") ;; It's easier to run tests after install. ;; Make installed package available for running the tests (add-installed-pythonpath inputs outputs) - (invoke "py.test" "-v")))))) + ;; Skip failing test_export + (invoke "py.test" "-v" "-k" "not test_export")))))) (home-page "https://github.com/nickstenning/honcho") (synopsis "Manage Procfile-based applications") (description -- cgit v1.3 From 0abeec834df241b02fc9e9510b20ca5bf8d36fad Mon Sep 17 00:00:00 2001 From: Jai Vetrivelan Date: Mon, 7 Feb 2022 18:20:52 +0530 Subject: gnu: picom: Update to 9. * gnu/packages/compton.scm (picom): Update to 9. Signed-off-by: Marius Bakke --- gnu/packages/compton.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/compton.scm b/gnu/packages/compton.scm index 290e06478b..1cf5276009 100644 --- a/gnu/packages/compton.scm +++ b/gnu/packages/compton.scm @@ -3,6 +3,7 @@ ;;; Copyright © 2018 Tobias Geerinckx-Rice ;;; Copyright © 2019 Alexandru-Sergiu Marton ;;; Copyright © 2019 Brett Gilio +;;; Copyright © 2022 Jai Vetrivelan ;;; ;;; This file is part of GNU Guix. ;;; @@ -110,7 +111,7 @@ performance). (define-public picom (package (name "picom") - (version "8.2") + (version "9") (source (origin (method git-fetch) @@ -119,7 +120,7 @@ performance). (commit (string-append "v" version)))) (sha256 (base32 - "0gjksayz2xpmgglvw17ppsan2imrd1fijs579kbf27xwp503xgfl")) + "0s3rf0lmkhhprx6vd5wsz1n0n55nprq6l1245pj525hrwxc1yvna")) (file-name (string-append "picom-" version)))) (build-system meson-build-system) (inputs -- cgit v1.3 From 5cc9f848640479e83c642ea68e390c9453333cf4 Mon Sep 17 00:00:00 2001 From: Jai Vetrivelan Date: Mon, 7 Feb 2022 19:07:11 +0530 Subject: gnu: rofi: Update to 1.7.3. * gnu/packages/xdisorg.scm (rofi): Update to 1.7.3. Signed-off-by: Marius Bakke --- gnu/packages/xdisorg.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index ec995c3496..5de6635a35 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -53,6 +53,7 @@ ;;; Copyright © 2021 Felix Gruber ;;; Copyright © 2021 jgart ;;; Copyright © 2022 John Kehayias +;;; Copyright © 2022 Jai Vetrivelan ;;; ;;; This file is part of GNU Guix. ;;; @@ -1691,7 +1692,7 @@ connectivity of the X server running on a particular @code{DISPLAY}.") (define-public rofi (package (name "rofi") - (version "1.7.2") + (version "1.7.3") (source (origin (method url-fetch) (uri (string-append "https://github.com/davatorium/rofi/" @@ -1699,7 +1700,7 @@ connectivity of the X server running on a particular @code{DISPLAY}.") version "/rofi-" version ".tar.xz")) (sha256 (base32 - "1kfp9ylynz8xgw11aa5k7b4iyq9z8zkqas1mpvs8wpzvnfr09ymd")))) + "0yxn9pmn9zp0k5ygnjqbj1pmp73g53wa47r145a8qcwqzxl8p1i5")))) (build-system gnu-build-system) (native-inputs (list bison -- cgit v1.3 From 03b8798df18940e100f239e9e053ab42b156fcd1 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Mon, 7 Feb 2022 23:46:39 +0100 Subject: gnu: samba: Update to 4.15.5 [security fixes]. This fixes CVE-2021-44141, CVE-2021-44142, and CVE-2022-0336. * gnu/packages/samba.scm (samba): Update to 4.15.5. --- gnu/packages/samba.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/samba.scm b/gnu/packages/samba.scm index 4330b1b9af..b775ad905c 100644 --- a/gnu/packages/samba.scm +++ b/gnu/packages/samba.scm @@ -183,14 +183,14 @@ external dependencies.") (define-public samba (package (name "samba") - (version "4.15.3") + (version "4.15.5") (source (origin (method url-fetch) (uri (string-append "https://download.samba.org/pub/samba/stable/" "samba-" version ".tar.gz")) (sha256 - (base32 "1nrp85aya0pbbqdqjaqcw82cnzzys16yls37hi2h6mci8d09k4si")))) + (base32 "0zyid2np45kl8hzp9fjqwvn5lxj766a4f0mya58vldqrhcrmw4b9")))) (build-system gnu-build-system) (arguments (list -- cgit v1.3 From 58f9e034ba305aa5baec7d17b5dba58154c359f2 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 7 Feb 2022 23:59:01 +0100 Subject: gnu: seahorse-adventures: Update to 1.4. * gnu/packages/games.scm (seahorse-adventures): Update to 1.4. --- gnu/packages/games.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index f9103c3232..84295888ab 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -2361,16 +2361,16 @@ can be explored and changed freely.") (define-public seahorse-adventures (package (name "seahorse-adventures") - (version "1.3") + (version "1.4") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/dulsi/seahorse-adventures") - (commit (string-append "release-" version)))) + (commit (string-append "Release-" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0m53jh2gchzr7rs35hml6lbvc5kb5hp229wlfqa09098b7hhl15a")) + (base32 "1dxysa79cz5mflr2953fyk838h1jwvi1ngn8wlpms0ag35yv21s8")) (modules '((guix build utils) (ice-9 ftw) (srfi srfi-1))) -- cgit v1.3 From d1c0081166a3155adb2ec1f1521b0cc647153f0f Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 8 Feb 2022 00:01:43 +0100 Subject: gnu: seahorse-adventures: Remove trailing #T from phases and snippet. * gnu/packages/games.scm (seahorse-adventures)[origin]<#:snippet>: Remove trailing #T. [arguments]<#:phases>: Remove trailing #T. --- gnu/packages/games.scm | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 84295888ab..a41c4198a9 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -2377,8 +2377,7 @@ can be explored and changed freely.") ;; Remove non-free (non-commercial) font. (snippet `(begin - (for-each delete-file (find-files "data/fonts" ".")) - #t)))) + (for-each delete-file (find-files "data/fonts" ".")))))) (build-system python-build-system) (arguments `(#:tests? #f ;no test @@ -2435,8 +2434,7 @@ can be explored and changed freely.") (copy-file (string-append "icon" size ".png") (string-append dir "/searhorse-adventures.png")))) - '("32" "64" "128"))) - #t)) + '("32" "64" "128"))))) (add-after 'install 'unbundle-fonts ;; Unbundle Bitstream Vera font and replace deleted one. (lambda* (#:key outputs inputs #:allow-other-keys) @@ -2453,8 +2451,7 @@ can be explored and changed freely.") '("default" "gray"))) (symlink vera (string-append data "/data/fonts/04B_20__.TTF")) (substitute* (string-append data "/lib/main.py") - (("f_scale = 0.35") "f_scale = 0.47"))) - #t))))) + (("f_scale = 0.35") "f_scale = 0.47")))))))) (inputs (list font-bitstream-vera python-pygame)) (home-page "http://www.imitationpickles.org/barbie/") -- cgit v1.3 From 64c599c9a33e83d64609a8791fcd8685fc1b9b61 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 8 Feb 2022 00:06:23 +0100 Subject: gnu: seahorse-adventures: Use G-expressions. * gnu/packages/games.scm (seahorse-adventures)[origin]: [arguments]<#:phases>: Use G-expressions. --- gnu/packages/games.scm | 141 +++++++++++++++++++++++++------------------------ 1 file changed, 71 insertions(+), 70 deletions(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index a41c4198a9..26270a4aec 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -2376,82 +2376,83 @@ can be explored and changed freely.") (srfi srfi-1))) ;; Remove non-free (non-commercial) font. (snippet - `(begin - (for-each delete-file (find-files "data/fonts" ".")))))) + #~(begin + (for-each delete-file (find-files "data/fonts" ".")))))) (build-system python-build-system) (arguments - `(#:tests? #f ;no test - #:phases - (modify-phases %standard-phases - (delete 'build) ;pure Python - (replace 'install ;no install script - (lambda* (#:key outputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out")) - (bin (string-append out "/bin")) - (share (string-append out "/share")) - (applications (string-append share "/applications")) - (data (string-append share "/seahorse-adventures"))) - ;; Install data. - (for-each (lambda (f) - (chmod f #o555) - (install-file f data)) - '("leveledit.py" "run_game.py" "tileedit.py")) - (for-each (lambda (dir) - (let ((target (string-append data "/" dir))) - (mkdir-p target) - (copy-recursively dir target))) - '("data" "lib")) - ;; Create executable. - (mkdir-p bin) - (let ((executable (string-append bin "/seahorse-adventures"))) - (call-with-output-file executable - (lambda (p) - (format p - "#!~a~@ + (list + #:tests? #f ;no test + #:phases + #~(modify-phases %standard-phases + (delete 'build) ;pure Python + (replace 'install ;no install script + (lambda* (#:key inputs #:allow-other-keys) + (let* ((bin (string-append #$output "/bin")) + (share (string-append #$output "/share")) + (applications (string-append share "/applications")) + (data (string-append share "/seahorse-adventures"))) + ;; Install data. + (for-each (lambda (f) + (chmod f #o555) + (install-file f data)) + '("leveledit.py" "run_game.py" "tileedit.py")) + (for-each (lambda (dir) + (let ((target (string-append data "/" dir))) + (mkdir-p target) + (copy-recursively dir target))) + '("data" "lib")) + ;; Create executable. + (mkdir-p bin) + (let ((executable (string-append bin "/seahorse-adventures"))) + (call-with-output-file executable + (lambda (p) + (format p + "#!~a~@ export GUIX_PYTHONPATH=~a:~a~@ exec -a \"~a\" ~a \"$@\"~%" - (which "bash") data (getenv "GUIX_PYTHONPATH") - (which "python3") - (string-append data "/run_game.py")))) - (chmod executable #o555)) - ;; Add desktop file. - (mkdir-p applications) - (make-desktop-entry-file - (string-append applications "/seahorse-adventures.desktop") - #:name "Seahorse Adventures" - #:comment - '((#f "Help Barbie the seahorse float on bubbles to the moon")) - #:exec ,name - #:icon ,name - #:categories '("Game" "ActionGame") - #:keywords '("game" "retro" "platform")) - ;; Add icons. - (for-each - (lambda (size) - (let ((dir (string-append share "/icons/hicolor/" - size "x" size "/apps"))) - (mkdir-p dir) - (copy-file - (string-append "icon" size ".png") - (string-append dir "/searhorse-adventures.png")))) - '("32" "64" "128"))))) - (add-after 'install 'unbundle-fonts - ;; Unbundle Bitstream Vera font and replace deleted one. - (lambda* (#:key outputs inputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out")) - (data (string-append out "/share/seahorse-adventures")) + (search-input-file inputs "/bin/bash") + data + (getenv "GUIX_PYTHONPATH") + (search-input-file inputs "/bin/python3") + (string-append data "/run_game.py")))) + (chmod executable #o555)) + ;; Add desktop file. + (mkdir-p applications) + (make-desktop-entry-file + (string-append applications "/seahorse-adventures.desktop") + #:name "Seahorse Adventures" + #:comment + '((#f "Help Barbie the seahorse float on bubbles to the moon")) + #:exec #$name + #:icon #$name + #:categories '("Game" "ActionGame") + #:keywords '("game" "retro" "platform")) + ;; Add icons. + (for-each + (lambda (size) + (let ((dir (string-append share "/icons/hicolor/" + size "x" size "/apps"))) + (mkdir-p dir) + (copy-file + (string-append "icon" size ".png") + (string-append dir "/searhorse-adventures.png")))) + '("32" "64" "128"))))) + (add-after 'install 'unbundle-fonts + ;; Unbundle Bitstream Vera font and replace deleted one. + (lambda* (#:key inputs #:allow-other-keys) + (let ((data (string-append #$output "/share/seahorse-adventures")) (vera (search-input-file inputs "/share/fonts/truetype/Vera.ttf"))) - (let ((themes-dir (string-append data "/data/themes/"))) - (for-each - (lambda (theme) - (let ((target (string-append themes-dir theme "/Vera.ttf"))) - (delete-file target) - (symlink vera target))) - '("default" "gray"))) - (symlink vera (string-append data "/data/fonts/04B_20__.TTF")) - (substitute* (string-append data "/lib/main.py") - (("f_scale = 0.35") "f_scale = 0.47")))))))) + (let ((themes-dir (string-append data "/data/themes/"))) + (for-each + (lambda (theme) + (let ((target (string-append themes-dir theme "/Vera.ttf"))) + (delete-file target) + (symlink vera target))) + '("default" "gray"))) + (symlink vera (string-append data "/data/fonts/04B_20__.TTF")) + (substitute* (string-append data "/lib/main.py") + (("f_scale = 0.35") "f_scale = 0.47")))))))) (inputs (list font-bitstream-vera python-pygame)) (home-page "http://www.imitationpickles.org/barbie/") -- cgit v1.3 From c7885577523567c10e3120a61c711ac7007f2ace Mon Sep 17 00:00:00 2001 From: Niklas Eklund Date: Tue, 8 Feb 2022 00:35:28 +0100 Subject: gnu: Add emacs-popper. * gnu/packages/emacs-xyz.scm (emacs-popper): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index bec613e381..5395626493 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -7292,6 +7292,30 @@ and popup menus.") autocomplete style popup menu.") (license license:gpl3+)))) +(define-public emacs-popper + ;; No tagged release upstream for version 0.45. The commit below matches + ;; version bump. + (let ((commit "851d83882192ac9599ac5b053614a42d683b3fab")) + (package + (name "emacs-popper") + (version "0.45") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/karthink/popper") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0pk5wzqlz7n6v8rb1957i3ql0wjx578l68a3rp2m9pxr7a8a03h4")))) + (build-system emacs-build-system) + (home-page "https://github.com/karthink/popper") + (synopsis "Emacs minor-mode to summon and dismiss buffers easily") + (description + "Popper is a minor-mode to tame the flood of ephemeral +windows Emacs produces, while still keeping them within arm’s reach.") + (license license:gpl3+)))) + (define-public emacs-python-black (package (name "emacs-python-black") -- cgit v1.3 From 70b76c47b0442d9b54c26b398b7be7bba06ab4f1 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 8 Feb 2022 00:47:24 +0100 Subject: gnu: thinkfan: Update to 1.3.1. * gnu/packages/linux.scm (thinkfan): Update to 1.3.1. --- gnu/packages/linux.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index ce462a57ed..3f68063bdd 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -11,7 +11,7 @@ ;;; Copyright © 2016, 2017 Alex Kost ;;; Copyright © 2016 Raymond Nicholson ;;; Copyright © 2016 Mathieu Lirzin -;;; Copyright © 2016, 2018–2022 Nicolas Goaziou +;;; Copyright © 2016, 2018-2022 Nicolas Goaziou ;;; Copyright © 2016, 2018, 2019, 2020, 2021 Ricardo Wurmus ;;; Copyright © 2016 David Craven ;;; Copyright © 2016 John Darrington @@ -5897,7 +5897,7 @@ feature, and a laptop with an accelerometer. It has no effect on SSDs.") (define-public thinkfan (package (name "thinkfan") - (version "1.3.0") + (version "1.3.1") (source (origin (method git-fetch) @@ -5906,7 +5906,7 @@ feature, and a laptop with an accelerometer. It has no effect on SSDs.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1whdhf3aw0g4xwbn1csy2wz6g1hw5nlw64r91nnxba9qn25nl9k4")))) + (base32 "07l7cxbsyvy7awa1zk0zxng60749idvsx3535iginhkqxfzij4b9")))) (build-system cmake-build-system) (arguments `(#:modules ((guix build cmake-build-system) -- cgit v1.3 From cd6879cf97000ee4ee554273b12d25f8bee27b66 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 8 Feb 2022 00:51:48 +0100 Subject: gnu: thinkfan: Use G-expressions. * gnu/packages/linux.scm (thinkfan)[arguments]<#:configure-flags, #:phases>: Use G-expressions. --- gnu/packages/linux.scm | 50 ++++++++++++++++++++++++-------------------------- 1 file changed, 24 insertions(+), 26 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 3f68063bdd..05dc1b6384 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -5909,34 +5909,32 @@ feature, and a laptop with an accelerometer. It has no effect on SSDs.") (base32 "07l7cxbsyvy7awa1zk0zxng60749idvsx3535iginhkqxfzij4b9")))) (build-system cmake-build-system) (arguments - `(#:modules ((guix build cmake-build-system) + (list + #:modules '((guix build cmake-build-system) (guix build utils) (srfi srfi-26)) - #:tests? #f ; no test target - #:configure-flags - ;; Enable reading temperatures from hard disks via S.M.A.R.T. - ;; Upstream ‘defaults to OFF because libatasmart seems to be horribly - ;; inefficient’. - `("-DUSE_ATASMART:BOOL=ON") - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'create-init-scripts - ;; CMakeLists.txt relies on build-time symptoms of OpenRC and - ;; systemd to patch and install their service files. Fake their - ;; presence rather than duplicating the build system below. Leave - ;; things like ‘/bin/kill’ because they're not worth a dependency. - ;; The sysvinit needs manual patching, but since upstream doesn't - ;; even provide the option to install it: don't. - (lambda* (#:key outputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out")) - (share (string-append out "/share/" ,name))) - (substitute* "CMakeLists.txt" - (("pkg_check_modules\\((OPENRC|SYSTEMD) .*" _ package) - (format #f "option(~a_FOUND \"Faked\" ON)\n" package)) - ;; That was easy! Now we just need to fix the destinations. - (("/etc" directory) - (string-append out directory))) - #t)))))) + #:tests? #f ; no test target + #:configure-flags + ;; Enable reading temperatures from hard disks via S.M.A.R.T. + ;; Upstream ‘defaults to OFF because libatasmart seems to be horribly + ;; inefficient’. + #~(list "-DUSE_ATASMART:BOOL=ON") + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'create-init-scripts + ;; CMakeLists.txt relies on build-time symptoms of OpenRC and + ;; systemd to patch and install their service files. Fake their + ;; presence rather than duplicating the build system below. Leave + ;; things like ‘/bin/kill’ because they're not worth a dependency. + ;; The sysvinit needs manual patching, but since upstream doesn't + ;; even provide the option to install it: don't. + (lambda _ + (substitute* "CMakeLists.txt" + (("pkg_check_modules\\((OPENRC|SYSTEMD) .*" _ package) + (format #f "option(~a_FOUND \"Faked\" ON)\n" package)) + ;; That was easy! Now we just need to fix the destinations. + (("/etc" directory) + (string-append #$output directory)))))))) (native-inputs (list pkg-config)) (inputs -- cgit v1.3 From 3610927bc020c65a6daaa40876df0bdd4df814c8 Mon Sep 17 00:00:00 2001 From: Jai Vetrivelan Date: Tue, 8 Feb 2022 05:18:08 +0530 Subject: gnu: Add emacs-volatile-highlights. * gnu/packages/emacs-xyz.scm (emacs-volatile-highlights): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 5395626493..879eaffa23 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -30336,6 +30336,30 @@ which sends the current buffer to the World Wide Web Consortium’s HTML Validator service and displays the results in a buffer in Compilation mode.") (license license:gpl3+)))) +(define-public emacs-volatile-highlights + ;; XXX: Upstream does not tag releases. Commit below matches version bump. + (let ((commit "9a20091f0ce7fc0a6b3e641a6a46d5f3ac4d8392")) + (package + (name "emacs-volatile-highlights") + (version "1.15") + (source (origin + (method git-fetch) + (uri (git-reference + (url "http://github.com/k-talo/volatile-highlights.el") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1dsa6769lphyyv7yg92vkkpk395w52q4m7hdn8xy7s6lh5c6a955")))) + (build-system emacs-build-system) + (home-page "http://github.com/k-talo/volatile-highlights.el") + (synopsis "Emacs minor mode for visual feedback on some operations") + (description "@code{volatile-highlights-mode} brings visual feedback to +some operations by highlighting portions relating to the operations. All of +highlights made by this library will be removed when any new operation is +executed.") + (license license:gpl3+)))) + (define-public emacs-global-tags (let ((commit "06db25d91cc8bfb5e24e02adc04de1226c7e742d") (revision "0")) -- cgit v1.3 From 63d5efd92b7e0cb86fb17c48e29f629f5b74e767 Mon Sep 17 00:00:00 2001 From: Andrew Tropin Date: Mon, 7 Feb 2022 18:04:26 +0300 Subject: gnu: Add emacs-mct. * gnu/packages/emacs-xyz.scm (emacs-mct): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 879eaffa23..56af72b2ab 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -994,6 +994,29 @@ process, passing on the arguments as command line arguments.") "Magit-annex adds a few git-annex operations to the Magit interface.") (license license:gpl3+))) +(define-public emacs-mct + (package + (name "emacs-mct") + (version "0.4.2") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.com/protesilaos/mct") + (commit version))) + (sha256 + (base32 "0sj9hyxpighspwrm2yimqkdxlhw2yiznaj69ysn2sjd6jn2aqpc6")) + (file-name (git-file-name name version)))) + (build-system emacs-build-system) + (home-page "https://protesilaos.com/emacs/mct") + (synopsis "Enhancement of the default Emacs minibuffer completion UI") + (description "Minibuffer and Completions in Tandem, also known as MCT, or +mct.el, is an Emacs package that enhances the default minibuffer and +@samp{*Completions*} buffer so that they work together as part of a unified +framework. The idea is to make the presentation and overall functionality be +consistent with other popular, vertically aligned completion UIs while +leveraging built-in functionality.") + (license license:gpl3+))) + (define-public emacs-minions (package (name "emacs-minions") -- cgit v1.3 From eb0dd063a0687301b6d805feaf4b1ada87f6e120 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 8 Feb 2022 00:26:00 -0500 Subject: gnu: Add pict. * gnu/packages/check.scm (pict): New variable. --- gnu/packages/check.scm | 40 +++++++++++++++++++++++++++++++++++++++- 1 file changed, 39 insertions(+), 1 deletion(-) diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 5a2304b436..4915a5ec88 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -35,7 +35,7 @@ ;;; Copyright © 2020 Josh Marshall ;;; Copyright © 2020 Vinicius Monego ;;; Copyright © 2020 Tanguy Le Carrour -;;; Copyright © 2020, 2021 Maxim Cournoyer +;;; Copyright © 2020, 2021, 2022 Maxim Cournoyer ;;; Copyright © 2021 Hugo Lecomte ;;; ;;; This file is part of GNU Guix. @@ -90,6 +90,44 @@ #:use-module (guix build-system trivial) #:use-module (srfi srfi-1)) +(define-public pict + (package + (name "pict") + (version "3.7.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Microsoft/pict") + ;; The tag name for v3.7.2 is odd ("release"); use the + ;; corresponding commit for now. + (commit "b10237099713ef0e45f222042cef01dc3507a611"))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1hpff8x49ixlh71sbyhj1rircf0mg95v5q9y0ys52rhiph99wy3n")))) + (build-system gnu-build-system) + (arguments + (list + #:test-target "test" + #:phases + #~(modify-phases %standard-phases + (delete 'configure) + (replace 'install + (lambda _ + (install-file "pict" (string-append #$output "/bin"))))))) + (native-inputs (list perl)) + (home-page "https://www.pairwise.org/") + (synopsis "Pairwise Independent Combinatorial Tool") + (description "PICT is a pairwise testing tool that generates test cases +and test configurations. With PICT, you can generate tests that are more +effective than manually generated tests and in a fraction of the time required +by hands-on test case design. PICT runs as a command line tool. It takes a +model file detailing the parameters of the interface as an input and generates +a compact set of parameter value choices that represent the test cases you +should use to get comprehensive combinatorial coverage of your parameters.") + (license license:expat))) + (define-public pedansee (package (name "pedansee") -- cgit v1.3 From e37e7195e9f2157fe17d36536507ace7d33ef984 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 8 Feb 2022 11:59:22 +0200 Subject: gnu: poke: Update to 2.1. * gnu/packages/engineering.scm (poke): Update to 2.1. --- gnu/packages/engineering.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index 8464397958..ca665385bc 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -2814,13 +2814,13 @@ GUI.") (define-public poke (package (name "poke") - (version "2.0") + (version "2.1") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/poke/poke-" version ".tar.gz")) (sha256 - (base32 "0n4sdfi0lwmva9h47xz32r6mwpaslhq2mcls1ifgpj8jw7rjp0jv")) + (base32 "0w168jcjahl3jawkhnh0dc10mcw4nwv4yawwc8xhqm5w3dn8wlnd")) (modules '((guix build utils))) (snippet '(begin -- cgit v1.3 From c8af59e845ab1372082a4d00d5da46fd13344d20 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 8 Feb 2022 12:06:56 +0200 Subject: gnu: efl: Update to 1.26.2. * gnu/packages/enlightenment.scm (efl): Update to 1.26.2. --- gnu/packages/enlightenment.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm index f1013af43d..254002d1ca 100644 --- a/gnu/packages/enlightenment.scm +++ b/gnu/packages/enlightenment.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015 Tomáš Čech ;;; Copyright © 2015 Daniel Pimentel -;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner +;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 Efraim Flashner ;;; Copyright © 2017 Nikita ;;; Copyright © 2018, 2019, 2020 Tobias Geerinckx-Rice ;;; Copyright © 2018 Timo Eisenmann @@ -70,7 +70,7 @@ (define-public efl (package (name "efl") - (version "1.26.1") + (version "1.26.2") (source (origin (method url-fetch) (uri (string-append @@ -78,7 +78,7 @@ version ".tar.xz")) (sha256 (base32 - "0hm6i1f2g4mwj726rc6na38xhys1plbv9swrlc9hrpa87mz6gac6")))) + "071h0pscbd8g341yy5rz9mk1xn8yhryldhl6mmr1y6lafaycyy99")))) (build-system meson-build-system) (native-inputs `(("check" ,check) -- cgit v1.3 From fb6714d13f734e2ebea2ef7d42f57013dd124478 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 8 Feb 2022 12:07:41 +0200 Subject: gnu: efl: Build with librsvg-for-system. * gnu/packages/enlightenment.scm (efl)[inputs]: Replace conditional librsvg with librsvg-for-system. [arguments]: Remove configure-flag disabling librsvg support. --- gnu/packages/enlightenment.scm | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm index 254002d1ca..c7832b144c 100644 --- a/gnu/packages/enlightenment.scm +++ b/gnu/packages/enlightenment.scm @@ -93,11 +93,7 @@ ("ibus" ,ibus) ("mesa" ,mesa) ("libraw" ,libraw) - ;; Only enable the optional SVG support on x86_64, as this is the only - ;; architecture where librsvg can be built. - ,@(if (target-x86-64?) - `(("librsvg" ,librsvg)) - '()) + ("librsvg" ,(librsvg-for-system)) ("libspectre" ,libspectre) ("libtiff" ,libtiff) ("libxau" ,libxau) @@ -151,11 +147,6 @@ "-Dmount-path=/run/setuid-programs/mount" "-Dunmount-path=/run/setuid-programs/umount" "-Dnetwork-backend=connman" - ;; Add 'rsvg' to the default list (json, avif, heif) of disabled loaders - ;; unless librsvg is available. - ,,@(if (target-x86-64?) - '() - (list "-Devas-loaders-disabler=json,avif,heif,rsvg")) ;; For Wayland. "-Dwl=true" "-Ddrm=true") -- cgit v1.3 From 8b8fdeafc225b72f8a95604b83e7d1984e3a5218 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 8 Feb 2022 12:08:35 +0200 Subject: gnu: enlightenment: Update to 0.25.2. * gnu/packages/enlightenment.scm (enlightenment): Update to 0.25.2. --- gnu/packages/enlightenment.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm index c7832b144c..fc8192ee7f 100644 --- a/gnu/packages/enlightenment.scm +++ b/gnu/packages/enlightenment.scm @@ -288,7 +288,7 @@ Libraries with some extra bells and whistles.") (define-public enlightenment (package (name "enlightenment") - (version "0.25.1") + (version "0.25.2") (source (origin (method url-fetch) (uri @@ -296,7 +296,7 @@ Libraries with some extra bells and whistles.") "enlightenment/enlightenment-" version ".tar.xz")) (sha256 (base32 - "0i1424vsc929h36hx04646pbrjiya6nc1nqr6s15xwvfv7imzw1c")) + "049qbvg1xr97zqb5sf2kcly2nr9fqxrq7b92vznksia1bs0hcfhj")) (patches (search-patches "enlightenment-fix-setuid-path.patch")))) (build-system meson-build-system) (arguments -- cgit v1.3 From 71438cd4222a02b1f89152437c1ea20499baa6a2 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 8 Feb 2022 12:14:11 +0200 Subject: gnu: enlightenment: Patch dlopen of ddcutil. * gnu/packages/enlightenment.scm (enlightenment)[inputs]: Add ddcutil. [arguments]: Adjust custom 'set-system-actions phase to patch dlopen of libddcutil. --- gnu/packages/enlightenment.scm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm index fc8192ee7f..aa9ebf04e9 100644 --- a/gnu/packages/enlightenment.scm +++ b/gnu/packages/enlightenment.scm @@ -48,6 +48,7 @@ #:use-module (gnu packages gnome) #:use-module (gnu packages gstreamer) #:use-module (gnu packages gtk) + #:use-module (gnu packages hardware) #:use-module (gnu packages ibus) #:use-module (gnu packages image) #:use-module (gnu packages libunwind) @@ -313,6 +314,7 @@ Libraries with some extra bells and whistles.") (setxkbmap (assoc-ref inputs "setxkbmap")) (libc (assoc-ref inputs "libc")) (bc (assoc-ref inputs "bc")) + (ddcutil (assoc-ref inputs "ddcutil")) (efl (assoc-ref inputs "efl"))) ;; We need to patch the path to 'base.lst' to be able ;; to switch the keyboard layout in E. @@ -338,6 +340,9 @@ Libraries with some extra bells and whistles.") "/run/current-system/profile/sbin"))) (substitute* "src/modules/everything/evry_plug_calc.c" (("bc -l") (string-append bc "/bin/bc -l"))) + (substitute* "src/bin/system/e_system_ddc.c" + (("libddcutil\\.so\\.?" libddcutil) + (string-append ddcutil "/lib/" libddcutil))) (substitute* "data/etc/meson.build" (("/bin/mount") "/run/setuid-programs/mount") (("/bin/umount") "/run/setuid-programs/umount") @@ -352,6 +357,7 @@ Libraries with some extra bells and whistles.") ("bc" ,bc) ("bluez" ,bluez) ("dbus" ,dbus) + ("ddcutil" ,ddcutil) ("freetype" ,freetype) ("libdrm" ,libdrm) ("libexif" ,libexif) -- cgit v1.3 From 6d357541021578914eba7bb33d2529a6744de36d Mon Sep 17 00:00:00 2001 From: Ryan Sundberg via Guix-patches via Date: Mon, 7 Feb 2022 21:28:13 -0800 Subject: gnu: clojure-data-xml: Fix test suite Removes clojurescript related tests that interfere with the JDK clojure test suite, causing it to fail. * gnu/packages/clojure.scm (clojure-data-xml)[arguments]: Add 'delete-cljs-tests phase Signed-off-by: Julien Lepiller --- gnu/packages/clojure.scm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/gnu/packages/clojure.scm b/gnu/packages/clojure.scm index 40a3d7708a..e6eb749501 100644 --- a/gnu/packages/clojure.scm +++ b/gnu/packages/clojure.scm @@ -332,8 +332,14 @@ is on par with Java implementations, e.g., Apache commons-codec.") (build-system clojure-build-system) (arguments '(#:source-dirs '("src/main/clojure") - #:test-dirs '("src/test/clojure") - #:doc-dirs '())) + #:test-dirs '("src/test/clojure" "src/test/resources") + #:doc-dirs '() + #:phases + (modify-phases %standard-phases + (add-before 'build 'delete-cljs-tests + (lambda _ + (delete-file "src/test/resources/clojure/data/xml/cljs_testsuite.clj") + (delete-file "src/test/clojure/clojure/data/xml/test_cljs.clj")))))) (propagated-inputs (list clojure-data-codec)) (synopsis "Clojure library for reading and writing XML data") (description "@code{data.xml} is a Clojure library for reading and writing -- cgit v1.3 From 2df2d34803ae6563caf6adc654cd40bcda725efe Mon Sep 17 00:00:00 2001 From: Andrew Tropin Date: Mon, 7 Feb 2022 09:26:20 +0300 Subject: gnu: waybar: Update to 0.9.9. * gnu/packages/wm.scm (waybar): Update to 0.9.9. Signed-off-by: Julien Lepiller --- gnu/packages/wm.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index 9e11b599c3..f39df605e7 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -1725,7 +1725,7 @@ display a clock or apply image manipulation techniques to the background image." (define-public waybar (package (name "waybar") - (version "0.9.8") + (version "0.9.9") (source (origin (method git-fetch) @@ -1734,7 +1734,7 @@ display a clock or apply image manipulation techniques to the background image." (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "109a49f064ma5js2d7maribmfalswbmmhq2fraa7hfz5pf2jxs2w")))) + (base32 "0bp9ygqv3kawwxf53j1r98r0xxg81cx00jsmymmlrd8psgsd6yy9")))) (build-system meson-build-system) (inputs (list date fmt -- cgit v1.3 From a946d2d2edd4d91f94f1b7c479ba42dafd3d5e59 Mon Sep 17 00:00:00 2001 From: jgart Date: Sun, 6 Feb 2022 21:00:19 -0500 Subject: gnu: font-jetbrains-mono: Update to 2.242. * gnu/packages/fonts.scm (font-jetbrains-mono): Update to 2.242. Signed-off-by: Julien Lepiller --- gnu/packages/fonts.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 8afb453970..536892ee0d 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -1995,7 +1995,7 @@ This package provides the TrueType fonts.") (define-public font-jetbrains-mono (package (name "font-jetbrains-mono") - (version "2.221") + (version "2.242") (source (origin (method url-fetch) @@ -2003,7 +2003,7 @@ This package provides the TrueType fonts.") (string-append "https://github.com/JetBrains/JetBrainsMono/releases/" "download/v" version "/JetBrainsMono-" version ".zip")) (sha256 - (base32 "1acrgv2q9vxviirpi01xy67pkkswyssw4dn5pgyvrnjxr85cgjrg")))) + (base32 "17qs985v38x3rcg3v4av3qynwr4gvixrj50vjzy7zkkny575ncaf")))) (build-system font-build-system) (arguments `(#:phases -- cgit v1.3 From 7c5366daa9b5babae253d5e8c3b89858e094b807 Mon Sep 17 00:00:00 2001 From: Jai Vetrivelan Date: Tue, 8 Feb 2022 07:09:49 +0530 Subject: gnu: rofi-calc: Update to 2.1.0. * gnu/packages/xdisorg.scm (rofi-calc): Update to 2.1.0. Signed-off-by: Julien Lepiller --- gnu/packages/xdisorg.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 5de6635a35..42452d0721 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -1746,7 +1746,7 @@ by name.") (define-public rofi-calc (package (name "rofi-calc") - (version "2.0.0") + (version "2.1.0") (source (origin (method git-fetch) @@ -1756,7 +1756,7 @@ by name.") (file-name (git-file-name name version)) (sha256 (base32 - "1j23xwa6s27wyx6r0yb85cby6dggrcb103nqcfxr5li1mcqrgd9m")))) + "021z7hwvdcs3g7icyp6xhry0xlq29gg1288hg2kzyzqq4l2irxdi")))) (build-system gnu-build-system) (arguments (list -- cgit v1.3 From 2c1cb323b0f14e5621d19469b7282e568ed42f62 Mon Sep 17 00:00:00 2001 From: Jai Vetrivelan Date: Tue, 8 Feb 2022 06:45:16 +0530 Subject: gnu: gallery-dl: Update to 1.20.3. * gnu/packages/video.scm (gallery-dl): Update to 1.20.3. Signed-off-by: Julien Lepiller --- gnu/packages/video.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index b3e6e5ef7b..244d12028d 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -59,6 +59,7 @@ ;;; Copyright © 2021 Pradana Aumars ;;; Copyright © 2022 Denis 'GNUtoo' Carikli ;;; Copyright © 2022 Bird +;;; Copyright © 2022 Jai Vetrivelan ;;; ;;; This file is part of GNU Guix. ;;; @@ -2263,7 +2264,7 @@ the last played position, etc.") (define-public gallery-dl (package (name "gallery-dl") - (version "1.20.1") + (version "1.20.3") (source (origin (method url-fetch) (uri (string-append "https://github.com/mikf/gallery-dl" @@ -2271,7 +2272,7 @@ the last played position, etc.") version ".tar.gz")) (sha256 (base32 - "0qkz8aznvybdqrjxsl6ir319ras05mi8l0sal4mgi18l70jndh51")))) + "0mh57fbq9xkkhqiy7cq5ahwjp464hgxmkrvq0pxxr85212yrf7bd")))) (build-system python-build-system) (inputs (list python-requests ffmpeg)) (home-page "https://github.com/mikf/gallery-dl") -- cgit v1.3 From 35d56676db0988aad6d1a5b52dc4efef578885f2 Mon Sep 17 00:00:00 2001 From: "Artyom V. Poptsov" Date: Sat, 5 Feb 2022 17:44:06 +0300 Subject: gnu: guile-dsv: Update to 0.5.1 * gnu/packages/guile-xyz.scm (guile-dsv): Update to 0.5.1. Signed-off-by: Julien Lepiller --- gnu/packages/guile-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index c3b6be3754..b61be0acfc 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -547,7 +547,7 @@ you send to a FIFO file.") (define-public guile-dsv (package (name "guile-dsv") - (version "0.5.0") + (version "0.5.1") (source (origin (method git-fetch) (uri (git-reference @@ -556,7 +556,7 @@ you send to a FIFO file.") (file-name (string-append name "-" version "-checkout")) (sha256 (base32 - "0s9zan08ala7432pn44z3vmb3sc19rf18zfr9mskydnam5xn6qlw")))) + "10wssilin4qphdmmqmms20bp3cy007kh22l1g45wfka0minmhkgs")))) (build-system gnu-build-system) (native-inputs (list autoconf automake pkg-config texinfo)) -- cgit v1.3 From 6207da50e2fe919b36b40bf9aac6e6f1e60401a8 Mon Sep 17 00:00:00 2001 From: Alice BRENON Date: Wed, 26 Jan 2022 09:27:12 +0100 Subject: import: utils: Harden beautify-description. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * guix/import/utils.scm (beautify-description): Handle non-string arguments. [use-modules]: Explicitly import G_ from (guix i18n) and make (guix ui) import explicit. * guix/import/opam.scm: [use-modules] Make imports explicit for module (guix import utils). Signed-off-by: Ludovic Courtès --- guix/import/opam.scm | 8 ++++++-- guix/import/utils.scm | 7 ++++++- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/guix/import/opam.scm b/guix/import/opam.scm index a6f6fe8c9f..f569c921b1 100644 --- a/guix/import/opam.scm +++ b/guix/import/opam.scm @@ -3,7 +3,7 @@ ;;; Copyright © 2020 Martin Becze ;;; Copyright © 2021 Xinglu Chen ;;; Copyright © 2021 Sarah Morgensen -;;; Copyright © 2021 Alice Brenon +;;; Copyright © 2021, 2022 Alice Brenon ;;; ;;; This file is part of GNU Guix. ;;; @@ -42,7 +42,11 @@ #:use-module ((guix utils) #:select (cache-directory version>? call-with-temporary-output-file)) - #:use-module (guix import utils) + #:use-module ((guix import utils) #:select (beautify-description + guix-hash-url + recursive-import + spdx-string->license + url-fetch)) #:use-module ((guix licenses) #:prefix license:) #:export (opam->guix-package opam-recursive-import diff --git a/guix/import/utils.scm b/guix/import/utils.scm index 1c3cfa3e0b..9cadbb3d5f 100644 --- a/guix/import/utils.scm +++ b/guix/import/utils.scm @@ -10,6 +10,7 @@ ;;; Copyright © 2021 Maxim Cournoyer ;;; Copyright © 2021 Sarah Morgensen ;;; Copyright © 2021 Xinglu Chen +;;; Copyright © 2022 Alice Brenon ;;; ;;; This file is part of GNU Guix. ;;; @@ -37,10 +38,11 @@ #:use-module (guix discovery) #:use-module (guix build-system) #:use-module (guix gexp) + #:use-module ((guix i18n) #:select (G_)) #:use-module (guix store) #:use-module (guix download) #:use-module (guix sets) - #:use-module (guix ui) + #:use-module ((guix ui) #:select (fill-paragraph)) #:use-module (gnu packages) #:use-module (ice-9 match) #:use-module (ice-9 rdelim) @@ -241,6 +243,9 @@ with dashes." a proper sentence and by using two spaces between sentences, and wrap lines at LENGTH characters." (let ((cleaned (cond + ((not (string? description)) + (G_ "This package lacks a description. Run \ +\"info '(guix) Synopses and Descriptions'\" for more information.")) ((string-prefix? "A " description) (string-append "This package provides a" (substring description 1))) -- cgit v1.3 From 4469990f2e4b300781c93dfd41a82c41611842e3 Mon Sep 17 00:00:00 2001 From: Greg Hogan Date: Wed, 3 Nov 2021 15:20:51 +0000 Subject: gnu: Add bloomberg-bde-tools. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/cpp.scm (bloomberg-bde-tools): New variable. Signed-off-by: Ludovic Courtès --- gnu/local.mk | 1 + gnu/packages/cpp.scm | 30 ++++++- .../bloomberg-bde-tools-fix-install-path.patch | 95 ++++++++++++++++++++++ 3 files changed, 125 insertions(+), 1 deletion(-) create mode 100644 gnu/packages/patches/bloomberg-bde-tools-fix-install-path.patch diff --git a/gnu/local.mk b/gnu/local.mk index 2a2fbf79d4..82c08cfa02 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -912,6 +912,7 @@ dist_patch_DATA = \ %D%/packages/patches/binutils-mingw-w64-timestamp.patch \ %D%/packages/patches/binutils-mingw-w64-deterministic.patch \ %D%/packages/patches/binutils-CVE-2021-45078.patch \ + %D%/packages/patches/bloomberg-bde-tools-fix-install-path.patch \ %D%/packages/patches/bpftrace-disable-bfd-disasm.patch \ %D%/packages/patches/byobu-writable-status.patch \ %D%/packages/patches/bubblewrap-fix-locale-in-tests.patch \ diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 3c68cd86a0..3bc77ff017 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -14,7 +14,7 @@ ;;; Copyright © 2020, 2022 Marius Bakke ;;; Copyright © 2020 Michael Rohleder ;;; Copyright © 2020 Alexandros Theodotou -;;; Copyright © 2020, 2021 Greg Hogan +;;; Copyright © 2020-2022 Greg Hogan ;;; Copyright © 2020 Brett Gilio ;;; Copyright © 2020 Milkey Mouse ;;; Copyright © 2021 Raghav Gururajan @@ -48,6 +48,7 @@ #:use-module (guix utils) #:use-module (guix git-download) #:use-module (guix build-system cmake) + #:use-module (guix build-system copy) #:use-module (guix build-system gnu) #:use-module (guix build-system python) #:use-module (guix modules) @@ -1585,3 +1586,30 @@ microparallel algorithms to implement a strict JSON parser with UTF-8 validation.") (home-page "https://github.com/simdjson/simdjson") (license license:asl2.0))) + +(define-public bloomberg-bde-tools + (let ((commit "094885bd177e0159232d4e6a060a04edb1edd786")) + (package + (name "bloomberg-bde-tools") + ;; Recent releases are not tagged so commit must be used for checkout. + (version "3.97.0.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bloomberg/bde-tools") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0mbbai73z8amh23ah3wy35kmy612380yr5wg89mic60qwqmpqb02")) + (patches + (search-patches + "bloomberg-bde-tools-fix-install-path.patch")))) + (build-system copy-build-system) + ;; Unable to be an inline dependency of bloomberg-bde due to patch. + (properties '((hidden? . #t))) + (synopsis "Tools for developing and building libraries modeled on BDE") + (description + "This package provides the cmake imports needed to build bloomberg-bde.") + (home-page "https://github.com/bloomberg/bde-tools") + (license license:asl2.0)))) diff --git a/gnu/packages/patches/bloomberg-bde-tools-fix-install-path.patch b/gnu/packages/patches/bloomberg-bde-tools-fix-install-path.patch new file mode 100644 index 0000000000..a80c6c3ea3 --- /dev/null +++ b/gnu/packages/patches/bloomberg-bde-tools-fix-install-path.patch @@ -0,0 +1,95 @@ +Install shared libraries into "lib". Do not create symbolic links to static +libraries since only shared libraries are built. + +--- a/cmake/layers/ufid.cmake ++++ b/cmake/layers/ufid.cmake +@@ -6,10 +6,7 @@ bde_prefixed_override(ufid project_setup_install_opts) + function(ufid_project_setup_install_opts proj) + bde_assert_no_extra_args() + +- set(libPath "bin/so") +- if (${bde_ufid_is_64}) +- string(APPEND libPath "/64") +- endif() ++ set(libPath "lib") + + bde_struct_create( + installOpts +@@ -86,13 +83,6 @@ function(bde_create_ufid_symlink uor installOpts) + "${symlinkPrefix}/${symlinkDir}/${libLinkName}" + ) + +- install( +- CODE +- "execute_process(COMMAND ${CMAKE_COMMAND} -E create_symlink \ +- ${symlinkVal} ${symlinkFile})" +- COMPONENT "${component}-symlinks" +- ) +- + # This code creates compatibility symlinks + # WARNING: This is custom logic that has nothing to do with our build system. + # Some external build systems expect to find a variaty of ufids in dpkg. +@@ -110,14 +100,6 @@ function(bde_create_ufid_symlink uor installOpts) + symlinkFile + "${symlinkPrefix}/${symlinkDir}/${libLinkName}" + ) +- +- # IMPORTANT: symlinkFile is the same as above! +- install( +- CODE +- "execute_process(COMMAND ${CMAKE_COMMAND} -E create_symlink \ +- ${symlinkVal} ${symlinkFile})" +- COMPONENT "${component}-symlinks" +- ) + endif() + + if (${bde_ufid_is_pic}) +@@ -134,14 +116,6 @@ function(bde_create_ufid_symlink uor installOpts) + "${symlinkPrefix}/${symlinkDir}/${libLinkName}" + ) + +- # IMPORTANT: symlinkFile is the same as above! +- install( +- CODE +- "execute_process(COMMAND ${CMAKE_COMMAND} -E create_symlink \ +- ${symlinkVal} ${symlinkFile})" +- COMPONENT "${component}-pic-symlink-hack" +- ) +- + # And another one for "64" - remove "pic", add "64" + if (${bde_ufid_is_64}) + set(temp_ufid_flags ${install_ufid_flags}) +@@ -157,14 +131,6 @@ function(bde_create_ufid_symlink uor installOpts) + symlinkFile + "${symlinkPrefix}/${symlinkDir}/${libLinkName}" + ) +- +- # IMPORTANT: symlinkFile is the same as above! +- install( +- CODE +- "execute_process(COMMAND ${CMAKE_COMMAND} -E create_symlink \ +- ${symlinkVal} ${symlinkFile})" +- COMPONENT "${component}-pic-symlink-hack" +- ) + endif() + endif() + +@@ -177,18 +143,5 @@ function(bde_create_ufid_symlink uor installOpts) + symlinkReleaseFile + "${symlinkPrefix}/${symlinkDir}/${libReleaseLinkName}" + ) +- install( +- CODE +- "execute_process(COMMAND ${CMAKE_COMMAND} -E create_symlink \ +- ${symlinkVal} ${symlinkReleaseFile})" +- COMPONENT "${component}-release-symlink" +- ) +- install( +- CODE +- "execute_process(COMMAND ${CMAKE_COMMAND} -E create_symlink \ +- ${symlinkVal} ${symlinkReleaseFile})" +- COMPONENT "release-symlink" +- EXCLUDE_FROM_ALL +- ) + endif() + endfunction() -- cgit v1.3 From 7fbb6fe0e1035e2a09fe9ffcd5b91c1586510f99 Mon Sep 17 00:00:00 2001 From: Greg Hogan Date: Wed, 3 Nov 2021 15:22:19 +0000 Subject: gnu: Add bloomberg-bde. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/cpp.scm (bloomberg-bde): New variable. Signed-off-by: Ludovic Courtès --- gnu/local.mk | 1 + gnu/packages/cpp.scm | 75 +++++++++++++++++++++- .../patches/bloomberg-bde-cmake-module-path.patch | 16 +++++ 3 files changed, 91 insertions(+), 1 deletion(-) create mode 100644 gnu/packages/patches/bloomberg-bde-cmake-module-path.patch diff --git a/gnu/local.mk b/gnu/local.mk index 82c08cfa02..f14daf2edd 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -912,6 +912,7 @@ dist_patch_DATA = \ %D%/packages/patches/binutils-mingw-w64-timestamp.patch \ %D%/packages/patches/binutils-mingw-w64-deterministic.patch \ %D%/packages/patches/binutils-CVE-2021-45078.patch \ + %D%/packages/patches/bloomberg-bde-cmake-module-path.patch \ %D%/packages/patches/bloomberg-bde-tools-fix-install-path.patch \ %D%/packages/patches/bpftrace-disable-bfd-disasm.patch \ %D%/packages/patches/byobu-writable-status.patch \ diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 3bc77ff017..a77ac84f17 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -80,7 +80,8 @@ #:use-module (gnu packages pulseaudio) #:use-module (gnu packages tls) #:use-module (gnu packages web) - #:use-module (gnu packages xml)) + #:use-module (gnu packages xml) + #:use-module (ice-9 match)) (define-public argagg (let ((commit "79e4adfa2c6e2bfbe63da05cc668eb9ad5596748") (revision "0")) @@ -1613,3 +1614,75 @@ validation.") "This package provides the cmake imports needed to build bloomberg-bde.") (home-page "https://github.com/bloomberg/bde-tools") (license license:asl2.0)))) + +(define-public bloomberg-bde + (let ((commit "b6bcc0e24a5862bf77aea7edd831dedf50e21d64")) + (package + (name "bloomberg-bde") + ;; Recent releases are not tagged so commit must be used for checkout. + (version "3.98.0.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bloomberg/bde") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0y3lipi1lj9qazgc935851r2qsx5aq3vvc4y52jq57riyz8wg3ma")) + (patches + (search-patches + "bloomberg-bde-cmake-module-path.patch")) + ;;(modules '((guix build utils))) + (snippet + `(begin + ;; FIXME: Delete bundled software. The third-party packages + ;; may be patched or modified from upstream sources. + ;;(for-each delete-file-recursively + ;; (list "thirdparty")) + ;; Delete failing tests. + (for-each + delete-file + (list "groups/bal/ball/ball_asyncfileobserver.t.cpp" + "groups/bal/ball/ball_fileobserver2.t.cpp" + "groups/bal/ball/ball_recordstringformatter.t.cpp" + "groups/bal/balst/balst_stacktraceutil.t.cpp" + "groups/bdl/bdlmt/bdlmt_eventscheduler.t.cpp" + "groups/bdl/bdlmt/bdlmt_timereventscheduler.t.cpp" + "groups/bdl/bdls/bdls_filesystemutil.t.cpp" + "groups/bsl/bslh/bslh_hashpair.t.cpp" + "groups/bsl/bsls/bsls_platform.t.cpp" + "groups/bsl/bsls/bsls_stackaddressutil.t.cpp" + "groups/bsl/bsls/bsls_stopwatch.t.cpp" + "groups/bsl/bslstl/bslstl_function_invokerutil.t.cpp")) + #t)))) + (build-system cmake-build-system) + (arguments + `(#:parallel-tests? #f ; Test parallelism may fail inconsistently. + ;; Set UFID to build shared libraries. Flag descriptions can be found at + ;; https://bloomberg.github.io/bde-tools/reference/bde_repo.html#ufid + #:configure-flags ,(match %current-system + ((or "i686-linux" "armhf-linux") + ''("-DUFID=opt_dbg_exc_mt_32_shr_cpp17")) + (_ + ''("-DUFID=opt_dbg_exc_mt_64_shr_cpp17"))) + #:phases + (modify-phases %standard-phases + ;; Explicitly build tests separate from the main build. + (add-after 'build 'build-tests + (lambda* (#:key make-flags #:allow-other-keys) + (apply invoke "make" "all.t" + `(,@(if #:parallel-build? + `("-j" ,(number->string (parallel-job-count))) + '()) + ,@make-flags))))))) + (native-inputs + (list bloomberg-bde-tools pkg-config python)) + (synopsis "Foundational C++ libraries used at Bloomberg") + (description + "The BDE Development Environment libraries provide an enhanced +implementation of STL containers, vocabulary types for representing common +concepts (like dates and times), and building blocks for developing +multi-threaded applications and network applications.") + (home-page "https://github.com/bloomberg/bde") + (license license:asl2.0)))) diff --git a/gnu/packages/patches/bloomberg-bde-cmake-module-path.patch b/gnu/packages/patches/bloomberg-bde-cmake-module-path.patch new file mode 100644 index 0000000000..b08ca5eac0 --- /dev/null +++ b/gnu/packages/patches/bloomberg-bde-cmake-module-path.patch @@ -0,0 +1,16 @@ +This package requires CMAKE_MODULE_PATH be set by the calling process. This +patch uses the CMAKE_PREFIX_PATH passed from Guix as the search path for +locating the bloomberg-bde-tools CMake modules. + +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -1,8 +1,6 @@ + cmake_minimum_required(VERSION 3.15) + +-if (NOT CMAKE_MODULE_PATH) +- message(FATAL "Please specify path to BDE cmake modules.") +-endif() ++string(REPLACE ":" "cmake/;" CMAKE_MODULE_PATH "$ENV{CMAKE_PREFIX_PATH}cmake/") + + get_filename_component(repoName ${CMAKE_CURRENT_LIST_DIR} NAME) + -- cgit v1.3 From 9faeca1f23b841a6f48900f52f0085df51d48119 Mon Sep 17 00:00:00 2001 From: Jai Vetrivelan Date: Wed, 2 Feb 2022 06:07:39 +0530 Subject: gnu: Add emacs-spray. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/emacs-xyz.scm: (emacs-spray) new variable. Signed-off-by: Ludovic Courtès --- gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 56af72b2ab..9b57b36623 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -4529,6 +4529,29 @@ Emacs Lisp. It generates a sparkline string given a list of numbers. It is a port of @code{cl-spark} to Emacs Lisp.") (license license:expat)))) +(define-public emacs-spray + (let ((version "0.0.2") (revision "0") + (commit "74d9dcfa2e8b38f96a43de9ab0eb13364300cb46")) + (package + (name "emacs-spray") + (version (git-version version revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://git.sr.ht/~iank/spray") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1avbfr32dvff26kgvd5vgan99nb5c6al9kv5xbmy2rcls17py7r2")))) + (build-system emacs-build-system) + (home-page "https://git.sr.ht/~iank/spray") + (synopsis "Speed reading mode for Emacs") + (description + "For speed reading, or just more enjoyable reading. Narrows +the buffer to show one word at a time. Adjust speed / pause as needed.") + (license license:gpl3+)))) + (define-public emacs-es-mode (package (name "emacs-es-mode") -- cgit v1.3 From ab7114191d4599e36958c2ec18491618bf0cc6a9 Mon Sep 17 00:00:00 2001 From: jgart Date: Wed, 2 Feb 2022 14:23:49 -0500 Subject: gnu: Fix typo. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/machine.scm: Fix typo in top-level comment. Signed-off-by: Ludovic Courtès --- gnu/machine.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/machine.scm b/gnu/machine.scm index 667a988f99..60be674972 100644 --- a/gnu/machine.scm +++ b/gnu/machine.scm @@ -51,7 +51,7 @@ ;;; Commentary: ;;; ;;; This module provides the types used to declare individual machines in a -;;; heterogeneous Guix deployment. The interface allows users of specify system +;;; heterogeneous Guix deployment. The interface allows users to specify system ;;; configurations and the means by which resources should be provisioned on a ;;; per-host basis. ;;; -- cgit v1.3 From 35c96e65a9ea638d5c544257e1917e320c2beca1 Mon Sep 17 00:00:00 2001 From: Zhu Zihao Date: Thu, 3 Feb 2022 22:27:40 +0800 Subject: gnu: g-golf: Update to 0.0.1-1010-1824633. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/guile-xyz.scm (g-golf)[arguments]: Use G-Expression. : Add phase 'fix-guile-site-directory'. Patch 'configure.ac' before bootstrapping, avoid breaking configure script in accident. In phase 'substitute-libs', use `search-input-file` for searching libraries. In phase 'start-xorg-server', simplify the X server startup script. [inputs]: Remove gtk+ and clutter. Use label-less style. [native-inputs]: Add gtk+ and clutter, they're now only needed in test. Use label-less style. Signed-off-by: Ludovic Courtès --- gnu/packages/guile-xyz.scm | 124 +++++++++++++++++++++++---------------------- 1 file changed, 63 insertions(+), 61 deletions(-) diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index b61be0acfc..1e8784e18f 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -40,6 +40,7 @@ ;;; Copyright © 2021 Oleg Pykhalov ;;; Copyright © 2021, 2022 Artyom V. Poptsov ;;; Copyright © 2022 Maxime Devos +;;; Copyright © 2022 Zhu Zihao ;;; ;;; This file is part of GNU Guix. ;;; @@ -118,6 +119,7 @@ #:use-module (gnu packages xorg) #:use-module (guix packages) #:use-module (guix download) + #:use-module (guix gexp) #:use-module (guix git-download) #:use-module (guix hg-download) #:use-module (guix build-system cmake) @@ -1979,8 +1981,8 @@ capabilities.") (license license:gpl3+))) (define-public g-golf - (let ((commit "ef830107b9765bd6a2da848d0cbe45e11374c0b5") - (revision "839")) + (let ((commit "1824633d37da3794f349d6829e9dac2cf89adaa8") + (revision "1010")) (package (name "g-golf") (version (git-version "0.1.0" revision commit)) @@ -1992,69 +1994,69 @@ capabilities.") (commit commit))) (file-name (git-file-name name version)) (sha256 - (base32 "0r472hvmf447kqvkahp1wy4irb5gy8y793hm8r9rc511smdx66cw")))) + (base32 "0ncpqv6pbsx9fjmdzvzbjljnhqgw9pynqy9vr9aq35nb7rzrhfdf")))) (build-system gnu-build-system) - (native-inputs - `(("autoconf" ,autoconf) - ("automake" ,automake) - ("texinfo" ,texinfo) - ("gettext" ,gettext-minimal) - ("libtool" ,libtool) - ("pkg-config" ,pkg-config) - ("xorg-server" ,xorg-server))) + (arguments + (list + #:configure-flags + #~(list "--with-guile-site=no") + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'fix-guile-site-directory + (lambda _ + (substitute* "configure.ac" + (("SITEDIR=.*$") + "SITEDIR=\"$datadir/guile/site/$GUILE_EFFECTIVE_VERSION\";\n") + (("SITECCACHEDIR=\"\\$libdir/g-golf/") + "SITECCACHEDIR=\"$libdir/")))) + (add-before 'configure 'tests-work-arounds + (lambda* (#:key inputs #:allow-other-keys) + ;; In build environment, There is no /dev/tty + (substitute* "test-suite/tests/gobject.scm" + (("/dev/tty") "/dev/null")))) + (add-before 'configure 'substitute-libs + (lambda* (#:key inputs outputs #:allow-other-keys) + (define (get lib) + (search-input-file inputs (string-append "lib/" lib ".so"))) + + (let* ((libgi (get "libgirepository-1.0")) + (libglib (get "libglib-2.0")) + (libgobject (get "libgobject-2.0")) + (libg-golf (string-append #$output "/lib/libg-golf"))) + (substitute* "g-golf/init.scm" + (("libgirepository-1.0") libgi) + (("libglib-2.0") libglib) + (("libgobject-2.0") libgobject) + (("\\(dynamic-link \"libg-golf\"\\)") + (format #f "~s" + `(catch #t + (lambda () + (dynamic-link "libg-golf")) + (lambda _ + (dynamic-link ,libg-golf)))))) + (setenv "GUILE_AUTO_COMPILE" "0") + #t))) + (add-before 'check 'start-xorg-server + (lambda* (#:key inputs #:allow-other-keys) + ;; The test suite requires a running X server. + (system "Xvfb :1 &") + (setenv "DISPLAY" ":1") + #t))))) (inputs - `(("guile" ,guile-2.2) - ("guile-lib" ,guile2.2-lib) - ("clutter" ,clutter) - ("gtk" ,gtk+) - ("glib" ,glib))) + (list guile-3.0 guile-lib glib)) + (native-inputs + (list autoconf + automake + texinfo + gettext-minimal + libtool + pkg-config + ;; required for tests + gtk+ + clutter + xorg-server-for-tests)) (propagated-inputs (list gobject-introspection)) - (arguments - `(#:phases - (modify-phases %standard-phases - (add-before 'configure 'tests-work-arounds - (lambda* (#:key inputs #:allow-other-keys) - ;; In build environment, There is no /dev/tty - (substitute* - "test-suite/tests/gobject.scm" - (("/dev/tty") "/dev/null")))) - (add-before 'configure 'substitute-libs - (lambda* (#:key inputs outputs #:allow-other-keys) - (let* ((get (lambda (key lib) - (string-append (assoc-ref inputs key) "/lib/" lib))) - (libgi (get "gobject-introspection" "libgirepository-1.0")) - (libglib (get "glib" "libglib-2.0")) - (libgobject (get "glib" "libgobject-2.0")) - (libgdk (get "gtk" "libgdk-3"))) - (substitute* "configure" - (("SITEDIR=\"\\$datadir/g-golf\"") - "SITEDIR=\"$datadir/guile/site/$GUILE_EFFECTIVE_VERSION\"") - (("SITECCACHEDIR=\"\\$libdir/g-golf/") - "SITECCACHEDIR=\"$libdir/")) - (substitute* "g-golf/init.scm" - (("libgirepository-1.0") libgi) - (("libglib-2.0") libglib) - (("libgdk-3") libgdk) - (("libgobject-2.0") libgobject) - (("\\(dynamic-link \"libg-golf\"\\)") - (format #f "~s" - `(dynamic-link - (format #f "~alibg-golf" - (if (getenv "GUILE_GGOLF_UNINSTALLED") - "" - ,(format #f "~a/lib/" - (assoc-ref outputs "out")))))))) - (setenv "GUILE_AUTO_COMPILE" "0") - (setenv "GUILE_GGOLF_UNINSTALLED" "1") - #t))) - (add-before 'check 'start-xorg-server - (lambda* (#:key inputs #:allow-other-keys) - ;; The test suite requires a running X server. - (system (format #f "~a/bin/Xvfb :1 &" - (assoc-ref inputs "xorg-server"))) - (setenv "DISPLAY" ":1") - #t))))) (home-page "https://www.gnu.org/software/g-golf/") (synopsis "Guile bindings for GObject Introspection") (description -- cgit v1.3 From 694e31723788d811d026a047c9dea8e0d735362c Mon Sep 17 00:00:00 2001 From: Zhu Zihao Date: Thu, 3 Feb 2022 22:35:10 +0800 Subject: gnu: Deprecate the 'g-golf' variable. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit g-golf now supports both Guile 3.0 and 2.2. Assign a new name to identify the g-golf for different Guile version. * gnu/packages/guile-xyz.scm (g-golf): Rename to guile-g-golf. (g-golf): Define as deprecated by guile-g-golf. Signed-off-by: Ludovic Courtès --- gnu/packages/guile-xyz.scm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 1e8784e18f..b09bacb9b6 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -1980,11 +1980,11 @@ capabilities.") (home-page "https://dthompson.us/projects/sly.html") (license license:gpl3+))) -(define-public g-golf +(define-public guile-g-golf (let ((commit "1824633d37da3794f349d6829e9dac2cf89adaa8") (revision "1010")) (package - (name "g-golf") + (name "guile-g-golf") (version (git-version "0.1.0" revision commit)) (source (origin @@ -2067,6 +2067,9 @@ libraries and making GObject classes (and methods) available in Guile's object-oriented programming system, GOOPS.") (license license:lgpl3+)))) +(define-public g-golf + (deprecated-package "g-golf" guile-g-golf)) + (define-public g-wrap (package (name "g-wrap") -- cgit v1.3 From d22fd0bed9072d6e3098adfc5e4bf32f9fdfc564 Mon Sep 17 00:00:00 2001 From: Zhu Zihao Date: Thu, 3 Feb 2022 22:38:59 +0800 Subject: gnu: Add guile2.2-g-golf. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/guile-xyz.scm (guile2.2-g-golf): New variable. Signed-off-by: Ludovic Courtès --- gnu/packages/guile-xyz.scm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index b09bacb9b6..8bd4391a72 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -2070,6 +2070,15 @@ object-oriented programming system, GOOPS.") (define-public g-golf (deprecated-package "g-golf" guile-g-golf)) +(define-public guile2.2-g-golf + (package + (inherit guile-g-golf) + (name "guile2.2-g-golf") + (inputs + (modify-inputs (package-inputs guile-g-golf) + (replace "guile" guile-2.2) + (replace "guile-lib" guile2.2-lib))))) + (define-public g-wrap (package (name "g-wrap") -- cgit v1.3 From e0223aa81e084b77dcbea42b81a4322526e180c8 Mon Sep 17 00:00:00 2001 From: Zhu Zihao Date: Thu, 3 Feb 2022 22:39:54 +0800 Subject: gnu: nomad: Depends on proper version of g-golf. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/guile-xyz.scm (nomad)[inputs]: Replace 'g-golf' with 'guile2.2-g-golf'. Signed-off-by: Ludovic Courtès --- gnu/packages/guile-xyz.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 8bd4391a72..6e1bbb71e9 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -3467,7 +3467,7 @@ perform geometrical transforms on JPEG images.") ("guile-readline" ,guile2.2-readline) ("guile-gcrypt" ,guile2.2-gcrypt) ("gnutls" ,gnutls) - ("g-golf" ,g-golf) + ("g-golf" ,guile2.2-g-golf) ("shroud" ,shroud) ("emacsy" ,emacsy-minimal) ;; Gtk -- cgit v1.3 From 6413eb61af04937bf6e6bf42a24642f498606053 Mon Sep 17 00:00:00 2001 From: Simon South Date: Mon, 7 Feb 2022 09:26:26 -0500 Subject: gnu: iwd: Remove input labels. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/networking.scm (iwd)[native-inputs]: Remove input labels. Signed-off-by: Ludovic Courtès --- gnu/packages/networking.scm | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 3ae255e093..4258a14968 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -3577,10 +3577,7 @@ powerful route filtering syntax and an easy-to-use configuration interface.") (inputs (list dbus ell readline)) (native-inputs - `(("pkgconfig" ,pkg-config) - ("python" ,python) - ("rst2man" ,python-docutils) - ("openssl" ,openssl))) + (list pkg-config python python-docutils openssl)) (arguments `(#:configure-flags (let ((dbus (assoc-ref %outputs "out"))) -- cgit v1.3 From 0d0f2b9c358f81b6fbdc84b020b209f865646707 Mon Sep 17 00:00:00 2001 From: Simon South Date: Mon, 7 Feb 2022 09:26:27 -0500 Subject: gnu: iwd: Remove reference to %outputs. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/networking.scm (iwd)[arguments]: Remove reference to %outputs by using a gexp. Signed-off-by: Ludovic Courtès --- gnu/packages/networking.scm | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 4258a14968..ef0ae12e49 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -3580,16 +3580,15 @@ powerful route filtering syntax and an easy-to-use configuration interface.") (list pkg-config python python-docutils openssl)) (arguments `(#:configure-flags - (let ((dbus (assoc-ref %outputs "out"))) - (list "--disable-systemd-service" - "--enable-external-ell" - "--enable-hwsim" - "--enable-tools" - "--enable-wired" - "--localstatedir=/var" - (string-append "--with-dbus-datadir=" dbus "/share/") - (string-append "--with-dbus-busdir=" - dbus "/share/dbus-1/system-services"))) + ,#~(list "--disable-systemd-service" + "--enable-external-ell" + "--enable-hwsim" + "--enable-tools" + "--enable-wired" + "--localstatedir=/var" + (string-append "--with-dbus-datadir=" #$output "/share/") + (string-append "--with-dbus-busdir=" + #$output "/share/dbus-1/system-services")) #:phases (modify-phases %standard-phases (add-after 'configure 'patch-Makefile -- cgit v1.3 From 20516fbb9253304f5f46245283f70e1578a7a6b2 Mon Sep 17 00:00:00 2001 From: Simon South Date: Mon, 7 Feb 2022 09:26:28 -0500 Subject: gnu: iwd: Build from Git sources. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/networking.scm (iwd)[source]: Use "git-fetch" and "git-file-name". [inputs]: Add ell source code. [native-inputs]: Add autoconf, automake, libtool. [arguments]<#:phases>: Add "copy-ell-header-files" phase to copy shared header files from ell source into source tree. Signed-off-by: Ludovic Courtès --- gnu/packages/networking.scm | 38 +++++++++++++++++++++++++++++--------- 1 file changed, 29 insertions(+), 9 deletions(-) diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index ef0ae12e49..382b4cf96d 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -47,6 +47,7 @@ ;;; Copyright © 2021 Milkey Mouse ;;; Copyright © 2021 Guillaume Le Vaillant ;;; Copyright © 2021 Maxime Devos +;;; Copyright © 2022 Simon South ;;; ;;; This file is part of GNU Guix. ;;; @@ -3564,20 +3565,25 @@ powerful route filtering syntax and an easy-to-use configuration interface.") (name "iwd") (version "1.20") (source (origin - ;; FIXME: We're using the bootstrapped sources because - ;; otherwise using an external ell library is impossible. - ;; How to bootstrap with Guix? - (method url-fetch) - (uri (string-append "https://www.kernel.org/pub/linux/network" - "/wireless/iwd-" version ".tar.xz")) + (method git-fetch) + (uri (git-reference + (url "https://git.kernel.org/pub/scm/network/wireless/iwd.git") + (commit version))) + (file-name (git-file-name name version)) (sha256 (base32 - "03q5scahyg86h4bdxqxm32shyssgpmfp5b3183j01ig7mg6f4lbx")))) + "0xlbnsgw9giakfj0xr526i7mcwyaryb18g66mv90njnrm8radjhr")))) (build-system gnu-build-system) (inputs - (list dbus ell readline)) + (list dbus ell (package-source ell) readline)) (native-inputs - (list pkg-config python python-docutils openssl)) + (list autoconf + automake + libtool + pkg-config + python + python-docutils + openssl)) (arguments `(#:configure-flags ,#~(list "--disable-systemd-service" @@ -3591,6 +3597,20 @@ powerful route filtering syntax and an easy-to-use configuration interface.") #$output "/share/dbus-1/system-services")) #:phases (modify-phases %standard-phases + (add-after 'unpack 'copy-ell-header-files + ;; Copy into the source tree two of ell's private header files that + ;; it shares with iwd, as is required to build with the + ;; "--enable-external-ell" configure option. + ;; See the definition of "ell_shared" in iwd's Makefile.am. + (lambda* (#:key inputs #:allow-other-keys) + (let ((ell-header-dir (search-input-directory inputs "/ell")) + (target-dir "ell")) + (mkdir target-dir) + (for-each + (lambda (file-name) + (copy-file (string-append ell-header-dir "/" file-name) + (string-append target-dir "/" file-name))) + '("asn1-private.h" "useful.h"))))) (add-after 'configure 'patch-Makefile (lambda _ (substitute* "Makefile" -- cgit v1.3 From c491338bcb643af03f2c92e2a2c010e613fc74c9 Mon Sep 17 00:00:00 2001 From: Simon South Date: Mon, 7 Feb 2022 09:26:29 -0500 Subject: gnu: ell: Remove input labels. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/linux.scm (ell)[native-inputs]: Remove input labels. Signed-off-by: Ludovic Courtès --- gnu/packages/linux.scm | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 05dc1b6384..b50f2e9c5b 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -8408,10 +8408,7 @@ tools for managing PipeWire.") (inputs (list dbus)) (native-inputs - `(("autoconf" ,autoconf) - ("libtool" ,libtool) - ("pkgconfig" ,pkg-config) - ("automake" ,automake))) + (list autoconf automake libtool pkg-config)) (home-page "https://01.org/ell") (synopsis "Embedded Linux Library") (description "The Embedded Linux* Library (ELL) provides core, low-level -- cgit v1.3 From 4be896d6e0d322b3f5b514c8a2811efcd6a31606 Mon Sep 17 00:00:00 2001 From: Simon South Date: Mon, 7 Feb 2022 09:26:30 -0500 Subject: gnu: iwd: Update to 1.24. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/linux.scm (ell): Update to 0.48. [arguments]: Remove obsolete "fix-dbus-tests" phase. * gnu/packages/networking.scm (iwd): Update to 1.24. Signed-off-by: Ludovic Courtès --- gnu/packages/linux.scm | 14 ++------------ gnu/packages/networking.scm | 4 ++-- 2 files changed, 4 insertions(+), 14 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index b50f2e9c5b..254a97e915 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -8384,7 +8384,7 @@ tools for managing PipeWire.") (define-public ell (package (name "ell") - (version "0.46") + (version "0.48") (source (origin (method git-fetch) (uri (git-reference @@ -8393,18 +8393,8 @@ tools for managing PipeWire.") (file-name (git-file-name name version)) (sha256 (base32 - "15hwqicmll23cbrj13h3wd4lgrby416ap7l6w0434jsza4s4yv82")))) + "0lxjizby3zdyhzad5a0gbz4m2pp44jf1j4l1pn18d04rw9mr2gqy")))) (build-system gnu-build-system) - (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'unpack 'fix-dbus-tests - (lambda _ - (substitute* '("unit/test-dbus-message-fds.c" - "unit/test-dbus-properties.c" - "unit/test-dbus.c") - (("/usr/bin/dbus-daemon") (which "dbus-daemon"))) - #t))))) (inputs (list dbus)) (native-inputs diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 382b4cf96d..4d260249d7 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -3563,7 +3563,7 @@ powerful route filtering syntax and an easy-to-use configuration interface.") (define-public iwd (package (name "iwd") - (version "1.20") + (version "1.24") (source (origin (method git-fetch) (uri (git-reference @@ -3572,7 +3572,7 @@ powerful route filtering syntax and an easy-to-use configuration interface.") (file-name (git-file-name name version)) (sha256 (base32 - "0xlbnsgw9giakfj0xr526i7mcwyaryb18g66mv90njnrm8radjhr")))) + "1sdi7008j5jhlg2rqpczh1pzb8zay6mc9dpnjjsmdnsmrcr3v7wi")))) (build-system gnu-build-system) (inputs (list dbus ell (package-source ell) readline)) -- cgit v1.3 From e086b0807b079df58d5607770ecd5ec8c480f093 Mon Sep 17 00:00:00 2001 From: Liliana Marie Prikler Date: Sun, 23 Jan 2022 10:41:44 +0100 Subject: gnu: evolution-data-server: Build with libphonenumber. * gnu/packages/gnome.scm (evolution)[#:configure-flags]: Drop inexistent flags. Add "-DWITH_PHONENUMBER=ON". [native-inputs]: Add protobuf. [inputs]: Add boost and libphonenumber. Signed-off-by: Julien Lepiller --- gnu/packages/gnome.scm | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 92900c8421..beab19805b 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -158,6 +158,7 @@ #:use-module (gnu packages mail) #:use-module (gnu packages man) #:use-module (gnu packages markup) + #:use-module (gnu packages messaging) #:use-module (gnu packages mp3) #:use-module (gnu packages multiprecision) #:use-module (gnu packages music) @@ -7680,14 +7681,13 @@ Microsoft Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos.") '("addressbook-backends" "calendar-backends" "camel-providers" "credential-modules" "registry-modules")))) - (list "-DENABLE_UOA=OFF" ;disable Ubuntu Online Accounts support - "-DENABLE_GOOGLE=OFF" ;disable Google Contacts support - "-DENABLE_GOOGLE_AUTH=OFF" ;disable Google authentication + (list "-DENABLE_GOOGLE=OFF" ;disable Google Contacts support "-DENABLE_VALA_BINDINGS=ON" (string-append "-DCMAKE_INSTALL_RPATH=" lib ";" (string-append lib "/evolution-data-server;") (string-join runpaths ";")) - "-DENABLE_INTROSPECTION=ON")) ;required for Vala bindings + "-DENABLE_INTROSPECTION=ON" ;required for Vala bindings + "-DWITH_PHONENUMBER=ON")) #:phases (modify-phases %standard-phases (add-after 'unpack 'disable-failing-tests @@ -7717,6 +7717,7 @@ Microsoft Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos.") ("gsettings-desktop-schemas" ,gsettings-desktop-schemas) ("intltool" ,intltool) ("pkg-config" ,pkg-config) + ("protobuf" ,protobuf) ("vala" ,vala) ("python" ,python-wrapper))) (propagated-inputs @@ -7729,11 +7730,13 @@ Microsoft Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos.") ("sqlite" ,sqlite))) (inputs `(("bdb" ,bdb) + ("boost" ,boost) ("gcr" ,gcr) ("gnome-online-accounts:lib" ,gnome-online-accounts "lib") ("json-glib" ,json-glib) ("libcanberra" ,libcanberra) ("libgweather" ,libgweather) + ("libphonenumber" ,libphonenumber) ("mit-krb5" ,mit-krb5) ("openldap" ,openldap) ("webkitgtk" ,webkitgtk-with-libsoup2))) -- cgit v1.3 From db74cfcf36ddd56a199cc919b2e5b5e580133922 Mon Sep 17 00:00:00 2001 From: Liliana Marie Prikler Date: Sun, 23 Jan 2022 10:43:51 +0100 Subject: gnu: chatty: Update to 0.4.0. * gnu/packages/messaging.scm (chatty): Update to 0.4.0. [#:phases]: Drop trailing #t. [native-inputs]: Use new style. Add protobuf. [inputs]: Add gspell, json-glib, libolm, libphonenumber and modem-manager. Replace libhandy-0.0 with libhandy. Signed-off-by: Julien Lepiller --- gnu/packages/messaging.scm | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 768642f119..ca8a216661 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -2757,7 +2757,7 @@ validating international phone numbers.") (define-public chatty (package (name "chatty") - (version "0.1.17") + (version "0.4.0") (source (origin (method git-fetch) (uri (git-reference @@ -2766,7 +2766,7 @@ validating international phone numbers.") (file-name (git-file-name name version)) (sha256 (base32 - "0ba1rw8a3vif9k3570hxjfm25vqys3vk3f6g8z5irklwq4bi6lmn")))) + "12k1a5xrwd6zk4x0m53hbzggk695z3bpbzy1wcikzy0jvch7h13d")))) (build-system meson-build-system) (arguments '(#:phases @@ -2774,19 +2774,21 @@ validating international phone numbers.") (add-after 'unpack 'skip-updating-desktop-database (lambda _ (substitute* "meson.build" - (("meson.add_install_script.*") "")) - #t))))) + (("meson.add_install_script.*") ""))))))) (native-inputs - `(("gettext" ,gettext-minimal) - ("glib:bin" ,glib "bin") - ("pkg-config" ,pkg-config))) + (list gettext-minimal `(,glib "bin") pkg-config protobuf)) (inputs (list feedbackd folks gsettings-desktop-schemas + gspell + json-glib libgcrypt libgee - libhandy-0.0 + libhandy + libolm + libphonenumber + modem-manager pidgin purple-mm-sms sqlite)) -- cgit v1.3 From 0a54ba43531419d2470d91c6ae94047cc516c3ab Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 8 Feb 2022 14:39:23 +0100 Subject: gnu: nushell: Update to 0.44.0. * gnu/packages/shells.scm (nushell): (rust-nu-ansi-term-0.44): (rust-nu-cli-0.44): (rust-nu-command-0.44): (rust-nu-completion-0.44): (rust-nu-data-0.44): (rust-nu-engine-0.44): (rust-nu-errors-0.44): (rust-nu-json-0.44): (rust-nu-parser-0.44): (rust-nu-path-0.44): (rust-nu-plugin-0.44): (rust-nu-plugin-binaryview-0.44): (rust-nu-plugin-chart-0.44): (rust-nu-plugin-from-bson-0.44): (rust-nu-plugin-from-sqlite-0.44): (rust-nu-plugin-inc-0.44): (rust-nu-plugin-match-0.44): (rust-nu-plugin-selector-0.44): (rust-nu-plugin-start-0.44): (rust-nu-plugin-textview-0.44): (rust-nu-plugin-to-bson-0.44): (rust-nu-plugin-to-sqlite-0.44): (rust-nu-plugin-tree-0.44): (rust-nu-plugin-xpath-0.44): (rust-nu-pretty-hex-0.44): (rust-nu-protocol-0.44): (rust-nu-serde-0.44): (rust-nu-source-0.44): (rust-nu-table-0.44): (rust-nu-test-support-0.44): (rust-nu-value-ext-0.44): Update to 0.44.0. --- gnu/packages/shells.scm | 562 ++++++++++++++++++++++++------------------------ 1 file changed, 281 insertions(+), 281 deletions(-) diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm index 2e5bc3573a..9756a185fe 100644 --- a/gnu/packages/shells.scm +++ b/gnu/packages/shells.scm @@ -939,7 +939,7 @@ files and text.") (define-public nushell (package (name "nushell") - (version "0.43.0") + (version "0.44.0") (source (origin (method git-fetch) @@ -948,7 +948,7 @@ files and text.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "0d9nzfrmdal6vd1k35xmkj7hq1gwl3q0ivm31xks8p7641srs8id")))) + (base32 "122jlc766v7rpfrz1jwi89sw6jmz7lfnhnr059fhy763fzcvph9c")))) (build-system cargo-build-system) (arguments `(#:tests? #false ;missing files @@ -958,36 +958,36 @@ files and text.") ("rust-futures" ,rust-futures-0.3) ("rust-itertools" ,rust-itertools-0.10) ("rust-mp4" ,rust-mp4-0.9) - ("rust-nu-cli" ,rust-nu-cli-0.43) - ("rust-nu-command" ,rust-nu-command-0.43) - ("rust-nu-completion" ,rust-nu-completion-0.43) - ("rust-nu-data" ,rust-nu-data-0.43) - ("rust-nu-engine" ,rust-nu-engine-0.43) - ("rust-nu-errors" ,rust-nu-errors-0.43) - ("rust-nu-parser" ,rust-nu-parser-0.43) - ("rust-nu-path" ,rust-nu-path-0.43) - ("rust-nu-plugin" ,rust-nu-plugin-0.43) - ("rust-nu-protocol" ,rust-nu-protocol-0.43) - ("rust-nu-source" ,rust-nu-source-0.43) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.43) - ("rust-nu-plugin-binaryview" ,rust-nu-plugin-binaryview-0.43) - ("rust-nu-plugin-chart" ,rust-nu-plugin-chart-0.43) - ("rust-nu-plugin-from-bson" ,rust-nu-plugin-from-bson-0.43) - ("rust-nu-plugin-from-sqlite" ,rust-nu-plugin-from-sqlite-0.43) - ("rust-nu-plugin-inc" ,rust-nu-plugin-inc-0.43) - ("rust-nu-plugin-match" ,rust-nu-plugin-match-0.43) - ("rust-nu-plugin-query-json" ,rust-nu-plugin-query-json-0.43) - ("rust-nu-plugin-s3" ,rust-nu-plugin-s3-0.43) - ("rust-nu-plugin-selector" ,rust-nu-plugin-selector-0.43) - ("rust-nu-plugin-start" ,rust-nu-plugin-start-0.43) - ("rust-nu-plugin-textview" ,rust-nu-plugin-textview-0.43) - ("rust-nu-plugin-to-bson" ,rust-nu-plugin-to-bson-0.43) - ("rust-nu-plugin-to-sqlite" ,rust-nu-plugin-to-sqlite-0.43) - ("rust-nu-plugin-tree" ,rust-nu-plugin-tree-0.43) - ("rust-nu-plugin-xpath" ,rust-nu-plugin-xpath-0.43)) + ("rust-nu-cli" ,rust-nu-cli-0.44) + ("rust-nu-command" ,rust-nu-command-0.44) + ("rust-nu-completion" ,rust-nu-completion-0.44) + ("rust-nu-data" ,rust-nu-data-0.44) + ("rust-nu-engine" ,rust-nu-engine-0.44) + ("rust-nu-errors" ,rust-nu-errors-0.44) + ("rust-nu-parser" ,rust-nu-parser-0.44) + ("rust-nu-path" ,rust-nu-path-0.44) + ("rust-nu-plugin" ,rust-nu-plugin-0.44) + ("rust-nu-protocol" ,rust-nu-protocol-0.44) + ("rust-nu-source" ,rust-nu-source-0.44) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.44) + ("rust-nu-plugin-binaryview" ,rust-nu-plugin-binaryview-0.44) + ("rust-nu-plugin-chart" ,rust-nu-plugin-chart-0.44) + ("rust-nu-plugin-from-bson" ,rust-nu-plugin-from-bson-0.44) + ("rust-nu-plugin-from-sqlite" ,rust-nu-plugin-from-sqlite-0.44) + ("rust-nu-plugin-inc" ,rust-nu-plugin-inc-0.44) + ("rust-nu-plugin-match" ,rust-nu-plugin-match-0.44) + ("rust-nu-plugin-query-json" ,rust-nu-plugin-query-json-0.44) + ("rust-nu-plugin-s3" ,rust-nu-plugin-s3-0.44) + ("rust-nu-plugin-selector" ,rust-nu-plugin-selector-0.44) + ("rust-nu-plugin-start" ,rust-nu-plugin-start-0.44) + ("rust-nu-plugin-textview" ,rust-nu-plugin-textview-0.44) + ("rust-nu-plugin-to-bson" ,rust-nu-plugin-to-bson-0.44) + ("rust-nu-plugin-to-sqlite" ,rust-nu-plugin-to-sqlite-0.44) + ("rust-nu-plugin-tree" ,rust-nu-plugin-tree-0.44) + ("rust-nu-plugin-xpath" ,rust-nu-plugin-xpath-0.44)) #:cargo-development-inputs (("rust-hamcrest2" ,rust-hamcrest2-0.3) - ("rust-nu-test-support" ,rust-nu-test-support-0.43) + ("rust-nu-test-support" ,rust-nu-test-support-0.44) ("rust-rstest" ,rust-rstest-0.10) ("rust-serial-test" ,rust-serial-test-0.5)))) (native-inputs @@ -1011,17 +1011,17 @@ directory. These values can be piped through a series of steps, in a series of commands called a ``pipeline''.") (license license:expat))) -(define-public rust-nu-ansi-term-0.43 +(define-public rust-nu-ansi-term-0.44 (package (name "rust-nu-ansi-term") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu-ansi-term" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "08qrpysv98cn9hmqmvkzh9bax4220jnix17a6d5gn70ndrli6v53")))) + (base32 "1lmc9rdqnw586gv4a0c2gbg3x4a04fy65xk3fczby8lq84rz41i3")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -1037,17 +1037,17 @@ of commands called a ``pipeline''.") underline).") (license license:expat))) -(define-public rust-nu-cli-0.43 +(define-public rust-nu-cli-0.44 (package (name "rust-nu-cli") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu-cli" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "10mfq3vd4bp286j2p3j0iqv4j9lfq3zj2jpab3bg2qwv9kislcv0")))) + (base32 "0p085vgkzrczdz6ana9bb4r9hrcjm1hgr8f3885ik6kjlwiy5ixa")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -1056,17 +1056,17 @@ underline).") ("rust-indexmap" ,rust-indexmap-1) ("rust-lazy-static" ,rust-lazy-static-1) ("rust-log" ,rust-log-0.4) - ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.43) - ("rust-nu-command" ,rust-nu-command-0.43) - ("rust-nu-completion" ,rust-nu-completion-0.43) - ("rust-nu-data" ,rust-nu-data-0.43) - ("rust-nu-engine" ,rust-nu-engine-0.43) - ("rust-nu-errors" ,rust-nu-errors-0.43) - ("rust-nu-parser" ,rust-nu-parser-0.43) - ("rust-nu-path" ,rust-nu-path-0.43) - ("rust-nu-protocol" ,rust-nu-protocol-0.43) - ("rust-nu-source" ,rust-nu-source-0.43) - ("rust-nu-stream" ,rust-nu-stream-0.43) + ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.44) + ("rust-nu-command" ,rust-nu-command-0.44) + ("rust-nu-completion" ,rust-nu-completion-0.44) + ("rust-nu-data" ,rust-nu-data-0.44) + ("rust-nu-engine" ,rust-nu-engine-0.44) + ("rust-nu-errors" ,rust-nu-errors-0.44) + ("rust-nu-parser" ,rust-nu-parser-0.44) + ("rust-nu-path" ,rust-nu-path-0.44) + ("rust-nu-protocol" ,rust-nu-protocol-0.44) + ("rust-nu-source" ,rust-nu-source-0.44) + ("rust-nu-stream" ,rust-nu-stream-0.44) ("rust-pretty-env-logger" ,rust-pretty-env-logger-0.4) ("rust-rustyline" ,rust-rustyline-9) ("rust-serde" ,rust-serde-1) @@ -1079,17 +1079,17 @@ underline).") (description "CLI for nushell") (license license:expat))) -(define-public rust-nu-command-0.43 +(define-public rust-nu-command-0.44 (package (name "rust-nu-command") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu-command" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0zg9qgip9r831sj4y63p8js2pdl3cn1i1wly0kvad1wyn3wm67rr")))) + (base32 "1h62df48z8vji10jsmpcfrgbr404kvsl1i3p5gns5gg9wscbpp8f")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -1121,22 +1121,22 @@ underline).") ("rust-md-5" ,rust-md-5-0.9) ("rust-meval" ,rust-meval-0.2) ("rust-mime" ,rust-mime-0.3) - ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.43) - ("rust-nu-data" ,rust-nu-data-0.43) - ("rust-nu-engine" ,rust-nu-engine-0.43) - ("rust-nu-errors" ,rust-nu-errors-0.43) - ("rust-nu-json" ,rust-nu-json-0.43) - ("rust-nu-parser" ,rust-nu-parser-0.43) - ("rust-nu-path" ,rust-nu-path-0.43) - ("rust-nu-plugin" ,rust-nu-plugin-0.43) - ("rust-nu-pretty-hex" ,rust-nu-pretty-hex-0.43) - ("rust-nu-protocol" ,rust-nu-protocol-0.43) - ("rust-nu-serde" ,rust-nu-serde-0.43) - ("rust-nu-source" ,rust-nu-source-0.43) - ("rust-nu-stream" ,rust-nu-stream-0.43) - ("rust-nu-table" ,rust-nu-table-0.43) - ("rust-nu-test-support" ,rust-nu-test-support-0.43) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.43) + ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.44) + ("rust-nu-data" ,rust-nu-data-0.44) + ("rust-nu-engine" ,rust-nu-engine-0.44) + ("rust-nu-errors" ,rust-nu-errors-0.44) + ("rust-nu-json" ,rust-nu-json-0.44) + ("rust-nu-parser" ,rust-nu-parser-0.44) + ("rust-nu-path" ,rust-nu-path-0.44) + ("rust-nu-plugin" ,rust-nu-plugin-0.44) + ("rust-nu-pretty-hex" ,rust-nu-pretty-hex-0.44) + ("rust-nu-protocol" ,rust-nu-protocol-0.44) + ("rust-nu-serde" ,rust-nu-serde-0.44) + ("rust-nu-source" ,rust-nu-source-0.44) + ("rust-nu-stream" ,rust-nu-stream-0.44) + ("rust-nu-table" ,rust-nu-table-0.44) + ("rust-nu-test-support" ,rust-nu-test-support-0.44) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.44) ("rust-num-bigint" ,rust-num-bigint-0.4) ("rust-num-format" ,rust-num-format-0.4) ("rust-num-traits" ,rust-num-traits-0.2) @@ -1178,10 +1178,10 @@ underline).") (description "CLI for nushell") (license license:expat))) -(define-public rust-nu-completion-0.43 +(define-public rust-nu-completion-0.44 (package (name "rust-nu-completion") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) @@ -1190,36 +1190,36 @@ underline).") (string-append name "-" version ".tar.gz")) (sha256 (base32 - "1w04z9973zfv33lpbdjy3qn3nxkxc0a6y0zby6cwvg3vs0mkprdn")))) + "0pp3949cckivl57cqmcm5cc4pd6z8syyrbankk32vwlm0v4yly0q")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-indexmap" ,rust-indexmap-1) ("rust-is-executable" ,rust-is-executable-1) - ("rust-nu-data" ,rust-nu-data-0.43) - ("rust-nu-engine" ,rust-nu-engine-0.43) - ("rust-nu-parser" ,rust-nu-parser-0.43) - ("rust-nu-path" ,rust-nu-path-0.43) - ("rust-nu-protocol" ,rust-nu-protocol-0.43) - ("rust-nu-source" ,rust-nu-source-0.43) - ("rust-nu-test-support" ,rust-nu-test-support-0.43)))) + ("rust-nu-data" ,rust-nu-data-0.44) + ("rust-nu-engine" ,rust-nu-engine-0.44) + ("rust-nu-parser" ,rust-nu-parser-0.44) + ("rust-nu-path" ,rust-nu-path-0.44) + ("rust-nu-protocol" ,rust-nu-protocol-0.44) + ("rust-nu-source" ,rust-nu-source-0.44) + ("rust-nu-test-support" ,rust-nu-test-support-0.44)))) (home-page "https://www.nushell.sh") (synopsis "Completions for nushell") (description "Completions for nushell") (license license:expat))) -(define-public rust-nu-data-0.43 +(define-public rust-nu-data-0.44 (package (name "rust-nu-data") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu-data" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0fv4z61kp54jn03zkpv461im9cqdmd8xcl1j8pdpsglhbl1h6203")))) + (base32 "1kjyp63fr18rym2xvfqpyw4z0z1j8ckf2aszfk1a4z0pj64w6bi6")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -1233,14 +1233,14 @@ underline).") ("rust-getset" ,rust-getset-0.1) ("rust-indexmap" ,rust-indexmap-1) ("rust-log" ,rust-log-0.4) - ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.43) - ("rust-nu-errors" ,rust-nu-errors-0.43) - ("rust-nu-path" ,rust-nu-path-0.43) - ("rust-nu-protocol" ,rust-nu-protocol-0.43) - ("rust-nu-source" ,rust-nu-source-0.43) - ("rust-nu-table" ,rust-nu-table-0.43) - ("rust-nu-test-support" ,rust-nu-test-support-0.43) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.43) + ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.44) + ("rust-nu-errors" ,rust-nu-errors-0.44) + ("rust-nu-path" ,rust-nu-path-0.44) + ("rust-nu-protocol" ,rust-nu-protocol-0.44) + ("rust-nu-source" ,rust-nu-source-0.44) + ("rust-nu-table" ,rust-nu-table-0.44) + ("rust-nu-test-support" ,rust-nu-test-support-0.44) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.44) ("rust-num-bigint" ,rust-num-bigint-0.4) ("rust-num-format" ,rust-num-format-0.4) ("rust-num-traits" ,rust-num-traits-0.2) @@ -1253,17 +1253,17 @@ underline).") (description "CLI for nushell") (license license:expat))) -(define-public rust-nu-engine-0.43 +(define-public rust-nu-engine-0.44 (package (name "rust-nu-engine") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu-engine" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0z2c06bmac992qyzrfa2b25z3zyg8laj9pxqfa51c6kqsyy41y28")))) + (base32 "0ry9x0ji4dikvd7vq4x9l1iqjwdhm80gcsvhfi7d0c26nvw8kpiz")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -1283,17 +1283,17 @@ underline).") ("rust-itertools" ,rust-itertools-0.10) ("rust-lazy-static" ,rust-lazy-static-1) ("rust-log" ,rust-log-0.4) - ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.43) - ("rust-nu-data" ,rust-nu-data-0.43) - ("rust-nu-errors" ,rust-nu-errors-0.43) - ("rust-nu-parser" ,rust-nu-parser-0.43) - ("rust-nu-path" ,rust-nu-path-0.43) - ("rust-nu-plugin" ,rust-nu-plugin-0.43) - ("rust-nu-protocol" ,rust-nu-protocol-0.43) - ("rust-nu-source" ,rust-nu-source-0.43) - ("rust-nu-stream" ,rust-nu-stream-0.43) - ("rust-nu-test-support" ,rust-nu-test-support-0.43) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.43) + ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.44) + ("rust-nu-data" ,rust-nu-data-0.44) + ("rust-nu-errors" ,rust-nu-errors-0.44) + ("rust-nu-parser" ,rust-nu-parser-0.44) + ("rust-nu-path" ,rust-nu-path-0.44) + ("rust-nu-plugin" ,rust-nu-plugin-0.44) + ("rust-nu-protocol" ,rust-nu-protocol-0.44) + ("rust-nu-source" ,rust-nu-source-0.44) + ("rust-nu-stream" ,rust-nu-stream-0.44) + ("rust-nu-test-support" ,rust-nu-test-support-0.44) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.44) ("rust-num-bigint" ,rust-num-bigint-0.4) ("rust-parking-lot" ,rust-parking-lot-0.11) ("rust-rayon" ,rust-rayon-1) @@ -1311,17 +1311,17 @@ underline).") (description "Core commands for nushell") (license license:expat))) -(define-public rust-nu-errors-0.43 +(define-public rust-nu-errors-0.44 (package (name "rust-nu-errors") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu-errors" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1a5wn3vimqi7j015by93s2i1jifdi2p45n5pp1gnvkp0kfs4kvlb")))) + (base32 "1cd5rkqlhgab6hb1q31xqbrb0j9wbmwzp9z20rrsc59s5zajiivq")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -1331,8 +1331,8 @@ underline).") ("rust-derive-new" ,rust-derive-new-0.5) ("rust-getset" ,rust-getset-0.1) ("rust-glob" ,rust-glob-0.3) - ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.43) - ("rust-nu-source" ,rust-nu-source-0.43) + ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.44) + ("rust-nu-source" ,rust-nu-source-0.44) ("rust-num-bigint" ,rust-num-bigint-0.4) ("rust-num-traits" ,rust-num-traits-0.2) ("rust-serde" ,rust-serde-1) @@ -1344,17 +1344,17 @@ underline).") (description "Core error subsystem for Nushell") (license license:expat))) -(define-public rust-nu-json-0.43 +(define-public rust-nu-json-0.44 (package (name "rust-nu-json") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu-json" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1kj331q3bmdhzl19x7x1c7rxcmawjyy77p0j7mc9x01idqwc2mvs")))) + (base32 "0vdp2brhiyvrkqd1127cixwdcqqmbhf7qha4jyx1ki4hh7w86l0b")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -1369,17 +1369,17 @@ underline).") (description "This package is a fork of @code{serde-hjson}.") (license license:expat))) -(define-public rust-nu-parser-0.43 +(define-public rust-nu-parser-0.44 (package (name "rust-nu-parser") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu-parser" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0qdf76br7fn1ivhvdnxqd2jzarppkk94hz0frd08vlf4z2a257xv")))) + (base32 "1n4223kb9gnwmfhn4als68y1b2niw2zkl8wkra8622gm7p116xq6")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -1389,12 +1389,12 @@ underline).") ("rust-indexmap" ,rust-indexmap-1) ("rust-itertools" ,rust-itertools-0.10) ("rust-log" ,rust-log-0.4) - ("rust-nu-data" ,rust-nu-data-0.43) - ("rust-nu-errors" ,rust-nu-errors-0.43) - ("rust-nu-path" ,rust-nu-path-0.43) - ("rust-nu-protocol" ,rust-nu-protocol-0.43) - ("rust-nu-source" ,rust-nu-source-0.43) - ("rust-nu-test-support" ,rust-nu-test-support-0.43) + ("rust-nu-data" ,rust-nu-data-0.44) + ("rust-nu-errors" ,rust-nu-errors-0.44) + ("rust-nu-path" ,rust-nu-path-0.44) + ("rust-nu-protocol" ,rust-nu-protocol-0.44) + ("rust-nu-source" ,rust-nu-source-0.44) + ("rust-nu-test-support" ,rust-nu-test-support-0.44) ("rust-num-bigint" ,rust-num-bigint-0.4) ("rust-smart-default" ,rust-smart-default-0.6)))) (home-page "https://www.nushell.sh") @@ -1402,17 +1402,17 @@ underline).") (description "Nushell parser") (license license:expat))) -(define-public rust-nu-path-0.43 +(define-public rust-nu-path-0.44 (package (name "rust-nu-path") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu-path" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0girfz9yihrkps3zpzc1jgnwmfxqbnxpq0i6vxqrwyj7ipglc8z7")))) + (base32 "069df6ikkaimcr1pjiycfr3ma6sjmb4ajmyxqdckckaqx4nj5wqk")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -1423,10 +1423,10 @@ underline).") (description "Nushell parser") (license license:expat))) -(define-public rust-nu-plugin-0.43 +(define-public rust-nu-plugin-0.44 (package (name "rust-nu-plugin") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) @@ -1434,17 +1434,17 @@ underline).") (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "14l1g2pzf2cgk0y8walalzcsq6jp9817hip9m41bhfpiirs6vxgg")))) + (base32 "0vs4f84krf859j9f9rqzggzq3i49gb84928l22ddshdsspynckmj")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-indexmap" ,rust-indexmap-1) - ("rust-nu-errors" ,rust-nu-errors-0.43) - ("rust-nu-protocol" ,rust-nu-protocol-0.43) - ("rust-nu-source" ,rust-nu-source-0.43) - ("rust-nu-test-support" ,rust-nu-test-support-0.43) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.43) + ("rust-nu-errors" ,rust-nu-errors-0.44) + ("rust-nu-protocol" ,rust-nu-protocol-0.44) + ("rust-nu-source" ,rust-nu-source-0.44) + ("rust-nu-test-support" ,rust-nu-test-support-0.44) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.44) ("rust-serde" ,rust-serde-1) ("rust-serde-json" ,rust-serde-json-1)))) (home-page "https://www.nushell.sh") @@ -1452,17 +1452,17 @@ underline).") (description "Nushell Plugin") (license license:expat))) -(define-public rust-nu-plugin-binaryview-0.43 +(define-public rust-nu-plugin-binaryview-0.44 (package (name "rust-nu-plugin-binaryview") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_binaryview" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0kdsw7xkmd2gxrnga4q1xc80mw9z0birpm049xw2ivs3n0aqza6x")))) + (base32 "1zk49hfp21akf6x7ml4b3h61y7jrj5i03zdmikci981idqm2fivm")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -1470,12 +1470,12 @@ underline).") (("rust-crossterm" ,rust-crossterm-0.19) ("rust-image" ,rust-image-0.23) ("rust-neso" ,rust-neso-0.5) - ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.43) - ("rust-nu-errors" ,rust-nu-errors-0.43) - ("rust-nu-plugin" ,rust-nu-plugin-0.43) - ("rust-nu-pretty-hex" ,rust-nu-pretty-hex-0.43) - ("rust-nu-protocol" ,rust-nu-protocol-0.43) - ("rust-nu-source" ,rust-nu-source-0.43) + ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.44) + ("rust-nu-errors" ,rust-nu-errors-0.44) + ("rust-nu-plugin" ,rust-nu-plugin-0.44) + ("rust-nu-pretty-hex" ,rust-nu-pretty-hex-0.44) + ("rust-nu-protocol" ,rust-nu-protocol-0.44) + ("rust-nu-source" ,rust-nu-source-0.44) ("rust-rawkey" ,rust-rawkey-0.1)))) (home-page "https://www.nushell.sh") (synopsis "Binary viewer plugin for Nushell") @@ -1483,28 +1483,28 @@ underline).") "This package provides a binary viewer plugin for Nushell.") (license license:expat))) -(define-public rust-nu-plugin-chart-0.43 +(define-public rust-nu-plugin-chart-0.44 (package (name "rust-nu-plugin-chart") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_chart" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0lknhw3nc3nbqwyah161d2ksspbqfph2xaarxqiblzzlryg0kwvj")))) + (base32 "05nv8c1650w8bh71s7yl35ybbjky6b4vdwkw0ywanhm1nqziva7s")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-crossterm" ,rust-crossterm-0.19) - ("rust-nu-data" ,rust-nu-data-0.43) - ("rust-nu-errors" ,rust-nu-errors-0.43) - ("rust-nu-plugin" ,rust-nu-plugin-0.43) - ("rust-nu-protocol" ,rust-nu-protocol-0.43) - ("rust-nu-source" ,rust-nu-source-0.43) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.43) + ("rust-nu-data" ,rust-nu-data-0.44) + ("rust-nu-errors" ,rust-nu-errors-0.44) + ("rust-nu-plugin" ,rust-nu-plugin-0.44) + ("rust-nu-protocol" ,rust-nu-protocol-0.44) + ("rust-nu-source" ,rust-nu-source-0.44) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.44) ("rust-tui" ,rust-tui-0.15)))) (home-page "https://www.nushell.sh") (synopsis "Plugin to display charts") @@ -1512,27 +1512,27 @@ underline).") "This package provides a plugin to display charts in Nushell.") (license license:expat))) -(define-public rust-nu-plugin-from-bson-0.43 +(define-public rust-nu-plugin-from-bson-0.44 (package (name "rust-nu-plugin-from-bson") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_from_bson" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1rdd5s82jdw1wr23s3020cm2gqm89zzbfb863bsysj88xa6mxr1s")))) + (base32 "1hmkqiqyqiin80fmlb31r6dgpif8r9nlda4w8ihzjflsbxnmp6wd")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-bigdecimal" ,rust-bigdecimal-0.3) ("rust-bson" ,rust-bson-2) - ("rust-nu-errors" ,rust-nu-errors-0.43) - ("rust-nu-plugin" ,rust-nu-plugin-0.43) - ("rust-nu-protocol" ,rust-nu-protocol-0.43) - ("rust-nu-source" ,rust-nu-source-0.43)))) + ("rust-nu-errors" ,rust-nu-errors-0.44) + ("rust-nu-plugin" ,rust-nu-plugin-0.44) + ("rust-nu-protocol" ,rust-nu-protocol-0.44) + ("rust-nu-source" ,rust-nu-source-0.44)))) (home-page "https://www.nushell.sh") (synopsis "Converter plugin to the bson format for Nushell") (description @@ -1540,26 +1540,26 @@ underline).") Nushell.") (license license:expat))) -(define-public rust-nu-plugin-from-sqlite-0.43 +(define-public rust-nu-plugin-from-sqlite-0.44 (package (name "rust-nu-plugin-from-sqlite") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_from_sqlite" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0xfh4db0aap34aq9784zrprdk4cqqkf22v0z7mcw4a2jbranbz8z")))) + (base32 "11dirmm78n6jwsq8qihx3sbjfa0j7s9ffl1j03v8f4zzfvsypxxb")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-bigdecimal" ,rust-bigdecimal-0.3) - ("rust-nu-errors" ,rust-nu-errors-0.43) - ("rust-nu-plugin" ,rust-nu-plugin-0.43) - ("rust-nu-protocol" ,rust-nu-protocol-0.43) - ("rust-nu-source" ,rust-nu-source-0.43) + ("rust-nu-errors" ,rust-nu-errors-0.44) + ("rust-nu-plugin" ,rust-nu-plugin-0.44) + ("rust-nu-protocol" ,rust-nu-protocol-0.44) + ("rust-nu-source" ,rust-nu-source-0.44) ("rust-rusqlite" ,rust-rusqlite-0.26) ("rust-tempfile" ,rust-tempfile-3)))) (home-page "https://www.nushell.sh") @@ -1569,27 +1569,27 @@ Nushell.") Nushell.") (license license:expat))) -(define-public rust-nu-plugin-inc-0.43 +(define-public rust-nu-plugin-inc-0.44 (package (name "rust-nu-plugin-inc") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_inc" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "12d2rrw3z0791vg44h87xprkcxksqrhjk6jx23f8hpxfh3mg4llg")))) + (base32 "0gyj54ip1nl68rav3h78sjljh826cp71khmjsbsvyphhgdm1kbhw")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs - (("rust-nu-errors" ,rust-nu-errors-0.43) - ("rust-nu-plugin" ,rust-nu-plugin-0.43) - ("rust-nu-protocol" ,rust-nu-protocol-0.43) - ("rust-nu-source" ,rust-nu-source-0.43) - ("rust-nu-test-support" ,rust-nu-test-support-0.43) - ("rust-nu-value-ext" ,rust-nu-value-ext-0.43) + (("rust-nu-errors" ,rust-nu-errors-0.44) + ("rust-nu-plugin" ,rust-nu-plugin-0.44) + ("rust-nu-protocol" ,rust-nu-protocol-0.44) + ("rust-nu-source" ,rust-nu-source-0.44) + ("rust-nu-test-support" ,rust-nu-test-support-0.44) + ("rust-nu-value-ext" ,rust-nu-value-ext-0.44) ("rust-semver" ,rust-semver-0.11)))) (home-page "https://www.nushell.sh") (synopsis "Version incrementer plugin for Nushell") @@ -1598,24 +1598,24 @@ Nushell.") Nushell.") (license license:expat))) -(define-public rust-nu-plugin-match-0.43 +(define-public rust-nu-plugin-match-0.44 (package (name "rust-nu-plugin-match") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_match" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "14ay1lwk1465dczpxk27silllv068l0gdyljwcbngz4y65ykh02y")))) + (base32 "1hbs9h28qwwd8i3rb2klx2xmgcxs6l92x9dbmjx3bl85wmjk2skm")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs - (("rust-nu-errors" ,rust-nu-errors-0.43) - ("rust-nu-plugin" ,rust-nu-plugin-0.43) - ("rust-nu-protocol" ,rust-nu-protocol-0.43) + (("rust-nu-errors" ,rust-nu-errors-0.44) + ("rust-nu-plugin" ,rust-nu-plugin-0.44) + ("rust-nu-protocol" ,rust-nu-protocol-0.44) ("rust-regex" ,rust-regex-1)))) (home-page "https://www.nushell.sh") (synopsis "Regex match plugin for Nushell") @@ -1623,76 +1623,76 @@ Nushell.") "This package provides a regex match plugin for Nushell.") (license license:expat))) -(define-public rust-nu-plugin-query-json-0.43 +(define-public rust-nu-plugin-query-json-0.44 (package (name "rust-nu-plugin-query-json") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_query_json" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0n30zp85kmy6diab79c6is1jvjw8y5g5bljh3fgq2nz42fvwng9y")))) + (base32 "1yzcgm8sqzgr55hdcpzqrdfjc0yhz95qqpxyscm8cm6xw59ib0z2")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-gjson" ,rust-gjson-0.8) - ("rust-nu-errors" ,rust-nu-errors-0.43) - ("rust-nu-plugin" ,rust-nu-plugin-0.43) - ("rust-nu-protocol" ,rust-nu-protocol-0.43) - ("rust-nu-source" ,rust-nu-source-0.43)))) + ("rust-nu-errors" ,rust-nu-errors-0.44) + ("rust-nu-plugin" ,rust-nu-plugin-0.44) + ("rust-nu-protocol" ,rust-nu-protocol-0.44) + ("rust-nu-source" ,rust-nu-source-0.44)))) (home-page "https://www.nushell.sh") (synopsis "Query JSON files with Gjson") (description "query json files with gjson") (license license:expat))) -(define-public rust-nu-plugin-s3-0.43 +(define-public rust-nu-plugin-s3-0.44 (package (name "rust-nu-plugin-s3") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_s3" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "03ysj4zphwnyi537yia9ba706xn2ysv2jfm3z2w28flqb402jv0d")))) + (base32 "0ims4p3z48ja8ygkhcbq1a506hp8ry3ipdpgv9j7iqi833g0vgjl")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-futures" ,rust-futures-0.3) - ("rust-nu-errors" ,rust-nu-errors-0.43) - ("rust-nu-plugin" ,rust-nu-plugin-0.43) - ("rust-nu-protocol" ,rust-nu-protocol-0.43) - ("rust-nu-source" ,rust-nu-source-0.43) + ("rust-nu-errors" ,rust-nu-errors-0.44) + ("rust-nu-plugin" ,rust-nu-plugin-0.44) + ("rust-nu-protocol" ,rust-nu-protocol-0.44) + ("rust-nu-source" ,rust-nu-source-0.44) ("rust-s3handler" ,rust-s3handler-0.7)))) (home-page "https://www.nushell.sh") (synopsis "S3 plugin for Nushell") (description "This package is an S3 plugin for Nushell.") (license license:expat))) -(define-public rust-nu-plugin-selector-0.43 +(define-public rust-nu-plugin-selector-0.44 (package (name "rust-nu-plugin-selector") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_selector" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1w886dcb5k96jryy64xmmsyay85nz2mshz4v3glpwvvqcrp2df1v")))) + (base32 "1ni51yr1vndjf7c9qmvrc23nn3csv5jy14bwd8kxd5b7648aidsy")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs - (("rust-nu-errors" ,rust-nu-errors-0.43) - ("rust-nu-plugin" ,rust-nu-plugin-0.43) - ("rust-nu-protocol" ,rust-nu-protocol-0.43) - ("rust-nu-source" ,rust-nu-source-0.43) + (("rust-nu-errors" ,rust-nu-errors-0.44) + ("rust-nu-plugin" ,rust-nu-plugin-0.44) + ("rust-nu-protocol" ,rust-nu-protocol-0.44) + ("rust-nu-source" ,rust-nu-source-0.44) ("rust-scraper" ,rust-scraper-0.12)))) (home-page "https://www.nushell.sh") (synopsis "Web scraping using CSS selector") @@ -1700,28 +1700,28 @@ Nushell.") "This package provides web scraping using CSS selector.") (license license:expat))) -(define-public rust-nu-plugin-start-0.43 +(define-public rust-nu-plugin-start-0.44 (package (name "rust-nu-plugin-start") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_start" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "060mw4r5dr8wd4cpmh0by953yc2zgxqfbzras1gv67p9cxwmjpjz")))) + (base32 "028pb15y5dyywc84h79kdf0hz9l1m37djly8jhrcbj6v55x3k9h6")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-glob" ,rust-glob-0.3) - ("rust-nu-errors" ,rust-nu-errors-0.43) - ("rust-nu-errors" ,rust-nu-errors-0.43) - ("rust-nu-plugin" ,rust-nu-plugin-0.43) - ("rust-nu-protocol" ,rust-nu-protocol-0.43) - ("rust-nu-source" ,rust-nu-source-0.43) - ("rust-nu-source" ,rust-nu-source-0.43) + ("rust-nu-errors" ,rust-nu-errors-0.44) + ("rust-nu-errors" ,rust-nu-errors-0.44) + ("rust-nu-plugin" ,rust-nu-plugin-0.44) + ("rust-nu-protocol" ,rust-nu-protocol-0.44) + ("rust-nu-source" ,rust-nu-source-0.44) + ("rust-nu-source" ,rust-nu-source-0.44) ("rust-open" ,rust-open-1) ("rust-url" ,rust-url-2) ("rust-webbrowser" ,rust-webbrowser-0.5)))) @@ -1732,27 +1732,27 @@ Nushell.") Nushell.") (license license:expat))) -(define-public rust-nu-plugin-textview-0.43 +(define-public rust-nu-plugin-textview-0.44 (package (name "rust-nu-plugin-textview") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_textview" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1qhfyvrakqzngx824yrl94k71vzp6261z1ifp1nm8xmc09d63g1n")))) + (base32 "17amhjvx1jfdz98jiavhnn18263f3hg3is7x0rkdzddng0abzpc7")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-bat" ,rust-bat-0.18) - ("rust-nu-data" ,rust-nu-data-0.43) - ("rust-nu-errors" ,rust-nu-errors-0.43) - ("rust-nu-plugin" ,rust-nu-plugin-0.43) - ("rust-nu-protocol" ,rust-nu-protocol-0.43) - ("rust-nu-source" ,rust-nu-source-0.43) + ("rust-nu-data" ,rust-nu-data-0.44) + ("rust-nu-errors" ,rust-nu-errors-0.44) + ("rust-nu-plugin" ,rust-nu-plugin-0.44) + ("rust-nu-protocol" ,rust-nu-protocol-0.44) + ("rust-nu-source" ,rust-nu-source-0.44) ("rust-term-size" ,rust-term-size-0.3) ("rust-url" ,rust-url-2)))) (home-page "https://www.nushell.sh") @@ -1761,26 +1761,26 @@ Nushell.") Nushell.") (license license:expat))) -(define-public rust-nu-plugin-to-bson-0.43 +(define-public rust-nu-plugin-to-bson-0.44 (package (name "rust-nu-plugin-to-bson") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_to_bson" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "04rlb6vajbhykx4wklfyffd0gfrpkdm0f59bz7vgnyw1wv7dgwln")))) + (base32 "003x90qshcn7yv86zaw449akqvi4vz78s05g0qcgrfxgvpn7vdch")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-bson" ,rust-bson-2) - ("rust-nu-errors" ,rust-nu-errors-0.43) - ("rust-nu-plugin" ,rust-nu-plugin-0.43) - ("rust-nu-protocol" ,rust-nu-protocol-0.43) - ("rust-nu-source" ,rust-nu-source-0.43) + ("rust-nu-errors" ,rust-nu-errors-0.44) + ("rust-nu-plugin" ,rust-nu-plugin-0.44) + ("rust-nu-protocol" ,rust-nu-protocol-0.44) + ("rust-nu-source" ,rust-nu-source-0.44) ("rust-num-traits" ,rust-num-traits-0.2)))) (home-page "https://www.nushell.sh") (synopsis "Converter plugin to the bson format for Nushell") @@ -1789,26 +1789,26 @@ Nushell.") Nushell.") (license license:expat))) -(define-public rust-nu-plugin-to-sqlite-0.43 +(define-public rust-nu-plugin-to-sqlite-0.44 (package (name "rust-nu-plugin-to-sqlite") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_to_sqlite" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "08zdydpqk9xidq9qkrhk76dy05h65m8jz1ynk60g9k8fqn872bda")))) + (base32 "06d93a5xgssvxrbvcv12b9jwh9xwl6sz6admbpxnk9r78lpgfdaj")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-hex" ,rust-hex-0.4) - ("rust-nu-errors" ,rust-nu-errors-0.43) - ("rust-nu-plugin" ,rust-nu-plugin-0.43) - ("rust-nu-protocol" ,rust-nu-protocol-0.43) - ("rust-nu-source" ,rust-nu-source-0.43) + ("rust-nu-errors" ,rust-nu-errors-0.44) + ("rust-nu-plugin" ,rust-nu-plugin-0.44) + ("rust-nu-protocol" ,rust-nu-protocol-0.44) + ("rust-nu-source" ,rust-nu-source-0.44) ("rust-rusqlite" ,rust-rusqlite-0.26) ("rust-tempfile" ,rust-tempfile-3)))) (home-page "https://www.nushell.sh") @@ -1818,25 +1818,25 @@ Nushell.") Nushell.") (license license:expat))) -(define-public rust-nu-plugin-tree-0.43 +(define-public rust-nu-plugin-tree-0.44 (package (name "rust-nu-plugin-tree") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_tree" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1mhk4vwrs0f70zya1dczkr1d366w32gj8y6byjrx0dpmqljm77w8")))) + (base32 "089mp7spa0fcxm45njmjcab685cv30jb0b3kkgvjp8ywwakyy8lb")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-derive-new" ,rust-derive-new-0.5) - ("rust-nu-errors" ,rust-nu-errors-0.43) - ("rust-nu-plugin" ,rust-nu-plugin-0.43) - ("rust-nu-protocol" ,rust-nu-protocol-0.43) + ("rust-nu-errors" ,rust-nu-errors-0.44) + ("rust-nu-plugin" ,rust-nu-plugin-0.44) + ("rust-nu-protocol" ,rust-nu-protocol-0.44) ("rust-ptree" ,rust-ptree-0.4)))) (home-page "https://www.nushell.sh") (synopsis "Tree viewer plugin for Nushell") @@ -1844,27 +1844,27 @@ Nushell.") Nushell.") (license license:expat))) -(define-public rust-nu-plugin-xpath-0.43 +(define-public rust-nu-plugin-xpath-0.44 (package (name "rust-nu-plugin-xpath") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu_plugin_xpath" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0b84idjp4hp60x4i5x605i6jryqjdmw4sxz6ddapf2rciyxvh0wg")))) + (base32 "18qbhibn9pz9hnilqzv2g1s51fmlwpm60ma2r6qjsa5pcy9x12dh")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-bigdecimal" ,rust-bigdecimal-0.3) ("rust-indexmap" ,rust-indexmap-1) - ("rust-nu-errors" ,rust-nu-errors-0.43) - ("rust-nu-plugin" ,rust-nu-plugin-0.43) - ("rust-nu-protocol" ,rust-nu-protocol-0.43) - ("rust-nu-source" ,rust-nu-source-0.43) + ("rust-nu-errors" ,rust-nu-errors-0.44) + ("rust-nu-plugin" ,rust-nu-plugin-0.44) + ("rust-nu-protocol" ,rust-nu-protocol-0.44) + ("rust-nu-source" ,rust-nu-source-0.44) ("rust-sxd-document" ,rust-sxd-document-0.3) ("rust-sxd-xpath" ,rust-sxd-xpath-0.4)))) (home-page "https://www.nushell.sh") @@ -1872,23 +1872,23 @@ Nushell.") (description "Traverses XML") (license license:expat))) -(define-public rust-nu-pretty-hex-0.43 +(define-public rust-nu-pretty-hex-0.44 (package (name "rust-nu-pretty-hex") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu-pretty-hex" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "04zqqpadx55782s85xh32cb9iss0q8q3alk5n17ic49pxlk7c3jz")))) + (base32 "1dizakbxm2c6vpjy5brqbjhk8m7lr7wammibb1vr8nq85aazrj5r")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-heapless" ,rust-heapless-0.7) - ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.43) + ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.44) ("rust-rand" ,rust-rand-0.8)))) (home-page "https://www.nushell.sh") (synopsis "Pretty hex dump of bytes slice in the common style") @@ -1897,17 +1897,17 @@ Nushell.") style.") (license license:expat))) -(define-public rust-nu-protocol-0.43 +(define-public rust-nu-protocol-0.44 (package (name "rust-nu-protocol") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu-protocol" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1z8kddg517ky85b22h1zm9wpka0p4838yn8s63iljpy67jyf4g04")))) + (base32 "1r6cnrqsq3qx3132w0p78262vql1bk446ynnfjsiffd07rmba2f7")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -1920,8 +1920,8 @@ style.") ("rust-getset" ,rust-getset-0.1) ("rust-indexmap" ,rust-indexmap-1) ("rust-log" ,rust-log-0.4) - ("rust-nu-errors" ,rust-nu-errors-0.43) - ("rust-nu-source" ,rust-nu-source-0.43) + ("rust-nu-errors" ,rust-nu-errors-0.44) + ("rust-nu-source" ,rust-nu-source-0.44) ("rust-num-bigint" ,rust-num-bigint-0.4) ("rust-num-integer" ,rust-num-integer-0.1) ("rust-num-traits" ,rust-num-traits-0.2) @@ -1933,25 +1933,25 @@ style.") (description "Core values and protocols for Nushell") (license license:expat))) -(define-public rust-nu-serde-0.43 +(define-public rust-nu-serde-0.44 (package (name "rust-nu-serde") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu-serde" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0iwwqyi4zq7m6v15kfdk7ywi816i4w400jm97a9w53jriyl4finl")))) + (base32 "190lid6jqgrb50qzqk849hg44rcn392qbppdm8zhgy732fsjb2j4")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-bigdecimal" ,rust-bigdecimal-0.3) ("rust-insta" ,rust-insta-1) - ("rust-nu-protocol" ,rust-nu-protocol-0.43) - ("rust-nu-source" ,rust-nu-source-0.43) + ("rust-nu-protocol" ,rust-nu-protocol-0.44) + ("rust-nu-source" ,rust-nu-source-0.44) ("rust-serde" ,rust-serde-1) ("rust-thiserror" ,rust-thiserror-1)))) (home-page "https://www.nushell.sh") @@ -1961,17 +1961,17 @@ style.") Serde.") (license license:expat))) -(define-public rust-nu-source-0.43 +(define-public rust-nu-source-0.44 (package (name "rust-nu-source") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu-source" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1h5lwck4yfi3c0f4p94yl30qzhbii10flcksj5g1vrra6vlasaq2")))) + (base32 "04w4s4yk5byy5mmrhvcbcvf179vjmb9pa2jch5vgl6rckipzd31l")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -1988,46 +1988,46 @@ Serde.") Nushell.") (license license:expat))) -(define-public rust-nu-stream-0.43 +(define-public rust-nu-stream-0.44 (package (name "rust-nu-stream") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu-stream" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "11v103gnwp4jxvwmk6dj93yrr6dqxl3r3yhfzlb0q416ai0x4h3k")))) + (base32 "14fs2dqa4papd48zil35901z4sc0p15dga96jbrsbhimk85g0gba")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs - (("rust-nu-errors" ,rust-nu-errors-0.43) - ("rust-nu-protocol" ,rust-nu-protocol-0.43) - ("rust-nu-source" ,rust-nu-source-0.43)))) + (("rust-nu-errors" ,rust-nu-errors-0.44) + ("rust-nu-protocol" ,rust-nu-protocol-0.44) + ("rust-nu-source" ,rust-nu-source-0.44)))) (home-page "https://www.nushell.sh") (synopsis "Nushell stream") (description "This package provides Nushell stream.") (license license:expat))) -(define-public rust-nu-table-0.43 +(define-public rust-nu-table-0.44 (package (name "rust-nu-table") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu-table" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1h2lh6px63bwxi5b9db5b7mgjdqdaj2yp1p0zrzdqj4i80h3dvww")))) + (base32 "0lk2cr8k0wbh5ya42ldz129yzfpqibzvjqy1bkpccfh2lf9n01g2")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-atty" ,rust-atty-0.2) - ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.43) + ("rust-nu-ansi-term" ,rust-nu-ansi-term-0.44) ("rust-regex" ,rust-regex-1) ("rust-strip-ansi-escapes" ,rust-strip-ansi-escapes-0.1) ("rust-unicode-width" ,rust-unicode-width-0.1)))) @@ -2036,17 +2036,17 @@ Nushell.") (description "Nushell table printing") (license license:expat))) -(define-public rust-nu-test-support-0.43 +(define-public rust-nu-test-support-0.44 (package (name "rust-nu-test-support") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) (uri (crate-uri "nu-test-support" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "10c4jwlvc2804afjdmpr30ml2h9f40g20gllz31lk1vz8ssr426m")))) + (base32 "0fjaczf05lzs77f1chif11085xy2yklw2lzl0vz0sdzzkll1r374")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t @@ -2057,10 +2057,10 @@ Nushell.") ("rust-glob" ,rust-glob-0.3) ("rust-hamcrest2" ,rust-hamcrest2-0.3) ("rust-indexmap" ,rust-indexmap-1) - ("rust-nu-errors" ,rust-nu-errors-0.43) - ("rust-nu-path" ,rust-nu-path-0.43) - ("rust-nu-protocol" ,rust-nu-protocol-0.43) - ("rust-nu-source" ,rust-nu-source-0.43) + ("rust-nu-errors" ,rust-nu-errors-0.44) + ("rust-nu-path" ,rust-nu-path-0.44) + ("rust-nu-protocol" ,rust-nu-protocol-0.44) + ("rust-nu-source" ,rust-nu-source-0.44) ("rust-num-bigint" ,rust-num-bigint-0.4) ("rust-tempfile" ,rust-tempfile-3)))) (home-page "https://www.nushell.sh") @@ -2069,10 +2069,10 @@ Nushell.") tests.") (license license:expat))) -(define-public rust-nu-value-ext-0.43 +(define-public rust-nu-value-ext-0.44 (package (name "rust-nu-value-ext") - (version "0.43.0") + (version "0.44.0") (source (origin (method url-fetch) @@ -2080,16 +2080,16 @@ tests.") (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "03ix958321smsf5j57y36qv9k47isfwvh2aam9ar5qfy6sb1h5k9")))) + (base32 "0ag5y6qfj53w6skyb0vhwhxiykvpmz5izpgxnbz5r0i0bdscrmdy")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-indexmap" ,rust-indexmap-1) ("rust-itertools" ,rust-itertools-0.10) - ("rust-nu-errors" ,rust-nu-errors-0.43) - ("rust-nu-protocol" ,rust-nu-protocol-0.43) - ("rust-nu-source" ,rust-nu-source-0.43) + ("rust-nu-errors" ,rust-nu-errors-0.44) + ("rust-nu-protocol" ,rust-nu-protocol-0.44) + ("rust-nu-source" ,rust-nu-source-0.44) ("rust-num-traits" ,rust-num-traits-0.2)))) (home-page "https://www.nushell.sh") (synopsis "@code{Extension} traits for values in Nushell") -- cgit v1.3 From 3c37c9285116a96cac02147b7b3618a5e63eb2c2 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 8 Feb 2022 14:41:36 +0100 Subject: gnu: nushell: Improve synopsis. * gnu/packages/shells.scm (nushell)[synopsis]: Improve wording. --- gnu/packages/shells.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm index 9756a185fe..1cdb5ba5b2 100644 --- a/gnu/packages/shells.scm +++ b/gnu/packages/shells.scm @@ -1000,7 +1000,7 @@ files and text.") openssl zlib)) (home-page "https://www.nushell.sh") - (synopsis "Shell that understands the structure of the data") + (synopsis "Shell with a structured approach to the command line") (description "Nu draws inspiration from projects like PowerShell, functional programming languages, and modern CLI tools. Rather than thinking of files -- cgit v1.3 From 59892f105585a98bcaaa4abc99142944cb171acf Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 8 Feb 2022 15:12:43 +0100 Subject: gnu: emacs-mct: Update to 0.5.0. * gnu/packages/emacs-xyz.scm (emacs-mct): Update to 0.5.0. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 9b57b36623..ac20a4adba 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -997,14 +997,14 @@ process, passing on the arguments as command line arguments.") (define-public emacs-mct (package (name "emacs-mct") - (version "0.4.2") + (version "0.5.0") (source (origin (method git-fetch) (uri (git-reference (url "https://gitlab.com/protesilaos/mct") (commit version))) (sha256 - (base32 "0sj9hyxpighspwrm2yimqkdxlhw2yiznaj69ysn2sjd6jn2aqpc6")) + (base32 "0714n5nim0hyd5jywvvddka2gi2bhi1vkrbhx75mdn8h50r688kq")) (file-name (git-file-name name version)))) (build-system emacs-build-system) (home-page "https://protesilaos.com/emacs/mct") -- cgit v1.3 From ec5d2b54cd0c96276f4feaae863a18bc3e73ecae Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Tue, 8 Feb 2022 15:31:57 +0100 Subject: gnu: ocaml-fftw3: Update to 0.8.5. * gnu/packages/ocaml.scm (ocaml-fftw3): Update to 0.8.5. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index a93a5bf897..d0cfafbab4 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -6887,7 +6887,7 @@ language understood by ocamldoc.") (define-public ocaml-fftw3 (package (name "ocaml-fftw3") - (version "0.8.4") + (version "0.8.5") (source (origin (method git-fetch) @@ -6897,7 +6897,7 @@ language understood by ocamldoc.") (file-name (git-file-name name version)) (sha256 (base32 - "0l66yagjkwdcib6q55wd8wiap50vi23qiahkghlvm28z7nvbclfk")))) + "07ljbin9dsclsqh24p7haqjccz1w828sf5xfwlzl298d4a6zsbhs")))) (build-system dune-build-system) (arguments `(#:test-target "tests")) -- cgit v1.3 From f9c62b23cc88541756656b3ec602ce987828d906 Mon Sep 17 00:00:00 2001 From: Mathieu Othacehe Date: Tue, 8 Feb 2022 14:28:56 +0100 Subject: store: Warn about daemon deprecation. * guix/deprecation.scm (warn-about-old-daemon): New procedure. * guix/store.scm (build-things): Use it to warn about old daemons. --- guix/deprecation.scm | 7 +++++++ guix/store.scm | 2 ++ 2 files changed, 9 insertions(+) diff --git a/guix/deprecation.scm b/guix/deprecation.scm index c66c9367f6..666e178d75 100644 --- a/guix/deprecation.scm +++ b/guix/deprecation.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2019, 2020, 2021 Ludovic Courtès +;;; Copyright © 2021 Mathieu Othacehe ;;; ;;; This file is part of GNU Guix. ;;; @@ -24,6 +25,8 @@ define-deprecated/public define-deprecated/alias + + warn-about-old-daemon warn-about-deprecation)) ;;; Commentary: @@ -32,6 +35,10 @@ ;;; ;;; Code: +(define (warn-about-old-daemon) + (warning (G_ "Your Guix daemon is seriously outdated, please consider + updating it by following the 'Upgrading Guix' documentation section.~%"))) + (define* (warn-about-deprecation variable properties #:key replacement) (let ((location (and properties (source-properties->location properties)))) diff --git a/guix/store.scm b/guix/store.scm index a93e9596d9..11dfc095b1 100644 --- a/guix/store.scm +++ b/guix/store.scm @@ -1442,6 +1442,8 @@ When a handler is installed with 'with-build-handler', it is called any time things))) (parameterize ((current-store-protocol-version (store-connection-version store))) + (when (< (current-store-protocol-version) 355) ;0x163 + (warn-about-old-daemon)) (if (>= (store-connection-minor-version store) 15) (build store things mode) (if (= mode (build-mode normal)) -- cgit v1.3 From bc5904e8b85d4d994861ecd55b038ad42305e77d Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 8 Feb 2022 11:54:51 -0500 Subject: gnu: pict: Use release tag and install doc. * gnu/packages/check.scm (pict)[origin]: Use the release tag (newly added upstream). [phases]{install}: Also install the pict.md file. --- gnu/packages/check.scm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 4915a5ec88..06adf20c36 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -99,9 +99,7 @@ (method git-fetch) (uri (git-reference (url "https://github.com/Microsoft/pict") - ;; The tag name for v3.7.2 is odd ("release"); use the - ;; corresponding commit for now. - (commit "b10237099713ef0e45f222042cef01dc3507a611"))) + (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 @@ -115,7 +113,10 @@ (delete 'configure) (replace 'install (lambda _ - (install-file "pict" (string-append #$output "/bin"))))))) + (install-file "pict" (string-append #$output "/bin")) + (install-file "doc/pict.md" + (string-append #$output + "/share/doc/pict-" #$version))))))) (native-inputs (list perl)) (home-page "https://www.pairwise.org/") (synopsis "Pairwise Independent Combinatorial Tool") -- cgit v1.3 From 97b50ba171c4a06a8228f1f1f3b4ca208afcdb93 Mon Sep 17 00:00:00 2001 From: Nikolay Korotkiy via Guix-patches via Date: Tue, 8 Feb 2022 10:03:24 +0300 Subject: gnu: gpxsee: Update to 10.3. * gnu/packages/gps.scm (gpxsee): Update to 10.3. Signed-off-by: Nicolas Goaziou --- gnu/packages/gps.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/gps.scm b/gnu/packages/gps.scm index 1c8f9af5b1..b8e3433a5e 100644 --- a/gnu/packages/gps.scm +++ b/gnu/packages/gps.scm @@ -170,7 +170,7 @@ coordinates as well as partial support for adjustments in global coordinate syst (define-public gpxsee (package (name "gpxsee") - (version "10.0") + (version "10.3") (source (origin (method git-fetch) (uri (git-reference @@ -179,7 +179,7 @@ coordinates as well as partial support for adjustments in global coordinate syst (file-name (git-file-name name version)) (sha256 (base32 - "0kj7130imhppb0bam34a1xr2lxk76fyida31idzvfk3m7z39w02w")))) + "1i1diha617il0s2j9108xlw3vn10m6lc59r8r2fn48wmfzcj79dc")))) (build-system gnu-build-system) (arguments '(#:phases -- cgit v1.3 From 2b677cff7d3cbc28e9f7f5da41ae52d32da3a674 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Tue, 8 Feb 2022 12:19:33 -0500 Subject: gnu: python-pkgconfig: Fix path to find pkg-config. * gnu/packages/python-xyz.scm (python-pkgconfig)[arguments]: Fix the substitution so the package refers to pkg-config. --- gnu/packages/python-xyz.scm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index d7e816415d..537a2eef35 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -15488,9 +15488,8 @@ CloudFront content delivery network.") ;; Hard-code the path to pkg-config. (lambda _ (substitute* "pkgconfig/pkgconfig.py" - (("cmd = 'pkg-config") - (string-append "cmd = '" (which "pkg-config")))) - #t)) + (("'pkg-config'") + (string-append "'" (which "pkg-config") "'"))))) (replace 'check (lambda _ (invoke "nosetests" "test.py")))))) -- cgit v1.3 From f1d20dc649943b2fe3934520c3f5c1f8524eac2b Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Tue, 8 Feb 2022 02:10:51 -0500 Subject: gnu: icecat: Update to 91.6.0-guix0-preview1 [security fixes]. Includes fixes for CVE-2022-22754, CVE-2022-22756, CVE-2022-22759, CVE-2022-22760, CVE-2022-22761, CVE-2022-22763, and CVE-2022-22764. * gnu/packages/gnuzilla.scm (%icecat-version, %icecat-build-id): Update. (icecat-source): Update gnuzilla commit, base version, and hashes. --- gnu/packages/gnuzilla.scm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm index d5d11b59d1..d08dc6bca7 100644 --- a/gnu/packages/gnuzilla.scm +++ b/gnu/packages/gnuzilla.scm @@ -716,8 +716,8 @@ in C/C++.") ;; XXXX: Workaround 'snippet' limitations. (define computed-origin-method (@@ (guix packages) computed-origin-method)) -(define %icecat-version "91.5.0-guix0-preview1") -(define %icecat-build-id "20220111000000") ;must be of the form YYYYMMDDhhmmss +(define %icecat-version "91.6.0-guix0-preview1") +(define %icecat-build-id "20220208000000") ;must be of the form YYYYMMDDhhmmss ;; 'icecat-source' is a "computed" origin that generates an IceCat tarball ;; from the corresponding upstream Firefox ESR tarball, using the 'makeicecat' @@ -739,11 +739,11 @@ in C/C++.") "firefox-" upstream-firefox-version ".source.tar.xz")) (sha256 (base32 - "04y8nj1f065b3dn354f1ns3cm9xp4kljr5ippvmfdqr7cb4xjp7l")))) + "1889p8si83dglyblmyj8z5mh600v1klr50swka5mhf9c2lr2i03y")))) - (upstream-icecat-base-version "91.5.0") ; maybe older than base-version + (upstream-icecat-base-version "91.6.0") ; maybe older than base-version ;;(gnuzilla-commit (string-append "v" upstream-icecat-base-version)) - (gnuzilla-commit "c0a504578cb694522c65bb6c36396df8142d4a2a") + (gnuzilla-commit "6c4accb674d2df8be0aabfa03f7679f66bbf70f5") (gnuzilla-source (origin (method git-fetch) @@ -755,7 +755,7 @@ in C/C++.") (string-take gnuzilla-commit 8))) (sha256 (base32 - "016g8vdr6w6six4f705cmbdrfknmy4bk1qjjrvsdpah4bf6c2s2c")))) + "14yivx4zwap2z02gj9waaccigji8ibyq40dxw5smk9w2cmcsdvic")))) ;; 'search-patch' returns either a valid file name or #f, so wrap it ;; in 'assume-valid-file-name' to avoid 'local-file' warnings. -- cgit v1.3 From 183d3b8170ed3fc34b1c1050bc1e0e1965fab39a Mon Sep 17 00:00:00 2001 From: Jai Vetrivelan Date: Tue, 8 Feb 2022 06:24:07 +0530 Subject: gnu: Add emacs-latex-preview-pane. * gnu/packages/emacs-xyz.scm (emacs-latex-preview-pane): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index ac20a4adba..8fd6490592 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -19088,6 +19088,34 @@ until the top-level form is no longer a macro call.") (description "Execute menu items as commands, with completion.") (license license:gpl3))) +(define-public emacs-latex-preview-pane + (let ((commit "5297668a89996b50b2b62f99cba01cc544dbed2e") + (revision "0")) + (package + (name "emacs-latex-preview-pane") + (version (git-version "20151021" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jsinglet/latex-preview-pane") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1m4f5p53275k8i9p0y105kkrp9nx1bwn6726my9s5dwnjhr5dnp2")))) + (build-system emacs-build-system) + (arguments + (list + ;; The welcome and error message templates are in .txt format. + #:include #~(cons "\\.txt$" %default-include))) + (home-page "https://github.com/jsinglet/latex-preview-pane") + (synopsis "Preview pane to ease LaTeX editing in Emacs") + (description "@code{latex-preview-pane} is a minor mode for previewing +LaTeX files directly in Emacs. It supports PDF previews, with either +@command{pdflatex} or @command{xelatex}, and highlights errors in the LaTeX +buffer.") + (license license:gpl3+)))) + (define-public emacs-isearch-prop (let ((commit "4a2765f835dd115d472142da05215c4c748809f4") (revision "2")) -- cgit v1.3 From dc500a4ccf5108cea5f5264084c48e2d65e715e8 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 8 Feb 2022 21:57:04 +0100 Subject: gnu: emacs-elpher: Update to 3.3.2. * gnu/packages/emacs-xyz.scm (emacs-elpher): Update to 3.3.2. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 8fd6490592..4e9221322d 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -26457,7 +26457,7 @@ it forcibly (define-public emacs-elpher (package (name "emacs-elpher") - (version "3.3.1") + (version "3.3.2") (source (origin (method git-fetch) @@ -26466,7 +26466,7 @@ it forcibly (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "121hkssy6c15gdr76k3fmdpk82354hk597gvkap6dc9y5j5968mk")))) + (base32 "1p43x7mf14q84armxhp294xaclq5c6mpggq619ravia0kdrqij1w")))) (build-system emacs-build-system) (arguments (list -- cgit v1.3 From 0409601bfbba8a8e21b9efeb0e71586cda87a046 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 8 Feb 2022 21:58:51 +0100 Subject: gnu: emacs-parseclj: Update to 1.1.0. * gnu/packages/emacs-xyz.scm (emacs-parseclj): Update to 1.1.0. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 4e9221322d..cd9aead22a 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -28131,7 +28131,7 @@ It uses parseclj's shift-reduce parser internally.") (define-public emacs-parseclj (package (name "emacs-parseclj") - (version "1.0.6") + (version "1.1.0") (source (origin (method git-fetch) @@ -28140,7 +28140,7 @@ It uses parseclj's shift-reduce parser internally.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0n0m3xc2dawgdhb68zznpsbzbbvf9fwgf9v8pzzwa2jncgi1yhh0")))) + (base32 "0ifc9gyp7hr97ssnsqxiwrzmldqysz874crlg6jm4iy5l9fyls22")))) (build-system emacs-build-system) (propagated-inputs (list emacs-a)) (home-page "https://cider.mx") -- cgit v1.3 From 84b41d2dfed2e32de815c5da23fb0b1424cb5f1c Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 8 Feb 2022 21:59:52 +0100 Subject: gnu: emacs-parseedn: Update to 1.1.0. * gnu/packages/emacs-xyz.scm (emacs-parseedn): Update to 1.1.0. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index cd9aead22a..f0a0893dd3 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -28108,7 +28108,7 @@ data, including buffers, window configuration, variables, and more.") (define-public emacs-parseedn (package (name "emacs-parseedn") - (version "1.0.6") + (version "1.1.0") (source (origin (method git-fetch) @@ -28117,7 +28117,7 @@ data, including buffers, window configuration, variables, and more.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1xp2d42yvqkimb7a15bv89bj0124lljw9cb36g49m13d7ny4fafn")))) + (base32 "01j8nrkcm2s0ps277b5zb4pys29lk4cq49rlcqpj19gbfpkwcvdv")))) (build-system emacs-build-system) (propagated-inputs (list emacs-a emacs-parseclj)) -- cgit v1.3 From 96d7535b030c65b2d8cb0bea52c4bd96cbdefaf0 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 8 Feb 2022 21:01:04 -0500 Subject: deprecation: Refine the old daemon deprecation warning message. * guix/deprecation.scm (warn-about-old-daemon): Mention a direct consequence of failing to upgrade the daemon. * guix/store.scm (build-things): Add a comment explaining the rationale to emit a deprecation warning for a daemon older than version 0x163. Suggested-by: Ricardo Wurmus --- guix/deprecation.scm | 5 +++-- guix/store.scm | 6 +++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/guix/deprecation.scm b/guix/deprecation.scm index 666e178d75..09a27789c9 100644 --- a/guix/deprecation.scm +++ b/guix/deprecation.scm @@ -36,8 +36,9 @@ ;;; Code: (define (warn-about-old-daemon) - (warning (G_ "Your Guix daemon is seriously outdated, please consider - updating it by following the 'Upgrading Guix' documentation section.~%"))) + (warning (G_ "Your Guix daemon is severely outdated, and will soon cease to +be able to download binary substitutes. To upgrade it, refer to the +'Upgrading Guix' section in the manual.~%"))) (define* (warn-about-deprecation variable properties #:key replacement) diff --git a/guix/store.scm b/guix/store.scm index 11dfc095b1..1d176fb99d 100644 --- a/guix/store.scm +++ b/guix/store.scm @@ -1442,7 +1442,11 @@ When a handler is installed with 'with-build-handler', it is called any time things))) (parameterize ((current-store-protocol-version (store-connection-version store))) - (when (< (current-store-protocol-version) 355) ;0x163 + (when (< (current-store-protocol-version) #x163) + ;; This corresponds to the first version bump of the daemon + ;; since the introduction of lzip compression support. The + ;; version change happened with commit 6ef61cc4c30 on the + ;; 2018/10/15). (warn-about-old-daemon)) (if (>= (store-connection-minor-version store) 15) (build store things mode) -- cgit v1.3 From 0f97729034491c5eab0b10f778d25a4c7d5a6893 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 8 Feb 2022 21:59:48 -0500 Subject: news: Add entry about the sunsetting of Gzip substitutes. * etc/news.scm (channel-news): New entry. --- etc/news.scm | 42 +++++++++++++++++++++++++++--------------- 1 file changed, 27 insertions(+), 15 deletions(-) diff --git a/etc/news.scm b/etc/news.scm index 7b7c05b60c..69803d03ce 100644 --- a/etc/news.scm +++ b/etc/news.scm @@ -9,7 +9,7 @@ ;; Copyright © 2020 Marius Bakke ;; Copyright © 2020, 2021 Mathieu Othacehe ;; Copyright © 2020 Jan (janneke) Nieuwenhuizen -;; Copyright © 2020, 2021 Maxim Cournoyer +;; Copyright © 2020, 2021, 2022 Maxim Cournoyer ;; Copyright © 2021 Leo Famulari ;; Copyright © 2021 Zhu Zihao ;; Copyright © 2021 Chris Marusich @@ -25,6 +25,18 @@ (channel-news (version 0) + (entry (commit "96d7535b030c65b2d8cb0bea52c4bd96cbdefaf0") + (title + (en "ci.guix.gnu.org to stop offering Gzip substitutes")) + (body + (en "This is a notice to let you know that starting next +month (2022/03/01), Gzip-compressed substitutes will no longer be available, +which means that Guix daemons from a revision older than commit +@samp{3092f1b835d79655eecb2f8a79dda20ad9ba6bd6} (2019/06/02) will loose the +ability to download binary substitutes. Starting next month, only lzip and +zstd substitutes will be offered. Dropping Gzip substitutes will free about +6.5 TiB of storage space from the build farm."))) + (entry (commit "5c13484646069064c834bbd3cd02c3bc80d94cb6") (title (en "New @option{--execute} option to @command{guix deploy}") @@ -256,14 +268,14 @@ d'informations."))) (entry (commit "52cb5cf5b852117b5151a67af187d80764849ad3") (title - (en "Icedove 91: profile folder moved to @file{~/.thunderbird}") - (de "Icedove 91: Profilordner jetzt unter @file{~/.thunderbird}")) + (en "Icedove 91: profile folder moved to @file{~/.thunderbird}") + (de "Icedove 91: Profilordner jetzt unter @file{~/.thunderbird}")) (body - (en "Icedove 91 expects your profile folder under @file{~/.thunderbird}. + (en "Icedove 91 expects your profile folder under @file{~/.thunderbird}. You need to manually copy your Icedove profiles from @file{~/.icedove} to @file{~./thunderbird}. It may be required to start Icedove with @option{--ProfileManager} for the first time after the migration.") - (de "Icedove 91 erwartet Ihren Profilordner unter @file{~/.thunderbird}. + (de "Icedove 91 erwartet Ihren Profilordner unter @file{~/.thunderbird}. Dafür müssen sie Ihre Icedove-Profile von @file{~/.icedove} nach @file{~/.thunderbird} kopieren. Eventuell muss Icedove das erste Mal nach der Migration mit @option{--ProfileManager} gestartet werden."))) @@ -858,7 +870,7 @@ Nous conseillons de mettre à jour @command{guix-daemon}. Lancer @command{info \"(guix.fr) Mettre à niveau Guix\"} pour voir comment faire. Voir @uref{https://issues.guix.gnu.org/47229} pour plus d'informations sur cette faille.") - (nl "In @command{guix-daemon} werd een beveiligingsprobleem + (nl "In @command{guix-daemon} werd een beveiligingsprobleem gevonden dat kan leiden tot de escalatie van lokale bevoegdheden. Het probleem doet zich voor bij installaties met meerdere gebruikers waarop een lokale @command{guix-daemon} draait. @@ -948,7 +960,7 @@ guix import go golang.org/x/sys @end example Lancez @command{info \"(guix.fr) Invoquer guix import\"} pour en savoir plus.") - (nl "Met de nieuwe @command{guix import go}-opdracht kunnen + (nl "Met de nieuwe @command{guix import go}-opdracht kunnen pakketschrijvers een pakketdefinitie of -sjabloon aanmaken, op basis van de naam van een Go-pakket te vinden op @url{https://proxy.golang.org}: @@ -961,28 +973,28 @@ informatie."))) (entry (commit "1b5b882120daf7d111aa351a919a90e818324347") (title - (en "The @code{linux-libre} kernel is updated to 5.11.2") - (de "Der Kernel @code{linux-libre} wird auf 5.11.2 aktualisiert") - (fr "Le noyau @code{linux-libre} est mis à jour vers la 5.11.2") - (nl "De @code{linux-libre}-kernel werd bijgewertk naar 5.11.2")) + (en "The @code{linux-libre} kernel is updated to 5.11.2") + (de "Der Kernel @code{linux-libre} wird auf 5.11.2 aktualisiert") + (fr "Le noyau @code{linux-libre} est mis à jour vers la 5.11.2") + (nl "De @code{linux-libre}-kernel werd bijgewertk naar 5.11.2")) (body - (en "The default @code{linux-libre} kernel is now based on the 5.11 + (en "The default @code{linux-libre} kernel is now based on the 5.11 stable kernel series, beginning with version 5.11.2. Promiment features include improved Wine performance, unprivileged Overlayfs mounts, support for Intel SGX, support for new graphics hardware, and improved performance of the Btrfs file system.") - (de "Der standardmäßig verwendete @code{linux-libre}-Kernel basiert + (de "Der standardmäßig verwendete @code{linux-libre}-Kernel basiert jetzt auf der 5.11-„stable“-Versionsreihe, angefangen mit Version 5.11.2. Zu den markanten Neuerungen gehören bessere Wine-Unterstützung, Einbinden per Overlayfs für Nutzer ohne erweiterte Rechte, Unterstützung für Intel SGX, für neue Grafikhardware und bessere Leistung beim Btrfs-Dateisystem.") - (fr "Le noyau @code{linux-libre} par défaut est maintenant basé sur la + (fr "Le noyau @code{linux-libre} par défaut est maintenant basé sur la lignée stable 5.11 du noyau, à commencer par la version 5.11.2. Parmi les fonctionnalités notables on trouve des performances améliorées pour Wine, le montage Overlayfs non privilégié, la prise en charge d'Intel SGX, celle des nouveaux périphériques graphiques et de meilleures performances du système de fichiers Btrfs.") - (nl "De standaard @code{linux-libre}-kernel is nu geëent op de + (nl "De standaard @code{linux-libre}-kernel is nu geëent op de stabiele 5.11-reeks, te beginnen met versie 5.11.2. Deze update biedt onder andere verbeterde prestaties voor Wine en het Btfrs-bestandssysteem, laat gewone gebruikers toe om met Overlayfs bestandssystemen te combineren, en -- cgit v1.3 From fd6cfbc05ac093a6b9497e6c38bb4678f33ac14d Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Thu, 3 Feb 2022 11:57:49 -0500 Subject: Revert kernel modules changes to support the Coreboot framebuffer These changes broke the creation of the 'linux-modules-database' for all kernel series besides 5.15, 5.4, and 5.10, like this: ------ gnu/build/linux-modules.scm:257:5: kernel module not found "framebuffer_coreboot" "/gnu/store/yff45fr6q93mw44zdql9ffr95zcvwxcn-linux-libre-4.9.299/lib/modules" ------ We should support the coreboot framebuffer, but we need to test that change more completely before deploying it. This effectively reverts the following commits: 1dfe8c372163d481ebebb97dd3b4cafa49906b28 "gnu: linux-libre: Build simplefb into all x86{,_64} kernels." bc09e7ab569d5306ce99c5525150695c9d539ef0 "gnu: linux-libre: Support the Coreboot framebuffer." Fixes "System reconfiguration fails to build linux-modules.drv". --- gnu/packages/aux-files/linux-libre/4.14-i686.conf | 10 ++-------- gnu/packages/aux-files/linux-libre/4.14-x86_64.conf | 10 ++-------- gnu/packages/aux-files/linux-libre/4.19-i686.conf | 10 ++-------- gnu/packages/aux-files/linux-libre/4.19-x86_64.conf | 10 ++-------- gnu/packages/aux-files/linux-libre/4.4-i686.conf | 10 ++-------- gnu/packages/aux-files/linux-libre/4.4-x86_64.conf | 10 ++-------- gnu/packages/aux-files/linux-libre/5.10-i686.conf | 10 ++-------- gnu/packages/aux-files/linux-libre/5.10-x86_64.conf | 10 ++-------- gnu/packages/aux-files/linux-libre/5.15-i686.conf | 12 +++--------- gnu/packages/aux-files/linux-libre/5.15-x86_64.conf | 12 +++--------- gnu/packages/aux-files/linux-libre/5.4-i686.conf | 10 ++-------- gnu/packages/aux-files/linux-libre/5.4-x86_64.conf | 10 ++-------- gnu/system/linux-initrd.scm | 3 +-- 13 files changed, 27 insertions(+), 100 deletions(-) diff --git a/gnu/packages/aux-files/linux-libre/4.14-i686.conf b/gnu/packages/aux-files/linux-libre/4.14-i686.conf index b7a07b5fe3..16a7817115 100644 --- a/gnu/packages/aux-files/linux-libre/4.14-i686.conf +++ b/gnu/packages/aux-files/linux-libre/4.14-i686.conf @@ -938,7 +938,7 @@ CONFIG_RAPIDIO_CPS_XX=m CONFIG_RAPIDIO_TSI568=m CONFIG_RAPIDIO_CPS_GEN2=m CONFIG_RAPIDIO_RXS_GEN3=m -CONFIG_X86_SYSFB=y +# CONFIG_X86_SYSFB is not set # # Executable file formats / Emulations @@ -8495,13 +8495,7 @@ CONFIG_ISCSI_IBFT_FIND=y CONFIG_ISCSI_IBFT=m CONFIG_FW_CFG_SYSFS=m # CONFIG_FW_CFG_SYSFS_CMDLINE is not set -CONFIG_GOOGLE_FIRMWARE=y -# CONFIG_GOOGLE_SMI is not set -CONFIG_GOOGLE_COREBOOT_TABLE=y -# CONFIG_GOOGLE_MEMCONSOLE_X86_LEGACY is not set -CONFIG_GOOGLE_FRAMEBUFFER_COREBOOT=m -# CONFIG_GOOGLE_MEMCONSOLE_COREBOOT is not set -# CONFIG_GOOGLE_VPD is not set +# CONFIG_GOOGLE_FIRMWARE is not set # # EFI (Extensible Firmware Interface) Support diff --git a/gnu/packages/aux-files/linux-libre/4.14-x86_64.conf b/gnu/packages/aux-files/linux-libre/4.14-x86_64.conf index 291f6aa381..3953ee9104 100644 --- a/gnu/packages/aux-files/linux-libre/4.14-x86_64.conf +++ b/gnu/packages/aux-files/linux-libre/4.14-x86_64.conf @@ -928,7 +928,7 @@ CONFIG_RAPIDIO_CPS_XX=m CONFIG_RAPIDIO_TSI568=m CONFIG_RAPIDIO_CPS_GEN2=m CONFIG_RAPIDIO_RXS_GEN3=m -CONFIG_X86_SYSFB=y +# CONFIG_X86_SYSFB is not set # # Executable file formats / Emulations @@ -8334,13 +8334,7 @@ CONFIG_ISCSI_IBFT_FIND=y CONFIG_ISCSI_IBFT=m CONFIG_FW_CFG_SYSFS=m # CONFIG_FW_CFG_SYSFS_CMDLINE is not set -CONFIG_GOOGLE_FIRMWARE=y -# CONFIG_GOOGLE_SMI is not set -CONFIG_GOOGLE_COREBOOT_TABLE=y -# CONFIG_GOOGLE_MEMCONSOLE_X86_LEGACY is not set -CONFIG_GOOGLE_FRAMEBUFFER_COREBOOT=m -# CONFIG_GOOGLE_MEMCONSOLE_COREBOOT is not set -# CONFIG_GOOGLE_VPD is not set +# CONFIG_GOOGLE_FIRMWARE is not set # # EFI (Extensible Firmware Interface) Support diff --git a/gnu/packages/aux-files/linux-libre/4.19-i686.conf b/gnu/packages/aux-files/linux-libre/4.19-i686.conf index 5deee8206d..0e6637325d 100644 --- a/gnu/packages/aux-files/linux-libre/4.19-i686.conf +++ b/gnu/packages/aux-files/linux-libre/4.19-i686.conf @@ -713,7 +713,7 @@ CONFIG_RAPIDIO_CPS_XX=m CONFIG_RAPIDIO_TSI568=m CONFIG_RAPIDIO_CPS_GEN2=m CONFIG_RAPIDIO_RXS_GEN3=m -CONFIG_X86_SYSFB=y +# CONFIG_X86_SYSFB is not set # # Binary Emulations @@ -737,13 +737,7 @@ CONFIG_ISCSI_IBFT_FIND=y CONFIG_ISCSI_IBFT=m CONFIG_FW_CFG_SYSFS=m # CONFIG_FW_CFG_SYSFS_CMDLINE is not set -CONFIG_GOOGLE_FIRMWARE=y -# CONFIG_GOOGLE_SMI is not set -CONFIG_GOOGLE_COREBOOT_TABLE=y -# CONFIG_GOOGLE_MEMCONSOLE_X86_LEGACY is not set -CONFIG_GOOGLE_FRAMEBUFFER_COREBOOT=m -# CONFIG_GOOGLE_MEMCONSOLE_COREBOOT is not set -# CONFIG_GOOGLE_VPD is not set +# CONFIG_GOOGLE_FIRMWARE is not set # # EFI (Extensible Firmware Interface) Support diff --git a/gnu/packages/aux-files/linux-libre/4.19-x86_64.conf b/gnu/packages/aux-files/linux-libre/4.19-x86_64.conf index 0fb0cf9a7f..24148dcf6f 100644 --- a/gnu/packages/aux-files/linux-libre/4.19-x86_64.conf +++ b/gnu/packages/aux-files/linux-libre/4.19-x86_64.conf @@ -684,7 +684,7 @@ CONFIG_RAPIDIO_CPS_XX=m CONFIG_RAPIDIO_TSI568=m CONFIG_RAPIDIO_CPS_GEN2=m CONFIG_RAPIDIO_RXS_GEN3=m -CONFIG_X86_SYSFB=y +# CONFIG_X86_SYSFB is not set # # Binary Emulations @@ -714,13 +714,7 @@ CONFIG_ISCSI_IBFT_FIND=y CONFIG_ISCSI_IBFT=m CONFIG_FW_CFG_SYSFS=m # CONFIG_FW_CFG_SYSFS_CMDLINE is not set -CONFIG_GOOGLE_FIRMWARE=y -# CONFIG_GOOGLE_SMI is not set -CONFIG_GOOGLE_COREBOOT_TABLE=y -# CONFIG_GOOGLE_MEMCONSOLE_X86_LEGACY is not set -CONFIG_GOOGLE_FRAMEBUFFER_COREBOOT=m -# CONFIG_GOOGLE_MEMCONSOLE_COREBOOT is not set -# CONFIG_GOOGLE_VPD is not set +# CONFIG_GOOGLE_FIRMWARE is not set # # EFI (Extensible Firmware Interface) Support diff --git a/gnu/packages/aux-files/linux-libre/4.4-i686.conf b/gnu/packages/aux-files/linux-libre/4.4-i686.conf index 03aef7abfc..32442eb55a 100644 --- a/gnu/packages/aux-files/linux-libre/4.4-i686.conf +++ b/gnu/packages/aux-files/linux-libre/4.4-i686.conf @@ -825,7 +825,7 @@ CONFIG_RAPIDIO_TSI57X=m CONFIG_RAPIDIO_CPS_XX=m CONFIG_RAPIDIO_TSI568=m CONFIG_RAPIDIO_CPS_GEN2=m -CONFIG_X86_SYSFB=y +# CONFIG_X86_SYSFB is not set # # Executable file formats / Emulations @@ -7679,13 +7679,7 @@ CONFIG_DMI_SYSFS=m CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y CONFIG_ISCSI_IBFT_FIND=y CONFIG_ISCSI_IBFT=m -CONFIG_GOOGLE_FIRMWARE=y -# CONFIG_GOOGLE_SMI is not set -CONFIG_GOOGLE_COREBOOT_TABLE=y -# CONFIG_GOOGLE_MEMCONSOLE_X86_LEGACY is not set -CONFIG_GOOGLE_FRAMEBUFFER_COREBOOT=m -# CONFIG_GOOGLE_MEMCONSOLE_COREBOOT is not set -# CONFIG_GOOGLE_VPD is not set +# CONFIG_GOOGLE_FIRMWARE is not set # # EFI (Extensible Firmware Interface) Support diff --git a/gnu/packages/aux-files/linux-libre/4.4-x86_64.conf b/gnu/packages/aux-files/linux-libre/4.4-x86_64.conf index 89dc907eca..2bcad360a5 100644 --- a/gnu/packages/aux-files/linux-libre/4.4-x86_64.conf +++ b/gnu/packages/aux-files/linux-libre/4.4-x86_64.conf @@ -795,7 +795,7 @@ CONFIG_RAPIDIO_TSI57X=m CONFIG_RAPIDIO_CPS_XX=m CONFIG_RAPIDIO_TSI568=m CONFIG_RAPIDIO_CPS_GEN2=m -CONFIG_X86_SYSFB=y +# CONFIG_X86_SYSFB is not set # # Executable file formats / Emulations @@ -7463,13 +7463,7 @@ CONFIG_DMI_SYSFS=m CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y CONFIG_ISCSI_IBFT_FIND=y CONFIG_ISCSI_IBFT=m -CONFIG_GOOGLE_FIRMWARE=y -# CONFIG_GOOGLE_SMI is not set -CONFIG_GOOGLE_COREBOOT_TABLE=y -# CONFIG_GOOGLE_MEMCONSOLE_X86_LEGACY is not set -CONFIG_GOOGLE_FRAMEBUFFER_COREBOOT=m -# CONFIG_GOOGLE_MEMCONSOLE_COREBOOT is not set -# CONFIG_GOOGLE_VPD is not set +# CONFIG_GOOGLE_FIRMWARE is not set # # EFI (Extensible Firmware Interface) Support diff --git a/gnu/packages/aux-files/linux-libre/5.10-i686.conf b/gnu/packages/aux-files/linux-libre/5.10-i686.conf index 7111ab0eb0..db52c07f5c 100644 --- a/gnu/packages/aux-files/linux-libre/5.10-i686.conf +++ b/gnu/packages/aux-files/linux-libre/5.10-i686.conf @@ -650,7 +650,7 @@ CONFIG_ALIX=y CONFIG_NET5501=y CONFIG_GEOS=y CONFIG_AMD_NB=y -CONFIG_X86_SYSFB=y +# CONFIG_X86_SYSFB is not set # end of Bus options (PCI etc.) # @@ -674,13 +674,7 @@ CONFIG_ISCSI_IBFT_FIND=y CONFIG_ISCSI_IBFT=m CONFIG_FW_CFG_SYSFS=m # CONFIG_FW_CFG_SYSFS_CMDLINE is not set -CONFIG_GOOGLE_FIRMWARE=y -# CONFIG_GOOGLE_SMI is not set -CONFIG_GOOGLE_COREBOOT_TABLE=y -# CONFIG_GOOGLE_MEMCONSOLE_X86_LEGACY is not set -CONFIG_GOOGLE_FRAMEBUFFER_COREBOOT=m -# CONFIG_GOOGLE_MEMCONSOLE_COREBOOT is not set -# CONFIG_GOOGLE_VPD is not set +# CONFIG_GOOGLE_FIRMWARE is not set # # EFI (Extensible Firmware Interface) Support diff --git a/gnu/packages/aux-files/linux-libre/5.10-x86_64.conf b/gnu/packages/aux-files/linux-libre/5.10-x86_64.conf index 3a8dbcd3ee..8e970b6422 100644 --- a/gnu/packages/aux-files/linux-libre/5.10-x86_64.conf +++ b/gnu/packages/aux-files/linux-libre/5.10-x86_64.conf @@ -643,7 +643,7 @@ CONFIG_MMCONF_FAM10H=y # CONFIG_ISA_BUS is not set CONFIG_ISA_DMA_API=y CONFIG_AMD_NB=y -CONFIG_X86_SYSFB=y +# CONFIG_X86_SYSFB is not set # end of Bus options (PCI etc.) # @@ -670,13 +670,7 @@ CONFIG_ISCSI_IBFT_FIND=y CONFIG_ISCSI_IBFT=m CONFIG_FW_CFG_SYSFS=m # CONFIG_FW_CFG_SYSFS_CMDLINE is not set -CONFIG_GOOGLE_FIRMWARE=y -# CONFIG_GOOGLE_SMI is not set -CONFIG_GOOGLE_COREBOOT_TABLE=y -# CONFIG_GOOGLE_MEMCONSOLE_X86_LEGACY is not set -CONFIG_GOOGLE_FRAMEBUFFER_COREBOOT=m -# CONFIG_GOOGLE_MEMCONSOLE_COREBOOT is not set -# CONFIG_GOOGLE_VPD is not set +# CONFIG_GOOGLE_FIRMWARE is not set # # EFI (Extensible Firmware Interface) Support diff --git a/gnu/packages/aux-files/linux-libre/5.15-i686.conf b/gnu/packages/aux-files/linux-libre/5.15-i686.conf index b03a50a391..cec3941971 100644 --- a/gnu/packages/aux-files/linux-libre/5.15-i686.conf +++ b/gnu/packages/aux-files/linux-libre/5.15-i686.conf @@ -2249,14 +2249,8 @@ CONFIG_ISCSI_IBFT=m CONFIG_FW_CFG_SYSFS=m # CONFIG_FW_CFG_SYSFS_CMDLINE is not set CONFIG_SYSFB=y -CONFIG_SYSFB_SIMPLEFB=y -CONFIG_GOOGLE_FIRMWARE=y -# CONFIG_GOOGLE_SMI is not set -CONFIG_GOOGLE_COREBOOT_TABLE=m -# CONFIG_GOOGLE_MEMCONSOLE_X86_LEGACY is not set -CONFIG_GOOGLE_FRAMEBUFFER_COREBOOT=m -# CONFIG_GOOGLE_MEMCONSOLE_COREBOOT is not set -# CONFIG_GOOGLE_VPD is not set +# CONFIG_SYSFB_SIMPLEFB is not set +# CONFIG_GOOGLE_FIRMWARE is not set # # EFI (Extensible Firmware Interface) Support @@ -6731,7 +6725,7 @@ CONFIG_FB_MB862XX=m CONFIG_FB_MB862XX_PCI_GDC=y CONFIG_FB_MB862XX_I2C=y CONFIG_FB_HYPERV=m -CONFIG_FB_SIMPLE=y +CONFIG_FB_SIMPLE=m CONFIG_FB_SSD1307=m CONFIG_FB_SM712=m # end of Frame buffer Devices diff --git a/gnu/packages/aux-files/linux-libre/5.15-x86_64.conf b/gnu/packages/aux-files/linux-libre/5.15-x86_64.conf index 0faf28e4c7..70020ba970 100644 --- a/gnu/packages/aux-files/linux-libre/5.15-x86_64.conf +++ b/gnu/packages/aux-files/linux-libre/5.15-x86_64.conf @@ -2282,14 +2282,8 @@ CONFIG_ISCSI_IBFT=m CONFIG_FW_CFG_SYSFS=m # CONFIG_FW_CFG_SYSFS_CMDLINE is not set CONFIG_SYSFB=y -CONFIG_SYSFB_SIMPLEFB=y -CONFIG_GOOGLE_FIRMWARE=y -# CONFIG_GOOGLE_SMI is not set -CONFIG_GOOGLE_COREBOOT_TABLE=m -# CONFIG_GOOGLE_MEMCONSOLE_X86_LEGACY is not set -CONFIG_GOOGLE_FRAMEBUFFER_COREBOOT=m -# CONFIG_GOOGLE_MEMCONSOLE_COREBOOT is not set -# CONFIG_GOOGLE_VPD is not set +# CONFIG_SYSFB_SIMPLEFB is not set +# CONFIG_GOOGLE_FIRMWARE is not set # # EFI (Extensible Firmware Interface) Support @@ -6688,7 +6682,7 @@ CONFIG_FB_MB862XX=m CONFIG_FB_MB862XX_PCI_GDC=y CONFIG_FB_MB862XX_I2C=y CONFIG_FB_HYPERV=m -CONFIG_FB_SIMPLE=y +CONFIG_FB_SIMPLE=m CONFIG_FB_SSD1307=m CONFIG_FB_SM712=m # end of Frame buffer Devices diff --git a/gnu/packages/aux-files/linux-libre/5.4-i686.conf b/gnu/packages/aux-files/linux-libre/5.4-i686.conf index 4c4f258dcd..4e2d7795c7 100644 --- a/gnu/packages/aux-files/linux-libre/5.4-i686.conf +++ b/gnu/packages/aux-files/linux-libre/5.4-i686.conf @@ -648,7 +648,7 @@ CONFIG_ALIX=y CONFIG_NET5501=y CONFIG_GEOS=y CONFIG_AMD_NB=y -CONFIG_X86_SYSFB=y +# CONFIG_X86_SYSFB is not set # end of Bus options (PCI etc.) # @@ -672,13 +672,7 @@ CONFIG_ISCSI_IBFT_FIND=y CONFIG_ISCSI_IBFT=m CONFIG_FW_CFG_SYSFS=m # CONFIG_FW_CFG_SYSFS_CMDLINE is not set -CONFIG_GOOGLE_FIRMWARE=y -# CONFIG_GOOGLE_SMI is not set -CONFIG_GOOGLE_COREBOOT_TABLE=y -# CONFIG_GOOGLE_MEMCONSOLE_X86_LEGACY is not set -CONFIG_GOOGLE_FRAMEBUFFER_COREBOOT=m -# CONFIG_GOOGLE_MEMCONSOLE_COREBOOT is not set -# CONFIG_GOOGLE_VPD is not set +# CONFIG_GOOGLE_FIRMWARE is not set # # EFI (Extensible Firmware Interface) Support diff --git a/gnu/packages/aux-files/linux-libre/5.4-x86_64.conf b/gnu/packages/aux-files/linux-libre/5.4-x86_64.conf index d93d6065b8..e2509b773b 100644 --- a/gnu/packages/aux-files/linux-libre/5.4-x86_64.conf +++ b/gnu/packages/aux-files/linux-libre/5.4-x86_64.conf @@ -632,7 +632,7 @@ CONFIG_MMCONF_FAM10H=y # CONFIG_ISA_BUS is not set CONFIG_ISA_DMA_API=y CONFIG_AMD_NB=y -CONFIG_X86_SYSFB=y +# CONFIG_X86_SYSFB is not set # end of Bus options (PCI etc.) # @@ -659,13 +659,7 @@ CONFIG_ISCSI_IBFT_FIND=y CONFIG_ISCSI_IBFT=m CONFIG_FW_CFG_SYSFS=m # CONFIG_FW_CFG_SYSFS_CMDLINE is not set -CONFIG_GOOGLE_FIRMWARE=y -# CONFIG_GOOGLE_SMI is not set -CONFIG_GOOGLE_COREBOOT_TABLE=y -# CONFIG_GOOGLE_MEMCONSOLE_X86_LEGACY is not set -CONFIG_GOOGLE_FRAMEBUFFER_COREBOOT=m -# CONFIG_GOOGLE_MEMCONSOLE_COREBOOT is not set -# CONFIG_GOOGLE_VPD is not set +# CONFIG_GOOGLE_FIRMWARE is not set # # EFI (Extensible Firmware Interface) Support diff --git a/gnu/system/linux-initrd.scm b/gnu/system/linux-initrd.scm index c78dd09205..329cd38cd6 100644 --- a/gnu/system/linux-initrd.scm +++ b/gnu/system/linux-initrd.scm @@ -352,8 +352,7 @@ FILE-SYSTEMS." "dm-crypt" "xts" "serpent_generic" "wp512" ;for encrypted root partitions "nls_iso8859-1" ;for `mkfs.fat`, et.al ,@(if (string-match "^(x86_64|i[3-6]86)-" system) - '("framebuffer_coreboot" ;for display during early (Core)boot - "pata_acpi" "pata_atiixp" ;for ATA controllers + '("pata_acpi" "pata_atiixp" ;for ATA controllers "isci") ;for SAS controllers like Intel C602 '()) -- cgit v1.3 From 1cd22ffd6bdece6a31bd1648a3edee17922d1481 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Sat, 5 Feb 2022 14:02:41 -0500 Subject: gnu: linux-libre 5.16: Update to 5.16.7. * gnu/packages/linux.scm (linux-libre-5.16-version): Update to 5.16.7. (linux-libre-5.16-pristine-source): Update hash. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 254a97e915..eff6b073f6 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -357,7 +357,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." ;; The current "stable" kernels. That is, the most recently released major ;; versions that are still supported upstream. -(define-public linux-libre-5.16-version "5.16.5") +(define-public linux-libre-5.16-version "5.16.7") (define-public linux-libre-5.16-gnu-revision "gnu") (define deblob-scripts-5.16 (linux-libre-deblob-scripts @@ -367,7 +367,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (base32 "14vb7g784rm1s2a2dzs6pnz3998iwdjwx8665myddr7gd197rkaq"))) (define-public linux-libre-5.16-pristine-source (let ((version linux-libre-5.16-version) - (hash (base32 "1ay7y7c2bdgvqd7hw8l9jxzx9m2rd5drdakjqnblz4w9sbcyvbpc"))) + (hash (base32 "1kd6v31z9rylnpyrv6b3i622ismxbiv165dcjh2fn5aliqzgalap"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-5.16))) -- cgit v1.3 From 8ba98c863a15eb59cc0af1068fb7883c0b9490de Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Sat, 5 Feb 2022 14:02:55 -0500 Subject: gnu: linux-libre 5.15: Update to 5.15.21. * gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.21. (linux-libre-5.15-pristine-source): Update hash. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index eff6b073f6..be93e56883 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -375,7 +375,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." ;; The "longterm" kernels — the older releases with long-term upstream support. ;; Here are the support timelines: ;; -(define-public linux-libre-5.15-version "5.15.19") +(define-public linux-libre-5.15-version "5.15.21") (define-public linux-libre-5.15-gnu-revision "gnu") (define deblob-scripts-5.15 (linux-libre-deblob-scripts @@ -385,7 +385,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (base32 "0mxm0wy3fyg7fn2n8k9b4zh62l4q00b4y9zf46im691zscwgikc2"))) (define-public linux-libre-5.15-pristine-source (let ((version linux-libre-5.15-version) - (hash (base32 "0l70ckc0imnn7x9p9dawprzblszadk79468wx3zqz951yb4k5gh1"))) + (hash (base32 "1lgvf3mrsbwjdjfvznbf5c3np76a7xxqr2rw7i6196ywsxnfnki9"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-5.15))) -- cgit v1.3 From e05e04dfa64ff9d469a3d9b92ac802004915a133 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Sat, 5 Feb 2022 14:03:07 -0500 Subject: gnu: linux-libre 5.10: Update to 5.10.98. * gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.98. (linux-libre-5.10-pristine-source): Update hash. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index be93e56883..63988bf340 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -390,7 +390,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (%upstream-linux-source version hash) deblob-scripts-5.15))) -(define-public linux-libre-5.10-version "5.10.96") +(define-public linux-libre-5.10-version "5.10.98") (define-public linux-libre-5.10-gnu-revision "gnu1") (define deblob-scripts-5.10 (linux-libre-deblob-scripts @@ -400,7 +400,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (base32 "090y0z4a7b643w0v6c6mbgvl04mrlrhanil38mafl6dlnhad9zbl"))) (define-public linux-libre-5.10-pristine-source (let ((version linux-libre-5.10-version) - (hash (base32 "0j70nbsxy6qpynr3f9igl9wf14wx40diazf4j7w7mlwxh51a1r9m"))) + (hash (base32 "0hwl1ypllx9l5pv04yavz627qb31ki9mhznsak5bq48hbz0wc90v"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-5.10))) -- cgit v1.3 From c76d9a68aee8bb5ccea47c2e28abedb649299c2c Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Sat, 5 Feb 2022 14:03:20 -0500 Subject: gnu: linux-libre 5.4: Update to 5.4.177. * gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.177. (linux-libre-5.4-pristine-source): Update hash. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 63988bf340..c745d8217b 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -405,7 +405,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (%upstream-linux-source version hash) deblob-scripts-5.10))) -(define-public linux-libre-5.4-version "5.4.176") +(define-public linux-libre-5.4-version "5.4.177") (define-public linux-libre-5.4-gnu-revision "gnu1") (define deblob-scripts-5.4 (linux-libre-deblob-scripts @@ -415,7 +415,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (base32 "1mp9d0b7mqw7cl65k0a18265cvn4qwcpnvna8r6n5m3y4pz3rik9"))) (define-public linux-libre-5.4-pristine-source (let ((version linux-libre-5.4-version) - (hash (base32 "0h67d34n8cwq60rv8nw0a7n9mkihs0cg0b5zl6ihfyjflqj0jq6r"))) + (hash (base32 "0wvb5is8rqvfxia1i8lw4yd3fm2bhb6wdl0bdjq90dx7y46wpxqq"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-5.4))) -- cgit v1.3 From bc54947410689cc752ca962b0b4d27fa799265bf Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Sat, 5 Feb 2022 14:05:14 -0500 Subject: gnu: Remove linux-libre-4.4. This kernel series has reached the end of its life: https://lore.kernel.org/all/164387713713082@kroah.com/T/#t https://lwn.net/Articles/883685/ Discussion within Guix: https://lists.gnu.org/archive/html/guix-devel/2022-01/msg00020.html https://lists.gnu.org/archive/html/guix-devel/2022-02/msg00007.html * gnu/packages/linux.scm (linux-libre-4.4-version, linux-libre-4.4-gnu-revision, deblob-scripts-4.4, linux-libre-4.4-pristine-source, linux-libre-4.4-source, linux-libre-headers-4.4, linux-libre-4.4): Remove variables. --- gnu/packages/linux.scm | 37 ------------------------------------- 1 file changed, 37 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index c745d8217b..08ef82efaf 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -465,21 +465,6 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (%upstream-linux-source version hash) deblob-scripts-4.9))) -(define-public linux-libre-4.4-version "4.4.302") -(define-public linux-libre-4.4-gnu-revision "gnu1") -(define deblob-scripts-4.4 - (linux-libre-deblob-scripts - linux-libre-4.4-version - linux-libre-4.4-gnu-revision - (base32 "1mmnv77432la5dkhpy1n8w59c0v6l08fyf2ggh294gyrx8nbci11") - (base32 "0wdaj40pcq9wg5xnz2zj3jj8bawhfgqxcwp6dnavbf9lq0gca48p"))) -(define-public linux-libre-4.4-pristine-source - (let ((version linux-libre-4.4-version) - (hash (base32 "1cvnydc7y5xrb1c4yfmsl846dd1jfrr7xf62gxbhnkk01fs7n09m"))) - (make-linux-libre-source version - (%upstream-linux-source version hash) - deblob-scripts-4.4))) - (define %boot-logo-patch ;; Linux-Libre boot logo featuring Freedo and a gnu. (origin @@ -545,10 +530,6 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (source-with-patches linux-libre-4.9-pristine-source (list %boot-logo-patch))) -(define-public linux-libre-4.4-source - (source-with-patches linux-libre-4.4-pristine-source - (list %boot-logo-patch))) - ;;; ;;; Kernel headers. @@ -660,11 +641,6 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." linux-libre-4.9-gnu-revision linux-libre-4.9-source)) -(define-public linux-libre-headers-4.4 - (make-linux-libre-headers* linux-libre-4.4-version - linux-libre-4.4-gnu-revision - linux-libre-4.4-source)) - ;; The following package is used in the early bootstrap, and thus must be kept ;; stable and with minimal build requirements. (define-public linux-libre-headers-5.10.35 @@ -1000,19 +976,6 @@ It has been modified to remove all non-free binary blobs.") '("x86_64-linux" "i686-linux") #:configuration-file kernel-config)) -(define-public linux-libre-4.4 - (make-linux-libre* linux-libre-4.4-version - linux-libre-4.4-gnu-revision - linux-libre-4.4-source - '("x86_64-linux" "i686-linux") - #:configuration-file kernel-config - #:extra-options - (append - `(;; https://lists.gnu.org/archive/html/guix-devel/2014-04/msg00039.html - ;; This option was removed upstream in version 4.7. - ("CONFIG_DEVPTS_MULTIPLE_INSTANCES" . #t)) - %default-extra-linux-options))) - ;; Linux-Libre-LTS points to the *newest* released long-term support version of ;; Linux-Libre. ;; Reference: https://jxself.org/linux-libre/ -- cgit v1.3 From e193a74337e78d5ea23f9ccec0e553ae1c3ce3e5 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 8 Feb 2022 23:40:31 +0100 Subject: gnu: Add r-gghighlight. * gnu/packages/cran.scm (r-gghighlight): New variable. --- gnu/packages/cran.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index dc83823b6c..84abc75ecd 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -22881,6 +22881,30 @@ finding peaks in spectra, converting humidity measures.") from PLINK results.") (license license:gpl3))) +(define-public r-gghighlight + (package + (name "r-gghighlight") + (version "0.3.2") + (source + (origin + (method url-fetch) + (uri (cran-uri "gghighlight" version)) + (sha256 + (base32 "0bxgn4srxz1qhawqa8ck57p8hg5ikwfa9ll03zmnn8fb19akwm2v")))) + (properties `((upstream-name . "gghighlight"))) + (build-system r-build-system) + (propagated-inputs + (list r-dplyr r-ggplot2 r-ggrepel r-lifecycle r-purrr r-rlang r-tibble)) + (native-inputs (list r-knitr)) + (home-page "https://github.com/yutannihilation/gghighlight/") + (synopsis "Highlight lines and points in ggplot2") + (description "Suppose we have data that has so many series that it is hard +to identify them by their colors as the differences are so subtle. With +gghighlight we can highlight those lines that match certain criteria. The +result is a usual @code{ggplot} object, so it is fully customizable and can be +used with custom themes and facets.") + (license license:expat))) + (define-public r-ggplot-multistats (package (name "r-ggplot-multistats") -- cgit v1.3 From c12a73ca269f4513ada6bac60b2c486165c064f7 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 8 Feb 2022 23:54:35 +0100 Subject: gnu: Add r-usedist. * gnu/packages/cran.scm (r-usedist): New variable. --- gnu/packages/cran.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 84abc75ecd..af4d3c8f76 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -5037,6 +5037,25 @@ algorithm. The interface of @code{ucminf} is designed for easy interchange with the package @code{optim}.") (license license:gpl2+))) +(define-public r-usedist + (package + (name "r-usedist") + (version "0.4.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "usedist" version)) + (sha256 + (base32 "0ddf1zcalbrn293qmr9kdzz3x16fzc4k1bwb1pjmwnspisqfi8kj")))) + (properties `((upstream-name . "usedist"))) + (build-system r-build-system) + (home-page "https://cran.r-project.org/package=usedist") + (synopsis "Distance matrix utilities") + (description + "This package provides functions to re-arrange, extract, and work with +distances.") + (license license:gpl3))) + (define-public r-useful (package (name "r-useful") -- cgit v1.3 From 98a4da8a13d792188c144f7e31538caa00f90cc3 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 8 Feb 2022 23:54:59 +0100 Subject: gnu: Add r-nnlm. * gnu/packages/statistics.scm (r-nnlm): New variable. --- gnu/packages/statistics.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 4553343ee9..a07540417f 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -6075,6 +6075,37 @@ table made by the command @code{show256Colors()}. You can also set the colors to any arbitrary string. In this case, it is up to you to set valid values.") (license license:gpl3+))) +(define-public r-nnlm + (let ((commit "4574bca9456fe2285b668b4c22a908cffbad10a0") + (revision "1")) + (package + (name "r-nnlm") + (version (git-version "0.4.4" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/linxihui/NNLM") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qzvav4ch0j1k7jcqzk9cvl8dx79fapmvdzmzzyl8smscybhfgba")))) + (properties `((upstream-name . "NNLM"))) + (build-system r-build-system) + (propagated-inputs (list r-rcpp r-rcpparmadillo r-rcppprogress)) + (native-inputs (list r-knitr)) + (home-page "https://github.com/linxihui/NNLM") + (synopsis "Fast and versatile non-negative matrix factorization") + (description + "This is a package for @dfn{Non-Negative Linear Models} (NNLM). It +implements fast sequential coordinate descent algorithms for non-negative +linear regression and @dfn{non-negative matrix factorization} (NMF). It +supports mean square error and Kullback-Leibler divergence loss. Many other +features are also implemented, including missing value imputation, domain +knowledge integration, designable W and H matrices and multiple forms of +regularizations.") + (license license:bsd-2)))) + (define-public python-rpy2 (package (name "python-rpy2") -- cgit v1.3 From 61d1d4a3c5420acef48376871021709b00fc9d2f Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 8 Feb 2022 23:55:38 +0100 Subject: gnu: Add r-swne. * gnu/packages/statistics.scm (r-swne): New variable. --- gnu/packages/statistics.scm | 54 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index a07540417f..648462be03 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -6106,6 +6106,60 @@ knowledge integration, designable W and H matrices and multiple forms of regularizations.") (license license:bsd-2)))) +(define-public r-swne + (let ((commit "05fc3ee4e09b2c34d99c69d3b97cece4c1c34143") + (revision "1")) + (package + (name "r-swne") + (version (git-version "0.6.20" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yanwu2014/swne") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0crlpg9kclbv4v8250p3086a3lk6f2hcq79psqkdylc1qnrx3kfx")))) + (properties `((upstream-name . "swne"))) + (build-system r-build-system) + (propagated-inputs + (list r-fnn + r-ggplot2 + r-ggrepel + r-hash + r-ica + r-igraph + r-irlba + r-jsonlite + r-liger + r-mass + r-matrix + r-mgcv + r-nnlm ;not listed but required at install time + r-plyr + r-proxy + r-rcolorbrewer + r-rcpp + r-rcpparmadillo + r-rcppeigen + r-reshape + r-reshape2 + r-snow + r-umap + r-usedist)) + (home-page "https://github.com/yanwu2014/swne") + (synopsis "Visualize high dimensional datasets") + (description + "@dfn{Similarity Weighted Nonnegative Embedding} (SWNE) is a method for +visualizing high dimensional datasets. SWNE uses Nonnegative Matrix +Factorization to decompose datasets into latent factors, projects those +factors onto 2 dimensions, and embeds samples and key features in 2 dimensions +relative to the factors. SWNE can capture both the local and global dataset +structure, and allows relevant features to be embedded directly onto the +visualization, facilitating interpretation of the data.") + (license license:gpl2)))) + (define-public python-rpy2 (package (name "python-rpy2") -- cgit v1.3 From ce57df72fd7ce52bdd33bc6c9477b1ebac86ac1e Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 9 Feb 2022 08:59:29 +0100 Subject: gnu: Add r-billboarder. * gnu/packages/cran.scm (r-billboarder): New variable. --- gnu/packages/cran.scm | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index af4d3c8f76..d468972aa1 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -8284,6 +8284,66 @@ Python to R they are converted back to R types.") file.") (license license:gpl2+))) +(define-public r-billboarder + (package + (name "r-billboarder") + (version "0.3.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "billboarder" version)) + (sha256 + (base32 "189ngvg84rcwhrivxskmjv3srhadvzr4p1v8pf11axyv2qn01b0x")) + (snippet + '(delete-file "inst/htmlwidgets/lib/billboard/billboard.pkgd.min.js")))) + (properties `((upstream-name . "billboarder"))) + (build-system r-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'process-javascript + (lambda* (#:key inputs #:allow-other-keys) + (with-directory-excursion "inst/htmlwidgets/lib/billboard/" + (let ((source (assoc-ref inputs "js-billboard")) + (target "billboard.pkgd.min.js")) + (format #true "Processing ~a --> ~a~%" + source target) + (invoke "esbuild" source "--minify" + (string-append "--outfile=" target))))))))) + (propagated-inputs + (list r-ggplot2 + r-htmltools + r-htmlwidgets + r-jsonlite + r-magrittr + r-rlang + r-scales + r-shiny)) + (native-inputs + `(("r-knitr" ,r-knitr) + ("esbuild" ,esbuild) + ;; It is not ideal to use this concatenated (but not minified) + ;; JavaScript file, as the original source is written in TypeScript. + ;; However, this can still be considered source code as it is readable + ;; and can be modified. + ("js-billboard" + ,(origin + (method url-fetch) + (uri "https://unpkg.com/billboard.js@3.2.0/dist/billboard.js") + (sha256 + (base32 + "1kx5rqmn87pgal2cwmcij2rrnwa0fgcsw6y99m4i0l2sdm0qffv2")))))) + (home-page "https://github.com/dreamRs/billboarder") + (synopsis "Create interactive charts with the JavaScript Billboard library") + (description + "This package provides an @code{htmlwidgets} interface to billboard.js, +a re-usable easy interface JavaScript chart library, based on D3 v4+. Chart +types include line charts, scatterplots, bar/lollipop charts, +histogram/density plots, pie/donut charts and gauge charts. All charts are +interactive, and a proxy method is implemented to smoothly update a chart +without rendering it again in shiny apps.") + (license license:expat))) + (define-public r-ggseqlogo (package (name "r-ggseqlogo") -- cgit v1.3 From 45fb9e627e2070567bc2d4e668f887da132fcc6a Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 9 Feb 2022 09:01:53 +0100 Subject: gnu: Add r-shinymanager. * gnu/packages/cran.scm (r-shinymanager): New variable. --- gnu/packages/cran.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index d468972aa1..c2c4d975fd 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -15306,6 +15306,38 @@ several common set, element and attribute related tasks.") effects from the jQuery UI library.") (license license:expat))) +(define-public r-shinymanager + (package + (name "r-shinymanager") + (version "1.0.400") + (source + (origin + (method url-fetch) + (uri (cran-uri "shinymanager" version)) + (sha256 + (base32 "1np2yp5pn8g9i4jhysfgprmdn13cpw4vaaagrd72rnk2r4hpmyx4")))) + (properties `((upstream-name . "shinymanager"))) + (build-system r-build-system) + (propagated-inputs + (list r-billboarder + r-dbi + r-dt + r-htmltools + r-openssl + r-r-utils + r-r6 + r-rsqlite + r-scrypt + r-shiny)) + (native-inputs (list r-knitr)) + (home-page "https://github.com/datastorm-open/shinymanager") + (synopsis "Authentication management for Shiny applications") + (description + "This package provides simple and secure authentification mechanism for +single Shiny applications. Credentials are stored in an encrypted SQLite +database.") + (license license:gpl3))) + (define-public r-outliers (package (name "r-outliers") -- cgit v1.3 From 238a63b0ebb9912bdd45af26e974e992d899a14f Mon Sep 17 00:00:00 2001 From: Florian Pelz Date: Wed, 9 Feb 2022 11:04:00 +0100 Subject: news: Add 'de' translation. * etc/news.scm: Add German translation of 'guix deploy -x' entry. --- etc/news.scm | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/etc/news.scm b/etc/news.scm index 69803d03ce..83503115f6 100644 --- a/etc/news.scm +++ b/etc/news.scm @@ -40,6 +40,7 @@ zstd substitutes will be offered. Dropping Gzip substitutes will free about (entry (commit "5c13484646069064c834bbd3cd02c3bc80d94cb6") (title (en "New @option{--execute} option to @command{guix deploy}") + (de "Neue Option @option{--execute} für @command{guix deploy}") (fr "Nouvelle option @option{--execute} pour @command{guix deploy}")) (body (en "The @command{guix deploy} command has a new @option{--execute} @@ -52,6 +53,16 @@ guix deploy deploy.scm -x -- herd restart guix-daemon This is no substitute for full-featured tools such as pdsh but it is a useful helper.") + (de "Der Befehl @command{guix deploy} verfügt über eine neue Option +@option{--execute} oder @option{-x}, mit der Sie einen Befehl auf allen in der +Konfigurationsdatei angegebenen Maschinen ausführen können. Zum Beispiel: + +@example +guix deploy deploy.scm -x -- herd restart guix-daemon +@end example + +Dies ist kein Ersatz für vollumfängliche Werkzeuge wie pdsh, aber es kann doch +von Nutzen sein.") (fr "La commande @command{guix deploy} a une nouvelle option @option{--execute} ou @option{-x} qui permet d'exécuter une commande sur toutes les machines spécifiées dans son fichier de configuration, comme dans -- cgit v1.3 From 758a20569d98e8aebdc6dcdde917d9036bed8c6a Mon Sep 17 00:00:00 2001 From: Florian Pelz Date: Wed, 9 Feb 2022 11:19:25 +0100 Subject: news: Add 'de' translation. * etc/news.scm: Add German translation of end of Gzip substitutes entry. --- etc/news.scm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/etc/news.scm b/etc/news.scm index 83503115f6..2e81c3e0bf 100644 --- a/etc/news.scm +++ b/etc/news.scm @@ -27,7 +27,8 @@ (entry (commit "96d7535b030c65b2d8cb0bea52c4bd96cbdefaf0") (title - (en "ci.guix.gnu.org to stop offering Gzip substitutes")) + (en "ci.guix.gnu.org to stop offering Gzip substitutes") + (de "ci.guix.gnu.org wird keine Substitute mit Gzip mehr anbieten")) (body (en "This is a notice to let you know that starting next month (2022/03/01), Gzip-compressed substitutes will no longer be available, @@ -35,7 +36,14 @@ which means that Guix daemons from a revision older than commit @samp{3092f1b835d79655eecb2f8a79dda20ad9ba6bd6} (2019/06/02) will loose the ability to download binary substitutes. Starting next month, only lzip and zstd substitutes will be offered. Dropping Gzip substitutes will free about -6.5 TiB of storage space from the build farm."))) +6.5 TiB of storage space from the build farm.") + (de "Hiermit weisen wir Sie darauf hin, dass ab nächstem +Monat (2022/03/01) keine Gzip-komprimierten Substitute mehr zur Verfügung +stehen. Dadurch können Guix-Daemons, deren Version älter ist als Commit +@samp{3092f1b835d79655eecb2f8a79dda20ad9ba6bd6} (2019/06/02) keine binären +Substitute mehr beziehen. Ab kommendem Monat werden nur Substitute mit lzip +und zstd angeboten. Indem wir auf Gzip-Substitute verzichten, sparen wir 6.5 +TiB Speicherplatz auf der Erstellungsfarm."))) (entry (commit "5c13484646069064c834bbd3cd02c3bc80d94cb6") (title -- cgit v1.3 From ad9cd004c81a01e33a605221a102f4d20abe442d Mon Sep 17 00:00:00 2001 From: Florian Pelz Date: Wed, 9 Feb 2022 13:04:05 +0100 Subject: news: Fix 'de' translation. * etc/news.scm: Fix typo. --- etc/news.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/news.scm b/etc/news.scm index 2e81c3e0bf..6205a0c071 100644 --- a/etc/news.scm +++ b/etc/news.scm @@ -40,7 +40,7 @@ zstd substitutes will be offered. Dropping Gzip substitutes will free about (de "Hiermit weisen wir Sie darauf hin, dass ab nächstem Monat (2022/03/01) keine Gzip-komprimierten Substitute mehr zur Verfügung stehen. Dadurch können Guix-Daemons, deren Version älter ist als Commit -@samp{3092f1b835d79655eecb2f8a79dda20ad9ba6bd6} (2019/06/02) keine binären +@samp{3092f1b835d79655eecb2f8a79dda20ad9ba6bd6} (2019/06/02), keine binären Substitute mehr beziehen. Ab kommendem Monat werden nur Substitute mit lzip und zstd angeboten. Indem wir auf Gzip-Substitute verzichten, sparen wir 6.5 TiB Speicherplatz auf der Erstellungsfarm."))) -- cgit v1.3 From 74de5862f4325f58d4b682134c8627c6e6bc3056 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 9 Feb 2022 14:24:00 +0100 Subject: gnu: Add r-excelr. * gnu/packages/cran.scm (r-excelr): New variable. --- gnu/packages/cran.scm | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index c2c4d975fd..6338cb7853 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -3997,6 +3997,54 @@ T distribution. There is only one exported function, @code{e_trunct}, which should be seen for details.") (license license:expat))) +(define-public r-excelr + (package + (name "r-excelr") + (version "0.4.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "excelR" version)) + (sha256 + (base32 "1pb4sy54zjv5vrh7gjjv7qlpab74km6mfsmfyl0yhmr0jx01hrw0")) + (snippet + '(delete-file "inst/htmlwidgets/lib/jexcel/js/jexcel.min.js")))) + (properties `((upstream-name . "excelR"))) + (build-system r-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'process-javascript + (lambda* (#:key inputs #:allow-other-keys) + (with-directory-excursion "inst/htmlwidgets/lib/jexcel/js/" + (let ((source (assoc-ref inputs "js-jexcel")) + (target "jexcel.min.js")) + (format #true "Processing ~a --> ~a~%" + source target) + (invoke "esbuild" source "--minify" + (string-append "--outfile=" target))))))))) + (native-inputs + `(("esbuild" ,esbuild) + ;; There is no tag for this particular commit, but comparison of the + ;; contents of the JavaScript files point to this commit as the most + ;; likely source. + ("js-jexcel" + ,(origin + (method url-fetch) + (uri (string-append "https://raw.githubusercontent.com/jspreadsheet/ce/" + "8af1960f76e6803bebc5750013d2ebe95354e88a/dist/jexcel.js")) + (sha256 + (base32 + "0y88hsr9d8cpnvdmbm17m328pc4kc5wbcv02kzmhm0bryzhviw7h")))))) + (propagated-inputs (list r-htmlwidgets r-jsonlite)) + (home-page "https://github.com/Swechhya/excelR") + (synopsis "Wrapper of the JavaScript library jExcel") + (description + "This package provides an R interface to the jExcel library to +create web-based interactive tables and spreadsheets compatible with +spreadsheet software.") + (license license:expat))) + (define-public r-extremes (package (name "r-extremes") -- cgit v1.3 From a9a59c464c1114db4b29004f4071355effe76977 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 9 Feb 2022 14:54:35 +0100 Subject: gnu: emacs-org-transclusion: Update to 1.2.0. * gnu/packages/emacs-xyz.scm (emacs-org-transclusion): Update to 1.2.0. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index f0a0893dd3..6692a4c8a9 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -14940,7 +14940,7 @@ running tests easier.") (define-public emacs-org-transclusion (package (name "emacs-org-transclusion") - (version "1.1.1") + (version "1.2.0") (source (origin (method git-fetch) @@ -14949,7 +14949,7 @@ running tests easier.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0qvc8f4i44d8mgkzfi9yld664cmapkbmjv4bf0l8va417ck5sm92")))) + (base32 "01q62mrh0lijj2mwf0jy40zhy3q7w3bq2f4sb0f8hrr8ggh6shxh")))) (build-system emacs-build-system) (home-page "https://nobiot.github.io/org-transclusion/") (synopsis "Enable transclusion with Org Mode") -- cgit v1.3 From a80f9a075172d0feccaaa4e7830d0a65a9aa23cd Mon Sep 17 00:00:00 2001 From: Jai Vetrivelan Date: Wed, 9 Feb 2022 06:21:14 +0530 Subject: gnu: Add emacs-everywhere. * gnu/packages/emacs-xyz.scm (emacs-everywhere): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 48 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 6692a4c8a9..f8af29fa79 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -26330,6 +26330,54 @@ commands in @code{evil-mode}.") Emacs windows and tmux panes.") (license license:expat))) +(define-public emacs-everywhere + ;; No upstream release. Extract version from main file. + (let ((commit "ace53396a66ed4b753f42c04a5a0db2bcd770423") + (revision "0")) + (package + (name "emacs-everywhere") + (version (git-version "0.0.1" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tecosaur/emacs-everywhere") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0p55shxvqm1713af33mfglny7rpi31d42wvgwylcsfy4jvnsq8bb")))) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'patch-exec-paths + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "emacs-everywhere.el" + (("\"xclip\"") + (string-append "\"" + (search-input-file inputs "/bin/xclip") + "\"")) + (("\"xdotool\"") + (string-append "\"" + (search-input-file inputs "/bin/xdotool") + "\"")) + (("\"xprop\"") + (string-append "\"" + (search-input-file inputs "/bin/xprop") + "\"")) + (("\"xwininfo\"") + (string-append "\"" + (search-input-file inputs "/bin/xwininfo") + "\"")))))))) + (inputs (list xclip xdotool xprop xwininfo)) + (build-system emacs-build-system) + (home-page "https://github.com/tecosaur/emacs-everywhere") + (synopsis "System-wide popup Emacs windows for quick edits") + (description "@code{emacs-everywhere} launches a new Emacs frame, and the +contents of the buffer are pasted into the previously focused application on +deletion of the frame.") + (license license:gpl3+)))) + (define-public emacs-xclip (package (name "emacs-xclip") -- cgit v1.3 From 6c29b582160aee408f0079d0a13dd316374098b5 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 9 Feb 2022 15:16:00 +0100 Subject: gnu: emacs-theme-magic: Use new package style. * gnu/packages/emacs-xyz.scm (emacs-theme-magic)[arguments]: Use G-expressions. <#:phases>: Use SEARCH-INPUT-FILE instead of ASSOC-REF. Remove trailing #T. --- gnu/packages/emacs-xyz.scm | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index f8af29fa79..92aebf2089 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -1117,20 +1117,22 @@ then only the color of the mode line changes when a window becomes in-/active.") (base32 "10gkg7jh1s1484gm66a87zr7x8vmv00s7gfd0w2pj47nqf98g8hz")))) (build-system emacs-build-system) (arguments - `( - ;; Include Pywal interaction scripts. - #:include (cons "^python/" %default-include) - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'patch-exec-paths - (lambda* (#:key inputs #:allow-other-keys) - (let ((files '("theme-magic.el" "python/wal_change_colors.py")) - (python (assoc-ref inputs "python")) - (python-pywal (assoc-ref inputs "python-pywal"))) - (substitute* files - (("\"python\"") (string-append "\"" python "/bin/python3\"")) - (("\"wal\"") (string-append "\"" python-pywal "/bin/wal\"")))) - #t))))) + (list + ;; Include Pywal interaction scripts. + #:include #~(cons "^python/" %default-include) + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'patch-exec-paths + (lambda* (#:key inputs #:allow-other-keys) + (substitute* '("theme-magic.el" "python/wal_change_colors.py") + (("\"python\"") + (string-append "\"" + (search-input-file inputs "/bin/python3") + "\"")) + (("\"wal\"") + (string-append "\"" + (search-input-file inputs "/bin/wal") + "\"")))))))) (inputs (list python python-pywal)) (home-page "https://github.com/jcaw/theme-magic") -- cgit v1.3 From e66e3082b33640127e9c3ccc3e7a515dc0314115 Mon Sep 17 00:00:00 2001 From: Jai Vetrivelan Date: Wed, 9 Feb 2022 07:39:59 +0530 Subject: gnu: grim: Update to 1.4.0. * gnu/packages/image.scm (grim): Update to 1.4.0. [inputs]: Remove CARGO, add PIXMAN and LIBPNG. Signed-off-by: Nicolas Goaziou --- gnu/packages/image.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm index 6cf171a410..f40ae12ccb 100644 --- a/gnu/packages/image.scm +++ b/gnu/packages/image.scm @@ -32,6 +32,7 @@ ;;; Copyright © 2021 Sharlatan Hellseher ;;; Copyright © 2021 Nicolò Balzarotti ;;; Copyright © 2021 Alexandr Vityazev +;;; Copyright © 2022 Jai Vetrivelan ;;; ;;; This file is part of GNU Guix. ;;; @@ -1957,7 +1958,7 @@ identical visual appearance.") (define-public grim (package (name "grim") - (version "1.3.2") + (version "1.4.0") (source (origin (method git-fetch) @@ -1966,10 +1967,10 @@ identical visual appearance.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1l4gwvvc0zvg5b6f6w92xjhmwj7cg9hlgrf43lc7ygaz8dh6cmzg")))) + (base32 "1b1k5cmmk7gzis0rncyl98lnhdwpjkdsv9pada5mmgxcpka6f0lp")))) (build-system meson-build-system) (native-inputs (list pkg-config scdoc)) - (inputs (list cairo libjpeg-turbo wayland wayland-protocols)) + (inputs (list pixman libpng libjpeg-turbo wayland wayland-protocols)) (home-page "https://github.com/emersion/grim") (synopsis "Create screenshots from a Wayland compositor") (description "grim can create screenshots from a Wayland compositor.") -- cgit v1.3 From 28e40fc369464ed12c519e76c9e36320b4d3c460 Mon Sep 17 00:00:00 2001 From: kiasoc5 Date: Mon, 7 Feb 2022 10:15:06 -0500 Subject: gnu: python-flask-babel: Update to 2.0.0. * gnu/packages/python-web.scm (python-flask-babel): Update to 2.0.0. Signed-off-by: Nicolas Goaziou --- gnu/packages/python-web.scm | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 408d7f6571..8c638ce439 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -1112,21 +1112,15 @@ support for merging, minifying and compiling CSS and Javascript files.") (define-public python-flask-babel (package (name "python-flask-babel") - (version "1.0.0") + (version "2.0.0") (source (origin (method url-fetch) (uri (pypi-uri "Flask-Babel" version)) (sha256 (base32 - "0gmb165vkwv5v7dxsxa2i3zhafns0fh938m2zdcrv4d8z5l099yn")))) + "0z95v77vib5il8hphyh16n7i15a2gmc06i615vm346ifvdfg9ypr")))) (build-system python-build-system) - (arguments - '(#:phases (modify-phases %standard-phases - (replace 'check - (lambda _ - (with-directory-excursion "tests" - (invoke "python" "tests.py"))))))) (propagated-inputs (list python-flask python-babel python-jinja2 python-pytz)) (home-page "https://github.com/python-babel/flask-babel") -- cgit v1.3 From 1ef73d5bea6215b1172c296063b9c5b94a4d849d Mon Sep 17 00:00:00 2001 From: kiasoc5 Date: Mon, 7 Feb 2022 10:31:13 -0500 Subject: gnu: searx: Fix build. * gnu/packages/search.scm (searx)[arguments]<#:phases>: Simplify relax-requirements phase for updated dependencies. Add phase to allow sanity check to pass. Signed-off-by: Nicolas Goaziou --- gnu/packages/search.scm | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/gnu/packages/search.scm b/gnu/packages/search.scm index 7e3d9b1cbd..dbca2b3c08 100644 --- a/gnu/packages/search.scm +++ b/gnu/packages/search.scm @@ -243,16 +243,15 @@ command line tool for interacting with libtocc.") (modify-phases %standard-phases (add-after 'unpack 'relax-requirements (lambda _ - ;; These packages are outdated in Guix at the time of packaging. - ;; When they are updated, remove corresponding substitutions. ;; Tests can run after build with 'searx-checker' tool in /bin. + ;; allow using a higher dependency version (substitute* "requirements.txt" - (("flask-babel==2.0.0") "flask-babel>=1.0.0") - (("jinja2==2.11.3") "jinja2>=2.11.2") - (("lxml==4.6.3") "lxml>=4.4.2") - (("pygments==2.8.0") "pygments>=2.7.3") - (("requests\\[socks\\]==2.25.1") "requests>=2.25") - (("==") ">="))))))) + (("==") ">=")))) + (add-before 'sanity-check 'set-debug + (lambda _ + ;; the user will need to change the secret key + ;; https://github.com/searx/searx/issues/2278 + (setenv "SEARX_DEBUG" "1")))))) (propagated-inputs (list python-babel python-certifi -- cgit v1.3 From 634d95be2208397882f9c74b01f09dc52ffde498 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 9 Feb 2022 15:49:04 +0100 Subject: gnu: emacs-djvu: Use new package style. * gnu/packages/emacs-xyz.scm (emacs-djvu)[arguments]<#:phases>: Use G-expressions. Use SEARCH-INPUT-FILE instead of ASSOC-REF. Remove trailing #T. --- gnu/packages/emacs-xyz.scm | 40 ++++++++++++++++++++++++---------------- 1 file changed, 24 insertions(+), 16 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 92aebf2089..92c247ca38 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -3392,22 +3392,30 @@ filters, new key bindings and faces. It can be enabled by (build-system emacs-build-system) (inputs (list djview djvulibre)) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'unpack 'configure - (lambda* (#:key inputs outputs #:allow-other-keys) - (let ((file "djvu.el") - (djview (assoc-ref inputs "djview")) - (djvulibre (assoc-ref inputs "djvulibre"))) - ;; Specify the absolute executable locations. - (chmod file #o644) - (substitute* file - (("\"djvused\"") (string-append "\"" djvulibre "/bin/djvused\"")) - (("\"djvm\"") (string-append "\"" djvulibre "/bin/djvm\"")) - (("\"ddjvu\"") (string-append "\"" djvulibre "/bin/ddjvu\""))) - (emacs-substitute-variables file - ("djvu-djview-command" (string-append djview "/bin/djview")))) - #t))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'configure + (lambda* (#:key inputs #:allow-other-keys) + (let ((file "djvu.el")) + ;; Specify the absolute executable locations. + (make-file-writable file) + (substitute* file + (("\"djvused\"") + (string-append "\"" + (search-input-file inputs "/bin/djvused") + "\"")) + (("\"djvm\"") + (string-append "\"" + (search-input-file inputs "/bin/djvm") + "\"")) + (("\"ddjvu\"") + (string-append "\"" + (search-input-file inputs "/bin/ddjvu") + "\""))) + (emacs-substitute-variables file + ("djvu-djview-command" + (search-input-file inputs "/bin/djview"))))))))) (home-page "http://elpa.gnu.org/packages/djvu.html") (synopsis "Edit and view Djvu files via djvused") (description -- cgit v1.3 From f05f831f66b957c7f1e651763dcbbb98c2d76266 Mon Sep 17 00:00:00 2001 From: Michael Rohleder Date: Mon, 7 Feb 2022 00:44:42 +0100 Subject: gnu: blender: Update to 3.0.1. * gnu/packages/graphics.scm (blender): Update to 3.0.1. Signed-off-by: Nicolas Goaziou --- gnu/packages/graphics.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index cc56d9d319..55a2ca6396 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -27,6 +27,7 @@ ;;; Copyright © 2021 Andy Tai ;;; Copyright © 2021 Ekaitz Zarraga ;;; Copyright © 2021 Vinicius Monego +;;; Copyright © 2022 Michael Rohleder ;;; ;;; This file is part of GNU Guix. ;;; @@ -410,14 +411,14 @@ typically encountered in feature film production.") (define-public blender (package (name "blender") - (version "3.0.0") + (version "3.0.1") (source (origin (method url-fetch) (uri (string-append "https://download.blender.org/source/" "blender-" version ".tar.xz")) (sha256 (base32 - "1jzirg60c2lhln78a7phbsk2ssvcdqxqb3awp895m0pqrlmz7w2h")))) + "0hblgls5pclqamsxk0vb14f4fm30hdiq7fb2bm5mq2ly4sb0mfqr")))) (build-system cmake-build-system) (arguments (let ((python-version (version-major+minor (package-version python)))) -- cgit v1.3 From 4578ad78bee1dfd450962627ae66d3e15ebadad2 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Tue, 25 Jan 2022 14:20:53 -0500 Subject: gnu: QSyncthingTray: Deprecate in favor of Debian's syncthing-gtk fork. This package is abandoned upstream and depends on the insecure and abandoned QtWebKit. Upstream abandonment: https://github.com/sieren/QSyncthingTray/issues/247 See for more information about this change * gnu/packages/sync.scm (qsyncthingtray): Move this variable ... * gnu/packages/syncthing.scm (qsyncthingtray): ... to here. And make it into a deprecated-package that points to syncthing-gtk. --- gnu/packages/sync.scm | 52 ---------------------------------------------- gnu/packages/syncthing.scm | 3 +++ 2 files changed, 3 insertions(+), 52 deletions(-) diff --git a/gnu/packages/sync.scm b/gnu/packages/sync.scm index f897c1ec4a..801aef3f44 100644 --- a/gnu/packages/sync.scm +++ b/gnu/packages/sync.scm @@ -359,58 +359,6 @@ synchronize to the same server and any change to the files on one computer will silently and reliably flow across to every other.") (license license:gpl2+))) -(define-public qsyncthingtray - (package - (name "qsyncthingtray") - (version "0.5.8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sieren/QSyncthingTray") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1n9g4j7qznvg9zl6x163pi9f7wsc3x6q76i33psnm7x2v1i22x5w")))) - (build-system cmake-build-system) - (arguments - `(#:configure-flags '("-DQST_BUILD_WEBKIT=1") - #:phases - (modify-phases %standard-phases - ;; The program is meant to be run from the git repo or source tarball. - (replace 'install - (lambda* (#:key outputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out")) - (bin (string-append out "/bin"))) - (install-file "QSyncthingTray" bin) - (mkdir-p (string-append out "/share/pixmaps")) - (copy-file "../source/resources/images/Icon1024.png" - (string-append - out "/share/pixmaps/QSyncthingTray.png")) - #t)))) - #:tests? #f)) ; no test target - (inputs - (list qtbase-5 qtwebkit)) - (home-page "https://github.com/sieren/QSyncthingTray") - (synopsis "Traybar Application for Syncthing") - (description - "A traybar application for syncthing. -@enumerate -@item Shows number of connections at a glance. -@item Traffic statistics about incoming, outgoing and total throughput. -@item Launches Syncthing and Syncthing-iNotifier if specified. -@item Quickly pause Syncthing with one click. -@item Last Synced Files - Quickly see the recently synchronised files and open -their folder. -@item Quick Access to all shared folders. -@item Presents Syncthing UI in a separate view instead of using the browser. -@item Supports authenticated HTTPS connections. -@item Uses System Notifications about current connection status. -@item Toggle for monochrome icon. -@end enumerate\n") - (license license:lgpl3+))) - (define-public lsyncd (package (name "lsyncd") diff --git a/gnu/packages/syncthing.scm b/gnu/packages/syncthing.scm index 71636e76a3..ebf7c2322e 100644 --- a/gnu/packages/syncthing.scm +++ b/gnu/packages/syncthing.scm @@ -218,6 +218,9 @@ notification area icon for Syncthing. Supported Syncthing features: @end itemize\n") (license gpl2)))) +(define-public qsyncthingtray + (deprecated-package "qsyncthingtray" syncthing-gtk)) + (define-public go-github-com-jackpal-go-nat-pmp (package (name "go-github-com-jackpal-go-nat-pmp") -- cgit v1.3 From 59dbc7b28c0dae457c67cbe2ffd738afdba87e0e Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Wed, 9 Feb 2022 17:34:16 +0000 Subject: gnu: guix-data-service: Update to 0.0.1-29.4a1088c. * gnu/packages/web.scm (guix-data-service): Update to 0.0.1-29.4a1088c. [inputs]: Switch to guile-fibers-1.1. --- gnu/packages/web.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 7911378f29..2a3b67cef3 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -4667,8 +4667,8 @@ CDF, Atom 0.3, and Atom 1.0 feeds.") license:freebsd-doc)))) ; documentation (define-public guix-data-service - (let ((commit "f1d8d76c4d685bc5e938f495c762984fe2564371") - (revision "28")) + (let ((commit "4a1088c21687531de0b4e062e1bf9ec491e5d4da") + (revision "29")) (package (name "guix-data-service") (version (string-append "0.0.1-" revision "." (string-take commit 7))) @@ -4680,7 +4680,7 @@ CDF, Atom 0.3, and Atom 1.0 feeds.") (file-name (git-file-name name version)) (sha256 (base32 - "16ys402pvrzxm8kvhss4fhgfzbcxh70jndi50cpgz80qb510x3iq")))) + "1k9hnpx47l91l0x3gvjrzx4772lnkb55lk66axgl3a8g1fhaji4l")))) (build-system gnu-build-system) (arguments '(#:modules ((guix build utils) @@ -4740,7 +4740,7 @@ CDF, Atom 0.3, and Atom 1.0 feeds.") (delete 'strip)))) ; As the .go files aren't compatible (inputs (list guix - guile-fibers + guile-fibers-1.1 guile-json-4 guile-email guile-prometheus -- cgit v1.3 From 565b34994e98112cac298a725a50cdcead0e37a1 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Wed, 9 Feb 2022 17:40:00 +0000 Subject: gnu: guix-build-coordinator: Update to 0-50.f122322. * gnu/packages/package-management.scm (guix-build-coordinator): Update to 0-50.f122322. [native-inputs,propagated-inputs]: Switch to guile-fibers@1.1. --- gnu/packages/package-management.scm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm index ce3440c4cb..7b16f8e4cd 100644 --- a/gnu/packages/package-management.scm +++ b/gnu/packages/package-management.scm @@ -1261,8 +1261,8 @@ environments.") (license (list license:gpl3+ license:agpl3+ license:silofl1.1)))) (define-public guix-build-coordinator - (let ((commit "c5c1ff9fc8dcb24003569c0a37dcda6fcd1fbee2") - (revision "49")) + (let ((commit "f1223225144b866951f13ece7f0583fd826a5705") + (revision "50")) (package (name "guix-build-coordinator") (version (git-version "0" revision commit)) @@ -1273,7 +1273,7 @@ environments.") (commit commit))) (sha256 (base32 - "0i20v4g1wai2g1wyvdpnrblhhfl1jakqc9z8l3g2br66kwn36rry")) + "1yw5hzmkhgb2s29wv7bsi3w50ps9zi0zd1n0faxbcfyglsryvgbs")) (file-name (string-append name "-" version "-checkout")))) (build-system gnu-build-system) (arguments @@ -1360,7 +1360,7 @@ environments.") guile-gcrypt guix guile-prometheus - guile-fibers + guile-fibers-1.1 guile-lib (first (assoc-ref (package-native-inputs guix) "guile")))) (inputs @@ -1384,7 +1384,7 @@ environments.") gnutls) (if (hurd-target?) '() - (list guile-fibers)))) + (list guile-fibers-1.1)))) (home-page "https://git.cbaines.net/guix/build-coordinator/") (synopsis "Tool to help build derivations") (description -- cgit v1.3 From 515406f20f0f2a69f8701ce3ece8121dbc4fb5dd Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Wed, 9 Feb 2022 17:59:43 +0000 Subject: gnu: nar-herder: Update to 0-3.b026331. * gnu/packages/package-management.scm (nar-herder): Update to 0-3.b026331. [native-inputs,propagated-inputs]: Switch to guile-fibers@1.1. --- gnu/packages/package-management.scm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm index 7b16f8e4cd..03cc9a6612 100644 --- a/gnu/packages/package-management.scm +++ b/gnu/packages/package-management.scm @@ -1569,8 +1569,8 @@ in an isolated environment, in separate namespaces.") (license license:gpl3+))) (define-public nar-herder - (let ((commit "f016f37ee004294722650ac570d3e4286bc8d161") - (revision "2")) + (let ((commit "b0263314f56cc6558e4941f64c89d9fd85aaa260") + (revision "3")) (package (name "nar-herder") (version (git-version "0" revision commit)) @@ -1581,7 +1581,7 @@ in an isolated environment, in separate namespaces.") (commit commit))) (sha256 (base32 - "18kzh37cw9dsd8b3ws81yikjkq6izdqiygyf0bnf5ikbixmmj30x")) + "05rpjs8c6m23knh0wx9sjf3417nrbi489vbisr5d9ijfhg78l7i3")) (file-name (string-append name "-" version "-checkout")))) (build-system gnu-build-system) (arguments @@ -1647,7 +1647,7 @@ in an isolated environment, in separate namespaces.") guile-json-4 guile-gcrypt guix - guile-fibers + guile-fibers-1.1 guile-lib guile-sqlite3)) (inputs @@ -1657,7 +1657,7 @@ in an isolated environment, in separate namespaces.") (list guile-json-4 guile-gcrypt guix - guile-fibers + guile-fibers-1.1 guile-lib guile-sqlite3 gnutls)) -- cgit v1.3 From 28dbf098d88967055d1aeca59018bc7435e0e7fc Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Wed, 9 Feb 2022 12:31:58 -0500 Subject: gnu: linux-libre 5.16: Update to 5.16.8. * gnu/packages/linux.scm (linux-libre-5.16-version): Update to 5.16.8. (linux-libre-5.16-pristine-source): Update hash. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 08ef82efaf..2e8605c571 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -357,7 +357,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." ;; The current "stable" kernels. That is, the most recently released major ;; versions that are still supported upstream. -(define-public linux-libre-5.16-version "5.16.7") +(define-public linux-libre-5.16-version "5.16.8") (define-public linux-libre-5.16-gnu-revision "gnu") (define deblob-scripts-5.16 (linux-libre-deblob-scripts @@ -367,7 +367,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (base32 "14vb7g784rm1s2a2dzs6pnz3998iwdjwx8665myddr7gd197rkaq"))) (define-public linux-libre-5.16-pristine-source (let ((version linux-libre-5.16-version) - (hash (base32 "1kd6v31z9rylnpyrv6b3i622ismxbiv165dcjh2fn5aliqzgalap"))) + (hash (base32 "05h3b11czr710lilmb5gq84a78cfz3jm03q2q0gcrpcaxq2mzajj"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-5.16))) -- cgit v1.3 From ea425b64618858e29542d0d3d8a0cb399949d9a2 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Wed, 9 Feb 2022 12:32:10 -0500 Subject: gnu: linux-libre: Update to 5.15.22. * gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.22. (linux-libre-5.15-pristine-source): Update hash. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 2e8605c571..a8f255f72e 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -375,7 +375,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." ;; The "longterm" kernels — the older releases with long-term upstream support. ;; Here are the support timelines: ;; -(define-public linux-libre-5.15-version "5.15.21") +(define-public linux-libre-5.15-version "5.15.22") (define-public linux-libre-5.15-gnu-revision "gnu") (define deblob-scripts-5.15 (linux-libre-deblob-scripts @@ -385,7 +385,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (base32 "0mxm0wy3fyg7fn2n8k9b4zh62l4q00b4y9zf46im691zscwgikc2"))) (define-public linux-libre-5.15-pristine-source (let ((version linux-libre-5.15-version) - (hash (base32 "1lgvf3mrsbwjdjfvznbf5c3np76a7xxqr2rw7i6196ywsxnfnki9"))) + (hash (base32 "1hv3ci37nz79m1dg83ha4hl1jjnl3l52lvdzx514sp8hqihgji1m"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-5.15))) -- cgit v1.3 From 233b84a5eb76b114b7f38c0e3fced289bee55a2d Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Wed, 9 Feb 2022 12:32:25 -0500 Subject: gnu: linux-libre 5.10: Update to 5.10.99. * gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.99. (linux-libre-5.10-pristine-source): Update hash. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index a8f255f72e..c10cdcd2c0 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -390,7 +390,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (%upstream-linux-source version hash) deblob-scripts-5.15))) -(define-public linux-libre-5.10-version "5.10.98") +(define-public linux-libre-5.10-version "5.10.99") (define-public linux-libre-5.10-gnu-revision "gnu1") (define deblob-scripts-5.10 (linux-libre-deblob-scripts @@ -400,7 +400,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (base32 "090y0z4a7b643w0v6c6mbgvl04mrlrhanil38mafl6dlnhad9zbl"))) (define-public linux-libre-5.10-pristine-source (let ((version linux-libre-5.10-version) - (hash (base32 "0hwl1ypllx9l5pv04yavz627qb31ki9mhznsak5bq48hbz0wc90v"))) + (hash (base32 "0j84g55d0v3832y9c5gh7bnmhnrb5bc9xdivps5n7n6km9c3b980"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-5.10))) -- cgit v1.3 From 4ffdd330dfc0f81e55135ec4797d9e2c30c4e69b Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Wed, 9 Feb 2022 12:32:38 -0500 Subject: gnu: linux-libre 5.4: Update to 5.4.178. * gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.178. (linux-libre-5.4-pristine-source): Update hash. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index c10cdcd2c0..e808c44071 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -405,7 +405,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (%upstream-linux-source version hash) deblob-scripts-5.10))) -(define-public linux-libre-5.4-version "5.4.177") +(define-public linux-libre-5.4-version "5.4.178") (define-public linux-libre-5.4-gnu-revision "gnu1") (define deblob-scripts-5.4 (linux-libre-deblob-scripts @@ -415,7 +415,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (base32 "1mp9d0b7mqw7cl65k0a18265cvn4qwcpnvna8r6n5m3y4pz3rik9"))) (define-public linux-libre-5.4-pristine-source (let ((version linux-libre-5.4-version) - (hash (base32 "0wvb5is8rqvfxia1i8lw4yd3fm2bhb6wdl0bdjq90dx7y46wpxqq"))) + (hash (base32 "19k2yzqlr4rarl086sr6vjnh0lq5wmg5n7r2p0cai9yfvq3spp2c"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-5.4))) -- cgit v1.3 From e37144e79d899156de68cac98c6a228dde3db9d5 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Wed, 9 Feb 2022 12:32:51 -0500 Subject: gnu: linux-libre 4.19: Update to 4.19.228. * gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.228. (linux-libre-4.19-pristine-source): Update hash. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index e808c44071..1846ae1e69 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -420,7 +420,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (%upstream-linux-source version hash) deblob-scripts-5.4))) -(define-public linux-libre-4.19-version "4.19.227") +(define-public linux-libre-4.19-version "4.19.228") (define-public linux-libre-4.19-gnu-revision "gnu1") (define deblob-scripts-4.19 (linux-libre-deblob-scripts @@ -430,7 +430,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (base32 "1mp9d0b7mqw7cl65k0a18265cvn4qwcpnvna8r6n5m3y4pz3rik9"))) (define-public linux-libre-4.19-pristine-source (let ((version linux-libre-4.19-version) - (hash (base32 "0d1jyyxdrpyi35033fjg8g6zz99ffry2ks1wlldfaxfa6wh9dp39"))) + (hash (base32 "14iis3x3jmfxwqqi7v7ijssqzha8d8nnydi4zqnpk53m45jw7km8"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-4.19))) -- cgit v1.3 From a8e10e7d2ebaa5490a4a4201583f0eefe3cd4f4e Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Wed, 9 Feb 2022 12:33:06 -0500 Subject: gnu: linux-libre 4.14: Update to 4.14.265. * gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.265. (linux-libre-4.14-pristine-source): Update hash. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 1846ae1e69..daf67af05c 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -435,7 +435,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (%upstream-linux-source version hash) deblob-scripts-4.19))) -(define-public linux-libre-4.14-version "4.14.264") +(define-public linux-libre-4.14-version "4.14.265") (define-public linux-libre-4.14-gnu-revision "gnu1") (define deblob-scripts-4.14 (linux-libre-deblob-scripts @@ -445,7 +445,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (base32 "1mp9d0b7mqw7cl65k0a18265cvn4qwcpnvna8r6n5m3y4pz3rik9"))) (define-public linux-libre-4.14-pristine-source (let ((version linux-libre-4.14-version) - (hash (base32 "1d1588f0zrq93dk9j8gmvfm9mlniyw98s0i3gmg2sa7h1p04pc2m"))) + (hash (base32 "1iwjg2z8818g1sl6l79pm5590hzwpxqcxh7wcdb00y4m3maksr0s"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-4.14))) -- cgit v1.3 From f0fbe2010bd70a9981dbbec475f1e4ae9dad3a08 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Wed, 9 Feb 2022 12:33:20 -0500 Subject: gnu: linux-libre 4.9: Update to 4.9.300. * gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.300. (linux-libre-4.9-pristine-source): Update hash. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index daf67af05c..6ba38624a0 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -450,7 +450,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (%upstream-linux-source version hash) deblob-scripts-4.14))) -(define-public linux-libre-4.9-version "4.9.299") +(define-public linux-libre-4.9-version "4.9.300") (define-public linux-libre-4.9-gnu-revision "gnu1") (define deblob-scripts-4.9 (linux-libre-deblob-scripts @@ -460,7 +460,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (base32 "0wdaj40pcq9wg5xnz2zj3jj8bawhfgqxcwp6dnavbf9lq0gca48p"))) (define-public linux-libre-4.9-pristine-source (let ((version linux-libre-4.9-version) - (hash (base32 "1n0y8hi7ljs9jr3viqhbpshq0wapmyqb8d9vlh4yzg2n5y5qs3l1"))) + (hash (base32 "1bzmnkhxgz093ninqg8bh348d7s4xmkld2bld8nl215gnji0wfdb"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-4.9))) -- cgit v1.3 From 1a4cc954d2fcea172a450ae03419b7fdda28b81e Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 27 Nov 2018 22:06:49 -0500 Subject: gnu: Add imgui. * gnu/packages/toolkits.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Register it. --- gnu/local.mk | 1 + gnu/packages/toolkits.scm | 104 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 105 insertions(+) create mode 100644 gnu/packages/toolkits.scm diff --git a/gnu/local.mk b/gnu/local.mk index f14daf2edd..360d3fc47f 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -582,6 +582,7 @@ GNU_SYSTEM_MODULES = \ %D%/packages/time.scm \ %D%/packages/tls.scm \ %D%/packages/tmux.scm \ + %D%/packages/toolkits.scm \ %D%/packages/tor.scm \ %D%/packages/tv.scm \ %D%/packages/uglifyjs.scm \ diff --git a/gnu/packages/toolkits.scm b/gnu/packages/toolkits.scm new file mode 100644 index 0000000000..e980438ca9 --- /dev/null +++ b/gnu/packages/toolkits.scm @@ -0,0 +1,104 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright © 2022 Maxim Cournoyer +;;; +;;; 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 . + +(define-module (gnu packages toolkits) + #:use-module (gnu packages gl) + #:use-module (gnu packages sdl) + #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix packages) + #:use-module (guix utils) + #:use-module (guix build-system gnu) + #:use-module (guix git-download)) + +(define-public imgui + (package + (name "imgui") + (version "1.86") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ocornut/imgui") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "02a7b05zrka20jhzag2jb4jl624i1m456bsv69jb9zgys2p9dv1n")) + (modules '((guix build utils))) + (snippet + '(begin + ;; Contains fonts and other unneeded files. + (delete-file-recursively "misc"))))) + (outputs '("out" "doc")) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ;no test suite + #:modules ((guix build gnu-build-system) + (guix build utils) + (ice-9 ftw) + (srfi srfi-26)) + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'adjust-includes + (lambda _ + (substitute* (find-files "." "(\\.cpp|\\.mm)$") + (("#include )) + (imgui-headers (scandir "." header?)) + (backend-headers (find-files + "backends" + "(glfw|opengl|sdl|vulkan).*\\.h$"))) + (install-file "libimgui.so" (string-append out "/lib")) + ;; Install headers. + (for-each (lambda (f) + (install-file f (string-append out "/include/imgui"))) + imgui-headers) + (for-each (lambda (f) + (install-file f (string-append + out "/include/imgui/backends"))) + backend-headers) + ;; Install examples. + (copy-recursively + "examples" (string-append + doc "/share/imgui/examples")))))))) + (inputs (list glfw mesa sdl2)) + (home-page "https://github.com/ocornut/imgui") + (synopsis "Graphical user interface library for C++") + (description "@code{dear imgui} (also know as ImGui) is a graphical user +interface library for C++. It outputs vertex buffers that can be rendered in +a 3D application. It is fast, renderer agnostic and self-contained.") + (license license:expat))) -- cgit v1.3 From 3282d6c24fb492a783690a9594779d2b611c0da3 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 27 Nov 2018 22:07:17 -0500 Subject: gnu: Add glad. * gnu/packages/gl.scm (glad): New variable. --- gnu/packages/gl.scm | 35 ++++++++++++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm index b71bc2d490..0ff39dc24d 100644 --- a/gnu/packages/gl.scm +++ b/gnu/packages/gl.scm @@ -12,7 +12,7 @@ ;;; Copyright © 2019 Pierre Neidhardt ;;; Copyright © 2020 Marius Bakke ;;; Copyright © 2020 Giacomo Leidi -;;; Copyright © 2020, 2021 Maxim Cournoyer +;;; Copyright © 2020, 2021, 2022 Maxim Cournoyer ;;; Copyright © 2020 Kei Kebreau ;;; Copyright © 2021 Ivan Gankevich ;;; Copyright © 2021 John Kehayias @@ -63,6 +63,7 @@ #:use-module (guix build-system gnu) #:use-module (guix build-system cmake) #:use-module (guix build-system meson) + #:use-module (guix build-system python) #:use-module (guix build-system waf) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) @@ -181,6 +182,38 @@ rendering modes are: Bitmaps, Anti-aliased pixmaps, Texture maps, Outlines, Polygon meshes, and Extruded polygon meshes.") (license license:x11))) +(define-public glad + (package + (name "glad") + (version "0.1.36") + (source + (origin + ;; We fetch the sources from the repository since the PyPI archive + ;; doesn't contain the CMakeLists.txt file which is useful for + ;; integration with other software, such as the openboardview package. + (method git-fetch) + (uri (git-reference + (url "https://github.com/Dav1dde/glad") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0m55ya1zrmg6n2cljkajy80ilmi5sblln8742fm0k1sw9k7hzn8n")))) + (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'install 'install-cmakelists.txt + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (share (string-append out "/share/" ,name))) + (install-file "CMakeLists.txt" share))))))) + (home-page "https://github.com/Dav1dde/glad") + (synopsis "Multi-language GL/GLES/EGL/GLX/WGL loader generator") + (description "Glad uses the official Khronos XML specifications to +generate a GL/GLES/EGL/GLX/WGL loader tailored for specific requirements.") + (license license:expat))) + (define-public s2tc (package (name "s2tc") -- cgit v1.3 From 93c974d113da89e62127a41792a0af60b6f13d17 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 27 Nov 2018 23:57:41 -0500 Subject: gnu: Add utf8-h. * gnu/packages/c.scm (utf8-h): New variable. --- gnu/packages/c.scm | 41 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) diff --git a/gnu/packages/c.scm b/gnu/packages/c.scm index 459d996fa2..e53a7c865f 100644 --- a/gnu/packages/c.scm +++ b/gnu/packages/c.scm @@ -9,7 +9,7 @@ ;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen ;;; Copyright © 2020, 2021 Marius Bakke ;;; Copyright © 2020 Katherine Cox-Buday -;;; Copyright © 2020 Maxim Cournoyer +;;; Copyright © 2020, 2022 Maxim Cournoyer ;;; Copyright © 2020, 2021 Greg Hogan ;;; Copyright © 2021 David Dashyan ;;; @@ -895,3 +895,42 @@ Service (S3) protocol for object storage.") Telemetry Transport (MQTT) publish-subscribe messaging protocol.") (home-page "https://github.com/awslabs/aws-c-mqtt") (license license:asl2.0))) + +(define-public utf8-h + ;; The latest tag is used as there is no release. + (let ((commit "500d4ea9f4c3449e5243c088d8af8700f7189734") + (revision "0")) + (package + (name "utf8-h") + (version (git-version "0.0.0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sheredom/utf8.h") + (commit commit))) + (file-name (git-file-name "utf8.h" version)) + (sha256 + (base32 + "0x9f7ivww8c7cigf4ck0hfx2bm79qgx6q4ccwzqbzkrmcrl9shfb")))) + (build-system cmake-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (delete 'build) + (delete 'configure) + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (with-directory-excursion "test" + (invoke "cmake" ".") + (invoke "make"))))) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out"))) + (install-file "utf8.h" (string-append out "/include")))))))) + (home-page "https://github.com/sheredom/utf8.h") + (synopsis "Single header UTF-8 string functions for C and C++") + (description "A simple one header solution to supporting UTF-8 strings in +C and C++. The functions it provides are like those from the C header +string.h, but with a utf8* prefix instead of the str* prefix.") + (license license:unlicense)))) -- cgit v1.3 From 32ccbc3a1ebf62d90f618ababb206df57f7e767b Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Fri, 28 Jan 2022 22:27:06 -0500 Subject: gnu: Add openboardview. * gnu/packages/electronics.scm (openboardview): New variable. * gnu/packages/patches/openboardview-use-system-utf8.patch: New file. * gnu/local.mk (dist_patch_DATA): Register it. --- gnu/local.mk | 1 + gnu/packages/electronics.scm | 124 ++++++++++++++++++++- .../patches/openboardview-use-system-utf8.patch | 48 ++++++++ 3 files changed, 170 insertions(+), 3 deletions(-) create mode 100644 gnu/packages/patches/openboardview-use-system-utf8.patch diff --git a/gnu/local.mk b/gnu/local.mk index 360d3fc47f..198c8f64a6 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1582,6 +1582,7 @@ dist_patch_DATA = \ %D%/packages/patches/onnx-shared-libraries.patch \ %D%/packages/patches/onnx-skip-model-downloads.patch \ %D%/packages/patches/openbabel-fix-crash-on-nwchem-output.patch \ + %D%/packages/patches/openboardview-use-system-utf8.patch \ %D%/packages/patches/opencascade-oce-glibc-2.26.patch \ %D%/packages/patches/openfoam-4.1-cleanup.patch \ %D%/packages/patches/openjdk-10-idlj-reproducibility.patch \ diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm index 54f246faa6..24bb4b03b1 100644 --- a/gnu/packages/electronics.scm +++ b/gnu/packages/electronics.scm @@ -4,6 +4,7 @@ ;;; Copyright © 2019 Clément Lassieur ;;; Copyright © 2021 Efraim Flashner ;;; Copyright © 2021 Leo Famulari +;;; Copyright © 2022 Maxim Cournoyer ;;; ;;; This file is part of GNU Guix. ;;; @@ -21,11 +22,12 @@ ;;; along with GNU Guix. If not, see . (define-module (gnu packages electronics) - #:use-module (guix utils) - #:use-module (guix packages) #:use-module (guix download) + #:use-module (guix gexp) #:use-module (guix git-download) #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix packages) + #:use-module (guix utils) #:use-module (guix build-system gnu) #:use-module (guix build-system cmake) #:use-module (gnu packages) @@ -34,11 +36,14 @@ #:use-module (gnu packages base) #:use-module (gnu packages bash) #:use-module (gnu packages boost) + #:use-module (gnu packages c) #:use-module (gnu packages check) #:use-module (gnu packages compression) #:use-module (gnu packages documentation) #:use-module (gnu packages embedded) + #:use-module (gnu packages fontutils) #:use-module (gnu packages gawk) + #:use-module (gnu packages gl) #:use-module (gnu packages glib) #:use-module (gnu packages graphviz) #:use-module (gnu packages gtk) @@ -48,7 +53,10 @@ #:use-module (gnu packages m4) #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) - #:use-module (gnu packages qt)) + #:use-module (gnu packages qt) + #:use-module (gnu packages sdl) + #:use-module (gnu packages sqlite) + #:use-module (gnu packages stb)) (define-public libserialport (package @@ -240,6 +248,116 @@ supported devices, as well as input/output file format support.") (description "Sigrok-cli is a command-line frontend for sigrok.") (license license:gpl3+))) +(define-public openboardview + (package + (name "openboardview") + (version "8.95.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/OpenBoardView/OpenBoardView") + (commit version) + (recursive? #t))) ;for the "src/imgui" submodule + (file-name (git-file-name name version)) + (modules '((ice-9 ftw) + (srfi srfi-26) + (guix build utils))) + (snippet + '(with-directory-excursion "src" + ;; Keep the bundled ImGui for now, as in the current version + ;; (~1.79), it requires the glad loader generated at build + ;; time as an input. + (define keep (list "." ".." "imgui" "openboardview")) + (for-each (lambda (f) + (when (eq? 'directory (stat:type (lstat f))) + (delete-file-recursively f))) + (scandir "." (negate (cut member <> keep)))))) + (patches + (search-patches "openboardview-use-system-utf8.patch")) + (sha256 + (base32 + "16mrs7bimwp8a8lb2wqhfisy6j0hl9574l4h9yb66v46aglvmd3h")))) + (build-system cmake-build-system) + (arguments + (list + #:tests? #f ;no test suite + #:imported-modules `((guix build glib-or-gtk-build-system) + ,@%cmake-build-system-modules) + #:modules '((guix build cmake-build-system) + (guix build utils) + ((guix build glib-or-gtk-build-system) #:prefix gtk:)) + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'remove-timestamps + (lambda _ + ;; The __TIMESTAMP__ CPP macro does apparently not honor + ;; SOURCE_EPOCH_DATE. Patch it to use __DATE__ instead, which + ;; does (see: + ;; https://github.com/OpenBoardView/OpenBoardView/issues/229 and + ;; https://issues.guix.gnu.org/53647). + (substitute* '("src/openboardview/BoardView.cpp" + "src/openboardview/main_opengl.cpp") + (("__TIMESTAMP__") + "__DATE__")))) + (add-before 'configure 'configure-glad + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "src/CMakeLists.txt" + (("add_subdirectory\\(glad\\)") + (string-append + ;; Configure Glad to use static Khronos XML specifications + ;; instead of attempting to fetch them from the Internet. + "option(GLAD_REPRODUCIBLE \"Reproducible build\" ON)\n" + ;; Use the CMake files from our glad package. + "add_subdirectory(" + (search-input-directory inputs "share/glad") ;source_dir + " src/glad)\n"))))) ;binary dir + (add-before 'configure 'fix-utf8-include-directive + ;; Our utf8-h package makes the header available as "utf8.h" + ;; directly rather than "utf8/utf8.h". + (lambda _ + (substitute* '("src/openboardview/FileFormats/BRDFile.cpp" + "src/openboardview/BoardView.cpp") + (("utf8/utf8.h") "utf8.h")))) + (add-before 'configure 'dynamically-load-gtk-via-absolute-path + ;; The GTK library is not linked thus not present in the RUNPATH of + ;; the produced binary; the absolute path of the libraries must to + ;; the dynamic loader otherwise they aren't found. + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "src/openboardview/unix.cpp" + (("libgtk-3.so") + (search-input-file inputs "lib/libgtk-3.so"))))) + ;; Add the two extra phases from `glib-or-gtk-build-system'. + (add-after 'install 'glib-or-gtk-compile-schemas + (assoc-ref gtk:%standard-phases 'glib-or-gtk-compile-schemas)) + (add-after 'install 'glib-or-gtk-wrap + (assoc-ref gtk:%standard-phases 'glib-or-gtk-wrap))))) + (native-inputs + (list pkg-config + python + glad + stb-image + utf8-h)) + (inputs + (list fontconfig + gtk+ + sdl2 + sqlite + zlib)) + (home-page "https://openboardview.org/") + (synopsis "Viewer for BoardView files") + (description "OpenBoardView is a viewer for BoardView files, which present +the details of a printed circuit board (PCB). It comes with features +such as: +@itemize +@item Dynamic part outline rendering, including complex connectors +@item Annotations, for leaving notes about parts, nets, pins or location +@item Configurable colour themes +@item Configurable DPI to facilitate usage on 4K monitors +@item Configurable for running on slower systems +@item Reads FZ (with key), BRD, BRD2, BDV and BV* formats. +@end itemize") + (license license:expat))) + (define-public pulseview (package (name "pulseview") diff --git a/gnu/packages/patches/openboardview-use-system-utf8.patch b/gnu/packages/patches/openboardview-use-system-utf8.patch new file mode 100644 index 0000000000..25b5952bda --- /dev/null +++ b/gnu/packages/patches/openboardview-use-system-utf8.patch @@ -0,0 +1,48 @@ +From 251e23422f37c93a3f460fb660c5e5bfa8200d91 Mon Sep 17 00:00:00 2001 +From: Maxim Cournoyer +Date: Sun, 2 Dec 2018 16:40:39 -0500 +Subject: [PATCH] build system: Allow using utf8.h from the system. + +--- + src/CMakeLists.txt | 12 ++++++++---- + src/openboardview/CMakeLists.txt | 1 + + 2 files changed, 9 insertions(+), 4 deletions(-) + +diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt +index 90442ed..26d4a69 100644 +--- a/src/CMakeLists.txt ++++ b/src/CMakeLists.txt +@@ -8,10 +8,14 @@ if(NOT WIN32 OR MINGW) + endif() + + ## utf8.h ## +-execute_process( +- COMMAND git submodule update --init src/utf8 +- WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} +-) ++FIND_PATH(UTF8_INCLUDE_DIR utf8.h) ++if(NOT UTF8_INCLUDE_DIR) ++ execute_process( ++ COMMAND git submodule update --init src/utf8 ++ WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} ++ ) ++ set(UTF8_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/utf8) ++endif() + + ## zlib ## + find_package(ZLIB) +diff --git a/src/openboardview/CMakeLists.txt b/src/openboardview/CMakeLists.txt +index b0bdbe3..6c4564c 100644 +--- a/src/openboardview/CMakeLists.txt ++++ b/src/openboardview/CMakeLists.txt +@@ -44,6 +44,7 @@ include_directories( + ${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_CURRENT_SOURCE_DIR}/.. + ${IMGUI_INCLUDE_DIRS} ++ ${UTF8_INCLUDE_DIR} + ${GLAD_INCLUDE_DIRS} + ${GTK_INCLUDE_DIRS} + ${OPENGL_INCLUDE_DIR} +-- +2.34.0 + -- cgit v1.3 From 15168f2432302cec8e5eba7dc170bee1fa9fd9ea Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Tue, 8 Feb 2022 09:19:55 +0100 Subject: gnu: python-importmagic: Fix test failure. * gnu/packages/python-xyz.scm (python-importmagic)[arguments]: Replace check phase. [native-inputs]: Add PYTHON-PYTEST. --- gnu/packages/python-xyz.scm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 537a2eef35..41b60325d2 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -8243,6 +8243,15 @@ need to use the older and less efficient @code{pkg_resources} package.") (base32 "1n7qxa1snj06aw45mcfz7bxc46zp7fxj687140g2k6jcnyjmfxrz")))) (build-system python-build-system) + (arguments + (list #:phases + #~(modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "pytest" "-v"))))))) + (native-inputs + (list python-pytest)) (home-page "https://github.com/alecthomas/importmagic") (synopsis "Library for adding, removing and managing Python imports") (description -- cgit v1.3 From 3926379a59eeda4225a02d957bc4ab010d1ed399 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Wed, 9 Feb 2022 16:38:39 +0100 Subject: gnu: juCi++: Update to 1.7.1. * gnu/packages/text-editors.scm (jucipp): Update to 1.7.1. [arguments]: Remove "in-source" build adjustments. Disable offending test instead. Remove trailing #t's. --- gnu/packages/text-editors.scm | 38 ++++++++++++++------------------------ 1 file changed, 14 insertions(+), 24 deletions(-) diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm index 2c5f5de719..ba3f1f56cc 100644 --- a/gnu/packages/text-editors.scm +++ b/gnu/packages/text-editors.scm @@ -9,7 +9,7 @@ ;;; Copyright © 2019 Efraim Flashner ;;; Copyright © 2019 Andreas Enge ;;; Copyright © 2019, 2020, 2021 Nicolas Goaziou -;;; Copyright © 2020, 2021 Marius Bakke +;;; Copyright © 2020-2022 Marius Bakke ;;; Copyright © 2020 Tom Zander ;;; Copyright © 2020 Mark Meyer ;;; Copyright © 2020 Maxime Devos @@ -308,7 +308,7 @@ bindings and many of the powerful features of GNU Emacs.") (define-public jucipp (package (name "jucipp") - (version "1.6.3") + (version "1.7.1") (home-page "https://gitlab.com/cppit/jucipp") (source (origin (method git-fetch) @@ -320,36 +320,28 @@ bindings and many of the powerful features of GNU Emacs.") (recursive? #t))) (file-name (git-file-name name version)) (sha256 - (base32 "1gy2xb5rm7q4zx9rl23h96b1i46fz27v25nklj50fvqp8ax2gxqy")))) + (base32 "0xyf1fa7jvxzvg1dxh5vc50fbwjjsar4fmlvbfhicdd1f8bhz1ii")))) (build-system cmake-build-system) (arguments - `(#:configure-flags '("-DBUILD_TESTING=ON" - - ;; These arguments are here to facilitate an "in-source" - ;; build using "./build" instead of the default "../build". - ;; The test suite expects that to be the case. - "..") - #:out-of-source? #f + `(#:configure-flags '("-DBUILD_TESTING=ON") #:phases (modify-phases %standard-phases - (add-before 'configure 'enter-build-directory - (lambda _ - (mkdir "build") - (chdir "build") - #t)) - (add-after 'unpack 'patch-tiny-process-library (lambda _ (with-directory-excursion "lib/tiny-process-library" (substitute* '("process_unix.cpp" "tests/io_test.cpp") - (("/bin/sh") (which "sh")))) - #t)) + (("/bin/sh") (which "sh")))))) (add-after 'unpack 'disable-git-test (lambda _ (substitute* "tests/CMakeLists.txt" + ;; Disable the CMake build test, as it does not test + ;; functionality of the package, and requires doing + ;; an "in-source" build. + (("add_test\\(cmake_build_test.*\\)") + "") ;; Disable the git test, as it requires the full checkout. - (("add_test\\(git_test.*\\)") "")) - #t)) + (("add_test\\(git_test.*\\)") + "")))) (add-before 'check 'pre-check (lambda* (#:key inputs #:allow-other-keys) ;; Tests do not expect HOME to be empty. @@ -360,8 +352,7 @@ bindings and many of the powerful features of GNU Emacs.") (display ":1")) (setenv "DISPLAY" display) (system (string-append xorg-server "/bin/Xvfb " - display " &"))) - #t)) + display " &"))))) (add-after 'install 'wrap (lambda* (#:key inputs outputs #:allow-other-keys) ;; The package needs GTK+ and GtkSourceView on XDG_DATA_DIRS @@ -379,8 +370,7 @@ bindings and many of the powerful features of GNU Emacs.") (map (lambda (pkg) (string-append pkg "/share")) (list out gtk+ gtksourceview shared-mime-info)) - ":")))) - #t)))))) + ":")))))))))) (native-inputs (list pkg-config xorg-server-for-tests)) (inputs -- cgit v1.3 From d5b060ac4fe715e2279857f9b4858e7aec6979e8 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Wed, 9 Feb 2022 16:48:02 +0100 Subject: gnu: juCi++: Remove input labels. * gnu/packages/text-editors.scm (jucipp)[arguments]: Use SEARCH-INPUT-DIRECTORY & co as appropriate. [inputs]: Remove labels. --- gnu/packages/text-editors.scm | 38 ++++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 18 deletions(-) diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm index ba3f1f56cc..ed655b2e62 100644 --- a/gnu/packages/text-editors.scm +++ b/gnu/packages/text-editors.scm @@ -326,11 +326,12 @@ bindings and many of the powerful features of GNU Emacs.") `(#:configure-flags '("-DBUILD_TESTING=ON") #:phases (modify-phases %standard-phases (add-after 'unpack 'patch-tiny-process-library - (lambda _ + (lambda* (#:key native-inputs inputs #:allow-other-keys) (with-directory-excursion "lib/tiny-process-library" (substitute* '("process_unix.cpp" "tests/io_test.cpp") - (("/bin/sh") (which "sh")))))) + (("/bin/sh") (search-input-file (or native-inputs inputs) + "bin/sh")))))) (add-after 'unpack 'disable-git-test (lambda _ (substitute* "tests/CMakeLists.txt" @@ -348,11 +349,10 @@ bindings and many of the powerful features of GNU Emacs.") (setenv "HOME" "/etc") ;; Most tests require an X server. - (let ((xorg-server (assoc-ref inputs "xorg-server")) + (let ((xvfb (search-input-file inputs "bin/Xvfb")) (display ":1")) (setenv "DISPLAY" display) - (system (string-append xorg-server "/bin/Xvfb " - display " &"))))) + (system (string-append xvfb " " display " &"))))) (add-after 'install 'wrap (lambda* (#:key inputs outputs #:allow-other-keys) ;; The package needs GTK+ and GtkSourceView on XDG_DATA_DIRS @@ -361,26 +361,28 @@ bindings and many of the powerful features of GNU Emacs.") ;; XXX: Ideally we'd reuse glib-or-gtk-wrap here, but it ;; does not pick up $gtksourceview/share/gtksourceview-3.0. (let ((out (assoc-ref outputs "out")) - (gtk+ (assoc-ref inputs "gtk+")) - (gtksourceview (assoc-ref inputs "gtksourceview")) - (shared-mime-info (assoc-ref inputs "shared-mime-info"))) + (gtk+ (dirname (search-input-file inputs + "share/gtk-3.0"))) + (gtksourceview (dirname (search-input-directory + inputs + "share/gtksourceview-3.0"))) + (shared-mime-info (dirname (search-input-directory + inputs "share/mime")))) (wrap-program (string-append out "/bin/juci") `("XDG_DATA_DIRS" ":" prefix (,(string-join - (map (lambda (pkg) - (string-append pkg "/share")) - (list out gtk+ gtksourceview shared-mime-info)) + (list out gtk+ gtksourceview shared-mime-info) ":")))))))))) (native-inputs (list pkg-config xorg-server-for-tests)) (inputs - `(("aspell" ,aspell) - ("boost" ,boost) - ("ctags" ,universal-ctags) - ("gtkmm" ,gtkmm-3) - ("gtksourceviewmm" ,gtksourceviewmm) - ("libclang" ,clang-11) ;XXX: must be the same version as Mesas LLVM - ("libgit2" ,libgit2))) + (list aspell + boost + clang-11 ;XXX: must be the same version as Mesas LLVM + gtkmm-3 + gtksourceviewmm + libgit2 + universal-ctags)) (synopsis "Lightweight C++ IDE") (description "juCi++ is a small @acronym{IDE, Integrated Development Environment} -- cgit v1.3 From b3870e67b57028a20de2683559ed221d24b9ba01 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Wed, 9 Feb 2022 17:00:55 +0100 Subject: gnu: juCi++: Use G-expressions. * gnu/packages/text-editors.scm (jucipp)[arguments]: Rewrite as G-expressions. Simplify wrap phase while at it. --- gnu/packages/text-editors.scm | 98 +++++++++++++++++++++---------------------- 1 file changed, 49 insertions(+), 49 deletions(-) diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm index ed655b2e62..b8f9ae0326 100644 --- a/gnu/packages/text-editors.scm +++ b/gnu/packages/text-editors.scm @@ -323,56 +323,56 @@ bindings and many of the powerful features of GNU Emacs.") (base32 "0xyf1fa7jvxzvg1dxh5vc50fbwjjsar4fmlvbfhicdd1f8bhz1ii")))) (build-system cmake-build-system) (arguments - `(#:configure-flags '("-DBUILD_TESTING=ON") - #:phases (modify-phases %standard-phases - (add-after 'unpack 'patch-tiny-process-library - (lambda* (#:key native-inputs inputs #:allow-other-keys) - (with-directory-excursion "lib/tiny-process-library" - (substitute* '("process_unix.cpp" - "tests/io_test.cpp") - (("/bin/sh") (search-input-file (or native-inputs inputs) - "bin/sh")))))) - (add-after 'unpack 'disable-git-test - (lambda _ - (substitute* "tests/CMakeLists.txt" - ;; Disable the CMake build test, as it does not test - ;; functionality of the package, and requires doing - ;; an "in-source" build. - (("add_test\\(cmake_build_test.*\\)") - "") - ;; Disable the git test, as it requires the full checkout. - (("add_test\\(git_test.*\\)") - "")))) - (add-before 'check 'pre-check - (lambda* (#:key inputs #:allow-other-keys) - ;; Tests do not expect HOME to be empty. - (setenv "HOME" "/etc") + (list #:configure-flags #~(list "-DBUILD_TESTING=ON") + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'patch-tiny-process-library + (lambda* (#:key native-inputs inputs #:allow-other-keys) + (with-directory-excursion "lib/tiny-process-library" + (substitute* '("process_unix.cpp" + "tests/io_test.cpp") + (("/bin/sh") (search-input-file (or native-inputs inputs) + "bin/sh")))))) + (add-after 'unpack 'disable-some-tests + (lambda _ + (substitute* "tests/CMakeLists.txt" + ;; Disable the CMake build test, as it does not test + ;; functionality of the package, and requires doing + ;; an "in-source" build. + (("add_test\\(cmake_build_test.*\\)") + "") + ;; Disable the git test, as it requires the full checkout. + (("add_test\\(git_test.*\\)") + "")))) + (add-before 'check 'pre-check + (lambda* (#:key native-inputs inputs #:allow-other-keys) + ;; Tests do not expect HOME to be empty. + (setenv "HOME" "/etc") - ;; Most tests require an X server. - (let ((xvfb (search-input-file inputs "bin/Xvfb")) - (display ":1")) - (setenv "DISPLAY" display) - (system (string-append xvfb " " display " &"))))) - (add-after 'install 'wrap - (lambda* (#:key inputs outputs #:allow-other-keys) - ;; The package needs GTK+ and GtkSourceView on XDG_DATA_DIRS - ;; for syntax highlighting to work. shared-mime-info is - ;; necessary for MIME handling. - ;; XXX: Ideally we'd reuse glib-or-gtk-wrap here, but it - ;; does not pick up $gtksourceview/share/gtksourceview-3.0. - (let ((out (assoc-ref outputs "out")) - (gtk+ (dirname (search-input-file inputs - "share/gtk-3.0"))) - (gtksourceview (dirname (search-input-directory - inputs - "share/gtksourceview-3.0"))) - (shared-mime-info (dirname (search-input-directory - inputs "share/mime")))) - (wrap-program (string-append out "/bin/juci") - `("XDG_DATA_DIRS" ":" prefix - (,(string-join - (list out gtk+ gtksourceview shared-mime-info) - ":")))))))))) + ;; Most tests require an X server. + (let ((xvfb (search-input-file (or native-inputs inputs) + "bin/Xvfb")) + (display ":1")) + (setenv "DISPLAY" display) + (system (string-append xvfb " " display " &"))))) + (add-after 'install 'wrap + (lambda* (#:key inputs #:allow-other-keys) + ;; The package needs GTK+ and GtkSourceView on XDG_DATA_DIRS + ;; for syntax highlighting to work. shared-mime-info is + ;; necessary for MIME handling. + ;; XXX: Ideally we'd reuse glib-or-gtk-wrap here, but it + ;; does not pick up "share/gtksourceview-3.0". + (wrap-program (string-append #$output "/bin/juci") + `("XDG_DATA_DIRS" ":" prefix + (,(string-join + (cons (string-append #$output "/share") + (map (lambda (directory) + (dirname (search-input-directory + inputs + (string-append "share/" + directory)))) + '("gtk-3.0" "gtksourceview-3.0" "mime"))) + ":"))))))))) (native-inputs (list pkg-config xorg-server-for-tests)) (inputs -- cgit v1.3 From a87ec50b394cffebb6f19b3689fc12c71f974d40 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Wed, 9 Feb 2022 17:09:11 +0100 Subject: gnu: juCi++: Unbundle embedded copy of "nlohmann" JSON library. * gnu/packages/text-editors.scm (jucipp)[source](modules, snippet): New fields. [inputs]: Add JSON-MODERN-CXX. --- gnu/packages/text-editors.scm | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm index b8f9ae0326..0ae1ca4588 100644 --- a/gnu/packages/text-editors.scm +++ b/gnu/packages/text-editors.scm @@ -52,6 +52,7 @@ #:use-module (gnu packages base) #:use-module (gnu packages boost) #:use-module (gnu packages code) + #:use-module (gnu packages cpp) #:use-module (gnu packages crates-io) #:use-module (gnu packages documentation) #:use-module (gnu packages fontutils) @@ -320,7 +321,12 @@ bindings and many of the powerful features of GNU Emacs.") (recursive? #t))) (file-name (git-file-name name version)) (sha256 - (base32 "0xyf1fa7jvxzvg1dxh5vc50fbwjjsar4fmlvbfhicdd1f8bhz1ii")))) + (base32 "0xyf1fa7jvxzvg1dxh5vc50fbwjjsar4fmlvbfhicdd1f8bhz1ii")) + (modules '((guix build utils))) + (snippet + '(begin + ;; Delete bundled copy of nlohmann/json. + (delete-file-recursively "lib/json"))))) (build-system cmake-build-system) (arguments (list #:configure-flags #~(list "-DBUILD_TESTING=ON") @@ -381,6 +387,7 @@ bindings and many of the powerful features of GNU Emacs.") clang-11 ;XXX: must be the same version as Mesas LLVM gtkmm-3 gtksourceviewmm + json-modern-cxx libgit2 universal-ctags)) (synopsis "Lightweight C++ IDE") -- cgit v1.3 From 6ff0a6d53a4f5c3faa4a4b6503dab47ea2cc2426 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Wed, 9 Feb 2022 22:28:12 +0100 Subject: gnu: cpplint: Update to 1.5.5. * gnu/packages/cpp.scm (cpplint): Update to 1.5.5. [arguments]: Remove obsolete phase. Override check phase. [native-inputs]: Add PYTHON-COVERAGE and PYTHON-TESTFIXTURES. --- gnu/packages/cpp.scm | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index a77ac84f17..09ba10d9ab 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -74,6 +74,7 @@ #:use-module (gnu packages onc-rpc) #:use-module (gnu packages perl) #:use-module (gnu packages python) + #:use-module (gnu packages python-check) #:use-module (gnu packages pkg-config) #:use-module (gnu packages popt) #:use-module (gnu packages pretty-print) @@ -766,7 +767,7 @@ library.") (define-public cpplint (package (name "cpplint") - (version "1.4.5") + (version "1.5.5") (source (origin (method git-fetch) @@ -776,19 +777,22 @@ library.") (url "https://github.com/cpplint/cpplint") (commit version))) (sha256 - (base32 "1yzcxqx0186sh80p0ydl9z0ld51fn2cdpz9hmhrp15j53g9ira7c")) + (base32 "13l86aq0h1jga949k79k9x3hw2xqchjc162sclg2f99vz98zcz15")) (file-name (git-file-name name version)))) (arguments - `(#:phases - (modify-phases %standard-phases - (add-before 'check 'use-later-pytest - (lambda _ - (substitute* "test-requirements" - (("pytest.*") "pytest\n")) - #t))))) + (list #:phases + #~(modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "pytest" "-vv"))))))) (build-system python-build-system) (native-inputs - (list python-pytest python-pytest-cov python-pytest-runner)) + (list python-coverage + python-pytest + python-pytest-cov + python-pytest-runner + python-testfixtures)) (home-page "https://github.com/cpplint/cpplint") (synopsis "Static code checker for C++") (description "@code{cpplint} is a command-line tool to check C/C++ files -- cgit v1.3 From f97fe92b570b01ed1b03abd4f3ec89bf20ebc9db Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Wed, 9 Feb 2022 23:38:10 +0100 Subject: gnu: cpplint: Reduce closure size. * gnu/packages/cpp.scm (cpplint)[arguments]: Add #:modules. Add phases to adjust GUIX_PYTHONPATH before the wrap phase. --- gnu/packages/cpp.scm | 31 +++++++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 09ba10d9ab..86138531c0 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -780,8 +780,35 @@ library.") (base32 "13l86aq0h1jga949k79k9x3hw2xqchjc162sclg2f99vz98zcz15")) (file-name (git-file-name name version)))) (arguments - (list #:phases - #~(modify-phases %standard-phases + (list #:modules `((srfi srfi-1) + (srfi srfi-26) + ,@%python-build-system-modules) + #:phases + #~(modify-phases (@ (guix build python-build-system) %standard-phases) + (add-before 'wrap 'reduce-GUIX_PYTHONPATH + (lambda _ + ;; Hide the transitive native inputs from GUIX_PYTHONPATH + ;; to prevent them from ending up in the run-time closure. + ;; See also . + (let ((transitive-native-inputs + '#$(match (package-transitive-native-inputs + this-package) + (((labels packages) ...) packages)))) + ;; Save the original PYTHONPATH because we need it for + ;; tests later. + (setenv "TMP_PYTHONPATH" (getenv "GUIX_PYTHONPATH")) + (setenv "GUIX_PYTHONPATH" + (string-join + (filter (lambda (path) + (not (any (cut string-prefix? <> path) + transitive-native-inputs))) + (search-path-as-string->list + (getenv "GUIX_PYTHONPATH"))) + ":"))))) + (add-after 'wrap 'reset-GUIX_PYTHONPATH + (lambda _ + (setenv "GUIX_PYTHONPATH" + (getenv "TMP_PYTHONPATH")))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? -- cgit v1.3 From 9aa69b37c07b45c04f4bd3619936413ad24f40c2 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Thu, 10 Feb 2022 15:52:21 +0100 Subject: gnu: ocaml-ppxlib: Update to 0.24.0. * gnu/packages/ocaml.scm (ocaml-ppxlib): Update to 0.24.0. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index d0cfafbab4..d65e6a26c4 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -5227,7 +5227,7 @@ as part of the same ocaml-migrate-parsetree driver.") (define-public ocaml-ppxlib (package (name "ocaml-ppxlib") - (version "0.23.0") + (version "0.24.0") (home-page "https://github.com/ocaml-ppx/ppxlib") (source (origin @@ -5238,7 +5238,7 @@ as part of the same ocaml-migrate-parsetree driver.") (file-name (git-file-name name version)) (sha256 (base32 - "0jg5v4pssbl66hn5davpin1i57a0r3r54l96vpz5y99xk5w70xi1")))) + "1nkkdvqifa36hxj6msd74ld4dfd749d6d9ygfj7zsm328rqvpqf2")))) (build-system dune-build-system) (propagated-inputs (list ocaml-base -- cgit v1.3 From 060e6e711cbe40b43ece5442a4200e966ac29041 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Thu, 10 Feb 2022 16:00:21 +0100 Subject: gnu: ocaml-xmlm: Update to 1.4.0. * gnu/packages/ocaml.scm (ocaml-xmlm): Update to 1.4.0. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index d65e6a26c4..1482696836 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -2641,14 +2641,14 @@ run command line programs.") (define-public ocaml-xmlm (package (name "ocaml-xmlm") - (version "1.3.0") + (version "1.4.0") (source (origin (method url-fetch) (uri (string-append "http://erratique.ch/software/xmlm/releases/" "xmlm-" version ".tbz")) (sha256 (base32 - "1rrdxg5kh9zaqmgapy9bhdqyxbbvxxib3bdfg1vhw4rrkp1z0x8n")))) + "1ynrjba3wm3axscvggrfijfgsznmphhxnkffqch67l9xiqjm44h9")))) (build-system ocaml-build-system) (arguments `(#:tests? #f -- cgit v1.3 From 4dffeced6c6e1c4ce141a76ad1f2323f6541bace Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Thu, 10 Feb 2022 16:05:26 +0100 Subject: gnu: ocaml-odoc: Update to 2.1.0. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 1482696836..b34013cc31 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -6768,7 +6768,7 @@ then run the Bisect_ppx report tool on the generated visitation files.") (define-public ocaml-odoc (package (name "ocaml-odoc") - (version "2.0.2") + (version "2.1.0") (source (origin (method git-fetch) @@ -6777,7 +6777,7 @@ then run the Bisect_ppx report tool on the generated visitation files.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "06rm1bhfp2yvkvidksndwii9v074r0lc9sqfp60q8mfcfd7pj7rx")))) + (base32 "1ycb468pc6vsvqj176j99bmbkrr9saxvyn9qhpazi01abbcq5d90")))) (build-system dune-build-system) (arguments `(#:phases -- cgit v1.3 From ceaf56e19cd67c00617a01a313169e42d0538daa Mon Sep 17 00:00:00 2001 From: jgart Date: Tue, 8 Feb 2022 18:50:57 -0500 Subject: gnu: Add cl-asd-generator. * gnu/packages/lisp-xyz.scm (cl-asd-generator, ecl-asd-generator, sbcl-asd-generator): New variable. Signed-off-by: Guillaume Le Vaillant --- gnu/packages/lisp-xyz.scm | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 85ff7ed314..a161043f04 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -20315,6 +20315,42 @@ rendering of the XML Infoset.") (define-public ecl-lorem-ipsum (sbcl-package->ecl-package sbcl-lorem-ipsum)) +(define-public sbcl-asd-generator + (let ((commit "27f94971a7c68c4dcb51e3f6be4142743d0c44e8") + (revision "0")) + (package + (name "sbcl-asd-generator") + (version (git-version "1.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/phoe/asd-generator") + (commit commit))) + (sha256 + (base32 "0yiybl7b9x1f85v0drj0yw9821y3yfhya4n6gycnv5vvx6jp9by4")) + (file-name (git-file-name "cl-asd-generator" commit)))) + (build-system asdf-build-system/sbcl) + (arguments + `(#:asd-systems '("asd-generator") + #:asd-files '("asd-generator.asd"))) + (inputs + (list sbcl-cl-fad + sbcl-iterate + sbcl-alexandria + sbcl-trivia)) + (home-page "https://github.com/phoe/asd-generator") + (synopsis "Automatic generator for .asd files") + (description + "This package provides an automatic generator for ASDF's .asd files.") + (license license:gpl3+)))) + +(define-public cl-asd-generator + (sbcl-package->cl-source-package sbcl-asd-generator)) + +(define-public ecl-asd-generator + (sbcl-package->ecl-package sbcl-asd-generator)) + (define-public sbcl-cl-gopher (let ((commit "62cfd180378f56e7e8b57e4302b183810c86e337") (revision "2")) -- cgit v1.3 From 62c2991c9037bf039bedadfd69b2b1be8300b9d7 Mon Sep 17 00:00:00 2001 From: jgart Date: Tue, 8 Feb 2022 19:23:29 -0500 Subject: gnu: cl-numcl: Update to 0.2.0-3.a28f612. * gnu/packages/lisp-xyz.scm (sbcl-numcl): Update to 0.2.0-3.a28f612. Signed-off-by: Guillaume Le Vaillant --- gnu/packages/lisp-xyz.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index a161043f04..22685ce7a1 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -9642,8 +9642,8 @@ type correctness in Common Lisp. It is based on CLtL2 extensions.") ((#:tests? _ #f) #f)))))) (define-public sbcl-numcl - (let ((commit "3dcdb0e24a33943d6c3a188ecbb0c78003bf975c") - (revision "2")) + (let ((commit "a28f612d072e5f93137584de5155a42243b3bd6b") + (revision "3")) (package (name "sbcl-numcl") (version (git-version "0.2.0" revision commit)) @@ -9655,7 +9655,7 @@ type correctness in Common Lisp. It is based on CLtL2 extensions.") (commit commit))) (file-name (git-file-name "numcl" version)) (sha256 - (base32 "17m1rx1gfjbbmgjsf33b8s4bygfsj1hb6kvmypkql21qzjvx60nl")))) + (base32 "15m4spbgayawnw5jjz04zfp0jnk9g6hgq5fmr648hzjzj50j1d78")))) (build-system asdf-build-system/sbcl) (arguments `(#:test-asd-file "numcl.test.asd" -- cgit v1.3 From 096f05043e750fdf49a5b4c5fac402f48cdb9854 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Thu, 10 Feb 2022 17:54:56 +0100 Subject: gnu: flare-engine: Update to 1.13.04. * gnu/packages/games.scm (flare-engine): Update to 1.13.04. --- gnu/packages/games.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 26270a4aec..e4810678ac 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -8908,7 +8908,7 @@ fight each other on an arena-like map.") (define-public flare-engine (package (name "flare-engine") - (version "1.13") + (version "1.13.04") (source (origin (method git-fetch) (uri (git-reference @@ -8917,7 +8917,7 @@ fight each other on an arena-like map.") (file-name (git-file-name name version)) (sha256 (base32 - "1daqx12w1gk9cf393zw89fy42lx4arjycm417380gqi775vbmamc")))) + "042n2r9whnd3kncf3k89dcl1srn7p2jk6kdc0lb2hbwff55iylnw")))) (build-system cmake-build-system) (arguments (list -- cgit v1.3 From 0e103ec611acb25966bedc7ac9537b34f0a53306 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Thu, 10 Feb 2022 18:01:40 +0100 Subject: gnu: flare-game: Update to 1.13.04. * gnu/packages/games.scm (flare-game): Update to 1.13.04. --- gnu/packages/games.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index e4810678ac..896ee6ce62 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -8937,7 +8937,7 @@ action RPGs.") (define-public flare-game (package (name "flare-game") - (version "1.13") + (version "1.13.04") (source (origin (method git-fetch) (uri (git-reference @@ -8946,7 +8946,7 @@ action RPGs.") (file-name (git-file-name name version)) (sha256 (base32 - "0l0d4j2l1szdwrk8casaiskdk16wkbmms7cid4y751d42czg4ffw")))) + "18rdrwv7p5rvmlah5pl9vbc09xlb8id75a7c73yn2sxkm6cf5c2l")))) (build-system cmake-build-system) (arguments (list -- cgit v1.3 From 7c9b811de192facc984a68dd08f3361d380b1a23 Mon Sep 17 00:00:00 2001 From: Simon South Date: Wed, 9 Feb 2022 09:54:59 -0500 Subject: gnu: ell: Disable parallel tests. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/linux.scm (ell)[arguments]: Disable parallel tests. Co-authored-by: Ludovic Courtès --- gnu/packages/linux.scm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 6ba38624a0..bcbaa2166d 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -8358,6 +8358,10 @@ tools for managing PipeWire.") (base32 "0lxjizby3zdyhzad5a0gbz4m2pp44jf1j4l1pn18d04rw9mr2gqy")))) (build-system gnu-build-system) + (arguments + ;; Tests launch dbus-daemon instances that all try to bind to + ;; "/tmp/ell-test-bus". Thus, we need to run them sequentially. + '(#:parallel-tests? #f)) (inputs (list dbus)) (native-inputs -- cgit v1.3 From 11b586db59537e59cca7c6c2a416c2ab7c7ac3a5 Mon Sep 17 00:00:00 2001 From: Josselin Poiret Date: Thu, 10 Feb 2022 21:27:47 +0100 Subject: services: gdm-service-type: Require elogind. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/services/xorg.scm (gdm-shepherd-service): Make it require elogind. Signed-off-by: Ludovic Courtès --- gnu/services/xorg.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/services/xorg.scm b/gnu/services/xorg.scm index a5e1a1471d..d6dfb07425 100644 --- a/gnu/services/xorg.scm +++ b/gnu/services/xorg.scm @@ -975,7 +975,7 @@ the GNOME desktop environment.") (list (shepherd-service (documentation "Xorg display server (GDM)") (provision '(xorg-server)) - (requirement '(dbus-system user-processes host-name udev)) + (requirement '(dbus-system user-processes host-name udev elogind)) (start #~(lambda () (fork+exec-command (list #$(file-append (gdm-configuration-gdm config) -- cgit v1.3 From ed26d2ec6ce18851b49d17cf77dc71c79e760ed4 Mon Sep 17 00:00:00 2001 From: Greg Hogan Date: Fri, 4 Feb 2022 20:52:37 +0000 Subject: gnu: lldb: Update to 13.0.1. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/llvm.scm (lldb): Update to 13.0.1. [inputs]: Change from LLVM-12 and CLANG-12 to LLVM-13 and CLANG-13. Signed-off-by: Ludovic Courtès --- gnu/packages/llvm.scm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm index acd56c3d92..0b7800734c 100644 --- a/gnu/packages/llvm.scm +++ b/gnu/packages/llvm.scm @@ -22,6 +22,7 @@ ;;; Copyright © 2021 Lars-Dominik Braun ;;; Copyright © 2021 Guillaume Le Vaillant ;;; Copyright © 2021 Maxim Cournoyer +;;; Copyright © 2022 Greg Hogan ;;; ;;; This file is part of GNU Guix. ;;; @@ -1202,21 +1203,21 @@ misuse of libraries outside of the store.") (define-public lldb (package (name "lldb") - (version "12.0.1") + (version "13.0.1") (source (origin (method url-fetch) (uri (llvm-uri "lldb" version)) (sha256 (base32 - "0g3pj1m3chafavpr35r9fynm85y2hdyla6klj0h28khxs2613i78")))) + "05nvcbgb4rx860r3jzsbpvcbzpd0i7nsm5qrpkyfhg5vrh5mj32a")))) (build-system cmake-build-system) (arguments `(#:configure-flags '("-DCMAKE_CXX_COMPILER=clang++"))) (native-inputs (list pkg-config swig)) (inputs - (list clang-12 - llvm-12 + (list clang-13 + llvm-13 ;; Optional (but recommended) inputs. ncurses libedit -- cgit v1.3 From d76cfc92dacd139fa565878a9a8e610c552094ef Mon Sep 17 00:00:00 2001 From: Greg Hogan Date: Thu, 3 Feb 2022 20:47:35 +0000 Subject: gnu: LLVM: Support release candidates as version. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/llvm.scm (llvm-uri, clang-from-llvm): Support release candidates as version. Signed-off-by: Ludovic Courtès --- gnu/packages/llvm.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm index 0b7800734c..b6d52402a8 100644 --- a/gnu/packages/llvm.scm +++ b/gnu/packages/llvm.scm @@ -100,8 +100,10 @@ as \"x86_64-linux\"." ("i586" => "X86")))) (define (llvm-uri component version) + ;; LLVM release candidate file names are formatted 'tool-A.B.C-rcN/tool-A.B.CrcN.src.tar.xz' + ;; so we specify the version as A.B.C-rcN and delete the hyphen when referencing the file name. (string-append "https://github.com/llvm/llvm-project/releases/download" - "/llvmorg-" version "/" component "-" version ".src.tar.xz")) + "/llvmorg-" version "/" component "-" (string-delete #\- version) ".src.tar.xz")) (define %llvm-release-monitoring-url "https://github.com/llvm/llvm-project/releases") @@ -224,7 +226,7 @@ given PATCHES. When TOOLS-EXTRA is given, it must point to the (invoke "tar" "xf" extra) (rename-file ,(string-append "clang-tools-extra-" - (package-version llvm) + (string-delete #\- (package-version llvm)) ".src") "tools/extra") #t))) -- cgit v1.3 From 854e38eeb7b007b6027364696615ec5eaa619c52 Mon Sep 17 00:00:00 2001 From: Adam Maleszka Date: Mon, 7 Feb 2022 16:47:56 +0100 Subject: gnu: bitlbee-discord: Update to 0.4.3-1.607f988. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes . * gnu/packages/messaging.scm (bitlbee-discord): Update to 0.4.3-1.607f988. Signed-off-by: Ludovic Courtès --- gnu/packages/messaging.scm | 85 ++++++++++++++++++++++++++-------------------- 1 file changed, 48 insertions(+), 37 deletions(-) diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index ca8a216661..92f310928d 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -713,44 +713,55 @@ identi.ca and status.net).") #f))))) (define-public bitlbee-discord - (package - (name "bitlbee-discord") - (version "0.4.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sm00th/bitlbee-discord") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00qgdvrp7hv02n0ns685igp810zxmv3adsama8601122al6x041n")))) - (build-system gnu-build-system) - (arguments - `(#:configure-flags - (let ((out (assoc-ref %outputs "out"))) - (list (string-append "--with-bdatadir=" out "/share/bitlbee/") - (string-append "--with-plugindir=" out "/lib/bitlbee/"))) - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'patch-autogen - (lambda _ - (let ((sh (which "sh"))) - (substitute* "autogen.sh" (("/bin/sh") sh)) - (setenv "CONFIG_SHELL" sh))))))) - (inputs (list glib)) - (native-inputs (list pkg-config - autoconf - automake - texinfo - libtool - bitlbee ; needs bitlbee headers - bash)) - (synopsis "Discord plugin for Bitlbee") - (description "Bitlbee-discord is a plugin for Bitlbee which provides + ;; Version 0.4.3 of bitlbee-discord was prepared to work for + ;; glib@2.68. However, version 2.69 of glib introduced a breaking change + ;; causing bitlbee-discord to throw: + ;; + ;; discord - Login error: Failed to switch to websocket mode + ;; + ;; This makes the plugin unable to connect and therefore unusable: + ;; https://github.com/sm00th/bitlbee-discord/issues/226 + ;; The specified commit fixes incompatibility with glib@2.69 and newer. + (let ((commit "607f9887ca85f246e970778e3d40aa5c346365a7") + (revision "1")) + (package + (name "bitlbee-discord") + (version (git-version "0.4.3" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sm00th/bitlbee-discord") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jkwhx2walx2ay0vc9x13q0j1qq4r5x30ss03a3j7ks28xvsnxc7")))) + (build-system gnu-build-system) + (arguments + `(#:configure-flags + (let ((out (assoc-ref %outputs "out"))) + (list (string-append "--with-bdatadir=" out "/share/bitlbee/") + (string-append "--with-plugindir=" out "/lib/bitlbee/"))) + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'patch-autogen + (lambda _ + (let ((sh (which "sh"))) + (substitute* "autogen.sh" (("/bin/sh") sh)) + (setenv "CONFIG_SHELL" sh))))))) + (inputs (list glib)) + (native-inputs (list pkg-config + autoconf + automake + texinfo + libtool + bitlbee ; needs bitlbee headers + bash)) + (synopsis "Discord plugin for Bitlbee") + (description "Bitlbee-discord is a plugin for Bitlbee which provides access to servers running the Discord protocol.") - (home-page "https://github.com/sm00th/bitlbee-discord/") - (license license:gpl2+))) + (home-page "https://github.com/sm00th/bitlbee-discord/") + (license license:gpl2+)))) (define-public purple-mattermost ;; The latest release (1.2) only supports Mattermost's /api/v3. Choose a -- cgit v1.3 From b8994272d4df78b5f40172987e29dbad67c30e13 Mon Sep 17 00:00:00 2001 From: Eric Bavier Date: Thu, 10 Feb 2022 23:43:06 -0600 Subject: gnu: pioneer: Update to 20220203. * gnu/packages/games.scm (pioneer): Update to 20220203. [arguments]: Add cmake flag to ensure system GLEW is used. --- gnu/packages/games.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 896ee6ce62..9a669621dd 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2013 John Darrington ;;; Copyright © 2013 Nikita Karetnikov ;;; Copyright © 2014, 2015 David Thompson -;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Eric Bavier +;;; Copyright © 2014-2022 Eric Bavier ;;; Copyright © 2014 Cyrill Schenkel ;;; Copyright © 2014 Sylvain Beucler ;;; Copyright © 2014, 2015, 2018, 2019, 2021 Ludovic Courtès @@ -7154,7 +7154,7 @@ elements to achieve a simple goal in the most complex way possible.") (define-public pioneer (package (name "pioneer") - (version "20210723") + (version "20220203") (source (origin (method git-fetch) (uri (git-reference @@ -7163,7 +7163,7 @@ elements to achieve a simple goal in the most complex way possible.") (file-name (git-file-name name version)) (sha256 (base32 - "1hj99jxb9n3r0bkq87p1c24862xa1xyzjyfdyyx88ckszxb05qf3")))) + "0qjq6lsr1rmcnvq9b7r745cpp7n0q6cpc3k81q8ai4xspbq61m8w")))) (build-system cmake-build-system) (native-inputs (list pkg-config)) @@ -7182,6 +7182,7 @@ elements to achieve a simple goal in the most complex way possible.") (arguments `(#:tests? #f ;tests are broken #:configure-flags (list "-DUSE_SYSTEM_LIBLUA:BOOL=YES" + "-DUSE_SYSTEM_LIBGLEW:BOOL=YES" (string-append "-DPIONEER_DATA_DIR=" %output "/share/games/pioneer")) #:make-flags (list "all" "build-data"))) -- cgit v1.3 From 03833d041a5b42c2871e27a3ad9669d3f0fd5d94 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 11 Feb 2022 08:20:24 +0100 Subject: gnu: wireshark: Update to 3.6.2. * gnu/packages/networking.scm (wireshark): Update to 3.6.2. --- gnu/packages/networking.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 4d260249d7..5029eeb13e 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -6,7 +6,7 @@ ;;; Copyright © 2016 Raimon Grau ;;; Copyright © 2016–2021 Tobias Geerinckx-Rice ;;; Copyright © 2016 John Darrington -;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021 Nicolas Goaziou +;;; Copyright © 2016-2022 Nicolas Goaziou ;;; Copyright © 2016 Eric Bavier ;;; Copyright © 2016, 2017 Nikita ;;; Copyright © 2016, 2017, 2018 Arun Isaac @@ -1519,14 +1519,14 @@ of the same name.") (define-public wireshark (package (name "wireshark") - (version "3.6.1") + (version "3.6.2") (source (origin (method url-fetch) (uri (string-append "https://www.wireshark.org/download/src/wireshark-" version ".tar.xz")) (sha256 - (base32 "0f2sjbbwmmz9zr8vphxy0panfji5vv8vazm688mqxy3bzflfsd04")))) + (base32 "03n34jh4318y3q14jclxfxi4r7b9l393w9fw9bq57ydff9aim42x")))) (build-system cmake-build-system) (arguments `(#:phases -- cgit v1.3 From e32ea56f05a06d0e67e9099bf25bf919dabc1423 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 11 Feb 2022 08:25:12 +0100 Subject: gnu: emacs-orgit: Update to 1.8.0. * gnu/packages/emacs-xyz.scm (emacs-orgit): Update to 1.8.0. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 92c247ca38..8397162c1d 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -24079,7 +24079,7 @@ recursively. The results are cached for speed.") (define-public emacs-orgit (package (name "emacs-orgit") - (version "1.7.2") + (version "1.8.0") (home-page "https://github.com/magit/orgit") (source (origin (method git-fetch) @@ -24089,7 +24089,7 @@ recursively. The results are cached for speed.") (file-name (git-file-name name version)) (sha256 (base32 - "0lc2lk9c7b92c1cna2pyb88x9fa4bydcqkp4zcn0khpdv54fmszq")))) + "1hjfsj12qx06m8ji4l2sg502a55sabar4h6c2b2i9nmp1xf5889l")))) (build-system emacs-build-system) (propagated-inputs (list emacs-dash emacs-magit)) -- cgit v1.3 From 8a338de2766588f3efffd2ee608c85ff7f6877a3 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 11 Feb 2022 08:43:25 +0100 Subject: gnu: coq-flocq: Update to 4.0.0. * gnu/packages/coq.scm (coq-flocq): Update to 4.0.0. --- gnu/packages/coq.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/coq.scm b/gnu/packages/coq.scm index b523ccb065..1cfb17f17c 100644 --- a/gnu/packages/coq.scm +++ b/gnu/packages/coq.scm @@ -229,7 +229,7 @@ provers.") (define-public coq-flocq (package (name "coq-flocq") - (version "3.4.2") + (version "4.0.0") (source (origin (method git-fetch) @@ -239,7 +239,7 @@ provers.") (file-name (git-file-name name version)) (sha256 (base32 - "0j7vq7ifqcdaj2x881aha2rl51l2p72y1cn7r2xya0fjgsssfigy")))) + "159ykkhxz7zms28r4v8jjccapl5vv00csdz29mfy83lwrv5b6rwk")))) (build-system gnu-build-system) (native-inputs (list autoconf automake ocaml which coq)) -- cgit v1.3 From 575c4ad510da2c66b38d4ee636b7cd717d5913d3 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 11 Feb 2022 08:44:44 +0100 Subject: gnu: coq-gappa: Update to 1.5.1. * gnu/packages/coq.scm (coq-gappa): Update to 1.5.1. --- gnu/packages/coq.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/coq.scm b/gnu/packages/coq.scm index 1cfb17f17c..e52238ef65 100644 --- a/gnu/packages/coq.scm +++ b/gnu/packages/coq.scm @@ -276,7 +276,7 @@ inside Coq.") (define-public coq-gappa (package (name "coq-gappa") - (version "1.5.0") + (version "1.5.1") (source (origin (method git-fetch) @@ -286,7 +286,7 @@ inside Coq.") (file-name (git-file-name name version)) (sha256 (base32 - "1ivh8xm1c8191rm4riamjzya2x6ls96qax5byir1fywf9hbxr1vg")))) + "18y4mv44mcgyam77rf4xs7l06mg7pxx1qli3yvs0kklmnnvwa463")))) (build-system gnu-build-system) (native-inputs (list autoconf -- cgit v1.3 From 238a900baeea8df7d02081bd1fb46e1ba3be4eb5 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 11 Feb 2022 10:05:12 +0100 Subject: gnu: coq-bignums: Update to 8.15.0. * gnu/packages/coq.scm (coq-bignums): Update to 8.15.0. --- gnu/packages/coq.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/coq.scm b/gnu/packages/coq.scm index e52238ef65..8924f6f088 100644 --- a/gnu/packages/coq.scm +++ b/gnu/packages/coq.scm @@ -420,7 +420,7 @@ theorems between the two libraries.") (define-public coq-bignums (package (name "coq-bignums") - (version "8.14.0") + (version "8.15.0") (source (origin (method git-fetch) (uri (git-reference @@ -429,7 +429,7 @@ theorems between the two libraries.") (file-name (git-file-name name version)) (sha256 (base32 - "0jsgdvj0ddhkls32krprp34r64y1rb5mwxl34fgaxk2k4664yq06")))) + "093klwlhclgyrba1iv18dyz1qp5f0lwiaa7y0qwvgmai8rll5fns")))) (build-system gnu-build-system) (native-inputs (list ocaml coq)) -- cgit v1.3 From 6b6474fec71c30a105e9d98f050b29a798b58a0b Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 11 Feb 2022 10:10:12 +0100 Subject: gnu: coq-interval: Update to 4.4.0. * gnu/packages/coq.scm (coq-interval): Update to 4.4.0. --- gnu/packages/coq.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/coq.scm b/gnu/packages/coq.scm index 8924f6f088..bdd57cd47c 100644 --- a/gnu/packages/coq.scm +++ b/gnu/packages/coq.scm @@ -452,7 +452,7 @@ provides BigN, BigZ, BigQ that used to be part of Coq standard library.") (define-public coq-interval (package (name "coq-interval") - (version "4.3.1") + (version "4.4.0") (source (origin (method git-fetch) @@ -462,7 +462,7 @@ provides BigN, BigZ, BigQ that used to be part of Coq standard library.") (file-name (git-file-name name version)) (sha256 (base32 - "0sr9psildc0sda07r2r47rfgyry49yklk38bg04yyvry5j5pryb6")))) + "1rlcbv1nqm7zv60n63lca6nnxcq3c18akgzl72s1n3h89gvhs87z")))) (build-system gnu-build-system) (native-inputs (list autoconf automake ocaml which coq)) -- cgit v1.3 From 5179f4525d0859794b0d75ee1792d0f731d1f9c4 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 11 Feb 2022 08:42:22 +0100 Subject: gnu: coq: Update to 8.15.0. * gnu/packages/coq.scm (coq): Update to 8.15.0. (coq-equations): Update to 1.3-8.15. * gnu/packages/patches/coq-fix-envvars.patch: Adapt to new version. --- gnu/packages/coq.scm | 8 +- gnu/packages/patches/coq-fix-envvars.patch | 148 ++++++----------------------- 2 files changed, 35 insertions(+), 121 deletions(-) diff --git a/gnu/packages/coq.scm b/gnu/packages/coq.scm index bdd57cd47c..13c0a2f9db 100644 --- a/gnu/packages/coq.scm +++ b/gnu/packages/coq.scm @@ -52,7 +52,7 @@ (define-public coq-core (package (name "coq-core") - (version "8.14.1") + (version "8.15.0") (source (origin (method git-fetch) @@ -62,7 +62,7 @@ (file-name (git-file-name name version)) (sha256 (base32 - "0q634fmrh5ivpxy7ammdiqdh9xp72ji2726vcz1bd55ln0d08z40")) + "0473mmc4wv8zbbcbvqqn0z9gz9y8gf4w2q6j6h50lx0jphpg2n8z")) (patches (search-patches "coq-fix-envvars.patch")))) (native-search-paths (list (search-path-specification @@ -546,11 +546,11 @@ uses Ltac to synthesize the substitution operation.") (method git-fetch) (uri (git-reference (url "https://github.com/mattam82/Coq-Equations") - (commit (string-append "v" version "-8.14")))) + (commit (string-append "v" version "-8.15")))) (file-name (git-file-name name version)) (sha256 (base32 - "19bj9nncd1r9g4273h5qx35gs3i4bw5z9bhjni24b413hyj55hkv")))) + "1vfcfpsp9zyj0sw0cwibk76nj6n0r6gwh8m1aa3lbvc0b1kbm32k")))) (build-system gnu-build-system) (native-inputs (list ocaml coq camlp5)) diff --git a/gnu/packages/patches/coq-fix-envvars.patch b/gnu/packages/patches/coq-fix-envvars.patch index deecf5ce74..6c48224c64 100644 --- a/gnu/packages/patches/coq-fix-envvars.patch +++ b/gnu/packages/patches/coq-fix-envvars.patch @@ -1,63 +1,44 @@ -From ebe09fcac72b21d17c4e8fe6edc1b6076a4ae97c Mon Sep 17 00:00:00 2001 +From 0e76cda958a4d3e4bcbb96e171c26b6b3478c6c2 Mon Sep 17 00:00:00 2001 From: Julien Lepiller -Date: Sun, 21 Nov 2021 00:38:03 +0100 +Date: Thu, 10 Feb 2022 16:44:10 +0100 Subject: [PATCH] Fix environment variable usage. --- - checker/checker.ml | 2 ++ - lib/envars.ml | 26 ++++++++++++++++---------- - sysinit/coqargs.ml | 3 ++- - sysinit/coqloadpath.ml | 3 ++- - sysinit/coqloadpath.mli | 2 +- - tools/coqdep.ml | 2 +- - 6 files changed, 24 insertions(+), 14 deletions(-) + boot/env.ml | 26 +++++++++++++++++++------- + 1 file changed, 19 insertions(+), 7 deletions(-) -diff --git a/checker/checker.ml b/checker/checker.ml -index f55ed9e8d6..3b797729ed 100644 ---- a/checker/checker.ml -+++ b/checker/checker.ml -@@ -104,6 +104,7 @@ let set_include d p = - (* Initializes the LoadPath *) - let init_load_path () = - let coqlib = Envars.coqlib () in -+ let coqcorelib = Envars.coqcorelib () in - let user_contrib = coqlib/"user-contrib" in - let xdg_dirs = Envars.xdg_dirs in - let coqpath = Envars.coqpath in -@@ -111,6 +112,7 @@ let init_load_path () = - CPath.choose_existing - [ CPath.make [ coqlib ; "plugins" ] - ; CPath.make [ coqlib ; ".."; "coq-core"; "plugins" ] -+ ; CPath.make [ coqcorelib ; "plugins" ] - ] |> function - | None -> - CErrors.user_err (Pp.str "Cannot find plugins directory") -diff --git a/lib/envars.ml b/lib/envars.ml -index 750bd60e71..c7affbd437 100644 ---- a/lib/envars.ml -+++ b/lib/envars.ml -@@ -127,15 +127,21 @@ let check_file_else ~dir ~file oth = - let guess_coqlib fail = - getenv_else "COQLIB" (fun () -> +diff --git a/boot/env.ml b/boot/env.ml +index e8521e7..d834a3a 100644 +--- a/boot/env.ml ++++ b/boot/env.ml +@@ -32,17 +32,29 @@ let fail_msg = + + let fail s = Format.eprintf "%s@\n%!" fail_msg; exit 1 + ++let path_to_list p = ++ let sep = if String.equal Sys.os_type "Win32" then ';' else ':' in ++ String.split_on_char sep p ++ + (* This code needs to be refactored, for now it is just what used to be in envvars *) + let guess_coqlib () = + Util.getenv_else "COQLIB" (fun () -> let prelude = "theories/Init/Prelude.vo" in -- check_file_else ~dir:Coq_config.coqlibsuffix ~file:prelude +- Util.check_file_else +- ~dir:Coq_config.coqlibsuffix +- ~file:prelude - (fun () -> -- if Sys.file_exists (Coq_config.coqlib / prelude) +- if Sys.file_exists (Filename.concat Coq_config.coqlib prelude) - then Coq_config.coqlib -- else -- fail "cannot guess a path for Coq libraries; please use -coqlib option \ -- or ensure you have installed the package containing Coq's stdlib (coq-stdlib in OPAM) \ -- If you intend to use Coq without a standard library, the -boot -noinit options must be used.") -- ) -+ let coqlibpath = getenv_else "COQLIBPATH" (fun () -> Coq_config.coqlibsuffix) in +- else fail ())) ++ let coqlibpath = Util.getenv_else "COQLIBPATH" (fun () -> Coq_config.coqlibsuffix) in + let paths = path_to_list coqlibpath in + let valid_paths = + List.filter -+ (fun dir -> (check_file_else ~dir:dir ~file:prelude (fun () -> "")) <> "") ++ (fun dir -> (Util.check_file_else ~dir:dir ~file:prelude (fun () -> "")) <> "") + paths in + match valid_paths with + | [] -> -+ if Sys.file_exists (Coq_config.coqlib / prelude) ++ if Sys.file_exists (Filename.concat Coq_config.coqlib prelude) + then Coq_config.coqlib + else + fail "cannot guess a path for Coq libraries; please use -coqlib option \ @@ -65,75 +46,8 @@ index 750bd60e71..c7affbd437 100644 + If you intend to use Coq without a standard library, the -boot -noinit options must be used." + | p::_ -> p) - let coqlib_ref : string option ref = ref None - let set_user_coqlib path = coqlib_ref := Some path -@@ -208,7 +214,7 @@ let xdg_dirs ~warn = - let print_config ?(prefix_var_name="") f coq_src_subdirs = - let open Printf in - fprintf f "%sCOQLIB=%s/\n" prefix_var_name (coqlib ()); -- fprintf f "%sCOQCORELIB=%s/\n" prefix_var_name (coqlib () / "../coq-core/"); -+ fprintf f "%sCOQCORELIB=%s/\n" prefix_var_name (coqcorelib ()); - fprintf f "%sDOCDIR=%s/\n" prefix_var_name (docdir ()); - fprintf f "%sOCAMLFIND=%s\n" prefix_var_name (ocamlfind ()); - fprintf f "%sCAMLFLAGS=%s\n" prefix_var_name Coq_config.caml_flags; -diff --git a/sysinit/coqargs.ml b/sysinit/coqargs.ml -index 00f70a5fea..8325623a63 100644 ---- a/sysinit/coqargs.ml -+++ b/sysinit/coqargs.ml -@@ -453,7 +453,8 @@ let build_load_path opts = - if opts.pre.boot then [],[] - else - let coqlib = Envars.coqlib () in -- Coqloadpath.init_load_path ~coqlib in -+ let coqcorelib = Envars.coqcorelib () in -+ Coqloadpath.init_load_path ~coqlib ~coqcorelib in - ml_path @ opts.pre.ml_includes , - vo_path @ opts.pre.vo_includes - -diff --git a/sysinit/coqloadpath.ml b/sysinit/coqloadpath.ml -index 95ae5da3de..a58cfe6928 100644 ---- a/sysinit/coqloadpath.ml -+++ b/sysinit/coqloadpath.ml -@@ -35,7 +35,7 @@ let build_userlib_path ~unix_path = - else [], [] - - (* LoadPath for Coq user libraries *) --let init_load_path ~coqlib = -+let init_load_path ~coqlib ~coqcorelib = - - let open Loadpath in - let user_contrib = coqlib/"user-contrib" in -@@ -50,6 +50,7 @@ let init_load_path ~coqlib = - CPath.choose_existing - [ CPath.make [ coqlib ; "plugins" ] - ; CPath.make [ coqlib ; ".."; "coq-core"; "plugins" ] -+ ; CPath.make [ coqcorelib ; "plugins" ] - ] |> function - | None -> - CErrors.user_err (Pp.str "Cannot find plugins directory") -diff --git a/sysinit/coqloadpath.mli b/sysinit/coqloadpath.mli -index d853e9ea54..43c6dfa134 100644 ---- a/sysinit/coqloadpath.mli -+++ b/sysinit/coqloadpath.mli -@@ -12,5 +12,5 @@ - includes (in-order) Coq's standard library, Coq's [user-contrib] - folder, and directories specified in [COQPATH] and [XDG_DIRS] *) - val init_load_path -- : coqlib:CUnix.physical_path -+ : coqlib:CUnix.physical_path -> coqcorelib:CUnix.physical_path - -> CUnix.physical_path list * Loadpath.vo_path list -diff --git a/tools/coqdep.ml b/tools/coqdep.ml -index c1c87993e1..6c78e10866 100644 ---- a/tools/coqdep.ml -+++ b/tools/coqdep.ml -@@ -33,7 +33,7 @@ let coqdep () = - let coqlib = Envars.coqlib () in - let coq_plugins_dir = Filename.concat (Envars.coqcorelib ()) "plugins" in - if not (Sys.file_exists coq_plugins_dir) then -- CErrors.user_err Pp.(str "coqdep: cannot find plugins directory for coqlib: " ++ str coqlib ++ fnl ()); -+ CErrors.user_err Pp.(str "coqdep: cannot find plugins directory " ++ str coq_plugins_dir ++ str " for coqlib: " ++ str coqlib ++ fnl ()); - CD.add_rec_dir_import CD.add_coqlib_known (coqlib//"theories") ["Coq"]; - CD.add_rec_dir_import CD.add_coqlib_known (coq_plugins_dir) ["Coq"]; - let user = coqlib//"user-contrib" in + (* Build layout uses coqlib = coqcorelib *) + let guess_coqcorelib lib = -- -2.33.1 +2.34.0 + -- cgit v1.3 From 74a1e5378ae5ef9e4520120446991914a59d4744 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 11 Feb 2022 10:02:03 +0100 Subject: gnu: coq-mathcomp: Update to 1.14.0. * gnu/packages/coq.scm (coq-mathcomp): Update to 1.14.0. --- gnu/packages/coq.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/coq.scm b/gnu/packages/coq.scm index 13c0a2f9db..8862f0704f 100644 --- a/gnu/packages/coq.scm +++ b/gnu/packages/coq.scm @@ -334,7 +334,7 @@ assistant.") (define-public coq-mathcomp (package (name "coq-mathcomp") - (version "1.13.0") + (version "1.14.0") (source (origin (method git-fetch) @@ -343,7 +343,7 @@ assistant.") (commit (string-append "mathcomp-" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0aj8hsdzzds5w0p1858s2b6k9zssjcxa6kgpi0q1nvaml4zfpkcc")))) + (base32 "1rqg47dg84wr6d9v2pzna54dm62awcm8xdwx4dqwdwhf58fjxa9i")))) (build-system gnu-build-system) (native-inputs (list ocaml which coq)) -- cgit v1.3 From 58ab579a9856eadb2acc4f2b47d3516734d0b6a4 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 11 Feb 2022 10:36:39 +0100 Subject: gnu: coq-stdpp: Update to 1.7.0. * gnu/packages/coq.scm (coq-stdpp): Update to 1.7.0. --- gnu/packages/coq.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/coq.scm b/gnu/packages/coq.scm index 8862f0704f..0cfe9fd4e7 100644 --- a/gnu/packages/coq.scm +++ b/gnu/packages/coq.scm @@ -625,7 +625,7 @@ also provided in Coq, without associated proofs.") (define-public coq-stdpp (package (name "coq-stdpp") - (version "1.6.0") + (version "1.7.0") (synopsis "Alternative Coq standard library std++") (source (origin (method git-fetch) @@ -635,7 +635,7 @@ also provided in Coq, without associated proofs.") (file-name (git-file-name name version)) (sha256 (base32 - "1l1w6srzydjg0h3f4krrfgvz455h56shyy2lbcnwdbzjkahibl7v")))) + "0447wbzm23f9rl8byqf6vglasfn6c1wy6cxrrwagqjwsh3i5lx8y")))) (build-system gnu-build-system) (inputs (list coq)) -- cgit v1.3 From adccd1e0c6b49faeeb8eecbe3cb86e8d8fc249b8 Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Fri, 11 Feb 2022 12:49:21 +0100 Subject: gnu: Add nfiles. * gnu/packages/lisp-xyz.scm (cl-nfiles, ecl-nfiles, sbcl-nfiles): New variables. --- gnu/packages/lisp-xyz.scm | 75 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 22685ce7a1..ab85c05bc9 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -75,6 +75,7 @@ #:use-module (gnu packages gl) #:use-module (gnu packages glib) #:use-module (gnu packages gnome) + #:use-module (gnu packages gnupg) #:use-module (gnu packages gtk) #:use-module (gnu packages image) #:use-module (gnu packages imagemagick) @@ -20507,3 +20508,77 @@ identified uniquely. (define-public ecl-nhooks (sbcl-package->ecl-package sbcl-nhooks)) + +(define-public sbcl-nfiles + (package + (name "sbcl-nfiles") + (version "0.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/atlas-engineer/nfiles") + (commit version))) + (file-name (git-file-name "nfiles" version)) + (sha256 + (base32 + "1jdrqvxp4dxlkggx951rxp29lg7hm8zxq35pqq8hr9m9ydy088s7")))) + (build-system asdf-build-system/sbcl) + (inputs + (list gnupg + sbcl-alexandria + sbcl-hu.dwim.defclass-star + sbcl-serapeum + sbcl-trivial-garbage + sbcl-trivial-package-local-nicknames + sbcl-trivial-types)) + (native-inputs + (list sbcl-prove)) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'fix-paths + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "gpg.lisp" + (("\"gpg\"") + (string-append "\"" (assoc-ref inputs "gnupg") "/bin/gpg\"")))))))) + (home-page "https://github.com/atlas-engineer/nfiles") + (synopsis "Manage file persistence and loading in Common Lisp") + (description + "NFiles is a Common Lisp library to help manage file persistence and +loading, in particular user-centric files like configuration files. It boasts +the following features: + +@itemize +@item Dynamic and customizable path expansion. + +@item Extensible serialization and deserialization. + +@item Cached reads and writes. When a file object expands to the same path as +another one, a read or write on it won’t do anything in case there was no +change since last write. + +@item (Experimental!) On-the-fly PGP encryption. + +@item Profile support. + +@item On read error, existing files are backed up. + +@item On write error, no file is written to disk, the existing file is preserved. +@end itemize\n") + (license license:bsd-3))) + +(define-public ecl-nfiles + (let ((pkg (sbcl-package->ecl-package sbcl-nfiles))) + (package + (inherit pkg) + (inputs + (cons (list "iolib" ecl-iolib) + (package-inputs pkg)))))) + +(define-public cl-nfiles + (package + (inherit (sbcl-package->cl-source-package sbcl-nfiles)) + (inputs + (cons (list "iolib" cl-iolib) + (package-inputs sbcl-nfiles))))) -- cgit v1.3 From a4667135284db2f0956a87fc7444c866b046ad31 Mon Sep 17 00:00:00 2001 From: Jonathan Brielmaier Date: Fri, 11 Feb 2022 13:25:10 +0100 Subject: gnu: icedove: Update to 91.6. * gnu/packages/gnuzilla.scm (icedove): Update to 91.6. --- gnu/packages/gnuzilla.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm index d08dc6bca7..cc76793722 100644 --- a/gnu/packages/gnuzilla.scm +++ b/gnu/packages/gnuzilla.scm @@ -1338,11 +1338,11 @@ standards of the IceCat project.") (cpe-version . ,(first (string-split version #\-))))))) ;; Update this together with icecat! -(define %icedove-build-id "20220111000000") ;must be of the form YYYYMMDDhhmmss +(define %icedove-build-id "20220208000000") ;must be of the form YYYYMMDDhhmmss (define-public icedove (package (name "icedove") - (version "91.5") + (version "91.6") (source icecat-source) (properties `((cpe-name . "thunderbird_esr"))) @@ -1628,7 +1628,7 @@ standards of the IceCat project.") ;; in the Thunderbird release tarball. We don't use the release ;; tarball because it duplicates the Icecat sources and only adds the ;; "comm" directory, which is provided by this repository. - ,(let ((changeset "bcd2aab51cd0889d506d29455210d65602b97430")) + ,(let ((changeset "676bfbddd4b3ed77f818b6b07d9d8a79c61be4da")) (origin (method hg-fetch) (uri (hg-reference @@ -1637,7 +1637,7 @@ standards of the IceCat project.") (file-name (string-append "thunderbird-" version "-checkout")) (sha256 (base32 - "0aj8a8qbm71n34yi58y04bn4h9zz2rciz0cm3hh58rsmcqs1s9ym"))))) + "1laif9h51s7v8vlqjsd6y2y9267kr7l208xjs00z6462r6kzjvab"))))) ("cargo" ,rust "cargo") ("clang" ,clang-11) ("llvm" ,llvm-11) -- cgit v1.3 From 4ba7aab96503aa8e4b450fca1e68ca79eef3a534 Mon Sep 17 00:00:00 2001 From: jgart Date: Fri, 11 Feb 2022 15:18:14 +0100 Subject: gnu: Add cl-hamcrest. * gnu/packages/lisp-check.scm (cl-hamcrest, ecl-hamcrest, sbcl-hamcrest): New variables. Signed-off-by: Guillaume Le Vaillant --- gnu/packages/lisp-check.scm | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/gnu/packages/lisp-check.scm b/gnu/packages/lisp-check.scm index 1cdd7d8300..4e6334ff86 100644 --- a/gnu/packages/lisp-check.scm +++ b/gnu/packages/lisp-check.scm @@ -8,6 +8,7 @@ ;;; Copyright © 2019, 2020, 2021 Guillaume Le Vaillant ;;; Copyright © 2021 Sharlatan Hellseher ;;; Copyright © 2021 Charles Jackson +;;; Copyright © 2022 jgart ;;; ;;; This file is part of GNU Guix. ;;; @@ -358,6 +359,44 @@ interactive development model in mind.") (define-public ecl-fiveam (sbcl-package->ecl-package sbcl-fiveam)) +(define-public sbcl-hamcrest + (let ((commit "a54553e59a70dc5a539b683e79bfcdb0e8bae5c8") + (revision "0")) + (package + (name "sbcl-hamcrest") + (version "0.4.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/40ants/cl-hamcrest") + (commit commit))) + (sha256 + (base32 "181nnb2fjbsdqjqdvwg2x9n1jjalkfzszwdgqcap4py2q63q1kxj")) + (file-name (git-file-name "cl-hamcrest" commit)))) + (build-system asdf-build-system/sbcl) + (inputs + (list sbcl-iterate + sbcl-split-sequence + sbcl-cl-ppcre + sbcl-alexandria + sbcl-rove + sbcl-prove)) + (home-page "https://40ants.com/cl-hamcrest/") + (synopsis "Make CL unit tests more readable") + (description + "@code{cl-hamcrest} is an implementation of the Hamcrest idea in +Common Lisp. It simplifes unit tests and makes them more readable. +Hamcrest uses the idea of pattern-matching, to construct matchers from +different pieces and to apply them to the data.") + (license license:bsd-3)))) + +(define-public cl-hamcrest + (sbcl-package->cl-source-package sbcl-hamcrest)) + +(define-public ecl-cl-hamcrest + (sbcl-package->ecl-package sbcl-hamcrest)) + (define-public sbcl-hu.dwim.stefil (let ((commit "414902c6f575818c39a8a156b8b61b1adfa73dad")) (package -- cgit v1.3 From 6f4f04a82df20e9941d777dbed7bfe0a78b68e63 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Thu, 10 Feb 2022 14:04:22 +0100 Subject: gnu: Add r-coro. * gnu/packages/cran.scm (r-coro): New variable. --- gnu/packages/cran.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 6338cb7853..8d4cb1c7b2 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -5014,6 +5014,31 @@ avoid overlapping text labels. Labels repel away from each other and away from the data points.") (license license:gpl3))) +(define-public r-coro + (package + (name "r-coro") + (version "1.0.2") + (source + (origin + (method url-fetch) + (uri (cran-uri "coro" version)) + (sha256 + (base32 "14irld29dipgfd34y0k351daqg9vqpnpdx8m3pxmqr1aiyj5f5cv")))) + (properties `((upstream-name . "coro"))) + (build-system r-build-system) + (propagated-inputs (list r-rlang)) + (native-inputs (list r-knitr)) + (home-page "https://github.com/r-lib/coro") + (synopsis "Coroutines for R") + (description + "This package provides coroutines for R, a family of functions that can +be suspended and resumed later on. This includes async functions (which +await) and generators (which yield). Async functions are based on the +concurrency framework of the @code{promises} package. Generators are based on +a dependency free iteration protocol defined in @code{coro} and are compatible +with iterators from the @code{reticulate} package.") + (license license:expat))) + (define-public r-corrplot (package (name "r-corrplot") -- cgit v1.3 From 8b787eb929effcd1c3ded2a284bc76890d79c67f Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Thu, 10 Feb 2022 14:04:40 +0100 Subject: gnu: python-pytorch: Update to 1.10.2. * gnu/packages/machine-learning.scm (python-pytorch): Update to 1.10.2. --- gnu/packages/machine-learning.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index aac5b81a06..c7ed7bb31e 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus +;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 Ricardo Wurmus ;;; Copyright © 2016, 2020, 2021 Efraim Flashner ;;; Copyright © 2016, 2017, 2020 Marius Bakke ;;; Copyright © 2016 Hartmut Goebel @@ -2907,7 +2907,7 @@ TensorFlow.js, PyTorch, and MediaPipe.") (define-public python-pytorch (package (name "python-pytorch") - (version "1.10.0") + (version "1.10.2") (source (origin (method git-fetch) (uri (git-reference @@ -2917,7 +2917,7 @@ TensorFlow.js, PyTorch, and MediaPipe.") (file-name (git-file-name name version)) (sha256 (base32 - "1ihsjw48qqbikmhxxn17bcdvk2zsjabvkq61q6pvj7dzvrdpkb60")) + "15fi3nr7fx2zc9j2xf0jq627zfmnvs8hijyifg9769arm8kfijs1")) (patches (search-patches "python-pytorch-system-libraries.patch" "python-pytorch-runpath.patch")) (modules '((guix build utils))) -- cgit v1.3 From 7b676317b3e49fe0bd2a44741d8d383f5c85d76a Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Thu, 10 Feb 2022 16:31:32 +0100 Subject: gnu: Add python-pytorch-for-r-torch. * gnu/packages/patches/python-pytorch-1.9.0-system-libraries.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/machine-learning.scm (python-pytorch-for-r-torch): New variable. --- gnu/local.mk | 1 + gnu/packages/machine-learning.scm | 47 +++++++ .../python-pytorch-1.9.0-system-libraries.patch | 139 +++++++++++++++++++++ 3 files changed, 187 insertions(+) create mode 100644 gnu/packages/patches/python-pytorch-1.9.0-system-libraries.patch diff --git a/gnu/local.mk b/gnu/local.mk index 198c8f64a6..e423732e35 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1741,6 +1741,7 @@ dist_patch_DATA = \ %D%/packages/patches/python-pytest-asyncio-python-3.8.patch \ %D%/packages/patches/python-pytorch-runpath.patch \ %D%/packages/patches/python-pytorch-system-libraries.patch \ + %D%/packages/patches/python-pytorch-1.9.0-system-libraries.patch \ %D%/packages/patches/python-robotframework-source-date-epoch.patch \ %D%/packages/patches/python-seaborn-kde-test.patch \ %D%/packages/patches/python-seaborn-2690.patch \ diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index c7ed7bb31e..0c01617297 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -3034,6 +3034,53 @@ PyTorch when needed. Note: currently this package does not provide GPU support.") (license license:bsd-3))) +(define-public python-pytorch-for-r-torch + (package + (inherit python-pytorch) + (name "python-pytorch") + (version "1.9.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pytorch/pytorch") + (commit (string-append "v" version)) + (recursive? #t))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0cznsh68hwk5761gv7iijb4g6jgjpvs3bbixwpzzmkbkbn2q96c1")) + (patches (search-patches "python-pytorch-1.9.0-system-libraries.patch" + "python-pytorch-runpath.patch")) + (modules '((guix build utils))) + (snippet + '(begin + ;; XXX: Let's be clear: this package is a bundling fest. We + ;; delete as much as we can, but there's still a lot left. + (for-each (lambda (directory) + (delete-file-recursively + (string-append "third_party/" directory))) + '("benchmark" "cpuinfo" "eigen" + + ;; FIXME: QNNPACK (of which XNNPACK is a fork) + ;; needs these. + ;; "FP16" "FXdiv" "gemmlowp" "psimd" + + "gloo" "googletest" "ios-cmake" "NNPACK" + "onnx" "protobuf" "pthreadpool" + "pybind11" "python-enum" "python-peachpy" + "python-six" "tbb" "XNNPACK" "zstd")) + + ;; Adjust references to the onnx-optimizer headers. + (substitute* "caffe2/onnx/backend.cc" + (("onnx/optimizer/") + "onnxoptimizer/")))))) + (arguments + (substitute-keyword-arguments (package-arguments python-pytorch) + ((#:phases phases '%standard-phases) + `(modify-phases ,phases + ;; No module named 'onnx.optimizer' + (delete 'sanity-check))))))) + (define-public python-hmmlearn (package (name "python-hmmlearn") diff --git a/gnu/packages/patches/python-pytorch-1.9.0-system-libraries.patch b/gnu/packages/patches/python-pytorch-1.9.0-system-libraries.patch new file mode 100644 index 0000000000..76c06520f0 --- /dev/null +++ b/gnu/packages/patches/python-pytorch-1.9.0-system-libraries.patch @@ -0,0 +1,139 @@ +Use our own googletest rather than the bundled one. +Get NNPACK to use our own PeachPy rather than the bundled one. + +diff --git a/cmake/Dependencies.cmake b/cmake/Dependencies.cmake +index 5d57b9ca78..620cca4e60 100644 +--- a/cmake/Dependencies.cmake ++++ b/cmake/Dependencies.cmake +@@ -644,11 +644,6 @@ if(BUILD_TEST OR BUILD_MOBILE_BENCHMARK OR BUILD_MOBILE_TEST) + # this shouldn't be necessary anymore. + get_property(INC_DIR_temp DIRECTORY PROPERTY INCLUDE_DIRECTORIES) + set_property(DIRECTORY PROPERTY INCLUDE_DIRECTORIES "") +- add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/../third_party/googletest) +- set_property(DIRECTORY PROPERTY INCLUDE_DIRECTORIES ${INC_DIR_temp}) +- +- include_directories(BEFORE SYSTEM ${CMAKE_CURRENT_LIST_DIR}/../third_party/googletest/googletest/include) +- include_directories(BEFORE SYSTEM ${CMAKE_CURRENT_LIST_DIR}/../third_party/googletest/googlemock/include) + + # We will not need to test benchmark lib itself. + set(BENCHMARK_ENABLE_TESTING OFF CACHE BOOL "Disable benchmark testing as we don't need it.") +@@ -1485,7 +1480,7 @@ if(CAFFE2_CMAKE_BUILDING_WITH_MAIN_REPO AND NOT INTERN_DISABLE_ONNX) + endif() + set_property(TARGET onnx_proto PROPERTY IMPORTED_LOCATION ${ONNX_PROTO_LIBRARY}) + message("-- Found onnx: ${ONNX_LIBRARY} ${ONNX_PROTO_LIBRARY}") +- list(APPEND Caffe2_DEPENDENCY_LIBS onnx_proto onnx) ++ list(APPEND Caffe2_DEPENDENCY_LIBS onnx_proto onnx onnx_optimizer) + endif() + include_directories(${FOXI_INCLUDE_DIRS}) + list(APPEND Caffe2_DEPENDENCY_LIBS foxi_loader) + +diff --git a/caffe2/CMakeLists.txt b/caffe2/CMakeLists.txt +index 50ebb224ce..5953d9ddf7 100644 +--- a/caffe2/CMakeLists.txt ++++ b/caffe2/CMakeLists.txt +@@ -1632,7 +1632,7 @@ if(BUILD_TEST) + if(NOT MSVC) + add_executable(${test_name}_${CPU_CAPABILITY} "${test_src}" ../aten/src/ATen/native/quantized/affine_quantizer_base.cpp) + # TODO: Get rid of c10 dependency (which is only needed for the implementation of AT_ERROR) +- target_link_libraries(${test_name}_${CPU_CAPABILITY} c10 sleef gtest_main) ++ target_link_libraries(${test_name}_${CPU_CAPABILITY} c10 sleef gtest_main gtest) + if(USE_FBGEMM) + target_link_libraries(${test_name}_${CPU_CAPABILITY} fbgemm) + endif() +@@ -1655,7 +1655,7 @@ if(BUILD_TEST) + foreach(test_src ${Caffe2_CPU_TEST_SRCS}) + get_filename_component(test_name ${test_src} NAME_WE) + add_executable(${test_name} "${test_src}") +- target_link_libraries(${test_name} torch_library gtest_main) ++ target_link_libraries(${test_name} torch_library gtest_main gtest) + target_include_directories(${test_name} PRIVATE $) + target_include_directories(${test_name} PRIVATE $) + target_include_directories(${test_name} PRIVATE ${Caffe2_CPU_INCLUDE}) +@@ -1673,7 +1673,7 @@ if(BUILD_TEST) + foreach(test_src ${Caffe2_GPU_TEST_SRCS}) + get_filename_component(test_name ${test_src} NAME_WE) + cuda_add_executable(${test_name} "${test_src}") +- target_link_libraries(${test_name} torch_library gtest_main) ++ target_link_libraries(${test_name} torch_library gtest_main gtest) + target_include_directories(${test_name} PRIVATE $) + target_include_directories(${test_name} PRIVATE ${Caffe2_CPU_INCLUDE}) + add_test(NAME ${test_name} COMMAND $) +@@ -1691,7 +1691,7 @@ if(BUILD_TEST) + foreach(test_src ${Caffe2_VULKAN_TEST_SRCS}) + get_filename_component(test_name ${test_src} NAME_WE) + add_executable(${test_name} "${test_src}") +- target_link_libraries(${test_name} torch_library gtest_main) ++ target_link_libraries(${test_name} torch_library gtest_main gtest) + target_include_directories(${test_name} PRIVATE $) + target_include_directories(${test_name} PRIVATE ${Caffe2_CPU_INCLUDE}) + add_test(NAME ${test_name} COMMAND $) +@@ -1709,7 +1709,7 @@ if(BUILD_TEST) + foreach(test_src ${Caffe2_HIP_TEST_SRCS}) + get_filename_component(test_name ${test_src} NAME_WE) + add_executable(${test_name} "${test_src}") +- target_link_libraries(${test_name} torch_library gtest_main) ++ target_link_libraries(${test_name} torch_library gtest_main gtest) + target_include_directories(${test_name} PRIVATE $) + target_include_directories(${test_name} PRIVATE ${Caffe2_CPU_INCLUDE} ${Caffe2_HIP_INCLUDE}) + target_compile_options(${test_name} PRIVATE ${HIP_CXX_FLAGS}) + +diff --git a/torch/lib/c10d/test/CMakeLists.txt b/torch/lib/c10d/test/CMakeLists.txt +index b74d4b65f7..fc7c207505 100644 +--- a/torch/lib/c10d/test/CMakeLists.txt ++++ b/torch/lib/c10d/test/CMakeLists.txt +@@ -16,24 +16,24 @@ function(c10d_add_test test_src) + add_test(NAME ${test_name} COMMAND $) + endfunction() + +-c10d_add_test(FileStoreTest.cpp c10d gtest_main) +-c10d_add_test(TCPStoreTest.cpp c10d gtest_main) ++c10d_add_test(FileStoreTest.cpp c10d gtest_main gtest) ++c10d_add_test(TCPStoreTest.cpp c10d gtest_main gtest) + if(NOT WIN32) +- c10d_add_test(HashStoreTest.cpp c10d gtest_main) ++ c10d_add_test(HashStoreTest.cpp c10d gtest_main gtest) + endif() + + if(USE_CUDA) + if(USE_C10D_GLOO) +- c10d_add_test(ProcessGroupGlooTest.cpp c10d c10d_cuda_test gtest_main) +- c10d_add_test(ProcessGroupGlooAsyncTest.cpp c10d c10d_cuda_test gtest_main) ++ c10d_add_test(ProcessGroupGlooTest.cpp c10d c10d_cuda_test gtest_main gtest) ++ c10d_add_test(ProcessGroupGlooAsyncTest.cpp c10d c10d_cuda_test gtest_main gtest) + endif() + if(USE_C10D_NCCL) +- c10d_add_test(ProcessGroupNCCLTest.cpp c10d c10d_cuda_test gtest_main) ++ c10d_add_test(ProcessGroupNCCLTest.cpp c10d c10d_cuda_test gtest_main gtest) + c10d_add_test(ProcessGroupNCCLErrorsTest.cpp c10d c10d_cuda_test +- gtest_main) ++ gtest_main gtest) + endif() + else() + if(USE_C10D_GLOO) +- c10d_add_test(ProcessGroupGlooTest.cpp c10d gtest_main) ++ c10d_add_test(ProcessGroupGlooTest.cpp c10d gtest_main gtest) + endif() + endif() + +diff --git a/cmake/External/nnpack.cmake b/cmake/External/nnpack.cmake +index a41343cbb5..6075bdd0a4 100644 +--- a/cmake/External/nnpack.cmake ++++ b/cmake/External/nnpack.cmake +@@ -40,7 +40,7 @@ endif() + # (3) Android, iOS, Linux, macOS - supported + ############################################################################## + +-if(ANDROID OR IOS OR ${CMAKE_SYSTEM_NAME} STREQUAL "Linux" OR ${CMAKE_SYSTEM_NAME} STREQUAL "Darwin") ++if(FALSE) + message(STATUS "Brace yourself, we are building NNPACK") + set(CAFFE2_THIRD_PARTY_ROOT ${PROJECT_SOURCE_DIR}/third_party) + +@@ -114,6 +114,5 @@ endif() + # (4) Catch-all: not supported. + ############################################################################## + +-message(WARNING "Unknown platform - I don't know how to build NNPACK. " +- "See cmake/External/nnpack.cmake for details.") +-set(USE_NNPACK OFF) ++set(NNPACK_FOUND TRUE) ++set(USE_NNPACK ON) -- cgit v1.3 From 7146e553b94992e89349fe76915e59de88418d8f Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Fri, 11 Feb 2022 15:40:29 +0100 Subject: gnu: Add liblantern. * gnu/packages/machine-learning.scm (liblantern): New variable. --- gnu/packages/machine-learning.scm | 62 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index 0c01617297..2f7e1ac5d9 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -3113,3 +3113,65 @@ Note: currently this package does not provide GPU support.") "Hmmlearn is a set of algorithms for unsupervised learning and inference of Hidden Markov Models.") (license license:bsd-3))) + +;; Keep this in sync with the r-torch package. +(define-public liblantern + (package + (name "liblantern") + (version "0.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mlverse/torch") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gabwic46m4m7qld1yi4brw05n9jx58ri3y0pi6jf9jndfi1qnfp")))) + (build-system cmake-build-system) + (arguments + (list + #:tests? #false ;no test target + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'chdir + (lambda _ (chdir "lantern"))) + (add-after 'chdir 'do-not-download-binaries + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "CMakeLists.txt" + (("find_package\\(Torch.*") "set(TORCH_CXX_FLAGS \"-ltorch\")\n") + (("retrieve_lib\\(.*") "")) + (setenv "LIBRARY_PATH" + (string-append + (search-input-directory + inputs "/lib/python3.9/site-packages/torch/lib") + ":" (or (getenv "LIBRARY_PATH") ""))) + (setenv "CPLUS_INCLUDE_PATH" + (string-append + (search-input-directory + inputs "lib/python3.9/site-packages/torch/include/torch/csrc/api/include/") + ":" + (search-input-directory + inputs "lib/python3.9/site-packages/torch/include/") + ":" + (or (getenv "CPLUS_INCLUDE_PATH") ""))) + (setenv "C_INCLUDE_PATH" + (string-append + (search-input-directory + inputs "lib/python3.9/site-packages/torch/include/") + ":" + (or (getenv "C_INCLUDE_PATH") ""))))) + (replace 'install + (lambda _ + (install-file + "../build/liblantern.so" + (string-append #$output "/lib")) + (copy-recursively + "../lantern/include" + (string-append #$output "/include"))))))) + (inputs (list python-pytorch-for-r-torch)) + (home-page "https://github.com/mlverse/torch/") + (synopsis "C API to libtorch") + (description + "Lantern provides a C API to the libtorch machine learning library.") + (license license:expat))) -- cgit v1.3 From 6baf2177df36bc33e79f1c71198dfe04d242efb2 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Fri, 11 Feb 2022 15:40:57 +0100 Subject: gnu: Add r-torch. * gnu/packages/cran.scm (r-torch): New variable. --- gnu/packages/cran.scm | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 8d4cb1c7b2..73bbf6defe 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -55,6 +55,7 @@ #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) + #:use-module (guix gexp) #:use-module (guix git-download) #:use-module (guix utils) #:use-module (guix build-system gnu) @@ -22746,6 +22747,58 @@ and multivariate regression), and analysis of variance tolerance intervals. Visualizations are also available for most of these settings.") (license license:gpl2+))) +;; Keep this in sync with the liblantern package. +(define-public r-torch + (package + (name "r-torch") + (version "0.6.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "torch" version)) + (sha256 + (base32 "05vxb84qxna1rpzqhjw6gwyc569zyz7rfbdkahglvihqjjwabc4x")))) + (properties `((upstream-name . "torch"))) + (build-system r-build-system) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'install 'link-libraries + (lambda* (#:key inputs #:allow-other-keys) + (let ((deps (string-append #$output "/site-library/torch/deps"))) + (mkdir-p deps) + (symlink + (search-input-file + inputs "/lib/python3.9/site-packages/torch/lib/libtorch.so") + (string-append deps "/libtorch.so")) + (symlink + (search-input-file + inputs "/lib/liblantern.so") + (string-append deps "/liblantern.so")))))))) + (inputs + (list python-pytorch-for-r-torch + liblantern)) + (propagated-inputs + (list r-bit64 + r-callr + r-cli + r-coro + r-ellipsis + r-magrittr + r-r6 + r-rcpp + r-rlang + r-withr)) + (native-inputs (list r-knitr)) + (home-page "https://torch.mlverse.org/docs") + (synopsis "Tensors and neural networks with GPU acceleration") + (description + "This package provides functionality to define and train neural networks +similar to PyTorch but written entirely in R using the libtorch library. It +also supports low-level tensor operations and GPU acceleration.") + (license license:expat))) + (define-public r-additivitytests (package (name "r-additivitytests") -- cgit v1.3 From 4c1dff9abeb383ca58dbfcbc27e1bd464d2ad2ea Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Sun, 9 Jan 2022 23:00:13 +0100 Subject: gnu: opencascade-occt: Update to 7.6.0. * gnu/packages/maths.scm (opencascade-occt): Update to 7.6.0. [native-inputs]: Add fontconfig. Signed-off-by: Guillaume Le Vaillant --- gnu/packages/maths.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index e37ed7dd35..06bf081a27 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -2708,7 +2708,7 @@ Open CASCADE library.") (define-public opencascade-occt (package (name "opencascade-occt") - (version "7.3.0p3") + (version "7.6.0") (source (origin (method git-fetch) @@ -2720,7 +2720,7 @@ Open CASCADE library.") version))))) (file-name (git-file-name name version)) (sha256 - (base32 "0bdywwxb6mk0ykbiajlvsb37295akqjp0a60y672qjfa67k0ljv4")) + (base32 "1rcwm9fkx0j4wrsyikb6g7qd611kpry7dand5dzdjvs5vzd13zvd")) (modules '((guix build utils))) (snippet '(begin @@ -2757,6 +2757,7 @@ Open CASCADE library.") "-DCMAKE_EXPORT_NO_PACKAGE_REGISTRY=ON" "-DCMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY=ON" "-UCMAKE_INSTALL_LIBDIR"))) + (native-inputs (list fontconfig)) (inputs (list doxygen ;("freeimage" ,freeimage) -- cgit v1.3 From 4a7bbfeef66c550b1810f09bb1c7e663091602b0 Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Sun, 9 Jan 2022 23:04:57 +0100 Subject: gnu: kicad: Update to 6.0.1. * gnu/packages/engineering.scm (kicad): Update to 6.0.1. Applied guix style command. [native-inputs]: Remove kicad-i18n. Use new syntax. [inputs]: Add bash-minimal, gtk+ and use opencascade-occt instead of opencascade-oce. Use new syntax. [arguments]: Remove phase install-translations. (kicad-doc): Update to 6.0.1. [native-inputs]: Add ruby-asciidoctor. Simplify inputs. (kicad-symbols, kicad-footprints, kicad-packages3d, kicad-templates): Update to 6.0.1. Signed-off-by: Guillaume Le Vaillant --- gnu/packages/engineering.scm | 145 +++++++++++++++++++++---------------------- 1 file changed, 70 insertions(+), 75 deletions(-) diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index ca665385bc..753085508c 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -25,7 +25,7 @@ ;;; Copyright © 2021 Gerd Heber ;;; Copyright © 2021, 2022 Guillaume Le Vaillant ;;; Copyright © 2021 Ivan Gankevich -;;; Copyright © 2021 Petr Hodina +;;; Copyright © 2021, 2022 Petr Hodina ;;; Copyright © 2021 Foo Chuan Wei ;;; Copyright © 2022 Evgeny Pisemsky ;;; @@ -65,6 +65,7 @@ #:use-module (gnu packages algebra) #:use-module (gnu packages autotools) #:use-module (gnu packages base) + #:use-module (gnu packages bash) #:use-module (gnu packages bdw-gc) #:use-module (gnu packages bison) #:use-module (gnu packages boost) @@ -119,6 +120,7 @@ #:use-module (gnu packages python-xyz) #:use-module (gnu packages qt) #:use-module (gnu packages readline) + #:use-module (gnu packages ruby) #:use-module (gnu packages serialization) #:use-module (gnu packages sqlite) #:use-module (gnu packages swig) @@ -928,28 +930,28 @@ Emacs).") (define-public kicad (package (name "kicad") - (version "5.1.12") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gitlab.com/kicad/code/kicad.git") - (commit version))) - (sha256 - (base32 "0kgikchqxds3mp71nkg307mr4c1dgv8akbmksz4w9x8jg4i1mfqq")) - (file-name (git-file-name name version)))) + (version "6.0.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.com/kicad/code/kicad.git") + (commit version))) + (sha256 + (base32 + "1vpcbhhw8844hm6vpk3kk405wak531pvcvcpc66z0b48iprk3imr")) + (file-name (git-file-name name version)))) (build-system cmake-build-system) (arguments `(#:out-of-source? #t - #:tests? #f ; no tests + #:tests? #f ;no tests #:build-type "Release" #:configure-flags - ,#~(list - "-DKICAD_SCRIPTING_PYTHON3=ON" - "-DKICAD_SCRIPTING_WXPYTHON_PHOENIX=ON" - "-DCMAKE_BUILD_WITH_INSTALL_RPATH=TRUE" - (string-append "-DOCC_INCLUDE_DIR=" - #$(this-package-input "opencascade-occt") "/include/opencascade")) + ,#~(list "-DKICAD_SCRIPTING_PYTHON3=ON" + (string-append "-DOCC_INCLUDE_DIR=" + #$(this-package-input "opencascade-occt") + "/include/opencascade") + "-DKICAD_SCRIPTING_WXPYTHON_PHOENIX=ON" + "-DCMAKE_BUILD_WITH_INSTALL_RPATH=TRUE") #:phases (modify-phases %standard-phases (add-after 'unpack 'fix-ngspice-detection @@ -969,70 +971,63 @@ Emacs).") (substitute* "common/lib_tree_model.cpp" (("#include " all) (string-append "#include \n" all))))) - (add-after 'install 'install-translations - (lambda* (#:key inputs outputs #:allow-other-keys) - (copy-recursively (assoc-ref inputs "kicad-i18n") - (assoc-ref outputs "out")) - #t)) (add-after 'install 'wrap-program ;; Ensure correct Python at runtime. (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (python (assoc-ref inputs "python")) (file (string-append out "/bin/kicad")) - (path (string-append - out - "/lib/python" - ,(version-major+minor - (package-version python)) - "/site-packages:" - (getenv "GUIX_PYTHONPATH")))) + (path (string-append out "/lib/python" + ,(version-major+minor (package-version + python)) + "/site-packages:" + (getenv "GUIX_PYTHONPATH")))) (wrap-program file - `("GUIX_PYTHONPATH" ":" prefix (,path)) + `("GUIX_PYTHONPATH" ":" prefix + (,path)) `("PATH" ":" prefix - (,(string-append python "/bin:"))))) - #t))))) + (,(string-append python "/bin:")))))))))) (native-search-paths (list (search-path-specification - (variable "KICAD") ; to find kicad-doc + (variable "KICAD") ;to find kicad-doc (files '(""))) (search-path-specification (variable "KICAD_TEMPLATE_DIR") (files '("share/kicad/template"))) (search-path-specification - (variable "KICAD_SYMBOL_DIR") ; symbol path + (variable "KICAD_SYMBOL_DIR") ;symbol path (files '("share/kicad/library"))) (search-path-specification - (variable "KISYSMOD") ; footprint path + (variable "KISYSMOD") ;footprint path (files '("share/kicad/modules"))) (search-path-specification - (variable "KISYS3DMOD") ; 3D model path + (variable "KISYS3DMOD") ;3D model path (files '("share/kicad/modules/packages3d"))))) - (native-inputs - `(("boost" ,boost) - ("desktop-file-utils" ,desktop-file-utils) - ("gettext" ,gettext-minimal) - ("kicad-i18n" ,kicad-i18n) - ("pkg-config" ,pkg-config) - ("swig" ,swig) - ("zlib" ,zlib))) - (inputs - `(("cairo" ,cairo) - ("curl" ,curl) - ("glew" ,glew) - ("glm" ,glm) - ("hicolor-icon-theme" ,hicolor-icon-theme) - ("libngspice" ,libngspice) - ("libsm" ,libsm) - ("mesa" ,mesa) - ("opencascade-occt" ,opencascade-occt) - ("openssl" ,openssl) - ("python" ,python-wrapper) - ("wxwidgets" ,wxwidgets) - ("wxpython" ,python-wxpython))) + (native-inputs (list boost + desktop-file-utils + gettext-minimal + pkg-config + swig + zlib)) + (inputs (list bash-minimal + cairo + curl + glew + glm + hicolor-icon-theme + libngspice + libsm + mesa + opencascade-occt + openssl + python-wrapper + gtk+ + wxwidgets + python-wxpython)) (home-page "https://www.kicad.org/") (synopsis "Electronics Design Automation Suite") - (description "Kicad is a program for the formation of printed circuit + (description + "Kicad is a program for the formation of printed circuit boards and electrical circuits. The software has a number of programs that perform specific functions, for example, pcbnew (Editing PCB), eeschema (editing electrical diagrams), gerbview (viewing Gerber files) and others.") @@ -1077,23 +1072,23 @@ translations for KiCad.") (file-name (git-file-name name version)) (sha256 (base32 - "026cz4zm903i75yhdvzha2nsnk4c0w07q3gd3xw3jmsmn18imgm3")))) + "0zaafa9ckvdgsim6nhp3flj4r2fzzmwn054lc3iijwgga82qy7il")))) (build-system cmake-build-system) (arguments `(#:configure-flags (list "-DBUILD_FORMATS=html") - #:tests? #f ; no test suite + #:tests? #f ;no test suite #:phases (modify-phases %standard-phases (delete 'build)))) - (native-inputs - `(("asciidoc" ,asciidoc) - ("gettext" ,gettext-minimal) - ("git" ,git-minimal) - ("perl" ,perl) - ("perl-unicode-linebreak" ,perl-unicode-linebreak) - ("perl-yaml-tiny" ,perl-yaml-tiny) - ("po4a" ,po4a) - ("source-highlight" ,source-highlight))) + (native-inputs (list asciidoc + gettext-minimal + git-minimal + perl + perl-unicode-linebreak + perl-yaml-tiny + po4a + ruby-asciidoctor + source-highlight)) (home-page "https://kicad.org") (synopsis "KiCad official documentation") (description "This repository contains the official KiCad documentation.") @@ -1111,7 +1106,7 @@ translations for KiCad.") (file-name (git-file-name name version)) (sha256 (base32 - "1zdajim409570xzis53kmrbdcf7000v2vmc90f49h214lrx2zhr2")))) + "1azjx1bmxaz8bniyw75lq60mc8hvay00jn9qdc2zp7isy3c9ibp0")))) (build-system cmake-build-system) (arguments `(#:tests? #f)) ; no tests exist @@ -1140,7 +1135,7 @@ libraries.") (file-name (git-file-name name version)) (sha256 (base32 - "0qpii55dgv2gxqg1qq0dngdnbb9din790qi5qv0l6qqrzx843h5s")))) + "0mv9xs0mmmfn0yhzx1v55r5app13ckagb16249rabyiz3v5crdpb")))) (synopsis "Official KiCad footprint libraries") (description "This package contains the official KiCad footprint libraries."))) @@ -1157,7 +1152,7 @@ libraries.") (file-name (git-file-name name version)) (sha256 (base32 - "12w7m5nbk9kcnlnlg4sk1sd7xgb9i2kxfi0jcbd0phs89qyl7wjr")))) + "0vwcbzq42hzjl4f0zjaswmiff1x59hv64g5n00mx1gl0gwngnyla")))) (synopsis "Official KiCad 3D model libraries") (description "This package contains the official KiCad 3D model libraries."))) @@ -1174,7 +1169,7 @@ libraries.") (file-name (git-file-name name version)) (sha256 (base32 - "1fbhn1l3j2rwc29aida9b408wif55i23bp9ddcs7dvf83smjm05g")))) + "13h9ly6amiwm7zkwa2fd9730kh295ls8j95fszlfjp9rczv2yyzm")))) (synopsis "Official KiCad project and worksheet templates") (description "This package contains the official KiCad project and worksheet templates."))) -- cgit v1.3 From 5c2032f7c94d6381144afe571c82880eab5a9c1c Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Sun, 9 Jan 2022 23:08:42 +0100 Subject: gnu: Remove kicad-i18n. * gnu/packages/engineering.scm (kicad-i18n): Remove variable. i18n is handled directly now in kicad@6.0.0 package source tree. Signed-off-by: Guillaume Le Vaillant --- gnu/packages/engineering.scm | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index 753085508c..71fbbef78d 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -1033,33 +1033,6 @@ perform specific functions, for example, pcbnew (Editing PCB), eeschema (editing electrical diagrams), gerbview (viewing Gerber files) and others.") (license license:gpl3+))) -(define kicad-i18n - (package - (name "kicad-i18n") - (version (package-version kicad)) - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://gitlab.com/kicad/code/kicad-i18n.git") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0y51l0r62cnxkvpc21732p3cx7pjvaqjih8193502hlv9kv1j9p6")))) - (build-system cmake-build-system) - (arguments - `(#:phases - (modify-phases %standard-phases - (delete 'build) - (delete 'check)))) - (native-inputs - `(("gettext" ,gettext-minimal))) - (home-page (package-home-page kicad)) - (synopsis "KiCad GUI translations") - (description "This package contains the po files that are used for the GUI -translations for KiCad.") - (license license:gpl3+))) - (define-public kicad-doc (package (name "kicad-doc") -- cgit v1.3 From c1539e1385e2287c5f6eb0a69efdb1d539fe15f5 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Fri, 11 Feb 2022 11:18:59 +0100 Subject: gnu: autogen: Fix compilation. * gnu/packages/autogen.scm (autogen)[source]: Add 'modules' and 'snippet'. --- gnu/packages/autogen.scm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/gnu/packages/autogen.scm b/gnu/packages/autogen.scm index 1fe742bbae..7213776f07 100644 --- a/gnu/packages/autogen.scm +++ b/gnu/packages/autogen.scm @@ -40,7 +40,13 @@ (uri (string-append "mirror://gnu/autogen/rel" version "/autogen-" version ".tar.xz")) (sha256 - (base32 "16mlbdys8q4ckxlvxyhwkdnh1ay9f6g0cyp1kylkpalgnik398gq")))) + (base32 "16mlbdys8q4ckxlvxyhwkdnh1ay9f6g0cyp1kylkpalgnik398gq")) + (modules '((guix build utils))) + (snippet + ;; Address '-Werror=format-overflow' error. + '(substitute* "getdefs/getdefs.c" + (("def_bf\\[[[:space:]]*MAXNAMELEN[[:space:]]*\\]") + "def_bf[MAXNAMELEN + 10]"))))) (build-system gnu-build-system) (native-inputs (list pkg-config which)) (inputs (list guile-2.2 perl)) ; for doc generator mdoc -- cgit v1.3 From af57d1bf6c46f47d82dbc234dde1e16fa8634e9d Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Fri, 11 Feb 2022 15:58:56 +0100 Subject: gexp: does not honor (%guile-for-build). * guix/gexp.scm (computed-file-compiler): Default to (default-guile). That way, lowering of is not affected by the '%guile-for-build' parameter. (file-union): Add #:guile parameter and honor it. * gnu/packages/ruby.scm (ruby-tzinfo-data): Pass #:guile to 'file-union'. --- gnu/packages/ruby.scm | 11 +++++++++-- guix/gexp.scm | 18 ++++++++---------- 2 files changed, 17 insertions(+), 12 deletions(-) diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index b242aa8295..121948b4fc 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014, 2015 Pjotr Prins -;;; Copyright © 2014, 2015, 2016, 2017, 2021 Ludovic Courtès +;;; Copyright © 2014-2017, 2021-2022 Ludovic Courtès ;;; Copyright © 2014, 2015 Mark H Weaver ;;; Copyright © 2014, 2015 David Thompson ;;; Copyright © 2015, 2019 Ricardo Wurmus @@ -5717,7 +5717,14 @@ aware transformations between times in different time zones.") (uri "https://data.iana.org/time-zones/releases/tzcode2021a.tar.gz.asc") (sha256 (base32 - "1qhlj4lr810s47s1lwcvv1sgvg2sflf98w4sbg1lc8wzv5qxxv7g"))))))))) + "1qhlj4lr810s47s1lwcvv1sgvg2sflf98w4sbg1lc8wzv5qxxv7g"))))) + + ;; XXX: Explicitly depend on 'guile-final', which was previously + ;; implied via the '%guile-for-build' fluid but not explicit. + ;; TODO: Remove this argument on the next rebuild cycle. + #:guile (module-ref (resolve-interface + '(gnu packages commencement)) + 'guile-final))))) (synopsis "Data from the IANA Time Zone database") (description "This library provides @code{TZInfo::Data}, which contains data from the diff --git a/guix/gexp.scm b/guix/gexp.scm index 01dca902f7..8675e605a0 100644 --- a/guix/gexp.scm +++ b/guix/gexp.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès +;;; Copyright © 2014-2022 Ludovic Courtès ;;; Copyright © 2018 Clément Lassieur ;;; Copyright © 2018 Jan Nieuwenhuizen ;;; Copyright © 2019, 2020 Mathieu Othacehe @@ -597,13 +597,10 @@ This is the declarative counterpart of 'gexp->derivation'." ;; gexp. (match file (($ name gexp guile options) - (if guile - (mlet %store-monad ((guile (lower-object guile system - #:target target))) - (apply gexp->derivation name gexp #:guile-for-build guile - #:system system #:target target options)) - (apply gexp->derivation name gexp - #:system system #:target target options))))) + (mlet %store-monad ((guile (lower-object (or guile (default-guile)) + system #:target target))) + (apply gexp->derivation name gexp #:guile-for-build guile + #:system system #:target target options))))) (define-record-type (%program-file name gexp guile path) @@ -2087,7 +2084,7 @@ This is the declarative counterpart of 'text-file*'." (computed-file name build)) -(define (file-union name files) +(define* (file-union name files #:key guile) "Return a that builds a directory containing all of FILES. Each item in FILES must be a two-element list where the first element is the file name to use in the new directory, and the second element is a gexp @@ -2121,7 +2118,8 @@ This yields an 'etc' directory containing these two files." (mkdir-p (dirname (ungexp target))) (symlink (ungexp source) (ungexp target)))))) - files))))))) + files))))) + #:guile guile)) (define* (directory-union name things #:key (copy? #f) (quiet? #f) -- cgit v1.3 From 5996aab354831d942b10253bc70217a4f2e6a247 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Fri, 11 Feb 2022 17:24:39 +0100 Subject: build-system/texlive: Be explicit about #:guile-for-build. This ensures package derivations are not a function of the value of (%guile-for-build). * guix/build-system/texlive.scm (texlive-build): Explicitly pass #:guile-for-build to 'gexp->derivation'. --- guix/build-system/texlive.scm | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/guix/build-system/texlive.scm b/guix/build-system/texlive.scm index 09907c67d8..dbb72cd24a 100644 --- a/guix/build-system/texlive.scm +++ b/guix/build-system/texlive.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2017 Ricardo Wurmus -;;; Copyright © 2021 Ludovic Courtès +;;; Copyright © 2021-2022 Ludovic Courtès ;;; Copyright © 2021 Thiago Jung Bauermann ;;; ;;; This file is part of GNU Guix. @@ -177,10 +177,13 @@ level package ID." (map search-path-specification->sexp search-paths))))))) - (gexp->derivation name builder - #:system system - #:target #f - #:substitutable? substitutable?)) + (mlet %store-monad ((guile (package->derivation (or guile (default-guile)) + system #:graft? #f))) + (gexp->derivation name builder + #:system system + #:target #f + #:substitutable? substitutable? + #:guile-for-build guile))) (define texlive-build-system (build-system -- cgit v1.3 From 076e825dc5d585943ce820a279fffe4af09757fb Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Fri, 11 Feb 2022 11:20:19 +0100 Subject: gnu: guile: Add version 3.0.8 as 'guile-3.0-latest'. * gnu/packages/guile.scm (guile-3.0-latest): Set to 3.0.8. --- gnu/packages/guile.scm | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index 89055a8f8b..cad5b91b9e 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -389,7 +389,21 @@ without requiring the source code to be rewritten.") "share/guile/site/3.0"))))))) (define-public guile-3.0-latest - guile-3.0) + (package + (inherit guile-3.0) + (version "3.0.8") + (source (origin + (inherit (package-source guile-3.0)) + (uri (string-append "mirror://gnu/guile/guile-" + version ".tar.xz")) + (sha256 + (base32 + "04wagg0zr0sib0w9ly5jm91jplgfigzfgmy8fjdlx07jaq50d9ys")))) + (arguments + (substitute-keyword-arguments (package-arguments guile-3.0) + ;; Guile 3.0.8 is bit-reproducible when built in parallel, thanks to + ;; its multi-stage build process for cross-module inlining. + ((#:parallel-build? _ #f) #t))))) (define-public guile-3.0-for-lokke ;; Work around a bug in 3.0.7 regarding #nil handling by psyntax: -- cgit v1.3 From 2b57d6b6bb03a6047670e7f8dc143c2a010fefe1 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Fri, 11 Feb 2022 11:24:57 +0100 Subject: gnu: lokke: Build with Guile 3.0.8. * gnu/packages/guile.scm (guile-3.0-for-lokke): Remove. * gnu/packages/patches/guile-3.0.7-psyntax-nil.patch: Remove. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. * gnu/packages/guile-xyz.scm (lokke)[native-inputs]: Replace GUILE-3.0-FOR-LOKKE by GUILE-3.0-LATEST. --- gnu/local.mk | 1 - gnu/packages/guile-xyz.scm | 5 +- gnu/packages/guile.scm | 11 ---- gnu/packages/patches/guile-3.0.7-psyntax-nil.patch | 63 ---------------------- 4 files changed, 4 insertions(+), 76 deletions(-) delete mode 100644 gnu/packages/patches/guile-3.0.7-psyntax-nil.patch diff --git a/gnu/local.mk b/gnu/local.mk index e423732e35..a706409516 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1239,7 +1239,6 @@ dist_patch_DATA = \ %D%/packages/patches/guile-3.0-relocatable.patch \ %D%/packages/patches/guile-linux-syscalls.patch \ %D%/packages/patches/guile-3.0-linux-syscalls.patch \ - %D%/packages/patches/guile-3.0.7-psyntax-nil.patch \ %D%/packages/patches/guile-fibers-destroy-peer-schedulers.patch \ %D%/packages/patches/guile-fibers-wait-for-io-readiness.patch \ %D%/packages/patches/guile-gdbm-ffi-support-gdbm-1.14.patch \ diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 6e1bbb71e9..b75687cd3c 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -5011,7 +5011,10 @@ HTTP handler to implement a HTTP GraphQL endpoint.") libtool gnu-gettext pkg-config - guile-3.0-for-lokke)) + + ;; Use Guile >= 3.0.8 to work around + ;; . + guile-3.0-latest)) (inputs (list pcre2)) (synopsis "Clojure implementation in Guile") diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index cad5b91b9e..f74a389da5 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -405,17 +405,6 @@ without requiring the source code to be rewritten.") ;; its multi-stage build process for cross-module inlining. ((#:parallel-build? _ #f) #t))))) -(define-public guile-3.0-for-lokke - ;; Work around a bug in 3.0.7 regarding #nil handling by psyntax: - ;; . TODO: Replace by 3.0.8 when it's out. - (hidden-package - (package/inherit guile-3.0 - (version (string-append (package-version guile-3.0) ".1")) - (source (origin - (inherit (package-source guile-3.0)) - (patches (cons (search-patch "guile-3.0.7-psyntax-nil.patch") - (origin-patches (package-source guile-3.0))))))))) - (define-public guile-3.0/fixed ;; A package of Guile that's rarely changed. It is the one used in the ;; `base' module, and thus changing it entails a full rebuild. diff --git a/gnu/packages/patches/guile-3.0.7-psyntax-nil.patch b/gnu/packages/patches/guile-3.0.7-psyntax-nil.patch deleted file mode 100644 index 7a24e6e9ef..0000000000 --- a/gnu/packages/patches/guile-3.0.7-psyntax-nil.patch +++ /dev/null @@ -1,63 +0,0 @@ -commit d79a226359d28f4a1dc5df136e5544d699903a96 -Author: Rob Browning -Date: Sat Jul 3 14:01:12 2021 -0500 - - Fix crash on #nil in syntaxes - - In 3.0.7 (after 0cc799185576712d69f11fc794454f2f5447bef7 "Ensure - that (syntax ()) results in ("), the use of #nil in syntax-rules - expansions like this: - - (define-syntax foo - (syntax-rules () - ((_ x) (eq? #nil x)))) - - (foo #t) - - could cause a crash that looks like this: - - ice-9/psyntax.scm:2795:12: In procedure syntax-violation: - Syntax error: - unknown location: unexpected syntax in form () - - To fix it, add another special case (the commit mentioned above - special-cased the empty list) to preserve #nil - - * module/ice-9/psyntax.scm (gen-syntax): Preserve #nil. - * test-suite/tests/syntax.test: Test #nil in syntax expansions. - - Closes: 49305 - -diff --git a/module/ice-9/psyntax.scm b/module/ice-9/psyntax.scm -index 663d9275a..bd4bd6723 100644 ---- a/module/ice-9/psyntax.scm -+++ b/module/ice-9/psyntax.scm -@@ -2157,6 +2157,7 @@ - (lambda () - (gen-syntax src #'(e1 e2 ...) r maps ellipsis? mod)) - (lambda (e maps) (values (gen-vector e) maps)))) -+ (x (eq? (syntax->datum #'x) #nil) (values '(quote #nil) maps)) - (() (values '(quote ()) maps)) - (_ (values `(quote ,e) maps)))))) - -diff --git a/test-suite/tests/syntax.test b/test-suite/tests/syntax.test -index a2999ac43..510e7104d 100644 ---- a/test-suite/tests/syntax.test -+++ b/test-suite/tests/syntax.test -@@ -1684,6 +1684,16 @@ - (hash interpreted most-positive-fixnum) - (hash compiled most-positive-fixnum)))) - -+(with-test-prefix "#nil in syntaxes" -+ (pass-if-equal "does not crash" -+ 42 -+ (let () -+ (define-syntax foo -+ (syntax-rules () -+ ;; In 3.0.7 this would crash with -+ ;; unknown location: unexpected syntax in form () -+ ((_ x) (when (eq? x #nil) 42)))) -+ (foo #nil)))) - - ;;; Local Variables: - ;;; eval: (put 'pass-if-syntax-error 'scheme-indent-function 1) -- cgit v1.3 From bb808caf2f62f685667d62fcc838113e5d876462 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 11 Feb 2022 19:14:18 +0100 Subject: gnu: lagrange: Update to 1.10.5. * gnu/packages/web-browsers.scm (lagrange): Update to 1.10.5. --- gnu/packages/web-browsers.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm index 0463ed7e5c..fa5a5fb00f 100644 --- a/gnu/packages/web-browsers.scm +++ b/gnu/packages/web-browsers.scm @@ -692,7 +692,7 @@ is fully configurable and extensible in Common Lisp.") (define-public lagrange (package (name "lagrange") - (version "1.10.4") + (version "1.10.5") (source (origin (method url-fetch) @@ -700,7 +700,7 @@ is fully configurable and extensible in Common Lisp.") (string-append "https://git.skyjake.fi/skyjake/lagrange/releases/" "download/v" version "/lagrange-" version ".tar.gz")) (sha256 - (base32 "0jlk4399sibfizy6kv438iiwni9c5i6g1yk3hjma6n435653mpsr")) + (base32 "1kimdy0k26l3b673sg12gd0d94mxx5lycyxlmla9hxxcsfn2rlqy")) (modules '((guix build utils))) (snippet '(begin -- cgit v1.3 From 6d3714478b709d4e420e709604c91f5c2f9d3910 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 11 Feb 2022 19:21:59 +0100 Subject: gnu: emacs-paren-face: Update to 1.0.8. * gnu/packages/emacs-xyz.scm (emacs-paren-face): Update to 1.0.8. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 8397162c1d..73bd240eda 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -4920,7 +4920,7 @@ Lisp.") (define-public emacs-paren-face (package (name "emacs-paren-face") - (version "1.0.7") + (version "1.0.8") (source (origin (method git-fetch) @@ -4929,7 +4929,7 @@ Lisp.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1zyrrrr8rmksr3rfsv96psk1z15wbbx1bvcfp3hf5ciyc2n79000")))) + (base32 "13d8psgd2j3vqmgwwf62gwyq7h6qlj8rrs31fxwjqmzzdblwqy1y")))) (build-system emacs-build-system) (home-page "https://github.com/tarsius/paren-face") (synopsis "Face for parentheses in Lisp modes") -- cgit v1.3 From 54b1d115c49e14b0bcca05b2a1d31e0f5451c53c Mon Sep 17 00:00:00 2001 From: Liliana Marie Prikler Date: Thu, 10 Feb 2022 21:56:49 +0100 Subject: gnu: Add emacs-nyan-mode. * gnu/packages/emacs-xyz.scm (emacs-nyan-mode): New variable. --- gnu/packages/emacs-xyz.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 73bd240eda..e83250008e 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -5592,6 +5592,40 @@ which integrates into existing mode-line without requiring a minor mode or configuration.") (license license:gpl3+)))) +(define-public emacs-nyan-mode + (package + (name "emacs-nyan-mode") + (version "1.1.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/TeMPOraL/nyan-mode/") + (commit (string-append "v" version)))) + (sha256 + (base32 "0d0hdjliad8afz4br38gwidph9zhmm5s09y45n95kqlazq62jfsx")))) + (build-system emacs-build-system) + (arguments + (list + #:include #~(cons* "img/" "mus/" %default-include) + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'patch-sources + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "nyan-mode.el" + (("mplayer ") + (string-append (search-input-file inputs "bin/mplayer") + " ")))))))) + (inputs (list mplayer)) + (home-page "https://github.com/TeMPOraL/nyan-mode/") + (synopsis "Nyan Cat as buffer position indicator") + (description + "Nyan mode is an analog indicator of your position in the buffer. The cat +should go from left to right in your mode-line, as you move your point from 0% +to 100%. You can click on the rainbow or the empty space to scroll backwards +and forwards and also animate it.") + (license license:gpl3+))) + (define-public emacs-smart-mode-line (package (name "emacs-smart-mode-line") -- cgit v1.3 From eccb1e0964e8e93a07b885c3a64033306735d179 Mon Sep 17 00:00:00 2001 From: Liliana Marie Prikler Date: Thu, 27 Jan 2022 21:47:11 +0100 Subject: gnu: mutter: Disable timeline tests. * gnu/packages/gnome.scm (mutter)[disable-problematic-tests]: Also disable timeline tests. --- gnu/packages/gnome.scm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index beab19805b..bb5b037736 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -7478,7 +7478,12 @@ to display dialog boxes from the commandline and shell scripts.") ;; expression paragraph. For an explanation, see: info '(sed) ;; Multiline techniques'. (invoke "sed" "/./{H;$!d} ; x ; s/^.*native-headless.*$//" - "-i" "src/tests/meson.build"))) + "-i" "src/tests/meson.build") + ;; Timeline tests may unexpectedly fail on missed frames, so + ;; let's disable them as well. + ;; See + (substitute* "src/tests/clutter/conform/meson.build" + (("'timeline.*',") "")))) (replace 'check (lambda* (#:key tests? test-options parallel-tests? #:allow-other-keys) -- cgit v1.3 From 59adc621affeaadf1ff54508091a11f91704056b Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 11 Feb 2022 21:02:57 +0100 Subject: gnu: crawl: Update to 0.28.0. * gnu/packages/games.scm (crawl): Update to 0.28.0. [inputs]: Add BASH-MINIMAL. * gnu/packages/patches/crawl-upgrade-saves.patch: Update for 0.28. --- gnu/packages/games.scm | 7 ++++--- gnu/packages/patches/crawl-upgrade-saves.patch | 14 +++++++------- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 9a669621dd..06feb897eb 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -6390,14 +6390,14 @@ fish. The whole game is accompanied by quiet, comforting music.") (define-public crawl (package (name "crawl") - (version "0.27.1") + (version "0.28.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/crawl/crawl/releases/download/" version "/stone_soup-" version "-nodeps.tar.xz")) (sha256 - (base32 "0nkhyhrrma8gmwxp15j84cn1k2yvyq7ar9rd0j2qjjlv2kdis5z2")) + (base32 "0irg5w4m127fxcj037kyp9vnyqyq1fi4q64rn6yq92w8z1lf2sss")) (patches (search-patches "crawl-upgrade-saves.patch")))) (build-system gnu-build-system) (inputs @@ -6406,7 +6406,8 @@ fish. The whole game is accompanied by quiet, comforting music.") ("sqlite" ,sqlite) ("zlib" ,zlib))) (native-inputs - `(("bison" ,bison) + `(("bash" ,bash-minimal) + ("bison" ,bison) ("flex" ,flex) ("perl" ,perl) ("python" ,python-wrapper) diff --git a/gnu/packages/patches/crawl-upgrade-saves.patch b/gnu/packages/patches/crawl-upgrade-saves.patch index 4c0b3a427b..720a94f3e5 100644 --- a/gnu/packages/patches/crawl-upgrade-saves.patch +++ b/gnu/packages/patches/crawl-upgrade-saves.patch @@ -8,15 +8,15 @@ and crawl would never upgrade saves. diff -ur a/source/database.cc b/source/database.cc --- a/source/database.cc 2018-08-09 21:49:26.000000000 -0400 +++ b/source/database.cc 2018-10-07 18:06:41.022445789 -0400 -@@ -25,6 +25,7 @@ +@@ -24,6 +24,7 @@ + #include "stringutil.h" #include "syscalls.h" - #include "threads.h" #include "unicode.h" +#include "version.h" // TextDB handles dependency checking the db vs text files, creating the // db, loading, and destroying the DB. -@@ -55,6 +56,7 @@ +@@ -54,6 +55,7 @@ vector _input_files; DBM* _db; string timestamp; @@ -62,16 +62,16 @@ diff -ur a/source/database.cc b/source/database.cc for (const string &file : _input_files) { string full_input_path = _directory + file; -@@ -245,7 +253,7 @@ +@@ -246,7 +254,7 @@ ts += buf; } -- if (no_files && timestamp.empty()) -+ if (no_files && timestamp.empty() && version.empty()) +- if (no_files) ++ if (no_files && version.empty()) { // No point in empty databases, although for simplicity keep ones // for disappeared translations for now. -@@ -313,7 +321,10 @@ +@@ -312,7 +320,10 @@ _store_text_db(full_input_path, _db); } } -- cgit v1.3 From 32be3791a23135cea7a87bcbca37f0d6f840dda1 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 11 Feb 2022 21:05:13 +0100 Subject: gnu: crawl: Remove input labels. * gnu/packages/games.scm (crawl)[native-inputs, inputs]: Remove labels. --- gnu/packages/games.scm | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 06feb897eb..fb67ac9595 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -6401,18 +6401,15 @@ fish. The whole game is accompanied by quiet, comforting music.") (patches (search-patches "crawl-upgrade-saves.patch")))) (build-system gnu-build-system) (inputs - `(("lua51" ,lua-5.1) - ("ncurses" ,ncurses) - ("sqlite" ,sqlite) - ("zlib" ,zlib))) + (list lua-5.1 ncurses sqlite zlib)) (native-inputs - `(("bash" ,bash-minimal) - ("bison" ,bison) - ("flex" ,flex) - ("perl" ,perl) - ("python" ,python-wrapper) - ("python-pyyaml" ,python-pyyaml) - ("pkg-config" ,pkg-config))) + (list bash-minimal + bison + flex + perl + pkg-config + python-wrapper + python-pyyaml)) (arguments `(#:make-flags (let* ((sqlite (assoc-ref %build-inputs "sqlite")) -- cgit v1.3 From 19753d9f65c0201b98a63acd1805eb580171f560 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 11 Feb 2022 21:06:49 +0100 Subject: gnu: crawl: Use G-epressions. * gnu/packages/games.scm (crawl)[arguments]: Use G-expressions. <#:phases>: Remove trailing #T. Remove unnecessary arguments. (crawl-tiles)[arguments]: Use G-expressions. --- gnu/packages/games.scm | 83 +++++++++++++++++++++++++------------------------- 1 file changed, 42 insertions(+), 41 deletions(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index fb67ac9595..5d0240694e 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -6411,40 +6411,40 @@ fish. The whole game is accompanied by quiet, comforting music.") python-wrapper python-pyyaml)) (arguments - `(#:make-flags - (let* ((sqlite (assoc-ref %build-inputs "sqlite")) - (out (assoc-ref %outputs "out"))) - (list (string-append "SQLITE_INCLUDE_DIR=" sqlite "/include") - (string-append "prefix=" out) - "SAVEDIR=~/.crawl" - ;; Don't compile with SSE on systems which don't have it. - ,@(match (%current-system) + (list + #:make-flags + #~(list (string-append "SQLITE_INCLUDE_DIR=" + #$(this-package-input "sqlite") + "/include") + (string-append "prefix=" #$output) + "SAVEDIR=~/.crawl" + ;; Don't compile with SSE on systems which don't have it. + #$@(match (%current-system) ((or "i686-linux" "x86_64-linux") '()) (_ '("NOSSE=TRUE"))) - ;; don't build any bundled dependencies - "BUILD_LUA=" - "BUILD_SQLITE=" - "BUILD_ZLIB=" - "-Csource")) - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'find-SDL-image - (lambda _ - (substitute* "source/windowmanager-sdl.cc" - (("SDL_image.h") "SDL2/SDL_image.h")) - #t)) - (delete 'configure) - (replace 'check - (lambda* (#:key inputs outputs make-flags #:allow-other-keys) - (setenv "HOME" (getcwd)) - ;; Fake a terminal for the test cases. - (setenv "TERM" "xterm-256color") - ;; Run the tests that don't require a debug build. - (apply invoke "make" "nondebugtest" - (format #f "-j~d" (parallel-job-count)) - ;; Force command line build for test cases. - (append make-flags '("GAME=crawl" "TILES=")))))))) + ;; don't build any bundled dependencies + "BUILD_LUA=" + "BUILD_SQLITE=" + "BUILD_ZLIB=" + "-Csource") + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'find-SDL-image + (lambda _ + (substitute* "source/windowmanager-sdl.cc" + (("SDL_image.h") "SDL2/SDL_image.h")))) + (delete 'configure) + (replace 'check + (lambda* (#:key make-flags #:allow-other-keys) + (setenv "HOME" (getcwd)) + ;; Fake a terminal for the test cases. + (setenv "TERM" "xterm-256color") + ;; Run the tests that don't require a debug build. + (apply invoke "make" "nondebugtest" + (format #f "-j~d" (parallel-job-count)) + ;; Force command line build for test cases. + (append make-flags '("GAME=crawl" "TILES=")))))))) (synopsis "Roguelike dungeon crawler game") (description "Dungeon Crawl Stone Soup (also known as \"Crawl\" or DCSS for short) is a roguelike adventure through dungeons filled with dangerous @@ -6469,16 +6469,17 @@ monsters in a quest to find the mystifyingly fabulous Orb of Zot.") (substitute-keyword-arguments (package-arguments crawl) ((#:make-flags flags) - `(let ((dejavu (assoc-ref %build-inputs "font-dejavu"))) - (cons* - (string-append "PROPORTIONAL_FONT=" dejavu - "/share/fonts/truetype/DejaVuSans.ttf") - (string-append "MONOSPACED_FONT=" dejavu - "/share/fonts/truetype/DejaVuSansMono.ttf") - "TILES=y" - ;; Rename the executable to allow parallel installation with crawl. - "GAME=crawl-tiles" - ,flags))))) + #~(cons* + (string-append "PROPORTIONAL_FONT=" + #$(this-package-input "font-dejavu") + "/share/fonts/truetype/DejaVuSans.ttf") + (string-append "MONOSPACED_FONT=" + #$(this-package-input "font-dejavu") + "/share/fonts/truetype/DejaVuSansMono.ttf") + "TILES=y" + ;; Rename the executable to allow parallel installation with crawl. + "GAME=crawl-tiles" + #$flags)))) (inputs `(,@(package-inputs crawl) ("font-dejavu" ,font-dejavu) -- cgit v1.3 From 2f2b30817a6167ec8146a69828054e2239f1304c Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 11 Feb 2022 21:54:44 +0100 Subject: gnu: crawl-tiles: Remove input labels. * gnu/packages/games.scm (crawl-tiles)[inputs, native-inputs]: Remove labels. --- gnu/packages/games.scm | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 5d0240694e..80dc788267 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -6481,18 +6481,11 @@ monsters in a quest to find the mystifyingly fabulous Orb of Zot.") "GAME=crawl-tiles" #$flags)))) (inputs - `(,@(package-inputs crawl) - ("font-dejavu" ,font-dejavu) - ("freetype6" ,freetype) - ("glu" ,glu) - ("libpng" ,libpng) - ("sdl2" ,sdl2) - ("sdl2-image" ,sdl2-image) - ("sdl2-mixer" ,sdl2-mixer))) + (modify-inputs (package-inputs crawl) + (prepend font-dejavu freetype glu libpng sdl2 sdl2-image sdl2-mixer))) (native-inputs - `(,@(package-native-inputs crawl) - ("pngcrush" ,pngcrush) - ("which" ,which))) + (modify-inputs (package-native-inputs crawl) + (prepend pngcrush which))) (synopsis "Graphical roguelike dungeon crawler game"))) (define-public lugaru -- cgit v1.3 From fb73809eef1125c01fc1bdf487bc643bf5ce2352 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 11 Feb 2022 22:02:46 +0100 Subject: gnu: emacs-markdown-mode: Update to 2.5. * gnu/packages/emacs-xyz.scm (emacs-markdown-mode): Update to 2.5. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index e83250008e..accd9900b1 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -10318,7 +10318,7 @@ provides the following features: (define-public emacs-markdown-mode (package (name "emacs-markdown-mode") - (version "2.4") + (version "2.5") (source (origin (method git-fetch) @@ -10327,7 +10327,7 @@ provides the following features: (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0g0ja4h651yfabm3k6gbw4y8w7wibc9283fyfzb33kjj38ivl5d7")))) + (base32 "02vw1zsbwa2hc3sxvbpvbldi5cf1xgd5b9l6fwg24d24j6b2af0j")))) (build-system emacs-build-system) (home-page "https://jblevins.org/projects/markdown-mode/") (synopsis "Emacs Major mode for Markdown files") -- cgit v1.3 From 6b4fa09b5b54027708c8792f1b4ef2a4e2611e09 Mon Sep 17 00:00:00 2001 From: "André A. Gomes" Date: Fri, 11 Feb 2022 23:00:54 +0300 Subject: gnu: emacs-desktop-environment: Update to 0.5.0. * gnu/packages/emacs-xyz.scm (emacs-desktop-environment): Update to 0.5.0. [source]: Update URI. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index accd9900b1..3dab4fd9e6 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -21028,17 +21028,17 @@ autosuggestions with: (define-public emacs-desktop-environment (package (name "emacs-desktop-environment") - (version "0.4.0") + (version "0.5.0") (source (origin (method git-fetch) (uri (git-reference - (url "https://gitlab.petton.fr/DamienCassou/desktop-environment") + (url "https://github.com/DamienCassou/desktop-environment") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 - "0s33jncjg8c2xlr90qjk1ishwmwxm9yg0z6n3kzilawcilpxidsh")))) + "03rl1z860jmirjrrg0xsjx0bqk73k043c8bz6049zhndh7pidri7")))) (build-system emacs-build-system) (home-page "https://gitlab.petton.fr/DamienCassou/desktop-environment") (synopsis "Control your GNU/Linux desktop environment from Emacs") -- cgit v1.3 From aff352a5f26c90495582c8d4498b0d4e853d0de3 Mon Sep 17 00:00:00 2001 From: Jai Vetrivelan Date: Fri, 11 Feb 2022 19:45:59 +0530 Subject: gnu: emacs-subed: Update to 1.0.3. * gnu/packages/emacs-xyz.scm (emacs-subed): Update to 1.0.3. [source]: Use url-fetch. [arguments]: Remove phase CHDIR-SUBED, enable tests. [native-inputs]: Add EMACS-BUTTERCUP. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 49 ++++++++++++++++++++++------------------------ 1 file changed, 23 insertions(+), 26 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 3dab4fd9e6..698ffe3b59 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -6200,34 +6200,31 @@ user.") (license license:gpl3+))) (define-public emacs-subed - ;; XXX: Upstream does not tag releases. Commit below matches version bump. - (let ((commit "9a660ed88600e9aff741051c28a9e638cd5df5f5")) - (package - (name "emacs-subed") - (version "1.0.2") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sachac/subed") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1biczfg8cl9sy02yx7nmf5ma7mdjsmi27v93x1gaw4zjwj8fmlkg")))) - (build-system emacs-build-system) - (arguments - `(#:phases (modify-phases %standard-phases - (add-after 'unpack 'chdir-subed - (lambda _ - (chdir "subed")))))) - (home-page "https://elpa.nongnu.org/nongnu/subed.html") - (synopsis "Major mode for editing subtitles") - (description - "@code{subed} is an Emacs major mode for editing subtitles while -playing the corresponding video with mpv. At the moment, the only supported + (package + (name "emacs-subed") + (version "1.0.3") + (source (origin + (method url-fetch) + (uri (string-append "https://elpa.nongnu.org/nongnu/subed-" + version ".tar")) + (sha256 + (base32 + "0wibakmp1lhfyr6sifb7f3jcqp2s5sy0z37ad9n1n9rhj5q8yhzg")))) + (arguments + (list + #:tests? #t + #:test-command #~(list "make" "test-only"))) + (native-inputs + (list emacs-buttercup)) + (build-system emacs-build-system) + (home-page "https://elpa.nongnu.org/nongnu/subed.html") + (synopsis "Major mode for editing subtitles") + (description + "@code{subed} is an Emacs major mode for editing subtitles while playing +the corresponding video with @code{mpv}. At the moment, the only supported formats are SubRip (@file{.srt}), WebVTT (@file{.vtt}), and Advanced SubStation Alpha (@file{.ass}).") - (license license:gpl3+)))) + (license license:gpl3+))) (define-public emacs-miniedit (package -- cgit v1.3 From c334b7c52fe77b68a90b23fbac5c9de7337e607b Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Fri, 11 Feb 2022 23:14:09 +0100 Subject: gnu: ungoogled-chromium: Use 'search-auxiliary-file'. Fixes a regression introduced in 076e825dc5d585943ce820a279fffe4af09757fb whereby "guix build ungoogled-chromium" would fail with: canonicalize-path: No such file or directory: "aux-files/chromium/master-preferences.json" * gnu/packages/chromium.scm (ungoogled-chromium)[arguments]: Use 'search-auxiliary-file' for "master-preferences.json". For some reason, on Guile 3.0.8, 'local-file' would have its (current-source-directory) expand to #f. --- gnu/packages/chromium.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/chromium.scm b/gnu/packages/chromium.scm index 6ecdea41c4..c647381d6c 100644 --- a/gnu/packages/chromium.scm +++ b/gnu/packages/chromium.scm @@ -757,7 +757,9 @@ (resources (string-append lib "/resources")) (preferences ;; This file contains defaults for new user profiles. - #$(local-file "aux-files/chromium/master-preferences.json")) + #$(local-file + (search-auxiliary-file + "chromium/master-preferences.json"))) (gtk+ (assoc-ref inputs "gtk+")) (xdg-utils (assoc-ref inputs "xdg-utils"))) -- cgit v1.3 From bc1ad69605b6c3e2744694758d63dfc216107a82 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Fri, 11 Feb 2022 23:17:00 +0100 Subject: tests: Pass #:guile to 'computed-file' & co. Fixes a regression introduced in af57d1bf6c46f47d82dbc234dde1e16fa8634e9d whereby tests would end up building the world. * guix/gexp.scm (mixed-text-file): Add #:guile parameter and honor it. * tests/gexp.scm ("mixed-text-file"): Pass #:guile to 'mixed-text-file'. ("file-union"): Pass #:guile to 'file-union'. ("lower-object, computed-file"): Pass #:guile to 'computed-file'. ("lower-object, computed-file + grafts"): Likewise. * tests/packages.scm ("origin->derivation, single file with snippet"): Likewise. * tests/profiles.scm ("profile-derivation, ordering & collisions"): Likewise. * guix/tests.scm (test-file): Likewise. --- guix/gexp.scm | 13 +++++++------ guix/tests.scm | 3 ++- tests/gexp.scm | 12 ++++++++---- tests/packages.scm | 5 +++-- tests/profiles.scm | 5 +++-- 5 files changed, 23 insertions(+), 15 deletions(-) diff --git a/guix/gexp.scm b/guix/gexp.scm index 8675e605a0..dfeadbd15d 100644 --- a/guix/gexp.scm +++ b/guix/gexp.scm @@ -2068,7 +2068,7 @@ resulting store file holds references to all these." #:local-build? #t #:substitutable? #f)) -(define* (mixed-text-file name #:rest text) +(define* (mixed-text-file name #:key guile #:rest text) "Return an object representing store file NAME containing TEXT. TEXT is a sequence of strings and file-like objects, as in: @@ -2077,12 +2077,13 @@ sequence of strings and file-like objects, as in: This is the declarative counterpart of 'text-file*'." (define build - (gexp (call-with-output-file (ungexp output "out") - (lambda (port) - (set-port-encoding! port "UTF-8") - (display (string-append (ungexp-splicing text)) port))))) + (let ((text (if guile (drop text 2) text))) + (gexp (call-with-output-file (ungexp output "out") + (lambda (port) + (set-port-encoding! port "UTF-8") + (display (string-append (ungexp-splicing text)) port)))))) - (computed-file name build)) + (computed-file name build #:guile guile)) (define* (file-union name files #:key guile) "Return a that builds a directory containing all of FILES. diff --git a/guix/tests.scm b/guix/tests.scm index 4cd1ad6cf9..06ef3cf76d 100644 --- a/guix/tests.scm +++ b/guix/tests.scm @@ -472,7 +472,8 @@ to its file name extension. Return both its file name and its hash." (format #t #+content))) (when #+command (invoke #+command #+name-sans-ext)) - (copy-file #+name #$output))))) + (copy-file #+name #$output)) + #:guile %bootstrap-guile))) (file-drv (run-with-store store (lower-object f))) (file (derivation->output-path file-drv)) (file-drv-outputs (derivation-outputs file-drv)) diff --git a/tests/gexp.scm b/tests/gexp.scm index ad8e1d57b8..390cf7a207 100644 --- a/tests/gexp.scm +++ b/tests/gexp.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2014-2021 Ludovic Courtès +;;; Copyright © 2014-2022 Ludovic Courtès ;;; Copyright © 2021 Maxime Devos ;;; ;;; This file is part of GNU Guix. @@ -1413,6 +1413,7 @@ importing.* \\(guix config\\) from the host" (test-assertm "mixed-text-file" (mlet* %store-monad ((file -> (mixed-text-file "mixed" + #:guile %bootstrap-guile "export PATH=" %bootstrap-guile "/bin")) (drv (lower-object file)) @@ -1430,7 +1431,8 @@ importing.* \\(guix config\\) from the host" (mlet* %store-monad ((union -> (file-union "union" `(("a" ,(plain-file "a" "1")) ("b/c/d" ,(plain-file "d" "2")) - ("e" ,(plain-file "e" "3"))))) + ("e" ,(plain-file "e" "3"))) + #:guile %bootstrap-guile)) (drv (lower-object union)) (out -> (derivation->output-path drv))) (define (contents=? file str) @@ -1469,7 +1471,8 @@ importing.* \\(guix config\\) from the host" (symlink #$%bootstrap-guile (string-append #$output "/guile")) (symlink #$text (string-append #$output "/text")))) - (computed (computed-file "computed" exp))) + (computed (computed-file "computed" exp + #:guile %bootstrap-guile))) (mlet* %store-monad ((text (lower-object text)) (guile-drv (lower-object %bootstrap-guile)) (comp-drv (lower-object computed)) @@ -1504,7 +1507,8 @@ importing.* \\(guix config\\) from the host" (display item port)))))) (computed (computed-file "computed" exp #:options - `(#:references-graphs (("graph" ,pkg))))) + `(#:references-graphs (("graph" ,pkg))) + #:guile %bootstrap-guile)) (drv0 (package-derivation %store pkg #:graft? #t)) (drv1 (parameterize ((%graft? #t)) (run-with-store %store diff --git a/tests/packages.scm b/tests/packages.scm index 3506f94f91..55b1c4064f 100644 --- a/tests/packages.scm +++ b/tests/packages.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès +;;; Copyright © 2012-2022 Ludovic Courtès ;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; Copyright © 2021 Maxim Cournoyer ;;; Copyright © 2021 Maxime Devos @@ -716,7 +716,8 @@ (use-modules (guix build utils)) (setenv "PATH" #+bin) (invoke "tar" "xvf" #+out) - (copy-file #+name #$output))))) + (copy-file #+name #$output))) + #:guile %bootstrap-guile)) (drv (run-with-store %store (lower-object f))) (_ (build-derivations %store (list drv)))) (call-with-input-file (derivation->output-path drv) diff --git a/tests/profiles.scm b/tests/profiles.scm index cac5b73347..d59d75985f 100644 --- a/tests/profiles.scm +++ b/tests/profiles.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès +;;; Copyright © 2013-2022 Ludovic Courtès ;;; Copyright © 2014 Alex Kost ;;; ;;; This file is part of GNU Guix. @@ -302,7 +302,8 @@ (call-with-output-file (string-append #$output "/bin/guile") (lambda (port) - (display "Fake!\n" port)))))))) + (display "Fake!\n" port)))) + #:guile %bootstrap-guile)))) (guile (package->derivation %bootstrap-guile)) (drv (profile-derivation (manifest (list entry1 entry2)) #:hooks '() -- cgit v1.3 From 0f1cb023628d738bb21425c1921d17672db4f890 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Fri, 11 Feb 2022 23:47:05 +0100 Subject: tests: Adjust pypi test to recent changes. This is a followup to 00762a4c4c8ecdd71cccf6afdd87ae68bf9b4964. * tests/pypi.scm ("pypi->guix-package, no wheel"): Guard against 'error?' instead of 'quit'. --- tests/pypi.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/pypi.scm b/tests/pypi.scm index 47a276ae58..88bb0a3116 100644 --- a/tests/pypi.scm +++ b/tests/pypi.scm @@ -32,6 +32,8 @@ #:use-module ((guix diagnostics) #:select (guix-warning-port)) #:use-module (json) #:use-module (srfi srfi-26) + #:use-module (srfi srfi-34) + #:use-module (srfi srfi-35) #:use-module (srfi srfi-64) #:use-module (ice-9 match) #:use-module (ice-9 optargs)) @@ -265,10 +267,8 @@ Requires-Dist: pytest (>=3.1.0); extra == 'testing' hash) (equal? (pypi->guix-package "foo" #:version "1.0.0") (pypi->guix-package "foo")) - (catch 'quit - (lambda () - (pypi->guix-package "foo" #:version "42")) - (const #t)))) + (guard (c ((error? c) #t)) + (pypi->guix-package "foo" #:version "42")))) (x (pk 'fail x #f)))))) -- cgit v1.3 From 0d2f661501abc4e2e5558b18655ef135239450e8 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 10 Feb 2022 10:14:47 +0100 Subject: gnu: rav1e: Omit static library. * gnu/packages/video.scm (rav1e)[arguments]: Add phase. --- gnu/packages/video.scm | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 244d12028d..221a2abff9 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -22,7 +22,7 @@ ;;; Copyright © 2017 Gregor Giesen ;;; Copyright © 2017, 2018, 2019 Rutger Helling ;;; Copyright © 2018 Roel Janssen -;;; Copyright © 2018, 2019, 2020, 2021 Marius Bakke +;;; Copyright © 2018-2022 Marius Bakke ;;; Copyright © 2018, 2019, 2020 Pierre Neidhardt ;;; Copyright © 2018, 2019, 2020 Leo Famulari ;;; Copyright © 2018 Brendan Tildesley @@ -5322,7 +5322,12 @@ result in several formats: (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) (invoke "cargo" "cinstall" "--release" - (string-append "--prefix=" out)))))))) + (string-append "--prefix=" out))))) + (add-after 'install 'delete-static-library + (lambda* (#:key outputs #:allow-other-keys) + ;; Delete 80 MiB (!) static library. + (delete-file (string-append (assoc-ref outputs "out") + "/lib/librav1e.a"))))))) (native-inputs `(("cargo-c" ,rust-cargo-c) ("nasm" ,nasm))) -- cgit v1.3 From 9b0abb52acb8d2ea4d5c25129af34bdd85f99c2a Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 10 Feb 2022 10:15:54 +0100 Subject: gnu: rav1e: Remove input labels. * gnu/packages/video.scm (rav1e)[native-inputs]: Remove labels. --- gnu/packages/video.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 221a2abff9..a6c2eeea97 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -5329,8 +5329,7 @@ result in several formats: (delete-file (string-append (assoc-ref outputs "out") "/lib/librav1e.a"))))))) (native-inputs - `(("cargo-c" ,rust-cargo-c) - ("nasm" ,nasm))) + (list rust-cargo-c nasm)) (home-page "https://github.com/xiph/rav1e/") (synopsis "Fast and safe AV1 encoder") (description "@code{rav1e} is an AV1 video encoder. It is designed to -- cgit v1.3 From e2c8868301eddea8d5a7089bb606665ace294c70 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Fri, 11 Feb 2022 00:52:47 +0100 Subject: gnu: re2: Update to 2022-02-01. * gnu/packages/regex.scm (re2): Update to 2022-02-01. --- gnu/packages/regex.scm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/gnu/packages/regex.scm b/gnu/packages/regex.scm index d37663bf5b..662bf435db 100644 --- a/gnu/packages/regex.scm +++ b/gnu/packages/regex.scm @@ -31,7 +31,7 @@ (define-public re2 (package (name "re2") - (version "2020-11-01") + (version "2022-02-01") (home-page "https://github.com/google/re2") (source (origin (method git-fetch) @@ -39,7 +39,7 @@ (file-name (git-file-name name version)) (sha256 (base32 - "0ii51fpp6fn51x4qyd99sy4r122s8ayh4x1srwhhijxlh8mzla5k")))) + "1gzdqy5a0ln9rwd8kmwbgis6qin63hapicwb35xkbnj3y84jj6yx")))) (build-system gnu-build-system) (arguments `(#:modules ((guix build gnu-build-system) @@ -64,8 +64,7 @@ (lambda* (#:key outputs #:allow-other-keys) ;; No make target for shared-only; delete the static version. (delete-file (string-append (assoc-ref outputs "out") - "/lib/libre2.a")) - #t))))) + "/lib/libre2.a"))))))) (synopsis "Fast, safe, thread-friendly regular expression engine") (description "RE2 is a fast, safe, thread-friendly alternative to backtracking regular expression engines like those used in PCRE, Perl and -- cgit v1.3 From c5aaf1d071da799f6b3b4e87521a2a33d7ae41c2 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Fri, 11 Feb 2022 00:55:55 +0100 Subject: gnu: re2: Use G-expressions. * gnu/packages/regex.scm (re2)[arguments]: Rewrite with gexps. Simplify cross-compilation fix by using CXX-FOR-TARGET. --- gnu/packages/regex.scm | 37 +++++++++++++------------------------ 1 file changed, 13 insertions(+), 24 deletions(-) diff --git a/gnu/packages/regex.scm b/gnu/packages/regex.scm index 662bf435db..616c56cc6e 100644 --- a/gnu/packages/regex.scm +++ b/gnu/packages/regex.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014 John Darrington ;;; Copyright © 2015 Mark H Weaver -;;; Copyright © 2016, 2020 Marius Bakke +;;; Copyright © 2016, 2020, 2022 Marius Bakke ;;; Copyright © 2018, 2019, 2020 Tobias Geerinckx-Rice ;;; Copyright © 2020 Brett Gilio ;;; @@ -25,6 +25,7 @@ #:use-module (guix packages) #:use-module (guix download) #:use-module (guix git-download) + #:use-module (guix gexp) #:use-module (guix build-system gnu) #:use-module (guix utils)) @@ -42,29 +43,17 @@ "1gzdqy5a0ln9rwd8kmwbgis6qin63hapicwb35xkbnj3y84jj6yx")))) (build-system gnu-build-system) (arguments - `(#:modules ((guix build gnu-build-system) - (guix build utils) - (srfi srfi-1)) - #:test-target "test" - ;; There is no configure step, but the Makefile respects a prefix. - ;; As ./configure does not know anything about the target CXX - ;; we need to specify TARGET-g++ explicitly. - #:make-flags (list (string-append "prefix=" %output) - (string-append - "CXX=" ,(string-append - (if (%current-target-system) - (string-append - (%current-target-system) "-") - "") - "g++"))) - #:phases - (modify-phases %standard-phases - (delete 'configure) - (add-after 'install 'delete-static-library - (lambda* (#:key outputs #:allow-other-keys) - ;; No make target for shared-only; delete the static version. - (delete-file (string-append (assoc-ref outputs "out") - "/lib/libre2.a"))))))) + (list #:test-target "test" + ;; There is no configure step, but the Makefile respects a prefix. + #:make-flags #~(list (string-append "prefix=" #$output) + (string-append "CXX=" #$(cxx-for-target))) + #:phases + #~(modify-phases %standard-phases + (delete 'configure) + (add-after 'install 'delete-static-library + (lambda _ + ;; No make target for shared-only; delete the static version. + (delete-file (string-append #$output "/lib/libre2.a"))))))) (synopsis "Fast, safe, thread-friendly regular expression engine") (description "RE2 is a fast, safe, thread-friendly alternative to backtracking regular expression engines like those used in PCRE, Perl and -- cgit v1.3 From f2ff26f34d8249503bb3f843853b41ba1d1c16b5 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Fri, 11 Feb 2022 19:10:26 +0100 Subject: gnu: wxsvg: Update to 1.5.23. * gnu/packages/wxwidgets.scm (wxsvg): Update to 1.5.23. --- gnu/packages/wxwidgets.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/wxwidgets.scm b/gnu/packages/wxwidgets.scm index 41ea99feed..ca1b33081d 100644 --- a/gnu/packages/wxwidgets.scm +++ b/gnu/packages/wxwidgets.scm @@ -341,14 +341,14 @@ provide a 100% native look and feel for the application.") (define-public wxsvg (package (name "wxsvg") - (version "1.5.22") + (version "1.5.23") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/wxsvg/wxsvg/" version "/wxsvg-" version ".tar.bz2")) (sha256 - (base32 "0agmmwg0zlsw1idygvqjpj1nk41akzlbdha0hsdk1k8ckz6niq8d")))) + (base32 "1fdbvihw1w2vm29xj54cqgpdabhlg0ydf3clkb0qrlf7mhgkc1rz")))) (build-system glib-or-gtk-build-system) (inputs (list wxwidgets-3.1 cairo ffmpeg)) -- cgit v1.3 From c71dca05cfc2915e658f6b4db49dc794a1836bb0 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Fri, 11 Feb 2022 19:29:13 +0100 Subject: gnu: ungoogled-chromium: Update to 98.0.4758.80-1. * gnu/packages/patches/ungoogled-chromium-accelerated-video-decode.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. * gnu/packages/chromium.scm (%chromium-version): Set to 98.0.4758.80. (arch-patch, %arch-patches): Remove variables. (%guix-patches): Remove accelerated video decode patch which no longer works. (%ungoogled-origin): Update hash. (ungoogled-chromium-snippet): Don't apply %ARCH-PATCHES. (ungoogled-chromium)[source]: Update hash. [arguments]: Remove obsolete #:configure-flags. Adjust substitutions. --- gnu/local.mk | 1 - gnu/packages/chromium.scm | 58 +++++++--------------- ...googled-chromium-accelerated-video-decode.patch | 18 ------- 3 files changed, 18 insertions(+), 59 deletions(-) delete mode 100644 gnu/packages/patches/ungoogled-chromium-accelerated-video-decode.patch diff --git a/gnu/local.mk b/gnu/local.mk index a706409516..1b08b40b9c 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1907,7 +1907,6 @@ dist_patch_DATA = \ %D%/packages/patches/u-boot-riscv64-fix-extlinux.patch \ %D%/packages/patches/u-boot-rk3399-enable-emmc-phy.patch \ %D%/packages/patches/ucx-tcp-iface-ioctl.patch \ - %D%/packages/patches/ungoogled-chromium-accelerated-video-decode.patch \ %D%/packages/patches/ungoogled-chromium-extension-search-path.patch \ %D%/packages/patches/ungoogled-chromium-ffmpeg-compat.patch \ %D%/packages/patches/ungoogled-chromium-RUNPATH.patch \ diff --git a/gnu/packages/chromium.scm b/gnu/packages/chromium.scm index c647381d6c..795e3e7f9b 100644 --- a/gnu/packages/chromium.scm +++ b/gnu/packages/chromium.scm @@ -310,13 +310,19 @@ ;; run the Blink performance tests, just remove everything to save ~70MiB. '("third_party/blink/perf_tests")) -(define* (arch-patch name hash #:optional (revision %arch-revision)) +(define %chromium-version "98.0.4758.80") +(define %ungoogled-revision (string-append %chromium-version "-1")) +(define %debian-revision "debian/90.0.4430.85-1") + +(define %ungoogled-origin (origin - (method url-fetch) - (uri (string-append "https://raw.githubusercontent.com/archlinux" - "/svntogit-packages/" revision "/trunk/" name)) - (file-name (string-append "ungoogled-chromium-" name)) - (sha256 (base32 hash)))) + (method git-fetch) + (uri (git-reference (url "https://github.com/Eloston/ungoogled-chromium") + (commit %ungoogled-revision))) + (file-name (git-file-name "ungoogled-chromium" %ungoogled-revision)) + (sha256 + (base32 + "0a8y9yz6xyh025gk3dr0ndrdwmrslhd1ph2f8nivmqk61j7c2g8h")))) (define* (debian-patch name hash #:optional (revision %debian-revision)) (origin @@ -328,15 +334,6 @@ (string-append "ungoogled-chromium-" category "-" name)))) (sha256 (base32 hash)))) -(define %chromium-version "97.0.4692.99") -(define %ungoogled-revision (string-append %chromium-version "-1")) -(define %arch-revision "db2157b84924ce84201a8245e68a02f7d55f6491") -(define %debian-revision "debian/90.0.4430.85-1") - -(define %arch-patches - (list (arch-patch "chromium-94-ffmpeg-roll.patch" - "1kiskdjr9v3d491sq0wdjxliflh2vq5700gbygcixayj8gkvdb2n"))) - (define %debian-patches (list (debian-patch "fixes/nomerge.patch" "0lybs2b5gk08j8cr6vjrs9d3drd7qfw013z2r0y00by8dnpm74i3") @@ -347,16 +344,6 @@ (debian-patch "system/openjpeg.patch" "048405xh84pys0kky81vlqhaxjyxvcql4py217z01qxiv991zxaj"))) -(define %ungoogled-origin - (origin - (method git-fetch) - (uri (git-reference (url "https://github.com/Eloston/ungoogled-chromium") - (commit %ungoogled-revision))) - (file-name (git-file-name "ungoogled-chromium" %ungoogled-revision)) - (sha256 - (base32 - "1jgxpp3wl24hq39291mgmdwcxbarxg4rpa6il53k8z3rf6gd2s4i")))) - (define %guix-patches (list (local-file (assume-valid-file-name @@ -364,9 +351,6 @@ (local-file (assume-valid-file-name (search-patch "ungoogled-chromium-RUNPATH.patch"))) - (local-file - (assume-valid-file-name - (search-patch "ungoogled-chromium-accelerated-video-decode.patch"))) (local-file (assume-valid-file-name (search-patch "ungoogled-chromium-ffmpeg-compat.patch"))) @@ -400,13 +384,6 @@ patch "--no-backup-if-mismatch")) (append '#+%debian-patches '#+%guix-patches)) - ;; These patches are "reversed"; i.e. they represent changes - ;; already present in the source, but which should be reverted. - (for-each (lambda (patch) - (invoke "patch" "-Rp1" "--force" "--input" - patch "--no-backup-if-mismatch")) - '#$%arch-patches) - (with-directory-excursion #+%ungoogled-origin (format #t "Ungooglifying...~%") (force-output) @@ -474,7 +451,7 @@ %chromium-version ".tar.xz")) (sha256 (base32 - "1fpc07zvashaqqalwn7wxnswxclrxvhjrxy1rzr6gcq5awhaw6y9")) + "0wa1jhsw7qrym4x8wxmdvdvbilb8jdv0mizzib2342l61zi6cwn8")) (modules '((guix build utils))) (snippet (force ungoogled-chromium-snippet)))) (build-system gnu-build-system) @@ -495,14 +472,11 @@ ;; a developer build. "is_official_build=true" "clang_use_chrome_plugins=false" - "is_cfi=false" ;requires ThinLTO - "use_thin_lto=false" ;XXX lld segfaults "use_custom_libcxx=false" "chrome_pgo_phase=0" "use_sysroot=false" "goma_dir=\"\"" "enable_nacl=false" - "enable_nacl_nonsfi=false" "use_unofficial_version_number=false" "treat_warnings_as_errors=false" "use_official_google_api_keys=false" @@ -626,6 +600,11 @@ (("#include \"third_party/jsoncpp/") "#include \"json/")) + ;; This can be removed for M99. + (substitute* "media/gpu/chromeos/video_decoder_pipeline.cc" + (("third_party/libdrm/src/include/drm/drm_fourcc\\.h") + "libdrm/drm_fourcc.h")) + ;; Many files try to include ICU headers from "third_party/icu/...". ;; Remove the "third_party/" prefix to use system headers instead. (substitute* (find-files "chrome" "\\.cc$") @@ -671,7 +650,6 @@ (substitute* '("ui/ozone/platform/x11/gl_ozone_glx.cc" "ui/ozone/common/egl_util.cc" - "ui/gl/init/gl_initializer_linux_x11.cc" "third_party/angle/src/libANGLE/renderer/gl/glx\ /FunctionsGLX.cpp") (("libGL\\.so\\.1") diff --git a/gnu/packages/patches/ungoogled-chromium-accelerated-video-decode.patch b/gnu/packages/patches/ungoogled-chromium-accelerated-video-decode.patch deleted file mode 100644 index cbab626e59..0000000000 --- a/gnu/packages/patches/ungoogled-chromium-accelerated-video-decode.patch +++ /dev/null @@ -1,18 +0,0 @@ -Upstream Chromium no longer supports hardware accelerated video decoding -on GNU/Linux, yet it still works fine on many systems. This patch "unexpires" -the support. - -Taken from Arch Linux: -https://github.com/archlinux/svntogit-packages/blob/packages/chromium/trunk/unexpire-accelerated-video-decode-flag.patch - ---- a/chrome/browser/flag-metadata.json -+++ b/chrome/browser/flag-metadata.json -@@ -1285,7 +1285,7 @@ - { - "name": "enable-accelerated-video-decode", - "owners": [ "media-dev@chromium.org" ], -- "expiry_milestone": 93 -+ "expiry_milestone": 99 - }, - { - "name": "enable-accessibility-live-caption", -- cgit v1.3 From 068d99978a0c9c6fb66f95455060c8d08ba55ac5 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Fri, 11 Feb 2022 22:36:10 +0100 Subject: gnu: uBlock Origin: Update to 1.41.2. * gnu/packages/browser-extensions.scm (ublock-origin): Update to 1.41.2. --- gnu/packages/browser-extensions.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gnu/packages/browser-extensions.scm b/gnu/packages/browser-extensions.scm index eaf67a8ea0..84c528fad5 100644 --- a/gnu/packages/browser-extensions.scm +++ b/gnu/packages/browser-extensions.scm @@ -51,16 +51,18 @@ supported content to the Kodi media center.") (define ublock-origin (package (name "ublock-origin") - (version "1.40.8") + (version "1.41.2") (home-page "https://github.com/gorhill/uBlock") (source (origin (method git-fetch) (uri (git-reference (url home-page) (commit version) + ;; Also fetch the tightly coupled + ;; "uAssets" submodule. (recursive? #t))) (file-name (git-file-name name version)) (sha256 (base32 - "17pywblp87npj5z3zyvy9rmllnxhm916fnfyyfbvfbczswkbp78s")))) + "0ga8yj2zkyngah0li3la3gslhjdayp0barch5w3y2jp9i14df9k2")))) (build-system gnu-build-system) (outputs '("xpi" "firefox" "chromium")) (arguments -- cgit v1.3 From 3532e29e38650edceb940bae4bd67d6509f8e2d0 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 12 Feb 2022 10:39:57 +0100 Subject: gnu: emacs-keycast: Update to 1.2.0. * gnu/packages/emacs-xyz.scm (emacs-keycast): Update to 1.2.0. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 698ffe3b59..b53e03d2ae 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -3866,7 +3866,7 @@ kmonad's configuration files (@file{.kbd}).") (define-public emacs-keycast (package (name "emacs-keycast") - (version "1.1.3") + (version "1.2.0") (source (origin (method git-fetch) @@ -3875,7 +3875,7 @@ kmonad's configuration files (@file{.kbd}).") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0s31b3kal4j08waa2fwz5d6269wsdywb60a7h4r5vzsrr238lks3")))) + (base32 "01z20lsnjk8pwdsl4vx5dqdc4603bmb7fxan7n8j1fgvkvi63yzl")))) (build-system emacs-build-system) (home-page "https://github.com/tarsius/keycast") (synopsis "Show current command and its key in the mode line") -- cgit v1.3 From 1249251e9b3437f37985bc4dcd52e02ca04bfb65 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 12 Feb 2022 10:42:15 +0100 Subject: gnu: emacs-moody: Update to 0.7.1. * gnu/packages/emacs-xyz.scm (emacs-moody): Update to 0.7.1. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index b53e03d2ae..13534b6abc 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -1077,7 +1077,7 @@ displayed at the bottom or at the top.") (define-public emacs-moody (package (name "emacs-moody") - (version "0.7.0") + (version "0.7.1") (source (origin (method git-fetch) @@ -1086,7 +1086,7 @@ displayed at the bottom or at the top.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1xzi93hp4jrxqi3x31cpx4ff1yh2gq9y7qvv65gj19cfk9a0da88")))) + (base32 "09yyihx6cpa724z6cj2rqspajwj325ipgpmckklpgq6l4h5xnwy4")))) (build-system emacs-build-system) (home-page "https://github.com/tarsius/moody") (synopsis "Tabs and ribbons for Emacs mode-line") -- cgit v1.3 From cff39c76d6ae60dfc7e52977ea2574d9cd162a96 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 12 Feb 2022 10:43:53 +0100 Subject: gnu: emacs-no-littering: Update to 1.2.5. * gnu/packages/emacs-xyz.scm (emacs-no-littering): Update to 1.2.5. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 13534b6abc..9d15ded435 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -28671,7 +28671,7 @@ launching other commands/applications from within Emacs, similar to the (define-public emacs-no-littering (package (name "emacs-no-littering") - (version "1.2.4") + (version "1.2.5") (source (origin (method git-fetch) @@ -28680,7 +28680,7 @@ launching other commands/applications from within Emacs, similar to the (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1gk1l5zk5r8alnzfbfsck5gxcwr55k04rd08sxmb4j9jds6w6zyv")))) + (base32 "0rf05lfmr77yq7xqz1nd4bji6d2cipb3hd5ap9lrk6jiv7f72dr2")))) (build-system emacs-build-system) (home-page "https://github.com/emacscollective/no-littering") (synopsis "Help keep @file{~/.emacs.d/} clean") -- cgit v1.3 From 47eb897bd377f87854335a6d0cc711b94cb8589e Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 12 Feb 2022 10:45:42 +0100 Subject: gnu: emacs-with-editor: Update to 3.2.0. * gnu/packages/emacs-xyz.scm (emacs-with-editor): Update to 3.2.0. [arguments]<#:phases>: Use G-expressions. --- gnu/packages/emacs-xyz.scm | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 9d15ded435..a30d485c73 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -732,7 +732,7 @@ configuration files, such as @file{.gitattributes}, @file{.gitignore}, and (define-public emacs-with-editor (package (name "emacs-with-editor") - (version "3.1.1") + (version "3.2.0") (source (origin (method git-fetch) @@ -741,20 +741,21 @@ configuration files, such as @file{.gitattributes}, @file{.gitignore}, and (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "06a66119rp5vfqdzqk10df3qyh9jvjl6j3pqm03jy0b110v2bfa8")))) + (base32 "1d98hagpm6h5vgx80qlh3zrfcb6z000rfc707w9zzmh634dkg3xx")))) (build-system emacs-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-before 'install 'enter-lisp-directory - (lambda _ - (chdir "lisp"))) - (add-before 'install 'make-info - (lambda _ - (with-directory-excursion "../docs" - (invoke "makeinfo" "--no-split" - "-o" "with-editor.info" "with-editor.texi") - (install-file "with-editor.info" "../lisp"))))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-before 'install 'enter-lisp-directory + (lambda _ + (chdir "lisp"))) + (add-before 'install 'make-info + (lambda _ + (with-directory-excursion "../docs" + (invoke "makeinfo" "--no-split" + "-o" "with-editor.info" "with-editor.texi") + (install-file "with-editor.info" "../lisp"))))))) (native-inputs (list texinfo)) (propagated-inputs -- cgit v1.3 From 9c8f68f4796f23c11173fa3f90c69bc85b224ac6 Mon Sep 17 00:00:00 2001 From: Josselin Poiret Date: Tue, 8 Feb 2022 19:05:40 +0100 Subject: gnu: protonvpn-cli: Do not try to wrap the wrapper. * gnu/packages/vpn.scm (protonvpn-cli)[arguments]: Try to wrap the original program, and not the wrapper, as wrap-program handles that properly. --- gnu/packages/vpn.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm index 7f1d10d1eb..9fd0e4493d 100644 --- a/gnu/packages/vpn.scm +++ b/gnu/packages/vpn.scm @@ -18,6 +18,7 @@ ;;; Copyright © 2021 Domagoj Stolfa ;;; Copyright © 2021 Raghav Gururajan ;;; Copyright © 2021 jgart +;;; Copyright © 2022 Josselin Poiret ;;; ;;; This file is part of GNU Guix. ;;; @@ -753,7 +754,7 @@ traversing network address translators (@dfn{NAT}s) and firewalls.") ;; Wrap entrypoint with paths to its hard dependencies. (lambda* (#:key inputs outputs #:allow-other-keys) (let ((entrypoint (string-append (assoc-ref outputs "out") - "/bin/.protonvpn-real"))) + "/bin/protonvpn"))) (wrap-program entrypoint #:sh (search-input-file inputs "bin/bash") `("PATH" ":" prefix -- cgit v1.3 From e641d707e1ec8de2bfc658dcd1757360300aa509 Mon Sep 17 00:00:00 2001 From: Josselin Poiret Date: Tue, 8 Feb 2022 19:05:41 +0100 Subject: gnu: protonvpn-cli: Remove sanity-check phase. * gnu/packages/vpn.scm (protonvpn-cli)[arguments]: Remove sanity-check phase. --- gnu/packages/vpn.scm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm index 9fd0e4493d..a82db31e30 100644 --- a/gnu/packages/vpn.scm +++ b/gnu/packages/vpn.scm @@ -769,7 +769,11 @@ traversing network address translators (@dfn{NAT}s) and firewalls.") "openvpn" "procps" "which"))))) - #t))))) + #t)) + ;; The `protonvpn' script wants to write to `~user' to initialize its + ;; logger, so simply setting HOME=/tmp won't cut it. Remove + ;; sanity-check. + (delete 'sanity-check)))) (native-inputs (list python-docopt)) (inputs -- cgit v1.3 From 891e15429c162773ce7cd757f19a4a9bcd73207e Mon Sep 17 00:00:00 2001 From: Oleg Pykhalov Date: Thu, 3 Feb 2022 23:26:46 +0300 Subject: gnu: Add emacs-multi-vterm. * gnu/packages/emacs-xyz.scm (emacs-multi-vterm): New variable. --- gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index a30d485c73..b57be02062 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -23835,6 +23835,29 @@ display a terminal in an Emacs buffer.") a vterm buffer and back again.") (license license:gpl3+)))) +(define-public emacs-multi-vterm + (let ((commit "a3df7218c1ecadef779e2c47815201052283f9ea") + (revision "1")) + (package + (name "emacs-multi-vterm") + (version (git-version "1.0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/suonlight/multi-vterm") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0z6321994c4c8f5iya240pzvhirci9idlc110wjjwsm4pzdrrppj")))) + (build-system emacs-build-system) + (propagated-inputs (list emacs-vterm)) + (home-page "https://github.com/suonlight/multi-vterm/") + (synopsis "Manage multiple vterm buffers in Emacs") + (description + "This package provides an Emacs library to manage vterm buffers.") + (license license:gpl3+)))) + (define-public emacs-simple-mpc ;; There have been no releases. (let ((commit "bee8520e81292b4c7353e45b193f9a13b482f5b2") -- cgit v1.3 From 9749fb2c3f2eb6e816d68bb9ed8ad29fea46ef2d Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sun, 13 Feb 2022 09:05:58 +0100 Subject: gnu: emacs-corfu: Update to 0.19. * gnu/packages/emacs-xyz.scm (emacs-corfu): Update to 0.19. --- gnu/packages/emacs-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index b57be02062..e4390bad96 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -3011,7 +3011,7 @@ of bibliographic references.") (define-public emacs-corfu (package (name "emacs-corfu") - (version "0.18") + (version "0.19") (source (origin (method git-fetch) @@ -3020,7 +3020,7 @@ of bibliographic references.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "0k980hz46q1xmnblinwscyiiw5djpnv6s0d0hklyfp46jb1i51fj")))) + (base32 "1b7kdgiqww419f2npkwslg5h2js897550rs578gvjax1mmqjd5xd")))) (build-system emacs-build-system) (home-page "https://github.com/minad/corfu") (synopsis "Completion overlay region function") -- cgit v1.3 From 00e560fa0fcee2aaacd9c7ffeb1d37179dacafaa Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sat, 12 Feb 2022 23:24:53 +0100 Subject: gnu: Add texlive-amsmath. This is a corrected variant of texlive-latex-amsmath, which should be removed. * gnu/packages/tex.scm (texlive-amsmath): New variable. --- gnu/packages/tex.scm | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 5d5e875a51..c1ec591096 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4035,6 +4035,51 @@ mathematics, and @code{ntheoremntheorem}, for specifying theorem (and similar) definitions.") (license license:lppl1.3c+))) +(define-public texlive-amsmath + (let ((template (simple-texlive-package + "texlive-amsmath" + (list "/doc/latex/amsmath/" + "/source/latex/amsmath/" + ;; These two files are not generated from any of the + ;; dtx/ins files. + "/tex/latex/amsmath/amsmath-2018-12-01.sty" + "/tex/latex/amsmath/amstex.sty") + (base32 + "0gmdzhgr0h57xhsl61c5jsp4fj4pbmdr8p6k96am5jbyrbbx121q")))) + (package + (inherit template) + (arguments + (substitute-keyword-arguments (package-arguments template) + ((#:tex-directory _ #t) + "latex/amsmath") + ((#:phases phases) + `(modify-phases ,phases + (add-after 'unpack 'chdir + (lambda _ (chdir "source/latex/amsmath/"))) + (add-before 'copy-files 'unchdir + (lambda _ + (chdir "../../.."))) + (add-after 'copy-files 'delete-extra-files + (lambda* (#:key outputs #:allow-other-keys) + (delete-file-recursively + (string-append (assoc-ref outputs "out") + "/share/texmf-dist/source/latex/amsmath/build")))))))) + (home-page "https://www.ctan.org/pkg/amsmath") + (synopsis "AMS mathematical facilities for LaTeX") + (description + "This is the principal package in the AMS-LaTeX distribution. It adapts +for use in LaTeX most of the mathematical features found in AMS-TeX; it is +highly recommended as an adjunct to serious mathematical typesetting in LaTeX. +When amsmath is loaded, AMS-LaTeX packages @code{amsbsyamsbsy} (for bold +symbols), @code{amsopnamsopn} (for operator names) and +@code{amstextamstext} (for text embedded in mathematics) are also loaded. +This package is part of the LaTeX required distribution; however, several +contributed packages add still further to its appeal; examples are +@code{empheqempheq}, which provides functions for decorating and highlighting +mathematics, and @code{ntheoremntheorem}, for specifying theorem (and similar) +definitions.") + (license license:lppl1.3c+)))) + (define-public texlive-amscls (let ((template (simple-texlive-package "texlive-amscls" -- cgit v1.3 From 89f14b19936e0446927a5a5aec56f30ebba715fa Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sat, 12 Feb 2022 23:25:31 +0100 Subject: gnu: Add texlive-babel/fixed. * gnu/packages/tex.scm (texlive-babel/fixed): New variable. --- gnu/packages/tex.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index c1ec591096..d0f634ad01 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4157,6 +4157,29 @@ what has to be done for each language. Users of XeTeX are advised to use the polyglossia package rather than Babel.") (license license:lppl1.3+)))) +(define-public texlive-babel/fixed + (package + (inherit texlive-babel) + (name "texlive-babel-fixed") + (arguments + (substitute-keyword-arguments (package-arguments texlive-babel) + ((#:phases phases) + `(modify-phases ,phases + (add-before 'copy-files 'unchdir + (lambda _ + (chdir "../../.."))) + (add-after 'copy-files 'delete-extra-files + (lambda* (#:key outputs #:allow-other-keys) + (delete-file-recursively + (string-append (assoc-ref outputs "out") + "/share/texmf-dist/source/latex/babel/build")) + (delete-file + (string-append (assoc-ref outputs "out") + "/share/texmf-dist/tex/generic/babel/bbind.ist")) + (delete-file + (string-append (assoc-ref outputs "out") + "/share/texmf-dist/tex/generic/babel/bbglo.ist")))))))))) + (define-deprecated-package texlive-latex-babel texlive-babel) (define-public texlive-generic-babel-english -- cgit v1.3 From 6ce3c0043bc16358472e8b6d80eb202fa7098ce1 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sat, 12 Feb 2022 23:25:41 +0100 Subject: gnu: Add texlive-psnfss/fixed. * gnu/packages/tex.scm (texlive-psnfss/fixed): New variable. --- gnu/packages/tex.scm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index d0f634ad01..3d54a1e863 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4441,6 +4441,23 @@ means to select single glyphs from symbol fonts. The bundle as a whole is part of the LaTeX required set of packages.") (license license:lppl1.2+)))) +(define-public texlive-psnfss/fixed + (package + (inherit texlive-psnfss) + (name "texlive-psnfss-fixed") + (arguments + (substitute-keyword-arguments (package-arguments texlive-psnfss) + ((#:phases phases) + `(modify-phases ,phases + (add-before 'copy-files 'unchdir + (lambda _ + (chdir "../../.."))) + (add-after 'copy-files 'delete-extra-files + (lambda* (#:key outputs #:allow-other-keys) + (delete-file-recursively + (string-append (assoc-ref outputs "out") + "/share/texmf-dist/source/latex/psnfss/build")))))))))) + (define-deprecated-package texlive-latex-psnfss texlive-psnfss) ;; For user profiles -- cgit v1.3 From f0ada3f78f5e2eabd9570b3524eea601eca00ab2 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sat, 12 Feb 2022 23:25:53 +0100 Subject: gnu: Add texlive-stmaryrd/fixed. * gnu/packages/tex.scm (texlive-stmaryrd/fixed): New variable. --- gnu/packages/tex.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 3d54a1e863..753a6e8d8d 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -6534,6 +6534,25 @@ use under LaTeX; the package supports the @code{only} option (provided by the the whole font.") (license license:lppl)))) +(define-public texlive-stmaryrd/fixed + (package + (inherit texlive-stmaryrd) + (name "texlive-stmaryrd-fixed") + (arguments + (substitute-keyword-arguments (package-arguments texlive-stmaryrd) + ((#:tex-directory _ #t) + "latex/stmaryrd") + ((#:phases phases) + `(modify-phases ,phases + (add-before 'copy-files 'unchdir + (lambda _ + (chdir "../../.."))) + (add-after 'copy-files 'delete-extra-files + (lambda* (#:key outputs #:allow-other-keys) + (delete-file-recursively + (string-append (assoc-ref outputs "out") + "/share/texmf-dist/source/fonts/stmaryrd/build")))))))))) + (define-deprecated-package texlive-fonts-stmaryrd texlive-stmaryrd) (define-public texlive-latex-subfigure -- cgit v1.3 From 74afcc0f555699d9d6a040fded04a1a379c0b1de Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sun, 13 Feb 2022 09:33:11 +0100 Subject: gnu: dino: Update to 0.3.0. * gnu/packages/messaging.scm (dino): Update to 0.3.0. [arguments]: Add 'wrap phase. [inputs]: Add gstreamer, gst-plugins-base, gst-plugins-good, libcanberra, libsrtp, and webrtc-audio-processing. --- gnu/packages/messaging.scm | 37 +++++++++++++++++++------------------ 1 file changed, 19 insertions(+), 18 deletions(-) diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 92f310928d..8884473a43 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -32,6 +32,7 @@ ;;; Copyright © 2021 Vinicius Monego ;;; Copyright © 2021 jgart ;;; Copyright © 2022 Aleksandr Vityazev +;;; Copyright © 2022 Ricardo Wurmus ;;; ;;; This file is part of GNU Guix. ;;; @@ -121,6 +122,7 @@ #:use-module (gnu packages sphinx) #:use-module (gnu packages sqlite) #:use-module (gnu packages tcl) + #:use-module (gnu packages telephony) #:use-module (gnu packages texinfo) #:use-module (gnu packages textutils) #:use-module (gnu packages tls) @@ -1362,7 +1364,7 @@ Encryption to Gajim.") (define-public dino (package (name "dino") - (version "0.2.2") + (version "0.3.0") (source (origin (method url-fetch) @@ -1370,7 +1372,7 @@ Encryption to Gajim.") (string-append "https://github.com/dino/dino/releases/download/v" version "/dino-" version ".tar.gz")) (sha256 - (base32 "0r5qn9k88d5rh8zzj9gs3bk3dsm795r0pgxs3kawyrsrqr8ny1ry")))) + (base32 "07nw275xfamczzvzps8hsnpbhzvr4qc726fx92w8ncmdag7wlw1r")))) (build-system cmake-build-system) (outputs '("out" "debug")) (arguments @@ -1384,14 +1386,14 @@ Encryption to Gajim.") (guix build glib-or-gtk-build-system)) #:phases (modify-phases %standard-phases - ;; To be enabled in v0.3.0, for A/V support. - ;;(add-after 'install 'wrap - ;;(lambda* (#:key outputs #:allow-other-keys) - ;;(let* ((out (assoc-ref outputs "out")) - ;;(dino (string-append out "/bin/dino")) - ;;(gst-plugin-path (getenv "GST_PLUGIN_SYSTEM_PATH"))) - ;;(wrap-program dino - ;;`("GST_PLUGIN_SYSTEM_PATH" ":" prefix (,gst-plugin-path)))))) + ;; For A/V support. + (add-after 'install 'wrap + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (dino (string-append out "/bin/dino")) + (gst-plugin-path (getenv "GST_PLUGIN_SYSTEM_PATH"))) + (wrap-program dino + `("GST_PLUGIN_SYSTEM_PATH" ":" prefix (,gst-plugin-path)))))) (add-after 'install 'glib-or-gtk-wrap (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap))))) (native-inputs @@ -1402,7 +1404,6 @@ Encryption to Gajim.") ("pkg-config" ,pkg-config) ("vala" ,vala))) (inputs - ;; NOTE: Commented-out lines are to be enabled in v0.3.0. `(("atk" ,atk) ("cairo" ,cairo) ("librsvg" ,librsvg) @@ -1411,22 +1412,22 @@ Encryption to Gajim.") ("gpgme" ,gpgme) ("gsettings-desktop-schemas" ,gsettings-desktop-schemas) ("gspell" ,gspell) ;for spell-check support - ;;("gstreamer" ,gstreamer) ;for A/V support - ;;("gst-plugins-base" ,gst-plugins-base) - ;;("gst-plugins-good" ,gst-plugins-good) + ("gstreamer" ,gstreamer) ;for A/V support + ("gst-plugins-base" ,gst-plugins-base) + ("gst-plugins-good" ,gst-plugins-good) ("gtk+" ,gtk+) ("icu4c" ,icu4c) ;for emoji support - ;;("libcanberra" ,libcanberra) ;for sound-notification support + ("libcanberra" ,libcanberra) ;for sound-notification support ("libgcrypt" ,libgcrypt) ("libgee" ,libgee) ("libnice" ,libnice) ("libsignal-protocol-c" ,libsignal-protocol-c) ("libsoup" ,libsoup-minimal-2) - ;;("libsrtp" ,libsrtp) ;for calls support + ("libsrtp" ,libsrtp) ;for calls support ("pango" ,pango) ("qrencode" ,qrencode) - ("sqlite" ,sqlite))) - ;;("webrtc-audio-processing" ,webrtc-audio-processing))) ;for A/V support + ("sqlite" ,sqlite) + ("webrtc-audio-processing" ,webrtc-audio-processing))) ;for A/V support (synopsis "Graphical Jabber/XMPP Client using GTK+/Vala") (description "Dino is a chat client for the desktop. It focuses on providing a minimal yet reliable Jabber/XMPP experience and having encryption enabled by -- cgit v1.3 From d40de1fb810aeff30cf84fc5e051bb77e0b6ceeb Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 31 Jan 2022 12:28:05 +0200 Subject: gnu: Add julia-linesearches. * gnu/packages/julia-xyz.scm (julia-linesearches): New variable. --- gnu/packages/julia-xyz.scm | 45 ++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 44 insertions(+), 1 deletion(-) diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index e30cf39dc9..7de0c32113 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2020, 2021 Nicolò Balzarotti ;;; Copyright © 2021, 2022 Simon Tournier -;;; Copyright © 2021 Efraim Flashner +;;; Copyright © 2021, 2022 Efraim Flashner ;;; Copyright © 2021 Vinicius Monego ;;; Copyright © 2021 jgart ;;; @@ -3104,6 +3104,49 @@ equations in string literals in the Julia language.") implementation of matrix-free methods for iterative solvers.") (license license:expat))) +(define-public julia-linesearches + (package + (name "julia-linesearches") + (version "7.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/JuliaNLSolvers/LineSearches.jl") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qc4la07w6s1xhcyd0hvbnpr31zc1a2ssgyybc8biv5m00g0dnr0")))) + (build-system julia-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'link-depot 'skip-optim-tests + (lambda _ + (substitute* "test/examples.jl" + ;; Prevent a cycle with Optim.jl. + (("^ SKIPFILE.*") "") + (("^ #SKIPFILE") " SKIPFILE")))) + (add-after 'link-depot 'skip-doublefloats-tests + (lambda _ + (substitute* "test/runtests.jl" + (("using DoubleFloats.*") "") + ((".*arbitrary_precision\\.jl.*") ""))))))) + (propagated-inputs + (list julia-nlsolversbase + julia-nanmath + julia-parameters)) + (native-inputs + ;; DoubleFloats.jl transitively depends on TimeZones.jl, which is currently + ;; unpackageable due to its oversized Artifacts.toml. + (list ;julia-doublefloats + julia-optimtestproblems)) + (home-page "https://github.com/JuliaNLSolvers/LineSearches.jl") + (synopsis "Line search methods for optimization and root-finding") + (description "This package provides an interface to line search algorithms +implemented in Julia.") + (license license:expat))) + (define-public julia-logexpfunctions (package (name "julia-logexpfunctions") -- cgit v1.3 From 7d0cbe714814a4abbdde20ce3b8e3951e25314b2 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 31 Jan 2022 12:29:25 +0200 Subject: gnu: Add julia-optim. * gnu/packages/julia-xyz.scm (julia-optim): New variable. --- gnu/packages/julia-xyz.scm | 48 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 7de0c32113..2fcc4cf83e 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -23,6 +23,7 @@ (define-module (gnu packages julia-xyz) #:use-module ((guix licenses) #:prefix license:) #:use-module (gnu packages) + #:use-module (guix gexp) #:use-module (guix utils) #:use-module (guix packages) #:use-module (guix git-download) @@ -3650,6 +3651,53 @@ machine learning, such as softmax, sigmoid, convolutions and pooling. It doesn't provide any other \"high-level\" functionality like layers or AD.") (license license:expat))) +(define-public julia-optim + (package + (name "julia-optim") + (version "1.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/JuliaNLSolvers/Optim.jl") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0nvl3xp9c6r80y9n7fic4zyq2443apfmbcpnx0wvgkv4vsy08x5j")))) + (build-system julia-build-system) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'adjust-tests + (lambda _ + ;; TODO: Figure out why this test fails. + (substitute* "test/runtests.jl" + ((".*l_bfgs.*") ""))))))) + (propagated-inputs + (list julia-compat + julia-fillarrays + julia-forwarddiff + julia-linesearches + julia-nanmath + julia-nlsolversbase + julia-parameters + julia-positivefactorizations + julia-statsbase)) + (native-inputs + (list julia-linesearches + julia-measurements + julia-nlsolversbase + julia-optimtestproblems + julia-positivefactorizations + julia-recursivearraytools + julia-stablerngs)) + (home-page "https://github.com/JuliaNLSolvers/Optim.jl") + (synopsis "Optimization functions for Julia") + (description "@code{Optim.jl} is a package for univariate and multivariate +optimization of functions.") + (license license:expat))) + (define-public julia-optimtestproblems (package (name "julia-optimtestproblems") -- cgit v1.3 From a4f7d66ce5670a3f51c42d0b152b4b70a2de0073 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Sun, 13 Feb 2022 10:19:05 +0200 Subject: gnu: enlightenment: Update to 0.25.3. * gnu/packages/enlightenment.scm (enlightenment): Update to 0.25.3. --- gnu/packages/enlightenment.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm index aa9ebf04e9..6a02ab1ca4 100644 --- a/gnu/packages/enlightenment.scm +++ b/gnu/packages/enlightenment.scm @@ -289,7 +289,7 @@ Libraries with some extra bells and whistles.") (define-public enlightenment (package (name "enlightenment") - (version "0.25.2") + (version "0.25.3") (source (origin (method url-fetch) (uri @@ -297,7 +297,7 @@ Libraries with some extra bells and whistles.") "enlightenment/enlightenment-" version ".tar.xz")) (sha256 (base32 - "049qbvg1xr97zqb5sf2kcly2nr9fqxrq7b92vznksia1bs0hcfhj")) + "1xngwixp0cckfq3jhrdmmk6zj67125amr7g6xwc6l89pnpmlkz9p")) (patches (search-patches "enlightenment-fix-setuid-path.patch")))) (build-system meson-build-system) (arguments -- cgit v1.3 From e6474dc7b5f1bb122f68da698e9aec174451b90b Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sat, 12 Feb 2022 22:07:40 +0100 Subject: gnu: qt5ct: Update to 1.5. * gnu/packages/qt.scm (qt5ct): Update to 1.5. [arguments]: Remove trailing #t. --- gnu/packages/qt.scm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index ca97725052..5a55c522af 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -146,14 +146,14 @@ (define-public qt5ct (package (name "qt5ct") - (version "1.2") + (version "1.5") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/qt5ct/qt5ct-" version ".tar.bz2")) (sha256 - (base32 "0bl7dc03b7vm435khkr932ybslsbq1nfajd936zlc1sxdmpg1qqx")))) + (base32 "14742vs32m98nbfb5mad0i8ciff5f45gfcb5v03p4hh2dvhhqgfn")))) (build-system gnu-build-system) (arguments `(#:tests? #f ; No target @@ -178,8 +178,7 @@ (string-append "PREFIX=" out) (string-append "BINDIR=" out "/bin") (string-append "DATADIR=" out "/share") - (string-append "PLUGINDIR=" out "/lib/qt5/plugins"))) - #t)) + (string-append "PLUGINDIR=" out "/lib/qt5/plugins"))))) (add-after 'install 'qt-wrap (assoc-ref qt:%standard-phases 'qt-wrap))))) (native-inputs -- cgit v1.3 From b8f280baecbc0381f6a4a5b3d6e9b28d3d3da2ee Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 13 Feb 2022 09:36:41 +0100 Subject: gnu: zabbix-agentd: Add release-monitoring-url. * gnu/packages/monitoring.scm (zabbix-agentd)[properties]: New field. --- gnu/packages/monitoring.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/packages/monitoring.scm b/gnu/packages/monitoring.scm index 64ebb96b87..a6d45fe597 100644 --- a/gnu/packages/monitoring.scm +++ b/gnu/packages/monitoring.scm @@ -195,7 +195,10 @@ etc. via a Web interface. Features include: (synopsis "Distributed monitoring solution (client-side agent)") (description "This package provides a distributed monitoring solution (client-side agent)") - (license license:gpl2))) + (license license:gpl2) + (properties + '((release-monitoring-url . "https://www.zabbix.com/download_sources") + (upstream-name . "zabbix"))))) (define-public zabbix-server (package -- cgit v1.3 From ae0ba592ba6f6cf19ebd70a2cd5074a31afa3d70 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 13 Feb 2022 09:37:43 +0100 Subject: gnu: zabbix-agentd: Use the correct license. * gnu/packages/monitoring.scm (zabbix-agentd)[license]: Change from GPL2 to GPL2+. --- gnu/packages/monitoring.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/monitoring.scm b/gnu/packages/monitoring.scm index a6d45fe597..6647d3bbc3 100644 --- a/gnu/packages/monitoring.scm +++ b/gnu/packages/monitoring.scm @@ -195,7 +195,7 @@ etc. via a Web interface. Features include: (synopsis "Distributed monitoring solution (client-side agent)") (description "This package provides a distributed monitoring solution (client-side agent)") - (license license:gpl2) + (license license:gpl2+) (properties '((release-monitoring-url . "https://www.zabbix.com/download_sources") (upstream-name . "zabbix"))))) -- cgit v1.3 From b1fb01e659d04bec54675616ed4b1502376cb6e7 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 13 Feb 2022 09:39:05 +0100 Subject: gnu: Zabbix: Update to 5.4.10. * gnu/packages/monitoring.scm (zabbix-agentd): Update to 5.4.10. [source](snippet): Simplify fping substitution. --- gnu/packages/monitoring.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/monitoring.scm b/gnu/packages/monitoring.scm index 6647d3bbc3..8c4012f004 100644 --- a/gnu/packages/monitoring.scm +++ b/gnu/packages/monitoring.scm @@ -164,7 +164,7 @@ etc. via a Web interface. Features include: (define-public zabbix-agentd (package (name "zabbix-agentd") - (version "5.4.9") + (version "5.4.10") (source (origin (method url-fetch) @@ -172,13 +172,13 @@ etc. via a Web interface. Features include: "https://cdn.zabbix.com/zabbix/sources/stable/" (version-major+minor version) "/zabbix-" version ".tar.gz")) (sha256 - (base32 "0hf9qygjy4vyknsin6qmgpna6z4c4mdrglifgkpxbs3nvwl6cs0r")) + (base32 "0xwqwmq811fgxl6j9a9527i55jcpq98gqvwcda8la9gj0rsiqas6")) (modules '((guix build utils))) (snippet '(substitute* '("src/zabbix_proxy/proxy.c" "src/zabbix_server/server.c") ;; 'fping' must be setuid, so look for it in the usual location. - (("/usr/sbin/fping[[:digit:]]?") + (("/usr/sbin/fping6?") "/run/setuid-programs/fping"))))) (build-system gnu-build-system) (arguments -- cgit v1.3 From b38ce8489f7b44770054e01ada19d85194f250b9 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 13 Feb 2022 10:01:11 +0100 Subject: doc: Zabbix: Improvide description. * doc/guix.texi (Monitoring Services): Document the various 'zabbix-*' service types, and expand description of all Zabbix services. Use less marketing terms. (Web Services): Add subsubheading for PHP-FPM, and anchors for cross-referencing. * gnu/services/monitoring.scm (zabbix-front-end-configuration): Use @ref instead of @pxref for cross-referencing. --- doc/guix.texi | 64 +++++++++++++++++++++++++++++++-------------- gnu/services/monitoring.scm | 5 ++-- 2 files changed, 48 insertions(+), 21 deletions(-) diff --git a/doc/guix.texi b/doc/guix.texi index 583ba1c61d..86dbe9f201 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -25507,9 +25507,10 @@ Specify the path of the base URL@. This can be useful if @end table @end deftp +@anchor{prometheus-node-exporter} @subsubheading Prometheus Node Exporter Service - @cindex prometheus-node-exporter + The Prometheus ``node exporter'' makes hardware and operating system statistics provided by the Linux kernel available for the Prometheus monitoring system. This service should be deployed on all physical nodes and virtual machines, @@ -25548,19 +25549,22 @@ Extra options to pass to the Prometheus node exporter. @subsubheading Zabbix server @cindex zabbix zabbix-server -Zabbix provides monitoring metrics, among others network utilization, CPU load -and disk space consumption: - -@itemize -@item High performance, high capacity (able to monitor hundreds of thousands of devices). -@item Auto-discovery of servers and network devices and interfaces. -@item Low-level discovery, allows to automatically start monitoring new items, file systems or network interfaces among others. -@item Distributed monitoring with centralized web administration. -@item Native high performance agents. -@item SLA, and ITIL KPI metrics on reporting. -@item High-level (business) view of monitored resources through user-defined visual console screens and dashboards. -@item Remote command execution through Zabbix proxies. -@end itemize +Zabbix is a high performance monitoring system that can collect data from a +variety of sources and provide the results in a web-based interface. Alerting +and reporting is built-in, as well as @dfn{templates} for common operating +system metrics such as network utilization, CPU load, and disk space consumption. + +This service provides the central Zabbix monitoring service; you also need +@ref{zabbix-front-end,@code{zabbix-front-end-service-type}} to configure Zabbix +and display results, and optionally @ref{zabbix-agent, +@code{zabbix-agent-service-type}} on machines that should be monitored (other +data sources are supported, such as @ref{prometheus-node-exporter, +Prometheus Node Exporter}). + +@defvar {Scheme variable} zabbix-server-service-type +This is the service type for the Zabbix server service. Its value must be a +@code{zabbix-server-configuration} record, shown below. +@end defvar @c %start of fragment @@ -25633,10 +25637,20 @@ configuration file. @c %end of fragment +@anchor{zabbix-agent} @subsubheading Zabbix agent @cindex zabbix zabbix-agent -Zabbix agent gathers information for Zabbix server. +The Zabbix agent gathers information about the running system for the Zabbix +monitoring server. It has a variety of built-in checks, and can be extended +with custom +@uref{https://www.zabbix.com/documentation/current/en/manual/config/items/userparameters, +@dfn{user parameters}}. + +@defvar {Scheme variable} zabbix-agent-service-type +This is the service type for the Zabbix agent service. Its value must be a +@code{zabbix-agent-configuration} record, shown below. +@end defvar @c %start of fragment @@ -25701,10 +25715,19 @@ configuration file. @c %end of fragment +@anchor{zabbix-front-end} @subsubheading Zabbix front-end @cindex zabbix zabbix-front-end -This service provides a WEB interface to Zabbix server. +The Zabbix front-end provides a web interface to Zabbix. It does not need +to run on the same machine as the Zabbix server. This service works by +extending the @ref{PHP-FPM} and @ref{NGINX} services with the configuration +necessary for loading the Zabbix user interface. + +@defvar {Scheme variable} zabbix-front-end-service-type +This is the service type for the Zabbix web frontend. Its value must be a +@code{zabbix-front-end-configuration} record, shown below. +@end defvar @c %start of fragment @@ -25716,9 +25739,9 @@ Available @code{zabbix-front-end-configuration} fields are: The Zabbix server package to use. @item @code{nginx} (default: @code{()}) (type: list) -List of @pxref{NGINX,@code{nginx-server-configuration}} blocks for the -Zabbix front-end. When empty, a default that listens on port 80 is -used. +List of @ref{nginx-server-configuration,@code{nginx-server-configuration}} +blocks for the Zabbix front-end. When empty, a default that listens on +port 80 is used. @item @code{db-host} (default: @code{"localhost"}) (type: string) Database host name. @@ -26722,6 +26745,7 @@ valued G-expression. @end table @end deffn +@anchor{nginx-server-configuration} @deftp {Data Type} nginx-server-configuration Data type representing the configuration of an nginx server block. This type has the following parameters: @@ -27172,6 +27196,8 @@ capability also has to be configured on the front-end as well. @end table @end deftp +@anchor{PHP-FPM} +@subsubheading PHP-FPM @cindex php-fpm PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI implementation with some additional features useful for sites of any size. diff --git a/gnu/services/monitoring.scm b/gnu/services/monitoring.scm index 689e56ca73..92c49c513b 100644 --- a/gnu/services/monitoring.scm +++ b/gnu/services/monitoring.scm @@ -583,8 +583,9 @@ fastcgi_param PHP_VALUE \"post_max_size = 16M "The Zabbix server package to use.") (nginx (list '()) - "List of @pxref{NGINX, @code{nginx-server-configuration}} blocks for the -Zabbix front-end. When empty, a default that listens on port 80 is used.") + "List of @ref{nginx-server-configuration,@code{nginx-server-configuration}} +blocks for the Zabbix front-end. When empty, a default that listens on port 80 +is used.") (db-host (string "localhost") "Database host name.") -- cgit v1.3 From 8863395217933b52b570c45b8f4a7bf9109d6f67 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 13 Feb 2022 12:27:04 +0100 Subject: gnu: fping: Update to 5.1. * gnu/packages/networking.scm (fping): Update to 5.1. --- gnu/packages/networking.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 5029eeb13e..0eb194f957 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -1594,14 +1594,14 @@ network frames.") (define-public fping (package (name "fping") - (version "5.0") + (version "5.1") (source (origin (method url-fetch) (uri (string-append "https://fping.org/dist/fping-" version ".tar.gz")) (sha256 - (base32 "1f2prmii4fyl44cfykp40hp4jjhicrhddh9v3dfs11j6nsww0f7d")))) + (base32 "1zh9fkyn0bixgn77v9z6ayv446nqwx960hmly9m68xix0s62dr8y")))) (build-system gnu-build-system) (arguments '(#:configure-flags '("--enable-ipv6"))) (home-page "https://fping.org/") -- cgit v1.3 From f13f04583b6fc94c2a7603ab707c5f202c69c031 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 13 Feb 2022 12:40:59 +0100 Subject: gnu: monado: Provide missing input. * gnu/packages/graphics.scm (monado)[inputs]: Add PYTHON. --- gnu/packages/graphics.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index 55a2ca6396..344748875d 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -1969,6 +1969,7 @@ and build scripts for the OpenXR loader.") ("libxcb" ,libxcb) ("libxrandr" ,libxrandr) ("opengl" ,mesa) + ("python" ,python) ("v4l" ,v4l-utils) ("vulkan-loader" ,vulkan-loader))) (native-inputs -- cgit v1.3 From 7b1185b6af85a050bb3c8c14117813028f7107a2 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 13 Feb 2022 12:41:28 +0100 Subject: gnu: monado: Remove input labels. * gnu/packages/graphics.scm (monado)[inputs]: Remove labels. --- gnu/packages/graphics.scm | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index 344748875d..d56e0d3d99 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -1962,16 +1962,16 @@ and build scripts for the OpenXR loader.") "0n04k7a8b0i8ga0kbzh7qxmvni1ijawgk98s83519vxg4d0yyjbq")))) (build-system meson-build-system) (inputs - `(("ffmpeg" ,ffmpeg) - ("glslang" ,glslang) - ("libudev" ,eudev) - ("libusb" ,libusb) - ("libxcb" ,libxcb) - ("libxrandr" ,libxrandr) - ("opengl" ,mesa) - ("python" ,python) - ("v4l" ,v4l-utils) - ("vulkan-loader" ,vulkan-loader))) + (list ffmpeg + glslang + eudev + libusb + libxcb + libxrandr + mesa + python + v4l-utils + vulkan-loader)) (native-inputs (list eigen pkg-config vulkan-headers)) (arguments -- cgit v1.3 From c31eed71076d5c0d22041bb0377ebbf871b1ec8d Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 8 Feb 2022 18:15:08 +0200 Subject: gnu: gcc: Add compiler-cpu-architectures for aarch64. * gnu/packages/gcc.scm (%gcc-7.5-aarch64-micro-architectures, %gcc-10-aarch64-micro-architectures): New variables. (gcc-7, gcc-10)[properties]: Add aarch64 compiler-cpu-architectures. --- gnu/packages/gcc.scm | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm index efa0baeaa1..726c0eed89 100644 --- a/gnu/packages/gcc.scm +++ b/gnu/packages/gcc.scm @@ -3,7 +3,7 @@ ;;; Copyright © 2014, 2015, 2018 Mark H Weaver ;;; Copyright © 2014, 2015, 2016, 2017, 2019, 2021 Ricardo Wurmus ;;; Copyright © 2015 Andreas Enge -;;; Copyright © 2015, 2016, 2017, 2018, 2020, 2021 Efraim Flashner +;;; Copyright © 2015, 2016, 2017, 2018, 2020, 2021, 2022 Efraim Flashner ;;; Copyright © 2016 Carlos Sánchez de La Lama ;;; Copyright © 2018 Tobias Geerinckx-Rice ;;; Copyright © 2018, 2020 Marius Bakke @@ -525,6 +525,11 @@ Go. It also includes runtime support libraries for these languages.") ,@(package-inputs gcc-4.7))))) +(define %gcc-7.5-aarch64-micro-architectures + ;; Suitable '-march' values for GCC 7.5. + ;; TODO: Allow dynamically adding feature flags. + '("armv8-a" "armv8.1-a" "armv8.2-a" "armv8.3-a")) + (define %gcc-7.5-x86_64-micro-architectures ;; Suitable '-march' values for GCC 7.5 (info "(gcc) x86 Options"). '("core2" "nehalem" "westmere" "sandybridge" "ivybridge" @@ -536,6 +541,12 @@ Go. It also includes runtime support libraries for these languages.") "znver1" "btver1" "btver2" "geode")) +(define %gcc-10-aarch64-micro-architectures + ;; Suitable '-march' values for GCC 10. + ;; TODO: Allow dynamically adding feature flags. + (append %gcc-7.5-aarch64-micro-architectures + '("armv8.4-a" "armv8.5-a" "armv8.6-a"))) + (define %gcc-10-x86_64-micro-architectures ;; Suitable '-march' values for GCC 10. (append %gcc-7.5-x86_64-micro-architectures @@ -545,7 +556,6 @@ Go. It also includes runtime support libraries for these languages.") "znver2" "znver3"))) - (define-public gcc-7 (package (inherit gcc-6) @@ -566,6 +576,7 @@ for several languages, including C, C++, Objective-C, Fortran, Ada, and Go. It also includes runtime support libraries for these languages.") (properties `((compiler-cpu-architectures + ("aarch64" ,@%gcc-7.5-aarch64-micro-architectures) ("x86_64" ,@%gcc-7.5-x86_64-micro-architectures)))))) (define-public gcc-8 @@ -619,6 +630,7 @@ It also includes runtime support libraries for these languages.") (snippet gcc-canadian-cross-objdump-snippet))) (properties `((compiler-cpu-architectures + ("aarch64" ,@%gcc-10-aarch64-micro-architectures) ("x86_64" ,@%gcc-10-x86_64-micro-architectures)))))) (define-public gcc-11 -- cgit v1.3 From 1ddef634b048e50b120c2c70c2e1a03f9d956267 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 8 Feb 2022 18:52:31 +0200 Subject: gnu: gcc: Add compiler-cpu-architectures for armhf. * gnu/packages/gcc.scm (%gcc-7.5-armhf-micro-architectures, %gcc-10-armhf-micro-architectures): New variables. (gcc-7, gcc-10)[properties]: Add armhf compiler-cpu-architectures. --- gnu/packages/gcc.scm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm index 726c0eed89..e0a431a0ff 100644 --- a/gnu/packages/gcc.scm +++ b/gnu/packages/gcc.scm @@ -530,6 +530,14 @@ Go. It also includes runtime support libraries for these languages.") ;; TODO: Allow dynamically adding feature flags. '("armv8-a" "armv8.1-a" "armv8.2-a" "armv8.3-a")) +(define %gcc-7.5-armhf-micro-architectures + ;; Suitable '-march' values for GCC 7.5. + ;; TODO: Allow dynamically adding feature flags. + '("armv7" "armv7-a" "armv7-m" "armv7-r" "armv7e-m" "armv7ve" + "armv8-a" "armv8-a+crc" "armv8.1-a" "armv8.1-a+crc" + "armv8-m.base" "armv8-m.main" "armv8-m.main+dsp" + "iwmmxt" "iwmmxt2")) + (define %gcc-7.5-x86_64-micro-architectures ;; Suitable '-march' values for GCC 7.5 (info "(gcc) x86 Options"). '("core2" "nehalem" "westmere" "sandybridge" "ivybridge" @@ -547,6 +555,13 @@ Go. It also includes runtime support libraries for these languages.") (append %gcc-7.5-aarch64-micro-architectures '("armv8.4-a" "armv8.5-a" "armv8.6-a"))) +(define %gcc-10-armhf-micro-architectures + ;; Suitable '-march' values for GCC 10. + ;; TODO: Allow dynamically adding feature flags. + (append %gcc-7.5-armhf-micro-architectures + '("armv8.2-a" "armv8.3-a" "armv8.4-a" "armv8.5-a" "armv8.6-a" + "armv8-r" "armv8.1-m.main"))) + (define %gcc-10-x86_64-micro-architectures ;; Suitable '-march' values for GCC 10. (append %gcc-7.5-x86_64-micro-architectures @@ -577,6 +592,7 @@ It also includes runtime support libraries for these languages.") (properties `((compiler-cpu-architectures ("aarch64" ,@%gcc-7.5-aarch64-micro-architectures) + ("armhf" ,@%gcc-7.5-armhf-micro-architectures) ("x86_64" ,@%gcc-7.5-x86_64-micro-architectures)))))) (define-public gcc-8 @@ -631,6 +647,7 @@ It also includes runtime support libraries for these languages.") (properties `((compiler-cpu-architectures ("aarch64" ,@%gcc-10-aarch64-micro-architectures) + ("armhf" ,@%gcc-10-armhf-micro-architectures) ("x86_64" ,@%gcc-10-x86_64-micro-architectures)))))) (define-public gcc-11 -- cgit v1.3 From 73373ce5f89ecff98d76a6b73a27ab70f5d8c448 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 8 Feb 2022 17:15:01 +0200 Subject: guix: cpu: Rewrite based on feature flags. * guix/cpu.scm (cpu->gcc-architecture): Rewrite detection based on detected feature flags. --- guix/cpu.scm | 56 ++++++++++++++++++++++++++++++++++---------------------- 1 file changed, 34 insertions(+), 22 deletions(-) diff --git a/guix/cpu.scm b/guix/cpu.scm index e1911f52a8..5bb3fa9d2f 100644 --- a/guix/cpu.scm +++ b/guix/cpu.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2021 Ludovic Courtès +;;; Copyright © 2022 Efraim Flashner ;;; ;;; This file is part of GNU Guix. ;;; @@ -87,28 +88,39 @@ corresponds to CPU, a record as returned by 'current-cpu'." ("x86_64" ;; Transcribed from GCC's 'host_detect_local_cpu' in driver-i386.c. (or (and (= 6 (cpu-family cpu)) ;the "Pentium Pro" family - (letrec-syntax ((model (syntax-rules (=>) - ((_) #f) - ((_ (candidate => integers ...) rest - ...) - (or (and (= (cpu-model cpu) integers) - candidate) - ... - (model rest ...)))))) - (model ("bonnel" => #x1c #x26) - ("silvermont" => #x37 #x4a #x4d #x5a #x5d) - ("core2" => #x0f #x17 #x1d) - ("nehalem" => #x1a #x1e #x1f #x2e) - ("westmere" => #x25 #x2c #x2f) - ("sandybridge" => #x2a #x2d) - ("ivybridge" => #x3a #x3e) - ("haswell" => #x3c #x3f #x45 #x46) - ("broadwell" => #x3d #x47 #x4f #x56) - ("skylake" => #x4e #x5e #x8e #x9e) - ("skylake-avx512" => #x55) ;TODO: cascadelake - ("knl" => #x57) - ("cannonlake" => #x66) - ("knm" => #x85)))) + (letrec-syntax ((if-flags (syntax-rules (=>) + ((_) + #f) + ((_ (flags ... => name) rest ...) + (if (every (lambda (flag) + (set-contains? (cpu-flags cpu) + flag)) + '(flags ...)) + name + (if-flags rest ...)))))) + + (if-flags ("avx" "avx512vp2intersect" "tsxldtrk" => "sapphirerapids") + ("avx" "avx512vp2intersect" => "tigerlake") + ("avx" "avx512bf16" => "cooperlake") + ("avx" "wbnoinvd" => "icelake-server") + ("avx" "avx512bitalg" => "icelake-client") + ("avx" "avx512vbmi" => "cannonlake") + ("avx" "avx5124vnniw" => "knm") + ("avx" "avx512er" => "knl") + ("avx" "avx512f" => "skylake-avx512") + ("avx" "serialize" => "alderlake") + ("avx" "clflushopt" => "skylake") + ("avx" "adx" => "broadwell") + ("avx" "avx2" => "haswell") + ("avx" => "sandybridge") + ("sse4_2" "gfni" => "tremont") + ("sse4_2" "sgx" => "goldmont-plus") + ("sse4_2" "xsave" => "goldmont") + ("sse4_2" "movbe" => "silvermont") + ("sse4_2" => "nehalem") + ("ssse3" "movbe" => "bonnell") + ("ssse3" => "core2") + ("longmode" => "x86-64")))) ;; Fallback case for non-Intel processors or for Intel processors not ;; recognized above. -- cgit v1.3 From e8af2ea63a7f497b8f8e19e206645109c0646e72 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 8 Feb 2022 17:22:25 +0200 Subject: gnu: cpu: Add detection for AMD CPUs. * guix/cpu.scm : Add vendor field. (current-cpu): Also fill in the 'vendor' field. (cpu->gcc-architecture): Add detection logic for AMD CPUs. --- guix/cpu.scm | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 50 insertions(+), 9 deletions(-) diff --git a/guix/cpu.scm b/guix/cpu.scm index 5bb3fa9d2f..a44cd082f1 100644 --- a/guix/cpu.scm +++ b/guix/cpu.scm @@ -27,6 +27,7 @@ #:export (current-cpu cpu? cpu-architecture + cpu-vendor cpu-family cpu-model cpu-flags @@ -42,9 +43,10 @@ ;; CPU description. (define-record-type - (cpu architecture family model flags) + (cpu architecture vendor family model flags) cpu? (architecture cpu-architecture) ;string, from 'uname' + (vendor cpu-vendor) ;string (family cpu-family) ;integer (model cpu-model) ;integer (flags cpu-flags)) ;set of strings @@ -58,28 +60,33 @@ (call-with-input-file "/proc/cpuinfo" (lambda (port) - (let loop ((family #f) + (let loop ((vendor #f) + (family #f) (model #f)) (match (read-line port) ((? eof-object?) #f) + ((? (prefix? "vendor_id") str) + (match (string-tokenize str) + (("vendor_id" ":" vendor) + (loop vendor family model)))) ((? (prefix? "cpu family") str) (match (string-tokenize str) (("cpu" "family" ":" family) - (loop (string->number family) model)))) + (loop vendor (string->number family) model)))) ((? (prefix? "model") str) (match (string-tokenize str) (("model" ":" model) - (loop family (string->number model))) + (loop vendor family (string->number model))) (_ - (loop family model)))) + (loop vendor family model)))) ((? (prefix? "flags") str) (match (string-tokenize str) (("flags" ":" flags ...) (cpu (utsname:machine (uname)) - family model (list->set flags))))) + vendor family model (list->set flags))))) (_ - (loop family model)))))))) + (loop vendor family model)))))))) (define (cpu->gcc-architecture cpu) "Return the architecture name, suitable for GCC's '-march' flag, that @@ -87,7 +94,8 @@ corresponds to CPU, a record as returned by 'current-cpu'." (match (cpu-architecture cpu) ("x86_64" ;; Transcribed from GCC's 'host_detect_local_cpu' in driver-i386.c. - (or (and (= 6 (cpu-family cpu)) ;the "Pentium Pro" family + (or (and (equal? "GenuineIntel" (cpu-vendor cpu)) + (= 6 (cpu-family cpu)) ;the "Pentium Pro" family (letrec-syntax ((if-flags (syntax-rules (=>) ((_) #f) @@ -122,6 +130,39 @@ corresponds to CPU, a record as returned by 'current-cpu'." ("ssse3" => "core2") ("longmode" => "x86-64")))) + (and (equal? "AuthenticAMD" (cpu-vendor cpu)) + (letrec-syntax ((if-flags (syntax-rules (=>) + ((_) + #f) + ((_ (flags ... => name) rest ...) + (if (every (lambda (flag) + (set-contains? (cpu-flags cpu) + flag)) + '(flags ...)) + name + (if-flags rest ...)))))) + + (or (and (= 22 (cpu-family cpu)) + (if-flags ("movbe" => "btver2"))) + (and (= 6 (cpu-family cpu)) + (if-flags ("3dnowp" => "athalon"))) + (if-flags ("vaes" => "znver3") + ("clwb" => "znver2") + ("clzero" => "znver1") + ("avx2" => "bdver4") + ("xsaveopt" => "bdver3") + ("bmi" => "bdver2") + ("xop" => "bdver1") + ("sse4a" "has_ssse3" => "btver1") + ("sse4a" => "amdfam10") + ("sse2" "sse3" => "k8-sse3") + ("longmode" "sse3" => "k8-sse3") + ("sse2" => "k8") + ("longmode" => "k8") + ("mmx" "3dnow" => "k6-3") + ("mmx" => "k6") + (_ => "pentium"))))) + ;; Fallback case for non-Intel processors or for Intel processors not ;; recognized above. (letrec-syntax ((if-flags (syntax-rules (=>) @@ -147,7 +188,7 @@ corresponds to CPU, a record as returned by 'current-cpu'." ("ssse3" "movbe" => "bonnell") ("ssse3" => "core2"))) - ;; TODO: Recognize AMD models (bdver*, znver*, etc.)? + ;; TODO: Recognize CENTAUR/CYRIX/NSC? "x86_64")) (architecture -- cgit v1.3